nam-1.15/address.cc0000664000076400007660000001255606520177570013052 0ustar tomhnsnam/* * Copyright (c) 1990-1997 Regents of the University of California. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the Computer Systems * Engineering Group at Lawrence Berkeley Laboratory. * 4. Neither the name of the University nor of the Laboratory may be used * to endorse or promote products derived from this software without * specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * $Header: /cvsroot/nsnam/nam-1/address.cc,v 1.2 1998/04/24 21:09:12 haoboy Exp $ */ #include #include #include "tclcl.h" #include "address.h" #include "config.h" static class AddressClass : public TclClass { public: AddressClass() : TclClass("Address") {} TclObject* create(int, const char*const*) { return (new Address()); } } class_address; Address* Address::instance_; Address::Address() : PortShift_(0), PortMask_(0), McastShift_(0), McastMask_(0), levels_(0) { for (int i = 0; i < 10; i++) { NodeShift_[i] = 0; NodeMask_[i] = 0; } // setting instance_ should be in constructor, instead of Address:: if ((instance_ == 0) || (instance_ != this)) instance_ = this; } Address::~Address() { } int Address::command(int argc, const char*const* argv) { int i, c, temp=0; Tcl& tcl = Tcl::instance(); // if ((instance_ == 0) || (instance_ != this)) // instance_ = this; if (argc == 4) { if (strcmp(argv[1], "portbits-are") == 0) { PortShift_ = atoi(argv[2]); PortMask_ = atoi(argv[3]); return (TCL_OK); } if (strcmp(argv[1], "mcastbits-are") == 0) { McastShift_ = atoi(argv[2]); McastMask_ = atoi(argv[3]); return (TCL_OK); } } if (argc >= 4) { if (strcmp(argv[1], "add-hier") == 0) { /* *
add-hier */ int level = atoi(argv[2]); int mask = atoi(argv[3]); int shift = atoi(argv[4]); if (levels_ < level) levels_ = level; NodeShift_[level] = shift; NodeMask_[level] = mask; return (TCL_OK); } if (strcmp(argv[1], "idsbits-are") == 0) { temp = (argc - 2)/2; if (levels_) { if (temp != levels_) { tcl.resultf("#idshiftbits don't match with #hier levels\n"); return (TCL_ERROR); } } else levels_ = temp; // NodeShift_ = new int[levels_]; for (i = 3, c = 1; c <= levels_; c++, i+=2) NodeShift_[c] = atoi(argv[i]); return (TCL_OK); } if (strcmp(argv[1], "idmbits-are") == 0) { temp = (argc - 2)/2; if (levels_) { if (temp != levels_) { tcl.resultf("#idmaskbits don't match with #hier levels\n"); return (TCL_ERROR); } } else levels_ = temp; // NodeMask_ = new int[levels_]; for (i = 3, c = 1; c <= levels_; c++, i+=2) NodeMask_[c] = atoi(argv[i]); return (TCL_OK); } } return TclObject::command(argc, argv); } char *Address::print_nodeaddr(int address) { int a; char temp[SMALL_LEN]; char str[SMALL_LEN]; char *addrstr; str[0] = '\0'; for (int i=1; i <= levels_; i++) { a = address >> NodeShift_[i]; if (levels_ > 1) a = a & NodeMask_[i]; sprintf(temp, "%d.", a); strcat(str, temp); } addrstr = new char[strlen(str)]; strcpy(addrstr, str); // printf("Nodeaddr - %s\n",addrstr); return(addrstr); } char *Address::print_portaddr(int address) { int a; char str[SMALL_LEN]; char *addrstr; str[0] = '\0'; a = address >> PortShift_; a = a & PortMask_; sprintf(str, "%d", a); addrstr = new char[strlen(str)]; strcpy(addrstr, str); // printf("Portaddr - %s\n",addrstr); return(addrstr); } // Convert address in string format to binary format (int). int Address::str2addr(char *str) { if (levels_ == 0) return atoi(str); char *delim = "."; char *tok; int addr; for (int i = 1; i <= levels_; i++) { if (i == 1) { tok = strtok(str, delim); addr = atoi(tok); } else { tok = strtok(NULL, delim); addr = set_word_field(addr, atoi(tok), NodeShift_[i], NodeMask_[i]); } } return addr; } nam-1.15/address.h0000664000076400007660000000525106516757422012713 0ustar tomhnsnam/* * Copyright (c) 1993-1997 Regents of the University of California. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the Computer Systems * Engineering Group at Lawrence Berkeley Laboratory. * 4. Neither the name of the University nor of the Laboratory may be used * to endorse or promote products derived from this software without * specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * $Header: /cvsroot/nsnam/nam-1/address.h,v 1.1 1998/04/20 23:49:38 haoboy Exp $ */ #ifndef ns_addr_params #define ns_addr_params #include #include #include "config.h" #include class Address : public TclObject { public: static Address& instance() { return (*instance_); } Address(); ~Address(); char *print_nodeaddr(int address); char *print_portaddr(int address); int str2addr(char *str); inline int set_word_field(int word, int field, int shift, int mask) { return (((field & mask)< #ifdef WIN32 #include #endif #include "netview.h" #include "psview.h" #include "node.h" #include "feature.h" #include "agent.h" #include "edge.h" #include "paint.h" #include "monitor.h" #include "sincos.h" static int g_agent_count = 1; // Used to give unique id's to each agent //---------------------------------------------------------------------- // Wrapper for tcl creation of Agents //---------------------------------------------------------------------- static class AgentClass : public TclClass { public: AgentClass() : TclClass("Agent") {} TclObject * create(int argc, const char*const* argv) { Agent * agent; const char * type; int id; double size; type = argv[4]; id = strtol(argv[5], NULL, 10); size = strtod(argv[6], NULL); agent = new BoxAgent(type, id, size); return agent; } } class_agent; //---------------------------------------------------------------------- //---------------------------------------------------------------------- Agent::Agent(const char * type, int id, double _size) : Animation(0, 0) { setDefaults(); size(_size); label_ = new char[strlen(type) + 1]; strcpy(label_, type); number_ = id; // Make sure new agents will have unique ids if (g_agent_count <= id) { g_agent_count = id + 1; } } //---------------------------------------------------------------------- // Agent::Agent(const char* name, double size) //---------------------------------------------------------------------- Agent::Agent(const char* name, double _size) : Animation(0, 0), next_(0), node_(0), x_(0.0), y_(0.0), features_(NULL), edge_(NULL), angle_(NO_ANGLE), anchor_(0), mark_(0), color_(0), window_(20), windowInit_(1), maxcwnd_(0), packetSize_(210), interval_(0.0375), tracevar_(0), start_(0.0), stop_(10.0), produce_(0) { size(_size); AgentPartner_ = NULL; flowcolor_ = NULL; flowcolor("black"); number_ = g_agent_count; g_agent_count++; traffic_sources_ = NULL; label_ = new char[strlen(name) + 1]; strcpy(label_, name); paint_ = Paint::instance()->thin(); setDefaults(); } //---------------------------------------------------------------------- //---------------------------------------------------------------------- void Agent::setDefaults() { next_ = NULL; node_ = NULL; AgentPartner_ = NULL; x_ = 0.0; y_ = 0.0; features_ = NULL; edge_ = NULL; angle_ = NO_ANGLE; anchor_ = 0; mark_ = 0; color_ = NULL; window_ = 20; windowInit_ = 1; maxcwnd_ = 0; packetSize_ = 210; interval_ = 0.0375; tracevar_ = NULL; start_ = 0.0; stop_ = 1.0; produce_ = 0; flowcolor_ = NULL; flowcolor("black"); traffic_sources_ = NULL; paint_ = Paint::instance()->thin(); showLink(); } float Agent::distance(float x, float y) const { return ((x_-x)*(x_-x) + (y_-y)*(y_-y)); } void Agent::color(const char* name) { if (name[0] == 0) { if (color_) { delete []color_; color_ = 0; } return; } if (color_) delete []color_; color_ = new char[strlen(name) + 1]; strcpy(color_, name); } void Agent::size(double s) { size_ = s; width_ = s; height_ = s; update_bb(); } void Agent::update_bb() { double off = 0.5 * size_; /*XXX*/ bb_.xmin = x_ - off; bb_.ymin = y_ - off; bb_.xmax = x_ + off; bb_.ymax = y_ + off; } //---------------------------------------------------------------------- // TrafficSource * // TrafficSource::addTrafficSource(TrafficSource * ts) // - Add traffic source to the trafficsources_ list // - Returns the traffic source before the one just added //---------------------------------------------------------------------- TrafficSource * Agent::addTrafficSource(TrafficSource * ts) { TrafficSource * run, * last; run = traffic_sources_; last = NULL; // Find last traffic source on list while (run) { last = run; run = run->next_; } // if it exists then add it to the list if (last) { last->next_ = ts; } else { traffic_sources_ = ts; } return last; } //---------------------------------------------------------------------- // TrafficSource * // Agent::removeTrafficSource(TrafficSource * ts) { //---------------------------------------------------------------------- TrafficSource * Agent::removeTrafficSource(TrafficSource * ts) { // ts->previous_ should be NULL for the first traffic source // attached to this agent if (ts->previous_) { ts->previous_->next_ = ts->next_; } else { // I am the first traffic source so // make agent point to my next_ traffic_sources_ = ts->next_; } if (ts->next_) { ts->next_->previous_ = ts->previous_; } return ts; } void Agent::add_feature(Feature* f) { f->next_ = features_; features_ = f; } Feature *Agent::find_feature(char *name) const { /*given a feature, remove it from an agent's feature list*/ Feature *ft; ft=features_; while (ft!=NULL) { if (strcmp(ft->name(), name)==0) return ft; ft=ft->next(); } return NULL; } void Agent::delete_feature(Feature* r) { /*given a feature, remove it from an agent's feature list*/ Feature *f1, *f2; f1=features_; f2=features_; while ((f1!=r)&&(f1!=NULL)) { f2=f1; f1=f1->next(); } if (f1==r) { f2->next(f1->next()); if (f1==features_) features_=f1->next(); } } void Agent::label(const char* name, int anchor) { delete label_; label_ = new char[strlen(name) + 1]; strcpy(label_, name); anchor_ = anchor; } void Agent::drawlabel(View* nv) const { /*XXX node number */ if (label_ != 0) nv->string(x_, y_, size_, label_, anchor_); } /* void Agent::drawlabel(PSView* nv) const { if (label_ != 0) nv->string(x_, y_, size_, label_, anchor_); } */ //---------------------------------------------------------------------- // void // Agent::flowcolor(const char* color) //---------------------------------------------------------------------- void Agent::flowcolor(const char* color) { if (color[0] == 0) { if (flowcolor_) { delete []flowcolor_; flowcolor_ = 0; } return; } if (flowcolor_) delete []flowcolor_; flowcolor_ = new char[strlen(color) + 1]; strcpy(flowcolor_, color); } void Agent::tracevar(const char* var) { if (var[0] == 0) { if (tracevar_) { delete []tracevar_; tracevar_ = 0; } return; } if (tracevar_) delete []tracevar_; tracevar_ = new char[strlen(var) + 1]; strcpy(tracevar_, var); } void Agent::reset(double) { paint_ = Paint::instance()->thick(); } void Agent::place(double x, double y) { x_ = x; y_ = y; mark_ = 1; update_bb(); } const char* Agent::info() const { static char text[128]; if(AgentPartner_!=NULL) { sprintf(text, "Agent %s-%d\nConnected to: %s on Node %d", name(), number(), AgentPartner_->name(), AgentPartner_->node_->num()); } else { sprintf(text, "Agent: %s", label_); } return (text); } const char* Agent::getname() const { static char text[128]; sprintf(text, "a %s", label_); return (text); } void Agent::monitor(Monitor *m, double now, char *result, int len) { char buf[256]; Feature *f; monitor_=m; sprintf(result, "Agent: %s", label_); for(f=features_;f!=NULL;f=f->next()) { strcat(result, "\n"); f->monitor(now, buf, 255); if (strlen(result)+strlen(buf)<(unsigned int)len) strcat(result, buf); else { fprintf(stderr, "not enough space for monitor return string\n"); return; } } } //---------------------------------------------------------------------- // BoxAgent::BoxAgent(const char * type, int id, double size); //---------------------------------------------------------------------- BoxAgent::BoxAgent(const char * type, int id, double size) : Agent(type,id,size) { BoxAgent::size(size); } //---------------------------------------------------------------------- // BoxAgent::BoxAgent(const char* name, double size) //---------------------------------------------------------------------- BoxAgent::BoxAgent(const char* name, double size) : Agent(name, size) { BoxAgent::size(size); } //---------------------------------------------------------------------- // void // BoxAgent::size(double s) //---------------------------------------------------------------------- void BoxAgent::size(double s) { // double delta = 0.5 * s; // Set size_ to s Agent::size(s); // x0_ = x_ - delta; // y0_ = y_ - delta; // x1_ = x_ + delta; // y1_ = y_ + delta; x0_ = x_; y0_ = y_; // x1_ = x_ + s; // y1_ = y_ + s*0.5; width_ = s; height_ = s*0.5; update_bb(); } void BoxAgent::update_bb() { bb_.xmin = x0_; bb_.ymin = y0_; bb_.xmax = x0_ + width_; bb_.ymax = y0_ + height_; } //---------------------------------------------------------------------- //---------------------------------------------------------------------- void BoxAgent::findClosestCornertoPoint(double x, double y, double &corner_x, double &corner_y) const { double distance_0, distance_1; // Calculate the difference distance_0 = x0_ - x; distance_1 = x0_ + width_ - x; //We only want the magnitude if (distance_0 < 0) { distance_0 = -distance_0; } if (distance_1 < 0) { distance_1 = -distance_1; } if (distance_0 < distance_1) { corner_x = x0_; } else { corner_x = x0_ + width_; } // Do the same for the y values distance_0 = y0_ - y; distance_1 = y0_ + height_ - y; if (distance_0 < 0) { distance_0 = -distance_0; } if (distance_1 < 0) { distance_1 = -distance_1; } if (distance_0 < distance_1) { corner_y = y0_; } else { corner_y = y0_ + height_; } } //---------------------------------------------------------------------- //---------------------------------------------------------------------- int BoxAgent::inside(double, float px, float py) const { return (px >= x0_ && px <= (x0_ + width_) && py >= y0_ && py <= (y0_ + height_)); } //---------------------------------------------------------------------- // void // BoxAgent::draw(View* nv, double ) const // - Draw the agent label with a rectangle around it // - Also draw monitors associated with it //---------------------------------------------------------------------- void BoxAgent::draw(View* nv, double time) { double corner_x, corner_y, partner_corner_x, partner_corner_y; double label_width, label_height, label_x, label_y; char full_label[128]; // Draw line connecting this to its partner if (AgentPartner_) { if (draw_link_) { AgentPartner_->findClosestCornertoPoint(x(), y(), partner_corner_x, partner_corner_y); findClosestCornertoPoint(partner_corner_x, partner_corner_y, corner_x, corner_y); nv->line(corner_x, corner_y, partner_corner_x, partner_corner_y, paint_); } } // Draw the label if it exists if (label_ != 0) { // Exapnd label to show partner id if connected if (AgentPartner_) { if (AgentRole_ == SOURCE) { sprintf(full_label, "%s - %d", label_, number_); } else { sprintf(full_label, "%s - %d", label_, AgentPartner_->number()); } } else { sprintf(full_label, "%s", label_); } // We have to keep calculting the label width and height because // we have no way of knowing if the user has zoomed in or out // on the current network view. label_height = 0.9 * height_; label_width = nv->getStringWidth(full_label, label_height); // Add 10% of padding to width for the box setWidth(1.1 * label_width); place(x_,y_); // Center label in box label_x = x0_ + (width_ - label_width); label_y = y0_ + (height_ - label_height); nv->string(full_label, label_x , label_y, label_height, NULL); update_bb(); } // Draw the rectangle nv->rect(x0_, y0_, x0_ + width_, y0_ + height_, paint_); if (monitor_ != NULL) { monitor_->draw(nv, (x0_ + x0_ + width_)/2, y0_ - height_); } } /* void BoxAgent::draw(PSView* nv, double ) const { nv->rect(x0_, y1_, x1_, y0_, paint_); if (label_ != 0) { nv->string((x0_+x1_)/2, (y0_+y1_)/2, size_*0.75, label_, ANCHOR_CENTER); } } */ //---------------------------------------------------------------------- // void // BoxAgent::place(double x, double y) { //---------------------------------------------------------------------- void BoxAgent::place(double x, double y) { double nsin, ncos; Agent::place(x, y); // Save original x,y values SINCOSPI(angle_, &nsin, &ncos); /*XXX should really use the X-display width*/ //width_ = strlen(label_)/2; //width_ = strlen(label_) * 2.0; // on solaris, sin(M_PI) != 0 !!! // angle_ equals 0 or M_PI if ((nsin < 1.0e-8) && (nsin > -1.0e-9)) { y0_ = y_ - 0.5 * height_; //y_ = y0_; // angle is in the first 2 quadrants // i.e. between 0 and M_PI } else if (nsin > 0) { y0_ = y_; // angle_ is greater than M_PI but less than 2M_PI } else { // Move down twice as far to make room for traffic source labels y0_ = y_ - 2*height_; //y_ = y0_; } // angle equals M_PI/2 or 3M_PI/2 if ((ncos < 1.0e-8) && (ncos > -1.0e-9)) { x0_ = x_ - width_; //x_ = x0_; // angle is in 1st or 4th quadrant } else if (ncos > 0) { x0_ = x_; // angle is in 2nd or 3rd quadrant // i.e. between M_PI/2 and 3M_PI/2 } else { x0_ = x_ - width_; //x_ = x0_; } update_bb(); } //---------------------------------------------------------------------- // int // Agent::writeNsDefinitionScript(FILE *file) //---------------------------------------------------------------------- int Agent::writeNsDefinitionScript(FILE *file) { TrafficSource * ts; // Create agent definition fprintf(file, "set agent(%d) [new Agent/%s]\n", number_, label_); // Attach it to it's parent node fprintf(file, "$ns attach-agent $node(%d) $agent(%d)\n", node_->num(), number_); if (AgentRole_ == SOURCE) { // Set flow color for agent fprintf(file, "\n$ns color %d \"%s\"\n", number_, flowcolor_); // flow id fprintf(file, "$agent(%d) set fid_ %d\n", number_, number_); // Packet Size fprintf(file, "$agent(%d) set packetSize_ %d\n", number_, packetSize_); if (strcmp(name(), "TCP") == 0) { // Maximum window size fprintf(file, "$agent(%d) set window_ %d\n", number_, window_); // Initial reset of cwnd fprintf(file, "$agent(%d) set windowInit_ %d\n", number_, windowInit_); fprintf(file, "$agent(%d) set maxcwnd_ %d\n", number_, maxcwnd_); if (tracevar_) { if ((strcmp(tracevar_, "cwnd_") == 0) || (strcmp(tracevar_, "ssthresh_") == 0)) { fprintf(file, "$ns add-agent-trace $agent(%d) tcp\n", number_); fprintf(file, "$ns monitor-agent-trace $agent(%d)\n", number_); fprintf(file, "$agent(%d) set tracevar_ %s\n", number_, tracevar_); } } } else if (strcmp(name(), "TCP/Reno") == 0) { } else if (strcmp(name(), "TCP/NewReno") == 0) { } else if (strcmp(name(), "TCP/Vegas") == 0) { } else if (strcmp(name(), "TCP/Sack1") == 0) { } else if (strcmp(name(), "TCP/Fack") == 0) { } else if (strcmp(name(), "UDP") == 0) { } } else if (AgentRole_ == DESTINATION) { // We have a sink if (strcmp(name(), "TCPSink") == 0) { fprintf(file, "$agent(%d) set packetSize_ %d\n", number_, packetSize_); } else if (strcmp(name(), "TCPSink/DelAck") == 0) { fprintf(file, "$agent(%d) set packetSize_ %d\n", number_, packetSize_); fprintf(file, "$agent(%d) set interval_ %f\n", number_, interval_); } else if (strcmp(name(), "TCPSink/Sack1") == 0) { // Ask about this one look at ns doc 29.2.3 for proper // syntax } // if it is NULL or anything else do nothing } /* // CBR source agents } else if (strcmp(name(), "CBR")==0) { fprintf(file, "\n$ns color %d \"%s\"\n",number_, flowcolor_); fprintf(file, "set agent%d [new Agent/%s]\n", number_, label_); fprintf(file, "$ns attach-agent $n(%d) $agent%d \n", node_->num(), number_); fprintf(file, "$agent%d set fid_ %d\n", number_, number_); fprintf(file, "$agent%d set packetSize_ %d\n", number_, packetSize_); fprintf(file, "$agent%d set interval_ %f\n", number_, interval_); } else if (AgentRole_ == DESTINATION) { // TCP/Full destination agents } else if (strcmp(name(), "TCP/FullTcp") == 0){ fprintf(file, "\nset agent%d [new Agent/%s]\n", number_, label_); fprintf(file, "$ns attach-agent $node(%d) $agent%d \n", node_->num(), number_); fprintf(file, "$agent%d listen\n", number_); // all destination agents (NULL) } else { fprintf(file, "\nset agent%d [new Agent/%s]\n", number_, label_); fprintf(file, "$ns attach-agent $node(%d) $agent%d\n", node_->num(), number_); } } */ if (traffic_sources_) { // # Create a CBR traffic source and attach it to udp0 // set cbr0 [new Application/Traffic/CBR] // $cbr0 set packetSize_ 500 // $cbr0 set interval_ 0.005 // $cbr0 attach-agent $udp0 fprintf(file, "\n# Create traffic sources and add them to the agent.\n"); for (ts = traffic_sources_; ts; ts = ts->next_) { ts->writeNsDefinitionScript(file); } } return 0; } //---------------------------------------------------------------------- // int // Agent::writeNsConnectionScript(FILE * file) //---------------------------------------------------------------------- int Agent::writeNsConnectionScript(FILE * file) { TrafficSource * ts; if (AgentRole_ == SOURCE) { fprintf(file, "$ns connect $agent(%d) $agent(%d)\n\n", number_, AgentPartner_->number_); fprintf(file, "\n# Traffic Source actions.\n"); for (ts = traffic_sources_; ts; ts = ts->next_) { ts->writeNsActionScript(file); } } return 0; } //---------------------------------------------------------------------- // //---------------------------------------------------------------------- int Agent::saveAsEnam(FILE *file) { if ((AgentRole_ == 10)&&(strcmp(name(), "CBR")!=0)) { if (AgentPartner_ != NULL) fprintf(file, "##g -t * -l %s -r %d -s %d -c %s -i %d -w %d -m %d -t %s -b %f -p %d -o %f -n %d -u %d\n", label_, AgentRole_, node_->num(), flowcolor_, windowInit_, window_, maxcwnd_, tracevar_, start_, produce_, stop_, number_, AgentPartner_->number_); else fprintf(file, "##g -t * -l %s -r %d -s %d -c %s -i %d -w %d -m %d -t %s -b %f -p %d -o %f -n %d\n", label_, AgentRole_, node_->num(), flowcolor_, windowInit_, window_, maxcwnd_, tracevar_, start_, produce_, stop_, number_); } else if (((AgentRole_ == SOURCE) || (AgentRole_ == 10)) && (strcmp(name(), "CBR")==0)) { if (AgentPartner_ != NULL) fprintf(file, "##g -t * -l %s -r %d -s %d -c %s -k %d -v %f -b %f -o %f -n %d -u %d \n", label_, AgentRole_, node_->num(), flowcolor_, packetSize_, interval_, start_, stop_, number_, AgentPartner_->number_); else fprintf(file, "##g -t * -l %s -r %d -s %d -c %s -k %d -v %f -b %f -o %f -n %d\n", label_, AgentRole_, node_->num(), flowcolor_, packetSize_, interval_, start_, stop_, number_); } else { if (AgentPartner_ != NULL) fprintf(file, "##g -t * -l %s -r %d -s %d -n %d -u %d \n", label_, AgentRole_, node_->num(), number_, AgentPartner_->number_); else fprintf(file, "##g -t * -l %s -r %d -s %d -n %d\n", label_, AgentRole_, node_->num(), number_); } return(0); } //---------------------------------------------------------------------- //---------------------------------------------------------------------- const char* Agent::property() { static char text[256]; char * p; // Header p = text; sprintf(text, "{\"Agent: %s-%d\" title title \"Agent %d\"} ", name(), number_, number_); if (AgentRole_ == SOURCE) { p = &text[strlen(text)]; sprintf(p, "{\"Flow Color\" flowcolor_ color %s} ", flowcolor_); p = &text[strlen(text)]; sprintf(p, "{\"Packet Size\" packetSize_ text %d} ", packetSize_); //TCP source agents if (strcmp(name(), "TCP") == 0) { p = &text[strlen(text)]; sprintf(p, "{\"Initial Window Size\" windowInit_ text %d} ", windowInit_); p = &text[strlen(text)]; sprintf(p, "{\"Window\" window_ text %d} ", window_); p = &text[strlen(text)]; sprintf(p, "{\"Max Cwnd\" maxcwnd_ text %d} ", maxcwnd_); } } else if (AgentRole_ == DESTINATION) { p = &text[strlen(text)]; sprintf(p, "{\"Partner\" partner_number text %d} ", AgentPartner_->num()); } else { p = &text[strlen(text)]; sprintf(p, "{\"To edit this agent's properties connect agent to it's partner.\" partner_number label }"); } return(text); } nam-1.15/agent.h0000664000076400007660000001421110201751755012345 0ustar tomhnsnam/* * Copyright (c) 1997 University of Southern California. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the Information Sciences * Institute of the University of Southern California. * 4. Neither the name of the University nor of the Institute may be used * to endorse or promote products derived from this software without * specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * @(#) $Header: /cvsroot/nsnam/nam-1/agent.h,v 1.21 2005/02/07 20:47:41 haldar Exp $ (LBL) */ #ifndef nam_agent_h #define nam_agent_h #include #include "animation.h" #include "trafficsource.h" class Queue; class Edge; class Feature; class Node; class NetView; //class PSView; class Monitor; #define SOURCE 10 #define DESTINATION 20 class Agent : public Animation, public TclObject { public: virtual int classid() const { return ClassAgentID; } inline const char* name() const { return (label_); } inline int num() const { return (number_); } inline int number() const { return (number_); } inline void setNumber(int number) {number_ = number;} inline double size() const { return (size_); } virtual void size(double s); virtual void reset(double); virtual double x() const { return (x_); } virtual double y() const { return (y_); } inline double width() {return width_;} inline double height() {return height_;} virtual void findClosestCornertoPoint(double x, double y, double &corner_x, double &corner_y) const = 0; virtual void place(double x, double y); void label(const char* name, int anchor); void color(const char* name); inline int anchor() const { return (anchor_); } inline void anchor(int v) { anchor_ = v; } inline Agent *next() const { return next_;} inline void next(Agent *a) { next_=a;} inline Edge *edge() const { return edge_;} inline double angle() const { return angle_;} inline void angle(double a) { angle_=a;} virtual float distance(float x, float y) const; void flowcolor(const char* color); inline void windowInit(int size) { windowInit_ = size;} inline void window(int size) { window_ = size;} inline void maxcwnd(int size) { maxcwnd_ = size;} void tracevar(const char* var); inline void startAt(float time) { start_ = time;} inline void stopAt(float time) { stop_ = time;} inline void produce(int number) { produce_ = number;} inline void packetSize(int size) { packetSize_ = size;} inline void interval(float size) { interval_ = size;} inline float startAt() { return start_;} inline float stopAt() { return stop_;} inline int produce() { return produce_;} TrafficSource * addTrafficSource(TrafficSource * ts); TrafficSource * removeTrafficSource(TrafficSource * ts); void add_feature(Feature *f); Feature *find_feature(char *) const; void delete_feature(Feature *f); const char* info() const; const char* getname() const; void monitor(Monitor *m, double now, char *result, int len); inline int marked() const { return (mark_); } inline void mark(int v) { mark_ = v; } virtual void update_bb(); void showLink() {draw_link_ = true;} void hideLink() {draw_link_ = false;} int writeNsDefinitionScript(FILE * file); int writeNsConnectionScript(FILE * file); int saveAsEnam(FILE *file); const char* property(); Agent * next_; Node* node_; int AgentRole_; Agent * AgentPartner_; TrafficSource * traffic_sources_; // This list is modified by // add(remove)TrafficSource bool draw_link_; protected: Agent(const char * type, int id, double _size); Agent(const char* name, double _size); void drawlabel(View*) const; int number_; double size_; double x_, y_; double width_; double height_; Feature* features_; Edge* edge_; double angle_; int anchor_; int mark_; char* label_; char * color_; // Following is used by Nam Editor to store data to // be sent to ns int window_, windowInit_, maxcwnd_; int packetSize_; float interval_; char * tracevar_; char * flowcolor_; float start_, stop_; int produce_; private: void setDefaults(); }; class BoxAgent : public Agent { public: BoxAgent(const char * type, int id, double size); BoxAgent(const char* name, double size); virtual void size(double s); virtual void draw(View * nv, double time); // virtual void draw(PSView*, double now) const; virtual void place(double x, double y); int inside(double, float, float) const; virtual void update_bb(); virtual void findClosestCornertoPoint(double x, double y, double &corner_x, double &corner_y) const; void setWidth(double w) {width_ = w;} void setHeight(double h) {height_ = h;} virtual double x() const {return x0_;} virtual double y() const {return y0_;} private: double x0_, y0_; // double x1_, y1_; }; #endif nam-1.15/anetmodel.cc0000664000076400007660000005202707203622613013362 0ustar tomhnsnam/* * Network model with automatic layout * * Layout code from nem by Elan Amir * * $Header: /cvsroot/nsnam/nam-1/anetmodel.cc,v 1.25 2000/11/12 23:19:39 mehringe Exp $ */ #include #include #include #include "random.h" #include "view.h" #include "netview.h" #include "animation.h" #include "queue.h" #include "edge.h" #include "node.h" #include "agent.h" #include "sincos.h" #include "state.h" #include "packet.h" #include "anetmodel.h" class AutoNetworkModelClass : public TclClass { public: AutoNetworkModelClass() : TclClass("NetworkModel/Auto") {} TclObject* create(int argc, const char*const* argv) { if (argc < 5) return 0; return (new AutoNetModel(argv[4])); } } autonetworkmodel_class; int AutoNetModel::AUTO_ITERATIONS_ = 1; int AutoNetModel::INCR_ITERATIONS_ = 200; int AutoNetModel::RANDOM_SEED_ = 1; int AutoNetModel::recalc_ = 1; double AutoNetModel::INIT_TEMP_ = 0.30; // follow Elan's double AutoNetModel::MINX_ = 0.0; double AutoNetModel::MAXX_ = 1.0; double AutoNetModel::MINY_ = 0.0; double AutoNetModel::MAXY_ = 1.0; AutoNetModel::AutoNetModel(const char *animator) : NetModel(animator) { iterations_ = AUTO_ITERATIONS_; bind("KCa_", &kca_); bind("KCr_", &kcr_); bind("Recalc_", &recalc_); bind("INCR_ITERATIONS_", &INCR_ITERATIONS_); bind("AUTO_ITERATIONS_", &AUTO_ITERATIONS_); bind("RANDOM_SEED_", &RANDOM_SEED_); } AutoNetModel::~AutoNetModel() { } int AutoNetModel::command(int argc, const char *const *argv) { if (argc == 2) { if (strcmp(argv[1], "layout") == 0) { /* * layout * compute layout using Elan's nem */ layout(); return (TCL_OK); } if (strcmp(argv[1], "relayout") == 0) { relayout(); return (TCL_OK); } if (strcmp(argv[1], "reset") == 0) { reset_layout(); return (TCL_OK); } } return (NetModel::command(argc, argv)); } void AutoNetModel::reset_layout() { Node *n; Edge *e; initEmbedding(); for (n = nodes_; n != 0; n = n->next_) for (e = n->links(); e != 0; e = e->next_) e->unmark(); scale_estimate(); placeEverything(); for (View *p = views_; p != 0; p = p->next_) if ((p->width() > 0) && (p->height() > 0)) { p->redrawModel(); p->draw(); } } void AutoNetModel::initEmbedding() { Node *n; double maxx, maxy; Random::seed_heuristically(); maxx = MINX_ + (MAXX_-MINX_) * 0.4; maxy = MINY_ + (MAXY_-MINY_) * 0.4; // randomize nodes' position within square [(0,0), (1,1)] for (nNodes_ = 0, n = nodes_; n != 0; n = n->next_, nNodes_++) { n->place(Random::uniform(MINX_, maxx), Random::uniform(MINY_, maxy)); } //optk_ = kc_ * sqrt((MAXX_-MINX_)*(MAXY_-MINY_) / (double)nNodes); optka_ = kca_ * sqrt((MAXX_-MINX_)*(MAXY_-MINY_) / (double)nNodes_); optkr_ = kcr_ * sqrt((MAXX_-MINX_)*(MAXY_-MINY_) / (double)nNodes_); temp_ = INIT_TEMP_; } void AutoNetModel::placeEverything() { Node *n; // Should re-initialize nymin_ and nymax_ nymin_ = FLT_MAX; nymax_ = -FLT_MAX; for (n = nodes_; n != 0; n = n->next_) { for (Edge *e = n->links(); e != 0; e = e->next_) placeEdge(e, n); placeAllAgents(n); if (nymin_ > n->y()) nymin_ = n->y(); if (nymax_ < n->y()) nymax_ = n->y(); } // Place all routes for (n = nodes_; n != 0; n = n->next_) { n->clear_routes(); n->place_all_routes(); } } // do more passes void AutoNetModel::relayout() { Node *n; Edge *e; temp_ = INIT_TEMP_; for (n = nodes_; n != 0; n = n->next_) for (e = n->links(); e != 0; e = e->next_) e->unmark(); //weigh_subtrees(); //bifucate_graph(); // in case that the two constants changed optka_ = kca_ * sqrt((MAXX_-MINX_)*(MAXY_-MINY_) / (double)nNodes_); optkr_ = kcr_ * sqrt((MAXX_-MINX_)*(MAXY_-MINY_) / (double)nNodes_); for (int i = 0; i < 100; i++) { //alternate doses of vigorous shaking and letting it settle a little //seem to work best. if ((i==0)||(i==60)) temp_ = INIT_TEMP_; if ((i==50)||(i==70)) temp_ = INIT_TEMP_/4.0; if ((i<50)||((i>=60)&&(i<70))) { embed_phase1(); } else { embed_phase2(); } for (n = nodes_; n != 0; n = n->next_) for (e = n->links(); e != 0; e = e->next_) e->unmark(); scale_estimate(); placeEverything(); for (View *p = views_; p != 0; p = p->next_) if ((p->width() > 0) && (p->height() > 0)) { // XXX assume this means tk has been // initialized p->redrawModel(); p->draw(); } } } // do several passes of embedding void AutoNetModel::layout() { initEmbedding(); for (int i = 0; i < iterations_; i++) { embed_phase2(); } scale_estimate(); // find node size after layout placeEverything(); } void AutoNetModel::cool() { if (temp_ > 0.001) temp_ *= 0.95; else temp_ = 0.001; } void AutoNetModel::placeAllAgents(Node *src) const { // clear all marks and clear all angles for (Agent *a = src->agents(); a != NULL; a = a->next()) { a->mark(0), a->angle(NO_ANGLE); placeAgent(a, src); } } // we need to use edge length, instead of delay, to estimate scale void AutoNetModel::scale_estimate() { /* Determine the maximum link delay. */ double emax = 0., emean = 0., dist; Node *n; int edges=0; for (n = nodes_; n != 0; n = n->next_) { for (Edge* e = n->links(); e != 0; e = e->next_) { edges++; dist = n->distance(*(e->neighbor())); emean+=dist; if (dist > emax) emax = dist; } } emean/=edges; /*store this because we need it for monitors*/ node_size_ = node_sizefac_ * emean; /* * Check for missing node or edge sizes. If any are found, * compute a reasonable default based on the maximum edge * dimension. */ for (n = nodes_; n != 0; n = n->next_) { n->size(node_size_); for (Edge* e = n->links(); e != 0; e = e->next_) e->size(.03 * emean); } } // Fruchterman, T.M.J and Reingold, E.M., // Graph Drawing by Force-directed Placement, // Software-Practice and Experience, vol. 21(11), 1129-1164 (Nov. 91) // // Do one pass of embedding void AutoNetModel::embed_phase1() { Node *v, *u; Edge* e; double dx, dy, mag, f, minn, rx, ry; /* * Randomly jitter everything to try and break out of local minima */ for (v = nodes_; v != 0; v = v->next_) { v->displace(0., 0.); rx=0.1*(MAXX_-MINX_)* ((INIT_TEMP_-temp_)/INIT_TEMP_)* ((Random::random()&0xffff)/32768.0 - 1.0); ry=0.1*(MAXX_-MINX_)* ((INIT_TEMP_-temp_)/INIT_TEMP_)* ((Random::random()&0xffff)/32768.0 - 1.0); v->displace(rx,ry); } /* * Calculate repulsive forces between all vertices. */ for (v = nodes_; v != 0; v = v->next_) { for (u = nodes_; u != 0; u = u->next_) { if (u == v) continue; dx = v->x() - u->x(); dy = v->y() - u->y(); if (dx == 0 && dy == 0) dx = dy = 0.001; mag = sqrt(dx * dx + dy * dy); f = REP(mag, optkr_); v->displace(v->dx() + ((dx / mag) * f), v->dy() + ((dy / mag) * f)); } } /* * Limit the maximum displacement to the temperature temp; * and then prevent from being displaced outside frame. */ if (recalc_==1) { for (v = nodes_; v != 0; v = v->next_) { mag = sqrt(v->dx()*v->dx() + v->dy() * v->dy()); double posx = v->x(), posy = v->y(); if (mag != 0) { minn = min(mag, temp_); posx += v->dx() / mag * minn; posy += v->dy() / mag * minn; } v->place(posx, posy); v->displace(0.,0.); } } /* * Calculate attractive forces between neighbors. */ for (v = nodes_; v != 0; v = v->next_) { for (e = v->links(); e != 0; e = e->next_) { u = e->neighbor(); dx = v->x() - u->x(); dy = v->y() - u->y(); mag = sqrt(dx * dx + dy * dy); // XXX we consider single direction edge as // of single direction attraction. So we only // attract one node toward the other. If later // we have the other edge, the other node will be // attracted too. if (mag >= 0) { f = ATT(mag, optka_); v->displace(v->dx() - dx / mag * f, v->dy() - dy / mag * f); } } } /* * Limit the maximum displacement to the temperature temp; * and then prevent from being displaced outside frame. */ for (v = nodes_; v != 0; v = v->next_) { mag = sqrt(v->dx()*v->dx() + v->dy() * v->dy()); double posx = v->x(), posy = v->y(); if (mag != 0) { minn = min(mag, temp_); posx += v->dx() / mag * minn; posy += v->dy() / mag * minn; } #if 0 posx = min(MAXX_, max(MINX_, posx)); posy = min(MAXY_, max(MINY_, posy)); #endif v->place(posx, posy); #if 0 printf("Position of node %s: (%f, %f)\n", v->name(), posx, posy); #endif } /* Cool the temperature */ if (temp_ > 0.001) temp_ *= 0.95; else temp_ = 0.001; #if 0 printf("------------------------------\n"); #endif } void AutoNetModel::embed_phase2() { Node *v, *u; Edge* e; double dx, dy, mag, f, minn; /* * Calculate repulsive forces between all vertices. */ for (v = nodes_; v != 0; v = v->next_) { //XXX why not 0. as in paper? v->displace(0.,0.); for (u = nodes_; u != 0; u = u->next_) { if (u == v) continue; dx = v->x() - u->x(); dy = v->y() - u->y(); if (dx == 0 && dy == 0) dx = dy = 0.001; mag = sqrt(dx * dx + dy * dy); f = REP(mag, optkr_); if (f < 2*u->size()) { if (fsize()/(mag/* *temp_*/); } else f=2*u->size()/mag; } v->displace(v->dx() + ((dx / mag) * f), v->dy() + ((dy / mag) * f)); } } /* * Limit the maximum displacement to the temperature temp; * and then prevent from being displaced outside frame. */ if (recalc_==1) { for (v = nodes_; v != 0; v = v->next_) { mag = sqrt(v->dx()*v->dx() + v->dy() * v->dy()); double posx = v->x(), posy = v->y(); if (mag != 0) { minn = min(mag, temp_); posx += v->dx() / mag * minn; posy += v->dy() / mag * minn; } v->place(posx, posy); v->displace(0.,0.); } } /* * Calculate attractive forces between neighbors. */ for (v = nodes_; v != 0; v = v->next_) { //if(v->mass()<=0) continue; for (e = v->links(); e != 0; e = e->next_) { u = e->neighbor(); //if(u->mass()<=0) continue; dx = v->x() - u->x(); dy = v->y() - u->y(); mag = sqrt(dx * dx + dy * dy); // XXX we consider single direction edge as // of single direction attraction. So we only // attract one node toward the other. If later // we have the other edge, the other node will be // attracted too. if (mag >= ((INIT_TEMP_-temp_)/INIT_TEMP_)*(e->length()+(v->size()+u->size())*0.75)) { f = ATT2(mag, optka_); v->displace(v->dx() - dx / mag * f, v->dy() - dy / mag * f); } } } /* * Limit the maximum displacement to the temperature temp; * and then prevent from being displaced outside frame. */ for (v = nodes_; v != 0; v = v->next_) { //if(v->mass()<=0) continue; mag = sqrt(v->dx()*v->dx() + v->dy() * v->dy()); double posx = v->x(), posy = v->y(); if (mag != 0) { minn = min(mag, temp_); posx += v->dx() * minn / mag; posy += v->dy() * minn / mag; } #if 0 posx = min(MAXX_, max(MINX_, posx)); posy = min(MAXY_, max(MINY_, posy)); #endif v->place(posx, posy); #if 0 printf("Position of node %s: (%f, %f)\n", v->name(), posx, posy); #endif } /* Cool the temperature */ if (temp_ > 0.001) temp_ *= 0.95; else temp_ = 0.001; #if 0 printf("------------------------------\n"); #endif } // packet handling stuff. use new packet void AutoNetModel::handle(const TraceEvent& e, double now, int direction) { switch (e.tt) { case 'a': { NetModel::handle(e, now, direction); // recalculate bounding box so that all agents will be within // view for (View *v = views_; v != 0; v = v->next_) v->redrawModel(); break; } default: NetModel::handle(e, now, direction); break; } } void AutoNetModel::bifucate_graph() { Node *n, *m; for (n = nodes_; n != 0; n = n->next_) { if (n->mass()<=0) continue; int remaining=0; for (m = nodes_; m != 0; m = m->next_) { if (m->mass()>0) remaining++; m->mark(0); } int depth=0; int result=2; while((result!=0)&&(result!=1)) { depth++; for (m = nodes_; m != 0; m = m->next_) { if (m->mass()>0) { m->mark(0); m->color("black"); } } result=mark_to_depth(n, depth); printf("depth: %d result: %d\n", depth, result); } if (result==1) { int ctr=0; for (m = nodes_; m != 0; m = m->next_) { if (m->marked()==1) ctr++; } printf("remaining: %d ctr: %d\n", remaining, ctr); if ((remaining-ctr>1)&&(ctr>1)&&(ctrnext_) { if (m->marked()==1) { m->mass(-1); m->color("blue"); } } } } else { printf("failed at depth %d!\n", depth); } } } int AutoNetModel::mark_to_depth(Node *n, int depth) { int sum=0; if (depth==0) { n->mark(2); return 1; } if (n->marked()==2) sum--; n->mark(1); for(Edge *e = n->links(); e != 0; e = e->next_) { Node *dst=e->neighbor(); if ((dst->mass()>0)&&(dst->marked()==0)) sum+=mark_to_depth(dst, depth-1); } return sum; } void AutoNetModel::weigh_subtrees() { Node *n, *dst, *newdst; Edge* e; int nodes=0; for (n = nodes_; n != 0; n = n->next_) { n->mass(1); } for (n = nodes_; n != 0; n = n->next_) { int ctr=0; for (e = n->links(); e != 0; e = e->next_) ctr++; if (ctr==1) { dst=n->links()->neighbor(); dst->mass(2); n->mass(0); n->color("green"); nodes++; } while(ctr==1) { ctr=0; for (e = dst->links(); e != 0; e = e->next_) if (e->neighbor()->mass()==1) ctr++; if (ctr==1) { for (e = dst->links(); e != 0; e = e->next_) if (e->neighbor()->mass()==1) { newdst=e->neighbor(); newdst->mass(1+dst->mass()); dst->mass(0); dst->color("red"); nodes++; dst=newdst; break; } } } } printf("massless nodes: %d\n", nodes); nodes=0; for (n = nodes_; n != 0; n = n->next_) { if (n->mass()==0) { nodes++; n->color("grey"); } } printf("massless nodes: %d\n", nodes); } void AutoNetModel::place_subtrees() { Node *n, *dst; Edge* e; double angle; int nodes=0, did_something=1; double comx=0.0, comy=0.0, x, y; for (n = nodes_; n != 0; n = n->next_) { if (n->mass()!=0) { comx+=n->x(); comy+=n->y(); nodes++; } } comx/=nodes; comy/=nodes; printf("com at %.2f,%.2f\n", comx, comy); while (did_something) { did_something=0; for (n = nodes_; n != 0; n = n->next_) { if (n->mass()==0) { for (e = n->links(); e != 0; e = e->next_) if (e->neighbor()->mass()>0) { dst=e->neighbor(); n->mass(1); n->color("green"); x=dst->x(); y=dst->y(); if (y-comy!=0) angle=atan((x-comx)/(y-comy)); else angle=0; if (y-comy>0) angle+=M_PI; n->place(x-2*n->size()*sin(angle), y-2*n->size()*cos(angle)); did_something=1; break; } } } } } //------------------------------------------------------------------ // The following is a big hack and I hope it works // // - It is being done to speed up the layout of realtime dynamic nodes // by only laying out that node and not the others // - These procedures should be integrated into the main relayout // procedure when time permits //------------------------------------------------------------------ //------------------------------------------------------------------ // //------------------------------------------------------------------ void AutoNetModel::relayoutNode(Node *v) { Node *n; Edge *e; temp_ = INIT_TEMP_; for (n = nodes_; n != 0; n = n->next_) for (e = n->links(); e != 0; e = e->next_) e->unmark(); // in case that the two constants changed optka_ = kca_ * sqrt((MAXX_-MINX_)*(MAXY_-MINY_) / (double)nNodes_); optkr_ = kcr_ * sqrt((MAXX_-MINX_)*(MAXY_-MINY_) / (double)nNodes_); for (int i = 0; i < 100; i++) { // alternate doses of vigorous shaking and letting it settle a little // seem to work best. if ((i==0)||(i==60)) temp_ = INIT_TEMP_; if ((i==50)||(i==70)) temp_ = INIT_TEMP_/4.0; if ((i < 50) || ((i >= 60) && (i < 70))) { embed_phase1(v); } else { embed_phase2(v); } for (n = nodes_; n != 0; n = n->next_) for (e = n->links(); e != 0; e = e->next_) e->unmark(); scale_estimate(); placeEverything(); } } //------------------------------------------------------------------ // //------------------------------------------------------------------ void AutoNetModel::embed_phase1(Node *v) { Node *u; Edge* e; double dx, dy, mag, f, minn, rx, ry; /* * Randomly jitter everything to try and break out of local minima */ v->displace(0., 0.); rx = 0.1 * (MAXX_-MINX_) * ((INIT_TEMP_-temp_)/INIT_TEMP_) * ((Random::random()&0xffff)/32768.0 - 1.0); ry = 0.1 * (MAXX_-MINX_) * ((INIT_TEMP_-temp_)/INIT_TEMP_) * ((Random::random()&0xffff)/32768.0 - 1.0); v->displace(rx,ry); /* * Calculate repulsive forces between all vertices. */ for (u = nodes_; u != 0; u = u->next_) { if (u == v) continue; dx = v->x() - u->x(); dy = v->y() - u->y(); if (dx == 0 && dy == 0) dx = dy = 0.001; mag = sqrt(dx * dx + dy * dy); f = REP(mag, optkr_); v->displace(v->dx() + ((dx / mag) * f), v->dy() + ((dy / mag) * f)); } /* * Limit the maximum displacement to the temperature temp; * and then prevent from being displaced outside frame. */ if (recalc_ == 1) { mag = sqrt(v->dx()*v->dx() + v->dy() * v->dy()); double posx = v->x(), posy = v->y(); if (mag != 0) { minn = min(mag, temp_); posx += v->dx() / mag * minn; posy += v->dy() / mag * minn; } v->place(posx, posy); v->displace(0.,0.); } /* * Calculate attractive forces between neighbors. */ for (e = v->links(); e != 0; e = e->next_) { u = e->neighbor(); dx = v->x() - u->x(); dy = v->y() - u->y(); mag = sqrt(dx * dx + dy * dy); // XXX we consider single direction edge as // of single direction attraction. So we only // attract one node toward the other. If later // we have the other edge, the other node will be // attracted too. if (mag >= 0) { f = ATT(mag, optka_); v->displace(v->dx() - dx / mag * f, v->dy() - dy / mag * f); } } /* * Limit the maximum displacement to the temperature temp; * and then prevent from being displaced outside frame. */ mag = sqrt(v->dx()*v->dx() + v->dy() * v->dy()); double posx = v->x(), posy = v->y(); if (mag != 0) { minn = min(mag, temp_); posx += v->dx() / mag * minn; posy += v->dy() / mag * minn; } v->place(posx, posy); /* Cool the temperature */ if (temp_ > 0.001) temp_ *= 0.95; else temp_ = 0.001; } //------------------------------------------------------------------ // //------------------------------------------------------------------ void AutoNetModel::embed_phase2(Node *v) { Node *u; Edge* e; double dx, dy, mag, f, minn; /* * Calculate repulsive forces between all vertices. */ //XXX why not 0. as in paper? v->displace(0.,0.); for (u = nodes_; u != 0; u = u->next_) { if (u == v) continue; dx = v->x() - u->x(); dy = v->y() - u->y(); if (dx == 0 && dy == 0) dx = dy = 0.001; mag = sqrt(dx * dx + dy * dy); f = REP(mag, optkr_); if (f < 2*u->size()) { if (fsize()/(mag/* *temp_*/); } else { f=2*u->size()/mag; } } v->displace(v->dx() + ((dx / mag) * f), v->dy() + ((dy / mag) * f)); } /* * Limit the maximum displacement to the temperature temp; * and then prevent from being displaced outside frame. */ if (recalc_==1) { mag = sqrt(v->dx()*v->dx() + v->dy() * v->dy()); double posx = v->x(), posy = v->y(); if (mag != 0) { minn = min(mag, temp_); posx += v->dx() / mag * minn; posy += v->dy() / mag * minn; } v->place(posx, posy); v->displace(0.,0.); } /* * Calculate attractive forces between neighbors. */ for (e = v->links(); e != 0; e = e->next_) { u = e->neighbor(); //if(u->mass()<=0) continue; dx = v->x() - u->x(); dy = v->y() - u->y(); mag = sqrt(dx * dx + dy * dy); // XXX we consider single direction edge as // of single direction attraction. So we only // attract one node toward the other. If later // we have the other edge, the other node will be // attracted too. if (mag >= ((INIT_TEMP_-temp_)/INIT_TEMP_) * (e->length()+(v->size()+u->size()) * 0.75)) { f = ATT2(mag, optka_); v->displace(v->dx() - dx / mag * f, v->dy() - dy / mag * f); } } /* * Limit the maximum displacement to the temperature temp; * and then prevent from being displaced outside frame. */ mag = sqrt(v->dx()*v->dx() + v->dy() * v->dy()); double posx = v->x(), posy = v->y(); if (mag != 0) { minn = min(mag, temp_); posx += v->dx() * minn / mag; posy += v->dy() * minn / mag; } v->place(posx, posy); /* Cool the temperature */ if (temp_ > 0.001) temp_ *= 0.95; else temp_ = 0.001; } nam-1.15/anetmodel.h0000664000076400007660000000354507203622613013225 0ustar tomhnsnam/* * Network model with automatic layout * * $Header: /cvsroot/nsnam/nam-1/anetmodel.h,v 1.12 2000/11/12 23:19:39 mehringe Exp $ */ #ifndef nam_anetmodel_h #define nam_anetmodel_h #include "netmodel.h" class AutoNetModel : public NetModel { public: AutoNetModel(const char *animator); virtual ~AutoNetModel(); static int RANDOM_SEED_; static int AUTO_ITERATIONS_; static int INCR_ITERATIONS_; static int recalc_; static double INIT_TEMP_; // follow Elan's static double MINX_; static double MAXX_; static double MINY_; static double MAXY_; static double min(double a, double b) { return (a < b) ? a : b; } static double max(double a, double b) { return (a > b) ? a : b; } void handle(const TraceEvent& e, double now, int direction); virtual void recalc() { scale_estimate(); placeEverything(); } //virtual void moveNode(Node *n); void relayoutNode(Node * v); protected: void reset_layout(); void layout(); void relayout(); virtual void embed_phase1(); virtual void embed_phase2(); virtual void embed_phase1(Node * v); virtual void embed_phase2(Node * v); virtual void scale_estimate(); virtual void placeEverything(); void placeAllAgents(Node *src) const; void weigh_subtrees(); void place_subtrees(); void bifucate_graph(); int mark_to_depth(Node *n, int depth); // attractive and repulsive forces double ATT (double d, double k) { return d * d / k; } double ATT2 (double d, double k) { return d * d * d / k; } double REP (double d, double k) { return k * k / d; } void cool(); void initEmbedding(); // we need our own 'cmd layout' int command(int argc, const char*const* argv); private: int iterations_; int nNodes_; double optk_; // k used in computing att/rep forces double optka_; double optkr_; double temp_; double kc_; double kca_; double kcr_; }; #endif // nam_anetmodel_h nam-1.15/animation.cc0000664000076400007660000001763507742105261013402 0ustar tomhnsnam/* * Copyright (c) 1991,1993 Regents of the University of California. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the Computer Systems * Engineering Group at Lawrence Berkeley Laboratory. * 4. Neither the name of the University nor of the Laboratory may be used * to endorse or promote products derived from this software without * specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * @(#) $Header: /cvsroot/nsnam/nam-1/animation.cc,v 1.24 2003/10/11 22:56:49 xuanc Exp $ (LBL) */ #include #include #include #include #include "animation.h" #include "paint.h" #include "monitor.h" unsigned int Animation::LASTID_ = 0; Tcl_HashTable *Animation::AniHash_ = 0; unsigned int Animation::nAniHash_ = 0; // Static method Animation* Animation::find(unsigned int id) { Tcl_HashEntry *he = Tcl_FindHashEntry(AniHash_, (const char *)id); Animation *res = NULL; if (he != NULL) res = (Animation*) Tcl_GetHashValue(he); return res; } Animation::Animation(double tim, long offset) { paint_ = 0; oldPaint_ = 0; next_ = 0; prev_ = 0; si_.time = tim; si_.offset = offset; monitor_ = NULL; id_ = Animation::LASTID_++; tags_ = NULL; nTag_ = 0; aType_ = 0 ; bb_.clear(); if (Animation::AniHash_ == 0) { Animation::AniHash_ = new Tcl_HashTable; Tcl_InitHashTable(Animation::AniHash_, TCL_ONE_WORD_KEYS); } // Enter hash table for quick lookup and access int newEntry = 1; Tcl_HashEntry *he = Tcl_CreateHashEntry(AniHash_, (const char *)id_, &newEntry); if (newEntry && (he != NULL)) { // Do not handle exception he == NULL. Don't know how. Tcl_SetHashValue(he, (ClientData)this); nAniHash_++; } } //---------------------------------------------------------------------- // Animation::~Animation() //---------------------------------------------------------------------- Animation::~Animation() { // if (prev_ != 0) // *prev_ = next_; // if (next_ != 0) // next_->prev_ = prev_; // The above is taken care of by calling detach // Remove myself from the list on which I may be connected detach(); if (tags_ != NULL) delete tags_; // Remove from hash table Tcl_HashEntry *he = Tcl_FindHashEntry(AniHash_, (const char *)id_); if (he != NULL) { Tcl_DeleteHashEntry(he); nAniHash_--; } } void Animation::addTag(Animation *t) { if (tags_ == NULL) tags_ = new Animation* [AnimationTagIncrement]; else if (nTag_ % AnimationTagIncrement == 0) { // Increase tag array space Animation **tmp = new Animation* [nTag_+AnimationTagIncrement]; memcpy((char *)tmp, (char *)tags_, nTag_ * sizeof(Animation*)); delete tags_; tags_ = tmp; } tags_[nTag_++] = t; } void Animation::deleteTag(Animation *t) { for (int i = 0; i < nTag_; i++) { if (tags_[i] == t) { tags_[i] = tags_[nTag_ - 1]; nTag_ --; } } } //---------------------------------------------------------------------- // void // Animation::detach() // - Removes animation object from its prev_/next_ linked list // - Mostly used by the drawables_ and animations_ lists in NetModel //---------------------------------------------------------------------- void Animation::detach() { if (prev_ != 0) { // Set my previous neighbor's next_ to point to my next neighbor *prev_ = next_; } if (next_ != 0) { // Set my next neighbor's prev_ to point to my previous neighbors next_ next_->prev_ = prev_; } // When you remove this object don't forget to set all animation // pointers to NULL because when this object is deleted it will also // try to detach itself from the list prev_ = NULL; next_ = NULL; } //---------------------------------------------------------------------- // void // Animation::insert(Animation **head) // - Insert to the front of the list // - This seems to be a bad implementation. All over the nam code // I see use of this insert method right after the next_ pointer // is used for another list. // For Example from netmodel.cc: // n->next_ = nodes_; // nodes_ = n; // n->insert(&drawables_); // // - It works but is very confusing as to which next_ refers to what. //---------------------------------------------------------------------- void Animation::insert(Animation **head) { //Set my next pointer to the former head of the list next_ = * head; if (next_) { // Make the former head of the list point to my next_ // so that it can assign me to another object if it is // removed. next_->prev_ = &next_; } prev_ = head; *head = this; } void Animation::update(double /*now*/) { /* do nothing */ } void Animation::reset(double /*now*/) { /* do nothing */ } int Animation::inside(double /*now*/, float px, float py) const { // Why not use bbox to make a generic inside??? return bb_.inside(px, py); } float Animation::distance(float, float) const { // do nothing return HUGE_VAL; } void Animation::merge(BBox & b) { if (b.xmin > bb_.xmin) b.xmin = bb_.xmin; if (b.ymin > bb_.ymin) b.ymin = bb_.ymin; if (b.xmax < bb_.xmax) b.xmax = bb_.xmax; if (b.ymax < bb_.ymax) b.ymax = bb_.ymax; } const char* Animation::info() const { return (0); } const char* Animation::property() { return (0); } //---------------------------------------------------------------------- // const char * // Animation::getProperties(char * type) // - type is a object type. for example in queuehandle.h you can // have different types of queueahandles (DropTail, RED, etc) // - Used by the editor to update the properties window when the // type is changed //---------------------------------------------------------------------- const char * Animation::getProperties(const char * type) { return property(); } const char* Animation::getname() const { return (0); } const char* Animation::getfid() const { return (0); } const char* Animation::getesrc() const { return (0); } const char* Animation::getedst() const { return (0); } const char* Animation::gettype() const { return (0); } void Animation::monitor(Monitor *m, double now, char *result, int len) { } MonState *Animation::monitor_state(void) { return NULL; } void Animation::color(const char *color) { int pno = Paint::instance()->lookup(color, 3); if (pno < 0) { fprintf(stderr, "Animation::color: no such color: %s", color); return; } paint(pno); } void Animation::change_color(char *clr) { oldPaint_ = paint_; color(clr); } void Animation::toggle_color() { int pno = oldPaint_; oldPaint_ = paint_; paint_ = pno; } Animation* Animation::getLastTag() { if (nTag_ > 0) return tags_[0]->getLastTag(); else return this; } nam-1.15/animation.h0000664000076400007660000001232207742105261013230 0ustar tomhnsnam/* * Copyright (c) 1991,1993 Regents of the University of California. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the Computer Systems * Engineering Group at Lawrence Berkeley Laboratory. * 4. Neither the name of the University nor of the Laboratory may be used * to endorse or promote products derived from this software without * specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * @(#) $Header: /cvsroot/nsnam/nam-1/animation.h,v 1.27 2003/10/11 22:56:49 xuanc Exp $ (LBL) */ #ifndef nam_animation_h #define nam_animation_h #include #include "state.h" #include "paint.h" #include "bbox.h" class View; //class PSView; class EditView; class Monitor; struct MonState; #define UP 0 #define DOWN 1 #define BPACKET 1 // Assign an ID for all derived classes of Animation const int ClassAllID = 0; const int ClassAnimationID = 1; const int ClassPacketID = ClassAnimationID + 1; const int ClassNodeID = ClassPacketID + 1; const int ClassEdgeID = ClassNodeID + 1; const int ClassQueueItemID = ClassEdgeID + 1; const int ClassAgentID = ClassQueueItemID + 1; const int ClassLanID = ClassAgentID + 1; const int ClassTagID = ClassLanID + 1; const int ClassTrafficSourceID = ClassTagID + 1; const int ClassLossModelID = ClassTrafficSourceID + 1; const int ClassQueueHandleID = ClassLossModelID + 1; const int AnimationTagIncrement = 5; class Animation { public: virtual ~Animation(); virtual void draw(View*, double now) = 0; // This one is obsolete. Need not pass "now" if everything is // updated timely. virtual int inside(double now, float px, float py) const; virtual int inside(float px, float py) const { return bb_.inside(px, py); } // Move this object by a displacement in window coordinates virtual void move(EditView* editview, float x_displacement, float y_displacement) {} virtual float distance(float x, float y) const; void merge(BBox & b); virtual void update_bb() = 0; virtual void update(double now); virtual void reset(double now); virtual const char* info() const; virtual const char* property(); virtual const char* getProperties(const char * type); virtual const char* getname() const; virtual const char* getfid() const; virtual const char* getesrc() const; virtual const char* getedst() const; virtual const char* gettype() const; int id() const { return id_; } const BBox& bbox() { return bb_; } virtual void monitor(Monitor *m, double now, char *result, int len); virtual MonState *monitor_state(void); void remove_monitor() {monitor_=0;} void insert(Animation **); void detach(); void paint(int id) { paint_ = id; } void color(const char *color); void change_color(char *color); void toggle_color(); inline StateInfo stateInfo() { return (si_); } inline int paint() const { return (paint_); } inline Animation* next() const { return (next_); } inline Animation** prev() const { return (prev_); } static unsigned int LASTID_; static Tcl_HashTable* AniHash_; static unsigned int nAniHash_; static Animation* find(unsigned int id); virtual int classid() const { return ClassAnimationID; } inline int isTagged() const { return nTag_ > 0; } inline int numTag() const { return nTag_; } inline int type() const { return aType_; } inline Animation* getTag(int i) const { return tags_[i]; } Animation* getLastTag(); void deleteTag(Animation *); void addTag(Animation *); // label myself with a new tag // i.e., join a new group protected: Animation(); Animation(double, long); /* * id for X graphics context * (e.g., color and linewidth) */ int paint_; int oldPaint_; // saved for node down event Monitor *monitor_; BBox bb_; StateInfo si_; Animation* next_; Animation** prev_; unsigned int id_; // unique identifier for all animation objs Animation **tags_; // an dynamic array of tags int nTag_; int aType_; }; #endif nam-1.15/animator.cc0000664000076400007660000000105306546555022013225 0ustar tomhnsnam// $Header: /cvsroot/nsnam/nam-1/animator.cc,v 1.1 1998/07/02 00:53:38 haoboy Exp $ #include "animator.h" class NetworkAnimatorClass : TclClass { public: NetworkAnimatorClass() : TclClass("Animator") {} TclObject* create(int, const char*const*) { return (new NetworkAnimator()); } } networkanimator_class; // We put it here in C++ because we need to keep a pointer to it // in NetModel, etc. int NetworkAnimator::command(int argc, const char *const* argv) { // In case we want to put something here. return TclObject::command(argc, argv); } nam-1.15/animator.h0000664000076400007660000000036006546555023013070 0ustar tomhnsnam#ifndef nam_animator_h #define nam_animator_h #include class NetworkAnimator : public TclObject { public: NetworkAnimator() : TclObject() {} virtual int command(int argc, const char *const* argv); }; #endif // nam_animator_h nam-1.15/autoconf-win32.h0000664000076400007660000000531107051066504014026 0ustar tomhnsnam/* autoconf.h. Generated automatically by configure. */ /* -*- Mode:C++; c-basic-offset:8; tab-width:8; indent-tabs-mode:t -*- */ /* * Copyright (c) 1997 University of Southern California. * All rights reserved. * * Redistribution and use in source and binary forms are permitted * provided that the above copyright notice and this paragraph are * duplicated in all such forms and that any documentation, advertising * materials, and other materials related to such distribution and use * acknowledge that the software was developed by the University of * Southern California, Information Sciences Institute. The name of the * University may not be used to endorse or promote products derived from * this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. * */ /* This file should contain variables changed only by autoconf. */ /* XXX Change the following two variables to where your perl and tcl are located! */ #define NSPERL_PATH "C:\\Program\\Perl\\bin\\perl.exe" #define NSTCLSH_PATH "C:\\Program\\Tcl\\bin\\tclsh80.exe" /* If you need these from tcl, see the file tcl/lib/ns-autoconf.tcl.in */ /* * Put autoconf #define's here to keep them off the command line. * see autoconf.info(Header Templates) in the autoconf docs. */ /* what does random(3) return? */ #define RANDOM_RETURN_TYPE int /* type definitions */ typedef char int8_t; /* cygwin-b20\H-i586-cygwin32\i586-cygwin32\include\sys\types.h(83) */ typedef unsigned char u_int8_t; /* cygwin-b20\H-i586-cygwin32\i586-cygwin32\include\sys\types.h(84) */ typedef short int16_t; /* cygnus\cygwin-b20\H-i586-cygwin32\i586-cygwin32\include\sys\types.h(85) */ typedef unsigned short u_int16_t; /* from cygwin-b20\H-i586-cygwin32\i586-cygwin32\include\sys\types.h(86) */ typedef int int32_t; /* cygwin-b20\H-i586-cygwin32\i586-cygwin32\include\sys\types.h(87) */ typedef unsigned int u_int32_t; /* cygwin-b20\H-i586-cygwin32\i586-cygwin32\include\sys\types.h(88) */ typedef __int64 int64_t; /* C:\Program\Microsoft Visual Studio\VC98\CRT\SRC\STRTOQ.C(19) */ typedef unsigned __int64 u_int64_t; /* C:\Program\Microsoft Visual Studio\VC98\CRT\SRC\STRTOQ.C(20) */ #undef HAVE_INT64 #define SIZEOF_LONG 4 /* functions */ #undef HAVE_BCOPY #undef HAVE_BZERO #undef HAVE_GETRUSAGE #undef HAVE_SBRK #undef HAVE_SNPRINTF #undef HAVE_STRTOLL #undef HAVE_STRTOQ /* headers */ #define HAVE_STRING_H 1 #undef HAVE_STRINGS_H #undef HAVE_ARPA_INET_H #undef HAVE_NETINET_IN_H nam-1.15/autoconf.h.in0000664000076400007660000000314007000421213013453 0ustar tomhnsnam/* -*- Mode:C++; c-basic-offset:8; tab-width:8; indent-tabs-mode:t -*- */ /* * Copyright (c) 1997 University of Southern California. * All rights reserved. * * Redistribution and use in source and binary forms are permitted * provided that the above copyright notice and this paragraph are * duplicated in all such forms and that any documentation, advertising * materials, and other materials related to such distribution and use * acknowledge that the software was developed by the University of * Southern California, Information Sciences Institute. The name of the * University may not be used to endorse or promote products derived from * this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. * */ /* This file should contain variables changed only by autoconf. */ /* * Put autoconf #define's here to keep them off the command line. * see autoconf.info(Header Templates) in the autoconf docs. */ /* what does random(3) return? */ #define RANDOM_RETURN_TYPE int /* type definitions */ #undef int8_t #undef int16_t #undef int32_t #undef u_int8_t #undef u_int16_t #undef u_int32_t /* functions */ #undef HAVE_BCOPY #undef HAVE_BZERO #undef HAVE_GETRUSAGE #undef HAVE_SBRK #undef HAVE_SNPRINTF #undef HAVE_STRTOLL #undef HAVE_STRTOQ /* headers */ #undef HAVE_STRING_H #undef HAVE_STRINGS_H nam-1.15/bbox.h0000664000076400007660000000660507245375642012224 0ustar tomhnsnam/* * Copyright (c) 1991,1993 Regents of the University of California. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the Computer Systems * Engineering Group at Lawrence Berkeley Laboratory. * 4. Neither the name of the University nor of the Laboratory may be used * to endorse or promote products derived from this software without * specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * @(#) $Header: /cvsroot/nsnam/nam-1/bbox.h,v 1.3 2001/02/23 05:56:50 mehringe Exp $ (LBL) */ #ifndef nam_bbox_h #define nam_bbox_h #include #include struct BBox { float xmin, ymin; float xmax, ymax; float width() const { return xmax - xmin; } float height() const { return ymax - ymin; } inline void xrect(XRectangle &r) { r.x = (int)xmin, r.y = (int)ymin; r.width = (int)(xmax - xmin); r.height = (int)(ymax - ymin); } inline int overlap(const BBox& b) const { return !((b.xmin >= xmax) || (b.xmax <= xmin) || (b.ymin >= ymax) || (b.ymax <= ymin)); } inline int inside(const BBox &b) const { return (inside(b.xmin, b.ymin) && inside(b.xmax, b.ymax)); } inline int inside(float x, float y, float xhalo = 0, float yhalo = 0) const { return ((x >= xmin - xhalo) && (x <= xmax + xhalo) && (y >= ymin - yhalo) && (y <= ymax + yhalo)); } inline void clear() { xmin = ymin = FLT_MAX; xmax = ymax = -FLT_MAX; } inline void move(float dx, float dy) { xmin += dx, xmax += dx; ymin += dy, ymax += dy; } inline void merge(const BBox &b) { if (xmin > b.xmin) xmin = b.xmin; if (ymin > b.ymin) ymin = b.ymin; if (xmax < b.xmax) xmax = b.xmax; if (ymax < b.ymax) ymax = b.ymax; } inline void adjust() { float tmp; if (xmin > xmax) tmp = xmax, xmax = xmin, xmin = tmp; if (ymin > ymax) tmp = ymax, ymax = ymin, ymin = tmp; } inline void copy(BBox & destination) { destination.xmin = xmin; destination.ymin = ymin; destination.xmax = xmax; destination.ymax = ymax; } }; #endif nam-1.15/bin/gen-vcmake.pl0000664000076400007660000000507710564011174014226 0ustar tomhnsnam# Copyright (c) 1997 by the University of Southern California # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License, # version 2, as published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. # # # The copyright of this module includes the following # linking-with-specific-other-licenses addition: # # In addition, as a special exception, the copyright holders of # this module give you permission to combine (via static or # dynamic linking) this module with free software programs or # libraries that are released under the GNU LGPL and with code # included in the standard release of ns-2 under the Apache 2.0 # license or under otherwise-compatible licenses with advertising # requirements (or modified versions of such code, with unchanged # license). You may copy and distribute such a system following the # terms of the GNU GPL for this module and the licenses of the # other code concerned, provided that you include the source code of # that other code when and as the GNU GPL requires distribution of # source code. # # Note that people who make modified versions of this module # are not obligated to grant this special exception for their # modified versions; it is their choice whether to do so. The GNU # General Public License gives permission to release a modified # version without this exception; this exception also makes it # possible to release a modified version which carries forward this # exception. # # $Header: /cvsroot/nsnam/nam-1/bin/gen-vcmake.pl,v 1.6 2007/02/12 07:08:44 tom_henderson Exp $ # # This is not to be used as an executable. Rather, it's intended to be invoked # from Makfefile to generate a makefile.vc while (<>) { (/^\$\(GEN_DIR\)nam_tcl\.cc/ || /^\$\(GEN_DIR\)version.c/) && do { # print current line followed by a '-mkdir gen...' print $_; print "\t-mkdir \$(GEN_DIR:\\\\=)\n"; next; }; /^makefile\.vc:/ && do { # skip this line and the next two lines; <>; <>; next; }; s/xwd\.o/win32.o getopt.o/o; s/^# (\!include)/\!include/o; s/\$\(\.SUFFIXES\)//o; s/OBJ\) Makefile/OBJ\) makefile.vc/o; print $_; } exit 0; nam-1.15/bin/merge-layout.sh0000775000076400007660000000064407267643424014637 0ustar tomhnsnam#!/bin/sh # # Merging nam layout file with original nam trace and dump to stdout # # $Header: /cvsroot/nsnam/nam-1/bin/merge-layout.sh,v 1.2 2001/04/19 20:14:12 haoboy Exp $ if [ $# -ne 2 ] ; then echo "Usage: merge-layout.sh " echo " Merged trace file will be dumped to stdout." exit 1 fi egrep -E '^[nl][[:blank:]]-t[[:blank:]]\*' $2 egrep -v -E '^[nl][[:blank:]]-t[[:blank:]]\*' $1 exit 0 nam-1.15/bin/namfilter.tcl0000664000076400007660000006303006667340513014345 0ustar tomhnsnam# Nam filter: Processing ns nam tracefile to produce info for namgraph set analysis_OK 0 set analysis_ready 0 # color database set colorname(0) black set colorname(1) dodgerblue set colorname(2) cornflowerblue set colorname(3) blue set colorname(4) deepskyblue set colorname(5) steelblue set colorname(6) navy set colorname(7) darkolivegreen set fcolorname(0) red set fcolorname(1) brown set fcolorname(2) purple set fcolorname(3) orange set fcolorname(4) chocolate set fcolorname(5) salmon set fcolorname(6) greenyellow set fcolorname(7) gold set fcolorname(8) red set fcolorname(9) brown set fcolorname(10) purple set fcolorname(11) orange set fcolorname(12) chocolate set fcolorname(13) salmon set fcolorname(14) greenyellow set fcolorname(15) gold # get trace item proc get_trace_item { tag traceevent} { set next 0 foreach item $traceevent { if { $next == 1 } { return $item } if { $item == $tag } { set next 1 } } return "" } # process version info proc handle_version { line } { global analysis_OK nam_version analysis_ready set nam_version [get_trace_item "-v" $line] if { $nam_version >= "1.0a5" } { set analysis_OK 1 } set analysis_ready [get_trace_item "-a" $line] } # preanalysis # return # 0: no filter can be applied # 1: filters have been applied # 2: Applying filters proc nam_analysis { tracefile } { global analysis_OK nam_version analysis_ready set file [open $tracefile "r"] set line [gets $file] set time [get_trace_item "-t" $line] # skip all beginning non "*" events while {([eof $file]==0)&&([string compare $time "*"]!=0)} { set line [gets $file] set time [get_trace_item "-t" $line] } while {([eof $file]==0)&&([string compare $time "*"]==0) } { set cmd [lindex $line 0] switch "$cmd" { "V" { handle_version $line break } } set line [gets $file] set time [get_trace_item "-t" $line] } close $file # old nam, skip it if { $analysis_OK == 0 } { puts "You are using the tracefile format older than 1.0b5" puts "which will not allow you to run namgraph" return 0 } # check if analysis ready if { $analysis_ready == 1 } { puts "Filters have been applied to the tracefile before" return 1 } else { return 2 } } proc nam_prefilter { tracefile } { # it only supports tcp & srm so far global colorname colorindex session_id highest_seq colorset groupmember global proto_id set file [open $tracefile "r"] set file2 [open $tracefile.tmp "w"] set colorindex 0 # set color value while {[eof $file]==0} { set line [gets $file] set time [get_trace_item "-t" $line] set prot [get_trace_item "-p" $line] if { [string compare $time "*"]==0 } { puts $file2 $line continue } # get extended info after -x set extinfo [get_trace_item "-x" $line] if {$extinfo==""} { puts $file2 $line continue } # find the biggest tcp sequence number for the specific session #set tmp_seq [lindex $extinfo 2] #if { ($highest_seq < $tmp_seq) && ([string compare $prot "tcp"] == 0 \ # || [string compare $prot "ack"] == 0) } { # set highest_seq $tmp_seq #} set src [lindex $extinfo 0] set dst [lindex $extinfo 1] set subtype [lindex $extinfo 4] set subtype_s [split $subtype "_"] set srm_flag [lindex $subtype_s 0] # tcp packet if {(![info exists colorset($src.$dst)]) && (![info exists colorset($dst.$src)]) \ && ([string compare $prot "tcp"] == 0 || [string compare $prot "ack"] == 0) } { set colorset($src.$dst) $colorindex set colorset($dst.$src) $colorindex set protocol [get_trace_item "-p" $line] set session_id($colorindex) "TCP session \ between node $src and node $dst" set proto_id($colorindex) "TCP" incr colorindex } # SRM packet if { [string compare $srm_flag "SRM"] == 0 } { if { ![info exists colorset($dst)] } { set colorset($dst) $colorindex set groupmember($dst) "" set session_id($colorindex) SRM-$dst incr colorindex } set matchflag 0 foreach member $groupmember($dst) { if { [string compare $member $src] == 0 } { set matchflag 1 } } if { $matchflag == 0 } { lappend groupmember($dst) $src } } #set specific color set attrindex [lsearch $line -a] incr attrindex if { [string compare $srm_flag "SRM"] == 0 } { set line2 [lreplace $line $attrindex $attrindex $colorset($dst)] set line "$line2 -S $colorset($dst)" } else { if { [string compare $prot "tcp"] == 0 || \ [string compare $prot "ack"] == 0 } { set line2 [lreplace $line $attrindex $attrindex $colorset($src.$dst)] set line "$line2 -S $colorset($src.$dst)" } } puts $file2 $line } close $file close $file2 exec mv $tracefile.tmp $tracefile # set fcnt $colorindex } proc nam_filter { tracefile } { global filters filter_num colorindex colorname mcnt # set color value in the tracefile set tracefilebackup $tracefile.tmp set file [open $tracefile "r"] set file2 [open $tracefilebackup "w"] # define color value in the tracefile #for {set i 0} {$i < $colorindex} {incr i} { # puts $file2 "c -t * -i $i -n $colorname($i)" #} while {[eof $file]==0} { set line [gets $file] set cmd [lindex $line 0] if {$line==""} {continue} # Apply filters here for {set i 0} {$i < $filter_num} {incr i} { set filtercmd [list $filters($i) $line] set line [eval $filtercmd] # puts $file2 $result } puts $file2 $line } close $file close $file2 exec mv $tracefile.tmp $tracefile } # Filter srm packet proc srm_filter {event} { global colorset fname fcnt mcnt colorindex srmdata_s srmsess_s srmrqst_s \ srmrepr_s srmdata_r srmsess_r srmrqst_r srmrepr_r srmrqst_rf srmrepr_rf \ srmrepr_sf srmrqst_sf groupmember set extinfo [get_trace_item "-x" $event] set type [lindex $event 0] if {$extinfo!=""} { #get srm flags set flagitem [lindex $extinfo 4] #filter tcp packet set protocol [get_trace_item "-p" $event] set cmd [lindex $event 0] #1. SRM_DATA #2. SRM_SESS #3. SRM_RQST #4. SRM_REPR if {[string compare $flagitem "SRM_DATA"] == 0 } { set src [get_trace_item "-s" $event] set ssrc [lindex $extinfo 0] set ssrcs [split $ssrc "."] set ssrc0 [lindex $ssrcs 0] # sending SRM_DATA from the source if { [string compare $src $ssrc0 ] == 0 && \ [string compare $type "h" ] == 0} { if { ![info exists srmdata_s] } { set srmdata_s $mcnt set fname($mcnt) "SRM_DATA_SEND" incr mcnt } set fbit [get_trace_item "-f" $event] set sid [get_trace_item "-S" $event] if { $fbit == "" } { set event "$event -f $sid -m $srmdata_s" } } set ddst [lindex $extinfo 1] set dst [get_trace_item "-d" $event] set cnt 0 foreach value $groupmember($ddst) { set ddsts [split $value "."] set ddst0 [lindex $ddsts 0] if { [string compare $ddst0 $dst] == 0 } { set cnt 1 break } } if { $cnt == 1 && [string compare $type "r" ] == 0 } { if { ![info exists srmdata_r] } { set srmdata_r $mcnt set fname($mcnt) "SRM_DATA_RECV" incr mcnt } set fbit [get_trace_item "-f" $event] set sid [get_trace_item "-S" $event] if { $fbit == "" } { set event "$event -f $sid -m $srmdata_r" } } } # SRM_SESSION if {[string compare $flagitem "SRM_SESS"] == 0 } { set ddst [lindex $extinfo 1] set src [get_trace_item "-s" $event] set cnt 0 foreach value $groupmember($ddst) { set ddsts [split $value "."] set ddst0 [lindex $ddsts 0] if { [string compare $ddst0 $src] == 0 } { set cnt 1 break } } # sending SESSION from the source if { $cnt == 1 && [string compare $type "h" ] == 0 } { if { ![info exists srmsess_s] } { set srmsess_s $mcnt set fname($mcnt) "SRM_SESS_SEND" incr mcnt } set fbit [get_trace_item "-f" $event] set sid [get_trace_item "-S" $event] if { $fbit == "" } { set event "$event -f $sid -m $srmsess_s" } } set ddst [lindex $extinfo 1] set dst [get_trace_item "-d" $event] set cnt 0 foreach value $groupmember($ddst) { set ddsts [split $value "."] set ddst0 [lindex $ddsts 0] if { [string compare $ddst0 $dst] == 0 } { set cnt 1 break } } if { $cnt == 1 && [string compare $type "r" ] == 0 } { if { ![info exists srmsess_r] } { set srmsess_r $mcnt set fname($mcnt) "SRM_SESS_RECV" incr mcnt } set fbit [get_trace_item "-f" $event] set sid [get_trace_item "-S" $event] if { $fbit == "" } { set event "$event -f $sid -m $srmsess_r" } } } # RQST if {[string compare $flagitem "SRM_RQST"] == 0 } { set ddst [lindex $extinfo 1] set src [get_trace_item "-s" $event] set cnt 0 foreach value $groupmember($ddst) { set ddsts [split $value "."] set ddst0 [lindex $ddsts 0] if { [string compare $ddst0 $src] == 0 } { set cnt 1 break } } if { $cnt == 1 && [string compare $type "h" ] == 0 } { if { ![info exists srmrqst_s] } { set srmrqst_s $mcnt set srmrqst_sf $fcnt set fname($mcnt.$fcnt) "SRM_RQST_SEND" incr mcnt incr fcnt } set fbit [get_trace_item "-f" $event] set sid [get_trace_item "-S" $event] if { $fbit == "" } { set event "$event -f $srmrqst_sf -m $srmrqst_s" } } set ddst [lindex $extinfo 1] set dst [get_trace_item "-d" $event] set cnt 0 foreach value $groupmember($ddst) { set ddsts [split $value "."] set ddst0 [lindex $ddsts 0] if { [string compare $ddst0 $dst] == 0 } { set cnt 1 break } } if { $cnt == 1 && [string compare $type "r" ] == 0 } { if { ![info exists srmrqst_r] } { set srmrqst_rf $fcnt set srmrqst_r $mcnt set fname($mcnt.$fcnt) "SRM_RQST_RECV" incr mcnt incr fcnt } set fbit [get_trace_item "-f" $event] set sid [get_trace_item "-S" $event] if { $fbit == "" } { set event "$event -f $srmrqst_rf -m $srmrqst_r" } } } # REPR if {[string compare $flagitem "SRM_REPR"] == 0 } { set ddst [lindex $extinfo 1] set src [get_trace_item "-s" $event] set cnt 0 foreach value $groupmember($ddst) { set ddsts [split $value "."] set ddst0 [lindex $ddsts 0] if { [string compare $ddst0 $src] == 0 } { set cnt 1 break } } if { $cnt == 1 && [string compare $type "h" ] == 0 } { if { ![info exists srmrepr_s] } { set srmrepr_s $mcnt set srmrepr_sf $fcnt set fname($mcnt.$fcnt) "SRM_REPR_SEND" incr mcnt incr fcnt } set fbit [get_trace_item "-f" $event] set sid [get_trace_item "-S" $event] if { $fbit == "" } { set event "$event -f $srmrepr_sf -m $srmrepr_s" } } set ddst [lindex $extinfo 1] set dst [get_trace_item "-d" $event] set cnt 0 foreach value $groupmember($ddst) { set ddsts [split $value "."] set ddst0 [lindex $ddsts 0] if { [string compare $ddst0 $dst] == 0 } { set cnt 1 break } } if { $cnt == 1 && [string compare $type "r" ] == 0 } { if { ![info exists srmrepr_r] } { set srmrepr_rf $fcnt set srmrepr_r $mcnt set fname($mcnt.$fcnt) "SRM_REPR_RECV" incr mcnt incr fcnt } set fbit [get_trace_item "-f" $event] set sid [get_trace_item "-S" $event] if { $fbit == "" } { set event "$event -f $srmrepr_rf -m $srmrepr_r" } } } } return $event } # Filter tcp packet proc tcp_filter { event } { global colorset fname fcnt mcnt highest_seq tcpmark set extinfo [get_trace_item "-x" $event] if {$extinfo!=""} { #get tcp flags set flagitem [lindex $extinfo 3] set tcpflags [split $flagitem "-"] #filter tcp packet set protocol [get_trace_item "-p" $event] set cmd [lindex $event 0] set src [lindex $extinfo 0] set dst [lindex $extinfo 1] set lsrc [get_trace_item "-s" $event] set ldst [get_trace_item "-d" $event] set rsrc [lindex [split $src .] 0] set rdst [lindex [split $dst .] 0] set sid [get_trace_item "-S" $event] if {([string compare $protocol "tcp"] == 0) && \ ([string compare $cmd "+"] == 0) \ && ([string compare $lsrc $rsrc] == 0) } { if {![info exists tcpmark]} { set tcpmark $mcnt set fname($mcnt) "tcp" incr mcnt } set event "$event -f $sid -m $tcpmark" set sid [get_trace_item "-S" $event] set seqno [lindex $extinfo 2] if {![info exists highest_seq($sid)]} { set highest_seq($sid) $seqno } if { $seqno > $highest_seq($sid) } { set highest_seq($sid) $seqno } } } return $event } #Filter ack packet proc ack_filter { event } { global colorset fname fcnt mcnt ackmark set extinfo [get_trace_item "-x" $event] if {$extinfo!=""} { #get tcp flags set flagitem [lindex $extinfo 3] set tcpflags [split $flagitem "-"] set is_ecn [lsearch $tcpflags "E"] set is_echo [lsearch $tcpflags "C"] #filter ack packet set protocol [get_trace_item "-p" $event] set cmd [lindex $event 0] set src [lindex $extinfo 0] set dst [lindex $extinfo 1] set lsrc [get_trace_item "-s" $event] set ldst [get_trace_item "-d" $event] set rsrc [lindex [split $src .] 0] set rdst [lindex [split $dst .] 0] set sid [get_trace_item "-S" $event] if {([string compare $protocol "ack"] == 0) && \ ([string compare $cmd "-"] == 0) && \ ([string compare $ldst $rdst] == 0)} { if {![info exists ackmark]} { set ackmark $mcnt set fname($mcnt) "ack" incr mcnt } set event "$event -f $sid -m $ackmark" } } return $event } #ecn filter proc ecn_filter { event } { global colorset fname fcnt tcpecn tcpcong ackecho ackecn colorindex mcnt \ tcpecn_m tcpcong_m ackecho_m ackecn_m mcnt set extinfo [get_trace_item "-x" $event] if {$extinfo!=""} { #get tcp flags set flagitem [lindex $extinfo 3] set tcpflags [split $flagitem "-"] set is_ecn [lsearch $tcpflags "E"] set is_cong [lsearch $tcpflags "A"] set is_echo [lsearch $tcpflags "C"] #filter tcp packet set protocol [get_trace_item "-p" $event] set cmd [lindex $event 0] #1. tcp ecn #2. tcp cong #3. ack echo #4. ack ecn if {([string compare $protocol "tcp"] == 0) && \ ($is_ecn != -1)} { if { ![info exists tcpecn] } { set tcpecn $fcnt set tcpecn_m $mcnt set fname($mcnt.$fcnt) "tcp_ecn" incr fcnt incr mcnt } set fbit [get_trace_item "-f" $event] if { $fbit == "" } { set event "$event -f $tcpecn -m $tcpecn_m" } else { set findex [lsearch $event -f] incr findex set line2 [lreplace $event $findex $findex $tcpecn] set event $line2 set mindex [lsearch $event -m] incr mindex set line2 [lreplace $event $mindex $mindex $tcpecn_m] set event $line2 } } if {([string compare $protocol "tcp"] == 0) && \ ($is_cong != -1)} { if { ![info exists tcpcong] } { set tcpcong $fcnt set tcpcong_m $mcnt set fname($mcnt.$fcnt) "tcp_cong" incr fcnt incr mcnt } set fbit [get_trace_item "-f" $event] if { $fbit == "" } { set event "$event -f $tcpcong" } else { set findex [lsearch $event -f] incr findex set line2 [lreplace $event $findex $findex $tcpcong] set event $line2 set mindex [lsearch $event -m] incr mindex set line2 [lreplace $event $mindex $mindex $tcpcong_m] set event $line2 } } if {([string compare $protocol "ack"] == 0) && \ ($is_echo != -1)} { if { ![info exists ackecho] } { set ackecho $fcnt set ackecho_m $mcnt set fname($mcnt.$fcnt) "ack_echo" incr fcnt incr mcnt } set fbit [get_trace_item "-f" $event] if { $fbit == "" } { set event "$event -f $ackecho" } else { set findex [lsearch $event -f] incr findex set line2 [lreplace $event $findex $findex $ackecho] set event $line2 set mindex [lsearch $event -m] incr mindex set line2 [lreplace $event $mindex $mindex $ackecho_m] set event $line2 } } if {([string compare $protocol "ack"] == 0) && \ ($is_ecn != -1)} { if { ![info exists ackecn] } { set ackecn $fcnt set ackecn_m $mcnt set fname($mcnt.$fcnt) "ack_ecn" incr fcnt incr mcnt } set fbit [get_trace_item "-f" $event] if { $fbit == "" } { set event "$event -f $tcpecn" } else { set findex [lsearch $event -f] incr findex set line2 [lreplace $event $findex $findex $ackecn] set event $line2 set mindex [lsearch $event -m] incr mindex set line2 [lreplace $event $mindex $mindex $ackecn_m] set event $line2 } } } return $event } proc nam_afterfilter { tracefile } { global colorindex colorname nam_version session_id highest_seq fcolorname \ fcnt fname groupmember mcnt proto_id set tracefilebackup $tracefile.tmp set file [open $tracefile "r"] set file2 [open $tracefilebackup "w"] #set SRM session info for {set i 0} {$i < $colorindex} {incr i} { set items [split $session_id($i) "-"] set item1 [lindex $items 0] # set item1 [lindex $session_id($i) 0 ] if { [string compare $item1 "SRM" ] == 0 } { set item2 [lindex $items 1] set session_id($i) "SRM session with \ members: $groupmember($item2)" set proto_id($i) "SRM" set memberlist($i) $groupmember($item2) set cnt 1 foreach value $groupmember($item2) { set groupindex($i.$value) $cnt lappend groupm($i) $value incr cnt } set highest_seq($i) $cnt } } #Write nam version info first #set realf [expr $fcnt-$colorindex] puts $file2 "V -t * -v $nam_version -a 1 -c $colorindex -F $fcnt -M $mcnt" # Write color info for {set i 0} {$i < $colorindex} {incr i} { puts $file2 "c -t * -i $i -n $colorname($i)" } # write color info for filters for {set i $colorindex } {$i < $fcnt} {incr i} { set fid [expr $i-$colorindex] puts $file2 "c -t * -i $i -n $fcolorname($fid)" } # Write session info for {set i 0} {$i < $colorindex} {incr i} { # puts $file2 "N -t * -S $i -n \{$session_id($i)\}" if ![ info exists memberlist($i) ] { set memberlist($i) "" } puts $file2 "N -t * -S $i -n \{$session_id($i)\} -p $proto_id($i) \ -m \{$memberlist($i)\}" } # Write y mark if necessary for {set i 0} {$i < $colorindex} {incr i} { if { [info exists groupm($i)] } { for {set j 0} { $j < [llength $groupm($i)]} {incr j} { puts $file2 "N -t * -S $i -m [lindex $groupm($i) $j]" } } } # Write highest y value for each session for {set i 0} {$i < $colorindex} {incr i} { puts $file2 "N -t * -S $i -h $highest_seq($i)" } # Write Filter info foreach index [array names fname] { set fids [split $index "."] set fid [lindex $fids 1] set mid [lindex $fids 0] if { $fid == ""} { puts $file2 "N -t * -F 0 -M $mid -n $fname($index)" } else { puts $file2 "N -t * -F $fid -M $mid -n $fname($index)" } } while {[eof $file]==0} { set line [gets $file] set cmd [lindex $line 0] #ignore the original color value & version info if { [string compare $cmd "c"]==0 } {continue} if { [string compare $cmd "V"]==0 } {continue} if {$line==""} {continue} set timev [get_trace_item "-t" $line] if {[string compare $timev "*"]==0 } { puts $file2 $line continue } # color match set fv [get_trace_item "-f" $line] if { $fv > 1 } { set attrindex [lsearch $line -a] incr attrindex set line2 [lreplace $line $attrindex $attrindex $fv] set line $line2 } # group setting set extinfo [get_trace_item "-x" $line] set srmflag [lindex $extinfo 4] set srmvalues [split $srmflag "_"] set srmvalue [lindex $srmvalues 0] if { [string compare $srmvalue "SRM"] == 0 } { set sid [get_trace_item "-S" $line] set src [lindex $extinfo 0] set newseq $groupindex($sid.$src) set newindex [lreplace $extinfo 2 2 $newseq] set extindex [lsearch $line -x] incr extindex set line2 [lreplace $line $extindex $extindex $newindex] set line $line2 } # define y val in nam graph set sess_id [get_trace_item "-S" $line] if [info exists proto_id($sess_id)] { set extinfo [get_trace_item "-x" $line] set yval [lindex $extinfo 2] switch -exact -- $proto_id($sess_id) { TCP { set ymark $yval } SRM { set ymark [lindex $extinfo 0] } default { puts "Unknown protocol event found!" set ymark $yval } } set line "$line -y {$yval $ymark}" } #filter out -x set extinfo [get_trace_item "-x" $line] if { $extinfo != "" } { set xindex [lsearch $line -x] incr xindex set line2 [lreplace $line $xindex $xindex] set line $line2 set xindex [expr $xindex-1] set line2 [lreplace $line $xindex $xindex] set line $line2 } puts $file2 $line } close $file close $file2 exec mv $tracefile.tmp $tracefile } #--------------------------------------------- #main starts here if { $argc < 1 } { puts "Usage: namfilter tracefile-name" exit } set tracefile [lindex $argv 0] # save filter name # CUSTOMIZED PLACE START set filters(0) tcp_filter set filters(1) ack_filter set filters(2) ecn_filter set filters(3) srm_filter set filter_num 4 # END OF CUSTOMIZED set fcnt 0 set mcnt 0 global fname if [catch { open $tracefile r } file] { puts stderr "Cannot open $tracefile: $fileId" exit } close $file set filtering_flag [nam_analysis $tracefile] if { $filtering_flag != 2 } {exit} # Decide how many flows (TCP only so far) nam_prefilter $tracefile set fcnt [expr $fcnt+$colorindex] # Applying filters nam_filter $tracefile #Add control info to the head of the tracefile nam_afterfilter $tracefile puts "Filters have been applied to the tracefile: $tracefile" exit #---- end of the filter --- # nam-1.15/bin/string2c.tcl0000775000076400007660000000026706546555031014124 0ustar tomhnsnam# Define a C string variable of the name $name # and set its value to what can be read from stdin set name [lindex $argv 0] gets stdin version puts "char $name\[\] = \"$version\";" nam-1.15/bin/tcl-expand.tcl0000664000076400007660000000465606546555032014434 0ustar tomhnsnam# # Copyright (c) 1996 Regents of the University of California. # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: # 1. Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # 2. Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # 3. All advertising materials mentioning features or use of this software # must display the following acknowledgement: # This product includes software developed by the MASH Research # Group at the University of California Berkeley. # 4. Neither the name of the University nor of the Research Group may be # used to endorse or promote products derived from this software without # specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE # ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. # # @(#) $Header: /cvsroot/nsnam/nam-1/bin/tcl-expand.tcl,v 1.1 1998/07/02 00:53:46 haoboy Exp $ # # # copy files on command line to stdout and substitute files # of source commands. only works for simple, literal commands. # proc expand_file name { set f [open $name r] while 1 { if { [gets $f line] < 0 } { close $f return } set L [split $line] if { [llength $L] == 2 && [lindex $L 0] == "source" } { expand_file [lindex $L 1] } else { puts $line } } } set startupDir [pwd] foreach name $argv { set dirname [file dirname $name] if {$dirname != "."} { cd $dirname expand_file [file tail $name] cd $startupDir } else { expand_file $name } } exit 0 nam-1.15/bitmap/addagentlink.xbm0000664000076400007660000000061607043451747015523 0ustar tomhnsnam#define addagentlink_width 21 #define addagentlink_height 16 static char addagentlink_bits[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x1e, 0xf9, 0xff, 0x13, 0xf9, 0xff, 0x13, 0x0f, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; nam-1.15/bitmap/addlink.xbm0000664000076400007660000000057707043451747014512 0ustar tomhnsnam#define addlink_width 21 #define addlink_height 16 static char addlink_bits[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x1c, 0xff, 0xff, 0x1f, 0xff, 0xff, 0x1f, 0x07, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; nam-1.15/bitmap/addnode.xbm0000664000076400007660000000057707043451747014502 0ustar tomhnsnam#define addnode_width 21 #define addnode_height 16 static char addnode_bits[] = { 0x00, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x80, 0x31, 0x00, 0x60, 0xc0, 0x00, 0x20, 0x84, 0x00, 0x10, 0x00, 0x01, 0x10, 0x04, 0x01, 0x08, 0x04, 0x02, 0x08, 0x04, 0x02, 0x08, 0x04, 0x02, 0x10, 0x04, 0x01, 0x10, 0x04, 0x01, 0x20, 0x84, 0x00, 0x60, 0xc0, 0x00, 0x80, 0x31, 0x00, 0x00, 0x0e, 0x00}; nam-1.15/bitmap/back.xbm0000664000076400007660000000050006351340337013757 0ustar tomhnsnam#define back_width 20 #define back_height 13 static char back_bits[] = { 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00, 0xf0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xff, 0x00, 0x00, 0xfc, 0x00, 0x00, 0xf0, 0x00, 0x00, 0xc0, 0x00, 0x00, 0x00, 0x00}; nam-1.15/bitmap/cut.xbm0000664000076400007660000000056307043451747013672 0ustar tomhnsnam#define cut_width 21 #define cut_height 16 static char cut_bits[] = { 0x08, 0x00, 0x01, 0x08, 0x00, 0x01, 0x08, 0x00, 0x01, 0x10, 0xc0, 0x00, 0x10, 0xc0, 0x00, 0x60, 0x20, 0x00, 0x60, 0x20, 0x00, 0x80, 0x10, 0x00, 0x80, 0x10, 0x00, 0x00, 0x09, 0x00, 0x00, 0x09, 0x00, 0x00, 0x06, 0x00, 0xe0, 0x79, 0x00, 0x10, 0xc9, 0x00, 0x90, 0xd0, 0x00, 0x60, 0x60, 0x00}; nam-1.15/bitmap/delete.xbm0000664000076400007660000000065407240567243014340 0ustar tomhnsnam#define delete_width 21 #define delete_height 16 #define delete_x_hot 10 #define delete_y_hot 8 static char delete_bits[] = { 0x00, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x80, 0x31, 0x00, 0x60, 0xc0, 0x00, 0x20, 0xe0, 0x00, 0x10, 0x70, 0x01, 0x10, 0x38, 0x01, 0x08, 0x1c, 0x02, 0x08, 0x0e, 0x02, 0x08, 0x07, 0x02, 0x90, 0x03, 0x01, 0xd0, 0x01, 0x01, 0xe0, 0x80, 0x00, 0x60, 0xc0, 0x00, 0x80, 0x31, 0x00, 0x00, 0x0e, 0x00 }; nam-1.15/bitmap/edit.xbm0000664000076400007660000000067107025602314014010 0ustar tomhnsnam#define edit_width 17 #define edit_height 17 #define edit_x_hot 0 #define edit_y_hot 0 static char edit_bits[] = { 0x07, 0xc0, 0xff, 0xff, 0xff, 0xff, 0x07, 0xe0, 0xff, 0x02, 0x10, 0xfe, 0x02, 0x18, 0xfe, 0x02, 0x0c, 0xfe, 0x02, 0x04, 0xfe, 0x82, 0x03, 0xfe, 0x82, 0x03, 0xfe, 0x82, 0x03, 0xfe, 0x02, 0x04, 0xfe, 0x02, 0x08, 0xfe, 0x02, 0x10, 0xfe, 0x02, 0x20, 0xfe, 0x07, 0xc0, 0xff, 0xff, 0xff, 0xff, 0x07, 0xc0, 0xff}; nam-1.15/bitmap/eject.xbm0000664000076400007660000000050306351340337014154 0ustar tomhnsnam#define eject_width 20 #define eject_height 13 static char eject_bits[] = { 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x0f, 0x00, 0x80, 0x1f, 0x00, 0xc0, 0x3f, 0x00, 0xe0, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x0f, 0x00, 0x80, 0x1f, 0x00, 0xc0, 0x3f, 0x00, 0xe0, 0x7f, 0x00, 0x00, 0x00, 0x00}; nam-1.15/bitmap/ff.xbm0000664000076400007660000000047206351340337013462 0ustar tomhnsnam#define ff_width 20 #define ff_height 13 static char ff_bits[] = { 0x00, 0x00, 0x00, 0x08, 0x08, 0x00, 0x18, 0x18, 0x00, 0x38, 0x38, 0x00, 0x78, 0x78, 0x00, 0xf8, 0xf8, 0x00, 0xf8, 0xf9, 0x01, 0xf8, 0xf8, 0x00, 0x78, 0x78, 0x00, 0x38, 0x38, 0x00, 0x18, 0x18, 0x00, 0x08, 0x08, 0x00, 0x00, 0x00, 0x00}; nam-1.15/bitmap/mark1.xbm0000664000076400007660000000025206541322307014074 0ustar tomhnsnam#define mark1_width 8 #define mark1_height 8 #define mark1_x_hot 3 #define mark1_y_hot 3 static char mark1_bits[] = { 0x00, 0x00, 0x1c, 0x1c, 0x1c, 0x00, 0x00, 0x00}; nam-1.15/bitmap/mark2.xbm0000664000076400007660000000025206541322307014075 0ustar tomhnsnam#define mark2_width 8 #define mark2_height 8 #define mark2_x_hot 3 #define mark2_y_hot 3 static char mark2_bits[] = { 0x00, 0x3e, 0x22, 0x22, 0x22, 0x3e, 0x00, 0x00}; nam-1.15/bitmap/mark3.xbm0000664000076400007660000000025206541322310014070 0ustar tomhnsnam#define mark3_width 8 #define mark3_height 8 #define mark3_x_hot 3 #define mark3_y_hot 3 static char mark3_bits[] = { 0x00, 0x1c, 0x36, 0x22, 0x36, 0x1c, 0x00, 0x00}; nam-1.15/bitmap/mark4.xbm0000664000076400007660000000025206541322310014071 0ustar tomhnsnam#define mark4_width 8 #define mark4_height 8 #define mark4_x_hot 3 #define mark4_y_hot 3 static char mark4_bits[] = { 0x00, 0x22, 0x14, 0x08, 0x14, 0x22, 0x00, 0x00}; nam-1.15/bitmap/mark5.xbm0000664000076400007660000000025206541322310014072 0ustar tomhnsnam#define mark5_width 8 #define mark5_height 8 #define mark5_x_hot 3 #define mark5_y_hot 3 static char mark5_bits[] = { 0x00, 0x08, 0x14, 0x22, 0x14, 0x08, 0x00, 0x00}; nam-1.15/bitmap/mark6.xbm0000664000076400007660000000025206541322311014074 0ustar tomhnsnam#define mark6_width 8 #define mark6_height 8 #define mark6_x_hot 3 #define mark6_y_hot 3 static char mark6_bits[] = { 0x00, 0x1c, 0x14, 0x1c, 0x14, 0x1c, 0x00, 0x00}; nam-1.15/bitmap/mark7.xbm0000664000076400007660000000025206541322311014075 0ustar tomhnsnam#define mark7_width 8 #define mark7_height 8 #define mark7_x_hot 3 #define mark7_y_hot 3 static char mark7_bits[] = { 0x00, 0x1c, 0x2a, 0x36, 0x2a, 0x1c, 0x00, 0x00}; nam-1.15/bitmap/mark8.xbm0000664000076400007660000000025206541322312014077 0ustar tomhnsnam#define mark8_width 8 #define mark8_height 8 #define mark8_x_hot 3 #define mark8_y_hot 3 static char mark8_bits[] = { 0x00, 0x3e, 0x1c, 0x08, 0x1c, 0x3e, 0x00, 0x00}; nam-1.15/bitmap/monitors.xbm0000664000076400007660000000153206351340337014737 0ustar tomhnsnam#define monitors_width 16 #define monitors_height 75 static char monitors_bits[] = { 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x06, 0x60,0x0f,0x60,0x0f,0xe0,0x0d,0xe0,0x0d,0xc0,0x04,0x60,0x00,0x60,0x00,0xe0, 0x0f,0xe0,0x0f,0x00,0x00,0xc0,0x07,0xe0,0x0f,0x60,0x0c,0x60,0x0c,0x60,0x0c, 0xe0,0x0f,0xc0,0x07,0x20,0x08,0xf8,0x0f,0xf8,0x0f,0x20,0x00,0xe8,0x0f,0xe8, 0x0f,0x00,0x00,0xc0,0x0f,0xe0,0x0f,0x60,0x00,0x60,0x00,0xe0,0x0f,0xe0,0x0f, 0x00,0x00,0xc0,0x07,0xe0,0x0f,0x60,0x0c,0x60,0x0c,0x60,0x0c,0xe0,0x0f,0xc0, 0x07,0xf8,0x0f,0xf8,0x0f,0xf8,0x00,0xe0,0x0f,0x00,0x0f,0xe0,0x0f,0xf8,0x00, 0xf8,0x0f,0xf8,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 }; nam-1.15/bitmap/netedit.xbm0000664000076400007660000000114007053305141014506 0ustar tomhnsnam#define netedit_width 17 #define netedit_height 25 #define netedit_x_hot 0 #define netedit_y_hot 0 static char netedit_bits[] = { 0x00, 0x00, 0xfe, 0x00, 0x00, 0xfe, 0x00, 0x00, 0xfe, 0x00, 0x00, 0xfe, 0x78, 0x3c, 0xfe, 0x08, 0x44, 0xfe, 0x38, 0x44, 0xfe, 0x08, 0x44, 0xfe, 0x08, 0x44, 0xfe, 0x78, 0x3c, 0xfe, 0x00, 0x00, 0xfe, 0x00, 0x00, 0xfe, 0x00, 0x00, 0xfe, 0x00, 0x00, 0xfe, 0x00, 0x00, 0xfe, 0x10, 0x1c, 0xfe, 0x10, 0x08, 0xfe, 0x10, 0x08, 0xfe, 0x10, 0x08, 0xfe, 0x10, 0x08, 0xfe, 0x10, 0x08, 0xfe, 0x00, 0x00, 0xfe, 0x00, 0x00, 0xfe, 0x00, 0x00, 0xfe, 0x00, 0x00, 0xfe}; nam-1.15/bitmap/netview.xbm0000664000076400007660000000114007053305142014534 0ustar tomhnsnam#define netview_width 19 #define netview_height 25 #define netview_x_hot 0 #define netview_y_hot 0 static char netview_bits[] = { 0x00, 0x00, 0xf8, 0x00, 0x00, 0xf8, 0x00, 0x00, 0xf8, 0x00, 0x00, 0xf8, 0x48, 0x10, 0xf8, 0x48, 0x10, 0xf8, 0x48, 0x10, 0xf8, 0x48, 0x10, 0xf8, 0x28, 0x10, 0xf8, 0x10, 0x10, 0xf8, 0x00, 0x00, 0xf8, 0x00, 0x00, 0xf8, 0x00, 0x00, 0xf8, 0x00, 0x00, 0xf8, 0x00, 0x00, 0xf8, 0x78, 0x24, 0xf9, 0x08, 0x24, 0xf9, 0x38, 0x24, 0xf9, 0x08, 0xd8, 0xf8, 0x08, 0x48, 0xf8, 0x78, 0x48, 0xf8, 0x00, 0x00, 0xf8, 0x00, 0x00, 0xf8, 0x00, 0x00, 0xf8, 0x00, 0x00, 0xf8}; nam-1.15/bitmap/nodedown.xbm0000664000076400007660000000052307030250560014672 0ustar tomhnsnam#define nodedown_width 16 #define nodedown_height 16 #define nodedown_x_hot 0 #define nodedown_y_hot 0 static char nodedown_bits[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x01, 0x20, 0x02, 0x10, 0x04, 0x10, 0x04, 0x10, 0x04, 0x20, 0x02, 0xc0, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; nam-1.15/bitmap/nodeup.xbm0000664000076400007660000000051107030250560014344 0ustar tomhnsnam#define nodeup_width 16 #define nodeup_height 16 #define nodeup_x_hot 0 #define nodeup_y_hot 0 static char nodeup_bits[] = { 0x00, 0x00, 0xe0, 0x01, 0x18, 0x06, 0x04, 0x08, 0x04, 0x08, 0x02, 0x10, 0x02, 0x10, 0x02, 0x10, 0x02, 0x10, 0x04, 0x08, 0x04, 0x08, 0x18, 0x06, 0xe0, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; nam-1.15/bitmap/play.xbm0000664000076400007660000000050006351340337014024 0ustar tomhnsnam#define play_width 20 #define play_height 13 static char play_bits[] = { 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0xf0, 0x00, 0x00, 0xf0, 0x03, 0x00, 0xf0, 0x0f, 0x00, 0xf0, 0x3f, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0x3f, 0x00, 0xf0, 0x0f, 0x00, 0xf0, 0x03, 0x00, 0xf0, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00}; nam-1.15/bitmap/pullright.xbm0000664000076400007660000000067006420767512015106 0ustar tomhnsnam#define pullright_width 14 #define pullright_height 28 static char pullright_bits[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x0c, 0x00, 0x1c, 0x00, 0x3c, 0x00, 0x7c, 0x00, 0xec, 0x00, 0xcc, 0x01, 0x8c, 0x03, 0x0c, 0x07, 0x0c, 0x0e, 0x0c, 0x1c, 0x0c, 0x0e, 0x0c, 0x07, 0x8c, 0x03, 0xcc, 0x01, 0xec, 0x00, 0x7c, 0x00, 0x3c, 0x00, 0x1c, 0x00, 0x0c, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; nam-1.15/bitmap/rew.xbm0000664000076400007660000000047506351340337013667 0ustar tomhnsnam#define rew_width 20 #define rew_height 13 static char rew_bits[] = { 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x80, 0x81, 0x01, 0xc0, 0xc1, 0x01, 0xe0, 0xe1, 0x01, 0xf0, 0xf1, 0x01, 0xf8, 0xf9, 0x01, 0xf0, 0xf1, 0x01, 0xe0, 0xe1, 0x01, 0xc0, 0xc1, 0x01, 0x80, 0x81, 0x01, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00}; nam-1.15/bitmap/rewind.xbm0000664000076400007660000000034606351340337014357 0ustar tomhnsnam#define rewind_width 15 #define rewind_height 12 static char rewind_bits[] = { 0x00, 0x00, 0x40, 0x10, 0x60, 0x18, 0x70, 0x1c, 0x78, 0x1e, 0x7c, 0x1f, 0x7c, 0x1f, 0x78, 0x1e, 0x70, 0x1c, 0x60, 0x18, 0x40, 0x10, 0x00, 0x00}; nam-1.15/bitmap/select.xbm0000664000076400007660000000057407043451750014352 0ustar tomhnsnam#define select_width 21 #define select_height 16 static char select_bits[] = { 0x03, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x7e, 0x00, 0x00, 0xfc, 0x01, 0x00, 0xfc, 0x0f, 0x00, 0xf8, 0x3f, 0x00, 0xf8, 0x1f, 0x00, 0xf0, 0x0f, 0x00, 0xe0, 0x0f, 0x00, 0xe0, 0x13, 0x00, 0xc0, 0x20, 0x00, 0x40, 0xc0, 0x00, 0x00, 0x80, 0x01, 0x00, 0x00, 0x07, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x1c}; nam-1.15/bitmap/stop.xbm0000664000076400007660000000050006351340337014044 0ustar tomhnsnam#define stop_width 20 #define stop_height 13 static char stop_bits[] = { 0x00, 0x00, 0x00, 0xe0, 0x7f, 0x00, 0xe0, 0x7f, 0x00, 0xe0, 0x7f, 0x00, 0xe0, 0x7f, 0x00, 0xe0, 0x7f, 0x00, 0xe0, 0x7f, 0x00, 0xe0, 0x7f, 0x00, 0xe0, 0x7f, 0x00, 0xe0, 0x7f, 0x00, 0xe0, 0x7f, 0x00, 0xe0, 0x7f, 0x00, 0x00, 0x00, 0x00}; nam-1.15/bitmap/time.xbm0000664000076400007660000000050606414220726014022 0ustar tomhnsnam#define time_width 30 #define time_height 10 static char time_bits[] = { 0xff, 0x5f, 0xff, 0x3f, 0x01, 0x40, 0x00, 0x20, 0x7d, 0x47, 0x44, 0x2f, 0x11, 0xe2, 0x6c, 0x21, 0x11, 0xe2, 0x54, 0x23, 0x11, 0xe2, 0x44, 0x21, 0x11, 0xe2, 0x44, 0x21, 0x11, 0xf7, 0x45, 0x2f, 0x01, 0xf0, 0x01, 0x20, 0xff, 0xf7, 0xfd, 0x3f}; nam-1.15/bitmap/updir.xbm0000664000076400007660000000074106634320267014215 0ustar tomhnsnam#define updir_width 28 #define updir_height 16 static char updir_bits[] = { 0x00, 0x00, 0x00, 0x00, 0x80, 0x1f, 0x00, 0x00, 0x40, 0x20, 0x00, 0x00, 0x20, 0x40, 0x00, 0x00, 0xf0, 0xff, 0xff, 0x01, 0x10, 0x00, 0x00, 0x01, 0x10, 0x02, 0x00, 0x01, 0x10, 0x07, 0x00, 0x01, 0x90, 0x0f, 0x00, 0x01, 0x10, 0x02, 0x00, 0x01, 0x10, 0x02, 0x00, 0x01, 0x10, 0x02, 0x00, 0x01, 0x10, 0xfe, 0x07, 0x01, 0x10, 0x00, 0x00, 0x01, 0x10, 0x00, 0x00, 0x01, 0xf0, 0xff, 0xff, 0x01}; nam-1.15/bitmap/zoomin.xbm0000664000076400007660000000057406414302764014407 0ustar tomhnsnam#define zoomin_width 21 #define zoomin_height 16 static char zoomin_bits[] = { 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x1b, 0x00, 0xc0, 0x60, 0x00, 0x30, 0x80, 0x01, 0x0c, 0x00, 0x06, 0xff, 0xe0, 0x1f, 0x41, 0x40, 0x10, 0x21, 0x80, 0x10, 0x3f, 0x80, 0x1f, 0xf0, 0xff, 0x01, 0x10, 0x00, 0x01, 0x10, 0x00, 0x01, 0x10, 0x00, 0x01, 0xf0, 0xff, 0x01, 0x00, 0x00, 0x00}; nam-1.15/bitmap/zoomout.xbm0000664000076400007660000000057706414303050014600 0ustar tomhnsnam#define zoomout_width 21 #define zoomout_height 16 static char zoomout_bits[] = { 0x00, 0x00, 0x00, 0xf0, 0xff, 0x01, 0x30, 0x80, 0x01, 0x50, 0x40, 0x01, 0xa0, 0xa0, 0x00, 0xff, 0xe0, 0x1f, 0x07, 0x00, 0x1c, 0x19, 0x00, 0x13, 0x61, 0xc0, 0x10, 0x81, 0x31, 0x10, 0x06, 0x0e, 0x0c, 0x18, 0x04, 0x03, 0x20, 0x84, 0x00, 0xc0, 0x64, 0x00, 0x00, 0x15, 0x00, 0x00, 0x0e, 0x00}; nam-1.15/canvas.tcl0000664000076400007660000000241006351340336013053 0ustar tomhnsnamputs "sourcing canvas.tcl" set oblist "" proc fillrectangle {x y x2 y2 col t} { global canv oblist set id [$canv create restangle $x $y $x2 $y2 -fill $col] if {$t==1} { lappend oblist $id } } proc drawoval {x y x2 y2 col t} { global canv oblist set id [$canv create restangle $x $y $x2 $y2] if {$t==1} { lappend oblist $id } } proc drawpolygon args { global canv oblist set col [lindex $args 0] set t [lindex $args 1] set id [eval "$canv create polygon [lrange $args 2 end] -outline $col -fill \"\""] if {$t==1} { lappend oblist $id } } proc fillpolygon args { global canv oblist set col [lindex $args 0] set t [lindex $args 1] set id [eval "$canv create polygon [lrange $args 2 end] -outline $col"] if {$t==1} { lappend oblist $id } } proc drawstring {font str x y t} { global canv oblist set id [$canv create text $x $y -text $str] if {$t==1} { lappend oblist $id } } proc drawline {x y x2 y2 col t} { global canv oblist set id [$canv create line $x $y $x2 $y2] if {$t==1} { lappend oblist $id } } proc update_display {} { update } proc clearobjs {} { global canv oblist foreach obj $oblist { $canv delete $obj } }nam-1.15/CHANGES.html0000644000076400007660000013342211655017347013046 0ustar tomhnsnam nam Change Log

Change History (nam)


nam-1.15 Released Fri Nov 4 2011

  • Tcl-8.5 support, improved OS X support

  • nam-1.14 Released June 17 2009

  • Refresh packages, some improved 64-bit support

  • nam-1.13 Released Sat Mar 10 2007

  • Refresh packages, Sun OS compilation patch

  • nam-1.12 Released Sat Sep 24 2006

  • Refresh packages

  • nam-1.11 Released Nov 15 2005

    • [haldar]Mon Jan 24 12:04:47 PST 2005 Added changes from mac802.15.4 contributed code from Jianliang Zheng (zheng@ee.ccny.cuny.edu) and Myung J. Lee (lee@ccny.cuny.edu). Also updated the otcl and tclcl version numbers in files under conf and VERSION to match newer versions.


    nam-1.10 Release Fri Jan 9 15:25:03 PST 2004

    • [Xuan Chen] Sat Oct 11 23:08:29 PDT 2003

      • removed the hard-coded tcl/tk library path in main.cc and tkUnixInit.c
      • Added support for building nam under tcl/tk8.4.4 and new otcl/tclcl (commited in cvs, release pending). In tkcompat.h, defined two new macros: CONST84 and CONST84_RETURN for old tcl/tk versions (before 8.4). NOTE: need to change configure at next release so that tcl/tk 8.4.4 will become default.

    nam-1.0a12[OLD VERSION NO].nam1.9[NEW VERSION NO] released

    Feb 23, 2003
  • [Tim Buchheim]Mon Feb 10 14:17:40 PST 2003
    More updates for wireless animations:

    • wireless broadcast packets now use "r" events when animating in reverse, just like non-broadcast packets. (previously they used the "h" event even when going backwards)
    • wireless and wired nodes can now be mixed with better results. This requires using the "W" event as well as supplying X and Y coordinates for all nodes in the scenario.
    • The range and duration of the animation of wireless packets can now be specified on either a per-packet basis or by setting global parameters.
  • [Tim Buchheim]Tue Dec 10 19:02:19 PST 2002
    Two changes to the animation of broadcast packets in wireless scenarios:

    • bcast packets used to be animate in real time, not virtual time. so if you changed the playback speed (or even paused it) the circles would always expand at the same real rate. Now, the animation is done in virtual time, like all other objects. So if you slow down the playback rate, the circles will move slower. If you increase playback rate, they move faster.
    • you can now set the speed for broadcast packets. (previously they ran at a hardcoded speed.) Use something like the following:

      v -t 0.0 -e set_bcast_duration 0.02

      The default is currently set to 0.01 (units are seconds)


    nam-1.0a11a[OLD].nam-1.8a[NEW] released on Wed Jul 3 18:00:00 PDT 2002

    • [Tim Buchheim]Wed Jul 3 18:00:00 PDT 2002
      Fixed to make it work on Windows again.

    • [Tim Buchheim]Tue Apr 30 01:18:48 PST 2002
      Restored old behavior for default link length (proportional to delay).


    nam-1.0a11[OLD}.nam-1.8[NEW] released on Mon Apr 15 14:59:08 PDT 2002

    • [buchheim] Mon April 15 2002
      Added workaround to parsing code in order prevent namgraph flags from triggering unnecessary warnings.

    • [mehringe] Thu August 30 2001
      • Added ability to input Node movement information into the nam editor. This is useful for quickly creating wireless node movement paths. To use just set the time slider to the time at which you want the node to be at it's next destination and then drag the node to that destination.
      • Fixed a couple of small problems with wireless animation display.
    • [mehringe] Fri July 6 2001
      • Added Loss Models and Queue Types to the nam editor.
      • Added Exponential, Pareto, and Telnet traffic sources.


    nam-1.0a10[OLD].nam-1.7[NEW] released on Jun 6 14:17 PDT 2001

    • [mehringe] Wed May 9 2001
      More nam editor updates, it is staring to look nice now.
      • Moved object properties to a popup window instead of a side pane.
      • Fixed save and save as dialog boxes and removed unecessary use of a temp file.
      • Fixed the color popup window to place the color value in the proper text box when double click upon.
      • Removed the unused stop, fast-forward, play, reverse buttons.
      • Disabled the edit menu commands until those are finished.
    • [mehringe] Fri Mar 23 2001

    • I added saving and opening of nam editor ns scripts, added modification of different object properties, and added the time slider for setting start and stop times for traffic sources
    • [mehringe] Wed Feb 7 17:20:15 PST 2001
      Major updates to the nam editor. Currently it only has a small subset of the total functionality but basic scripts can be created and run. More things will be filled in over the next couple of months.
    • [mehringe] Thu Dec 14 16:45:48 PST 2000
      Rewrote parsing code to be table driven and more stable. Cleaned up nam trace file syntax to remove trace event language ambiguities but tried to keep backwards compatibility. Added files parser.h and parser.cc.
    • [johnh] Tue Dec 12 10:36:34 PST 2000
      Updated config.guess to autoconf's current one.
    • [difa] Fri Dec 08 17:32:34 PST 2000
      Modify nam_stream.cc so that nam can use non-blocking I/O to handle pipe input.

    nam-1.0a9[OLD].nam-1.6[NEW] released on Mon Oct 16 21:01:42 PDT 2000

    • [johnh]Fri Oct 6 20:28:20 PDT 2000
      Another few compile problems for redhat 7.0/gcc 2.96.
    • [mehringe]Fri Oct 6 07:59:55 PDT 2000
      Nam now allows you to dynamically add nodes and links. You still have to define the node but you can do it at any time during the simulation. Before all nodes and link had to be defined at -t *.
    • [johnh]Thu Aug 10 15:15:55 PDT 2000
      Nam now builds on redhat linux 7.0 with gcc 2.96 (and with other compilers than allow ANSI's xor keyword).
    • [hyunah] Thu May 18 11:12:20 CDT 2000
      Added nam option and ns commands for nam validation test.
      - nam -z : to play nam as soon as it starts
      - $ns snapshot : to take a snapshot
      - $ns rewind-nam : to play back
      - $ns re-rewind-nam : to play forward after play back
      - $ns terminate-nam : to exit nam

    • [hyunah] Sun Apr 9 8:18:54 PDT 2000
      nam validation test was added.

    • [haoboy] Mon Apr 3 15:28:44 PDT 2000
      Fixed bug in wireless trace. Basically NetModel::layout_node{} did not pass parameters in the correct order. Now dlabel becomes the last parameter and it should work for all cases.

    • [haoboy] Thu Mar 23 19:38:29 PST 2000
      • Currently autolayout does not work due to some mysterious reasons as I explain below. Everything happened between Feb 27 and March 1st, 2000. Specifically, it's due to changes in netmodel.cc v1.74 to v1.75, and tcl/netModel.cc v1.10 and v1.11. If the lines 174-178 in tcl/netModel.tcl does not contain $dlabel stuff, auto layout works fine. But when they are added, it's messed up even if the dlabel processing code in netmodel.cc is never called due to the default empty dlabel string. I suspected it was a memory problem but purify did not give anything. Therefore, I changed those lines in tcl/netModel.tcl to only add the $dlabel arguments when it's not empty. Thus done, auto layout now works for existing trace files. However, I still don't understand why it behaves this way. It smells suspicious of something wrong somewhere else, and it must be fixed before new code should be added.
      • Fixed the route entry stuff; now it works when node zooms or auto layout.
      • Fixed indentation in various places to the default 8.
      • Changed three class member variables to carry the underscore suffix so they conforms to coding convention and it's easy to distinguish between class member variables and other auto variables.
    • [hyunah] Sun Mar 19 21:24:08 PST 2000
      * removing duplicate code (draw stuff for PSView). Using View instead.
      * nam editor
      - adding "runNs" command so that users don't need to type "ns xxx.nam" explicitly

    • [hyunah] Tue Feb 29 15:41:27 PST 2000
      * nam editor
      - add agent information of reloading function

    • [hyunah] Tue Feb 15 17:45:38 CST 2000
      * nam + nam editor
      - adding icon explaining box

    • [kclan] Mon Feb 14 20:23:31 PST 2000
      adding interactive control for coloring packet flow on the fly

    • [hyunah] Thu Feb 10 15:36:56 PST 2000
      * nam editor
      - adding Application option to AgentProperty such as starting/ending time

    • [hyunah] Wed Feb 9 15:57:20 PST 2000
      * nam editor
      - modifying "link" for backward-compatibility.
      (making link either by click-&-drag or click-&-click)
      - adding tcl script for FullTcp destination agent

    • [hyunah] Tue Feb 8 19:46:04 PST 2000
      * nam editor
      - adding AgentProperty to support Agent Options such as
      windowInit_, cwnd_ in TCP and packetSize_ in CBR.

    • [kclan] Mon Feb 07 12:23:31 PST 2000
      adding interactive control to filter packet on the fly

    • [hyunah] Mon Feb 7 14:43:43 PST 2000
      * nam editor
      - adding click_and_draggable link between nodes, and between agents
      - adding CBR connection
      - adding fid (0~4) to provide different color per flow
      - fixing bug to have consistent view between editor and normal nam window
      - supporting multiple TCP conenctions
      - inserting "open" command
      - fixing bugs related to "cut" function, node numbering, and attaching agent on nodes.

    • [hyunah] Thu Jan 27 14:53:52 PST 2000
      Adding graphical interface on attaching agent in nam editor

    • [kclan] Tue Jan 25 19:06:18 PST 2000
      Fix bugs in using hierarchical routing for wireless(using node id instread of node address for animation)

    • [hyunah] Tue Jan 25 17:56:58 PST 2000
      Modifying an outline of nam editor

    • [hyunah] Mon Jan 24 19:35:34 PST 2000
      Modifying nam editor view to accommodate the new function, which is replacing editview entry with toolbar.


    nam-1.0a8[OLD].nam-1.5[NEW] Releaseed Tue Jan 10 15:10:05 2000

    • [hyunah] Tue Jan 18 19:51:06 PST 2000
      Added agents to nam editor
      (works for one pair of TCP and TCPSink agents)

    • [haoboy] Wed Dec 22 14:33:05 PST 1999
      Added node size scale up/down buttons in the zoom bar.

    • [haoboy] Mon Dec 13 16:21:21 PST 1999
      Replace the edit view menu entry with a toolbar button so that topology editing can be turned on at any time without opening a new view.

    • [haoboy] Thu Dec 9 14:38:02 PST 1999
      Fix the node (inner) label color so that it can be set to background color. Basically add new color parameter to Paint::text_gc() so we can allocate a font GC with a specific color.
      Remaining Problem: PSView still cannot handle this node label color correctly.

    • [haoboy] Fri Dec 3 10:23:18 PST 1999
      Added support for large flow id and color ids.

    • [kunchan] Thu Nov 16 17:00:37 PDT 1999
      Adding mechanism for visualization of packet flow in wireless simulation.

    • [hyunah] Fri Oct 29 19:20:03 PDT 1999
      Several features of labels both on node and edge are added such as color and position.
      The examples of new commands are following
      $ns at 0.0 "$n(0) label-color yellow"
      $ns at 0.0 "$n(0) label-at NORTH"
      $ns at 0.0 "$ns duplex-link-op $n(0) $n(1) label cost=1"
      $ns at 0.0 "$ns duplex-link-op $n(0) $n(1) color green"
      $ns at 0.0 "$ns duplex-link-op $n(0) $n(1) label-at WEST"

    • [haoboy] Thu Jun 17 17:02:37 PDT 1999
      Changed ns-developers in www.tcl to ns-users.

    • [haoboy] Thu Apr 15 11:14:20 PDT 1999
      Re-instated options '-j' and '-r' to control the startup time and animation rate.

    • [haoboy] Wed Apr 14 13:36:42 PDT 1999
      Changed tcldbg library initialization so that it works with tcldbg 1.7 through 1.9.

    • [haoboy] Sat Apr 3 14:43:10 PST 1999
      Allow user to provide initialization file for every source file. However, the initialization that can be done in these files (i.e., provided by -f or -u options) is limited, because sourcing of these files is done inside a instproc{}. Currently, it is recommended that only operations to be included in these initialization files are to reset class variables; redefinition of existing OTcl methods in these files does not seem to work.
      One example of the initialization file is to define initial animation rate. This can be done by including the following line into a file, say, n1.tcl: Animator set INIT_RATE_ 2ms. Then run nam like this: nam -u n1.tcl a.nam

    • [haoboy] Mon Mar 29 15:50:01 PST 1999
      After "reset" button is pressed, nam should redraw screen to reflect the changes in layout. Modified files: anetmodel.{cc,h}.

    a6 nam-1.0a7[OLD].nam-1.4[NEW] Released Mar 16 16:45:30 PST 1999

    • [haoboy] Sat Mar 13 15:16:56 PST 1999
      Added startup option '-k ' to allow users to specify the initial port address to search from.
    • [salehi]Fri Mar 12 12:40:10 PST 1999
      Configured with the new versions of Tcl, TK, OTcl, and TclCl.
    • [haoboy] Wed Mar 10 19:17:59 PST 1999
      Fixed WIN32 incompatibilities in nam_stream.{cc,h}. Changed conf/makefile.win to allow generating debugging version under win32. Updated source file list in makefile.vc.
    • [johnh]Fri Mar 5 15:03:03 PST 1999
      Make now complains if you need to run configure. (Based on Adam Costello's ns fix.)
    • [haoboy]Tue Jan 12 12:43:44 PST 1999
      • Removed msgbox.tcl and tkfbox.tcl from tcl/. They belong to tk distribution and shouldn't be included here. Tclcl was modified to handle embedded XBM files inside tcl script; msgbox.tcl and tkfbox.tcl were embedded into tclcl.
      • Modified all codes related to timeslider so that if maxtime==mintime, the timeslider code will still work instead of producing a coredump.
    • [Ya]Fri Dec 11 17:04:52 PST 1998
      An Editor is added to nam to allow the user to interactively edit the simulation topology in a WYSIWYG style. Current new features include:
      • Create simulation topology
      • Edit Object's properties in the topology Node: Color, Size, Label, Agents Link: Color, Bandwidth, Delay
      • Add/Delete node and link object Export the result to a tcl file (*.nstcl) which can be excuted under ns
      • Save as an editable nam file (*.enam)

    • [Ya]Thurs Nov 12 17:04:52 PST 1998
      Autoconf support for zlib is added. self-adjusted timeslider works with zlib support.

    • [johnh]Fri Nov 6 17:04:52 PST 1998
      Nam will now play compressed files (files ending in .Z or .gz, if nam is built with -DHAVE_ZLIB) and from pipes (use the filename ``-''). Autoconf support for zlib is still needed. Compressed files play very slowly backwards. Playing from a pipe buffers trace data in a file in /tmp.


    Nam 1.0a6[OLD].nam-1.3[NEW] released

    Oct 22 17:31 PDT 1998[Ya]
    • Preliminary mobility support (under active development)
    • Node lable support
    • Support for simplex links
    • Various bug fixes.
    Released with ns-2.1b4 and ns-allinone-2.1b4


    Nam 1.0a5[OLD].nam-1.2[NEW] released

    Sep 2 17:31 PDT 1998[Ya]
    • Namgraph for high-level drill-down analysis
    • Nam console with multi-model support
    • Layout editor
    • LAN visualization support ( Need ns-2.1b4 to create tracefile for the feature. Ns-2.1b4 is not released yet at this moment )
    • Compatible with Tcl/TK 8.0, Win32.
    • Some new examples to demonstrate these new features including nam-1/ex/tcpsrm.nam, tcpecn.nam and lantest.nam.
    • Various bug fixes.
    • A win32 version is provided in reponse to heavy request from ns-users.
    • [Ya] Aug 5 15:15 PDT 1998
      Ready for new Nam 1.0a5 release
      • LAN support
      • Namgraph for tcp and srm event graph
      • Layout editor
      • Multi-model support
    • [Ya] Apr 22 20:15 PDT 1998
      • First cut for nam with analysis views(tcp).
    • [haoboy] Tue Mar 31 09:29:53 PST 1998
      • Bug fix for Edge's bounding box. It should have two bounding boxes. One for calculating screen to world transform, the other to compute Edge::inside().
    • [SM] Mar 30 20:15 PDT 1997
      • Make windows build work again.
    • [haoboy] Thu Feb 26 16:33:59 PST 1998
      • Bug fix for Trace::settime(). Previously it falls into infinite loop when first forward to the end, then backward to the start for the trace file whose first 'real' events does not start at time 0.
      • Bug fix for BoxAgent's bound box. It should have its own update_bb().
    • [LB] Thu Feb 26 16:00:44 PST 1998
      Added ability to skip over quiescent periods in the animation.
    • [haoboy] Tue Feb 24 18:20:52 PST 1998
      • Change NetModel::scale_estimate() to use Edge::length() instead of Edge::delay(). Otherwise it has problem when using a pre-made layout.
      • Manage node marks with a linear list instead of Tcl's hash table. The latter results in random traverse order w.r.t. the input order.
      • Add Packet::CheckPoints() to limit the minimum length of packets. Otherwise some packets may disappear if too small (reported by Kannan).
    • [haoboy]Mon Feb 23 18:20:41 PST 1998
      Now node marks can have 3 shapes: circle, square and hexagon.
    • [haoboy]
      First cut of topology editor. Added various reconfigure methods to all Animation objects. Added selection mechanism to NetModel and AutoNetModel. The editor only works with auto layout because in fixed layout all edges are proportional to delay
      To use the editor, open an edit view using the menu button "Edit view" under "Edit". In the new edit view, clicking left button on a node will select it, then it can be moved by dragging it around. Rubber band is supported by clicking and dragging the left mouse button. Shift-click an object will add it to the current selection.
      Currently there is a cosmetic bug related to moving a selection around in the edit view, and many necessary editing features have not been added yet. Because this editor involves many other files, I decided to check it in when it's mainly working. Otherwise it'll be very hard to keep all these changes up-to-date.
    • [haoboy]Wed Feb 18 20:48:02 PST 1998
      Bug fix: Init nymin_ nymax_ in AutoNetworkModel::placeEverything().
    • [johnh]Wed Feb 18 14:26:23 PST 1998
      Added drag-scrolling support (mouse-2 in a window lets you drag it around).
    • [EA] Thu Feb 12 20:54:59 PST 1998
      • Added reset button to auto-layout.
      • Added ex/mbone.nam - a map of the mbone done on 8/6/96.
    • [haoboy] Fri Jan 30 13:36:25 PST 1998
      • Focus on the next annotation while using time slider.
      • nam_prelayout() and nam_layout() now skip all events which doesn't have -t* from the beginning of the trace file.
      • Install all Tk options with the real application name as class, so that peer functions appropriately. Affected: non-www fonts options in nam.tcl and Tk_GetOption() in paint.cc.
      • Initialize views_ as NULL in netgraph.cc.
      • Problem: sim_annotation in nam.tcl cannot handle well multiple annotations happening at the same time.


    nam-1.0a4[OLD].nam-1.1[NEW]

    Release with ns-2.1b2 Jan 21 1998 [haoboy].
    Version 1.0a4 skipped because when 1.0a2 was released the directory name was mistaken by nam-1.0a3. To avoid the confusion, we skipped 1.0a3.


    nam-1.0a3

    Release with ns-2.1b2 Jan 21 1998 [haoboy]

    • [haoboy] Wed Jan 21 17:40:37 PST 1998
      • Added XWDFile.h because xwd.c doesn't compile with obsolete XWDFile.h of openwin in some old sunos 4.
      • Added link flags into Makefile.in so that it will recognize -static flag.
    • [EA] Wed Jan 21 13:04:38 PST 1998
      • Fixed bug in reverse link angle calculation in nam.tcl.
      • Removed Tcl_Init from main.cc since this is not needed with TclCl and it causes nam to break if tcl is not installed.
    • [haoboy]Tue Jan 13 15:31:34 PST 1998
      • Reinstate the peer functionality for two nam instances. Mainly changing [winfo name .] to [tk appname] and add new option "-N" to let user specify specific app name for every instance.
      • Add/delete annotations during animation. But they can not be saved into the trace files. Detailed description included in the man page.
      • Include tcl-debug support into main.cc. Changed library order in Makefile.in so that X libs are included last. Changed conf/configure.in.tcldebug to include paths for Dbg.h
    • [johnh]Tue Dec 16 10:14:30 PST 1997
      Man page info for animation saving. (Also, see build.menus in nam.tcl for a list of desired enhancements.
    • [johnh]Mon Dec 15 22:38:15 PST 1997
      An animation can now be saved into a series of files (namXXX.xwd) for post-processing into an mpeg or animated gif.
    • [EA] Fri Nov 28 17:35:02 PST 1997
      • Fixed annotation listbox so that current annotation is always displayed at bottom. Ultimately, we want to highlight this with a "window" that stays centered on the current annotation. Get to this later.
    • [TLT] Sat Nov 22 14:48:21 GMT-8:00 1997
      • [win32] edits to make it compile under win32 again
      • edits to remove some warnings
      • [win32] [bug fix] reverse scans wasn't working because in windows the default file mode is text and not binary. They are working now.
      • [win32] mods to compile with static tcltk
      • [temp bug fix] when views are destroyed offsreen_ are not freed, this caused subsequent draws onto a non-mapped window. For now, I freed the offsreen bitmap and set it to zero. The real fix should be to free up the view entirely.
    • [EA] Sat Nov 22 13:08:58 PST 1997
      • Added tkUnixInit.c to override dynamic loading of tk scripts since we get them from tclcl.


    nam-1.0a2[OLD].nam-1.0[NEW]

     

    Release with ns-2.1b1

    • [EA] Sat Nov 15 15:54:10 PST 1997
      • Ported to tcl8.0. Added tkcompat.h for backward compat.
      • Generated new configure script for autodetecting of tcl/tk versions (John Heidemann's revision).
    • [haoboy] Mon Nov 10 10:14:23 PST 1997
      • Fixed bugs in packet.{cc,h} caused by setting edge length != delay.
      • Updated scripts in ex/
      • Updated nam man page.
      • Fixed bugs in monitoring dropped packets
    • [johnh]Tue Oct 28 17:00:05 PST 1997
      Re-autoconf'ed with configure.in.TclCL. Extra code from nam.tcl removed.
    • [mjh] Wed Oct 8 1997
      • Moved all view zoom and pan code from Tcl to view object to allow us to have multiple views.
      • Fixed all code that assumes only a single view of the netmodel
      • Implemented multiple views - currently in a separate window but might change this soon.
    • [mjh] Sun Oct 5 1997
      • Added code to display the current time in timeline graphs
      • Support for bi-directional and loss timeline graphs added.
      • Assorted minor bug fixes
    • [mjh] Sat Oct 4 1997
      • Separated netview into a general purpose view and a special purpose. netview.
      • Added new classes to support producing graphs of various parameters.
      • Integrated graphs into UI (click on a link to see them).
      • Fixed minor bugs in netview zooming and X Event handling.
      • Changed tracefile format to be more TCL-like to make it easier to handle events with text fields or embedded TCL.
      [mjh] Thu Oct 2 1997
      • activated John's view menu and added code to hide or show the monitors, annotations and autolayout panels
    • [johnh]Wed Oct 1 19:34:40 PDT 1997
      Menubar and about dialog added.
    • [haoboy] Wed Oct 1 19:20:53 pdt 1997
      Added annotation list box.
    • [mjh] Wed Oct 1 1997
      • fixed incorrect value of M_PI in sincos.h
      • improved placement of agents so they don't overlap lines and don't often overlap each other if possible.
    • [haoboy] Tue Oct 1 11:14:00 PDT 1997
      • "Return" key is no longer associated with 'single-step'.
      • Use right button to add monitor, instead of left button. Left button will be used later to move nodes or node groups.
      • Implemented automatic graph layout.
      • Add a control bar to adjust automatic layout parameters.
      • Default configuration file is .nam.tcl in current directory. A sample .nam.tcl is included as ex/sample.nam.tcl, together with short explainations.
      • Copied config.h, random.{cc,h}, rng.{cc,h} from ns-2.
    • [mjh] Tue Sep 30 1997
      • added zoom functionality to netview (mostly added in tcl, but could easily be moved to c++ later if we think it necessary)
    • [mjh] Mon Sep 29 1997
      • replaced old time slider with one based on a canvas to make it more obvious what does what (expecially when we add scrollbars for zooming)
    • [johnh] Tue Sep 16 14:49:30 PDT 1997

    • ns_to_nam.tcl "h" support improved, examples directory added.
    • [haoboy] Wed Sep 3 19:56:34 pdt 1997

    • Minor bug fixes. Now nodes can start with different colors and change color later on.
    • [johnh]Wed Sep 3

    • Extended nam_angle to support arbitrary angles with ``180deg'' syntax. Patch from Vikram Visewswariah .
    • [johnh] Fri Aug 15 10:44:22 PDT 1997

    • Updated configuration code to current ns-2 status (but not merged)
    • [EA] Thu Aug 14 11:15:01 PDT 1997

    • Added session level annotation.
    • [SM] Thu Aug 14 09:52:14 PDT 1997
      • Removed "gen" directory and contents from repository since these files are automatically generated.
      • Added Nam.suppressMonitors configuration resource which if set to ``true'' suppresses the display of the monitor subpanel in the user interface (to save screen real estate when not needed). The user should be able to insert and remove dynamically this panel from the GUI.
      • Added a hook to source $HOME/.nam.tcl if it exists.
      • Added "yesno" and "resource" helper procs.
    • [SM] Sun Aug 10 15:11:27 PDT 1997
      • First cut at port to win32 API (should work under both Windows 95 and NT). Seems to work okay except for an infinite loop that occurs fairly often when manipulating time in the backward direction.
      • Added a number of workarounds for Visual C++. It treats classes and structures different for example and can produce link errors if a type is referred to both ways.
      • Cleaned up code in netview.cc to use more Tkisms in place of Xisms. It previously compiled under windows but didn't work. Tk shielding made it work.
    • [SM] Spring 1997
      • Somewhere in here Mark Handley added a bunch of nice features and improved the file format.
    • [SM] Fri Dec 27 1996
      • Ported to our local autoconf environment; we now share configure.in.* files across all of our research software.
    • [SM] Eliminated pt.h since wired-in packet types no longer used.
    • [SM] Ported to MIT's Object Tcl framework and eliminate CommandTable class etc. Eliminated time_atof and bw_atof, whose functions are now handled in tcl.

      nam-0.5a

      [Jacobson] Tue Sep 12 04:41:15 PDT 1995
      • Re-do trace format yet again: all packet related records (h + - d) now have same format:
      • time src dst size attr type conv id
        where src & dst are the immediate src & dst node names, size is the size in bytes, attr are drawing attributes (color # in lower 8 bits, bit 8 set if should be drawn hollow rather than filled), type is a 7 char 'type' string, conv is a 31 character 'conversation' identifier and id is an integer packet identifier.
      • can now right click on anything (packet, queue item, drop) & get info about it.
      • added 'ncolor' and 'ecolor' commands to set node & edge colors
      • made 'v' command just execute it's text as a tcl expr as suggested by McCanne.

      nam-0.4a

      [Orayani] Summer 1995
      • add support for graphing, packet id's, and synchronized animations.

      nam-0.3a

      [SM] Decemeber 1994
      • Changed trace file input format. New format is identical to format output by ns.
      • Eliminated pic-style language parses. Now topology and layout are created by user-defined tcl procedure (nam_config).
      • Reworked layout traversal to operate on native objects instead of temporary ones.
      • Changed node/edge object interface so that you first create them and later place and adjust their size.
      • Changed links so that they explicitly know their bandwidth and can map a packet size into a transmission time (so we don't need trasmission times in the trace file anymore).
      • Made many improvements to user interface.

      Origin

      Although development of the LBNL Network Animator nam began in 1991, it was not widely released for many years because the project was consistently superceded by a number of our other research/development efforts. Steven McCanne wrote the original version of the nam in February 1991 during his year off from school (between undergraduate and graduate degrees) when he worked full-time as a staff scientist in the Network Research Group at the Lawrence Berkeley National Laboratory. This early version of nam was first prototyped in C using Tango, an environment for algorithm animation from Brown University. Shortly thereafter, McCanne ported nam to C++ and the Stanford Interviews graphics library. Within this C++/Interviews framework, the principal application design and architecture was experimented with, refined, and developed. In winter 1991, McCanne ported nam to Interviews-3.0, and improved the underlying design to support multiple views of a single animation. In fall 1993, McCanne ported nam to Tcl/Tk and further improved the software architecture and user interface. In winter 1994, McCanne once again re-visited the nam design, this time to improve its interaction with his network simulator ns (version 0.3a above). In summer 1995, Marylou Orayani enhanced nam with a number of features to carry our her U.C. Berkeley Master's project, which involved the automatic animation of real TCP/IP conversations and detailed case studies of a number of actual pathological traffic patterns (version 0.4a above). Throughout this time, Van Jacobson contibuted a number of improvements to the user inteface and trace file format and added new features.

      This change history was not consistently maintained until winter 1996, when we first created the web-page form of this document. 


      [Return to ?]
    • [haoboy]
      • "Return" key is no longer associated with 'single-step'.
      • Use right button to add monitor, instead of left button. Left button will be used later to move nodes or node groups.
      • Implemented automatic graph layout.
      • Add a control bar to adjust automatic layout parameters.
      • Default configuration file is .nam.tcl in current directory. A sample .nam.tcl is included as sample.nam.tcl.
      • Copied config.h, random.{cc,h}, rng.{cc,h} from ns-2.
      • [johnh] Tue Sep 16 14:49:30 PDT 1997
        ns_to_nam.tcl "h" support improved, examples directory added.
      • [haoboy] Wed Sep 3 19:56:34 pdt 1997
        Minor bug fixes. Now nodes can start with different colors and change color later on.
      • [johnh]Wed Sep 3
        Extended nam_angle to support arbitrary angles with ``180deg'' syntax. Patch from Vikram Visewswariah .
      • [johnh] Fri Aug 15 10:44:22 PDT 1997
        Updated configuration code to current ns-2 status (but not merged)
      • [EA] Thu Aug 14 11:15:01 PDT 1997
        Added session level annotation.
      • [SM] Thu Aug 14 09:52:14 PDT 1997
        • Removed "gen" directory and contents from repository since these files are automatically generated.
        • Added Nam.suppressMonitors configuration resource which if set to ``true'' suppresses the display of the monitor subpanel in the user interface (to save screen real estate when not needed). The user should be able to insert and remove dynamically this panel from the GUI.
        • Added a hook to source $HOME/.nam.tcl if it exists.
        • Added "yesno" and "resource" helper procs.
      • [SM] Sun Aug 10 15:11:27 PDT 1997
        • First cut at port to win32 API (should work under both Windows 95 and NT). Seems to work okay except for an infinite loop that occurs fairly often when manipulating time in the backward direction.
        • Added a number of workarounds for Visual C++. It treats classes and structures different for example and can produce link errors if a type is referred to both ways.
        • Cleaned up code in netview.cc to use more Tkisms in place of Xisms. It previously compiled under windows but didn't work. Tk shielding made it work.
      • [SM] Spring 1997
        • Somewhere in here Mark Handley added a bunch of nice features and improved the file format.
      • [SM] Fri Dec 27 1996
        • Ported to our local autoconf environment; we now share configure.in.* files across all of our research software.
      • [SM] Eliminated pt.h since wired-in packet types no longer used.
      • [SM] Ported to MIT's Object Tcl framework and eliminate CommandTable class etc. Eliminated time_atof and bw_atof, whose functions are now handled in tcl.

      nam-0.5a

      [Jacobson] Tue Sep 12 04:41:15 PDT 1995
      • Re-do trace format yet again: all packet related records (h + - d) now have same format:
        time src dst size attr type conv id
        where src & dst are the immediate src & dst node names, size is the size in bytes, attr are drawing attributes (color # in lower 8 bits, bit 8 set if should be drawn hollow rather than filled), type is a 7 char 'type' string, conv is a 31 character 'conversation' identifier and id is an integer packet identifier.
      • can now right click on anything (packet, queue item, drop) & get info about it.
      • added 'ncolor' and 'ecolor' commands to set node & edge colors
      • made 'v' command just execute it's text as a tcl expr as suggested by McCanne.

      nam-0.4a

      [Orayani] Summer 1995
      • add support for graphing, packet id's, and synchronized animations.

      nam-0.3a

      [SM] Decemeber 1994
      • Changed trace file input format. New format is identical to format output by ns.
      • Eliminated pic-style language parses. Now topology and layout are created by user-defined tcl procedure (nam_config).
      • Reworked layout traversal to operate on native objects instead of temporary ones.
      • Changed node/edge object interface so that you first create them and later place and adjust their size.
      • Changed links so that they explicitly know their bandwidth and can map a packet size into a transmission time (so we don't need trasmission times in the trace file anymore).
      • Made many improvements to user interface.

      Origin

      Although development of the LBNL Network Animator nam began in 1991, it was not widely released for many years because the project was consistently superceded by a number of our other research/development efforts. Steven McCanne wrote the original version of the nam in February 1991 during his year off from school (between undergraduate and graduate degrees) when he worked full-time as a staff scientist in the Network Research Group at the Lawrence Berkeley National Laboratory. This early version of nam was first prototyped in C using Tango, an environment for algorithm animation from Brown University. Shortly thereafter, McCanne ported nam to C++ and the Stanford Interviews graphics library. Within this C++/Interviews framework, the principal application design and architecture was experimented with, refined, and developed. In winter 1991, McCanne ported nam to Interviews-3.0, and improved the underlying design to support multiple views of a single animation. In fall 1993, McCanne ported nam to Tcl/Tk and further improved the software architecture and user interface. In winter 1994, McCanne once again re-visited the nam design, this time to improve its interaction with his network simulator ns (version 0.3a above). In summer 1995, Marylou Orayani enhanced nam with a number of features to carry our her U.C. Berkeley Master's project, which involved the automatic animation of real TCP/IP conversations and detailed case studies of a number of actual pathological traffic patterns (version 0.4a above). Throughout this time, Van Jacobson contibuted a number of improvements to the user inteface and trace file format and added new features.

      This change history was not consistently maintained until winter 1996, when we first created the web-page form of this document.


      [Return to ?] nam-1.15/conf/configure.in.audio0000664000076400007660000000647006553565041015452 0ustar tomhnsnam# lots of hairy special cases for detecting which audio device # support to compile in # V_LIB_AUDIO="" V_INCLUDE_AUDIO="" V_INCLUDE_GSM="" V_OBJ_AUDIO="" AC_ARG_WITH(gsm, --with-gsm=path specify a pathname for gsm, d=$withval, d="") if test "$d" != "" ; then if test ! -d $d ; then echo "'$d' is not a directory" exit 1 fi libgsm=$d/lib/libgsm.a if test ! -r $libgsm ; then echo "can't find libgsm.a in $d/lib" exit 1 fi V_INCLUDE_GSM="-I$d/inc" if test ! -r $d/inc/private.h ; then echo "can't find gsm includes in $d/inc" exit 1 fi else echo "checking for libgsm.a" libgsm=FAIL places="\ $PWD/../gsm-1.0-pl10 \ $PWD/../gsm-1.0 \ $PWD/../gsm-1.0-pl7 \ $PWD/../gsm \ /usr/src/local/gsm-1.0-pl10 \ /usr/src/local/gsm-1.0 \ /usr/src/local/gsm-1.0-pl7 \ /usr/src/local/gsm \ /usr/opt/gsm" for dir in $places; do if test -r $dir/lib/libgsm.a -a -r $dir/inc/private.h ; then libgsm=$dir/lib/libgsm.a V_INCLUDE_GSM="-I$dir/inc" break fi done if test "$libgsm" = FAIL; then echo "configure: can't find gsm library ... you can get it at" echo " http://www.cs.tu-berlin.de/~jutta/toast.html" exit 1 fi fi V_LIB_AUDIO="$V_LIB_AUDIO $libgsm" AC_ARG_WITH(af, --with-af=path specify a pathname for AudioFile, d=$withval, d="") if test "$d" != "" ; then if test ! -d $d ; then echo "'$d' is not a directory" exit 1 fi if test ! -r $d/AF/lib/AF/libAF.a ; then echo "can't find libAF.a in $d/AF/lib/AF" exit 1 fi if test ! -r $d/AF/lib/AF/AFlib.h ; then echo "can't find AFlib.h in $d/AF/lib/AF" exit 1 fi V_LIB="$V_LIB $d/AF/lib/AF/libAF.a" V_INCLUDE="$V_INCLUDE -I$d/AF/lib -I$d/AF" V_OBJ_AUDIO="$V_OBJ_AUDIO audio/audio-af.o" else echo "checking for AudioFile" places="../AudioFile-3.1 \ ../AudioFile-3 \ ../AudioFile \ /usr/src/local/AudioFile-3.1 \ /usr/src/local/AudioFile-3 \ /usr/src/local/AudioFile" V_AF=FAIL for d in $places; do if test -f $d/AF/lib/AF/libAF.a -a -f $d/AF/lib/AF/AFlib.h; then V_LIB="$V_LIB $d/AF/lib/AF/libAF.a" V_INCLUDE="$V_INCLUDE -I$d/AF/lib -I$d/AF" V_OBJ_AUDIO="$V_OBJ_AUDIO audio/audio-af.o" V_AF=$d break fi done if test $V_AF = FAIL ; then echo "can't find AudioFile - vat AF support won't be compiled" fi fi AC_TEST_CPP([#include ], x=audio/audio-sun.o, x="") V_OBJ_AUDIO="$V_OBJ_AUDIO $x" AC_TEST_CPP([#include ], x=audio/audio-sun.o, x="") V_OBJ_AUDIO="$V_OBJ_AUDIO $x" case "$target" in *-sgi-irix*) V_LIB_AUDIO="$V_LIB_AUDIO -laudio" V_OBJ_AUDIO="$V_OBJ_AUDIO audio/audio-sgi.o" ;; *-*-bsdi1*) V_OBJ_AUDIO="$V_OBJ_AUDIO audio/audio-pc.o" ;; *-*-bsdi2.0*) V_OBJ_AUDIO="$V_OBJ_AUDIO audio/audio-pc.o" ;; *-*-bsdi*) V_OBJ_AUDIO="$V_OBJ_AUDIO audio/audio-voxware.o" ;; *-*-freebsd*) V_OBJ_AUDIO="$V_OBJ_AUDIO audio/audio-freebsd.o" ;; *-*-sco*) V_DEFINE="$V_DEFINE -DSIGARGS=int -Dsco" if test $CC != gcc ; then CC="cc -Dinline=" CXX="CC +.cc" fi V_OBJ_AUDIO="$V_OBJ_AUDIO audio/audio-voxware.o" V_BROKEN_OBJ= ;; *-*-hpux*) V_OBJ_AUDIO="$V_OBJ_AUDIO audio/audio-hp.o" ;; *-*-aix3*) V_OBJ_AUDIO="$V_OBJ_AUDIO audio/audio-ibm.o" ;; *-*-aix4*) V_OBJ_AUDIO="$V_OBJ_AUDIO audio/audio-ibm.o" ;; *-*-linux*) V_OBJ_AUDIO="$V_OBJ_AUDIO audio/audio-voxware.o" V_BROKEN_OBJ= ;; esac AC_SUBST(V_LIB_AUDIO) AC_SUBST(V_INCLUDE_AUDIO) AC_SUBST(V_OBJ_AUDIO) AC_SUBST(V_INCLUDE_GSM) nam-1.15/conf/configure.in.debugopts0000664000076400007660000000102107472764042016333 0ustar tomhnsnamdnl autoconf options for random debugging dnl $Header: /cvsroot/nsnam/conf/configure.in.debugopts,v 1.5 2002/05/22 18:49:06 johnh Exp $ (LBL) if test x$default_classinstvar = x then default_classinstvar=no fi dnl this next option should be outdated AC_ARG_ENABLE(tclcl-classinstvar,[--enable-tclcl-classinstvar assume classinstvars are present in tclcl],[enable_classinstvar=$enableval],[enable_classinstvar=$default_classinstvar]) if test "$enable_classinstvar" = "yes"; then V_DEFINE="-DTCLCL_CLASSINSTVAR $V_DEFINE" fi nam-1.15/conf/configure.in.des0000664000076400007660000000114506464517132015115 0ustar tomhnsnamdnl 'autoconf' input file to look for des library dnl $Header: /cvsroot/nsnam/conf/configure.in.des,v 1.2 1998/01/31 03:45:30 hodes Exp $ (LBL) AC_ARG_ENABLE(des, --enable-des enable desCore compilation, , enable_des="yes") V_OBJ_CRYPT="" if test "$enable_des" != "no" ; then places="desCore.a \ /usr/src/local/desCore/desCore.a \ ../desCore/desCore.a" for f in $places; do if test -f $f ; then V_LIB="$V_LIB $f" V_OBJ_CRYPT="$V_OBJ_CRYPT net/crypt-des.o" break fi done fi nam-1.15/conf/configure.in.dmalloc0000664000076400007660000000167606577521012015763 0ustar tomhnsnamdnl autoconf rules to find dmalloc dnl $Header: /cvsroot/nsnam/conf/configure.in.dmalloc,v 1.5 1998/09/15 17:21:14 heideman Exp $ (USC/ISI) AC_ARG_WITH(dmalloc, --with-dmalloc=path specify a pathname for the dmalloc debugger (path=no disables the dmalloc), d="$withval", d="UNDEF") DMALLOC_VERS=3.2.1 DMALLOC_PATH="$PWD/../dmalloc \ $PWD/../dmalloc-$DMALLOC_VERS \ /usr/contrib/lib \ /usr/local/lib \ /usr/lib \ /usr/contrib/include \ /usr/local/include \ /usr/include \ " DMALLOC_PATH_D="$d $d/lib $d/include" if test "x$d" = xUNDEF; then AC_MSG_CHECKING(dmalloc) AC_MSG_RESULT([not requested with --with-dmalloc]) else NS_BEGIN_PACKAGE(dmalloc) NS_CHECK_LIB_PATH(dmalloc,$DMALLOC_PATH,$d,$DMALLOC_PATH_D,V_LIB_DMALLOC,dmalloc) NS_CHECK_HEADER_PATH(dmalloc.h,$DMALLOC_PATH,$d,$DMALLOC_PATH_D,V_HEADER_DMALLOC,dmalloc) NS_CHECK_HEADER_PATH(return.h,$DMALLOC_PATH,$d,$DMALLOC_PATH_D,V_HEADER_RETURN,dmalloc) NS_END_PACKAGE(dmalloc,no) fi nam-1.15/conf/configure.in.dynamic0000644000076400007660000002440511440530206015753 0ustar tomhnsnam #-------------------------------------------------------------------- # The statements below define a collection of symbols related to # dynamic loading and shared libraries: # # DL_LIBS - Library file(s) to include in tclsh and other base # applications in order for the "load" command to work. # DL_LD_FLAGS - Flags to pass to the compiler when linking object # files into an executable application binary such # as tclsh. # DL_LD_SEARCH_FLAGS-Flags to pass to ld, such as "-R /usr/local/tcl/lib" # that tell the run-time dynamic linker where to look # for shared libraries such as libtcl.so. Depends on # the variable SHLIB_RUNTIME_DIR in the Makefile. # SHLIB_CFLAGS - Flags to pass to cc when compiling the components # of a shared library (may request position-independent # code, among other things). # SHLIB_LD - Base command to use for combining object files # into a shared library. # SHLIB_LD_LIBS - Dependent libraries for the linker to scan when # creating shared libraries. This symbol typically # goes at the end of the "ld" commands that build # shared libraries. The value of the symbol is # "$V_LIB" if all of the dependent libraries should # be specified when creating a shared library. If # dependent libraries should not be specified (as on # SunOS 4.x, where they cause the link to fail, or in # general if Tcl and Tk aren't themselves shared # libraries), then this symbol has an empty string # as its value. # SHLIB_SUFFIX - Suffix to use for the names of dynamically loadable # extensions. An empty string means we don't know how # to use shared libraries on this platform. #-------------------------------------------------------------------- ### XXX: AC_ARG_ENABLE(shlib, --enable-shlib enable Makefile flags ###for building shared libraries, , enable_shlib="no") AC_ARG_ENABLE(shlib, --enable-shlib enable Makefile targets for mash shared libraries, , enable_shlib="no") # Step 1: set the variable "system" to hold the name and version number # for the system. This can usually be done via the "uname" command, but # there are a few systems, like Next, where this doesn't work. AC_MSG_CHECKING([system version (for dynamic loading)]) if test -f /usr/lib/NextStep/software_version; then system=NEXTSTEP-`awk '/3/,/3/' /usr/lib/NextStep/software_version` else system=`uname -s`-`uname -r` if test "$?" -ne 0 ; then AC_MSG_RESULT([unknown (can't find uname command)]) system=unknown else # Special check for weird MP-RAS system (uname returns weird # results, and the version is kept in special file). if test -r /etc/.relid -a "X`uname -n`" = "X`uname -s`" ; then system=MP-RAS-`awk '{print $3}' /etc/.relid` fi if test "`uname -s`" = "AIX" ; then system=AIX-`uname -v`.`uname -r` fi AC_MSG_RESULT($system) fi fi # Step 2: check for existence of -ldl library. This is needed because # Linux can use either -ldl or -ldld for dynamic loading. AC_CHECK_LIB(dl, dlopen, have_dl=yes, have_dl=no) if test -z "$V_TCLSH" then local_TCLSH=tclsh else local_TCLSH=$V_TCLSH fi # Step 3: set configuration options based on system name and version. case $system in AIX-*) enable_dl="no" ;; BSD/OS-2.1*|BSD/OS-3*) SHLIB_CFLAGS="" SHLIB_LD="shlicc -r" SHLIB_LD_LIBS="$V_LIB" SHLIB_SUFFIX=".so" DL_LIBS="-ldl" DL_LD_FLAGS="" DL_LD_SEARCH_FLAGS="" ;; Darwin-5.*|Darwin-6.*|Darwin-7.*|Darwin-8.*|Darwin-9.*|Darwin-10.*) LDFLAGS="${LDFLAGS} -Wl,-bind_at_load" ;; dgux*) SHLIB_CFLAGS="-K PIC" SHLIB_LD="cc -G" SHLIB_LD_LIBS="" SHLIB_SUFFIX=".so" DL_LIBS="-ldl" DL_LD_FLAGS="" DL_LD_SEARCH_FLAGS="" ;; HP-UX-*.08.*|HP-UX-*.09.*|HP-UX-*.10.*) AC_CHECK_LIB(dld, shl_load, dl_ok=yes, dl_ok=no) if test "$dl_ok" = yes; then SHLIB_CFLAGS="+z" SHLIB_LD="ld -b" SHLIB_LD_LIBS="" SHLIB_SUFFIX=".sl" DL_LIBS="-ldld" DL_LD_FLAGS="-Wl,-E" DL_LD_SEARCH_FLAGS='-Wl,+b,${SHLIB_RUNTIME_DIR}:.' fi ;; IRIX-4.*) SHLIB_CFLAGS="-G 0" SHLIB_SUFFIX=".a" SHLIB_LD="echo tclLdAout $CC \{$SHLIB_CFLAGS\} | $local_TCLSH -r -G 0" SHLIB_LD_LIBS="$V_LIB" DL_LIBS="" DL_LD_FLAGS="-Wl,-D,08000000" DL_LD_SEARCH_FLAGS='-L${SHLIB_RUNTIME_DIR}' ;; IRIX-5.*|IRIX-6.*) SHLIB_CFLAGS="" SHLIB_LD="ld -shared -rdata_shared" SHLIB_LD_LIBS="" SHLIB_SUFFIX=".so" DL_LIBS="" DL_LD_FLAGS="" DL_LD_SEARCH_FLAGS='-Wl,-rpath,${SHLIB_RUNTIME_DIR}' ;; IRIX64-6.*) SHLIB_CFLAGS="" SHLIB_LD="ld -32 -shared -rdata_shared -rpath /usr/local/lib" SHLIB_LD_LIBS="" SHLIB_SUFFIX=".so" DL_LIBS="" DL_LD_FLAGS="" DL_LD_SEARCH_FLAGS='-Wl,-rpath,${SHLIB_RUNTIME_DIR}' ;; Linux*) SHLIB_CFLAGS="-fPIC" SHLIB_LD_LIBS="" SHLIB_SUFFIX=".so" LDFLAGS="$LDFLAGS -Wl,-export-dynamic" if test "$have_dl" = yes; then SHLIB_LD="${CC} -shared" DL_LIBS="-ldl" DL_LD_FLAGS="-rdynamic" DL_LD_SEARCH_FLAGS="" else AC_CHECK_HEADER(dld.h, [ SHLIB_LD="ld -shared" DL_LIBS="-ldld" DL_LD_FLAGS="" DL_LD_SEARCH_FLAGS=""]) fi ;; CYGWIN*) SHLIB_CFLAGS="-fPIC" SHLIB_LD_LIBS="" SHLIB_SUFFIX=".dll" SHLIB_LD="g++ -shared" LDFLAGS="$LDFLAGS -Wl,-export-dynamic" DL_LIBS="-ldl" DL_LD_FLAGS="-rdynamic" DL_LD_SEARCH_FLAGS="" AC_MSG_CHECKING([for import libraries]) V_IMPORT_LIBS=`echo "$V_LIBS" | sed "s/-L//g" | sed "s/ \-l/\/lib/g" | sed "s/ /\.a /g" ` for libfile in $V_IMPORT_LIBS ; do if test ! -f "$libfile" ; then AC_MSG_RESULT([failed!]) AC_MSG_ERROR([Could not find "$libfile"]) fi done AC_MSG_RESULT([ok]) AC_SUBST([V_IMPORT_LIBS]) ;; MP-RAS-02*) SHLIB_CFLAGS="-K PIC" SHLIB_LD="cc -G" SHLIB_LD_LIBS="" SHLIB_SUFFIX=".so" DL_LIBS="-ldl" DL_LD_FLAGS="" DL_LD_SEARCH_FLAGS="" ;; MP-RAS-*) SHLIB_CFLAGS="-K PIC" SHLIB_LD="cc -G" SHLIB_LD_LIBS="" SHLIB_SUFFIX=".so" DL_LIBS="-ldl" DL_LD_FLAGS="-Wl,-Bexport" DL_LD_SEARCH_FLAGS="" ;; NetBSD-*|FreeBSD-*|OpenBSD-*) # Not available on all versions: check for include file. AC_CHECK_HEADER(dlfcn.h, [ SHLIB_CFLAGS="-fpic" SHLIB_LD="ld -Bshareable -x" SHLIB_LD_LIBS="" SHLIB_SUFFIX=".so" DL_LIBS="" DL_LD_FLAGS="" DL_LD_SEARCH_FLAGS="" ], [ SHLIB_CFLAGS="" SHLIB_LD="echo tclLdAout $CC \{$SHLIB_CFLAGS\} | $local_TCLSH -r" SHLIB_LD_LIBS='$V_LIB' SHLIB_SUFFIX=".a" DL_LIBS="" DL_LD_FLAGS="" DL_LD_SEARCH_FLAGS='-L${SHLIB_RUNTIME_DIR}' ]) ;; NEXTSTEP-*) SHLIB_CFLAGS="" SHLIB_LD="cc -nostdlib -r" SHLIB_LD_LIBS="" SHLIB_SUFFIX=".so" DL_LIBS="" DL_LD_FLAGS="" DL_LD_SEARCH_FLAGS="" ;; OSF1-1.0|OSF1-1.1|OSF1-1.2) # OSF/1 1.[012] from OSF, and derivatives, including Paragon OSF/1 SHLIB_CFLAGS="" # Hack: make package name same as library name SHLIB_LD='ld -R -export $@:' SHLIB_LD_LIBS="" SHLIB_SUFFIX=".so" DL_LIBS="" DL_LD_FLAGS="" DL_LD_SEARCH_FLAGS="" ;; OSF1-1.*) # OSF/1 1.3 from OSF using ELF, and derivatives, including AD2 SHLIB_CFLAGS="-fpic" SHLIB_LD="ld -shared" SHLIB_LD_LIBS="" SHLIB_SUFFIX=".so" DL_LIBS="" DL_LD_FLAGS="" DL_LD_SEARCH_FLAGS="" ;; OSF1-V*) # Digital OSF/1 SHLIB_CFLAGS="" SHLIB_LD='ld -shared -expect_unresolved "*"' SHLIB_LD_LIBS="" SHLIB_SUFFIX=".so" DL_LIBS="" DL_LD_FLAGS="" DL_LD_SEARCH_FLAGS='-Wl,-rpath,${SHLIB_RUNTIME_DIR}' ;; RISCos-*) SHLIB_CFLAGS="-G 0" SHLIB_LD="echo tclLdAout $CC \{$SHLIB_CFLAGS\} | $local_TCLSH -r -G 0" SHLIB_LD_LIBS='$V_LIB' SHLIB_SUFFIX=".a" DL_LIBS="" DL_LD_FLAGS="-Wl,-D,08000000" DL_LD_SEARCH_FLAGS='-L${SHLIB_RUNTIME_DIR}' ;; SCO_SV-3.2*) # Note, dlopen is available only on SCO 3.2.5 and greater. However, # this test works, since "uname -s" was non-standard in 3.2.4 and # below. SHLIB_CFLAGS="-Kpic -belf" SHLIB_LD="ld -G" SHLIB_LD_LIBS="" SHLIB_SUFFIX=".so" DL_LIBS="" DL_LD_FLAGS="-belf -Wl,-Bexport" DL_LD_SEARCH_FLAGS="" ;; SINIX*5.4*) SHLIB_CFLAGS="-K PIC" SHLIB_LD="cc -G" SHLIB_LD_LIBS="" SHLIB_SUFFIX=".so" DL_LIBS="-ldl" DL_LD_FLAGS="" DL_LD_SEARCH_FLAGS="" ;; SunOS-4*) SHLIB_CFLAGS="-PIC" SHLIB_LD="ld" SHLIB_LD_LIBS="" SHLIB_SUFFIX=".so" DL_LIBS="-ldl" DL_LD_FLAGS="" DL_LD_SEARCH_FLAGS='-L${SHLIB_RUNTIME_DIR}' ;; SunOS-5*) SHLIB_CFLAGS="-KPIC" SHLIB_LD="/usr/ccs/bin/ld -G -z text" # Note: need the LIBS below, otherwise Tk won't find Tcl's # symbols when dynamically loaded into tclsh. SHLIB_LD_LIBS='$V_LIB' SHLIB_SUFFIX=".so" DL_LIBS="-ldl" DL_LD_FLAGS="" DL_LD_SEARCH_FLAGS='-R ${SHLIB_RUNTIME_DIR}' ;; ULTRIX-4.*) SHLIB_CFLAGS="-G 0" SHLIB_SUFFIX=".a" SHLIB_LD="echo tclLdAout $CC \{$SHLIB_CFLAGS\} | $local_TCLSH -r -G 0" SHLIB_LD_LIBS='$V_LIB' DL_LIBS="" DL_LD_FLAGS="-Wl,-D,08000000" DL_LD_SEARCH_FLAGS='-L${SHLIB_RUNTIME_DIR}' ;; UNIX_SV*) SHLIB_CFLAGS="-KPIC" SHLIB_LD="cc -G" SHLIB_LD_LIBS="" SHLIB_SUFFIX=".so" DL_LIBS="-ldl" # Some UNIX_SV* systems (unixware 1.1.2 for example) have linkers # that don't grok the -Bexport option. Test that it does. hold_ldflags=$LDFLAGS AC_MSG_CHECKING(for ld accepts -Bexport flag) LDFLAGS="${LDFLAGS} -Wl,-Bexport" AC_TRY_LINK(, [int i;], found=yes, found=no) LDFLAGS=$hold_ldflags AC_MSG_RESULT($found) if test $found = yes; then SH_LD_FLAGS="-Wl,-Bexport" else SH_LD_FLAGS="" fi SH_LD_SEARCH_FLAGS="" ;; esac # Step 4: disable dynamic loading if requested via a command-line switch. # #XXX:if test $enable_shlib = "no" ; then # echo "Disabling dynamic loading and shared libraries" # SHLIB_CFLAGS="" # SHLIB_LD="" # SHLIB_SUFFIX="" # DL_LIBS="" # DL_LD_FLAGS="" # DL_LD_SEARCH_FLAGS="" #fi # If we're running gcc, then change the C flags for compiling shared # libraries to the right flags for gcc, instead of those for the # standard manufacturer compiler. ####XXX:if test "enable_shlib" != "no" ; then if test "$CC" = "gcc" -o `$CC -v 2>&1 | grep -c gcc` != "0" ; then case $system in AIX-*) ;; BSD/OS*) ;; IRIX*) ;; NetBSD-*|FreeBSD-*|OpenBSD-*) ;; RISCos-*) ;; ULTRIX-4.*) ;; *) SHLIB_CFLAGS="-fPIC" ;; esac fi ####fi if test "$enable_shlib" != "no" ; then PKG_SHLIB_CFLAGS=$SHLIB_CFLAGS else PKG_SHLIB_CFLAGS="" fi AC_SUBST(DL_LIBS) AC_SUBST(DL_LD_FLAGS) AC_SUBST(DL_LD_SEARCH_FLAGS) AC_SUBST(LDFLAGS) AC_SUBST(SHLIB_CFLAGS) AC_SUBST(SHLIB_LD) AC_SUBST(SHLIB_LD_LIBS) AC_SUBST(SHLIB_SUFFIX) AC_SUBST(PKG_SHLIB_CFLAGS) nam-1.15/conf/configure.in.fns0000664000076400007660000001460110307505100015110 0ustar tomhnsnam dnl dnl autoconf rules to find things in general dnl dnl dnl General approach to using these macros: dnl dnl bracket a group of them that must succeed or fail together dnl with NS_BEGIN_PACKAGE(s)/NS_END_PACKAGE(s). dnl In between put NS_CHECK_{LIB,HEADER}_PATH(). dnl Custom checks can call NS_PACKAGE_NOT_COMPLETE(s) if something's wrong. dnl dnl See configure.in.dmalloc for an example. dnl dnl These macros add their stuff to V_LIBS, V_INCLUDES, V_DEFINES. dnl You should add them to your Makefile.in dnl You also need to put NS_FNS_TAIL in your configure.in dnl (typically just before including configure.in.tail). dnl dnl dnl dnl NS_BEGIN_PACKAGE(NAME) dnl dnl (Internally, _UNDERWAY says that we found some part of it, dnl _COMPLETE says we've got all of it.) dnl AC_DEFUN(NS_BEGIN_PACKAGE, [ NS_PACKAGE_[$1]_UNDERWAY=false NS_PACKAGE_[$1]_COMPLETE=true ]) dnl dnl If a test fails, call NS_PACKAGE_NOT_COMPLETE(NAME) to cause NS_END_PACKAGE to dnl eventually die. dnl AC_DEFUN(NS_PACKAGE_NOT_COMPLETE, [ NS_PACKAGE_[$1]_COMPLETE=false ]) dnl dnl NS_END_PACKAGE(NAME,REQUIRED) dnl REQUIRED should be "yes" or "no" dnl AC_DEFUN(NS_END_PACKAGE, [ NS_PACKAGE_[$1]_VALID=false if $NS_PACKAGE_[$1]_UNDERWAY; then if $NS_PACKAGE_[$1]_COMPLETE; then : [All components of $1 found.] NS_PACKAGE_[$1]_VALID=true else AC_MSG_ERROR([Installation of $1 seems incomplete or can't be found automatically. Please correct the problem by telling configure where $1 is using the argument --with-$1=/path/to/package (perhaps after installing it), or the package is not required, disable it with --with-$1=no.]) fi fi if test "x$2" = xyes; then if $NS_PACKAGE_[$1]_VALID; then : else AC_MSG_ERROR([$1 is required but could not be completely found. Please correct the problem by telling configure where $1 is using the argument --with-$1=/path/to/package, or the package is not required, disable it with --with-$1=no.]) fi fi ]) dnl dnl NS_CHECK_LIB_PATH(LIBRARY,PATH,SUGGESTION,SUGGESTION_PATH,VARIABLE,PACKAGE) dnl LIBRARY should be with a dotted version number but without a .a extension dnl PATH is whitespace separated dnl SUGGESTION, no disables, "" or "yes" enables, otherwise search SUGGESTION_PATH dnl SUGGESTION_PATH dnl sets VARIABLE to be the include stuff dnl PACKAGE is the name specified in NS_{BEGIN,END}_PACKAGE or "no" dnl dnl Automatically adds it to V_LIBS and adds a -DHAVE_LIBLIBRARY to V_DEFINES dnl AC_DEFUN(NS_CHECK_LIB_PATH, [ AC_MSG_CHECKING([for lib$1]) if test "x$3" = "xno"; then : disable library $5=FAIL NS_PACKAGE_NOT_COMPLETE($6) AC_MSG_RESULT(no) else places="$2" if test "x$3" != "x" -a "x$3" != xyes; then if test ! -d $3; then AC_MSG_ERROR($3 is not a directory) fi places="$4" fi $5="" dnl full_lib_name is libtcl7.6 full_lib_name="$1" dnl simple_lib_name is libtcl76 simple_lib_name=`echo $full_lib_name | sed -e 's/\.//'` dnl other_simple_lib_name is libtcl7_6 other_simple_lib_name=`echo $full_lib_name | sed -e 's/\./_/'` dnl simpler_lib_name is libtcl simpler_lib_name=`echo $simple_lib_name | sed -e 'y/0123456789/ /'` double_break=false for dir in $places; do for file in $full_lib_name $simple_lib_name $other_simple_lib_name $simpler_lib_name do if test -r $dir/lib$file.so -o -r $dir/lib$file.a -o -r $dir/lib$file.dylib; then $5="-L$dir -l$file" double_break=true break fi done if $double_break; then break fi done if test "FAIL$[$5]" = "FAIL" ; then NS_PACKAGE_NOT_COMPLETE($6) AC_MSG_RESULT(no) else if test "$solaris"; then $5="-R$dir $[$5]" fi changequote(, )dnl ac_tr_lib=HAVE_LIB`echo $1 | sed -e 's/[^a-zA-Z0-9_]/_/g' \ -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'` changequote([, ])dnl AC_DEFINE_UNQUOTED($ac_tr_lib) dnl add to list V_LIBS="$[$5] $V_LIBS" V_DEFINES="-D$ac_tr_lib $V_DEFINES" NS_PACKAGE_[$6]_UNDERWAY=true AC_MSG_RESULT($[$5]) fi fi ]) dnl dnl NS_CHECK_HEADER_PATH(HEADER,PATH,SUGGESTION,SUGGESTION_PATH,VARIABLE,PACKAGE) dnl HEADER should be file with an extension dnl PATH is whitespace separated dnl SUGGESTION, no disables, "" or "yes" enables, otherwise search SUGGESTION_PATH dnl SUGGESTION_PATH dnl sets VARIABLE to be the include stuff dnl PACKAGE is the name specified in NS_{BEGIN,END}_PACKAGE or "no" dnl dnl Automatically adds it to V_INCLUDES and adds a -DHAVE_HEADER to V_DEFINES dnl AC_DEFUN(NS_CHECK_HEADER_PATH, [ AC_MSG_CHECKING([for $1]) if test "x$3" = "xno"; then : disable header $5=FAIL NS_PACKAGE_NOT_COMPLETE($6) AC_MSG_RESULT(no) else places="$2" if test "x$3" != "x" -a "x$3" != xyes; then if test ! -d $3; then AC_MSG_ERROR($3 is not a directory) fi places="$4" fi $5="" found="" for dir in $places; do if test -r $dir/$1; then found="$dir" if test "$CC" != "icc" || test "$dir" != "/usr/include"; then $5="-I$dir" fi break fi done if test "FAIL$found" = "FAIL" ; then NS_PACKAGE_NOT_COMPLETE($6) AC_MSG_RESULT(no) else changequote(, )dnl ac_tr_hdr=HAVE_`echo $1 | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'` changequote([, ])dnl AC_DEFINE_UNQUOTED($ac_tr_hdr) V_INCLUDES="$[$5] $V_INCLUDES" V_DEFINES="-D$ac_tr_hdr $V_DEFINES" NS_PACKAGE_[$6]_UNDERWAY=true AC_MSG_RESULT($[$5]) fi fi ]) dnl dnl NS_CHECK_ANY_PATH(ANY,PATH,SUGGESTION,SUGGESTION_PATH,VARIABLE,PACKAGE) dnl ANY shoudl be the file dnl PATH is whitespace separated dnl SUGGESTION, no disables, "" or "yes" enables, otherwise search SUGGESTION_PATH dnl SUGGESTION_PATH dnl sets VARIABLE to be the include stuff dnl PACKAGE is the name specified in NS_{BEGIN,END}_PACKAGE or "no" dnl AC_DEFUN(NS_CHECK_ANY_PATH, [ AC_MSG_CHECKING([for $1]) if test "x$3" = "xno"; then : disable header $5=FAIL NS_PACKAGE_NOT_COMPLETE($6) AC_MSG_RESULT(no) else places="$2" if test "x$3" != "x" -a "x$3" != xyes; then if test ! -d $3; then AC_MSG_ERROR($3 is not a directory) fi places="$4" fi $5="" for dir in $places; do if test -r $dir/$1; then $5="$dir" break fi done if test "FAIL$[$5]" = "FAIL" ; then NS_PACKAGE_NOT_COMPLETE($6) AC_MSG_RESULT(no) else NS_PACKAGE_[$6]_UNDERWAY=true AC_MSG_RESULT($[$5]) fi fi ]) dnl dnl Final stuff for fns dnl AC_DEFUN(NS_FNS_TAIL, [ AC_SUBST(V_INCLUDES) AC_SUBST(V_LIBS) AC_SUBST(V_DEFINES) dnl AC_SUBST(V_OBJS) ]) nam-1.15/conf/configure.in.head0000664000076400007660000001064211103506570015233 0ustar tomhnsnamdnl standard setup for vic/vat/etc. autoconf scripts. dnl $Header: /cvsroot/nsnam/conf/configure.in.head,v 1.30 2008/11/03 05:34:48 tom_henderson Exp $ (LBL) AC_ARG_WITH(defaultoptions, -with-defaultoptions[=filename] use as default options file, , with_defaultoptions=".configure") if test "$with_defaultoptions" = "yes" ; then with_defaultoptions=".configure" elif test "$with_defaultoptions" = "no" ; then with_defaultoptions="" fi if test -n "$with_defaultoptions" ; then if test -f "$with_defaultoptions" ; then read arglist < $with_defaultoptions if test -n "$arglist" ; then arguments="$0 $arglist $* --without-defaultoptions" echo "Restarting: $arguments" exec $arguments fi else if test "$with_defaultoptions" = ".configure" ; then echo No .configure file found in current directory echo Continuing with default options... else echo Cannot find file $with_defaultoptions echo Aborting configure... exit 1 fi fi fi AC_CANONICAL_SYSTEM AC_PROG_CC AC_PROG_CXX AC_STDC_HEADERS AC_HAVE_HEADERS(string.h) V_INCLUDE="" V_LIB="" V_OBJ="" V_BROKEN_OBJ="strtol.o strtoul.o" V_SHELL="" V_TARCMD="tar cfh" V_SIGRET="void" AC_CHECK_LIB(Xbsd, main, [V_LIB="$V_LIB -lXbsd"]) AC_CHECK_LIB(socket, socket, [V_LIB="$V_LIB -lsocket"]) AC_CHECK_LIB(nsl, gethostbyname, [V_LIB="$V_LIB -lnsl"]) AC_CHECK_LIB(intl, dcgettext, [V_LIB="$V_LIB -lintl"]) AC_CHECK_LIB(dnet_stub, getnodebyname, [V_LIB="$V_LIB -ldnet_stub"]) V_TAR_EXTRA="" V_DEFINE="" V_RANLIB=ranlib V_AR="ar cr" #XXX V_SHM="-DUSE_SHM" AC_ARG_ENABLE(release, --enable-release do a release build, , enable_release="no") AC_ARG_ENABLE(debug, --enable-debug build with debugging enabled, , enable_debug="no") AC_ARG_ENABLE(devel, --enable-devel do a development build, , enable_devel="no") if test "$enable_devel" = "yes" ; then enable_debug="yes" fi if test -f .devel -o "$enable_devel" = "yes"; then OonS="" else if test "$CC" = gcc ; then AC_MSG_CHECKING(that $CXX can handle -O2) AC_TRY_COMPILE(, #if __GNUC__ < 2 || __GNUC_MINOR__ < 8 /* gcc */ error #endif #if __GNUC_MINOR__ < 92 /* egcs */ int error; #endif ,AC_MSG_RESULT(yes) OonS="-O2", # Optimize on Steroids AC_MSG_RESULT(no)) fi fi if test "$enable_debug" = "yes" ; then V_CCOPT="-g" if test "$CC" = gcc ; then V_CCOPT="$V_CCOPT -Wall -Wno-write-strings -Wno-parentheses -Werror" V_DEFINE="$V_DEFINE -fsigned-char -fno-inline" fi else V_CCOPT="$OonS" V_DEFINE="$V_DEFINE -DNDEBUG" if test "$CC" = gcc ; then V_CCOPT="$V_CCOPT -Wall -Wno-write-strings" fi fi # XXX Some stupid sh on solaris does not set PWD correctly, i.e., # after chdir $PWD remains at the parent directory. :( # We'll just do this every time. Doesn't hurt anyway. PWD=`pwd` solaris="" if test `echo "$target_os" | sed 's/\..*//'` = solaris2 ; then solaris="yes" fi #places="Tcl \ # /usr/src/local/Tcl \ # ../../Tcl \ # ../Tcl" #for d in $places; do # if test -f $d/tclcl.h ; then # V_LIB="$V_LIB $d/libTcl.a" # V_INCLUDE="$V_INCLUDE -I$d" # break # fi #done # we now default to non-static linking, although if the "magic" file # .devel exists in the current directory, we try for a static link # under the assumption we are trying to produce re-distributable # binaries. # # Yatin: Moved this code here from configure.in.tail, since the mash # configure.in file needs to set this variable appropriately before invoking # configure.in.tail and the presence of the .devel file can mess things up for # the linux release build # AC_ARG_ENABLE(static, --enable-static enable/disable static building, , enable_static="") if test -f .devel -o "$enable_devel" = "yes"; then echo -n "Development version: considering static" dnl default to static on in development versions if test "$enable_static" != no; then echo ", and static enabled" V_STATIC="-static" else echo ", but static disabled anyway" fi else V_STATIC="" fi # This can be extended to support compilation-time module selection V_STLOBJ="" V_LSSCRIPT="" # This is required by configure.in.tcl to provide absolute pathnames for # tclsh, and configure.in.tail to absolutize V_INCLUDES and V_LIBS. absolutize() { case $1 in -L*) p=`echo $1 | sed 's/^-L//'` ;; -I*) p=`echo $1 | sed 's/^-I//'` ;; *) p=$1 ;; esac d=`dirname $p` f=`basename $p` ad=`( cd $d pwd )` case $1 in -L*) echo -L$ad/$f ;; -I*) echo -I$ad/$f ;; *) echo $ad/$f ;; esac } nam-1.15/conf/configure.in.int64_t0000664000076400007660000000467011205576545015641 0ustar tomhnsnamdnl autoconf rules for 64-bit integers dnl $Id: configure.in.int64_t,v 1.7 2009/05/22 19:30:45 tom_henderson Exp $ dnl dnl start by looking for supporting functions dnl AC_CHECK_FUNCS(strtoq strtoll) dnl dnl int64_t seems to be what C 9x will have (in stdint.h), dnl but we're not there yet, so poke around for alternatives. dnl INT64_T_ALTERNATIVE=none HAVE_SUPPORTING_FUNC=false AC_CHECK_SIZEOF(long,0) if test $ac_cv_sizeof_long -ge 8 then INT64_T_ALTERNATIVE=long AC_CHECK_FUNC(strtol) fi AC_CACHE_CHECK([for __int64_t],nsnam_cv_int64_t_HAVE___INT64_T,[ AC_TRY_RUN([ main() { __int64_t x; exit (sizeof(x) >= 8 ? 0 : 1); } ], nsnam_cv_int64_t_HAVE___INT64_T=yes,nsnam_cv_int64_t_HAVE___INT64_T=no,nsnam_cv_int64_t_HAVE___INT64_T=cross)]) if test x"$nsnam_cv_int64_t_HAVE___INT64_T" = x"yes" -a "x$INT64_T_ALTERNATIVE" = xnone; then INT64_T_ALTERNATIVE=__int64_t fi AC_CACHE_CHECK([for long long],nsnam_cv_int64_t_HAVE_LONG_LONG,[ AC_TRY_RUN([ main() { long long x; exit (sizeof(x) >= 8 ? 0 : 1); } ], nsnam_cv_int64_t_HAVE_LONG_LONG=yes,nsnam_cv_int64_t_HAVE_LONG_LONG=no,nsnam_cv_int64_t_HAVE_LONG_LONG=cross)]) if test x"$nsnam_cv_int64_t_HAVE_LONG_LONG" = x"yes" -a "x$INT64_T_ALTERNATIVE" = xnone; then INT64_T_ALTERNATIVE="long long" fi dnl dnl icky icky dnl dnl AC_CHECK_TYPE_UNQUOTED(TYPE, DEFAULT) AC_DEFUN(AC_CHECK_TYPE_UNQUOTED, [AC_REQUIRE([AC_HEADER_STDC])dnl AC_MSG_CHECKING(for $1) AC_CACHE_VAL(ac_cv_type_$1, [AC_EGREP_CPP(dnl changequote(<<,>>)dnl <<(^|[^a-zA-Z_0-9])$1[^a-zA-Z_0-9]>>dnl changequote([,]), [#include #if STDC_HEADERS #include #include #endif], ac_cv_type_$1=yes, ac_cv_type_$1=no)])dnl AC_MSG_RESULT($ac_cv_type_$1) if test $ac_cv_type_$1 = no; then AC_DEFINE_UNQUOTED([$1], [$2], [description]) fi ]) dnl dnl now set up int64_t dnl AC_CHECK_TYPE_UNQUOTED(int64_t,$INT64_T_ALTERNATIVE) dnl dnl and broadcast our discovery dnl AC_MSG_CHECKING([which kind of 64-bit int to use]) if test $ac_cv_type_int64_t = yes -o "$INT64_T_ALTERNATIVE" != none then if test "$INT64_T_ALTERNATIVE" = long -o "$ac_cv_func_strtoq" = yes -o "$ac_cv_func_strtoll" = yes then AC_DEFINE([HAVE_INT64], [1], ["do we have int64 type ?"]) if test $ac_cv_type_int64_t = yes then AC_MSG_RESULT([int64_t]) else AC_MSG_RESULT($INT64_T_ALTERNATIVE) fi else AC_MSG_RESULT([missing strto 64-bit-type]) fi else AC_MSG_RESULT(none) fi dnl dnl see tclcl or ns's config.h for other STRTOI64 and STRTOI64_FMTSTR dnl nam-1.15/conf/configure.in.jpegwc0000664000076400007660000000565706613464307015636 0ustar tomhnsnam# # Copyright (c) @ Regents of the University of California. # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: # 1. Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # 2. Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # 3. All advertising materials mentioning features or use of this software # must display the following acknowledgement: # This product includes software developed by the MASH Research # Group at the University of California Berkeley. # 4. Neither the name of the University nor of the Research Group may be # used to endorse or promote products derived from this software without # specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE # ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. # AC_ARG_WITH(jpeglib, --with-jpeglib[=path] specify a pathname for the independent jpeg library with progressive enhancements, jpeglib=$withval, jpeglib="no") JPEGLIB_H_PLACES_D="$jpeglib \ $jpeglib/include " JPEGLIB_LIB_PLACES_D="$jpeglib \ $jpeglib/lib \ $jpeglib/bin" JPEGLIB_H_PLACES="../jpeg \ ../jpeg/include \ /usr/local/include \ /usr/local/include/jpeg \ /usr/local/jpeg \ /usr/local/jpeg/include" JPEGLIB_LIB_PLACES="../jpeg \ ../jpeg/lib \ ../jpeg/bin \ /usr/local/lib \ /usr/local/bin \ /usr/local/lib/jpeg \ /usr/local/jpeg \ /usr/local/jpeg/lib \ /usr/local/jpeg/bin" if test "x$jpeglib" != "xno" ; then if test "x$jpeglib" = "x" ; then jpeglib="yes" reqd="" else reqd="yes" fi NS_BEGIN_PACKAGE(jpeglib) NS_CHECK_HEADER_PATH(jpeglib.h,$JPEGLIB_H_PLACES,$jpeglib,$JPEGLIB_H_PLACES_D,V_INCLUDE_JPEGLIB,jpeglib) NS_CHECK_LIB_PATH(jpeg,$JPEGLIB_LIB_PLACES,$jpeglib,$JPEGLIB_LIB_PLACES_D,V_LIB_JPEGLIB,jpeglib) NS_END_PACKAGE(jpeglib,$reqd) V_JPEGWC_OBJ_C="misc/jpegwc-tclapi.o misc/jpegwc.o" else V_JPEGWC_OBJ_C="" fi # V_DEFINE_JPEGWC="-D__JPEGWC__" #AC_SUBST(V_DEFINE_JPEGWC) #AC_SUBST(V_INCLUDE_JPEGWC) AC_SUBST(V_LIB_JPEGLIB) AC_SUBST(V_JPEGWC_OBJ_C) nam-1.15/conf/configure.in.mash0000664000076400007660000000470706566220716015303 0ustar tomhnsnam# # Copyright (c) @ Regents of the University of California. # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: # 1. Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # 2. Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # 3. All advertising materials mentioning features or use of this software # must display the following acknowledgement: # This product includes software developed by the MASH Research # Group at the University of California Berkeley. # 4. Neither the name of the University nor of the Research Group may be # used to endorse or promote products derived from this software without # specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE # ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. # # @(#) $Header: /cvsroot/nsnam/conf/configure.in.mash,v 1.10 1998/08/18 06:40:14 yatin Exp $ # if test "$enable_debug" = "yes" ; then V_CCOPT="$V_CCOPT -DMB_DEBUG -DMTRACE" fi AC_ARG_ENABLE(mashsrm, --enable-mashsrm Use the mash SRMv2 code instead of the standalone version, enable_mashsrm=$enableval, enable_mashsrm="no") MPLUG_C_RULE="rm -f \$@; \$(CC) -o \$@ -c \$(CFLAGS) \$(SHLIB_CFLAGS)" MPLUG_CC_RULE="rm -f \$@; \$(C++) -o \$@ -c \$(CFLAGS) \$(SHLIB_CFLAGS)" AC_SUBST(MPLUG_C_RULE) AC_SUBST(MPLUG_CC_RULE) # create the lib and lib/setup subdirectories if test ! -d lib ; then echo "creating ./lib" mkdir lib fi if test ! -d lib/setup ; then echo "creating ./lib/setup" mkdir lib/setup fi nam-1.15/conf/configure.in.misc0000664000076400007660000000471610546613627015306 0ustar tomhnsnamdnl misc setup for vic/vat/etc. autoconf scripts. dnl $Header: /cvsroot/nsnam/conf/configure.in.misc,v 1.15 2007/01/03 02:40:23 mweigle Exp $ (LBL) case "$target" in *-dec-*) dnl Use ac define so it gets used for later configure tests, dnl and use V_DEFINE so it ends up in the makefile. dnl all because I don't know how to do platform-specific dnl stuff in ns's autoconf.h. Sigh. V_DEFINE="$V_DEFINE -D_XOPEN_SOURCE_EXTENDED" AC_DEFINE(_XOPEN_SOURCE_EXTENDED) ;; sparc-sun-solaris*) if test $CC != gcc ; then V_DEFINE="$V_DEFINE -D__FUNCTION__=__func__ -features=extensions" fi V_DEFINE="$V_DEFINE -D__svr4__ -DSOLARIS_MIN_MAX" V_LIB="$V_LIB -ldl" ;; sparc-sun-sunos*) V_DEFINE="$V_DEFINE -DNEED_SUNOS_PROTOS" ;; *-sgi-irix5*) V_DEFINE="$V_DEFINE -DIRIX5 -D_BSD_SIGNALS" if test "$target_os" = irix5.3 ; then V_DEFINE="$V_DEFINE -DIRIX5_3" fi V_TARCMD="tar cfL" V_SHELL="SHELL = /bin/sh" if test $CC != gcc ; then V_DEFINE="$V_DEFINE -signed -g3" V_CXXOPT="$V_CXXOPT +p -float" CC="cc -xansi -D__STDC__ -Dinline=" CXX="CC +p -float -DSGI_COMPAT" fi V_RANLIB="ar ts" ;; *-sgi-irix6*) V_DEFINE="$V_DEFINE -DIRIX6 -D_BSD_SIGNALS" V_TARCMD="tar cfL" V_SHELL="SHELL = /bin/sh" if test $CC != gcc ; then V_DEFINE="$V_DEFINE -signed -g3" V_CXXOPT="$V_CXXOPT +p -float" CC="cc -xansi -D__STDC__ -Dinline=" CXX="CC +p -float -DSGI_COMPAT" fi V_RANLIB="ar ts" ;; *-*-bsdi1*) V_SHM="" V_TARCMD="tar cfL" ;; *-*-bsdi2.0*) V_SHM="" V_TARCMD="tar cfL" ;; *-*-bsdi2.1*) # bsdi2.1 added sys-v shared memory support but their implementation # is broken so we have to turn it off. If they ever fix libipc, # the following line should be deleted. V_SHM="" V_TARCMD="tar cfL" V_CCOPT="-O2 -m486" V_LIB="$V_LIB -lipc -ldl" ;; *-*-bsdi3*) V_SHM="" V_TARCMD="tar cfL" V_LIB="$V_LIB -lipc -ldl" V_OBJ="$V_OBJ misc/serial.o" ;; *-*-freebsd*) V_OBJ="$V_OBJ misc/serial.o" ;; *-*-netbsd*) V_TARCMD="tar -h -c -f" V_LIB="$V_LIB -L/usr/local/lib" ;; *-*-hpux*) AC_DEFINE(random,lrand48) AC_DEFINE(srandom,srand) V_CCOPT="-O" ;; *-*-aix3*) V_DEFINE="$V_DEFINE -DSIGARGS=int" if test "$V_LIB_AIXSHM" != "" ; then V_LIB="$V_LIB $V_LIB_AIXSHM" else V_SHM="" fi CXX="xlC -+" ;; *-*-aix4*) V_DEFINE="$V_DEFINE -DSIGARGS=int -D_AIX41" if test "$V_LIB_AIXSHM" != "" ; then V_LIB="$V_LIB $V_LIB_AIXSHM" else V_SHM="" fi CXX="g++" ;; *-*-linux*) V_BROKEN_OBJ= ;; powerpc-apple-darwin*) V_CCOPT="-fno-common -fPIC -pipe" ;; esac nam-1.15/conf/configure.in.nse0000664000076400007660000000447007624475650015142 0ustar tomhnsnamdnl autoconf rules for NS Emulator (NSE) dnl $Id: configure.in.nse,v 1.7 2003/02/18 18:30:00 buchheim Exp $ dnl dnl Look for ethernet.h dnl dnl Now look for supporting structures dnl AC_MSG_CHECKING([for struct ether_header]) AC_TRY_COMPILE([ #include #include ], [ int main() { struct ether_header etherHdr; return 1; } ], [ AC_DEFINE(HAVE_ETHER_HEADER_STRUCT) AC_MSG_RESULT(found) ], [ AC_MSG_RESULT(not found) ]) dnl dnl Look for ether_addr dnl AC_MSG_CHECKING([for struct ether_addr]) AC_TRY_COMPILE([ #include #include ], [ int main() { struct ether_addr etherAddr; return 0; } ], [ AC_DEFINE(HAVE_ETHER_ADDRESS_STRUCT) AC_MSG_RESULT(found) ], [ AC_MSG_RESULT(not found) ]) cross_compiling=no dnl dnl Look for addr2ascii function dnl AC_CHECK_FUNCS(addr2ascii) dnl dnl look for SIOCGIFHWADDR dnl AC_TRY_RUN( #include #include int main() { int i = SIOCGIFHWADDR; return 0; } , AC_DEFINE(HAVE_SIOCGIFHWADDR), , echo 1 ) tcphdr=no pcap=no dnl dnl Checking for Linux tcphdr dnl AC_MSG_CHECKING([for Linux compliant tcphdr]) AC_TRY_COMPILE([ #include #include ], [ int main() { struct tcphdr *tcp; tcp->source= 1; return 0; } ], [ V_DEFINE="$V_DEFINE -DLINUX_TCP_HEADER" AC_MSG_RESULT(found) tcphdr=yes ], [ AC_MSG_RESULT(not found) ]) dnl dnl Checking for BSD tcphdr dnl AC_MSG_CHECKING([for BSD compliant tcphdr]) AC_TRY_COMPILE([ #include #include ], [ int main() { struct tcphdr *tcp; tcp->th_sport= 1; return 0; } ], [ AC_MSG_RESULT(found) tcphdr=yes ], [ AC_MSG_RESULT(not found) ]) dnl dnl Checking for socklen_t (missing on Darwin/Mac OS X) dnl AC_CACHE_CHECK([for socklen_t], ac_cv_type_socklen_t, [ AC_TRY_COMPILE( [#include #include ], [socklen_t len = 42; return 0;], ac_cv_type_socklen_t=yes, ac_cv_type_socklen_t=no) ]) if test x"$ac_cv_type_socklen_t" = xyes; then AC_DEFINE(HAVE_SOCKLEN_T) fi dnl dnl Check for pcap library dnl AC_CHECK_LIB(pcap,main,[V_LIB="$V_LIB -lpcap" pcap=yes]) V_INCLUDES="$V_INCLUDES -I/usr/include/pcap" dnl dnl Testing to make nse dnl AC_MSG_CHECKING([to make nse]) if test $tcphdr = yes && test $pcap = yes; then build_nse="nse" AC_MSG_RESULT(yes) AC_SUBST(build_nse) else AC_MSG_RESULT(no) fi nam-1.15/conf/configure.in.otcl0000644000076400007660000000206011655017162015272 0ustar tomhnsnamdnl autoconf rules to find otcl dnl $Header: /cvsroot/nsnam/conf/configure.in.otcl,v 1.25 2011/10/31 04:33:25 tom_henderson Exp $ (LBL) AC_ARG_WITH(otcl, --with-otcl=path specify a pathname for otcl, d=$withval, d="") OTCL_VERS=1.14 OTCL_ALT_VERS=1.0 OTCL_H_PLACES_D="$d \ $d/include" OTCL_H_PLACES="../otcl \ /usr/src/local/otcl \ ../otcl-$OTCL_VERS \ /import/otcl/include \ /usr/src/local/otcl-$OTCL_VERS \ /usr/src/local/otcl-$OTCL_ALT_VERS \ $prefix/include \ /usr/local/include \ /usr/contrib/include \ /usr/include" OTCL_LIB_PLACES_D="$d \ $d/lib \ " OTCL_LIB_PLACES="../otcl \ ../otcl-$OTCL_VERS \ ../otcl-$OTCL_ALT_VERS \ $prefix/lib \ $x_libraries \ /usr/contrib/lib \ /usr/local/lib \ /usr/lib \ /usr/src/local/otcl \ /usr/src/local/otcl-$OTCL_VERS \ /usr/src/local/otcl-$OTCL_ALT_VERS \ " NS_BEGIN_PACKAGE(otcl) NS_CHECK_HEADER_PATH(otcl.h,$OTCL_H_PLACES,$d,$OTCL_H_PLACES_D,V_INCLUDE_OTCL,otcl) NS_CHECK_LIB_PATH(otcl$OTCL_VERS,$OTCL_LIB_PLACES,$d,$OTCL_LIB_PLACES_D,V_LIB_OTCL,otcl) NS_END_PACKAGE(otcl,yes) nam-1.15/conf/configure.in.perl0000664000076400007660000000232406651762140015303 0ustar tomhnsnam dnl dnl Find perl and make sure it's perl5 dnl ' dnl AC_ARG_WITH(perl, --with-perl=path specify a pathname for perl, d=$withval, d="") # Next line is the minimum version of perl required. # 5.000 and 5.001 are generally scorned because of age and bugs. PERL_VERSION=${PERL_VERSION:-5.002} PERL_PLACES=`echo $PATH | sed 's/:/ /g'` PERL_OPTIONAL=${PERL_OPTIONAL:-false} dnl dnl CHECK_PERL_VERSION(PATHNAME,VERSION) dnl AC_DEFUN(CHECK_PERL_VERSION, [ echo $[$1] -e "require $[$2]" 1>&AC_FD_CC if $[$1] -e "require $[$2]" 2>&AC_FD_CC then : good version else : non-good version => zero pathname AC_MSG_RESULT([ not version $[$2]]) [$1]='' fi ]) NS_CHECK_ANY_PATH(perl,$PERL_PLACES,$d,$d,PERL,no) if test "x$PERL" != x then PERL=$PERL/perl CHECK_PERL_VERSION(PERL,PERL_VERSION) fi dnl fall back on ``perl5'' if test "x$PERL" = "x" then NS_CHECK_ANY_PATH(perl5,$PERL_PLACES,$d,$d,PERL,no) if test "x$PERL" != "x" then PERL=$PERL/perl5 CHECK_PERL_VERSION(PERL,PERL_VERSION) fi fi if test "x$PERL" = x then if $PERL_OPTIONAL then AC_MSG_RESULT([ perl version $PERL_VERSION not found]) else AC_MSG_ERROR(Cannot find Perl 5.) fi fi AC_SUBST(PERL) nam-1.15/conf/configure.in.psvp0000664000076400007660000000136306744670134015337 0ustar tomhnsnam# configuration for Parallal Software Video Processing Support. # Disabled by default PSVP_DEFINES="" PSVP_OBJS="" PSVP_INCLUDES="" PSVP_LIBS="" DALI_SRC_LOCATION="../dali" AC_ARG_ENABLE(psvp, --enable-psvp=yes enable parallel software video processing package, psvp_flag=$enableval, psvp_flag="no") AC_ARG_WITH(dali, --with-dali=path specify location of dali source tree, , withval="") if test "$with_dali" != "" ; then DALI_SRC_LOCATION="$with_dali"; fi if test "$psvp_flag" != "no" ; then PSVP_DEFINES="-D__PSVP_ENABLED__" PSVP_OBJS="\$(PSVP_OBJ)" PSVP_INCLUDES="-I${DALI_SRC_LOCATION}/include" PSVP_LIBS="\$(PSVP_LIB)" fi AC_SUBST(PSVP_DEFINES) AC_SUBST(PSVP_OBJS) AC_SUBST(PSVP_INCLUDES) AC_SUBST(PSVP_LIBS) AC_SUBST(DALI_SRC_LOCATION) nam-1.15/conf/configure.in.srm0000664000076400007660000000657006722771164015156 0ustar tomhnsnam# # Copyright (c) @ Regents of the University of California. # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: # 1. Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # 2. Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # 3. All advertising materials mentioning features or use of this software # must display the following acknowledgement: # This product includes software developed by the MASH Research # Group at the University of California Berkeley. # 4. Neither the name of the University nor of the Research Group may be # used to endorse or promote products derived from this software without # specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE # ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. # # @(#) $Header: /cvsroot/nsnam/conf/configure.in.srm,v 1.6 1999/05/26 13:09:08 suchi Exp $ # AC_ARG_WITH(srm, --with-srm[=path] specify a pathname for the standalone SRM library, srm=$withval, srm="") if test "x$enable_release" = "xyes" ; then # always enable SRM for the release version if test "x$srm" = "x" ; then srm="yes" fi fi SRM_H_PLACES_D="$srm \ $srm/include \ $srm/srmv2" SRM_LIB_PLACES_D="$srm \ $srm/lib \ $srm/bin" SRM_H_PLACES="../srm2.0 \ ../srm2.0/include \ ../srm2.0/srmv2 \ /usr/local/include \ /usr/local/include/srm2.0 \ /usr/local/srm2.0 \ /usr/local/srm2.0/include \ /usr/local/srm2.0/srmv2" SRM_LIB_PLACES="../srm2.0 \ ../srm2.0/lib \ ../srm2.0/bin \ /usr/local/lib \ /usr/local/bin \ /usr/local/lib/srm2.0 \ /usr/local/srm2.0 \ /usr/local/srm2.0/lib \ /usr/local/srm2.0/bin" if test "$enable_mashsrm" = "yes" ; then V_MASH_SRMV2_OBJ="\$(SRMv2_OBJ)" V_INCLUDE_SRM="-I./srmv2" V_LIB_SRM="" V_INCLUDES="$V_INCLUDE_SRM $V_INCLUDES" echo "Compiling in mash SRMv2; not checking for standalone SRM" else if test "x$srm" != "xno" ; then if test "x$srm" = "x" ; then srm="yes" reqd="" else reqd="yes" fi NS_BEGIN_PACKAGE(srm) NS_CHECK_HEADER_PATH(srmv2-api.h,$SRM_H_PLACES,$srm,$SRM_H_PLACES_D,V_INCLUDE_SRM,srm) NS_CHECK_LIB_PATH(srm,$SRM_LIB_PLACES,$srm,$SRM_LIB_PLACES_D,V_LIB_SRM,srm) NS_END_PACKAGE(srm,$reqd) if test "x$V_LIB_SRM" != "x" ; then V_MBV2_OBJ_CC="\$(MBV2_OBJ_CC)" V_MBV2_OBJ_TK_CC="\$(MBV2_OBJ_TK_CC)" fi fi V_MASH_SRMV2_OBJ="" fi AC_SUBST(V_MASH_SRMV2_OBJ) AC_SUBST(V_INCLUDE_SRM) AC_SUBST(V_LIB_SRM) AC_SUBST(V_MBV2_OBJ_CC) AC_SUBST(V_MBV2_OBJ_TK_CC) nam-1.15/conf/configure.in.stl0000664000076400007660000000523407710350402015135 0ustar tomhnsnamdnl dnl stl is a pain: dnl someone decided to use namespaces dnl dnl MIPSpro Compiler: Version 7.2.1 on Irix 6.5 dnl wants "use namespace stl" dnl As of 25-Jul-03 we NO LONGER support that. dnl dnl The standard seems to be "use namespace std" dnl (supposedly gcc 3.0 works this way). dnl dnl As of gcc 3.2, using namespace std is REQUIRED, dnl and not just for stl, but for streams and other standard C++ stuff. dnl dnl Sigh. dnl dnl AC_LANG_SAVE AC_LANG_CPLUSPLUS cpp_namespace=no stl_namespace=no if test x$cpp_namespace = xno then AC_MSG_CHECKING(if C++ libraries work without any namespace) AC_TRY_COMPILE( #include , cout.fail(); , AC_MSG_RESULT(yes) cpp_namespace="none" , AC_MSG_RESULT(no) ) fi dnl if test x$cpp_namespace = xno then AC_MSG_CHECKING(if C++ libraries work with namespace std) AC_TRY_COMPILE( #include using namespace std; , cout.fail(); , AC_MSG_RESULT(yes) cpp_namespace=std , AC_MSG_RESULT(no) ) fi dnl dnl dnl do same check for stl dnl if test x$stl_namespace = xno then AC_MSG_CHECKING(if STL works without any namespace) AC_TRY_COMPILE( #include , list test; , AC_MSG_RESULT(yes) stl_namespace="none" , AC_MSG_RESULT(no) ) fi dnl if test x$stl_namespace = xno then AC_MSG_CHECKING(if STL works with namespace std) AC_TRY_COMPILE( #include using namespace std; , list test; , AC_MSG_RESULT(yes) stl_namespace=std , AC_MSG_RESULT(no) ) fi dnl if test x$stl_namespace = xno then AC_MSG_CHECKING(if STL works with namespace stl) AC_TRY_COMPILE( #include using namespace stl; , list test; , AC_MSG_RESULT(yes) stl_namespace=stl , AC_MSG_RESULT(no) ) fi AC_LANG_RESTORE AC_MSG_CHECKING(should use STL) AC_ARG_ENABLE(stl, [--enable-stl include code that needs the Standard Template Library],[ enable_stl=$enableval AC_MSG_RESULT([user specified $enable_stl]) ],[ if test x$stl_namespace = xno then enable_stl=no AC_MSG_RESULT([no, couldn't find STL]) else if test x$stl_namespace != x$cpp_namespace then dnl Give up, too hard. dnl MIPS people can upgrade their compiler. enable_stl=no AC_MSG_RESULT([std/STL namespaces are too hard for your system, abandoning STL]) else enable_stl=yes AC_MSG_RESULT([yes]) fi fi ]) if test x$enable_stl = xno then V_STLOBJ="" V_NS_TCL_LIB_STL="" else V_STLOBJ='$(OBJ_STL)' V_NS_TCL_LIB_STL='$(NS_TCL_LIB_STL)' AC_DEFINE(HAVE_STL) fi if test x$cpp_namespace != xnone then AC_DEFINE(CPP_REQUIRES_NAMESPACE) fi CPP_NAMESPACE=$cpp_namespace AC_SUBST(CPP_NAMESPACE) dnl this also seems to require that the makefile include dnl -DCPP_NAMESPACE=@CPP_NAMESPACE@ in the compilation flags :-( nam-1.15/conf/configure.in.tail0000644000076400007660000001037011336535465015274 0ustar tomhnsnamdnl standard final commands for vic/vat/etc. autoconf scripts dnl $Header: /cvsroot/nsnam/conf/configure.in.tail,v 1.28 2010/02/16 07:10:47 tom_henderson Exp $ (LBL) if test "$enable_static" = "yes" ; then echo Explicitly enabling static compilation V_STATIC="-static" elif test "$enable_static" = "no" ; then echo Explicitly disabling static compilation V_STATIC="" else echo No explicit static compilation flag\; setting V_STATIC to \"$V_STATIC\" fi AC_SUBST(V_STATIC) # # tcl7.x needs a dynamic loading library (unless built with the # -disable-load flag). Try to find the appropriate one. if test ! -z "$V_NEED_DL" ; then V_LIB_DL="" case "$target" in *-*-solaris*) V_LIB_DL="dl" ;; sparc-sun-sunos*) V_LIB_DL="dl" ;; *-*-bsdi2.1) V_LIB_DL="dl" ;; *-*-bsdi3.0) V_LIB_DL="dl" ;; *-*-hpux*) V_LIB_DL="dld" ;; *-*-linux*) AC_CHECK_LIB(dl, dlopen, V_LIB_DL="dl", V_LIB_DL="dld") ;; *-*-cygwin*) V_LIB_DL="dl" ;; esac if test ! -z "$V_LIB_DL" ; then case "$target" in *-*-linux*) ;; *) AC_CHECK_LIB($V_LIB_DL, main, , V_LIB_DL="", $V_STATIC) ;; esac fi if test ! -z "$V_LIB_DL" ; then case "$target" in *-*-bsdi*) ;; *-*-linux*) if test -z "$V_STATIC" ; then V_LIB="$V_LIB -l$V_LIB_DL" fi ;; *) V_LIB="$V_LIB -l$V_LIB_DL" ;; esac else echo "no dynamic load lib" fi fi # Recheck the system to see if we need to add any system-dependent # libraries AC_MSG_CHECKING([system version (for system-dependent libraries)]) if test -f /usr/lib/NextStep/software_version; then system=NEXTSTEP-`awk '/3/,/3/' /usr/lib/NextStep/software_version` else system=`uname -s`-`uname -r` if test "$?" -ne 0 ; then AC_MSG_RESULT([unknown (can't find uname command)]) system=unknown else # Special check for weird MP-RAS system (uname returns weird # results, and the version is kept in special file). if test -r /etc/.relid -a "X`uname -n`" = "X`uname -s`" ; then system=MP-RAS-`awk '{print $3}' /etc/.relid` fi if test "`uname -s`" = "AIX" ; then system=AIX-`uname -v`.`uname -r` fi AC_MSG_RESULT($system) fi fi dnl Assumes that OS X requires CoreFoundation and assumes that it is present case $system in Darwin-7.*|Darwin-8.*) V_LIB="$V_LIB -framework CoreFoundation" esac dnl This check is not very general and vestigal (at least from an ns-point of view). Can it be deleted? -johnh, 13-Oct-99 if test "$host_cpu" = alpha ; then V_DEFINE="$V_DEFINE -DINT_64=u_long" fi # various include hacks dirs="/usr/src/local/include-fixes \ /import/mcast/include" for dir in $dirs; do if test -d $dir ; then V_INCLUDE="$V_INCLUDE -I$dir" fi done # always use -g with gcc during development (even with -O) # force noline so that we can debug all functions if test "$CC" = gcc && test -f .devel ; then V_CCOPT="$V_CCOPT -g -Wall -Werror" V_DEFINE="$V_DEFINE -fsigned-char -fno-inline" fi V_DEFINE="$V_DEFINE $V_SHM" V_TAR_TARGET=$target_os AC_SUBST(V_TAR_TARGET) absolutize_list() { tmp="" for p do case $p in -L* | -I*) tmp="$tmp `absolutize $p`";; *) tmp="$tmp $p";; esac done echo $tmp } # Replace relative path with absolute path V_LIB_TCLCL=`absolutize_list $V_LIB_TCLCL` V_LIB_OTCL=`absolutize_list $V_LIB_OTCL` V_LIB_TCL=`absolutize_list $V_LIB_TCL` V_LIB_TK=`absolutize_list $V_LIB_TK` V_LIBS=`absolutize_list $V_LIBS` V_INCLUDES=`absolutize_list $V_INCLUDES` # Since SMASH and MASH need different sets of libraries, we # use each lib definition seperately instead of using V_LIBS. AC_SUBST(V_LIB_TCLCL) AC_SUBST(V_LIB_OTCL) AC_SUBST(V_LIB_TCL) AC_SUBST(V_LIB_TK) AC_SUBST(V_ALL) AC_SUBST(V_CCOPT) AC_SUBST(V_TAR_EXTRA) AC_SUBST(V_LIB) AC_SUBST(V_DEFINE) AC_SUBST(V_SIGRET) AC_SUBST(V_SHELL) AC_SUBST(V_TARCMD) AC_SUBST(V_INCLUDE) AC_SUBST(V_OBJ) AC_SUBST(V_BROKEN_OBJ) AC_SUBST(V_OBJ_CRYPT) AC_SUBST(V_RANLIB) AC_SUBST(V_AR) AC_SUBST(V_STLOBJ) AC_SUBST(V_NS_TCL_LIB_STL) AC_SUBST(V_LSSCRIPT) AC_PROG_INSTALL dnl backwards compability---if nothing else, do Makefile define([AcOutputFiles],ifdef([AcOutputFiles],AcOutputFiles,Makefile)) AC_OUTPUT(AcOutputFiles) if test ! -d gen ; then echo "creating ./gen" mkdir gen fi if test ! -d bin ; then echo "creating ./bin" mkdir bin fi if test -f .devel -o "$enable_devel" = "yes" ; then make depend fi nam-1.15/conf/configure.in.tcl0000644000076400007660000002072611316747632015132 0ustar tomhnsnamdnl autoconf rules to find tcl dnl $Header: /cvsroot/nsnam/conf/configure.in.tcl,v 1.52 2009/12/30 22:05:31 tom_henderson Exp $ (LBL) AC_ARG_WITH(tcl, --with-tcl=path specify a pathname for tcl, d=$withval, d="") dnl cant easily escape brackets in M4/autoconf-- must use quadigraphs below AC_ARG_WITH(tcl-ver, --with-tcl-ver=path specify the version of tcl/tk, TCL_VERS=$withval, TCL_VERS=`echo "puts @<:@info patchlevel@:>@" | tclsh`) dnl Truncate anything beyond and including the second decimal point TCL_HI_VERS=`echo $TCL_VERS | sed 's/^\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\)/\1.\2/'` TCL_MAJOR_VERS=`echo $TCL_VERS | sed 's/^\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\)/\1/'` TCL_ALT_VERS=8.5 dnl work with one version in the past TCL_OLD_VERS=8.4 TCL_OLD_ALT_VERS=`echo $TCL_OLD_VERS | sed 's/\.//'` dnl These paths are pretty hellish and should probably be pruned. dnl Also, 64-bit support is just hacked on for the common cases. TCL_TCL_PLACES_D="$d \ $d/lib64/tcl$TCL_HI_VERS \ $d/lib64/tcl$TCL_VERS \ $d/lib64/tcl$TCL_ALT_VERS \ $d/lib64/tcl \ $d/lib/tcl$TCL_HI_VERS \ $d/lib/tcl$TCL_VERS \ $d/lib/tcl$TCL_ALT_VERS \ $d/lib/tcl \ $d/../lib/tcl$TCL_HI_VERS \ $d/../lib/tcl$TCL_VERS \ $d/../lib/tcl$TCL_ALT_VERS \ $d/lib/tcl$TCL_OLD_VERS \ $d/lib/tcl$TCL_OLD_ALT_VERS \ $d/../lib/tcl$TCL_OLD_VERS \ $d/../lib/tcl$TCL_OLD_ALT_VERS \ /usr/local/lib/tcl$TCL_HI_VERS \ /usr/local/lib/tcl$TCL_VERS \ /usr/local/lib/tcl$TCL_ALT_VERS \ $d/lib64 \ $d/lib \ $d/library \ " TCL_TCL_PLACES="../lib/tcl$TCL_HI_VERS \ ../lib/tcl$TCL_ALT_VERS \ ../lib/tcl$TCL_VERS \ ../lib/tcl \ ../tcl$TCL_HI_VERS/library \ ../tcl$TCL_VERS/library \ ../tcl$TCL_ALT_VERS/library \ /usr/lib64/tcl$TCL_VERS \ /usr/lib64/tcl$TCL_HI_VERS \ /usr/lib64/tcl$TCL_ALT_VERS \ /usr/lib64/tcl \ /usr/lib/tcl$TCL_VERS \ /usr/lib/tcl$TCL_HI_VERS \ /usr/lib/tcl$TCL_ALT_VERS \ /usr/lib/tcl \ /usr/share/tcl$TCL_VERS \ /usr/share/tcl$TCL_HI_VERS \ /usr/share/tcl$TCL_ALT_VERS \ /usr/local/src/tcl$TCL_VERS \ /usr/local/src/tcl$TCL_HI_VERS \ /usr/local/src/tcl$TCL_ALT_VERS \ /usr/share/tcl \ /lib/tcl$TCL_VERS \ /lib/tcl$TCL_HI_VERS \ /lib/tcl$TCL_ALT_VERS \ /usr/lib/tcl$TCL_OLD_VERS \ /usr/lib/tcl$TCL_OLD_ALT_VERS \ /lib/tcl$TCL_OLD_VERS \ /lib/tcl$TCL_OLD_ALT_VERS \ /usr/lib \ /usr/src/local/tcl$TCL_VERS/library \ /usr/src/local/tcl$TCL_HI_VERS/library \ /usr/src/local/tcl$TCL_ALT_VERS/library \ /usr/share/tcltk/tcl$TCL_VERS \ /usr/share/tcltk/tcl$TCL_HI_VERS \ /usr/share/tcltk/tcl$TCL_ALT_VERS \ /usr/local/lib/tcl$TCL_VERS \ /usr/local/lib/tcl$TCL_HI_VERS \ /usr/local/lib/tcl$TCL_ALT_VERS \ /usr/local/include/tcl$TCL_VERS \ /usr/local/include/tcl$TCL_HI_VERS \ /usr/local/include/tcl$TCL_ALT_VERS \ ../tcl$TCL_OLD_VERS/library \ ../tcl$TCL_OLD_ALT_VERS/library \ /usr/src/local/tcl$TCL_OLD_VERS/library \ /usr/src/local/tcl$TCL_OLD_ALT_VERS/library \ /usr/local/lib/tcl$TCL_OLD_VERS \ /usr/local/lib/tcl$TCL_OLD_ALT_VERS \ /usr/local/include/tcl$TCL_OLD_VERS \ /usr/local/include/tcl$TCL_OLD_ALT_VERS \ /usr/local/include \ $prefix/include \ $prefix/lib/tcl \ $x_includes/tk \ $x_includes \ /usr/contrib/include \ /usr/include" TCL_H_PLACES_D="$d/generic \ $d/unix \ $d/include/tcl$TCL_HI_VERS \ $d/include/tcl$TCL_VERS \ $d/include/tcl$TCL_ALT_VERS \ $d/include \ /usr/local/include \ " TCL_H_PLACES=" \ ../include \ ../tcl$TCL_VERS/unix \ ../tcl$TCL_ALT_VERS/unix \ ../tcl$TCL_HI_VERS/generic \ ../tcl$TCL_VERS/generic \ ../tcl$TCL_ALT_VERS/generic \ /usr/src/local/tcl$TCL_VERS/generic \ /usr/src/local/tcl$TCL_HI_VERS/generic \ /usr/src/local/tcl$TCL_ALT_VERS/generic \ /usr/local/src/tcl$TCL_VERS/generic \ /usr/local/src/tcl$TCL_HI_VERS/generic \ /usr/local/src/tcl$TCL_ALT_VERS/generic \ /usr/src/local/tcl$TCL_VERS/unix \ /usr/src/local/tcl$TCL_HI_VERS/unix \ /usr/src/local/tcl$TCL_ALT_VERS/unix \ /usr/contrib/include \ /usr/local/lib/tcl$TCL_VERS \ /usr/local/lib/tcl$TCL_HI_VERS \ /usr/local/lib/tcl$TCL_ALT_VERS \ /usr/local/include/tcl$TCL_VERS \ /usr/local/include/tcl$TCL_HI_VERS \ /usr/local/include/tcl$TCL_ALT_VERS \ /usr/local/include \ /import/tcl/include/tcl$TCL_VERS \ /import/tcl/include/tcl$TCL_HI_VERS \ /import/tcl/include/tcl$TCL_ALT_VERS \ ../tcl$TCL_OLD_VERS/generic \ ../tcl$TCL_OLD_ALT_VERS/generic \ /usr/src/local/tcl$TCL_OLD_VERS/generic \ /usr/src/local/tcl$TCL_OLD_ALT_VERS/generic \ ../tcl$TCL_OLD_VERS/unix \ ../tcl$TCL_OLD_ALT_VERS/unix \ /usr/src/local/tcl$TCL_OLD_VERS/unix \ /usr/src/local/tcl$TCL_OLD_ALT_VERS/unix \ /usr/local/lib/tcl$TCL_OLD_VERS \ /usr/local/lib/tcl$TCL_OLD_ALT_VERS \ /usr/local/include/tcl$TCL_OLD_VERS \ /usr/local/include/tcl$TCL_OLD_ALT_VERS \ /import/tcl/include/tcl$TCL_OLD_VERS \ /import/tcl/include/tcl$TCL_OLD_ALT_VERS \ $prefix/include \ $x_includes/tk \ $x_includes \ /usr/include \ /usr/include/tcl$TCL_VERS/tcl-private/generic \ /usr/include/tcl$TCL_HI_VERS/tcl-private/generic \ /usr/include/tcl$TCL_ALT_VERS/tcl-private/generic \ /usr/include/tcl-private/generic \ /usr/include/tcl$TCL_VERS \ /usr/include/tcl$TCL_HI_VERS \ /usr/include/tcl$TCL_ALT_VERS \ /usr/include/tcl" dnl /usr/include/tcl is for Debian Linux dnl /usr/include/tcl-private/generic is for FC 4 TCL_LIB_PLACES_D="$d \ $d/lib \ $d/unix" TCL_LIB_PLACES=" \ ../lib \ ../tcl$TCL_VERS/unix \ ../tcl$TCL_HI_VERS/unix \ ../tcl$TCL_ALT_VERS/unix \ /usr/src/local/tcl$TCL_VERS/unix \ /usr/src/local/tcl$TCL_HI_VERS/unix \ /usr/src/local/tcl$TCL_ALT_VERS/unix \ /usr/local/src/tcl$TCL_VERS/unix \ /usr/local/src/tcl$TCL_HI_VERS/unix \ /usr/local/src/tcl$TCL_ALT_VERS/unix \ /usr/contrib/lib \ /usr/local/lib/tcl$TCL_VERS \ /usr/local/lib/tcl$TCL_HI_VERS \ /usr/local/lib/tcl$TCL_ALT_VERS \ /usr/lib64/tcl$TCL_VERS \ /usr/lib64/tcl$TCL_HI_VERS \ /usr/lib64/tcl$TCL_ALT_VERS \ /usr/lib/tcl$TCL_VERS \ /usr/lib/tcl$TCL_HI_VERS \ /usr/lib/tcl$TCL_ALT_VERS \ ../tcl$TCL_OLD_VERS/unix \ ../tcl$TCL_OLD_ALT_VERS/unix \ /usr/src/local/tcl$TCL_OLD_VERS/unix \ /usr/src/local/tcl$TCL_OLD_ALT_VERS/unix \ /usr/local/lib/tcl$TCL_OLD_VERS \ /usr/local/lib/tcl$TCL_OLD_ALT_VERS \ /usr/lib/tcl$TCL_OLD_VERS \ /usr/lib/tcl$TCL_OLD_ALT_VERS \ /usr/local/lib \ $prefix/lib \ $x_libs/tk \ $x_libs \ /usr/lib64 \ /usr/lib \ " dnl Decide which set of .tcl library files to use NS_BEGIN_PACKAGE(tcl) NS_CHECK_HEADER_PATH(tcl.h,$TCL_H_PLACES,$d,$TCL_H_PLACES_D,V_INCLUDE_TCL,tcl) NS_CHECK_HEADER_PATH(tclInt.h,$TCL_H_PLACES,$d,$TCL_H_PLACES_D,V_INCLUDE_TCL,tcl) NS_CHECK_LIB_PATH(tcl$TCL_HI_VERS,$TCL_LIB_PLACES,$d,$TCL_LIB_PLACES_D,V_LIB_TCL,tcl) NS_CHECK_ANY_PATH(init.tcl,$TCL_TCL_PLACES,$d,$TCL_TCL_PLACES_D,V_LIBRARY_TCL,tcl) dnl find the pesky http library tcl_http_library_dir=/dev/null tcl_http_places=" \ $V_LIBRARY_TCL \ $V_LIBRARY_TCL/http \ $V_LIBRARY_TCL/http2.5 \ $V_LIBRARY_TCL/http2.4 \ $V_LIBRARY_TCL/http2.3 \ $V_LIBRARY_TCL/http2.1 \ $V_LIBRARY_TCL/http2.0 \ $V_LIBRARY_TCL/http1.0 \ " NS_CHECK_ANY_PATH(http.tcl,$tcl_http_places,"","",tcl_http_library_dir,tcl) AC_MSG_CHECKING(Tcl http.tcl library) if test -f $tcl_http_library_dir/http.tcl then AC_MSG_RESULT(yes) else AC_MSG_ERROR(Couldn't find http.tcl in $tcl_http_places) fi V_TCL_LIBRARY_FILES="\$(TCL_BASE_LIBRARY_FILES) $tcl_http_library_dir/http.tcl" AC_SUBST(V_TCL_LIBRARY_FILES) # # check for tclsh # oldpath=$PATH # $d/unix works if $d is the 8.0 distribution # $d/bin is for the ns-allinone distribution (kind of hacky, isn't it?) PATH=../bin:../tcl$TCL_HI_VERS/unix:../tcl$TCL_VERS/unix:$d/unix:$d/bin:$PATH AC_PATH_PROGS(V_TCLSH,tclsh$TCL_VERS tclsh$TCL_HI_VERS tclsh tclsh$TCL_OLD_VERS,no) if test x"$V_TCLSH" = xno then # out of luck NS_PACKAGE_NOT_COMPLETE(tcl) fi # absolutize it V_TCLSH=`absolutize $V_TCLSH` PATH=$oldpath NS_END_PACKAGE(tcl,yes) AC_SUBST(V_LIBRARY_TCL) nam-1.15/conf/configure.in.TclCL0000644000076400007660000000430011336442256015273 0ustar tomhnsnamdnl autoconf rules to find tclcl dnl $Header: /cvsroot/nsnam/conf/configure.in.TclCL,v 1.31 2010/02/16 06:07:43 tom_henderson Exp $ (LBL) dnl This next line is to fix old invocations. AC_ARG_WITH(Tcl, --with-Tcl: old command now replaced by --with-tclcl, AC_MSG_ERROR([The --with-Tcl option has been replaced with --with-tclcl. Please insure you have an up-to-date copy of TclCL and re-run your configuration.])) AC_ARG_WITH(tclcl, --with-tclcl=path specify a pathname for TclCL (the ex-libTcl), d=$withval, d="") TCLCL_VERS=1.20 TCLCL_ALT_VERS=1.0 TCLCL_H_PLACES="\ ../tclcl-$TCLCL_VERS \ ../tclcl-$TCLCL_ALT_VERS \ ../tclcl \ ../TclCL \ ../Tcl-$TCLCL_VERS \ ../Tcl-$TCLCL_ALT_VERS \ ../Tcl \ /usr/src/local/Tcl \ /usr/src/local/Tcl-1.0 \ /import/Tcl/include \ /usr/local/include \ /usr/contrib/include \ /usr/include" TCLCL_H_PLACES_D="$d \ $d/include" TCLCL_LIB_PLACES="\ ../tclcl-$TCLCL_VERS \ ../tclcl-$TCLCL_ALT_VERS \ ../tclcl \ ../TclCL \ ../Tcl-$TCLCL_VERS \ ../Tcl-$TCLCL_ALT_VERS \ ../Tcl \ $x_libraries \ /usr/contrib/lib \ /usr/local/lib \ /usr/lib \ /usr/src/local/Tcl \ /usr/src/local/Tcl-1.0" TCLCL_LIB_PLACES_D="\ $d \ $d/lib \ $d/bin" TCLCL_PROG_PLACES="\ ../tclcl-$TCLCL_VERS \ ../tclcl-$TCLCL_ALT_VERS \ ../tclcl \ ../TclCL \ ../Tcl-$TCLCL_VERS \ ../Tcl-$TCLCL_ALT_VERS \ ../Tcl \ $prefix/bin \ $x_libraries \ /usr/contrib/bin \ /usr/local/bin \ /usr/bin \ /usr/src/local/Tcl \ /usr/src/local/Tcl-1.0 \ " TCLCL_PROG_PLACES_D=" $d \ $d/bin" NS_BEGIN_PACKAGE(tclcl) NS_CHECK_HEADER_PATH(tclcl.h,$TCLCL_H_PLACES,$d,$TCLCL_H_PLACES_D,V_INCLUDE_TCLCL,tclcl) NS_CHECK_LIB_PATH(tclcl$tclcl_VERS,$TCLCL_LIB_PLACES,$d,$TCLCL_LIB_PLACES_D,V_LIB_TCLCL,tclcl) NS_CHECK_ANY_PATH(tcl2c++,$TCLCL_PROG_PLACES,$d,$TCLCL_PROG_PLACES_D,V_TCL2CPP_DIR,tclcl) V_TCL2CPP=$V_TCL2CPP_DIR/tcl2c++ AC_SUBST(V_TCL2CPP) NS_END_PACKAGE(tclcl,yes) nam-1.15/conf/configure.in.tcldebug0000664000076400007660000000316507153764660016145 0ustar tomhnsnamdnl autoconf rules to find tcldebug dnl $Header: /cvsroot/nsnam/conf/configure.in.tcldebug,v 1.9 2000/09/01 17:38:56 johnh Exp $ (USC/ISI) AC_ARG_WITH(tcldebug, --with-tcldebug=path specify a pathname for the tcl debugger (path=no disables the debugger), d=$withval, d="") #xxx: Don't know anything about 1.8 # 2.0 = tcl 8.3 # 1.9 = tcl 7.5, 7.6, 8.0 TCLDEBUG_VERS="2.0 1.9 1.8 1.7" pwd_vers="" local_vers="" for vers in $TCLDEBUG_VERS; do pwd_vers="$pwd_vers $PWD/../tcl-debug-$vers" local_vers="$local_vers /usr/src/local/otcl-debug-$vers" done TCLDEBUG_PATH="\ $PWD/../tcl-debug \ $pwd_vers /usr/contrib/lib \ /usr/local/lib \ /usr/lib \ /usr/src/local/tcl-debug \ $local_vers \ " TCLDEBUG_PATH_D="$d \ $d/lib \ $d/../lib \ " NS_BEGIN_PACKAGE(tcldebug) NS_CHECK_LIB_PATH(tcldbg,$TCLDEBUG_PATH,$d,$TCLDEBUG_PATH_D,V_LIB_TCLDEBUG,tcldebug) #if $NS_PACKAGE_tcldebug_COMPLETE; then # look for debugger entry point function #tmpLIBS=$LIBS #LIBS="$V_LIB_TCL $V_LIB_TCLDEBUG" # the following two may be needed for linking during tcldbg CHECK_LIB #AC_CHECK_LIB(m, main) #AC_CHECK_LIB(dl, dlopen) #notfound=false #AC_CHECK_LIB(tcldbg, Dbg_Init, V_DEFINES="-DHAVE_Dbg_Init $V_DEFINES",notfound=true) #if $notfound; then # notfound=false # AC_CHECK_LIB(tcldbg, Tcldbg_Init, V_DEFINES="-DHAVE_Tcldbg_Init $V_DEFINES",notfound=true) #fi #LIBS=$tmpLIBS #if $notfound; then # echo "configure: warning: Tcl debugger init point is not found. You \ #will not be able to use Tcl debugger." 1>&2 # NS_PACKAGE_tcldebug_COMPLETE=false #fi #fi if $NS_PACKAGE_tcldebug_COMPLETE; then NS_END_PACKAGE(tcldebug,no) fi nam-1.15/conf/configure.in.tk0000644000076400007660000001554611316747632014772 0ustar tomhnsnamdnl autoconf rules to find tk dnl $Header: /cvsroot/nsnam/conf/configure.in.tk,v 1.40 2009/12/30 22:05:32 tom_henderson Exp $ (LBL) AC_ARG_WITH(tk, --with-tk=path specify a pathname for tk, d=$withval, d="") dnl library version defaults to 8.0 AC_ARG_WITH(tk-ver, --with-tk-ver=path specify the version of tcl/tk, TK_VERS=$withval, TK_VERS=$TCL_VERS) dnl Truncate anything beyond and including the second decimal point TK_HI_VERS=`echo $TK_VERS | sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\)/\1.\2/'` TK_MAJOR_VERS=`echo $TK_VERS | sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\)/\1/'` TK_ALT_VERS=8.5 dnl work with one version in the past TK_OLD_VERS=8.4 TK_OLD_ALT_VERS=`echo $TK_OLD_VERS | sed 's/\.//'` dnl Also, 64-bit support is just hacked on for the common cases. TK_TCL_PLACES_D="$d \ $d/lib64/tk$TK_VERS \ $d/lib64/tk$TK_ALT_VERS \ $d/lib64/tk$TK_VERS \ $d/lib/tk$TK_ALT_VERS \ $d/lib/tk$TK_HI_VERS \ $d/library \ $d/lib/tk \ $d/../lib/tk$TK_VERS \ $d/../lib/tk$TK_ALT_VERS \ $d/../lib/tk$TK_HI_VERS \ $d/../lib/tk \ $d/lib/tk$TK_OLD_VERS \ $d/lib/tk$TK_OLD_ALT_VERS \ $d/../lib/tk$TK_OLD_VERS \ $d/../lib/tk$TK_OLD_ALT_VERS \ $d/../lib/tk \ $d/lib \ $d/library" TK_TCL_PLACES=" \ ../lib/tk$TK_HI_VERS \ ../lib/tk$TK_VERS \ ../lib/tk$TK_ALT_VERS \ ../tk$TK_VERS/library \ ../tk$TK_ALT_VERS/library \ ../tk$TK_HI_VERS/library \ ../tk/library \ /usr/src/local/tk$TK_VERS/library \ /usr/src/local/tk$TK_ALT_VERS/library \ /usr/src/local/tk$TK_HI_VERS/library \ /usr/contrib/include \ /usr/local/lib/tk$TK_VERS \ /usr/local/lib/tk$TK_ALT_VERS \ /usr/local/lib/tk$TK_HI_VERS \ /usr/local/include/tk$TK_VERS \ /usr/local/include/tk$TK_ALT_VERS \ /usr/local/include/tk$TK_HI_VERS \ /usr/local/include \ /usr/lib64/tk$TK_VERS \ /usr/lib64/tk$TK_ALT_VERS \ /usr/lib64/tk$TK_HI_VERS \ /usr/lib64/tk \ /usr/lib/tk$TK_VERS \ /usr/lib/tk$TK_ALT_VERS \ /usr/lib/tk$TK_HI_VERS \ /usr/lib/tk \ /usr/share/tk$TK_VERS \ /usr/share/tk$TK_ALT_VERS \ /usr/share/tk$TK_HI_VERS \ /usr/share/tcltk/k$TK_VERS \ /usr/share/tcltk/tk$TK_ALT_VERS \ /usr/share/tcltk/tk$TK_HI_VERS \ /usr/share/tk \ ../tk$TK_OLD_VERS/library \ ../tk$TK_OLD_ALT_VERS/library \ /usr/src/local/tk$TK_OLD_VERS/library \ /usr/src/local/tk$TK_OLD_ALT_VERS/library \ /usr/local/lib/tk$TK_OLD_VERS \ /usr/local/lib/tk$TK_OLD_ALT_VERS \ /usr/local/include/tk$TK_OLD_VERS \ /usr/local/include/tk$TK_OLD_ALT_VERS \ /usr/lib/tk$TK_OLD_VERS \ /usr/lib/tk$TK_OLD_ALT_VERS \ $prefix/include \ $prefix/lib/tk \ $x_includes/tk \ $x_includes \ /usr/include" TK_H_PLACES_D="$d \ $d/generic \ $d/../include/tk$TK_VERS \ $d/../include/tk$TK_HI_VERS \ $d/../include/tk$TK_OLD_VERS \ $d/include/tk$TK_VERS \ $d/include/tk$TK_HI_VERS \ $d/include/tk$TK_OLD_VERS \ $d/include" TK_H_PLACES=" \ ../include \ ../tk$TK_VERS/generic \ ../tk$TK_ALT_VERS/generic \ ../tk$TK_HI_VERS/generic \ /usr/src/local/tk$TK_VERS/generic \ /usr/src/local/tk$TK_ALT_VERS/generic \ /usr/src/local/tk$TK_HI_VERS/generic \ /usr/contrib/include \ /usr/local/lib/tk$TK_VERS \ /usr/local/lib/tk$TK_ALT_VERS \ /usr/local/lib/tk$TK_HI_VERS \ /usr/local/include/tk$TK_VERS \ /usr/local/include/tk$TK_ALT_VERS \ /usr/local/include/tk$TK_HI_VERS \ /usr/local/include \ /import/tk/include/tk$TK_VERS \ /import/tk/include/tk$TK_ALT_VERS \ /import/tk/include/tk$TK_HI_VERS \ ../tk$TK_OLD_VERS/generic \ ../tk$TK_OLD_ALT_VERS/generic \ /usr/src/local/tk$TK_OLD_VERS/generic \ /usr/src/local/tk$TK_OLD_ALT_VERS/generic \ /usr/local/lib/tk$TK_OLD_VERS \ /usr/local/lib/tk$TK_OLD_ALT_VERS \ /usr/local/include/tk$TK_OLD_VERS \ /usr/local/include/tk$TK_OLD_ALT_VERS \ /import/tk/include/tk$TK_OLD_VERS \ /import/tk/include/tk$TK_OLD_ALT_VERS \ $prefix/include \ $x_includes/tk \ $x_includes \ /usr/include \ /usr/include/tcl \ /usr/include/tcl$TK_VERS \ /usr/include/tcl$TK_ALT_VERS \ /usr/include/tcl$TK_HI_VERS \ " dnl /usr/include/tcl for debian/linux TK_LIB_PLACES_D="$d \ $d/lib \ $d/unix" TK_LIB_PLACES=" \ ../lib \ ../lib/tk$TK_HI_VERS \ ../lib/tk$TK_VERS \ ../lib/tk$TK_ALT_VERS \ ../tk$TK_VERS/unix \ ../tk$TK_ALT_VERS/unix \ ../tk$TK_HI_VERS/unix \ /usr/src/local/tk$TK_VERS/unix \ /usr/src/local/tk$TK_ALT_VERS/unix \ /usr/src/local/tk$TK_HI_VERS/unix \ /usr/contrib/lib \ /usr/local/lib/tk$TK_VERS \ /usr/local/lib/tk$TK_ALT_VERS \ /usr/local/lib/tk$TK_HI_VERS \ ../tk$TK_OLD_VERS/unix \ ../tk$TK_OLD_ALT_VERS/unix \ /usr/src/local/tk$TK_OLD_VERS/unix \ /usr/src/local/tk$TK_OLD_ALT_VERS/unix \ /usr/local/lib/tk$TK_OLD_VERS \ /usr/local/lib/tk$TK_OLD_ALT_VERS \ /usr/local/lib \ $prefix/lib \ $x_libs/tk \ $x_libs \ /usr/lib64 \ /usr/lib" NS_BEGIN_PACKAGE(tk) NS_CHECK_HEADER_PATH(tk.h,$TK_H_PLACES,$d,$TK_H_PLACES_D,V_INCLUDE_TK,tk) NS_CHECK_LIB_PATH(tk$TK_HI_VERS,$TK_LIB_PLACES,$d,$TK_LIB_PLACES_D,V_LIB_TK,tk) NS_CHECK_ANY_PATH(tk.tcl,$TK_TCL_PLACES,$d,$TK_TCL_PLACES_D,V_LIBRARY_TK,tk) NS_END_PACKAGE(tk,no) if test -r $V_LIBRARY_TK/optionMenu.tcl ; then V_TKDOSNAMES='$(LIBRARY_TK)/optionMenu.tcl $(LIBRARY_TK)/scrollbar.tcl' V_NEED_DL="" else V_TKDOSNAMES='$(LIBRARY_TK)/optMenu.tcl $(LIBRARY_TK)/scrlbar.tcl' V_NEED_DL=YES fi AC_SUBST(V_TKDOSNAMES) AC_SUBST(V_LIBRARY_TK) nam-1.15/conf/configure.in.video0000664000076400007660000001372606504301426015450 0ustar tomhnsnam# lots of hairy special cases for detecting which frame capture # support to compile in V_LIB_VIDEO="" V_INCLUDE_VIDEO="" V_DEFINE_VIDEO="" V_OBJ_VIDEO="" V_LIB_XIL="" V_OBJ_XIL="" AC_ARG_WITH(video-dirs, --with-video-dirs=path specify a pathname for locating video include files, , withval="") AC_ARG_WITH(vigrapix, --with-vigrapix=path specify a pathname for locating vigrapix include and library files, , withval="") #XXX AC_ARG_WITH(videopix, --with-videopix=path specify a pathname for locating videopix include and library files, , withval="") #XXX if test "$with_video_dirs" != "" ; then for i in $with_video_dirs ; do V_INCLUDE_VIDEO="$V_INCLUDE_VIDEO -I$i" done fi if test -r /usr/lib/libvl.so ; then V_LIB_VIDEO="$V_LIB_VIDEO -lvl -ldmedia" V_OBJ_VIDEO="$V_OBJ_VIDEO video-vl.o output-vl.o" # if test -r /usr/include/dmedia/cl_cosmo.h ; then # V_LIB_VIDEO="$V_LIB_VIDEO -lcl" # V_OBJ_VIDEO="$V_OBJ_VIDEO video-cosmo.o" # fi fi if test -r /usr/lib/libsvideo.a ; then V_LIB_VIDEO="$V_LIB_VIDEO -lsvideo" V_OBJ_VIDEO="$V_OBJ_VIDEO video-svideo.o" fi if test -r /usr/lib/libXv.a ; then V_LIB_VIDEO="$V_LIB_VIDEO -lXv" V_DEFINE="$V_DEFINE -DXV_PSEUDO8" V_OBJ_VIDEO="$V_OBJ_VIDEO video-xv.o" fi if test -r /usr/lpp/parallax/lib/libXvid.a ; then V_LIB_VIDEO="$V_LIB_VIDEO -L/usr/lpp/parallax/lib -lXvid -lXv" V_INCLUDE_VIDEO="$V_INCLUDE_VIDEO -I/usr/lpp/parallax/include" V_OBJ_VIDEO="$V_OBJ_VIDEO video-plx.o assistor-plx.o" fi if test -r /usr/lpp/UMS6000/lib/libUMSobj.a ; then V_LIB_VIDEO="$V_LIB_VIDEO -L/usr/lpp/UMS6000/lib -lUMSobj" V_INCLUDE_VIDEO="$V_INCLUDE_VIDEO -I/usr/lpp/UMS6000/include" V_DEFINE="$V_DEFINE -DSUNRISE" V_OBJ_VIDEO="$V_OBJ_VIDEO video-sunrise.o output-sunrise.o" fi if test -r /usr/include/machine/ioctl_meteor.h ; then V_OBJ_VIDEO="$V_OBJ_VIDEO video-meteor.o" elif test "$with_video_dirs" != "" ; then for i in $with_video_dirs ; do if test -r $i/ioctl_meteor.h ; then V_OBJ_VIDEO="$V_OBJ_VIDEO video-meteor.o" V_DEFINE_VIDEO="$V_DEFINE_VIDEO -DNON_STD_IOCTL_METEOR_H" break fi done fi if test -r /usr/local/lib/libspigot.a ; then V_OBJ_VIDEO="$V_OBJ_VIDEO video-spigot.o" V_LIB_VIDEO="$V_LIB_VIDEO -lspigot" V_INCLUDE_VIDEO="$V_INCLUDE_VIDEO -I/usr/local/include" fi # Remove this for now, since device switching is broken. #if test -r /usr/local/lib/libqcam.a ; then # V_OBJ_VIDEO="$V_OBJ_VIDEO video-qcam.o" # V_LIB_VIDEO="$V_LIB_VIDEO -lqcam" # V_INCLUDE_VIDEO="$V_INCLUDE_VIDEO -I/usr/local/include" #else # if test -r /dev/qcam0 ; then # V_OBJ_VIDEO="$V_OBJ_VIDEO video-qcam.o" # fi #fi #XXX AC_ARG_ENABLE(sccvideo, --disable-sccvideo don't compile in the SCC video code, e=$enableval, e="yes") # the default is yes: you have to explicitly say "--disable-sccvideo" if test "$e" = yes ; then if test -r /usr/include/linux/scc.h -o -r /usr/include/machine/scc.h ; then V_OBJ_VIDEO="$V_OBJ_VIDEO video-scc.o" echo "Compiling with SCC video code" fi else echo "Compiling without SCC video code" fi vpix_dir=/usr/src/local/vfc-1.0 if test "$with_videopix" != "" ; then vpix_dir=$with_videopix fi vpix_lib=$vpix_dir/vfc_lib if test -d /import/VideoPix ; then vpix_dir=/import/VideoPix vpix_lib=$vpix_dir/lib fi if test -d $vpix_dir ; then V_INCLUDE_VIDEO="$V_INCLUDE_VIDEO -I$vpix_dir/sys -I$vpix_lib" V_LIB_VIDEO="$V_LIB_VIDEO $vpix_lib/libvfc.a" V_DEFINE="$V_DEFINE -DVIDEOPIX" V_OBJ_VIDEO="$V_OBJ_VIDEO video-vpix.o" fi places="/usr/src/local/vigrapix/lib \ /opt/VIGRAvigrapix/lib" if test "$with_vigrapix" != "" ; then places="${with_vigrapix}/lib \ ${with_vigrapix}" fi for dir in $places; do if test -d $dir ; then V_INCLUDE_VIDEO="$V_INCLUDE_VIDEO -I$dir" V_LIB_VIDEO="$V_LIB_VIDEO $dir/libvigrapix.a" V_OBJ_VIDEO="$V_OBJ_VIDEO video-vigra.o" break fi done d=/opt/MMACslv if test -d $d ; then V_INCLUDE_VIDEO="$V_INCLUDE_VIDEO -I$d/include" V_LIB_VIDEO="$V_LIB_VIDEO $d/lib/libslv.a -lintl" V_OBJ_VIDEO="$V_OBJ_VIDEO video-slv.o" fi places="/opt/parallax \ /usr/src/local/parallax \ /usr/local/parallax \ /usr/local/parallax/components/Xclients_sun4.ow3_1.18 \ /usr/src/local/parallax/components/Xclients_sun4.ow3_1.18" for dir in $places; do if test -d $dir/include ; then V_INCLUDE_VIDEO="$V_INCLUDE_VIDEO -I$dir/include" V_LIB_VIDEO="$V_LIB_VIDEO -L$dir/lib -lXext -lXvid" V_OBJ_VIDEO="$V_OBJ_VIDEO video-plx.o assistor-plx.o" break fi done case "$target" in *-dec-*) jv_dir=jv2 V_INCLUDE_VIDEO="$V_INCLUDE_VIDEO -I$jv_dir" V_LIB_VIDEO="$V_LIB_VIDEO $jv_dir/jvdriverint.o" V_OBJ_VIDEO="$V_OBJ_VIDEO assistor-jv.o video-jv.o" if test "$target_os" = ultrix4.3 ; then #XXX rtip code currently broken #V_DEFINE="$V_DEFINE -DRTIP" #V_LIB="$V_LIB lib.ultrix/librcap.a" #V_INCLUDE="$V_INCLUDE -Ircap-include" #XXX #V_OBJ_VIDEO="$V_OBJ_VIDEO net-rtip.o" echo no rtip support fi ;; sparc-sun-solaris*) have_xil=no xil_dir=/opt/SUNWits/Graphics-sw/xil if test -d $xil_dir ; then if test ! -d $xil_dir/include ; then echo "You don't have the XIL developer's kit!" echo "Building without XIL support..." else have_xil=yes fi fi if test $CC = gcc ; then V_DEFINE="$V_DEFINE -mv8 -msupersparc" fi V_DEFINE="$V_DEFINE -D__svr4__" if test -f video/video-rtvc.cc || \ test -f video/video-rtvc.o ; then V_OBJ_VIDEO="$V_OBJ_VIDEO video-rtvc.o" if test "$have_xil" = yes ; then V_ALL="$V_PROG $V_PROG.xil" V_INCLUDE_VIDEO="$V_INCLUDE_VIDEO -I$xil_dir/include" V_LIB_XIL="-L$xil_dir/lib -R$xil_dir/lib -lxil" V_OBJ_XIL=video-xil.o fi elif test "$have_xil" = yes ; then V_OBJ_XIL=video-xil.o V_INCLUDE_VIDEO="$V_INCLUDE_VIDEO -I$xil_dir/include" V_LIB_VIDEO="$V_LIB_VIDEO -L$xil_dir/lib -R$xil_dir/lib -lxil" fi ;; esac #XXX video stuff needs to move to ../conf/configure.in.video if test -f encoder-bvc.cc ; then V_OBJ="$V_OBJ encoder-bvc.o decoder-bvc.o" fi #XXX list="" for f in $V_OBJ_VIDEO; do list="$list video/$f" done V_OBJ_VIDEO=$list AC_SUBST(V_OBJ_VIDEO) AC_SUBST(V_INCLUDE_VIDEO) AC_SUBST(V_DEFINE_VIDEO) AC_SUBST(V_LIB_VIDEO) AC_SUBST(V_LIB_XIL) AC_SUBST(V_OBJ_XIL) nam-1.15/conf/configure.in.x110000644000076400007660000000505311440573425014750 0ustar tomhnsnamdnl autoconf rules to find X11 includes and libraries dnl $Header: /cvsroot/nsnam/conf/configure.in.x11,v 1.6 2010/09/05 01:43:59 tom_henderson Exp $ (LBL) xlibdirs="\ /usr/openwin/lib \ /usr/X11R6/lib \ /usr/lib/X11R6 \ /usr/X11R5/lib \ /usr/lib/X11R5 \ /usr/X11R4/lib \ /usr/lib/X11R4 \ /usr/local/lib \ /usr/X386/lib \ /usr/X11/lib \ /usr/unsupported/lib \ /Developer/SDKs/MacOSX10.4u.sdk/usr/X11R6/lib \ /Developer/SDKs/MacOSX10.5.sdk/usr/X11R6/lib \ /Developer/SDKs/MacOSX10.6.sdk/usr/X11R6/lib \ /import/X11R4/usr/lib" xincdirs="\ /usr/openwin/include \ /usr/X11R6/include \ /usr/include/X11R6 \ /usr/X11R5/include \ /usr/include/X11R5 \ /usr/X11R4/include \ /usr/include/X11R4 \ /usr/local/include \ /usr/X386/include \ /usr/X11/include \ /usr/lpp/X11/include \ /usr/unsupported/include \ /Developer/SDKs/MacOSX10.4u.sdk/usr/X11R6/include \ /Developer/SDKs/MacOSX10.5.sdk/usr/X11R6/include \ /Developer/SDKs/MacOSX10.6.sdk/usr/X11R6/include \ /import/X11R4/include" echo "checking for X11 header files" if test "$x_includes" = NONE ; then AC_TEST_CPP([#include ],x_includes="",x_includes=NONE) if test "$x_includes" = NONE ; then for i in $xincdirs ; do if test -r $i/X11/Intrinsic.h; then x_includes=$i break fi done if test "$x_includes" = NONE ; then echo "can't find X includes" exit 1 fi fi fi if test -n "$x_includes" ; then V_INCLUDE_X11=-I$x_includes AC_SUBST(V_INCLUDE_X11) fi echo "checking for X11 library archive" if test "$x_libraries" = NONE ; then AC_CHECK_LIB(X11, XOpenDisplay, x_libraries="", x_libraries=NONE) if test "$x_libraries" = NONE ; then for i in $xlibdirs ; do if test -r $i/libX11.a -o -r $i/libX11.so -o -r $i/libX11.dll.a -o -r $i/libX11.dylib; then x_libraries=$i break fi done if test "$x_libraries" = NONE ; then echo "can't find X library" exit 1 fi fi fi V_LIB_X11=-lX11 if test -n "$V_SHM" ; then if test -z "$x_libraries" ; then AC_CHECK_LIB(Xext, XShmAttach, V_Xext="-lXext", V_Xext=NONE, -lX11) else echo "checking for libXext.a" if test -f $x_libraries/libXext.a -o -f $x_libraries/libXext.so -o -f $x_libraries/libXext.dylib; then V_Xext="-lXext" else echo "warning: compiling without -lXext" fi fi if test "$V_Xext" = NONE ; then echo "warning: compiling without -lXext" else V_LIB_X11="$V_Xext $V_LIB_X11" fi fi if test -n "$x_libraries" ; then V_LIB_X11="-L$x_libraries $V_LIB_X11" if test $solaris ; then V_LIB_X11="-R$x_libraries $V_LIB_X11" fi fi AC_SUBST(V_LIB_X11) nam-1.15/conf/configure.in.z0000664000076400007660000000211211205576546014611 0ustar tomhnsnamdnl autoconf rules to find z AC_ARG_WITH(zlib, --with-zlib=path specify a pathname for zlib, d=$withval, d="") AC_ARG_WITH(zlib-ver, --with-zlib-ver=VER specify the version number of zlib, ZLIB_VER=$withval, ZLIB_VER=1.2.3) ZLIB_H_PLACES_D="$d \ $d/include" ZLIB_H_PLACES="../zlib \ /usr/src/local/zlib \ ../zlib-$ZLIB_VER \ /import/zlib/include \ /usr/src/local/zlib-$ZLIB_VER \ /usr/src/local/zlib-$ZLIB_ALT_VER \ $prefix/include \ /usr/local/include \ /usr/contrib/include \ /usr/include" ZLIB_LIB_PLACES_D="$d \ $d/lib \ " ZLIB_LIB_PLACES="../zlib \ ../zlib-$ZLIB_VER \ ../zlib-$ZLIB_ALT_VERS \ $prefix/lib \ $x_libraries \ /usr/contrib/lib \ /usr/local/lib \ /usr/lib64 \ /usr/lib \ /usr/src/local/zlib \ /usr/src/local/zlib-$ZLIB_VER \ /usr/src/local/zlib-$ZLIB_ALT_VERS \ " NS_BEGIN_PACKAGE(zlib) NS_CHECK_HEADER_PATH(zlib.h,$ZLIB_H_PLACES,$d,$ZLIB_H_PLACES_D,V_INCLUDE_ZLIB,zlib) NS_CHECK_LIB_PATH(z$ZLIB_VER,$ZLIB_LIB_PLACES,$d,$ZLIB_LIB_PLACES_D,V_LIB_ZLIB,zlib) if $NS_PACKAGE_zlib_COMPLETE; then NS_END_PACKAGE(zlib,no) fi nam-1.15/conf/configure.in.ztrace0000664000076400007660000000400706625375514015637 0ustar tomhnsnam# # Copyright (c) @ Regents of the University of California. # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: # 1. Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # 2. Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # 3. All advertising materials mentioning features or use of this software # must display the following acknowledgement: # This product includes software developed by the MASH Research # Group at the University of California Berkeley. # 4. Neither the name of the University nor of the Research Group may be # used to endorse or promote products derived from this software without # specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE # ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. # # @(#) $Header: /cvsroot/nsnam/conf/configure.in.ztrace,v 1.1 1998/11/20 23:29:16 kwright Exp $ # AC_ARG_ENABLE(ztrace, --enable-ztrace build with ztrace tracing enabled, , enable_ztrace="no") if test "$enable_ztrace" = "yes" ; then V_CCOPT="$V_CCOPT -DZTRACE" fi nam-1.15/conf/makefile.win0000664000076400007660000001141507475255635014341 0ustar tomhnsnam# Copyright (c) 1994, 1995, 1996 # The Regents of the University of California. All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that: (1) source code distributions # retain the above copyright notice and this paragraph in its entirety, (2) # distributions including binary code include the above copyright notice and # this paragraph in its entirety in the documentation or other materials # provided with the distribution, and (3) all advertising materials mentioning # features or use of this software display the following acknowledgement: # ``This product includes software developed by the University of California, # Lawrence Berkeley Laboratory and its contributors.'' Neither the name of # the University nor the names of its contributors may be used to endorse # or promote products derived from this software without specific prior # written permission. # THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED # WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. # # @(#) $Header: /cvsroot/nsnam/conf/makefile.win,v 1.17 2002/05/29 22:52:13 buchheim Exp $ # Please change this path to the correct one on your system. MSVCDIR = c:\progra~1\micros~3\VC98 #MSVCDIR = c:\progra~1\\DevStudio\VC TOOLS32 = $(MSVCDIR) PATH = $(MSVCDIR);$(PATH) INCLUDE = $(MSVCDIR)\include # Set this to the _absolute_ path to where ns-allinone is installed. # Tcl/Tk/otcl/tclcl/ns should all be located under this path. #LOCAL_SRC = c:\research\vint\ns-allinone-2.1b7 LOCAL_SRC = e:\conser # comment this out to build with debug options NODEBUG=1 TARGETOS = BOTH # uncomment this out to build static version STATIC_LIB=1 !include <$(INCLUDE)/win32.mak> cc32 = cl rc32 = rc link32 = link TK_VER = 80 TCL_VER = 80 TCL_SUFFIX = 8.0 TK_SUFFIX = 8.0 TK_DIR = $(LOCAL_SRC)\tk$(TK_SUFFIX) TCL_DIR = $(LOCAL_SRC)\tcl$(TCL_SUFFIX) OTCL_DIR = $(LOCAL_SRC)\otcl TCLCL_DIR = $(LOCAL_SRC)\tclcl # Static build requires specially hacked versions of tcl8.0 and tk8.0 # Available from http://mash.cs.berkeley.edu/dist !ifdef STATIC_LIB LIB_TK = -LIBPATH:$(TK_DIR)\win stk$(TK_VER).lib LIB_TCL = -LIBPATH:$(TCL_DIR)\win stcl$(TCL_VER).lib !else LIB_TK = -LIBPATH:$(TK_DIR)\win\Release tk$(TK_VER).lib LIB_TCL = -LIBPATH:$(TCL_DIR)\win\Release tcl$(TCL_VER).lib !endif LIB_OTCL = -LIBPATH:$(OTCL_DIR) otcl.lib LIB_TCLCL = $(TCLCL_DIR)\tclcl.lib LIBRARY_TK = $(TK_DIR)\library LIBRARY_TCL = $(TCL_DIR)\library TCL_LIBRARY_FILES = $(TCL_83_LIBRARY_FILES) TKDOSNAMES = $(LIBRARY_TK)/optMenu.tcl $(LIBRARY_TK)/scrlbar.tcl CC = $(cc32) CPP = $(cc32) LINK = $(link32) MKDEP = makedep2 TCLSH = $(TCL_DIR)\win\tclsh$(TCL_VER).exe TCL2C = $(TCLCL_DIR)\tcl2c++.exe AR = lib -out: RANLIB = echo INSTALL = echo LN = echo TEST = echo RM = rm -f PERL = perl !IFDEF NODEBUG CCOPT = -Ox -Zm1000 !ELSE CCOPT = -Gm -Gi -YX -Zm1000 !ENDIF # Include STATIC_LIB so that main.cc will be properly compiled for nam. !ifdef STATIC_LIB CCOPT = -DSTATIC_LIB $(CCOPT) !endif !IFDEF NODEBUG LDFLAGS = -LIBPATH:$(TOOLS32)\lib $(lflags) $(conlibsdll) !ELSE LDFLAGS = -LIBPATH:$(TOOLS32)\lib /NODEFAULTLIB /INCREMENTAL:NO /DEBUG /NOLOGO $(conlibsdll) !ENDIF STATIC = LDOUT = -out: DEFINE = -DNO_TK INCLUDE_TK = -I$(TK_DIR)\win -I$(TK_DIR)\generic INCLUDE_TCL = -I$(TCL_DIR)\win -I$(TCL_DIR)\generic INCLUDE_OTCL = -I$(OTCL_DIR) INCLUDE_TCLCL = -I$(TCLCL_DIR) INCLUDE_X11 = -I$(TK_DIR)\xlib INCLUDE_MISC = -I$(TOOLS32)\include # Disable building STL-dependent object files because VC6.x does # not seem to support G++-style (2.8.0 and up) STL. OBJ_STL = NS_TCL_LIB_STL= OBJ_COMPAT_C = compat/gettod.o compat/win32.o embedded-console.o # don't want system files to be added when making dependencies DEPEND_INCS = \ $(INCLUDE_TK) $(INCLUDE_TCL) \ $(INCLUDE_OTCL) $(INCLUDE_TCLCL) \ $(INCLUDE_X11) $(MD_INC) -I. # put the subdirs of ~ns in the include path INCLUDE_SUBDIRS = -I./tcp -I./common -I./link -I./queue \ -I./adc -I./apps -I./mac -I./mobile -I./trace \ -I./routing -I./tools -I./classifier -I./mcast \ -I./diffusion3/main -I./diffusion3/lib \ -I./diffusion3/nr -I./diffusion3/ns -I./asim/ # the subdirs of ~ns must be FIRST or else bad things happen # (for example, VC++ will find the wrong "packet.h" INCLUDES = $(INCLUDE_SUBDIRS) $(DEPEND_INCS) $(INCLUDE_MISC) LIB = $(LIB_TCLCL) $(LIB_OTCL) \ $(LIB_TK) $(LIB_TCL) \ libci.lib msvcirt.lib $(guilibsdll) # $(LIB_GRABBER) $(LIB_GSM) \ # winmm.lib CFLAGS = $(cdebug:Z7=Zi) $(cflags) $(cvarsdll) $(CCOPT) $(DEFINE) .SUFFIXES : .cc # add -FR$*.sbr if you want browse info .cc.o: $(cc32) -c $(CFLAGS) $(INCLUDES) -Fo$@ -Tp $< .c.o: $(cc32) -c $(CFLAGS) $(INCLUDES) -Fo$@ $< GEN_DIR = gen\\ LIB_DIR = lib\\ NS = ns.exe NSX = nsx.exe NAM = nam.exe nam-1.15/conf/mkdep0000755000076400007660000000546511440530206013052 0ustar tomhnsnam#!/bin/sh - # # $NetBSD: mkdep.sh,v 1.5 1998/04/09 06:03:47 fair Exp $ # # Copyright (c) 1991, 1993 # The Regents of the University of California. All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: # 1. Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # 2. Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # 3. All advertising materials mentioning features or use of this software # must display the following acknowledgement: # This product includes software developed by the University of # California, Berkeley and its contributors. # 4. Neither the name of the University nor the names of its contributors # may be used to endorse or promote products derived from this software # without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE # ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. # # @(#)mkdep.sh 8.1 (Berkeley) 6/6/93 # D=.depend # default dependency file is .depend append=0 while : do case "$1" in # -a appends to the depend file -a) append=1 shift ;; # -f allows you to select a makefile name -f) D=$2 shift; shift ;; # the -p flag produces "program: program.c" style dependencies # so .o's don't get produced -p) SED='s;\.o ; ;' shift ;; *) break ;; esac done if [ $# = 0 ] ; then echo 'usage: mkdep [-p] [-f depend_file] [cc_flags] file ...' exit 1 fi TMP=/tmp/mkdep$$ trap 'rm -f $TMP ; exit 1' 1 2 3 13 15 cc -M $* | sed " s; \./; ;g /\.c:$/d $SED" | awk '{ if ($1 != prev) { if (rec != "") print rec; rec = $0; prev = $1; } else { if (length(rec $2) > 78) { print rec; rec = $0; } else rec = rec " " $2 } } END { print rec }' > $TMP if [ $? != 0 ]; then echo 'mkdep: compile failed.' rm -f $TMP exit 1 fi if [ $append = 1 ]; then cat $TMP >> $D rm -f $TMP else mv $TMP $D fi exit 0 nam-1.15/conf/README0000664000076400007660000000016506343066777012725 0ustar tomhnsnam For new modules, please use the macros in configure.in.fns if possible rather than duplicating lots of shell code. nam-1.15/config.guess0000775000076400007660000012701210566153430013422 0ustar tomhnsnam#! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, # Inc. timestamp='2007-01-15' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA # 02110-1301, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Originally written by Per Bothner . # Please send patches to . Submit a context # diff and a properly formatted ChangeLog entry. # # This script attempts to guess a canonical system name similar to # config.sub. If it succeeds, it prints the system name on stdout, and # exits with 0. Otherwise, it exits with 1. # # The plan is that this can be called by configure scripts if you # don't specify an explicit build system type. me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] Output the configuration name of the system \`$me' is run on. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.guess ($timestamp) Originally written by Per Bothner. Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit ;; --version | -v ) echo "$version" ; exit ;; --help | --h* | -h ) echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" >&2 exit 1 ;; * ) break ;; esac done if test $# != 0; then echo "$me: too many arguments$help" >&2 exit 1 fi trap 'exit 1' 1 2 15 # CC_FOR_BUILD -- compiler used by this script. Note that the use of a # compiler to aid in system detection is discouraged as it requires # temporary files to be created and, as you can see below, it is a # headache to deal with in a portable fashion. # Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still # use `HOST_CC' if defined, but it is deprecated. # Portable tmp directory creation inspired by the Autoconf team. set_cc_for_build=' trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; : ${TMPDIR=/tmp} ; { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; dummy=$tmp/dummy ; tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; case $CC_FOR_BUILD,$HOST_CC,$CC in ,,) echo "int x;" > $dummy.c ; for c in cc gcc c89 c99 ; do if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then CC_FOR_BUILD="$c"; break ; fi ; done ; if test x"$CC_FOR_BUILD" = x ; then CC_FOR_BUILD=no_compiler_found ; fi ;; ,,*) CC_FOR_BUILD=$CC ;; ,*,*) CC_FOR_BUILD=$HOST_CC ;; esac ; set_cc_for_build= ;' # This is needed to find uname on a Pyramid OSx when run in the BSD universe. # (ghazi@noc.rutgers.edu 1994-08-24) if (test -f /.attbin/uname) >/dev/null 2>&1 ; then PATH=$PATH:/.attbin ; export PATH fi UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown # Note: order is significant - the case branches are not exclusive. case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in *:NetBSD:*:*) # NetBSD (nbsd) targets should (where applicable) match one or # more of the tupples: *-*-netbsdelf*, *-*-netbsdaout*, # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently # switched to ELF, *-*-netbsd* would select the old # object file format. This provides both forward # compatibility and a consistent mechanism for selecting the # object file format. # # Note: NetBSD doesn't particularly care about the vendor # portion of the name. We always set it to "unknown". sysctl="sysctl -n hw.machine_arch" UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \ /usr/sbin/$sysctl 2>/dev/null || echo unknown)` case "${UNAME_MACHINE_ARCH}" in armeb) machine=armeb-unknown ;; arm*) machine=arm-unknown ;; sh3el) machine=shl-unknown ;; sh3eb) machine=sh-unknown ;; sh5el) machine=sh5le-unknown ;; *) machine=${UNAME_MACHINE_ARCH}-unknown ;; esac # The Operating System including object format, if it has switched # to ELF recently, or will in the future. case "${UNAME_MACHINE_ARCH}" in arm*|i386|m68k|ns32k|sh3*|sparc|vax) eval $set_cc_for_build if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep __ELF__ >/dev/null then # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). # Return netbsd for either. FIX? os=netbsd else os=netbsdelf fi ;; *) os=netbsd ;; esac # The OS release # Debian GNU/NetBSD machines have a different userland, and # thus, need a distinct triplet. However, they do not need # kernel version information, so it can be replaced with a # suitable tag, in the style of linux-gnu. case "${UNAME_VERSION}" in Debian*) release='-gnu' ;; *) release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` ;; esac # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: # contains redundant information, the shorter form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. echo "${machine}-${os}${release}" exit ;; *:OpenBSD:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} exit ;; *:ekkoBSD:*:*) echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} exit ;; *:SolidBSD:*:*) echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} exit ;; macppc:MirBSD:*:*) echo powerpc-unknown-mirbsd${UNAME_RELEASE} exit ;; *:MirBSD:*:*) echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} exit ;; alpha:OSF1:*:*) case $UNAME_RELEASE in *4.0) UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` ;; *5.*) UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` ;; esac # According to Compaq, /usr/sbin/psrinfo has been available on # OSF/1 and Tru64 systems produced since 1995. I hope that # covers most systems running today. This code pipes the CPU # types through head -n 1, so we only detect the type of CPU 0. ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` case "$ALPHA_CPU_TYPE" in "EV4 (21064)") UNAME_MACHINE="alpha" ;; "EV4.5 (21064)") UNAME_MACHINE="alpha" ;; "LCA4 (21066/21068)") UNAME_MACHINE="alpha" ;; "EV5 (21164)") UNAME_MACHINE="alphaev5" ;; "EV5.6 (21164A)") UNAME_MACHINE="alphaev56" ;; "EV5.6 (21164PC)") UNAME_MACHINE="alphapca56" ;; "EV5.7 (21164PC)") UNAME_MACHINE="alphapca57" ;; "EV6 (21264)") UNAME_MACHINE="alphaev6" ;; "EV6.7 (21264A)") UNAME_MACHINE="alphaev67" ;; "EV6.8CB (21264C)") UNAME_MACHINE="alphaev68" ;; "EV6.8AL (21264B)") UNAME_MACHINE="alphaev68" ;; "EV6.8CX (21264D)") UNAME_MACHINE="alphaev68" ;; "EV6.9A (21264/EV69A)") UNAME_MACHINE="alphaev69" ;; "EV7 (21364)") UNAME_MACHINE="alphaev7" ;; "EV7.9 (21364A)") UNAME_MACHINE="alphaev79" ;; esac # A Pn.n version is a patched version. # A Vn.n version is a released version. # A Tn.n version is a released field test version. # A Xn.n version is an unreleased experimental baselevel. # 1.2 uses "1.2" for uname -r. echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` exit ;; Alpha\ *:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # Should we change UNAME_MACHINE based on the output of uname instead # of the specific Alpha model? echo alpha-pc-interix exit ;; 21064:Windows_NT:50:3) echo alpha-dec-winnt3.5 exit ;; Amiga*:UNIX_System_V:4.0:*) echo m68k-unknown-sysv4 exit ;; *:[Aa]miga[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-amigaos exit ;; *:[Mm]orph[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-morphos exit ;; *:OS/390:*:*) echo i370-ibm-openedition exit ;; *:z/VM:*:*) echo s390-ibm-zvmoe exit ;; *:OS400:*:*) echo powerpc-ibm-os400 exit ;; arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) echo arm-acorn-riscix${UNAME_RELEASE} exit ;; arm:riscos:*:*|arm:RISCOS:*:*) echo arm-unknown-riscos exit ;; SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) echo hppa1.1-hitachi-hiuxmpp exit ;; Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. if test "`(/bin/universe) 2>/dev/null`" = att ; then echo pyramid-pyramid-sysv3 else echo pyramid-pyramid-bsd fi exit ;; NILE*:*:*:dcosx) echo pyramid-pyramid-svr4 exit ;; DRS?6000:unix:4.0:6*) echo sparc-icl-nx6 exit ;; DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) case `/usr/bin/uname -p` in sparc) echo sparc-icl-nx7; exit ;; esac ;; sun4H:SunOS:5.*:*) echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; i86pc:SunOS:5.*:*) echo i386-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:6*:*) # According to config.sub, this is the proper way to canonicalize # SunOS6. Hard to guess exactly what SunOS6 will be like, but # it's likely to be more like Solaris than SunOS4. echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:*:*) case "`/usr/bin/arch -k`" in Series*|S4*) UNAME_RELEASE=`uname -v` ;; esac # Japanese Language versions have a version number like `4.1.3-JL'. echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` exit ;; sun3*:SunOS:*:*) echo m68k-sun-sunos${UNAME_RELEASE} exit ;; sun*:*:4.2BSD:*) UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 case "`/bin/arch`" in sun3) echo m68k-sun-sunos${UNAME_RELEASE} ;; sun4) echo sparc-sun-sunos${UNAME_RELEASE} ;; esac exit ;; aushp:SunOS:*:*) echo sparc-auspex-sunos${UNAME_RELEASE} exit ;; # The situation for MiNT is a little confusing. The machine name # can be virtually everything (everything which is not # "atarist" or "atariste" at least should have a processor # > m68000). The system name ranges from "MiNT" over "FreeMiNT" # to the lowercase version "mint" (or "freemint"). Finally # the system name "TOS" denotes a system which is actually not # MiNT. But MiNT is downward compatible to TOS, so this should # be no problem. atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) echo m68k-milan-mint${UNAME_RELEASE} exit ;; hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) echo m68k-hades-mint${UNAME_RELEASE} exit ;; *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) echo m68k-unknown-mint${UNAME_RELEASE} exit ;; m68k:machten:*:*) echo m68k-apple-machten${UNAME_RELEASE} exit ;; powerpc:machten:*:*) echo powerpc-apple-machten${UNAME_RELEASE} exit ;; RISC*:Mach:*:*) echo mips-dec-mach_bsd4.3 exit ;; RISC*:ULTRIX:*:*) echo mips-dec-ultrix${UNAME_RELEASE} exit ;; VAX*:ULTRIX*:*:*) echo vax-dec-ultrix${UNAME_RELEASE} exit ;; 2020:CLIX:*:* | 2430:CLIX:*:*) echo clipper-intergraph-clix${UNAME_RELEASE} exit ;; mips:*:*:UMIPS | mips:*:*:RISCos) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #ifdef __cplusplus #include /* for printf() prototype */ int main (int argc, char *argv[]) { #else int main (argc, argv) int argc; char *argv[]; { #endif #if defined (host_mips) && defined (MIPSEB) #if defined (SYSTYPE_SYSV) printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_SVR4) printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); #endif #endif exit (-1); } EOF $CC_FOR_BUILD -o $dummy $dummy.c && dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` && SYSTEM_NAME=`$dummy $dummyarg` && { echo "$SYSTEM_NAME"; exit; } echo mips-mips-riscos${UNAME_RELEASE} exit ;; Motorola:PowerMAX_OS:*:*) echo powerpc-motorola-powermax exit ;; Motorola:*:4.3:PL8-*) echo powerpc-harris-powermax exit ;; Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) echo powerpc-harris-powermax exit ;; Night_Hawk:Power_UNIX:*:*) echo powerpc-harris-powerunix exit ;; m88k:CX/UX:7*:*) echo m88k-harris-cxux7 exit ;; m88k:*:4*:R4*) echo m88k-motorola-sysv4 exit ;; m88k:*:3*:R3*) echo m88k-motorola-sysv3 exit ;; AViiON:dgux:*:*) # DG/UX returns AViiON for all architectures UNAME_PROCESSOR=`/usr/bin/uname -p` if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] then if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ [ ${TARGET_BINARY_INTERFACE}x = x ] then echo m88k-dg-dgux${UNAME_RELEASE} else echo m88k-dg-dguxbcs${UNAME_RELEASE} fi else echo i586-dg-dgux${UNAME_RELEASE} fi exit ;; M88*:DolphinOS:*:*) # DolphinOS (SVR3) echo m88k-dolphin-sysv3 exit ;; M88*:*:R3*:*) # Delta 88k system running SVR3 echo m88k-motorola-sysv3 exit ;; XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) echo m88k-tektronix-sysv3 exit ;; Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) echo m68k-tektronix-bsd exit ;; *:IRIX*:*:*) echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` exit ;; ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id exit ;; # Note that: echo "'`uname -s`'" gives 'AIX ' i*86:AIX:*:*) echo i386-ibm-aix exit ;; ia64:AIX:*:*) if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} exit ;; *:AIX:2:3) if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include main() { if (!__power_pc()) exit(1); puts("powerpc-ibm-aix3.2.5"); exit(0); } EOF if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` then echo "$SYSTEM_NAME" else echo rs6000-ibm-aix3.2.5 fi elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then echo rs6000-ibm-aix3.2.4 else echo rs6000-ibm-aix3.2 fi exit ;; *:AIX:*:[45]) IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then IBM_ARCH=rs6000 else IBM_ARCH=powerpc fi if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${IBM_ARCH}-ibm-aix${IBM_REV} exit ;; *:AIX:*:*) echo rs6000-ibm-aix exit ;; ibmrt:4.4BSD:*|romp-ibm:BSD:*) echo romp-ibm-bsd4.4 exit ;; ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to exit ;; # report: romp-ibm BSD 4.3 *:BOSX:*:*) echo rs6000-bull-bosx exit ;; DPX/2?00:B.O.S.:*:*) echo m68k-bull-sysv3 exit ;; 9000/[34]??:4.3bsd:1.*:*) echo m68k-hp-bsd exit ;; hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) echo m68k-hp-bsd4.4 exit ;; 9000/[34678]??:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` case "${UNAME_MACHINE}" in 9000/31? ) HP_ARCH=m68000 ;; 9000/[34]?? ) HP_ARCH=m68k ;; 9000/[678][0-9][0-9]) if [ -x /usr/bin/getconf ]; then sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` case "${sc_cpu_version}" in 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 532) # CPU_PA_RISC2_0 case "${sc_kernel_bits}" in 32) HP_ARCH="hppa2.0n" ;; 64) HP_ARCH="hppa2.0w" ;; '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 esac ;; esac fi if [ "${HP_ARCH}" = "" ]; then eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #define _HPUX_SOURCE #include #include int main () { #if defined(_SC_KERNEL_BITS) long bits = sysconf(_SC_KERNEL_BITS); #endif long cpu = sysconf (_SC_CPU_VERSION); switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0"); break; case CPU_PA_RISC1_1: puts ("hppa1.1"); break; case CPU_PA_RISC2_0: #if defined(_SC_KERNEL_BITS) switch (bits) { case 64: puts ("hppa2.0w"); break; case 32: puts ("hppa2.0n"); break; default: puts ("hppa2.0"); break; } break; #else /* !defined(_SC_KERNEL_BITS) */ puts ("hppa2.0"); break; #endif default: puts ("hppa1.0"); break; } exit (0); } EOF (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` test -z "$HP_ARCH" && HP_ARCH=hppa fi ;; esac if [ ${HP_ARCH} = "hppa2.0w" ] then eval $set_cc_for_build # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler # generating 64-bit code. GNU and HP use different nomenclature: # # $ CC_FOR_BUILD=cc ./config.guess # => hppa2.0w-hp-hpux11.23 # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess # => hppa64-hp-hpux11.23 if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | grep __LP64__ >/dev/null then HP_ARCH="hppa2.0w" else HP_ARCH="hppa64" fi fi echo ${HP_ARCH}-hp-hpux${HPUX_REV} exit ;; ia64:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` echo ia64-hp-hpux${HPUX_REV} exit ;; 3050*:HI-UX:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include int main () { long cpu = sysconf (_SC_CPU_VERSION); /* The order matters, because CPU_IS_HP_MC68K erroneously returns true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct results, however. */ if (CPU_IS_PA_RISC (cpu)) { switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; default: puts ("hppa-hitachi-hiuxwe2"); break; } } else if (CPU_IS_HP_MC68K (cpu)) puts ("m68k-hitachi-hiuxwe2"); else puts ("unknown-hitachi-hiuxwe2"); exit (0); } EOF $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` && { echo "$SYSTEM_NAME"; exit; } echo unknown-hitachi-hiuxwe2 exit ;; 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) echo hppa1.1-hp-bsd exit ;; 9000/8??:4.3bsd:*:*) echo hppa1.0-hp-bsd exit ;; *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) echo hppa1.0-hp-mpeix exit ;; hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) echo hppa1.1-hp-osf exit ;; hp8??:OSF1:*:*) echo hppa1.0-hp-osf exit ;; i*86:OSF1:*:*) if [ -x /usr/sbin/sysversion ] ; then echo ${UNAME_MACHINE}-unknown-osf1mk else echo ${UNAME_MACHINE}-unknown-osf1 fi exit ;; parisc*:Lites*:*:*) echo hppa1.1-hp-lites exit ;; C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) echo c1-convex-bsd exit ;; C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit ;; C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) echo c34-convex-bsd exit ;; C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) echo c38-convex-bsd exit ;; C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) echo c4-convex-bsd exit ;; CRAY*Y-MP:*:*:*) echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*[A-Z]90:*:*:*) echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ -e 's/\.[^.]*$/.X/' exit ;; CRAY*TS:*:*:*) echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*T3E:*:*:*) echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*SV1:*:*:*) echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; *:UNICOS/mp:*:*) echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; 5000:UNIX_System_V:4.*:*) FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} exit ;; sparc*:BSD/OS:*:*) echo sparc-unknown-bsdi${UNAME_RELEASE} exit ;; *:BSD/OS:*:*) echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} exit ;; *:FreeBSD:*:*) case ${UNAME_MACHINE} in pc98) echo i386-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; amd64) echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; *) echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; esac exit ;; i*:CYGWIN*:*) echo ${UNAME_MACHINE}-pc-cygwin exit ;; *:MINGW*:*) echo ${UNAME_MACHINE}-pc-mingw32 exit ;; i*:windows32*:*) # uname -m includes "-pc" on this system. echo ${UNAME_MACHINE}-mingw32 exit ;; i*:PW*:*) echo ${UNAME_MACHINE}-pc-pw32 exit ;; x86:Interix*:[3456]*) echo i586-pc-interix${UNAME_RELEASE} exit ;; EM64T:Interix*:[3456]* | authenticamd:Interix*:[3456]*) echo x86_64-unknown-interix${UNAME_RELEASE} exit ;; [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) echo i${UNAME_MACHINE}-pc-mks exit ;; i*:Windows_NT*:* | Pentium*:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we # UNAME_MACHINE based on the output of uname instead of i386? echo i586-pc-interix exit ;; i*:UWIN*:*) echo ${UNAME_MACHINE}-pc-uwin exit ;; amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) echo x86_64-unknown-cygwin exit ;; p*:CYGWIN*:*) echo powerpcle-unknown-cygwin exit ;; prep*:SunOS:5.*:*) echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; *:GNU:*:*) # the GNU system echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` exit ;; *:GNU/*:*:*) # other systems with GNU libc and userland echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu exit ;; i*86:Minix:*:*) echo ${UNAME_MACHINE}-pc-minix exit ;; arm*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; avr32*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; cris:Linux:*:*) echo cris-axis-linux-gnu exit ;; crisv32:Linux:*:*) echo crisv32-axis-linux-gnu exit ;; frv:Linux:*:*) echo frv-unknown-linux-gnu exit ;; ia64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; m32r*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; m68*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; mips:Linux:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #undef CPU #undef mips #undef mipsel #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) CPU=mipsel #else #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) CPU=mips #else CPU= #endif #endif EOF eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' /^CPU/{ s: ::g p }'`" test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ;; mips64:Linux:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #undef CPU #undef mips64 #undef mips64el #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) CPU=mips64el #else #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) CPU=mips64 #else CPU= #endif #endif EOF eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' /^CPU/{ s: ::g p }'`" test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ;; or32:Linux:*:*) echo or32-unknown-linux-gnu exit ;; ppc:Linux:*:*) echo powerpc-unknown-linux-gnu exit ;; ppc64:Linux:*:*) echo powerpc64-unknown-linux-gnu exit ;; alpha:Linux:*:*) case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in EV5) UNAME_MACHINE=alphaev5 ;; EV56) UNAME_MACHINE=alphaev56 ;; PCA56) UNAME_MACHINE=alphapca56 ;; PCA57) UNAME_MACHINE=alphapca56 ;; EV6) UNAME_MACHINE=alphaev6 ;; EV67) UNAME_MACHINE=alphaev67 ;; EV68*) UNAME_MACHINE=alphaev68 ;; esac objdump --private-headers /bin/sh | grep ld.so.1 >/dev/null if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} exit ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in PA7*) echo hppa1.1-unknown-linux-gnu ;; PA8*) echo hppa2.0-unknown-linux-gnu ;; *) echo hppa-unknown-linux-gnu ;; esac exit ;; parisc64:Linux:*:* | hppa64:Linux:*:*) echo hppa64-unknown-linux-gnu exit ;; s390:Linux:*:* | s390x:Linux:*:*) echo ${UNAME_MACHINE}-ibm-linux exit ;; sh64*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; sh*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; sparc:Linux:*:* | sparc64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; vax:Linux:*:*) echo ${UNAME_MACHINE}-dec-linux-gnu exit ;; x86_64:Linux:*:*) echo x86_64-unknown-linux-gnu exit ;; xtensa:Linux:*:*) echo xtensa-unknown-linux-gnu exit ;; i*86:Linux:*:*) # The BFD linker knows what the default object file format is, so # first see if it will tell us. cd to the root directory to prevent # problems with other programs or directories called `ld' in the path. # Set LC_ALL=C to ensure ld outputs messages in English. ld_supported_targets=`cd /; LC_ALL=C ld --help 2>&1 \ | sed -ne '/supported targets:/!d s/[ ][ ]*/ /g s/.*supported targets: *// s/ .*// p'` case "$ld_supported_targets" in elf32-i386) TENTATIVE="${UNAME_MACHINE}-pc-linux-gnu" ;; a.out-i386-linux) echo "${UNAME_MACHINE}-pc-linux-gnuaout" exit ;; coff-i386) echo "${UNAME_MACHINE}-pc-linux-gnucoff" exit ;; "") # Either a pre-BFD a.out linker (linux-gnuoldld) or # one that does not give us useful --help. echo "${UNAME_MACHINE}-pc-linux-gnuoldld" exit ;; esac # Determine whether the default compiler is a.out or elf eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include #ifdef __ELF__ # ifdef __GLIBC__ # if __GLIBC__ >= 2 LIBC=gnu # else LIBC=gnulibc1 # endif # else LIBC=gnulibc1 # endif #else #if defined(__INTEL_COMPILER) || defined(__PGI) || defined(__SUNPRO_C) || defined(__SUNPRO_CC) LIBC=gnu #else LIBC=gnuaout #endif #endif #ifdef __dietlibc__ LIBC=dietlibc #endif EOF eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' /^LIBC/{ s: ::g p }'`" test x"${LIBC}" != x && { echo "${UNAME_MACHINE}-pc-linux-${LIBC}" exit } test x"${TENTATIVE}" != x && { echo "${TENTATIVE}"; exit; } ;; i*86:DYNIX/ptx:4*:*) # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. # earlier versions are messed up and put the nodename in both # sysname and nodename. echo i386-sequent-sysv4 exit ;; i*86:UNIX_SV:4.2MP:2.*) # Unixware is an offshoot of SVR4, but it has its own version # number series starting with 2... # I am not positive that other SVR4 systems won't match this, # I just have to hope. -- rms. # Use sysv4.2uw... so that sysv4* matches it. echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} exit ;; i*86:OS/2:*:*) # If we were able to find `uname', then EMX Unix compatibility # is probably installed. echo ${UNAME_MACHINE}-pc-os2-emx exit ;; i*86:XTS-300:*:STOP) echo ${UNAME_MACHINE}-unknown-stop exit ;; i*86:atheos:*:*) echo ${UNAME_MACHINE}-unknown-atheos exit ;; i*86:syllable:*:*) echo ${UNAME_MACHINE}-pc-syllable exit ;; i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.0*:*) echo i386-unknown-lynxos${UNAME_RELEASE} exit ;; i*86:*DOS:*:*) echo ${UNAME_MACHINE}-pc-msdosdjgpp exit ;; i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} else echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} fi exit ;; i*86:*:5:[678]*) # UnixWare 7.x, OpenUNIX and OpenServer 6. case `/bin/uname -X | grep "^Machine"` in *486*) UNAME_MACHINE=i486 ;; *Pentium) UNAME_MACHINE=i586 ;; *Pent*|*Celeron) UNAME_MACHINE=i686 ;; esac echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} exit ;; i*86:*:3.2:*) if test -f /usr/options/cb.name; then UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ && UNAME_MACHINE=i586 (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \ && UNAME_MACHINE=i686 (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ && UNAME_MACHINE=i686 echo ${UNAME_MACHINE}-pc-sco$UNAME_REL else echo ${UNAME_MACHINE}-pc-sysv32 fi exit ;; pc:*:*:*) # Left here for compatibility: # uname -m prints for DJGPP always 'pc', but it prints nothing about # the processor, so we play safe by assuming i386. echo i386-pc-msdosdjgpp exit ;; Intel:Mach:3*:*) echo i386-pc-mach3 exit ;; paragon:*:*:*) echo i860-intel-osf1 exit ;; i860:*:4.*:*) # i860-SVR4 if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 else # Add other i860-SVR4 vendors below as they are discovered. echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 fi exit ;; mini*:CTIX:SYS*5:*) # "miniframe" echo m68010-convergent-sysv exit ;; mc68k:UNIX:SYSTEM5:3.51m) echo m68k-convergent-sysv exit ;; M680?0:D-NIX:5.3:*) echo m68k-diab-dnix exit ;; M68*:*:R3V[5678]*:*) test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;; 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) OS_REL='' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4; exit; } ;; m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) echo m68k-unknown-lynxos${UNAME_RELEASE} exit ;; mc68030:UNIX_System_V:4.*:*) echo m68k-atari-sysv4 exit ;; TSUNAMI:LynxOS:2.*:*) echo sparc-unknown-lynxos${UNAME_RELEASE} exit ;; rs6000:LynxOS:2.*:*) echo rs6000-unknown-lynxos${UNAME_RELEASE} exit ;; PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.0*:*) echo powerpc-unknown-lynxos${UNAME_RELEASE} exit ;; SM[BE]S:UNIX_SV:*:*) echo mips-dde-sysv${UNAME_RELEASE} exit ;; RM*:ReliantUNIX-*:*:*) echo mips-sni-sysv4 exit ;; RM*:SINIX-*:*:*) echo mips-sni-sysv4 exit ;; *:SINIX-*:*:*) if uname -p 2>/dev/null >/dev/null ; then UNAME_MACHINE=`(uname -p) 2>/dev/null` echo ${UNAME_MACHINE}-sni-sysv4 else echo ns32k-sni-sysv fi exit ;; PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort # says echo i586-unisys-sysv4 exit ;; *:UNIX_System_V:4*:FTX*) # From Gerald Hewes . # How about differentiating between stratus architectures? -djm echo hppa1.1-stratus-sysv4 exit ;; *:*:*:FTX*) # From seanf@swdc.stratus.com. echo i860-stratus-sysv4 exit ;; i*86:VOS:*:*) # From Paul.Green@stratus.com. echo ${UNAME_MACHINE}-stratus-vos exit ;; *:VOS:*:*) # From Paul.Green@stratus.com. echo hppa1.1-stratus-vos exit ;; mc68*:A/UX:*:*) echo m68k-apple-aux${UNAME_RELEASE} exit ;; news*:NEWS-OS:6*:*) echo mips-sony-newsos6 exit ;; R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) if [ -d /usr/nec ]; then echo mips-nec-sysv${UNAME_RELEASE} else echo mips-unknown-sysv${UNAME_RELEASE} fi exit ;; BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. echo powerpc-be-beos exit ;; BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. echo powerpc-apple-beos exit ;; BePC:BeOS:*:*) # BeOS running on Intel PC compatible. echo i586-pc-beos exit ;; SX-4:SUPER-UX:*:*) echo sx4-nec-superux${UNAME_RELEASE} exit ;; SX-5:SUPER-UX:*:*) echo sx5-nec-superux${UNAME_RELEASE} exit ;; SX-6:SUPER-UX:*:*) echo sx6-nec-superux${UNAME_RELEASE} exit ;; SX-7:SUPER-UX:*:*) echo sx7-nec-superux${UNAME_RELEASE} exit ;; SX-8:SUPER-UX:*:*) echo sx8-nec-superux${UNAME_RELEASE} exit ;; SX-8R:SUPER-UX:*:*) echo sx8r-nec-superux${UNAME_RELEASE} exit ;; Power*:Rhapsody:*:*) echo powerpc-apple-rhapsody${UNAME_RELEASE} exit ;; *:Rhapsody:*:*) echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} exit ;; *:Darwin:*:*) UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown case $UNAME_PROCESSOR in unknown) UNAME_PROCESSOR=powerpc ;; esac echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} exit ;; *:procnto*:*:* | *:QNX:[0123456789]*:*) UNAME_PROCESSOR=`uname -p` if test "$UNAME_PROCESSOR" = "x86"; then UNAME_PROCESSOR=i386 UNAME_MACHINE=pc fi echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} exit ;; *:QNX:*:4*) echo i386-pc-qnx exit ;; NSE-?:NONSTOP_KERNEL:*:*) echo nse-tandem-nsk${UNAME_RELEASE} exit ;; NSR-?:NONSTOP_KERNEL:*:*) echo nsr-tandem-nsk${UNAME_RELEASE} exit ;; *:NonStop-UX:*:*) echo mips-compaq-nonstopux exit ;; BS2000:POSIX*:*:*) echo bs2000-siemens-sysv exit ;; DS/*:UNIX_System_V:*:*) echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} exit ;; *:Plan9:*:*) # "uname -m" is not consistent, so use $cputype instead. 386 # is converted to i386 for consistency with other x86 # operating systems. if test "$cputype" = "386"; then UNAME_MACHINE=i386 else UNAME_MACHINE="$cputype" fi echo ${UNAME_MACHINE}-unknown-plan9 exit ;; *:TOPS-10:*:*) echo pdp10-unknown-tops10 exit ;; *:TENEX:*:*) echo pdp10-unknown-tenex exit ;; KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) echo pdp10-dec-tops20 exit ;; XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) echo pdp10-xkl-tops20 exit ;; *:TOPS-20:*:*) echo pdp10-unknown-tops20 exit ;; *:ITS:*:*) echo pdp10-unknown-its exit ;; SEI:*:*:SEIUX) echo mips-sei-seiux${UNAME_RELEASE} exit ;; *:DragonFly:*:*) echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` exit ;; *:*VMS:*:*) UNAME_MACHINE=`(uname -p) 2>/dev/null` case "${UNAME_MACHINE}" in A*) echo alpha-dec-vms ; exit ;; I*) echo ia64-dec-vms ; exit ;; V*) echo vax-dec-vms ; exit ;; esac ;; *:XENIX:*:SysV) echo i386-pc-xenix exit ;; i*86:skyos:*:*) echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//' exit ;; i*86:rdos:*:*) echo ${UNAME_MACHINE}-pc-rdos exit ;; esac #echo '(No uname command or uname output not recognized.)' 1>&2 #echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2 eval $set_cc_for_build cat >$dummy.c < # include #endif main () { #if defined (sony) #if defined (MIPSEB) /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, I don't know.... */ printf ("mips-sony-bsd\n"); exit (0); #else #include printf ("m68k-sony-newsos%s\n", #ifdef NEWSOS4 "4" #else "" #endif ); exit (0); #endif #endif #if defined (__arm) && defined (__acorn) && defined (__unix) printf ("arm-acorn-riscix\n"); exit (0); #endif #if defined (hp300) && !defined (hpux) printf ("m68k-hp-bsd\n"); exit (0); #endif #if defined (NeXT) #if !defined (__ARCHITECTURE__) #define __ARCHITECTURE__ "m68k" #endif int version; version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; if (version < 4) printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version); else printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version); exit (0); #endif #if defined (MULTIMAX) || defined (n16) #if defined (UMAXV) printf ("ns32k-encore-sysv\n"); exit (0); #else #if defined (CMU) printf ("ns32k-encore-mach\n"); exit (0); #else printf ("ns32k-encore-bsd\n"); exit (0); #endif #endif #endif #if defined (__386BSD__) printf ("i386-pc-bsd\n"); exit (0); #endif #if defined (sequent) #if defined (i386) printf ("i386-sequent-dynix\n"); exit (0); #endif #if defined (ns32000) printf ("ns32k-sequent-dynix\n"); exit (0); #endif #endif #if defined (_SEQUENT_) struct utsname un; uname(&un); if (strncmp(un.version, "V2", 2) == 0) { printf ("i386-sequent-ptx2\n"); exit (0); } if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ printf ("i386-sequent-ptx1\n"); exit (0); } printf ("i386-sequent-ptx\n"); exit (0); #endif #if defined (vax) # if !defined (ultrix) # include # if defined (BSD) # if BSD == 43 printf ("vax-dec-bsd4.3\n"); exit (0); # else # if BSD == 199006 printf ("vax-dec-bsd4.3reno\n"); exit (0); # else printf ("vax-dec-bsd\n"); exit (0); # endif # endif # else printf ("vax-dec-bsd\n"); exit (0); # endif # else printf ("vax-dec-ultrix\n"); exit (0); # endif #endif #if defined (alliant) && defined (i860) printf ("i860-alliant-bsd\n"); exit (0); #endif exit (1); } EOF $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` && { echo "$SYSTEM_NAME"; exit; } # Apollos put the system type in the environment. test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; } # Convex versions that predate uname can use getsysinfo(1) if [ -x /usr/convex/getsysinfo ] then case `getsysinfo -f cpu_type` in c1*) echo c1-convex-bsd exit ;; c2*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit ;; c34*) echo c34-convex-bsd exit ;; c38*) echo c38-convex-bsd exit ;; c4*) echo c4-convex-bsd exit ;; esac fi cat >&2 < in order to provide the needed information to handle your system. config.guess timestamp = $timestamp uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` /bin/uname -X = `(/bin/uname -X) 2>/dev/null` hostinfo = `(hostinfo) 2>/dev/null` /bin/universe = `(/bin/universe) 2>/dev/null` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` /bin/arch = `(/bin/arch) 2>/dev/null` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` UNAME_MACHINE = ${UNAME_MACHINE} UNAME_RELEASE = ${UNAME_RELEASE} UNAME_SYSTEM = ${UNAME_SYSTEM} UNAME_VERSION = ${UNAME_VERSION} EOF exit 1 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: nam-1.15/config.h0000664000076400007660000001241307051066453012521 0ustar tomhnsnam/* * Copyright (c) 1995-1997 The Regents of the University of California. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the Network Research * Group at Lawrence Berkeley National Laboratory. * 4. Neither the name of the University nor of the Laboratory may be used * to endorse or promote products derived from this software without * specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * @(#) $Header: /cvsroot/nsnam/nam-1/config.h,v 1.11 2000/02/11 20:12:27 haoboy Exp $ (LBL) */ #ifndef nam_config_h #define nam_config_h /* pick up standard types */ #include #if STDC_HEADERS #include #include #endif /* get autoconf magic */ #ifndef WIN32 #include "autoconf.h" #else #include "autoconf-win32.h" #endif /* don't use u_int, use int32_t */ typedef int32_t nsaddr_t; typedef int32_t nsmask_t; #define NS_ALIGN (8) /* byte alignment for structs (eg packet.cc) */ /* some global definitions */ #define SMALL_LEN 32 #define MID_LEN 256 #define BIG_LEN 4096 #define HUGE_LEN 65536 #define TRUE 1 #define FALSE 0 #include #if (defined(__hpux) || defined(_AIX)) && defined(__cplusplus) #include #include /* For clock_t */ extern "C" { #include int strcasecmp(const char *, const char *); clock_t clock(void); #if !defined(__hpux) int gethostid(void); #endif #if !defined(_AIX41) && !defined(sun) && !defined(__hpux) void srandom(int); #endif long random(void); time_t time(time_t *); char *ctime(const time_t *); } #endif #if defined(NEED_SUNOS_PROTOS) && defined(__cplusplus) extern "C" { struct timeval; struct timezone; int gettimeofday(struct timeval*, ...); int ioctl(int fd, int request, ...); int close(int); int strcasecmp(const char*, const char*); int srandom(int); /* (int) for sunos, (unsigned) for solaris */ int random(); int socket(int, int, int); int setsockopt(int s, int level, int optname, void* optval, int optlen); struct sockaddr; int connect(int s, sockaddr*, int); int bind(int s, sockaddr*, int); struct msghdr; int send(int s, void*, int len, int flags); int sendmsg(int, msghdr*, int); int recv(int, void*, int len, int flags); int recvfrom(int, void*, int len, int flags, sockaddr*, int); int gethostid(); int getpid(); int gethostname(char*, int); void abort(); } #endif #ifdef WIN32 #include #include #include /* For clock_t */ #include #define NOMINMAX #undef min #undef max #undef abs #define MAXHOSTNAMELEN 256 #define _SYS_NMLN 9 struct utsname { char sysname[_SYS_NMLN]; char nodename[_SYS_NMLN]; char release[_SYS_NMLN]; char version[_SYS_NMLN]; char machine[_SYS_NMLN]; }; typedef char *caddr_t; struct iovec { caddr_t iov_base; int iov_len; }; #ifndef TIMEZONE_DEFINED_ #define TIMEZONE_DEFINED_ struct timezone { int tz_minuteswest; int tz_dsttime; }; #endif typedef int pid_t; typedef int uid_t; typedef int gid_t; #if defined(__cplusplus) extern "C" { #endif int uname(struct utsname *); int getopt(int, char * const *, const char *); int strcasecmp(const char *, const char *); #define srandom srand #define random rand int gettimeofday(struct timeval *p, struct timezone *z); int gethostid(void); int getuid(void); int getgid(void); int getpid(void); int nice(int); int sendmsg(int, struct msghdr*, int); #define bzero(dest,count) memset(dest,0,count) #define bcopy(src,dest,size) memcpy(dest,src,size) #if defined(__cplusplus) } #endif #define ECONNREFUSED WSAECONNREFUSED #define ENETUNREACH WSAENETUNREACH #define EHOSTUNREACH WSAEHOSTUNREACH #define EWOULDBLOCK WSAEWOULDBLOCK #define M_PI 3.14159265358979323846 #endif /* WIN32 */ #ifdef sgi #include #endif // Declare our implementation of snprintf() so that ns etc. can use it. #ifndef HAVE_SNPRINTF extern "C" { extern int snprintf(char *buf, int size, const char *fmt, ...); } #endif #endif /* nam_config_h */ nam-1.15/config.sub0000775000076400007660000007763110566153430013100 0ustar tomhnsnam#! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, # Inc. timestamp='2007-01-18' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software # can handle that machine. It does not imply ALL GNU software can. # # This file is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA # 02110-1301, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Please send patches to . Submit a context # diff and a properly formatted ChangeLog entry. # # Configuration subroutine to validate and canonicalize a configuration type. # Supply the specified configuration type as an argument. # If it is invalid, we print an error message on stderr and exit with code 1. # Otherwise, we print the canonical config type on stdout and succeed. # This file is supposed to be the same for all GNU packages # and recognize all the CPU types, system types and aliases # that are meaningful with *any* GNU software. # Each package is responsible for reporting which valid configurations # it does not support. The user should be able to distinguish # a failure to support a valid configuration from a meaningless # configuration. # The goal of this file is to map all the various variations of a given # machine specification into a single specification in the form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM # or in some cases, the newer four-part form: # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM # It is wrong to echo any other type of specification. me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] CPU-MFR-OPSYS $0 [OPTION] ALIAS Canonicalize a configuration name. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.sub ($timestamp) Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit ;; --version | -v ) echo "$version" ; exit ;; --help | --h* | -h ) echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" exit 1 ;; *local*) # First pass through any local machine types. echo $1 exit ;; * ) break ;; esac done case $# in 0) echo "$me: missing argument$help" >&2 exit 1;; 1) ;; *) echo "$me: too many arguments$help" >&2 exit 1;; esac # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). # Here we must recognize all the valid KERNEL-OS combinations. maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` case $maybe_os in nto-qnx* | linux-gnu* | linux-dietlibc | linux-newlib* | linux-uclibc* | \ uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | \ storm-chaos* | os2-emx* | rtmk-nova*) os=-$maybe_os basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` ;; *) basic_machine=`echo $1 | sed 's/-[^-]*$//'` if [ $basic_machine != $1 ] then os=`echo $1 | sed 's/.*-/-/'` else os=; fi ;; esac ### Let's recognize common machines as not being operating systems so ### that things like config.sub decstation-3100 work. We also ### recognize some manufacturers as not being operating systems, so we ### can provide default operating systems below. case $os in -sun*os*) # Prevent following clause from handling this invalid input. ;; -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ -apple | -axis | -knuth | -cray) os= basic_machine=$1 ;; -sim | -cisco | -oki | -wec | -winbond) os= basic_machine=$1 ;; -scout) ;; -wrs) os=-vxworks basic_machine=$1 ;; -chorusos*) os=-chorusos basic_machine=$1 ;; -chorusrdb) os=-chorusrdb basic_machine=$1 ;; -hiux*) os=-hiuxwe2 ;; -sco6) os=-sco5v6 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco5) os=-sco3.2v5 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco4) os=-sco3.2v4 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2.[4-9]*) os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2v[4-9]*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco5v6*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco*) os=-sco3.2v2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -udk*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -isc) os=-isc2.2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -clix*) basic_machine=clipper-intergraph ;; -isc*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -lynx*) os=-lynxos ;; -ptx*) basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` ;; -windowsnt*) os=`echo $os | sed -e 's/windowsnt/winnt/'` ;; -psos*) os=-psos ;; -mint | -mint[0-9]*) basic_machine=m68k-atari os=-mint ;; esac # Decode aliases for certain CPU-COMPANY combinations. case $basic_machine in # Recognize the basic CPU types without company name. # Some are omitted here because they have special meanings below. 1750a | 580 \ | a29k \ | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ | am33_2.0 \ | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \ | bfin \ | c4x | clipper \ | d10v | d30v | dlx | dsp16xx \ | fido | fr30 | frv \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | i370 | i860 | i960 | ia64 \ | ip2k | iq2000 \ | m32c | m32r | m32rle | m68000 | m68k | m88k \ | maxq | mb | microblaze | mcore | mep \ | mips | mipsbe | mipseb | mipsel | mipsle \ | mips16 \ | mips64 | mips64el \ | mips64vr | mips64vrel \ | mips64orion | mips64orionel \ | mips64vr4100 | mips64vr4100el \ | mips64vr4300 | mips64vr4300el \ | mips64vr5000 | mips64vr5000el \ | mips64vr5900 | mips64vr5900el \ | mipsisa32 | mipsisa32el \ | mipsisa32r2 | mipsisa32r2el \ | mipsisa64 | mipsisa64el \ | mipsisa64r2 | mipsisa64r2el \ | mipsisa64sb1 | mipsisa64sb1el \ | mipsisa64sr71k | mipsisa64sr71kel \ | mipstx39 | mipstx39el \ | mn10200 | mn10300 \ | mt \ | msp430 \ | nios | nios2 \ | ns16k | ns32k \ | or32 \ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ | pyramid \ | score \ | sh | sh[1234] | sh[24]a | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ | spu | strongarm \ | tahoe | thumb | tic4x | tic80 | tron \ | v850 | v850e \ | we32k \ | x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \ | z8k) basic_machine=$basic_machine-unknown ;; m6811 | m68hc11 | m6812 | m68hc12) # Motorola 68HC11/12. basic_machine=$basic_machine-unknown os=-none ;; m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) ;; ms1) basic_machine=mt-unknown ;; # We use `pc' rather than `unknown' # because (1) that's what they normally are, and # (2) the word "unknown" tends to confuse beginning users. i*86 | x86_64) basic_machine=$basic_machine-pc ;; # Object if more than one company name word. *-*-*) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; # Recognize the basic CPU types with company name. 580-* \ | a29k-* \ | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ | avr-* | avr32-* \ | bfin-* | bs2000-* \ | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \ | clipper-* | craynv-* | cydra-* \ | d10v-* | d30v-* | dlx-* \ | elxsi-* \ | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ | h8300-* | h8500-* \ | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ | i*86-* | i860-* | i960-* | ia64-* \ | ip2k-* | iq2000-* \ | m32c-* | m32r-* | m32rle-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ | m88110-* | m88k-* | maxq-* | mcore-* \ | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ | mips16-* \ | mips64-* | mips64el-* \ | mips64vr-* | mips64vrel-* \ | mips64orion-* | mips64orionel-* \ | mips64vr4100-* | mips64vr4100el-* \ | mips64vr4300-* | mips64vr4300el-* \ | mips64vr5000-* | mips64vr5000el-* \ | mips64vr5900-* | mips64vr5900el-* \ | mipsisa32-* | mipsisa32el-* \ | mipsisa32r2-* | mipsisa32r2el-* \ | mipsisa64-* | mipsisa64el-* \ | mipsisa64r2-* | mipsisa64r2el-* \ | mipsisa64sb1-* | mipsisa64sb1el-* \ | mipsisa64sr71k-* | mipsisa64sr71kel-* \ | mipstx39-* | mipstx39el-* \ | mmix-* \ | mt-* \ | msp430-* \ | nios-* | nios2-* \ | none-* | np1-* | ns16k-* | ns32k-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ | pyramid-* \ | romp-* | rs6000-* \ | sh-* | sh[1234]-* | sh[24]a-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ | sparclite-* \ | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | strongarm-* | sv1-* | sx?-* \ | tahoe-* | thumb-* \ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ | tron-* \ | v850-* | v850e-* | vax-* \ | we32k-* \ | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \ | xstormy16-* | xtensa-* \ | ymp-* \ | z8k-*) ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. 386bsd) basic_machine=i386-unknown os=-bsd ;; 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) basic_machine=m68000-att ;; 3b*) basic_machine=we32k-att ;; a29khif) basic_machine=a29k-amd os=-udi ;; abacus) basic_machine=abacus-unknown ;; adobe68k) basic_machine=m68010-adobe os=-scout ;; alliant | fx80) basic_machine=fx80-alliant ;; altos | altos3068) basic_machine=m68k-altos ;; am29k) basic_machine=a29k-none os=-bsd ;; amd64) basic_machine=x86_64-pc ;; amd64-*) basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; amdahl) basic_machine=580-amdahl os=-sysv ;; amiga | amiga-*) basic_machine=m68k-unknown ;; amigaos | amigados) basic_machine=m68k-unknown os=-amigaos ;; amigaunix | amix) basic_machine=m68k-unknown os=-sysv4 ;; apollo68) basic_machine=m68k-apollo os=-sysv ;; apollo68bsd) basic_machine=m68k-apollo os=-bsd ;; aux) basic_machine=m68k-apple os=-aux ;; balance) basic_machine=ns32k-sequent os=-dynix ;; c90) basic_machine=c90-cray os=-unicos ;; convex-c1) basic_machine=c1-convex os=-bsd ;; convex-c2) basic_machine=c2-convex os=-bsd ;; convex-c32) basic_machine=c32-convex os=-bsd ;; convex-c34) basic_machine=c34-convex os=-bsd ;; convex-c38) basic_machine=c38-convex os=-bsd ;; cray | j90) basic_machine=j90-cray os=-unicos ;; craynv) basic_machine=craynv-cray os=-unicosmp ;; cr16c) basic_machine=cr16c-unknown os=-elf ;; crds | unos) basic_machine=m68k-crds ;; crisv32 | crisv32-* | etraxfs*) basic_machine=crisv32-axis ;; cris | cris-* | etrax*) basic_machine=cris-axis ;; crx) basic_machine=crx-unknown os=-elf ;; da30 | da30-*) basic_machine=m68k-da30 ;; decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) basic_machine=mips-dec ;; decsystem10* | dec10*) basic_machine=pdp10-dec os=-tops10 ;; decsystem20* | dec20*) basic_machine=pdp10-dec os=-tops20 ;; delta | 3300 | motorola-3300 | motorola-delta \ | 3300-motorola | delta-motorola) basic_machine=m68k-motorola ;; delta88) basic_machine=m88k-motorola os=-sysv3 ;; djgpp) basic_machine=i586-pc os=-msdosdjgpp ;; dpx20 | dpx20-*) basic_machine=rs6000-bull os=-bosx ;; dpx2* | dpx2*-bull) basic_machine=m68k-bull os=-sysv3 ;; ebmon29k) basic_machine=a29k-amd os=-ebmon ;; elxsi) basic_machine=elxsi-elxsi os=-bsd ;; encore | umax | mmax) basic_machine=ns32k-encore ;; es1800 | OSE68k | ose68k | ose | OSE) basic_machine=m68k-ericsson os=-ose ;; fx2800) basic_machine=i860-alliant ;; genix) basic_machine=ns32k-ns ;; gmicro) basic_machine=tron-gmicro os=-sysv ;; go32) basic_machine=i386-pc os=-go32 ;; h3050r* | hiux*) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; h8300hms) basic_machine=h8300-hitachi os=-hms ;; h8300xray) basic_machine=h8300-hitachi os=-xray ;; h8500hms) basic_machine=h8500-hitachi os=-hms ;; harris) basic_machine=m88k-harris os=-sysv3 ;; hp300-*) basic_machine=m68k-hp ;; hp300bsd) basic_machine=m68k-hp os=-bsd ;; hp300hpux) basic_machine=m68k-hp os=-hpux ;; hp3k9[0-9][0-9] | hp9[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k2[0-9][0-9] | hp9k31[0-9]) basic_machine=m68000-hp ;; hp9k3[2-9][0-9]) basic_machine=m68k-hp ;; hp9k6[0-9][0-9] | hp6[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k7[0-79][0-9] | hp7[0-79][0-9]) basic_machine=hppa1.1-hp ;; hp9k78[0-9] | hp78[0-9]) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[0-9][13679] | hp8[0-9][13679]) basic_machine=hppa1.1-hp ;; hp9k8[0-9][0-9] | hp8[0-9][0-9]) basic_machine=hppa1.0-hp ;; hppa-next) os=-nextstep3 ;; hppaosf) basic_machine=hppa1.1-hp os=-osf ;; hppro) basic_machine=hppa1.1-hp os=-proelf ;; i370-ibm* | ibm*) basic_machine=i370-ibm ;; # I'm not sure what "Sysv32" means. Should this be sysv3.2? i*86v32) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv32 ;; i*86v4*) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv4 ;; i*86v) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv ;; i*86sol2) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-solaris2 ;; i386mach) basic_machine=i386-mach os=-mach ;; i386-vsta | vsta) basic_machine=i386-unknown os=-vsta ;; iris | iris4d) basic_machine=mips-sgi case $os in -irix*) ;; *) os=-irix4 ;; esac ;; isi68 | isi) basic_machine=m68k-isi os=-sysv ;; m88k-omron*) basic_machine=m88k-omron ;; magnum | m3230) basic_machine=mips-mips os=-sysv ;; merlin) basic_machine=ns32k-utek os=-sysv ;; mingw32) basic_machine=i386-pc os=-mingw32 ;; miniframe) basic_machine=m68000-convergent ;; *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) basic_machine=m68k-atari os=-mint ;; mips3*-*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` ;; mips3*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown ;; monitor) basic_machine=m68k-rom68k os=-coff ;; morphos) basic_machine=powerpc-unknown os=-morphos ;; msdos) basic_machine=i386-pc os=-msdos ;; ms1-*) basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` ;; mvs) basic_machine=i370-ibm os=-mvs ;; ncr3000) basic_machine=i486-ncr os=-sysv4 ;; netbsd386) basic_machine=i386-unknown os=-netbsd ;; netwinder) basic_machine=armv4l-rebel os=-linux ;; news | news700 | news800 | news900) basic_machine=m68k-sony os=-newsos ;; news1000) basic_machine=m68030-sony os=-newsos ;; news-3600 | risc-news) basic_machine=mips-sony os=-newsos ;; necv70) basic_machine=v70-nec os=-sysv ;; next | m*-next ) basic_machine=m68k-next case $os in -nextstep* ) ;; -ns2*) os=-nextstep2 ;; *) os=-nextstep3 ;; esac ;; nh3000) basic_machine=m68k-harris os=-cxux ;; nh[45]000) basic_machine=m88k-harris os=-cxux ;; nindy960) basic_machine=i960-intel os=-nindy ;; mon960) basic_machine=i960-intel os=-mon960 ;; nonstopux) basic_machine=mips-compaq os=-nonstopux ;; np1) basic_machine=np1-gould ;; nsr-tandem) basic_machine=nsr-tandem ;; op50n-* | op60c-*) basic_machine=hppa1.1-oki os=-proelf ;; openrisc | openrisc-*) basic_machine=or32-unknown ;; os400) basic_machine=powerpc-ibm os=-os400 ;; OSE68000 | ose68000) basic_machine=m68000-ericsson os=-ose ;; os68k) basic_machine=m68k-none os=-os68k ;; pa-hitachi) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; paragon) basic_machine=i860-intel os=-osf ;; pbd) basic_machine=sparc-tti ;; pbb) basic_machine=m68k-tti ;; pc532 | pc532-*) basic_machine=ns32k-pc532 ;; pc98) basic_machine=i386-pc ;; pc98-*) basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentium | p5 | k5 | k6 | nexgen | viac3) basic_machine=i586-pc ;; pentiumpro | p6 | 6x86 | athlon | athlon_*) basic_machine=i686-pc ;; pentiumii | pentium2 | pentiumiii | pentium3) basic_machine=i686-pc ;; pentium4) basic_machine=i786-pc ;; pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumpro-* | p6-* | 6x86-* | athlon-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentium4-*) basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pn) basic_machine=pn-gould ;; power) basic_machine=power-ibm ;; ppc) basic_machine=powerpc-unknown ;; ppc-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppcle | powerpclittle | ppc-le | powerpc-little) basic_machine=powerpcle-unknown ;; ppcle-* | powerpclittle-*) basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64) basic_machine=powerpc64-unknown ;; ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64le | powerpc64little | ppc64-le | powerpc64-little) basic_machine=powerpc64le-unknown ;; ppc64le-* | powerpc64little-*) basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ps2) basic_machine=i386-ibm ;; pw32) basic_machine=i586-unknown os=-pw32 ;; rdos) basic_machine=i386-pc os=-rdos ;; rom68k) basic_machine=m68k-rom68k os=-coff ;; rm[46]00) basic_machine=mips-siemens ;; rtpc | rtpc-*) basic_machine=romp-ibm ;; s390 | s390-*) basic_machine=s390-ibm ;; s390x | s390x-*) basic_machine=s390x-ibm ;; sa29200) basic_machine=a29k-amd os=-udi ;; sb1) basic_machine=mipsisa64sb1-unknown ;; sb1el) basic_machine=mipsisa64sb1el-unknown ;; sde) basic_machine=mipsisa32-sde os=-elf ;; sei) basic_machine=mips-sei os=-seiux ;; sequent) basic_machine=i386-sequent ;; sh) basic_machine=sh-hitachi os=-hms ;; sh5el) basic_machine=sh5le-unknown ;; sh64) basic_machine=sh64-unknown ;; sparclite-wrs | simso-wrs) basic_machine=sparclite-wrs os=-vxworks ;; sps7) basic_machine=m68k-bull os=-sysv2 ;; spur) basic_machine=spur-unknown ;; st2000) basic_machine=m68k-tandem ;; stratus) basic_machine=i860-stratus os=-sysv4 ;; sun2) basic_machine=m68000-sun ;; sun2os3) basic_machine=m68000-sun os=-sunos3 ;; sun2os4) basic_machine=m68000-sun os=-sunos4 ;; sun3os3) basic_machine=m68k-sun os=-sunos3 ;; sun3os4) basic_machine=m68k-sun os=-sunos4 ;; sun4os3) basic_machine=sparc-sun os=-sunos3 ;; sun4os4) basic_machine=sparc-sun os=-sunos4 ;; sun4sol2) basic_machine=sparc-sun os=-solaris2 ;; sun3 | sun3-*) basic_machine=m68k-sun ;; sun4) basic_machine=sparc-sun ;; sun386 | sun386i | roadrunner) basic_machine=i386-sun ;; sv1) basic_machine=sv1-cray os=-unicos ;; symmetry) basic_machine=i386-sequent os=-dynix ;; t3e) basic_machine=alphaev5-cray os=-unicos ;; t90) basic_machine=t90-cray os=-unicos ;; tic54x | c54x*) basic_machine=tic54x-unknown os=-coff ;; tic55x | c55x*) basic_machine=tic55x-unknown os=-coff ;; tic6x | c6x*) basic_machine=tic6x-unknown os=-coff ;; tx39) basic_machine=mipstx39-unknown ;; tx39el) basic_machine=mipstx39el-unknown ;; toad1) basic_machine=pdp10-xkl os=-tops20 ;; tower | tower-32) basic_machine=m68k-ncr ;; tpf) basic_machine=s390x-ibm os=-tpf ;; udi29k) basic_machine=a29k-amd os=-udi ;; ultra3) basic_machine=a29k-nyu os=-sym1 ;; v810 | necv810) basic_machine=v810-nec os=-none ;; vaxv) basic_machine=vax-dec os=-sysv ;; vms) basic_machine=vax-dec os=-vms ;; vpp*|vx|vx-*) basic_machine=f301-fujitsu ;; vxworks960) basic_machine=i960-wrs os=-vxworks ;; vxworks68) basic_machine=m68k-wrs os=-vxworks ;; vxworks29k) basic_machine=a29k-wrs os=-vxworks ;; w65*) basic_machine=w65-wdc os=-none ;; w89k-*) basic_machine=hppa1.1-winbond os=-proelf ;; xbox) basic_machine=i686-pc os=-mingw32 ;; xps | xps100) basic_machine=xps100-honeywell ;; ymp) basic_machine=ymp-cray os=-unicos ;; z8k-*-coff) basic_machine=z8k-unknown os=-sim ;; none) basic_machine=none-none os=-none ;; # Here we handle the default manufacturer of certain CPU types. It is in # some cases the only manufacturer, in others, it is the most popular. w89k) basic_machine=hppa1.1-winbond ;; op50n) basic_machine=hppa1.1-oki ;; op60c) basic_machine=hppa1.1-oki ;; romp) basic_machine=romp-ibm ;; mmix) basic_machine=mmix-knuth ;; rs6000) basic_machine=rs6000-ibm ;; vax) basic_machine=vax-dec ;; pdp10) # there are many clones, so DEC is not a safe bet basic_machine=pdp10-unknown ;; pdp11) basic_machine=pdp11-dec ;; we32k) basic_machine=we32k-att ;; sh[1234] | sh[24]a | sh[34]eb | sh[1234]le | sh[23]ele) basic_machine=sh-unknown ;; sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v) basic_machine=sparc-sun ;; cydra) basic_machine=cydra-cydrome ;; orion) basic_machine=orion-highlevel ;; orion105) basic_machine=clipper-highlevel ;; mac | mpw | mac-mpw) basic_machine=m68k-apple ;; pmac | pmac-mpw) basic_machine=powerpc-apple ;; *-unknown) # Make sure to match an already-canonicalized machine name. ;; *) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; esac # Here we canonicalize certain aliases for manufacturers. case $basic_machine in *-digital*) basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` ;; *-commodore*) basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` ;; *) ;; esac # Decode manufacturer-specific aliases for certain operating systems. if [ x"$os" != x"" ] then case $os in # First match some system type aliases # that might get confused with valid system types. # -solaris* is a basic system type, with this one exception. -solaris1 | -solaris1.*) os=`echo $os | sed -e 's|solaris1|sunos4|'` ;; -solaris) os=-solaris2 ;; -svr4*) os=-sysv4 ;; -unixware*) os=-sysv4.2uw ;; -gnu/linux*) os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` ;; # First accept the basic system types. # The portable systems comes first. # Each alternative MUST END IN A *, to match a version number. # -sysv* is not here because it comes later, after sysvr4. -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ | -*vms* | -sco* | -esix* | -isc* | -aix* | -sunos | -sunos[34]*\ | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \ | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ | -aos* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ | -openbsd* | -solidbsd* \ | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ | -chorusos* | -chorusrdb* \ | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ | -mingw32* | -linux-gnu* | -linux-newlib* | -linux-uclibc* \ | -uxpv* | -beos* | -mpeix* | -udk* \ | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ | -skyos* | -haiku* | -rdos* | -toppers* | -drops*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) case $basic_machine in x86-* | i*86-*) ;; *) os=-nto$os ;; esac ;; -nto-qnx*) ;; -nto*) os=`echo $os | sed -e 's|nto|nto-qnx|'` ;; -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) ;; -mac*) os=`echo $os | sed -e 's|mac|macos|'` ;; -linux-dietlibc) os=-linux-dietlibc ;; -linux*) os=`echo $os | sed -e 's|linux|linux-gnu|'` ;; -sunos5*) os=`echo $os | sed -e 's|sunos5|solaris2|'` ;; -sunos6*) os=`echo $os | sed -e 's|sunos6|solaris3|'` ;; -opened*) os=-openedition ;; -os400*) os=-os400 ;; -wince*) os=-wince ;; -osfrose*) os=-osfrose ;; -osf*) os=-osf ;; -utek*) os=-bsd ;; -dynix*) os=-bsd ;; -acis*) os=-aos ;; -atheos*) os=-atheos ;; -syllable*) os=-syllable ;; -386bsd) os=-bsd ;; -ctix* | -uts*) os=-sysv ;; -nova*) os=-rtmk-nova ;; -ns2 ) os=-nextstep2 ;; -nsk*) os=-nsk ;; # Preserve the version number of sinix5. -sinix5.*) os=`echo $os | sed -e 's|sinix|sysv|'` ;; -sinix*) os=-sysv4 ;; -tpf*) os=-tpf ;; -triton*) os=-sysv3 ;; -oss*) os=-sysv3 ;; -svr4) os=-sysv4 ;; -svr3) os=-sysv3 ;; -sysvr4) os=-sysv4 ;; # This must come after -sysvr4. -sysv*) ;; -ose*) os=-ose ;; -es1800*) os=-ose ;; -xenix) os=-xenix ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) os=-mint ;; -aros*) os=-aros ;; -kaos*) os=-kaos ;; -zvmoe) os=-zvmoe ;; -none) ;; *) # Get rid of the `-' at the beginning of $os. os=`echo $os | sed 's/[^-]*-//'` echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 exit 1 ;; esac else # Here we handle the default operating systems that come with various machines. # The value should be what the vendor currently ships out the door with their # machine or put another way, the most popular os provided with the machine. # Note that if you're going to try to match "-MANUFACTURER" here (say, # "-sun"), then you have to tell the case statement up towards the top # that MANUFACTURER isn't an operating system. Otherwise, code above # will signal an error saying that MANUFACTURER isn't an operating # system, and we'll never get to this point. case $basic_machine in score-*) os=-elf ;; spu-*) os=-elf ;; *-acorn) os=-riscix1.2 ;; arm*-rebel) os=-linux ;; arm*-semi) os=-aout ;; c4x-* | tic4x-*) os=-coff ;; # This must come before the *-dec entry. pdp10-*) os=-tops20 ;; pdp11-*) os=-none ;; *-dec | vax-*) os=-ultrix4.2 ;; m68*-apollo) os=-domain ;; i386-sun) os=-sunos4.0.2 ;; m68000-sun) os=-sunos3 # This also exists in the configure program, but was not the # default. # os=-sunos4 ;; m68*-cisco) os=-aout ;; mep-*) os=-elf ;; mips*-cisco) os=-elf ;; mips*-*) os=-elf ;; or32-*) os=-coff ;; *-tti) # must be before sparc entry or we get the wrong os. os=-sysv3 ;; sparc-* | *-sun) os=-sunos4.1.1 ;; *-be) os=-beos ;; *-haiku) os=-haiku ;; *-ibm) os=-aix ;; *-knuth) os=-mmixware ;; *-wec) os=-proelf ;; *-winbond) os=-proelf ;; *-oki) os=-proelf ;; *-hp) os=-hpux ;; *-hitachi) os=-hiux ;; i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) os=-sysv ;; *-cbm) os=-amigaos ;; *-dg) os=-dgux ;; *-dolphin) os=-sysv3 ;; m68k-ccur) os=-rtu ;; m88k-omron*) os=-luna ;; *-next ) os=-nextstep ;; *-sequent) os=-ptx ;; *-crds) os=-unos ;; *-ns) os=-genix ;; i370-*) os=-mvs ;; *-next) os=-nextstep3 ;; *-gould) os=-sysv ;; *-highlevel) os=-bsd ;; *-encore) os=-bsd ;; *-sgi) os=-irix ;; *-siemens) os=-sysv4 ;; *-masscomp) os=-rtu ;; f30[01]-fujitsu | f700-fujitsu) os=-uxpv ;; *-rom68k) os=-coff ;; *-*bug) os=-coff ;; *-apple) os=-macos ;; *-atari*) os=-mint ;; *) os=-none ;; esac fi # Here we handle the case where we know the os, and the CPU type, but not the # manufacturer. We pick the logical manufacturer. vendor=unknown case $basic_machine in *-unknown) case $os in -riscix*) vendor=acorn ;; -sunos*) vendor=sun ;; -aix*) vendor=ibm ;; -beos*) vendor=be ;; -hpux*) vendor=hp ;; -mpeix*) vendor=hp ;; -hiux*) vendor=hitachi ;; -unos*) vendor=crds ;; -dgux*) vendor=dg ;; -luna*) vendor=omron ;; -genix*) vendor=ns ;; -mvs* | -opened*) vendor=ibm ;; -os400*) vendor=ibm ;; -ptx*) vendor=sequent ;; -tpf*) vendor=ibm ;; -vxsim* | -vxworks* | -windiss*) vendor=wrs ;; -aux*) vendor=apple ;; -hms*) vendor=hitachi ;; -mpw* | -macos*) vendor=apple ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) vendor=atari ;; -vos*) vendor=stratus ;; esac basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` ;; esac echo $basic_machine$os exit # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: nam-1.15/configure0000755000076400007660000075075211655017162013025 0ustar tomhnsnam#! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.68. # # # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, # 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software # Foundation, Inc. # # # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH if test "x$CONFIG_SHELL" = x; then as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which # is contrary to our usage. Disable this feature. alias -g '\${1+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else case \`(set -o) 2>/dev/null\` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi " as_required="as_fn_return () { (exit \$1); } as_fn_success () { as_fn_return 0; } as_fn_failure () { as_fn_return 1; } as_fn_ret_success () { return 0; } as_fn_ret_failure () { return 1; } exitcode=0 as_fn_success || { exitcode=1; echo as_fn_success failed.; } as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : else exitcode=1; echo positional parameters were not saved. fi test x\$exitcode = x0 || exit 1" as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 test \$(( 1 + 1 )) = 2 || exit 1" if (eval "$as_required") 2>/dev/null; then : as_have_required=yes else as_have_required=no fi if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR as_found=false for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. as_found=: case $as_dir in #( /*) for as_base in sh bash ksh sh5; do # Try only shells that exist, to save several forks. as_shell=$as_dir/$as_base if { test -f "$as_shell" || test -f "$as_shell.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : CONFIG_SHELL=$as_shell as_have_required=yes if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : break 2 fi fi done;; esac as_found=false done $as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : CONFIG_SHELL=$SHELL as_have_required=yes fi; } IFS=$as_save_IFS if test "x$CONFIG_SHELL" != x; then : # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV export CONFIG_SHELL case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec "$CONFIG_SHELL" $as_opts "$as_myself" ${1+"$@"} fi if test x$as_have_required = xno; then : $as_echo "$0: This script requires a shell more modern than all" $as_echo "$0: the shells that I found on your system." if test x${ZSH_VERSION+set} = xset ; then $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" $as_echo "$0: be upgraded to zsh 4.3.4 or later." else $as_echo "$0: Please tell bug-autoconf@gnu.org about your system, $0: including any error possibly output before this $0: message. Then install a modern shell, or manually run $0: the script under such a shell if you do have one." fi exit 1 fi fi fi SHELL=${CONFIG_SHELL-/bin/sh} export SHELL # Unset more variables known to interfere with behavior of common tools. CLICOLOR_FORCE= GREP_OPTIONS= unset CLICOLOR_FORCE GREP_OPTIONS ## --------------------- ## ## M4sh Shell Functions. ## ## --------------------- ## # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits as_lineno_1=$LINENO as_lineno_1a=$LINENO as_lineno_2=$LINENO as_lineno_2a=$LINENO eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) sed -n ' p /[$]LINENO/= ' <$as_myself | sed ' s/[$]LINENO.*/&-/ t lineno b :lineno N :loop s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ t loop s/-\n.*// ' >$as_me.lineno && chmod +x "$as_me.lineno" || { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the # original and so on. Autoconf is especially sensitive to this). . "./$as_me.lineno" # Exit status is that of the last command. exit } ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -p'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -p' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -p' fi else as_ln_s='cp -p' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi if test -x / >/dev/null 2>&1; then as_test_x='test -x' else if ls -dL / >/dev/null 2>&1; then as_ls_L_option=L else as_ls_L_option= fi as_test_x=' eval sh -c '\'' if test -d "$1"; then test -d "$1/."; else case $1 in #( -*)set "./$1";; esac; case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( ???[sx]*):;;*)false;;esac;fi '\'' sh ' fi as_executable_p=$as_test_x # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" test -n "$DJDIR" || exec 7<&0 &1 # Name of the host. # hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, # so uname gets run too. ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` # # Initializations. # ac_default_prefix=/usr/local ac_clean_files= ac_config_libobj_dir=. LIBOBJS= cross_compiling=no subdirs= MFLAGS= MAKEFLAGS= # Identity of this package. PACKAGE_NAME= PACKAGE_TARNAME= PACKAGE_VERSION= PACKAGE_STRING= PACKAGE_BUGREPORT= PACKAGE_URL= ac_unique_file="main.cc" # Factoring default headers for most tests. ac_includes_default="\ #include #ifdef HAVE_SYS_TYPES_H # include #endif #ifdef HAVE_SYS_STAT_H # include #endif #ifdef STDC_HEADERS # include # include #else # ifdef HAVE_STDLIB_H # include # endif #endif #ifdef HAVE_STRING_H # if !defined STDC_HEADERS && defined HAVE_MEMORY_H # include # endif # include #endif #ifdef HAVE_STRINGS_H # include #endif #ifdef HAVE_INTTYPES_H # include #endif #ifdef HAVE_STDINT_H # include #endif #ifdef HAVE_UNISTD_H # include #endif" ac_subst_vars='LTLIBOBJS LIBOBJS INSTALL_DATA INSTALL_SCRIPT INSTALL_PROGRAM V_LSSCRIPT V_NS_TCL_LIB_STL V_STLOBJ V_AR V_RANLIB V_OBJ_CRYPT V_BROKEN_OBJ V_OBJ V_INCLUDE V_TARCMD V_SHELL V_SIGRET V_DEFINE V_LIB V_TAR_EXTRA V_CCOPT V_ALL V_LIB_TK V_LIB_TCL V_LIB_OTCL V_LIB_TCLCL V_TAR_TARGET V_STATIC V_DEFINES V_LIBS V_INCLUDES V_TCL2CPP V_LIBRARY_TK V_TKDOSNAMES V_LIBRARY_TCL V_TCLSH V_TCL_LIBRARY_FILES V_LIB_X11 V_INCLUDE_X11 ac_ct_CXX CXXFLAGS CXX target_os target_vendor target_cpu target host_os host_vendor host_cpu host build_os build_vendor build_cpu build EGREP GREP CPP OBJEXT EXEEXT ac_ct_CC CPPFLAGS LDFLAGS CFLAGS CC target_alias host_alias build_alias LIBS ECHO_T ECHO_N ECHO_C DEFS mandir localedir libdir psdir pdfdir dvidir htmldir infodir docdir oldincludedir includedir localstatedir sharedstatedir sysconfdir datadir datarootdir libexecdir sbindir bindir program_transform_name prefix exec_prefix PACKAGE_URL PACKAGE_BUGREPORT PACKAGE_STRING PACKAGE_VERSION PACKAGE_TARNAME PACKAGE_NAME PATH_SEPARATOR SHELL' ac_subst_files='' ac_user_opts=' enable_option_checking with_defaultoptions enable_release enable_debug enable_devel enable_static with_zlib with_zlib_ver with_tcl with_tcl_ver with_tk with_tk_ver with_tcldebug with_otcl with_Tcl with_tclcl ' ac_precious_vars='build_alias host_alias target_alias CC CFLAGS LDFLAGS LIBS CPPFLAGS CPP CXX CXXFLAGS CCC' # Initialize some variables set by options. ac_init_help= ac_init_version=false ac_unrecognized_opts= ac_unrecognized_sep= # The variables have the same names as the options, with # dashes changed to underlines. cache_file=/dev/null exec_prefix=NONE no_create= no_recursion= prefix=NONE program_prefix=NONE program_suffix=NONE program_transform_name=s,x,x, silent= site= srcdir= verbose= x_includes=NONE x_libraries=NONE # Installation directory options. # These are left unexpanded so users can "make install exec_prefix=/foo" # and all the variables that are supposed to be based on exec_prefix # by default will actually change. # Use braces instead of parens because sh, perl, etc. also accept them. # (The list follows the same order as the GNU Coding Standards.) bindir='${exec_prefix}/bin' sbindir='${exec_prefix}/sbin' libexecdir='${exec_prefix}/libexec' datarootdir='${prefix}/share' datadir='${datarootdir}' sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' includedir='${prefix}/include' oldincludedir='/usr/include' docdir='${datarootdir}/doc/${PACKAGE}' infodir='${datarootdir}/info' htmldir='${docdir}' dvidir='${docdir}' pdfdir='${docdir}' psdir='${docdir}' libdir='${exec_prefix}/lib' localedir='${datarootdir}/locale' mandir='${datarootdir}/man' ac_prev= ac_dashdash= for ac_option do # If the previous option needs an argument, assign it. if test -n "$ac_prev"; then eval $ac_prev=\$ac_option ac_prev= continue fi case $ac_option in *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; *=) ac_optarg= ;; *) ac_optarg=yes ;; esac # Accept the important Cygnus configure options, so we can diagnose typos. case $ac_dashdash$ac_option in --) ac_dashdash=yes ;; -bindir | --bindir | --bindi | --bind | --bin | --bi) ac_prev=bindir ;; -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) bindir=$ac_optarg ;; -build | --build | --buil | --bui | --bu) ac_prev=build_alias ;; -build=* | --build=* | --buil=* | --bui=* | --bu=*) build_alias=$ac_optarg ;; -cache-file | --cache-file | --cache-fil | --cache-fi \ | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) ac_prev=cache_file ;; -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) cache_file=$ac_optarg ;; --config-cache | -C) cache_file=config.cache ;; -datadir | --datadir | --datadi | --datad) ac_prev=datadir ;; -datadir=* | --datadir=* | --datadi=* | --datad=*) datadir=$ac_optarg ;; -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ | --dataroo | --dataro | --datar) ac_prev=datarootdir ;; -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) datarootdir=$ac_optarg ;; -disable-* | --disable-*) ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=no ;; -docdir | --docdir | --docdi | --doc | --do) ac_prev=docdir ;; -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) docdir=$ac_optarg ;; -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) ac_prev=dvidir ;; -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) dvidir=$ac_optarg ;; -enable-* | --enable-*) ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=\$ac_optarg ;; -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ | --exec | --exe | --ex) ac_prev=exec_prefix ;; -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ | --exec=* | --exe=* | --ex=*) exec_prefix=$ac_optarg ;; -gas | --gas | --ga | --g) # Obsolete; use --with-gas. with_gas=yes ;; -help | --help | --hel | --he | -h) ac_init_help=long ;; -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) ac_init_help=recursive ;; -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) ac_init_help=short ;; -host | --host | --hos | --ho) ac_prev=host_alias ;; -host=* | --host=* | --hos=* | --ho=*) host_alias=$ac_optarg ;; -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) ac_prev=htmldir ;; -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ | --ht=*) htmldir=$ac_optarg ;; -includedir | --includedir | --includedi | --included | --include \ | --includ | --inclu | --incl | --inc) ac_prev=includedir ;; -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ | --includ=* | --inclu=* | --incl=* | --inc=*) includedir=$ac_optarg ;; -infodir | --infodir | --infodi | --infod | --info | --inf) ac_prev=infodir ;; -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) infodir=$ac_optarg ;; -libdir | --libdir | --libdi | --libd) ac_prev=libdir ;; -libdir=* | --libdir=* | --libdi=* | --libd=*) libdir=$ac_optarg ;; -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ | --libexe | --libex | --libe) ac_prev=libexecdir ;; -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ | --libexe=* | --libex=* | --libe=*) libexecdir=$ac_optarg ;; -localedir | --localedir | --localedi | --localed | --locale) ac_prev=localedir ;; -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) localedir=$ac_optarg ;; -localstatedir | --localstatedir | --localstatedi | --localstated \ | --localstate | --localstat | --localsta | --localst | --locals) ac_prev=localstatedir ;; -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) localstatedir=$ac_optarg ;; -mandir | --mandir | --mandi | --mand | --man | --ma | --m) ac_prev=mandir ;; -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) mandir=$ac_optarg ;; -nfp | --nfp | --nf) # Obsolete; use --without-fp. with_fp=no ;; -no-create | --no-create | --no-creat | --no-crea | --no-cre \ | --no-cr | --no-c | -n) no_create=yes ;; -no-recursion | --no-recursion | --no-recursio | --no-recursi \ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) no_recursion=yes ;; -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ | --oldin | --oldi | --old | --ol | --o) ac_prev=oldincludedir ;; -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) oldincludedir=$ac_optarg ;; -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) ac_prev=prefix ;; -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) prefix=$ac_optarg ;; -program-prefix | --program-prefix | --program-prefi | --program-pref \ | --program-pre | --program-pr | --program-p) ac_prev=program_prefix ;; -program-prefix=* | --program-prefix=* | --program-prefi=* \ | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) program_prefix=$ac_optarg ;; -program-suffix | --program-suffix | --program-suffi | --program-suff \ | --program-suf | --program-su | --program-s) ac_prev=program_suffix ;; -program-suffix=* | --program-suffix=* | --program-suffi=* \ | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) program_suffix=$ac_optarg ;; -program-transform-name | --program-transform-name \ | --program-transform-nam | --program-transform-na \ | --program-transform-n | --program-transform- \ | --program-transform | --program-transfor \ | --program-transfo | --program-transf \ | --program-trans | --program-tran \ | --progr-tra | --program-tr | --program-t) ac_prev=program_transform_name ;; -program-transform-name=* | --program-transform-name=* \ | --program-transform-nam=* | --program-transform-na=* \ | --program-transform-n=* | --program-transform-=* \ | --program-transform=* | --program-transfor=* \ | --program-transfo=* | --program-transf=* \ | --program-trans=* | --program-tran=* \ | --progr-tra=* | --program-tr=* | --program-t=*) program_transform_name=$ac_optarg ;; -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) ac_prev=pdfdir ;; -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) pdfdir=$ac_optarg ;; -psdir | --psdir | --psdi | --psd | --ps) ac_prev=psdir ;; -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) psdir=$ac_optarg ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) silent=yes ;; -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) ac_prev=sbindir ;; -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ | --sbi=* | --sb=*) sbindir=$ac_optarg ;; -sharedstatedir | --sharedstatedir | --sharedstatedi \ | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ | --sharedst | --shareds | --shared | --share | --shar \ | --sha | --sh) ac_prev=sharedstatedir ;; -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ | --sha=* | --sh=*) sharedstatedir=$ac_optarg ;; -site | --site | --sit) ac_prev=site ;; -site=* | --site=* | --sit=*) site=$ac_optarg ;; -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) ac_prev=srcdir ;; -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) srcdir=$ac_optarg ;; -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ | --syscon | --sysco | --sysc | --sys | --sy) ac_prev=sysconfdir ;; -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) sysconfdir=$ac_optarg ;; -target | --target | --targe | --targ | --tar | --ta | --t) ac_prev=target_alias ;; -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) target_alias=$ac_optarg ;; -v | -verbose | --verbose | --verbos | --verbo | --verb) verbose=yes ;; -version | --version | --versio | --versi | --vers | -V) ac_init_version=: ;; -with-* | --with-*) ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=\$ac_optarg ;; -without-* | --without-*) ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=no ;; --x) # Obsolete; use --with-x. with_x=yes ;; -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ | --x-incl | --x-inc | --x-in | --x-i) ac_prev=x_includes ;; -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) x_includes=$ac_optarg ;; -x-libraries | --x-libraries | --x-librarie | --x-librari \ | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) ac_prev=x_libraries ;; -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) x_libraries=$ac_optarg ;; -*) as_fn_error $? "unrecognized option: \`$ac_option' Try \`$0 --help' for more information" ;; *=*) ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` # Reject names that are not valid shell variable names. case $ac_envvar in #( '' | [0-9]* | *[!_$as_cr_alnum]* ) as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; esac eval $ac_envvar=\$ac_optarg export $ac_envvar ;; *) # FIXME: should be removed in autoconf 3.0. $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" ;; esac done if test -n "$ac_prev"; then ac_option=--`echo $ac_prev | sed 's/_/-/g'` as_fn_error $? "missing argument to $ac_option" fi if test -n "$ac_unrecognized_opts"; then case $enable_option_checking in no) ;; fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; esac fi # Check all directory arguments for consistency. for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ datadir sysconfdir sharedstatedir localstatedir includedir \ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ libdir localedir mandir do eval ac_val=\$$ac_var # Remove trailing slashes. case $ac_val in */ ) ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` eval $ac_var=\$ac_val;; esac # Be sure to have absolute directory names. case $ac_val in [\\/$]* | ?:[\\/]* ) continue;; NONE | '' ) case $ac_var in *prefix ) continue;; esac;; esac as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" done # There might be people who depend on the old broken behavior: `$host' # used to hold the argument of --host etc. # FIXME: To remove some day. build=$build_alias host=$host_alias target=$target_alias # FIXME: To remove some day. if test "x$host_alias" != x; then if test "x$build_alias" = x; then cross_compiling=maybe $as_echo "$as_me: WARNING: if you wanted to set the --build type, don't use --host. If a cross compiler is detected then cross compile mode will be used" >&2 elif test "x$build_alias" != "x$host_alias"; then cross_compiling=yes fi fi ac_tool_prefix= test -n "$host_alias" && ac_tool_prefix=$host_alias- test "$silent" = yes && exec 6>/dev/null ac_pwd=`pwd` && test -n "$ac_pwd" && ac_ls_di=`ls -di .` && ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || as_fn_error $? "working directory cannot be determined" test "X$ac_ls_di" = "X$ac_pwd_ls_di" || as_fn_error $? "pwd does not report name of working directory" # Find the source files, if location was not specified. if test -z "$srcdir"; then ac_srcdir_defaulted=yes # Try the directory containing this script, then the parent directory. ac_confdir=`$as_dirname -- "$as_myself" || $as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_myself" : 'X\(//\)[^/]' \| \ X"$as_myself" : 'X\(//\)$' \| \ X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_myself" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` srcdir=$ac_confdir if test ! -r "$srcdir/$ac_unique_file"; then srcdir=.. fi else ac_srcdir_defaulted=no fi if test ! -r "$srcdir/$ac_unique_file"; then test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" fi ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" ac_abs_confdir=`( cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" pwd)` # When building in place, set srcdir=. if test "$ac_abs_confdir" = "$ac_pwd"; then srcdir=. fi # Remove unnecessary trailing slashes from srcdir. # Double slashes in file names in object file debugging info # mess up M-x gdb in Emacs. case $srcdir in */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; esac for ac_var in $ac_precious_vars; do eval ac_env_${ac_var}_set=\${${ac_var}+set} eval ac_env_${ac_var}_value=\$${ac_var} eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} eval ac_cv_env_${ac_var}_value=\$${ac_var} done # # Report the --help message. # if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF \`configure' configures this package to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... To assign environment variables (e.g., CC, CFLAGS...), specify them as VAR=VALUE. See below for descriptions of some of the useful variables. Defaults for the options are specified in brackets. Configuration: -h, --help display this help and exit --help=short display options specific to this package --help=recursive display the short help of all the included packages -V, --version display version information and exit -q, --quiet, --silent do not print \`checking ...' messages --cache-file=FILE cache test results in FILE [disabled] -C, --config-cache alias for \`--cache-file=config.cache' -n, --no-create do not create output files --srcdir=DIR find the sources in DIR [configure dir or \`..'] Installation directories: --prefix=PREFIX install architecture-independent files in PREFIX [$ac_default_prefix] --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX [PREFIX] By default, \`make install' will install all the files in \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify an installation prefix other than \`$ac_default_prefix' using \`--prefix', for instance \`--prefix=\$HOME'. For better control, use the options below. Fine tuning of the installation directories: --bindir=DIR user executables [EPREFIX/bin] --sbindir=DIR system admin executables [EPREFIX/sbin] --libexecdir=DIR program executables [EPREFIX/libexec] --sysconfdir=DIR read-only single-machine data [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] --localstatedir=DIR modifiable single-machine data [PREFIX/var] --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] --datadir=DIR read-only architecture-independent data [DATAROOTDIR] --infodir=DIR info documentation [DATAROOTDIR/info] --localedir=DIR locale-dependent data [DATAROOTDIR/locale] --mandir=DIR man documentation [DATAROOTDIR/man] --docdir=DIR documentation root [DATAROOTDIR/doc/PACKAGE] --htmldir=DIR html documentation [DOCDIR] --dvidir=DIR dvi documentation [DOCDIR] --pdfdir=DIR pdf documentation [DOCDIR] --psdir=DIR ps documentation [DOCDIR] _ACEOF cat <<\_ACEOF System types: --build=BUILD configure for building on BUILD [guessed] --host=HOST cross-compile to build programs to run on HOST [BUILD] --target=TARGET configure for building compilers for TARGET [HOST] _ACEOF fi if test -n "$ac_init_help"; then cat <<\_ACEOF Optional Features: --disable-option-checking ignore unrecognized --enable/--with options --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --enable-release do a release build --enable-debug build with debugging enabled --enable-devel do a development build --enable-static enable/disable static building Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) -with-defaultoptions=filename use as default options file --with-zlib=path specify a pathname for zlib --with-zlib-ver=VER specify the version number of zlib --with-tcl=path specify a pathname for tcl --with-tcl-ver=path specify the version of tcl/tk --with-tk=path specify a pathname for tk --with-tk-ver=path specify the version of tcl/tk --with-tcldebug=path specify a pathname for the tcl debugger (path=no disables the debugger) --with-otcl=path specify a pathname for otcl --with-Tcl: old command now replaced by --with-tclcl --with-tclcl=path specify a pathname for TclCL (the ex-libTcl) Some influential environment variables: CC C compiler command CFLAGS C compiler flags LDFLAGS linker flags, e.g. -L if you have libraries in a nonstandard directory LIBS libraries to pass to the linker, e.g. -l CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if you have headers in a nonstandard directory CPP C preprocessor CXX C++ compiler command CXXFLAGS C++ compiler flags Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. Report bugs to the package provider. _ACEOF ac_status=$? fi if test "$ac_init_help" = "recursive"; then # If there are subdirs, report their specific --help. for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue test -d "$ac_dir" || { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || continue ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix cd "$ac_dir" || { ac_status=$?; continue; } # Check for guested configure. if test -f "$ac_srcdir/configure.gnu"; then echo && $SHELL "$ac_srcdir/configure.gnu" --help=recursive elif test -f "$ac_srcdir/configure"; then echo && $SHELL "$ac_srcdir/configure" --help=recursive else $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 fi || ac_status=$? cd "$ac_pwd" || { ac_status=$?; break; } done fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF configure generated by GNU Autoconf 2.68 Copyright (C) 2010 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF exit fi ## ------------------------ ## ## Autoconf initialization. ## ## ------------------------ ## # ac_fn_c_try_compile LINENO # -------------------------- # Try to compile conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_compile # ac_fn_c_try_cpp LINENO # ---------------------- # Try to preprocess conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_cpp () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } > conftest.i && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_cpp # ac_fn_c_try_run LINENO # ---------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. Assumes # that executables *can* be run. ac_fn_c_try_run () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then : ac_retval=0 else $as_echo "$as_me: program exited with status $ac_status" >&5 $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=$ac_status fi rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_run # ac_fn_cxx_try_compile LINENO # ---------------------------- # Try to compile conftest.$ac_ext, and return whether this succeeded. ac_fn_cxx_try_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_cxx_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_cxx_try_compile # ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES # ------------------------------------------------------- # Tests whether HEADER exists, giving a warning if it cannot be compiled using # the include files in INCLUDES and setting the cache variable VAR # accordingly. ac_fn_c_check_header_mongrel () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if eval \${$3+:} false; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } else # Is the header compilable? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 $as_echo_n "checking $2 usability... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_header_compiler=yes else ac_header_compiler=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 $as_echo "$ac_header_compiler" >&6; } # Is the header present? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 $as_echo_n "checking $2 presence... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <$2> _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : ac_header_preproc=yes else ac_header_preproc=no fi rm -f conftest.err conftest.i conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 $as_echo "$ac_header_preproc" >&6; } # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #(( yes:no: ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 $as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ;; no:yes:* ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 $as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 $as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 $as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 $as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else eval "$3=\$ac_header_compiler" fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_mongrel # ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES # ------------------------------------------------------- # Tests whether HEADER exists and can be compiled using the include files in # INCLUDES, setting the cache variable VAR accordingly. ac_fn_c_check_header_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_compile # ac_fn_c_try_link LINENO # ----------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_link () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext conftest$ac_exeext if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || $as_test_x conftest$ac_exeext }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would # interfere with the next link command; also delete a directory that is # left behind by Apple's compiler. We do this before executing the actions. rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_link # ac_fn_c_check_type LINENO TYPE VAR INCLUDES # ------------------------------------------- # Tests whether TYPE exists after having included INCLUDES, setting cache # variable VAR accordingly. ac_fn_c_check_type () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else eval "$3=no" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { if (sizeof ($2)) return 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { if (sizeof (($2))) return 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else eval "$3=yes" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_type # ac_fn_c_check_func LINENO FUNC VAR # ---------------------------------- # Tests whether FUNC exists, setting the cache variable VAR accordingly ac_fn_c_check_func () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Define $2 to an innocuous variant, in case declares $2. For example, HP-UX 11i declares gettimeofday. */ #define $2 innocuous_$2 /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $2 (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef $2 /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char $2 (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined __stub_$2 || defined __stub___$2 choke me #endif int main () { return $2 (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_func # ac_fn_c_compute_int LINENO EXPR VAR INCLUDES # -------------------------------------------- # Tries to find the compile-time value of EXPR in a program that includes # INCLUDES, setting VAR accordingly. Returns whether the value could be # computed ac_fn_c_compute_int () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { static int test_array [1 - 2 * !(($2) >= 0)]; test_array [0] = 0 ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_lo=0 ac_mid=0 while :; do cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { static int test_array [1 - 2 * !(($2) <= $ac_mid)]; test_array [0] = 0 ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_hi=$ac_mid; break else as_fn_arith $ac_mid + 1 && ac_lo=$as_val if test $ac_lo -le $ac_mid; then ac_lo= ac_hi= break fi as_fn_arith 2 '*' $ac_mid + 1 && ac_mid=$as_val fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext done else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { static int test_array [1 - 2 * !(($2) < 0)]; test_array [0] = 0 ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_hi=-1 ac_mid=-1 while :; do cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { static int test_array [1 - 2 * !(($2) >= $ac_mid)]; test_array [0] = 0 ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_lo=$ac_mid; break else as_fn_arith '(' $ac_mid ')' - 1 && ac_hi=$as_val if test $ac_mid -le $ac_hi; then ac_lo= ac_hi= break fi as_fn_arith 2 '*' $ac_mid && ac_mid=$as_val fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext done else ac_lo= ac_hi= fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext # Binary search between lo and hi bounds. while test "x$ac_lo" != "x$ac_hi"; do as_fn_arith '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo && ac_mid=$as_val cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { static int test_array [1 - 2 * !(($2) <= $ac_mid)]; test_array [0] = 0 ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_hi=$ac_mid else as_fn_arith '(' $ac_mid ')' + 1 && ac_lo=$as_val fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext done case $ac_lo in #(( ?*) eval "$3=\$ac_lo"; ac_retval=0 ;; '') ac_retval=1 ;; esac else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 static long int longval () { return $2; } static unsigned long int ulongval () { return $2; } #include #include int main () { FILE *f = fopen ("conftest.val", "w"); if (! f) return 1; if (($2) < 0) { long int i = longval (); if (i != ($2)) return 1; fprintf (f, "%ld", i); } else { unsigned long int i = ulongval (); if (i != ($2)) return 1; fprintf (f, "%lu", i); } /* Do not output a trailing newline, as this causes \r\n confusion on some platforms. */ return ferror (f) || fclose (f) != 0; ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : echo >>conftest.val; read $3 config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by $as_me, which was generated by GNU Autoconf 2.68. Invocation command line was $ $0 $@ _ACEOF exec 5>>config.log { cat <<_ASUNAME ## --------- ## ## Platform. ## ## --------- ## hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` /bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` /usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` /bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` _ASUNAME as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. $as_echo "PATH: $as_dir" done IFS=$as_save_IFS } >&5 cat >&5 <<_ACEOF ## ----------- ## ## Core tests. ## ## ----------- ## _ACEOF # Keep a trace of the command line. # Strip out --no-create and --no-recursion so they do not pile up. # Strip out --silent because we don't want to record it for future runs. # Also quote any args containing shell meta-characters. # Make two passes to allow for proper duplicate-argument suppression. ac_configure_args= ac_configure_args0= ac_configure_args1= ac_must_keep_next=false for ac_pass in 1 2 do for ac_arg do case $ac_arg in -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) continue ;; *\'*) ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac case $ac_pass in 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; 2) as_fn_append ac_configure_args1 " '$ac_arg'" if test $ac_must_keep_next = true; then ac_must_keep_next=false # Got value, back to normal. else case $ac_arg in *=* | --config-cache | -C | -disable-* | --disable-* \ | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ | -with-* | --with-* | -without-* | --without-* | --x) case "$ac_configure_args0 " in "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; esac ;; -* ) ac_must_keep_next=true ;; esac fi as_fn_append ac_configure_args " '$ac_arg'" ;; esac done done { ac_configure_args0=; unset ac_configure_args0;} { ac_configure_args1=; unset ac_configure_args1;} # When interrupted or exit'd, cleanup temporary files, and complete # config.log. We remove comments because anyway the quotes in there # would cause problems or look ugly. # WARNING: Use '\'' to represent an apostrophe within the trap. # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. trap 'exit_status=$? # Save into config.log some information that might help in debugging. { echo $as_echo "## ---------------- ## ## Cache variables. ## ## ---------------- ##" echo # The following way of writing the cache mishandles newlines in values, ( for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( *${as_nl}ac_space=\ *) sed -n \ "s/'\''/'\''\\\\'\'''\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" ;; #( *) sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) echo $as_echo "## ----------------- ## ## Output variables. ## ## ----------------- ##" echo for ac_var in $ac_subst_vars do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo if test -n "$ac_subst_files"; then $as_echo "## ------------------- ## ## File substitutions. ## ## ------------------- ##" echo for ac_var in $ac_subst_files do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo fi if test -s confdefs.h; then $as_echo "## ----------- ## ## confdefs.h. ## ## ----------- ##" echo cat confdefs.h echo fi test "$ac_signal" != 0 && $as_echo "$as_me: caught signal $ac_signal" $as_echo "$as_me: exit $exit_status" } >&5 rm -f core *.core core.conftest.* && rm -f -r conftest* confdefs* conf$$* $ac_clean_files && exit $exit_status ' 0 for ac_signal in 1 2 13 15; do trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal done ac_signal=0 # confdefs.h avoids OS command line length limits that DEFS can exceed. rm -f -r conftest* confdefs.h $as_echo "/* confdefs.h */" > confdefs.h # Predefined preprocessor variables. cat >>confdefs.h <<_ACEOF #define PACKAGE_NAME "$PACKAGE_NAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_TARNAME "$PACKAGE_TARNAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_VERSION "$PACKAGE_VERSION" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_STRING "$PACKAGE_STRING" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_URL "$PACKAGE_URL" _ACEOF # Let the site file select an alternate cache file if it wants to. # Prefer an explicitly selected file to automatically selected ones. ac_site_file1=NONE ac_site_file2=NONE if test -n "$CONFIG_SITE"; then # We do not want a PATH search for config.site. case $CONFIG_SITE in #(( -*) ac_site_file1=./$CONFIG_SITE;; */*) ac_site_file1=$CONFIG_SITE;; *) ac_site_file1=./$CONFIG_SITE;; esac elif test "x$prefix" != xNONE; then ac_site_file1=$prefix/share/config.site ac_site_file2=$prefix/etc/config.site else ac_site_file1=$ac_default_prefix/share/config.site ac_site_file2=$ac_default_prefix/etc/config.site fi for ac_site_file in "$ac_site_file1" "$ac_site_file2" do test "x$ac_site_file" = xNONE && continue if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 $as_echo "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 . "$ac_site_file" \ || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "failed to load site script $ac_site_file See \`config.log' for more details" "$LINENO" 5; } fi done if test -r "$cache_file"; then # Some versions of bash will fail to source /dev/null (special files # actually), so we avoid doing that. DJGPP emulates it as a regular file. if test /dev/null != "$cache_file" && test -f "$cache_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 $as_echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . "$cache_file";; *) . "./$cache_file";; esac fi else { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 $as_echo "$as_me: creating cache $cache_file" >&6;} >$cache_file fi # Check that the precious variables saved in the cache have kept the same # value. ac_cache_corrupted=false for ac_var in $ac_precious_vars; do eval ac_old_set=\$ac_cv_env_${ac_var}_set eval ac_new_set=\$ac_env_${ac_var}_set eval ac_old_val=\$ac_cv_env_${ac_var}_value eval ac_new_val=\$ac_env_${ac_var}_value case $ac_old_set,$ac_new_set in set,) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ac_cache_corrupted=: ;; ,);; *) if test "x$ac_old_val" != "x$ac_new_val"; then # differences in whitespace do not lead to failure. ac_old_val_w=`echo x $ac_old_val` ac_new_val_w=`echo x $ac_new_val` if test "$ac_old_val_w" != "$ac_new_val_w"; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 $as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} ac_cache_corrupted=: else { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 $as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} eval $ac_var=\$ac_old_val fi { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 $as_echo "$as_me: former value: \`$ac_old_val'" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 $as_echo "$as_me: current value: \`$ac_new_val'" >&2;} fi;; esac # Pass precious variables to config.status. if test "$ac_new_set" = set; then case $ac_new_val in *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; *) ac_arg=$ac_var=$ac_new_val ;; esac case " $ac_configure_args " in *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. *) as_fn_append ac_configure_args " '$ac_arg'" ;; esac fi done if $ac_cache_corrupted; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 fi ## -------------------- ## ## Main body of script. ## ## -------------------- ## ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_config_headers="$ac_config_headers autoconf.h" V_PROG="nam" V_ALL="$V_PROG" V_SHM="-DUSE_SHM" V_LIB="" V_SHELL="" ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi else CC="$ac_cv_prog_CC" fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else ac_prog_rejected=no as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. set dummy $ac_cv_prog_CC shift if test $# != 0; then # We chose a different compiler from the bogus one. # However, it has the same basename, so the bogon will be chosen # first if we set CC to just the basename; use the full file name. shift ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" fi fi fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl.exe do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl.exe do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_CC" && break done if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "no acceptable C compiler found in \$PATH See \`config.log' for more details" "$LINENO" 5; } # Provide some information about the compiler. $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" # Try to create an executable without -o first, disregard a.out. # It will help us diagnose broken compilers, and finding out an intuition # of exeext. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 $as_echo_n "checking whether the C compiler works... " >&6; } ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` # The possible output files: ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" ac_rmfiles= for ac_file in $ac_files do case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; * ) ac_rmfiles="$ac_rmfiles $ac_file";; esac done rm -f $ac_rmfiles if { { ac_try="$ac_link_default" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link_default") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. # So ignore a value of `no', otherwise this would lead to `EXEEXT = no' # in a Makefile. We should not override ac_cv_exeext if it was cached, # so that the user can short-circuit this test for compilers unknown to # Autoconf. for ac_file in $ac_files '' do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; [ab].out ) # We found the default executable, but exeext='' is most # certainly right. break;; *.* ) if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; then :; else ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` fi # We set ac_cv_exeext here because the later test for it is not # safe: cross compilers may not add the suffix if given an `-o' # argument, so we may need to know it at that point already. # Even if this section looks crufty: it has the advantage of # actually working. break;; * ) break;; esac done test "$ac_cv_exeext" = no && ac_cv_exeext= else ac_file='' fi if test -z "$ac_file"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "C compiler cannot create executables See \`config.log' for more details" "$LINENO" 5; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 $as_echo_n "checking for C compiler default output file name... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 $as_echo "$ac_file" >&6; } ac_exeext=$ac_cv_exeext rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 $as_echo_n "checking for suffix of executables... " >&6; } if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : # If both `conftest.exe' and `conftest' are `present' (well, observable) # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will # work properly (i.e., refer to `conftest.exe'), while it won't with # `rm'. for ac_file in conftest.exe conftest conftest.*; do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` break;; * ) break;; esac done else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of executables: cannot compile and link See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest conftest$ac_cv_exeext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 $as_echo "$ac_cv_exeext" >&6; } rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { FILE *f = fopen ("conftest.out", "w"); return ferror (f) || fclose (f) != 0; ; return 0; } _ACEOF ac_clean_files="$ac_clean_files conftest.out" # Check that the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 $as_echo_n "checking whether we are cross compiling... " >&6; } if test "$cross_compiling" != yes; then { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if { ac_try='./conftest$ac_cv_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then cross_compiling=no else if test "$cross_compiling" = maybe; then cross_compiling=yes else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot run C compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details" "$LINENO" 5; } fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 $as_echo "$cross_compiling" >&6; } rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 $as_echo_n "checking for suffix of object files... " >&6; } if ${ac_cv_objext+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.o conftest.obj if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : for ac_file in conftest.o conftest.obj conftest.*; do test -f "$ac_file" || continue; case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` break;; esac done else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of object files: cannot compile See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 $as_echo "$ac_cv_objext" >&6; } OBJEXT=$ac_cv_objext ac_objext=$OBJEXT { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } if ${ac_cv_c_compiler_gnu+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_compiler_gnu=yes else ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 $as_echo "$ac_cv_c_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GCC=yes else GCC= fi ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 $as_echo_n "checking whether $CC accepts -g... " >&6; } if ${ac_cv_prog_cc_g+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes else CFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 $as_echo "$ac_cv_prog_cc_g" >&6; } if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else CFLAGS= fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } if ${ac_cv_prog_cc_c89+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c89=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ struct buf { int x; }; FILE * (*rcsopen) (struct buf *, struct stat *, int); static char *e (p, i) char **p; int i; { return p[i]; } static char *f (char * (*g) (char **, int), char **p, ...) { char *s; va_list v; va_start (v,p); s = g (p, va_arg (v,int)); va_end (v); return s; } /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not '\xHH' hex character constants. These don't provoke an error unfortunately, instead are silently treated as 'x'. The following induces an error, until -std is added to get proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an array size at least. It's necessary to write '\x00'==0 to get something that's true only with -std. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters inside strings and character constants. */ #define FOO(x) 'x' int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); int argc; char **argv; int main () { return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; ; return 0; } _ACEOF for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_c89=$ac_arg fi rm -f core conftest.err conftest.$ac_objext test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c89" in x) { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; esac if test "x$ac_cv_prog_cc_c89" != xno; then : fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 $as_echo_n "checking how to run the C preprocessor... " >&6; } # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= fi if test -z "$CPP"; then if ${ac_cv_prog_CPP+:} false; then : $as_echo_n "(cached) " >&6 else # Double quotes because CPP needs to be expanded for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" do ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : break fi done ac_cv_prog_CPP=$CPP fi CPP=$ac_cv_prog_CPP else ac_cv_prog_CPP=$CPP fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 $as_echo "$CPP" >&6; } ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "C preprocessor \"$CPP\" fails sanity check See \`config.log' for more details" "$LINENO" 5; } fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 $as_echo_n "checking for grep that handles long lines and -e... " >&6; } if ${ac_cv_path_GREP+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$GREP"; then ac_path_GREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in grep ggrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue # Check for GNU ac_path_GREP and select it if it is found. # Check for GNU $ac_path_GREP case `"$ac_path_GREP" --version 2>&1` in *GNU*) ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'GREP' >> "conftest.nl" "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_GREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_GREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_GREP"; then as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_GREP=$GREP fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 $as_echo "$ac_cv_path_GREP" >&6; } GREP="$ac_cv_path_GREP" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 $as_echo_n "checking for egrep... " >&6; } if ${ac_cv_path_EGREP+:} false; then : $as_echo_n "(cached) " >&6 else if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 then ac_cv_path_EGREP="$GREP -E" else if test -z "$EGREP"; then ac_path_EGREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in egrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue # Check for GNU ac_path_EGREP and select it if it is found. # Check for GNU $ac_path_EGREP case `"$ac_path_EGREP" --version 2>&1` in *GNU*) ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'EGREP' >> "conftest.nl" "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_EGREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_EGREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_EGREP"; then as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_EGREP=$EGREP fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 $as_echo "$ac_cv_path_EGREP" >&6; } EGREP="$ac_cv_path_EGREP" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 $as_echo_n "checking for ANSI C header files... " >&6; } if ${ac_cv_header_stdc+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_header_stdc=yes else ac_cv_header_stdc=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "memchr" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "free" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. if test "$cross_compiling" = yes; then : : else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #if ((' ' & 0x0FF) == 0x020) # define ISLOWER(c) ('a' <= (c) && (c) <= 'z') # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) #else # define ISLOWER(c) \ (('a' <= (c) && (c) <= 'i') \ || ('j' <= (c) && (c) <= 'r') \ || ('s' <= (c) && (c) <= 'z')) # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) #endif #define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) int main () { int i; for (i = 0; i < 256; i++) if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) return 2; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : else ac_cv_header_stdc=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 $as_echo "$ac_cv_header_stdc" >&6; } if test $ac_cv_header_stdc = yes; then $as_echo "#define STDC_HEADERS 1" >>confdefs.h fi # Check whether --with-defaultoptions was given. if test "${with_defaultoptions+set}" = set; then : withval=$with_defaultoptions; else with_defaultoptions=".configure" fi if test "$with_defaultoptions" = "yes" ; then with_defaultoptions=".configure" elif test "$with_defaultoptions" = "no" ; then with_defaultoptions="" fi if test -n "$with_defaultoptions" ; then if test -f "$with_defaultoptions" ; then read arglist < $with_defaultoptions if test -n "$arglist" ; then arguments="$0 $arglist $* --without-defaultoptions" echo "Restarting: $arguments" exec $arguments fi else if test "$with_defaultoptions" = ".configure" ; then echo No .configure file found in current directory echo Continuing with default options... else echo Cannot find file $with_defaultoptions echo Aborting configure... exit 1 fi fi fi ac_aux_dir= for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do if test -f "$ac_dir/install-sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install-sh -c" break elif test -f "$ac_dir/install.sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install.sh -c" break elif test -f "$ac_dir/shtool"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/shtool install -c" break fi done if test -z "$ac_aux_dir"; then as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 fi # These three variables are undocumented and unsupported, # and are intended to be withdrawn in a future Autoconf release. # They can cause serious problems if a builder's source tree is in a directory # whose full name contains unusual characters. ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. # Make sure we can run config.sub. $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 $as_echo_n "checking build system type... " >&6; } if ${ac_cv_build+:} false; then : $as_echo_n "(cached) " >&6 else ac_build_alias=$build_alias test "x$ac_build_alias" = x && ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` test "x$ac_build_alias" = x && as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 $as_echo "$ac_cv_build" >&6; } case $ac_cv_build in *-*-*) ;; *) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; esac build=$ac_cv_build ac_save_IFS=$IFS; IFS='-' set x $ac_cv_build shift build_cpu=$1 build_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: build_os=$* IFS=$ac_save_IFS case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 $as_echo_n "checking host system type... " >&6; } if ${ac_cv_host+:} false; then : $as_echo_n "(cached) " >&6 else if test "x$host_alias" = x; then ac_cv_host=$ac_cv_build else ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 $as_echo "$ac_cv_host" >&6; } case $ac_cv_host in *-*-*) ;; *) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; esac host=$ac_cv_host ac_save_IFS=$IFS; IFS='-' set x $ac_cv_host shift host_cpu=$1 host_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: host_os=$* IFS=$ac_save_IFS case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking target system type" >&5 $as_echo_n "checking target system type... " >&6; } if ${ac_cv_target+:} false; then : $as_echo_n "(cached) " >&6 else if test "x$target_alias" = x; then ac_cv_target=$ac_cv_host else ac_cv_target=`$SHELL "$ac_aux_dir/config.sub" $target_alias` || as_fn_error $? "$SHELL $ac_aux_dir/config.sub $target_alias failed" "$LINENO" 5 fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_target" >&5 $as_echo "$ac_cv_target" >&6; } case $ac_cv_target in *-*-*) ;; *) as_fn_error $? "invalid value of canonical target" "$LINENO" 5;; esac target=$ac_cv_target ac_save_IFS=$IFS; IFS='-' set x $ac_cv_target shift target_cpu=$1 target_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: target_os=$* IFS=$ac_save_IFS case $target_os in *\ *) target_os=`echo "$target_os" | sed 's/ /-/g'`;; esac # The aliases save the names the user supplied, while $host etc. # will get canonicalized. test -n "$target_alias" && test "$program_prefix$program_suffix$program_transform_name" = \ NONENONEs,x,x, && program_prefix=${target_alias}- ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi else CC="$ac_cv_prog_CC" fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else ac_prog_rejected=no as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. set dummy $ac_cv_prog_CC shift if test $# != 0; then # We chose a different compiler from the bogus one. # However, it has the same basename, so the bogon will be chosen # first if we set CC to just the basename; use the full file name. shift ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" fi fi fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl.exe do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl.exe do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_CC" && break done if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "no acceptable C compiler found in \$PATH See \`config.log' for more details" "$LINENO" 5; } # Provide some information about the compiler. $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } if ${ac_cv_c_compiler_gnu+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_compiler_gnu=yes else ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 $as_echo "$ac_cv_c_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GCC=yes else GCC= fi ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 $as_echo_n "checking whether $CC accepts -g... " >&6; } if ${ac_cv_prog_cc_g+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes else CFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 $as_echo "$ac_cv_prog_cc_g" >&6; } if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else CFLAGS= fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } if ${ac_cv_prog_cc_c89+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c89=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ struct buf { int x; }; FILE * (*rcsopen) (struct buf *, struct stat *, int); static char *e (p, i) char **p; int i; { return p[i]; } static char *f (char * (*g) (char **, int), char **p, ...) { char *s; va_list v; va_start (v,p); s = g (p, va_arg (v,int)); va_end (v); return s; } /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not '\xHH' hex character constants. These don't provoke an error unfortunately, instead are silently treated as 'x'. The following induces an error, until -std is added to get proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an array size at least. It's necessary to write '\x00'==0 to get something that's true only with -std. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters inside strings and character constants. */ #define FOO(x) 'x' int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); int argc; char **argv; int main () { return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; ; return 0; } _ACEOF for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_c89=$ac_arg fi rm -f core conftest.err conftest.$ac_objext test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c89" in x) { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; esac if test "x$ac_cv_prog_cc_c89" != xno; then : fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu if test -z "$CXX"; then if test -n "$CCC"; then CXX=$CCC else if test -n "$ac_tool_prefix"; then for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CXX+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CXX"; then ac_cv_prog_CXX="$CXX" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CXX=$ac_cv_prog_CXX if test -n "$CXX"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5 $as_echo "$CXX" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$CXX" && break done fi if test -z "$CXX"; then ac_ct_CXX=$CXX for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CXX+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CXX"; then ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CXX="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CXX=$ac_cv_prog_ac_ct_CXX if test -n "$ac_ct_CXX"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CXX" >&5 $as_echo "$ac_ct_CXX" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_CXX" && break done if test "x$ac_ct_CXX" = x; then CXX="g++" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CXX=$ac_ct_CXX fi fi fi fi # Provide some information about the compiler. $as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&5 $as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; } if ${ac_cv_cxx_compiler_gnu+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : ac_compiler_gnu=yes else ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_cxx_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_compiler_gnu" >&5 $as_echo "$ac_cv_cxx_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GXX=yes else GXX= fi ac_test_CXXFLAGS=${CXXFLAGS+set} ac_save_CXXFLAGS=$CXXFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5 $as_echo_n "checking whether $CXX accepts -g... " >&6; } if ${ac_cv_prog_cxx_g+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_cxx_werror_flag=$ac_cxx_werror_flag ac_cxx_werror_flag=yes ac_cv_prog_cxx_g=no CXXFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : ac_cv_prog_cxx_g=yes else CXXFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : else ac_cxx_werror_flag=$ac_save_cxx_werror_flag CXXFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : ac_cv_prog_cxx_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cxx_werror_flag=$ac_save_cxx_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_g" >&5 $as_echo "$ac_cv_prog_cxx_g" >&6; } if test "$ac_test_CXXFLAGS" = set; then CXXFLAGS=$ac_save_CXXFLAGS elif test $ac_cv_prog_cxx_g = yes; then if test "$GXX" = yes; then CXXFLAGS="-g -O2" else CXXFLAGS="-g" fi else if test "$GXX" = yes; then CXXFLAGS="-O2" else CXXFLAGS= fi fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 $as_echo_n "checking for ANSI C header files... " >&6; } if ${ac_cv_header_stdc+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_header_stdc=yes else ac_cv_header_stdc=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "memchr" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "free" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. if test "$cross_compiling" = yes; then : : else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #if ((' ' & 0x0FF) == 0x020) # define ISLOWER(c) ('a' <= (c) && (c) <= 'z') # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) #else # define ISLOWER(c) \ (('a' <= (c) && (c) <= 'i') \ || ('j' <= (c) && (c) <= 'r') \ || ('s' <= (c) && (c) <= 'z')) # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) #endif #define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) int main () { int i; for (i = 0; i < 256; i++) if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) return 2; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : else ac_cv_header_stdc=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 $as_echo "$ac_cv_header_stdc" >&6; } if test $ac_cv_header_stdc = yes; then $as_echo "#define STDC_HEADERS 1" >>confdefs.h fi # On IRIX 5.3, sys/types and inttypes.h are conflicting. for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ inttypes.h stdint.h unistd.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default " if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done for ac_header in string.h do : ac_fn_c_check_header_mongrel "$LINENO" "string.h" "ac_cv_header_string_h" "$ac_includes_default" if test "x$ac_cv_header_string_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_STRING_H 1 _ACEOF fi done V_INCLUDE="" V_LIB="" V_OBJ="" V_BROKEN_OBJ="strtol.o strtoul.o" V_SHELL="" V_TARCMD="tar cfh" V_SIGRET="void" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lXbsd" >&5 $as_echo_n "checking for main in -lXbsd... " >&6; } if ${ac_cv_lib_Xbsd_main+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lXbsd $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { return main (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_Xbsd_main=yes else ac_cv_lib_Xbsd_main=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xbsd_main" >&5 $as_echo "$ac_cv_lib_Xbsd_main" >&6; } if test "x$ac_cv_lib_Xbsd_main" = xyes; then : V_LIB="$V_LIB -lXbsd" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for socket in -lsocket" >&5 $as_echo_n "checking for socket in -lsocket... " >&6; } if ${ac_cv_lib_socket_socket+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char socket (); int main () { return socket (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_socket_socket=yes else ac_cv_lib_socket_socket=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_socket_socket" >&5 $as_echo "$ac_cv_lib_socket_socket" >&6; } if test "x$ac_cv_lib_socket_socket" = xyes; then : V_LIB="$V_LIB -lsocket" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in -lnsl" >&5 $as_echo_n "checking for gethostbyname in -lnsl... " >&6; } if ${ac_cv_lib_nsl_gethostbyname+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char gethostbyname (); int main () { return gethostbyname (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_nsl_gethostbyname=yes else ac_cv_lib_nsl_gethostbyname=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_nsl_gethostbyname" >&5 $as_echo "$ac_cv_lib_nsl_gethostbyname" >&6; } if test "x$ac_cv_lib_nsl_gethostbyname" = xyes; then : V_LIB="$V_LIB -lnsl" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dcgettext in -lintl" >&5 $as_echo_n "checking for dcgettext in -lintl... " >&6; } if ${ac_cv_lib_intl_dcgettext+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lintl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dcgettext (); int main () { return dcgettext (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_intl_dcgettext=yes else ac_cv_lib_intl_dcgettext=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_dcgettext" >&5 $as_echo "$ac_cv_lib_intl_dcgettext" >&6; } if test "x$ac_cv_lib_intl_dcgettext" = xyes; then : V_LIB="$V_LIB -lintl" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for getnodebyname in -ldnet_stub" >&5 $as_echo_n "checking for getnodebyname in -ldnet_stub... " >&6; } if ${ac_cv_lib_dnet_stub_getnodebyname+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldnet_stub $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char getnodebyname (); int main () { return getnodebyname (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dnet_stub_getnodebyname=yes else ac_cv_lib_dnet_stub_getnodebyname=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dnet_stub_getnodebyname" >&5 $as_echo "$ac_cv_lib_dnet_stub_getnodebyname" >&6; } if test "x$ac_cv_lib_dnet_stub_getnodebyname" = xyes; then : V_LIB="$V_LIB -ldnet_stub" fi V_TAR_EXTRA="" V_DEFINE="" V_RANLIB=ranlib V_AR="ar cr" #XXX V_SHM="-DUSE_SHM" # Check whether --enable-release was given. if test "${enable_release+set}" = set; then : enableval=$enable_release; else enable_release="no" fi # Check whether --enable-debug was given. if test "${enable_debug+set}" = set; then : enableval=$enable_debug; else enable_debug="no" fi # Check whether --enable-devel was given. if test "${enable_devel+set}" = set; then : enableval=$enable_devel; else enable_devel="no" fi if test "$enable_devel" = "yes" ; then enable_debug="yes" fi if test -f .devel -o "$enable_devel" = "yes"; then OonS="" else if test "$CC" = gcc ; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking that $CXX can handle -O2" >&5 $as_echo_n "checking that $CXX can handle -O2... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #if __GNUC__ < 2 || __GNUC_MINOR__ < 8 /* gcc */ error #endif #if __GNUC_MINOR__ < 92 /* egcs */ int error; #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } OonS="-O2" else # Optimize on Steroids { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi fi if test "$enable_debug" = "yes" ; then V_CCOPT="-g" if test "$CC" = gcc ; then V_CCOPT="$V_CCOPT -Wall -Wno-write-strings -Wno-parentheses -Werror" V_DEFINE="$V_DEFINE -fsigned-char -fno-inline" fi else V_CCOPT="$OonS" V_DEFINE="$V_DEFINE -DNDEBUG" if test "$CC" = gcc ; then V_CCOPT="$V_CCOPT -Wall -Wno-write-strings" fi fi # XXX Some stupid sh on solaris does not set PWD correctly, i.e., # after chdir $PWD remains at the parent directory. :( # We'll just do this every time. Doesn't hurt anyway. PWD=`pwd` solaris="" if test `echo "$target_os" | sed 's/\..*//'` = solaris2 ; then solaris="yes" fi #places="Tcl \ # /usr/src/local/Tcl \ # ../../Tcl \ # ../Tcl" #for d in $places; do # if test -f $d/tclcl.h ; then # V_LIB="$V_LIB $d/libTcl.a" # V_INCLUDE="$V_INCLUDE -I$d" # break # fi #done # we now default to non-static linking, although if the "magic" file # .devel exists in the current directory, we try for a static link # under the assumption we are trying to produce re-distributable # binaries. # # Yatin: Moved this code here from configure.in.tail, since the mash # configure.in file needs to set this variable appropriately before invoking # configure.in.tail and the presence of the .devel file can mess things up for # the linux release build # # Check whether --enable-static was given. if test "${enable_static+set}" = set; then : enableval=$enable_static; else enable_static="" fi if test -f .devel -o "$enable_devel" = "yes"; then echo -n "Development version: considering static" if test "$enable_static" != no; then echo ", and static enabled" V_STATIC="-static" else echo ", but static disabled anyway" fi else V_STATIC="" fi # This can be extended to support compilation-time module selection V_STLOBJ="" V_LSSCRIPT="" # This is required by configure.in.tcl to provide absolute pathnames for # tclsh, and configure.in.tail to absolutize V_INCLUDES and V_LIBS. absolutize() { case $1 in -L*) p=`echo $1 | sed 's/^-L//'` ;; -I*) p=`echo $1 | sed 's/^-I//'` ;; *) p=$1 ;; esac d=`dirname $p` f=`basename $p` ad=`( cd $d pwd )` case $1 in -L*) echo -L$ad/$f ;; -I*) echo -I$ad/$f ;; *) echo $ad/$f ;; esac } case "$target" in *-dec-*) V_DEFINE="$V_DEFINE -D_XOPEN_SOURCE_EXTENDED" $as_echo "#define _XOPEN_SOURCE_EXTENDED 1" >>confdefs.h ;; sparc-sun-solaris*) if test $CC != gcc ; then V_DEFINE="$V_DEFINE -D__FUNCTION__=__func__ -features=extensions" fi V_DEFINE="$V_DEFINE -D__svr4__ -DSOLARIS_MIN_MAX" V_LIB="$V_LIB -ldl" ;; sparc-sun-sunos*) V_DEFINE="$V_DEFINE -DNEED_SUNOS_PROTOS" ;; *-sgi-irix5*) V_DEFINE="$V_DEFINE -DIRIX5 -D_BSD_SIGNALS" if test "$target_os" = irix5.3 ; then V_DEFINE="$V_DEFINE -DIRIX5_3" fi V_TARCMD="tar cfL" V_SHELL="SHELL = /bin/sh" if test $CC != gcc ; then V_DEFINE="$V_DEFINE -signed -g3" V_CXXOPT="$V_CXXOPT +p -float" CC="cc -xansi -D__STDC__ -Dinline=" CXX="CC +p -float -DSGI_COMPAT" fi V_RANLIB="ar ts" ;; *-sgi-irix6*) V_DEFINE="$V_DEFINE -DIRIX6 -D_BSD_SIGNALS" V_TARCMD="tar cfL" V_SHELL="SHELL = /bin/sh" if test $CC != gcc ; then V_DEFINE="$V_DEFINE -signed -g3" V_CXXOPT="$V_CXXOPT +p -float" CC="cc -xansi -D__STDC__ -Dinline=" CXX="CC +p -float -DSGI_COMPAT" fi V_RANLIB="ar ts" ;; *-*-bsdi1*) V_SHM="" V_TARCMD="tar cfL" ;; *-*-bsdi2.0*) V_SHM="" V_TARCMD="tar cfL" ;; *-*-bsdi2.1*) # bsdi2.1 added sys-v shared memory support but their implementation # is broken so we have to turn it off. If they ever fix libipc, # the following line should be deleted. V_SHM="" V_TARCMD="tar cfL" V_CCOPT="-O2 -m486" V_LIB="$V_LIB -lipc -ldl" ;; *-*-bsdi3*) V_SHM="" V_TARCMD="tar cfL" V_LIB="$V_LIB -lipc -ldl" V_OBJ="$V_OBJ misc/serial.o" ;; *-*-freebsd*) V_OBJ="$V_OBJ misc/serial.o" ;; *-*-netbsd*) V_TARCMD="tar -h -c -f" V_LIB="$V_LIB -L/usr/local/lib" ;; *-*-hpux*) $as_echo "#define random lrand48" >>confdefs.h $as_echo "#define srandom srand" >>confdefs.h V_CCOPT="-O" ;; *-*-aix3*) V_DEFINE="$V_DEFINE -DSIGARGS=int" if test "$V_LIB_AIXSHM" != "" ; then V_LIB="$V_LIB $V_LIB_AIXSHM" else V_SHM="" fi CXX="xlC -+" ;; *-*-aix4*) V_DEFINE="$V_DEFINE -DSIGARGS=int -D_AIX41" if test "$V_LIB_AIXSHM" != "" ; then V_LIB="$V_LIB $V_LIB_AIXSHM" else V_SHM="" fi CXX="g++" ;; *-*-linux*) V_BROKEN_OBJ= ;; powerpc-apple-darwin*) V_CCOPT="-fno-common -fPIC -pipe" ;; esac # Check whether --with-zlib was given. if test "${with_zlib+set}" = set; then : withval=$with_zlib; d=$withval else d="" fi # Check whether --with-zlib-ver was given. if test "${with_zlib_ver+set}" = set; then : withval=$with_zlib_ver; ZLIB_VER=$withval else ZLIB_VER=1.2.3 fi ZLIB_H_PLACES_D="$d \ $d/include" ZLIB_H_PLACES="../zlib \ /usr/src/local/zlib \ ../zlib-$ZLIB_VER \ /import/zlib/include \ /usr/src/local/zlib-$ZLIB_VER \ /usr/src/local/zlib-$ZLIB_ALT_VER \ $prefix/include \ /usr/local/include \ /usr/contrib/include \ /usr/include" ZLIB_LIB_PLACES_D="$d \ $d/lib \ " ZLIB_LIB_PLACES="../zlib \ ../zlib-$ZLIB_VER \ ../zlib-$ZLIB_ALT_VERS \ $prefix/lib \ $x_libraries \ /usr/contrib/lib \ /usr/local/lib \ /usr/lib64 \ /usr/lib \ /usr/src/local/zlib \ /usr/src/local/zlib-$ZLIB_VER \ /usr/src/local/zlib-$ZLIB_ALT_VERS \ " NS_PACKAGE_zlib_UNDERWAY=false NS_PACKAGE_zlib_COMPLETE=true { $as_echo "$as_me:${as_lineno-$LINENO}: checking for zlib.h" >&5 $as_echo_n "checking for zlib.h... " >&6; } if test "x$d" = "xno"; then : disable header V_INCLUDE_ZLIB=FAIL NS_PACKAGE_zlib_COMPLETE=false { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } else places="$ZLIB_H_PLACES" if test "x$d" != "x" -a "x$d" != xyes; then if test ! -d $d; then as_fn_error $? "$d is not a directory" "$LINENO" 5 fi places="$ZLIB_H_PLACES_D" fi V_INCLUDE_ZLIB="" found="" for dir in $places; do if test -r $dir/zlib.h; then found="$dir" if test "$CC" != "icc" || test "$dir" != "/usr/include"; then V_INCLUDE_ZLIB="-I$dir" fi break fi done if test "FAIL$found" = "FAIL" ; then NS_PACKAGE_zlib_COMPLETE=false { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } else ac_tr_hdr=HAVE_`echo zlib.h | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'` cat >>confdefs.h <<_ACEOF #define $ac_tr_hdr 1 _ACEOF V_INCLUDES="$V_INCLUDE_ZLIB $V_INCLUDES" V_DEFINES="-D$ac_tr_hdr $V_DEFINES" NS_PACKAGE_zlib_UNDERWAY=true { $as_echo "$as_me:${as_lineno-$LINENO}: result: $V_INCLUDE_ZLIB" >&5 $as_echo "$V_INCLUDE_ZLIB" >&6; } fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libz$ZLIB_VER" >&5 $as_echo_n "checking for libz$ZLIB_VER... " >&6; } if test "x$d" = "xno"; then : disable library V_LIB_ZLIB=FAIL NS_PACKAGE_zlib_COMPLETE=false { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } else places="$ZLIB_LIB_PLACES" if test "x$d" != "x" -a "x$d" != xyes; then if test ! -d $d; then as_fn_error $? "$d is not a directory" "$LINENO" 5 fi places="$ZLIB_LIB_PLACES_D" fi V_LIB_ZLIB="" full_lib_name="z$ZLIB_VER" simple_lib_name=`echo $full_lib_name | sed -e 's/\.//'` other_simple_lib_name=`echo $full_lib_name | sed -e 's/\./_/'` simpler_lib_name=`echo $simple_lib_name | sed -e 'y/0123456789/ /'` double_break=false for dir in $places; do for file in $full_lib_name $simple_lib_name $other_simple_lib_name $simpler_lib_name do if test -r $dir/lib$file.so -o -r $dir/lib$file.a -o -r $dir/lib$file.dylib; then V_LIB_ZLIB="-L$dir -l$file" double_break=true break fi done if $double_break; then break fi done if test "FAIL$V_LIB_ZLIB" = "FAIL" ; then NS_PACKAGE_zlib_COMPLETE=false { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } else if test "$solaris"; then V_LIB_ZLIB="-R$dir $V_LIB_ZLIB" fi ac_tr_lib=HAVE_LIB`echo z$ZLIB_VER | sed -e 's/[^a-zA-Z0-9_]/_/g' \ -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'` cat >>confdefs.h <<_ACEOF #define $ac_tr_lib 1 _ACEOF V_LIBS="$V_LIB_ZLIB $V_LIBS" V_DEFINES="-D$ac_tr_lib $V_DEFINES" NS_PACKAGE_zlib_UNDERWAY=true { $as_echo "$as_me:${as_lineno-$LINENO}: result: $V_LIB_ZLIB" >&5 $as_echo "$V_LIB_ZLIB" >&6; } fi fi if $NS_PACKAGE_zlib_COMPLETE; then NS_PACKAGE_zlib_VALID=false if $NS_PACKAGE_zlib_UNDERWAY; then if $NS_PACKAGE_zlib_COMPLETE; then : All components of zlib found. NS_PACKAGE_zlib_VALID=true else as_fn_error $? "Installation of zlib seems incomplete or can't be found automatically. Please correct the problem by telling configure where zlib is using the argument --with-zlib=/path/to/package (perhaps after installing it), or the package is not required, disable it with --with-zlib=no." "$LINENO" 5 fi fi if test "xno" = xyes; then if $NS_PACKAGE_zlib_VALID; then : else as_fn_error $? "zlib is required but could not be completely found. Please correct the problem by telling configure where zlib is using the argument --with-zlib=/path/to/package, or the package is not required, disable it with --with-zlib=no." "$LINENO" 5 fi fi fi xlibdirs="\ /usr/openwin/lib \ /usr/X11R6/lib \ /usr/lib/X11R6 \ /usr/X11R5/lib \ /usr/lib/X11R5 \ /usr/X11R4/lib \ /usr/lib/X11R4 \ /usr/local/lib \ /usr/X386/lib \ /usr/X11/lib \ /usr/unsupported/lib \ /Developer/SDKs/MacOSX10.4u.sdk/usr/X11R6/lib \ /Developer/SDKs/MacOSX10.5.sdk/usr/X11R6/lib \ /Developer/SDKs/MacOSX10.6.sdk/usr/X11R6/lib \ /import/X11R4/usr/lib" xincdirs="\ /usr/openwin/include \ /usr/X11R6/include \ /usr/include/X11R6 \ /usr/X11R5/include \ /usr/include/X11R5 \ /usr/X11R4/include \ /usr/include/X11R4 \ /usr/local/include \ /usr/X386/include \ /usr/X11/include \ /usr/lpp/X11/include \ /usr/unsupported/include \ /Developer/SDKs/MacOSX10.4u.sdk/usr/X11R6/include \ /Developer/SDKs/MacOSX10.5.sdk/usr/X11R6/include \ /Developer/SDKs/MacOSX10.6.sdk/usr/X11R6/include \ /import/X11R4/include" echo "checking for X11 header files" if test "$x_includes" = NONE ; then cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : x_includes="" else x_includes=NONE fi rm -f conftest.err conftest.i conftest.$ac_ext if test "$x_includes" = NONE ; then for i in $xincdirs ; do if test -r $i/X11/Intrinsic.h; then x_includes=$i break fi done if test "$x_includes" = NONE ; then echo "can't find X includes" exit 1 fi fi fi if test -n "$x_includes" ; then V_INCLUDE_X11=-I$x_includes fi echo "checking for X11 library archive" if test "$x_libraries" = NONE ; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XOpenDisplay in -lX11" >&5 $as_echo_n "checking for XOpenDisplay in -lX11... " >&6; } if ${ac_cv_lib_X11_XOpenDisplay+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lX11 $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char XOpenDisplay (); int main () { return XOpenDisplay (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_X11_XOpenDisplay=yes else ac_cv_lib_X11_XOpenDisplay=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_X11_XOpenDisplay" >&5 $as_echo "$ac_cv_lib_X11_XOpenDisplay" >&6; } if test "x$ac_cv_lib_X11_XOpenDisplay" = xyes; then : x_libraries="" else x_libraries=NONE fi if test "$x_libraries" = NONE ; then for i in $xlibdirs ; do if test -r $i/libX11.a -o -r $i/libX11.so -o -r $i/libX11.dll.a -o -r $i/libX11.dylib; then x_libraries=$i break fi done if test "$x_libraries" = NONE ; then echo "can't find X library" exit 1 fi fi fi V_LIB_X11=-lX11 if test -n "$V_SHM" ; then if test -z "$x_libraries" ; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XShmAttach in -lXext" >&5 $as_echo_n "checking for XShmAttach in -lXext... " >&6; } if ${ac_cv_lib_Xext_XShmAttach+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lXext -lX11 $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char XShmAttach (); int main () { return XShmAttach (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_Xext_XShmAttach=yes else ac_cv_lib_Xext_XShmAttach=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xext_XShmAttach" >&5 $as_echo "$ac_cv_lib_Xext_XShmAttach" >&6; } if test "x$ac_cv_lib_Xext_XShmAttach" = xyes; then : V_Xext="-lXext" else V_Xext=NONE fi else echo "checking for libXext.a" if test -f $x_libraries/libXext.a -o -f $x_libraries/libXext.so -o -f $x_libraries/libXext.dylib; then V_Xext="-lXext" else echo "warning: compiling without -lXext" fi fi if test "$V_Xext" = NONE ; then echo "warning: compiling without -lXext" else V_LIB_X11="$V_Xext $V_LIB_X11" fi fi if test -n "$x_libraries" ; then V_LIB_X11="-L$x_libraries $V_LIB_X11" if test $solaris ; then V_LIB_X11="-R$x_libraries $V_LIB_X11" fi fi # Check whether --with-tcl was given. if test "${with_tcl+set}" = set; then : withval=$with_tcl; d=$withval else d="" fi # Check whether --with-tcl-ver was given. if test "${with_tcl_ver+set}" = set; then : withval=$with_tcl_ver; TCL_VERS=$withval else TCL_VERS=`echo "puts [info patchlevel]" | tclsh` fi TCL_HI_VERS=`echo $TCL_VERS | sed 's/^\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\)/\1.\2/'` TCL_MAJOR_VERS=`echo $TCL_VERS | sed 's/^\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\)/\1/'` TCL_ALT_VERS=8.5 TCL_OLD_VERS=8.4 TCL_OLD_ALT_VERS=`echo $TCL_OLD_VERS | sed 's/\.//'` TCL_TCL_PLACES_D="$d \ $d/lib64/tcl$TCL_HI_VERS \ $d/lib64/tcl$TCL_VERS \ $d/lib64/tcl$TCL_ALT_VERS \ $d/lib64/tcl \ $d/lib/tcl$TCL_HI_VERS \ $d/lib/tcl$TCL_VERS \ $d/lib/tcl$TCL_ALT_VERS \ $d/lib/tcl \ $d/../lib/tcl$TCL_HI_VERS \ $d/../lib/tcl$TCL_VERS \ $d/../lib/tcl$TCL_ALT_VERS \ $d/lib/tcl$TCL_OLD_VERS \ $d/lib/tcl$TCL_OLD_ALT_VERS \ $d/../lib/tcl$TCL_OLD_VERS \ $d/../lib/tcl$TCL_OLD_ALT_VERS \ /usr/local/lib/tcl$TCL_HI_VERS \ /usr/local/lib/tcl$TCL_VERS \ /usr/local/lib/tcl$TCL_ALT_VERS \ $d/lib64 \ $d/lib \ $d/library \ " TCL_TCL_PLACES="../lib/tcl$TCL_HI_VERS \ ../lib/tcl$TCL_ALT_VERS \ ../lib/tcl$TCL_VERS \ ../lib/tcl \ ../tcl$TCL_HI_VERS/library \ ../tcl$TCL_VERS/library \ ../tcl$TCL_ALT_VERS/library \ /usr/lib64/tcl$TCL_VERS \ /usr/lib64/tcl$TCL_HI_VERS \ /usr/lib64/tcl$TCL_ALT_VERS \ /usr/lib64/tcl \ /usr/lib/tcl$TCL_VERS \ /usr/lib/tcl$TCL_HI_VERS \ /usr/lib/tcl$TCL_ALT_VERS \ /usr/lib/tcl \ /usr/share/tcl$TCL_VERS \ /usr/share/tcl$TCL_HI_VERS \ /usr/share/tcl$TCL_ALT_VERS \ /usr/local/src/tcl$TCL_VERS \ /usr/local/src/tcl$TCL_HI_VERS \ /usr/local/src/tcl$TCL_ALT_VERS \ /usr/share/tcl \ /lib/tcl$TCL_VERS \ /lib/tcl$TCL_HI_VERS \ /lib/tcl$TCL_ALT_VERS \ /usr/lib/tcl$TCL_OLD_VERS \ /usr/lib/tcl$TCL_OLD_ALT_VERS \ /lib/tcl$TCL_OLD_VERS \ /lib/tcl$TCL_OLD_ALT_VERS \ /usr/lib \ /usr/src/local/tcl$TCL_VERS/library \ /usr/src/local/tcl$TCL_HI_VERS/library \ /usr/src/local/tcl$TCL_ALT_VERS/library \ /usr/share/tcltk/tcl$TCL_VERS \ /usr/share/tcltk/tcl$TCL_HI_VERS \ /usr/share/tcltk/tcl$TCL_ALT_VERS \ /usr/local/lib/tcl$TCL_VERS \ /usr/local/lib/tcl$TCL_HI_VERS \ /usr/local/lib/tcl$TCL_ALT_VERS \ /usr/local/include/tcl$TCL_VERS \ /usr/local/include/tcl$TCL_HI_VERS \ /usr/local/include/tcl$TCL_ALT_VERS \ ../tcl$TCL_OLD_VERS/library \ ../tcl$TCL_OLD_ALT_VERS/library \ /usr/src/local/tcl$TCL_OLD_VERS/library \ /usr/src/local/tcl$TCL_OLD_ALT_VERS/library \ /usr/local/lib/tcl$TCL_OLD_VERS \ /usr/local/lib/tcl$TCL_OLD_ALT_VERS \ /usr/local/include/tcl$TCL_OLD_VERS \ /usr/local/include/tcl$TCL_OLD_ALT_VERS \ /usr/local/include \ $prefix/include \ $prefix/lib/tcl \ $x_includes/tk \ $x_includes \ /usr/contrib/include \ /usr/include" TCL_H_PLACES_D="$d/generic \ $d/unix \ $d/include/tcl$TCL_HI_VERS \ $d/include/tcl$TCL_VERS \ $d/include/tcl$TCL_ALT_VERS \ $d/include \ /usr/local/include \ " TCL_H_PLACES=" \ ../include \ ../tcl$TCL_VERS/unix \ ../tcl$TCL_ALT_VERS/unix \ ../tcl$TCL_HI_VERS/generic \ ../tcl$TCL_VERS/generic \ ../tcl$TCL_ALT_VERS/generic \ /usr/src/local/tcl$TCL_VERS/generic \ /usr/src/local/tcl$TCL_HI_VERS/generic \ /usr/src/local/tcl$TCL_ALT_VERS/generic \ /usr/local/src/tcl$TCL_VERS/generic \ /usr/local/src/tcl$TCL_HI_VERS/generic \ /usr/local/src/tcl$TCL_ALT_VERS/generic \ /usr/src/local/tcl$TCL_VERS/unix \ /usr/src/local/tcl$TCL_HI_VERS/unix \ /usr/src/local/tcl$TCL_ALT_VERS/unix \ /usr/contrib/include \ /usr/local/lib/tcl$TCL_VERS \ /usr/local/lib/tcl$TCL_HI_VERS \ /usr/local/lib/tcl$TCL_ALT_VERS \ /usr/local/include/tcl$TCL_VERS \ /usr/local/include/tcl$TCL_HI_VERS \ /usr/local/include/tcl$TCL_ALT_VERS \ /usr/local/include \ /import/tcl/include/tcl$TCL_VERS \ /import/tcl/include/tcl$TCL_HI_VERS \ /import/tcl/include/tcl$TCL_ALT_VERS \ ../tcl$TCL_OLD_VERS/generic \ ../tcl$TCL_OLD_ALT_VERS/generic \ /usr/src/local/tcl$TCL_OLD_VERS/generic \ /usr/src/local/tcl$TCL_OLD_ALT_VERS/generic \ ../tcl$TCL_OLD_VERS/unix \ ../tcl$TCL_OLD_ALT_VERS/unix \ /usr/src/local/tcl$TCL_OLD_VERS/unix \ /usr/src/local/tcl$TCL_OLD_ALT_VERS/unix \ /usr/local/lib/tcl$TCL_OLD_VERS \ /usr/local/lib/tcl$TCL_OLD_ALT_VERS \ /usr/local/include/tcl$TCL_OLD_VERS \ /usr/local/include/tcl$TCL_OLD_ALT_VERS \ /import/tcl/include/tcl$TCL_OLD_VERS \ /import/tcl/include/tcl$TCL_OLD_ALT_VERS \ $prefix/include \ $x_includes/tk \ $x_includes \ /usr/include \ /usr/include/tcl$TCL_VERS/tcl-private/generic \ /usr/include/tcl$TCL_HI_VERS/tcl-private/generic \ /usr/include/tcl$TCL_ALT_VERS/tcl-private/generic \ /usr/include/tcl-private/generic \ /usr/include/tcl$TCL_VERS \ /usr/include/tcl$TCL_HI_VERS \ /usr/include/tcl$TCL_ALT_VERS \ /usr/include/tcl" TCL_LIB_PLACES_D="$d \ $d/lib \ $d/unix" TCL_LIB_PLACES=" \ ../lib \ ../tcl$TCL_VERS/unix \ ../tcl$TCL_HI_VERS/unix \ ../tcl$TCL_ALT_VERS/unix \ /usr/src/local/tcl$TCL_VERS/unix \ /usr/src/local/tcl$TCL_HI_VERS/unix \ /usr/src/local/tcl$TCL_ALT_VERS/unix \ /usr/local/src/tcl$TCL_VERS/unix \ /usr/local/src/tcl$TCL_HI_VERS/unix \ /usr/local/src/tcl$TCL_ALT_VERS/unix \ /usr/contrib/lib \ /usr/local/lib/tcl$TCL_VERS \ /usr/local/lib/tcl$TCL_HI_VERS \ /usr/local/lib/tcl$TCL_ALT_VERS \ /usr/lib64/tcl$TCL_VERS \ /usr/lib64/tcl$TCL_HI_VERS \ /usr/lib64/tcl$TCL_ALT_VERS \ /usr/lib/tcl$TCL_VERS \ /usr/lib/tcl$TCL_HI_VERS \ /usr/lib/tcl$TCL_ALT_VERS \ ../tcl$TCL_OLD_VERS/unix \ ../tcl$TCL_OLD_ALT_VERS/unix \ /usr/src/local/tcl$TCL_OLD_VERS/unix \ /usr/src/local/tcl$TCL_OLD_ALT_VERS/unix \ /usr/local/lib/tcl$TCL_OLD_VERS \ /usr/local/lib/tcl$TCL_OLD_ALT_VERS \ /usr/lib/tcl$TCL_OLD_VERS \ /usr/lib/tcl$TCL_OLD_ALT_VERS \ /usr/local/lib \ $prefix/lib \ $x_libs/tk \ $x_libs \ /usr/lib64 \ /usr/lib \ " NS_PACKAGE_tcl_UNDERWAY=false NS_PACKAGE_tcl_COMPLETE=true { $as_echo "$as_me:${as_lineno-$LINENO}: checking for tcl.h" >&5 $as_echo_n "checking for tcl.h... " >&6; } if test "x$d" = "xno"; then : disable header V_INCLUDE_TCL=FAIL NS_PACKAGE_tcl_COMPLETE=false { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } else places="$TCL_H_PLACES" if test "x$d" != "x" -a "x$d" != xyes; then if test ! -d $d; then as_fn_error $? "$d is not a directory" "$LINENO" 5 fi places="$TCL_H_PLACES_D" fi V_INCLUDE_TCL="" found="" for dir in $places; do if test -r $dir/tcl.h; then found="$dir" if test "$CC" != "icc" || test "$dir" != "/usr/include"; then V_INCLUDE_TCL="-I$dir" fi break fi done if test "FAIL$found" = "FAIL" ; then NS_PACKAGE_tcl_COMPLETE=false { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } else ac_tr_hdr=HAVE_`echo tcl.h | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'` cat >>confdefs.h <<_ACEOF #define $ac_tr_hdr 1 _ACEOF V_INCLUDES="$V_INCLUDE_TCL $V_INCLUDES" V_DEFINES="-D$ac_tr_hdr $V_DEFINES" NS_PACKAGE_tcl_UNDERWAY=true { $as_echo "$as_me:${as_lineno-$LINENO}: result: $V_INCLUDE_TCL" >&5 $as_echo "$V_INCLUDE_TCL" >&6; } fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for tclInt.h" >&5 $as_echo_n "checking for tclInt.h... " >&6; } if test "x$d" = "xno"; then : disable header V_INCLUDE_TCL=FAIL NS_PACKAGE_tcl_COMPLETE=false { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } else places="$TCL_H_PLACES" if test "x$d" != "x" -a "x$d" != xyes; then if test ! -d $d; then as_fn_error $? "$d is not a directory" "$LINENO" 5 fi places="$TCL_H_PLACES_D" fi V_INCLUDE_TCL="" found="" for dir in $places; do if test -r $dir/tclInt.h; then found="$dir" if test "$CC" != "icc" || test "$dir" != "/usr/include"; then V_INCLUDE_TCL="-I$dir" fi break fi done if test "FAIL$found" = "FAIL" ; then NS_PACKAGE_tcl_COMPLETE=false { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } else ac_tr_hdr=HAVE_`echo tclInt.h | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'` cat >>confdefs.h <<_ACEOF #define $ac_tr_hdr 1 _ACEOF V_INCLUDES="$V_INCLUDE_TCL $V_INCLUDES" V_DEFINES="-D$ac_tr_hdr $V_DEFINES" NS_PACKAGE_tcl_UNDERWAY=true { $as_echo "$as_me:${as_lineno-$LINENO}: result: $V_INCLUDE_TCL" >&5 $as_echo "$V_INCLUDE_TCL" >&6; } fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libtcl$TCL_HI_VERS" >&5 $as_echo_n "checking for libtcl$TCL_HI_VERS... " >&6; } if test "x$d" = "xno"; then : disable library V_LIB_TCL=FAIL NS_PACKAGE_tcl_COMPLETE=false { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } else places="$TCL_LIB_PLACES" if test "x$d" != "x" -a "x$d" != xyes; then if test ! -d $d; then as_fn_error $? "$d is not a directory" "$LINENO" 5 fi places="$TCL_LIB_PLACES_D" fi V_LIB_TCL="" full_lib_name="tcl$TCL_HI_VERS" simple_lib_name=`echo $full_lib_name | sed -e 's/\.//'` other_simple_lib_name=`echo $full_lib_name | sed -e 's/\./_/'` simpler_lib_name=`echo $simple_lib_name | sed -e 'y/0123456789/ /'` double_break=false for dir in $places; do for file in $full_lib_name $simple_lib_name $other_simple_lib_name $simpler_lib_name do if test -r $dir/lib$file.so -o -r $dir/lib$file.a -o -r $dir/lib$file.dylib; then V_LIB_TCL="-L$dir -l$file" double_break=true break fi done if $double_break; then break fi done if test "FAIL$V_LIB_TCL" = "FAIL" ; then NS_PACKAGE_tcl_COMPLETE=false { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } else if test "$solaris"; then V_LIB_TCL="-R$dir $V_LIB_TCL" fi ac_tr_lib=HAVE_LIB`echo tcl$TCL_HI_VERS | sed -e 's/[^a-zA-Z0-9_]/_/g' \ -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'` cat >>confdefs.h <<_ACEOF #define $ac_tr_lib 1 _ACEOF V_LIBS="$V_LIB_TCL $V_LIBS" V_DEFINES="-D$ac_tr_lib $V_DEFINES" NS_PACKAGE_tcl_UNDERWAY=true { $as_echo "$as_me:${as_lineno-$LINENO}: result: $V_LIB_TCL" >&5 $as_echo "$V_LIB_TCL" >&6; } fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for init.tcl" >&5 $as_echo_n "checking for init.tcl... " >&6; } if test "x$d" = "xno"; then : disable header V_LIBRARY_TCL=FAIL NS_PACKAGE_tcl_COMPLETE=false { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } else places="$TCL_TCL_PLACES" if test "x$d" != "x" -a "x$d" != xyes; then if test ! -d $d; then as_fn_error $? "$d is not a directory" "$LINENO" 5 fi places="$TCL_TCL_PLACES_D" fi V_LIBRARY_TCL="" for dir in $places; do if test -r $dir/init.tcl; then V_LIBRARY_TCL="$dir" break fi done if test "FAIL$V_LIBRARY_TCL" = "FAIL" ; then NS_PACKAGE_tcl_COMPLETE=false { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } else NS_PACKAGE_tcl_UNDERWAY=true { $as_echo "$as_me:${as_lineno-$LINENO}: result: $V_LIBRARY_TCL" >&5 $as_echo "$V_LIBRARY_TCL" >&6; } fi fi tcl_http_library_dir=/dev/null tcl_http_places=" \ $V_LIBRARY_TCL \ $V_LIBRARY_TCL/http \ $V_LIBRARY_TCL/http2.5 \ $V_LIBRARY_TCL/http2.4 \ $V_LIBRARY_TCL/http2.3 \ $V_LIBRARY_TCL/http2.1 \ $V_LIBRARY_TCL/http2.0 \ $V_LIBRARY_TCL/http1.0 \ " { $as_echo "$as_me:${as_lineno-$LINENO}: checking for http.tcl" >&5 $as_echo_n "checking for http.tcl... " >&6; } if test "x""" = "xno"; then : disable header tcl_http_library_dir=FAIL NS_PACKAGE_tcl_COMPLETE=false { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } else places="$tcl_http_places" if test "x""" != "x" -a "x""" != xyes; then if test ! -d ""; then as_fn_error $? "\"\" is not a directory" "$LINENO" 5 fi places="""" fi tcl_http_library_dir="" for dir in $places; do if test -r $dir/http.tcl; then tcl_http_library_dir="$dir" break fi done if test "FAIL$tcl_http_library_dir" = "FAIL" ; then NS_PACKAGE_tcl_COMPLETE=false { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } else NS_PACKAGE_tcl_UNDERWAY=true { $as_echo "$as_me:${as_lineno-$LINENO}: result: $tcl_http_library_dir" >&5 $as_echo "$tcl_http_library_dir" >&6; } fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking Tcl http.tcl library" >&5 $as_echo_n "checking Tcl http.tcl library... " >&6; } if test -f $tcl_http_library_dir/http.tcl then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else as_fn_error $? "Couldn't find http.tcl in $tcl_http_places" "$LINENO" 5 fi V_TCL_LIBRARY_FILES="\$(TCL_BASE_LIBRARY_FILES) $tcl_http_library_dir/http.tcl" # # check for tclsh # oldpath=$PATH # $d/unix works if $d is the 8.0 distribution # $d/bin is for the ns-allinone distribution (kind of hacky, isn't it?) PATH=../bin:../tcl$TCL_HI_VERS/unix:../tcl$TCL_VERS/unix:$d/unix:$d/bin:$PATH for ac_prog in tclsh$TCL_VERS tclsh$TCL_HI_VERS tclsh tclsh$TCL_OLD_VERS do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_V_TCLSH+:} false; then : $as_echo_n "(cached) " >&6 else case $V_TCLSH in [\\/]* | ?:[\\/]*) ac_cv_path_V_TCLSH="$V_TCLSH" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_V_TCLSH="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi V_TCLSH=$ac_cv_path_V_TCLSH if test -n "$V_TCLSH"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $V_TCLSH" >&5 $as_echo "$V_TCLSH" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$V_TCLSH" && break done test -n "$V_TCLSH" || V_TCLSH="no" if test x"$V_TCLSH" = xno then # out of luck NS_PACKAGE_tcl_COMPLETE=false fi # absolutize it V_TCLSH=`absolutize $V_TCLSH` PATH=$oldpath NS_PACKAGE_tcl_VALID=false if $NS_PACKAGE_tcl_UNDERWAY; then if $NS_PACKAGE_tcl_COMPLETE; then : All components of tcl found. NS_PACKAGE_tcl_VALID=true else as_fn_error $? "Installation of tcl seems incomplete or can't be found automatically. Please correct the problem by telling configure where tcl is using the argument --with-tcl=/path/to/package (perhaps after installing it), or the package is not required, disable it with --with-tcl=no." "$LINENO" 5 fi fi if test "xyes" = xyes; then if $NS_PACKAGE_tcl_VALID; then : else as_fn_error $? "tcl is required but could not be completely found. Please correct the problem by telling configure where tcl is using the argument --with-tcl=/path/to/package, or the package is not required, disable it with --with-tcl=no." "$LINENO" 5 fi fi # Check whether --with-tk was given. if test "${with_tk+set}" = set; then : withval=$with_tk; d=$withval else d="" fi # Check whether --with-tk-ver was given. if test "${with_tk_ver+set}" = set; then : withval=$with_tk_ver; TK_VERS=$withval else TK_VERS=$TCL_VERS fi TK_HI_VERS=`echo $TK_VERS | sed 's/\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\)/\1.\2/'` TK_MAJOR_VERS=`echo $TK_VERS | sed 's/\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\)/\1/'` TK_ALT_VERS=8.5 TK_OLD_VERS=8.4 TK_OLD_ALT_VERS=`echo $TK_OLD_VERS | sed 's/\.//'` TK_TCL_PLACES_D="$d \ $d/lib64/tk$TK_VERS \ $d/lib64/tk$TK_ALT_VERS \ $d/lib64/tk$TK_VERS \ $d/lib/tk$TK_ALT_VERS \ $d/lib/tk$TK_HI_VERS \ $d/library \ $d/lib/tk \ $d/../lib/tk$TK_VERS \ $d/../lib/tk$TK_ALT_VERS \ $d/../lib/tk$TK_HI_VERS \ $d/../lib/tk \ $d/lib/tk$TK_OLD_VERS \ $d/lib/tk$TK_OLD_ALT_VERS \ $d/../lib/tk$TK_OLD_VERS \ $d/../lib/tk$TK_OLD_ALT_VERS \ $d/../lib/tk \ $d/lib \ $d/library" TK_TCL_PLACES=" \ ../lib/tk$TK_HI_VERS \ ../lib/tk$TK_VERS \ ../lib/tk$TK_ALT_VERS \ ../tk$TK_VERS/library \ ../tk$TK_ALT_VERS/library \ ../tk$TK_HI_VERS/library \ ../tk/library \ /usr/src/local/tk$TK_VERS/library \ /usr/src/local/tk$TK_ALT_VERS/library \ /usr/src/local/tk$TK_HI_VERS/library \ /usr/contrib/include \ /usr/local/lib/tk$TK_VERS \ /usr/local/lib/tk$TK_ALT_VERS \ /usr/local/lib/tk$TK_HI_VERS \ /usr/local/include/tk$TK_VERS \ /usr/local/include/tk$TK_ALT_VERS \ /usr/local/include/tk$TK_HI_VERS \ /usr/local/include \ /usr/lib64/tk$TK_VERS \ /usr/lib64/tk$TK_ALT_VERS \ /usr/lib64/tk$TK_HI_VERS \ /usr/lib64/tk \ /usr/lib/tk$TK_VERS \ /usr/lib/tk$TK_ALT_VERS \ /usr/lib/tk$TK_HI_VERS \ /usr/lib/tk \ /usr/share/tk$TK_VERS \ /usr/share/tk$TK_ALT_VERS \ /usr/share/tk$TK_HI_VERS \ /usr/share/tcltk/k$TK_VERS \ /usr/share/tcltk/tk$TK_ALT_VERS \ /usr/share/tcltk/tk$TK_HI_VERS \ /usr/share/tk \ ../tk$TK_OLD_VERS/library \ ../tk$TK_OLD_ALT_VERS/library \ /usr/src/local/tk$TK_OLD_VERS/library \ /usr/src/local/tk$TK_OLD_ALT_VERS/library \ /usr/local/lib/tk$TK_OLD_VERS \ /usr/local/lib/tk$TK_OLD_ALT_VERS \ /usr/local/include/tk$TK_OLD_VERS \ /usr/local/include/tk$TK_OLD_ALT_VERS \ /usr/lib/tk$TK_OLD_VERS \ /usr/lib/tk$TK_OLD_ALT_VERS \ $prefix/include \ $prefix/lib/tk \ $x_includes/tk \ $x_includes \ /usr/include" TK_H_PLACES_D="$d \ $d/generic \ $d/../include/tk$TK_VERS \ $d/../include/tk$TK_HI_VERS \ $d/../include/tk$TK_OLD_VERS \ $d/include/tk$TK_VERS \ $d/include/tk$TK_HI_VERS \ $d/include/tk$TK_OLD_VERS \ $d/include" TK_H_PLACES=" \ ../include \ ../tk$TK_VERS/generic \ ../tk$TK_ALT_VERS/generic \ ../tk$TK_HI_VERS/generic \ /usr/src/local/tk$TK_VERS/generic \ /usr/src/local/tk$TK_ALT_VERS/generic \ /usr/src/local/tk$TK_HI_VERS/generic \ /usr/contrib/include \ /usr/local/lib/tk$TK_VERS \ /usr/local/lib/tk$TK_ALT_VERS \ /usr/local/lib/tk$TK_HI_VERS \ /usr/local/include/tk$TK_VERS \ /usr/local/include/tk$TK_ALT_VERS \ /usr/local/include/tk$TK_HI_VERS \ /usr/local/include \ /import/tk/include/tk$TK_VERS \ /import/tk/include/tk$TK_ALT_VERS \ /import/tk/include/tk$TK_HI_VERS \ ../tk$TK_OLD_VERS/generic \ ../tk$TK_OLD_ALT_VERS/generic \ /usr/src/local/tk$TK_OLD_VERS/generic \ /usr/src/local/tk$TK_OLD_ALT_VERS/generic \ /usr/local/lib/tk$TK_OLD_VERS \ /usr/local/lib/tk$TK_OLD_ALT_VERS \ /usr/local/include/tk$TK_OLD_VERS \ /usr/local/include/tk$TK_OLD_ALT_VERS \ /import/tk/include/tk$TK_OLD_VERS \ /import/tk/include/tk$TK_OLD_ALT_VERS \ $prefix/include \ $x_includes/tk \ $x_includes \ /usr/include \ /usr/include/tcl \ /usr/include/tcl$TK_VERS \ /usr/include/tcl$TK_ALT_VERS \ /usr/include/tcl$TK_HI_VERS \ " TK_LIB_PLACES_D="$d \ $d/lib \ $d/unix" TK_LIB_PLACES=" \ ../lib \ ../lib/tk$TK_HI_VERS \ ../lib/tk$TK_VERS \ ../lib/tk$TK_ALT_VERS \ ../tk$TK_VERS/unix \ ../tk$TK_ALT_VERS/unix \ ../tk$TK_HI_VERS/unix \ /usr/src/local/tk$TK_VERS/unix \ /usr/src/local/tk$TK_ALT_VERS/unix \ /usr/src/local/tk$TK_HI_VERS/unix \ /usr/contrib/lib \ /usr/local/lib/tk$TK_VERS \ /usr/local/lib/tk$TK_ALT_VERS \ /usr/local/lib/tk$TK_HI_VERS \ ../tk$TK_OLD_VERS/unix \ ../tk$TK_OLD_ALT_VERS/unix \ /usr/src/local/tk$TK_OLD_VERS/unix \ /usr/src/local/tk$TK_OLD_ALT_VERS/unix \ /usr/local/lib/tk$TK_OLD_VERS \ /usr/local/lib/tk$TK_OLD_ALT_VERS \ /usr/local/lib \ $prefix/lib \ $x_libs/tk \ $x_libs \ /usr/lib64 \ /usr/lib" NS_PACKAGE_tk_UNDERWAY=false NS_PACKAGE_tk_COMPLETE=true { $as_echo "$as_me:${as_lineno-$LINENO}: checking for tk.h" >&5 $as_echo_n "checking for tk.h... " >&6; } if test "x$d" = "xno"; then : disable header V_INCLUDE_TK=FAIL NS_PACKAGE_tk_COMPLETE=false { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } else places="$TK_H_PLACES" if test "x$d" != "x" -a "x$d" != xyes; then if test ! -d $d; then as_fn_error $? "$d is not a directory" "$LINENO" 5 fi places="$TK_H_PLACES_D" fi V_INCLUDE_TK="" found="" for dir in $places; do if test -r $dir/tk.h; then found="$dir" if test "$CC" != "icc" || test "$dir" != "/usr/include"; then V_INCLUDE_TK="-I$dir" fi break fi done if test "FAIL$found" = "FAIL" ; then NS_PACKAGE_tk_COMPLETE=false { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } else ac_tr_hdr=HAVE_`echo tk.h | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'` cat >>confdefs.h <<_ACEOF #define $ac_tr_hdr 1 _ACEOF V_INCLUDES="$V_INCLUDE_TK $V_INCLUDES" V_DEFINES="-D$ac_tr_hdr $V_DEFINES" NS_PACKAGE_tk_UNDERWAY=true { $as_echo "$as_me:${as_lineno-$LINENO}: result: $V_INCLUDE_TK" >&5 $as_echo "$V_INCLUDE_TK" >&6; } fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libtk$TK_HI_VERS" >&5 $as_echo_n "checking for libtk$TK_HI_VERS... " >&6; } if test "x$d" = "xno"; then : disable library V_LIB_TK=FAIL NS_PACKAGE_tk_COMPLETE=false { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } else places="$TK_LIB_PLACES" if test "x$d" != "x" -a "x$d" != xyes; then if test ! -d $d; then as_fn_error $? "$d is not a directory" "$LINENO" 5 fi places="$TK_LIB_PLACES_D" fi V_LIB_TK="" full_lib_name="tk$TK_HI_VERS" simple_lib_name=`echo $full_lib_name | sed -e 's/\.//'` other_simple_lib_name=`echo $full_lib_name | sed -e 's/\./_/'` simpler_lib_name=`echo $simple_lib_name | sed -e 'y/0123456789/ /'` double_break=false for dir in $places; do for file in $full_lib_name $simple_lib_name $other_simple_lib_name $simpler_lib_name do if test -r $dir/lib$file.so -o -r $dir/lib$file.a -o -r $dir/lib$file.dylib; then V_LIB_TK="-L$dir -l$file" double_break=true break fi done if $double_break; then break fi done if test "FAIL$V_LIB_TK" = "FAIL" ; then NS_PACKAGE_tk_COMPLETE=false { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } else if test "$solaris"; then V_LIB_TK="-R$dir $V_LIB_TK" fi ac_tr_lib=HAVE_LIB`echo tk$TK_HI_VERS | sed -e 's/[^a-zA-Z0-9_]/_/g' \ -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'` cat >>confdefs.h <<_ACEOF #define $ac_tr_lib 1 _ACEOF V_LIBS="$V_LIB_TK $V_LIBS" V_DEFINES="-D$ac_tr_lib $V_DEFINES" NS_PACKAGE_tk_UNDERWAY=true { $as_echo "$as_me:${as_lineno-$LINENO}: result: $V_LIB_TK" >&5 $as_echo "$V_LIB_TK" >&6; } fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for tk.tcl" >&5 $as_echo_n "checking for tk.tcl... " >&6; } if test "x$d" = "xno"; then : disable header V_LIBRARY_TK=FAIL NS_PACKAGE_tk_COMPLETE=false { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } else places="$TK_TCL_PLACES" if test "x$d" != "x" -a "x$d" != xyes; then if test ! -d $d; then as_fn_error $? "$d is not a directory" "$LINENO" 5 fi places="$TK_TCL_PLACES_D" fi V_LIBRARY_TK="" for dir in $places; do if test -r $dir/tk.tcl; then V_LIBRARY_TK="$dir" break fi done if test "FAIL$V_LIBRARY_TK" = "FAIL" ; then NS_PACKAGE_tk_COMPLETE=false { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } else NS_PACKAGE_tk_UNDERWAY=true { $as_echo "$as_me:${as_lineno-$LINENO}: result: $V_LIBRARY_TK" >&5 $as_echo "$V_LIBRARY_TK" >&6; } fi fi NS_PACKAGE_tk_VALID=false if $NS_PACKAGE_tk_UNDERWAY; then if $NS_PACKAGE_tk_COMPLETE; then : All components of tk found. NS_PACKAGE_tk_VALID=true else as_fn_error $? "Installation of tk seems incomplete or can't be found automatically. Please correct the problem by telling configure where tk is using the argument --with-tk=/path/to/package (perhaps after installing it), or the package is not required, disable it with --with-tk=no." "$LINENO" 5 fi fi if test "xno" = xyes; then if $NS_PACKAGE_tk_VALID; then : else as_fn_error $? "tk is required but could not be completely found. Please correct the problem by telling configure where tk is using the argument --with-tk=/path/to/package, or the package is not required, disable it with --with-tk=no." "$LINENO" 5 fi fi if test -r $V_LIBRARY_TK/optionMenu.tcl ; then V_TKDOSNAMES='$(LIBRARY_TK)/optionMenu.tcl $(LIBRARY_TK)/scrollbar.tcl' V_NEED_DL="" else V_TKDOSNAMES='$(LIBRARY_TK)/optMenu.tcl $(LIBRARY_TK)/scrlbar.tcl' V_NEED_DL=YES fi # Check whether --with-tcldebug was given. if test "${with_tcldebug+set}" = set; then : withval=$with_tcldebug; d=$withval else d="" fi #xxx: Don't know anything about 1.8 # 2.0 = tcl 8.3 # 1.9 = tcl 7.5, 7.6, 8.0 TCLDEBUG_VERS="2.0 1.9 1.8 1.7" pwd_vers="" local_vers="" for vers in $TCLDEBUG_VERS; do pwd_vers="$pwd_vers $PWD/../tcl-debug-$vers" local_vers="$local_vers /usr/src/local/otcl-debug-$vers" done TCLDEBUG_PATH="\ $PWD/../tcl-debug \ $pwd_vers /usr/contrib/lib \ /usr/local/lib \ /usr/lib \ /usr/src/local/tcl-debug \ $local_vers \ " TCLDEBUG_PATH_D="$d \ $d/lib \ $d/../lib \ " NS_PACKAGE_tcldebug_UNDERWAY=false NS_PACKAGE_tcldebug_COMPLETE=true { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libtcldbg" >&5 $as_echo_n "checking for libtcldbg... " >&6; } if test "x$d" = "xno"; then : disable library V_LIB_TCLDEBUG=FAIL NS_PACKAGE_tcldebug_COMPLETE=false { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } else places="$TCLDEBUG_PATH" if test "x$d" != "x" -a "x$d" != xyes; then if test ! -d $d; then as_fn_error $? "$d is not a directory" "$LINENO" 5 fi places="$TCLDEBUG_PATH_D" fi V_LIB_TCLDEBUG="" full_lib_name="tcldbg" simple_lib_name=`echo $full_lib_name | sed -e 's/\.//'` other_simple_lib_name=`echo $full_lib_name | sed -e 's/\./_/'` simpler_lib_name=`echo $simple_lib_name | sed -e 'y/0123456789/ /'` double_break=false for dir in $places; do for file in $full_lib_name $simple_lib_name $other_simple_lib_name $simpler_lib_name do if test -r $dir/lib$file.so -o -r $dir/lib$file.a -o -r $dir/lib$file.dylib; then V_LIB_TCLDEBUG="-L$dir -l$file" double_break=true break fi done if $double_break; then break fi done if test "FAIL$V_LIB_TCLDEBUG" = "FAIL" ; then NS_PACKAGE_tcldebug_COMPLETE=false { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } else if test "$solaris"; then V_LIB_TCLDEBUG="-R$dir $V_LIB_TCLDEBUG" fi ac_tr_lib=HAVE_LIB`echo tcldbg | sed -e 's/[^a-zA-Z0-9_]/_/g' \ -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'` cat >>confdefs.h <<_ACEOF #define $ac_tr_lib 1 _ACEOF V_LIBS="$V_LIB_TCLDEBUG $V_LIBS" V_DEFINES="-D$ac_tr_lib $V_DEFINES" NS_PACKAGE_tcldebug_UNDERWAY=true { $as_echo "$as_me:${as_lineno-$LINENO}: result: $V_LIB_TCLDEBUG" >&5 $as_echo "$V_LIB_TCLDEBUG" >&6; } fi fi #if $NS_PACKAGE_tcldebug_COMPLETE; then # look for debugger entry point function #tmpLIBS=$LIBS #LIBS="$V_LIB_TCL $V_LIB_TCLDEBUG" # the following two may be needed for linking during tcldbg CHECK_LIB #AC_CHECK_LIB(m, main) #AC_CHECK_LIB(dl, dlopen) #notfound=false #AC_CHECK_LIB(tcldbg, Dbg_Init, V_DEFINES="-DHAVE_Dbg_Init $V_DEFINES",notfound=true) #if $notfound; then # notfound=false # AC_CHECK_LIB(tcldbg, Tcldbg_Init, V_DEFINES="-DHAVE_Tcldbg_Init $V_DEFINES",notfound=true) #fi #LIBS=$tmpLIBS #if $notfound; then # echo "configure: warning: Tcl debugger init point is not found. You \ #will not be able to use Tcl debugger." 1>&2 # NS_PACKAGE_tcldebug_COMPLETE=false #fi #fi if $NS_PACKAGE_tcldebug_COMPLETE; then NS_PACKAGE_tcldebug_VALID=false if $NS_PACKAGE_tcldebug_UNDERWAY; then if $NS_PACKAGE_tcldebug_COMPLETE; then : All components of tcldebug found. NS_PACKAGE_tcldebug_VALID=true else as_fn_error $? "Installation of tcldebug seems incomplete or can't be found automatically. Please correct the problem by telling configure where tcldebug is using the argument --with-tcldebug=/path/to/package (perhaps after installing it), or the package is not required, disable it with --with-tcldebug=no." "$LINENO" 5 fi fi if test "xno" = xyes; then if $NS_PACKAGE_tcldebug_VALID; then : else as_fn_error $? "tcldebug is required but could not be completely found. Please correct the problem by telling configure where tcldebug is using the argument --with-tcldebug=/path/to/package, or the package is not required, disable it with --with-tcldebug=no." "$LINENO" 5 fi fi fi # Check whether --with-otcl was given. if test "${with_otcl+set}" = set; then : withval=$with_otcl; d=$withval else d="" fi OTCL_VERS=1.14 OTCL_ALT_VERS=1.0 OTCL_H_PLACES_D="$d \ $d/include" OTCL_H_PLACES="../otcl \ /usr/src/local/otcl \ ../otcl-$OTCL_VERS \ /import/otcl/include \ /usr/src/local/otcl-$OTCL_VERS \ /usr/src/local/otcl-$OTCL_ALT_VERS \ $prefix/include \ /usr/local/include \ /usr/contrib/include \ /usr/include" OTCL_LIB_PLACES_D="$d \ $d/lib \ " OTCL_LIB_PLACES="../otcl \ ../otcl-$OTCL_VERS \ ../otcl-$OTCL_ALT_VERS \ $prefix/lib \ $x_libraries \ /usr/contrib/lib \ /usr/local/lib \ /usr/lib \ /usr/src/local/otcl \ /usr/src/local/otcl-$OTCL_VERS \ /usr/src/local/otcl-$OTCL_ALT_VERS \ " NS_PACKAGE_otcl_UNDERWAY=false NS_PACKAGE_otcl_COMPLETE=true { $as_echo "$as_me:${as_lineno-$LINENO}: checking for otcl.h" >&5 $as_echo_n "checking for otcl.h... " >&6; } if test "x$d" = "xno"; then : disable header V_INCLUDE_OTCL=FAIL NS_PACKAGE_otcl_COMPLETE=false { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } else places="$OTCL_H_PLACES" if test "x$d" != "x" -a "x$d" != xyes; then if test ! -d $d; then as_fn_error $? "$d is not a directory" "$LINENO" 5 fi places="$OTCL_H_PLACES_D" fi V_INCLUDE_OTCL="" found="" for dir in $places; do if test -r $dir/otcl.h; then found="$dir" if test "$CC" != "icc" || test "$dir" != "/usr/include"; then V_INCLUDE_OTCL="-I$dir" fi break fi done if test "FAIL$found" = "FAIL" ; then NS_PACKAGE_otcl_COMPLETE=false { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } else ac_tr_hdr=HAVE_`echo otcl.h | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'` cat >>confdefs.h <<_ACEOF #define $ac_tr_hdr 1 _ACEOF V_INCLUDES="$V_INCLUDE_OTCL $V_INCLUDES" V_DEFINES="-D$ac_tr_hdr $V_DEFINES" NS_PACKAGE_otcl_UNDERWAY=true { $as_echo "$as_me:${as_lineno-$LINENO}: result: $V_INCLUDE_OTCL" >&5 $as_echo "$V_INCLUDE_OTCL" >&6; } fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libotcl$OTCL_VERS" >&5 $as_echo_n "checking for libotcl$OTCL_VERS... " >&6; } if test "x$d" = "xno"; then : disable library V_LIB_OTCL=FAIL NS_PACKAGE_otcl_COMPLETE=false { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } else places="$OTCL_LIB_PLACES" if test "x$d" != "x" -a "x$d" != xyes; then if test ! -d $d; then as_fn_error $? "$d is not a directory" "$LINENO" 5 fi places="$OTCL_LIB_PLACES_D" fi V_LIB_OTCL="" full_lib_name="otcl$OTCL_VERS" simple_lib_name=`echo $full_lib_name | sed -e 's/\.//'` other_simple_lib_name=`echo $full_lib_name | sed -e 's/\./_/'` simpler_lib_name=`echo $simple_lib_name | sed -e 'y/0123456789/ /'` double_break=false for dir in $places; do for file in $full_lib_name $simple_lib_name $other_simple_lib_name $simpler_lib_name do if test -r $dir/lib$file.so -o -r $dir/lib$file.a -o -r $dir/lib$file.dylib; then V_LIB_OTCL="-L$dir -l$file" double_break=true break fi done if $double_break; then break fi done if test "FAIL$V_LIB_OTCL" = "FAIL" ; then NS_PACKAGE_otcl_COMPLETE=false { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } else if test "$solaris"; then V_LIB_OTCL="-R$dir $V_LIB_OTCL" fi ac_tr_lib=HAVE_LIB`echo otcl$OTCL_VERS | sed -e 's/[^a-zA-Z0-9_]/_/g' \ -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'` cat >>confdefs.h <<_ACEOF #define $ac_tr_lib 1 _ACEOF V_LIBS="$V_LIB_OTCL $V_LIBS" V_DEFINES="-D$ac_tr_lib $V_DEFINES" NS_PACKAGE_otcl_UNDERWAY=true { $as_echo "$as_me:${as_lineno-$LINENO}: result: $V_LIB_OTCL" >&5 $as_echo "$V_LIB_OTCL" >&6; } fi fi NS_PACKAGE_otcl_VALID=false if $NS_PACKAGE_otcl_UNDERWAY; then if $NS_PACKAGE_otcl_COMPLETE; then : All components of otcl found. NS_PACKAGE_otcl_VALID=true else as_fn_error $? "Installation of otcl seems incomplete or can't be found automatically. Please correct the problem by telling configure where otcl is using the argument --with-otcl=/path/to/package (perhaps after installing it), or the package is not required, disable it with --with-otcl=no." "$LINENO" 5 fi fi if test "xyes" = xyes; then if $NS_PACKAGE_otcl_VALID; then : else as_fn_error $? "otcl is required but could not be completely found. Please correct the problem by telling configure where otcl is using the argument --with-otcl=/path/to/package, or the package is not required, disable it with --with-otcl=no." "$LINENO" 5 fi fi # Check whether --with-Tcl was given. if test "${with_Tcl+set}" = set; then : withval=$with_Tcl; as_fn_error $? "The --with-Tcl option has been replaced with --with-tclcl. Please insure you have an up-to-date copy of TclCL and re-run your configuration." "$LINENO" 5 fi # Check whether --with-tclcl was given. if test "${with_tclcl+set}" = set; then : withval=$with_tclcl; d=$withval else d="" fi TCLCL_VERS=1.20 TCLCL_ALT_VERS=1.0 TCLCL_H_PLACES="\ ../tclcl-$TCLCL_VERS \ ../tclcl-$TCLCL_ALT_VERS \ ../tclcl \ ../TclCL \ ../Tcl-$TCLCL_VERS \ ../Tcl-$TCLCL_ALT_VERS \ ../Tcl \ /usr/src/local/Tcl \ /usr/src/local/Tcl-1.0 \ /import/Tcl/include \ /usr/local/include \ /usr/contrib/include \ /usr/include" TCLCL_H_PLACES_D="$d \ $d/include" TCLCL_LIB_PLACES="\ ../tclcl-$TCLCL_VERS \ ../tclcl-$TCLCL_ALT_VERS \ ../tclcl \ ../TclCL \ ../Tcl-$TCLCL_VERS \ ../Tcl-$TCLCL_ALT_VERS \ ../Tcl \ $x_libraries \ /usr/contrib/lib \ /usr/local/lib \ /usr/lib \ /usr/src/local/Tcl \ /usr/src/local/Tcl-1.0" TCLCL_LIB_PLACES_D="\ $d \ $d/lib \ $d/bin" TCLCL_PROG_PLACES="\ ../tclcl-$TCLCL_VERS \ ../tclcl-$TCLCL_ALT_VERS \ ../tclcl \ ../TclCL \ ../Tcl-$TCLCL_VERS \ ../Tcl-$TCLCL_ALT_VERS \ ../Tcl \ $prefix/bin \ $x_libraries \ /usr/contrib/bin \ /usr/local/bin \ /usr/bin \ /usr/src/local/Tcl \ /usr/src/local/Tcl-1.0 \ " TCLCL_PROG_PLACES_D=" $d \ $d/bin" NS_PACKAGE_tclcl_UNDERWAY=false NS_PACKAGE_tclcl_COMPLETE=true { $as_echo "$as_me:${as_lineno-$LINENO}: checking for tclcl.h" >&5 $as_echo_n "checking for tclcl.h... " >&6; } if test "x$d" = "xno"; then : disable header V_INCLUDE_TCLCL=FAIL NS_PACKAGE_tclcl_COMPLETE=false { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } else places="$TCLCL_H_PLACES" if test "x$d" != "x" -a "x$d" != xyes; then if test ! -d $d; then as_fn_error $? "$d is not a directory" "$LINENO" 5 fi places="$TCLCL_H_PLACES_D" fi V_INCLUDE_TCLCL="" found="" for dir in $places; do if test -r $dir/tclcl.h; then found="$dir" if test "$CC" != "icc" || test "$dir" != "/usr/include"; then V_INCLUDE_TCLCL="-I$dir" fi break fi done if test "FAIL$found" = "FAIL" ; then NS_PACKAGE_tclcl_COMPLETE=false { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } else ac_tr_hdr=HAVE_`echo tclcl.h | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'` cat >>confdefs.h <<_ACEOF #define $ac_tr_hdr 1 _ACEOF V_INCLUDES="$V_INCLUDE_TCLCL $V_INCLUDES" V_DEFINES="-D$ac_tr_hdr $V_DEFINES" NS_PACKAGE_tclcl_UNDERWAY=true { $as_echo "$as_me:${as_lineno-$LINENO}: result: $V_INCLUDE_TCLCL" >&5 $as_echo "$V_INCLUDE_TCLCL" >&6; } fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libtclcl$tclcl_VERS" >&5 $as_echo_n "checking for libtclcl$tclcl_VERS... " >&6; } if test "x$d" = "xno"; then : disable library V_LIB_TCLCL=FAIL NS_PACKAGE_tclcl_COMPLETE=false { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } else places="$TCLCL_LIB_PLACES" if test "x$d" != "x" -a "x$d" != xyes; then if test ! -d $d; then as_fn_error $? "$d is not a directory" "$LINENO" 5 fi places="$TCLCL_LIB_PLACES_D" fi V_LIB_TCLCL="" full_lib_name="tclcl$tclcl_VERS" simple_lib_name=`echo $full_lib_name | sed -e 's/\.//'` other_simple_lib_name=`echo $full_lib_name | sed -e 's/\./_/'` simpler_lib_name=`echo $simple_lib_name | sed -e 'y/0123456789/ /'` double_break=false for dir in $places; do for file in $full_lib_name $simple_lib_name $other_simple_lib_name $simpler_lib_name do if test -r $dir/lib$file.so -o -r $dir/lib$file.a -o -r $dir/lib$file.dylib; then V_LIB_TCLCL="-L$dir -l$file" double_break=true break fi done if $double_break; then break fi done if test "FAIL$V_LIB_TCLCL" = "FAIL" ; then NS_PACKAGE_tclcl_COMPLETE=false { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } else if test "$solaris"; then V_LIB_TCLCL="-R$dir $V_LIB_TCLCL" fi ac_tr_lib=HAVE_LIB`echo tclcl$tclcl_VERS | sed -e 's/[^a-zA-Z0-9_]/_/g' \ -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'` cat >>confdefs.h <<_ACEOF #define $ac_tr_lib 1 _ACEOF V_LIBS="$V_LIB_TCLCL $V_LIBS" V_DEFINES="-D$ac_tr_lib $V_DEFINES" NS_PACKAGE_tclcl_UNDERWAY=true { $as_echo "$as_me:${as_lineno-$LINENO}: result: $V_LIB_TCLCL" >&5 $as_echo "$V_LIB_TCLCL" >&6; } fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for tcl2c++" >&5 $as_echo_n "checking for tcl2c++... " >&6; } if test "x$d" = "xno"; then : disable header V_TCL2CPP_DIR=FAIL NS_PACKAGE_tclcl_COMPLETE=false { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } else places="$TCLCL_PROG_PLACES" if test "x$d" != "x" -a "x$d" != xyes; then if test ! -d $d; then as_fn_error $? "$d is not a directory" "$LINENO" 5 fi places="$TCLCL_PROG_PLACES_D" fi V_TCL2CPP_DIR="" for dir in $places; do if test -r $dir/tcl2c++; then V_TCL2CPP_DIR="$dir" break fi done if test "FAIL$V_TCL2CPP_DIR" = "FAIL" ; then NS_PACKAGE_tclcl_COMPLETE=false { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } else NS_PACKAGE_tclcl_UNDERWAY=true { $as_echo "$as_me:${as_lineno-$LINENO}: result: $V_TCL2CPP_DIR" >&5 $as_echo "$V_TCL2CPP_DIR" >&6; } fi fi V_TCL2CPP=$V_TCL2CPP_DIR/tcl2c++ NS_PACKAGE_tclcl_VALID=false if $NS_PACKAGE_tclcl_UNDERWAY; then if $NS_PACKAGE_tclcl_COMPLETE; then : All components of tclcl found. NS_PACKAGE_tclcl_VALID=true else as_fn_error $? "Installation of tclcl seems incomplete or can't be found automatically. Please correct the problem by telling configure where tclcl is using the argument --with-tclcl=/path/to/package (perhaps after installing it), or the package is not required, disable it with --with-tclcl=no." "$LINENO" 5 fi fi if test "xyes" = xyes; then if $NS_PACKAGE_tclcl_VALID; then : else as_fn_error $? "tclcl is required but could not be completely found. Please correct the problem by telling configure where tclcl is using the argument --with-tclcl=/path/to/package, or the package is not required, disable it with --with-tclcl=no." "$LINENO" 5 fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking return type of random" >&5 $as_echo_n "checking return type of random... " >&6; } touch confdefs.h if test "$cross_compiling" = yes; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: cross compiling--guessing int" >&5 $as_echo "cross compiling--guessing int" >&6; } $as_echo "#define RANDOM_RETURN_TYPE int" >>confdefs.h else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include "confdefs.h" long random() { return 1; } main() { exit(0); } _ACEOF if ac_fn_c_try_run "$LINENO"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: long" >&5 $as_echo "long" >&6; } $as_echo "#define RANDOM_RETURN_TYPE long" >>confdefs.h else { $as_echo "$as_me:${as_lineno-$LINENO}: result: int" >&5 $as_echo "int" >&6; } $as_echo "#define RANDOM_RETURN_TYPE int" >>confdefs.h fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi ac_fn_c_check_type "$LINENO" "int8_t" "ac_cv_type_int8_t" "$ac_includes_default" if test "x$ac_cv_type_int8_t" = xyes; then : else cat >>confdefs.h <<_ACEOF #define int8_t signed char _ACEOF fi ac_fn_c_check_type "$LINENO" "int16_t" "ac_cv_type_int16_t" "$ac_includes_default" if test "x$ac_cv_type_int16_t" = xyes; then : else cat >>confdefs.h <<_ACEOF #define int16_t short _ACEOF fi ac_fn_c_check_type "$LINENO" "int32_t" "ac_cv_type_int32_t" "$ac_includes_default" if test "x$ac_cv_type_int32_t" = xyes; then : else cat >>confdefs.h <<_ACEOF #define int32_t int _ACEOF fi ac_fn_c_check_type "$LINENO" "u_int8_t" "ac_cv_type_u_int8_t" "$ac_includes_default" if test "x$ac_cv_type_u_int8_t" = xyes; then : else cat >>confdefs.h <<_ACEOF #define u_int8_t unsigned char _ACEOF fi ac_fn_c_check_type "$LINENO" "u_int16_t" "ac_cv_type_u_int16_t" "$ac_includes_default" if test "x$ac_cv_type_u_int16_t" = xyes; then : else cat >>confdefs.h <<_ACEOF #define u_int16_t unsigned short _ACEOF fi ac_fn_c_check_type "$LINENO" "u_int32_t" "ac_cv_type_u_int32_t" "$ac_includes_default" if test "x$ac_cv_type_u_int32_t" = xyes; then : else cat >>confdefs.h <<_ACEOF #define u_int32_t unsigned int _ACEOF fi for ac_func in strtoq strtoll do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" if eval test \"x\$"$as_ac_var"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF fi done INT64_T_ALTERNATIVE=none HAVE_SUPPORTING_FUNC=false # The cast to long int works around a bug in the HP C Compiler # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of long" >&5 $as_echo_n "checking size of long... " >&6; } if ${ac_cv_sizeof_long+:} false; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (long))" "ac_cv_sizeof_long" "$ac_includes_default"; then : else if test "$ac_cv_type_long" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "cannot compute sizeof (long) See \`config.log' for more details" "$LINENO" 5; } else ac_cv_sizeof_long=0 fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_long" >&5 $as_echo "$ac_cv_sizeof_long" >&6; } cat >>confdefs.h <<_ACEOF #define SIZEOF_LONG $ac_cv_sizeof_long _ACEOF if test $ac_cv_sizeof_long -ge 8 then INT64_T_ALTERNATIVE=long ac_fn_c_check_func "$LINENO" "strtol" "ac_cv_func_strtol" if test "x$ac_cv_func_strtol" = xyes; then : fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for __int64_t" >&5 $as_echo_n "checking for __int64_t... " >&6; } if ${nsnam_cv_int64_t_HAVE___INT64_T+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : nsnam_cv_int64_t_HAVE___INT64_T=cross else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ main() { __int64_t x; exit (sizeof(x) >= 8 ? 0 : 1); } _ACEOF if ac_fn_c_try_run "$LINENO"; then : nsnam_cv_int64_t_HAVE___INT64_T=yes else nsnam_cv_int64_t_HAVE___INT64_T=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $nsnam_cv_int64_t_HAVE___INT64_T" >&5 $as_echo "$nsnam_cv_int64_t_HAVE___INT64_T" >&6; } if test x"$nsnam_cv_int64_t_HAVE___INT64_T" = x"yes" -a "x$INT64_T_ALTERNATIVE" = xnone; then INT64_T_ALTERNATIVE=__int64_t fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for long long" >&5 $as_echo_n "checking for long long... " >&6; } if ${nsnam_cv_int64_t_HAVE_LONG_LONG+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : nsnam_cv_int64_t_HAVE_LONG_LONG=cross else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ main() { long long x; exit (sizeof(x) >= 8 ? 0 : 1); } _ACEOF if ac_fn_c_try_run "$LINENO"; then : nsnam_cv_int64_t_HAVE_LONG_LONG=yes else nsnam_cv_int64_t_HAVE_LONG_LONG=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $nsnam_cv_int64_t_HAVE_LONG_LONG" >&5 $as_echo "$nsnam_cv_int64_t_HAVE_LONG_LONG" >&6; } if test x"$nsnam_cv_int64_t_HAVE_LONG_LONG" = x"yes" -a "x$INT64_T_ALTERNATIVE" = xnone; then INT64_T_ALTERNATIVE="long long" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for int64_t" >&5 $as_echo_n "checking for int64_t... " >&6; } if ${ac_cv_type_int64_t+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #if STDC_HEADERS #include #include #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "(^|[^a-zA-Z_0-9])int64_t[^a-zA-Z_0-9]" >/dev/null 2>&1; then : ac_cv_type_int64_t=yes else ac_cv_type_int64_t=no fi rm -f conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_type_int64_t" >&5 $as_echo "$ac_cv_type_int64_t" >&6; } if test $ac_cv_type_int64_t = no; then cat >>confdefs.h <<_ACEOF #define int64_t $INT64_T_ALTERNATIVE _ACEOF fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking which kind of 64-bit int to use" >&5 $as_echo_n "checking which kind of 64-bit int to use... " >&6; } if test $ac_cv_type_int64_t = yes -o "$INT64_T_ALTERNATIVE" != none then if test "$INT64_T_ALTERNATIVE" = long -o "$ac_cv_func_strtoq" = yes -o "$ac_cv_func_strtoll" = yes then $as_echo "#define HAVE_INT64 1" >>confdefs.h if test $ac_cv_type_int64_t = yes then { $as_echo "$as_me:${as_lineno-$LINENO}: result: int64_t" >&5 $as_echo "int64_t" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INT64_T_ALTERNATIVE" >&5 $as_echo "$INT64_T_ALTERNATIVE" >&6; } fi else { $as_echo "$as_me:${as_lineno-$LINENO}: result: missing strto 64-bit-type" >&5 $as_echo "missing strto 64-bit-type" >&6; } fi else { $as_echo "$as_me:${as_lineno-$LINENO}: result: none" >&5 $as_echo "none" >&6; } fi for ac_func in snprintf do : ac_fn_c_check_func "$LINENO" "snprintf" "ac_cv_func_snprintf" if test "x$ac_cv_func_snprintf" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_SNPRINTF 1 _ACEOF fi done if test "$enable_static" = "yes" ; then echo Explicitly enabling static compilation V_STATIC="-static" elif test "$enable_static" = "no" ; then echo Explicitly disabling static compilation V_STATIC="" else echo No explicit static compilation flag\; setting V_STATIC to \"$V_STATIC\" fi # # tcl7.x needs a dynamic loading library (unless built with the # -disable-load flag). Try to find the appropriate one. if test ! -z "$V_NEED_DL" ; then V_LIB_DL="" case "$target" in *-*-solaris*) V_LIB_DL="dl" ;; sparc-sun-sunos*) V_LIB_DL="dl" ;; *-*-bsdi2.1) V_LIB_DL="dl" ;; *-*-bsdi3.0) V_LIB_DL="dl" ;; *-*-hpux*) V_LIB_DL="dld" ;; *-*-linux*) { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 $as_echo_n "checking for dlopen in -ldl... " >&6; } if ${ac_cv_lib_dl_dlopen+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dlopen (); int main () { return dlopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dl_dlopen=yes else ac_cv_lib_dl_dlopen=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 $as_echo "$ac_cv_lib_dl_dlopen" >&6; } if test "x$ac_cv_lib_dl_dlopen" = xyes; then : V_LIB_DL="dl" else V_LIB_DL="dld" fi ;; *-*-cygwin*) V_LIB_DL="dl" ;; esac if test ! -z "$V_LIB_DL" ; then case "$target" in *-*-linux*) ;; *) as_ac_Lib=`$as_echo "ac_cv_lib_$V_LIB_DL''_main" | $as_tr_sh` { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -l$V_LIB_DL" >&5 $as_echo_n "checking for main in -l$V_LIB_DL... " >&6; } if eval \${$as_ac_Lib+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-l$V_LIB_DL $V_STATIC $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { return main (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : eval "$as_ac_Lib=yes" else eval "$as_ac_Lib=no" fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi eval ac_res=\$$as_ac_Lib { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_LIB$V_LIB_DL" | $as_tr_cpp` 1 _ACEOF LIBS="-l$V_LIB_DL $LIBS" else V_LIB_DL="" fi ;; esac fi if test ! -z "$V_LIB_DL" ; then case "$target" in *-*-bsdi*) ;; *-*-linux*) if test -z "$V_STATIC" ; then V_LIB="$V_LIB -l$V_LIB_DL" fi ;; *) V_LIB="$V_LIB -l$V_LIB_DL" ;; esac else echo "no dynamic load lib" fi fi # Recheck the system to see if we need to add any system-dependent # libraries { $as_echo "$as_me:${as_lineno-$LINENO}: checking system version (for system-dependent libraries)" >&5 $as_echo_n "checking system version (for system-dependent libraries)... " >&6; } if test -f /usr/lib/NextStep/software_version; then system=NEXTSTEP-`awk '/3/,/3/' /usr/lib/NextStep/software_version` else system=`uname -s`-`uname -r` if test "$?" -ne 0 ; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: unknown (can't find uname command)" >&5 $as_echo "unknown (can't find uname command)" >&6; } system=unknown else # Special check for weird MP-RAS system (uname returns weird # results, and the version is kept in special file). if test -r /etc/.relid -a "X`uname -n`" = "X`uname -s`" ; then system=MP-RAS-`awk '{print $3}' /etc/.relid` fi if test "`uname -s`" = "AIX" ; then system=AIX-`uname -v`.`uname -r` fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $system" >&5 $as_echo "$system" >&6; } fi fi case $system in Darwin-7.*|Darwin-8.*) V_LIB="$V_LIB -framework CoreFoundation" esac if test "$host_cpu" = alpha ; then V_DEFINE="$V_DEFINE -DINT_64=u_long" fi # various include hacks dirs="/usr/src/local/include-fixes \ /import/mcast/include" for dir in $dirs; do if test -d $dir ; then V_INCLUDE="$V_INCLUDE -I$dir" fi done # always use -g with gcc during development (even with -O) # force noline so that we can debug all functions if test "$CC" = gcc && test -f .devel ; then V_CCOPT="$V_CCOPT -g -Wall -Werror" V_DEFINE="$V_DEFINE -fsigned-char -fno-inline" fi V_DEFINE="$V_DEFINE $V_SHM" V_TAR_TARGET=$target_os absolutize_list() { tmp="" for p do case $p in -L* | -I*) tmp="$tmp `absolutize $p`";; *) tmp="$tmp $p";; esac done echo $tmp } # Replace relative path with absolute path V_LIB_TCLCL=`absolutize_list $V_LIB_TCLCL` V_LIB_OTCL=`absolutize_list $V_LIB_OTCL` V_LIB_TCL=`absolutize_list $V_LIB_TCL` V_LIB_TK=`absolutize_list $V_LIB_TK` V_LIBS=`absolutize_list $V_LIBS` V_INCLUDES=`absolutize_list $V_INCLUDES` # Since SMASH and MASH need different sets of libraries, we # use each lib definition seperately instead of using V_LIBS. # Find a good install program. We prefer a C program (faster), # so one script is as good as another. But avoid the broken or # incompatible versions: # SysV /etc/install, /usr/sbin/install # SunOS /usr/etc/install # IRIX /sbin/install # AIX /bin/install # AmigaOS /C/install, which installs bootblocks on floppy discs # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag # AFS /usr/afsws/bin/install, which mishandles nonexistent args # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # OS/2's system install, which has a completely different semantic # ./install, which can be erroneously created by make from ./install.sh. # Reject install programs that cannot install multiple files. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 $as_echo_n "checking for a BSD-compatible install... " >&6; } if test -z "$INSTALL"; then if ${ac_cv_path_install+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. # Account for people who put trailing slashes in PATH elements. case $as_dir/ in #(( ./ | .// | /[cC]/* | \ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ /usr/ucb/* ) ;; *) # OSF1 and SCO ODT 3.0 have their own names for install. # Don't use installbsd from OSF since it installs stuff as root # by default. for ac_prog in ginstall scoinst install; do for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then if test $ac_prog = install && grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # AIX install. It has an incompatible calling convention. : elif test $ac_prog = install && grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # program-specific install script used by HP pwplus--don't use. : else rm -rf conftest.one conftest.two conftest.dir echo one > conftest.one echo two > conftest.two mkdir conftest.dir if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && test -s conftest.one && test -s conftest.two && test -s conftest.dir/conftest.one && test -s conftest.dir/conftest.two then ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" break 3 fi fi fi done done ;; esac done IFS=$as_save_IFS rm -rf conftest.one conftest.two conftest.dir fi if test "${ac_cv_path_install+set}" = set; then INSTALL=$ac_cv_path_install else # As a last resort, use the slow shell script. Don't cache a # value for INSTALL within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. INSTALL=$ac_install_sh fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 $as_echo "$INSTALL" >&6; } # Use test -z because SunOS4 sh mishandles braces in ${var-val}. # It thinks the first close brace ends the variable substitution. test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' ac_config_files="$ac_config_files Makefile" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure # tests run on this system so they can be shared between configure # scripts and configure runs, see configure's option --config-cache. # It is not useful on other systems. If it contains results you don't # want to keep, you may remove or edit it. # # config.status only pays attention to the cache file if you give it # the --recheck option to rerun configure. # # `ac_cv_env_foo' variables (set or unset) will be overridden when # loading this file, other *unset* `ac_cv_foo' will be assigned the # following values. _ACEOF # The following way of writing the cache mishandles newlines in values, # but we know of no workaround that is simple, portable, and efficient. # So, we kill variables containing newlines. # Ultrix sh set writes to stderr and can't be redirected directly, # and sets the high bit in the cache file unless we assign to the vars. ( for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space=' '; set) 2>&1` in #( *${as_nl}ac_space=\ *) # `set' does not quote correctly, so add quotes: double-quote # substitution turns \\\\ into \\, and sed turns \\ into \. sed -n \ "s/'/'\\\\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" ;; #( *) # `set' quotes correctly as required by POSIX, so do not add quotes. sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) | sed ' /^ac_cv_env_/b end t clear :clear s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ t end s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ :end' >>confcache if diff "$cache_file" confcache >/dev/null 2>&1; then :; else if test -w "$cache_file"; then if test "x$cache_file" != "x/dev/null"; then { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 $as_echo "$as_me: updating cache $cache_file" >&6;} if test ! -f "$cache_file" || test -h "$cache_file"; then cat confcache >"$cache_file" else case $cache_file in #( */* | ?:*) mv -f confcache "$cache_file"$$ && mv -f "$cache_file"$$ "$cache_file" ;; #( *) mv -f confcache "$cache_file" ;; esac fi fi else { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} fi fi rm -f confcache test "x$prefix" = xNONE && prefix=$ac_default_prefix # Let make expand exec_prefix. test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' DEFS=-DHAVE_CONFIG_H ac_libobjs= ac_ltlibobjs= U= for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue # 1. Remove the extension, and $U if already installed. ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' ac_i=`$as_echo "$ac_i" | sed "$ac_script"` # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR # will be set to the directory where LIBOBJS objects are built. as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' done LIBOBJS=$ac_libobjs LTLIBOBJS=$ac_ltlibobjs : "${CONFIG_STATUS=./config.status}" ac_write_fail=0 ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 $as_echo "$as_me: creating $CONFIG_STATUS" >&6;} as_write_fail=0 cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 #! $SHELL # Generated by $as_me. # Run this file to recreate the current configuration. # Compiler output produced by configure, useful for debugging # configure, is in config.log if it exists. debug=false ac_cs_recheck=false ac_cs_silent=false SHELL=\${CONFIG_SHELL-$SHELL} export SHELL _ASEOF cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -p'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -p' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -p' fi else as_ln_s='cp -p' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi if test -x / >/dev/null 2>&1; then as_test_x='test -x' else if ls -dL / >/dev/null 2>&1; then as_ls_L_option=L else as_ls_L_option= fi as_test_x=' eval sh -c '\'' if test -d "$1"; then test -d "$1/."; else case $1 in #( -*)set "./$1";; esac; case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( ???[sx]*):;;*)false;;esac;fi '\'' sh ' fi as_executable_p=$as_test_x # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" exec 6>&1 ## ----------------------------------- ## ## Main body of $CONFIG_STATUS script. ## ## ----------------------------------- ## _ASEOF test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Save the log message, to keep $0 and so on meaningful, and to # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" This file was extended by $as_me, which was generated by GNU Autoconf 2.68. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS CONFIG_LINKS = $CONFIG_LINKS CONFIG_COMMANDS = $CONFIG_COMMANDS $ $0 $@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " _ACEOF case $ac_config_files in *" "*) set x $ac_config_files; shift; ac_config_files=$*;; esac case $ac_config_headers in *" "*) set x $ac_config_headers; shift; ac_config_headers=$*;; esac cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # Files that config.status was made for. config_files="$ac_config_files" config_headers="$ac_config_headers" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ac_cs_usage="\ \`$as_me' instantiates files and other configuration actions from templates according to the current configuration. Unless the files and actions are specified as TAGs, all are instantiated by default. Usage: $0 [OPTION]... [TAG]... -h, --help print this help, then exit -V, --version print version number and configuration settings, then exit --config print configuration, then exit -q, --quiet, --silent do not print progress messages -d, --debug don't remove temporary files --recheck update $as_me by reconfiguring in the same conditions --file=FILE[:TEMPLATE] instantiate the configuration file FILE --header=FILE[:TEMPLATE] instantiate the configuration header FILE Configuration files: $config_files Configuration headers: $config_headers Report bugs to the package provider." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ config.status configured by $0, generated by GNU Autoconf 2.68, with options \\"\$ac_cs_config\\" Copyright (C) 2010 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." ac_pwd='$ac_pwd' srcdir='$srcdir' INSTALL='$INSTALL' test -n "\$AWK" || AWK=awk _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # The default lists apply if the user does not specify any file. ac_need_defaults=: while test $# != 0 do case $1 in --*=?*) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` ac_shift=: ;; --*=) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg= ac_shift=: ;; *) ac_option=$1 ac_optarg=$2 ac_shift=shift ;; esac case $ac_option in # Handling of the options. -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) ac_cs_recheck=: ;; --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) $as_echo "$ac_cs_version"; exit ;; --config | --confi | --conf | --con | --co | --c ) $as_echo "$ac_cs_config"; exit ;; --debug | --debu | --deb | --de | --d | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; '') as_fn_error $? "missing file argument" ;; esac as_fn_append CONFIG_FILES " '$ac_optarg'" ac_need_defaults=false;; --header | --heade | --head | --hea ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; esac as_fn_append CONFIG_HEADERS " '$ac_optarg'" ac_need_defaults=false;; --he | --h) # Conflict between --help and --header as_fn_error $? "ambiguous option: \`$1' Try \`$0 --help' for more information.";; --help | --hel | -h ) $as_echo "$ac_cs_usage"; exit ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil | --si | --s) ac_cs_silent=: ;; # This is an error. -*) as_fn_error $? "unrecognized option: \`$1' Try \`$0 --help' for more information." ;; *) as_fn_append ac_config_targets " $1" ac_need_defaults=false ;; esac shift done ac_configure_extra_args= if $ac_cs_silent; then exec 6>/dev/null ac_configure_extra_args="$ac_configure_extra_args --silent" fi _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 if \$ac_cs_recheck; then set X '$SHELL' '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion shift \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 CONFIG_SHELL='$SHELL' export CONFIG_SHELL exec "\$@" fi _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 exec 5>>config.log { echo sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX ## Running $as_me. ## _ASBOX $as_echo "$ac_log" } >&5 _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Handling of arguments. for ac_config_target in $ac_config_targets do case $ac_config_target in "autoconf.h") CONFIG_HEADERS="$CONFIG_HEADERS autoconf.h" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac done # If the user did not use the arguments to specify the items to instantiate, # then the envvar interface is used. Set only those that are not. # We use the long form for the default assignment because of an extremely # bizarre bug on SunOS 4.1.3. if $ac_need_defaults; then test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers fi # Have a temporary directory for convenience. Make it in the build tree # simply because there is no reason against having it here, and in addition, # creating and moving files from /tmp can sometimes cause problems. # Hook for its removal unless debugging. # Note that there is a small window in which the directory will not be cleaned: # after its creation but before its name has been assigned to `$tmp'. $debug || { tmp= ac_tmp= trap 'exit_status=$? : "${ac_tmp:=$tmp}" { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status ' 0 trap 'as_fn_exit 1' 1 2 13 15 } # Create a (secure) tmp directory for tmp files. { tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && test -d "$tmp" } || { tmp=./conf$$-$RANDOM (umask 077 && mkdir "$tmp") } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 ac_tmp=$tmp # Set up the scripts for CONFIG_FILES section. # No need to generate them if there are no CONFIG_FILES. # This happens for instance with `./config.status config.h'. if test -n "$CONFIG_FILES"; then ac_cr=`echo X | tr X '\015'` # On cygwin, bash can eat \r inside `` if the user requested igncr. # But we know of no other shell where ac_cr would be empty at this # point, so we can use a bashism as a fallback. if test "x$ac_cr" = x; then eval ac_cr=\$\'\\r\' fi ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then ac_cs_awk_cr='\\r' else ac_cs_awk_cr=$ac_cr fi echo 'BEGIN {' >"$ac_tmp/subs1.awk" && _ACEOF { echo "cat >conf$$subs.awk <<_ACEOF" && echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && echo "_ACEOF" } >conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` ac_delim='%!_!# ' for ac_last_try in false false false false false :; do . ./conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` if test $ac_delim_n = $ac_delim_num; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done rm -f conf$$subs.sh cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && _ACEOF sed -n ' h s/^/S["/; s/!.*/"]=/ p g s/^[^!]*!// :repl t repl s/'"$ac_delim"'$// t delim :nl h s/\(.\{148\}\)..*/\1/ t more1 s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ p n b repl :more1 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t nl :delim h s/\(.\{148\}\)..*/\1/ t more2 s/["\\]/\\&/g; s/^/"/; s/$/"/ p b :more2 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t delim ' >$CONFIG_STATUS || ac_write_fail=1 rm -f conf$$subs.awk cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 _ACAWK cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && for (key in S) S_is_set[key] = 1 FS = "" } { line = $ 0 nfields = split(line, field, "@") substed = 0 len = length(field[1]) for (i = 2; i < nfields; i++) { key = field[i] keylen = length(key) if (S_is_set[key]) { value = S[key] line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) len += length(value) + length(field[++i]) substed = 1 } else len += 1 + keylen } print line } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" else cat fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 _ACEOF # VPATH may cause trouble with some makes, so we remove sole $(srcdir), # ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and # trailing colons and then remove the whole line if VPATH becomes empty # (actually we leave an empty line to preserve line numbers). if test "x$srcdir" = x.; then ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ h s/// s/^/:/ s/[ ]*$/:/ s/:\$(srcdir):/:/g s/:\${srcdir}:/:/g s/:@srcdir@:/:/g s/^:*// s/:*$// x s/\(=[ ]*\).*/\1/ G s/\n// s/^[^=]*=[ ]*$// }' fi cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 fi # test -n "$CONFIG_FILES" # Set up the scripts for CONFIG_HEADERS section. # No need to generate them if there are no CONFIG_HEADERS. # This happens for instance with `./config.status Makefile'. if test -n "$CONFIG_HEADERS"; then cat >"$ac_tmp/defines.awk" <<\_ACAWK || BEGIN { _ACEOF # Transform confdefs.h into an awk script `defines.awk', embedded as # here-document in config.status, that substitutes the proper values into # config.h.in to produce config.h. # Create a delimiter string that does not exist in confdefs.h, to ease # handling of long lines. ac_delim='%!_!# ' for ac_last_try in false false :; do ac_tt=`sed -n "/$ac_delim/p" confdefs.h` if test -z "$ac_tt"; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done # For the awk script, D is an array of macro values keyed by name, # likewise P contains macro parameters if any. Preserve backslash # newline sequences. ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* sed -n ' s/.\{148\}/&'"$ac_delim"'/g t rset :rset s/^[ ]*#[ ]*define[ ][ ]*/ / t def d :def s/\\$// t bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3"/p s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p d :bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3\\\\\\n"\\/p t cont s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p t cont d :cont n s/.\{148\}/&'"$ac_delim"'/g t clear :clear s/\\$// t bsnlc s/["\\]/\\&/g; s/^/"/; s/$/"/p d :bsnlc s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p b cont ' >$CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 for (key in D) D_is_set[key] = 1 FS = "" } /^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { line = \$ 0 split(line, arg, " ") if (arg[1] == "#") { defundef = arg[2] mac1 = arg[3] } else { defundef = substr(arg[1], 2) mac1 = arg[2] } split(mac1, mac2, "(") #) macro = mac2[1] prefix = substr(line, 1, index(line, defundef) - 1) if (D_is_set[macro]) { # Preserve the white space surrounding the "#". print prefix "define", macro P[macro] D[macro] next } else { # Replace #undef with comments. This is necessary, for example, # in the case of _POSIX_SOURCE, which is predefined and required # on some systems where configure will not decide to define it. if (defundef == "undef") { print "/*", prefix defundef, macro, "*/" next } } } { print } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 fi # test -n "$CONFIG_HEADERS" eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS " shift for ac_tag do case $ac_tag in :[FHLC]) ac_mode=$ac_tag; continue;; esac case $ac_mode$ac_tag in :[FHL]*:*);; :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; :[FH]-) ac_tag=-:-;; :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; esac ac_save_IFS=$IFS IFS=: set x $ac_tag IFS=$ac_save_IFS shift ac_file=$1 shift case $ac_mode in :L) ac_source=$1;; :[FH]) ac_file_inputs= for ac_f do case $ac_f in -) ac_f="$ac_tmp/stdin";; *) # Look for the file first in the build tree, then in the source tree # (if the path is not absolute). The absolute path cannot be DOS-style, # because $ac_f cannot contain `:'. test -f "$ac_f" || case $ac_f in [\\/$]*) false;; *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; esac || as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; esac case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac as_fn_append ac_file_inputs " '$ac_f'" done # Let's still pretend it is `configure' which instantiates (i.e., don't # use $as_me), people would be surprised to read: # /* config.h. Generated by config.status. */ configure_input='Generated from '` $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' `' by configure.' if test x"$ac_file" != x-; then configure_input="$ac_file. $configure_input" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 $as_echo "$as_me: creating $ac_file" >&6;} fi # Neutralize special characters interpreted by sed in replacement strings. case $configure_input in #( *\&* | *\|* | *\\* ) ac_sed_conf_input=`$as_echo "$configure_input" | sed 's/[\\\\&|]/\\\\&/g'`;; #( *) ac_sed_conf_input=$configure_input;; esac case $ac_tag in *:-:* | *:-) cat >"$ac_tmp/stdin" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; esac ;; esac ac_dir=`$as_dirname -- "$ac_file" || $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$ac_file" : 'X\(//\)[^/]' \| \ X"$ac_file" : 'X\(//\)$' \| \ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$ac_file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir="$ac_dir"; as_fn_mkdir_p ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix case $ac_mode in :F) # # CONFIG_FILE # case $INSTALL in [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; esac _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # If the template does not know about datarootdir, expand it. # FIXME: This hack should be removed a few years after 2.60. ac_datarootdir_hack=; ac_datarootdir_seen= ac_sed_dataroot=' /datarootdir/ { p q } /@datadir@/p /@docdir@/p /@infodir@/p /@localedir@/p /@mandir@/p' case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in *datarootdir*) ac_datarootdir_seen=yes;; *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_datarootdir_hack=' s&@datadir@&$datadir&g s&@docdir@&$docdir&g s&@infodir@&$infodir&g s&@localedir@&$localedir&g s&@mandir@&$mandir&g s&\\\${datarootdir}&$datarootdir&g' ;; esac _ACEOF # Neutralize VPATH when `$srcdir' = `.'. # Shell code in configure.ac might set extrasub. # FIXME: do we really want to maintain this feature? cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_sed_extra="$ac_vpsub $extrasub _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 :t /@[a-zA-Z_][a-zA-Z_0-9]*@/!b s|@configure_input@|$ac_sed_conf_input|;t t s&@top_builddir@&$ac_top_builddir_sub&;t t s&@top_build_prefix@&$ac_top_build_prefix&;t t s&@srcdir@&$ac_srcdir&;t t s&@abs_srcdir@&$ac_abs_srcdir&;t t s&@top_srcdir@&$ac_top_srcdir&;t t s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t s&@builddir@&$ac_builddir&;t t s&@abs_builddir@&$ac_abs_builddir&;t t s&@abs_top_builddir@&$ac_abs_top_builddir&;t t s&@INSTALL@&$ac_INSTALL&;t t $ac_datarootdir_hack " eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ "$ac_tmp/out"`; test -z "$ac_out"; } && { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&5 $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&2;} rm -f "$ac_tmp/stdin" case $ac_file in -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; esac \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; :H) # # CONFIG_HEADER # if test x"$ac_file" != x-; then { $as_echo "/* $configure_input */" \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" } >"$ac_tmp/config.h" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 $as_echo "$as_me: $ac_file is unchanged" >&6;} else rm -f "$ac_file" mv "$ac_tmp/config.h" "$ac_file" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 fi else $as_echo "/* $configure_input */" \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ || as_fn_error $? "could not create -" "$LINENO" 5 fi ;; esac done # for ac_tag as_fn_exit 0 _ACEOF ac_clean_files=$ac_clean_files_save test $ac_write_fail = 0 || as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 # configure is writing to config.log, and then calls config.status. # config.status does its own redirection, appending to config.log. # Unfortunately, on DOS this fails, as config.log is still kept open # by configure, so config.status won't be able to write to it; its # output is simply discarded. So we exec the FD to /dev/null, # effectively closing config.log, so it can be properly (re)opened and # appended to by config.status. When coming back to configure, we # need to make the FD available again. if test "$no_create" != yes; then ac_cs_success=: ac_config_status_args= test "$silent" = yes && ac_config_status_args="$ac_config_status_args --quiet" exec 5>/dev/null $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false exec 5>>config.log # Use ||, not &&, to avoid exiting from the if with $? = 1, which # would make configure fail if this is the last instruction. $ac_cs_success || as_fn_exit 1 fi if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} fi if test ! -d gen ; then echo "creating ./gen" mkdir gen fi if test ! -d bin ; then echo "creating ./bin" mkdir bin fi if test -f .devel -o "$enable_devel" = "yes" ; then make depend fi nam-1.15/configure.in0000664000076400007660000000256107013376107013415 0ustar tomhnsnamdnl Process this file with autoconf to produce a configure script. dnl AC_INIT(main.cc) AC_CONFIG_HEADER(autoconf.h) V_PROG="nam" V_ALL="$V_PROG" V_SHM="-DUSE_SHM" V_LIB="" V_SHELL="" AC_HEADER_STDC builtin(include, ./conf/configure.in.fns) builtin(include, ./conf/configure.in.head) builtin(include, ./conf/configure.in.misc) builtin(include, ./conf/configure.in.z) builtin(include, ./conf/configure.in.x11) builtin(include, ./conf/configure.in.tcl) builtin(include, ./conf/configure.in.tk) builtin(include, ./conf/configure.in.tcldebug) builtin(include, ./conf/configure.in.otcl) builtin(include, ./conf/configure.in.TclCL) dnl dnl figure out random return type dnl AC_MSG_CHECKING(return type of random) touch confdefs.h AC_TRY_RUN([#include #include "confdefs.h" long random() { return 1; } main() { exit(0); } ], AC_MSG_RESULT(long) AC_DEFINE(RANDOM_RETURN_TYPE,long) , AC_MSG_RESULT(int) AC_DEFINE(RANDOM_RETURN_TYPE,int) , AC_MSG_RESULT(cross compiling--guessing int) AC_DEFINE(RANDOM_RETURN_TYPE,int) ) dnl dnl check some types dnl AC_CHECK_TYPE(int8_t,signed char) AC_CHECK_TYPE(int16_t,short) AC_CHECK_TYPE(int32_t,int) AC_CHECK_TYPE(u_int8_t,unsigned char) AC_CHECK_TYPE(u_int16_t,unsigned short) AC_CHECK_TYPE(u_int32_t,unsigned int) builtin(include, ./conf/configure.in.int64_t) AC_CHECK_FUNCS(snprintf) NS_FNS_TAIL builtin(include, ./conf/configure.in.tail) nam-1.15/drop.cc0000664000076400007660000001463010175251242012352 0ustar tomhnsnam/* * Copyright (c) 1991,1993 Regents of the University of California. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the Computer Systems * Engineering Group at Lawrence Berkeley Laboratory. * 4. Neither the name of the University nor of the Laboratory may be used * to endorse or promote products derived from this software without * specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * @(#) $Header: /cvsroot/nsnam/nam-1/drop.cc,v 1.14 2005/01/24 19:55:14 haldar Exp $ (LBL) */ #ifdef WIN32 #include #endif #include "netview.h" #include "drop.h" #include "monitor.h" // #include "parser.h" #include // //---------------------------------------------------------------------- //---------------------------------------------------------------------- Drop::Drop(float cx, float cy, float b, float size, double now, long offset, const PacketAttr& p) : Animation(now, offset), x_(cx), y_(cy), bottom_(b), psize_(size), start_(now), pkt_(p), rotation_(0) { curPos_ = CurPos(now); } //---------------------------------------------------------------------- //---------------------------------------------------------------------- Drop::~Drop() { if (monitor_!=NULL) { monitor_->delete_monitor_object(this); } } //---------------------------------------------------------------------- //---------------------------------------------------------------------- void Drop::draw(View * c, double now) { /* XXX nuke array */ // float tx,ty,tx2,ty2,td; // float fx[4], fy[4]; double yy = CurPos(now); if (rotation_ & 2) { double d = (0.75 * 0.7071067812) * psize_; // //not too large if (ParseTable::nam4wpan) { tx = x_; ty = yy; c->imap(tx,ty); tx2 = x_ + 1; ty2 = yy; c->imap(tx2,ty2); td = (tx2 - tx) * (tx2 - tx) + (ty2 - ty) * (ty2 - ty); td = pow(td, 0.5); if (d > td) d = td; } // fx[0] = x_; fy[0] = yy - d; fx[1] = x_ - d; fy[1] = yy; fx[2] = x_; fy[2] = yy + d; fx[3] = x_ + d; fy[3] = yy; } else { double d = (0.75 * 0.5) * psize_; // //not too large if (ParseTable::nam4wpan) { tx = x_; ty = yy; c->imap(tx,ty); tx2 = x_ + 1; ty2 = yy; c->imap(tx2,ty2); td = (tx2 - tx) * (tx2 - tx) + (ty2 - ty) * (ty2 - ty); td = pow(td, 0.5); if (d > td) d = td; } // fx[0] = x_ - d; fy[0] = yy - d; fx[1] = x_ - d; fy[1] = yy + d; fx[2] = x_ + d; fy[2] = yy + d; fx[3] = x_ + d; fy[3] = yy - d; } // Draw a square c->fill(fx, fy, 4, paint_); if (monitor_) { monitor_->draw(c, x_,yy); } } //---------------------------------------------------------------------- //---------------------------------------------------------------------- void Drop::update(double now) { ++rotation_; if ((now < start_) || (CurPos(now) < bottom_)) { delete this; } else { curPos_ = CurPos(now); update_bb(); } } void Drop::update_bb() { double d = (0.75 * 0.7071067812) * psize_; bb_.xmin = x_ - d, bb_.xmax = x_ + d; bb_.ymin = curPos_ - d, bb_.ymax = curPos_ + d; } void Drop::reset(double now) { if (now < start_ || CurPos(now) < bottom_) delete this; else curPos_ = CurPos(now); } int Drop::inside(double now, float px, float py) const { //float minx, maxx, miny, maxy; double yy = CurPos(now); double d = (0.75 * 0.7071067812) * psize_; return (px >= x_ - d && px <= x_ + d && py >= yy - d && py <= yy + d); } //---------------------------------------------------------------------- // double // Drop::CurPos(double now) const // - Calculates the current position of the packet based upon the start // time of the packet drop and the maximum drop time //---------------------------------------------------------------------- double Drop::CurPos(double now) const { // This calculation starts the drop at y_ and runs to bottom_ within the // timeframe of MAX_DROP_TIME. At start_ + MAX_DROP_TIME the packet // should be at bottom_. double drop_distance = (now - start_)*(bottom_ - y_)/MAX_DROP_TIME + y_; // if (bottom_ < -10) { //quick hack for wireless model // drop_distance = y_ - (now - start_) * (0 - bottom_); // fprintf(stderr, "Using Wireless drop distance.\n"); // } return drop_distance; } const char* Drop::info() const { static char text[128]; sprintf(text, "%s %d: %s\n dropped at %g\n %d bytes", pkt_.type, pkt_.id, pkt_.convid, start_, pkt_.size); return (text); } const char* Drop::getname() const { static char text[128]; sprintf(text, "d"); return (text); } void Drop::monitor(Monitor *m, double /*now*/, char *result, int /*len*/) { monitor_=m; sprintf(result, "%s %d: %s\n dropped at %g\n %d bytes", pkt_.type, pkt_.id, pkt_.convid, start_, pkt_.size); } MonState *Drop::monitor_state() { MonState *ms=new MonState; ms->type=MON_PACKET; ms->pkt.id=pkt_.id; return ms; } nam-1.15/drop.h0000664000076400007660000000574107267156127012235 0ustar tomhnsnam/* * Copyright (c) 1991,1993 Regents of the University of California. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the Computer Systems * Engineering Group at Lawrence Berkeley Laboratory. * 4. Neither the name of the University nor of the Laboratory may be used * to endorse or promote products derived from this software without * specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * @(#) $Header: /cvsroot/nsnam/nam-1/drop.h,v 1.9 2001/04/18 00:14:15 mehringe Exp $ (LBL) */ #ifndef nam_drop_h #define nam_drop_h #include "animation.h" #define MAX_DROP_TIME 0.1 // Maxiumum amount of time a packet should // be animated droping off the screen in seconds class View; class Monitor; // Used to show the animation of a packet drop class Drop : public Animation { public: Drop(float x, float y, float bot, float sz, double now, long offset, const PacketAttr&); ~Drop(); virtual void draw(View*, double); virtual void update(double); virtual void update_bb(); virtual void reset(double); virtual int inside(double now, float px, float py) const; virtual const char* info() const; virtual const char* getname() const; void monitor(Monitor *m, double now, char *result, int len); MonState *monitor_state(); private: inline double CurPos(double now) const; float x_, y_, bottom_; // initial position of dropped packet float psize_; // size of drawable object (a side) double start_; // time packet was dropped PacketAttr pkt_; int rotation_; // rotation state (not critical) float curPos_; }; #endif nam-1.15/edge.cc0000644000076400007660000004522411655017162012320 0ustar tomhnsnam/* * Copyright (c) 1991,1993 Regents of the University of California. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the Computer Systems * Engineering Group at Lawrence Berkeley Laboratory. * 4. Neither the name of the University nor of the Laboratory may be used * to endorse or promote products derived from this software without * specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * @(#) $Header: /cvsroot/nsnam/nam-1/edge.cc,v 1.55 2011/11/02 16:08:03 tom_henderson Exp $ (LBL) */ #include #include "config.h" #include "sincos.h" #include "edge.h" #include "queuehandle.h" #include "node.h" #include "packet.h" #include "view.h" #include "netview.h" #include "psview.h" #include "transform.h" #include "paint.h" #include "monitor.h" #include "agent.h" #include "lossmodel.h" //---------------------------------------------------------------------- // Wrapper for tcl creation of Edges (links) //---------------------------------------------------------------------- static class EdgeClass : public TclClass { public: EdgeClass() : TclClass("Edge") {} TclObject * create(int argc, const char*const* argv) { // set [new Node node_id type size] Edge * edge; double bandwidth, delay, length, angle, label_size; bandwidth = strtod(argv[4], NULL); delay = strtod(argv[5], NULL); length = strtod(argv[6], NULL); angle = strtod(argv[7], NULL); label_size = strtod(argv[8], NULL); edge = new Edge(label_size, bandwidth, delay, length, angle); return edge; } } class_edge; //---------------------------------------------------------------------- // Edge::Edge(double ps, double bw, double delay, // double length, double angle) // - Creates an edge that is not attached to any nodes. // Used by nam editor when loading in an existing enam file. // - With this constructor, the nodes need to be added // to this edge using Edge::attachNodes() //---------------------------------------------------------------------- Edge::Edge(double ps, double bw, double delay, double length, double angle) : Animation(0,0) { psize_ = ps; angle_ = angle; bandwidth_ = bw; delay_ = delay; length_ = length; state_ = UP; paint_ = Paint::instance()->thick(); setupDefaults(); } //---------------------------------------------------------------------- // Edge::Edge(Node* src, Node* dst, double ps, double bw, // double delay, double length, double angle) // - creates an edge which is a one way network link // - the edge is automaticall attached to nodes src and dst //---------------------------------------------------------------------- Edge::Edge(Node * src, Node * dst, double ps, double bw, double _delay, double length, double angle) : Animation(0,0), psize_(ps), angle_(angle), bandwidth_(bw), delay_(_delay), length_(length) { setupDefaults(); src_ = src->num(); dst_ = dst->num(); start_ = src; neighbor_ = dst; paint_ = Paint::instance()->thick(); if (length_ == 0) { length_ = delay_; } } //---------------------------------------------------------------------- // Edge::Edge(Node* src, Node* dst, double ps, double bw, // double delay, double length, double angle, int ws) // - creates an edge for wireless //---------------------------------------------------------------------- Edge::Edge(Node* src, Node* dst, double ps, double bw, double _delay, double length, double angle, int ws) : Animation(0,0), psize_(ps), angle_(angle), bandwidth_(bw), delay_(_delay), length_(length), wireless_(ws) { setupDefaults(); src_ = src->num(); dst_ = dst->num(); start_ = src; neighbor_ = dst; paint_ = Paint::instance()->thick(); if (length_ == 0) { length_ = delay_; } } //---------------------------------------------------------------------- // void // Edge::setupDefaults() //---------------------------------------------------------------------- void Edge::setupDefaults() { x0_ = 0.0; y0_ = 0.0; state_ = UP; packets_ = NULL; no_of_packets_ = 0; last_packet_ = NULL; marked_ = 0; visible_ = 1; dlabel_ = NULL; dcolor_ = NULL; direction_ = 0; used_ = 0; // Set initial (x0,y0), (x1,y1) so that they reflect the current // angle. This enables netmodel to share the same placeEdge() and // placeAgent() with AutoNetModel. SINCOSPI(angle_, &x1_, &y1_); lossmodel_ = NULL; queue_handle_ = NULL; } //---------------------------------------------------------------------- //---------------------------------------------------------------------- Edge::~Edge() { if (queue_handle_) { delete queue_handle_; } } //---------------------------------------------------------------------- // void // Edge::attachNodes(Node * source, Node * destination) //---------------------------------------------------------------------- void Edge::attachNodes(Node * source, Node * destination) { src_ = source->num(); dst_ = destination->num(); start_ = source; neighbor_ = destination; if (length_ == 0) { length_ = delay_; } start_->add_link(this); } //---------------------------------------------------------------------- // void // Edge::addLossModel(LossModel * lossmodel) //---------------------------------------------------------------------- void Edge::addLossModel(LossModel * lossmodel) { if (!lossmodel_) { lossmodel_ = lossmodel; lossmodel_->attachTo(this); lossmodel_->place(); } } //---------------------------------------------------------------------- //---------------------------------------------------------------------- LossModel * Edge::getLossModel() { return lossmodel_; } //---------------------------------------------------------------------- //---------------------------------------------------------------------- void Edge::clearLossModel() { // Delete previous loss model if it exists if (lossmodel_) { lossmodel_ = NULL; } } //---------------------------------------------------------------------- //---------------------------------------------------------------------- void Edge::addQueueHandle(QueueHandle * q_handle) { queue_handle_ = q_handle; queue_handle_->place(); } //---------------------------------------------------------------------- //---------------------------------------------------------------------- float Edge::distance(float x, float y) const { // TODO: Look it up when back home... matrix_.imap(x, y); return y; } //---------------------------------------------------------------------- // inline double // Edge::delay() const // - delay_ is stored in milliseconds // - this function returns the delay in seconds // // - look at tcl/netModel.tcl layout_link and layout_lan // for the conversion to milliseconds // // - delay_ is kept in milliseconds so that Edge::info() // is displayed in millseconds and so that delay can be // entered in milliseconds by the nam editor // //---------------------------------------------------------------------- double Edge::delay() const { return (delay_/1000.0); } void Edge::init_color(const char *clr) { color(clr); dcolor(clr); oldPaint_ = paint_; } void Edge::set_down(char *color) { // If current color is down, don't change it again. // Assuming only one down color. User can change this behavior // by adding tcl code for link-up and link-down events. if (state_ == UP) { int pno = Paint::instance()->lookup(color, 3); oldPaint_ = paint_; paint_ = pno; state_ = DOWN; } } void Edge::set_up() { if (state_ == DOWN) { state_ = UP; toggle_color(); } } void Edge::place(double x0, double y0, double x1, double y1) { x0_ = x0; y0_ = y0; x1_ = x1; y1_ = y1; double dx = x1 - x0; double dy = y1 - y0; /*XXX*/ // delay should not be equal to edge's position // delay_ = sqrt(dx * dx + dy * dy); matrix_.clear(); matrix_.rotate((180 / M_PI) * atan2(dy, dx)); matrix_.translate(x0, y0); if (x1>x0) { bb_.xmin = x0; bb_.xmax = x1; } else { bb_.xmin = x1; bb_.xmax = x0; } if (y1>y0) { bb_.ymin = y0; bb_.ymax = y1; } else { bb_.ymin = y1; bb_.ymax = y0; } eb_.xmin = -0.1 * start_->size(); eb_.xmax = sqrt(dx*dx+dy*dy) + 0.1*neighbor_->size(); eb_.ymin = -0.1 * start_->size(); eb_.ymax = 0.1 * start_->size(); if (queue_handle_) { queue_handle_->place(); } if (lossmodel_) { lossmodel_->place(); } } void Edge::AddPacket(Packet *p) { p->next(packets_); if (packets_!=NULL) packets_->prev(p); p->prev(NULL); packets_=p; if (last_packet_==NULL) last_packet_=p; no_of_packets_++; #define PARANOID #ifdef PARANOID int ctr=0; for(Packet *tp=packets_;tp!=NULL;tp=tp->next()) { ctr++; if (ctr>no_of_packets_) abort(); } if (last_packet_->next()!=NULL) abort(); #ifdef DEBUG printf("AddPacket: %d->%d OK\n", src_, dst_); #endif #endif #undef PARANOID } void Edge::arrive_packet(Packet *p, double atime) { /*Trigger any arrival event at the node*/ neighbor_->arrive_packet(p, this, atime); } void Edge::DeletePacket(Packet *p) { /*Trigger any deletion event at the node*/ if (neighbor_) neighbor_->delete_packet(p); else return ; no_of_packets_--; if (last_packet_==p) { /*Normal case - it's the last packet*/ last_packet_ = p->prev(); if (packets_!=p) p->prev()->next(NULL); else packets_=NULL; } else { /*Abnormal case - need to search the list*/ Packet *tp; tp=packets_; while((tp!=p)&&(tp!=NULL)) { tp=tp->next(); } if (tp==p) { if (tp==packets_) /*it was the first packet*/ packets_=tp->next(); else tp->prev()->next(tp->next()); if (tp==last_packet_) { /*this shouldn't ever happen*/ fprintf(stderr, "**it happened\n"); last_packet_=tp->prev(); } else tp->next()->prev(tp->prev()); } } #define PARANOID #ifdef PARANOID int ctr=0; for(Packet *tp=packets_;tp!=NULL;tp=tp->next()) { ctr++; if (ctr>no_of_packets_) abort(); } if ((last_packet_!=NULL)&&(last_packet_->next()!=NULL)) abort(); #ifdef DEBUG printf("DeletePacket: %d->%d OK\n", src_, dst_); #endif #endif #undef PARANOID } void Edge::dlabel(const char* name) { if (name[0] == 0) { if (dlabel_) { delete []dlabel_; dlabel_ = 0; } return; } if (dlabel_) delete []dlabel_; dlabel_ = new char[strlen(name) + 1]; strcpy(dlabel_, name); } void Edge::dcolor(const char* name) { if (name[0] == 0) { if (dcolor_) { delete []dcolor_; dcolor_ = 0; } return; } if (dcolor_) delete []dcolor_; dcolor_ = new char[strlen(name) + 1]; strcpy(dcolor_, name); } void Edge::direction(const char* name) { if (name[0] == 0) { if (direction_) direction_ = 0; return; } if (!strcmp(name, "SOUTH")) direction_ = 1; else if (!strcmp(name, "NORTH")) direction_ = 2; else if (!strcmp(name, "EAST")) direction_ = 3; else if (!strcmp(name, "WEST")) direction_ = 4; else direction_ = 2; } void Edge::draw(View* view, double now) { if (visible()) { view->line(x0_, y0_, x1_, y1_, paint_); } if (monitor_!=NULL) monitor_->draw(view, (x0_+x1_)/2, (y0_+y1_)/2); if (dlabel_ == 0) return; // Draw dynamic label switch (direction_) { case 0: view->string((x0_+x1_)/2.0, (y0_+y1_)/2.0+psize_*1.5, psize_*2.3, dlabel_, direction_, dcolor_); break; case 1: view->string((x0_+x1_)/2.0, (y0_+y1_)/2.0-psize_*1.5, psize_*2.3, dlabel_, direction_, dcolor_); break; case 2: view->string((x0_+x1_)/2.0, (y0_+y1_)/2.0+psize_*1.5, psize_*2.3, dlabel_, direction_, dcolor_); break; case 3: view->string((x0_+x1_)/2.0-psize_*1.5, (y0_+y1_)/2.0, psize_*2.3, dlabel_, direction_, dcolor_); break; case 4: view->string((x0_+x1_)/2.0+psize_*1.5, (y0_+y1_)/2.0, psize_*2.3, dlabel_, direction_, dcolor_); break; default: view->string((x0_+x1_)/2.0, (y0_+y1_)/2.0+psize_*1.5, psize_*2.3, dlabel_, direction_, dcolor_); break; } } void Edge::reset(double) { // paint_ = Paint::instance()->thick(); no_of_packets_=0; packets_=NULL; last_packet_=NULL; } int Edge::inside(double, float px, float py) const { // matrix_.imap(px, py); // return eb_.inside(px, py); return inside(px, py); } int Edge::inside(float px, float py) const { matrix_.imap(px, py); return eb_.inside(px, py); } const char* Edge::info() const { static char text[128]; sprintf(text, "Link: %d<->%d\n Bandwidth: %g Mbits/sec\n Delay: %g ms\n", src_, dst_, bandwidth_, delay_); return (text); } const char* Edge::property() { rgb *color; color=Paint::instance()->paint_to_rgb(paint_); static char text[256]; char *p; // object type and id p = text; if (!wireless_) { sprintf(text, "{\"Link %d-%d\" title title \"Link %d-%d\"} ", src_, dst_, src_, dst_); } else { sprintf(text, "{\"Wireless Link %d-%d\" title title \"Wireless Link %d-%d\"} ", src_, dst_, src_, dst_); } p = &text[strlen(text)]; sprintf(p, "{Color color_ color %s} ", color->colorname); // color & value // label p = &text[strlen(text)]; if (dlabel_) { sprintf(p, "{Label dlabel_ text %s} ", dlabel_); } else { sprintf(p, "{Label dlabel_ text } "); } //p = &text[strlen(text)]; //sprintf(p, "{LABEL-DIRECTION %d} ", direction_); // label-direction $ value // Link Bandwidth p = &text[strlen(text)]; sprintf(p, "{\"Bandwidth (Mbits per second)\" bandwidth_ text %-f} ", bandwidth_); // Link Delay p = &text[strlen(text)]; sprintf(p, "{\"Delay (ms)\" delay_ text %-f} ", delay_); return(text); } const char* Edge::getname() const { static char text[128]; sprintf(text, "l %d %d", src_, dst_); return (text); } void Edge::monitor(Monitor *m, double /*now*/, char *result, int /*len*/) { monitor_=m; sprintf(result, "link %d-%d:\n bw: %g Mbits/sec\n delay: %g ms", src_, dst_, bandwidth_, delay_); return; } int Edge::save(FILE *file) { rgb *color; color=Paint::instance()->paint_to_rgb(paint_); char state[10]; double angle,length; float dx,dy; //Edges in the tracefile are bidirectional, so don't need to save //both unidirectional edges if (src_>dst_) return 0; if (state_==UP) strcpy(state, " -S UP"); else if (state_==DOWN) strcpy(state, " -S DOWN"); else state[0]='\0'; if (angle_<0) angle=180*(angle_+2*M_PI)/M_PI; else angle=180*(angle_/M_PI); dx=x0_-x1_; dy=y0_-y1_; length=sqrt(dx*dx+dy*dy); // printf("%d->%d, angle=%f (%fdeg)\n", src_, dst_, angle_, angle); fprintf(file, "l -t * -s %d -d %d -r %f -D %f -c %s -o %.1fdeg -l %f%s\n", src_, dst_, bandwidth_, delay_, color->colorname,angle, length, state); return 0; } int Edge::saveAsEnam(FILE *file) { rgb *color; color=Paint::instance()->paint_to_rgb(paint_); char state[10]; double angle,length; float dx,dy; // XXX Should never set edge size outside scale_estimate()!!!! // psize_ = 25.0; // Edges in the tracefile are bidirectional, so don't need to save // both unidirectional edges if (src_>dst_) return 0; if (state_==UP) strcpy(state, " -S UP"); else if (state_==DOWN) strcpy(state, " -S DOWN"); else state[0]='\0'; if (angle_<0) angle=180*(angle_+2*M_PI)/M_PI; else angle=180*(angle_/M_PI); dx=x0_-x1_; dy=y0_-y1_; length=sqrt(dx*dx+dy*dy); // printf("%d->%d, angle=%f (%fdeg)\n", src_, dst_, angle_, angle); fprintf(file, "##l -t * -s %d -d %d -r %f -D %f -c %s -o %.1fdeg -l %f%s -b %s\n", src_, dst_, bandwidth_, delay_, color->colorname,angle, length, state, dlabel_); return 0; } //---------------------------------------------------------------------- // int // Edge::writeNsScript(FILE *file) // - Edges in the tracefile are bidirectional, so don't need to save // both unidirectional edges //---------------------------------------------------------------------- int Edge::writeNsScript(FILE *file) { rgb *color; double angle; color = Paint::instance()->paint_to_rgb(paint_); if (angle_ < 0) { angle = 180 * (angle_ + 2 * M_PI) / M_PI; } else { angle = 180 * (angle_ / M_PI); } // Create the link if (queue_handle_) { //fprintf(file, "$ns simplex-link $node(%d) $node(%d) %f %f DropTail\n", fprintf(file, "$ns simplex-link $node(%d) $node(%d) %fMb %fms %s\n", src_, dst_, bandwidth_, delay_, queue_handle_->name()); } else { fprintf(file, "$ns simplex-link $node(%d) $node(%d) %fMb %fms DropTail\n", src_, dst_, bandwidth_, delay_); } // Add a packet queue fprintf(file, "$ns simplex-link-op $node(%d) $node(%d) queuePos 0.5\n", src_, dst_); // Set different options for the link // - Color fprintf(file, "$ns simplex-link-op $node(%d) $node(%d) color %s\n", src_, dst_, color->colorname); // - Orientation fprintf(file, "$ns simplex-link-op $node(%d) $node(%d) orient %.1fdeg\n", src_, dst_, angle); if (dlabel_){ // - label fprintf(file, "$ns simplex-link-op $node(%d) $node(%d) label %s\n", src_, dst_, dlabel_); } if (direction_!=0) { // - label orientation fprintf(file, "$ns simplex-link-op $node(%d) $node(%d) label-at %d\n", src_, dst_, direction_); } if (queue_handle_) { queue_handle_->writeNsScript(file); } fprintf(file, "\n"); return 0; } nam-1.15/edge.h0000664000076400007660000001504407742105261012161 0ustar tomhnsnam/* * Copyright (c) 1991,1993 Regents of the University of California. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the Computer Systems * Engineering Group at Lawrence Berkeley Laboratory. * 4. Neither the name of the University nor of the Laboratory may be used * to endorse or promote products derived from this software without * specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * @(#) $Header: /cvsroot/nsnam/nam-1/edge.h,v 1.32 2003/10/11 22:56:49 xuanc Exp $ (LBL) */ #ifndef nam_edge_h #define nam_edge_h #include #include #include "animation.h" #include "transform.h" class View; //class PSView; class Transform; class Node; class Packet; class Monitor; class LossModel; class QueueHandle; class Edge : public Animation, public TclObject { public: Edge(double ps, double bw, double delay, double length, double angle); Edge(Node* src, Node* dst, double ps, double bw, double _delay, double length, double angle); Edge(Node* src, Node* dst, double ps, double bw, double _delay, double length, double angle, int ws); ~Edge(); void attachNodes(Node * source, Node * destination); void addLossModel(LossModel * lossmodel); LossModel * getLossModel(); void clearLossModel(); void addQueueHandle(QueueHandle * q_handle); QueueHandle * getQueueHandle() {return queue_handle_;} virtual void draw(View*, double); virtual void reset(double); virtual int classid() const { return ClassEdgeID;} virtual float distance(float x, float y) const; inline double PacketHeight() const { return (psize_); } inline double size() const { return (psize_); } inline void size(double s) { psize_ = s; } inline int src() const { return (src_); } inline int dst() const { return (dst_); } Node * getSourceNode() {return start_;} Node * getDestinationNode() {return neighbor_;} inline int match(int s, int d) const { return (src_ == s && dst_ == d); } inline const Transform& transform() const { return (matrix_); } // bandwidth_ is converted to bits/sec for txtime calculation see tcl/netModel.tcl inline double txtime(int n) const {return (double(n << 3)/(bandwidth_*1000000.0));} inline double angle() const { return (angle_); } inline double realangle() const { return atan2(y1_-y0_, x1_-x0_); } inline void setAngle(double angle) { angle_ = angle; } double delay() const; // link delay is returned in seconds inline double length() const { return (length_); } inline double x0() const { return (x0_); } inline double y0() const { return (y0_); } inline double x() const { return (x0_); } inline double y() const { return (y0_); } inline int anchor() const { return (anchor_); } inline void anchor(int v) { anchor_ = v; } inline int visible() const { return (visible_); } inline void visible(int v) { visible_ = v; } inline Node* neighbor() const { return (neighbor_); } inline Node* start() const { return (start_); } inline Packet* packets() const { return packets_;} inline double reallength() const { return sqrt((x1_-x0_)*(x1_-x0_) + (y1_-y0_)*(y1_-y0_)); } inline void setBW(double bw) { bandwidth_ = bw;} inline void setDelay(double dlay) { delay_ = dlay;} inline void setLength(double length) { length_ = length;} inline void inc_usage() { used_ = used_ + 1;} inline void dec_usage() { used_ = used_ - 1;} inline int used() const {return used_;} /*XXX for debugging only*/ inline int no_of_packets() const {return no_of_packets_;} void init_color(const char *clr); void set_down(char *clr); void set_up(); inline int isdown() const { return (state_==DOWN); } void place(double, double, double, double); virtual void update_bb() {} // Do nothing void AddPacket(Packet *); void DeletePacket(Packet *); void arrive_packet(Packet *, double atime); void dlabel(const char* name); void direction(const char* name); void dcolor(const char* name); virtual int inside(double, float, float) const; virtual int inside(float, float) const; const char* info() const; const char* property(); const char* getname() const; void monitor(Monitor *m, double now, char *result, int len); inline int marked() const { return (marked_); } inline void mark() { marked_ = 1; } inline void unmark() { marked_ = 0; } int save(FILE *file); int saveAsEnam(FILE *file); int writeNsScript(FILE *file); Edge* next_; private: void setupDefaults(); int src_, dst_; Node* start_; Node* neighbor_; double x0_, y0_; double x1_, y1_; double psize_; /* packet size */ double angle_; double bandwidth_; // link bandwidth (Mbits/sec) double delay_; // link delay in milliseconds double length_; /* link length if not related to delay */ Transform matrix_; /* rotation matrix for packets */ int state_; BBox eb_; /* own bounding box in its own coordinate */ /* system */ Packet* packets_; /*newest packet to be added*/ int no_of_packets_; Packet* last_packet_; /*oldest packet - normally first to arrive*/ int marked_; int visible_; char* dlabel_; /* Label to be drawn beneath the link */ char* dcolor_; /* label color */ int direction_; int wireless_; int anchor_; int used_ ; /* is the edge currently being used */ LossModel * lossmodel_; QueueHandle * queue_handle_; }; #endif nam-1.15/editview.cc0000644000076400007660000012400511655017162013227 0ustar tomhnsnam/* * Copyright (C) 1997 by the University of Southern California * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. * * * The copyright of this module includes the following * linking-with-specific-other-licenses addition: * * In addition, as a special exception, the copyright holders of * this module give you permission to combine (via static or * dynamic linking) this module with free software programs or * libraries that are released under the GNU LGPL and with code * included in the standard release of ns-2 under the Apache 2.0 * license or under otherwise-compatible licenses with advertising * requirements (or modified versions of such code, with unchanged * license). You may copy and distribute such a system following the * terms of the GNU GPL for this module and the licenses of the * other code concerned, provided that you include the source code of * that other code when and as the GNU GPL requires distribution of * source code. * * Note that people who make modified versions of this module * are not obligated to grant this special exception for their * modified versions; it is their choice whether to do so. The GNU * General Public License gives permission to release a modified * version without this exception; this exception also makes it * possible to release a modified version which carries forward this * exception. * * $Header: /cvsroot/nsnam/nam-1/editview.cc,v 1.37 2011/10/31 05:46:16 tom_henderson Exp $ */ #include #ifdef WIN32 #include #endif #include #include #include "view.h" #include "bbox.h" #include "netmodel.h" #include "editview.h" #include "tclcl.h" #include "paint.h" #include "tag.h" #include "node.h" #include "edge.h" #include "agent.h" void EditView::DeleteCmdProc(ClientData cd) { EditView *ev = (EditView *)cd; if (ev->tk_ != NULL) { Tk_DestroyWindow(ev->tk_); } } //---------------------------------------------------------------------- //---------------------------------------------------------------------- EditView::EditView(const char *name, NetModel* m) : NetView(name), defTag_(NULL) { if (tk_!=0) { Tcl& tcl = Tcl::instance(); cmd_ = Tcl_CreateCommand(tcl.interp(), Tk_PathName(tk_), command, (ClientData)this, DeleteCmdProc); } char str[256]; model_ = m; sprintf(str, "def%-li", (long)this); defTag_ = new Tag(str); model_->add_tag(defTag_); editing_stage_ = NONE; } //---------------------------------------------------------------------- // EditView::EditView(const char *name, NetModel* m, // int width, int height) //---------------------------------------------------------------------- EditView::EditView(const char *name, NetModel* m, int width, int height) : NetView(name, SQUARE, width, height), defTag_(NULL) { char str[256]; if (tk_!=0) { Tcl& tcl = Tcl::instance(); cmd_ = Tcl_CreateCommand(tcl.interp(), Tk_PathName(tk_), command, (ClientData) this, DeleteCmdProc); } model_ = m; sprintf(str, "def%-li", (long)this); defTag_ = new Tag(name); model_->add_tag(defTag_); editing_stage_ = NONE; } EditView::~EditView() { model_->remove_view(this); if (defTag_ != NULL) { model_->delete_tag(defTag_->name()); delete defTag_; defTag_ = NULL; } // Delete Tcl command created // Tcl& tcl = Tcl::instance(); // Tcl_DeleteCommandFromToken(tcl.interp(), cmd_); } //---------------------------------------------------------------------- // int // EditView::command(ClientData cd, Tcl_Interp* tcl, // int argc, char **argv) // Parse Tcl command interface // - setPoint, addNode, addLink addAgent, deleteObject, etc... //---------------------------------------------------------------------- int EditView::command(ClientData cd, Tcl_Interp* tcl, int argc, CONST84 char **argv) { EditorNetModel * editor_net_model; Node * node, * source, * destination; Edge * edge; Agent * source_agent, * destination_agent; TrafficSource * traffic_source; LossModel * loss_model; //double world_x, world_y; if (argc < 2) { Tcl_AppendResult(tcl, "\"", argv[0], "\": arg mismatch", 0); return (TCL_ERROR); } char c = argv[1][0]; int length = strlen(argv[1]); EditView * ev = (EditView *) cd; editor_net_model = (EditorNetModel *) ev->model_; float cx, cy; int flag; // Following implements several useful interactive commands of // Tk's canvas. Their syntax and semantics are kept as close to // those of Tk canvas as possible. if ((c == 'd') && (strncmp(argv[1], "draw", length) == 0)) { // Redraw seen at time = argv[2] ev->draw(strtod(argv[2],NULL)); return TCL_OK; } else if ((c == 'c') && (strncmp(argv[1], "close", length) == 0)) { ev->destroy(); return TCL_OK; } else if ((c == 'd') && (strncmp(argv[1], "dctag", length) == 0)) { /* * dctag * * Delete the current selection, start all over. */ if (ev->defTag_ != NULL) ev->defTag_->remove(); ev->draw(); return (TCL_OK); } else if ((c == 's') && (strncmp(argv[1], "setPoint", length) == 0)) { /* * setPoint x y addFlag * * Select the object (if any) under point (x, y). If no such * object, set current point to (x, y) */ if (argc != 5) { Tcl_AppendResult(tcl, "wrong # args: should be \"", argv[0], " setPoint x y addFlag\"", (char *)NULL); return (TCL_ERROR); } cx = strtod(argv[2], NULL); cy = strtod(argv[3], NULL); flag = strtol(argv[4], NULL, 10); return ev->cmdSetPoint(cx, cy, flag); } else if ((c == 'd') && (strncmp(argv[1], "deleteObject", length) == 0)) { cx = strtod(argv[2], NULL); cy = strtod(argv[3], NULL); return ev->cmdDeleteObj(cx, cy); } else if ((c == 'm') && (strncmp(argv[1], "moveTo", length) == 0)) { /* * moveto x y * * Move the current selected object (if any) or the * rubber band to point (x, y) */ if (argc != 4) { Tcl_AppendResult(tcl, "wrong # args: should be \"", argv[0], " moveTo x y\"", (char *)NULL); return (TCL_ERROR); } cx = strtod(argv[2], NULL); cy = strtod(argv[3], NULL); return ev->cmdMoveTo(cx, cy); } else if ((c == 'r') && (strncmp(argv[1], "releasePoint", length) == 0)) { /* * releasePoint x y * * If any object is selected, set the object's * position to point (x,y); otherwise set the rubber * band rectangle and select all the objects in that * rectangle Note: we need a default tag for the * selection in rubber band. */ if (argc != 4) { Tcl_AppendResult(tcl, "wrong # args: should be \"", argv[0], " releasePoint x y\"", (char *)NULL); return (TCL_ERROR); } cx = strtod(argv[2], NULL); cy = strtod(argv[3], NULL); return ev->cmdReleasePoint(cx, cy); } else if ((c == 's') && (strncmp(argv[1], "setNodeProperty", length) == 0)) { // setNodeProperty nodeid nodepropertyvalue properyname int nodeid = atoi(argv[2]); return ev->cmdsetNodeProperty(nodeid, argv[3], argv[4]); } else if ((c == 's') && (strncmp(argv[1], "setAgentProperty", length) == 0)) { // setAgentProperty nodeid nodepropertyvalue properyname int agentid = atoi(argv[2]); return ev->cmdsetAgentProperty(agentid, argv[3], argv[4]); } else if ((c == 's') && (strncmp(argv[1], "setLinkProperty", length) == 0)) { // setLinkProperty sid did propertyvalue properyname int source_id = atoi(argv[2]); int destination_id = atoi(argv[3]); return ev->cmdsetLinkProperty(source_id, destination_id, argv[4], argv[5]); } else if ((c == 's') && (strncmp(argv[1], "setQueueHandleProperty", length) == 0)) { // Called by the following code in Editor.tcl // ------------------------------------------------------------ // $editor_view_ setQueueHandleProperty $source $destination // $property_value // $property_variable // // - argv[2] = source // - argv[3] = destination // - argv[4] = value // - argv[5] = variable name editor_net_model->setQueueHandleProperty(atoi(argv[2]), atoi(argv[3]), argv[4], argv[5]); ev->draw(); return TCL_OK; } else if ((c == 's') && (strncmp(argv[1], "setTrafficSourceProperty", length) == 0)) { // setTrafficSourceProperty id propertyvalue propertyname int id = atoi(argv[2]); const char * value = argv[3]; const char * variable_name = argv[4]; return ev->cmdsetTrafficSourceProperty(id, value, variable_name); } else if ((c == 's') && (strncmp(argv[1], "setLossModelProperty", length) == 0)) { // setLossModelProperty id propertyvalue propertyname int id = atoi(argv[2]); const char * value = argv[3]; const char * variable_name = argv[4]; return ev->cmdsetLossModelProperty(id, value, variable_name); } else if ((c == 'a') && (strncmp(argv[1], "addNode", length) == 0)) { // addNode x y // - add a new Node under current (x,y) with default size cx = strtod(argv[2], NULL); cy = strtod(argv[3], NULL); return ev->cmdaddNode(cx, cy); } else if ((c == 'i') && (strncmp(argv[1], "importNode", length) == 0)) { // Used when reading a nam editor file to add a node created in tcl // to this editview and its editornetmodel node = (Node *) TclObject::lookup(argv[2]); //world_x = atof(argv[3]); //world_y = atof(argv[4]); if (node) { if (editor_net_model->addNode(node)) { // node->place(world_x, world_y); // ev->draw(); return TCL_OK; } } fprintf(stderr, "Error creating node.\n"); return TCL_ERROR; } else if ((c == 'a') && (strncmp(argv[1], "attachNodes", length) == 0)) { // linkNodes source_id destination_id // - link 2 existing nodes to each other edge = (Edge *) TclObject::lookup(argv[2]); source = (Node *) TclObject::lookup(argv[3]); destination = (Node *) TclObject::lookup(argv[4]); edge->attachNodes(source, destination); editor_net_model->addEdge(edge); ev->draw(); return TCL_OK; } else if ((c == 'a') && (strncmp(argv[1], "addLink", length) == 0)) { // addLink x y // - add a new Link if its start AND end point is inside of cx = strtod(argv[2], NULL); cy = strtod(argv[3], NULL); return ev->cmdaddLink(cx, cy); } else if ((c == 'a') && (strncmp(argv[1], "addQueueHandle", length) == 0)) { // addQueueHandle edge queue_type edge = (Edge *) TclObject::lookup(argv[2]); if (edge) { editor_net_model->addQueueHandle(edge, argv[3]); } return TCL_OK; // --------------- Agent ----------------- } else if ((c == 'a') && (strncmp(argv[1], "addAgent", length) == 0)) { // addAgent x y agent // - add a new agent cx = strtod(argv[2], NULL); cy = strtod(argv[3], NULL); const char * agent_name = argv[4]; return ev->cmdaddAgent(cx, cy, agent_name); } else if ((c == 'i') && (strncmp(argv[1], "importAgent", length) == 0)) { source_agent = (Agent *) TclObject::lookup(argv[2]); node = (Node *) TclObject::lookup(argv[3]); return editor_net_model->addAgent(source_agent, node); } else if ((c == 'l') && (strncmp(argv[1], "linkAgents", length) == 0)) { // linkAgents source_id destination_id // - link 2 existing agents to each other source_agent = (Agent *) TclObject::lookup(argv[2]); destination_agent = (Agent *) TclObject::lookup(argv[3]); return editor_net_model->addAgentLink(source_agent, destination_agent); } else if ((c == 's') && (strncmp(argv[1], "showAgentLink", length) == 0)) { cx = strtod(argv[2], NULL); cy = strtod(argv[3], NULL); return ev->showAgentLink(cx, cy); } else if ((c == 'h') && (strncmp(argv[1], "hideAgentLinks", length) == 0)) { editor_net_model->hideAgentLinks(); ev->draw(); return TCL_OK; // --------------- Traffic Source ----------------- } else if ((c == 'a') && (strncmp(argv[1], "addTrafficSource", length) == 0)) { // addTrafficSource x y trafficsource_type // - add a new TrafficSource cx = strtod(argv[2], NULL); cy = strtod(argv[3], NULL); // argv[4] is the name of the traffic source return ev->cmdaddTrafficSource(cx, cy, argv[4]); } else if ((c == 'a') && (strncmp(argv[1], "attachTrafficSource", length) == 0)) { traffic_source = (TrafficSource *) TclObject::lookup(argv[2]); source_agent = (Agent *) TclObject::lookup(argv[3]); return editor_net_model->addTrafficSource(traffic_source, source_agent); // ----------- Loss Models ---------------- } else if ((c == 'a') && (strncmp(argv[1], "addLossModel", length) == 0)) { // addLossModel x y lossmodel cx = strtod(argv[2], NULL); cy = strtod(argv[3], NULL); // argv[4] is the type of the loss model to add return ev->cmdaddLossModel(cx, cy, argv[4]); } else if ((c == 'a') && (strncmp(argv[1], "attachLossModel", length) == 0)) { loss_model = (LossModel *) TclObject::lookup(argv[2]); source = (Node *) TclObject::lookup(argv[3]); destination = (Node *) TclObject::lookup(argv[4]); edge = source->find_edge(destination->number()); return editor_net_model->addLossModel(loss_model, edge); // ----------- Object and Object Properties ---------------- } else if ((c == 'g') && (strncmp(argv[1], "getObjectInformation", length) == 0)) { // getObject x y // - return object under current point cx = strtod(argv[2], NULL); cy = strtod(argv[3], NULL); return ev->cmdgetObjectInformation(cx, cy); } else if ((c == 'g') && (strncmp(argv[1], "getObjectProperty", length) == 0)) { // getObjectPropert x y [type] // - return properties for object under current point // - if type is passed in then pass that to object cx = strtod(argv[2], NULL); cy = strtod(argv[3], NULL); if (argc == 5) { return ev->cmdgetObjectProperties(cx, cy, argv[4]); } else { return ev->cmdgetObjProperty(cx, cy); } } else if ((c == 'v') && (strncmp(argv[1], "view_mode", length)==0)) { /* * view_mode * * clear defTag_ and change to view mode */ ev->view_mode(); return TCL_OK; } return (NetView::command(cd, tcl, argc, argv)); } int EditView::cmdsetNodeProperty(int id, const char * value, const char * variable) { EditorNetModel* emodel_ = (EditorNetModel *) model_; // goto enetmodel.cc emodel_->setNodeProperty(id, value, variable); // EditType oldt_; // oldt_ = editing_stage_; // editing_stage_ = END_OBJECT; draw(); // editing_stage_ = NONE; // model_->update(model_->now()); // editing_stage_ = oldt_; return(TCL_OK); } int EditView::cmdsetAgentProperty(int id, const char * value, const char * variable) { EditorNetModel* emodel_ = (EditorNetModel *) model_; emodel_->setAgentProperty(id, value ,variable); draw(); return(TCL_OK); } int EditView::cmdsetLinkProperty(int sid, int did, const char * value, const char * variable) { EditorNetModel * emodel_ = (EditorNetModel *) model_; emodel_->setLinkProperty(sid, did, value, variable); draw(); return(TCL_OK); } //---------------------------------------------------------------------- // int // EditView::cmdsetTrafficSourceProperty(int sid, int did, const char *pv, int pn) //---------------------------------------------------------------------- int EditView::cmdsetTrafficSourceProperty(int id, const char * value, const char * variable) { EditorNetModel* emodel_ = (EditorNetModel *) model_; emodel_->setTrafficSourceProperty(id, value, variable); draw(); return(TCL_OK); } //---------------------------------------------------------------------- // int // EditView::cmdsetLossModelProperty(int id, char * value, char * variable) //---------------------------------------------------------------------- int EditView::cmdsetLossModelProperty(int id, const char * value, const char * variable) { EditorNetModel* emodel_ = (EditorNetModel *) model_; emodel_->setLossModelProperty(id, value, variable); draw(); return(TCL_OK); } //---------------------------------------------------------------------- // int // EditView::cmdgetObjProperty(float cx, float cy) // - get properties for a selected object //---------------------------------------------------------------------- int EditView::cmdgetObjProperty(float cx, float cy) { Animation *p; Tcl& tcl = Tcl::instance(); // matrix_ comes from class View (view.h) // - imap is the inverse mapping // (i.e from screen to world coordinate systems) matrix_.imap(cx, cy); // Finds the object which contains the coordinate (cx, cy) p = model_->inside(cx, cy); if (p == NULL) { tcl.resultf("NONE"); } else { tcl.resultf("%s",p->property()); } return(TCL_OK); } //---------------------------------------------------------------------- // int // EditView::cmdgetObjectProperties(float cx, float cy, char * type) // - get properties for a selected object and the specific // type within that object //---------------------------------------------------------------------- int EditView::cmdgetObjectProperties(float cx, float cy, const char * type) { Animation * animation_object; Tcl& tcl = Tcl::instance(); // matrix_ comes from class View (view) // - imap is the inverse mapping // (i.e from screen to world coordinate systems) matrix_.imap(cx, cy); // Finds the object which contains the coordinate (cx, cy) animation_object = model_->inside(cx, cy); if (animation_object == NULL) { tcl.resultf("NONE"); } else { tcl.resultf("%s",animation_object->getProperties(type)); } return(TCL_OK); } //---------------------------------------------------------------------- //---------------------------------------------------------------------- int EditView::cmdgetObjectInformation(float cx, float cy) { Tcl& tcl = Tcl::instance(); matrix_.imap(cx, cy); Animation *p = model_->inside(cx, cy); if (p == NULL) { tcl.resultf("NONE"); } else { tcl.resultf("%s",p->info()); } return(TCL_OK); } //---------------------------------------------------------------------- // int // EditView::cmdaddLink(float cx, float cy) // - Note: all cx_ and cy_ below are in *window* coordinates //---------------------------------------------------------------------- int EditView::cmdaddLink(float cx, float cy) { Animation * p; static Animation * old_p; EditorNetModel* emodel_ = (EditorNetModel *) model_; cx_ = cx; cy_ = cy; matrix_.imap(cx, cy); // Do we have a node on current point ? p = model_->inside(cx, cy); if (p == NULL) { defTag_->remove(); if (editing_stage_ == START_LINK) { editing_stage_ = NONE; draw(); } return (TCL_OK); } if (p->classid() == ClassNodeID) { if (editing_stage_ != START_LINK) { old_p = p; /* remember the orig node */ startSetObject(p, cx_, cy_); editing_stage_ = START_LINK; } else if ((old_p == p)||(old_p->classid()!=ClassNodeID)) { editing_stage_ = NONE; draw(); // to support making link by click-&-click editing_stage_ = START_LINK; } else { // add a new link b/w the two nodes startSetObject(p, cx_, cy_); Node *src, *dst; src = (Node *)old_p; dst = (Node *)p; emodel_->addLink(src, dst); editing_stage_ = END_OBJECT; // Erase old positions defTag_->draw(this, model_->now()); // At least we should redo scale estimation and // place everything defTag_->move(this, rb_.xmax - oldx_, rb_.ymax - oldy_); model_->recalc(); model_->render(this); defTag_->remove(); editing_stage_ = NONE; draw(); editing_stage_ = NONE; } } else if (p->classid() == ClassAgentID) { if (editing_stage_ != START_LINK) { old_p = p; startSetObject(p, cx_, cy_); editing_stage_ = START_LINK; } else if ((old_p == p)||(old_p->classid()!= ClassAgentID)) { editing_stage_ = NONE; draw(); // to support making agent-link by click-&-click editing_stage_ = START_LINK; } else { startSetObject(p, cx_, cy_); Agent *src_agent, *dst_agent; src_agent = (Agent *)old_p; dst_agent = (Agent *)p; emodel_->addAgentLink(src_agent, dst_agent); editing_stage_ = END_OBJECT; defTag_->draw(this, model_->now()); defTag_->move(this, rb_.xmax - oldx_, rb_.ymax - oldy_); model_->recalc(); model_->render(this); defTag_->remove(); editing_stage_ = NONE; draw(); } } else { editing_stage_ = NONE; } return(TCL_OK); } //---------------------------------------------------------------------- // int // EditView::cmdaddAgent(float cx, float cy, char* agent) //---------------------------------------------------------------------- int EditView::cmdaddAgent(float cx, float cy, const char* agent) { Animation * p; Node * src; EditorNetModel* emodel_ = (EditorNetModel *)model_; // Switch from screen coordinates to world coordinates matrix_.imap(cx, cy); // Do we have a node on the clicked point ? p = model_->inside(cx, cy); if (p == NULL) { defTag_->remove(); return (TCL_OK); } if (p->classid() == ClassNodeID) { // Yes, we have a node to which we can add the agent src = (Node *) p; // goto EditorNetModel::addAgent(...) in enetmodel.cc emodel_->addAgent(src, agent, cx, cy); draw(); } else { return (TCL_OK); } return(TCL_OK); } //---------------------------------------------------------------------- // int EditView::showAgentLink(float cx, float cy) //---------------------------------------------------------------------- int EditView::showAgentLink(float cx, float cy) { Animation * animation; Agent * agent; // Change from screen coordinates to worl coordinates matrix_.imap(cx, cy); // Get the clicked on animation object. animation = model_->inside(cx, cy); if (animation != NULL && animation->classid() == ClassAgentID) { agent = (Agent *) animation; agent->showLink(); draw(); } return(TCL_OK); } //---------------------------------------------------------------------- // int // EditView::cmdaddNode(float cx, float cy) // Note: all cx_ and cy_ below are in *window* coordinates //---------------------------------------------------------------------- int EditView::cmdaddNode(float cx, float cy) { Animation * animation_object; EditorNetModel* emodel_ = (EditorNetModel *)model_; // Convert screen coordinates to world coordinates matrix_.imap(cx, cy); // Check to see if an object already exists on the click point animation_object = model_->inside(cx,cy); if (animation_object == NULL) { defTag_->remove(); emodel_->addNode(cx, cy); draw(); } return(TCL_OK); } //---------------------------------------------------------------------- // int // EditView::cmdDeleteObj(float cx, float cy) //---------------------------------------------------------------------- int EditView::cmdDeleteObj(float cx, float cy) { Animation * p; // I don't know why p was chosen for the varible name // Just to confuse other programmers, I guess // First of all, clear the old point cx_ = cx; cy_ = cy; // Do we have an animation object on the clicked point? matrix_.imap(cx, cy); p = model_->inside(cx, cy); if (p == NULL) { defTag_->remove(); return (TCL_OK); } // If object is already selected unselect it if (p->isTagged()) { if (p->numTag() > 1) { fprintf(stderr, "Error: More than one tag for an object %d!\n", p->id()); p = NULL; } else { p = p->getLastTag(); } } // Only nodes, links, agents, traffic sources and // loss models can be deleted if ((p->classid() != ClassNodeID) && (p->classid() != ClassEdgeID) && (p->classid() != ClassAgentID) && (p->classid() != ClassTrafficSourceID) && (p->classid() != ClassLossModelID)) { p = NULL; } if (p == NULL) { defTag_->remove(); } else { if (p->classid() == ClassNodeID) { Node * n = (Node *) p; EditorNetModel * emodel_ = (EditorNetModel *) model_; emodel_->removeNode(n); draw(); } if (p->classid() == ClassEdgeID) { Edge * e = (Edge *) p; EditorNetModel * emodel_ = (EditorNetModel *) model_; emodel_->removeLink(e); draw(); } if (p->classid() == ClassAgentID) { Agent * a = (Agent *) p; EditorNetModel* emodel_ = (EditorNetModel *) model_; emodel_->removeAgent(a); draw(); } if (p->classid() == ClassTrafficSourceID) { TrafficSource * ts = (TrafficSource *) p; EditorNetModel* emodel_ = (EditorNetModel *) model_; emodel_->removeTrafficSource(ts); draw(); } if (p->classid() == ClassLossModelID) { LossModel * lossmodel = (LossModel *) p; EditorNetModel* emodel_ = (EditorNetModel *) model_; emodel_->removeLossModel(lossmodel); draw(); } } return (TCL_OK); } //---------------------------------------------------------------------- // int // EditView::cmdaddTrafficSource(float cx, float cy, char * type) //---------------------------------------------------------------------- int EditView::cmdaddTrafficSource(float cx, float cy, const char * type) { Animation * object; Agent * agent; EditorNetModel* emodel_ = (EditorNetModel *)model_; // Switch from screen coordinates to world coordinates matrix_.imap(cx, cy); // Do we have an agent on the clicked point ? object = model_->inside(cx, cy); if (object == NULL) { defTag_->remove(); return (TCL_OK); } if (object->classid() == ClassAgentID) { // Yes, we have a node to which we can add the agent agent = (Agent *) object; // goto EditorNetModel::addTrafficSource(...) in enetmodel.cc emodel_->addTrafficSource(agent, type, cx, cy); draw(); } else { return (TCL_OK); } return(TCL_OK); } //---------------------------------------------------------------------- // int // EditView::cmdaddLossModel(float cx, float cy, char * type) //---------------------------------------------------------------------- int EditView::cmdaddLossModel(float cx, float cy, const char * type) { Animation * object; Node * source, * destination; Edge * edge, * reverse_edge; EditorNetModel* emodel_ = (EditorNetModel *) model_; // Switch from screen coordinates to world coordinates matrix_.imap(cx, cy); // Do we have a link on the clicked point ? object = model_->inside(cx, cy); if (object == NULL) { defTag_->remove(); return (TCL_OK); } if (object->classid() == ClassEdgeID || object->classid() == ClassQueueHandleID ) { // // Yes, we have a possible edge to which we can add the loss model if (object->classid() == ClassQueueHandleID ) { edge = ((QueueHandle *) object)->getEdge(); } else { edge = (Edge *) object; } if (edge) { // Check distance to source to determine if we should attach // to the forward or reverse edge source = edge->getSourceNode(); destination = edge->getDestinationNode(); if (source->distance(cx, cy) > destination->distance(cx,cy)) { // if source is farther away than destination then place // this loss model on the reverse edge reverse_edge = emodel_->lookupEdge(destination->number(), source->number()); if (reverse_edge) { // Make sure there is a reverse edge edge = reverse_edge; } } // goto EditorNetModel::addTrafficSource(...) in enetmodel.cc emodel_->addLossModel(edge, type, cx, cy); draw(); } } return(TCL_OK); } // --------------------------------------------------------------------- // int // EditView::cmdSetPoint(float cx, float cy, int bAdd) // - Note: all cx_ and cy_ below are in *window* coordinates // --------------------------------------------------------------------- int EditView::cmdSetPoint(float cx, float cy, int add_object) { Animation * animation_object; // First of all, clean the old group cx_ = cx; cy_ = cy; // Inverse Map cx, cy to world coordinates matrix_.imap(cx, cy); // Do we have anything on current point? animation_object = model_->inside(cx, cy); // If nothing at this point start selection rubberband if (animation_object == NULL) { defTag_->remove(); startRubberBand(cx_, cy_); return (TCL_OK); } // Otherwise look to move object if it is a node or a Tag // - A tag is a grouping marker, if an object is tagged then // that tag group can be moved together if (animation_object->isTagged()) { if (animation_object->numTag() > 1) { fprintf(stderr, "Error: More than one tag for object %d!\n", animation_object->id()); animation_object = NULL; } else { animation_object = animation_object->getLastTag(); } } // Only nodes and tags can be moved if ((animation_object->classid() == ClassNodeID) || (animation_object->classid() == ClassTagID)) { // If a single non-tag object is selected, or explicitly // instructed, remove the previous selection. Otherwise, // the object under the current point will be added to the // entire tagged selection if (!add_object && (animation_object != defTag_)) { defTag_->remove(); } // Just tags the object as being selected. // Draws a box around the tagged object startSetObject(animation_object, cx_, cy_); } else { defTag_->remove(); startRubberBand(cx_, cy_); } return (TCL_OK); } //---------------------------------------------------------------------- // int // EditView::cmdMoveTo(float cx, float cy) // - Moves object to end location // - Ends the rubber band selection //---------------------------------------------------------------------- int EditView::cmdMoveTo(float cx, float cy) { // cx and cy should be in screen (canvas) coordinates cx_ = cx; cy_ = cy; switch (editing_stage_) { case START_RUBBERBAND: case MOVE_RUBBERBAND: oldx_ = rb_.xmax; oldy_ = rb_.ymax; rb_.xmax = cx_; rb_.ymax = cy_; editing_stage_ = MOVE_RUBBERBAND; clip_ = rb_; clip_.adjust(); if (clip_.xmin > oldx_) clip_.xmin = oldx_; if (clip_.xmax < oldx_) clip_.xmax = oldx_; if (clip_.ymin > oldy_) clip_.ymin = oldy_; if (clip_.ymax < oldy_) clip_.ymax = oldy_; break; case START_OBJECT: case MOVE_OBJECT: { oldx_ = rb_.xmax; oldy_ = rb_.ymax; rb_.xmax = cx_; rb_.ymax = cy_; editing_stage_ = MOVE_OBJECT; clip_.clear(); defTag_->merge(clip_); matrix_.map(clip_.xmin, clip_.ymin); matrix_.map(clip_.xmax, clip_.ymax); clip_.adjust(); // Actual move and final bbox computation is done in render break; case START_LINK: case MOVE_LINK: // I believe this is never reached and should be removed // maybe it is changed in the future oldx_ = rb_.xmax; oldy_ = rb_.ymax; rb_.xmax = cx_; rb_.ymax = cy_; editing_stage_ = MOVE_LINK; clip_ = rb_; clip_.adjust(); if (clip_.xmin > oldx_) clip_.xmin = oldx_; if (clip_.xmax < oldx_) clip_.xmax = oldx_; if (clip_.ymin > oldy_) clip_.ymin = oldy_; if (clip_.ymax < oldy_) clip_.ymax = oldy_; break; } default: // to avoid segmentation fault from click-n-dragging return (TCL_OK); } draw(); return (TCL_OK); } int EditView::cmdReleasePoint(float cx, float cy) { static char buffer[512]; int chars_written; cx_ = cx; cy_ = cy; Tcl & tcl = Tcl::instance(); switch (editing_stage_) { case START_RUBBERBAND: case MOVE_RUBBERBAND: { oldx_ = rb_.xmax; oldy_ = rb_.ymax; rb_.xmax = cx_, rb_.ymax = cy_; // Need to add the region to defTag_ clip_ = rb_; clip_.adjust(); BBox bb = clip_; matrix_.imap(bb.xmin, bb.ymin); matrix_.imap(bb.xmax, bb.ymax); bb.adjust(); model_->tagArea(bb, defTag_, 1); // We can do a total redraw editing_stage_ = NONE; draw(); // Get time movement info for node markers on time slider // defTag_->addNodeMovementDestination(this, cx - oldx_, cy - oldy_, model_->now()); // chars_written = defTag_->getNodeMovementTimes(buffer, 512); // if (chars_written == -1) { tcl.resultf("NONE"); // } else { // tcl.resultf("%s", buffer); // } break; } case START_OBJECT: case MOVE_OBJECT: { oldx_ = rb_.xmax; oldy_ = rb_.ymax; rb_.xmax = cx_; rb_.ymax = cy_; clip_.clear(); defTag_->merge(clip_); matrix_.map(clip_.xmin, clip_.ymin); matrix_.map(clip_.xmax, clip_.ymax); clip_.adjust(); // Later in render() we'll compute the real bbox editing_stage_ = END_OBJECT; draw(); editing_stage_ = NONE; model_->update(model_->now()); // defTag_->move(this, rb_.xmax - oldx_, rb_.ymax - oldy_); // Get time movement info for node markers on time slider defTag_->addNodeMovementDestination(this, cx - oldx_, cy - oldy_, model_->now()); chars_written = defTag_->getNodeMovementTimes(buffer, 512); if (chars_written == -1) { tcl.resultf("NONE"); } else { tcl.resultf("%s", buffer); } break; } case START_LINK: case MOVE_LINK: { editing_stage_ = START_LINK; draw(); model_->update(model_->now()); cmdaddLink(cx_, cy_); tcl.resultf("NONE"); break; } default: // This cannot happen! editing_stage_ = NONE; draw(); tcl.resultf("NONE"); } return (TCL_OK); } //---------------------------------------------------------------------- //---------------------------------------------------------------------- inline void EditView::startRubberBand(float cx, float cy) { // Nothing's here. Set rubber band. editing_stage_ = START_RUBBERBAND; rb_.xmin = rb_.xmax = cx; rb_.ymin = rb_.ymax = cy; clip_ = rb_; } //---------------------------------------------------------------------- //---------------------------------------------------------------------- inline void EditView::startSetObject(Animation * animation_object, float cx, float cy) { // Find an object, add it to group editing_stage_ = START_OBJECT; // Add it into defTag_ if (animation_object != defTag_) { model_->tagObject(defTag_, animation_object); } rb_.xmin = rb_.xmax = cx; rb_.ymin = rb_.ymax = cy; clip_.clear(); defTag_->merge(clip_); // for the bounding box (bbox) oldx_ = rb_.xmax; oldy_ = rb_.ymax; rb_.xmax = cx_; rb_.ymax = cy_; clip_.clear(); defTag_->merge(clip_); matrix_.map(clip_.xmin, clip_.ymin); matrix_.map(clip_.xmax, clip_.ymax); clip_.adjust(); // Later in render() we'll compute the real bbox // We have selected the object and now we are at the end of // the object selection process editing_stage_ = END_OBJECT; draw(); editing_stage_ = NONE; model_->update(model_->now()); editing_stage_ = START_OBJECT; } //---------------------------------------------------------------------- // void EditView::draw() //---------------------------------------------------------------------- void EditView::draw() { if (editing_stage_ == NONE) { View::draw(); } else { // Ignore the cleaning part render(); // XXX Don't understand why clip's height and width need to // increase 3 to draw tagged objects correctly. XCopyArea(Tk_Display(tk_), offscreen_, Tk_WindowId(tk_), background_,(int)clip_.xmin, (int)clip_.ymin, (int)clip_.width()+3, (int)clip_.height()+3, (int)clip_.xmin, (int)clip_.ymin); } } //---------------------------------------------------------------------- // void EditView::draw(double current_time) //---------------------------------------------------------------------- void EditView::draw(double current_time) { model_->update(current_time); } //---------------------------------------------------------------------- //---------------------------------------------------------------------- void EditView::xline(float x0, float y0, float x1, float y1, GC gc) { XDrawLine(Tk_Display(tk_), offscreen_, gc, (int) x0, (int) y0, (int) x1, (int) y1); } // Without transform. void EditView::xrect(float x0, float y0, float x1, float y1, GC gc) { int x = (int) floor(x0); int y = (int) floor(y0); int w = (int)(x1 - x0); if (w < 0) { x = (int) ceil(x1); w = -w; } int h = (int)(y1 - y0); if (h < 0) { h = -h; y = (int)ceil(y1); } XDrawRectangle(Tk_Display(tk_), offscreen_, gc, x, y, w, h); } void EditView::line(float x0, float y0, float x1, float y1, int color) { if (editing_stage_ != NONE) View::line(x0, y0, x1, y1, Paint::instance()->Xor()); else View::line(x0, y0, x1, y1, color); } void EditView::rect(float x0, float y0, float x1, float y1, int color) { if (editing_stage_ != NONE) View::rect(x0, y0, x1, y1, Paint::instance()->Xor()); else View::rect(x0, y0, x1, y1, color); } void EditView::polygon(const float* x, const float* y, int n, int color) { if (editing_stage_ != NONE) View::polygon(x, y, n, Paint::instance()->Xor()); else View::polygon(x, y, n, color); } void EditView::fill(const float* x, const float* y, int n, int color) { if (editing_stage_ != NONE) View::fill(x, y, n, Paint::instance()->Xor()); else View::fill(x, y, n, color); } void EditView::circle(float x, float y, float r, int color) { if (editing_stage_ != NONE) View::circle(x, y, r, Paint::instance()->Xor()); else View::circle(x, y, r, color); } // Do not display any string, because no xor font gc void EditView::string(float fx, float fy, float dim, const char* s, int anchor) { if (editing_stage_ == NONE) View::string(fx, fy, dim, s, anchor); } //---------------------------------------------------------------------- // void // EditView::BoundingBox(BBox &bb) // - This copies the area in which an animation drawn may be drawn // into (clipping area) the destination bb. //---------------------------------------------------------------------- void EditView::BoundingBox(BBox &bb) { double temp; // Calculate the world coordinates for the view's canvas matrix_.imap(0.0, 0.0, bb.xmin, bb.ymin); matrix_.imap(width_, height_, bb.xmax, bb.ymax); // Check to make sure xmin, ymin is the lower left corner // and xmax, ymax is the upper right if (bb.xmin > bb.xmax) { temp = bb.xmax; bb.xmax = bb.xmin; bb.xmin = temp; } if (bb.ymin > bb.ymax) { temp = bb.ymax; bb.ymax = bb.ymin; bb.ymin = temp; } } void EditView::getWorldBox(BBox &bb) { model_->BoundingBox(bb); } //---------------------------------------------------------------------- // void // EditView::render() // - not sure why this is called render but it seems to take care of // rubberband selections and moving a selection on the screen // - I believe the real "rendering" is done in model_->render() // which is of type NetModel. -- mehringe@isi.edu // //---------------------------------------------------------------------- void EditView::render() { // Here we can compute the clipping box for render Paint *paint = Paint::instance(); GC gc = paint->paint_to_gc(paint->Xor()); switch (editing_stage_) { case START_RUBBERBAND: // draw rubber band xrect(rb_.xmin, rb_.ymin, rb_.xmax, rb_.ymax, gc); break; case MOVE_RUBBERBAND: // erase previous rubberband xrect(rb_.xmin, rb_.ymin, oldx_, oldy_, gc); // draw new rubberband xrect(rb_.xmin, rb_.ymin, rb_.xmax, rb_.ymax, gc); break; case END_RUBBERBAND: // erase previous rubber band xrect(rb_.xmin, rb_.ymin, oldx_, oldy_, gc); // XXX Should draw the tag? model_->render(this); editing_stage_ = NONE; break; case START_OBJECT: xrect(rb_.xmin, rb_.ymin, rb_.xmax, rb_.ymax, gc); // xor-draw all relevant objects defTag_->draw(this, model_->now()); break; case MOVE_OBJECT: // erase old positions first. if ((oldx_ == rb_.xmax) && (oldy_ == rb_.ymax)) return; defTag_->draw(this, model_->now()); // move these objects defTag_->move(this, rb_.xmax - oldx_, rb_.ymax - oldy_); BBox bb; bb.clear(); defTag_->merge(bb); matrix_.imap(bb.xmin, bb.ymin); matrix_.imap(bb.xmax, bb.ymax); bb.adjust(); clip_.merge(bb); defTag_->draw(this, model_->now()); break; case END_OBJECT: // Erase old positions defTag_->draw(this, model_->now()); // At least we should redo scale estimation and // place everything defTag_->move(this, rb_.xmax - oldx_, rb_.ymax - oldy_); model_->recalc(); model_->render(this); editing_stage_ = NONE; break; case START_LINK: line(link_start_x_, link_start_y_, link_end_x_, link_end_y_, 3); defTag_->draw(this, model_->now()); break; case MOVE_LINK: // erase previous link xline(rb_.xmin, rb_.ymin, oldx_, oldy_, gc); // draw new rubberband xline(rb_.xmin, rb_.ymin, rb_.xmax, rb_.ymax, gc); break; case END_LINK: // erase previous link xline(rb_.xmin, rb_.ymin, oldx_, oldy_, gc); // XXX Should draw the tag? model_->render(this); editing_stage_ = NONE; break; default: // redraw model model_->render(this); break; } return; } nam-1.15/editview.h0000664000076400007660000001257210564011173013072 0ustar tomhnsnam/* * Copyright (C) 1997 by the University of Southern California * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. * * * The copyright of this module includes the following * linking-with-specific-other-licenses addition: * * In addition, as a special exception, the copyright holders of * this module give you permission to combine (via static or * dynamic linking) this module with free software programs or * libraries that are released under the GNU LGPL and with code * included in the standard release of ns-2 under the Apache 2.0 * license or under otherwise-compatible licenses with advertising * requirements (or modified versions of such code, with unchanged * license). You may copy and distribute such a system following the * terms of the GNU GPL for this module and the licenses of the * other code concerned, provided that you include the source code of * that other code when and as the GNU GPL requires distribution of * source code. * * Note that people who make modified versions of this module * are not obligated to grant this special exception for their * modified versions; it is their choice whether to do so. The GNU * General Public License gives permission to release a modified * version without this exception; this exception also makes it * possible to release a modified version which carries forward this * exception. * * $Header: /cvsroot/nsnam/nam-1/editview.h,v 1.19 2007/02/12 07:08:43 tom_henderson Exp $ */ #ifndef nam_EditView_h #define nam_EditView_h extern "C" { #include #include } #include "tkcompat.h" #include "enetmodel.h" #include "transform.h" #include "view.h" #include "netview.h" #include "bbox.h" #include "tag.h" #include "trafficsource.h" class NetModel; struct TraceEvent; class Tcl; class Paint; class EditView : public NetView { public: EditView(const char* name, NetModel *m); EditView(const char* name, NetModel *m, int height, int width); virtual ~EditView(); static int command(ClientData, Tcl_Interp*, int argc, CONST84 char **argv); static void DeleteCmdProc(ClientData); virtual void draw(); virtual void draw(double current_time); virtual void render(); virtual void BoundingBox(BBox &bb); virtual void getWorldBox(BBox & world_boundary); int cmdSetPoint(float, float, int); int cmdMoveTo(float, float); int cmdReleasePoint(float, float); int cmdRemoveSel(float, float); int cmdaddNode(float, float); int cmdaddLink(float, float); int cmdaddAgent(float, float, const char*); int showAgentLink(float cx, float cy); int cmdaddAgentLinker(float, float); int cmdaddTrafficSource(float cx, float cy, const char * type); int cmdaddLossModel(float cx, float cy, const char * type); int cmdgetObjectInformation(float cx, float cy); int cmdgetObjProperty(float cx, float cy); int cmdgetObjectProperties(float cx, float cy, const char * type); int cmdsetNodeProperty(int id, const char * value, const char * variable); int cmdsetAgentProperty(int id, const char * value, const char * variable); int cmdsetLinkProperty(int sid, int did, const char * value, const char * variable); int cmdsetTrafficSourceProperty(int id, const char * value, const char * variable); int cmdsetLossModelProperty(int id, const char * value, const char * variable); int cmdDeleteObj(float, float); void moveNode(Node *n) const { model_->moveNode(n); } virtual void line(float x0, float y0, float x1, float y1, int color); virtual void rect(float x0, float y0, float x1, float y1, int color); virtual void polygon(const float* x, const float* y, int n, int color); virtual void fill(const float* x, const float* y, int n, int color); virtual void circle(float x, float y, float r, int color); virtual void string(float fx, float fy, float dim, const char* s, int anchor); void view_mode() { defTag_->remove(); draw(); } protected: // xor-draw rectangle void xrect(float x0, float y0, float x1, float y1, GC gc); void xline(float x0, float y0, float x1, float y1, GC gc); enum EditType { START_RUBBERBAND, MOVE_RUBBERBAND, END_RUBBERBAND, START_OBJECT, MOVE_OBJECT, END_OBJECT, NONE, START_LINK, MOVE_LINK, END_LINK }; inline void startRubberBand(float cx, float cy); inline void startSetObject(Animation *p, float cx, float cy); // Grouping/interactive stuff Tag * defTag_; // This is a tag object that is used for adding // animation object into a selection group so that // they can be moved together Animation * curObj_; float cx_, cy_; // current point EditType editing_stage_; // current selection type BBox rb_; // rubber band rectangle float oldx_, oldy_; // old rubber band position, used for erasion float link_start_x_, link_start_y_; // link origin float link_end_x_, link_end_y_; // link destination }; #endif nam-1.15/edu/A0-README0000664000076400007660000000427207024407012012770 0ustar tomhnsnam[ August 1999 ] Following tcl files are ns-scripts for Directed Research with Dr.Heidemann. You could see the explanation about those files at http://www-scf.usc.edu/~hyunahpa/D-Research/DR-home.html All of the files which are using slidingwindow protocol are not actually executing when users run it, instead it run old nam trace file which are made before. There are 3 kinds of files per each mechanism, which are xx.tcl, xx.nam, and xx.tr. All of the scripts whose file name start with 'A#- ' have same configuration, which has 2 nodes and 1 link between them like this.. n0 ---------- n1 FILE NAME DESCRIPTION --------------------------------------------------------------------------------------- A0-README This file A1-stop-n-wait Simple stop-and-wait protocol between 2 nodes. feature : label, annotation, nam-graph, and cwnd monitor To see nam-graph, click 'Active Sessions' under 'Analysis' in the nam menu, then click 'TCP session' A2-stop-n-wait-loss Simple stop-and-wait protocol with a packet loss. feature : label, annotation, nam-graph, and cwnd monitor To see nam-graph, click 'Active Sessions' under 'Analysis' in the nam menu, then click 'TCP session' A3-sliding-window Simple sliding-window protocol between 2 nodes. feature : label, annotation, nam-graph, and cwnd monitor A4-slow-start Simple slow start protocol between 2 nodes. feature : label, annotation, nam-graph, and cwnd monitor To see nam-graph, click 'Active Sessions' under 'Analysis' in the nam menu, then click 'TCP session' A5-slow-start-loss Simple slow start protocol with a packet loss. feature : label, annotation, nam-graph, and cwnd monitor To see nam-graph, click 'Active Sessions' under 'Analysis' in the nam menu, then click 'TCP session' --------------------------------------------------------------------------------------- written by Hyunah Park ( hyunahpa@usc.edu ) nam-1.15/edu/A1-stop-n-wait.nam0000664000076400007660000001470106751715361015005 0ustar tomhnsnamV -t * -v 1.0a5 -a 1 -c 1 -F 1 -M 2 c -t * -i 0 -n black N -t * -S 0 -n {TCP session between node 0.0 and node 1.0} -p TCP -m {} N -t * -S 0 -h 6 N -t * -F 0 -M 0 -n tcp N -t * -F 0 -M 1 -n ack A -t * -n 1 -p 0 -o 255 -c 15 -a 1 A -t * -h 1 -m 127 -s 8 n -t * -a 0 -s 0 -S UP -v circle -c black n -t * -a 1 -s 1 -S UP -v circle -c black l -t * -s 0 -d 1 -S UP -r 200000 -D 0.20000000000000001 -c black -o right a -t 0.00000000000000000 -s 0 -d 1 -n tcp f -t 0.00000000000000000 -s 0 -d 1 -n cwnd_ -a tcp -v 1.000000 -T v v -t 0.00000000000000000 monitor_agent 0 tcp n -t 0 -s 0 -S DLABEL -l Sender -L "" n -t 0 -s 1 -S DLABEL -l Receiver -L "" v -t 0 sim_annotation 0 1 Stop and Wait with normal operation v -t 0.050000000000000003 sim_annotation 0.050000000000000003 2 FTP starts at 0.1 + -t 0.1 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -f 0 -m 0 -y {0 0} - -t 0.1 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} h -t 0.1 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {-1 -1} v -t 0.11 sim_annotation 0.11 3 Send Packet_0 r -t 0.34 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} + -t 0.34 -s 1 -d 0 -p ack -e 40 -c 0 -i 1 -a 0 -S 0 -y {0 0} - -t 0.34 -s 1 -d 0 -p ack -e 40 -c 0 -i 1 -a 0 -S 0 -f 0 -m 1 -y {0 0} h -t 0.34 -s 1 -d 0 -p ack -e 40 -c 0 -i 1 -a 0 -S 0 -y {-1 -1} v -t 0.34999999999999998 sim_annotation 0.34999999999999998 4 Receive Ack_0 r -t 0.5416 -s 1 -d 0 -p ack -e 40 -c 0 -i 1 -a 0 -S 0 -y {0 0} f -t 0.54160000000000008 -s 0 -d 1 -n cwnd_ -a tcp -v 2.000000 -o 1.000000 -T v f -t 0.54160000000000008 -s 0 -d 1 -n cwnd_ -a tcp -v 1.000000 -o 2.000000 -T v + -t 0.5416 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -f 0 -m 0 -y {1 1} - -t 0.5416 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {1 1} h -t 0.5416 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {-1 -1} v -t 0.56000000000000005 sim_annotation 0.56000000000000005 5 Send Packet_1 r -t 0.7816 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {1 1} + -t 0.7816 -s 1 -d 0 -p ack -e 40 -c 0 -i 3 -a 0 -S 0 -y {1 1} - -t 0.7816 -s 1 -d 0 -p ack -e 40 -c 0 -i 3 -a 0 -S 0 -f 0 -m 1 -y {1 1} h -t 0.7816 -s 1 -d 0 -p ack -e 40 -c 0 -i 3 -a 0 -S 0 -y {-1 -1} v -t 0.79000000000000004 sim_annotation 0.79000000000000004 6 Receive Ack_1 r -t 0.9832 -s 1 -d 0 -p ack -e 40 -c 0 -i 3 -a 0 -S 0 -y {1 1} f -t 0.98320000000000007 -s 0 -d 1 -n cwnd_ -a tcp -v 2.000000 -o 1.000000 -T v f -t 0.98320000000000007 -s 0 -d 1 -n cwnd_ -a tcp -v 1.000000 -o 2.000000 -T v + -t 0.9832 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 4 -a 0 -S 0 -f 0 -m 0 -y {2 2} - -t 0.9832 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 4 -a 0 -S 0 -y {2 2} h -t 0.9832 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 4 -a 0 -S 0 -y {-1 -1} v -t 0.98999999999999999 sim_annotation 0.98999999999999999 7 Send Packet_2 r -t 1.2232 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 4 -a 0 -S 0 -y {2 2} + -t 1.2232 -s 1 -d 0 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -y {2 2} - -t 1.2232 -s 1 -d 0 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -f 0 -m 1 -y {2 2} h -t 1.2232 -s 1 -d 0 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -y {-1 -1} v -t 1.23 sim_annotation 1.23 8 Receive Ack_2 r -t 1.4248 -s 1 -d 0 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -y {2 2} f -t 1.42480000000000007 -s 0 -d 1 -n cwnd_ -a tcp -v 2.000000 -o 1.000000 -T v f -t 1.42480000000000007 -s 0 -d 1 -n cwnd_ -a tcp -v 1.000000 -o 2.000000 -T v + -t 1.4248 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 6 -a 0 -S 0 -f 0 -m 0 -y {3 3} - -t 1.4248 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 6 -a 0 -S 0 -y {3 3} h -t 1.4248 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 6 -a 0 -S 0 -y {-1 -1} v -t 1.4299999999999999 sim_annotation 1.4299999999999999 9 Send Packet_3 r -t 1.6648 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 6 -a 0 -S 0 -y {3 3} + -t 1.6648 -s 1 -d 0 -p ack -e 40 -c 0 -i 7 -a 0 -S 0 -y {3 3} - -t 1.6648 -s 1 -d 0 -p ack -e 40 -c 0 -i 7 -a 0 -S 0 -f 0 -m 1 -y {3 3} h -t 1.6648 -s 1 -d 0 -p ack -e 40 -c 0 -i 7 -a 0 -S 0 -y {-1 -1} v -t 1.6699999999999999 sim_annotation 1.6699999999999999 10 Receive Ack_3 r -t 1.8664 -s 1 -d 0 -p ack -e 40 -c 0 -i 7 -a 0 -S 0 -y {3 3} f -t 1.86640000000000006 -s 0 -d 1 -n cwnd_ -a tcp -v 2.000000 -o 1.000000 -T v f -t 1.86640000000000006 -s 0 -d 1 -n cwnd_ -a tcp -v 1.000000 -o 2.000000 -T v + -t 1.8664 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 8 -a 0 -S 0 -f 0 -m 0 -y {4 4} - -t 1.8664 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 8 -a 0 -S 0 -y {4 4} h -t 1.8664 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 8 -a 0 -S 0 -y {-1 -1} v -t 1.8799999999999999 sim_annotation 1.8799999999999999 11 Send Packet_4 r -t 2.1064 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 8 -a 0 -S 0 -y {4 4} + -t 2.1064 -s 1 -d 0 -p ack -e 40 -c 0 -i 9 -a 0 -S 0 -y {4 4} - -t 2.1064 -s 1 -d 0 -p ack -e 40 -c 0 -i 9 -a 0 -S 0 -f 0 -m 1 -y {4 4} h -t 2.1064 -s 1 -d 0 -p ack -e 40 -c 0 -i 9 -a 0 -S 0 -y {-1 -1} v -t 2.1099999999999999 sim_annotation 2.1099999999999999 12 Receive Ack_4 r -t 2.308 -s 1 -d 0 -p ack -e 40 -c 0 -i 9 -a 0 -S 0 -y {4 4} f -t 2.30800000000000027 -s 0 -d 1 -n cwnd_ -a tcp -v 2.000000 -o 1.000000 -T v f -t 2.30800000000000027 -s 0 -d 1 -n cwnd_ -a tcp -v 1.000000 -o 2.000000 -T v + -t 2.308 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 10 -a 0 -S 0 -f 0 -m 0 -y {5 5} - -t 2.308 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 10 -a 0 -S 0 -y {5 5} h -t 2.308 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 10 -a 0 -S 0 -y {-1 -1} v -t 2.3199999999999998 sim_annotation 2.3199999999999998 13 Send Packet_5 r -t 2.548 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 10 -a 0 -S 0 -y {5 5} + -t 2.548 -s 1 -d 0 -p ack -e 40 -c 0 -i 11 -a 0 -S 0 -y {5 5} - -t 2.548 -s 1 -d 0 -p ack -e 40 -c 0 -i 11 -a 0 -S 0 -f 0 -m 1 -y {5 5} h -t 2.548 -s 1 -d 0 -p ack -e 40 -c 0 -i 11 -a 0 -S 0 -y {-1 -1} v -t 2.5499999999999998 sim_annotation 2.5499999999999998 14 Receive Ack_5 r -t 2.7496 -s 1 -d 0 -p ack -e 40 -c 0 -i 11 -a 0 -S 0 -y {5 5} f -t 2.74960000000000049 -s 0 -d 1 -n cwnd_ -a tcp -v 2.000000 -o 1.000000 -T v f -t 2.74960000000000049 -s 0 -d 1 -n cwnd_ -a tcp -v 1.000000 -o 2.000000 -T v + -t 2.7496 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 12 -a 0 -S 0 -f 0 -m 0 -y {6 6} - -t 2.7496 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 12 -a 0 -S 0 -y {6 6} h -t 2.7496 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 12 -a 0 -S 0 -y {-1 -1} v -t 2.75 sim_annotation 2.75 15 Send Packet_6 r -t 2.9896 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 12 -a 0 -S 0 -y {6 6} + -t 2.9896 -s 1 -d 0 -p ack -e 40 -c 0 -i 13 -a 0 -S 0 -y {6 6} - -t 2.9896 -s 1 -d 0 -p ack -e 40 -c 0 -i 13 -a 0 -S 0 -f 0 -m 1 -y {6 6} h -t 2.9896 -s 1 -d 0 -p ack -e 40 -c 0 -i 13 -a 0 -S 0 -y {-1 -1} v -t 2.9900000000000002 sim_annotation 2.9900000000000002 16 Receive Ack_6 v -t 3.1000000000000001 sim_annotation 3.1000000000000001 17 FTP stops r -t 3.1912 -s 1 -d 0 -p ack -e 40 -c 0 -i 13 -a 0 -S 0 -y {6 6} nam-1.15/edu/A1-stop-n-wait.tcl0000664000076400007660000000376007024407013015001 0ustar tomhnsnam# stop and wait protocol in normal situation # features : labeling, annotation, nam-graph, and window size monitoring set ns [new Simulator] set n0 [$ns node] set n1 [$ns node] $ns at 0.0 "$n0 label Sender" $ns at 0.0 "$n1 label Receiver" set nf [open A1-stop-n-wait.nam w] $ns namtrace-all $nf set f [open A1-stop-n-wait.tr w] $ns trace-all $f $ns duplex-link $n0 $n1 0.2Mb 200ms DropTail $ns duplex-link-op $n0 $n1 orient right $ns queue-limit $n0 $n1 10 Agent/TCP set nam_tracevar_ true set tcp [new Agent/TCP] $tcp set window_ 1 $tcp set maxcwnd_ 1 $ns attach-agent $n0 $tcp set sink [new Agent/TCPSink] $ns attach-agent $n1 $sink $ns connect $tcp $sink set ftp [new Application/FTP] $ftp attach-agent $tcp $ns add-agent-trace $tcp tcp $ns monitor-agent-trace $tcp $tcp tracevar cwnd_ $ns at 0.1 "$ftp start" $ns at 3.0 "$ns detach-agent $n0 $tcp ; $ns detach-agent $n1 $sink" $ns at 3.5 "finish" $ns at 0.0 "$ns trace-annotate \"Stop and Wait with normal operation\"" $ns at 0.05 "$ns trace-annotate \"FTP starts at 0.1\"" $ns at 0.11 "$ns trace-annotate \"Send Packet_0\"" $ns at 0.35 "$ns trace-annotate \"Receive Ack_0\"" $ns at 0.56 "$ns trace-annotate \"Send Packet_1\"" $ns at 0.79 "$ns trace-annotate \"Receive Ack_1\"" $ns at 0.99 "$ns trace-annotate \"Send Packet_2\"" $ns at 1.23 "$ns trace-annotate \"Receive Ack_2 \"" $ns at 1.43 "$ns trace-annotate \"Send Packet_3\"" $ns at 1.67 "$ns trace-annotate \"Receive Ack_3\"" $ns at 1.88 "$ns trace-annotate \"Send Packet_4\"" $ns at 2.11 "$ns trace-annotate \"Receive Ack_4\"" $ns at 2.32 "$ns trace-annotate \"Send Packet_5\"" $ns at 2.55 "$ns trace-annotate \"Receive Ack_5 \"" $ns at 2.75 "$ns trace-annotate \"Send Packet_6\"" $ns at 2.99 "$ns trace-annotate \"Receive Ack_6\"" $ns at 3.1 "$ns trace-annotate \"FTP stops\"" proc finish {} { global ns nf $ns flush-trace close $nf puts "filtering..." exec tclsh ../bin/namfilter.tcl A1-stop-n-wait.nam puts "running nam..." exec nam A1-stop-n-wait.nam & exit 0 } $ns run nam-1.15/edu/A1-stop-n-wait.tr0000664000076400007660000000543606751715362014665 0ustar tomhnsnamv 0 eval {set sim_annotation {Stop and Wait with normal operation}} v 0.050000000000000003 eval {set sim_annotation {FTP starts at 0.1}} + 0.1 0 1 tcp 1000 ------- 0 0.0 1.0 0 0 - 0.1 0 1 tcp 1000 ------- 0 0.0 1.0 0 0 v 0.11 eval {set sim_annotation {Send Packet_0}} r 0.34 0 1 tcp 1000 ------- 0 0.0 1.0 0 0 + 0.34 1 0 ack 40 ------- 0 1.0 0.0 0 1 - 0.34 1 0 ack 40 ------- 0 1.0 0.0 0 1 v 0.34999999999999998 eval {set sim_annotation {Receive Ack_0}} r 0.5416 1 0 ack 40 ------- 0 1.0 0.0 0 1 + 0.5416 0 1 tcp 1000 ------- 0 0.0 1.0 1 2 - 0.5416 0 1 tcp 1000 ------- 0 0.0 1.0 1 2 v 0.56000000000000005 eval {set sim_annotation {Send Packet_1}} r 0.7816 0 1 tcp 1000 ------- 0 0.0 1.0 1 2 + 0.7816 1 0 ack 40 ------- 0 1.0 0.0 1 3 - 0.7816 1 0 ack 40 ------- 0 1.0 0.0 1 3 v 0.79000000000000004 eval {set sim_annotation {Receive Ack_1}} r 0.9832 1 0 ack 40 ------- 0 1.0 0.0 1 3 + 0.9832 0 1 tcp 1000 ------- 0 0.0 1.0 2 4 - 0.9832 0 1 tcp 1000 ------- 0 0.0 1.0 2 4 v 0.98999999999999999 eval {set sim_annotation {Send Packet_2}} r 1.2232 0 1 tcp 1000 ------- 0 0.0 1.0 2 4 + 1.2232 1 0 ack 40 ------- 0 1.0 0.0 2 5 - 1.2232 1 0 ack 40 ------- 0 1.0 0.0 2 5 v 1.23 eval {set sim_annotation {Receive Ack_2 }} r 1.4248 1 0 ack 40 ------- 0 1.0 0.0 2 5 + 1.4248 0 1 tcp 1000 ------- 0 0.0 1.0 3 6 - 1.4248 0 1 tcp 1000 ------- 0 0.0 1.0 3 6 v 1.4299999999999999 eval {set sim_annotation {Send Packet_3}} r 1.6648 0 1 tcp 1000 ------- 0 0.0 1.0 3 6 + 1.6648 1 0 ack 40 ------- 0 1.0 0.0 3 7 - 1.6648 1 0 ack 40 ------- 0 1.0 0.0 3 7 v 1.6699999999999999 eval {set sim_annotation {Receive Ack_3}} r 1.8664 1 0 ack 40 ------- 0 1.0 0.0 3 7 + 1.8664 0 1 tcp 1000 ------- 0 0.0 1.0 4 8 - 1.8664 0 1 tcp 1000 ------- 0 0.0 1.0 4 8 v 1.8799999999999999 eval {set sim_annotation {Send Packet_4}} r 2.1064 0 1 tcp 1000 ------- 0 0.0 1.0 4 8 + 2.1064 1 0 ack 40 ------- 0 1.0 0.0 4 9 - 2.1064 1 0 ack 40 ------- 0 1.0 0.0 4 9 v 2.1099999999999999 eval {set sim_annotation {Receive Ack_4}} r 2.308 1 0 ack 40 ------- 0 1.0 0.0 4 9 + 2.308 0 1 tcp 1000 ------- 0 0.0 1.0 5 10 - 2.308 0 1 tcp 1000 ------- 0 0.0 1.0 5 10 v 2.3199999999999998 eval {set sim_annotation {Send Packet_5}} r 2.548 0 1 tcp 1000 ------- 0 0.0 1.0 5 10 + 2.548 1 0 ack 40 ------- 0 1.0 0.0 5 11 - 2.548 1 0 ack 40 ------- 0 1.0 0.0 5 11 v 2.5499999999999998 eval {set sim_annotation {Receive Ack_5 }} r 2.7496 1 0 ack 40 ------- 0 1.0 0.0 5 11 + 2.7496 0 1 tcp 1000 ------- 0 0.0 1.0 6 12 - 2.7496 0 1 tcp 1000 ------- 0 0.0 1.0 6 12 v 2.75 eval {set sim_annotation {Send Packet_6}} r 2.9896 0 1 tcp 1000 ------- 0 0.0 1.0 6 12 + 2.9896 1 0 ack 40 ------- 0 1.0 0.0 6 13 - 2.9896 1 0 ack 40 ------- 0 1.0 0.0 6 13 v 2.9900000000000002 eval {set sim_annotation {Receive Ack_6}} v 3.1000000000000001 eval {set sim_annotation {FTP stops}} r 3.1912 1 0 ack 40 ------- 0 1.0 0.0 6 13 nam-1.15/edu/A2-stop-n-wait-loss.nam0000664000076400007660000001153306751715524015765 0ustar tomhnsnamV -t * -v 1.0a5 -a 1 -c 1 -F 2 -M 3 c -t * -i 0 -n black c -t * -i 1 -n red N -t * -S 0 -n {TCP session between node 0.0 and node 1.0} -p TCP -m {} N -t * -S 0 -h 4 N -t * -F 0 -M 0 -n tcp N -t * -F 1 -M 2 -n tcp_cong N -t * -F 0 -M 1 -n ack A -t * -n 1 -p 0 -o 255 -c 15 -a 1 A -t * -h 1 -m 127 -s 8 n -t * -a 0 -s 0 -S UP -v circle -c black n -t * -a 1 -s 1 -S UP -v circle -c black l -t * -s 0 -d 1 -S UP -r 200000 -D 0.20000000000000001 -c black -o right q -t * -s 1 -d 0 -a 0.5 q -t * -s 0 -d 1 -a 0.5 a -t 0.00000000000000000 -s 0 -d 1 -n tcp f -t 0.00000000000000000 -s 0 -d 1 -n cwnd_ -a tcp -v 1.000000 -T v v -t 0.00000000000000000 monitor_agent 0 tcp n -t 0 -s 0 -S DLABEL -l Sender -L "" n -t 0 -s 1 -S DLABEL -l Receiver -L "" v -t 0 sim_annotation 0 1 Stop and Wait with Packet Loss v -t 0.050000000000000003 sim_annotation 0.050000000000000003 2 FTP starts at 0.1 + -t 0.1 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -f 0 -m 0 -y {0 0} - -t 0.1 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} h -t 0.1 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {-1 -1} v -t 0.11 sim_annotation 0.11 3 Send Packet_0 r -t 0.34 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} + -t 0.34 -s 1 -d 0 -p ack -e 40 -c 0 -i 1 -a 0 -S 0 -y {0 0} - -t 0.34 -s 1 -d 0 -p ack -e 40 -c 0 -i 1 -a 0 -S 0 -f 0 -m 1 -y {0 0} h -t 0.34 -s 1 -d 0 -p ack -e 40 -c 0 -i 1 -a 0 -S 0 -y {-1 -1} v -t 0.34999999999999998 sim_annotation 0.34999999999999998 4 Receive Ack_0 r -t 0.5416 -s 1 -d 0 -p ack -e 40 -c 0 -i 1 -a 0 -S 0 -y {0 0} f -t 0.54160000000000008 -s 0 -d 1 -n cwnd_ -a tcp -v 2.000000 -o 1.000000 -T v f -t 0.54160000000000008 -s 0 -d 1 -n cwnd_ -a tcp -v 1.000000 -o 2.000000 -T v + -t 0.5416 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -f 0 -m 0 -y {1 1} - -t 0.5416 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {1 1} h -t 0.5416 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {-1 -1} v -t 0.56000000000000005 sim_annotation 0.56000000000000005 5 Send Packet_1 r -t 0.7816 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {1 1} + -t 0.7816 -s 1 -d 0 -p ack -e 40 -c 0 -i 3 -a 0 -S 0 -y {1 1} - -t 0.7816 -s 1 -d 0 -p ack -e 40 -c 0 -i 3 -a 0 -S 0 -f 0 -m 1 -y {1 1} h -t 0.7816 -s 1 -d 0 -p ack -e 40 -c 0 -i 3 -a 0 -S 0 -y {-1 -1} v -t 0.79000000000000004 sim_annotation 0.79000000000000004 6 Receive Ack_1 r -t 0.9832 -s 1 -d 0 -p ack -e 40 -c 0 -i 3 -a 0 -S 0 -y {1 1} f -t 0.98320000000000007 -s 0 -d 1 -n cwnd_ -a tcp -v 2.000000 -o 1.000000 -T v f -t 0.98320000000000007 -s 0 -d 1 -n cwnd_ -a tcp -v 1.000000 -o 2.000000 -T v + -t 0.9832 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 4 -a 0 -S 0 -f 0 -m 0 -y {2 2} - -t 0.9832 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 4 -a 0 -S 0 -y {2 2} h -t 0.9832 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 4 -a 0 -S 0 -y {-1 -1} v -t 0.98999999999999999 sim_annotation 0.98999999999999999 7 Send Packet_2 r -t 1.2232 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 4 -a 0 -S 0 -y {2 2} + -t 1.2232 -s 1 -d 0 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -y {2 2} - -t 1.2232 -s 1 -d 0 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -f 0 -m 1 -y {2 2} h -t 1.2232 -s 1 -d 0 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -y {-1 -1} v -t 1.23 sim_annotation 1.23 8 Receive Ack_2 r -t 1.4248 -s 1 -d 0 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -y {2 2} f -t 1.42480000000000007 -s 0 -d 1 -n cwnd_ -a tcp -v 2.000000 -o 1.000000 -T v f -t 1.42480000000000007 -s 0 -d 1 -n cwnd_ -a tcp -v 1.000000 -o 2.000000 -T v + -t 1.4248 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 6 -a 0 -S 0 -f 0 -m 0 -y {3 3} d -t 1.4248 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 6 -a 0 -S 0 -y {3 3} v -t 1.4299999999999999 sim_annotation 1.4299999999999999 9 Lost Packet_3 v -t 1.5 sim_annotation 1.5 10 Waiting for Ack_3 + -t 2.4248 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 7 -a 0 -S 0 -f 1 -m 2 -y {3 3} - -t 2.4248 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 7 -a 0 -S 0 -f 1 -y {3 3} h -t 2.4248 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 7 -a 0 -S 0 -f 1 -y {-1 -1} v -t 2.4300000000000002 sim_annotation 2.4300000000000002 11 Send Packet_3 again (cause of timeout) r -t 2.6648 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 7 -a 0 -S 0 -f 1 -y {3 3} + -t 2.6648 -s 1 -d 0 -p ack -e 40 -c 0 -i 8 -a 0 -S 0 -y {3 3} - -t 2.6648 -s 1 -d 0 -p ack -e 40 -c 0 -i 8 -a 0 -S 0 -f 0 -m 1 -y {3 3} h -t 2.6648 -s 1 -d 0 -p ack -e 40 -c 0 -i 8 -a 0 -S 0 -y {-1 -1} v -t 2.6699999999999999 sim_annotation 2.6699999999999999 12 Receive Ack_3 r -t 2.8664 -s 1 -d 0 -p ack -e 40 -c 0 -i 8 -a 0 -S 0 -y {3 3} f -t 2.86640000000000050 -s 0 -d 1 -n cwnd_ -a tcp -v 2.000000 -o 1.000000 -T v f -t 2.86640000000000050 -s 0 -d 1 -n cwnd_ -a tcp -v 1.000000 -o 2.000000 -T v + -t 2.8664 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 9 -a 0 -S 0 -f 0 -m 0 -y {4 4} - -t 2.8664 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 9 -a 0 -S 0 -y {4 4} h -t 2.8664 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 9 -a 0 -S 0 -y {-1 -1} v -t 2.8799999999999999 sim_annotation 2.8799999999999999 13 Send Packet_4 v -t 3.1000000000000001 sim_annotation 3.1000000000000001 14 FTP stops r -t 3.1064 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 9 -a 0 -S 0 -y {4 4} nam-1.15/edu/A2-stop-n-wait-loss.tcl0000664000076400007660000000377007024407014015762 0ustar tomhnsnam# stop and wait mechanism with packet loss # features : labeling, annotation, nam-graph, and window size monitoring set ns [new Simulator] set n0 [$ns node] set n1 [$ns node] $ns at 0.0 "$n0 label Sender" $ns at 0.0 "$n1 label Receiver" set nf [open A2-stop-n-wait-loss.nam w] $ns namtrace-all $nf set f [open A2-stop-n-wait-loss.tr w] $ns trace-all $f $ns duplex-link $n0 $n1 0.2Mb 200ms DropTail $ns duplex-link-op $n0 $n1 orient right $ns duplex-link-op $n0 $n1 queuePos 0.5 $ns queue-limit $n0 $n1 10 Agent/TCP set nam_tracevar_ true set tcp [new Agent/TCP] $tcp set window_ 1 $tcp set maxcwnd_ 1 $ns attach-agent $n0 $tcp set sink [new Agent/TCPSink] $ns attach-agent $n1 $sink $ns connect $tcp $sink set ftp [new Application/FTP] $ftp attach-agent $tcp $ns add-agent-trace $tcp tcp $ns monitor-agent-trace $tcp $tcp tracevar cwnd_ $ns at 0.1 "$ftp start" $ns at 1.3 "$ns queue-limit $n0 $n1 0" $ns at 1.5 "$ns queue-limit $n0 $n1 10" $ns at 3.0 "$ns detach-agent $n0 $tcp ; $ns detach-agent $n1 $sink" $ns at 3.5 "finish" $ns at 0.0 "$ns trace-annotate \"Stop and Wait with Packet Loss\"" $ns at 0.05 "$ns trace-annotate \"FTP starts at 0.1\"" $ns at 0.11 "$ns trace-annotate \"Send Packet_0\"" $ns at 0.35 "$ns trace-annotate \"Receive Ack_0\"" $ns at 0.56 "$ns trace-annotate \"Send Packet_1\"" $ns at 0.79 "$ns trace-annotate \"Receive Ack_1\"" $ns at 0.99 "$ns trace-annotate \"Send Packet_2\"" $ns at 1.23 "$ns trace-annotate \"Receive Ack_2 \"" $ns at 1.43 "$ns trace-annotate \"Lost Packet_3\"" $ns at 1.5 "$ns trace-annotate \"Waiting for Ack_3\"" $ns at 2.43 "$ns trace-annotate \"Send Packet_3 again (cause of timeout)\"" $ns at 2.67 "$ns trace-annotate \"Receive Ack_3\"" $ns at 2.88 "$ns trace-annotate \"Send Packet_4\"" $ns at 3.1 "$ns trace-annotate \"FTP stops\"" proc finish {} { global ns nf $ns flush-trace close $nf puts "filtering..." exec tclsh ../bin/namfilter.tcl A2-stop-n-wait-loss.nam puts "running nam..." exec nam A2-stop-n-wait-loss.nam & exit 0 } $ns run nam-1.15/edu/A2-stop-n-wait-loss.tr0000664000076400007660000000410406751715525015634 0ustar tomhnsnamv 0 eval {set sim_annotation {Stop and Wait with Packet Loss}} v 0.050000000000000003 eval {set sim_annotation {FTP starts at 0.1}} + 0.1 0 1 tcp 1000 ------- 0 0.0 1.0 0 0 - 0.1 0 1 tcp 1000 ------- 0 0.0 1.0 0 0 v 0.11 eval {set sim_annotation {Send Packet_0}} r 0.34 0 1 tcp 1000 ------- 0 0.0 1.0 0 0 + 0.34 1 0 ack 40 ------- 0 1.0 0.0 0 1 - 0.34 1 0 ack 40 ------- 0 1.0 0.0 0 1 v 0.34999999999999998 eval {set sim_annotation {Receive Ack_0}} r 0.5416 1 0 ack 40 ------- 0 1.0 0.0 0 1 + 0.5416 0 1 tcp 1000 ------- 0 0.0 1.0 1 2 - 0.5416 0 1 tcp 1000 ------- 0 0.0 1.0 1 2 v 0.56000000000000005 eval {set sim_annotation {Send Packet_1}} r 0.7816 0 1 tcp 1000 ------- 0 0.0 1.0 1 2 + 0.7816 1 0 ack 40 ------- 0 1.0 0.0 1 3 - 0.7816 1 0 ack 40 ------- 0 1.0 0.0 1 3 v 0.79000000000000004 eval {set sim_annotation {Receive Ack_1}} r 0.9832 1 0 ack 40 ------- 0 1.0 0.0 1 3 + 0.9832 0 1 tcp 1000 ------- 0 0.0 1.0 2 4 - 0.9832 0 1 tcp 1000 ------- 0 0.0 1.0 2 4 v 0.98999999999999999 eval {set sim_annotation {Send Packet_2}} r 1.2232 0 1 tcp 1000 ------- 0 0.0 1.0 2 4 + 1.2232 1 0 ack 40 ------- 0 1.0 0.0 2 5 - 1.2232 1 0 ack 40 ------- 0 1.0 0.0 2 5 v 1.23 eval {set sim_annotation {Receive Ack_2 }} r 1.4248 1 0 ack 40 ------- 0 1.0 0.0 2 5 + 1.4248 0 1 tcp 1000 ------- 0 0.0 1.0 3 6 d 1.4248 0 1 tcp 1000 ------- 0 0.0 1.0 3 6 v 1.4299999999999999 eval {set sim_annotation {Lost Packet_3}} v 1.5 eval {set sim_annotation {Waiting for Ack_3}} + 2.4248 0 1 tcp 1000 ---A--- 0 0.0 1.0 3 7 - 2.4248 0 1 tcp 1000 ---A--- 0 0.0 1.0 3 7 v 2.4300000000000002 eval {set sim_annotation {Send Packet_3 again (cause of timeout)}} r 2.6648 0 1 tcp 1000 ---A--- 0 0.0 1.0 3 7 + 2.6648 1 0 ack 40 ------- 0 1.0 0.0 3 8 - 2.6648 1 0 ack 40 ------- 0 1.0 0.0 3 8 v 2.6699999999999999 eval {set sim_annotation {Receive Ack_3}} r 2.8664 1 0 ack 40 ------- 0 1.0 0.0 3 8 + 2.8664 0 1 tcp 1000 ------- 0 0.0 1.0 4 9 - 2.8664 0 1 tcp 1000 ------- 0 0.0 1.0 4 9 v 2.8799999999999999 eval {set sim_annotation {Send Packet_4}} v 3.1000000000000001 eval {set sim_annotation {FTP stops}} r 3.1064 0 1 tcp 1000 ------- 0 0.0 1.0 4 9 nam-1.15/edu/A3-sliding-window.nam0000664000076400007660000005424106751715525015570 0ustar tomhnsnamf -t 0.00000000000000000 -s 0 -d 1 -n cwnd_ -a (null) -v 4.000000 -T v V -t * -v 1.0a5 -a 0 A -t * -n 1 -p 0 -o 255 -c 15 -a 1 A -t * -h 1 -m 127 -s 8 n -t * -a 0 -s 0 -S UP -v circle -c black n -t * -a 1 -s 1 -S UP -v circle -c black l -t * -s 0 -d 1 -S UP -r 200000 -D 0.20000000000000001 -c black -o right a -t 0.00000000000000000 -s 0 -d 1 -n tcp f -t 0.00000000000000000 -s 0 -d 1 -n cwnd_ -a tcp -v 4.000000 -o 4.000000 -T v v -t 0.00000000000000000 monitor_agent 0 tcp n -t 0 -s 0 -S DLABEL -l Sender -L "" n -t 0 -s 1 -S DLABEL -l Receiver -L "" v -t 0 sim_annotation 0 1 Sliding Window with window size 4 (normal operation) v -t 0.050000000000000003 sim_annotation 0.050000000000000003 2 FTP starts at 0.1 + -t 0.1 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0 1.0 0 ------- null} - -t 0.1 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0 1.0 0 ------- null} h -t 0.1 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0 1.0 -1 ------- null} + -t 0.1 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 1 -a 0 -x {0.0 1.0 1 ------- null} + -t 0.1 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0 1.0 2 ------- null} + -t 0.1 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0 1.0 3 ------- null} v -t 0.11 sim_annotation 0.11 3 Send Packet_0,1,2,3 - -t 0.14 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 1 -a 0 -x {0.0 1.0 1 ------- null} h -t 0.14 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 1 -a 0 -x {0.0 1.0 -1 ------- null} - -t 0.18 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0 1.0 2 ------- null} h -t 0.18 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0 1.0 -1 ------- null} - -t 0.22 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0 1.0 3 ------- null} h -t 0.22 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0 1.0 -1 ------- null} v -t 0.34000000000000002 sim_annotation 0.34000000000000002 4 Receive Ack_0,1,2,3 r -t 0.34 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0 1.0 0 ------- null} + -t 0.34 -s 1 -d 0 -p ack -e 40 -c 0 -i 4 -a 0 -x {1.0 0.0 0 ------- null} - -t 0.34 -s 1 -d 0 -p ack -e 40 -c 0 -i 4 -a 0 -x {1.0 0.0 0 ------- null} h -t 0.34 -s 1 -d 0 -p ack -e 40 -c 0 -i 4 -a 0 -x {1.0 0.0 -1 ------- null} r -t 0.38 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 1 -a 0 -x {0.0 1.0 1 ------- null} + -t 0.38 -s 1 -d 0 -p ack -e 40 -c 0 -i 5 -a 0 -x {1.0 0.0 1 ------- null} - -t 0.38 -s 1 -d 0 -p ack -e 40 -c 0 -i 5 -a 0 -x {1.0 0.0 1 ------- null} h -t 0.38 -s 1 -d 0 -p ack -e 40 -c 0 -i 5 -a 0 -x {1.0 0.0 -1 ------- null} r -t 0.42 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0 1.0 2 ------- null} + -t 0.42 -s 1 -d 0 -p ack -e 40 -c 0 -i 6 -a 0 -x {1.0 0.0 2 ------- null} - -t 0.42 -s 1 -d 0 -p ack -e 40 -c 0 -i 6 -a 0 -x {1.0 0.0 2 ------- null} h -t 0.42 -s 1 -d 0 -p ack -e 40 -c 0 -i 6 -a 0 -x {1.0 0.0 -1 ------- null} r -t 0.46 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0 1.0 3 ------- null} + -t 0.46 -s 1 -d 0 -p ack -e 40 -c 0 -i 7 -a 0 -x {1.0 0.0 3 ------- null} - -t 0.46 -s 1 -d 0 -p ack -e 40 -c 0 -i 7 -a 0 -x {1.0 0.0 3 ------- null} h -t 0.46 -s 1 -d 0 -p ack -e 40 -c 0 -i 7 -a 0 -x {1.0 0.0 -1 ------- null} r -t 0.5416 -s 1 -d 0 -p ack -e 40 -c 0 -i 4 -a 0 -x {1.0 0.0 0 ------- null} f -t 0.54160000000000008 -s 0 -d 1 -n cwnd_ -a tcp -v 5.000000 -o 4.000000 -T v f -t 0.54160000000000008 -s 0 -d 1 -n cwnd_ -a tcp -v 4.000000 -o 5.000000 -T v + -t 0.5416 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {0.0 1.0 4 ------- null} - -t 0.5416 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {0.0 1.0 4 ------- null} h -t 0.5416 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {0.0 1.0 -1 ------- null} v -t 0.56000000000000005 sim_annotation 0.56000000000000005 5 Send Packet_4,5,6,7 r -t 0.5816 -s 1 -d 0 -p ack -e 40 -c 0 -i 5 -a 0 -x {1.0 0.0 1 ------- null} f -t 0.58160000000000001 -s 0 -d 1 -n cwnd_ -a tcp -v 5.000000 -o 4.000000 -T v f -t 0.58160000000000001 -s 0 -d 1 -n cwnd_ -a tcp -v 4.000000 -o 5.000000 -T v + -t 0.5816 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {0.0 1.0 5 ------- null} - -t 0.5816 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {0.0 1.0 5 ------- null} h -t 0.5816 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {0.0 1.0 -1 ------- null} r -t 0.6216 -s 1 -d 0 -p ack -e 40 -c 0 -i 6 -a 0 -x {1.0 0.0 2 ------- null} f -t 0.62160000000000004 -s 0 -d 1 -n cwnd_ -a tcp -v 5.000000 -o 4.000000 -T v f -t 0.62160000000000004 -s 0 -d 1 -n cwnd_ -a tcp -v 4.000000 -o 5.000000 -T v + -t 0.6216 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 10 -a 0 -x {0.0 1.0 6 ------- null} - -t 0.6216 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 10 -a 0 -x {0.0 1.0 6 ------- null} h -t 0.6216 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 10 -a 0 -x {0.0 1.0 -1 ------- null} r -t 0.6616 -s 1 -d 0 -p ack -e 40 -c 0 -i 7 -a 0 -x {1.0 0.0 3 ------- null} f -t 0.66160000000000008 -s 0 -d 1 -n cwnd_ -a tcp -v 5.000000 -o 4.000000 -T v f -t 0.66160000000000008 -s 0 -d 1 -n cwnd_ -a tcp -v 4.000000 -o 5.000000 -T v + -t 0.6616 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 11 -a 0 -x {0.0 1.0 7 ------- null} - -t 0.6616 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 11 -a 0 -x {0.0 1.0 7 ------- null} h -t 0.6616 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 11 -a 0 -x {0.0 1.0 -1 ------- null} r -t 0.7816 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {0.0 1.0 4 ------- null} + -t 0.7816 -s 1 -d 0 -p ack -e 40 -c 0 -i 12 -a 0 -x {1.0 0.0 4 ------- null} - -t 0.7816 -s 1 -d 0 -p ack -e 40 -c 0 -i 12 -a 0 -x {1.0 0.0 4 ------- null} h -t 0.7816 -s 1 -d 0 -p ack -e 40 -c 0 -i 12 -a 0 -x {1.0 0.0 -1 ------- null} v -t 0.79000000000000004 sim_annotation 0.79000000000000004 6 Receive Ack_4,5,6,7 r -t 0.8216 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {0.0 1.0 5 ------- null} + -t 0.8216 -s 1 -d 0 -p ack -e 40 -c 0 -i 13 -a 0 -x {1.0 0.0 5 ------- null} - -t 0.8216 -s 1 -d 0 -p ack -e 40 -c 0 -i 13 -a 0 -x {1.0 0.0 5 ------- null} h -t 0.8216 -s 1 -d 0 -p ack -e 40 -c 0 -i 13 -a 0 -x {1.0 0.0 -1 ------- null} r -t 0.8616 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 10 -a 0 -x {0.0 1.0 6 ------- null} + -t 0.8616 -s 1 -d 0 -p ack -e 40 -c 0 -i 14 -a 0 -x {1.0 0.0 6 ------- null} - -t 0.8616 -s 1 -d 0 -p ack -e 40 -c 0 -i 14 -a 0 -x {1.0 0.0 6 ------- null} h -t 0.8616 -s 1 -d 0 -p ack -e 40 -c 0 -i 14 -a 0 -x {1.0 0.0 -1 ------- null} r -t 0.9016 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 11 -a 0 -x {0.0 1.0 7 ------- null} + -t 0.9016 -s 1 -d 0 -p ack -e 40 -c 0 -i 15 -a 0 -x {1.0 0.0 7 ------- null} - -t 0.9016 -s 1 -d 0 -p ack -e 40 -c 0 -i 15 -a 0 -x {1.0 0.0 7 ------- null} h -t 0.9016 -s 1 -d 0 -p ack -e 40 -c 0 -i 15 -a 0 -x {1.0 0.0 -1 ------- null} r -t 0.9832 -s 1 -d 0 -p ack -e 40 -c 0 -i 12 -a 0 -x {1.0 0.0 4 ------- null} f -t 0.98320000000000007 -s 0 -d 1 -n cwnd_ -a tcp -v 5.000000 -o 4.000000 -T v f -t 0.98320000000000007 -s 0 -d 1 -n cwnd_ -a tcp -v 4.000000 -o 5.000000 -T v + -t 0.9832 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {0.0 1.0 8 ------- null} - -t 0.9832 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {0.0 1.0 8 ------- null} h -t 0.9832 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {0.0 1.0 -1 ------- null} v -t 0.98999999999999999 sim_annotation 0.98999999999999999 7 Send Packet_8,9,10,11 r -t 1.0232 -s 1 -d 0 -p ack -e 40 -c 0 -i 13 -a 0 -x {1.0 0.0 5 ------- null} f -t 1.02320000000000011 -s 0 -d 1 -n cwnd_ -a tcp -v 5.000000 -o 4.000000 -T v f -t 1.02320000000000011 -s 0 -d 1 -n cwnd_ -a tcp -v 4.000000 -o 5.000000 -T v + -t 1.0232 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {0.0 1.0 9 ------- null} - -t 1.0232 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {0.0 1.0 9 ------- null} h -t 1.0232 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {0.0 1.0 -1 ------- null} r -t 1.0632 -s 1 -d 0 -p ack -e 40 -c 0 -i 14 -a 0 -x {1.0 0.0 6 ------- null} f -t 1.06320000000000014 -s 0 -d 1 -n cwnd_ -a tcp -v 5.000000 -o 4.000000 -T v f -t 1.06320000000000014 -s 0 -d 1 -n cwnd_ -a tcp -v 4.000000 -o 5.000000 -T v + -t 1.0632 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {0.0 1.0 10 ------- null} - -t 1.0632 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {0.0 1.0 10 ------- null} h -t 1.0632 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {0.0 1.0 -1 ------- null} r -t 1.1032 -s 1 -d 0 -p ack -e 40 -c 0 -i 15 -a 0 -x {1.0 0.0 7 ------- null} f -t 1.10320000000000018 -s 0 -d 1 -n cwnd_ -a tcp -v 5.000000 -o 4.000000 -T v f -t 1.10320000000000018 -s 0 -d 1 -n cwnd_ -a tcp -v 4.000000 -o 5.000000 -T v + -t 1.1032 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {0.0 1.0 11 ------- null} - -t 1.1032 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {0.0 1.0 11 ------- null} h -t 1.1032 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {0.0 1.0 -1 ------- null} r -t 1.2232 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {0.0 1.0 8 ------- null} + -t 1.2232 -s 1 -d 0 -p ack -e 40 -c 0 -i 20 -a 0 -x {1.0 0.0 8 ------- null} - -t 1.2232 -s 1 -d 0 -p ack -e 40 -c 0 -i 20 -a 0 -x {1.0 0.0 8 ------- null} h -t 1.2232 -s 1 -d 0 -p ack -e 40 -c 0 -i 20 -a 0 -x {1.0 0.0 -1 ------- null} v -t 1.23 sim_annotation 1.23 8 Receive Ack_8,9,10,11 r -t 1.2632 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {0.0 1.0 9 ------- null} + -t 1.2632 -s 1 -d 0 -p ack -e 40 -c 0 -i 21 -a 0 -x {1.0 0.0 9 ------- null} - -t 1.2632 -s 1 -d 0 -p ack -e 40 -c 0 -i 21 -a 0 -x {1.0 0.0 9 ------- null} h -t 1.2632 -s 1 -d 0 -p ack -e 40 -c 0 -i 21 -a 0 -x {1.0 0.0 -1 ------- null} r -t 1.3032 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {0.0 1.0 10 ------- null} + -t 1.3032 -s 1 -d 0 -p ack -e 40 -c 0 -i 22 -a 0 -x {1.0 0.0 10 ------- null} - -t 1.3032 -s 1 -d 0 -p ack -e 40 -c 0 -i 22 -a 0 -x {1.0 0.0 10 ------- null} h -t 1.3032 -s 1 -d 0 -p ack -e 40 -c 0 -i 22 -a 0 -x {1.0 0.0 -1 ------- null} r -t 1.3432 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {0.0 1.0 11 ------- null} + -t 1.3432 -s 1 -d 0 -p ack -e 40 -c 0 -i 23 -a 0 -x {1.0 0.0 11 ------- null} - -t 1.3432 -s 1 -d 0 -p ack -e 40 -c 0 -i 23 -a 0 -x {1.0 0.0 11 ------- null} h -t 1.3432 -s 1 -d 0 -p ack -e 40 -c 0 -i 23 -a 0 -x {1.0 0.0 -1 ------- null} r -t 1.4248 -s 1 -d 0 -p ack -e 40 -c 0 -i 20 -a 0 -x {1.0 0.0 8 ------- null} f -t 1.42480000000000007 -s 0 -d 1 -n cwnd_ -a tcp -v 5.000000 -o 4.000000 -T v f -t 1.42480000000000007 -s 0 -d 1 -n cwnd_ -a tcp -v 4.000000 -o 5.000000 -T v + -t 1.4248 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 24 -a 0 -x {0.0 1.0 12 ------- null} - -t 1.4248 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 24 -a 0 -x {0.0 1.0 12 ------- null} h -t 1.4248 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 24 -a 0 -x {0.0 1.0 -1 ------- null} v -t 1.4299999999999999 sim_annotation 1.4299999999999999 9 Send Packet_12,13,14,15 r -t 1.4648 -s 1 -d 0 -p ack -e 40 -c 0 -i 21 -a 0 -x {1.0 0.0 9 ------- null} f -t 1.46480000000000010 -s 0 -d 1 -n cwnd_ -a tcp -v 5.000000 -o 4.000000 -T v f -t 1.46480000000000010 -s 0 -d 1 -n cwnd_ -a tcp -v 4.000000 -o 5.000000 -T v + -t 1.4648 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 25 -a 0 -x {0.0 1.0 13 ------- null} - -t 1.4648 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 25 -a 0 -x {0.0 1.0 13 ------- null} h -t 1.4648 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 25 -a 0 -x {0.0 1.0 -1 ------- null} r -t 1.5048 -s 1 -d 0 -p ack -e 40 -c 0 -i 22 -a 0 -x {1.0 0.0 10 ------- null} f -t 1.50480000000000014 -s 0 -d 1 -n cwnd_ -a tcp -v 5.000000 -o 4.000000 -T v f -t 1.50480000000000014 -s 0 -d 1 -n cwnd_ -a tcp -v 4.000000 -o 5.000000 -T v + -t 1.5048 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 26 -a 0 -x {0.0 1.0 14 ------- null} - -t 1.5048 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 26 -a 0 -x {0.0 1.0 14 ------- null} h -t 1.5048 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 26 -a 0 -x {0.0 1.0 -1 ------- null} r -t 1.5448 -s 1 -d 0 -p ack -e 40 -c 0 -i 23 -a 0 -x {1.0 0.0 11 ------- null} f -t 1.54480000000000017 -s 0 -d 1 -n cwnd_ -a tcp -v 5.000000 -o 4.000000 -T v f -t 1.54480000000000017 -s 0 -d 1 -n cwnd_ -a tcp -v 4.000000 -o 5.000000 -T v + -t 1.5448 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 27 -a 0 -x {0.0 1.0 15 ------- null} - -t 1.5448 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 27 -a 0 -x {0.0 1.0 15 ------- null} h -t 1.5448 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 27 -a 0 -x {0.0 1.0 -1 ------- null} r -t 1.6648 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 24 -a 0 -x {0.0 1.0 12 ------- null} + -t 1.6648 -s 1 -d 0 -p ack -e 40 -c 0 -i 28 -a 0 -x {1.0 0.0 12 ------- null} - -t 1.6648 -s 1 -d 0 -p ack -e 40 -c 0 -i 28 -a 0 -x {1.0 0.0 12 ------- null} h -t 1.6648 -s 1 -d 0 -p ack -e 40 -c 0 -i 28 -a 0 -x {1.0 0.0 -1 ------- null} v -t 1.6699999999999999 sim_annotation 1.6699999999999999 10 Receive Ack_12,13,14,15 r -t 1.7048 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 25 -a 0 -x {0.0 1.0 13 ------- null} + -t 1.7048 -s 1 -d 0 -p ack -e 40 -c 0 -i 29 -a 0 -x {1.0 0.0 13 ------- null} - -t 1.7048 -s 1 -d 0 -p ack -e 40 -c 0 -i 29 -a 0 -x {1.0 0.0 13 ------- null} h -t 1.7048 -s 1 -d 0 -p ack -e 40 -c 0 -i 29 -a 0 -x {1.0 0.0 -1 ------- null} r -t 1.7448 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 26 -a 0 -x {0.0 1.0 14 ------- null} + -t 1.7448 -s 1 -d 0 -p ack -e 40 -c 0 -i 30 -a 0 -x {1.0 0.0 14 ------- null} - -t 1.7448 -s 1 -d 0 -p ack -e 40 -c 0 -i 30 -a 0 -x {1.0 0.0 14 ------- null} h -t 1.7448 -s 1 -d 0 -p ack -e 40 -c 0 -i 30 -a 0 -x {1.0 0.0 -1 ------- null} r -t 1.7848 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 27 -a 0 -x {0.0 1.0 15 ------- null} + -t 1.7848 -s 1 -d 0 -p ack -e 40 -c 0 -i 31 -a 0 -x {1.0 0.0 15 ------- null} - -t 1.7848 -s 1 -d 0 -p ack -e 40 -c 0 -i 31 -a 0 -x {1.0 0.0 15 ------- null} h -t 1.7848 -s 1 -d 0 -p ack -e 40 -c 0 -i 31 -a 0 -x {1.0 0.0 -1 ------- null} r -t 1.8664 -s 1 -d 0 -p ack -e 40 -c 0 -i 28 -a 0 -x {1.0 0.0 12 ------- null} f -t 1.86640000000000006 -s 0 -d 1 -n cwnd_ -a tcp -v 5.000000 -o 4.000000 -T v f -t 1.86640000000000006 -s 0 -d 1 -n cwnd_ -a tcp -v 4.000000 -o 5.000000 -T v + -t 1.8664 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {0.0 1.0 16 ------- null} - -t 1.8664 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {0.0 1.0 16 ------- null} h -t 1.8664 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {0.0 1.0 -1 ------- null} v -t 1.8799999999999999 sim_annotation 1.8799999999999999 11 Send Packet_16,17,18,19 r -t 1.9064 -s 1 -d 0 -p ack -e 40 -c 0 -i 29 -a 0 -x {1.0 0.0 13 ------- null} f -t 1.90640000000000009 -s 0 -d 1 -n cwnd_ -a tcp -v 5.000000 -o 4.000000 -T v f -t 1.90640000000000009 -s 0 -d 1 -n cwnd_ -a tcp -v 4.000000 -o 5.000000 -T v + -t 1.9064 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {0.0 1.0 17 ------- null} - -t 1.9064 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {0.0 1.0 17 ------- null} h -t 1.9064 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {0.0 1.0 -1 ------- null} r -t 1.9464 -s 1 -d 0 -p ack -e 40 -c 0 -i 30 -a 0 -x {1.0 0.0 14 ------- null} f -t 1.94640000000000013 -s 0 -d 1 -n cwnd_ -a tcp -v 5.000000 -o 4.000000 -T v f -t 1.94640000000000013 -s 0 -d 1 -n cwnd_ -a tcp -v 4.000000 -o 5.000000 -T v + -t 1.9464 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {0.0 1.0 18 ------- null} - -t 1.9464 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {0.0 1.0 18 ------- null} h -t 1.9464 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {0.0 1.0 -1 ------- null} r -t 1.9864 -s 1 -d 0 -p ack -e 40 -c 0 -i 31 -a 0 -x {1.0 0.0 15 ------- null} f -t 1.98640000000000017 -s 0 -d 1 -n cwnd_ -a tcp -v 5.000000 -o 4.000000 -T v f -t 1.98640000000000017 -s 0 -d 1 -n cwnd_ -a tcp -v 4.000000 -o 5.000000 -T v + -t 1.9864 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {0.0 1.0 19 ------- null} - -t 1.9864 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {0.0 1.0 19 ------- null} h -t 1.9864 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {0.0 1.0 -1 ------- null} r -t 2.1064 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {0.0 1.0 16 ------- null} + -t 2.1064 -s 1 -d 0 -p ack -e 40 -c 0 -i 36 -a 0 -x {1.0 0.0 16 ------- null} - -t 2.1064 -s 1 -d 0 -p ack -e 40 -c 0 -i 36 -a 0 -x {1.0 0.0 16 ------- null} h -t 2.1064 -s 1 -d 0 -p ack -e 40 -c 0 -i 36 -a 0 -x {1.0 0.0 -1 ------- null} v -t 2.1099999999999999 sim_annotation 2.1099999999999999 12 Receive Ack_16,17,18,19 r -t 2.1464 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {0.0 1.0 17 ------- null} + -t 2.1464 -s 1 -d 0 -p ack -e 40 -c 0 -i 37 -a 0 -x {1.0 0.0 17 ------- null} - -t 2.1464 -s 1 -d 0 -p ack -e 40 -c 0 -i 37 -a 0 -x {1.0 0.0 17 ------- null} h -t 2.1464 -s 1 -d 0 -p ack -e 40 -c 0 -i 37 -a 0 -x {1.0 0.0 -1 ------- null} r -t 2.1864 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {0.0 1.0 18 ------- null} + -t 2.1864 -s 1 -d 0 -p ack -e 40 -c 0 -i 38 -a 0 -x {1.0 0.0 18 ------- null} - -t 2.1864 -s 1 -d 0 -p ack -e 40 -c 0 -i 38 -a 0 -x {1.0 0.0 18 ------- null} h -t 2.1864 -s 1 -d 0 -p ack -e 40 -c 0 -i 38 -a 0 -x {1.0 0.0 -1 ------- null} r -t 2.2264 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {0.0 1.0 19 ------- null} + -t 2.2264 -s 1 -d 0 -p ack -e 40 -c 0 -i 39 -a 0 -x {1.0 0.0 19 ------- null} - -t 2.2264 -s 1 -d 0 -p ack -e 40 -c 0 -i 39 -a 0 -x {1.0 0.0 19 ------- null} h -t 2.2264 -s 1 -d 0 -p ack -e 40 -c 0 -i 39 -a 0 -x {1.0 0.0 -1 ------- null} r -t 2.308 -s 1 -d 0 -p ack -e 40 -c 0 -i 36 -a 0 -x {1.0 0.0 16 ------- null} f -t 2.30800000000000027 -s 0 -d 1 -n cwnd_ -a tcp -v 5.000000 -o 4.000000 -T v f -t 2.30800000000000027 -s 0 -d 1 -n cwnd_ -a tcp -v 4.000000 -o 5.000000 -T v + -t 2.308 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {0.0 1.0 20 ------- null} - -t 2.308 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {0.0 1.0 20 ------- null} h -t 2.308 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {0.0 1.0 -1 ------- null} v -t 2.3199999999999998 sim_annotation 2.3199999999999998 13 Send Packet_20,21,22,23 r -t 2.348 -s 1 -d 0 -p ack -e 40 -c 0 -i 37 -a 0 -x {1.0 0.0 17 ------- null} f -t 2.34800000000000031 -s 0 -d 1 -n cwnd_ -a tcp -v 5.000000 -o 4.000000 -T v f -t 2.34800000000000031 -s 0 -d 1 -n cwnd_ -a tcp -v 4.000000 -o 5.000000 -T v + -t 2.348 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {0.0 1.0 21 ------- null} - -t 2.348 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {0.0 1.0 21 ------- null} h -t 2.348 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {0.0 1.0 -1 ------- null} r -t 2.388 -s 1 -d 0 -p ack -e 40 -c 0 -i 38 -a 0 -x {1.0 0.0 18 ------- null} f -t 2.38800000000000034 -s 0 -d 1 -n cwnd_ -a tcp -v 5.000000 -o 4.000000 -T v f -t 2.38800000000000034 -s 0 -d 1 -n cwnd_ -a tcp -v 4.000000 -o 5.000000 -T v + -t 2.388 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {0.0 1.0 22 ------- null} - -t 2.388 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {0.0 1.0 22 ------- null} h -t 2.388 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {0.0 1.0 -1 ------- null} r -t 2.428 -s 1 -d 0 -p ack -e 40 -c 0 -i 39 -a 0 -x {1.0 0.0 19 ------- null} f -t 2.42800000000000038 -s 0 -d 1 -n cwnd_ -a tcp -v 5.000000 -o 4.000000 -T v f -t 2.42800000000000038 -s 0 -d 1 -n cwnd_ -a tcp -v 4.000000 -o 5.000000 -T v + -t 2.428 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {0.0 1.0 23 ------- null} - -t 2.428 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {0.0 1.0 23 ------- null} h -t 2.428 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {0.0 1.0 -1 ------- null} r -t 2.548 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {0.0 1.0 20 ------- null} + -t 2.548 -s 1 -d 0 -p ack -e 40 -c 0 -i 44 -a 0 -x {1.0 0.0 20 ------- null} - -t 2.548 -s 1 -d 0 -p ack -e 40 -c 0 -i 44 -a 0 -x {1.0 0.0 20 ------- null} h -t 2.548 -s 1 -d 0 -p ack -e 40 -c 0 -i 44 -a 0 -x {1.0 0.0 -1 ------- null} v -t 2.5600000000000001 sim_annotation 2.5600000000000001 14 Receive Ack_24,25,26,27 r -t 2.588 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {0.0 1.0 21 ------- null} + -t 2.588 -s 1 -d 0 -p ack -e 40 -c 0 -i 45 -a 0 -x {1.0 0.0 21 ------- null} - -t 2.588 -s 1 -d 0 -p ack -e 40 -c 0 -i 45 -a 0 -x {1.0 0.0 21 ------- null} h -t 2.588 -s 1 -d 0 -p ack -e 40 -c 0 -i 45 -a 0 -x {1.0 0.0 -1 ------- null} r -t 2.628 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {0.0 1.0 22 ------- null} + -t 2.628 -s 1 -d 0 -p ack -e 40 -c 0 -i 46 -a 0 -x {1.0 0.0 22 ------- null} - -t 2.628 -s 1 -d 0 -p ack -e 40 -c 0 -i 46 -a 0 -x {1.0 0.0 22 ------- null} h -t 2.628 -s 1 -d 0 -p ack -e 40 -c 0 -i 46 -a 0 -x {1.0 0.0 -1 ------- null} r -t 2.668 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {0.0 1.0 23 ------- null} + -t 2.668 -s 1 -d 0 -p ack -e 40 -c 0 -i 47 -a 0 -x {1.0 0.0 23 ------- null} - -t 2.668 -s 1 -d 0 -p ack -e 40 -c 0 -i 47 -a 0 -x {1.0 0.0 23 ------- null} h -t 2.668 -s 1 -d 0 -p ack -e 40 -c 0 -i 47 -a 0 -x {1.0 0.0 -1 ------- null} r -t 2.7496 -s 1 -d 0 -p ack -e 40 -c 0 -i 44 -a 0 -x {1.0 0.0 20 ------- null} f -t 2.74960000000000049 -s 0 -d 1 -n cwnd_ -a tcp -v 5.000000 -o 4.000000 -T v f -t 2.74960000000000049 -s 0 -d 1 -n cwnd_ -a tcp -v 4.000000 -o 5.000000 -T v + -t 2.7496 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 48 -a 0 -x {0.0 1.0 24 ------- null} - -t 2.7496 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 48 -a 0 -x {0.0 1.0 24 ------- null} h -t 2.7496 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 48 -a 0 -x {0.0 1.0 -1 ------- null} v -t 2.7599999999999998 sim_annotation 2.7599999999999998 15 Send Packet_28,29,30,31 r -t 2.7896 -s 1 -d 0 -p ack -e 40 -c 0 -i 45 -a 0 -x {1.0 0.0 21 ------- null} f -t 2.78960000000000052 -s 0 -d 1 -n cwnd_ -a tcp -v 5.000000 -o 4.000000 -T v f -t 2.78960000000000052 -s 0 -d 1 -n cwnd_ -a tcp -v 4.000000 -o 5.000000 -T v + -t 2.7896 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 49 -a 0 -x {0.0 1.0 25 ------- null} - -t 2.7896 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 49 -a 0 -x {0.0 1.0 25 ------- null} h -t 2.7896 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 49 -a 0 -x {0.0 1.0 -1 ------- null} r -t 2.8296 -s 1 -d 0 -p ack -e 40 -c 0 -i 46 -a 0 -x {1.0 0.0 22 ------- null} f -t 2.82960000000000056 -s 0 -d 1 -n cwnd_ -a tcp -v 5.000000 -o 4.000000 -T v f -t 2.82960000000000056 -s 0 -d 1 -n cwnd_ -a tcp -v 4.000000 -o 5.000000 -T v + -t 2.8296 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 50 -a 0 -x {0.0 1.0 26 ------- null} - -t 2.8296 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 50 -a 0 -x {0.0 1.0 26 ------- null} h -t 2.8296 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 50 -a 0 -x {0.0 1.0 -1 ------- null} r -t 2.8696 -s 1 -d 0 -p ack -e 40 -c 0 -i 47 -a 0 -x {1.0 0.0 23 ------- null} f -t 2.86960000000000059 -s 0 -d 1 -n cwnd_ -a tcp -v 5.000000 -o 4.000000 -T v f -t 2.86960000000000059 -s 0 -d 1 -n cwnd_ -a tcp -v 4.000000 -o 5.000000 -T v + -t 2.8696 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 51 -a 0 -x {0.0 1.0 27 ------- null} - -t 2.8696 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 51 -a 0 -x {0.0 1.0 27 ------- null} h -t 2.8696 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 51 -a 0 -x {0.0 1.0 -1 ------- null} r -t 2.9896 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 48 -a 0 -x {0.0 1.0 24 ------- null} + -t 2.9896 -s 1 -d 0 -p ack -e 40 -c 0 -i 52 -a 0 -x {1.0 0.0 24 ------- null} - -t 2.9896 -s 1 -d 0 -p ack -e 40 -c 0 -i 52 -a 0 -x {1.0 0.0 24 ------- null} h -t 2.9896 -s 1 -d 0 -p ack -e 40 -c 0 -i 52 -a 0 -x {1.0 0.0 -1 ------- null} v -t 3 sim_annotation 3 16 Receive Ack_28 r -t 3.0296 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 49 -a 0 -x {0.0 1.0 25 ------- null} r -t 3.0696 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 50 -a 0 -x {0.0 1.0 26 ------- null} v -t 3.1000000000000001 sim_annotation 3.1000000000000001 17 FTP stops r -t 3.1096 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 51 -a 0 -x {0.0 1.0 27 ------- null} r -t 3.1912 -s 1 -d 0 -p ack -e 40 -c 0 -i 52 -a 0 -x {1.0 0.0 24 ------- null} nam-1.15/edu/A3-sliding-window.tcl0000664000076400007660000000422407024407014015554 0ustar tomhnsnam# sliding window mechanism with some features # such as labeling, annotation, nam-graph, and window size monitoring set ns [new Simulator] set n0 [$ns node] set n1 [$ns node] $ns at 0.0 "$n0 label Sender" $ns at 0.0 "$n1 label Receiver" #set nf [open A3-sliding-window.nam w] #$ns namtrace-all $nf #set f [open A3-sliding-window.tr w] #$ns trace-all $f $ns duplex-link $n0 $n1 0.2Mb 200ms DropTail $ns duplex-link-op $n0 $n1 orient right $ns queue-limit $n0 $n1 10 Agent/TCP set nam_tracevar_ true set tcp [new Agent/TCP] $tcp set windowInit_ 4 $tcp set maxcwnd_ 4 $ns attach-agent $n0 $tcp set sink [new Agent/TCPSink] $ns attach-agent $n1 $sink $ns connect $tcp $sink set ftp [new Application/FTP] $ftp attach-agent $tcp $ns add-agent-trace $tcp tcp $ns monitor-agent-trace $tcp $tcp tracevar cwnd_ $ns at 0.1 "$ftp start" $ns at 3.0 "$ns detach-agent $n0 $tcp ; $ns detach-agent $n1 $sink" $ns at 3.5 "finish" $ns at 0.0 "$ns trace-annotate \"Sliding Window with window size 4 (normal operation)\"" $ns at 0.05 "$ns trace-annotate \"FTP starts at 0.1\"" $ns at 0.11 "$ns trace-annotate \"Send Packet_0,1,2,3\"" $ns at 0.34 "$ns trace-annotate \"Receive Ack_0,1,2,3\"" $ns at 0.56 "$ns trace-annotate \"Send Packet_4,5,6,7\"" $ns at 0.79 "$ns trace-annotate \"Receive Ack_4,5,6,7\"" $ns at 0.99 "$ns trace-annotate \"Send Packet_8,9,10,11\"" $ns at 1.23 "$ns trace-annotate \"Receive Ack_8,9,10,11 \"" $ns at 1.43 "$ns trace-annotate \"Send Packet_12,13,14,15\"" $ns at 1.67 "$ns trace-annotate \"Receive Ack_12,13,14,15\"" $ns at 1.88 "$ns trace-annotate \"Send Packet_16,17,18,19\"" $ns at 2.11 "$ns trace-annotate \"Receive Ack_16,17,18,19\"" $ns at 2.32 "$ns trace-annotate \"Send Packet_20,21,22,23\"" $ns at 2.56 "$ns trace-annotate \"Receive Ack_24,25,26,27\"" $ns at 2.76 "$ns trace-annotate \"Send Packet_28,29,30,31\"" $ns at 3.00 "$ns trace-annotate \"Receive Ack_28\"" $ns at 3.1 "$ns trace-annotate \"FTP stops\"" proc finish {} { global ns $ns flush-trace # puts "filtering..." # exec tclsh ../bin/namfilter.tcl A3-sliding-window.nam puts "running nam..." exec nam A3-sliding-window.nam & exit 0 } $ns run nam-1.15/edu/A3-sliding-window.tr0000664000076400007660000001775306751715526015452 0ustar tomhnsnamv 0 eval {set sim_annotation {Sliding Window with window size 4 (normal operation)}} v 0.050000000000000003 eval {set sim_annotation {FTP starts at 0.1}} + 0.1 0 1 tcp 1000 ------- 0 0.0 1.0 0 0 - 0.1 0 1 tcp 1000 ------- 0 0.0 1.0 0 0 + 0.1 0 1 tcp 1000 ------- 0 0.0 1.0 1 1 + 0.1 0 1 tcp 1000 ------- 0 0.0 1.0 2 2 + 0.1 0 1 tcp 1000 ------- 0 0.0 1.0 3 3 v 0.11 eval {set sim_annotation {Send Packet_0,1,2,3}} - 0.14 0 1 tcp 1000 ------- 0 0.0 1.0 1 1 - 0.18 0 1 tcp 1000 ------- 0 0.0 1.0 2 2 - 0.22 0 1 tcp 1000 ------- 0 0.0 1.0 3 3 v 0.34000000000000002 eval {set sim_annotation {Receive Ack_0,1,2,3}} r 0.34 0 1 tcp 1000 ------- 0 0.0 1.0 0 0 + 0.34 1 0 ack 40 ------- 0 1.0 0.0 0 4 - 0.34 1 0 ack 40 ------- 0 1.0 0.0 0 4 r 0.38 0 1 tcp 1000 ------- 0 0.0 1.0 1 1 + 0.38 1 0 ack 40 ------- 0 1.0 0.0 1 5 - 0.38 1 0 ack 40 ------- 0 1.0 0.0 1 5 r 0.42 0 1 tcp 1000 ------- 0 0.0 1.0 2 2 + 0.42 1 0 ack 40 ------- 0 1.0 0.0 2 6 - 0.42 1 0 ack 40 ------- 0 1.0 0.0 2 6 r 0.46 0 1 tcp 1000 ------- 0 0.0 1.0 3 3 + 0.46 1 0 ack 40 ------- 0 1.0 0.0 3 7 - 0.46 1 0 ack 40 ------- 0 1.0 0.0 3 7 r 0.5416 1 0 ack 40 ------- 0 1.0 0.0 0 4 + 0.5416 0 1 tcp 1000 ------- 0 0.0 1.0 4 8 - 0.5416 0 1 tcp 1000 ------- 0 0.0 1.0 4 8 v 0.56000000000000005 eval {set sim_annotation {Send Packet_4,5,6,7}} r 0.5816 1 0 ack 40 ------- 0 1.0 0.0 1 5 + 0.5816 0 1 tcp 1000 ------- 0 0.0 1.0 5 9 - 0.5816 0 1 tcp 1000 ------- 0 0.0 1.0 5 9 r 0.6216 1 0 ack 40 ------- 0 1.0 0.0 2 6 + 0.6216 0 1 tcp 1000 ------- 0 0.0 1.0 6 10 - 0.6216 0 1 tcp 1000 ------- 0 0.0 1.0 6 10 r 0.6616 1 0 ack 40 ------- 0 1.0 0.0 3 7 + 0.6616 0 1 tcp 1000 ------- 0 0.0 1.0 7 11 - 0.6616 0 1 tcp 1000 ------- 0 0.0 1.0 7 11 r 0.7816 0 1 tcp 1000 ------- 0 0.0 1.0 4 8 + 0.7816 1 0 ack 40 ------- 0 1.0 0.0 4 12 - 0.7816 1 0 ack 40 ------- 0 1.0 0.0 4 12 v 0.79000000000000004 eval {set sim_annotation {Receive Ack_4,5,6,7}} r 0.8216 0 1 tcp 1000 ------- 0 0.0 1.0 5 9 + 0.8216 1 0 ack 40 ------- 0 1.0 0.0 5 13 - 0.8216 1 0 ack 40 ------- 0 1.0 0.0 5 13 r 0.8616 0 1 tcp 1000 ------- 0 0.0 1.0 6 10 + 0.8616 1 0 ack 40 ------- 0 1.0 0.0 6 14 - 0.8616 1 0 ack 40 ------- 0 1.0 0.0 6 14 r 0.9016 0 1 tcp 1000 ------- 0 0.0 1.0 7 11 + 0.9016 1 0 ack 40 ------- 0 1.0 0.0 7 15 - 0.9016 1 0 ack 40 ------- 0 1.0 0.0 7 15 r 0.9832 1 0 ack 40 ------- 0 1.0 0.0 4 12 + 0.9832 0 1 tcp 1000 ------- 0 0.0 1.0 8 16 - 0.9832 0 1 tcp 1000 ------- 0 0.0 1.0 8 16 v 0.98999999999999999 eval {set sim_annotation {Send Packet_8,9,10,11}} r 1.0232 1 0 ack 40 ------- 0 1.0 0.0 5 13 + 1.0232 0 1 tcp 1000 ------- 0 0.0 1.0 9 17 - 1.0232 0 1 tcp 1000 ------- 0 0.0 1.0 9 17 r 1.0632 1 0 ack 40 ------- 0 1.0 0.0 6 14 + 1.0632 0 1 tcp 1000 ------- 0 0.0 1.0 10 18 - 1.0632 0 1 tcp 1000 ------- 0 0.0 1.0 10 18 r 1.1032 1 0 ack 40 ------- 0 1.0 0.0 7 15 + 1.1032 0 1 tcp 1000 ------- 0 0.0 1.0 11 19 - 1.1032 0 1 tcp 1000 ------- 0 0.0 1.0 11 19 r 1.2232 0 1 tcp 1000 ------- 0 0.0 1.0 8 16 + 1.2232 1 0 ack 40 ------- 0 1.0 0.0 8 20 - 1.2232 1 0 ack 40 ------- 0 1.0 0.0 8 20 v 1.23 eval {set sim_annotation {Receive Ack_8,9,10,11 }} r 1.2632 0 1 tcp 1000 ------- 0 0.0 1.0 9 17 + 1.2632 1 0 ack 40 ------- 0 1.0 0.0 9 21 - 1.2632 1 0 ack 40 ------- 0 1.0 0.0 9 21 r 1.3032 0 1 tcp 1000 ------- 0 0.0 1.0 10 18 + 1.3032 1 0 ack 40 ------- 0 1.0 0.0 10 22 - 1.3032 1 0 ack 40 ------- 0 1.0 0.0 10 22 r 1.3432 0 1 tcp 1000 ------- 0 0.0 1.0 11 19 + 1.3432 1 0 ack 40 ------- 0 1.0 0.0 11 23 - 1.3432 1 0 ack 40 ------- 0 1.0 0.0 11 23 r 1.4248 1 0 ack 40 ------- 0 1.0 0.0 8 20 + 1.4248 0 1 tcp 1000 ------- 0 0.0 1.0 12 24 - 1.4248 0 1 tcp 1000 ------- 0 0.0 1.0 12 24 v 1.4299999999999999 eval {set sim_annotation {Send Packet_12,13,14,15}} r 1.4648 1 0 ack 40 ------- 0 1.0 0.0 9 21 + 1.4648 0 1 tcp 1000 ------- 0 0.0 1.0 13 25 - 1.4648 0 1 tcp 1000 ------- 0 0.0 1.0 13 25 r 1.5048 1 0 ack 40 ------- 0 1.0 0.0 10 22 + 1.5048 0 1 tcp 1000 ------- 0 0.0 1.0 14 26 - 1.5048 0 1 tcp 1000 ------- 0 0.0 1.0 14 26 r 1.5448 1 0 ack 40 ------- 0 1.0 0.0 11 23 + 1.5448 0 1 tcp 1000 ------- 0 0.0 1.0 15 27 - 1.5448 0 1 tcp 1000 ------- 0 0.0 1.0 15 27 r 1.6648 0 1 tcp 1000 ------- 0 0.0 1.0 12 24 + 1.6648 1 0 ack 40 ------- 0 1.0 0.0 12 28 - 1.6648 1 0 ack 40 ------- 0 1.0 0.0 12 28 v 1.6699999999999999 eval {set sim_annotation {Receive Ack_12,13,14,15}} r 1.7048 0 1 tcp 1000 ------- 0 0.0 1.0 13 25 + 1.7048 1 0 ack 40 ------- 0 1.0 0.0 13 29 - 1.7048 1 0 ack 40 ------- 0 1.0 0.0 13 29 r 1.7448 0 1 tcp 1000 ------- 0 0.0 1.0 14 26 + 1.7448 1 0 ack 40 ------- 0 1.0 0.0 14 30 - 1.7448 1 0 ack 40 ------- 0 1.0 0.0 14 30 r 1.7848 0 1 tcp 1000 ------- 0 0.0 1.0 15 27 + 1.7848 1 0 ack 40 ------- 0 1.0 0.0 15 31 - 1.7848 1 0 ack 40 ------- 0 1.0 0.0 15 31 r 1.8664 1 0 ack 40 ------- 0 1.0 0.0 12 28 + 1.8664 0 1 tcp 1000 ------- 0 0.0 1.0 16 32 - 1.8664 0 1 tcp 1000 ------- 0 0.0 1.0 16 32 v 1.8799999999999999 eval {set sim_annotation {Send Packet_16,17,18,19}} r 1.9064 1 0 ack 40 ------- 0 1.0 0.0 13 29 + 1.9064 0 1 tcp 1000 ------- 0 0.0 1.0 17 33 - 1.9064 0 1 tcp 1000 ------- 0 0.0 1.0 17 33 r 1.9464 1 0 ack 40 ------- 0 1.0 0.0 14 30 + 1.9464 0 1 tcp 1000 ------- 0 0.0 1.0 18 34 - 1.9464 0 1 tcp 1000 ------- 0 0.0 1.0 18 34 r 1.9864 1 0 ack 40 ------- 0 1.0 0.0 15 31 + 1.9864 0 1 tcp 1000 ------- 0 0.0 1.0 19 35 - 1.9864 0 1 tcp 1000 ------- 0 0.0 1.0 19 35 r 2.1064 0 1 tcp 1000 ------- 0 0.0 1.0 16 32 + 2.1064 1 0 ack 40 ------- 0 1.0 0.0 16 36 - 2.1064 1 0 ack 40 ------- 0 1.0 0.0 16 36 v 2.1099999999999999 eval {set sim_annotation {Receive Ack_16,17,18,19}} r 2.1464 0 1 tcp 1000 ------- 0 0.0 1.0 17 33 + 2.1464 1 0 ack 40 ------- 0 1.0 0.0 17 37 - 2.1464 1 0 ack 40 ------- 0 1.0 0.0 17 37 r 2.1864 0 1 tcp 1000 ------- 0 0.0 1.0 18 34 + 2.1864 1 0 ack 40 ------- 0 1.0 0.0 18 38 - 2.1864 1 0 ack 40 ------- 0 1.0 0.0 18 38 r 2.2264 0 1 tcp 1000 ------- 0 0.0 1.0 19 35 + 2.2264 1 0 ack 40 ------- 0 1.0 0.0 19 39 - 2.2264 1 0 ack 40 ------- 0 1.0 0.0 19 39 r 2.308 1 0 ack 40 ------- 0 1.0 0.0 16 36 + 2.308 0 1 tcp 1000 ------- 0 0.0 1.0 20 40 - 2.308 0 1 tcp 1000 ------- 0 0.0 1.0 20 40 v 2.3199999999999998 eval {set sim_annotation {Send Packet_20,21,22,23}} r 2.348 1 0 ack 40 ------- 0 1.0 0.0 17 37 + 2.348 0 1 tcp 1000 ------- 0 0.0 1.0 21 41 - 2.348 0 1 tcp 1000 ------- 0 0.0 1.0 21 41 r 2.388 1 0 ack 40 ------- 0 1.0 0.0 18 38 + 2.388 0 1 tcp 1000 ------- 0 0.0 1.0 22 42 - 2.388 0 1 tcp 1000 ------- 0 0.0 1.0 22 42 r 2.428 1 0 ack 40 ------- 0 1.0 0.0 19 39 + 2.428 0 1 tcp 1000 ------- 0 0.0 1.0 23 43 - 2.428 0 1 tcp 1000 ------- 0 0.0 1.0 23 43 r 2.548 0 1 tcp 1000 ------- 0 0.0 1.0 20 40 + 2.548 1 0 ack 40 ------- 0 1.0 0.0 20 44 - 2.548 1 0 ack 40 ------- 0 1.0 0.0 20 44 v 2.5600000000000001 eval {set sim_annotation {Receive Ack_24,25,26,27}} r 2.588 0 1 tcp 1000 ------- 0 0.0 1.0 21 41 + 2.588 1 0 ack 40 ------- 0 1.0 0.0 21 45 - 2.588 1 0 ack 40 ------- 0 1.0 0.0 21 45 r 2.628 0 1 tcp 1000 ------- 0 0.0 1.0 22 42 + 2.628 1 0 ack 40 ------- 0 1.0 0.0 22 46 - 2.628 1 0 ack 40 ------- 0 1.0 0.0 22 46 r 2.668 0 1 tcp 1000 ------- 0 0.0 1.0 23 43 + 2.668 1 0 ack 40 ------- 0 1.0 0.0 23 47 - 2.668 1 0 ack 40 ------- 0 1.0 0.0 23 47 r 2.7496 1 0 ack 40 ------- 0 1.0 0.0 20 44 + 2.7496 0 1 tcp 1000 ------- 0 0.0 1.0 24 48 - 2.7496 0 1 tcp 1000 ------- 0 0.0 1.0 24 48 v 2.7599999999999998 eval {set sim_annotation {Send Packet_28,29,30,31}} r 2.7896 1 0 ack 40 ------- 0 1.0 0.0 21 45 + 2.7896 0 1 tcp 1000 ------- 0 0.0 1.0 25 49 - 2.7896 0 1 tcp 1000 ------- 0 0.0 1.0 25 49 r 2.8296 1 0 ack 40 ------- 0 1.0 0.0 22 46 + 2.8296 0 1 tcp 1000 ------- 0 0.0 1.0 26 50 - 2.8296 0 1 tcp 1000 ------- 0 0.0 1.0 26 50 r 2.8696 1 0 ack 40 ------- 0 1.0 0.0 23 47 + 2.8696 0 1 tcp 1000 ------- 0 0.0 1.0 27 51 - 2.8696 0 1 tcp 1000 ------- 0 0.0 1.0 27 51 r 2.9896 0 1 tcp 1000 ------- 0 0.0 1.0 24 48 + 2.9896 1 0 ack 40 ------- 0 1.0 0.0 24 52 - 2.9896 1 0 ack 40 ------- 0 1.0 0.0 24 52 v 3 eval {set sim_annotation {Receive Ack_28}} r 3.0296 0 1 tcp 1000 ------- 0 0.0 1.0 25 49 r 3.0696 0 1 tcp 1000 ------- 0 0.0 1.0 26 50 v 3.1000000000000001 eval {set sim_annotation {FTP stops}} r 3.1096 0 1 tcp 1000 ------- 0 0.0 1.0 27 51 r 3.1912 1 0 ack 40 ------- 0 1.0 0.0 24 52 nam-1.15/edu/A4-slow-start.nam0000664000076400007660000006256506751715526014763 0ustar tomhnsnamV -t * -v 1.0a5 -a 1 -c 1 -F 1 -M 2 c -t * -i 0 -n black N -t * -S 0 -n {TCP session between node 0.0 and node 1.0} -p TCP -m {} N -t * -S 0 -h 37 N -t * -F 0 -M 0 -n tcp N -t * -F 0 -M 1 -n ack A -t * -n 1 -p 0 -o 255 -c 15 -a 1 A -t * -h 1 -m 127 -s 8 n -t * -a 0 -s 0 -S UP -v circle -c black n -t * -a 1 -s 1 -S UP -v circle -c black l -t * -s 0 -d 1 -S UP -r 200000 -D 0.20000000000000001 -c black -o right a -t 0.00000000000000000 -s 0 -d 1 -n tcp f -t 0.00000000000000000 -s 0 -d 1 -n cwnd_ -a tcp -v 1.000000 -T v v -t 0.00000000000000000 monitor_agent 0 tcp n -t 0 -s 0 -S DLABEL -l Sender -L "" n -t 0 -s 1 -S DLABEL -l Receiver -L "" v -t 0 sim_annotation 0 1 Slow Start with maximum window size 8 (normal operation) v -t 0.050000000000000003 sim_annotation 0.050000000000000003 2 FTP starts at 0.1 + -t 0.1 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -f 0 -m 0 -y {0 0} - -t 0.1 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} h -t 0.1 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {-1 -1} v -t 0.11 sim_annotation 0.11 3 Send Packet_0 : Initial window size = 1 v -t 0.34000000000000002 sim_annotation 0.34000000000000002 4 Receive Ack_0 r -t 0.34 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} + -t 0.34 -s 1 -d 0 -p ack -e 40 -c 0 -i 1 -a 0 -S 0 -y {0 0} - -t 0.34 -s 1 -d 0 -p ack -e 40 -c 0 -i 1 -a 0 -S 0 -f 0 -m 1 -y {0 0} h -t 0.34 -s 1 -d 0 -p ack -e 40 -c 0 -i 1 -a 0 -S 0 -y {-1 -1} r -t 0.5416 -s 1 -d 0 -p ack -e 40 -c 0 -i 1 -a 0 -S 0 -y {0 0} f -t 0.54160000000000008 -s 0 -d 1 -n cwnd_ -a tcp -v 2.000000 -o 1.000000 -T v + -t 0.5416 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -f 0 -m 0 -y {1 1} - -t 0.5416 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {1 1} h -t 0.5416 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {-1 -1} + -t 0.5416 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -f 0 -m 0 -y {2 2} v -t 0.56000000000000005 sim_annotation 0.56000000000000005 5 Send Packet_1,2 : Increase window size to 2 - -t 0.5816 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {2 2} h -t 0.5816 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {-1 -1} r -t 0.7816 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {1 1} + -t 0.7816 -s 1 -d 0 -p ack -e 40 -c 0 -i 4 -a 0 -S 0 -y {1 1} - -t 0.7816 -s 1 -d 0 -p ack -e 40 -c 0 -i 4 -a 0 -S 0 -f 0 -m 1 -y {1 1} h -t 0.7816 -s 1 -d 0 -p ack -e 40 -c 0 -i 4 -a 0 -S 0 -y {-1 -1} v -t 0.79000000000000004 sim_annotation 0.79000000000000004 6 Receive Ack_1,2 r -t 0.8216 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {2 2} + -t 0.8216 -s 1 -d 0 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -y {2 2} - -t 0.8216 -s 1 -d 0 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -f 0 -m 1 -y {2 2} h -t 0.8216 -s 1 -d 0 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -y {-1 -1} r -t 0.9832 -s 1 -d 0 -p ack -e 40 -c 0 -i 4 -a 0 -S 0 -y {1 1} f -t 0.98320000000000007 -s 0 -d 1 -n cwnd_ -a tcp -v 3.000000 -o 2.000000 -T v + -t 0.9832 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 6 -a 0 -S 0 -f 0 -m 0 -y {3 3} - -t 0.9832 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 6 -a 0 -S 0 -y {3 3} h -t 0.9832 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 6 -a 0 -S 0 -y {-1 -1} + -t 0.9832 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 7 -a 0 -S 0 -f 0 -m 0 -y {4 4} v -t 0.98999999999999999 sim_annotation 0.98999999999999999 7 Send Packet_3,4,5,6 : Increase window size to 4 r -t 1.0232 -s 1 -d 0 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -y {2 2} f -t 1.02320000000000011 -s 0 -d 1 -n cwnd_ -a tcp -v 4.000000 -o 3.000000 -T v + -t 1.0232 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 8 -a 0 -S 0 -f 0 -m 0 -y {5 5} + -t 1.0232 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 9 -a 0 -S 0 -f 0 -m 0 -y {6 6} - -t 1.0232 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 7 -a 0 -S 0 -y {4 4} h -t 1.0232 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 7 -a 0 -S 0 -y {-1 -1} - -t 1.0632 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 8 -a 0 -S 0 -y {5 5} h -t 1.0632 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 8 -a 0 -S 0 -y {-1 -1} - -t 1.1032 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 9 -a 0 -S 0 -y {6 6} h -t 1.1032 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 9 -a 0 -S 0 -y {-1 -1} r -t 1.2232 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 6 -a 0 -S 0 -y {3 3} + -t 1.2232 -s 1 -d 0 -p ack -e 40 -c 0 -i 10 -a 0 -S 0 -y {3 3} - -t 1.2232 -s 1 -d 0 -p ack -e 40 -c 0 -i 10 -a 0 -S 0 -f 0 -m 1 -y {3 3} h -t 1.2232 -s 1 -d 0 -p ack -e 40 -c 0 -i 10 -a 0 -S 0 -y {-1 -1} v -t 1.23 sim_annotation 1.23 8 Receive Ack_3,4,5,6 r -t 1.2632 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 7 -a 0 -S 0 -y {4 4} + -t 1.2632 -s 1 -d 0 -p ack -e 40 -c 0 -i 11 -a 0 -S 0 -y {4 4} - -t 1.2632 -s 1 -d 0 -p ack -e 40 -c 0 -i 11 -a 0 -S 0 -f 0 -m 1 -y {4 4} h -t 1.2632 -s 1 -d 0 -p ack -e 40 -c 0 -i 11 -a 0 -S 0 -y {-1 -1} r -t 1.3032 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 8 -a 0 -S 0 -y {5 5} + -t 1.3032 -s 1 -d 0 -p ack -e 40 -c 0 -i 12 -a 0 -S 0 -y {5 5} - -t 1.3032 -s 1 -d 0 -p ack -e 40 -c 0 -i 12 -a 0 -S 0 -f 0 -m 1 -y {5 5} h -t 1.3032 -s 1 -d 0 -p ack -e 40 -c 0 -i 12 -a 0 -S 0 -y {-1 -1} r -t 1.3432 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 9 -a 0 -S 0 -y {6 6} + -t 1.3432 -s 1 -d 0 -p ack -e 40 -c 0 -i 13 -a 0 -S 0 -y {6 6} - -t 1.3432 -s 1 -d 0 -p ack -e 40 -c 0 -i 13 -a 0 -S 0 -f 0 -m 1 -y {6 6} h -t 1.3432 -s 1 -d 0 -p ack -e 40 -c 0 -i 13 -a 0 -S 0 -y {-1 -1} r -t 1.4248 -s 1 -d 0 -p ack -e 40 -c 0 -i 10 -a 0 -S 0 -y {3 3} f -t 1.42480000000000007 -s 0 -d 1 -n cwnd_ -a tcp -v 5.000000 -o 4.000000 -T v + -t 1.4248 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 14 -a 0 -S 0 -f 0 -m 0 -y {7 7} - -t 1.4248 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 14 -a 0 -S 0 -y {7 7} h -t 1.4248 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 14 -a 0 -S 0 -y {-1 -1} + -t 1.4248 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 15 -a 0 -S 0 -f 0 -m 0 -y {8 8} v -t 1.4299999999999999 sim_annotation 1.4299999999999999 9 Send Packet_7,8,9,10,11,12,13,14 : Increase window size to 8 r -t 1.4648 -s 1 -d 0 -p ack -e 40 -c 0 -i 11 -a 0 -S 0 -y {4 4} f -t 1.46480000000000010 -s 0 -d 1 -n cwnd_ -a tcp -v 6.000000 -o 5.000000 -T v + -t 1.4648 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 16 -a 0 -S 0 -f 0 -m 0 -y {9 9} + -t 1.4648 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 17 -a 0 -S 0 -f 0 -m 0 -y {10 10} - -t 1.4648 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 15 -a 0 -S 0 -y {8 8} h -t 1.4648 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 15 -a 0 -S 0 -y {-1 -1} r -t 1.5048 -s 1 -d 0 -p ack -e 40 -c 0 -i 12 -a 0 -S 0 -y {5 5} f -t 1.50480000000000014 -s 0 -d 1 -n cwnd_ -a tcp -v 7.000000 -o 6.000000 -T v + -t 1.5048 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -f 0 -m 0 -y {11 11} + -t 1.5048 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 19 -a 0 -S 0 -f 0 -m 0 -y {12 12} - -t 1.5048 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 16 -a 0 -S 0 -y {9 9} h -t 1.5048 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 16 -a 0 -S 0 -y {-1 -1} r -t 1.5448 -s 1 -d 0 -p ack -e 40 -c 0 -i 13 -a 0 -S 0 -y {6 6} f -t 1.54480000000000017 -s 0 -d 1 -n cwnd_ -a tcp -v 8.000000 -o 7.000000 -T v + -t 1.5448 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 20 -a 0 -S 0 -f 0 -m 0 -y {13 13} + -t 1.5448 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 21 -a 0 -S 0 -f 0 -m 0 -y {14 14} - -t 1.5448 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 17 -a 0 -S 0 -y {10 10} h -t 1.5448 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 17 -a 0 -S 0 -y {-1 -1} - -t 1.5848 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {11 11} h -t 1.5848 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {-1 -1} - -t 1.6248 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 19 -a 0 -S 0 -y {12 12} h -t 1.6248 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 19 -a 0 -S 0 -y {-1 -1} r -t 1.6648 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 14 -a 0 -S 0 -y {7 7} + -t 1.6648 -s 1 -d 0 -p ack -e 40 -c 0 -i 22 -a 0 -S 0 -y {7 7} - -t 1.6648 -s 1 -d 0 -p ack -e 40 -c 0 -i 22 -a 0 -S 0 -f 0 -m 1 -y {7 7} h -t 1.6648 -s 1 -d 0 -p ack -e 40 -c 0 -i 22 -a 0 -S 0 -y {-1 -1} - -t 1.6648 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 20 -a 0 -S 0 -y {13 13} h -t 1.6648 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 20 -a 0 -S 0 -y {-1 -1} v -t 1.6699999999999999 sim_annotation 1.6699999999999999 10 Receive Ack_7,8,9,10,11,12,13,14 r -t 1.7048 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 15 -a 0 -S 0 -y {8 8} + -t 1.7048 -s 1 -d 0 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {8 8} - -t 1.7048 -s 1 -d 0 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -f 0 -m 1 -y {8 8} h -t 1.7048 -s 1 -d 0 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {-1 -1} - -t 1.7048 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 21 -a 0 -S 0 -y {14 14} h -t 1.7048 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 21 -a 0 -S 0 -y {-1 -1} r -t 1.7448 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 16 -a 0 -S 0 -y {9 9} + -t 1.7448 -s 1 -d 0 -p ack -e 40 -c 0 -i 24 -a 0 -S 0 -y {9 9} - -t 1.7448 -s 1 -d 0 -p ack -e 40 -c 0 -i 24 -a 0 -S 0 -f 0 -m 1 -y {9 9} h -t 1.7448 -s 1 -d 0 -p ack -e 40 -c 0 -i 24 -a 0 -S 0 -y {-1 -1} r -t 1.7848 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 17 -a 0 -S 0 -y {10 10} + -t 1.7848 -s 1 -d 0 -p ack -e 40 -c 0 -i 25 -a 0 -S 0 -y {10 10} - -t 1.7848 -s 1 -d 0 -p ack -e 40 -c 0 -i 25 -a 0 -S 0 -f 0 -m 1 -y {10 10} h -t 1.7848 -s 1 -d 0 -p ack -e 40 -c 0 -i 25 -a 0 -S 0 -y {-1 -1} r -t 1.8248 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {11 11} + -t 1.8248 -s 1 -d 0 -p ack -e 40 -c 0 -i 26 -a 0 -S 0 -y {11 11} - -t 1.8248 -s 1 -d 0 -p ack -e 40 -c 0 -i 26 -a 0 -S 0 -f 0 -m 1 -y {11 11} h -t 1.8248 -s 1 -d 0 -p ack -e 40 -c 0 -i 26 -a 0 -S 0 -y {-1 -1} r -t 1.8648 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 19 -a 0 -S 0 -y {12 12} + -t 1.8648 -s 1 -d 0 -p ack -e 40 -c 0 -i 27 -a 0 -S 0 -y {12 12} - -t 1.8648 -s 1 -d 0 -p ack -e 40 -c 0 -i 27 -a 0 -S 0 -f 0 -m 1 -y {12 12} h -t 1.8648 -s 1 -d 0 -p ack -e 40 -c 0 -i 27 -a 0 -S 0 -y {-1 -1} r -t 1.8664 -s 1 -d 0 -p ack -e 40 -c 0 -i 22 -a 0 -S 0 -y {7 7} f -t 1.86640000000000006 -s 0 -d 1 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 1.86640000000000006 -s 0 -d 1 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v + -t 1.8664 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 28 -a 0 -S 0 -f 0 -m 0 -y {15 15} - -t 1.8664 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 28 -a 0 -S 0 -y {15 15} h -t 1.8664 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 28 -a 0 -S 0 -y {-1 -1} v -t 1.8799999999999999 sim_annotation 1.8799999999999999 11 Send Packet_15,16,17,18,19,20,21,22 : Keep maximum window size,8 r -t 1.9048 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 20 -a 0 -S 0 -y {13 13} + -t 1.9048 -s 1 -d 0 -p ack -e 40 -c 0 -i 29 -a 0 -S 0 -y {13 13} - -t 1.9048 -s 1 -d 0 -p ack -e 40 -c 0 -i 29 -a 0 -S 0 -f 0 -m 1 -y {13 13} h -t 1.9048 -s 1 -d 0 -p ack -e 40 -c 0 -i 29 -a 0 -S 0 -y {-1 -1} r -t 1.9064 -s 1 -d 0 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {8 8} f -t 1.90640000000000009 -s 0 -d 1 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 1.90640000000000009 -s 0 -d 1 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v + -t 1.9064 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 30 -a 0 -S 0 -f 0 -m 0 -y {16 16} - -t 1.9064 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 30 -a 0 -S 0 -y {16 16} h -t 1.9064 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 30 -a 0 -S 0 -y {-1 -1} r -t 1.9448 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 21 -a 0 -S 0 -y {14 14} + -t 1.9448 -s 1 -d 0 -p ack -e 40 -c 0 -i 31 -a 0 -S 0 -y {14 14} - -t 1.9448 -s 1 -d 0 -p ack -e 40 -c 0 -i 31 -a 0 -S 0 -f 0 -m 1 -y {14 14} h -t 1.9448 -s 1 -d 0 -p ack -e 40 -c 0 -i 31 -a 0 -S 0 -y {-1 -1} r -t 1.9464 -s 1 -d 0 -p ack -e 40 -c 0 -i 24 -a 0 -S 0 -y {9 9} f -t 1.94640000000000013 -s 0 -d 1 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 1.94640000000000013 -s 0 -d 1 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v + -t 1.9464 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 32 -a 0 -S 0 -f 0 -m 0 -y {17 17} - -t 1.9464 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 32 -a 0 -S 0 -y {17 17} h -t 1.9464 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 32 -a 0 -S 0 -y {-1 -1} r -t 1.9864 -s 1 -d 0 -p ack -e 40 -c 0 -i 25 -a 0 -S 0 -y {10 10} f -t 1.98640000000000017 -s 0 -d 1 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 1.98640000000000017 -s 0 -d 1 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v + -t 1.9864 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 33 -a 0 -S 0 -f 0 -m 0 -y {18 18} - -t 1.9864 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 33 -a 0 -S 0 -y {18 18} h -t 1.9864 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 33 -a 0 -S 0 -y {-1 -1} r -t 2.0264 -s 1 -d 0 -p ack -e 40 -c 0 -i 26 -a 0 -S 0 -y {11 11} f -t 2.02640000000000020 -s 0 -d 1 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 2.02640000000000020 -s 0 -d 1 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v + -t 2.0264 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 34 -a 0 -S 0 -f 0 -m 0 -y {19 19} - -t 2.0264 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 34 -a 0 -S 0 -y {19 19} h -t 2.0264 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 34 -a 0 -S 0 -y {-1 -1} r -t 2.0664 -s 1 -d 0 -p ack -e 40 -c 0 -i 27 -a 0 -S 0 -y {12 12} f -t 2.06640000000000024 -s 0 -d 1 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 2.06640000000000024 -s 0 -d 1 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v + -t 2.0664 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 35 -a 0 -S 0 -f 0 -m 0 -y {20 20} - -t 2.0664 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 35 -a 0 -S 0 -y {20 20} h -t 2.0664 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 35 -a 0 -S 0 -y {-1 -1} r -t 2.1064 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 28 -a 0 -S 0 -y {15 15} + -t 2.1064 -s 1 -d 0 -p ack -e 40 -c 0 -i 36 -a 0 -S 0 -y {15 15} - -t 2.1064 -s 1 -d 0 -p ack -e 40 -c 0 -i 36 -a 0 -S 0 -f 0 -m 1 -y {15 15} h -t 2.1064 -s 1 -d 0 -p ack -e 40 -c 0 -i 36 -a 0 -S 0 -y {-1 -1} r -t 2.1064 -s 1 -d 0 -p ack -e 40 -c 0 -i 29 -a 0 -S 0 -y {13 13} f -t 2.10640000000000027 -s 0 -d 1 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 2.10640000000000027 -s 0 -d 1 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v + -t 2.1064 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 37 -a 0 -S 0 -f 0 -m 0 -y {21 21} - -t 2.1064 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 37 -a 0 -S 0 -y {21 21} h -t 2.1064 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 37 -a 0 -S 0 -y {-1 -1} v -t 2.1099999999999999 sim_annotation 2.1099999999999999 12 Receive Ack_15,16,17,18,19,20,21,22 r -t 2.1464 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 30 -a 0 -S 0 -y {16 16} + -t 2.1464 -s 1 -d 0 -p ack -e 40 -c 0 -i 38 -a 0 -S 0 -y {16 16} - -t 2.1464 -s 1 -d 0 -p ack -e 40 -c 0 -i 38 -a 0 -S 0 -f 0 -m 1 -y {16 16} h -t 2.1464 -s 1 -d 0 -p ack -e 40 -c 0 -i 38 -a 0 -S 0 -y {-1 -1} r -t 2.1464 -s 1 -d 0 -p ack -e 40 -c 0 -i 31 -a 0 -S 0 -y {14 14} f -t 2.14640000000000031 -s 0 -d 1 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 2.14640000000000031 -s 0 -d 1 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v + -t 2.1464 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 39 -a 0 -S 0 -f 0 -m 0 -y {22 22} - -t 2.1464 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 39 -a 0 -S 0 -y {22 22} h -t 2.1464 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 39 -a 0 -S 0 -y {-1 -1} r -t 2.1864 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 32 -a 0 -S 0 -y {17 17} + -t 2.1864 -s 1 -d 0 -p ack -e 40 -c 0 -i 40 -a 0 -S 0 -y {17 17} - -t 2.1864 -s 1 -d 0 -p ack -e 40 -c 0 -i 40 -a 0 -S 0 -f 0 -m 1 -y {17 17} h -t 2.1864 -s 1 -d 0 -p ack -e 40 -c 0 -i 40 -a 0 -S 0 -y {-1 -1} r -t 2.2264 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 33 -a 0 -S 0 -y {18 18} + -t 2.2264 -s 1 -d 0 -p ack -e 40 -c 0 -i 41 -a 0 -S 0 -y {18 18} - -t 2.2264 -s 1 -d 0 -p ack -e 40 -c 0 -i 41 -a 0 -S 0 -f 0 -m 1 -y {18 18} h -t 2.2264 -s 1 -d 0 -p ack -e 40 -c 0 -i 41 -a 0 -S 0 -y {-1 -1} r -t 2.2664 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 34 -a 0 -S 0 -y {19 19} + -t 2.2664 -s 1 -d 0 -p ack -e 40 -c 0 -i 42 -a 0 -S 0 -y {19 19} - -t 2.2664 -s 1 -d 0 -p ack -e 40 -c 0 -i 42 -a 0 -S 0 -f 0 -m 1 -y {19 19} h -t 2.2664 -s 1 -d 0 -p ack -e 40 -c 0 -i 42 -a 0 -S 0 -y {-1 -1} r -t 2.3064 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 35 -a 0 -S 0 -y {20 20} + -t 2.3064 -s 1 -d 0 -p ack -e 40 -c 0 -i 43 -a 0 -S 0 -y {20 20} - -t 2.3064 -s 1 -d 0 -p ack -e 40 -c 0 -i 43 -a 0 -S 0 -f 0 -m 1 -y {20 20} h -t 2.3064 -s 1 -d 0 -p ack -e 40 -c 0 -i 43 -a 0 -S 0 -y {-1 -1} r -t 2.308 -s 1 -d 0 -p ack -e 40 -c 0 -i 36 -a 0 -S 0 -y {15 15} f -t 2.30800000000000027 -s 0 -d 1 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 2.30800000000000027 -s 0 -d 1 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v + -t 2.308 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 44 -a 0 -S 0 -f 0 -m 0 -y {23 23} - -t 2.308 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 44 -a 0 -S 0 -y {23 23} h -t 2.308 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 44 -a 0 -S 0 -y {-1 -1} v -t 2.3199999999999998 sim_annotation 2.3199999999999998 13 Send Packet_23,24,25,26,27,28,29,30 : Keep maximum window size, 8 r -t 2.3464 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 37 -a 0 -S 0 -y {21 21} + -t 2.3464 -s 1 -d 0 -p ack -e 40 -c 0 -i 45 -a 0 -S 0 -y {21 21} - -t 2.3464 -s 1 -d 0 -p ack -e 40 -c 0 -i 45 -a 0 -S 0 -f 0 -m 1 -y {21 21} h -t 2.3464 -s 1 -d 0 -p ack -e 40 -c 0 -i 45 -a 0 -S 0 -y {-1 -1} r -t 2.348 -s 1 -d 0 -p ack -e 40 -c 0 -i 38 -a 0 -S 0 -y {16 16} f -t 2.34800000000000031 -s 0 -d 1 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 2.34800000000000031 -s 0 -d 1 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v + -t 2.348 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 46 -a 0 -S 0 -f 0 -m 0 -y {24 24} - -t 2.348 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 46 -a 0 -S 0 -y {24 24} h -t 2.348 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 46 -a 0 -S 0 -y {-1 -1} r -t 2.3864 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 39 -a 0 -S 0 -y {22 22} + -t 2.3864 -s 1 -d 0 -p ack -e 40 -c 0 -i 47 -a 0 -S 0 -y {22 22} - -t 2.3864 -s 1 -d 0 -p ack -e 40 -c 0 -i 47 -a 0 -S 0 -f 0 -m 1 -y {22 22} h -t 2.3864 -s 1 -d 0 -p ack -e 40 -c 0 -i 47 -a 0 -S 0 -y {-1 -1} r -t 2.388 -s 1 -d 0 -p ack -e 40 -c 0 -i 40 -a 0 -S 0 -y {17 17} f -t 2.38800000000000034 -s 0 -d 1 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 2.38800000000000034 -s 0 -d 1 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v + -t 2.388 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 48 -a 0 -S 0 -f 0 -m 0 -y {25 25} - -t 2.388 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 48 -a 0 -S 0 -y {25 25} h -t 2.388 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 48 -a 0 -S 0 -y {-1 -1} r -t 2.428 -s 1 -d 0 -p ack -e 40 -c 0 -i 41 -a 0 -S 0 -y {18 18} f -t 2.42800000000000038 -s 0 -d 1 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 2.42800000000000038 -s 0 -d 1 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v + -t 2.428 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 49 -a 0 -S 0 -f 0 -m 0 -y {26 26} - -t 2.428 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 49 -a 0 -S 0 -y {26 26} h -t 2.428 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 49 -a 0 -S 0 -y {-1 -1} r -t 2.468 -s 1 -d 0 -p ack -e 40 -c 0 -i 42 -a 0 -S 0 -y {19 19} f -t 2.46800000000000042 -s 0 -d 1 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 2.46800000000000042 -s 0 -d 1 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v + -t 2.468 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 50 -a 0 -S 0 -f 0 -m 0 -y {27 27} - -t 2.468 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 50 -a 0 -S 0 -y {27 27} h -t 2.468 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 50 -a 0 -S 0 -y {-1 -1} r -t 2.508 -s 1 -d 0 -p ack -e 40 -c 0 -i 43 -a 0 -S 0 -y {20 20} f -t 2.50800000000000045 -s 0 -d 1 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 2.50800000000000045 -s 0 -d 1 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v + -t 2.508 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 51 -a 0 -S 0 -f 0 -m 0 -y {28 28} - -t 2.508 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 51 -a 0 -S 0 -y {28 28} h -t 2.508 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 51 -a 0 -S 0 -y {-1 -1} r -t 2.548 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 44 -a 0 -S 0 -y {23 23} + -t 2.548 -s 1 -d 0 -p ack -e 40 -c 0 -i 52 -a 0 -S 0 -y {23 23} - -t 2.548 -s 1 -d 0 -p ack -e 40 -c 0 -i 52 -a 0 -S 0 -f 0 -m 1 -y {23 23} h -t 2.548 -s 1 -d 0 -p ack -e 40 -c 0 -i 52 -a 0 -S 0 -y {-1 -1} r -t 2.548 -s 1 -d 0 -p ack -e 40 -c 0 -i 45 -a 0 -S 0 -y {21 21} f -t 2.54800000000000049 -s 0 -d 1 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 2.54800000000000049 -s 0 -d 1 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v + -t 2.548 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 53 -a 0 -S 0 -f 0 -m 0 -y {29 29} - -t 2.548 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 53 -a 0 -S 0 -y {29 29} h -t 2.548 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 53 -a 0 -S 0 -y {-1 -1} v -t 2.5600000000000001 sim_annotation 2.5600000000000001 14 Receive Ack_23,24,25,26,27,28,29,30 r -t 2.588 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 46 -a 0 -S 0 -y {24 24} + -t 2.588 -s 1 -d 0 -p ack -e 40 -c 0 -i 54 -a 0 -S 0 -y {24 24} - -t 2.588 -s 1 -d 0 -p ack -e 40 -c 0 -i 54 -a 0 -S 0 -f 0 -m 1 -y {24 24} h -t 2.588 -s 1 -d 0 -p ack -e 40 -c 0 -i 54 -a 0 -S 0 -y {-1 -1} r -t 2.588 -s 1 -d 0 -p ack -e 40 -c 0 -i 47 -a 0 -S 0 -y {22 22} f -t 2.58800000000000052 -s 0 -d 1 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 2.58800000000000052 -s 0 -d 1 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v + -t 2.588 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 55 -a 0 -S 0 -f 0 -m 0 -y {30 30} - -t 2.588 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 55 -a 0 -S 0 -y {30 30} h -t 2.588 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 55 -a 0 -S 0 -y {-1 -1} r -t 2.628 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 48 -a 0 -S 0 -y {25 25} + -t 2.628 -s 1 -d 0 -p ack -e 40 -c 0 -i 56 -a 0 -S 0 -y {25 25} - -t 2.628 -s 1 -d 0 -p ack -e 40 -c 0 -i 56 -a 0 -S 0 -f 0 -m 1 -y {25 25} h -t 2.628 -s 1 -d 0 -p ack -e 40 -c 0 -i 56 -a 0 -S 0 -y {-1 -1} r -t 2.668 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 49 -a 0 -S 0 -y {26 26} + -t 2.668 -s 1 -d 0 -p ack -e 40 -c 0 -i 57 -a 0 -S 0 -y {26 26} - -t 2.668 -s 1 -d 0 -p ack -e 40 -c 0 -i 57 -a 0 -S 0 -f 0 -m 1 -y {26 26} h -t 2.668 -s 1 -d 0 -p ack -e 40 -c 0 -i 57 -a 0 -S 0 -y {-1 -1} r -t 2.708 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 50 -a 0 -S 0 -y {27 27} + -t 2.708 -s 1 -d 0 -p ack -e 40 -c 0 -i 58 -a 0 -S 0 -y {27 27} - -t 2.708 -s 1 -d 0 -p ack -e 40 -c 0 -i 58 -a 0 -S 0 -f 0 -m 1 -y {27 27} h -t 2.708 -s 1 -d 0 -p ack -e 40 -c 0 -i 58 -a 0 -S 0 -y {-1 -1} r -t 2.748 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 51 -a 0 -S 0 -y {28 28} + -t 2.748 -s 1 -d 0 -p ack -e 40 -c 0 -i 59 -a 0 -S 0 -y {28 28} - -t 2.748 -s 1 -d 0 -p ack -e 40 -c 0 -i 59 -a 0 -S 0 -f 0 -m 1 -y {28 28} h -t 2.748 -s 1 -d 0 -p ack -e 40 -c 0 -i 59 -a 0 -S 0 -y {-1 -1} r -t 2.7496 -s 1 -d 0 -p ack -e 40 -c 0 -i 52 -a 0 -S 0 -y {23 23} f -t 2.74960000000000049 -s 0 -d 1 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 2.74960000000000049 -s 0 -d 1 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v + -t 2.7496 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 60 -a 0 -S 0 -f 0 -m 0 -y {31 31} - -t 2.7496 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 60 -a 0 -S 0 -y {31 31} h -t 2.7496 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 60 -a 0 -S 0 -y {-1 -1} v -t 2.7799999999999998 sim_annotation 2.7799999999999998 15 Send Packet_31,32,33,34,35,36,37,38 : Keep maximum window size, 8 r -t 2.788 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 53 -a 0 -S 0 -y {29 29} + -t 2.788 -s 1 -d 0 -p ack -e 40 -c 0 -i 61 -a 0 -S 0 -y {29 29} - -t 2.788 -s 1 -d 0 -p ack -e 40 -c 0 -i 61 -a 0 -S 0 -f 0 -m 1 -y {29 29} h -t 2.788 -s 1 -d 0 -p ack -e 40 -c 0 -i 61 -a 0 -S 0 -y {-1 -1} r -t 2.7896 -s 1 -d 0 -p ack -e 40 -c 0 -i 54 -a 0 -S 0 -y {24 24} f -t 2.78960000000000052 -s 0 -d 1 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 2.78960000000000052 -s 0 -d 1 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v + -t 2.7896 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 62 -a 0 -S 0 -f 0 -m 0 -y {32 32} - -t 2.7896 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 62 -a 0 -S 0 -y {32 32} h -t 2.7896 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 62 -a 0 -S 0 -y {-1 -1} r -t 2.828 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 55 -a 0 -S 0 -y {30 30} + -t 2.828 -s 1 -d 0 -p ack -e 40 -c 0 -i 63 -a 0 -S 0 -y {30 30} - -t 2.828 -s 1 -d 0 -p ack -e 40 -c 0 -i 63 -a 0 -S 0 -f 0 -m 1 -y {30 30} h -t 2.828 -s 1 -d 0 -p ack -e 40 -c 0 -i 63 -a 0 -S 0 -y {-1 -1} r -t 2.8296 -s 1 -d 0 -p ack -e 40 -c 0 -i 56 -a 0 -S 0 -y {25 25} f -t 2.82960000000000056 -s 0 -d 1 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 2.82960000000000056 -s 0 -d 1 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v + -t 2.8296 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 64 -a 0 -S 0 -f 0 -m 0 -y {33 33} - -t 2.8296 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 64 -a 0 -S 0 -y {33 33} h -t 2.8296 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 64 -a 0 -S 0 -y {-1 -1} r -t 2.8696 -s 1 -d 0 -p ack -e 40 -c 0 -i 57 -a 0 -S 0 -y {26 26} f -t 2.86960000000000059 -s 0 -d 1 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 2.86960000000000059 -s 0 -d 1 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v + -t 2.8696 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -f 0 -m 0 -y {34 34} - -t 2.8696 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {34 34} h -t 2.8696 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {-1 -1} r -t 2.9096 -s 1 -d 0 -p ack -e 40 -c 0 -i 58 -a 0 -S 0 -y {27 27} f -t 2.90960000000000063 -s 0 -d 1 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 2.90960000000000063 -s 0 -d 1 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v + -t 2.9096 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 66 -a 0 -S 0 -f 0 -m 0 -y {35 35} - -t 2.9096 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 66 -a 0 -S 0 -y {35 35} h -t 2.9096 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 66 -a 0 -S 0 -y {-1 -1} r -t 2.9496 -s 1 -d 0 -p ack -e 40 -c 0 -i 59 -a 0 -S 0 -y {28 28} f -t 2.94960000000000067 -s 0 -d 1 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 2.94960000000000067 -s 0 -d 1 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v + -t 2.9496 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 67 -a 0 -S 0 -f 0 -m 0 -y {36 36} - -t 2.9496 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 67 -a 0 -S 0 -y {36 36} h -t 2.9496 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 67 -a 0 -S 0 -y {-1 -1} r -t 2.9896 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 60 -a 0 -S 0 -y {31 31} + -t 2.9896 -s 1 -d 0 -p ack -e 40 -c 0 -i 68 -a 0 -S 0 -y {31 31} - -t 2.9896 -s 1 -d 0 -p ack -e 40 -c 0 -i 68 -a 0 -S 0 -f 0 -m 1 -y {31 31} h -t 2.9896 -s 1 -d 0 -p ack -e 40 -c 0 -i 68 -a 0 -S 0 -y {-1 -1} r -t 2.9896 -s 1 -d 0 -p ack -e 40 -c 0 -i 61 -a 0 -S 0 -y {29 29} f -t 2.98960000000000070 -s 0 -d 1 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 2.98960000000000070 -s 0 -d 1 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v + -t 2.9896 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 69 -a 0 -S 0 -f 0 -m 0 -y {37 37} - -t 2.9896 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 69 -a 0 -S 0 -y {37 37} h -t 2.9896 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 69 -a 0 -S 0 -y {-1 -1} v -t 3 sim_annotation 3 16 Receive Ack_31 r -t 3.0296 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 62 -a 0 -S 0 -y {32 32} r -t 3.0296 -s 1 -d 0 -p ack -e 40 -c 0 -i 63 -a 0 -S 0 -y {30 30} r -t 3.0696 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 64 -a 0 -S 0 -y {33 33} v -t 3.1000000000000001 sim_annotation 3.1000000000000001 17 FTP stops r -t 3.1096 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {34 34} r -t 3.1496 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 66 -a 0 -S 0 -y {35 35} r -t 3.1896 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 67 -a 0 -S 0 -y {36 36} r -t 3.1912 -s 1 -d 0 -p ack -e 40 -c 0 -i 68 -a 0 -S 0 -y {31 31} r -t 3.2296 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 69 -a 0 -S 0 -y {37 37} nam-1.15/edu/A4-slow-start.tcl0000664000076400007660000000457507024407015014750 0ustar tomhnsnam# slow start mechanism with some features # such as labeling, annotation, nam-graph, and window size monitoring set ns [new Simulator] set n0 [$ns node] set n1 [$ns node] $ns at 0.0 "$n0 label Sender" $ns at 0.0 "$n1 label Receiver" set nf [open A4-slow-start.nam w] $ns namtrace-all $nf set f [open A4-slow-start.tr w] $ns trace-all $f $ns duplex-link $n0 $n1 0.2Mb 200ms DropTail $ns duplex-link-op $n0 $n1 orient right $ns queue-limit $n0 $n1 10 Agent/TCP set nam_tracevar_ true set tcp [new Agent/TCP] $tcp set maxcwnd_ 8 $ns attach-agent $n0 $tcp set sink [new Agent/TCPSink] $ns attach-agent $n1 $sink $ns connect $tcp $sink set ftp [new Application/FTP] $ftp attach-agent $tcp $ns add-agent-trace $tcp tcp $ns monitor-agent-trace $tcp $tcp tracevar cwnd_ $ns at 0.1 "$ftp start" $ns at 3.0 "$ns detach-agent $n0 $tcp ; $ns detach-agent $n1 $sink" $ns at 3.5 "finish" $ns at 0.0 "$ns trace-annotate \"Slow Start with maximum window size 8 (normal operation)\"" $ns at 0.05 "$ns trace-annotate \"FTP starts at 0.1\"" $ns at 0.11 "$ns trace-annotate \"Send Packet_0 : Initial window size = 1\"" $ns at 0.34 "$ns trace-annotate \"Receive Ack_0\"" $ns at 0.56 "$ns trace-annotate \"Send Packet_1,2 : Increase window size to 2\"" $ns at 0.79 "$ns trace-annotate \"Receive Ack_1,2\"" $ns at 0.99 "$ns trace-annotate \"Send Packet_3,4,5,6 : Increase window size to 4\"" $ns at 1.23 "$ns trace-annotate \"Receive Ack_3,4,5,6 \"" $ns at 1.43 "$ns trace-annotate \"Send Packet_7,8,9,10,11,12,13,14 : Increase window size to 8\"" $ns at 1.67 "$ns trace-annotate \"Receive Ack_7,8,9,10,11,12,13,14\"" $ns at 1.88 "$ns trace-annotate \"Send Packet_15,16,17,18,19,20,21,22 : Keep maximum window size,8\"" $ns at 2.11 "$ns trace-annotate \"Receive Ack_15,16,17,18,19,20,21,22\"" $ns at 2.32 "$ns trace-annotate \"Send Packet_23,24,25,26,27,28,29,30\ : Keep maximum window size, 8\"" $ns at 2.56 "$ns trace-annotate \"Receive Ack_23,24,25,26,27,28,29,30\"" $ns at 2.78 "$ns trace-annotate \"Send Packet_31,32,33,34,35,36,37,38\ : Keep maximum window size, 8\"" $ns at 3.00 "$ns trace-annotate \"Receive Ack_31\"" $ns at 3.1 "$ns trace-annotate \"FTP stops\"" proc finish {} { global ns nf $ns flush-trace close $nf puts "filtering..." exec tclsh ../bin/namfilter.tcl A4-slow-start.nam puts "running nam..." exec nam A4-slow-start.nam & exit 0 } $ns run nam-1.15/edu/A4-slow-start.tr0000664000076400007660000002476606751715527014637 0ustar tomhnsnamv 0 eval {set sim_annotation {Slow Start with maximum window size 8 (normal operation)}} v 0.050000000000000003 eval {set sim_annotation {FTP starts at 0.1}} + 0.1 0 1 tcp 1000 ------- 0 0.0 1.0 0 0 - 0.1 0 1 tcp 1000 ------- 0 0.0 1.0 0 0 v 0.11 eval {set sim_annotation {Send Packet_0 : Initial window size = 1}} v 0.34000000000000002 eval {set sim_annotation {Receive Ack_0}} r 0.34 0 1 tcp 1000 ------- 0 0.0 1.0 0 0 + 0.34 1 0 ack 40 ------- 0 1.0 0.0 0 1 - 0.34 1 0 ack 40 ------- 0 1.0 0.0 0 1 r 0.5416 1 0 ack 40 ------- 0 1.0 0.0 0 1 + 0.5416 0 1 tcp 1000 ------- 0 0.0 1.0 1 2 - 0.5416 0 1 tcp 1000 ------- 0 0.0 1.0 1 2 + 0.5416 0 1 tcp 1000 ------- 0 0.0 1.0 2 3 v 0.56000000000000005 eval {set sim_annotation {Send Packet_1,2 : Increase window size to 2}} - 0.5816 0 1 tcp 1000 ------- 0 0.0 1.0 2 3 r 0.7816 0 1 tcp 1000 ------- 0 0.0 1.0 1 2 + 0.7816 1 0 ack 40 ------- 0 1.0 0.0 1 4 - 0.7816 1 0 ack 40 ------- 0 1.0 0.0 1 4 v 0.79000000000000004 eval {set sim_annotation {Receive Ack_1,2}} r 0.8216 0 1 tcp 1000 ------- 0 0.0 1.0 2 3 + 0.8216 1 0 ack 40 ------- 0 1.0 0.0 2 5 - 0.8216 1 0 ack 40 ------- 0 1.0 0.0 2 5 r 0.9832 1 0 ack 40 ------- 0 1.0 0.0 1 4 + 0.9832 0 1 tcp 1000 ------- 0 0.0 1.0 3 6 - 0.9832 0 1 tcp 1000 ------- 0 0.0 1.0 3 6 + 0.9832 0 1 tcp 1000 ------- 0 0.0 1.0 4 7 v 0.98999999999999999 eval {set sim_annotation {Send Packet_3,4,5,6 : Increase window size to 4}} r 1.0232 1 0 ack 40 ------- 0 1.0 0.0 2 5 + 1.0232 0 1 tcp 1000 ------- 0 0.0 1.0 5 8 + 1.0232 0 1 tcp 1000 ------- 0 0.0 1.0 6 9 - 1.0232 0 1 tcp 1000 ------- 0 0.0 1.0 4 7 - 1.0632 0 1 tcp 1000 ------- 0 0.0 1.0 5 8 - 1.1032 0 1 tcp 1000 ------- 0 0.0 1.0 6 9 r 1.2232 0 1 tcp 1000 ------- 0 0.0 1.0 3 6 + 1.2232 1 0 ack 40 ------- 0 1.0 0.0 3 10 - 1.2232 1 0 ack 40 ------- 0 1.0 0.0 3 10 v 1.23 eval {set sim_annotation {Receive Ack_3,4,5,6 }} r 1.2632 0 1 tcp 1000 ------- 0 0.0 1.0 4 7 + 1.2632 1 0 ack 40 ------- 0 1.0 0.0 4 11 - 1.2632 1 0 ack 40 ------- 0 1.0 0.0 4 11 r 1.3032 0 1 tcp 1000 ------- 0 0.0 1.0 5 8 + 1.3032 1 0 ack 40 ------- 0 1.0 0.0 5 12 - 1.3032 1 0 ack 40 ------- 0 1.0 0.0 5 12 r 1.3432 0 1 tcp 1000 ------- 0 0.0 1.0 6 9 + 1.3432 1 0 ack 40 ------- 0 1.0 0.0 6 13 - 1.3432 1 0 ack 40 ------- 0 1.0 0.0 6 13 r 1.4248 1 0 ack 40 ------- 0 1.0 0.0 3 10 + 1.4248 0 1 tcp 1000 ------- 0 0.0 1.0 7 14 - 1.4248 0 1 tcp 1000 ------- 0 0.0 1.0 7 14 + 1.4248 0 1 tcp 1000 ------- 0 0.0 1.0 8 15 v 1.4299999999999999 eval {set sim_annotation {Send Packet_7,8,9,10,11,12,13,14 : Increase window size to 8}} r 1.4648 1 0 ack 40 ------- 0 1.0 0.0 4 11 + 1.4648 0 1 tcp 1000 ------- 0 0.0 1.0 9 16 + 1.4648 0 1 tcp 1000 ------- 0 0.0 1.0 10 17 - 1.4648 0 1 tcp 1000 ------- 0 0.0 1.0 8 15 r 1.5048 1 0 ack 40 ------- 0 1.0 0.0 5 12 + 1.5048 0 1 tcp 1000 ------- 0 0.0 1.0 11 18 + 1.5048 0 1 tcp 1000 ------- 0 0.0 1.0 12 19 - 1.5048 0 1 tcp 1000 ------- 0 0.0 1.0 9 16 r 1.5448 1 0 ack 40 ------- 0 1.0 0.0 6 13 + 1.5448 0 1 tcp 1000 ------- 0 0.0 1.0 13 20 + 1.5448 0 1 tcp 1000 ------- 0 0.0 1.0 14 21 - 1.5448 0 1 tcp 1000 ------- 0 0.0 1.0 10 17 - 1.5848 0 1 tcp 1000 ------- 0 0.0 1.0 11 18 - 1.6248 0 1 tcp 1000 ------- 0 0.0 1.0 12 19 r 1.6648 0 1 tcp 1000 ------- 0 0.0 1.0 7 14 + 1.6648 1 0 ack 40 ------- 0 1.0 0.0 7 22 - 1.6648 1 0 ack 40 ------- 0 1.0 0.0 7 22 - 1.6648 0 1 tcp 1000 ------- 0 0.0 1.0 13 20 v 1.6699999999999999 eval {set sim_annotation {Receive Ack_7,8,9,10,11,12,13,14}} r 1.7048 0 1 tcp 1000 ------- 0 0.0 1.0 8 15 + 1.7048 1 0 ack 40 ------- 0 1.0 0.0 8 23 - 1.7048 1 0 ack 40 ------- 0 1.0 0.0 8 23 - 1.7048 0 1 tcp 1000 ------- 0 0.0 1.0 14 21 r 1.7448 0 1 tcp 1000 ------- 0 0.0 1.0 9 16 + 1.7448 1 0 ack 40 ------- 0 1.0 0.0 9 24 - 1.7448 1 0 ack 40 ------- 0 1.0 0.0 9 24 r 1.7848 0 1 tcp 1000 ------- 0 0.0 1.0 10 17 + 1.7848 1 0 ack 40 ------- 0 1.0 0.0 10 25 - 1.7848 1 0 ack 40 ------- 0 1.0 0.0 10 25 r 1.8248 0 1 tcp 1000 ------- 0 0.0 1.0 11 18 + 1.8248 1 0 ack 40 ------- 0 1.0 0.0 11 26 - 1.8248 1 0 ack 40 ------- 0 1.0 0.0 11 26 r 1.8648 0 1 tcp 1000 ------- 0 0.0 1.0 12 19 + 1.8648 1 0 ack 40 ------- 0 1.0 0.0 12 27 - 1.8648 1 0 ack 40 ------- 0 1.0 0.0 12 27 r 1.8664 1 0 ack 40 ------- 0 1.0 0.0 7 22 + 1.8664 0 1 tcp 1000 ------- 0 0.0 1.0 15 28 - 1.8664 0 1 tcp 1000 ------- 0 0.0 1.0 15 28 v 1.8799999999999999 eval {set sim_annotation {Send Packet_15,16,17,18,19,20,21,22 : Keep maximum window size,8}} r 1.9048 0 1 tcp 1000 ------- 0 0.0 1.0 13 20 + 1.9048 1 0 ack 40 ------- 0 1.0 0.0 13 29 - 1.9048 1 0 ack 40 ------- 0 1.0 0.0 13 29 r 1.9064 1 0 ack 40 ------- 0 1.0 0.0 8 23 + 1.9064 0 1 tcp 1000 ------- 0 0.0 1.0 16 30 - 1.9064 0 1 tcp 1000 ------- 0 0.0 1.0 16 30 r 1.9448 0 1 tcp 1000 ------- 0 0.0 1.0 14 21 + 1.9448 1 0 ack 40 ------- 0 1.0 0.0 14 31 - 1.9448 1 0 ack 40 ------- 0 1.0 0.0 14 31 r 1.9464 1 0 ack 40 ------- 0 1.0 0.0 9 24 + 1.9464 0 1 tcp 1000 ------- 0 0.0 1.0 17 32 - 1.9464 0 1 tcp 1000 ------- 0 0.0 1.0 17 32 r 1.9864 1 0 ack 40 ------- 0 1.0 0.0 10 25 + 1.9864 0 1 tcp 1000 ------- 0 0.0 1.0 18 33 - 1.9864 0 1 tcp 1000 ------- 0 0.0 1.0 18 33 r 2.0264 1 0 ack 40 ------- 0 1.0 0.0 11 26 + 2.0264 0 1 tcp 1000 ------- 0 0.0 1.0 19 34 - 2.0264 0 1 tcp 1000 ------- 0 0.0 1.0 19 34 r 2.0664 1 0 ack 40 ------- 0 1.0 0.0 12 27 + 2.0664 0 1 tcp 1000 ------- 0 0.0 1.0 20 35 - 2.0664 0 1 tcp 1000 ------- 0 0.0 1.0 20 35 r 2.1064 0 1 tcp 1000 ------- 0 0.0 1.0 15 28 + 2.1064 1 0 ack 40 ------- 0 1.0 0.0 15 36 - 2.1064 1 0 ack 40 ------- 0 1.0 0.0 15 36 r 2.1064 1 0 ack 40 ------- 0 1.0 0.0 13 29 + 2.1064 0 1 tcp 1000 ------- 0 0.0 1.0 21 37 - 2.1064 0 1 tcp 1000 ------- 0 0.0 1.0 21 37 v 2.1099999999999999 eval {set sim_annotation {Receive Ack_15,16,17,18,19,20,21,22}} r 2.1464 0 1 tcp 1000 ------- 0 0.0 1.0 16 30 + 2.1464 1 0 ack 40 ------- 0 1.0 0.0 16 38 - 2.1464 1 0 ack 40 ------- 0 1.0 0.0 16 38 r 2.1464 1 0 ack 40 ------- 0 1.0 0.0 14 31 + 2.1464 0 1 tcp 1000 ------- 0 0.0 1.0 22 39 - 2.1464 0 1 tcp 1000 ------- 0 0.0 1.0 22 39 r 2.1864 0 1 tcp 1000 ------- 0 0.0 1.0 17 32 + 2.1864 1 0 ack 40 ------- 0 1.0 0.0 17 40 - 2.1864 1 0 ack 40 ------- 0 1.0 0.0 17 40 r 2.2264 0 1 tcp 1000 ------- 0 0.0 1.0 18 33 + 2.2264 1 0 ack 40 ------- 0 1.0 0.0 18 41 - 2.2264 1 0 ack 40 ------- 0 1.0 0.0 18 41 r 2.2664 0 1 tcp 1000 ------- 0 0.0 1.0 19 34 + 2.2664 1 0 ack 40 ------- 0 1.0 0.0 19 42 - 2.2664 1 0 ack 40 ------- 0 1.0 0.0 19 42 r 2.3064 0 1 tcp 1000 ------- 0 0.0 1.0 20 35 + 2.3064 1 0 ack 40 ------- 0 1.0 0.0 20 43 - 2.3064 1 0 ack 40 ------- 0 1.0 0.0 20 43 r 2.308 1 0 ack 40 ------- 0 1.0 0.0 15 36 + 2.308 0 1 tcp 1000 ------- 0 0.0 1.0 23 44 - 2.308 0 1 tcp 1000 ------- 0 0.0 1.0 23 44 v 2.3199999999999998 eval {set sim_annotation {Send Packet_23,24,25,26,27,28,29,30 : Keep maximum window size, 8}} r 2.3464 0 1 tcp 1000 ------- 0 0.0 1.0 21 37 + 2.3464 1 0 ack 40 ------- 0 1.0 0.0 21 45 - 2.3464 1 0 ack 40 ------- 0 1.0 0.0 21 45 r 2.348 1 0 ack 40 ------- 0 1.0 0.0 16 38 + 2.348 0 1 tcp 1000 ------- 0 0.0 1.0 24 46 - 2.348 0 1 tcp 1000 ------- 0 0.0 1.0 24 46 r 2.3864 0 1 tcp 1000 ------- 0 0.0 1.0 22 39 + 2.3864 1 0 ack 40 ------- 0 1.0 0.0 22 47 - 2.3864 1 0 ack 40 ------- 0 1.0 0.0 22 47 r 2.388 1 0 ack 40 ------- 0 1.0 0.0 17 40 + 2.388 0 1 tcp 1000 ------- 0 0.0 1.0 25 48 - 2.388 0 1 tcp 1000 ------- 0 0.0 1.0 25 48 r 2.428 1 0 ack 40 ------- 0 1.0 0.0 18 41 + 2.428 0 1 tcp 1000 ------- 0 0.0 1.0 26 49 - 2.428 0 1 tcp 1000 ------- 0 0.0 1.0 26 49 r 2.468 1 0 ack 40 ------- 0 1.0 0.0 19 42 + 2.468 0 1 tcp 1000 ------- 0 0.0 1.0 27 50 - 2.468 0 1 tcp 1000 ------- 0 0.0 1.0 27 50 r 2.508 1 0 ack 40 ------- 0 1.0 0.0 20 43 + 2.508 0 1 tcp 1000 ------- 0 0.0 1.0 28 51 - 2.508 0 1 tcp 1000 ------- 0 0.0 1.0 28 51 r 2.548 0 1 tcp 1000 ------- 0 0.0 1.0 23 44 + 2.548 1 0 ack 40 ------- 0 1.0 0.0 23 52 - 2.548 1 0 ack 40 ------- 0 1.0 0.0 23 52 r 2.548 1 0 ack 40 ------- 0 1.0 0.0 21 45 + 2.548 0 1 tcp 1000 ------- 0 0.0 1.0 29 53 - 2.548 0 1 tcp 1000 ------- 0 0.0 1.0 29 53 v 2.5600000000000001 eval {set sim_annotation {Receive Ack_23,24,25,26,27,28,29,30}} r 2.588 0 1 tcp 1000 ------- 0 0.0 1.0 24 46 + 2.588 1 0 ack 40 ------- 0 1.0 0.0 24 54 - 2.588 1 0 ack 40 ------- 0 1.0 0.0 24 54 r 2.588 1 0 ack 40 ------- 0 1.0 0.0 22 47 + 2.588 0 1 tcp 1000 ------- 0 0.0 1.0 30 55 - 2.588 0 1 tcp 1000 ------- 0 0.0 1.0 30 55 r 2.628 0 1 tcp 1000 ------- 0 0.0 1.0 25 48 + 2.628 1 0 ack 40 ------- 0 1.0 0.0 25 56 - 2.628 1 0 ack 40 ------- 0 1.0 0.0 25 56 r 2.668 0 1 tcp 1000 ------- 0 0.0 1.0 26 49 + 2.668 1 0 ack 40 ------- 0 1.0 0.0 26 57 - 2.668 1 0 ack 40 ------- 0 1.0 0.0 26 57 r 2.708 0 1 tcp 1000 ------- 0 0.0 1.0 27 50 + 2.708 1 0 ack 40 ------- 0 1.0 0.0 27 58 - 2.708 1 0 ack 40 ------- 0 1.0 0.0 27 58 r 2.748 0 1 tcp 1000 ------- 0 0.0 1.0 28 51 + 2.748 1 0 ack 40 ------- 0 1.0 0.0 28 59 - 2.748 1 0 ack 40 ------- 0 1.0 0.0 28 59 r 2.7496 1 0 ack 40 ------- 0 1.0 0.0 23 52 + 2.7496 0 1 tcp 1000 ------- 0 0.0 1.0 31 60 - 2.7496 0 1 tcp 1000 ------- 0 0.0 1.0 31 60 v 2.7799999999999998 eval {set sim_annotation {Send Packet_31,32,33,34,35,36,37,38 : Keep maximum window size, 8}} r 2.788 0 1 tcp 1000 ------- 0 0.0 1.0 29 53 + 2.788 1 0 ack 40 ------- 0 1.0 0.0 29 61 - 2.788 1 0 ack 40 ------- 0 1.0 0.0 29 61 r 2.7896 1 0 ack 40 ------- 0 1.0 0.0 24 54 + 2.7896 0 1 tcp 1000 ------- 0 0.0 1.0 32 62 - 2.7896 0 1 tcp 1000 ------- 0 0.0 1.0 32 62 r 2.828 0 1 tcp 1000 ------- 0 0.0 1.0 30 55 + 2.828 1 0 ack 40 ------- 0 1.0 0.0 30 63 - 2.828 1 0 ack 40 ------- 0 1.0 0.0 30 63 r 2.8296 1 0 ack 40 ------- 0 1.0 0.0 25 56 + 2.8296 0 1 tcp 1000 ------- 0 0.0 1.0 33 64 - 2.8296 0 1 tcp 1000 ------- 0 0.0 1.0 33 64 r 2.8696 1 0 ack 40 ------- 0 1.0 0.0 26 57 + 2.8696 0 1 tcp 1000 ------- 0 0.0 1.0 34 65 - 2.8696 0 1 tcp 1000 ------- 0 0.0 1.0 34 65 r 2.9096 1 0 ack 40 ------- 0 1.0 0.0 27 58 + 2.9096 0 1 tcp 1000 ------- 0 0.0 1.0 35 66 - 2.9096 0 1 tcp 1000 ------- 0 0.0 1.0 35 66 r 2.9496 1 0 ack 40 ------- 0 1.0 0.0 28 59 + 2.9496 0 1 tcp 1000 ------- 0 0.0 1.0 36 67 - 2.9496 0 1 tcp 1000 ------- 0 0.0 1.0 36 67 r 2.9896 0 1 tcp 1000 ------- 0 0.0 1.0 31 60 + 2.9896 1 0 ack 40 ------- 0 1.0 0.0 31 68 - 2.9896 1 0 ack 40 ------- 0 1.0 0.0 31 68 r 2.9896 1 0 ack 40 ------- 0 1.0 0.0 29 61 + 2.9896 0 1 tcp 1000 ------- 0 0.0 1.0 37 69 - 2.9896 0 1 tcp 1000 ------- 0 0.0 1.0 37 69 v 3 eval {set sim_annotation {Receive Ack_31}} r 3.0296 0 1 tcp 1000 ------- 0 0.0 1.0 32 62 r 3.0296 1 0 ack 40 ------- 0 1.0 0.0 30 63 r 3.0696 0 1 tcp 1000 ------- 0 0.0 1.0 33 64 v 3.1000000000000001 eval {set sim_annotation {FTP stops}} r 3.1096 0 1 tcp 1000 ------- 0 0.0 1.0 34 65 r 3.1496 0 1 tcp 1000 ------- 0 0.0 1.0 35 66 r 3.1896 0 1 tcp 1000 ------- 0 0.0 1.0 36 67 r 3.1912 1 0 ack 40 ------- 0 1.0 0.0 31 68 r 3.2296 0 1 tcp 1000 ------- 0 0.0 1.0 37 69 nam-1.15/edu/A5-slow-start-loss.nam0000664000076400007660000004450506751715530015727 0ustar tomhnsnamV -t * -v 1.0a5 -a 1 -c 1 -F 2 -M 3 c -t * -i 0 -n black c -t * -i 1 -n red N -t * -S 0 -n {TCP session between node 0.0 and node 1.0} -p TCP -m {} N -t * -S 0 -h 25 N -t * -F 0 -M 0 -n tcp N -t * -F 1 -M 2 -n tcp_cong N -t * -F 0 -M 1 -n ack A -t * -n 1 -p 0 -o 255 -c 15 -a 1 A -t * -h 1 -m 127 -s 8 n -t * -a 0 -s 0 -S UP -v circle -c black n -t * -a 1 -s 1 -S UP -v circle -c black l -t * -s 0 -d 1 -S UP -r 200000 -D 0.20000000000000001 -c black -o right a -t 0.00000000000000000 -s 0 -d 1 -n tcp f -t 0.00000000000000000 -s 0 -d 1 -n cwnd_ -a tcp -v 1.000000 -T v v -t 0.00000000000000000 monitor_agent 0 tcp n -t 0 -s 0 -S DLABEL -l Sender -L "" n -t 0 -s 1 -S DLABEL -l Receiver -L "" v -t 0 sim_annotation 0 1 Slow Start with maximum window size 8 (in congestion) v -t 0.050000000000000003 sim_annotation 0.050000000000000003 2 FTP starts at 0.1 + -t 0.1 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -f 0 -m 0 -y {0 0} - -t 0.1 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} h -t 0.1 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {-1 -1} v -t 0.11 sim_annotation 0.11 3 Send Packet_0 : Initial window size = 1 v -t 0.34000000000000002 sim_annotation 0.34000000000000002 4 Receive Ack_0 r -t 0.34 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} + -t 0.34 -s 1 -d 0 -p ack -e 40 -c 0 -i 1 -a 0 -S 0 -y {0 0} - -t 0.34 -s 1 -d 0 -p ack -e 40 -c 0 -i 1 -a 0 -S 0 -f 0 -m 1 -y {0 0} h -t 0.34 -s 1 -d 0 -p ack -e 40 -c 0 -i 1 -a 0 -S 0 -y {-1 -1} r -t 0.5416 -s 1 -d 0 -p ack -e 40 -c 0 -i 1 -a 0 -S 0 -y {0 0} f -t 0.54160000000000008 -s 0 -d 1 -n cwnd_ -a tcp -v 2.000000 -o 1.000000 -T v + -t 0.5416 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -f 0 -m 0 -y {1 1} - -t 0.5416 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {1 1} h -t 0.5416 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {-1 -1} + -t 0.5416 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -f 0 -m 0 -y {2 2} v -t 0.56000000000000005 sim_annotation 0.56000000000000005 5 Send Packet_1,2 : Increase window size to 2 - -t 0.5816 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {2 2} h -t 0.5816 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {-1 -1} r -t 0.7816 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {1 1} + -t 0.7816 -s 1 -d 0 -p ack -e 40 -c 0 -i 4 -a 0 -S 0 -y {1 1} - -t 0.7816 -s 1 -d 0 -p ack -e 40 -c 0 -i 4 -a 0 -S 0 -f 0 -m 1 -y {1 1} h -t 0.7816 -s 1 -d 0 -p ack -e 40 -c 0 -i 4 -a 0 -S 0 -y {-1 -1} v -t 0.79000000000000004 sim_annotation 0.79000000000000004 6 Receive Ack_1,2 r -t 0.8216 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {2 2} + -t 0.8216 -s 1 -d 0 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -y {2 2} - -t 0.8216 -s 1 -d 0 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -f 0 -m 1 -y {2 2} h -t 0.8216 -s 1 -d 0 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -y {-1 -1} r -t 0.9832 -s 1 -d 0 -p ack -e 40 -c 0 -i 4 -a 0 -S 0 -y {1 1} f -t 0.98320000000000007 -s 0 -d 1 -n cwnd_ -a tcp -v 3.000000 -o 2.000000 -T v + -t 0.9832 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 6 -a 0 -S 0 -f 0 -m 0 -y {3 3} - -t 0.9832 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 6 -a 0 -S 0 -y {3 3} h -t 0.9832 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 6 -a 0 -S 0 -y {-1 -1} + -t 0.9832 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 7 -a 0 -S 0 -f 0 -m 0 -y {4 4} v -t 0.98999999999999999 sim_annotation 0.98999999999999999 7 Send Packet_3,4,5,6 : Increase window size to 4 r -t 1.0232 -s 1 -d 0 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -y {2 2} f -t 1.02320000000000011 -s 0 -d 1 -n cwnd_ -a tcp -v 4.000000 -o 3.000000 -T v + -t 1.0232 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 8 -a 0 -S 0 -f 0 -m 0 -y {5 5} + -t 1.0232 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 9 -a 0 -S 0 -f 0 -m 0 -y {6 6} - -t 1.0232 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 7 -a 0 -S 0 -y {4 4} h -t 1.0232 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 7 -a 0 -S 0 -y {-1 -1} - -t 1.0632 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 8 -a 0 -S 0 -y {5 5} h -t 1.0632 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 8 -a 0 -S 0 -y {-1 -1} - -t 1.1032 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 9 -a 0 -S 0 -y {6 6} h -t 1.1032 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 9 -a 0 -S 0 -y {-1 -1} r -t 1.2232 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 6 -a 0 -S 0 -y {3 3} + -t 1.2232 -s 1 -d 0 -p ack -e 40 -c 0 -i 10 -a 0 -S 0 -y {3 3} - -t 1.2232 -s 1 -d 0 -p ack -e 40 -c 0 -i 10 -a 0 -S 0 -f 0 -m 1 -y {3 3} h -t 1.2232 -s 1 -d 0 -p ack -e 40 -c 0 -i 10 -a 0 -S 0 -y {-1 -1} v -t 1.23 sim_annotation 1.23 8 Receive Ack_3,4,5,6 r -t 1.2632 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 7 -a 0 -S 0 -y {4 4} + -t 1.2632 -s 1 -d 0 -p ack -e 40 -c 0 -i 11 -a 0 -S 0 -y {4 4} - -t 1.2632 -s 1 -d 0 -p ack -e 40 -c 0 -i 11 -a 0 -S 0 -f 0 -m 1 -y {4 4} h -t 1.2632 -s 1 -d 0 -p ack -e 40 -c 0 -i 11 -a 0 -S 0 -y {-1 -1} r -t 1.3032 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 8 -a 0 -S 0 -y {5 5} + -t 1.3032 -s 1 -d 0 -p ack -e 40 -c 0 -i 12 -a 0 -S 0 -y {5 5} - -t 1.3032 -s 1 -d 0 -p ack -e 40 -c 0 -i 12 -a 0 -S 0 -f 0 -m 1 -y {5 5} h -t 1.3032 -s 1 -d 0 -p ack -e 40 -c 0 -i 12 -a 0 -S 0 -y {-1 -1} r -t 1.3432 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 9 -a 0 -S 0 -y {6 6} + -t 1.3432 -s 1 -d 0 -p ack -e 40 -c 0 -i 13 -a 0 -S 0 -y {6 6} - -t 1.3432 -s 1 -d 0 -p ack -e 40 -c 0 -i 13 -a 0 -S 0 -f 0 -m 1 -y {6 6} h -t 1.3432 -s 1 -d 0 -p ack -e 40 -c 0 -i 13 -a 0 -S 0 -y {-1 -1} r -t 1.4248 -s 1 -d 0 -p ack -e 40 -c 0 -i 10 -a 0 -S 0 -y {3 3} f -t 1.42480000000000007 -s 0 -d 1 -n cwnd_ -a tcp -v 5.000000 -o 4.000000 -T v + -t 1.4248 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 14 -a 0 -S 0 -f 0 -m 0 -y {7 7} - -t 1.4248 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 14 -a 0 -S 0 -y {7 7} h -t 1.4248 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 14 -a 0 -S 0 -y {-1 -1} + -t 1.4248 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 15 -a 0 -S 0 -f 0 -m 0 -y {8 8} v -t 1.4299999999999999 sim_annotation 1.4299999999999999 9 Send Packet_7,8,9,10,11,12,13,14 : Increase window size to 8 r -t 1.4648 -s 1 -d 0 -p ack -e 40 -c 0 -i 11 -a 0 -S 0 -y {4 4} f -t 1.46480000000000010 -s 0 -d 1 -n cwnd_ -a tcp -v 6.000000 -o 5.000000 -T v + -t 1.4648 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 16 -a 0 -S 0 -f 0 -m 0 -y {9 9} + -t 1.4648 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 17 -a 0 -S 0 -f 0 -m 0 -y {10 10} - -t 1.4648 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 15 -a 0 -S 0 -y {8 8} h -t 1.4648 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 15 -a 0 -S 0 -y {-1 -1} r -t 1.5048 -s 1 -d 0 -p ack -e 40 -c 0 -i 12 -a 0 -S 0 -y {5 5} f -t 1.50480000000000014 -s 0 -d 1 -n cwnd_ -a tcp -v 7.000000 -o 6.000000 -T v + -t 1.5048 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -f 0 -m 0 -y {11 11} + -t 1.5048 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 19 -a 0 -S 0 -f 0 -m 0 -y {12 12} - -t 1.5048 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 16 -a 0 -S 0 -y {9 9} h -t 1.5048 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 16 -a 0 -S 0 -y {-1 -1} r -t 1.5448 -s 1 -d 0 -p ack -e 40 -c 0 -i 13 -a 0 -S 0 -y {6 6} f -t 1.54480000000000017 -s 0 -d 1 -n cwnd_ -a tcp -v 8.000000 -o 7.000000 -T v + -t 1.5448 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 20 -a 0 -S 0 -f 0 -m 0 -y {13 13} + -t 1.5448 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 21 -a 0 -S 0 -f 0 -m 0 -y {14 14} - -t 1.5448 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 17 -a 0 -S 0 -y {10 10} h -t 1.5448 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 17 -a 0 -S 0 -y {-1 -1} - -t 1.5848 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {11 11} h -t 1.5848 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {-1 -1} - -t 1.6248 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 19 -a 0 -S 0 -y {12 12} h -t 1.6248 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 19 -a 0 -S 0 -y {-1 -1} r -t 1.6648 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 14 -a 0 -S 0 -y {7 7} + -t 1.6648 -s 1 -d 0 -p ack -e 40 -c 0 -i 22 -a 0 -S 0 -y {7 7} - -t 1.6648 -s 1 -d 0 -p ack -e 40 -c 0 -i 22 -a 0 -S 0 -f 0 -m 1 -y {7 7} h -t 1.6648 -s 1 -d 0 -p ack -e 40 -c 0 -i 22 -a 0 -S 0 -y {-1 -1} - -t 1.6648 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 20 -a 0 -S 0 -y {13 13} h -t 1.6648 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 20 -a 0 -S 0 -y {-1 -1} v -t 1.6699999999999999 sim_annotation 1.6699999999999999 10 Receive Ack_7,8,9,10,11,12,13,14 r -t 1.7048 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 15 -a 0 -S 0 -y {8 8} + -t 1.7048 -s 1 -d 0 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {8 8} - -t 1.7048 -s 1 -d 0 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -f 0 -m 1 -y {8 8} h -t 1.7048 -s 1 -d 0 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {-1 -1} - -t 1.7048 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 21 -a 0 -S 0 -y {14 14} h -t 1.7048 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 21 -a 0 -S 0 -y {-1 -1} r -t 1.7448 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 16 -a 0 -S 0 -y {9 9} + -t 1.7448 -s 1 -d 0 -p ack -e 40 -c 0 -i 24 -a 0 -S 0 -y {9 9} - -t 1.7448 -s 1 -d 0 -p ack -e 40 -c 0 -i 24 -a 0 -S 0 -f 0 -m 1 -y {9 9} h -t 1.7448 -s 1 -d 0 -p ack -e 40 -c 0 -i 24 -a 0 -S 0 -y {-1 -1} r -t 1.7848 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 17 -a 0 -S 0 -y {10 10} + -t 1.7848 -s 1 -d 0 -p ack -e 40 -c 0 -i 25 -a 0 -S 0 -y {10 10} - -t 1.7848 -s 1 -d 0 -p ack -e 40 -c 0 -i 25 -a 0 -S 0 -f 0 -m 1 -y {10 10} h -t 1.7848 -s 1 -d 0 -p ack -e 40 -c 0 -i 25 -a 0 -S 0 -y {-1 -1} r -t 1.8248 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {11 11} + -t 1.8248 -s 1 -d 0 -p ack -e 40 -c 0 -i 26 -a 0 -S 0 -y {11 11} - -t 1.8248 -s 1 -d 0 -p ack -e 40 -c 0 -i 26 -a 0 -S 0 -f 0 -m 1 -y {11 11} h -t 1.8248 -s 1 -d 0 -p ack -e 40 -c 0 -i 26 -a 0 -S 0 -y {-1 -1} r -t 1.8648 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 19 -a 0 -S 0 -y {12 12} + -t 1.8648 -s 1 -d 0 -p ack -e 40 -c 0 -i 27 -a 0 -S 0 -y {12 12} - -t 1.8648 -s 1 -d 0 -p ack -e 40 -c 0 -i 27 -a 0 -S 0 -f 0 -m 1 -y {12 12} h -t 1.8648 -s 1 -d 0 -p ack -e 40 -c 0 -i 27 -a 0 -S 0 -y {-1 -1} r -t 1.8664 -s 1 -d 0 -p ack -e 40 -c 0 -i 22 -a 0 -S 0 -y {7 7} f -t 1.86640000000000006 -s 0 -d 1 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 1.86640000000000006 -s 0 -d 1 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v + -t 1.8664 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 28 -a 0 -S 0 -f 0 -m 0 -y {15 15} - -t 1.8664 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 28 -a 0 -S 0 -y {15 15} h -t 1.8664 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 28 -a 0 -S 0 -y {-1 -1} v -t 1.8799999999999999 sim_annotation 1.8799999999999999 11 Send Packet_15 r -t 1.9048 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 20 -a 0 -S 0 -y {13 13} + -t 1.9048 -s 1 -d 0 -p ack -e 40 -c 0 -i 29 -a 0 -S 0 -y {13 13} - -t 1.9048 -s 1 -d 0 -p ack -e 40 -c 0 -i 29 -a 0 -S 0 -f 0 -m 1 -y {13 13} h -t 1.9048 -s 1 -d 0 -p ack -e 40 -c 0 -i 29 -a 0 -S 0 -y {-1 -1} r -t 1.9064 -s 1 -d 0 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {8 8} f -t 1.90640000000000009 -s 0 -d 1 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 1.90640000000000009 -s 0 -d 1 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v + -t 1.9064 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 30 -a 0 -S 0 -f 0 -m 0 -y {16 16} d -t 1.9064 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 30 -a 0 -S 0 -y {16 16} v -t 1.9199999999999999 sim_annotation 1.9199999999999999 12 Packet_16 is lost r -t 1.9448 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 21 -a 0 -S 0 -y {14 14} + -t 1.9448 -s 1 -d 0 -p ack -e 40 -c 0 -i 31 -a 0 -S 0 -y {14 14} - -t 1.9448 -s 1 -d 0 -p ack -e 40 -c 0 -i 31 -a 0 -S 0 -f 0 -m 1 -y {14 14} h -t 1.9448 -s 1 -d 0 -p ack -e 40 -c 0 -i 31 -a 0 -S 0 -y {-1 -1} r -t 1.9464 -s 1 -d 0 -p ack -e 40 -c 0 -i 24 -a 0 -S 0 -y {9 9} f -t 1.94640000000000013 -s 0 -d 1 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 1.94640000000000013 -s 0 -d 1 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v + -t 1.9464 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 32 -a 0 -S 0 -f 0 -m 0 -y {17 17} - -t 1.9464 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 32 -a 0 -S 0 -y {17 17} h -t 1.9464 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 32 -a 0 -S 0 -y {-1 -1} v -t 1.97 sim_annotation 1.97 13 Send Packet_17,18,19,20,21,22 : Keep maximum window size,8 r -t 1.9864 -s 1 -d 0 -p ack -e 40 -c 0 -i 25 -a 0 -S 0 -y {10 10} f -t 1.98640000000000017 -s 0 -d 1 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 1.98640000000000017 -s 0 -d 1 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v + -t 1.9864 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 33 -a 0 -S 0 -f 0 -m 0 -y {18 18} - -t 1.9864 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 33 -a 0 -S 0 -y {18 18} h -t 1.9864 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 33 -a 0 -S 0 -y {-1 -1} r -t 2.0264 -s 1 -d 0 -p ack -e 40 -c 0 -i 26 -a 0 -S 0 -y {11 11} f -t 2.02640000000000020 -s 0 -d 1 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 2.02640000000000020 -s 0 -d 1 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v + -t 2.0264 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 34 -a 0 -S 0 -f 0 -m 0 -y {19 19} - -t 2.0264 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 34 -a 0 -S 0 -y {19 19} h -t 2.0264 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 34 -a 0 -S 0 -y {-1 -1} r -t 2.0664 -s 1 -d 0 -p ack -e 40 -c 0 -i 27 -a 0 -S 0 -y {12 12} f -t 2.06640000000000024 -s 0 -d 1 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 2.06640000000000024 -s 0 -d 1 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v + -t 2.0664 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 35 -a 0 -S 0 -f 0 -m 0 -y {20 20} - -t 2.0664 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 35 -a 0 -S 0 -y {20 20} h -t 2.0664 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 35 -a 0 -S 0 -y {-1 -1} r -t 2.1064 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 28 -a 0 -S 0 -y {15 15} + -t 2.1064 -s 1 -d 0 -p ack -e 40 -c 0 -i 36 -a 0 -S 0 -y {15 15} - -t 2.1064 -s 1 -d 0 -p ack -e 40 -c 0 -i 36 -a 0 -S 0 -f 0 -m 1 -y {15 15} h -t 2.1064 -s 1 -d 0 -p ack -e 40 -c 0 -i 36 -a 0 -S 0 -y {-1 -1} r -t 2.1064 -s 1 -d 0 -p ack -e 40 -c 0 -i 29 -a 0 -S 0 -y {13 13} f -t 2.10640000000000027 -s 0 -d 1 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 2.10640000000000027 -s 0 -d 1 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v + -t 2.1064 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 37 -a 0 -S 0 -f 0 -m 0 -y {21 21} - -t 2.1064 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 37 -a 0 -S 0 -y {21 21} h -t 2.1064 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 37 -a 0 -S 0 -y {-1 -1} v -t 2.1099999999999999 sim_annotation 2.1099999999999999 14 Receive Ack_15s r -t 2.1464 -s 1 -d 0 -p ack -e 40 -c 0 -i 31 -a 0 -S 0 -y {14 14} f -t 2.14640000000000031 -s 0 -d 1 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 2.14640000000000031 -s 0 -d 1 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v + -t 2.1464 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 38 -a 0 -S 0 -f 0 -m 0 -y {22 22} - -t 2.1464 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 38 -a 0 -S 0 -y {22 22} h -t 2.1464 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 38 -a 0 -S 0 -y {-1 -1} r -t 2.1864 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 32 -a 0 -S 0 -y {17 17} + -t 2.1864 -s 1 -d 0 -p ack -e 40 -c 0 -i 39 -a 0 -S 0 -y {15 15} - -t 2.1864 -s 1 -d 0 -p ack -e 40 -c 0 -i 39 -a 0 -S 0 -f 0 -m 1 -y {15 15} h -t 2.1864 -s 1 -d 0 -p ack -e 40 -c 0 -i 39 -a 0 -S 0 -y {-1 -1} v -t 2.2000000000000002 sim_annotation 2.2000000000000002 15 Receive 6 more Ack_15s r -t 2.2264 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 33 -a 0 -S 0 -y {18 18} + -t 2.2264 -s 1 -d 0 -p ack -e 40 -c 0 -i 40 -a 0 -S 0 -y {15 15} - -t 2.2264 -s 1 -d 0 -p ack -e 40 -c 0 -i 40 -a 0 -S 0 -f 0 -m 1 -y {15 15} h -t 2.2264 -s 1 -d 0 -p ack -e 40 -c 0 -i 40 -a 0 -S 0 -y {-1 -1} r -t 2.2664 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 34 -a 0 -S 0 -y {19 19} + -t 2.2664 -s 1 -d 0 -p ack -e 40 -c 0 -i 41 -a 0 -S 0 -y {15 15} - -t 2.2664 -s 1 -d 0 -p ack -e 40 -c 0 -i 41 -a 0 -S 0 -f 0 -m 1 -y {15 15} h -t 2.2664 -s 1 -d 0 -p ack -e 40 -c 0 -i 41 -a 0 -S 0 -y {-1 -1} r -t 2.3064 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 35 -a 0 -S 0 -y {20 20} + -t 2.3064 -s 1 -d 0 -p ack -e 40 -c 0 -i 42 -a 0 -S 0 -y {15 15} - -t 2.3064 -s 1 -d 0 -p ack -e 40 -c 0 -i 42 -a 0 -S 0 -f 0 -m 1 -y {15 15} h -t 2.3064 -s 1 -d 0 -p ack -e 40 -c 0 -i 42 -a 0 -S 0 -y {-1 -1} r -t 2.308 -s 1 -d 0 -p ack -e 40 -c 0 -i 36 -a 0 -S 0 -y {15 15} f -t 2.30800000000000027 -s 0 -d 1 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 2.30800000000000027 -s 0 -d 1 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v + -t 2.308 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 43 -a 0 -S 0 -f 0 -m 0 -y {23 23} - -t 2.308 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 43 -a 0 -S 0 -y {23 23} h -t 2.308 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 43 -a 0 -S 0 -y {-1 -1} v -t 2.3199999999999998 sim_annotation 2.3199999999999998 16 Send Packet_23 : Send only 1 packet cause of window size r -t 2.3464 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 37 -a 0 -S 0 -y {21 21} + -t 2.3464 -s 1 -d 0 -p ack -e 40 -c 0 -i 44 -a 0 -S 0 -y {15 15} - -t 2.3464 -s 1 -d 0 -p ack -e 40 -c 0 -i 44 -a 0 -S 0 -f 0 -m 1 -y {15 15} h -t 2.3464 -s 1 -d 0 -p ack -e 40 -c 0 -i 44 -a 0 -S 0 -y {-1 -1} r -t 2.3864 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 38 -a 0 -S 0 -y {22 22} + -t 2.3864 -s 1 -d 0 -p ack -e 40 -c 0 -i 45 -a 0 -S 0 -y {15 15} - -t 2.3864 -s 1 -d 0 -p ack -e 40 -c 0 -i 45 -a 0 -S 0 -f 0 -m 1 -y {15 15} h -t 2.3864 -s 1 -d 0 -p ack -e 40 -c 0 -i 45 -a 0 -S 0 -y {-1 -1} r -t 2.388 -s 1 -d 0 -p ack -e 40 -c 0 -i 39 -a 0 -S 0 -y {15 15} r -t 2.428 -s 1 -d 0 -p ack -e 40 -c 0 -i 40 -a 0 -S 0 -y {15 15} r -t 2.468 -s 1 -d 0 -p ack -e 40 -c 0 -i 41 -a 0 -S 0 -y {15 15} f -t 2.46800000000000042 -s 0 -d 1 -n cwnd_ -a tcp -v 1.000000 -o 8.000000 -T v + -t 2.468 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 46 -a 0 -S 0 -f 1 -m 2 -y {16 16} - -t 2.468 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 46 -a 0 -S 0 -f 1 -y {16 16} h -t 2.468 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 46 -a 0 -S 0 -f 1 -y {-1 -1} v -t 2.48 sim_annotation 2.48 17 Re-send lost Packet_16 : Set window size to 1 (Slow Start Restart) r -t 2.508 -s 1 -d 0 -p ack -e 40 -c 0 -i 42 -a 0 -S 0 -y {15 15} r -t 2.548 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 43 -a 0 -S 0 -y {23 23} + -t 2.548 -s 1 -d 0 -p ack -e 40 -c 0 -i 47 -a 0 -S 0 -y {15 15} - -t 2.548 -s 1 -d 0 -p ack -e 40 -c 0 -i 47 -a 0 -S 0 -f 0 -m 1 -y {15 15} h -t 2.548 -s 1 -d 0 -p ack -e 40 -c 0 -i 47 -a 0 -S 0 -y {-1 -1} r -t 2.548 -s 1 -d 0 -p ack -e 40 -c 0 -i 44 -a 0 -S 0 -y {15 15} v -t 2.5499999999999998 sim_annotation 2.5499999999999998 18 Receive Ack_15 r -t 2.588 -s 1 -d 0 -p ack -e 40 -c 0 -i 45 -a 0 -S 0 -y {15 15} r -t 2.708 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 46 -a 0 -S 0 -f 1 -y {16 16} + -t 2.708 -s 1 -d 0 -p ack -e 40 -c 0 -i 48 -a 0 -S 0 -y {23 23} - -t 2.708 -s 1 -d 0 -p ack -e 40 -c 0 -i 48 -a 0 -S 0 -f 0 -m 1 -y {23 23} h -t 2.708 -s 1 -d 0 -p ack -e 40 -c 0 -i 48 -a 0 -S 0 -y {-1 -1} v -t 2.7200000000000002 sim_annotation 2.7200000000000002 19 Receive Ack_23 r -t 2.7496 -s 1 -d 0 -p ack -e 40 -c 0 -i 47 -a 0 -S 0 -y {15 15} r -t 2.9096 -s 1 -d 0 -p ack -e 40 -c 0 -i 48 -a 0 -S 0 -y {23 23} f -t 2.90960000000000063 -s 0 -d 1 -n cwnd_ -a tcp -v 2.000000 -o 1.000000 -T v + -t 2.9096 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 49 -a 0 -S 0 -f 0 -m 0 -y {24 24} - -t 2.9096 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 49 -a 0 -S 0 -y {24 24} h -t 2.9096 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 49 -a 0 -S 0 -y {-1 -1} + -t 2.9096 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 50 -a 0 -S 0 -f 0 -m 0 -y {25 25} v -t 2.9100000000000001 sim_annotation 2.9100000000000001 20 Send Packet_24,25 : Increase window size to 2 - -t 2.9496 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 50 -a 0 -S 0 -y {25 25} h -t 2.9496 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 50 -a 0 -S 0 -y {-1 -1} v -t 3.1000000000000001 sim_annotation 3.1000000000000001 21 FTP stops r -t 3.1496 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 49 -a 0 -S 0 -y {24 24} r -t 3.1896 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 50 -a 0 -S 0 -y {25 25} nam-1.15/edu/A5-slow-start-loss.tcl0000664000076400007660000000531607024407016015722 0ustar tomhnsnam# slow start mechanism with packet loss # features : labeling, annotation, nam-graph, and window size monitoring set ns [new Simulator] set n0 [$ns node] set n1 [$ns node] $ns at 0.0 "$n0 label Sender" $ns at 0.0 "$n1 label Receiver" set nf [open A5-slow-start-loss.nam w] $ns namtrace-all $nf set f [open A5-slow-start-loss.tr w] $ns trace-all $f $ns duplex-link $n0 $n1 0.2Mb 200ms DropTail $ns duplex-link-op $n0 $n1 orient right $ns queue-limit $n0 $n1 10 Agent/TCP set nam_tracevar_ true set tcp [new Agent/TCP] $tcp set maxcwnd_ 8 $tcp set windowOption_ 1 $ns attach-agent $n0 $tcp set sink [new Agent/TCPSink] $ns attach-agent $n1 $sink $ns connect $tcp $sink set ftp [new Application/FTP] $ftp attach-agent $tcp $ns add-agent-trace $tcp tcp $ns monitor-agent-trace $tcp $tcp tracevar cwnd_ $ns at 0.1 "$ftp start" # Packet loss $ns at 1.87 "$ns queue-limit $n0 $n1 0" $ns at 1.91 "$ns queue-limit $n0 $n1 10" $ns at 3.0 "$ns detach-agent $n0 $tcp ; $ns detach-agent $n1 $sink" $ns at 3.5 "finish" $ns at 0.0 "$ns trace-annotate \"Slow Start with maximum window size 8 (in congestion)\"" $ns at 0.05 "$ns trace-annotate \"FTP starts at 0.1\"" $ns at 0.11 "$ns trace-annotate \"Send Packet_0 : Initial window size = 1\"" $ns at 0.34 "$ns trace-annotate \"Receive Ack_0\"" $ns at 0.56 "$ns trace-annotate \"Send Packet_1,2 : Increase window size to 2\"" $ns at 0.79 "$ns trace-annotate \"Receive Ack_1,2\"" $ns at 0.99 "$ns trace-annotate \"Send Packet_3,4,5,6 : Increase window size to 4\"" $ns at 1.23 "$ns trace-annotate \"Receive Ack_3,4,5,6 \"" $ns at 1.43 "$ns trace-annotate \"Send Packet_7,8,9,10,11,12,13,14 : Increase window size to 8\"" $ns at 1.67 "$ns trace-annotate \"Receive Ack_7,8,9,10,11,12,13,14\"" $ns at 1.88 "$ns trace-annotate \"Send Packet_15\"" $ns at 1.92 "$ns trace-annotate \"Packet_16 is lost\"" $ns at 1.97 "$ns trace-annotate \"Send Packet_17,18,19,20,21,22 : Keep maximum window size,8\"" $ns at 2.11 "$ns trace-annotate \"Receive Ack_15s\"" $ns at 2.20 "$ns trace-annotate \"Receive 6 more Ack_15s\"" $ns at 2.32 "$ns trace-annotate \"Send Packet_23\ : Send only 1 packet cause of window size\"" $ns at 2.48 "$ns trace-annotate \"Re-send lost Packet_16 : Set window size to 1 (Slow Start Restart)\"" $ns at 2.55 "$ns trace-annotate \"Receive Ack_15\"" $ns at 2.72 "$ns trace-annotate \"Receive Ack_23\"" $ns at 2.91 "$ns trace-annotate \"Send Packet_24,25 : Increase window size to 2\"" $ns at 3.1 "$ns trace-annotate \"FTP stops\"" proc finish {} { global ns nf $ns flush-trace close $nf puts "filtering..." exec tclsh ../bin/namfilter.tcl A5-slow-start-loss.nam puts "running nam..." exec nam A5-slow-start-loss.nam & exit 0 } $ns run nam-1.15/edu/A5-slow-start-loss.tr0000664000076400007660000002027606751715530015600 0ustar tomhnsnamv 0 eval {set sim_annotation {Slow Start with maximum window size 8 (in congestion)}} v 0.050000000000000003 eval {set sim_annotation {FTP starts at 0.1}} + 0.1 0 1 tcp 1000 ------- 0 0.0 1.0 0 0 - 0.1 0 1 tcp 1000 ------- 0 0.0 1.0 0 0 v 0.11 eval {set sim_annotation {Send Packet_0 : Initial window size = 1}} v 0.34000000000000002 eval {set sim_annotation {Receive Ack_0}} r 0.34 0 1 tcp 1000 ------- 0 0.0 1.0 0 0 + 0.34 1 0 ack 40 ------- 0 1.0 0.0 0 1 - 0.34 1 0 ack 40 ------- 0 1.0 0.0 0 1 r 0.5416 1 0 ack 40 ------- 0 1.0 0.0 0 1 + 0.5416 0 1 tcp 1000 ------- 0 0.0 1.0 1 2 - 0.5416 0 1 tcp 1000 ------- 0 0.0 1.0 1 2 + 0.5416 0 1 tcp 1000 ------- 0 0.0 1.0 2 3 v 0.56000000000000005 eval {set sim_annotation {Send Packet_1,2 : Increase window size to 2}} - 0.5816 0 1 tcp 1000 ------- 0 0.0 1.0 2 3 r 0.7816 0 1 tcp 1000 ------- 0 0.0 1.0 1 2 + 0.7816 1 0 ack 40 ------- 0 1.0 0.0 1 4 - 0.7816 1 0 ack 40 ------- 0 1.0 0.0 1 4 v 0.79000000000000004 eval {set sim_annotation {Receive Ack_1,2}} r 0.8216 0 1 tcp 1000 ------- 0 0.0 1.0 2 3 + 0.8216 1 0 ack 40 ------- 0 1.0 0.0 2 5 - 0.8216 1 0 ack 40 ------- 0 1.0 0.0 2 5 r 0.9832 1 0 ack 40 ------- 0 1.0 0.0 1 4 + 0.9832 0 1 tcp 1000 ------- 0 0.0 1.0 3 6 - 0.9832 0 1 tcp 1000 ------- 0 0.0 1.0 3 6 + 0.9832 0 1 tcp 1000 ------- 0 0.0 1.0 4 7 v 0.98999999999999999 eval {set sim_annotation {Send Packet_3,4,5,6 : Increase window size to 4}} r 1.0232 1 0 ack 40 ------- 0 1.0 0.0 2 5 + 1.0232 0 1 tcp 1000 ------- 0 0.0 1.0 5 8 + 1.0232 0 1 tcp 1000 ------- 0 0.0 1.0 6 9 - 1.0232 0 1 tcp 1000 ------- 0 0.0 1.0 4 7 - 1.0632 0 1 tcp 1000 ------- 0 0.0 1.0 5 8 - 1.1032 0 1 tcp 1000 ------- 0 0.0 1.0 6 9 r 1.2232 0 1 tcp 1000 ------- 0 0.0 1.0 3 6 + 1.2232 1 0 ack 40 ------- 0 1.0 0.0 3 10 - 1.2232 1 0 ack 40 ------- 0 1.0 0.0 3 10 v 1.23 eval {set sim_annotation {Receive Ack_3,4,5,6 }} r 1.2632 0 1 tcp 1000 ------- 0 0.0 1.0 4 7 + 1.2632 1 0 ack 40 ------- 0 1.0 0.0 4 11 - 1.2632 1 0 ack 40 ------- 0 1.0 0.0 4 11 r 1.3032 0 1 tcp 1000 ------- 0 0.0 1.0 5 8 + 1.3032 1 0 ack 40 ------- 0 1.0 0.0 5 12 - 1.3032 1 0 ack 40 ------- 0 1.0 0.0 5 12 r 1.3432 0 1 tcp 1000 ------- 0 0.0 1.0 6 9 + 1.3432 1 0 ack 40 ------- 0 1.0 0.0 6 13 - 1.3432 1 0 ack 40 ------- 0 1.0 0.0 6 13 r 1.4248 1 0 ack 40 ------- 0 1.0 0.0 3 10 + 1.4248 0 1 tcp 1000 ------- 0 0.0 1.0 7 14 - 1.4248 0 1 tcp 1000 ------- 0 0.0 1.0 7 14 + 1.4248 0 1 tcp 1000 ------- 0 0.0 1.0 8 15 v 1.4299999999999999 eval {set sim_annotation {Send Packet_7,8,9,10,11,12,13,14 : Increase window size to 8}} r 1.4648 1 0 ack 40 ------- 0 1.0 0.0 4 11 + 1.4648 0 1 tcp 1000 ------- 0 0.0 1.0 9 16 + 1.4648 0 1 tcp 1000 ------- 0 0.0 1.0 10 17 - 1.4648 0 1 tcp 1000 ------- 0 0.0 1.0 8 15 r 1.5048 1 0 ack 40 ------- 0 1.0 0.0 5 12 + 1.5048 0 1 tcp 1000 ------- 0 0.0 1.0 11 18 + 1.5048 0 1 tcp 1000 ------- 0 0.0 1.0 12 19 - 1.5048 0 1 tcp 1000 ------- 0 0.0 1.0 9 16 r 1.5448 1 0 ack 40 ------- 0 1.0 0.0 6 13 + 1.5448 0 1 tcp 1000 ------- 0 0.0 1.0 13 20 + 1.5448 0 1 tcp 1000 ------- 0 0.0 1.0 14 21 - 1.5448 0 1 tcp 1000 ------- 0 0.0 1.0 10 17 - 1.5848 0 1 tcp 1000 ------- 0 0.0 1.0 11 18 - 1.6248 0 1 tcp 1000 ------- 0 0.0 1.0 12 19 r 1.6648 0 1 tcp 1000 ------- 0 0.0 1.0 7 14 + 1.6648 1 0 ack 40 ------- 0 1.0 0.0 7 22 - 1.6648 1 0 ack 40 ------- 0 1.0 0.0 7 22 - 1.6648 0 1 tcp 1000 ------- 0 0.0 1.0 13 20 v 1.6699999999999999 eval {set sim_annotation {Receive Ack_7,8,9,10,11,12,13,14}} r 1.7048 0 1 tcp 1000 ------- 0 0.0 1.0 8 15 + 1.7048 1 0 ack 40 ------- 0 1.0 0.0 8 23 - 1.7048 1 0 ack 40 ------- 0 1.0 0.0 8 23 - 1.7048 0 1 tcp 1000 ------- 0 0.0 1.0 14 21 r 1.7448 0 1 tcp 1000 ------- 0 0.0 1.0 9 16 + 1.7448 1 0 ack 40 ------- 0 1.0 0.0 9 24 - 1.7448 1 0 ack 40 ------- 0 1.0 0.0 9 24 r 1.7848 0 1 tcp 1000 ------- 0 0.0 1.0 10 17 + 1.7848 1 0 ack 40 ------- 0 1.0 0.0 10 25 - 1.7848 1 0 ack 40 ------- 0 1.0 0.0 10 25 r 1.8248 0 1 tcp 1000 ------- 0 0.0 1.0 11 18 + 1.8248 1 0 ack 40 ------- 0 1.0 0.0 11 26 - 1.8248 1 0 ack 40 ------- 0 1.0 0.0 11 26 r 1.8648 0 1 tcp 1000 ------- 0 0.0 1.0 12 19 + 1.8648 1 0 ack 40 ------- 0 1.0 0.0 12 27 - 1.8648 1 0 ack 40 ------- 0 1.0 0.0 12 27 r 1.8664 1 0 ack 40 ------- 0 1.0 0.0 7 22 + 1.8664 0 1 tcp 1000 ------- 0 0.0 1.0 15 28 - 1.8664 0 1 tcp 1000 ------- 0 0.0 1.0 15 28 v 1.8799999999999999 eval {set sim_annotation {Send Packet_15}} r 1.9048 0 1 tcp 1000 ------- 0 0.0 1.0 13 20 + 1.9048 1 0 ack 40 ------- 0 1.0 0.0 13 29 - 1.9048 1 0 ack 40 ------- 0 1.0 0.0 13 29 r 1.9064 1 0 ack 40 ------- 0 1.0 0.0 8 23 + 1.9064 0 1 tcp 1000 ------- 0 0.0 1.0 16 30 d 1.9064 0 1 tcp 1000 ------- 0 0.0 1.0 16 30 v 1.9199999999999999 eval {set sim_annotation {Packet_16 is lost}} r 1.9448 0 1 tcp 1000 ------- 0 0.0 1.0 14 21 + 1.9448 1 0 ack 40 ------- 0 1.0 0.0 14 31 - 1.9448 1 0 ack 40 ------- 0 1.0 0.0 14 31 r 1.9464 1 0 ack 40 ------- 0 1.0 0.0 9 24 + 1.9464 0 1 tcp 1000 ------- 0 0.0 1.0 17 32 - 1.9464 0 1 tcp 1000 ------- 0 0.0 1.0 17 32 v 1.97 eval {set sim_annotation {Send Packet_17,18,19,20,21,22 : Keep maximum window size,8}} r 1.9864 1 0 ack 40 ------- 0 1.0 0.0 10 25 + 1.9864 0 1 tcp 1000 ------- 0 0.0 1.0 18 33 - 1.9864 0 1 tcp 1000 ------- 0 0.0 1.0 18 33 r 2.0264 1 0 ack 40 ------- 0 1.0 0.0 11 26 + 2.0264 0 1 tcp 1000 ------- 0 0.0 1.0 19 34 - 2.0264 0 1 tcp 1000 ------- 0 0.0 1.0 19 34 r 2.0664 1 0 ack 40 ------- 0 1.0 0.0 12 27 + 2.0664 0 1 tcp 1000 ------- 0 0.0 1.0 20 35 - 2.0664 0 1 tcp 1000 ------- 0 0.0 1.0 20 35 r 2.1064 0 1 tcp 1000 ------- 0 0.0 1.0 15 28 + 2.1064 1 0 ack 40 ------- 0 1.0 0.0 15 36 - 2.1064 1 0 ack 40 ------- 0 1.0 0.0 15 36 r 2.1064 1 0 ack 40 ------- 0 1.0 0.0 13 29 + 2.1064 0 1 tcp 1000 ------- 0 0.0 1.0 21 37 - 2.1064 0 1 tcp 1000 ------- 0 0.0 1.0 21 37 v 2.1099999999999999 eval {set sim_annotation {Receive Ack_15s}} r 2.1464 1 0 ack 40 ------- 0 1.0 0.0 14 31 + 2.1464 0 1 tcp 1000 ------- 0 0.0 1.0 22 38 - 2.1464 0 1 tcp 1000 ------- 0 0.0 1.0 22 38 r 2.1864 0 1 tcp 1000 ------- 0 0.0 1.0 17 32 + 2.1864 1 0 ack 40 ------- 0 1.0 0.0 15 39 - 2.1864 1 0 ack 40 ------- 0 1.0 0.0 15 39 v 2.2000000000000002 eval {set sim_annotation {Receive 6 more Ack_15s}} r 2.2264 0 1 tcp 1000 ------- 0 0.0 1.0 18 33 + 2.2264 1 0 ack 40 ------- 0 1.0 0.0 15 40 - 2.2264 1 0 ack 40 ------- 0 1.0 0.0 15 40 r 2.2664 0 1 tcp 1000 ------- 0 0.0 1.0 19 34 + 2.2664 1 0 ack 40 ------- 0 1.0 0.0 15 41 - 2.2664 1 0 ack 40 ------- 0 1.0 0.0 15 41 r 2.3064 0 1 tcp 1000 ------- 0 0.0 1.0 20 35 + 2.3064 1 0 ack 40 ------- 0 1.0 0.0 15 42 - 2.3064 1 0 ack 40 ------- 0 1.0 0.0 15 42 r 2.308 1 0 ack 40 ------- 0 1.0 0.0 15 36 + 2.308 0 1 tcp 1000 ------- 0 0.0 1.0 23 43 - 2.308 0 1 tcp 1000 ------- 0 0.0 1.0 23 43 v 2.3199999999999998 eval {set sim_annotation {Send Packet_23 : Send only 1 packet cause of window size}} r 2.3464 0 1 tcp 1000 ------- 0 0.0 1.0 21 37 + 2.3464 1 0 ack 40 ------- 0 1.0 0.0 15 44 - 2.3464 1 0 ack 40 ------- 0 1.0 0.0 15 44 r 2.3864 0 1 tcp 1000 ------- 0 0.0 1.0 22 38 + 2.3864 1 0 ack 40 ------- 0 1.0 0.0 15 45 - 2.3864 1 0 ack 40 ------- 0 1.0 0.0 15 45 r 2.388 1 0 ack 40 ------- 0 1.0 0.0 15 39 r 2.428 1 0 ack 40 ------- 0 1.0 0.0 15 40 r 2.468 1 0 ack 40 ------- 0 1.0 0.0 15 41 + 2.468 0 1 tcp 1000 ---A--- 0 0.0 1.0 16 46 - 2.468 0 1 tcp 1000 ---A--- 0 0.0 1.0 16 46 v 2.48 eval {set sim_annotation {Re-send lost Packet_16 : Set window size to 1 (Slow Start Restart)}} r 2.508 1 0 ack 40 ------- 0 1.0 0.0 15 42 r 2.548 0 1 tcp 1000 ------- 0 0.0 1.0 23 43 + 2.548 1 0 ack 40 ------- 0 1.0 0.0 15 47 - 2.548 1 0 ack 40 ------- 0 1.0 0.0 15 47 r 2.548 1 0 ack 40 ------- 0 1.0 0.0 15 44 v 2.5499999999999998 eval {set sim_annotation {Receive Ack_15}} r 2.588 1 0 ack 40 ------- 0 1.0 0.0 15 45 r 2.708 0 1 tcp 1000 ---A--- 0 0.0 1.0 16 46 + 2.708 1 0 ack 40 ------- 0 1.0 0.0 23 48 - 2.708 1 0 ack 40 ------- 0 1.0 0.0 23 48 v 2.7200000000000002 eval {set sim_annotation {Receive Ack_23}} r 2.7496 1 0 ack 40 ------- 0 1.0 0.0 15 47 r 2.9096 1 0 ack 40 ------- 0 1.0 0.0 23 48 + 2.9096 0 1 tcp 1000 ------- 0 0.0 1.0 24 49 - 2.9096 0 1 tcp 1000 ------- 0 0.0 1.0 24 49 + 2.9096 0 1 tcp 1000 ------- 0 0.0 1.0 25 50 v 2.9100000000000001 eval {set sim_annotation {Send Packet_24,25 : Increase window size to 2}} - 2.9496 0 1 tcp 1000 ------- 0 0.0 1.0 25 50 v 3.1000000000000001 eval {set sim_annotation {FTP stops}} r 3.1496 0 1 tcp 1000 ------- 0 0.0 1.0 24 49 r 3.1896 0 1 tcp 1000 ------- 0 0.0 1.0 25 50 nam-1.15/edu/B0-README0000664000076400007660000000531206756707276013017 0ustar tomhnsnam[ August 1999 ] Following tcl files are ns-scripts for Directed Research with Dr.Heidemann. You could see the explanation about those files at http://www-scf.usc.edu/~hyunahpa/D-Research/DR-home.html There are 3 kinds of files per each mechanism, which are xx.tcl, xx.nam, and xx.tr. All of the scripts whose file name start with 'B#- ' have same configuration, which has 6 nodes and 5 linkes like this.. There are 2 flows which are TCP (between s1 & s3) and CBR (between s2 & s4). s1 s3 \ / r1 ----------r2 / \ s2 s4 *** for better viewing, adjust Step from default 2.0ms to 1.3ms *** FILE NAME DESCRIPTION -------------------------------------------------------------------------------- B0-README This file B1-stop-n-wait Stop-and-wait protocol between s1 and s3. feature : label, annotation, nam-graph, and cwnd monitor To see nam-graph, click 'Active Sessions' under 'Analysis' in the nam menu, then click 'TCP session' B2-stop-n-wait-loss Stop-and-wait protocol in congestion. feature : label, annotation, nam-graph, and cwnd monitor To see nam-graph, click 'Active Sessions' under 'Analysis' in the nam menu, then click 'TCP session' B3-sliding-window Sliding-window protocol between s1 and s3. feature : label, annotation, nam-graph, and cwnd monitor To see nam-graph, click 'Active Sessions' under 'Analysis' in the nam menu, then click 'TCP session' B4-sliding-window-loss Sliding-window protocol in congestion. feature : label, annotation, nam-graph, and cwnd monitor To see nam-graph, click 'Active Sessions' under 'Analysis' in the nam menu, then click 'TCP session' B5-slow-start Slow start protocol between s1 and s3. feature : label, annotation, nam-graph, and cwnd monitor To see nam-graph, click 'Active Sessions' under 'Analysis' in the nam menu, then click 'TCP session' B6-slow-start-loss Slow start protocol with a packet loss. feature : label, annotation, nam-graph, and cwnd monitor To see nam-graph, click 'Active Sessions' under 'Analysis' in the nam menu, then click 'TCP session' --------------------------------------------------------------------------------------- written by Hyunah Park ( hyunahpa@usc.edu ) nam-1.15/edu/B1-stop-n-wait.nam0000664000076400007660000007310406751716006015005 0ustar tomhnsnamV -t * -v 1.0a5 -a 1 -c 1 -F 1 -M 2 c -t * -i 0 -n black N -t * -S 0 -n {TCP session between node 0.0 and node 4.0} -p TCP -m {} N -t * -S 0 -h 4 N -t * -F 0 -M 0 -n tcp N -t * -F 0 -M 1 -n ack A -t * -n 1 -p 0 -o 255 -c 15 -a 1 A -t * -h 1 -m 127 -s 8 n -t * -a 4 -s 4 -S UP -v circle -c black n -t * -a 0 -s 0 -S UP -v circle -c black n -t * -a 5 -s 5 -S UP -v circle -c red n -t * -a 1 -s 1 -S UP -v circle -c red n -t * -a 2 -s 2 -S UP -v rectangular -c blue n -t * -a 3 -s 3 -S UP -v rectangular -c blue l -t * -s 0 -d 2 -S UP -r 500000 -D 0.050000000000000003 -c black -o right-down l -t * -s 1 -d 2 -S UP -r 500000 -D 0.050000000000000003 -c black -o right-up l -t * -s 2 -d 3 -S UP -r 500000 -D 0.050000000000000003 -c black -o right l -t * -s 3 -d 4 -S UP -r 500000 -D 0.050000000000000003 -c black -o right-up l -t * -s 3 -d 5 -S UP -r 500000 -D 0.050000000000000003 -c black -o right-down q -t * -s 3 -d 2 -a 0.5 q -t * -s 2 -d 3 -a 0.5 a -t 0.00000000000000000 -s 0 -d 4 -n tcp f -t 0.00000000000000000 -s 0 -d 4 -n cwnd_ -a tcp -v 1.000000 -T v v -t 0.00000000000000000 monitor_agent 0 tcp n -t 0 -s 0 -S DLABEL -l Sender -L "" n -t 0 -s 1 -S DLABEL -l CBR-sender -L "" n -t 0 -s 4 -S DLABEL -l Receiver -L "" n -t 0 -s 5 -S DLABEL -l CBR-receiver -L "" v -t 0 sim_annotation 0 1 Stop and Wait with packet loss v -t 0.050000000000000003 sim_annotation 0.050000000000000003 2 FTP starts at 0.1 + -t 0.1 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -f 0 -m 0 -y {0 0} - -t 0.1 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} h -t 0.1 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {-1 -1} + -t 0.1 -s 1 -d 2 -p cbr -e 500 -c 1 -i 1 -a 1 - -t 0.1 -s 1 -d 2 -p cbr -e 500 -c 1 -i 1 -a 1 h -t 0.1 -s 1 -d 2 -p cbr -e 500 -c 1 -i 1 -a 1 v -t 0.11 sim_annotation 0.11 3 Send Packet_0 + -t 0.15 -s 1 -d 2 -p cbr -e 500 -c 1 -i 2 -a 1 - -t 0.15 -s 1 -d 2 -p cbr -e 500 -c 1 -i 2 -a 1 h -t 0.15 -s 1 -d 2 -p cbr -e 500 -c 1 -i 2 -a 1 r -t 0.158 -s 1 -d 2 -p cbr -e 500 -c 1 -i 1 -a 1 + -t 0.158 -s 2 -d 3 -p cbr -e 500 -c 1 -i 1 -a 1 - -t 0.158 -s 2 -d 3 -p cbr -e 500 -c 1 -i 1 -a 1 h -t 0.158 -s 2 -d 3 -p cbr -e 500 -c 1 -i 1 -a 1 r -t 0.166 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} + -t 0.166 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} - -t 0.166 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} h -t 0.166 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {-1 -1} + -t 0.2 -s 1 -d 2 -p cbr -e 500 -c 1 -i 3 -a 1 - -t 0.2 -s 1 -d 2 -p cbr -e 500 -c 1 -i 3 -a 1 h -t 0.2 -s 1 -d 2 -p cbr -e 500 -c 1 -i 3 -a 1 r -t 0.208 -s 1 -d 2 -p cbr -e 500 -c 1 -i 2 -a 1 + -t 0.208 -s 2 -d 3 -p cbr -e 500 -c 1 -i 2 -a 1 - -t 0.208 -s 2 -d 3 -p cbr -e 500 -c 1 -i 2 -a 1 h -t 0.208 -s 2 -d 3 -p cbr -e 500 -c 1 -i 2 -a 1 r -t 0.216 -s 2 -d 3 -p cbr -e 500 -c 1 -i 1 -a 1 + -t 0.216 -s 3 -d 5 -p cbr -e 500 -c 1 -i 1 -a 1 - -t 0.216 -s 3 -d 5 -p cbr -e 500 -c 1 -i 1 -a 1 h -t 0.216 -s 3 -d 5 -p cbr -e 500 -c 1 -i 1 -a 1 r -t 0.232 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} + -t 0.232 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} - -t 0.232 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} h -t 0.232 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {-1 -1} + -t 0.25 -s 1 -d 2 -p cbr -e 500 -c 1 -i 4 -a 1 - -t 0.25 -s 1 -d 2 -p cbr -e 500 -c 1 -i 4 -a 1 h -t 0.25 -s 1 -d 2 -p cbr -e 500 -c 1 -i 4 -a 1 r -t 0.258 -s 1 -d 2 -p cbr -e 500 -c 1 -i 3 -a 1 + -t 0.258 -s 2 -d 3 -p cbr -e 500 -c 1 -i 3 -a 1 - -t 0.258 -s 2 -d 3 -p cbr -e 500 -c 1 -i 3 -a 1 h -t 0.258 -s 2 -d 3 -p cbr -e 500 -c 1 -i 3 -a 1 r -t 0.266 -s 2 -d 3 -p cbr -e 500 -c 1 -i 2 -a 1 + -t 0.266 -s 3 -d 5 -p cbr -e 500 -c 1 -i 2 -a 1 - -t 0.266 -s 3 -d 5 -p cbr -e 500 -c 1 -i 2 -a 1 h -t 0.266 -s 3 -d 5 -p cbr -e 500 -c 1 -i 2 -a 1 r -t 0.274 -s 3 -d 5 -p cbr -e 500 -c 1 -i 1 -a 1 r -t 0.298 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} + -t 0.298 -s 4 -d 3 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -y {0 0} - -t 0.298 -s 4 -d 3 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -y {0 0} h -t 0.298 -s 4 -d 3 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -y {-1 -1} v -t 0.29999999999999999 sim_annotation 0.29999999999999999 4 Receive Ack_0 + -t 0.3 -s 1 -d 2 -p cbr -e 500 -c 1 -i 6 -a 1 - -t 0.3 -s 1 -d 2 -p cbr -e 500 -c 1 -i 6 -a 1 h -t 0.3 -s 1 -d 2 -p cbr -e 500 -c 1 -i 6 -a 1 r -t 0.308 -s 1 -d 2 -p cbr -e 500 -c 1 -i 4 -a 1 + -t 0.308 -s 2 -d 3 -p cbr -e 500 -c 1 -i 4 -a 1 - -t 0.308 -s 2 -d 3 -p cbr -e 500 -c 1 -i 4 -a 1 h -t 0.308 -s 2 -d 3 -p cbr -e 500 -c 1 -i 4 -a 1 r -t 0.316 -s 2 -d 3 -p cbr -e 500 -c 1 -i 3 -a 1 + -t 0.316 -s 3 -d 5 -p cbr -e 500 -c 1 -i 3 -a 1 - -t 0.316 -s 3 -d 5 -p cbr -e 500 -c 1 -i 3 -a 1 h -t 0.316 -s 3 -d 5 -p cbr -e 500 -c 1 -i 3 -a 1 r -t 0.324 -s 3 -d 5 -p cbr -e 500 -c 1 -i 2 -a 1 r -t 0.34864 -s 4 -d 3 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -y {0 0} + -t 0.34864 -s 3 -d 2 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -y {0 0} - -t 0.34864 -s 3 -d 2 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -y {0 0} h -t 0.34864 -s 3 -d 2 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -y {-1 -1} + -t 0.35 -s 1 -d 2 -p cbr -e 500 -c 1 -i 7 -a 1 - -t 0.35 -s 1 -d 2 -p cbr -e 500 -c 1 -i 7 -a 1 h -t 0.35 -s 1 -d 2 -p cbr -e 500 -c 1 -i 7 -a 1 r -t 0.358 -s 1 -d 2 -p cbr -e 500 -c 1 -i 6 -a 1 + -t 0.358 -s 2 -d 3 -p cbr -e 500 -c 1 -i 6 -a 1 - -t 0.358 -s 2 -d 3 -p cbr -e 500 -c 1 -i 6 -a 1 h -t 0.358 -s 2 -d 3 -p cbr -e 500 -c 1 -i 6 -a 1 r -t 0.366 -s 2 -d 3 -p cbr -e 500 -c 1 -i 4 -a 1 + -t 0.366 -s 3 -d 5 -p cbr -e 500 -c 1 -i 4 -a 1 - -t 0.366 -s 3 -d 5 -p cbr -e 500 -c 1 -i 4 -a 1 h -t 0.366 -s 3 -d 5 -p cbr -e 500 -c 1 -i 4 -a 1 r -t 0.374 -s 3 -d 5 -p cbr -e 500 -c 1 -i 3 -a 1 r -t 0.39928 -s 3 -d 2 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -y {0 0} + -t 0.39928 -s 2 -d 0 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -y {0 0} - -t 0.39928 -s 2 -d 0 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -f 0 -m 1 -y {0 0} h -t 0.39928 -s 2 -d 0 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -y {-1 -1} + -t 0.4 -s 1 -d 2 -p cbr -e 500 -c 1 -i 8 -a 1 - -t 0.4 -s 1 -d 2 -p cbr -e 500 -c 1 -i 8 -a 1 h -t 0.4 -s 1 -d 2 -p cbr -e 500 -c 1 -i 8 -a 1 r -t 0.408 -s 1 -d 2 -p cbr -e 500 -c 1 -i 7 -a 1 + -t 0.408 -s 2 -d 3 -p cbr -e 500 -c 1 -i 7 -a 1 - -t 0.408 -s 2 -d 3 -p cbr -e 500 -c 1 -i 7 -a 1 h -t 0.408 -s 2 -d 3 -p cbr -e 500 -c 1 -i 7 -a 1 r -t 0.416 -s 2 -d 3 -p cbr -e 500 -c 1 -i 6 -a 1 + -t 0.416 -s 3 -d 5 -p cbr -e 500 -c 1 -i 6 -a 1 - -t 0.416 -s 3 -d 5 -p cbr -e 500 -c 1 -i 6 -a 1 h -t 0.416 -s 3 -d 5 -p cbr -e 500 -c 1 -i 6 -a 1 r -t 0.424 -s 3 -d 5 -p cbr -e 500 -c 1 -i 4 -a 1 r -t 0.44992 -s 2 -d 0 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -y {0 0} f -t 0.44992000000000010 -s 0 -d 4 -n cwnd_ -a tcp -v 2.000000 -o 1.000000 -T v f -t 0.44992000000000010 -s 0 -d 4 -n cwnd_ -a tcp -v 1.000000 -o 2.000000 -T v + -t 0.44992 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 9 -a 0 -S 0 -f 0 -m 0 -y {1 1} - -t 0.44992 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 9 -a 0 -S 0 -y {1 1} h -t 0.44992 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 9 -a 0 -S 0 -y {-1 -1} + -t 0.45 -s 1 -d 2 -p cbr -e 500 -c 1 -i 10 -a 1 - -t 0.45 -s 1 -d 2 -p cbr -e 500 -c 1 -i 10 -a 1 h -t 0.45 -s 1 -d 2 -p cbr -e 500 -c 1 -i 10 -a 1 v -t 0.45000000000000001 sim_annotation 0.45000000000000001 5 Send Packet_1 r -t 0.458 -s 1 -d 2 -p cbr -e 500 -c 1 -i 8 -a 1 + -t 0.458 -s 2 -d 3 -p cbr -e 500 -c 1 -i 8 -a 1 - -t 0.458 -s 2 -d 3 -p cbr -e 500 -c 1 -i 8 -a 1 h -t 0.458 -s 2 -d 3 -p cbr -e 500 -c 1 -i 8 -a 1 r -t 0.466 -s 2 -d 3 -p cbr -e 500 -c 1 -i 7 -a 1 + -t 0.466 -s 3 -d 5 -p cbr -e 500 -c 1 -i 7 -a 1 - -t 0.466 -s 3 -d 5 -p cbr -e 500 -c 1 -i 7 -a 1 h -t 0.466 -s 3 -d 5 -p cbr -e 500 -c 1 -i 7 -a 1 r -t 0.474 -s 3 -d 5 -p cbr -e 500 -c 1 -i 6 -a 1 + -t 0.5 -s 1 -d 2 -p cbr -e 500 -c 1 -i 11 -a 1 - -t 0.5 -s 1 -d 2 -p cbr -e 500 -c 1 -i 11 -a 1 h -t 0.5 -s 1 -d 2 -p cbr -e 500 -c 1 -i 11 -a 1 r -t 0.508 -s 1 -d 2 -p cbr -e 500 -c 1 -i 10 -a 1 + -t 0.508 -s 2 -d 3 -p cbr -e 500 -c 1 -i 10 -a 1 - -t 0.508 -s 2 -d 3 -p cbr -e 500 -c 1 -i 10 -a 1 h -t 0.508 -s 2 -d 3 -p cbr -e 500 -c 1 -i 10 -a 1 r -t 0.51592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 9 -a 0 -S 0 -y {1 1} + -t 0.51592 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 9 -a 0 -S 0 -y {1 1} r -t 0.516 -s 2 -d 3 -p cbr -e 500 -c 1 -i 8 -a 1 + -t 0.516 -s 3 -d 5 -p cbr -e 500 -c 1 -i 8 -a 1 - -t 0.516 -s 3 -d 5 -p cbr -e 500 -c 1 -i 8 -a 1 h -t 0.516 -s 3 -d 5 -p cbr -e 500 -c 1 -i 8 -a 1 - -t 0.516 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 9 -a 0 -S 0 -y {1 1} h -t 0.516 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 9 -a 0 -S 0 -y {-1 -1} r -t 0.524 -s 3 -d 5 -p cbr -e 500 -c 1 -i 7 -a 1 + -t 0.55 -s 1 -d 2 -p cbr -e 500 -c 1 -i 12 -a 1 - -t 0.55 -s 1 -d 2 -p cbr -e 500 -c 1 -i 12 -a 1 h -t 0.55 -s 1 -d 2 -p cbr -e 500 -c 1 -i 12 -a 1 r -t 0.558 -s 1 -d 2 -p cbr -e 500 -c 1 -i 11 -a 1 + -t 0.558 -s 2 -d 3 -p cbr -e 500 -c 1 -i 11 -a 1 - -t 0.558 -s 2 -d 3 -p cbr -e 500 -c 1 -i 11 -a 1 h -t 0.558 -s 2 -d 3 -p cbr -e 500 -c 1 -i 11 -a 1 r -t 0.566 -s 2 -d 3 -p cbr -e 500 -c 1 -i 10 -a 1 + -t 0.566 -s 3 -d 5 -p cbr -e 500 -c 1 -i 10 -a 1 - -t 0.566 -s 3 -d 5 -p cbr -e 500 -c 1 -i 10 -a 1 h -t 0.566 -s 3 -d 5 -p cbr -e 500 -c 1 -i 10 -a 1 r -t 0.574 -s 3 -d 5 -p cbr -e 500 -c 1 -i 8 -a 1 r -t 0.582 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 9 -a 0 -S 0 -y {1 1} + -t 0.582 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 9 -a 0 -S 0 -y {1 1} - -t 0.582 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 9 -a 0 -S 0 -y {1 1} h -t 0.582 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 9 -a 0 -S 0 -y {-1 -1} + -t 0.6 -s 1 -d 2 -p cbr -e 500 -c 1 -i 13 -a 1 - -t 0.6 -s 1 -d 2 -p cbr -e 500 -c 1 -i 13 -a 1 h -t 0.6 -s 1 -d 2 -p cbr -e 500 -c 1 -i 13 -a 1 r -t 0.608 -s 1 -d 2 -p cbr -e 500 -c 1 -i 12 -a 1 + -t 0.608 -s 2 -d 3 -p cbr -e 500 -c 1 -i 12 -a 1 - -t 0.608 -s 2 -d 3 -p cbr -e 500 -c 1 -i 12 -a 1 h -t 0.608 -s 2 -d 3 -p cbr -e 500 -c 1 -i 12 -a 1 r -t 0.616 -s 2 -d 3 -p cbr -e 500 -c 1 -i 11 -a 1 + -t 0.616 -s 3 -d 5 -p cbr -e 500 -c 1 -i 11 -a 1 - -t 0.616 -s 3 -d 5 -p cbr -e 500 -c 1 -i 11 -a 1 h -t 0.616 -s 3 -d 5 -p cbr -e 500 -c 1 -i 11 -a 1 r -t 0.624 -s 3 -d 5 -p cbr -e 500 -c 1 -i 10 -a 1 r -t 0.648 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 9 -a 0 -S 0 -y {1 1} + -t 0.648 -s 4 -d 3 -p ack -e 40 -c 0 -i 14 -a 0 -S 0 -y {1 1} - -t 0.648 -s 4 -d 3 -p ack -e 40 -c 0 -i 14 -a 0 -S 0 -y {1 1} h -t 0.648 -s 4 -d 3 -p ack -e 40 -c 0 -i 14 -a 0 -S 0 -y {-1 -1} v -t 0.65000000000000002 sim_annotation 0.65000000000000002 6 Receive Ack_1 + -t 0.65 -s 1 -d 2 -p cbr -e 500 -c 1 -i 15 -a 1 - -t 0.65 -s 1 -d 2 -p cbr -e 500 -c 1 -i 15 -a 1 h -t 0.65 -s 1 -d 2 -p cbr -e 500 -c 1 -i 15 -a 1 r -t 0.658 -s 1 -d 2 -p cbr -e 500 -c 1 -i 13 -a 1 + -t 0.658 -s 2 -d 3 -p cbr -e 500 -c 1 -i 13 -a 1 - -t 0.658 -s 2 -d 3 -p cbr -e 500 -c 1 -i 13 -a 1 h -t 0.658 -s 2 -d 3 -p cbr -e 500 -c 1 -i 13 -a 1 r -t 0.666 -s 2 -d 3 -p cbr -e 500 -c 1 -i 12 -a 1 + -t 0.666 -s 3 -d 5 -p cbr -e 500 -c 1 -i 12 -a 1 - -t 0.666 -s 3 -d 5 -p cbr -e 500 -c 1 -i 12 -a 1 h -t 0.666 -s 3 -d 5 -p cbr -e 500 -c 1 -i 12 -a 1 r -t 0.674 -s 3 -d 5 -p cbr -e 500 -c 1 -i 11 -a 1 r -t 0.69864 -s 4 -d 3 -p ack -e 40 -c 0 -i 14 -a 0 -S 0 -y {1 1} + -t 0.69864 -s 3 -d 2 -p ack -e 40 -c 0 -i 14 -a 0 -S 0 -y {1 1} - -t 0.69864 -s 3 -d 2 -p ack -e 40 -c 0 -i 14 -a 0 -S 0 -y {1 1} h -t 0.69864 -s 3 -d 2 -p ack -e 40 -c 0 -i 14 -a 0 -S 0 -y {-1 -1} + -t 0.7 -s 1 -d 2 -p cbr -e 500 -c 1 -i 16 -a 1 - -t 0.7 -s 1 -d 2 -p cbr -e 500 -c 1 -i 16 -a 1 h -t 0.7 -s 1 -d 2 -p cbr -e 500 -c 1 -i 16 -a 1 r -t 0.708 -s 1 -d 2 -p cbr -e 500 -c 1 -i 15 -a 1 + -t 0.708 -s 2 -d 3 -p cbr -e 500 -c 1 -i 15 -a 1 - -t 0.708 -s 2 -d 3 -p cbr -e 500 -c 1 -i 15 -a 1 h -t 0.708 -s 2 -d 3 -p cbr -e 500 -c 1 -i 15 -a 1 r -t 0.716 -s 2 -d 3 -p cbr -e 500 -c 1 -i 13 -a 1 + -t 0.716 -s 3 -d 5 -p cbr -e 500 -c 1 -i 13 -a 1 - -t 0.716 -s 3 -d 5 -p cbr -e 500 -c 1 -i 13 -a 1 h -t 0.716 -s 3 -d 5 -p cbr -e 500 -c 1 -i 13 -a 1 r -t 0.724 -s 3 -d 5 -p cbr -e 500 -c 1 -i 12 -a 1 r -t 0.74928 -s 3 -d 2 -p ack -e 40 -c 0 -i 14 -a 0 -S 0 -y {1 1} + -t 0.74928 -s 2 -d 0 -p ack -e 40 -c 0 -i 14 -a 0 -S 0 -y {1 1} - -t 0.74928 -s 2 -d 0 -p ack -e 40 -c 0 -i 14 -a 0 -S 0 -f 0 -m 1 -y {1 1} h -t 0.74928 -s 2 -d 0 -p ack -e 40 -c 0 -i 14 -a 0 -S 0 -y {-1 -1} + -t 0.75 -s 1 -d 2 -p cbr -e 500 -c 1 -i 17 -a 1 - -t 0.75 -s 1 -d 2 -p cbr -e 500 -c 1 -i 17 -a 1 h -t 0.75 -s 1 -d 2 -p cbr -e 500 -c 1 -i 17 -a 1 r -t 0.758 -s 1 -d 2 -p cbr -e 500 -c 1 -i 16 -a 1 + -t 0.758 -s 2 -d 3 -p cbr -e 500 -c 1 -i 16 -a 1 - -t 0.758 -s 2 -d 3 -p cbr -e 500 -c 1 -i 16 -a 1 h -t 0.758 -s 2 -d 3 -p cbr -e 500 -c 1 -i 16 -a 1 r -t 0.766 -s 2 -d 3 -p cbr -e 500 -c 1 -i 15 -a 1 + -t 0.766 -s 3 -d 5 -p cbr -e 500 -c 1 -i 15 -a 1 - -t 0.766 -s 3 -d 5 -p cbr -e 500 -c 1 -i 15 -a 1 h -t 0.766 -s 3 -d 5 -p cbr -e 500 -c 1 -i 15 -a 1 r -t 0.774 -s 3 -d 5 -p cbr -e 500 -c 1 -i 13 -a 1 r -t 0.79992 -s 2 -d 0 -p ack -e 40 -c 0 -i 14 -a 0 -S 0 -y {1 1} f -t 0.79992000000000019 -s 0 -d 4 -n cwnd_ -a tcp -v 2.000000 -o 1.000000 -T v f -t 0.79992000000000019 -s 0 -d 4 -n cwnd_ -a tcp -v 1.000000 -o 2.000000 -T v + -t 0.79992 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -f 0 -m 0 -y {2 2} - -t 0.79992 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {2 2} h -t 0.79992 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {-1 -1} v -t 0.80000000000000004 sim_annotation 0.80000000000000004 7 Send Packet_2 + -t 0.8 -s 1 -d 2 -p cbr -e 500 -c 1 -i 19 -a 1 - -t 0.8 -s 1 -d 2 -p cbr -e 500 -c 1 -i 19 -a 1 h -t 0.8 -s 1 -d 2 -p cbr -e 500 -c 1 -i 19 -a 1 r -t 0.808 -s 1 -d 2 -p cbr -e 500 -c 1 -i 17 -a 1 + -t 0.808 -s 2 -d 3 -p cbr -e 500 -c 1 -i 17 -a 1 - -t 0.808 -s 2 -d 3 -p cbr -e 500 -c 1 -i 17 -a 1 h -t 0.808 -s 2 -d 3 -p cbr -e 500 -c 1 -i 17 -a 1 r -t 0.816 -s 2 -d 3 -p cbr -e 500 -c 1 -i 16 -a 1 + -t 0.816 -s 3 -d 5 -p cbr -e 500 -c 1 -i 16 -a 1 - -t 0.816 -s 3 -d 5 -p cbr -e 500 -c 1 -i 16 -a 1 h -t 0.816 -s 3 -d 5 -p cbr -e 500 -c 1 -i 16 -a 1 r -t 0.824 -s 3 -d 5 -p cbr -e 500 -c 1 -i 15 -a 1 + -t 0.85 -s 1 -d 2 -p cbr -e 500 -c 1 -i 20 -a 1 - -t 0.85 -s 1 -d 2 -p cbr -e 500 -c 1 -i 20 -a 1 h -t 0.85 -s 1 -d 2 -p cbr -e 500 -c 1 -i 20 -a 1 r -t 0.858 -s 1 -d 2 -p cbr -e 500 -c 1 -i 19 -a 1 + -t 0.858 -s 2 -d 3 -p cbr -e 500 -c 1 -i 19 -a 1 - -t 0.858 -s 2 -d 3 -p cbr -e 500 -c 1 -i 19 -a 1 h -t 0.858 -s 2 -d 3 -p cbr -e 500 -c 1 -i 19 -a 1 r -t 0.86592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {2 2} + -t 0.86592 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {2 2} r -t 0.866 -s 2 -d 3 -p cbr -e 500 -c 1 -i 17 -a 1 + -t 0.866 -s 3 -d 5 -p cbr -e 500 -c 1 -i 17 -a 1 - -t 0.866 -s 3 -d 5 -p cbr -e 500 -c 1 -i 17 -a 1 h -t 0.866 -s 3 -d 5 -p cbr -e 500 -c 1 -i 17 -a 1 - -t 0.866 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {2 2} h -t 0.866 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {-1 -1} r -t 0.874 -s 3 -d 5 -p cbr -e 500 -c 1 -i 16 -a 1 + -t 0.9 -s 1 -d 2 -p cbr -e 500 -c 1 -i 21 -a 1 - -t 0.9 -s 1 -d 2 -p cbr -e 500 -c 1 -i 21 -a 1 h -t 0.9 -s 1 -d 2 -p cbr -e 500 -c 1 -i 21 -a 1 r -t 0.908 -s 1 -d 2 -p cbr -e 500 -c 1 -i 20 -a 1 + -t 0.908 -s 2 -d 3 -p cbr -e 500 -c 1 -i 20 -a 1 - -t 0.908 -s 2 -d 3 -p cbr -e 500 -c 1 -i 20 -a 1 h -t 0.908 -s 2 -d 3 -p cbr -e 500 -c 1 -i 20 -a 1 r -t 0.916 -s 2 -d 3 -p cbr -e 500 -c 1 -i 19 -a 1 + -t 0.916 -s 3 -d 5 -p cbr -e 500 -c 1 -i 19 -a 1 - -t 0.916 -s 3 -d 5 -p cbr -e 500 -c 1 -i 19 -a 1 h -t 0.916 -s 3 -d 5 -p cbr -e 500 -c 1 -i 19 -a 1 r -t 0.924 -s 3 -d 5 -p cbr -e 500 -c 1 -i 17 -a 1 r -t 0.932 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {2 2} + -t 0.932 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {2 2} - -t 0.932 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {2 2} h -t 0.932 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {-1 -1} + -t 0.95 -s 1 -d 2 -p cbr -e 500 -c 1 -i 22 -a 1 - -t 0.95 -s 1 -d 2 -p cbr -e 500 -c 1 -i 22 -a 1 h -t 0.95 -s 1 -d 2 -p cbr -e 500 -c 1 -i 22 -a 1 r -t 0.958 -s 1 -d 2 -p cbr -e 500 -c 1 -i 21 -a 1 + -t 0.958 -s 2 -d 3 -p cbr -e 500 -c 1 -i 21 -a 1 - -t 0.958 -s 2 -d 3 -p cbr -e 500 -c 1 -i 21 -a 1 h -t 0.958 -s 2 -d 3 -p cbr -e 500 -c 1 -i 21 -a 1 r -t 0.966 -s 2 -d 3 -p cbr -e 500 -c 1 -i 20 -a 1 + -t 0.966 -s 3 -d 5 -p cbr -e 500 -c 1 -i 20 -a 1 - -t 0.966 -s 3 -d 5 -p cbr -e 500 -c 1 -i 20 -a 1 h -t 0.966 -s 3 -d 5 -p cbr -e 500 -c 1 -i 20 -a 1 r -t 0.974 -s 3 -d 5 -p cbr -e 500 -c 1 -i 19 -a 1 r -t 0.998 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {2 2} + -t 0.998 -s 4 -d 3 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {2 2} - -t 0.998 -s 4 -d 3 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {2 2} h -t 0.998 -s 4 -d 3 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {-1 -1} v -t 1 sim_annotation 1 8 Receive Ack_2 + -t 1 -s 1 -d 2 -p cbr -e 500 -c 1 -i 24 -a 1 - -t 1 -s 1 -d 2 -p cbr -e 500 -c 1 -i 24 -a 1 h -t 1 -s 1 -d 2 -p cbr -e 500 -c 1 -i 24 -a 1 r -t 1.008 -s 1 -d 2 -p cbr -e 500 -c 1 -i 22 -a 1 + -t 1.008 -s 2 -d 3 -p cbr -e 500 -c 1 -i 22 -a 1 - -t 1.008 -s 2 -d 3 -p cbr -e 500 -c 1 -i 22 -a 1 h -t 1.008 -s 2 -d 3 -p cbr -e 500 -c 1 -i 22 -a 1 r -t 1.016 -s 2 -d 3 -p cbr -e 500 -c 1 -i 21 -a 1 + -t 1.016 -s 3 -d 5 -p cbr -e 500 -c 1 -i 21 -a 1 - -t 1.016 -s 3 -d 5 -p cbr -e 500 -c 1 -i 21 -a 1 h -t 1.016 -s 3 -d 5 -p cbr -e 500 -c 1 -i 21 -a 1 r -t 1.024 -s 3 -d 5 -p cbr -e 500 -c 1 -i 20 -a 1 r -t 1.04864 -s 4 -d 3 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {2 2} + -t 1.04864 -s 3 -d 2 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {2 2} - -t 1.04864 -s 3 -d 2 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {2 2} h -t 1.04864 -s 3 -d 2 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {-1 -1} + -t 1.05 -s 1 -d 2 -p cbr -e 500 -c 1 -i 25 -a 1 - -t 1.05 -s 1 -d 2 -p cbr -e 500 -c 1 -i 25 -a 1 h -t 1.05 -s 1 -d 2 -p cbr -e 500 -c 1 -i 25 -a 1 r -t 1.058 -s 1 -d 2 -p cbr -e 500 -c 1 -i 24 -a 1 + -t 1.058 -s 2 -d 3 -p cbr -e 500 -c 1 -i 24 -a 1 - -t 1.058 -s 2 -d 3 -p cbr -e 500 -c 1 -i 24 -a 1 h -t 1.058 -s 2 -d 3 -p cbr -e 500 -c 1 -i 24 -a 1 r -t 1.066 -s 2 -d 3 -p cbr -e 500 -c 1 -i 22 -a 1 + -t 1.066 -s 3 -d 5 -p cbr -e 500 -c 1 -i 22 -a 1 - -t 1.066 -s 3 -d 5 -p cbr -e 500 -c 1 -i 22 -a 1 h -t 1.066 -s 3 -d 5 -p cbr -e 500 -c 1 -i 22 -a 1 r -t 1.074 -s 3 -d 5 -p cbr -e 500 -c 1 -i 21 -a 1 r -t 1.09928 -s 3 -d 2 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {2 2} + -t 1.09928 -s 2 -d 0 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {2 2} - -t 1.09928 -s 2 -d 0 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -f 0 -m 1 -y {2 2} h -t 1.09928 -s 2 -d 0 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {-1 -1} + -t 1.1 -s 1 -d 2 -p cbr -e 500 -c 1 -i 26 -a 1 - -t 1.1 -s 1 -d 2 -p cbr -e 500 -c 1 -i 26 -a 1 h -t 1.1 -s 1 -d 2 -p cbr -e 500 -c 1 -i 26 -a 1 r -t 1.108 -s 1 -d 2 -p cbr -e 500 -c 1 -i 25 -a 1 + -t 1.108 -s 2 -d 3 -p cbr -e 500 -c 1 -i 25 -a 1 - -t 1.108 -s 2 -d 3 -p cbr -e 500 -c 1 -i 25 -a 1 h -t 1.108 -s 2 -d 3 -p cbr -e 500 -c 1 -i 25 -a 1 r -t 1.116 -s 2 -d 3 -p cbr -e 500 -c 1 -i 24 -a 1 + -t 1.116 -s 3 -d 5 -p cbr -e 500 -c 1 -i 24 -a 1 - -t 1.116 -s 3 -d 5 -p cbr -e 500 -c 1 -i 24 -a 1 h -t 1.116 -s 3 -d 5 -p cbr -e 500 -c 1 -i 24 -a 1 r -t 1.124 -s 3 -d 5 -p cbr -e 500 -c 1 -i 22 -a 1 r -t 1.14992 -s 2 -d 0 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {2 2} f -t 1.14992000000000028 -s 0 -d 4 -n cwnd_ -a tcp -v 2.000000 -o 1.000000 -T v f -t 1.14992000000000028 -s 0 -d 4 -n cwnd_ -a tcp -v 1.000000 -o 2.000000 -T v + -t 1.14992 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 27 -a 0 -S 0 -f 0 -m 0 -y {3 3} - -t 1.14992 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 27 -a 0 -S 0 -y {3 3} h -t 1.14992 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 27 -a 0 -S 0 -y {-1 -1} v -t 1.1499999999999999 sim_annotation 1.1499999999999999 9 Send Packet_3 + -t 1.15 -s 1 -d 2 -p cbr -e 500 -c 1 -i 28 -a 1 - -t 1.15 -s 1 -d 2 -p cbr -e 500 -c 1 -i 28 -a 1 h -t 1.15 -s 1 -d 2 -p cbr -e 500 -c 1 -i 28 -a 1 r -t 1.158 -s 1 -d 2 -p cbr -e 500 -c 1 -i 26 -a 1 + -t 1.158 -s 2 -d 3 -p cbr -e 500 -c 1 -i 26 -a 1 - -t 1.158 -s 2 -d 3 -p cbr -e 500 -c 1 -i 26 -a 1 h -t 1.158 -s 2 -d 3 -p cbr -e 500 -c 1 -i 26 -a 1 r -t 1.166 -s 2 -d 3 -p cbr -e 500 -c 1 -i 25 -a 1 + -t 1.166 -s 3 -d 5 -p cbr -e 500 -c 1 -i 25 -a 1 - -t 1.166 -s 3 -d 5 -p cbr -e 500 -c 1 -i 25 -a 1 h -t 1.166 -s 3 -d 5 -p cbr -e 500 -c 1 -i 25 -a 1 r -t 1.174 -s 3 -d 5 -p cbr -e 500 -c 1 -i 24 -a 1 + -t 1.2 -s 1 -d 2 -p cbr -e 500 -c 1 -i 29 -a 1 - -t 1.2 -s 1 -d 2 -p cbr -e 500 -c 1 -i 29 -a 1 h -t 1.2 -s 1 -d 2 -p cbr -e 500 -c 1 -i 29 -a 1 r -t 1.208 -s 1 -d 2 -p cbr -e 500 -c 1 -i 28 -a 1 + -t 1.208 -s 2 -d 3 -p cbr -e 500 -c 1 -i 28 -a 1 - -t 1.208 -s 2 -d 3 -p cbr -e 500 -c 1 -i 28 -a 1 h -t 1.208 -s 2 -d 3 -p cbr -e 500 -c 1 -i 28 -a 1 r -t 1.21592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 27 -a 0 -S 0 -y {3 3} + -t 1.21592 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 27 -a 0 -S 0 -y {3 3} r -t 1.216 -s 2 -d 3 -p cbr -e 500 -c 1 -i 26 -a 1 + -t 1.216 -s 3 -d 5 -p cbr -e 500 -c 1 -i 26 -a 1 - -t 1.216 -s 3 -d 5 -p cbr -e 500 -c 1 -i 26 -a 1 h -t 1.216 -s 3 -d 5 -p cbr -e 500 -c 1 -i 26 -a 1 - -t 1.216 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 27 -a 0 -S 0 -y {3 3} h -t 1.216 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 27 -a 0 -S 0 -y {-1 -1} r -t 1.224 -s 3 -d 5 -p cbr -e 500 -c 1 -i 25 -a 1 + -t 1.25 -s 1 -d 2 -p cbr -e 500 -c 1 -i 30 -a 1 - -t 1.25 -s 1 -d 2 -p cbr -e 500 -c 1 -i 30 -a 1 h -t 1.25 -s 1 -d 2 -p cbr -e 500 -c 1 -i 30 -a 1 r -t 1.258 -s 1 -d 2 -p cbr -e 500 -c 1 -i 29 -a 1 + -t 1.258 -s 2 -d 3 -p cbr -e 500 -c 1 -i 29 -a 1 - -t 1.258 -s 2 -d 3 -p cbr -e 500 -c 1 -i 29 -a 1 h -t 1.258 -s 2 -d 3 -p cbr -e 500 -c 1 -i 29 -a 1 r -t 1.266 -s 2 -d 3 -p cbr -e 500 -c 1 -i 28 -a 1 + -t 1.266 -s 3 -d 5 -p cbr -e 500 -c 1 -i 28 -a 1 - -t 1.266 -s 3 -d 5 -p cbr -e 500 -c 1 -i 28 -a 1 h -t 1.266 -s 3 -d 5 -p cbr -e 500 -c 1 -i 28 -a 1 r -t 1.274 -s 3 -d 5 -p cbr -e 500 -c 1 -i 26 -a 1 r -t 1.282 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 27 -a 0 -S 0 -y {3 3} + -t 1.282 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 27 -a 0 -S 0 -y {3 3} - -t 1.282 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 27 -a 0 -S 0 -y {3 3} h -t 1.282 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 27 -a 0 -S 0 -y {-1 -1} + -t 1.3 -s 1 -d 2 -p cbr -e 500 -c 1 -i 31 -a 1 - -t 1.3 -s 1 -d 2 -p cbr -e 500 -c 1 -i 31 -a 1 h -t 1.3 -s 1 -d 2 -p cbr -e 500 -c 1 -i 31 -a 1 r -t 1.308 -s 1 -d 2 -p cbr -e 500 -c 1 -i 30 -a 1 + -t 1.308 -s 2 -d 3 -p cbr -e 500 -c 1 -i 30 -a 1 - -t 1.308 -s 2 -d 3 -p cbr -e 500 -c 1 -i 30 -a 1 h -t 1.308 -s 2 -d 3 -p cbr -e 500 -c 1 -i 30 -a 1 r -t 1.316 -s 2 -d 3 -p cbr -e 500 -c 1 -i 29 -a 1 + -t 1.316 -s 3 -d 5 -p cbr -e 500 -c 1 -i 29 -a 1 - -t 1.316 -s 3 -d 5 -p cbr -e 500 -c 1 -i 29 -a 1 h -t 1.316 -s 3 -d 5 -p cbr -e 500 -c 1 -i 29 -a 1 r -t 1.324 -s 3 -d 5 -p cbr -e 500 -c 1 -i 28 -a 1 r -t 1.348 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 27 -a 0 -S 0 -y {3 3} + -t 1.348 -s 4 -d 3 -p ack -e 40 -c 0 -i 32 -a 0 -S 0 -y {3 3} - -t 1.348 -s 4 -d 3 -p ack -e 40 -c 0 -i 32 -a 0 -S 0 -y {3 3} h -t 1.348 -s 4 -d 3 -p ack -e 40 -c 0 -i 32 -a 0 -S 0 -y {-1 -1} v -t 1.3500000000000001 sim_annotation 1.3500000000000001 10 Receive Ack_3 + -t 1.35 -s 1 -d 2 -p cbr -e 500 -c 1 -i 33 -a 1 - -t 1.35 -s 1 -d 2 -p cbr -e 500 -c 1 -i 33 -a 1 h -t 1.35 -s 1 -d 2 -p cbr -e 500 -c 1 -i 33 -a 1 r -t 1.358 -s 1 -d 2 -p cbr -e 500 -c 1 -i 31 -a 1 + -t 1.358 -s 2 -d 3 -p cbr -e 500 -c 1 -i 31 -a 1 - -t 1.358 -s 2 -d 3 -p cbr -e 500 -c 1 -i 31 -a 1 h -t 1.358 -s 2 -d 3 -p cbr -e 500 -c 1 -i 31 -a 1 r -t 1.366 -s 2 -d 3 -p cbr -e 500 -c 1 -i 30 -a 1 + -t 1.366 -s 3 -d 5 -p cbr -e 500 -c 1 -i 30 -a 1 - -t 1.366 -s 3 -d 5 -p cbr -e 500 -c 1 -i 30 -a 1 h -t 1.366 -s 3 -d 5 -p cbr -e 500 -c 1 -i 30 -a 1 r -t 1.374 -s 3 -d 5 -p cbr -e 500 -c 1 -i 29 -a 1 r -t 1.39864 -s 4 -d 3 -p ack -e 40 -c 0 -i 32 -a 0 -S 0 -y {3 3} + -t 1.39864 -s 3 -d 2 -p ack -e 40 -c 0 -i 32 -a 0 -S 0 -y {3 3} - -t 1.39864 -s 3 -d 2 -p ack -e 40 -c 0 -i 32 -a 0 -S 0 -y {3 3} h -t 1.39864 -s 3 -d 2 -p ack -e 40 -c 0 -i 32 -a 0 -S 0 -y {-1 -1} + -t 1.4 -s 1 -d 2 -p cbr -e 500 -c 1 -i 34 -a 1 - -t 1.4 -s 1 -d 2 -p cbr -e 500 -c 1 -i 34 -a 1 h -t 1.4 -s 1 -d 2 -p cbr -e 500 -c 1 -i 34 -a 1 r -t 1.408 -s 1 -d 2 -p cbr -e 500 -c 1 -i 33 -a 1 + -t 1.408 -s 2 -d 3 -p cbr -e 500 -c 1 -i 33 -a 1 - -t 1.408 -s 2 -d 3 -p cbr -e 500 -c 1 -i 33 -a 1 h -t 1.408 -s 2 -d 3 -p cbr -e 500 -c 1 -i 33 -a 1 r -t 1.416 -s 2 -d 3 -p cbr -e 500 -c 1 -i 31 -a 1 + -t 1.416 -s 3 -d 5 -p cbr -e 500 -c 1 -i 31 -a 1 - -t 1.416 -s 3 -d 5 -p cbr -e 500 -c 1 -i 31 -a 1 h -t 1.416 -s 3 -d 5 -p cbr -e 500 -c 1 -i 31 -a 1 r -t 1.424 -s 3 -d 5 -p cbr -e 500 -c 1 -i 30 -a 1 r -t 1.44928 -s 3 -d 2 -p ack -e 40 -c 0 -i 32 -a 0 -S 0 -y {3 3} + -t 1.44928 -s 2 -d 0 -p ack -e 40 -c 0 -i 32 -a 0 -S 0 -y {3 3} - -t 1.44928 -s 2 -d 0 -p ack -e 40 -c 0 -i 32 -a 0 -S 0 -f 0 -m 1 -y {3 3} h -t 1.44928 -s 2 -d 0 -p ack -e 40 -c 0 -i 32 -a 0 -S 0 -y {-1 -1} + -t 1.45 -s 1 -d 2 -p cbr -e 500 -c 1 -i 35 -a 1 - -t 1.45 -s 1 -d 2 -p cbr -e 500 -c 1 -i 35 -a 1 h -t 1.45 -s 1 -d 2 -p cbr -e 500 -c 1 -i 35 -a 1 r -t 1.458 -s 1 -d 2 -p cbr -e 500 -c 1 -i 34 -a 1 + -t 1.458 -s 2 -d 3 -p cbr -e 500 -c 1 -i 34 -a 1 - -t 1.458 -s 2 -d 3 -p cbr -e 500 -c 1 -i 34 -a 1 h -t 1.458 -s 2 -d 3 -p cbr -e 500 -c 1 -i 34 -a 1 r -t 1.466 -s 2 -d 3 -p cbr -e 500 -c 1 -i 33 -a 1 + -t 1.466 -s 3 -d 5 -p cbr -e 500 -c 1 -i 33 -a 1 - -t 1.466 -s 3 -d 5 -p cbr -e 500 -c 1 -i 33 -a 1 h -t 1.466 -s 3 -d 5 -p cbr -e 500 -c 1 -i 33 -a 1 r -t 1.474 -s 3 -d 5 -p cbr -e 500 -c 1 -i 31 -a 1 r -t 1.49992 -s 2 -d 0 -p ack -e 40 -c 0 -i 32 -a 0 -S 0 -y {3 3} f -t 1.49992000000000059 -s 0 -d 4 -n cwnd_ -a tcp -v 2.000000 -o 1.000000 -T v f -t 1.49992000000000059 -s 0 -d 4 -n cwnd_ -a tcp -v 1.000000 -o 2.000000 -T v + -t 1.49992 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 36 -a 0 -S 0 -f 0 -m 0 -y {4 4} - -t 1.49992 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 36 -a 0 -S 0 -y {4 4} h -t 1.49992 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 36 -a 0 -S 0 -y {-1 -1} v -t 1.5 sim_annotation 1.5 11 Send Packet_4 + -t 1.5 -s 1 -d 2 -p cbr -e 500 -c 1 -i 37 -a 1 - -t 1.5 -s 1 -d 2 -p cbr -e 500 -c 1 -i 37 -a 1 h -t 1.5 -s 1 -d 2 -p cbr -e 500 -c 1 -i 37 -a 1 r -t 1.508 -s 1 -d 2 -p cbr -e 500 -c 1 -i 35 -a 1 + -t 1.508 -s 2 -d 3 -p cbr -e 500 -c 1 -i 35 -a 1 - -t 1.508 -s 2 -d 3 -p cbr -e 500 -c 1 -i 35 -a 1 h -t 1.508 -s 2 -d 3 -p cbr -e 500 -c 1 -i 35 -a 1 r -t 1.516 -s 2 -d 3 -p cbr -e 500 -c 1 -i 34 -a 1 + -t 1.516 -s 3 -d 5 -p cbr -e 500 -c 1 -i 34 -a 1 - -t 1.516 -s 3 -d 5 -p cbr -e 500 -c 1 -i 34 -a 1 h -t 1.516 -s 3 -d 5 -p cbr -e 500 -c 1 -i 34 -a 1 r -t 1.524 -s 3 -d 5 -p cbr -e 500 -c 1 -i 33 -a 1 + -t 1.55 -s 1 -d 2 -p cbr -e 500 -c 1 -i 38 -a 1 - -t 1.55 -s 1 -d 2 -p cbr -e 500 -c 1 -i 38 -a 1 h -t 1.55 -s 1 -d 2 -p cbr -e 500 -c 1 -i 38 -a 1 r -t 1.558 -s 1 -d 2 -p cbr -e 500 -c 1 -i 37 -a 1 + -t 1.558 -s 2 -d 3 -p cbr -e 500 -c 1 -i 37 -a 1 - -t 1.558 -s 2 -d 3 -p cbr -e 500 -c 1 -i 37 -a 1 h -t 1.558 -s 2 -d 3 -p cbr -e 500 -c 1 -i 37 -a 1 r -t 1.56592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 36 -a 0 -S 0 -y {4 4} + -t 1.56592 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 36 -a 0 -S 0 -y {4 4} r -t 1.566 -s 2 -d 3 -p cbr -e 500 -c 1 -i 35 -a 1 + -t 1.566 -s 3 -d 5 -p cbr -e 500 -c 1 -i 35 -a 1 - -t 1.566 -s 3 -d 5 -p cbr -e 500 -c 1 -i 35 -a 1 h -t 1.566 -s 3 -d 5 -p cbr -e 500 -c 1 -i 35 -a 1 - -t 1.566 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 36 -a 0 -S 0 -y {4 4} h -t 1.566 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 36 -a 0 -S 0 -y {-1 -1} r -t 1.574 -s 3 -d 5 -p cbr -e 500 -c 1 -i 34 -a 1 + -t 1.6 -s 1 -d 2 -p cbr -e 500 -c 1 -i 39 -a 1 - -t 1.6 -s 1 -d 2 -p cbr -e 500 -c 1 -i 39 -a 1 h -t 1.6 -s 1 -d 2 -p cbr -e 500 -c 1 -i 39 -a 1 r -t 1.608 -s 1 -d 2 -p cbr -e 500 -c 1 -i 38 -a 1 + -t 1.608 -s 2 -d 3 -p cbr -e 500 -c 1 -i 38 -a 1 - -t 1.608 -s 2 -d 3 -p cbr -e 500 -c 1 -i 38 -a 1 h -t 1.608 -s 2 -d 3 -p cbr -e 500 -c 1 -i 38 -a 1 r -t 1.616 -s 2 -d 3 -p cbr -e 500 -c 1 -i 37 -a 1 + -t 1.616 -s 3 -d 5 -p cbr -e 500 -c 1 -i 37 -a 1 - -t 1.616 -s 3 -d 5 -p cbr -e 500 -c 1 -i 37 -a 1 h -t 1.616 -s 3 -d 5 -p cbr -e 500 -c 1 -i 37 -a 1 r -t 1.624 -s 3 -d 5 -p cbr -e 500 -c 1 -i 35 -a 1 r -t 1.632 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 36 -a 0 -S 0 -y {4 4} + -t 1.632 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 36 -a 0 -S 0 -y {4 4} - -t 1.632 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 36 -a 0 -S 0 -y {4 4} h -t 1.632 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 36 -a 0 -S 0 -y {-1 -1} + -t 1.65 -s 1 -d 2 -p cbr -e 500 -c 1 -i 40 -a 1 - -t 1.65 -s 1 -d 2 -p cbr -e 500 -c 1 -i 40 -a 1 h -t 1.65 -s 1 -d 2 -p cbr -e 500 -c 1 -i 40 -a 1 r -t 1.658 -s 1 -d 2 -p cbr -e 500 -c 1 -i 39 -a 1 + -t 1.658 -s 2 -d 3 -p cbr -e 500 -c 1 -i 39 -a 1 - -t 1.658 -s 2 -d 3 -p cbr -e 500 -c 1 -i 39 -a 1 h -t 1.658 -s 2 -d 3 -p cbr -e 500 -c 1 -i 39 -a 1 r -t 1.666 -s 2 -d 3 -p cbr -e 500 -c 1 -i 38 -a 1 + -t 1.666 -s 3 -d 5 -p cbr -e 500 -c 1 -i 38 -a 1 - -t 1.666 -s 3 -d 5 -p cbr -e 500 -c 1 -i 38 -a 1 h -t 1.666 -s 3 -d 5 -p cbr -e 500 -c 1 -i 38 -a 1 r -t 1.674 -s 3 -d 5 -p cbr -e 500 -c 1 -i 37 -a 1 r -t 1.698 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 36 -a 0 -S 0 -y {4 4} + -t 1.698 -s 4 -d 3 -p ack -e 40 -c 0 -i 41 -a 0 -S 0 -y {4 4} - -t 1.698 -s 4 -d 3 -p ack -e 40 -c 0 -i 41 -a 0 -S 0 -y {4 4} h -t 1.698 -s 4 -d 3 -p ack -e 40 -c 0 -i 41 -a 0 -S 0 -y {-1 -1} v -t 1.7 sim_annotation 1.7 12 Receive Ack_4 r -t 1.708 -s 1 -d 2 -p cbr -e 500 -c 1 -i 40 -a 1 + -t 1.708 -s 2 -d 3 -p cbr -e 500 -c 1 -i 40 -a 1 - -t 1.708 -s 2 -d 3 -p cbr -e 500 -c 1 -i 40 -a 1 h -t 1.708 -s 2 -d 3 -p cbr -e 500 -c 1 -i 40 -a 1 r -t 1.716 -s 2 -d 3 -p cbr -e 500 -c 1 -i 39 -a 1 + -t 1.716 -s 3 -d 5 -p cbr -e 500 -c 1 -i 39 -a 1 - -t 1.716 -s 3 -d 5 -p cbr -e 500 -c 1 -i 39 -a 1 h -t 1.716 -s 3 -d 5 -p cbr -e 500 -c 1 -i 39 -a 1 r -t 1.724 -s 3 -d 5 -p cbr -e 500 -c 1 -i 38 -a 1 r -t 1.74864 -s 4 -d 3 -p ack -e 40 -c 0 -i 41 -a 0 -S 0 -y {4 4} + -t 1.74864 -s 3 -d 2 -p ack -e 40 -c 0 -i 41 -a 0 -S 0 -y {4 4} - -t 1.74864 -s 3 -d 2 -p ack -e 40 -c 0 -i 41 -a 0 -S 0 -y {4 4} h -t 1.74864 -s 3 -d 2 -p ack -e 40 -c 0 -i 41 -a 0 -S 0 -y {-1 -1} r -t 1.766 -s 2 -d 3 -p cbr -e 500 -c 1 -i 40 -a 1 + -t 1.766 -s 3 -d 5 -p cbr -e 500 -c 1 -i 40 -a 1 - -t 1.766 -s 3 -d 5 -p cbr -e 500 -c 1 -i 40 -a 1 h -t 1.766 -s 3 -d 5 -p cbr -e 500 -c 1 -i 40 -a 1 r -t 1.774 -s 3 -d 5 -p cbr -e 500 -c 1 -i 39 -a 1 r -t 1.79928 -s 3 -d 2 -p ack -e 40 -c 0 -i 41 -a 0 -S 0 -y {4 4} + -t 1.79928 -s 2 -d 0 -p ack -e 40 -c 0 -i 41 -a 0 -S 0 -y {4 4} - -t 1.79928 -s 2 -d 0 -p ack -e 40 -c 0 -i 41 -a 0 -S 0 -f 0 -m 1 -y {4 4} h -t 1.79928 -s 2 -d 0 -p ack -e 40 -c 0 -i 41 -a 0 -S 0 -y {-1 -1} v -t 1.8 sim_annotation 1.8 13 FTP stops r -t 1.824 -s 3 -d 5 -p cbr -e 500 -c 1 -i 40 -a 1 r -t 1.84992 -s 2 -d 0 -p ack -e 40 -c 0 -i 41 -a 0 -S 0 -y {4 4} f -t 1.84992000000000090 -s 0 -d 4 -n cwnd_ -a tcp -v 2.000000 -o 1.000000 -T v f -t 1.84992000000000090 -s 0 -d 4 -n cwnd_ -a tcp -v 1.000000 -o 2.000000 -T v nam-1.15/edu/B1-stop-n-wait.tcl0000664000076400007660000000657507024407017015015 0ustar tomhnsnam# stop and wait protocol in normal situation # features : labeling, annotation, nam-graph, and window size monitoring set ns [new Simulator] $ns color 1 red $ns trace-all [open B1-stop-n-wait.tr w] $ns namtrace-all [open B1-stop-n-wait.nam w] ### build topology with 6 nodes proc build_topology { ns } { global node_ set node_(s1) [$ns node] set node_(s2) [$ns node] set node_(r1) [$ns node] set node_(r2) [$ns node] set node_(s3) [$ns node] set node_(s4) [$ns node] $node_(s2) color "red" $node_(s4) color "red" $node_(r1) color "blue" $node_(r2) color "blue" $node_(r1) shape "rectangular" $node_(r2) shape "rectangular" $ns at 0.0 "$node_(s1) label Sender" $ns at 0.0 "$node_(s2) label CBR-sender" $ns at 0.0 "$node_(s3) label Receiver" $ns at 0.0 "$node_(s4) label CBR-receiver" $ns duplex-link $node_(s1) $node_(r1) 0.5Mb 50ms DropTail $ns duplex-link $node_(s2) $node_(r1) 0.5Mb 50ms DropTail $ns duplex-link $node_(r1) $node_(r2) 0.5Mb 50ms DropTail $ns duplex-link $node_(r2) $node_(s3) 0.5Mb 50ms DropTail $ns duplex-link $node_(r2) $node_(s4) 0.5Mb 50ms DropTail $ns queue-limit $node_(r1) $node_(r2) 100 $ns queue-limit $node_(r2) $node_(r1) 100 $ns duplex-link-op $node_(s1) $node_(r1) orient right-down $ns duplex-link-op $node_(s2) $node_(r1) orient right-up $ns duplex-link-op $node_(r1) $node_(r2) orient right $ns duplex-link-op $node_(r2) $node_(s3) orient right-up $ns duplex-link-op $node_(r2) $node_(s4) orient right-down $ns duplex-link-op $node_(r1) $node_(r2) queuePos 0.5 $ns duplex-link-op $node_(r2) $node_(r1) queuePos 0.5 } build_topology $ns Agent/TCP set nam_tracevar_ true ### stop-n-wait protocol between s1 and s3 (Black) set tcp [new Agent/TCP] $tcp set window_ 1 $tcp set maxcwnd_ 1 $ns attach-agent $node_(s1) $tcp set sink [new Agent/TCPSink] $ns attach-agent $node_(s3) $sink $ns connect $tcp $sink set ftp [new Application/FTP] $ftp attach-agent $tcp $ns add-agent-trace $tcp tcp $ns monitor-agent-trace $tcp $tcp tracevar cwnd_ ### CBR traffic between s2 and s4 (Red) set cbr [$ns create-connection CBR $node_(s2) Null $node_(s4) 1] $cbr set packetSize_ 500 $cbr set interval_ 0.05 $cbr set class_ 1 ### set operations $ns at 0.1 "$ftp start" $ns at 1.7 "$ftp stop" $ns at 0.1 "$cbr start" $ns at 1.7 "$cbr stop" $ns at 2.0 "finish" ### add annotation $ns at 0.0 "$ns trace-annotate \"Stop and Wait with packet loss\"" $ns at 0.05 "$ns trace-annotate \"FTP starts at 0.1\"" $ns at 0.11 "$ns trace-annotate \"Send Packet_0\"" $ns at 0.30 "$ns trace-annotate \"Receive Ack_0\"" $ns at 0.45 "$ns trace-annotate \"Send Packet_1\"" $ns at 0.65 "$ns trace-annotate \"Receive Ack_1\"" $ns at 0.80 "$ns trace-annotate \"Send Packet_2\"" $ns at 1.00 "$ns trace-annotate \"Receive Ack_2\"" $ns at 1.15 "$ns trace-annotate \"Send Packet_3\"" $ns at 1.35 "$ns trace-annotate \"Receive Ack_3\"" $ns at 1.50 "$ns trace-annotate \"Send Packet_4\"" $ns at 1.70 "$ns trace-annotate \"Receive Ack_4\"" $ns at 1.80 "$ns trace-annotate \"FTP stops\"" proc finish {} { global ns $ns flush-trace puts "filtering..." exec tclsh ../bin/namfilter.tcl B1-stop-n-wait.nam puts "running nam..." exec nam B1-stop-n-wait.nam & exit 0 } $ns run nam-1.15/edu/B1-stop-n-wait.tr0000664000076400007660000004132506751716006014657 0ustar tomhnsnamv 0 eval {set sim_annotation {Stop and Wait with packet loss}} v 0.050000000000000003 eval {set sim_annotation {FTP starts at 0.1}} + 0.1 0 2 tcp 1000 ------- 0 0.0 4.0 0 0 - 0.1 0 2 tcp 1000 ------- 0 0.0 4.0 0 0 + 0.1 1 2 cbr 500 ------- 1 1.0 5.0 0 1 - 0.1 1 2 cbr 500 ------- 1 1.0 5.0 0 1 v 0.11 eval {set sim_annotation {Send Packet_0}} + 0.15 1 2 cbr 500 ------- 1 1.0 5.0 1 2 - 0.15 1 2 cbr 500 ------- 1 1.0 5.0 1 2 r 0.158 1 2 cbr 500 ------- 1 1.0 5.0 0 1 + 0.158 2 3 cbr 500 ------- 1 1.0 5.0 0 1 - 0.158 2 3 cbr 500 ------- 1 1.0 5.0 0 1 r 0.166 0 2 tcp 1000 ------- 0 0.0 4.0 0 0 + 0.166 2 3 tcp 1000 ------- 0 0.0 4.0 0 0 - 0.166 2 3 tcp 1000 ------- 0 0.0 4.0 0 0 + 0.2 1 2 cbr 500 ------- 1 1.0 5.0 2 3 - 0.2 1 2 cbr 500 ------- 1 1.0 5.0 2 3 r 0.208 1 2 cbr 500 ------- 1 1.0 5.0 1 2 + 0.208 2 3 cbr 500 ------- 1 1.0 5.0 1 2 - 0.208 2 3 cbr 500 ------- 1 1.0 5.0 1 2 r 0.216 2 3 cbr 500 ------- 1 1.0 5.0 0 1 + 0.216 3 5 cbr 500 ------- 1 1.0 5.0 0 1 - 0.216 3 5 cbr 500 ------- 1 1.0 5.0 0 1 r 0.232 2 3 tcp 1000 ------- 0 0.0 4.0 0 0 + 0.232 3 4 tcp 1000 ------- 0 0.0 4.0 0 0 - 0.232 3 4 tcp 1000 ------- 0 0.0 4.0 0 0 + 0.25 1 2 cbr 500 ------- 1 1.0 5.0 3 4 - 0.25 1 2 cbr 500 ------- 1 1.0 5.0 3 4 r 0.258 1 2 cbr 500 ------- 1 1.0 5.0 2 3 + 0.258 2 3 cbr 500 ------- 1 1.0 5.0 2 3 - 0.258 2 3 cbr 500 ------- 1 1.0 5.0 2 3 r 0.266 2 3 cbr 500 ------- 1 1.0 5.0 1 2 + 0.266 3 5 cbr 500 ------- 1 1.0 5.0 1 2 - 0.266 3 5 cbr 500 ------- 1 1.0 5.0 1 2 r 0.274 3 5 cbr 500 ------- 1 1.0 5.0 0 1 r 0.298 3 4 tcp 1000 ------- 0 0.0 4.0 0 0 + 0.298 4 3 ack 40 ------- 0 4.0 0.0 0 5 - 0.298 4 3 ack 40 ------- 0 4.0 0.0 0 5 v 0.29999999999999999 eval {set sim_annotation {Receive Ack_0}} + 0.3 1 2 cbr 500 ------- 1 1.0 5.0 4 6 - 0.3 1 2 cbr 500 ------- 1 1.0 5.0 4 6 r 0.308 1 2 cbr 500 ------- 1 1.0 5.0 3 4 + 0.308 2 3 cbr 500 ------- 1 1.0 5.0 3 4 - 0.308 2 3 cbr 500 ------- 1 1.0 5.0 3 4 r 0.316 2 3 cbr 500 ------- 1 1.0 5.0 2 3 + 0.316 3 5 cbr 500 ------- 1 1.0 5.0 2 3 - 0.316 3 5 cbr 500 ------- 1 1.0 5.0 2 3 r 0.324 3 5 cbr 500 ------- 1 1.0 5.0 1 2 r 0.34864 4 3 ack 40 ------- 0 4.0 0.0 0 5 + 0.34864 3 2 ack 40 ------- 0 4.0 0.0 0 5 - 0.34864 3 2 ack 40 ------- 0 4.0 0.0 0 5 + 0.35 1 2 cbr 500 ------- 1 1.0 5.0 5 7 - 0.35 1 2 cbr 500 ------- 1 1.0 5.0 5 7 r 0.358 1 2 cbr 500 ------- 1 1.0 5.0 4 6 + 0.358 2 3 cbr 500 ------- 1 1.0 5.0 4 6 - 0.358 2 3 cbr 500 ------- 1 1.0 5.0 4 6 r 0.366 2 3 cbr 500 ------- 1 1.0 5.0 3 4 + 0.366 3 5 cbr 500 ------- 1 1.0 5.0 3 4 - 0.366 3 5 cbr 500 ------- 1 1.0 5.0 3 4 r 0.374 3 5 cbr 500 ------- 1 1.0 5.0 2 3 r 0.39928 3 2 ack 40 ------- 0 4.0 0.0 0 5 + 0.39928 2 0 ack 40 ------- 0 4.0 0.0 0 5 - 0.39928 2 0 ack 40 ------- 0 4.0 0.0 0 5 + 0.4 1 2 cbr 500 ------- 1 1.0 5.0 6 8 - 0.4 1 2 cbr 500 ------- 1 1.0 5.0 6 8 r 0.408 1 2 cbr 500 ------- 1 1.0 5.0 5 7 + 0.408 2 3 cbr 500 ------- 1 1.0 5.0 5 7 - 0.408 2 3 cbr 500 ------- 1 1.0 5.0 5 7 r 0.416 2 3 cbr 500 ------- 1 1.0 5.0 4 6 + 0.416 3 5 cbr 500 ------- 1 1.0 5.0 4 6 - 0.416 3 5 cbr 500 ------- 1 1.0 5.0 4 6 r 0.424 3 5 cbr 500 ------- 1 1.0 5.0 3 4 r 0.44992 2 0 ack 40 ------- 0 4.0 0.0 0 5 + 0.44992 0 2 tcp 1000 ------- 0 0.0 4.0 1 9 - 0.44992 0 2 tcp 1000 ------- 0 0.0 4.0 1 9 + 0.45 1 2 cbr 500 ------- 1 1.0 5.0 7 10 - 0.45 1 2 cbr 500 ------- 1 1.0 5.0 7 10 v 0.45000000000000001 eval {set sim_annotation {Send Packet_1}} r 0.458 1 2 cbr 500 ------- 1 1.0 5.0 6 8 + 0.458 2 3 cbr 500 ------- 1 1.0 5.0 6 8 - 0.458 2 3 cbr 500 ------- 1 1.0 5.0 6 8 r 0.466 2 3 cbr 500 ------- 1 1.0 5.0 5 7 + 0.466 3 5 cbr 500 ------- 1 1.0 5.0 5 7 - 0.466 3 5 cbr 500 ------- 1 1.0 5.0 5 7 r 0.474 3 5 cbr 500 ------- 1 1.0 5.0 4 6 + 0.5 1 2 cbr 500 ------- 1 1.0 5.0 8 11 - 0.5 1 2 cbr 500 ------- 1 1.0 5.0 8 11 r 0.508 1 2 cbr 500 ------- 1 1.0 5.0 7 10 + 0.508 2 3 cbr 500 ------- 1 1.0 5.0 7 10 - 0.508 2 3 cbr 500 ------- 1 1.0 5.0 7 10 r 0.51592 0 2 tcp 1000 ------- 0 0.0 4.0 1 9 + 0.51592 2 3 tcp 1000 ------- 0 0.0 4.0 1 9 r 0.516 2 3 cbr 500 ------- 1 1.0 5.0 6 8 + 0.516 3 5 cbr 500 ------- 1 1.0 5.0 6 8 - 0.516 3 5 cbr 500 ------- 1 1.0 5.0 6 8 - 0.516 2 3 tcp 1000 ------- 0 0.0 4.0 1 9 r 0.524 3 5 cbr 500 ------- 1 1.0 5.0 5 7 + 0.55 1 2 cbr 500 ------- 1 1.0 5.0 9 12 - 0.55 1 2 cbr 500 ------- 1 1.0 5.0 9 12 r 0.558 1 2 cbr 500 ------- 1 1.0 5.0 8 11 + 0.558 2 3 cbr 500 ------- 1 1.0 5.0 8 11 - 0.558 2 3 cbr 500 ------- 1 1.0 5.0 8 11 r 0.566 2 3 cbr 500 ------- 1 1.0 5.0 7 10 + 0.566 3 5 cbr 500 ------- 1 1.0 5.0 7 10 - 0.566 3 5 cbr 500 ------- 1 1.0 5.0 7 10 r 0.574 3 5 cbr 500 ------- 1 1.0 5.0 6 8 r 0.582 2 3 tcp 1000 ------- 0 0.0 4.0 1 9 + 0.582 3 4 tcp 1000 ------- 0 0.0 4.0 1 9 - 0.582 3 4 tcp 1000 ------- 0 0.0 4.0 1 9 + 0.6 1 2 cbr 500 ------- 1 1.0 5.0 10 13 - 0.6 1 2 cbr 500 ------- 1 1.0 5.0 10 13 r 0.608 1 2 cbr 500 ------- 1 1.0 5.0 9 12 + 0.608 2 3 cbr 500 ------- 1 1.0 5.0 9 12 - 0.608 2 3 cbr 500 ------- 1 1.0 5.0 9 12 r 0.616 2 3 cbr 500 ------- 1 1.0 5.0 8 11 + 0.616 3 5 cbr 500 ------- 1 1.0 5.0 8 11 - 0.616 3 5 cbr 500 ------- 1 1.0 5.0 8 11 r 0.624 3 5 cbr 500 ------- 1 1.0 5.0 7 10 r 0.648 3 4 tcp 1000 ------- 0 0.0 4.0 1 9 + 0.648 4 3 ack 40 ------- 0 4.0 0.0 1 14 - 0.648 4 3 ack 40 ------- 0 4.0 0.0 1 14 v 0.65000000000000002 eval {set sim_annotation {Receive Ack_1}} + 0.65 1 2 cbr 500 ------- 1 1.0 5.0 11 15 - 0.65 1 2 cbr 500 ------- 1 1.0 5.0 11 15 r 0.658 1 2 cbr 500 ------- 1 1.0 5.0 10 13 + 0.658 2 3 cbr 500 ------- 1 1.0 5.0 10 13 - 0.658 2 3 cbr 500 ------- 1 1.0 5.0 10 13 r 0.666 2 3 cbr 500 ------- 1 1.0 5.0 9 12 + 0.666 3 5 cbr 500 ------- 1 1.0 5.0 9 12 - 0.666 3 5 cbr 500 ------- 1 1.0 5.0 9 12 r 0.674 3 5 cbr 500 ------- 1 1.0 5.0 8 11 r 0.69864 4 3 ack 40 ------- 0 4.0 0.0 1 14 + 0.69864 3 2 ack 40 ------- 0 4.0 0.0 1 14 - 0.69864 3 2 ack 40 ------- 0 4.0 0.0 1 14 + 0.7 1 2 cbr 500 ------- 1 1.0 5.0 12 16 - 0.7 1 2 cbr 500 ------- 1 1.0 5.0 12 16 r 0.708 1 2 cbr 500 ------- 1 1.0 5.0 11 15 + 0.708 2 3 cbr 500 ------- 1 1.0 5.0 11 15 - 0.708 2 3 cbr 500 ------- 1 1.0 5.0 11 15 r 0.716 2 3 cbr 500 ------- 1 1.0 5.0 10 13 + 0.716 3 5 cbr 500 ------- 1 1.0 5.0 10 13 - 0.716 3 5 cbr 500 ------- 1 1.0 5.0 10 13 r 0.724 3 5 cbr 500 ------- 1 1.0 5.0 9 12 r 0.74928 3 2 ack 40 ------- 0 4.0 0.0 1 14 + 0.74928 2 0 ack 40 ------- 0 4.0 0.0 1 14 - 0.74928 2 0 ack 40 ------- 0 4.0 0.0 1 14 + 0.75 1 2 cbr 500 ------- 1 1.0 5.0 13 17 - 0.75 1 2 cbr 500 ------- 1 1.0 5.0 13 17 r 0.758 1 2 cbr 500 ------- 1 1.0 5.0 12 16 + 0.758 2 3 cbr 500 ------- 1 1.0 5.0 12 16 - 0.758 2 3 cbr 500 ------- 1 1.0 5.0 12 16 r 0.766 2 3 cbr 500 ------- 1 1.0 5.0 11 15 + 0.766 3 5 cbr 500 ------- 1 1.0 5.0 11 15 - 0.766 3 5 cbr 500 ------- 1 1.0 5.0 11 15 r 0.774 3 5 cbr 500 ------- 1 1.0 5.0 10 13 r 0.79992 2 0 ack 40 ------- 0 4.0 0.0 1 14 + 0.79992 0 2 tcp 1000 ------- 0 0.0 4.0 2 18 - 0.79992 0 2 tcp 1000 ------- 0 0.0 4.0 2 18 v 0.80000000000000004 eval {set sim_annotation {Send Packet_2}} + 0.8 1 2 cbr 500 ------- 1 1.0 5.0 14 19 - 0.8 1 2 cbr 500 ------- 1 1.0 5.0 14 19 r 0.808 1 2 cbr 500 ------- 1 1.0 5.0 13 17 + 0.808 2 3 cbr 500 ------- 1 1.0 5.0 13 17 - 0.808 2 3 cbr 500 ------- 1 1.0 5.0 13 17 r 0.816 2 3 cbr 500 ------- 1 1.0 5.0 12 16 + 0.816 3 5 cbr 500 ------- 1 1.0 5.0 12 16 - 0.816 3 5 cbr 500 ------- 1 1.0 5.0 12 16 r 0.824 3 5 cbr 500 ------- 1 1.0 5.0 11 15 + 0.85 1 2 cbr 500 ------- 1 1.0 5.0 15 20 - 0.85 1 2 cbr 500 ------- 1 1.0 5.0 15 20 r 0.858 1 2 cbr 500 ------- 1 1.0 5.0 14 19 + 0.858 2 3 cbr 500 ------- 1 1.0 5.0 14 19 - 0.858 2 3 cbr 500 ------- 1 1.0 5.0 14 19 r 0.86592 0 2 tcp 1000 ------- 0 0.0 4.0 2 18 + 0.86592 2 3 tcp 1000 ------- 0 0.0 4.0 2 18 r 0.866 2 3 cbr 500 ------- 1 1.0 5.0 13 17 + 0.866 3 5 cbr 500 ------- 1 1.0 5.0 13 17 - 0.866 3 5 cbr 500 ------- 1 1.0 5.0 13 17 - 0.866 2 3 tcp 1000 ------- 0 0.0 4.0 2 18 r 0.874 3 5 cbr 500 ------- 1 1.0 5.0 12 16 + 0.9 1 2 cbr 500 ------- 1 1.0 5.0 16 21 - 0.9 1 2 cbr 500 ------- 1 1.0 5.0 16 21 r 0.908 1 2 cbr 500 ------- 1 1.0 5.0 15 20 + 0.908 2 3 cbr 500 ------- 1 1.0 5.0 15 20 - 0.908 2 3 cbr 500 ------- 1 1.0 5.0 15 20 r 0.916 2 3 cbr 500 ------- 1 1.0 5.0 14 19 + 0.916 3 5 cbr 500 ------- 1 1.0 5.0 14 19 - 0.916 3 5 cbr 500 ------- 1 1.0 5.0 14 19 r 0.924 3 5 cbr 500 ------- 1 1.0 5.0 13 17 r 0.932 2 3 tcp 1000 ------- 0 0.0 4.0 2 18 + 0.932 3 4 tcp 1000 ------- 0 0.0 4.0 2 18 - 0.932 3 4 tcp 1000 ------- 0 0.0 4.0 2 18 + 0.95 1 2 cbr 500 ------- 1 1.0 5.0 17 22 - 0.95 1 2 cbr 500 ------- 1 1.0 5.0 17 22 r 0.958 1 2 cbr 500 ------- 1 1.0 5.0 16 21 + 0.958 2 3 cbr 500 ------- 1 1.0 5.0 16 21 - 0.958 2 3 cbr 500 ------- 1 1.0 5.0 16 21 r 0.966 2 3 cbr 500 ------- 1 1.0 5.0 15 20 + 0.966 3 5 cbr 500 ------- 1 1.0 5.0 15 20 - 0.966 3 5 cbr 500 ------- 1 1.0 5.0 15 20 r 0.974 3 5 cbr 500 ------- 1 1.0 5.0 14 19 r 0.998 3 4 tcp 1000 ------- 0 0.0 4.0 2 18 + 0.998 4 3 ack 40 ------- 0 4.0 0.0 2 23 - 0.998 4 3 ack 40 ------- 0 4.0 0.0 2 23 v 1 eval {set sim_annotation {Receive Ack_2}} + 1 1 2 cbr 500 ------- 1 1.0 5.0 18 24 - 1 1 2 cbr 500 ------- 1 1.0 5.0 18 24 r 1.008 1 2 cbr 500 ------- 1 1.0 5.0 17 22 + 1.008 2 3 cbr 500 ------- 1 1.0 5.0 17 22 - 1.008 2 3 cbr 500 ------- 1 1.0 5.0 17 22 r 1.016 2 3 cbr 500 ------- 1 1.0 5.0 16 21 + 1.016 3 5 cbr 500 ------- 1 1.0 5.0 16 21 - 1.016 3 5 cbr 500 ------- 1 1.0 5.0 16 21 r 1.024 3 5 cbr 500 ------- 1 1.0 5.0 15 20 r 1.04864 4 3 ack 40 ------- 0 4.0 0.0 2 23 + 1.04864 3 2 ack 40 ------- 0 4.0 0.0 2 23 - 1.04864 3 2 ack 40 ------- 0 4.0 0.0 2 23 + 1.05 1 2 cbr 500 ------- 1 1.0 5.0 19 25 - 1.05 1 2 cbr 500 ------- 1 1.0 5.0 19 25 r 1.058 1 2 cbr 500 ------- 1 1.0 5.0 18 24 + 1.058 2 3 cbr 500 ------- 1 1.0 5.0 18 24 - 1.058 2 3 cbr 500 ------- 1 1.0 5.0 18 24 r 1.066 2 3 cbr 500 ------- 1 1.0 5.0 17 22 + 1.066 3 5 cbr 500 ------- 1 1.0 5.0 17 22 - 1.066 3 5 cbr 500 ------- 1 1.0 5.0 17 22 r 1.074 3 5 cbr 500 ------- 1 1.0 5.0 16 21 r 1.09928 3 2 ack 40 ------- 0 4.0 0.0 2 23 + 1.09928 2 0 ack 40 ------- 0 4.0 0.0 2 23 - 1.09928 2 0 ack 40 ------- 0 4.0 0.0 2 23 + 1.1 1 2 cbr 500 ------- 1 1.0 5.0 20 26 - 1.1 1 2 cbr 500 ------- 1 1.0 5.0 20 26 r 1.108 1 2 cbr 500 ------- 1 1.0 5.0 19 25 + 1.108 2 3 cbr 500 ------- 1 1.0 5.0 19 25 - 1.108 2 3 cbr 500 ------- 1 1.0 5.0 19 25 r 1.116 2 3 cbr 500 ------- 1 1.0 5.0 18 24 + 1.116 3 5 cbr 500 ------- 1 1.0 5.0 18 24 - 1.116 3 5 cbr 500 ------- 1 1.0 5.0 18 24 r 1.124 3 5 cbr 500 ------- 1 1.0 5.0 17 22 r 1.14992 2 0 ack 40 ------- 0 4.0 0.0 2 23 + 1.14992 0 2 tcp 1000 ------- 0 0.0 4.0 3 27 - 1.14992 0 2 tcp 1000 ------- 0 0.0 4.0 3 27 v 1.1499999999999999 eval {set sim_annotation {Send Packet_3}} + 1.15 1 2 cbr 500 ------- 1 1.0 5.0 21 28 - 1.15 1 2 cbr 500 ------- 1 1.0 5.0 21 28 r 1.158 1 2 cbr 500 ------- 1 1.0 5.0 20 26 + 1.158 2 3 cbr 500 ------- 1 1.0 5.0 20 26 - 1.158 2 3 cbr 500 ------- 1 1.0 5.0 20 26 r 1.166 2 3 cbr 500 ------- 1 1.0 5.0 19 25 + 1.166 3 5 cbr 500 ------- 1 1.0 5.0 19 25 - 1.166 3 5 cbr 500 ------- 1 1.0 5.0 19 25 r 1.174 3 5 cbr 500 ------- 1 1.0 5.0 18 24 + 1.2 1 2 cbr 500 ------- 1 1.0 5.0 22 29 - 1.2 1 2 cbr 500 ------- 1 1.0 5.0 22 29 r 1.208 1 2 cbr 500 ------- 1 1.0 5.0 21 28 + 1.208 2 3 cbr 500 ------- 1 1.0 5.0 21 28 - 1.208 2 3 cbr 500 ------- 1 1.0 5.0 21 28 r 1.21592 0 2 tcp 1000 ------- 0 0.0 4.0 3 27 + 1.21592 2 3 tcp 1000 ------- 0 0.0 4.0 3 27 r 1.216 2 3 cbr 500 ------- 1 1.0 5.0 20 26 + 1.216 3 5 cbr 500 ------- 1 1.0 5.0 20 26 - 1.216 3 5 cbr 500 ------- 1 1.0 5.0 20 26 - 1.216 2 3 tcp 1000 ------- 0 0.0 4.0 3 27 r 1.224 3 5 cbr 500 ------- 1 1.0 5.0 19 25 + 1.25 1 2 cbr 500 ------- 1 1.0 5.0 23 30 - 1.25 1 2 cbr 500 ------- 1 1.0 5.0 23 30 r 1.258 1 2 cbr 500 ------- 1 1.0 5.0 22 29 + 1.258 2 3 cbr 500 ------- 1 1.0 5.0 22 29 - 1.258 2 3 cbr 500 ------- 1 1.0 5.0 22 29 r 1.266 2 3 cbr 500 ------- 1 1.0 5.0 21 28 + 1.266 3 5 cbr 500 ------- 1 1.0 5.0 21 28 - 1.266 3 5 cbr 500 ------- 1 1.0 5.0 21 28 r 1.274 3 5 cbr 500 ------- 1 1.0 5.0 20 26 r 1.282 2 3 tcp 1000 ------- 0 0.0 4.0 3 27 + 1.282 3 4 tcp 1000 ------- 0 0.0 4.0 3 27 - 1.282 3 4 tcp 1000 ------- 0 0.0 4.0 3 27 + 1.3 1 2 cbr 500 ------- 1 1.0 5.0 24 31 - 1.3 1 2 cbr 500 ------- 1 1.0 5.0 24 31 r 1.308 1 2 cbr 500 ------- 1 1.0 5.0 23 30 + 1.308 2 3 cbr 500 ------- 1 1.0 5.0 23 30 - 1.308 2 3 cbr 500 ------- 1 1.0 5.0 23 30 r 1.316 2 3 cbr 500 ------- 1 1.0 5.0 22 29 + 1.316 3 5 cbr 500 ------- 1 1.0 5.0 22 29 - 1.316 3 5 cbr 500 ------- 1 1.0 5.0 22 29 r 1.324 3 5 cbr 500 ------- 1 1.0 5.0 21 28 r 1.348 3 4 tcp 1000 ------- 0 0.0 4.0 3 27 + 1.348 4 3 ack 40 ------- 0 4.0 0.0 3 32 - 1.348 4 3 ack 40 ------- 0 4.0 0.0 3 32 v 1.3500000000000001 eval {set sim_annotation {Receive Ack_3}} + 1.35 1 2 cbr 500 ------- 1 1.0 5.0 25 33 - 1.35 1 2 cbr 500 ------- 1 1.0 5.0 25 33 r 1.358 1 2 cbr 500 ------- 1 1.0 5.0 24 31 + 1.358 2 3 cbr 500 ------- 1 1.0 5.0 24 31 - 1.358 2 3 cbr 500 ------- 1 1.0 5.0 24 31 r 1.366 2 3 cbr 500 ------- 1 1.0 5.0 23 30 + 1.366 3 5 cbr 500 ------- 1 1.0 5.0 23 30 - 1.366 3 5 cbr 500 ------- 1 1.0 5.0 23 30 r 1.374 3 5 cbr 500 ------- 1 1.0 5.0 22 29 r 1.39864 4 3 ack 40 ------- 0 4.0 0.0 3 32 + 1.39864 3 2 ack 40 ------- 0 4.0 0.0 3 32 - 1.39864 3 2 ack 40 ------- 0 4.0 0.0 3 32 + 1.4 1 2 cbr 500 ------- 1 1.0 5.0 26 34 - 1.4 1 2 cbr 500 ------- 1 1.0 5.0 26 34 r 1.408 1 2 cbr 500 ------- 1 1.0 5.0 25 33 + 1.408 2 3 cbr 500 ------- 1 1.0 5.0 25 33 - 1.408 2 3 cbr 500 ------- 1 1.0 5.0 25 33 r 1.416 2 3 cbr 500 ------- 1 1.0 5.0 24 31 + 1.416 3 5 cbr 500 ------- 1 1.0 5.0 24 31 - 1.416 3 5 cbr 500 ------- 1 1.0 5.0 24 31 r 1.424 3 5 cbr 500 ------- 1 1.0 5.0 23 30 r 1.44928 3 2 ack 40 ------- 0 4.0 0.0 3 32 + 1.44928 2 0 ack 40 ------- 0 4.0 0.0 3 32 - 1.44928 2 0 ack 40 ------- 0 4.0 0.0 3 32 + 1.45 1 2 cbr 500 ------- 1 1.0 5.0 27 35 - 1.45 1 2 cbr 500 ------- 1 1.0 5.0 27 35 r 1.458 1 2 cbr 500 ------- 1 1.0 5.0 26 34 + 1.458 2 3 cbr 500 ------- 1 1.0 5.0 26 34 - 1.458 2 3 cbr 500 ------- 1 1.0 5.0 26 34 r 1.466 2 3 cbr 500 ------- 1 1.0 5.0 25 33 + 1.466 3 5 cbr 500 ------- 1 1.0 5.0 25 33 - 1.466 3 5 cbr 500 ------- 1 1.0 5.0 25 33 r 1.474 3 5 cbr 500 ------- 1 1.0 5.0 24 31 r 1.49992 2 0 ack 40 ------- 0 4.0 0.0 3 32 + 1.49992 0 2 tcp 1000 ------- 0 0.0 4.0 4 36 - 1.49992 0 2 tcp 1000 ------- 0 0.0 4.0 4 36 v 1.5 eval {set sim_annotation {Send Packet_4}} + 1.5 1 2 cbr 500 ------- 1 1.0 5.0 28 37 - 1.5 1 2 cbr 500 ------- 1 1.0 5.0 28 37 r 1.508 1 2 cbr 500 ------- 1 1.0 5.0 27 35 + 1.508 2 3 cbr 500 ------- 1 1.0 5.0 27 35 - 1.508 2 3 cbr 500 ------- 1 1.0 5.0 27 35 r 1.516 2 3 cbr 500 ------- 1 1.0 5.0 26 34 + 1.516 3 5 cbr 500 ------- 1 1.0 5.0 26 34 - 1.516 3 5 cbr 500 ------- 1 1.0 5.0 26 34 r 1.524 3 5 cbr 500 ------- 1 1.0 5.0 25 33 + 1.55 1 2 cbr 500 ------- 1 1.0 5.0 29 38 - 1.55 1 2 cbr 500 ------- 1 1.0 5.0 29 38 r 1.558 1 2 cbr 500 ------- 1 1.0 5.0 28 37 + 1.558 2 3 cbr 500 ------- 1 1.0 5.0 28 37 - 1.558 2 3 cbr 500 ------- 1 1.0 5.0 28 37 r 1.56592 0 2 tcp 1000 ------- 0 0.0 4.0 4 36 + 1.56592 2 3 tcp 1000 ------- 0 0.0 4.0 4 36 r 1.566 2 3 cbr 500 ------- 1 1.0 5.0 27 35 + 1.566 3 5 cbr 500 ------- 1 1.0 5.0 27 35 - 1.566 3 5 cbr 500 ------- 1 1.0 5.0 27 35 - 1.566 2 3 tcp 1000 ------- 0 0.0 4.0 4 36 r 1.574 3 5 cbr 500 ------- 1 1.0 5.0 26 34 + 1.6 1 2 cbr 500 ------- 1 1.0 5.0 30 39 - 1.6 1 2 cbr 500 ------- 1 1.0 5.0 30 39 r 1.608 1 2 cbr 500 ------- 1 1.0 5.0 29 38 + 1.608 2 3 cbr 500 ------- 1 1.0 5.0 29 38 - 1.608 2 3 cbr 500 ------- 1 1.0 5.0 29 38 r 1.616 2 3 cbr 500 ------- 1 1.0 5.0 28 37 + 1.616 3 5 cbr 500 ------- 1 1.0 5.0 28 37 - 1.616 3 5 cbr 500 ------- 1 1.0 5.0 28 37 r 1.624 3 5 cbr 500 ------- 1 1.0 5.0 27 35 r 1.632 2 3 tcp 1000 ------- 0 0.0 4.0 4 36 + 1.632 3 4 tcp 1000 ------- 0 0.0 4.0 4 36 - 1.632 3 4 tcp 1000 ------- 0 0.0 4.0 4 36 + 1.65 1 2 cbr 500 ------- 1 1.0 5.0 31 40 - 1.65 1 2 cbr 500 ------- 1 1.0 5.0 31 40 r 1.658 1 2 cbr 500 ------- 1 1.0 5.0 30 39 + 1.658 2 3 cbr 500 ------- 1 1.0 5.0 30 39 - 1.658 2 3 cbr 500 ------- 1 1.0 5.0 30 39 r 1.666 2 3 cbr 500 ------- 1 1.0 5.0 29 38 + 1.666 3 5 cbr 500 ------- 1 1.0 5.0 29 38 - 1.666 3 5 cbr 500 ------- 1 1.0 5.0 29 38 r 1.674 3 5 cbr 500 ------- 1 1.0 5.0 28 37 r 1.698 3 4 tcp 1000 ------- 0 0.0 4.0 4 36 + 1.698 4 3 ack 40 ------- 0 4.0 0.0 4 41 - 1.698 4 3 ack 40 ------- 0 4.0 0.0 4 41 v 1.7 eval {set sim_annotation {Receive Ack_4}} r 1.708 1 2 cbr 500 ------- 1 1.0 5.0 31 40 + 1.708 2 3 cbr 500 ------- 1 1.0 5.0 31 40 - 1.708 2 3 cbr 500 ------- 1 1.0 5.0 31 40 r 1.716 2 3 cbr 500 ------- 1 1.0 5.0 30 39 + 1.716 3 5 cbr 500 ------- 1 1.0 5.0 30 39 - 1.716 3 5 cbr 500 ------- 1 1.0 5.0 30 39 r 1.724 3 5 cbr 500 ------- 1 1.0 5.0 29 38 r 1.74864 4 3 ack 40 ------- 0 4.0 0.0 4 41 + 1.74864 3 2 ack 40 ------- 0 4.0 0.0 4 41 - 1.74864 3 2 ack 40 ------- 0 4.0 0.0 4 41 r 1.766 2 3 cbr 500 ------- 1 1.0 5.0 31 40 + 1.766 3 5 cbr 500 ------- 1 1.0 5.0 31 40 - 1.766 3 5 cbr 500 ------- 1 1.0 5.0 31 40 r 1.774 3 5 cbr 500 ------- 1 1.0 5.0 30 39 r 1.79928 3 2 ack 40 ------- 0 4.0 0.0 4 41 + 1.79928 2 0 ack 40 ------- 0 4.0 0.0 4 41 - 1.79928 2 0 ack 40 ------- 0 4.0 0.0 4 41 v 1.8 eval {set sim_annotation {FTP stops}} r 1.824 3 5 cbr 500 ------- 1 1.0 5.0 31 40 r 1.84992 2 0 ack 40 ------- 0 4.0 0.0 4 41 nam-1.15/edu/B2-stop-n-wait-loss.nam0000664000076400007660000137610206751716007015772 0ustar tomhnsnamV -t * -v 1.0a5 -a 1 -c 1 -F 1 -M 2 c -t * -i 0 -n black N -t * -S 0 -n {TCP session between node 0.0 and node 4.0} -p TCP -m {} N -t * -S 0 -h 6 N -t * -F 0 -M 0 -n tcp N -t * -F 0 -M 1 -n ack A -t * -n 1 -p 0 -o 255 -c 15 -a 1 A -t * -h 1 -m 127 -s 8 n -t * -a 4 -s 4 -S UP -v circle -c black n -t * -a 0 -s 0 -S UP -v circle -c black n -t * -a 5 -s 5 -S UP -v circle -c red n -t * -a 1 -s 1 -S UP -v circle -c red n -t * -a 2 -s 2 -S UP -v rectangular -c blue n -t * -a 3 -s 3 -S UP -v rectangular -c blue l -t * -s 0 -d 2 -S UP -r 500000 -D 0.050000000000000003 -c black -o right-down l -t * -s 1 -d 2 -S UP -r 500000 -D 0.050000000000000003 -c black -o right-up l -t * -s 2 -d 3 -S UP -r 500000 -D 0.050000000000000003 -c black -o right l -t * -s 3 -d 4 -S UP -r 500000 -D 0.050000000000000003 -c black -o right-up l -t * -s 3 -d 5 -S UP -r 500000 -D 0.050000000000000003 -c black -o right-down q -t * -s 3 -d 2 -a 0.5 q -t * -s 2 -d 3 -a 0.5 a -t 0.00000000000000000 -s 0 -d 4 -n tcp f -t 0.00000000000000000 -s 0 -d 4 -n cwnd_ -a tcp -v 1.000000 -T v v -t 0.00000000000000000 monitor_agent 0 tcp n -t 0 -s 0 -S DLABEL -l Stop&Wait -L "" n -t 0 -s 1 -S DLABEL -l CBR -L "" n -t 0 -s 4 -S DLABEL -l Stop&Wait -L "" n -t 0 -s 5 -S DLABEL -l CBR -L "" v -t 0 sim_annotation 0 1 Stop and Wait with packet loss v -t 0.050000000000000003 sim_annotation 0.050000000000000003 2 FTP starts at 0.1 + -t 0.1 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -f 0 -m 0 -y {0 0} - -t 0.1 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} h -t 0.1 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {-1 -1} + -t 0.1 -s 1 -d 2 -p cbr -e 210 -c 1 -i 1 -a 1 - -t 0.1 -s 1 -d 2 -p cbr -e 210 -c 1 -i 1 -a 1 h -t 0.1 -s 1 -d 2 -p cbr -e 210 -c 1 -i 1 -a 1 + -t 0.10375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 2 -a 1 - -t 0.10375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 2 -a 1 h -t 0.10375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 2 -a 1 + -t 0.1075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 3 -a 1 - -t 0.1075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 3 -a 1 h -t 0.1075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 3 -a 1 v -t 0.11 sim_annotation 0.11 3 Send Packet_0 + -t 0.11125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 4 -a 1 - -t 0.11125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 4 -a 1 h -t 0.11125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 4 -a 1 + -t 0.115 -s 1 -d 2 -p cbr -e 210 -c 1 -i 5 -a 1 - -t 0.115 -s 1 -d 2 -p cbr -e 210 -c 1 -i 5 -a 1 h -t 0.115 -s 1 -d 2 -p cbr -e 210 -c 1 -i 5 -a 1 + -t 0.11875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 6 -a 1 - -t 0.11875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 6 -a 1 h -t 0.11875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 6 -a 1 + -t 0.1225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 7 -a 1 - -t 0.1225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 7 -a 1 h -t 0.1225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 7 -a 1 + -t 0.12625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 8 -a 1 - -t 0.12625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 8 -a 1 h -t 0.12625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 8 -a 1 + -t 0.13 -s 1 -d 2 -p cbr -e 210 -c 1 -i 9 -a 1 - -t 0.13 -s 1 -d 2 -p cbr -e 210 -c 1 -i 9 -a 1 h -t 0.13 -s 1 -d 2 -p cbr -e 210 -c 1 -i 9 -a 1 + -t 0.13375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 10 -a 1 - -t 0.13375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 10 -a 1 h -t 0.13375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 10 -a 1 + -t 0.1375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 11 -a 1 - -t 0.1375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 11 -a 1 h -t 0.1375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 11 -a 1 + -t 0.14125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 12 -a 1 - -t 0.14125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 12 -a 1 h -t 0.14125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 12 -a 1 + -t 0.145 -s 1 -d 2 -p cbr -e 210 -c 1 -i 13 -a 1 - -t 0.145 -s 1 -d 2 -p cbr -e 210 -c 1 -i 13 -a 1 h -t 0.145 -s 1 -d 2 -p cbr -e 210 -c 1 -i 13 -a 1 + -t 0.14875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 14 -a 1 - -t 0.14875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 14 -a 1 h -t 0.14875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 14 -a 1 + -t 0.1525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 15 -a 1 - -t 0.1525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 15 -a 1 h -t 0.1525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 15 -a 1 r -t 0.15336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 1 -a 1 + -t 0.15336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 1 -a 1 - -t 0.15336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 1 -a 1 h -t 0.15336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 1 -a 1 + -t 0.15625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 16 -a 1 - -t 0.15625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 16 -a 1 h -t 0.15625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 16 -a 1 r -t 0.15711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 2 -a 1 + -t 0.15711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 2 -a 1 - -t 0.15711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 2 -a 1 h -t 0.15711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 2 -a 1 + -t 0.16 -s 1 -d 2 -p cbr -e 210 -c 1 -i 17 -a 1 - -t 0.16 -s 1 -d 2 -p cbr -e 210 -c 1 -i 17 -a 1 h -t 0.16 -s 1 -d 2 -p cbr -e 210 -c 1 -i 17 -a 1 r -t 0.16086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 3 -a 1 + -t 0.16086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 3 -a 1 - -t 0.16086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 3 -a 1 h -t 0.16086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 3 -a 1 + -t 0.16375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 18 -a 1 - -t 0.16375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 18 -a 1 h -t 0.16375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 18 -a 1 r -t 0.16461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 4 -a 1 + -t 0.16461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 4 -a 1 - -t 0.16461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 4 -a 1 h -t 0.16461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 4 -a 1 r -t 0.166 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} + -t 0.166 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} + -t 0.1675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 19 -a 1 - -t 0.1675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 19 -a 1 h -t 0.1675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 19 -a 1 - -t 0.16797 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} h -t 0.16797 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {-1 -1} r -t 0.16836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 5 -a 1 + -t 0.16836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 5 -a 1 + -t 0.17125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 20 -a 1 - -t 0.17125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 20 -a 1 h -t 0.17125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 20 -a 1 r -t 0.17211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 6 -a 1 + -t 0.17211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 6 -a 1 d -t 0.17211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 6 -a 1 + -t 0.175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 21 -a 1 - -t 0.175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 21 -a 1 h -t 0.175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 21 -a 1 r -t 0.17586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 7 -a 1 + -t 0.17586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 7 -a 1 d -t 0.17586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 7 -a 1 + -t 0.17875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 22 -a 1 - -t 0.17875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 22 -a 1 h -t 0.17875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 22 -a 1 r -t 0.17961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 8 -a 1 + -t 0.17961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 8 -a 1 d -t 0.17961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 8 -a 1 + -t 0.1825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 23 -a 1 - -t 0.1825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 23 -a 1 h -t 0.1825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 23 -a 1 r -t 0.18336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 9 -a 1 + -t 0.18336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 9 -a 1 d -t 0.18336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 9 -a 1 - -t 0.18397 -s 2 -d 3 -p cbr -e 210 -c 1 -i 5 -a 1 h -t 0.18397 -s 2 -d 3 -p cbr -e 210 -c 1 -i 5 -a 1 + -t 0.18625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 24 -a 1 - -t 0.18625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 24 -a 1 h -t 0.18625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 24 -a 1 r -t 0.18711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 10 -a 1 + -t 0.18711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 10 -a 1 - -t 0.18733 -s 2 -d 3 -p cbr -e 210 -c 1 -i 10 -a 1 h -t 0.18733 -s 2 -d 3 -p cbr -e 210 -c 1 -i 10 -a 1 + -t 0.19 -s 1 -d 2 -p cbr -e 210 -c 1 -i 25 -a 1 - -t 0.19 -s 1 -d 2 -p cbr -e 210 -c 1 -i 25 -a 1 h -t 0.19 -s 1 -d 2 -p cbr -e 210 -c 1 -i 25 -a 1 r -t 0.19086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 11 -a 1 + -t 0.19086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 11 -a 1 - -t 0.19086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 11 -a 1 h -t 0.19086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 11 -a 1 + -t 0.19375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 26 -a 1 - -t 0.19375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 26 -a 1 h -t 0.19375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 26 -a 1 r -t 0.19461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 12 -a 1 + -t 0.19461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 12 -a 1 - -t 0.19461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 12 -a 1 h -t 0.19461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 12 -a 1 + -t 0.1975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 27 -a 1 - -t 0.1975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 27 -a 1 h -t 0.1975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 27 -a 1 r -t 0.19836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 13 -a 1 + -t 0.19836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 13 -a 1 - -t 0.19836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 13 -a 1 h -t 0.19836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 13 -a 1 + -t 0.20125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 28 -a 1 - -t 0.20125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 28 -a 1 h -t 0.20125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 28 -a 1 r -t 0.20211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 14 -a 1 + -t 0.20211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 14 -a 1 - -t 0.20211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 14 -a 1 h -t 0.20211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 14 -a 1 + -t 0.205 -s 1 -d 2 -p cbr -e 210 -c 1 -i 29 -a 1 - -t 0.205 -s 1 -d 2 -p cbr -e 210 -c 1 -i 29 -a 1 h -t 0.205 -s 1 -d 2 -p cbr -e 210 -c 1 -i 29 -a 1 r -t 0.20586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 15 -a 1 + -t 0.20586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 15 -a 1 - -t 0.20586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 15 -a 1 h -t 0.20586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 15 -a 1 r -t 0.20672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 1 -a 1 + -t 0.20672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 1 -a 1 - -t 0.20672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 1 -a 1 h -t 0.20672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 1 -a 1 + -t 0.20875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 30 -a 1 - -t 0.20875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 30 -a 1 h -t 0.20875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 30 -a 1 r -t 0.20961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 16 -a 1 + -t 0.20961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 16 -a 1 - -t 0.20961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 16 -a 1 h -t 0.20961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 16 -a 1 r -t 0.21047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 2 -a 1 + -t 0.21047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 2 -a 1 - -t 0.21047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 2 -a 1 h -t 0.21047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 2 -a 1 + -t 0.2125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 31 -a 1 - -t 0.2125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 31 -a 1 h -t 0.2125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 31 -a 1 r -t 0.21336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 17 -a 1 + -t 0.21336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 17 -a 1 - -t 0.21336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 17 -a 1 h -t 0.21336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 17 -a 1 r -t 0.21422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 3 -a 1 + -t 0.21422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 3 -a 1 - -t 0.21422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 3 -a 1 h -t 0.21422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 3 -a 1 + -t 0.21625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 32 -a 1 - -t 0.21625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 32 -a 1 h -t 0.21625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 32 -a 1 r -t 0.21711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 18 -a 1 + -t 0.21711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 18 -a 1 - -t 0.21711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 18 -a 1 h -t 0.21711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 18 -a 1 r -t 0.21797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 4 -a 1 + -t 0.21797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 4 -a 1 - -t 0.21797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 4 -a 1 h -t 0.21797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 4 -a 1 + -t 0.22 -s 1 -d 2 -p cbr -e 210 -c 1 -i 33 -a 1 - -t 0.22 -s 1 -d 2 -p cbr -e 210 -c 1 -i 33 -a 1 h -t 0.22 -s 1 -d 2 -p cbr -e 210 -c 1 -i 33 -a 1 r -t 0.22086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 19 -a 1 + -t 0.22086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 19 -a 1 - -t 0.22086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 19 -a 1 h -t 0.22086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 19 -a 1 + -t 0.22375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 34 -a 1 - -t 0.22375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 34 -a 1 h -t 0.22375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 34 -a 1 r -t 0.22461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 20 -a 1 + -t 0.22461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 20 -a 1 - -t 0.22461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 20 -a 1 h -t 0.22461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 20 -a 1 + -t 0.2275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 35 -a 1 - -t 0.2275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 35 -a 1 h -t 0.2275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 35 -a 1 r -t 0.22836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 21 -a 1 + -t 0.22836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 21 -a 1 - -t 0.22836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 21 -a 1 h -t 0.22836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 21 -a 1 + -t 0.23125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 36 -a 1 - -t 0.23125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 36 -a 1 h -t 0.23125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 36 -a 1 r -t 0.23211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 22 -a 1 + -t 0.23211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 22 -a 1 - -t 0.23211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 22 -a 1 h -t 0.23211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 22 -a 1 r -t 0.23397 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} + -t 0.23397 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} - -t 0.23397 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} h -t 0.23397 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {-1 -1} + -t 0.235 -s 1 -d 2 -p cbr -e 210 -c 1 -i 37 -a 1 - -t 0.235 -s 1 -d 2 -p cbr -e 210 -c 1 -i 37 -a 1 h -t 0.235 -s 1 -d 2 -p cbr -e 210 -c 1 -i 37 -a 1 r -t 0.23586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 23 -a 1 + -t 0.23586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 23 -a 1 - -t 0.23586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 23 -a 1 h -t 0.23586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 23 -a 1 r -t 0.23733 -s 2 -d 3 -p cbr -e 210 -c 1 -i 5 -a 1 + -t 0.23733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 5 -a 1 - -t 0.23733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 5 -a 1 h -t 0.23733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 5 -a 1 + -t 0.23875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 38 -a 1 - -t 0.23875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 38 -a 1 h -t 0.23875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 38 -a 1 r -t 0.23961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 24 -a 1 + -t 0.23961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 24 -a 1 - -t 0.23961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 24 -a 1 h -t 0.23961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 24 -a 1 r -t 0.24069 -s 2 -d 3 -p cbr -e 210 -c 1 -i 10 -a 1 + -t 0.24069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 10 -a 1 - -t 0.24069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 10 -a 1 h -t 0.24069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 10 -a 1 + -t 0.2425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 39 -a 1 - -t 0.2425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 39 -a 1 h -t 0.2425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 39 -a 1 r -t 0.24336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 25 -a 1 + -t 0.24336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 25 -a 1 - -t 0.24336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 25 -a 1 h -t 0.24336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 25 -a 1 r -t 0.24422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 11 -a 1 + -t 0.24422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 11 -a 1 - -t 0.24422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 11 -a 1 h -t 0.24422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 11 -a 1 + -t 0.24625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 40 -a 1 - -t 0.24625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 40 -a 1 h -t 0.24625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 40 -a 1 r -t 0.24711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 26 -a 1 + -t 0.24711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 26 -a 1 - -t 0.24711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 26 -a 1 h -t 0.24711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 26 -a 1 r -t 0.24797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 12 -a 1 + -t 0.24797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 12 -a 1 - -t 0.24797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 12 -a 1 h -t 0.24797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 12 -a 1 + -t 0.25 -s 1 -d 2 -p cbr -e 210 -c 1 -i 41 -a 1 - -t 0.25 -s 1 -d 2 -p cbr -e 210 -c 1 -i 41 -a 1 h -t 0.25 -s 1 -d 2 -p cbr -e 210 -c 1 -i 41 -a 1 r -t 0.25086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 27 -a 1 + -t 0.25086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 27 -a 1 - -t 0.25086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 27 -a 1 h -t 0.25086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 27 -a 1 r -t 0.25172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 13 -a 1 + -t 0.25172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 13 -a 1 - -t 0.25172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 13 -a 1 h -t 0.25172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 13 -a 1 + -t 0.25375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 42 -a 1 - -t 0.25375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 42 -a 1 h -t 0.25375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 42 -a 1 r -t 0.25461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 28 -a 1 + -t 0.25461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 28 -a 1 - -t 0.25461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 28 -a 1 h -t 0.25461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 28 -a 1 r -t 0.25547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 14 -a 1 + -t 0.25547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 14 -a 1 - -t 0.25547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 14 -a 1 h -t 0.25547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 14 -a 1 + -t 0.2575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 43 -a 1 - -t 0.2575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 43 -a 1 h -t 0.2575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 43 -a 1 r -t 0.25836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 29 -a 1 + -t 0.25836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 29 -a 1 - -t 0.25836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 29 -a 1 h -t 0.25836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 29 -a 1 r -t 0.25922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 15 -a 1 + -t 0.25922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 15 -a 1 - -t 0.25922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 15 -a 1 h -t 0.25922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 15 -a 1 r -t 0.26008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 1 -a 1 + -t 0.26125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 44 -a 1 - -t 0.26125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 44 -a 1 h -t 0.26125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 44 -a 1 r -t 0.26211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 30 -a 1 + -t 0.26211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 30 -a 1 - -t 0.26211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 30 -a 1 h -t 0.26211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 30 -a 1 r -t 0.26297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 16 -a 1 + -t 0.26297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 16 -a 1 - -t 0.26297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 16 -a 1 h -t 0.26297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 16 -a 1 r -t 0.26383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 2 -a 1 + -t 0.265 -s 1 -d 2 -p cbr -e 210 -c 1 -i 45 -a 1 - -t 0.265 -s 1 -d 2 -p cbr -e 210 -c 1 -i 45 -a 1 h -t 0.265 -s 1 -d 2 -p cbr -e 210 -c 1 -i 45 -a 1 r -t 0.26586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 31 -a 1 + -t 0.26586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 31 -a 1 - -t 0.26586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 31 -a 1 h -t 0.26586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 31 -a 1 r -t 0.26672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 17 -a 1 + -t 0.26672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 17 -a 1 - -t 0.26672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 17 -a 1 h -t 0.26672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 17 -a 1 r -t 0.26758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 3 -a 1 + -t 0.26875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 46 -a 1 - -t 0.26875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 46 -a 1 h -t 0.26875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 46 -a 1 r -t 0.26961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 32 -a 1 + -t 0.26961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 32 -a 1 - -t 0.26961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 32 -a 1 h -t 0.26961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 32 -a 1 r -t 0.27047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 18 -a 1 + -t 0.27047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 18 -a 1 - -t 0.27047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 18 -a 1 h -t 0.27047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 18 -a 1 r -t 0.27133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 4 -a 1 + -t 0.2725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 47 -a 1 - -t 0.2725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 47 -a 1 h -t 0.2725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 47 -a 1 r -t 0.27336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 33 -a 1 + -t 0.27336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 33 -a 1 - -t 0.27336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 33 -a 1 h -t 0.27336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 33 -a 1 r -t 0.27422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 19 -a 1 + -t 0.27422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 19 -a 1 - -t 0.27422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 19 -a 1 h -t 0.27422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 19 -a 1 + -t 0.27625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 48 -a 1 - -t 0.27625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 48 -a 1 h -t 0.27625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 48 -a 1 r -t 0.27711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 34 -a 1 + -t 0.27711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 34 -a 1 - -t 0.27711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 34 -a 1 h -t 0.27711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 34 -a 1 r -t 0.27797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 20 -a 1 + -t 0.27797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 20 -a 1 - -t 0.27797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 20 -a 1 h -t 0.27797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 20 -a 1 + -t 0.28 -s 1 -d 2 -p cbr -e 210 -c 1 -i 49 -a 1 - -t 0.28 -s 1 -d 2 -p cbr -e 210 -c 1 -i 49 -a 1 h -t 0.28 -s 1 -d 2 -p cbr -e 210 -c 1 -i 49 -a 1 r -t 0.28086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 35 -a 1 + -t 0.28086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 35 -a 1 - -t 0.28086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 35 -a 1 h -t 0.28086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 35 -a 1 r -t 0.28172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 21 -a 1 + -t 0.28172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 21 -a 1 - -t 0.28172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 21 -a 1 h -t 0.28172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 21 -a 1 + -t 0.28375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 50 -a 1 - -t 0.28375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 50 -a 1 h -t 0.28375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 50 -a 1 r -t 0.28461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 36 -a 1 + -t 0.28461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 36 -a 1 - -t 0.28461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 36 -a 1 h -t 0.28461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 36 -a 1 r -t 0.28547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 22 -a 1 + -t 0.28547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 22 -a 1 - -t 0.28547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 22 -a 1 h -t 0.28547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 22 -a 1 + -t 0.2875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 51 -a 1 - -t 0.2875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 51 -a 1 h -t 0.2875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 51 -a 1 r -t 0.28836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 37 -a 1 + -t 0.28836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 37 -a 1 - -t 0.28836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 37 -a 1 h -t 0.28836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 37 -a 1 r -t 0.28922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 23 -a 1 + -t 0.28922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 23 -a 1 - -t 0.28922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 23 -a 1 h -t 0.28922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 23 -a 1 r -t 0.29069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 5 -a 1 + -t 0.29125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 52 -a 1 - -t 0.29125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 52 -a 1 h -t 0.29125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 52 -a 1 r -t 0.29211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 38 -a 1 + -t 0.29211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 38 -a 1 - -t 0.29211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 38 -a 1 h -t 0.29211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 38 -a 1 r -t 0.29297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 24 -a 1 + -t 0.29297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 24 -a 1 - -t 0.29297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 24 -a 1 h -t 0.29297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 24 -a 1 r -t 0.29405 -s 3 -d 5 -p cbr -e 210 -c 1 -i 10 -a 1 + -t 0.295 -s 1 -d 2 -p cbr -e 210 -c 1 -i 53 -a 1 - -t 0.295 -s 1 -d 2 -p cbr -e 210 -c 1 -i 53 -a 1 h -t 0.295 -s 1 -d 2 -p cbr -e 210 -c 1 -i 53 -a 1 r -t 0.29586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 39 -a 1 + -t 0.29586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 39 -a 1 - -t 0.29586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 39 -a 1 h -t 0.29586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 39 -a 1 r -t 0.29672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 25 -a 1 + -t 0.29672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 25 -a 1 - -t 0.29672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 25 -a 1 h -t 0.29672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 25 -a 1 r -t 0.29758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 11 -a 1 + -t 0.29875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 54 -a 1 - -t 0.29875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 54 -a 1 h -t 0.29875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 54 -a 1 r -t 0.29961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 40 -a 1 + -t 0.29961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 40 -a 1 - -t 0.29961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 40 -a 1 h -t 0.29961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 40 -a 1 r -t 0.29997 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} + -t 0.29997 -s 4 -d 3 -p ack -e 40 -c 0 -i 55 -a 0 -S 0 -y {0 0} - -t 0.29997 -s 4 -d 3 -p ack -e 40 -c 0 -i 55 -a 0 -S 0 -y {0 0} h -t 0.29997 -s 4 -d 3 -p ack -e 40 -c 0 -i 55 -a 0 -S 0 -y {-1 -1} v -t 0.29999999999999999 sim_annotation 0.29999999999999999 4 Receive Ack_0 r -t 0.30047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 26 -a 1 + -t 0.30047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 26 -a 1 - -t 0.30047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 26 -a 1 h -t 0.30047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 26 -a 1 r -t 0.30133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 12 -a 1 + -t 0.3025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 56 -a 1 - -t 0.3025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 56 -a 1 h -t 0.3025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 56 -a 1 r -t 0.30336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 41 -a 1 + -t 0.30336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 41 -a 1 - -t 0.30336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 41 -a 1 h -t 0.30336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 41 -a 1 r -t 0.30422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 27 -a 1 + -t 0.30422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 27 -a 1 - -t 0.30422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 27 -a 1 h -t 0.30422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 27 -a 1 r -t 0.30508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 13 -a 1 + -t 0.30625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 57 -a 1 - -t 0.30625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 57 -a 1 h -t 0.30625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 57 -a 1 r -t 0.30711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 42 -a 1 + -t 0.30711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 42 -a 1 - -t 0.30711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 42 -a 1 h -t 0.30711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 42 -a 1 r -t 0.30797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 28 -a 1 + -t 0.30797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 28 -a 1 - -t 0.30797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 28 -a 1 h -t 0.30797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 28 -a 1 r -t 0.30883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 14 -a 1 + -t 0.31 -s 1 -d 2 -p cbr -e 210 -c 1 -i 58 -a 1 - -t 0.31 -s 1 -d 2 -p cbr -e 210 -c 1 -i 58 -a 1 h -t 0.31 -s 1 -d 2 -p cbr -e 210 -c 1 -i 58 -a 1 r -t 0.31086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 43 -a 1 + -t 0.31086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 43 -a 1 - -t 0.31086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 43 -a 1 h -t 0.31086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 43 -a 1 r -t 0.31172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 29 -a 1 + -t 0.31172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 29 -a 1 - -t 0.31172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 29 -a 1 h -t 0.31172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 29 -a 1 r -t 0.31258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 15 -a 1 + -t 0.31375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 59 -a 1 - -t 0.31375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 59 -a 1 h -t 0.31375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 59 -a 1 r -t 0.31461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 44 -a 1 + -t 0.31461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 44 -a 1 - -t 0.31461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 44 -a 1 h -t 0.31461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 44 -a 1 r -t 0.31547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 30 -a 1 + -t 0.31547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 30 -a 1 - -t 0.31547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 30 -a 1 h -t 0.31547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 30 -a 1 r -t 0.31633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 16 -a 1 + -t 0.3175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 60 -a 1 - -t 0.3175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 60 -a 1 h -t 0.3175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 60 -a 1 r -t 0.31836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 45 -a 1 + -t 0.31836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 45 -a 1 - -t 0.31836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 45 -a 1 h -t 0.31836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 45 -a 1 r -t 0.31922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 31 -a 1 + -t 0.31922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 31 -a 1 - -t 0.31922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 31 -a 1 h -t 0.31922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 31 -a 1 r -t 0.32008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 17 -a 1 + -t 0.32125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 61 -a 1 - -t 0.32125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 61 -a 1 h -t 0.32125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 61 -a 1 r -t 0.32211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 46 -a 1 + -t 0.32211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 46 -a 1 - -t 0.32211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 46 -a 1 h -t 0.32211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 46 -a 1 r -t 0.32297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 32 -a 1 + -t 0.32297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 32 -a 1 - -t 0.32297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 32 -a 1 h -t 0.32297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 32 -a 1 r -t 0.32383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 18 -a 1 + -t 0.325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 62 -a 1 - -t 0.325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 62 -a 1 h -t 0.325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 62 -a 1 r -t 0.32586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 47 -a 1 + -t 0.32586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 47 -a 1 - -t 0.32586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 47 -a 1 h -t 0.32586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 47 -a 1 r -t 0.32672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 33 -a 1 + -t 0.32672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 33 -a 1 - -t 0.32672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 33 -a 1 h -t 0.32672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 33 -a 1 r -t 0.32758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 19 -a 1 + -t 0.32875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 63 -a 1 - -t 0.32875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 63 -a 1 h -t 0.32875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 63 -a 1 r -t 0.32961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 48 -a 1 + -t 0.32961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 48 -a 1 - -t 0.32961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 48 -a 1 h -t 0.32961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 48 -a 1 r -t 0.33047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 34 -a 1 + -t 0.33047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 34 -a 1 - -t 0.33047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 34 -a 1 h -t 0.33047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 34 -a 1 r -t 0.33133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 20 -a 1 + -t 0.3325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 64 -a 1 - -t 0.3325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 64 -a 1 h -t 0.3325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 64 -a 1 r -t 0.33336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 49 -a 1 + -t 0.33336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 49 -a 1 - -t 0.33336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 49 -a 1 h -t 0.33336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 49 -a 1 r -t 0.33422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 35 -a 1 + -t 0.33422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 35 -a 1 - -t 0.33422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 35 -a 1 h -t 0.33422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 35 -a 1 r -t 0.33508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 21 -a 1 + -t 0.33625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 65 -a 1 - -t 0.33625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 65 -a 1 h -t 0.33625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 65 -a 1 r -t 0.33711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 50 -a 1 + -t 0.33711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 50 -a 1 - -t 0.33711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 50 -a 1 h -t 0.33711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 50 -a 1 r -t 0.33797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 36 -a 1 + -t 0.33797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 36 -a 1 - -t 0.33797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 36 -a 1 h -t 0.33797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 36 -a 1 r -t 0.33883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 22 -a 1 + -t 0.34 -s 1 -d 2 -p cbr -e 210 -c 1 -i 66 -a 1 - -t 0.34 -s 1 -d 2 -p cbr -e 210 -c 1 -i 66 -a 1 h -t 0.34 -s 1 -d 2 -p cbr -e 210 -c 1 -i 66 -a 1 r -t 0.34086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 51 -a 1 + -t 0.34086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 51 -a 1 - -t 0.34086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 51 -a 1 h -t 0.34086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 51 -a 1 r -t 0.34172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 37 -a 1 + -t 0.34172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 37 -a 1 - -t 0.34172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 37 -a 1 h -t 0.34172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 37 -a 1 r -t 0.34258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 23 -a 1 + -t 0.34375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 67 -a 1 - -t 0.34375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 67 -a 1 h -t 0.34375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 67 -a 1 r -t 0.34461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 52 -a 1 + -t 0.34461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 52 -a 1 - -t 0.34461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 52 -a 1 h -t 0.34461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 52 -a 1 r -t 0.34547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 38 -a 1 + -t 0.34547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 38 -a 1 - -t 0.34547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 38 -a 1 h -t 0.34547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 38 -a 1 r -t 0.34633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 24 -a 1 + -t 0.3475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 68 -a 1 - -t 0.3475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 68 -a 1 h -t 0.3475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 68 -a 1 r -t 0.34836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 53 -a 1 + -t 0.34836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 53 -a 1 - -t 0.34836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 53 -a 1 h -t 0.34836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 53 -a 1 r -t 0.34922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 39 -a 1 + -t 0.34922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 39 -a 1 - -t 0.34922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 39 -a 1 h -t 0.34922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 39 -a 1 r -t 0.35008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 25 -a 1 r -t 0.35061 -s 4 -d 3 -p ack -e 40 -c 0 -i 55 -a 0 -S 0 -y {0 0} + -t 0.35061 -s 3 -d 2 -p ack -e 40 -c 0 -i 55 -a 0 -S 0 -y {0 0} - -t 0.35061 -s 3 -d 2 -p ack -e 40 -c 0 -i 55 -a 0 -S 0 -y {0 0} h -t 0.35061 -s 3 -d 2 -p ack -e 40 -c 0 -i 55 -a 0 -S 0 -y {-1 -1} + -t 0.35125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 69 -a 1 - -t 0.35125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 69 -a 1 h -t 0.35125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 69 -a 1 r -t 0.35211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 54 -a 1 + -t 0.35211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 54 -a 1 - -t 0.35211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 54 -a 1 h -t 0.35211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 54 -a 1 r -t 0.35297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 40 -a 1 + -t 0.35297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 40 -a 1 - -t 0.35297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 40 -a 1 h -t 0.35297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 40 -a 1 r -t 0.35383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 26 -a 1 + -t 0.355 -s 1 -d 2 -p cbr -e 210 -c 1 -i 70 -a 1 - -t 0.355 -s 1 -d 2 -p cbr -e 210 -c 1 -i 70 -a 1 h -t 0.355 -s 1 -d 2 -p cbr -e 210 -c 1 -i 70 -a 1 r -t 0.35586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 56 -a 1 + -t 0.35586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 56 -a 1 - -t 0.35586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 56 -a 1 h -t 0.35586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 56 -a 1 r -t 0.35672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 41 -a 1 + -t 0.35672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 41 -a 1 - -t 0.35672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 41 -a 1 h -t 0.35672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 41 -a 1 r -t 0.35758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 27 -a 1 + -t 0.35875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 71 -a 1 - -t 0.35875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 71 -a 1 h -t 0.35875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 71 -a 1 r -t 0.35961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 57 -a 1 + -t 0.35961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 57 -a 1 - -t 0.35961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 57 -a 1 h -t 0.35961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 57 -a 1 r -t 0.36047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 42 -a 1 + -t 0.36047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 42 -a 1 - -t 0.36047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 42 -a 1 h -t 0.36047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 42 -a 1 r -t 0.36133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 28 -a 1 + -t 0.3625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 72 -a 1 - -t 0.3625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 72 -a 1 h -t 0.3625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 72 -a 1 r -t 0.36336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 58 -a 1 + -t 0.36336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 58 -a 1 - -t 0.36336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 58 -a 1 h -t 0.36336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 58 -a 1 r -t 0.36422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 43 -a 1 + -t 0.36422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 43 -a 1 - -t 0.36422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 43 -a 1 h -t 0.36422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 43 -a 1 r -t 0.36508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 29 -a 1 + -t 0.36625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 73 -a 1 - -t 0.36625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 73 -a 1 h -t 0.36625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 73 -a 1 r -t 0.36711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 59 -a 1 + -t 0.36711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 59 -a 1 - -t 0.36711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 59 -a 1 h -t 0.36711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 59 -a 1 r -t 0.36797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 44 -a 1 + -t 0.36797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 44 -a 1 - -t 0.36797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 44 -a 1 h -t 0.36797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 44 -a 1 r -t 0.36883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 30 -a 1 + -t 0.37 -s 1 -d 2 -p cbr -e 210 -c 1 -i 74 -a 1 - -t 0.37 -s 1 -d 2 -p cbr -e 210 -c 1 -i 74 -a 1 h -t 0.37 -s 1 -d 2 -p cbr -e 210 -c 1 -i 74 -a 1 r -t 0.37086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 60 -a 1 + -t 0.37086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 60 -a 1 - -t 0.37086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 60 -a 1 h -t 0.37086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 60 -a 1 r -t 0.37172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 45 -a 1 + -t 0.37172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 45 -a 1 - -t 0.37172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 45 -a 1 h -t 0.37172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 45 -a 1 r -t 0.37258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 31 -a 1 + -t 0.37375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 75 -a 1 - -t 0.37375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 75 -a 1 h -t 0.37375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 75 -a 1 r -t 0.37461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 61 -a 1 + -t 0.37461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 61 -a 1 - -t 0.37461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 61 -a 1 h -t 0.37461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 61 -a 1 r -t 0.37547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 46 -a 1 + -t 0.37547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 46 -a 1 - -t 0.37547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 46 -a 1 h -t 0.37547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 46 -a 1 r -t 0.37633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 32 -a 1 + -t 0.3775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 76 -a 1 - -t 0.3775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 76 -a 1 h -t 0.3775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 76 -a 1 r -t 0.37836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 62 -a 1 + -t 0.37836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 62 -a 1 - -t 0.37836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 62 -a 1 h -t 0.37836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 62 -a 1 r -t 0.37922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 47 -a 1 + -t 0.37922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 47 -a 1 - -t 0.37922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 47 -a 1 h -t 0.37922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 47 -a 1 r -t 0.38008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 33 -a 1 + -t 0.38125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 77 -a 1 - -t 0.38125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 77 -a 1 h -t 0.38125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 77 -a 1 r -t 0.38211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 63 -a 1 + -t 0.38211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 63 -a 1 - -t 0.38211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 63 -a 1 h -t 0.38211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 63 -a 1 r -t 0.38297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 48 -a 1 + -t 0.38297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 48 -a 1 - -t 0.38297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 48 -a 1 h -t 0.38297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 48 -a 1 r -t 0.38383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 34 -a 1 + -t 0.385 -s 1 -d 2 -p cbr -e 210 -c 1 -i 78 -a 1 - -t 0.385 -s 1 -d 2 -p cbr -e 210 -c 1 -i 78 -a 1 h -t 0.385 -s 1 -d 2 -p cbr -e 210 -c 1 -i 78 -a 1 r -t 0.38586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 64 -a 1 + -t 0.38586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 64 -a 1 - -t 0.38586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 64 -a 1 h -t 0.38586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 64 -a 1 r -t 0.38672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 49 -a 1 + -t 0.38672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 49 -a 1 - -t 0.38672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 49 -a 1 h -t 0.38672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 49 -a 1 r -t 0.38758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 35 -a 1 + -t 0.38875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 79 -a 1 - -t 0.38875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 79 -a 1 h -t 0.38875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 79 -a 1 r -t 0.38961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 65 -a 1 + -t 0.38961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 65 -a 1 - -t 0.38961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 65 -a 1 h -t 0.38961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 65 -a 1 r -t 0.39047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 50 -a 1 + -t 0.39047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 50 -a 1 - -t 0.39047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 50 -a 1 h -t 0.39047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 50 -a 1 r -t 0.39133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 36 -a 1 + -t 0.3925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 80 -a 1 - -t 0.3925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 80 -a 1 h -t 0.3925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 80 -a 1 r -t 0.39336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 66 -a 1 + -t 0.39336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 66 -a 1 - -t 0.39336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 66 -a 1 h -t 0.39336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 66 -a 1 r -t 0.39422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 51 -a 1 + -t 0.39422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 51 -a 1 - -t 0.39422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 51 -a 1 h -t 0.39422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 51 -a 1 r -t 0.39508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 37 -a 1 + -t 0.39625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 81 -a 1 - -t 0.39625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 81 -a 1 h -t 0.39625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 81 -a 1 r -t 0.39711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 67 -a 1 + -t 0.39711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 67 -a 1 - -t 0.39711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 67 -a 1 h -t 0.39711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 67 -a 1 r -t 0.39797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 52 -a 1 + -t 0.39797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 52 -a 1 - -t 0.39797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 52 -a 1 h -t 0.39797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 52 -a 1 r -t 0.39883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 38 -a 1 + -t 0.4 -s 1 -d 2 -p cbr -e 210 -c 1 -i 82 -a 1 - -t 0.4 -s 1 -d 2 -p cbr -e 210 -c 1 -i 82 -a 1 h -t 0.4 -s 1 -d 2 -p cbr -e 210 -c 1 -i 82 -a 1 r -t 0.40086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 68 -a 1 + -t 0.40086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 68 -a 1 - -t 0.40086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 68 -a 1 h -t 0.40086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 68 -a 1 r -t 0.40125 -s 3 -d 2 -p ack -e 40 -c 0 -i 55 -a 0 -S 0 -y {0 0} + -t 0.40125 -s 2 -d 0 -p ack -e 40 -c 0 -i 55 -a 0 -S 0 -y {0 0} - -t 0.40125 -s 2 -d 0 -p ack -e 40 -c 0 -i 55 -a 0 -S 0 -f 0 -m 1 -y {0 0} h -t 0.40125 -s 2 -d 0 -p ack -e 40 -c 0 -i 55 -a 0 -S 0 -y {-1 -1} r -t 0.40172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 53 -a 1 + -t 0.40172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 53 -a 1 - -t 0.40172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 53 -a 1 h -t 0.40172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 53 -a 1 r -t 0.40258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 39 -a 1 + -t 0.40375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 83 -a 1 - -t 0.40375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 83 -a 1 h -t 0.40375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 83 -a 1 r -t 0.40461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 69 -a 1 + -t 0.40461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 69 -a 1 - -t 0.40461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 69 -a 1 h -t 0.40461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 69 -a 1 r -t 0.40547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 54 -a 1 + -t 0.40547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 54 -a 1 - -t 0.40547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 54 -a 1 h -t 0.40547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 54 -a 1 r -t 0.40633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 40 -a 1 + -t 0.4075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 84 -a 1 - -t 0.4075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 84 -a 1 h -t 0.4075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 84 -a 1 r -t 0.40836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 70 -a 1 + -t 0.40836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 70 -a 1 - -t 0.40836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 70 -a 1 h -t 0.40836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 70 -a 1 r -t 0.40922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 56 -a 1 + -t 0.40922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 56 -a 1 - -t 0.40922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 56 -a 1 h -t 0.40922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 56 -a 1 r -t 0.41008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 41 -a 1 + -t 0.41125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 85 -a 1 - -t 0.41125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 85 -a 1 h -t 0.41125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 85 -a 1 r -t 0.41211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 71 -a 1 + -t 0.41211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 71 -a 1 - -t 0.41211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 71 -a 1 h -t 0.41211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 71 -a 1 r -t 0.41297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 57 -a 1 + -t 0.41297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 57 -a 1 - -t 0.41297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 57 -a 1 h -t 0.41297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 57 -a 1 r -t 0.41383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 42 -a 1 + -t 0.415 -s 1 -d 2 -p cbr -e 210 -c 1 -i 86 -a 1 - -t 0.415 -s 1 -d 2 -p cbr -e 210 -c 1 -i 86 -a 1 h -t 0.415 -s 1 -d 2 -p cbr -e 210 -c 1 -i 86 -a 1 r -t 0.41586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 72 -a 1 + -t 0.41586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 72 -a 1 - -t 0.41586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 72 -a 1 h -t 0.41586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 72 -a 1 r -t 0.41672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 58 -a 1 + -t 0.41672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 58 -a 1 - -t 0.41672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 58 -a 1 h -t 0.41672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 58 -a 1 r -t 0.41758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 43 -a 1 + -t 0.41875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 87 -a 1 - -t 0.41875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 87 -a 1 h -t 0.41875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 87 -a 1 r -t 0.41961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 73 -a 1 + -t 0.41961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 73 -a 1 - -t 0.41961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 73 -a 1 h -t 0.41961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 73 -a 1 r -t 0.42047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 59 -a 1 + -t 0.42047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 59 -a 1 - -t 0.42047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 59 -a 1 h -t 0.42047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 59 -a 1 r -t 0.42133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 44 -a 1 + -t 0.4225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 88 -a 1 - -t 0.4225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 88 -a 1 h -t 0.4225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 88 -a 1 r -t 0.42336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 74 -a 1 + -t 0.42336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 74 -a 1 - -t 0.42336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 74 -a 1 h -t 0.42336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 74 -a 1 r -t 0.42422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 60 -a 1 + -t 0.42422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 60 -a 1 - -t 0.42422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 60 -a 1 h -t 0.42422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 60 -a 1 r -t 0.42508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 45 -a 1 + -t 0.42625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 89 -a 1 - -t 0.42625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 89 -a 1 h -t 0.42625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 89 -a 1 r -t 0.42711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 75 -a 1 + -t 0.42711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 75 -a 1 - -t 0.42711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 75 -a 1 h -t 0.42711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 75 -a 1 r -t 0.42797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 61 -a 1 + -t 0.42797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 61 -a 1 - -t 0.42797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 61 -a 1 h -t 0.42797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 61 -a 1 r -t 0.42883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 46 -a 1 + -t 0.43 -s 1 -d 2 -p cbr -e 210 -c 1 -i 90 -a 1 - -t 0.43 -s 1 -d 2 -p cbr -e 210 -c 1 -i 90 -a 1 h -t 0.43 -s 1 -d 2 -p cbr -e 210 -c 1 -i 90 -a 1 r -t 0.43086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 76 -a 1 + -t 0.43086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 76 -a 1 - -t 0.43086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 76 -a 1 h -t 0.43086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 76 -a 1 r -t 0.43172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 62 -a 1 + -t 0.43172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 62 -a 1 - -t 0.43172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 62 -a 1 h -t 0.43172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 62 -a 1 r -t 0.43258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 47 -a 1 + -t 0.43375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 91 -a 1 - -t 0.43375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 91 -a 1 h -t 0.43375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 91 -a 1 r -t 0.43461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 77 -a 1 + -t 0.43461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 77 -a 1 - -t 0.43461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 77 -a 1 h -t 0.43461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 77 -a 1 r -t 0.43547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 63 -a 1 + -t 0.43547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 63 -a 1 - -t 0.43547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 63 -a 1 h -t 0.43547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 63 -a 1 r -t 0.43633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 48 -a 1 + -t 0.4375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 92 -a 1 - -t 0.4375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 92 -a 1 h -t 0.4375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 92 -a 1 r -t 0.43836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 78 -a 1 + -t 0.43836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 78 -a 1 - -t 0.43836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 78 -a 1 h -t 0.43836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 78 -a 1 r -t 0.43922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 64 -a 1 + -t 0.43922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 64 -a 1 - -t 0.43922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 64 -a 1 h -t 0.43922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 64 -a 1 r -t 0.44008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 49 -a 1 + -t 0.44125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 93 -a 1 - -t 0.44125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 93 -a 1 h -t 0.44125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 93 -a 1 r -t 0.44211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 79 -a 1 + -t 0.44211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 79 -a 1 - -t 0.44211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 79 -a 1 h -t 0.44211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 79 -a 1 r -t 0.44297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 65 -a 1 + -t 0.44297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 65 -a 1 - -t 0.44297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 65 -a 1 h -t 0.44297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 65 -a 1 r -t 0.44383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 50 -a 1 + -t 0.445 -s 1 -d 2 -p cbr -e 210 -c 1 -i 94 -a 1 - -t 0.445 -s 1 -d 2 -p cbr -e 210 -c 1 -i 94 -a 1 h -t 0.445 -s 1 -d 2 -p cbr -e 210 -c 1 -i 94 -a 1 r -t 0.44586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 80 -a 1 + -t 0.44586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 80 -a 1 - -t 0.44586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 80 -a 1 h -t 0.44586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 80 -a 1 r -t 0.44672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 66 -a 1 + -t 0.44672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 66 -a 1 - -t 0.44672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 66 -a 1 h -t 0.44672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 66 -a 1 r -t 0.44758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 51 -a 1 + -t 0.44875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 95 -a 1 - -t 0.44875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 95 -a 1 h -t 0.44875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 95 -a 1 r -t 0.44961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 81 -a 1 + -t 0.44961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 81 -a 1 - -t 0.44961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 81 -a 1 h -t 0.44961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 81 -a 1 v -t 0.45000000000000001 sim_annotation 0.45000000000000001 5 Send Packet_1 r -t 0.45047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 67 -a 1 + -t 0.45047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 67 -a 1 - -t 0.45047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 67 -a 1 h -t 0.45047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 67 -a 1 r -t 0.45133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 52 -a 1 r -t 0.45189 -s 2 -d 0 -p ack -e 40 -c 0 -i 55 -a 0 -S 0 -y {0 0} f -t 0.45189000000000012 -s 0 -d 4 -n cwnd_ -a tcp -v 2.000000 -o 1.000000 -T v f -t 0.45189000000000012 -s 0 -d 4 -n cwnd_ -a tcp -v 1.000000 -o 2.000000 -T v + -t 0.45189 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 96 -a 0 -S 0 -f 0 -m 0 -y {1 1} - -t 0.45189 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 96 -a 0 -S 0 -y {1 1} h -t 0.45189 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 96 -a 0 -S 0 -y {-1 -1} + -t 0.4525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 97 -a 1 - -t 0.4525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 97 -a 1 h -t 0.4525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 97 -a 1 r -t 0.45336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 82 -a 1 + -t 0.45336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 82 -a 1 - -t 0.45336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 82 -a 1 h -t 0.45336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 82 -a 1 r -t 0.45422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 68 -a 1 + -t 0.45422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 68 -a 1 - -t 0.45422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 68 -a 1 h -t 0.45422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 68 -a 1 r -t 0.45508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 53 -a 1 + -t 0.45625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 98 -a 1 - -t 0.45625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 98 -a 1 h -t 0.45625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 98 -a 1 r -t 0.45711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 83 -a 1 + -t 0.45711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 83 -a 1 - -t 0.45711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 83 -a 1 h -t 0.45711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 83 -a 1 r -t 0.45797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 69 -a 1 + -t 0.45797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 69 -a 1 - -t 0.45797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 69 -a 1 h -t 0.45797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 69 -a 1 r -t 0.45883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 54 -a 1 + -t 0.46 -s 1 -d 2 -p cbr -e 210 -c 1 -i 99 -a 1 - -t 0.46 -s 1 -d 2 -p cbr -e 210 -c 1 -i 99 -a 1 h -t 0.46 -s 1 -d 2 -p cbr -e 210 -c 1 -i 99 -a 1 r -t 0.46086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 84 -a 1 + -t 0.46086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 84 -a 1 - -t 0.46086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 84 -a 1 h -t 0.46086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 84 -a 1 r -t 0.46172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 70 -a 1 + -t 0.46172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 70 -a 1 - -t 0.46172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 70 -a 1 h -t 0.46172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 70 -a 1 r -t 0.46258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 56 -a 1 + -t 0.46375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 100 -a 1 - -t 0.46375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 100 -a 1 h -t 0.46375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 100 -a 1 r -t 0.46461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 85 -a 1 + -t 0.46461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 85 -a 1 - -t 0.46461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 85 -a 1 h -t 0.46461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 85 -a 1 r -t 0.46547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 71 -a 1 + -t 0.46547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 71 -a 1 - -t 0.46547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 71 -a 1 h -t 0.46547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 71 -a 1 r -t 0.46633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 57 -a 1 + -t 0.4675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 101 -a 1 - -t 0.4675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 101 -a 1 h -t 0.4675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 101 -a 1 r -t 0.46836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 86 -a 1 + -t 0.46836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 86 -a 1 - -t 0.46836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 86 -a 1 h -t 0.46836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 86 -a 1 r -t 0.46922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 72 -a 1 + -t 0.46922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 72 -a 1 - -t 0.46922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 72 -a 1 h -t 0.46922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 72 -a 1 r -t 0.47008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 58 -a 1 + -t 0.47125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 102 -a 1 - -t 0.47125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 102 -a 1 h -t 0.47125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 102 -a 1 r -t 0.47211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 87 -a 1 + -t 0.47211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 87 -a 1 - -t 0.47211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 87 -a 1 h -t 0.47211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 87 -a 1 r -t 0.47297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 73 -a 1 + -t 0.47297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 73 -a 1 - -t 0.47297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 73 -a 1 h -t 0.47297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 73 -a 1 r -t 0.47383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 59 -a 1 + -t 0.475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 103 -a 1 - -t 0.475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 103 -a 1 h -t 0.475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 103 -a 1 r -t 0.47586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 88 -a 1 + -t 0.47586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 88 -a 1 - -t 0.47586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 88 -a 1 h -t 0.47586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 88 -a 1 r -t 0.47672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 74 -a 1 + -t 0.47672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 74 -a 1 - -t 0.47672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 74 -a 1 h -t 0.47672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 74 -a 1 r -t 0.47758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 60 -a 1 + -t 0.47875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 104 -a 1 - -t 0.47875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 104 -a 1 h -t 0.47875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 104 -a 1 r -t 0.47961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 89 -a 1 + -t 0.47961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 89 -a 1 - -t 0.47961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 89 -a 1 h -t 0.47961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 89 -a 1 r -t 0.48047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 75 -a 1 + -t 0.48047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 75 -a 1 - -t 0.48047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 75 -a 1 h -t 0.48047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 75 -a 1 r -t 0.48133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 61 -a 1 + -t 0.4825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 105 -a 1 - -t 0.4825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 105 -a 1 h -t 0.4825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 105 -a 1 r -t 0.48336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 90 -a 1 + -t 0.48336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 90 -a 1 - -t 0.48336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 90 -a 1 h -t 0.48336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 90 -a 1 r -t 0.48422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 76 -a 1 + -t 0.48422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 76 -a 1 - -t 0.48422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 76 -a 1 h -t 0.48422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 76 -a 1 r -t 0.48508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 62 -a 1 + -t 0.48625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 106 -a 1 - -t 0.48625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 106 -a 1 h -t 0.48625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 106 -a 1 r -t 0.48711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 91 -a 1 + -t 0.48711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 91 -a 1 - -t 0.48711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 91 -a 1 h -t 0.48711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 91 -a 1 r -t 0.48797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 77 -a 1 + -t 0.48797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 77 -a 1 - -t 0.48797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 77 -a 1 h -t 0.48797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 77 -a 1 r -t 0.48883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 63 -a 1 + -t 0.49 -s 1 -d 2 -p cbr -e 210 -c 1 -i 107 -a 1 - -t 0.49 -s 1 -d 2 -p cbr -e 210 -c 1 -i 107 -a 1 h -t 0.49 -s 1 -d 2 -p cbr -e 210 -c 1 -i 107 -a 1 r -t 0.49086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 92 -a 1 + -t 0.49086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 92 -a 1 - -t 0.49086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 92 -a 1 h -t 0.49086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 92 -a 1 r -t 0.49172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 78 -a 1 + -t 0.49172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 78 -a 1 - -t 0.49172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 78 -a 1 h -t 0.49172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 78 -a 1 r -t 0.49258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 64 -a 1 + -t 0.49375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 108 -a 1 - -t 0.49375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 108 -a 1 h -t 0.49375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 108 -a 1 r -t 0.49461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 93 -a 1 + -t 0.49461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 93 -a 1 - -t 0.49461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 93 -a 1 h -t 0.49461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 93 -a 1 r -t 0.49547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 79 -a 1 + -t 0.49547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 79 -a 1 - -t 0.49547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 79 -a 1 h -t 0.49547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 79 -a 1 r -t 0.49633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 65 -a 1 + -t 0.4975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 109 -a 1 - -t 0.4975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 109 -a 1 h -t 0.4975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 109 -a 1 r -t 0.49836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 94 -a 1 + -t 0.49836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 94 -a 1 - -t 0.49836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 94 -a 1 h -t 0.49836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 94 -a 1 r -t 0.49922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 80 -a 1 + -t 0.49922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 80 -a 1 - -t 0.49922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 80 -a 1 h -t 0.49922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 80 -a 1 v -t 0.5 sim_annotation 0.5 6 Packet_1 is lost r -t 0.50008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 66 -a 1 + -t 0.50125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 110 -a 1 - -t 0.50125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 110 -a 1 h -t 0.50125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 110 -a 1 r -t 0.50211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 95 -a 1 + -t 0.50211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 95 -a 1 - -t 0.50211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 95 -a 1 h -t 0.50211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 95 -a 1 r -t 0.50297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 81 -a 1 + -t 0.50297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 81 -a 1 - -t 0.50297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 81 -a 1 h -t 0.50297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 81 -a 1 r -t 0.50383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 67 -a 1 + -t 0.505 -s 1 -d 2 -p cbr -e 210 -c 1 -i 111 -a 1 - -t 0.505 -s 1 -d 2 -p cbr -e 210 -c 1 -i 111 -a 1 h -t 0.505 -s 1 -d 2 -p cbr -e 210 -c 1 -i 111 -a 1 r -t 0.50586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 97 -a 1 + -t 0.50586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 97 -a 1 - -t 0.50586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 97 -a 1 h -t 0.50586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 97 -a 1 r -t 0.50672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 82 -a 1 + -t 0.50672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 82 -a 1 - -t 0.50672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 82 -a 1 h -t 0.50672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 82 -a 1 r -t 0.50758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 68 -a 1 + -t 0.50875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 112 -a 1 - -t 0.50875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 112 -a 1 h -t 0.50875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 112 -a 1 r -t 0.50961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 98 -a 1 + -t 0.50961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 98 -a 1 - -t 0.50961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 98 -a 1 h -t 0.50961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 98 -a 1 r -t 0.51047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 83 -a 1 + -t 0.51047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 83 -a 1 - -t 0.51047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 83 -a 1 h -t 0.51047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 83 -a 1 r -t 0.51133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 69 -a 1 + -t 0.5125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 113 -a 1 - -t 0.5125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 113 -a 1 h -t 0.5125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 113 -a 1 r -t 0.51336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 99 -a 1 + -t 0.51336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 99 -a 1 - -t 0.51336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 99 -a 1 h -t 0.51336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 99 -a 1 r -t 0.51422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 84 -a 1 + -t 0.51422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 84 -a 1 - -t 0.51422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 84 -a 1 h -t 0.51422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 84 -a 1 r -t 0.51508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 70 -a 1 + -t 0.51625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 114 -a 1 - -t 0.51625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 114 -a 1 h -t 0.51625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 114 -a 1 r -t 0.51711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 100 -a 1 + -t 0.51711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 100 -a 1 - -t 0.51711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 100 -a 1 h -t 0.51711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 100 -a 1 r -t 0.51789 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 96 -a 0 -S 0 -y {1 1} + -t 0.51789 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 96 -a 0 -S 0 -y {1 1} r -t 0.51797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 85 -a 1 + -t 0.51797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 85 -a 1 - -t 0.51797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 85 -a 1 h -t 0.51797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 85 -a 1 r -t 0.51883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 71 -a 1 + -t 0.52 -s 1 -d 2 -p cbr -e 210 -c 1 -i 115 -a 1 - -t 0.52 -s 1 -d 2 -p cbr -e 210 -c 1 -i 115 -a 1 h -t 0.52 -s 1 -d 2 -p cbr -e 210 -c 1 -i 115 -a 1 - -t 0.52047 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 96 -a 0 -S 0 -y {1 1} h -t 0.52047 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 96 -a 0 -S 0 -y {-1 -1} r -t 0.52086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 101 -a 1 + -t 0.52086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 101 -a 1 r -t 0.52172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 86 -a 1 + -t 0.52172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 86 -a 1 - -t 0.52172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 86 -a 1 h -t 0.52172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 86 -a 1 r -t 0.52258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 72 -a 1 + -t 0.52375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 116 -a 1 - -t 0.52375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 116 -a 1 h -t 0.52375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 116 -a 1 r -t 0.52461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 102 -a 1 + -t 0.52461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 102 -a 1 d -t 0.52461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 102 -a 1 r -t 0.52547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 87 -a 1 + -t 0.52547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 87 -a 1 - -t 0.52547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 87 -a 1 h -t 0.52547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 87 -a 1 r -t 0.52633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 73 -a 1 + -t 0.5275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 117 -a 1 - -t 0.5275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 117 -a 1 h -t 0.5275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 117 -a 1 r -t 0.52836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 103 -a 1 + -t 0.52836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 103 -a 1 d -t 0.52836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 103 -a 1 r -t 0.52922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 88 -a 1 + -t 0.52922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 88 -a 1 - -t 0.52922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 88 -a 1 h -t 0.52922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 88 -a 1 r -t 0.53008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 74 -a 1 + -t 0.53125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 118 -a 1 - -t 0.53125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 118 -a 1 h -t 0.53125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 118 -a 1 r -t 0.53211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 104 -a 1 + -t 0.53211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 104 -a 1 d -t 0.53211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 104 -a 1 r -t 0.53297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 89 -a 1 + -t 0.53297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 89 -a 1 - -t 0.53297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 89 -a 1 h -t 0.53297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 89 -a 1 r -t 0.53383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 75 -a 1 + -t 0.535 -s 1 -d 2 -p cbr -e 210 -c 1 -i 119 -a 1 - -t 0.535 -s 1 -d 2 -p cbr -e 210 -c 1 -i 119 -a 1 h -t 0.535 -s 1 -d 2 -p cbr -e 210 -c 1 -i 119 -a 1 r -t 0.53586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 105 -a 1 + -t 0.53586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 105 -a 1 d -t 0.53586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 105 -a 1 - -t 0.53647 -s 2 -d 3 -p cbr -e 210 -c 1 -i 101 -a 1 h -t 0.53647 -s 2 -d 3 -p cbr -e 210 -c 1 -i 101 -a 1 r -t 0.53672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 90 -a 1 + -t 0.53672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 90 -a 1 - -t 0.53672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 90 -a 1 h -t 0.53672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 90 -a 1 r -t 0.53758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 76 -a 1 + -t 0.53875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 120 -a 1 - -t 0.53875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 120 -a 1 h -t 0.53875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 120 -a 1 r -t 0.53961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 106 -a 1 + -t 0.53961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 106 -a 1 - -t 0.53983 -s 2 -d 3 -p cbr -e 210 -c 1 -i 106 -a 1 h -t 0.53983 -s 2 -d 3 -p cbr -e 210 -c 1 -i 106 -a 1 r -t 0.54047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 91 -a 1 + -t 0.54047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 91 -a 1 - -t 0.54047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 91 -a 1 h -t 0.54047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 91 -a 1 r -t 0.54133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 77 -a 1 + -t 0.5425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 121 -a 1 - -t 0.5425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 121 -a 1 h -t 0.5425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 121 -a 1 r -t 0.54336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 107 -a 1 + -t 0.54336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 107 -a 1 - -t 0.54336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 107 -a 1 h -t 0.54336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 107 -a 1 r -t 0.54422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 92 -a 1 + -t 0.54422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 92 -a 1 - -t 0.54422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 92 -a 1 h -t 0.54422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 92 -a 1 r -t 0.54508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 78 -a 1 + -t 0.54625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 122 -a 1 - -t 0.54625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 122 -a 1 h -t 0.54625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 122 -a 1 r -t 0.54711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 108 -a 1 + -t 0.54711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 108 -a 1 - -t 0.54711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 108 -a 1 h -t 0.54711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 108 -a 1 r -t 0.54797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 93 -a 1 + -t 0.54797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 93 -a 1 - -t 0.54797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 93 -a 1 h -t 0.54797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 93 -a 1 r -t 0.54883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 79 -a 1 + -t 0.55 -s 1 -d 2 -p cbr -e 210 -c 1 -i 123 -a 1 - -t 0.55 -s 1 -d 2 -p cbr -e 210 -c 1 -i 123 -a 1 h -t 0.55 -s 1 -d 2 -p cbr -e 210 -c 1 -i 123 -a 1 v -t 0.55000000000000004 sim_annotation 0.55000000000000004 7 Waiting for Ack_1 r -t 0.55086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 109 -a 1 + -t 0.55086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 109 -a 1 - -t 0.55086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 109 -a 1 h -t 0.55086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 109 -a 1 r -t 0.55172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 94 -a 1 + -t 0.55172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 94 -a 1 - -t 0.55172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 94 -a 1 h -t 0.55172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 94 -a 1 r -t 0.55258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 80 -a 1 + -t 0.55375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 124 -a 1 - -t 0.55375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 124 -a 1 h -t 0.55375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 124 -a 1 r -t 0.55461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 110 -a 1 + -t 0.55461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 110 -a 1 - -t 0.55461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 110 -a 1 h -t 0.55461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 110 -a 1 r -t 0.55547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 95 -a 1 + -t 0.55547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 95 -a 1 - -t 0.55547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 95 -a 1 h -t 0.55547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 95 -a 1 r -t 0.55633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 81 -a 1 + -t 0.5575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 125 -a 1 - -t 0.5575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 125 -a 1 h -t 0.5575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 125 -a 1 r -t 0.55836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 111 -a 1 + -t 0.55836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 111 -a 1 - -t 0.55836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 111 -a 1 h -t 0.55836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 111 -a 1 r -t 0.55922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 97 -a 1 + -t 0.55922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 97 -a 1 - -t 0.55922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 97 -a 1 h -t 0.55922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 97 -a 1 r -t 0.56008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 82 -a 1 + -t 0.56125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 126 -a 1 - -t 0.56125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 126 -a 1 h -t 0.56125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 126 -a 1 r -t 0.56211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 112 -a 1 + -t 0.56211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 112 -a 1 - -t 0.56211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 112 -a 1 h -t 0.56211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 112 -a 1 r -t 0.56297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 98 -a 1 + -t 0.56297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 98 -a 1 - -t 0.56297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 98 -a 1 h -t 0.56297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 98 -a 1 r -t 0.56383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 83 -a 1 + -t 0.565 -s 1 -d 2 -p cbr -e 210 -c 1 -i 127 -a 1 - -t 0.565 -s 1 -d 2 -p cbr -e 210 -c 1 -i 127 -a 1 h -t 0.565 -s 1 -d 2 -p cbr -e 210 -c 1 -i 127 -a 1 r -t 0.56586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 113 -a 1 + -t 0.56586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 113 -a 1 - -t 0.56586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 113 -a 1 h -t 0.56586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 113 -a 1 r -t 0.56672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 99 -a 1 + -t 0.56672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 99 -a 1 - -t 0.56672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 99 -a 1 h -t 0.56672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 99 -a 1 r -t 0.56758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 84 -a 1 + -t 0.56875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 128 -a 1 - -t 0.56875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 128 -a 1 h -t 0.56875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 128 -a 1 r -t 0.56961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 114 -a 1 + -t 0.56961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 114 -a 1 - -t 0.56961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 114 -a 1 h -t 0.56961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 114 -a 1 r -t 0.57047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 100 -a 1 + -t 0.57047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 100 -a 1 - -t 0.57047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 100 -a 1 h -t 0.57047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 100 -a 1 r -t 0.57133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 85 -a 1 + -t 0.5725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 129 -a 1 - -t 0.5725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 129 -a 1 h -t 0.5725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 129 -a 1 r -t 0.57336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 115 -a 1 + -t 0.57336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 115 -a 1 - -t 0.57336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 115 -a 1 h -t 0.57336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 115 -a 1 r -t 0.57508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 86 -a 1 + -t 0.57625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 130 -a 1 - -t 0.57625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 130 -a 1 h -t 0.57625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 130 -a 1 r -t 0.57711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 116 -a 1 + -t 0.57711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 116 -a 1 - -t 0.57711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 116 -a 1 h -t 0.57711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 116 -a 1 r -t 0.57883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 87 -a 1 + -t 0.58 -s 1 -d 2 -p cbr -e 210 -c 1 -i 131 -a 1 - -t 0.58 -s 1 -d 2 -p cbr -e 210 -c 1 -i 131 -a 1 h -t 0.58 -s 1 -d 2 -p cbr -e 210 -c 1 -i 131 -a 1 r -t 0.58086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 117 -a 1 + -t 0.58086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 117 -a 1 - -t 0.58086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 117 -a 1 h -t 0.58086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 117 -a 1 r -t 0.58258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 88 -a 1 + -t 0.58375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 132 -a 1 - -t 0.58375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 132 -a 1 h -t 0.58375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 132 -a 1 r -t 0.58461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 118 -a 1 + -t 0.58461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 118 -a 1 - -t 0.58461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 118 -a 1 h -t 0.58461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 118 -a 1 r -t 0.58633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 89 -a 1 r -t 0.58647 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 96 -a 0 -S 0 -y {1 1} + -t 0.58647 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 96 -a 0 -S 0 -y {1 1} - -t 0.58647 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 96 -a 0 -S 0 -y {1 1} h -t 0.58647 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 96 -a 0 -S 0 -y {-1 -1} + -t 0.5875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 133 -a 1 - -t 0.5875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 133 -a 1 h -t 0.5875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 133 -a 1 r -t 0.58836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 119 -a 1 + -t 0.58836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 119 -a 1 - -t 0.58836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 119 -a 1 h -t 0.58836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 119 -a 1 r -t 0.58983 -s 2 -d 3 -p cbr -e 210 -c 1 -i 101 -a 1 + -t 0.58983 -s 3 -d 5 -p cbr -e 210 -c 1 -i 101 -a 1 - -t 0.58983 -s 3 -d 5 -p cbr -e 210 -c 1 -i 101 -a 1 h -t 0.58983 -s 3 -d 5 -p cbr -e 210 -c 1 -i 101 -a 1 r -t 0.59008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 90 -a 1 + -t 0.59125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 134 -a 1 - -t 0.59125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 134 -a 1 h -t 0.59125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 134 -a 1 r -t 0.59211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 120 -a 1 + -t 0.59211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 120 -a 1 - -t 0.59211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 120 -a 1 h -t 0.59211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 120 -a 1 r -t 0.59319 -s 2 -d 3 -p cbr -e 210 -c 1 -i 106 -a 1 + -t 0.59319 -s 3 -d 5 -p cbr -e 210 -c 1 -i 106 -a 1 - -t 0.59319 -s 3 -d 5 -p cbr -e 210 -c 1 -i 106 -a 1 h -t 0.59319 -s 3 -d 5 -p cbr -e 210 -c 1 -i 106 -a 1 r -t 0.59383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 91 -a 1 + -t 0.595 -s 1 -d 2 -p cbr -e 210 -c 1 -i 135 -a 1 - -t 0.595 -s 1 -d 2 -p cbr -e 210 -c 1 -i 135 -a 1 h -t 0.595 -s 1 -d 2 -p cbr -e 210 -c 1 -i 135 -a 1 r -t 0.59586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 121 -a 1 + -t 0.59586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 121 -a 1 - -t 0.59586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 121 -a 1 h -t 0.59586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 121 -a 1 r -t 0.59672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 107 -a 1 + -t 0.59672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 107 -a 1 - -t 0.59672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 107 -a 1 h -t 0.59672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 107 -a 1 r -t 0.59758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 92 -a 1 + -t 0.59875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 136 -a 1 - -t 0.59875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 136 -a 1 h -t 0.59875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 136 -a 1 r -t 0.59961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 122 -a 1 + -t 0.59961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 122 -a 1 - -t 0.59961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 122 -a 1 h -t 0.59961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 122 -a 1 r -t 0.60047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 108 -a 1 + -t 0.60047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 108 -a 1 - -t 0.60047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 108 -a 1 h -t 0.60047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 108 -a 1 r -t 0.60133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 93 -a 1 + -t 0.6025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 137 -a 1 - -t 0.6025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 137 -a 1 h -t 0.6025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 137 -a 1 r -t 0.60336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 123 -a 1 + -t 0.60336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 123 -a 1 - -t 0.60336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 123 -a 1 h -t 0.60336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 123 -a 1 r -t 0.60422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 109 -a 1 + -t 0.60422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 109 -a 1 - -t 0.60422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 109 -a 1 h -t 0.60422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 109 -a 1 r -t 0.60508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 94 -a 1 + -t 0.60625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 138 -a 1 - -t 0.60625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 138 -a 1 h -t 0.60625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 138 -a 1 r -t 0.60711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 124 -a 1 + -t 0.60711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 124 -a 1 - -t 0.60711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 124 -a 1 h -t 0.60711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 124 -a 1 r -t 0.60797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 110 -a 1 + -t 0.60797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 110 -a 1 - -t 0.60797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 110 -a 1 h -t 0.60797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 110 -a 1 r -t 0.60883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 95 -a 1 + -t 0.61 -s 1 -d 2 -p cbr -e 210 -c 1 -i 139 -a 1 - -t 0.61 -s 1 -d 2 -p cbr -e 210 -c 1 -i 139 -a 1 h -t 0.61 -s 1 -d 2 -p cbr -e 210 -c 1 -i 139 -a 1 r -t 0.61086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 125 -a 1 + -t 0.61086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 125 -a 1 - -t 0.61086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 125 -a 1 h -t 0.61086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 125 -a 1 r -t 0.61172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 111 -a 1 + -t 0.61172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 111 -a 1 - -t 0.61172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 111 -a 1 h -t 0.61172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 111 -a 1 r -t 0.61258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 97 -a 1 + -t 0.61375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 140 -a 1 - -t 0.61375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 140 -a 1 h -t 0.61375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 140 -a 1 r -t 0.61461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 126 -a 1 + -t 0.61461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 126 -a 1 - -t 0.61461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 126 -a 1 h -t 0.61461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 126 -a 1 r -t 0.61547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 112 -a 1 + -t 0.61547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 112 -a 1 - -t 0.61547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 112 -a 1 h -t 0.61547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 112 -a 1 r -t 0.61633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 98 -a 1 + -t 0.6175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 141 -a 1 - -t 0.6175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 141 -a 1 h -t 0.6175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 141 -a 1 r -t 0.61836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 127 -a 1 + -t 0.61836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 127 -a 1 - -t 0.61836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 127 -a 1 h -t 0.61836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 127 -a 1 r -t 0.61922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 113 -a 1 + -t 0.61922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 113 -a 1 - -t 0.61922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 113 -a 1 h -t 0.61922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 113 -a 1 r -t 0.62008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 99 -a 1 + -t 0.62125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 142 -a 1 - -t 0.62125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 142 -a 1 h -t 0.62125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 142 -a 1 r -t 0.62211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 128 -a 1 + -t 0.62211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 128 -a 1 - -t 0.62211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 128 -a 1 h -t 0.62211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 128 -a 1 r -t 0.62297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 114 -a 1 + -t 0.62297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 114 -a 1 - -t 0.62297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 114 -a 1 h -t 0.62297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 114 -a 1 r -t 0.62383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 100 -a 1 + -t 0.625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 143 -a 1 - -t 0.625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 143 -a 1 h -t 0.625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 143 -a 1 r -t 0.62586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 129 -a 1 + -t 0.62586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 129 -a 1 - -t 0.62586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 129 -a 1 h -t 0.62586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 129 -a 1 r -t 0.62672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 115 -a 1 + -t 0.62672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 115 -a 1 - -t 0.62672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 115 -a 1 h -t 0.62672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 115 -a 1 + -t 0.62875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 144 -a 1 - -t 0.62875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 144 -a 1 h -t 0.62875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 144 -a 1 r -t 0.62961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 130 -a 1 + -t 0.62961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 130 -a 1 - -t 0.62961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 130 -a 1 h -t 0.62961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 130 -a 1 r -t 0.63047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 116 -a 1 + -t 0.63047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 116 -a 1 - -t 0.63047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 116 -a 1 h -t 0.63047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 116 -a 1 + -t 0.6325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 145 -a 1 - -t 0.6325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 145 -a 1 h -t 0.6325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 145 -a 1 r -t 0.63336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 131 -a 1 + -t 0.63336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 131 -a 1 - -t 0.63336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 131 -a 1 h -t 0.63336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 131 -a 1 r -t 0.63422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 117 -a 1 + -t 0.63422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 117 -a 1 - -t 0.63422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 117 -a 1 h -t 0.63422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 117 -a 1 + -t 0.63625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 146 -a 1 - -t 0.63625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 146 -a 1 h -t 0.63625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 146 -a 1 r -t 0.63711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 132 -a 1 + -t 0.63711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 132 -a 1 - -t 0.63711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 132 -a 1 h -t 0.63711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 132 -a 1 r -t 0.63797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 118 -a 1 + -t 0.63797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 118 -a 1 - -t 0.63797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 118 -a 1 h -t 0.63797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 118 -a 1 + -t 0.64 -s 1 -d 2 -p cbr -e 210 -c 1 -i 147 -a 1 - -t 0.64 -s 1 -d 2 -p cbr -e 210 -c 1 -i 147 -a 1 h -t 0.64 -s 1 -d 2 -p cbr -e 210 -c 1 -i 147 -a 1 r -t 0.64086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 133 -a 1 + -t 0.64086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 133 -a 1 - -t 0.64086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 133 -a 1 h -t 0.64086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 133 -a 1 r -t 0.64172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 119 -a 1 + -t 0.64172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 119 -a 1 - -t 0.64172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 119 -a 1 h -t 0.64172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 119 -a 1 r -t 0.64319 -s 3 -d 5 -p cbr -e 210 -c 1 -i 101 -a 1 + -t 0.64375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 148 -a 1 - -t 0.64375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 148 -a 1 h -t 0.64375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 148 -a 1 r -t 0.64461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 134 -a 1 + -t 0.64461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 134 -a 1 - -t 0.64461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 134 -a 1 h -t 0.64461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 134 -a 1 r -t 0.64547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 120 -a 1 + -t 0.64547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 120 -a 1 - -t 0.64547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 120 -a 1 h -t 0.64547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 120 -a 1 r -t 0.64655 -s 3 -d 5 -p cbr -e 210 -c 1 -i 106 -a 1 + -t 0.6475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 149 -a 1 - -t 0.6475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 149 -a 1 h -t 0.6475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 149 -a 1 r -t 0.64836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 135 -a 1 + -t 0.64836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 135 -a 1 - -t 0.64836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 135 -a 1 h -t 0.64836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 135 -a 1 r -t 0.64922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 121 -a 1 + -t 0.64922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 121 -a 1 - -t 0.64922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 121 -a 1 h -t 0.64922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 121 -a 1 r -t 0.65008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 107 -a 1 + -t 0.65125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 150 -a 1 - -t 0.65125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 150 -a 1 h -t 0.65125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 150 -a 1 r -t 0.65211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 136 -a 1 + -t 0.65211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 136 -a 1 - -t 0.65211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 136 -a 1 h -t 0.65211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 136 -a 1 r -t 0.65247 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 96 -a 0 -S 0 -y {1 1} + -t 0.65247 -s 4 -d 3 -p ack -e 40 -c 0 -i 151 -a 0 -S 0 -y {1 1} - -t 0.65247 -s 4 -d 3 -p ack -e 40 -c 0 -i 151 -a 0 -S 0 -y {1 1} h -t 0.65247 -s 4 -d 3 -p ack -e 40 -c 0 -i 151 -a 0 -S 0 -y {-1 -1} r -t 0.65297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 122 -a 1 + -t 0.65297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 122 -a 1 - -t 0.65297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 122 -a 1 h -t 0.65297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 122 -a 1 r -t 0.65383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 108 -a 1 + -t 0.655 -s 1 -d 2 -p cbr -e 210 -c 1 -i 152 -a 1 - -t 0.655 -s 1 -d 2 -p cbr -e 210 -c 1 -i 152 -a 1 h -t 0.655 -s 1 -d 2 -p cbr -e 210 -c 1 -i 152 -a 1 r -t 0.65586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 137 -a 1 + -t 0.65586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 137 -a 1 - -t 0.65586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 137 -a 1 h -t 0.65586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 137 -a 1 r -t 0.65672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 123 -a 1 + -t 0.65672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 123 -a 1 - -t 0.65672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 123 -a 1 h -t 0.65672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 123 -a 1 r -t 0.65758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 109 -a 1 + -t 0.65875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 153 -a 1 - -t 0.65875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 153 -a 1 h -t 0.65875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 153 -a 1 r -t 0.65961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 138 -a 1 + -t 0.65961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 138 -a 1 - -t 0.65961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 138 -a 1 h -t 0.65961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 138 -a 1 r -t 0.66047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 124 -a 1 + -t 0.66047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 124 -a 1 - -t 0.66047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 124 -a 1 h -t 0.66047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 124 -a 1 r -t 0.66133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 110 -a 1 + -t 0.6625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 154 -a 1 - -t 0.6625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 154 -a 1 h -t 0.6625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 154 -a 1 r -t 0.66336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 139 -a 1 + -t 0.66336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 139 -a 1 - -t 0.66336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 139 -a 1 h -t 0.66336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 139 -a 1 r -t 0.66422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 125 -a 1 + -t 0.66422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 125 -a 1 - -t 0.66422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 125 -a 1 h -t 0.66422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 125 -a 1 r -t 0.66508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 111 -a 1 + -t 0.66625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 155 -a 1 - -t 0.66625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 155 -a 1 h -t 0.66625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 155 -a 1 r -t 0.66711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 140 -a 1 + -t 0.66711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 140 -a 1 - -t 0.66711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 140 -a 1 h -t 0.66711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 140 -a 1 r -t 0.66797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 126 -a 1 + -t 0.66797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 126 -a 1 - -t 0.66797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 126 -a 1 h -t 0.66797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 126 -a 1 r -t 0.66883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 112 -a 1 + -t 0.67 -s 1 -d 2 -p cbr -e 210 -c 1 -i 156 -a 1 - -t 0.67 -s 1 -d 2 -p cbr -e 210 -c 1 -i 156 -a 1 h -t 0.67 -s 1 -d 2 -p cbr -e 210 -c 1 -i 156 -a 1 r -t 0.67086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 141 -a 1 + -t 0.67086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 141 -a 1 - -t 0.67086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 141 -a 1 h -t 0.67086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 141 -a 1 r -t 0.67172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 127 -a 1 + -t 0.67172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 127 -a 1 - -t 0.67172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 127 -a 1 h -t 0.67172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 127 -a 1 r -t 0.67258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 113 -a 1 + -t 0.67375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 157 -a 1 - -t 0.67375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 157 -a 1 h -t 0.67375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 157 -a 1 r -t 0.67461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 142 -a 1 + -t 0.67461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 142 -a 1 - -t 0.67461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 142 -a 1 h -t 0.67461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 142 -a 1 r -t 0.67547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 128 -a 1 + -t 0.67547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 128 -a 1 - -t 0.67547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 128 -a 1 h -t 0.67547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 128 -a 1 r -t 0.67633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 114 -a 1 + -t 0.6775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 158 -a 1 - -t 0.6775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 158 -a 1 h -t 0.6775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 158 -a 1 r -t 0.67836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 143 -a 1 + -t 0.67836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 143 -a 1 - -t 0.67836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 143 -a 1 h -t 0.67836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 143 -a 1 r -t 0.67922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 129 -a 1 + -t 0.67922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 129 -a 1 - -t 0.67922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 129 -a 1 h -t 0.67922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 129 -a 1 r -t 0.68008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 115 -a 1 + -t 0.68125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 159 -a 1 - -t 0.68125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 159 -a 1 h -t 0.68125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 159 -a 1 r -t 0.68211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 144 -a 1 + -t 0.68211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 144 -a 1 - -t 0.68211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 144 -a 1 h -t 0.68211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 144 -a 1 r -t 0.68297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 130 -a 1 + -t 0.68297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 130 -a 1 - -t 0.68297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 130 -a 1 h -t 0.68297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 130 -a 1 r -t 0.68383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 116 -a 1 + -t 0.685 -s 1 -d 2 -p cbr -e 210 -c 1 -i 160 -a 1 - -t 0.685 -s 1 -d 2 -p cbr -e 210 -c 1 -i 160 -a 1 h -t 0.685 -s 1 -d 2 -p cbr -e 210 -c 1 -i 160 -a 1 r -t 0.68586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 145 -a 1 + -t 0.68586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 145 -a 1 - -t 0.68586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 145 -a 1 h -t 0.68586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 145 -a 1 r -t 0.68672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 131 -a 1 + -t 0.68672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 131 -a 1 - -t 0.68672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 131 -a 1 h -t 0.68672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 131 -a 1 r -t 0.68758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 117 -a 1 + -t 0.68875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 161 -a 1 - -t 0.68875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 161 -a 1 h -t 0.68875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 161 -a 1 r -t 0.68961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 146 -a 1 + -t 0.68961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 146 -a 1 - -t 0.68961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 146 -a 1 h -t 0.68961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 146 -a 1 r -t 0.69047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 132 -a 1 + -t 0.69047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 132 -a 1 - -t 0.69047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 132 -a 1 h -t 0.69047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 132 -a 1 r -t 0.69133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 118 -a 1 + -t 0.6925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 162 -a 1 - -t 0.6925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 162 -a 1 h -t 0.6925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 162 -a 1 r -t 0.69336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 147 -a 1 + -t 0.69336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 147 -a 1 - -t 0.69336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 147 -a 1 h -t 0.69336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 147 -a 1 r -t 0.69422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 133 -a 1 + -t 0.69422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 133 -a 1 - -t 0.69422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 133 -a 1 h -t 0.69422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 133 -a 1 r -t 0.69508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 119 -a 1 + -t 0.69625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 163 -a 1 - -t 0.69625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 163 -a 1 h -t 0.69625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 163 -a 1 r -t 0.69711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 148 -a 1 + -t 0.69711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 148 -a 1 - -t 0.69711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 148 -a 1 h -t 0.69711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 148 -a 1 r -t 0.69797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 134 -a 1 + -t 0.69797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 134 -a 1 - -t 0.69797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 134 -a 1 h -t 0.69797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 134 -a 1 r -t 0.69883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 120 -a 1 + -t 0.7 -s 1 -d 2 -p cbr -e 210 -c 1 -i 164 -a 1 - -t 0.7 -s 1 -d 2 -p cbr -e 210 -c 1 -i 164 -a 1 h -t 0.7 -s 1 -d 2 -p cbr -e 210 -c 1 -i 164 -a 1 r -t 0.70086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 149 -a 1 + -t 0.70086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 149 -a 1 - -t 0.70086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 149 -a 1 h -t 0.70086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 149 -a 1 r -t 0.70172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 135 -a 1 + -t 0.70172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 135 -a 1 - -t 0.70172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 135 -a 1 h -t 0.70172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 135 -a 1 r -t 0.70258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 121 -a 1 r -t 0.70311 -s 4 -d 3 -p ack -e 40 -c 0 -i 151 -a 0 -S 0 -y {1 1} + -t 0.70311 -s 3 -d 2 -p ack -e 40 -c 0 -i 151 -a 0 -S 0 -y {1 1} - -t 0.70311 -s 3 -d 2 -p ack -e 40 -c 0 -i 151 -a 0 -S 0 -y {1 1} h -t 0.70311 -s 3 -d 2 -p ack -e 40 -c 0 -i 151 -a 0 -S 0 -y {-1 -1} + -t 0.70375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 165 -a 1 - -t 0.70375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 165 -a 1 h -t 0.70375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 165 -a 1 r -t 0.70461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 150 -a 1 + -t 0.70461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 150 -a 1 - -t 0.70461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 150 -a 1 h -t 0.70461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 150 -a 1 r -t 0.70547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 136 -a 1 + -t 0.70547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 136 -a 1 - -t 0.70547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 136 -a 1 h -t 0.70547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 136 -a 1 r -t 0.70633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 122 -a 1 + -t 0.7075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 166 -a 1 - -t 0.7075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 166 -a 1 h -t 0.7075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 166 -a 1 r -t 0.70836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 152 -a 1 + -t 0.70836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 152 -a 1 - -t 0.70836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 152 -a 1 h -t 0.70836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 152 -a 1 r -t 0.70922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 137 -a 1 + -t 0.70922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 137 -a 1 - -t 0.70922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 137 -a 1 h -t 0.70922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 137 -a 1 r -t 0.71008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 123 -a 1 + -t 0.71125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 167 -a 1 - -t 0.71125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 167 -a 1 h -t 0.71125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 167 -a 1 r -t 0.71211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 153 -a 1 + -t 0.71211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 153 -a 1 - -t 0.71211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 153 -a 1 h -t 0.71211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 153 -a 1 r -t 0.71297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 138 -a 1 + -t 0.71297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 138 -a 1 - -t 0.71297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 138 -a 1 h -t 0.71297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 138 -a 1 r -t 0.71383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 124 -a 1 + -t 0.715 -s 1 -d 2 -p cbr -e 210 -c 1 -i 168 -a 1 - -t 0.715 -s 1 -d 2 -p cbr -e 210 -c 1 -i 168 -a 1 h -t 0.715 -s 1 -d 2 -p cbr -e 210 -c 1 -i 168 -a 1 r -t 0.71586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 154 -a 1 + -t 0.71586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 154 -a 1 - -t 0.71586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 154 -a 1 h -t 0.71586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 154 -a 1 r -t 0.71672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 139 -a 1 + -t 0.71672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 139 -a 1 - -t 0.71672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 139 -a 1 h -t 0.71672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 139 -a 1 r -t 0.71758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 125 -a 1 + -t 0.71875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 169 -a 1 - -t 0.71875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 169 -a 1 h -t 0.71875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 169 -a 1 r -t 0.71961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 155 -a 1 + -t 0.71961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 155 -a 1 - -t 0.71961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 155 -a 1 h -t 0.71961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 155 -a 1 r -t 0.72047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 140 -a 1 + -t 0.72047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 140 -a 1 - -t 0.72047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 140 -a 1 h -t 0.72047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 140 -a 1 r -t 0.72133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 126 -a 1 + -t 0.7225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 170 -a 1 - -t 0.7225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 170 -a 1 h -t 0.7225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 170 -a 1 r -t 0.72336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 156 -a 1 + -t 0.72336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 156 -a 1 - -t 0.72336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 156 -a 1 h -t 0.72336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 156 -a 1 r -t 0.72422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 141 -a 1 + -t 0.72422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 141 -a 1 - -t 0.72422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 141 -a 1 h -t 0.72422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 141 -a 1 r -t 0.72508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 127 -a 1 + -t 0.72625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 171 -a 1 - -t 0.72625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 171 -a 1 h -t 0.72625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 171 -a 1 r -t 0.72711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 157 -a 1 + -t 0.72711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 157 -a 1 - -t 0.72711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 157 -a 1 h -t 0.72711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 157 -a 1 r -t 0.72797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 142 -a 1 + -t 0.72797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 142 -a 1 - -t 0.72797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 142 -a 1 h -t 0.72797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 142 -a 1 r -t 0.72883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 128 -a 1 + -t 0.73 -s 1 -d 2 -p cbr -e 210 -c 1 -i 172 -a 1 - -t 0.73 -s 1 -d 2 -p cbr -e 210 -c 1 -i 172 -a 1 h -t 0.73 -s 1 -d 2 -p cbr -e 210 -c 1 -i 172 -a 1 r -t 0.73086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 158 -a 1 + -t 0.73086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 158 -a 1 - -t 0.73086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 158 -a 1 h -t 0.73086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 158 -a 1 r -t 0.73172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 143 -a 1 + -t 0.73172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 143 -a 1 - -t 0.73172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 143 -a 1 h -t 0.73172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 143 -a 1 r -t 0.73258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 129 -a 1 + -t 0.73375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 173 -a 1 - -t 0.73375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 173 -a 1 h -t 0.73375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 173 -a 1 r -t 0.73461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 159 -a 1 + -t 0.73461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 159 -a 1 - -t 0.73461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 159 -a 1 h -t 0.73461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 159 -a 1 r -t 0.73547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 144 -a 1 + -t 0.73547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 144 -a 1 - -t 0.73547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 144 -a 1 h -t 0.73547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 144 -a 1 r -t 0.73633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 130 -a 1 + -t 0.7375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 174 -a 1 - -t 0.7375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 174 -a 1 h -t 0.7375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 174 -a 1 r -t 0.73836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 160 -a 1 + -t 0.73836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 160 -a 1 - -t 0.73836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 160 -a 1 h -t 0.73836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 160 -a 1 r -t 0.73922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 145 -a 1 + -t 0.73922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 145 -a 1 - -t 0.73922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 145 -a 1 h -t 0.73922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 145 -a 1 r -t 0.74008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 131 -a 1 + -t 0.74125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 175 -a 1 - -t 0.74125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 175 -a 1 h -t 0.74125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 175 -a 1 r -t 0.74211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 161 -a 1 + -t 0.74211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 161 -a 1 - -t 0.74211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 161 -a 1 h -t 0.74211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 161 -a 1 r -t 0.74297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 146 -a 1 + -t 0.74297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 146 -a 1 - -t 0.74297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 146 -a 1 h -t 0.74297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 146 -a 1 r -t 0.74383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 132 -a 1 + -t 0.745 -s 1 -d 2 -p cbr -e 210 -c 1 -i 176 -a 1 - -t 0.745 -s 1 -d 2 -p cbr -e 210 -c 1 -i 176 -a 1 h -t 0.745 -s 1 -d 2 -p cbr -e 210 -c 1 -i 176 -a 1 r -t 0.74586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 162 -a 1 + -t 0.74586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 162 -a 1 - -t 0.74586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 162 -a 1 h -t 0.74586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 162 -a 1 r -t 0.74672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 147 -a 1 + -t 0.74672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 147 -a 1 - -t 0.74672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 147 -a 1 h -t 0.74672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 147 -a 1 r -t 0.74758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 133 -a 1 + -t 0.74875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 177 -a 1 - -t 0.74875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 177 -a 1 h -t 0.74875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 177 -a 1 r -t 0.74961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 163 -a 1 + -t 0.74961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 163 -a 1 - -t 0.74961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 163 -a 1 h -t 0.74961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 163 -a 1 r -t 0.75047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 148 -a 1 + -t 0.75047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 148 -a 1 - -t 0.75047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 148 -a 1 h -t 0.75047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 148 -a 1 r -t 0.75133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 134 -a 1 + -t 0.7525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 178 -a 1 - -t 0.7525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 178 -a 1 h -t 0.7525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 178 -a 1 r -t 0.75336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 164 -a 1 + -t 0.75336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 164 -a 1 - -t 0.75336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 164 -a 1 h -t 0.75336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 164 -a 1 r -t 0.75375 -s 3 -d 2 -p ack -e 40 -c 0 -i 151 -a 0 -S 0 -y {1 1} + -t 0.75375 -s 2 -d 0 -p ack -e 40 -c 0 -i 151 -a 0 -S 0 -y {1 1} - -t 0.75375 -s 2 -d 0 -p ack -e 40 -c 0 -i 151 -a 0 -S 0 -f 0 -m 1 -y {1 1} h -t 0.75375 -s 2 -d 0 -p ack -e 40 -c 0 -i 151 -a 0 -S 0 -y {-1 -1} r -t 0.75422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 149 -a 1 + -t 0.75422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 149 -a 1 - -t 0.75422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 149 -a 1 h -t 0.75422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 149 -a 1 r -t 0.75508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 135 -a 1 + -t 0.75625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 179 -a 1 - -t 0.75625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 179 -a 1 h -t 0.75625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 179 -a 1 r -t 0.75711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 165 -a 1 + -t 0.75711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 165 -a 1 - -t 0.75711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 165 -a 1 h -t 0.75711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 165 -a 1 r -t 0.75797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 150 -a 1 + -t 0.75797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 150 -a 1 - -t 0.75797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 150 -a 1 h -t 0.75797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 150 -a 1 r -t 0.75883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 136 -a 1 + -t 0.76 -s 1 -d 2 -p cbr -e 210 -c 1 -i 180 -a 1 - -t 0.76 -s 1 -d 2 -p cbr -e 210 -c 1 -i 180 -a 1 h -t 0.76 -s 1 -d 2 -p cbr -e 210 -c 1 -i 180 -a 1 r -t 0.76086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 166 -a 1 + -t 0.76086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 166 -a 1 - -t 0.76086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 166 -a 1 h -t 0.76086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 166 -a 1 r -t 0.76172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 152 -a 1 + -t 0.76172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 152 -a 1 - -t 0.76172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 152 -a 1 h -t 0.76172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 152 -a 1 r -t 0.76258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 137 -a 1 + -t 0.76375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 181 -a 1 - -t 0.76375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 181 -a 1 h -t 0.76375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 181 -a 1 r -t 0.76461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 167 -a 1 + -t 0.76461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 167 -a 1 - -t 0.76461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 167 -a 1 h -t 0.76461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 167 -a 1 r -t 0.76547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 153 -a 1 + -t 0.76547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 153 -a 1 - -t 0.76547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 153 -a 1 h -t 0.76547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 153 -a 1 r -t 0.76633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 138 -a 1 + -t 0.7675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 182 -a 1 - -t 0.7675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 182 -a 1 h -t 0.7675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 182 -a 1 r -t 0.76836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 168 -a 1 + -t 0.76836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 168 -a 1 - -t 0.76836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 168 -a 1 h -t 0.76836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 168 -a 1 r -t 0.76922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 154 -a 1 + -t 0.76922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 154 -a 1 - -t 0.76922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 154 -a 1 h -t 0.76922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 154 -a 1 r -t 0.77008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 139 -a 1 + -t 0.77125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 183 -a 1 - -t 0.77125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 183 -a 1 h -t 0.77125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 183 -a 1 r -t 0.77211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 169 -a 1 + -t 0.77211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 169 -a 1 - -t 0.77211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 169 -a 1 h -t 0.77211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 169 -a 1 r -t 0.77297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 155 -a 1 + -t 0.77297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 155 -a 1 - -t 0.77297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 155 -a 1 h -t 0.77297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 155 -a 1 r -t 0.77383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 140 -a 1 + -t 0.775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 184 -a 1 - -t 0.775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 184 -a 1 h -t 0.775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 184 -a 1 r -t 0.77586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 170 -a 1 + -t 0.77586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 170 -a 1 - -t 0.77586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 170 -a 1 h -t 0.77586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 170 -a 1 r -t 0.77672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 156 -a 1 + -t 0.77672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 156 -a 1 - -t 0.77672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 156 -a 1 h -t 0.77672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 156 -a 1 r -t 0.77758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 141 -a 1 + -t 0.77875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 185 -a 1 - -t 0.77875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 185 -a 1 h -t 0.77875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 185 -a 1 r -t 0.77961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 171 -a 1 + -t 0.77961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 171 -a 1 - -t 0.77961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 171 -a 1 h -t 0.77961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 171 -a 1 r -t 0.78047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 157 -a 1 + -t 0.78047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 157 -a 1 - -t 0.78047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 157 -a 1 h -t 0.78047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 157 -a 1 r -t 0.78133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 142 -a 1 + -t 0.7825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 186 -a 1 - -t 0.7825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 186 -a 1 h -t 0.7825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 186 -a 1 r -t 0.78336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 172 -a 1 + -t 0.78336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 172 -a 1 - -t 0.78336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 172 -a 1 h -t 0.78336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 172 -a 1 r -t 0.78422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 158 -a 1 + -t 0.78422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 158 -a 1 - -t 0.78422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 158 -a 1 h -t 0.78422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 158 -a 1 r -t 0.78508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 143 -a 1 + -t 0.78625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 187 -a 1 - -t 0.78625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 187 -a 1 h -t 0.78625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 187 -a 1 r -t 0.78711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 173 -a 1 + -t 0.78711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 173 -a 1 - -t 0.78711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 173 -a 1 h -t 0.78711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 173 -a 1 r -t 0.78797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 159 -a 1 + -t 0.78797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 159 -a 1 - -t 0.78797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 159 -a 1 h -t 0.78797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 159 -a 1 r -t 0.78883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 144 -a 1 + -t 0.79 -s 1 -d 2 -p cbr -e 210 -c 1 -i 188 -a 1 - -t 0.79 -s 1 -d 2 -p cbr -e 210 -c 1 -i 188 -a 1 h -t 0.79 -s 1 -d 2 -p cbr -e 210 -c 1 -i 188 -a 1 r -t 0.79086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 174 -a 1 + -t 0.79086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 174 -a 1 - -t 0.79086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 174 -a 1 h -t 0.79086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 174 -a 1 r -t 0.79172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 160 -a 1 + -t 0.79172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 160 -a 1 - -t 0.79172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 160 -a 1 h -t 0.79172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 160 -a 1 r -t 0.79258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 145 -a 1 + -t 0.79375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 189 -a 1 - -t 0.79375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 189 -a 1 h -t 0.79375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 189 -a 1 r -t 0.79461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 175 -a 1 + -t 0.79461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 175 -a 1 - -t 0.79461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 175 -a 1 h -t 0.79461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 175 -a 1 r -t 0.79547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 161 -a 1 + -t 0.79547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 161 -a 1 - -t 0.79547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 161 -a 1 h -t 0.79547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 161 -a 1 r -t 0.79633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 146 -a 1 + -t 0.7975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 190 -a 1 - -t 0.7975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 190 -a 1 h -t 0.7975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 190 -a 1 r -t 0.79836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 176 -a 1 + -t 0.79836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 176 -a 1 - -t 0.79836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 176 -a 1 h -t 0.79836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 176 -a 1 r -t 0.79922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 162 -a 1 + -t 0.79922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 162 -a 1 - -t 0.79922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 162 -a 1 h -t 0.79922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 162 -a 1 r -t 0.80008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 147 -a 1 + -t 0.80125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 191 -a 1 - -t 0.80125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 191 -a 1 h -t 0.80125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 191 -a 1 r -t 0.80211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 177 -a 1 + -t 0.80211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 177 -a 1 - -t 0.80211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 177 -a 1 h -t 0.80211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 177 -a 1 r -t 0.80297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 163 -a 1 + -t 0.80297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 163 -a 1 - -t 0.80297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 163 -a 1 h -t 0.80297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 163 -a 1 r -t 0.80383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 148 -a 1 r -t 0.80439 -s 2 -d 0 -p ack -e 40 -c 0 -i 151 -a 0 -S 0 -y {1 1} f -t 0.80438999999999883 -s 0 -d 4 -n cwnd_ -a tcp -v 2.000000 -o 1.000000 -T v f -t 0.80438999999999883 -s 0 -d 4 -n cwnd_ -a tcp -v 1.000000 -o 2.000000 -T v + -t 0.80439 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 192 -a 0 -S 0 -f 0 -m 0 -y {2 2} - -t 0.80439 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 192 -a 0 -S 0 -y {2 2} h -t 0.80439 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 192 -a 0 -S 0 -y {-1 -1} + -t 0.805 -s 1 -d 2 -p cbr -e 210 -c 1 -i 193 -a 1 - -t 0.805 -s 1 -d 2 -p cbr -e 210 -c 1 -i 193 -a 1 h -t 0.805 -s 1 -d 2 -p cbr -e 210 -c 1 -i 193 -a 1 r -t 0.80586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 178 -a 1 + -t 0.80586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 178 -a 1 - -t 0.80586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 178 -a 1 h -t 0.80586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 178 -a 1 r -t 0.80672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 164 -a 1 + -t 0.80672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 164 -a 1 - -t 0.80672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 164 -a 1 h -t 0.80672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 164 -a 1 r -t 0.80758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 149 -a 1 + -t 0.80875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 194 -a 1 - -t 0.80875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 194 -a 1 h -t 0.80875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 194 -a 1 r -t 0.80961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 179 -a 1 + -t 0.80961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 179 -a 1 - -t 0.80961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 179 -a 1 h -t 0.80961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 179 -a 1 r -t 0.81047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 165 -a 1 + -t 0.81047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 165 -a 1 - -t 0.81047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 165 -a 1 h -t 0.81047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 165 -a 1 r -t 0.81133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 150 -a 1 + -t 0.8125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 195 -a 1 - -t 0.8125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 195 -a 1 h -t 0.8125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 195 -a 1 r -t 0.81336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 180 -a 1 + -t 0.81336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 180 -a 1 - -t 0.81336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 180 -a 1 h -t 0.81336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 180 -a 1 r -t 0.81422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 166 -a 1 + -t 0.81422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 166 -a 1 - -t 0.81422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 166 -a 1 h -t 0.81422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 166 -a 1 r -t 0.81508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 152 -a 1 + -t 0.81625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 196 -a 1 - -t 0.81625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 196 -a 1 h -t 0.81625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 196 -a 1 r -t 0.81711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 181 -a 1 + -t 0.81711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 181 -a 1 - -t 0.81711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 181 -a 1 h -t 0.81711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 181 -a 1 r -t 0.81797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 167 -a 1 + -t 0.81797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 167 -a 1 - -t 0.81797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 167 -a 1 h -t 0.81797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 167 -a 1 r -t 0.81883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 153 -a 1 + -t 0.82 -s 1 -d 2 -p cbr -e 210 -c 1 -i 197 -a 1 - -t 0.82 -s 1 -d 2 -p cbr -e 210 -c 1 -i 197 -a 1 h -t 0.82 -s 1 -d 2 -p cbr -e 210 -c 1 -i 197 -a 1 r -t 0.82086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 182 -a 1 + -t 0.82086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 182 -a 1 - -t 0.82086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 182 -a 1 h -t 0.82086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 182 -a 1 r -t 0.82172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 168 -a 1 + -t 0.82172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 168 -a 1 - -t 0.82172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 168 -a 1 h -t 0.82172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 168 -a 1 r -t 0.82258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 154 -a 1 + -t 0.82375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 198 -a 1 - -t 0.82375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 198 -a 1 h -t 0.82375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 198 -a 1 r -t 0.82461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 183 -a 1 + -t 0.82461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 183 -a 1 - -t 0.82461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 183 -a 1 h -t 0.82461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 183 -a 1 r -t 0.82547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 169 -a 1 + -t 0.82547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 169 -a 1 - -t 0.82547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 169 -a 1 h -t 0.82547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 169 -a 1 r -t 0.82633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 155 -a 1 + -t 0.8275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 199 -a 1 - -t 0.8275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 199 -a 1 h -t 0.8275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 199 -a 1 r -t 0.82836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 184 -a 1 + -t 0.82836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 184 -a 1 - -t 0.82836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 184 -a 1 h -t 0.82836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 184 -a 1 r -t 0.82922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 170 -a 1 + -t 0.82922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 170 -a 1 - -t 0.82922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 170 -a 1 h -t 0.82922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 170 -a 1 r -t 0.83008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 156 -a 1 + -t 0.83125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 200 -a 1 - -t 0.83125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 200 -a 1 h -t 0.83125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 200 -a 1 r -t 0.83211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 185 -a 1 + -t 0.83211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 185 -a 1 - -t 0.83211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 185 -a 1 h -t 0.83211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 185 -a 1 r -t 0.83297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 171 -a 1 + -t 0.83297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 171 -a 1 - -t 0.83297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 171 -a 1 h -t 0.83297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 171 -a 1 r -t 0.83383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 157 -a 1 + -t 0.835 -s 1 -d 2 -p cbr -e 210 -c 1 -i 201 -a 1 - -t 0.835 -s 1 -d 2 -p cbr -e 210 -c 1 -i 201 -a 1 h -t 0.835 -s 1 -d 2 -p cbr -e 210 -c 1 -i 201 -a 1 r -t 0.83586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 186 -a 1 + -t 0.83586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 186 -a 1 - -t 0.83586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 186 -a 1 h -t 0.83586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 186 -a 1 r -t 0.83672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 172 -a 1 + -t 0.83672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 172 -a 1 - -t 0.83672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 172 -a 1 h -t 0.83672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 172 -a 1 r -t 0.83758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 158 -a 1 + -t 0.83875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 202 -a 1 - -t 0.83875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 202 -a 1 h -t 0.83875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 202 -a 1 r -t 0.83961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 187 -a 1 + -t 0.83961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 187 -a 1 - -t 0.83961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 187 -a 1 h -t 0.83961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 187 -a 1 r -t 0.84047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 173 -a 1 + -t 0.84047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 173 -a 1 - -t 0.84047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 173 -a 1 h -t 0.84047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 173 -a 1 r -t 0.84133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 159 -a 1 + -t 0.8425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 203 -a 1 - -t 0.8425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 203 -a 1 h -t 0.8425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 203 -a 1 r -t 0.84336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 188 -a 1 + -t 0.84336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 188 -a 1 - -t 0.84336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 188 -a 1 h -t 0.84336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 188 -a 1 r -t 0.84422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 174 -a 1 + -t 0.84422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 174 -a 1 - -t 0.84422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 174 -a 1 h -t 0.84422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 174 -a 1 r -t 0.84508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 160 -a 1 + -t 0.84625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 204 -a 1 - -t 0.84625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 204 -a 1 h -t 0.84625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 204 -a 1 r -t 0.84711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 189 -a 1 + -t 0.84711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 189 -a 1 - -t 0.84711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 189 -a 1 h -t 0.84711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 189 -a 1 r -t 0.84797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 175 -a 1 + -t 0.84797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 175 -a 1 - -t 0.84797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 175 -a 1 h -t 0.84797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 175 -a 1 r -t 0.84883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 161 -a 1 + -t 0.85 -s 1 -d 2 -p cbr -e 210 -c 1 -i 205 -a 1 - -t 0.85 -s 1 -d 2 -p cbr -e 210 -c 1 -i 205 -a 1 h -t 0.85 -s 1 -d 2 -p cbr -e 210 -c 1 -i 205 -a 1 r -t 0.85086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 190 -a 1 + -t 0.85086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 190 -a 1 - -t 0.85086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 190 -a 1 h -t 0.85086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 190 -a 1 r -t 0.85172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 176 -a 1 + -t 0.85172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 176 -a 1 - -t 0.85172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 176 -a 1 h -t 0.85172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 176 -a 1 r -t 0.85258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 162 -a 1 + -t 0.85375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 206 -a 1 - -t 0.85375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 206 -a 1 h -t 0.85375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 206 -a 1 r -t 0.85461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 191 -a 1 + -t 0.85461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 191 -a 1 - -t 0.85461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 191 -a 1 h -t 0.85461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 191 -a 1 r -t 0.85547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 177 -a 1 + -t 0.85547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 177 -a 1 - -t 0.85547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 177 -a 1 h -t 0.85547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 177 -a 1 r -t 0.85633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 163 -a 1 + -t 0.8575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 207 -a 1 - -t 0.8575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 207 -a 1 h -t 0.8575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 207 -a 1 r -t 0.85836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 193 -a 1 + -t 0.85836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 193 -a 1 - -t 0.85836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 193 -a 1 h -t 0.85836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 193 -a 1 r -t 0.85922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 178 -a 1 + -t 0.85922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 178 -a 1 - -t 0.85922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 178 -a 1 h -t 0.85922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 178 -a 1 r -t 0.86008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 164 -a 1 + -t 0.86125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 208 -a 1 - -t 0.86125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 208 -a 1 h -t 0.86125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 208 -a 1 r -t 0.86211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 194 -a 1 + -t 0.86211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 194 -a 1 - -t 0.86211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 194 -a 1 h -t 0.86211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 194 -a 1 r -t 0.86297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 179 -a 1 + -t 0.86297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 179 -a 1 - -t 0.86297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 179 -a 1 h -t 0.86297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 179 -a 1 r -t 0.86383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 165 -a 1 + -t 0.865 -s 1 -d 2 -p cbr -e 210 -c 1 -i 209 -a 1 - -t 0.865 -s 1 -d 2 -p cbr -e 210 -c 1 -i 209 -a 1 h -t 0.865 -s 1 -d 2 -p cbr -e 210 -c 1 -i 209 -a 1 r -t 0.86586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 195 -a 1 + -t 0.86586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 195 -a 1 - -t 0.86586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 195 -a 1 h -t 0.86586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 195 -a 1 r -t 0.86672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 180 -a 1 + -t 0.86672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 180 -a 1 - -t 0.86672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 180 -a 1 h -t 0.86672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 180 -a 1 r -t 0.86758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 166 -a 1 + -t 0.86875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 210 -a 1 - -t 0.86875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 210 -a 1 h -t 0.86875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 210 -a 1 r -t 0.86961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 196 -a 1 + -t 0.86961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 196 -a 1 - -t 0.86961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 196 -a 1 h -t 0.86961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 196 -a 1 r -t 0.87039 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 192 -a 0 -S 0 -y {2 2} + -t 0.87039 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 192 -a 0 -S 0 -y {2 2} r -t 0.87047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 181 -a 1 + -t 0.87047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 181 -a 1 - -t 0.87047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 181 -a 1 h -t 0.87047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 181 -a 1 r -t 0.87133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 167 -a 1 + -t 0.8725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 211 -a 1 - -t 0.8725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 211 -a 1 h -t 0.8725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 211 -a 1 - -t 0.87297 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 192 -a 0 -S 0 -y {2 2} h -t 0.87297 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 192 -a 0 -S 0 -y {-1 -1} r -t 0.87336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 197 -a 1 + -t 0.87336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 197 -a 1 r -t 0.87422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 182 -a 1 + -t 0.87422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 182 -a 1 - -t 0.87422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 182 -a 1 h -t 0.87422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 182 -a 1 r -t 0.87508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 168 -a 1 + -t 0.87625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 212 -a 1 - -t 0.87625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 212 -a 1 h -t 0.87625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 212 -a 1 r -t 0.87711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 198 -a 1 + -t 0.87711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 198 -a 1 d -t 0.87711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 198 -a 1 r -t 0.87797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 183 -a 1 + -t 0.87797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 183 -a 1 - -t 0.87797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 183 -a 1 h -t 0.87797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 183 -a 1 r -t 0.87883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 169 -a 1 + -t 0.88 -s 1 -d 2 -p cbr -e 210 -c 1 -i 213 -a 1 - -t 0.88 -s 1 -d 2 -p cbr -e 210 -c 1 -i 213 -a 1 h -t 0.88 -s 1 -d 2 -p cbr -e 210 -c 1 -i 213 -a 1 r -t 0.88086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 199 -a 1 + -t 0.88086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 199 -a 1 d -t 0.88086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 199 -a 1 r -t 0.88172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 184 -a 1 + -t 0.88172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 184 -a 1 - -t 0.88172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 184 -a 1 h -t 0.88172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 184 -a 1 r -t 0.88258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 170 -a 1 + -t 0.88375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 214 -a 1 - -t 0.88375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 214 -a 1 h -t 0.88375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 214 -a 1 r -t 0.88461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 200 -a 1 + -t 0.88461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 200 -a 1 d -t 0.88461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 200 -a 1 r -t 0.88547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 185 -a 1 + -t 0.88547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 185 -a 1 - -t 0.88547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 185 -a 1 h -t 0.88547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 185 -a 1 r -t 0.88633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 171 -a 1 + -t 0.8875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 215 -a 1 - -t 0.8875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 215 -a 1 h -t 0.8875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 215 -a 1 r -t 0.88836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 201 -a 1 + -t 0.88836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 201 -a 1 d -t 0.88836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 201 -a 1 - -t 0.88897 -s 2 -d 3 -p cbr -e 210 -c 1 -i 197 -a 1 h -t 0.88897 -s 2 -d 3 -p cbr -e 210 -c 1 -i 197 -a 1 r -t 0.88922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 186 -a 1 + -t 0.88922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 186 -a 1 - -t 0.88922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 186 -a 1 h -t 0.88922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 186 -a 1 r -t 0.89008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 172 -a 1 + -t 0.89125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 216 -a 1 - -t 0.89125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 216 -a 1 h -t 0.89125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 216 -a 1 r -t 0.89211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 202 -a 1 + -t 0.89211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 202 -a 1 - -t 0.89233 -s 2 -d 3 -p cbr -e 210 -c 1 -i 202 -a 1 h -t 0.89233 -s 2 -d 3 -p cbr -e 210 -c 1 -i 202 -a 1 r -t 0.89297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 187 -a 1 + -t 0.89297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 187 -a 1 - -t 0.89297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 187 -a 1 h -t 0.89297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 187 -a 1 r -t 0.89383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 173 -a 1 + -t 0.895 -s 1 -d 2 -p cbr -e 210 -c 1 -i 217 -a 1 - -t 0.895 -s 1 -d 2 -p cbr -e 210 -c 1 -i 217 -a 1 h -t 0.895 -s 1 -d 2 -p cbr -e 210 -c 1 -i 217 -a 1 r -t 0.89586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 203 -a 1 + -t 0.89586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 203 -a 1 - -t 0.89586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 203 -a 1 h -t 0.89586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 203 -a 1 r -t 0.89672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 188 -a 1 + -t 0.89672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 188 -a 1 - -t 0.89672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 188 -a 1 h -t 0.89672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 188 -a 1 r -t 0.89758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 174 -a 1 + -t 0.89875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 218 -a 1 - -t 0.89875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 218 -a 1 h -t 0.89875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 218 -a 1 r -t 0.89961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 204 -a 1 + -t 0.89961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 204 -a 1 - -t 0.89961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 204 -a 1 h -t 0.89961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 204 -a 1 r -t 0.90047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 189 -a 1 + -t 0.90047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 189 -a 1 - -t 0.90047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 189 -a 1 h -t 0.90047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 189 -a 1 r -t 0.90133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 175 -a 1 + -t 0.9025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 219 -a 1 - -t 0.9025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 219 -a 1 h -t 0.9025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 219 -a 1 r -t 0.90336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 205 -a 1 + -t 0.90336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 205 -a 1 - -t 0.90336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 205 -a 1 h -t 0.90336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 205 -a 1 r -t 0.90422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 190 -a 1 + -t 0.90422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 190 -a 1 - -t 0.90422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 190 -a 1 h -t 0.90422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 190 -a 1 r -t 0.90508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 176 -a 1 + -t 0.90625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 220 -a 1 - -t 0.90625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 220 -a 1 h -t 0.90625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 220 -a 1 r -t 0.90711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 206 -a 1 + -t 0.90711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 206 -a 1 - -t 0.90711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 206 -a 1 h -t 0.90711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 206 -a 1 r -t 0.90797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 191 -a 1 + -t 0.90797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 191 -a 1 - -t 0.90797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 191 -a 1 h -t 0.90797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 191 -a 1 r -t 0.90883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 177 -a 1 + -t 0.91 -s 1 -d 2 -p cbr -e 210 -c 1 -i 221 -a 1 - -t 0.91 -s 1 -d 2 -p cbr -e 210 -c 1 -i 221 -a 1 h -t 0.91 -s 1 -d 2 -p cbr -e 210 -c 1 -i 221 -a 1 r -t 0.91086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 207 -a 1 + -t 0.91086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 207 -a 1 - -t 0.91086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 207 -a 1 h -t 0.91086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 207 -a 1 r -t 0.91172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 193 -a 1 + -t 0.91172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 193 -a 1 - -t 0.91172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 193 -a 1 h -t 0.91172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 193 -a 1 r -t 0.91258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 178 -a 1 + -t 0.91375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 222 -a 1 - -t 0.91375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 222 -a 1 h -t 0.91375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 222 -a 1 r -t 0.91461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 208 -a 1 + -t 0.91461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 208 -a 1 - -t 0.91461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 208 -a 1 h -t 0.91461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 208 -a 1 r -t 0.91547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 194 -a 1 + -t 0.91547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 194 -a 1 - -t 0.91547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 194 -a 1 h -t 0.91547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 194 -a 1 r -t 0.91633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 179 -a 1 + -t 0.9175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 223 -a 1 - -t 0.9175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 223 -a 1 h -t 0.9175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 223 -a 1 r -t 0.91836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 209 -a 1 + -t 0.91836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 209 -a 1 - -t 0.91836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 209 -a 1 h -t 0.91836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 209 -a 1 r -t 0.91922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 195 -a 1 + -t 0.91922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 195 -a 1 - -t 0.91922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 195 -a 1 h -t 0.91922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 195 -a 1 r -t 0.92008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 180 -a 1 + -t 0.92125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 224 -a 1 - -t 0.92125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 224 -a 1 h -t 0.92125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 224 -a 1 r -t 0.92211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 210 -a 1 + -t 0.92211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 210 -a 1 - -t 0.92211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 210 -a 1 h -t 0.92211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 210 -a 1 r -t 0.92297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 196 -a 1 + -t 0.92297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 196 -a 1 - -t 0.92297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 196 -a 1 h -t 0.92297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 196 -a 1 r -t 0.92383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 181 -a 1 + -t 0.925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 225 -a 1 - -t 0.925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 225 -a 1 h -t 0.925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 225 -a 1 r -t 0.92586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 211 -a 1 + -t 0.92586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 211 -a 1 - -t 0.92586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 211 -a 1 h -t 0.92586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 211 -a 1 r -t 0.92758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 182 -a 1 + -t 0.92875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 226 -a 1 - -t 0.92875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 226 -a 1 h -t 0.92875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 226 -a 1 r -t 0.92961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 212 -a 1 + -t 0.92961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 212 -a 1 - -t 0.92961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 212 -a 1 h -t 0.92961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 212 -a 1 r -t 0.93133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 183 -a 1 + -t 0.9325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 227 -a 1 - -t 0.9325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 227 -a 1 h -t 0.9325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 227 -a 1 r -t 0.93336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 213 -a 1 + -t 0.93336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 213 -a 1 - -t 0.93336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 213 -a 1 h -t 0.93336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 213 -a 1 r -t 0.93508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 184 -a 1 + -t 0.93625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 228 -a 1 - -t 0.93625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 228 -a 1 h -t 0.93625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 228 -a 1 r -t 0.93711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 214 -a 1 + -t 0.93711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 214 -a 1 - -t 0.93711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 214 -a 1 h -t 0.93711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 214 -a 1 r -t 0.93883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 185 -a 1 r -t 0.93897 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 192 -a 0 -S 0 -y {2 2} + -t 0.93897 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 192 -a 0 -S 0 -y {2 2} - -t 0.93897 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 192 -a 0 -S 0 -y {2 2} h -t 0.93897 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 192 -a 0 -S 0 -y {-1 -1} + -t 0.94 -s 1 -d 2 -p cbr -e 210 -c 1 -i 229 -a 1 - -t 0.94 -s 1 -d 2 -p cbr -e 210 -c 1 -i 229 -a 1 h -t 0.94 -s 1 -d 2 -p cbr -e 210 -c 1 -i 229 -a 1 r -t 0.94086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 215 -a 1 + -t 0.94086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 215 -a 1 - -t 0.94086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 215 -a 1 h -t 0.94086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 215 -a 1 r -t 0.94233 -s 2 -d 3 -p cbr -e 210 -c 1 -i 197 -a 1 + -t 0.94233 -s 3 -d 5 -p cbr -e 210 -c 1 -i 197 -a 1 - -t 0.94233 -s 3 -d 5 -p cbr -e 210 -c 1 -i 197 -a 1 h -t 0.94233 -s 3 -d 5 -p cbr -e 210 -c 1 -i 197 -a 1 r -t 0.94258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 186 -a 1 + -t 0.94375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 230 -a 1 - -t 0.94375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 230 -a 1 h -t 0.94375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 230 -a 1 r -t 0.94461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 216 -a 1 + -t 0.94461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 216 -a 1 - -t 0.94461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 216 -a 1 h -t 0.94461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 216 -a 1 r -t 0.94569 -s 2 -d 3 -p cbr -e 210 -c 1 -i 202 -a 1 + -t 0.94569 -s 3 -d 5 -p cbr -e 210 -c 1 -i 202 -a 1 - -t 0.94569 -s 3 -d 5 -p cbr -e 210 -c 1 -i 202 -a 1 h -t 0.94569 -s 3 -d 5 -p cbr -e 210 -c 1 -i 202 -a 1 r -t 0.94633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 187 -a 1 + -t 0.9475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 231 -a 1 - -t 0.9475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 231 -a 1 h -t 0.9475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 231 -a 1 r -t 0.94836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 217 -a 1 + -t 0.94836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 217 -a 1 - -t 0.94836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 217 -a 1 h -t 0.94836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 217 -a 1 r -t 0.94922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 203 -a 1 + -t 0.94922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 203 -a 1 - -t 0.94922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 203 -a 1 h -t 0.94922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 203 -a 1 r -t 0.95008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 188 -a 1 + -t 0.95125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 232 -a 1 - -t 0.95125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 232 -a 1 h -t 0.95125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 232 -a 1 r -t 0.95211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 218 -a 1 + -t 0.95211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 218 -a 1 - -t 0.95211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 218 -a 1 h -t 0.95211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 218 -a 1 r -t 0.95297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 204 -a 1 + -t 0.95297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 204 -a 1 - -t 0.95297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 204 -a 1 h -t 0.95297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 204 -a 1 r -t 0.95383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 189 -a 1 + -t 0.955 -s 1 -d 2 -p cbr -e 210 -c 1 -i 233 -a 1 - -t 0.955 -s 1 -d 2 -p cbr -e 210 -c 1 -i 233 -a 1 h -t 0.955 -s 1 -d 2 -p cbr -e 210 -c 1 -i 233 -a 1 r -t 0.95586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 219 -a 1 + -t 0.95586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 219 -a 1 - -t 0.95586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 219 -a 1 h -t 0.95586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 219 -a 1 r -t 0.95672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 205 -a 1 + -t 0.95672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 205 -a 1 - -t 0.95672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 205 -a 1 h -t 0.95672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 205 -a 1 r -t 0.95758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 190 -a 1 + -t 0.95875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 234 -a 1 - -t 0.95875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 234 -a 1 h -t 0.95875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 234 -a 1 r -t 0.95961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 220 -a 1 + -t 0.95961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 220 -a 1 - -t 0.95961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 220 -a 1 h -t 0.95961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 220 -a 1 r -t 0.96047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 206 -a 1 + -t 0.96047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 206 -a 1 - -t 0.96047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 206 -a 1 h -t 0.96047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 206 -a 1 r -t 0.96133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 191 -a 1 + -t 0.9625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 235 -a 1 - -t 0.9625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 235 -a 1 h -t 0.9625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 235 -a 1 r -t 0.96336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 221 -a 1 + -t 0.96336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 221 -a 1 - -t 0.96336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 221 -a 1 h -t 0.96336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 221 -a 1 r -t 0.96422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 207 -a 1 + -t 0.96422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 207 -a 1 - -t 0.96422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 207 -a 1 h -t 0.96422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 207 -a 1 r -t 0.96508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 193 -a 1 + -t 0.96625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 236 -a 1 - -t 0.96625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 236 -a 1 h -t 0.96625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 236 -a 1 r -t 0.96711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 222 -a 1 + -t 0.96711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 222 -a 1 - -t 0.96711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 222 -a 1 h -t 0.96711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 222 -a 1 r -t 0.96797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 208 -a 1 + -t 0.96797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 208 -a 1 - -t 0.96797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 208 -a 1 h -t 0.96797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 208 -a 1 r -t 0.96883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 194 -a 1 + -t 0.97 -s 1 -d 2 -p cbr -e 210 -c 1 -i 237 -a 1 - -t 0.97 -s 1 -d 2 -p cbr -e 210 -c 1 -i 237 -a 1 h -t 0.97 -s 1 -d 2 -p cbr -e 210 -c 1 -i 237 -a 1 r -t 0.97086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 223 -a 1 + -t 0.97086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 223 -a 1 - -t 0.97086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 223 -a 1 h -t 0.97086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 223 -a 1 r -t 0.97172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 209 -a 1 + -t 0.97172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 209 -a 1 - -t 0.97172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 209 -a 1 h -t 0.97172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 209 -a 1 r -t 0.97258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 195 -a 1 + -t 0.97375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 238 -a 1 - -t 0.97375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 238 -a 1 h -t 0.97375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 238 -a 1 r -t 0.97461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 224 -a 1 + -t 0.97461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 224 -a 1 - -t 0.97461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 224 -a 1 h -t 0.97461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 224 -a 1 r -t 0.97547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 210 -a 1 + -t 0.97547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 210 -a 1 - -t 0.97547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 210 -a 1 h -t 0.97547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 210 -a 1 r -t 0.97633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 196 -a 1 + -t 0.9775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 239 -a 1 - -t 0.9775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 239 -a 1 h -t 0.9775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 239 -a 1 r -t 0.97836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 225 -a 1 + -t 0.97836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 225 -a 1 - -t 0.97836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 225 -a 1 h -t 0.97836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 225 -a 1 r -t 0.97922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 211 -a 1 + -t 0.97922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 211 -a 1 - -t 0.97922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 211 -a 1 h -t 0.97922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 211 -a 1 + -t 0.98125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 240 -a 1 - -t 0.98125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 240 -a 1 h -t 0.98125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 240 -a 1 r -t 0.98211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 226 -a 1 + -t 0.98211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 226 -a 1 - -t 0.98211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 226 -a 1 h -t 0.98211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 226 -a 1 r -t 0.98297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 212 -a 1 + -t 0.98297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 212 -a 1 - -t 0.98297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 212 -a 1 h -t 0.98297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 212 -a 1 + -t 0.985 -s 1 -d 2 -p cbr -e 210 -c 1 -i 241 -a 1 - -t 0.985 -s 1 -d 2 -p cbr -e 210 -c 1 -i 241 -a 1 h -t 0.985 -s 1 -d 2 -p cbr -e 210 -c 1 -i 241 -a 1 r -t 0.98586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 227 -a 1 + -t 0.98586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 227 -a 1 - -t 0.98586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 227 -a 1 h -t 0.98586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 227 -a 1 r -t 0.98672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 213 -a 1 + -t 0.98672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 213 -a 1 - -t 0.98672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 213 -a 1 h -t 0.98672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 213 -a 1 + -t 0.98875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 242 -a 1 - -t 0.98875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 242 -a 1 h -t 0.98875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 242 -a 1 r -t 0.98961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 228 -a 1 + -t 0.98961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 228 -a 1 - -t 0.98961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 228 -a 1 h -t 0.98961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 228 -a 1 r -t 0.99047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 214 -a 1 + -t 0.99047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 214 -a 1 - -t 0.99047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 214 -a 1 h -t 0.99047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 214 -a 1 + -t 0.9925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 243 -a 1 - -t 0.9925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 243 -a 1 h -t 0.9925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 243 -a 1 r -t 0.99336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 229 -a 1 + -t 0.99336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 229 -a 1 - -t 0.99336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 229 -a 1 h -t 0.99336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 229 -a 1 r -t 0.99422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 215 -a 1 + -t 0.99422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 215 -a 1 - -t 0.99422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 215 -a 1 h -t 0.99422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 215 -a 1 r -t 0.99569 -s 3 -d 5 -p cbr -e 210 -c 1 -i 197 -a 1 + -t 0.99625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 244 -a 1 - -t 0.99625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 244 -a 1 h -t 0.99625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 244 -a 1 r -t 0.99711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 230 -a 1 + -t 0.99711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 230 -a 1 - -t 0.99711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 230 -a 1 h -t 0.99711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 230 -a 1 r -t 0.99797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 216 -a 1 + -t 0.99797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 216 -a 1 - -t 0.99797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 216 -a 1 h -t 0.99797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 216 -a 1 r -t 0.99905 -s 3 -d 5 -p cbr -e 210 -c 1 -i 202 -a 1 + -t 1 -s 1 -d 2 -p cbr -e 210 -c 1 -i 245 -a 1 - -t 1 -s 1 -d 2 -p cbr -e 210 -c 1 -i 245 -a 1 h -t 1 -s 1 -d 2 -p cbr -e 210 -c 1 -i 245 -a 1 r -t 1.00086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 231 -a 1 + -t 1.00086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 231 -a 1 - -t 1.00086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 231 -a 1 h -t 1.00086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 231 -a 1 r -t 1.00172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 217 -a 1 + -t 1.00172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 217 -a 1 - -t 1.00172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 217 -a 1 h -t 1.00172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 217 -a 1 r -t 1.00258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 203 -a 1 + -t 1.00375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 246 -a 1 - -t 1.00375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 246 -a 1 h -t 1.00375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 246 -a 1 r -t 1.00461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 232 -a 1 + -t 1.00461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 232 -a 1 - -t 1.00461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 232 -a 1 h -t 1.00461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 232 -a 1 r -t 1.00497 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 192 -a 0 -S 0 -y {2 2} + -t 1.00497 -s 4 -d 3 -p ack -e 40 -c 0 -i 247 -a 0 -S 0 -y {2 2} - -t 1.00497 -s 4 -d 3 -p ack -e 40 -c 0 -i 247 -a 0 -S 0 -y {2 2} h -t 1.00497 -s 4 -d 3 -p ack -e 40 -c 0 -i 247 -a 0 -S 0 -y {-1 -1} r -t 1.00547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 218 -a 1 + -t 1.00547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 218 -a 1 - -t 1.00547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 218 -a 1 h -t 1.00547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 218 -a 1 r -t 1.00633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 204 -a 1 + -t 1.0075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 248 -a 1 - -t 1.0075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 248 -a 1 h -t 1.0075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 248 -a 1 r -t 1.00836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 233 -a 1 + -t 1.00836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 233 -a 1 - -t 1.00836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 233 -a 1 h -t 1.00836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 233 -a 1 r -t 1.00922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 219 -a 1 + -t 1.00922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 219 -a 1 - -t 1.00922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 219 -a 1 h -t 1.00922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 219 -a 1 r -t 1.01008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 205 -a 1 + -t 1.01125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 249 -a 1 - -t 1.01125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 249 -a 1 h -t 1.01125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 249 -a 1 r -t 1.01211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 234 -a 1 + -t 1.01211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 234 -a 1 - -t 1.01211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 234 -a 1 h -t 1.01211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 234 -a 1 r -t 1.01297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 220 -a 1 + -t 1.01297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 220 -a 1 - -t 1.01297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 220 -a 1 h -t 1.01297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 220 -a 1 r -t 1.01383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 206 -a 1 + -t 1.015 -s 1 -d 2 -p cbr -e 210 -c 1 -i 250 -a 1 - -t 1.015 -s 1 -d 2 -p cbr -e 210 -c 1 -i 250 -a 1 h -t 1.015 -s 1 -d 2 -p cbr -e 210 -c 1 -i 250 -a 1 r -t 1.01586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 235 -a 1 + -t 1.01586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 235 -a 1 - -t 1.01586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 235 -a 1 h -t 1.01586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 235 -a 1 r -t 1.01672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 221 -a 1 + -t 1.01672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 221 -a 1 - -t 1.01672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 221 -a 1 h -t 1.01672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 221 -a 1 r -t 1.01758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 207 -a 1 + -t 1.01875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 251 -a 1 - -t 1.01875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 251 -a 1 h -t 1.01875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 251 -a 1 r -t 1.01961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 236 -a 1 + -t 1.01961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 236 -a 1 - -t 1.01961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 236 -a 1 h -t 1.01961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 236 -a 1 r -t 1.02047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 222 -a 1 + -t 1.02047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 222 -a 1 - -t 1.02047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 222 -a 1 h -t 1.02047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 222 -a 1 r -t 1.02133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 208 -a 1 + -t 1.0225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 252 -a 1 - -t 1.0225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 252 -a 1 h -t 1.0225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 252 -a 1 r -t 1.02336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 237 -a 1 + -t 1.02336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 237 -a 1 - -t 1.02336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 237 -a 1 h -t 1.02336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 237 -a 1 r -t 1.02422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 223 -a 1 + -t 1.02422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 223 -a 1 - -t 1.02422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 223 -a 1 h -t 1.02422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 223 -a 1 r -t 1.02508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 209 -a 1 + -t 1.02625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 253 -a 1 - -t 1.02625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 253 -a 1 h -t 1.02625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 253 -a 1 r -t 1.02711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 238 -a 1 + -t 1.02711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 238 -a 1 - -t 1.02711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 238 -a 1 h -t 1.02711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 238 -a 1 r -t 1.02797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 224 -a 1 + -t 1.02797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 224 -a 1 - -t 1.02797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 224 -a 1 h -t 1.02797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 224 -a 1 r -t 1.02883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 210 -a 1 + -t 1.03 -s 1 -d 2 -p cbr -e 210 -c 1 -i 254 -a 1 - -t 1.03 -s 1 -d 2 -p cbr -e 210 -c 1 -i 254 -a 1 h -t 1.03 -s 1 -d 2 -p cbr -e 210 -c 1 -i 254 -a 1 r -t 1.03086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 239 -a 1 + -t 1.03086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 239 -a 1 - -t 1.03086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 239 -a 1 h -t 1.03086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 239 -a 1 r -t 1.03172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 225 -a 1 + -t 1.03172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 225 -a 1 - -t 1.03172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 225 -a 1 h -t 1.03172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 225 -a 1 r -t 1.03258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 211 -a 1 + -t 1.03375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 255 -a 1 - -t 1.03375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 255 -a 1 h -t 1.03375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 255 -a 1 r -t 1.03461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 240 -a 1 + -t 1.03461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 240 -a 1 - -t 1.03461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 240 -a 1 h -t 1.03461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 240 -a 1 r -t 1.03547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 226 -a 1 + -t 1.03547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 226 -a 1 - -t 1.03547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 226 -a 1 h -t 1.03547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 226 -a 1 r -t 1.03633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 212 -a 1 + -t 1.0375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 256 -a 1 - -t 1.0375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 256 -a 1 h -t 1.0375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 256 -a 1 r -t 1.03836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 241 -a 1 + -t 1.03836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 241 -a 1 - -t 1.03836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 241 -a 1 h -t 1.03836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 241 -a 1 r -t 1.03922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 227 -a 1 + -t 1.03922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 227 -a 1 - -t 1.03922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 227 -a 1 h -t 1.03922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 227 -a 1 r -t 1.04008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 213 -a 1 + -t 1.04125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 257 -a 1 - -t 1.04125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 257 -a 1 h -t 1.04125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 257 -a 1 r -t 1.04211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 242 -a 1 + -t 1.04211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 242 -a 1 - -t 1.04211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 242 -a 1 h -t 1.04211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 242 -a 1 r -t 1.04297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 228 -a 1 + -t 1.04297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 228 -a 1 - -t 1.04297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 228 -a 1 h -t 1.04297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 228 -a 1 r -t 1.04383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 214 -a 1 + -t 1.045 -s 1 -d 2 -p cbr -e 210 -c 1 -i 258 -a 1 - -t 1.045 -s 1 -d 2 -p cbr -e 210 -c 1 -i 258 -a 1 h -t 1.045 -s 1 -d 2 -p cbr -e 210 -c 1 -i 258 -a 1 r -t 1.04586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 243 -a 1 + -t 1.04586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 243 -a 1 - -t 1.04586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 243 -a 1 h -t 1.04586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 243 -a 1 r -t 1.04672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 229 -a 1 + -t 1.04672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 229 -a 1 - -t 1.04672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 229 -a 1 h -t 1.04672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 229 -a 1 r -t 1.04758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 215 -a 1 + -t 1.04875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 259 -a 1 - -t 1.04875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 259 -a 1 h -t 1.04875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 259 -a 1 r -t 1.04961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 244 -a 1 + -t 1.04961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 244 -a 1 - -t 1.04961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 244 -a 1 h -t 1.04961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 244 -a 1 r -t 1.05047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 230 -a 1 + -t 1.05047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 230 -a 1 - -t 1.05047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 230 -a 1 h -t 1.05047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 230 -a 1 r -t 1.05133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 216 -a 1 + -t 1.0525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 260 -a 1 - -t 1.0525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 260 -a 1 h -t 1.0525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 260 -a 1 r -t 1.05336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 245 -a 1 + -t 1.05336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 245 -a 1 - -t 1.05336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 245 -a 1 h -t 1.05336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 245 -a 1 r -t 1.05422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 231 -a 1 + -t 1.05422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 231 -a 1 - -t 1.05422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 231 -a 1 h -t 1.05422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 231 -a 1 r -t 1.05508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 217 -a 1 r -t 1.05561 -s 4 -d 3 -p ack -e 40 -c 0 -i 247 -a 0 -S 0 -y {2 2} + -t 1.05561 -s 3 -d 2 -p ack -e 40 -c 0 -i 247 -a 0 -S 0 -y {2 2} - -t 1.05561 -s 3 -d 2 -p ack -e 40 -c 0 -i 247 -a 0 -S 0 -y {2 2} h -t 1.05561 -s 3 -d 2 -p ack -e 40 -c 0 -i 247 -a 0 -S 0 -y {-1 -1} + -t 1.05625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 261 -a 1 - -t 1.05625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 261 -a 1 h -t 1.05625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 261 -a 1 r -t 1.05711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 246 -a 1 + -t 1.05711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 246 -a 1 - -t 1.05711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 246 -a 1 h -t 1.05711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 246 -a 1 r -t 1.05797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 232 -a 1 + -t 1.05797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 232 -a 1 - -t 1.05797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 232 -a 1 h -t 1.05797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 232 -a 1 r -t 1.05883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 218 -a 1 + -t 1.06 -s 1 -d 2 -p cbr -e 210 -c 1 -i 262 -a 1 - -t 1.06 -s 1 -d 2 -p cbr -e 210 -c 1 -i 262 -a 1 h -t 1.06 -s 1 -d 2 -p cbr -e 210 -c 1 -i 262 -a 1 r -t 1.06086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 248 -a 1 + -t 1.06086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 248 -a 1 - -t 1.06086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 248 -a 1 h -t 1.06086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 248 -a 1 r -t 1.06172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 233 -a 1 + -t 1.06172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 233 -a 1 - -t 1.06172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 233 -a 1 h -t 1.06172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 233 -a 1 r -t 1.06258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 219 -a 1 + -t 1.06375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 263 -a 1 - -t 1.06375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 263 -a 1 h -t 1.06375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 263 -a 1 r -t 1.06461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 249 -a 1 + -t 1.06461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 249 -a 1 - -t 1.06461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 249 -a 1 h -t 1.06461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 249 -a 1 r -t 1.06547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 234 -a 1 + -t 1.06547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 234 -a 1 - -t 1.06547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 234 -a 1 h -t 1.06547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 234 -a 1 r -t 1.06633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 220 -a 1 + -t 1.0675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 264 -a 1 - -t 1.0675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 264 -a 1 h -t 1.0675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 264 -a 1 r -t 1.06836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 250 -a 1 + -t 1.06836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 250 -a 1 - -t 1.06836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 250 -a 1 h -t 1.06836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 250 -a 1 r -t 1.06922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 235 -a 1 + -t 1.06922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 235 -a 1 - -t 1.06922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 235 -a 1 h -t 1.06922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 235 -a 1 r -t 1.07008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 221 -a 1 + -t 1.07125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 265 -a 1 - -t 1.07125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 265 -a 1 h -t 1.07125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 265 -a 1 r -t 1.07211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 251 -a 1 + -t 1.07211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 251 -a 1 - -t 1.07211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 251 -a 1 h -t 1.07211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 251 -a 1 r -t 1.07297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 236 -a 1 + -t 1.07297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 236 -a 1 - -t 1.07297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 236 -a 1 h -t 1.07297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 236 -a 1 r -t 1.07383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 222 -a 1 + -t 1.075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 266 -a 1 - -t 1.075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 266 -a 1 h -t 1.075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 266 -a 1 r -t 1.07586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 252 -a 1 + -t 1.07586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 252 -a 1 - -t 1.07586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 252 -a 1 h -t 1.07586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 252 -a 1 r -t 1.07672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 237 -a 1 + -t 1.07672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 237 -a 1 - -t 1.07672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 237 -a 1 h -t 1.07672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 237 -a 1 r -t 1.07758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 223 -a 1 + -t 1.07875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 267 -a 1 - -t 1.07875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 267 -a 1 h -t 1.07875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 267 -a 1 r -t 1.07961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 253 -a 1 + -t 1.07961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 253 -a 1 - -t 1.07961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 253 -a 1 h -t 1.07961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 253 -a 1 r -t 1.08047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 238 -a 1 + -t 1.08047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 238 -a 1 - -t 1.08047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 238 -a 1 h -t 1.08047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 238 -a 1 r -t 1.08133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 224 -a 1 + -t 1.0825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 268 -a 1 - -t 1.0825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 268 -a 1 h -t 1.0825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 268 -a 1 r -t 1.08336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 254 -a 1 + -t 1.08336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 254 -a 1 - -t 1.08336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 254 -a 1 h -t 1.08336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 254 -a 1 r -t 1.08422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 239 -a 1 + -t 1.08422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 239 -a 1 - -t 1.08422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 239 -a 1 h -t 1.08422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 239 -a 1 r -t 1.08508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 225 -a 1 + -t 1.08625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 269 -a 1 - -t 1.08625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 269 -a 1 h -t 1.08625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 269 -a 1 r -t 1.08711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 255 -a 1 + -t 1.08711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 255 -a 1 - -t 1.08711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 255 -a 1 h -t 1.08711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 255 -a 1 r -t 1.08797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 240 -a 1 + -t 1.08797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 240 -a 1 - -t 1.08797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 240 -a 1 h -t 1.08797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 240 -a 1 r -t 1.08883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 226 -a 1 + -t 1.09 -s 1 -d 2 -p cbr -e 210 -c 1 -i 270 -a 1 - -t 1.09 -s 1 -d 2 -p cbr -e 210 -c 1 -i 270 -a 1 h -t 1.09 -s 1 -d 2 -p cbr -e 210 -c 1 -i 270 -a 1 r -t 1.09086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 256 -a 1 + -t 1.09086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 256 -a 1 - -t 1.09086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 256 -a 1 h -t 1.09086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 256 -a 1 r -t 1.09172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 241 -a 1 + -t 1.09172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 241 -a 1 - -t 1.09172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 241 -a 1 h -t 1.09172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 241 -a 1 r -t 1.09258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 227 -a 1 + -t 1.09375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 271 -a 1 - -t 1.09375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 271 -a 1 h -t 1.09375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 271 -a 1 r -t 1.09461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 257 -a 1 + -t 1.09461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 257 -a 1 - -t 1.09461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 257 -a 1 h -t 1.09461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 257 -a 1 r -t 1.09547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 242 -a 1 + -t 1.09547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 242 -a 1 - -t 1.09547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 242 -a 1 h -t 1.09547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 242 -a 1 r -t 1.09633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 228 -a 1 + -t 1.0975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 272 -a 1 - -t 1.0975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 272 -a 1 h -t 1.0975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 272 -a 1 r -t 1.09836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 258 -a 1 + -t 1.09836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 258 -a 1 - -t 1.09836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 258 -a 1 h -t 1.09836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 258 -a 1 r -t 1.09922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 243 -a 1 + -t 1.09922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 243 -a 1 - -t 1.09922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 243 -a 1 h -t 1.09922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 243 -a 1 r -t 1.10008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 229 -a 1 + -t 1.10125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 273 -a 1 - -t 1.10125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 273 -a 1 h -t 1.10125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 273 -a 1 r -t 1.10211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 259 -a 1 + -t 1.10211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 259 -a 1 - -t 1.10211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 259 -a 1 h -t 1.10211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 259 -a 1 r -t 1.10297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 244 -a 1 + -t 1.10297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 244 -a 1 - -t 1.10297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 244 -a 1 h -t 1.10297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 244 -a 1 r -t 1.10383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 230 -a 1 + -t 1.105 -s 1 -d 2 -p cbr -e 210 -c 1 -i 274 -a 1 - -t 1.105 -s 1 -d 2 -p cbr -e 210 -c 1 -i 274 -a 1 h -t 1.105 -s 1 -d 2 -p cbr -e 210 -c 1 -i 274 -a 1 r -t 1.10586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 260 -a 1 + -t 1.10586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 260 -a 1 - -t 1.10586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 260 -a 1 h -t 1.10586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 260 -a 1 r -t 1.10625 -s 3 -d 2 -p ack -e 40 -c 0 -i 247 -a 0 -S 0 -y {2 2} + -t 1.10625 -s 2 -d 0 -p ack -e 40 -c 0 -i 247 -a 0 -S 0 -y {2 2} - -t 1.10625 -s 2 -d 0 -p ack -e 40 -c 0 -i 247 -a 0 -S 0 -f 0 -m 1 -y {2 2} h -t 1.10625 -s 2 -d 0 -p ack -e 40 -c 0 -i 247 -a 0 -S 0 -y {-1 -1} r -t 1.10672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 245 -a 1 + -t 1.10672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 245 -a 1 - -t 1.10672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 245 -a 1 h -t 1.10672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 245 -a 1 r -t 1.10758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 231 -a 1 + -t 1.10875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 275 -a 1 - -t 1.10875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 275 -a 1 h -t 1.10875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 275 -a 1 r -t 1.10961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 261 -a 1 + -t 1.10961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 261 -a 1 - -t 1.10961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 261 -a 1 h -t 1.10961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 261 -a 1 r -t 1.11047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 246 -a 1 + -t 1.11047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 246 -a 1 - -t 1.11047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 246 -a 1 h -t 1.11047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 246 -a 1 r -t 1.11133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 232 -a 1 + -t 1.1125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 276 -a 1 - -t 1.1125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 276 -a 1 h -t 1.1125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 276 -a 1 r -t 1.11336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 262 -a 1 + -t 1.11336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 262 -a 1 - -t 1.11336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 262 -a 1 h -t 1.11336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 262 -a 1 r -t 1.11422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 248 -a 1 + -t 1.11422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 248 -a 1 - -t 1.11422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 248 -a 1 h -t 1.11422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 248 -a 1 r -t 1.11508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 233 -a 1 + -t 1.11625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 277 -a 1 - -t 1.11625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 277 -a 1 h -t 1.11625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 277 -a 1 r -t 1.11711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 263 -a 1 + -t 1.11711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 263 -a 1 - -t 1.11711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 263 -a 1 h -t 1.11711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 263 -a 1 r -t 1.11797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 249 -a 1 + -t 1.11797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 249 -a 1 - -t 1.11797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 249 -a 1 h -t 1.11797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 249 -a 1 r -t 1.11883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 234 -a 1 + -t 1.12 -s 1 -d 2 -p cbr -e 210 -c 1 -i 278 -a 1 - -t 1.12 -s 1 -d 2 -p cbr -e 210 -c 1 -i 278 -a 1 h -t 1.12 -s 1 -d 2 -p cbr -e 210 -c 1 -i 278 -a 1 r -t 1.12086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 264 -a 1 + -t 1.12086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 264 -a 1 - -t 1.12086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 264 -a 1 h -t 1.12086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 264 -a 1 r -t 1.12172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 250 -a 1 + -t 1.12172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 250 -a 1 - -t 1.12172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 250 -a 1 h -t 1.12172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 250 -a 1 r -t 1.12258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 235 -a 1 + -t 1.12375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 279 -a 1 - -t 1.12375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 279 -a 1 h -t 1.12375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 279 -a 1 r -t 1.12461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 265 -a 1 + -t 1.12461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 265 -a 1 - -t 1.12461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 265 -a 1 h -t 1.12461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 265 -a 1 r -t 1.12547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 251 -a 1 + -t 1.12547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 251 -a 1 - -t 1.12547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 251 -a 1 h -t 1.12547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 251 -a 1 r -t 1.12633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 236 -a 1 + -t 1.1275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 280 -a 1 - -t 1.1275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 280 -a 1 h -t 1.1275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 280 -a 1 r -t 1.12836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 266 -a 1 + -t 1.12836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 266 -a 1 - -t 1.12836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 266 -a 1 h -t 1.12836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 266 -a 1 r -t 1.12922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 252 -a 1 + -t 1.12922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 252 -a 1 - -t 1.12922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 252 -a 1 h -t 1.12922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 252 -a 1 r -t 1.13008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 237 -a 1 + -t 1.13125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 281 -a 1 - -t 1.13125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 281 -a 1 h -t 1.13125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 281 -a 1 r -t 1.13211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 267 -a 1 + -t 1.13211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 267 -a 1 - -t 1.13211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 267 -a 1 h -t 1.13211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 267 -a 1 r -t 1.13297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 253 -a 1 + -t 1.13297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 253 -a 1 - -t 1.13297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 253 -a 1 h -t 1.13297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 253 -a 1 r -t 1.13383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 238 -a 1 + -t 1.135 -s 1 -d 2 -p cbr -e 210 -c 1 -i 282 -a 1 - -t 1.135 -s 1 -d 2 -p cbr -e 210 -c 1 -i 282 -a 1 h -t 1.135 -s 1 -d 2 -p cbr -e 210 -c 1 -i 282 -a 1 r -t 1.13586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 268 -a 1 + -t 1.13586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 268 -a 1 - -t 1.13586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 268 -a 1 h -t 1.13586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 268 -a 1 r -t 1.13672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 254 -a 1 + -t 1.13672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 254 -a 1 - -t 1.13672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 254 -a 1 h -t 1.13672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 254 -a 1 r -t 1.13758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 239 -a 1 + -t 1.13875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 283 -a 1 - -t 1.13875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 283 -a 1 h -t 1.13875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 283 -a 1 r -t 1.13961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 269 -a 1 + -t 1.13961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 269 -a 1 - -t 1.13961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 269 -a 1 h -t 1.13961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 269 -a 1 r -t 1.14047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 255 -a 1 + -t 1.14047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 255 -a 1 - -t 1.14047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 255 -a 1 h -t 1.14047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 255 -a 1 r -t 1.14133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 240 -a 1 + -t 1.1425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 284 -a 1 - -t 1.1425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 284 -a 1 h -t 1.1425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 284 -a 1 r -t 1.14336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 270 -a 1 + -t 1.14336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 270 -a 1 - -t 1.14336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 270 -a 1 h -t 1.14336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 270 -a 1 r -t 1.14422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 256 -a 1 + -t 1.14422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 256 -a 1 - -t 1.14422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 256 -a 1 h -t 1.14422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 256 -a 1 r -t 1.14508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 241 -a 1 + -t 1.14625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 285 -a 1 - -t 1.14625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 285 -a 1 h -t 1.14625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 285 -a 1 r -t 1.14711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 271 -a 1 + -t 1.14711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 271 -a 1 - -t 1.14711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 271 -a 1 h -t 1.14711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 271 -a 1 r -t 1.14797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 257 -a 1 + -t 1.14797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 257 -a 1 - -t 1.14797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 257 -a 1 h -t 1.14797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 257 -a 1 r -t 1.14883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 242 -a 1 + -t 1.15 -s 1 -d 2 -p cbr -e 210 -c 1 -i 286 -a 1 - -t 1.15 -s 1 -d 2 -p cbr -e 210 -c 1 -i 286 -a 1 h -t 1.15 -s 1 -d 2 -p cbr -e 210 -c 1 -i 286 -a 1 r -t 1.15086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 272 -a 1 + -t 1.15086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 272 -a 1 - -t 1.15086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 272 -a 1 h -t 1.15086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 272 -a 1 r -t 1.15172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 258 -a 1 + -t 1.15172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 258 -a 1 - -t 1.15172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 258 -a 1 h -t 1.15172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 258 -a 1 r -t 1.15258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 243 -a 1 + -t 1.15375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 287 -a 1 - -t 1.15375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 287 -a 1 h -t 1.15375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 287 -a 1 r -t 1.15461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 273 -a 1 + -t 1.15461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 273 -a 1 - -t 1.15461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 273 -a 1 h -t 1.15461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 273 -a 1 r -t 1.15547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 259 -a 1 + -t 1.15547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 259 -a 1 - -t 1.15547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 259 -a 1 h -t 1.15547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 259 -a 1 r -t 1.15633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 244 -a 1 r -t 1.15689 -s 2 -d 0 -p ack -e 40 -c 0 -i 247 -a 0 -S 0 -y {2 2} f -t 1.15689000000000131 -s 0 -d 4 -n cwnd_ -a tcp -v 2.000000 -o 1.000000 -T v f -t 1.15689000000000131 -s 0 -d 4 -n cwnd_ -a tcp -v 1.000000 -o 2.000000 -T v + -t 1.15689 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 288 -a 0 -S 0 -f 0 -m 0 -y {3 3} - -t 1.15689 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 288 -a 0 -S 0 -y {3 3} h -t 1.15689 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 288 -a 0 -S 0 -y {-1 -1} + -t 1.1575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 289 -a 1 - -t 1.1575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 289 -a 1 h -t 1.1575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 289 -a 1 r -t 1.15836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 274 -a 1 + -t 1.15836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 274 -a 1 - -t 1.15836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 274 -a 1 h -t 1.15836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 274 -a 1 r -t 1.15922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 260 -a 1 + -t 1.15922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 260 -a 1 - -t 1.15922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 260 -a 1 h -t 1.15922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 260 -a 1 r -t 1.16008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 245 -a 1 + -t 1.16125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 290 -a 1 - -t 1.16125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 290 -a 1 h -t 1.16125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 290 -a 1 r -t 1.16211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 275 -a 1 + -t 1.16211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 275 -a 1 - -t 1.16211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 275 -a 1 h -t 1.16211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 275 -a 1 r -t 1.16297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 261 -a 1 + -t 1.16297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 261 -a 1 - -t 1.16297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 261 -a 1 h -t 1.16297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 261 -a 1 r -t 1.16383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 246 -a 1 + -t 1.165 -s 1 -d 2 -p cbr -e 210 -c 1 -i 291 -a 1 - -t 1.165 -s 1 -d 2 -p cbr -e 210 -c 1 -i 291 -a 1 h -t 1.165 -s 1 -d 2 -p cbr -e 210 -c 1 -i 291 -a 1 r -t 1.16586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 276 -a 1 + -t 1.16586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 276 -a 1 - -t 1.16586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 276 -a 1 h -t 1.16586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 276 -a 1 r -t 1.16672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 262 -a 1 + -t 1.16672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 262 -a 1 - -t 1.16672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 262 -a 1 h -t 1.16672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 262 -a 1 r -t 1.16758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 248 -a 1 + -t 1.16875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 292 -a 1 - -t 1.16875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 292 -a 1 h -t 1.16875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 292 -a 1 r -t 1.16961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 277 -a 1 + -t 1.16961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 277 -a 1 - -t 1.16961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 277 -a 1 h -t 1.16961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 277 -a 1 r -t 1.17047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 263 -a 1 + -t 1.17047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 263 -a 1 - -t 1.17047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 263 -a 1 h -t 1.17047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 263 -a 1 r -t 1.17133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 249 -a 1 + -t 1.1725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 293 -a 1 - -t 1.1725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 293 -a 1 h -t 1.1725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 293 -a 1 r -t 1.17336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 278 -a 1 + -t 1.17336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 278 -a 1 - -t 1.17336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 278 -a 1 h -t 1.17336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 278 -a 1 r -t 1.17422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 264 -a 1 + -t 1.17422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 264 -a 1 - -t 1.17422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 264 -a 1 h -t 1.17422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 264 -a 1 r -t 1.17508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 250 -a 1 + -t 1.17625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 294 -a 1 - -t 1.17625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 294 -a 1 h -t 1.17625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 294 -a 1 r -t 1.17711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 279 -a 1 + -t 1.17711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 279 -a 1 - -t 1.17711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 279 -a 1 h -t 1.17711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 279 -a 1 r -t 1.17797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 265 -a 1 + -t 1.17797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 265 -a 1 - -t 1.17797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 265 -a 1 h -t 1.17797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 265 -a 1 r -t 1.17883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 251 -a 1 + -t 1.18 -s 1 -d 2 -p cbr -e 210 -c 1 -i 295 -a 1 - -t 1.18 -s 1 -d 2 -p cbr -e 210 -c 1 -i 295 -a 1 h -t 1.18 -s 1 -d 2 -p cbr -e 210 -c 1 -i 295 -a 1 r -t 1.18086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 280 -a 1 + -t 1.18086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 280 -a 1 - -t 1.18086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 280 -a 1 h -t 1.18086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 280 -a 1 r -t 1.18172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 266 -a 1 + -t 1.18172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 266 -a 1 - -t 1.18172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 266 -a 1 h -t 1.18172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 266 -a 1 r -t 1.18258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 252 -a 1 + -t 1.18375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 296 -a 1 - -t 1.18375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 296 -a 1 h -t 1.18375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 296 -a 1 r -t 1.18461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 281 -a 1 + -t 1.18461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 281 -a 1 - -t 1.18461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 281 -a 1 h -t 1.18461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 281 -a 1 r -t 1.18547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 267 -a 1 + -t 1.18547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 267 -a 1 - -t 1.18547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 267 -a 1 h -t 1.18547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 267 -a 1 r -t 1.18633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 253 -a 1 + -t 1.1875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 297 -a 1 - -t 1.1875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 297 -a 1 h -t 1.1875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 297 -a 1 r -t 1.18836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 282 -a 1 + -t 1.18836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 282 -a 1 - -t 1.18836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 282 -a 1 h -t 1.18836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 282 -a 1 r -t 1.18922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 268 -a 1 + -t 1.18922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 268 -a 1 - -t 1.18922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 268 -a 1 h -t 1.18922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 268 -a 1 r -t 1.19008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 254 -a 1 + -t 1.19125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 298 -a 1 - -t 1.19125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 298 -a 1 h -t 1.19125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 298 -a 1 r -t 1.19211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 283 -a 1 + -t 1.19211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 283 -a 1 - -t 1.19211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 283 -a 1 h -t 1.19211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 283 -a 1 r -t 1.19297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 269 -a 1 + -t 1.19297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 269 -a 1 - -t 1.19297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 269 -a 1 h -t 1.19297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 269 -a 1 r -t 1.19383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 255 -a 1 + -t 1.195 -s 1 -d 2 -p cbr -e 210 -c 1 -i 299 -a 1 - -t 1.195 -s 1 -d 2 -p cbr -e 210 -c 1 -i 299 -a 1 h -t 1.195 -s 1 -d 2 -p cbr -e 210 -c 1 -i 299 -a 1 r -t 1.19586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 284 -a 1 + -t 1.19586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 284 -a 1 - -t 1.19586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 284 -a 1 h -t 1.19586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 284 -a 1 r -t 1.19672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 270 -a 1 + -t 1.19672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 270 -a 1 - -t 1.19672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 270 -a 1 h -t 1.19672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 270 -a 1 r -t 1.19758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 256 -a 1 + -t 1.19875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 300 -a 1 - -t 1.19875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 300 -a 1 h -t 1.19875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 300 -a 1 r -t 1.19961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 285 -a 1 + -t 1.19961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 285 -a 1 - -t 1.19961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 285 -a 1 h -t 1.19961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 285 -a 1 r -t 1.20047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 271 -a 1 + -t 1.20047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 271 -a 1 - -t 1.20047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 271 -a 1 h -t 1.20047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 271 -a 1 r -t 1.20133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 257 -a 1 + -t 1.2025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 301 -a 1 - -t 1.2025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 301 -a 1 h -t 1.2025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 301 -a 1 r -t 1.20336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 286 -a 1 + -t 1.20336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 286 -a 1 - -t 1.20336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 286 -a 1 h -t 1.20336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 286 -a 1 r -t 1.20422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 272 -a 1 + -t 1.20422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 272 -a 1 - -t 1.20422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 272 -a 1 h -t 1.20422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 272 -a 1 r -t 1.20508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 258 -a 1 + -t 1.20625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 302 -a 1 - -t 1.20625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 302 -a 1 h -t 1.20625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 302 -a 1 r -t 1.20711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 287 -a 1 + -t 1.20711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 287 -a 1 - -t 1.20711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 287 -a 1 h -t 1.20711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 287 -a 1 r -t 1.20797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 273 -a 1 + -t 1.20797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 273 -a 1 - -t 1.20797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 273 -a 1 h -t 1.20797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 273 -a 1 r -t 1.20883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 259 -a 1 + -t 1.21 -s 1 -d 2 -p cbr -e 210 -c 1 -i 303 -a 1 - -t 1.21 -s 1 -d 2 -p cbr -e 210 -c 1 -i 303 -a 1 h -t 1.21 -s 1 -d 2 -p cbr -e 210 -c 1 -i 303 -a 1 r -t 1.21086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 289 -a 1 + -t 1.21086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 289 -a 1 - -t 1.21086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 289 -a 1 h -t 1.21086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 289 -a 1 r -t 1.21172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 274 -a 1 + -t 1.21172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 274 -a 1 - -t 1.21172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 274 -a 1 h -t 1.21172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 274 -a 1 r -t 1.21258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 260 -a 1 + -t 1.21375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 304 -a 1 - -t 1.21375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 304 -a 1 h -t 1.21375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 304 -a 1 r -t 1.21461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 290 -a 1 + -t 1.21461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 290 -a 1 - -t 1.21461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 290 -a 1 h -t 1.21461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 290 -a 1 r -t 1.21547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 275 -a 1 + -t 1.21547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 275 -a 1 - -t 1.21547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 275 -a 1 h -t 1.21547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 275 -a 1 r -t 1.21633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 261 -a 1 + -t 1.2175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 305 -a 1 - -t 1.2175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 305 -a 1 h -t 1.2175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 305 -a 1 r -t 1.21836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 291 -a 1 + -t 1.21836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 291 -a 1 - -t 1.21836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 291 -a 1 h -t 1.21836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 291 -a 1 r -t 1.21922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 276 -a 1 + -t 1.21922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 276 -a 1 - -t 1.21922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 276 -a 1 h -t 1.21922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 276 -a 1 r -t 1.22008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 262 -a 1 + -t 1.22125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 306 -a 1 - -t 1.22125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 306 -a 1 h -t 1.22125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 306 -a 1 r -t 1.22211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 292 -a 1 + -t 1.22211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 292 -a 1 - -t 1.22211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 292 -a 1 h -t 1.22211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 292 -a 1 r -t 1.22289 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 288 -a 0 -S 0 -y {3 3} + -t 1.22289 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 288 -a 0 -S 0 -y {3 3} r -t 1.22297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 277 -a 1 + -t 1.22297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 277 -a 1 - -t 1.22297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 277 -a 1 h -t 1.22297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 277 -a 1 r -t 1.22383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 263 -a 1 + -t 1.225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 307 -a 1 - -t 1.225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 307 -a 1 h -t 1.225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 307 -a 1 - -t 1.22547 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 288 -a 0 -S 0 -y {3 3} h -t 1.22547 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 288 -a 0 -S 0 -y {-1 -1} r -t 1.22586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 293 -a 1 + -t 1.22586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 293 -a 1 r -t 1.22672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 278 -a 1 + -t 1.22672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 278 -a 1 - -t 1.22672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 278 -a 1 h -t 1.22672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 278 -a 1 r -t 1.22758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 264 -a 1 + -t 1.22875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 308 -a 1 - -t 1.22875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 308 -a 1 h -t 1.22875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 308 -a 1 r -t 1.22961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 294 -a 1 + -t 1.22961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 294 -a 1 d -t 1.22961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 294 -a 1 r -t 1.23047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 279 -a 1 + -t 1.23047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 279 -a 1 - -t 1.23047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 279 -a 1 h -t 1.23047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 279 -a 1 r -t 1.23133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 265 -a 1 + -t 1.2325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 309 -a 1 - -t 1.2325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 309 -a 1 h -t 1.2325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 309 -a 1 r -t 1.23336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 295 -a 1 + -t 1.23336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 295 -a 1 d -t 1.23336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 295 -a 1 r -t 1.23422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 280 -a 1 + -t 1.23422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 280 -a 1 - -t 1.23422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 280 -a 1 h -t 1.23422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 280 -a 1 r -t 1.23508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 266 -a 1 + -t 1.23625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 310 -a 1 - -t 1.23625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 310 -a 1 h -t 1.23625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 310 -a 1 r -t 1.23711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 296 -a 1 + -t 1.23711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 296 -a 1 d -t 1.23711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 296 -a 1 r -t 1.23797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 281 -a 1 + -t 1.23797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 281 -a 1 - -t 1.23797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 281 -a 1 h -t 1.23797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 281 -a 1 r -t 1.23883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 267 -a 1 + -t 1.24 -s 1 -d 2 -p cbr -e 210 -c 1 -i 311 -a 1 - -t 1.24 -s 1 -d 2 -p cbr -e 210 -c 1 -i 311 -a 1 h -t 1.24 -s 1 -d 2 -p cbr -e 210 -c 1 -i 311 -a 1 r -t 1.24086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 297 -a 1 + -t 1.24086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 297 -a 1 d -t 1.24086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 297 -a 1 - -t 1.24147 -s 2 -d 3 -p cbr -e 210 -c 1 -i 293 -a 1 h -t 1.24147 -s 2 -d 3 -p cbr -e 210 -c 1 -i 293 -a 1 r -t 1.24172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 282 -a 1 + -t 1.24172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 282 -a 1 - -t 1.24172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 282 -a 1 h -t 1.24172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 282 -a 1 r -t 1.24258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 268 -a 1 + -t 1.24375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 312 -a 1 - -t 1.24375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 312 -a 1 h -t 1.24375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 312 -a 1 r -t 1.24461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 298 -a 1 + -t 1.24461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 298 -a 1 - -t 1.24483 -s 2 -d 3 -p cbr -e 210 -c 1 -i 298 -a 1 h -t 1.24483 -s 2 -d 3 -p cbr -e 210 -c 1 -i 298 -a 1 r -t 1.24547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 283 -a 1 + -t 1.24547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 283 -a 1 - -t 1.24547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 283 -a 1 h -t 1.24547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 283 -a 1 r -t 1.24633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 269 -a 1 + -t 1.2475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 313 -a 1 - -t 1.2475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 313 -a 1 h -t 1.2475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 313 -a 1 r -t 1.24836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 299 -a 1 + -t 1.24836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 299 -a 1 - -t 1.24836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 299 -a 1 h -t 1.24836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 299 -a 1 r -t 1.24922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 284 -a 1 + -t 1.24922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 284 -a 1 - -t 1.24922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 284 -a 1 h -t 1.24922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 284 -a 1 r -t 1.25008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 270 -a 1 + -t 1.25125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 314 -a 1 - -t 1.25125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 314 -a 1 h -t 1.25125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 314 -a 1 r -t 1.25211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 300 -a 1 + -t 1.25211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 300 -a 1 - -t 1.25211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 300 -a 1 h -t 1.25211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 300 -a 1 r -t 1.25297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 285 -a 1 + -t 1.25297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 285 -a 1 - -t 1.25297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 285 -a 1 h -t 1.25297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 285 -a 1 r -t 1.25383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 271 -a 1 + -t 1.255 -s 1 -d 2 -p cbr -e 210 -c 1 -i 315 -a 1 - -t 1.255 -s 1 -d 2 -p cbr -e 210 -c 1 -i 315 -a 1 h -t 1.255 -s 1 -d 2 -p cbr -e 210 -c 1 -i 315 -a 1 r -t 1.25586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 301 -a 1 + -t 1.25586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 301 -a 1 - -t 1.25586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 301 -a 1 h -t 1.25586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 301 -a 1 r -t 1.25672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 286 -a 1 + -t 1.25672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 286 -a 1 - -t 1.25672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 286 -a 1 h -t 1.25672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 286 -a 1 r -t 1.25758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 272 -a 1 + -t 1.25875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 316 -a 1 - -t 1.25875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 316 -a 1 h -t 1.25875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 316 -a 1 r -t 1.25961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 302 -a 1 + -t 1.25961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 302 -a 1 - -t 1.25961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 302 -a 1 h -t 1.25961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 302 -a 1 r -t 1.26047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 287 -a 1 + -t 1.26047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 287 -a 1 - -t 1.26047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 287 -a 1 h -t 1.26047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 287 -a 1 r -t 1.26133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 273 -a 1 + -t 1.2625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 317 -a 1 - -t 1.2625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 317 -a 1 h -t 1.2625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 317 -a 1 r -t 1.26336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 303 -a 1 + -t 1.26336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 303 -a 1 - -t 1.26336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 303 -a 1 h -t 1.26336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 303 -a 1 r -t 1.26422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 289 -a 1 + -t 1.26422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 289 -a 1 - -t 1.26422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 289 -a 1 h -t 1.26422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 289 -a 1 r -t 1.26508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 274 -a 1 + -t 1.26625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 318 -a 1 - -t 1.26625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 318 -a 1 h -t 1.26625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 318 -a 1 r -t 1.26711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 304 -a 1 + -t 1.26711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 304 -a 1 - -t 1.26711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 304 -a 1 h -t 1.26711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 304 -a 1 r -t 1.26797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 290 -a 1 + -t 1.26797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 290 -a 1 - -t 1.26797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 290 -a 1 h -t 1.26797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 290 -a 1 r -t 1.26883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 275 -a 1 + -t 1.27 -s 1 -d 2 -p cbr -e 210 -c 1 -i 319 -a 1 - -t 1.27 -s 1 -d 2 -p cbr -e 210 -c 1 -i 319 -a 1 h -t 1.27 -s 1 -d 2 -p cbr -e 210 -c 1 -i 319 -a 1 r -t 1.27086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 305 -a 1 + -t 1.27086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 305 -a 1 - -t 1.27086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 305 -a 1 h -t 1.27086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 305 -a 1 r -t 1.27172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 291 -a 1 + -t 1.27172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 291 -a 1 - -t 1.27172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 291 -a 1 h -t 1.27172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 291 -a 1 r -t 1.27258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 276 -a 1 + -t 1.27375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 320 -a 1 - -t 1.27375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 320 -a 1 h -t 1.27375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 320 -a 1 r -t 1.27461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 306 -a 1 + -t 1.27461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 306 -a 1 - -t 1.27461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 306 -a 1 h -t 1.27461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 306 -a 1 r -t 1.27547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 292 -a 1 + -t 1.27547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 292 -a 1 - -t 1.27547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 292 -a 1 h -t 1.27547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 292 -a 1 r -t 1.27633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 277 -a 1 + -t 1.2775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 321 -a 1 - -t 1.2775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 321 -a 1 h -t 1.2775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 321 -a 1 r -t 1.27836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 307 -a 1 + -t 1.27836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 307 -a 1 - -t 1.27836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 307 -a 1 h -t 1.27836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 307 -a 1 r -t 1.28008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 278 -a 1 + -t 1.28125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 322 -a 1 - -t 1.28125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 322 -a 1 h -t 1.28125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 322 -a 1 r -t 1.28211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 308 -a 1 + -t 1.28211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 308 -a 1 - -t 1.28211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 308 -a 1 h -t 1.28211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 308 -a 1 r -t 1.28383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 279 -a 1 + -t 1.285 -s 1 -d 2 -p cbr -e 210 -c 1 -i 323 -a 1 - -t 1.285 -s 1 -d 2 -p cbr -e 210 -c 1 -i 323 -a 1 h -t 1.285 -s 1 -d 2 -p cbr -e 210 -c 1 -i 323 -a 1 r -t 1.28586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 309 -a 1 + -t 1.28586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 309 -a 1 - -t 1.28586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 309 -a 1 h -t 1.28586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 309 -a 1 r -t 1.28758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 280 -a 1 + -t 1.28875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 324 -a 1 - -t 1.28875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 324 -a 1 h -t 1.28875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 324 -a 1 r -t 1.28961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 310 -a 1 + -t 1.28961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 310 -a 1 - -t 1.28961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 310 -a 1 h -t 1.28961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 310 -a 1 r -t 1.29133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 281 -a 1 r -t 1.29147 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 288 -a 0 -S 0 -y {3 3} + -t 1.29147 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 288 -a 0 -S 0 -y {3 3} - -t 1.29147 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 288 -a 0 -S 0 -y {3 3} h -t 1.29147 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 288 -a 0 -S 0 -y {-1 -1} + -t 1.2925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 325 -a 1 - -t 1.2925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 325 -a 1 h -t 1.2925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 325 -a 1 r -t 1.29336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 311 -a 1 + -t 1.29336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 311 -a 1 - -t 1.29336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 311 -a 1 h -t 1.29336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 311 -a 1 r -t 1.29483 -s 2 -d 3 -p cbr -e 210 -c 1 -i 293 -a 1 + -t 1.29483 -s 3 -d 5 -p cbr -e 210 -c 1 -i 293 -a 1 - -t 1.29483 -s 3 -d 5 -p cbr -e 210 -c 1 -i 293 -a 1 h -t 1.29483 -s 3 -d 5 -p cbr -e 210 -c 1 -i 293 -a 1 r -t 1.29508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 282 -a 1 + -t 1.29625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 326 -a 1 - -t 1.29625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 326 -a 1 h -t 1.29625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 326 -a 1 r -t 1.29711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 312 -a 1 + -t 1.29711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 312 -a 1 - -t 1.29711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 312 -a 1 h -t 1.29711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 312 -a 1 r -t 1.29819 -s 2 -d 3 -p cbr -e 210 -c 1 -i 298 -a 1 + -t 1.29819 -s 3 -d 5 -p cbr -e 210 -c 1 -i 298 -a 1 - -t 1.29819 -s 3 -d 5 -p cbr -e 210 -c 1 -i 298 -a 1 h -t 1.29819 -s 3 -d 5 -p cbr -e 210 -c 1 -i 298 -a 1 r -t 1.29883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 283 -a 1 + -t 1.3 -s 1 -d 2 -p cbr -e 210 -c 1 -i 327 -a 1 - -t 1.3 -s 1 -d 2 -p cbr -e 210 -c 1 -i 327 -a 1 h -t 1.3 -s 1 -d 2 -p cbr -e 210 -c 1 -i 327 -a 1 r -t 1.30086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 313 -a 1 + -t 1.30086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 313 -a 1 - -t 1.30086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 313 -a 1 h -t 1.30086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 313 -a 1 r -t 1.30172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 299 -a 1 + -t 1.30172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 299 -a 1 - -t 1.30172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 299 -a 1 h -t 1.30172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 299 -a 1 r -t 1.30258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 284 -a 1 + -t 1.30375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 328 -a 1 - -t 1.30375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 328 -a 1 h -t 1.30375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 328 -a 1 r -t 1.30461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 314 -a 1 + -t 1.30461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 314 -a 1 - -t 1.30461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 314 -a 1 h -t 1.30461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 314 -a 1 r -t 1.30547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 300 -a 1 + -t 1.30547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 300 -a 1 - -t 1.30547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 300 -a 1 h -t 1.30547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 300 -a 1 r -t 1.30633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 285 -a 1 + -t 1.3075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 329 -a 1 - -t 1.3075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 329 -a 1 h -t 1.3075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 329 -a 1 r -t 1.30836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 315 -a 1 + -t 1.30836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 315 -a 1 - -t 1.30836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 315 -a 1 h -t 1.30836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 315 -a 1 r -t 1.30922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 301 -a 1 + -t 1.30922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 301 -a 1 - -t 1.30922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 301 -a 1 h -t 1.30922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 301 -a 1 r -t 1.31008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 286 -a 1 + -t 1.31125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 330 -a 1 - -t 1.31125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 330 -a 1 h -t 1.31125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 330 -a 1 r -t 1.31211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 316 -a 1 + -t 1.31211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 316 -a 1 - -t 1.31211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 316 -a 1 h -t 1.31211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 316 -a 1 r -t 1.31297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 302 -a 1 + -t 1.31297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 302 -a 1 - -t 1.31297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 302 -a 1 h -t 1.31297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 302 -a 1 r -t 1.31383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 287 -a 1 + -t 1.315 -s 1 -d 2 -p cbr -e 210 -c 1 -i 331 -a 1 - -t 1.315 -s 1 -d 2 -p cbr -e 210 -c 1 -i 331 -a 1 h -t 1.315 -s 1 -d 2 -p cbr -e 210 -c 1 -i 331 -a 1 r -t 1.31586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 317 -a 1 + -t 1.31586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 317 -a 1 - -t 1.31586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 317 -a 1 h -t 1.31586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 317 -a 1 r -t 1.31672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 303 -a 1 + -t 1.31672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 303 -a 1 - -t 1.31672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 303 -a 1 h -t 1.31672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 303 -a 1 r -t 1.31758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 289 -a 1 + -t 1.31875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 332 -a 1 - -t 1.31875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 332 -a 1 h -t 1.31875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 332 -a 1 r -t 1.31961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 318 -a 1 + -t 1.31961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 318 -a 1 - -t 1.31961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 318 -a 1 h -t 1.31961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 318 -a 1 r -t 1.32047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 304 -a 1 + -t 1.32047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 304 -a 1 - -t 1.32047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 304 -a 1 h -t 1.32047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 304 -a 1 r -t 1.32133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 290 -a 1 + -t 1.3225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 333 -a 1 - -t 1.3225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 333 -a 1 h -t 1.3225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 333 -a 1 r -t 1.32336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 319 -a 1 + -t 1.32336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 319 -a 1 - -t 1.32336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 319 -a 1 h -t 1.32336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 319 -a 1 r -t 1.32422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 305 -a 1 + -t 1.32422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 305 -a 1 - -t 1.32422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 305 -a 1 h -t 1.32422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 305 -a 1 r -t 1.32508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 291 -a 1 + -t 1.32625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 334 -a 1 - -t 1.32625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 334 -a 1 h -t 1.32625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 334 -a 1 r -t 1.32711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 320 -a 1 + -t 1.32711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 320 -a 1 - -t 1.32711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 320 -a 1 h -t 1.32711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 320 -a 1 r -t 1.32797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 306 -a 1 + -t 1.32797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 306 -a 1 - -t 1.32797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 306 -a 1 h -t 1.32797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 306 -a 1 r -t 1.32883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 292 -a 1 + -t 1.33 -s 1 -d 2 -p cbr -e 210 -c 1 -i 335 -a 1 - -t 1.33 -s 1 -d 2 -p cbr -e 210 -c 1 -i 335 -a 1 h -t 1.33 -s 1 -d 2 -p cbr -e 210 -c 1 -i 335 -a 1 r -t 1.33086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 321 -a 1 + -t 1.33086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 321 -a 1 - -t 1.33086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 321 -a 1 h -t 1.33086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 321 -a 1 r -t 1.33172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 307 -a 1 + -t 1.33172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 307 -a 1 - -t 1.33172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 307 -a 1 h -t 1.33172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 307 -a 1 + -t 1.33375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 336 -a 1 - -t 1.33375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 336 -a 1 h -t 1.33375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 336 -a 1 r -t 1.33461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 322 -a 1 + -t 1.33461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 322 -a 1 - -t 1.33461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 322 -a 1 h -t 1.33461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 322 -a 1 r -t 1.33547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 308 -a 1 + -t 1.33547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 308 -a 1 - -t 1.33547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 308 -a 1 h -t 1.33547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 308 -a 1 + -t 1.3375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 337 -a 1 - -t 1.3375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 337 -a 1 h -t 1.3375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 337 -a 1 r -t 1.33836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 323 -a 1 + -t 1.33836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 323 -a 1 - -t 1.33836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 323 -a 1 h -t 1.33836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 323 -a 1 r -t 1.33922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 309 -a 1 + -t 1.33922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 309 -a 1 - -t 1.33922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 309 -a 1 h -t 1.33922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 309 -a 1 v -t 1.3400000000000001 sim_annotation 1.3400000000000001 8 Timout -> Retransmit Packet_1 + -t 1.34125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 338 -a 1 - -t 1.34125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 338 -a 1 h -t 1.34125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 338 -a 1 r -t 1.34211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 324 -a 1 + -t 1.34211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 324 -a 1 - -t 1.34211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 324 -a 1 h -t 1.34211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 324 -a 1 r -t 1.34297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 310 -a 1 + -t 1.34297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 310 -a 1 - -t 1.34297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 310 -a 1 h -t 1.34297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 310 -a 1 + -t 1.345 -s 1 -d 2 -p cbr -e 210 -c 1 -i 339 -a 1 - -t 1.345 -s 1 -d 2 -p cbr -e 210 -c 1 -i 339 -a 1 h -t 1.345 -s 1 -d 2 -p cbr -e 210 -c 1 -i 339 -a 1 r -t 1.34586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 325 -a 1 + -t 1.34586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 325 -a 1 - -t 1.34586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 325 -a 1 h -t 1.34586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 325 -a 1 r -t 1.34672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 311 -a 1 + -t 1.34672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 311 -a 1 - -t 1.34672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 311 -a 1 h -t 1.34672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 311 -a 1 r -t 1.34819 -s 3 -d 5 -p cbr -e 210 -c 1 -i 293 -a 1 + -t 1.34875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 340 -a 1 - -t 1.34875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 340 -a 1 h -t 1.34875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 340 -a 1 r -t 1.34961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 326 -a 1 + -t 1.34961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 326 -a 1 - -t 1.34961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 326 -a 1 h -t 1.34961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 326 -a 1 r -t 1.35047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 312 -a 1 + -t 1.35047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 312 -a 1 - -t 1.35047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 312 -a 1 h -t 1.35047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 312 -a 1 r -t 1.35155 -s 3 -d 5 -p cbr -e 210 -c 1 -i 298 -a 1 + -t 1.3525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 341 -a 1 - -t 1.3525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 341 -a 1 h -t 1.3525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 341 -a 1 r -t 1.35336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 327 -a 1 + -t 1.35336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 327 -a 1 - -t 1.35336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 327 -a 1 h -t 1.35336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 327 -a 1 r -t 1.35422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 313 -a 1 + -t 1.35422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 313 -a 1 - -t 1.35422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 313 -a 1 h -t 1.35422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 313 -a 1 r -t 1.35508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 299 -a 1 + -t 1.35625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 342 -a 1 - -t 1.35625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 342 -a 1 h -t 1.35625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 342 -a 1 r -t 1.35711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 328 -a 1 + -t 1.35711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 328 -a 1 - -t 1.35711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 328 -a 1 h -t 1.35711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 328 -a 1 r -t 1.35747 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 288 -a 0 -S 0 -y {3 3} + -t 1.35747 -s 4 -d 3 -p ack -e 40 -c 0 -i 343 -a 0 -S 0 -y {3 3} - -t 1.35747 -s 4 -d 3 -p ack -e 40 -c 0 -i 343 -a 0 -S 0 -y {3 3} h -t 1.35747 -s 4 -d 3 -p ack -e 40 -c 0 -i 343 -a 0 -S 0 -y {-1 -1} r -t 1.35797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 314 -a 1 + -t 1.35797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 314 -a 1 - -t 1.35797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 314 -a 1 h -t 1.35797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 314 -a 1 r -t 1.35883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 300 -a 1 + -t 1.36 -s 1 -d 2 -p cbr -e 210 -c 1 -i 344 -a 1 - -t 1.36 -s 1 -d 2 -p cbr -e 210 -c 1 -i 344 -a 1 h -t 1.36 -s 1 -d 2 -p cbr -e 210 -c 1 -i 344 -a 1 r -t 1.36086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 329 -a 1 + -t 1.36086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 329 -a 1 - -t 1.36086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 329 -a 1 h -t 1.36086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 329 -a 1 r -t 1.36172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 315 -a 1 + -t 1.36172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 315 -a 1 - -t 1.36172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 315 -a 1 h -t 1.36172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 315 -a 1 r -t 1.36258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 301 -a 1 + -t 1.36375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 345 -a 1 - -t 1.36375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 345 -a 1 h -t 1.36375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 345 -a 1 r -t 1.36461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 330 -a 1 + -t 1.36461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 330 -a 1 - -t 1.36461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 330 -a 1 h -t 1.36461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 330 -a 1 r -t 1.36547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 316 -a 1 + -t 1.36547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 316 -a 1 - -t 1.36547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 316 -a 1 h -t 1.36547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 316 -a 1 r -t 1.36633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 302 -a 1 + -t 1.3675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 346 -a 1 - -t 1.3675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 346 -a 1 h -t 1.3675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 346 -a 1 r -t 1.36836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 331 -a 1 + -t 1.36836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 331 -a 1 - -t 1.36836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 331 -a 1 h -t 1.36836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 331 -a 1 r -t 1.36922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 317 -a 1 + -t 1.36922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 317 -a 1 - -t 1.36922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 317 -a 1 h -t 1.36922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 317 -a 1 r -t 1.37008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 303 -a 1 + -t 1.37125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 347 -a 1 - -t 1.37125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 347 -a 1 h -t 1.37125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 347 -a 1 r -t 1.37211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 332 -a 1 + -t 1.37211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 332 -a 1 - -t 1.37211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 332 -a 1 h -t 1.37211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 332 -a 1 r -t 1.37297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 318 -a 1 + -t 1.37297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 318 -a 1 - -t 1.37297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 318 -a 1 h -t 1.37297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 318 -a 1 r -t 1.37383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 304 -a 1 + -t 1.375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 348 -a 1 - -t 1.375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 348 -a 1 h -t 1.375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 348 -a 1 r -t 1.37586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 333 -a 1 + -t 1.37586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 333 -a 1 - -t 1.37586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 333 -a 1 h -t 1.37586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 333 -a 1 r -t 1.37672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 319 -a 1 + -t 1.37672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 319 -a 1 - -t 1.37672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 319 -a 1 h -t 1.37672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 319 -a 1 r -t 1.37758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 305 -a 1 + -t 1.37875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 349 -a 1 - -t 1.37875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 349 -a 1 h -t 1.37875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 349 -a 1 r -t 1.37961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 334 -a 1 + -t 1.37961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 334 -a 1 - -t 1.37961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 334 -a 1 h -t 1.37961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 334 -a 1 r -t 1.38047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 320 -a 1 + -t 1.38047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 320 -a 1 - -t 1.38047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 320 -a 1 h -t 1.38047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 320 -a 1 r -t 1.38133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 306 -a 1 + -t 1.3825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 350 -a 1 - -t 1.3825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 350 -a 1 h -t 1.3825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 350 -a 1 r -t 1.38336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 335 -a 1 + -t 1.38336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 335 -a 1 - -t 1.38336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 335 -a 1 h -t 1.38336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 335 -a 1 r -t 1.38422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 321 -a 1 + -t 1.38422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 321 -a 1 - -t 1.38422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 321 -a 1 h -t 1.38422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 321 -a 1 r -t 1.38508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 307 -a 1 + -t 1.38625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 351 -a 1 - -t 1.38625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 351 -a 1 h -t 1.38625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 351 -a 1 r -t 1.38711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 336 -a 1 + -t 1.38711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 336 -a 1 - -t 1.38711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 336 -a 1 h -t 1.38711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 336 -a 1 r -t 1.38797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 322 -a 1 + -t 1.38797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 322 -a 1 - -t 1.38797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 322 -a 1 h -t 1.38797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 322 -a 1 r -t 1.38883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 308 -a 1 + -t 1.39 -s 1 -d 2 -p cbr -e 210 -c 1 -i 352 -a 1 - -t 1.39 -s 1 -d 2 -p cbr -e 210 -c 1 -i 352 -a 1 h -t 1.39 -s 1 -d 2 -p cbr -e 210 -c 1 -i 352 -a 1 r -t 1.39086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 337 -a 1 + -t 1.39086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 337 -a 1 - -t 1.39086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 337 -a 1 h -t 1.39086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 337 -a 1 r -t 1.39172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 323 -a 1 + -t 1.39172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 323 -a 1 - -t 1.39172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 323 -a 1 h -t 1.39172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 323 -a 1 r -t 1.39258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 309 -a 1 + -t 1.39375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 353 -a 1 - -t 1.39375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 353 -a 1 h -t 1.39375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 353 -a 1 r -t 1.39461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 338 -a 1 + -t 1.39461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 338 -a 1 - -t 1.39461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 338 -a 1 h -t 1.39461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 338 -a 1 r -t 1.39547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 324 -a 1 + -t 1.39547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 324 -a 1 - -t 1.39547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 324 -a 1 h -t 1.39547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 324 -a 1 r -t 1.39633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 310 -a 1 + -t 1.3975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 354 -a 1 - -t 1.3975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 354 -a 1 h -t 1.3975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 354 -a 1 r -t 1.39836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 339 -a 1 + -t 1.39836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 339 -a 1 - -t 1.39836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 339 -a 1 h -t 1.39836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 339 -a 1 r -t 1.39922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 325 -a 1 + -t 1.39922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 325 -a 1 - -t 1.39922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 325 -a 1 h -t 1.39922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 325 -a 1 r -t 1.40008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 311 -a 1 + -t 1.40125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 355 -a 1 - -t 1.40125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 355 -a 1 h -t 1.40125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 355 -a 1 r -t 1.40211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 340 -a 1 + -t 1.40211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 340 -a 1 - -t 1.40211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 340 -a 1 h -t 1.40211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 340 -a 1 r -t 1.40297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 326 -a 1 + -t 1.40297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 326 -a 1 - -t 1.40297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 326 -a 1 h -t 1.40297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 326 -a 1 r -t 1.40383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 312 -a 1 + -t 1.405 -s 1 -d 2 -p cbr -e 210 -c 1 -i 356 -a 1 - -t 1.405 -s 1 -d 2 -p cbr -e 210 -c 1 -i 356 -a 1 h -t 1.405 -s 1 -d 2 -p cbr -e 210 -c 1 -i 356 -a 1 r -t 1.40586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 341 -a 1 + -t 1.40586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 341 -a 1 - -t 1.40586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 341 -a 1 h -t 1.40586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 341 -a 1 r -t 1.40672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 327 -a 1 + -t 1.40672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 327 -a 1 - -t 1.40672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 327 -a 1 h -t 1.40672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 327 -a 1 r -t 1.40758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 313 -a 1 r -t 1.40811 -s 4 -d 3 -p ack -e 40 -c 0 -i 343 -a 0 -S 0 -y {3 3} + -t 1.40811 -s 3 -d 2 -p ack -e 40 -c 0 -i 343 -a 0 -S 0 -y {3 3} - -t 1.40811 -s 3 -d 2 -p ack -e 40 -c 0 -i 343 -a 0 -S 0 -y {3 3} h -t 1.40811 -s 3 -d 2 -p ack -e 40 -c 0 -i 343 -a 0 -S 0 -y {-1 -1} + -t 1.40875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 357 -a 1 - -t 1.40875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 357 -a 1 h -t 1.40875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 357 -a 1 r -t 1.40961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 342 -a 1 + -t 1.40961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 342 -a 1 - -t 1.40961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 342 -a 1 h -t 1.40961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 342 -a 1 r -t 1.41047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 328 -a 1 + -t 1.41047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 328 -a 1 - -t 1.41047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 328 -a 1 h -t 1.41047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 328 -a 1 r -t 1.41133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 314 -a 1 + -t 1.4125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 358 -a 1 - -t 1.4125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 358 -a 1 h -t 1.4125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 358 -a 1 r -t 1.41336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 344 -a 1 + -t 1.41336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 344 -a 1 - -t 1.41336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 344 -a 1 h -t 1.41336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 344 -a 1 r -t 1.41422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 329 -a 1 + -t 1.41422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 329 -a 1 - -t 1.41422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 329 -a 1 h -t 1.41422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 329 -a 1 r -t 1.41508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 315 -a 1 + -t 1.41625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 359 -a 1 - -t 1.41625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 359 -a 1 h -t 1.41625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 359 -a 1 r -t 1.41711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 345 -a 1 + -t 1.41711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 345 -a 1 - -t 1.41711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 345 -a 1 h -t 1.41711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 345 -a 1 r -t 1.41797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 330 -a 1 + -t 1.41797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 330 -a 1 - -t 1.41797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 330 -a 1 h -t 1.41797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 330 -a 1 r -t 1.41883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 316 -a 1 + -t 1.42 -s 1 -d 2 -p cbr -e 210 -c 1 -i 360 -a 1 - -t 1.42 -s 1 -d 2 -p cbr -e 210 -c 1 -i 360 -a 1 h -t 1.42 -s 1 -d 2 -p cbr -e 210 -c 1 -i 360 -a 1 r -t 1.42086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 346 -a 1 + -t 1.42086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 346 -a 1 - -t 1.42086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 346 -a 1 h -t 1.42086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 346 -a 1 r -t 1.42172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 331 -a 1 + -t 1.42172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 331 -a 1 - -t 1.42172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 331 -a 1 h -t 1.42172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 331 -a 1 r -t 1.42258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 317 -a 1 + -t 1.42375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 361 -a 1 - -t 1.42375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 361 -a 1 h -t 1.42375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 361 -a 1 r -t 1.42461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 347 -a 1 + -t 1.42461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 347 -a 1 - -t 1.42461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 347 -a 1 h -t 1.42461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 347 -a 1 r -t 1.42547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 332 -a 1 + -t 1.42547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 332 -a 1 - -t 1.42547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 332 -a 1 h -t 1.42547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 332 -a 1 r -t 1.42633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 318 -a 1 + -t 1.4275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 362 -a 1 - -t 1.4275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 362 -a 1 h -t 1.4275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 362 -a 1 r -t 1.42836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 348 -a 1 + -t 1.42836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 348 -a 1 - -t 1.42836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 348 -a 1 h -t 1.42836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 348 -a 1 r -t 1.42922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 333 -a 1 + -t 1.42922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 333 -a 1 - -t 1.42922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 333 -a 1 h -t 1.42922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 333 -a 1 r -t 1.43008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 319 -a 1 + -t 1.43125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 363 -a 1 - -t 1.43125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 363 -a 1 h -t 1.43125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 363 -a 1 r -t 1.43211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 349 -a 1 + -t 1.43211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 349 -a 1 - -t 1.43211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 349 -a 1 h -t 1.43211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 349 -a 1 r -t 1.43297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 334 -a 1 + -t 1.43297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 334 -a 1 - -t 1.43297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 334 -a 1 h -t 1.43297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 334 -a 1 r -t 1.43383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 320 -a 1 + -t 1.435 -s 1 -d 2 -p cbr -e 210 -c 1 -i 364 -a 1 - -t 1.435 -s 1 -d 2 -p cbr -e 210 -c 1 -i 364 -a 1 h -t 1.435 -s 1 -d 2 -p cbr -e 210 -c 1 -i 364 -a 1 r -t 1.43586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 350 -a 1 + -t 1.43586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 350 -a 1 - -t 1.43586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 350 -a 1 h -t 1.43586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 350 -a 1 r -t 1.43672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 335 -a 1 + -t 1.43672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 335 -a 1 - -t 1.43672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 335 -a 1 h -t 1.43672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 335 -a 1 r -t 1.43758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 321 -a 1 + -t 1.43875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 365 -a 1 - -t 1.43875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 365 -a 1 h -t 1.43875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 365 -a 1 r -t 1.43961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 351 -a 1 + -t 1.43961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 351 -a 1 - -t 1.43961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 351 -a 1 h -t 1.43961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 351 -a 1 r -t 1.44047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 336 -a 1 + -t 1.44047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 336 -a 1 - -t 1.44047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 336 -a 1 h -t 1.44047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 336 -a 1 r -t 1.44133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 322 -a 1 + -t 1.4425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 366 -a 1 - -t 1.4425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 366 -a 1 h -t 1.4425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 366 -a 1 r -t 1.44336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 352 -a 1 + -t 1.44336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 352 -a 1 - -t 1.44336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 352 -a 1 h -t 1.44336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 352 -a 1 r -t 1.44422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 337 -a 1 + -t 1.44422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 337 -a 1 - -t 1.44422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 337 -a 1 h -t 1.44422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 337 -a 1 r -t 1.44508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 323 -a 1 + -t 1.44625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 367 -a 1 - -t 1.44625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 367 -a 1 h -t 1.44625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 367 -a 1 r -t 1.44711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 353 -a 1 + -t 1.44711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 353 -a 1 - -t 1.44711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 353 -a 1 h -t 1.44711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 353 -a 1 r -t 1.44797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 338 -a 1 + -t 1.44797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 338 -a 1 - -t 1.44797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 338 -a 1 h -t 1.44797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 338 -a 1 r -t 1.44883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 324 -a 1 + -t 1.45 -s 1 -d 2 -p cbr -e 210 -c 1 -i 368 -a 1 - -t 1.45 -s 1 -d 2 -p cbr -e 210 -c 1 -i 368 -a 1 h -t 1.45 -s 1 -d 2 -p cbr -e 210 -c 1 -i 368 -a 1 r -t 1.45086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 354 -a 1 + -t 1.45086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 354 -a 1 - -t 1.45086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 354 -a 1 h -t 1.45086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 354 -a 1 r -t 1.45172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 339 -a 1 + -t 1.45172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 339 -a 1 - -t 1.45172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 339 -a 1 h -t 1.45172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 339 -a 1 r -t 1.45258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 325 -a 1 + -t 1.45375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 369 -a 1 - -t 1.45375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 369 -a 1 h -t 1.45375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 369 -a 1 r -t 1.45461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 355 -a 1 + -t 1.45461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 355 -a 1 - -t 1.45461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 355 -a 1 h -t 1.45461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 355 -a 1 r -t 1.45547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 340 -a 1 + -t 1.45547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 340 -a 1 - -t 1.45547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 340 -a 1 h -t 1.45547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 340 -a 1 r -t 1.45633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 326 -a 1 + -t 1.4575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 370 -a 1 - -t 1.4575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 370 -a 1 h -t 1.4575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 370 -a 1 r -t 1.45836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 356 -a 1 + -t 1.45836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 356 -a 1 - -t 1.45836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 356 -a 1 h -t 1.45836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 356 -a 1 r -t 1.45875 -s 3 -d 2 -p ack -e 40 -c 0 -i 343 -a 0 -S 0 -y {3 3} + -t 1.45875 -s 2 -d 0 -p ack -e 40 -c 0 -i 343 -a 0 -S 0 -y {3 3} - -t 1.45875 -s 2 -d 0 -p ack -e 40 -c 0 -i 343 -a 0 -S 0 -f 0 -m 1 -y {3 3} h -t 1.45875 -s 2 -d 0 -p ack -e 40 -c 0 -i 343 -a 0 -S 0 -y {-1 -1} r -t 1.45922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 341 -a 1 + -t 1.45922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 341 -a 1 - -t 1.45922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 341 -a 1 h -t 1.45922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 341 -a 1 r -t 1.46008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 327 -a 1 + -t 1.46125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 371 -a 1 - -t 1.46125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 371 -a 1 h -t 1.46125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 371 -a 1 r -t 1.46211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 357 -a 1 + -t 1.46211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 357 -a 1 - -t 1.46211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 357 -a 1 h -t 1.46211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 357 -a 1 r -t 1.46297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 342 -a 1 + -t 1.46297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 342 -a 1 - -t 1.46297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 342 -a 1 h -t 1.46297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 342 -a 1 r -t 1.46383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 328 -a 1 + -t 1.465 -s 1 -d 2 -p cbr -e 210 -c 1 -i 372 -a 1 - -t 1.465 -s 1 -d 2 -p cbr -e 210 -c 1 -i 372 -a 1 h -t 1.465 -s 1 -d 2 -p cbr -e 210 -c 1 -i 372 -a 1 r -t 1.46586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 358 -a 1 + -t 1.46586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 358 -a 1 - -t 1.46586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 358 -a 1 h -t 1.46586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 358 -a 1 r -t 1.46672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 344 -a 1 + -t 1.46672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 344 -a 1 - -t 1.46672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 344 -a 1 h -t 1.46672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 344 -a 1 r -t 1.46758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 329 -a 1 + -t 1.46875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 373 -a 1 - -t 1.46875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 373 -a 1 h -t 1.46875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 373 -a 1 r -t 1.46961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 359 -a 1 + -t 1.46961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 359 -a 1 - -t 1.46961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 359 -a 1 h -t 1.46961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 359 -a 1 r -t 1.47047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 345 -a 1 + -t 1.47047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 345 -a 1 - -t 1.47047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 345 -a 1 h -t 1.47047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 345 -a 1 r -t 1.47133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 330 -a 1 + -t 1.4725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 374 -a 1 - -t 1.4725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 374 -a 1 h -t 1.4725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 374 -a 1 r -t 1.47336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 360 -a 1 + -t 1.47336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 360 -a 1 - -t 1.47336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 360 -a 1 h -t 1.47336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 360 -a 1 r -t 1.47422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 346 -a 1 + -t 1.47422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 346 -a 1 - -t 1.47422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 346 -a 1 h -t 1.47422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 346 -a 1 r -t 1.47508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 331 -a 1 + -t 1.47625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 375 -a 1 - -t 1.47625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 375 -a 1 h -t 1.47625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 375 -a 1 r -t 1.47711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 361 -a 1 + -t 1.47711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 361 -a 1 - -t 1.47711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 361 -a 1 h -t 1.47711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 361 -a 1 r -t 1.47797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 347 -a 1 + -t 1.47797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 347 -a 1 - -t 1.47797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 347 -a 1 h -t 1.47797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 347 -a 1 r -t 1.47883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 332 -a 1 + -t 1.48 -s 1 -d 2 -p cbr -e 210 -c 1 -i 376 -a 1 - -t 1.48 -s 1 -d 2 -p cbr -e 210 -c 1 -i 376 -a 1 h -t 1.48 -s 1 -d 2 -p cbr -e 210 -c 1 -i 376 -a 1 r -t 1.48086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 362 -a 1 + -t 1.48086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 362 -a 1 - -t 1.48086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 362 -a 1 h -t 1.48086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 362 -a 1 r -t 1.48172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 348 -a 1 + -t 1.48172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 348 -a 1 - -t 1.48172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 348 -a 1 h -t 1.48172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 348 -a 1 r -t 1.48258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 333 -a 1 + -t 1.48375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 377 -a 1 - -t 1.48375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 377 -a 1 h -t 1.48375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 377 -a 1 r -t 1.48461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 363 -a 1 + -t 1.48461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 363 -a 1 - -t 1.48461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 363 -a 1 h -t 1.48461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 363 -a 1 r -t 1.48547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 349 -a 1 + -t 1.48547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 349 -a 1 - -t 1.48547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 349 -a 1 h -t 1.48547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 349 -a 1 r -t 1.48633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 334 -a 1 + -t 1.4875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 378 -a 1 - -t 1.4875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 378 -a 1 h -t 1.4875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 378 -a 1 r -t 1.48836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 364 -a 1 + -t 1.48836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 364 -a 1 - -t 1.48836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 364 -a 1 h -t 1.48836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 364 -a 1 r -t 1.48922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 350 -a 1 + -t 1.48922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 350 -a 1 - -t 1.48922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 350 -a 1 h -t 1.48922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 350 -a 1 r -t 1.49008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 335 -a 1 + -t 1.49125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 379 -a 1 - -t 1.49125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 379 -a 1 h -t 1.49125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 379 -a 1 r -t 1.49211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 365 -a 1 + -t 1.49211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 365 -a 1 - -t 1.49211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 365 -a 1 h -t 1.49211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 365 -a 1 r -t 1.49297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 351 -a 1 + -t 1.49297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 351 -a 1 - -t 1.49297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 351 -a 1 h -t 1.49297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 351 -a 1 r -t 1.49383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 336 -a 1 + -t 1.495 -s 1 -d 2 -p cbr -e 210 -c 1 -i 380 -a 1 - -t 1.495 -s 1 -d 2 -p cbr -e 210 -c 1 -i 380 -a 1 h -t 1.495 -s 1 -d 2 -p cbr -e 210 -c 1 -i 380 -a 1 r -t 1.49586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 366 -a 1 + -t 1.49586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 366 -a 1 - -t 1.49586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 366 -a 1 h -t 1.49586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 366 -a 1 r -t 1.49672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 352 -a 1 + -t 1.49672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 352 -a 1 - -t 1.49672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 352 -a 1 h -t 1.49672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 352 -a 1 r -t 1.49758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 337 -a 1 + -t 1.49875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 381 -a 1 - -t 1.49875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 381 -a 1 h -t 1.49875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 381 -a 1 r -t 1.49961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 367 -a 1 + -t 1.49961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 367 -a 1 - -t 1.49961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 367 -a 1 h -t 1.49961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 367 -a 1 r -t 1.50047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 353 -a 1 + -t 1.50047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 353 -a 1 - -t 1.50047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 353 -a 1 h -t 1.50047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 353 -a 1 r -t 1.50133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 338 -a 1 + -t 1.5025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 382 -a 1 - -t 1.5025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 382 -a 1 h -t 1.5025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 382 -a 1 r -t 1.50336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 368 -a 1 + -t 1.50336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 368 -a 1 - -t 1.50336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 368 -a 1 h -t 1.50336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 368 -a 1 r -t 1.50422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 354 -a 1 + -t 1.50422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 354 -a 1 - -t 1.50422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 354 -a 1 h -t 1.50422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 354 -a 1 r -t 1.50508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 339 -a 1 + -t 1.50625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 383 -a 1 - -t 1.50625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 383 -a 1 h -t 1.50625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 383 -a 1 r -t 1.50711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 369 -a 1 + -t 1.50711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 369 -a 1 - -t 1.50711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 369 -a 1 h -t 1.50711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 369 -a 1 r -t 1.50797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 355 -a 1 + -t 1.50797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 355 -a 1 - -t 1.50797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 355 -a 1 h -t 1.50797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 355 -a 1 r -t 1.50883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 340 -a 1 r -t 1.50939 -s 2 -d 0 -p ack -e 40 -c 0 -i 343 -a 0 -S 0 -y {3 3} f -t 1.50938999999999934 -s 0 -d 4 -n cwnd_ -a tcp -v 2.000000 -o 1.000000 -T v f -t 1.50938999999999934 -s 0 -d 4 -n cwnd_ -a tcp -v 1.000000 -o 2.000000 -T v + -t 1.50939 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 384 -a 0 -S 0 -f 0 -m 0 -y {4 4} - -t 1.50939 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 384 -a 0 -S 0 -y {4 4} h -t 1.50939 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 384 -a 0 -S 0 -y {-1 -1} + -t 1.51 -s 1 -d 2 -p cbr -e 210 -c 1 -i 385 -a 1 - -t 1.51 -s 1 -d 2 -p cbr -e 210 -c 1 -i 385 -a 1 h -t 1.51 -s 1 -d 2 -p cbr -e 210 -c 1 -i 385 -a 1 r -t 1.51086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 370 -a 1 + -t 1.51086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 370 -a 1 - -t 1.51086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 370 -a 1 h -t 1.51086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 370 -a 1 r -t 1.51172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 356 -a 1 + -t 1.51172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 356 -a 1 - -t 1.51172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 356 -a 1 h -t 1.51172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 356 -a 1 r -t 1.51258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 341 -a 1 + -t 1.51375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 386 -a 1 - -t 1.51375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 386 -a 1 h -t 1.51375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 386 -a 1 r -t 1.51461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 371 -a 1 + -t 1.51461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 371 -a 1 - -t 1.51461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 371 -a 1 h -t 1.51461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 371 -a 1 r -t 1.51547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 357 -a 1 + -t 1.51547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 357 -a 1 - -t 1.51547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 357 -a 1 h -t 1.51547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 357 -a 1 r -t 1.51633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 342 -a 1 + -t 1.5175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 387 -a 1 - -t 1.5175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 387 -a 1 h -t 1.5175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 387 -a 1 r -t 1.51836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 372 -a 1 + -t 1.51836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 372 -a 1 - -t 1.51836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 372 -a 1 h -t 1.51836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 372 -a 1 r -t 1.51922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 358 -a 1 + -t 1.51922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 358 -a 1 - -t 1.51922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 358 -a 1 h -t 1.51922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 358 -a 1 r -t 1.52008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 344 -a 1 + -t 1.52125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 388 -a 1 - -t 1.52125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 388 -a 1 h -t 1.52125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 388 -a 1 r -t 1.52211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 373 -a 1 + -t 1.52211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 373 -a 1 - -t 1.52211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 373 -a 1 h -t 1.52211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 373 -a 1 r -t 1.52297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 359 -a 1 + -t 1.52297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 359 -a 1 - -t 1.52297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 359 -a 1 h -t 1.52297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 359 -a 1 r -t 1.52383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 345 -a 1 + -t 1.525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 389 -a 1 - -t 1.525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 389 -a 1 h -t 1.525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 389 -a 1 r -t 1.52586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 374 -a 1 + -t 1.52586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 374 -a 1 - -t 1.52586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 374 -a 1 h -t 1.52586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 374 -a 1 r -t 1.52672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 360 -a 1 + -t 1.52672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 360 -a 1 - -t 1.52672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 360 -a 1 h -t 1.52672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 360 -a 1 r -t 1.52758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 346 -a 1 + -t 1.52875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 390 -a 1 - -t 1.52875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 390 -a 1 h -t 1.52875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 390 -a 1 r -t 1.52961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 375 -a 1 + -t 1.52961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 375 -a 1 - -t 1.52961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 375 -a 1 h -t 1.52961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 375 -a 1 r -t 1.53047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 361 -a 1 + -t 1.53047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 361 -a 1 - -t 1.53047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 361 -a 1 h -t 1.53047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 361 -a 1 r -t 1.53133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 347 -a 1 + -t 1.5325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 391 -a 1 - -t 1.5325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 391 -a 1 h -t 1.5325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 391 -a 1 r -t 1.53336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 376 -a 1 + -t 1.53336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 376 -a 1 - -t 1.53336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 376 -a 1 h -t 1.53336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 376 -a 1 r -t 1.53422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 362 -a 1 + -t 1.53422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 362 -a 1 - -t 1.53422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 362 -a 1 h -t 1.53422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 362 -a 1 r -t 1.53508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 348 -a 1 + -t 1.53625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 392 -a 1 - -t 1.53625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 392 -a 1 h -t 1.53625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 392 -a 1 r -t 1.53711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 377 -a 1 + -t 1.53711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 377 -a 1 - -t 1.53711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 377 -a 1 h -t 1.53711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 377 -a 1 r -t 1.53797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 363 -a 1 + -t 1.53797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 363 -a 1 - -t 1.53797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 363 -a 1 h -t 1.53797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 363 -a 1 r -t 1.53883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 349 -a 1 + -t 1.54 -s 1 -d 2 -p cbr -e 210 -c 1 -i 393 -a 1 - -t 1.54 -s 1 -d 2 -p cbr -e 210 -c 1 -i 393 -a 1 h -t 1.54 -s 1 -d 2 -p cbr -e 210 -c 1 -i 393 -a 1 r -t 1.54086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 378 -a 1 + -t 1.54086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 378 -a 1 - -t 1.54086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 378 -a 1 h -t 1.54086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 378 -a 1 r -t 1.54172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 364 -a 1 + -t 1.54172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 364 -a 1 - -t 1.54172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 364 -a 1 h -t 1.54172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 364 -a 1 r -t 1.54258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 350 -a 1 + -t 1.54375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 394 -a 1 - -t 1.54375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 394 -a 1 h -t 1.54375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 394 -a 1 r -t 1.54461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 379 -a 1 + -t 1.54461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 379 -a 1 - -t 1.54461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 379 -a 1 h -t 1.54461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 379 -a 1 r -t 1.54547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 365 -a 1 + -t 1.54547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 365 -a 1 - -t 1.54547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 365 -a 1 h -t 1.54547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 365 -a 1 r -t 1.54633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 351 -a 1 + -t 1.5475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 395 -a 1 - -t 1.5475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 395 -a 1 h -t 1.5475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 395 -a 1 r -t 1.54836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 380 -a 1 + -t 1.54836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 380 -a 1 - -t 1.54836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 380 -a 1 h -t 1.54836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 380 -a 1 r -t 1.54922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 366 -a 1 + -t 1.54922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 366 -a 1 - -t 1.54922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 366 -a 1 h -t 1.54922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 366 -a 1 v -t 1.55 sim_annotation 1.55 9 Receive Ack_1 r -t 1.55008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 352 -a 1 + -t 1.55125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 396 -a 1 - -t 1.55125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 396 -a 1 h -t 1.55125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 396 -a 1 r -t 1.55211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 381 -a 1 + -t 1.55211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 381 -a 1 - -t 1.55211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 381 -a 1 h -t 1.55211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 381 -a 1 r -t 1.55297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 367 -a 1 + -t 1.55297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 367 -a 1 - -t 1.55297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 367 -a 1 h -t 1.55297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 367 -a 1 r -t 1.55383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 353 -a 1 + -t 1.555 -s 1 -d 2 -p cbr -e 210 -c 1 -i 397 -a 1 - -t 1.555 -s 1 -d 2 -p cbr -e 210 -c 1 -i 397 -a 1 h -t 1.555 -s 1 -d 2 -p cbr -e 210 -c 1 -i 397 -a 1 r -t 1.55586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 382 -a 1 + -t 1.55586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 382 -a 1 - -t 1.55586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 382 -a 1 h -t 1.55586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 382 -a 1 r -t 1.55672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 368 -a 1 + -t 1.55672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 368 -a 1 - -t 1.55672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 368 -a 1 h -t 1.55672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 368 -a 1 r -t 1.55758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 354 -a 1 + -t 1.55875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 398 -a 1 - -t 1.55875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 398 -a 1 h -t 1.55875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 398 -a 1 r -t 1.55961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 383 -a 1 + -t 1.55961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 383 -a 1 - -t 1.55961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 383 -a 1 h -t 1.55961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 383 -a 1 r -t 1.56047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 369 -a 1 + -t 1.56047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 369 -a 1 - -t 1.56047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 369 -a 1 h -t 1.56047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 369 -a 1 r -t 1.56133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 355 -a 1 + -t 1.5625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 399 -a 1 - -t 1.5625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 399 -a 1 h -t 1.5625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 399 -a 1 r -t 1.56336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 385 -a 1 + -t 1.56336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 385 -a 1 - -t 1.56336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 385 -a 1 h -t 1.56336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 385 -a 1 r -t 1.56422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 370 -a 1 + -t 1.56422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 370 -a 1 - -t 1.56422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 370 -a 1 h -t 1.56422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 370 -a 1 r -t 1.56508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 356 -a 1 + -t 1.56625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 400 -a 1 - -t 1.56625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 400 -a 1 h -t 1.56625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 400 -a 1 r -t 1.56711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 386 -a 1 + -t 1.56711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 386 -a 1 - -t 1.56711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 386 -a 1 h -t 1.56711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 386 -a 1 r -t 1.56797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 371 -a 1 + -t 1.56797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 371 -a 1 - -t 1.56797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 371 -a 1 h -t 1.56797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 371 -a 1 r -t 1.56883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 357 -a 1 + -t 1.57 -s 1 -d 2 -p cbr -e 210 -c 1 -i 401 -a 1 - -t 1.57 -s 1 -d 2 -p cbr -e 210 -c 1 -i 401 -a 1 h -t 1.57 -s 1 -d 2 -p cbr -e 210 -c 1 -i 401 -a 1 r -t 1.57086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 387 -a 1 + -t 1.57086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 387 -a 1 - -t 1.57086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 387 -a 1 h -t 1.57086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 387 -a 1 r -t 1.57172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 372 -a 1 + -t 1.57172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 372 -a 1 - -t 1.57172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 372 -a 1 h -t 1.57172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 372 -a 1 r -t 1.57258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 358 -a 1 + -t 1.57375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 402 -a 1 - -t 1.57375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 402 -a 1 h -t 1.57375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 402 -a 1 r -t 1.57461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 388 -a 1 + -t 1.57461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 388 -a 1 - -t 1.57461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 388 -a 1 h -t 1.57461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 388 -a 1 r -t 1.57539 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 384 -a 0 -S 0 -y {4 4} + -t 1.57539 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 384 -a 0 -S 0 -y {4 4} r -t 1.57547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 373 -a 1 + -t 1.57547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 373 -a 1 - -t 1.57547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 373 -a 1 h -t 1.57547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 373 -a 1 r -t 1.57633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 359 -a 1 + -t 1.5775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 403 -a 1 - -t 1.5775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 403 -a 1 h -t 1.5775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 403 -a 1 - -t 1.57797 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 384 -a 0 -S 0 -y {4 4} h -t 1.57797 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 384 -a 0 -S 0 -y {-1 -1} r -t 1.57836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 389 -a 1 + -t 1.57836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 389 -a 1 r -t 1.57922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 374 -a 1 + -t 1.57922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 374 -a 1 - -t 1.57922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 374 -a 1 h -t 1.57922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 374 -a 1 r -t 1.58008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 360 -a 1 + -t 1.58125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 404 -a 1 - -t 1.58125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 404 -a 1 h -t 1.58125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 404 -a 1 r -t 1.58211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 390 -a 1 + -t 1.58211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 390 -a 1 d -t 1.58211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 390 -a 1 r -t 1.58297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 375 -a 1 + -t 1.58297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 375 -a 1 - -t 1.58297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 375 -a 1 h -t 1.58297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 375 -a 1 r -t 1.58383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 361 -a 1 + -t 1.585 -s 1 -d 2 -p cbr -e 210 -c 1 -i 405 -a 1 - -t 1.585 -s 1 -d 2 -p cbr -e 210 -c 1 -i 405 -a 1 h -t 1.585 -s 1 -d 2 -p cbr -e 210 -c 1 -i 405 -a 1 r -t 1.58586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 391 -a 1 + -t 1.58586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 391 -a 1 d -t 1.58586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 391 -a 1 r -t 1.58672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 376 -a 1 + -t 1.58672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 376 -a 1 - -t 1.58672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 376 -a 1 h -t 1.58672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 376 -a 1 r -t 1.58758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 362 -a 1 + -t 1.58875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 406 -a 1 - -t 1.58875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 406 -a 1 h -t 1.58875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 406 -a 1 r -t 1.58961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 392 -a 1 + -t 1.58961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 392 -a 1 d -t 1.58961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 392 -a 1 r -t 1.59047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 377 -a 1 + -t 1.59047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 377 -a 1 - -t 1.59047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 377 -a 1 h -t 1.59047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 377 -a 1 r -t 1.59133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 363 -a 1 + -t 1.5925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 407 -a 1 - -t 1.5925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 407 -a 1 h -t 1.5925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 407 -a 1 r -t 1.59336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 393 -a 1 + -t 1.59336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 393 -a 1 d -t 1.59336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 393 -a 1 - -t 1.59397 -s 2 -d 3 -p cbr -e 210 -c 1 -i 389 -a 1 h -t 1.59397 -s 2 -d 3 -p cbr -e 210 -c 1 -i 389 -a 1 r -t 1.59422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 378 -a 1 + -t 1.59422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 378 -a 1 - -t 1.59422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 378 -a 1 h -t 1.59422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 378 -a 1 r -t 1.59508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 364 -a 1 + -t 1.59625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 408 -a 1 - -t 1.59625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 408 -a 1 h -t 1.59625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 408 -a 1 r -t 1.59711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 394 -a 1 + -t 1.59711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 394 -a 1 - -t 1.59733 -s 2 -d 3 -p cbr -e 210 -c 1 -i 394 -a 1 h -t 1.59733 -s 2 -d 3 -p cbr -e 210 -c 1 -i 394 -a 1 r -t 1.59797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 379 -a 1 + -t 1.59797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 379 -a 1 - -t 1.59797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 379 -a 1 h -t 1.59797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 379 -a 1 r -t 1.59883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 365 -a 1 + -t 1.6 -s 1 -d 2 -p cbr -e 210 -c 1 -i 409 -a 1 - -t 1.6 -s 1 -d 2 -p cbr -e 210 -c 1 -i 409 -a 1 h -t 1.6 -s 1 -d 2 -p cbr -e 210 -c 1 -i 409 -a 1 r -t 1.60086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 395 -a 1 + -t 1.60086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 395 -a 1 - -t 1.60086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 395 -a 1 h -t 1.60086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 395 -a 1 r -t 1.60172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 380 -a 1 + -t 1.60172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 380 -a 1 - -t 1.60172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 380 -a 1 h -t 1.60172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 380 -a 1 r -t 1.60258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 366 -a 1 + -t 1.60375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 410 -a 1 - -t 1.60375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 410 -a 1 h -t 1.60375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 410 -a 1 r -t 1.60461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 396 -a 1 + -t 1.60461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 396 -a 1 - -t 1.60461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 396 -a 1 h -t 1.60461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 396 -a 1 r -t 1.60547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 381 -a 1 + -t 1.60547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 381 -a 1 - -t 1.60547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 381 -a 1 h -t 1.60547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 381 -a 1 r -t 1.60633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 367 -a 1 + -t 1.6075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 411 -a 1 - -t 1.6075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 411 -a 1 h -t 1.6075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 411 -a 1 r -t 1.60836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 397 -a 1 + -t 1.60836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 397 -a 1 - -t 1.60836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 397 -a 1 h -t 1.60836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 397 -a 1 r -t 1.60922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 382 -a 1 + -t 1.60922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 382 -a 1 - -t 1.60922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 382 -a 1 h -t 1.60922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 382 -a 1 r -t 1.61008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 368 -a 1 + -t 1.61125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 412 -a 1 - -t 1.61125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 412 -a 1 h -t 1.61125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 412 -a 1 r -t 1.61211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 398 -a 1 + -t 1.61211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 398 -a 1 - -t 1.61211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 398 -a 1 h -t 1.61211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 398 -a 1 r -t 1.61297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 383 -a 1 + -t 1.61297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 383 -a 1 - -t 1.61297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 383 -a 1 h -t 1.61297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 383 -a 1 r -t 1.61383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 369 -a 1 + -t 1.615 -s 1 -d 2 -p cbr -e 210 -c 1 -i 413 -a 1 - -t 1.615 -s 1 -d 2 -p cbr -e 210 -c 1 -i 413 -a 1 h -t 1.615 -s 1 -d 2 -p cbr -e 210 -c 1 -i 413 -a 1 r -t 1.61586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 399 -a 1 + -t 1.61586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 399 -a 1 - -t 1.61586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 399 -a 1 h -t 1.61586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 399 -a 1 r -t 1.61672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 385 -a 1 + -t 1.61672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 385 -a 1 - -t 1.61672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 385 -a 1 h -t 1.61672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 385 -a 1 r -t 1.61758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 370 -a 1 + -t 1.61875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 414 -a 1 - -t 1.61875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 414 -a 1 h -t 1.61875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 414 -a 1 r -t 1.61961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 400 -a 1 + -t 1.61961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 400 -a 1 - -t 1.61961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 400 -a 1 h -t 1.61961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 400 -a 1 r -t 1.62047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 386 -a 1 + -t 1.62047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 386 -a 1 - -t 1.62047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 386 -a 1 h -t 1.62047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 386 -a 1 r -t 1.62133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 371 -a 1 + -t 1.6225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 415 -a 1 - -t 1.6225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 415 -a 1 h -t 1.6225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 415 -a 1 r -t 1.62336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 401 -a 1 + -t 1.62336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 401 -a 1 - -t 1.62336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 401 -a 1 h -t 1.62336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 401 -a 1 r -t 1.62422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 387 -a 1 + -t 1.62422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 387 -a 1 - -t 1.62422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 387 -a 1 h -t 1.62422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 387 -a 1 r -t 1.62508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 372 -a 1 + -t 1.62625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 416 -a 1 - -t 1.62625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 416 -a 1 h -t 1.62625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 416 -a 1 r -t 1.62711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 402 -a 1 + -t 1.62711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 402 -a 1 - -t 1.62711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 402 -a 1 h -t 1.62711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 402 -a 1 r -t 1.62797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 388 -a 1 + -t 1.62797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 388 -a 1 - -t 1.62797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 388 -a 1 h -t 1.62797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 388 -a 1 r -t 1.62883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 373 -a 1 + -t 1.63 -s 1 -d 2 -p cbr -e 210 -c 1 -i 417 -a 1 - -t 1.63 -s 1 -d 2 -p cbr -e 210 -c 1 -i 417 -a 1 h -t 1.63 -s 1 -d 2 -p cbr -e 210 -c 1 -i 417 -a 1 r -t 1.63086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 403 -a 1 + -t 1.63086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 403 -a 1 - -t 1.63086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 403 -a 1 h -t 1.63086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 403 -a 1 r -t 1.63258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 374 -a 1 + -t 1.63375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 418 -a 1 - -t 1.63375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 418 -a 1 h -t 1.63375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 418 -a 1 r -t 1.63461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 404 -a 1 + -t 1.63461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 404 -a 1 - -t 1.63461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 404 -a 1 h -t 1.63461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 404 -a 1 r -t 1.63633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 375 -a 1 + -t 1.6375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 419 -a 1 - -t 1.6375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 419 -a 1 h -t 1.6375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 419 -a 1 r -t 1.63836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 405 -a 1 + -t 1.63836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 405 -a 1 - -t 1.63836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 405 -a 1 h -t 1.63836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 405 -a 1 r -t 1.64008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 376 -a 1 + -t 1.64125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 420 -a 1 - -t 1.64125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 420 -a 1 h -t 1.64125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 420 -a 1 r -t 1.64211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 406 -a 1 + -t 1.64211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 406 -a 1 - -t 1.64211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 406 -a 1 h -t 1.64211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 406 -a 1 r -t 1.64383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 377 -a 1 r -t 1.64397 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 384 -a 0 -S 0 -y {4 4} + -t 1.64397 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 384 -a 0 -S 0 -y {4 4} - -t 1.64397 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 384 -a 0 -S 0 -y {4 4} h -t 1.64397 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 384 -a 0 -S 0 -y {-1 -1} + -t 1.645 -s 1 -d 2 -p cbr -e 210 -c 1 -i 421 -a 1 - -t 1.645 -s 1 -d 2 -p cbr -e 210 -c 1 -i 421 -a 1 h -t 1.645 -s 1 -d 2 -p cbr -e 210 -c 1 -i 421 -a 1 r -t 1.64586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 407 -a 1 + -t 1.64586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 407 -a 1 - -t 1.64586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 407 -a 1 h -t 1.64586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 407 -a 1 r -t 1.64733 -s 2 -d 3 -p cbr -e 210 -c 1 -i 389 -a 1 + -t 1.64733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 389 -a 1 - -t 1.64733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 389 -a 1 h -t 1.64733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 389 -a 1 r -t 1.64758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 378 -a 1 + -t 1.64875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 422 -a 1 - -t 1.64875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 422 -a 1 h -t 1.64875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 422 -a 1 r -t 1.64961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 408 -a 1 + -t 1.64961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 408 -a 1 - -t 1.64961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 408 -a 1 h -t 1.64961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 408 -a 1 r -t 1.65069 -s 2 -d 3 -p cbr -e 210 -c 1 -i 394 -a 1 + -t 1.65069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 394 -a 1 - -t 1.65069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 394 -a 1 h -t 1.65069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 394 -a 1 r -t 1.65133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 379 -a 1 + -t 1.6525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 423 -a 1 - -t 1.6525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 423 -a 1 h -t 1.6525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 423 -a 1 r -t 1.65336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 409 -a 1 + -t 1.65336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 409 -a 1 - -t 1.65336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 409 -a 1 h -t 1.65336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 409 -a 1 r -t 1.65422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 395 -a 1 + -t 1.65422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 395 -a 1 - -t 1.65422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 395 -a 1 h -t 1.65422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 395 -a 1 r -t 1.65508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 380 -a 1 + -t 1.65625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 424 -a 1 - -t 1.65625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 424 -a 1 h -t 1.65625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 424 -a 1 r -t 1.65711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 410 -a 1 + -t 1.65711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 410 -a 1 - -t 1.65711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 410 -a 1 h -t 1.65711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 410 -a 1 r -t 1.65797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 396 -a 1 + -t 1.65797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 396 -a 1 - -t 1.65797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 396 -a 1 h -t 1.65797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 396 -a 1 r -t 1.65883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 381 -a 1 + -t 1.66 -s 1 -d 2 -p cbr -e 210 -c 1 -i 425 -a 1 - -t 1.66 -s 1 -d 2 -p cbr -e 210 -c 1 -i 425 -a 1 h -t 1.66 -s 1 -d 2 -p cbr -e 210 -c 1 -i 425 -a 1 r -t 1.66086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 411 -a 1 + -t 1.66086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 411 -a 1 - -t 1.66086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 411 -a 1 h -t 1.66086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 411 -a 1 r -t 1.66172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 397 -a 1 + -t 1.66172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 397 -a 1 - -t 1.66172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 397 -a 1 h -t 1.66172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 397 -a 1 r -t 1.66258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 382 -a 1 + -t 1.66375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 426 -a 1 - -t 1.66375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 426 -a 1 h -t 1.66375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 426 -a 1 r -t 1.66461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 412 -a 1 + -t 1.66461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 412 -a 1 - -t 1.66461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 412 -a 1 h -t 1.66461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 412 -a 1 r -t 1.66547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 398 -a 1 + -t 1.66547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 398 -a 1 - -t 1.66547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 398 -a 1 h -t 1.66547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 398 -a 1 r -t 1.66633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 383 -a 1 + -t 1.6675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 427 -a 1 - -t 1.6675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 427 -a 1 h -t 1.6675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 427 -a 1 r -t 1.66836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 413 -a 1 + -t 1.66836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 413 -a 1 - -t 1.66836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 413 -a 1 h -t 1.66836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 413 -a 1 r -t 1.66922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 399 -a 1 + -t 1.66922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 399 -a 1 - -t 1.66922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 399 -a 1 h -t 1.66922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 399 -a 1 r -t 1.67008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 385 -a 1 + -t 1.67125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 428 -a 1 - -t 1.67125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 428 -a 1 h -t 1.67125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 428 -a 1 r -t 1.67211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 414 -a 1 + -t 1.67211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 414 -a 1 - -t 1.67211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 414 -a 1 h -t 1.67211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 414 -a 1 r -t 1.67297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 400 -a 1 + -t 1.67297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 400 -a 1 - -t 1.67297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 400 -a 1 h -t 1.67297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 400 -a 1 r -t 1.67383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 386 -a 1 + -t 1.675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 429 -a 1 - -t 1.675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 429 -a 1 h -t 1.675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 429 -a 1 r -t 1.67586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 415 -a 1 + -t 1.67586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 415 -a 1 - -t 1.67586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 415 -a 1 h -t 1.67586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 415 -a 1 r -t 1.67672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 401 -a 1 + -t 1.67672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 401 -a 1 - -t 1.67672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 401 -a 1 h -t 1.67672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 401 -a 1 r -t 1.67758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 387 -a 1 + -t 1.67875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 430 -a 1 - -t 1.67875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 430 -a 1 h -t 1.67875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 430 -a 1 r -t 1.67961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 416 -a 1 + -t 1.67961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 416 -a 1 - -t 1.67961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 416 -a 1 h -t 1.67961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 416 -a 1 r -t 1.68047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 402 -a 1 + -t 1.68047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 402 -a 1 - -t 1.68047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 402 -a 1 h -t 1.68047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 402 -a 1 r -t 1.68133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 388 -a 1 + -t 1.6825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 431 -a 1 - -t 1.6825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 431 -a 1 h -t 1.6825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 431 -a 1 r -t 1.68336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 417 -a 1 + -t 1.68336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 417 -a 1 - -t 1.68336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 417 -a 1 h -t 1.68336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 417 -a 1 r -t 1.68422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 403 -a 1 + -t 1.68422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 403 -a 1 - -t 1.68422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 403 -a 1 h -t 1.68422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 403 -a 1 + -t 1.68625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 432 -a 1 - -t 1.68625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 432 -a 1 h -t 1.68625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 432 -a 1 r -t 1.68711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 418 -a 1 + -t 1.68711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 418 -a 1 - -t 1.68711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 418 -a 1 h -t 1.68711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 418 -a 1 r -t 1.68797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 404 -a 1 + -t 1.68797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 404 -a 1 - -t 1.68797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 404 -a 1 h -t 1.68797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 404 -a 1 + -t 1.69 -s 1 -d 2 -p cbr -e 210 -c 1 -i 433 -a 1 - -t 1.69 -s 1 -d 2 -p cbr -e 210 -c 1 -i 433 -a 1 h -t 1.69 -s 1 -d 2 -p cbr -e 210 -c 1 -i 433 -a 1 r -t 1.69086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 419 -a 1 + -t 1.69086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 419 -a 1 - -t 1.69086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 419 -a 1 h -t 1.69086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 419 -a 1 r -t 1.69172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 405 -a 1 + -t 1.69172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 405 -a 1 - -t 1.69172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 405 -a 1 h -t 1.69172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 405 -a 1 + -t 1.69375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 434 -a 1 - -t 1.69375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 434 -a 1 h -t 1.69375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 434 -a 1 r -t 1.69461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 420 -a 1 + -t 1.69461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 420 -a 1 - -t 1.69461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 420 -a 1 h -t 1.69461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 420 -a 1 r -t 1.69547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 406 -a 1 + -t 1.69547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 406 -a 1 - -t 1.69547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 406 -a 1 h -t 1.69547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 406 -a 1 + -t 1.6975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 435 -a 1 - -t 1.6975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 435 -a 1 h -t 1.6975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 435 -a 1 r -t 1.69836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 421 -a 1 + -t 1.69836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 421 -a 1 - -t 1.69836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 421 -a 1 h -t 1.69836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 421 -a 1 r -t 1.69922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 407 -a 1 + -t 1.69922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 407 -a 1 - -t 1.69922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 407 -a 1 h -t 1.69922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 407 -a 1 v -t 1.7 sim_annotation 1.7 10 Send Packet_2 r -t 1.70069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 389 -a 1 + -t 1.70125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 436 -a 1 - -t 1.70125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 436 -a 1 h -t 1.70125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 436 -a 1 r -t 1.70211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 422 -a 1 + -t 1.70211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 422 -a 1 - -t 1.70211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 422 -a 1 h -t 1.70211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 422 -a 1 r -t 1.70297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 408 -a 1 + -t 1.70297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 408 -a 1 - -t 1.70297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 408 -a 1 h -t 1.70297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 408 -a 1 r -t 1.70405 -s 3 -d 5 -p cbr -e 210 -c 1 -i 394 -a 1 + -t 1.705 -s 1 -d 2 -p cbr -e 210 -c 1 -i 437 -a 1 - -t 1.705 -s 1 -d 2 -p cbr -e 210 -c 1 -i 437 -a 1 h -t 1.705 -s 1 -d 2 -p cbr -e 210 -c 1 -i 437 -a 1 r -t 1.70586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 423 -a 1 + -t 1.70586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 423 -a 1 - -t 1.70586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 423 -a 1 h -t 1.70586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 423 -a 1 r -t 1.70672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 409 -a 1 + -t 1.70672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 409 -a 1 - -t 1.70672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 409 -a 1 h -t 1.70672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 409 -a 1 r -t 1.70758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 395 -a 1 + -t 1.70875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 438 -a 1 - -t 1.70875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 438 -a 1 h -t 1.70875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 438 -a 1 r -t 1.70961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 424 -a 1 + -t 1.70961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 424 -a 1 - -t 1.70961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 424 -a 1 h -t 1.70961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 424 -a 1 r -t 1.70997 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 384 -a 0 -S 0 -y {4 4} + -t 1.70997 -s 4 -d 3 -p ack -e 40 -c 0 -i 439 -a 0 -S 0 -y {4 4} - -t 1.70997 -s 4 -d 3 -p ack -e 40 -c 0 -i 439 -a 0 -S 0 -y {4 4} h -t 1.70997 -s 4 -d 3 -p ack -e 40 -c 0 -i 439 -a 0 -S 0 -y {-1 -1} r -t 1.71047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 410 -a 1 + -t 1.71047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 410 -a 1 - -t 1.71047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 410 -a 1 h -t 1.71047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 410 -a 1 r -t 1.71133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 396 -a 1 + -t 1.7125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 440 -a 1 - -t 1.7125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 440 -a 1 h -t 1.7125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 440 -a 1 r -t 1.71336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 425 -a 1 + -t 1.71336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 425 -a 1 - -t 1.71336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 425 -a 1 h -t 1.71336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 425 -a 1 r -t 1.71422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 411 -a 1 + -t 1.71422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 411 -a 1 - -t 1.71422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 411 -a 1 h -t 1.71422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 411 -a 1 r -t 1.71508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 397 -a 1 + -t 1.71625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 441 -a 1 - -t 1.71625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 441 -a 1 h -t 1.71625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 441 -a 1 r -t 1.71711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 426 -a 1 + -t 1.71711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 426 -a 1 - -t 1.71711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 426 -a 1 h -t 1.71711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 426 -a 1 r -t 1.71797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 412 -a 1 + -t 1.71797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 412 -a 1 - -t 1.71797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 412 -a 1 h -t 1.71797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 412 -a 1 r -t 1.71883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 398 -a 1 + -t 1.72 -s 1 -d 2 -p cbr -e 210 -c 1 -i 442 -a 1 - -t 1.72 -s 1 -d 2 -p cbr -e 210 -c 1 -i 442 -a 1 h -t 1.72 -s 1 -d 2 -p cbr -e 210 -c 1 -i 442 -a 1 r -t 1.72086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 427 -a 1 + -t 1.72086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 427 -a 1 - -t 1.72086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 427 -a 1 h -t 1.72086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 427 -a 1 r -t 1.72172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 413 -a 1 + -t 1.72172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 413 -a 1 - -t 1.72172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 413 -a 1 h -t 1.72172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 413 -a 1 r -t 1.72258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 399 -a 1 + -t 1.72375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 443 -a 1 - -t 1.72375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 443 -a 1 h -t 1.72375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 443 -a 1 r -t 1.72461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 428 -a 1 + -t 1.72461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 428 -a 1 - -t 1.72461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 428 -a 1 h -t 1.72461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 428 -a 1 r -t 1.72547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 414 -a 1 + -t 1.72547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 414 -a 1 - -t 1.72547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 414 -a 1 h -t 1.72547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 414 -a 1 r -t 1.72633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 400 -a 1 + -t 1.7275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 444 -a 1 - -t 1.7275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 444 -a 1 h -t 1.7275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 444 -a 1 r -t 1.72836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 429 -a 1 + -t 1.72836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 429 -a 1 - -t 1.72836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 429 -a 1 h -t 1.72836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 429 -a 1 r -t 1.72922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 415 -a 1 + -t 1.72922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 415 -a 1 - -t 1.72922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 415 -a 1 h -t 1.72922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 415 -a 1 r -t 1.73008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 401 -a 1 + -t 1.73125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 445 -a 1 - -t 1.73125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 445 -a 1 h -t 1.73125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 445 -a 1 r -t 1.73211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 430 -a 1 + -t 1.73211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 430 -a 1 - -t 1.73211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 430 -a 1 h -t 1.73211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 430 -a 1 r -t 1.73297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 416 -a 1 + -t 1.73297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 416 -a 1 - -t 1.73297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 416 -a 1 h -t 1.73297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 416 -a 1 r -t 1.73383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 402 -a 1 + -t 1.735 -s 1 -d 2 -p cbr -e 210 -c 1 -i 446 -a 1 - -t 1.735 -s 1 -d 2 -p cbr -e 210 -c 1 -i 446 -a 1 h -t 1.735 -s 1 -d 2 -p cbr -e 210 -c 1 -i 446 -a 1 r -t 1.73586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 431 -a 1 + -t 1.73586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 431 -a 1 - -t 1.73586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 431 -a 1 h -t 1.73586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 431 -a 1 r -t 1.73672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 417 -a 1 + -t 1.73672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 417 -a 1 - -t 1.73672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 417 -a 1 h -t 1.73672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 417 -a 1 r -t 1.73758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 403 -a 1 + -t 1.73875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 447 -a 1 - -t 1.73875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 447 -a 1 h -t 1.73875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 447 -a 1 r -t 1.73961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 432 -a 1 + -t 1.73961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 432 -a 1 - -t 1.73961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 432 -a 1 h -t 1.73961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 432 -a 1 r -t 1.74047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 418 -a 1 + -t 1.74047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 418 -a 1 - -t 1.74047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 418 -a 1 h -t 1.74047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 418 -a 1 r -t 1.74133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 404 -a 1 + -t 1.7425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 448 -a 1 - -t 1.7425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 448 -a 1 h -t 1.7425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 448 -a 1 r -t 1.74336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 433 -a 1 + -t 1.74336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 433 -a 1 - -t 1.74336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 433 -a 1 h -t 1.74336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 433 -a 1 r -t 1.74422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 419 -a 1 + -t 1.74422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 419 -a 1 - -t 1.74422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 419 -a 1 h -t 1.74422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 419 -a 1 r -t 1.74508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 405 -a 1 + -t 1.74625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 449 -a 1 - -t 1.74625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 449 -a 1 h -t 1.74625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 449 -a 1 r -t 1.74711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 434 -a 1 + -t 1.74711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 434 -a 1 - -t 1.74711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 434 -a 1 h -t 1.74711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 434 -a 1 r -t 1.74797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 420 -a 1 + -t 1.74797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 420 -a 1 - -t 1.74797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 420 -a 1 h -t 1.74797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 420 -a 1 r -t 1.74883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 406 -a 1 + -t 1.75 -s 1 -d 2 -p cbr -e 210 -c 1 -i 450 -a 1 - -t 1.75 -s 1 -d 2 -p cbr -e 210 -c 1 -i 450 -a 1 h -t 1.75 -s 1 -d 2 -p cbr -e 210 -c 1 -i 450 -a 1 r -t 1.75086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 435 -a 1 + -t 1.75086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 435 -a 1 - -t 1.75086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 435 -a 1 h -t 1.75086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 435 -a 1 r -t 1.75172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 421 -a 1 + -t 1.75172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 421 -a 1 - -t 1.75172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 421 -a 1 h -t 1.75172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 421 -a 1 r -t 1.75258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 407 -a 1 + -t 1.75375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 451 -a 1 - -t 1.75375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 451 -a 1 h -t 1.75375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 451 -a 1 r -t 1.75461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 436 -a 1 + -t 1.75461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 436 -a 1 - -t 1.75461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 436 -a 1 h -t 1.75461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 436 -a 1 r -t 1.75547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 422 -a 1 + -t 1.75547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 422 -a 1 - -t 1.75547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 422 -a 1 h -t 1.75547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 422 -a 1 r -t 1.75633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 408 -a 1 + -t 1.7575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 452 -a 1 - -t 1.7575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 452 -a 1 h -t 1.7575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 452 -a 1 r -t 1.75836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 437 -a 1 + -t 1.75836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 437 -a 1 - -t 1.75836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 437 -a 1 h -t 1.75836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 437 -a 1 r -t 1.75922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 423 -a 1 + -t 1.75922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 423 -a 1 - -t 1.75922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 423 -a 1 h -t 1.75922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 423 -a 1 r -t 1.76008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 409 -a 1 r -t 1.76061 -s 4 -d 3 -p ack -e 40 -c 0 -i 439 -a 0 -S 0 -y {4 4} + -t 1.76061 -s 3 -d 2 -p ack -e 40 -c 0 -i 439 -a 0 -S 0 -y {4 4} - -t 1.76061 -s 3 -d 2 -p ack -e 40 -c 0 -i 439 -a 0 -S 0 -y {4 4} h -t 1.76061 -s 3 -d 2 -p ack -e 40 -c 0 -i 439 -a 0 -S 0 -y {-1 -1} + -t 1.76125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 453 -a 1 - -t 1.76125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 453 -a 1 h -t 1.76125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 453 -a 1 r -t 1.76211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 438 -a 1 + -t 1.76211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 438 -a 1 - -t 1.76211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 438 -a 1 h -t 1.76211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 438 -a 1 r -t 1.76297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 424 -a 1 + -t 1.76297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 424 -a 1 - -t 1.76297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 424 -a 1 h -t 1.76297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 424 -a 1 r -t 1.76383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 410 -a 1 + -t 1.765 -s 1 -d 2 -p cbr -e 210 -c 1 -i 454 -a 1 - -t 1.765 -s 1 -d 2 -p cbr -e 210 -c 1 -i 454 -a 1 h -t 1.765 -s 1 -d 2 -p cbr -e 210 -c 1 -i 454 -a 1 r -t 1.76586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 440 -a 1 + -t 1.76586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 440 -a 1 - -t 1.76586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 440 -a 1 h -t 1.76586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 440 -a 1 r -t 1.76672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 425 -a 1 + -t 1.76672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 425 -a 1 - -t 1.76672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 425 -a 1 h -t 1.76672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 425 -a 1 r -t 1.76758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 411 -a 1 + -t 1.76875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 455 -a 1 - -t 1.76875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 455 -a 1 h -t 1.76875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 455 -a 1 r -t 1.76961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 441 -a 1 + -t 1.76961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 441 -a 1 - -t 1.76961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 441 -a 1 h -t 1.76961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 441 -a 1 r -t 1.77047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 426 -a 1 + -t 1.77047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 426 -a 1 - -t 1.77047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 426 -a 1 h -t 1.77047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 426 -a 1 r -t 1.77133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 412 -a 1 + -t 1.7725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 456 -a 1 - -t 1.7725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 456 -a 1 h -t 1.7725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 456 -a 1 r -t 1.77336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 442 -a 1 + -t 1.77336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 442 -a 1 - -t 1.77336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 442 -a 1 h -t 1.77336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 442 -a 1 r -t 1.77422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 427 -a 1 + -t 1.77422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 427 -a 1 - -t 1.77422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 427 -a 1 h -t 1.77422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 427 -a 1 r -t 1.77508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 413 -a 1 + -t 1.77625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 457 -a 1 - -t 1.77625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 457 -a 1 h -t 1.77625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 457 -a 1 r -t 1.77711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 443 -a 1 + -t 1.77711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 443 -a 1 - -t 1.77711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 443 -a 1 h -t 1.77711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 443 -a 1 r -t 1.77797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 428 -a 1 + -t 1.77797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 428 -a 1 - -t 1.77797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 428 -a 1 h -t 1.77797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 428 -a 1 r -t 1.77883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 414 -a 1 + -t 1.78 -s 1 -d 2 -p cbr -e 210 -c 1 -i 458 -a 1 - -t 1.78 -s 1 -d 2 -p cbr -e 210 -c 1 -i 458 -a 1 h -t 1.78 -s 1 -d 2 -p cbr -e 210 -c 1 -i 458 -a 1 r -t 1.78086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 444 -a 1 + -t 1.78086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 444 -a 1 - -t 1.78086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 444 -a 1 h -t 1.78086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 444 -a 1 r -t 1.78172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 429 -a 1 + -t 1.78172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 429 -a 1 - -t 1.78172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 429 -a 1 h -t 1.78172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 429 -a 1 r -t 1.78258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 415 -a 1 + -t 1.78375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 459 -a 1 - -t 1.78375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 459 -a 1 h -t 1.78375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 459 -a 1 r -t 1.78461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 445 -a 1 + -t 1.78461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 445 -a 1 - -t 1.78461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 445 -a 1 h -t 1.78461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 445 -a 1 r -t 1.78547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 430 -a 1 + -t 1.78547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 430 -a 1 - -t 1.78547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 430 -a 1 h -t 1.78547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 430 -a 1 r -t 1.78633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 416 -a 1 + -t 1.7875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 460 -a 1 - -t 1.7875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 460 -a 1 h -t 1.7875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 460 -a 1 r -t 1.78836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 446 -a 1 + -t 1.78836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 446 -a 1 - -t 1.78836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 446 -a 1 h -t 1.78836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 446 -a 1 r -t 1.78922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 431 -a 1 + -t 1.78922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 431 -a 1 - -t 1.78922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 431 -a 1 h -t 1.78922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 431 -a 1 r -t 1.79008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 417 -a 1 + -t 1.79125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 461 -a 1 - -t 1.79125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 461 -a 1 h -t 1.79125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 461 -a 1 r -t 1.79211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 447 -a 1 + -t 1.79211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 447 -a 1 - -t 1.79211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 447 -a 1 h -t 1.79211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 447 -a 1 r -t 1.79297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 432 -a 1 + -t 1.79297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 432 -a 1 - -t 1.79297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 432 -a 1 h -t 1.79297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 432 -a 1 r -t 1.79383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 418 -a 1 + -t 1.795 -s 1 -d 2 -p cbr -e 210 -c 1 -i 462 -a 1 - -t 1.795 -s 1 -d 2 -p cbr -e 210 -c 1 -i 462 -a 1 h -t 1.795 -s 1 -d 2 -p cbr -e 210 -c 1 -i 462 -a 1 r -t 1.79586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 448 -a 1 + -t 1.79586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 448 -a 1 - -t 1.79586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 448 -a 1 h -t 1.79586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 448 -a 1 r -t 1.79672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 433 -a 1 + -t 1.79672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 433 -a 1 - -t 1.79672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 433 -a 1 h -t 1.79672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 433 -a 1 r -t 1.79758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 419 -a 1 + -t 1.79875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 463 -a 1 - -t 1.79875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 463 -a 1 h -t 1.79875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 463 -a 1 r -t 1.79961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 449 -a 1 + -t 1.79961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 449 -a 1 - -t 1.79961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 449 -a 1 h -t 1.79961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 449 -a 1 r -t 1.80047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 434 -a 1 + -t 1.80047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 434 -a 1 - -t 1.80047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 434 -a 1 h -t 1.80047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 434 -a 1 r -t 1.80133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 420 -a 1 + -t 1.8025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 464 -a 1 - -t 1.8025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 464 -a 1 h -t 1.8025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 464 -a 1 r -t 1.80336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 450 -a 1 + -t 1.80336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 450 -a 1 - -t 1.80336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 450 -a 1 h -t 1.80336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 450 -a 1 r -t 1.80422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 435 -a 1 + -t 1.80422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 435 -a 1 - -t 1.80422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 435 -a 1 h -t 1.80422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 435 -a 1 r -t 1.80508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 421 -a 1 + -t 1.80625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 465 -a 1 - -t 1.80625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 465 -a 1 h -t 1.80625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 465 -a 1 r -t 1.80711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 451 -a 1 + -t 1.80711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 451 -a 1 - -t 1.80711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 451 -a 1 h -t 1.80711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 451 -a 1 r -t 1.80797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 436 -a 1 + -t 1.80797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 436 -a 1 - -t 1.80797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 436 -a 1 h -t 1.80797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 436 -a 1 r -t 1.80883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 422 -a 1 + -t 1.81 -s 1 -d 2 -p cbr -e 210 -c 1 -i 466 -a 1 - -t 1.81 -s 1 -d 2 -p cbr -e 210 -c 1 -i 466 -a 1 h -t 1.81 -s 1 -d 2 -p cbr -e 210 -c 1 -i 466 -a 1 r -t 1.81086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 452 -a 1 + -t 1.81086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 452 -a 1 - -t 1.81086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 452 -a 1 h -t 1.81086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 452 -a 1 r -t 1.81125 -s 3 -d 2 -p ack -e 40 -c 0 -i 439 -a 0 -S 0 -y {4 4} + -t 1.81125 -s 2 -d 0 -p ack -e 40 -c 0 -i 439 -a 0 -S 0 -y {4 4} - -t 1.81125 -s 2 -d 0 -p ack -e 40 -c 0 -i 439 -a 0 -S 0 -f 0 -m 1 -y {4 4} h -t 1.81125 -s 2 -d 0 -p ack -e 40 -c 0 -i 439 -a 0 -S 0 -y {-1 -1} r -t 1.81172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 437 -a 1 + -t 1.81172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 437 -a 1 - -t 1.81172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 437 -a 1 h -t 1.81172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 437 -a 1 r -t 1.81258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 423 -a 1 + -t 1.81375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 467 -a 1 - -t 1.81375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 467 -a 1 h -t 1.81375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 467 -a 1 r -t 1.81461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 453 -a 1 + -t 1.81461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 453 -a 1 - -t 1.81461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 453 -a 1 h -t 1.81461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 453 -a 1 r -t 1.81547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 438 -a 1 + -t 1.81547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 438 -a 1 - -t 1.81547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 438 -a 1 h -t 1.81547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 438 -a 1 r -t 1.81633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 424 -a 1 + -t 1.8175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 468 -a 1 - -t 1.8175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 468 -a 1 h -t 1.8175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 468 -a 1 r -t 1.81836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 454 -a 1 + -t 1.81836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 454 -a 1 - -t 1.81836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 454 -a 1 h -t 1.81836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 454 -a 1 r -t 1.81922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 440 -a 1 + -t 1.81922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 440 -a 1 - -t 1.81922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 440 -a 1 h -t 1.81922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 440 -a 1 r -t 1.82008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 425 -a 1 + -t 1.82125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 469 -a 1 - -t 1.82125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 469 -a 1 h -t 1.82125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 469 -a 1 r -t 1.82211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 455 -a 1 + -t 1.82211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 455 -a 1 - -t 1.82211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 455 -a 1 h -t 1.82211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 455 -a 1 r -t 1.82297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 441 -a 1 + -t 1.82297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 441 -a 1 - -t 1.82297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 441 -a 1 h -t 1.82297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 441 -a 1 r -t 1.82383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 426 -a 1 + -t 1.825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 470 -a 1 - -t 1.825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 470 -a 1 h -t 1.825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 470 -a 1 r -t 1.82586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 456 -a 1 + -t 1.82586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 456 -a 1 - -t 1.82586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 456 -a 1 h -t 1.82586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 456 -a 1 r -t 1.82672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 442 -a 1 + -t 1.82672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 442 -a 1 - -t 1.82672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 442 -a 1 h -t 1.82672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 442 -a 1 r -t 1.82758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 427 -a 1 + -t 1.82875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 471 -a 1 - -t 1.82875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 471 -a 1 h -t 1.82875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 471 -a 1 r -t 1.82961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 457 -a 1 + -t 1.82961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 457 -a 1 - -t 1.82961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 457 -a 1 h -t 1.82961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 457 -a 1 r -t 1.83047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 443 -a 1 + -t 1.83047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 443 -a 1 - -t 1.83047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 443 -a 1 h -t 1.83047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 443 -a 1 r -t 1.83133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 428 -a 1 + -t 1.8325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 472 -a 1 - -t 1.8325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 472 -a 1 h -t 1.8325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 472 -a 1 r -t 1.83336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 458 -a 1 + -t 1.83336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 458 -a 1 - -t 1.83336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 458 -a 1 h -t 1.83336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 458 -a 1 r -t 1.83422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 444 -a 1 + -t 1.83422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 444 -a 1 - -t 1.83422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 444 -a 1 h -t 1.83422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 444 -a 1 r -t 1.83508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 429 -a 1 + -t 1.83625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 473 -a 1 - -t 1.83625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 473 -a 1 h -t 1.83625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 473 -a 1 r -t 1.83711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 459 -a 1 + -t 1.83711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 459 -a 1 - -t 1.83711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 459 -a 1 h -t 1.83711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 459 -a 1 r -t 1.83797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 445 -a 1 + -t 1.83797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 445 -a 1 - -t 1.83797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 445 -a 1 h -t 1.83797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 445 -a 1 r -t 1.83883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 430 -a 1 + -t 1.84 -s 1 -d 2 -p cbr -e 210 -c 1 -i 474 -a 1 - -t 1.84 -s 1 -d 2 -p cbr -e 210 -c 1 -i 474 -a 1 h -t 1.84 -s 1 -d 2 -p cbr -e 210 -c 1 -i 474 -a 1 r -t 1.84086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 460 -a 1 + -t 1.84086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 460 -a 1 - -t 1.84086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 460 -a 1 h -t 1.84086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 460 -a 1 r -t 1.84172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 446 -a 1 + -t 1.84172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 446 -a 1 - -t 1.84172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 446 -a 1 h -t 1.84172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 446 -a 1 r -t 1.84258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 431 -a 1 + -t 1.84375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 475 -a 1 - -t 1.84375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 475 -a 1 h -t 1.84375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 475 -a 1 r -t 1.84461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 461 -a 1 + -t 1.84461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 461 -a 1 - -t 1.84461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 461 -a 1 h -t 1.84461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 461 -a 1 r -t 1.84547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 447 -a 1 + -t 1.84547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 447 -a 1 - -t 1.84547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 447 -a 1 h -t 1.84547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 447 -a 1 r -t 1.84633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 432 -a 1 + -t 1.8475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 476 -a 1 - -t 1.8475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 476 -a 1 h -t 1.8475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 476 -a 1 r -t 1.84836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 462 -a 1 + -t 1.84836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 462 -a 1 - -t 1.84836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 462 -a 1 h -t 1.84836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 462 -a 1 r -t 1.84922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 448 -a 1 + -t 1.84922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 448 -a 1 - -t 1.84922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 448 -a 1 h -t 1.84922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 448 -a 1 r -t 1.85008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 433 -a 1 + -t 1.85125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 477 -a 1 - -t 1.85125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 477 -a 1 h -t 1.85125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 477 -a 1 r -t 1.85211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 463 -a 1 + -t 1.85211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 463 -a 1 - -t 1.85211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 463 -a 1 h -t 1.85211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 463 -a 1 r -t 1.85297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 449 -a 1 + -t 1.85297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 449 -a 1 - -t 1.85297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 449 -a 1 h -t 1.85297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 449 -a 1 r -t 1.85383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 434 -a 1 + -t 1.855 -s 1 -d 2 -p cbr -e 210 -c 1 -i 478 -a 1 - -t 1.855 -s 1 -d 2 -p cbr -e 210 -c 1 -i 478 -a 1 h -t 1.855 -s 1 -d 2 -p cbr -e 210 -c 1 -i 478 -a 1 r -t 1.85586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 464 -a 1 + -t 1.85586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 464 -a 1 - -t 1.85586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 464 -a 1 h -t 1.85586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 464 -a 1 r -t 1.85672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 450 -a 1 + -t 1.85672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 450 -a 1 - -t 1.85672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 450 -a 1 h -t 1.85672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 450 -a 1 r -t 1.85758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 435 -a 1 + -t 1.85875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 479 -a 1 - -t 1.85875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 479 -a 1 h -t 1.85875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 479 -a 1 r -t 1.85961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 465 -a 1 + -t 1.85961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 465 -a 1 - -t 1.85961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 465 -a 1 h -t 1.85961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 465 -a 1 r -t 1.86047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 451 -a 1 + -t 1.86047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 451 -a 1 - -t 1.86047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 451 -a 1 h -t 1.86047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 451 -a 1 r -t 1.86133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 436 -a 1 r -t 1.86189 -s 2 -d 0 -p ack -e 40 -c 0 -i 439 -a 0 -S 0 -y {4 4} f -t 1.86188999999999183 -s 0 -d 4 -n cwnd_ -a tcp -v 2.000000 -o 1.000000 -T v f -t 1.86188999999999183 -s 0 -d 4 -n cwnd_ -a tcp -v 1.000000 -o 2.000000 -T v + -t 1.86189 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 480 -a 0 -S 0 -f 0 -m 0 -y {5 5} - -t 1.86189 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 480 -a 0 -S 0 -y {5 5} h -t 1.86189 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 480 -a 0 -S 0 -y {-1 -1} + -t 1.8625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 481 -a 1 - -t 1.8625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 481 -a 1 h -t 1.8625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 481 -a 1 r -t 1.86336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 466 -a 1 + -t 1.86336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 466 -a 1 - -t 1.86336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 466 -a 1 h -t 1.86336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 466 -a 1 r -t 1.86422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 452 -a 1 + -t 1.86422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 452 -a 1 - -t 1.86422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 452 -a 1 h -t 1.86422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 452 -a 1 r -t 1.86508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 437 -a 1 + -t 1.86625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 482 -a 1 - -t 1.86625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 482 -a 1 h -t 1.86625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 482 -a 1 r -t 1.86711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 467 -a 1 + -t 1.86711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 467 -a 1 - -t 1.86711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 467 -a 1 h -t 1.86711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 467 -a 1 r -t 1.86797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 453 -a 1 + -t 1.86797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 453 -a 1 - -t 1.86797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 453 -a 1 h -t 1.86797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 453 -a 1 r -t 1.86883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 438 -a 1 + -t 1.87 -s 1 -d 2 -p cbr -e 210 -c 1 -i 483 -a 1 - -t 1.87 -s 1 -d 2 -p cbr -e 210 -c 1 -i 483 -a 1 h -t 1.87 -s 1 -d 2 -p cbr -e 210 -c 1 -i 483 -a 1 r -t 1.87086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 468 -a 1 + -t 1.87086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 468 -a 1 - -t 1.87086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 468 -a 1 h -t 1.87086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 468 -a 1 r -t 1.87172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 454 -a 1 + -t 1.87172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 454 -a 1 - -t 1.87172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 454 -a 1 h -t 1.87172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 454 -a 1 r -t 1.87258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 440 -a 1 + -t 1.87375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 484 -a 1 - -t 1.87375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 484 -a 1 h -t 1.87375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 484 -a 1 r -t 1.87461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 469 -a 1 + -t 1.87461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 469 -a 1 - -t 1.87461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 469 -a 1 h -t 1.87461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 469 -a 1 r -t 1.87547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 455 -a 1 + -t 1.87547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 455 -a 1 - -t 1.87547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 455 -a 1 h -t 1.87547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 455 -a 1 r -t 1.87633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 441 -a 1 + -t 1.8775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 485 -a 1 - -t 1.8775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 485 -a 1 h -t 1.8775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 485 -a 1 r -t 1.87836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 470 -a 1 + -t 1.87836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 470 -a 1 - -t 1.87836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 470 -a 1 h -t 1.87836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 470 -a 1 r -t 1.87922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 456 -a 1 + -t 1.87922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 456 -a 1 - -t 1.87922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 456 -a 1 h -t 1.87922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 456 -a 1 r -t 1.88008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 442 -a 1 + -t 1.88125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 486 -a 1 - -t 1.88125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 486 -a 1 h -t 1.88125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 486 -a 1 r -t 1.88211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 471 -a 1 + -t 1.88211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 471 -a 1 - -t 1.88211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 471 -a 1 h -t 1.88211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 471 -a 1 r -t 1.88297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 457 -a 1 + -t 1.88297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 457 -a 1 - -t 1.88297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 457 -a 1 h -t 1.88297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 457 -a 1 r -t 1.88383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 443 -a 1 + -t 1.885 -s 1 -d 2 -p cbr -e 210 -c 1 -i 487 -a 1 - -t 1.885 -s 1 -d 2 -p cbr -e 210 -c 1 -i 487 -a 1 h -t 1.885 -s 1 -d 2 -p cbr -e 210 -c 1 -i 487 -a 1 r -t 1.88586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 472 -a 1 + -t 1.88586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 472 -a 1 - -t 1.88586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 472 -a 1 h -t 1.88586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 472 -a 1 r -t 1.88672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 458 -a 1 + -t 1.88672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 458 -a 1 - -t 1.88672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 458 -a 1 h -t 1.88672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 458 -a 1 r -t 1.88758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 444 -a 1 + -t 1.88875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 488 -a 1 - -t 1.88875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 488 -a 1 h -t 1.88875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 488 -a 1 r -t 1.88961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 473 -a 1 + -t 1.88961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 473 -a 1 - -t 1.88961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 473 -a 1 h -t 1.88961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 473 -a 1 r -t 1.89047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 459 -a 1 + -t 1.89047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 459 -a 1 - -t 1.89047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 459 -a 1 h -t 1.89047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 459 -a 1 r -t 1.89133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 445 -a 1 + -t 1.8925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 489 -a 1 - -t 1.8925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 489 -a 1 h -t 1.8925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 489 -a 1 r -t 1.89336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 474 -a 1 + -t 1.89336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 474 -a 1 - -t 1.89336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 474 -a 1 h -t 1.89336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 474 -a 1 r -t 1.89422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 460 -a 1 + -t 1.89422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 460 -a 1 - -t 1.89422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 460 -a 1 h -t 1.89422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 460 -a 1 r -t 1.89508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 446 -a 1 + -t 1.89625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 490 -a 1 - -t 1.89625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 490 -a 1 h -t 1.89625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 490 -a 1 r -t 1.89711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 475 -a 1 + -t 1.89711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 475 -a 1 - -t 1.89711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 475 -a 1 h -t 1.89711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 475 -a 1 r -t 1.89797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 461 -a 1 + -t 1.89797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 461 -a 1 - -t 1.89797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 461 -a 1 h -t 1.89797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 461 -a 1 r -t 1.89883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 447 -a 1 + -t 1.9 -s 1 -d 2 -p cbr -e 210 -c 1 -i 491 -a 1 - -t 1.9 -s 1 -d 2 -p cbr -e 210 -c 1 -i 491 -a 1 h -t 1.9 -s 1 -d 2 -p cbr -e 210 -c 1 -i 491 -a 1 v -t 1.8999999999999999 sim_annotation 1.8999999999999999 11 Receive Ack_2 r -t 1.90086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 476 -a 1 + -t 1.90086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 476 -a 1 - -t 1.90086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 476 -a 1 h -t 1.90086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 476 -a 1 r -t 1.90172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 462 -a 1 + -t 1.90172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 462 -a 1 - -t 1.90172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 462 -a 1 h -t 1.90172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 462 -a 1 r -t 1.90258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 448 -a 1 + -t 1.90375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 492 -a 1 - -t 1.90375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 492 -a 1 h -t 1.90375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 492 -a 1 r -t 1.90461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 477 -a 1 + -t 1.90461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 477 -a 1 - -t 1.90461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 477 -a 1 h -t 1.90461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 477 -a 1 r -t 1.90547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 463 -a 1 + -t 1.90547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 463 -a 1 - -t 1.90547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 463 -a 1 h -t 1.90547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 463 -a 1 r -t 1.90633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 449 -a 1 + -t 1.9075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 493 -a 1 - -t 1.9075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 493 -a 1 h -t 1.9075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 493 -a 1 r -t 1.90836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 478 -a 1 + -t 1.90836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 478 -a 1 - -t 1.90836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 478 -a 1 h -t 1.90836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 478 -a 1 r -t 1.90922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 464 -a 1 + -t 1.90922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 464 -a 1 - -t 1.90922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 464 -a 1 h -t 1.90922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 464 -a 1 r -t 1.91008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 450 -a 1 + -t 1.91125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 494 -a 1 - -t 1.91125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 494 -a 1 h -t 1.91125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 494 -a 1 r -t 1.91211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 479 -a 1 + -t 1.91211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 479 -a 1 - -t 1.91211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 479 -a 1 h -t 1.91211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 479 -a 1 r -t 1.91297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 465 -a 1 + -t 1.91297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 465 -a 1 - -t 1.91297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 465 -a 1 h -t 1.91297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 465 -a 1 r -t 1.91383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 451 -a 1 + -t 1.915 -s 1 -d 2 -p cbr -e 210 -c 1 -i 495 -a 1 - -t 1.915 -s 1 -d 2 -p cbr -e 210 -c 1 -i 495 -a 1 h -t 1.915 -s 1 -d 2 -p cbr -e 210 -c 1 -i 495 -a 1 r -t 1.91586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 481 -a 1 + -t 1.91586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 481 -a 1 - -t 1.91586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 481 -a 1 h -t 1.91586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 481 -a 1 r -t 1.91672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 466 -a 1 + -t 1.91672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 466 -a 1 - -t 1.91672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 466 -a 1 h -t 1.91672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 466 -a 1 r -t 1.91758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 452 -a 1 + -t 1.91875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 496 -a 1 - -t 1.91875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 496 -a 1 h -t 1.91875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 496 -a 1 r -t 1.91961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 482 -a 1 + -t 1.91961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 482 -a 1 - -t 1.91961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 482 -a 1 h -t 1.91961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 482 -a 1 r -t 1.92047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 467 -a 1 + -t 1.92047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 467 -a 1 - -t 1.92047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 467 -a 1 h -t 1.92047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 467 -a 1 r -t 1.92133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 453 -a 1 + -t 1.9225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 497 -a 1 - -t 1.9225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 497 -a 1 h -t 1.9225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 497 -a 1 r -t 1.92336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 483 -a 1 + -t 1.92336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 483 -a 1 - -t 1.92336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 483 -a 1 h -t 1.92336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 483 -a 1 r -t 1.92422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 468 -a 1 + -t 1.92422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 468 -a 1 - -t 1.92422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 468 -a 1 h -t 1.92422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 468 -a 1 r -t 1.92508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 454 -a 1 + -t 1.92625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 498 -a 1 - -t 1.92625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 498 -a 1 h -t 1.92625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 498 -a 1 r -t 1.92711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 484 -a 1 + -t 1.92711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 484 -a 1 - -t 1.92711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 484 -a 1 h -t 1.92711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 484 -a 1 r -t 1.92789 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 480 -a 0 -S 0 -y {5 5} + -t 1.92789 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 480 -a 0 -S 0 -y {5 5} r -t 1.92797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 469 -a 1 + -t 1.92797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 469 -a 1 - -t 1.92797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 469 -a 1 h -t 1.92797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 469 -a 1 r -t 1.92883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 455 -a 1 + -t 1.93 -s 1 -d 2 -p cbr -e 210 -c 1 -i 499 -a 1 - -t 1.93 -s 1 -d 2 -p cbr -e 210 -c 1 -i 499 -a 1 h -t 1.93 -s 1 -d 2 -p cbr -e 210 -c 1 -i 499 -a 1 - -t 1.93047 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 480 -a 0 -S 0 -y {5 5} h -t 1.93047 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 480 -a 0 -S 0 -y {-1 -1} r -t 1.93086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 485 -a 1 + -t 1.93086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 485 -a 1 r -t 1.93172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 470 -a 1 + -t 1.93172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 470 -a 1 - -t 1.93172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 470 -a 1 h -t 1.93172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 470 -a 1 r -t 1.93258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 456 -a 1 + -t 1.93375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 500 -a 1 - -t 1.93375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 500 -a 1 h -t 1.93375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 500 -a 1 r -t 1.93461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 486 -a 1 + -t 1.93461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 486 -a 1 d -t 1.93461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 486 -a 1 r -t 1.93547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 471 -a 1 + -t 1.93547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 471 -a 1 - -t 1.93547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 471 -a 1 h -t 1.93547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 471 -a 1 r -t 1.93633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 457 -a 1 + -t 1.9375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 501 -a 1 - -t 1.9375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 501 -a 1 h -t 1.9375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 501 -a 1 r -t 1.93836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 487 -a 1 + -t 1.93836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 487 -a 1 d -t 1.93836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 487 -a 1 r -t 1.93922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 472 -a 1 + -t 1.93922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 472 -a 1 - -t 1.93922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 472 -a 1 h -t 1.93922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 472 -a 1 r -t 1.94008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 458 -a 1 + -t 1.94125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 502 -a 1 - -t 1.94125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 502 -a 1 h -t 1.94125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 502 -a 1 r -t 1.94211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 488 -a 1 + -t 1.94211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 488 -a 1 d -t 1.94211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 488 -a 1 r -t 1.94297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 473 -a 1 + -t 1.94297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 473 -a 1 - -t 1.94297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 473 -a 1 h -t 1.94297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 473 -a 1 r -t 1.94383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 459 -a 1 + -t 1.945 -s 1 -d 2 -p cbr -e 210 -c 1 -i 503 -a 1 - -t 1.945 -s 1 -d 2 -p cbr -e 210 -c 1 -i 503 -a 1 h -t 1.945 -s 1 -d 2 -p cbr -e 210 -c 1 -i 503 -a 1 r -t 1.94586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 489 -a 1 + -t 1.94586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 489 -a 1 d -t 1.94586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 489 -a 1 - -t 1.94647 -s 2 -d 3 -p cbr -e 210 -c 1 -i 485 -a 1 h -t 1.94647 -s 2 -d 3 -p cbr -e 210 -c 1 -i 485 -a 1 r -t 1.94672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 474 -a 1 + -t 1.94672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 474 -a 1 - -t 1.94672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 474 -a 1 h -t 1.94672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 474 -a 1 r -t 1.94758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 460 -a 1 + -t 1.94875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 504 -a 1 - -t 1.94875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 504 -a 1 h -t 1.94875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 504 -a 1 r -t 1.94961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 490 -a 1 + -t 1.94961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 490 -a 1 - -t 1.94983 -s 2 -d 3 -p cbr -e 210 -c 1 -i 490 -a 1 h -t 1.94983 -s 2 -d 3 -p cbr -e 210 -c 1 -i 490 -a 1 r -t 1.95047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 475 -a 1 + -t 1.95047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 475 -a 1 - -t 1.95047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 475 -a 1 h -t 1.95047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 475 -a 1 r -t 1.95133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 461 -a 1 + -t 1.9525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 505 -a 1 - -t 1.9525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 505 -a 1 h -t 1.9525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 505 -a 1 r -t 1.95336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 491 -a 1 + -t 1.95336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 491 -a 1 - -t 1.95336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 491 -a 1 h -t 1.95336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 491 -a 1 r -t 1.95422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 476 -a 1 + -t 1.95422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 476 -a 1 - -t 1.95422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 476 -a 1 h -t 1.95422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 476 -a 1 r -t 1.95508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 462 -a 1 + -t 1.95625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 506 -a 1 - -t 1.95625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 506 -a 1 h -t 1.95625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 506 -a 1 r -t 1.95711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 492 -a 1 + -t 1.95711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 492 -a 1 - -t 1.95711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 492 -a 1 h -t 1.95711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 492 -a 1 r -t 1.95797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 477 -a 1 + -t 1.95797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 477 -a 1 - -t 1.95797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 477 -a 1 h -t 1.95797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 477 -a 1 r -t 1.95883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 463 -a 1 + -t 1.96 -s 1 -d 2 -p cbr -e 210 -c 1 -i 507 -a 1 - -t 1.96 -s 1 -d 2 -p cbr -e 210 -c 1 -i 507 -a 1 h -t 1.96 -s 1 -d 2 -p cbr -e 210 -c 1 -i 507 -a 1 r -t 1.96086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 493 -a 1 + -t 1.96086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 493 -a 1 - -t 1.96086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 493 -a 1 h -t 1.96086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 493 -a 1 r -t 1.96172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 478 -a 1 + -t 1.96172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 478 -a 1 - -t 1.96172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 478 -a 1 h -t 1.96172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 478 -a 1 r -t 1.96258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 464 -a 1 + -t 1.96375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 508 -a 1 - -t 1.96375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 508 -a 1 h -t 1.96375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 508 -a 1 r -t 1.96461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 494 -a 1 + -t 1.96461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 494 -a 1 - -t 1.96461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 494 -a 1 h -t 1.96461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 494 -a 1 r -t 1.96547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 479 -a 1 + -t 1.96547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 479 -a 1 - -t 1.96547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 479 -a 1 h -t 1.96547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 479 -a 1 r -t 1.96633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 465 -a 1 + -t 1.9675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 509 -a 1 - -t 1.9675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 509 -a 1 h -t 1.9675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 509 -a 1 r -t 1.96836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 495 -a 1 + -t 1.96836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 495 -a 1 - -t 1.96836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 495 -a 1 h -t 1.96836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 495 -a 1 r -t 1.96922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 481 -a 1 + -t 1.96922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 481 -a 1 - -t 1.96922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 481 -a 1 h -t 1.96922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 481 -a 1 r -t 1.97008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 466 -a 1 + -t 1.97125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 510 -a 1 - -t 1.97125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 510 -a 1 h -t 1.97125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 510 -a 1 r -t 1.97211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 496 -a 1 + -t 1.97211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 496 -a 1 - -t 1.97211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 496 -a 1 h -t 1.97211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 496 -a 1 r -t 1.97297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 482 -a 1 + -t 1.97297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 482 -a 1 - -t 1.97297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 482 -a 1 h -t 1.97297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 482 -a 1 r -t 1.97383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 467 -a 1 + -t 1.975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 511 -a 1 - -t 1.975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 511 -a 1 h -t 1.975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 511 -a 1 r -t 1.97586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 497 -a 1 + -t 1.97586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 497 -a 1 - -t 1.97586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 497 -a 1 h -t 1.97586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 497 -a 1 r -t 1.97672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 483 -a 1 + -t 1.97672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 483 -a 1 - -t 1.97672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 483 -a 1 h -t 1.97672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 483 -a 1 r -t 1.97758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 468 -a 1 + -t 1.97875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 512 -a 1 - -t 1.97875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 512 -a 1 h -t 1.97875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 512 -a 1 r -t 1.97961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 498 -a 1 + -t 1.97961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 498 -a 1 - -t 1.97961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 498 -a 1 h -t 1.97961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 498 -a 1 r -t 1.98047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 484 -a 1 + -t 1.98047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 484 -a 1 - -t 1.98047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 484 -a 1 h -t 1.98047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 484 -a 1 r -t 1.98133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 469 -a 1 + -t 1.9825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 513 -a 1 - -t 1.9825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 513 -a 1 h -t 1.9825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 513 -a 1 r -t 1.98336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 499 -a 1 + -t 1.98336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 499 -a 1 - -t 1.98336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 499 -a 1 h -t 1.98336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 499 -a 1 r -t 1.98508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 470 -a 1 + -t 1.98625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 514 -a 1 - -t 1.98625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 514 -a 1 h -t 1.98625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 514 -a 1 r -t 1.98711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 500 -a 1 + -t 1.98711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 500 -a 1 - -t 1.98711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 500 -a 1 h -t 1.98711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 500 -a 1 r -t 1.98883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 471 -a 1 + -t 1.99 -s 1 -d 2 -p cbr -e 210 -c 1 -i 515 -a 1 - -t 1.99 -s 1 -d 2 -p cbr -e 210 -c 1 -i 515 -a 1 h -t 1.99 -s 1 -d 2 -p cbr -e 210 -c 1 -i 515 -a 1 r -t 1.99086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 501 -a 1 + -t 1.99086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 501 -a 1 - -t 1.99086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 501 -a 1 h -t 1.99086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 501 -a 1 r -t 1.99258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 472 -a 1 + -t 1.99375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 516 -a 1 - -t 1.99375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 516 -a 1 h -t 1.99375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 516 -a 1 r -t 1.99461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 502 -a 1 + -t 1.99461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 502 -a 1 - -t 1.99461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 502 -a 1 h -t 1.99461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 502 -a 1 r -t 1.99633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 473 -a 1 r -t 1.99647 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 480 -a 0 -S 0 -y {5 5} + -t 1.99647 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 480 -a 0 -S 0 -y {5 5} - -t 1.99647 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 480 -a 0 -S 0 -y {5 5} h -t 1.99647 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 480 -a 0 -S 0 -y {-1 -1} + -t 1.9975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 517 -a 1 - -t 1.9975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 517 -a 1 h -t 1.9975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 517 -a 1 r -t 1.99836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 503 -a 1 + -t 1.99836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 503 -a 1 - -t 1.99836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 503 -a 1 h -t 1.99836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 503 -a 1 r -t 1.99983 -s 2 -d 3 -p cbr -e 210 -c 1 -i 485 -a 1 + -t 1.99983 -s 3 -d 5 -p cbr -e 210 -c 1 -i 485 -a 1 - -t 1.99983 -s 3 -d 5 -p cbr -e 210 -c 1 -i 485 -a 1 h -t 1.99983 -s 3 -d 5 -p cbr -e 210 -c 1 -i 485 -a 1 v -t 2 sim_annotation 2 12 FTP stops r -t 2.00008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 474 -a 1 + -t 2.00125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 518 -a 1 - -t 2.00125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 518 -a 1 h -t 2.00125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 518 -a 1 r -t 2.00211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 504 -a 1 + -t 2.00211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 504 -a 1 - -t 2.00211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 504 -a 1 h -t 2.00211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 504 -a 1 r -t 2.00319 -s 2 -d 3 -p cbr -e 210 -c 1 -i 490 -a 1 + -t 2.00319 -s 3 -d 5 -p cbr -e 210 -c 1 -i 490 -a 1 - -t 2.00319 -s 3 -d 5 -p cbr -e 210 -c 1 -i 490 -a 1 h -t 2.00319 -s 3 -d 5 -p cbr -e 210 -c 1 -i 490 -a 1 r -t 2.00383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 475 -a 1 + -t 2.005 -s 1 -d 2 -p cbr -e 210 -c 1 -i 519 -a 1 - -t 2.005 -s 1 -d 2 -p cbr -e 210 -c 1 -i 519 -a 1 h -t 2.005 -s 1 -d 2 -p cbr -e 210 -c 1 -i 519 -a 1 r -t 2.00586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 505 -a 1 + -t 2.00586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 505 -a 1 - -t 2.00586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 505 -a 1 h -t 2.00586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 505 -a 1 r -t 2.00672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 491 -a 1 + -t 2.00672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 491 -a 1 - -t 2.00672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 491 -a 1 h -t 2.00672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 491 -a 1 r -t 2.00758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 476 -a 1 + -t 2.00875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 520 -a 1 - -t 2.00875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 520 -a 1 h -t 2.00875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 520 -a 1 r -t 2.00961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 506 -a 1 + -t 2.00961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 506 -a 1 - -t 2.00961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 506 -a 1 h -t 2.00961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 506 -a 1 r -t 2.01047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 492 -a 1 + -t 2.01047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 492 -a 1 - -t 2.01047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 492 -a 1 h -t 2.01047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 492 -a 1 r -t 2.01133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 477 -a 1 + -t 2.0125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 521 -a 1 - -t 2.0125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 521 -a 1 h -t 2.0125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 521 -a 1 r -t 2.01336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 507 -a 1 + -t 2.01336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 507 -a 1 - -t 2.01336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 507 -a 1 h -t 2.01336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 507 -a 1 r -t 2.01422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 493 -a 1 + -t 2.01422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 493 -a 1 - -t 2.01422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 493 -a 1 h -t 2.01422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 493 -a 1 r -t 2.01508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 478 -a 1 + -t 2.01625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 522 -a 1 - -t 2.01625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 522 -a 1 h -t 2.01625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 522 -a 1 r -t 2.01711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 508 -a 1 + -t 2.01711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 508 -a 1 - -t 2.01711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 508 -a 1 h -t 2.01711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 508 -a 1 r -t 2.01797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 494 -a 1 + -t 2.01797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 494 -a 1 - -t 2.01797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 494 -a 1 h -t 2.01797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 494 -a 1 r -t 2.01883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 479 -a 1 + -t 2.02 -s 1 -d 2 -p cbr -e 210 -c 1 -i 523 -a 1 - -t 2.02 -s 1 -d 2 -p cbr -e 210 -c 1 -i 523 -a 1 h -t 2.02 -s 1 -d 2 -p cbr -e 210 -c 1 -i 523 -a 1 r -t 2.02086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 509 -a 1 + -t 2.02086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 509 -a 1 - -t 2.02086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 509 -a 1 h -t 2.02086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 509 -a 1 r -t 2.02172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 495 -a 1 + -t 2.02172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 495 -a 1 - -t 2.02172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 495 -a 1 h -t 2.02172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 495 -a 1 r -t 2.02258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 481 -a 1 + -t 2.02375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 524 -a 1 - -t 2.02375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 524 -a 1 h -t 2.02375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 524 -a 1 r -t 2.02461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 510 -a 1 + -t 2.02461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 510 -a 1 - -t 2.02461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 510 -a 1 h -t 2.02461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 510 -a 1 r -t 2.02547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 496 -a 1 + -t 2.02547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 496 -a 1 - -t 2.02547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 496 -a 1 h -t 2.02547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 496 -a 1 r -t 2.02633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 482 -a 1 + -t 2.0275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 525 -a 1 - -t 2.0275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 525 -a 1 h -t 2.0275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 525 -a 1 r -t 2.02836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 511 -a 1 + -t 2.02836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 511 -a 1 - -t 2.02836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 511 -a 1 h -t 2.02836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 511 -a 1 r -t 2.02922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 497 -a 1 + -t 2.02922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 497 -a 1 - -t 2.02922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 497 -a 1 h -t 2.02922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 497 -a 1 r -t 2.03008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 483 -a 1 + -t 2.03125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 526 -a 1 - -t 2.03125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 526 -a 1 h -t 2.03125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 526 -a 1 r -t 2.03211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 512 -a 1 + -t 2.03211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 512 -a 1 - -t 2.03211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 512 -a 1 h -t 2.03211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 512 -a 1 r -t 2.03297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 498 -a 1 + -t 2.03297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 498 -a 1 - -t 2.03297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 498 -a 1 h -t 2.03297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 498 -a 1 r -t 2.03383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 484 -a 1 + -t 2.035 -s 1 -d 2 -p cbr -e 210 -c 1 -i 527 -a 1 - -t 2.035 -s 1 -d 2 -p cbr -e 210 -c 1 -i 527 -a 1 h -t 2.035 -s 1 -d 2 -p cbr -e 210 -c 1 -i 527 -a 1 r -t 2.03586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 513 -a 1 + -t 2.03586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 513 -a 1 - -t 2.03586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 513 -a 1 h -t 2.03586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 513 -a 1 r -t 2.03672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 499 -a 1 + -t 2.03672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 499 -a 1 - -t 2.03672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 499 -a 1 h -t 2.03672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 499 -a 1 + -t 2.03875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 528 -a 1 - -t 2.03875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 528 -a 1 h -t 2.03875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 528 -a 1 r -t 2.03961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 514 -a 1 + -t 2.03961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 514 -a 1 - -t 2.03961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 514 -a 1 h -t 2.03961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 514 -a 1 r -t 2.04047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 500 -a 1 + -t 2.04047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 500 -a 1 - -t 2.04047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 500 -a 1 h -t 2.04047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 500 -a 1 + -t 2.0425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 529 -a 1 - -t 2.0425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 529 -a 1 h -t 2.0425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 529 -a 1 r -t 2.04336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 515 -a 1 + -t 2.04336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 515 -a 1 - -t 2.04336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 515 -a 1 h -t 2.04336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 515 -a 1 r -t 2.04422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 501 -a 1 + -t 2.04422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 501 -a 1 - -t 2.04422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 501 -a 1 h -t 2.04422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 501 -a 1 + -t 2.04625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 530 -a 1 - -t 2.04625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 530 -a 1 h -t 2.04625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 530 -a 1 r -t 2.04711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 516 -a 1 + -t 2.04711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 516 -a 1 - -t 2.04711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 516 -a 1 h -t 2.04711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 516 -a 1 r -t 2.04797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 502 -a 1 + -t 2.04797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 502 -a 1 - -t 2.04797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 502 -a 1 h -t 2.04797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 502 -a 1 + -t 2.05 -s 1 -d 2 -p cbr -e 210 -c 1 -i 531 -a 1 - -t 2.05 -s 1 -d 2 -p cbr -e 210 -c 1 -i 531 -a 1 h -t 2.05 -s 1 -d 2 -p cbr -e 210 -c 1 -i 531 -a 1 r -t 2.05086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 517 -a 1 + -t 2.05086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 517 -a 1 - -t 2.05086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 517 -a 1 h -t 2.05086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 517 -a 1 r -t 2.05172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 503 -a 1 + -t 2.05172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 503 -a 1 - -t 2.05172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 503 -a 1 h -t 2.05172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 503 -a 1 r -t 2.05319 -s 3 -d 5 -p cbr -e 210 -c 1 -i 485 -a 1 + -t 2.05375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 532 -a 1 - -t 2.05375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 532 -a 1 h -t 2.05375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 532 -a 1 r -t 2.05461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 518 -a 1 + -t 2.05461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 518 -a 1 - -t 2.05461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 518 -a 1 h -t 2.05461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 518 -a 1 r -t 2.05547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 504 -a 1 + -t 2.05547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 504 -a 1 - -t 2.05547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 504 -a 1 h -t 2.05547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 504 -a 1 r -t 2.05655 -s 3 -d 5 -p cbr -e 210 -c 1 -i 490 -a 1 + -t 2.0575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 533 -a 1 - -t 2.0575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 533 -a 1 h -t 2.0575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 533 -a 1 r -t 2.05836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 519 -a 1 + -t 2.05836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 519 -a 1 - -t 2.05836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 519 -a 1 h -t 2.05836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 519 -a 1 r -t 2.05922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 505 -a 1 + -t 2.05922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 505 -a 1 - -t 2.05922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 505 -a 1 h -t 2.05922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 505 -a 1 r -t 2.06008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 491 -a 1 + -t 2.06125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 534 -a 1 - -t 2.06125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 534 -a 1 h -t 2.06125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 534 -a 1 r -t 2.06211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 520 -a 1 + -t 2.06211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 520 -a 1 - -t 2.06211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 520 -a 1 h -t 2.06211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 520 -a 1 r -t 2.06247 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 480 -a 0 -S 0 -y {5 5} + -t 2.06247 -s 4 -d 3 -p ack -e 40 -c 0 -i 535 -a 0 -S 0 -y {5 5} - -t 2.06247 -s 4 -d 3 -p ack -e 40 -c 0 -i 535 -a 0 -S 0 -y {5 5} h -t 2.06247 -s 4 -d 3 -p ack -e 40 -c 0 -i 535 -a 0 -S 0 -y {-1 -1} r -t 2.06297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 506 -a 1 + -t 2.06297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 506 -a 1 - -t 2.06297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 506 -a 1 h -t 2.06297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 506 -a 1 r -t 2.06383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 492 -a 1 + -t 2.065 -s 1 -d 2 -p cbr -e 210 -c 1 -i 536 -a 1 - -t 2.065 -s 1 -d 2 -p cbr -e 210 -c 1 -i 536 -a 1 h -t 2.065 -s 1 -d 2 -p cbr -e 210 -c 1 -i 536 -a 1 r -t 2.06586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 521 -a 1 + -t 2.06586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 521 -a 1 - -t 2.06586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 521 -a 1 h -t 2.06586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 521 -a 1 r -t 2.06672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 507 -a 1 + -t 2.06672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 507 -a 1 - -t 2.06672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 507 -a 1 h -t 2.06672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 507 -a 1 r -t 2.06758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 493 -a 1 + -t 2.06875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 537 -a 1 - -t 2.06875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 537 -a 1 h -t 2.06875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 537 -a 1 r -t 2.06961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 522 -a 1 + -t 2.06961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 522 -a 1 - -t 2.06961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 522 -a 1 h -t 2.06961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 522 -a 1 r -t 2.07047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 508 -a 1 + -t 2.07047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 508 -a 1 - -t 2.07047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 508 -a 1 h -t 2.07047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 508 -a 1 r -t 2.07133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 494 -a 1 + -t 2.0725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 538 -a 1 - -t 2.0725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 538 -a 1 h -t 2.0725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 538 -a 1 r -t 2.07336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 523 -a 1 + -t 2.07336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 523 -a 1 - -t 2.07336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 523 -a 1 h -t 2.07336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 523 -a 1 r -t 2.07422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 509 -a 1 + -t 2.07422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 509 -a 1 - -t 2.07422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 509 -a 1 h -t 2.07422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 509 -a 1 r -t 2.07508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 495 -a 1 + -t 2.07625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 539 -a 1 - -t 2.07625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 539 -a 1 h -t 2.07625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 539 -a 1 r -t 2.07711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 524 -a 1 + -t 2.07711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 524 -a 1 - -t 2.07711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 524 -a 1 h -t 2.07711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 524 -a 1 r -t 2.07797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 510 -a 1 + -t 2.07797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 510 -a 1 - -t 2.07797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 510 -a 1 h -t 2.07797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 510 -a 1 r -t 2.07883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 496 -a 1 + -t 2.08 -s 1 -d 2 -p cbr -e 210 -c 1 -i 540 -a 1 - -t 2.08 -s 1 -d 2 -p cbr -e 210 -c 1 -i 540 -a 1 h -t 2.08 -s 1 -d 2 -p cbr -e 210 -c 1 -i 540 -a 1 r -t 2.08086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 525 -a 1 + -t 2.08086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 525 -a 1 - -t 2.08086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 525 -a 1 h -t 2.08086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 525 -a 1 r -t 2.08172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 511 -a 1 + -t 2.08172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 511 -a 1 - -t 2.08172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 511 -a 1 h -t 2.08172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 511 -a 1 r -t 2.08258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 497 -a 1 + -t 2.08375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 541 -a 1 - -t 2.08375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 541 -a 1 h -t 2.08375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 541 -a 1 r -t 2.08461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 526 -a 1 + -t 2.08461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 526 -a 1 - -t 2.08461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 526 -a 1 h -t 2.08461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 526 -a 1 r -t 2.08547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 512 -a 1 + -t 2.08547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 512 -a 1 - -t 2.08547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 512 -a 1 h -t 2.08547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 512 -a 1 r -t 2.08633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 498 -a 1 + -t 2.0875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 542 -a 1 - -t 2.0875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 542 -a 1 h -t 2.0875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 542 -a 1 r -t 2.08836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 527 -a 1 + -t 2.08836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 527 -a 1 - -t 2.08836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 527 -a 1 h -t 2.08836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 527 -a 1 r -t 2.08922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 513 -a 1 + -t 2.08922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 513 -a 1 - -t 2.08922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 513 -a 1 h -t 2.08922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 513 -a 1 r -t 2.09008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 499 -a 1 + -t 2.09125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 543 -a 1 - -t 2.09125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 543 -a 1 h -t 2.09125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 543 -a 1 r -t 2.09211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 528 -a 1 + -t 2.09211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 528 -a 1 - -t 2.09211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 528 -a 1 h -t 2.09211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 528 -a 1 r -t 2.09297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 514 -a 1 + -t 2.09297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 514 -a 1 - -t 2.09297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 514 -a 1 h -t 2.09297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 514 -a 1 r -t 2.09383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 500 -a 1 + -t 2.095 -s 1 -d 2 -p cbr -e 210 -c 1 -i 544 -a 1 - -t 2.095 -s 1 -d 2 -p cbr -e 210 -c 1 -i 544 -a 1 h -t 2.095 -s 1 -d 2 -p cbr -e 210 -c 1 -i 544 -a 1 r -t 2.09586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 529 -a 1 + -t 2.09586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 529 -a 1 - -t 2.09586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 529 -a 1 h -t 2.09586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 529 -a 1 r -t 2.09672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 515 -a 1 + -t 2.09672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 515 -a 1 - -t 2.09672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 515 -a 1 h -t 2.09672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 515 -a 1 r -t 2.09758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 501 -a 1 + -t 2.09875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 545 -a 1 - -t 2.09875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 545 -a 1 h -t 2.09875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 545 -a 1 r -t 2.09961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 530 -a 1 + -t 2.09961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 530 -a 1 - -t 2.09961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 530 -a 1 h -t 2.09961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 530 -a 1 r -t 2.10047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 516 -a 1 + -t 2.10047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 516 -a 1 - -t 2.10047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 516 -a 1 h -t 2.10047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 516 -a 1 r -t 2.10133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 502 -a 1 + -t 2.1025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 546 -a 1 - -t 2.1025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 546 -a 1 h -t 2.1025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 546 -a 1 r -t 2.10336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 531 -a 1 + -t 2.10336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 531 -a 1 - -t 2.10336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 531 -a 1 h -t 2.10336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 531 -a 1 r -t 2.10422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 517 -a 1 + -t 2.10422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 517 -a 1 - -t 2.10422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 517 -a 1 h -t 2.10422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 517 -a 1 r -t 2.10508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 503 -a 1 + -t 2.10625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 547 -a 1 - -t 2.10625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 547 -a 1 h -t 2.10625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 547 -a 1 r -t 2.10711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 532 -a 1 + -t 2.10711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 532 -a 1 - -t 2.10711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 532 -a 1 h -t 2.10711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 532 -a 1 r -t 2.10797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 518 -a 1 + -t 2.10797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 518 -a 1 - -t 2.10797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 518 -a 1 h -t 2.10797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 518 -a 1 r -t 2.10883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 504 -a 1 + -t 2.11 -s 1 -d 2 -p cbr -e 210 -c 1 -i 548 -a 1 - -t 2.11 -s 1 -d 2 -p cbr -e 210 -c 1 -i 548 -a 1 h -t 2.11 -s 1 -d 2 -p cbr -e 210 -c 1 -i 548 -a 1 r -t 2.11086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 533 -a 1 + -t 2.11086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 533 -a 1 - -t 2.11086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 533 -a 1 h -t 2.11086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 533 -a 1 r -t 2.11172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 519 -a 1 + -t 2.11172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 519 -a 1 - -t 2.11172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 519 -a 1 h -t 2.11172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 519 -a 1 r -t 2.11258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 505 -a 1 r -t 2.11311 -s 4 -d 3 -p ack -e 40 -c 0 -i 535 -a 0 -S 0 -y {5 5} + -t 2.11311 -s 3 -d 2 -p ack -e 40 -c 0 -i 535 -a 0 -S 0 -y {5 5} - -t 2.11311 -s 3 -d 2 -p ack -e 40 -c 0 -i 535 -a 0 -S 0 -y {5 5} h -t 2.11311 -s 3 -d 2 -p ack -e 40 -c 0 -i 535 -a 0 -S 0 -y {-1 -1} + -t 2.11375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 549 -a 1 - -t 2.11375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 549 -a 1 h -t 2.11375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 549 -a 1 r -t 2.11461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 534 -a 1 + -t 2.11461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 534 -a 1 - -t 2.11461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 534 -a 1 h -t 2.11461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 534 -a 1 r -t 2.11547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 520 -a 1 + -t 2.11547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 520 -a 1 - -t 2.11547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 520 -a 1 h -t 2.11547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 520 -a 1 r -t 2.11633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 506 -a 1 + -t 2.1175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 550 -a 1 - -t 2.1175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 550 -a 1 h -t 2.1175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 550 -a 1 r -t 2.11836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 536 -a 1 + -t 2.11836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 536 -a 1 - -t 2.11836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 536 -a 1 h -t 2.11836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 536 -a 1 r -t 2.11922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 521 -a 1 + -t 2.11922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 521 -a 1 - -t 2.11922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 521 -a 1 h -t 2.11922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 521 -a 1 r -t 2.12008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 507 -a 1 + -t 2.12125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 551 -a 1 - -t 2.12125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 551 -a 1 h -t 2.12125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 551 -a 1 r -t 2.12211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 537 -a 1 + -t 2.12211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 537 -a 1 - -t 2.12211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 537 -a 1 h -t 2.12211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 537 -a 1 r -t 2.12297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 522 -a 1 + -t 2.12297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 522 -a 1 - -t 2.12297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 522 -a 1 h -t 2.12297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 522 -a 1 r -t 2.12383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 508 -a 1 + -t 2.125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 552 -a 1 - -t 2.125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 552 -a 1 h -t 2.125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 552 -a 1 r -t 2.12586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 538 -a 1 + -t 2.12586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 538 -a 1 - -t 2.12586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 538 -a 1 h -t 2.12586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 538 -a 1 r -t 2.12672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 523 -a 1 + -t 2.12672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 523 -a 1 - -t 2.12672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 523 -a 1 h -t 2.12672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 523 -a 1 r -t 2.12758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 509 -a 1 + -t 2.12875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 553 -a 1 - -t 2.12875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 553 -a 1 h -t 2.12875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 553 -a 1 r -t 2.12961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 539 -a 1 + -t 2.12961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 539 -a 1 - -t 2.12961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 539 -a 1 h -t 2.12961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 539 -a 1 r -t 2.13047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 524 -a 1 + -t 2.13047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 524 -a 1 - -t 2.13047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 524 -a 1 h -t 2.13047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 524 -a 1 r -t 2.13133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 510 -a 1 + -t 2.1325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 554 -a 1 - -t 2.1325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 554 -a 1 h -t 2.1325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 554 -a 1 r -t 2.13336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 540 -a 1 + -t 2.13336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 540 -a 1 - -t 2.13336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 540 -a 1 h -t 2.13336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 540 -a 1 r -t 2.13422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 525 -a 1 + -t 2.13422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 525 -a 1 - -t 2.13422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 525 -a 1 h -t 2.13422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 525 -a 1 r -t 2.13508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 511 -a 1 + -t 2.13625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 555 -a 1 - -t 2.13625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 555 -a 1 h -t 2.13625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 555 -a 1 r -t 2.13711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 541 -a 1 + -t 2.13711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 541 -a 1 - -t 2.13711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 541 -a 1 h -t 2.13711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 541 -a 1 r -t 2.13797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 526 -a 1 + -t 2.13797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 526 -a 1 - -t 2.13797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 526 -a 1 h -t 2.13797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 526 -a 1 r -t 2.13883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 512 -a 1 + -t 2.14 -s 1 -d 2 -p cbr -e 210 -c 1 -i 556 -a 1 - -t 2.14 -s 1 -d 2 -p cbr -e 210 -c 1 -i 556 -a 1 h -t 2.14 -s 1 -d 2 -p cbr -e 210 -c 1 -i 556 -a 1 r -t 2.14086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 542 -a 1 + -t 2.14086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 542 -a 1 - -t 2.14086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 542 -a 1 h -t 2.14086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 542 -a 1 r -t 2.14172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 527 -a 1 + -t 2.14172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 527 -a 1 - -t 2.14172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 527 -a 1 h -t 2.14172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 527 -a 1 r -t 2.14258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 513 -a 1 + -t 2.14375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 557 -a 1 - -t 2.14375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 557 -a 1 h -t 2.14375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 557 -a 1 r -t 2.14461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 543 -a 1 + -t 2.14461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 543 -a 1 - -t 2.14461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 543 -a 1 h -t 2.14461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 543 -a 1 r -t 2.14547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 528 -a 1 + -t 2.14547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 528 -a 1 - -t 2.14547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 528 -a 1 h -t 2.14547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 528 -a 1 r -t 2.14633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 514 -a 1 + -t 2.1475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 558 -a 1 - -t 2.1475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 558 -a 1 h -t 2.1475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 558 -a 1 r -t 2.14836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 544 -a 1 + -t 2.14836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 544 -a 1 - -t 2.14836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 544 -a 1 h -t 2.14836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 544 -a 1 r -t 2.14922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 529 -a 1 + -t 2.14922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 529 -a 1 - -t 2.14922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 529 -a 1 h -t 2.14922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 529 -a 1 r -t 2.15008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 515 -a 1 + -t 2.15125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 559 -a 1 - -t 2.15125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 559 -a 1 h -t 2.15125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 559 -a 1 r -t 2.15211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 545 -a 1 + -t 2.15211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 545 -a 1 - -t 2.15211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 545 -a 1 h -t 2.15211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 545 -a 1 r -t 2.15297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 530 -a 1 + -t 2.15297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 530 -a 1 - -t 2.15297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 530 -a 1 h -t 2.15297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 530 -a 1 r -t 2.15383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 516 -a 1 + -t 2.155 -s 1 -d 2 -p cbr -e 210 -c 1 -i 560 -a 1 - -t 2.155 -s 1 -d 2 -p cbr -e 210 -c 1 -i 560 -a 1 h -t 2.155 -s 1 -d 2 -p cbr -e 210 -c 1 -i 560 -a 1 r -t 2.15586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 546 -a 1 + -t 2.15586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 546 -a 1 - -t 2.15586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 546 -a 1 h -t 2.15586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 546 -a 1 r -t 2.15672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 531 -a 1 + -t 2.15672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 531 -a 1 - -t 2.15672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 531 -a 1 h -t 2.15672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 531 -a 1 r -t 2.15758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 517 -a 1 + -t 2.15875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 561 -a 1 - -t 2.15875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 561 -a 1 h -t 2.15875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 561 -a 1 r -t 2.15961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 547 -a 1 + -t 2.15961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 547 -a 1 - -t 2.15961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 547 -a 1 h -t 2.15961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 547 -a 1 r -t 2.16047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 532 -a 1 + -t 2.16047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 532 -a 1 - -t 2.16047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 532 -a 1 h -t 2.16047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 532 -a 1 r -t 2.16133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 518 -a 1 + -t 2.1625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 562 -a 1 - -t 2.1625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 562 -a 1 h -t 2.1625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 562 -a 1 r -t 2.16336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 548 -a 1 + -t 2.16336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 548 -a 1 - -t 2.16336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 548 -a 1 h -t 2.16336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 548 -a 1 r -t 2.16375 -s 3 -d 2 -p ack -e 40 -c 0 -i 535 -a 0 -S 0 -y {5 5} + -t 2.16375 -s 2 -d 0 -p ack -e 40 -c 0 -i 535 -a 0 -S 0 -y {5 5} - -t 2.16375 -s 2 -d 0 -p ack -e 40 -c 0 -i 535 -a 0 -S 0 -f 0 -m 1 -y {5 5} h -t 2.16375 -s 2 -d 0 -p ack -e 40 -c 0 -i 535 -a 0 -S 0 -y {-1 -1} r -t 2.16422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 533 -a 1 + -t 2.16422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 533 -a 1 - -t 2.16422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 533 -a 1 h -t 2.16422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 533 -a 1 r -t 2.16508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 519 -a 1 + -t 2.16625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 563 -a 1 - -t 2.16625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 563 -a 1 h -t 2.16625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 563 -a 1 r -t 2.16711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 549 -a 1 + -t 2.16711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 549 -a 1 - -t 2.16711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 549 -a 1 h -t 2.16711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 549 -a 1 r -t 2.16797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 534 -a 1 + -t 2.16797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 534 -a 1 - -t 2.16797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 534 -a 1 h -t 2.16797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 534 -a 1 r -t 2.16883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 520 -a 1 + -t 2.17 -s 1 -d 2 -p cbr -e 210 -c 1 -i 564 -a 1 - -t 2.17 -s 1 -d 2 -p cbr -e 210 -c 1 -i 564 -a 1 h -t 2.17 -s 1 -d 2 -p cbr -e 210 -c 1 -i 564 -a 1 r -t 2.17086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 550 -a 1 + -t 2.17086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 550 -a 1 - -t 2.17086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 550 -a 1 h -t 2.17086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 550 -a 1 r -t 2.17172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 536 -a 1 + -t 2.17172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 536 -a 1 - -t 2.17172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 536 -a 1 h -t 2.17172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 536 -a 1 r -t 2.17258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 521 -a 1 + -t 2.17375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 565 -a 1 - -t 2.17375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 565 -a 1 h -t 2.17375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 565 -a 1 r -t 2.17461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 551 -a 1 + -t 2.17461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 551 -a 1 - -t 2.17461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 551 -a 1 h -t 2.17461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 551 -a 1 r -t 2.17547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 537 -a 1 + -t 2.17547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 537 -a 1 - -t 2.17547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 537 -a 1 h -t 2.17547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 537 -a 1 r -t 2.17633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 522 -a 1 + -t 2.1775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 566 -a 1 - -t 2.1775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 566 -a 1 h -t 2.1775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 566 -a 1 r -t 2.17836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 552 -a 1 + -t 2.17836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 552 -a 1 - -t 2.17836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 552 -a 1 h -t 2.17836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 552 -a 1 r -t 2.17922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 538 -a 1 + -t 2.17922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 538 -a 1 - -t 2.17922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 538 -a 1 h -t 2.17922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 538 -a 1 r -t 2.18008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 523 -a 1 + -t 2.18125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 567 -a 1 - -t 2.18125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 567 -a 1 h -t 2.18125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 567 -a 1 r -t 2.18211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 553 -a 1 + -t 2.18211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 553 -a 1 - -t 2.18211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 553 -a 1 h -t 2.18211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 553 -a 1 r -t 2.18297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 539 -a 1 + -t 2.18297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 539 -a 1 - -t 2.18297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 539 -a 1 h -t 2.18297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 539 -a 1 r -t 2.18383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 524 -a 1 + -t 2.185 -s 1 -d 2 -p cbr -e 210 -c 1 -i 568 -a 1 - -t 2.185 -s 1 -d 2 -p cbr -e 210 -c 1 -i 568 -a 1 h -t 2.185 -s 1 -d 2 -p cbr -e 210 -c 1 -i 568 -a 1 r -t 2.18586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 554 -a 1 + -t 2.18586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 554 -a 1 - -t 2.18586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 554 -a 1 h -t 2.18586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 554 -a 1 r -t 2.18672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 540 -a 1 + -t 2.18672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 540 -a 1 - -t 2.18672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 540 -a 1 h -t 2.18672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 540 -a 1 r -t 2.18758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 525 -a 1 + -t 2.18875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 569 -a 1 - -t 2.18875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 569 -a 1 h -t 2.18875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 569 -a 1 r -t 2.18961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 555 -a 1 + -t 2.18961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 555 -a 1 - -t 2.18961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 555 -a 1 h -t 2.18961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 555 -a 1 r -t 2.19047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 541 -a 1 + -t 2.19047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 541 -a 1 - -t 2.19047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 541 -a 1 h -t 2.19047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 541 -a 1 r -t 2.19133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 526 -a 1 + -t 2.1925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 570 -a 1 - -t 2.1925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 570 -a 1 h -t 2.1925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 570 -a 1 r -t 2.19336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 556 -a 1 + -t 2.19336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 556 -a 1 - -t 2.19336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 556 -a 1 h -t 2.19336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 556 -a 1 r -t 2.19422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 542 -a 1 + -t 2.19422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 542 -a 1 - -t 2.19422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 542 -a 1 h -t 2.19422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 542 -a 1 r -t 2.19508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 527 -a 1 + -t 2.19625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 571 -a 1 - -t 2.19625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 571 -a 1 h -t 2.19625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 571 -a 1 r -t 2.19711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 557 -a 1 + -t 2.19711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 557 -a 1 - -t 2.19711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 557 -a 1 h -t 2.19711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 557 -a 1 r -t 2.19797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 543 -a 1 + -t 2.19797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 543 -a 1 - -t 2.19797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 543 -a 1 h -t 2.19797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 543 -a 1 r -t 2.19883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 528 -a 1 + -t 2.2 -s 1 -d 2 -p cbr -e 210 -c 1 -i 572 -a 1 - -t 2.2 -s 1 -d 2 -p cbr -e 210 -c 1 -i 572 -a 1 h -t 2.2 -s 1 -d 2 -p cbr -e 210 -c 1 -i 572 -a 1 r -t 2.20086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 558 -a 1 + -t 2.20086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 558 -a 1 - -t 2.20086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 558 -a 1 h -t 2.20086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 558 -a 1 r -t 2.20172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 544 -a 1 + -t 2.20172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 544 -a 1 - -t 2.20172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 544 -a 1 h -t 2.20172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 544 -a 1 r -t 2.20258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 529 -a 1 + -t 2.20375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 573 -a 1 - -t 2.20375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 573 -a 1 h -t 2.20375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 573 -a 1 r -t 2.20461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 559 -a 1 + -t 2.20461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 559 -a 1 - -t 2.20461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 559 -a 1 h -t 2.20461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 559 -a 1 r -t 2.20547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 545 -a 1 + -t 2.20547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 545 -a 1 - -t 2.20547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 545 -a 1 h -t 2.20547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 545 -a 1 r -t 2.20633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 530 -a 1 + -t 2.2075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 574 -a 1 - -t 2.2075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 574 -a 1 h -t 2.2075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 574 -a 1 r -t 2.20836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 560 -a 1 + -t 2.20836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 560 -a 1 - -t 2.20836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 560 -a 1 h -t 2.20836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 560 -a 1 r -t 2.20922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 546 -a 1 + -t 2.20922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 546 -a 1 - -t 2.20922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 546 -a 1 h -t 2.20922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 546 -a 1 r -t 2.21008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 531 -a 1 + -t 2.21125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 575 -a 1 - -t 2.21125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 575 -a 1 h -t 2.21125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 575 -a 1 r -t 2.21211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 561 -a 1 + -t 2.21211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 561 -a 1 - -t 2.21211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 561 -a 1 h -t 2.21211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 561 -a 1 r -t 2.21297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 547 -a 1 + -t 2.21297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 547 -a 1 - -t 2.21297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 547 -a 1 h -t 2.21297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 547 -a 1 r -t 2.21383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 532 -a 1 r -t 2.21439 -s 2 -d 0 -p ack -e 40 -c 0 -i 535 -a 0 -S 0 -y {5 5} f -t 2.21438999999998432 -s 0 -d 4 -n cwnd_ -a tcp -v 2.000000 -o 1.000000 -T v f -t 2.21438999999998432 -s 0 -d 4 -n cwnd_ -a tcp -v 1.000000 -o 2.000000 -T v + -t 2.21439 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 576 -a 0 -S 0 -f 0 -m 0 -y {6 6} - -t 2.21439 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 576 -a 0 -S 0 -y {6 6} h -t 2.21439 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 576 -a 0 -S 0 -y {-1 -1} + -t 2.215 -s 1 -d 2 -p cbr -e 210 -c 1 -i 577 -a 1 - -t 2.215 -s 1 -d 2 -p cbr -e 210 -c 1 -i 577 -a 1 h -t 2.215 -s 1 -d 2 -p cbr -e 210 -c 1 -i 577 -a 1 r -t 2.21586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 562 -a 1 + -t 2.21586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 562 -a 1 - -t 2.21586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 562 -a 1 h -t 2.21586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 562 -a 1 r -t 2.21672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 548 -a 1 + -t 2.21672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 548 -a 1 - -t 2.21672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 548 -a 1 h -t 2.21672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 548 -a 1 r -t 2.21758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 533 -a 1 + -t 2.21875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 578 -a 1 - -t 2.21875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 578 -a 1 h -t 2.21875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 578 -a 1 r -t 2.21961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 563 -a 1 + -t 2.21961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 563 -a 1 - -t 2.21961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 563 -a 1 h -t 2.21961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 563 -a 1 r -t 2.22047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 549 -a 1 + -t 2.22047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 549 -a 1 - -t 2.22047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 549 -a 1 h -t 2.22047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 549 -a 1 r -t 2.22133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 534 -a 1 + -t 2.2225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 579 -a 1 - -t 2.2225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 579 -a 1 h -t 2.2225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 579 -a 1 r -t 2.22336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 564 -a 1 + -t 2.22336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 564 -a 1 - -t 2.22336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 564 -a 1 h -t 2.22336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 564 -a 1 r -t 2.22422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 550 -a 1 + -t 2.22422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 550 -a 1 - -t 2.22422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 550 -a 1 h -t 2.22422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 550 -a 1 r -t 2.22508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 536 -a 1 + -t 2.22625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 580 -a 1 - -t 2.22625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 580 -a 1 h -t 2.22625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 580 -a 1 r -t 2.22711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 565 -a 1 + -t 2.22711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 565 -a 1 - -t 2.22711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 565 -a 1 h -t 2.22711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 565 -a 1 r -t 2.22797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 551 -a 1 + -t 2.22797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 551 -a 1 - -t 2.22797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 551 -a 1 h -t 2.22797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 551 -a 1 r -t 2.22883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 537 -a 1 + -t 2.23 -s 1 -d 2 -p cbr -e 210 -c 1 -i 581 -a 1 - -t 2.23 -s 1 -d 2 -p cbr -e 210 -c 1 -i 581 -a 1 h -t 2.23 -s 1 -d 2 -p cbr -e 210 -c 1 -i 581 -a 1 r -t 2.23086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 566 -a 1 + -t 2.23086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 566 -a 1 - -t 2.23086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 566 -a 1 h -t 2.23086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 566 -a 1 r -t 2.23172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 552 -a 1 + -t 2.23172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 552 -a 1 - -t 2.23172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 552 -a 1 h -t 2.23172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 552 -a 1 r -t 2.23258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 538 -a 1 + -t 2.23375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 582 -a 1 - -t 2.23375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 582 -a 1 h -t 2.23375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 582 -a 1 r -t 2.23461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 567 -a 1 + -t 2.23461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 567 -a 1 - -t 2.23461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 567 -a 1 h -t 2.23461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 567 -a 1 r -t 2.23547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 553 -a 1 + -t 2.23547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 553 -a 1 - -t 2.23547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 553 -a 1 h -t 2.23547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 553 -a 1 r -t 2.23633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 539 -a 1 + -t 2.2375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 583 -a 1 - -t 2.2375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 583 -a 1 h -t 2.2375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 583 -a 1 r -t 2.23836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 568 -a 1 + -t 2.23836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 568 -a 1 - -t 2.23836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 568 -a 1 h -t 2.23836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 568 -a 1 r -t 2.23922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 554 -a 1 + -t 2.23922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 554 -a 1 - -t 2.23922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 554 -a 1 h -t 2.23922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 554 -a 1 r -t 2.24008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 540 -a 1 + -t 2.24125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 584 -a 1 - -t 2.24125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 584 -a 1 h -t 2.24125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 584 -a 1 r -t 2.24211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 569 -a 1 + -t 2.24211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 569 -a 1 - -t 2.24211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 569 -a 1 h -t 2.24211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 569 -a 1 r -t 2.24297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 555 -a 1 + -t 2.24297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 555 -a 1 - -t 2.24297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 555 -a 1 h -t 2.24297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 555 -a 1 r -t 2.24383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 541 -a 1 + -t 2.245 -s 1 -d 2 -p cbr -e 210 -c 1 -i 585 -a 1 - -t 2.245 -s 1 -d 2 -p cbr -e 210 -c 1 -i 585 -a 1 h -t 2.245 -s 1 -d 2 -p cbr -e 210 -c 1 -i 585 -a 1 r -t 2.24586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 570 -a 1 + -t 2.24586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 570 -a 1 - -t 2.24586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 570 -a 1 h -t 2.24586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 570 -a 1 r -t 2.24672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 556 -a 1 + -t 2.24672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 556 -a 1 - -t 2.24672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 556 -a 1 h -t 2.24672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 556 -a 1 r -t 2.24758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 542 -a 1 + -t 2.24875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 586 -a 1 - -t 2.24875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 586 -a 1 h -t 2.24875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 586 -a 1 r -t 2.24961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 571 -a 1 + -t 2.24961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 571 -a 1 - -t 2.24961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 571 -a 1 h -t 2.24961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 571 -a 1 r -t 2.25047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 557 -a 1 + -t 2.25047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 557 -a 1 - -t 2.25047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 557 -a 1 h -t 2.25047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 557 -a 1 r -t 2.25133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 543 -a 1 + -t 2.2525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 587 -a 1 - -t 2.2525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 587 -a 1 h -t 2.2525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 587 -a 1 r -t 2.25336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 572 -a 1 + -t 2.25336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 572 -a 1 - -t 2.25336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 572 -a 1 h -t 2.25336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 572 -a 1 r -t 2.25422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 558 -a 1 + -t 2.25422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 558 -a 1 - -t 2.25422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 558 -a 1 h -t 2.25422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 558 -a 1 r -t 2.25508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 544 -a 1 + -t 2.25625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 588 -a 1 - -t 2.25625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 588 -a 1 h -t 2.25625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 588 -a 1 r -t 2.25711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 573 -a 1 + -t 2.25711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 573 -a 1 - -t 2.25711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 573 -a 1 h -t 2.25711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 573 -a 1 r -t 2.25797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 559 -a 1 + -t 2.25797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 559 -a 1 - -t 2.25797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 559 -a 1 h -t 2.25797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 559 -a 1 r -t 2.25883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 545 -a 1 + -t 2.26 -s 1 -d 2 -p cbr -e 210 -c 1 -i 589 -a 1 - -t 2.26 -s 1 -d 2 -p cbr -e 210 -c 1 -i 589 -a 1 h -t 2.26 -s 1 -d 2 -p cbr -e 210 -c 1 -i 589 -a 1 r -t 2.26086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 574 -a 1 + -t 2.26086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 574 -a 1 - -t 2.26086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 574 -a 1 h -t 2.26086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 574 -a 1 r -t 2.26172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 560 -a 1 + -t 2.26172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 560 -a 1 - -t 2.26172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 560 -a 1 h -t 2.26172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 560 -a 1 r -t 2.26258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 546 -a 1 + -t 2.26375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 590 -a 1 - -t 2.26375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 590 -a 1 h -t 2.26375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 590 -a 1 r -t 2.26461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 575 -a 1 + -t 2.26461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 575 -a 1 - -t 2.26461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 575 -a 1 h -t 2.26461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 575 -a 1 r -t 2.26547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 561 -a 1 + -t 2.26547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 561 -a 1 - -t 2.26547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 561 -a 1 h -t 2.26547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 561 -a 1 r -t 2.26633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 547 -a 1 + -t 2.2675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 591 -a 1 - -t 2.2675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 591 -a 1 h -t 2.2675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 591 -a 1 r -t 2.26836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 577 -a 1 + -t 2.26836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 577 -a 1 - -t 2.26836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 577 -a 1 h -t 2.26836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 577 -a 1 r -t 2.26922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 562 -a 1 + -t 2.26922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 562 -a 1 - -t 2.26922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 562 -a 1 h -t 2.26922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 562 -a 1 r -t 2.27008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 548 -a 1 + -t 2.27125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 592 -a 1 - -t 2.27125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 592 -a 1 h -t 2.27125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 592 -a 1 r -t 2.27211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 578 -a 1 + -t 2.27211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 578 -a 1 - -t 2.27211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 578 -a 1 h -t 2.27211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 578 -a 1 r -t 2.27297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 563 -a 1 + -t 2.27297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 563 -a 1 - -t 2.27297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 563 -a 1 h -t 2.27297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 563 -a 1 r -t 2.27383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 549 -a 1 + -t 2.275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 593 -a 1 - -t 2.275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 593 -a 1 h -t 2.275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 593 -a 1 r -t 2.27586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 579 -a 1 + -t 2.27586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 579 -a 1 - -t 2.27586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 579 -a 1 h -t 2.27586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 579 -a 1 r -t 2.27672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 564 -a 1 + -t 2.27672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 564 -a 1 - -t 2.27672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 564 -a 1 h -t 2.27672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 564 -a 1 r -t 2.27758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 550 -a 1 + -t 2.27875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 594 -a 1 - -t 2.27875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 594 -a 1 h -t 2.27875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 594 -a 1 r -t 2.27961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 580 -a 1 + -t 2.27961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 580 -a 1 - -t 2.27961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 580 -a 1 h -t 2.27961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 580 -a 1 r -t 2.28039 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 576 -a 0 -S 0 -y {6 6} + -t 2.28039 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 576 -a 0 -S 0 -y {6 6} r -t 2.28047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 565 -a 1 + -t 2.28047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 565 -a 1 - -t 2.28047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 565 -a 1 h -t 2.28047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 565 -a 1 r -t 2.28133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 551 -a 1 + -t 2.2825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 595 -a 1 - -t 2.2825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 595 -a 1 h -t 2.2825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 595 -a 1 - -t 2.28297 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 576 -a 0 -S 0 -y {6 6} h -t 2.28297 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 576 -a 0 -S 0 -y {-1 -1} r -t 2.28336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 581 -a 1 + -t 2.28336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 581 -a 1 r -t 2.28422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 566 -a 1 + -t 2.28422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 566 -a 1 - -t 2.28422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 566 -a 1 h -t 2.28422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 566 -a 1 r -t 2.28508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 552 -a 1 + -t 2.28625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 596 -a 1 - -t 2.28625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 596 -a 1 h -t 2.28625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 596 -a 1 r -t 2.28711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 582 -a 1 + -t 2.28711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 582 -a 1 d -t 2.28711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 582 -a 1 r -t 2.28797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 567 -a 1 + -t 2.28797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 567 -a 1 - -t 2.28797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 567 -a 1 h -t 2.28797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 567 -a 1 r -t 2.28883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 553 -a 1 + -t 2.29 -s 1 -d 2 -p cbr -e 210 -c 1 -i 597 -a 1 - -t 2.29 -s 1 -d 2 -p cbr -e 210 -c 1 -i 597 -a 1 h -t 2.29 -s 1 -d 2 -p cbr -e 210 -c 1 -i 597 -a 1 r -t 2.29086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 583 -a 1 + -t 2.29086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 583 -a 1 d -t 2.29086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 583 -a 1 r -t 2.29172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 568 -a 1 + -t 2.29172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 568 -a 1 - -t 2.29172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 568 -a 1 h -t 2.29172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 568 -a 1 r -t 2.29258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 554 -a 1 + -t 2.29375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 598 -a 1 - -t 2.29375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 598 -a 1 h -t 2.29375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 598 -a 1 r -t 2.29461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 584 -a 1 + -t 2.29461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 584 -a 1 d -t 2.29461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 584 -a 1 r -t 2.29547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 569 -a 1 + -t 2.29547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 569 -a 1 - -t 2.29547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 569 -a 1 h -t 2.29547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 569 -a 1 r -t 2.29633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 555 -a 1 + -t 2.2975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 599 -a 1 - -t 2.2975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 599 -a 1 h -t 2.2975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 599 -a 1 r -t 2.29836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 585 -a 1 + -t 2.29836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 585 -a 1 d -t 2.29836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 585 -a 1 - -t 2.29897 -s 2 -d 3 -p cbr -e 210 -c 1 -i 581 -a 1 h -t 2.29897 -s 2 -d 3 -p cbr -e 210 -c 1 -i 581 -a 1 r -t 2.29922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 570 -a 1 + -t 2.29922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 570 -a 1 - -t 2.29922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 570 -a 1 h -t 2.29922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 570 -a 1 r -t 2.30008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 556 -a 1 + -t 2.30125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 600 -a 1 - -t 2.30125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 600 -a 1 h -t 2.30125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 600 -a 1 r -t 2.30211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 586 -a 1 + -t 2.30211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 586 -a 1 - -t 2.30233 -s 2 -d 3 -p cbr -e 210 -c 1 -i 586 -a 1 h -t 2.30233 -s 2 -d 3 -p cbr -e 210 -c 1 -i 586 -a 1 r -t 2.30297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 571 -a 1 + -t 2.30297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 571 -a 1 - -t 2.30297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 571 -a 1 h -t 2.30297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 571 -a 1 r -t 2.30383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 557 -a 1 + -t 2.305 -s 1 -d 2 -p cbr -e 210 -c 1 -i 601 -a 1 - -t 2.305 -s 1 -d 2 -p cbr -e 210 -c 1 -i 601 -a 1 h -t 2.305 -s 1 -d 2 -p cbr -e 210 -c 1 -i 601 -a 1 r -t 2.30586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 587 -a 1 + -t 2.30586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 587 -a 1 - -t 2.30586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 587 -a 1 h -t 2.30586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 587 -a 1 r -t 2.30672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 572 -a 1 + -t 2.30672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 572 -a 1 - -t 2.30672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 572 -a 1 h -t 2.30672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 572 -a 1 r -t 2.30758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 558 -a 1 + -t 2.30875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 602 -a 1 - -t 2.30875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 602 -a 1 h -t 2.30875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 602 -a 1 r -t 2.30961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 588 -a 1 + -t 2.30961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 588 -a 1 - -t 2.30961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 588 -a 1 h -t 2.30961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 588 -a 1 r -t 2.31047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 573 -a 1 + -t 2.31047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 573 -a 1 - -t 2.31047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 573 -a 1 h -t 2.31047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 573 -a 1 r -t 2.31133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 559 -a 1 + -t 2.3125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 603 -a 1 - -t 2.3125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 603 -a 1 h -t 2.3125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 603 -a 1 r -t 2.31336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 589 -a 1 + -t 2.31336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 589 -a 1 - -t 2.31336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 589 -a 1 h -t 2.31336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 589 -a 1 r -t 2.31422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 574 -a 1 + -t 2.31422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 574 -a 1 - -t 2.31422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 574 -a 1 h -t 2.31422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 574 -a 1 r -t 2.31508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 560 -a 1 + -t 2.31625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 604 -a 1 - -t 2.31625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 604 -a 1 h -t 2.31625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 604 -a 1 r -t 2.31711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 590 -a 1 + -t 2.31711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 590 -a 1 - -t 2.31711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 590 -a 1 h -t 2.31711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 590 -a 1 r -t 2.31797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 575 -a 1 + -t 2.31797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 575 -a 1 - -t 2.31797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 575 -a 1 h -t 2.31797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 575 -a 1 r -t 2.31883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 561 -a 1 + -t 2.32 -s 1 -d 2 -p cbr -e 210 -c 1 -i 605 -a 1 - -t 2.32 -s 1 -d 2 -p cbr -e 210 -c 1 -i 605 -a 1 h -t 2.32 -s 1 -d 2 -p cbr -e 210 -c 1 -i 605 -a 1 r -t 2.32086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 591 -a 1 + -t 2.32086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 591 -a 1 - -t 2.32086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 591 -a 1 h -t 2.32086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 591 -a 1 r -t 2.32172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 577 -a 1 + -t 2.32172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 577 -a 1 - -t 2.32172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 577 -a 1 h -t 2.32172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 577 -a 1 r -t 2.32258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 562 -a 1 + -t 2.32375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 606 -a 1 - -t 2.32375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 606 -a 1 h -t 2.32375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 606 -a 1 r -t 2.32461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 592 -a 1 + -t 2.32461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 592 -a 1 - -t 2.32461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 592 -a 1 h -t 2.32461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 592 -a 1 r -t 2.32547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 578 -a 1 + -t 2.32547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 578 -a 1 - -t 2.32547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 578 -a 1 h -t 2.32547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 578 -a 1 r -t 2.32633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 563 -a 1 + -t 2.3275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 607 -a 1 - -t 2.3275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 607 -a 1 h -t 2.3275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 607 -a 1 r -t 2.32836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 593 -a 1 + -t 2.32836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 593 -a 1 - -t 2.32836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 593 -a 1 h -t 2.32836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 593 -a 1 r -t 2.32922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 579 -a 1 + -t 2.32922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 579 -a 1 - -t 2.32922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 579 -a 1 h -t 2.32922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 579 -a 1 r -t 2.33008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 564 -a 1 + -t 2.33125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 608 -a 1 - -t 2.33125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 608 -a 1 h -t 2.33125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 608 -a 1 r -t 2.33211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 594 -a 1 + -t 2.33211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 594 -a 1 - -t 2.33211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 594 -a 1 h -t 2.33211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 594 -a 1 r -t 2.33297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 580 -a 1 + -t 2.33297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 580 -a 1 - -t 2.33297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 580 -a 1 h -t 2.33297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 580 -a 1 r -t 2.33383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 565 -a 1 + -t 2.335 -s 1 -d 2 -p cbr -e 210 -c 1 -i 609 -a 1 - -t 2.335 -s 1 -d 2 -p cbr -e 210 -c 1 -i 609 -a 1 h -t 2.335 -s 1 -d 2 -p cbr -e 210 -c 1 -i 609 -a 1 r -t 2.33586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 595 -a 1 + -t 2.33586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 595 -a 1 - -t 2.33586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 595 -a 1 h -t 2.33586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 595 -a 1 r -t 2.33758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 566 -a 1 + -t 2.33875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 610 -a 1 - -t 2.33875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 610 -a 1 h -t 2.33875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 610 -a 1 r -t 2.33961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 596 -a 1 + -t 2.33961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 596 -a 1 - -t 2.33961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 596 -a 1 h -t 2.33961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 596 -a 1 r -t 2.34133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 567 -a 1 + -t 2.3425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 611 -a 1 - -t 2.3425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 611 -a 1 h -t 2.3425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 611 -a 1 r -t 2.34336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 597 -a 1 + -t 2.34336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 597 -a 1 - -t 2.34336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 597 -a 1 h -t 2.34336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 597 -a 1 r -t 2.34508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 568 -a 1 + -t 2.34625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 612 -a 1 - -t 2.34625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 612 -a 1 h -t 2.34625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 612 -a 1 r -t 2.34711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 598 -a 1 + -t 2.34711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 598 -a 1 - -t 2.34711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 598 -a 1 h -t 2.34711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 598 -a 1 r -t 2.34883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 569 -a 1 r -t 2.34897 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 576 -a 0 -S 0 -y {6 6} + -t 2.34897 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 576 -a 0 -S 0 -y {6 6} - -t 2.34897 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 576 -a 0 -S 0 -y {6 6} h -t 2.34897 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 576 -a 0 -S 0 -y {-1 -1} + -t 2.35 -s 1 -d 2 -p cbr -e 210 -c 1 -i 613 -a 1 - -t 2.35 -s 1 -d 2 -p cbr -e 210 -c 1 -i 613 -a 1 h -t 2.35 -s 1 -d 2 -p cbr -e 210 -c 1 -i 613 -a 1 r -t 2.35086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 599 -a 1 + -t 2.35086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 599 -a 1 - -t 2.35086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 599 -a 1 h -t 2.35086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 599 -a 1 r -t 2.35233 -s 2 -d 3 -p cbr -e 210 -c 1 -i 581 -a 1 + -t 2.35233 -s 3 -d 5 -p cbr -e 210 -c 1 -i 581 -a 1 - -t 2.35233 -s 3 -d 5 -p cbr -e 210 -c 1 -i 581 -a 1 h -t 2.35233 -s 3 -d 5 -p cbr -e 210 -c 1 -i 581 -a 1 r -t 2.35258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 570 -a 1 r -t 2.35461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 600 -a 1 + -t 2.35461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 600 -a 1 - -t 2.35461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 600 -a 1 h -t 2.35461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 600 -a 1 r -t 2.35569 -s 2 -d 3 -p cbr -e 210 -c 1 -i 586 -a 1 + -t 2.35569 -s 3 -d 5 -p cbr -e 210 -c 1 -i 586 -a 1 - -t 2.35569 -s 3 -d 5 -p cbr -e 210 -c 1 -i 586 -a 1 h -t 2.35569 -s 3 -d 5 -p cbr -e 210 -c 1 -i 586 -a 1 r -t 2.35633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 571 -a 1 r -t 2.35836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 601 -a 1 + -t 2.35836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 601 -a 1 - -t 2.35836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 601 -a 1 h -t 2.35836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 601 -a 1 r -t 2.35922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 587 -a 1 + -t 2.35922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 587 -a 1 - -t 2.35922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 587 -a 1 h -t 2.35922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 587 -a 1 r -t 2.36008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 572 -a 1 r -t 2.36211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 602 -a 1 + -t 2.36211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 602 -a 1 - -t 2.36211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 602 -a 1 h -t 2.36211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 602 -a 1 r -t 2.36297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 588 -a 1 + -t 2.36297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 588 -a 1 - -t 2.36297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 588 -a 1 h -t 2.36297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 588 -a 1 r -t 2.36383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 573 -a 1 r -t 2.36586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 603 -a 1 + -t 2.36586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 603 -a 1 - -t 2.36586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 603 -a 1 h -t 2.36586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 603 -a 1 r -t 2.36672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 589 -a 1 + -t 2.36672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 589 -a 1 - -t 2.36672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 589 -a 1 h -t 2.36672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 589 -a 1 r -t 2.36758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 574 -a 1 r -t 2.36961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 604 -a 1 + -t 2.36961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 604 -a 1 - -t 2.36961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 604 -a 1 h -t 2.36961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 604 -a 1 r -t 2.37047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 590 -a 1 + -t 2.37047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 590 -a 1 - -t 2.37047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 590 -a 1 h -t 2.37047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 590 -a 1 r -t 2.37133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 575 -a 1 r -t 2.37336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 605 -a 1 + -t 2.37336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 605 -a 1 - -t 2.37336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 605 -a 1 h -t 2.37336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 605 -a 1 r -t 2.37422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 591 -a 1 + -t 2.37422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 591 -a 1 - -t 2.37422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 591 -a 1 h -t 2.37422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 591 -a 1 r -t 2.37508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 577 -a 1 r -t 2.37711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 606 -a 1 + -t 2.37711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 606 -a 1 - -t 2.37711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 606 -a 1 h -t 2.37711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 606 -a 1 r -t 2.37797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 592 -a 1 + -t 2.37797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 592 -a 1 - -t 2.37797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 592 -a 1 h -t 2.37797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 592 -a 1 r -t 2.37883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 578 -a 1 r -t 2.38086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 607 -a 1 + -t 2.38086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 607 -a 1 - -t 2.38086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 607 -a 1 h -t 2.38086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 607 -a 1 r -t 2.38172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 593 -a 1 + -t 2.38172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 593 -a 1 - -t 2.38172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 593 -a 1 h -t 2.38172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 593 -a 1 r -t 2.38258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 579 -a 1 r -t 2.38461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 608 -a 1 + -t 2.38461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 608 -a 1 - -t 2.38461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 608 -a 1 h -t 2.38461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 608 -a 1 r -t 2.38547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 594 -a 1 + -t 2.38547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 594 -a 1 - -t 2.38547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 594 -a 1 h -t 2.38547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 594 -a 1 r -t 2.38633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 580 -a 1 r -t 2.38836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 609 -a 1 + -t 2.38836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 609 -a 1 - -t 2.38836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 609 -a 1 h -t 2.38836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 609 -a 1 r -t 2.38922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 595 -a 1 + -t 2.38922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 595 -a 1 - -t 2.38922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 595 -a 1 h -t 2.38922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 595 -a 1 r -t 2.39211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 610 -a 1 + -t 2.39211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 610 -a 1 - -t 2.39211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 610 -a 1 h -t 2.39211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 610 -a 1 r -t 2.39297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 596 -a 1 + -t 2.39297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 596 -a 1 - -t 2.39297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 596 -a 1 h -t 2.39297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 596 -a 1 r -t 2.39586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 611 -a 1 + -t 2.39586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 611 -a 1 - -t 2.39586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 611 -a 1 h -t 2.39586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 611 -a 1 r -t 2.39672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 597 -a 1 + -t 2.39672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 597 -a 1 - -t 2.39672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 597 -a 1 h -t 2.39672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 597 -a 1 r -t 2.39961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 612 -a 1 + -t 2.39961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 612 -a 1 - -t 2.39961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 612 -a 1 h -t 2.39961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 612 -a 1 r -t 2.40047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 598 -a 1 + -t 2.40047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 598 -a 1 - -t 2.40047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 598 -a 1 h -t 2.40047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 598 -a 1 r -t 2.40336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 613 -a 1 + -t 2.40336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 613 -a 1 - -t 2.40336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 613 -a 1 h -t 2.40336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 613 -a 1 r -t 2.40422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 599 -a 1 + -t 2.40422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 599 -a 1 - -t 2.40422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 599 -a 1 h -t 2.40422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 599 -a 1 r -t 2.40569 -s 3 -d 5 -p cbr -e 210 -c 1 -i 581 -a 1 r -t 2.40797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 600 -a 1 + -t 2.40797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 600 -a 1 - -t 2.40797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 600 -a 1 h -t 2.40797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 600 -a 1 r -t 2.40905 -s 3 -d 5 -p cbr -e 210 -c 1 -i 586 -a 1 r -t 2.41172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 601 -a 1 + -t 2.41172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 601 -a 1 - -t 2.41172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 601 -a 1 h -t 2.41172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 601 -a 1 r -t 2.41258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 587 -a 1 r -t 2.41497 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 576 -a 0 -S 0 -y {6 6} + -t 2.41497 -s 4 -d 3 -p ack -e 40 -c 0 -i 614 -a 0 -S 0 -y {6 6} - -t 2.41497 -s 4 -d 3 -p ack -e 40 -c 0 -i 614 -a 0 -S 0 -y {6 6} h -t 2.41497 -s 4 -d 3 -p ack -e 40 -c 0 -i 614 -a 0 -S 0 -y {-1 -1} r -t 2.41547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 602 -a 1 + -t 2.41547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 602 -a 1 - -t 2.41547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 602 -a 1 h -t 2.41547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 602 -a 1 r -t 2.41633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 588 -a 1 r -t 2.41922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 603 -a 1 + -t 2.41922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 603 -a 1 - -t 2.41922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 603 -a 1 h -t 2.41922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 603 -a 1 r -t 2.42008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 589 -a 1 r -t 2.42297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 604 -a 1 + -t 2.42297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 604 -a 1 - -t 2.42297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 604 -a 1 h -t 2.42297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 604 -a 1 r -t 2.42383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 590 -a 1 r -t 2.42672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 605 -a 1 + -t 2.42672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 605 -a 1 - -t 2.42672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 605 -a 1 h -t 2.42672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 605 -a 1 r -t 2.42758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 591 -a 1 r -t 2.43047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 606 -a 1 + -t 2.43047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 606 -a 1 - -t 2.43047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 606 -a 1 h -t 2.43047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 606 -a 1 r -t 2.43133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 592 -a 1 r -t 2.43422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 607 -a 1 + -t 2.43422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 607 -a 1 - -t 2.43422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 607 -a 1 h -t 2.43422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 607 -a 1 r -t 2.43508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 593 -a 1 r -t 2.43797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 608 -a 1 + -t 2.43797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 608 -a 1 - -t 2.43797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 608 -a 1 h -t 2.43797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 608 -a 1 r -t 2.43883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 594 -a 1 r -t 2.44172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 609 -a 1 + -t 2.44172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 609 -a 1 - -t 2.44172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 609 -a 1 h -t 2.44172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 609 -a 1 r -t 2.44258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 595 -a 1 r -t 2.44547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 610 -a 1 + -t 2.44547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 610 -a 1 - -t 2.44547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 610 -a 1 h -t 2.44547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 610 -a 1 r -t 2.44633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 596 -a 1 r -t 2.44922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 611 -a 1 + -t 2.44922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 611 -a 1 - -t 2.44922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 611 -a 1 h -t 2.44922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 611 -a 1 r -t 2.45008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 597 -a 1 r -t 2.45297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 612 -a 1 + -t 2.45297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 612 -a 1 - -t 2.45297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 612 -a 1 h -t 2.45297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 612 -a 1 r -t 2.45383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 598 -a 1 r -t 2.45672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 613 -a 1 + -t 2.45672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 613 -a 1 - -t 2.45672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 613 -a 1 h -t 2.45672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 613 -a 1 r -t 2.45758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 599 -a 1 r -t 2.46133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 600 -a 1 r -t 2.46508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 601 -a 1 r -t 2.46561 -s 4 -d 3 -p ack -e 40 -c 0 -i 614 -a 0 -S 0 -y {6 6} + -t 2.46561 -s 3 -d 2 -p ack -e 40 -c 0 -i 614 -a 0 -S 0 -y {6 6} - -t 2.46561 -s 3 -d 2 -p ack -e 40 -c 0 -i 614 -a 0 -S 0 -y {6 6} h -t 2.46561 -s 3 -d 2 -p ack -e 40 -c 0 -i 614 -a 0 -S 0 -y {-1 -1} r -t 2.46883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 602 -a 1 r -t 2.47258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 603 -a 1 r -t 2.47633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 604 -a 1 r -t 2.48008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 605 -a 1 r -t 2.48383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 606 -a 1 r -t 2.48758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 607 -a 1 r -t 2.49133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 608 -a 1 r -t 2.49508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 609 -a 1 r -t 2.49883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 610 -a 1 r -t 2.50258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 611 -a 1 r -t 2.50633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 612 -a 1 r -t 2.51008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 613 -a 1 r -t 2.51625 -s 3 -d 2 -p ack -e 40 -c 0 -i 614 -a 0 -S 0 -y {6 6} + -t 2.51625 -s 2 -d 0 -p ack -e 40 -c 0 -i 614 -a 0 -S 0 -y {6 6} - -t 2.51625 -s 2 -d 0 -p ack -e 40 -c 0 -i 614 -a 0 -S 0 -f 0 -m 1 -y {6 6} h -t 2.51625 -s 2 -d 0 -p ack -e 40 -c 0 -i 614 -a 0 -S 0 -y {-1 -1} r -t 2.56689 -s 2 -d 0 -p ack -e 40 -c 0 -i 614 -a 0 -S 0 -y {6 6} f -t 2.56688999999998968 -s 0 -d 4 -n cwnd_ -a tcp -v 2.000000 -o 1.000000 -T v f -t 2.56688999999998968 -s 0 -d 4 -n cwnd_ -a tcp -v 1.000000 -o 2.000000 -T v nam-1.15/edu/B2-stop-n-wait-loss.tcl0000664000076400007660000000664307024407017015770 0ustar tomhnsnam# stop and wait protocol in congestion # features : labeling, annotation, nam-graph, and window size monitoring set ns [new Simulator] $ns color 1 red $ns trace-all [open B2-stop-n-wait-loss.tr w] $ns namtrace-all [open B2-stop-n-wait-loss.nam w] ### build topology with 6 nodes proc build_topology { ns } { global node_ set node_(s1) [$ns node] set node_(s2) [$ns node] set node_(r1) [$ns node] set node_(r2) [$ns node] set node_(s3) [$ns node] set node_(s4) [$ns node] $node_(s2) color "red" $node_(s4) color "red" $node_(r1) color "blue" $node_(r2) color "blue" $node_(r1) shape "rectangular" $node_(r2) shape "rectangular" $ns at 0.0 "$node_(s1) label Stop&Wait" $ns at 0.0 "$node_(s2) label CBR" $ns at 0.0 "$node_(s3) label Stop&Wait" $ns at 0.0 "$node_(s4) label CBR" $ns duplex-link $node_(s1) $node_(r1) 0.5Mb 50ms DropTail $ns duplex-link $node_(s2) $node_(r1) 0.5Mb 50ms DropTail $ns duplex-link $node_(r1) $node_(r2) 0.5Mb 50ms DropTail $ns duplex-link $node_(r2) $node_(s3) 0.5Mb 50ms DropTail $ns duplex-link $node_(r2) $node_(s4) 0.5Mb 50ms DropTail $ns queue-limit $node_(r1) $node_(r2) 2 $ns queue-limit $node_(r2) $node_(r1) 2 $ns duplex-link-op $node_(s1) $node_(r1) orient right-down $ns duplex-link-op $node_(s2) $node_(r1) orient right-up $ns duplex-link-op $node_(r1) $node_(r2) orient right $ns duplex-link-op $node_(r2) $node_(s3) orient right-up $ns duplex-link-op $node_(r2) $node_(s4) orient right-down $ns duplex-link-op $node_(r1) $node_(r2) queuePos 0.5 $ns duplex-link-op $node_(r2) $node_(r1) queuePos 0.5 } build_topology $ns Agent/TCP set nam_tracevar_ true ### stop-n-wait protocol between s1 and s3 (Black) set tcp [new Agent/TCP] $tcp set window_ 1 $tcp set maxcwnd_ 1 $ns attach-agent $node_(s1) $tcp set sink [new Agent/TCPSink] $ns attach-agent $node_(s3) $sink $ns connect $tcp $sink set ftp [new Application/FTP] $ftp attach-agent $tcp $ns add-agent-trace $tcp tcp $ns monitor-agent-trace $tcp $tcp tracevar cwnd_ ### CBR traffic between s2 and s4 (Red) set cbr [$ns create-connection CBR $node_(s2) Null $node_(s4) 1] $cbr set fid_ 1 ### set operations $ns at 0.1 "$ftp start" $ns at 2.35 "$ftp stop" $ns at 0.1 "$cbr start" $ns at 2.35 "$cbr stop" # $ns at 0.48 "$ns queue-limit $node_(r1) $node_(r2) 1" $ns at 0.52 "$ns queue-limit $node_(r1) $node_(r2) 2" $ns at 3.0 "finish" ### add annotation $ns at 0.0 "$ns trace-annotate \"Stop and Wait with packet loss\"" $ns at 0.05 "$ns trace-annotate \"FTP starts at 0.1\"" $ns at 0.11 "$ns trace-annotate \"Send Packet_0\"" $ns at 0.30 "$ns trace-annotate \"Receive Ack_0\"" $ns at 0.45 "$ns trace-annotate \"Send Packet_1\"" $ns at 0.50 "$ns trace-annotate \"Packet_1 is lost\"" $ns at 0.55 "$ns trace-annotate \"Waiting for Ack_1\"" $ns at 1.34 "$ns trace-annotate \"Timout -> Retransmit Packet_1\"" $ns at 1.55 "$ns trace-annotate \"Receive Ack_1\"" $ns at 1.70 "$ns trace-annotate \"Send Packet_2\"" $ns at 1.90 "$ns trace-annotate \"Receive Ack_2 \"" $ns at 2.0 "$ns trace-annotate \"FTP stops\"" proc finish {} { global ns $ns flush-trace puts "filtering..." exec tclsh ../bin/namfilter.tcl B2-stop-n-wait-loss.nam puts "running nam..." exec nam B2-stop-n-wait-loss.nam & exit 0 } $ns run nam-1.15/edu/B2-stop-n-wait-loss.tr0000664000076400007660000076734306751716011015651 0ustar tomhnsnamv 0 eval {set sim_annotation {Stop and Wait with packet loss}} v 0.050000000000000003 eval {set sim_annotation {FTP starts at 0.1}} + 0.1 0 2 tcp 1000 ------- 0 0.0 4.0 0 0 - 0.1 0 2 tcp 1000 ------- 0 0.0 4.0 0 0 + 0.1 1 2 cbr 210 ------- 1 1.0 5.0 0 1 - 0.1 1 2 cbr 210 ------- 1 1.0 5.0 0 1 + 0.10375 1 2 cbr 210 ------- 1 1.0 5.0 1 2 - 0.10375 1 2 cbr 210 ------- 1 1.0 5.0 1 2 + 0.1075 1 2 cbr 210 ------- 1 1.0 5.0 2 3 - 0.1075 1 2 cbr 210 ------- 1 1.0 5.0 2 3 v 0.11 eval {set sim_annotation {Send Packet_0}} + 0.11125 1 2 cbr 210 ------- 1 1.0 5.0 3 4 - 0.11125 1 2 cbr 210 ------- 1 1.0 5.0 3 4 + 0.115 1 2 cbr 210 ------- 1 1.0 5.0 4 5 - 0.115 1 2 cbr 210 ------- 1 1.0 5.0 4 5 + 0.11875 1 2 cbr 210 ------- 1 1.0 5.0 5 6 - 0.11875 1 2 cbr 210 ------- 1 1.0 5.0 5 6 + 0.1225 1 2 cbr 210 ------- 1 1.0 5.0 6 7 - 0.1225 1 2 cbr 210 ------- 1 1.0 5.0 6 7 + 0.12625 1 2 cbr 210 ------- 1 1.0 5.0 7 8 - 0.12625 1 2 cbr 210 ------- 1 1.0 5.0 7 8 + 0.13 1 2 cbr 210 ------- 1 1.0 5.0 8 9 - 0.13 1 2 cbr 210 ------- 1 1.0 5.0 8 9 + 0.13375 1 2 cbr 210 ------- 1 1.0 5.0 9 10 - 0.13375 1 2 cbr 210 ------- 1 1.0 5.0 9 10 + 0.1375 1 2 cbr 210 ------- 1 1.0 5.0 10 11 - 0.1375 1 2 cbr 210 ------- 1 1.0 5.0 10 11 + 0.14125 1 2 cbr 210 ------- 1 1.0 5.0 11 12 - 0.14125 1 2 cbr 210 ------- 1 1.0 5.0 11 12 + 0.145 1 2 cbr 210 ------- 1 1.0 5.0 12 13 - 0.145 1 2 cbr 210 ------- 1 1.0 5.0 12 13 + 0.14875 1 2 cbr 210 ------- 1 1.0 5.0 13 14 - 0.14875 1 2 cbr 210 ------- 1 1.0 5.0 13 14 + 0.1525 1 2 cbr 210 ------- 1 1.0 5.0 14 15 - 0.1525 1 2 cbr 210 ------- 1 1.0 5.0 14 15 r 0.15336 1 2 cbr 210 ------- 1 1.0 5.0 0 1 + 0.15336 2 3 cbr 210 ------- 1 1.0 5.0 0 1 - 0.15336 2 3 cbr 210 ------- 1 1.0 5.0 0 1 + 0.15625 1 2 cbr 210 ------- 1 1.0 5.0 15 16 - 0.15625 1 2 cbr 210 ------- 1 1.0 5.0 15 16 r 0.15711 1 2 cbr 210 ------- 1 1.0 5.0 1 2 + 0.15711 2 3 cbr 210 ------- 1 1.0 5.0 1 2 - 0.15711 2 3 cbr 210 ------- 1 1.0 5.0 1 2 + 0.16 1 2 cbr 210 ------- 1 1.0 5.0 16 17 - 0.16 1 2 cbr 210 ------- 1 1.0 5.0 16 17 r 0.16086 1 2 cbr 210 ------- 1 1.0 5.0 2 3 + 0.16086 2 3 cbr 210 ------- 1 1.0 5.0 2 3 - 0.16086 2 3 cbr 210 ------- 1 1.0 5.0 2 3 + 0.16375 1 2 cbr 210 ------- 1 1.0 5.0 17 18 - 0.16375 1 2 cbr 210 ------- 1 1.0 5.0 17 18 r 0.16461 1 2 cbr 210 ------- 1 1.0 5.0 3 4 + 0.16461 2 3 cbr 210 ------- 1 1.0 5.0 3 4 - 0.16461 2 3 cbr 210 ------- 1 1.0 5.0 3 4 r 0.166 0 2 tcp 1000 ------- 0 0.0 4.0 0 0 + 0.166 2 3 tcp 1000 ------- 0 0.0 4.0 0 0 + 0.1675 1 2 cbr 210 ------- 1 1.0 5.0 18 19 - 0.1675 1 2 cbr 210 ------- 1 1.0 5.0 18 19 - 0.16797 2 3 tcp 1000 ------- 0 0.0 4.0 0 0 r 0.16836 1 2 cbr 210 ------- 1 1.0 5.0 4 5 + 0.16836 2 3 cbr 210 ------- 1 1.0 5.0 4 5 + 0.17125 1 2 cbr 210 ------- 1 1.0 5.0 19 20 - 0.17125 1 2 cbr 210 ------- 1 1.0 5.0 19 20 r 0.17211 1 2 cbr 210 ------- 1 1.0 5.0 5 6 + 0.17211 2 3 cbr 210 ------- 1 1.0 5.0 5 6 d 0.17211 2 3 cbr 210 ------- 1 1.0 5.0 5 6 + 0.175 1 2 cbr 210 ------- 1 1.0 5.0 20 21 - 0.175 1 2 cbr 210 ------- 1 1.0 5.0 20 21 r 0.17586 1 2 cbr 210 ------- 1 1.0 5.0 6 7 + 0.17586 2 3 cbr 210 ------- 1 1.0 5.0 6 7 d 0.17586 2 3 cbr 210 ------- 1 1.0 5.0 6 7 + 0.17875 1 2 cbr 210 ------- 1 1.0 5.0 21 22 - 0.17875 1 2 cbr 210 ------- 1 1.0 5.0 21 22 r 0.17961 1 2 cbr 210 ------- 1 1.0 5.0 7 8 + 0.17961 2 3 cbr 210 ------- 1 1.0 5.0 7 8 d 0.17961 2 3 cbr 210 ------- 1 1.0 5.0 7 8 + 0.1825 1 2 cbr 210 ------- 1 1.0 5.0 22 23 - 0.1825 1 2 cbr 210 ------- 1 1.0 5.0 22 23 r 0.18336 1 2 cbr 210 ------- 1 1.0 5.0 8 9 + 0.18336 2 3 cbr 210 ------- 1 1.0 5.0 8 9 d 0.18336 2 3 cbr 210 ------- 1 1.0 5.0 8 9 - 0.18397 2 3 cbr 210 ------- 1 1.0 5.0 4 5 + 0.18625 1 2 cbr 210 ------- 1 1.0 5.0 23 24 - 0.18625 1 2 cbr 210 ------- 1 1.0 5.0 23 24 r 0.18711 1 2 cbr 210 ------- 1 1.0 5.0 9 10 + 0.18711 2 3 cbr 210 ------- 1 1.0 5.0 9 10 - 0.18733 2 3 cbr 210 ------- 1 1.0 5.0 9 10 + 0.19 1 2 cbr 210 ------- 1 1.0 5.0 24 25 - 0.19 1 2 cbr 210 ------- 1 1.0 5.0 24 25 r 0.19086 1 2 cbr 210 ------- 1 1.0 5.0 10 11 + 0.19086 2 3 cbr 210 ------- 1 1.0 5.0 10 11 - 0.19086 2 3 cbr 210 ------- 1 1.0 5.0 10 11 + 0.19375 1 2 cbr 210 ------- 1 1.0 5.0 25 26 - 0.19375 1 2 cbr 210 ------- 1 1.0 5.0 25 26 r 0.19461 1 2 cbr 210 ------- 1 1.0 5.0 11 12 + 0.19461 2 3 cbr 210 ------- 1 1.0 5.0 11 12 - 0.19461 2 3 cbr 210 ------- 1 1.0 5.0 11 12 + 0.1975 1 2 cbr 210 ------- 1 1.0 5.0 26 27 - 0.1975 1 2 cbr 210 ------- 1 1.0 5.0 26 27 r 0.19836 1 2 cbr 210 ------- 1 1.0 5.0 12 13 + 0.19836 2 3 cbr 210 ------- 1 1.0 5.0 12 13 - 0.19836 2 3 cbr 210 ------- 1 1.0 5.0 12 13 + 0.20125 1 2 cbr 210 ------- 1 1.0 5.0 27 28 - 0.20125 1 2 cbr 210 ------- 1 1.0 5.0 27 28 r 0.20211 1 2 cbr 210 ------- 1 1.0 5.0 13 14 + 0.20211 2 3 cbr 210 ------- 1 1.0 5.0 13 14 - 0.20211 2 3 cbr 210 ------- 1 1.0 5.0 13 14 + 0.205 1 2 cbr 210 ------- 1 1.0 5.0 28 29 - 0.205 1 2 cbr 210 ------- 1 1.0 5.0 28 29 r 0.20586 1 2 cbr 210 ------- 1 1.0 5.0 14 15 + 0.20586 2 3 cbr 210 ------- 1 1.0 5.0 14 15 - 0.20586 2 3 cbr 210 ------- 1 1.0 5.0 14 15 r 0.20672 2 3 cbr 210 ------- 1 1.0 5.0 0 1 + 0.20672 3 5 cbr 210 ------- 1 1.0 5.0 0 1 - 0.20672 3 5 cbr 210 ------- 1 1.0 5.0 0 1 + 0.20875 1 2 cbr 210 ------- 1 1.0 5.0 29 30 - 0.20875 1 2 cbr 210 ------- 1 1.0 5.0 29 30 r 0.20961 1 2 cbr 210 ------- 1 1.0 5.0 15 16 + 0.20961 2 3 cbr 210 ------- 1 1.0 5.0 15 16 - 0.20961 2 3 cbr 210 ------- 1 1.0 5.0 15 16 r 0.21047 2 3 cbr 210 ------- 1 1.0 5.0 1 2 + 0.21047 3 5 cbr 210 ------- 1 1.0 5.0 1 2 - 0.21047 3 5 cbr 210 ------- 1 1.0 5.0 1 2 + 0.2125 1 2 cbr 210 ------- 1 1.0 5.0 30 31 - 0.2125 1 2 cbr 210 ------- 1 1.0 5.0 30 31 r 0.21336 1 2 cbr 210 ------- 1 1.0 5.0 16 17 + 0.21336 2 3 cbr 210 ------- 1 1.0 5.0 16 17 - 0.21336 2 3 cbr 210 ------- 1 1.0 5.0 16 17 r 0.21422 2 3 cbr 210 ------- 1 1.0 5.0 2 3 + 0.21422 3 5 cbr 210 ------- 1 1.0 5.0 2 3 - 0.21422 3 5 cbr 210 ------- 1 1.0 5.0 2 3 + 0.21625 1 2 cbr 210 ------- 1 1.0 5.0 31 32 - 0.21625 1 2 cbr 210 ------- 1 1.0 5.0 31 32 r 0.21711 1 2 cbr 210 ------- 1 1.0 5.0 17 18 + 0.21711 2 3 cbr 210 ------- 1 1.0 5.0 17 18 - 0.21711 2 3 cbr 210 ------- 1 1.0 5.0 17 18 r 0.21797 2 3 cbr 210 ------- 1 1.0 5.0 3 4 + 0.21797 3 5 cbr 210 ------- 1 1.0 5.0 3 4 - 0.21797 3 5 cbr 210 ------- 1 1.0 5.0 3 4 + 0.22 1 2 cbr 210 ------- 1 1.0 5.0 32 33 - 0.22 1 2 cbr 210 ------- 1 1.0 5.0 32 33 r 0.22086 1 2 cbr 210 ------- 1 1.0 5.0 18 19 + 0.22086 2 3 cbr 210 ------- 1 1.0 5.0 18 19 - 0.22086 2 3 cbr 210 ------- 1 1.0 5.0 18 19 + 0.22375 1 2 cbr 210 ------- 1 1.0 5.0 33 34 - 0.22375 1 2 cbr 210 ------- 1 1.0 5.0 33 34 r 0.22461 1 2 cbr 210 ------- 1 1.0 5.0 19 20 + 0.22461 2 3 cbr 210 ------- 1 1.0 5.0 19 20 - 0.22461 2 3 cbr 210 ------- 1 1.0 5.0 19 20 + 0.2275 1 2 cbr 210 ------- 1 1.0 5.0 34 35 - 0.2275 1 2 cbr 210 ------- 1 1.0 5.0 34 35 r 0.22836 1 2 cbr 210 ------- 1 1.0 5.0 20 21 + 0.22836 2 3 cbr 210 ------- 1 1.0 5.0 20 21 - 0.22836 2 3 cbr 210 ------- 1 1.0 5.0 20 21 + 0.23125 1 2 cbr 210 ------- 1 1.0 5.0 35 36 - 0.23125 1 2 cbr 210 ------- 1 1.0 5.0 35 36 r 0.23211 1 2 cbr 210 ------- 1 1.0 5.0 21 22 + 0.23211 2 3 cbr 210 ------- 1 1.0 5.0 21 22 - 0.23211 2 3 cbr 210 ------- 1 1.0 5.0 21 22 r 0.23397 2 3 tcp 1000 ------- 0 0.0 4.0 0 0 + 0.23397 3 4 tcp 1000 ------- 0 0.0 4.0 0 0 - 0.23397 3 4 tcp 1000 ------- 0 0.0 4.0 0 0 + 0.235 1 2 cbr 210 ------- 1 1.0 5.0 36 37 - 0.235 1 2 cbr 210 ------- 1 1.0 5.0 36 37 r 0.23586 1 2 cbr 210 ------- 1 1.0 5.0 22 23 + 0.23586 2 3 cbr 210 ------- 1 1.0 5.0 22 23 - 0.23586 2 3 cbr 210 ------- 1 1.0 5.0 22 23 r 0.23733 2 3 cbr 210 ------- 1 1.0 5.0 4 5 + 0.23733 3 5 cbr 210 ------- 1 1.0 5.0 4 5 - 0.23733 3 5 cbr 210 ------- 1 1.0 5.0 4 5 + 0.23875 1 2 cbr 210 ------- 1 1.0 5.0 37 38 - 0.23875 1 2 cbr 210 ------- 1 1.0 5.0 37 38 r 0.23961 1 2 cbr 210 ------- 1 1.0 5.0 23 24 + 0.23961 2 3 cbr 210 ------- 1 1.0 5.0 23 24 - 0.23961 2 3 cbr 210 ------- 1 1.0 5.0 23 24 r 0.24069 2 3 cbr 210 ------- 1 1.0 5.0 9 10 + 0.24069 3 5 cbr 210 ------- 1 1.0 5.0 9 10 - 0.24069 3 5 cbr 210 ------- 1 1.0 5.0 9 10 + 0.2425 1 2 cbr 210 ------- 1 1.0 5.0 38 39 - 0.2425 1 2 cbr 210 ------- 1 1.0 5.0 38 39 r 0.24336 1 2 cbr 210 ------- 1 1.0 5.0 24 25 + 0.24336 2 3 cbr 210 ------- 1 1.0 5.0 24 25 - 0.24336 2 3 cbr 210 ------- 1 1.0 5.0 24 25 r 0.24422 2 3 cbr 210 ------- 1 1.0 5.0 10 11 + 0.24422 3 5 cbr 210 ------- 1 1.0 5.0 10 11 - 0.24422 3 5 cbr 210 ------- 1 1.0 5.0 10 11 + 0.24625 1 2 cbr 210 ------- 1 1.0 5.0 39 40 - 0.24625 1 2 cbr 210 ------- 1 1.0 5.0 39 40 r 0.24711 1 2 cbr 210 ------- 1 1.0 5.0 25 26 + 0.24711 2 3 cbr 210 ------- 1 1.0 5.0 25 26 - 0.24711 2 3 cbr 210 ------- 1 1.0 5.0 25 26 r 0.24797 2 3 cbr 210 ------- 1 1.0 5.0 11 12 + 0.24797 3 5 cbr 210 ------- 1 1.0 5.0 11 12 - 0.24797 3 5 cbr 210 ------- 1 1.0 5.0 11 12 + 0.25 1 2 cbr 210 ------- 1 1.0 5.0 40 41 - 0.25 1 2 cbr 210 ------- 1 1.0 5.0 40 41 r 0.25086 1 2 cbr 210 ------- 1 1.0 5.0 26 27 + 0.25086 2 3 cbr 210 ------- 1 1.0 5.0 26 27 - 0.25086 2 3 cbr 210 ------- 1 1.0 5.0 26 27 r 0.25172 2 3 cbr 210 ------- 1 1.0 5.0 12 13 + 0.25172 3 5 cbr 210 ------- 1 1.0 5.0 12 13 - 0.25172 3 5 cbr 210 ------- 1 1.0 5.0 12 13 + 0.25375 1 2 cbr 210 ------- 1 1.0 5.0 41 42 - 0.25375 1 2 cbr 210 ------- 1 1.0 5.0 41 42 r 0.25461 1 2 cbr 210 ------- 1 1.0 5.0 27 28 + 0.25461 2 3 cbr 210 ------- 1 1.0 5.0 27 28 - 0.25461 2 3 cbr 210 ------- 1 1.0 5.0 27 28 r 0.25547 2 3 cbr 210 ------- 1 1.0 5.0 13 14 + 0.25547 3 5 cbr 210 ------- 1 1.0 5.0 13 14 - 0.25547 3 5 cbr 210 ------- 1 1.0 5.0 13 14 + 0.2575 1 2 cbr 210 ------- 1 1.0 5.0 42 43 - 0.2575 1 2 cbr 210 ------- 1 1.0 5.0 42 43 r 0.25836 1 2 cbr 210 ------- 1 1.0 5.0 28 29 + 0.25836 2 3 cbr 210 ------- 1 1.0 5.0 28 29 - 0.25836 2 3 cbr 210 ------- 1 1.0 5.0 28 29 r 0.25922 2 3 cbr 210 ------- 1 1.0 5.0 14 15 + 0.25922 3 5 cbr 210 ------- 1 1.0 5.0 14 15 - 0.25922 3 5 cbr 210 ------- 1 1.0 5.0 14 15 r 0.26008 3 5 cbr 210 ------- 1 1.0 5.0 0 1 + 0.26125 1 2 cbr 210 ------- 1 1.0 5.0 43 44 - 0.26125 1 2 cbr 210 ------- 1 1.0 5.0 43 44 r 0.26211 1 2 cbr 210 ------- 1 1.0 5.0 29 30 + 0.26211 2 3 cbr 210 ------- 1 1.0 5.0 29 30 - 0.26211 2 3 cbr 210 ------- 1 1.0 5.0 29 30 r 0.26297 2 3 cbr 210 ------- 1 1.0 5.0 15 16 + 0.26297 3 5 cbr 210 ------- 1 1.0 5.0 15 16 - 0.26297 3 5 cbr 210 ------- 1 1.0 5.0 15 16 r 0.26383 3 5 cbr 210 ------- 1 1.0 5.0 1 2 + 0.265 1 2 cbr 210 ------- 1 1.0 5.0 44 45 - 0.265 1 2 cbr 210 ------- 1 1.0 5.0 44 45 r 0.26586 1 2 cbr 210 ------- 1 1.0 5.0 30 31 + 0.26586 2 3 cbr 210 ------- 1 1.0 5.0 30 31 - 0.26586 2 3 cbr 210 ------- 1 1.0 5.0 30 31 r 0.26672 2 3 cbr 210 ------- 1 1.0 5.0 16 17 + 0.26672 3 5 cbr 210 ------- 1 1.0 5.0 16 17 - 0.26672 3 5 cbr 210 ------- 1 1.0 5.0 16 17 r 0.26758 3 5 cbr 210 ------- 1 1.0 5.0 2 3 + 0.26875 1 2 cbr 210 ------- 1 1.0 5.0 45 46 - 0.26875 1 2 cbr 210 ------- 1 1.0 5.0 45 46 r 0.26961 1 2 cbr 210 ------- 1 1.0 5.0 31 32 + 0.26961 2 3 cbr 210 ------- 1 1.0 5.0 31 32 - 0.26961 2 3 cbr 210 ------- 1 1.0 5.0 31 32 r 0.27047 2 3 cbr 210 ------- 1 1.0 5.0 17 18 + 0.27047 3 5 cbr 210 ------- 1 1.0 5.0 17 18 - 0.27047 3 5 cbr 210 ------- 1 1.0 5.0 17 18 r 0.27133 3 5 cbr 210 ------- 1 1.0 5.0 3 4 + 0.2725 1 2 cbr 210 ------- 1 1.0 5.0 46 47 - 0.2725 1 2 cbr 210 ------- 1 1.0 5.0 46 47 r 0.27336 1 2 cbr 210 ------- 1 1.0 5.0 32 33 + 0.27336 2 3 cbr 210 ------- 1 1.0 5.0 32 33 - 0.27336 2 3 cbr 210 ------- 1 1.0 5.0 32 33 r 0.27422 2 3 cbr 210 ------- 1 1.0 5.0 18 19 + 0.27422 3 5 cbr 210 ------- 1 1.0 5.0 18 19 - 0.27422 3 5 cbr 210 ------- 1 1.0 5.0 18 19 + 0.27625 1 2 cbr 210 ------- 1 1.0 5.0 47 48 - 0.27625 1 2 cbr 210 ------- 1 1.0 5.0 47 48 r 0.27711 1 2 cbr 210 ------- 1 1.0 5.0 33 34 + 0.27711 2 3 cbr 210 ------- 1 1.0 5.0 33 34 - 0.27711 2 3 cbr 210 ------- 1 1.0 5.0 33 34 r 0.27797 2 3 cbr 210 ------- 1 1.0 5.0 19 20 + 0.27797 3 5 cbr 210 ------- 1 1.0 5.0 19 20 - 0.27797 3 5 cbr 210 ------- 1 1.0 5.0 19 20 + 0.28 1 2 cbr 210 ------- 1 1.0 5.0 48 49 - 0.28 1 2 cbr 210 ------- 1 1.0 5.0 48 49 r 0.28086 1 2 cbr 210 ------- 1 1.0 5.0 34 35 + 0.28086 2 3 cbr 210 ------- 1 1.0 5.0 34 35 - 0.28086 2 3 cbr 210 ------- 1 1.0 5.0 34 35 r 0.28172 2 3 cbr 210 ------- 1 1.0 5.0 20 21 + 0.28172 3 5 cbr 210 ------- 1 1.0 5.0 20 21 - 0.28172 3 5 cbr 210 ------- 1 1.0 5.0 20 21 + 0.28375 1 2 cbr 210 ------- 1 1.0 5.0 49 50 - 0.28375 1 2 cbr 210 ------- 1 1.0 5.0 49 50 r 0.28461 1 2 cbr 210 ------- 1 1.0 5.0 35 36 + 0.28461 2 3 cbr 210 ------- 1 1.0 5.0 35 36 - 0.28461 2 3 cbr 210 ------- 1 1.0 5.0 35 36 r 0.28547 2 3 cbr 210 ------- 1 1.0 5.0 21 22 + 0.28547 3 5 cbr 210 ------- 1 1.0 5.0 21 22 - 0.28547 3 5 cbr 210 ------- 1 1.0 5.0 21 22 + 0.2875 1 2 cbr 210 ------- 1 1.0 5.0 50 51 - 0.2875 1 2 cbr 210 ------- 1 1.0 5.0 50 51 r 0.28836 1 2 cbr 210 ------- 1 1.0 5.0 36 37 + 0.28836 2 3 cbr 210 ------- 1 1.0 5.0 36 37 - 0.28836 2 3 cbr 210 ------- 1 1.0 5.0 36 37 r 0.28922 2 3 cbr 210 ------- 1 1.0 5.0 22 23 + 0.28922 3 5 cbr 210 ------- 1 1.0 5.0 22 23 - 0.28922 3 5 cbr 210 ------- 1 1.0 5.0 22 23 r 0.29069 3 5 cbr 210 ------- 1 1.0 5.0 4 5 + 0.29125 1 2 cbr 210 ------- 1 1.0 5.0 51 52 - 0.29125 1 2 cbr 210 ------- 1 1.0 5.0 51 52 r 0.29211 1 2 cbr 210 ------- 1 1.0 5.0 37 38 + 0.29211 2 3 cbr 210 ------- 1 1.0 5.0 37 38 - 0.29211 2 3 cbr 210 ------- 1 1.0 5.0 37 38 r 0.29297 2 3 cbr 210 ------- 1 1.0 5.0 23 24 + 0.29297 3 5 cbr 210 ------- 1 1.0 5.0 23 24 - 0.29297 3 5 cbr 210 ------- 1 1.0 5.0 23 24 r 0.29405 3 5 cbr 210 ------- 1 1.0 5.0 9 10 + 0.295 1 2 cbr 210 ------- 1 1.0 5.0 52 53 - 0.295 1 2 cbr 210 ------- 1 1.0 5.0 52 53 r 0.29586 1 2 cbr 210 ------- 1 1.0 5.0 38 39 + 0.29586 2 3 cbr 210 ------- 1 1.0 5.0 38 39 - 0.29586 2 3 cbr 210 ------- 1 1.0 5.0 38 39 r 0.29672 2 3 cbr 210 ------- 1 1.0 5.0 24 25 + 0.29672 3 5 cbr 210 ------- 1 1.0 5.0 24 25 - 0.29672 3 5 cbr 210 ------- 1 1.0 5.0 24 25 r 0.29758 3 5 cbr 210 ------- 1 1.0 5.0 10 11 + 0.29875 1 2 cbr 210 ------- 1 1.0 5.0 53 54 - 0.29875 1 2 cbr 210 ------- 1 1.0 5.0 53 54 r 0.29961 1 2 cbr 210 ------- 1 1.0 5.0 39 40 + 0.29961 2 3 cbr 210 ------- 1 1.0 5.0 39 40 - 0.29961 2 3 cbr 210 ------- 1 1.0 5.0 39 40 r 0.29997 3 4 tcp 1000 ------- 0 0.0 4.0 0 0 + 0.29997 4 3 ack 40 ------- 0 4.0 0.0 0 55 - 0.29997 4 3 ack 40 ------- 0 4.0 0.0 0 55 v 0.29999999999999999 eval {set sim_annotation {Receive Ack_0}} r 0.30047 2 3 cbr 210 ------- 1 1.0 5.0 25 26 + 0.30047 3 5 cbr 210 ------- 1 1.0 5.0 25 26 - 0.30047 3 5 cbr 210 ------- 1 1.0 5.0 25 26 r 0.30133 3 5 cbr 210 ------- 1 1.0 5.0 11 12 + 0.3025 1 2 cbr 210 ------- 1 1.0 5.0 54 56 - 0.3025 1 2 cbr 210 ------- 1 1.0 5.0 54 56 r 0.30336 1 2 cbr 210 ------- 1 1.0 5.0 40 41 + 0.30336 2 3 cbr 210 ------- 1 1.0 5.0 40 41 - 0.30336 2 3 cbr 210 ------- 1 1.0 5.0 40 41 r 0.30422 2 3 cbr 210 ------- 1 1.0 5.0 26 27 + 0.30422 3 5 cbr 210 ------- 1 1.0 5.0 26 27 - 0.30422 3 5 cbr 210 ------- 1 1.0 5.0 26 27 r 0.30508 3 5 cbr 210 ------- 1 1.0 5.0 12 13 + 0.30625 1 2 cbr 210 ------- 1 1.0 5.0 55 57 - 0.30625 1 2 cbr 210 ------- 1 1.0 5.0 55 57 r 0.30711 1 2 cbr 210 ------- 1 1.0 5.0 41 42 + 0.30711 2 3 cbr 210 ------- 1 1.0 5.0 41 42 - 0.30711 2 3 cbr 210 ------- 1 1.0 5.0 41 42 r 0.30797 2 3 cbr 210 ------- 1 1.0 5.0 27 28 + 0.30797 3 5 cbr 210 ------- 1 1.0 5.0 27 28 - 0.30797 3 5 cbr 210 ------- 1 1.0 5.0 27 28 r 0.30883 3 5 cbr 210 ------- 1 1.0 5.0 13 14 + 0.31 1 2 cbr 210 ------- 1 1.0 5.0 56 58 - 0.31 1 2 cbr 210 ------- 1 1.0 5.0 56 58 r 0.31086 1 2 cbr 210 ------- 1 1.0 5.0 42 43 + 0.31086 2 3 cbr 210 ------- 1 1.0 5.0 42 43 - 0.31086 2 3 cbr 210 ------- 1 1.0 5.0 42 43 r 0.31172 2 3 cbr 210 ------- 1 1.0 5.0 28 29 + 0.31172 3 5 cbr 210 ------- 1 1.0 5.0 28 29 - 0.31172 3 5 cbr 210 ------- 1 1.0 5.0 28 29 r 0.31258 3 5 cbr 210 ------- 1 1.0 5.0 14 15 + 0.31375 1 2 cbr 210 ------- 1 1.0 5.0 57 59 - 0.31375 1 2 cbr 210 ------- 1 1.0 5.0 57 59 r 0.31461 1 2 cbr 210 ------- 1 1.0 5.0 43 44 + 0.31461 2 3 cbr 210 ------- 1 1.0 5.0 43 44 - 0.31461 2 3 cbr 210 ------- 1 1.0 5.0 43 44 r 0.31547 2 3 cbr 210 ------- 1 1.0 5.0 29 30 + 0.31547 3 5 cbr 210 ------- 1 1.0 5.0 29 30 - 0.31547 3 5 cbr 210 ------- 1 1.0 5.0 29 30 r 0.31633 3 5 cbr 210 ------- 1 1.0 5.0 15 16 + 0.3175 1 2 cbr 210 ------- 1 1.0 5.0 58 60 - 0.3175 1 2 cbr 210 ------- 1 1.0 5.0 58 60 r 0.31836 1 2 cbr 210 ------- 1 1.0 5.0 44 45 + 0.31836 2 3 cbr 210 ------- 1 1.0 5.0 44 45 - 0.31836 2 3 cbr 210 ------- 1 1.0 5.0 44 45 r 0.31922 2 3 cbr 210 ------- 1 1.0 5.0 30 31 + 0.31922 3 5 cbr 210 ------- 1 1.0 5.0 30 31 - 0.31922 3 5 cbr 210 ------- 1 1.0 5.0 30 31 r 0.32008 3 5 cbr 210 ------- 1 1.0 5.0 16 17 + 0.32125 1 2 cbr 210 ------- 1 1.0 5.0 59 61 - 0.32125 1 2 cbr 210 ------- 1 1.0 5.0 59 61 r 0.32211 1 2 cbr 210 ------- 1 1.0 5.0 45 46 + 0.32211 2 3 cbr 210 ------- 1 1.0 5.0 45 46 - 0.32211 2 3 cbr 210 ------- 1 1.0 5.0 45 46 r 0.32297 2 3 cbr 210 ------- 1 1.0 5.0 31 32 + 0.32297 3 5 cbr 210 ------- 1 1.0 5.0 31 32 - 0.32297 3 5 cbr 210 ------- 1 1.0 5.0 31 32 r 0.32383 3 5 cbr 210 ------- 1 1.0 5.0 17 18 + 0.325 1 2 cbr 210 ------- 1 1.0 5.0 60 62 - 0.325 1 2 cbr 210 ------- 1 1.0 5.0 60 62 r 0.32586 1 2 cbr 210 ------- 1 1.0 5.0 46 47 + 0.32586 2 3 cbr 210 ------- 1 1.0 5.0 46 47 - 0.32586 2 3 cbr 210 ------- 1 1.0 5.0 46 47 r 0.32672 2 3 cbr 210 ------- 1 1.0 5.0 32 33 + 0.32672 3 5 cbr 210 ------- 1 1.0 5.0 32 33 - 0.32672 3 5 cbr 210 ------- 1 1.0 5.0 32 33 r 0.32758 3 5 cbr 210 ------- 1 1.0 5.0 18 19 + 0.32875 1 2 cbr 210 ------- 1 1.0 5.0 61 63 - 0.32875 1 2 cbr 210 ------- 1 1.0 5.0 61 63 r 0.32961 1 2 cbr 210 ------- 1 1.0 5.0 47 48 + 0.32961 2 3 cbr 210 ------- 1 1.0 5.0 47 48 - 0.32961 2 3 cbr 210 ------- 1 1.0 5.0 47 48 r 0.33047 2 3 cbr 210 ------- 1 1.0 5.0 33 34 + 0.33047 3 5 cbr 210 ------- 1 1.0 5.0 33 34 - 0.33047 3 5 cbr 210 ------- 1 1.0 5.0 33 34 r 0.33133 3 5 cbr 210 ------- 1 1.0 5.0 19 20 + 0.3325 1 2 cbr 210 ------- 1 1.0 5.0 62 64 - 0.3325 1 2 cbr 210 ------- 1 1.0 5.0 62 64 r 0.33336 1 2 cbr 210 ------- 1 1.0 5.0 48 49 + 0.33336 2 3 cbr 210 ------- 1 1.0 5.0 48 49 - 0.33336 2 3 cbr 210 ------- 1 1.0 5.0 48 49 r 0.33422 2 3 cbr 210 ------- 1 1.0 5.0 34 35 + 0.33422 3 5 cbr 210 ------- 1 1.0 5.0 34 35 - 0.33422 3 5 cbr 210 ------- 1 1.0 5.0 34 35 r 0.33508 3 5 cbr 210 ------- 1 1.0 5.0 20 21 + 0.33625 1 2 cbr 210 ------- 1 1.0 5.0 63 65 - 0.33625 1 2 cbr 210 ------- 1 1.0 5.0 63 65 r 0.33711 1 2 cbr 210 ------- 1 1.0 5.0 49 50 + 0.33711 2 3 cbr 210 ------- 1 1.0 5.0 49 50 - 0.33711 2 3 cbr 210 ------- 1 1.0 5.0 49 50 r 0.33797 2 3 cbr 210 ------- 1 1.0 5.0 35 36 + 0.33797 3 5 cbr 210 ------- 1 1.0 5.0 35 36 - 0.33797 3 5 cbr 210 ------- 1 1.0 5.0 35 36 r 0.33883 3 5 cbr 210 ------- 1 1.0 5.0 21 22 + 0.34 1 2 cbr 210 ------- 1 1.0 5.0 64 66 - 0.34 1 2 cbr 210 ------- 1 1.0 5.0 64 66 r 0.34086 1 2 cbr 210 ------- 1 1.0 5.0 50 51 + 0.34086 2 3 cbr 210 ------- 1 1.0 5.0 50 51 - 0.34086 2 3 cbr 210 ------- 1 1.0 5.0 50 51 r 0.34172 2 3 cbr 210 ------- 1 1.0 5.0 36 37 + 0.34172 3 5 cbr 210 ------- 1 1.0 5.0 36 37 - 0.34172 3 5 cbr 210 ------- 1 1.0 5.0 36 37 r 0.34258 3 5 cbr 210 ------- 1 1.0 5.0 22 23 + 0.34375 1 2 cbr 210 ------- 1 1.0 5.0 65 67 - 0.34375 1 2 cbr 210 ------- 1 1.0 5.0 65 67 r 0.34461 1 2 cbr 210 ------- 1 1.0 5.0 51 52 + 0.34461 2 3 cbr 210 ------- 1 1.0 5.0 51 52 - 0.34461 2 3 cbr 210 ------- 1 1.0 5.0 51 52 r 0.34547 2 3 cbr 210 ------- 1 1.0 5.0 37 38 + 0.34547 3 5 cbr 210 ------- 1 1.0 5.0 37 38 - 0.34547 3 5 cbr 210 ------- 1 1.0 5.0 37 38 r 0.34633 3 5 cbr 210 ------- 1 1.0 5.0 23 24 + 0.3475 1 2 cbr 210 ------- 1 1.0 5.0 66 68 - 0.3475 1 2 cbr 210 ------- 1 1.0 5.0 66 68 r 0.34836 1 2 cbr 210 ------- 1 1.0 5.0 52 53 + 0.34836 2 3 cbr 210 ------- 1 1.0 5.0 52 53 - 0.34836 2 3 cbr 210 ------- 1 1.0 5.0 52 53 r 0.34922 2 3 cbr 210 ------- 1 1.0 5.0 38 39 + 0.34922 3 5 cbr 210 ------- 1 1.0 5.0 38 39 - 0.34922 3 5 cbr 210 ------- 1 1.0 5.0 38 39 r 0.35008 3 5 cbr 210 ------- 1 1.0 5.0 24 25 r 0.35061 4 3 ack 40 ------- 0 4.0 0.0 0 55 + 0.35061 3 2 ack 40 ------- 0 4.0 0.0 0 55 - 0.35061 3 2 ack 40 ------- 0 4.0 0.0 0 55 + 0.35125 1 2 cbr 210 ------- 1 1.0 5.0 67 69 - 0.35125 1 2 cbr 210 ------- 1 1.0 5.0 67 69 r 0.35211 1 2 cbr 210 ------- 1 1.0 5.0 53 54 + 0.35211 2 3 cbr 210 ------- 1 1.0 5.0 53 54 - 0.35211 2 3 cbr 210 ------- 1 1.0 5.0 53 54 r 0.35297 2 3 cbr 210 ------- 1 1.0 5.0 39 40 + 0.35297 3 5 cbr 210 ------- 1 1.0 5.0 39 40 - 0.35297 3 5 cbr 210 ------- 1 1.0 5.0 39 40 r 0.35383 3 5 cbr 210 ------- 1 1.0 5.0 25 26 + 0.355 1 2 cbr 210 ------- 1 1.0 5.0 68 70 - 0.355 1 2 cbr 210 ------- 1 1.0 5.0 68 70 r 0.35586 1 2 cbr 210 ------- 1 1.0 5.0 54 56 + 0.35586 2 3 cbr 210 ------- 1 1.0 5.0 54 56 - 0.35586 2 3 cbr 210 ------- 1 1.0 5.0 54 56 r 0.35672 2 3 cbr 210 ------- 1 1.0 5.0 40 41 + 0.35672 3 5 cbr 210 ------- 1 1.0 5.0 40 41 - 0.35672 3 5 cbr 210 ------- 1 1.0 5.0 40 41 r 0.35758 3 5 cbr 210 ------- 1 1.0 5.0 26 27 + 0.35875 1 2 cbr 210 ------- 1 1.0 5.0 69 71 - 0.35875 1 2 cbr 210 ------- 1 1.0 5.0 69 71 r 0.35961 1 2 cbr 210 ------- 1 1.0 5.0 55 57 + 0.35961 2 3 cbr 210 ------- 1 1.0 5.0 55 57 - 0.35961 2 3 cbr 210 ------- 1 1.0 5.0 55 57 r 0.36047 2 3 cbr 210 ------- 1 1.0 5.0 41 42 + 0.36047 3 5 cbr 210 ------- 1 1.0 5.0 41 42 - 0.36047 3 5 cbr 210 ------- 1 1.0 5.0 41 42 r 0.36133 3 5 cbr 210 ------- 1 1.0 5.0 27 28 + 0.3625 1 2 cbr 210 ------- 1 1.0 5.0 70 72 - 0.3625 1 2 cbr 210 ------- 1 1.0 5.0 70 72 r 0.36336 1 2 cbr 210 ------- 1 1.0 5.0 56 58 + 0.36336 2 3 cbr 210 ------- 1 1.0 5.0 56 58 - 0.36336 2 3 cbr 210 ------- 1 1.0 5.0 56 58 r 0.36422 2 3 cbr 210 ------- 1 1.0 5.0 42 43 + 0.36422 3 5 cbr 210 ------- 1 1.0 5.0 42 43 - 0.36422 3 5 cbr 210 ------- 1 1.0 5.0 42 43 r 0.36508 3 5 cbr 210 ------- 1 1.0 5.0 28 29 + 0.36625 1 2 cbr 210 ------- 1 1.0 5.0 71 73 - 0.36625 1 2 cbr 210 ------- 1 1.0 5.0 71 73 r 0.36711 1 2 cbr 210 ------- 1 1.0 5.0 57 59 + 0.36711 2 3 cbr 210 ------- 1 1.0 5.0 57 59 - 0.36711 2 3 cbr 210 ------- 1 1.0 5.0 57 59 r 0.36797 2 3 cbr 210 ------- 1 1.0 5.0 43 44 + 0.36797 3 5 cbr 210 ------- 1 1.0 5.0 43 44 - 0.36797 3 5 cbr 210 ------- 1 1.0 5.0 43 44 r 0.36883 3 5 cbr 210 ------- 1 1.0 5.0 29 30 + 0.37 1 2 cbr 210 ------- 1 1.0 5.0 72 74 - 0.37 1 2 cbr 210 ------- 1 1.0 5.0 72 74 r 0.37086 1 2 cbr 210 ------- 1 1.0 5.0 58 60 + 0.37086 2 3 cbr 210 ------- 1 1.0 5.0 58 60 - 0.37086 2 3 cbr 210 ------- 1 1.0 5.0 58 60 r 0.37172 2 3 cbr 210 ------- 1 1.0 5.0 44 45 + 0.37172 3 5 cbr 210 ------- 1 1.0 5.0 44 45 - 0.37172 3 5 cbr 210 ------- 1 1.0 5.0 44 45 r 0.37258 3 5 cbr 210 ------- 1 1.0 5.0 30 31 + 0.37375 1 2 cbr 210 ------- 1 1.0 5.0 73 75 - 0.37375 1 2 cbr 210 ------- 1 1.0 5.0 73 75 r 0.37461 1 2 cbr 210 ------- 1 1.0 5.0 59 61 + 0.37461 2 3 cbr 210 ------- 1 1.0 5.0 59 61 - 0.37461 2 3 cbr 210 ------- 1 1.0 5.0 59 61 r 0.37547 2 3 cbr 210 ------- 1 1.0 5.0 45 46 + 0.37547 3 5 cbr 210 ------- 1 1.0 5.0 45 46 - 0.37547 3 5 cbr 210 ------- 1 1.0 5.0 45 46 r 0.37633 3 5 cbr 210 ------- 1 1.0 5.0 31 32 + 0.3775 1 2 cbr 210 ------- 1 1.0 5.0 74 76 - 0.3775 1 2 cbr 210 ------- 1 1.0 5.0 74 76 r 0.37836 1 2 cbr 210 ------- 1 1.0 5.0 60 62 + 0.37836 2 3 cbr 210 ------- 1 1.0 5.0 60 62 - 0.37836 2 3 cbr 210 ------- 1 1.0 5.0 60 62 r 0.37922 2 3 cbr 210 ------- 1 1.0 5.0 46 47 + 0.37922 3 5 cbr 210 ------- 1 1.0 5.0 46 47 - 0.37922 3 5 cbr 210 ------- 1 1.0 5.0 46 47 r 0.38008 3 5 cbr 210 ------- 1 1.0 5.0 32 33 + 0.38125 1 2 cbr 210 ------- 1 1.0 5.0 75 77 - 0.38125 1 2 cbr 210 ------- 1 1.0 5.0 75 77 r 0.38211 1 2 cbr 210 ------- 1 1.0 5.0 61 63 + 0.38211 2 3 cbr 210 ------- 1 1.0 5.0 61 63 - 0.38211 2 3 cbr 210 ------- 1 1.0 5.0 61 63 r 0.38297 2 3 cbr 210 ------- 1 1.0 5.0 47 48 + 0.38297 3 5 cbr 210 ------- 1 1.0 5.0 47 48 - 0.38297 3 5 cbr 210 ------- 1 1.0 5.0 47 48 r 0.38383 3 5 cbr 210 ------- 1 1.0 5.0 33 34 + 0.385 1 2 cbr 210 ------- 1 1.0 5.0 76 78 - 0.385 1 2 cbr 210 ------- 1 1.0 5.0 76 78 r 0.38586 1 2 cbr 210 ------- 1 1.0 5.0 62 64 + 0.38586 2 3 cbr 210 ------- 1 1.0 5.0 62 64 - 0.38586 2 3 cbr 210 ------- 1 1.0 5.0 62 64 r 0.38672 2 3 cbr 210 ------- 1 1.0 5.0 48 49 + 0.38672 3 5 cbr 210 ------- 1 1.0 5.0 48 49 - 0.38672 3 5 cbr 210 ------- 1 1.0 5.0 48 49 r 0.38758 3 5 cbr 210 ------- 1 1.0 5.0 34 35 + 0.38875 1 2 cbr 210 ------- 1 1.0 5.0 77 79 - 0.38875 1 2 cbr 210 ------- 1 1.0 5.0 77 79 r 0.38961 1 2 cbr 210 ------- 1 1.0 5.0 63 65 + 0.38961 2 3 cbr 210 ------- 1 1.0 5.0 63 65 - 0.38961 2 3 cbr 210 ------- 1 1.0 5.0 63 65 r 0.39047 2 3 cbr 210 ------- 1 1.0 5.0 49 50 + 0.39047 3 5 cbr 210 ------- 1 1.0 5.0 49 50 - 0.39047 3 5 cbr 210 ------- 1 1.0 5.0 49 50 r 0.39133 3 5 cbr 210 ------- 1 1.0 5.0 35 36 + 0.3925 1 2 cbr 210 ------- 1 1.0 5.0 78 80 - 0.3925 1 2 cbr 210 ------- 1 1.0 5.0 78 80 r 0.39336 1 2 cbr 210 ------- 1 1.0 5.0 64 66 + 0.39336 2 3 cbr 210 ------- 1 1.0 5.0 64 66 - 0.39336 2 3 cbr 210 ------- 1 1.0 5.0 64 66 r 0.39422 2 3 cbr 210 ------- 1 1.0 5.0 50 51 + 0.39422 3 5 cbr 210 ------- 1 1.0 5.0 50 51 - 0.39422 3 5 cbr 210 ------- 1 1.0 5.0 50 51 r 0.39508 3 5 cbr 210 ------- 1 1.0 5.0 36 37 + 0.39625 1 2 cbr 210 ------- 1 1.0 5.0 79 81 - 0.39625 1 2 cbr 210 ------- 1 1.0 5.0 79 81 r 0.39711 1 2 cbr 210 ------- 1 1.0 5.0 65 67 + 0.39711 2 3 cbr 210 ------- 1 1.0 5.0 65 67 - 0.39711 2 3 cbr 210 ------- 1 1.0 5.0 65 67 r 0.39797 2 3 cbr 210 ------- 1 1.0 5.0 51 52 + 0.39797 3 5 cbr 210 ------- 1 1.0 5.0 51 52 - 0.39797 3 5 cbr 210 ------- 1 1.0 5.0 51 52 r 0.39883 3 5 cbr 210 ------- 1 1.0 5.0 37 38 + 0.4 1 2 cbr 210 ------- 1 1.0 5.0 80 82 - 0.4 1 2 cbr 210 ------- 1 1.0 5.0 80 82 r 0.40086 1 2 cbr 210 ------- 1 1.0 5.0 66 68 + 0.40086 2 3 cbr 210 ------- 1 1.0 5.0 66 68 - 0.40086 2 3 cbr 210 ------- 1 1.0 5.0 66 68 r 0.40125 3 2 ack 40 ------- 0 4.0 0.0 0 55 + 0.40125 2 0 ack 40 ------- 0 4.0 0.0 0 55 - 0.40125 2 0 ack 40 ------- 0 4.0 0.0 0 55 r 0.40172 2 3 cbr 210 ------- 1 1.0 5.0 52 53 + 0.40172 3 5 cbr 210 ------- 1 1.0 5.0 52 53 - 0.40172 3 5 cbr 210 ------- 1 1.0 5.0 52 53 r 0.40258 3 5 cbr 210 ------- 1 1.0 5.0 38 39 + 0.40375 1 2 cbr 210 ------- 1 1.0 5.0 81 83 - 0.40375 1 2 cbr 210 ------- 1 1.0 5.0 81 83 r 0.40461 1 2 cbr 210 ------- 1 1.0 5.0 67 69 + 0.40461 2 3 cbr 210 ------- 1 1.0 5.0 67 69 - 0.40461 2 3 cbr 210 ------- 1 1.0 5.0 67 69 r 0.40547 2 3 cbr 210 ------- 1 1.0 5.0 53 54 + 0.40547 3 5 cbr 210 ------- 1 1.0 5.0 53 54 - 0.40547 3 5 cbr 210 ------- 1 1.0 5.0 53 54 r 0.40633 3 5 cbr 210 ------- 1 1.0 5.0 39 40 + 0.4075 1 2 cbr 210 ------- 1 1.0 5.0 82 84 - 0.4075 1 2 cbr 210 ------- 1 1.0 5.0 82 84 r 0.40836 1 2 cbr 210 ------- 1 1.0 5.0 68 70 + 0.40836 2 3 cbr 210 ------- 1 1.0 5.0 68 70 - 0.40836 2 3 cbr 210 ------- 1 1.0 5.0 68 70 r 0.40922 2 3 cbr 210 ------- 1 1.0 5.0 54 56 + 0.40922 3 5 cbr 210 ------- 1 1.0 5.0 54 56 - 0.40922 3 5 cbr 210 ------- 1 1.0 5.0 54 56 r 0.41008 3 5 cbr 210 ------- 1 1.0 5.0 40 41 + 0.41125 1 2 cbr 210 ------- 1 1.0 5.0 83 85 - 0.41125 1 2 cbr 210 ------- 1 1.0 5.0 83 85 r 0.41211 1 2 cbr 210 ------- 1 1.0 5.0 69 71 + 0.41211 2 3 cbr 210 ------- 1 1.0 5.0 69 71 - 0.41211 2 3 cbr 210 ------- 1 1.0 5.0 69 71 r 0.41297 2 3 cbr 210 ------- 1 1.0 5.0 55 57 + 0.41297 3 5 cbr 210 ------- 1 1.0 5.0 55 57 - 0.41297 3 5 cbr 210 ------- 1 1.0 5.0 55 57 r 0.41383 3 5 cbr 210 ------- 1 1.0 5.0 41 42 + 0.415 1 2 cbr 210 ------- 1 1.0 5.0 84 86 - 0.415 1 2 cbr 210 ------- 1 1.0 5.0 84 86 r 0.41586 1 2 cbr 210 ------- 1 1.0 5.0 70 72 + 0.41586 2 3 cbr 210 ------- 1 1.0 5.0 70 72 - 0.41586 2 3 cbr 210 ------- 1 1.0 5.0 70 72 r 0.41672 2 3 cbr 210 ------- 1 1.0 5.0 56 58 + 0.41672 3 5 cbr 210 ------- 1 1.0 5.0 56 58 - 0.41672 3 5 cbr 210 ------- 1 1.0 5.0 56 58 r 0.41758 3 5 cbr 210 ------- 1 1.0 5.0 42 43 + 0.41875 1 2 cbr 210 ------- 1 1.0 5.0 85 87 - 0.41875 1 2 cbr 210 ------- 1 1.0 5.0 85 87 r 0.41961 1 2 cbr 210 ------- 1 1.0 5.0 71 73 + 0.41961 2 3 cbr 210 ------- 1 1.0 5.0 71 73 - 0.41961 2 3 cbr 210 ------- 1 1.0 5.0 71 73 r 0.42047 2 3 cbr 210 ------- 1 1.0 5.0 57 59 + 0.42047 3 5 cbr 210 ------- 1 1.0 5.0 57 59 - 0.42047 3 5 cbr 210 ------- 1 1.0 5.0 57 59 r 0.42133 3 5 cbr 210 ------- 1 1.0 5.0 43 44 + 0.4225 1 2 cbr 210 ------- 1 1.0 5.0 86 88 - 0.4225 1 2 cbr 210 ------- 1 1.0 5.0 86 88 r 0.42336 1 2 cbr 210 ------- 1 1.0 5.0 72 74 + 0.42336 2 3 cbr 210 ------- 1 1.0 5.0 72 74 - 0.42336 2 3 cbr 210 ------- 1 1.0 5.0 72 74 r 0.42422 2 3 cbr 210 ------- 1 1.0 5.0 58 60 + 0.42422 3 5 cbr 210 ------- 1 1.0 5.0 58 60 - 0.42422 3 5 cbr 210 ------- 1 1.0 5.0 58 60 r 0.42508 3 5 cbr 210 ------- 1 1.0 5.0 44 45 + 0.42625 1 2 cbr 210 ------- 1 1.0 5.0 87 89 - 0.42625 1 2 cbr 210 ------- 1 1.0 5.0 87 89 r 0.42711 1 2 cbr 210 ------- 1 1.0 5.0 73 75 + 0.42711 2 3 cbr 210 ------- 1 1.0 5.0 73 75 - 0.42711 2 3 cbr 210 ------- 1 1.0 5.0 73 75 r 0.42797 2 3 cbr 210 ------- 1 1.0 5.0 59 61 + 0.42797 3 5 cbr 210 ------- 1 1.0 5.0 59 61 - 0.42797 3 5 cbr 210 ------- 1 1.0 5.0 59 61 r 0.42883 3 5 cbr 210 ------- 1 1.0 5.0 45 46 + 0.43 1 2 cbr 210 ------- 1 1.0 5.0 88 90 - 0.43 1 2 cbr 210 ------- 1 1.0 5.0 88 90 r 0.43086 1 2 cbr 210 ------- 1 1.0 5.0 74 76 + 0.43086 2 3 cbr 210 ------- 1 1.0 5.0 74 76 - 0.43086 2 3 cbr 210 ------- 1 1.0 5.0 74 76 r 0.43172 2 3 cbr 210 ------- 1 1.0 5.0 60 62 + 0.43172 3 5 cbr 210 ------- 1 1.0 5.0 60 62 - 0.43172 3 5 cbr 210 ------- 1 1.0 5.0 60 62 r 0.43258 3 5 cbr 210 ------- 1 1.0 5.0 46 47 + 0.43375 1 2 cbr 210 ------- 1 1.0 5.0 89 91 - 0.43375 1 2 cbr 210 ------- 1 1.0 5.0 89 91 r 0.43461 1 2 cbr 210 ------- 1 1.0 5.0 75 77 + 0.43461 2 3 cbr 210 ------- 1 1.0 5.0 75 77 - 0.43461 2 3 cbr 210 ------- 1 1.0 5.0 75 77 r 0.43547 2 3 cbr 210 ------- 1 1.0 5.0 61 63 + 0.43547 3 5 cbr 210 ------- 1 1.0 5.0 61 63 - 0.43547 3 5 cbr 210 ------- 1 1.0 5.0 61 63 r 0.43633 3 5 cbr 210 ------- 1 1.0 5.0 47 48 + 0.4375 1 2 cbr 210 ------- 1 1.0 5.0 90 92 - 0.4375 1 2 cbr 210 ------- 1 1.0 5.0 90 92 r 0.43836 1 2 cbr 210 ------- 1 1.0 5.0 76 78 + 0.43836 2 3 cbr 210 ------- 1 1.0 5.0 76 78 - 0.43836 2 3 cbr 210 ------- 1 1.0 5.0 76 78 r 0.43922 2 3 cbr 210 ------- 1 1.0 5.0 62 64 + 0.43922 3 5 cbr 210 ------- 1 1.0 5.0 62 64 - 0.43922 3 5 cbr 210 ------- 1 1.0 5.0 62 64 r 0.44008 3 5 cbr 210 ------- 1 1.0 5.0 48 49 + 0.44125 1 2 cbr 210 ------- 1 1.0 5.0 91 93 - 0.44125 1 2 cbr 210 ------- 1 1.0 5.0 91 93 r 0.44211 1 2 cbr 210 ------- 1 1.0 5.0 77 79 + 0.44211 2 3 cbr 210 ------- 1 1.0 5.0 77 79 - 0.44211 2 3 cbr 210 ------- 1 1.0 5.0 77 79 r 0.44297 2 3 cbr 210 ------- 1 1.0 5.0 63 65 + 0.44297 3 5 cbr 210 ------- 1 1.0 5.0 63 65 - 0.44297 3 5 cbr 210 ------- 1 1.0 5.0 63 65 r 0.44383 3 5 cbr 210 ------- 1 1.0 5.0 49 50 + 0.445 1 2 cbr 210 ------- 1 1.0 5.0 92 94 - 0.445 1 2 cbr 210 ------- 1 1.0 5.0 92 94 r 0.44586 1 2 cbr 210 ------- 1 1.0 5.0 78 80 + 0.44586 2 3 cbr 210 ------- 1 1.0 5.0 78 80 - 0.44586 2 3 cbr 210 ------- 1 1.0 5.0 78 80 r 0.44672 2 3 cbr 210 ------- 1 1.0 5.0 64 66 + 0.44672 3 5 cbr 210 ------- 1 1.0 5.0 64 66 - 0.44672 3 5 cbr 210 ------- 1 1.0 5.0 64 66 r 0.44758 3 5 cbr 210 ------- 1 1.0 5.0 50 51 + 0.44875 1 2 cbr 210 ------- 1 1.0 5.0 93 95 - 0.44875 1 2 cbr 210 ------- 1 1.0 5.0 93 95 r 0.44961 1 2 cbr 210 ------- 1 1.0 5.0 79 81 + 0.44961 2 3 cbr 210 ------- 1 1.0 5.0 79 81 - 0.44961 2 3 cbr 210 ------- 1 1.0 5.0 79 81 v 0.45000000000000001 eval {set sim_annotation {Send Packet_1}} r 0.45047 2 3 cbr 210 ------- 1 1.0 5.0 65 67 + 0.45047 3 5 cbr 210 ------- 1 1.0 5.0 65 67 - 0.45047 3 5 cbr 210 ------- 1 1.0 5.0 65 67 r 0.45133 3 5 cbr 210 ------- 1 1.0 5.0 51 52 r 0.45189 2 0 ack 40 ------- 0 4.0 0.0 0 55 + 0.45189 0 2 tcp 1000 ------- 0 0.0 4.0 1 96 - 0.45189 0 2 tcp 1000 ------- 0 0.0 4.0 1 96 + 0.4525 1 2 cbr 210 ------- 1 1.0 5.0 94 97 - 0.4525 1 2 cbr 210 ------- 1 1.0 5.0 94 97 r 0.45336 1 2 cbr 210 ------- 1 1.0 5.0 80 82 + 0.45336 2 3 cbr 210 ------- 1 1.0 5.0 80 82 - 0.45336 2 3 cbr 210 ------- 1 1.0 5.0 80 82 r 0.45422 2 3 cbr 210 ------- 1 1.0 5.0 66 68 + 0.45422 3 5 cbr 210 ------- 1 1.0 5.0 66 68 - 0.45422 3 5 cbr 210 ------- 1 1.0 5.0 66 68 r 0.45508 3 5 cbr 210 ------- 1 1.0 5.0 52 53 + 0.45625 1 2 cbr 210 ------- 1 1.0 5.0 95 98 - 0.45625 1 2 cbr 210 ------- 1 1.0 5.0 95 98 r 0.45711 1 2 cbr 210 ------- 1 1.0 5.0 81 83 + 0.45711 2 3 cbr 210 ------- 1 1.0 5.0 81 83 - 0.45711 2 3 cbr 210 ------- 1 1.0 5.0 81 83 r 0.45797 2 3 cbr 210 ------- 1 1.0 5.0 67 69 + 0.45797 3 5 cbr 210 ------- 1 1.0 5.0 67 69 - 0.45797 3 5 cbr 210 ------- 1 1.0 5.0 67 69 r 0.45883 3 5 cbr 210 ------- 1 1.0 5.0 53 54 + 0.46 1 2 cbr 210 ------- 1 1.0 5.0 96 99 - 0.46 1 2 cbr 210 ------- 1 1.0 5.0 96 99 r 0.46086 1 2 cbr 210 ------- 1 1.0 5.0 82 84 + 0.46086 2 3 cbr 210 ------- 1 1.0 5.0 82 84 - 0.46086 2 3 cbr 210 ------- 1 1.0 5.0 82 84 r 0.46172 2 3 cbr 210 ------- 1 1.0 5.0 68 70 + 0.46172 3 5 cbr 210 ------- 1 1.0 5.0 68 70 - 0.46172 3 5 cbr 210 ------- 1 1.0 5.0 68 70 r 0.46258 3 5 cbr 210 ------- 1 1.0 5.0 54 56 + 0.46375 1 2 cbr 210 ------- 1 1.0 5.0 97 100 - 0.46375 1 2 cbr 210 ------- 1 1.0 5.0 97 100 r 0.46461 1 2 cbr 210 ------- 1 1.0 5.0 83 85 + 0.46461 2 3 cbr 210 ------- 1 1.0 5.0 83 85 - 0.46461 2 3 cbr 210 ------- 1 1.0 5.0 83 85 r 0.46547 2 3 cbr 210 ------- 1 1.0 5.0 69 71 + 0.46547 3 5 cbr 210 ------- 1 1.0 5.0 69 71 - 0.46547 3 5 cbr 210 ------- 1 1.0 5.0 69 71 r 0.46633 3 5 cbr 210 ------- 1 1.0 5.0 55 57 + 0.4675 1 2 cbr 210 ------- 1 1.0 5.0 98 101 - 0.4675 1 2 cbr 210 ------- 1 1.0 5.0 98 101 r 0.46836 1 2 cbr 210 ------- 1 1.0 5.0 84 86 + 0.46836 2 3 cbr 210 ------- 1 1.0 5.0 84 86 - 0.46836 2 3 cbr 210 ------- 1 1.0 5.0 84 86 r 0.46922 2 3 cbr 210 ------- 1 1.0 5.0 70 72 + 0.46922 3 5 cbr 210 ------- 1 1.0 5.0 70 72 - 0.46922 3 5 cbr 210 ------- 1 1.0 5.0 70 72 r 0.47008 3 5 cbr 210 ------- 1 1.0 5.0 56 58 + 0.47125 1 2 cbr 210 ------- 1 1.0 5.0 99 102 - 0.47125 1 2 cbr 210 ------- 1 1.0 5.0 99 102 r 0.47211 1 2 cbr 210 ------- 1 1.0 5.0 85 87 + 0.47211 2 3 cbr 210 ------- 1 1.0 5.0 85 87 - 0.47211 2 3 cbr 210 ------- 1 1.0 5.0 85 87 r 0.47297 2 3 cbr 210 ------- 1 1.0 5.0 71 73 + 0.47297 3 5 cbr 210 ------- 1 1.0 5.0 71 73 - 0.47297 3 5 cbr 210 ------- 1 1.0 5.0 71 73 r 0.47383 3 5 cbr 210 ------- 1 1.0 5.0 57 59 + 0.475 1 2 cbr 210 ------- 1 1.0 5.0 100 103 - 0.475 1 2 cbr 210 ------- 1 1.0 5.0 100 103 r 0.47586 1 2 cbr 210 ------- 1 1.0 5.0 86 88 + 0.47586 2 3 cbr 210 ------- 1 1.0 5.0 86 88 - 0.47586 2 3 cbr 210 ------- 1 1.0 5.0 86 88 r 0.47672 2 3 cbr 210 ------- 1 1.0 5.0 72 74 + 0.47672 3 5 cbr 210 ------- 1 1.0 5.0 72 74 - 0.47672 3 5 cbr 210 ------- 1 1.0 5.0 72 74 r 0.47758 3 5 cbr 210 ------- 1 1.0 5.0 58 60 + 0.47875 1 2 cbr 210 ------- 1 1.0 5.0 101 104 - 0.47875 1 2 cbr 210 ------- 1 1.0 5.0 101 104 r 0.47961 1 2 cbr 210 ------- 1 1.0 5.0 87 89 + 0.47961 2 3 cbr 210 ------- 1 1.0 5.0 87 89 - 0.47961 2 3 cbr 210 ------- 1 1.0 5.0 87 89 r 0.48047 2 3 cbr 210 ------- 1 1.0 5.0 73 75 + 0.48047 3 5 cbr 210 ------- 1 1.0 5.0 73 75 - 0.48047 3 5 cbr 210 ------- 1 1.0 5.0 73 75 r 0.48133 3 5 cbr 210 ------- 1 1.0 5.0 59 61 + 0.4825 1 2 cbr 210 ------- 1 1.0 5.0 102 105 - 0.4825 1 2 cbr 210 ------- 1 1.0 5.0 102 105 r 0.48336 1 2 cbr 210 ------- 1 1.0 5.0 88 90 + 0.48336 2 3 cbr 210 ------- 1 1.0 5.0 88 90 - 0.48336 2 3 cbr 210 ------- 1 1.0 5.0 88 90 r 0.48422 2 3 cbr 210 ------- 1 1.0 5.0 74 76 + 0.48422 3 5 cbr 210 ------- 1 1.0 5.0 74 76 - 0.48422 3 5 cbr 210 ------- 1 1.0 5.0 74 76 r 0.48508 3 5 cbr 210 ------- 1 1.0 5.0 60 62 + 0.48625 1 2 cbr 210 ------- 1 1.0 5.0 103 106 - 0.48625 1 2 cbr 210 ------- 1 1.0 5.0 103 106 r 0.48711 1 2 cbr 210 ------- 1 1.0 5.0 89 91 + 0.48711 2 3 cbr 210 ------- 1 1.0 5.0 89 91 - 0.48711 2 3 cbr 210 ------- 1 1.0 5.0 89 91 r 0.48797 2 3 cbr 210 ------- 1 1.0 5.0 75 77 + 0.48797 3 5 cbr 210 ------- 1 1.0 5.0 75 77 - 0.48797 3 5 cbr 210 ------- 1 1.0 5.0 75 77 r 0.48883 3 5 cbr 210 ------- 1 1.0 5.0 61 63 + 0.49 1 2 cbr 210 ------- 1 1.0 5.0 104 107 - 0.49 1 2 cbr 210 ------- 1 1.0 5.0 104 107 r 0.49086 1 2 cbr 210 ------- 1 1.0 5.0 90 92 + 0.49086 2 3 cbr 210 ------- 1 1.0 5.0 90 92 - 0.49086 2 3 cbr 210 ------- 1 1.0 5.0 90 92 r 0.49172 2 3 cbr 210 ------- 1 1.0 5.0 76 78 + 0.49172 3 5 cbr 210 ------- 1 1.0 5.0 76 78 - 0.49172 3 5 cbr 210 ------- 1 1.0 5.0 76 78 r 0.49258 3 5 cbr 210 ------- 1 1.0 5.0 62 64 + 0.49375 1 2 cbr 210 ------- 1 1.0 5.0 105 108 - 0.49375 1 2 cbr 210 ------- 1 1.0 5.0 105 108 r 0.49461 1 2 cbr 210 ------- 1 1.0 5.0 91 93 + 0.49461 2 3 cbr 210 ------- 1 1.0 5.0 91 93 - 0.49461 2 3 cbr 210 ------- 1 1.0 5.0 91 93 r 0.49547 2 3 cbr 210 ------- 1 1.0 5.0 77 79 + 0.49547 3 5 cbr 210 ------- 1 1.0 5.0 77 79 - 0.49547 3 5 cbr 210 ------- 1 1.0 5.0 77 79 r 0.49633 3 5 cbr 210 ------- 1 1.0 5.0 63 65 + 0.4975 1 2 cbr 210 ------- 1 1.0 5.0 106 109 - 0.4975 1 2 cbr 210 ------- 1 1.0 5.0 106 109 r 0.49836 1 2 cbr 210 ------- 1 1.0 5.0 92 94 + 0.49836 2 3 cbr 210 ------- 1 1.0 5.0 92 94 - 0.49836 2 3 cbr 210 ------- 1 1.0 5.0 92 94 r 0.49922 2 3 cbr 210 ------- 1 1.0 5.0 78 80 + 0.49922 3 5 cbr 210 ------- 1 1.0 5.0 78 80 - 0.49922 3 5 cbr 210 ------- 1 1.0 5.0 78 80 v 0.5 eval {set sim_annotation {Packet_1 is lost}} r 0.50008 3 5 cbr 210 ------- 1 1.0 5.0 64 66 + 0.50125 1 2 cbr 210 ------- 1 1.0 5.0 107 110 - 0.50125 1 2 cbr 210 ------- 1 1.0 5.0 107 110 r 0.50211 1 2 cbr 210 ------- 1 1.0 5.0 93 95 + 0.50211 2 3 cbr 210 ------- 1 1.0 5.0 93 95 - 0.50211 2 3 cbr 210 ------- 1 1.0 5.0 93 95 r 0.50297 2 3 cbr 210 ------- 1 1.0 5.0 79 81 + 0.50297 3 5 cbr 210 ------- 1 1.0 5.0 79 81 - 0.50297 3 5 cbr 210 ------- 1 1.0 5.0 79 81 r 0.50383 3 5 cbr 210 ------- 1 1.0 5.0 65 67 + 0.505 1 2 cbr 210 ------- 1 1.0 5.0 108 111 - 0.505 1 2 cbr 210 ------- 1 1.0 5.0 108 111 r 0.50586 1 2 cbr 210 ------- 1 1.0 5.0 94 97 + 0.50586 2 3 cbr 210 ------- 1 1.0 5.0 94 97 - 0.50586 2 3 cbr 210 ------- 1 1.0 5.0 94 97 r 0.50672 2 3 cbr 210 ------- 1 1.0 5.0 80 82 + 0.50672 3 5 cbr 210 ------- 1 1.0 5.0 80 82 - 0.50672 3 5 cbr 210 ------- 1 1.0 5.0 80 82 r 0.50758 3 5 cbr 210 ------- 1 1.0 5.0 66 68 + 0.50875 1 2 cbr 210 ------- 1 1.0 5.0 109 112 - 0.50875 1 2 cbr 210 ------- 1 1.0 5.0 109 112 r 0.50961 1 2 cbr 210 ------- 1 1.0 5.0 95 98 + 0.50961 2 3 cbr 210 ------- 1 1.0 5.0 95 98 - 0.50961 2 3 cbr 210 ------- 1 1.0 5.0 95 98 r 0.51047 2 3 cbr 210 ------- 1 1.0 5.0 81 83 + 0.51047 3 5 cbr 210 ------- 1 1.0 5.0 81 83 - 0.51047 3 5 cbr 210 ------- 1 1.0 5.0 81 83 r 0.51133 3 5 cbr 210 ------- 1 1.0 5.0 67 69 + 0.5125 1 2 cbr 210 ------- 1 1.0 5.0 110 113 - 0.5125 1 2 cbr 210 ------- 1 1.0 5.0 110 113 r 0.51336 1 2 cbr 210 ------- 1 1.0 5.0 96 99 + 0.51336 2 3 cbr 210 ------- 1 1.0 5.0 96 99 - 0.51336 2 3 cbr 210 ------- 1 1.0 5.0 96 99 r 0.51422 2 3 cbr 210 ------- 1 1.0 5.0 82 84 + 0.51422 3 5 cbr 210 ------- 1 1.0 5.0 82 84 - 0.51422 3 5 cbr 210 ------- 1 1.0 5.0 82 84 r 0.51508 3 5 cbr 210 ------- 1 1.0 5.0 68 70 + 0.51625 1 2 cbr 210 ------- 1 1.0 5.0 111 114 - 0.51625 1 2 cbr 210 ------- 1 1.0 5.0 111 114 r 0.51711 1 2 cbr 210 ------- 1 1.0 5.0 97 100 + 0.51711 2 3 cbr 210 ------- 1 1.0 5.0 97 100 - 0.51711 2 3 cbr 210 ------- 1 1.0 5.0 97 100 r 0.51789 0 2 tcp 1000 ------- 0 0.0 4.0 1 96 + 0.51789 2 3 tcp 1000 ------- 0 0.0 4.0 1 96 r 0.51797 2 3 cbr 210 ------- 1 1.0 5.0 83 85 + 0.51797 3 5 cbr 210 ------- 1 1.0 5.0 83 85 - 0.51797 3 5 cbr 210 ------- 1 1.0 5.0 83 85 r 0.51883 3 5 cbr 210 ------- 1 1.0 5.0 69 71 + 0.52 1 2 cbr 210 ------- 1 1.0 5.0 112 115 - 0.52 1 2 cbr 210 ------- 1 1.0 5.0 112 115 - 0.52047 2 3 tcp 1000 ------- 0 0.0 4.0 1 96 r 0.52086 1 2 cbr 210 ------- 1 1.0 5.0 98 101 + 0.52086 2 3 cbr 210 ------- 1 1.0 5.0 98 101 r 0.52172 2 3 cbr 210 ------- 1 1.0 5.0 84 86 + 0.52172 3 5 cbr 210 ------- 1 1.0 5.0 84 86 - 0.52172 3 5 cbr 210 ------- 1 1.0 5.0 84 86 r 0.52258 3 5 cbr 210 ------- 1 1.0 5.0 70 72 + 0.52375 1 2 cbr 210 ------- 1 1.0 5.0 113 116 - 0.52375 1 2 cbr 210 ------- 1 1.0 5.0 113 116 r 0.52461 1 2 cbr 210 ------- 1 1.0 5.0 99 102 + 0.52461 2 3 cbr 210 ------- 1 1.0 5.0 99 102 d 0.52461 2 3 cbr 210 ------- 1 1.0 5.0 99 102 r 0.52547 2 3 cbr 210 ------- 1 1.0 5.0 85 87 + 0.52547 3 5 cbr 210 ------- 1 1.0 5.0 85 87 - 0.52547 3 5 cbr 210 ------- 1 1.0 5.0 85 87 r 0.52633 3 5 cbr 210 ------- 1 1.0 5.0 71 73 + 0.5275 1 2 cbr 210 ------- 1 1.0 5.0 114 117 - 0.5275 1 2 cbr 210 ------- 1 1.0 5.0 114 117 r 0.52836 1 2 cbr 210 ------- 1 1.0 5.0 100 103 + 0.52836 2 3 cbr 210 ------- 1 1.0 5.0 100 103 d 0.52836 2 3 cbr 210 ------- 1 1.0 5.0 100 103 r 0.52922 2 3 cbr 210 ------- 1 1.0 5.0 86 88 + 0.52922 3 5 cbr 210 ------- 1 1.0 5.0 86 88 - 0.52922 3 5 cbr 210 ------- 1 1.0 5.0 86 88 r 0.53008 3 5 cbr 210 ------- 1 1.0 5.0 72 74 + 0.53125 1 2 cbr 210 ------- 1 1.0 5.0 115 118 - 0.53125 1 2 cbr 210 ------- 1 1.0 5.0 115 118 r 0.53211 1 2 cbr 210 ------- 1 1.0 5.0 101 104 + 0.53211 2 3 cbr 210 ------- 1 1.0 5.0 101 104 d 0.53211 2 3 cbr 210 ------- 1 1.0 5.0 101 104 r 0.53297 2 3 cbr 210 ------- 1 1.0 5.0 87 89 + 0.53297 3 5 cbr 210 ------- 1 1.0 5.0 87 89 - 0.53297 3 5 cbr 210 ------- 1 1.0 5.0 87 89 r 0.53383 3 5 cbr 210 ------- 1 1.0 5.0 73 75 + 0.535 1 2 cbr 210 ------- 1 1.0 5.0 116 119 - 0.535 1 2 cbr 210 ------- 1 1.0 5.0 116 119 r 0.53586 1 2 cbr 210 ------- 1 1.0 5.0 102 105 + 0.53586 2 3 cbr 210 ------- 1 1.0 5.0 102 105 d 0.53586 2 3 cbr 210 ------- 1 1.0 5.0 102 105 - 0.53647 2 3 cbr 210 ------- 1 1.0 5.0 98 101 r 0.53672 2 3 cbr 210 ------- 1 1.0 5.0 88 90 + 0.53672 3 5 cbr 210 ------- 1 1.0 5.0 88 90 - 0.53672 3 5 cbr 210 ------- 1 1.0 5.0 88 90 r 0.53758 3 5 cbr 210 ------- 1 1.0 5.0 74 76 + 0.53875 1 2 cbr 210 ------- 1 1.0 5.0 117 120 - 0.53875 1 2 cbr 210 ------- 1 1.0 5.0 117 120 r 0.53961 1 2 cbr 210 ------- 1 1.0 5.0 103 106 + 0.53961 2 3 cbr 210 ------- 1 1.0 5.0 103 106 - 0.53983 2 3 cbr 210 ------- 1 1.0 5.0 103 106 r 0.54047 2 3 cbr 210 ------- 1 1.0 5.0 89 91 + 0.54047 3 5 cbr 210 ------- 1 1.0 5.0 89 91 - 0.54047 3 5 cbr 210 ------- 1 1.0 5.0 89 91 r 0.54133 3 5 cbr 210 ------- 1 1.0 5.0 75 77 + 0.5425 1 2 cbr 210 ------- 1 1.0 5.0 118 121 - 0.5425 1 2 cbr 210 ------- 1 1.0 5.0 118 121 r 0.54336 1 2 cbr 210 ------- 1 1.0 5.0 104 107 + 0.54336 2 3 cbr 210 ------- 1 1.0 5.0 104 107 - 0.54336 2 3 cbr 210 ------- 1 1.0 5.0 104 107 r 0.54422 2 3 cbr 210 ------- 1 1.0 5.0 90 92 + 0.54422 3 5 cbr 210 ------- 1 1.0 5.0 90 92 - 0.54422 3 5 cbr 210 ------- 1 1.0 5.0 90 92 r 0.54508 3 5 cbr 210 ------- 1 1.0 5.0 76 78 + 0.54625 1 2 cbr 210 ------- 1 1.0 5.0 119 122 - 0.54625 1 2 cbr 210 ------- 1 1.0 5.0 119 122 r 0.54711 1 2 cbr 210 ------- 1 1.0 5.0 105 108 + 0.54711 2 3 cbr 210 ------- 1 1.0 5.0 105 108 - 0.54711 2 3 cbr 210 ------- 1 1.0 5.0 105 108 r 0.54797 2 3 cbr 210 ------- 1 1.0 5.0 91 93 + 0.54797 3 5 cbr 210 ------- 1 1.0 5.0 91 93 - 0.54797 3 5 cbr 210 ------- 1 1.0 5.0 91 93 r 0.54883 3 5 cbr 210 ------- 1 1.0 5.0 77 79 + 0.55 1 2 cbr 210 ------- 1 1.0 5.0 120 123 - 0.55 1 2 cbr 210 ------- 1 1.0 5.0 120 123 v 0.55000000000000004 eval {set sim_annotation {Waiting for Ack_1}} r 0.55086 1 2 cbr 210 ------- 1 1.0 5.0 106 109 + 0.55086 2 3 cbr 210 ------- 1 1.0 5.0 106 109 - 0.55086 2 3 cbr 210 ------- 1 1.0 5.0 106 109 r 0.55172 2 3 cbr 210 ------- 1 1.0 5.0 92 94 + 0.55172 3 5 cbr 210 ------- 1 1.0 5.0 92 94 - 0.55172 3 5 cbr 210 ------- 1 1.0 5.0 92 94 r 0.55258 3 5 cbr 210 ------- 1 1.0 5.0 78 80 + 0.55375 1 2 cbr 210 ------- 1 1.0 5.0 121 124 - 0.55375 1 2 cbr 210 ------- 1 1.0 5.0 121 124 r 0.55461 1 2 cbr 210 ------- 1 1.0 5.0 107 110 + 0.55461 2 3 cbr 210 ------- 1 1.0 5.0 107 110 - 0.55461 2 3 cbr 210 ------- 1 1.0 5.0 107 110 r 0.55547 2 3 cbr 210 ------- 1 1.0 5.0 93 95 + 0.55547 3 5 cbr 210 ------- 1 1.0 5.0 93 95 - 0.55547 3 5 cbr 210 ------- 1 1.0 5.0 93 95 r 0.55633 3 5 cbr 210 ------- 1 1.0 5.0 79 81 + 0.5575 1 2 cbr 210 ------- 1 1.0 5.0 122 125 - 0.5575 1 2 cbr 210 ------- 1 1.0 5.0 122 125 r 0.55836 1 2 cbr 210 ------- 1 1.0 5.0 108 111 + 0.55836 2 3 cbr 210 ------- 1 1.0 5.0 108 111 - 0.55836 2 3 cbr 210 ------- 1 1.0 5.0 108 111 r 0.55922 2 3 cbr 210 ------- 1 1.0 5.0 94 97 + 0.55922 3 5 cbr 210 ------- 1 1.0 5.0 94 97 - 0.55922 3 5 cbr 210 ------- 1 1.0 5.0 94 97 r 0.56008 3 5 cbr 210 ------- 1 1.0 5.0 80 82 + 0.56125 1 2 cbr 210 ------- 1 1.0 5.0 123 126 - 0.56125 1 2 cbr 210 ------- 1 1.0 5.0 123 126 r 0.56211 1 2 cbr 210 ------- 1 1.0 5.0 109 112 + 0.56211 2 3 cbr 210 ------- 1 1.0 5.0 109 112 - 0.56211 2 3 cbr 210 ------- 1 1.0 5.0 109 112 r 0.56297 2 3 cbr 210 ------- 1 1.0 5.0 95 98 + 0.56297 3 5 cbr 210 ------- 1 1.0 5.0 95 98 - 0.56297 3 5 cbr 210 ------- 1 1.0 5.0 95 98 r 0.56383 3 5 cbr 210 ------- 1 1.0 5.0 81 83 + 0.565 1 2 cbr 210 ------- 1 1.0 5.0 124 127 - 0.565 1 2 cbr 210 ------- 1 1.0 5.0 124 127 r 0.56586 1 2 cbr 210 ------- 1 1.0 5.0 110 113 + 0.56586 2 3 cbr 210 ------- 1 1.0 5.0 110 113 - 0.56586 2 3 cbr 210 ------- 1 1.0 5.0 110 113 r 0.56672 2 3 cbr 210 ------- 1 1.0 5.0 96 99 + 0.56672 3 5 cbr 210 ------- 1 1.0 5.0 96 99 - 0.56672 3 5 cbr 210 ------- 1 1.0 5.0 96 99 r 0.56758 3 5 cbr 210 ------- 1 1.0 5.0 82 84 + 0.56875 1 2 cbr 210 ------- 1 1.0 5.0 125 128 - 0.56875 1 2 cbr 210 ------- 1 1.0 5.0 125 128 r 0.56961 1 2 cbr 210 ------- 1 1.0 5.0 111 114 + 0.56961 2 3 cbr 210 ------- 1 1.0 5.0 111 114 - 0.56961 2 3 cbr 210 ------- 1 1.0 5.0 111 114 r 0.57047 2 3 cbr 210 ------- 1 1.0 5.0 97 100 + 0.57047 3 5 cbr 210 ------- 1 1.0 5.0 97 100 - 0.57047 3 5 cbr 210 ------- 1 1.0 5.0 97 100 r 0.57133 3 5 cbr 210 ------- 1 1.0 5.0 83 85 + 0.5725 1 2 cbr 210 ------- 1 1.0 5.0 126 129 - 0.5725 1 2 cbr 210 ------- 1 1.0 5.0 126 129 r 0.57336 1 2 cbr 210 ------- 1 1.0 5.0 112 115 + 0.57336 2 3 cbr 210 ------- 1 1.0 5.0 112 115 - 0.57336 2 3 cbr 210 ------- 1 1.0 5.0 112 115 r 0.57508 3 5 cbr 210 ------- 1 1.0 5.0 84 86 + 0.57625 1 2 cbr 210 ------- 1 1.0 5.0 127 130 - 0.57625 1 2 cbr 210 ------- 1 1.0 5.0 127 130 r 0.57711 1 2 cbr 210 ------- 1 1.0 5.0 113 116 + 0.57711 2 3 cbr 210 ------- 1 1.0 5.0 113 116 - 0.57711 2 3 cbr 210 ------- 1 1.0 5.0 113 116 r 0.57883 3 5 cbr 210 ------- 1 1.0 5.0 85 87 + 0.58 1 2 cbr 210 ------- 1 1.0 5.0 128 131 - 0.58 1 2 cbr 210 ------- 1 1.0 5.0 128 131 r 0.58086 1 2 cbr 210 ------- 1 1.0 5.0 114 117 + 0.58086 2 3 cbr 210 ------- 1 1.0 5.0 114 117 - 0.58086 2 3 cbr 210 ------- 1 1.0 5.0 114 117 r 0.58258 3 5 cbr 210 ------- 1 1.0 5.0 86 88 + 0.58375 1 2 cbr 210 ------- 1 1.0 5.0 129 132 - 0.58375 1 2 cbr 210 ------- 1 1.0 5.0 129 132 r 0.58461 1 2 cbr 210 ------- 1 1.0 5.0 115 118 + 0.58461 2 3 cbr 210 ------- 1 1.0 5.0 115 118 - 0.58461 2 3 cbr 210 ------- 1 1.0 5.0 115 118 r 0.58633 3 5 cbr 210 ------- 1 1.0 5.0 87 89 r 0.58647 2 3 tcp 1000 ------- 0 0.0 4.0 1 96 + 0.58647 3 4 tcp 1000 ------- 0 0.0 4.0 1 96 - 0.58647 3 4 tcp 1000 ------- 0 0.0 4.0 1 96 + 0.5875 1 2 cbr 210 ------- 1 1.0 5.0 130 133 - 0.5875 1 2 cbr 210 ------- 1 1.0 5.0 130 133 r 0.58836 1 2 cbr 210 ------- 1 1.0 5.0 116 119 + 0.58836 2 3 cbr 210 ------- 1 1.0 5.0 116 119 - 0.58836 2 3 cbr 210 ------- 1 1.0 5.0 116 119 r 0.58983 2 3 cbr 210 ------- 1 1.0 5.0 98 101 + 0.58983 3 5 cbr 210 ------- 1 1.0 5.0 98 101 - 0.58983 3 5 cbr 210 ------- 1 1.0 5.0 98 101 r 0.59008 3 5 cbr 210 ------- 1 1.0 5.0 88 90 + 0.59125 1 2 cbr 210 ------- 1 1.0 5.0 131 134 - 0.59125 1 2 cbr 210 ------- 1 1.0 5.0 131 134 r 0.59211 1 2 cbr 210 ------- 1 1.0 5.0 117 120 + 0.59211 2 3 cbr 210 ------- 1 1.0 5.0 117 120 - 0.59211 2 3 cbr 210 ------- 1 1.0 5.0 117 120 r 0.59319 2 3 cbr 210 ------- 1 1.0 5.0 103 106 + 0.59319 3 5 cbr 210 ------- 1 1.0 5.0 103 106 - 0.59319 3 5 cbr 210 ------- 1 1.0 5.0 103 106 r 0.59383 3 5 cbr 210 ------- 1 1.0 5.0 89 91 + 0.595 1 2 cbr 210 ------- 1 1.0 5.0 132 135 - 0.595 1 2 cbr 210 ------- 1 1.0 5.0 132 135 r 0.59586 1 2 cbr 210 ------- 1 1.0 5.0 118 121 + 0.59586 2 3 cbr 210 ------- 1 1.0 5.0 118 121 - 0.59586 2 3 cbr 210 ------- 1 1.0 5.0 118 121 r 0.59672 2 3 cbr 210 ------- 1 1.0 5.0 104 107 + 0.59672 3 5 cbr 210 ------- 1 1.0 5.0 104 107 - 0.59672 3 5 cbr 210 ------- 1 1.0 5.0 104 107 r 0.59758 3 5 cbr 210 ------- 1 1.0 5.0 90 92 + 0.59875 1 2 cbr 210 ------- 1 1.0 5.0 133 136 - 0.59875 1 2 cbr 210 ------- 1 1.0 5.0 133 136 r 0.59961 1 2 cbr 210 ------- 1 1.0 5.0 119 122 + 0.59961 2 3 cbr 210 ------- 1 1.0 5.0 119 122 - 0.59961 2 3 cbr 210 ------- 1 1.0 5.0 119 122 r 0.60047 2 3 cbr 210 ------- 1 1.0 5.0 105 108 + 0.60047 3 5 cbr 210 ------- 1 1.0 5.0 105 108 - 0.60047 3 5 cbr 210 ------- 1 1.0 5.0 105 108 r 0.60133 3 5 cbr 210 ------- 1 1.0 5.0 91 93 + 0.6025 1 2 cbr 210 ------- 1 1.0 5.0 134 137 - 0.6025 1 2 cbr 210 ------- 1 1.0 5.0 134 137 r 0.60336 1 2 cbr 210 ------- 1 1.0 5.0 120 123 + 0.60336 2 3 cbr 210 ------- 1 1.0 5.0 120 123 - 0.60336 2 3 cbr 210 ------- 1 1.0 5.0 120 123 r 0.60422 2 3 cbr 210 ------- 1 1.0 5.0 106 109 + 0.60422 3 5 cbr 210 ------- 1 1.0 5.0 106 109 - 0.60422 3 5 cbr 210 ------- 1 1.0 5.0 106 109 r 0.60508 3 5 cbr 210 ------- 1 1.0 5.0 92 94 + 0.60625 1 2 cbr 210 ------- 1 1.0 5.0 135 138 - 0.60625 1 2 cbr 210 ------- 1 1.0 5.0 135 138 r 0.60711 1 2 cbr 210 ------- 1 1.0 5.0 121 124 + 0.60711 2 3 cbr 210 ------- 1 1.0 5.0 121 124 - 0.60711 2 3 cbr 210 ------- 1 1.0 5.0 121 124 r 0.60797 2 3 cbr 210 ------- 1 1.0 5.0 107 110 + 0.60797 3 5 cbr 210 ------- 1 1.0 5.0 107 110 - 0.60797 3 5 cbr 210 ------- 1 1.0 5.0 107 110 r 0.60883 3 5 cbr 210 ------- 1 1.0 5.0 93 95 + 0.61 1 2 cbr 210 ------- 1 1.0 5.0 136 139 - 0.61 1 2 cbr 210 ------- 1 1.0 5.0 136 139 r 0.61086 1 2 cbr 210 ------- 1 1.0 5.0 122 125 + 0.61086 2 3 cbr 210 ------- 1 1.0 5.0 122 125 - 0.61086 2 3 cbr 210 ------- 1 1.0 5.0 122 125 r 0.61172 2 3 cbr 210 ------- 1 1.0 5.0 108 111 + 0.61172 3 5 cbr 210 ------- 1 1.0 5.0 108 111 - 0.61172 3 5 cbr 210 ------- 1 1.0 5.0 108 111 r 0.61258 3 5 cbr 210 ------- 1 1.0 5.0 94 97 + 0.61375 1 2 cbr 210 ------- 1 1.0 5.0 137 140 - 0.61375 1 2 cbr 210 ------- 1 1.0 5.0 137 140 r 0.61461 1 2 cbr 210 ------- 1 1.0 5.0 123 126 + 0.61461 2 3 cbr 210 ------- 1 1.0 5.0 123 126 - 0.61461 2 3 cbr 210 ------- 1 1.0 5.0 123 126 r 0.61547 2 3 cbr 210 ------- 1 1.0 5.0 109 112 + 0.61547 3 5 cbr 210 ------- 1 1.0 5.0 109 112 - 0.61547 3 5 cbr 210 ------- 1 1.0 5.0 109 112 r 0.61633 3 5 cbr 210 ------- 1 1.0 5.0 95 98 + 0.6175 1 2 cbr 210 ------- 1 1.0 5.0 138 141 - 0.6175 1 2 cbr 210 ------- 1 1.0 5.0 138 141 r 0.61836 1 2 cbr 210 ------- 1 1.0 5.0 124 127 + 0.61836 2 3 cbr 210 ------- 1 1.0 5.0 124 127 - 0.61836 2 3 cbr 210 ------- 1 1.0 5.0 124 127 r 0.61922 2 3 cbr 210 ------- 1 1.0 5.0 110 113 + 0.61922 3 5 cbr 210 ------- 1 1.0 5.0 110 113 - 0.61922 3 5 cbr 210 ------- 1 1.0 5.0 110 113 r 0.62008 3 5 cbr 210 ------- 1 1.0 5.0 96 99 + 0.62125 1 2 cbr 210 ------- 1 1.0 5.0 139 142 - 0.62125 1 2 cbr 210 ------- 1 1.0 5.0 139 142 r 0.62211 1 2 cbr 210 ------- 1 1.0 5.0 125 128 + 0.62211 2 3 cbr 210 ------- 1 1.0 5.0 125 128 - 0.62211 2 3 cbr 210 ------- 1 1.0 5.0 125 128 r 0.62297 2 3 cbr 210 ------- 1 1.0 5.0 111 114 + 0.62297 3 5 cbr 210 ------- 1 1.0 5.0 111 114 - 0.62297 3 5 cbr 210 ------- 1 1.0 5.0 111 114 r 0.62383 3 5 cbr 210 ------- 1 1.0 5.0 97 100 + 0.625 1 2 cbr 210 ------- 1 1.0 5.0 140 143 - 0.625 1 2 cbr 210 ------- 1 1.0 5.0 140 143 r 0.62586 1 2 cbr 210 ------- 1 1.0 5.0 126 129 + 0.62586 2 3 cbr 210 ------- 1 1.0 5.0 126 129 - 0.62586 2 3 cbr 210 ------- 1 1.0 5.0 126 129 r 0.62672 2 3 cbr 210 ------- 1 1.0 5.0 112 115 + 0.62672 3 5 cbr 210 ------- 1 1.0 5.0 112 115 - 0.62672 3 5 cbr 210 ------- 1 1.0 5.0 112 115 + 0.62875 1 2 cbr 210 ------- 1 1.0 5.0 141 144 - 0.62875 1 2 cbr 210 ------- 1 1.0 5.0 141 144 r 0.62961 1 2 cbr 210 ------- 1 1.0 5.0 127 130 + 0.62961 2 3 cbr 210 ------- 1 1.0 5.0 127 130 - 0.62961 2 3 cbr 210 ------- 1 1.0 5.0 127 130 r 0.63047 2 3 cbr 210 ------- 1 1.0 5.0 113 116 + 0.63047 3 5 cbr 210 ------- 1 1.0 5.0 113 116 - 0.63047 3 5 cbr 210 ------- 1 1.0 5.0 113 116 + 0.6325 1 2 cbr 210 ------- 1 1.0 5.0 142 145 - 0.6325 1 2 cbr 210 ------- 1 1.0 5.0 142 145 r 0.63336 1 2 cbr 210 ------- 1 1.0 5.0 128 131 + 0.63336 2 3 cbr 210 ------- 1 1.0 5.0 128 131 - 0.63336 2 3 cbr 210 ------- 1 1.0 5.0 128 131 r 0.63422 2 3 cbr 210 ------- 1 1.0 5.0 114 117 + 0.63422 3 5 cbr 210 ------- 1 1.0 5.0 114 117 - 0.63422 3 5 cbr 210 ------- 1 1.0 5.0 114 117 + 0.63625 1 2 cbr 210 ------- 1 1.0 5.0 143 146 - 0.63625 1 2 cbr 210 ------- 1 1.0 5.0 143 146 r 0.63711 1 2 cbr 210 ------- 1 1.0 5.0 129 132 + 0.63711 2 3 cbr 210 ------- 1 1.0 5.0 129 132 - 0.63711 2 3 cbr 210 ------- 1 1.0 5.0 129 132 r 0.63797 2 3 cbr 210 ------- 1 1.0 5.0 115 118 + 0.63797 3 5 cbr 210 ------- 1 1.0 5.0 115 118 - 0.63797 3 5 cbr 210 ------- 1 1.0 5.0 115 118 + 0.64 1 2 cbr 210 ------- 1 1.0 5.0 144 147 - 0.64 1 2 cbr 210 ------- 1 1.0 5.0 144 147 r 0.64086 1 2 cbr 210 ------- 1 1.0 5.0 130 133 + 0.64086 2 3 cbr 210 ------- 1 1.0 5.0 130 133 - 0.64086 2 3 cbr 210 ------- 1 1.0 5.0 130 133 r 0.64172 2 3 cbr 210 ------- 1 1.0 5.0 116 119 + 0.64172 3 5 cbr 210 ------- 1 1.0 5.0 116 119 - 0.64172 3 5 cbr 210 ------- 1 1.0 5.0 116 119 r 0.64319 3 5 cbr 210 ------- 1 1.0 5.0 98 101 + 0.64375 1 2 cbr 210 ------- 1 1.0 5.0 145 148 - 0.64375 1 2 cbr 210 ------- 1 1.0 5.0 145 148 r 0.64461 1 2 cbr 210 ------- 1 1.0 5.0 131 134 + 0.64461 2 3 cbr 210 ------- 1 1.0 5.0 131 134 - 0.64461 2 3 cbr 210 ------- 1 1.0 5.0 131 134 r 0.64547 2 3 cbr 210 ------- 1 1.0 5.0 117 120 + 0.64547 3 5 cbr 210 ------- 1 1.0 5.0 117 120 - 0.64547 3 5 cbr 210 ------- 1 1.0 5.0 117 120 r 0.64655 3 5 cbr 210 ------- 1 1.0 5.0 103 106 + 0.6475 1 2 cbr 210 ------- 1 1.0 5.0 146 149 - 0.6475 1 2 cbr 210 ------- 1 1.0 5.0 146 149 r 0.64836 1 2 cbr 210 ------- 1 1.0 5.0 132 135 + 0.64836 2 3 cbr 210 ------- 1 1.0 5.0 132 135 - 0.64836 2 3 cbr 210 ------- 1 1.0 5.0 132 135 r 0.64922 2 3 cbr 210 ------- 1 1.0 5.0 118 121 + 0.64922 3 5 cbr 210 ------- 1 1.0 5.0 118 121 - 0.64922 3 5 cbr 210 ------- 1 1.0 5.0 118 121 r 0.65008 3 5 cbr 210 ------- 1 1.0 5.0 104 107 + 0.65125 1 2 cbr 210 ------- 1 1.0 5.0 147 150 - 0.65125 1 2 cbr 210 ------- 1 1.0 5.0 147 150 r 0.65211 1 2 cbr 210 ------- 1 1.0 5.0 133 136 + 0.65211 2 3 cbr 210 ------- 1 1.0 5.0 133 136 - 0.65211 2 3 cbr 210 ------- 1 1.0 5.0 133 136 r 0.65247 3 4 tcp 1000 ------- 0 0.0 4.0 1 96 + 0.65247 4 3 ack 40 ------- 0 4.0 0.0 1 151 - 0.65247 4 3 ack 40 ------- 0 4.0 0.0 1 151 r 0.65297 2 3 cbr 210 ------- 1 1.0 5.0 119 122 + 0.65297 3 5 cbr 210 ------- 1 1.0 5.0 119 122 - 0.65297 3 5 cbr 210 ------- 1 1.0 5.0 119 122 r 0.65383 3 5 cbr 210 ------- 1 1.0 5.0 105 108 + 0.655 1 2 cbr 210 ------- 1 1.0 5.0 148 152 - 0.655 1 2 cbr 210 ------- 1 1.0 5.0 148 152 r 0.65586 1 2 cbr 210 ------- 1 1.0 5.0 134 137 + 0.65586 2 3 cbr 210 ------- 1 1.0 5.0 134 137 - 0.65586 2 3 cbr 210 ------- 1 1.0 5.0 134 137 r 0.65672 2 3 cbr 210 ------- 1 1.0 5.0 120 123 + 0.65672 3 5 cbr 210 ------- 1 1.0 5.0 120 123 - 0.65672 3 5 cbr 210 ------- 1 1.0 5.0 120 123 r 0.65758 3 5 cbr 210 ------- 1 1.0 5.0 106 109 + 0.65875 1 2 cbr 210 ------- 1 1.0 5.0 149 153 - 0.65875 1 2 cbr 210 ------- 1 1.0 5.0 149 153 r 0.65961 1 2 cbr 210 ------- 1 1.0 5.0 135 138 + 0.65961 2 3 cbr 210 ------- 1 1.0 5.0 135 138 - 0.65961 2 3 cbr 210 ------- 1 1.0 5.0 135 138 r 0.66047 2 3 cbr 210 ------- 1 1.0 5.0 121 124 + 0.66047 3 5 cbr 210 ------- 1 1.0 5.0 121 124 - 0.66047 3 5 cbr 210 ------- 1 1.0 5.0 121 124 r 0.66133 3 5 cbr 210 ------- 1 1.0 5.0 107 110 + 0.6625 1 2 cbr 210 ------- 1 1.0 5.0 150 154 - 0.6625 1 2 cbr 210 ------- 1 1.0 5.0 150 154 r 0.66336 1 2 cbr 210 ------- 1 1.0 5.0 136 139 + 0.66336 2 3 cbr 210 ------- 1 1.0 5.0 136 139 - 0.66336 2 3 cbr 210 ------- 1 1.0 5.0 136 139 r 0.66422 2 3 cbr 210 ------- 1 1.0 5.0 122 125 + 0.66422 3 5 cbr 210 ------- 1 1.0 5.0 122 125 - 0.66422 3 5 cbr 210 ------- 1 1.0 5.0 122 125 r 0.66508 3 5 cbr 210 ------- 1 1.0 5.0 108 111 + 0.66625 1 2 cbr 210 ------- 1 1.0 5.0 151 155 - 0.66625 1 2 cbr 210 ------- 1 1.0 5.0 151 155 r 0.66711 1 2 cbr 210 ------- 1 1.0 5.0 137 140 + 0.66711 2 3 cbr 210 ------- 1 1.0 5.0 137 140 - 0.66711 2 3 cbr 210 ------- 1 1.0 5.0 137 140 r 0.66797 2 3 cbr 210 ------- 1 1.0 5.0 123 126 + 0.66797 3 5 cbr 210 ------- 1 1.0 5.0 123 126 - 0.66797 3 5 cbr 210 ------- 1 1.0 5.0 123 126 r 0.66883 3 5 cbr 210 ------- 1 1.0 5.0 109 112 + 0.67 1 2 cbr 210 ------- 1 1.0 5.0 152 156 - 0.67 1 2 cbr 210 ------- 1 1.0 5.0 152 156 r 0.67086 1 2 cbr 210 ------- 1 1.0 5.0 138 141 + 0.67086 2 3 cbr 210 ------- 1 1.0 5.0 138 141 - 0.67086 2 3 cbr 210 ------- 1 1.0 5.0 138 141 r 0.67172 2 3 cbr 210 ------- 1 1.0 5.0 124 127 + 0.67172 3 5 cbr 210 ------- 1 1.0 5.0 124 127 - 0.67172 3 5 cbr 210 ------- 1 1.0 5.0 124 127 r 0.67258 3 5 cbr 210 ------- 1 1.0 5.0 110 113 + 0.67375 1 2 cbr 210 ------- 1 1.0 5.0 153 157 - 0.67375 1 2 cbr 210 ------- 1 1.0 5.0 153 157 r 0.67461 1 2 cbr 210 ------- 1 1.0 5.0 139 142 + 0.67461 2 3 cbr 210 ------- 1 1.0 5.0 139 142 - 0.67461 2 3 cbr 210 ------- 1 1.0 5.0 139 142 r 0.67547 2 3 cbr 210 ------- 1 1.0 5.0 125 128 + 0.67547 3 5 cbr 210 ------- 1 1.0 5.0 125 128 - 0.67547 3 5 cbr 210 ------- 1 1.0 5.0 125 128 r 0.67633 3 5 cbr 210 ------- 1 1.0 5.0 111 114 + 0.6775 1 2 cbr 210 ------- 1 1.0 5.0 154 158 - 0.6775 1 2 cbr 210 ------- 1 1.0 5.0 154 158 r 0.67836 1 2 cbr 210 ------- 1 1.0 5.0 140 143 + 0.67836 2 3 cbr 210 ------- 1 1.0 5.0 140 143 - 0.67836 2 3 cbr 210 ------- 1 1.0 5.0 140 143 r 0.67922 2 3 cbr 210 ------- 1 1.0 5.0 126 129 + 0.67922 3 5 cbr 210 ------- 1 1.0 5.0 126 129 - 0.67922 3 5 cbr 210 ------- 1 1.0 5.0 126 129 r 0.68008 3 5 cbr 210 ------- 1 1.0 5.0 112 115 + 0.68125 1 2 cbr 210 ------- 1 1.0 5.0 155 159 - 0.68125 1 2 cbr 210 ------- 1 1.0 5.0 155 159 r 0.68211 1 2 cbr 210 ------- 1 1.0 5.0 141 144 + 0.68211 2 3 cbr 210 ------- 1 1.0 5.0 141 144 - 0.68211 2 3 cbr 210 ------- 1 1.0 5.0 141 144 r 0.68297 2 3 cbr 210 ------- 1 1.0 5.0 127 130 + 0.68297 3 5 cbr 210 ------- 1 1.0 5.0 127 130 - 0.68297 3 5 cbr 210 ------- 1 1.0 5.0 127 130 r 0.68383 3 5 cbr 210 ------- 1 1.0 5.0 113 116 + 0.685 1 2 cbr 210 ------- 1 1.0 5.0 156 160 - 0.685 1 2 cbr 210 ------- 1 1.0 5.0 156 160 r 0.68586 1 2 cbr 210 ------- 1 1.0 5.0 142 145 + 0.68586 2 3 cbr 210 ------- 1 1.0 5.0 142 145 - 0.68586 2 3 cbr 210 ------- 1 1.0 5.0 142 145 r 0.68672 2 3 cbr 210 ------- 1 1.0 5.0 128 131 + 0.68672 3 5 cbr 210 ------- 1 1.0 5.0 128 131 - 0.68672 3 5 cbr 210 ------- 1 1.0 5.0 128 131 r 0.68758 3 5 cbr 210 ------- 1 1.0 5.0 114 117 + 0.68875 1 2 cbr 210 ------- 1 1.0 5.0 157 161 - 0.68875 1 2 cbr 210 ------- 1 1.0 5.0 157 161 r 0.68961 1 2 cbr 210 ------- 1 1.0 5.0 143 146 + 0.68961 2 3 cbr 210 ------- 1 1.0 5.0 143 146 - 0.68961 2 3 cbr 210 ------- 1 1.0 5.0 143 146 r 0.69047 2 3 cbr 210 ------- 1 1.0 5.0 129 132 + 0.69047 3 5 cbr 210 ------- 1 1.0 5.0 129 132 - 0.69047 3 5 cbr 210 ------- 1 1.0 5.0 129 132 r 0.69133 3 5 cbr 210 ------- 1 1.0 5.0 115 118 + 0.6925 1 2 cbr 210 ------- 1 1.0 5.0 158 162 - 0.6925 1 2 cbr 210 ------- 1 1.0 5.0 158 162 r 0.69336 1 2 cbr 210 ------- 1 1.0 5.0 144 147 + 0.69336 2 3 cbr 210 ------- 1 1.0 5.0 144 147 - 0.69336 2 3 cbr 210 ------- 1 1.0 5.0 144 147 r 0.69422 2 3 cbr 210 ------- 1 1.0 5.0 130 133 + 0.69422 3 5 cbr 210 ------- 1 1.0 5.0 130 133 - 0.69422 3 5 cbr 210 ------- 1 1.0 5.0 130 133 r 0.69508 3 5 cbr 210 ------- 1 1.0 5.0 116 119 + 0.69625 1 2 cbr 210 ------- 1 1.0 5.0 159 163 - 0.69625 1 2 cbr 210 ------- 1 1.0 5.0 159 163 r 0.69711 1 2 cbr 210 ------- 1 1.0 5.0 145 148 + 0.69711 2 3 cbr 210 ------- 1 1.0 5.0 145 148 - 0.69711 2 3 cbr 210 ------- 1 1.0 5.0 145 148 r 0.69797 2 3 cbr 210 ------- 1 1.0 5.0 131 134 + 0.69797 3 5 cbr 210 ------- 1 1.0 5.0 131 134 - 0.69797 3 5 cbr 210 ------- 1 1.0 5.0 131 134 r 0.69883 3 5 cbr 210 ------- 1 1.0 5.0 117 120 + 0.7 1 2 cbr 210 ------- 1 1.0 5.0 160 164 - 0.7 1 2 cbr 210 ------- 1 1.0 5.0 160 164 r 0.70086 1 2 cbr 210 ------- 1 1.0 5.0 146 149 + 0.70086 2 3 cbr 210 ------- 1 1.0 5.0 146 149 - 0.70086 2 3 cbr 210 ------- 1 1.0 5.0 146 149 r 0.70172 2 3 cbr 210 ------- 1 1.0 5.0 132 135 + 0.70172 3 5 cbr 210 ------- 1 1.0 5.0 132 135 - 0.70172 3 5 cbr 210 ------- 1 1.0 5.0 132 135 r 0.70258 3 5 cbr 210 ------- 1 1.0 5.0 118 121 r 0.70311 4 3 ack 40 ------- 0 4.0 0.0 1 151 + 0.70311 3 2 ack 40 ------- 0 4.0 0.0 1 151 - 0.70311 3 2 ack 40 ------- 0 4.0 0.0 1 151 + 0.70375 1 2 cbr 210 ------- 1 1.0 5.0 161 165 - 0.70375 1 2 cbr 210 ------- 1 1.0 5.0 161 165 r 0.70461 1 2 cbr 210 ------- 1 1.0 5.0 147 150 + 0.70461 2 3 cbr 210 ------- 1 1.0 5.0 147 150 - 0.70461 2 3 cbr 210 ------- 1 1.0 5.0 147 150 r 0.70547 2 3 cbr 210 ------- 1 1.0 5.0 133 136 + 0.70547 3 5 cbr 210 ------- 1 1.0 5.0 133 136 - 0.70547 3 5 cbr 210 ------- 1 1.0 5.0 133 136 r 0.70633 3 5 cbr 210 ------- 1 1.0 5.0 119 122 + 0.7075 1 2 cbr 210 ------- 1 1.0 5.0 162 166 - 0.7075 1 2 cbr 210 ------- 1 1.0 5.0 162 166 r 0.70836 1 2 cbr 210 ------- 1 1.0 5.0 148 152 + 0.70836 2 3 cbr 210 ------- 1 1.0 5.0 148 152 - 0.70836 2 3 cbr 210 ------- 1 1.0 5.0 148 152 r 0.70922 2 3 cbr 210 ------- 1 1.0 5.0 134 137 + 0.70922 3 5 cbr 210 ------- 1 1.0 5.0 134 137 - 0.70922 3 5 cbr 210 ------- 1 1.0 5.0 134 137 r 0.71008 3 5 cbr 210 ------- 1 1.0 5.0 120 123 + 0.71125 1 2 cbr 210 ------- 1 1.0 5.0 163 167 - 0.71125 1 2 cbr 210 ------- 1 1.0 5.0 163 167 r 0.71211 1 2 cbr 210 ------- 1 1.0 5.0 149 153 + 0.71211 2 3 cbr 210 ------- 1 1.0 5.0 149 153 - 0.71211 2 3 cbr 210 ------- 1 1.0 5.0 149 153 r 0.71297 2 3 cbr 210 ------- 1 1.0 5.0 135 138 + 0.71297 3 5 cbr 210 ------- 1 1.0 5.0 135 138 - 0.71297 3 5 cbr 210 ------- 1 1.0 5.0 135 138 r 0.71383 3 5 cbr 210 ------- 1 1.0 5.0 121 124 + 0.715 1 2 cbr 210 ------- 1 1.0 5.0 164 168 - 0.715 1 2 cbr 210 ------- 1 1.0 5.0 164 168 r 0.71586 1 2 cbr 210 ------- 1 1.0 5.0 150 154 + 0.71586 2 3 cbr 210 ------- 1 1.0 5.0 150 154 - 0.71586 2 3 cbr 210 ------- 1 1.0 5.0 150 154 r 0.71672 2 3 cbr 210 ------- 1 1.0 5.0 136 139 + 0.71672 3 5 cbr 210 ------- 1 1.0 5.0 136 139 - 0.71672 3 5 cbr 210 ------- 1 1.0 5.0 136 139 r 0.71758 3 5 cbr 210 ------- 1 1.0 5.0 122 125 + 0.71875 1 2 cbr 210 ------- 1 1.0 5.0 165 169 - 0.71875 1 2 cbr 210 ------- 1 1.0 5.0 165 169 r 0.71961 1 2 cbr 210 ------- 1 1.0 5.0 151 155 + 0.71961 2 3 cbr 210 ------- 1 1.0 5.0 151 155 - 0.71961 2 3 cbr 210 ------- 1 1.0 5.0 151 155 r 0.72047 2 3 cbr 210 ------- 1 1.0 5.0 137 140 + 0.72047 3 5 cbr 210 ------- 1 1.0 5.0 137 140 - 0.72047 3 5 cbr 210 ------- 1 1.0 5.0 137 140 r 0.72133 3 5 cbr 210 ------- 1 1.0 5.0 123 126 + 0.7225 1 2 cbr 210 ------- 1 1.0 5.0 166 170 - 0.7225 1 2 cbr 210 ------- 1 1.0 5.0 166 170 r 0.72336 1 2 cbr 210 ------- 1 1.0 5.0 152 156 + 0.72336 2 3 cbr 210 ------- 1 1.0 5.0 152 156 - 0.72336 2 3 cbr 210 ------- 1 1.0 5.0 152 156 r 0.72422 2 3 cbr 210 ------- 1 1.0 5.0 138 141 + 0.72422 3 5 cbr 210 ------- 1 1.0 5.0 138 141 - 0.72422 3 5 cbr 210 ------- 1 1.0 5.0 138 141 r 0.72508 3 5 cbr 210 ------- 1 1.0 5.0 124 127 + 0.72625 1 2 cbr 210 ------- 1 1.0 5.0 167 171 - 0.72625 1 2 cbr 210 ------- 1 1.0 5.0 167 171 r 0.72711 1 2 cbr 210 ------- 1 1.0 5.0 153 157 + 0.72711 2 3 cbr 210 ------- 1 1.0 5.0 153 157 - 0.72711 2 3 cbr 210 ------- 1 1.0 5.0 153 157 r 0.72797 2 3 cbr 210 ------- 1 1.0 5.0 139 142 + 0.72797 3 5 cbr 210 ------- 1 1.0 5.0 139 142 - 0.72797 3 5 cbr 210 ------- 1 1.0 5.0 139 142 r 0.72883 3 5 cbr 210 ------- 1 1.0 5.0 125 128 + 0.73 1 2 cbr 210 ------- 1 1.0 5.0 168 172 - 0.73 1 2 cbr 210 ------- 1 1.0 5.0 168 172 r 0.73086 1 2 cbr 210 ------- 1 1.0 5.0 154 158 + 0.73086 2 3 cbr 210 ------- 1 1.0 5.0 154 158 - 0.73086 2 3 cbr 210 ------- 1 1.0 5.0 154 158 r 0.73172 2 3 cbr 210 ------- 1 1.0 5.0 140 143 + 0.73172 3 5 cbr 210 ------- 1 1.0 5.0 140 143 - 0.73172 3 5 cbr 210 ------- 1 1.0 5.0 140 143 r 0.73258 3 5 cbr 210 ------- 1 1.0 5.0 126 129 + 0.73375 1 2 cbr 210 ------- 1 1.0 5.0 169 173 - 0.73375 1 2 cbr 210 ------- 1 1.0 5.0 169 173 r 0.73461 1 2 cbr 210 ------- 1 1.0 5.0 155 159 + 0.73461 2 3 cbr 210 ------- 1 1.0 5.0 155 159 - 0.73461 2 3 cbr 210 ------- 1 1.0 5.0 155 159 r 0.73547 2 3 cbr 210 ------- 1 1.0 5.0 141 144 + 0.73547 3 5 cbr 210 ------- 1 1.0 5.0 141 144 - 0.73547 3 5 cbr 210 ------- 1 1.0 5.0 141 144 r 0.73633 3 5 cbr 210 ------- 1 1.0 5.0 127 130 + 0.7375 1 2 cbr 210 ------- 1 1.0 5.0 170 174 - 0.7375 1 2 cbr 210 ------- 1 1.0 5.0 170 174 r 0.73836 1 2 cbr 210 ------- 1 1.0 5.0 156 160 + 0.73836 2 3 cbr 210 ------- 1 1.0 5.0 156 160 - 0.73836 2 3 cbr 210 ------- 1 1.0 5.0 156 160 r 0.73922 2 3 cbr 210 ------- 1 1.0 5.0 142 145 + 0.73922 3 5 cbr 210 ------- 1 1.0 5.0 142 145 - 0.73922 3 5 cbr 210 ------- 1 1.0 5.0 142 145 r 0.74008 3 5 cbr 210 ------- 1 1.0 5.0 128 131 + 0.74125 1 2 cbr 210 ------- 1 1.0 5.0 171 175 - 0.74125 1 2 cbr 210 ------- 1 1.0 5.0 171 175 r 0.74211 1 2 cbr 210 ------- 1 1.0 5.0 157 161 + 0.74211 2 3 cbr 210 ------- 1 1.0 5.0 157 161 - 0.74211 2 3 cbr 210 ------- 1 1.0 5.0 157 161 r 0.74297 2 3 cbr 210 ------- 1 1.0 5.0 143 146 + 0.74297 3 5 cbr 210 ------- 1 1.0 5.0 143 146 - 0.74297 3 5 cbr 210 ------- 1 1.0 5.0 143 146 r 0.74383 3 5 cbr 210 ------- 1 1.0 5.0 129 132 + 0.745 1 2 cbr 210 ------- 1 1.0 5.0 172 176 - 0.745 1 2 cbr 210 ------- 1 1.0 5.0 172 176 r 0.74586 1 2 cbr 210 ------- 1 1.0 5.0 158 162 + 0.74586 2 3 cbr 210 ------- 1 1.0 5.0 158 162 - 0.74586 2 3 cbr 210 ------- 1 1.0 5.0 158 162 r 0.74672 2 3 cbr 210 ------- 1 1.0 5.0 144 147 + 0.74672 3 5 cbr 210 ------- 1 1.0 5.0 144 147 - 0.74672 3 5 cbr 210 ------- 1 1.0 5.0 144 147 r 0.74758 3 5 cbr 210 ------- 1 1.0 5.0 130 133 + 0.74875 1 2 cbr 210 ------- 1 1.0 5.0 173 177 - 0.74875 1 2 cbr 210 ------- 1 1.0 5.0 173 177 r 0.74961 1 2 cbr 210 ------- 1 1.0 5.0 159 163 + 0.74961 2 3 cbr 210 ------- 1 1.0 5.0 159 163 - 0.74961 2 3 cbr 210 ------- 1 1.0 5.0 159 163 r 0.75047 2 3 cbr 210 ------- 1 1.0 5.0 145 148 + 0.75047 3 5 cbr 210 ------- 1 1.0 5.0 145 148 - 0.75047 3 5 cbr 210 ------- 1 1.0 5.0 145 148 r 0.75133 3 5 cbr 210 ------- 1 1.0 5.0 131 134 + 0.7525 1 2 cbr 210 ------- 1 1.0 5.0 174 178 - 0.7525 1 2 cbr 210 ------- 1 1.0 5.0 174 178 r 0.75336 1 2 cbr 210 ------- 1 1.0 5.0 160 164 + 0.75336 2 3 cbr 210 ------- 1 1.0 5.0 160 164 - 0.75336 2 3 cbr 210 ------- 1 1.0 5.0 160 164 r 0.75375 3 2 ack 40 ------- 0 4.0 0.0 1 151 + 0.75375 2 0 ack 40 ------- 0 4.0 0.0 1 151 - 0.75375 2 0 ack 40 ------- 0 4.0 0.0 1 151 r 0.75422 2 3 cbr 210 ------- 1 1.0 5.0 146 149 + 0.75422 3 5 cbr 210 ------- 1 1.0 5.0 146 149 - 0.75422 3 5 cbr 210 ------- 1 1.0 5.0 146 149 r 0.75508 3 5 cbr 210 ------- 1 1.0 5.0 132 135 + 0.75625 1 2 cbr 210 ------- 1 1.0 5.0 175 179 - 0.75625 1 2 cbr 210 ------- 1 1.0 5.0 175 179 r 0.75711 1 2 cbr 210 ------- 1 1.0 5.0 161 165 + 0.75711 2 3 cbr 210 ------- 1 1.0 5.0 161 165 - 0.75711 2 3 cbr 210 ------- 1 1.0 5.0 161 165 r 0.75797 2 3 cbr 210 ------- 1 1.0 5.0 147 150 + 0.75797 3 5 cbr 210 ------- 1 1.0 5.0 147 150 - 0.75797 3 5 cbr 210 ------- 1 1.0 5.0 147 150 r 0.75883 3 5 cbr 210 ------- 1 1.0 5.0 133 136 + 0.76 1 2 cbr 210 ------- 1 1.0 5.0 176 180 - 0.76 1 2 cbr 210 ------- 1 1.0 5.0 176 180 r 0.76086 1 2 cbr 210 ------- 1 1.0 5.0 162 166 + 0.76086 2 3 cbr 210 ------- 1 1.0 5.0 162 166 - 0.76086 2 3 cbr 210 ------- 1 1.0 5.0 162 166 r 0.76172 2 3 cbr 210 ------- 1 1.0 5.0 148 152 + 0.76172 3 5 cbr 210 ------- 1 1.0 5.0 148 152 - 0.76172 3 5 cbr 210 ------- 1 1.0 5.0 148 152 r 0.76258 3 5 cbr 210 ------- 1 1.0 5.0 134 137 + 0.76375 1 2 cbr 210 ------- 1 1.0 5.0 177 181 - 0.76375 1 2 cbr 210 ------- 1 1.0 5.0 177 181 r 0.76461 1 2 cbr 210 ------- 1 1.0 5.0 163 167 + 0.76461 2 3 cbr 210 ------- 1 1.0 5.0 163 167 - 0.76461 2 3 cbr 210 ------- 1 1.0 5.0 163 167 r 0.76547 2 3 cbr 210 ------- 1 1.0 5.0 149 153 + 0.76547 3 5 cbr 210 ------- 1 1.0 5.0 149 153 - 0.76547 3 5 cbr 210 ------- 1 1.0 5.0 149 153 r 0.76633 3 5 cbr 210 ------- 1 1.0 5.0 135 138 + 0.7675 1 2 cbr 210 ------- 1 1.0 5.0 178 182 - 0.7675 1 2 cbr 210 ------- 1 1.0 5.0 178 182 r 0.76836 1 2 cbr 210 ------- 1 1.0 5.0 164 168 + 0.76836 2 3 cbr 210 ------- 1 1.0 5.0 164 168 - 0.76836 2 3 cbr 210 ------- 1 1.0 5.0 164 168 r 0.76922 2 3 cbr 210 ------- 1 1.0 5.0 150 154 + 0.76922 3 5 cbr 210 ------- 1 1.0 5.0 150 154 - 0.76922 3 5 cbr 210 ------- 1 1.0 5.0 150 154 r 0.77008 3 5 cbr 210 ------- 1 1.0 5.0 136 139 + 0.77125 1 2 cbr 210 ------- 1 1.0 5.0 179 183 - 0.77125 1 2 cbr 210 ------- 1 1.0 5.0 179 183 r 0.77211 1 2 cbr 210 ------- 1 1.0 5.0 165 169 + 0.77211 2 3 cbr 210 ------- 1 1.0 5.0 165 169 - 0.77211 2 3 cbr 210 ------- 1 1.0 5.0 165 169 r 0.77297 2 3 cbr 210 ------- 1 1.0 5.0 151 155 + 0.77297 3 5 cbr 210 ------- 1 1.0 5.0 151 155 - 0.77297 3 5 cbr 210 ------- 1 1.0 5.0 151 155 r 0.77383 3 5 cbr 210 ------- 1 1.0 5.0 137 140 + 0.775 1 2 cbr 210 ------- 1 1.0 5.0 180 184 - 0.775 1 2 cbr 210 ------- 1 1.0 5.0 180 184 r 0.77586 1 2 cbr 210 ------- 1 1.0 5.0 166 170 + 0.77586 2 3 cbr 210 ------- 1 1.0 5.0 166 170 - 0.77586 2 3 cbr 210 ------- 1 1.0 5.0 166 170 r 0.77672 2 3 cbr 210 ------- 1 1.0 5.0 152 156 + 0.77672 3 5 cbr 210 ------- 1 1.0 5.0 152 156 - 0.77672 3 5 cbr 210 ------- 1 1.0 5.0 152 156 r 0.77758 3 5 cbr 210 ------- 1 1.0 5.0 138 141 + 0.77875 1 2 cbr 210 ------- 1 1.0 5.0 181 185 - 0.77875 1 2 cbr 210 ------- 1 1.0 5.0 181 185 r 0.77961 1 2 cbr 210 ------- 1 1.0 5.0 167 171 + 0.77961 2 3 cbr 210 ------- 1 1.0 5.0 167 171 - 0.77961 2 3 cbr 210 ------- 1 1.0 5.0 167 171 r 0.78047 2 3 cbr 210 ------- 1 1.0 5.0 153 157 + 0.78047 3 5 cbr 210 ------- 1 1.0 5.0 153 157 - 0.78047 3 5 cbr 210 ------- 1 1.0 5.0 153 157 r 0.78133 3 5 cbr 210 ------- 1 1.0 5.0 139 142 + 0.7825 1 2 cbr 210 ------- 1 1.0 5.0 182 186 - 0.7825 1 2 cbr 210 ------- 1 1.0 5.0 182 186 r 0.78336 1 2 cbr 210 ------- 1 1.0 5.0 168 172 + 0.78336 2 3 cbr 210 ------- 1 1.0 5.0 168 172 - 0.78336 2 3 cbr 210 ------- 1 1.0 5.0 168 172 r 0.78422 2 3 cbr 210 ------- 1 1.0 5.0 154 158 + 0.78422 3 5 cbr 210 ------- 1 1.0 5.0 154 158 - 0.78422 3 5 cbr 210 ------- 1 1.0 5.0 154 158 r 0.78508 3 5 cbr 210 ------- 1 1.0 5.0 140 143 + 0.78625 1 2 cbr 210 ------- 1 1.0 5.0 183 187 - 0.78625 1 2 cbr 210 ------- 1 1.0 5.0 183 187 r 0.78711 1 2 cbr 210 ------- 1 1.0 5.0 169 173 + 0.78711 2 3 cbr 210 ------- 1 1.0 5.0 169 173 - 0.78711 2 3 cbr 210 ------- 1 1.0 5.0 169 173 r 0.78797 2 3 cbr 210 ------- 1 1.0 5.0 155 159 + 0.78797 3 5 cbr 210 ------- 1 1.0 5.0 155 159 - 0.78797 3 5 cbr 210 ------- 1 1.0 5.0 155 159 r 0.78883 3 5 cbr 210 ------- 1 1.0 5.0 141 144 + 0.79 1 2 cbr 210 ------- 1 1.0 5.0 184 188 - 0.79 1 2 cbr 210 ------- 1 1.0 5.0 184 188 r 0.79086 1 2 cbr 210 ------- 1 1.0 5.0 170 174 + 0.79086 2 3 cbr 210 ------- 1 1.0 5.0 170 174 - 0.79086 2 3 cbr 210 ------- 1 1.0 5.0 170 174 r 0.79172 2 3 cbr 210 ------- 1 1.0 5.0 156 160 + 0.79172 3 5 cbr 210 ------- 1 1.0 5.0 156 160 - 0.79172 3 5 cbr 210 ------- 1 1.0 5.0 156 160 r 0.79258 3 5 cbr 210 ------- 1 1.0 5.0 142 145 + 0.79375 1 2 cbr 210 ------- 1 1.0 5.0 185 189 - 0.79375 1 2 cbr 210 ------- 1 1.0 5.0 185 189 r 0.79461 1 2 cbr 210 ------- 1 1.0 5.0 171 175 + 0.79461 2 3 cbr 210 ------- 1 1.0 5.0 171 175 - 0.79461 2 3 cbr 210 ------- 1 1.0 5.0 171 175 r 0.79547 2 3 cbr 210 ------- 1 1.0 5.0 157 161 + 0.79547 3 5 cbr 210 ------- 1 1.0 5.0 157 161 - 0.79547 3 5 cbr 210 ------- 1 1.0 5.0 157 161 r 0.79633 3 5 cbr 210 ------- 1 1.0 5.0 143 146 + 0.7975 1 2 cbr 210 ------- 1 1.0 5.0 186 190 - 0.7975 1 2 cbr 210 ------- 1 1.0 5.0 186 190 r 0.79836 1 2 cbr 210 ------- 1 1.0 5.0 172 176 + 0.79836 2 3 cbr 210 ------- 1 1.0 5.0 172 176 - 0.79836 2 3 cbr 210 ------- 1 1.0 5.0 172 176 r 0.79922 2 3 cbr 210 ------- 1 1.0 5.0 158 162 + 0.79922 3 5 cbr 210 ------- 1 1.0 5.0 158 162 - 0.79922 3 5 cbr 210 ------- 1 1.0 5.0 158 162 r 0.80008 3 5 cbr 210 ------- 1 1.0 5.0 144 147 + 0.80125 1 2 cbr 210 ------- 1 1.0 5.0 187 191 - 0.80125 1 2 cbr 210 ------- 1 1.0 5.0 187 191 r 0.80211 1 2 cbr 210 ------- 1 1.0 5.0 173 177 + 0.80211 2 3 cbr 210 ------- 1 1.0 5.0 173 177 - 0.80211 2 3 cbr 210 ------- 1 1.0 5.0 173 177 r 0.80297 2 3 cbr 210 ------- 1 1.0 5.0 159 163 + 0.80297 3 5 cbr 210 ------- 1 1.0 5.0 159 163 - 0.80297 3 5 cbr 210 ------- 1 1.0 5.0 159 163 r 0.80383 3 5 cbr 210 ------- 1 1.0 5.0 145 148 r 0.80439 2 0 ack 40 ------- 0 4.0 0.0 1 151 + 0.80439 0 2 tcp 1000 ------- 0 0.0 4.0 2 192 - 0.80439 0 2 tcp 1000 ------- 0 0.0 4.0 2 192 + 0.805 1 2 cbr 210 ------- 1 1.0 5.0 188 193 - 0.805 1 2 cbr 210 ------- 1 1.0 5.0 188 193 r 0.80586 1 2 cbr 210 ------- 1 1.0 5.0 174 178 + 0.80586 2 3 cbr 210 ------- 1 1.0 5.0 174 178 - 0.80586 2 3 cbr 210 ------- 1 1.0 5.0 174 178 r 0.80672 2 3 cbr 210 ------- 1 1.0 5.0 160 164 + 0.80672 3 5 cbr 210 ------- 1 1.0 5.0 160 164 - 0.80672 3 5 cbr 210 ------- 1 1.0 5.0 160 164 r 0.80758 3 5 cbr 210 ------- 1 1.0 5.0 146 149 + 0.80875 1 2 cbr 210 ------- 1 1.0 5.0 189 194 - 0.80875 1 2 cbr 210 ------- 1 1.0 5.0 189 194 r 0.80961 1 2 cbr 210 ------- 1 1.0 5.0 175 179 + 0.80961 2 3 cbr 210 ------- 1 1.0 5.0 175 179 - 0.80961 2 3 cbr 210 ------- 1 1.0 5.0 175 179 r 0.81047 2 3 cbr 210 ------- 1 1.0 5.0 161 165 + 0.81047 3 5 cbr 210 ------- 1 1.0 5.0 161 165 - 0.81047 3 5 cbr 210 ------- 1 1.0 5.0 161 165 r 0.81133 3 5 cbr 210 ------- 1 1.0 5.0 147 150 + 0.8125 1 2 cbr 210 ------- 1 1.0 5.0 190 195 - 0.8125 1 2 cbr 210 ------- 1 1.0 5.0 190 195 r 0.81336 1 2 cbr 210 ------- 1 1.0 5.0 176 180 + 0.81336 2 3 cbr 210 ------- 1 1.0 5.0 176 180 - 0.81336 2 3 cbr 210 ------- 1 1.0 5.0 176 180 r 0.81422 2 3 cbr 210 ------- 1 1.0 5.0 162 166 + 0.81422 3 5 cbr 210 ------- 1 1.0 5.0 162 166 - 0.81422 3 5 cbr 210 ------- 1 1.0 5.0 162 166 r 0.81508 3 5 cbr 210 ------- 1 1.0 5.0 148 152 + 0.81625 1 2 cbr 210 ------- 1 1.0 5.0 191 196 - 0.81625 1 2 cbr 210 ------- 1 1.0 5.0 191 196 r 0.81711 1 2 cbr 210 ------- 1 1.0 5.0 177 181 + 0.81711 2 3 cbr 210 ------- 1 1.0 5.0 177 181 - 0.81711 2 3 cbr 210 ------- 1 1.0 5.0 177 181 r 0.81797 2 3 cbr 210 ------- 1 1.0 5.0 163 167 + 0.81797 3 5 cbr 210 ------- 1 1.0 5.0 163 167 - 0.81797 3 5 cbr 210 ------- 1 1.0 5.0 163 167 r 0.81883 3 5 cbr 210 ------- 1 1.0 5.0 149 153 + 0.82 1 2 cbr 210 ------- 1 1.0 5.0 192 197 - 0.82 1 2 cbr 210 ------- 1 1.0 5.0 192 197 r 0.82086 1 2 cbr 210 ------- 1 1.0 5.0 178 182 + 0.82086 2 3 cbr 210 ------- 1 1.0 5.0 178 182 - 0.82086 2 3 cbr 210 ------- 1 1.0 5.0 178 182 r 0.82172 2 3 cbr 210 ------- 1 1.0 5.0 164 168 + 0.82172 3 5 cbr 210 ------- 1 1.0 5.0 164 168 - 0.82172 3 5 cbr 210 ------- 1 1.0 5.0 164 168 r 0.82258 3 5 cbr 210 ------- 1 1.0 5.0 150 154 + 0.82375 1 2 cbr 210 ------- 1 1.0 5.0 193 198 - 0.82375 1 2 cbr 210 ------- 1 1.0 5.0 193 198 r 0.82461 1 2 cbr 210 ------- 1 1.0 5.0 179 183 + 0.82461 2 3 cbr 210 ------- 1 1.0 5.0 179 183 - 0.82461 2 3 cbr 210 ------- 1 1.0 5.0 179 183 r 0.82547 2 3 cbr 210 ------- 1 1.0 5.0 165 169 + 0.82547 3 5 cbr 210 ------- 1 1.0 5.0 165 169 - 0.82547 3 5 cbr 210 ------- 1 1.0 5.0 165 169 r 0.82633 3 5 cbr 210 ------- 1 1.0 5.0 151 155 + 0.8275 1 2 cbr 210 ------- 1 1.0 5.0 194 199 - 0.8275 1 2 cbr 210 ------- 1 1.0 5.0 194 199 r 0.82836 1 2 cbr 210 ------- 1 1.0 5.0 180 184 + 0.82836 2 3 cbr 210 ------- 1 1.0 5.0 180 184 - 0.82836 2 3 cbr 210 ------- 1 1.0 5.0 180 184 r 0.82922 2 3 cbr 210 ------- 1 1.0 5.0 166 170 + 0.82922 3 5 cbr 210 ------- 1 1.0 5.0 166 170 - 0.82922 3 5 cbr 210 ------- 1 1.0 5.0 166 170 r 0.83008 3 5 cbr 210 ------- 1 1.0 5.0 152 156 + 0.83125 1 2 cbr 210 ------- 1 1.0 5.0 195 200 - 0.83125 1 2 cbr 210 ------- 1 1.0 5.0 195 200 r 0.83211 1 2 cbr 210 ------- 1 1.0 5.0 181 185 + 0.83211 2 3 cbr 210 ------- 1 1.0 5.0 181 185 - 0.83211 2 3 cbr 210 ------- 1 1.0 5.0 181 185 r 0.83297 2 3 cbr 210 ------- 1 1.0 5.0 167 171 + 0.83297 3 5 cbr 210 ------- 1 1.0 5.0 167 171 - 0.83297 3 5 cbr 210 ------- 1 1.0 5.0 167 171 r 0.83383 3 5 cbr 210 ------- 1 1.0 5.0 153 157 + 0.835 1 2 cbr 210 ------- 1 1.0 5.0 196 201 - 0.835 1 2 cbr 210 ------- 1 1.0 5.0 196 201 r 0.83586 1 2 cbr 210 ------- 1 1.0 5.0 182 186 + 0.83586 2 3 cbr 210 ------- 1 1.0 5.0 182 186 - 0.83586 2 3 cbr 210 ------- 1 1.0 5.0 182 186 r 0.83672 2 3 cbr 210 ------- 1 1.0 5.0 168 172 + 0.83672 3 5 cbr 210 ------- 1 1.0 5.0 168 172 - 0.83672 3 5 cbr 210 ------- 1 1.0 5.0 168 172 r 0.83758 3 5 cbr 210 ------- 1 1.0 5.0 154 158 + 0.83875 1 2 cbr 210 ------- 1 1.0 5.0 197 202 - 0.83875 1 2 cbr 210 ------- 1 1.0 5.0 197 202 r 0.83961 1 2 cbr 210 ------- 1 1.0 5.0 183 187 + 0.83961 2 3 cbr 210 ------- 1 1.0 5.0 183 187 - 0.83961 2 3 cbr 210 ------- 1 1.0 5.0 183 187 r 0.84047 2 3 cbr 210 ------- 1 1.0 5.0 169 173 + 0.84047 3 5 cbr 210 ------- 1 1.0 5.0 169 173 - 0.84047 3 5 cbr 210 ------- 1 1.0 5.0 169 173 r 0.84133 3 5 cbr 210 ------- 1 1.0 5.0 155 159 + 0.8425 1 2 cbr 210 ------- 1 1.0 5.0 198 203 - 0.8425 1 2 cbr 210 ------- 1 1.0 5.0 198 203 r 0.84336 1 2 cbr 210 ------- 1 1.0 5.0 184 188 + 0.84336 2 3 cbr 210 ------- 1 1.0 5.0 184 188 - 0.84336 2 3 cbr 210 ------- 1 1.0 5.0 184 188 r 0.84422 2 3 cbr 210 ------- 1 1.0 5.0 170 174 + 0.84422 3 5 cbr 210 ------- 1 1.0 5.0 170 174 - 0.84422 3 5 cbr 210 ------- 1 1.0 5.0 170 174 r 0.84508 3 5 cbr 210 ------- 1 1.0 5.0 156 160 + 0.84625 1 2 cbr 210 ------- 1 1.0 5.0 199 204 - 0.84625 1 2 cbr 210 ------- 1 1.0 5.0 199 204 r 0.84711 1 2 cbr 210 ------- 1 1.0 5.0 185 189 + 0.84711 2 3 cbr 210 ------- 1 1.0 5.0 185 189 - 0.84711 2 3 cbr 210 ------- 1 1.0 5.0 185 189 r 0.84797 2 3 cbr 210 ------- 1 1.0 5.0 171 175 + 0.84797 3 5 cbr 210 ------- 1 1.0 5.0 171 175 - 0.84797 3 5 cbr 210 ------- 1 1.0 5.0 171 175 r 0.84883 3 5 cbr 210 ------- 1 1.0 5.0 157 161 + 0.85 1 2 cbr 210 ------- 1 1.0 5.0 200 205 - 0.85 1 2 cbr 210 ------- 1 1.0 5.0 200 205 r 0.85086 1 2 cbr 210 ------- 1 1.0 5.0 186 190 + 0.85086 2 3 cbr 210 ------- 1 1.0 5.0 186 190 - 0.85086 2 3 cbr 210 ------- 1 1.0 5.0 186 190 r 0.85172 2 3 cbr 210 ------- 1 1.0 5.0 172 176 + 0.85172 3 5 cbr 210 ------- 1 1.0 5.0 172 176 - 0.85172 3 5 cbr 210 ------- 1 1.0 5.0 172 176 r 0.85258 3 5 cbr 210 ------- 1 1.0 5.0 158 162 + 0.85375 1 2 cbr 210 ------- 1 1.0 5.0 201 206 - 0.85375 1 2 cbr 210 ------- 1 1.0 5.0 201 206 r 0.85461 1 2 cbr 210 ------- 1 1.0 5.0 187 191 + 0.85461 2 3 cbr 210 ------- 1 1.0 5.0 187 191 - 0.85461 2 3 cbr 210 ------- 1 1.0 5.0 187 191 r 0.85547 2 3 cbr 210 ------- 1 1.0 5.0 173 177 + 0.85547 3 5 cbr 210 ------- 1 1.0 5.0 173 177 - 0.85547 3 5 cbr 210 ------- 1 1.0 5.0 173 177 r 0.85633 3 5 cbr 210 ------- 1 1.0 5.0 159 163 + 0.8575 1 2 cbr 210 ------- 1 1.0 5.0 202 207 - 0.8575 1 2 cbr 210 ------- 1 1.0 5.0 202 207 r 0.85836 1 2 cbr 210 ------- 1 1.0 5.0 188 193 + 0.85836 2 3 cbr 210 ------- 1 1.0 5.0 188 193 - 0.85836 2 3 cbr 210 ------- 1 1.0 5.0 188 193 r 0.85922 2 3 cbr 210 ------- 1 1.0 5.0 174 178 + 0.85922 3 5 cbr 210 ------- 1 1.0 5.0 174 178 - 0.85922 3 5 cbr 210 ------- 1 1.0 5.0 174 178 r 0.86008 3 5 cbr 210 ------- 1 1.0 5.0 160 164 + 0.86125 1 2 cbr 210 ------- 1 1.0 5.0 203 208 - 0.86125 1 2 cbr 210 ------- 1 1.0 5.0 203 208 r 0.86211 1 2 cbr 210 ------- 1 1.0 5.0 189 194 + 0.86211 2 3 cbr 210 ------- 1 1.0 5.0 189 194 - 0.86211 2 3 cbr 210 ------- 1 1.0 5.0 189 194 r 0.86297 2 3 cbr 210 ------- 1 1.0 5.0 175 179 + 0.86297 3 5 cbr 210 ------- 1 1.0 5.0 175 179 - 0.86297 3 5 cbr 210 ------- 1 1.0 5.0 175 179 r 0.86383 3 5 cbr 210 ------- 1 1.0 5.0 161 165 + 0.865 1 2 cbr 210 ------- 1 1.0 5.0 204 209 - 0.865 1 2 cbr 210 ------- 1 1.0 5.0 204 209 r 0.86586 1 2 cbr 210 ------- 1 1.0 5.0 190 195 + 0.86586 2 3 cbr 210 ------- 1 1.0 5.0 190 195 - 0.86586 2 3 cbr 210 ------- 1 1.0 5.0 190 195 r 0.86672 2 3 cbr 210 ------- 1 1.0 5.0 176 180 + 0.86672 3 5 cbr 210 ------- 1 1.0 5.0 176 180 - 0.86672 3 5 cbr 210 ------- 1 1.0 5.0 176 180 r 0.86758 3 5 cbr 210 ------- 1 1.0 5.0 162 166 + 0.86875 1 2 cbr 210 ------- 1 1.0 5.0 205 210 - 0.86875 1 2 cbr 210 ------- 1 1.0 5.0 205 210 r 0.86961 1 2 cbr 210 ------- 1 1.0 5.0 191 196 + 0.86961 2 3 cbr 210 ------- 1 1.0 5.0 191 196 - 0.86961 2 3 cbr 210 ------- 1 1.0 5.0 191 196 r 0.87039 0 2 tcp 1000 ------- 0 0.0 4.0 2 192 + 0.87039 2 3 tcp 1000 ------- 0 0.0 4.0 2 192 r 0.87047 2 3 cbr 210 ------- 1 1.0 5.0 177 181 + 0.87047 3 5 cbr 210 ------- 1 1.0 5.0 177 181 - 0.87047 3 5 cbr 210 ------- 1 1.0 5.0 177 181 r 0.87133 3 5 cbr 210 ------- 1 1.0 5.0 163 167 + 0.8725 1 2 cbr 210 ------- 1 1.0 5.0 206 211 - 0.8725 1 2 cbr 210 ------- 1 1.0 5.0 206 211 - 0.87297 2 3 tcp 1000 ------- 0 0.0 4.0 2 192 r 0.87336 1 2 cbr 210 ------- 1 1.0 5.0 192 197 + 0.87336 2 3 cbr 210 ------- 1 1.0 5.0 192 197 r 0.87422 2 3 cbr 210 ------- 1 1.0 5.0 178 182 + 0.87422 3 5 cbr 210 ------- 1 1.0 5.0 178 182 - 0.87422 3 5 cbr 210 ------- 1 1.0 5.0 178 182 r 0.87508 3 5 cbr 210 ------- 1 1.0 5.0 164 168 + 0.87625 1 2 cbr 210 ------- 1 1.0 5.0 207 212 - 0.87625 1 2 cbr 210 ------- 1 1.0 5.0 207 212 r 0.87711 1 2 cbr 210 ------- 1 1.0 5.0 193 198 + 0.87711 2 3 cbr 210 ------- 1 1.0 5.0 193 198 d 0.87711 2 3 cbr 210 ------- 1 1.0 5.0 193 198 r 0.87797 2 3 cbr 210 ------- 1 1.0 5.0 179 183 + 0.87797 3 5 cbr 210 ------- 1 1.0 5.0 179 183 - 0.87797 3 5 cbr 210 ------- 1 1.0 5.0 179 183 r 0.87883 3 5 cbr 210 ------- 1 1.0 5.0 165 169 + 0.88 1 2 cbr 210 ------- 1 1.0 5.0 208 213 - 0.88 1 2 cbr 210 ------- 1 1.0 5.0 208 213 r 0.88086 1 2 cbr 210 ------- 1 1.0 5.0 194 199 + 0.88086 2 3 cbr 210 ------- 1 1.0 5.0 194 199 d 0.88086 2 3 cbr 210 ------- 1 1.0 5.0 194 199 r 0.88172 2 3 cbr 210 ------- 1 1.0 5.0 180 184 + 0.88172 3 5 cbr 210 ------- 1 1.0 5.0 180 184 - 0.88172 3 5 cbr 210 ------- 1 1.0 5.0 180 184 r 0.88258 3 5 cbr 210 ------- 1 1.0 5.0 166 170 + 0.88375 1 2 cbr 210 ------- 1 1.0 5.0 209 214 - 0.88375 1 2 cbr 210 ------- 1 1.0 5.0 209 214 r 0.88461 1 2 cbr 210 ------- 1 1.0 5.0 195 200 + 0.88461 2 3 cbr 210 ------- 1 1.0 5.0 195 200 d 0.88461 2 3 cbr 210 ------- 1 1.0 5.0 195 200 r 0.88547 2 3 cbr 210 ------- 1 1.0 5.0 181 185 + 0.88547 3 5 cbr 210 ------- 1 1.0 5.0 181 185 - 0.88547 3 5 cbr 210 ------- 1 1.0 5.0 181 185 r 0.88633 3 5 cbr 210 ------- 1 1.0 5.0 167 171 + 0.8875 1 2 cbr 210 ------- 1 1.0 5.0 210 215 - 0.8875 1 2 cbr 210 ------- 1 1.0 5.0 210 215 r 0.88836 1 2 cbr 210 ------- 1 1.0 5.0 196 201 + 0.88836 2 3 cbr 210 ------- 1 1.0 5.0 196 201 d 0.88836 2 3 cbr 210 ------- 1 1.0 5.0 196 201 - 0.88897 2 3 cbr 210 ------- 1 1.0 5.0 192 197 r 0.88922 2 3 cbr 210 ------- 1 1.0 5.0 182 186 + 0.88922 3 5 cbr 210 ------- 1 1.0 5.0 182 186 - 0.88922 3 5 cbr 210 ------- 1 1.0 5.0 182 186 r 0.89008 3 5 cbr 210 ------- 1 1.0 5.0 168 172 + 0.89125 1 2 cbr 210 ------- 1 1.0 5.0 211 216 - 0.89125 1 2 cbr 210 ------- 1 1.0 5.0 211 216 r 0.89211 1 2 cbr 210 ------- 1 1.0 5.0 197 202 + 0.89211 2 3 cbr 210 ------- 1 1.0 5.0 197 202 - 0.89233 2 3 cbr 210 ------- 1 1.0 5.0 197 202 r 0.89297 2 3 cbr 210 ------- 1 1.0 5.0 183 187 + 0.89297 3 5 cbr 210 ------- 1 1.0 5.0 183 187 - 0.89297 3 5 cbr 210 ------- 1 1.0 5.0 183 187 r 0.89383 3 5 cbr 210 ------- 1 1.0 5.0 169 173 + 0.895 1 2 cbr 210 ------- 1 1.0 5.0 212 217 - 0.895 1 2 cbr 210 ------- 1 1.0 5.0 212 217 r 0.89586 1 2 cbr 210 ------- 1 1.0 5.0 198 203 + 0.89586 2 3 cbr 210 ------- 1 1.0 5.0 198 203 - 0.89586 2 3 cbr 210 ------- 1 1.0 5.0 198 203 r 0.89672 2 3 cbr 210 ------- 1 1.0 5.0 184 188 + 0.89672 3 5 cbr 210 ------- 1 1.0 5.0 184 188 - 0.89672 3 5 cbr 210 ------- 1 1.0 5.0 184 188 r 0.89758 3 5 cbr 210 ------- 1 1.0 5.0 170 174 + 0.89875 1 2 cbr 210 ------- 1 1.0 5.0 213 218 - 0.89875 1 2 cbr 210 ------- 1 1.0 5.0 213 218 r 0.89961 1 2 cbr 210 ------- 1 1.0 5.0 199 204 + 0.89961 2 3 cbr 210 ------- 1 1.0 5.0 199 204 - 0.89961 2 3 cbr 210 ------- 1 1.0 5.0 199 204 r 0.90047 2 3 cbr 210 ------- 1 1.0 5.0 185 189 + 0.90047 3 5 cbr 210 ------- 1 1.0 5.0 185 189 - 0.90047 3 5 cbr 210 ------- 1 1.0 5.0 185 189 r 0.90133 3 5 cbr 210 ------- 1 1.0 5.0 171 175 + 0.9025 1 2 cbr 210 ------- 1 1.0 5.0 214 219 - 0.9025 1 2 cbr 210 ------- 1 1.0 5.0 214 219 r 0.90336 1 2 cbr 210 ------- 1 1.0 5.0 200 205 + 0.90336 2 3 cbr 210 ------- 1 1.0 5.0 200 205 - 0.90336 2 3 cbr 210 ------- 1 1.0 5.0 200 205 r 0.90422 2 3 cbr 210 ------- 1 1.0 5.0 186 190 + 0.90422 3 5 cbr 210 ------- 1 1.0 5.0 186 190 - 0.90422 3 5 cbr 210 ------- 1 1.0 5.0 186 190 r 0.90508 3 5 cbr 210 ------- 1 1.0 5.0 172 176 + 0.90625 1 2 cbr 210 ------- 1 1.0 5.0 215 220 - 0.90625 1 2 cbr 210 ------- 1 1.0 5.0 215 220 r 0.90711 1 2 cbr 210 ------- 1 1.0 5.0 201 206 + 0.90711 2 3 cbr 210 ------- 1 1.0 5.0 201 206 - 0.90711 2 3 cbr 210 ------- 1 1.0 5.0 201 206 r 0.90797 2 3 cbr 210 ------- 1 1.0 5.0 187 191 + 0.90797 3 5 cbr 210 ------- 1 1.0 5.0 187 191 - 0.90797 3 5 cbr 210 ------- 1 1.0 5.0 187 191 r 0.90883 3 5 cbr 210 ------- 1 1.0 5.0 173 177 + 0.91 1 2 cbr 210 ------- 1 1.0 5.0 216 221 - 0.91 1 2 cbr 210 ------- 1 1.0 5.0 216 221 r 0.91086 1 2 cbr 210 ------- 1 1.0 5.0 202 207 + 0.91086 2 3 cbr 210 ------- 1 1.0 5.0 202 207 - 0.91086 2 3 cbr 210 ------- 1 1.0 5.0 202 207 r 0.91172 2 3 cbr 210 ------- 1 1.0 5.0 188 193 + 0.91172 3 5 cbr 210 ------- 1 1.0 5.0 188 193 - 0.91172 3 5 cbr 210 ------- 1 1.0 5.0 188 193 r 0.91258 3 5 cbr 210 ------- 1 1.0 5.0 174 178 + 0.91375 1 2 cbr 210 ------- 1 1.0 5.0 217 222 - 0.91375 1 2 cbr 210 ------- 1 1.0 5.0 217 222 r 0.91461 1 2 cbr 210 ------- 1 1.0 5.0 203 208 + 0.91461 2 3 cbr 210 ------- 1 1.0 5.0 203 208 - 0.91461 2 3 cbr 210 ------- 1 1.0 5.0 203 208 r 0.91547 2 3 cbr 210 ------- 1 1.0 5.0 189 194 + 0.91547 3 5 cbr 210 ------- 1 1.0 5.0 189 194 - 0.91547 3 5 cbr 210 ------- 1 1.0 5.0 189 194 r 0.91633 3 5 cbr 210 ------- 1 1.0 5.0 175 179 + 0.9175 1 2 cbr 210 ------- 1 1.0 5.0 218 223 - 0.9175 1 2 cbr 210 ------- 1 1.0 5.0 218 223 r 0.91836 1 2 cbr 210 ------- 1 1.0 5.0 204 209 + 0.91836 2 3 cbr 210 ------- 1 1.0 5.0 204 209 - 0.91836 2 3 cbr 210 ------- 1 1.0 5.0 204 209 r 0.91922 2 3 cbr 210 ------- 1 1.0 5.0 190 195 + 0.91922 3 5 cbr 210 ------- 1 1.0 5.0 190 195 - 0.91922 3 5 cbr 210 ------- 1 1.0 5.0 190 195 r 0.92008 3 5 cbr 210 ------- 1 1.0 5.0 176 180 + 0.92125 1 2 cbr 210 ------- 1 1.0 5.0 219 224 - 0.92125 1 2 cbr 210 ------- 1 1.0 5.0 219 224 r 0.92211 1 2 cbr 210 ------- 1 1.0 5.0 205 210 + 0.92211 2 3 cbr 210 ------- 1 1.0 5.0 205 210 - 0.92211 2 3 cbr 210 ------- 1 1.0 5.0 205 210 r 0.92297 2 3 cbr 210 ------- 1 1.0 5.0 191 196 + 0.92297 3 5 cbr 210 ------- 1 1.0 5.0 191 196 - 0.92297 3 5 cbr 210 ------- 1 1.0 5.0 191 196 r 0.92383 3 5 cbr 210 ------- 1 1.0 5.0 177 181 + 0.925 1 2 cbr 210 ------- 1 1.0 5.0 220 225 - 0.925 1 2 cbr 210 ------- 1 1.0 5.0 220 225 r 0.92586 1 2 cbr 210 ------- 1 1.0 5.0 206 211 + 0.92586 2 3 cbr 210 ------- 1 1.0 5.0 206 211 - 0.92586 2 3 cbr 210 ------- 1 1.0 5.0 206 211 r 0.92758 3 5 cbr 210 ------- 1 1.0 5.0 178 182 + 0.92875 1 2 cbr 210 ------- 1 1.0 5.0 221 226 - 0.92875 1 2 cbr 210 ------- 1 1.0 5.0 221 226 r 0.92961 1 2 cbr 210 ------- 1 1.0 5.0 207 212 + 0.92961 2 3 cbr 210 ------- 1 1.0 5.0 207 212 - 0.92961 2 3 cbr 210 ------- 1 1.0 5.0 207 212 r 0.93133 3 5 cbr 210 ------- 1 1.0 5.0 179 183 + 0.9325 1 2 cbr 210 ------- 1 1.0 5.0 222 227 - 0.9325 1 2 cbr 210 ------- 1 1.0 5.0 222 227 r 0.93336 1 2 cbr 210 ------- 1 1.0 5.0 208 213 + 0.93336 2 3 cbr 210 ------- 1 1.0 5.0 208 213 - 0.93336 2 3 cbr 210 ------- 1 1.0 5.0 208 213 r 0.93508 3 5 cbr 210 ------- 1 1.0 5.0 180 184 + 0.93625 1 2 cbr 210 ------- 1 1.0 5.0 223 228 - 0.93625 1 2 cbr 210 ------- 1 1.0 5.0 223 228 r 0.93711 1 2 cbr 210 ------- 1 1.0 5.0 209 214 + 0.93711 2 3 cbr 210 ------- 1 1.0 5.0 209 214 - 0.93711 2 3 cbr 210 ------- 1 1.0 5.0 209 214 r 0.93883 3 5 cbr 210 ------- 1 1.0 5.0 181 185 r 0.93897 2 3 tcp 1000 ------- 0 0.0 4.0 2 192 + 0.93897 3 4 tcp 1000 ------- 0 0.0 4.0 2 192 - 0.93897 3 4 tcp 1000 ------- 0 0.0 4.0 2 192 + 0.94 1 2 cbr 210 ------- 1 1.0 5.0 224 229 - 0.94 1 2 cbr 210 ------- 1 1.0 5.0 224 229 r 0.94086 1 2 cbr 210 ------- 1 1.0 5.0 210 215 + 0.94086 2 3 cbr 210 ------- 1 1.0 5.0 210 215 - 0.94086 2 3 cbr 210 ------- 1 1.0 5.0 210 215 r 0.94233 2 3 cbr 210 ------- 1 1.0 5.0 192 197 + 0.94233 3 5 cbr 210 ------- 1 1.0 5.0 192 197 - 0.94233 3 5 cbr 210 ------- 1 1.0 5.0 192 197 r 0.94258 3 5 cbr 210 ------- 1 1.0 5.0 182 186 + 0.94375 1 2 cbr 210 ------- 1 1.0 5.0 225 230 - 0.94375 1 2 cbr 210 ------- 1 1.0 5.0 225 230 r 0.94461 1 2 cbr 210 ------- 1 1.0 5.0 211 216 + 0.94461 2 3 cbr 210 ------- 1 1.0 5.0 211 216 - 0.94461 2 3 cbr 210 ------- 1 1.0 5.0 211 216 r 0.94569 2 3 cbr 210 ------- 1 1.0 5.0 197 202 + 0.94569 3 5 cbr 210 ------- 1 1.0 5.0 197 202 - 0.94569 3 5 cbr 210 ------- 1 1.0 5.0 197 202 r 0.94633 3 5 cbr 210 ------- 1 1.0 5.0 183 187 + 0.9475 1 2 cbr 210 ------- 1 1.0 5.0 226 231 - 0.9475 1 2 cbr 210 ------- 1 1.0 5.0 226 231 r 0.94836 1 2 cbr 210 ------- 1 1.0 5.0 212 217 + 0.94836 2 3 cbr 210 ------- 1 1.0 5.0 212 217 - 0.94836 2 3 cbr 210 ------- 1 1.0 5.0 212 217 r 0.94922 2 3 cbr 210 ------- 1 1.0 5.0 198 203 + 0.94922 3 5 cbr 210 ------- 1 1.0 5.0 198 203 - 0.94922 3 5 cbr 210 ------- 1 1.0 5.0 198 203 r 0.95008 3 5 cbr 210 ------- 1 1.0 5.0 184 188 + 0.95125 1 2 cbr 210 ------- 1 1.0 5.0 227 232 - 0.95125 1 2 cbr 210 ------- 1 1.0 5.0 227 232 r 0.95211 1 2 cbr 210 ------- 1 1.0 5.0 213 218 + 0.95211 2 3 cbr 210 ------- 1 1.0 5.0 213 218 - 0.95211 2 3 cbr 210 ------- 1 1.0 5.0 213 218 r 0.95297 2 3 cbr 210 ------- 1 1.0 5.0 199 204 + 0.95297 3 5 cbr 210 ------- 1 1.0 5.0 199 204 - 0.95297 3 5 cbr 210 ------- 1 1.0 5.0 199 204 r 0.95383 3 5 cbr 210 ------- 1 1.0 5.0 185 189 + 0.955 1 2 cbr 210 ------- 1 1.0 5.0 228 233 - 0.955 1 2 cbr 210 ------- 1 1.0 5.0 228 233 r 0.95586 1 2 cbr 210 ------- 1 1.0 5.0 214 219 + 0.95586 2 3 cbr 210 ------- 1 1.0 5.0 214 219 - 0.95586 2 3 cbr 210 ------- 1 1.0 5.0 214 219 r 0.95672 2 3 cbr 210 ------- 1 1.0 5.0 200 205 + 0.95672 3 5 cbr 210 ------- 1 1.0 5.0 200 205 - 0.95672 3 5 cbr 210 ------- 1 1.0 5.0 200 205 r 0.95758 3 5 cbr 210 ------- 1 1.0 5.0 186 190 + 0.95875 1 2 cbr 210 ------- 1 1.0 5.0 229 234 - 0.95875 1 2 cbr 210 ------- 1 1.0 5.0 229 234 r 0.95961 1 2 cbr 210 ------- 1 1.0 5.0 215 220 + 0.95961 2 3 cbr 210 ------- 1 1.0 5.0 215 220 - 0.95961 2 3 cbr 210 ------- 1 1.0 5.0 215 220 r 0.96047 2 3 cbr 210 ------- 1 1.0 5.0 201 206 + 0.96047 3 5 cbr 210 ------- 1 1.0 5.0 201 206 - 0.96047 3 5 cbr 210 ------- 1 1.0 5.0 201 206 r 0.96133 3 5 cbr 210 ------- 1 1.0 5.0 187 191 + 0.9625 1 2 cbr 210 ------- 1 1.0 5.0 230 235 - 0.9625 1 2 cbr 210 ------- 1 1.0 5.0 230 235 r 0.96336 1 2 cbr 210 ------- 1 1.0 5.0 216 221 + 0.96336 2 3 cbr 210 ------- 1 1.0 5.0 216 221 - 0.96336 2 3 cbr 210 ------- 1 1.0 5.0 216 221 r 0.96422 2 3 cbr 210 ------- 1 1.0 5.0 202 207 + 0.96422 3 5 cbr 210 ------- 1 1.0 5.0 202 207 - 0.96422 3 5 cbr 210 ------- 1 1.0 5.0 202 207 r 0.96508 3 5 cbr 210 ------- 1 1.0 5.0 188 193 + 0.96625 1 2 cbr 210 ------- 1 1.0 5.0 231 236 - 0.96625 1 2 cbr 210 ------- 1 1.0 5.0 231 236 r 0.96711 1 2 cbr 210 ------- 1 1.0 5.0 217 222 + 0.96711 2 3 cbr 210 ------- 1 1.0 5.0 217 222 - 0.96711 2 3 cbr 210 ------- 1 1.0 5.0 217 222 r 0.96797 2 3 cbr 210 ------- 1 1.0 5.0 203 208 + 0.96797 3 5 cbr 210 ------- 1 1.0 5.0 203 208 - 0.96797 3 5 cbr 210 ------- 1 1.0 5.0 203 208 r 0.96883 3 5 cbr 210 ------- 1 1.0 5.0 189 194 + 0.97 1 2 cbr 210 ------- 1 1.0 5.0 232 237 - 0.97 1 2 cbr 210 ------- 1 1.0 5.0 232 237 r 0.97086 1 2 cbr 210 ------- 1 1.0 5.0 218 223 + 0.97086 2 3 cbr 210 ------- 1 1.0 5.0 218 223 - 0.97086 2 3 cbr 210 ------- 1 1.0 5.0 218 223 r 0.97172 2 3 cbr 210 ------- 1 1.0 5.0 204 209 + 0.97172 3 5 cbr 210 ------- 1 1.0 5.0 204 209 - 0.97172 3 5 cbr 210 ------- 1 1.0 5.0 204 209 r 0.97258 3 5 cbr 210 ------- 1 1.0 5.0 190 195 + 0.97375 1 2 cbr 210 ------- 1 1.0 5.0 233 238 - 0.97375 1 2 cbr 210 ------- 1 1.0 5.0 233 238 r 0.97461 1 2 cbr 210 ------- 1 1.0 5.0 219 224 + 0.97461 2 3 cbr 210 ------- 1 1.0 5.0 219 224 - 0.97461 2 3 cbr 210 ------- 1 1.0 5.0 219 224 r 0.97547 2 3 cbr 210 ------- 1 1.0 5.0 205 210 + 0.97547 3 5 cbr 210 ------- 1 1.0 5.0 205 210 - 0.97547 3 5 cbr 210 ------- 1 1.0 5.0 205 210 r 0.97633 3 5 cbr 210 ------- 1 1.0 5.0 191 196 + 0.9775 1 2 cbr 210 ------- 1 1.0 5.0 234 239 - 0.9775 1 2 cbr 210 ------- 1 1.0 5.0 234 239 r 0.97836 1 2 cbr 210 ------- 1 1.0 5.0 220 225 + 0.97836 2 3 cbr 210 ------- 1 1.0 5.0 220 225 - 0.97836 2 3 cbr 210 ------- 1 1.0 5.0 220 225 r 0.97922 2 3 cbr 210 ------- 1 1.0 5.0 206 211 + 0.97922 3 5 cbr 210 ------- 1 1.0 5.0 206 211 - 0.97922 3 5 cbr 210 ------- 1 1.0 5.0 206 211 + 0.98125 1 2 cbr 210 ------- 1 1.0 5.0 235 240 - 0.98125 1 2 cbr 210 ------- 1 1.0 5.0 235 240 r 0.98211 1 2 cbr 210 ------- 1 1.0 5.0 221 226 + 0.98211 2 3 cbr 210 ------- 1 1.0 5.0 221 226 - 0.98211 2 3 cbr 210 ------- 1 1.0 5.0 221 226 r 0.98297 2 3 cbr 210 ------- 1 1.0 5.0 207 212 + 0.98297 3 5 cbr 210 ------- 1 1.0 5.0 207 212 - 0.98297 3 5 cbr 210 ------- 1 1.0 5.0 207 212 + 0.985 1 2 cbr 210 ------- 1 1.0 5.0 236 241 - 0.985 1 2 cbr 210 ------- 1 1.0 5.0 236 241 r 0.98586 1 2 cbr 210 ------- 1 1.0 5.0 222 227 + 0.98586 2 3 cbr 210 ------- 1 1.0 5.0 222 227 - 0.98586 2 3 cbr 210 ------- 1 1.0 5.0 222 227 r 0.98672 2 3 cbr 210 ------- 1 1.0 5.0 208 213 + 0.98672 3 5 cbr 210 ------- 1 1.0 5.0 208 213 - 0.98672 3 5 cbr 210 ------- 1 1.0 5.0 208 213 + 0.98875 1 2 cbr 210 ------- 1 1.0 5.0 237 242 - 0.98875 1 2 cbr 210 ------- 1 1.0 5.0 237 242 r 0.98961 1 2 cbr 210 ------- 1 1.0 5.0 223 228 + 0.98961 2 3 cbr 210 ------- 1 1.0 5.0 223 228 - 0.98961 2 3 cbr 210 ------- 1 1.0 5.0 223 228 r 0.99047 2 3 cbr 210 ------- 1 1.0 5.0 209 214 + 0.99047 3 5 cbr 210 ------- 1 1.0 5.0 209 214 - 0.99047 3 5 cbr 210 ------- 1 1.0 5.0 209 214 + 0.9925 1 2 cbr 210 ------- 1 1.0 5.0 238 243 - 0.9925 1 2 cbr 210 ------- 1 1.0 5.0 238 243 r 0.99336 1 2 cbr 210 ------- 1 1.0 5.0 224 229 + 0.99336 2 3 cbr 210 ------- 1 1.0 5.0 224 229 - 0.99336 2 3 cbr 210 ------- 1 1.0 5.0 224 229 r 0.99422 2 3 cbr 210 ------- 1 1.0 5.0 210 215 + 0.99422 3 5 cbr 210 ------- 1 1.0 5.0 210 215 - 0.99422 3 5 cbr 210 ------- 1 1.0 5.0 210 215 r 0.99569 3 5 cbr 210 ------- 1 1.0 5.0 192 197 + 0.99625 1 2 cbr 210 ------- 1 1.0 5.0 239 244 - 0.99625 1 2 cbr 210 ------- 1 1.0 5.0 239 244 r 0.99711 1 2 cbr 210 ------- 1 1.0 5.0 225 230 + 0.99711 2 3 cbr 210 ------- 1 1.0 5.0 225 230 - 0.99711 2 3 cbr 210 ------- 1 1.0 5.0 225 230 r 0.99797 2 3 cbr 210 ------- 1 1.0 5.0 211 216 + 0.99797 3 5 cbr 210 ------- 1 1.0 5.0 211 216 - 0.99797 3 5 cbr 210 ------- 1 1.0 5.0 211 216 r 0.99905 3 5 cbr 210 ------- 1 1.0 5.0 197 202 + 1 1 2 cbr 210 ------- 1 1.0 5.0 240 245 - 1 1 2 cbr 210 ------- 1 1.0 5.0 240 245 r 1.00086 1 2 cbr 210 ------- 1 1.0 5.0 226 231 + 1.00086 2 3 cbr 210 ------- 1 1.0 5.0 226 231 - 1.00086 2 3 cbr 210 ------- 1 1.0 5.0 226 231 r 1.00172 2 3 cbr 210 ------- 1 1.0 5.0 212 217 + 1.00172 3 5 cbr 210 ------- 1 1.0 5.0 212 217 - 1.00172 3 5 cbr 210 ------- 1 1.0 5.0 212 217 r 1.00258 3 5 cbr 210 ------- 1 1.0 5.0 198 203 + 1.00375 1 2 cbr 210 ------- 1 1.0 5.0 241 246 - 1.00375 1 2 cbr 210 ------- 1 1.0 5.0 241 246 r 1.00461 1 2 cbr 210 ------- 1 1.0 5.0 227 232 + 1.00461 2 3 cbr 210 ------- 1 1.0 5.0 227 232 - 1.00461 2 3 cbr 210 ------- 1 1.0 5.0 227 232 r 1.00497 3 4 tcp 1000 ------- 0 0.0 4.0 2 192 + 1.00497 4 3 ack 40 ------- 0 4.0 0.0 2 247 - 1.00497 4 3 ack 40 ------- 0 4.0 0.0 2 247 r 1.00547 2 3 cbr 210 ------- 1 1.0 5.0 213 218 + 1.00547 3 5 cbr 210 ------- 1 1.0 5.0 213 218 - 1.00547 3 5 cbr 210 ------- 1 1.0 5.0 213 218 r 1.00633 3 5 cbr 210 ------- 1 1.0 5.0 199 204 + 1.0075 1 2 cbr 210 ------- 1 1.0 5.0 242 248 - 1.0075 1 2 cbr 210 ------- 1 1.0 5.0 242 248 r 1.00836 1 2 cbr 210 ------- 1 1.0 5.0 228 233 + 1.00836 2 3 cbr 210 ------- 1 1.0 5.0 228 233 - 1.00836 2 3 cbr 210 ------- 1 1.0 5.0 228 233 r 1.00922 2 3 cbr 210 ------- 1 1.0 5.0 214 219 + 1.00922 3 5 cbr 210 ------- 1 1.0 5.0 214 219 - 1.00922 3 5 cbr 210 ------- 1 1.0 5.0 214 219 r 1.01008 3 5 cbr 210 ------- 1 1.0 5.0 200 205 + 1.01125 1 2 cbr 210 ------- 1 1.0 5.0 243 249 - 1.01125 1 2 cbr 210 ------- 1 1.0 5.0 243 249 r 1.01211 1 2 cbr 210 ------- 1 1.0 5.0 229 234 + 1.01211 2 3 cbr 210 ------- 1 1.0 5.0 229 234 - 1.01211 2 3 cbr 210 ------- 1 1.0 5.0 229 234 r 1.01297 2 3 cbr 210 ------- 1 1.0 5.0 215 220 + 1.01297 3 5 cbr 210 ------- 1 1.0 5.0 215 220 - 1.01297 3 5 cbr 210 ------- 1 1.0 5.0 215 220 r 1.01383 3 5 cbr 210 ------- 1 1.0 5.0 201 206 + 1.015 1 2 cbr 210 ------- 1 1.0 5.0 244 250 - 1.015 1 2 cbr 210 ------- 1 1.0 5.0 244 250 r 1.01586 1 2 cbr 210 ------- 1 1.0 5.0 230 235 + 1.01586 2 3 cbr 210 ------- 1 1.0 5.0 230 235 - 1.01586 2 3 cbr 210 ------- 1 1.0 5.0 230 235 r 1.01672 2 3 cbr 210 ------- 1 1.0 5.0 216 221 + 1.01672 3 5 cbr 210 ------- 1 1.0 5.0 216 221 - 1.01672 3 5 cbr 210 ------- 1 1.0 5.0 216 221 r 1.01758 3 5 cbr 210 ------- 1 1.0 5.0 202 207 + 1.01875 1 2 cbr 210 ------- 1 1.0 5.0 245 251 - 1.01875 1 2 cbr 210 ------- 1 1.0 5.0 245 251 r 1.01961 1 2 cbr 210 ------- 1 1.0 5.0 231 236 + 1.01961 2 3 cbr 210 ------- 1 1.0 5.0 231 236 - 1.01961 2 3 cbr 210 ------- 1 1.0 5.0 231 236 r 1.02047 2 3 cbr 210 ------- 1 1.0 5.0 217 222 + 1.02047 3 5 cbr 210 ------- 1 1.0 5.0 217 222 - 1.02047 3 5 cbr 210 ------- 1 1.0 5.0 217 222 r 1.02133 3 5 cbr 210 ------- 1 1.0 5.0 203 208 + 1.0225 1 2 cbr 210 ------- 1 1.0 5.0 246 252 - 1.0225 1 2 cbr 210 ------- 1 1.0 5.0 246 252 r 1.02336 1 2 cbr 210 ------- 1 1.0 5.0 232 237 + 1.02336 2 3 cbr 210 ------- 1 1.0 5.0 232 237 - 1.02336 2 3 cbr 210 ------- 1 1.0 5.0 232 237 r 1.02422 2 3 cbr 210 ------- 1 1.0 5.0 218 223 + 1.02422 3 5 cbr 210 ------- 1 1.0 5.0 218 223 - 1.02422 3 5 cbr 210 ------- 1 1.0 5.0 218 223 r 1.02508 3 5 cbr 210 ------- 1 1.0 5.0 204 209 + 1.02625 1 2 cbr 210 ------- 1 1.0 5.0 247 253 - 1.02625 1 2 cbr 210 ------- 1 1.0 5.0 247 253 r 1.02711 1 2 cbr 210 ------- 1 1.0 5.0 233 238 + 1.02711 2 3 cbr 210 ------- 1 1.0 5.0 233 238 - 1.02711 2 3 cbr 210 ------- 1 1.0 5.0 233 238 r 1.02797 2 3 cbr 210 ------- 1 1.0 5.0 219 224 + 1.02797 3 5 cbr 210 ------- 1 1.0 5.0 219 224 - 1.02797 3 5 cbr 210 ------- 1 1.0 5.0 219 224 r 1.02883 3 5 cbr 210 ------- 1 1.0 5.0 205 210 + 1.03 1 2 cbr 210 ------- 1 1.0 5.0 248 254 - 1.03 1 2 cbr 210 ------- 1 1.0 5.0 248 254 r 1.03086 1 2 cbr 210 ------- 1 1.0 5.0 234 239 + 1.03086 2 3 cbr 210 ------- 1 1.0 5.0 234 239 - 1.03086 2 3 cbr 210 ------- 1 1.0 5.0 234 239 r 1.03172 2 3 cbr 210 ------- 1 1.0 5.0 220 225 + 1.03172 3 5 cbr 210 ------- 1 1.0 5.0 220 225 - 1.03172 3 5 cbr 210 ------- 1 1.0 5.0 220 225 r 1.03258 3 5 cbr 210 ------- 1 1.0 5.0 206 211 + 1.03375 1 2 cbr 210 ------- 1 1.0 5.0 249 255 - 1.03375 1 2 cbr 210 ------- 1 1.0 5.0 249 255 r 1.03461 1 2 cbr 210 ------- 1 1.0 5.0 235 240 + 1.03461 2 3 cbr 210 ------- 1 1.0 5.0 235 240 - 1.03461 2 3 cbr 210 ------- 1 1.0 5.0 235 240 r 1.03547 2 3 cbr 210 ------- 1 1.0 5.0 221 226 + 1.03547 3 5 cbr 210 ------- 1 1.0 5.0 221 226 - 1.03547 3 5 cbr 210 ------- 1 1.0 5.0 221 226 r 1.03633 3 5 cbr 210 ------- 1 1.0 5.0 207 212 + 1.0375 1 2 cbr 210 ------- 1 1.0 5.0 250 256 - 1.0375 1 2 cbr 210 ------- 1 1.0 5.0 250 256 r 1.03836 1 2 cbr 210 ------- 1 1.0 5.0 236 241 + 1.03836 2 3 cbr 210 ------- 1 1.0 5.0 236 241 - 1.03836 2 3 cbr 210 ------- 1 1.0 5.0 236 241 r 1.03922 2 3 cbr 210 ------- 1 1.0 5.0 222 227 + 1.03922 3 5 cbr 210 ------- 1 1.0 5.0 222 227 - 1.03922 3 5 cbr 210 ------- 1 1.0 5.0 222 227 r 1.04008 3 5 cbr 210 ------- 1 1.0 5.0 208 213 + 1.04125 1 2 cbr 210 ------- 1 1.0 5.0 251 257 - 1.04125 1 2 cbr 210 ------- 1 1.0 5.0 251 257 r 1.04211 1 2 cbr 210 ------- 1 1.0 5.0 237 242 + 1.04211 2 3 cbr 210 ------- 1 1.0 5.0 237 242 - 1.04211 2 3 cbr 210 ------- 1 1.0 5.0 237 242 r 1.04297 2 3 cbr 210 ------- 1 1.0 5.0 223 228 + 1.04297 3 5 cbr 210 ------- 1 1.0 5.0 223 228 - 1.04297 3 5 cbr 210 ------- 1 1.0 5.0 223 228 r 1.04383 3 5 cbr 210 ------- 1 1.0 5.0 209 214 + 1.045 1 2 cbr 210 ------- 1 1.0 5.0 252 258 - 1.045 1 2 cbr 210 ------- 1 1.0 5.0 252 258 r 1.04586 1 2 cbr 210 ------- 1 1.0 5.0 238 243 + 1.04586 2 3 cbr 210 ------- 1 1.0 5.0 238 243 - 1.04586 2 3 cbr 210 ------- 1 1.0 5.0 238 243 r 1.04672 2 3 cbr 210 ------- 1 1.0 5.0 224 229 + 1.04672 3 5 cbr 210 ------- 1 1.0 5.0 224 229 - 1.04672 3 5 cbr 210 ------- 1 1.0 5.0 224 229 r 1.04758 3 5 cbr 210 ------- 1 1.0 5.0 210 215 + 1.04875 1 2 cbr 210 ------- 1 1.0 5.0 253 259 - 1.04875 1 2 cbr 210 ------- 1 1.0 5.0 253 259 r 1.04961 1 2 cbr 210 ------- 1 1.0 5.0 239 244 + 1.04961 2 3 cbr 210 ------- 1 1.0 5.0 239 244 - 1.04961 2 3 cbr 210 ------- 1 1.0 5.0 239 244 r 1.05047 2 3 cbr 210 ------- 1 1.0 5.0 225 230 + 1.05047 3 5 cbr 210 ------- 1 1.0 5.0 225 230 - 1.05047 3 5 cbr 210 ------- 1 1.0 5.0 225 230 r 1.05133 3 5 cbr 210 ------- 1 1.0 5.0 211 216 + 1.0525 1 2 cbr 210 ------- 1 1.0 5.0 254 260 - 1.0525 1 2 cbr 210 ------- 1 1.0 5.0 254 260 r 1.05336 1 2 cbr 210 ------- 1 1.0 5.0 240 245 + 1.05336 2 3 cbr 210 ------- 1 1.0 5.0 240 245 - 1.05336 2 3 cbr 210 ------- 1 1.0 5.0 240 245 r 1.05422 2 3 cbr 210 ------- 1 1.0 5.0 226 231 + 1.05422 3 5 cbr 210 ------- 1 1.0 5.0 226 231 - 1.05422 3 5 cbr 210 ------- 1 1.0 5.0 226 231 r 1.05508 3 5 cbr 210 ------- 1 1.0 5.0 212 217 r 1.05561 4 3 ack 40 ------- 0 4.0 0.0 2 247 + 1.05561 3 2 ack 40 ------- 0 4.0 0.0 2 247 - 1.05561 3 2 ack 40 ------- 0 4.0 0.0 2 247 + 1.05625 1 2 cbr 210 ------- 1 1.0 5.0 255 261 - 1.05625 1 2 cbr 210 ------- 1 1.0 5.0 255 261 r 1.05711 1 2 cbr 210 ------- 1 1.0 5.0 241 246 + 1.05711 2 3 cbr 210 ------- 1 1.0 5.0 241 246 - 1.05711 2 3 cbr 210 ------- 1 1.0 5.0 241 246 r 1.05797 2 3 cbr 210 ------- 1 1.0 5.0 227 232 + 1.05797 3 5 cbr 210 ------- 1 1.0 5.0 227 232 - 1.05797 3 5 cbr 210 ------- 1 1.0 5.0 227 232 r 1.05883 3 5 cbr 210 ------- 1 1.0 5.0 213 218 + 1.06 1 2 cbr 210 ------- 1 1.0 5.0 256 262 - 1.06 1 2 cbr 210 ------- 1 1.0 5.0 256 262 r 1.06086 1 2 cbr 210 ------- 1 1.0 5.0 242 248 + 1.06086 2 3 cbr 210 ------- 1 1.0 5.0 242 248 - 1.06086 2 3 cbr 210 ------- 1 1.0 5.0 242 248 r 1.06172 2 3 cbr 210 ------- 1 1.0 5.0 228 233 + 1.06172 3 5 cbr 210 ------- 1 1.0 5.0 228 233 - 1.06172 3 5 cbr 210 ------- 1 1.0 5.0 228 233 r 1.06258 3 5 cbr 210 ------- 1 1.0 5.0 214 219 + 1.06375 1 2 cbr 210 ------- 1 1.0 5.0 257 263 - 1.06375 1 2 cbr 210 ------- 1 1.0 5.0 257 263 r 1.06461 1 2 cbr 210 ------- 1 1.0 5.0 243 249 + 1.06461 2 3 cbr 210 ------- 1 1.0 5.0 243 249 - 1.06461 2 3 cbr 210 ------- 1 1.0 5.0 243 249 r 1.06547 2 3 cbr 210 ------- 1 1.0 5.0 229 234 + 1.06547 3 5 cbr 210 ------- 1 1.0 5.0 229 234 - 1.06547 3 5 cbr 210 ------- 1 1.0 5.0 229 234 r 1.06633 3 5 cbr 210 ------- 1 1.0 5.0 215 220 + 1.0675 1 2 cbr 210 ------- 1 1.0 5.0 258 264 - 1.0675 1 2 cbr 210 ------- 1 1.0 5.0 258 264 r 1.06836 1 2 cbr 210 ------- 1 1.0 5.0 244 250 + 1.06836 2 3 cbr 210 ------- 1 1.0 5.0 244 250 - 1.06836 2 3 cbr 210 ------- 1 1.0 5.0 244 250 r 1.06922 2 3 cbr 210 ------- 1 1.0 5.0 230 235 + 1.06922 3 5 cbr 210 ------- 1 1.0 5.0 230 235 - 1.06922 3 5 cbr 210 ------- 1 1.0 5.0 230 235 r 1.07008 3 5 cbr 210 ------- 1 1.0 5.0 216 221 + 1.07125 1 2 cbr 210 ------- 1 1.0 5.0 259 265 - 1.07125 1 2 cbr 210 ------- 1 1.0 5.0 259 265 r 1.07211 1 2 cbr 210 ------- 1 1.0 5.0 245 251 + 1.07211 2 3 cbr 210 ------- 1 1.0 5.0 245 251 - 1.07211 2 3 cbr 210 ------- 1 1.0 5.0 245 251 r 1.07297 2 3 cbr 210 ------- 1 1.0 5.0 231 236 + 1.07297 3 5 cbr 210 ------- 1 1.0 5.0 231 236 - 1.07297 3 5 cbr 210 ------- 1 1.0 5.0 231 236 r 1.07383 3 5 cbr 210 ------- 1 1.0 5.0 217 222 + 1.075 1 2 cbr 210 ------- 1 1.0 5.0 260 266 - 1.075 1 2 cbr 210 ------- 1 1.0 5.0 260 266 r 1.07586 1 2 cbr 210 ------- 1 1.0 5.0 246 252 + 1.07586 2 3 cbr 210 ------- 1 1.0 5.0 246 252 - 1.07586 2 3 cbr 210 ------- 1 1.0 5.0 246 252 r 1.07672 2 3 cbr 210 ------- 1 1.0 5.0 232 237 + 1.07672 3 5 cbr 210 ------- 1 1.0 5.0 232 237 - 1.07672 3 5 cbr 210 ------- 1 1.0 5.0 232 237 r 1.07758 3 5 cbr 210 ------- 1 1.0 5.0 218 223 + 1.07875 1 2 cbr 210 ------- 1 1.0 5.0 261 267 - 1.07875 1 2 cbr 210 ------- 1 1.0 5.0 261 267 r 1.07961 1 2 cbr 210 ------- 1 1.0 5.0 247 253 + 1.07961 2 3 cbr 210 ------- 1 1.0 5.0 247 253 - 1.07961 2 3 cbr 210 ------- 1 1.0 5.0 247 253 r 1.08047 2 3 cbr 210 ------- 1 1.0 5.0 233 238 + 1.08047 3 5 cbr 210 ------- 1 1.0 5.0 233 238 - 1.08047 3 5 cbr 210 ------- 1 1.0 5.0 233 238 r 1.08133 3 5 cbr 210 ------- 1 1.0 5.0 219 224 + 1.0825 1 2 cbr 210 ------- 1 1.0 5.0 262 268 - 1.0825 1 2 cbr 210 ------- 1 1.0 5.0 262 268 r 1.08336 1 2 cbr 210 ------- 1 1.0 5.0 248 254 + 1.08336 2 3 cbr 210 ------- 1 1.0 5.0 248 254 - 1.08336 2 3 cbr 210 ------- 1 1.0 5.0 248 254 r 1.08422 2 3 cbr 210 ------- 1 1.0 5.0 234 239 + 1.08422 3 5 cbr 210 ------- 1 1.0 5.0 234 239 - 1.08422 3 5 cbr 210 ------- 1 1.0 5.0 234 239 r 1.08508 3 5 cbr 210 ------- 1 1.0 5.0 220 225 + 1.08625 1 2 cbr 210 ------- 1 1.0 5.0 263 269 - 1.08625 1 2 cbr 210 ------- 1 1.0 5.0 263 269 r 1.08711 1 2 cbr 210 ------- 1 1.0 5.0 249 255 + 1.08711 2 3 cbr 210 ------- 1 1.0 5.0 249 255 - 1.08711 2 3 cbr 210 ------- 1 1.0 5.0 249 255 r 1.08797 2 3 cbr 210 ------- 1 1.0 5.0 235 240 + 1.08797 3 5 cbr 210 ------- 1 1.0 5.0 235 240 - 1.08797 3 5 cbr 210 ------- 1 1.0 5.0 235 240 r 1.08883 3 5 cbr 210 ------- 1 1.0 5.0 221 226 + 1.09 1 2 cbr 210 ------- 1 1.0 5.0 264 270 - 1.09 1 2 cbr 210 ------- 1 1.0 5.0 264 270 r 1.09086 1 2 cbr 210 ------- 1 1.0 5.0 250 256 + 1.09086 2 3 cbr 210 ------- 1 1.0 5.0 250 256 - 1.09086 2 3 cbr 210 ------- 1 1.0 5.0 250 256 r 1.09172 2 3 cbr 210 ------- 1 1.0 5.0 236 241 + 1.09172 3 5 cbr 210 ------- 1 1.0 5.0 236 241 - 1.09172 3 5 cbr 210 ------- 1 1.0 5.0 236 241 r 1.09258 3 5 cbr 210 ------- 1 1.0 5.0 222 227 + 1.09375 1 2 cbr 210 ------- 1 1.0 5.0 265 271 - 1.09375 1 2 cbr 210 ------- 1 1.0 5.0 265 271 r 1.09461 1 2 cbr 210 ------- 1 1.0 5.0 251 257 + 1.09461 2 3 cbr 210 ------- 1 1.0 5.0 251 257 - 1.09461 2 3 cbr 210 ------- 1 1.0 5.0 251 257 r 1.09547 2 3 cbr 210 ------- 1 1.0 5.0 237 242 + 1.09547 3 5 cbr 210 ------- 1 1.0 5.0 237 242 - 1.09547 3 5 cbr 210 ------- 1 1.0 5.0 237 242 r 1.09633 3 5 cbr 210 ------- 1 1.0 5.0 223 228 + 1.0975 1 2 cbr 210 ------- 1 1.0 5.0 266 272 - 1.0975 1 2 cbr 210 ------- 1 1.0 5.0 266 272 r 1.09836 1 2 cbr 210 ------- 1 1.0 5.0 252 258 + 1.09836 2 3 cbr 210 ------- 1 1.0 5.0 252 258 - 1.09836 2 3 cbr 210 ------- 1 1.0 5.0 252 258 r 1.09922 2 3 cbr 210 ------- 1 1.0 5.0 238 243 + 1.09922 3 5 cbr 210 ------- 1 1.0 5.0 238 243 - 1.09922 3 5 cbr 210 ------- 1 1.0 5.0 238 243 r 1.10008 3 5 cbr 210 ------- 1 1.0 5.0 224 229 + 1.10125 1 2 cbr 210 ------- 1 1.0 5.0 267 273 - 1.10125 1 2 cbr 210 ------- 1 1.0 5.0 267 273 r 1.10211 1 2 cbr 210 ------- 1 1.0 5.0 253 259 + 1.10211 2 3 cbr 210 ------- 1 1.0 5.0 253 259 - 1.10211 2 3 cbr 210 ------- 1 1.0 5.0 253 259 r 1.10297 2 3 cbr 210 ------- 1 1.0 5.0 239 244 + 1.10297 3 5 cbr 210 ------- 1 1.0 5.0 239 244 - 1.10297 3 5 cbr 210 ------- 1 1.0 5.0 239 244 r 1.10383 3 5 cbr 210 ------- 1 1.0 5.0 225 230 + 1.105 1 2 cbr 210 ------- 1 1.0 5.0 268 274 - 1.105 1 2 cbr 210 ------- 1 1.0 5.0 268 274 r 1.10586 1 2 cbr 210 ------- 1 1.0 5.0 254 260 + 1.10586 2 3 cbr 210 ------- 1 1.0 5.0 254 260 - 1.10586 2 3 cbr 210 ------- 1 1.0 5.0 254 260 r 1.10625 3 2 ack 40 ------- 0 4.0 0.0 2 247 + 1.10625 2 0 ack 40 ------- 0 4.0 0.0 2 247 - 1.10625 2 0 ack 40 ------- 0 4.0 0.0 2 247 r 1.10672 2 3 cbr 210 ------- 1 1.0 5.0 240 245 + 1.10672 3 5 cbr 210 ------- 1 1.0 5.0 240 245 - 1.10672 3 5 cbr 210 ------- 1 1.0 5.0 240 245 r 1.10758 3 5 cbr 210 ------- 1 1.0 5.0 226 231 + 1.10875 1 2 cbr 210 ------- 1 1.0 5.0 269 275 - 1.10875 1 2 cbr 210 ------- 1 1.0 5.0 269 275 r 1.10961 1 2 cbr 210 ------- 1 1.0 5.0 255 261 + 1.10961 2 3 cbr 210 ------- 1 1.0 5.0 255 261 - 1.10961 2 3 cbr 210 ------- 1 1.0 5.0 255 261 r 1.11047 2 3 cbr 210 ------- 1 1.0 5.0 241 246 + 1.11047 3 5 cbr 210 ------- 1 1.0 5.0 241 246 - 1.11047 3 5 cbr 210 ------- 1 1.0 5.0 241 246 r 1.11133 3 5 cbr 210 ------- 1 1.0 5.0 227 232 + 1.1125 1 2 cbr 210 ------- 1 1.0 5.0 270 276 - 1.1125 1 2 cbr 210 ------- 1 1.0 5.0 270 276 r 1.11336 1 2 cbr 210 ------- 1 1.0 5.0 256 262 + 1.11336 2 3 cbr 210 ------- 1 1.0 5.0 256 262 - 1.11336 2 3 cbr 210 ------- 1 1.0 5.0 256 262 r 1.11422 2 3 cbr 210 ------- 1 1.0 5.0 242 248 + 1.11422 3 5 cbr 210 ------- 1 1.0 5.0 242 248 - 1.11422 3 5 cbr 210 ------- 1 1.0 5.0 242 248 r 1.11508 3 5 cbr 210 ------- 1 1.0 5.0 228 233 + 1.11625 1 2 cbr 210 ------- 1 1.0 5.0 271 277 - 1.11625 1 2 cbr 210 ------- 1 1.0 5.0 271 277 r 1.11711 1 2 cbr 210 ------- 1 1.0 5.0 257 263 + 1.11711 2 3 cbr 210 ------- 1 1.0 5.0 257 263 - 1.11711 2 3 cbr 210 ------- 1 1.0 5.0 257 263 r 1.11797 2 3 cbr 210 ------- 1 1.0 5.0 243 249 + 1.11797 3 5 cbr 210 ------- 1 1.0 5.0 243 249 - 1.11797 3 5 cbr 210 ------- 1 1.0 5.0 243 249 r 1.11883 3 5 cbr 210 ------- 1 1.0 5.0 229 234 + 1.12 1 2 cbr 210 ------- 1 1.0 5.0 272 278 - 1.12 1 2 cbr 210 ------- 1 1.0 5.0 272 278 r 1.12086 1 2 cbr 210 ------- 1 1.0 5.0 258 264 + 1.12086 2 3 cbr 210 ------- 1 1.0 5.0 258 264 - 1.12086 2 3 cbr 210 ------- 1 1.0 5.0 258 264 r 1.12172 2 3 cbr 210 ------- 1 1.0 5.0 244 250 + 1.12172 3 5 cbr 210 ------- 1 1.0 5.0 244 250 - 1.12172 3 5 cbr 210 ------- 1 1.0 5.0 244 250 r 1.12258 3 5 cbr 210 ------- 1 1.0 5.0 230 235 + 1.12375 1 2 cbr 210 ------- 1 1.0 5.0 273 279 - 1.12375 1 2 cbr 210 ------- 1 1.0 5.0 273 279 r 1.12461 1 2 cbr 210 ------- 1 1.0 5.0 259 265 + 1.12461 2 3 cbr 210 ------- 1 1.0 5.0 259 265 - 1.12461 2 3 cbr 210 ------- 1 1.0 5.0 259 265 r 1.12547 2 3 cbr 210 ------- 1 1.0 5.0 245 251 + 1.12547 3 5 cbr 210 ------- 1 1.0 5.0 245 251 - 1.12547 3 5 cbr 210 ------- 1 1.0 5.0 245 251 r 1.12633 3 5 cbr 210 ------- 1 1.0 5.0 231 236 + 1.1275 1 2 cbr 210 ------- 1 1.0 5.0 274 280 - 1.1275 1 2 cbr 210 ------- 1 1.0 5.0 274 280 r 1.12836 1 2 cbr 210 ------- 1 1.0 5.0 260 266 + 1.12836 2 3 cbr 210 ------- 1 1.0 5.0 260 266 - 1.12836 2 3 cbr 210 ------- 1 1.0 5.0 260 266 r 1.12922 2 3 cbr 210 ------- 1 1.0 5.0 246 252 + 1.12922 3 5 cbr 210 ------- 1 1.0 5.0 246 252 - 1.12922 3 5 cbr 210 ------- 1 1.0 5.0 246 252 r 1.13008 3 5 cbr 210 ------- 1 1.0 5.0 232 237 + 1.13125 1 2 cbr 210 ------- 1 1.0 5.0 275 281 - 1.13125 1 2 cbr 210 ------- 1 1.0 5.0 275 281 r 1.13211 1 2 cbr 210 ------- 1 1.0 5.0 261 267 + 1.13211 2 3 cbr 210 ------- 1 1.0 5.0 261 267 - 1.13211 2 3 cbr 210 ------- 1 1.0 5.0 261 267 r 1.13297 2 3 cbr 210 ------- 1 1.0 5.0 247 253 + 1.13297 3 5 cbr 210 ------- 1 1.0 5.0 247 253 - 1.13297 3 5 cbr 210 ------- 1 1.0 5.0 247 253 r 1.13383 3 5 cbr 210 ------- 1 1.0 5.0 233 238 + 1.135 1 2 cbr 210 ------- 1 1.0 5.0 276 282 - 1.135 1 2 cbr 210 ------- 1 1.0 5.0 276 282 r 1.13586 1 2 cbr 210 ------- 1 1.0 5.0 262 268 + 1.13586 2 3 cbr 210 ------- 1 1.0 5.0 262 268 - 1.13586 2 3 cbr 210 ------- 1 1.0 5.0 262 268 r 1.13672 2 3 cbr 210 ------- 1 1.0 5.0 248 254 + 1.13672 3 5 cbr 210 ------- 1 1.0 5.0 248 254 - 1.13672 3 5 cbr 210 ------- 1 1.0 5.0 248 254 r 1.13758 3 5 cbr 210 ------- 1 1.0 5.0 234 239 + 1.13875 1 2 cbr 210 ------- 1 1.0 5.0 277 283 - 1.13875 1 2 cbr 210 ------- 1 1.0 5.0 277 283 r 1.13961 1 2 cbr 210 ------- 1 1.0 5.0 263 269 + 1.13961 2 3 cbr 210 ------- 1 1.0 5.0 263 269 - 1.13961 2 3 cbr 210 ------- 1 1.0 5.0 263 269 r 1.14047 2 3 cbr 210 ------- 1 1.0 5.0 249 255 + 1.14047 3 5 cbr 210 ------- 1 1.0 5.0 249 255 - 1.14047 3 5 cbr 210 ------- 1 1.0 5.0 249 255 r 1.14133 3 5 cbr 210 ------- 1 1.0 5.0 235 240 + 1.1425 1 2 cbr 210 ------- 1 1.0 5.0 278 284 - 1.1425 1 2 cbr 210 ------- 1 1.0 5.0 278 284 r 1.14336 1 2 cbr 210 ------- 1 1.0 5.0 264 270 + 1.14336 2 3 cbr 210 ------- 1 1.0 5.0 264 270 - 1.14336 2 3 cbr 210 ------- 1 1.0 5.0 264 270 r 1.14422 2 3 cbr 210 ------- 1 1.0 5.0 250 256 + 1.14422 3 5 cbr 210 ------- 1 1.0 5.0 250 256 - 1.14422 3 5 cbr 210 ------- 1 1.0 5.0 250 256 r 1.14508 3 5 cbr 210 ------- 1 1.0 5.0 236 241 + 1.14625 1 2 cbr 210 ------- 1 1.0 5.0 279 285 - 1.14625 1 2 cbr 210 ------- 1 1.0 5.0 279 285 r 1.14711 1 2 cbr 210 ------- 1 1.0 5.0 265 271 + 1.14711 2 3 cbr 210 ------- 1 1.0 5.0 265 271 - 1.14711 2 3 cbr 210 ------- 1 1.0 5.0 265 271 r 1.14797 2 3 cbr 210 ------- 1 1.0 5.0 251 257 + 1.14797 3 5 cbr 210 ------- 1 1.0 5.0 251 257 - 1.14797 3 5 cbr 210 ------- 1 1.0 5.0 251 257 r 1.14883 3 5 cbr 210 ------- 1 1.0 5.0 237 242 + 1.15 1 2 cbr 210 ------- 1 1.0 5.0 280 286 - 1.15 1 2 cbr 210 ------- 1 1.0 5.0 280 286 r 1.15086 1 2 cbr 210 ------- 1 1.0 5.0 266 272 + 1.15086 2 3 cbr 210 ------- 1 1.0 5.0 266 272 - 1.15086 2 3 cbr 210 ------- 1 1.0 5.0 266 272 r 1.15172 2 3 cbr 210 ------- 1 1.0 5.0 252 258 + 1.15172 3 5 cbr 210 ------- 1 1.0 5.0 252 258 - 1.15172 3 5 cbr 210 ------- 1 1.0 5.0 252 258 r 1.15258 3 5 cbr 210 ------- 1 1.0 5.0 238 243 + 1.15375 1 2 cbr 210 ------- 1 1.0 5.0 281 287 - 1.15375 1 2 cbr 210 ------- 1 1.0 5.0 281 287 r 1.15461 1 2 cbr 210 ------- 1 1.0 5.0 267 273 + 1.15461 2 3 cbr 210 ------- 1 1.0 5.0 267 273 - 1.15461 2 3 cbr 210 ------- 1 1.0 5.0 267 273 r 1.15547 2 3 cbr 210 ------- 1 1.0 5.0 253 259 + 1.15547 3 5 cbr 210 ------- 1 1.0 5.0 253 259 - 1.15547 3 5 cbr 210 ------- 1 1.0 5.0 253 259 r 1.15633 3 5 cbr 210 ------- 1 1.0 5.0 239 244 r 1.15689 2 0 ack 40 ------- 0 4.0 0.0 2 247 + 1.15689 0 2 tcp 1000 ------- 0 0.0 4.0 3 288 - 1.15689 0 2 tcp 1000 ------- 0 0.0 4.0 3 288 + 1.1575 1 2 cbr 210 ------- 1 1.0 5.0 282 289 - 1.1575 1 2 cbr 210 ------- 1 1.0 5.0 282 289 r 1.15836 1 2 cbr 210 ------- 1 1.0 5.0 268 274 + 1.15836 2 3 cbr 210 ------- 1 1.0 5.0 268 274 - 1.15836 2 3 cbr 210 ------- 1 1.0 5.0 268 274 r 1.15922 2 3 cbr 210 ------- 1 1.0 5.0 254 260 + 1.15922 3 5 cbr 210 ------- 1 1.0 5.0 254 260 - 1.15922 3 5 cbr 210 ------- 1 1.0 5.0 254 260 r 1.16008 3 5 cbr 210 ------- 1 1.0 5.0 240 245 + 1.16125 1 2 cbr 210 ------- 1 1.0 5.0 283 290 - 1.16125 1 2 cbr 210 ------- 1 1.0 5.0 283 290 r 1.16211 1 2 cbr 210 ------- 1 1.0 5.0 269 275 + 1.16211 2 3 cbr 210 ------- 1 1.0 5.0 269 275 - 1.16211 2 3 cbr 210 ------- 1 1.0 5.0 269 275 r 1.16297 2 3 cbr 210 ------- 1 1.0 5.0 255 261 + 1.16297 3 5 cbr 210 ------- 1 1.0 5.0 255 261 - 1.16297 3 5 cbr 210 ------- 1 1.0 5.0 255 261 r 1.16383 3 5 cbr 210 ------- 1 1.0 5.0 241 246 + 1.165 1 2 cbr 210 ------- 1 1.0 5.0 284 291 - 1.165 1 2 cbr 210 ------- 1 1.0 5.0 284 291 r 1.16586 1 2 cbr 210 ------- 1 1.0 5.0 270 276 + 1.16586 2 3 cbr 210 ------- 1 1.0 5.0 270 276 - 1.16586 2 3 cbr 210 ------- 1 1.0 5.0 270 276 r 1.16672 2 3 cbr 210 ------- 1 1.0 5.0 256 262 + 1.16672 3 5 cbr 210 ------- 1 1.0 5.0 256 262 - 1.16672 3 5 cbr 210 ------- 1 1.0 5.0 256 262 r 1.16758 3 5 cbr 210 ------- 1 1.0 5.0 242 248 + 1.16875 1 2 cbr 210 ------- 1 1.0 5.0 285 292 - 1.16875 1 2 cbr 210 ------- 1 1.0 5.0 285 292 r 1.16961 1 2 cbr 210 ------- 1 1.0 5.0 271 277 + 1.16961 2 3 cbr 210 ------- 1 1.0 5.0 271 277 - 1.16961 2 3 cbr 210 ------- 1 1.0 5.0 271 277 r 1.17047 2 3 cbr 210 ------- 1 1.0 5.0 257 263 + 1.17047 3 5 cbr 210 ------- 1 1.0 5.0 257 263 - 1.17047 3 5 cbr 210 ------- 1 1.0 5.0 257 263 r 1.17133 3 5 cbr 210 ------- 1 1.0 5.0 243 249 + 1.1725 1 2 cbr 210 ------- 1 1.0 5.0 286 293 - 1.1725 1 2 cbr 210 ------- 1 1.0 5.0 286 293 r 1.17336 1 2 cbr 210 ------- 1 1.0 5.0 272 278 + 1.17336 2 3 cbr 210 ------- 1 1.0 5.0 272 278 - 1.17336 2 3 cbr 210 ------- 1 1.0 5.0 272 278 r 1.17422 2 3 cbr 210 ------- 1 1.0 5.0 258 264 + 1.17422 3 5 cbr 210 ------- 1 1.0 5.0 258 264 - 1.17422 3 5 cbr 210 ------- 1 1.0 5.0 258 264 r 1.17508 3 5 cbr 210 ------- 1 1.0 5.0 244 250 + 1.17625 1 2 cbr 210 ------- 1 1.0 5.0 287 294 - 1.17625 1 2 cbr 210 ------- 1 1.0 5.0 287 294 r 1.17711 1 2 cbr 210 ------- 1 1.0 5.0 273 279 + 1.17711 2 3 cbr 210 ------- 1 1.0 5.0 273 279 - 1.17711 2 3 cbr 210 ------- 1 1.0 5.0 273 279 r 1.17797 2 3 cbr 210 ------- 1 1.0 5.0 259 265 + 1.17797 3 5 cbr 210 ------- 1 1.0 5.0 259 265 - 1.17797 3 5 cbr 210 ------- 1 1.0 5.0 259 265 r 1.17883 3 5 cbr 210 ------- 1 1.0 5.0 245 251 + 1.18 1 2 cbr 210 ------- 1 1.0 5.0 288 295 - 1.18 1 2 cbr 210 ------- 1 1.0 5.0 288 295 r 1.18086 1 2 cbr 210 ------- 1 1.0 5.0 274 280 + 1.18086 2 3 cbr 210 ------- 1 1.0 5.0 274 280 - 1.18086 2 3 cbr 210 ------- 1 1.0 5.0 274 280 r 1.18172 2 3 cbr 210 ------- 1 1.0 5.0 260 266 + 1.18172 3 5 cbr 210 ------- 1 1.0 5.0 260 266 - 1.18172 3 5 cbr 210 ------- 1 1.0 5.0 260 266 r 1.18258 3 5 cbr 210 ------- 1 1.0 5.0 246 252 + 1.18375 1 2 cbr 210 ------- 1 1.0 5.0 289 296 - 1.18375 1 2 cbr 210 ------- 1 1.0 5.0 289 296 r 1.18461 1 2 cbr 210 ------- 1 1.0 5.0 275 281 + 1.18461 2 3 cbr 210 ------- 1 1.0 5.0 275 281 - 1.18461 2 3 cbr 210 ------- 1 1.0 5.0 275 281 r 1.18547 2 3 cbr 210 ------- 1 1.0 5.0 261 267 + 1.18547 3 5 cbr 210 ------- 1 1.0 5.0 261 267 - 1.18547 3 5 cbr 210 ------- 1 1.0 5.0 261 267 r 1.18633 3 5 cbr 210 ------- 1 1.0 5.0 247 253 + 1.1875 1 2 cbr 210 ------- 1 1.0 5.0 290 297 - 1.1875 1 2 cbr 210 ------- 1 1.0 5.0 290 297 r 1.18836 1 2 cbr 210 ------- 1 1.0 5.0 276 282 + 1.18836 2 3 cbr 210 ------- 1 1.0 5.0 276 282 - 1.18836 2 3 cbr 210 ------- 1 1.0 5.0 276 282 r 1.18922 2 3 cbr 210 ------- 1 1.0 5.0 262 268 + 1.18922 3 5 cbr 210 ------- 1 1.0 5.0 262 268 - 1.18922 3 5 cbr 210 ------- 1 1.0 5.0 262 268 r 1.19008 3 5 cbr 210 ------- 1 1.0 5.0 248 254 + 1.19125 1 2 cbr 210 ------- 1 1.0 5.0 291 298 - 1.19125 1 2 cbr 210 ------- 1 1.0 5.0 291 298 r 1.19211 1 2 cbr 210 ------- 1 1.0 5.0 277 283 + 1.19211 2 3 cbr 210 ------- 1 1.0 5.0 277 283 - 1.19211 2 3 cbr 210 ------- 1 1.0 5.0 277 283 r 1.19297 2 3 cbr 210 ------- 1 1.0 5.0 263 269 + 1.19297 3 5 cbr 210 ------- 1 1.0 5.0 263 269 - 1.19297 3 5 cbr 210 ------- 1 1.0 5.0 263 269 r 1.19383 3 5 cbr 210 ------- 1 1.0 5.0 249 255 + 1.195 1 2 cbr 210 ------- 1 1.0 5.0 292 299 - 1.195 1 2 cbr 210 ------- 1 1.0 5.0 292 299 r 1.19586 1 2 cbr 210 ------- 1 1.0 5.0 278 284 + 1.19586 2 3 cbr 210 ------- 1 1.0 5.0 278 284 - 1.19586 2 3 cbr 210 ------- 1 1.0 5.0 278 284 r 1.19672 2 3 cbr 210 ------- 1 1.0 5.0 264 270 + 1.19672 3 5 cbr 210 ------- 1 1.0 5.0 264 270 - 1.19672 3 5 cbr 210 ------- 1 1.0 5.0 264 270 r 1.19758 3 5 cbr 210 ------- 1 1.0 5.0 250 256 + 1.19875 1 2 cbr 210 ------- 1 1.0 5.0 293 300 - 1.19875 1 2 cbr 210 ------- 1 1.0 5.0 293 300 r 1.19961 1 2 cbr 210 ------- 1 1.0 5.0 279 285 + 1.19961 2 3 cbr 210 ------- 1 1.0 5.0 279 285 - 1.19961 2 3 cbr 210 ------- 1 1.0 5.0 279 285 r 1.20047 2 3 cbr 210 ------- 1 1.0 5.0 265 271 + 1.20047 3 5 cbr 210 ------- 1 1.0 5.0 265 271 - 1.20047 3 5 cbr 210 ------- 1 1.0 5.0 265 271 r 1.20133 3 5 cbr 210 ------- 1 1.0 5.0 251 257 + 1.2025 1 2 cbr 210 ------- 1 1.0 5.0 294 301 - 1.2025 1 2 cbr 210 ------- 1 1.0 5.0 294 301 r 1.20336 1 2 cbr 210 ------- 1 1.0 5.0 280 286 + 1.20336 2 3 cbr 210 ------- 1 1.0 5.0 280 286 - 1.20336 2 3 cbr 210 ------- 1 1.0 5.0 280 286 r 1.20422 2 3 cbr 210 ------- 1 1.0 5.0 266 272 + 1.20422 3 5 cbr 210 ------- 1 1.0 5.0 266 272 - 1.20422 3 5 cbr 210 ------- 1 1.0 5.0 266 272 r 1.20508 3 5 cbr 210 ------- 1 1.0 5.0 252 258 + 1.20625 1 2 cbr 210 ------- 1 1.0 5.0 295 302 - 1.20625 1 2 cbr 210 ------- 1 1.0 5.0 295 302 r 1.20711 1 2 cbr 210 ------- 1 1.0 5.0 281 287 + 1.20711 2 3 cbr 210 ------- 1 1.0 5.0 281 287 - 1.20711 2 3 cbr 210 ------- 1 1.0 5.0 281 287 r 1.20797 2 3 cbr 210 ------- 1 1.0 5.0 267 273 + 1.20797 3 5 cbr 210 ------- 1 1.0 5.0 267 273 - 1.20797 3 5 cbr 210 ------- 1 1.0 5.0 267 273 r 1.20883 3 5 cbr 210 ------- 1 1.0 5.0 253 259 + 1.21 1 2 cbr 210 ------- 1 1.0 5.0 296 303 - 1.21 1 2 cbr 210 ------- 1 1.0 5.0 296 303 r 1.21086 1 2 cbr 210 ------- 1 1.0 5.0 282 289 + 1.21086 2 3 cbr 210 ------- 1 1.0 5.0 282 289 - 1.21086 2 3 cbr 210 ------- 1 1.0 5.0 282 289 r 1.21172 2 3 cbr 210 ------- 1 1.0 5.0 268 274 + 1.21172 3 5 cbr 210 ------- 1 1.0 5.0 268 274 - 1.21172 3 5 cbr 210 ------- 1 1.0 5.0 268 274 r 1.21258 3 5 cbr 210 ------- 1 1.0 5.0 254 260 + 1.21375 1 2 cbr 210 ------- 1 1.0 5.0 297 304 - 1.21375 1 2 cbr 210 ------- 1 1.0 5.0 297 304 r 1.21461 1 2 cbr 210 ------- 1 1.0 5.0 283 290 + 1.21461 2 3 cbr 210 ------- 1 1.0 5.0 283 290 - 1.21461 2 3 cbr 210 ------- 1 1.0 5.0 283 290 r 1.21547 2 3 cbr 210 ------- 1 1.0 5.0 269 275 + 1.21547 3 5 cbr 210 ------- 1 1.0 5.0 269 275 - 1.21547 3 5 cbr 210 ------- 1 1.0 5.0 269 275 r 1.21633 3 5 cbr 210 ------- 1 1.0 5.0 255 261 + 1.2175 1 2 cbr 210 ------- 1 1.0 5.0 298 305 - 1.2175 1 2 cbr 210 ------- 1 1.0 5.0 298 305 r 1.21836 1 2 cbr 210 ------- 1 1.0 5.0 284 291 + 1.21836 2 3 cbr 210 ------- 1 1.0 5.0 284 291 - 1.21836 2 3 cbr 210 ------- 1 1.0 5.0 284 291 r 1.21922 2 3 cbr 210 ------- 1 1.0 5.0 270 276 + 1.21922 3 5 cbr 210 ------- 1 1.0 5.0 270 276 - 1.21922 3 5 cbr 210 ------- 1 1.0 5.0 270 276 r 1.22008 3 5 cbr 210 ------- 1 1.0 5.0 256 262 + 1.22125 1 2 cbr 210 ------- 1 1.0 5.0 299 306 - 1.22125 1 2 cbr 210 ------- 1 1.0 5.0 299 306 r 1.22211 1 2 cbr 210 ------- 1 1.0 5.0 285 292 + 1.22211 2 3 cbr 210 ------- 1 1.0 5.0 285 292 - 1.22211 2 3 cbr 210 ------- 1 1.0 5.0 285 292 r 1.22289 0 2 tcp 1000 ------- 0 0.0 4.0 3 288 + 1.22289 2 3 tcp 1000 ------- 0 0.0 4.0 3 288 r 1.22297 2 3 cbr 210 ------- 1 1.0 5.0 271 277 + 1.22297 3 5 cbr 210 ------- 1 1.0 5.0 271 277 - 1.22297 3 5 cbr 210 ------- 1 1.0 5.0 271 277 r 1.22383 3 5 cbr 210 ------- 1 1.0 5.0 257 263 + 1.225 1 2 cbr 210 ------- 1 1.0 5.0 300 307 - 1.225 1 2 cbr 210 ------- 1 1.0 5.0 300 307 - 1.22547 2 3 tcp 1000 ------- 0 0.0 4.0 3 288 r 1.22586 1 2 cbr 210 ------- 1 1.0 5.0 286 293 + 1.22586 2 3 cbr 210 ------- 1 1.0 5.0 286 293 r 1.22672 2 3 cbr 210 ------- 1 1.0 5.0 272 278 + 1.22672 3 5 cbr 210 ------- 1 1.0 5.0 272 278 - 1.22672 3 5 cbr 210 ------- 1 1.0 5.0 272 278 r 1.22758 3 5 cbr 210 ------- 1 1.0 5.0 258 264 + 1.22875 1 2 cbr 210 ------- 1 1.0 5.0 301 308 - 1.22875 1 2 cbr 210 ------- 1 1.0 5.0 301 308 r 1.22961 1 2 cbr 210 ------- 1 1.0 5.0 287 294 + 1.22961 2 3 cbr 210 ------- 1 1.0 5.0 287 294 d 1.22961 2 3 cbr 210 ------- 1 1.0 5.0 287 294 r 1.23047 2 3 cbr 210 ------- 1 1.0 5.0 273 279 + 1.23047 3 5 cbr 210 ------- 1 1.0 5.0 273 279 - 1.23047 3 5 cbr 210 ------- 1 1.0 5.0 273 279 r 1.23133 3 5 cbr 210 ------- 1 1.0 5.0 259 265 + 1.2325 1 2 cbr 210 ------- 1 1.0 5.0 302 309 - 1.2325 1 2 cbr 210 ------- 1 1.0 5.0 302 309 r 1.23336 1 2 cbr 210 ------- 1 1.0 5.0 288 295 + 1.23336 2 3 cbr 210 ------- 1 1.0 5.0 288 295 d 1.23336 2 3 cbr 210 ------- 1 1.0 5.0 288 295 r 1.23422 2 3 cbr 210 ------- 1 1.0 5.0 274 280 + 1.23422 3 5 cbr 210 ------- 1 1.0 5.0 274 280 - 1.23422 3 5 cbr 210 ------- 1 1.0 5.0 274 280 r 1.23508 3 5 cbr 210 ------- 1 1.0 5.0 260 266 + 1.23625 1 2 cbr 210 ------- 1 1.0 5.0 303 310 - 1.23625 1 2 cbr 210 ------- 1 1.0 5.0 303 310 r 1.23711 1 2 cbr 210 ------- 1 1.0 5.0 289 296 + 1.23711 2 3 cbr 210 ------- 1 1.0 5.0 289 296 d 1.23711 2 3 cbr 210 ------- 1 1.0 5.0 289 296 r 1.23797 2 3 cbr 210 ------- 1 1.0 5.0 275 281 + 1.23797 3 5 cbr 210 ------- 1 1.0 5.0 275 281 - 1.23797 3 5 cbr 210 ------- 1 1.0 5.0 275 281 r 1.23883 3 5 cbr 210 ------- 1 1.0 5.0 261 267 + 1.24 1 2 cbr 210 ------- 1 1.0 5.0 304 311 - 1.24 1 2 cbr 210 ------- 1 1.0 5.0 304 311 r 1.24086 1 2 cbr 210 ------- 1 1.0 5.0 290 297 + 1.24086 2 3 cbr 210 ------- 1 1.0 5.0 290 297 d 1.24086 2 3 cbr 210 ------- 1 1.0 5.0 290 297 - 1.24147 2 3 cbr 210 ------- 1 1.0 5.0 286 293 r 1.24172 2 3 cbr 210 ------- 1 1.0 5.0 276 282 + 1.24172 3 5 cbr 210 ------- 1 1.0 5.0 276 282 - 1.24172 3 5 cbr 210 ------- 1 1.0 5.0 276 282 r 1.24258 3 5 cbr 210 ------- 1 1.0 5.0 262 268 + 1.24375 1 2 cbr 210 ------- 1 1.0 5.0 305 312 - 1.24375 1 2 cbr 210 ------- 1 1.0 5.0 305 312 r 1.24461 1 2 cbr 210 ------- 1 1.0 5.0 291 298 + 1.24461 2 3 cbr 210 ------- 1 1.0 5.0 291 298 - 1.24483 2 3 cbr 210 ------- 1 1.0 5.0 291 298 r 1.24547 2 3 cbr 210 ------- 1 1.0 5.0 277 283 + 1.24547 3 5 cbr 210 ------- 1 1.0 5.0 277 283 - 1.24547 3 5 cbr 210 ------- 1 1.0 5.0 277 283 r 1.24633 3 5 cbr 210 ------- 1 1.0 5.0 263 269 + 1.2475 1 2 cbr 210 ------- 1 1.0 5.0 306 313 - 1.2475 1 2 cbr 210 ------- 1 1.0 5.0 306 313 r 1.24836 1 2 cbr 210 ------- 1 1.0 5.0 292 299 + 1.24836 2 3 cbr 210 ------- 1 1.0 5.0 292 299 - 1.24836 2 3 cbr 210 ------- 1 1.0 5.0 292 299 r 1.24922 2 3 cbr 210 ------- 1 1.0 5.0 278 284 + 1.24922 3 5 cbr 210 ------- 1 1.0 5.0 278 284 - 1.24922 3 5 cbr 210 ------- 1 1.0 5.0 278 284 r 1.25008 3 5 cbr 210 ------- 1 1.0 5.0 264 270 + 1.25125 1 2 cbr 210 ------- 1 1.0 5.0 307 314 - 1.25125 1 2 cbr 210 ------- 1 1.0 5.0 307 314 r 1.25211 1 2 cbr 210 ------- 1 1.0 5.0 293 300 + 1.25211 2 3 cbr 210 ------- 1 1.0 5.0 293 300 - 1.25211 2 3 cbr 210 ------- 1 1.0 5.0 293 300 r 1.25297 2 3 cbr 210 ------- 1 1.0 5.0 279 285 + 1.25297 3 5 cbr 210 ------- 1 1.0 5.0 279 285 - 1.25297 3 5 cbr 210 ------- 1 1.0 5.0 279 285 r 1.25383 3 5 cbr 210 ------- 1 1.0 5.0 265 271 + 1.255 1 2 cbr 210 ------- 1 1.0 5.0 308 315 - 1.255 1 2 cbr 210 ------- 1 1.0 5.0 308 315 r 1.25586 1 2 cbr 210 ------- 1 1.0 5.0 294 301 + 1.25586 2 3 cbr 210 ------- 1 1.0 5.0 294 301 - 1.25586 2 3 cbr 210 ------- 1 1.0 5.0 294 301 r 1.25672 2 3 cbr 210 ------- 1 1.0 5.0 280 286 + 1.25672 3 5 cbr 210 ------- 1 1.0 5.0 280 286 - 1.25672 3 5 cbr 210 ------- 1 1.0 5.0 280 286 r 1.25758 3 5 cbr 210 ------- 1 1.0 5.0 266 272 + 1.25875 1 2 cbr 210 ------- 1 1.0 5.0 309 316 - 1.25875 1 2 cbr 210 ------- 1 1.0 5.0 309 316 r 1.25961 1 2 cbr 210 ------- 1 1.0 5.0 295 302 + 1.25961 2 3 cbr 210 ------- 1 1.0 5.0 295 302 - 1.25961 2 3 cbr 210 ------- 1 1.0 5.0 295 302 r 1.26047 2 3 cbr 210 ------- 1 1.0 5.0 281 287 + 1.26047 3 5 cbr 210 ------- 1 1.0 5.0 281 287 - 1.26047 3 5 cbr 210 ------- 1 1.0 5.0 281 287 r 1.26133 3 5 cbr 210 ------- 1 1.0 5.0 267 273 + 1.2625 1 2 cbr 210 ------- 1 1.0 5.0 310 317 - 1.2625 1 2 cbr 210 ------- 1 1.0 5.0 310 317 r 1.26336 1 2 cbr 210 ------- 1 1.0 5.0 296 303 + 1.26336 2 3 cbr 210 ------- 1 1.0 5.0 296 303 - 1.26336 2 3 cbr 210 ------- 1 1.0 5.0 296 303 r 1.26422 2 3 cbr 210 ------- 1 1.0 5.0 282 289 + 1.26422 3 5 cbr 210 ------- 1 1.0 5.0 282 289 - 1.26422 3 5 cbr 210 ------- 1 1.0 5.0 282 289 r 1.26508 3 5 cbr 210 ------- 1 1.0 5.0 268 274 + 1.26625 1 2 cbr 210 ------- 1 1.0 5.0 311 318 - 1.26625 1 2 cbr 210 ------- 1 1.0 5.0 311 318 r 1.26711 1 2 cbr 210 ------- 1 1.0 5.0 297 304 + 1.26711 2 3 cbr 210 ------- 1 1.0 5.0 297 304 - 1.26711 2 3 cbr 210 ------- 1 1.0 5.0 297 304 r 1.26797 2 3 cbr 210 ------- 1 1.0 5.0 283 290 + 1.26797 3 5 cbr 210 ------- 1 1.0 5.0 283 290 - 1.26797 3 5 cbr 210 ------- 1 1.0 5.0 283 290 r 1.26883 3 5 cbr 210 ------- 1 1.0 5.0 269 275 + 1.27 1 2 cbr 210 ------- 1 1.0 5.0 312 319 - 1.27 1 2 cbr 210 ------- 1 1.0 5.0 312 319 r 1.27086 1 2 cbr 210 ------- 1 1.0 5.0 298 305 + 1.27086 2 3 cbr 210 ------- 1 1.0 5.0 298 305 - 1.27086 2 3 cbr 210 ------- 1 1.0 5.0 298 305 r 1.27172 2 3 cbr 210 ------- 1 1.0 5.0 284 291 + 1.27172 3 5 cbr 210 ------- 1 1.0 5.0 284 291 - 1.27172 3 5 cbr 210 ------- 1 1.0 5.0 284 291 r 1.27258 3 5 cbr 210 ------- 1 1.0 5.0 270 276 + 1.27375 1 2 cbr 210 ------- 1 1.0 5.0 313 320 - 1.27375 1 2 cbr 210 ------- 1 1.0 5.0 313 320 r 1.27461 1 2 cbr 210 ------- 1 1.0 5.0 299 306 + 1.27461 2 3 cbr 210 ------- 1 1.0 5.0 299 306 - 1.27461 2 3 cbr 210 ------- 1 1.0 5.0 299 306 r 1.27547 2 3 cbr 210 ------- 1 1.0 5.0 285 292 + 1.27547 3 5 cbr 210 ------- 1 1.0 5.0 285 292 - 1.27547 3 5 cbr 210 ------- 1 1.0 5.0 285 292 r 1.27633 3 5 cbr 210 ------- 1 1.0 5.0 271 277 + 1.2775 1 2 cbr 210 ------- 1 1.0 5.0 314 321 - 1.2775 1 2 cbr 210 ------- 1 1.0 5.0 314 321 r 1.27836 1 2 cbr 210 ------- 1 1.0 5.0 300 307 + 1.27836 2 3 cbr 210 ------- 1 1.0 5.0 300 307 - 1.27836 2 3 cbr 210 ------- 1 1.0 5.0 300 307 r 1.28008 3 5 cbr 210 ------- 1 1.0 5.0 272 278 + 1.28125 1 2 cbr 210 ------- 1 1.0 5.0 315 322 - 1.28125 1 2 cbr 210 ------- 1 1.0 5.0 315 322 r 1.28211 1 2 cbr 210 ------- 1 1.0 5.0 301 308 + 1.28211 2 3 cbr 210 ------- 1 1.0 5.0 301 308 - 1.28211 2 3 cbr 210 ------- 1 1.0 5.0 301 308 r 1.28383 3 5 cbr 210 ------- 1 1.0 5.0 273 279 + 1.285 1 2 cbr 210 ------- 1 1.0 5.0 316 323 - 1.285 1 2 cbr 210 ------- 1 1.0 5.0 316 323 r 1.28586 1 2 cbr 210 ------- 1 1.0 5.0 302 309 + 1.28586 2 3 cbr 210 ------- 1 1.0 5.0 302 309 - 1.28586 2 3 cbr 210 ------- 1 1.0 5.0 302 309 r 1.28758 3 5 cbr 210 ------- 1 1.0 5.0 274 280 + 1.28875 1 2 cbr 210 ------- 1 1.0 5.0 317 324 - 1.28875 1 2 cbr 210 ------- 1 1.0 5.0 317 324 r 1.28961 1 2 cbr 210 ------- 1 1.0 5.0 303 310 + 1.28961 2 3 cbr 210 ------- 1 1.0 5.0 303 310 - 1.28961 2 3 cbr 210 ------- 1 1.0 5.0 303 310 r 1.29133 3 5 cbr 210 ------- 1 1.0 5.0 275 281 r 1.29147 2 3 tcp 1000 ------- 0 0.0 4.0 3 288 + 1.29147 3 4 tcp 1000 ------- 0 0.0 4.0 3 288 - 1.29147 3 4 tcp 1000 ------- 0 0.0 4.0 3 288 + 1.2925 1 2 cbr 210 ------- 1 1.0 5.0 318 325 - 1.2925 1 2 cbr 210 ------- 1 1.0 5.0 318 325 r 1.29336 1 2 cbr 210 ------- 1 1.0 5.0 304 311 + 1.29336 2 3 cbr 210 ------- 1 1.0 5.0 304 311 - 1.29336 2 3 cbr 210 ------- 1 1.0 5.0 304 311 r 1.29483 2 3 cbr 210 ------- 1 1.0 5.0 286 293 + 1.29483 3 5 cbr 210 ------- 1 1.0 5.0 286 293 - 1.29483 3 5 cbr 210 ------- 1 1.0 5.0 286 293 r 1.29508 3 5 cbr 210 ------- 1 1.0 5.0 276 282 + 1.29625 1 2 cbr 210 ------- 1 1.0 5.0 319 326 - 1.29625 1 2 cbr 210 ------- 1 1.0 5.0 319 326 r 1.29711 1 2 cbr 210 ------- 1 1.0 5.0 305 312 + 1.29711 2 3 cbr 210 ------- 1 1.0 5.0 305 312 - 1.29711 2 3 cbr 210 ------- 1 1.0 5.0 305 312 r 1.29819 2 3 cbr 210 ------- 1 1.0 5.0 291 298 + 1.29819 3 5 cbr 210 ------- 1 1.0 5.0 291 298 - 1.29819 3 5 cbr 210 ------- 1 1.0 5.0 291 298 r 1.29883 3 5 cbr 210 ------- 1 1.0 5.0 277 283 + 1.3 1 2 cbr 210 ------- 1 1.0 5.0 320 327 - 1.3 1 2 cbr 210 ------- 1 1.0 5.0 320 327 r 1.30086 1 2 cbr 210 ------- 1 1.0 5.0 306 313 + 1.30086 2 3 cbr 210 ------- 1 1.0 5.0 306 313 - 1.30086 2 3 cbr 210 ------- 1 1.0 5.0 306 313 r 1.30172 2 3 cbr 210 ------- 1 1.0 5.0 292 299 + 1.30172 3 5 cbr 210 ------- 1 1.0 5.0 292 299 - 1.30172 3 5 cbr 210 ------- 1 1.0 5.0 292 299 r 1.30258 3 5 cbr 210 ------- 1 1.0 5.0 278 284 + 1.30375 1 2 cbr 210 ------- 1 1.0 5.0 321 328 - 1.30375 1 2 cbr 210 ------- 1 1.0 5.0 321 328 r 1.30461 1 2 cbr 210 ------- 1 1.0 5.0 307 314 + 1.30461 2 3 cbr 210 ------- 1 1.0 5.0 307 314 - 1.30461 2 3 cbr 210 ------- 1 1.0 5.0 307 314 r 1.30547 2 3 cbr 210 ------- 1 1.0 5.0 293 300 + 1.30547 3 5 cbr 210 ------- 1 1.0 5.0 293 300 - 1.30547 3 5 cbr 210 ------- 1 1.0 5.0 293 300 r 1.30633 3 5 cbr 210 ------- 1 1.0 5.0 279 285 + 1.3075 1 2 cbr 210 ------- 1 1.0 5.0 322 329 - 1.3075 1 2 cbr 210 ------- 1 1.0 5.0 322 329 r 1.30836 1 2 cbr 210 ------- 1 1.0 5.0 308 315 + 1.30836 2 3 cbr 210 ------- 1 1.0 5.0 308 315 - 1.30836 2 3 cbr 210 ------- 1 1.0 5.0 308 315 r 1.30922 2 3 cbr 210 ------- 1 1.0 5.0 294 301 + 1.30922 3 5 cbr 210 ------- 1 1.0 5.0 294 301 - 1.30922 3 5 cbr 210 ------- 1 1.0 5.0 294 301 r 1.31008 3 5 cbr 210 ------- 1 1.0 5.0 280 286 + 1.31125 1 2 cbr 210 ------- 1 1.0 5.0 323 330 - 1.31125 1 2 cbr 210 ------- 1 1.0 5.0 323 330 r 1.31211 1 2 cbr 210 ------- 1 1.0 5.0 309 316 + 1.31211 2 3 cbr 210 ------- 1 1.0 5.0 309 316 - 1.31211 2 3 cbr 210 ------- 1 1.0 5.0 309 316 r 1.31297 2 3 cbr 210 ------- 1 1.0 5.0 295 302 + 1.31297 3 5 cbr 210 ------- 1 1.0 5.0 295 302 - 1.31297 3 5 cbr 210 ------- 1 1.0 5.0 295 302 r 1.31383 3 5 cbr 210 ------- 1 1.0 5.0 281 287 + 1.315 1 2 cbr 210 ------- 1 1.0 5.0 324 331 - 1.315 1 2 cbr 210 ------- 1 1.0 5.0 324 331 r 1.31586 1 2 cbr 210 ------- 1 1.0 5.0 310 317 + 1.31586 2 3 cbr 210 ------- 1 1.0 5.0 310 317 - 1.31586 2 3 cbr 210 ------- 1 1.0 5.0 310 317 r 1.31672 2 3 cbr 210 ------- 1 1.0 5.0 296 303 + 1.31672 3 5 cbr 210 ------- 1 1.0 5.0 296 303 - 1.31672 3 5 cbr 210 ------- 1 1.0 5.0 296 303 r 1.31758 3 5 cbr 210 ------- 1 1.0 5.0 282 289 + 1.31875 1 2 cbr 210 ------- 1 1.0 5.0 325 332 - 1.31875 1 2 cbr 210 ------- 1 1.0 5.0 325 332 r 1.31961 1 2 cbr 210 ------- 1 1.0 5.0 311 318 + 1.31961 2 3 cbr 210 ------- 1 1.0 5.0 311 318 - 1.31961 2 3 cbr 210 ------- 1 1.0 5.0 311 318 r 1.32047 2 3 cbr 210 ------- 1 1.0 5.0 297 304 + 1.32047 3 5 cbr 210 ------- 1 1.0 5.0 297 304 - 1.32047 3 5 cbr 210 ------- 1 1.0 5.0 297 304 r 1.32133 3 5 cbr 210 ------- 1 1.0 5.0 283 290 + 1.3225 1 2 cbr 210 ------- 1 1.0 5.0 326 333 - 1.3225 1 2 cbr 210 ------- 1 1.0 5.0 326 333 r 1.32336 1 2 cbr 210 ------- 1 1.0 5.0 312 319 + 1.32336 2 3 cbr 210 ------- 1 1.0 5.0 312 319 - 1.32336 2 3 cbr 210 ------- 1 1.0 5.0 312 319 r 1.32422 2 3 cbr 210 ------- 1 1.0 5.0 298 305 + 1.32422 3 5 cbr 210 ------- 1 1.0 5.0 298 305 - 1.32422 3 5 cbr 210 ------- 1 1.0 5.0 298 305 r 1.32508 3 5 cbr 210 ------- 1 1.0 5.0 284 291 + 1.32625 1 2 cbr 210 ------- 1 1.0 5.0 327 334 - 1.32625 1 2 cbr 210 ------- 1 1.0 5.0 327 334 r 1.32711 1 2 cbr 210 ------- 1 1.0 5.0 313 320 + 1.32711 2 3 cbr 210 ------- 1 1.0 5.0 313 320 - 1.32711 2 3 cbr 210 ------- 1 1.0 5.0 313 320 r 1.32797 2 3 cbr 210 ------- 1 1.0 5.0 299 306 + 1.32797 3 5 cbr 210 ------- 1 1.0 5.0 299 306 - 1.32797 3 5 cbr 210 ------- 1 1.0 5.0 299 306 r 1.32883 3 5 cbr 210 ------- 1 1.0 5.0 285 292 + 1.33 1 2 cbr 210 ------- 1 1.0 5.0 328 335 - 1.33 1 2 cbr 210 ------- 1 1.0 5.0 328 335 r 1.33086 1 2 cbr 210 ------- 1 1.0 5.0 314 321 + 1.33086 2 3 cbr 210 ------- 1 1.0 5.0 314 321 - 1.33086 2 3 cbr 210 ------- 1 1.0 5.0 314 321 r 1.33172 2 3 cbr 210 ------- 1 1.0 5.0 300 307 + 1.33172 3 5 cbr 210 ------- 1 1.0 5.0 300 307 - 1.33172 3 5 cbr 210 ------- 1 1.0 5.0 300 307 + 1.33375 1 2 cbr 210 ------- 1 1.0 5.0 329 336 - 1.33375 1 2 cbr 210 ------- 1 1.0 5.0 329 336 r 1.33461 1 2 cbr 210 ------- 1 1.0 5.0 315 322 + 1.33461 2 3 cbr 210 ------- 1 1.0 5.0 315 322 - 1.33461 2 3 cbr 210 ------- 1 1.0 5.0 315 322 r 1.33547 2 3 cbr 210 ------- 1 1.0 5.0 301 308 + 1.33547 3 5 cbr 210 ------- 1 1.0 5.0 301 308 - 1.33547 3 5 cbr 210 ------- 1 1.0 5.0 301 308 + 1.3375 1 2 cbr 210 ------- 1 1.0 5.0 330 337 - 1.3375 1 2 cbr 210 ------- 1 1.0 5.0 330 337 r 1.33836 1 2 cbr 210 ------- 1 1.0 5.0 316 323 + 1.33836 2 3 cbr 210 ------- 1 1.0 5.0 316 323 - 1.33836 2 3 cbr 210 ------- 1 1.0 5.0 316 323 r 1.33922 2 3 cbr 210 ------- 1 1.0 5.0 302 309 + 1.33922 3 5 cbr 210 ------- 1 1.0 5.0 302 309 - 1.33922 3 5 cbr 210 ------- 1 1.0 5.0 302 309 v 1.3400000000000001 eval {set sim_annotation {Timout -> Retransmit Packet_1}} + 1.34125 1 2 cbr 210 ------- 1 1.0 5.0 331 338 - 1.34125 1 2 cbr 210 ------- 1 1.0 5.0 331 338 r 1.34211 1 2 cbr 210 ------- 1 1.0 5.0 317 324 + 1.34211 2 3 cbr 210 ------- 1 1.0 5.0 317 324 - 1.34211 2 3 cbr 210 ------- 1 1.0 5.0 317 324 r 1.34297 2 3 cbr 210 ------- 1 1.0 5.0 303 310 + 1.34297 3 5 cbr 210 ------- 1 1.0 5.0 303 310 - 1.34297 3 5 cbr 210 ------- 1 1.0 5.0 303 310 + 1.345 1 2 cbr 210 ------- 1 1.0 5.0 332 339 - 1.345 1 2 cbr 210 ------- 1 1.0 5.0 332 339 r 1.34586 1 2 cbr 210 ------- 1 1.0 5.0 318 325 + 1.34586 2 3 cbr 210 ------- 1 1.0 5.0 318 325 - 1.34586 2 3 cbr 210 ------- 1 1.0 5.0 318 325 r 1.34672 2 3 cbr 210 ------- 1 1.0 5.0 304 311 + 1.34672 3 5 cbr 210 ------- 1 1.0 5.0 304 311 - 1.34672 3 5 cbr 210 ------- 1 1.0 5.0 304 311 r 1.34819 3 5 cbr 210 ------- 1 1.0 5.0 286 293 + 1.34875 1 2 cbr 210 ------- 1 1.0 5.0 333 340 - 1.34875 1 2 cbr 210 ------- 1 1.0 5.0 333 340 r 1.34961 1 2 cbr 210 ------- 1 1.0 5.0 319 326 + 1.34961 2 3 cbr 210 ------- 1 1.0 5.0 319 326 - 1.34961 2 3 cbr 210 ------- 1 1.0 5.0 319 326 r 1.35047 2 3 cbr 210 ------- 1 1.0 5.0 305 312 + 1.35047 3 5 cbr 210 ------- 1 1.0 5.0 305 312 - 1.35047 3 5 cbr 210 ------- 1 1.0 5.0 305 312 r 1.35155 3 5 cbr 210 ------- 1 1.0 5.0 291 298 + 1.3525 1 2 cbr 210 ------- 1 1.0 5.0 334 341 - 1.3525 1 2 cbr 210 ------- 1 1.0 5.0 334 341 r 1.35336 1 2 cbr 210 ------- 1 1.0 5.0 320 327 + 1.35336 2 3 cbr 210 ------- 1 1.0 5.0 320 327 - 1.35336 2 3 cbr 210 ------- 1 1.0 5.0 320 327 r 1.35422 2 3 cbr 210 ------- 1 1.0 5.0 306 313 + 1.35422 3 5 cbr 210 ------- 1 1.0 5.0 306 313 - 1.35422 3 5 cbr 210 ------- 1 1.0 5.0 306 313 r 1.35508 3 5 cbr 210 ------- 1 1.0 5.0 292 299 + 1.35625 1 2 cbr 210 ------- 1 1.0 5.0 335 342 - 1.35625 1 2 cbr 210 ------- 1 1.0 5.0 335 342 r 1.35711 1 2 cbr 210 ------- 1 1.0 5.0 321 328 + 1.35711 2 3 cbr 210 ------- 1 1.0 5.0 321 328 - 1.35711 2 3 cbr 210 ------- 1 1.0 5.0 321 328 r 1.35747 3 4 tcp 1000 ------- 0 0.0 4.0 3 288 + 1.35747 4 3 ack 40 ------- 0 4.0 0.0 3 343 - 1.35747 4 3 ack 40 ------- 0 4.0 0.0 3 343 r 1.35797 2 3 cbr 210 ------- 1 1.0 5.0 307 314 + 1.35797 3 5 cbr 210 ------- 1 1.0 5.0 307 314 - 1.35797 3 5 cbr 210 ------- 1 1.0 5.0 307 314 r 1.35883 3 5 cbr 210 ------- 1 1.0 5.0 293 300 + 1.36 1 2 cbr 210 ------- 1 1.0 5.0 336 344 - 1.36 1 2 cbr 210 ------- 1 1.0 5.0 336 344 r 1.36086 1 2 cbr 210 ------- 1 1.0 5.0 322 329 + 1.36086 2 3 cbr 210 ------- 1 1.0 5.0 322 329 - 1.36086 2 3 cbr 210 ------- 1 1.0 5.0 322 329 r 1.36172 2 3 cbr 210 ------- 1 1.0 5.0 308 315 + 1.36172 3 5 cbr 210 ------- 1 1.0 5.0 308 315 - 1.36172 3 5 cbr 210 ------- 1 1.0 5.0 308 315 r 1.36258 3 5 cbr 210 ------- 1 1.0 5.0 294 301 + 1.36375 1 2 cbr 210 ------- 1 1.0 5.0 337 345 - 1.36375 1 2 cbr 210 ------- 1 1.0 5.0 337 345 r 1.36461 1 2 cbr 210 ------- 1 1.0 5.0 323 330 + 1.36461 2 3 cbr 210 ------- 1 1.0 5.0 323 330 - 1.36461 2 3 cbr 210 ------- 1 1.0 5.0 323 330 r 1.36547 2 3 cbr 210 ------- 1 1.0 5.0 309 316 + 1.36547 3 5 cbr 210 ------- 1 1.0 5.0 309 316 - 1.36547 3 5 cbr 210 ------- 1 1.0 5.0 309 316 r 1.36633 3 5 cbr 210 ------- 1 1.0 5.0 295 302 + 1.3675 1 2 cbr 210 ------- 1 1.0 5.0 338 346 - 1.3675 1 2 cbr 210 ------- 1 1.0 5.0 338 346 r 1.36836 1 2 cbr 210 ------- 1 1.0 5.0 324 331 + 1.36836 2 3 cbr 210 ------- 1 1.0 5.0 324 331 - 1.36836 2 3 cbr 210 ------- 1 1.0 5.0 324 331 r 1.36922 2 3 cbr 210 ------- 1 1.0 5.0 310 317 + 1.36922 3 5 cbr 210 ------- 1 1.0 5.0 310 317 - 1.36922 3 5 cbr 210 ------- 1 1.0 5.0 310 317 r 1.37008 3 5 cbr 210 ------- 1 1.0 5.0 296 303 + 1.37125 1 2 cbr 210 ------- 1 1.0 5.0 339 347 - 1.37125 1 2 cbr 210 ------- 1 1.0 5.0 339 347 r 1.37211 1 2 cbr 210 ------- 1 1.0 5.0 325 332 + 1.37211 2 3 cbr 210 ------- 1 1.0 5.0 325 332 - 1.37211 2 3 cbr 210 ------- 1 1.0 5.0 325 332 r 1.37297 2 3 cbr 210 ------- 1 1.0 5.0 311 318 + 1.37297 3 5 cbr 210 ------- 1 1.0 5.0 311 318 - 1.37297 3 5 cbr 210 ------- 1 1.0 5.0 311 318 r 1.37383 3 5 cbr 210 ------- 1 1.0 5.0 297 304 + 1.375 1 2 cbr 210 ------- 1 1.0 5.0 340 348 - 1.375 1 2 cbr 210 ------- 1 1.0 5.0 340 348 r 1.37586 1 2 cbr 210 ------- 1 1.0 5.0 326 333 + 1.37586 2 3 cbr 210 ------- 1 1.0 5.0 326 333 - 1.37586 2 3 cbr 210 ------- 1 1.0 5.0 326 333 r 1.37672 2 3 cbr 210 ------- 1 1.0 5.0 312 319 + 1.37672 3 5 cbr 210 ------- 1 1.0 5.0 312 319 - 1.37672 3 5 cbr 210 ------- 1 1.0 5.0 312 319 r 1.37758 3 5 cbr 210 ------- 1 1.0 5.0 298 305 + 1.37875 1 2 cbr 210 ------- 1 1.0 5.0 341 349 - 1.37875 1 2 cbr 210 ------- 1 1.0 5.0 341 349 r 1.37961 1 2 cbr 210 ------- 1 1.0 5.0 327 334 + 1.37961 2 3 cbr 210 ------- 1 1.0 5.0 327 334 - 1.37961 2 3 cbr 210 ------- 1 1.0 5.0 327 334 r 1.38047 2 3 cbr 210 ------- 1 1.0 5.0 313 320 + 1.38047 3 5 cbr 210 ------- 1 1.0 5.0 313 320 - 1.38047 3 5 cbr 210 ------- 1 1.0 5.0 313 320 r 1.38133 3 5 cbr 210 ------- 1 1.0 5.0 299 306 + 1.3825 1 2 cbr 210 ------- 1 1.0 5.0 342 350 - 1.3825 1 2 cbr 210 ------- 1 1.0 5.0 342 350 r 1.38336 1 2 cbr 210 ------- 1 1.0 5.0 328 335 + 1.38336 2 3 cbr 210 ------- 1 1.0 5.0 328 335 - 1.38336 2 3 cbr 210 ------- 1 1.0 5.0 328 335 r 1.38422 2 3 cbr 210 ------- 1 1.0 5.0 314 321 + 1.38422 3 5 cbr 210 ------- 1 1.0 5.0 314 321 - 1.38422 3 5 cbr 210 ------- 1 1.0 5.0 314 321 r 1.38508 3 5 cbr 210 ------- 1 1.0 5.0 300 307 + 1.38625 1 2 cbr 210 ------- 1 1.0 5.0 343 351 - 1.38625 1 2 cbr 210 ------- 1 1.0 5.0 343 351 r 1.38711 1 2 cbr 210 ------- 1 1.0 5.0 329 336 + 1.38711 2 3 cbr 210 ------- 1 1.0 5.0 329 336 - 1.38711 2 3 cbr 210 ------- 1 1.0 5.0 329 336 r 1.38797 2 3 cbr 210 ------- 1 1.0 5.0 315 322 + 1.38797 3 5 cbr 210 ------- 1 1.0 5.0 315 322 - 1.38797 3 5 cbr 210 ------- 1 1.0 5.0 315 322 r 1.38883 3 5 cbr 210 ------- 1 1.0 5.0 301 308 + 1.39 1 2 cbr 210 ------- 1 1.0 5.0 344 352 - 1.39 1 2 cbr 210 ------- 1 1.0 5.0 344 352 r 1.39086 1 2 cbr 210 ------- 1 1.0 5.0 330 337 + 1.39086 2 3 cbr 210 ------- 1 1.0 5.0 330 337 - 1.39086 2 3 cbr 210 ------- 1 1.0 5.0 330 337 r 1.39172 2 3 cbr 210 ------- 1 1.0 5.0 316 323 + 1.39172 3 5 cbr 210 ------- 1 1.0 5.0 316 323 - 1.39172 3 5 cbr 210 ------- 1 1.0 5.0 316 323 r 1.39258 3 5 cbr 210 ------- 1 1.0 5.0 302 309 + 1.39375 1 2 cbr 210 ------- 1 1.0 5.0 345 353 - 1.39375 1 2 cbr 210 ------- 1 1.0 5.0 345 353 r 1.39461 1 2 cbr 210 ------- 1 1.0 5.0 331 338 + 1.39461 2 3 cbr 210 ------- 1 1.0 5.0 331 338 - 1.39461 2 3 cbr 210 ------- 1 1.0 5.0 331 338 r 1.39547 2 3 cbr 210 ------- 1 1.0 5.0 317 324 + 1.39547 3 5 cbr 210 ------- 1 1.0 5.0 317 324 - 1.39547 3 5 cbr 210 ------- 1 1.0 5.0 317 324 r 1.39633 3 5 cbr 210 ------- 1 1.0 5.0 303 310 + 1.3975 1 2 cbr 210 ------- 1 1.0 5.0 346 354 - 1.3975 1 2 cbr 210 ------- 1 1.0 5.0 346 354 r 1.39836 1 2 cbr 210 ------- 1 1.0 5.0 332 339 + 1.39836 2 3 cbr 210 ------- 1 1.0 5.0 332 339 - 1.39836 2 3 cbr 210 ------- 1 1.0 5.0 332 339 r 1.39922 2 3 cbr 210 ------- 1 1.0 5.0 318 325 + 1.39922 3 5 cbr 210 ------- 1 1.0 5.0 318 325 - 1.39922 3 5 cbr 210 ------- 1 1.0 5.0 318 325 r 1.40008 3 5 cbr 210 ------- 1 1.0 5.0 304 311 + 1.40125 1 2 cbr 210 ------- 1 1.0 5.0 347 355 - 1.40125 1 2 cbr 210 ------- 1 1.0 5.0 347 355 r 1.40211 1 2 cbr 210 ------- 1 1.0 5.0 333 340 + 1.40211 2 3 cbr 210 ------- 1 1.0 5.0 333 340 - 1.40211 2 3 cbr 210 ------- 1 1.0 5.0 333 340 r 1.40297 2 3 cbr 210 ------- 1 1.0 5.0 319 326 + 1.40297 3 5 cbr 210 ------- 1 1.0 5.0 319 326 - 1.40297 3 5 cbr 210 ------- 1 1.0 5.0 319 326 r 1.40383 3 5 cbr 210 ------- 1 1.0 5.0 305 312 + 1.405 1 2 cbr 210 ------- 1 1.0 5.0 348 356 - 1.405 1 2 cbr 210 ------- 1 1.0 5.0 348 356 r 1.40586 1 2 cbr 210 ------- 1 1.0 5.0 334 341 + 1.40586 2 3 cbr 210 ------- 1 1.0 5.0 334 341 - 1.40586 2 3 cbr 210 ------- 1 1.0 5.0 334 341 r 1.40672 2 3 cbr 210 ------- 1 1.0 5.0 320 327 + 1.40672 3 5 cbr 210 ------- 1 1.0 5.0 320 327 - 1.40672 3 5 cbr 210 ------- 1 1.0 5.0 320 327 r 1.40758 3 5 cbr 210 ------- 1 1.0 5.0 306 313 r 1.40811 4 3 ack 40 ------- 0 4.0 0.0 3 343 + 1.40811 3 2 ack 40 ------- 0 4.0 0.0 3 343 - 1.40811 3 2 ack 40 ------- 0 4.0 0.0 3 343 + 1.40875 1 2 cbr 210 ------- 1 1.0 5.0 349 357 - 1.40875 1 2 cbr 210 ------- 1 1.0 5.0 349 357 r 1.40961 1 2 cbr 210 ------- 1 1.0 5.0 335 342 + 1.40961 2 3 cbr 210 ------- 1 1.0 5.0 335 342 - 1.40961 2 3 cbr 210 ------- 1 1.0 5.0 335 342 r 1.41047 2 3 cbr 210 ------- 1 1.0 5.0 321 328 + 1.41047 3 5 cbr 210 ------- 1 1.0 5.0 321 328 - 1.41047 3 5 cbr 210 ------- 1 1.0 5.0 321 328 r 1.41133 3 5 cbr 210 ------- 1 1.0 5.0 307 314 + 1.4125 1 2 cbr 210 ------- 1 1.0 5.0 350 358 - 1.4125 1 2 cbr 210 ------- 1 1.0 5.0 350 358 r 1.41336 1 2 cbr 210 ------- 1 1.0 5.0 336 344 + 1.41336 2 3 cbr 210 ------- 1 1.0 5.0 336 344 - 1.41336 2 3 cbr 210 ------- 1 1.0 5.0 336 344 r 1.41422 2 3 cbr 210 ------- 1 1.0 5.0 322 329 + 1.41422 3 5 cbr 210 ------- 1 1.0 5.0 322 329 - 1.41422 3 5 cbr 210 ------- 1 1.0 5.0 322 329 r 1.41508 3 5 cbr 210 ------- 1 1.0 5.0 308 315 + 1.41625 1 2 cbr 210 ------- 1 1.0 5.0 351 359 - 1.41625 1 2 cbr 210 ------- 1 1.0 5.0 351 359 r 1.41711 1 2 cbr 210 ------- 1 1.0 5.0 337 345 + 1.41711 2 3 cbr 210 ------- 1 1.0 5.0 337 345 - 1.41711 2 3 cbr 210 ------- 1 1.0 5.0 337 345 r 1.41797 2 3 cbr 210 ------- 1 1.0 5.0 323 330 + 1.41797 3 5 cbr 210 ------- 1 1.0 5.0 323 330 - 1.41797 3 5 cbr 210 ------- 1 1.0 5.0 323 330 r 1.41883 3 5 cbr 210 ------- 1 1.0 5.0 309 316 + 1.42 1 2 cbr 210 ------- 1 1.0 5.0 352 360 - 1.42 1 2 cbr 210 ------- 1 1.0 5.0 352 360 r 1.42086 1 2 cbr 210 ------- 1 1.0 5.0 338 346 + 1.42086 2 3 cbr 210 ------- 1 1.0 5.0 338 346 - 1.42086 2 3 cbr 210 ------- 1 1.0 5.0 338 346 r 1.42172 2 3 cbr 210 ------- 1 1.0 5.0 324 331 + 1.42172 3 5 cbr 210 ------- 1 1.0 5.0 324 331 - 1.42172 3 5 cbr 210 ------- 1 1.0 5.0 324 331 r 1.42258 3 5 cbr 210 ------- 1 1.0 5.0 310 317 + 1.42375 1 2 cbr 210 ------- 1 1.0 5.0 353 361 - 1.42375 1 2 cbr 210 ------- 1 1.0 5.0 353 361 r 1.42461 1 2 cbr 210 ------- 1 1.0 5.0 339 347 + 1.42461 2 3 cbr 210 ------- 1 1.0 5.0 339 347 - 1.42461 2 3 cbr 210 ------- 1 1.0 5.0 339 347 r 1.42547 2 3 cbr 210 ------- 1 1.0 5.0 325 332 + 1.42547 3 5 cbr 210 ------- 1 1.0 5.0 325 332 - 1.42547 3 5 cbr 210 ------- 1 1.0 5.0 325 332 r 1.42633 3 5 cbr 210 ------- 1 1.0 5.0 311 318 + 1.4275 1 2 cbr 210 ------- 1 1.0 5.0 354 362 - 1.4275 1 2 cbr 210 ------- 1 1.0 5.0 354 362 r 1.42836 1 2 cbr 210 ------- 1 1.0 5.0 340 348 + 1.42836 2 3 cbr 210 ------- 1 1.0 5.0 340 348 - 1.42836 2 3 cbr 210 ------- 1 1.0 5.0 340 348 r 1.42922 2 3 cbr 210 ------- 1 1.0 5.0 326 333 + 1.42922 3 5 cbr 210 ------- 1 1.0 5.0 326 333 - 1.42922 3 5 cbr 210 ------- 1 1.0 5.0 326 333 r 1.43008 3 5 cbr 210 ------- 1 1.0 5.0 312 319 + 1.43125 1 2 cbr 210 ------- 1 1.0 5.0 355 363 - 1.43125 1 2 cbr 210 ------- 1 1.0 5.0 355 363 r 1.43211 1 2 cbr 210 ------- 1 1.0 5.0 341 349 + 1.43211 2 3 cbr 210 ------- 1 1.0 5.0 341 349 - 1.43211 2 3 cbr 210 ------- 1 1.0 5.0 341 349 r 1.43297 2 3 cbr 210 ------- 1 1.0 5.0 327 334 + 1.43297 3 5 cbr 210 ------- 1 1.0 5.0 327 334 - 1.43297 3 5 cbr 210 ------- 1 1.0 5.0 327 334 r 1.43383 3 5 cbr 210 ------- 1 1.0 5.0 313 320 + 1.435 1 2 cbr 210 ------- 1 1.0 5.0 356 364 - 1.435 1 2 cbr 210 ------- 1 1.0 5.0 356 364 r 1.43586 1 2 cbr 210 ------- 1 1.0 5.0 342 350 + 1.43586 2 3 cbr 210 ------- 1 1.0 5.0 342 350 - 1.43586 2 3 cbr 210 ------- 1 1.0 5.0 342 350 r 1.43672 2 3 cbr 210 ------- 1 1.0 5.0 328 335 + 1.43672 3 5 cbr 210 ------- 1 1.0 5.0 328 335 - 1.43672 3 5 cbr 210 ------- 1 1.0 5.0 328 335 r 1.43758 3 5 cbr 210 ------- 1 1.0 5.0 314 321 + 1.43875 1 2 cbr 210 ------- 1 1.0 5.0 357 365 - 1.43875 1 2 cbr 210 ------- 1 1.0 5.0 357 365 r 1.43961 1 2 cbr 210 ------- 1 1.0 5.0 343 351 + 1.43961 2 3 cbr 210 ------- 1 1.0 5.0 343 351 - 1.43961 2 3 cbr 210 ------- 1 1.0 5.0 343 351 r 1.44047 2 3 cbr 210 ------- 1 1.0 5.0 329 336 + 1.44047 3 5 cbr 210 ------- 1 1.0 5.0 329 336 - 1.44047 3 5 cbr 210 ------- 1 1.0 5.0 329 336 r 1.44133 3 5 cbr 210 ------- 1 1.0 5.0 315 322 + 1.4425 1 2 cbr 210 ------- 1 1.0 5.0 358 366 - 1.4425 1 2 cbr 210 ------- 1 1.0 5.0 358 366 r 1.44336 1 2 cbr 210 ------- 1 1.0 5.0 344 352 + 1.44336 2 3 cbr 210 ------- 1 1.0 5.0 344 352 - 1.44336 2 3 cbr 210 ------- 1 1.0 5.0 344 352 r 1.44422 2 3 cbr 210 ------- 1 1.0 5.0 330 337 + 1.44422 3 5 cbr 210 ------- 1 1.0 5.0 330 337 - 1.44422 3 5 cbr 210 ------- 1 1.0 5.0 330 337 r 1.44508 3 5 cbr 210 ------- 1 1.0 5.0 316 323 + 1.44625 1 2 cbr 210 ------- 1 1.0 5.0 359 367 - 1.44625 1 2 cbr 210 ------- 1 1.0 5.0 359 367 r 1.44711 1 2 cbr 210 ------- 1 1.0 5.0 345 353 + 1.44711 2 3 cbr 210 ------- 1 1.0 5.0 345 353 - 1.44711 2 3 cbr 210 ------- 1 1.0 5.0 345 353 r 1.44797 2 3 cbr 210 ------- 1 1.0 5.0 331 338 + 1.44797 3 5 cbr 210 ------- 1 1.0 5.0 331 338 - 1.44797 3 5 cbr 210 ------- 1 1.0 5.0 331 338 r 1.44883 3 5 cbr 210 ------- 1 1.0 5.0 317 324 + 1.45 1 2 cbr 210 ------- 1 1.0 5.0 360 368 - 1.45 1 2 cbr 210 ------- 1 1.0 5.0 360 368 r 1.45086 1 2 cbr 210 ------- 1 1.0 5.0 346 354 + 1.45086 2 3 cbr 210 ------- 1 1.0 5.0 346 354 - 1.45086 2 3 cbr 210 ------- 1 1.0 5.0 346 354 r 1.45172 2 3 cbr 210 ------- 1 1.0 5.0 332 339 + 1.45172 3 5 cbr 210 ------- 1 1.0 5.0 332 339 - 1.45172 3 5 cbr 210 ------- 1 1.0 5.0 332 339 r 1.45258 3 5 cbr 210 ------- 1 1.0 5.0 318 325 + 1.45375 1 2 cbr 210 ------- 1 1.0 5.0 361 369 - 1.45375 1 2 cbr 210 ------- 1 1.0 5.0 361 369 r 1.45461 1 2 cbr 210 ------- 1 1.0 5.0 347 355 + 1.45461 2 3 cbr 210 ------- 1 1.0 5.0 347 355 - 1.45461 2 3 cbr 210 ------- 1 1.0 5.0 347 355 r 1.45547 2 3 cbr 210 ------- 1 1.0 5.0 333 340 + 1.45547 3 5 cbr 210 ------- 1 1.0 5.0 333 340 - 1.45547 3 5 cbr 210 ------- 1 1.0 5.0 333 340 r 1.45633 3 5 cbr 210 ------- 1 1.0 5.0 319 326 + 1.4575 1 2 cbr 210 ------- 1 1.0 5.0 362 370 - 1.4575 1 2 cbr 210 ------- 1 1.0 5.0 362 370 r 1.45836 1 2 cbr 210 ------- 1 1.0 5.0 348 356 + 1.45836 2 3 cbr 210 ------- 1 1.0 5.0 348 356 - 1.45836 2 3 cbr 210 ------- 1 1.0 5.0 348 356 r 1.45875 3 2 ack 40 ------- 0 4.0 0.0 3 343 + 1.45875 2 0 ack 40 ------- 0 4.0 0.0 3 343 - 1.45875 2 0 ack 40 ------- 0 4.0 0.0 3 343 r 1.45922 2 3 cbr 210 ------- 1 1.0 5.0 334 341 + 1.45922 3 5 cbr 210 ------- 1 1.0 5.0 334 341 - 1.45922 3 5 cbr 210 ------- 1 1.0 5.0 334 341 r 1.46008 3 5 cbr 210 ------- 1 1.0 5.0 320 327 + 1.46125 1 2 cbr 210 ------- 1 1.0 5.0 363 371 - 1.46125 1 2 cbr 210 ------- 1 1.0 5.0 363 371 r 1.46211 1 2 cbr 210 ------- 1 1.0 5.0 349 357 + 1.46211 2 3 cbr 210 ------- 1 1.0 5.0 349 357 - 1.46211 2 3 cbr 210 ------- 1 1.0 5.0 349 357 r 1.46297 2 3 cbr 210 ------- 1 1.0 5.0 335 342 + 1.46297 3 5 cbr 210 ------- 1 1.0 5.0 335 342 - 1.46297 3 5 cbr 210 ------- 1 1.0 5.0 335 342 r 1.46383 3 5 cbr 210 ------- 1 1.0 5.0 321 328 + 1.465 1 2 cbr 210 ------- 1 1.0 5.0 364 372 - 1.465 1 2 cbr 210 ------- 1 1.0 5.0 364 372 r 1.46586 1 2 cbr 210 ------- 1 1.0 5.0 350 358 + 1.46586 2 3 cbr 210 ------- 1 1.0 5.0 350 358 - 1.46586 2 3 cbr 210 ------- 1 1.0 5.0 350 358 r 1.46672 2 3 cbr 210 ------- 1 1.0 5.0 336 344 + 1.46672 3 5 cbr 210 ------- 1 1.0 5.0 336 344 - 1.46672 3 5 cbr 210 ------- 1 1.0 5.0 336 344 r 1.46758 3 5 cbr 210 ------- 1 1.0 5.0 322 329 + 1.46875 1 2 cbr 210 ------- 1 1.0 5.0 365 373 - 1.46875 1 2 cbr 210 ------- 1 1.0 5.0 365 373 r 1.46961 1 2 cbr 210 ------- 1 1.0 5.0 351 359 + 1.46961 2 3 cbr 210 ------- 1 1.0 5.0 351 359 - 1.46961 2 3 cbr 210 ------- 1 1.0 5.0 351 359 r 1.47047 2 3 cbr 210 ------- 1 1.0 5.0 337 345 + 1.47047 3 5 cbr 210 ------- 1 1.0 5.0 337 345 - 1.47047 3 5 cbr 210 ------- 1 1.0 5.0 337 345 r 1.47133 3 5 cbr 210 ------- 1 1.0 5.0 323 330 + 1.4725 1 2 cbr 210 ------- 1 1.0 5.0 366 374 - 1.4725 1 2 cbr 210 ------- 1 1.0 5.0 366 374 r 1.47336 1 2 cbr 210 ------- 1 1.0 5.0 352 360 + 1.47336 2 3 cbr 210 ------- 1 1.0 5.0 352 360 - 1.47336 2 3 cbr 210 ------- 1 1.0 5.0 352 360 r 1.47422 2 3 cbr 210 ------- 1 1.0 5.0 338 346 + 1.47422 3 5 cbr 210 ------- 1 1.0 5.0 338 346 - 1.47422 3 5 cbr 210 ------- 1 1.0 5.0 338 346 r 1.47508 3 5 cbr 210 ------- 1 1.0 5.0 324 331 + 1.47625 1 2 cbr 210 ------- 1 1.0 5.0 367 375 - 1.47625 1 2 cbr 210 ------- 1 1.0 5.0 367 375 r 1.47711 1 2 cbr 210 ------- 1 1.0 5.0 353 361 + 1.47711 2 3 cbr 210 ------- 1 1.0 5.0 353 361 - 1.47711 2 3 cbr 210 ------- 1 1.0 5.0 353 361 r 1.47797 2 3 cbr 210 ------- 1 1.0 5.0 339 347 + 1.47797 3 5 cbr 210 ------- 1 1.0 5.0 339 347 - 1.47797 3 5 cbr 210 ------- 1 1.0 5.0 339 347 r 1.47883 3 5 cbr 210 ------- 1 1.0 5.0 325 332 + 1.48 1 2 cbr 210 ------- 1 1.0 5.0 368 376 - 1.48 1 2 cbr 210 ------- 1 1.0 5.0 368 376 r 1.48086 1 2 cbr 210 ------- 1 1.0 5.0 354 362 + 1.48086 2 3 cbr 210 ------- 1 1.0 5.0 354 362 - 1.48086 2 3 cbr 210 ------- 1 1.0 5.0 354 362 r 1.48172 2 3 cbr 210 ------- 1 1.0 5.0 340 348 + 1.48172 3 5 cbr 210 ------- 1 1.0 5.0 340 348 - 1.48172 3 5 cbr 210 ------- 1 1.0 5.0 340 348 r 1.48258 3 5 cbr 210 ------- 1 1.0 5.0 326 333 + 1.48375 1 2 cbr 210 ------- 1 1.0 5.0 369 377 - 1.48375 1 2 cbr 210 ------- 1 1.0 5.0 369 377 r 1.48461 1 2 cbr 210 ------- 1 1.0 5.0 355 363 + 1.48461 2 3 cbr 210 ------- 1 1.0 5.0 355 363 - 1.48461 2 3 cbr 210 ------- 1 1.0 5.0 355 363 r 1.48547 2 3 cbr 210 ------- 1 1.0 5.0 341 349 + 1.48547 3 5 cbr 210 ------- 1 1.0 5.0 341 349 - 1.48547 3 5 cbr 210 ------- 1 1.0 5.0 341 349 r 1.48633 3 5 cbr 210 ------- 1 1.0 5.0 327 334 + 1.4875 1 2 cbr 210 ------- 1 1.0 5.0 370 378 - 1.4875 1 2 cbr 210 ------- 1 1.0 5.0 370 378 r 1.48836 1 2 cbr 210 ------- 1 1.0 5.0 356 364 + 1.48836 2 3 cbr 210 ------- 1 1.0 5.0 356 364 - 1.48836 2 3 cbr 210 ------- 1 1.0 5.0 356 364 r 1.48922 2 3 cbr 210 ------- 1 1.0 5.0 342 350 + 1.48922 3 5 cbr 210 ------- 1 1.0 5.0 342 350 - 1.48922 3 5 cbr 210 ------- 1 1.0 5.0 342 350 r 1.49008 3 5 cbr 210 ------- 1 1.0 5.0 328 335 + 1.49125 1 2 cbr 210 ------- 1 1.0 5.0 371 379 - 1.49125 1 2 cbr 210 ------- 1 1.0 5.0 371 379 r 1.49211 1 2 cbr 210 ------- 1 1.0 5.0 357 365 + 1.49211 2 3 cbr 210 ------- 1 1.0 5.0 357 365 - 1.49211 2 3 cbr 210 ------- 1 1.0 5.0 357 365 r 1.49297 2 3 cbr 210 ------- 1 1.0 5.0 343 351 + 1.49297 3 5 cbr 210 ------- 1 1.0 5.0 343 351 - 1.49297 3 5 cbr 210 ------- 1 1.0 5.0 343 351 r 1.49383 3 5 cbr 210 ------- 1 1.0 5.0 329 336 + 1.495 1 2 cbr 210 ------- 1 1.0 5.0 372 380 - 1.495 1 2 cbr 210 ------- 1 1.0 5.0 372 380 r 1.49586 1 2 cbr 210 ------- 1 1.0 5.0 358 366 + 1.49586 2 3 cbr 210 ------- 1 1.0 5.0 358 366 - 1.49586 2 3 cbr 210 ------- 1 1.0 5.0 358 366 r 1.49672 2 3 cbr 210 ------- 1 1.0 5.0 344 352 + 1.49672 3 5 cbr 210 ------- 1 1.0 5.0 344 352 - 1.49672 3 5 cbr 210 ------- 1 1.0 5.0 344 352 r 1.49758 3 5 cbr 210 ------- 1 1.0 5.0 330 337 + 1.49875 1 2 cbr 210 ------- 1 1.0 5.0 373 381 - 1.49875 1 2 cbr 210 ------- 1 1.0 5.0 373 381 r 1.49961 1 2 cbr 210 ------- 1 1.0 5.0 359 367 + 1.49961 2 3 cbr 210 ------- 1 1.0 5.0 359 367 - 1.49961 2 3 cbr 210 ------- 1 1.0 5.0 359 367 r 1.50047 2 3 cbr 210 ------- 1 1.0 5.0 345 353 + 1.50047 3 5 cbr 210 ------- 1 1.0 5.0 345 353 - 1.50047 3 5 cbr 210 ------- 1 1.0 5.0 345 353 r 1.50133 3 5 cbr 210 ------- 1 1.0 5.0 331 338 + 1.5025 1 2 cbr 210 ------- 1 1.0 5.0 374 382 - 1.5025 1 2 cbr 210 ------- 1 1.0 5.0 374 382 r 1.50336 1 2 cbr 210 ------- 1 1.0 5.0 360 368 + 1.50336 2 3 cbr 210 ------- 1 1.0 5.0 360 368 - 1.50336 2 3 cbr 210 ------- 1 1.0 5.0 360 368 r 1.50422 2 3 cbr 210 ------- 1 1.0 5.0 346 354 + 1.50422 3 5 cbr 210 ------- 1 1.0 5.0 346 354 - 1.50422 3 5 cbr 210 ------- 1 1.0 5.0 346 354 r 1.50508 3 5 cbr 210 ------- 1 1.0 5.0 332 339 + 1.50625 1 2 cbr 210 ------- 1 1.0 5.0 375 383 - 1.50625 1 2 cbr 210 ------- 1 1.0 5.0 375 383 r 1.50711 1 2 cbr 210 ------- 1 1.0 5.0 361 369 + 1.50711 2 3 cbr 210 ------- 1 1.0 5.0 361 369 - 1.50711 2 3 cbr 210 ------- 1 1.0 5.0 361 369 r 1.50797 2 3 cbr 210 ------- 1 1.0 5.0 347 355 + 1.50797 3 5 cbr 210 ------- 1 1.0 5.0 347 355 - 1.50797 3 5 cbr 210 ------- 1 1.0 5.0 347 355 r 1.50883 3 5 cbr 210 ------- 1 1.0 5.0 333 340 r 1.50939 2 0 ack 40 ------- 0 4.0 0.0 3 343 + 1.50939 0 2 tcp 1000 ------- 0 0.0 4.0 4 384 - 1.50939 0 2 tcp 1000 ------- 0 0.0 4.0 4 384 + 1.51 1 2 cbr 210 ------- 1 1.0 5.0 376 385 - 1.51 1 2 cbr 210 ------- 1 1.0 5.0 376 385 r 1.51086 1 2 cbr 210 ------- 1 1.0 5.0 362 370 + 1.51086 2 3 cbr 210 ------- 1 1.0 5.0 362 370 - 1.51086 2 3 cbr 210 ------- 1 1.0 5.0 362 370 r 1.51172 2 3 cbr 210 ------- 1 1.0 5.0 348 356 + 1.51172 3 5 cbr 210 ------- 1 1.0 5.0 348 356 - 1.51172 3 5 cbr 210 ------- 1 1.0 5.0 348 356 r 1.51258 3 5 cbr 210 ------- 1 1.0 5.0 334 341 + 1.51375 1 2 cbr 210 ------- 1 1.0 5.0 377 386 - 1.51375 1 2 cbr 210 ------- 1 1.0 5.0 377 386 r 1.51461 1 2 cbr 210 ------- 1 1.0 5.0 363 371 + 1.51461 2 3 cbr 210 ------- 1 1.0 5.0 363 371 - 1.51461 2 3 cbr 210 ------- 1 1.0 5.0 363 371 r 1.51547 2 3 cbr 210 ------- 1 1.0 5.0 349 357 + 1.51547 3 5 cbr 210 ------- 1 1.0 5.0 349 357 - 1.51547 3 5 cbr 210 ------- 1 1.0 5.0 349 357 r 1.51633 3 5 cbr 210 ------- 1 1.0 5.0 335 342 + 1.5175 1 2 cbr 210 ------- 1 1.0 5.0 378 387 - 1.5175 1 2 cbr 210 ------- 1 1.0 5.0 378 387 r 1.51836 1 2 cbr 210 ------- 1 1.0 5.0 364 372 + 1.51836 2 3 cbr 210 ------- 1 1.0 5.0 364 372 - 1.51836 2 3 cbr 210 ------- 1 1.0 5.0 364 372 r 1.51922 2 3 cbr 210 ------- 1 1.0 5.0 350 358 + 1.51922 3 5 cbr 210 ------- 1 1.0 5.0 350 358 - 1.51922 3 5 cbr 210 ------- 1 1.0 5.0 350 358 r 1.52008 3 5 cbr 210 ------- 1 1.0 5.0 336 344 + 1.52125 1 2 cbr 210 ------- 1 1.0 5.0 379 388 - 1.52125 1 2 cbr 210 ------- 1 1.0 5.0 379 388 r 1.52211 1 2 cbr 210 ------- 1 1.0 5.0 365 373 + 1.52211 2 3 cbr 210 ------- 1 1.0 5.0 365 373 - 1.52211 2 3 cbr 210 ------- 1 1.0 5.0 365 373 r 1.52297 2 3 cbr 210 ------- 1 1.0 5.0 351 359 + 1.52297 3 5 cbr 210 ------- 1 1.0 5.0 351 359 - 1.52297 3 5 cbr 210 ------- 1 1.0 5.0 351 359 r 1.52383 3 5 cbr 210 ------- 1 1.0 5.0 337 345 + 1.525 1 2 cbr 210 ------- 1 1.0 5.0 380 389 - 1.525 1 2 cbr 210 ------- 1 1.0 5.0 380 389 r 1.52586 1 2 cbr 210 ------- 1 1.0 5.0 366 374 + 1.52586 2 3 cbr 210 ------- 1 1.0 5.0 366 374 - 1.52586 2 3 cbr 210 ------- 1 1.0 5.0 366 374 r 1.52672 2 3 cbr 210 ------- 1 1.0 5.0 352 360 + 1.52672 3 5 cbr 210 ------- 1 1.0 5.0 352 360 - 1.52672 3 5 cbr 210 ------- 1 1.0 5.0 352 360 r 1.52758 3 5 cbr 210 ------- 1 1.0 5.0 338 346 + 1.52875 1 2 cbr 210 ------- 1 1.0 5.0 381 390 - 1.52875 1 2 cbr 210 ------- 1 1.0 5.0 381 390 r 1.52961 1 2 cbr 210 ------- 1 1.0 5.0 367 375 + 1.52961 2 3 cbr 210 ------- 1 1.0 5.0 367 375 - 1.52961 2 3 cbr 210 ------- 1 1.0 5.0 367 375 r 1.53047 2 3 cbr 210 ------- 1 1.0 5.0 353 361 + 1.53047 3 5 cbr 210 ------- 1 1.0 5.0 353 361 - 1.53047 3 5 cbr 210 ------- 1 1.0 5.0 353 361 r 1.53133 3 5 cbr 210 ------- 1 1.0 5.0 339 347 + 1.5325 1 2 cbr 210 ------- 1 1.0 5.0 382 391 - 1.5325 1 2 cbr 210 ------- 1 1.0 5.0 382 391 r 1.53336 1 2 cbr 210 ------- 1 1.0 5.0 368 376 + 1.53336 2 3 cbr 210 ------- 1 1.0 5.0 368 376 - 1.53336 2 3 cbr 210 ------- 1 1.0 5.0 368 376 r 1.53422 2 3 cbr 210 ------- 1 1.0 5.0 354 362 + 1.53422 3 5 cbr 210 ------- 1 1.0 5.0 354 362 - 1.53422 3 5 cbr 210 ------- 1 1.0 5.0 354 362 r 1.53508 3 5 cbr 210 ------- 1 1.0 5.0 340 348 + 1.53625 1 2 cbr 210 ------- 1 1.0 5.0 383 392 - 1.53625 1 2 cbr 210 ------- 1 1.0 5.0 383 392 r 1.53711 1 2 cbr 210 ------- 1 1.0 5.0 369 377 + 1.53711 2 3 cbr 210 ------- 1 1.0 5.0 369 377 - 1.53711 2 3 cbr 210 ------- 1 1.0 5.0 369 377 r 1.53797 2 3 cbr 210 ------- 1 1.0 5.0 355 363 + 1.53797 3 5 cbr 210 ------- 1 1.0 5.0 355 363 - 1.53797 3 5 cbr 210 ------- 1 1.0 5.0 355 363 r 1.53883 3 5 cbr 210 ------- 1 1.0 5.0 341 349 + 1.54 1 2 cbr 210 ------- 1 1.0 5.0 384 393 - 1.54 1 2 cbr 210 ------- 1 1.0 5.0 384 393 r 1.54086 1 2 cbr 210 ------- 1 1.0 5.0 370 378 + 1.54086 2 3 cbr 210 ------- 1 1.0 5.0 370 378 - 1.54086 2 3 cbr 210 ------- 1 1.0 5.0 370 378 r 1.54172 2 3 cbr 210 ------- 1 1.0 5.0 356 364 + 1.54172 3 5 cbr 210 ------- 1 1.0 5.0 356 364 - 1.54172 3 5 cbr 210 ------- 1 1.0 5.0 356 364 r 1.54258 3 5 cbr 210 ------- 1 1.0 5.0 342 350 + 1.54375 1 2 cbr 210 ------- 1 1.0 5.0 385 394 - 1.54375 1 2 cbr 210 ------- 1 1.0 5.0 385 394 r 1.54461 1 2 cbr 210 ------- 1 1.0 5.0 371 379 + 1.54461 2 3 cbr 210 ------- 1 1.0 5.0 371 379 - 1.54461 2 3 cbr 210 ------- 1 1.0 5.0 371 379 r 1.54547 2 3 cbr 210 ------- 1 1.0 5.0 357 365 + 1.54547 3 5 cbr 210 ------- 1 1.0 5.0 357 365 - 1.54547 3 5 cbr 210 ------- 1 1.0 5.0 357 365 r 1.54633 3 5 cbr 210 ------- 1 1.0 5.0 343 351 + 1.5475 1 2 cbr 210 ------- 1 1.0 5.0 386 395 - 1.5475 1 2 cbr 210 ------- 1 1.0 5.0 386 395 r 1.54836 1 2 cbr 210 ------- 1 1.0 5.0 372 380 + 1.54836 2 3 cbr 210 ------- 1 1.0 5.0 372 380 - 1.54836 2 3 cbr 210 ------- 1 1.0 5.0 372 380 r 1.54922 2 3 cbr 210 ------- 1 1.0 5.0 358 366 + 1.54922 3 5 cbr 210 ------- 1 1.0 5.0 358 366 - 1.54922 3 5 cbr 210 ------- 1 1.0 5.0 358 366 v 1.55 eval {set sim_annotation {Receive Ack_1}} r 1.55008 3 5 cbr 210 ------- 1 1.0 5.0 344 352 + 1.55125 1 2 cbr 210 ------- 1 1.0 5.0 387 396 - 1.55125 1 2 cbr 210 ------- 1 1.0 5.0 387 396 r 1.55211 1 2 cbr 210 ------- 1 1.0 5.0 373 381 + 1.55211 2 3 cbr 210 ------- 1 1.0 5.0 373 381 - 1.55211 2 3 cbr 210 ------- 1 1.0 5.0 373 381 r 1.55297 2 3 cbr 210 ------- 1 1.0 5.0 359 367 + 1.55297 3 5 cbr 210 ------- 1 1.0 5.0 359 367 - 1.55297 3 5 cbr 210 ------- 1 1.0 5.0 359 367 r 1.55383 3 5 cbr 210 ------- 1 1.0 5.0 345 353 + 1.555 1 2 cbr 210 ------- 1 1.0 5.0 388 397 - 1.555 1 2 cbr 210 ------- 1 1.0 5.0 388 397 r 1.55586 1 2 cbr 210 ------- 1 1.0 5.0 374 382 + 1.55586 2 3 cbr 210 ------- 1 1.0 5.0 374 382 - 1.55586 2 3 cbr 210 ------- 1 1.0 5.0 374 382 r 1.55672 2 3 cbr 210 ------- 1 1.0 5.0 360 368 + 1.55672 3 5 cbr 210 ------- 1 1.0 5.0 360 368 - 1.55672 3 5 cbr 210 ------- 1 1.0 5.0 360 368 r 1.55758 3 5 cbr 210 ------- 1 1.0 5.0 346 354 + 1.55875 1 2 cbr 210 ------- 1 1.0 5.0 389 398 - 1.55875 1 2 cbr 210 ------- 1 1.0 5.0 389 398 r 1.55961 1 2 cbr 210 ------- 1 1.0 5.0 375 383 + 1.55961 2 3 cbr 210 ------- 1 1.0 5.0 375 383 - 1.55961 2 3 cbr 210 ------- 1 1.0 5.0 375 383 r 1.56047 2 3 cbr 210 ------- 1 1.0 5.0 361 369 + 1.56047 3 5 cbr 210 ------- 1 1.0 5.0 361 369 - 1.56047 3 5 cbr 210 ------- 1 1.0 5.0 361 369 r 1.56133 3 5 cbr 210 ------- 1 1.0 5.0 347 355 + 1.5625 1 2 cbr 210 ------- 1 1.0 5.0 390 399 - 1.5625 1 2 cbr 210 ------- 1 1.0 5.0 390 399 r 1.56336 1 2 cbr 210 ------- 1 1.0 5.0 376 385 + 1.56336 2 3 cbr 210 ------- 1 1.0 5.0 376 385 - 1.56336 2 3 cbr 210 ------- 1 1.0 5.0 376 385 r 1.56422 2 3 cbr 210 ------- 1 1.0 5.0 362 370 + 1.56422 3 5 cbr 210 ------- 1 1.0 5.0 362 370 - 1.56422 3 5 cbr 210 ------- 1 1.0 5.0 362 370 r 1.56508 3 5 cbr 210 ------- 1 1.0 5.0 348 356 + 1.56625 1 2 cbr 210 ------- 1 1.0 5.0 391 400 - 1.56625 1 2 cbr 210 ------- 1 1.0 5.0 391 400 r 1.56711 1 2 cbr 210 ------- 1 1.0 5.0 377 386 + 1.56711 2 3 cbr 210 ------- 1 1.0 5.0 377 386 - 1.56711 2 3 cbr 210 ------- 1 1.0 5.0 377 386 r 1.56797 2 3 cbr 210 ------- 1 1.0 5.0 363 371 + 1.56797 3 5 cbr 210 ------- 1 1.0 5.0 363 371 - 1.56797 3 5 cbr 210 ------- 1 1.0 5.0 363 371 r 1.56883 3 5 cbr 210 ------- 1 1.0 5.0 349 357 + 1.57 1 2 cbr 210 ------- 1 1.0 5.0 392 401 - 1.57 1 2 cbr 210 ------- 1 1.0 5.0 392 401 r 1.57086 1 2 cbr 210 ------- 1 1.0 5.0 378 387 + 1.57086 2 3 cbr 210 ------- 1 1.0 5.0 378 387 - 1.57086 2 3 cbr 210 ------- 1 1.0 5.0 378 387 r 1.57172 2 3 cbr 210 ------- 1 1.0 5.0 364 372 + 1.57172 3 5 cbr 210 ------- 1 1.0 5.0 364 372 - 1.57172 3 5 cbr 210 ------- 1 1.0 5.0 364 372 r 1.57258 3 5 cbr 210 ------- 1 1.0 5.0 350 358 + 1.57375 1 2 cbr 210 ------- 1 1.0 5.0 393 402 - 1.57375 1 2 cbr 210 ------- 1 1.0 5.0 393 402 r 1.57461 1 2 cbr 210 ------- 1 1.0 5.0 379 388 + 1.57461 2 3 cbr 210 ------- 1 1.0 5.0 379 388 - 1.57461 2 3 cbr 210 ------- 1 1.0 5.0 379 388 r 1.57539 0 2 tcp 1000 ------- 0 0.0 4.0 4 384 + 1.57539 2 3 tcp 1000 ------- 0 0.0 4.0 4 384 r 1.57547 2 3 cbr 210 ------- 1 1.0 5.0 365 373 + 1.57547 3 5 cbr 210 ------- 1 1.0 5.0 365 373 - 1.57547 3 5 cbr 210 ------- 1 1.0 5.0 365 373 r 1.57633 3 5 cbr 210 ------- 1 1.0 5.0 351 359 + 1.5775 1 2 cbr 210 ------- 1 1.0 5.0 394 403 - 1.5775 1 2 cbr 210 ------- 1 1.0 5.0 394 403 - 1.57797 2 3 tcp 1000 ------- 0 0.0 4.0 4 384 r 1.57836 1 2 cbr 210 ------- 1 1.0 5.0 380 389 + 1.57836 2 3 cbr 210 ------- 1 1.0 5.0 380 389 r 1.57922 2 3 cbr 210 ------- 1 1.0 5.0 366 374 + 1.57922 3 5 cbr 210 ------- 1 1.0 5.0 366 374 - 1.57922 3 5 cbr 210 ------- 1 1.0 5.0 366 374 r 1.58008 3 5 cbr 210 ------- 1 1.0 5.0 352 360 + 1.58125 1 2 cbr 210 ------- 1 1.0 5.0 395 404 - 1.58125 1 2 cbr 210 ------- 1 1.0 5.0 395 404 r 1.58211 1 2 cbr 210 ------- 1 1.0 5.0 381 390 + 1.58211 2 3 cbr 210 ------- 1 1.0 5.0 381 390 d 1.58211 2 3 cbr 210 ------- 1 1.0 5.0 381 390 r 1.58297 2 3 cbr 210 ------- 1 1.0 5.0 367 375 + 1.58297 3 5 cbr 210 ------- 1 1.0 5.0 367 375 - 1.58297 3 5 cbr 210 ------- 1 1.0 5.0 367 375 r 1.58383 3 5 cbr 210 ------- 1 1.0 5.0 353 361 + 1.585 1 2 cbr 210 ------- 1 1.0 5.0 396 405 - 1.585 1 2 cbr 210 ------- 1 1.0 5.0 396 405 r 1.58586 1 2 cbr 210 ------- 1 1.0 5.0 382 391 + 1.58586 2 3 cbr 210 ------- 1 1.0 5.0 382 391 d 1.58586 2 3 cbr 210 ------- 1 1.0 5.0 382 391 r 1.58672 2 3 cbr 210 ------- 1 1.0 5.0 368 376 + 1.58672 3 5 cbr 210 ------- 1 1.0 5.0 368 376 - 1.58672 3 5 cbr 210 ------- 1 1.0 5.0 368 376 r 1.58758 3 5 cbr 210 ------- 1 1.0 5.0 354 362 + 1.58875 1 2 cbr 210 ------- 1 1.0 5.0 397 406 - 1.58875 1 2 cbr 210 ------- 1 1.0 5.0 397 406 r 1.58961 1 2 cbr 210 ------- 1 1.0 5.0 383 392 + 1.58961 2 3 cbr 210 ------- 1 1.0 5.0 383 392 d 1.58961 2 3 cbr 210 ------- 1 1.0 5.0 383 392 r 1.59047 2 3 cbr 210 ------- 1 1.0 5.0 369 377 + 1.59047 3 5 cbr 210 ------- 1 1.0 5.0 369 377 - 1.59047 3 5 cbr 210 ------- 1 1.0 5.0 369 377 r 1.59133 3 5 cbr 210 ------- 1 1.0 5.0 355 363 + 1.5925 1 2 cbr 210 ------- 1 1.0 5.0 398 407 - 1.5925 1 2 cbr 210 ------- 1 1.0 5.0 398 407 r 1.59336 1 2 cbr 210 ------- 1 1.0 5.0 384 393 + 1.59336 2 3 cbr 210 ------- 1 1.0 5.0 384 393 d 1.59336 2 3 cbr 210 ------- 1 1.0 5.0 384 393 - 1.59397 2 3 cbr 210 ------- 1 1.0 5.0 380 389 r 1.59422 2 3 cbr 210 ------- 1 1.0 5.0 370 378 + 1.59422 3 5 cbr 210 ------- 1 1.0 5.0 370 378 - 1.59422 3 5 cbr 210 ------- 1 1.0 5.0 370 378 r 1.59508 3 5 cbr 210 ------- 1 1.0 5.0 356 364 + 1.59625 1 2 cbr 210 ------- 1 1.0 5.0 399 408 - 1.59625 1 2 cbr 210 ------- 1 1.0 5.0 399 408 r 1.59711 1 2 cbr 210 ------- 1 1.0 5.0 385 394 + 1.59711 2 3 cbr 210 ------- 1 1.0 5.0 385 394 - 1.59733 2 3 cbr 210 ------- 1 1.0 5.0 385 394 r 1.59797 2 3 cbr 210 ------- 1 1.0 5.0 371 379 + 1.59797 3 5 cbr 210 ------- 1 1.0 5.0 371 379 - 1.59797 3 5 cbr 210 ------- 1 1.0 5.0 371 379 r 1.59883 3 5 cbr 210 ------- 1 1.0 5.0 357 365 + 1.6 1 2 cbr 210 ------- 1 1.0 5.0 400 409 - 1.6 1 2 cbr 210 ------- 1 1.0 5.0 400 409 r 1.60086 1 2 cbr 210 ------- 1 1.0 5.0 386 395 + 1.60086 2 3 cbr 210 ------- 1 1.0 5.0 386 395 - 1.60086 2 3 cbr 210 ------- 1 1.0 5.0 386 395 r 1.60172 2 3 cbr 210 ------- 1 1.0 5.0 372 380 + 1.60172 3 5 cbr 210 ------- 1 1.0 5.0 372 380 - 1.60172 3 5 cbr 210 ------- 1 1.0 5.0 372 380 r 1.60258 3 5 cbr 210 ------- 1 1.0 5.0 358 366 + 1.60375 1 2 cbr 210 ------- 1 1.0 5.0 401 410 - 1.60375 1 2 cbr 210 ------- 1 1.0 5.0 401 410 r 1.60461 1 2 cbr 210 ------- 1 1.0 5.0 387 396 + 1.60461 2 3 cbr 210 ------- 1 1.0 5.0 387 396 - 1.60461 2 3 cbr 210 ------- 1 1.0 5.0 387 396 r 1.60547 2 3 cbr 210 ------- 1 1.0 5.0 373 381 + 1.60547 3 5 cbr 210 ------- 1 1.0 5.0 373 381 - 1.60547 3 5 cbr 210 ------- 1 1.0 5.0 373 381 r 1.60633 3 5 cbr 210 ------- 1 1.0 5.0 359 367 + 1.6075 1 2 cbr 210 ------- 1 1.0 5.0 402 411 - 1.6075 1 2 cbr 210 ------- 1 1.0 5.0 402 411 r 1.60836 1 2 cbr 210 ------- 1 1.0 5.0 388 397 + 1.60836 2 3 cbr 210 ------- 1 1.0 5.0 388 397 - 1.60836 2 3 cbr 210 ------- 1 1.0 5.0 388 397 r 1.60922 2 3 cbr 210 ------- 1 1.0 5.0 374 382 + 1.60922 3 5 cbr 210 ------- 1 1.0 5.0 374 382 - 1.60922 3 5 cbr 210 ------- 1 1.0 5.0 374 382 r 1.61008 3 5 cbr 210 ------- 1 1.0 5.0 360 368 + 1.61125 1 2 cbr 210 ------- 1 1.0 5.0 403 412 - 1.61125 1 2 cbr 210 ------- 1 1.0 5.0 403 412 r 1.61211 1 2 cbr 210 ------- 1 1.0 5.0 389 398 + 1.61211 2 3 cbr 210 ------- 1 1.0 5.0 389 398 - 1.61211 2 3 cbr 210 ------- 1 1.0 5.0 389 398 r 1.61297 2 3 cbr 210 ------- 1 1.0 5.0 375 383 + 1.61297 3 5 cbr 210 ------- 1 1.0 5.0 375 383 - 1.61297 3 5 cbr 210 ------- 1 1.0 5.0 375 383 r 1.61383 3 5 cbr 210 ------- 1 1.0 5.0 361 369 + 1.615 1 2 cbr 210 ------- 1 1.0 5.0 404 413 - 1.615 1 2 cbr 210 ------- 1 1.0 5.0 404 413 r 1.61586 1 2 cbr 210 ------- 1 1.0 5.0 390 399 + 1.61586 2 3 cbr 210 ------- 1 1.0 5.0 390 399 - 1.61586 2 3 cbr 210 ------- 1 1.0 5.0 390 399 r 1.61672 2 3 cbr 210 ------- 1 1.0 5.0 376 385 + 1.61672 3 5 cbr 210 ------- 1 1.0 5.0 376 385 - 1.61672 3 5 cbr 210 ------- 1 1.0 5.0 376 385 r 1.61758 3 5 cbr 210 ------- 1 1.0 5.0 362 370 + 1.61875 1 2 cbr 210 ------- 1 1.0 5.0 405 414 - 1.61875 1 2 cbr 210 ------- 1 1.0 5.0 405 414 r 1.61961 1 2 cbr 210 ------- 1 1.0 5.0 391 400 + 1.61961 2 3 cbr 210 ------- 1 1.0 5.0 391 400 - 1.61961 2 3 cbr 210 ------- 1 1.0 5.0 391 400 r 1.62047 2 3 cbr 210 ------- 1 1.0 5.0 377 386 + 1.62047 3 5 cbr 210 ------- 1 1.0 5.0 377 386 - 1.62047 3 5 cbr 210 ------- 1 1.0 5.0 377 386 r 1.62133 3 5 cbr 210 ------- 1 1.0 5.0 363 371 + 1.6225 1 2 cbr 210 ------- 1 1.0 5.0 406 415 - 1.6225 1 2 cbr 210 ------- 1 1.0 5.0 406 415 r 1.62336 1 2 cbr 210 ------- 1 1.0 5.0 392 401 + 1.62336 2 3 cbr 210 ------- 1 1.0 5.0 392 401 - 1.62336 2 3 cbr 210 ------- 1 1.0 5.0 392 401 r 1.62422 2 3 cbr 210 ------- 1 1.0 5.0 378 387 + 1.62422 3 5 cbr 210 ------- 1 1.0 5.0 378 387 - 1.62422 3 5 cbr 210 ------- 1 1.0 5.0 378 387 r 1.62508 3 5 cbr 210 ------- 1 1.0 5.0 364 372 + 1.62625 1 2 cbr 210 ------- 1 1.0 5.0 407 416 - 1.62625 1 2 cbr 210 ------- 1 1.0 5.0 407 416 r 1.62711 1 2 cbr 210 ------- 1 1.0 5.0 393 402 + 1.62711 2 3 cbr 210 ------- 1 1.0 5.0 393 402 - 1.62711 2 3 cbr 210 ------- 1 1.0 5.0 393 402 r 1.62797 2 3 cbr 210 ------- 1 1.0 5.0 379 388 + 1.62797 3 5 cbr 210 ------- 1 1.0 5.0 379 388 - 1.62797 3 5 cbr 210 ------- 1 1.0 5.0 379 388 r 1.62883 3 5 cbr 210 ------- 1 1.0 5.0 365 373 + 1.63 1 2 cbr 210 ------- 1 1.0 5.0 408 417 - 1.63 1 2 cbr 210 ------- 1 1.0 5.0 408 417 r 1.63086 1 2 cbr 210 ------- 1 1.0 5.0 394 403 + 1.63086 2 3 cbr 210 ------- 1 1.0 5.0 394 403 - 1.63086 2 3 cbr 210 ------- 1 1.0 5.0 394 403 r 1.63258 3 5 cbr 210 ------- 1 1.0 5.0 366 374 + 1.63375 1 2 cbr 210 ------- 1 1.0 5.0 409 418 - 1.63375 1 2 cbr 210 ------- 1 1.0 5.0 409 418 r 1.63461 1 2 cbr 210 ------- 1 1.0 5.0 395 404 + 1.63461 2 3 cbr 210 ------- 1 1.0 5.0 395 404 - 1.63461 2 3 cbr 210 ------- 1 1.0 5.0 395 404 r 1.63633 3 5 cbr 210 ------- 1 1.0 5.0 367 375 + 1.6375 1 2 cbr 210 ------- 1 1.0 5.0 410 419 - 1.6375 1 2 cbr 210 ------- 1 1.0 5.0 410 419 r 1.63836 1 2 cbr 210 ------- 1 1.0 5.0 396 405 + 1.63836 2 3 cbr 210 ------- 1 1.0 5.0 396 405 - 1.63836 2 3 cbr 210 ------- 1 1.0 5.0 396 405 r 1.64008 3 5 cbr 210 ------- 1 1.0 5.0 368 376 + 1.64125 1 2 cbr 210 ------- 1 1.0 5.0 411 420 - 1.64125 1 2 cbr 210 ------- 1 1.0 5.0 411 420 r 1.64211 1 2 cbr 210 ------- 1 1.0 5.0 397 406 + 1.64211 2 3 cbr 210 ------- 1 1.0 5.0 397 406 - 1.64211 2 3 cbr 210 ------- 1 1.0 5.0 397 406 r 1.64383 3 5 cbr 210 ------- 1 1.0 5.0 369 377 r 1.64397 2 3 tcp 1000 ------- 0 0.0 4.0 4 384 + 1.64397 3 4 tcp 1000 ------- 0 0.0 4.0 4 384 - 1.64397 3 4 tcp 1000 ------- 0 0.0 4.0 4 384 + 1.645 1 2 cbr 210 ------- 1 1.0 5.0 412 421 - 1.645 1 2 cbr 210 ------- 1 1.0 5.0 412 421 r 1.64586 1 2 cbr 210 ------- 1 1.0 5.0 398 407 + 1.64586 2 3 cbr 210 ------- 1 1.0 5.0 398 407 - 1.64586 2 3 cbr 210 ------- 1 1.0 5.0 398 407 r 1.64733 2 3 cbr 210 ------- 1 1.0 5.0 380 389 + 1.64733 3 5 cbr 210 ------- 1 1.0 5.0 380 389 - 1.64733 3 5 cbr 210 ------- 1 1.0 5.0 380 389 r 1.64758 3 5 cbr 210 ------- 1 1.0 5.0 370 378 + 1.64875 1 2 cbr 210 ------- 1 1.0 5.0 413 422 - 1.64875 1 2 cbr 210 ------- 1 1.0 5.0 413 422 r 1.64961 1 2 cbr 210 ------- 1 1.0 5.0 399 408 + 1.64961 2 3 cbr 210 ------- 1 1.0 5.0 399 408 - 1.64961 2 3 cbr 210 ------- 1 1.0 5.0 399 408 r 1.65069 2 3 cbr 210 ------- 1 1.0 5.0 385 394 + 1.65069 3 5 cbr 210 ------- 1 1.0 5.0 385 394 - 1.65069 3 5 cbr 210 ------- 1 1.0 5.0 385 394 r 1.65133 3 5 cbr 210 ------- 1 1.0 5.0 371 379 + 1.6525 1 2 cbr 210 ------- 1 1.0 5.0 414 423 - 1.6525 1 2 cbr 210 ------- 1 1.0 5.0 414 423 r 1.65336 1 2 cbr 210 ------- 1 1.0 5.0 400 409 + 1.65336 2 3 cbr 210 ------- 1 1.0 5.0 400 409 - 1.65336 2 3 cbr 210 ------- 1 1.0 5.0 400 409 r 1.65422 2 3 cbr 210 ------- 1 1.0 5.0 386 395 + 1.65422 3 5 cbr 210 ------- 1 1.0 5.0 386 395 - 1.65422 3 5 cbr 210 ------- 1 1.0 5.0 386 395 r 1.65508 3 5 cbr 210 ------- 1 1.0 5.0 372 380 + 1.65625 1 2 cbr 210 ------- 1 1.0 5.0 415 424 - 1.65625 1 2 cbr 210 ------- 1 1.0 5.0 415 424 r 1.65711 1 2 cbr 210 ------- 1 1.0 5.0 401 410 + 1.65711 2 3 cbr 210 ------- 1 1.0 5.0 401 410 - 1.65711 2 3 cbr 210 ------- 1 1.0 5.0 401 410 r 1.65797 2 3 cbr 210 ------- 1 1.0 5.0 387 396 + 1.65797 3 5 cbr 210 ------- 1 1.0 5.0 387 396 - 1.65797 3 5 cbr 210 ------- 1 1.0 5.0 387 396 r 1.65883 3 5 cbr 210 ------- 1 1.0 5.0 373 381 + 1.66 1 2 cbr 210 ------- 1 1.0 5.0 416 425 - 1.66 1 2 cbr 210 ------- 1 1.0 5.0 416 425 r 1.66086 1 2 cbr 210 ------- 1 1.0 5.0 402 411 + 1.66086 2 3 cbr 210 ------- 1 1.0 5.0 402 411 - 1.66086 2 3 cbr 210 ------- 1 1.0 5.0 402 411 r 1.66172 2 3 cbr 210 ------- 1 1.0 5.0 388 397 + 1.66172 3 5 cbr 210 ------- 1 1.0 5.0 388 397 - 1.66172 3 5 cbr 210 ------- 1 1.0 5.0 388 397 r 1.66258 3 5 cbr 210 ------- 1 1.0 5.0 374 382 + 1.66375 1 2 cbr 210 ------- 1 1.0 5.0 417 426 - 1.66375 1 2 cbr 210 ------- 1 1.0 5.0 417 426 r 1.66461 1 2 cbr 210 ------- 1 1.0 5.0 403 412 + 1.66461 2 3 cbr 210 ------- 1 1.0 5.0 403 412 - 1.66461 2 3 cbr 210 ------- 1 1.0 5.0 403 412 r 1.66547 2 3 cbr 210 ------- 1 1.0 5.0 389 398 + 1.66547 3 5 cbr 210 ------- 1 1.0 5.0 389 398 - 1.66547 3 5 cbr 210 ------- 1 1.0 5.0 389 398 r 1.66633 3 5 cbr 210 ------- 1 1.0 5.0 375 383 + 1.6675 1 2 cbr 210 ------- 1 1.0 5.0 418 427 - 1.6675 1 2 cbr 210 ------- 1 1.0 5.0 418 427 r 1.66836 1 2 cbr 210 ------- 1 1.0 5.0 404 413 + 1.66836 2 3 cbr 210 ------- 1 1.0 5.0 404 413 - 1.66836 2 3 cbr 210 ------- 1 1.0 5.0 404 413 r 1.66922 2 3 cbr 210 ------- 1 1.0 5.0 390 399 + 1.66922 3 5 cbr 210 ------- 1 1.0 5.0 390 399 - 1.66922 3 5 cbr 210 ------- 1 1.0 5.0 390 399 r 1.67008 3 5 cbr 210 ------- 1 1.0 5.0 376 385 + 1.67125 1 2 cbr 210 ------- 1 1.0 5.0 419 428 - 1.67125 1 2 cbr 210 ------- 1 1.0 5.0 419 428 r 1.67211 1 2 cbr 210 ------- 1 1.0 5.0 405 414 + 1.67211 2 3 cbr 210 ------- 1 1.0 5.0 405 414 - 1.67211 2 3 cbr 210 ------- 1 1.0 5.0 405 414 r 1.67297 2 3 cbr 210 ------- 1 1.0 5.0 391 400 + 1.67297 3 5 cbr 210 ------- 1 1.0 5.0 391 400 - 1.67297 3 5 cbr 210 ------- 1 1.0 5.0 391 400 r 1.67383 3 5 cbr 210 ------- 1 1.0 5.0 377 386 + 1.675 1 2 cbr 210 ------- 1 1.0 5.0 420 429 - 1.675 1 2 cbr 210 ------- 1 1.0 5.0 420 429 r 1.67586 1 2 cbr 210 ------- 1 1.0 5.0 406 415 + 1.67586 2 3 cbr 210 ------- 1 1.0 5.0 406 415 - 1.67586 2 3 cbr 210 ------- 1 1.0 5.0 406 415 r 1.67672 2 3 cbr 210 ------- 1 1.0 5.0 392 401 + 1.67672 3 5 cbr 210 ------- 1 1.0 5.0 392 401 - 1.67672 3 5 cbr 210 ------- 1 1.0 5.0 392 401 r 1.67758 3 5 cbr 210 ------- 1 1.0 5.0 378 387 + 1.67875 1 2 cbr 210 ------- 1 1.0 5.0 421 430 - 1.67875 1 2 cbr 210 ------- 1 1.0 5.0 421 430 r 1.67961 1 2 cbr 210 ------- 1 1.0 5.0 407 416 + 1.67961 2 3 cbr 210 ------- 1 1.0 5.0 407 416 - 1.67961 2 3 cbr 210 ------- 1 1.0 5.0 407 416 r 1.68047 2 3 cbr 210 ------- 1 1.0 5.0 393 402 + 1.68047 3 5 cbr 210 ------- 1 1.0 5.0 393 402 - 1.68047 3 5 cbr 210 ------- 1 1.0 5.0 393 402 r 1.68133 3 5 cbr 210 ------- 1 1.0 5.0 379 388 + 1.6825 1 2 cbr 210 ------- 1 1.0 5.0 422 431 - 1.6825 1 2 cbr 210 ------- 1 1.0 5.0 422 431 r 1.68336 1 2 cbr 210 ------- 1 1.0 5.0 408 417 + 1.68336 2 3 cbr 210 ------- 1 1.0 5.0 408 417 - 1.68336 2 3 cbr 210 ------- 1 1.0 5.0 408 417 r 1.68422 2 3 cbr 210 ------- 1 1.0 5.0 394 403 + 1.68422 3 5 cbr 210 ------- 1 1.0 5.0 394 403 - 1.68422 3 5 cbr 210 ------- 1 1.0 5.0 394 403 + 1.68625 1 2 cbr 210 ------- 1 1.0 5.0 423 432 - 1.68625 1 2 cbr 210 ------- 1 1.0 5.0 423 432 r 1.68711 1 2 cbr 210 ------- 1 1.0 5.0 409 418 + 1.68711 2 3 cbr 210 ------- 1 1.0 5.0 409 418 - 1.68711 2 3 cbr 210 ------- 1 1.0 5.0 409 418 r 1.68797 2 3 cbr 210 ------- 1 1.0 5.0 395 404 + 1.68797 3 5 cbr 210 ------- 1 1.0 5.0 395 404 - 1.68797 3 5 cbr 210 ------- 1 1.0 5.0 395 404 + 1.69 1 2 cbr 210 ------- 1 1.0 5.0 424 433 - 1.69 1 2 cbr 210 ------- 1 1.0 5.0 424 433 r 1.69086 1 2 cbr 210 ------- 1 1.0 5.0 410 419 + 1.69086 2 3 cbr 210 ------- 1 1.0 5.0 410 419 - 1.69086 2 3 cbr 210 ------- 1 1.0 5.0 410 419 r 1.69172 2 3 cbr 210 ------- 1 1.0 5.0 396 405 + 1.69172 3 5 cbr 210 ------- 1 1.0 5.0 396 405 - 1.69172 3 5 cbr 210 ------- 1 1.0 5.0 396 405 + 1.69375 1 2 cbr 210 ------- 1 1.0 5.0 425 434 - 1.69375 1 2 cbr 210 ------- 1 1.0 5.0 425 434 r 1.69461 1 2 cbr 210 ------- 1 1.0 5.0 411 420 + 1.69461 2 3 cbr 210 ------- 1 1.0 5.0 411 420 - 1.69461 2 3 cbr 210 ------- 1 1.0 5.0 411 420 r 1.69547 2 3 cbr 210 ------- 1 1.0 5.0 397 406 + 1.69547 3 5 cbr 210 ------- 1 1.0 5.0 397 406 - 1.69547 3 5 cbr 210 ------- 1 1.0 5.0 397 406 + 1.6975 1 2 cbr 210 ------- 1 1.0 5.0 426 435 - 1.6975 1 2 cbr 210 ------- 1 1.0 5.0 426 435 r 1.69836 1 2 cbr 210 ------- 1 1.0 5.0 412 421 + 1.69836 2 3 cbr 210 ------- 1 1.0 5.0 412 421 - 1.69836 2 3 cbr 210 ------- 1 1.0 5.0 412 421 r 1.69922 2 3 cbr 210 ------- 1 1.0 5.0 398 407 + 1.69922 3 5 cbr 210 ------- 1 1.0 5.0 398 407 - 1.69922 3 5 cbr 210 ------- 1 1.0 5.0 398 407 v 1.7 eval {set sim_annotation {Send Packet_2}} r 1.70069 3 5 cbr 210 ------- 1 1.0 5.0 380 389 + 1.70125 1 2 cbr 210 ------- 1 1.0 5.0 427 436 - 1.70125 1 2 cbr 210 ------- 1 1.0 5.0 427 436 r 1.70211 1 2 cbr 210 ------- 1 1.0 5.0 413 422 + 1.70211 2 3 cbr 210 ------- 1 1.0 5.0 413 422 - 1.70211 2 3 cbr 210 ------- 1 1.0 5.0 413 422 r 1.70297 2 3 cbr 210 ------- 1 1.0 5.0 399 408 + 1.70297 3 5 cbr 210 ------- 1 1.0 5.0 399 408 - 1.70297 3 5 cbr 210 ------- 1 1.0 5.0 399 408 r 1.70405 3 5 cbr 210 ------- 1 1.0 5.0 385 394 + 1.705 1 2 cbr 210 ------- 1 1.0 5.0 428 437 - 1.705 1 2 cbr 210 ------- 1 1.0 5.0 428 437 r 1.70586 1 2 cbr 210 ------- 1 1.0 5.0 414 423 + 1.70586 2 3 cbr 210 ------- 1 1.0 5.0 414 423 - 1.70586 2 3 cbr 210 ------- 1 1.0 5.0 414 423 r 1.70672 2 3 cbr 210 ------- 1 1.0 5.0 400 409 + 1.70672 3 5 cbr 210 ------- 1 1.0 5.0 400 409 - 1.70672 3 5 cbr 210 ------- 1 1.0 5.0 400 409 r 1.70758 3 5 cbr 210 ------- 1 1.0 5.0 386 395 + 1.70875 1 2 cbr 210 ------- 1 1.0 5.0 429 438 - 1.70875 1 2 cbr 210 ------- 1 1.0 5.0 429 438 r 1.70961 1 2 cbr 210 ------- 1 1.0 5.0 415 424 + 1.70961 2 3 cbr 210 ------- 1 1.0 5.0 415 424 - 1.70961 2 3 cbr 210 ------- 1 1.0 5.0 415 424 r 1.70997 3 4 tcp 1000 ------- 0 0.0 4.0 4 384 + 1.70997 4 3 ack 40 ------- 0 4.0 0.0 4 439 - 1.70997 4 3 ack 40 ------- 0 4.0 0.0 4 439 r 1.71047 2 3 cbr 210 ------- 1 1.0 5.0 401 410 + 1.71047 3 5 cbr 210 ------- 1 1.0 5.0 401 410 - 1.71047 3 5 cbr 210 ------- 1 1.0 5.0 401 410 r 1.71133 3 5 cbr 210 ------- 1 1.0 5.0 387 396 + 1.7125 1 2 cbr 210 ------- 1 1.0 5.0 430 440 - 1.7125 1 2 cbr 210 ------- 1 1.0 5.0 430 440 r 1.71336 1 2 cbr 210 ------- 1 1.0 5.0 416 425 + 1.71336 2 3 cbr 210 ------- 1 1.0 5.0 416 425 - 1.71336 2 3 cbr 210 ------- 1 1.0 5.0 416 425 r 1.71422 2 3 cbr 210 ------- 1 1.0 5.0 402 411 + 1.71422 3 5 cbr 210 ------- 1 1.0 5.0 402 411 - 1.71422 3 5 cbr 210 ------- 1 1.0 5.0 402 411 r 1.71508 3 5 cbr 210 ------- 1 1.0 5.0 388 397 + 1.71625 1 2 cbr 210 ------- 1 1.0 5.0 431 441 - 1.71625 1 2 cbr 210 ------- 1 1.0 5.0 431 441 r 1.71711 1 2 cbr 210 ------- 1 1.0 5.0 417 426 + 1.71711 2 3 cbr 210 ------- 1 1.0 5.0 417 426 - 1.71711 2 3 cbr 210 ------- 1 1.0 5.0 417 426 r 1.71797 2 3 cbr 210 ------- 1 1.0 5.0 403 412 + 1.71797 3 5 cbr 210 ------- 1 1.0 5.0 403 412 - 1.71797 3 5 cbr 210 ------- 1 1.0 5.0 403 412 r 1.71883 3 5 cbr 210 ------- 1 1.0 5.0 389 398 + 1.72 1 2 cbr 210 ------- 1 1.0 5.0 432 442 - 1.72 1 2 cbr 210 ------- 1 1.0 5.0 432 442 r 1.72086 1 2 cbr 210 ------- 1 1.0 5.0 418 427 + 1.72086 2 3 cbr 210 ------- 1 1.0 5.0 418 427 - 1.72086 2 3 cbr 210 ------- 1 1.0 5.0 418 427 r 1.72172 2 3 cbr 210 ------- 1 1.0 5.0 404 413 + 1.72172 3 5 cbr 210 ------- 1 1.0 5.0 404 413 - 1.72172 3 5 cbr 210 ------- 1 1.0 5.0 404 413 r 1.72258 3 5 cbr 210 ------- 1 1.0 5.0 390 399 + 1.72375 1 2 cbr 210 ------- 1 1.0 5.0 433 443 - 1.72375 1 2 cbr 210 ------- 1 1.0 5.0 433 443 r 1.72461 1 2 cbr 210 ------- 1 1.0 5.0 419 428 + 1.72461 2 3 cbr 210 ------- 1 1.0 5.0 419 428 - 1.72461 2 3 cbr 210 ------- 1 1.0 5.0 419 428 r 1.72547 2 3 cbr 210 ------- 1 1.0 5.0 405 414 + 1.72547 3 5 cbr 210 ------- 1 1.0 5.0 405 414 - 1.72547 3 5 cbr 210 ------- 1 1.0 5.0 405 414 r 1.72633 3 5 cbr 210 ------- 1 1.0 5.0 391 400 + 1.7275 1 2 cbr 210 ------- 1 1.0 5.0 434 444 - 1.7275 1 2 cbr 210 ------- 1 1.0 5.0 434 444 r 1.72836 1 2 cbr 210 ------- 1 1.0 5.0 420 429 + 1.72836 2 3 cbr 210 ------- 1 1.0 5.0 420 429 - 1.72836 2 3 cbr 210 ------- 1 1.0 5.0 420 429 r 1.72922 2 3 cbr 210 ------- 1 1.0 5.0 406 415 + 1.72922 3 5 cbr 210 ------- 1 1.0 5.0 406 415 - 1.72922 3 5 cbr 210 ------- 1 1.0 5.0 406 415 r 1.73008 3 5 cbr 210 ------- 1 1.0 5.0 392 401 + 1.73125 1 2 cbr 210 ------- 1 1.0 5.0 435 445 - 1.73125 1 2 cbr 210 ------- 1 1.0 5.0 435 445 r 1.73211 1 2 cbr 210 ------- 1 1.0 5.0 421 430 + 1.73211 2 3 cbr 210 ------- 1 1.0 5.0 421 430 - 1.73211 2 3 cbr 210 ------- 1 1.0 5.0 421 430 r 1.73297 2 3 cbr 210 ------- 1 1.0 5.0 407 416 + 1.73297 3 5 cbr 210 ------- 1 1.0 5.0 407 416 - 1.73297 3 5 cbr 210 ------- 1 1.0 5.0 407 416 r 1.73383 3 5 cbr 210 ------- 1 1.0 5.0 393 402 + 1.735 1 2 cbr 210 ------- 1 1.0 5.0 436 446 - 1.735 1 2 cbr 210 ------- 1 1.0 5.0 436 446 r 1.73586 1 2 cbr 210 ------- 1 1.0 5.0 422 431 + 1.73586 2 3 cbr 210 ------- 1 1.0 5.0 422 431 - 1.73586 2 3 cbr 210 ------- 1 1.0 5.0 422 431 r 1.73672 2 3 cbr 210 ------- 1 1.0 5.0 408 417 + 1.73672 3 5 cbr 210 ------- 1 1.0 5.0 408 417 - 1.73672 3 5 cbr 210 ------- 1 1.0 5.0 408 417 r 1.73758 3 5 cbr 210 ------- 1 1.0 5.0 394 403 + 1.73875 1 2 cbr 210 ------- 1 1.0 5.0 437 447 - 1.73875 1 2 cbr 210 ------- 1 1.0 5.0 437 447 r 1.73961 1 2 cbr 210 ------- 1 1.0 5.0 423 432 + 1.73961 2 3 cbr 210 ------- 1 1.0 5.0 423 432 - 1.73961 2 3 cbr 210 ------- 1 1.0 5.0 423 432 r 1.74047 2 3 cbr 210 ------- 1 1.0 5.0 409 418 + 1.74047 3 5 cbr 210 ------- 1 1.0 5.0 409 418 - 1.74047 3 5 cbr 210 ------- 1 1.0 5.0 409 418 r 1.74133 3 5 cbr 210 ------- 1 1.0 5.0 395 404 + 1.7425 1 2 cbr 210 ------- 1 1.0 5.0 438 448 - 1.7425 1 2 cbr 210 ------- 1 1.0 5.0 438 448 r 1.74336 1 2 cbr 210 ------- 1 1.0 5.0 424 433 + 1.74336 2 3 cbr 210 ------- 1 1.0 5.0 424 433 - 1.74336 2 3 cbr 210 ------- 1 1.0 5.0 424 433 r 1.74422 2 3 cbr 210 ------- 1 1.0 5.0 410 419 + 1.74422 3 5 cbr 210 ------- 1 1.0 5.0 410 419 - 1.74422 3 5 cbr 210 ------- 1 1.0 5.0 410 419 r 1.74508 3 5 cbr 210 ------- 1 1.0 5.0 396 405 + 1.74625 1 2 cbr 210 ------- 1 1.0 5.0 439 449 - 1.74625 1 2 cbr 210 ------- 1 1.0 5.0 439 449 r 1.74711 1 2 cbr 210 ------- 1 1.0 5.0 425 434 + 1.74711 2 3 cbr 210 ------- 1 1.0 5.0 425 434 - 1.74711 2 3 cbr 210 ------- 1 1.0 5.0 425 434 r 1.74797 2 3 cbr 210 ------- 1 1.0 5.0 411 420 + 1.74797 3 5 cbr 210 ------- 1 1.0 5.0 411 420 - 1.74797 3 5 cbr 210 ------- 1 1.0 5.0 411 420 r 1.74883 3 5 cbr 210 ------- 1 1.0 5.0 397 406 + 1.75 1 2 cbr 210 ------- 1 1.0 5.0 440 450 - 1.75 1 2 cbr 210 ------- 1 1.0 5.0 440 450 r 1.75086 1 2 cbr 210 ------- 1 1.0 5.0 426 435 + 1.75086 2 3 cbr 210 ------- 1 1.0 5.0 426 435 - 1.75086 2 3 cbr 210 ------- 1 1.0 5.0 426 435 r 1.75172 2 3 cbr 210 ------- 1 1.0 5.0 412 421 + 1.75172 3 5 cbr 210 ------- 1 1.0 5.0 412 421 - 1.75172 3 5 cbr 210 ------- 1 1.0 5.0 412 421 r 1.75258 3 5 cbr 210 ------- 1 1.0 5.0 398 407 + 1.75375 1 2 cbr 210 ------- 1 1.0 5.0 441 451 - 1.75375 1 2 cbr 210 ------- 1 1.0 5.0 441 451 r 1.75461 1 2 cbr 210 ------- 1 1.0 5.0 427 436 + 1.75461 2 3 cbr 210 ------- 1 1.0 5.0 427 436 - 1.75461 2 3 cbr 210 ------- 1 1.0 5.0 427 436 r 1.75547 2 3 cbr 210 ------- 1 1.0 5.0 413 422 + 1.75547 3 5 cbr 210 ------- 1 1.0 5.0 413 422 - 1.75547 3 5 cbr 210 ------- 1 1.0 5.0 413 422 r 1.75633 3 5 cbr 210 ------- 1 1.0 5.0 399 408 + 1.7575 1 2 cbr 210 ------- 1 1.0 5.0 442 452 - 1.7575 1 2 cbr 210 ------- 1 1.0 5.0 442 452 r 1.75836 1 2 cbr 210 ------- 1 1.0 5.0 428 437 + 1.75836 2 3 cbr 210 ------- 1 1.0 5.0 428 437 - 1.75836 2 3 cbr 210 ------- 1 1.0 5.0 428 437 r 1.75922 2 3 cbr 210 ------- 1 1.0 5.0 414 423 + 1.75922 3 5 cbr 210 ------- 1 1.0 5.0 414 423 - 1.75922 3 5 cbr 210 ------- 1 1.0 5.0 414 423 r 1.76008 3 5 cbr 210 ------- 1 1.0 5.0 400 409 r 1.76061 4 3 ack 40 ------- 0 4.0 0.0 4 439 + 1.76061 3 2 ack 40 ------- 0 4.0 0.0 4 439 - 1.76061 3 2 ack 40 ------- 0 4.0 0.0 4 439 + 1.76125 1 2 cbr 210 ------- 1 1.0 5.0 443 453 - 1.76125 1 2 cbr 210 ------- 1 1.0 5.0 443 453 r 1.76211 1 2 cbr 210 ------- 1 1.0 5.0 429 438 + 1.76211 2 3 cbr 210 ------- 1 1.0 5.0 429 438 - 1.76211 2 3 cbr 210 ------- 1 1.0 5.0 429 438 r 1.76297 2 3 cbr 210 ------- 1 1.0 5.0 415 424 + 1.76297 3 5 cbr 210 ------- 1 1.0 5.0 415 424 - 1.76297 3 5 cbr 210 ------- 1 1.0 5.0 415 424 r 1.76383 3 5 cbr 210 ------- 1 1.0 5.0 401 410 + 1.765 1 2 cbr 210 ------- 1 1.0 5.0 444 454 - 1.765 1 2 cbr 210 ------- 1 1.0 5.0 444 454 r 1.76586 1 2 cbr 210 ------- 1 1.0 5.0 430 440 + 1.76586 2 3 cbr 210 ------- 1 1.0 5.0 430 440 - 1.76586 2 3 cbr 210 ------- 1 1.0 5.0 430 440 r 1.76672 2 3 cbr 210 ------- 1 1.0 5.0 416 425 + 1.76672 3 5 cbr 210 ------- 1 1.0 5.0 416 425 - 1.76672 3 5 cbr 210 ------- 1 1.0 5.0 416 425 r 1.76758 3 5 cbr 210 ------- 1 1.0 5.0 402 411 + 1.76875 1 2 cbr 210 ------- 1 1.0 5.0 445 455 - 1.76875 1 2 cbr 210 ------- 1 1.0 5.0 445 455 r 1.76961 1 2 cbr 210 ------- 1 1.0 5.0 431 441 + 1.76961 2 3 cbr 210 ------- 1 1.0 5.0 431 441 - 1.76961 2 3 cbr 210 ------- 1 1.0 5.0 431 441 r 1.77047 2 3 cbr 210 ------- 1 1.0 5.0 417 426 + 1.77047 3 5 cbr 210 ------- 1 1.0 5.0 417 426 - 1.77047 3 5 cbr 210 ------- 1 1.0 5.0 417 426 r 1.77133 3 5 cbr 210 ------- 1 1.0 5.0 403 412 + 1.7725 1 2 cbr 210 ------- 1 1.0 5.0 446 456 - 1.7725 1 2 cbr 210 ------- 1 1.0 5.0 446 456 r 1.77336 1 2 cbr 210 ------- 1 1.0 5.0 432 442 + 1.77336 2 3 cbr 210 ------- 1 1.0 5.0 432 442 - 1.77336 2 3 cbr 210 ------- 1 1.0 5.0 432 442 r 1.77422 2 3 cbr 210 ------- 1 1.0 5.0 418 427 + 1.77422 3 5 cbr 210 ------- 1 1.0 5.0 418 427 - 1.77422 3 5 cbr 210 ------- 1 1.0 5.0 418 427 r 1.77508 3 5 cbr 210 ------- 1 1.0 5.0 404 413 + 1.77625 1 2 cbr 210 ------- 1 1.0 5.0 447 457 - 1.77625 1 2 cbr 210 ------- 1 1.0 5.0 447 457 r 1.77711 1 2 cbr 210 ------- 1 1.0 5.0 433 443 + 1.77711 2 3 cbr 210 ------- 1 1.0 5.0 433 443 - 1.77711 2 3 cbr 210 ------- 1 1.0 5.0 433 443 r 1.77797 2 3 cbr 210 ------- 1 1.0 5.0 419 428 + 1.77797 3 5 cbr 210 ------- 1 1.0 5.0 419 428 - 1.77797 3 5 cbr 210 ------- 1 1.0 5.0 419 428 r 1.77883 3 5 cbr 210 ------- 1 1.0 5.0 405 414 + 1.78 1 2 cbr 210 ------- 1 1.0 5.0 448 458 - 1.78 1 2 cbr 210 ------- 1 1.0 5.0 448 458 r 1.78086 1 2 cbr 210 ------- 1 1.0 5.0 434 444 + 1.78086 2 3 cbr 210 ------- 1 1.0 5.0 434 444 - 1.78086 2 3 cbr 210 ------- 1 1.0 5.0 434 444 r 1.78172 2 3 cbr 210 ------- 1 1.0 5.0 420 429 + 1.78172 3 5 cbr 210 ------- 1 1.0 5.0 420 429 - 1.78172 3 5 cbr 210 ------- 1 1.0 5.0 420 429 r 1.78258 3 5 cbr 210 ------- 1 1.0 5.0 406 415 + 1.78375 1 2 cbr 210 ------- 1 1.0 5.0 449 459 - 1.78375 1 2 cbr 210 ------- 1 1.0 5.0 449 459 r 1.78461 1 2 cbr 210 ------- 1 1.0 5.0 435 445 + 1.78461 2 3 cbr 210 ------- 1 1.0 5.0 435 445 - 1.78461 2 3 cbr 210 ------- 1 1.0 5.0 435 445 r 1.78547 2 3 cbr 210 ------- 1 1.0 5.0 421 430 + 1.78547 3 5 cbr 210 ------- 1 1.0 5.0 421 430 - 1.78547 3 5 cbr 210 ------- 1 1.0 5.0 421 430 r 1.78633 3 5 cbr 210 ------- 1 1.0 5.0 407 416 + 1.7875 1 2 cbr 210 ------- 1 1.0 5.0 450 460 - 1.7875 1 2 cbr 210 ------- 1 1.0 5.0 450 460 r 1.78836 1 2 cbr 210 ------- 1 1.0 5.0 436 446 + 1.78836 2 3 cbr 210 ------- 1 1.0 5.0 436 446 - 1.78836 2 3 cbr 210 ------- 1 1.0 5.0 436 446 r 1.78922 2 3 cbr 210 ------- 1 1.0 5.0 422 431 + 1.78922 3 5 cbr 210 ------- 1 1.0 5.0 422 431 - 1.78922 3 5 cbr 210 ------- 1 1.0 5.0 422 431 r 1.79008 3 5 cbr 210 ------- 1 1.0 5.0 408 417 + 1.79125 1 2 cbr 210 ------- 1 1.0 5.0 451 461 - 1.79125 1 2 cbr 210 ------- 1 1.0 5.0 451 461 r 1.79211 1 2 cbr 210 ------- 1 1.0 5.0 437 447 + 1.79211 2 3 cbr 210 ------- 1 1.0 5.0 437 447 - 1.79211 2 3 cbr 210 ------- 1 1.0 5.0 437 447 r 1.79297 2 3 cbr 210 ------- 1 1.0 5.0 423 432 + 1.79297 3 5 cbr 210 ------- 1 1.0 5.0 423 432 - 1.79297 3 5 cbr 210 ------- 1 1.0 5.0 423 432 r 1.79383 3 5 cbr 210 ------- 1 1.0 5.0 409 418 + 1.795 1 2 cbr 210 ------- 1 1.0 5.0 452 462 - 1.795 1 2 cbr 210 ------- 1 1.0 5.0 452 462 r 1.79586 1 2 cbr 210 ------- 1 1.0 5.0 438 448 + 1.79586 2 3 cbr 210 ------- 1 1.0 5.0 438 448 - 1.79586 2 3 cbr 210 ------- 1 1.0 5.0 438 448 r 1.79672 2 3 cbr 210 ------- 1 1.0 5.0 424 433 + 1.79672 3 5 cbr 210 ------- 1 1.0 5.0 424 433 - 1.79672 3 5 cbr 210 ------- 1 1.0 5.0 424 433 r 1.79758 3 5 cbr 210 ------- 1 1.0 5.0 410 419 + 1.79875 1 2 cbr 210 ------- 1 1.0 5.0 453 463 - 1.79875 1 2 cbr 210 ------- 1 1.0 5.0 453 463 r 1.79961 1 2 cbr 210 ------- 1 1.0 5.0 439 449 + 1.79961 2 3 cbr 210 ------- 1 1.0 5.0 439 449 - 1.79961 2 3 cbr 210 ------- 1 1.0 5.0 439 449 r 1.80047 2 3 cbr 210 ------- 1 1.0 5.0 425 434 + 1.80047 3 5 cbr 210 ------- 1 1.0 5.0 425 434 - 1.80047 3 5 cbr 210 ------- 1 1.0 5.0 425 434 r 1.80133 3 5 cbr 210 ------- 1 1.0 5.0 411 420 + 1.8025 1 2 cbr 210 ------- 1 1.0 5.0 454 464 - 1.8025 1 2 cbr 210 ------- 1 1.0 5.0 454 464 r 1.80336 1 2 cbr 210 ------- 1 1.0 5.0 440 450 + 1.80336 2 3 cbr 210 ------- 1 1.0 5.0 440 450 - 1.80336 2 3 cbr 210 ------- 1 1.0 5.0 440 450 r 1.80422 2 3 cbr 210 ------- 1 1.0 5.0 426 435 + 1.80422 3 5 cbr 210 ------- 1 1.0 5.0 426 435 - 1.80422 3 5 cbr 210 ------- 1 1.0 5.0 426 435 r 1.80508 3 5 cbr 210 ------- 1 1.0 5.0 412 421 + 1.80625 1 2 cbr 210 ------- 1 1.0 5.0 455 465 - 1.80625 1 2 cbr 210 ------- 1 1.0 5.0 455 465 r 1.80711 1 2 cbr 210 ------- 1 1.0 5.0 441 451 + 1.80711 2 3 cbr 210 ------- 1 1.0 5.0 441 451 - 1.80711 2 3 cbr 210 ------- 1 1.0 5.0 441 451 r 1.80797 2 3 cbr 210 ------- 1 1.0 5.0 427 436 + 1.80797 3 5 cbr 210 ------- 1 1.0 5.0 427 436 - 1.80797 3 5 cbr 210 ------- 1 1.0 5.0 427 436 r 1.80883 3 5 cbr 210 ------- 1 1.0 5.0 413 422 + 1.81 1 2 cbr 210 ------- 1 1.0 5.0 456 466 - 1.81 1 2 cbr 210 ------- 1 1.0 5.0 456 466 r 1.81086 1 2 cbr 210 ------- 1 1.0 5.0 442 452 + 1.81086 2 3 cbr 210 ------- 1 1.0 5.0 442 452 - 1.81086 2 3 cbr 210 ------- 1 1.0 5.0 442 452 r 1.81125 3 2 ack 40 ------- 0 4.0 0.0 4 439 + 1.81125 2 0 ack 40 ------- 0 4.0 0.0 4 439 - 1.81125 2 0 ack 40 ------- 0 4.0 0.0 4 439 r 1.81172 2 3 cbr 210 ------- 1 1.0 5.0 428 437 + 1.81172 3 5 cbr 210 ------- 1 1.0 5.0 428 437 - 1.81172 3 5 cbr 210 ------- 1 1.0 5.0 428 437 r 1.81258 3 5 cbr 210 ------- 1 1.0 5.0 414 423 + 1.81375 1 2 cbr 210 ------- 1 1.0 5.0 457 467 - 1.81375 1 2 cbr 210 ------- 1 1.0 5.0 457 467 r 1.81461 1 2 cbr 210 ------- 1 1.0 5.0 443 453 + 1.81461 2 3 cbr 210 ------- 1 1.0 5.0 443 453 - 1.81461 2 3 cbr 210 ------- 1 1.0 5.0 443 453 r 1.81547 2 3 cbr 210 ------- 1 1.0 5.0 429 438 + 1.81547 3 5 cbr 210 ------- 1 1.0 5.0 429 438 - 1.81547 3 5 cbr 210 ------- 1 1.0 5.0 429 438 r 1.81633 3 5 cbr 210 ------- 1 1.0 5.0 415 424 + 1.8175 1 2 cbr 210 ------- 1 1.0 5.0 458 468 - 1.8175 1 2 cbr 210 ------- 1 1.0 5.0 458 468 r 1.81836 1 2 cbr 210 ------- 1 1.0 5.0 444 454 + 1.81836 2 3 cbr 210 ------- 1 1.0 5.0 444 454 - 1.81836 2 3 cbr 210 ------- 1 1.0 5.0 444 454 r 1.81922 2 3 cbr 210 ------- 1 1.0 5.0 430 440 + 1.81922 3 5 cbr 210 ------- 1 1.0 5.0 430 440 - 1.81922 3 5 cbr 210 ------- 1 1.0 5.0 430 440 r 1.82008 3 5 cbr 210 ------- 1 1.0 5.0 416 425 + 1.82125 1 2 cbr 210 ------- 1 1.0 5.0 459 469 - 1.82125 1 2 cbr 210 ------- 1 1.0 5.0 459 469 r 1.82211 1 2 cbr 210 ------- 1 1.0 5.0 445 455 + 1.82211 2 3 cbr 210 ------- 1 1.0 5.0 445 455 - 1.82211 2 3 cbr 210 ------- 1 1.0 5.0 445 455 r 1.82297 2 3 cbr 210 ------- 1 1.0 5.0 431 441 + 1.82297 3 5 cbr 210 ------- 1 1.0 5.0 431 441 - 1.82297 3 5 cbr 210 ------- 1 1.0 5.0 431 441 r 1.82383 3 5 cbr 210 ------- 1 1.0 5.0 417 426 + 1.825 1 2 cbr 210 ------- 1 1.0 5.0 460 470 - 1.825 1 2 cbr 210 ------- 1 1.0 5.0 460 470 r 1.82586 1 2 cbr 210 ------- 1 1.0 5.0 446 456 + 1.82586 2 3 cbr 210 ------- 1 1.0 5.0 446 456 - 1.82586 2 3 cbr 210 ------- 1 1.0 5.0 446 456 r 1.82672 2 3 cbr 210 ------- 1 1.0 5.0 432 442 + 1.82672 3 5 cbr 210 ------- 1 1.0 5.0 432 442 - 1.82672 3 5 cbr 210 ------- 1 1.0 5.0 432 442 r 1.82758 3 5 cbr 210 ------- 1 1.0 5.0 418 427 + 1.82875 1 2 cbr 210 ------- 1 1.0 5.0 461 471 - 1.82875 1 2 cbr 210 ------- 1 1.0 5.0 461 471 r 1.82961 1 2 cbr 210 ------- 1 1.0 5.0 447 457 + 1.82961 2 3 cbr 210 ------- 1 1.0 5.0 447 457 - 1.82961 2 3 cbr 210 ------- 1 1.0 5.0 447 457 r 1.83047 2 3 cbr 210 ------- 1 1.0 5.0 433 443 + 1.83047 3 5 cbr 210 ------- 1 1.0 5.0 433 443 - 1.83047 3 5 cbr 210 ------- 1 1.0 5.0 433 443 r 1.83133 3 5 cbr 210 ------- 1 1.0 5.0 419 428 + 1.8325 1 2 cbr 210 ------- 1 1.0 5.0 462 472 - 1.8325 1 2 cbr 210 ------- 1 1.0 5.0 462 472 r 1.83336 1 2 cbr 210 ------- 1 1.0 5.0 448 458 + 1.83336 2 3 cbr 210 ------- 1 1.0 5.0 448 458 - 1.83336 2 3 cbr 210 ------- 1 1.0 5.0 448 458 r 1.83422 2 3 cbr 210 ------- 1 1.0 5.0 434 444 + 1.83422 3 5 cbr 210 ------- 1 1.0 5.0 434 444 - 1.83422 3 5 cbr 210 ------- 1 1.0 5.0 434 444 r 1.83508 3 5 cbr 210 ------- 1 1.0 5.0 420 429 + 1.83625 1 2 cbr 210 ------- 1 1.0 5.0 463 473 - 1.83625 1 2 cbr 210 ------- 1 1.0 5.0 463 473 r 1.83711 1 2 cbr 210 ------- 1 1.0 5.0 449 459 + 1.83711 2 3 cbr 210 ------- 1 1.0 5.0 449 459 - 1.83711 2 3 cbr 210 ------- 1 1.0 5.0 449 459 r 1.83797 2 3 cbr 210 ------- 1 1.0 5.0 435 445 + 1.83797 3 5 cbr 210 ------- 1 1.0 5.0 435 445 - 1.83797 3 5 cbr 210 ------- 1 1.0 5.0 435 445 r 1.83883 3 5 cbr 210 ------- 1 1.0 5.0 421 430 + 1.84 1 2 cbr 210 ------- 1 1.0 5.0 464 474 - 1.84 1 2 cbr 210 ------- 1 1.0 5.0 464 474 r 1.84086 1 2 cbr 210 ------- 1 1.0 5.0 450 460 + 1.84086 2 3 cbr 210 ------- 1 1.0 5.0 450 460 - 1.84086 2 3 cbr 210 ------- 1 1.0 5.0 450 460 r 1.84172 2 3 cbr 210 ------- 1 1.0 5.0 436 446 + 1.84172 3 5 cbr 210 ------- 1 1.0 5.0 436 446 - 1.84172 3 5 cbr 210 ------- 1 1.0 5.0 436 446 r 1.84258 3 5 cbr 210 ------- 1 1.0 5.0 422 431 + 1.84375 1 2 cbr 210 ------- 1 1.0 5.0 465 475 - 1.84375 1 2 cbr 210 ------- 1 1.0 5.0 465 475 r 1.84461 1 2 cbr 210 ------- 1 1.0 5.0 451 461 + 1.84461 2 3 cbr 210 ------- 1 1.0 5.0 451 461 - 1.84461 2 3 cbr 210 ------- 1 1.0 5.0 451 461 r 1.84547 2 3 cbr 210 ------- 1 1.0 5.0 437 447 + 1.84547 3 5 cbr 210 ------- 1 1.0 5.0 437 447 - 1.84547 3 5 cbr 210 ------- 1 1.0 5.0 437 447 r 1.84633 3 5 cbr 210 ------- 1 1.0 5.0 423 432 + 1.8475 1 2 cbr 210 ------- 1 1.0 5.0 466 476 - 1.8475 1 2 cbr 210 ------- 1 1.0 5.0 466 476 r 1.84836 1 2 cbr 210 ------- 1 1.0 5.0 452 462 + 1.84836 2 3 cbr 210 ------- 1 1.0 5.0 452 462 - 1.84836 2 3 cbr 210 ------- 1 1.0 5.0 452 462 r 1.84922 2 3 cbr 210 ------- 1 1.0 5.0 438 448 + 1.84922 3 5 cbr 210 ------- 1 1.0 5.0 438 448 - 1.84922 3 5 cbr 210 ------- 1 1.0 5.0 438 448 r 1.85008 3 5 cbr 210 ------- 1 1.0 5.0 424 433 + 1.85125 1 2 cbr 210 ------- 1 1.0 5.0 467 477 - 1.85125 1 2 cbr 210 ------- 1 1.0 5.0 467 477 r 1.85211 1 2 cbr 210 ------- 1 1.0 5.0 453 463 + 1.85211 2 3 cbr 210 ------- 1 1.0 5.0 453 463 - 1.85211 2 3 cbr 210 ------- 1 1.0 5.0 453 463 r 1.85297 2 3 cbr 210 ------- 1 1.0 5.0 439 449 + 1.85297 3 5 cbr 210 ------- 1 1.0 5.0 439 449 - 1.85297 3 5 cbr 210 ------- 1 1.0 5.0 439 449 r 1.85383 3 5 cbr 210 ------- 1 1.0 5.0 425 434 + 1.855 1 2 cbr 210 ------- 1 1.0 5.0 468 478 - 1.855 1 2 cbr 210 ------- 1 1.0 5.0 468 478 r 1.85586 1 2 cbr 210 ------- 1 1.0 5.0 454 464 + 1.85586 2 3 cbr 210 ------- 1 1.0 5.0 454 464 - 1.85586 2 3 cbr 210 ------- 1 1.0 5.0 454 464 r 1.85672 2 3 cbr 210 ------- 1 1.0 5.0 440 450 + 1.85672 3 5 cbr 210 ------- 1 1.0 5.0 440 450 - 1.85672 3 5 cbr 210 ------- 1 1.0 5.0 440 450 r 1.85758 3 5 cbr 210 ------- 1 1.0 5.0 426 435 + 1.85875 1 2 cbr 210 ------- 1 1.0 5.0 469 479 - 1.85875 1 2 cbr 210 ------- 1 1.0 5.0 469 479 r 1.85961 1 2 cbr 210 ------- 1 1.0 5.0 455 465 + 1.85961 2 3 cbr 210 ------- 1 1.0 5.0 455 465 - 1.85961 2 3 cbr 210 ------- 1 1.0 5.0 455 465 r 1.86047 2 3 cbr 210 ------- 1 1.0 5.0 441 451 + 1.86047 3 5 cbr 210 ------- 1 1.0 5.0 441 451 - 1.86047 3 5 cbr 210 ------- 1 1.0 5.0 441 451 r 1.86133 3 5 cbr 210 ------- 1 1.0 5.0 427 436 r 1.86189 2 0 ack 40 ------- 0 4.0 0.0 4 439 + 1.86189 0 2 tcp 1000 ------- 0 0.0 4.0 5 480 - 1.86189 0 2 tcp 1000 ------- 0 0.0 4.0 5 480 + 1.8625 1 2 cbr 210 ------- 1 1.0 5.0 470 481 - 1.8625 1 2 cbr 210 ------- 1 1.0 5.0 470 481 r 1.86336 1 2 cbr 210 ------- 1 1.0 5.0 456 466 + 1.86336 2 3 cbr 210 ------- 1 1.0 5.0 456 466 - 1.86336 2 3 cbr 210 ------- 1 1.0 5.0 456 466 r 1.86422 2 3 cbr 210 ------- 1 1.0 5.0 442 452 + 1.86422 3 5 cbr 210 ------- 1 1.0 5.0 442 452 - 1.86422 3 5 cbr 210 ------- 1 1.0 5.0 442 452 r 1.86508 3 5 cbr 210 ------- 1 1.0 5.0 428 437 + 1.86625 1 2 cbr 210 ------- 1 1.0 5.0 471 482 - 1.86625 1 2 cbr 210 ------- 1 1.0 5.0 471 482 r 1.86711 1 2 cbr 210 ------- 1 1.0 5.0 457 467 + 1.86711 2 3 cbr 210 ------- 1 1.0 5.0 457 467 - 1.86711 2 3 cbr 210 ------- 1 1.0 5.0 457 467 r 1.86797 2 3 cbr 210 ------- 1 1.0 5.0 443 453 + 1.86797 3 5 cbr 210 ------- 1 1.0 5.0 443 453 - 1.86797 3 5 cbr 210 ------- 1 1.0 5.0 443 453 r 1.86883 3 5 cbr 210 ------- 1 1.0 5.0 429 438 + 1.87 1 2 cbr 210 ------- 1 1.0 5.0 472 483 - 1.87 1 2 cbr 210 ------- 1 1.0 5.0 472 483 r 1.87086 1 2 cbr 210 ------- 1 1.0 5.0 458 468 + 1.87086 2 3 cbr 210 ------- 1 1.0 5.0 458 468 - 1.87086 2 3 cbr 210 ------- 1 1.0 5.0 458 468 r 1.87172 2 3 cbr 210 ------- 1 1.0 5.0 444 454 + 1.87172 3 5 cbr 210 ------- 1 1.0 5.0 444 454 - 1.87172 3 5 cbr 210 ------- 1 1.0 5.0 444 454 r 1.87258 3 5 cbr 210 ------- 1 1.0 5.0 430 440 + 1.87375 1 2 cbr 210 ------- 1 1.0 5.0 473 484 - 1.87375 1 2 cbr 210 ------- 1 1.0 5.0 473 484 r 1.87461 1 2 cbr 210 ------- 1 1.0 5.0 459 469 + 1.87461 2 3 cbr 210 ------- 1 1.0 5.0 459 469 - 1.87461 2 3 cbr 210 ------- 1 1.0 5.0 459 469 r 1.87547 2 3 cbr 210 ------- 1 1.0 5.0 445 455 + 1.87547 3 5 cbr 210 ------- 1 1.0 5.0 445 455 - 1.87547 3 5 cbr 210 ------- 1 1.0 5.0 445 455 r 1.87633 3 5 cbr 210 ------- 1 1.0 5.0 431 441 + 1.8775 1 2 cbr 210 ------- 1 1.0 5.0 474 485 - 1.8775 1 2 cbr 210 ------- 1 1.0 5.0 474 485 r 1.87836 1 2 cbr 210 ------- 1 1.0 5.0 460 470 + 1.87836 2 3 cbr 210 ------- 1 1.0 5.0 460 470 - 1.87836 2 3 cbr 210 ------- 1 1.0 5.0 460 470 r 1.87922 2 3 cbr 210 ------- 1 1.0 5.0 446 456 + 1.87922 3 5 cbr 210 ------- 1 1.0 5.0 446 456 - 1.87922 3 5 cbr 210 ------- 1 1.0 5.0 446 456 r 1.88008 3 5 cbr 210 ------- 1 1.0 5.0 432 442 + 1.88125 1 2 cbr 210 ------- 1 1.0 5.0 475 486 - 1.88125 1 2 cbr 210 ------- 1 1.0 5.0 475 486 r 1.88211 1 2 cbr 210 ------- 1 1.0 5.0 461 471 + 1.88211 2 3 cbr 210 ------- 1 1.0 5.0 461 471 - 1.88211 2 3 cbr 210 ------- 1 1.0 5.0 461 471 r 1.88297 2 3 cbr 210 ------- 1 1.0 5.0 447 457 + 1.88297 3 5 cbr 210 ------- 1 1.0 5.0 447 457 - 1.88297 3 5 cbr 210 ------- 1 1.0 5.0 447 457 r 1.88383 3 5 cbr 210 ------- 1 1.0 5.0 433 443 + 1.885 1 2 cbr 210 ------- 1 1.0 5.0 476 487 - 1.885 1 2 cbr 210 ------- 1 1.0 5.0 476 487 r 1.88586 1 2 cbr 210 ------- 1 1.0 5.0 462 472 + 1.88586 2 3 cbr 210 ------- 1 1.0 5.0 462 472 - 1.88586 2 3 cbr 210 ------- 1 1.0 5.0 462 472 r 1.88672 2 3 cbr 210 ------- 1 1.0 5.0 448 458 + 1.88672 3 5 cbr 210 ------- 1 1.0 5.0 448 458 - 1.88672 3 5 cbr 210 ------- 1 1.0 5.0 448 458 r 1.88758 3 5 cbr 210 ------- 1 1.0 5.0 434 444 + 1.88875 1 2 cbr 210 ------- 1 1.0 5.0 477 488 - 1.88875 1 2 cbr 210 ------- 1 1.0 5.0 477 488 r 1.88961 1 2 cbr 210 ------- 1 1.0 5.0 463 473 + 1.88961 2 3 cbr 210 ------- 1 1.0 5.0 463 473 - 1.88961 2 3 cbr 210 ------- 1 1.0 5.0 463 473 r 1.89047 2 3 cbr 210 ------- 1 1.0 5.0 449 459 + 1.89047 3 5 cbr 210 ------- 1 1.0 5.0 449 459 - 1.89047 3 5 cbr 210 ------- 1 1.0 5.0 449 459 r 1.89133 3 5 cbr 210 ------- 1 1.0 5.0 435 445 + 1.8925 1 2 cbr 210 ------- 1 1.0 5.0 478 489 - 1.8925 1 2 cbr 210 ------- 1 1.0 5.0 478 489 r 1.89336 1 2 cbr 210 ------- 1 1.0 5.0 464 474 + 1.89336 2 3 cbr 210 ------- 1 1.0 5.0 464 474 - 1.89336 2 3 cbr 210 ------- 1 1.0 5.0 464 474 r 1.89422 2 3 cbr 210 ------- 1 1.0 5.0 450 460 + 1.89422 3 5 cbr 210 ------- 1 1.0 5.0 450 460 - 1.89422 3 5 cbr 210 ------- 1 1.0 5.0 450 460 r 1.89508 3 5 cbr 210 ------- 1 1.0 5.0 436 446 + 1.89625 1 2 cbr 210 ------- 1 1.0 5.0 479 490 - 1.89625 1 2 cbr 210 ------- 1 1.0 5.0 479 490 r 1.89711 1 2 cbr 210 ------- 1 1.0 5.0 465 475 + 1.89711 2 3 cbr 210 ------- 1 1.0 5.0 465 475 - 1.89711 2 3 cbr 210 ------- 1 1.0 5.0 465 475 r 1.89797 2 3 cbr 210 ------- 1 1.0 5.0 451 461 + 1.89797 3 5 cbr 210 ------- 1 1.0 5.0 451 461 - 1.89797 3 5 cbr 210 ------- 1 1.0 5.0 451 461 r 1.89883 3 5 cbr 210 ------- 1 1.0 5.0 437 447 + 1.9 1 2 cbr 210 ------- 1 1.0 5.0 480 491 - 1.9 1 2 cbr 210 ------- 1 1.0 5.0 480 491 v 1.8999999999999999 eval {set sim_annotation {Receive Ack_2 }} r 1.90086 1 2 cbr 210 ------- 1 1.0 5.0 466 476 + 1.90086 2 3 cbr 210 ------- 1 1.0 5.0 466 476 - 1.90086 2 3 cbr 210 ------- 1 1.0 5.0 466 476 r 1.90172 2 3 cbr 210 ------- 1 1.0 5.0 452 462 + 1.90172 3 5 cbr 210 ------- 1 1.0 5.0 452 462 - 1.90172 3 5 cbr 210 ------- 1 1.0 5.0 452 462 r 1.90258 3 5 cbr 210 ------- 1 1.0 5.0 438 448 + 1.90375 1 2 cbr 210 ------- 1 1.0 5.0 481 492 - 1.90375 1 2 cbr 210 ------- 1 1.0 5.0 481 492 r 1.90461 1 2 cbr 210 ------- 1 1.0 5.0 467 477 + 1.90461 2 3 cbr 210 ------- 1 1.0 5.0 467 477 - 1.90461 2 3 cbr 210 ------- 1 1.0 5.0 467 477 r 1.90547 2 3 cbr 210 ------- 1 1.0 5.0 453 463 + 1.90547 3 5 cbr 210 ------- 1 1.0 5.0 453 463 - 1.90547 3 5 cbr 210 ------- 1 1.0 5.0 453 463 r 1.90633 3 5 cbr 210 ------- 1 1.0 5.0 439 449 + 1.9075 1 2 cbr 210 ------- 1 1.0 5.0 482 493 - 1.9075 1 2 cbr 210 ------- 1 1.0 5.0 482 493 r 1.90836 1 2 cbr 210 ------- 1 1.0 5.0 468 478 + 1.90836 2 3 cbr 210 ------- 1 1.0 5.0 468 478 - 1.90836 2 3 cbr 210 ------- 1 1.0 5.0 468 478 r 1.90922 2 3 cbr 210 ------- 1 1.0 5.0 454 464 + 1.90922 3 5 cbr 210 ------- 1 1.0 5.0 454 464 - 1.90922 3 5 cbr 210 ------- 1 1.0 5.0 454 464 r 1.91008 3 5 cbr 210 ------- 1 1.0 5.0 440 450 + 1.91125 1 2 cbr 210 ------- 1 1.0 5.0 483 494 - 1.91125 1 2 cbr 210 ------- 1 1.0 5.0 483 494 r 1.91211 1 2 cbr 210 ------- 1 1.0 5.0 469 479 + 1.91211 2 3 cbr 210 ------- 1 1.0 5.0 469 479 - 1.91211 2 3 cbr 210 ------- 1 1.0 5.0 469 479 r 1.91297 2 3 cbr 210 ------- 1 1.0 5.0 455 465 + 1.91297 3 5 cbr 210 ------- 1 1.0 5.0 455 465 - 1.91297 3 5 cbr 210 ------- 1 1.0 5.0 455 465 r 1.91383 3 5 cbr 210 ------- 1 1.0 5.0 441 451 + 1.915 1 2 cbr 210 ------- 1 1.0 5.0 484 495 - 1.915 1 2 cbr 210 ------- 1 1.0 5.0 484 495 r 1.91586 1 2 cbr 210 ------- 1 1.0 5.0 470 481 + 1.91586 2 3 cbr 210 ------- 1 1.0 5.0 470 481 - 1.91586 2 3 cbr 210 ------- 1 1.0 5.0 470 481 r 1.91672 2 3 cbr 210 ------- 1 1.0 5.0 456 466 + 1.91672 3 5 cbr 210 ------- 1 1.0 5.0 456 466 - 1.91672 3 5 cbr 210 ------- 1 1.0 5.0 456 466 r 1.91758 3 5 cbr 210 ------- 1 1.0 5.0 442 452 + 1.91875 1 2 cbr 210 ------- 1 1.0 5.0 485 496 - 1.91875 1 2 cbr 210 ------- 1 1.0 5.0 485 496 r 1.91961 1 2 cbr 210 ------- 1 1.0 5.0 471 482 + 1.91961 2 3 cbr 210 ------- 1 1.0 5.0 471 482 - 1.91961 2 3 cbr 210 ------- 1 1.0 5.0 471 482 r 1.92047 2 3 cbr 210 ------- 1 1.0 5.0 457 467 + 1.92047 3 5 cbr 210 ------- 1 1.0 5.0 457 467 - 1.92047 3 5 cbr 210 ------- 1 1.0 5.0 457 467 r 1.92133 3 5 cbr 210 ------- 1 1.0 5.0 443 453 + 1.9225 1 2 cbr 210 ------- 1 1.0 5.0 486 497 - 1.9225 1 2 cbr 210 ------- 1 1.0 5.0 486 497 r 1.92336 1 2 cbr 210 ------- 1 1.0 5.0 472 483 + 1.92336 2 3 cbr 210 ------- 1 1.0 5.0 472 483 - 1.92336 2 3 cbr 210 ------- 1 1.0 5.0 472 483 r 1.92422 2 3 cbr 210 ------- 1 1.0 5.0 458 468 + 1.92422 3 5 cbr 210 ------- 1 1.0 5.0 458 468 - 1.92422 3 5 cbr 210 ------- 1 1.0 5.0 458 468 r 1.92508 3 5 cbr 210 ------- 1 1.0 5.0 444 454 + 1.92625 1 2 cbr 210 ------- 1 1.0 5.0 487 498 - 1.92625 1 2 cbr 210 ------- 1 1.0 5.0 487 498 r 1.92711 1 2 cbr 210 ------- 1 1.0 5.0 473 484 + 1.92711 2 3 cbr 210 ------- 1 1.0 5.0 473 484 - 1.92711 2 3 cbr 210 ------- 1 1.0 5.0 473 484 r 1.92789 0 2 tcp 1000 ------- 0 0.0 4.0 5 480 + 1.92789 2 3 tcp 1000 ------- 0 0.0 4.0 5 480 r 1.92797 2 3 cbr 210 ------- 1 1.0 5.0 459 469 + 1.92797 3 5 cbr 210 ------- 1 1.0 5.0 459 469 - 1.92797 3 5 cbr 210 ------- 1 1.0 5.0 459 469 r 1.92883 3 5 cbr 210 ------- 1 1.0 5.0 445 455 + 1.93 1 2 cbr 210 ------- 1 1.0 5.0 488 499 - 1.93 1 2 cbr 210 ------- 1 1.0 5.0 488 499 - 1.93047 2 3 tcp 1000 ------- 0 0.0 4.0 5 480 r 1.93086 1 2 cbr 210 ------- 1 1.0 5.0 474 485 + 1.93086 2 3 cbr 210 ------- 1 1.0 5.0 474 485 r 1.93172 2 3 cbr 210 ------- 1 1.0 5.0 460 470 + 1.93172 3 5 cbr 210 ------- 1 1.0 5.0 460 470 - 1.93172 3 5 cbr 210 ------- 1 1.0 5.0 460 470 r 1.93258 3 5 cbr 210 ------- 1 1.0 5.0 446 456 + 1.93375 1 2 cbr 210 ------- 1 1.0 5.0 489 500 - 1.93375 1 2 cbr 210 ------- 1 1.0 5.0 489 500 r 1.93461 1 2 cbr 210 ------- 1 1.0 5.0 475 486 + 1.93461 2 3 cbr 210 ------- 1 1.0 5.0 475 486 d 1.93461 2 3 cbr 210 ------- 1 1.0 5.0 475 486 r 1.93547 2 3 cbr 210 ------- 1 1.0 5.0 461 471 + 1.93547 3 5 cbr 210 ------- 1 1.0 5.0 461 471 - 1.93547 3 5 cbr 210 ------- 1 1.0 5.0 461 471 r 1.93633 3 5 cbr 210 ------- 1 1.0 5.0 447 457 + 1.9375 1 2 cbr 210 ------- 1 1.0 5.0 490 501 - 1.9375 1 2 cbr 210 ------- 1 1.0 5.0 490 501 r 1.93836 1 2 cbr 210 ------- 1 1.0 5.0 476 487 + 1.93836 2 3 cbr 210 ------- 1 1.0 5.0 476 487 d 1.93836 2 3 cbr 210 ------- 1 1.0 5.0 476 487 r 1.93922 2 3 cbr 210 ------- 1 1.0 5.0 462 472 + 1.93922 3 5 cbr 210 ------- 1 1.0 5.0 462 472 - 1.93922 3 5 cbr 210 ------- 1 1.0 5.0 462 472 r 1.94008 3 5 cbr 210 ------- 1 1.0 5.0 448 458 + 1.94125 1 2 cbr 210 ------- 1 1.0 5.0 491 502 - 1.94125 1 2 cbr 210 ------- 1 1.0 5.0 491 502 r 1.94211 1 2 cbr 210 ------- 1 1.0 5.0 477 488 + 1.94211 2 3 cbr 210 ------- 1 1.0 5.0 477 488 d 1.94211 2 3 cbr 210 ------- 1 1.0 5.0 477 488 r 1.94297 2 3 cbr 210 ------- 1 1.0 5.0 463 473 + 1.94297 3 5 cbr 210 ------- 1 1.0 5.0 463 473 - 1.94297 3 5 cbr 210 ------- 1 1.0 5.0 463 473 r 1.94383 3 5 cbr 210 ------- 1 1.0 5.0 449 459 + 1.945 1 2 cbr 210 ------- 1 1.0 5.0 492 503 - 1.945 1 2 cbr 210 ------- 1 1.0 5.0 492 503 r 1.94586 1 2 cbr 210 ------- 1 1.0 5.0 478 489 + 1.94586 2 3 cbr 210 ------- 1 1.0 5.0 478 489 d 1.94586 2 3 cbr 210 ------- 1 1.0 5.0 478 489 - 1.94647 2 3 cbr 210 ------- 1 1.0 5.0 474 485 r 1.94672 2 3 cbr 210 ------- 1 1.0 5.0 464 474 + 1.94672 3 5 cbr 210 ------- 1 1.0 5.0 464 474 - 1.94672 3 5 cbr 210 ------- 1 1.0 5.0 464 474 r 1.94758 3 5 cbr 210 ------- 1 1.0 5.0 450 460 + 1.94875 1 2 cbr 210 ------- 1 1.0 5.0 493 504 - 1.94875 1 2 cbr 210 ------- 1 1.0 5.0 493 504 r 1.94961 1 2 cbr 210 ------- 1 1.0 5.0 479 490 + 1.94961 2 3 cbr 210 ------- 1 1.0 5.0 479 490 - 1.94983 2 3 cbr 210 ------- 1 1.0 5.0 479 490 r 1.95047 2 3 cbr 210 ------- 1 1.0 5.0 465 475 + 1.95047 3 5 cbr 210 ------- 1 1.0 5.0 465 475 - 1.95047 3 5 cbr 210 ------- 1 1.0 5.0 465 475 r 1.95133 3 5 cbr 210 ------- 1 1.0 5.0 451 461 + 1.9525 1 2 cbr 210 ------- 1 1.0 5.0 494 505 - 1.9525 1 2 cbr 210 ------- 1 1.0 5.0 494 505 r 1.95336 1 2 cbr 210 ------- 1 1.0 5.0 480 491 + 1.95336 2 3 cbr 210 ------- 1 1.0 5.0 480 491 - 1.95336 2 3 cbr 210 ------- 1 1.0 5.0 480 491 r 1.95422 2 3 cbr 210 ------- 1 1.0 5.0 466 476 + 1.95422 3 5 cbr 210 ------- 1 1.0 5.0 466 476 - 1.95422 3 5 cbr 210 ------- 1 1.0 5.0 466 476 r 1.95508 3 5 cbr 210 ------- 1 1.0 5.0 452 462 + 1.95625 1 2 cbr 210 ------- 1 1.0 5.0 495 506 - 1.95625 1 2 cbr 210 ------- 1 1.0 5.0 495 506 r 1.95711 1 2 cbr 210 ------- 1 1.0 5.0 481 492 + 1.95711 2 3 cbr 210 ------- 1 1.0 5.0 481 492 - 1.95711 2 3 cbr 210 ------- 1 1.0 5.0 481 492 r 1.95797 2 3 cbr 210 ------- 1 1.0 5.0 467 477 + 1.95797 3 5 cbr 210 ------- 1 1.0 5.0 467 477 - 1.95797 3 5 cbr 210 ------- 1 1.0 5.0 467 477 r 1.95883 3 5 cbr 210 ------- 1 1.0 5.0 453 463 + 1.96 1 2 cbr 210 ------- 1 1.0 5.0 496 507 - 1.96 1 2 cbr 210 ------- 1 1.0 5.0 496 507 r 1.96086 1 2 cbr 210 ------- 1 1.0 5.0 482 493 + 1.96086 2 3 cbr 210 ------- 1 1.0 5.0 482 493 - 1.96086 2 3 cbr 210 ------- 1 1.0 5.0 482 493 r 1.96172 2 3 cbr 210 ------- 1 1.0 5.0 468 478 + 1.96172 3 5 cbr 210 ------- 1 1.0 5.0 468 478 - 1.96172 3 5 cbr 210 ------- 1 1.0 5.0 468 478 r 1.96258 3 5 cbr 210 ------- 1 1.0 5.0 454 464 + 1.96375 1 2 cbr 210 ------- 1 1.0 5.0 497 508 - 1.96375 1 2 cbr 210 ------- 1 1.0 5.0 497 508 r 1.96461 1 2 cbr 210 ------- 1 1.0 5.0 483 494 + 1.96461 2 3 cbr 210 ------- 1 1.0 5.0 483 494 - 1.96461 2 3 cbr 210 ------- 1 1.0 5.0 483 494 r 1.96547 2 3 cbr 210 ------- 1 1.0 5.0 469 479 + 1.96547 3 5 cbr 210 ------- 1 1.0 5.0 469 479 - 1.96547 3 5 cbr 210 ------- 1 1.0 5.0 469 479 r 1.96633 3 5 cbr 210 ------- 1 1.0 5.0 455 465 + 1.9675 1 2 cbr 210 ------- 1 1.0 5.0 498 509 - 1.9675 1 2 cbr 210 ------- 1 1.0 5.0 498 509 r 1.96836 1 2 cbr 210 ------- 1 1.0 5.0 484 495 + 1.96836 2 3 cbr 210 ------- 1 1.0 5.0 484 495 - 1.96836 2 3 cbr 210 ------- 1 1.0 5.0 484 495 r 1.96922 2 3 cbr 210 ------- 1 1.0 5.0 470 481 + 1.96922 3 5 cbr 210 ------- 1 1.0 5.0 470 481 - 1.96922 3 5 cbr 210 ------- 1 1.0 5.0 470 481 r 1.97008 3 5 cbr 210 ------- 1 1.0 5.0 456 466 + 1.97125 1 2 cbr 210 ------- 1 1.0 5.0 499 510 - 1.97125 1 2 cbr 210 ------- 1 1.0 5.0 499 510 r 1.97211 1 2 cbr 210 ------- 1 1.0 5.0 485 496 + 1.97211 2 3 cbr 210 ------- 1 1.0 5.0 485 496 - 1.97211 2 3 cbr 210 ------- 1 1.0 5.0 485 496 r 1.97297 2 3 cbr 210 ------- 1 1.0 5.0 471 482 + 1.97297 3 5 cbr 210 ------- 1 1.0 5.0 471 482 - 1.97297 3 5 cbr 210 ------- 1 1.0 5.0 471 482 r 1.97383 3 5 cbr 210 ------- 1 1.0 5.0 457 467 + 1.975 1 2 cbr 210 ------- 1 1.0 5.0 500 511 - 1.975 1 2 cbr 210 ------- 1 1.0 5.0 500 511 r 1.97586 1 2 cbr 210 ------- 1 1.0 5.0 486 497 + 1.97586 2 3 cbr 210 ------- 1 1.0 5.0 486 497 - 1.97586 2 3 cbr 210 ------- 1 1.0 5.0 486 497 r 1.97672 2 3 cbr 210 ------- 1 1.0 5.0 472 483 + 1.97672 3 5 cbr 210 ------- 1 1.0 5.0 472 483 - 1.97672 3 5 cbr 210 ------- 1 1.0 5.0 472 483 r 1.97758 3 5 cbr 210 ------- 1 1.0 5.0 458 468 + 1.97875 1 2 cbr 210 ------- 1 1.0 5.0 501 512 - 1.97875 1 2 cbr 210 ------- 1 1.0 5.0 501 512 r 1.97961 1 2 cbr 210 ------- 1 1.0 5.0 487 498 + 1.97961 2 3 cbr 210 ------- 1 1.0 5.0 487 498 - 1.97961 2 3 cbr 210 ------- 1 1.0 5.0 487 498 r 1.98047 2 3 cbr 210 ------- 1 1.0 5.0 473 484 + 1.98047 3 5 cbr 210 ------- 1 1.0 5.0 473 484 - 1.98047 3 5 cbr 210 ------- 1 1.0 5.0 473 484 r 1.98133 3 5 cbr 210 ------- 1 1.0 5.0 459 469 + 1.9825 1 2 cbr 210 ------- 1 1.0 5.0 502 513 - 1.9825 1 2 cbr 210 ------- 1 1.0 5.0 502 513 r 1.98336 1 2 cbr 210 ------- 1 1.0 5.0 488 499 + 1.98336 2 3 cbr 210 ------- 1 1.0 5.0 488 499 - 1.98336 2 3 cbr 210 ------- 1 1.0 5.0 488 499 r 1.98508 3 5 cbr 210 ------- 1 1.0 5.0 460 470 + 1.98625 1 2 cbr 210 ------- 1 1.0 5.0 503 514 - 1.98625 1 2 cbr 210 ------- 1 1.0 5.0 503 514 r 1.98711 1 2 cbr 210 ------- 1 1.0 5.0 489 500 + 1.98711 2 3 cbr 210 ------- 1 1.0 5.0 489 500 - 1.98711 2 3 cbr 210 ------- 1 1.0 5.0 489 500 r 1.98883 3 5 cbr 210 ------- 1 1.0 5.0 461 471 + 1.99 1 2 cbr 210 ------- 1 1.0 5.0 504 515 - 1.99 1 2 cbr 210 ------- 1 1.0 5.0 504 515 r 1.99086 1 2 cbr 210 ------- 1 1.0 5.0 490 501 + 1.99086 2 3 cbr 210 ------- 1 1.0 5.0 490 501 - 1.99086 2 3 cbr 210 ------- 1 1.0 5.0 490 501 r 1.99258 3 5 cbr 210 ------- 1 1.0 5.0 462 472 + 1.99375 1 2 cbr 210 ------- 1 1.0 5.0 505 516 - 1.99375 1 2 cbr 210 ------- 1 1.0 5.0 505 516 r 1.99461 1 2 cbr 210 ------- 1 1.0 5.0 491 502 + 1.99461 2 3 cbr 210 ------- 1 1.0 5.0 491 502 - 1.99461 2 3 cbr 210 ------- 1 1.0 5.0 491 502 r 1.99633 3 5 cbr 210 ------- 1 1.0 5.0 463 473 r 1.99647 2 3 tcp 1000 ------- 0 0.0 4.0 5 480 + 1.99647 3 4 tcp 1000 ------- 0 0.0 4.0 5 480 - 1.99647 3 4 tcp 1000 ------- 0 0.0 4.0 5 480 + 1.9975 1 2 cbr 210 ------- 1 1.0 5.0 506 517 - 1.9975 1 2 cbr 210 ------- 1 1.0 5.0 506 517 r 1.99836 1 2 cbr 210 ------- 1 1.0 5.0 492 503 + 1.99836 2 3 cbr 210 ------- 1 1.0 5.0 492 503 - 1.99836 2 3 cbr 210 ------- 1 1.0 5.0 492 503 r 1.99983 2 3 cbr 210 ------- 1 1.0 5.0 474 485 + 1.99983 3 5 cbr 210 ------- 1 1.0 5.0 474 485 - 1.99983 3 5 cbr 210 ------- 1 1.0 5.0 474 485 v 2 eval {set sim_annotation {FTP stops}} r 2.00008 3 5 cbr 210 ------- 1 1.0 5.0 464 474 + 2.00125 1 2 cbr 210 ------- 1 1.0 5.0 507 518 - 2.00125 1 2 cbr 210 ------- 1 1.0 5.0 507 518 r 2.00211 1 2 cbr 210 ------- 1 1.0 5.0 493 504 + 2.00211 2 3 cbr 210 ------- 1 1.0 5.0 493 504 - 2.00211 2 3 cbr 210 ------- 1 1.0 5.0 493 504 r 2.00319 2 3 cbr 210 ------- 1 1.0 5.0 479 490 + 2.00319 3 5 cbr 210 ------- 1 1.0 5.0 479 490 - 2.00319 3 5 cbr 210 ------- 1 1.0 5.0 479 490 r 2.00383 3 5 cbr 210 ------- 1 1.0 5.0 465 475 + 2.005 1 2 cbr 210 ------- 1 1.0 5.0 508 519 - 2.005 1 2 cbr 210 ------- 1 1.0 5.0 508 519 r 2.00586 1 2 cbr 210 ------- 1 1.0 5.0 494 505 + 2.00586 2 3 cbr 210 ------- 1 1.0 5.0 494 505 - 2.00586 2 3 cbr 210 ------- 1 1.0 5.0 494 505 r 2.00672 2 3 cbr 210 ------- 1 1.0 5.0 480 491 + 2.00672 3 5 cbr 210 ------- 1 1.0 5.0 480 491 - 2.00672 3 5 cbr 210 ------- 1 1.0 5.0 480 491 r 2.00758 3 5 cbr 210 ------- 1 1.0 5.0 466 476 + 2.00875 1 2 cbr 210 ------- 1 1.0 5.0 509 520 - 2.00875 1 2 cbr 210 ------- 1 1.0 5.0 509 520 r 2.00961 1 2 cbr 210 ------- 1 1.0 5.0 495 506 + 2.00961 2 3 cbr 210 ------- 1 1.0 5.0 495 506 - 2.00961 2 3 cbr 210 ------- 1 1.0 5.0 495 506 r 2.01047 2 3 cbr 210 ------- 1 1.0 5.0 481 492 + 2.01047 3 5 cbr 210 ------- 1 1.0 5.0 481 492 - 2.01047 3 5 cbr 210 ------- 1 1.0 5.0 481 492 r 2.01133 3 5 cbr 210 ------- 1 1.0 5.0 467 477 + 2.0125 1 2 cbr 210 ------- 1 1.0 5.0 510 521 - 2.0125 1 2 cbr 210 ------- 1 1.0 5.0 510 521 r 2.01336 1 2 cbr 210 ------- 1 1.0 5.0 496 507 + 2.01336 2 3 cbr 210 ------- 1 1.0 5.0 496 507 - 2.01336 2 3 cbr 210 ------- 1 1.0 5.0 496 507 r 2.01422 2 3 cbr 210 ------- 1 1.0 5.0 482 493 + 2.01422 3 5 cbr 210 ------- 1 1.0 5.0 482 493 - 2.01422 3 5 cbr 210 ------- 1 1.0 5.0 482 493 r 2.01508 3 5 cbr 210 ------- 1 1.0 5.0 468 478 + 2.01625 1 2 cbr 210 ------- 1 1.0 5.0 511 522 - 2.01625 1 2 cbr 210 ------- 1 1.0 5.0 511 522 r 2.01711 1 2 cbr 210 ------- 1 1.0 5.0 497 508 + 2.01711 2 3 cbr 210 ------- 1 1.0 5.0 497 508 - 2.01711 2 3 cbr 210 ------- 1 1.0 5.0 497 508 r 2.01797 2 3 cbr 210 ------- 1 1.0 5.0 483 494 + 2.01797 3 5 cbr 210 ------- 1 1.0 5.0 483 494 - 2.01797 3 5 cbr 210 ------- 1 1.0 5.0 483 494 r 2.01883 3 5 cbr 210 ------- 1 1.0 5.0 469 479 + 2.02 1 2 cbr 210 ------- 1 1.0 5.0 512 523 - 2.02 1 2 cbr 210 ------- 1 1.0 5.0 512 523 r 2.02086 1 2 cbr 210 ------- 1 1.0 5.0 498 509 + 2.02086 2 3 cbr 210 ------- 1 1.0 5.0 498 509 - 2.02086 2 3 cbr 210 ------- 1 1.0 5.0 498 509 r 2.02172 2 3 cbr 210 ------- 1 1.0 5.0 484 495 + 2.02172 3 5 cbr 210 ------- 1 1.0 5.0 484 495 - 2.02172 3 5 cbr 210 ------- 1 1.0 5.0 484 495 r 2.02258 3 5 cbr 210 ------- 1 1.0 5.0 470 481 + 2.02375 1 2 cbr 210 ------- 1 1.0 5.0 513 524 - 2.02375 1 2 cbr 210 ------- 1 1.0 5.0 513 524 r 2.02461 1 2 cbr 210 ------- 1 1.0 5.0 499 510 + 2.02461 2 3 cbr 210 ------- 1 1.0 5.0 499 510 - 2.02461 2 3 cbr 210 ------- 1 1.0 5.0 499 510 r 2.02547 2 3 cbr 210 ------- 1 1.0 5.0 485 496 + 2.02547 3 5 cbr 210 ------- 1 1.0 5.0 485 496 - 2.02547 3 5 cbr 210 ------- 1 1.0 5.0 485 496 r 2.02633 3 5 cbr 210 ------- 1 1.0 5.0 471 482 + 2.0275 1 2 cbr 210 ------- 1 1.0 5.0 514 525 - 2.0275 1 2 cbr 210 ------- 1 1.0 5.0 514 525 r 2.02836 1 2 cbr 210 ------- 1 1.0 5.0 500 511 + 2.02836 2 3 cbr 210 ------- 1 1.0 5.0 500 511 - 2.02836 2 3 cbr 210 ------- 1 1.0 5.0 500 511 r 2.02922 2 3 cbr 210 ------- 1 1.0 5.0 486 497 + 2.02922 3 5 cbr 210 ------- 1 1.0 5.0 486 497 - 2.02922 3 5 cbr 210 ------- 1 1.0 5.0 486 497 r 2.03008 3 5 cbr 210 ------- 1 1.0 5.0 472 483 + 2.03125 1 2 cbr 210 ------- 1 1.0 5.0 515 526 - 2.03125 1 2 cbr 210 ------- 1 1.0 5.0 515 526 r 2.03211 1 2 cbr 210 ------- 1 1.0 5.0 501 512 + 2.03211 2 3 cbr 210 ------- 1 1.0 5.0 501 512 - 2.03211 2 3 cbr 210 ------- 1 1.0 5.0 501 512 r 2.03297 2 3 cbr 210 ------- 1 1.0 5.0 487 498 + 2.03297 3 5 cbr 210 ------- 1 1.0 5.0 487 498 - 2.03297 3 5 cbr 210 ------- 1 1.0 5.0 487 498 r 2.03383 3 5 cbr 210 ------- 1 1.0 5.0 473 484 + 2.035 1 2 cbr 210 ------- 1 1.0 5.0 516 527 - 2.035 1 2 cbr 210 ------- 1 1.0 5.0 516 527 r 2.03586 1 2 cbr 210 ------- 1 1.0 5.0 502 513 + 2.03586 2 3 cbr 210 ------- 1 1.0 5.0 502 513 - 2.03586 2 3 cbr 210 ------- 1 1.0 5.0 502 513 r 2.03672 2 3 cbr 210 ------- 1 1.0 5.0 488 499 + 2.03672 3 5 cbr 210 ------- 1 1.0 5.0 488 499 - 2.03672 3 5 cbr 210 ------- 1 1.0 5.0 488 499 + 2.03875 1 2 cbr 210 ------- 1 1.0 5.0 517 528 - 2.03875 1 2 cbr 210 ------- 1 1.0 5.0 517 528 r 2.03961 1 2 cbr 210 ------- 1 1.0 5.0 503 514 + 2.03961 2 3 cbr 210 ------- 1 1.0 5.0 503 514 - 2.03961 2 3 cbr 210 ------- 1 1.0 5.0 503 514 r 2.04047 2 3 cbr 210 ------- 1 1.0 5.0 489 500 + 2.04047 3 5 cbr 210 ------- 1 1.0 5.0 489 500 - 2.04047 3 5 cbr 210 ------- 1 1.0 5.0 489 500 + 2.0425 1 2 cbr 210 ------- 1 1.0 5.0 518 529 - 2.0425 1 2 cbr 210 ------- 1 1.0 5.0 518 529 r 2.04336 1 2 cbr 210 ------- 1 1.0 5.0 504 515 + 2.04336 2 3 cbr 210 ------- 1 1.0 5.0 504 515 - 2.04336 2 3 cbr 210 ------- 1 1.0 5.0 504 515 r 2.04422 2 3 cbr 210 ------- 1 1.0 5.0 490 501 + 2.04422 3 5 cbr 210 ------- 1 1.0 5.0 490 501 - 2.04422 3 5 cbr 210 ------- 1 1.0 5.0 490 501 + 2.04625 1 2 cbr 210 ------- 1 1.0 5.0 519 530 - 2.04625 1 2 cbr 210 ------- 1 1.0 5.0 519 530 r 2.04711 1 2 cbr 210 ------- 1 1.0 5.0 505 516 + 2.04711 2 3 cbr 210 ------- 1 1.0 5.0 505 516 - 2.04711 2 3 cbr 210 ------- 1 1.0 5.0 505 516 r 2.04797 2 3 cbr 210 ------- 1 1.0 5.0 491 502 + 2.04797 3 5 cbr 210 ------- 1 1.0 5.0 491 502 - 2.04797 3 5 cbr 210 ------- 1 1.0 5.0 491 502 + 2.05 1 2 cbr 210 ------- 1 1.0 5.0 520 531 - 2.05 1 2 cbr 210 ------- 1 1.0 5.0 520 531 r 2.05086 1 2 cbr 210 ------- 1 1.0 5.0 506 517 + 2.05086 2 3 cbr 210 ------- 1 1.0 5.0 506 517 - 2.05086 2 3 cbr 210 ------- 1 1.0 5.0 506 517 r 2.05172 2 3 cbr 210 ------- 1 1.0 5.0 492 503 + 2.05172 3 5 cbr 210 ------- 1 1.0 5.0 492 503 - 2.05172 3 5 cbr 210 ------- 1 1.0 5.0 492 503 r 2.05319 3 5 cbr 210 ------- 1 1.0 5.0 474 485 + 2.05375 1 2 cbr 210 ------- 1 1.0 5.0 521 532 - 2.05375 1 2 cbr 210 ------- 1 1.0 5.0 521 532 r 2.05461 1 2 cbr 210 ------- 1 1.0 5.0 507 518 + 2.05461 2 3 cbr 210 ------- 1 1.0 5.0 507 518 - 2.05461 2 3 cbr 210 ------- 1 1.0 5.0 507 518 r 2.05547 2 3 cbr 210 ------- 1 1.0 5.0 493 504 + 2.05547 3 5 cbr 210 ------- 1 1.0 5.0 493 504 - 2.05547 3 5 cbr 210 ------- 1 1.0 5.0 493 504 r 2.05655 3 5 cbr 210 ------- 1 1.0 5.0 479 490 + 2.0575 1 2 cbr 210 ------- 1 1.0 5.0 522 533 - 2.0575 1 2 cbr 210 ------- 1 1.0 5.0 522 533 r 2.05836 1 2 cbr 210 ------- 1 1.0 5.0 508 519 + 2.05836 2 3 cbr 210 ------- 1 1.0 5.0 508 519 - 2.05836 2 3 cbr 210 ------- 1 1.0 5.0 508 519 r 2.05922 2 3 cbr 210 ------- 1 1.0 5.0 494 505 + 2.05922 3 5 cbr 210 ------- 1 1.0 5.0 494 505 - 2.05922 3 5 cbr 210 ------- 1 1.0 5.0 494 505 r 2.06008 3 5 cbr 210 ------- 1 1.0 5.0 480 491 + 2.06125 1 2 cbr 210 ------- 1 1.0 5.0 523 534 - 2.06125 1 2 cbr 210 ------- 1 1.0 5.0 523 534 r 2.06211 1 2 cbr 210 ------- 1 1.0 5.0 509 520 + 2.06211 2 3 cbr 210 ------- 1 1.0 5.0 509 520 - 2.06211 2 3 cbr 210 ------- 1 1.0 5.0 509 520 r 2.06247 3 4 tcp 1000 ------- 0 0.0 4.0 5 480 + 2.06247 4 3 ack 40 ------- 0 4.0 0.0 5 535 - 2.06247 4 3 ack 40 ------- 0 4.0 0.0 5 535 r 2.06297 2 3 cbr 210 ------- 1 1.0 5.0 495 506 + 2.06297 3 5 cbr 210 ------- 1 1.0 5.0 495 506 - 2.06297 3 5 cbr 210 ------- 1 1.0 5.0 495 506 r 2.06383 3 5 cbr 210 ------- 1 1.0 5.0 481 492 + 2.065 1 2 cbr 210 ------- 1 1.0 5.0 524 536 - 2.065 1 2 cbr 210 ------- 1 1.0 5.0 524 536 r 2.06586 1 2 cbr 210 ------- 1 1.0 5.0 510 521 + 2.06586 2 3 cbr 210 ------- 1 1.0 5.0 510 521 - 2.06586 2 3 cbr 210 ------- 1 1.0 5.0 510 521 r 2.06672 2 3 cbr 210 ------- 1 1.0 5.0 496 507 + 2.06672 3 5 cbr 210 ------- 1 1.0 5.0 496 507 - 2.06672 3 5 cbr 210 ------- 1 1.0 5.0 496 507 r 2.06758 3 5 cbr 210 ------- 1 1.0 5.0 482 493 + 2.06875 1 2 cbr 210 ------- 1 1.0 5.0 525 537 - 2.06875 1 2 cbr 210 ------- 1 1.0 5.0 525 537 r 2.06961 1 2 cbr 210 ------- 1 1.0 5.0 511 522 + 2.06961 2 3 cbr 210 ------- 1 1.0 5.0 511 522 - 2.06961 2 3 cbr 210 ------- 1 1.0 5.0 511 522 r 2.07047 2 3 cbr 210 ------- 1 1.0 5.0 497 508 + 2.07047 3 5 cbr 210 ------- 1 1.0 5.0 497 508 - 2.07047 3 5 cbr 210 ------- 1 1.0 5.0 497 508 r 2.07133 3 5 cbr 210 ------- 1 1.0 5.0 483 494 + 2.0725 1 2 cbr 210 ------- 1 1.0 5.0 526 538 - 2.0725 1 2 cbr 210 ------- 1 1.0 5.0 526 538 r 2.07336 1 2 cbr 210 ------- 1 1.0 5.0 512 523 + 2.07336 2 3 cbr 210 ------- 1 1.0 5.0 512 523 - 2.07336 2 3 cbr 210 ------- 1 1.0 5.0 512 523 r 2.07422 2 3 cbr 210 ------- 1 1.0 5.0 498 509 + 2.07422 3 5 cbr 210 ------- 1 1.0 5.0 498 509 - 2.07422 3 5 cbr 210 ------- 1 1.0 5.0 498 509 r 2.07508 3 5 cbr 210 ------- 1 1.0 5.0 484 495 + 2.07625 1 2 cbr 210 ------- 1 1.0 5.0 527 539 - 2.07625 1 2 cbr 210 ------- 1 1.0 5.0 527 539 r 2.07711 1 2 cbr 210 ------- 1 1.0 5.0 513 524 + 2.07711 2 3 cbr 210 ------- 1 1.0 5.0 513 524 - 2.07711 2 3 cbr 210 ------- 1 1.0 5.0 513 524 r 2.07797 2 3 cbr 210 ------- 1 1.0 5.0 499 510 + 2.07797 3 5 cbr 210 ------- 1 1.0 5.0 499 510 - 2.07797 3 5 cbr 210 ------- 1 1.0 5.0 499 510 r 2.07883 3 5 cbr 210 ------- 1 1.0 5.0 485 496 + 2.08 1 2 cbr 210 ------- 1 1.0 5.0 528 540 - 2.08 1 2 cbr 210 ------- 1 1.0 5.0 528 540 r 2.08086 1 2 cbr 210 ------- 1 1.0 5.0 514 525 + 2.08086 2 3 cbr 210 ------- 1 1.0 5.0 514 525 - 2.08086 2 3 cbr 210 ------- 1 1.0 5.0 514 525 r 2.08172 2 3 cbr 210 ------- 1 1.0 5.0 500 511 + 2.08172 3 5 cbr 210 ------- 1 1.0 5.0 500 511 - 2.08172 3 5 cbr 210 ------- 1 1.0 5.0 500 511 r 2.08258 3 5 cbr 210 ------- 1 1.0 5.0 486 497 + 2.08375 1 2 cbr 210 ------- 1 1.0 5.0 529 541 - 2.08375 1 2 cbr 210 ------- 1 1.0 5.0 529 541 r 2.08461 1 2 cbr 210 ------- 1 1.0 5.0 515 526 + 2.08461 2 3 cbr 210 ------- 1 1.0 5.0 515 526 - 2.08461 2 3 cbr 210 ------- 1 1.0 5.0 515 526 r 2.08547 2 3 cbr 210 ------- 1 1.0 5.0 501 512 + 2.08547 3 5 cbr 210 ------- 1 1.0 5.0 501 512 - 2.08547 3 5 cbr 210 ------- 1 1.0 5.0 501 512 r 2.08633 3 5 cbr 210 ------- 1 1.0 5.0 487 498 + 2.0875 1 2 cbr 210 ------- 1 1.0 5.0 530 542 - 2.0875 1 2 cbr 210 ------- 1 1.0 5.0 530 542 r 2.08836 1 2 cbr 210 ------- 1 1.0 5.0 516 527 + 2.08836 2 3 cbr 210 ------- 1 1.0 5.0 516 527 - 2.08836 2 3 cbr 210 ------- 1 1.0 5.0 516 527 r 2.08922 2 3 cbr 210 ------- 1 1.0 5.0 502 513 + 2.08922 3 5 cbr 210 ------- 1 1.0 5.0 502 513 - 2.08922 3 5 cbr 210 ------- 1 1.0 5.0 502 513 r 2.09008 3 5 cbr 210 ------- 1 1.0 5.0 488 499 + 2.09125 1 2 cbr 210 ------- 1 1.0 5.0 531 543 - 2.09125 1 2 cbr 210 ------- 1 1.0 5.0 531 543 r 2.09211 1 2 cbr 210 ------- 1 1.0 5.0 517 528 + 2.09211 2 3 cbr 210 ------- 1 1.0 5.0 517 528 - 2.09211 2 3 cbr 210 ------- 1 1.0 5.0 517 528 r 2.09297 2 3 cbr 210 ------- 1 1.0 5.0 503 514 + 2.09297 3 5 cbr 210 ------- 1 1.0 5.0 503 514 - 2.09297 3 5 cbr 210 ------- 1 1.0 5.0 503 514 r 2.09383 3 5 cbr 210 ------- 1 1.0 5.0 489 500 + 2.095 1 2 cbr 210 ------- 1 1.0 5.0 532 544 - 2.095 1 2 cbr 210 ------- 1 1.0 5.0 532 544 r 2.09586 1 2 cbr 210 ------- 1 1.0 5.0 518 529 + 2.09586 2 3 cbr 210 ------- 1 1.0 5.0 518 529 - 2.09586 2 3 cbr 210 ------- 1 1.0 5.0 518 529 r 2.09672 2 3 cbr 210 ------- 1 1.0 5.0 504 515 + 2.09672 3 5 cbr 210 ------- 1 1.0 5.0 504 515 - 2.09672 3 5 cbr 210 ------- 1 1.0 5.0 504 515 r 2.09758 3 5 cbr 210 ------- 1 1.0 5.0 490 501 + 2.09875 1 2 cbr 210 ------- 1 1.0 5.0 533 545 - 2.09875 1 2 cbr 210 ------- 1 1.0 5.0 533 545 r 2.09961 1 2 cbr 210 ------- 1 1.0 5.0 519 530 + 2.09961 2 3 cbr 210 ------- 1 1.0 5.0 519 530 - 2.09961 2 3 cbr 210 ------- 1 1.0 5.0 519 530 r 2.10047 2 3 cbr 210 ------- 1 1.0 5.0 505 516 + 2.10047 3 5 cbr 210 ------- 1 1.0 5.0 505 516 - 2.10047 3 5 cbr 210 ------- 1 1.0 5.0 505 516 r 2.10133 3 5 cbr 210 ------- 1 1.0 5.0 491 502 + 2.1025 1 2 cbr 210 ------- 1 1.0 5.0 534 546 - 2.1025 1 2 cbr 210 ------- 1 1.0 5.0 534 546 r 2.10336 1 2 cbr 210 ------- 1 1.0 5.0 520 531 + 2.10336 2 3 cbr 210 ------- 1 1.0 5.0 520 531 - 2.10336 2 3 cbr 210 ------- 1 1.0 5.0 520 531 r 2.10422 2 3 cbr 210 ------- 1 1.0 5.0 506 517 + 2.10422 3 5 cbr 210 ------- 1 1.0 5.0 506 517 - 2.10422 3 5 cbr 210 ------- 1 1.0 5.0 506 517 r 2.10508 3 5 cbr 210 ------- 1 1.0 5.0 492 503 + 2.10625 1 2 cbr 210 ------- 1 1.0 5.0 535 547 - 2.10625 1 2 cbr 210 ------- 1 1.0 5.0 535 547 r 2.10711 1 2 cbr 210 ------- 1 1.0 5.0 521 532 + 2.10711 2 3 cbr 210 ------- 1 1.0 5.0 521 532 - 2.10711 2 3 cbr 210 ------- 1 1.0 5.0 521 532 r 2.10797 2 3 cbr 210 ------- 1 1.0 5.0 507 518 + 2.10797 3 5 cbr 210 ------- 1 1.0 5.0 507 518 - 2.10797 3 5 cbr 210 ------- 1 1.0 5.0 507 518 r 2.10883 3 5 cbr 210 ------- 1 1.0 5.0 493 504 + 2.11 1 2 cbr 210 ------- 1 1.0 5.0 536 548 - 2.11 1 2 cbr 210 ------- 1 1.0 5.0 536 548 r 2.11086 1 2 cbr 210 ------- 1 1.0 5.0 522 533 + 2.11086 2 3 cbr 210 ------- 1 1.0 5.0 522 533 - 2.11086 2 3 cbr 210 ------- 1 1.0 5.0 522 533 r 2.11172 2 3 cbr 210 ------- 1 1.0 5.0 508 519 + 2.11172 3 5 cbr 210 ------- 1 1.0 5.0 508 519 - 2.11172 3 5 cbr 210 ------- 1 1.0 5.0 508 519 r 2.11258 3 5 cbr 210 ------- 1 1.0 5.0 494 505 r 2.11311 4 3 ack 40 ------- 0 4.0 0.0 5 535 + 2.11311 3 2 ack 40 ------- 0 4.0 0.0 5 535 - 2.11311 3 2 ack 40 ------- 0 4.0 0.0 5 535 + 2.11375 1 2 cbr 210 ------- 1 1.0 5.0 537 549 - 2.11375 1 2 cbr 210 ------- 1 1.0 5.0 537 549 r 2.11461 1 2 cbr 210 ------- 1 1.0 5.0 523 534 + 2.11461 2 3 cbr 210 ------- 1 1.0 5.0 523 534 - 2.11461 2 3 cbr 210 ------- 1 1.0 5.0 523 534 r 2.11547 2 3 cbr 210 ------- 1 1.0 5.0 509 520 + 2.11547 3 5 cbr 210 ------- 1 1.0 5.0 509 520 - 2.11547 3 5 cbr 210 ------- 1 1.0 5.0 509 520 r 2.11633 3 5 cbr 210 ------- 1 1.0 5.0 495 506 + 2.1175 1 2 cbr 210 ------- 1 1.0 5.0 538 550 - 2.1175 1 2 cbr 210 ------- 1 1.0 5.0 538 550 r 2.11836 1 2 cbr 210 ------- 1 1.0 5.0 524 536 + 2.11836 2 3 cbr 210 ------- 1 1.0 5.0 524 536 - 2.11836 2 3 cbr 210 ------- 1 1.0 5.0 524 536 r 2.11922 2 3 cbr 210 ------- 1 1.0 5.0 510 521 + 2.11922 3 5 cbr 210 ------- 1 1.0 5.0 510 521 - 2.11922 3 5 cbr 210 ------- 1 1.0 5.0 510 521 r 2.12008 3 5 cbr 210 ------- 1 1.0 5.0 496 507 + 2.12125 1 2 cbr 210 ------- 1 1.0 5.0 539 551 - 2.12125 1 2 cbr 210 ------- 1 1.0 5.0 539 551 r 2.12211 1 2 cbr 210 ------- 1 1.0 5.0 525 537 + 2.12211 2 3 cbr 210 ------- 1 1.0 5.0 525 537 - 2.12211 2 3 cbr 210 ------- 1 1.0 5.0 525 537 r 2.12297 2 3 cbr 210 ------- 1 1.0 5.0 511 522 + 2.12297 3 5 cbr 210 ------- 1 1.0 5.0 511 522 - 2.12297 3 5 cbr 210 ------- 1 1.0 5.0 511 522 r 2.12383 3 5 cbr 210 ------- 1 1.0 5.0 497 508 + 2.125 1 2 cbr 210 ------- 1 1.0 5.0 540 552 - 2.125 1 2 cbr 210 ------- 1 1.0 5.0 540 552 r 2.12586 1 2 cbr 210 ------- 1 1.0 5.0 526 538 + 2.12586 2 3 cbr 210 ------- 1 1.0 5.0 526 538 - 2.12586 2 3 cbr 210 ------- 1 1.0 5.0 526 538 r 2.12672 2 3 cbr 210 ------- 1 1.0 5.0 512 523 + 2.12672 3 5 cbr 210 ------- 1 1.0 5.0 512 523 - 2.12672 3 5 cbr 210 ------- 1 1.0 5.0 512 523 r 2.12758 3 5 cbr 210 ------- 1 1.0 5.0 498 509 + 2.12875 1 2 cbr 210 ------- 1 1.0 5.0 541 553 - 2.12875 1 2 cbr 210 ------- 1 1.0 5.0 541 553 r 2.12961 1 2 cbr 210 ------- 1 1.0 5.0 527 539 + 2.12961 2 3 cbr 210 ------- 1 1.0 5.0 527 539 - 2.12961 2 3 cbr 210 ------- 1 1.0 5.0 527 539 r 2.13047 2 3 cbr 210 ------- 1 1.0 5.0 513 524 + 2.13047 3 5 cbr 210 ------- 1 1.0 5.0 513 524 - 2.13047 3 5 cbr 210 ------- 1 1.0 5.0 513 524 r 2.13133 3 5 cbr 210 ------- 1 1.0 5.0 499 510 + 2.1325 1 2 cbr 210 ------- 1 1.0 5.0 542 554 - 2.1325 1 2 cbr 210 ------- 1 1.0 5.0 542 554 r 2.13336 1 2 cbr 210 ------- 1 1.0 5.0 528 540 + 2.13336 2 3 cbr 210 ------- 1 1.0 5.0 528 540 - 2.13336 2 3 cbr 210 ------- 1 1.0 5.0 528 540 r 2.13422 2 3 cbr 210 ------- 1 1.0 5.0 514 525 + 2.13422 3 5 cbr 210 ------- 1 1.0 5.0 514 525 - 2.13422 3 5 cbr 210 ------- 1 1.0 5.0 514 525 r 2.13508 3 5 cbr 210 ------- 1 1.0 5.0 500 511 + 2.13625 1 2 cbr 210 ------- 1 1.0 5.0 543 555 - 2.13625 1 2 cbr 210 ------- 1 1.0 5.0 543 555 r 2.13711 1 2 cbr 210 ------- 1 1.0 5.0 529 541 + 2.13711 2 3 cbr 210 ------- 1 1.0 5.0 529 541 - 2.13711 2 3 cbr 210 ------- 1 1.0 5.0 529 541 r 2.13797 2 3 cbr 210 ------- 1 1.0 5.0 515 526 + 2.13797 3 5 cbr 210 ------- 1 1.0 5.0 515 526 - 2.13797 3 5 cbr 210 ------- 1 1.0 5.0 515 526 r 2.13883 3 5 cbr 210 ------- 1 1.0 5.0 501 512 + 2.14 1 2 cbr 210 ------- 1 1.0 5.0 544 556 - 2.14 1 2 cbr 210 ------- 1 1.0 5.0 544 556 r 2.14086 1 2 cbr 210 ------- 1 1.0 5.0 530 542 + 2.14086 2 3 cbr 210 ------- 1 1.0 5.0 530 542 - 2.14086 2 3 cbr 210 ------- 1 1.0 5.0 530 542 r 2.14172 2 3 cbr 210 ------- 1 1.0 5.0 516 527 + 2.14172 3 5 cbr 210 ------- 1 1.0 5.0 516 527 - 2.14172 3 5 cbr 210 ------- 1 1.0 5.0 516 527 r 2.14258 3 5 cbr 210 ------- 1 1.0 5.0 502 513 + 2.14375 1 2 cbr 210 ------- 1 1.0 5.0 545 557 - 2.14375 1 2 cbr 210 ------- 1 1.0 5.0 545 557 r 2.14461 1 2 cbr 210 ------- 1 1.0 5.0 531 543 + 2.14461 2 3 cbr 210 ------- 1 1.0 5.0 531 543 - 2.14461 2 3 cbr 210 ------- 1 1.0 5.0 531 543 r 2.14547 2 3 cbr 210 ------- 1 1.0 5.0 517 528 + 2.14547 3 5 cbr 210 ------- 1 1.0 5.0 517 528 - 2.14547 3 5 cbr 210 ------- 1 1.0 5.0 517 528 r 2.14633 3 5 cbr 210 ------- 1 1.0 5.0 503 514 + 2.1475 1 2 cbr 210 ------- 1 1.0 5.0 546 558 - 2.1475 1 2 cbr 210 ------- 1 1.0 5.0 546 558 r 2.14836 1 2 cbr 210 ------- 1 1.0 5.0 532 544 + 2.14836 2 3 cbr 210 ------- 1 1.0 5.0 532 544 - 2.14836 2 3 cbr 210 ------- 1 1.0 5.0 532 544 r 2.14922 2 3 cbr 210 ------- 1 1.0 5.0 518 529 + 2.14922 3 5 cbr 210 ------- 1 1.0 5.0 518 529 - 2.14922 3 5 cbr 210 ------- 1 1.0 5.0 518 529 r 2.15008 3 5 cbr 210 ------- 1 1.0 5.0 504 515 + 2.15125 1 2 cbr 210 ------- 1 1.0 5.0 547 559 - 2.15125 1 2 cbr 210 ------- 1 1.0 5.0 547 559 r 2.15211 1 2 cbr 210 ------- 1 1.0 5.0 533 545 + 2.15211 2 3 cbr 210 ------- 1 1.0 5.0 533 545 - 2.15211 2 3 cbr 210 ------- 1 1.0 5.0 533 545 r 2.15297 2 3 cbr 210 ------- 1 1.0 5.0 519 530 + 2.15297 3 5 cbr 210 ------- 1 1.0 5.0 519 530 - 2.15297 3 5 cbr 210 ------- 1 1.0 5.0 519 530 r 2.15383 3 5 cbr 210 ------- 1 1.0 5.0 505 516 + 2.155 1 2 cbr 210 ------- 1 1.0 5.0 548 560 - 2.155 1 2 cbr 210 ------- 1 1.0 5.0 548 560 r 2.15586 1 2 cbr 210 ------- 1 1.0 5.0 534 546 + 2.15586 2 3 cbr 210 ------- 1 1.0 5.0 534 546 - 2.15586 2 3 cbr 210 ------- 1 1.0 5.0 534 546 r 2.15672 2 3 cbr 210 ------- 1 1.0 5.0 520 531 + 2.15672 3 5 cbr 210 ------- 1 1.0 5.0 520 531 - 2.15672 3 5 cbr 210 ------- 1 1.0 5.0 520 531 r 2.15758 3 5 cbr 210 ------- 1 1.0 5.0 506 517 + 2.15875 1 2 cbr 210 ------- 1 1.0 5.0 549 561 - 2.15875 1 2 cbr 210 ------- 1 1.0 5.0 549 561 r 2.15961 1 2 cbr 210 ------- 1 1.0 5.0 535 547 + 2.15961 2 3 cbr 210 ------- 1 1.0 5.0 535 547 - 2.15961 2 3 cbr 210 ------- 1 1.0 5.0 535 547 r 2.16047 2 3 cbr 210 ------- 1 1.0 5.0 521 532 + 2.16047 3 5 cbr 210 ------- 1 1.0 5.0 521 532 - 2.16047 3 5 cbr 210 ------- 1 1.0 5.0 521 532 r 2.16133 3 5 cbr 210 ------- 1 1.0 5.0 507 518 + 2.1625 1 2 cbr 210 ------- 1 1.0 5.0 550 562 - 2.1625 1 2 cbr 210 ------- 1 1.0 5.0 550 562 r 2.16336 1 2 cbr 210 ------- 1 1.0 5.0 536 548 + 2.16336 2 3 cbr 210 ------- 1 1.0 5.0 536 548 - 2.16336 2 3 cbr 210 ------- 1 1.0 5.0 536 548 r 2.16375 3 2 ack 40 ------- 0 4.0 0.0 5 535 + 2.16375 2 0 ack 40 ------- 0 4.0 0.0 5 535 - 2.16375 2 0 ack 40 ------- 0 4.0 0.0 5 535 r 2.16422 2 3 cbr 210 ------- 1 1.0 5.0 522 533 + 2.16422 3 5 cbr 210 ------- 1 1.0 5.0 522 533 - 2.16422 3 5 cbr 210 ------- 1 1.0 5.0 522 533 r 2.16508 3 5 cbr 210 ------- 1 1.0 5.0 508 519 + 2.16625 1 2 cbr 210 ------- 1 1.0 5.0 551 563 - 2.16625 1 2 cbr 210 ------- 1 1.0 5.0 551 563 r 2.16711 1 2 cbr 210 ------- 1 1.0 5.0 537 549 + 2.16711 2 3 cbr 210 ------- 1 1.0 5.0 537 549 - 2.16711 2 3 cbr 210 ------- 1 1.0 5.0 537 549 r 2.16797 2 3 cbr 210 ------- 1 1.0 5.0 523 534 + 2.16797 3 5 cbr 210 ------- 1 1.0 5.0 523 534 - 2.16797 3 5 cbr 210 ------- 1 1.0 5.0 523 534 r 2.16883 3 5 cbr 210 ------- 1 1.0 5.0 509 520 + 2.17 1 2 cbr 210 ------- 1 1.0 5.0 552 564 - 2.17 1 2 cbr 210 ------- 1 1.0 5.0 552 564 r 2.17086 1 2 cbr 210 ------- 1 1.0 5.0 538 550 + 2.17086 2 3 cbr 210 ------- 1 1.0 5.0 538 550 - 2.17086 2 3 cbr 210 ------- 1 1.0 5.0 538 550 r 2.17172 2 3 cbr 210 ------- 1 1.0 5.0 524 536 + 2.17172 3 5 cbr 210 ------- 1 1.0 5.0 524 536 - 2.17172 3 5 cbr 210 ------- 1 1.0 5.0 524 536 r 2.17258 3 5 cbr 210 ------- 1 1.0 5.0 510 521 + 2.17375 1 2 cbr 210 ------- 1 1.0 5.0 553 565 - 2.17375 1 2 cbr 210 ------- 1 1.0 5.0 553 565 r 2.17461 1 2 cbr 210 ------- 1 1.0 5.0 539 551 + 2.17461 2 3 cbr 210 ------- 1 1.0 5.0 539 551 - 2.17461 2 3 cbr 210 ------- 1 1.0 5.0 539 551 r 2.17547 2 3 cbr 210 ------- 1 1.0 5.0 525 537 + 2.17547 3 5 cbr 210 ------- 1 1.0 5.0 525 537 - 2.17547 3 5 cbr 210 ------- 1 1.0 5.0 525 537 r 2.17633 3 5 cbr 210 ------- 1 1.0 5.0 511 522 + 2.1775 1 2 cbr 210 ------- 1 1.0 5.0 554 566 - 2.1775 1 2 cbr 210 ------- 1 1.0 5.0 554 566 r 2.17836 1 2 cbr 210 ------- 1 1.0 5.0 540 552 + 2.17836 2 3 cbr 210 ------- 1 1.0 5.0 540 552 - 2.17836 2 3 cbr 210 ------- 1 1.0 5.0 540 552 r 2.17922 2 3 cbr 210 ------- 1 1.0 5.0 526 538 + 2.17922 3 5 cbr 210 ------- 1 1.0 5.0 526 538 - 2.17922 3 5 cbr 210 ------- 1 1.0 5.0 526 538 r 2.18008 3 5 cbr 210 ------- 1 1.0 5.0 512 523 + 2.18125 1 2 cbr 210 ------- 1 1.0 5.0 555 567 - 2.18125 1 2 cbr 210 ------- 1 1.0 5.0 555 567 r 2.18211 1 2 cbr 210 ------- 1 1.0 5.0 541 553 + 2.18211 2 3 cbr 210 ------- 1 1.0 5.0 541 553 - 2.18211 2 3 cbr 210 ------- 1 1.0 5.0 541 553 r 2.18297 2 3 cbr 210 ------- 1 1.0 5.0 527 539 + 2.18297 3 5 cbr 210 ------- 1 1.0 5.0 527 539 - 2.18297 3 5 cbr 210 ------- 1 1.0 5.0 527 539 r 2.18383 3 5 cbr 210 ------- 1 1.0 5.0 513 524 + 2.185 1 2 cbr 210 ------- 1 1.0 5.0 556 568 - 2.185 1 2 cbr 210 ------- 1 1.0 5.0 556 568 r 2.18586 1 2 cbr 210 ------- 1 1.0 5.0 542 554 + 2.18586 2 3 cbr 210 ------- 1 1.0 5.0 542 554 - 2.18586 2 3 cbr 210 ------- 1 1.0 5.0 542 554 r 2.18672 2 3 cbr 210 ------- 1 1.0 5.0 528 540 + 2.18672 3 5 cbr 210 ------- 1 1.0 5.0 528 540 - 2.18672 3 5 cbr 210 ------- 1 1.0 5.0 528 540 r 2.18758 3 5 cbr 210 ------- 1 1.0 5.0 514 525 + 2.18875 1 2 cbr 210 ------- 1 1.0 5.0 557 569 - 2.18875 1 2 cbr 210 ------- 1 1.0 5.0 557 569 r 2.18961 1 2 cbr 210 ------- 1 1.0 5.0 543 555 + 2.18961 2 3 cbr 210 ------- 1 1.0 5.0 543 555 - 2.18961 2 3 cbr 210 ------- 1 1.0 5.0 543 555 r 2.19047 2 3 cbr 210 ------- 1 1.0 5.0 529 541 + 2.19047 3 5 cbr 210 ------- 1 1.0 5.0 529 541 - 2.19047 3 5 cbr 210 ------- 1 1.0 5.0 529 541 r 2.19133 3 5 cbr 210 ------- 1 1.0 5.0 515 526 + 2.1925 1 2 cbr 210 ------- 1 1.0 5.0 558 570 - 2.1925 1 2 cbr 210 ------- 1 1.0 5.0 558 570 r 2.19336 1 2 cbr 210 ------- 1 1.0 5.0 544 556 + 2.19336 2 3 cbr 210 ------- 1 1.0 5.0 544 556 - 2.19336 2 3 cbr 210 ------- 1 1.0 5.0 544 556 r 2.19422 2 3 cbr 210 ------- 1 1.0 5.0 530 542 + 2.19422 3 5 cbr 210 ------- 1 1.0 5.0 530 542 - 2.19422 3 5 cbr 210 ------- 1 1.0 5.0 530 542 r 2.19508 3 5 cbr 210 ------- 1 1.0 5.0 516 527 + 2.19625 1 2 cbr 210 ------- 1 1.0 5.0 559 571 - 2.19625 1 2 cbr 210 ------- 1 1.0 5.0 559 571 r 2.19711 1 2 cbr 210 ------- 1 1.0 5.0 545 557 + 2.19711 2 3 cbr 210 ------- 1 1.0 5.0 545 557 - 2.19711 2 3 cbr 210 ------- 1 1.0 5.0 545 557 r 2.19797 2 3 cbr 210 ------- 1 1.0 5.0 531 543 + 2.19797 3 5 cbr 210 ------- 1 1.0 5.0 531 543 - 2.19797 3 5 cbr 210 ------- 1 1.0 5.0 531 543 r 2.19883 3 5 cbr 210 ------- 1 1.0 5.0 517 528 + 2.2 1 2 cbr 210 ------- 1 1.0 5.0 560 572 - 2.2 1 2 cbr 210 ------- 1 1.0 5.0 560 572 r 2.20086 1 2 cbr 210 ------- 1 1.0 5.0 546 558 + 2.20086 2 3 cbr 210 ------- 1 1.0 5.0 546 558 - 2.20086 2 3 cbr 210 ------- 1 1.0 5.0 546 558 r 2.20172 2 3 cbr 210 ------- 1 1.0 5.0 532 544 + 2.20172 3 5 cbr 210 ------- 1 1.0 5.0 532 544 - 2.20172 3 5 cbr 210 ------- 1 1.0 5.0 532 544 r 2.20258 3 5 cbr 210 ------- 1 1.0 5.0 518 529 + 2.20375 1 2 cbr 210 ------- 1 1.0 5.0 561 573 - 2.20375 1 2 cbr 210 ------- 1 1.0 5.0 561 573 r 2.20461 1 2 cbr 210 ------- 1 1.0 5.0 547 559 + 2.20461 2 3 cbr 210 ------- 1 1.0 5.0 547 559 - 2.20461 2 3 cbr 210 ------- 1 1.0 5.0 547 559 r 2.20547 2 3 cbr 210 ------- 1 1.0 5.0 533 545 + 2.20547 3 5 cbr 210 ------- 1 1.0 5.0 533 545 - 2.20547 3 5 cbr 210 ------- 1 1.0 5.0 533 545 r 2.20633 3 5 cbr 210 ------- 1 1.0 5.0 519 530 + 2.2075 1 2 cbr 210 ------- 1 1.0 5.0 562 574 - 2.2075 1 2 cbr 210 ------- 1 1.0 5.0 562 574 r 2.20836 1 2 cbr 210 ------- 1 1.0 5.0 548 560 + 2.20836 2 3 cbr 210 ------- 1 1.0 5.0 548 560 - 2.20836 2 3 cbr 210 ------- 1 1.0 5.0 548 560 r 2.20922 2 3 cbr 210 ------- 1 1.0 5.0 534 546 + 2.20922 3 5 cbr 210 ------- 1 1.0 5.0 534 546 - 2.20922 3 5 cbr 210 ------- 1 1.0 5.0 534 546 r 2.21008 3 5 cbr 210 ------- 1 1.0 5.0 520 531 + 2.21125 1 2 cbr 210 ------- 1 1.0 5.0 563 575 - 2.21125 1 2 cbr 210 ------- 1 1.0 5.0 563 575 r 2.21211 1 2 cbr 210 ------- 1 1.0 5.0 549 561 + 2.21211 2 3 cbr 210 ------- 1 1.0 5.0 549 561 - 2.21211 2 3 cbr 210 ------- 1 1.0 5.0 549 561 r 2.21297 2 3 cbr 210 ------- 1 1.0 5.0 535 547 + 2.21297 3 5 cbr 210 ------- 1 1.0 5.0 535 547 - 2.21297 3 5 cbr 210 ------- 1 1.0 5.0 535 547 r 2.21383 3 5 cbr 210 ------- 1 1.0 5.0 521 532 r 2.21439 2 0 ack 40 ------- 0 4.0 0.0 5 535 + 2.21439 0 2 tcp 1000 ------- 0 0.0 4.0 6 576 - 2.21439 0 2 tcp 1000 ------- 0 0.0 4.0 6 576 + 2.215 1 2 cbr 210 ------- 1 1.0 5.0 564 577 - 2.215 1 2 cbr 210 ------- 1 1.0 5.0 564 577 r 2.21586 1 2 cbr 210 ------- 1 1.0 5.0 550 562 + 2.21586 2 3 cbr 210 ------- 1 1.0 5.0 550 562 - 2.21586 2 3 cbr 210 ------- 1 1.0 5.0 550 562 r 2.21672 2 3 cbr 210 ------- 1 1.0 5.0 536 548 + 2.21672 3 5 cbr 210 ------- 1 1.0 5.0 536 548 - 2.21672 3 5 cbr 210 ------- 1 1.0 5.0 536 548 r 2.21758 3 5 cbr 210 ------- 1 1.0 5.0 522 533 + 2.21875 1 2 cbr 210 ------- 1 1.0 5.0 565 578 - 2.21875 1 2 cbr 210 ------- 1 1.0 5.0 565 578 r 2.21961 1 2 cbr 210 ------- 1 1.0 5.0 551 563 + 2.21961 2 3 cbr 210 ------- 1 1.0 5.0 551 563 - 2.21961 2 3 cbr 210 ------- 1 1.0 5.0 551 563 r 2.22047 2 3 cbr 210 ------- 1 1.0 5.0 537 549 + 2.22047 3 5 cbr 210 ------- 1 1.0 5.0 537 549 - 2.22047 3 5 cbr 210 ------- 1 1.0 5.0 537 549 r 2.22133 3 5 cbr 210 ------- 1 1.0 5.0 523 534 + 2.2225 1 2 cbr 210 ------- 1 1.0 5.0 566 579 - 2.2225 1 2 cbr 210 ------- 1 1.0 5.0 566 579 r 2.22336 1 2 cbr 210 ------- 1 1.0 5.0 552 564 + 2.22336 2 3 cbr 210 ------- 1 1.0 5.0 552 564 - 2.22336 2 3 cbr 210 ------- 1 1.0 5.0 552 564 r 2.22422 2 3 cbr 210 ------- 1 1.0 5.0 538 550 + 2.22422 3 5 cbr 210 ------- 1 1.0 5.0 538 550 - 2.22422 3 5 cbr 210 ------- 1 1.0 5.0 538 550 r 2.22508 3 5 cbr 210 ------- 1 1.0 5.0 524 536 + 2.22625 1 2 cbr 210 ------- 1 1.0 5.0 567 580 - 2.22625 1 2 cbr 210 ------- 1 1.0 5.0 567 580 r 2.22711 1 2 cbr 210 ------- 1 1.0 5.0 553 565 + 2.22711 2 3 cbr 210 ------- 1 1.0 5.0 553 565 - 2.22711 2 3 cbr 210 ------- 1 1.0 5.0 553 565 r 2.22797 2 3 cbr 210 ------- 1 1.0 5.0 539 551 + 2.22797 3 5 cbr 210 ------- 1 1.0 5.0 539 551 - 2.22797 3 5 cbr 210 ------- 1 1.0 5.0 539 551 r 2.22883 3 5 cbr 210 ------- 1 1.0 5.0 525 537 + 2.23 1 2 cbr 210 ------- 1 1.0 5.0 568 581 - 2.23 1 2 cbr 210 ------- 1 1.0 5.0 568 581 r 2.23086 1 2 cbr 210 ------- 1 1.0 5.0 554 566 + 2.23086 2 3 cbr 210 ------- 1 1.0 5.0 554 566 - 2.23086 2 3 cbr 210 ------- 1 1.0 5.0 554 566 r 2.23172 2 3 cbr 210 ------- 1 1.0 5.0 540 552 + 2.23172 3 5 cbr 210 ------- 1 1.0 5.0 540 552 - 2.23172 3 5 cbr 210 ------- 1 1.0 5.0 540 552 r 2.23258 3 5 cbr 210 ------- 1 1.0 5.0 526 538 + 2.23375 1 2 cbr 210 ------- 1 1.0 5.0 569 582 - 2.23375 1 2 cbr 210 ------- 1 1.0 5.0 569 582 r 2.23461 1 2 cbr 210 ------- 1 1.0 5.0 555 567 + 2.23461 2 3 cbr 210 ------- 1 1.0 5.0 555 567 - 2.23461 2 3 cbr 210 ------- 1 1.0 5.0 555 567 r 2.23547 2 3 cbr 210 ------- 1 1.0 5.0 541 553 + 2.23547 3 5 cbr 210 ------- 1 1.0 5.0 541 553 - 2.23547 3 5 cbr 210 ------- 1 1.0 5.0 541 553 r 2.23633 3 5 cbr 210 ------- 1 1.0 5.0 527 539 + 2.2375 1 2 cbr 210 ------- 1 1.0 5.0 570 583 - 2.2375 1 2 cbr 210 ------- 1 1.0 5.0 570 583 r 2.23836 1 2 cbr 210 ------- 1 1.0 5.0 556 568 + 2.23836 2 3 cbr 210 ------- 1 1.0 5.0 556 568 - 2.23836 2 3 cbr 210 ------- 1 1.0 5.0 556 568 r 2.23922 2 3 cbr 210 ------- 1 1.0 5.0 542 554 + 2.23922 3 5 cbr 210 ------- 1 1.0 5.0 542 554 - 2.23922 3 5 cbr 210 ------- 1 1.0 5.0 542 554 r 2.24008 3 5 cbr 210 ------- 1 1.0 5.0 528 540 + 2.24125 1 2 cbr 210 ------- 1 1.0 5.0 571 584 - 2.24125 1 2 cbr 210 ------- 1 1.0 5.0 571 584 r 2.24211 1 2 cbr 210 ------- 1 1.0 5.0 557 569 + 2.24211 2 3 cbr 210 ------- 1 1.0 5.0 557 569 - 2.24211 2 3 cbr 210 ------- 1 1.0 5.0 557 569 r 2.24297 2 3 cbr 210 ------- 1 1.0 5.0 543 555 + 2.24297 3 5 cbr 210 ------- 1 1.0 5.0 543 555 - 2.24297 3 5 cbr 210 ------- 1 1.0 5.0 543 555 r 2.24383 3 5 cbr 210 ------- 1 1.0 5.0 529 541 + 2.245 1 2 cbr 210 ------- 1 1.0 5.0 572 585 - 2.245 1 2 cbr 210 ------- 1 1.0 5.0 572 585 r 2.24586 1 2 cbr 210 ------- 1 1.0 5.0 558 570 + 2.24586 2 3 cbr 210 ------- 1 1.0 5.0 558 570 - 2.24586 2 3 cbr 210 ------- 1 1.0 5.0 558 570 r 2.24672 2 3 cbr 210 ------- 1 1.0 5.0 544 556 + 2.24672 3 5 cbr 210 ------- 1 1.0 5.0 544 556 - 2.24672 3 5 cbr 210 ------- 1 1.0 5.0 544 556 r 2.24758 3 5 cbr 210 ------- 1 1.0 5.0 530 542 + 2.24875 1 2 cbr 210 ------- 1 1.0 5.0 573 586 - 2.24875 1 2 cbr 210 ------- 1 1.0 5.0 573 586 r 2.24961 1 2 cbr 210 ------- 1 1.0 5.0 559 571 + 2.24961 2 3 cbr 210 ------- 1 1.0 5.0 559 571 - 2.24961 2 3 cbr 210 ------- 1 1.0 5.0 559 571 r 2.25047 2 3 cbr 210 ------- 1 1.0 5.0 545 557 + 2.25047 3 5 cbr 210 ------- 1 1.0 5.0 545 557 - 2.25047 3 5 cbr 210 ------- 1 1.0 5.0 545 557 r 2.25133 3 5 cbr 210 ------- 1 1.0 5.0 531 543 + 2.2525 1 2 cbr 210 ------- 1 1.0 5.0 574 587 - 2.2525 1 2 cbr 210 ------- 1 1.0 5.0 574 587 r 2.25336 1 2 cbr 210 ------- 1 1.0 5.0 560 572 + 2.25336 2 3 cbr 210 ------- 1 1.0 5.0 560 572 - 2.25336 2 3 cbr 210 ------- 1 1.0 5.0 560 572 r 2.25422 2 3 cbr 210 ------- 1 1.0 5.0 546 558 + 2.25422 3 5 cbr 210 ------- 1 1.0 5.0 546 558 - 2.25422 3 5 cbr 210 ------- 1 1.0 5.0 546 558 r 2.25508 3 5 cbr 210 ------- 1 1.0 5.0 532 544 + 2.25625 1 2 cbr 210 ------- 1 1.0 5.0 575 588 - 2.25625 1 2 cbr 210 ------- 1 1.0 5.0 575 588 r 2.25711 1 2 cbr 210 ------- 1 1.0 5.0 561 573 + 2.25711 2 3 cbr 210 ------- 1 1.0 5.0 561 573 - 2.25711 2 3 cbr 210 ------- 1 1.0 5.0 561 573 r 2.25797 2 3 cbr 210 ------- 1 1.0 5.0 547 559 + 2.25797 3 5 cbr 210 ------- 1 1.0 5.0 547 559 - 2.25797 3 5 cbr 210 ------- 1 1.0 5.0 547 559 r 2.25883 3 5 cbr 210 ------- 1 1.0 5.0 533 545 + 2.26 1 2 cbr 210 ------- 1 1.0 5.0 576 589 - 2.26 1 2 cbr 210 ------- 1 1.0 5.0 576 589 r 2.26086 1 2 cbr 210 ------- 1 1.0 5.0 562 574 + 2.26086 2 3 cbr 210 ------- 1 1.0 5.0 562 574 - 2.26086 2 3 cbr 210 ------- 1 1.0 5.0 562 574 r 2.26172 2 3 cbr 210 ------- 1 1.0 5.0 548 560 + 2.26172 3 5 cbr 210 ------- 1 1.0 5.0 548 560 - 2.26172 3 5 cbr 210 ------- 1 1.0 5.0 548 560 r 2.26258 3 5 cbr 210 ------- 1 1.0 5.0 534 546 + 2.26375 1 2 cbr 210 ------- 1 1.0 5.0 577 590 - 2.26375 1 2 cbr 210 ------- 1 1.0 5.0 577 590 r 2.26461 1 2 cbr 210 ------- 1 1.0 5.0 563 575 + 2.26461 2 3 cbr 210 ------- 1 1.0 5.0 563 575 - 2.26461 2 3 cbr 210 ------- 1 1.0 5.0 563 575 r 2.26547 2 3 cbr 210 ------- 1 1.0 5.0 549 561 + 2.26547 3 5 cbr 210 ------- 1 1.0 5.0 549 561 - 2.26547 3 5 cbr 210 ------- 1 1.0 5.0 549 561 r 2.26633 3 5 cbr 210 ------- 1 1.0 5.0 535 547 + 2.2675 1 2 cbr 210 ------- 1 1.0 5.0 578 591 - 2.2675 1 2 cbr 210 ------- 1 1.0 5.0 578 591 r 2.26836 1 2 cbr 210 ------- 1 1.0 5.0 564 577 + 2.26836 2 3 cbr 210 ------- 1 1.0 5.0 564 577 - 2.26836 2 3 cbr 210 ------- 1 1.0 5.0 564 577 r 2.26922 2 3 cbr 210 ------- 1 1.0 5.0 550 562 + 2.26922 3 5 cbr 210 ------- 1 1.0 5.0 550 562 - 2.26922 3 5 cbr 210 ------- 1 1.0 5.0 550 562 r 2.27008 3 5 cbr 210 ------- 1 1.0 5.0 536 548 + 2.27125 1 2 cbr 210 ------- 1 1.0 5.0 579 592 - 2.27125 1 2 cbr 210 ------- 1 1.0 5.0 579 592 r 2.27211 1 2 cbr 210 ------- 1 1.0 5.0 565 578 + 2.27211 2 3 cbr 210 ------- 1 1.0 5.0 565 578 - 2.27211 2 3 cbr 210 ------- 1 1.0 5.0 565 578 r 2.27297 2 3 cbr 210 ------- 1 1.0 5.0 551 563 + 2.27297 3 5 cbr 210 ------- 1 1.0 5.0 551 563 - 2.27297 3 5 cbr 210 ------- 1 1.0 5.0 551 563 r 2.27383 3 5 cbr 210 ------- 1 1.0 5.0 537 549 + 2.275 1 2 cbr 210 ------- 1 1.0 5.0 580 593 - 2.275 1 2 cbr 210 ------- 1 1.0 5.0 580 593 r 2.27586 1 2 cbr 210 ------- 1 1.0 5.0 566 579 + 2.27586 2 3 cbr 210 ------- 1 1.0 5.0 566 579 - 2.27586 2 3 cbr 210 ------- 1 1.0 5.0 566 579 r 2.27672 2 3 cbr 210 ------- 1 1.0 5.0 552 564 + 2.27672 3 5 cbr 210 ------- 1 1.0 5.0 552 564 - 2.27672 3 5 cbr 210 ------- 1 1.0 5.0 552 564 r 2.27758 3 5 cbr 210 ------- 1 1.0 5.0 538 550 + 2.27875 1 2 cbr 210 ------- 1 1.0 5.0 581 594 - 2.27875 1 2 cbr 210 ------- 1 1.0 5.0 581 594 r 2.27961 1 2 cbr 210 ------- 1 1.0 5.0 567 580 + 2.27961 2 3 cbr 210 ------- 1 1.0 5.0 567 580 - 2.27961 2 3 cbr 210 ------- 1 1.0 5.0 567 580 r 2.28039 0 2 tcp 1000 ------- 0 0.0 4.0 6 576 + 2.28039 2 3 tcp 1000 ------- 0 0.0 4.0 6 576 r 2.28047 2 3 cbr 210 ------- 1 1.0 5.0 553 565 + 2.28047 3 5 cbr 210 ------- 1 1.0 5.0 553 565 - 2.28047 3 5 cbr 210 ------- 1 1.0 5.0 553 565 r 2.28133 3 5 cbr 210 ------- 1 1.0 5.0 539 551 + 2.2825 1 2 cbr 210 ------- 1 1.0 5.0 582 595 - 2.2825 1 2 cbr 210 ------- 1 1.0 5.0 582 595 - 2.28297 2 3 tcp 1000 ------- 0 0.0 4.0 6 576 r 2.28336 1 2 cbr 210 ------- 1 1.0 5.0 568 581 + 2.28336 2 3 cbr 210 ------- 1 1.0 5.0 568 581 r 2.28422 2 3 cbr 210 ------- 1 1.0 5.0 554 566 + 2.28422 3 5 cbr 210 ------- 1 1.0 5.0 554 566 - 2.28422 3 5 cbr 210 ------- 1 1.0 5.0 554 566 r 2.28508 3 5 cbr 210 ------- 1 1.0 5.0 540 552 + 2.28625 1 2 cbr 210 ------- 1 1.0 5.0 583 596 - 2.28625 1 2 cbr 210 ------- 1 1.0 5.0 583 596 r 2.28711 1 2 cbr 210 ------- 1 1.0 5.0 569 582 + 2.28711 2 3 cbr 210 ------- 1 1.0 5.0 569 582 d 2.28711 2 3 cbr 210 ------- 1 1.0 5.0 569 582 r 2.28797 2 3 cbr 210 ------- 1 1.0 5.0 555 567 + 2.28797 3 5 cbr 210 ------- 1 1.0 5.0 555 567 - 2.28797 3 5 cbr 210 ------- 1 1.0 5.0 555 567 r 2.28883 3 5 cbr 210 ------- 1 1.0 5.0 541 553 + 2.29 1 2 cbr 210 ------- 1 1.0 5.0 584 597 - 2.29 1 2 cbr 210 ------- 1 1.0 5.0 584 597 r 2.29086 1 2 cbr 210 ------- 1 1.0 5.0 570 583 + 2.29086 2 3 cbr 210 ------- 1 1.0 5.0 570 583 d 2.29086 2 3 cbr 210 ------- 1 1.0 5.0 570 583 r 2.29172 2 3 cbr 210 ------- 1 1.0 5.0 556 568 + 2.29172 3 5 cbr 210 ------- 1 1.0 5.0 556 568 - 2.29172 3 5 cbr 210 ------- 1 1.0 5.0 556 568 r 2.29258 3 5 cbr 210 ------- 1 1.0 5.0 542 554 + 2.29375 1 2 cbr 210 ------- 1 1.0 5.0 585 598 - 2.29375 1 2 cbr 210 ------- 1 1.0 5.0 585 598 r 2.29461 1 2 cbr 210 ------- 1 1.0 5.0 571 584 + 2.29461 2 3 cbr 210 ------- 1 1.0 5.0 571 584 d 2.29461 2 3 cbr 210 ------- 1 1.0 5.0 571 584 r 2.29547 2 3 cbr 210 ------- 1 1.0 5.0 557 569 + 2.29547 3 5 cbr 210 ------- 1 1.0 5.0 557 569 - 2.29547 3 5 cbr 210 ------- 1 1.0 5.0 557 569 r 2.29633 3 5 cbr 210 ------- 1 1.0 5.0 543 555 + 2.2975 1 2 cbr 210 ------- 1 1.0 5.0 586 599 - 2.2975 1 2 cbr 210 ------- 1 1.0 5.0 586 599 r 2.29836 1 2 cbr 210 ------- 1 1.0 5.0 572 585 + 2.29836 2 3 cbr 210 ------- 1 1.0 5.0 572 585 d 2.29836 2 3 cbr 210 ------- 1 1.0 5.0 572 585 - 2.29897 2 3 cbr 210 ------- 1 1.0 5.0 568 581 r 2.29922 2 3 cbr 210 ------- 1 1.0 5.0 558 570 + 2.29922 3 5 cbr 210 ------- 1 1.0 5.0 558 570 - 2.29922 3 5 cbr 210 ------- 1 1.0 5.0 558 570 r 2.30008 3 5 cbr 210 ------- 1 1.0 5.0 544 556 + 2.30125 1 2 cbr 210 ------- 1 1.0 5.0 587 600 - 2.30125 1 2 cbr 210 ------- 1 1.0 5.0 587 600 r 2.30211 1 2 cbr 210 ------- 1 1.0 5.0 573 586 + 2.30211 2 3 cbr 210 ------- 1 1.0 5.0 573 586 - 2.30233 2 3 cbr 210 ------- 1 1.0 5.0 573 586 r 2.30297 2 3 cbr 210 ------- 1 1.0 5.0 559 571 + 2.30297 3 5 cbr 210 ------- 1 1.0 5.0 559 571 - 2.30297 3 5 cbr 210 ------- 1 1.0 5.0 559 571 r 2.30383 3 5 cbr 210 ------- 1 1.0 5.0 545 557 + 2.305 1 2 cbr 210 ------- 1 1.0 5.0 588 601 - 2.305 1 2 cbr 210 ------- 1 1.0 5.0 588 601 r 2.30586 1 2 cbr 210 ------- 1 1.0 5.0 574 587 + 2.30586 2 3 cbr 210 ------- 1 1.0 5.0 574 587 - 2.30586 2 3 cbr 210 ------- 1 1.0 5.0 574 587 r 2.30672 2 3 cbr 210 ------- 1 1.0 5.0 560 572 + 2.30672 3 5 cbr 210 ------- 1 1.0 5.0 560 572 - 2.30672 3 5 cbr 210 ------- 1 1.0 5.0 560 572 r 2.30758 3 5 cbr 210 ------- 1 1.0 5.0 546 558 + 2.30875 1 2 cbr 210 ------- 1 1.0 5.0 589 602 - 2.30875 1 2 cbr 210 ------- 1 1.0 5.0 589 602 r 2.30961 1 2 cbr 210 ------- 1 1.0 5.0 575 588 + 2.30961 2 3 cbr 210 ------- 1 1.0 5.0 575 588 - 2.30961 2 3 cbr 210 ------- 1 1.0 5.0 575 588 r 2.31047 2 3 cbr 210 ------- 1 1.0 5.0 561 573 + 2.31047 3 5 cbr 210 ------- 1 1.0 5.0 561 573 - 2.31047 3 5 cbr 210 ------- 1 1.0 5.0 561 573 r 2.31133 3 5 cbr 210 ------- 1 1.0 5.0 547 559 + 2.3125 1 2 cbr 210 ------- 1 1.0 5.0 590 603 - 2.3125 1 2 cbr 210 ------- 1 1.0 5.0 590 603 r 2.31336 1 2 cbr 210 ------- 1 1.0 5.0 576 589 + 2.31336 2 3 cbr 210 ------- 1 1.0 5.0 576 589 - 2.31336 2 3 cbr 210 ------- 1 1.0 5.0 576 589 r 2.31422 2 3 cbr 210 ------- 1 1.0 5.0 562 574 + 2.31422 3 5 cbr 210 ------- 1 1.0 5.0 562 574 - 2.31422 3 5 cbr 210 ------- 1 1.0 5.0 562 574 r 2.31508 3 5 cbr 210 ------- 1 1.0 5.0 548 560 + 2.31625 1 2 cbr 210 ------- 1 1.0 5.0 591 604 - 2.31625 1 2 cbr 210 ------- 1 1.0 5.0 591 604 r 2.31711 1 2 cbr 210 ------- 1 1.0 5.0 577 590 + 2.31711 2 3 cbr 210 ------- 1 1.0 5.0 577 590 - 2.31711 2 3 cbr 210 ------- 1 1.0 5.0 577 590 r 2.31797 2 3 cbr 210 ------- 1 1.0 5.0 563 575 + 2.31797 3 5 cbr 210 ------- 1 1.0 5.0 563 575 - 2.31797 3 5 cbr 210 ------- 1 1.0 5.0 563 575 r 2.31883 3 5 cbr 210 ------- 1 1.0 5.0 549 561 + 2.32 1 2 cbr 210 ------- 1 1.0 5.0 592 605 - 2.32 1 2 cbr 210 ------- 1 1.0 5.0 592 605 r 2.32086 1 2 cbr 210 ------- 1 1.0 5.0 578 591 + 2.32086 2 3 cbr 210 ------- 1 1.0 5.0 578 591 - 2.32086 2 3 cbr 210 ------- 1 1.0 5.0 578 591 r 2.32172 2 3 cbr 210 ------- 1 1.0 5.0 564 577 + 2.32172 3 5 cbr 210 ------- 1 1.0 5.0 564 577 - 2.32172 3 5 cbr 210 ------- 1 1.0 5.0 564 577 r 2.32258 3 5 cbr 210 ------- 1 1.0 5.0 550 562 + 2.32375 1 2 cbr 210 ------- 1 1.0 5.0 593 606 - 2.32375 1 2 cbr 210 ------- 1 1.0 5.0 593 606 r 2.32461 1 2 cbr 210 ------- 1 1.0 5.0 579 592 + 2.32461 2 3 cbr 210 ------- 1 1.0 5.0 579 592 - 2.32461 2 3 cbr 210 ------- 1 1.0 5.0 579 592 r 2.32547 2 3 cbr 210 ------- 1 1.0 5.0 565 578 + 2.32547 3 5 cbr 210 ------- 1 1.0 5.0 565 578 - 2.32547 3 5 cbr 210 ------- 1 1.0 5.0 565 578 r 2.32633 3 5 cbr 210 ------- 1 1.0 5.0 551 563 + 2.3275 1 2 cbr 210 ------- 1 1.0 5.0 594 607 - 2.3275 1 2 cbr 210 ------- 1 1.0 5.0 594 607 r 2.32836 1 2 cbr 210 ------- 1 1.0 5.0 580 593 + 2.32836 2 3 cbr 210 ------- 1 1.0 5.0 580 593 - 2.32836 2 3 cbr 210 ------- 1 1.0 5.0 580 593 r 2.32922 2 3 cbr 210 ------- 1 1.0 5.0 566 579 + 2.32922 3 5 cbr 210 ------- 1 1.0 5.0 566 579 - 2.32922 3 5 cbr 210 ------- 1 1.0 5.0 566 579 r 2.33008 3 5 cbr 210 ------- 1 1.0 5.0 552 564 + 2.33125 1 2 cbr 210 ------- 1 1.0 5.0 595 608 - 2.33125 1 2 cbr 210 ------- 1 1.0 5.0 595 608 r 2.33211 1 2 cbr 210 ------- 1 1.0 5.0 581 594 + 2.33211 2 3 cbr 210 ------- 1 1.0 5.0 581 594 - 2.33211 2 3 cbr 210 ------- 1 1.0 5.0 581 594 r 2.33297 2 3 cbr 210 ------- 1 1.0 5.0 567 580 + 2.33297 3 5 cbr 210 ------- 1 1.0 5.0 567 580 - 2.33297 3 5 cbr 210 ------- 1 1.0 5.0 567 580 r 2.33383 3 5 cbr 210 ------- 1 1.0 5.0 553 565 + 2.335 1 2 cbr 210 ------- 1 1.0 5.0 596 609 - 2.335 1 2 cbr 210 ------- 1 1.0 5.0 596 609 r 2.33586 1 2 cbr 210 ------- 1 1.0 5.0 582 595 + 2.33586 2 3 cbr 210 ------- 1 1.0 5.0 582 595 - 2.33586 2 3 cbr 210 ------- 1 1.0 5.0 582 595 r 2.33758 3 5 cbr 210 ------- 1 1.0 5.0 554 566 + 2.33875 1 2 cbr 210 ------- 1 1.0 5.0 597 610 - 2.33875 1 2 cbr 210 ------- 1 1.0 5.0 597 610 r 2.33961 1 2 cbr 210 ------- 1 1.0 5.0 583 596 + 2.33961 2 3 cbr 210 ------- 1 1.0 5.0 583 596 - 2.33961 2 3 cbr 210 ------- 1 1.0 5.0 583 596 r 2.34133 3 5 cbr 210 ------- 1 1.0 5.0 555 567 + 2.3425 1 2 cbr 210 ------- 1 1.0 5.0 598 611 - 2.3425 1 2 cbr 210 ------- 1 1.0 5.0 598 611 r 2.34336 1 2 cbr 210 ------- 1 1.0 5.0 584 597 + 2.34336 2 3 cbr 210 ------- 1 1.0 5.0 584 597 - 2.34336 2 3 cbr 210 ------- 1 1.0 5.0 584 597 r 2.34508 3 5 cbr 210 ------- 1 1.0 5.0 556 568 + 2.34625 1 2 cbr 210 ------- 1 1.0 5.0 599 612 - 2.34625 1 2 cbr 210 ------- 1 1.0 5.0 599 612 r 2.34711 1 2 cbr 210 ------- 1 1.0 5.0 585 598 + 2.34711 2 3 cbr 210 ------- 1 1.0 5.0 585 598 - 2.34711 2 3 cbr 210 ------- 1 1.0 5.0 585 598 r 2.34883 3 5 cbr 210 ------- 1 1.0 5.0 557 569 r 2.34897 2 3 tcp 1000 ------- 0 0.0 4.0 6 576 + 2.34897 3 4 tcp 1000 ------- 0 0.0 4.0 6 576 - 2.34897 3 4 tcp 1000 ------- 0 0.0 4.0 6 576 + 2.35 1 2 cbr 210 ------- 1 1.0 5.0 600 613 - 2.35 1 2 cbr 210 ------- 1 1.0 5.0 600 613 r 2.35086 1 2 cbr 210 ------- 1 1.0 5.0 586 599 + 2.35086 2 3 cbr 210 ------- 1 1.0 5.0 586 599 - 2.35086 2 3 cbr 210 ------- 1 1.0 5.0 586 599 r 2.35233 2 3 cbr 210 ------- 1 1.0 5.0 568 581 + 2.35233 3 5 cbr 210 ------- 1 1.0 5.0 568 581 - 2.35233 3 5 cbr 210 ------- 1 1.0 5.0 568 581 r 2.35258 3 5 cbr 210 ------- 1 1.0 5.0 558 570 r 2.35461 1 2 cbr 210 ------- 1 1.0 5.0 587 600 + 2.35461 2 3 cbr 210 ------- 1 1.0 5.0 587 600 - 2.35461 2 3 cbr 210 ------- 1 1.0 5.0 587 600 r 2.35569 2 3 cbr 210 ------- 1 1.0 5.0 573 586 + 2.35569 3 5 cbr 210 ------- 1 1.0 5.0 573 586 - 2.35569 3 5 cbr 210 ------- 1 1.0 5.0 573 586 r 2.35633 3 5 cbr 210 ------- 1 1.0 5.0 559 571 r 2.35836 1 2 cbr 210 ------- 1 1.0 5.0 588 601 + 2.35836 2 3 cbr 210 ------- 1 1.0 5.0 588 601 - 2.35836 2 3 cbr 210 ------- 1 1.0 5.0 588 601 r 2.35922 2 3 cbr 210 ------- 1 1.0 5.0 574 587 + 2.35922 3 5 cbr 210 ------- 1 1.0 5.0 574 587 - 2.35922 3 5 cbr 210 ------- 1 1.0 5.0 574 587 r 2.36008 3 5 cbr 210 ------- 1 1.0 5.0 560 572 r 2.36211 1 2 cbr 210 ------- 1 1.0 5.0 589 602 + 2.36211 2 3 cbr 210 ------- 1 1.0 5.0 589 602 - 2.36211 2 3 cbr 210 ------- 1 1.0 5.0 589 602 r 2.36297 2 3 cbr 210 ------- 1 1.0 5.0 575 588 + 2.36297 3 5 cbr 210 ------- 1 1.0 5.0 575 588 - 2.36297 3 5 cbr 210 ------- 1 1.0 5.0 575 588 r 2.36383 3 5 cbr 210 ------- 1 1.0 5.0 561 573 r 2.36586 1 2 cbr 210 ------- 1 1.0 5.0 590 603 + 2.36586 2 3 cbr 210 ------- 1 1.0 5.0 590 603 - 2.36586 2 3 cbr 210 ------- 1 1.0 5.0 590 603 r 2.36672 2 3 cbr 210 ------- 1 1.0 5.0 576 589 + 2.36672 3 5 cbr 210 ------- 1 1.0 5.0 576 589 - 2.36672 3 5 cbr 210 ------- 1 1.0 5.0 576 589 r 2.36758 3 5 cbr 210 ------- 1 1.0 5.0 562 574 r 2.36961 1 2 cbr 210 ------- 1 1.0 5.0 591 604 + 2.36961 2 3 cbr 210 ------- 1 1.0 5.0 591 604 - 2.36961 2 3 cbr 210 ------- 1 1.0 5.0 591 604 r 2.37047 2 3 cbr 210 ------- 1 1.0 5.0 577 590 + 2.37047 3 5 cbr 210 ------- 1 1.0 5.0 577 590 - 2.37047 3 5 cbr 210 ------- 1 1.0 5.0 577 590 r 2.37133 3 5 cbr 210 ------- 1 1.0 5.0 563 575 r 2.37336 1 2 cbr 210 ------- 1 1.0 5.0 592 605 + 2.37336 2 3 cbr 210 ------- 1 1.0 5.0 592 605 - 2.37336 2 3 cbr 210 ------- 1 1.0 5.0 592 605 r 2.37422 2 3 cbr 210 ------- 1 1.0 5.0 578 591 + 2.37422 3 5 cbr 210 ------- 1 1.0 5.0 578 591 - 2.37422 3 5 cbr 210 ------- 1 1.0 5.0 578 591 r 2.37508 3 5 cbr 210 ------- 1 1.0 5.0 564 577 r 2.37711 1 2 cbr 210 ------- 1 1.0 5.0 593 606 + 2.37711 2 3 cbr 210 ------- 1 1.0 5.0 593 606 - 2.37711 2 3 cbr 210 ------- 1 1.0 5.0 593 606 r 2.37797 2 3 cbr 210 ------- 1 1.0 5.0 579 592 + 2.37797 3 5 cbr 210 ------- 1 1.0 5.0 579 592 - 2.37797 3 5 cbr 210 ------- 1 1.0 5.0 579 592 r 2.37883 3 5 cbr 210 ------- 1 1.0 5.0 565 578 r 2.38086 1 2 cbr 210 ------- 1 1.0 5.0 594 607 + 2.38086 2 3 cbr 210 ------- 1 1.0 5.0 594 607 - 2.38086 2 3 cbr 210 ------- 1 1.0 5.0 594 607 r 2.38172 2 3 cbr 210 ------- 1 1.0 5.0 580 593 + 2.38172 3 5 cbr 210 ------- 1 1.0 5.0 580 593 - 2.38172 3 5 cbr 210 ------- 1 1.0 5.0 580 593 r 2.38258 3 5 cbr 210 ------- 1 1.0 5.0 566 579 r 2.38461 1 2 cbr 210 ------- 1 1.0 5.0 595 608 + 2.38461 2 3 cbr 210 ------- 1 1.0 5.0 595 608 - 2.38461 2 3 cbr 210 ------- 1 1.0 5.0 595 608 r 2.38547 2 3 cbr 210 ------- 1 1.0 5.0 581 594 + 2.38547 3 5 cbr 210 ------- 1 1.0 5.0 581 594 - 2.38547 3 5 cbr 210 ------- 1 1.0 5.0 581 594 r 2.38633 3 5 cbr 210 ------- 1 1.0 5.0 567 580 r 2.38836 1 2 cbr 210 ------- 1 1.0 5.0 596 609 + 2.38836 2 3 cbr 210 ------- 1 1.0 5.0 596 609 - 2.38836 2 3 cbr 210 ------- 1 1.0 5.0 596 609 r 2.38922 2 3 cbr 210 ------- 1 1.0 5.0 582 595 + 2.38922 3 5 cbr 210 ------- 1 1.0 5.0 582 595 - 2.38922 3 5 cbr 210 ------- 1 1.0 5.0 582 595 r 2.39211 1 2 cbr 210 ------- 1 1.0 5.0 597 610 + 2.39211 2 3 cbr 210 ------- 1 1.0 5.0 597 610 - 2.39211 2 3 cbr 210 ------- 1 1.0 5.0 597 610 r 2.39297 2 3 cbr 210 ------- 1 1.0 5.0 583 596 + 2.39297 3 5 cbr 210 ------- 1 1.0 5.0 583 596 - 2.39297 3 5 cbr 210 ------- 1 1.0 5.0 583 596 r 2.39586 1 2 cbr 210 ------- 1 1.0 5.0 598 611 + 2.39586 2 3 cbr 210 ------- 1 1.0 5.0 598 611 - 2.39586 2 3 cbr 210 ------- 1 1.0 5.0 598 611 r 2.39672 2 3 cbr 210 ------- 1 1.0 5.0 584 597 + 2.39672 3 5 cbr 210 ------- 1 1.0 5.0 584 597 - 2.39672 3 5 cbr 210 ------- 1 1.0 5.0 584 597 r 2.39961 1 2 cbr 210 ------- 1 1.0 5.0 599 612 + 2.39961 2 3 cbr 210 ------- 1 1.0 5.0 599 612 - 2.39961 2 3 cbr 210 ------- 1 1.0 5.0 599 612 r 2.40047 2 3 cbr 210 ------- 1 1.0 5.0 585 598 + 2.40047 3 5 cbr 210 ------- 1 1.0 5.0 585 598 - 2.40047 3 5 cbr 210 ------- 1 1.0 5.0 585 598 r 2.40336 1 2 cbr 210 ------- 1 1.0 5.0 600 613 + 2.40336 2 3 cbr 210 ------- 1 1.0 5.0 600 613 - 2.40336 2 3 cbr 210 ------- 1 1.0 5.0 600 613 r 2.40422 2 3 cbr 210 ------- 1 1.0 5.0 586 599 + 2.40422 3 5 cbr 210 ------- 1 1.0 5.0 586 599 - 2.40422 3 5 cbr 210 ------- 1 1.0 5.0 586 599 r 2.40569 3 5 cbr 210 ------- 1 1.0 5.0 568 581 r 2.40797 2 3 cbr 210 ------- 1 1.0 5.0 587 600 + 2.40797 3 5 cbr 210 ------- 1 1.0 5.0 587 600 - 2.40797 3 5 cbr 210 ------- 1 1.0 5.0 587 600 r 2.40905 3 5 cbr 210 ------- 1 1.0 5.0 573 586 r 2.41172 2 3 cbr 210 ------- 1 1.0 5.0 588 601 + 2.41172 3 5 cbr 210 ------- 1 1.0 5.0 588 601 - 2.41172 3 5 cbr 210 ------- 1 1.0 5.0 588 601 r 2.41258 3 5 cbr 210 ------- 1 1.0 5.0 574 587 r 2.41497 3 4 tcp 1000 ------- 0 0.0 4.0 6 576 + 2.41497 4 3 ack 40 ------- 0 4.0 0.0 6 614 - 2.41497 4 3 ack 40 ------- 0 4.0 0.0 6 614 r 2.41547 2 3 cbr 210 ------- 1 1.0 5.0 589 602 + 2.41547 3 5 cbr 210 ------- 1 1.0 5.0 589 602 - 2.41547 3 5 cbr 210 ------- 1 1.0 5.0 589 602 r 2.41633 3 5 cbr 210 ------- 1 1.0 5.0 575 588 r 2.41922 2 3 cbr 210 ------- 1 1.0 5.0 590 603 + 2.41922 3 5 cbr 210 ------- 1 1.0 5.0 590 603 - 2.41922 3 5 cbr 210 ------- 1 1.0 5.0 590 603 r 2.42008 3 5 cbr 210 ------- 1 1.0 5.0 576 589 r 2.42297 2 3 cbr 210 ------- 1 1.0 5.0 591 604 + 2.42297 3 5 cbr 210 ------- 1 1.0 5.0 591 604 - 2.42297 3 5 cbr 210 ------- 1 1.0 5.0 591 604 r 2.42383 3 5 cbr 210 ------- 1 1.0 5.0 577 590 r 2.42672 2 3 cbr 210 ------- 1 1.0 5.0 592 605 + 2.42672 3 5 cbr 210 ------- 1 1.0 5.0 592 605 - 2.42672 3 5 cbr 210 ------- 1 1.0 5.0 592 605 r 2.42758 3 5 cbr 210 ------- 1 1.0 5.0 578 591 r 2.43047 2 3 cbr 210 ------- 1 1.0 5.0 593 606 + 2.43047 3 5 cbr 210 ------- 1 1.0 5.0 593 606 - 2.43047 3 5 cbr 210 ------- 1 1.0 5.0 593 606 r 2.43133 3 5 cbr 210 ------- 1 1.0 5.0 579 592 r 2.43422 2 3 cbr 210 ------- 1 1.0 5.0 594 607 + 2.43422 3 5 cbr 210 ------- 1 1.0 5.0 594 607 - 2.43422 3 5 cbr 210 ------- 1 1.0 5.0 594 607 r 2.43508 3 5 cbr 210 ------- 1 1.0 5.0 580 593 r 2.43797 2 3 cbr 210 ------- 1 1.0 5.0 595 608 + 2.43797 3 5 cbr 210 ------- 1 1.0 5.0 595 608 - 2.43797 3 5 cbr 210 ------- 1 1.0 5.0 595 608 r 2.43883 3 5 cbr 210 ------- 1 1.0 5.0 581 594 r 2.44172 2 3 cbr 210 ------- 1 1.0 5.0 596 609 + 2.44172 3 5 cbr 210 ------- 1 1.0 5.0 596 609 - 2.44172 3 5 cbr 210 ------- 1 1.0 5.0 596 609 r 2.44258 3 5 cbr 210 ------- 1 1.0 5.0 582 595 r 2.44547 2 3 cbr 210 ------- 1 1.0 5.0 597 610 + 2.44547 3 5 cbr 210 ------- 1 1.0 5.0 597 610 - 2.44547 3 5 cbr 210 ------- 1 1.0 5.0 597 610 r 2.44633 3 5 cbr 210 ------- 1 1.0 5.0 583 596 r 2.44922 2 3 cbr 210 ------- 1 1.0 5.0 598 611 + 2.44922 3 5 cbr 210 ------- 1 1.0 5.0 598 611 - 2.44922 3 5 cbr 210 ------- 1 1.0 5.0 598 611 r 2.45008 3 5 cbr 210 ------- 1 1.0 5.0 584 597 r 2.45297 2 3 cbr 210 ------- 1 1.0 5.0 599 612 + 2.45297 3 5 cbr 210 ------- 1 1.0 5.0 599 612 - 2.45297 3 5 cbr 210 ------- 1 1.0 5.0 599 612 r 2.45383 3 5 cbr 210 ------- 1 1.0 5.0 585 598 r 2.45672 2 3 cbr 210 ------- 1 1.0 5.0 600 613 + 2.45672 3 5 cbr 210 ------- 1 1.0 5.0 600 613 - 2.45672 3 5 cbr 210 ------- 1 1.0 5.0 600 613 r 2.45758 3 5 cbr 210 ------- 1 1.0 5.0 586 599 r 2.46133 3 5 cbr 210 ------- 1 1.0 5.0 587 600 r 2.46508 3 5 cbr 210 ------- 1 1.0 5.0 588 601 r 2.46561 4 3 ack 40 ------- 0 4.0 0.0 6 614 + 2.46561 3 2 ack 40 ------- 0 4.0 0.0 6 614 - 2.46561 3 2 ack 40 ------- 0 4.0 0.0 6 614 r 2.46883 3 5 cbr 210 ------- 1 1.0 5.0 589 602 r 2.47258 3 5 cbr 210 ------- 1 1.0 5.0 590 603 r 2.47633 3 5 cbr 210 ------- 1 1.0 5.0 591 604 r 2.48008 3 5 cbr 210 ------- 1 1.0 5.0 592 605 r 2.48383 3 5 cbr 210 ------- 1 1.0 5.0 593 606 r 2.48758 3 5 cbr 210 ------- 1 1.0 5.0 594 607 r 2.49133 3 5 cbr 210 ------- 1 1.0 5.0 595 608 r 2.49508 3 5 cbr 210 ------- 1 1.0 5.0 596 609 r 2.49883 3 5 cbr 210 ------- 1 1.0 5.0 597 610 r 2.50258 3 5 cbr 210 ------- 1 1.0 5.0 598 611 r 2.50633 3 5 cbr 210 ------- 1 1.0 5.0 599 612 r 2.51008 3 5 cbr 210 ------- 1 1.0 5.0 600 613 r 2.51625 3 2 ack 40 ------- 0 4.0 0.0 6 614 + 2.51625 2 0 ack 40 ------- 0 4.0 0.0 6 614 - 2.51625 2 0 ack 40 ------- 0 4.0 0.0 6 614 r 2.56689 2 0 ack 40 ------- 0 4.0 0.0 6 614 nam-1.15/edu/B3-sliding-color.nam0000664000076400007660000021332106756702572015377 0ustar tomhnsnamV -t * -v 1.0a5 -a 0 A -t * -n 1 -p 0 -o 255 -c 15 -a 1 A -t * -h 1 -m 127 -s 8 c -t * -i 1 -n red n -t * -a 4 -s 4 -S UP -v circle -c black n -t * -a 0 -s 0 -S UP -v circle -c black n -t * -a 5 -s 5 -S UP -v circle -c red n -t * -a 1 -s 1 -S UP -v circle -c red n -t * -a 2 -s 2 -S UP -v rectangular -c blue n -t * -a 3 -s 3 -S UP -v rectangular -c blue l -t * -s 0 -d 2 -S UP -r 500000 -D 0.050000000000000003 -c black -o right-down l -t * -s 1 -d 2 -S UP -r 500000 -D 0.050000000000000003 -c black -o right-up l -t * -s 2 -d 3 -S UP -r 500000 -D 0.050000000000000003 -c black -o right l -t * -s 3 -d 4 -S UP -r 500000 -D 0.050000000000000003 -c black -o right-up l -t * -s 3 -d 5 -S UP -r 500000 -D 0.050000000000000003 -c black -o right-down q -t * -s 3 -d 2 -a 0.5 q -t * -s 2 -d 3 -a 0.5 a -t 0.00000000000000000 -s 0 -d 4 -n tcp f -t 0.00000000000000000 -s 0 -d 4 -n cwnd_ -a tcp -v 4.000000 -T v f -t 0.00000000000000000 -s 0 -d 4 -n cwnd_ -a tcp -v 4.000000 -o 4.000000 -T v v -t 0.00000000000000000 monitor_agent 0 tcp n -t 0 -s 0 -S DLABEL -l Sliding-W-sender -L "" n -t 0 -s 1 -S DLABEL -l CBR-sender -L "" n -t 0 -s 4 -S DLABEL -l Sliding-W-receiver -L "" n -t 0 -s 5 -S DLABEL -l CBR-receiver -L "" v -t 0 sim_annotation 0 1 Normal operation of with window size, 4 + -t 0.1 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0 4.0 0 ------- null} - -t 0.1 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0 4.0 0 ------- null} h -t 0.1 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0 4.0 -1 ------- null} + -t 0.1 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 1 -a 0 -x {0.0 4.0 1 ------- null} + -t 0.1 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0 4.0 2 ------- null} + -t 0.1 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0 4.0 3 ------- null} + -t 0.1 -s 1 -d 2 -p cbr -e 500 -c 1 -i 4 -a 1 -x {1.0 5.0 0 ------- null} - -t 0.1 -s 1 -d 2 -p cbr -e 500 -c 1 -i 4 -a 1 -x {1.0 5.0 0 ------- null} h -t 0.1 -s 1 -d 2 -p cbr -e 500 -c 1 -i 4 -a 1 -x {1.0 5.0 -1 ------- null} v -t 0.10000000000000001 sim_annotation 0.10000000000000001 2 FTP starts at 0.1 v -t 0.10000000000000001 sim_annotation 0.10000000000000001 3 CBR starts at 0.1 v -t 0.11 sim_annotation 0.11 4 Send Packet_0,1,2,3 : window size, 4 - -t 0.116 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 1 -a 0 -x {0.0 4.0 1 ------- null} h -t 0.116 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 1 -a 0 -x {0.0 4.0 -1 ------- null} - -t 0.132 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0 4.0 2 ------- null} h -t 0.132 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0 4.0 -1 ------- null} - -t 0.148 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0 4.0 3 ------- null} h -t 0.148 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0 4.0 -1 ------- null} + -t 0.15 -s 1 -d 2 -p cbr -e 500 -c 1 -i 5 -a 1 -x {1.0 5.0 1 ------- null} - -t 0.15 -s 1 -d 2 -p cbr -e 500 -c 1 -i 5 -a 1 -x {1.0 5.0 1 ------- null} h -t 0.15 -s 1 -d 2 -p cbr -e 500 -c 1 -i 5 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.158 -s 1 -d 2 -p cbr -e 500 -c 1 -i 4 -a 1 -x {1.0 5.0 0 ------- null} + -t 0.158 -s 2 -d 3 -p cbr -e 500 -c 1 -i 4 -a 1 -x {1.0 5.0 0 ------- null} - -t 0.158 -s 2 -d 3 -p cbr -e 500 -c 1 -i 4 -a 1 -x {1.0 5.0 0 ------- null} h -t 0.158 -s 2 -d 3 -p cbr -e 500 -c 1 -i 4 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.166 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0 4.0 0 ------- null} + -t 0.166 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0 4.0 0 ------- null} - -t 0.166 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0 4.0 0 ------- null} h -t 0.166 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0 4.0 -1 ------- null} r -t 0.182 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 1 -a 0 -x {0.0 4.0 1 ------- null} + -t 0.182 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 1 -a 0 -x {0.0 4.0 1 ------- null} - -t 0.182 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 1 -a 0 -x {0.0 4.0 1 ------- null} h -t 0.182 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 1 -a 0 -x {0.0 4.0 -1 ------- null} r -t 0.198 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0 4.0 2 ------- null} + -t 0.198 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0 4.0 2 ------- null} - -t 0.198 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0 4.0 2 ------- null} h -t 0.198 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0 4.0 -1 ------- null} + -t 0.2 -s 1 -d 2 -p cbr -e 500 -c 1 -i 6 -a 1 -x {1.0 5.0 2 ------- null} - -t 0.2 -s 1 -d 2 -p cbr -e 500 -c 1 -i 6 -a 1 -x {1.0 5.0 2 ------- null} h -t 0.2 -s 1 -d 2 -p cbr -e 500 -c 1 -i 6 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.208 -s 1 -d 2 -p cbr -e 500 -c 1 -i 5 -a 1 -x {1.0 5.0 1 ------- null} + -t 0.208 -s 2 -d 3 -p cbr -e 500 -c 1 -i 5 -a 1 -x {1.0 5.0 1 ------- null} r -t 0.214 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0 4.0 3 ------- null} + -t 0.214 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0 4.0 3 ------- null} - -t 0.214 -s 2 -d 3 -p cbr -e 500 -c 1 -i 5 -a 1 -x {1.0 5.0 1 ------- null} h -t 0.214 -s 2 -d 3 -p cbr -e 500 -c 1 -i 5 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.216 -s 2 -d 3 -p cbr -e 500 -c 1 -i 4 -a 1 -x {1.0 5.0 0 ------- null} + -t 0.216 -s 3 -d 5 -p cbr -e 500 -c 1 -i 4 -a 1 -x {1.0 5.0 0 ------- null} - -t 0.216 -s 3 -d 5 -p cbr -e 500 -c 1 -i 4 -a 1 -x {1.0 5.0 0 ------- null} h -t 0.216 -s 3 -d 5 -p cbr -e 500 -c 1 -i 4 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.222 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0 4.0 3 ------- null} h -t 0.222 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0 4.0 -1 ------- null} r -t 0.232 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0 4.0 0 ------- null} + -t 0.232 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0 4.0 0 ------- null} - -t 0.232 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0 4.0 0 ------- null} h -t 0.232 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0 4.0 -1 ------- null} r -t 0.248 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 1 -a 0 -x {0.0 4.0 1 ------- null} + -t 0.248 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 1 -a 0 -x {0.0 4.0 1 ------- null} - -t 0.248 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 1 -a 0 -x {0.0 4.0 1 ------- null} h -t 0.248 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 1 -a 0 -x {0.0 4.0 -1 ------- null} + -t 0.25 -s 1 -d 2 -p cbr -e 500 -c 1 -i 7 -a 1 -x {1.0 5.0 3 ------- null} - -t 0.25 -s 1 -d 2 -p cbr -e 500 -c 1 -i 7 -a 1 -x {1.0 5.0 3 ------- null} h -t 0.25 -s 1 -d 2 -p cbr -e 500 -c 1 -i 7 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.258 -s 1 -d 2 -p cbr -e 500 -c 1 -i 6 -a 1 -x {1.0 5.0 2 ------- null} + -t 0.258 -s 2 -d 3 -p cbr -e 500 -c 1 -i 6 -a 1 -x {1.0 5.0 2 ------- null} - -t 0.258 -s 2 -d 3 -p cbr -e 500 -c 1 -i 6 -a 1 -x {1.0 5.0 2 ------- null} h -t 0.258 -s 2 -d 3 -p cbr -e 500 -c 1 -i 6 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.264 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0 4.0 2 ------- null} + -t 0.264 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0 4.0 2 ------- null} - -t 0.264 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0 4.0 2 ------- null} h -t 0.264 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0 4.0 -1 ------- null} r -t 0.272 -s 2 -d 3 -p cbr -e 500 -c 1 -i 5 -a 1 -x {1.0 5.0 1 ------- null} + -t 0.272 -s 3 -d 5 -p cbr -e 500 -c 1 -i 5 -a 1 -x {1.0 5.0 1 ------- null} - -t 0.272 -s 3 -d 5 -p cbr -e 500 -c 1 -i 5 -a 1 -x {1.0 5.0 1 ------- null} h -t 0.272 -s 3 -d 5 -p cbr -e 500 -c 1 -i 5 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.274 -s 3 -d 5 -p cbr -e 500 -c 1 -i 4 -a 1 -x {1.0 5.0 0 ------- null} r -t 0.288 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0 4.0 3 ------- null} + -t 0.288 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0 4.0 3 ------- null} - -t 0.288 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0 4.0 3 ------- null} h -t 0.288 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0 4.0 -1 ------- null} r -t 0.298 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0 4.0 0 ------- null} + -t 0.298 -s 4 -d 3 -p ack -e 40 -c 0 -i 8 -a 0 -x {4.0 0.0 0 ------- null} - -t 0.298 -s 4 -d 3 -p ack -e 40 -c 0 -i 8 -a 0 -x {4.0 0.0 0 ------- null} h -t 0.298 -s 4 -d 3 -p ack -e 40 -c 0 -i 8 -a 0 -x {4.0 0.0 -1 ------- null} + -t 0.3 -s 1 -d 2 -p cbr -e 500 -c 1 -i 9 -a 1 -x {1.0 5.0 4 ------- null} - -t 0.3 -s 1 -d 2 -p cbr -e 500 -c 1 -i 9 -a 1 -x {1.0 5.0 4 ------- null} h -t 0.3 -s 1 -d 2 -p cbr -e 500 -c 1 -i 9 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.308 -s 1 -d 2 -p cbr -e 500 -c 1 -i 7 -a 1 -x {1.0 5.0 3 ------- null} + -t 0.308 -s 2 -d 3 -p cbr -e 500 -c 1 -i 7 -a 1 -x {1.0 5.0 3 ------- null} - -t 0.308 -s 2 -d 3 -p cbr -e 500 -c 1 -i 7 -a 1 -x {1.0 5.0 3 ------- null} h -t 0.308 -s 2 -d 3 -p cbr -e 500 -c 1 -i 7 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.314 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 1 -a 0 -x {0.0 4.0 1 ------- null} + -t 0.314 -s 4 -d 3 -p ack -e 40 -c 0 -i 10 -a 0 -x {4.0 0.0 1 ------- null} - -t 0.314 -s 4 -d 3 -p ack -e 40 -c 0 -i 10 -a 0 -x {4.0 0.0 1 ------- null} h -t 0.314 -s 4 -d 3 -p ack -e 40 -c 0 -i 10 -a 0 -x {4.0 0.0 -1 ------- null} r -t 0.316 -s 2 -d 3 -p cbr -e 500 -c 1 -i 6 -a 1 -x {1.0 5.0 2 ------- null} + -t 0.316 -s 3 -d 5 -p cbr -e 500 -c 1 -i 6 -a 1 -x {1.0 5.0 2 ------- null} - -t 0.316 -s 3 -d 5 -p cbr -e 500 -c 1 -i 6 -a 1 -x {1.0 5.0 2 ------- null} h -t 0.316 -s 3 -d 5 -p cbr -e 500 -c 1 -i 6 -a 1 -x {1.0 5.0 -1 ------- null} v -t 0.32000000000000001 sim_annotation 0.32000000000000001 5 Ack_0,1,2,3 r -t 0.33 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0 4.0 2 ------- null} + -t 0.33 -s 4 -d 3 -p ack -e 40 -c 0 -i 11 -a 0 -x {4.0 0.0 2 ------- null} - -t 0.33 -s 4 -d 3 -p ack -e 40 -c 0 -i 11 -a 0 -x {4.0 0.0 2 ------- null} h -t 0.33 -s 4 -d 3 -p ack -e 40 -c 0 -i 11 -a 0 -x {4.0 0.0 -1 ------- null} r -t 0.33 -s 3 -d 5 -p cbr -e 500 -c 1 -i 5 -a 1 -x {1.0 5.0 1 ------- null} r -t 0.34864 -s 4 -d 3 -p ack -e 40 -c 0 -i 8 -a 0 -x {4.0 0.0 0 ------- null} + -t 0.34864 -s 3 -d 2 -p ack -e 40 -c 0 -i 8 -a 0 -x {4.0 0.0 0 ------- null} - -t 0.34864 -s 3 -d 2 -p ack -e 40 -c 0 -i 8 -a 0 -x {4.0 0.0 0 ------- null} h -t 0.34864 -s 3 -d 2 -p ack -e 40 -c 0 -i 8 -a 0 -x {4.0 0.0 -1 ------- null} + -t 0.35 -s 1 -d 2 -p cbr -e 500 -c 1 -i 12 -a 1 -x {1.0 5.0 5 ------- null} - -t 0.35 -s 1 -d 2 -p cbr -e 500 -c 1 -i 12 -a 1 -x {1.0 5.0 5 ------- null} h -t 0.35 -s 1 -d 2 -p cbr -e 500 -c 1 -i 12 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.354 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0 4.0 3 ------- null} + -t 0.354 -s 4 -d 3 -p ack -e 40 -c 0 -i 13 -a 0 -x {4.0 0.0 3 ------- null} - -t 0.354 -s 4 -d 3 -p ack -e 40 -c 0 -i 13 -a 0 -x {4.0 0.0 3 ------- null} h -t 0.354 -s 4 -d 3 -p ack -e 40 -c 0 -i 13 -a 0 -x {4.0 0.0 -1 ------- null} r -t 0.358 -s 1 -d 2 -p cbr -e 500 -c 1 -i 9 -a 1 -x {1.0 5.0 4 ------- null} + -t 0.358 -s 2 -d 3 -p cbr -e 500 -c 1 -i 9 -a 1 -x {1.0 5.0 4 ------- null} - -t 0.358 -s 2 -d 3 -p cbr -e 500 -c 1 -i 9 -a 1 -x {1.0 5.0 4 ------- null} h -t 0.358 -s 2 -d 3 -p cbr -e 500 -c 1 -i 9 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.36464 -s 4 -d 3 -p ack -e 40 -c 0 -i 10 -a 0 -x {4.0 0.0 1 ------- null} + -t 0.36464 -s 3 -d 2 -p ack -e 40 -c 0 -i 10 -a 0 -x {4.0 0.0 1 ------- null} - -t 0.36464 -s 3 -d 2 -p ack -e 40 -c 0 -i 10 -a 0 -x {4.0 0.0 1 ------- null} h -t 0.36464 -s 3 -d 2 -p ack -e 40 -c 0 -i 10 -a 0 -x {4.0 0.0 -1 ------- null} r -t 0.366 -s 2 -d 3 -p cbr -e 500 -c 1 -i 7 -a 1 -x {1.0 5.0 3 ------- null} + -t 0.366 -s 3 -d 5 -p cbr -e 500 -c 1 -i 7 -a 1 -x {1.0 5.0 3 ------- null} - -t 0.366 -s 3 -d 5 -p cbr -e 500 -c 1 -i 7 -a 1 -x {1.0 5.0 3 ------- null} h -t 0.366 -s 3 -d 5 -p cbr -e 500 -c 1 -i 7 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.374 -s 3 -d 5 -p cbr -e 500 -c 1 -i 6 -a 1 -x {1.0 5.0 2 ------- null} r -t 0.38064 -s 4 -d 3 -p ack -e 40 -c 0 -i 11 -a 0 -x {4.0 0.0 2 ------- null} + -t 0.38064 -s 3 -d 2 -p ack -e 40 -c 0 -i 11 -a 0 -x {4.0 0.0 2 ------- null} - -t 0.38064 -s 3 -d 2 -p ack -e 40 -c 0 -i 11 -a 0 -x {4.0 0.0 2 ------- null} h -t 0.38064 -s 3 -d 2 -p ack -e 40 -c 0 -i 11 -a 0 -x {4.0 0.0 -1 ------- null} r -t 0.39928 -s 3 -d 2 -p ack -e 40 -c 0 -i 8 -a 0 -x {4.0 0.0 0 ------- null} + -t 0.39928 -s 2 -d 0 -p ack -e 40 -c 0 -i 8 -a 0 -x {4.0 0.0 0 ------- null} - -t 0.39928 -s 2 -d 0 -p ack -e 40 -c 0 -i 8 -a 0 -x {4.0 0.0 0 ------- null} h -t 0.39928 -s 2 -d 0 -p ack -e 40 -c 0 -i 8 -a 0 -x {4.0 0.0 -1 ------- null} + -t 0.4 -s 1 -d 2 -p cbr -e 500 -c 1 -i 14 -a 1 -x {1.0 5.0 6 ------- null} - -t 0.4 -s 1 -d 2 -p cbr -e 500 -c 1 -i 14 -a 1 -x {1.0 5.0 6 ------- null} h -t 0.4 -s 1 -d 2 -p cbr -e 500 -c 1 -i 14 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.40464 -s 4 -d 3 -p ack -e 40 -c 0 -i 13 -a 0 -x {4.0 0.0 3 ------- null} + -t 0.40464 -s 3 -d 2 -p ack -e 40 -c 0 -i 13 -a 0 -x {4.0 0.0 3 ------- null} - -t 0.40464 -s 3 -d 2 -p ack -e 40 -c 0 -i 13 -a 0 -x {4.0 0.0 3 ------- null} h -t 0.40464 -s 3 -d 2 -p ack -e 40 -c 0 -i 13 -a 0 -x {4.0 0.0 -1 ------- null} r -t 0.408 -s 1 -d 2 -p cbr -e 500 -c 1 -i 12 -a 1 -x {1.0 5.0 5 ------- null} + -t 0.408 -s 2 -d 3 -p cbr -e 500 -c 1 -i 12 -a 1 -x {1.0 5.0 5 ------- null} - -t 0.408 -s 2 -d 3 -p cbr -e 500 -c 1 -i 12 -a 1 -x {1.0 5.0 5 ------- null} h -t 0.408 -s 2 -d 3 -p cbr -e 500 -c 1 -i 12 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.41528 -s 3 -d 2 -p ack -e 40 -c 0 -i 10 -a 0 -x {4.0 0.0 1 ------- null} + -t 0.41528 -s 2 -d 0 -p ack -e 40 -c 0 -i 10 -a 0 -x {4.0 0.0 1 ------- null} - -t 0.41528 -s 2 -d 0 -p ack -e 40 -c 0 -i 10 -a 0 -x {4.0 0.0 1 ------- null} h -t 0.41528 -s 2 -d 0 -p ack -e 40 -c 0 -i 10 -a 0 -x {4.0 0.0 -1 ------- null} r -t 0.416 -s 2 -d 3 -p cbr -e 500 -c 1 -i 9 -a 1 -x {1.0 5.0 4 ------- null} + -t 0.416 -s 3 -d 5 -p cbr -e 500 -c 1 -i 9 -a 1 -x {1.0 5.0 4 ------- null} - -t 0.416 -s 3 -d 5 -p cbr -e 500 -c 1 -i 9 -a 1 -x {1.0 5.0 4 ------- null} h -t 0.416 -s 3 -d 5 -p cbr -e 500 -c 1 -i 9 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.424 -s 3 -d 5 -p cbr -e 500 -c 1 -i 7 -a 1 -x {1.0 5.0 3 ------- null} r -t 0.43128 -s 3 -d 2 -p ack -e 40 -c 0 -i 11 -a 0 -x {4.0 0.0 2 ------- null} + -t 0.43128 -s 2 -d 0 -p ack -e 40 -c 0 -i 11 -a 0 -x {4.0 0.0 2 ------- null} - -t 0.43128 -s 2 -d 0 -p ack -e 40 -c 0 -i 11 -a 0 -x {4.0 0.0 2 ------- null} h -t 0.43128 -s 2 -d 0 -p ack -e 40 -c 0 -i 11 -a 0 -x {4.0 0.0 -1 ------- null} r -t 0.44992 -s 2 -d 0 -p ack -e 40 -c 0 -i 8 -a 0 -x {4.0 0.0 0 ------- null} + -t 0.44992 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {0.0 4.0 4 ------- null} - -t 0.44992 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {0.0 4.0 4 ------- null} h -t 0.44992 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {0.0 4.0 -1 ------- null} + -t 0.45 -s 1 -d 2 -p cbr -e 500 -c 1 -i 16 -a 1 -x {1.0 5.0 7 ------- null} - -t 0.45 -s 1 -d 2 -p cbr -e 500 -c 1 -i 16 -a 1 -x {1.0 5.0 7 ------- null} h -t 0.45 -s 1 -d 2 -p cbr -e 500 -c 1 -i 16 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.45528 -s 3 -d 2 -p ack -e 40 -c 0 -i 13 -a 0 -x {4.0 0.0 3 ------- null} + -t 0.45528 -s 2 -d 0 -p ack -e 40 -c 0 -i 13 -a 0 -x {4.0 0.0 3 ------- null} - -t 0.45528 -s 2 -d 0 -p ack -e 40 -c 0 -i 13 -a 0 -x {4.0 0.0 3 ------- null} h -t 0.45528 -s 2 -d 0 -p ack -e 40 -c 0 -i 13 -a 0 -x {4.0 0.0 -1 ------- null} r -t 0.458 -s 1 -d 2 -p cbr -e 500 -c 1 -i 14 -a 1 -x {1.0 5.0 6 ------- null} + -t 0.458 -s 2 -d 3 -p cbr -e 500 -c 1 -i 14 -a 1 -x {1.0 5.0 6 ------- null} - -t 0.458 -s 2 -d 3 -p cbr -e 500 -c 1 -i 14 -a 1 -x {1.0 5.0 6 ------- null} h -t 0.458 -s 2 -d 3 -p cbr -e 500 -c 1 -i 14 -a 1 -x {1.0 5.0 -1 ------- null} v -t 0.46000000000000002 sim_annotation 0.46000000000000002 6 Send Packet_4,5,6,7 : window size, 4 r -t 0.46592 -s 2 -d 0 -p ack -e 40 -c 0 -i 10 -a 0 -x {4.0 0.0 1 ------- null} + -t 0.46592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {0.0 4.0 5 ------- null} - -t 0.46592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {0.0 4.0 5 ------- null} h -t 0.46592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {0.0 4.0 -1 ------- null} r -t 0.466 -s 2 -d 3 -p cbr -e 500 -c 1 -i 12 -a 1 -x {1.0 5.0 5 ------- null} + -t 0.466 -s 3 -d 5 -p cbr -e 500 -c 1 -i 12 -a 1 -x {1.0 5.0 5 ------- null} - -t 0.466 -s 3 -d 5 -p cbr -e 500 -c 1 -i 12 -a 1 -x {1.0 5.0 5 ------- null} h -t 0.466 -s 3 -d 5 -p cbr -e 500 -c 1 -i 12 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.474 -s 3 -d 5 -p cbr -e 500 -c 1 -i 9 -a 1 -x {1.0 5.0 4 ------- null} r -t 0.48192 -s 2 -d 0 -p ack -e 40 -c 0 -i 11 -a 0 -x {4.0 0.0 2 ------- null} + -t 0.48192 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {0.0 4.0 6 ------- null} - -t 0.48192 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {0.0 4.0 6 ------- null} h -t 0.48192 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {0.0 4.0 -1 ------- null} + -t 0.5 -s 1 -d 2 -p cbr -e 500 -c 1 -i 19 -a 1 -x {1.0 5.0 8 ------- null} - -t 0.5 -s 1 -d 2 -p cbr -e 500 -c 1 -i 19 -a 1 -x {1.0 5.0 8 ------- null} h -t 0.5 -s 1 -d 2 -p cbr -e 500 -c 1 -i 19 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.50592 -s 2 -d 0 -p ack -e 40 -c 0 -i 13 -a 0 -x {4.0 0.0 3 ------- null} + -t 0.50592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {0.0 4.0 7 ------- null} - -t 0.50592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {0.0 4.0 7 ------- null} h -t 0.50592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {0.0 4.0 -1 ------- null} r -t 0.508 -s 1 -d 2 -p cbr -e 500 -c 1 -i 16 -a 1 -x {1.0 5.0 7 ------- null} + -t 0.508 -s 2 -d 3 -p cbr -e 500 -c 1 -i 16 -a 1 -x {1.0 5.0 7 ------- null} - -t 0.508 -s 2 -d 3 -p cbr -e 500 -c 1 -i 16 -a 1 -x {1.0 5.0 7 ------- null} h -t 0.508 -s 2 -d 3 -p cbr -e 500 -c 1 -i 16 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.51592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {0.0 4.0 4 ------- null} + -t 0.51592 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {0.0 4.0 4 ------- null} r -t 0.516 -s 2 -d 3 -p cbr -e 500 -c 1 -i 14 -a 1 -x {1.0 5.0 6 ------- null} + -t 0.516 -s 3 -d 5 -p cbr -e 500 -c 1 -i 14 -a 1 -x {1.0 5.0 6 ------- null} - -t 0.516 -s 3 -d 5 -p cbr -e 500 -c 1 -i 14 -a 1 -x {1.0 5.0 6 ------- null} h -t 0.516 -s 3 -d 5 -p cbr -e 500 -c 1 -i 14 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.516 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {0.0 4.0 4 ------- null} h -t 0.516 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {0.0 4.0 -1 ------- null} r -t 0.524 -s 3 -d 5 -p cbr -e 500 -c 1 -i 12 -a 1 -x {1.0 5.0 5 ------- null} r -t 0.53192 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {0.0 4.0 5 ------- null} + -t 0.53192 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {0.0 4.0 5 ------- null} - -t 0.532 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {0.0 4.0 5 ------- null} h -t 0.532 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {0.0 4.0 -1 ------- null} r -t 0.54792 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {0.0 4.0 6 ------- null} + -t 0.54792 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {0.0 4.0 6 ------- null} - -t 0.548 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {0.0 4.0 6 ------- null} h -t 0.548 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {0.0 4.0 -1 ------- null} + -t 0.55 -s 1 -d 2 -p cbr -e 500 -c 1 -i 21 -a 1 -x {1.0 5.0 9 ------- null} - -t 0.55 -s 1 -d 2 -p cbr -e 500 -c 1 -i 21 -a 1 -x {1.0 5.0 9 ------- null} h -t 0.55 -s 1 -d 2 -p cbr -e 500 -c 1 -i 21 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.558 -s 1 -d 2 -p cbr -e 500 -c 1 -i 19 -a 1 -x {1.0 5.0 8 ------- null} + -t 0.558 -s 2 -d 3 -p cbr -e 500 -c 1 -i 19 -a 1 -x {1.0 5.0 8 ------- null} - -t 0.564 -s 2 -d 3 -p cbr -e 500 -c 1 -i 19 -a 1 -x {1.0 5.0 8 ------- null} h -t 0.564 -s 2 -d 3 -p cbr -e 500 -c 1 -i 19 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.566 -s 2 -d 3 -p cbr -e 500 -c 1 -i 16 -a 1 -x {1.0 5.0 7 ------- null} + -t 0.566 -s 3 -d 5 -p cbr -e 500 -c 1 -i 16 -a 1 -x {1.0 5.0 7 ------- null} - -t 0.566 -s 3 -d 5 -p cbr -e 500 -c 1 -i 16 -a 1 -x {1.0 5.0 7 ------- null} h -t 0.566 -s 3 -d 5 -p cbr -e 500 -c 1 -i 16 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.57192 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {0.0 4.0 7 ------- null} + -t 0.57192 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {0.0 4.0 7 ------- null} - -t 0.572 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {0.0 4.0 7 ------- null} h -t 0.572 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {0.0 4.0 -1 ------- null} r -t 0.574 -s 3 -d 5 -p cbr -e 500 -c 1 -i 14 -a 1 -x {1.0 5.0 6 ------- null} r -t 0.582 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {0.0 4.0 4 ------- null} + -t 0.582 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {0.0 4.0 4 ------- null} - -t 0.582 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {0.0 4.0 4 ------- null} h -t 0.582 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {0.0 4.0 -1 ------- null} r -t 0.598 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {0.0 4.0 5 ------- null} + -t 0.598 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {0.0 4.0 5 ------- null} - -t 0.598 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {0.0 4.0 5 ------- null} h -t 0.598 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {0.0 4.0 -1 ------- null} + -t 0.6 -s 1 -d 2 -p cbr -e 500 -c 1 -i 22 -a 1 -x {1.0 5.0 10 ------- null} - -t 0.6 -s 1 -d 2 -p cbr -e 500 -c 1 -i 22 -a 1 -x {1.0 5.0 10 ------- null} h -t 0.6 -s 1 -d 2 -p cbr -e 500 -c 1 -i 22 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.608 -s 1 -d 2 -p cbr -e 500 -c 1 -i 21 -a 1 -x {1.0 5.0 9 ------- null} + -t 0.608 -s 2 -d 3 -p cbr -e 500 -c 1 -i 21 -a 1 -x {1.0 5.0 9 ------- null} - -t 0.608 -s 2 -d 3 -p cbr -e 500 -c 1 -i 21 -a 1 -x {1.0 5.0 9 ------- null} h -t 0.608 -s 2 -d 3 -p cbr -e 500 -c 1 -i 21 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.614 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {0.0 4.0 6 ------- null} + -t 0.614 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {0.0 4.0 6 ------- null} - -t 0.614 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {0.0 4.0 6 ------- null} h -t 0.614 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {0.0 4.0 -1 ------- null} r -t 0.622 -s 2 -d 3 -p cbr -e 500 -c 1 -i 19 -a 1 -x {1.0 5.0 8 ------- null} + -t 0.622 -s 3 -d 5 -p cbr -e 500 -c 1 -i 19 -a 1 -x {1.0 5.0 8 ------- null} - -t 0.622 -s 3 -d 5 -p cbr -e 500 -c 1 -i 19 -a 1 -x {1.0 5.0 8 ------- null} h -t 0.622 -s 3 -d 5 -p cbr -e 500 -c 1 -i 19 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.624 -s 3 -d 5 -p cbr -e 500 -c 1 -i 16 -a 1 -x {1.0 5.0 7 ------- null} r -t 0.638 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {0.0 4.0 7 ------- null} + -t 0.638 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {0.0 4.0 7 ------- null} - -t 0.638 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {0.0 4.0 7 ------- null} h -t 0.638 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {0.0 4.0 -1 ------- null} r -t 0.648 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {0.0 4.0 4 ------- null} + -t 0.648 -s 4 -d 3 -p ack -e 40 -c 0 -i 23 -a 0 -x {4.0 0.0 4 ------- null} - -t 0.648 -s 4 -d 3 -p ack -e 40 -c 0 -i 23 -a 0 -x {4.0 0.0 4 ------- null} h -t 0.648 -s 4 -d 3 -p ack -e 40 -c 0 -i 23 -a 0 -x {4.0 0.0 -1 ------- null} + -t 0.65 -s 1 -d 2 -p cbr -e 500 -c 1 -i 24 -a 1 -x {1.0 5.0 11 ------- null} - -t 0.65 -s 1 -d 2 -p cbr -e 500 -c 1 -i 24 -a 1 -x {1.0 5.0 11 ------- null} h -t 0.65 -s 1 -d 2 -p cbr -e 500 -c 1 -i 24 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.658 -s 1 -d 2 -p cbr -e 500 -c 1 -i 22 -a 1 -x {1.0 5.0 10 ------- null} + -t 0.658 -s 2 -d 3 -p cbr -e 500 -c 1 -i 22 -a 1 -x {1.0 5.0 10 ------- null} - -t 0.658 -s 2 -d 3 -p cbr -e 500 -c 1 -i 22 -a 1 -x {1.0 5.0 10 ------- null} h -t 0.658 -s 2 -d 3 -p cbr -e 500 -c 1 -i 22 -a 1 -x {1.0 5.0 -1 ------- null} v -t 0.66000000000000003 sim_annotation 0.66000000000000003 7 Ack_4,5,6,7 r -t 0.664 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {0.0 4.0 5 ------- null} + -t 0.664 -s 4 -d 3 -p ack -e 40 -c 0 -i 25 -a 0 -x {4.0 0.0 5 ------- null} - -t 0.664 -s 4 -d 3 -p ack -e 40 -c 0 -i 25 -a 0 -x {4.0 0.0 5 ------- null} h -t 0.664 -s 4 -d 3 -p ack -e 40 -c 0 -i 25 -a 0 -x {4.0 0.0 -1 ------- null} r -t 0.666 -s 2 -d 3 -p cbr -e 500 -c 1 -i 21 -a 1 -x {1.0 5.0 9 ------- null} + -t 0.666 -s 3 -d 5 -p cbr -e 500 -c 1 -i 21 -a 1 -x {1.0 5.0 9 ------- null} - -t 0.666 -s 3 -d 5 -p cbr -e 500 -c 1 -i 21 -a 1 -x {1.0 5.0 9 ------- null} h -t 0.666 -s 3 -d 5 -p cbr -e 500 -c 1 -i 21 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.68 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {0.0 4.0 6 ------- null} + -t 0.68 -s 4 -d 3 -p ack -e 40 -c 0 -i 26 -a 0 -x {4.0 0.0 6 ------- null} - -t 0.68 -s 4 -d 3 -p ack -e 40 -c 0 -i 26 -a 0 -x {4.0 0.0 6 ------- null} h -t 0.68 -s 4 -d 3 -p ack -e 40 -c 0 -i 26 -a 0 -x {4.0 0.0 -1 ------- null} r -t 0.68 -s 3 -d 5 -p cbr -e 500 -c 1 -i 19 -a 1 -x {1.0 5.0 8 ------- null} r -t 0.69864 -s 4 -d 3 -p ack -e 40 -c 0 -i 23 -a 0 -x {4.0 0.0 4 ------- null} + -t 0.69864 -s 3 -d 2 -p ack -e 40 -c 0 -i 23 -a 0 -x {4.0 0.0 4 ------- null} - -t 0.69864 -s 3 -d 2 -p ack -e 40 -c 0 -i 23 -a 0 -x {4.0 0.0 4 ------- null} h -t 0.69864 -s 3 -d 2 -p ack -e 40 -c 0 -i 23 -a 0 -x {4.0 0.0 -1 ------- null} + -t 0.7 -s 1 -d 2 -p cbr -e 500 -c 1 -i 27 -a 1 -x {1.0 5.0 12 ------- null} - -t 0.7 -s 1 -d 2 -p cbr -e 500 -c 1 -i 27 -a 1 -x {1.0 5.0 12 ------- null} h -t 0.7 -s 1 -d 2 -p cbr -e 500 -c 1 -i 27 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.704 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {0.0 4.0 7 ------- null} + -t 0.704 -s 4 -d 3 -p ack -e 40 -c 0 -i 28 -a 0 -x {4.0 0.0 7 ------- null} - -t 0.704 -s 4 -d 3 -p ack -e 40 -c 0 -i 28 -a 0 -x {4.0 0.0 7 ------- null} h -t 0.704 -s 4 -d 3 -p ack -e 40 -c 0 -i 28 -a 0 -x {4.0 0.0 -1 ------- null} r -t 0.708 -s 1 -d 2 -p cbr -e 500 -c 1 -i 24 -a 1 -x {1.0 5.0 11 ------- null} + -t 0.708 -s 2 -d 3 -p cbr -e 500 -c 1 -i 24 -a 1 -x {1.0 5.0 11 ------- null} - -t 0.708 -s 2 -d 3 -p cbr -e 500 -c 1 -i 24 -a 1 -x {1.0 5.0 11 ------- null} h -t 0.708 -s 2 -d 3 -p cbr -e 500 -c 1 -i 24 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.71464 -s 4 -d 3 -p ack -e 40 -c 0 -i 25 -a 0 -x {4.0 0.0 5 ------- null} + -t 0.71464 -s 3 -d 2 -p ack -e 40 -c 0 -i 25 -a 0 -x {4.0 0.0 5 ------- null} - -t 0.71464 -s 3 -d 2 -p ack -e 40 -c 0 -i 25 -a 0 -x {4.0 0.0 5 ------- null} h -t 0.71464 -s 3 -d 2 -p ack -e 40 -c 0 -i 25 -a 0 -x {4.0 0.0 -1 ------- null} r -t 0.716 -s 2 -d 3 -p cbr -e 500 -c 1 -i 22 -a 1 -x {1.0 5.0 10 ------- null} + -t 0.716 -s 3 -d 5 -p cbr -e 500 -c 1 -i 22 -a 1 -x {1.0 5.0 10 ------- null} - -t 0.716 -s 3 -d 5 -p cbr -e 500 -c 1 -i 22 -a 1 -x {1.0 5.0 10 ------- null} h -t 0.716 -s 3 -d 5 -p cbr -e 500 -c 1 -i 22 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.724 -s 3 -d 5 -p cbr -e 500 -c 1 -i 21 -a 1 -x {1.0 5.0 9 ------- null} r -t 0.73064 -s 4 -d 3 -p ack -e 40 -c 0 -i 26 -a 0 -x {4.0 0.0 6 ------- null} + -t 0.73064 -s 3 -d 2 -p ack -e 40 -c 0 -i 26 -a 0 -x {4.0 0.0 6 ------- null} - -t 0.73064 -s 3 -d 2 -p ack -e 40 -c 0 -i 26 -a 0 -x {4.0 0.0 6 ------- null} h -t 0.73064 -s 3 -d 2 -p ack -e 40 -c 0 -i 26 -a 0 -x {4.0 0.0 -1 ------- null} r -t 0.74928 -s 3 -d 2 -p ack -e 40 -c 0 -i 23 -a 0 -x {4.0 0.0 4 ------- null} + -t 0.74928 -s 2 -d 0 -p ack -e 40 -c 0 -i 23 -a 0 -x {4.0 0.0 4 ------- null} - -t 0.74928 -s 2 -d 0 -p ack -e 40 -c 0 -i 23 -a 0 -x {4.0 0.0 4 ------- null} h -t 0.74928 -s 2 -d 0 -p ack -e 40 -c 0 -i 23 -a 0 -x {4.0 0.0 -1 ------- null} + -t 0.75 -s 1 -d 2 -p cbr -e 500 -c 1 -i 29 -a 1 -x {1.0 5.0 13 ------- null} - -t 0.75 -s 1 -d 2 -p cbr -e 500 -c 1 -i 29 -a 1 -x {1.0 5.0 13 ------- null} h -t 0.75 -s 1 -d 2 -p cbr -e 500 -c 1 -i 29 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.75464 -s 4 -d 3 -p ack -e 40 -c 0 -i 28 -a 0 -x {4.0 0.0 7 ------- null} + -t 0.75464 -s 3 -d 2 -p ack -e 40 -c 0 -i 28 -a 0 -x {4.0 0.0 7 ------- null} - -t 0.75464 -s 3 -d 2 -p ack -e 40 -c 0 -i 28 -a 0 -x {4.0 0.0 7 ------- null} h -t 0.75464 -s 3 -d 2 -p ack -e 40 -c 0 -i 28 -a 0 -x {4.0 0.0 -1 ------- null} r -t 0.758 -s 1 -d 2 -p cbr -e 500 -c 1 -i 27 -a 1 -x {1.0 5.0 12 ------- null} + -t 0.758 -s 2 -d 3 -p cbr -e 500 -c 1 -i 27 -a 1 -x {1.0 5.0 12 ------- null} - -t 0.758 -s 2 -d 3 -p cbr -e 500 -c 1 -i 27 -a 1 -x {1.0 5.0 12 ------- null} h -t 0.758 -s 2 -d 3 -p cbr -e 500 -c 1 -i 27 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.76528 -s 3 -d 2 -p ack -e 40 -c 0 -i 25 -a 0 -x {4.0 0.0 5 ------- null} + -t 0.76528 -s 2 -d 0 -p ack -e 40 -c 0 -i 25 -a 0 -x {4.0 0.0 5 ------- null} - -t 0.76528 -s 2 -d 0 -p ack -e 40 -c 0 -i 25 -a 0 -x {4.0 0.0 5 ------- null} h -t 0.76528 -s 2 -d 0 -p ack -e 40 -c 0 -i 25 -a 0 -x {4.0 0.0 -1 ------- null} r -t 0.766 -s 2 -d 3 -p cbr -e 500 -c 1 -i 24 -a 1 -x {1.0 5.0 11 ------- null} + -t 0.766 -s 3 -d 5 -p cbr -e 500 -c 1 -i 24 -a 1 -x {1.0 5.0 11 ------- null} - -t 0.766 -s 3 -d 5 -p cbr -e 500 -c 1 -i 24 -a 1 -x {1.0 5.0 11 ------- null} h -t 0.766 -s 3 -d 5 -p cbr -e 500 -c 1 -i 24 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.774 -s 3 -d 5 -p cbr -e 500 -c 1 -i 22 -a 1 -x {1.0 5.0 10 ------- null} r -t 0.78128 -s 3 -d 2 -p ack -e 40 -c 0 -i 26 -a 0 -x {4.0 0.0 6 ------- null} + -t 0.78128 -s 2 -d 0 -p ack -e 40 -c 0 -i 26 -a 0 -x {4.0 0.0 6 ------- null} - -t 0.78128 -s 2 -d 0 -p ack -e 40 -c 0 -i 26 -a 0 -x {4.0 0.0 6 ------- null} h -t 0.78128 -s 2 -d 0 -p ack -e 40 -c 0 -i 26 -a 0 -x {4.0 0.0 -1 ------- null} r -t 0.79992 -s 2 -d 0 -p ack -e 40 -c 0 -i 23 -a 0 -x {4.0 0.0 4 ------- null} + -t 0.79992 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {0.0 4.0 8 ------- null} - -t 0.79992 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {0.0 4.0 8 ------- null} h -t 0.79992 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {0.0 4.0 -1 ------- null} + -t 0.8 -s 1 -d 2 -p cbr -e 500 -c 1 -i 31 -a 1 -x {1.0 5.0 14 ------- null} - -t 0.8 -s 1 -d 2 -p cbr -e 500 -c 1 -i 31 -a 1 -x {1.0 5.0 14 ------- null} h -t 0.8 -s 1 -d 2 -p cbr -e 500 -c 1 -i 31 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.80528 -s 3 -d 2 -p ack -e 40 -c 0 -i 28 -a 0 -x {4.0 0.0 7 ------- null} + -t 0.80528 -s 2 -d 0 -p ack -e 40 -c 0 -i 28 -a 0 -x {4.0 0.0 7 ------- null} - -t 0.80528 -s 2 -d 0 -p ack -e 40 -c 0 -i 28 -a 0 -x {4.0 0.0 7 ------- null} h -t 0.80528 -s 2 -d 0 -p ack -e 40 -c 0 -i 28 -a 0 -x {4.0 0.0 -1 ------- null} r -t 0.808 -s 1 -d 2 -p cbr -e 500 -c 1 -i 29 -a 1 -x {1.0 5.0 13 ------- null} + -t 0.808 -s 2 -d 3 -p cbr -e 500 -c 1 -i 29 -a 1 -x {1.0 5.0 13 ------- null} - -t 0.808 -s 2 -d 3 -p cbr -e 500 -c 1 -i 29 -a 1 -x {1.0 5.0 13 ------- null} h -t 0.808 -s 2 -d 3 -p cbr -e 500 -c 1 -i 29 -a 1 -x {1.0 5.0 -1 ------- null} v -t 0.81000000000000005 sim_annotation 0.81000000000000005 8 Send Packet_8,9,10,11 : window size, 4 r -t 0.81592 -s 2 -d 0 -p ack -e 40 -c 0 -i 25 -a 0 -x {4.0 0.0 5 ------- null} + -t 0.81592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {0.0 4.0 9 ------- null} - -t 0.81592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {0.0 4.0 9 ------- null} h -t 0.81592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {0.0 4.0 -1 ------- null} r -t 0.816 -s 2 -d 3 -p cbr -e 500 -c 1 -i 27 -a 1 -x {1.0 5.0 12 ------- null} + -t 0.816 -s 3 -d 5 -p cbr -e 500 -c 1 -i 27 -a 1 -x {1.0 5.0 12 ------- null} - -t 0.816 -s 3 -d 5 -p cbr -e 500 -c 1 -i 27 -a 1 -x {1.0 5.0 12 ------- null} h -t 0.816 -s 3 -d 5 -p cbr -e 500 -c 1 -i 27 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.824 -s 3 -d 5 -p cbr -e 500 -c 1 -i 24 -a 1 -x {1.0 5.0 11 ------- null} r -t 0.83192 -s 2 -d 0 -p ack -e 40 -c 0 -i 26 -a 0 -x {4.0 0.0 6 ------- null} + -t 0.83192 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {0.0 4.0 10 ------- null} - -t 0.83192 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {0.0 4.0 10 ------- null} h -t 0.83192 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {0.0 4.0 -1 ------- null} + -t 0.85 -s 1 -d 2 -p cbr -e 500 -c 1 -i 34 -a 1 -x {1.0 5.0 15 ------- null} - -t 0.85 -s 1 -d 2 -p cbr -e 500 -c 1 -i 34 -a 1 -x {1.0 5.0 15 ------- null} h -t 0.85 -s 1 -d 2 -p cbr -e 500 -c 1 -i 34 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.85592 -s 2 -d 0 -p ack -e 40 -c 0 -i 28 -a 0 -x {4.0 0.0 7 ------- null} + -t 0.85592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {0.0 4.0 11 ------- null} - -t 0.85592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {0.0 4.0 11 ------- null} h -t 0.85592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {0.0 4.0 -1 ------- null} r -t 0.858 -s 1 -d 2 -p cbr -e 500 -c 1 -i 31 -a 1 -x {1.0 5.0 14 ------- null} + -t 0.858 -s 2 -d 3 -p cbr -e 500 -c 1 -i 31 -a 1 -x {1.0 5.0 14 ------- null} - -t 0.858 -s 2 -d 3 -p cbr -e 500 -c 1 -i 31 -a 1 -x {1.0 5.0 14 ------- null} h -t 0.858 -s 2 -d 3 -p cbr -e 500 -c 1 -i 31 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.86592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {0.0 4.0 8 ------- null} + -t 0.86592 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {0.0 4.0 8 ------- null} r -t 0.866 -s 2 -d 3 -p cbr -e 500 -c 1 -i 29 -a 1 -x {1.0 5.0 13 ------- null} + -t 0.866 -s 3 -d 5 -p cbr -e 500 -c 1 -i 29 -a 1 -x {1.0 5.0 13 ------- null} - -t 0.866 -s 3 -d 5 -p cbr -e 500 -c 1 -i 29 -a 1 -x {1.0 5.0 13 ------- null} h -t 0.866 -s 3 -d 5 -p cbr -e 500 -c 1 -i 29 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.866 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {0.0 4.0 8 ------- null} h -t 0.866 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {0.0 4.0 -1 ------- null} r -t 0.874 -s 3 -d 5 -p cbr -e 500 -c 1 -i 27 -a 1 -x {1.0 5.0 12 ------- null} r -t 0.88192 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {0.0 4.0 9 ------- null} + -t 0.88192 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {0.0 4.0 9 ------- null} - -t 0.882 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {0.0 4.0 9 ------- null} h -t 0.882 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {0.0 4.0 -1 ------- null} r -t 0.89792 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {0.0 4.0 10 ------- null} + -t 0.89792 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {0.0 4.0 10 ------- null} - -t 0.898 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {0.0 4.0 10 ------- null} h -t 0.898 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {0.0 4.0 -1 ------- null} + -t 0.9 -s 1 -d 2 -p cbr -e 500 -c 1 -i 36 -a 1 -x {1.0 5.0 16 ------- null} - -t 0.9 -s 1 -d 2 -p cbr -e 500 -c 1 -i 36 -a 1 -x {1.0 5.0 16 ------- null} h -t 0.9 -s 1 -d 2 -p cbr -e 500 -c 1 -i 36 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.908 -s 1 -d 2 -p cbr -e 500 -c 1 -i 34 -a 1 -x {1.0 5.0 15 ------- null} + -t 0.908 -s 2 -d 3 -p cbr -e 500 -c 1 -i 34 -a 1 -x {1.0 5.0 15 ------- null} - -t 0.914 -s 2 -d 3 -p cbr -e 500 -c 1 -i 34 -a 1 -x {1.0 5.0 15 ------- null} h -t 0.914 -s 2 -d 3 -p cbr -e 500 -c 1 -i 34 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.916 -s 2 -d 3 -p cbr -e 500 -c 1 -i 31 -a 1 -x {1.0 5.0 14 ------- null} + -t 0.916 -s 3 -d 5 -p cbr -e 500 -c 1 -i 31 -a 1 -x {1.0 5.0 14 ------- null} - -t 0.916 -s 3 -d 5 -p cbr -e 500 -c 1 -i 31 -a 1 -x {1.0 5.0 14 ------- null} h -t 0.916 -s 3 -d 5 -p cbr -e 500 -c 1 -i 31 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.92192 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {0.0 4.0 11 ------- null} + -t 0.92192 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {0.0 4.0 11 ------- null} - -t 0.922 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {0.0 4.0 11 ------- null} h -t 0.922 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {0.0 4.0 -1 ------- null} r -t 0.924 -s 3 -d 5 -p cbr -e 500 -c 1 -i 29 -a 1 -x {1.0 5.0 13 ------- null} r -t 0.932 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {0.0 4.0 8 ------- null} + -t 0.932 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {0.0 4.0 8 ------- null} - -t 0.932 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {0.0 4.0 8 ------- null} h -t 0.932 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {0.0 4.0 -1 ------- null} r -t 0.948 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {0.0 4.0 9 ------- null} + -t 0.948 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {0.0 4.0 9 ------- null} - -t 0.948 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {0.0 4.0 9 ------- null} h -t 0.948 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {0.0 4.0 -1 ------- null} + -t 0.95 -s 1 -d 2 -p cbr -e 500 -c 1 -i 37 -a 1 -x {1.0 5.0 17 ------- null} - -t 0.95 -s 1 -d 2 -p cbr -e 500 -c 1 -i 37 -a 1 -x {1.0 5.0 17 ------- null} h -t 0.95 -s 1 -d 2 -p cbr -e 500 -c 1 -i 37 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.958 -s 1 -d 2 -p cbr -e 500 -c 1 -i 36 -a 1 -x {1.0 5.0 16 ------- null} + -t 0.958 -s 2 -d 3 -p cbr -e 500 -c 1 -i 36 -a 1 -x {1.0 5.0 16 ------- null} - -t 0.958 -s 2 -d 3 -p cbr -e 500 -c 1 -i 36 -a 1 -x {1.0 5.0 16 ------- null} h -t 0.958 -s 2 -d 3 -p cbr -e 500 -c 1 -i 36 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.964 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {0.0 4.0 10 ------- null} + -t 0.964 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {0.0 4.0 10 ------- null} - -t 0.964 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {0.0 4.0 10 ------- null} h -t 0.964 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {0.0 4.0 -1 ------- null} r -t 0.972 -s 2 -d 3 -p cbr -e 500 -c 1 -i 34 -a 1 -x {1.0 5.0 15 ------- null} + -t 0.972 -s 3 -d 5 -p cbr -e 500 -c 1 -i 34 -a 1 -x {1.0 5.0 15 ------- null} - -t 0.972 -s 3 -d 5 -p cbr -e 500 -c 1 -i 34 -a 1 -x {1.0 5.0 15 ------- null} h -t 0.972 -s 3 -d 5 -p cbr -e 500 -c 1 -i 34 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.974 -s 3 -d 5 -p cbr -e 500 -c 1 -i 31 -a 1 -x {1.0 5.0 14 ------- null} r -t 0.988 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {0.0 4.0 11 ------- null} + -t 0.988 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {0.0 4.0 11 ------- null} - -t 0.988 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {0.0 4.0 11 ------- null} h -t 0.988 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {0.0 4.0 -1 ------- null} r -t 0.998 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {0.0 4.0 8 ------- null} + -t 0.998 -s 4 -d 3 -p ack -e 40 -c 0 -i 38 -a 0 -x {4.0 0.0 8 ------- null} - -t 0.998 -s 4 -d 3 -p ack -e 40 -c 0 -i 38 -a 0 -x {4.0 0.0 8 ------- null} h -t 0.998 -s 4 -d 3 -p ack -e 40 -c 0 -i 38 -a 0 -x {4.0 0.0 -1 ------- null} v -t 1 sim_annotation 1 9 Ack_8,9,10,11 + -t 1 -s 1 -d 2 -p cbr -e 500 -c 1 -i 39 -a 1 -x {1.0 5.0 18 ------- null} - -t 1 -s 1 -d 2 -p cbr -e 500 -c 1 -i 39 -a 1 -x {1.0 5.0 18 ------- null} h -t 1 -s 1 -d 2 -p cbr -e 500 -c 1 -i 39 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.008 -s 1 -d 2 -p cbr -e 500 -c 1 -i 37 -a 1 -x {1.0 5.0 17 ------- null} + -t 1.008 -s 2 -d 3 -p cbr -e 500 -c 1 -i 37 -a 1 -x {1.0 5.0 17 ------- null} - -t 1.008 -s 2 -d 3 -p cbr -e 500 -c 1 -i 37 -a 1 -x {1.0 5.0 17 ------- null} h -t 1.008 -s 2 -d 3 -p cbr -e 500 -c 1 -i 37 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.014 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {0.0 4.0 9 ------- null} + -t 1.014 -s 4 -d 3 -p ack -e 40 -c 0 -i 40 -a 0 -x {4.0 0.0 9 ------- null} - -t 1.014 -s 4 -d 3 -p ack -e 40 -c 0 -i 40 -a 0 -x {4.0 0.0 9 ------- null} h -t 1.014 -s 4 -d 3 -p ack -e 40 -c 0 -i 40 -a 0 -x {4.0 0.0 -1 ------- null} r -t 1.016 -s 2 -d 3 -p cbr -e 500 -c 1 -i 36 -a 1 -x {1.0 5.0 16 ------- null} + -t 1.016 -s 3 -d 5 -p cbr -e 500 -c 1 -i 36 -a 1 -x {1.0 5.0 16 ------- null} - -t 1.016 -s 3 -d 5 -p cbr -e 500 -c 1 -i 36 -a 1 -x {1.0 5.0 16 ------- null} h -t 1.016 -s 3 -d 5 -p cbr -e 500 -c 1 -i 36 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.03 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {0.0 4.0 10 ------- null} + -t 1.03 -s 4 -d 3 -p ack -e 40 -c 0 -i 41 -a 0 -x {4.0 0.0 10 ------- null} - -t 1.03 -s 4 -d 3 -p ack -e 40 -c 0 -i 41 -a 0 -x {4.0 0.0 10 ------- null} h -t 1.03 -s 4 -d 3 -p ack -e 40 -c 0 -i 41 -a 0 -x {4.0 0.0 -1 ------- null} r -t 1.03 -s 3 -d 5 -p cbr -e 500 -c 1 -i 34 -a 1 -x {1.0 5.0 15 ------- null} r -t 1.04864 -s 4 -d 3 -p ack -e 40 -c 0 -i 38 -a 0 -x {4.0 0.0 8 ------- null} + -t 1.04864 -s 3 -d 2 -p ack -e 40 -c 0 -i 38 -a 0 -x {4.0 0.0 8 ------- null} - -t 1.04864 -s 3 -d 2 -p ack -e 40 -c 0 -i 38 -a 0 -x {4.0 0.0 8 ------- null} h -t 1.04864 -s 3 -d 2 -p ack -e 40 -c 0 -i 38 -a 0 -x {4.0 0.0 -1 ------- null} + -t 1.05 -s 1 -d 2 -p cbr -e 500 -c 1 -i 42 -a 1 -x {1.0 5.0 19 ------- null} - -t 1.05 -s 1 -d 2 -p cbr -e 500 -c 1 -i 42 -a 1 -x {1.0 5.0 19 ------- null} h -t 1.05 -s 1 -d 2 -p cbr -e 500 -c 1 -i 42 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.054 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {0.0 4.0 11 ------- null} + -t 1.054 -s 4 -d 3 -p ack -e 40 -c 0 -i 43 -a 0 -x {4.0 0.0 11 ------- null} - -t 1.054 -s 4 -d 3 -p ack -e 40 -c 0 -i 43 -a 0 -x {4.0 0.0 11 ------- null} h -t 1.054 -s 4 -d 3 -p ack -e 40 -c 0 -i 43 -a 0 -x {4.0 0.0 -1 ------- null} r -t 1.058 -s 1 -d 2 -p cbr -e 500 -c 1 -i 39 -a 1 -x {1.0 5.0 18 ------- null} + -t 1.058 -s 2 -d 3 -p cbr -e 500 -c 1 -i 39 -a 1 -x {1.0 5.0 18 ------- null} - -t 1.058 -s 2 -d 3 -p cbr -e 500 -c 1 -i 39 -a 1 -x {1.0 5.0 18 ------- null} h -t 1.058 -s 2 -d 3 -p cbr -e 500 -c 1 -i 39 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.06464 -s 4 -d 3 -p ack -e 40 -c 0 -i 40 -a 0 -x {4.0 0.0 9 ------- null} + -t 1.06464 -s 3 -d 2 -p ack -e 40 -c 0 -i 40 -a 0 -x {4.0 0.0 9 ------- null} - -t 1.06464 -s 3 -d 2 -p ack -e 40 -c 0 -i 40 -a 0 -x {4.0 0.0 9 ------- null} h -t 1.06464 -s 3 -d 2 -p ack -e 40 -c 0 -i 40 -a 0 -x {4.0 0.0 -1 ------- null} r -t 1.066 -s 2 -d 3 -p cbr -e 500 -c 1 -i 37 -a 1 -x {1.0 5.0 17 ------- null} + -t 1.066 -s 3 -d 5 -p cbr -e 500 -c 1 -i 37 -a 1 -x {1.0 5.0 17 ------- null} - -t 1.066 -s 3 -d 5 -p cbr -e 500 -c 1 -i 37 -a 1 -x {1.0 5.0 17 ------- null} h -t 1.066 -s 3 -d 5 -p cbr -e 500 -c 1 -i 37 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.074 -s 3 -d 5 -p cbr -e 500 -c 1 -i 36 -a 1 -x {1.0 5.0 16 ------- null} r -t 1.08064 -s 4 -d 3 -p ack -e 40 -c 0 -i 41 -a 0 -x {4.0 0.0 10 ------- null} + -t 1.08064 -s 3 -d 2 -p ack -e 40 -c 0 -i 41 -a 0 -x {4.0 0.0 10 ------- null} - -t 1.08064 -s 3 -d 2 -p ack -e 40 -c 0 -i 41 -a 0 -x {4.0 0.0 10 ------- null} h -t 1.08064 -s 3 -d 2 -p ack -e 40 -c 0 -i 41 -a 0 -x {4.0 0.0 -1 ------- null} r -t 1.09928 -s 3 -d 2 -p ack -e 40 -c 0 -i 38 -a 0 -x {4.0 0.0 8 ------- null} + -t 1.09928 -s 2 -d 0 -p ack -e 40 -c 0 -i 38 -a 0 -x {4.0 0.0 8 ------- null} - -t 1.09928 -s 2 -d 0 -p ack -e 40 -c 0 -i 38 -a 0 -x {4.0 0.0 8 ------- null} h -t 1.09928 -s 2 -d 0 -p ack -e 40 -c 0 -i 38 -a 0 -x {4.0 0.0 -1 ------- null} + -t 1.1 -s 1 -d 2 -p cbr -e 500 -c 1 -i 44 -a 1 -x {1.0 5.0 20 ------- null} - -t 1.1 -s 1 -d 2 -p cbr -e 500 -c 1 -i 44 -a 1 -x {1.0 5.0 20 ------- null} h -t 1.1 -s 1 -d 2 -p cbr -e 500 -c 1 -i 44 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.10464 -s 4 -d 3 -p ack -e 40 -c 0 -i 43 -a 0 -x {4.0 0.0 11 ------- null} + -t 1.10464 -s 3 -d 2 -p ack -e 40 -c 0 -i 43 -a 0 -x {4.0 0.0 11 ------- null} - -t 1.10464 -s 3 -d 2 -p ack -e 40 -c 0 -i 43 -a 0 -x {4.0 0.0 11 ------- null} h -t 1.10464 -s 3 -d 2 -p ack -e 40 -c 0 -i 43 -a 0 -x {4.0 0.0 -1 ------- null} r -t 1.108 -s 1 -d 2 -p cbr -e 500 -c 1 -i 42 -a 1 -x {1.0 5.0 19 ------- null} + -t 1.108 -s 2 -d 3 -p cbr -e 500 -c 1 -i 42 -a 1 -x {1.0 5.0 19 ------- null} - -t 1.108 -s 2 -d 3 -p cbr -e 500 -c 1 -i 42 -a 1 -x {1.0 5.0 19 ------- null} h -t 1.108 -s 2 -d 3 -p cbr -e 500 -c 1 -i 42 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.11528 -s 3 -d 2 -p ack -e 40 -c 0 -i 40 -a 0 -x {4.0 0.0 9 ------- null} + -t 1.11528 -s 2 -d 0 -p ack -e 40 -c 0 -i 40 -a 0 -x {4.0 0.0 9 ------- null} - -t 1.11528 -s 2 -d 0 -p ack -e 40 -c 0 -i 40 -a 0 -x {4.0 0.0 9 ------- null} h -t 1.11528 -s 2 -d 0 -p ack -e 40 -c 0 -i 40 -a 0 -x {4.0 0.0 -1 ------- null} r -t 1.116 -s 2 -d 3 -p cbr -e 500 -c 1 -i 39 -a 1 -x {1.0 5.0 18 ------- null} + -t 1.116 -s 3 -d 5 -p cbr -e 500 -c 1 -i 39 -a 1 -x {1.0 5.0 18 ------- null} - -t 1.116 -s 3 -d 5 -p cbr -e 500 -c 1 -i 39 -a 1 -x {1.0 5.0 18 ------- null} h -t 1.116 -s 3 -d 5 -p cbr -e 500 -c 1 -i 39 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.124 -s 3 -d 5 -p cbr -e 500 -c 1 -i 37 -a 1 -x {1.0 5.0 17 ------- null} r -t 1.13128 -s 3 -d 2 -p ack -e 40 -c 0 -i 41 -a 0 -x {4.0 0.0 10 ------- null} + -t 1.13128 -s 2 -d 0 -p ack -e 40 -c 0 -i 41 -a 0 -x {4.0 0.0 10 ------- null} - -t 1.13128 -s 2 -d 0 -p ack -e 40 -c 0 -i 41 -a 0 -x {4.0 0.0 10 ------- null} h -t 1.13128 -s 2 -d 0 -p ack -e 40 -c 0 -i 41 -a 0 -x {4.0 0.0 -1 ------- null} r -t 1.14992 -s 2 -d 0 -p ack -e 40 -c 0 -i 38 -a 0 -x {4.0 0.0 8 ------- null} + -t 1.14992 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {0.0 4.0 12 ------- null} - -t 1.14992 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {0.0 4.0 12 ------- null} h -t 1.14992 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {0.0 4.0 -1 ------- null} + -t 1.15 -s 1 -d 2 -p cbr -e 500 -c 1 -i 46 -a 1 -x {1.0 5.0 21 ------- null} - -t 1.15 -s 1 -d 2 -p cbr -e 500 -c 1 -i 46 -a 1 -x {1.0 5.0 21 ------- null} h -t 1.15 -s 1 -d 2 -p cbr -e 500 -c 1 -i 46 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.15528 -s 3 -d 2 -p ack -e 40 -c 0 -i 43 -a 0 -x {4.0 0.0 11 ------- null} + -t 1.15528 -s 2 -d 0 -p ack -e 40 -c 0 -i 43 -a 0 -x {4.0 0.0 11 ------- null} - -t 1.15528 -s 2 -d 0 -p ack -e 40 -c 0 -i 43 -a 0 -x {4.0 0.0 11 ------- null} h -t 1.15528 -s 2 -d 0 -p ack -e 40 -c 0 -i 43 -a 0 -x {4.0 0.0 -1 ------- null} r -t 1.158 -s 1 -d 2 -p cbr -e 500 -c 1 -i 44 -a 1 -x {1.0 5.0 20 ------- null} + -t 1.158 -s 2 -d 3 -p cbr -e 500 -c 1 -i 44 -a 1 -x {1.0 5.0 20 ------- null} - -t 1.158 -s 2 -d 3 -p cbr -e 500 -c 1 -i 44 -a 1 -x {1.0 5.0 20 ------- null} h -t 1.158 -s 2 -d 3 -p cbr -e 500 -c 1 -i 44 -a 1 -x {1.0 5.0 -1 ------- null} v -t 1.1599999999999999 sim_annotation 1.1599999999999999 10 Send Packet_12,13,14,15 : window size, 4 r -t 1.16592 -s 2 -d 0 -p ack -e 40 -c 0 -i 40 -a 0 -x {4.0 0.0 9 ------- null} + -t 1.16592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 47 -a 0 -x {0.0 4.0 13 ------- null} - -t 1.16592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 47 -a 0 -x {0.0 4.0 13 ------- null} h -t 1.16592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 47 -a 0 -x {0.0 4.0 -1 ------- null} r -t 1.166 -s 2 -d 3 -p cbr -e 500 -c 1 -i 42 -a 1 -x {1.0 5.0 19 ------- null} + -t 1.166 -s 3 -d 5 -p cbr -e 500 -c 1 -i 42 -a 1 -x {1.0 5.0 19 ------- null} - -t 1.166 -s 3 -d 5 -p cbr -e 500 -c 1 -i 42 -a 1 -x {1.0 5.0 19 ------- null} h -t 1.166 -s 3 -d 5 -p cbr -e 500 -c 1 -i 42 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.174 -s 3 -d 5 -p cbr -e 500 -c 1 -i 39 -a 1 -x {1.0 5.0 18 ------- null} r -t 1.18192 -s 2 -d 0 -p ack -e 40 -c 0 -i 41 -a 0 -x {4.0 0.0 10 ------- null} + -t 1.18192 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 48 -a 0 -x {0.0 4.0 14 ------- null} - -t 1.18192 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 48 -a 0 -x {0.0 4.0 14 ------- null} h -t 1.18192 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 48 -a 0 -x {0.0 4.0 -1 ------- null} + -t 1.2 -s 1 -d 2 -p cbr -e 500 -c 1 -i 49 -a 1 -x {1.0 5.0 22 ------- null} - -t 1.2 -s 1 -d 2 -p cbr -e 500 -c 1 -i 49 -a 1 -x {1.0 5.0 22 ------- null} h -t 1.2 -s 1 -d 2 -p cbr -e 500 -c 1 -i 49 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.20592 -s 2 -d 0 -p ack -e 40 -c 0 -i 43 -a 0 -x {4.0 0.0 11 ------- null} + -t 1.20592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 50 -a 0 -x {0.0 4.0 15 ------- null} - -t 1.20592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 50 -a 0 -x {0.0 4.0 15 ------- null} h -t 1.20592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 50 -a 0 -x {0.0 4.0 -1 ------- null} r -t 1.208 -s 1 -d 2 -p cbr -e 500 -c 1 -i 46 -a 1 -x {1.0 5.0 21 ------- null} + -t 1.208 -s 2 -d 3 -p cbr -e 500 -c 1 -i 46 -a 1 -x {1.0 5.0 21 ------- null} - -t 1.208 -s 2 -d 3 -p cbr -e 500 -c 1 -i 46 -a 1 -x {1.0 5.0 21 ------- null} h -t 1.208 -s 2 -d 3 -p cbr -e 500 -c 1 -i 46 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.21592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {0.0 4.0 12 ------- null} + -t 1.21592 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {0.0 4.0 12 ------- null} r -t 1.216 -s 2 -d 3 -p cbr -e 500 -c 1 -i 44 -a 1 -x {1.0 5.0 20 ------- null} + -t 1.216 -s 3 -d 5 -p cbr -e 500 -c 1 -i 44 -a 1 -x {1.0 5.0 20 ------- null} - -t 1.216 -s 3 -d 5 -p cbr -e 500 -c 1 -i 44 -a 1 -x {1.0 5.0 20 ------- null} h -t 1.216 -s 3 -d 5 -p cbr -e 500 -c 1 -i 44 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.216 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {0.0 4.0 12 ------- null} h -t 1.216 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {0.0 4.0 -1 ------- null} r -t 1.224 -s 3 -d 5 -p cbr -e 500 -c 1 -i 42 -a 1 -x {1.0 5.0 19 ------- null} r -t 1.23192 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 47 -a 0 -x {0.0 4.0 13 ------- null} + -t 1.23192 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 47 -a 0 -x {0.0 4.0 13 ------- null} - -t 1.232 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 47 -a 0 -x {0.0 4.0 13 ------- null} h -t 1.232 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 47 -a 0 -x {0.0 4.0 -1 ------- null} r -t 1.24792 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 48 -a 0 -x {0.0 4.0 14 ------- null} + -t 1.24792 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 48 -a 0 -x {0.0 4.0 14 ------- null} - -t 1.248 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 48 -a 0 -x {0.0 4.0 14 ------- null} h -t 1.248 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 48 -a 0 -x {0.0 4.0 -1 ------- null} + -t 1.25 -s 1 -d 2 -p cbr -e 500 -c 1 -i 51 -a 1 -x {1.0 5.0 23 ------- null} - -t 1.25 -s 1 -d 2 -p cbr -e 500 -c 1 -i 51 -a 1 -x {1.0 5.0 23 ------- null} h -t 1.25 -s 1 -d 2 -p cbr -e 500 -c 1 -i 51 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.258 -s 1 -d 2 -p cbr -e 500 -c 1 -i 49 -a 1 -x {1.0 5.0 22 ------- null} + -t 1.258 -s 2 -d 3 -p cbr -e 500 -c 1 -i 49 -a 1 -x {1.0 5.0 22 ------- null} - -t 1.264 -s 2 -d 3 -p cbr -e 500 -c 1 -i 49 -a 1 -x {1.0 5.0 22 ------- null} h -t 1.264 -s 2 -d 3 -p cbr -e 500 -c 1 -i 49 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.266 -s 2 -d 3 -p cbr -e 500 -c 1 -i 46 -a 1 -x {1.0 5.0 21 ------- null} + -t 1.266 -s 3 -d 5 -p cbr -e 500 -c 1 -i 46 -a 1 -x {1.0 5.0 21 ------- null} - -t 1.266 -s 3 -d 5 -p cbr -e 500 -c 1 -i 46 -a 1 -x {1.0 5.0 21 ------- null} h -t 1.266 -s 3 -d 5 -p cbr -e 500 -c 1 -i 46 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.27192 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 50 -a 0 -x {0.0 4.0 15 ------- null} + -t 1.27192 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 50 -a 0 -x {0.0 4.0 15 ------- null} - -t 1.272 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 50 -a 0 -x {0.0 4.0 15 ------- null} h -t 1.272 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 50 -a 0 -x {0.0 4.0 -1 ------- null} r -t 1.274 -s 3 -d 5 -p cbr -e 500 -c 1 -i 44 -a 1 -x {1.0 5.0 20 ------- null} r -t 1.282 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {0.0 4.0 12 ------- null} + -t 1.282 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {0.0 4.0 12 ------- null} - -t 1.282 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {0.0 4.0 12 ------- null} h -t 1.282 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {0.0 4.0 -1 ------- null} r -t 1.298 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 47 -a 0 -x {0.0 4.0 13 ------- null} + -t 1.298 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 47 -a 0 -x {0.0 4.0 13 ------- null} - -t 1.298 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 47 -a 0 -x {0.0 4.0 13 ------- null} h -t 1.298 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 47 -a 0 -x {0.0 4.0 -1 ------- null} + -t 1.3 -s 1 -d 2 -p cbr -e 500 -c 1 -i 52 -a 1 -x {1.0 5.0 24 ------- null} - -t 1.3 -s 1 -d 2 -p cbr -e 500 -c 1 -i 52 -a 1 -x {1.0 5.0 24 ------- null} h -t 1.3 -s 1 -d 2 -p cbr -e 500 -c 1 -i 52 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.308 -s 1 -d 2 -p cbr -e 500 -c 1 -i 51 -a 1 -x {1.0 5.0 23 ------- null} + -t 1.308 -s 2 -d 3 -p cbr -e 500 -c 1 -i 51 -a 1 -x {1.0 5.0 23 ------- null} - -t 1.308 -s 2 -d 3 -p cbr -e 500 -c 1 -i 51 -a 1 -x {1.0 5.0 23 ------- null} h -t 1.308 -s 2 -d 3 -p cbr -e 500 -c 1 -i 51 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.314 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 48 -a 0 -x {0.0 4.0 14 ------- null} + -t 1.314 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 48 -a 0 -x {0.0 4.0 14 ------- null} - -t 1.314 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 48 -a 0 -x {0.0 4.0 14 ------- null} h -t 1.314 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 48 -a 0 -x {0.0 4.0 -1 ------- null} r -t 1.322 -s 2 -d 3 -p cbr -e 500 -c 1 -i 49 -a 1 -x {1.0 5.0 22 ------- null} + -t 1.322 -s 3 -d 5 -p cbr -e 500 -c 1 -i 49 -a 1 -x {1.0 5.0 22 ------- null} - -t 1.322 -s 3 -d 5 -p cbr -e 500 -c 1 -i 49 -a 1 -x {1.0 5.0 22 ------- null} h -t 1.322 -s 3 -d 5 -p cbr -e 500 -c 1 -i 49 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.324 -s 3 -d 5 -p cbr -e 500 -c 1 -i 46 -a 1 -x {1.0 5.0 21 ------- null} r -t 1.338 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 50 -a 0 -x {0.0 4.0 15 ------- null} + -t 1.338 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 50 -a 0 -x {0.0 4.0 15 ------- null} - -t 1.338 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 50 -a 0 -x {0.0 4.0 15 ------- null} h -t 1.338 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 50 -a 0 -x {0.0 4.0 -1 ------- null} r -t 1.348 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {0.0 4.0 12 ------- null} + -t 1.348 -s 4 -d 3 -p ack -e 40 -c 0 -i 53 -a 0 -x {4.0 0.0 12 ------- null} - -t 1.348 -s 4 -d 3 -p ack -e 40 -c 0 -i 53 -a 0 -x {4.0 0.0 12 ------- null} h -t 1.348 -s 4 -d 3 -p ack -e 40 -c 0 -i 53 -a 0 -x {4.0 0.0 -1 ------- null} v -t 1.3500000000000001 sim_annotation 1.3500000000000001 11 Ack_12,13,14,15 + -t 1.35 -s 1 -d 2 -p cbr -e 500 -c 1 -i 54 -a 1 -x {1.0 5.0 25 ------- null} - -t 1.35 -s 1 -d 2 -p cbr -e 500 -c 1 -i 54 -a 1 -x {1.0 5.0 25 ------- null} h -t 1.35 -s 1 -d 2 -p cbr -e 500 -c 1 -i 54 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.358 -s 1 -d 2 -p cbr -e 500 -c 1 -i 52 -a 1 -x {1.0 5.0 24 ------- null} + -t 1.358 -s 2 -d 3 -p cbr -e 500 -c 1 -i 52 -a 1 -x {1.0 5.0 24 ------- null} - -t 1.358 -s 2 -d 3 -p cbr -e 500 -c 1 -i 52 -a 1 -x {1.0 5.0 24 ------- null} h -t 1.358 -s 2 -d 3 -p cbr -e 500 -c 1 -i 52 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.364 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 47 -a 0 -x {0.0 4.0 13 ------- null} + -t 1.364 -s 4 -d 3 -p ack -e 40 -c 0 -i 55 -a 0 -x {4.0 0.0 13 ------- null} - -t 1.364 -s 4 -d 3 -p ack -e 40 -c 0 -i 55 -a 0 -x {4.0 0.0 13 ------- null} h -t 1.364 -s 4 -d 3 -p ack -e 40 -c 0 -i 55 -a 0 -x {4.0 0.0 -1 ------- null} r -t 1.366 -s 2 -d 3 -p cbr -e 500 -c 1 -i 51 -a 1 -x {1.0 5.0 23 ------- null} + -t 1.366 -s 3 -d 5 -p cbr -e 500 -c 1 -i 51 -a 1 -x {1.0 5.0 23 ------- null} - -t 1.366 -s 3 -d 5 -p cbr -e 500 -c 1 -i 51 -a 1 -x {1.0 5.0 23 ------- null} h -t 1.366 -s 3 -d 5 -p cbr -e 500 -c 1 -i 51 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.38 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 48 -a 0 -x {0.0 4.0 14 ------- null} + -t 1.38 -s 4 -d 3 -p ack -e 40 -c 0 -i 56 -a 0 -x {4.0 0.0 14 ------- null} - -t 1.38 -s 4 -d 3 -p ack -e 40 -c 0 -i 56 -a 0 -x {4.0 0.0 14 ------- null} h -t 1.38 -s 4 -d 3 -p ack -e 40 -c 0 -i 56 -a 0 -x {4.0 0.0 -1 ------- null} r -t 1.38 -s 3 -d 5 -p cbr -e 500 -c 1 -i 49 -a 1 -x {1.0 5.0 22 ------- null} r -t 1.39864 -s 4 -d 3 -p ack -e 40 -c 0 -i 53 -a 0 -x {4.0 0.0 12 ------- null} + -t 1.39864 -s 3 -d 2 -p ack -e 40 -c 0 -i 53 -a 0 -x {4.0 0.0 12 ------- null} - -t 1.39864 -s 3 -d 2 -p ack -e 40 -c 0 -i 53 -a 0 -x {4.0 0.0 12 ------- null} h -t 1.39864 -s 3 -d 2 -p ack -e 40 -c 0 -i 53 -a 0 -x {4.0 0.0 -1 ------- null} + -t 1.4 -s 1 -d 2 -p cbr -e 500 -c 1 -i 57 -a 1 -x {1.0 5.0 26 ------- null} - -t 1.4 -s 1 -d 2 -p cbr -e 500 -c 1 -i 57 -a 1 -x {1.0 5.0 26 ------- null} h -t 1.4 -s 1 -d 2 -p cbr -e 500 -c 1 -i 57 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.404 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 50 -a 0 -x {0.0 4.0 15 ------- null} + -t 1.404 -s 4 -d 3 -p ack -e 40 -c 0 -i 58 -a 0 -x {4.0 0.0 15 ------- null} - -t 1.404 -s 4 -d 3 -p ack -e 40 -c 0 -i 58 -a 0 -x {4.0 0.0 15 ------- null} h -t 1.404 -s 4 -d 3 -p ack -e 40 -c 0 -i 58 -a 0 -x {4.0 0.0 -1 ------- null} r -t 1.408 -s 1 -d 2 -p cbr -e 500 -c 1 -i 54 -a 1 -x {1.0 5.0 25 ------- null} + -t 1.408 -s 2 -d 3 -p cbr -e 500 -c 1 -i 54 -a 1 -x {1.0 5.0 25 ------- null} - -t 1.408 -s 2 -d 3 -p cbr -e 500 -c 1 -i 54 -a 1 -x {1.0 5.0 25 ------- null} h -t 1.408 -s 2 -d 3 -p cbr -e 500 -c 1 -i 54 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.41464 -s 4 -d 3 -p ack -e 40 -c 0 -i 55 -a 0 -x {4.0 0.0 13 ------- null} + -t 1.41464 -s 3 -d 2 -p ack -e 40 -c 0 -i 55 -a 0 -x {4.0 0.0 13 ------- null} - -t 1.41464 -s 3 -d 2 -p ack -e 40 -c 0 -i 55 -a 0 -x {4.0 0.0 13 ------- null} h -t 1.41464 -s 3 -d 2 -p ack -e 40 -c 0 -i 55 -a 0 -x {4.0 0.0 -1 ------- null} r -t 1.416 -s 2 -d 3 -p cbr -e 500 -c 1 -i 52 -a 1 -x {1.0 5.0 24 ------- null} + -t 1.416 -s 3 -d 5 -p cbr -e 500 -c 1 -i 52 -a 1 -x {1.0 5.0 24 ------- null} - -t 1.416 -s 3 -d 5 -p cbr -e 500 -c 1 -i 52 -a 1 -x {1.0 5.0 24 ------- null} h -t 1.416 -s 3 -d 5 -p cbr -e 500 -c 1 -i 52 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.424 -s 3 -d 5 -p cbr -e 500 -c 1 -i 51 -a 1 -x {1.0 5.0 23 ------- null} r -t 1.43064 -s 4 -d 3 -p ack -e 40 -c 0 -i 56 -a 0 -x {4.0 0.0 14 ------- null} + -t 1.43064 -s 3 -d 2 -p ack -e 40 -c 0 -i 56 -a 0 -x {4.0 0.0 14 ------- null} - -t 1.43064 -s 3 -d 2 -p ack -e 40 -c 0 -i 56 -a 0 -x {4.0 0.0 14 ------- null} h -t 1.43064 -s 3 -d 2 -p ack -e 40 -c 0 -i 56 -a 0 -x {4.0 0.0 -1 ------- null} r -t 1.44928 -s 3 -d 2 -p ack -e 40 -c 0 -i 53 -a 0 -x {4.0 0.0 12 ------- null} + -t 1.44928 -s 2 -d 0 -p ack -e 40 -c 0 -i 53 -a 0 -x {4.0 0.0 12 ------- null} - -t 1.44928 -s 2 -d 0 -p ack -e 40 -c 0 -i 53 -a 0 -x {4.0 0.0 12 ------- null} h -t 1.44928 -s 2 -d 0 -p ack -e 40 -c 0 -i 53 -a 0 -x {4.0 0.0 -1 ------- null} + -t 1.45 -s 1 -d 2 -p cbr -e 500 -c 1 -i 59 -a 1 -x {1.0 5.0 27 ------- null} - -t 1.45 -s 1 -d 2 -p cbr -e 500 -c 1 -i 59 -a 1 -x {1.0 5.0 27 ------- null} h -t 1.45 -s 1 -d 2 -p cbr -e 500 -c 1 -i 59 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.45464 -s 4 -d 3 -p ack -e 40 -c 0 -i 58 -a 0 -x {4.0 0.0 15 ------- null} + -t 1.45464 -s 3 -d 2 -p ack -e 40 -c 0 -i 58 -a 0 -x {4.0 0.0 15 ------- null} - -t 1.45464 -s 3 -d 2 -p ack -e 40 -c 0 -i 58 -a 0 -x {4.0 0.0 15 ------- null} h -t 1.45464 -s 3 -d 2 -p ack -e 40 -c 0 -i 58 -a 0 -x {4.0 0.0 -1 ------- null} r -t 1.458 -s 1 -d 2 -p cbr -e 500 -c 1 -i 57 -a 1 -x {1.0 5.0 26 ------- null} + -t 1.458 -s 2 -d 3 -p cbr -e 500 -c 1 -i 57 -a 1 -x {1.0 5.0 26 ------- null} - -t 1.458 -s 2 -d 3 -p cbr -e 500 -c 1 -i 57 -a 1 -x {1.0 5.0 26 ------- null} h -t 1.458 -s 2 -d 3 -p cbr -e 500 -c 1 -i 57 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.46528 -s 3 -d 2 -p ack -e 40 -c 0 -i 55 -a 0 -x {4.0 0.0 13 ------- null} + -t 1.46528 -s 2 -d 0 -p ack -e 40 -c 0 -i 55 -a 0 -x {4.0 0.0 13 ------- null} - -t 1.46528 -s 2 -d 0 -p ack -e 40 -c 0 -i 55 -a 0 -x {4.0 0.0 13 ------- null} h -t 1.46528 -s 2 -d 0 -p ack -e 40 -c 0 -i 55 -a 0 -x {4.0 0.0 -1 ------- null} r -t 1.466 -s 2 -d 3 -p cbr -e 500 -c 1 -i 54 -a 1 -x {1.0 5.0 25 ------- null} + -t 1.466 -s 3 -d 5 -p cbr -e 500 -c 1 -i 54 -a 1 -x {1.0 5.0 25 ------- null} - -t 1.466 -s 3 -d 5 -p cbr -e 500 -c 1 -i 54 -a 1 -x {1.0 5.0 25 ------- null} h -t 1.466 -s 3 -d 5 -p cbr -e 500 -c 1 -i 54 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.474 -s 3 -d 5 -p cbr -e 500 -c 1 -i 52 -a 1 -x {1.0 5.0 24 ------- null} r -t 1.48128 -s 3 -d 2 -p ack -e 40 -c 0 -i 56 -a 0 -x {4.0 0.0 14 ------- null} + -t 1.48128 -s 2 -d 0 -p ack -e 40 -c 0 -i 56 -a 0 -x {4.0 0.0 14 ------- null} - -t 1.48128 -s 2 -d 0 -p ack -e 40 -c 0 -i 56 -a 0 -x {4.0 0.0 14 ------- null} h -t 1.48128 -s 2 -d 0 -p ack -e 40 -c 0 -i 56 -a 0 -x {4.0 0.0 -1 ------- null} r -t 1.49992 -s 2 -d 0 -p ack -e 40 -c 0 -i 53 -a 0 -x {4.0 0.0 12 ------- null} + -t 1.49992 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 60 -a 0 -x {0.0 4.0 16 ------- null} - -t 1.49992 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 60 -a 0 -x {0.0 4.0 16 ------- null} h -t 1.49992 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 60 -a 0 -x {0.0 4.0 -1 ------- null} v -t 1.5 sim_annotation 1.5 12 Send Packet_16,17,18,19 : window size, 4 + -t 1.5 -s 1 -d 2 -p cbr -e 500 -c 1 -i 61 -a 1 -x {1.0 5.0 28 ------- null} - -t 1.5 -s 1 -d 2 -p cbr -e 500 -c 1 -i 61 -a 1 -x {1.0 5.0 28 ------- null} h -t 1.5 -s 1 -d 2 -p cbr -e 500 -c 1 -i 61 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.50528 -s 3 -d 2 -p ack -e 40 -c 0 -i 58 -a 0 -x {4.0 0.0 15 ------- null} + -t 1.50528 -s 2 -d 0 -p ack -e 40 -c 0 -i 58 -a 0 -x {4.0 0.0 15 ------- null} - -t 1.50528 -s 2 -d 0 -p ack -e 40 -c 0 -i 58 -a 0 -x {4.0 0.0 15 ------- null} h -t 1.50528 -s 2 -d 0 -p ack -e 40 -c 0 -i 58 -a 0 -x {4.0 0.0 -1 ------- null} r -t 1.508 -s 1 -d 2 -p cbr -e 500 -c 1 -i 59 -a 1 -x {1.0 5.0 27 ------- null} + -t 1.508 -s 2 -d 3 -p cbr -e 500 -c 1 -i 59 -a 1 -x {1.0 5.0 27 ------- null} - -t 1.508 -s 2 -d 3 -p cbr -e 500 -c 1 -i 59 -a 1 -x {1.0 5.0 27 ------- null} h -t 1.508 -s 2 -d 3 -p cbr -e 500 -c 1 -i 59 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.51592 -s 2 -d 0 -p ack -e 40 -c 0 -i 55 -a 0 -x {4.0 0.0 13 ------- null} + -t 1.51592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {0.0 4.0 17 ------- null} - -t 1.51592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {0.0 4.0 17 ------- null} h -t 1.51592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {0.0 4.0 -1 ------- null} r -t 1.516 -s 2 -d 3 -p cbr -e 500 -c 1 -i 57 -a 1 -x {1.0 5.0 26 ------- null} + -t 1.516 -s 3 -d 5 -p cbr -e 500 -c 1 -i 57 -a 1 -x {1.0 5.0 26 ------- null} - -t 1.516 -s 3 -d 5 -p cbr -e 500 -c 1 -i 57 -a 1 -x {1.0 5.0 26 ------- null} h -t 1.516 -s 3 -d 5 -p cbr -e 500 -c 1 -i 57 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.524 -s 3 -d 5 -p cbr -e 500 -c 1 -i 54 -a 1 -x {1.0 5.0 25 ------- null} r -t 1.53192 -s 2 -d 0 -p ack -e 40 -c 0 -i 56 -a 0 -x {4.0 0.0 14 ------- null} + -t 1.53192 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {0.0 4.0 18 ------- null} - -t 1.53192 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {0.0 4.0 18 ------- null} h -t 1.53192 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {0.0 4.0 -1 ------- null} + -t 1.55 -s 1 -d 2 -p cbr -e 500 -c 1 -i 64 -a 1 -x {1.0 5.0 29 ------- null} - -t 1.55 -s 1 -d 2 -p cbr -e 500 -c 1 -i 64 -a 1 -x {1.0 5.0 29 ------- null} h -t 1.55 -s 1 -d 2 -p cbr -e 500 -c 1 -i 64 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.55592 -s 2 -d 0 -p ack -e 40 -c 0 -i 58 -a 0 -x {4.0 0.0 15 ------- null} + -t 1.55592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {0.0 4.0 19 ------- null} - -t 1.55592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {0.0 4.0 19 ------- null} h -t 1.55592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {0.0 4.0 -1 ------- null} r -t 1.558 -s 1 -d 2 -p cbr -e 500 -c 1 -i 61 -a 1 -x {1.0 5.0 28 ------- null} + -t 1.558 -s 2 -d 3 -p cbr -e 500 -c 1 -i 61 -a 1 -x {1.0 5.0 28 ------- null} - -t 1.558 -s 2 -d 3 -p cbr -e 500 -c 1 -i 61 -a 1 -x {1.0 5.0 28 ------- null} h -t 1.558 -s 2 -d 3 -p cbr -e 500 -c 1 -i 61 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.56592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 60 -a 0 -x {0.0 4.0 16 ------- null} + -t 1.56592 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 60 -a 0 -x {0.0 4.0 16 ------- null} r -t 1.566 -s 2 -d 3 -p cbr -e 500 -c 1 -i 59 -a 1 -x {1.0 5.0 27 ------- null} + -t 1.566 -s 3 -d 5 -p cbr -e 500 -c 1 -i 59 -a 1 -x {1.0 5.0 27 ------- null} - -t 1.566 -s 3 -d 5 -p cbr -e 500 -c 1 -i 59 -a 1 -x {1.0 5.0 27 ------- null} h -t 1.566 -s 3 -d 5 -p cbr -e 500 -c 1 -i 59 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.566 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 60 -a 0 -x {0.0 4.0 16 ------- null} h -t 1.566 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 60 -a 0 -x {0.0 4.0 -1 ------- null} r -t 1.574 -s 3 -d 5 -p cbr -e 500 -c 1 -i 57 -a 1 -x {1.0 5.0 26 ------- null} r -t 1.58192 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {0.0 4.0 17 ------- null} + -t 1.58192 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {0.0 4.0 17 ------- null} - -t 1.582 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {0.0 4.0 17 ------- null} h -t 1.582 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {0.0 4.0 -1 ------- null} r -t 1.59792 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {0.0 4.0 18 ------- null} + -t 1.59792 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {0.0 4.0 18 ------- null} - -t 1.598 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {0.0 4.0 18 ------- null} h -t 1.598 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {0.0 4.0 -1 ------- null} + -t 1.6 -s 1 -d 2 -p cbr -e 500 -c 1 -i 66 -a 1 -x {1.0 5.0 30 ------- null} - -t 1.6 -s 1 -d 2 -p cbr -e 500 -c 1 -i 66 -a 1 -x {1.0 5.0 30 ------- null} h -t 1.6 -s 1 -d 2 -p cbr -e 500 -c 1 -i 66 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.608 -s 1 -d 2 -p cbr -e 500 -c 1 -i 64 -a 1 -x {1.0 5.0 29 ------- null} + -t 1.608 -s 2 -d 3 -p cbr -e 500 -c 1 -i 64 -a 1 -x {1.0 5.0 29 ------- null} - -t 1.614 -s 2 -d 3 -p cbr -e 500 -c 1 -i 64 -a 1 -x {1.0 5.0 29 ------- null} h -t 1.614 -s 2 -d 3 -p cbr -e 500 -c 1 -i 64 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.616 -s 2 -d 3 -p cbr -e 500 -c 1 -i 61 -a 1 -x {1.0 5.0 28 ------- null} + -t 1.616 -s 3 -d 5 -p cbr -e 500 -c 1 -i 61 -a 1 -x {1.0 5.0 28 ------- null} - -t 1.616 -s 3 -d 5 -p cbr -e 500 -c 1 -i 61 -a 1 -x {1.0 5.0 28 ------- null} h -t 1.616 -s 3 -d 5 -p cbr -e 500 -c 1 -i 61 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.62192 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {0.0 4.0 19 ------- null} + -t 1.62192 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {0.0 4.0 19 ------- null} - -t 1.622 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {0.0 4.0 19 ------- null} h -t 1.622 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {0.0 4.0 -1 ------- null} r -t 1.624 -s 3 -d 5 -p cbr -e 500 -c 1 -i 59 -a 1 -x {1.0 5.0 27 ------- null} r -t 1.632 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 60 -a 0 -x {0.0 4.0 16 ------- null} + -t 1.632 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 60 -a 0 -x {0.0 4.0 16 ------- null} - -t 1.632 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 60 -a 0 -x {0.0 4.0 16 ------- null} h -t 1.632 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 60 -a 0 -x {0.0 4.0 -1 ------- null} r -t 1.648 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {0.0 4.0 17 ------- null} + -t 1.648 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {0.0 4.0 17 ------- null} - -t 1.648 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {0.0 4.0 17 ------- null} h -t 1.648 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {0.0 4.0 -1 ------- null} + -t 1.65 -s 1 -d 2 -p cbr -e 500 -c 1 -i 67 -a 1 -x {1.0 5.0 31 ------- null} - -t 1.65 -s 1 -d 2 -p cbr -e 500 -c 1 -i 67 -a 1 -x {1.0 5.0 31 ------- null} h -t 1.65 -s 1 -d 2 -p cbr -e 500 -c 1 -i 67 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.658 -s 1 -d 2 -p cbr -e 500 -c 1 -i 66 -a 1 -x {1.0 5.0 30 ------- null} + -t 1.658 -s 2 -d 3 -p cbr -e 500 -c 1 -i 66 -a 1 -x {1.0 5.0 30 ------- null} - -t 1.658 -s 2 -d 3 -p cbr -e 500 -c 1 -i 66 -a 1 -x {1.0 5.0 30 ------- null} h -t 1.658 -s 2 -d 3 -p cbr -e 500 -c 1 -i 66 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.664 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {0.0 4.0 18 ------- null} + -t 1.664 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {0.0 4.0 18 ------- null} - -t 1.664 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {0.0 4.0 18 ------- null} h -t 1.664 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {0.0 4.0 -1 ------- null} r -t 1.672 -s 2 -d 3 -p cbr -e 500 -c 1 -i 64 -a 1 -x {1.0 5.0 29 ------- null} + -t 1.672 -s 3 -d 5 -p cbr -e 500 -c 1 -i 64 -a 1 -x {1.0 5.0 29 ------- null} - -t 1.672 -s 3 -d 5 -p cbr -e 500 -c 1 -i 64 -a 1 -x {1.0 5.0 29 ------- null} h -t 1.672 -s 3 -d 5 -p cbr -e 500 -c 1 -i 64 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.674 -s 3 -d 5 -p cbr -e 500 -c 1 -i 61 -a 1 -x {1.0 5.0 28 ------- null} r -t 1.688 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {0.0 4.0 19 ------- null} + -t 1.688 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {0.0 4.0 19 ------- null} - -t 1.688 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {0.0 4.0 19 ------- null} h -t 1.688 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {0.0 4.0 -1 ------- null} r -t 1.698 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 60 -a 0 -x {0.0 4.0 16 ------- null} + -t 1.698 -s 4 -d 3 -p ack -e 40 -c 0 -i 68 -a 0 -x {4.0 0.0 16 ------- null} - -t 1.698 -s 4 -d 3 -p ack -e 40 -c 0 -i 68 -a 0 -x {4.0 0.0 16 ------- null} h -t 1.698 -s 4 -d 3 -p ack -e 40 -c 0 -i 68 -a 0 -x {4.0 0.0 -1 ------- null} r -t 1.708 -s 1 -d 2 -p cbr -e 500 -c 1 -i 67 -a 1 -x {1.0 5.0 31 ------- null} + -t 1.708 -s 2 -d 3 -p cbr -e 500 -c 1 -i 67 -a 1 -x {1.0 5.0 31 ------- null} - -t 1.708 -s 2 -d 3 -p cbr -e 500 -c 1 -i 67 -a 1 -x {1.0 5.0 31 ------- null} h -t 1.708 -s 2 -d 3 -p cbr -e 500 -c 1 -i 67 -a 1 -x {1.0 5.0 -1 ------- null} v -t 1.71 sim_annotation 1.71 13 Ack_16,17,18,19 r -t 1.714 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {0.0 4.0 17 ------- null} + -t 1.714 -s 4 -d 3 -p ack -e 40 -c 0 -i 69 -a 0 -x {4.0 0.0 17 ------- null} - -t 1.714 -s 4 -d 3 -p ack -e 40 -c 0 -i 69 -a 0 -x {4.0 0.0 17 ------- null} h -t 1.714 -s 4 -d 3 -p ack -e 40 -c 0 -i 69 -a 0 -x {4.0 0.0 -1 ------- null} r -t 1.716 -s 2 -d 3 -p cbr -e 500 -c 1 -i 66 -a 1 -x {1.0 5.0 30 ------- null} + -t 1.716 -s 3 -d 5 -p cbr -e 500 -c 1 -i 66 -a 1 -x {1.0 5.0 30 ------- null} - -t 1.716 -s 3 -d 5 -p cbr -e 500 -c 1 -i 66 -a 1 -x {1.0 5.0 30 ------- null} h -t 1.716 -s 3 -d 5 -p cbr -e 500 -c 1 -i 66 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.73 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {0.0 4.0 18 ------- null} + -t 1.73 -s 4 -d 3 -p ack -e 40 -c 0 -i 70 -a 0 -x {4.0 0.0 18 ------- null} - -t 1.73 -s 4 -d 3 -p ack -e 40 -c 0 -i 70 -a 0 -x {4.0 0.0 18 ------- null} h -t 1.73 -s 4 -d 3 -p ack -e 40 -c 0 -i 70 -a 0 -x {4.0 0.0 -1 ------- null} r -t 1.73 -s 3 -d 5 -p cbr -e 500 -c 1 -i 64 -a 1 -x {1.0 5.0 29 ------- null} r -t 1.74864 -s 4 -d 3 -p ack -e 40 -c 0 -i 68 -a 0 -x {4.0 0.0 16 ------- null} + -t 1.74864 -s 3 -d 2 -p ack -e 40 -c 0 -i 68 -a 0 -x {4.0 0.0 16 ------- null} - -t 1.74864 -s 3 -d 2 -p ack -e 40 -c 0 -i 68 -a 0 -x {4.0 0.0 16 ------- null} h -t 1.74864 -s 3 -d 2 -p ack -e 40 -c 0 -i 68 -a 0 -x {4.0 0.0 -1 ------- null} r -t 1.754 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {0.0 4.0 19 ------- null} + -t 1.754 -s 4 -d 3 -p ack -e 40 -c 0 -i 71 -a 0 -x {4.0 0.0 19 ------- null} - -t 1.754 -s 4 -d 3 -p ack -e 40 -c 0 -i 71 -a 0 -x {4.0 0.0 19 ------- null} h -t 1.754 -s 4 -d 3 -p ack -e 40 -c 0 -i 71 -a 0 -x {4.0 0.0 -1 ------- null} r -t 1.76464 -s 4 -d 3 -p ack -e 40 -c 0 -i 69 -a 0 -x {4.0 0.0 17 ------- null} + -t 1.76464 -s 3 -d 2 -p ack -e 40 -c 0 -i 69 -a 0 -x {4.0 0.0 17 ------- null} - -t 1.76464 -s 3 -d 2 -p ack -e 40 -c 0 -i 69 -a 0 -x {4.0 0.0 17 ------- null} h -t 1.76464 -s 3 -d 2 -p ack -e 40 -c 0 -i 69 -a 0 -x {4.0 0.0 -1 ------- null} r -t 1.766 -s 2 -d 3 -p cbr -e 500 -c 1 -i 67 -a 1 -x {1.0 5.0 31 ------- null} + -t 1.766 -s 3 -d 5 -p cbr -e 500 -c 1 -i 67 -a 1 -x {1.0 5.0 31 ------- null} - -t 1.766 -s 3 -d 5 -p cbr -e 500 -c 1 -i 67 -a 1 -x {1.0 5.0 31 ------- null} h -t 1.766 -s 3 -d 5 -p cbr -e 500 -c 1 -i 67 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.774 -s 3 -d 5 -p cbr -e 500 -c 1 -i 66 -a 1 -x {1.0 5.0 30 ------- null} r -t 1.78064 -s 4 -d 3 -p ack -e 40 -c 0 -i 70 -a 0 -x {4.0 0.0 18 ------- null} + -t 1.78064 -s 3 -d 2 -p ack -e 40 -c 0 -i 70 -a 0 -x {4.0 0.0 18 ------- null} - -t 1.78064 -s 3 -d 2 -p ack -e 40 -c 0 -i 70 -a 0 -x {4.0 0.0 18 ------- null} h -t 1.78064 -s 3 -d 2 -p ack -e 40 -c 0 -i 70 -a 0 -x {4.0 0.0 -1 ------- null} r -t 1.79928 -s 3 -d 2 -p ack -e 40 -c 0 -i 68 -a 0 -x {4.0 0.0 16 ------- null} + -t 1.79928 -s 2 -d 0 -p ack -e 40 -c 0 -i 68 -a 0 -x {4.0 0.0 16 ------- null} - -t 1.79928 -s 2 -d 0 -p ack -e 40 -c 0 -i 68 -a 0 -x {4.0 0.0 16 ------- null} h -t 1.79928 -s 2 -d 0 -p ack -e 40 -c 0 -i 68 -a 0 -x {4.0 0.0 -1 ------- null} v -t 1.8 sim_annotation 1.8 14 FTP stops at 1.7 v -t 1.8 sim_annotation 1.8 15 CBR stops at 1.7 r -t 1.80464 -s 4 -d 3 -p ack -e 40 -c 0 -i 71 -a 0 -x {4.0 0.0 19 ------- null} + -t 1.80464 -s 3 -d 2 -p ack -e 40 -c 0 -i 71 -a 0 -x {4.0 0.0 19 ------- null} - -t 1.80464 -s 3 -d 2 -p ack -e 40 -c 0 -i 71 -a 0 -x {4.0 0.0 19 ------- null} h -t 1.80464 -s 3 -d 2 -p ack -e 40 -c 0 -i 71 -a 0 -x {4.0 0.0 -1 ------- null} r -t 1.81528 -s 3 -d 2 -p ack -e 40 -c 0 -i 69 -a 0 -x {4.0 0.0 17 ------- null} + -t 1.81528 -s 2 -d 0 -p ack -e 40 -c 0 -i 69 -a 0 -x {4.0 0.0 17 ------- null} - -t 1.81528 -s 2 -d 0 -p ack -e 40 -c 0 -i 69 -a 0 -x {4.0 0.0 17 ------- null} h -t 1.81528 -s 2 -d 0 -p ack -e 40 -c 0 -i 69 -a 0 -x {4.0 0.0 -1 ------- null} r -t 1.824 -s 3 -d 5 -p cbr -e 500 -c 1 -i 67 -a 1 -x {1.0 5.0 31 ------- null} r -t 1.83128 -s 3 -d 2 -p ack -e 40 -c 0 -i 70 -a 0 -x {4.0 0.0 18 ------- null} + -t 1.83128 -s 2 -d 0 -p ack -e 40 -c 0 -i 70 -a 0 -x {4.0 0.0 18 ------- null} - -t 1.83128 -s 2 -d 0 -p ack -e 40 -c 0 -i 70 -a 0 -x {4.0 0.0 18 ------- null} h -t 1.83128 -s 2 -d 0 -p ack -e 40 -c 0 -i 70 -a 0 -x {4.0 0.0 -1 ------- null} r -t 1.84992 -s 2 -d 0 -p ack -e 40 -c 0 -i 68 -a 0 -x {4.0 0.0 16 ------- null} r -t 1.85528 -s 3 -d 2 -p ack -e 40 -c 0 -i 71 -a 0 -x {4.0 0.0 19 ------- null} + -t 1.85528 -s 2 -d 0 -p ack -e 40 -c 0 -i 71 -a 0 -x {4.0 0.0 19 ------- null} - -t 1.85528 -s 2 -d 0 -p ack -e 40 -c 0 -i 71 -a 0 -x {4.0 0.0 19 ------- null} h -t 1.85528 -s 2 -d 0 -p ack -e 40 -c 0 -i 71 -a 0 -x {4.0 0.0 -1 ------- null} r -t 1.86592 -s 2 -d 0 -p ack -e 40 -c 0 -i 69 -a 0 -x {4.0 0.0 17 ------- null} r -t 1.88192 -s 2 -d 0 -p ack -e 40 -c 0 -i 70 -a 0 -x {4.0 0.0 18 ------- null} r -t 1.90592 -s 2 -d 0 -p ack -e 40 -c 0 -i 71 -a 0 -x {4.0 0.0 19 ------- null} nam-1.15/edu/B3-sliding-color.tcl0000664000076400007660000000713007024407020015360 0ustar tomhnsnam# sliding window protocol in normal situation # features : labeling, annotation, nam-graph, and window size monitoring set ns [new Simulator] $ns color 1 red #$ns trace-all [open B3-sliding-color.tr w] #$ns namtrace-all [open B3-sliding-color.nam w] foreach i "s1 s2 r1 r2 s3 s4" { set node_($i) [$ns node] } $node_(s2) color "red" $node_(s4) color "red" $node_(r1) color "blue" $node_(r2) color "blue" $node_(r1) shape "rectangular" $node_(r2) shape "rectangular" $ns at 0.0 "$node_(s1) label Sliding-W-sender" $ns at 0.0 "$node_(s2) label CBR-sender" $ns at 0.0 "$node_(s3) label Sliding-W-receiver" $ns at 0.0 "$node_(s4) label CBR-receiver" $ns duplex-link $node_(s1) $node_(r1) 0.5Mb 50ms DropTail $ns duplex-link $node_(s2) $node_(r1) 0.5Mb 50ms DropTail $ns duplex-link $node_(r1) $node_(r2) 0.5Mb 50ms DropTail $ns duplex-link $node_(r2) $node_(s3) 0.5Mb 50ms DropTail $ns duplex-link $node_(r2) $node_(s4) 0.5Mb 50ms DropTail $ns queue-limit $node_(r1) $node_(r2) 100 $ns queue-limit $node_(r2) $node_(r1) 100 $ns duplex-link-op $node_(s1) $node_(r1) orient right-down $ns duplex-link-op $node_(s2) $node_(r1) orient right-up $ns duplex-link-op $node_(r1) $node_(r2) orient right $ns duplex-link-op $node_(r2) $node_(s3) orient right-up $ns duplex-link-op $node_(r2) $node_(s4) orient right-down $ns duplex-link-op $node_(r1) $node_(r2) queuePos 0.5 $ns duplex-link-op $node_(r2) $node_(r1) queuePos 0.5 Agent/TCP set nam_tracevar_ true # setting sliding window size to 4 Agent/TCP set maxcwnd_ 4 ### sliding-window protocol between s1 and s3 (Black) #set sliding [new Agent/TCP/SlidingWindow] set sliding [new Agent/TCP] $sliding set fid_ 0 $ns attach-agent $node_(s1) $sliding #set sink [new Agent/TCPSink/SlidingWindowSink] set sink [new Agent/TCPSink] $ns attach-agent $node_(s3) $sink $ns connect $sliding $sink set ftp [new Application/FTP] $ftp attach-agent $sliding $ns add-agent-trace $sliding tcp $ns monitor-agent-trace $sliding $sliding tracevar cwnd_ ### CBR traffic between s2 and s4 (Red) set cbr [$ns create-connection CBR $node_(s2) Null $node_(s4) 1] $cbr set packetSize_ 500 $cbr set interval_ 0.05 $cbr set class_ 1 proc finish {} { global ns $ns flush-trace # puts "filtering..." # exec tclsh ../bin/namfilter.tcl B3-sliding-color.nam puts "running nam..." exec nam B3-sliding-color.nam & exit 0 } ### set operations $ns at 0.1 "$ftp start" $ns at 1.7 "$ftp stop" $ns at 0.1 "$cbr start" $ns at 1.7 "$cbr stop" $ns at 2.0 "finish" ### add annotations $ns at 0.0 "$ns trace-annotate \"Normal operation of with window size, 4\"" $ns at 0.1 "$ns trace-annotate \"FTP starts at 0.1\"" $ns at 0.1 "$ns trace-annotate \"CBR starts at 0.1\"" $ns at 0.11 "$ns trace-annotate \"Send Packet_0,1,2,3 : window size, 4\"" $ns at 0.32 "$ns trace-annotate \"Ack_0,1,2,3\"" $ns at 0.46 "$ns trace-annotate \"Send Packet_4,5,6,7 : window size, 4\"" $ns at 0.66 "$ns trace-annotate \"Ack_4,5,6,7\"" $ns at 0.81 "$ns trace-annotate \"Send Packet_8,9,10,11 : window size, 4\"" $ns at 1.00 "$ns trace-annotate \"Ack_8,9,10,11\"" $ns at 1.16 "$ns trace-annotate \"Send Packet_12,13,14,15 : window size, 4\"" $ns at 1.35 "$ns trace-annotate \"Ack_12,13,14,15\"" $ns at 1.50 "$ns trace-annotate \"Send Packet_16,17,18,19 : window size, 4\"" $ns at 1.71 "$ns trace-annotate \"Ack_16,17,18,19\"" $ns at 1.8 "$ns trace-annotate \"FTP stops at 1.7\"" $ns at 1.8 "$ns trace-annotate \"CBR stops at 1.7\"" $ns run nam-1.15/edu/B3-sliding-color.tr0000664000076400007660000007142506756702575015263 0ustar tomhnsnamv 0 eval {set sim_annotation {Normal operation of with window size, 4}} + 0.1 0 2 tcp 1000 ------- 0 0.0 4.0 0 0 - 0.1 0 2 tcp 1000 ------- 0 0.0 4.0 0 0 + 0.1 0 2 tcp 1000 ------- 0 0.0 4.0 1 1 + 0.1 0 2 tcp 1000 ------- 0 0.0 4.0 2 2 + 0.1 0 2 tcp 1000 ------- 0 0.0 4.0 3 3 + 0.1 1 2 cbr 500 ------- 1 1.0 5.0 0 4 - 0.1 1 2 cbr 500 ------- 1 1.0 5.0 0 4 v 0.10000000000000001 eval {set sim_annotation {FTP starts at 0.1}} v 0.10000000000000001 eval {set sim_annotation {CBR starts at 0.1}} v 0.11 eval {set sim_annotation {Send Packet_0,1,2,3 : window size, 4}} - 0.116 0 2 tcp 1000 ------- 0 0.0 4.0 1 1 - 0.132 0 2 tcp 1000 ------- 0 0.0 4.0 2 2 - 0.148 0 2 tcp 1000 ------- 0 0.0 4.0 3 3 + 0.15 1 2 cbr 500 ------- 1 1.0 5.0 1 5 - 0.15 1 2 cbr 500 ------- 1 1.0 5.0 1 5 r 0.158 1 2 cbr 500 ------- 1 1.0 5.0 0 4 + 0.158 2 3 cbr 500 ------- 1 1.0 5.0 0 4 - 0.158 2 3 cbr 500 ------- 1 1.0 5.0 0 4 r 0.166 0 2 tcp 1000 ------- 0 0.0 4.0 0 0 + 0.166 2 3 tcp 1000 ------- 0 0.0 4.0 0 0 - 0.166 2 3 tcp 1000 ------- 0 0.0 4.0 0 0 r 0.182 0 2 tcp 1000 ------- 0 0.0 4.0 1 1 + 0.182 2 3 tcp 1000 ------- 0 0.0 4.0 1 1 - 0.182 2 3 tcp 1000 ------- 0 0.0 4.0 1 1 r 0.198 0 2 tcp 1000 ------- 0 0.0 4.0 2 2 + 0.198 2 3 tcp 1000 ------- 0 0.0 4.0 2 2 - 0.198 2 3 tcp 1000 ------- 0 0.0 4.0 2 2 + 0.2 1 2 cbr 500 ------- 1 1.0 5.0 2 6 - 0.2 1 2 cbr 500 ------- 1 1.0 5.0 2 6 r 0.208 1 2 cbr 500 ------- 1 1.0 5.0 1 5 + 0.208 2 3 cbr 500 ------- 1 1.0 5.0 1 5 r 0.214 0 2 tcp 1000 ------- 0 0.0 4.0 3 3 + 0.214 2 3 tcp 1000 ------- 0 0.0 4.0 3 3 - 0.214 2 3 cbr 500 ------- 1 1.0 5.0 1 5 r 0.216 2 3 cbr 500 ------- 1 1.0 5.0 0 4 + 0.216 3 5 cbr 500 ------- 1 1.0 5.0 0 4 - 0.216 3 5 cbr 500 ------- 1 1.0 5.0 0 4 - 0.222 2 3 tcp 1000 ------- 0 0.0 4.0 3 3 r 0.232 2 3 tcp 1000 ------- 0 0.0 4.0 0 0 + 0.232 3 4 tcp 1000 ------- 0 0.0 4.0 0 0 - 0.232 3 4 tcp 1000 ------- 0 0.0 4.0 0 0 r 0.248 2 3 tcp 1000 ------- 0 0.0 4.0 1 1 + 0.248 3 4 tcp 1000 ------- 0 0.0 4.0 1 1 - 0.248 3 4 tcp 1000 ------- 0 0.0 4.0 1 1 + 0.25 1 2 cbr 500 ------- 1 1.0 5.0 3 7 - 0.25 1 2 cbr 500 ------- 1 1.0 5.0 3 7 r 0.258 1 2 cbr 500 ------- 1 1.0 5.0 2 6 + 0.258 2 3 cbr 500 ------- 1 1.0 5.0 2 6 - 0.258 2 3 cbr 500 ------- 1 1.0 5.0 2 6 r 0.264 2 3 tcp 1000 ------- 0 0.0 4.0 2 2 + 0.264 3 4 tcp 1000 ------- 0 0.0 4.0 2 2 - 0.264 3 4 tcp 1000 ------- 0 0.0 4.0 2 2 r 0.272 2 3 cbr 500 ------- 1 1.0 5.0 1 5 + 0.272 3 5 cbr 500 ------- 1 1.0 5.0 1 5 - 0.272 3 5 cbr 500 ------- 1 1.0 5.0 1 5 r 0.274 3 5 cbr 500 ------- 1 1.0 5.0 0 4 r 0.288 2 3 tcp 1000 ------- 0 0.0 4.0 3 3 + 0.288 3 4 tcp 1000 ------- 0 0.0 4.0 3 3 - 0.288 3 4 tcp 1000 ------- 0 0.0 4.0 3 3 r 0.298 3 4 tcp 1000 ------- 0 0.0 4.0 0 0 + 0.298 4 3 ack 40 ------- 0 4.0 0.0 0 8 - 0.298 4 3 ack 40 ------- 0 4.0 0.0 0 8 + 0.3 1 2 cbr 500 ------- 1 1.0 5.0 4 9 - 0.3 1 2 cbr 500 ------- 1 1.0 5.0 4 9 r 0.308 1 2 cbr 500 ------- 1 1.0 5.0 3 7 + 0.308 2 3 cbr 500 ------- 1 1.0 5.0 3 7 - 0.308 2 3 cbr 500 ------- 1 1.0 5.0 3 7 r 0.314 3 4 tcp 1000 ------- 0 0.0 4.0 1 1 + 0.314 4 3 ack 40 ------- 0 4.0 0.0 1 10 - 0.314 4 3 ack 40 ------- 0 4.0 0.0 1 10 r 0.316 2 3 cbr 500 ------- 1 1.0 5.0 2 6 + 0.316 3 5 cbr 500 ------- 1 1.0 5.0 2 6 - 0.316 3 5 cbr 500 ------- 1 1.0 5.0 2 6 v 0.32000000000000001 eval {set sim_annotation {Ack_0,1,2,3}} r 0.33 3 4 tcp 1000 ------- 0 0.0 4.0 2 2 + 0.33 4 3 ack 40 ------- 0 4.0 0.0 2 11 - 0.33 4 3 ack 40 ------- 0 4.0 0.0 2 11 r 0.33 3 5 cbr 500 ------- 1 1.0 5.0 1 5 r 0.34864 4 3 ack 40 ------- 0 4.0 0.0 0 8 + 0.34864 3 2 ack 40 ------- 0 4.0 0.0 0 8 - 0.34864 3 2 ack 40 ------- 0 4.0 0.0 0 8 + 0.35 1 2 cbr 500 ------- 1 1.0 5.0 5 12 - 0.35 1 2 cbr 500 ------- 1 1.0 5.0 5 12 r 0.354 3 4 tcp 1000 ------- 0 0.0 4.0 3 3 + 0.354 4 3 ack 40 ------- 0 4.0 0.0 3 13 - 0.354 4 3 ack 40 ------- 0 4.0 0.0 3 13 r 0.358 1 2 cbr 500 ------- 1 1.0 5.0 4 9 + 0.358 2 3 cbr 500 ------- 1 1.0 5.0 4 9 - 0.358 2 3 cbr 500 ------- 1 1.0 5.0 4 9 r 0.36464 4 3 ack 40 ------- 0 4.0 0.0 1 10 + 0.36464 3 2 ack 40 ------- 0 4.0 0.0 1 10 - 0.36464 3 2 ack 40 ------- 0 4.0 0.0 1 10 r 0.366 2 3 cbr 500 ------- 1 1.0 5.0 3 7 + 0.366 3 5 cbr 500 ------- 1 1.0 5.0 3 7 - 0.366 3 5 cbr 500 ------- 1 1.0 5.0 3 7 r 0.374 3 5 cbr 500 ------- 1 1.0 5.0 2 6 r 0.38064 4 3 ack 40 ------- 0 4.0 0.0 2 11 + 0.38064 3 2 ack 40 ------- 0 4.0 0.0 2 11 - 0.38064 3 2 ack 40 ------- 0 4.0 0.0 2 11 r 0.39928 3 2 ack 40 ------- 0 4.0 0.0 0 8 + 0.39928 2 0 ack 40 ------- 0 4.0 0.0 0 8 - 0.39928 2 0 ack 40 ------- 0 4.0 0.0 0 8 + 0.4 1 2 cbr 500 ------- 1 1.0 5.0 6 14 - 0.4 1 2 cbr 500 ------- 1 1.0 5.0 6 14 r 0.40464 4 3 ack 40 ------- 0 4.0 0.0 3 13 + 0.40464 3 2 ack 40 ------- 0 4.0 0.0 3 13 - 0.40464 3 2 ack 40 ------- 0 4.0 0.0 3 13 r 0.408 1 2 cbr 500 ------- 1 1.0 5.0 5 12 + 0.408 2 3 cbr 500 ------- 1 1.0 5.0 5 12 - 0.408 2 3 cbr 500 ------- 1 1.0 5.0 5 12 r 0.41528 3 2 ack 40 ------- 0 4.0 0.0 1 10 + 0.41528 2 0 ack 40 ------- 0 4.0 0.0 1 10 - 0.41528 2 0 ack 40 ------- 0 4.0 0.0 1 10 r 0.416 2 3 cbr 500 ------- 1 1.0 5.0 4 9 + 0.416 3 5 cbr 500 ------- 1 1.0 5.0 4 9 - 0.416 3 5 cbr 500 ------- 1 1.0 5.0 4 9 r 0.424 3 5 cbr 500 ------- 1 1.0 5.0 3 7 r 0.43128 3 2 ack 40 ------- 0 4.0 0.0 2 11 + 0.43128 2 0 ack 40 ------- 0 4.0 0.0 2 11 - 0.43128 2 0 ack 40 ------- 0 4.0 0.0 2 11 r 0.44992 2 0 ack 40 ------- 0 4.0 0.0 0 8 + 0.44992 0 2 tcp 1000 ------- 0 0.0 4.0 4 15 - 0.44992 0 2 tcp 1000 ------- 0 0.0 4.0 4 15 + 0.45 1 2 cbr 500 ------- 1 1.0 5.0 7 16 - 0.45 1 2 cbr 500 ------- 1 1.0 5.0 7 16 r 0.45528 3 2 ack 40 ------- 0 4.0 0.0 3 13 + 0.45528 2 0 ack 40 ------- 0 4.0 0.0 3 13 - 0.45528 2 0 ack 40 ------- 0 4.0 0.0 3 13 r 0.458 1 2 cbr 500 ------- 1 1.0 5.0 6 14 + 0.458 2 3 cbr 500 ------- 1 1.0 5.0 6 14 - 0.458 2 3 cbr 500 ------- 1 1.0 5.0 6 14 v 0.46000000000000002 eval {set sim_annotation {Send Packet_4,5,6,7 : window size, 4}} r 0.46592 2 0 ack 40 ------- 0 4.0 0.0 1 10 + 0.46592 0 2 tcp 1000 ------- 0 0.0 4.0 5 17 - 0.46592 0 2 tcp 1000 ------- 0 0.0 4.0 5 17 r 0.466 2 3 cbr 500 ------- 1 1.0 5.0 5 12 + 0.466 3 5 cbr 500 ------- 1 1.0 5.0 5 12 - 0.466 3 5 cbr 500 ------- 1 1.0 5.0 5 12 r 0.474 3 5 cbr 500 ------- 1 1.0 5.0 4 9 r 0.48192 2 0 ack 40 ------- 0 4.0 0.0 2 11 + 0.48192 0 2 tcp 1000 ------- 0 0.0 4.0 6 18 - 0.48192 0 2 tcp 1000 ------- 0 0.0 4.0 6 18 + 0.5 1 2 cbr 500 ------- 1 1.0 5.0 8 19 - 0.5 1 2 cbr 500 ------- 1 1.0 5.0 8 19 r 0.50592 2 0 ack 40 ------- 0 4.0 0.0 3 13 + 0.50592 0 2 tcp 1000 ------- 0 0.0 4.0 7 20 - 0.50592 0 2 tcp 1000 ------- 0 0.0 4.0 7 20 r 0.508 1 2 cbr 500 ------- 1 1.0 5.0 7 16 + 0.508 2 3 cbr 500 ------- 1 1.0 5.0 7 16 - 0.508 2 3 cbr 500 ------- 1 1.0 5.0 7 16 r 0.51592 0 2 tcp 1000 ------- 0 0.0 4.0 4 15 + 0.51592 2 3 tcp 1000 ------- 0 0.0 4.0 4 15 r 0.516 2 3 cbr 500 ------- 1 1.0 5.0 6 14 + 0.516 3 5 cbr 500 ------- 1 1.0 5.0 6 14 - 0.516 3 5 cbr 500 ------- 1 1.0 5.0 6 14 - 0.516 2 3 tcp 1000 ------- 0 0.0 4.0 4 15 r 0.524 3 5 cbr 500 ------- 1 1.0 5.0 5 12 r 0.53192 0 2 tcp 1000 ------- 0 0.0 4.0 5 17 + 0.53192 2 3 tcp 1000 ------- 0 0.0 4.0 5 17 - 0.532 2 3 tcp 1000 ------- 0 0.0 4.0 5 17 r 0.54792 0 2 tcp 1000 ------- 0 0.0 4.0 6 18 + 0.54792 2 3 tcp 1000 ------- 0 0.0 4.0 6 18 - 0.548 2 3 tcp 1000 ------- 0 0.0 4.0 6 18 + 0.55 1 2 cbr 500 ------- 1 1.0 5.0 9 21 - 0.55 1 2 cbr 500 ------- 1 1.0 5.0 9 21 r 0.558 1 2 cbr 500 ------- 1 1.0 5.0 8 19 + 0.558 2 3 cbr 500 ------- 1 1.0 5.0 8 19 - 0.564 2 3 cbr 500 ------- 1 1.0 5.0 8 19 r 0.566 2 3 cbr 500 ------- 1 1.0 5.0 7 16 + 0.566 3 5 cbr 500 ------- 1 1.0 5.0 7 16 - 0.566 3 5 cbr 500 ------- 1 1.0 5.0 7 16 r 0.57192 0 2 tcp 1000 ------- 0 0.0 4.0 7 20 + 0.57192 2 3 tcp 1000 ------- 0 0.0 4.0 7 20 - 0.572 2 3 tcp 1000 ------- 0 0.0 4.0 7 20 r 0.574 3 5 cbr 500 ------- 1 1.0 5.0 6 14 r 0.582 2 3 tcp 1000 ------- 0 0.0 4.0 4 15 + 0.582 3 4 tcp 1000 ------- 0 0.0 4.0 4 15 - 0.582 3 4 tcp 1000 ------- 0 0.0 4.0 4 15 r 0.598 2 3 tcp 1000 ------- 0 0.0 4.0 5 17 + 0.598 3 4 tcp 1000 ------- 0 0.0 4.0 5 17 - 0.598 3 4 tcp 1000 ------- 0 0.0 4.0 5 17 + 0.6 1 2 cbr 500 ------- 1 1.0 5.0 10 22 - 0.6 1 2 cbr 500 ------- 1 1.0 5.0 10 22 r 0.608 1 2 cbr 500 ------- 1 1.0 5.0 9 21 + 0.608 2 3 cbr 500 ------- 1 1.0 5.0 9 21 - 0.608 2 3 cbr 500 ------- 1 1.0 5.0 9 21 r 0.614 2 3 tcp 1000 ------- 0 0.0 4.0 6 18 + 0.614 3 4 tcp 1000 ------- 0 0.0 4.0 6 18 - 0.614 3 4 tcp 1000 ------- 0 0.0 4.0 6 18 r 0.622 2 3 cbr 500 ------- 1 1.0 5.0 8 19 + 0.622 3 5 cbr 500 ------- 1 1.0 5.0 8 19 - 0.622 3 5 cbr 500 ------- 1 1.0 5.0 8 19 r 0.624 3 5 cbr 500 ------- 1 1.0 5.0 7 16 r 0.638 2 3 tcp 1000 ------- 0 0.0 4.0 7 20 + 0.638 3 4 tcp 1000 ------- 0 0.0 4.0 7 20 - 0.638 3 4 tcp 1000 ------- 0 0.0 4.0 7 20 r 0.648 3 4 tcp 1000 ------- 0 0.0 4.0 4 15 + 0.648 4 3 ack 40 ------- 0 4.0 0.0 4 23 - 0.648 4 3 ack 40 ------- 0 4.0 0.0 4 23 + 0.65 1 2 cbr 500 ------- 1 1.0 5.0 11 24 - 0.65 1 2 cbr 500 ------- 1 1.0 5.0 11 24 r 0.658 1 2 cbr 500 ------- 1 1.0 5.0 10 22 + 0.658 2 3 cbr 500 ------- 1 1.0 5.0 10 22 - 0.658 2 3 cbr 500 ------- 1 1.0 5.0 10 22 v 0.66000000000000003 eval {set sim_annotation {Ack_4,5,6,7}} r 0.664 3 4 tcp 1000 ------- 0 0.0 4.0 5 17 + 0.664 4 3 ack 40 ------- 0 4.0 0.0 5 25 - 0.664 4 3 ack 40 ------- 0 4.0 0.0 5 25 r 0.666 2 3 cbr 500 ------- 1 1.0 5.0 9 21 + 0.666 3 5 cbr 500 ------- 1 1.0 5.0 9 21 - 0.666 3 5 cbr 500 ------- 1 1.0 5.0 9 21 r 0.68 3 4 tcp 1000 ------- 0 0.0 4.0 6 18 + 0.68 4 3 ack 40 ------- 0 4.0 0.0 6 26 - 0.68 4 3 ack 40 ------- 0 4.0 0.0 6 26 r 0.68 3 5 cbr 500 ------- 1 1.0 5.0 8 19 r 0.69864 4 3 ack 40 ------- 0 4.0 0.0 4 23 + 0.69864 3 2 ack 40 ------- 0 4.0 0.0 4 23 - 0.69864 3 2 ack 40 ------- 0 4.0 0.0 4 23 + 0.7 1 2 cbr 500 ------- 1 1.0 5.0 12 27 - 0.7 1 2 cbr 500 ------- 1 1.0 5.0 12 27 r 0.704 3 4 tcp 1000 ------- 0 0.0 4.0 7 20 + 0.704 4 3 ack 40 ------- 0 4.0 0.0 7 28 - 0.704 4 3 ack 40 ------- 0 4.0 0.0 7 28 r 0.708 1 2 cbr 500 ------- 1 1.0 5.0 11 24 + 0.708 2 3 cbr 500 ------- 1 1.0 5.0 11 24 - 0.708 2 3 cbr 500 ------- 1 1.0 5.0 11 24 r 0.71464 4 3 ack 40 ------- 0 4.0 0.0 5 25 + 0.71464 3 2 ack 40 ------- 0 4.0 0.0 5 25 - 0.71464 3 2 ack 40 ------- 0 4.0 0.0 5 25 r 0.716 2 3 cbr 500 ------- 1 1.0 5.0 10 22 + 0.716 3 5 cbr 500 ------- 1 1.0 5.0 10 22 - 0.716 3 5 cbr 500 ------- 1 1.0 5.0 10 22 r 0.724 3 5 cbr 500 ------- 1 1.0 5.0 9 21 r 0.73064 4 3 ack 40 ------- 0 4.0 0.0 6 26 + 0.73064 3 2 ack 40 ------- 0 4.0 0.0 6 26 - 0.73064 3 2 ack 40 ------- 0 4.0 0.0 6 26 r 0.74928 3 2 ack 40 ------- 0 4.0 0.0 4 23 + 0.74928 2 0 ack 40 ------- 0 4.0 0.0 4 23 - 0.74928 2 0 ack 40 ------- 0 4.0 0.0 4 23 + 0.75 1 2 cbr 500 ------- 1 1.0 5.0 13 29 - 0.75 1 2 cbr 500 ------- 1 1.0 5.0 13 29 r 0.75464 4 3 ack 40 ------- 0 4.0 0.0 7 28 + 0.75464 3 2 ack 40 ------- 0 4.0 0.0 7 28 - 0.75464 3 2 ack 40 ------- 0 4.0 0.0 7 28 r 0.758 1 2 cbr 500 ------- 1 1.0 5.0 12 27 + 0.758 2 3 cbr 500 ------- 1 1.0 5.0 12 27 - 0.758 2 3 cbr 500 ------- 1 1.0 5.0 12 27 r 0.76528 3 2 ack 40 ------- 0 4.0 0.0 5 25 + 0.76528 2 0 ack 40 ------- 0 4.0 0.0 5 25 - 0.76528 2 0 ack 40 ------- 0 4.0 0.0 5 25 r 0.766 2 3 cbr 500 ------- 1 1.0 5.0 11 24 + 0.766 3 5 cbr 500 ------- 1 1.0 5.0 11 24 - 0.766 3 5 cbr 500 ------- 1 1.0 5.0 11 24 r 0.774 3 5 cbr 500 ------- 1 1.0 5.0 10 22 r 0.78128 3 2 ack 40 ------- 0 4.0 0.0 6 26 + 0.78128 2 0 ack 40 ------- 0 4.0 0.0 6 26 - 0.78128 2 0 ack 40 ------- 0 4.0 0.0 6 26 r 0.79992 2 0 ack 40 ------- 0 4.0 0.0 4 23 + 0.79992 0 2 tcp 1000 ------- 0 0.0 4.0 8 30 - 0.79992 0 2 tcp 1000 ------- 0 0.0 4.0 8 30 + 0.8 1 2 cbr 500 ------- 1 1.0 5.0 14 31 - 0.8 1 2 cbr 500 ------- 1 1.0 5.0 14 31 r 0.80528 3 2 ack 40 ------- 0 4.0 0.0 7 28 + 0.80528 2 0 ack 40 ------- 0 4.0 0.0 7 28 - 0.80528 2 0 ack 40 ------- 0 4.0 0.0 7 28 r 0.808 1 2 cbr 500 ------- 1 1.0 5.0 13 29 + 0.808 2 3 cbr 500 ------- 1 1.0 5.0 13 29 - 0.808 2 3 cbr 500 ------- 1 1.0 5.0 13 29 v 0.81000000000000005 eval {set sim_annotation {Send Packet_8,9,10,11 : window size, 4}} r 0.81592 2 0 ack 40 ------- 0 4.0 0.0 5 25 + 0.81592 0 2 tcp 1000 ------- 0 0.0 4.0 9 32 - 0.81592 0 2 tcp 1000 ------- 0 0.0 4.0 9 32 r 0.816 2 3 cbr 500 ------- 1 1.0 5.0 12 27 + 0.816 3 5 cbr 500 ------- 1 1.0 5.0 12 27 - 0.816 3 5 cbr 500 ------- 1 1.0 5.0 12 27 r 0.824 3 5 cbr 500 ------- 1 1.0 5.0 11 24 r 0.83192 2 0 ack 40 ------- 0 4.0 0.0 6 26 + 0.83192 0 2 tcp 1000 ------- 0 0.0 4.0 10 33 - 0.83192 0 2 tcp 1000 ------- 0 0.0 4.0 10 33 + 0.85 1 2 cbr 500 ------- 1 1.0 5.0 15 34 - 0.85 1 2 cbr 500 ------- 1 1.0 5.0 15 34 r 0.85592 2 0 ack 40 ------- 0 4.0 0.0 7 28 + 0.85592 0 2 tcp 1000 ------- 0 0.0 4.0 11 35 - 0.85592 0 2 tcp 1000 ------- 0 0.0 4.0 11 35 r 0.858 1 2 cbr 500 ------- 1 1.0 5.0 14 31 + 0.858 2 3 cbr 500 ------- 1 1.0 5.0 14 31 - 0.858 2 3 cbr 500 ------- 1 1.0 5.0 14 31 r 0.86592 0 2 tcp 1000 ------- 0 0.0 4.0 8 30 + 0.86592 2 3 tcp 1000 ------- 0 0.0 4.0 8 30 r 0.866 2 3 cbr 500 ------- 1 1.0 5.0 13 29 + 0.866 3 5 cbr 500 ------- 1 1.0 5.0 13 29 - 0.866 3 5 cbr 500 ------- 1 1.0 5.0 13 29 - 0.866 2 3 tcp 1000 ------- 0 0.0 4.0 8 30 r 0.874 3 5 cbr 500 ------- 1 1.0 5.0 12 27 r 0.88192 0 2 tcp 1000 ------- 0 0.0 4.0 9 32 + 0.88192 2 3 tcp 1000 ------- 0 0.0 4.0 9 32 - 0.882 2 3 tcp 1000 ------- 0 0.0 4.0 9 32 r 0.89792 0 2 tcp 1000 ------- 0 0.0 4.0 10 33 + 0.89792 2 3 tcp 1000 ------- 0 0.0 4.0 10 33 - 0.898 2 3 tcp 1000 ------- 0 0.0 4.0 10 33 + 0.9 1 2 cbr 500 ------- 1 1.0 5.0 16 36 - 0.9 1 2 cbr 500 ------- 1 1.0 5.0 16 36 r 0.908 1 2 cbr 500 ------- 1 1.0 5.0 15 34 + 0.908 2 3 cbr 500 ------- 1 1.0 5.0 15 34 - 0.914 2 3 cbr 500 ------- 1 1.0 5.0 15 34 r 0.916 2 3 cbr 500 ------- 1 1.0 5.0 14 31 + 0.916 3 5 cbr 500 ------- 1 1.0 5.0 14 31 - 0.916 3 5 cbr 500 ------- 1 1.0 5.0 14 31 r 0.92192 0 2 tcp 1000 ------- 0 0.0 4.0 11 35 + 0.92192 2 3 tcp 1000 ------- 0 0.0 4.0 11 35 - 0.922 2 3 tcp 1000 ------- 0 0.0 4.0 11 35 r 0.924 3 5 cbr 500 ------- 1 1.0 5.0 13 29 r 0.932 2 3 tcp 1000 ------- 0 0.0 4.0 8 30 + 0.932 3 4 tcp 1000 ------- 0 0.0 4.0 8 30 - 0.932 3 4 tcp 1000 ------- 0 0.0 4.0 8 30 r 0.948 2 3 tcp 1000 ------- 0 0.0 4.0 9 32 + 0.948 3 4 tcp 1000 ------- 0 0.0 4.0 9 32 - 0.948 3 4 tcp 1000 ------- 0 0.0 4.0 9 32 + 0.95 1 2 cbr 500 ------- 1 1.0 5.0 17 37 - 0.95 1 2 cbr 500 ------- 1 1.0 5.0 17 37 r 0.958 1 2 cbr 500 ------- 1 1.0 5.0 16 36 + 0.958 2 3 cbr 500 ------- 1 1.0 5.0 16 36 - 0.958 2 3 cbr 500 ------- 1 1.0 5.0 16 36 r 0.964 2 3 tcp 1000 ------- 0 0.0 4.0 10 33 + 0.964 3 4 tcp 1000 ------- 0 0.0 4.0 10 33 - 0.964 3 4 tcp 1000 ------- 0 0.0 4.0 10 33 r 0.972 2 3 cbr 500 ------- 1 1.0 5.0 15 34 + 0.972 3 5 cbr 500 ------- 1 1.0 5.0 15 34 - 0.972 3 5 cbr 500 ------- 1 1.0 5.0 15 34 r 0.974 3 5 cbr 500 ------- 1 1.0 5.0 14 31 r 0.988 2 3 tcp 1000 ------- 0 0.0 4.0 11 35 + 0.988 3 4 tcp 1000 ------- 0 0.0 4.0 11 35 - 0.988 3 4 tcp 1000 ------- 0 0.0 4.0 11 35 r 0.998 3 4 tcp 1000 ------- 0 0.0 4.0 8 30 + 0.998 4 3 ack 40 ------- 0 4.0 0.0 8 38 - 0.998 4 3 ack 40 ------- 0 4.0 0.0 8 38 v 1 eval {set sim_annotation {Ack_8,9,10,11}} + 1 1 2 cbr 500 ------- 1 1.0 5.0 18 39 - 1 1 2 cbr 500 ------- 1 1.0 5.0 18 39 r 1.008 1 2 cbr 500 ------- 1 1.0 5.0 17 37 + 1.008 2 3 cbr 500 ------- 1 1.0 5.0 17 37 - 1.008 2 3 cbr 500 ------- 1 1.0 5.0 17 37 r 1.014 3 4 tcp 1000 ------- 0 0.0 4.0 9 32 + 1.014 4 3 ack 40 ------- 0 4.0 0.0 9 40 - 1.014 4 3 ack 40 ------- 0 4.0 0.0 9 40 r 1.016 2 3 cbr 500 ------- 1 1.0 5.0 16 36 + 1.016 3 5 cbr 500 ------- 1 1.0 5.0 16 36 - 1.016 3 5 cbr 500 ------- 1 1.0 5.0 16 36 r 1.03 3 4 tcp 1000 ------- 0 0.0 4.0 10 33 + 1.03 4 3 ack 40 ------- 0 4.0 0.0 10 41 - 1.03 4 3 ack 40 ------- 0 4.0 0.0 10 41 r 1.03 3 5 cbr 500 ------- 1 1.0 5.0 15 34 r 1.04864 4 3 ack 40 ------- 0 4.0 0.0 8 38 + 1.04864 3 2 ack 40 ------- 0 4.0 0.0 8 38 - 1.04864 3 2 ack 40 ------- 0 4.0 0.0 8 38 + 1.05 1 2 cbr 500 ------- 1 1.0 5.0 19 42 - 1.05 1 2 cbr 500 ------- 1 1.0 5.0 19 42 r 1.054 3 4 tcp 1000 ------- 0 0.0 4.0 11 35 + 1.054 4 3 ack 40 ------- 0 4.0 0.0 11 43 - 1.054 4 3 ack 40 ------- 0 4.0 0.0 11 43 r 1.058 1 2 cbr 500 ------- 1 1.0 5.0 18 39 + 1.058 2 3 cbr 500 ------- 1 1.0 5.0 18 39 - 1.058 2 3 cbr 500 ------- 1 1.0 5.0 18 39 r 1.06464 4 3 ack 40 ------- 0 4.0 0.0 9 40 + 1.06464 3 2 ack 40 ------- 0 4.0 0.0 9 40 - 1.06464 3 2 ack 40 ------- 0 4.0 0.0 9 40 r 1.066 2 3 cbr 500 ------- 1 1.0 5.0 17 37 + 1.066 3 5 cbr 500 ------- 1 1.0 5.0 17 37 - 1.066 3 5 cbr 500 ------- 1 1.0 5.0 17 37 r 1.074 3 5 cbr 500 ------- 1 1.0 5.0 16 36 r 1.08064 4 3 ack 40 ------- 0 4.0 0.0 10 41 + 1.08064 3 2 ack 40 ------- 0 4.0 0.0 10 41 - 1.08064 3 2 ack 40 ------- 0 4.0 0.0 10 41 r 1.09928 3 2 ack 40 ------- 0 4.0 0.0 8 38 + 1.09928 2 0 ack 40 ------- 0 4.0 0.0 8 38 - 1.09928 2 0 ack 40 ------- 0 4.0 0.0 8 38 + 1.1 1 2 cbr 500 ------- 1 1.0 5.0 20 44 - 1.1 1 2 cbr 500 ------- 1 1.0 5.0 20 44 r 1.10464 4 3 ack 40 ------- 0 4.0 0.0 11 43 + 1.10464 3 2 ack 40 ------- 0 4.0 0.0 11 43 - 1.10464 3 2 ack 40 ------- 0 4.0 0.0 11 43 r 1.108 1 2 cbr 500 ------- 1 1.0 5.0 19 42 + 1.108 2 3 cbr 500 ------- 1 1.0 5.0 19 42 - 1.108 2 3 cbr 500 ------- 1 1.0 5.0 19 42 r 1.11528 3 2 ack 40 ------- 0 4.0 0.0 9 40 + 1.11528 2 0 ack 40 ------- 0 4.0 0.0 9 40 - 1.11528 2 0 ack 40 ------- 0 4.0 0.0 9 40 r 1.116 2 3 cbr 500 ------- 1 1.0 5.0 18 39 + 1.116 3 5 cbr 500 ------- 1 1.0 5.0 18 39 - 1.116 3 5 cbr 500 ------- 1 1.0 5.0 18 39 r 1.124 3 5 cbr 500 ------- 1 1.0 5.0 17 37 r 1.13128 3 2 ack 40 ------- 0 4.0 0.0 10 41 + 1.13128 2 0 ack 40 ------- 0 4.0 0.0 10 41 - 1.13128 2 0 ack 40 ------- 0 4.0 0.0 10 41 r 1.14992 2 0 ack 40 ------- 0 4.0 0.0 8 38 + 1.14992 0 2 tcp 1000 ------- 0 0.0 4.0 12 45 - 1.14992 0 2 tcp 1000 ------- 0 0.0 4.0 12 45 + 1.15 1 2 cbr 500 ------- 1 1.0 5.0 21 46 - 1.15 1 2 cbr 500 ------- 1 1.0 5.0 21 46 r 1.15528 3 2 ack 40 ------- 0 4.0 0.0 11 43 + 1.15528 2 0 ack 40 ------- 0 4.0 0.0 11 43 - 1.15528 2 0 ack 40 ------- 0 4.0 0.0 11 43 r 1.158 1 2 cbr 500 ------- 1 1.0 5.0 20 44 + 1.158 2 3 cbr 500 ------- 1 1.0 5.0 20 44 - 1.158 2 3 cbr 500 ------- 1 1.0 5.0 20 44 v 1.1599999999999999 eval {set sim_annotation {Send Packet_12,13,14,15 : window size, 4}} r 1.16592 2 0 ack 40 ------- 0 4.0 0.0 9 40 + 1.16592 0 2 tcp 1000 ------- 0 0.0 4.0 13 47 - 1.16592 0 2 tcp 1000 ------- 0 0.0 4.0 13 47 r 1.166 2 3 cbr 500 ------- 1 1.0 5.0 19 42 + 1.166 3 5 cbr 500 ------- 1 1.0 5.0 19 42 - 1.166 3 5 cbr 500 ------- 1 1.0 5.0 19 42 r 1.174 3 5 cbr 500 ------- 1 1.0 5.0 18 39 r 1.18192 2 0 ack 40 ------- 0 4.0 0.0 10 41 + 1.18192 0 2 tcp 1000 ------- 0 0.0 4.0 14 48 - 1.18192 0 2 tcp 1000 ------- 0 0.0 4.0 14 48 + 1.2 1 2 cbr 500 ------- 1 1.0 5.0 22 49 - 1.2 1 2 cbr 500 ------- 1 1.0 5.0 22 49 r 1.20592 2 0 ack 40 ------- 0 4.0 0.0 11 43 + 1.20592 0 2 tcp 1000 ------- 0 0.0 4.0 15 50 - 1.20592 0 2 tcp 1000 ------- 0 0.0 4.0 15 50 r 1.208 1 2 cbr 500 ------- 1 1.0 5.0 21 46 + 1.208 2 3 cbr 500 ------- 1 1.0 5.0 21 46 - 1.208 2 3 cbr 500 ------- 1 1.0 5.0 21 46 r 1.21592 0 2 tcp 1000 ------- 0 0.0 4.0 12 45 + 1.21592 2 3 tcp 1000 ------- 0 0.0 4.0 12 45 r 1.216 2 3 cbr 500 ------- 1 1.0 5.0 20 44 + 1.216 3 5 cbr 500 ------- 1 1.0 5.0 20 44 - 1.216 3 5 cbr 500 ------- 1 1.0 5.0 20 44 - 1.216 2 3 tcp 1000 ------- 0 0.0 4.0 12 45 r 1.224 3 5 cbr 500 ------- 1 1.0 5.0 19 42 r 1.23192 0 2 tcp 1000 ------- 0 0.0 4.0 13 47 + 1.23192 2 3 tcp 1000 ------- 0 0.0 4.0 13 47 - 1.232 2 3 tcp 1000 ------- 0 0.0 4.0 13 47 r 1.24792 0 2 tcp 1000 ------- 0 0.0 4.0 14 48 + 1.24792 2 3 tcp 1000 ------- 0 0.0 4.0 14 48 - 1.248 2 3 tcp 1000 ------- 0 0.0 4.0 14 48 + 1.25 1 2 cbr 500 ------- 1 1.0 5.0 23 51 - 1.25 1 2 cbr 500 ------- 1 1.0 5.0 23 51 r 1.258 1 2 cbr 500 ------- 1 1.0 5.0 22 49 + 1.258 2 3 cbr 500 ------- 1 1.0 5.0 22 49 - 1.264 2 3 cbr 500 ------- 1 1.0 5.0 22 49 r 1.266 2 3 cbr 500 ------- 1 1.0 5.0 21 46 + 1.266 3 5 cbr 500 ------- 1 1.0 5.0 21 46 - 1.266 3 5 cbr 500 ------- 1 1.0 5.0 21 46 r 1.27192 0 2 tcp 1000 ------- 0 0.0 4.0 15 50 + 1.27192 2 3 tcp 1000 ------- 0 0.0 4.0 15 50 - 1.272 2 3 tcp 1000 ------- 0 0.0 4.0 15 50 r 1.274 3 5 cbr 500 ------- 1 1.0 5.0 20 44 r 1.282 2 3 tcp 1000 ------- 0 0.0 4.0 12 45 + 1.282 3 4 tcp 1000 ------- 0 0.0 4.0 12 45 - 1.282 3 4 tcp 1000 ------- 0 0.0 4.0 12 45 r 1.298 2 3 tcp 1000 ------- 0 0.0 4.0 13 47 + 1.298 3 4 tcp 1000 ------- 0 0.0 4.0 13 47 - 1.298 3 4 tcp 1000 ------- 0 0.0 4.0 13 47 + 1.3 1 2 cbr 500 ------- 1 1.0 5.0 24 52 - 1.3 1 2 cbr 500 ------- 1 1.0 5.0 24 52 r 1.308 1 2 cbr 500 ------- 1 1.0 5.0 23 51 + 1.308 2 3 cbr 500 ------- 1 1.0 5.0 23 51 - 1.308 2 3 cbr 500 ------- 1 1.0 5.0 23 51 r 1.314 2 3 tcp 1000 ------- 0 0.0 4.0 14 48 + 1.314 3 4 tcp 1000 ------- 0 0.0 4.0 14 48 - 1.314 3 4 tcp 1000 ------- 0 0.0 4.0 14 48 r 1.322 2 3 cbr 500 ------- 1 1.0 5.0 22 49 + 1.322 3 5 cbr 500 ------- 1 1.0 5.0 22 49 - 1.322 3 5 cbr 500 ------- 1 1.0 5.0 22 49 r 1.324 3 5 cbr 500 ------- 1 1.0 5.0 21 46 r 1.338 2 3 tcp 1000 ------- 0 0.0 4.0 15 50 + 1.338 3 4 tcp 1000 ------- 0 0.0 4.0 15 50 - 1.338 3 4 tcp 1000 ------- 0 0.0 4.0 15 50 r 1.348 3 4 tcp 1000 ------- 0 0.0 4.0 12 45 + 1.348 4 3 ack 40 ------- 0 4.0 0.0 12 53 - 1.348 4 3 ack 40 ------- 0 4.0 0.0 12 53 v 1.3500000000000001 eval {set sim_annotation {Ack_12,13,14,15}} + 1.35 1 2 cbr 500 ------- 1 1.0 5.0 25 54 - 1.35 1 2 cbr 500 ------- 1 1.0 5.0 25 54 r 1.358 1 2 cbr 500 ------- 1 1.0 5.0 24 52 + 1.358 2 3 cbr 500 ------- 1 1.0 5.0 24 52 - 1.358 2 3 cbr 500 ------- 1 1.0 5.0 24 52 r 1.364 3 4 tcp 1000 ------- 0 0.0 4.0 13 47 + 1.364 4 3 ack 40 ------- 0 4.0 0.0 13 55 - 1.364 4 3 ack 40 ------- 0 4.0 0.0 13 55 r 1.366 2 3 cbr 500 ------- 1 1.0 5.0 23 51 + 1.366 3 5 cbr 500 ------- 1 1.0 5.0 23 51 - 1.366 3 5 cbr 500 ------- 1 1.0 5.0 23 51 r 1.38 3 4 tcp 1000 ------- 0 0.0 4.0 14 48 + 1.38 4 3 ack 40 ------- 0 4.0 0.0 14 56 - 1.38 4 3 ack 40 ------- 0 4.0 0.0 14 56 r 1.38 3 5 cbr 500 ------- 1 1.0 5.0 22 49 r 1.39864 4 3 ack 40 ------- 0 4.0 0.0 12 53 + 1.39864 3 2 ack 40 ------- 0 4.0 0.0 12 53 - 1.39864 3 2 ack 40 ------- 0 4.0 0.0 12 53 + 1.4 1 2 cbr 500 ------- 1 1.0 5.0 26 57 - 1.4 1 2 cbr 500 ------- 1 1.0 5.0 26 57 r 1.404 3 4 tcp 1000 ------- 0 0.0 4.0 15 50 + 1.404 4 3 ack 40 ------- 0 4.0 0.0 15 58 - 1.404 4 3 ack 40 ------- 0 4.0 0.0 15 58 r 1.408 1 2 cbr 500 ------- 1 1.0 5.0 25 54 + 1.408 2 3 cbr 500 ------- 1 1.0 5.0 25 54 - 1.408 2 3 cbr 500 ------- 1 1.0 5.0 25 54 r 1.41464 4 3 ack 40 ------- 0 4.0 0.0 13 55 + 1.41464 3 2 ack 40 ------- 0 4.0 0.0 13 55 - 1.41464 3 2 ack 40 ------- 0 4.0 0.0 13 55 r 1.416 2 3 cbr 500 ------- 1 1.0 5.0 24 52 + 1.416 3 5 cbr 500 ------- 1 1.0 5.0 24 52 - 1.416 3 5 cbr 500 ------- 1 1.0 5.0 24 52 r 1.424 3 5 cbr 500 ------- 1 1.0 5.0 23 51 r 1.43064 4 3 ack 40 ------- 0 4.0 0.0 14 56 + 1.43064 3 2 ack 40 ------- 0 4.0 0.0 14 56 - 1.43064 3 2 ack 40 ------- 0 4.0 0.0 14 56 r 1.44928 3 2 ack 40 ------- 0 4.0 0.0 12 53 + 1.44928 2 0 ack 40 ------- 0 4.0 0.0 12 53 - 1.44928 2 0 ack 40 ------- 0 4.0 0.0 12 53 + 1.45 1 2 cbr 500 ------- 1 1.0 5.0 27 59 - 1.45 1 2 cbr 500 ------- 1 1.0 5.0 27 59 r 1.45464 4 3 ack 40 ------- 0 4.0 0.0 15 58 + 1.45464 3 2 ack 40 ------- 0 4.0 0.0 15 58 - 1.45464 3 2 ack 40 ------- 0 4.0 0.0 15 58 r 1.458 1 2 cbr 500 ------- 1 1.0 5.0 26 57 + 1.458 2 3 cbr 500 ------- 1 1.0 5.0 26 57 - 1.458 2 3 cbr 500 ------- 1 1.0 5.0 26 57 r 1.46528 3 2 ack 40 ------- 0 4.0 0.0 13 55 + 1.46528 2 0 ack 40 ------- 0 4.0 0.0 13 55 - 1.46528 2 0 ack 40 ------- 0 4.0 0.0 13 55 r 1.466 2 3 cbr 500 ------- 1 1.0 5.0 25 54 + 1.466 3 5 cbr 500 ------- 1 1.0 5.0 25 54 - 1.466 3 5 cbr 500 ------- 1 1.0 5.0 25 54 r 1.474 3 5 cbr 500 ------- 1 1.0 5.0 24 52 r 1.48128 3 2 ack 40 ------- 0 4.0 0.0 14 56 + 1.48128 2 0 ack 40 ------- 0 4.0 0.0 14 56 - 1.48128 2 0 ack 40 ------- 0 4.0 0.0 14 56 r 1.49992 2 0 ack 40 ------- 0 4.0 0.0 12 53 + 1.49992 0 2 tcp 1000 ------- 0 0.0 4.0 16 60 - 1.49992 0 2 tcp 1000 ------- 0 0.0 4.0 16 60 v 1.5 eval {set sim_annotation {Send Packet_16,17,18,19 : window size, 4}} + 1.5 1 2 cbr 500 ------- 1 1.0 5.0 28 61 - 1.5 1 2 cbr 500 ------- 1 1.0 5.0 28 61 r 1.50528 3 2 ack 40 ------- 0 4.0 0.0 15 58 + 1.50528 2 0 ack 40 ------- 0 4.0 0.0 15 58 - 1.50528 2 0 ack 40 ------- 0 4.0 0.0 15 58 r 1.508 1 2 cbr 500 ------- 1 1.0 5.0 27 59 + 1.508 2 3 cbr 500 ------- 1 1.0 5.0 27 59 - 1.508 2 3 cbr 500 ------- 1 1.0 5.0 27 59 r 1.51592 2 0 ack 40 ------- 0 4.0 0.0 13 55 + 1.51592 0 2 tcp 1000 ------- 0 0.0 4.0 17 62 - 1.51592 0 2 tcp 1000 ------- 0 0.0 4.0 17 62 r 1.516 2 3 cbr 500 ------- 1 1.0 5.0 26 57 + 1.516 3 5 cbr 500 ------- 1 1.0 5.0 26 57 - 1.516 3 5 cbr 500 ------- 1 1.0 5.0 26 57 r 1.524 3 5 cbr 500 ------- 1 1.0 5.0 25 54 r 1.53192 2 0 ack 40 ------- 0 4.0 0.0 14 56 + 1.53192 0 2 tcp 1000 ------- 0 0.0 4.0 18 63 - 1.53192 0 2 tcp 1000 ------- 0 0.0 4.0 18 63 + 1.55 1 2 cbr 500 ------- 1 1.0 5.0 29 64 - 1.55 1 2 cbr 500 ------- 1 1.0 5.0 29 64 r 1.55592 2 0 ack 40 ------- 0 4.0 0.0 15 58 + 1.55592 0 2 tcp 1000 ------- 0 0.0 4.0 19 65 - 1.55592 0 2 tcp 1000 ------- 0 0.0 4.0 19 65 r 1.558 1 2 cbr 500 ------- 1 1.0 5.0 28 61 + 1.558 2 3 cbr 500 ------- 1 1.0 5.0 28 61 - 1.558 2 3 cbr 500 ------- 1 1.0 5.0 28 61 r 1.56592 0 2 tcp 1000 ------- 0 0.0 4.0 16 60 + 1.56592 2 3 tcp 1000 ------- 0 0.0 4.0 16 60 r 1.566 2 3 cbr 500 ------- 1 1.0 5.0 27 59 + 1.566 3 5 cbr 500 ------- 1 1.0 5.0 27 59 - 1.566 3 5 cbr 500 ------- 1 1.0 5.0 27 59 - 1.566 2 3 tcp 1000 ------- 0 0.0 4.0 16 60 r 1.574 3 5 cbr 500 ------- 1 1.0 5.0 26 57 r 1.58192 0 2 tcp 1000 ------- 0 0.0 4.0 17 62 + 1.58192 2 3 tcp 1000 ------- 0 0.0 4.0 17 62 - 1.582 2 3 tcp 1000 ------- 0 0.0 4.0 17 62 r 1.59792 0 2 tcp 1000 ------- 0 0.0 4.0 18 63 + 1.59792 2 3 tcp 1000 ------- 0 0.0 4.0 18 63 - 1.598 2 3 tcp 1000 ------- 0 0.0 4.0 18 63 + 1.6 1 2 cbr 500 ------- 1 1.0 5.0 30 66 - 1.6 1 2 cbr 500 ------- 1 1.0 5.0 30 66 r 1.608 1 2 cbr 500 ------- 1 1.0 5.0 29 64 + 1.608 2 3 cbr 500 ------- 1 1.0 5.0 29 64 - 1.614 2 3 cbr 500 ------- 1 1.0 5.0 29 64 r 1.616 2 3 cbr 500 ------- 1 1.0 5.0 28 61 + 1.616 3 5 cbr 500 ------- 1 1.0 5.0 28 61 - 1.616 3 5 cbr 500 ------- 1 1.0 5.0 28 61 r 1.62192 0 2 tcp 1000 ------- 0 0.0 4.0 19 65 + 1.62192 2 3 tcp 1000 ------- 0 0.0 4.0 19 65 - 1.622 2 3 tcp 1000 ------- 0 0.0 4.0 19 65 r 1.624 3 5 cbr 500 ------- 1 1.0 5.0 27 59 r 1.632 2 3 tcp 1000 ------- 0 0.0 4.0 16 60 + 1.632 3 4 tcp 1000 ------- 0 0.0 4.0 16 60 - 1.632 3 4 tcp 1000 ------- 0 0.0 4.0 16 60 r 1.648 2 3 tcp 1000 ------- 0 0.0 4.0 17 62 + 1.648 3 4 tcp 1000 ------- 0 0.0 4.0 17 62 - 1.648 3 4 tcp 1000 ------- 0 0.0 4.0 17 62 + 1.65 1 2 cbr 500 ------- 1 1.0 5.0 31 67 - 1.65 1 2 cbr 500 ------- 1 1.0 5.0 31 67 r 1.658 1 2 cbr 500 ------- 1 1.0 5.0 30 66 + 1.658 2 3 cbr 500 ------- 1 1.0 5.0 30 66 - 1.658 2 3 cbr 500 ------- 1 1.0 5.0 30 66 r 1.664 2 3 tcp 1000 ------- 0 0.0 4.0 18 63 + 1.664 3 4 tcp 1000 ------- 0 0.0 4.0 18 63 - 1.664 3 4 tcp 1000 ------- 0 0.0 4.0 18 63 r 1.672 2 3 cbr 500 ------- 1 1.0 5.0 29 64 + 1.672 3 5 cbr 500 ------- 1 1.0 5.0 29 64 - 1.672 3 5 cbr 500 ------- 1 1.0 5.0 29 64 r 1.674 3 5 cbr 500 ------- 1 1.0 5.0 28 61 r 1.688 2 3 tcp 1000 ------- 0 0.0 4.0 19 65 + 1.688 3 4 tcp 1000 ------- 0 0.0 4.0 19 65 - 1.688 3 4 tcp 1000 ------- 0 0.0 4.0 19 65 r 1.698 3 4 tcp 1000 ------- 0 0.0 4.0 16 60 + 1.698 4 3 ack 40 ------- 0 4.0 0.0 16 68 - 1.698 4 3 ack 40 ------- 0 4.0 0.0 16 68 r 1.708 1 2 cbr 500 ------- 1 1.0 5.0 31 67 + 1.708 2 3 cbr 500 ------- 1 1.0 5.0 31 67 - 1.708 2 3 cbr 500 ------- 1 1.0 5.0 31 67 v 1.71 eval {set sim_annotation {Ack_16,17,18,19}} r 1.714 3 4 tcp 1000 ------- 0 0.0 4.0 17 62 + 1.714 4 3 ack 40 ------- 0 4.0 0.0 17 69 - 1.714 4 3 ack 40 ------- 0 4.0 0.0 17 69 r 1.716 2 3 cbr 500 ------- 1 1.0 5.0 30 66 + 1.716 3 5 cbr 500 ------- 1 1.0 5.0 30 66 - 1.716 3 5 cbr 500 ------- 1 1.0 5.0 30 66 r 1.73 3 4 tcp 1000 ------- 0 0.0 4.0 18 63 + 1.73 4 3 ack 40 ------- 0 4.0 0.0 18 70 - 1.73 4 3 ack 40 ------- 0 4.0 0.0 18 70 r 1.73 3 5 cbr 500 ------- 1 1.0 5.0 29 64 r 1.74864 4 3 ack 40 ------- 0 4.0 0.0 16 68 + 1.74864 3 2 ack 40 ------- 0 4.0 0.0 16 68 - 1.74864 3 2 ack 40 ------- 0 4.0 0.0 16 68 r 1.754 3 4 tcp 1000 ------- 0 0.0 4.0 19 65 + 1.754 4 3 ack 40 ------- 0 4.0 0.0 19 71 - 1.754 4 3 ack 40 ------- 0 4.0 0.0 19 71 r 1.76464 4 3 ack 40 ------- 0 4.0 0.0 17 69 + 1.76464 3 2 ack 40 ------- 0 4.0 0.0 17 69 - 1.76464 3 2 ack 40 ------- 0 4.0 0.0 17 69 r 1.766 2 3 cbr 500 ------- 1 1.0 5.0 31 67 + 1.766 3 5 cbr 500 ------- 1 1.0 5.0 31 67 - 1.766 3 5 cbr 500 ------- 1 1.0 5.0 31 67 r 1.774 3 5 cbr 500 ------- 1 1.0 5.0 30 66 r 1.78064 4 3 ack 40 ------- 0 4.0 0.0 18 70 + 1.78064 3 2 ack 40 ------- 0 4.0 0.0 18 70 - 1.78064 3 2 ack 40 ------- 0 4.0 0.0 18 70 r 1.79928 3 2 ack 40 ------- 0 4.0 0.0 16 68 + 1.79928 2 0 ack 40 ------- 0 4.0 0.0 16 68 - 1.79928 2 0 ack 40 ------- 0 4.0 0.0 16 68 v 1.8 eval {set sim_annotation {FTP stops at 1.7}} v 1.8 eval {set sim_annotation {CBR stops at 1.7}} r 1.80464 4 3 ack 40 ------- 0 4.0 0.0 19 71 + 1.80464 3 2 ack 40 ------- 0 4.0 0.0 19 71 - 1.80464 3 2 ack 40 ------- 0 4.0 0.0 19 71 r 1.81528 3 2 ack 40 ------- 0 4.0 0.0 17 69 + 1.81528 2 0 ack 40 ------- 0 4.0 0.0 17 69 - 1.81528 2 0 ack 40 ------- 0 4.0 0.0 17 69 r 1.824 3 5 cbr 500 ------- 1 1.0 5.0 31 67 r 1.83128 3 2 ack 40 ------- 0 4.0 0.0 18 70 + 1.83128 2 0 ack 40 ------- 0 4.0 0.0 18 70 - 1.83128 2 0 ack 40 ------- 0 4.0 0.0 18 70 r 1.84992 2 0 ack 40 ------- 0 4.0 0.0 16 68 r 1.85528 3 2 ack 40 ------- 0 4.0 0.0 19 71 + 1.85528 2 0 ack 40 ------- 0 4.0 0.0 19 71 - 1.85528 2 0 ack 40 ------- 0 4.0 0.0 19 71 r 1.86592 2 0 ack 40 ------- 0 4.0 0.0 17 69 r 1.88192 2 0 ack 40 ------- 0 4.0 0.0 18 70 r 1.90592 2 0 ack 40 ------- 0 4.0 0.0 19 71 nam-1.15/edu/B3-sliding-window.nam0000664000076400007660000015230406756702576015577 0ustar tomhnsnamV -t * -v 1.0a5 -a 1 -c 1 -F 1 -M 2 c -t * -i 0 -n black N -t * -S 0 -n {TCP session between node 0.0 and node 4.0} -p TCP -m {} N -t * -S 0 -h 19 N -t * -F 0 -M 0 -n tcp N -t * -F 0 -M 1 -n ack A -t * -n 1 -p 0 -o 255 -c 15 -a 1 A -t * -h 1 -m 127 -s 8 n -t * -a 4 -s 4 -S UP -v circle -c black n -t * -a 0 -s 0 -S UP -v circle -c black n -t * -a 5 -s 5 -S UP -v circle -c red n -t * -a 1 -s 1 -S UP -v circle -c red n -t * -a 2 -s 2 -S UP -v rectangular -c blue n -t * -a 3 -s 3 -S UP -v rectangular -c blue l -t * -s 0 -d 2 -S UP -r 500000 -D 0.050000000000000003 -c black -o right-down l -t * -s 1 -d 2 -S UP -r 500000 -D 0.050000000000000003 -c black -o right-up l -t * -s 2 -d 3 -S UP -r 500000 -D 0.050000000000000003 -c black -o right l -t * -s 3 -d 4 -S UP -r 500000 -D 0.050000000000000003 -c black -o right-up l -t * -s 3 -d 5 -S UP -r 500000 -D 0.050000000000000003 -c black -o right-down q -t * -s 3 -d 2 -a 0.5 q -t * -s 2 -d 3 -a 0.5 a -t 0.00000000000000000 -s 0 -d 4 -n tcp f -t 0.00000000000000000 -s 0 -d 4 -n cwnd_ -a tcp -v 4.000000 -T v f -t 0.00000000000000000 -s 0 -d 4 -n cwnd_ -a tcp -v 4.000000 -o 4.000000 -T v v -t 0.00000000000000000 monitor_agent 0 tcp n -t 0 -s 0 -S DLABEL -l Sliding-W-sender -L "" n -t 0 -s 1 -S DLABEL -l CBR-sender -L "" n -t 0 -s 4 -S DLABEL -l Sliding-W-receiver -L "" n -t 0 -s 5 -S DLABEL -l CBR-receiver -L "" v -t 0 sim_annotation 0 1 Normal operation of with window size, 4 + -t 0.1 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -f 0 -m 0 -y {0 0} - -t 0.1 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} h -t 0.1 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {-1 -1} + -t 0.1 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 1 -a 0 -S 0 -f 0 -m 0 -y {1 1} + -t 0.1 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -f 0 -m 0 -y {2 2} + -t 0.1 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -f 0 -m 0 -y {3 3} + -t 0.1 -s 1 -d 2 -p cbr -e 500 -c 1 -i 4 -a 1 - -t 0.1 -s 1 -d 2 -p cbr -e 500 -c 1 -i 4 -a 1 h -t 0.1 -s 1 -d 2 -p cbr -e 500 -c 1 -i 4 -a 1 v -t 0.10000000000000001 sim_annotation 0.10000000000000001 2 FTP starts at 0.1 v -t 0.10000000000000001 sim_annotation 0.10000000000000001 3 CBR starts at 0.1 v -t 0.11 sim_annotation 0.11 4 Send Packet_0,1,2,3 : window size, 4 - -t 0.116 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 1 -a 0 -S 0 -y {1 1} h -t 0.116 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 1 -a 0 -S 0 -y {-1 -1} - -t 0.132 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {2 2} h -t 0.132 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {-1 -1} - -t 0.148 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {3 3} h -t 0.148 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {-1 -1} + -t 0.15 -s 1 -d 2 -p cbr -e 500 -c 1 -i 5 -a 1 - -t 0.15 -s 1 -d 2 -p cbr -e 500 -c 1 -i 5 -a 1 h -t 0.15 -s 1 -d 2 -p cbr -e 500 -c 1 -i 5 -a 1 r -t 0.158 -s 1 -d 2 -p cbr -e 500 -c 1 -i 4 -a 1 + -t 0.158 -s 2 -d 3 -p cbr -e 500 -c 1 -i 4 -a 1 - -t 0.158 -s 2 -d 3 -p cbr -e 500 -c 1 -i 4 -a 1 h -t 0.158 -s 2 -d 3 -p cbr -e 500 -c 1 -i 4 -a 1 r -t 0.166 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} + -t 0.166 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} - -t 0.166 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} h -t 0.166 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {-1 -1} r -t 0.182 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 1 -a 0 -S 0 -y {1 1} + -t 0.182 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 1 -a 0 -S 0 -y {1 1} - -t 0.182 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 1 -a 0 -S 0 -y {1 1} h -t 0.182 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 1 -a 0 -S 0 -y {-1 -1} r -t 0.198 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {2 2} + -t 0.198 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {2 2} - -t 0.198 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {2 2} h -t 0.198 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {-1 -1} + -t 0.2 -s 1 -d 2 -p cbr -e 500 -c 1 -i 6 -a 1 - -t 0.2 -s 1 -d 2 -p cbr -e 500 -c 1 -i 6 -a 1 h -t 0.2 -s 1 -d 2 -p cbr -e 500 -c 1 -i 6 -a 1 r -t 0.208 -s 1 -d 2 -p cbr -e 500 -c 1 -i 5 -a 1 + -t 0.208 -s 2 -d 3 -p cbr -e 500 -c 1 -i 5 -a 1 r -t 0.214 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {3 3} + -t 0.214 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {3 3} - -t 0.214 -s 2 -d 3 -p cbr -e 500 -c 1 -i 5 -a 1 h -t 0.214 -s 2 -d 3 -p cbr -e 500 -c 1 -i 5 -a 1 r -t 0.216 -s 2 -d 3 -p cbr -e 500 -c 1 -i 4 -a 1 + -t 0.216 -s 3 -d 5 -p cbr -e 500 -c 1 -i 4 -a 1 - -t 0.216 -s 3 -d 5 -p cbr -e 500 -c 1 -i 4 -a 1 h -t 0.216 -s 3 -d 5 -p cbr -e 500 -c 1 -i 4 -a 1 - -t 0.222 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {3 3} h -t 0.222 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {-1 -1} r -t 0.232 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} + -t 0.232 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} - -t 0.232 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} h -t 0.232 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {-1 -1} r -t 0.248 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 1 -a 0 -S 0 -y {1 1} + -t 0.248 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 1 -a 0 -S 0 -y {1 1} - -t 0.248 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 1 -a 0 -S 0 -y {1 1} h -t 0.248 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 1 -a 0 -S 0 -y {-1 -1} + -t 0.25 -s 1 -d 2 -p cbr -e 500 -c 1 -i 7 -a 1 - -t 0.25 -s 1 -d 2 -p cbr -e 500 -c 1 -i 7 -a 1 h -t 0.25 -s 1 -d 2 -p cbr -e 500 -c 1 -i 7 -a 1 r -t 0.258 -s 1 -d 2 -p cbr -e 500 -c 1 -i 6 -a 1 + -t 0.258 -s 2 -d 3 -p cbr -e 500 -c 1 -i 6 -a 1 - -t 0.258 -s 2 -d 3 -p cbr -e 500 -c 1 -i 6 -a 1 h -t 0.258 -s 2 -d 3 -p cbr -e 500 -c 1 -i 6 -a 1 r -t 0.264 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {2 2} + -t 0.264 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {2 2} - -t 0.264 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {2 2} h -t 0.264 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {-1 -1} r -t 0.272 -s 2 -d 3 -p cbr -e 500 -c 1 -i 5 -a 1 + -t 0.272 -s 3 -d 5 -p cbr -e 500 -c 1 -i 5 -a 1 - -t 0.272 -s 3 -d 5 -p cbr -e 500 -c 1 -i 5 -a 1 h -t 0.272 -s 3 -d 5 -p cbr -e 500 -c 1 -i 5 -a 1 r -t 0.274 -s 3 -d 5 -p cbr -e 500 -c 1 -i 4 -a 1 r -t 0.288 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {3 3} + -t 0.288 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {3 3} - -t 0.288 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {3 3} h -t 0.288 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {-1 -1} r -t 0.298 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} + -t 0.298 -s 4 -d 3 -p ack -e 40 -c 0 -i 8 -a 0 -S 0 -y {0 0} - -t 0.298 -s 4 -d 3 -p ack -e 40 -c 0 -i 8 -a 0 -S 0 -y {0 0} h -t 0.298 -s 4 -d 3 -p ack -e 40 -c 0 -i 8 -a 0 -S 0 -y {-1 -1} + -t 0.3 -s 1 -d 2 -p cbr -e 500 -c 1 -i 9 -a 1 - -t 0.3 -s 1 -d 2 -p cbr -e 500 -c 1 -i 9 -a 1 h -t 0.3 -s 1 -d 2 -p cbr -e 500 -c 1 -i 9 -a 1 r -t 0.308 -s 1 -d 2 -p cbr -e 500 -c 1 -i 7 -a 1 + -t 0.308 -s 2 -d 3 -p cbr -e 500 -c 1 -i 7 -a 1 - -t 0.308 -s 2 -d 3 -p cbr -e 500 -c 1 -i 7 -a 1 h -t 0.308 -s 2 -d 3 -p cbr -e 500 -c 1 -i 7 -a 1 r -t 0.314 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 1 -a 0 -S 0 -y {1 1} + -t 0.314 -s 4 -d 3 -p ack -e 40 -c 0 -i 10 -a 0 -S 0 -y {1 1} - -t 0.314 -s 4 -d 3 -p ack -e 40 -c 0 -i 10 -a 0 -S 0 -y {1 1} h -t 0.314 -s 4 -d 3 -p ack -e 40 -c 0 -i 10 -a 0 -S 0 -y {-1 -1} r -t 0.316 -s 2 -d 3 -p cbr -e 500 -c 1 -i 6 -a 1 + -t 0.316 -s 3 -d 5 -p cbr -e 500 -c 1 -i 6 -a 1 - -t 0.316 -s 3 -d 5 -p cbr -e 500 -c 1 -i 6 -a 1 h -t 0.316 -s 3 -d 5 -p cbr -e 500 -c 1 -i 6 -a 1 v -t 0.32000000000000001 sim_annotation 0.32000000000000001 5 Ack_0,1,2,3 r -t 0.33 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {2 2} + -t 0.33 -s 4 -d 3 -p ack -e 40 -c 0 -i 11 -a 0 -S 0 -y {2 2} - -t 0.33 -s 4 -d 3 -p ack -e 40 -c 0 -i 11 -a 0 -S 0 -y {2 2} h -t 0.33 -s 4 -d 3 -p ack -e 40 -c 0 -i 11 -a 0 -S 0 -y {-1 -1} r -t 0.33 -s 3 -d 5 -p cbr -e 500 -c 1 -i 5 -a 1 r -t 0.34864 -s 4 -d 3 -p ack -e 40 -c 0 -i 8 -a 0 -S 0 -y {0 0} + -t 0.34864 -s 3 -d 2 -p ack -e 40 -c 0 -i 8 -a 0 -S 0 -y {0 0} - -t 0.34864 -s 3 -d 2 -p ack -e 40 -c 0 -i 8 -a 0 -S 0 -y {0 0} h -t 0.34864 -s 3 -d 2 -p ack -e 40 -c 0 -i 8 -a 0 -S 0 -y {-1 -1} + -t 0.35 -s 1 -d 2 -p cbr -e 500 -c 1 -i 12 -a 1 - -t 0.35 -s 1 -d 2 -p cbr -e 500 -c 1 -i 12 -a 1 h -t 0.35 -s 1 -d 2 -p cbr -e 500 -c 1 -i 12 -a 1 r -t 0.354 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {3 3} + -t 0.354 -s 4 -d 3 -p ack -e 40 -c 0 -i 13 -a 0 -S 0 -y {3 3} - -t 0.354 -s 4 -d 3 -p ack -e 40 -c 0 -i 13 -a 0 -S 0 -y {3 3} h -t 0.354 -s 4 -d 3 -p ack -e 40 -c 0 -i 13 -a 0 -S 0 -y {-1 -1} r -t 0.358 -s 1 -d 2 -p cbr -e 500 -c 1 -i 9 -a 1 + -t 0.358 -s 2 -d 3 -p cbr -e 500 -c 1 -i 9 -a 1 - -t 0.358 -s 2 -d 3 -p cbr -e 500 -c 1 -i 9 -a 1 h -t 0.358 -s 2 -d 3 -p cbr -e 500 -c 1 -i 9 -a 1 r -t 0.36464 -s 4 -d 3 -p ack -e 40 -c 0 -i 10 -a 0 -S 0 -y {1 1} + -t 0.36464 -s 3 -d 2 -p ack -e 40 -c 0 -i 10 -a 0 -S 0 -y {1 1} - -t 0.36464 -s 3 -d 2 -p ack -e 40 -c 0 -i 10 -a 0 -S 0 -y {1 1} h -t 0.36464 -s 3 -d 2 -p ack -e 40 -c 0 -i 10 -a 0 -S 0 -y {-1 -1} r -t 0.366 -s 2 -d 3 -p cbr -e 500 -c 1 -i 7 -a 1 + -t 0.366 -s 3 -d 5 -p cbr -e 500 -c 1 -i 7 -a 1 - -t 0.366 -s 3 -d 5 -p cbr -e 500 -c 1 -i 7 -a 1 h -t 0.366 -s 3 -d 5 -p cbr -e 500 -c 1 -i 7 -a 1 r -t 0.374 -s 3 -d 5 -p cbr -e 500 -c 1 -i 6 -a 1 r -t 0.38064 -s 4 -d 3 -p ack -e 40 -c 0 -i 11 -a 0 -S 0 -y {2 2} + -t 0.38064 -s 3 -d 2 -p ack -e 40 -c 0 -i 11 -a 0 -S 0 -y {2 2} - -t 0.38064 -s 3 -d 2 -p ack -e 40 -c 0 -i 11 -a 0 -S 0 -y {2 2} h -t 0.38064 -s 3 -d 2 -p ack -e 40 -c 0 -i 11 -a 0 -S 0 -y {-1 -1} r -t 0.39928 -s 3 -d 2 -p ack -e 40 -c 0 -i 8 -a 0 -S 0 -y {0 0} + -t 0.39928 -s 2 -d 0 -p ack -e 40 -c 0 -i 8 -a 0 -S 0 -y {0 0} - -t 0.39928 -s 2 -d 0 -p ack -e 40 -c 0 -i 8 -a 0 -S 0 -f 0 -m 1 -y {0 0} h -t 0.39928 -s 2 -d 0 -p ack -e 40 -c 0 -i 8 -a 0 -S 0 -y {-1 -1} + -t 0.4 -s 1 -d 2 -p cbr -e 500 -c 1 -i 14 -a 1 - -t 0.4 -s 1 -d 2 -p cbr -e 500 -c 1 -i 14 -a 1 h -t 0.4 -s 1 -d 2 -p cbr -e 500 -c 1 -i 14 -a 1 r -t 0.40464 -s 4 -d 3 -p ack -e 40 -c 0 -i 13 -a 0 -S 0 -y {3 3} + -t 0.40464 -s 3 -d 2 -p ack -e 40 -c 0 -i 13 -a 0 -S 0 -y {3 3} - -t 0.40464 -s 3 -d 2 -p ack -e 40 -c 0 -i 13 -a 0 -S 0 -y {3 3} h -t 0.40464 -s 3 -d 2 -p ack -e 40 -c 0 -i 13 -a 0 -S 0 -y {-1 -1} r -t 0.408 -s 1 -d 2 -p cbr -e 500 -c 1 -i 12 -a 1 + -t 0.408 -s 2 -d 3 -p cbr -e 500 -c 1 -i 12 -a 1 - -t 0.408 -s 2 -d 3 -p cbr -e 500 -c 1 -i 12 -a 1 h -t 0.408 -s 2 -d 3 -p cbr -e 500 -c 1 -i 12 -a 1 r -t 0.41528 -s 3 -d 2 -p ack -e 40 -c 0 -i 10 -a 0 -S 0 -y {1 1} + -t 0.41528 -s 2 -d 0 -p ack -e 40 -c 0 -i 10 -a 0 -S 0 -y {1 1} - -t 0.41528 -s 2 -d 0 -p ack -e 40 -c 0 -i 10 -a 0 -S 0 -f 0 -m 1 -y {1 1} h -t 0.41528 -s 2 -d 0 -p ack -e 40 -c 0 -i 10 -a 0 -S 0 -y {-1 -1} r -t 0.416 -s 2 -d 3 -p cbr -e 500 -c 1 -i 9 -a 1 + -t 0.416 -s 3 -d 5 -p cbr -e 500 -c 1 -i 9 -a 1 - -t 0.416 -s 3 -d 5 -p cbr -e 500 -c 1 -i 9 -a 1 h -t 0.416 -s 3 -d 5 -p cbr -e 500 -c 1 -i 9 -a 1 r -t 0.424 -s 3 -d 5 -p cbr -e 500 -c 1 -i 7 -a 1 r -t 0.43128 -s 3 -d 2 -p ack -e 40 -c 0 -i 11 -a 0 -S 0 -y {2 2} + -t 0.43128 -s 2 -d 0 -p ack -e 40 -c 0 -i 11 -a 0 -S 0 -y {2 2} - -t 0.43128 -s 2 -d 0 -p ack -e 40 -c 0 -i 11 -a 0 -S 0 -f 0 -m 1 -y {2 2} h -t 0.43128 -s 2 -d 0 -p ack -e 40 -c 0 -i 11 -a 0 -S 0 -y {-1 -1} r -t 0.44992 -s 2 -d 0 -p ack -e 40 -c 0 -i 8 -a 0 -S 0 -y {0 0} + -t 0.44992 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 15 -a 0 -S 0 -f 0 -m 0 -y {4 4} - -t 0.44992 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 15 -a 0 -S 0 -y {4 4} h -t 0.44992 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 15 -a 0 -S 0 -y {-1 -1} + -t 0.45 -s 1 -d 2 -p cbr -e 500 -c 1 -i 16 -a 1 - -t 0.45 -s 1 -d 2 -p cbr -e 500 -c 1 -i 16 -a 1 h -t 0.45 -s 1 -d 2 -p cbr -e 500 -c 1 -i 16 -a 1 r -t 0.45528 -s 3 -d 2 -p ack -e 40 -c 0 -i 13 -a 0 -S 0 -y {3 3} + -t 0.45528 -s 2 -d 0 -p ack -e 40 -c 0 -i 13 -a 0 -S 0 -y {3 3} - -t 0.45528 -s 2 -d 0 -p ack -e 40 -c 0 -i 13 -a 0 -S 0 -f 0 -m 1 -y {3 3} h -t 0.45528 -s 2 -d 0 -p ack -e 40 -c 0 -i 13 -a 0 -S 0 -y {-1 -1} r -t 0.458 -s 1 -d 2 -p cbr -e 500 -c 1 -i 14 -a 1 + -t 0.458 -s 2 -d 3 -p cbr -e 500 -c 1 -i 14 -a 1 - -t 0.458 -s 2 -d 3 -p cbr -e 500 -c 1 -i 14 -a 1 h -t 0.458 -s 2 -d 3 -p cbr -e 500 -c 1 -i 14 -a 1 v -t 0.46000000000000002 sim_annotation 0.46000000000000002 6 Send Packet_4,5,6,7 : window size, 4 r -t 0.46592 -s 2 -d 0 -p ack -e 40 -c 0 -i 10 -a 0 -S 0 -y {1 1} + -t 0.46592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 17 -a 0 -S 0 -f 0 -m 0 -y {5 5} - -t 0.46592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 17 -a 0 -S 0 -y {5 5} h -t 0.46592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 17 -a 0 -S 0 -y {-1 -1} r -t 0.466 -s 2 -d 3 -p cbr -e 500 -c 1 -i 12 -a 1 + -t 0.466 -s 3 -d 5 -p cbr -e 500 -c 1 -i 12 -a 1 - -t 0.466 -s 3 -d 5 -p cbr -e 500 -c 1 -i 12 -a 1 h -t 0.466 -s 3 -d 5 -p cbr -e 500 -c 1 -i 12 -a 1 r -t 0.474 -s 3 -d 5 -p cbr -e 500 -c 1 -i 9 -a 1 r -t 0.48192 -s 2 -d 0 -p ack -e 40 -c 0 -i 11 -a 0 -S 0 -y {2 2} + -t 0.48192 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -f 0 -m 0 -y {6 6} - -t 0.48192 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {6 6} h -t 0.48192 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {-1 -1} + -t 0.5 -s 1 -d 2 -p cbr -e 500 -c 1 -i 19 -a 1 - -t 0.5 -s 1 -d 2 -p cbr -e 500 -c 1 -i 19 -a 1 h -t 0.5 -s 1 -d 2 -p cbr -e 500 -c 1 -i 19 -a 1 r -t 0.50592 -s 2 -d 0 -p ack -e 40 -c 0 -i 13 -a 0 -S 0 -y {3 3} + -t 0.50592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 20 -a 0 -S 0 -f 0 -m 0 -y {7 7} - -t 0.50592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 20 -a 0 -S 0 -y {7 7} h -t 0.50592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 20 -a 0 -S 0 -y {-1 -1} r -t 0.508 -s 1 -d 2 -p cbr -e 500 -c 1 -i 16 -a 1 + -t 0.508 -s 2 -d 3 -p cbr -e 500 -c 1 -i 16 -a 1 - -t 0.508 -s 2 -d 3 -p cbr -e 500 -c 1 -i 16 -a 1 h -t 0.508 -s 2 -d 3 -p cbr -e 500 -c 1 -i 16 -a 1 r -t 0.51592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 15 -a 0 -S 0 -y {4 4} + -t 0.51592 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 15 -a 0 -S 0 -y {4 4} r -t 0.516 -s 2 -d 3 -p cbr -e 500 -c 1 -i 14 -a 1 + -t 0.516 -s 3 -d 5 -p cbr -e 500 -c 1 -i 14 -a 1 - -t 0.516 -s 3 -d 5 -p cbr -e 500 -c 1 -i 14 -a 1 h -t 0.516 -s 3 -d 5 -p cbr -e 500 -c 1 -i 14 -a 1 - -t 0.516 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 15 -a 0 -S 0 -y {4 4} h -t 0.516 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 15 -a 0 -S 0 -y {-1 -1} r -t 0.524 -s 3 -d 5 -p cbr -e 500 -c 1 -i 12 -a 1 r -t 0.53192 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 17 -a 0 -S 0 -y {5 5} + -t 0.53192 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 17 -a 0 -S 0 -y {5 5} - -t 0.532 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 17 -a 0 -S 0 -y {5 5} h -t 0.532 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 17 -a 0 -S 0 -y {-1 -1} r -t 0.54792 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {6 6} + -t 0.54792 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {6 6} - -t 0.548 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {6 6} h -t 0.548 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {-1 -1} + -t 0.55 -s 1 -d 2 -p cbr -e 500 -c 1 -i 21 -a 1 - -t 0.55 -s 1 -d 2 -p cbr -e 500 -c 1 -i 21 -a 1 h -t 0.55 -s 1 -d 2 -p cbr -e 500 -c 1 -i 21 -a 1 r -t 0.558 -s 1 -d 2 -p cbr -e 500 -c 1 -i 19 -a 1 + -t 0.558 -s 2 -d 3 -p cbr -e 500 -c 1 -i 19 -a 1 - -t 0.564 -s 2 -d 3 -p cbr -e 500 -c 1 -i 19 -a 1 h -t 0.564 -s 2 -d 3 -p cbr -e 500 -c 1 -i 19 -a 1 r -t 0.566 -s 2 -d 3 -p cbr -e 500 -c 1 -i 16 -a 1 + -t 0.566 -s 3 -d 5 -p cbr -e 500 -c 1 -i 16 -a 1 - -t 0.566 -s 3 -d 5 -p cbr -e 500 -c 1 -i 16 -a 1 h -t 0.566 -s 3 -d 5 -p cbr -e 500 -c 1 -i 16 -a 1 r -t 0.57192 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 20 -a 0 -S 0 -y {7 7} + -t 0.57192 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 20 -a 0 -S 0 -y {7 7} - -t 0.572 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 20 -a 0 -S 0 -y {7 7} h -t 0.572 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 20 -a 0 -S 0 -y {-1 -1} r -t 0.574 -s 3 -d 5 -p cbr -e 500 -c 1 -i 14 -a 1 r -t 0.582 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 15 -a 0 -S 0 -y {4 4} + -t 0.582 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 15 -a 0 -S 0 -y {4 4} - -t 0.582 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 15 -a 0 -S 0 -y {4 4} h -t 0.582 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 15 -a 0 -S 0 -y {-1 -1} r -t 0.598 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 17 -a 0 -S 0 -y {5 5} + -t 0.598 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 17 -a 0 -S 0 -y {5 5} - -t 0.598 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 17 -a 0 -S 0 -y {5 5} h -t 0.598 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 17 -a 0 -S 0 -y {-1 -1} + -t 0.6 -s 1 -d 2 -p cbr -e 500 -c 1 -i 22 -a 1 - -t 0.6 -s 1 -d 2 -p cbr -e 500 -c 1 -i 22 -a 1 h -t 0.6 -s 1 -d 2 -p cbr -e 500 -c 1 -i 22 -a 1 r -t 0.608 -s 1 -d 2 -p cbr -e 500 -c 1 -i 21 -a 1 + -t 0.608 -s 2 -d 3 -p cbr -e 500 -c 1 -i 21 -a 1 - -t 0.608 -s 2 -d 3 -p cbr -e 500 -c 1 -i 21 -a 1 h -t 0.608 -s 2 -d 3 -p cbr -e 500 -c 1 -i 21 -a 1 r -t 0.614 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {6 6} + -t 0.614 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {6 6} - -t 0.614 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {6 6} h -t 0.614 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {-1 -1} r -t 0.622 -s 2 -d 3 -p cbr -e 500 -c 1 -i 19 -a 1 + -t 0.622 -s 3 -d 5 -p cbr -e 500 -c 1 -i 19 -a 1 - -t 0.622 -s 3 -d 5 -p cbr -e 500 -c 1 -i 19 -a 1 h -t 0.622 -s 3 -d 5 -p cbr -e 500 -c 1 -i 19 -a 1 r -t 0.624 -s 3 -d 5 -p cbr -e 500 -c 1 -i 16 -a 1 r -t 0.638 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 20 -a 0 -S 0 -y {7 7} + -t 0.638 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 20 -a 0 -S 0 -y {7 7} - -t 0.638 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 20 -a 0 -S 0 -y {7 7} h -t 0.638 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 20 -a 0 -S 0 -y {-1 -1} r -t 0.648 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 15 -a 0 -S 0 -y {4 4} + -t 0.648 -s 4 -d 3 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {4 4} - -t 0.648 -s 4 -d 3 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {4 4} h -t 0.648 -s 4 -d 3 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {-1 -1} + -t 0.65 -s 1 -d 2 -p cbr -e 500 -c 1 -i 24 -a 1 - -t 0.65 -s 1 -d 2 -p cbr -e 500 -c 1 -i 24 -a 1 h -t 0.65 -s 1 -d 2 -p cbr -e 500 -c 1 -i 24 -a 1 r -t 0.658 -s 1 -d 2 -p cbr -e 500 -c 1 -i 22 -a 1 + -t 0.658 -s 2 -d 3 -p cbr -e 500 -c 1 -i 22 -a 1 - -t 0.658 -s 2 -d 3 -p cbr -e 500 -c 1 -i 22 -a 1 h -t 0.658 -s 2 -d 3 -p cbr -e 500 -c 1 -i 22 -a 1 v -t 0.66000000000000003 sim_annotation 0.66000000000000003 7 Ack_4,5,6,7 r -t 0.664 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 17 -a 0 -S 0 -y {5 5} + -t 0.664 -s 4 -d 3 -p ack -e 40 -c 0 -i 25 -a 0 -S 0 -y {5 5} - -t 0.664 -s 4 -d 3 -p ack -e 40 -c 0 -i 25 -a 0 -S 0 -y {5 5} h -t 0.664 -s 4 -d 3 -p ack -e 40 -c 0 -i 25 -a 0 -S 0 -y {-1 -1} r -t 0.666 -s 2 -d 3 -p cbr -e 500 -c 1 -i 21 -a 1 + -t 0.666 -s 3 -d 5 -p cbr -e 500 -c 1 -i 21 -a 1 - -t 0.666 -s 3 -d 5 -p cbr -e 500 -c 1 -i 21 -a 1 h -t 0.666 -s 3 -d 5 -p cbr -e 500 -c 1 -i 21 -a 1 r -t 0.68 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {6 6} + -t 0.68 -s 4 -d 3 -p ack -e 40 -c 0 -i 26 -a 0 -S 0 -y {6 6} - -t 0.68 -s 4 -d 3 -p ack -e 40 -c 0 -i 26 -a 0 -S 0 -y {6 6} h -t 0.68 -s 4 -d 3 -p ack -e 40 -c 0 -i 26 -a 0 -S 0 -y {-1 -1} r -t 0.68 -s 3 -d 5 -p cbr -e 500 -c 1 -i 19 -a 1 r -t 0.69864 -s 4 -d 3 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {4 4} + -t 0.69864 -s 3 -d 2 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {4 4} - -t 0.69864 -s 3 -d 2 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {4 4} h -t 0.69864 -s 3 -d 2 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {-1 -1} + -t 0.7 -s 1 -d 2 -p cbr -e 500 -c 1 -i 27 -a 1 - -t 0.7 -s 1 -d 2 -p cbr -e 500 -c 1 -i 27 -a 1 h -t 0.7 -s 1 -d 2 -p cbr -e 500 -c 1 -i 27 -a 1 r -t 0.704 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 20 -a 0 -S 0 -y {7 7} + -t 0.704 -s 4 -d 3 -p ack -e 40 -c 0 -i 28 -a 0 -S 0 -y {7 7} - -t 0.704 -s 4 -d 3 -p ack -e 40 -c 0 -i 28 -a 0 -S 0 -y {7 7} h -t 0.704 -s 4 -d 3 -p ack -e 40 -c 0 -i 28 -a 0 -S 0 -y {-1 -1} r -t 0.708 -s 1 -d 2 -p cbr -e 500 -c 1 -i 24 -a 1 + -t 0.708 -s 2 -d 3 -p cbr -e 500 -c 1 -i 24 -a 1 - -t 0.708 -s 2 -d 3 -p cbr -e 500 -c 1 -i 24 -a 1 h -t 0.708 -s 2 -d 3 -p cbr -e 500 -c 1 -i 24 -a 1 r -t 0.71464 -s 4 -d 3 -p ack -e 40 -c 0 -i 25 -a 0 -S 0 -y {5 5} + -t 0.71464 -s 3 -d 2 -p ack -e 40 -c 0 -i 25 -a 0 -S 0 -y {5 5} - -t 0.71464 -s 3 -d 2 -p ack -e 40 -c 0 -i 25 -a 0 -S 0 -y {5 5} h -t 0.71464 -s 3 -d 2 -p ack -e 40 -c 0 -i 25 -a 0 -S 0 -y {-1 -1} r -t 0.716 -s 2 -d 3 -p cbr -e 500 -c 1 -i 22 -a 1 + -t 0.716 -s 3 -d 5 -p cbr -e 500 -c 1 -i 22 -a 1 - -t 0.716 -s 3 -d 5 -p cbr -e 500 -c 1 -i 22 -a 1 h -t 0.716 -s 3 -d 5 -p cbr -e 500 -c 1 -i 22 -a 1 r -t 0.724 -s 3 -d 5 -p cbr -e 500 -c 1 -i 21 -a 1 r -t 0.73064 -s 4 -d 3 -p ack -e 40 -c 0 -i 26 -a 0 -S 0 -y {6 6} + -t 0.73064 -s 3 -d 2 -p ack -e 40 -c 0 -i 26 -a 0 -S 0 -y {6 6} - -t 0.73064 -s 3 -d 2 -p ack -e 40 -c 0 -i 26 -a 0 -S 0 -y {6 6} h -t 0.73064 -s 3 -d 2 -p ack -e 40 -c 0 -i 26 -a 0 -S 0 -y {-1 -1} r -t 0.74928 -s 3 -d 2 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {4 4} + -t 0.74928 -s 2 -d 0 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {4 4} - -t 0.74928 -s 2 -d 0 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -f 0 -m 1 -y {4 4} h -t 0.74928 -s 2 -d 0 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {-1 -1} + -t 0.75 -s 1 -d 2 -p cbr -e 500 -c 1 -i 29 -a 1 - -t 0.75 -s 1 -d 2 -p cbr -e 500 -c 1 -i 29 -a 1 h -t 0.75 -s 1 -d 2 -p cbr -e 500 -c 1 -i 29 -a 1 r -t 0.75464 -s 4 -d 3 -p ack -e 40 -c 0 -i 28 -a 0 -S 0 -y {7 7} + -t 0.75464 -s 3 -d 2 -p ack -e 40 -c 0 -i 28 -a 0 -S 0 -y {7 7} - -t 0.75464 -s 3 -d 2 -p ack -e 40 -c 0 -i 28 -a 0 -S 0 -y {7 7} h -t 0.75464 -s 3 -d 2 -p ack -e 40 -c 0 -i 28 -a 0 -S 0 -y {-1 -1} r -t 0.758 -s 1 -d 2 -p cbr -e 500 -c 1 -i 27 -a 1 + -t 0.758 -s 2 -d 3 -p cbr -e 500 -c 1 -i 27 -a 1 - -t 0.758 -s 2 -d 3 -p cbr -e 500 -c 1 -i 27 -a 1 h -t 0.758 -s 2 -d 3 -p cbr -e 500 -c 1 -i 27 -a 1 r -t 0.76528 -s 3 -d 2 -p ack -e 40 -c 0 -i 25 -a 0 -S 0 -y {5 5} + -t 0.76528 -s 2 -d 0 -p ack -e 40 -c 0 -i 25 -a 0 -S 0 -y {5 5} - -t 0.76528 -s 2 -d 0 -p ack -e 40 -c 0 -i 25 -a 0 -S 0 -f 0 -m 1 -y {5 5} h -t 0.76528 -s 2 -d 0 -p ack -e 40 -c 0 -i 25 -a 0 -S 0 -y {-1 -1} r -t 0.766 -s 2 -d 3 -p cbr -e 500 -c 1 -i 24 -a 1 + -t 0.766 -s 3 -d 5 -p cbr -e 500 -c 1 -i 24 -a 1 - -t 0.766 -s 3 -d 5 -p cbr -e 500 -c 1 -i 24 -a 1 h -t 0.766 -s 3 -d 5 -p cbr -e 500 -c 1 -i 24 -a 1 r -t 0.774 -s 3 -d 5 -p cbr -e 500 -c 1 -i 22 -a 1 r -t 0.78128 -s 3 -d 2 -p ack -e 40 -c 0 -i 26 -a 0 -S 0 -y {6 6} + -t 0.78128 -s 2 -d 0 -p ack -e 40 -c 0 -i 26 -a 0 -S 0 -y {6 6} - -t 0.78128 -s 2 -d 0 -p ack -e 40 -c 0 -i 26 -a 0 -S 0 -f 0 -m 1 -y {6 6} h -t 0.78128 -s 2 -d 0 -p ack -e 40 -c 0 -i 26 -a 0 -S 0 -y {-1 -1} r -t 0.79992 -s 2 -d 0 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {4 4} + -t 0.79992 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 30 -a 0 -S 0 -f 0 -m 0 -y {8 8} - -t 0.79992 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 30 -a 0 -S 0 -y {8 8} h -t 0.79992 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 30 -a 0 -S 0 -y {-1 -1} + -t 0.8 -s 1 -d 2 -p cbr -e 500 -c 1 -i 31 -a 1 - -t 0.8 -s 1 -d 2 -p cbr -e 500 -c 1 -i 31 -a 1 h -t 0.8 -s 1 -d 2 -p cbr -e 500 -c 1 -i 31 -a 1 r -t 0.80528 -s 3 -d 2 -p ack -e 40 -c 0 -i 28 -a 0 -S 0 -y {7 7} + -t 0.80528 -s 2 -d 0 -p ack -e 40 -c 0 -i 28 -a 0 -S 0 -y {7 7} - -t 0.80528 -s 2 -d 0 -p ack -e 40 -c 0 -i 28 -a 0 -S 0 -f 0 -m 1 -y {7 7} h -t 0.80528 -s 2 -d 0 -p ack -e 40 -c 0 -i 28 -a 0 -S 0 -y {-1 -1} r -t 0.808 -s 1 -d 2 -p cbr -e 500 -c 1 -i 29 -a 1 + -t 0.808 -s 2 -d 3 -p cbr -e 500 -c 1 -i 29 -a 1 - -t 0.808 -s 2 -d 3 -p cbr -e 500 -c 1 -i 29 -a 1 h -t 0.808 -s 2 -d 3 -p cbr -e 500 -c 1 -i 29 -a 1 v -t 0.81000000000000005 sim_annotation 0.81000000000000005 8 Send Packet_8,9,10,11 : window size, 4 r -t 0.81592 -s 2 -d 0 -p ack -e 40 -c 0 -i 25 -a 0 -S 0 -y {5 5} + -t 0.81592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 32 -a 0 -S 0 -f 0 -m 0 -y {9 9} - -t 0.81592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 32 -a 0 -S 0 -y {9 9} h -t 0.81592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 32 -a 0 -S 0 -y {-1 -1} r -t 0.816 -s 2 -d 3 -p cbr -e 500 -c 1 -i 27 -a 1 + -t 0.816 -s 3 -d 5 -p cbr -e 500 -c 1 -i 27 -a 1 - -t 0.816 -s 3 -d 5 -p cbr -e 500 -c 1 -i 27 -a 1 h -t 0.816 -s 3 -d 5 -p cbr -e 500 -c 1 -i 27 -a 1 r -t 0.824 -s 3 -d 5 -p cbr -e 500 -c 1 -i 24 -a 1 r -t 0.83192 -s 2 -d 0 -p ack -e 40 -c 0 -i 26 -a 0 -S 0 -y {6 6} + -t 0.83192 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 33 -a 0 -S 0 -f 0 -m 0 -y {10 10} - -t 0.83192 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 33 -a 0 -S 0 -y {10 10} h -t 0.83192 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 33 -a 0 -S 0 -y {-1 -1} + -t 0.85 -s 1 -d 2 -p cbr -e 500 -c 1 -i 34 -a 1 - -t 0.85 -s 1 -d 2 -p cbr -e 500 -c 1 -i 34 -a 1 h -t 0.85 -s 1 -d 2 -p cbr -e 500 -c 1 -i 34 -a 1 r -t 0.85592 -s 2 -d 0 -p ack -e 40 -c 0 -i 28 -a 0 -S 0 -y {7 7} + -t 0.85592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 35 -a 0 -S 0 -f 0 -m 0 -y {11 11} - -t 0.85592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 35 -a 0 -S 0 -y {11 11} h -t 0.85592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 35 -a 0 -S 0 -y {-1 -1} r -t 0.858 -s 1 -d 2 -p cbr -e 500 -c 1 -i 31 -a 1 + -t 0.858 -s 2 -d 3 -p cbr -e 500 -c 1 -i 31 -a 1 - -t 0.858 -s 2 -d 3 -p cbr -e 500 -c 1 -i 31 -a 1 h -t 0.858 -s 2 -d 3 -p cbr -e 500 -c 1 -i 31 -a 1 r -t 0.86592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 30 -a 0 -S 0 -y {8 8} + -t 0.86592 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 30 -a 0 -S 0 -y {8 8} r -t 0.866 -s 2 -d 3 -p cbr -e 500 -c 1 -i 29 -a 1 + -t 0.866 -s 3 -d 5 -p cbr -e 500 -c 1 -i 29 -a 1 - -t 0.866 -s 3 -d 5 -p cbr -e 500 -c 1 -i 29 -a 1 h -t 0.866 -s 3 -d 5 -p cbr -e 500 -c 1 -i 29 -a 1 - -t 0.866 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 30 -a 0 -S 0 -y {8 8} h -t 0.866 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 30 -a 0 -S 0 -y {-1 -1} r -t 0.874 -s 3 -d 5 -p cbr -e 500 -c 1 -i 27 -a 1 r -t 0.88192 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 32 -a 0 -S 0 -y {9 9} + -t 0.88192 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 32 -a 0 -S 0 -y {9 9} - -t 0.882 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 32 -a 0 -S 0 -y {9 9} h -t 0.882 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 32 -a 0 -S 0 -y {-1 -1} r -t 0.89792 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 33 -a 0 -S 0 -y {10 10} + -t 0.89792 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 33 -a 0 -S 0 -y {10 10} - -t 0.898 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 33 -a 0 -S 0 -y {10 10} h -t 0.898 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 33 -a 0 -S 0 -y {-1 -1} + -t 0.9 -s 1 -d 2 -p cbr -e 500 -c 1 -i 36 -a 1 - -t 0.9 -s 1 -d 2 -p cbr -e 500 -c 1 -i 36 -a 1 h -t 0.9 -s 1 -d 2 -p cbr -e 500 -c 1 -i 36 -a 1 r -t 0.908 -s 1 -d 2 -p cbr -e 500 -c 1 -i 34 -a 1 + -t 0.908 -s 2 -d 3 -p cbr -e 500 -c 1 -i 34 -a 1 - -t 0.914 -s 2 -d 3 -p cbr -e 500 -c 1 -i 34 -a 1 h -t 0.914 -s 2 -d 3 -p cbr -e 500 -c 1 -i 34 -a 1 r -t 0.916 -s 2 -d 3 -p cbr -e 500 -c 1 -i 31 -a 1 + -t 0.916 -s 3 -d 5 -p cbr -e 500 -c 1 -i 31 -a 1 - -t 0.916 -s 3 -d 5 -p cbr -e 500 -c 1 -i 31 -a 1 h -t 0.916 -s 3 -d 5 -p cbr -e 500 -c 1 -i 31 -a 1 r -t 0.92192 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 35 -a 0 -S 0 -y {11 11} + -t 0.92192 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 35 -a 0 -S 0 -y {11 11} - -t 0.922 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 35 -a 0 -S 0 -y {11 11} h -t 0.922 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 35 -a 0 -S 0 -y {-1 -1} r -t 0.924 -s 3 -d 5 -p cbr -e 500 -c 1 -i 29 -a 1 r -t 0.932 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 30 -a 0 -S 0 -y {8 8} + -t 0.932 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 30 -a 0 -S 0 -y {8 8} - -t 0.932 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 30 -a 0 -S 0 -y {8 8} h -t 0.932 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 30 -a 0 -S 0 -y {-1 -1} r -t 0.948 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 32 -a 0 -S 0 -y {9 9} + -t 0.948 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 32 -a 0 -S 0 -y {9 9} - -t 0.948 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 32 -a 0 -S 0 -y {9 9} h -t 0.948 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 32 -a 0 -S 0 -y {-1 -1} + -t 0.95 -s 1 -d 2 -p cbr -e 500 -c 1 -i 37 -a 1 - -t 0.95 -s 1 -d 2 -p cbr -e 500 -c 1 -i 37 -a 1 h -t 0.95 -s 1 -d 2 -p cbr -e 500 -c 1 -i 37 -a 1 r -t 0.958 -s 1 -d 2 -p cbr -e 500 -c 1 -i 36 -a 1 + -t 0.958 -s 2 -d 3 -p cbr -e 500 -c 1 -i 36 -a 1 - -t 0.958 -s 2 -d 3 -p cbr -e 500 -c 1 -i 36 -a 1 h -t 0.958 -s 2 -d 3 -p cbr -e 500 -c 1 -i 36 -a 1 r -t 0.964 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 33 -a 0 -S 0 -y {10 10} + -t 0.964 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 33 -a 0 -S 0 -y {10 10} - -t 0.964 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 33 -a 0 -S 0 -y {10 10} h -t 0.964 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 33 -a 0 -S 0 -y {-1 -1} r -t 0.972 -s 2 -d 3 -p cbr -e 500 -c 1 -i 34 -a 1 + -t 0.972 -s 3 -d 5 -p cbr -e 500 -c 1 -i 34 -a 1 - -t 0.972 -s 3 -d 5 -p cbr -e 500 -c 1 -i 34 -a 1 h -t 0.972 -s 3 -d 5 -p cbr -e 500 -c 1 -i 34 -a 1 r -t 0.974 -s 3 -d 5 -p cbr -e 500 -c 1 -i 31 -a 1 r -t 0.988 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 35 -a 0 -S 0 -y {11 11} + -t 0.988 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 35 -a 0 -S 0 -y {11 11} - -t 0.988 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 35 -a 0 -S 0 -y {11 11} h -t 0.988 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 35 -a 0 -S 0 -y {-1 -1} r -t 0.998 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 30 -a 0 -S 0 -y {8 8} + -t 0.998 -s 4 -d 3 -p ack -e 40 -c 0 -i 38 -a 0 -S 0 -y {8 8} - -t 0.998 -s 4 -d 3 -p ack -e 40 -c 0 -i 38 -a 0 -S 0 -y {8 8} h -t 0.998 -s 4 -d 3 -p ack -e 40 -c 0 -i 38 -a 0 -S 0 -y {-1 -1} v -t 1 sim_annotation 1 9 Ack_8,9,10,11 + -t 1 -s 1 -d 2 -p cbr -e 500 -c 1 -i 39 -a 1 - -t 1 -s 1 -d 2 -p cbr -e 500 -c 1 -i 39 -a 1 h -t 1 -s 1 -d 2 -p cbr -e 500 -c 1 -i 39 -a 1 r -t 1.008 -s 1 -d 2 -p cbr -e 500 -c 1 -i 37 -a 1 + -t 1.008 -s 2 -d 3 -p cbr -e 500 -c 1 -i 37 -a 1 - -t 1.008 -s 2 -d 3 -p cbr -e 500 -c 1 -i 37 -a 1 h -t 1.008 -s 2 -d 3 -p cbr -e 500 -c 1 -i 37 -a 1 r -t 1.014 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 32 -a 0 -S 0 -y {9 9} + -t 1.014 -s 4 -d 3 -p ack -e 40 -c 0 -i 40 -a 0 -S 0 -y {9 9} - -t 1.014 -s 4 -d 3 -p ack -e 40 -c 0 -i 40 -a 0 -S 0 -y {9 9} h -t 1.014 -s 4 -d 3 -p ack -e 40 -c 0 -i 40 -a 0 -S 0 -y {-1 -1} r -t 1.016 -s 2 -d 3 -p cbr -e 500 -c 1 -i 36 -a 1 + -t 1.016 -s 3 -d 5 -p cbr -e 500 -c 1 -i 36 -a 1 - -t 1.016 -s 3 -d 5 -p cbr -e 500 -c 1 -i 36 -a 1 h -t 1.016 -s 3 -d 5 -p cbr -e 500 -c 1 -i 36 -a 1 r -t 1.03 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 33 -a 0 -S 0 -y {10 10} + -t 1.03 -s 4 -d 3 -p ack -e 40 -c 0 -i 41 -a 0 -S 0 -y {10 10} - -t 1.03 -s 4 -d 3 -p ack -e 40 -c 0 -i 41 -a 0 -S 0 -y {10 10} h -t 1.03 -s 4 -d 3 -p ack -e 40 -c 0 -i 41 -a 0 -S 0 -y {-1 -1} r -t 1.03 -s 3 -d 5 -p cbr -e 500 -c 1 -i 34 -a 1 r -t 1.04864 -s 4 -d 3 -p ack -e 40 -c 0 -i 38 -a 0 -S 0 -y {8 8} + -t 1.04864 -s 3 -d 2 -p ack -e 40 -c 0 -i 38 -a 0 -S 0 -y {8 8} - -t 1.04864 -s 3 -d 2 -p ack -e 40 -c 0 -i 38 -a 0 -S 0 -y {8 8} h -t 1.04864 -s 3 -d 2 -p ack -e 40 -c 0 -i 38 -a 0 -S 0 -y {-1 -1} + -t 1.05 -s 1 -d 2 -p cbr -e 500 -c 1 -i 42 -a 1 - -t 1.05 -s 1 -d 2 -p cbr -e 500 -c 1 -i 42 -a 1 h -t 1.05 -s 1 -d 2 -p cbr -e 500 -c 1 -i 42 -a 1 r -t 1.054 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 35 -a 0 -S 0 -y {11 11} + -t 1.054 -s 4 -d 3 -p ack -e 40 -c 0 -i 43 -a 0 -S 0 -y {11 11} - -t 1.054 -s 4 -d 3 -p ack -e 40 -c 0 -i 43 -a 0 -S 0 -y {11 11} h -t 1.054 -s 4 -d 3 -p ack -e 40 -c 0 -i 43 -a 0 -S 0 -y {-1 -1} r -t 1.058 -s 1 -d 2 -p cbr -e 500 -c 1 -i 39 -a 1 + -t 1.058 -s 2 -d 3 -p cbr -e 500 -c 1 -i 39 -a 1 - -t 1.058 -s 2 -d 3 -p cbr -e 500 -c 1 -i 39 -a 1 h -t 1.058 -s 2 -d 3 -p cbr -e 500 -c 1 -i 39 -a 1 r -t 1.06464 -s 4 -d 3 -p ack -e 40 -c 0 -i 40 -a 0 -S 0 -y {9 9} + -t 1.06464 -s 3 -d 2 -p ack -e 40 -c 0 -i 40 -a 0 -S 0 -y {9 9} - -t 1.06464 -s 3 -d 2 -p ack -e 40 -c 0 -i 40 -a 0 -S 0 -y {9 9} h -t 1.06464 -s 3 -d 2 -p ack -e 40 -c 0 -i 40 -a 0 -S 0 -y {-1 -1} r -t 1.066 -s 2 -d 3 -p cbr -e 500 -c 1 -i 37 -a 1 + -t 1.066 -s 3 -d 5 -p cbr -e 500 -c 1 -i 37 -a 1 - -t 1.066 -s 3 -d 5 -p cbr -e 500 -c 1 -i 37 -a 1 h -t 1.066 -s 3 -d 5 -p cbr -e 500 -c 1 -i 37 -a 1 r -t 1.074 -s 3 -d 5 -p cbr -e 500 -c 1 -i 36 -a 1 r -t 1.08064 -s 4 -d 3 -p ack -e 40 -c 0 -i 41 -a 0 -S 0 -y {10 10} + -t 1.08064 -s 3 -d 2 -p ack -e 40 -c 0 -i 41 -a 0 -S 0 -y {10 10} - -t 1.08064 -s 3 -d 2 -p ack -e 40 -c 0 -i 41 -a 0 -S 0 -y {10 10} h -t 1.08064 -s 3 -d 2 -p ack -e 40 -c 0 -i 41 -a 0 -S 0 -y {-1 -1} r -t 1.09928 -s 3 -d 2 -p ack -e 40 -c 0 -i 38 -a 0 -S 0 -y {8 8} + -t 1.09928 -s 2 -d 0 -p ack -e 40 -c 0 -i 38 -a 0 -S 0 -y {8 8} - -t 1.09928 -s 2 -d 0 -p ack -e 40 -c 0 -i 38 -a 0 -S 0 -f 0 -m 1 -y {8 8} h -t 1.09928 -s 2 -d 0 -p ack -e 40 -c 0 -i 38 -a 0 -S 0 -y {-1 -1} + -t 1.1 -s 1 -d 2 -p cbr -e 500 -c 1 -i 44 -a 1 - -t 1.1 -s 1 -d 2 -p cbr -e 500 -c 1 -i 44 -a 1 h -t 1.1 -s 1 -d 2 -p cbr -e 500 -c 1 -i 44 -a 1 r -t 1.10464 -s 4 -d 3 -p ack -e 40 -c 0 -i 43 -a 0 -S 0 -y {11 11} + -t 1.10464 -s 3 -d 2 -p ack -e 40 -c 0 -i 43 -a 0 -S 0 -y {11 11} - -t 1.10464 -s 3 -d 2 -p ack -e 40 -c 0 -i 43 -a 0 -S 0 -y {11 11} h -t 1.10464 -s 3 -d 2 -p ack -e 40 -c 0 -i 43 -a 0 -S 0 -y {-1 -1} r -t 1.108 -s 1 -d 2 -p cbr -e 500 -c 1 -i 42 -a 1 + -t 1.108 -s 2 -d 3 -p cbr -e 500 -c 1 -i 42 -a 1 - -t 1.108 -s 2 -d 3 -p cbr -e 500 -c 1 -i 42 -a 1 h -t 1.108 -s 2 -d 3 -p cbr -e 500 -c 1 -i 42 -a 1 r -t 1.11528 -s 3 -d 2 -p ack -e 40 -c 0 -i 40 -a 0 -S 0 -y {9 9} + -t 1.11528 -s 2 -d 0 -p ack -e 40 -c 0 -i 40 -a 0 -S 0 -y {9 9} - -t 1.11528 -s 2 -d 0 -p ack -e 40 -c 0 -i 40 -a 0 -S 0 -f 0 -m 1 -y {9 9} h -t 1.11528 -s 2 -d 0 -p ack -e 40 -c 0 -i 40 -a 0 -S 0 -y {-1 -1} r -t 1.116 -s 2 -d 3 -p cbr -e 500 -c 1 -i 39 -a 1 + -t 1.116 -s 3 -d 5 -p cbr -e 500 -c 1 -i 39 -a 1 - -t 1.116 -s 3 -d 5 -p cbr -e 500 -c 1 -i 39 -a 1 h -t 1.116 -s 3 -d 5 -p cbr -e 500 -c 1 -i 39 -a 1 r -t 1.124 -s 3 -d 5 -p cbr -e 500 -c 1 -i 37 -a 1 r -t 1.13128 -s 3 -d 2 -p ack -e 40 -c 0 -i 41 -a 0 -S 0 -y {10 10} + -t 1.13128 -s 2 -d 0 -p ack -e 40 -c 0 -i 41 -a 0 -S 0 -y {10 10} - -t 1.13128 -s 2 -d 0 -p ack -e 40 -c 0 -i 41 -a 0 -S 0 -f 0 -m 1 -y {10 10} h -t 1.13128 -s 2 -d 0 -p ack -e 40 -c 0 -i 41 -a 0 -S 0 -y {-1 -1} r -t 1.14992 -s 2 -d 0 -p ack -e 40 -c 0 -i 38 -a 0 -S 0 -y {8 8} + -t 1.14992 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 45 -a 0 -S 0 -f 0 -m 0 -y {12 12} - -t 1.14992 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 45 -a 0 -S 0 -y {12 12} h -t 1.14992 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 45 -a 0 -S 0 -y {-1 -1} + -t 1.15 -s 1 -d 2 -p cbr -e 500 -c 1 -i 46 -a 1 - -t 1.15 -s 1 -d 2 -p cbr -e 500 -c 1 -i 46 -a 1 h -t 1.15 -s 1 -d 2 -p cbr -e 500 -c 1 -i 46 -a 1 r -t 1.15528 -s 3 -d 2 -p ack -e 40 -c 0 -i 43 -a 0 -S 0 -y {11 11} + -t 1.15528 -s 2 -d 0 -p ack -e 40 -c 0 -i 43 -a 0 -S 0 -y {11 11} - -t 1.15528 -s 2 -d 0 -p ack -e 40 -c 0 -i 43 -a 0 -S 0 -f 0 -m 1 -y {11 11} h -t 1.15528 -s 2 -d 0 -p ack -e 40 -c 0 -i 43 -a 0 -S 0 -y {-1 -1} r -t 1.158 -s 1 -d 2 -p cbr -e 500 -c 1 -i 44 -a 1 + -t 1.158 -s 2 -d 3 -p cbr -e 500 -c 1 -i 44 -a 1 - -t 1.158 -s 2 -d 3 -p cbr -e 500 -c 1 -i 44 -a 1 h -t 1.158 -s 2 -d 3 -p cbr -e 500 -c 1 -i 44 -a 1 v -t 1.1599999999999999 sim_annotation 1.1599999999999999 10 Send Packet_12,13,14,15 : window size, 4 r -t 1.16592 -s 2 -d 0 -p ack -e 40 -c 0 -i 40 -a 0 -S 0 -y {9 9} + -t 1.16592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 47 -a 0 -S 0 -f 0 -m 0 -y {13 13} - -t 1.16592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 47 -a 0 -S 0 -y {13 13} h -t 1.16592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 47 -a 0 -S 0 -y {-1 -1} r -t 1.166 -s 2 -d 3 -p cbr -e 500 -c 1 -i 42 -a 1 + -t 1.166 -s 3 -d 5 -p cbr -e 500 -c 1 -i 42 -a 1 - -t 1.166 -s 3 -d 5 -p cbr -e 500 -c 1 -i 42 -a 1 h -t 1.166 -s 3 -d 5 -p cbr -e 500 -c 1 -i 42 -a 1 r -t 1.174 -s 3 -d 5 -p cbr -e 500 -c 1 -i 39 -a 1 r -t 1.18192 -s 2 -d 0 -p ack -e 40 -c 0 -i 41 -a 0 -S 0 -y {10 10} + -t 1.18192 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 48 -a 0 -S 0 -f 0 -m 0 -y {14 14} - -t 1.18192 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 48 -a 0 -S 0 -y {14 14} h -t 1.18192 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 48 -a 0 -S 0 -y {-1 -1} + -t 1.2 -s 1 -d 2 -p cbr -e 500 -c 1 -i 49 -a 1 - -t 1.2 -s 1 -d 2 -p cbr -e 500 -c 1 -i 49 -a 1 h -t 1.2 -s 1 -d 2 -p cbr -e 500 -c 1 -i 49 -a 1 r -t 1.20592 -s 2 -d 0 -p ack -e 40 -c 0 -i 43 -a 0 -S 0 -y {11 11} + -t 1.20592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 50 -a 0 -S 0 -f 0 -m 0 -y {15 15} - -t 1.20592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 50 -a 0 -S 0 -y {15 15} h -t 1.20592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 50 -a 0 -S 0 -y {-1 -1} r -t 1.208 -s 1 -d 2 -p cbr -e 500 -c 1 -i 46 -a 1 + -t 1.208 -s 2 -d 3 -p cbr -e 500 -c 1 -i 46 -a 1 - -t 1.208 -s 2 -d 3 -p cbr -e 500 -c 1 -i 46 -a 1 h -t 1.208 -s 2 -d 3 -p cbr -e 500 -c 1 -i 46 -a 1 r -t 1.21592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 45 -a 0 -S 0 -y {12 12} + -t 1.21592 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 45 -a 0 -S 0 -y {12 12} r -t 1.216 -s 2 -d 3 -p cbr -e 500 -c 1 -i 44 -a 1 + -t 1.216 -s 3 -d 5 -p cbr -e 500 -c 1 -i 44 -a 1 - -t 1.216 -s 3 -d 5 -p cbr -e 500 -c 1 -i 44 -a 1 h -t 1.216 -s 3 -d 5 -p cbr -e 500 -c 1 -i 44 -a 1 - -t 1.216 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 45 -a 0 -S 0 -y {12 12} h -t 1.216 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 45 -a 0 -S 0 -y {-1 -1} r -t 1.224 -s 3 -d 5 -p cbr -e 500 -c 1 -i 42 -a 1 r -t 1.23192 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 47 -a 0 -S 0 -y {13 13} + -t 1.23192 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 47 -a 0 -S 0 -y {13 13} - -t 1.232 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 47 -a 0 -S 0 -y {13 13} h -t 1.232 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 47 -a 0 -S 0 -y {-1 -1} r -t 1.24792 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 48 -a 0 -S 0 -y {14 14} + -t 1.24792 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 48 -a 0 -S 0 -y {14 14} - -t 1.248 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 48 -a 0 -S 0 -y {14 14} h -t 1.248 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 48 -a 0 -S 0 -y {-1 -1} + -t 1.25 -s 1 -d 2 -p cbr -e 500 -c 1 -i 51 -a 1 - -t 1.25 -s 1 -d 2 -p cbr -e 500 -c 1 -i 51 -a 1 h -t 1.25 -s 1 -d 2 -p cbr -e 500 -c 1 -i 51 -a 1 r -t 1.258 -s 1 -d 2 -p cbr -e 500 -c 1 -i 49 -a 1 + -t 1.258 -s 2 -d 3 -p cbr -e 500 -c 1 -i 49 -a 1 - -t 1.264 -s 2 -d 3 -p cbr -e 500 -c 1 -i 49 -a 1 h -t 1.264 -s 2 -d 3 -p cbr -e 500 -c 1 -i 49 -a 1 r -t 1.266 -s 2 -d 3 -p cbr -e 500 -c 1 -i 46 -a 1 + -t 1.266 -s 3 -d 5 -p cbr -e 500 -c 1 -i 46 -a 1 - -t 1.266 -s 3 -d 5 -p cbr -e 500 -c 1 -i 46 -a 1 h -t 1.266 -s 3 -d 5 -p cbr -e 500 -c 1 -i 46 -a 1 r -t 1.27192 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 50 -a 0 -S 0 -y {15 15} + -t 1.27192 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 50 -a 0 -S 0 -y {15 15} - -t 1.272 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 50 -a 0 -S 0 -y {15 15} h -t 1.272 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 50 -a 0 -S 0 -y {-1 -1} r -t 1.274 -s 3 -d 5 -p cbr -e 500 -c 1 -i 44 -a 1 r -t 1.282 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 45 -a 0 -S 0 -y {12 12} + -t 1.282 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 45 -a 0 -S 0 -y {12 12} - -t 1.282 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 45 -a 0 -S 0 -y {12 12} h -t 1.282 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 45 -a 0 -S 0 -y {-1 -1} r -t 1.298 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 47 -a 0 -S 0 -y {13 13} + -t 1.298 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 47 -a 0 -S 0 -y {13 13} - -t 1.298 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 47 -a 0 -S 0 -y {13 13} h -t 1.298 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 47 -a 0 -S 0 -y {-1 -1} + -t 1.3 -s 1 -d 2 -p cbr -e 500 -c 1 -i 52 -a 1 - -t 1.3 -s 1 -d 2 -p cbr -e 500 -c 1 -i 52 -a 1 h -t 1.3 -s 1 -d 2 -p cbr -e 500 -c 1 -i 52 -a 1 r -t 1.308 -s 1 -d 2 -p cbr -e 500 -c 1 -i 51 -a 1 + -t 1.308 -s 2 -d 3 -p cbr -e 500 -c 1 -i 51 -a 1 - -t 1.308 -s 2 -d 3 -p cbr -e 500 -c 1 -i 51 -a 1 h -t 1.308 -s 2 -d 3 -p cbr -e 500 -c 1 -i 51 -a 1 r -t 1.314 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 48 -a 0 -S 0 -y {14 14} + -t 1.314 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 48 -a 0 -S 0 -y {14 14} - -t 1.314 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 48 -a 0 -S 0 -y {14 14} h -t 1.314 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 48 -a 0 -S 0 -y {-1 -1} r -t 1.322 -s 2 -d 3 -p cbr -e 500 -c 1 -i 49 -a 1 + -t 1.322 -s 3 -d 5 -p cbr -e 500 -c 1 -i 49 -a 1 - -t 1.322 -s 3 -d 5 -p cbr -e 500 -c 1 -i 49 -a 1 h -t 1.322 -s 3 -d 5 -p cbr -e 500 -c 1 -i 49 -a 1 r -t 1.324 -s 3 -d 5 -p cbr -e 500 -c 1 -i 46 -a 1 r -t 1.338 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 50 -a 0 -S 0 -y {15 15} + -t 1.338 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 50 -a 0 -S 0 -y {15 15} - -t 1.338 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 50 -a 0 -S 0 -y {15 15} h -t 1.338 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 50 -a 0 -S 0 -y {-1 -1} r -t 1.348 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 45 -a 0 -S 0 -y {12 12} + -t 1.348 -s 4 -d 3 -p ack -e 40 -c 0 -i 53 -a 0 -S 0 -y {12 12} - -t 1.348 -s 4 -d 3 -p ack -e 40 -c 0 -i 53 -a 0 -S 0 -y {12 12} h -t 1.348 -s 4 -d 3 -p ack -e 40 -c 0 -i 53 -a 0 -S 0 -y {-1 -1} v -t 1.3500000000000001 sim_annotation 1.3500000000000001 11 Ack_12,13,14,15 + -t 1.35 -s 1 -d 2 -p cbr -e 500 -c 1 -i 54 -a 1 - -t 1.35 -s 1 -d 2 -p cbr -e 500 -c 1 -i 54 -a 1 h -t 1.35 -s 1 -d 2 -p cbr -e 500 -c 1 -i 54 -a 1 r -t 1.358 -s 1 -d 2 -p cbr -e 500 -c 1 -i 52 -a 1 + -t 1.358 -s 2 -d 3 -p cbr -e 500 -c 1 -i 52 -a 1 - -t 1.358 -s 2 -d 3 -p cbr -e 500 -c 1 -i 52 -a 1 h -t 1.358 -s 2 -d 3 -p cbr -e 500 -c 1 -i 52 -a 1 r -t 1.364 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 47 -a 0 -S 0 -y {13 13} + -t 1.364 -s 4 -d 3 -p ack -e 40 -c 0 -i 55 -a 0 -S 0 -y {13 13} - -t 1.364 -s 4 -d 3 -p ack -e 40 -c 0 -i 55 -a 0 -S 0 -y {13 13} h -t 1.364 -s 4 -d 3 -p ack -e 40 -c 0 -i 55 -a 0 -S 0 -y {-1 -1} r -t 1.366 -s 2 -d 3 -p cbr -e 500 -c 1 -i 51 -a 1 + -t 1.366 -s 3 -d 5 -p cbr -e 500 -c 1 -i 51 -a 1 - -t 1.366 -s 3 -d 5 -p cbr -e 500 -c 1 -i 51 -a 1 h -t 1.366 -s 3 -d 5 -p cbr -e 500 -c 1 -i 51 -a 1 r -t 1.38 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 48 -a 0 -S 0 -y {14 14} + -t 1.38 -s 4 -d 3 -p ack -e 40 -c 0 -i 56 -a 0 -S 0 -y {14 14} - -t 1.38 -s 4 -d 3 -p ack -e 40 -c 0 -i 56 -a 0 -S 0 -y {14 14} h -t 1.38 -s 4 -d 3 -p ack -e 40 -c 0 -i 56 -a 0 -S 0 -y {-1 -1} r -t 1.38 -s 3 -d 5 -p cbr -e 500 -c 1 -i 49 -a 1 r -t 1.39864 -s 4 -d 3 -p ack -e 40 -c 0 -i 53 -a 0 -S 0 -y {12 12} + -t 1.39864 -s 3 -d 2 -p ack -e 40 -c 0 -i 53 -a 0 -S 0 -y {12 12} - -t 1.39864 -s 3 -d 2 -p ack -e 40 -c 0 -i 53 -a 0 -S 0 -y {12 12} h -t 1.39864 -s 3 -d 2 -p ack -e 40 -c 0 -i 53 -a 0 -S 0 -y {-1 -1} + -t 1.4 -s 1 -d 2 -p cbr -e 500 -c 1 -i 57 -a 1 - -t 1.4 -s 1 -d 2 -p cbr -e 500 -c 1 -i 57 -a 1 h -t 1.4 -s 1 -d 2 -p cbr -e 500 -c 1 -i 57 -a 1 r -t 1.404 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 50 -a 0 -S 0 -y {15 15} + -t 1.404 -s 4 -d 3 -p ack -e 40 -c 0 -i 58 -a 0 -S 0 -y {15 15} - -t 1.404 -s 4 -d 3 -p ack -e 40 -c 0 -i 58 -a 0 -S 0 -y {15 15} h -t 1.404 -s 4 -d 3 -p ack -e 40 -c 0 -i 58 -a 0 -S 0 -y {-1 -1} r -t 1.408 -s 1 -d 2 -p cbr -e 500 -c 1 -i 54 -a 1 + -t 1.408 -s 2 -d 3 -p cbr -e 500 -c 1 -i 54 -a 1 - -t 1.408 -s 2 -d 3 -p cbr -e 500 -c 1 -i 54 -a 1 h -t 1.408 -s 2 -d 3 -p cbr -e 500 -c 1 -i 54 -a 1 r -t 1.41464 -s 4 -d 3 -p ack -e 40 -c 0 -i 55 -a 0 -S 0 -y {13 13} + -t 1.41464 -s 3 -d 2 -p ack -e 40 -c 0 -i 55 -a 0 -S 0 -y {13 13} - -t 1.41464 -s 3 -d 2 -p ack -e 40 -c 0 -i 55 -a 0 -S 0 -y {13 13} h -t 1.41464 -s 3 -d 2 -p ack -e 40 -c 0 -i 55 -a 0 -S 0 -y {-1 -1} r -t 1.416 -s 2 -d 3 -p cbr -e 500 -c 1 -i 52 -a 1 + -t 1.416 -s 3 -d 5 -p cbr -e 500 -c 1 -i 52 -a 1 - -t 1.416 -s 3 -d 5 -p cbr -e 500 -c 1 -i 52 -a 1 h -t 1.416 -s 3 -d 5 -p cbr -e 500 -c 1 -i 52 -a 1 r -t 1.424 -s 3 -d 5 -p cbr -e 500 -c 1 -i 51 -a 1 r -t 1.43064 -s 4 -d 3 -p ack -e 40 -c 0 -i 56 -a 0 -S 0 -y {14 14} + -t 1.43064 -s 3 -d 2 -p ack -e 40 -c 0 -i 56 -a 0 -S 0 -y {14 14} - -t 1.43064 -s 3 -d 2 -p ack -e 40 -c 0 -i 56 -a 0 -S 0 -y {14 14} h -t 1.43064 -s 3 -d 2 -p ack -e 40 -c 0 -i 56 -a 0 -S 0 -y {-1 -1} r -t 1.44928 -s 3 -d 2 -p ack -e 40 -c 0 -i 53 -a 0 -S 0 -y {12 12} + -t 1.44928 -s 2 -d 0 -p ack -e 40 -c 0 -i 53 -a 0 -S 0 -y {12 12} - -t 1.44928 -s 2 -d 0 -p ack -e 40 -c 0 -i 53 -a 0 -S 0 -f 0 -m 1 -y {12 12} h -t 1.44928 -s 2 -d 0 -p ack -e 40 -c 0 -i 53 -a 0 -S 0 -y {-1 -1} + -t 1.45 -s 1 -d 2 -p cbr -e 500 -c 1 -i 59 -a 1 - -t 1.45 -s 1 -d 2 -p cbr -e 500 -c 1 -i 59 -a 1 h -t 1.45 -s 1 -d 2 -p cbr -e 500 -c 1 -i 59 -a 1 r -t 1.45464 -s 4 -d 3 -p ack -e 40 -c 0 -i 58 -a 0 -S 0 -y {15 15} + -t 1.45464 -s 3 -d 2 -p ack -e 40 -c 0 -i 58 -a 0 -S 0 -y {15 15} - -t 1.45464 -s 3 -d 2 -p ack -e 40 -c 0 -i 58 -a 0 -S 0 -y {15 15} h -t 1.45464 -s 3 -d 2 -p ack -e 40 -c 0 -i 58 -a 0 -S 0 -y {-1 -1} r -t 1.458 -s 1 -d 2 -p cbr -e 500 -c 1 -i 57 -a 1 + -t 1.458 -s 2 -d 3 -p cbr -e 500 -c 1 -i 57 -a 1 - -t 1.458 -s 2 -d 3 -p cbr -e 500 -c 1 -i 57 -a 1 h -t 1.458 -s 2 -d 3 -p cbr -e 500 -c 1 -i 57 -a 1 r -t 1.46528 -s 3 -d 2 -p ack -e 40 -c 0 -i 55 -a 0 -S 0 -y {13 13} + -t 1.46528 -s 2 -d 0 -p ack -e 40 -c 0 -i 55 -a 0 -S 0 -y {13 13} - -t 1.46528 -s 2 -d 0 -p ack -e 40 -c 0 -i 55 -a 0 -S 0 -f 0 -m 1 -y {13 13} h -t 1.46528 -s 2 -d 0 -p ack -e 40 -c 0 -i 55 -a 0 -S 0 -y {-1 -1} r -t 1.466 -s 2 -d 3 -p cbr -e 500 -c 1 -i 54 -a 1 + -t 1.466 -s 3 -d 5 -p cbr -e 500 -c 1 -i 54 -a 1 - -t 1.466 -s 3 -d 5 -p cbr -e 500 -c 1 -i 54 -a 1 h -t 1.466 -s 3 -d 5 -p cbr -e 500 -c 1 -i 54 -a 1 r -t 1.474 -s 3 -d 5 -p cbr -e 500 -c 1 -i 52 -a 1 r -t 1.48128 -s 3 -d 2 -p ack -e 40 -c 0 -i 56 -a 0 -S 0 -y {14 14} + -t 1.48128 -s 2 -d 0 -p ack -e 40 -c 0 -i 56 -a 0 -S 0 -y {14 14} - -t 1.48128 -s 2 -d 0 -p ack -e 40 -c 0 -i 56 -a 0 -S 0 -f 0 -m 1 -y {14 14} h -t 1.48128 -s 2 -d 0 -p ack -e 40 -c 0 -i 56 -a 0 -S 0 -y {-1 -1} r -t 1.49992 -s 2 -d 0 -p ack -e 40 -c 0 -i 53 -a 0 -S 0 -y {12 12} + -t 1.49992 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 60 -a 0 -S 0 -f 0 -m 0 -y {16 16} - -t 1.49992 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 60 -a 0 -S 0 -y {16 16} h -t 1.49992 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 60 -a 0 -S 0 -y {-1 -1} v -t 1.5 sim_annotation 1.5 12 Send Packet_16,17,18,19 : window size, 4 + -t 1.5 -s 1 -d 2 -p cbr -e 500 -c 1 -i 61 -a 1 - -t 1.5 -s 1 -d 2 -p cbr -e 500 -c 1 -i 61 -a 1 h -t 1.5 -s 1 -d 2 -p cbr -e 500 -c 1 -i 61 -a 1 r -t 1.50528 -s 3 -d 2 -p ack -e 40 -c 0 -i 58 -a 0 -S 0 -y {15 15} + -t 1.50528 -s 2 -d 0 -p ack -e 40 -c 0 -i 58 -a 0 -S 0 -y {15 15} - -t 1.50528 -s 2 -d 0 -p ack -e 40 -c 0 -i 58 -a 0 -S 0 -f 0 -m 1 -y {15 15} h -t 1.50528 -s 2 -d 0 -p ack -e 40 -c 0 -i 58 -a 0 -S 0 -y {-1 -1} r -t 1.508 -s 1 -d 2 -p cbr -e 500 -c 1 -i 59 -a 1 + -t 1.508 -s 2 -d 3 -p cbr -e 500 -c 1 -i 59 -a 1 - -t 1.508 -s 2 -d 3 -p cbr -e 500 -c 1 -i 59 -a 1 h -t 1.508 -s 2 -d 3 -p cbr -e 500 -c 1 -i 59 -a 1 r -t 1.51592 -s 2 -d 0 -p ack -e 40 -c 0 -i 55 -a 0 -S 0 -y {13 13} + -t 1.51592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 62 -a 0 -S 0 -f 0 -m 0 -y {17 17} - -t 1.51592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 62 -a 0 -S 0 -y {17 17} h -t 1.51592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 62 -a 0 -S 0 -y {-1 -1} r -t 1.516 -s 2 -d 3 -p cbr -e 500 -c 1 -i 57 -a 1 + -t 1.516 -s 3 -d 5 -p cbr -e 500 -c 1 -i 57 -a 1 - -t 1.516 -s 3 -d 5 -p cbr -e 500 -c 1 -i 57 -a 1 h -t 1.516 -s 3 -d 5 -p cbr -e 500 -c 1 -i 57 -a 1 r -t 1.524 -s 3 -d 5 -p cbr -e 500 -c 1 -i 54 -a 1 r -t 1.53192 -s 2 -d 0 -p ack -e 40 -c 0 -i 56 -a 0 -S 0 -y {14 14} + -t 1.53192 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 63 -a 0 -S 0 -f 0 -m 0 -y {18 18} - -t 1.53192 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 63 -a 0 -S 0 -y {18 18} h -t 1.53192 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 63 -a 0 -S 0 -y {-1 -1} + -t 1.55 -s 1 -d 2 -p cbr -e 500 -c 1 -i 64 -a 1 - -t 1.55 -s 1 -d 2 -p cbr -e 500 -c 1 -i 64 -a 1 h -t 1.55 -s 1 -d 2 -p cbr -e 500 -c 1 -i 64 -a 1 r -t 1.55592 -s 2 -d 0 -p ack -e 40 -c 0 -i 58 -a 0 -S 0 -y {15 15} + -t 1.55592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -f 0 -m 0 -y {19 19} - -t 1.55592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {19 19} h -t 1.55592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {-1 -1} r -t 1.558 -s 1 -d 2 -p cbr -e 500 -c 1 -i 61 -a 1 + -t 1.558 -s 2 -d 3 -p cbr -e 500 -c 1 -i 61 -a 1 - -t 1.558 -s 2 -d 3 -p cbr -e 500 -c 1 -i 61 -a 1 h -t 1.558 -s 2 -d 3 -p cbr -e 500 -c 1 -i 61 -a 1 r -t 1.56592 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 60 -a 0 -S 0 -y {16 16} + -t 1.56592 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 60 -a 0 -S 0 -y {16 16} r -t 1.566 -s 2 -d 3 -p cbr -e 500 -c 1 -i 59 -a 1 + -t 1.566 -s 3 -d 5 -p cbr -e 500 -c 1 -i 59 -a 1 - -t 1.566 -s 3 -d 5 -p cbr -e 500 -c 1 -i 59 -a 1 h -t 1.566 -s 3 -d 5 -p cbr -e 500 -c 1 -i 59 -a 1 - -t 1.566 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 60 -a 0 -S 0 -y {16 16} h -t 1.566 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 60 -a 0 -S 0 -y {-1 -1} r -t 1.574 -s 3 -d 5 -p cbr -e 500 -c 1 -i 57 -a 1 r -t 1.58192 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 62 -a 0 -S 0 -y {17 17} + -t 1.58192 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 62 -a 0 -S 0 -y {17 17} - -t 1.582 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 62 -a 0 -S 0 -y {17 17} h -t 1.582 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 62 -a 0 -S 0 -y {-1 -1} r -t 1.59792 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 63 -a 0 -S 0 -y {18 18} + -t 1.59792 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 63 -a 0 -S 0 -y {18 18} - -t 1.598 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 63 -a 0 -S 0 -y {18 18} h -t 1.598 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 63 -a 0 -S 0 -y {-1 -1} + -t 1.6 -s 1 -d 2 -p cbr -e 500 -c 1 -i 66 -a 1 - -t 1.6 -s 1 -d 2 -p cbr -e 500 -c 1 -i 66 -a 1 h -t 1.6 -s 1 -d 2 -p cbr -e 500 -c 1 -i 66 -a 1 r -t 1.608 -s 1 -d 2 -p cbr -e 500 -c 1 -i 64 -a 1 + -t 1.608 -s 2 -d 3 -p cbr -e 500 -c 1 -i 64 -a 1 - -t 1.614 -s 2 -d 3 -p cbr -e 500 -c 1 -i 64 -a 1 h -t 1.614 -s 2 -d 3 -p cbr -e 500 -c 1 -i 64 -a 1 r -t 1.616 -s 2 -d 3 -p cbr -e 500 -c 1 -i 61 -a 1 + -t 1.616 -s 3 -d 5 -p cbr -e 500 -c 1 -i 61 -a 1 - -t 1.616 -s 3 -d 5 -p cbr -e 500 -c 1 -i 61 -a 1 h -t 1.616 -s 3 -d 5 -p cbr -e 500 -c 1 -i 61 -a 1 r -t 1.62192 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {19 19} + -t 1.62192 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {19 19} - -t 1.622 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {19 19} h -t 1.622 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {-1 -1} r -t 1.624 -s 3 -d 5 -p cbr -e 500 -c 1 -i 59 -a 1 r -t 1.632 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 60 -a 0 -S 0 -y {16 16} + -t 1.632 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 60 -a 0 -S 0 -y {16 16} - -t 1.632 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 60 -a 0 -S 0 -y {16 16} h -t 1.632 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 60 -a 0 -S 0 -y {-1 -1} r -t 1.648 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 62 -a 0 -S 0 -y {17 17} + -t 1.648 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 62 -a 0 -S 0 -y {17 17} - -t 1.648 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 62 -a 0 -S 0 -y {17 17} h -t 1.648 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 62 -a 0 -S 0 -y {-1 -1} + -t 1.65 -s 1 -d 2 -p cbr -e 500 -c 1 -i 67 -a 1 - -t 1.65 -s 1 -d 2 -p cbr -e 500 -c 1 -i 67 -a 1 h -t 1.65 -s 1 -d 2 -p cbr -e 500 -c 1 -i 67 -a 1 r -t 1.658 -s 1 -d 2 -p cbr -e 500 -c 1 -i 66 -a 1 + -t 1.658 -s 2 -d 3 -p cbr -e 500 -c 1 -i 66 -a 1 - -t 1.658 -s 2 -d 3 -p cbr -e 500 -c 1 -i 66 -a 1 h -t 1.658 -s 2 -d 3 -p cbr -e 500 -c 1 -i 66 -a 1 r -t 1.664 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 63 -a 0 -S 0 -y {18 18} + -t 1.664 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 63 -a 0 -S 0 -y {18 18} - -t 1.664 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 63 -a 0 -S 0 -y {18 18} h -t 1.664 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 63 -a 0 -S 0 -y {-1 -1} r -t 1.672 -s 2 -d 3 -p cbr -e 500 -c 1 -i 64 -a 1 + -t 1.672 -s 3 -d 5 -p cbr -e 500 -c 1 -i 64 -a 1 - -t 1.672 -s 3 -d 5 -p cbr -e 500 -c 1 -i 64 -a 1 h -t 1.672 -s 3 -d 5 -p cbr -e 500 -c 1 -i 64 -a 1 r -t 1.674 -s 3 -d 5 -p cbr -e 500 -c 1 -i 61 -a 1 r -t 1.688 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {19 19} + -t 1.688 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {19 19} - -t 1.688 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {19 19} h -t 1.688 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {-1 -1} r -t 1.698 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 60 -a 0 -S 0 -y {16 16} + -t 1.698 -s 4 -d 3 -p ack -e 40 -c 0 -i 68 -a 0 -S 0 -y {16 16} - -t 1.698 -s 4 -d 3 -p ack -e 40 -c 0 -i 68 -a 0 -S 0 -y {16 16} h -t 1.698 -s 4 -d 3 -p ack -e 40 -c 0 -i 68 -a 0 -S 0 -y {-1 -1} r -t 1.708 -s 1 -d 2 -p cbr -e 500 -c 1 -i 67 -a 1 + -t 1.708 -s 2 -d 3 -p cbr -e 500 -c 1 -i 67 -a 1 - -t 1.708 -s 2 -d 3 -p cbr -e 500 -c 1 -i 67 -a 1 h -t 1.708 -s 2 -d 3 -p cbr -e 500 -c 1 -i 67 -a 1 v -t 1.71 sim_annotation 1.71 13 Ack_16,17,18,19 r -t 1.714 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 62 -a 0 -S 0 -y {17 17} + -t 1.714 -s 4 -d 3 -p ack -e 40 -c 0 -i 69 -a 0 -S 0 -y {17 17} - -t 1.714 -s 4 -d 3 -p ack -e 40 -c 0 -i 69 -a 0 -S 0 -y {17 17} h -t 1.714 -s 4 -d 3 -p ack -e 40 -c 0 -i 69 -a 0 -S 0 -y {-1 -1} r -t 1.716 -s 2 -d 3 -p cbr -e 500 -c 1 -i 66 -a 1 + -t 1.716 -s 3 -d 5 -p cbr -e 500 -c 1 -i 66 -a 1 - -t 1.716 -s 3 -d 5 -p cbr -e 500 -c 1 -i 66 -a 1 h -t 1.716 -s 3 -d 5 -p cbr -e 500 -c 1 -i 66 -a 1 r -t 1.73 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 63 -a 0 -S 0 -y {18 18} + -t 1.73 -s 4 -d 3 -p ack -e 40 -c 0 -i 70 -a 0 -S 0 -y {18 18} - -t 1.73 -s 4 -d 3 -p ack -e 40 -c 0 -i 70 -a 0 -S 0 -y {18 18} h -t 1.73 -s 4 -d 3 -p ack -e 40 -c 0 -i 70 -a 0 -S 0 -y {-1 -1} r -t 1.73 -s 3 -d 5 -p cbr -e 500 -c 1 -i 64 -a 1 r -t 1.74864 -s 4 -d 3 -p ack -e 40 -c 0 -i 68 -a 0 -S 0 -y {16 16} + -t 1.74864 -s 3 -d 2 -p ack -e 40 -c 0 -i 68 -a 0 -S 0 -y {16 16} - -t 1.74864 -s 3 -d 2 -p ack -e 40 -c 0 -i 68 -a 0 -S 0 -y {16 16} h -t 1.74864 -s 3 -d 2 -p ack -e 40 -c 0 -i 68 -a 0 -S 0 -y {-1 -1} r -t 1.754 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {19 19} + -t 1.754 -s 4 -d 3 -p ack -e 40 -c 0 -i 71 -a 0 -S 0 -y {19 19} - -t 1.754 -s 4 -d 3 -p ack -e 40 -c 0 -i 71 -a 0 -S 0 -y {19 19} h -t 1.754 -s 4 -d 3 -p ack -e 40 -c 0 -i 71 -a 0 -S 0 -y {-1 -1} r -t 1.76464 -s 4 -d 3 -p ack -e 40 -c 0 -i 69 -a 0 -S 0 -y {17 17} + -t 1.76464 -s 3 -d 2 -p ack -e 40 -c 0 -i 69 -a 0 -S 0 -y {17 17} - -t 1.76464 -s 3 -d 2 -p ack -e 40 -c 0 -i 69 -a 0 -S 0 -y {17 17} h -t 1.76464 -s 3 -d 2 -p ack -e 40 -c 0 -i 69 -a 0 -S 0 -y {-1 -1} r -t 1.766 -s 2 -d 3 -p cbr -e 500 -c 1 -i 67 -a 1 + -t 1.766 -s 3 -d 5 -p cbr -e 500 -c 1 -i 67 -a 1 - -t 1.766 -s 3 -d 5 -p cbr -e 500 -c 1 -i 67 -a 1 h -t 1.766 -s 3 -d 5 -p cbr -e 500 -c 1 -i 67 -a 1 r -t 1.774 -s 3 -d 5 -p cbr -e 500 -c 1 -i 66 -a 1 r -t 1.78064 -s 4 -d 3 -p ack -e 40 -c 0 -i 70 -a 0 -S 0 -y {18 18} + -t 1.78064 -s 3 -d 2 -p ack -e 40 -c 0 -i 70 -a 0 -S 0 -y {18 18} - -t 1.78064 -s 3 -d 2 -p ack -e 40 -c 0 -i 70 -a 0 -S 0 -y {18 18} h -t 1.78064 -s 3 -d 2 -p ack -e 40 -c 0 -i 70 -a 0 -S 0 -y {-1 -1} r -t 1.79928 -s 3 -d 2 -p ack -e 40 -c 0 -i 68 -a 0 -S 0 -y {16 16} + -t 1.79928 -s 2 -d 0 -p ack -e 40 -c 0 -i 68 -a 0 -S 0 -y {16 16} - -t 1.79928 -s 2 -d 0 -p ack -e 40 -c 0 -i 68 -a 0 -S 0 -f 0 -m 1 -y {16 16} h -t 1.79928 -s 2 -d 0 -p ack -e 40 -c 0 -i 68 -a 0 -S 0 -y {-1 -1} v -t 1.8 sim_annotation 1.8 14 FTP stops at 1.7 v -t 1.8 sim_annotation 1.8 15 CBR stops at 1.7 r -t 1.80464 -s 4 -d 3 -p ack -e 40 -c 0 -i 71 -a 0 -S 0 -y {19 19} + -t 1.80464 -s 3 -d 2 -p ack -e 40 -c 0 -i 71 -a 0 -S 0 -y {19 19} - -t 1.80464 -s 3 -d 2 -p ack -e 40 -c 0 -i 71 -a 0 -S 0 -y {19 19} h -t 1.80464 -s 3 -d 2 -p ack -e 40 -c 0 -i 71 -a 0 -S 0 -y {-1 -1} r -t 1.81528 -s 3 -d 2 -p ack -e 40 -c 0 -i 69 -a 0 -S 0 -y {17 17} + -t 1.81528 -s 2 -d 0 -p ack -e 40 -c 0 -i 69 -a 0 -S 0 -y {17 17} - -t 1.81528 -s 2 -d 0 -p ack -e 40 -c 0 -i 69 -a 0 -S 0 -f 0 -m 1 -y {17 17} h -t 1.81528 -s 2 -d 0 -p ack -e 40 -c 0 -i 69 -a 0 -S 0 -y {-1 -1} r -t 1.824 -s 3 -d 5 -p cbr -e 500 -c 1 -i 67 -a 1 r -t 1.83128 -s 3 -d 2 -p ack -e 40 -c 0 -i 70 -a 0 -S 0 -y {18 18} + -t 1.83128 -s 2 -d 0 -p ack -e 40 -c 0 -i 70 -a 0 -S 0 -y {18 18} - -t 1.83128 -s 2 -d 0 -p ack -e 40 -c 0 -i 70 -a 0 -S 0 -f 0 -m 1 -y {18 18} h -t 1.83128 -s 2 -d 0 -p ack -e 40 -c 0 -i 70 -a 0 -S 0 -y {-1 -1} r -t 1.84992 -s 2 -d 0 -p ack -e 40 -c 0 -i 68 -a 0 -S 0 -y {16 16} r -t 1.85528 -s 3 -d 2 -p ack -e 40 -c 0 -i 71 -a 0 -S 0 -y {19 19} + -t 1.85528 -s 2 -d 0 -p ack -e 40 -c 0 -i 71 -a 0 -S 0 -y {19 19} - -t 1.85528 -s 2 -d 0 -p ack -e 40 -c 0 -i 71 -a 0 -S 0 -f 0 -m 1 -y {19 19} h -t 1.85528 -s 2 -d 0 -p ack -e 40 -c 0 -i 71 -a 0 -S 0 -y {-1 -1} r -t 1.86592 -s 2 -d 0 -p ack -e 40 -c 0 -i 69 -a 0 -S 0 -y {17 17} r -t 1.88192 -s 2 -d 0 -p ack -e 40 -c 0 -i 70 -a 0 -S 0 -y {18 18} r -t 1.90592 -s 2 -d 0 -p ack -e 40 -c 0 -i 71 -a 0 -S 0 -y {19 19} nam-1.15/edu/B3-sliding-window.tcl0000664000076400007660000000733507024407021015561 0ustar tomhnsnam# sliding window protocol in normal situation # features : labeling, annotation, nam-graph, and window size monitoring # all packets look black cause of supporting nam-graph # You could run 'B3-sliding-color.nam' to see the colors of each traffic set ns [new Simulator] $ns color 1 red #$ns trace-all [open B3-sliding-window.tr w] #$ns namtrace-all [open B3-sliding-window.nam w] foreach i "s1 s2 r1 r2 s3 s4" { set node_($i) [$ns node] } $node_(s2) color "red" $node_(s4) color "red" $node_(r1) color "blue" $node_(r2) color "blue" $node_(r1) shape "rectangular" $node_(r2) shape "rectangular" $ns at 0.0 "$node_(s1) label Sliding-W-sender" $ns at 0.0 "$node_(s2) label CBR-sender" $ns at 0.0 "$node_(s3) label Sliding-W-receiver" $ns at 0.0 "$node_(s4) label CBR-receiver" $ns duplex-link $node_(s1) $node_(r1) 0.5Mb 50ms DropTail $ns duplex-link $node_(s2) $node_(r1) 0.5Mb 50ms DropTail $ns duplex-link $node_(r1) $node_(r2) 0.5Mb 50ms DropTail $ns duplex-link $node_(r2) $node_(s3) 0.5Mb 50ms DropTail $ns duplex-link $node_(r2) $node_(s4) 0.5Mb 50ms DropTail $ns queue-limit $node_(r1) $node_(r2) 100 $ns queue-limit $node_(r2) $node_(r1) 100 $ns duplex-link-op $node_(s1) $node_(r1) orient right-down $ns duplex-link-op $node_(s2) $node_(r1) orient right-up $ns duplex-link-op $node_(r1) $node_(r2) orient right $ns duplex-link-op $node_(r2) $node_(s3) orient right-up $ns duplex-link-op $node_(r2) $node_(s4) orient right-down $ns duplex-link-op $node_(r1) $node_(r2) queuePos 0.5 $ns duplex-link-op $node_(r2) $node_(r1) queuePos 0.5 Agent/TCP set nam_tracevar_ true # setting sliding window size to 4 Agent/TCP set maxcwnd_ 4 ### sliding-window protocol between s1 and s3 (Black) #set sliding [new Agent/TCP/SlidingWindow] set sliding [new Agent/TCP] $sliding set fid_ 0 $ns attach-agent $node_(s1) $sliding #set sink [new Agent/TCPSink/SlidingWindowSink] set sink [new Agent/TCPSink] $ns attach-agent $node_(s3) $sink $ns connect $sliding $sink set ftp [new Application/FTP] $ftp attach-agent $sliding $ns add-agent-trace $sliding tcp $ns monitor-agent-trace $sliding $sliding tracevar cwnd_ ### CBR traffic between s2 and s4 (Red) set cbr [$ns create-connection CBR $node_(s2) Null $node_(s4) 1] $cbr set packetSize_ 500 $cbr set interval_ 0.05 $cbr set class_ 1 proc finish {} { global ns $ns flush-trace # puts "filtering..." # exec tclsh ../bin/namfilter.tcl B3-sliding-window.nam puts "running nam..." exec nam B3-sliding-window.nam & exit 0 } ### set operations $ns at 0.1 "$ftp start" $ns at 1.7 "$ftp stop" $ns at 0.1 "$cbr start" $ns at 1.7 "$cbr stop" $ns at 2.0 "finish" ### add annotations $ns at 0.0 "$ns trace-annotate \"Normal operation of with window size, 4\"" $ns at 0.1 "$ns trace-annotate \"FTP starts at 0.1\"" $ns at 0.1 "$ns trace-annotate \"CBR starts at 0.1\"" $ns at 0.11 "$ns trace-annotate \"Send Packet_0,1,2,3 : window size, 4\"" $ns at 0.32 "$ns trace-annotate \"Ack_0,1,2,3\"" $ns at 0.46 "$ns trace-annotate \"Send Packet_4,5,6,7 : window size, 4\"" $ns at 0.66 "$ns trace-annotate \"Ack_4,5,6,7\"" $ns at 0.81 "$ns trace-annotate \"Send Packet_8,9,10,11 : window size, 4\"" $ns at 1.00 "$ns trace-annotate \"Ack_8,9,10,11\"" $ns at 1.16 "$ns trace-annotate \"Send Packet_12,13,14,15 : window size, 4\"" $ns at 1.35 "$ns trace-annotate \"Ack_12,13,14,15\"" $ns at 1.50 "$ns trace-annotate \"Send Packet_16,17,18,19 : window size, 4\"" $ns at 1.71 "$ns trace-annotate \"Ack_16,17,18,19\"" $ns at 1.8 "$ns trace-annotate \"FTP stops at 1.7\"" $ns at 1.8 "$ns trace-annotate \"CBR stops at 1.7\"" $ns run nam-1.15/edu/B3-sliding-window.tr0000664000076400007660000007142506756702602015443 0ustar tomhnsnamv 0 eval {set sim_annotation {Normal operation of with window size, 4}} + 0.1 0 2 tcp 1000 ------- 0 0.0 4.0 0 0 - 0.1 0 2 tcp 1000 ------- 0 0.0 4.0 0 0 + 0.1 0 2 tcp 1000 ------- 0 0.0 4.0 1 1 + 0.1 0 2 tcp 1000 ------- 0 0.0 4.0 2 2 + 0.1 0 2 tcp 1000 ------- 0 0.0 4.0 3 3 + 0.1 1 2 cbr 500 ------- 1 1.0 5.0 0 4 - 0.1 1 2 cbr 500 ------- 1 1.0 5.0 0 4 v 0.10000000000000001 eval {set sim_annotation {FTP starts at 0.1}} v 0.10000000000000001 eval {set sim_annotation {CBR starts at 0.1}} v 0.11 eval {set sim_annotation {Send Packet_0,1,2,3 : window size, 4}} - 0.116 0 2 tcp 1000 ------- 0 0.0 4.0 1 1 - 0.132 0 2 tcp 1000 ------- 0 0.0 4.0 2 2 - 0.148 0 2 tcp 1000 ------- 0 0.0 4.0 3 3 + 0.15 1 2 cbr 500 ------- 1 1.0 5.0 1 5 - 0.15 1 2 cbr 500 ------- 1 1.0 5.0 1 5 r 0.158 1 2 cbr 500 ------- 1 1.0 5.0 0 4 + 0.158 2 3 cbr 500 ------- 1 1.0 5.0 0 4 - 0.158 2 3 cbr 500 ------- 1 1.0 5.0 0 4 r 0.166 0 2 tcp 1000 ------- 0 0.0 4.0 0 0 + 0.166 2 3 tcp 1000 ------- 0 0.0 4.0 0 0 - 0.166 2 3 tcp 1000 ------- 0 0.0 4.0 0 0 r 0.182 0 2 tcp 1000 ------- 0 0.0 4.0 1 1 + 0.182 2 3 tcp 1000 ------- 0 0.0 4.0 1 1 - 0.182 2 3 tcp 1000 ------- 0 0.0 4.0 1 1 r 0.198 0 2 tcp 1000 ------- 0 0.0 4.0 2 2 + 0.198 2 3 tcp 1000 ------- 0 0.0 4.0 2 2 - 0.198 2 3 tcp 1000 ------- 0 0.0 4.0 2 2 + 0.2 1 2 cbr 500 ------- 1 1.0 5.0 2 6 - 0.2 1 2 cbr 500 ------- 1 1.0 5.0 2 6 r 0.208 1 2 cbr 500 ------- 1 1.0 5.0 1 5 + 0.208 2 3 cbr 500 ------- 1 1.0 5.0 1 5 r 0.214 0 2 tcp 1000 ------- 0 0.0 4.0 3 3 + 0.214 2 3 tcp 1000 ------- 0 0.0 4.0 3 3 - 0.214 2 3 cbr 500 ------- 1 1.0 5.0 1 5 r 0.216 2 3 cbr 500 ------- 1 1.0 5.0 0 4 + 0.216 3 5 cbr 500 ------- 1 1.0 5.0 0 4 - 0.216 3 5 cbr 500 ------- 1 1.0 5.0 0 4 - 0.222 2 3 tcp 1000 ------- 0 0.0 4.0 3 3 r 0.232 2 3 tcp 1000 ------- 0 0.0 4.0 0 0 + 0.232 3 4 tcp 1000 ------- 0 0.0 4.0 0 0 - 0.232 3 4 tcp 1000 ------- 0 0.0 4.0 0 0 r 0.248 2 3 tcp 1000 ------- 0 0.0 4.0 1 1 + 0.248 3 4 tcp 1000 ------- 0 0.0 4.0 1 1 - 0.248 3 4 tcp 1000 ------- 0 0.0 4.0 1 1 + 0.25 1 2 cbr 500 ------- 1 1.0 5.0 3 7 - 0.25 1 2 cbr 500 ------- 1 1.0 5.0 3 7 r 0.258 1 2 cbr 500 ------- 1 1.0 5.0 2 6 + 0.258 2 3 cbr 500 ------- 1 1.0 5.0 2 6 - 0.258 2 3 cbr 500 ------- 1 1.0 5.0 2 6 r 0.264 2 3 tcp 1000 ------- 0 0.0 4.0 2 2 + 0.264 3 4 tcp 1000 ------- 0 0.0 4.0 2 2 - 0.264 3 4 tcp 1000 ------- 0 0.0 4.0 2 2 r 0.272 2 3 cbr 500 ------- 1 1.0 5.0 1 5 + 0.272 3 5 cbr 500 ------- 1 1.0 5.0 1 5 - 0.272 3 5 cbr 500 ------- 1 1.0 5.0 1 5 r 0.274 3 5 cbr 500 ------- 1 1.0 5.0 0 4 r 0.288 2 3 tcp 1000 ------- 0 0.0 4.0 3 3 + 0.288 3 4 tcp 1000 ------- 0 0.0 4.0 3 3 - 0.288 3 4 tcp 1000 ------- 0 0.0 4.0 3 3 r 0.298 3 4 tcp 1000 ------- 0 0.0 4.0 0 0 + 0.298 4 3 ack 40 ------- 0 4.0 0.0 0 8 - 0.298 4 3 ack 40 ------- 0 4.0 0.0 0 8 + 0.3 1 2 cbr 500 ------- 1 1.0 5.0 4 9 - 0.3 1 2 cbr 500 ------- 1 1.0 5.0 4 9 r 0.308 1 2 cbr 500 ------- 1 1.0 5.0 3 7 + 0.308 2 3 cbr 500 ------- 1 1.0 5.0 3 7 - 0.308 2 3 cbr 500 ------- 1 1.0 5.0 3 7 r 0.314 3 4 tcp 1000 ------- 0 0.0 4.0 1 1 + 0.314 4 3 ack 40 ------- 0 4.0 0.0 1 10 - 0.314 4 3 ack 40 ------- 0 4.0 0.0 1 10 r 0.316 2 3 cbr 500 ------- 1 1.0 5.0 2 6 + 0.316 3 5 cbr 500 ------- 1 1.0 5.0 2 6 - 0.316 3 5 cbr 500 ------- 1 1.0 5.0 2 6 v 0.32000000000000001 eval {set sim_annotation {Ack_0,1,2,3}} r 0.33 3 4 tcp 1000 ------- 0 0.0 4.0 2 2 + 0.33 4 3 ack 40 ------- 0 4.0 0.0 2 11 - 0.33 4 3 ack 40 ------- 0 4.0 0.0 2 11 r 0.33 3 5 cbr 500 ------- 1 1.0 5.0 1 5 r 0.34864 4 3 ack 40 ------- 0 4.0 0.0 0 8 + 0.34864 3 2 ack 40 ------- 0 4.0 0.0 0 8 - 0.34864 3 2 ack 40 ------- 0 4.0 0.0 0 8 + 0.35 1 2 cbr 500 ------- 1 1.0 5.0 5 12 - 0.35 1 2 cbr 500 ------- 1 1.0 5.0 5 12 r 0.354 3 4 tcp 1000 ------- 0 0.0 4.0 3 3 + 0.354 4 3 ack 40 ------- 0 4.0 0.0 3 13 - 0.354 4 3 ack 40 ------- 0 4.0 0.0 3 13 r 0.358 1 2 cbr 500 ------- 1 1.0 5.0 4 9 + 0.358 2 3 cbr 500 ------- 1 1.0 5.0 4 9 - 0.358 2 3 cbr 500 ------- 1 1.0 5.0 4 9 r 0.36464 4 3 ack 40 ------- 0 4.0 0.0 1 10 + 0.36464 3 2 ack 40 ------- 0 4.0 0.0 1 10 - 0.36464 3 2 ack 40 ------- 0 4.0 0.0 1 10 r 0.366 2 3 cbr 500 ------- 1 1.0 5.0 3 7 + 0.366 3 5 cbr 500 ------- 1 1.0 5.0 3 7 - 0.366 3 5 cbr 500 ------- 1 1.0 5.0 3 7 r 0.374 3 5 cbr 500 ------- 1 1.0 5.0 2 6 r 0.38064 4 3 ack 40 ------- 0 4.0 0.0 2 11 + 0.38064 3 2 ack 40 ------- 0 4.0 0.0 2 11 - 0.38064 3 2 ack 40 ------- 0 4.0 0.0 2 11 r 0.39928 3 2 ack 40 ------- 0 4.0 0.0 0 8 + 0.39928 2 0 ack 40 ------- 0 4.0 0.0 0 8 - 0.39928 2 0 ack 40 ------- 0 4.0 0.0 0 8 + 0.4 1 2 cbr 500 ------- 1 1.0 5.0 6 14 - 0.4 1 2 cbr 500 ------- 1 1.0 5.0 6 14 r 0.40464 4 3 ack 40 ------- 0 4.0 0.0 3 13 + 0.40464 3 2 ack 40 ------- 0 4.0 0.0 3 13 - 0.40464 3 2 ack 40 ------- 0 4.0 0.0 3 13 r 0.408 1 2 cbr 500 ------- 1 1.0 5.0 5 12 + 0.408 2 3 cbr 500 ------- 1 1.0 5.0 5 12 - 0.408 2 3 cbr 500 ------- 1 1.0 5.0 5 12 r 0.41528 3 2 ack 40 ------- 0 4.0 0.0 1 10 + 0.41528 2 0 ack 40 ------- 0 4.0 0.0 1 10 - 0.41528 2 0 ack 40 ------- 0 4.0 0.0 1 10 r 0.416 2 3 cbr 500 ------- 1 1.0 5.0 4 9 + 0.416 3 5 cbr 500 ------- 1 1.0 5.0 4 9 - 0.416 3 5 cbr 500 ------- 1 1.0 5.0 4 9 r 0.424 3 5 cbr 500 ------- 1 1.0 5.0 3 7 r 0.43128 3 2 ack 40 ------- 0 4.0 0.0 2 11 + 0.43128 2 0 ack 40 ------- 0 4.0 0.0 2 11 - 0.43128 2 0 ack 40 ------- 0 4.0 0.0 2 11 r 0.44992 2 0 ack 40 ------- 0 4.0 0.0 0 8 + 0.44992 0 2 tcp 1000 ------- 0 0.0 4.0 4 15 - 0.44992 0 2 tcp 1000 ------- 0 0.0 4.0 4 15 + 0.45 1 2 cbr 500 ------- 1 1.0 5.0 7 16 - 0.45 1 2 cbr 500 ------- 1 1.0 5.0 7 16 r 0.45528 3 2 ack 40 ------- 0 4.0 0.0 3 13 + 0.45528 2 0 ack 40 ------- 0 4.0 0.0 3 13 - 0.45528 2 0 ack 40 ------- 0 4.0 0.0 3 13 r 0.458 1 2 cbr 500 ------- 1 1.0 5.0 6 14 + 0.458 2 3 cbr 500 ------- 1 1.0 5.0 6 14 - 0.458 2 3 cbr 500 ------- 1 1.0 5.0 6 14 v 0.46000000000000002 eval {set sim_annotation {Send Packet_4,5,6,7 : window size, 4}} r 0.46592 2 0 ack 40 ------- 0 4.0 0.0 1 10 + 0.46592 0 2 tcp 1000 ------- 0 0.0 4.0 5 17 - 0.46592 0 2 tcp 1000 ------- 0 0.0 4.0 5 17 r 0.466 2 3 cbr 500 ------- 1 1.0 5.0 5 12 + 0.466 3 5 cbr 500 ------- 1 1.0 5.0 5 12 - 0.466 3 5 cbr 500 ------- 1 1.0 5.0 5 12 r 0.474 3 5 cbr 500 ------- 1 1.0 5.0 4 9 r 0.48192 2 0 ack 40 ------- 0 4.0 0.0 2 11 + 0.48192 0 2 tcp 1000 ------- 0 0.0 4.0 6 18 - 0.48192 0 2 tcp 1000 ------- 0 0.0 4.0 6 18 + 0.5 1 2 cbr 500 ------- 1 1.0 5.0 8 19 - 0.5 1 2 cbr 500 ------- 1 1.0 5.0 8 19 r 0.50592 2 0 ack 40 ------- 0 4.0 0.0 3 13 + 0.50592 0 2 tcp 1000 ------- 0 0.0 4.0 7 20 - 0.50592 0 2 tcp 1000 ------- 0 0.0 4.0 7 20 r 0.508 1 2 cbr 500 ------- 1 1.0 5.0 7 16 + 0.508 2 3 cbr 500 ------- 1 1.0 5.0 7 16 - 0.508 2 3 cbr 500 ------- 1 1.0 5.0 7 16 r 0.51592 0 2 tcp 1000 ------- 0 0.0 4.0 4 15 + 0.51592 2 3 tcp 1000 ------- 0 0.0 4.0 4 15 r 0.516 2 3 cbr 500 ------- 1 1.0 5.0 6 14 + 0.516 3 5 cbr 500 ------- 1 1.0 5.0 6 14 - 0.516 3 5 cbr 500 ------- 1 1.0 5.0 6 14 - 0.516 2 3 tcp 1000 ------- 0 0.0 4.0 4 15 r 0.524 3 5 cbr 500 ------- 1 1.0 5.0 5 12 r 0.53192 0 2 tcp 1000 ------- 0 0.0 4.0 5 17 + 0.53192 2 3 tcp 1000 ------- 0 0.0 4.0 5 17 - 0.532 2 3 tcp 1000 ------- 0 0.0 4.0 5 17 r 0.54792 0 2 tcp 1000 ------- 0 0.0 4.0 6 18 + 0.54792 2 3 tcp 1000 ------- 0 0.0 4.0 6 18 - 0.548 2 3 tcp 1000 ------- 0 0.0 4.0 6 18 + 0.55 1 2 cbr 500 ------- 1 1.0 5.0 9 21 - 0.55 1 2 cbr 500 ------- 1 1.0 5.0 9 21 r 0.558 1 2 cbr 500 ------- 1 1.0 5.0 8 19 + 0.558 2 3 cbr 500 ------- 1 1.0 5.0 8 19 - 0.564 2 3 cbr 500 ------- 1 1.0 5.0 8 19 r 0.566 2 3 cbr 500 ------- 1 1.0 5.0 7 16 + 0.566 3 5 cbr 500 ------- 1 1.0 5.0 7 16 - 0.566 3 5 cbr 500 ------- 1 1.0 5.0 7 16 r 0.57192 0 2 tcp 1000 ------- 0 0.0 4.0 7 20 + 0.57192 2 3 tcp 1000 ------- 0 0.0 4.0 7 20 - 0.572 2 3 tcp 1000 ------- 0 0.0 4.0 7 20 r 0.574 3 5 cbr 500 ------- 1 1.0 5.0 6 14 r 0.582 2 3 tcp 1000 ------- 0 0.0 4.0 4 15 + 0.582 3 4 tcp 1000 ------- 0 0.0 4.0 4 15 - 0.582 3 4 tcp 1000 ------- 0 0.0 4.0 4 15 r 0.598 2 3 tcp 1000 ------- 0 0.0 4.0 5 17 + 0.598 3 4 tcp 1000 ------- 0 0.0 4.0 5 17 - 0.598 3 4 tcp 1000 ------- 0 0.0 4.0 5 17 + 0.6 1 2 cbr 500 ------- 1 1.0 5.0 10 22 - 0.6 1 2 cbr 500 ------- 1 1.0 5.0 10 22 r 0.608 1 2 cbr 500 ------- 1 1.0 5.0 9 21 + 0.608 2 3 cbr 500 ------- 1 1.0 5.0 9 21 - 0.608 2 3 cbr 500 ------- 1 1.0 5.0 9 21 r 0.614 2 3 tcp 1000 ------- 0 0.0 4.0 6 18 + 0.614 3 4 tcp 1000 ------- 0 0.0 4.0 6 18 - 0.614 3 4 tcp 1000 ------- 0 0.0 4.0 6 18 r 0.622 2 3 cbr 500 ------- 1 1.0 5.0 8 19 + 0.622 3 5 cbr 500 ------- 1 1.0 5.0 8 19 - 0.622 3 5 cbr 500 ------- 1 1.0 5.0 8 19 r 0.624 3 5 cbr 500 ------- 1 1.0 5.0 7 16 r 0.638 2 3 tcp 1000 ------- 0 0.0 4.0 7 20 + 0.638 3 4 tcp 1000 ------- 0 0.0 4.0 7 20 - 0.638 3 4 tcp 1000 ------- 0 0.0 4.0 7 20 r 0.648 3 4 tcp 1000 ------- 0 0.0 4.0 4 15 + 0.648 4 3 ack 40 ------- 0 4.0 0.0 4 23 - 0.648 4 3 ack 40 ------- 0 4.0 0.0 4 23 + 0.65 1 2 cbr 500 ------- 1 1.0 5.0 11 24 - 0.65 1 2 cbr 500 ------- 1 1.0 5.0 11 24 r 0.658 1 2 cbr 500 ------- 1 1.0 5.0 10 22 + 0.658 2 3 cbr 500 ------- 1 1.0 5.0 10 22 - 0.658 2 3 cbr 500 ------- 1 1.0 5.0 10 22 v 0.66000000000000003 eval {set sim_annotation {Ack_4,5,6,7}} r 0.664 3 4 tcp 1000 ------- 0 0.0 4.0 5 17 + 0.664 4 3 ack 40 ------- 0 4.0 0.0 5 25 - 0.664 4 3 ack 40 ------- 0 4.0 0.0 5 25 r 0.666 2 3 cbr 500 ------- 1 1.0 5.0 9 21 + 0.666 3 5 cbr 500 ------- 1 1.0 5.0 9 21 - 0.666 3 5 cbr 500 ------- 1 1.0 5.0 9 21 r 0.68 3 4 tcp 1000 ------- 0 0.0 4.0 6 18 + 0.68 4 3 ack 40 ------- 0 4.0 0.0 6 26 - 0.68 4 3 ack 40 ------- 0 4.0 0.0 6 26 r 0.68 3 5 cbr 500 ------- 1 1.0 5.0 8 19 r 0.69864 4 3 ack 40 ------- 0 4.0 0.0 4 23 + 0.69864 3 2 ack 40 ------- 0 4.0 0.0 4 23 - 0.69864 3 2 ack 40 ------- 0 4.0 0.0 4 23 + 0.7 1 2 cbr 500 ------- 1 1.0 5.0 12 27 - 0.7 1 2 cbr 500 ------- 1 1.0 5.0 12 27 r 0.704 3 4 tcp 1000 ------- 0 0.0 4.0 7 20 + 0.704 4 3 ack 40 ------- 0 4.0 0.0 7 28 - 0.704 4 3 ack 40 ------- 0 4.0 0.0 7 28 r 0.708 1 2 cbr 500 ------- 1 1.0 5.0 11 24 + 0.708 2 3 cbr 500 ------- 1 1.0 5.0 11 24 - 0.708 2 3 cbr 500 ------- 1 1.0 5.0 11 24 r 0.71464 4 3 ack 40 ------- 0 4.0 0.0 5 25 + 0.71464 3 2 ack 40 ------- 0 4.0 0.0 5 25 - 0.71464 3 2 ack 40 ------- 0 4.0 0.0 5 25 r 0.716 2 3 cbr 500 ------- 1 1.0 5.0 10 22 + 0.716 3 5 cbr 500 ------- 1 1.0 5.0 10 22 - 0.716 3 5 cbr 500 ------- 1 1.0 5.0 10 22 r 0.724 3 5 cbr 500 ------- 1 1.0 5.0 9 21 r 0.73064 4 3 ack 40 ------- 0 4.0 0.0 6 26 + 0.73064 3 2 ack 40 ------- 0 4.0 0.0 6 26 - 0.73064 3 2 ack 40 ------- 0 4.0 0.0 6 26 r 0.74928 3 2 ack 40 ------- 0 4.0 0.0 4 23 + 0.74928 2 0 ack 40 ------- 0 4.0 0.0 4 23 - 0.74928 2 0 ack 40 ------- 0 4.0 0.0 4 23 + 0.75 1 2 cbr 500 ------- 1 1.0 5.0 13 29 - 0.75 1 2 cbr 500 ------- 1 1.0 5.0 13 29 r 0.75464 4 3 ack 40 ------- 0 4.0 0.0 7 28 + 0.75464 3 2 ack 40 ------- 0 4.0 0.0 7 28 - 0.75464 3 2 ack 40 ------- 0 4.0 0.0 7 28 r 0.758 1 2 cbr 500 ------- 1 1.0 5.0 12 27 + 0.758 2 3 cbr 500 ------- 1 1.0 5.0 12 27 - 0.758 2 3 cbr 500 ------- 1 1.0 5.0 12 27 r 0.76528 3 2 ack 40 ------- 0 4.0 0.0 5 25 + 0.76528 2 0 ack 40 ------- 0 4.0 0.0 5 25 - 0.76528 2 0 ack 40 ------- 0 4.0 0.0 5 25 r 0.766 2 3 cbr 500 ------- 1 1.0 5.0 11 24 + 0.766 3 5 cbr 500 ------- 1 1.0 5.0 11 24 - 0.766 3 5 cbr 500 ------- 1 1.0 5.0 11 24 r 0.774 3 5 cbr 500 ------- 1 1.0 5.0 10 22 r 0.78128 3 2 ack 40 ------- 0 4.0 0.0 6 26 + 0.78128 2 0 ack 40 ------- 0 4.0 0.0 6 26 - 0.78128 2 0 ack 40 ------- 0 4.0 0.0 6 26 r 0.79992 2 0 ack 40 ------- 0 4.0 0.0 4 23 + 0.79992 0 2 tcp 1000 ------- 0 0.0 4.0 8 30 - 0.79992 0 2 tcp 1000 ------- 0 0.0 4.0 8 30 + 0.8 1 2 cbr 500 ------- 1 1.0 5.0 14 31 - 0.8 1 2 cbr 500 ------- 1 1.0 5.0 14 31 r 0.80528 3 2 ack 40 ------- 0 4.0 0.0 7 28 + 0.80528 2 0 ack 40 ------- 0 4.0 0.0 7 28 - 0.80528 2 0 ack 40 ------- 0 4.0 0.0 7 28 r 0.808 1 2 cbr 500 ------- 1 1.0 5.0 13 29 + 0.808 2 3 cbr 500 ------- 1 1.0 5.0 13 29 - 0.808 2 3 cbr 500 ------- 1 1.0 5.0 13 29 v 0.81000000000000005 eval {set sim_annotation {Send Packet_8,9,10,11 : window size, 4}} r 0.81592 2 0 ack 40 ------- 0 4.0 0.0 5 25 + 0.81592 0 2 tcp 1000 ------- 0 0.0 4.0 9 32 - 0.81592 0 2 tcp 1000 ------- 0 0.0 4.0 9 32 r 0.816 2 3 cbr 500 ------- 1 1.0 5.0 12 27 + 0.816 3 5 cbr 500 ------- 1 1.0 5.0 12 27 - 0.816 3 5 cbr 500 ------- 1 1.0 5.0 12 27 r 0.824 3 5 cbr 500 ------- 1 1.0 5.0 11 24 r 0.83192 2 0 ack 40 ------- 0 4.0 0.0 6 26 + 0.83192 0 2 tcp 1000 ------- 0 0.0 4.0 10 33 - 0.83192 0 2 tcp 1000 ------- 0 0.0 4.0 10 33 + 0.85 1 2 cbr 500 ------- 1 1.0 5.0 15 34 - 0.85 1 2 cbr 500 ------- 1 1.0 5.0 15 34 r 0.85592 2 0 ack 40 ------- 0 4.0 0.0 7 28 + 0.85592 0 2 tcp 1000 ------- 0 0.0 4.0 11 35 - 0.85592 0 2 tcp 1000 ------- 0 0.0 4.0 11 35 r 0.858 1 2 cbr 500 ------- 1 1.0 5.0 14 31 + 0.858 2 3 cbr 500 ------- 1 1.0 5.0 14 31 - 0.858 2 3 cbr 500 ------- 1 1.0 5.0 14 31 r 0.86592 0 2 tcp 1000 ------- 0 0.0 4.0 8 30 + 0.86592 2 3 tcp 1000 ------- 0 0.0 4.0 8 30 r 0.866 2 3 cbr 500 ------- 1 1.0 5.0 13 29 + 0.866 3 5 cbr 500 ------- 1 1.0 5.0 13 29 - 0.866 3 5 cbr 500 ------- 1 1.0 5.0 13 29 - 0.866 2 3 tcp 1000 ------- 0 0.0 4.0 8 30 r 0.874 3 5 cbr 500 ------- 1 1.0 5.0 12 27 r 0.88192 0 2 tcp 1000 ------- 0 0.0 4.0 9 32 + 0.88192 2 3 tcp 1000 ------- 0 0.0 4.0 9 32 - 0.882 2 3 tcp 1000 ------- 0 0.0 4.0 9 32 r 0.89792 0 2 tcp 1000 ------- 0 0.0 4.0 10 33 + 0.89792 2 3 tcp 1000 ------- 0 0.0 4.0 10 33 - 0.898 2 3 tcp 1000 ------- 0 0.0 4.0 10 33 + 0.9 1 2 cbr 500 ------- 1 1.0 5.0 16 36 - 0.9 1 2 cbr 500 ------- 1 1.0 5.0 16 36 r 0.908 1 2 cbr 500 ------- 1 1.0 5.0 15 34 + 0.908 2 3 cbr 500 ------- 1 1.0 5.0 15 34 - 0.914 2 3 cbr 500 ------- 1 1.0 5.0 15 34 r 0.916 2 3 cbr 500 ------- 1 1.0 5.0 14 31 + 0.916 3 5 cbr 500 ------- 1 1.0 5.0 14 31 - 0.916 3 5 cbr 500 ------- 1 1.0 5.0 14 31 r 0.92192 0 2 tcp 1000 ------- 0 0.0 4.0 11 35 + 0.92192 2 3 tcp 1000 ------- 0 0.0 4.0 11 35 - 0.922 2 3 tcp 1000 ------- 0 0.0 4.0 11 35 r 0.924 3 5 cbr 500 ------- 1 1.0 5.0 13 29 r 0.932 2 3 tcp 1000 ------- 0 0.0 4.0 8 30 + 0.932 3 4 tcp 1000 ------- 0 0.0 4.0 8 30 - 0.932 3 4 tcp 1000 ------- 0 0.0 4.0 8 30 r 0.948 2 3 tcp 1000 ------- 0 0.0 4.0 9 32 + 0.948 3 4 tcp 1000 ------- 0 0.0 4.0 9 32 - 0.948 3 4 tcp 1000 ------- 0 0.0 4.0 9 32 + 0.95 1 2 cbr 500 ------- 1 1.0 5.0 17 37 - 0.95 1 2 cbr 500 ------- 1 1.0 5.0 17 37 r 0.958 1 2 cbr 500 ------- 1 1.0 5.0 16 36 + 0.958 2 3 cbr 500 ------- 1 1.0 5.0 16 36 - 0.958 2 3 cbr 500 ------- 1 1.0 5.0 16 36 r 0.964 2 3 tcp 1000 ------- 0 0.0 4.0 10 33 + 0.964 3 4 tcp 1000 ------- 0 0.0 4.0 10 33 - 0.964 3 4 tcp 1000 ------- 0 0.0 4.0 10 33 r 0.972 2 3 cbr 500 ------- 1 1.0 5.0 15 34 + 0.972 3 5 cbr 500 ------- 1 1.0 5.0 15 34 - 0.972 3 5 cbr 500 ------- 1 1.0 5.0 15 34 r 0.974 3 5 cbr 500 ------- 1 1.0 5.0 14 31 r 0.988 2 3 tcp 1000 ------- 0 0.0 4.0 11 35 + 0.988 3 4 tcp 1000 ------- 0 0.0 4.0 11 35 - 0.988 3 4 tcp 1000 ------- 0 0.0 4.0 11 35 r 0.998 3 4 tcp 1000 ------- 0 0.0 4.0 8 30 + 0.998 4 3 ack 40 ------- 0 4.0 0.0 8 38 - 0.998 4 3 ack 40 ------- 0 4.0 0.0 8 38 v 1 eval {set sim_annotation {Ack_8,9,10,11}} + 1 1 2 cbr 500 ------- 1 1.0 5.0 18 39 - 1 1 2 cbr 500 ------- 1 1.0 5.0 18 39 r 1.008 1 2 cbr 500 ------- 1 1.0 5.0 17 37 + 1.008 2 3 cbr 500 ------- 1 1.0 5.0 17 37 - 1.008 2 3 cbr 500 ------- 1 1.0 5.0 17 37 r 1.014 3 4 tcp 1000 ------- 0 0.0 4.0 9 32 + 1.014 4 3 ack 40 ------- 0 4.0 0.0 9 40 - 1.014 4 3 ack 40 ------- 0 4.0 0.0 9 40 r 1.016 2 3 cbr 500 ------- 1 1.0 5.0 16 36 + 1.016 3 5 cbr 500 ------- 1 1.0 5.0 16 36 - 1.016 3 5 cbr 500 ------- 1 1.0 5.0 16 36 r 1.03 3 4 tcp 1000 ------- 0 0.0 4.0 10 33 + 1.03 4 3 ack 40 ------- 0 4.0 0.0 10 41 - 1.03 4 3 ack 40 ------- 0 4.0 0.0 10 41 r 1.03 3 5 cbr 500 ------- 1 1.0 5.0 15 34 r 1.04864 4 3 ack 40 ------- 0 4.0 0.0 8 38 + 1.04864 3 2 ack 40 ------- 0 4.0 0.0 8 38 - 1.04864 3 2 ack 40 ------- 0 4.0 0.0 8 38 + 1.05 1 2 cbr 500 ------- 1 1.0 5.0 19 42 - 1.05 1 2 cbr 500 ------- 1 1.0 5.0 19 42 r 1.054 3 4 tcp 1000 ------- 0 0.0 4.0 11 35 + 1.054 4 3 ack 40 ------- 0 4.0 0.0 11 43 - 1.054 4 3 ack 40 ------- 0 4.0 0.0 11 43 r 1.058 1 2 cbr 500 ------- 1 1.0 5.0 18 39 + 1.058 2 3 cbr 500 ------- 1 1.0 5.0 18 39 - 1.058 2 3 cbr 500 ------- 1 1.0 5.0 18 39 r 1.06464 4 3 ack 40 ------- 0 4.0 0.0 9 40 + 1.06464 3 2 ack 40 ------- 0 4.0 0.0 9 40 - 1.06464 3 2 ack 40 ------- 0 4.0 0.0 9 40 r 1.066 2 3 cbr 500 ------- 1 1.0 5.0 17 37 + 1.066 3 5 cbr 500 ------- 1 1.0 5.0 17 37 - 1.066 3 5 cbr 500 ------- 1 1.0 5.0 17 37 r 1.074 3 5 cbr 500 ------- 1 1.0 5.0 16 36 r 1.08064 4 3 ack 40 ------- 0 4.0 0.0 10 41 + 1.08064 3 2 ack 40 ------- 0 4.0 0.0 10 41 - 1.08064 3 2 ack 40 ------- 0 4.0 0.0 10 41 r 1.09928 3 2 ack 40 ------- 0 4.0 0.0 8 38 + 1.09928 2 0 ack 40 ------- 0 4.0 0.0 8 38 - 1.09928 2 0 ack 40 ------- 0 4.0 0.0 8 38 + 1.1 1 2 cbr 500 ------- 1 1.0 5.0 20 44 - 1.1 1 2 cbr 500 ------- 1 1.0 5.0 20 44 r 1.10464 4 3 ack 40 ------- 0 4.0 0.0 11 43 + 1.10464 3 2 ack 40 ------- 0 4.0 0.0 11 43 - 1.10464 3 2 ack 40 ------- 0 4.0 0.0 11 43 r 1.108 1 2 cbr 500 ------- 1 1.0 5.0 19 42 + 1.108 2 3 cbr 500 ------- 1 1.0 5.0 19 42 - 1.108 2 3 cbr 500 ------- 1 1.0 5.0 19 42 r 1.11528 3 2 ack 40 ------- 0 4.0 0.0 9 40 + 1.11528 2 0 ack 40 ------- 0 4.0 0.0 9 40 - 1.11528 2 0 ack 40 ------- 0 4.0 0.0 9 40 r 1.116 2 3 cbr 500 ------- 1 1.0 5.0 18 39 + 1.116 3 5 cbr 500 ------- 1 1.0 5.0 18 39 - 1.116 3 5 cbr 500 ------- 1 1.0 5.0 18 39 r 1.124 3 5 cbr 500 ------- 1 1.0 5.0 17 37 r 1.13128 3 2 ack 40 ------- 0 4.0 0.0 10 41 + 1.13128 2 0 ack 40 ------- 0 4.0 0.0 10 41 - 1.13128 2 0 ack 40 ------- 0 4.0 0.0 10 41 r 1.14992 2 0 ack 40 ------- 0 4.0 0.0 8 38 + 1.14992 0 2 tcp 1000 ------- 0 0.0 4.0 12 45 - 1.14992 0 2 tcp 1000 ------- 0 0.0 4.0 12 45 + 1.15 1 2 cbr 500 ------- 1 1.0 5.0 21 46 - 1.15 1 2 cbr 500 ------- 1 1.0 5.0 21 46 r 1.15528 3 2 ack 40 ------- 0 4.0 0.0 11 43 + 1.15528 2 0 ack 40 ------- 0 4.0 0.0 11 43 - 1.15528 2 0 ack 40 ------- 0 4.0 0.0 11 43 r 1.158 1 2 cbr 500 ------- 1 1.0 5.0 20 44 + 1.158 2 3 cbr 500 ------- 1 1.0 5.0 20 44 - 1.158 2 3 cbr 500 ------- 1 1.0 5.0 20 44 v 1.1599999999999999 eval {set sim_annotation {Send Packet_12,13,14,15 : window size, 4}} r 1.16592 2 0 ack 40 ------- 0 4.0 0.0 9 40 + 1.16592 0 2 tcp 1000 ------- 0 0.0 4.0 13 47 - 1.16592 0 2 tcp 1000 ------- 0 0.0 4.0 13 47 r 1.166 2 3 cbr 500 ------- 1 1.0 5.0 19 42 + 1.166 3 5 cbr 500 ------- 1 1.0 5.0 19 42 - 1.166 3 5 cbr 500 ------- 1 1.0 5.0 19 42 r 1.174 3 5 cbr 500 ------- 1 1.0 5.0 18 39 r 1.18192 2 0 ack 40 ------- 0 4.0 0.0 10 41 + 1.18192 0 2 tcp 1000 ------- 0 0.0 4.0 14 48 - 1.18192 0 2 tcp 1000 ------- 0 0.0 4.0 14 48 + 1.2 1 2 cbr 500 ------- 1 1.0 5.0 22 49 - 1.2 1 2 cbr 500 ------- 1 1.0 5.0 22 49 r 1.20592 2 0 ack 40 ------- 0 4.0 0.0 11 43 + 1.20592 0 2 tcp 1000 ------- 0 0.0 4.0 15 50 - 1.20592 0 2 tcp 1000 ------- 0 0.0 4.0 15 50 r 1.208 1 2 cbr 500 ------- 1 1.0 5.0 21 46 + 1.208 2 3 cbr 500 ------- 1 1.0 5.0 21 46 - 1.208 2 3 cbr 500 ------- 1 1.0 5.0 21 46 r 1.21592 0 2 tcp 1000 ------- 0 0.0 4.0 12 45 + 1.21592 2 3 tcp 1000 ------- 0 0.0 4.0 12 45 r 1.216 2 3 cbr 500 ------- 1 1.0 5.0 20 44 + 1.216 3 5 cbr 500 ------- 1 1.0 5.0 20 44 - 1.216 3 5 cbr 500 ------- 1 1.0 5.0 20 44 - 1.216 2 3 tcp 1000 ------- 0 0.0 4.0 12 45 r 1.224 3 5 cbr 500 ------- 1 1.0 5.0 19 42 r 1.23192 0 2 tcp 1000 ------- 0 0.0 4.0 13 47 + 1.23192 2 3 tcp 1000 ------- 0 0.0 4.0 13 47 - 1.232 2 3 tcp 1000 ------- 0 0.0 4.0 13 47 r 1.24792 0 2 tcp 1000 ------- 0 0.0 4.0 14 48 + 1.24792 2 3 tcp 1000 ------- 0 0.0 4.0 14 48 - 1.248 2 3 tcp 1000 ------- 0 0.0 4.0 14 48 + 1.25 1 2 cbr 500 ------- 1 1.0 5.0 23 51 - 1.25 1 2 cbr 500 ------- 1 1.0 5.0 23 51 r 1.258 1 2 cbr 500 ------- 1 1.0 5.0 22 49 + 1.258 2 3 cbr 500 ------- 1 1.0 5.0 22 49 - 1.264 2 3 cbr 500 ------- 1 1.0 5.0 22 49 r 1.266 2 3 cbr 500 ------- 1 1.0 5.0 21 46 + 1.266 3 5 cbr 500 ------- 1 1.0 5.0 21 46 - 1.266 3 5 cbr 500 ------- 1 1.0 5.0 21 46 r 1.27192 0 2 tcp 1000 ------- 0 0.0 4.0 15 50 + 1.27192 2 3 tcp 1000 ------- 0 0.0 4.0 15 50 - 1.272 2 3 tcp 1000 ------- 0 0.0 4.0 15 50 r 1.274 3 5 cbr 500 ------- 1 1.0 5.0 20 44 r 1.282 2 3 tcp 1000 ------- 0 0.0 4.0 12 45 + 1.282 3 4 tcp 1000 ------- 0 0.0 4.0 12 45 - 1.282 3 4 tcp 1000 ------- 0 0.0 4.0 12 45 r 1.298 2 3 tcp 1000 ------- 0 0.0 4.0 13 47 + 1.298 3 4 tcp 1000 ------- 0 0.0 4.0 13 47 - 1.298 3 4 tcp 1000 ------- 0 0.0 4.0 13 47 + 1.3 1 2 cbr 500 ------- 1 1.0 5.0 24 52 - 1.3 1 2 cbr 500 ------- 1 1.0 5.0 24 52 r 1.308 1 2 cbr 500 ------- 1 1.0 5.0 23 51 + 1.308 2 3 cbr 500 ------- 1 1.0 5.0 23 51 - 1.308 2 3 cbr 500 ------- 1 1.0 5.0 23 51 r 1.314 2 3 tcp 1000 ------- 0 0.0 4.0 14 48 + 1.314 3 4 tcp 1000 ------- 0 0.0 4.0 14 48 - 1.314 3 4 tcp 1000 ------- 0 0.0 4.0 14 48 r 1.322 2 3 cbr 500 ------- 1 1.0 5.0 22 49 + 1.322 3 5 cbr 500 ------- 1 1.0 5.0 22 49 - 1.322 3 5 cbr 500 ------- 1 1.0 5.0 22 49 r 1.324 3 5 cbr 500 ------- 1 1.0 5.0 21 46 r 1.338 2 3 tcp 1000 ------- 0 0.0 4.0 15 50 + 1.338 3 4 tcp 1000 ------- 0 0.0 4.0 15 50 - 1.338 3 4 tcp 1000 ------- 0 0.0 4.0 15 50 r 1.348 3 4 tcp 1000 ------- 0 0.0 4.0 12 45 + 1.348 4 3 ack 40 ------- 0 4.0 0.0 12 53 - 1.348 4 3 ack 40 ------- 0 4.0 0.0 12 53 v 1.3500000000000001 eval {set sim_annotation {Ack_12,13,14,15}} + 1.35 1 2 cbr 500 ------- 1 1.0 5.0 25 54 - 1.35 1 2 cbr 500 ------- 1 1.0 5.0 25 54 r 1.358 1 2 cbr 500 ------- 1 1.0 5.0 24 52 + 1.358 2 3 cbr 500 ------- 1 1.0 5.0 24 52 - 1.358 2 3 cbr 500 ------- 1 1.0 5.0 24 52 r 1.364 3 4 tcp 1000 ------- 0 0.0 4.0 13 47 + 1.364 4 3 ack 40 ------- 0 4.0 0.0 13 55 - 1.364 4 3 ack 40 ------- 0 4.0 0.0 13 55 r 1.366 2 3 cbr 500 ------- 1 1.0 5.0 23 51 + 1.366 3 5 cbr 500 ------- 1 1.0 5.0 23 51 - 1.366 3 5 cbr 500 ------- 1 1.0 5.0 23 51 r 1.38 3 4 tcp 1000 ------- 0 0.0 4.0 14 48 + 1.38 4 3 ack 40 ------- 0 4.0 0.0 14 56 - 1.38 4 3 ack 40 ------- 0 4.0 0.0 14 56 r 1.38 3 5 cbr 500 ------- 1 1.0 5.0 22 49 r 1.39864 4 3 ack 40 ------- 0 4.0 0.0 12 53 + 1.39864 3 2 ack 40 ------- 0 4.0 0.0 12 53 - 1.39864 3 2 ack 40 ------- 0 4.0 0.0 12 53 + 1.4 1 2 cbr 500 ------- 1 1.0 5.0 26 57 - 1.4 1 2 cbr 500 ------- 1 1.0 5.0 26 57 r 1.404 3 4 tcp 1000 ------- 0 0.0 4.0 15 50 + 1.404 4 3 ack 40 ------- 0 4.0 0.0 15 58 - 1.404 4 3 ack 40 ------- 0 4.0 0.0 15 58 r 1.408 1 2 cbr 500 ------- 1 1.0 5.0 25 54 + 1.408 2 3 cbr 500 ------- 1 1.0 5.0 25 54 - 1.408 2 3 cbr 500 ------- 1 1.0 5.0 25 54 r 1.41464 4 3 ack 40 ------- 0 4.0 0.0 13 55 + 1.41464 3 2 ack 40 ------- 0 4.0 0.0 13 55 - 1.41464 3 2 ack 40 ------- 0 4.0 0.0 13 55 r 1.416 2 3 cbr 500 ------- 1 1.0 5.0 24 52 + 1.416 3 5 cbr 500 ------- 1 1.0 5.0 24 52 - 1.416 3 5 cbr 500 ------- 1 1.0 5.0 24 52 r 1.424 3 5 cbr 500 ------- 1 1.0 5.0 23 51 r 1.43064 4 3 ack 40 ------- 0 4.0 0.0 14 56 + 1.43064 3 2 ack 40 ------- 0 4.0 0.0 14 56 - 1.43064 3 2 ack 40 ------- 0 4.0 0.0 14 56 r 1.44928 3 2 ack 40 ------- 0 4.0 0.0 12 53 + 1.44928 2 0 ack 40 ------- 0 4.0 0.0 12 53 - 1.44928 2 0 ack 40 ------- 0 4.0 0.0 12 53 + 1.45 1 2 cbr 500 ------- 1 1.0 5.0 27 59 - 1.45 1 2 cbr 500 ------- 1 1.0 5.0 27 59 r 1.45464 4 3 ack 40 ------- 0 4.0 0.0 15 58 + 1.45464 3 2 ack 40 ------- 0 4.0 0.0 15 58 - 1.45464 3 2 ack 40 ------- 0 4.0 0.0 15 58 r 1.458 1 2 cbr 500 ------- 1 1.0 5.0 26 57 + 1.458 2 3 cbr 500 ------- 1 1.0 5.0 26 57 - 1.458 2 3 cbr 500 ------- 1 1.0 5.0 26 57 r 1.46528 3 2 ack 40 ------- 0 4.0 0.0 13 55 + 1.46528 2 0 ack 40 ------- 0 4.0 0.0 13 55 - 1.46528 2 0 ack 40 ------- 0 4.0 0.0 13 55 r 1.466 2 3 cbr 500 ------- 1 1.0 5.0 25 54 + 1.466 3 5 cbr 500 ------- 1 1.0 5.0 25 54 - 1.466 3 5 cbr 500 ------- 1 1.0 5.0 25 54 r 1.474 3 5 cbr 500 ------- 1 1.0 5.0 24 52 r 1.48128 3 2 ack 40 ------- 0 4.0 0.0 14 56 + 1.48128 2 0 ack 40 ------- 0 4.0 0.0 14 56 - 1.48128 2 0 ack 40 ------- 0 4.0 0.0 14 56 r 1.49992 2 0 ack 40 ------- 0 4.0 0.0 12 53 + 1.49992 0 2 tcp 1000 ------- 0 0.0 4.0 16 60 - 1.49992 0 2 tcp 1000 ------- 0 0.0 4.0 16 60 v 1.5 eval {set sim_annotation {Send Packet_16,17,18,19 : window size, 4}} + 1.5 1 2 cbr 500 ------- 1 1.0 5.0 28 61 - 1.5 1 2 cbr 500 ------- 1 1.0 5.0 28 61 r 1.50528 3 2 ack 40 ------- 0 4.0 0.0 15 58 + 1.50528 2 0 ack 40 ------- 0 4.0 0.0 15 58 - 1.50528 2 0 ack 40 ------- 0 4.0 0.0 15 58 r 1.508 1 2 cbr 500 ------- 1 1.0 5.0 27 59 + 1.508 2 3 cbr 500 ------- 1 1.0 5.0 27 59 - 1.508 2 3 cbr 500 ------- 1 1.0 5.0 27 59 r 1.51592 2 0 ack 40 ------- 0 4.0 0.0 13 55 + 1.51592 0 2 tcp 1000 ------- 0 0.0 4.0 17 62 - 1.51592 0 2 tcp 1000 ------- 0 0.0 4.0 17 62 r 1.516 2 3 cbr 500 ------- 1 1.0 5.0 26 57 + 1.516 3 5 cbr 500 ------- 1 1.0 5.0 26 57 - 1.516 3 5 cbr 500 ------- 1 1.0 5.0 26 57 r 1.524 3 5 cbr 500 ------- 1 1.0 5.0 25 54 r 1.53192 2 0 ack 40 ------- 0 4.0 0.0 14 56 + 1.53192 0 2 tcp 1000 ------- 0 0.0 4.0 18 63 - 1.53192 0 2 tcp 1000 ------- 0 0.0 4.0 18 63 + 1.55 1 2 cbr 500 ------- 1 1.0 5.0 29 64 - 1.55 1 2 cbr 500 ------- 1 1.0 5.0 29 64 r 1.55592 2 0 ack 40 ------- 0 4.0 0.0 15 58 + 1.55592 0 2 tcp 1000 ------- 0 0.0 4.0 19 65 - 1.55592 0 2 tcp 1000 ------- 0 0.0 4.0 19 65 r 1.558 1 2 cbr 500 ------- 1 1.0 5.0 28 61 + 1.558 2 3 cbr 500 ------- 1 1.0 5.0 28 61 - 1.558 2 3 cbr 500 ------- 1 1.0 5.0 28 61 r 1.56592 0 2 tcp 1000 ------- 0 0.0 4.0 16 60 + 1.56592 2 3 tcp 1000 ------- 0 0.0 4.0 16 60 r 1.566 2 3 cbr 500 ------- 1 1.0 5.0 27 59 + 1.566 3 5 cbr 500 ------- 1 1.0 5.0 27 59 - 1.566 3 5 cbr 500 ------- 1 1.0 5.0 27 59 - 1.566 2 3 tcp 1000 ------- 0 0.0 4.0 16 60 r 1.574 3 5 cbr 500 ------- 1 1.0 5.0 26 57 r 1.58192 0 2 tcp 1000 ------- 0 0.0 4.0 17 62 + 1.58192 2 3 tcp 1000 ------- 0 0.0 4.0 17 62 - 1.582 2 3 tcp 1000 ------- 0 0.0 4.0 17 62 r 1.59792 0 2 tcp 1000 ------- 0 0.0 4.0 18 63 + 1.59792 2 3 tcp 1000 ------- 0 0.0 4.0 18 63 - 1.598 2 3 tcp 1000 ------- 0 0.0 4.0 18 63 + 1.6 1 2 cbr 500 ------- 1 1.0 5.0 30 66 - 1.6 1 2 cbr 500 ------- 1 1.0 5.0 30 66 r 1.608 1 2 cbr 500 ------- 1 1.0 5.0 29 64 + 1.608 2 3 cbr 500 ------- 1 1.0 5.0 29 64 - 1.614 2 3 cbr 500 ------- 1 1.0 5.0 29 64 r 1.616 2 3 cbr 500 ------- 1 1.0 5.0 28 61 + 1.616 3 5 cbr 500 ------- 1 1.0 5.0 28 61 - 1.616 3 5 cbr 500 ------- 1 1.0 5.0 28 61 r 1.62192 0 2 tcp 1000 ------- 0 0.0 4.0 19 65 + 1.62192 2 3 tcp 1000 ------- 0 0.0 4.0 19 65 - 1.622 2 3 tcp 1000 ------- 0 0.0 4.0 19 65 r 1.624 3 5 cbr 500 ------- 1 1.0 5.0 27 59 r 1.632 2 3 tcp 1000 ------- 0 0.0 4.0 16 60 + 1.632 3 4 tcp 1000 ------- 0 0.0 4.0 16 60 - 1.632 3 4 tcp 1000 ------- 0 0.0 4.0 16 60 r 1.648 2 3 tcp 1000 ------- 0 0.0 4.0 17 62 + 1.648 3 4 tcp 1000 ------- 0 0.0 4.0 17 62 - 1.648 3 4 tcp 1000 ------- 0 0.0 4.0 17 62 + 1.65 1 2 cbr 500 ------- 1 1.0 5.0 31 67 - 1.65 1 2 cbr 500 ------- 1 1.0 5.0 31 67 r 1.658 1 2 cbr 500 ------- 1 1.0 5.0 30 66 + 1.658 2 3 cbr 500 ------- 1 1.0 5.0 30 66 - 1.658 2 3 cbr 500 ------- 1 1.0 5.0 30 66 r 1.664 2 3 tcp 1000 ------- 0 0.0 4.0 18 63 + 1.664 3 4 tcp 1000 ------- 0 0.0 4.0 18 63 - 1.664 3 4 tcp 1000 ------- 0 0.0 4.0 18 63 r 1.672 2 3 cbr 500 ------- 1 1.0 5.0 29 64 + 1.672 3 5 cbr 500 ------- 1 1.0 5.0 29 64 - 1.672 3 5 cbr 500 ------- 1 1.0 5.0 29 64 r 1.674 3 5 cbr 500 ------- 1 1.0 5.0 28 61 r 1.688 2 3 tcp 1000 ------- 0 0.0 4.0 19 65 + 1.688 3 4 tcp 1000 ------- 0 0.0 4.0 19 65 - 1.688 3 4 tcp 1000 ------- 0 0.0 4.0 19 65 r 1.698 3 4 tcp 1000 ------- 0 0.0 4.0 16 60 + 1.698 4 3 ack 40 ------- 0 4.0 0.0 16 68 - 1.698 4 3 ack 40 ------- 0 4.0 0.0 16 68 r 1.708 1 2 cbr 500 ------- 1 1.0 5.0 31 67 + 1.708 2 3 cbr 500 ------- 1 1.0 5.0 31 67 - 1.708 2 3 cbr 500 ------- 1 1.0 5.0 31 67 v 1.71 eval {set sim_annotation {Ack_16,17,18,19}} r 1.714 3 4 tcp 1000 ------- 0 0.0 4.0 17 62 + 1.714 4 3 ack 40 ------- 0 4.0 0.0 17 69 - 1.714 4 3 ack 40 ------- 0 4.0 0.0 17 69 r 1.716 2 3 cbr 500 ------- 1 1.0 5.0 30 66 + 1.716 3 5 cbr 500 ------- 1 1.0 5.0 30 66 - 1.716 3 5 cbr 500 ------- 1 1.0 5.0 30 66 r 1.73 3 4 tcp 1000 ------- 0 0.0 4.0 18 63 + 1.73 4 3 ack 40 ------- 0 4.0 0.0 18 70 - 1.73 4 3 ack 40 ------- 0 4.0 0.0 18 70 r 1.73 3 5 cbr 500 ------- 1 1.0 5.0 29 64 r 1.74864 4 3 ack 40 ------- 0 4.0 0.0 16 68 + 1.74864 3 2 ack 40 ------- 0 4.0 0.0 16 68 - 1.74864 3 2 ack 40 ------- 0 4.0 0.0 16 68 r 1.754 3 4 tcp 1000 ------- 0 0.0 4.0 19 65 + 1.754 4 3 ack 40 ------- 0 4.0 0.0 19 71 - 1.754 4 3 ack 40 ------- 0 4.0 0.0 19 71 r 1.76464 4 3 ack 40 ------- 0 4.0 0.0 17 69 + 1.76464 3 2 ack 40 ------- 0 4.0 0.0 17 69 - 1.76464 3 2 ack 40 ------- 0 4.0 0.0 17 69 r 1.766 2 3 cbr 500 ------- 1 1.0 5.0 31 67 + 1.766 3 5 cbr 500 ------- 1 1.0 5.0 31 67 - 1.766 3 5 cbr 500 ------- 1 1.0 5.0 31 67 r 1.774 3 5 cbr 500 ------- 1 1.0 5.0 30 66 r 1.78064 4 3 ack 40 ------- 0 4.0 0.0 18 70 + 1.78064 3 2 ack 40 ------- 0 4.0 0.0 18 70 - 1.78064 3 2 ack 40 ------- 0 4.0 0.0 18 70 r 1.79928 3 2 ack 40 ------- 0 4.0 0.0 16 68 + 1.79928 2 0 ack 40 ------- 0 4.0 0.0 16 68 - 1.79928 2 0 ack 40 ------- 0 4.0 0.0 16 68 v 1.8 eval {set sim_annotation {FTP stops at 1.7}} v 1.8 eval {set sim_annotation {CBR stops at 1.7}} r 1.80464 4 3 ack 40 ------- 0 4.0 0.0 19 71 + 1.80464 3 2 ack 40 ------- 0 4.0 0.0 19 71 - 1.80464 3 2 ack 40 ------- 0 4.0 0.0 19 71 r 1.81528 3 2 ack 40 ------- 0 4.0 0.0 17 69 + 1.81528 2 0 ack 40 ------- 0 4.0 0.0 17 69 - 1.81528 2 0 ack 40 ------- 0 4.0 0.0 17 69 r 1.824 3 5 cbr 500 ------- 1 1.0 5.0 31 67 r 1.83128 3 2 ack 40 ------- 0 4.0 0.0 18 70 + 1.83128 2 0 ack 40 ------- 0 4.0 0.0 18 70 - 1.83128 2 0 ack 40 ------- 0 4.0 0.0 18 70 r 1.84992 2 0 ack 40 ------- 0 4.0 0.0 16 68 r 1.85528 3 2 ack 40 ------- 0 4.0 0.0 19 71 + 1.85528 2 0 ack 40 ------- 0 4.0 0.0 19 71 - 1.85528 2 0 ack 40 ------- 0 4.0 0.0 19 71 r 1.86592 2 0 ack 40 ------- 0 4.0 0.0 17 69 r 1.88192 2 0 ack 40 ------- 0 4.0 0.0 18 70 r 1.90592 2 0 ack 40 ------- 0 4.0 0.0 19 71 nam-1.15/edu/B4-sliding-color.nam0000664000076400007660000232631706756703153015410 0ustar tomhnsnamV -t * -v 1.0a5 -a 0 A -t * -n 1 -p 0 -o 255 -c 15 -a 1 A -t * -h 1 -m 127 -s 8 c -t * -i 1 -n red n -t * -a 4 -s 4 -S UP -v circle -c black n -t * -a 0 -s 0 -S UP -v circle -c black n -t * -a 5 -s 5 -S UP -v circle -c red n -t * -a 1 -s 1 -S UP -v circle -c red n -t * -a 2 -s 2 -S UP -v rectangular -c blue n -t * -a 3 -s 3 -S UP -v rectangular -c blue l -t * -s 0 -d 2 -S UP -r 500000 -D 0.050000000000000003 -c black -o right-down l -t * -s 1 -d 2 -S UP -r 500000 -D 0.050000000000000003 -c black -o right-up l -t * -s 2 -d 3 -S UP -r 500000 -D 0.050000000000000003 -c black -o right l -t * -s 3 -d 4 -S UP -r 500000 -D 0.050000000000000003 -c black -o right-up l -t * -s 3 -d 5 -S UP -r 500000 -D 0.050000000000000003 -c black -o right-down q -t * -s 3 -d 2 -a 0.5 q -t * -s 2 -d 3 -a 0.5 a -t 0.00000000000000000 -s 0 -d 4 -n tcp f -t 0.00000000000000000 -s 0 -d 4 -n cwnd_ -a tcp -v 4.000000 -T v f -t 0.00000000000000000 -s 0 -d 4 -n cwnd_ -a tcp -v 4.000000 -o 4.000000 -T v v -t 0.00000000000000000 monitor_agent 0 tcp n -t 0 -s 0 -S DLABEL -l Sliding-W-sender -L "" n -t 0 -s 1 -S DLABEL -l CBR-sender -L "" n -t 0 -s 4 -S DLABEL -l Sliding-W-receiver -L "" n -t 0 -s 5 -S DLABEL -l CBR-receiver -L "" v -t 0 sim_annotation 0 1 Sliding Window with packet loss + -t 0.1 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0 4.0 0 ------- null} - -t 0.1 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0 4.0 0 ------- null} h -t 0.1 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0 4.0 -1 ------- null} + -t 0.1 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 1 -a 0 -x {0.0 4.0 1 ------- null} + -t 0.1 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0 4.0 2 ------- null} + -t 0.1 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0 4.0 3 ------- null} + -t 0.1 -s 1 -d 2 -p cbr -e 210 -c 1 -i 4 -a 1 -x {1.0 5.0 0 ------- null} - -t 0.1 -s 1 -d 2 -p cbr -e 210 -c 1 -i 4 -a 1 -x {1.0 5.0 0 ------- null} h -t 0.1 -s 1 -d 2 -p cbr -e 210 -c 1 -i 4 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.10375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 5 -a 1 -x {1.0 5.0 1 ------- null} - -t 0.10375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 5 -a 1 -x {1.0 5.0 1 ------- null} h -t 0.10375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 5 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.1075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 6 -a 1 -x {1.0 5.0 2 ------- null} - -t 0.1075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 6 -a 1 -x {1.0 5.0 2 ------- null} h -t 0.1075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 6 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.11125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 7 -a 1 -x {1.0 5.0 3 ------- null} - -t 0.11125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 7 -a 1 -x {1.0 5.0 3 ------- null} h -t 0.11125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 7 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.115 -s 1 -d 2 -p cbr -e 210 -c 1 -i 8 -a 1 -x {1.0 5.0 4 ------- null} - -t 0.115 -s 1 -d 2 -p cbr -e 210 -c 1 -i 8 -a 1 -x {1.0 5.0 4 ------- null} h -t 0.115 -s 1 -d 2 -p cbr -e 210 -c 1 -i 8 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.116 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 1 -a 0 -x {0.0 4.0 1 ------- null} h -t 0.116 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 1 -a 0 -x {0.0 4.0 -1 ------- null} + -t 0.11875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 9 -a 1 -x {1.0 5.0 5 ------- null} - -t 0.11875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 9 -a 1 -x {1.0 5.0 5 ------- null} h -t 0.11875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 9 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.1225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 10 -a 1 -x {1.0 5.0 6 ------- null} - -t 0.1225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 10 -a 1 -x {1.0 5.0 6 ------- null} h -t 0.1225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 10 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.12625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 11 -a 1 -x {1.0 5.0 7 ------- null} - -t 0.12625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 11 -a 1 -x {1.0 5.0 7 ------- null} h -t 0.12625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 11 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.13 -s 1 -d 2 -p cbr -e 210 -c 1 -i 12 -a 1 -x {1.0 5.0 8 ------- null} - -t 0.13 -s 1 -d 2 -p cbr -e 210 -c 1 -i 12 -a 1 -x {1.0 5.0 8 ------- null} h -t 0.13 -s 1 -d 2 -p cbr -e 210 -c 1 -i 12 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.132 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0 4.0 2 ------- null} h -t 0.132 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0 4.0 -1 ------- null} + -t 0.13375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 13 -a 1 -x {1.0 5.0 9 ------- null} - -t 0.13375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 13 -a 1 -x {1.0 5.0 9 ------- null} h -t 0.13375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 13 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.1375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 14 -a 1 -x {1.0 5.0 10 ------- null} - -t 0.1375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 14 -a 1 -x {1.0 5.0 10 ------- null} h -t 0.1375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 14 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.14125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 15 -a 1 -x {1.0 5.0 11 ------- null} - -t 0.14125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 15 -a 1 -x {1.0 5.0 11 ------- null} h -t 0.14125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 15 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.145 -s 1 -d 2 -p cbr -e 210 -c 1 -i 16 -a 1 -x {1.0 5.0 12 ------- null} - -t 0.145 -s 1 -d 2 -p cbr -e 210 -c 1 -i 16 -a 1 -x {1.0 5.0 12 ------- null} h -t 0.145 -s 1 -d 2 -p cbr -e 210 -c 1 -i 16 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.148 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0 4.0 3 ------- null} h -t 0.148 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0 4.0 -1 ------- null} + -t 0.14875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 17 -a 1 -x {1.0 5.0 13 ------- null} - -t 0.14875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 17 -a 1 -x {1.0 5.0 13 ------- null} h -t 0.14875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 17 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.1525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 18 -a 1 -x {1.0 5.0 14 ------- null} - -t 0.1525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 18 -a 1 -x {1.0 5.0 14 ------- null} h -t 0.1525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 18 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.15336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 4 -a 1 -x {1.0 5.0 0 ------- null} + -t 0.15336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 4 -a 1 -x {1.0 5.0 0 ------- null} - -t 0.15336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 4 -a 1 -x {1.0 5.0 0 ------- null} h -t 0.15336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 4 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.15625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 19 -a 1 -x {1.0 5.0 15 ------- null} - -t 0.15625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 19 -a 1 -x {1.0 5.0 15 ------- null} h -t 0.15625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 19 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.15711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 5 -a 1 -x {1.0 5.0 1 ------- null} + -t 0.15711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 5 -a 1 -x {1.0 5.0 1 ------- null} - -t 0.15711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 5 -a 1 -x {1.0 5.0 1 ------- null} h -t 0.15711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 5 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.16 -s 1 -d 2 -p cbr -e 210 -c 1 -i 20 -a 1 -x {1.0 5.0 16 ------- null} - -t 0.16 -s 1 -d 2 -p cbr -e 210 -c 1 -i 20 -a 1 -x {1.0 5.0 16 ------- null} h -t 0.16 -s 1 -d 2 -p cbr -e 210 -c 1 -i 20 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.16086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 6 -a 1 -x {1.0 5.0 2 ------- null} + -t 0.16086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 6 -a 1 -x {1.0 5.0 2 ------- null} - -t 0.16086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 6 -a 1 -x {1.0 5.0 2 ------- null} h -t 0.16086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 6 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.16375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 21 -a 1 -x {1.0 5.0 17 ------- null} - -t 0.16375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 21 -a 1 -x {1.0 5.0 17 ------- null} h -t 0.16375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 21 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.16461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 7 -a 1 -x {1.0 5.0 3 ------- null} + -t 0.16461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 7 -a 1 -x {1.0 5.0 3 ------- null} - -t 0.16461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 7 -a 1 -x {1.0 5.0 3 ------- null} h -t 0.16461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 7 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.166 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0 4.0 0 ------- null} + -t 0.166 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0 4.0 0 ------- null} + -t 0.1675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 22 -a 1 -x {1.0 5.0 18 ------- null} - -t 0.1675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 22 -a 1 -x {1.0 5.0 18 ------- null} h -t 0.1675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 22 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.16797 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0 4.0 0 ------- null} h -t 0.16797 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0 4.0 -1 ------- null} r -t 0.16836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 8 -a 1 -x {1.0 5.0 4 ------- null} + -t 0.16836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 8 -a 1 -x {1.0 5.0 4 ------- null} + -t 0.17125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 23 -a 1 -x {1.0 5.0 19 ------- null} - -t 0.17125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 23 -a 1 -x {1.0 5.0 19 ------- null} h -t 0.17125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 23 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.17211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 9 -a 1 -x {1.0 5.0 5 ------- null} + -t 0.17211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 9 -a 1 -x {1.0 5.0 5 ------- null} + -t 0.175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 24 -a 1 -x {1.0 5.0 20 ------- null} - -t 0.175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 24 -a 1 -x {1.0 5.0 20 ------- null} h -t 0.175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 24 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.17586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 10 -a 1 -x {1.0 5.0 6 ------- null} + -t 0.17586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 10 -a 1 -x {1.0 5.0 6 ------- null} + -t 0.17875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 25 -a 1 -x {1.0 5.0 21 ------- null} - -t 0.17875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 25 -a 1 -x {1.0 5.0 21 ------- null} h -t 0.17875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 25 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.17961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 11 -a 1 -x {1.0 5.0 7 ------- null} + -t 0.17961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 11 -a 1 -x {1.0 5.0 7 ------- null} r -t 0.182 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 1 -a 0 -x {0.0 4.0 1 ------- null} + -t 0.182 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 1 -a 0 -x {0.0 4.0 1 ------- null} + -t 0.1825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 26 -a 1 -x {1.0 5.0 22 ------- null} - -t 0.1825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 26 -a 1 -x {1.0 5.0 22 ------- null} h -t 0.1825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 26 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.18336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 12 -a 1 -x {1.0 5.0 8 ------- null} + -t 0.18336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 12 -a 1 -x {1.0 5.0 8 ------- null} - -t 0.18397 -s 2 -d 3 -p cbr -e 210 -c 1 -i 8 -a 1 -x {1.0 5.0 4 ------- null} h -t 0.18397 -s 2 -d 3 -p cbr -e 210 -c 1 -i 8 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.18625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 27 -a 1 -x {1.0 5.0 23 ------- null} - -t 0.18625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 27 -a 1 -x {1.0 5.0 23 ------- null} h -t 0.18625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 27 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.18711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 13 -a 1 -x {1.0 5.0 9 ------- null} + -t 0.18711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 13 -a 1 -x {1.0 5.0 9 ------- null} - -t 0.18733 -s 2 -d 3 -p cbr -e 210 -c 1 -i 9 -a 1 -x {1.0 5.0 5 ------- null} h -t 0.18733 -s 2 -d 3 -p cbr -e 210 -c 1 -i 9 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.19 -s 1 -d 2 -p cbr -e 210 -c 1 -i 28 -a 1 -x {1.0 5.0 24 ------- null} - -t 0.19 -s 1 -d 2 -p cbr -e 210 -c 1 -i 28 -a 1 -x {1.0 5.0 24 ------- null} h -t 0.19 -s 1 -d 2 -p cbr -e 210 -c 1 -i 28 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.19069 -s 2 -d 3 -p cbr -e 210 -c 1 -i 10 -a 1 -x {1.0 5.0 6 ------- null} h -t 0.19069 -s 2 -d 3 -p cbr -e 210 -c 1 -i 10 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.19086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 14 -a 1 -x {1.0 5.0 10 ------- null} + -t 0.19086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 14 -a 1 -x {1.0 5.0 10 ------- null} + -t 0.19375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 29 -a 1 -x {1.0 5.0 25 ------- null} - -t 0.19375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 29 -a 1 -x {1.0 5.0 25 ------- null} h -t 0.19375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 29 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.19405 -s 2 -d 3 -p cbr -e 210 -c 1 -i 11 -a 1 -x {1.0 5.0 7 ------- null} h -t 0.19405 -s 2 -d 3 -p cbr -e 210 -c 1 -i 11 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.19461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 15 -a 1 -x {1.0 5.0 11 ------- null} + -t 0.19461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 15 -a 1 -x {1.0 5.0 11 ------- null} - -t 0.19741 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 1 -a 0 -x {0.0 4.0 1 ------- null} h -t 0.19741 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 1 -a 0 -x {0.0 4.0 -1 ------- null} + -t 0.1975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 30 -a 1 -x {1.0 5.0 26 ------- null} - -t 0.1975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 30 -a 1 -x {1.0 5.0 26 ------- null} h -t 0.1975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 30 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.198 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0 4.0 2 ------- null} + -t 0.198 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0 4.0 2 ------- null} r -t 0.19836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 16 -a 1 -x {1.0 5.0 12 ------- null} + -t 0.19836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 16 -a 1 -x {1.0 5.0 12 ------- null} + -t 0.20125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 31 -a 1 -x {1.0 5.0 27 ------- null} - -t 0.20125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 31 -a 1 -x {1.0 5.0 27 ------- null} h -t 0.20125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 31 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.20211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 17 -a 1 -x {1.0 5.0 13 ------- null} + -t 0.20211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 17 -a 1 -x {1.0 5.0 13 ------- null} + -t 0.205 -s 1 -d 2 -p cbr -e 210 -c 1 -i 32 -a 1 -x {1.0 5.0 28 ------- null} - -t 0.205 -s 1 -d 2 -p cbr -e 210 -c 1 -i 32 -a 1 -x {1.0 5.0 28 ------- null} h -t 0.205 -s 1 -d 2 -p cbr -e 210 -c 1 -i 32 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.20586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 18 -a 1 -x {1.0 5.0 14 ------- null} + -t 0.20586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 18 -a 1 -x {1.0 5.0 14 ------- null} r -t 0.20672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 4 -a 1 -x {1.0 5.0 0 ------- null} + -t 0.20672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 4 -a 1 -x {1.0 5.0 0 ------- null} - -t 0.20672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 4 -a 1 -x {1.0 5.0 0 ------- null} h -t 0.20672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 4 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.20875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 33 -a 1 -x {1.0 5.0 29 ------- null} - -t 0.20875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 33 -a 1 -x {1.0 5.0 29 ------- null} h -t 0.20875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 33 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.20961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 19 -a 1 -x {1.0 5.0 15 ------- null} + -t 0.20961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 19 -a 1 -x {1.0 5.0 15 ------- null} r -t 0.21047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 5 -a 1 -x {1.0 5.0 1 ------- null} + -t 0.21047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 5 -a 1 -x {1.0 5.0 1 ------- null} - -t 0.21047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 5 -a 1 -x {1.0 5.0 1 ------- null} h -t 0.21047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 5 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.2125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 34 -a 1 -x {1.0 5.0 30 ------- null} - -t 0.2125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 34 -a 1 -x {1.0 5.0 30 ------- null} h -t 0.2125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 34 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.21336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 20 -a 1 -x {1.0 5.0 16 ------- null} + -t 0.21336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 20 -a 1 -x {1.0 5.0 16 ------- null} d -t 0.21336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 20 -a 1 -x {1.0 5.0 16 ------- null} - -t 0.21341 -s 2 -d 3 -p cbr -e 210 -c 1 -i 12 -a 1 -x {1.0 5.0 8 ------- null} h -t 0.21341 -s 2 -d 3 -p cbr -e 210 -c 1 -i 12 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.214 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0 4.0 3 ------- null} + -t 0.214 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0 4.0 3 ------- null} r -t 0.21422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 6 -a 1 -x {1.0 5.0 2 ------- null} + -t 0.21422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 6 -a 1 -x {1.0 5.0 2 ------- null} - -t 0.21422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 6 -a 1 -x {1.0 5.0 2 ------- null} h -t 0.21422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 6 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.21625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 35 -a 1 -x {1.0 5.0 31 ------- null} - -t 0.21625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 35 -a 1 -x {1.0 5.0 31 ------- null} h -t 0.21625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 35 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.21677 -s 2 -d 3 -p cbr -e 210 -c 1 -i 13 -a 1 -x {1.0 5.0 9 ------- null} h -t 0.21677 -s 2 -d 3 -p cbr -e 210 -c 1 -i 13 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.21711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 21 -a 1 -x {1.0 5.0 17 ------- null} + -t 0.21711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 21 -a 1 -x {1.0 5.0 17 ------- null} r -t 0.21797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 7 -a 1 -x {1.0 5.0 3 ------- null} + -t 0.21797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 7 -a 1 -x {1.0 5.0 3 ------- null} - -t 0.21797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 7 -a 1 -x {1.0 5.0 3 ------- null} h -t 0.21797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 7 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.22 -s 1 -d 2 -p cbr -e 210 -c 1 -i 36 -a 1 -x {1.0 5.0 32 ------- null} - -t 0.22 -s 1 -d 2 -p cbr -e 210 -c 1 -i 36 -a 1 -x {1.0 5.0 32 ------- null} h -t 0.22 -s 1 -d 2 -p cbr -e 210 -c 1 -i 36 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.22013 -s 2 -d 3 -p cbr -e 210 -c 1 -i 14 -a 1 -x {1.0 5.0 10 ------- null} h -t 0.22013 -s 2 -d 3 -p cbr -e 210 -c 1 -i 14 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.22086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 22 -a 1 -x {1.0 5.0 18 ------- null} + -t 0.22086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 22 -a 1 -x {1.0 5.0 18 ------- null} - -t 0.22349 -s 2 -d 3 -p cbr -e 210 -c 1 -i 15 -a 1 -x {1.0 5.0 11 ------- null} h -t 0.22349 -s 2 -d 3 -p cbr -e 210 -c 1 -i 15 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.22375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 37 -a 1 -x {1.0 5.0 33 ------- null} - -t 0.22375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 37 -a 1 -x {1.0 5.0 33 ------- null} h -t 0.22375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 37 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.22461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 23 -a 1 -x {1.0 5.0 19 ------- null} + -t 0.22461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 23 -a 1 -x {1.0 5.0 19 ------- null} - -t 0.22685 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0 4.0 2 ------- null} h -t 0.22685 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0 4.0 -1 ------- null} + -t 0.2275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 38 -a 1 -x {1.0 5.0 34 ------- null} - -t 0.2275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 38 -a 1 -x {1.0 5.0 34 ------- null} h -t 0.2275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 38 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.22836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 24 -a 1 -x {1.0 5.0 20 ------- null} + -t 0.22836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 24 -a 1 -x {1.0 5.0 20 ------- null} + -t 0.23125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 39 -a 1 -x {1.0 5.0 35 ------- null} - -t 0.23125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 39 -a 1 -x {1.0 5.0 35 ------- null} h -t 0.23125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 39 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.23211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 25 -a 1 -x {1.0 5.0 21 ------- null} + -t 0.23211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 25 -a 1 -x {1.0 5.0 21 ------- null} d -t 0.23211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 25 -a 1 -x {1.0 5.0 21 ------- null} r -t 0.23397 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0 4.0 0 ------- null} + -t 0.23397 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0 4.0 0 ------- null} - -t 0.23397 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0 4.0 0 ------- null} h -t 0.23397 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0 4.0 -1 ------- null} + -t 0.235 -s 1 -d 2 -p cbr -e 210 -c 1 -i 40 -a 1 -x {1.0 5.0 36 ------- null} - -t 0.235 -s 1 -d 2 -p cbr -e 210 -c 1 -i 40 -a 1 -x {1.0 5.0 36 ------- null} h -t 0.235 -s 1 -d 2 -p cbr -e 210 -c 1 -i 40 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.23586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 26 -a 1 -x {1.0 5.0 22 ------- null} + -t 0.23586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 26 -a 1 -x {1.0 5.0 22 ------- null} d -t 0.23586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 26 -a 1 -x {1.0 5.0 22 ------- null} r -t 0.23733 -s 2 -d 3 -p cbr -e 210 -c 1 -i 8 -a 1 -x {1.0 5.0 4 ------- null} + -t 0.23733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 8 -a 1 -x {1.0 5.0 4 ------- null} - -t 0.23733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 8 -a 1 -x {1.0 5.0 4 ------- null} h -t 0.23733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 8 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.23875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 41 -a 1 -x {1.0 5.0 37 ------- null} - -t 0.23875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 41 -a 1 -x {1.0 5.0 37 ------- null} h -t 0.23875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 41 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.23961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 27 -a 1 -x {1.0 5.0 23 ------- null} + -t 0.23961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 27 -a 1 -x {1.0 5.0 23 ------- null} d -t 0.23961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 27 -a 1 -x {1.0 5.0 23 ------- null} r -t 0.24069 -s 2 -d 3 -p cbr -e 210 -c 1 -i 9 -a 1 -x {1.0 5.0 5 ------- null} + -t 0.24069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 9 -a 1 -x {1.0 5.0 5 ------- null} - -t 0.24069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 9 -a 1 -x {1.0 5.0 5 ------- null} h -t 0.24069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 9 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.2425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 42 -a 1 -x {1.0 5.0 38 ------- null} - -t 0.2425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 42 -a 1 -x {1.0 5.0 38 ------- null} h -t 0.2425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 42 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.24285 -s 2 -d 3 -p cbr -e 210 -c 1 -i 16 -a 1 -x {1.0 5.0 12 ------- null} h -t 0.24285 -s 2 -d 3 -p cbr -e 210 -c 1 -i 16 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.24336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 28 -a 1 -x {1.0 5.0 24 ------- null} + -t 0.24336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 28 -a 1 -x {1.0 5.0 24 ------- null} r -t 0.24405 -s 2 -d 3 -p cbr -e 210 -c 1 -i 10 -a 1 -x {1.0 5.0 6 ------- null} + -t 0.24405 -s 3 -d 5 -p cbr -e 210 -c 1 -i 10 -a 1 -x {1.0 5.0 6 ------- null} - -t 0.24405 -s 3 -d 5 -p cbr -e 210 -c 1 -i 10 -a 1 -x {1.0 5.0 6 ------- null} h -t 0.24405 -s 3 -d 5 -p cbr -e 210 -c 1 -i 10 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.24621 -s 2 -d 3 -p cbr -e 210 -c 1 -i 17 -a 1 -x {1.0 5.0 13 ------- null} h -t 0.24621 -s 2 -d 3 -p cbr -e 210 -c 1 -i 17 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.24625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 43 -a 1 -x {1.0 5.0 39 ------- null} - -t 0.24625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 43 -a 1 -x {1.0 5.0 39 ------- null} h -t 0.24625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 43 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.24711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 29 -a 1 -x {1.0 5.0 25 ------- null} + -t 0.24711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 29 -a 1 -x {1.0 5.0 25 ------- null} r -t 0.24741 -s 2 -d 3 -p cbr -e 210 -c 1 -i 11 -a 1 -x {1.0 5.0 7 ------- null} + -t 0.24741 -s 3 -d 5 -p cbr -e 210 -c 1 -i 11 -a 1 -x {1.0 5.0 7 ------- null} - -t 0.24741 -s 3 -d 5 -p cbr -e 210 -c 1 -i 11 -a 1 -x {1.0 5.0 7 ------- null} h -t 0.24741 -s 3 -d 5 -p cbr -e 210 -c 1 -i 11 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.24957 -s 2 -d 3 -p cbr -e 210 -c 1 -i 18 -a 1 -x {1.0 5.0 14 ------- null} h -t 0.24957 -s 2 -d 3 -p cbr -e 210 -c 1 -i 18 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.25 -s 1 -d 2 -p cbr -e 210 -c 1 -i 44 -a 1 -x {1.0 5.0 40 ------- null} - -t 0.25 -s 1 -d 2 -p cbr -e 210 -c 1 -i 44 -a 1 -x {1.0 5.0 40 ------- null} h -t 0.25 -s 1 -d 2 -p cbr -e 210 -c 1 -i 44 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.25086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 30 -a 1 -x {1.0 5.0 26 ------- null} + -t 0.25086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 30 -a 1 -x {1.0 5.0 26 ------- null} - -t 0.25293 -s 2 -d 3 -p cbr -e 210 -c 1 -i 19 -a 1 -x {1.0 5.0 15 ------- null} h -t 0.25293 -s 2 -d 3 -p cbr -e 210 -c 1 -i 19 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.25375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 45 -a 1 -x {1.0 5.0 41 ------- null} - -t 0.25375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 45 -a 1 -x {1.0 5.0 41 ------- null} h -t 0.25375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 45 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.25461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 31 -a 1 -x {1.0 5.0 27 ------- null} + -t 0.25461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 31 -a 1 -x {1.0 5.0 27 ------- null} - -t 0.25629 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0 4.0 3 ------- null} h -t 0.25629 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0 4.0 -1 ------- null} + -t 0.2575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 46 -a 1 -x {1.0 5.0 42 ------- null} - -t 0.2575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 46 -a 1 -x {1.0 5.0 42 ------- null} h -t 0.2575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 46 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.25836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 32 -a 1 -x {1.0 5.0 28 ------- null} + -t 0.25836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 32 -a 1 -x {1.0 5.0 28 ------- null} r -t 0.26008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 4 -a 1 -x {1.0 5.0 0 ------- null} + -t 0.26125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 47 -a 1 -x {1.0 5.0 43 ------- null} - -t 0.26125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 47 -a 1 -x {1.0 5.0 43 ------- null} h -t 0.26125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 47 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.26211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 33 -a 1 -x {1.0 5.0 29 ------- null} + -t 0.26211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 33 -a 1 -x {1.0 5.0 29 ------- null} d -t 0.26211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 33 -a 1 -x {1.0 5.0 29 ------- null} r -t 0.26341 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 1 -a 0 -x {0.0 4.0 1 ------- null} + -t 0.26341 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 1 -a 0 -x {0.0 4.0 1 ------- null} - -t 0.26341 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 1 -a 0 -x {0.0 4.0 1 ------- null} h -t 0.26341 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 1 -a 0 -x {0.0 4.0 -1 ------- null} r -t 0.26383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 5 -a 1 -x {1.0 5.0 1 ------- null} + -t 0.265 -s 1 -d 2 -p cbr -e 210 -c 1 -i 48 -a 1 -x {1.0 5.0 44 ------- null} - -t 0.265 -s 1 -d 2 -p cbr -e 210 -c 1 -i 48 -a 1 -x {1.0 5.0 44 ------- null} h -t 0.265 -s 1 -d 2 -p cbr -e 210 -c 1 -i 48 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.26586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 34 -a 1 -x {1.0 5.0 30 ------- null} + -t 0.26586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 34 -a 1 -x {1.0 5.0 30 ------- null} d -t 0.26586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 34 -a 1 -x {1.0 5.0 30 ------- null} r -t 0.26677 -s 2 -d 3 -p cbr -e 210 -c 1 -i 12 -a 1 -x {1.0 5.0 8 ------- null} + -t 0.26677 -s 3 -d 5 -p cbr -e 210 -c 1 -i 12 -a 1 -x {1.0 5.0 8 ------- null} - -t 0.26677 -s 3 -d 5 -p cbr -e 210 -c 1 -i 12 -a 1 -x {1.0 5.0 8 ------- null} h -t 0.26677 -s 3 -d 5 -p cbr -e 210 -c 1 -i 12 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.26758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 6 -a 1 -x {1.0 5.0 2 ------- null} + -t 0.26875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 49 -a 1 -x {1.0 5.0 45 ------- null} - -t 0.26875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 49 -a 1 -x {1.0 5.0 45 ------- null} h -t 0.26875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 49 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.26961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 35 -a 1 -x {1.0 5.0 31 ------- null} + -t 0.26961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 35 -a 1 -x {1.0 5.0 31 ------- null} d -t 0.26961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 35 -a 1 -x {1.0 5.0 31 ------- null} r -t 0.27013 -s 2 -d 3 -p cbr -e 210 -c 1 -i 13 -a 1 -x {1.0 5.0 9 ------- null} + -t 0.27013 -s 3 -d 5 -p cbr -e 210 -c 1 -i 13 -a 1 -x {1.0 5.0 9 ------- null} - -t 0.27013 -s 3 -d 5 -p cbr -e 210 -c 1 -i 13 -a 1 -x {1.0 5.0 9 ------- null} h -t 0.27013 -s 3 -d 5 -p cbr -e 210 -c 1 -i 13 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.27133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 7 -a 1 -x {1.0 5.0 3 ------- null} - -t 0.27229 -s 2 -d 3 -p cbr -e 210 -c 1 -i 21 -a 1 -x {1.0 5.0 17 ------- null} h -t 0.27229 -s 2 -d 3 -p cbr -e 210 -c 1 -i 21 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.2725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 50 -a 1 -x {1.0 5.0 46 ------- null} - -t 0.2725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 50 -a 1 -x {1.0 5.0 46 ------- null} h -t 0.2725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 50 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.27336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 36 -a 1 -x {1.0 5.0 32 ------- null} + -t 0.27336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 36 -a 1 -x {1.0 5.0 32 ------- null} r -t 0.27349 -s 2 -d 3 -p cbr -e 210 -c 1 -i 14 -a 1 -x {1.0 5.0 10 ------- null} + -t 0.27349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 14 -a 1 -x {1.0 5.0 10 ------- null} - -t 0.27349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 14 -a 1 -x {1.0 5.0 10 ------- null} h -t 0.27349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 14 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.27565 -s 2 -d 3 -p cbr -e 210 -c 1 -i 22 -a 1 -x {1.0 5.0 18 ------- null} h -t 0.27565 -s 2 -d 3 -p cbr -e 210 -c 1 -i 22 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.27625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 51 -a 1 -x {1.0 5.0 47 ------- null} - -t 0.27625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 51 -a 1 -x {1.0 5.0 47 ------- null} h -t 0.27625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 51 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.27685 -s 2 -d 3 -p cbr -e 210 -c 1 -i 15 -a 1 -x {1.0 5.0 11 ------- null} + -t 0.27685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 15 -a 1 -x {1.0 5.0 11 ------- null} - -t 0.27685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 15 -a 1 -x {1.0 5.0 11 ------- null} h -t 0.27685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 15 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.27711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 37 -a 1 -x {1.0 5.0 33 ------- null} + -t 0.27711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 37 -a 1 -x {1.0 5.0 33 ------- null} - -t 0.27901 -s 2 -d 3 -p cbr -e 210 -c 1 -i 23 -a 1 -x {1.0 5.0 19 ------- null} h -t 0.27901 -s 2 -d 3 -p cbr -e 210 -c 1 -i 23 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.28 -s 1 -d 2 -p cbr -e 210 -c 1 -i 52 -a 1 -x {1.0 5.0 48 ------- null} - -t 0.28 -s 1 -d 2 -p cbr -e 210 -c 1 -i 52 -a 1 -x {1.0 5.0 48 ------- null} h -t 0.28 -s 1 -d 2 -p cbr -e 210 -c 1 -i 52 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.28086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 38 -a 1 -x {1.0 5.0 34 ------- null} + -t 0.28086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 38 -a 1 -x {1.0 5.0 34 ------- null} - -t 0.28237 -s 2 -d 3 -p cbr -e 210 -c 1 -i 24 -a 1 -x {1.0 5.0 20 ------- null} h -t 0.28237 -s 2 -d 3 -p cbr -e 210 -c 1 -i 24 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.28375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 53 -a 1 -x {1.0 5.0 49 ------- null} - -t 0.28375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 53 -a 1 -x {1.0 5.0 49 ------- null} h -t 0.28375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 53 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.28461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 39 -a 1 -x {1.0 5.0 35 ------- null} + -t 0.28461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 39 -a 1 -x {1.0 5.0 35 ------- null} - -t 0.28573 -s 2 -d 3 -p cbr -e 210 -c 1 -i 28 -a 1 -x {1.0 5.0 24 ------- null} h -t 0.28573 -s 2 -d 3 -p cbr -e 210 -c 1 -i 28 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.2875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 54 -a 1 -x {1.0 5.0 50 ------- null} - -t 0.2875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 54 -a 1 -x {1.0 5.0 50 ------- null} h -t 0.2875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 54 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.28836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 40 -a 1 -x {1.0 5.0 36 ------- null} + -t 0.28836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 40 -a 1 -x {1.0 5.0 36 ------- null} - -t 0.28909 -s 2 -d 3 -p cbr -e 210 -c 1 -i 29 -a 1 -x {1.0 5.0 25 ------- null} h -t 0.28909 -s 2 -d 3 -p cbr -e 210 -c 1 -i 29 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.29069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 8 -a 1 -x {1.0 5.0 4 ------- null} + -t 0.29125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 55 -a 1 -x {1.0 5.0 51 ------- null} - -t 0.29125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 55 -a 1 -x {1.0 5.0 51 ------- null} h -t 0.29125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 55 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.29211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 41 -a 1 -x {1.0 5.0 37 ------- null} + -t 0.29211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 41 -a 1 -x {1.0 5.0 37 ------- null} - -t 0.29245 -s 2 -d 3 -p cbr -e 210 -c 1 -i 30 -a 1 -x {1.0 5.0 26 ------- null} h -t 0.29245 -s 2 -d 3 -p cbr -e 210 -c 1 -i 30 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.29285 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0 4.0 2 ------- null} + -t 0.29285 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0 4.0 2 ------- null} - -t 0.29285 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0 4.0 2 ------- null} h -t 0.29285 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0 4.0 -1 ------- null} r -t 0.29405 -s 3 -d 5 -p cbr -e 210 -c 1 -i 9 -a 1 -x {1.0 5.0 5 ------- null} + -t 0.295 -s 1 -d 2 -p cbr -e 210 -c 1 -i 56 -a 1 -x {1.0 5.0 52 ------- null} - -t 0.295 -s 1 -d 2 -p cbr -e 210 -c 1 -i 56 -a 1 -x {1.0 5.0 52 ------- null} h -t 0.295 -s 1 -d 2 -p cbr -e 210 -c 1 -i 56 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.29581 -s 2 -d 3 -p cbr -e 210 -c 1 -i 31 -a 1 -x {1.0 5.0 27 ------- null} h -t 0.29581 -s 2 -d 3 -p cbr -e 210 -c 1 -i 31 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.29586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 42 -a 1 -x {1.0 5.0 38 ------- null} + -t 0.29586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 42 -a 1 -x {1.0 5.0 38 ------- null} r -t 0.29621 -s 2 -d 3 -p cbr -e 210 -c 1 -i 16 -a 1 -x {1.0 5.0 12 ------- null} + -t 0.29621 -s 3 -d 5 -p cbr -e 210 -c 1 -i 16 -a 1 -x {1.0 5.0 12 ------- null} - -t 0.29621 -s 3 -d 5 -p cbr -e 210 -c 1 -i 16 -a 1 -x {1.0 5.0 12 ------- null} h -t 0.29621 -s 3 -d 5 -p cbr -e 210 -c 1 -i 16 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.29741 -s 3 -d 5 -p cbr -e 210 -c 1 -i 10 -a 1 -x {1.0 5.0 6 ------- null} + -t 0.29875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 57 -a 1 -x {1.0 5.0 53 ------- null} - -t 0.29875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 57 -a 1 -x {1.0 5.0 53 ------- null} h -t 0.29875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 57 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.29917 -s 2 -d 3 -p cbr -e 210 -c 1 -i 32 -a 1 -x {1.0 5.0 28 ------- null} h -t 0.29917 -s 2 -d 3 -p cbr -e 210 -c 1 -i 32 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.29957 -s 2 -d 3 -p cbr -e 210 -c 1 -i 17 -a 1 -x {1.0 5.0 13 ------- null} + -t 0.29957 -s 3 -d 5 -p cbr -e 210 -c 1 -i 17 -a 1 -x {1.0 5.0 13 ------- null} - -t 0.29957 -s 3 -d 5 -p cbr -e 210 -c 1 -i 17 -a 1 -x {1.0 5.0 13 ------- null} h -t 0.29957 -s 3 -d 5 -p cbr -e 210 -c 1 -i 17 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.29961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 43 -a 1 -x {1.0 5.0 39 ------- null} + -t 0.29961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 43 -a 1 -x {1.0 5.0 39 ------- null} r -t 0.29997 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0 4.0 0 ------- null} + -t 0.29997 -s 4 -d 3 -p ack -e 40 -c 0 -i 58 -a 0 -x {4.0 0.0 0 ------- null} - -t 0.29997 -s 4 -d 3 -p ack -e 40 -c 0 -i 58 -a 0 -x {4.0 0.0 0 ------- null} h -t 0.29997 -s 4 -d 3 -p ack -e 40 -c 0 -i 58 -a 0 -x {4.0 0.0 -1 ------- null} r -t 0.30077 -s 3 -d 5 -p cbr -e 210 -c 1 -i 11 -a 1 -x {1.0 5.0 7 ------- null} + -t 0.3025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 59 -a 1 -x {1.0 5.0 54 ------- null} - -t 0.3025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 59 -a 1 -x {1.0 5.0 54 ------- null} h -t 0.3025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 59 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.30253 -s 2 -d 3 -p cbr -e 210 -c 1 -i 36 -a 1 -x {1.0 5.0 32 ------- null} h -t 0.30253 -s 2 -d 3 -p cbr -e 210 -c 1 -i 36 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.30293 -s 2 -d 3 -p cbr -e 210 -c 1 -i 18 -a 1 -x {1.0 5.0 14 ------- null} + -t 0.30293 -s 3 -d 5 -p cbr -e 210 -c 1 -i 18 -a 1 -x {1.0 5.0 14 ------- null} - -t 0.30293 -s 3 -d 5 -p cbr -e 210 -c 1 -i 18 -a 1 -x {1.0 5.0 14 ------- null} h -t 0.30293 -s 3 -d 5 -p cbr -e 210 -c 1 -i 18 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.30336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 44 -a 1 -x {1.0 5.0 40 ------- null} + -t 0.30336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 44 -a 1 -x {1.0 5.0 40 ------- null} - -t 0.30589 -s 2 -d 3 -p cbr -e 210 -c 1 -i 37 -a 1 -x {1.0 5.0 33 ------- null} h -t 0.30589 -s 2 -d 3 -p cbr -e 210 -c 1 -i 37 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.30625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 60 -a 1 -x {1.0 5.0 55 ------- null} - -t 0.30625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 60 -a 1 -x {1.0 5.0 55 ------- null} h -t 0.30625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 60 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.30629 -s 2 -d 3 -p cbr -e 210 -c 1 -i 19 -a 1 -x {1.0 5.0 15 ------- null} + -t 0.30629 -s 3 -d 5 -p cbr -e 210 -c 1 -i 19 -a 1 -x {1.0 5.0 15 ------- null} - -t 0.30629 -s 3 -d 5 -p cbr -e 210 -c 1 -i 19 -a 1 -x {1.0 5.0 15 ------- null} h -t 0.30629 -s 3 -d 5 -p cbr -e 210 -c 1 -i 19 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.30711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 45 -a 1 -x {1.0 5.0 41 ------- null} + -t 0.30711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 45 -a 1 -x {1.0 5.0 41 ------- null} - -t 0.30925 -s 2 -d 3 -p cbr -e 210 -c 1 -i 38 -a 1 -x {1.0 5.0 34 ------- null} h -t 0.30925 -s 2 -d 3 -p cbr -e 210 -c 1 -i 38 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.31 -s 1 -d 2 -p cbr -e 210 -c 1 -i 61 -a 1 -x {1.0 5.0 56 ------- null} - -t 0.31 -s 1 -d 2 -p cbr -e 210 -c 1 -i 61 -a 1 -x {1.0 5.0 56 ------- null} h -t 0.31 -s 1 -d 2 -p cbr -e 210 -c 1 -i 61 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.31086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 46 -a 1 -x {1.0 5.0 42 ------- null} + -t 0.31086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 46 -a 1 -x {1.0 5.0 42 ------- null} - -t 0.31261 -s 2 -d 3 -p cbr -e 210 -c 1 -i 39 -a 1 -x {1.0 5.0 35 ------- null} h -t 0.31261 -s 2 -d 3 -p cbr -e 210 -c 1 -i 39 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.31375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 62 -a 1 -x {1.0 5.0 57 ------- null} - -t 0.31375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 62 -a 1 -x {1.0 5.0 57 ------- null} h -t 0.31375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 62 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.31461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 47 -a 1 -x {1.0 5.0 43 ------- null} + -t 0.31461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 47 -a 1 -x {1.0 5.0 43 ------- null} - -t 0.31597 -s 2 -d 3 -p cbr -e 210 -c 1 -i 40 -a 1 -x {1.0 5.0 36 ------- null} h -t 0.31597 -s 2 -d 3 -p cbr -e 210 -c 1 -i 40 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.3175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 63 -a 1 -x {1.0 5.0 58 ------- null} - -t 0.3175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 63 -a 1 -x {1.0 5.0 58 ------- null} h -t 0.3175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 63 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.31836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 48 -a 1 -x {1.0 5.0 44 ------- null} + -t 0.31836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 48 -a 1 -x {1.0 5.0 44 ------- null} - -t 0.31933 -s 2 -d 3 -p cbr -e 210 -c 1 -i 41 -a 1 -x {1.0 5.0 37 ------- null} h -t 0.31933 -s 2 -d 3 -p cbr -e 210 -c 1 -i 41 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.32013 -s 3 -d 5 -p cbr -e 210 -c 1 -i 12 -a 1 -x {1.0 5.0 8 ------- null} + -t 0.32125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 64 -a 1 -x {1.0 5.0 59 ------- null} - -t 0.32125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 64 -a 1 -x {1.0 5.0 59 ------- null} h -t 0.32125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 64 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.32211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 49 -a 1 -x {1.0 5.0 45 ------- null} + -t 0.32211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 49 -a 1 -x {1.0 5.0 45 ------- null} r -t 0.32229 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0 4.0 3 ------- null} + -t 0.32229 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0 4.0 3 ------- null} - -t 0.32229 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0 4.0 3 ------- null} h -t 0.32229 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0 4.0 -1 ------- null} - -t 0.32269 -s 2 -d 3 -p cbr -e 210 -c 1 -i 42 -a 1 -x {1.0 5.0 38 ------- null} h -t 0.32269 -s 2 -d 3 -p cbr -e 210 -c 1 -i 42 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.32349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 13 -a 1 -x {1.0 5.0 9 ------- null} + -t 0.325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 65 -a 1 -x {1.0 5.0 60 ------- null} - -t 0.325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 65 -a 1 -x {1.0 5.0 60 ------- null} h -t 0.325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 65 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.32565 -s 2 -d 3 -p cbr -e 210 -c 1 -i 21 -a 1 -x {1.0 5.0 17 ------- null} + -t 0.32565 -s 3 -d 5 -p cbr -e 210 -c 1 -i 21 -a 1 -x {1.0 5.0 17 ------- null} - -t 0.32565 -s 3 -d 5 -p cbr -e 210 -c 1 -i 21 -a 1 -x {1.0 5.0 17 ------- null} h -t 0.32565 -s 3 -d 5 -p cbr -e 210 -c 1 -i 21 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.32586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 50 -a 1 -x {1.0 5.0 46 ------- null} + -t 0.32586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 50 -a 1 -x {1.0 5.0 46 ------- null} - -t 0.32605 -s 2 -d 3 -p cbr -e 210 -c 1 -i 43 -a 1 -x {1.0 5.0 39 ------- null} h -t 0.32605 -s 2 -d 3 -p cbr -e 210 -c 1 -i 43 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.32685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 14 -a 1 -x {1.0 5.0 10 ------- null} + -t 0.32875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 66 -a 1 -x {1.0 5.0 61 ------- null} - -t 0.32875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 66 -a 1 -x {1.0 5.0 61 ------- null} h -t 0.32875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 66 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.32901 -s 2 -d 3 -p cbr -e 210 -c 1 -i 22 -a 1 -x {1.0 5.0 18 ------- null} + -t 0.32901 -s 3 -d 5 -p cbr -e 210 -c 1 -i 22 -a 1 -x {1.0 5.0 18 ------- null} - -t 0.32901 -s 3 -d 5 -p cbr -e 210 -c 1 -i 22 -a 1 -x {1.0 5.0 18 ------- null} h -t 0.32901 -s 3 -d 5 -p cbr -e 210 -c 1 -i 22 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.32941 -s 2 -d 3 -p cbr -e 210 -c 1 -i 44 -a 1 -x {1.0 5.0 40 ------- null} h -t 0.32941 -s 2 -d 3 -p cbr -e 210 -c 1 -i 44 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.32941 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 1 -a 0 -x {0.0 4.0 1 ------- null} + -t 0.32941 -s 4 -d 3 -p ack -e 40 -c 0 -i 67 -a 0 -x {4.0 0.0 1 ------- null} - -t 0.32941 -s 4 -d 3 -p ack -e 40 -c 0 -i 67 -a 0 -x {4.0 0.0 1 ------- null} h -t 0.32941 -s 4 -d 3 -p ack -e 40 -c 0 -i 67 -a 0 -x {4.0 0.0 -1 ------- null} r -t 0.32961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 51 -a 1 -x {1.0 5.0 47 ------- null} + -t 0.32961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 51 -a 1 -x {1.0 5.0 47 ------- null} r -t 0.33021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 15 -a 1 -x {1.0 5.0 11 ------- null} r -t 0.33237 -s 2 -d 3 -p cbr -e 210 -c 1 -i 23 -a 1 -x {1.0 5.0 19 ------- null} + -t 0.33237 -s 3 -d 5 -p cbr -e 210 -c 1 -i 23 -a 1 -x {1.0 5.0 19 ------- null} - -t 0.33237 -s 3 -d 5 -p cbr -e 210 -c 1 -i 23 -a 1 -x {1.0 5.0 19 ------- null} h -t 0.33237 -s 3 -d 5 -p cbr -e 210 -c 1 -i 23 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.3325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 68 -a 1 -x {1.0 5.0 62 ------- null} - -t 0.3325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 68 -a 1 -x {1.0 5.0 62 ------- null} h -t 0.3325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 68 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.33277 -s 2 -d 3 -p cbr -e 210 -c 1 -i 45 -a 1 -x {1.0 5.0 41 ------- null} h -t 0.33277 -s 2 -d 3 -p cbr -e 210 -c 1 -i 45 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.33336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 52 -a 1 -x {1.0 5.0 48 ------- null} + -t 0.33336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 52 -a 1 -x {1.0 5.0 48 ------- null} r -t 0.33573 -s 2 -d 3 -p cbr -e 210 -c 1 -i 24 -a 1 -x {1.0 5.0 20 ------- null} + -t 0.33573 -s 3 -d 5 -p cbr -e 210 -c 1 -i 24 -a 1 -x {1.0 5.0 20 ------- null} - -t 0.33573 -s 3 -d 5 -p cbr -e 210 -c 1 -i 24 -a 1 -x {1.0 5.0 20 ------- null} h -t 0.33573 -s 3 -d 5 -p cbr -e 210 -c 1 -i 24 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.33613 -s 2 -d 3 -p cbr -e 210 -c 1 -i 46 -a 1 -x {1.0 5.0 42 ------- null} h -t 0.33613 -s 2 -d 3 -p cbr -e 210 -c 1 -i 46 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.33625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 69 -a 1 -x {1.0 5.0 63 ------- null} - -t 0.33625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 69 -a 1 -x {1.0 5.0 63 ------- null} h -t 0.33625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 69 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.33711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 53 -a 1 -x {1.0 5.0 49 ------- null} + -t 0.33711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 53 -a 1 -x {1.0 5.0 49 ------- null} r -t 0.33909 -s 2 -d 3 -p cbr -e 210 -c 1 -i 28 -a 1 -x {1.0 5.0 24 ------- null} + -t 0.33909 -s 3 -d 5 -p cbr -e 210 -c 1 -i 28 -a 1 -x {1.0 5.0 24 ------- null} - -t 0.33909 -s 3 -d 5 -p cbr -e 210 -c 1 -i 28 -a 1 -x {1.0 5.0 24 ------- null} h -t 0.33909 -s 3 -d 5 -p cbr -e 210 -c 1 -i 28 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.33949 -s 2 -d 3 -p cbr -e 210 -c 1 -i 47 -a 1 -x {1.0 5.0 43 ------- null} h -t 0.33949 -s 2 -d 3 -p cbr -e 210 -c 1 -i 47 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.34 -s 1 -d 2 -p cbr -e 210 -c 1 -i 70 -a 1 -x {1.0 5.0 64 ------- null} - -t 0.34 -s 1 -d 2 -p cbr -e 210 -c 1 -i 70 -a 1 -x {1.0 5.0 64 ------- null} h -t 0.34 -s 1 -d 2 -p cbr -e 210 -c 1 -i 70 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.34086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 54 -a 1 -x {1.0 5.0 50 ------- null} + -t 0.34086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 54 -a 1 -x {1.0 5.0 50 ------- null} r -t 0.34245 -s 2 -d 3 -p cbr -e 210 -c 1 -i 29 -a 1 -x {1.0 5.0 25 ------- null} + -t 0.34245 -s 3 -d 5 -p cbr -e 210 -c 1 -i 29 -a 1 -x {1.0 5.0 25 ------- null} - -t 0.34245 -s 3 -d 5 -p cbr -e 210 -c 1 -i 29 -a 1 -x {1.0 5.0 25 ------- null} h -t 0.34245 -s 3 -d 5 -p cbr -e 210 -c 1 -i 29 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.34285 -s 2 -d 3 -p cbr -e 210 -c 1 -i 48 -a 1 -x {1.0 5.0 44 ------- null} h -t 0.34285 -s 2 -d 3 -p cbr -e 210 -c 1 -i 48 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.34375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 71 -a 1 -x {1.0 5.0 65 ------- null} - -t 0.34375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 71 -a 1 -x {1.0 5.0 65 ------- null} h -t 0.34375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 71 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.34461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 55 -a 1 -x {1.0 5.0 51 ------- null} + -t 0.34461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 55 -a 1 -x {1.0 5.0 51 ------- null} r -t 0.34581 -s 2 -d 3 -p cbr -e 210 -c 1 -i 30 -a 1 -x {1.0 5.0 26 ------- null} + -t 0.34581 -s 3 -d 5 -p cbr -e 210 -c 1 -i 30 -a 1 -x {1.0 5.0 26 ------- null} - -t 0.34581 -s 3 -d 5 -p cbr -e 210 -c 1 -i 30 -a 1 -x {1.0 5.0 26 ------- null} h -t 0.34581 -s 3 -d 5 -p cbr -e 210 -c 1 -i 30 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.34621 -s 2 -d 3 -p cbr -e 210 -c 1 -i 49 -a 1 -x {1.0 5.0 45 ------- null} h -t 0.34621 -s 2 -d 3 -p cbr -e 210 -c 1 -i 49 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.3475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 72 -a 1 -x {1.0 5.0 66 ------- null} - -t 0.3475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 72 -a 1 -x {1.0 5.0 66 ------- null} h -t 0.3475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 72 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.34836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 56 -a 1 -x {1.0 5.0 52 ------- null} + -t 0.34836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 56 -a 1 -x {1.0 5.0 52 ------- null} r -t 0.34917 -s 2 -d 3 -p cbr -e 210 -c 1 -i 31 -a 1 -x {1.0 5.0 27 ------- null} + -t 0.34917 -s 3 -d 5 -p cbr -e 210 -c 1 -i 31 -a 1 -x {1.0 5.0 27 ------- null} - -t 0.34917 -s 3 -d 5 -p cbr -e 210 -c 1 -i 31 -a 1 -x {1.0 5.0 27 ------- null} h -t 0.34917 -s 3 -d 5 -p cbr -e 210 -c 1 -i 31 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.34957 -s 2 -d 3 -p cbr -e 210 -c 1 -i 50 -a 1 -x {1.0 5.0 46 ------- null} h -t 0.34957 -s 2 -d 3 -p cbr -e 210 -c 1 -i 50 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.34957 -s 3 -d 5 -p cbr -e 210 -c 1 -i 16 -a 1 -x {1.0 5.0 12 ------- null} r -t 0.35061 -s 4 -d 3 -p ack -e 40 -c 0 -i 58 -a 0 -x {4.0 0.0 0 ------- null} + -t 0.35061 -s 3 -d 2 -p ack -e 40 -c 0 -i 58 -a 0 -x {4.0 0.0 0 ------- null} - -t 0.35061 -s 3 -d 2 -p ack -e 40 -c 0 -i 58 -a 0 -x {4.0 0.0 0 ------- null} h -t 0.35061 -s 3 -d 2 -p ack -e 40 -c 0 -i 58 -a 0 -x {4.0 0.0 -1 ------- null} + -t 0.35125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 73 -a 1 -x {1.0 5.0 67 ------- null} - -t 0.35125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 73 -a 1 -x {1.0 5.0 67 ------- null} h -t 0.35125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 73 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.35211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 57 -a 1 -x {1.0 5.0 53 ------- null} + -t 0.35211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 57 -a 1 -x {1.0 5.0 53 ------- null} r -t 0.35253 -s 2 -d 3 -p cbr -e 210 -c 1 -i 32 -a 1 -x {1.0 5.0 28 ------- null} + -t 0.35253 -s 3 -d 5 -p cbr -e 210 -c 1 -i 32 -a 1 -x {1.0 5.0 28 ------- null} - -t 0.35253 -s 3 -d 5 -p cbr -e 210 -c 1 -i 32 -a 1 -x {1.0 5.0 28 ------- null} h -t 0.35253 -s 3 -d 5 -p cbr -e 210 -c 1 -i 32 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.35293 -s 2 -d 3 -p cbr -e 210 -c 1 -i 51 -a 1 -x {1.0 5.0 47 ------- null} h -t 0.35293 -s 2 -d 3 -p cbr -e 210 -c 1 -i 51 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.35293 -s 3 -d 5 -p cbr -e 210 -c 1 -i 17 -a 1 -x {1.0 5.0 13 ------- null} + -t 0.355 -s 1 -d 2 -p cbr -e 210 -c 1 -i 74 -a 1 -x {1.0 5.0 68 ------- null} - -t 0.355 -s 1 -d 2 -p cbr -e 210 -c 1 -i 74 -a 1 -x {1.0 5.0 68 ------- null} h -t 0.355 -s 1 -d 2 -p cbr -e 210 -c 1 -i 74 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.35586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 59 -a 1 -x {1.0 5.0 54 ------- null} + -t 0.35586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 59 -a 1 -x {1.0 5.0 54 ------- null} r -t 0.35589 -s 2 -d 3 -p cbr -e 210 -c 1 -i 36 -a 1 -x {1.0 5.0 32 ------- null} + -t 0.35589 -s 3 -d 5 -p cbr -e 210 -c 1 -i 36 -a 1 -x {1.0 5.0 32 ------- null} - -t 0.35589 -s 3 -d 5 -p cbr -e 210 -c 1 -i 36 -a 1 -x {1.0 5.0 32 ------- null} h -t 0.35589 -s 3 -d 5 -p cbr -e 210 -c 1 -i 36 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.35629 -s 2 -d 3 -p cbr -e 210 -c 1 -i 52 -a 1 -x {1.0 5.0 48 ------- null} h -t 0.35629 -s 2 -d 3 -p cbr -e 210 -c 1 -i 52 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.35629 -s 3 -d 5 -p cbr -e 210 -c 1 -i 18 -a 1 -x {1.0 5.0 14 ------- null} + -t 0.35875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 75 -a 1 -x {1.0 5.0 69 ------- null} - -t 0.35875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 75 -a 1 -x {1.0 5.0 69 ------- null} h -t 0.35875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 75 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.35885 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0 4.0 2 ------- null} + -t 0.35885 -s 4 -d 3 -p ack -e 40 -c 0 -i 76 -a 0 -x {4.0 0.0 2 ------- null} - -t 0.35885 -s 4 -d 3 -p ack -e 40 -c 0 -i 76 -a 0 -x {4.0 0.0 2 ------- null} h -t 0.35885 -s 4 -d 3 -p ack -e 40 -c 0 -i 76 -a 0 -x {4.0 0.0 -1 ------- null} r -t 0.35925 -s 2 -d 3 -p cbr -e 210 -c 1 -i 37 -a 1 -x {1.0 5.0 33 ------- null} + -t 0.35925 -s 3 -d 5 -p cbr -e 210 -c 1 -i 37 -a 1 -x {1.0 5.0 33 ------- null} - -t 0.35925 -s 3 -d 5 -p cbr -e 210 -c 1 -i 37 -a 1 -x {1.0 5.0 33 ------- null} h -t 0.35925 -s 3 -d 5 -p cbr -e 210 -c 1 -i 37 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.35961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 60 -a 1 -x {1.0 5.0 55 ------- null} + -t 0.35961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 60 -a 1 -x {1.0 5.0 55 ------- null} - -t 0.35965 -s 2 -d 3 -p cbr -e 210 -c 1 -i 53 -a 1 -x {1.0 5.0 49 ------- null} h -t 0.35965 -s 2 -d 3 -p cbr -e 210 -c 1 -i 53 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.35965 -s 3 -d 5 -p cbr -e 210 -c 1 -i 19 -a 1 -x {1.0 5.0 15 ------- null} + -t 0.3625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 77 -a 1 -x {1.0 5.0 70 ------- null} - -t 0.3625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 77 -a 1 -x {1.0 5.0 70 ------- null} h -t 0.3625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 77 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.36261 -s 2 -d 3 -p cbr -e 210 -c 1 -i 38 -a 1 -x {1.0 5.0 34 ------- null} + -t 0.36261 -s 3 -d 5 -p cbr -e 210 -c 1 -i 38 -a 1 -x {1.0 5.0 34 ------- null} - -t 0.36261 -s 3 -d 5 -p cbr -e 210 -c 1 -i 38 -a 1 -x {1.0 5.0 34 ------- null} h -t 0.36261 -s 3 -d 5 -p cbr -e 210 -c 1 -i 38 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.36301 -s 2 -d 3 -p cbr -e 210 -c 1 -i 54 -a 1 -x {1.0 5.0 50 ------- null} h -t 0.36301 -s 2 -d 3 -p cbr -e 210 -c 1 -i 54 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.36336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 61 -a 1 -x {1.0 5.0 56 ------- null} + -t 0.36336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 61 -a 1 -x {1.0 5.0 56 ------- null} r -t 0.36597 -s 2 -d 3 -p cbr -e 210 -c 1 -i 39 -a 1 -x {1.0 5.0 35 ------- null} + -t 0.36597 -s 3 -d 5 -p cbr -e 210 -c 1 -i 39 -a 1 -x {1.0 5.0 35 ------- null} - -t 0.36597 -s 3 -d 5 -p cbr -e 210 -c 1 -i 39 -a 1 -x {1.0 5.0 35 ------- null} h -t 0.36597 -s 3 -d 5 -p cbr -e 210 -c 1 -i 39 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.36625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 78 -a 1 -x {1.0 5.0 71 ------- null} - -t 0.36625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 78 -a 1 -x {1.0 5.0 71 ------- null} h -t 0.36625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 78 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.36637 -s 2 -d 3 -p cbr -e 210 -c 1 -i 55 -a 1 -x {1.0 5.0 51 ------- null} h -t 0.36637 -s 2 -d 3 -p cbr -e 210 -c 1 -i 55 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.36711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 62 -a 1 -x {1.0 5.0 57 ------- null} + -t 0.36711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 62 -a 1 -x {1.0 5.0 57 ------- null} r -t 0.36933 -s 2 -d 3 -p cbr -e 210 -c 1 -i 40 -a 1 -x {1.0 5.0 36 ------- null} + -t 0.36933 -s 3 -d 5 -p cbr -e 210 -c 1 -i 40 -a 1 -x {1.0 5.0 36 ------- null} - -t 0.36933 -s 3 -d 5 -p cbr -e 210 -c 1 -i 40 -a 1 -x {1.0 5.0 36 ------- null} h -t 0.36933 -s 3 -d 5 -p cbr -e 210 -c 1 -i 40 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.36973 -s 2 -d 3 -p cbr -e 210 -c 1 -i 56 -a 1 -x {1.0 5.0 52 ------- null} h -t 0.36973 -s 2 -d 3 -p cbr -e 210 -c 1 -i 56 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.37 -s 1 -d 2 -p cbr -e 210 -c 1 -i 79 -a 1 -x {1.0 5.0 72 ------- null} - -t 0.37 -s 1 -d 2 -p cbr -e 210 -c 1 -i 79 -a 1 -x {1.0 5.0 72 ------- null} h -t 0.37 -s 1 -d 2 -p cbr -e 210 -c 1 -i 79 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.37086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 63 -a 1 -x {1.0 5.0 58 ------- null} + -t 0.37086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 63 -a 1 -x {1.0 5.0 58 ------- null} r -t 0.37269 -s 2 -d 3 -p cbr -e 210 -c 1 -i 41 -a 1 -x {1.0 5.0 37 ------- null} + -t 0.37269 -s 3 -d 5 -p cbr -e 210 -c 1 -i 41 -a 1 -x {1.0 5.0 37 ------- null} - -t 0.37269 -s 3 -d 5 -p cbr -e 210 -c 1 -i 41 -a 1 -x {1.0 5.0 37 ------- null} h -t 0.37269 -s 3 -d 5 -p cbr -e 210 -c 1 -i 41 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.37309 -s 2 -d 3 -p cbr -e 210 -c 1 -i 57 -a 1 -x {1.0 5.0 53 ------- null} h -t 0.37309 -s 2 -d 3 -p cbr -e 210 -c 1 -i 57 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.37375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 80 -a 1 -x {1.0 5.0 73 ------- null} - -t 0.37375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 80 -a 1 -x {1.0 5.0 73 ------- null} h -t 0.37375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 80 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.37461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 64 -a 1 -x {1.0 5.0 59 ------- null} + -t 0.37461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 64 -a 1 -x {1.0 5.0 59 ------- null} r -t 0.37605 -s 2 -d 3 -p cbr -e 210 -c 1 -i 42 -a 1 -x {1.0 5.0 38 ------- null} + -t 0.37605 -s 3 -d 5 -p cbr -e 210 -c 1 -i 42 -a 1 -x {1.0 5.0 38 ------- null} - -t 0.37605 -s 3 -d 5 -p cbr -e 210 -c 1 -i 42 -a 1 -x {1.0 5.0 38 ------- null} h -t 0.37605 -s 3 -d 5 -p cbr -e 210 -c 1 -i 42 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.37645 -s 2 -d 3 -p cbr -e 210 -c 1 -i 59 -a 1 -x {1.0 5.0 54 ------- null} h -t 0.37645 -s 2 -d 3 -p cbr -e 210 -c 1 -i 59 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.3775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 81 -a 1 -x {1.0 5.0 74 ------- null} - -t 0.3775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 81 -a 1 -x {1.0 5.0 74 ------- null} h -t 0.3775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 81 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.37836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 65 -a 1 -x {1.0 5.0 60 ------- null} + -t 0.37836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 65 -a 1 -x {1.0 5.0 60 ------- null} r -t 0.37901 -s 3 -d 5 -p cbr -e 210 -c 1 -i 21 -a 1 -x {1.0 5.0 17 ------- null} r -t 0.37941 -s 2 -d 3 -p cbr -e 210 -c 1 -i 43 -a 1 -x {1.0 5.0 39 ------- null} + -t 0.37941 -s 3 -d 5 -p cbr -e 210 -c 1 -i 43 -a 1 -x {1.0 5.0 39 ------- null} - -t 0.37941 -s 3 -d 5 -p cbr -e 210 -c 1 -i 43 -a 1 -x {1.0 5.0 39 ------- null} h -t 0.37941 -s 3 -d 5 -p cbr -e 210 -c 1 -i 43 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.37981 -s 2 -d 3 -p cbr -e 210 -c 1 -i 60 -a 1 -x {1.0 5.0 55 ------- null} h -t 0.37981 -s 2 -d 3 -p cbr -e 210 -c 1 -i 60 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.38005 -s 4 -d 3 -p ack -e 40 -c 0 -i 67 -a 0 -x {4.0 0.0 1 ------- null} + -t 0.38005 -s 3 -d 2 -p ack -e 40 -c 0 -i 67 -a 0 -x {4.0 0.0 1 ------- null} - -t 0.38005 -s 3 -d 2 -p ack -e 40 -c 0 -i 67 -a 0 -x {4.0 0.0 1 ------- null} h -t 0.38005 -s 3 -d 2 -p ack -e 40 -c 0 -i 67 -a 0 -x {4.0 0.0 -1 ------- null} + -t 0.38125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 82 -a 1 -x {1.0 5.0 75 ------- null} - -t 0.38125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 82 -a 1 -x {1.0 5.0 75 ------- null} h -t 0.38125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 82 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.38211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 66 -a 1 -x {1.0 5.0 61 ------- null} + -t 0.38211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 66 -a 1 -x {1.0 5.0 61 ------- null} r -t 0.38237 -s 3 -d 5 -p cbr -e 210 -c 1 -i 22 -a 1 -x {1.0 5.0 18 ------- null} r -t 0.38277 -s 2 -d 3 -p cbr -e 210 -c 1 -i 44 -a 1 -x {1.0 5.0 40 ------- null} + -t 0.38277 -s 3 -d 5 -p cbr -e 210 -c 1 -i 44 -a 1 -x {1.0 5.0 40 ------- null} - -t 0.38277 -s 3 -d 5 -p cbr -e 210 -c 1 -i 44 -a 1 -x {1.0 5.0 40 ------- null} h -t 0.38277 -s 3 -d 5 -p cbr -e 210 -c 1 -i 44 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.38317 -s 2 -d 3 -p cbr -e 210 -c 1 -i 61 -a 1 -x {1.0 5.0 56 ------- null} h -t 0.38317 -s 2 -d 3 -p cbr -e 210 -c 1 -i 61 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.385 -s 1 -d 2 -p cbr -e 210 -c 1 -i 83 -a 1 -x {1.0 5.0 76 ------- null} - -t 0.385 -s 1 -d 2 -p cbr -e 210 -c 1 -i 83 -a 1 -x {1.0 5.0 76 ------- null} h -t 0.385 -s 1 -d 2 -p cbr -e 210 -c 1 -i 83 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.38573 -s 3 -d 5 -p cbr -e 210 -c 1 -i 23 -a 1 -x {1.0 5.0 19 ------- null} r -t 0.38586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 68 -a 1 -x {1.0 5.0 62 ------- null} + -t 0.38586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 68 -a 1 -x {1.0 5.0 62 ------- null} r -t 0.38613 -s 2 -d 3 -p cbr -e 210 -c 1 -i 45 -a 1 -x {1.0 5.0 41 ------- null} + -t 0.38613 -s 3 -d 5 -p cbr -e 210 -c 1 -i 45 -a 1 -x {1.0 5.0 41 ------- null} - -t 0.38613 -s 3 -d 5 -p cbr -e 210 -c 1 -i 45 -a 1 -x {1.0 5.0 41 ------- null} h -t 0.38613 -s 3 -d 5 -p cbr -e 210 -c 1 -i 45 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.38653 -s 2 -d 3 -p cbr -e 210 -c 1 -i 62 -a 1 -x {1.0 5.0 57 ------- null} h -t 0.38653 -s 2 -d 3 -p cbr -e 210 -c 1 -i 62 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.38829 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0 4.0 3 ------- null} + -t 0.38829 -s 4 -d 3 -p ack -e 40 -c 0 -i 84 -a 0 -x {4.0 0.0 3 ------- null} - -t 0.38829 -s 4 -d 3 -p ack -e 40 -c 0 -i 84 -a 0 -x {4.0 0.0 3 ------- null} h -t 0.38829 -s 4 -d 3 -p ack -e 40 -c 0 -i 84 -a 0 -x {4.0 0.0 -1 ------- null} + -t 0.38875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 85 -a 1 -x {1.0 5.0 77 ------- null} - -t 0.38875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 85 -a 1 -x {1.0 5.0 77 ------- null} h -t 0.38875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 85 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.38909 -s 3 -d 5 -p cbr -e 210 -c 1 -i 24 -a 1 -x {1.0 5.0 20 ------- null} r -t 0.38949 -s 2 -d 3 -p cbr -e 210 -c 1 -i 46 -a 1 -x {1.0 5.0 42 ------- null} + -t 0.38949 -s 3 -d 5 -p cbr -e 210 -c 1 -i 46 -a 1 -x {1.0 5.0 42 ------- null} - -t 0.38949 -s 3 -d 5 -p cbr -e 210 -c 1 -i 46 -a 1 -x {1.0 5.0 42 ------- null} h -t 0.38949 -s 3 -d 5 -p cbr -e 210 -c 1 -i 46 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.38961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 69 -a 1 -x {1.0 5.0 63 ------- null} + -t 0.38961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 69 -a 1 -x {1.0 5.0 63 ------- null} - -t 0.38989 -s 2 -d 3 -p cbr -e 210 -c 1 -i 63 -a 1 -x {1.0 5.0 58 ------- null} h -t 0.38989 -s 2 -d 3 -p cbr -e 210 -c 1 -i 63 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.39245 -s 3 -d 5 -p cbr -e 210 -c 1 -i 28 -a 1 -x {1.0 5.0 24 ------- null} + -t 0.3925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 86 -a 1 -x {1.0 5.0 78 ------- null} - -t 0.3925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 86 -a 1 -x {1.0 5.0 78 ------- null} h -t 0.3925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 86 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.39285 -s 2 -d 3 -p cbr -e 210 -c 1 -i 47 -a 1 -x {1.0 5.0 43 ------- null} + -t 0.39285 -s 3 -d 5 -p cbr -e 210 -c 1 -i 47 -a 1 -x {1.0 5.0 43 ------- null} - -t 0.39285 -s 3 -d 5 -p cbr -e 210 -c 1 -i 47 -a 1 -x {1.0 5.0 43 ------- null} h -t 0.39285 -s 3 -d 5 -p cbr -e 210 -c 1 -i 47 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.39325 -s 2 -d 3 -p cbr -e 210 -c 1 -i 64 -a 1 -x {1.0 5.0 59 ------- null} h -t 0.39325 -s 2 -d 3 -p cbr -e 210 -c 1 -i 64 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.39336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 70 -a 1 -x {1.0 5.0 64 ------- null} + -t 0.39336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 70 -a 1 -x {1.0 5.0 64 ------- null} r -t 0.39581 -s 3 -d 5 -p cbr -e 210 -c 1 -i 29 -a 1 -x {1.0 5.0 25 ------- null} r -t 0.39621 -s 2 -d 3 -p cbr -e 210 -c 1 -i 48 -a 1 -x {1.0 5.0 44 ------- null} + -t 0.39621 -s 3 -d 5 -p cbr -e 210 -c 1 -i 48 -a 1 -x {1.0 5.0 44 ------- null} - -t 0.39621 -s 3 -d 5 -p cbr -e 210 -c 1 -i 48 -a 1 -x {1.0 5.0 44 ------- null} h -t 0.39621 -s 3 -d 5 -p cbr -e 210 -c 1 -i 48 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.39625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 87 -a 1 -x {1.0 5.0 79 ------- null} - -t 0.39625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 87 -a 1 -x {1.0 5.0 79 ------- null} h -t 0.39625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 87 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.39661 -s 2 -d 3 -p cbr -e 210 -c 1 -i 65 -a 1 -x {1.0 5.0 60 ------- null} h -t 0.39661 -s 2 -d 3 -p cbr -e 210 -c 1 -i 65 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.39711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 71 -a 1 -x {1.0 5.0 65 ------- null} + -t 0.39711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 71 -a 1 -x {1.0 5.0 65 ------- null} r -t 0.39917 -s 3 -d 5 -p cbr -e 210 -c 1 -i 30 -a 1 -x {1.0 5.0 26 ------- null} r -t 0.39957 -s 2 -d 3 -p cbr -e 210 -c 1 -i 49 -a 1 -x {1.0 5.0 45 ------- null} + -t 0.39957 -s 3 -d 5 -p cbr -e 210 -c 1 -i 49 -a 1 -x {1.0 5.0 45 ------- null} - -t 0.39957 -s 3 -d 5 -p cbr -e 210 -c 1 -i 49 -a 1 -x {1.0 5.0 45 ------- null} h -t 0.39957 -s 3 -d 5 -p cbr -e 210 -c 1 -i 49 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.39997 -s 2 -d 3 -p cbr -e 210 -c 1 -i 66 -a 1 -x {1.0 5.0 61 ------- null} h -t 0.39997 -s 2 -d 3 -p cbr -e 210 -c 1 -i 66 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.4 -s 1 -d 2 -p cbr -e 210 -c 1 -i 88 -a 1 -x {1.0 5.0 80 ------- null} - -t 0.4 -s 1 -d 2 -p cbr -e 210 -c 1 -i 88 -a 1 -x {1.0 5.0 80 ------- null} h -t 0.4 -s 1 -d 2 -p cbr -e 210 -c 1 -i 88 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.40086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 72 -a 1 -x {1.0 5.0 66 ------- null} + -t 0.40086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 72 -a 1 -x {1.0 5.0 66 ------- null} r -t 0.40125 -s 3 -d 2 -p ack -e 40 -c 0 -i 58 -a 0 -x {4.0 0.0 0 ------- null} + -t 0.40125 -s 2 -d 0 -p ack -e 40 -c 0 -i 58 -a 0 -x {4.0 0.0 0 ------- null} - -t 0.40125 -s 2 -d 0 -p ack -e 40 -c 0 -i 58 -a 0 -x {4.0 0.0 0 ------- null} h -t 0.40125 -s 2 -d 0 -p ack -e 40 -c 0 -i 58 -a 0 -x {4.0 0.0 -1 ------- null} r -t 0.40253 -s 3 -d 5 -p cbr -e 210 -c 1 -i 31 -a 1 -x {1.0 5.0 27 ------- null} r -t 0.40293 -s 2 -d 3 -p cbr -e 210 -c 1 -i 50 -a 1 -x {1.0 5.0 46 ------- null} + -t 0.40293 -s 3 -d 5 -p cbr -e 210 -c 1 -i 50 -a 1 -x {1.0 5.0 46 ------- null} - -t 0.40293 -s 3 -d 5 -p cbr -e 210 -c 1 -i 50 -a 1 -x {1.0 5.0 46 ------- null} h -t 0.40293 -s 3 -d 5 -p cbr -e 210 -c 1 -i 50 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.40333 -s 2 -d 3 -p cbr -e 210 -c 1 -i 68 -a 1 -x {1.0 5.0 62 ------- null} h -t 0.40333 -s 2 -d 3 -p cbr -e 210 -c 1 -i 68 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.40375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 89 -a 1 -x {1.0 5.0 81 ------- null} - -t 0.40375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 89 -a 1 -x {1.0 5.0 81 ------- null} h -t 0.40375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 89 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.40461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 73 -a 1 -x {1.0 5.0 67 ------- null} + -t 0.40461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 73 -a 1 -x {1.0 5.0 67 ------- null} r -t 0.40589 -s 3 -d 5 -p cbr -e 210 -c 1 -i 32 -a 1 -x {1.0 5.0 28 ------- null} r -t 0.40629 -s 2 -d 3 -p cbr -e 210 -c 1 -i 51 -a 1 -x {1.0 5.0 47 ------- null} + -t 0.40629 -s 3 -d 5 -p cbr -e 210 -c 1 -i 51 -a 1 -x {1.0 5.0 47 ------- null} - -t 0.40629 -s 3 -d 5 -p cbr -e 210 -c 1 -i 51 -a 1 -x {1.0 5.0 47 ------- null} h -t 0.40629 -s 3 -d 5 -p cbr -e 210 -c 1 -i 51 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.40669 -s 2 -d 3 -p cbr -e 210 -c 1 -i 69 -a 1 -x {1.0 5.0 63 ------- null} h -t 0.40669 -s 2 -d 3 -p cbr -e 210 -c 1 -i 69 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.4075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 90 -a 1 -x {1.0 5.0 82 ------- null} - -t 0.4075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 90 -a 1 -x {1.0 5.0 82 ------- null} h -t 0.4075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 90 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.40836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 74 -a 1 -x {1.0 5.0 68 ------- null} + -t 0.40836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 74 -a 1 -x {1.0 5.0 68 ------- null} r -t 0.40925 -s 3 -d 5 -p cbr -e 210 -c 1 -i 36 -a 1 -x {1.0 5.0 32 ------- null} r -t 0.40949 -s 4 -d 3 -p ack -e 40 -c 0 -i 76 -a 0 -x {4.0 0.0 2 ------- null} + -t 0.40949 -s 3 -d 2 -p ack -e 40 -c 0 -i 76 -a 0 -x {4.0 0.0 2 ------- null} - -t 0.40949 -s 3 -d 2 -p ack -e 40 -c 0 -i 76 -a 0 -x {4.0 0.0 2 ------- null} h -t 0.40949 -s 3 -d 2 -p ack -e 40 -c 0 -i 76 -a 0 -x {4.0 0.0 -1 ------- null} r -t 0.40965 -s 2 -d 3 -p cbr -e 210 -c 1 -i 52 -a 1 -x {1.0 5.0 48 ------- null} + -t 0.40965 -s 3 -d 5 -p cbr -e 210 -c 1 -i 52 -a 1 -x {1.0 5.0 48 ------- null} - -t 0.40965 -s 3 -d 5 -p cbr -e 210 -c 1 -i 52 -a 1 -x {1.0 5.0 48 ------- null} h -t 0.40965 -s 3 -d 5 -p cbr -e 210 -c 1 -i 52 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.41005 -s 2 -d 3 -p cbr -e 210 -c 1 -i 70 -a 1 -x {1.0 5.0 64 ------- null} h -t 0.41005 -s 2 -d 3 -p cbr -e 210 -c 1 -i 70 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.41125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 91 -a 1 -x {1.0 5.0 83 ------- null} - -t 0.41125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 91 -a 1 -x {1.0 5.0 83 ------- null} h -t 0.41125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 91 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.41211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 75 -a 1 -x {1.0 5.0 69 ------- null} + -t 0.41211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 75 -a 1 -x {1.0 5.0 69 ------- null} r -t 0.41261 -s 3 -d 5 -p cbr -e 210 -c 1 -i 37 -a 1 -x {1.0 5.0 33 ------- null} r -t 0.41301 -s 2 -d 3 -p cbr -e 210 -c 1 -i 53 -a 1 -x {1.0 5.0 49 ------- null} + -t 0.41301 -s 3 -d 5 -p cbr -e 210 -c 1 -i 53 -a 1 -x {1.0 5.0 49 ------- null} - -t 0.41301 -s 3 -d 5 -p cbr -e 210 -c 1 -i 53 -a 1 -x {1.0 5.0 49 ------- null} h -t 0.41301 -s 3 -d 5 -p cbr -e 210 -c 1 -i 53 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.41341 -s 2 -d 3 -p cbr -e 210 -c 1 -i 71 -a 1 -x {1.0 5.0 65 ------- null} h -t 0.41341 -s 2 -d 3 -p cbr -e 210 -c 1 -i 71 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.415 -s 1 -d 2 -p cbr -e 210 -c 1 -i 92 -a 1 -x {1.0 5.0 84 ------- null} - -t 0.415 -s 1 -d 2 -p cbr -e 210 -c 1 -i 92 -a 1 -x {1.0 5.0 84 ------- null} h -t 0.415 -s 1 -d 2 -p cbr -e 210 -c 1 -i 92 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.41586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 77 -a 1 -x {1.0 5.0 70 ------- null} + -t 0.41586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 77 -a 1 -x {1.0 5.0 70 ------- null} r -t 0.41597 -s 3 -d 5 -p cbr -e 210 -c 1 -i 38 -a 1 -x {1.0 5.0 34 ------- null} r -t 0.41637 -s 2 -d 3 -p cbr -e 210 -c 1 -i 54 -a 1 -x {1.0 5.0 50 ------- null} + -t 0.41637 -s 3 -d 5 -p cbr -e 210 -c 1 -i 54 -a 1 -x {1.0 5.0 50 ------- null} - -t 0.41637 -s 3 -d 5 -p cbr -e 210 -c 1 -i 54 -a 1 -x {1.0 5.0 50 ------- null} h -t 0.41637 -s 3 -d 5 -p cbr -e 210 -c 1 -i 54 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.41677 -s 2 -d 3 -p cbr -e 210 -c 1 -i 72 -a 1 -x {1.0 5.0 66 ------- null} h -t 0.41677 -s 2 -d 3 -p cbr -e 210 -c 1 -i 72 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.41875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 93 -a 1 -x {1.0 5.0 85 ------- null} - -t 0.41875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 93 -a 1 -x {1.0 5.0 85 ------- null} h -t 0.41875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 93 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.41933 -s 3 -d 5 -p cbr -e 210 -c 1 -i 39 -a 1 -x {1.0 5.0 35 ------- null} r -t 0.41961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 78 -a 1 -x {1.0 5.0 71 ------- null} + -t 0.41961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 78 -a 1 -x {1.0 5.0 71 ------- null} r -t 0.41973 -s 2 -d 3 -p cbr -e 210 -c 1 -i 55 -a 1 -x {1.0 5.0 51 ------- null} + -t 0.41973 -s 3 -d 5 -p cbr -e 210 -c 1 -i 55 -a 1 -x {1.0 5.0 51 ------- null} - -t 0.41973 -s 3 -d 5 -p cbr -e 210 -c 1 -i 55 -a 1 -x {1.0 5.0 51 ------- null} h -t 0.41973 -s 3 -d 5 -p cbr -e 210 -c 1 -i 55 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.42013 -s 2 -d 3 -p cbr -e 210 -c 1 -i 73 -a 1 -x {1.0 5.0 67 ------- null} h -t 0.42013 -s 2 -d 3 -p cbr -e 210 -c 1 -i 73 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.4225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 94 -a 1 -x {1.0 5.0 86 ------- null} - -t 0.4225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 94 -a 1 -x {1.0 5.0 86 ------- null} h -t 0.4225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 94 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.42269 -s 3 -d 5 -p cbr -e 210 -c 1 -i 40 -a 1 -x {1.0 5.0 36 ------- null} r -t 0.42309 -s 2 -d 3 -p cbr -e 210 -c 1 -i 56 -a 1 -x {1.0 5.0 52 ------- null} + -t 0.42309 -s 3 -d 5 -p cbr -e 210 -c 1 -i 56 -a 1 -x {1.0 5.0 52 ------- null} - -t 0.42309 -s 3 -d 5 -p cbr -e 210 -c 1 -i 56 -a 1 -x {1.0 5.0 52 ------- null} h -t 0.42309 -s 3 -d 5 -p cbr -e 210 -c 1 -i 56 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.42336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 79 -a 1 -x {1.0 5.0 72 ------- null} + -t 0.42336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 79 -a 1 -x {1.0 5.0 72 ------- null} - -t 0.42349 -s 2 -d 3 -p cbr -e 210 -c 1 -i 74 -a 1 -x {1.0 5.0 68 ------- null} h -t 0.42349 -s 2 -d 3 -p cbr -e 210 -c 1 -i 74 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.42605 -s 3 -d 5 -p cbr -e 210 -c 1 -i 41 -a 1 -x {1.0 5.0 37 ------- null} + -t 0.42625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 95 -a 1 -x {1.0 5.0 87 ------- null} - -t 0.42625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 95 -a 1 -x {1.0 5.0 87 ------- null} h -t 0.42625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 95 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.42645 -s 2 -d 3 -p cbr -e 210 -c 1 -i 57 -a 1 -x {1.0 5.0 53 ------- null} + -t 0.42645 -s 3 -d 5 -p cbr -e 210 -c 1 -i 57 -a 1 -x {1.0 5.0 53 ------- null} - -t 0.42645 -s 3 -d 5 -p cbr -e 210 -c 1 -i 57 -a 1 -x {1.0 5.0 53 ------- null} h -t 0.42645 -s 3 -d 5 -p cbr -e 210 -c 1 -i 57 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.42685 -s 2 -d 3 -p cbr -e 210 -c 1 -i 75 -a 1 -x {1.0 5.0 69 ------- null} h -t 0.42685 -s 2 -d 3 -p cbr -e 210 -c 1 -i 75 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.42711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 80 -a 1 -x {1.0 5.0 73 ------- null} + -t 0.42711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 80 -a 1 -x {1.0 5.0 73 ------- null} r -t 0.42941 -s 3 -d 5 -p cbr -e 210 -c 1 -i 42 -a 1 -x {1.0 5.0 38 ------- null} r -t 0.42981 -s 2 -d 3 -p cbr -e 210 -c 1 -i 59 -a 1 -x {1.0 5.0 54 ------- null} + -t 0.42981 -s 3 -d 5 -p cbr -e 210 -c 1 -i 59 -a 1 -x {1.0 5.0 54 ------- null} - -t 0.42981 -s 3 -d 5 -p cbr -e 210 -c 1 -i 59 -a 1 -x {1.0 5.0 54 ------- null} h -t 0.42981 -s 3 -d 5 -p cbr -e 210 -c 1 -i 59 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.43 -s 1 -d 2 -p cbr -e 210 -c 1 -i 96 -a 1 -x {1.0 5.0 88 ------- null} - -t 0.43 -s 1 -d 2 -p cbr -e 210 -c 1 -i 96 -a 1 -x {1.0 5.0 88 ------- null} h -t 0.43 -s 1 -d 2 -p cbr -e 210 -c 1 -i 96 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.43021 -s 2 -d 3 -p cbr -e 210 -c 1 -i 77 -a 1 -x {1.0 5.0 70 ------- null} h -t 0.43021 -s 2 -d 3 -p cbr -e 210 -c 1 -i 77 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.43069 -s 3 -d 2 -p ack -e 40 -c 0 -i 67 -a 0 -x {4.0 0.0 1 ------- null} + -t 0.43069 -s 2 -d 0 -p ack -e 40 -c 0 -i 67 -a 0 -x {4.0 0.0 1 ------- null} - -t 0.43069 -s 2 -d 0 -p ack -e 40 -c 0 -i 67 -a 0 -x {4.0 0.0 1 ------- null} h -t 0.43069 -s 2 -d 0 -p ack -e 40 -c 0 -i 67 -a 0 -x {4.0 0.0 -1 ------- null} r -t 0.43086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 81 -a 1 -x {1.0 5.0 74 ------- null} + -t 0.43086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 81 -a 1 -x {1.0 5.0 74 ------- null} r -t 0.43277 -s 3 -d 5 -p cbr -e 210 -c 1 -i 43 -a 1 -x {1.0 5.0 39 ------- null} r -t 0.43317 -s 2 -d 3 -p cbr -e 210 -c 1 -i 60 -a 1 -x {1.0 5.0 55 ------- null} + -t 0.43317 -s 3 -d 5 -p cbr -e 210 -c 1 -i 60 -a 1 -x {1.0 5.0 55 ------- null} - -t 0.43317 -s 3 -d 5 -p cbr -e 210 -c 1 -i 60 -a 1 -x {1.0 5.0 55 ------- null} h -t 0.43317 -s 3 -d 5 -p cbr -e 210 -c 1 -i 60 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.43357 -s 2 -d 3 -p cbr -e 210 -c 1 -i 78 -a 1 -x {1.0 5.0 71 ------- null} h -t 0.43357 -s 2 -d 3 -p cbr -e 210 -c 1 -i 78 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.43375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 97 -a 1 -x {1.0 5.0 89 ------- null} - -t 0.43375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 97 -a 1 -x {1.0 5.0 89 ------- null} h -t 0.43375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 97 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.43461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 82 -a 1 -x {1.0 5.0 75 ------- null} + -t 0.43461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 82 -a 1 -x {1.0 5.0 75 ------- null} r -t 0.43613 -s 3 -d 5 -p cbr -e 210 -c 1 -i 44 -a 1 -x {1.0 5.0 40 ------- null} r -t 0.43653 -s 2 -d 3 -p cbr -e 210 -c 1 -i 61 -a 1 -x {1.0 5.0 56 ------- null} + -t 0.43653 -s 3 -d 5 -p cbr -e 210 -c 1 -i 61 -a 1 -x {1.0 5.0 56 ------- null} - -t 0.43653 -s 3 -d 5 -p cbr -e 210 -c 1 -i 61 -a 1 -x {1.0 5.0 56 ------- null} h -t 0.43653 -s 3 -d 5 -p cbr -e 210 -c 1 -i 61 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.43693 -s 2 -d 3 -p cbr -e 210 -c 1 -i 79 -a 1 -x {1.0 5.0 72 ------- null} h -t 0.43693 -s 2 -d 3 -p cbr -e 210 -c 1 -i 79 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.4375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 98 -a 1 -x {1.0 5.0 90 ------- null} - -t 0.4375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 98 -a 1 -x {1.0 5.0 90 ------- null} h -t 0.4375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 98 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.43836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 83 -a 1 -x {1.0 5.0 76 ------- null} + -t 0.43836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 83 -a 1 -x {1.0 5.0 76 ------- null} r -t 0.43893 -s 4 -d 3 -p ack -e 40 -c 0 -i 84 -a 0 -x {4.0 0.0 3 ------- null} + -t 0.43893 -s 3 -d 2 -p ack -e 40 -c 0 -i 84 -a 0 -x {4.0 0.0 3 ------- null} - -t 0.43893 -s 3 -d 2 -p ack -e 40 -c 0 -i 84 -a 0 -x {4.0 0.0 3 ------- null} h -t 0.43893 -s 3 -d 2 -p ack -e 40 -c 0 -i 84 -a 0 -x {4.0 0.0 -1 ------- null} r -t 0.43949 -s 3 -d 5 -p cbr -e 210 -c 1 -i 45 -a 1 -x {1.0 5.0 41 ------- null} r -t 0.43989 -s 2 -d 3 -p cbr -e 210 -c 1 -i 62 -a 1 -x {1.0 5.0 57 ------- null} + -t 0.43989 -s 3 -d 5 -p cbr -e 210 -c 1 -i 62 -a 1 -x {1.0 5.0 57 ------- null} - -t 0.43989 -s 3 -d 5 -p cbr -e 210 -c 1 -i 62 -a 1 -x {1.0 5.0 57 ------- null} h -t 0.43989 -s 3 -d 5 -p cbr -e 210 -c 1 -i 62 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.44029 -s 2 -d 3 -p cbr -e 210 -c 1 -i 80 -a 1 -x {1.0 5.0 73 ------- null} h -t 0.44029 -s 2 -d 3 -p cbr -e 210 -c 1 -i 80 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.44125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 99 -a 1 -x {1.0 5.0 91 ------- null} - -t 0.44125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 99 -a 1 -x {1.0 5.0 91 ------- null} h -t 0.44125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 99 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.44211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 85 -a 1 -x {1.0 5.0 77 ------- null} + -t 0.44211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 85 -a 1 -x {1.0 5.0 77 ------- null} r -t 0.44285 -s 3 -d 5 -p cbr -e 210 -c 1 -i 46 -a 1 -x {1.0 5.0 42 ------- null} r -t 0.44325 -s 2 -d 3 -p cbr -e 210 -c 1 -i 63 -a 1 -x {1.0 5.0 58 ------- null} + -t 0.44325 -s 3 -d 5 -p cbr -e 210 -c 1 -i 63 -a 1 -x {1.0 5.0 58 ------- null} - -t 0.44325 -s 3 -d 5 -p cbr -e 210 -c 1 -i 63 -a 1 -x {1.0 5.0 58 ------- null} h -t 0.44325 -s 3 -d 5 -p cbr -e 210 -c 1 -i 63 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.44365 -s 2 -d 3 -p cbr -e 210 -c 1 -i 81 -a 1 -x {1.0 5.0 74 ------- null} h -t 0.44365 -s 2 -d 3 -p cbr -e 210 -c 1 -i 81 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.445 -s 1 -d 2 -p cbr -e 210 -c 1 -i 100 -a 1 -x {1.0 5.0 92 ------- null} - -t 0.445 -s 1 -d 2 -p cbr -e 210 -c 1 -i 100 -a 1 -x {1.0 5.0 92 ------- null} h -t 0.445 -s 1 -d 2 -p cbr -e 210 -c 1 -i 100 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.44586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 86 -a 1 -x {1.0 5.0 78 ------- null} + -t 0.44586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 86 -a 1 -x {1.0 5.0 78 ------- null} r -t 0.44621 -s 3 -d 5 -p cbr -e 210 -c 1 -i 47 -a 1 -x {1.0 5.0 43 ------- null} r -t 0.44661 -s 2 -d 3 -p cbr -e 210 -c 1 -i 64 -a 1 -x {1.0 5.0 59 ------- null} + -t 0.44661 -s 3 -d 5 -p cbr -e 210 -c 1 -i 64 -a 1 -x {1.0 5.0 59 ------- null} - -t 0.44661 -s 3 -d 5 -p cbr -e 210 -c 1 -i 64 -a 1 -x {1.0 5.0 59 ------- null} h -t 0.44661 -s 3 -d 5 -p cbr -e 210 -c 1 -i 64 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.44701 -s 2 -d 3 -p cbr -e 210 -c 1 -i 82 -a 1 -x {1.0 5.0 75 ------- null} h -t 0.44701 -s 2 -d 3 -p cbr -e 210 -c 1 -i 82 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.44875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 101 -a 1 -x {1.0 5.0 93 ------- null} - -t 0.44875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 101 -a 1 -x {1.0 5.0 93 ------- null} h -t 0.44875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 101 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.44957 -s 3 -d 5 -p cbr -e 210 -c 1 -i 48 -a 1 -x {1.0 5.0 44 ------- null} r -t 0.44961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 87 -a 1 -x {1.0 5.0 79 ------- null} + -t 0.44961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 87 -a 1 -x {1.0 5.0 79 ------- null} r -t 0.44997 -s 2 -d 3 -p cbr -e 210 -c 1 -i 65 -a 1 -x {1.0 5.0 60 ------- null} + -t 0.44997 -s 3 -d 5 -p cbr -e 210 -c 1 -i 65 -a 1 -x {1.0 5.0 60 ------- null} - -t 0.44997 -s 3 -d 5 -p cbr -e 210 -c 1 -i 65 -a 1 -x {1.0 5.0 60 ------- null} h -t 0.44997 -s 3 -d 5 -p cbr -e 210 -c 1 -i 65 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.45037 -s 2 -d 3 -p cbr -e 210 -c 1 -i 83 -a 1 -x {1.0 5.0 76 ------- null} h -t 0.45037 -s 2 -d 3 -p cbr -e 210 -c 1 -i 83 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.45189 -s 2 -d 0 -p ack -e 40 -c 0 -i 58 -a 0 -x {4.0 0.0 0 ------- null} + -t 0.45189 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {0.0 4.0 4 ------- null} - -t 0.45189 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {0.0 4.0 4 ------- null} h -t 0.45189 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {0.0 4.0 -1 ------- null} + -t 0.4525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 103 -a 1 -x {1.0 5.0 94 ------- null} - -t 0.4525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 103 -a 1 -x {1.0 5.0 94 ------- null} h -t 0.4525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 103 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.45293 -s 3 -d 5 -p cbr -e 210 -c 1 -i 49 -a 1 -x {1.0 5.0 45 ------- null} r -t 0.45333 -s 2 -d 3 -p cbr -e 210 -c 1 -i 66 -a 1 -x {1.0 5.0 61 ------- null} + -t 0.45333 -s 3 -d 5 -p cbr -e 210 -c 1 -i 66 -a 1 -x {1.0 5.0 61 ------- null} - -t 0.45333 -s 3 -d 5 -p cbr -e 210 -c 1 -i 66 -a 1 -x {1.0 5.0 61 ------- null} h -t 0.45333 -s 3 -d 5 -p cbr -e 210 -c 1 -i 66 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.45336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 88 -a 1 -x {1.0 5.0 80 ------- null} + -t 0.45336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 88 -a 1 -x {1.0 5.0 80 ------- null} - -t 0.45373 -s 2 -d 3 -p cbr -e 210 -c 1 -i 85 -a 1 -x {1.0 5.0 77 ------- null} h -t 0.45373 -s 2 -d 3 -p cbr -e 210 -c 1 -i 85 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.45625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 104 -a 1 -x {1.0 5.0 95 ------- null} - -t 0.45625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 104 -a 1 -x {1.0 5.0 95 ------- null} h -t 0.45625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 104 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.45629 -s 3 -d 5 -p cbr -e 210 -c 1 -i 50 -a 1 -x {1.0 5.0 46 ------- null} r -t 0.45669 -s 2 -d 3 -p cbr -e 210 -c 1 -i 68 -a 1 -x {1.0 5.0 62 ------- null} + -t 0.45669 -s 3 -d 5 -p cbr -e 210 -c 1 -i 68 -a 1 -x {1.0 5.0 62 ------- null} - -t 0.45669 -s 3 -d 5 -p cbr -e 210 -c 1 -i 68 -a 1 -x {1.0 5.0 62 ------- null} h -t 0.45669 -s 3 -d 5 -p cbr -e 210 -c 1 -i 68 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.45709 -s 2 -d 3 -p cbr -e 210 -c 1 -i 86 -a 1 -x {1.0 5.0 78 ------- null} h -t 0.45709 -s 2 -d 3 -p cbr -e 210 -c 1 -i 86 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.45711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 89 -a 1 -x {1.0 5.0 81 ------- null} + -t 0.45711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 89 -a 1 -x {1.0 5.0 81 ------- null} r -t 0.45965 -s 3 -d 5 -p cbr -e 210 -c 1 -i 51 -a 1 -x {1.0 5.0 47 ------- null} + -t 0.46 -s 1 -d 2 -p cbr -e 210 -c 1 -i 105 -a 1 -x {1.0 5.0 96 ------- null} - -t 0.46 -s 1 -d 2 -p cbr -e 210 -c 1 -i 105 -a 1 -x {1.0 5.0 96 ------- null} h -t 0.46 -s 1 -d 2 -p cbr -e 210 -c 1 -i 105 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.46005 -s 2 -d 3 -p cbr -e 210 -c 1 -i 69 -a 1 -x {1.0 5.0 63 ------- null} + -t 0.46005 -s 3 -d 5 -p cbr -e 210 -c 1 -i 69 -a 1 -x {1.0 5.0 63 ------- null} - -t 0.46005 -s 3 -d 5 -p cbr -e 210 -c 1 -i 69 -a 1 -x {1.0 5.0 63 ------- null} h -t 0.46005 -s 3 -d 5 -p cbr -e 210 -c 1 -i 69 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.46013 -s 3 -d 2 -p ack -e 40 -c 0 -i 76 -a 0 -x {4.0 0.0 2 ------- null} + -t 0.46013 -s 2 -d 0 -p ack -e 40 -c 0 -i 76 -a 0 -x {4.0 0.0 2 ------- null} - -t 0.46013 -s 2 -d 0 -p ack -e 40 -c 0 -i 76 -a 0 -x {4.0 0.0 2 ------- null} h -t 0.46013 -s 2 -d 0 -p ack -e 40 -c 0 -i 76 -a 0 -x {4.0 0.0 -1 ------- null} - -t 0.46045 -s 2 -d 3 -p cbr -e 210 -c 1 -i 87 -a 1 -x {1.0 5.0 79 ------- null} h -t 0.46045 -s 2 -d 3 -p cbr -e 210 -c 1 -i 87 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.46086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 90 -a 1 -x {1.0 5.0 82 ------- null} + -t 0.46086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 90 -a 1 -x {1.0 5.0 82 ------- null} r -t 0.46301 -s 3 -d 5 -p cbr -e 210 -c 1 -i 52 -a 1 -x {1.0 5.0 48 ------- null} r -t 0.46341 -s 2 -d 3 -p cbr -e 210 -c 1 -i 70 -a 1 -x {1.0 5.0 64 ------- null} + -t 0.46341 -s 3 -d 5 -p cbr -e 210 -c 1 -i 70 -a 1 -x {1.0 5.0 64 ------- null} - -t 0.46341 -s 3 -d 5 -p cbr -e 210 -c 1 -i 70 -a 1 -x {1.0 5.0 64 ------- null} h -t 0.46341 -s 3 -d 5 -p cbr -e 210 -c 1 -i 70 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.46375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 106 -a 1 -x {1.0 5.0 97 ------- null} - -t 0.46375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 106 -a 1 -x {1.0 5.0 97 ------- null} h -t 0.46375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 106 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.46381 -s 2 -d 3 -p cbr -e 210 -c 1 -i 88 -a 1 -x {1.0 5.0 80 ------- null} h -t 0.46381 -s 2 -d 3 -p cbr -e 210 -c 1 -i 88 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.46461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 91 -a 1 -x {1.0 5.0 83 ------- null} + -t 0.46461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 91 -a 1 -x {1.0 5.0 83 ------- null} r -t 0.46637 -s 3 -d 5 -p cbr -e 210 -c 1 -i 53 -a 1 -x {1.0 5.0 49 ------- null} r -t 0.46677 -s 2 -d 3 -p cbr -e 210 -c 1 -i 71 -a 1 -x {1.0 5.0 65 ------- null} + -t 0.46677 -s 3 -d 5 -p cbr -e 210 -c 1 -i 71 -a 1 -x {1.0 5.0 65 ------- null} - -t 0.46677 -s 3 -d 5 -p cbr -e 210 -c 1 -i 71 -a 1 -x {1.0 5.0 65 ------- null} h -t 0.46677 -s 3 -d 5 -p cbr -e 210 -c 1 -i 71 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.46717 -s 2 -d 3 -p cbr -e 210 -c 1 -i 89 -a 1 -x {1.0 5.0 81 ------- null} h -t 0.46717 -s 2 -d 3 -p cbr -e 210 -c 1 -i 89 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.4675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 107 -a 1 -x {1.0 5.0 98 ------- null} - -t 0.4675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 107 -a 1 -x {1.0 5.0 98 ------- null} h -t 0.4675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 107 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.46836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 92 -a 1 -x {1.0 5.0 84 ------- null} + -t 0.46836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 92 -a 1 -x {1.0 5.0 84 ------- null} r -t 0.46973 -s 3 -d 5 -p cbr -e 210 -c 1 -i 54 -a 1 -x {1.0 5.0 50 ------- null} r -t 0.47013 -s 2 -d 3 -p cbr -e 210 -c 1 -i 72 -a 1 -x {1.0 5.0 66 ------- null} + -t 0.47013 -s 3 -d 5 -p cbr -e 210 -c 1 -i 72 -a 1 -x {1.0 5.0 66 ------- null} - -t 0.47013 -s 3 -d 5 -p cbr -e 210 -c 1 -i 72 -a 1 -x {1.0 5.0 66 ------- null} h -t 0.47013 -s 3 -d 5 -p cbr -e 210 -c 1 -i 72 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.47053 -s 2 -d 3 -p cbr -e 210 -c 1 -i 90 -a 1 -x {1.0 5.0 82 ------- null} h -t 0.47053 -s 2 -d 3 -p cbr -e 210 -c 1 -i 90 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.47125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 108 -a 1 -x {1.0 5.0 99 ------- null} - -t 0.47125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 108 -a 1 -x {1.0 5.0 99 ------- null} h -t 0.47125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 108 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.47211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 93 -a 1 -x {1.0 5.0 85 ------- null} + -t 0.47211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 93 -a 1 -x {1.0 5.0 85 ------- null} r -t 0.47309 -s 3 -d 5 -p cbr -e 210 -c 1 -i 55 -a 1 -x {1.0 5.0 51 ------- null} r -t 0.47349 -s 2 -d 3 -p cbr -e 210 -c 1 -i 73 -a 1 -x {1.0 5.0 67 ------- null} + -t 0.47349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 73 -a 1 -x {1.0 5.0 67 ------- null} - -t 0.47349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 73 -a 1 -x {1.0 5.0 67 ------- null} h -t 0.47349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 73 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.47389 -s 2 -d 3 -p cbr -e 210 -c 1 -i 91 -a 1 -x {1.0 5.0 83 ------- null} h -t 0.47389 -s 2 -d 3 -p cbr -e 210 -c 1 -i 91 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 109 -a 1 -x {1.0 5.0 100 ------- null} - -t 0.475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 109 -a 1 -x {1.0 5.0 100 ------- null} h -t 0.475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 109 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.47586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 94 -a 1 -x {1.0 5.0 86 ------- null} + -t 0.47586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 94 -a 1 -x {1.0 5.0 86 ------- null} r -t 0.47645 -s 3 -d 5 -p cbr -e 210 -c 1 -i 56 -a 1 -x {1.0 5.0 52 ------- null} r -t 0.47685 -s 2 -d 3 -p cbr -e 210 -c 1 -i 74 -a 1 -x {1.0 5.0 68 ------- null} + -t 0.47685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 74 -a 1 -x {1.0 5.0 68 ------- null} - -t 0.47685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 74 -a 1 -x {1.0 5.0 68 ------- null} h -t 0.47685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 74 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.47725 -s 2 -d 3 -p cbr -e 210 -c 1 -i 92 -a 1 -x {1.0 5.0 84 ------- null} h -t 0.47725 -s 2 -d 3 -p cbr -e 210 -c 1 -i 92 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.47875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 110 -a 1 -x {1.0 5.0 101 ------- null} - -t 0.47875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 110 -a 1 -x {1.0 5.0 101 ------- null} h -t 0.47875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 110 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.47961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 95 -a 1 -x {1.0 5.0 87 ------- null} + -t 0.47961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 95 -a 1 -x {1.0 5.0 87 ------- null} r -t 0.47981 -s 3 -d 5 -p cbr -e 210 -c 1 -i 57 -a 1 -x {1.0 5.0 53 ------- null} r -t 0.48021 -s 2 -d 3 -p cbr -e 210 -c 1 -i 75 -a 1 -x {1.0 5.0 69 ------- null} + -t 0.48021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 75 -a 1 -x {1.0 5.0 69 ------- null} - -t 0.48021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 75 -a 1 -x {1.0 5.0 69 ------- null} h -t 0.48021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 75 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.48061 -s 2 -d 3 -p cbr -e 210 -c 1 -i 93 -a 1 -x {1.0 5.0 85 ------- null} h -t 0.48061 -s 2 -d 3 -p cbr -e 210 -c 1 -i 93 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.48133 -s 2 -d 0 -p ack -e 40 -c 0 -i 67 -a 0 -x {4.0 0.0 1 ------- null} + -t 0.48133 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {0.0 4.0 5 ------- null} - -t 0.48133 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {0.0 4.0 5 ------- null} h -t 0.48133 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {0.0 4.0 -1 ------- null} + -t 0.4825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 112 -a 1 -x {1.0 5.0 102 ------- null} - -t 0.4825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 112 -a 1 -x {1.0 5.0 102 ------- null} h -t 0.4825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 112 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.48317 -s 3 -d 5 -p cbr -e 210 -c 1 -i 59 -a 1 -x {1.0 5.0 54 ------- null} r -t 0.48336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 96 -a 1 -x {1.0 5.0 88 ------- null} + -t 0.48336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 96 -a 1 -x {1.0 5.0 88 ------- null} r -t 0.48357 -s 2 -d 3 -p cbr -e 210 -c 1 -i 77 -a 1 -x {1.0 5.0 70 ------- null} + -t 0.48357 -s 3 -d 5 -p cbr -e 210 -c 1 -i 77 -a 1 -x {1.0 5.0 70 ------- null} - -t 0.48357 -s 3 -d 5 -p cbr -e 210 -c 1 -i 77 -a 1 -x {1.0 5.0 70 ------- null} h -t 0.48357 -s 3 -d 5 -p cbr -e 210 -c 1 -i 77 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.48397 -s 2 -d 3 -p cbr -e 210 -c 1 -i 94 -a 1 -x {1.0 5.0 86 ------- null} h -t 0.48397 -s 2 -d 3 -p cbr -e 210 -c 1 -i 94 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.48625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 113 -a 1 -x {1.0 5.0 103 ------- null} - -t 0.48625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 113 -a 1 -x {1.0 5.0 103 ------- null} h -t 0.48625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 113 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.48653 -s 3 -d 5 -p cbr -e 210 -c 1 -i 60 -a 1 -x {1.0 5.0 55 ------- null} r -t 0.48693 -s 2 -d 3 -p cbr -e 210 -c 1 -i 78 -a 1 -x {1.0 5.0 71 ------- null} + -t 0.48693 -s 3 -d 5 -p cbr -e 210 -c 1 -i 78 -a 1 -x {1.0 5.0 71 ------- null} - -t 0.48693 -s 3 -d 5 -p cbr -e 210 -c 1 -i 78 -a 1 -x {1.0 5.0 71 ------- null} h -t 0.48693 -s 3 -d 5 -p cbr -e 210 -c 1 -i 78 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.48711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 97 -a 1 -x {1.0 5.0 89 ------- null} + -t 0.48711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 97 -a 1 -x {1.0 5.0 89 ------- null} - -t 0.48733 -s 2 -d 3 -p cbr -e 210 -c 1 -i 95 -a 1 -x {1.0 5.0 87 ------- null} h -t 0.48733 -s 2 -d 3 -p cbr -e 210 -c 1 -i 95 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.48957 -s 3 -d 2 -p ack -e 40 -c 0 -i 84 -a 0 -x {4.0 0.0 3 ------- null} + -t 0.48957 -s 2 -d 0 -p ack -e 40 -c 0 -i 84 -a 0 -x {4.0 0.0 3 ------- null} - -t 0.48957 -s 2 -d 0 -p ack -e 40 -c 0 -i 84 -a 0 -x {4.0 0.0 3 ------- null} h -t 0.48957 -s 2 -d 0 -p ack -e 40 -c 0 -i 84 -a 0 -x {4.0 0.0 -1 ------- null} r -t 0.48989 -s 3 -d 5 -p cbr -e 210 -c 1 -i 61 -a 1 -x {1.0 5.0 56 ------- null} + -t 0.49 -s 1 -d 2 -p cbr -e 210 -c 1 -i 114 -a 1 -x {1.0 5.0 104 ------- null} - -t 0.49 -s 1 -d 2 -p cbr -e 210 -c 1 -i 114 -a 1 -x {1.0 5.0 104 ------- null} h -t 0.49 -s 1 -d 2 -p cbr -e 210 -c 1 -i 114 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.49029 -s 2 -d 3 -p cbr -e 210 -c 1 -i 79 -a 1 -x {1.0 5.0 72 ------- null} + -t 0.49029 -s 3 -d 5 -p cbr -e 210 -c 1 -i 79 -a 1 -x {1.0 5.0 72 ------- null} - -t 0.49029 -s 3 -d 5 -p cbr -e 210 -c 1 -i 79 -a 1 -x {1.0 5.0 72 ------- null} h -t 0.49029 -s 3 -d 5 -p cbr -e 210 -c 1 -i 79 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.49069 -s 2 -d 3 -p cbr -e 210 -c 1 -i 96 -a 1 -x {1.0 5.0 88 ------- null} h -t 0.49069 -s 2 -d 3 -p cbr -e 210 -c 1 -i 96 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.49086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 98 -a 1 -x {1.0 5.0 90 ------- null} + -t 0.49086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 98 -a 1 -x {1.0 5.0 90 ------- null} r -t 0.49325 -s 3 -d 5 -p cbr -e 210 -c 1 -i 62 -a 1 -x {1.0 5.0 57 ------- null} r -t 0.49365 -s 2 -d 3 -p cbr -e 210 -c 1 -i 80 -a 1 -x {1.0 5.0 73 ------- null} + -t 0.49365 -s 3 -d 5 -p cbr -e 210 -c 1 -i 80 -a 1 -x {1.0 5.0 73 ------- null} - -t 0.49365 -s 3 -d 5 -p cbr -e 210 -c 1 -i 80 -a 1 -x {1.0 5.0 73 ------- null} h -t 0.49365 -s 3 -d 5 -p cbr -e 210 -c 1 -i 80 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.49375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 115 -a 1 -x {1.0 5.0 105 ------- null} - -t 0.49375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 115 -a 1 -x {1.0 5.0 105 ------- null} h -t 0.49375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 115 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.49405 -s 2 -d 3 -p cbr -e 210 -c 1 -i 97 -a 1 -x {1.0 5.0 89 ------- null} h -t 0.49405 -s 2 -d 3 -p cbr -e 210 -c 1 -i 97 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.49461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 99 -a 1 -x {1.0 5.0 91 ------- null} + -t 0.49461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 99 -a 1 -x {1.0 5.0 91 ------- null} r -t 0.49661 -s 3 -d 5 -p cbr -e 210 -c 1 -i 63 -a 1 -x {1.0 5.0 58 ------- null} r -t 0.49701 -s 2 -d 3 -p cbr -e 210 -c 1 -i 81 -a 1 -x {1.0 5.0 74 ------- null} + -t 0.49701 -s 3 -d 5 -p cbr -e 210 -c 1 -i 81 -a 1 -x {1.0 5.0 74 ------- null} - -t 0.49701 -s 3 -d 5 -p cbr -e 210 -c 1 -i 81 -a 1 -x {1.0 5.0 74 ------- null} h -t 0.49701 -s 3 -d 5 -p cbr -e 210 -c 1 -i 81 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.49741 -s 2 -d 3 -p cbr -e 210 -c 1 -i 98 -a 1 -x {1.0 5.0 90 ------- null} h -t 0.49741 -s 2 -d 3 -p cbr -e 210 -c 1 -i 98 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.4975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 116 -a 1 -x {1.0 5.0 106 ------- null} - -t 0.4975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 116 -a 1 -x {1.0 5.0 106 ------- null} h -t 0.4975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 116 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.49836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 100 -a 1 -x {1.0 5.0 92 ------- null} + -t 0.49836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 100 -a 1 -x {1.0 5.0 92 ------- null} r -t 0.49997 -s 3 -d 5 -p cbr -e 210 -c 1 -i 64 -a 1 -x {1.0 5.0 59 ------- null} r -t 0.50037 -s 2 -d 3 -p cbr -e 210 -c 1 -i 82 -a 1 -x {1.0 5.0 75 ------- null} + -t 0.50037 -s 3 -d 5 -p cbr -e 210 -c 1 -i 82 -a 1 -x {1.0 5.0 75 ------- null} - -t 0.50037 -s 3 -d 5 -p cbr -e 210 -c 1 -i 82 -a 1 -x {1.0 5.0 75 ------- null} h -t 0.50037 -s 3 -d 5 -p cbr -e 210 -c 1 -i 82 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.50077 -s 2 -d 3 -p cbr -e 210 -c 1 -i 99 -a 1 -x {1.0 5.0 91 ------- null} h -t 0.50077 -s 2 -d 3 -p cbr -e 210 -c 1 -i 99 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.50125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 117 -a 1 -x {1.0 5.0 107 ------- null} - -t 0.50125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 117 -a 1 -x {1.0 5.0 107 ------- null} h -t 0.50125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 117 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.50211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 101 -a 1 -x {1.0 5.0 93 ------- null} + -t 0.50211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 101 -a 1 -x {1.0 5.0 93 ------- null} r -t 0.50333 -s 3 -d 5 -p cbr -e 210 -c 1 -i 65 -a 1 -x {1.0 5.0 60 ------- null} r -t 0.50373 -s 2 -d 3 -p cbr -e 210 -c 1 -i 83 -a 1 -x {1.0 5.0 76 ------- null} + -t 0.50373 -s 3 -d 5 -p cbr -e 210 -c 1 -i 83 -a 1 -x {1.0 5.0 76 ------- null} - -t 0.50373 -s 3 -d 5 -p cbr -e 210 -c 1 -i 83 -a 1 -x {1.0 5.0 76 ------- null} h -t 0.50373 -s 3 -d 5 -p cbr -e 210 -c 1 -i 83 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.50413 -s 2 -d 3 -p cbr -e 210 -c 1 -i 100 -a 1 -x {1.0 5.0 92 ------- null} h -t 0.50413 -s 2 -d 3 -p cbr -e 210 -c 1 -i 100 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.505 -s 1 -d 2 -p cbr -e 210 -c 1 -i 118 -a 1 -x {1.0 5.0 108 ------- null} - -t 0.505 -s 1 -d 2 -p cbr -e 210 -c 1 -i 118 -a 1 -x {1.0 5.0 108 ------- null} h -t 0.505 -s 1 -d 2 -p cbr -e 210 -c 1 -i 118 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.50586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 103 -a 1 -x {1.0 5.0 94 ------- null} + -t 0.50586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 103 -a 1 -x {1.0 5.0 94 ------- null} r -t 0.50669 -s 3 -d 5 -p cbr -e 210 -c 1 -i 66 -a 1 -x {1.0 5.0 61 ------- null} r -t 0.50709 -s 2 -d 3 -p cbr -e 210 -c 1 -i 85 -a 1 -x {1.0 5.0 77 ------- null} + -t 0.50709 -s 3 -d 5 -p cbr -e 210 -c 1 -i 85 -a 1 -x {1.0 5.0 77 ------- null} - -t 0.50709 -s 3 -d 5 -p cbr -e 210 -c 1 -i 85 -a 1 -x {1.0 5.0 77 ------- null} h -t 0.50709 -s 3 -d 5 -p cbr -e 210 -c 1 -i 85 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.50749 -s 2 -d 3 -p cbr -e 210 -c 1 -i 101 -a 1 -x {1.0 5.0 93 ------- null} h -t 0.50749 -s 2 -d 3 -p cbr -e 210 -c 1 -i 101 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.50875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 119 -a 1 -x {1.0 5.0 109 ------- null} - -t 0.50875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 119 -a 1 -x {1.0 5.0 109 ------- null} h -t 0.50875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 119 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.50961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 104 -a 1 -x {1.0 5.0 95 ------- null} + -t 0.50961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 104 -a 1 -x {1.0 5.0 95 ------- null} r -t 0.51005 -s 3 -d 5 -p cbr -e 210 -c 1 -i 68 -a 1 -x {1.0 5.0 62 ------- null} r -t 0.51045 -s 2 -d 3 -p cbr -e 210 -c 1 -i 86 -a 1 -x {1.0 5.0 78 ------- null} + -t 0.51045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 86 -a 1 -x {1.0 5.0 78 ------- null} - -t 0.51045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 86 -a 1 -x {1.0 5.0 78 ------- null} h -t 0.51045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 86 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.51077 -s 2 -d 0 -p ack -e 40 -c 0 -i 76 -a 0 -x {4.0 0.0 2 ------- null} + -t 0.51077 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {0.0 4.0 6 ------- null} - -t 0.51077 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {0.0 4.0 6 ------- null} h -t 0.51077 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {0.0 4.0 -1 ------- null} - -t 0.51085 -s 2 -d 3 -p cbr -e 210 -c 1 -i 103 -a 1 -x {1.0 5.0 94 ------- null} h -t 0.51085 -s 2 -d 3 -p cbr -e 210 -c 1 -i 103 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.5125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 121 -a 1 -x {1.0 5.0 110 ------- null} - -t 0.5125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 121 -a 1 -x {1.0 5.0 110 ------- null} h -t 0.5125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 121 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.51336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 105 -a 1 -x {1.0 5.0 96 ------- null} + -t 0.51336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 105 -a 1 -x {1.0 5.0 96 ------- null} r -t 0.51341 -s 3 -d 5 -p cbr -e 210 -c 1 -i 69 -a 1 -x {1.0 5.0 63 ------- null} r -t 0.51381 -s 2 -d 3 -p cbr -e 210 -c 1 -i 87 -a 1 -x {1.0 5.0 79 ------- null} + -t 0.51381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 87 -a 1 -x {1.0 5.0 79 ------- null} - -t 0.51381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 87 -a 1 -x {1.0 5.0 79 ------- null} h -t 0.51381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 87 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.51421 -s 2 -d 3 -p cbr -e 210 -c 1 -i 104 -a 1 -x {1.0 5.0 95 ------- null} h -t 0.51421 -s 2 -d 3 -p cbr -e 210 -c 1 -i 104 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.51625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 122 -a 1 -x {1.0 5.0 111 ------- null} - -t 0.51625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 122 -a 1 -x {1.0 5.0 111 ------- null} h -t 0.51625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 122 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.51677 -s 3 -d 5 -p cbr -e 210 -c 1 -i 70 -a 1 -x {1.0 5.0 64 ------- null} r -t 0.51711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 106 -a 1 -x {1.0 5.0 97 ------- null} + -t 0.51711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 106 -a 1 -x {1.0 5.0 97 ------- null} r -t 0.51717 -s 2 -d 3 -p cbr -e 210 -c 1 -i 88 -a 1 -x {1.0 5.0 80 ------- null} + -t 0.51717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 88 -a 1 -x {1.0 5.0 80 ------- null} - -t 0.51717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 88 -a 1 -x {1.0 5.0 80 ------- null} h -t 0.51717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 88 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.51757 -s 2 -d 3 -p cbr -e 210 -c 1 -i 105 -a 1 -x {1.0 5.0 96 ------- null} h -t 0.51757 -s 2 -d 3 -p cbr -e 210 -c 1 -i 105 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.51789 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {0.0 4.0 4 ------- null} + -t 0.51789 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {0.0 4.0 4 ------- null} + -t 0.52 -s 1 -d 2 -p cbr -e 210 -c 1 -i 123 -a 1 -x {1.0 5.0 112 ------- null} - -t 0.52 -s 1 -d 2 -p cbr -e 210 -c 1 -i 123 -a 1 -x {1.0 5.0 112 ------- null} h -t 0.52 -s 1 -d 2 -p cbr -e 210 -c 1 -i 123 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.52013 -s 3 -d 5 -p cbr -e 210 -c 1 -i 71 -a 1 -x {1.0 5.0 65 ------- null} r -t 0.52053 -s 2 -d 3 -p cbr -e 210 -c 1 -i 89 -a 1 -x {1.0 5.0 81 ------- null} + -t 0.52053 -s 3 -d 5 -p cbr -e 210 -c 1 -i 89 -a 1 -x {1.0 5.0 81 ------- null} - -t 0.52053 -s 3 -d 5 -p cbr -e 210 -c 1 -i 89 -a 1 -x {1.0 5.0 81 ------- null} h -t 0.52053 -s 3 -d 5 -p cbr -e 210 -c 1 -i 89 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.52086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 107 -a 1 -x {1.0 5.0 98 ------- null} + -t 0.52086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 107 -a 1 -x {1.0 5.0 98 ------- null} - -t 0.52093 -s 2 -d 3 -p cbr -e 210 -c 1 -i 106 -a 1 -x {1.0 5.0 97 ------- null} h -t 0.52093 -s 2 -d 3 -p cbr -e 210 -c 1 -i 106 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.52349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 72 -a 1 -x {1.0 5.0 66 ------- null} + -t 0.52375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 124 -a 1 -x {1.0 5.0 113 ------- null} - -t 0.52375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 124 -a 1 -x {1.0 5.0 113 ------- null} h -t 0.52375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 124 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.52389 -s 2 -d 3 -p cbr -e 210 -c 1 -i 90 -a 1 -x {1.0 5.0 82 ------- null} + -t 0.52389 -s 3 -d 5 -p cbr -e 210 -c 1 -i 90 -a 1 -x {1.0 5.0 82 ------- null} - -t 0.52389 -s 3 -d 5 -p cbr -e 210 -c 1 -i 90 -a 1 -x {1.0 5.0 82 ------- null} h -t 0.52389 -s 3 -d 5 -p cbr -e 210 -c 1 -i 90 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.52429 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {0.0 4.0 4 ------- null} h -t 0.52429 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {0.0 4.0 -1 ------- null} r -t 0.52461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 108 -a 1 -x {1.0 5.0 99 ------- null} + -t 0.52461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 108 -a 1 -x {1.0 5.0 99 ------- null} r -t 0.52685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 73 -a 1 -x {1.0 5.0 67 ------- null} r -t 0.52725 -s 2 -d 3 -p cbr -e 210 -c 1 -i 91 -a 1 -x {1.0 5.0 83 ------- null} + -t 0.52725 -s 3 -d 5 -p cbr -e 210 -c 1 -i 91 -a 1 -x {1.0 5.0 83 ------- null} - -t 0.52725 -s 3 -d 5 -p cbr -e 210 -c 1 -i 91 -a 1 -x {1.0 5.0 83 ------- null} h -t 0.52725 -s 3 -d 5 -p cbr -e 210 -c 1 -i 91 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.5275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 125 -a 1 -x {1.0 5.0 114 ------- null} - -t 0.5275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 125 -a 1 -x {1.0 5.0 114 ------- null} h -t 0.5275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 125 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.52836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 109 -a 1 -x {1.0 5.0 100 ------- null} + -t 0.52836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 109 -a 1 -x {1.0 5.0 100 ------- null} r -t 0.53021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 74 -a 1 -x {1.0 5.0 68 ------- null} r -t 0.53061 -s 2 -d 3 -p cbr -e 210 -c 1 -i 92 -a 1 -x {1.0 5.0 84 ------- null} + -t 0.53061 -s 3 -d 5 -p cbr -e 210 -c 1 -i 92 -a 1 -x {1.0 5.0 84 ------- null} - -t 0.53061 -s 3 -d 5 -p cbr -e 210 -c 1 -i 92 -a 1 -x {1.0 5.0 84 ------- null} h -t 0.53061 -s 3 -d 5 -p cbr -e 210 -c 1 -i 92 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.53125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 126 -a 1 -x {1.0 5.0 115 ------- null} - -t 0.53125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 126 -a 1 -x {1.0 5.0 115 ------- null} h -t 0.53125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 126 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.53211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 110 -a 1 -x {1.0 5.0 101 ------- null} + -t 0.53211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 110 -a 1 -x {1.0 5.0 101 ------- null} r -t 0.53357 -s 3 -d 5 -p cbr -e 210 -c 1 -i 75 -a 1 -x {1.0 5.0 69 ------- null} r -t 0.53397 -s 2 -d 3 -p cbr -e 210 -c 1 -i 93 -a 1 -x {1.0 5.0 85 ------- null} + -t 0.53397 -s 3 -d 5 -p cbr -e 210 -c 1 -i 93 -a 1 -x {1.0 5.0 85 ------- null} - -t 0.53397 -s 3 -d 5 -p cbr -e 210 -c 1 -i 93 -a 1 -x {1.0 5.0 85 ------- null} h -t 0.53397 -s 3 -d 5 -p cbr -e 210 -c 1 -i 93 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.535 -s 1 -d 2 -p cbr -e 210 -c 1 -i 127 -a 1 -x {1.0 5.0 116 ------- null} - -t 0.535 -s 1 -d 2 -p cbr -e 210 -c 1 -i 127 -a 1 -x {1.0 5.0 116 ------- null} h -t 0.535 -s 1 -d 2 -p cbr -e 210 -c 1 -i 127 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.53586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 112 -a 1 -x {1.0 5.0 102 ------- null} + -t 0.53586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 112 -a 1 -x {1.0 5.0 102 ------- null} r -t 0.53693 -s 3 -d 5 -p cbr -e 210 -c 1 -i 77 -a 1 -x {1.0 5.0 70 ------- null} r -t 0.53733 -s 2 -d 3 -p cbr -e 210 -c 1 -i 94 -a 1 -x {1.0 5.0 86 ------- null} + -t 0.53733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 94 -a 1 -x {1.0 5.0 86 ------- null} - -t 0.53733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 94 -a 1 -x {1.0 5.0 86 ------- null} h -t 0.53733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 94 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.53875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 128 -a 1 -x {1.0 5.0 117 ------- null} - -t 0.53875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 128 -a 1 -x {1.0 5.0 117 ------- null} h -t 0.53875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 128 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.53961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 113 -a 1 -x {1.0 5.0 103 ------- null} + -t 0.53961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 113 -a 1 -x {1.0 5.0 103 ------- null} r -t 0.54021 -s 2 -d 0 -p ack -e 40 -c 0 -i 84 -a 0 -x {4.0 0.0 3 ------- null} + -t 0.54021 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 129 -a 0 -x {0.0 4.0 7 ------- null} - -t 0.54021 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 129 -a 0 -x {0.0 4.0 7 ------- null} h -t 0.54021 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 129 -a 0 -x {0.0 4.0 -1 ------- null} - -t 0.54029 -s 2 -d 3 -p cbr -e 210 -c 1 -i 107 -a 1 -x {1.0 5.0 98 ------- null} h -t 0.54029 -s 2 -d 3 -p cbr -e 210 -c 1 -i 107 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.54029 -s 3 -d 5 -p cbr -e 210 -c 1 -i 78 -a 1 -x {1.0 5.0 71 ------- null} r -t 0.54069 -s 2 -d 3 -p cbr -e 210 -c 1 -i 95 -a 1 -x {1.0 5.0 87 ------- null} + -t 0.54069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 95 -a 1 -x {1.0 5.0 87 ------- null} - -t 0.54069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 95 -a 1 -x {1.0 5.0 87 ------- null} h -t 0.54069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 95 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.5425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 130 -a 1 -x {1.0 5.0 118 ------- null} - -t 0.5425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 130 -a 1 -x {1.0 5.0 118 ------- null} h -t 0.5425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 130 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.54336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 114 -a 1 -x {1.0 5.0 104 ------- null} + -t 0.54336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 114 -a 1 -x {1.0 5.0 104 ------- null} - -t 0.54365 -s 2 -d 3 -p cbr -e 210 -c 1 -i 108 -a 1 -x {1.0 5.0 99 ------- null} h -t 0.54365 -s 2 -d 3 -p cbr -e 210 -c 1 -i 108 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.54365 -s 3 -d 5 -p cbr -e 210 -c 1 -i 79 -a 1 -x {1.0 5.0 72 ------- null} r -t 0.54405 -s 2 -d 3 -p cbr -e 210 -c 1 -i 96 -a 1 -x {1.0 5.0 88 ------- null} + -t 0.54405 -s 3 -d 5 -p cbr -e 210 -c 1 -i 96 -a 1 -x {1.0 5.0 88 ------- null} - -t 0.54405 -s 3 -d 5 -p cbr -e 210 -c 1 -i 96 -a 1 -x {1.0 5.0 88 ------- null} h -t 0.54405 -s 3 -d 5 -p cbr -e 210 -c 1 -i 96 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.54625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 131 -a 1 -x {1.0 5.0 119 ------- null} - -t 0.54625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 131 -a 1 -x {1.0 5.0 119 ------- null} h -t 0.54625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 131 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.54701 -s 2 -d 3 -p cbr -e 210 -c 1 -i 109 -a 1 -x {1.0 5.0 100 ------- null} h -t 0.54701 -s 2 -d 3 -p cbr -e 210 -c 1 -i 109 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.54701 -s 3 -d 5 -p cbr -e 210 -c 1 -i 80 -a 1 -x {1.0 5.0 73 ------- null} r -t 0.54711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 115 -a 1 -x {1.0 5.0 105 ------- null} + -t 0.54711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 115 -a 1 -x {1.0 5.0 105 ------- null} r -t 0.54733 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {0.0 4.0 5 ------- null} + -t 0.54733 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {0.0 4.0 5 ------- null} r -t 0.54741 -s 2 -d 3 -p cbr -e 210 -c 1 -i 97 -a 1 -x {1.0 5.0 89 ------- null} + -t 0.54741 -s 3 -d 5 -p cbr -e 210 -c 1 -i 97 -a 1 -x {1.0 5.0 89 ------- null} - -t 0.54741 -s 3 -d 5 -p cbr -e 210 -c 1 -i 97 -a 1 -x {1.0 5.0 89 ------- null} h -t 0.54741 -s 3 -d 5 -p cbr -e 210 -c 1 -i 97 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.55 -s 1 -d 2 -p cbr -e 210 -c 1 -i 132 -a 1 -x {1.0 5.0 120 ------- null} - -t 0.55 -s 1 -d 2 -p cbr -e 210 -c 1 -i 132 -a 1 -x {1.0 5.0 120 ------- null} h -t 0.55 -s 1 -d 2 -p cbr -e 210 -c 1 -i 132 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.55037 -s 2 -d 3 -p cbr -e 210 -c 1 -i 110 -a 1 -x {1.0 5.0 101 ------- null} h -t 0.55037 -s 2 -d 3 -p cbr -e 210 -c 1 -i 110 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.55037 -s 3 -d 5 -p cbr -e 210 -c 1 -i 81 -a 1 -x {1.0 5.0 74 ------- null} r -t 0.55077 -s 2 -d 3 -p cbr -e 210 -c 1 -i 98 -a 1 -x {1.0 5.0 90 ------- null} + -t 0.55077 -s 3 -d 5 -p cbr -e 210 -c 1 -i 98 -a 1 -x {1.0 5.0 90 ------- null} - -t 0.55077 -s 3 -d 5 -p cbr -e 210 -c 1 -i 98 -a 1 -x {1.0 5.0 90 ------- null} h -t 0.55077 -s 3 -d 5 -p cbr -e 210 -c 1 -i 98 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.55086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 116 -a 1 -x {1.0 5.0 106 ------- null} + -t 0.55086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 116 -a 1 -x {1.0 5.0 106 ------- null} - -t 0.55373 -s 2 -d 3 -p cbr -e 210 -c 1 -i 112 -a 1 -x {1.0 5.0 102 ------- null} h -t 0.55373 -s 2 -d 3 -p cbr -e 210 -c 1 -i 112 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.55373 -s 3 -d 5 -p cbr -e 210 -c 1 -i 82 -a 1 -x {1.0 5.0 75 ------- null} + -t 0.55375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 133 -a 1 -x {1.0 5.0 121 ------- null} - -t 0.55375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 133 -a 1 -x {1.0 5.0 121 ------- null} h -t 0.55375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 133 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.55413 -s 2 -d 3 -p cbr -e 210 -c 1 -i 99 -a 1 -x {1.0 5.0 91 ------- null} + -t 0.55413 -s 3 -d 5 -p cbr -e 210 -c 1 -i 99 -a 1 -x {1.0 5.0 91 ------- null} - -t 0.55413 -s 3 -d 5 -p cbr -e 210 -c 1 -i 99 -a 1 -x {1.0 5.0 91 ------- null} h -t 0.55413 -s 3 -d 5 -p cbr -e 210 -c 1 -i 99 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.55461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 117 -a 1 -x {1.0 5.0 107 ------- null} + -t 0.55461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 117 -a 1 -x {1.0 5.0 107 ------- null} - -t 0.55709 -s 2 -d 3 -p cbr -e 210 -c 1 -i 113 -a 1 -x {1.0 5.0 103 ------- null} h -t 0.55709 -s 2 -d 3 -p cbr -e 210 -c 1 -i 113 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.55709 -s 3 -d 5 -p cbr -e 210 -c 1 -i 83 -a 1 -x {1.0 5.0 76 ------- null} r -t 0.55749 -s 2 -d 3 -p cbr -e 210 -c 1 -i 100 -a 1 -x {1.0 5.0 92 ------- null} + -t 0.55749 -s 3 -d 5 -p cbr -e 210 -c 1 -i 100 -a 1 -x {1.0 5.0 92 ------- null} - -t 0.55749 -s 3 -d 5 -p cbr -e 210 -c 1 -i 100 -a 1 -x {1.0 5.0 92 ------- null} h -t 0.55749 -s 3 -d 5 -p cbr -e 210 -c 1 -i 100 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.5575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 134 -a 1 -x {1.0 5.0 122 ------- null} - -t 0.5575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 134 -a 1 -x {1.0 5.0 122 ------- null} h -t 0.5575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 134 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.55836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 118 -a 1 -x {1.0 5.0 108 ------- null} + -t 0.55836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 118 -a 1 -x {1.0 5.0 108 ------- null} - -t 0.56045 -s 2 -d 3 -p cbr -e 210 -c 1 -i 114 -a 1 -x {1.0 5.0 104 ------- null} h -t 0.56045 -s 2 -d 3 -p cbr -e 210 -c 1 -i 114 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.56045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 85 -a 1 -x {1.0 5.0 77 ------- null} r -t 0.56085 -s 2 -d 3 -p cbr -e 210 -c 1 -i 101 -a 1 -x {1.0 5.0 93 ------- null} + -t 0.56085 -s 3 -d 5 -p cbr -e 210 -c 1 -i 101 -a 1 -x {1.0 5.0 93 ------- null} - -t 0.56085 -s 3 -d 5 -p cbr -e 210 -c 1 -i 101 -a 1 -x {1.0 5.0 93 ------- null} h -t 0.56085 -s 3 -d 5 -p cbr -e 210 -c 1 -i 101 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.56125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 135 -a 1 -x {1.0 5.0 123 ------- null} - -t 0.56125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 135 -a 1 -x {1.0 5.0 123 ------- null} h -t 0.56125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 135 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.56211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 119 -a 1 -x {1.0 5.0 109 ------- null} + -t 0.56211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 119 -a 1 -x {1.0 5.0 109 ------- null} - -t 0.56381 -s 2 -d 3 -p cbr -e 210 -c 1 -i 115 -a 1 -x {1.0 5.0 105 ------- null} h -t 0.56381 -s 2 -d 3 -p cbr -e 210 -c 1 -i 115 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.56381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 86 -a 1 -x {1.0 5.0 78 ------- null} r -t 0.56421 -s 2 -d 3 -p cbr -e 210 -c 1 -i 103 -a 1 -x {1.0 5.0 94 ------- null} + -t 0.56421 -s 3 -d 5 -p cbr -e 210 -c 1 -i 103 -a 1 -x {1.0 5.0 94 ------- null} - -t 0.56421 -s 3 -d 5 -p cbr -e 210 -c 1 -i 103 -a 1 -x {1.0 5.0 94 ------- null} h -t 0.56421 -s 3 -d 5 -p cbr -e 210 -c 1 -i 103 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.565 -s 1 -d 2 -p cbr -e 210 -c 1 -i 136 -a 1 -x {1.0 5.0 124 ------- null} - -t 0.565 -s 1 -d 2 -p cbr -e 210 -c 1 -i 136 -a 1 -x {1.0 5.0 124 ------- null} h -t 0.565 -s 1 -d 2 -p cbr -e 210 -c 1 -i 136 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.56586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 121 -a 1 -x {1.0 5.0 110 ------- null} + -t 0.56586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 121 -a 1 -x {1.0 5.0 110 ------- null} - -t 0.56717 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {0.0 4.0 5 ------- null} h -t 0.56717 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {0.0 4.0 -1 ------- null} r -t 0.56717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 87 -a 1 -x {1.0 5.0 79 ------- null} r -t 0.56757 -s 2 -d 3 -p cbr -e 210 -c 1 -i 104 -a 1 -x {1.0 5.0 95 ------- null} + -t 0.56757 -s 3 -d 5 -p cbr -e 210 -c 1 -i 104 -a 1 -x {1.0 5.0 95 ------- null} - -t 0.56757 -s 3 -d 5 -p cbr -e 210 -c 1 -i 104 -a 1 -x {1.0 5.0 95 ------- null} h -t 0.56757 -s 3 -d 5 -p cbr -e 210 -c 1 -i 104 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.56875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 137 -a 1 -x {1.0 5.0 125 ------- null} - -t 0.56875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 137 -a 1 -x {1.0 5.0 125 ------- null} h -t 0.56875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 137 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.56961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 122 -a 1 -x {1.0 5.0 111 ------- null} + -t 0.56961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 122 -a 1 -x {1.0 5.0 111 ------- null} r -t 0.57053 -s 3 -d 5 -p cbr -e 210 -c 1 -i 88 -a 1 -x {1.0 5.0 80 ------- null} r -t 0.57093 -s 2 -d 3 -p cbr -e 210 -c 1 -i 105 -a 1 -x {1.0 5.0 96 ------- null} + -t 0.57093 -s 3 -d 5 -p cbr -e 210 -c 1 -i 105 -a 1 -x {1.0 5.0 96 ------- null} - -t 0.57093 -s 3 -d 5 -p cbr -e 210 -c 1 -i 105 -a 1 -x {1.0 5.0 96 ------- null} h -t 0.57093 -s 3 -d 5 -p cbr -e 210 -c 1 -i 105 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.5725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 138 -a 1 -x {1.0 5.0 126 ------- null} - -t 0.5725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 138 -a 1 -x {1.0 5.0 126 ------- null} h -t 0.5725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 138 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.57336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 123 -a 1 -x {1.0 5.0 112 ------- null} + -t 0.57336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 123 -a 1 -x {1.0 5.0 112 ------- null} r -t 0.57389 -s 3 -d 5 -p cbr -e 210 -c 1 -i 89 -a 1 -x {1.0 5.0 81 ------- null} r -t 0.57429 -s 2 -d 3 -p cbr -e 210 -c 1 -i 106 -a 1 -x {1.0 5.0 97 ------- null} + -t 0.57429 -s 3 -d 5 -p cbr -e 210 -c 1 -i 106 -a 1 -x {1.0 5.0 97 ------- null} - -t 0.57429 -s 3 -d 5 -p cbr -e 210 -c 1 -i 106 -a 1 -x {1.0 5.0 97 ------- null} h -t 0.57429 -s 3 -d 5 -p cbr -e 210 -c 1 -i 106 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.57625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 139 -a 1 -x {1.0 5.0 127 ------- null} - -t 0.57625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 139 -a 1 -x {1.0 5.0 127 ------- null} h -t 0.57625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 139 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.57677 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {0.0 4.0 6 ------- null} + -t 0.57677 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {0.0 4.0 6 ------- null} r -t 0.57711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 124 -a 1 -x {1.0 5.0 113 ------- null} + -t 0.57711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 124 -a 1 -x {1.0 5.0 113 ------- null} r -t 0.57725 -s 3 -d 5 -p cbr -e 210 -c 1 -i 90 -a 1 -x {1.0 5.0 82 ------- null} + -t 0.58 -s 1 -d 2 -p cbr -e 210 -c 1 -i 140 -a 1 -x {1.0 5.0 128 ------- null} - -t 0.58 -s 1 -d 2 -p cbr -e 210 -c 1 -i 140 -a 1 -x {1.0 5.0 128 ------- null} h -t 0.58 -s 1 -d 2 -p cbr -e 210 -c 1 -i 140 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.58061 -s 3 -d 5 -p cbr -e 210 -c 1 -i 91 -a 1 -x {1.0 5.0 83 ------- null} r -t 0.58086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 125 -a 1 -x {1.0 5.0 114 ------- null} + -t 0.58086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 125 -a 1 -x {1.0 5.0 114 ------- null} d -t 0.58086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 125 -a 1 -x {1.0 5.0 114 ------- null} - -t 0.58317 -s 2 -d 3 -p cbr -e 210 -c 1 -i 116 -a 1 -x {1.0 5.0 106 ------- null} h -t 0.58317 -s 2 -d 3 -p cbr -e 210 -c 1 -i 116 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.58375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 141 -a 1 -x {1.0 5.0 129 ------- null} - -t 0.58375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 141 -a 1 -x {1.0 5.0 129 ------- null} h -t 0.58375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 141 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.58397 -s 3 -d 5 -p cbr -e 210 -c 1 -i 92 -a 1 -x {1.0 5.0 84 ------- null} r -t 0.58461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 126 -a 1 -x {1.0 5.0 115 ------- null} + -t 0.58461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 126 -a 1 -x {1.0 5.0 115 ------- null} - -t 0.58653 -s 2 -d 3 -p cbr -e 210 -c 1 -i 117 -a 1 -x {1.0 5.0 107 ------- null} h -t 0.58653 -s 2 -d 3 -p cbr -e 210 -c 1 -i 117 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.58733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 93 -a 1 -x {1.0 5.0 85 ------- null} + -t 0.5875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 142 -a 1 -x {1.0 5.0 130 ------- null} - -t 0.5875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 142 -a 1 -x {1.0 5.0 130 ------- null} h -t 0.5875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 142 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.58836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 127 -a 1 -x {1.0 5.0 116 ------- null} + -t 0.58836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 127 -a 1 -x {1.0 5.0 116 ------- null} - -t 0.58989 -s 2 -d 3 -p cbr -e 210 -c 1 -i 118 -a 1 -x {1.0 5.0 108 ------- null} h -t 0.58989 -s 2 -d 3 -p cbr -e 210 -c 1 -i 118 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.59029 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {0.0 4.0 4 ------- null} + -t 0.59029 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {0.0 4.0 4 ------- null} - -t 0.59029 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {0.0 4.0 4 ------- null} h -t 0.59029 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {0.0 4.0 -1 ------- null} r -t 0.59069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 94 -a 1 -x {1.0 5.0 86 ------- null} + -t 0.59125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 143 -a 1 -x {1.0 5.0 131 ------- null} - -t 0.59125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 143 -a 1 -x {1.0 5.0 131 ------- null} h -t 0.59125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 143 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.59211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 128 -a 1 -x {1.0 5.0 117 ------- null} + -t 0.59211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 128 -a 1 -x {1.0 5.0 117 ------- null} - -t 0.59325 -s 2 -d 3 -p cbr -e 210 -c 1 -i 119 -a 1 -x {1.0 5.0 109 ------- null} h -t 0.59325 -s 2 -d 3 -p cbr -e 210 -c 1 -i 119 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.59365 -s 2 -d 3 -p cbr -e 210 -c 1 -i 107 -a 1 -x {1.0 5.0 98 ------- null} + -t 0.59365 -s 3 -d 5 -p cbr -e 210 -c 1 -i 107 -a 1 -x {1.0 5.0 98 ------- null} - -t 0.59365 -s 3 -d 5 -p cbr -e 210 -c 1 -i 107 -a 1 -x {1.0 5.0 98 ------- null} h -t 0.59365 -s 3 -d 5 -p cbr -e 210 -c 1 -i 107 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.59405 -s 3 -d 5 -p cbr -e 210 -c 1 -i 95 -a 1 -x {1.0 5.0 87 ------- null} + -t 0.595 -s 1 -d 2 -p cbr -e 210 -c 1 -i 144 -a 1 -x {1.0 5.0 132 ------- null} - -t 0.595 -s 1 -d 2 -p cbr -e 210 -c 1 -i 144 -a 1 -x {1.0 5.0 132 ------- null} h -t 0.595 -s 1 -d 2 -p cbr -e 210 -c 1 -i 144 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.59586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 130 -a 1 -x {1.0 5.0 118 ------- null} + -t 0.59586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 130 -a 1 -x {1.0 5.0 118 ------- null} - -t 0.59661 -s 2 -d 3 -p cbr -e 210 -c 1 -i 121 -a 1 -x {1.0 5.0 110 ------- null} h -t 0.59661 -s 2 -d 3 -p cbr -e 210 -c 1 -i 121 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.59701 -s 2 -d 3 -p cbr -e 210 -c 1 -i 108 -a 1 -x {1.0 5.0 99 ------- null} + -t 0.59701 -s 3 -d 5 -p cbr -e 210 -c 1 -i 108 -a 1 -x {1.0 5.0 99 ------- null} - -t 0.59701 -s 3 -d 5 -p cbr -e 210 -c 1 -i 108 -a 1 -x {1.0 5.0 99 ------- null} h -t 0.59701 -s 3 -d 5 -p cbr -e 210 -c 1 -i 108 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.59741 -s 3 -d 5 -p cbr -e 210 -c 1 -i 96 -a 1 -x {1.0 5.0 88 ------- null} + -t 0.59875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 145 -a 1 -x {1.0 5.0 133 ------- null} - -t 0.59875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 145 -a 1 -x {1.0 5.0 133 ------- null} h -t 0.59875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 145 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.59961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 131 -a 1 -x {1.0 5.0 119 ------- null} + -t 0.59961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 131 -a 1 -x {1.0 5.0 119 ------- null} - -t 0.59997 -s 2 -d 3 -p cbr -e 210 -c 1 -i 122 -a 1 -x {1.0 5.0 111 ------- null} h -t 0.59997 -s 2 -d 3 -p cbr -e 210 -c 1 -i 122 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.60037 -s 2 -d 3 -p cbr -e 210 -c 1 -i 109 -a 1 -x {1.0 5.0 100 ------- null} + -t 0.60037 -s 3 -d 5 -p cbr -e 210 -c 1 -i 109 -a 1 -x {1.0 5.0 100 ------- null} - -t 0.60037 -s 3 -d 5 -p cbr -e 210 -c 1 -i 109 -a 1 -x {1.0 5.0 100 ------- null} h -t 0.60037 -s 3 -d 5 -p cbr -e 210 -c 1 -i 109 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.60077 -s 3 -d 5 -p cbr -e 210 -c 1 -i 97 -a 1 -x {1.0 5.0 89 ------- null} + -t 0.6025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 146 -a 1 -x {1.0 5.0 134 ------- null} - -t 0.6025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 146 -a 1 -x {1.0 5.0 134 ------- null} h -t 0.6025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 146 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.60333 -s 2 -d 3 -p cbr -e 210 -c 1 -i 123 -a 1 -x {1.0 5.0 112 ------- null} h -t 0.60333 -s 2 -d 3 -p cbr -e 210 -c 1 -i 123 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.60336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 132 -a 1 -x {1.0 5.0 120 ------- null} + -t 0.60336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 132 -a 1 -x {1.0 5.0 120 ------- null} r -t 0.60373 -s 2 -d 3 -p cbr -e 210 -c 1 -i 110 -a 1 -x {1.0 5.0 101 ------- null} + -t 0.60373 -s 3 -d 5 -p cbr -e 210 -c 1 -i 110 -a 1 -x {1.0 5.0 101 ------- null} - -t 0.60373 -s 3 -d 5 -p cbr -e 210 -c 1 -i 110 -a 1 -x {1.0 5.0 101 ------- null} h -t 0.60373 -s 3 -d 5 -p cbr -e 210 -c 1 -i 110 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.60413 -s 3 -d 5 -p cbr -e 210 -c 1 -i 98 -a 1 -x {1.0 5.0 90 ------- null} r -t 0.60621 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 129 -a 0 -x {0.0 4.0 7 ------- null} + -t 0.60621 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 129 -a 0 -x {0.0 4.0 7 ------- null} + -t 0.60625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 147 -a 1 -x {1.0 5.0 135 ------- null} - -t 0.60625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 147 -a 1 -x {1.0 5.0 135 ------- null} h -t 0.60625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 147 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.60669 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {0.0 4.0 6 ------- null} h -t 0.60669 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {0.0 4.0 -1 ------- null} r -t 0.60709 -s 2 -d 3 -p cbr -e 210 -c 1 -i 112 -a 1 -x {1.0 5.0 102 ------- null} + -t 0.60709 -s 3 -d 5 -p cbr -e 210 -c 1 -i 112 -a 1 -x {1.0 5.0 102 ------- null} - -t 0.60709 -s 3 -d 5 -p cbr -e 210 -c 1 -i 112 -a 1 -x {1.0 5.0 102 ------- null} h -t 0.60709 -s 3 -d 5 -p cbr -e 210 -c 1 -i 112 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.60711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 133 -a 1 -x {1.0 5.0 121 ------- null} + -t 0.60711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 133 -a 1 -x {1.0 5.0 121 ------- null} r -t 0.60749 -s 3 -d 5 -p cbr -e 210 -c 1 -i 99 -a 1 -x {1.0 5.0 91 ------- null} + -t 0.61 -s 1 -d 2 -p cbr -e 210 -c 1 -i 148 -a 1 -x {1.0 5.0 136 ------- null} - -t 0.61 -s 1 -d 2 -p cbr -e 210 -c 1 -i 148 -a 1 -x {1.0 5.0 136 ------- null} h -t 0.61 -s 1 -d 2 -p cbr -e 210 -c 1 -i 148 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.61045 -s 2 -d 3 -p cbr -e 210 -c 1 -i 113 -a 1 -x {1.0 5.0 103 ------- null} + -t 0.61045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 113 -a 1 -x {1.0 5.0 103 ------- null} - -t 0.61045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 113 -a 1 -x {1.0 5.0 103 ------- null} h -t 0.61045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 113 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.61085 -s 3 -d 5 -p cbr -e 210 -c 1 -i 100 -a 1 -x {1.0 5.0 92 ------- null} r -t 0.61086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 134 -a 1 -x {1.0 5.0 122 ------- null} + -t 0.61086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 134 -a 1 -x {1.0 5.0 122 ------- null} d -t 0.61086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 134 -a 1 -x {1.0 5.0 122 ------- null} + -t 0.61375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 149 -a 1 -x {1.0 5.0 137 ------- null} - -t 0.61375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 149 -a 1 -x {1.0 5.0 137 ------- null} h -t 0.61375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 149 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.61381 -s 2 -d 3 -p cbr -e 210 -c 1 -i 114 -a 1 -x {1.0 5.0 104 ------- null} + -t 0.61381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 114 -a 1 -x {1.0 5.0 104 ------- null} - -t 0.61381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 114 -a 1 -x {1.0 5.0 104 ------- null} h -t 0.61381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 114 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.61421 -s 3 -d 5 -p cbr -e 210 -c 1 -i 101 -a 1 -x {1.0 5.0 93 ------- null} r -t 0.61461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 135 -a 1 -x {1.0 5.0 123 ------- null} + -t 0.61461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 135 -a 1 -x {1.0 5.0 123 ------- null} d -t 0.61461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 135 -a 1 -x {1.0 5.0 123 ------- null} r -t 0.61717 -s 2 -d 3 -p cbr -e 210 -c 1 -i 115 -a 1 -x {1.0 5.0 105 ------- null} + -t 0.61717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 115 -a 1 -x {1.0 5.0 105 ------- null} - -t 0.61717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 115 -a 1 -x {1.0 5.0 105 ------- null} h -t 0.61717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 115 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.6175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 150 -a 1 -x {1.0 5.0 138 ------- null} - -t 0.6175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 150 -a 1 -x {1.0 5.0 138 ------- null} h -t 0.6175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 150 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.61757 -s 3 -d 5 -p cbr -e 210 -c 1 -i 103 -a 1 -x {1.0 5.0 94 ------- null} r -t 0.61836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 136 -a 1 -x {1.0 5.0 124 ------- null} + -t 0.61836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 136 -a 1 -x {1.0 5.0 124 ------- null} d -t 0.61836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 136 -a 1 -x {1.0 5.0 124 ------- null} r -t 0.62093 -s 3 -d 5 -p cbr -e 210 -c 1 -i 104 -a 1 -x {1.0 5.0 95 ------- null} + -t 0.62125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 151 -a 1 -x {1.0 5.0 139 ------- null} - -t 0.62125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 151 -a 1 -x {1.0 5.0 139 ------- null} h -t 0.62125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 151 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.62211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 137 -a 1 -x {1.0 5.0 125 ------- null} + -t 0.62211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 137 -a 1 -x {1.0 5.0 125 ------- null} d -t 0.62211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 137 -a 1 -x {1.0 5.0 125 ------- null} - -t 0.62269 -s 2 -d 3 -p cbr -e 210 -c 1 -i 124 -a 1 -x {1.0 5.0 113 ------- null} h -t 0.62269 -s 2 -d 3 -p cbr -e 210 -c 1 -i 124 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.62429 -s 3 -d 5 -p cbr -e 210 -c 1 -i 105 -a 1 -x {1.0 5.0 96 ------- null} + -t 0.625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 152 -a 1 -x {1.0 5.0 140 ------- null} - -t 0.625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 152 -a 1 -x {1.0 5.0 140 ------- null} h -t 0.625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 152 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.62586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 138 -a 1 -x {1.0 5.0 126 ------- null} + -t 0.62586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 138 -a 1 -x {1.0 5.0 126 ------- null} - -t 0.62605 -s 2 -d 3 -p cbr -e 210 -c 1 -i 126 -a 1 -x {1.0 5.0 115 ------- null} h -t 0.62605 -s 2 -d 3 -p cbr -e 210 -c 1 -i 126 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.62765 -s 3 -d 5 -p cbr -e 210 -c 1 -i 106 -a 1 -x {1.0 5.0 97 ------- null} + -t 0.62875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 153 -a 1 -x {1.0 5.0 141 ------- null} - -t 0.62875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 153 -a 1 -x {1.0 5.0 141 ------- null} h -t 0.62875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 153 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.62941 -s 2 -d 3 -p cbr -e 210 -c 1 -i 127 -a 1 -x {1.0 5.0 116 ------- null} h -t 0.62941 -s 2 -d 3 -p cbr -e 210 -c 1 -i 127 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.62961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 139 -a 1 -x {1.0 5.0 127 ------- null} + -t 0.62961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 139 -a 1 -x {1.0 5.0 127 ------- null} + -t 0.6325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 154 -a 1 -x {1.0 5.0 142 ------- null} - -t 0.6325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 154 -a 1 -x {1.0 5.0 142 ------- null} h -t 0.6325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 154 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.63277 -s 2 -d 3 -p cbr -e 210 -c 1 -i 128 -a 1 -x {1.0 5.0 117 ------- null} h -t 0.63277 -s 2 -d 3 -p cbr -e 210 -c 1 -i 128 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.63317 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {0.0 4.0 5 ------- null} + -t 0.63317 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {0.0 4.0 5 ------- null} - -t 0.63317 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {0.0 4.0 5 ------- null} h -t 0.63317 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {0.0 4.0 -1 ------- null} r -t 0.63336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 140 -a 1 -x {1.0 5.0 128 ------- null} + -t 0.63336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 140 -a 1 -x {1.0 5.0 128 ------- null} - -t 0.63613 -s 2 -d 3 -p cbr -e 210 -c 1 -i 130 -a 1 -x {1.0 5.0 118 ------- null} h -t 0.63613 -s 2 -d 3 -p cbr -e 210 -c 1 -i 130 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.63625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 155 -a 1 -x {1.0 5.0 143 ------- null} - -t 0.63625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 155 -a 1 -x {1.0 5.0 143 ------- null} h -t 0.63625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 155 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.63653 -s 2 -d 3 -p cbr -e 210 -c 1 -i 116 -a 1 -x {1.0 5.0 106 ------- null} + -t 0.63653 -s 3 -d 5 -p cbr -e 210 -c 1 -i 116 -a 1 -x {1.0 5.0 106 ------- null} - -t 0.63653 -s 3 -d 5 -p cbr -e 210 -c 1 -i 116 -a 1 -x {1.0 5.0 106 ------- null} h -t 0.63653 -s 3 -d 5 -p cbr -e 210 -c 1 -i 116 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.63711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 141 -a 1 -x {1.0 5.0 129 ------- null} + -t 0.63711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 141 -a 1 -x {1.0 5.0 129 ------- null} - -t 0.63949 -s 2 -d 3 -p cbr -e 210 -c 1 -i 131 -a 1 -x {1.0 5.0 119 ------- null} h -t 0.63949 -s 2 -d 3 -p cbr -e 210 -c 1 -i 131 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.63989 -s 2 -d 3 -p cbr -e 210 -c 1 -i 117 -a 1 -x {1.0 5.0 107 ------- null} + -t 0.63989 -s 3 -d 5 -p cbr -e 210 -c 1 -i 117 -a 1 -x {1.0 5.0 107 ------- null} - -t 0.63989 -s 3 -d 5 -p cbr -e 210 -c 1 -i 117 -a 1 -x {1.0 5.0 107 ------- null} h -t 0.63989 -s 3 -d 5 -p cbr -e 210 -c 1 -i 117 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.64 -s 1 -d 2 -p cbr -e 210 -c 1 -i 156 -a 1 -x {1.0 5.0 144 ------- null} - -t 0.64 -s 1 -d 2 -p cbr -e 210 -c 1 -i 156 -a 1 -x {1.0 5.0 144 ------- null} h -t 0.64 -s 1 -d 2 -p cbr -e 210 -c 1 -i 156 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.64086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 142 -a 1 -x {1.0 5.0 130 ------- null} + -t 0.64086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 142 -a 1 -x {1.0 5.0 130 ------- null} - -t 0.64285 -s 2 -d 3 -p cbr -e 210 -c 1 -i 132 -a 1 -x {1.0 5.0 120 ------- null} h -t 0.64285 -s 2 -d 3 -p cbr -e 210 -c 1 -i 132 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.64325 -s 2 -d 3 -p cbr -e 210 -c 1 -i 118 -a 1 -x {1.0 5.0 108 ------- null} + -t 0.64325 -s 3 -d 5 -p cbr -e 210 -c 1 -i 118 -a 1 -x {1.0 5.0 108 ------- null} - -t 0.64325 -s 3 -d 5 -p cbr -e 210 -c 1 -i 118 -a 1 -x {1.0 5.0 108 ------- null} h -t 0.64325 -s 3 -d 5 -p cbr -e 210 -c 1 -i 118 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.64375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 157 -a 1 -x {1.0 5.0 145 ------- null} - -t 0.64375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 157 -a 1 -x {1.0 5.0 145 ------- null} h -t 0.64375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 157 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.64461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 143 -a 1 -x {1.0 5.0 131 ------- null} + -t 0.64461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 143 -a 1 -x {1.0 5.0 131 ------- null} - -t 0.64621 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 129 -a 0 -x {0.0 4.0 7 ------- null} h -t 0.64621 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 129 -a 0 -x {0.0 4.0 -1 ------- null} r -t 0.64661 -s 2 -d 3 -p cbr -e 210 -c 1 -i 119 -a 1 -x {1.0 5.0 109 ------- null} + -t 0.64661 -s 3 -d 5 -p cbr -e 210 -c 1 -i 119 -a 1 -x {1.0 5.0 109 ------- null} - -t 0.64661 -s 3 -d 5 -p cbr -e 210 -c 1 -i 119 -a 1 -x {1.0 5.0 109 ------- null} h -t 0.64661 -s 3 -d 5 -p cbr -e 210 -c 1 -i 119 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.64701 -s 3 -d 5 -p cbr -e 210 -c 1 -i 107 -a 1 -x {1.0 5.0 98 ------- null} + -t 0.6475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 158 -a 1 -x {1.0 5.0 146 ------- null} - -t 0.6475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 158 -a 1 -x {1.0 5.0 146 ------- null} h -t 0.6475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 158 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.64836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 144 -a 1 -x {1.0 5.0 132 ------- null} + -t 0.64836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 144 -a 1 -x {1.0 5.0 132 ------- null} r -t 0.64997 -s 2 -d 3 -p cbr -e 210 -c 1 -i 121 -a 1 -x {1.0 5.0 110 ------- null} + -t 0.64997 -s 3 -d 5 -p cbr -e 210 -c 1 -i 121 -a 1 -x {1.0 5.0 110 ------- null} - -t 0.64997 -s 3 -d 5 -p cbr -e 210 -c 1 -i 121 -a 1 -x {1.0 5.0 110 ------- null} h -t 0.64997 -s 3 -d 5 -p cbr -e 210 -c 1 -i 121 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.65037 -s 3 -d 5 -p cbr -e 210 -c 1 -i 108 -a 1 -x {1.0 5.0 99 ------- null} + -t 0.65125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 159 -a 1 -x {1.0 5.0 147 ------- null} - -t 0.65125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 159 -a 1 -x {1.0 5.0 147 ------- null} h -t 0.65125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 159 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.65211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 145 -a 1 -x {1.0 5.0 133 ------- null} + -t 0.65211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 145 -a 1 -x {1.0 5.0 133 ------- null} r -t 0.65333 -s 2 -d 3 -p cbr -e 210 -c 1 -i 122 -a 1 -x {1.0 5.0 111 ------- null} + -t 0.65333 -s 3 -d 5 -p cbr -e 210 -c 1 -i 122 -a 1 -x {1.0 5.0 111 ------- null} - -t 0.65333 -s 3 -d 5 -p cbr -e 210 -c 1 -i 122 -a 1 -x {1.0 5.0 111 ------- null} h -t 0.65333 -s 3 -d 5 -p cbr -e 210 -c 1 -i 122 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.65373 -s 3 -d 5 -p cbr -e 210 -c 1 -i 109 -a 1 -x {1.0 5.0 100 ------- null} + -t 0.655 -s 1 -d 2 -p cbr -e 210 -c 1 -i 160 -a 1 -x {1.0 5.0 148 ------- null} - -t 0.655 -s 1 -d 2 -p cbr -e 210 -c 1 -i 160 -a 1 -x {1.0 5.0 148 ------- null} h -t 0.655 -s 1 -d 2 -p cbr -e 210 -c 1 -i 160 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.65586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 146 -a 1 -x {1.0 5.0 134 ------- null} + -t 0.65586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 146 -a 1 -x {1.0 5.0 134 ------- null} d -t 0.65586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 146 -a 1 -x {1.0 5.0 134 ------- null} r -t 0.65629 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {0.0 4.0 4 ------- null} + -t 0.65629 -s 4 -d 3 -p ack -e 40 -c 0 -i 161 -a 0 -x {4.0 0.0 4 ------- null} - -t 0.65629 -s 4 -d 3 -p ack -e 40 -c 0 -i 161 -a 0 -x {4.0 0.0 4 ------- null} h -t 0.65629 -s 4 -d 3 -p ack -e 40 -c 0 -i 161 -a 0 -x {4.0 0.0 -1 ------- null} r -t 0.65669 -s 2 -d 3 -p cbr -e 210 -c 1 -i 123 -a 1 -x {1.0 5.0 112 ------- null} + -t 0.65669 -s 3 -d 5 -p cbr -e 210 -c 1 -i 123 -a 1 -x {1.0 5.0 112 ------- null} - -t 0.65669 -s 3 -d 5 -p cbr -e 210 -c 1 -i 123 -a 1 -x {1.0 5.0 112 ------- null} h -t 0.65669 -s 3 -d 5 -p cbr -e 210 -c 1 -i 123 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.65709 -s 3 -d 5 -p cbr -e 210 -c 1 -i 110 -a 1 -x {1.0 5.0 101 ------- null} + -t 0.65875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 162 -a 1 -x {1.0 5.0 149 ------- null} - -t 0.65875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 162 -a 1 -x {1.0 5.0 149 ------- null} h -t 0.65875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 162 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.65961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 147 -a 1 -x {1.0 5.0 135 ------- null} + -t 0.65961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 147 -a 1 -x {1.0 5.0 135 ------- null} d -t 0.65961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 147 -a 1 -x {1.0 5.0 135 ------- null} r -t 0.66045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 112 -a 1 -x {1.0 5.0 102 ------- null} - -t 0.66221 -s 2 -d 3 -p cbr -e 210 -c 1 -i 133 -a 1 -x {1.0 5.0 121 ------- null} h -t 0.66221 -s 2 -d 3 -p cbr -e 210 -c 1 -i 133 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.6625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 163 -a 1 -x {1.0 5.0 150 ------- null} - -t 0.6625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 163 -a 1 -x {1.0 5.0 150 ------- null} h -t 0.6625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 163 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.66336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 148 -a 1 -x {1.0 5.0 136 ------- null} + -t 0.66336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 148 -a 1 -x {1.0 5.0 136 ------- null} r -t 0.66381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 113 -a 1 -x {1.0 5.0 103 ------- null} - -t 0.66557 -s 2 -d 3 -p cbr -e 210 -c 1 -i 138 -a 1 -x {1.0 5.0 126 ------- null} h -t 0.66557 -s 2 -d 3 -p cbr -e 210 -c 1 -i 138 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.66625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 164 -a 1 -x {1.0 5.0 151 ------- null} - -t 0.66625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 164 -a 1 -x {1.0 5.0 151 ------- null} h -t 0.66625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 164 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.66711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 149 -a 1 -x {1.0 5.0 137 ------- null} + -t 0.66711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 149 -a 1 -x {1.0 5.0 137 ------- null} r -t 0.66717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 114 -a 1 -x {1.0 5.0 104 ------- null} - -t 0.66893 -s 2 -d 3 -p cbr -e 210 -c 1 -i 139 -a 1 -x {1.0 5.0 127 ------- null} h -t 0.66893 -s 2 -d 3 -p cbr -e 210 -c 1 -i 139 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.67 -s 1 -d 2 -p cbr -e 210 -c 1 -i 165 -a 1 -x {1.0 5.0 152 ------- null} - -t 0.67 -s 1 -d 2 -p cbr -e 210 -c 1 -i 165 -a 1 -x {1.0 5.0 152 ------- null} h -t 0.67 -s 1 -d 2 -p cbr -e 210 -c 1 -i 165 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.67053 -s 3 -d 5 -p cbr -e 210 -c 1 -i 115 -a 1 -x {1.0 5.0 105 ------- null} r -t 0.67086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 150 -a 1 -x {1.0 5.0 138 ------- null} + -t 0.67086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 150 -a 1 -x {1.0 5.0 138 ------- null} - -t 0.67229 -s 2 -d 3 -p cbr -e 210 -c 1 -i 140 -a 1 -x {1.0 5.0 128 ------- null} h -t 0.67229 -s 2 -d 3 -p cbr -e 210 -c 1 -i 140 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.67269 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {0.0 4.0 6 ------- null} + -t 0.67269 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {0.0 4.0 6 ------- null} - -t 0.67269 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {0.0 4.0 6 ------- null} h -t 0.67269 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {0.0 4.0 -1 ------- null} + -t 0.67375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 166 -a 1 -x {1.0 5.0 153 ------- null} - -t 0.67375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 166 -a 1 -x {1.0 5.0 153 ------- null} h -t 0.67375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 166 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.67461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 151 -a 1 -x {1.0 5.0 139 ------- null} + -t 0.67461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 151 -a 1 -x {1.0 5.0 139 ------- null} - -t 0.67565 -s 2 -d 3 -p cbr -e 210 -c 1 -i 141 -a 1 -x {1.0 5.0 129 ------- null} h -t 0.67565 -s 2 -d 3 -p cbr -e 210 -c 1 -i 141 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.67605 -s 2 -d 3 -p cbr -e 210 -c 1 -i 124 -a 1 -x {1.0 5.0 113 ------- null} + -t 0.67605 -s 3 -d 5 -p cbr -e 210 -c 1 -i 124 -a 1 -x {1.0 5.0 113 ------- null} - -t 0.67605 -s 3 -d 5 -p cbr -e 210 -c 1 -i 124 -a 1 -x {1.0 5.0 113 ------- null} h -t 0.67605 -s 3 -d 5 -p cbr -e 210 -c 1 -i 124 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.6775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 167 -a 1 -x {1.0 5.0 154 ------- null} - -t 0.6775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 167 -a 1 -x {1.0 5.0 154 ------- null} h -t 0.6775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 167 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.67836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 152 -a 1 -x {1.0 5.0 140 ------- null} + -t 0.67836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 152 -a 1 -x {1.0 5.0 140 ------- null} - -t 0.67901 -s 2 -d 3 -p cbr -e 210 -c 1 -i 142 -a 1 -x {1.0 5.0 130 ------- null} h -t 0.67901 -s 2 -d 3 -p cbr -e 210 -c 1 -i 142 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.67941 -s 2 -d 3 -p cbr -e 210 -c 1 -i 126 -a 1 -x {1.0 5.0 115 ------- null} + -t 0.67941 -s 3 -d 5 -p cbr -e 210 -c 1 -i 126 -a 1 -x {1.0 5.0 115 ------- null} - -t 0.67941 -s 3 -d 5 -p cbr -e 210 -c 1 -i 126 -a 1 -x {1.0 5.0 115 ------- null} h -t 0.67941 -s 3 -d 5 -p cbr -e 210 -c 1 -i 126 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.68125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 168 -a 1 -x {1.0 5.0 155 ------- null} - -t 0.68125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 168 -a 1 -x {1.0 5.0 155 ------- null} h -t 0.68125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 168 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.68211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 153 -a 1 -x {1.0 5.0 141 ------- null} + -t 0.68211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 153 -a 1 -x {1.0 5.0 141 ------- null} - -t 0.68237 -s 2 -d 3 -p cbr -e 210 -c 1 -i 143 -a 1 -x {1.0 5.0 131 ------- null} h -t 0.68237 -s 2 -d 3 -p cbr -e 210 -c 1 -i 143 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.68277 -s 2 -d 3 -p cbr -e 210 -c 1 -i 127 -a 1 -x {1.0 5.0 116 ------- null} + -t 0.68277 -s 3 -d 5 -p cbr -e 210 -c 1 -i 127 -a 1 -x {1.0 5.0 116 ------- null} - -t 0.68277 -s 3 -d 5 -p cbr -e 210 -c 1 -i 127 -a 1 -x {1.0 5.0 116 ------- null} h -t 0.68277 -s 3 -d 5 -p cbr -e 210 -c 1 -i 127 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.685 -s 1 -d 2 -p cbr -e 210 -c 1 -i 169 -a 1 -x {1.0 5.0 156 ------- null} - -t 0.685 -s 1 -d 2 -p cbr -e 210 -c 1 -i 169 -a 1 -x {1.0 5.0 156 ------- null} h -t 0.685 -s 1 -d 2 -p cbr -e 210 -c 1 -i 169 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.68573 -s 2 -d 3 -p cbr -e 210 -c 1 -i 144 -a 1 -x {1.0 5.0 132 ------- null} h -t 0.68573 -s 2 -d 3 -p cbr -e 210 -c 1 -i 144 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.68586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 154 -a 1 -x {1.0 5.0 142 ------- null} + -t 0.68586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 154 -a 1 -x {1.0 5.0 142 ------- null} r -t 0.68613 -s 2 -d 3 -p cbr -e 210 -c 1 -i 128 -a 1 -x {1.0 5.0 117 ------- null} + -t 0.68613 -s 3 -d 5 -p cbr -e 210 -c 1 -i 128 -a 1 -x {1.0 5.0 117 ------- null} - -t 0.68613 -s 3 -d 5 -p cbr -e 210 -c 1 -i 128 -a 1 -x {1.0 5.0 117 ------- null} h -t 0.68613 -s 3 -d 5 -p cbr -e 210 -c 1 -i 128 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.68875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 170 -a 1 -x {1.0 5.0 157 ------- null} - -t 0.68875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 170 -a 1 -x {1.0 5.0 157 ------- null} h -t 0.68875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 170 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.68909 -s 2 -d 3 -p cbr -e 210 -c 1 -i 145 -a 1 -x {1.0 5.0 133 ------- null} h -t 0.68909 -s 2 -d 3 -p cbr -e 210 -c 1 -i 145 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.68949 -s 2 -d 3 -p cbr -e 210 -c 1 -i 130 -a 1 -x {1.0 5.0 118 ------- null} + -t 0.68949 -s 3 -d 5 -p cbr -e 210 -c 1 -i 130 -a 1 -x {1.0 5.0 118 ------- null} - -t 0.68949 -s 3 -d 5 -p cbr -e 210 -c 1 -i 130 -a 1 -x {1.0 5.0 118 ------- null} h -t 0.68949 -s 3 -d 5 -p cbr -e 210 -c 1 -i 130 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.68961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 155 -a 1 -x {1.0 5.0 143 ------- null} + -t 0.68961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 155 -a 1 -x {1.0 5.0 143 ------- null} r -t 0.68989 -s 3 -d 5 -p cbr -e 210 -c 1 -i 116 -a 1 -x {1.0 5.0 106 ------- null} - -t 0.69245 -s 2 -d 3 -p cbr -e 210 -c 1 -i 148 -a 1 -x {1.0 5.0 136 ------- null} h -t 0.69245 -s 2 -d 3 -p cbr -e 210 -c 1 -i 148 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.6925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 171 -a 1 -x {1.0 5.0 158 ------- null} - -t 0.6925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 171 -a 1 -x {1.0 5.0 158 ------- null} h -t 0.6925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 171 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.69285 -s 2 -d 3 -p cbr -e 210 -c 1 -i 131 -a 1 -x {1.0 5.0 119 ------- null} + -t 0.69285 -s 3 -d 5 -p cbr -e 210 -c 1 -i 131 -a 1 -x {1.0 5.0 119 ------- null} - -t 0.69285 -s 3 -d 5 -p cbr -e 210 -c 1 -i 131 -a 1 -x {1.0 5.0 119 ------- null} h -t 0.69285 -s 3 -d 5 -p cbr -e 210 -c 1 -i 131 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.69325 -s 3 -d 5 -p cbr -e 210 -c 1 -i 117 -a 1 -x {1.0 5.0 107 ------- null} r -t 0.69336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 156 -a 1 -x {1.0 5.0 144 ------- null} + -t 0.69336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 156 -a 1 -x {1.0 5.0 144 ------- null} - -t 0.69581 -s 2 -d 3 -p cbr -e 210 -c 1 -i 149 -a 1 -x {1.0 5.0 137 ------- null} h -t 0.69581 -s 2 -d 3 -p cbr -e 210 -c 1 -i 149 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.69621 -s 2 -d 3 -p cbr -e 210 -c 1 -i 132 -a 1 -x {1.0 5.0 120 ------- null} + -t 0.69621 -s 3 -d 5 -p cbr -e 210 -c 1 -i 132 -a 1 -x {1.0 5.0 120 ------- null} - -t 0.69621 -s 3 -d 5 -p cbr -e 210 -c 1 -i 132 -a 1 -x {1.0 5.0 120 ------- null} h -t 0.69621 -s 3 -d 5 -p cbr -e 210 -c 1 -i 132 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.69625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 172 -a 1 -x {1.0 5.0 159 ------- null} - -t 0.69625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 172 -a 1 -x {1.0 5.0 159 ------- null} h -t 0.69625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 172 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.69661 -s 3 -d 5 -p cbr -e 210 -c 1 -i 118 -a 1 -x {1.0 5.0 108 ------- null} r -t 0.69711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 157 -a 1 -x {1.0 5.0 145 ------- null} + -t 0.69711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 157 -a 1 -x {1.0 5.0 145 ------- null} r -t 0.69917 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {0.0 4.0 5 ------- null} + -t 0.69917 -s 4 -d 3 -p ack -e 40 -c 0 -i 173 -a 0 -x {4.0 0.0 5 ------- null} - -t 0.69917 -s 4 -d 3 -p ack -e 40 -c 0 -i 173 -a 0 -x {4.0 0.0 5 ------- null} h -t 0.69917 -s 4 -d 3 -p ack -e 40 -c 0 -i 173 -a 0 -x {4.0 0.0 -1 ------- null} - -t 0.69917 -s 2 -d 3 -p cbr -e 210 -c 1 -i 150 -a 1 -x {1.0 5.0 138 ------- null} h -t 0.69917 -s 2 -d 3 -p cbr -e 210 -c 1 -i 150 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.69997 -s 3 -d 5 -p cbr -e 210 -c 1 -i 119 -a 1 -x {1.0 5.0 109 ------- null} + -t 0.7 -s 1 -d 2 -p cbr -e 210 -c 1 -i 174 -a 1 -x {1.0 5.0 160 ------- null} - -t 0.7 -s 1 -d 2 -p cbr -e 210 -c 1 -i 174 -a 1 -x {1.0 5.0 160 ------- null} h -t 0.7 -s 1 -d 2 -p cbr -e 210 -c 1 -i 174 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.70086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 158 -a 1 -x {1.0 5.0 146 ------- null} + -t 0.70086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 158 -a 1 -x {1.0 5.0 146 ------- null} - -t 0.70253 -s 2 -d 3 -p cbr -e 210 -c 1 -i 151 -a 1 -x {1.0 5.0 139 ------- null} h -t 0.70253 -s 2 -d 3 -p cbr -e 210 -c 1 -i 151 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.70333 -s 3 -d 5 -p cbr -e 210 -c 1 -i 121 -a 1 -x {1.0 5.0 110 ------- null} + -t 0.70375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 175 -a 1 -x {1.0 5.0 161 ------- null} - -t 0.70375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 175 -a 1 -x {1.0 5.0 161 ------- null} h -t 0.70375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 175 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.70461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 159 -a 1 -x {1.0 5.0 147 ------- null} + -t 0.70461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 159 -a 1 -x {1.0 5.0 147 ------- null} - -t 0.70589 -s 2 -d 3 -p cbr -e 210 -c 1 -i 152 -a 1 -x {1.0 5.0 140 ------- null} h -t 0.70589 -s 2 -d 3 -p cbr -e 210 -c 1 -i 152 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.70669 -s 3 -d 5 -p cbr -e 210 -c 1 -i 122 -a 1 -x {1.0 5.0 111 ------- null} r -t 0.70693 -s 4 -d 3 -p ack -e 40 -c 0 -i 161 -a 0 -x {4.0 0.0 4 ------- null} + -t 0.70693 -s 3 -d 2 -p ack -e 40 -c 0 -i 161 -a 0 -x {4.0 0.0 4 ------- null} - -t 0.70693 -s 3 -d 2 -p ack -e 40 -c 0 -i 161 -a 0 -x {4.0 0.0 4 ------- null} h -t 0.70693 -s 3 -d 2 -p ack -e 40 -c 0 -i 161 -a 0 -x {4.0 0.0 -1 ------- null} + -t 0.7075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 176 -a 1 -x {1.0 5.0 162 ------- null} - -t 0.7075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 176 -a 1 -x {1.0 5.0 162 ------- null} h -t 0.7075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 176 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.70836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 160 -a 1 -x {1.0 5.0 148 ------- null} + -t 0.70836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 160 -a 1 -x {1.0 5.0 148 ------- null} - -t 0.70925 -s 2 -d 3 -p cbr -e 210 -c 1 -i 153 -a 1 -x {1.0 5.0 141 ------- null} h -t 0.70925 -s 2 -d 3 -p cbr -e 210 -c 1 -i 153 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.71005 -s 3 -d 5 -p cbr -e 210 -c 1 -i 123 -a 1 -x {1.0 5.0 112 ------- null} + -t 0.71125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 177 -a 1 -x {1.0 5.0 163 ------- null} - -t 0.71125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 177 -a 1 -x {1.0 5.0 163 ------- null} h -t 0.71125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 177 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.71211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 162 -a 1 -x {1.0 5.0 149 ------- null} + -t 0.71211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 162 -a 1 -x {1.0 5.0 149 ------- null} r -t 0.71221 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 129 -a 0 -x {0.0 4.0 7 ------- null} + -t 0.71221 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 129 -a 0 -x {0.0 4.0 7 ------- null} - -t 0.71221 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 129 -a 0 -x {0.0 4.0 7 ------- null} h -t 0.71221 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 129 -a 0 -x {0.0 4.0 -1 ------- null} - -t 0.71261 -s 2 -d 3 -p cbr -e 210 -c 1 -i 154 -a 1 -x {1.0 5.0 142 ------- null} h -t 0.71261 -s 2 -d 3 -p cbr -e 210 -c 1 -i 154 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.715 -s 1 -d 2 -p cbr -e 210 -c 1 -i 178 -a 1 -x {1.0 5.0 164 ------- null} - -t 0.715 -s 1 -d 2 -p cbr -e 210 -c 1 -i 178 -a 1 -x {1.0 5.0 164 ------- null} h -t 0.715 -s 1 -d 2 -p cbr -e 210 -c 1 -i 178 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.71557 -s 2 -d 3 -p cbr -e 210 -c 1 -i 133 -a 1 -x {1.0 5.0 121 ------- null} + -t 0.71557 -s 3 -d 5 -p cbr -e 210 -c 1 -i 133 -a 1 -x {1.0 5.0 121 ------- null} - -t 0.71557 -s 3 -d 5 -p cbr -e 210 -c 1 -i 133 -a 1 -x {1.0 5.0 121 ------- null} h -t 0.71557 -s 3 -d 5 -p cbr -e 210 -c 1 -i 133 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.71586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 163 -a 1 -x {1.0 5.0 150 ------- null} + -t 0.71586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 163 -a 1 -x {1.0 5.0 150 ------- null} - -t 0.71597 -s 2 -d 3 -p cbr -e 210 -c 1 -i 155 -a 1 -x {1.0 5.0 143 ------- null} h -t 0.71597 -s 2 -d 3 -p cbr -e 210 -c 1 -i 155 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.71875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 179 -a 1 -x {1.0 5.0 165 ------- null} - -t 0.71875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 179 -a 1 -x {1.0 5.0 165 ------- null} h -t 0.71875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 179 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.71893 -s 2 -d 3 -p cbr -e 210 -c 1 -i 138 -a 1 -x {1.0 5.0 126 ------- null} + -t 0.71893 -s 3 -d 5 -p cbr -e 210 -c 1 -i 138 -a 1 -x {1.0 5.0 126 ------- null} - -t 0.71893 -s 3 -d 5 -p cbr -e 210 -c 1 -i 138 -a 1 -x {1.0 5.0 126 ------- null} h -t 0.71893 -s 3 -d 5 -p cbr -e 210 -c 1 -i 138 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.71933 -s 2 -d 3 -p cbr -e 210 -c 1 -i 156 -a 1 -x {1.0 5.0 144 ------- null} h -t 0.71933 -s 2 -d 3 -p cbr -e 210 -c 1 -i 156 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.71961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 164 -a 1 -x {1.0 5.0 151 ------- null} + -t 0.71961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 164 -a 1 -x {1.0 5.0 151 ------- null} r -t 0.72229 -s 2 -d 3 -p cbr -e 210 -c 1 -i 139 -a 1 -x {1.0 5.0 127 ------- null} + -t 0.72229 -s 3 -d 5 -p cbr -e 210 -c 1 -i 139 -a 1 -x {1.0 5.0 127 ------- null} - -t 0.72229 -s 3 -d 5 -p cbr -e 210 -c 1 -i 139 -a 1 -x {1.0 5.0 127 ------- null} h -t 0.72229 -s 3 -d 5 -p cbr -e 210 -c 1 -i 139 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.7225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 180 -a 1 -x {1.0 5.0 166 ------- null} - -t 0.7225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 180 -a 1 -x {1.0 5.0 166 ------- null} h -t 0.7225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 180 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.72269 -s 2 -d 3 -p cbr -e 210 -c 1 -i 157 -a 1 -x {1.0 5.0 145 ------- null} h -t 0.72269 -s 2 -d 3 -p cbr -e 210 -c 1 -i 157 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.72336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 165 -a 1 -x {1.0 5.0 152 ------- null} + -t 0.72336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 165 -a 1 -x {1.0 5.0 152 ------- null} r -t 0.72565 -s 2 -d 3 -p cbr -e 210 -c 1 -i 140 -a 1 -x {1.0 5.0 128 ------- null} + -t 0.72565 -s 3 -d 5 -p cbr -e 210 -c 1 -i 140 -a 1 -x {1.0 5.0 128 ------- null} - -t 0.72565 -s 3 -d 5 -p cbr -e 210 -c 1 -i 140 -a 1 -x {1.0 5.0 128 ------- null} h -t 0.72565 -s 3 -d 5 -p cbr -e 210 -c 1 -i 140 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.72605 -s 2 -d 3 -p cbr -e 210 -c 1 -i 158 -a 1 -x {1.0 5.0 146 ------- null} h -t 0.72605 -s 2 -d 3 -p cbr -e 210 -c 1 -i 158 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.72625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 181 -a 1 -x {1.0 5.0 167 ------- null} - -t 0.72625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 181 -a 1 -x {1.0 5.0 167 ------- null} h -t 0.72625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 181 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.72711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 166 -a 1 -x {1.0 5.0 153 ------- null} + -t 0.72711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 166 -a 1 -x {1.0 5.0 153 ------- null} r -t 0.72901 -s 2 -d 3 -p cbr -e 210 -c 1 -i 141 -a 1 -x {1.0 5.0 129 ------- null} + -t 0.72901 -s 3 -d 5 -p cbr -e 210 -c 1 -i 141 -a 1 -x {1.0 5.0 129 ------- null} - -t 0.72901 -s 3 -d 5 -p cbr -e 210 -c 1 -i 141 -a 1 -x {1.0 5.0 129 ------- null} h -t 0.72901 -s 3 -d 5 -p cbr -e 210 -c 1 -i 141 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.72941 -s 3 -d 5 -p cbr -e 210 -c 1 -i 124 -a 1 -x {1.0 5.0 113 ------- null} - -t 0.72941 -s 2 -d 3 -p cbr -e 210 -c 1 -i 159 -a 1 -x {1.0 5.0 147 ------- null} h -t 0.72941 -s 2 -d 3 -p cbr -e 210 -c 1 -i 159 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.73 -s 1 -d 2 -p cbr -e 210 -c 1 -i 182 -a 1 -x {1.0 5.0 168 ------- null} - -t 0.73 -s 1 -d 2 -p cbr -e 210 -c 1 -i 182 -a 1 -x {1.0 5.0 168 ------- null} h -t 0.73 -s 1 -d 2 -p cbr -e 210 -c 1 -i 182 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.73086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 167 -a 1 -x {1.0 5.0 154 ------- null} + -t 0.73086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 167 -a 1 -x {1.0 5.0 154 ------- null} r -t 0.73237 -s 2 -d 3 -p cbr -e 210 -c 1 -i 142 -a 1 -x {1.0 5.0 130 ------- null} + -t 0.73237 -s 3 -d 5 -p cbr -e 210 -c 1 -i 142 -a 1 -x {1.0 5.0 130 ------- null} - -t 0.73237 -s 3 -d 5 -p cbr -e 210 -c 1 -i 142 -a 1 -x {1.0 5.0 130 ------- null} h -t 0.73237 -s 3 -d 5 -p cbr -e 210 -c 1 -i 142 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.73277 -s 3 -d 5 -p cbr -e 210 -c 1 -i 126 -a 1 -x {1.0 5.0 115 ------- null} - -t 0.73277 -s 2 -d 3 -p cbr -e 210 -c 1 -i 160 -a 1 -x {1.0 5.0 148 ------- null} h -t 0.73277 -s 2 -d 3 -p cbr -e 210 -c 1 -i 160 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.73375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 183 -a 1 -x {1.0 5.0 169 ------- null} - -t 0.73375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 183 -a 1 -x {1.0 5.0 169 ------- null} h -t 0.73375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 183 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.73461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 168 -a 1 -x {1.0 5.0 155 ------- null} + -t 0.73461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 168 -a 1 -x {1.0 5.0 155 ------- null} r -t 0.73573 -s 2 -d 3 -p cbr -e 210 -c 1 -i 143 -a 1 -x {1.0 5.0 131 ------- null} + -t 0.73573 -s 3 -d 5 -p cbr -e 210 -c 1 -i 143 -a 1 -x {1.0 5.0 131 ------- null} - -t 0.73573 -s 3 -d 5 -p cbr -e 210 -c 1 -i 143 -a 1 -x {1.0 5.0 131 ------- null} h -t 0.73573 -s 3 -d 5 -p cbr -e 210 -c 1 -i 143 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.73613 -s 3 -d 5 -p cbr -e 210 -c 1 -i 127 -a 1 -x {1.0 5.0 116 ------- null} - -t 0.73613 -s 2 -d 3 -p cbr -e 210 -c 1 -i 162 -a 1 -x {1.0 5.0 149 ------- null} h -t 0.73613 -s 2 -d 3 -p cbr -e 210 -c 1 -i 162 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.7375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 184 -a 1 -x {1.0 5.0 170 ------- null} - -t 0.7375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 184 -a 1 -x {1.0 5.0 170 ------- null} h -t 0.7375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 184 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.73836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 169 -a 1 -x {1.0 5.0 156 ------- null} + -t 0.73836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 169 -a 1 -x {1.0 5.0 156 ------- null} r -t 0.73869 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {0.0 4.0 6 ------- null} + -t 0.73869 -s 4 -d 3 -p ack -e 40 -c 0 -i 185 -a 0 -x {4.0 0.0 6 ------- null} - -t 0.73869 -s 4 -d 3 -p ack -e 40 -c 0 -i 185 -a 0 -x {4.0 0.0 6 ------- null} h -t 0.73869 -s 4 -d 3 -p ack -e 40 -c 0 -i 185 -a 0 -x {4.0 0.0 -1 ------- null} r -t 0.73909 -s 2 -d 3 -p cbr -e 210 -c 1 -i 144 -a 1 -x {1.0 5.0 132 ------- null} + -t 0.73909 -s 3 -d 5 -p cbr -e 210 -c 1 -i 144 -a 1 -x {1.0 5.0 132 ------- null} - -t 0.73909 -s 3 -d 5 -p cbr -e 210 -c 1 -i 144 -a 1 -x {1.0 5.0 132 ------- null} h -t 0.73909 -s 3 -d 5 -p cbr -e 210 -c 1 -i 144 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.73949 -s 3 -d 5 -p cbr -e 210 -c 1 -i 128 -a 1 -x {1.0 5.0 117 ------- null} - -t 0.73949 -s 2 -d 3 -p cbr -e 210 -c 1 -i 163 -a 1 -x {1.0 5.0 150 ------- null} h -t 0.73949 -s 2 -d 3 -p cbr -e 210 -c 1 -i 163 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.74125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 186 -a 1 -x {1.0 5.0 171 ------- null} - -t 0.74125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 186 -a 1 -x {1.0 5.0 171 ------- null} h -t 0.74125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 186 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.74211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 170 -a 1 -x {1.0 5.0 157 ------- null} + -t 0.74211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 170 -a 1 -x {1.0 5.0 157 ------- null} r -t 0.74245 -s 2 -d 3 -p cbr -e 210 -c 1 -i 145 -a 1 -x {1.0 5.0 133 ------- null} + -t 0.74245 -s 3 -d 5 -p cbr -e 210 -c 1 -i 145 -a 1 -x {1.0 5.0 133 ------- null} - -t 0.74245 -s 3 -d 5 -p cbr -e 210 -c 1 -i 145 -a 1 -x {1.0 5.0 133 ------- null} h -t 0.74245 -s 3 -d 5 -p cbr -e 210 -c 1 -i 145 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.74285 -s 3 -d 5 -p cbr -e 210 -c 1 -i 130 -a 1 -x {1.0 5.0 118 ------- null} - -t 0.74285 -s 2 -d 3 -p cbr -e 210 -c 1 -i 164 -a 1 -x {1.0 5.0 151 ------- null} h -t 0.74285 -s 2 -d 3 -p cbr -e 210 -c 1 -i 164 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.745 -s 1 -d 2 -p cbr -e 210 -c 1 -i 187 -a 1 -x {1.0 5.0 172 ------- null} - -t 0.745 -s 1 -d 2 -p cbr -e 210 -c 1 -i 187 -a 1 -x {1.0 5.0 172 ------- null} h -t 0.745 -s 1 -d 2 -p cbr -e 210 -c 1 -i 187 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.74581 -s 2 -d 3 -p cbr -e 210 -c 1 -i 148 -a 1 -x {1.0 5.0 136 ------- null} + -t 0.74581 -s 3 -d 5 -p cbr -e 210 -c 1 -i 148 -a 1 -x {1.0 5.0 136 ------- null} - -t 0.74581 -s 3 -d 5 -p cbr -e 210 -c 1 -i 148 -a 1 -x {1.0 5.0 136 ------- null} h -t 0.74581 -s 3 -d 5 -p cbr -e 210 -c 1 -i 148 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.74586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 171 -a 1 -x {1.0 5.0 158 ------- null} + -t 0.74586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 171 -a 1 -x {1.0 5.0 158 ------- null} r -t 0.74621 -s 3 -d 5 -p cbr -e 210 -c 1 -i 131 -a 1 -x {1.0 5.0 119 ------- null} - -t 0.74621 -s 2 -d 3 -p cbr -e 210 -c 1 -i 165 -a 1 -x {1.0 5.0 152 ------- null} h -t 0.74621 -s 2 -d 3 -p cbr -e 210 -c 1 -i 165 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.74875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 188 -a 1 -x {1.0 5.0 173 ------- null} - -t 0.74875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 188 -a 1 -x {1.0 5.0 173 ------- null} h -t 0.74875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 188 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.74917 -s 2 -d 3 -p cbr -e 210 -c 1 -i 149 -a 1 -x {1.0 5.0 137 ------- null} + -t 0.74917 -s 3 -d 5 -p cbr -e 210 -c 1 -i 149 -a 1 -x {1.0 5.0 137 ------- null} - -t 0.74917 -s 3 -d 5 -p cbr -e 210 -c 1 -i 149 -a 1 -x {1.0 5.0 137 ------- null} h -t 0.74917 -s 3 -d 5 -p cbr -e 210 -c 1 -i 149 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.74957 -s 3 -d 5 -p cbr -e 210 -c 1 -i 132 -a 1 -x {1.0 5.0 120 ------- null} - -t 0.74957 -s 2 -d 3 -p cbr -e 210 -c 1 -i 166 -a 1 -x {1.0 5.0 153 ------- null} h -t 0.74957 -s 2 -d 3 -p cbr -e 210 -c 1 -i 166 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.74961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 172 -a 1 -x {1.0 5.0 159 ------- null} + -t 0.74961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 172 -a 1 -x {1.0 5.0 159 ------- null} r -t 0.74981 -s 4 -d 3 -p ack -e 40 -c 0 -i 173 -a 0 -x {4.0 0.0 5 ------- null} + -t 0.74981 -s 3 -d 2 -p ack -e 40 -c 0 -i 173 -a 0 -x {4.0 0.0 5 ------- null} - -t 0.74981 -s 3 -d 2 -p ack -e 40 -c 0 -i 173 -a 0 -x {4.0 0.0 5 ------- null} h -t 0.74981 -s 3 -d 2 -p ack -e 40 -c 0 -i 173 -a 0 -x {4.0 0.0 -1 ------- null} + -t 0.7525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 189 -a 1 -x {1.0 5.0 174 ------- null} - -t 0.7525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 189 -a 1 -x {1.0 5.0 174 ------- null} h -t 0.7525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 189 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.75253 -s 2 -d 3 -p cbr -e 210 -c 1 -i 150 -a 1 -x {1.0 5.0 138 ------- null} + -t 0.75253 -s 3 -d 5 -p cbr -e 210 -c 1 -i 150 -a 1 -x {1.0 5.0 138 ------- null} - -t 0.75253 -s 3 -d 5 -p cbr -e 210 -c 1 -i 150 -a 1 -x {1.0 5.0 138 ------- null} h -t 0.75253 -s 3 -d 5 -p cbr -e 210 -c 1 -i 150 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.75293 -s 2 -d 3 -p cbr -e 210 -c 1 -i 167 -a 1 -x {1.0 5.0 154 ------- null} h -t 0.75293 -s 2 -d 3 -p cbr -e 210 -c 1 -i 167 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.75336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 174 -a 1 -x {1.0 5.0 160 ------- null} + -t 0.75336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 174 -a 1 -x {1.0 5.0 160 ------- null} r -t 0.75589 -s 2 -d 3 -p cbr -e 210 -c 1 -i 151 -a 1 -x {1.0 5.0 139 ------- null} + -t 0.75589 -s 3 -d 5 -p cbr -e 210 -c 1 -i 151 -a 1 -x {1.0 5.0 139 ------- null} - -t 0.75589 -s 3 -d 5 -p cbr -e 210 -c 1 -i 151 -a 1 -x {1.0 5.0 139 ------- null} h -t 0.75589 -s 3 -d 5 -p cbr -e 210 -c 1 -i 151 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.75625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 190 -a 1 -x {1.0 5.0 175 ------- null} - -t 0.75625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 190 -a 1 -x {1.0 5.0 175 ------- null} h -t 0.75625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 190 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.75629 -s 2 -d 3 -p cbr -e 210 -c 1 -i 168 -a 1 -x {1.0 5.0 155 ------- null} h -t 0.75629 -s 2 -d 3 -p cbr -e 210 -c 1 -i 168 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.75711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 175 -a 1 -x {1.0 5.0 161 ------- null} + -t 0.75711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 175 -a 1 -x {1.0 5.0 161 ------- null} r -t 0.75757 -s 3 -d 2 -p ack -e 40 -c 0 -i 161 -a 0 -x {4.0 0.0 4 ------- null} + -t 0.75757 -s 2 -d 0 -p ack -e 40 -c 0 -i 161 -a 0 -x {4.0 0.0 4 ------- null} - -t 0.75757 -s 2 -d 0 -p ack -e 40 -c 0 -i 161 -a 0 -x {4.0 0.0 4 ------- null} h -t 0.75757 -s 2 -d 0 -p ack -e 40 -c 0 -i 161 -a 0 -x {4.0 0.0 -1 ------- null} r -t 0.75925 -s 2 -d 3 -p cbr -e 210 -c 1 -i 152 -a 1 -x {1.0 5.0 140 ------- null} + -t 0.75925 -s 3 -d 5 -p cbr -e 210 -c 1 -i 152 -a 1 -x {1.0 5.0 140 ------- null} - -t 0.75925 -s 3 -d 5 -p cbr -e 210 -c 1 -i 152 -a 1 -x {1.0 5.0 140 ------- null} h -t 0.75925 -s 3 -d 5 -p cbr -e 210 -c 1 -i 152 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.75965 -s 2 -d 3 -p cbr -e 210 -c 1 -i 169 -a 1 -x {1.0 5.0 156 ------- null} h -t 0.75965 -s 2 -d 3 -p cbr -e 210 -c 1 -i 169 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.76 -s 1 -d 2 -p cbr -e 210 -c 1 -i 191 -a 1 -x {1.0 5.0 176 ------- null} - -t 0.76 -s 1 -d 2 -p cbr -e 210 -c 1 -i 191 -a 1 -x {1.0 5.0 176 ------- null} h -t 0.76 -s 1 -d 2 -p cbr -e 210 -c 1 -i 191 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.76086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 176 -a 1 -x {1.0 5.0 162 ------- null} + -t 0.76086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 176 -a 1 -x {1.0 5.0 162 ------- null} r -t 0.76261 -s 2 -d 3 -p cbr -e 210 -c 1 -i 153 -a 1 -x {1.0 5.0 141 ------- null} + -t 0.76261 -s 3 -d 5 -p cbr -e 210 -c 1 -i 153 -a 1 -x {1.0 5.0 141 ------- null} - -t 0.76261 -s 3 -d 5 -p cbr -e 210 -c 1 -i 153 -a 1 -x {1.0 5.0 141 ------- null} h -t 0.76261 -s 3 -d 5 -p cbr -e 210 -c 1 -i 153 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.76301 -s 2 -d 3 -p cbr -e 210 -c 1 -i 170 -a 1 -x {1.0 5.0 157 ------- null} h -t 0.76301 -s 2 -d 3 -p cbr -e 210 -c 1 -i 170 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.76375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 192 -a 1 -x {1.0 5.0 177 ------- null} - -t 0.76375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 192 -a 1 -x {1.0 5.0 177 ------- null} h -t 0.76375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 192 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.76461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 177 -a 1 -x {1.0 5.0 163 ------- null} + -t 0.76461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 177 -a 1 -x {1.0 5.0 163 ------- null} r -t 0.76597 -s 2 -d 3 -p cbr -e 210 -c 1 -i 154 -a 1 -x {1.0 5.0 142 ------- null} + -t 0.76597 -s 3 -d 5 -p cbr -e 210 -c 1 -i 154 -a 1 -x {1.0 5.0 142 ------- null} - -t 0.76597 -s 3 -d 5 -p cbr -e 210 -c 1 -i 154 -a 1 -x {1.0 5.0 142 ------- null} h -t 0.76597 -s 3 -d 5 -p cbr -e 210 -c 1 -i 154 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.76637 -s 2 -d 3 -p cbr -e 210 -c 1 -i 171 -a 1 -x {1.0 5.0 158 ------- null} h -t 0.76637 -s 2 -d 3 -p cbr -e 210 -c 1 -i 171 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.7675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 193 -a 1 -x {1.0 5.0 178 ------- null} - -t 0.7675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 193 -a 1 -x {1.0 5.0 178 ------- null} h -t 0.7675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 193 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.76836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 178 -a 1 -x {1.0 5.0 164 ------- null} + -t 0.76836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 178 -a 1 -x {1.0 5.0 164 ------- null} r -t 0.76893 -s 3 -d 5 -p cbr -e 210 -c 1 -i 133 -a 1 -x {1.0 5.0 121 ------- null} r -t 0.76933 -s 2 -d 3 -p cbr -e 210 -c 1 -i 155 -a 1 -x {1.0 5.0 143 ------- null} + -t 0.76933 -s 3 -d 5 -p cbr -e 210 -c 1 -i 155 -a 1 -x {1.0 5.0 143 ------- null} - -t 0.76933 -s 3 -d 5 -p cbr -e 210 -c 1 -i 155 -a 1 -x {1.0 5.0 143 ------- null} h -t 0.76933 -s 3 -d 5 -p cbr -e 210 -c 1 -i 155 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.76973 -s 2 -d 3 -p cbr -e 210 -c 1 -i 172 -a 1 -x {1.0 5.0 159 ------- null} h -t 0.76973 -s 2 -d 3 -p cbr -e 210 -c 1 -i 172 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.77125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 194 -a 1 -x {1.0 5.0 179 ------- null} - -t 0.77125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 194 -a 1 -x {1.0 5.0 179 ------- null} h -t 0.77125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 194 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.77211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 179 -a 1 -x {1.0 5.0 165 ------- null} + -t 0.77211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 179 -a 1 -x {1.0 5.0 165 ------- null} r -t 0.77229 -s 3 -d 5 -p cbr -e 210 -c 1 -i 138 -a 1 -x {1.0 5.0 126 ------- null} r -t 0.77269 -s 2 -d 3 -p cbr -e 210 -c 1 -i 156 -a 1 -x {1.0 5.0 144 ------- null} + -t 0.77269 -s 3 -d 5 -p cbr -e 210 -c 1 -i 156 -a 1 -x {1.0 5.0 144 ------- null} - -t 0.77269 -s 3 -d 5 -p cbr -e 210 -c 1 -i 156 -a 1 -x {1.0 5.0 144 ------- null} h -t 0.77269 -s 3 -d 5 -p cbr -e 210 -c 1 -i 156 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.77309 -s 2 -d 3 -p cbr -e 210 -c 1 -i 174 -a 1 -x {1.0 5.0 160 ------- null} h -t 0.77309 -s 2 -d 3 -p cbr -e 210 -c 1 -i 174 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 195 -a 1 -x {1.0 5.0 180 ------- null} - -t 0.775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 195 -a 1 -x {1.0 5.0 180 ------- null} h -t 0.775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 195 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.77565 -s 3 -d 5 -p cbr -e 210 -c 1 -i 139 -a 1 -x {1.0 5.0 127 ------- null} r -t 0.77586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 180 -a 1 -x {1.0 5.0 166 ------- null} + -t 0.77586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 180 -a 1 -x {1.0 5.0 166 ------- null} r -t 0.77605 -s 2 -d 3 -p cbr -e 210 -c 1 -i 157 -a 1 -x {1.0 5.0 145 ------- null} + -t 0.77605 -s 3 -d 5 -p cbr -e 210 -c 1 -i 157 -a 1 -x {1.0 5.0 145 ------- null} - -t 0.77605 -s 3 -d 5 -p cbr -e 210 -c 1 -i 157 -a 1 -x {1.0 5.0 145 ------- null} h -t 0.77605 -s 3 -d 5 -p cbr -e 210 -c 1 -i 157 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.77645 -s 2 -d 3 -p cbr -e 210 -c 1 -i 175 -a 1 -x {1.0 5.0 161 ------- null} h -t 0.77645 -s 2 -d 3 -p cbr -e 210 -c 1 -i 175 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.77821 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 129 -a 0 -x {0.0 4.0 7 ------- null} + -t 0.77821 -s 4 -d 3 -p ack -e 40 -c 0 -i 196 -a 0 -x {4.0 0.0 7 ------- null} - -t 0.77821 -s 4 -d 3 -p ack -e 40 -c 0 -i 196 -a 0 -x {4.0 0.0 7 ------- null} h -t 0.77821 -s 4 -d 3 -p ack -e 40 -c 0 -i 196 -a 0 -x {4.0 0.0 -1 ------- null} + -t 0.77875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 197 -a 1 -x {1.0 5.0 181 ------- null} - -t 0.77875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 197 -a 1 -x {1.0 5.0 181 ------- null} h -t 0.77875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 197 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.77901 -s 3 -d 5 -p cbr -e 210 -c 1 -i 140 -a 1 -x {1.0 5.0 128 ------- null} r -t 0.77941 -s 2 -d 3 -p cbr -e 210 -c 1 -i 158 -a 1 -x {1.0 5.0 146 ------- null} + -t 0.77941 -s 3 -d 5 -p cbr -e 210 -c 1 -i 158 -a 1 -x {1.0 5.0 146 ------- null} - -t 0.77941 -s 3 -d 5 -p cbr -e 210 -c 1 -i 158 -a 1 -x {1.0 5.0 146 ------- null} h -t 0.77941 -s 3 -d 5 -p cbr -e 210 -c 1 -i 158 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.77961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 181 -a 1 -x {1.0 5.0 167 ------- null} + -t 0.77961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 181 -a 1 -x {1.0 5.0 167 ------- null} - -t 0.77981 -s 2 -d 3 -p cbr -e 210 -c 1 -i 176 -a 1 -x {1.0 5.0 162 ------- null} h -t 0.77981 -s 2 -d 3 -p cbr -e 210 -c 1 -i 176 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.78237 -s 3 -d 5 -p cbr -e 210 -c 1 -i 141 -a 1 -x {1.0 5.0 129 ------- null} + -t 0.7825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 198 -a 1 -x {1.0 5.0 182 ------- null} - -t 0.7825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 198 -a 1 -x {1.0 5.0 182 ------- null} h -t 0.7825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 198 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.78277 -s 2 -d 3 -p cbr -e 210 -c 1 -i 159 -a 1 -x {1.0 5.0 147 ------- null} + -t 0.78277 -s 3 -d 5 -p cbr -e 210 -c 1 -i 159 -a 1 -x {1.0 5.0 147 ------- null} - -t 0.78277 -s 3 -d 5 -p cbr -e 210 -c 1 -i 159 -a 1 -x {1.0 5.0 147 ------- null} h -t 0.78277 -s 3 -d 5 -p cbr -e 210 -c 1 -i 159 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.78317 -s 2 -d 3 -p cbr -e 210 -c 1 -i 177 -a 1 -x {1.0 5.0 163 ------- null} h -t 0.78317 -s 2 -d 3 -p cbr -e 210 -c 1 -i 177 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.78336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 182 -a 1 -x {1.0 5.0 168 ------- null} + -t 0.78336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 182 -a 1 -x {1.0 5.0 168 ------- null} r -t 0.78573 -s 3 -d 5 -p cbr -e 210 -c 1 -i 142 -a 1 -x {1.0 5.0 130 ------- null} r -t 0.78613 -s 2 -d 3 -p cbr -e 210 -c 1 -i 160 -a 1 -x {1.0 5.0 148 ------- null} + -t 0.78613 -s 3 -d 5 -p cbr -e 210 -c 1 -i 160 -a 1 -x {1.0 5.0 148 ------- null} - -t 0.78613 -s 3 -d 5 -p cbr -e 210 -c 1 -i 160 -a 1 -x {1.0 5.0 148 ------- null} h -t 0.78613 -s 3 -d 5 -p cbr -e 210 -c 1 -i 160 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.78625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 199 -a 1 -x {1.0 5.0 183 ------- null} - -t 0.78625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 199 -a 1 -x {1.0 5.0 183 ------- null} h -t 0.78625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 199 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.78653 -s 2 -d 3 -p cbr -e 210 -c 1 -i 178 -a 1 -x {1.0 5.0 164 ------- null} h -t 0.78653 -s 2 -d 3 -p cbr -e 210 -c 1 -i 178 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.78711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 183 -a 1 -x {1.0 5.0 169 ------- null} + -t 0.78711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 183 -a 1 -x {1.0 5.0 169 ------- null} r -t 0.78909 -s 3 -d 5 -p cbr -e 210 -c 1 -i 143 -a 1 -x {1.0 5.0 131 ------- null} r -t 0.78933 -s 4 -d 3 -p ack -e 40 -c 0 -i 185 -a 0 -x {4.0 0.0 6 ------- null} + -t 0.78933 -s 3 -d 2 -p ack -e 40 -c 0 -i 185 -a 0 -x {4.0 0.0 6 ------- null} - -t 0.78933 -s 3 -d 2 -p ack -e 40 -c 0 -i 185 -a 0 -x {4.0 0.0 6 ------- null} h -t 0.78933 -s 3 -d 2 -p ack -e 40 -c 0 -i 185 -a 0 -x {4.0 0.0 -1 ------- null} r -t 0.78949 -s 2 -d 3 -p cbr -e 210 -c 1 -i 162 -a 1 -x {1.0 5.0 149 ------- null} + -t 0.78949 -s 3 -d 5 -p cbr -e 210 -c 1 -i 162 -a 1 -x {1.0 5.0 149 ------- null} - -t 0.78949 -s 3 -d 5 -p cbr -e 210 -c 1 -i 162 -a 1 -x {1.0 5.0 149 ------- null} h -t 0.78949 -s 3 -d 5 -p cbr -e 210 -c 1 -i 162 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.78989 -s 2 -d 3 -p cbr -e 210 -c 1 -i 179 -a 1 -x {1.0 5.0 165 ------- null} h -t 0.78989 -s 2 -d 3 -p cbr -e 210 -c 1 -i 179 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.79 -s 1 -d 2 -p cbr -e 210 -c 1 -i 200 -a 1 -x {1.0 5.0 184 ------- null} - -t 0.79 -s 1 -d 2 -p cbr -e 210 -c 1 -i 200 -a 1 -x {1.0 5.0 184 ------- null} h -t 0.79 -s 1 -d 2 -p cbr -e 210 -c 1 -i 200 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.79086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 184 -a 1 -x {1.0 5.0 170 ------- null} + -t 0.79086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 184 -a 1 -x {1.0 5.0 170 ------- null} r -t 0.79245 -s 3 -d 5 -p cbr -e 210 -c 1 -i 144 -a 1 -x {1.0 5.0 132 ------- null} r -t 0.79285 -s 2 -d 3 -p cbr -e 210 -c 1 -i 163 -a 1 -x {1.0 5.0 150 ------- null} + -t 0.79285 -s 3 -d 5 -p cbr -e 210 -c 1 -i 163 -a 1 -x {1.0 5.0 150 ------- null} - -t 0.79285 -s 3 -d 5 -p cbr -e 210 -c 1 -i 163 -a 1 -x {1.0 5.0 150 ------- null} h -t 0.79285 -s 3 -d 5 -p cbr -e 210 -c 1 -i 163 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.79325 -s 2 -d 3 -p cbr -e 210 -c 1 -i 180 -a 1 -x {1.0 5.0 166 ------- null} h -t 0.79325 -s 2 -d 3 -p cbr -e 210 -c 1 -i 180 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.79375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 201 -a 1 -x {1.0 5.0 185 ------- null} - -t 0.79375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 201 -a 1 -x {1.0 5.0 185 ------- null} h -t 0.79375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 201 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.79461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 186 -a 1 -x {1.0 5.0 171 ------- null} + -t 0.79461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 186 -a 1 -x {1.0 5.0 171 ------- null} r -t 0.79581 -s 3 -d 5 -p cbr -e 210 -c 1 -i 145 -a 1 -x {1.0 5.0 133 ------- null} r -t 0.79621 -s 2 -d 3 -p cbr -e 210 -c 1 -i 164 -a 1 -x {1.0 5.0 151 ------- null} + -t 0.79621 -s 3 -d 5 -p cbr -e 210 -c 1 -i 164 -a 1 -x {1.0 5.0 151 ------- null} - -t 0.79621 -s 3 -d 5 -p cbr -e 210 -c 1 -i 164 -a 1 -x {1.0 5.0 151 ------- null} h -t 0.79621 -s 3 -d 5 -p cbr -e 210 -c 1 -i 164 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.79661 -s 2 -d 3 -p cbr -e 210 -c 1 -i 181 -a 1 -x {1.0 5.0 167 ------- null} h -t 0.79661 -s 2 -d 3 -p cbr -e 210 -c 1 -i 181 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.7975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 202 -a 1 -x {1.0 5.0 186 ------- null} - -t 0.7975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 202 -a 1 -x {1.0 5.0 186 ------- null} h -t 0.7975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 202 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.79836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 187 -a 1 -x {1.0 5.0 172 ------- null} + -t 0.79836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 187 -a 1 -x {1.0 5.0 172 ------- null} r -t 0.79917 -s 3 -d 5 -p cbr -e 210 -c 1 -i 148 -a 1 -x {1.0 5.0 136 ------- null} r -t 0.79957 -s 2 -d 3 -p cbr -e 210 -c 1 -i 165 -a 1 -x {1.0 5.0 152 ------- null} + -t 0.79957 -s 3 -d 5 -p cbr -e 210 -c 1 -i 165 -a 1 -x {1.0 5.0 152 ------- null} - -t 0.79957 -s 3 -d 5 -p cbr -e 210 -c 1 -i 165 -a 1 -x {1.0 5.0 152 ------- null} h -t 0.79957 -s 3 -d 5 -p cbr -e 210 -c 1 -i 165 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.79997 -s 2 -d 3 -p cbr -e 210 -c 1 -i 182 -a 1 -x {1.0 5.0 168 ------- null} h -t 0.79997 -s 2 -d 3 -p cbr -e 210 -c 1 -i 182 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.80045 -s 3 -d 2 -p ack -e 40 -c 0 -i 173 -a 0 -x {4.0 0.0 5 ------- null} + -t 0.80045 -s 2 -d 0 -p ack -e 40 -c 0 -i 173 -a 0 -x {4.0 0.0 5 ------- null} - -t 0.80045 -s 2 -d 0 -p ack -e 40 -c 0 -i 173 -a 0 -x {4.0 0.0 5 ------- null} h -t 0.80045 -s 2 -d 0 -p ack -e 40 -c 0 -i 173 -a 0 -x {4.0 0.0 -1 ------- null} + -t 0.80125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 203 -a 1 -x {1.0 5.0 187 ------- null} - -t 0.80125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 203 -a 1 -x {1.0 5.0 187 ------- null} h -t 0.80125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 203 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.80211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 188 -a 1 -x {1.0 5.0 173 ------- null} + -t 0.80211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 188 -a 1 -x {1.0 5.0 173 ------- null} r -t 0.80253 -s 3 -d 5 -p cbr -e 210 -c 1 -i 149 -a 1 -x {1.0 5.0 137 ------- null} r -t 0.80293 -s 2 -d 3 -p cbr -e 210 -c 1 -i 166 -a 1 -x {1.0 5.0 153 ------- null} + -t 0.80293 -s 3 -d 5 -p cbr -e 210 -c 1 -i 166 -a 1 -x {1.0 5.0 153 ------- null} - -t 0.80293 -s 3 -d 5 -p cbr -e 210 -c 1 -i 166 -a 1 -x {1.0 5.0 153 ------- null} h -t 0.80293 -s 3 -d 5 -p cbr -e 210 -c 1 -i 166 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.80333 -s 2 -d 3 -p cbr -e 210 -c 1 -i 183 -a 1 -x {1.0 5.0 169 ------- null} h -t 0.80333 -s 2 -d 3 -p cbr -e 210 -c 1 -i 183 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.805 -s 1 -d 2 -p cbr -e 210 -c 1 -i 204 -a 1 -x {1.0 5.0 188 ------- null} - -t 0.805 -s 1 -d 2 -p cbr -e 210 -c 1 -i 204 -a 1 -x {1.0 5.0 188 ------- null} h -t 0.805 -s 1 -d 2 -p cbr -e 210 -c 1 -i 204 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.80586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 189 -a 1 -x {1.0 5.0 174 ------- null} + -t 0.80586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 189 -a 1 -x {1.0 5.0 174 ------- null} r -t 0.80589 -s 3 -d 5 -p cbr -e 210 -c 1 -i 150 -a 1 -x {1.0 5.0 138 ------- null} r -t 0.80629 -s 2 -d 3 -p cbr -e 210 -c 1 -i 167 -a 1 -x {1.0 5.0 154 ------- null} + -t 0.80629 -s 3 -d 5 -p cbr -e 210 -c 1 -i 167 -a 1 -x {1.0 5.0 154 ------- null} - -t 0.80629 -s 3 -d 5 -p cbr -e 210 -c 1 -i 167 -a 1 -x {1.0 5.0 154 ------- null} h -t 0.80629 -s 3 -d 5 -p cbr -e 210 -c 1 -i 167 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.80669 -s 2 -d 3 -p cbr -e 210 -c 1 -i 184 -a 1 -x {1.0 5.0 170 ------- null} h -t 0.80669 -s 2 -d 3 -p cbr -e 210 -c 1 -i 184 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.80821 -s 2 -d 0 -p ack -e 40 -c 0 -i 161 -a 0 -x {4.0 0.0 4 ------- null} + -t 0.80821 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 205 -a 0 -x {0.0 4.0 8 ------- null} - -t 0.80821 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 205 -a 0 -x {0.0 4.0 8 ------- null} h -t 0.80821 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 205 -a 0 -x {0.0 4.0 -1 ------- null} + -t 0.80875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 206 -a 1 -x {1.0 5.0 189 ------- null} - -t 0.80875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 206 -a 1 -x {1.0 5.0 189 ------- null} h -t 0.80875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 206 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.80925 -s 3 -d 5 -p cbr -e 210 -c 1 -i 151 -a 1 -x {1.0 5.0 139 ------- null} r -t 0.80961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 190 -a 1 -x {1.0 5.0 175 ------- null} + -t 0.80961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 190 -a 1 -x {1.0 5.0 175 ------- null} r -t 0.80965 -s 2 -d 3 -p cbr -e 210 -c 1 -i 168 -a 1 -x {1.0 5.0 155 ------- null} + -t 0.80965 -s 3 -d 5 -p cbr -e 210 -c 1 -i 168 -a 1 -x {1.0 5.0 155 ------- null} - -t 0.80965 -s 3 -d 5 -p cbr -e 210 -c 1 -i 168 -a 1 -x {1.0 5.0 155 ------- null} h -t 0.80965 -s 3 -d 5 -p cbr -e 210 -c 1 -i 168 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.81005 -s 2 -d 3 -p cbr -e 210 -c 1 -i 186 -a 1 -x {1.0 5.0 171 ------- null} h -t 0.81005 -s 2 -d 3 -p cbr -e 210 -c 1 -i 186 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.8125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 207 -a 1 -x {1.0 5.0 190 ------- null} - -t 0.8125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 207 -a 1 -x {1.0 5.0 190 ------- null} h -t 0.8125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 207 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.81261 -s 3 -d 5 -p cbr -e 210 -c 1 -i 152 -a 1 -x {1.0 5.0 140 ------- null} r -t 0.81301 -s 2 -d 3 -p cbr -e 210 -c 1 -i 169 -a 1 -x {1.0 5.0 156 ------- null} + -t 0.81301 -s 3 -d 5 -p cbr -e 210 -c 1 -i 169 -a 1 -x {1.0 5.0 156 ------- null} - -t 0.81301 -s 3 -d 5 -p cbr -e 210 -c 1 -i 169 -a 1 -x {1.0 5.0 156 ------- null} h -t 0.81301 -s 3 -d 5 -p cbr -e 210 -c 1 -i 169 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.81336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 191 -a 1 -x {1.0 5.0 176 ------- null} + -t 0.81336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 191 -a 1 -x {1.0 5.0 176 ------- null} - -t 0.81341 -s 2 -d 3 -p cbr -e 210 -c 1 -i 187 -a 1 -x {1.0 5.0 172 ------- null} h -t 0.81341 -s 2 -d 3 -p cbr -e 210 -c 1 -i 187 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.81597 -s 3 -d 5 -p cbr -e 210 -c 1 -i 153 -a 1 -x {1.0 5.0 141 ------- null} + -t 0.81625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 208 -a 1 -x {1.0 5.0 191 ------- null} - -t 0.81625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 208 -a 1 -x {1.0 5.0 191 ------- null} h -t 0.81625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 208 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.81637 -s 2 -d 3 -p cbr -e 210 -c 1 -i 170 -a 1 -x {1.0 5.0 157 ------- null} + -t 0.81637 -s 3 -d 5 -p cbr -e 210 -c 1 -i 170 -a 1 -x {1.0 5.0 157 ------- null} - -t 0.81637 -s 3 -d 5 -p cbr -e 210 -c 1 -i 170 -a 1 -x {1.0 5.0 157 ------- null} h -t 0.81637 -s 3 -d 5 -p cbr -e 210 -c 1 -i 170 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.81677 -s 2 -d 3 -p cbr -e 210 -c 1 -i 188 -a 1 -x {1.0 5.0 173 ------- null} h -t 0.81677 -s 2 -d 3 -p cbr -e 210 -c 1 -i 188 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.81711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 192 -a 1 -x {1.0 5.0 177 ------- null} + -t 0.81711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 192 -a 1 -x {1.0 5.0 177 ------- null} r -t 0.81933 -s 3 -d 5 -p cbr -e 210 -c 1 -i 154 -a 1 -x {1.0 5.0 142 ------- null} r -t 0.81973 -s 2 -d 3 -p cbr -e 210 -c 1 -i 171 -a 1 -x {1.0 5.0 158 ------- null} + -t 0.81973 -s 3 -d 5 -p cbr -e 210 -c 1 -i 171 -a 1 -x {1.0 5.0 158 ------- null} - -t 0.81973 -s 3 -d 5 -p cbr -e 210 -c 1 -i 171 -a 1 -x {1.0 5.0 158 ------- null} h -t 0.81973 -s 3 -d 5 -p cbr -e 210 -c 1 -i 171 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.82 -s 1 -d 2 -p cbr -e 210 -c 1 -i 209 -a 1 -x {1.0 5.0 192 ------- null} - -t 0.82 -s 1 -d 2 -p cbr -e 210 -c 1 -i 209 -a 1 -x {1.0 5.0 192 ------- null} h -t 0.82 -s 1 -d 2 -p cbr -e 210 -c 1 -i 209 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.82013 -s 2 -d 3 -p cbr -e 210 -c 1 -i 189 -a 1 -x {1.0 5.0 174 ------- null} h -t 0.82013 -s 2 -d 3 -p cbr -e 210 -c 1 -i 189 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.82086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 193 -a 1 -x {1.0 5.0 178 ------- null} + -t 0.82086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 193 -a 1 -x {1.0 5.0 178 ------- null} r -t 0.82269 -s 3 -d 5 -p cbr -e 210 -c 1 -i 155 -a 1 -x {1.0 5.0 143 ------- null} r -t 0.82309 -s 2 -d 3 -p cbr -e 210 -c 1 -i 172 -a 1 -x {1.0 5.0 159 ------- null} + -t 0.82309 -s 3 -d 5 -p cbr -e 210 -c 1 -i 172 -a 1 -x {1.0 5.0 159 ------- null} - -t 0.82309 -s 3 -d 5 -p cbr -e 210 -c 1 -i 172 -a 1 -x {1.0 5.0 159 ------- null} h -t 0.82309 -s 3 -d 5 -p cbr -e 210 -c 1 -i 172 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.82349 -s 2 -d 3 -p cbr -e 210 -c 1 -i 190 -a 1 -x {1.0 5.0 175 ------- null} h -t 0.82349 -s 2 -d 3 -p cbr -e 210 -c 1 -i 190 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.82375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 210 -a 1 -x {1.0 5.0 193 ------- null} - -t 0.82375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 210 -a 1 -x {1.0 5.0 193 ------- null} h -t 0.82375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 210 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.82461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 194 -a 1 -x {1.0 5.0 179 ------- null} + -t 0.82461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 194 -a 1 -x {1.0 5.0 179 ------- null} r -t 0.82605 -s 3 -d 5 -p cbr -e 210 -c 1 -i 156 -a 1 -x {1.0 5.0 144 ------- null} r -t 0.82645 -s 2 -d 3 -p cbr -e 210 -c 1 -i 174 -a 1 -x {1.0 5.0 160 ------- null} + -t 0.82645 -s 3 -d 5 -p cbr -e 210 -c 1 -i 174 -a 1 -x {1.0 5.0 160 ------- null} - -t 0.82645 -s 3 -d 5 -p cbr -e 210 -c 1 -i 174 -a 1 -x {1.0 5.0 160 ------- null} h -t 0.82645 -s 3 -d 5 -p cbr -e 210 -c 1 -i 174 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.82685 -s 2 -d 3 -p cbr -e 210 -c 1 -i 191 -a 1 -x {1.0 5.0 176 ------- null} h -t 0.82685 -s 2 -d 3 -p cbr -e 210 -c 1 -i 191 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.8275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 211 -a 1 -x {1.0 5.0 194 ------- null} - -t 0.8275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 211 -a 1 -x {1.0 5.0 194 ------- null} h -t 0.8275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 211 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.82836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 195 -a 1 -x {1.0 5.0 180 ------- null} + -t 0.82836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 195 -a 1 -x {1.0 5.0 180 ------- null} r -t 0.82885 -s 4 -d 3 -p ack -e 40 -c 0 -i 196 -a 0 -x {4.0 0.0 7 ------- null} + -t 0.82885 -s 3 -d 2 -p ack -e 40 -c 0 -i 196 -a 0 -x {4.0 0.0 7 ------- null} - -t 0.82885 -s 3 -d 2 -p ack -e 40 -c 0 -i 196 -a 0 -x {4.0 0.0 7 ------- null} h -t 0.82885 -s 3 -d 2 -p ack -e 40 -c 0 -i 196 -a 0 -x {4.0 0.0 -1 ------- null} r -t 0.82941 -s 3 -d 5 -p cbr -e 210 -c 1 -i 157 -a 1 -x {1.0 5.0 145 ------- null} r -t 0.82981 -s 2 -d 3 -p cbr -e 210 -c 1 -i 175 -a 1 -x {1.0 5.0 161 ------- null} + -t 0.82981 -s 3 -d 5 -p cbr -e 210 -c 1 -i 175 -a 1 -x {1.0 5.0 161 ------- null} - -t 0.82981 -s 3 -d 5 -p cbr -e 210 -c 1 -i 175 -a 1 -x {1.0 5.0 161 ------- null} h -t 0.82981 -s 3 -d 5 -p cbr -e 210 -c 1 -i 175 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.83021 -s 2 -d 3 -p cbr -e 210 -c 1 -i 192 -a 1 -x {1.0 5.0 177 ------- null} h -t 0.83021 -s 2 -d 3 -p cbr -e 210 -c 1 -i 192 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.83125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 212 -a 1 -x {1.0 5.0 195 ------- null} - -t 0.83125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 212 -a 1 -x {1.0 5.0 195 ------- null} h -t 0.83125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 212 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.83211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 197 -a 1 -x {1.0 5.0 181 ------- null} + -t 0.83211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 197 -a 1 -x {1.0 5.0 181 ------- null} r -t 0.83277 -s 3 -d 5 -p cbr -e 210 -c 1 -i 158 -a 1 -x {1.0 5.0 146 ------- null} r -t 0.83317 -s 2 -d 3 -p cbr -e 210 -c 1 -i 176 -a 1 -x {1.0 5.0 162 ------- null} + -t 0.83317 -s 3 -d 5 -p cbr -e 210 -c 1 -i 176 -a 1 -x {1.0 5.0 162 ------- null} - -t 0.83317 -s 3 -d 5 -p cbr -e 210 -c 1 -i 176 -a 1 -x {1.0 5.0 162 ------- null} h -t 0.83317 -s 3 -d 5 -p cbr -e 210 -c 1 -i 176 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.83357 -s 2 -d 3 -p cbr -e 210 -c 1 -i 193 -a 1 -x {1.0 5.0 178 ------- null} h -t 0.83357 -s 2 -d 3 -p cbr -e 210 -c 1 -i 193 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.835 -s 1 -d 2 -p cbr -e 210 -c 1 -i 213 -a 1 -x {1.0 5.0 196 ------- null} - -t 0.835 -s 1 -d 2 -p cbr -e 210 -c 1 -i 213 -a 1 -x {1.0 5.0 196 ------- null} h -t 0.835 -s 1 -d 2 -p cbr -e 210 -c 1 -i 213 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.83586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 198 -a 1 -x {1.0 5.0 182 ------- null} + -t 0.83586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 198 -a 1 -x {1.0 5.0 182 ------- null} r -t 0.83613 -s 3 -d 5 -p cbr -e 210 -c 1 -i 159 -a 1 -x {1.0 5.0 147 ------- null} r -t 0.83653 -s 2 -d 3 -p cbr -e 210 -c 1 -i 177 -a 1 -x {1.0 5.0 163 ------- null} + -t 0.83653 -s 3 -d 5 -p cbr -e 210 -c 1 -i 177 -a 1 -x {1.0 5.0 163 ------- null} - -t 0.83653 -s 3 -d 5 -p cbr -e 210 -c 1 -i 177 -a 1 -x {1.0 5.0 163 ------- null} h -t 0.83653 -s 3 -d 5 -p cbr -e 210 -c 1 -i 177 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.83693 -s 2 -d 3 -p cbr -e 210 -c 1 -i 194 -a 1 -x {1.0 5.0 179 ------- null} h -t 0.83693 -s 2 -d 3 -p cbr -e 210 -c 1 -i 194 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.83875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 214 -a 1 -x {1.0 5.0 197 ------- null} - -t 0.83875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 214 -a 1 -x {1.0 5.0 197 ------- null} h -t 0.83875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 214 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.83949 -s 3 -d 5 -p cbr -e 210 -c 1 -i 160 -a 1 -x {1.0 5.0 148 ------- null} r -t 0.83961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 199 -a 1 -x {1.0 5.0 183 ------- null} + -t 0.83961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 199 -a 1 -x {1.0 5.0 183 ------- null} r -t 0.83989 -s 2 -d 3 -p cbr -e 210 -c 1 -i 178 -a 1 -x {1.0 5.0 164 ------- null} + -t 0.83989 -s 3 -d 5 -p cbr -e 210 -c 1 -i 178 -a 1 -x {1.0 5.0 164 ------- null} - -t 0.83989 -s 3 -d 5 -p cbr -e 210 -c 1 -i 178 -a 1 -x {1.0 5.0 164 ------- null} h -t 0.83989 -s 3 -d 5 -p cbr -e 210 -c 1 -i 178 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.83997 -s 3 -d 2 -p ack -e 40 -c 0 -i 185 -a 0 -x {4.0 0.0 6 ------- null} + -t 0.83997 -s 2 -d 0 -p ack -e 40 -c 0 -i 185 -a 0 -x {4.0 0.0 6 ------- null} - -t 0.83997 -s 2 -d 0 -p ack -e 40 -c 0 -i 185 -a 0 -x {4.0 0.0 6 ------- null} h -t 0.83997 -s 2 -d 0 -p ack -e 40 -c 0 -i 185 -a 0 -x {4.0 0.0 -1 ------- null} - -t 0.84029 -s 2 -d 3 -p cbr -e 210 -c 1 -i 195 -a 1 -x {1.0 5.0 180 ------- null} h -t 0.84029 -s 2 -d 3 -p cbr -e 210 -c 1 -i 195 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.8425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 215 -a 1 -x {1.0 5.0 198 ------- null} - -t 0.8425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 215 -a 1 -x {1.0 5.0 198 ------- null} h -t 0.8425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 215 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.84285 -s 3 -d 5 -p cbr -e 210 -c 1 -i 162 -a 1 -x {1.0 5.0 149 ------- null} r -t 0.84325 -s 2 -d 3 -p cbr -e 210 -c 1 -i 179 -a 1 -x {1.0 5.0 165 ------- null} + -t 0.84325 -s 3 -d 5 -p cbr -e 210 -c 1 -i 179 -a 1 -x {1.0 5.0 165 ------- null} - -t 0.84325 -s 3 -d 5 -p cbr -e 210 -c 1 -i 179 -a 1 -x {1.0 5.0 165 ------- null} h -t 0.84325 -s 3 -d 5 -p cbr -e 210 -c 1 -i 179 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.84336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 200 -a 1 -x {1.0 5.0 184 ------- null} + -t 0.84336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 200 -a 1 -x {1.0 5.0 184 ------- null} - -t 0.84365 -s 2 -d 3 -p cbr -e 210 -c 1 -i 197 -a 1 -x {1.0 5.0 181 ------- null} h -t 0.84365 -s 2 -d 3 -p cbr -e 210 -c 1 -i 197 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.84621 -s 3 -d 5 -p cbr -e 210 -c 1 -i 163 -a 1 -x {1.0 5.0 150 ------- null} + -t 0.84625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 216 -a 1 -x {1.0 5.0 199 ------- null} - -t 0.84625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 216 -a 1 -x {1.0 5.0 199 ------- null} h -t 0.84625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 216 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.84661 -s 2 -d 3 -p cbr -e 210 -c 1 -i 180 -a 1 -x {1.0 5.0 166 ------- null} + -t 0.84661 -s 3 -d 5 -p cbr -e 210 -c 1 -i 180 -a 1 -x {1.0 5.0 166 ------- null} - -t 0.84661 -s 3 -d 5 -p cbr -e 210 -c 1 -i 180 -a 1 -x {1.0 5.0 166 ------- null} h -t 0.84661 -s 3 -d 5 -p cbr -e 210 -c 1 -i 180 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.84701 -s 2 -d 3 -p cbr -e 210 -c 1 -i 198 -a 1 -x {1.0 5.0 182 ------- null} h -t 0.84701 -s 2 -d 3 -p cbr -e 210 -c 1 -i 198 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.84711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 201 -a 1 -x {1.0 5.0 185 ------- null} + -t 0.84711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 201 -a 1 -x {1.0 5.0 185 ------- null} r -t 0.84957 -s 3 -d 5 -p cbr -e 210 -c 1 -i 164 -a 1 -x {1.0 5.0 151 ------- null} r -t 0.84997 -s 2 -d 3 -p cbr -e 210 -c 1 -i 181 -a 1 -x {1.0 5.0 167 ------- null} + -t 0.84997 -s 3 -d 5 -p cbr -e 210 -c 1 -i 181 -a 1 -x {1.0 5.0 167 ------- null} - -t 0.84997 -s 3 -d 5 -p cbr -e 210 -c 1 -i 181 -a 1 -x {1.0 5.0 167 ------- null} h -t 0.84997 -s 3 -d 5 -p cbr -e 210 -c 1 -i 181 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.85 -s 1 -d 2 -p cbr -e 210 -c 1 -i 217 -a 1 -x {1.0 5.0 200 ------- null} - -t 0.85 -s 1 -d 2 -p cbr -e 210 -c 1 -i 217 -a 1 -x {1.0 5.0 200 ------- null} h -t 0.85 -s 1 -d 2 -p cbr -e 210 -c 1 -i 217 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.85037 -s 2 -d 3 -p cbr -e 210 -c 1 -i 199 -a 1 -x {1.0 5.0 183 ------- null} h -t 0.85037 -s 2 -d 3 -p cbr -e 210 -c 1 -i 199 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.85086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 202 -a 1 -x {1.0 5.0 186 ------- null} + -t 0.85086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 202 -a 1 -x {1.0 5.0 186 ------- null} r -t 0.85109 -s 2 -d 0 -p ack -e 40 -c 0 -i 173 -a 0 -x {4.0 0.0 5 ------- null} + -t 0.85109 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 218 -a 0 -x {0.0 4.0 9 ------- null} - -t 0.85109 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 218 -a 0 -x {0.0 4.0 9 ------- null} h -t 0.85109 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 218 -a 0 -x {0.0 4.0 -1 ------- null} r -t 0.85293 -s 3 -d 5 -p cbr -e 210 -c 1 -i 165 -a 1 -x {1.0 5.0 152 ------- null} r -t 0.85333 -s 2 -d 3 -p cbr -e 210 -c 1 -i 182 -a 1 -x {1.0 5.0 168 ------- null} + -t 0.85333 -s 3 -d 5 -p cbr -e 210 -c 1 -i 182 -a 1 -x {1.0 5.0 168 ------- null} - -t 0.85333 -s 3 -d 5 -p cbr -e 210 -c 1 -i 182 -a 1 -x {1.0 5.0 168 ------- null} h -t 0.85333 -s 3 -d 5 -p cbr -e 210 -c 1 -i 182 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.85373 -s 2 -d 3 -p cbr -e 210 -c 1 -i 200 -a 1 -x {1.0 5.0 184 ------- null} h -t 0.85373 -s 2 -d 3 -p cbr -e 210 -c 1 -i 200 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.85375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 219 -a 1 -x {1.0 5.0 201 ------- null} - -t 0.85375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 219 -a 1 -x {1.0 5.0 201 ------- null} h -t 0.85375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 219 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.85461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 203 -a 1 -x {1.0 5.0 187 ------- null} + -t 0.85461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 203 -a 1 -x {1.0 5.0 187 ------- null} r -t 0.85629 -s 3 -d 5 -p cbr -e 210 -c 1 -i 166 -a 1 -x {1.0 5.0 153 ------- null} r -t 0.85669 -s 2 -d 3 -p cbr -e 210 -c 1 -i 183 -a 1 -x {1.0 5.0 169 ------- null} + -t 0.85669 -s 3 -d 5 -p cbr -e 210 -c 1 -i 183 -a 1 -x {1.0 5.0 169 ------- null} - -t 0.85669 -s 3 -d 5 -p cbr -e 210 -c 1 -i 183 -a 1 -x {1.0 5.0 169 ------- null} h -t 0.85669 -s 3 -d 5 -p cbr -e 210 -c 1 -i 183 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.85709 -s 2 -d 3 -p cbr -e 210 -c 1 -i 201 -a 1 -x {1.0 5.0 185 ------- null} h -t 0.85709 -s 2 -d 3 -p cbr -e 210 -c 1 -i 201 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.8575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 220 -a 1 -x {1.0 5.0 202 ------- null} - -t 0.8575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 220 -a 1 -x {1.0 5.0 202 ------- null} h -t 0.8575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 220 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.85836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 204 -a 1 -x {1.0 5.0 188 ------- null} + -t 0.85836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 204 -a 1 -x {1.0 5.0 188 ------- null} r -t 0.85965 -s 3 -d 5 -p cbr -e 210 -c 1 -i 167 -a 1 -x {1.0 5.0 154 ------- null} r -t 0.86005 -s 2 -d 3 -p cbr -e 210 -c 1 -i 184 -a 1 -x {1.0 5.0 170 ------- null} + -t 0.86005 -s 3 -d 5 -p cbr -e 210 -c 1 -i 184 -a 1 -x {1.0 5.0 170 ------- null} - -t 0.86005 -s 3 -d 5 -p cbr -e 210 -c 1 -i 184 -a 1 -x {1.0 5.0 170 ------- null} h -t 0.86005 -s 3 -d 5 -p cbr -e 210 -c 1 -i 184 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.86045 -s 2 -d 3 -p cbr -e 210 -c 1 -i 202 -a 1 -x {1.0 5.0 186 ------- null} h -t 0.86045 -s 2 -d 3 -p cbr -e 210 -c 1 -i 202 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.86125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 221 -a 1 -x {1.0 5.0 203 ------- null} - -t 0.86125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 221 -a 1 -x {1.0 5.0 203 ------- null} h -t 0.86125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 221 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.86211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 206 -a 1 -x {1.0 5.0 189 ------- null} + -t 0.86211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 206 -a 1 -x {1.0 5.0 189 ------- null} r -t 0.86301 -s 3 -d 5 -p cbr -e 210 -c 1 -i 168 -a 1 -x {1.0 5.0 155 ------- null} r -t 0.86341 -s 2 -d 3 -p cbr -e 210 -c 1 -i 186 -a 1 -x {1.0 5.0 171 ------- null} + -t 0.86341 -s 3 -d 5 -p cbr -e 210 -c 1 -i 186 -a 1 -x {1.0 5.0 171 ------- null} - -t 0.86341 -s 3 -d 5 -p cbr -e 210 -c 1 -i 186 -a 1 -x {1.0 5.0 171 ------- null} h -t 0.86341 -s 3 -d 5 -p cbr -e 210 -c 1 -i 186 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.86381 -s 2 -d 3 -p cbr -e 210 -c 1 -i 203 -a 1 -x {1.0 5.0 187 ------- null} h -t 0.86381 -s 2 -d 3 -p cbr -e 210 -c 1 -i 203 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.865 -s 1 -d 2 -p cbr -e 210 -c 1 -i 222 -a 1 -x {1.0 5.0 204 ------- null} - -t 0.865 -s 1 -d 2 -p cbr -e 210 -c 1 -i 222 -a 1 -x {1.0 5.0 204 ------- null} h -t 0.865 -s 1 -d 2 -p cbr -e 210 -c 1 -i 222 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.86586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 207 -a 1 -x {1.0 5.0 190 ------- null} + -t 0.86586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 207 -a 1 -x {1.0 5.0 190 ------- null} r -t 0.86637 -s 3 -d 5 -p cbr -e 210 -c 1 -i 169 -a 1 -x {1.0 5.0 156 ------- null} r -t 0.86677 -s 2 -d 3 -p cbr -e 210 -c 1 -i 187 -a 1 -x {1.0 5.0 172 ------- null} + -t 0.86677 -s 3 -d 5 -p cbr -e 210 -c 1 -i 187 -a 1 -x {1.0 5.0 172 ------- null} - -t 0.86677 -s 3 -d 5 -p cbr -e 210 -c 1 -i 187 -a 1 -x {1.0 5.0 172 ------- null} h -t 0.86677 -s 3 -d 5 -p cbr -e 210 -c 1 -i 187 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.86717 -s 2 -d 3 -p cbr -e 210 -c 1 -i 204 -a 1 -x {1.0 5.0 188 ------- null} h -t 0.86717 -s 2 -d 3 -p cbr -e 210 -c 1 -i 204 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.86875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 223 -a 1 -x {1.0 5.0 205 ------- null} - -t 0.86875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 223 -a 1 -x {1.0 5.0 205 ------- null} h -t 0.86875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 223 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.86961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 208 -a 1 -x {1.0 5.0 191 ------- null} + -t 0.86961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 208 -a 1 -x {1.0 5.0 191 ------- null} r -t 0.86973 -s 3 -d 5 -p cbr -e 210 -c 1 -i 170 -a 1 -x {1.0 5.0 157 ------- null} r -t 0.87013 -s 2 -d 3 -p cbr -e 210 -c 1 -i 188 -a 1 -x {1.0 5.0 173 ------- null} + -t 0.87013 -s 3 -d 5 -p cbr -e 210 -c 1 -i 188 -a 1 -x {1.0 5.0 173 ------- null} - -t 0.87013 -s 3 -d 5 -p cbr -e 210 -c 1 -i 188 -a 1 -x {1.0 5.0 173 ------- null} h -t 0.87013 -s 3 -d 5 -p cbr -e 210 -c 1 -i 188 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.87053 -s 2 -d 3 -p cbr -e 210 -c 1 -i 206 -a 1 -x {1.0 5.0 189 ------- null} h -t 0.87053 -s 2 -d 3 -p cbr -e 210 -c 1 -i 206 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.8725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 224 -a 1 -x {1.0 5.0 206 ------- null} - -t 0.8725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 224 -a 1 -x {1.0 5.0 206 ------- null} h -t 0.8725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 224 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.87309 -s 3 -d 5 -p cbr -e 210 -c 1 -i 171 -a 1 -x {1.0 5.0 158 ------- null} r -t 0.87336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 209 -a 1 -x {1.0 5.0 192 ------- null} + -t 0.87336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 209 -a 1 -x {1.0 5.0 192 ------- null} r -t 0.87349 -s 2 -d 3 -p cbr -e 210 -c 1 -i 189 -a 1 -x {1.0 5.0 174 ------- null} + -t 0.87349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 189 -a 1 -x {1.0 5.0 174 ------- null} - -t 0.87349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 189 -a 1 -x {1.0 5.0 174 ------- null} h -t 0.87349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 189 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.87389 -s 2 -d 3 -p cbr -e 210 -c 1 -i 207 -a 1 -x {1.0 5.0 190 ------- null} h -t 0.87389 -s 2 -d 3 -p cbr -e 210 -c 1 -i 207 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.87421 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 205 -a 0 -x {0.0 4.0 8 ------- null} + -t 0.87421 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 205 -a 0 -x {0.0 4.0 8 ------- null} + -t 0.87625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 225 -a 1 -x {1.0 5.0 207 ------- null} - -t 0.87625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 225 -a 1 -x {1.0 5.0 207 ------- null} h -t 0.87625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 225 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.87645 -s 3 -d 5 -p cbr -e 210 -c 1 -i 172 -a 1 -x {1.0 5.0 159 ------- null} r -t 0.87685 -s 2 -d 3 -p cbr -e 210 -c 1 -i 190 -a 1 -x {1.0 5.0 175 ------- null} + -t 0.87685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 190 -a 1 -x {1.0 5.0 175 ------- null} - -t 0.87685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 190 -a 1 -x {1.0 5.0 175 ------- null} h -t 0.87685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 190 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.87711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 210 -a 1 -x {1.0 5.0 193 ------- null} + -t 0.87711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 210 -a 1 -x {1.0 5.0 193 ------- null} - -t 0.87725 -s 2 -d 3 -p cbr -e 210 -c 1 -i 208 -a 1 -x {1.0 5.0 191 ------- null} h -t 0.87725 -s 2 -d 3 -p cbr -e 210 -c 1 -i 208 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.87949 -s 3 -d 2 -p ack -e 40 -c 0 -i 196 -a 0 -x {4.0 0.0 7 ------- null} + -t 0.87949 -s 2 -d 0 -p ack -e 40 -c 0 -i 196 -a 0 -x {4.0 0.0 7 ------- null} - -t 0.87949 -s 2 -d 0 -p ack -e 40 -c 0 -i 196 -a 0 -x {4.0 0.0 7 ------- null} h -t 0.87949 -s 2 -d 0 -p ack -e 40 -c 0 -i 196 -a 0 -x {4.0 0.0 -1 ------- null} r -t 0.87981 -s 3 -d 5 -p cbr -e 210 -c 1 -i 174 -a 1 -x {1.0 5.0 160 ------- null} + -t 0.88 -s 1 -d 2 -p cbr -e 210 -c 1 -i 226 -a 1 -x {1.0 5.0 208 ------- null} - -t 0.88 -s 1 -d 2 -p cbr -e 210 -c 1 -i 226 -a 1 -x {1.0 5.0 208 ------- null} h -t 0.88 -s 1 -d 2 -p cbr -e 210 -c 1 -i 226 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.88021 -s 2 -d 3 -p cbr -e 210 -c 1 -i 191 -a 1 -x {1.0 5.0 176 ------- null} + -t 0.88021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 191 -a 1 -x {1.0 5.0 176 ------- null} - -t 0.88021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 191 -a 1 -x {1.0 5.0 176 ------- null} h -t 0.88021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 191 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.88061 -s 2 -d 3 -p cbr -e 210 -c 1 -i 209 -a 1 -x {1.0 5.0 192 ------- null} h -t 0.88061 -s 2 -d 3 -p cbr -e 210 -c 1 -i 209 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.88086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 211 -a 1 -x {1.0 5.0 194 ------- null} + -t 0.88086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 211 -a 1 -x {1.0 5.0 194 ------- null} r -t 0.88317 -s 3 -d 5 -p cbr -e 210 -c 1 -i 175 -a 1 -x {1.0 5.0 161 ------- null} r -t 0.88357 -s 2 -d 3 -p cbr -e 210 -c 1 -i 192 -a 1 -x {1.0 5.0 177 ------- null} + -t 0.88357 -s 3 -d 5 -p cbr -e 210 -c 1 -i 192 -a 1 -x {1.0 5.0 177 ------- null} - -t 0.88357 -s 3 -d 5 -p cbr -e 210 -c 1 -i 192 -a 1 -x {1.0 5.0 177 ------- null} h -t 0.88357 -s 3 -d 5 -p cbr -e 210 -c 1 -i 192 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.88375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 227 -a 1 -x {1.0 5.0 209 ------- null} - -t 0.88375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 227 -a 1 -x {1.0 5.0 209 ------- null} h -t 0.88375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 227 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.88397 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 205 -a 0 -x {0.0 4.0 8 ------- null} h -t 0.88397 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 205 -a 0 -x {0.0 4.0 -1 ------- null} r -t 0.88461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 212 -a 1 -x {1.0 5.0 195 ------- null} + -t 0.88461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 212 -a 1 -x {1.0 5.0 195 ------- null} r -t 0.88653 -s 3 -d 5 -p cbr -e 210 -c 1 -i 176 -a 1 -x {1.0 5.0 162 ------- null} r -t 0.88693 -s 2 -d 3 -p cbr -e 210 -c 1 -i 193 -a 1 -x {1.0 5.0 178 ------- null} + -t 0.88693 -s 3 -d 5 -p cbr -e 210 -c 1 -i 193 -a 1 -x {1.0 5.0 178 ------- null} - -t 0.88693 -s 3 -d 5 -p cbr -e 210 -c 1 -i 193 -a 1 -x {1.0 5.0 178 ------- null} h -t 0.88693 -s 3 -d 5 -p cbr -e 210 -c 1 -i 193 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.8875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 228 -a 1 -x {1.0 5.0 210 ------- null} - -t 0.8875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 228 -a 1 -x {1.0 5.0 210 ------- null} h -t 0.8875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 228 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.88836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 213 -a 1 -x {1.0 5.0 196 ------- null} + -t 0.88836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 213 -a 1 -x {1.0 5.0 196 ------- null} r -t 0.88989 -s 3 -d 5 -p cbr -e 210 -c 1 -i 177 -a 1 -x {1.0 5.0 163 ------- null} r -t 0.89029 -s 2 -d 3 -p cbr -e 210 -c 1 -i 194 -a 1 -x {1.0 5.0 179 ------- null} + -t 0.89029 -s 3 -d 5 -p cbr -e 210 -c 1 -i 194 -a 1 -x {1.0 5.0 179 ------- null} - -t 0.89029 -s 3 -d 5 -p cbr -e 210 -c 1 -i 194 -a 1 -x {1.0 5.0 179 ------- null} h -t 0.89029 -s 3 -d 5 -p cbr -e 210 -c 1 -i 194 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.89061 -s 2 -d 0 -p ack -e 40 -c 0 -i 185 -a 0 -x {4.0 0.0 6 ------- null} + -t 0.89061 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {0.0 4.0 10 ------- null} - -t 0.89061 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {0.0 4.0 10 ------- null} h -t 0.89061 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {0.0 4.0 -1 ------- null} + -t 0.89125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 230 -a 1 -x {1.0 5.0 211 ------- null} - -t 0.89125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 230 -a 1 -x {1.0 5.0 211 ------- null} h -t 0.89125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 230 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.89211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 214 -a 1 -x {1.0 5.0 197 ------- null} + -t 0.89211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 214 -a 1 -x {1.0 5.0 197 ------- null} r -t 0.89325 -s 3 -d 5 -p cbr -e 210 -c 1 -i 178 -a 1 -x {1.0 5.0 164 ------- null} r -t 0.89365 -s 2 -d 3 -p cbr -e 210 -c 1 -i 195 -a 1 -x {1.0 5.0 180 ------- null} + -t 0.89365 -s 3 -d 5 -p cbr -e 210 -c 1 -i 195 -a 1 -x {1.0 5.0 180 ------- null} - -t 0.89365 -s 3 -d 5 -p cbr -e 210 -c 1 -i 195 -a 1 -x {1.0 5.0 180 ------- null} h -t 0.89365 -s 3 -d 5 -p cbr -e 210 -c 1 -i 195 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.895 -s 1 -d 2 -p cbr -e 210 -c 1 -i 231 -a 1 -x {1.0 5.0 212 ------- null} - -t 0.895 -s 1 -d 2 -p cbr -e 210 -c 1 -i 231 -a 1 -x {1.0 5.0 212 ------- null} h -t 0.895 -s 1 -d 2 -p cbr -e 210 -c 1 -i 231 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.89586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 215 -a 1 -x {1.0 5.0 198 ------- null} + -t 0.89586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 215 -a 1 -x {1.0 5.0 198 ------- null} r -t 0.89661 -s 3 -d 5 -p cbr -e 210 -c 1 -i 179 -a 1 -x {1.0 5.0 165 ------- null} r -t 0.89701 -s 2 -d 3 -p cbr -e 210 -c 1 -i 197 -a 1 -x {1.0 5.0 181 ------- null} + -t 0.89701 -s 3 -d 5 -p cbr -e 210 -c 1 -i 197 -a 1 -x {1.0 5.0 181 ------- null} - -t 0.89701 -s 3 -d 5 -p cbr -e 210 -c 1 -i 197 -a 1 -x {1.0 5.0 181 ------- null} h -t 0.89701 -s 3 -d 5 -p cbr -e 210 -c 1 -i 197 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.89875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 232 -a 1 -x {1.0 5.0 213 ------- null} - -t 0.89875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 232 -a 1 -x {1.0 5.0 213 ------- null} h -t 0.89875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 232 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.89961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 216 -a 1 -x {1.0 5.0 199 ------- null} + -t 0.89961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 216 -a 1 -x {1.0 5.0 199 ------- null} r -t 0.89997 -s 3 -d 5 -p cbr -e 210 -c 1 -i 180 -a 1 -x {1.0 5.0 166 ------- null} - -t 0.89997 -s 2 -d 3 -p cbr -e 210 -c 1 -i 210 -a 1 -x {1.0 5.0 193 ------- null} h -t 0.89997 -s 2 -d 3 -p cbr -e 210 -c 1 -i 210 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.90037 -s 2 -d 3 -p cbr -e 210 -c 1 -i 198 -a 1 -x {1.0 5.0 182 ------- null} + -t 0.90037 -s 3 -d 5 -p cbr -e 210 -c 1 -i 198 -a 1 -x {1.0 5.0 182 ------- null} - -t 0.90037 -s 3 -d 5 -p cbr -e 210 -c 1 -i 198 -a 1 -x {1.0 5.0 182 ------- null} h -t 0.90037 -s 3 -d 5 -p cbr -e 210 -c 1 -i 198 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.9025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 233 -a 1 -x {1.0 5.0 214 ------- null} - -t 0.9025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 233 -a 1 -x {1.0 5.0 214 ------- null} h -t 0.9025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 233 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.90333 -s 3 -d 5 -p cbr -e 210 -c 1 -i 181 -a 1 -x {1.0 5.0 167 ------- null} - -t 0.90333 -s 2 -d 3 -p cbr -e 210 -c 1 -i 211 -a 1 -x {1.0 5.0 194 ------- null} h -t 0.90333 -s 2 -d 3 -p cbr -e 210 -c 1 -i 211 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.90336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 217 -a 1 -x {1.0 5.0 200 ------- null} + -t 0.90336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 217 -a 1 -x {1.0 5.0 200 ------- null} r -t 0.90373 -s 2 -d 3 -p cbr -e 210 -c 1 -i 199 -a 1 -x {1.0 5.0 183 ------- null} + -t 0.90373 -s 3 -d 5 -p cbr -e 210 -c 1 -i 199 -a 1 -x {1.0 5.0 183 ------- null} - -t 0.90373 -s 3 -d 5 -p cbr -e 210 -c 1 -i 199 -a 1 -x {1.0 5.0 183 ------- null} h -t 0.90373 -s 3 -d 5 -p cbr -e 210 -c 1 -i 199 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.90625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 234 -a 1 -x {1.0 5.0 215 ------- null} - -t 0.90625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 234 -a 1 -x {1.0 5.0 215 ------- null} h -t 0.90625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 234 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.90669 -s 3 -d 5 -p cbr -e 210 -c 1 -i 182 -a 1 -x {1.0 5.0 168 ------- null} - -t 0.90669 -s 2 -d 3 -p cbr -e 210 -c 1 -i 212 -a 1 -x {1.0 5.0 195 ------- null} h -t 0.90669 -s 2 -d 3 -p cbr -e 210 -c 1 -i 212 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.90709 -s 2 -d 3 -p cbr -e 210 -c 1 -i 200 -a 1 -x {1.0 5.0 184 ------- null} + -t 0.90709 -s 3 -d 5 -p cbr -e 210 -c 1 -i 200 -a 1 -x {1.0 5.0 184 ------- null} - -t 0.90709 -s 3 -d 5 -p cbr -e 210 -c 1 -i 200 -a 1 -x {1.0 5.0 184 ------- null} h -t 0.90709 -s 3 -d 5 -p cbr -e 210 -c 1 -i 200 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.90711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 219 -a 1 -x {1.0 5.0 201 ------- null} + -t 0.90711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 219 -a 1 -x {1.0 5.0 201 ------- null} + -t 0.91 -s 1 -d 2 -p cbr -e 210 -c 1 -i 235 -a 1 -x {1.0 5.0 216 ------- null} - -t 0.91 -s 1 -d 2 -p cbr -e 210 -c 1 -i 235 -a 1 -x {1.0 5.0 216 ------- null} h -t 0.91 -s 1 -d 2 -p cbr -e 210 -c 1 -i 235 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.91005 -s 3 -d 5 -p cbr -e 210 -c 1 -i 183 -a 1 -x {1.0 5.0 169 ------- null} - -t 0.91005 -s 2 -d 3 -p cbr -e 210 -c 1 -i 213 -a 1 -x {1.0 5.0 196 ------- null} h -t 0.91005 -s 2 -d 3 -p cbr -e 210 -c 1 -i 213 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.91045 -s 2 -d 3 -p cbr -e 210 -c 1 -i 201 -a 1 -x {1.0 5.0 185 ------- null} + -t 0.91045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 201 -a 1 -x {1.0 5.0 185 ------- null} - -t 0.91045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 201 -a 1 -x {1.0 5.0 185 ------- null} h -t 0.91045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 201 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.91086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 220 -a 1 -x {1.0 5.0 202 ------- null} + -t 0.91086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 220 -a 1 -x {1.0 5.0 202 ------- null} r -t 0.91341 -s 3 -d 5 -p cbr -e 210 -c 1 -i 184 -a 1 -x {1.0 5.0 170 ------- null} - -t 0.91341 -s 2 -d 3 -p cbr -e 210 -c 1 -i 214 -a 1 -x {1.0 5.0 197 ------- null} h -t 0.91341 -s 2 -d 3 -p cbr -e 210 -c 1 -i 214 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.91375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 236 -a 1 -x {1.0 5.0 217 ------- null} - -t 0.91375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 236 -a 1 -x {1.0 5.0 217 ------- null} h -t 0.91375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 236 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.91381 -s 2 -d 3 -p cbr -e 210 -c 1 -i 202 -a 1 -x {1.0 5.0 186 ------- null} + -t 0.91381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 202 -a 1 -x {1.0 5.0 186 ------- null} - -t 0.91381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 202 -a 1 -x {1.0 5.0 186 ------- null} h -t 0.91381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 202 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.91461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 221 -a 1 -x {1.0 5.0 203 ------- null} + -t 0.91461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 221 -a 1 -x {1.0 5.0 203 ------- null} r -t 0.91677 -s 3 -d 5 -p cbr -e 210 -c 1 -i 186 -a 1 -x {1.0 5.0 171 ------- null} - -t 0.91677 -s 2 -d 3 -p cbr -e 210 -c 1 -i 215 -a 1 -x {1.0 5.0 198 ------- null} h -t 0.91677 -s 2 -d 3 -p cbr -e 210 -c 1 -i 215 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.91709 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 218 -a 0 -x {0.0 4.0 9 ------- null} + -t 0.91709 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 218 -a 0 -x {0.0 4.0 9 ------- null} r -t 0.91717 -s 2 -d 3 -p cbr -e 210 -c 1 -i 203 -a 1 -x {1.0 5.0 187 ------- null} + -t 0.91717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 203 -a 1 -x {1.0 5.0 187 ------- null} - -t 0.91717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 203 -a 1 -x {1.0 5.0 187 ------- null} h -t 0.91717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 203 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.9175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 237 -a 1 -x {1.0 5.0 218 ------- null} - -t 0.9175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 237 -a 1 -x {1.0 5.0 218 ------- null} h -t 0.9175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 237 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.91836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 222 -a 1 -x {1.0 5.0 204 ------- null} + -t 0.91836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 222 -a 1 -x {1.0 5.0 204 ------- null} r -t 0.92013 -s 3 -d 5 -p cbr -e 210 -c 1 -i 187 -a 1 -x {1.0 5.0 172 ------- null} - -t 0.92013 -s 2 -d 3 -p cbr -e 210 -c 1 -i 216 -a 1 -x {1.0 5.0 199 ------- null} h -t 0.92013 -s 2 -d 3 -p cbr -e 210 -c 1 -i 216 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.92053 -s 2 -d 3 -p cbr -e 210 -c 1 -i 204 -a 1 -x {1.0 5.0 188 ------- null} + -t 0.92053 -s 3 -d 5 -p cbr -e 210 -c 1 -i 204 -a 1 -x {1.0 5.0 188 ------- null} - -t 0.92053 -s 3 -d 5 -p cbr -e 210 -c 1 -i 204 -a 1 -x {1.0 5.0 188 ------- null} h -t 0.92053 -s 3 -d 5 -p cbr -e 210 -c 1 -i 204 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.92125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 238 -a 1 -x {1.0 5.0 219 ------- null} - -t 0.92125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 238 -a 1 -x {1.0 5.0 219 ------- null} h -t 0.92125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 238 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.92211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 223 -a 1 -x {1.0 5.0 205 ------- null} + -t 0.92211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 223 -a 1 -x {1.0 5.0 205 ------- null} r -t 0.92349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 188 -a 1 -x {1.0 5.0 173 ------- null} - -t 0.92349 -s 2 -d 3 -p cbr -e 210 -c 1 -i 217 -a 1 -x {1.0 5.0 200 ------- null} h -t 0.92349 -s 2 -d 3 -p cbr -e 210 -c 1 -i 217 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.92389 -s 2 -d 3 -p cbr -e 210 -c 1 -i 206 -a 1 -x {1.0 5.0 189 ------- null} + -t 0.92389 -s 3 -d 5 -p cbr -e 210 -c 1 -i 206 -a 1 -x {1.0 5.0 189 ------- null} - -t 0.92389 -s 3 -d 5 -p cbr -e 210 -c 1 -i 206 -a 1 -x {1.0 5.0 189 ------- null} h -t 0.92389 -s 3 -d 5 -p cbr -e 210 -c 1 -i 206 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 239 -a 1 -x {1.0 5.0 220 ------- null} - -t 0.925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 239 -a 1 -x {1.0 5.0 220 ------- null} h -t 0.925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 239 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.92586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 224 -a 1 -x {1.0 5.0 206 ------- null} + -t 0.92586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 224 -a 1 -x {1.0 5.0 206 ------- null} r -t 0.92685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 189 -a 1 -x {1.0 5.0 174 ------- null} - -t 0.92685 -s 2 -d 3 -p cbr -e 210 -c 1 -i 219 -a 1 -x {1.0 5.0 201 ------- null} h -t 0.92685 -s 2 -d 3 -p cbr -e 210 -c 1 -i 219 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.92725 -s 2 -d 3 -p cbr -e 210 -c 1 -i 207 -a 1 -x {1.0 5.0 190 ------- null} + -t 0.92725 -s 3 -d 5 -p cbr -e 210 -c 1 -i 207 -a 1 -x {1.0 5.0 190 ------- null} - -t 0.92725 -s 3 -d 5 -p cbr -e 210 -c 1 -i 207 -a 1 -x {1.0 5.0 190 ------- null} h -t 0.92725 -s 3 -d 5 -p cbr -e 210 -c 1 -i 207 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.92875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 240 -a 1 -x {1.0 5.0 221 ------- null} - -t 0.92875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 240 -a 1 -x {1.0 5.0 221 ------- null} h -t 0.92875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 240 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.92961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 225 -a 1 -x {1.0 5.0 207 ------- null} + -t 0.92961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 225 -a 1 -x {1.0 5.0 207 ------- null} r -t 0.93013 -s 2 -d 0 -p ack -e 40 -c 0 -i 196 -a 0 -x {4.0 0.0 7 ------- null} + -t 0.93013 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {0.0 4.0 11 ------- null} - -t 0.93013 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {0.0 4.0 11 ------- null} h -t 0.93013 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {0.0 4.0 -1 ------- null} r -t 0.93021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 190 -a 1 -x {1.0 5.0 175 ------- null} - -t 0.93021 -s 2 -d 3 -p cbr -e 210 -c 1 -i 220 -a 1 -x {1.0 5.0 202 ------- null} h -t 0.93021 -s 2 -d 3 -p cbr -e 210 -c 1 -i 220 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.93061 -s 2 -d 3 -p cbr -e 210 -c 1 -i 208 -a 1 -x {1.0 5.0 191 ------- null} + -t 0.93061 -s 3 -d 5 -p cbr -e 210 -c 1 -i 208 -a 1 -x {1.0 5.0 191 ------- null} - -t 0.93061 -s 3 -d 5 -p cbr -e 210 -c 1 -i 208 -a 1 -x {1.0 5.0 191 ------- null} h -t 0.93061 -s 3 -d 5 -p cbr -e 210 -c 1 -i 208 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.9325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 242 -a 1 -x {1.0 5.0 222 ------- null} - -t 0.9325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 242 -a 1 -x {1.0 5.0 222 ------- null} h -t 0.9325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 242 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.93336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 226 -a 1 -x {1.0 5.0 208 ------- null} + -t 0.93336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 226 -a 1 -x {1.0 5.0 208 ------- null} r -t 0.93357 -s 3 -d 5 -p cbr -e 210 -c 1 -i 191 -a 1 -x {1.0 5.0 176 ------- null} - -t 0.93357 -s 2 -d 3 -p cbr -e 210 -c 1 -i 221 -a 1 -x {1.0 5.0 203 ------- null} h -t 0.93357 -s 2 -d 3 -p cbr -e 210 -c 1 -i 221 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.93397 -s 2 -d 3 -p cbr -e 210 -c 1 -i 209 -a 1 -x {1.0 5.0 192 ------- null} + -t 0.93397 -s 3 -d 5 -p cbr -e 210 -c 1 -i 209 -a 1 -x {1.0 5.0 192 ------- null} - -t 0.93397 -s 3 -d 5 -p cbr -e 210 -c 1 -i 209 -a 1 -x {1.0 5.0 192 ------- null} h -t 0.93397 -s 3 -d 5 -p cbr -e 210 -c 1 -i 209 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.93625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 243 -a 1 -x {1.0 5.0 223 ------- null} - -t 0.93625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 243 -a 1 -x {1.0 5.0 223 ------- null} h -t 0.93625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 243 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.93693 -s 3 -d 5 -p cbr -e 210 -c 1 -i 192 -a 1 -x {1.0 5.0 177 ------- null} - -t 0.93693 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 218 -a 0 -x {0.0 4.0 9 ------- null} h -t 0.93693 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 218 -a 0 -x {0.0 4.0 -1 ------- null} r -t 0.93711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 227 -a 1 -x {1.0 5.0 209 ------- null} + -t 0.93711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 227 -a 1 -x {1.0 5.0 209 ------- null} + -t 0.94 -s 1 -d 2 -p cbr -e 210 -c 1 -i 244 -a 1 -x {1.0 5.0 224 ------- null} - -t 0.94 -s 1 -d 2 -p cbr -e 210 -c 1 -i 244 -a 1 -x {1.0 5.0 224 ------- null} h -t 0.94 -s 1 -d 2 -p cbr -e 210 -c 1 -i 244 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.94029 -s 3 -d 5 -p cbr -e 210 -c 1 -i 193 -a 1 -x {1.0 5.0 178 ------- null} r -t 0.94086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 228 -a 1 -x {1.0 5.0 210 ------- null} + -t 0.94086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 228 -a 1 -x {1.0 5.0 210 ------- null} r -t 0.94365 -s 3 -d 5 -p cbr -e 210 -c 1 -i 194 -a 1 -x {1.0 5.0 179 ------- null} + -t 0.94375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 245 -a 1 -x {1.0 5.0 225 ------- null} - -t 0.94375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 245 -a 1 -x {1.0 5.0 225 ------- null} h -t 0.94375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 245 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.94461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 230 -a 1 -x {1.0 5.0 211 ------- null} + -t 0.94461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 230 -a 1 -x {1.0 5.0 211 ------- null} r -t 0.94701 -s 3 -d 5 -p cbr -e 210 -c 1 -i 195 -a 1 -x {1.0 5.0 180 ------- null} + -t 0.9475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 246 -a 1 -x {1.0 5.0 226 ------- null} - -t 0.9475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 246 -a 1 -x {1.0 5.0 226 ------- null} h -t 0.9475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 246 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.94836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 231 -a 1 -x {1.0 5.0 212 ------- null} + -t 0.94836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 231 -a 1 -x {1.0 5.0 212 ------- null} r -t 0.94997 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 205 -a 0 -x {0.0 4.0 8 ------- null} + -t 0.94997 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 205 -a 0 -x {0.0 4.0 8 ------- null} - -t 0.94997 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 205 -a 0 -x {0.0 4.0 8 ------- null} h -t 0.94997 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 205 -a 0 -x {0.0 4.0 -1 ------- null} r -t 0.95037 -s 3 -d 5 -p cbr -e 210 -c 1 -i 197 -a 1 -x {1.0 5.0 181 ------- null} + -t 0.95125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 247 -a 1 -x {1.0 5.0 227 ------- null} - -t 0.95125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 247 -a 1 -x {1.0 5.0 227 ------- null} h -t 0.95125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 247 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.95211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 232 -a 1 -x {1.0 5.0 213 ------- null} + -t 0.95211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 232 -a 1 -x {1.0 5.0 213 ------- null} d -t 0.95211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 232 -a 1 -x {1.0 5.0 213 ------- null} - -t 0.95293 -s 2 -d 3 -p cbr -e 210 -c 1 -i 222 -a 1 -x {1.0 5.0 204 ------- null} h -t 0.95293 -s 2 -d 3 -p cbr -e 210 -c 1 -i 222 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.95333 -s 2 -d 3 -p cbr -e 210 -c 1 -i 210 -a 1 -x {1.0 5.0 193 ------- null} + -t 0.95333 -s 3 -d 5 -p cbr -e 210 -c 1 -i 210 -a 1 -x {1.0 5.0 193 ------- null} - -t 0.95333 -s 3 -d 5 -p cbr -e 210 -c 1 -i 210 -a 1 -x {1.0 5.0 193 ------- null} h -t 0.95333 -s 3 -d 5 -p cbr -e 210 -c 1 -i 210 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.95373 -s 3 -d 5 -p cbr -e 210 -c 1 -i 198 -a 1 -x {1.0 5.0 182 ------- null} + -t 0.955 -s 1 -d 2 -p cbr -e 210 -c 1 -i 248 -a 1 -x {1.0 5.0 228 ------- null} - -t 0.955 -s 1 -d 2 -p cbr -e 210 -c 1 -i 248 -a 1 -x {1.0 5.0 228 ------- null} h -t 0.955 -s 1 -d 2 -p cbr -e 210 -c 1 -i 248 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.95586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 233 -a 1 -x {1.0 5.0 214 ------- null} + -t 0.95586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 233 -a 1 -x {1.0 5.0 214 ------- null} - -t 0.95629 -s 2 -d 3 -p cbr -e 210 -c 1 -i 223 -a 1 -x {1.0 5.0 205 ------- null} h -t 0.95629 -s 2 -d 3 -p cbr -e 210 -c 1 -i 223 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.95661 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {0.0 4.0 10 ------- null} + -t 0.95661 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {0.0 4.0 10 ------- null} r -t 0.95669 -s 2 -d 3 -p cbr -e 210 -c 1 -i 211 -a 1 -x {1.0 5.0 194 ------- null} + -t 0.95669 -s 3 -d 5 -p cbr -e 210 -c 1 -i 211 -a 1 -x {1.0 5.0 194 ------- null} - -t 0.95669 -s 3 -d 5 -p cbr -e 210 -c 1 -i 211 -a 1 -x {1.0 5.0 194 ------- null} h -t 0.95669 -s 3 -d 5 -p cbr -e 210 -c 1 -i 211 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.95709 -s 3 -d 5 -p cbr -e 210 -c 1 -i 199 -a 1 -x {1.0 5.0 183 ------- null} + -t 0.95875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 249 -a 1 -x {1.0 5.0 229 ------- null} - -t 0.95875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 249 -a 1 -x {1.0 5.0 229 ------- null} h -t 0.95875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 249 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.95961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 234 -a 1 -x {1.0 5.0 215 ------- null} + -t 0.95961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 234 -a 1 -x {1.0 5.0 215 ------- null} d -t 0.95961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 234 -a 1 -x {1.0 5.0 215 ------- null} - -t 0.95965 -s 2 -d 3 -p cbr -e 210 -c 1 -i 224 -a 1 -x {1.0 5.0 206 ------- null} h -t 0.95965 -s 2 -d 3 -p cbr -e 210 -c 1 -i 224 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.96005 -s 2 -d 3 -p cbr -e 210 -c 1 -i 212 -a 1 -x {1.0 5.0 195 ------- null} + -t 0.96005 -s 3 -d 5 -p cbr -e 210 -c 1 -i 212 -a 1 -x {1.0 5.0 195 ------- null} - -t 0.96005 -s 3 -d 5 -p cbr -e 210 -c 1 -i 212 -a 1 -x {1.0 5.0 195 ------- null} h -t 0.96005 -s 3 -d 5 -p cbr -e 210 -c 1 -i 212 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.96045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 200 -a 1 -x {1.0 5.0 184 ------- null} + -t 0.9625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 250 -a 1 -x {1.0 5.0 230 ------- null} - -t 0.9625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 250 -a 1 -x {1.0 5.0 230 ------- null} h -t 0.9625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 250 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.96301 -s 2 -d 3 -p cbr -e 210 -c 1 -i 225 -a 1 -x {1.0 5.0 207 ------- null} h -t 0.96301 -s 2 -d 3 -p cbr -e 210 -c 1 -i 225 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.96336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 235 -a 1 -x {1.0 5.0 216 ------- null} + -t 0.96336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 235 -a 1 -x {1.0 5.0 216 ------- null} r -t 0.96341 -s 2 -d 3 -p cbr -e 210 -c 1 -i 213 -a 1 -x {1.0 5.0 196 ------- null} + -t 0.96341 -s 3 -d 5 -p cbr -e 210 -c 1 -i 213 -a 1 -x {1.0 5.0 196 ------- null} - -t 0.96341 -s 3 -d 5 -p cbr -e 210 -c 1 -i 213 -a 1 -x {1.0 5.0 196 ------- null} h -t 0.96341 -s 3 -d 5 -p cbr -e 210 -c 1 -i 213 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.96381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 201 -a 1 -x {1.0 5.0 185 ------- null} + -t 0.96625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 251 -a 1 -x {1.0 5.0 231 ------- null} - -t 0.96625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 251 -a 1 -x {1.0 5.0 231 ------- null} h -t 0.96625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 251 -a 1 -x {1.0 5.0 -1 ------- null} - -t 0.96637 -s 2 -d 3 -p cbr -e 210 -c 1 -i 226 -a 1 -x {1.0 5.0 208 ------- null} h -t 0.96637 -s 2 -d 3 -p cbr -e 210 -c 1 -i 226 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.96677 -s 2 -d 3 -p cbr -e 210 -c 1 -i 214 -a 1 -x {1.0 5.0 197 ------- null} + -t 0.96677 -s 3 -d 5 -p cbr -e 210 -c 1 -i 214 -a 1 -x {1.0 5.0 197 ------- null} - -t 0.96677 -s 3 -d 5 -p cbr -e 210 -c 1 -i 214 -a 1 -x {1.0 5.0 197 ------- null} h -t 0.96677 -s 3 -d 5 -p cbr -e 210 -c 1 -i 214 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.96711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 236 -a 1 -x {1.0 5.0 217 ------- null} + -t 0.96711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 236 -a 1 -x {1.0 5.0 217 ------- null} r -t 0.96717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 202 -a 1 -x {1.0 5.0 186 ------- null} - -t 0.96973 -s 2 -d 3 -p cbr -e 210 -c 1 -i 227 -a 1 -x {1.0 5.0 209 ------- null} h -t 0.96973 -s 2 -d 3 -p cbr -e 210 -c 1 -i 227 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.97 -s 1 -d 2 -p cbr -e 210 -c 1 -i 252 -a 1 -x {1.0 5.0 232 ------- null} - -t 0.97 -s 1 -d 2 -p cbr -e 210 -c 1 -i 252 -a 1 -x {1.0 5.0 232 ------- null} h -t 0.97 -s 1 -d 2 -p cbr -e 210 -c 1 -i 252 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.97013 -s 2 -d 3 -p cbr -e 210 -c 1 -i 215 -a 1 -x {1.0 5.0 198 ------- null} + -t 0.97013 -s 3 -d 5 -p cbr -e 210 -c 1 -i 215 -a 1 -x {1.0 5.0 198 ------- null} - -t 0.97013 -s 3 -d 5 -p cbr -e 210 -c 1 -i 215 -a 1 -x {1.0 5.0 198 ------- null} h -t 0.97013 -s 3 -d 5 -p cbr -e 210 -c 1 -i 215 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.97053 -s 3 -d 5 -p cbr -e 210 -c 1 -i 203 -a 1 -x {1.0 5.0 187 ------- null} r -t 0.97086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 237 -a 1 -x {1.0 5.0 218 ------- null} + -t 0.97086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 237 -a 1 -x {1.0 5.0 218 ------- null} - -t 0.97309 -s 2 -d 3 -p cbr -e 210 -c 1 -i 228 -a 1 -x {1.0 5.0 210 ------- null} h -t 0.97309 -s 2 -d 3 -p cbr -e 210 -c 1 -i 228 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.97349 -s 2 -d 3 -p cbr -e 210 -c 1 -i 216 -a 1 -x {1.0 5.0 199 ------- null} + -t 0.97349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 216 -a 1 -x {1.0 5.0 199 ------- null} - -t 0.97349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 216 -a 1 -x {1.0 5.0 199 ------- null} h -t 0.97349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 216 -a 1 -x {1.0 5.0 -1 ------- null} + -t 0.97375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 253 -a 1 -x {1.0 5.0 233 ------- null} - -t 0.97375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 253 -a 1 -x {1.0 5.0 233 ------- null} h -t 0.97375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 253 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.97389 -s 3 -d 5 -p cbr -e 210 -c 1 -i 204 -a 1 -x {1.0 5.0 188 ------- null} r -t 0.97461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 238 -a 1 -x {1.0 5.0 219 ------- null} + -t 0.97461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 238 -a 1 -x {1.0 5.0 219 ------- null} - -t 0.97645 -s 2 -d 3 -p cbr -e 210 -c 1 -i 230 -a 1 -x {1.0 5.0 211 ------- null} h -t 0.97645 -s 2 -d 3 -p cbr -e 210 -c 1 -i 230 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.97685 -s 2 -d 3 -p cbr -e 210 -c 1 -i 217 -a 1 -x {1.0 5.0 200 ------- null} + -t 0.97685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 217 -a 1 -x {1.0 5.0 200 ------- null} - -t 0.97685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 217 -a 1 -x {1.0 5.0 200 ------- null} h -t 0.97685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 217 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.97725 -s 3 -d 5 -p cbr -e 210 -c 1 -i 206 -a 1 -x {1.0 5.0 189 ------- null} + -t 0.9775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 254 -a 1 -x {1.0 5.0 234 ------- null} - -t 0.9775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 254 -a 1 -x {1.0 5.0 234 ------- null} h -t 0.9775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 254 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.97836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 239 -a 1 -x {1.0 5.0 220 ------- null} + -t 0.97836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 239 -a 1 -x {1.0 5.0 220 ------- null} - -t 0.97981 -s 2 -d 3 -p cbr -e 210 -c 1 -i 231 -a 1 -x {1.0 5.0 212 ------- null} h -t 0.97981 -s 2 -d 3 -p cbr -e 210 -c 1 -i 231 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.98021 -s 2 -d 3 -p cbr -e 210 -c 1 -i 219 -a 1 -x {1.0 5.0 201 ------- null} + -t 0.98021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 219 -a 1 -x {1.0 5.0 201 ------- null} - -t 0.98021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 219 -a 1 -x {1.0 5.0 201 ------- null} h -t 0.98021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 219 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.98061 -s 3 -d 5 -p cbr -e 210 -c 1 -i 207 -a 1 -x {1.0 5.0 190 ------- null} + -t 0.98125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 255 -a 1 -x {1.0 5.0 235 ------- null} - -t 0.98125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 255 -a 1 -x {1.0 5.0 235 ------- null} h -t 0.98125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 255 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.98211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 240 -a 1 -x {1.0 5.0 221 ------- null} + -t 0.98211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 240 -a 1 -x {1.0 5.0 221 ------- null} - -t 0.98317 -s 2 -d 3 -p cbr -e 210 -c 1 -i 233 -a 1 -x {1.0 5.0 214 ------- null} h -t 0.98317 -s 2 -d 3 -p cbr -e 210 -c 1 -i 233 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.98357 -s 2 -d 3 -p cbr -e 210 -c 1 -i 220 -a 1 -x {1.0 5.0 202 ------- null} + -t 0.98357 -s 3 -d 5 -p cbr -e 210 -c 1 -i 220 -a 1 -x {1.0 5.0 202 ------- null} - -t 0.98357 -s 3 -d 5 -p cbr -e 210 -c 1 -i 220 -a 1 -x {1.0 5.0 202 ------- null} h -t 0.98357 -s 3 -d 5 -p cbr -e 210 -c 1 -i 220 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.98397 -s 3 -d 5 -p cbr -e 210 -c 1 -i 208 -a 1 -x {1.0 5.0 191 ------- null} + -t 0.985 -s 1 -d 2 -p cbr -e 210 -c 1 -i 256 -a 1 -x {1.0 5.0 236 ------- null} - -t 0.985 -s 1 -d 2 -p cbr -e 210 -c 1 -i 256 -a 1 -x {1.0 5.0 236 ------- null} h -t 0.985 -s 1 -d 2 -p cbr -e 210 -c 1 -i 256 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.98586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 242 -a 1 -x {1.0 5.0 222 ------- null} + -t 0.98586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 242 -a 1 -x {1.0 5.0 222 ------- null} - -t 0.98653 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {0.0 4.0 10 ------- null} h -t 0.98653 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {0.0 4.0 -1 ------- null} r -t 0.98693 -s 2 -d 3 -p cbr -e 210 -c 1 -i 221 -a 1 -x {1.0 5.0 203 ------- null} + -t 0.98693 -s 3 -d 5 -p cbr -e 210 -c 1 -i 221 -a 1 -x {1.0 5.0 203 ------- null} - -t 0.98693 -s 3 -d 5 -p cbr -e 210 -c 1 -i 221 -a 1 -x {1.0 5.0 203 ------- null} h -t 0.98693 -s 3 -d 5 -p cbr -e 210 -c 1 -i 221 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.98733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 209 -a 1 -x {1.0 5.0 192 ------- null} + -t 0.98875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 257 -a 1 -x {1.0 5.0 237 ------- null} - -t 0.98875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 257 -a 1 -x {1.0 5.0 237 ------- null} h -t 0.98875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 257 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.98961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 243 -a 1 -x {1.0 5.0 223 ------- null} + -t 0.98961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 243 -a 1 -x {1.0 5.0 223 ------- null} + -t 0.9925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 258 -a 1 -x {1.0 5.0 238 ------- null} - -t 0.9925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 258 -a 1 -x {1.0 5.0 238 ------- null} h -t 0.9925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 258 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.99336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 244 -a 1 -x {1.0 5.0 224 ------- null} + -t 0.99336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 244 -a 1 -x {1.0 5.0 224 ------- null} r -t 0.99613 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {0.0 4.0 11 ------- null} + -t 0.99613 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {0.0 4.0 11 ------- null} d -t 0.99613 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {0.0 4.0 11 ------- null} + -t 0.99625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 259 -a 1 -x {1.0 5.0 239 ------- null} - -t 0.99625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 259 -a 1 -x {1.0 5.0 239 ------- null} h -t 0.99625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 259 -a 1 -x {1.0 5.0 -1 ------- null} r -t 0.99711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 245 -a 1 -x {1.0 5.0 225 ------- null} + -t 0.99711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 245 -a 1 -x {1.0 5.0 225 ------- null} d -t 0.99711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 245 -a 1 -x {1.0 5.0 225 ------- null} + -t 1 -s 1 -d 2 -p cbr -e 210 -c 1 -i 260 -a 1 -x {1.0 5.0 240 ------- null} - -t 1 -s 1 -d 2 -p cbr -e 210 -c 1 -i 260 -a 1 -x {1.0 5.0 240 ------- null} h -t 1 -s 1 -d 2 -p cbr -e 210 -c 1 -i 260 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.00086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 246 -a 1 -x {1.0 5.0 226 ------- null} + -t 1.00086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 246 -a 1 -x {1.0 5.0 226 ------- null} d -t 1.00086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 246 -a 1 -x {1.0 5.0 226 ------- null} - -t 1.00253 -s 2 -d 3 -p cbr -e 210 -c 1 -i 235 -a 1 -x {1.0 5.0 216 ------- null} h -t 1.00253 -s 2 -d 3 -p cbr -e 210 -c 1 -i 235 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.00293 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 218 -a 0 -x {0.0 4.0 9 ------- null} + -t 1.00293 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 218 -a 0 -x {0.0 4.0 9 ------- null} - -t 1.00293 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 218 -a 0 -x {0.0 4.0 9 ------- null} h -t 1.00293 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 218 -a 0 -x {0.0 4.0 -1 ------- null} + -t 1.00375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 261 -a 1 -x {1.0 5.0 241 ------- null} - -t 1.00375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 261 -a 1 -x {1.0 5.0 241 ------- null} h -t 1.00375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 261 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.00461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 247 -a 1 -x {1.0 5.0 227 ------- null} + -t 1.00461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 247 -a 1 -x {1.0 5.0 227 ------- null} - -t 1.00589 -s 2 -d 3 -p cbr -e 210 -c 1 -i 236 -a 1 -x {1.0 5.0 217 ------- null} h -t 1.00589 -s 2 -d 3 -p cbr -e 210 -c 1 -i 236 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.00629 -s 2 -d 3 -p cbr -e 210 -c 1 -i 222 -a 1 -x {1.0 5.0 204 ------- null} + -t 1.00629 -s 3 -d 5 -p cbr -e 210 -c 1 -i 222 -a 1 -x {1.0 5.0 204 ------- null} - -t 1.00629 -s 3 -d 5 -p cbr -e 210 -c 1 -i 222 -a 1 -x {1.0 5.0 204 ------- null} h -t 1.00629 -s 3 -d 5 -p cbr -e 210 -c 1 -i 222 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.00669 -s 3 -d 5 -p cbr -e 210 -c 1 -i 210 -a 1 -x {1.0 5.0 193 ------- null} + -t 1.0075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 262 -a 1 -x {1.0 5.0 242 ------- null} - -t 1.0075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 262 -a 1 -x {1.0 5.0 242 ------- null} h -t 1.0075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 262 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.00836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 248 -a 1 -x {1.0 5.0 228 ------- null} + -t 1.00836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 248 -a 1 -x {1.0 5.0 228 ------- null} - -t 1.00925 -s 2 -d 3 -p cbr -e 210 -c 1 -i 237 -a 1 -x {1.0 5.0 218 ------- null} h -t 1.00925 -s 2 -d 3 -p cbr -e 210 -c 1 -i 237 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.00965 -s 2 -d 3 -p cbr -e 210 -c 1 -i 223 -a 1 -x {1.0 5.0 205 ------- null} + -t 1.00965 -s 3 -d 5 -p cbr -e 210 -c 1 -i 223 -a 1 -x {1.0 5.0 205 ------- null} - -t 1.00965 -s 3 -d 5 -p cbr -e 210 -c 1 -i 223 -a 1 -x {1.0 5.0 205 ------- null} h -t 1.00965 -s 3 -d 5 -p cbr -e 210 -c 1 -i 223 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.01005 -s 3 -d 5 -p cbr -e 210 -c 1 -i 211 -a 1 -x {1.0 5.0 194 ------- null} + -t 1.01125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 263 -a 1 -x {1.0 5.0 243 ------- null} - -t 1.01125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 263 -a 1 -x {1.0 5.0 243 ------- null} h -t 1.01125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 263 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.01211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 249 -a 1 -x {1.0 5.0 229 ------- null} + -t 1.01211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 249 -a 1 -x {1.0 5.0 229 ------- null} - -t 1.01261 -s 2 -d 3 -p cbr -e 210 -c 1 -i 238 -a 1 -x {1.0 5.0 219 ------- null} h -t 1.01261 -s 2 -d 3 -p cbr -e 210 -c 1 -i 238 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.01301 -s 2 -d 3 -p cbr -e 210 -c 1 -i 224 -a 1 -x {1.0 5.0 206 ------- null} + -t 1.01301 -s 3 -d 5 -p cbr -e 210 -c 1 -i 224 -a 1 -x {1.0 5.0 206 ------- null} - -t 1.01301 -s 3 -d 5 -p cbr -e 210 -c 1 -i 224 -a 1 -x {1.0 5.0 206 ------- null} h -t 1.01301 -s 3 -d 5 -p cbr -e 210 -c 1 -i 224 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.01341 -s 3 -d 5 -p cbr -e 210 -c 1 -i 212 -a 1 -x {1.0 5.0 195 ------- null} + -t 1.015 -s 1 -d 2 -p cbr -e 210 -c 1 -i 264 -a 1 -x {1.0 5.0 244 ------- null} - -t 1.015 -s 1 -d 2 -p cbr -e 210 -c 1 -i 264 -a 1 -x {1.0 5.0 244 ------- null} h -t 1.015 -s 1 -d 2 -p cbr -e 210 -c 1 -i 264 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.01586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 250 -a 1 -x {1.0 5.0 230 ------- null} + -t 1.01586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 250 -a 1 -x {1.0 5.0 230 ------- null} r -t 1.01597 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 205 -a 0 -x {0.0 4.0 8 ------- null} + -t 1.01597 -s 4 -d 3 -p ack -e 40 -c 0 -i 265 -a 0 -x {4.0 0.0 8 ------- null} - -t 1.01597 -s 4 -d 3 -p ack -e 40 -c 0 -i 265 -a 0 -x {4.0 0.0 8 ------- null} h -t 1.01597 -s 4 -d 3 -p ack -e 40 -c 0 -i 265 -a 0 -x {4.0 0.0 -1 ------- null} - -t 1.01597 -s 2 -d 3 -p cbr -e 210 -c 1 -i 239 -a 1 -x {1.0 5.0 220 ------- null} h -t 1.01597 -s 2 -d 3 -p cbr -e 210 -c 1 -i 239 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.01637 -s 2 -d 3 -p cbr -e 210 -c 1 -i 225 -a 1 -x {1.0 5.0 207 ------- null} + -t 1.01637 -s 3 -d 5 -p cbr -e 210 -c 1 -i 225 -a 1 -x {1.0 5.0 207 ------- null} - -t 1.01637 -s 3 -d 5 -p cbr -e 210 -c 1 -i 225 -a 1 -x {1.0 5.0 207 ------- null} h -t 1.01637 -s 3 -d 5 -p cbr -e 210 -c 1 -i 225 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.01677 -s 3 -d 5 -p cbr -e 210 -c 1 -i 213 -a 1 -x {1.0 5.0 196 ------- null} + -t 1.01875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 266 -a 1 -x {1.0 5.0 245 ------- null} - -t 1.01875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 266 -a 1 -x {1.0 5.0 245 ------- null} h -t 1.01875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 266 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.01933 -s 2 -d 3 -p cbr -e 210 -c 1 -i 240 -a 1 -x {1.0 5.0 221 ------- null} h -t 1.01933 -s 2 -d 3 -p cbr -e 210 -c 1 -i 240 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.01961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 251 -a 1 -x {1.0 5.0 231 ------- null} + -t 1.01961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 251 -a 1 -x {1.0 5.0 231 ------- null} r -t 1.01973 -s 2 -d 3 -p cbr -e 210 -c 1 -i 226 -a 1 -x {1.0 5.0 208 ------- null} + -t 1.01973 -s 3 -d 5 -p cbr -e 210 -c 1 -i 226 -a 1 -x {1.0 5.0 208 ------- null} - -t 1.01973 -s 3 -d 5 -p cbr -e 210 -c 1 -i 226 -a 1 -x {1.0 5.0 208 ------- null} h -t 1.01973 -s 3 -d 5 -p cbr -e 210 -c 1 -i 226 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.02013 -s 3 -d 5 -p cbr -e 210 -c 1 -i 214 -a 1 -x {1.0 5.0 197 ------- null} + -t 1.0225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 267 -a 1 -x {1.0 5.0 246 ------- null} - -t 1.0225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 267 -a 1 -x {1.0 5.0 246 ------- null} h -t 1.0225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 267 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.02269 -s 2 -d 3 -p cbr -e 210 -c 1 -i 242 -a 1 -x {1.0 5.0 222 ------- null} h -t 1.02269 -s 2 -d 3 -p cbr -e 210 -c 1 -i 242 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.02309 -s 2 -d 3 -p cbr -e 210 -c 1 -i 227 -a 1 -x {1.0 5.0 209 ------- null} + -t 1.02309 -s 3 -d 5 -p cbr -e 210 -c 1 -i 227 -a 1 -x {1.0 5.0 209 ------- null} - -t 1.02309 -s 3 -d 5 -p cbr -e 210 -c 1 -i 227 -a 1 -x {1.0 5.0 209 ------- null} h -t 1.02309 -s 3 -d 5 -p cbr -e 210 -c 1 -i 227 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.02336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 252 -a 1 -x {1.0 5.0 232 ------- null} + -t 1.02336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 252 -a 1 -x {1.0 5.0 232 ------- null} r -t 1.02349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 215 -a 1 -x {1.0 5.0 198 ------- null} - -t 1.02605 -s 2 -d 3 -p cbr -e 210 -c 1 -i 243 -a 1 -x {1.0 5.0 223 ------- null} h -t 1.02605 -s 2 -d 3 -p cbr -e 210 -c 1 -i 243 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.02625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 268 -a 1 -x {1.0 5.0 247 ------- null} - -t 1.02625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 268 -a 1 -x {1.0 5.0 247 ------- null} h -t 1.02625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 268 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.02645 -s 2 -d 3 -p cbr -e 210 -c 1 -i 228 -a 1 -x {1.0 5.0 210 ------- null} + -t 1.02645 -s 3 -d 5 -p cbr -e 210 -c 1 -i 228 -a 1 -x {1.0 5.0 210 ------- null} - -t 1.02645 -s 3 -d 5 -p cbr -e 210 -c 1 -i 228 -a 1 -x {1.0 5.0 210 ------- null} h -t 1.02645 -s 3 -d 5 -p cbr -e 210 -c 1 -i 228 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.02685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 216 -a 1 -x {1.0 5.0 199 ------- null} r -t 1.02711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 253 -a 1 -x {1.0 5.0 233 ------- null} + -t 1.02711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 253 -a 1 -x {1.0 5.0 233 ------- null} - -t 1.02941 -s 2 -d 3 -p cbr -e 210 -c 1 -i 244 -a 1 -x {1.0 5.0 224 ------- null} h -t 1.02941 -s 2 -d 3 -p cbr -e 210 -c 1 -i 244 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.02981 -s 2 -d 3 -p cbr -e 210 -c 1 -i 230 -a 1 -x {1.0 5.0 211 ------- null} + -t 1.02981 -s 3 -d 5 -p cbr -e 210 -c 1 -i 230 -a 1 -x {1.0 5.0 211 ------- null} - -t 1.02981 -s 3 -d 5 -p cbr -e 210 -c 1 -i 230 -a 1 -x {1.0 5.0 211 ------- null} h -t 1.02981 -s 3 -d 5 -p cbr -e 210 -c 1 -i 230 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.03 -s 1 -d 2 -p cbr -e 210 -c 1 -i 269 -a 1 -x {1.0 5.0 248 ------- null} - -t 1.03 -s 1 -d 2 -p cbr -e 210 -c 1 -i 269 -a 1 -x {1.0 5.0 248 ------- null} h -t 1.03 -s 1 -d 2 -p cbr -e 210 -c 1 -i 269 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.03021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 217 -a 1 -x {1.0 5.0 200 ------- null} r -t 1.03086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 254 -a 1 -x {1.0 5.0 234 ------- null} + -t 1.03086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 254 -a 1 -x {1.0 5.0 234 ------- null} - -t 1.03277 -s 2 -d 3 -p cbr -e 210 -c 1 -i 247 -a 1 -x {1.0 5.0 227 ------- null} h -t 1.03277 -s 2 -d 3 -p cbr -e 210 -c 1 -i 247 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.03317 -s 2 -d 3 -p cbr -e 210 -c 1 -i 231 -a 1 -x {1.0 5.0 212 ------- null} + -t 1.03317 -s 3 -d 5 -p cbr -e 210 -c 1 -i 231 -a 1 -x {1.0 5.0 212 ------- null} - -t 1.03317 -s 3 -d 5 -p cbr -e 210 -c 1 -i 231 -a 1 -x {1.0 5.0 212 ------- null} h -t 1.03317 -s 3 -d 5 -p cbr -e 210 -c 1 -i 231 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.03357 -s 3 -d 5 -p cbr -e 210 -c 1 -i 219 -a 1 -x {1.0 5.0 201 ------- null} + -t 1.03375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 270 -a 1 -x {1.0 5.0 249 ------- null} - -t 1.03375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 270 -a 1 -x {1.0 5.0 249 ------- null} h -t 1.03375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 270 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.03461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 255 -a 1 -x {1.0 5.0 235 ------- null} + -t 1.03461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 255 -a 1 -x {1.0 5.0 235 ------- null} - -t 1.03613 -s 2 -d 3 -p cbr -e 210 -c 1 -i 248 -a 1 -x {1.0 5.0 228 ------- null} h -t 1.03613 -s 2 -d 3 -p cbr -e 210 -c 1 -i 248 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.03653 -s 2 -d 3 -p cbr -e 210 -c 1 -i 233 -a 1 -x {1.0 5.0 214 ------- null} + -t 1.03653 -s 3 -d 5 -p cbr -e 210 -c 1 -i 233 -a 1 -x {1.0 5.0 214 ------- null} - -t 1.03653 -s 3 -d 5 -p cbr -e 210 -c 1 -i 233 -a 1 -x {1.0 5.0 214 ------- null} h -t 1.03653 -s 3 -d 5 -p cbr -e 210 -c 1 -i 233 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.03693 -s 3 -d 5 -p cbr -e 210 -c 1 -i 220 -a 1 -x {1.0 5.0 202 ------- null} + -t 1.0375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 271 -a 1 -x {1.0 5.0 250 ------- null} - -t 1.0375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 271 -a 1 -x {1.0 5.0 250 ------- null} h -t 1.0375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 271 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.03836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 256 -a 1 -x {1.0 5.0 236 ------- null} + -t 1.03836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 256 -a 1 -x {1.0 5.0 236 ------- null} - -t 1.03949 -s 2 -d 3 -p cbr -e 210 -c 1 -i 249 -a 1 -x {1.0 5.0 229 ------- null} h -t 1.03949 -s 2 -d 3 -p cbr -e 210 -c 1 -i 249 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.04029 -s 3 -d 5 -p cbr -e 210 -c 1 -i 221 -a 1 -x {1.0 5.0 203 ------- null} + -t 1.04125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 272 -a 1 -x {1.0 5.0 251 ------- null} - -t 1.04125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 272 -a 1 -x {1.0 5.0 251 ------- null} h -t 1.04125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 272 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.04211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 257 -a 1 -x {1.0 5.0 237 ------- null} + -t 1.04211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 257 -a 1 -x {1.0 5.0 237 ------- null} - -t 1.04285 -s 2 -d 3 -p cbr -e 210 -c 1 -i 250 -a 1 -x {1.0 5.0 230 ------- null} h -t 1.04285 -s 2 -d 3 -p cbr -e 210 -c 1 -i 250 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.045 -s 1 -d 2 -p cbr -e 210 -c 1 -i 273 -a 1 -x {1.0 5.0 252 ------- null} - -t 1.045 -s 1 -d 2 -p cbr -e 210 -c 1 -i 273 -a 1 -x {1.0 5.0 252 ------- null} h -t 1.045 -s 1 -d 2 -p cbr -e 210 -c 1 -i 273 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.04586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 258 -a 1 -x {1.0 5.0 238 ------- null} + -t 1.04586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 258 -a 1 -x {1.0 5.0 238 ------- null} - -t 1.04621 -s 2 -d 3 -p cbr -e 210 -c 1 -i 251 -a 1 -x {1.0 5.0 231 ------- null} h -t 1.04621 -s 2 -d 3 -p cbr -e 210 -c 1 -i 251 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.04875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 274 -a 1 -x {1.0 5.0 253 ------- null} - -t 1.04875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 274 -a 1 -x {1.0 5.0 253 ------- null} h -t 1.04875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 274 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.04957 -s 2 -d 3 -p cbr -e 210 -c 1 -i 252 -a 1 -x {1.0 5.0 232 ------- null} h -t 1.04957 -s 2 -d 3 -p cbr -e 210 -c 1 -i 252 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.04961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 259 -a 1 -x {1.0 5.0 239 ------- null} + -t 1.04961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 259 -a 1 -x {1.0 5.0 239 ------- null} + -t 1.0525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 275 -a 1 -x {1.0 5.0 254 ------- null} - -t 1.0525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 275 -a 1 -x {1.0 5.0 254 ------- null} h -t 1.0525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 275 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.05253 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {0.0 4.0 10 ------- null} + -t 1.05253 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {0.0 4.0 10 ------- null} - -t 1.05253 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {0.0 4.0 10 ------- null} h -t 1.05253 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {0.0 4.0 -1 ------- null} - -t 1.05293 -s 2 -d 3 -p cbr -e 210 -c 1 -i 253 -a 1 -x {1.0 5.0 233 ------- null} h -t 1.05293 -s 2 -d 3 -p cbr -e 210 -c 1 -i 253 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.05336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 260 -a 1 -x {1.0 5.0 240 ------- null} + -t 1.05336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 260 -a 1 -x {1.0 5.0 240 ------- null} r -t 1.05589 -s 2 -d 3 -p cbr -e 210 -c 1 -i 235 -a 1 -x {1.0 5.0 216 ------- null} + -t 1.05589 -s 3 -d 5 -p cbr -e 210 -c 1 -i 235 -a 1 -x {1.0 5.0 216 ------- null} - -t 1.05589 -s 3 -d 5 -p cbr -e 210 -c 1 -i 235 -a 1 -x {1.0 5.0 216 ------- null} h -t 1.05589 -s 3 -d 5 -p cbr -e 210 -c 1 -i 235 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.05625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 276 -a 1 -x {1.0 5.0 255 ------- null} - -t 1.05625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 276 -a 1 -x {1.0 5.0 255 ------- null} h -t 1.05625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 276 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.05629 -s 2 -d 3 -p cbr -e 210 -c 1 -i 254 -a 1 -x {1.0 5.0 234 ------- null} h -t 1.05629 -s 2 -d 3 -p cbr -e 210 -c 1 -i 254 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.05711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 261 -a 1 -x {1.0 5.0 241 ------- null} + -t 1.05711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 261 -a 1 -x {1.0 5.0 241 ------- null} r -t 1.05925 -s 2 -d 3 -p cbr -e 210 -c 1 -i 236 -a 1 -x {1.0 5.0 217 ------- null} + -t 1.05925 -s 3 -d 5 -p cbr -e 210 -c 1 -i 236 -a 1 -x {1.0 5.0 217 ------- null} - -t 1.05925 -s 3 -d 5 -p cbr -e 210 -c 1 -i 236 -a 1 -x {1.0 5.0 217 ------- null} h -t 1.05925 -s 3 -d 5 -p cbr -e 210 -c 1 -i 236 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.05965 -s 3 -d 5 -p cbr -e 210 -c 1 -i 222 -a 1 -x {1.0 5.0 204 ------- null} - -t 1.05965 -s 2 -d 3 -p cbr -e 210 -c 1 -i 255 -a 1 -x {1.0 5.0 235 ------- null} h -t 1.05965 -s 2 -d 3 -p cbr -e 210 -c 1 -i 255 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.06 -s 1 -d 2 -p cbr -e 210 -c 1 -i 277 -a 1 -x {1.0 5.0 256 ------- null} - -t 1.06 -s 1 -d 2 -p cbr -e 210 -c 1 -i 277 -a 1 -x {1.0 5.0 256 ------- null} h -t 1.06 -s 1 -d 2 -p cbr -e 210 -c 1 -i 277 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.06086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 262 -a 1 -x {1.0 5.0 242 ------- null} + -t 1.06086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 262 -a 1 -x {1.0 5.0 242 ------- null} r -t 1.06261 -s 2 -d 3 -p cbr -e 210 -c 1 -i 237 -a 1 -x {1.0 5.0 218 ------- null} + -t 1.06261 -s 3 -d 5 -p cbr -e 210 -c 1 -i 237 -a 1 -x {1.0 5.0 218 ------- null} - -t 1.06261 -s 3 -d 5 -p cbr -e 210 -c 1 -i 237 -a 1 -x {1.0 5.0 218 ------- null} h -t 1.06261 -s 3 -d 5 -p cbr -e 210 -c 1 -i 237 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.06301 -s 3 -d 5 -p cbr -e 210 -c 1 -i 223 -a 1 -x {1.0 5.0 205 ------- null} - -t 1.06301 -s 2 -d 3 -p cbr -e 210 -c 1 -i 256 -a 1 -x {1.0 5.0 236 ------- null} h -t 1.06301 -s 2 -d 3 -p cbr -e 210 -c 1 -i 256 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.06375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 278 -a 1 -x {1.0 5.0 257 ------- null} - -t 1.06375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 278 -a 1 -x {1.0 5.0 257 ------- null} h -t 1.06375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 278 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.06461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 263 -a 1 -x {1.0 5.0 243 ------- null} + -t 1.06461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 263 -a 1 -x {1.0 5.0 243 ------- null} r -t 1.06597 -s 2 -d 3 -p cbr -e 210 -c 1 -i 238 -a 1 -x {1.0 5.0 219 ------- null} + -t 1.06597 -s 3 -d 5 -p cbr -e 210 -c 1 -i 238 -a 1 -x {1.0 5.0 219 ------- null} - -t 1.06597 -s 3 -d 5 -p cbr -e 210 -c 1 -i 238 -a 1 -x {1.0 5.0 219 ------- null} h -t 1.06597 -s 3 -d 5 -p cbr -e 210 -c 1 -i 238 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.06637 -s 3 -d 5 -p cbr -e 210 -c 1 -i 224 -a 1 -x {1.0 5.0 206 ------- null} - -t 1.06637 -s 2 -d 3 -p cbr -e 210 -c 1 -i 257 -a 1 -x {1.0 5.0 237 ------- null} h -t 1.06637 -s 2 -d 3 -p cbr -e 210 -c 1 -i 257 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.06661 -s 4 -d 3 -p ack -e 40 -c 0 -i 265 -a 0 -x {4.0 0.0 8 ------- null} + -t 1.06661 -s 3 -d 2 -p ack -e 40 -c 0 -i 265 -a 0 -x {4.0 0.0 8 ------- null} - -t 1.06661 -s 3 -d 2 -p ack -e 40 -c 0 -i 265 -a 0 -x {4.0 0.0 8 ------- null} h -t 1.06661 -s 3 -d 2 -p ack -e 40 -c 0 -i 265 -a 0 -x {4.0 0.0 -1 ------- null} + -t 1.0675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 279 -a 1 -x {1.0 5.0 258 ------- null} - -t 1.0675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 279 -a 1 -x {1.0 5.0 258 ------- null} h -t 1.0675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 279 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.06836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 264 -a 1 -x {1.0 5.0 244 ------- null} + -t 1.06836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 264 -a 1 -x {1.0 5.0 244 ------- null} r -t 1.06893 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 218 -a 0 -x {0.0 4.0 9 ------- null} + -t 1.06893 -s 4 -d 3 -p ack -e 40 -c 0 -i 280 -a 0 -x {4.0 0.0 9 ------- null} - -t 1.06893 -s 4 -d 3 -p ack -e 40 -c 0 -i 280 -a 0 -x {4.0 0.0 9 ------- null} h -t 1.06893 -s 4 -d 3 -p ack -e 40 -c 0 -i 280 -a 0 -x {4.0 0.0 -1 ------- null} r -t 1.06933 -s 2 -d 3 -p cbr -e 210 -c 1 -i 239 -a 1 -x {1.0 5.0 220 ------- null} + -t 1.06933 -s 3 -d 5 -p cbr -e 210 -c 1 -i 239 -a 1 -x {1.0 5.0 220 ------- null} - -t 1.06933 -s 3 -d 5 -p cbr -e 210 -c 1 -i 239 -a 1 -x {1.0 5.0 220 ------- null} h -t 1.06933 -s 3 -d 5 -p cbr -e 210 -c 1 -i 239 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.06973 -s 3 -d 5 -p cbr -e 210 -c 1 -i 225 -a 1 -x {1.0 5.0 207 ------- null} - -t 1.06973 -s 2 -d 3 -p cbr -e 210 -c 1 -i 258 -a 1 -x {1.0 5.0 238 ------- null} h -t 1.06973 -s 2 -d 3 -p cbr -e 210 -c 1 -i 258 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.07125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 281 -a 1 -x {1.0 5.0 259 ------- null} - -t 1.07125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 281 -a 1 -x {1.0 5.0 259 ------- null} h -t 1.07125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 281 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.07211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 266 -a 1 -x {1.0 5.0 245 ------- null} + -t 1.07211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 266 -a 1 -x {1.0 5.0 245 ------- null} r -t 1.07269 -s 2 -d 3 -p cbr -e 210 -c 1 -i 240 -a 1 -x {1.0 5.0 221 ------- null} + -t 1.07269 -s 3 -d 5 -p cbr -e 210 -c 1 -i 240 -a 1 -x {1.0 5.0 221 ------- null} - -t 1.07269 -s 3 -d 5 -p cbr -e 210 -c 1 -i 240 -a 1 -x {1.0 5.0 221 ------- null} h -t 1.07269 -s 3 -d 5 -p cbr -e 210 -c 1 -i 240 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.07309 -s 3 -d 5 -p cbr -e 210 -c 1 -i 226 -a 1 -x {1.0 5.0 208 ------- null} - -t 1.07309 -s 2 -d 3 -p cbr -e 210 -c 1 -i 259 -a 1 -x {1.0 5.0 239 ------- null} h -t 1.07309 -s 2 -d 3 -p cbr -e 210 -c 1 -i 259 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 282 -a 1 -x {1.0 5.0 260 ------- null} - -t 1.075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 282 -a 1 -x {1.0 5.0 260 ------- null} h -t 1.075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 282 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.07586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 267 -a 1 -x {1.0 5.0 246 ------- null} + -t 1.07586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 267 -a 1 -x {1.0 5.0 246 ------- null} r -t 1.07605 -s 2 -d 3 -p cbr -e 210 -c 1 -i 242 -a 1 -x {1.0 5.0 222 ------- null} + -t 1.07605 -s 3 -d 5 -p cbr -e 210 -c 1 -i 242 -a 1 -x {1.0 5.0 222 ------- null} - -t 1.07605 -s 3 -d 5 -p cbr -e 210 -c 1 -i 242 -a 1 -x {1.0 5.0 222 ------- null} h -t 1.07605 -s 3 -d 5 -p cbr -e 210 -c 1 -i 242 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.07645 -s 3 -d 5 -p cbr -e 210 -c 1 -i 227 -a 1 -x {1.0 5.0 209 ------- null} - -t 1.07645 -s 2 -d 3 -p cbr -e 210 -c 1 -i 260 -a 1 -x {1.0 5.0 240 ------- null} h -t 1.07645 -s 2 -d 3 -p cbr -e 210 -c 1 -i 260 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.07875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 283 -a 1 -x {1.0 5.0 261 ------- null} - -t 1.07875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 283 -a 1 -x {1.0 5.0 261 ------- null} h -t 1.07875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 283 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.07941 -s 2 -d 3 -p cbr -e 210 -c 1 -i 243 -a 1 -x {1.0 5.0 223 ------- null} + -t 1.07941 -s 3 -d 5 -p cbr -e 210 -c 1 -i 243 -a 1 -x {1.0 5.0 223 ------- null} - -t 1.07941 -s 3 -d 5 -p cbr -e 210 -c 1 -i 243 -a 1 -x {1.0 5.0 223 ------- null} h -t 1.07941 -s 3 -d 5 -p cbr -e 210 -c 1 -i 243 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.07961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 268 -a 1 -x {1.0 5.0 247 ------- null} + -t 1.07961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 268 -a 1 -x {1.0 5.0 247 ------- null} r -t 1.07981 -s 3 -d 5 -p cbr -e 210 -c 1 -i 228 -a 1 -x {1.0 5.0 210 ------- null} - -t 1.07981 -s 2 -d 3 -p cbr -e 210 -c 1 -i 261 -a 1 -x {1.0 5.0 241 ------- null} h -t 1.07981 -s 2 -d 3 -p cbr -e 210 -c 1 -i 261 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.0825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 284 -a 1 -x {1.0 5.0 262 ------- null} - -t 1.0825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 284 -a 1 -x {1.0 5.0 262 ------- null} h -t 1.0825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 284 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.08277 -s 2 -d 3 -p cbr -e 210 -c 1 -i 244 -a 1 -x {1.0 5.0 224 ------- null} + -t 1.08277 -s 3 -d 5 -p cbr -e 210 -c 1 -i 244 -a 1 -x {1.0 5.0 224 ------- null} - -t 1.08277 -s 3 -d 5 -p cbr -e 210 -c 1 -i 244 -a 1 -x {1.0 5.0 224 ------- null} h -t 1.08277 -s 3 -d 5 -p cbr -e 210 -c 1 -i 244 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.08317 -s 3 -d 5 -p cbr -e 210 -c 1 -i 230 -a 1 -x {1.0 5.0 211 ------- null} - -t 1.08317 -s 2 -d 3 -p cbr -e 210 -c 1 -i 262 -a 1 -x {1.0 5.0 242 ------- null} h -t 1.08317 -s 2 -d 3 -p cbr -e 210 -c 1 -i 262 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.08336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 269 -a 1 -x {1.0 5.0 248 ------- null} + -t 1.08336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 269 -a 1 -x {1.0 5.0 248 ------- null} r -t 1.08613 -s 2 -d 3 -p cbr -e 210 -c 1 -i 247 -a 1 -x {1.0 5.0 227 ------- null} + -t 1.08613 -s 3 -d 5 -p cbr -e 210 -c 1 -i 247 -a 1 -x {1.0 5.0 227 ------- null} - -t 1.08613 -s 3 -d 5 -p cbr -e 210 -c 1 -i 247 -a 1 -x {1.0 5.0 227 ------- null} h -t 1.08613 -s 3 -d 5 -p cbr -e 210 -c 1 -i 247 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.08625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 285 -a 1 -x {1.0 5.0 263 ------- null} - -t 1.08625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 285 -a 1 -x {1.0 5.0 263 ------- null} h -t 1.08625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 285 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.08653 -s 3 -d 5 -p cbr -e 210 -c 1 -i 231 -a 1 -x {1.0 5.0 212 ------- null} - -t 1.08653 -s 2 -d 3 -p cbr -e 210 -c 1 -i 263 -a 1 -x {1.0 5.0 243 ------- null} h -t 1.08653 -s 2 -d 3 -p cbr -e 210 -c 1 -i 263 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.08711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 270 -a 1 -x {1.0 5.0 249 ------- null} + -t 1.08711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 270 -a 1 -x {1.0 5.0 249 ------- null} r -t 1.08949 -s 2 -d 3 -p cbr -e 210 -c 1 -i 248 -a 1 -x {1.0 5.0 228 ------- null} + -t 1.08949 -s 3 -d 5 -p cbr -e 210 -c 1 -i 248 -a 1 -x {1.0 5.0 228 ------- null} - -t 1.08949 -s 3 -d 5 -p cbr -e 210 -c 1 -i 248 -a 1 -x {1.0 5.0 228 ------- null} h -t 1.08949 -s 3 -d 5 -p cbr -e 210 -c 1 -i 248 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.08989 -s 3 -d 5 -p cbr -e 210 -c 1 -i 233 -a 1 -x {1.0 5.0 214 ------- null} - -t 1.08989 -s 2 -d 3 -p cbr -e 210 -c 1 -i 264 -a 1 -x {1.0 5.0 244 ------- null} h -t 1.08989 -s 2 -d 3 -p cbr -e 210 -c 1 -i 264 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.09 -s 1 -d 2 -p cbr -e 210 -c 1 -i 286 -a 1 -x {1.0 5.0 264 ------- null} - -t 1.09 -s 1 -d 2 -p cbr -e 210 -c 1 -i 286 -a 1 -x {1.0 5.0 264 ------- null} h -t 1.09 -s 1 -d 2 -p cbr -e 210 -c 1 -i 286 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.09086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 271 -a 1 -x {1.0 5.0 250 ------- null} + -t 1.09086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 271 -a 1 -x {1.0 5.0 250 ------- null} r -t 1.09285 -s 2 -d 3 -p cbr -e 210 -c 1 -i 249 -a 1 -x {1.0 5.0 229 ------- null} + -t 1.09285 -s 3 -d 5 -p cbr -e 210 -c 1 -i 249 -a 1 -x {1.0 5.0 229 ------- null} - -t 1.09285 -s 3 -d 5 -p cbr -e 210 -c 1 -i 249 -a 1 -x {1.0 5.0 229 ------- null} h -t 1.09285 -s 3 -d 5 -p cbr -e 210 -c 1 -i 249 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.09325 -s 2 -d 3 -p cbr -e 210 -c 1 -i 266 -a 1 -x {1.0 5.0 245 ------- null} h -t 1.09325 -s 2 -d 3 -p cbr -e 210 -c 1 -i 266 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.09375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 287 -a 1 -x {1.0 5.0 265 ------- null} - -t 1.09375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 287 -a 1 -x {1.0 5.0 265 ------- null} h -t 1.09375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 287 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.09461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 272 -a 1 -x {1.0 5.0 251 ------- null} + -t 1.09461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 272 -a 1 -x {1.0 5.0 251 ------- null} r -t 1.09621 -s 2 -d 3 -p cbr -e 210 -c 1 -i 250 -a 1 -x {1.0 5.0 230 ------- null} + -t 1.09621 -s 3 -d 5 -p cbr -e 210 -c 1 -i 250 -a 1 -x {1.0 5.0 230 ------- null} - -t 1.09621 -s 3 -d 5 -p cbr -e 210 -c 1 -i 250 -a 1 -x {1.0 5.0 230 ------- null} h -t 1.09621 -s 3 -d 5 -p cbr -e 210 -c 1 -i 250 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.09661 -s 2 -d 3 -p cbr -e 210 -c 1 -i 267 -a 1 -x {1.0 5.0 246 ------- null} h -t 1.09661 -s 2 -d 3 -p cbr -e 210 -c 1 -i 267 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.0975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 288 -a 1 -x {1.0 5.0 266 ------- null} - -t 1.0975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 288 -a 1 -x {1.0 5.0 266 ------- null} h -t 1.0975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 288 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.09836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 273 -a 1 -x {1.0 5.0 252 ------- null} + -t 1.09836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 273 -a 1 -x {1.0 5.0 252 ------- null} r -t 1.09957 -s 2 -d 3 -p cbr -e 210 -c 1 -i 251 -a 1 -x {1.0 5.0 231 ------- null} + -t 1.09957 -s 3 -d 5 -p cbr -e 210 -c 1 -i 251 -a 1 -x {1.0 5.0 231 ------- null} - -t 1.09957 -s 3 -d 5 -p cbr -e 210 -c 1 -i 251 -a 1 -x {1.0 5.0 231 ------- null} h -t 1.09957 -s 3 -d 5 -p cbr -e 210 -c 1 -i 251 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.09997 -s 2 -d 3 -p cbr -e 210 -c 1 -i 268 -a 1 -x {1.0 5.0 247 ------- null} h -t 1.09997 -s 2 -d 3 -p cbr -e 210 -c 1 -i 268 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.10125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 289 -a 1 -x {1.0 5.0 267 ------- null} - -t 1.10125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 289 -a 1 -x {1.0 5.0 267 ------- null} h -t 1.10125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 289 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.10211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 274 -a 1 -x {1.0 5.0 253 ------- null} + -t 1.10211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 274 -a 1 -x {1.0 5.0 253 ------- null} r -t 1.10293 -s 2 -d 3 -p cbr -e 210 -c 1 -i 252 -a 1 -x {1.0 5.0 232 ------- null} + -t 1.10293 -s 3 -d 5 -p cbr -e 210 -c 1 -i 252 -a 1 -x {1.0 5.0 232 ------- null} - -t 1.10293 -s 3 -d 5 -p cbr -e 210 -c 1 -i 252 -a 1 -x {1.0 5.0 232 ------- null} h -t 1.10293 -s 3 -d 5 -p cbr -e 210 -c 1 -i 252 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.10333 -s 2 -d 3 -p cbr -e 210 -c 1 -i 269 -a 1 -x {1.0 5.0 248 ------- null} h -t 1.10333 -s 2 -d 3 -p cbr -e 210 -c 1 -i 269 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.105 -s 1 -d 2 -p cbr -e 210 -c 1 -i 290 -a 1 -x {1.0 5.0 268 ------- null} - -t 1.105 -s 1 -d 2 -p cbr -e 210 -c 1 -i 290 -a 1 -x {1.0 5.0 268 ------- null} h -t 1.105 -s 1 -d 2 -p cbr -e 210 -c 1 -i 290 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.10586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 275 -a 1 -x {1.0 5.0 254 ------- null} + -t 1.10586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 275 -a 1 -x {1.0 5.0 254 ------- null} r -t 1.10629 -s 2 -d 3 -p cbr -e 210 -c 1 -i 253 -a 1 -x {1.0 5.0 233 ------- null} + -t 1.10629 -s 3 -d 5 -p cbr -e 210 -c 1 -i 253 -a 1 -x {1.0 5.0 233 ------- null} - -t 1.10629 -s 3 -d 5 -p cbr -e 210 -c 1 -i 253 -a 1 -x {1.0 5.0 233 ------- null} h -t 1.10629 -s 3 -d 5 -p cbr -e 210 -c 1 -i 253 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.10669 -s 2 -d 3 -p cbr -e 210 -c 1 -i 270 -a 1 -x {1.0 5.0 249 ------- null} h -t 1.10669 -s 2 -d 3 -p cbr -e 210 -c 1 -i 270 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.10875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 291 -a 1 -x {1.0 5.0 269 ------- null} - -t 1.10875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 291 -a 1 -x {1.0 5.0 269 ------- null} h -t 1.10875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 291 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.10925 -s 3 -d 5 -p cbr -e 210 -c 1 -i 235 -a 1 -x {1.0 5.0 216 ------- null} r -t 1.10961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 276 -a 1 -x {1.0 5.0 255 ------- null} + -t 1.10961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 276 -a 1 -x {1.0 5.0 255 ------- null} r -t 1.10965 -s 2 -d 3 -p cbr -e 210 -c 1 -i 254 -a 1 -x {1.0 5.0 234 ------- null} + -t 1.10965 -s 3 -d 5 -p cbr -e 210 -c 1 -i 254 -a 1 -x {1.0 5.0 234 ------- null} - -t 1.10965 -s 3 -d 5 -p cbr -e 210 -c 1 -i 254 -a 1 -x {1.0 5.0 234 ------- null} h -t 1.10965 -s 3 -d 5 -p cbr -e 210 -c 1 -i 254 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.11005 -s 2 -d 3 -p cbr -e 210 -c 1 -i 271 -a 1 -x {1.0 5.0 250 ------- null} h -t 1.11005 -s 2 -d 3 -p cbr -e 210 -c 1 -i 271 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.1125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 292 -a 1 -x {1.0 5.0 270 ------- null} - -t 1.1125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 292 -a 1 -x {1.0 5.0 270 ------- null} h -t 1.1125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 292 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.11261 -s 3 -d 5 -p cbr -e 210 -c 1 -i 236 -a 1 -x {1.0 5.0 217 ------- null} r -t 1.11301 -s 2 -d 3 -p cbr -e 210 -c 1 -i 255 -a 1 -x {1.0 5.0 235 ------- null} + -t 1.11301 -s 3 -d 5 -p cbr -e 210 -c 1 -i 255 -a 1 -x {1.0 5.0 235 ------- null} - -t 1.11301 -s 3 -d 5 -p cbr -e 210 -c 1 -i 255 -a 1 -x {1.0 5.0 235 ------- null} h -t 1.11301 -s 3 -d 5 -p cbr -e 210 -c 1 -i 255 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.11336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 277 -a 1 -x {1.0 5.0 256 ------- null} + -t 1.11336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 277 -a 1 -x {1.0 5.0 256 ------- null} - -t 1.11341 -s 2 -d 3 -p cbr -e 210 -c 1 -i 272 -a 1 -x {1.0 5.0 251 ------- null} h -t 1.11341 -s 2 -d 3 -p cbr -e 210 -c 1 -i 272 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.11597 -s 3 -d 5 -p cbr -e 210 -c 1 -i 237 -a 1 -x {1.0 5.0 218 ------- null} + -t 1.11625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 293 -a 1 -x {1.0 5.0 271 ------- null} - -t 1.11625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 293 -a 1 -x {1.0 5.0 271 ------- null} h -t 1.11625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 293 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.11637 -s 2 -d 3 -p cbr -e 210 -c 1 -i 256 -a 1 -x {1.0 5.0 236 ------- null} + -t 1.11637 -s 3 -d 5 -p cbr -e 210 -c 1 -i 256 -a 1 -x {1.0 5.0 236 ------- null} - -t 1.11637 -s 3 -d 5 -p cbr -e 210 -c 1 -i 256 -a 1 -x {1.0 5.0 236 ------- null} h -t 1.11637 -s 3 -d 5 -p cbr -e 210 -c 1 -i 256 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.11677 -s 2 -d 3 -p cbr -e 210 -c 1 -i 273 -a 1 -x {1.0 5.0 252 ------- null} h -t 1.11677 -s 2 -d 3 -p cbr -e 210 -c 1 -i 273 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.11711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 278 -a 1 -x {1.0 5.0 257 ------- null} + -t 1.11711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 278 -a 1 -x {1.0 5.0 257 ------- null} r -t 1.11725 -s 3 -d 2 -p ack -e 40 -c 0 -i 265 -a 0 -x {4.0 0.0 8 ------- null} + -t 1.11725 -s 2 -d 0 -p ack -e 40 -c 0 -i 265 -a 0 -x {4.0 0.0 8 ------- null} - -t 1.11725 -s 2 -d 0 -p ack -e 40 -c 0 -i 265 -a 0 -x {4.0 0.0 8 ------- null} h -t 1.11725 -s 2 -d 0 -p ack -e 40 -c 0 -i 265 -a 0 -x {4.0 0.0 -1 ------- null} r -t 1.11853 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {0.0 4.0 10 ------- null} + -t 1.11853 -s 4 -d 3 -p ack -e 40 -c 0 -i 294 -a 0 -x {4.0 0.0 10 ------- null} - -t 1.11853 -s 4 -d 3 -p ack -e 40 -c 0 -i 294 -a 0 -x {4.0 0.0 10 ------- null} h -t 1.11853 -s 4 -d 3 -p ack -e 40 -c 0 -i 294 -a 0 -x {4.0 0.0 -1 ------- null} r -t 1.11933 -s 3 -d 5 -p cbr -e 210 -c 1 -i 238 -a 1 -x {1.0 5.0 219 ------- null} r -t 1.11957 -s 4 -d 3 -p ack -e 40 -c 0 -i 280 -a 0 -x {4.0 0.0 9 ------- null} + -t 1.11957 -s 3 -d 2 -p ack -e 40 -c 0 -i 280 -a 0 -x {4.0 0.0 9 ------- null} - -t 1.11957 -s 3 -d 2 -p ack -e 40 -c 0 -i 280 -a 0 -x {4.0 0.0 9 ------- null} h -t 1.11957 -s 3 -d 2 -p ack -e 40 -c 0 -i 280 -a 0 -x {4.0 0.0 -1 ------- null} r -t 1.11973 -s 2 -d 3 -p cbr -e 210 -c 1 -i 257 -a 1 -x {1.0 5.0 237 ------- null} + -t 1.11973 -s 3 -d 5 -p cbr -e 210 -c 1 -i 257 -a 1 -x {1.0 5.0 237 ------- null} - -t 1.11973 -s 3 -d 5 -p cbr -e 210 -c 1 -i 257 -a 1 -x {1.0 5.0 237 ------- null} h -t 1.11973 -s 3 -d 5 -p cbr -e 210 -c 1 -i 257 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.12 -s 1 -d 2 -p cbr -e 210 -c 1 -i 295 -a 1 -x {1.0 5.0 272 ------- null} - -t 1.12 -s 1 -d 2 -p cbr -e 210 -c 1 -i 295 -a 1 -x {1.0 5.0 272 ------- null} h -t 1.12 -s 1 -d 2 -p cbr -e 210 -c 1 -i 295 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.12013 -s 2 -d 3 -p cbr -e 210 -c 1 -i 274 -a 1 -x {1.0 5.0 253 ------- null} h -t 1.12013 -s 2 -d 3 -p cbr -e 210 -c 1 -i 274 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.12086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 279 -a 1 -x {1.0 5.0 258 ------- null} + -t 1.12086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 279 -a 1 -x {1.0 5.0 258 ------- null} r -t 1.12269 -s 3 -d 5 -p cbr -e 210 -c 1 -i 239 -a 1 -x {1.0 5.0 220 ------- null} r -t 1.12309 -s 2 -d 3 -p cbr -e 210 -c 1 -i 258 -a 1 -x {1.0 5.0 238 ------- null} + -t 1.12309 -s 3 -d 5 -p cbr -e 210 -c 1 -i 258 -a 1 -x {1.0 5.0 238 ------- null} - -t 1.12309 -s 3 -d 5 -p cbr -e 210 -c 1 -i 258 -a 1 -x {1.0 5.0 238 ------- null} h -t 1.12309 -s 3 -d 5 -p cbr -e 210 -c 1 -i 258 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.12349 -s 2 -d 3 -p cbr -e 210 -c 1 -i 275 -a 1 -x {1.0 5.0 254 ------- null} h -t 1.12349 -s 2 -d 3 -p cbr -e 210 -c 1 -i 275 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.12375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 296 -a 1 -x {1.0 5.0 273 ------- null} - -t 1.12375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 296 -a 1 -x {1.0 5.0 273 ------- null} h -t 1.12375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 296 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.12461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 281 -a 1 -x {1.0 5.0 259 ------- null} + -t 1.12461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 281 -a 1 -x {1.0 5.0 259 ------- null} r -t 1.12605 -s 3 -d 5 -p cbr -e 210 -c 1 -i 240 -a 1 -x {1.0 5.0 221 ------- null} r -t 1.12645 -s 2 -d 3 -p cbr -e 210 -c 1 -i 259 -a 1 -x {1.0 5.0 239 ------- null} + -t 1.12645 -s 3 -d 5 -p cbr -e 210 -c 1 -i 259 -a 1 -x {1.0 5.0 239 ------- null} - -t 1.12645 -s 3 -d 5 -p cbr -e 210 -c 1 -i 259 -a 1 -x {1.0 5.0 239 ------- null} h -t 1.12645 -s 3 -d 5 -p cbr -e 210 -c 1 -i 259 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.12685 -s 2 -d 3 -p cbr -e 210 -c 1 -i 276 -a 1 -x {1.0 5.0 255 ------- null} h -t 1.12685 -s 2 -d 3 -p cbr -e 210 -c 1 -i 276 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.1275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 297 -a 1 -x {1.0 5.0 274 ------- null} - -t 1.1275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 297 -a 1 -x {1.0 5.0 274 ------- null} h -t 1.1275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 297 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.12836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 282 -a 1 -x {1.0 5.0 260 ------- null} + -t 1.12836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 282 -a 1 -x {1.0 5.0 260 ------- null} r -t 1.12941 -s 3 -d 5 -p cbr -e 210 -c 1 -i 242 -a 1 -x {1.0 5.0 222 ------- null} r -t 1.12981 -s 2 -d 3 -p cbr -e 210 -c 1 -i 260 -a 1 -x {1.0 5.0 240 ------- null} + -t 1.12981 -s 3 -d 5 -p cbr -e 210 -c 1 -i 260 -a 1 -x {1.0 5.0 240 ------- null} - -t 1.12981 -s 3 -d 5 -p cbr -e 210 -c 1 -i 260 -a 1 -x {1.0 5.0 240 ------- null} h -t 1.12981 -s 3 -d 5 -p cbr -e 210 -c 1 -i 260 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.13021 -s 2 -d 3 -p cbr -e 210 -c 1 -i 277 -a 1 -x {1.0 5.0 256 ------- null} h -t 1.13021 -s 2 -d 3 -p cbr -e 210 -c 1 -i 277 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.13125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 298 -a 1 -x {1.0 5.0 275 ------- null} - -t 1.13125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 298 -a 1 -x {1.0 5.0 275 ------- null} h -t 1.13125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 298 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.13211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 283 -a 1 -x {1.0 5.0 261 ------- null} + -t 1.13211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 283 -a 1 -x {1.0 5.0 261 ------- null} r -t 1.13277 -s 3 -d 5 -p cbr -e 210 -c 1 -i 243 -a 1 -x {1.0 5.0 223 ------- null} r -t 1.13317 -s 2 -d 3 -p cbr -e 210 -c 1 -i 261 -a 1 -x {1.0 5.0 241 ------- null} + -t 1.13317 -s 3 -d 5 -p cbr -e 210 -c 1 -i 261 -a 1 -x {1.0 5.0 241 ------- null} - -t 1.13317 -s 3 -d 5 -p cbr -e 210 -c 1 -i 261 -a 1 -x {1.0 5.0 241 ------- null} h -t 1.13317 -s 3 -d 5 -p cbr -e 210 -c 1 -i 261 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.13357 -s 2 -d 3 -p cbr -e 210 -c 1 -i 278 -a 1 -x {1.0 5.0 257 ------- null} h -t 1.13357 -s 2 -d 3 -p cbr -e 210 -c 1 -i 278 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.135 -s 1 -d 2 -p cbr -e 210 -c 1 -i 299 -a 1 -x {1.0 5.0 276 ------- null} - -t 1.135 -s 1 -d 2 -p cbr -e 210 -c 1 -i 299 -a 1 -x {1.0 5.0 276 ------- null} h -t 1.135 -s 1 -d 2 -p cbr -e 210 -c 1 -i 299 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.13586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 284 -a 1 -x {1.0 5.0 262 ------- null} + -t 1.13586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 284 -a 1 -x {1.0 5.0 262 ------- null} r -t 1.13613 -s 3 -d 5 -p cbr -e 210 -c 1 -i 244 -a 1 -x {1.0 5.0 224 ------- null} r -t 1.13653 -s 2 -d 3 -p cbr -e 210 -c 1 -i 262 -a 1 -x {1.0 5.0 242 ------- null} + -t 1.13653 -s 3 -d 5 -p cbr -e 210 -c 1 -i 262 -a 1 -x {1.0 5.0 242 ------- null} - -t 1.13653 -s 3 -d 5 -p cbr -e 210 -c 1 -i 262 -a 1 -x {1.0 5.0 242 ------- null} h -t 1.13653 -s 3 -d 5 -p cbr -e 210 -c 1 -i 262 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.13693 -s 2 -d 3 -p cbr -e 210 -c 1 -i 279 -a 1 -x {1.0 5.0 258 ------- null} h -t 1.13693 -s 2 -d 3 -p cbr -e 210 -c 1 -i 279 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.13875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 300 -a 1 -x {1.0 5.0 277 ------- null} - -t 1.13875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 300 -a 1 -x {1.0 5.0 277 ------- null} h -t 1.13875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 300 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.13949 -s 3 -d 5 -p cbr -e 210 -c 1 -i 247 -a 1 -x {1.0 5.0 227 ------- null} r -t 1.13961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 285 -a 1 -x {1.0 5.0 263 ------- null} + -t 1.13961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 285 -a 1 -x {1.0 5.0 263 ------- null} r -t 1.13989 -s 2 -d 3 -p cbr -e 210 -c 1 -i 263 -a 1 -x {1.0 5.0 243 ------- null} + -t 1.13989 -s 3 -d 5 -p cbr -e 210 -c 1 -i 263 -a 1 -x {1.0 5.0 243 ------- null} - -t 1.13989 -s 3 -d 5 -p cbr -e 210 -c 1 -i 263 -a 1 -x {1.0 5.0 243 ------- null} h -t 1.13989 -s 3 -d 5 -p cbr -e 210 -c 1 -i 263 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.14029 -s 2 -d 3 -p cbr -e 210 -c 1 -i 281 -a 1 -x {1.0 5.0 259 ------- null} h -t 1.14029 -s 2 -d 3 -p cbr -e 210 -c 1 -i 281 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.1425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 301 -a 1 -x {1.0 5.0 278 ------- null} - -t 1.1425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 301 -a 1 -x {1.0 5.0 278 ------- null} h -t 1.1425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 301 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.14285 -s 3 -d 5 -p cbr -e 210 -c 1 -i 248 -a 1 -x {1.0 5.0 228 ------- null} r -t 1.14325 -s 2 -d 3 -p cbr -e 210 -c 1 -i 264 -a 1 -x {1.0 5.0 244 ------- null} + -t 1.14325 -s 3 -d 5 -p cbr -e 210 -c 1 -i 264 -a 1 -x {1.0 5.0 244 ------- null} - -t 1.14325 -s 3 -d 5 -p cbr -e 210 -c 1 -i 264 -a 1 -x {1.0 5.0 244 ------- null} h -t 1.14325 -s 3 -d 5 -p cbr -e 210 -c 1 -i 264 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.14336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 286 -a 1 -x {1.0 5.0 264 ------- null} + -t 1.14336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 286 -a 1 -x {1.0 5.0 264 ------- null} - -t 1.14365 -s 2 -d 3 -p cbr -e 210 -c 1 -i 282 -a 1 -x {1.0 5.0 260 ------- null} h -t 1.14365 -s 2 -d 3 -p cbr -e 210 -c 1 -i 282 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.14621 -s 3 -d 5 -p cbr -e 210 -c 1 -i 249 -a 1 -x {1.0 5.0 229 ------- null} + -t 1.14625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 302 -a 1 -x {1.0 5.0 279 ------- null} - -t 1.14625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 302 -a 1 -x {1.0 5.0 279 ------- null} h -t 1.14625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 302 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.14661 -s 2 -d 3 -p cbr -e 210 -c 1 -i 266 -a 1 -x {1.0 5.0 245 ------- null} + -t 1.14661 -s 3 -d 5 -p cbr -e 210 -c 1 -i 266 -a 1 -x {1.0 5.0 245 ------- null} - -t 1.14661 -s 3 -d 5 -p cbr -e 210 -c 1 -i 266 -a 1 -x {1.0 5.0 245 ------- null} h -t 1.14661 -s 3 -d 5 -p cbr -e 210 -c 1 -i 266 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.14701 -s 2 -d 3 -p cbr -e 210 -c 1 -i 283 -a 1 -x {1.0 5.0 261 ------- null} h -t 1.14701 -s 2 -d 3 -p cbr -e 210 -c 1 -i 283 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.14711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 287 -a 1 -x {1.0 5.0 265 ------- null} + -t 1.14711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 287 -a 1 -x {1.0 5.0 265 ------- null} r -t 1.14957 -s 3 -d 5 -p cbr -e 210 -c 1 -i 250 -a 1 -x {1.0 5.0 230 ------- null} r -t 1.14997 -s 2 -d 3 -p cbr -e 210 -c 1 -i 267 -a 1 -x {1.0 5.0 246 ------- null} + -t 1.14997 -s 3 -d 5 -p cbr -e 210 -c 1 -i 267 -a 1 -x {1.0 5.0 246 ------- null} - -t 1.14997 -s 3 -d 5 -p cbr -e 210 -c 1 -i 267 -a 1 -x {1.0 5.0 246 ------- null} h -t 1.14997 -s 3 -d 5 -p cbr -e 210 -c 1 -i 267 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.15 -s 1 -d 2 -p cbr -e 210 -c 1 -i 303 -a 1 -x {1.0 5.0 280 ------- null} - -t 1.15 -s 1 -d 2 -p cbr -e 210 -c 1 -i 303 -a 1 -x {1.0 5.0 280 ------- null} h -t 1.15 -s 1 -d 2 -p cbr -e 210 -c 1 -i 303 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.15037 -s 2 -d 3 -p cbr -e 210 -c 1 -i 284 -a 1 -x {1.0 5.0 262 ------- null} h -t 1.15037 -s 2 -d 3 -p cbr -e 210 -c 1 -i 284 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.15086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 288 -a 1 -x {1.0 5.0 266 ------- null} + -t 1.15086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 288 -a 1 -x {1.0 5.0 266 ------- null} r -t 1.15293 -s 3 -d 5 -p cbr -e 210 -c 1 -i 251 -a 1 -x {1.0 5.0 231 ------- null} r -t 1.15333 -s 2 -d 3 -p cbr -e 210 -c 1 -i 268 -a 1 -x {1.0 5.0 247 ------- null} + -t 1.15333 -s 3 -d 5 -p cbr -e 210 -c 1 -i 268 -a 1 -x {1.0 5.0 247 ------- null} - -t 1.15333 -s 3 -d 5 -p cbr -e 210 -c 1 -i 268 -a 1 -x {1.0 5.0 247 ------- null} h -t 1.15333 -s 3 -d 5 -p cbr -e 210 -c 1 -i 268 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.15373 -s 2 -d 3 -p cbr -e 210 -c 1 -i 285 -a 1 -x {1.0 5.0 263 ------- null} h -t 1.15373 -s 2 -d 3 -p cbr -e 210 -c 1 -i 285 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.15375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 304 -a 1 -x {1.0 5.0 281 ------- null} - -t 1.15375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 304 -a 1 -x {1.0 5.0 281 ------- null} h -t 1.15375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 304 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.15461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 289 -a 1 -x {1.0 5.0 267 ------- null} + -t 1.15461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 289 -a 1 -x {1.0 5.0 267 ------- null} r -t 1.15629 -s 3 -d 5 -p cbr -e 210 -c 1 -i 252 -a 1 -x {1.0 5.0 232 ------- null} r -t 1.15669 -s 2 -d 3 -p cbr -e 210 -c 1 -i 269 -a 1 -x {1.0 5.0 248 ------- null} + -t 1.15669 -s 3 -d 5 -p cbr -e 210 -c 1 -i 269 -a 1 -x {1.0 5.0 248 ------- null} - -t 1.15669 -s 3 -d 5 -p cbr -e 210 -c 1 -i 269 -a 1 -x {1.0 5.0 248 ------- null} h -t 1.15669 -s 3 -d 5 -p cbr -e 210 -c 1 -i 269 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.15709 -s 2 -d 3 -p cbr -e 210 -c 1 -i 286 -a 1 -x {1.0 5.0 264 ------- null} h -t 1.15709 -s 2 -d 3 -p cbr -e 210 -c 1 -i 286 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.1575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 305 -a 1 -x {1.0 5.0 282 ------- null} - -t 1.1575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 305 -a 1 -x {1.0 5.0 282 ------- null} h -t 1.1575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 305 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.15836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 290 -a 1 -x {1.0 5.0 268 ------- null} + -t 1.15836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 290 -a 1 -x {1.0 5.0 268 ------- null} r -t 1.15965 -s 3 -d 5 -p cbr -e 210 -c 1 -i 253 -a 1 -x {1.0 5.0 233 ------- null} r -t 1.16005 -s 2 -d 3 -p cbr -e 210 -c 1 -i 270 -a 1 -x {1.0 5.0 249 ------- null} + -t 1.16005 -s 3 -d 5 -p cbr -e 210 -c 1 -i 270 -a 1 -x {1.0 5.0 249 ------- null} - -t 1.16005 -s 3 -d 5 -p cbr -e 210 -c 1 -i 270 -a 1 -x {1.0 5.0 249 ------- null} h -t 1.16005 -s 3 -d 5 -p cbr -e 210 -c 1 -i 270 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.16045 -s 2 -d 3 -p cbr -e 210 -c 1 -i 287 -a 1 -x {1.0 5.0 265 ------- null} h -t 1.16045 -s 2 -d 3 -p cbr -e 210 -c 1 -i 287 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.16125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 306 -a 1 -x {1.0 5.0 283 ------- null} - -t 1.16125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 306 -a 1 -x {1.0 5.0 283 ------- null} h -t 1.16125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 306 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.16211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 291 -a 1 -x {1.0 5.0 269 ------- null} + -t 1.16211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 291 -a 1 -x {1.0 5.0 269 ------- null} r -t 1.16301 -s 3 -d 5 -p cbr -e 210 -c 1 -i 254 -a 1 -x {1.0 5.0 234 ------- null} r -t 1.16341 -s 2 -d 3 -p cbr -e 210 -c 1 -i 271 -a 1 -x {1.0 5.0 250 ------- null} + -t 1.16341 -s 3 -d 5 -p cbr -e 210 -c 1 -i 271 -a 1 -x {1.0 5.0 250 ------- null} - -t 1.16341 -s 3 -d 5 -p cbr -e 210 -c 1 -i 271 -a 1 -x {1.0 5.0 250 ------- null} h -t 1.16341 -s 3 -d 5 -p cbr -e 210 -c 1 -i 271 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.16381 -s 2 -d 3 -p cbr -e 210 -c 1 -i 288 -a 1 -x {1.0 5.0 266 ------- null} h -t 1.16381 -s 2 -d 3 -p cbr -e 210 -c 1 -i 288 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.165 -s 1 -d 2 -p cbr -e 210 -c 1 -i 307 -a 1 -x {1.0 5.0 284 ------- null} - -t 1.165 -s 1 -d 2 -p cbr -e 210 -c 1 -i 307 -a 1 -x {1.0 5.0 284 ------- null} h -t 1.165 -s 1 -d 2 -p cbr -e 210 -c 1 -i 307 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.16586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 292 -a 1 -x {1.0 5.0 270 ------- null} + -t 1.16586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 292 -a 1 -x {1.0 5.0 270 ------- null} r -t 1.16637 -s 3 -d 5 -p cbr -e 210 -c 1 -i 255 -a 1 -x {1.0 5.0 235 ------- null} r -t 1.16677 -s 2 -d 3 -p cbr -e 210 -c 1 -i 272 -a 1 -x {1.0 5.0 251 ------- null} + -t 1.16677 -s 3 -d 5 -p cbr -e 210 -c 1 -i 272 -a 1 -x {1.0 5.0 251 ------- null} - -t 1.16677 -s 3 -d 5 -p cbr -e 210 -c 1 -i 272 -a 1 -x {1.0 5.0 251 ------- null} h -t 1.16677 -s 3 -d 5 -p cbr -e 210 -c 1 -i 272 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.16717 -s 2 -d 3 -p cbr -e 210 -c 1 -i 289 -a 1 -x {1.0 5.0 267 ------- null} h -t 1.16717 -s 2 -d 3 -p cbr -e 210 -c 1 -i 289 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.16789 -s 2 -d 0 -p ack -e 40 -c 0 -i 265 -a 0 -x {4.0 0.0 8 ------- null} + -t 1.16789 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {0.0 4.0 12 ------- null} - -t 1.16789 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {0.0 4.0 12 ------- null} h -t 1.16789 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {0.0 4.0 -1 ------- null} + -t 1.16875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 309 -a 1 -x {1.0 5.0 285 ------- null} - -t 1.16875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 309 -a 1 -x {1.0 5.0 285 ------- null} h -t 1.16875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 309 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.16917 -s 4 -d 3 -p ack -e 40 -c 0 -i 294 -a 0 -x {4.0 0.0 10 ------- null} + -t 1.16917 -s 3 -d 2 -p ack -e 40 -c 0 -i 294 -a 0 -x {4.0 0.0 10 ------- null} - -t 1.16917 -s 3 -d 2 -p ack -e 40 -c 0 -i 294 -a 0 -x {4.0 0.0 10 ------- null} h -t 1.16917 -s 3 -d 2 -p ack -e 40 -c 0 -i 294 -a 0 -x {4.0 0.0 -1 ------- null} r -t 1.16961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 293 -a 1 -x {1.0 5.0 271 ------- null} + -t 1.16961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 293 -a 1 -x {1.0 5.0 271 ------- null} r -t 1.16973 -s 3 -d 5 -p cbr -e 210 -c 1 -i 256 -a 1 -x {1.0 5.0 236 ------- null} r -t 1.17013 -s 2 -d 3 -p cbr -e 210 -c 1 -i 273 -a 1 -x {1.0 5.0 252 ------- null} + -t 1.17013 -s 3 -d 5 -p cbr -e 210 -c 1 -i 273 -a 1 -x {1.0 5.0 252 ------- null} - -t 1.17013 -s 3 -d 5 -p cbr -e 210 -c 1 -i 273 -a 1 -x {1.0 5.0 252 ------- null} h -t 1.17013 -s 3 -d 5 -p cbr -e 210 -c 1 -i 273 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.17021 -s 3 -d 2 -p ack -e 40 -c 0 -i 280 -a 0 -x {4.0 0.0 9 ------- null} + -t 1.17021 -s 2 -d 0 -p ack -e 40 -c 0 -i 280 -a 0 -x {4.0 0.0 9 ------- null} - -t 1.17021 -s 2 -d 0 -p ack -e 40 -c 0 -i 280 -a 0 -x {4.0 0.0 9 ------- null} h -t 1.17021 -s 2 -d 0 -p ack -e 40 -c 0 -i 280 -a 0 -x {4.0 0.0 -1 ------- null} - -t 1.17053 -s 2 -d 3 -p cbr -e 210 -c 1 -i 290 -a 1 -x {1.0 5.0 268 ------- null} h -t 1.17053 -s 2 -d 3 -p cbr -e 210 -c 1 -i 290 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.1725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 310 -a 1 -x {1.0 5.0 286 ------- null} - -t 1.1725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 310 -a 1 -x {1.0 5.0 286 ------- null} h -t 1.1725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 310 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.17309 -s 3 -d 5 -p cbr -e 210 -c 1 -i 257 -a 1 -x {1.0 5.0 237 ------- null} r -t 1.17336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 295 -a 1 -x {1.0 5.0 272 ------- null} + -t 1.17336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 295 -a 1 -x {1.0 5.0 272 ------- null} r -t 1.17349 -s 2 -d 3 -p cbr -e 210 -c 1 -i 274 -a 1 -x {1.0 5.0 253 ------- null} + -t 1.17349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 274 -a 1 -x {1.0 5.0 253 ------- null} - -t 1.17349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 274 -a 1 -x {1.0 5.0 253 ------- null} h -t 1.17349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 274 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.17389 -s 2 -d 3 -p cbr -e 210 -c 1 -i 291 -a 1 -x {1.0 5.0 269 ------- null} h -t 1.17389 -s 2 -d 3 -p cbr -e 210 -c 1 -i 291 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.17625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 311 -a 1 -x {1.0 5.0 287 ------- null} - -t 1.17625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 311 -a 1 -x {1.0 5.0 287 ------- null} h -t 1.17625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 311 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.17645 -s 3 -d 5 -p cbr -e 210 -c 1 -i 258 -a 1 -x {1.0 5.0 238 ------- null} r -t 1.17685 -s 2 -d 3 -p cbr -e 210 -c 1 -i 275 -a 1 -x {1.0 5.0 254 ------- null} + -t 1.17685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 275 -a 1 -x {1.0 5.0 254 ------- null} - -t 1.17685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 275 -a 1 -x {1.0 5.0 254 ------- null} h -t 1.17685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 275 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.17711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 296 -a 1 -x {1.0 5.0 273 ------- null} + -t 1.17711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 296 -a 1 -x {1.0 5.0 273 ------- null} - -t 1.17725 -s 2 -d 3 -p cbr -e 210 -c 1 -i 292 -a 1 -x {1.0 5.0 270 ------- null} h -t 1.17725 -s 2 -d 3 -p cbr -e 210 -c 1 -i 292 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.17981 -s 3 -d 5 -p cbr -e 210 -c 1 -i 259 -a 1 -x {1.0 5.0 239 ------- null} + -t 1.18 -s 1 -d 2 -p cbr -e 210 -c 1 -i 312 -a 1 -x {1.0 5.0 288 ------- null} - -t 1.18 -s 1 -d 2 -p cbr -e 210 -c 1 -i 312 -a 1 -x {1.0 5.0 288 ------- null} h -t 1.18 -s 1 -d 2 -p cbr -e 210 -c 1 -i 312 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.18021 -s 2 -d 3 -p cbr -e 210 -c 1 -i 276 -a 1 -x {1.0 5.0 255 ------- null} + -t 1.18021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 276 -a 1 -x {1.0 5.0 255 ------- null} - -t 1.18021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 276 -a 1 -x {1.0 5.0 255 ------- null} h -t 1.18021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 276 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.18061 -s 2 -d 3 -p cbr -e 210 -c 1 -i 293 -a 1 -x {1.0 5.0 271 ------- null} h -t 1.18061 -s 2 -d 3 -p cbr -e 210 -c 1 -i 293 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.18086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 297 -a 1 -x {1.0 5.0 274 ------- null} + -t 1.18086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 297 -a 1 -x {1.0 5.0 274 ------- null} r -t 1.18317 -s 3 -d 5 -p cbr -e 210 -c 1 -i 260 -a 1 -x {1.0 5.0 240 ------- null} r -t 1.18357 -s 2 -d 3 -p cbr -e 210 -c 1 -i 277 -a 1 -x {1.0 5.0 256 ------- null} + -t 1.18357 -s 3 -d 5 -p cbr -e 210 -c 1 -i 277 -a 1 -x {1.0 5.0 256 ------- null} - -t 1.18357 -s 3 -d 5 -p cbr -e 210 -c 1 -i 277 -a 1 -x {1.0 5.0 256 ------- null} h -t 1.18357 -s 3 -d 5 -p cbr -e 210 -c 1 -i 277 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.18375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 313 -a 1 -x {1.0 5.0 289 ------- null} - -t 1.18375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 313 -a 1 -x {1.0 5.0 289 ------- null} h -t 1.18375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 313 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.18397 -s 2 -d 3 -p cbr -e 210 -c 1 -i 295 -a 1 -x {1.0 5.0 272 ------- null} h -t 1.18397 -s 2 -d 3 -p cbr -e 210 -c 1 -i 295 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.18461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 298 -a 1 -x {1.0 5.0 275 ------- null} + -t 1.18461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 298 -a 1 -x {1.0 5.0 275 ------- null} r -t 1.18653 -s 3 -d 5 -p cbr -e 210 -c 1 -i 261 -a 1 -x {1.0 5.0 241 ------- null} r -t 1.18693 -s 2 -d 3 -p cbr -e 210 -c 1 -i 278 -a 1 -x {1.0 5.0 257 ------- null} + -t 1.18693 -s 3 -d 5 -p cbr -e 210 -c 1 -i 278 -a 1 -x {1.0 5.0 257 ------- null} - -t 1.18693 -s 3 -d 5 -p cbr -e 210 -c 1 -i 278 -a 1 -x {1.0 5.0 257 ------- null} h -t 1.18693 -s 3 -d 5 -p cbr -e 210 -c 1 -i 278 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.18733 -s 2 -d 3 -p cbr -e 210 -c 1 -i 296 -a 1 -x {1.0 5.0 273 ------- null} h -t 1.18733 -s 2 -d 3 -p cbr -e 210 -c 1 -i 296 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.1875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 314 -a 1 -x {1.0 5.0 290 ------- null} - -t 1.1875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 314 -a 1 -x {1.0 5.0 290 ------- null} h -t 1.1875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 314 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.18836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 299 -a 1 -x {1.0 5.0 276 ------- null} + -t 1.18836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 299 -a 1 -x {1.0 5.0 276 ------- null} r -t 1.18989 -s 3 -d 5 -p cbr -e 210 -c 1 -i 262 -a 1 -x {1.0 5.0 242 ------- null} r -t 1.19029 -s 2 -d 3 -p cbr -e 210 -c 1 -i 279 -a 1 -x {1.0 5.0 258 ------- null} + -t 1.19029 -s 3 -d 5 -p cbr -e 210 -c 1 -i 279 -a 1 -x {1.0 5.0 258 ------- null} - -t 1.19029 -s 3 -d 5 -p cbr -e 210 -c 1 -i 279 -a 1 -x {1.0 5.0 258 ------- null} h -t 1.19029 -s 3 -d 5 -p cbr -e 210 -c 1 -i 279 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.19069 -s 2 -d 3 -p cbr -e 210 -c 1 -i 297 -a 1 -x {1.0 5.0 274 ------- null} h -t 1.19069 -s 2 -d 3 -p cbr -e 210 -c 1 -i 297 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.19125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 315 -a 1 -x {1.0 5.0 291 ------- null} - -t 1.19125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 315 -a 1 -x {1.0 5.0 291 ------- null} h -t 1.19125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 315 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.19211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 300 -a 1 -x {1.0 5.0 277 ------- null} + -t 1.19211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 300 -a 1 -x {1.0 5.0 277 ------- null} r -t 1.19325 -s 3 -d 5 -p cbr -e 210 -c 1 -i 263 -a 1 -x {1.0 5.0 243 ------- null} r -t 1.19365 -s 2 -d 3 -p cbr -e 210 -c 1 -i 281 -a 1 -x {1.0 5.0 259 ------- null} + -t 1.19365 -s 3 -d 5 -p cbr -e 210 -c 1 -i 281 -a 1 -x {1.0 5.0 259 ------- null} - -t 1.19365 -s 3 -d 5 -p cbr -e 210 -c 1 -i 281 -a 1 -x {1.0 5.0 259 ------- null} h -t 1.19365 -s 3 -d 5 -p cbr -e 210 -c 1 -i 281 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.19405 -s 2 -d 3 -p cbr -e 210 -c 1 -i 298 -a 1 -x {1.0 5.0 275 ------- null} h -t 1.19405 -s 2 -d 3 -p cbr -e 210 -c 1 -i 298 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.195 -s 1 -d 2 -p cbr -e 210 -c 1 -i 316 -a 1 -x {1.0 5.0 292 ------- null} - -t 1.195 -s 1 -d 2 -p cbr -e 210 -c 1 -i 316 -a 1 -x {1.0 5.0 292 ------- null} h -t 1.195 -s 1 -d 2 -p cbr -e 210 -c 1 -i 316 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.19586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 301 -a 1 -x {1.0 5.0 278 ------- null} + -t 1.19586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 301 -a 1 -x {1.0 5.0 278 ------- null} r -t 1.19661 -s 3 -d 5 -p cbr -e 210 -c 1 -i 264 -a 1 -x {1.0 5.0 244 ------- null} r -t 1.19701 -s 2 -d 3 -p cbr -e 210 -c 1 -i 282 -a 1 -x {1.0 5.0 260 ------- null} + -t 1.19701 -s 3 -d 5 -p cbr -e 210 -c 1 -i 282 -a 1 -x {1.0 5.0 260 ------- null} - -t 1.19701 -s 3 -d 5 -p cbr -e 210 -c 1 -i 282 -a 1 -x {1.0 5.0 260 ------- null} h -t 1.19701 -s 3 -d 5 -p cbr -e 210 -c 1 -i 282 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.19741 -s 2 -d 3 -p cbr -e 210 -c 1 -i 299 -a 1 -x {1.0 5.0 276 ------- null} h -t 1.19741 -s 2 -d 3 -p cbr -e 210 -c 1 -i 299 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.19875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 317 -a 1 -x {1.0 5.0 293 ------- null} - -t 1.19875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 317 -a 1 -x {1.0 5.0 293 ------- null} h -t 1.19875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 317 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.19961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 302 -a 1 -x {1.0 5.0 279 ------- null} + -t 1.19961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 302 -a 1 -x {1.0 5.0 279 ------- null} r -t 1.19997 -s 3 -d 5 -p cbr -e 210 -c 1 -i 266 -a 1 -x {1.0 5.0 245 ------- null} r -t 1.20037 -s 2 -d 3 -p cbr -e 210 -c 1 -i 283 -a 1 -x {1.0 5.0 261 ------- null} + -t 1.20037 -s 3 -d 5 -p cbr -e 210 -c 1 -i 283 -a 1 -x {1.0 5.0 261 ------- null} - -t 1.20037 -s 3 -d 5 -p cbr -e 210 -c 1 -i 283 -a 1 -x {1.0 5.0 261 ------- null} h -t 1.20037 -s 3 -d 5 -p cbr -e 210 -c 1 -i 283 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.20077 -s 2 -d 3 -p cbr -e 210 -c 1 -i 300 -a 1 -x {1.0 5.0 277 ------- null} h -t 1.20077 -s 2 -d 3 -p cbr -e 210 -c 1 -i 300 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.2025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 318 -a 1 -x {1.0 5.0 294 ------- null} - -t 1.2025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 318 -a 1 -x {1.0 5.0 294 ------- null} h -t 1.2025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 318 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.20333 -s 3 -d 5 -p cbr -e 210 -c 1 -i 267 -a 1 -x {1.0 5.0 246 ------- null} r -t 1.20336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 303 -a 1 -x {1.0 5.0 280 ------- null} + -t 1.20336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 303 -a 1 -x {1.0 5.0 280 ------- null} r -t 1.20373 -s 2 -d 3 -p cbr -e 210 -c 1 -i 284 -a 1 -x {1.0 5.0 262 ------- null} + -t 1.20373 -s 3 -d 5 -p cbr -e 210 -c 1 -i 284 -a 1 -x {1.0 5.0 262 ------- null} - -t 1.20373 -s 3 -d 5 -p cbr -e 210 -c 1 -i 284 -a 1 -x {1.0 5.0 262 ------- null} h -t 1.20373 -s 3 -d 5 -p cbr -e 210 -c 1 -i 284 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.20413 -s 2 -d 3 -p cbr -e 210 -c 1 -i 301 -a 1 -x {1.0 5.0 278 ------- null} h -t 1.20413 -s 2 -d 3 -p cbr -e 210 -c 1 -i 301 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.20625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 319 -a 1 -x {1.0 5.0 295 ------- null} - -t 1.20625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 319 -a 1 -x {1.0 5.0 295 ------- null} h -t 1.20625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 319 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.20669 -s 3 -d 5 -p cbr -e 210 -c 1 -i 268 -a 1 -x {1.0 5.0 247 ------- null} r -t 1.20709 -s 2 -d 3 -p cbr -e 210 -c 1 -i 285 -a 1 -x {1.0 5.0 263 ------- null} + -t 1.20709 -s 3 -d 5 -p cbr -e 210 -c 1 -i 285 -a 1 -x {1.0 5.0 263 ------- null} - -t 1.20709 -s 3 -d 5 -p cbr -e 210 -c 1 -i 285 -a 1 -x {1.0 5.0 263 ------- null} h -t 1.20709 -s 3 -d 5 -p cbr -e 210 -c 1 -i 285 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.20711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 304 -a 1 -x {1.0 5.0 281 ------- null} + -t 1.20711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 304 -a 1 -x {1.0 5.0 281 ------- null} - -t 1.20749 -s 2 -d 3 -p cbr -e 210 -c 1 -i 302 -a 1 -x {1.0 5.0 279 ------- null} h -t 1.20749 -s 2 -d 3 -p cbr -e 210 -c 1 -i 302 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.21 -s 1 -d 2 -p cbr -e 210 -c 1 -i 320 -a 1 -x {1.0 5.0 296 ------- null} - -t 1.21 -s 1 -d 2 -p cbr -e 210 -c 1 -i 320 -a 1 -x {1.0 5.0 296 ------- null} h -t 1.21 -s 1 -d 2 -p cbr -e 210 -c 1 -i 320 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.21005 -s 3 -d 5 -p cbr -e 210 -c 1 -i 269 -a 1 -x {1.0 5.0 248 ------- null} r -t 1.21045 -s 2 -d 3 -p cbr -e 210 -c 1 -i 286 -a 1 -x {1.0 5.0 264 ------- null} + -t 1.21045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 286 -a 1 -x {1.0 5.0 264 ------- null} - -t 1.21045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 286 -a 1 -x {1.0 5.0 264 ------- null} h -t 1.21045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 286 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.21085 -s 2 -d 3 -p cbr -e 210 -c 1 -i 303 -a 1 -x {1.0 5.0 280 ------- null} h -t 1.21085 -s 2 -d 3 -p cbr -e 210 -c 1 -i 303 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.21086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 305 -a 1 -x {1.0 5.0 282 ------- null} + -t 1.21086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 305 -a 1 -x {1.0 5.0 282 ------- null} r -t 1.21341 -s 3 -d 5 -p cbr -e 210 -c 1 -i 270 -a 1 -x {1.0 5.0 249 ------- null} + -t 1.21375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 321 -a 1 -x {1.0 5.0 297 ------- null} - -t 1.21375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 321 -a 1 -x {1.0 5.0 297 ------- null} h -t 1.21375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 321 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.21381 -s 2 -d 3 -p cbr -e 210 -c 1 -i 287 -a 1 -x {1.0 5.0 265 ------- null} + -t 1.21381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 287 -a 1 -x {1.0 5.0 265 ------- null} - -t 1.21381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 287 -a 1 -x {1.0 5.0 265 ------- null} h -t 1.21381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 287 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.21421 -s 2 -d 3 -p cbr -e 210 -c 1 -i 304 -a 1 -x {1.0 5.0 281 ------- null} h -t 1.21421 -s 2 -d 3 -p cbr -e 210 -c 1 -i 304 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.21461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 306 -a 1 -x {1.0 5.0 283 ------- null} + -t 1.21461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 306 -a 1 -x {1.0 5.0 283 ------- null} r -t 1.21677 -s 3 -d 5 -p cbr -e 210 -c 1 -i 271 -a 1 -x {1.0 5.0 250 ------- null} r -t 1.21717 -s 2 -d 3 -p cbr -e 210 -c 1 -i 288 -a 1 -x {1.0 5.0 266 ------- null} + -t 1.21717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 288 -a 1 -x {1.0 5.0 266 ------- null} - -t 1.21717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 288 -a 1 -x {1.0 5.0 266 ------- null} h -t 1.21717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 288 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.2175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 322 -a 1 -x {1.0 5.0 298 ------- null} - -t 1.2175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 322 -a 1 -x {1.0 5.0 298 ------- null} h -t 1.2175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 322 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.21757 -s 2 -d 3 -p cbr -e 210 -c 1 -i 305 -a 1 -x {1.0 5.0 282 ------- null} h -t 1.21757 -s 2 -d 3 -p cbr -e 210 -c 1 -i 305 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.21836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 307 -a 1 -x {1.0 5.0 284 ------- null} + -t 1.21836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 307 -a 1 -x {1.0 5.0 284 ------- null} r -t 1.21981 -s 3 -d 2 -p ack -e 40 -c 0 -i 294 -a 0 -x {4.0 0.0 10 ------- null} + -t 1.21981 -s 2 -d 0 -p ack -e 40 -c 0 -i 294 -a 0 -x {4.0 0.0 10 ------- null} - -t 1.21981 -s 2 -d 0 -p ack -e 40 -c 0 -i 294 -a 0 -x {4.0 0.0 10 ------- null} h -t 1.21981 -s 2 -d 0 -p ack -e 40 -c 0 -i 294 -a 0 -x {4.0 0.0 -1 ------- null} r -t 1.22013 -s 3 -d 5 -p cbr -e 210 -c 1 -i 272 -a 1 -x {1.0 5.0 251 ------- null} r -t 1.22053 -s 2 -d 3 -p cbr -e 210 -c 1 -i 289 -a 1 -x {1.0 5.0 267 ------- null} + -t 1.22053 -s 3 -d 5 -p cbr -e 210 -c 1 -i 289 -a 1 -x {1.0 5.0 267 ------- null} - -t 1.22053 -s 3 -d 5 -p cbr -e 210 -c 1 -i 289 -a 1 -x {1.0 5.0 267 ------- null} h -t 1.22053 -s 3 -d 5 -p cbr -e 210 -c 1 -i 289 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.22085 -s 2 -d 0 -p ack -e 40 -c 0 -i 280 -a 0 -x {4.0 0.0 9 ------- null} + -t 1.22085 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 323 -a 0 -x {0.0 4.0 13 ------- null} - -t 1.22085 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 323 -a 0 -x {0.0 4.0 13 ------- null} h -t 1.22085 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 323 -a 0 -x {0.0 4.0 -1 ------- null} - -t 1.22093 -s 2 -d 3 -p cbr -e 210 -c 1 -i 306 -a 1 -x {1.0 5.0 283 ------- null} h -t 1.22093 -s 2 -d 3 -p cbr -e 210 -c 1 -i 306 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.22125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 324 -a 1 -x {1.0 5.0 299 ------- null} - -t 1.22125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 324 -a 1 -x {1.0 5.0 299 ------- null} h -t 1.22125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 324 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.22211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 309 -a 1 -x {1.0 5.0 285 ------- null} + -t 1.22211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 309 -a 1 -x {1.0 5.0 285 ------- null} r -t 1.22349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 273 -a 1 -x {1.0 5.0 252 ------- null} r -t 1.22389 -s 2 -d 3 -p cbr -e 210 -c 1 -i 290 -a 1 -x {1.0 5.0 268 ------- null} + -t 1.22389 -s 3 -d 5 -p cbr -e 210 -c 1 -i 290 -a 1 -x {1.0 5.0 268 ------- null} - -t 1.22389 -s 3 -d 5 -p cbr -e 210 -c 1 -i 290 -a 1 -x {1.0 5.0 268 ------- null} h -t 1.22389 -s 3 -d 5 -p cbr -e 210 -c 1 -i 290 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.22429 -s 2 -d 3 -p cbr -e 210 -c 1 -i 307 -a 1 -x {1.0 5.0 284 ------- null} h -t 1.22429 -s 2 -d 3 -p cbr -e 210 -c 1 -i 307 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 325 -a 1 -x {1.0 5.0 300 ------- null} - -t 1.225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 325 -a 1 -x {1.0 5.0 300 ------- null} h -t 1.225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 325 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.22586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 310 -a 1 -x {1.0 5.0 286 ------- null} + -t 1.22586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 310 -a 1 -x {1.0 5.0 286 ------- null} r -t 1.22685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 274 -a 1 -x {1.0 5.0 253 ------- null} r -t 1.22725 -s 2 -d 3 -p cbr -e 210 -c 1 -i 291 -a 1 -x {1.0 5.0 269 ------- null} + -t 1.22725 -s 3 -d 5 -p cbr -e 210 -c 1 -i 291 -a 1 -x {1.0 5.0 269 ------- null} - -t 1.22725 -s 3 -d 5 -p cbr -e 210 -c 1 -i 291 -a 1 -x {1.0 5.0 269 ------- null} h -t 1.22725 -s 3 -d 5 -p cbr -e 210 -c 1 -i 291 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.22765 -s 2 -d 3 -p cbr -e 210 -c 1 -i 309 -a 1 -x {1.0 5.0 285 ------- null} h -t 1.22765 -s 2 -d 3 -p cbr -e 210 -c 1 -i 309 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.22875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 326 -a 1 -x {1.0 5.0 301 ------- null} - -t 1.22875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 326 -a 1 -x {1.0 5.0 301 ------- null} h -t 1.22875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 326 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.22961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 311 -a 1 -x {1.0 5.0 287 ------- null} + -t 1.22961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 311 -a 1 -x {1.0 5.0 287 ------- null} r -t 1.23021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 275 -a 1 -x {1.0 5.0 254 ------- null} r -t 1.23061 -s 2 -d 3 -p cbr -e 210 -c 1 -i 292 -a 1 -x {1.0 5.0 270 ------- null} + -t 1.23061 -s 3 -d 5 -p cbr -e 210 -c 1 -i 292 -a 1 -x {1.0 5.0 270 ------- null} - -t 1.23061 -s 3 -d 5 -p cbr -e 210 -c 1 -i 292 -a 1 -x {1.0 5.0 270 ------- null} h -t 1.23061 -s 3 -d 5 -p cbr -e 210 -c 1 -i 292 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.23101 -s 2 -d 3 -p cbr -e 210 -c 1 -i 310 -a 1 -x {1.0 5.0 286 ------- null} h -t 1.23101 -s 2 -d 3 -p cbr -e 210 -c 1 -i 310 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.2325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 327 -a 1 -x {1.0 5.0 302 ------- null} - -t 1.2325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 327 -a 1 -x {1.0 5.0 302 ------- null} h -t 1.2325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 327 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.23336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 312 -a 1 -x {1.0 5.0 288 ------- null} + -t 1.23336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 312 -a 1 -x {1.0 5.0 288 ------- null} r -t 1.23357 -s 3 -d 5 -p cbr -e 210 -c 1 -i 276 -a 1 -x {1.0 5.0 255 ------- null} r -t 1.23389 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {0.0 4.0 12 ------- null} + -t 1.23389 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {0.0 4.0 12 ------- null} r -t 1.23397 -s 2 -d 3 -p cbr -e 210 -c 1 -i 293 -a 1 -x {1.0 5.0 271 ------- null} + -t 1.23397 -s 3 -d 5 -p cbr -e 210 -c 1 -i 293 -a 1 -x {1.0 5.0 271 ------- null} - -t 1.23397 -s 3 -d 5 -p cbr -e 210 -c 1 -i 293 -a 1 -x {1.0 5.0 271 ------- null} h -t 1.23397 -s 3 -d 5 -p cbr -e 210 -c 1 -i 293 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.23437 -s 2 -d 3 -p cbr -e 210 -c 1 -i 311 -a 1 -x {1.0 5.0 287 ------- null} h -t 1.23437 -s 2 -d 3 -p cbr -e 210 -c 1 -i 311 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.23625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 328 -a 1 -x {1.0 5.0 303 ------- null} - -t 1.23625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 328 -a 1 -x {1.0 5.0 303 ------- null} h -t 1.23625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 328 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.23693 -s 3 -d 5 -p cbr -e 210 -c 1 -i 277 -a 1 -x {1.0 5.0 256 ------- null} r -t 1.23711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 313 -a 1 -x {1.0 5.0 289 ------- null} + -t 1.23711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 313 -a 1 -x {1.0 5.0 289 ------- null} r -t 1.23733 -s 2 -d 3 -p cbr -e 210 -c 1 -i 295 -a 1 -x {1.0 5.0 272 ------- null} + -t 1.23733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 295 -a 1 -x {1.0 5.0 272 ------- null} - -t 1.23733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 295 -a 1 -x {1.0 5.0 272 ------- null} h -t 1.23733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 295 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.23773 -s 2 -d 3 -p cbr -e 210 -c 1 -i 312 -a 1 -x {1.0 5.0 288 ------- null} h -t 1.23773 -s 2 -d 3 -p cbr -e 210 -c 1 -i 312 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.24 -s 1 -d 2 -p cbr -e 210 -c 1 -i 329 -a 1 -x {1.0 5.0 304 ------- null} - -t 1.24 -s 1 -d 2 -p cbr -e 210 -c 1 -i 329 -a 1 -x {1.0 5.0 304 ------- null} h -t 1.24 -s 1 -d 2 -p cbr -e 210 -c 1 -i 329 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.24029 -s 3 -d 5 -p cbr -e 210 -c 1 -i 278 -a 1 -x {1.0 5.0 257 ------- null} r -t 1.24069 -s 2 -d 3 -p cbr -e 210 -c 1 -i 296 -a 1 -x {1.0 5.0 273 ------- null} + -t 1.24069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 296 -a 1 -x {1.0 5.0 273 ------- null} - -t 1.24069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 296 -a 1 -x {1.0 5.0 273 ------- null} h -t 1.24069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 296 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.24086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 314 -a 1 -x {1.0 5.0 290 ------- null} + -t 1.24086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 314 -a 1 -x {1.0 5.0 290 ------- null} - -t 1.24109 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {0.0 4.0 12 ------- null} h -t 1.24109 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {0.0 4.0 -1 ------- null} r -t 1.24365 -s 3 -d 5 -p cbr -e 210 -c 1 -i 279 -a 1 -x {1.0 5.0 258 ------- null} + -t 1.24375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 330 -a 1 -x {1.0 5.0 305 ------- null} - -t 1.24375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 330 -a 1 -x {1.0 5.0 305 ------- null} h -t 1.24375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 330 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.24405 -s 2 -d 3 -p cbr -e 210 -c 1 -i 297 -a 1 -x {1.0 5.0 274 ------- null} + -t 1.24405 -s 3 -d 5 -p cbr -e 210 -c 1 -i 297 -a 1 -x {1.0 5.0 274 ------- null} - -t 1.24405 -s 3 -d 5 -p cbr -e 210 -c 1 -i 297 -a 1 -x {1.0 5.0 274 ------- null} h -t 1.24405 -s 3 -d 5 -p cbr -e 210 -c 1 -i 297 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.24461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 315 -a 1 -x {1.0 5.0 291 ------- null} + -t 1.24461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 315 -a 1 -x {1.0 5.0 291 ------- null} r -t 1.24701 -s 3 -d 5 -p cbr -e 210 -c 1 -i 281 -a 1 -x {1.0 5.0 259 ------- null} r -t 1.24741 -s 2 -d 3 -p cbr -e 210 -c 1 -i 298 -a 1 -x {1.0 5.0 275 ------- null} + -t 1.24741 -s 3 -d 5 -p cbr -e 210 -c 1 -i 298 -a 1 -x {1.0 5.0 275 ------- null} - -t 1.24741 -s 3 -d 5 -p cbr -e 210 -c 1 -i 298 -a 1 -x {1.0 5.0 275 ------- null} h -t 1.24741 -s 3 -d 5 -p cbr -e 210 -c 1 -i 298 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.2475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 331 -a 1 -x {1.0 5.0 306 ------- null} - -t 1.2475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 331 -a 1 -x {1.0 5.0 306 ------- null} h -t 1.2475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 331 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.24836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 316 -a 1 -x {1.0 5.0 292 ------- null} + -t 1.24836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 316 -a 1 -x {1.0 5.0 292 ------- null} r -t 1.25037 -s 3 -d 5 -p cbr -e 210 -c 1 -i 282 -a 1 -x {1.0 5.0 260 ------- null} r -t 1.25077 -s 2 -d 3 -p cbr -e 210 -c 1 -i 299 -a 1 -x {1.0 5.0 276 ------- null} + -t 1.25077 -s 3 -d 5 -p cbr -e 210 -c 1 -i 299 -a 1 -x {1.0 5.0 276 ------- null} - -t 1.25077 -s 3 -d 5 -p cbr -e 210 -c 1 -i 299 -a 1 -x {1.0 5.0 276 ------- null} h -t 1.25077 -s 3 -d 5 -p cbr -e 210 -c 1 -i 299 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.25125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 332 -a 1 -x {1.0 5.0 307 ------- null} - -t 1.25125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 332 -a 1 -x {1.0 5.0 307 ------- null} h -t 1.25125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 332 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.25211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 317 -a 1 -x {1.0 5.0 293 ------- null} + -t 1.25211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 317 -a 1 -x {1.0 5.0 293 ------- null} r -t 1.25373 -s 3 -d 5 -p cbr -e 210 -c 1 -i 283 -a 1 -x {1.0 5.0 261 ------- null} r -t 1.25413 -s 2 -d 3 -p cbr -e 210 -c 1 -i 300 -a 1 -x {1.0 5.0 277 ------- null} + -t 1.25413 -s 3 -d 5 -p cbr -e 210 -c 1 -i 300 -a 1 -x {1.0 5.0 277 ------- null} - -t 1.25413 -s 3 -d 5 -p cbr -e 210 -c 1 -i 300 -a 1 -x {1.0 5.0 277 ------- null} h -t 1.25413 -s 3 -d 5 -p cbr -e 210 -c 1 -i 300 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.255 -s 1 -d 2 -p cbr -e 210 -c 1 -i 333 -a 1 -x {1.0 5.0 308 ------- null} - -t 1.255 -s 1 -d 2 -p cbr -e 210 -c 1 -i 333 -a 1 -x {1.0 5.0 308 ------- null} h -t 1.255 -s 1 -d 2 -p cbr -e 210 -c 1 -i 333 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.25586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 318 -a 1 -x {1.0 5.0 294 ------- null} + -t 1.25586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 318 -a 1 -x {1.0 5.0 294 ------- null} r -t 1.25709 -s 3 -d 5 -p cbr -e 210 -c 1 -i 284 -a 1 -x {1.0 5.0 262 ------- null} - -t 1.25709 -s 2 -d 3 -p cbr -e 210 -c 1 -i 313 -a 1 -x {1.0 5.0 289 ------- null} h -t 1.25709 -s 2 -d 3 -p cbr -e 210 -c 1 -i 313 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.25749 -s 2 -d 3 -p cbr -e 210 -c 1 -i 301 -a 1 -x {1.0 5.0 278 ------- null} + -t 1.25749 -s 3 -d 5 -p cbr -e 210 -c 1 -i 301 -a 1 -x {1.0 5.0 278 ------- null} - -t 1.25749 -s 3 -d 5 -p cbr -e 210 -c 1 -i 301 -a 1 -x {1.0 5.0 278 ------- null} h -t 1.25749 -s 3 -d 5 -p cbr -e 210 -c 1 -i 301 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.25875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 334 -a 1 -x {1.0 5.0 309 ------- null} - -t 1.25875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 334 -a 1 -x {1.0 5.0 309 ------- null} h -t 1.25875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 334 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.25961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 319 -a 1 -x {1.0 5.0 295 ------- null} + -t 1.25961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 319 -a 1 -x {1.0 5.0 295 ------- null} r -t 1.26045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 285 -a 1 -x {1.0 5.0 263 ------- null} - -t 1.26045 -s 2 -d 3 -p cbr -e 210 -c 1 -i 314 -a 1 -x {1.0 5.0 290 ------- null} h -t 1.26045 -s 2 -d 3 -p cbr -e 210 -c 1 -i 314 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.26085 -s 2 -d 3 -p cbr -e 210 -c 1 -i 302 -a 1 -x {1.0 5.0 279 ------- null} + -t 1.26085 -s 3 -d 5 -p cbr -e 210 -c 1 -i 302 -a 1 -x {1.0 5.0 279 ------- null} - -t 1.26085 -s 3 -d 5 -p cbr -e 210 -c 1 -i 302 -a 1 -x {1.0 5.0 279 ------- null} h -t 1.26085 -s 3 -d 5 -p cbr -e 210 -c 1 -i 302 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.2625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 335 -a 1 -x {1.0 5.0 310 ------- null} - -t 1.2625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 335 -a 1 -x {1.0 5.0 310 ------- null} h -t 1.2625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 335 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.26336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 320 -a 1 -x {1.0 5.0 296 ------- null} + -t 1.26336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 320 -a 1 -x {1.0 5.0 296 ------- null} r -t 1.26381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 286 -a 1 -x {1.0 5.0 264 ------- null} - -t 1.26381 -s 2 -d 3 -p cbr -e 210 -c 1 -i 315 -a 1 -x {1.0 5.0 291 ------- null} h -t 1.26381 -s 2 -d 3 -p cbr -e 210 -c 1 -i 315 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.26421 -s 2 -d 3 -p cbr -e 210 -c 1 -i 303 -a 1 -x {1.0 5.0 280 ------- null} + -t 1.26421 -s 3 -d 5 -p cbr -e 210 -c 1 -i 303 -a 1 -x {1.0 5.0 280 ------- null} - -t 1.26421 -s 3 -d 5 -p cbr -e 210 -c 1 -i 303 -a 1 -x {1.0 5.0 280 ------- null} h -t 1.26421 -s 3 -d 5 -p cbr -e 210 -c 1 -i 303 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.26625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 336 -a 1 -x {1.0 5.0 311 ------- null} - -t 1.26625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 336 -a 1 -x {1.0 5.0 311 ------- null} h -t 1.26625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 336 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.26711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 321 -a 1 -x {1.0 5.0 297 ------- null} + -t 1.26711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 321 -a 1 -x {1.0 5.0 297 ------- null} r -t 1.26717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 287 -a 1 -x {1.0 5.0 265 ------- null} - -t 1.26717 -s 2 -d 3 -p cbr -e 210 -c 1 -i 316 -a 1 -x {1.0 5.0 292 ------- null} h -t 1.26717 -s 2 -d 3 -p cbr -e 210 -c 1 -i 316 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.26757 -s 2 -d 3 -p cbr -e 210 -c 1 -i 304 -a 1 -x {1.0 5.0 281 ------- null} + -t 1.26757 -s 3 -d 5 -p cbr -e 210 -c 1 -i 304 -a 1 -x {1.0 5.0 281 ------- null} - -t 1.26757 -s 3 -d 5 -p cbr -e 210 -c 1 -i 304 -a 1 -x {1.0 5.0 281 ------- null} h -t 1.26757 -s 3 -d 5 -p cbr -e 210 -c 1 -i 304 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.27 -s 1 -d 2 -p cbr -e 210 -c 1 -i 337 -a 1 -x {1.0 5.0 312 ------- null} - -t 1.27 -s 1 -d 2 -p cbr -e 210 -c 1 -i 337 -a 1 -x {1.0 5.0 312 ------- null} h -t 1.27 -s 1 -d 2 -p cbr -e 210 -c 1 -i 337 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.27045 -s 2 -d 0 -p ack -e 40 -c 0 -i 294 -a 0 -x {4.0 0.0 10 ------- null} + -t 1.27045 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 338 -a 0 -x {0.0 4.0 14 ------- null} - -t 1.27045 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 338 -a 0 -x {0.0 4.0 14 ------- null} h -t 1.27045 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 338 -a 0 -x {0.0 4.0 -1 ------- null} r -t 1.27053 -s 3 -d 5 -p cbr -e 210 -c 1 -i 288 -a 1 -x {1.0 5.0 266 ------- null} - -t 1.27053 -s 2 -d 3 -p cbr -e 210 -c 1 -i 317 -a 1 -x {1.0 5.0 293 ------- null} h -t 1.27053 -s 2 -d 3 -p cbr -e 210 -c 1 -i 317 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.27086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 322 -a 1 -x {1.0 5.0 298 ------- null} + -t 1.27086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 322 -a 1 -x {1.0 5.0 298 ------- null} r -t 1.27093 -s 2 -d 3 -p cbr -e 210 -c 1 -i 305 -a 1 -x {1.0 5.0 282 ------- null} + -t 1.27093 -s 3 -d 5 -p cbr -e 210 -c 1 -i 305 -a 1 -x {1.0 5.0 282 ------- null} - -t 1.27093 -s 3 -d 5 -p cbr -e 210 -c 1 -i 305 -a 1 -x {1.0 5.0 282 ------- null} h -t 1.27093 -s 3 -d 5 -p cbr -e 210 -c 1 -i 305 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.27375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 339 -a 1 -x {1.0 5.0 313 ------- null} - -t 1.27375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 339 -a 1 -x {1.0 5.0 313 ------- null} h -t 1.27375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 339 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.27389 -s 3 -d 5 -p cbr -e 210 -c 1 -i 289 -a 1 -x {1.0 5.0 267 ------- null} - -t 1.27389 -s 2 -d 3 -p cbr -e 210 -c 1 -i 318 -a 1 -x {1.0 5.0 294 ------- null} h -t 1.27389 -s 2 -d 3 -p cbr -e 210 -c 1 -i 318 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.27429 -s 2 -d 3 -p cbr -e 210 -c 1 -i 306 -a 1 -x {1.0 5.0 283 ------- null} + -t 1.27429 -s 3 -d 5 -p cbr -e 210 -c 1 -i 306 -a 1 -x {1.0 5.0 283 ------- null} - -t 1.27429 -s 3 -d 5 -p cbr -e 210 -c 1 -i 306 -a 1 -x {1.0 5.0 283 ------- null} h -t 1.27429 -s 3 -d 5 -p cbr -e 210 -c 1 -i 306 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.27461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 324 -a 1 -x {1.0 5.0 299 ------- null} + -t 1.27461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 324 -a 1 -x {1.0 5.0 299 ------- null} r -t 1.27725 -s 3 -d 5 -p cbr -e 210 -c 1 -i 290 -a 1 -x {1.0 5.0 268 ------- null} - -t 1.27725 -s 2 -d 3 -p cbr -e 210 -c 1 -i 319 -a 1 -x {1.0 5.0 295 ------- null} h -t 1.27725 -s 2 -d 3 -p cbr -e 210 -c 1 -i 319 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.2775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 340 -a 1 -x {1.0 5.0 314 ------- null} - -t 1.2775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 340 -a 1 -x {1.0 5.0 314 ------- null} h -t 1.2775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 340 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.27765 -s 2 -d 3 -p cbr -e 210 -c 1 -i 307 -a 1 -x {1.0 5.0 284 ------- null} + -t 1.27765 -s 3 -d 5 -p cbr -e 210 -c 1 -i 307 -a 1 -x {1.0 5.0 284 ------- null} - -t 1.27765 -s 3 -d 5 -p cbr -e 210 -c 1 -i 307 -a 1 -x {1.0 5.0 284 ------- null} h -t 1.27765 -s 3 -d 5 -p cbr -e 210 -c 1 -i 307 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.27836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 325 -a 1 -x {1.0 5.0 300 ------- null} + -t 1.27836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 325 -a 1 -x {1.0 5.0 300 ------- null} r -t 1.28061 -s 3 -d 5 -p cbr -e 210 -c 1 -i 291 -a 1 -x {1.0 5.0 269 ------- null} - -t 1.28061 -s 2 -d 3 -p cbr -e 210 -c 1 -i 320 -a 1 -x {1.0 5.0 296 ------- null} h -t 1.28061 -s 2 -d 3 -p cbr -e 210 -c 1 -i 320 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.28101 -s 2 -d 3 -p cbr -e 210 -c 1 -i 309 -a 1 -x {1.0 5.0 285 ------- null} + -t 1.28101 -s 3 -d 5 -p cbr -e 210 -c 1 -i 309 -a 1 -x {1.0 5.0 285 ------- null} - -t 1.28101 -s 3 -d 5 -p cbr -e 210 -c 1 -i 309 -a 1 -x {1.0 5.0 285 ------- null} h -t 1.28101 -s 3 -d 5 -p cbr -e 210 -c 1 -i 309 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.28125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 341 -a 1 -x {1.0 5.0 315 ------- null} - -t 1.28125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 341 -a 1 -x {1.0 5.0 315 ------- null} h -t 1.28125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 341 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.28211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 326 -a 1 -x {1.0 5.0 301 ------- null} + -t 1.28211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 326 -a 1 -x {1.0 5.0 301 ------- null} r -t 1.28397 -s 3 -d 5 -p cbr -e 210 -c 1 -i 292 -a 1 -x {1.0 5.0 270 ------- null} - -t 1.28397 -s 2 -d 3 -p cbr -e 210 -c 1 -i 321 -a 1 -x {1.0 5.0 297 ------- null} h -t 1.28397 -s 2 -d 3 -p cbr -e 210 -c 1 -i 321 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.28437 -s 2 -d 3 -p cbr -e 210 -c 1 -i 310 -a 1 -x {1.0 5.0 286 ------- null} + -t 1.28437 -s 3 -d 5 -p cbr -e 210 -c 1 -i 310 -a 1 -x {1.0 5.0 286 ------- null} - -t 1.28437 -s 3 -d 5 -p cbr -e 210 -c 1 -i 310 -a 1 -x {1.0 5.0 286 ------- null} h -t 1.28437 -s 3 -d 5 -p cbr -e 210 -c 1 -i 310 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.285 -s 1 -d 2 -p cbr -e 210 -c 1 -i 342 -a 1 -x {1.0 5.0 316 ------- null} - -t 1.285 -s 1 -d 2 -p cbr -e 210 -c 1 -i 342 -a 1 -x {1.0 5.0 316 ------- null} h -t 1.285 -s 1 -d 2 -p cbr -e 210 -c 1 -i 342 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.28586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 327 -a 1 -x {1.0 5.0 302 ------- null} + -t 1.28586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 327 -a 1 -x {1.0 5.0 302 ------- null} r -t 1.28685 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 323 -a 0 -x {0.0 4.0 13 ------- null} + -t 1.28685 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 323 -a 0 -x {0.0 4.0 13 ------- null} r -t 1.28733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 293 -a 1 -x {1.0 5.0 271 ------- null} - -t 1.28733 -s 2 -d 3 -p cbr -e 210 -c 1 -i 322 -a 1 -x {1.0 5.0 298 ------- null} h -t 1.28733 -s 2 -d 3 -p cbr -e 210 -c 1 -i 322 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.28773 -s 2 -d 3 -p cbr -e 210 -c 1 -i 311 -a 1 -x {1.0 5.0 287 ------- null} + -t 1.28773 -s 3 -d 5 -p cbr -e 210 -c 1 -i 311 -a 1 -x {1.0 5.0 287 ------- null} - -t 1.28773 -s 3 -d 5 -p cbr -e 210 -c 1 -i 311 -a 1 -x {1.0 5.0 287 ------- null} h -t 1.28773 -s 3 -d 5 -p cbr -e 210 -c 1 -i 311 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.28875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 343 -a 1 -x {1.0 5.0 317 ------- null} - -t 1.28875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 343 -a 1 -x {1.0 5.0 317 ------- null} h -t 1.28875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 343 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.28961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 328 -a 1 -x {1.0 5.0 303 ------- null} + -t 1.28961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 328 -a 1 -x {1.0 5.0 303 ------- null} r -t 1.29069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 295 -a 1 -x {1.0 5.0 272 ------- null} - -t 1.29069 -s 2 -d 3 -p cbr -e 210 -c 1 -i 324 -a 1 -x {1.0 5.0 299 ------- null} h -t 1.29069 -s 2 -d 3 -p cbr -e 210 -c 1 -i 324 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.29109 -s 2 -d 3 -p cbr -e 210 -c 1 -i 312 -a 1 -x {1.0 5.0 288 ------- null} + -t 1.29109 -s 3 -d 5 -p cbr -e 210 -c 1 -i 312 -a 1 -x {1.0 5.0 288 ------- null} - -t 1.29109 -s 3 -d 5 -p cbr -e 210 -c 1 -i 312 -a 1 -x {1.0 5.0 288 ------- null} h -t 1.29109 -s 3 -d 5 -p cbr -e 210 -c 1 -i 312 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.2925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 344 -a 1 -x {1.0 5.0 318 ------- null} - -t 1.2925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 344 -a 1 -x {1.0 5.0 318 ------- null} h -t 1.2925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 344 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.29336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 329 -a 1 -x {1.0 5.0 304 ------- null} + -t 1.29336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 329 -a 1 -x {1.0 5.0 304 ------- null} r -t 1.29405 -s 3 -d 5 -p cbr -e 210 -c 1 -i 296 -a 1 -x {1.0 5.0 273 ------- null} - -t 1.29405 -s 2 -d 3 -p cbr -e 210 -c 1 -i 325 -a 1 -x {1.0 5.0 300 ------- null} h -t 1.29405 -s 2 -d 3 -p cbr -e 210 -c 1 -i 325 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.29625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 345 -a 1 -x {1.0 5.0 319 ------- null} - -t 1.29625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 345 -a 1 -x {1.0 5.0 319 ------- null} h -t 1.29625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 345 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.29711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 330 -a 1 -x {1.0 5.0 305 ------- null} + -t 1.29711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 330 -a 1 -x {1.0 5.0 305 ------- null} r -t 1.29741 -s 3 -d 5 -p cbr -e 210 -c 1 -i 297 -a 1 -x {1.0 5.0 274 ------- null} - -t 1.29741 -s 2 -d 3 -p cbr -e 210 -c 1 -i 326 -a 1 -x {1.0 5.0 301 ------- null} h -t 1.29741 -s 2 -d 3 -p cbr -e 210 -c 1 -i 326 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.3 -s 1 -d 2 -p cbr -e 210 -c 1 -i 346 -a 1 -x {1.0 5.0 320 ------- null} - -t 1.3 -s 1 -d 2 -p cbr -e 210 -c 1 -i 346 -a 1 -x {1.0 5.0 320 ------- null} h -t 1.3 -s 1 -d 2 -p cbr -e 210 -c 1 -i 346 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.30077 -s 3 -d 5 -p cbr -e 210 -c 1 -i 298 -a 1 -x {1.0 5.0 275 ------- null} - -t 1.30077 -s 2 -d 3 -p cbr -e 210 -c 1 -i 327 -a 1 -x {1.0 5.0 302 ------- null} h -t 1.30077 -s 2 -d 3 -p cbr -e 210 -c 1 -i 327 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.30086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 331 -a 1 -x {1.0 5.0 306 ------- null} + -t 1.30086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 331 -a 1 -x {1.0 5.0 306 ------- null} + -t 1.30375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 347 -a 1 -x {1.0 5.0 321 ------- null} - -t 1.30375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 347 -a 1 -x {1.0 5.0 321 ------- null} h -t 1.30375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 347 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.30413 -s 3 -d 5 -p cbr -e 210 -c 1 -i 299 -a 1 -x {1.0 5.0 276 ------- null} - -t 1.30413 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 323 -a 0 -x {0.0 4.0 13 ------- null} h -t 1.30413 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 323 -a 0 -x {0.0 4.0 -1 ------- null} r -t 1.30461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 332 -a 1 -x {1.0 5.0 307 ------- null} + -t 1.30461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 332 -a 1 -x {1.0 5.0 307 ------- null} r -t 1.30709 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {0.0 4.0 12 ------- null} + -t 1.30709 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {0.0 4.0 12 ------- null} - -t 1.30709 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {0.0 4.0 12 ------- null} h -t 1.30709 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {0.0 4.0 -1 ------- null} r -t 1.30749 -s 3 -d 5 -p cbr -e 210 -c 1 -i 300 -a 1 -x {1.0 5.0 277 ------- null} + -t 1.3075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 348 -a 1 -x {1.0 5.0 322 ------- null} - -t 1.3075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 348 -a 1 -x {1.0 5.0 322 ------- null} h -t 1.3075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 348 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.30836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 333 -a 1 -x {1.0 5.0 308 ------- null} + -t 1.30836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 333 -a 1 -x {1.0 5.0 308 ------- null} r -t 1.31045 -s 2 -d 3 -p cbr -e 210 -c 1 -i 313 -a 1 -x {1.0 5.0 289 ------- null} + -t 1.31045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 313 -a 1 -x {1.0 5.0 289 ------- null} - -t 1.31045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 313 -a 1 -x {1.0 5.0 289 ------- null} h -t 1.31045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 313 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.31085 -s 3 -d 5 -p cbr -e 210 -c 1 -i 301 -a 1 -x {1.0 5.0 278 ------- null} + -t 1.31125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 349 -a 1 -x {1.0 5.0 323 ------- null} - -t 1.31125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 349 -a 1 -x {1.0 5.0 323 ------- null} h -t 1.31125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 349 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.31211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 334 -a 1 -x {1.0 5.0 309 ------- null} + -t 1.31211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 334 -a 1 -x {1.0 5.0 309 ------- null} r -t 1.31381 -s 2 -d 3 -p cbr -e 210 -c 1 -i 314 -a 1 -x {1.0 5.0 290 ------- null} + -t 1.31381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 314 -a 1 -x {1.0 5.0 290 ------- null} - -t 1.31381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 314 -a 1 -x {1.0 5.0 290 ------- null} h -t 1.31381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 314 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.31421 -s 3 -d 5 -p cbr -e 210 -c 1 -i 302 -a 1 -x {1.0 5.0 279 ------- null} + -t 1.315 -s 1 -d 2 -p cbr -e 210 -c 1 -i 350 -a 1 -x {1.0 5.0 324 ------- null} - -t 1.315 -s 1 -d 2 -p cbr -e 210 -c 1 -i 350 -a 1 -x {1.0 5.0 324 ------- null} h -t 1.315 -s 1 -d 2 -p cbr -e 210 -c 1 -i 350 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.31586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 335 -a 1 -x {1.0 5.0 310 ------- null} + -t 1.31586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 335 -a 1 -x {1.0 5.0 310 ------- null} r -t 1.31717 -s 2 -d 3 -p cbr -e 210 -c 1 -i 315 -a 1 -x {1.0 5.0 291 ------- null} + -t 1.31717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 315 -a 1 -x {1.0 5.0 291 ------- null} - -t 1.31717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 315 -a 1 -x {1.0 5.0 291 ------- null} h -t 1.31717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 315 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.31757 -s 3 -d 5 -p cbr -e 210 -c 1 -i 303 -a 1 -x {1.0 5.0 280 ------- null} + -t 1.31875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 351 -a 1 -x {1.0 5.0 325 ------- null} - -t 1.31875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 351 -a 1 -x {1.0 5.0 325 ------- null} h -t 1.31875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 351 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.31961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 336 -a 1 -x {1.0 5.0 311 ------- null} + -t 1.31961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 336 -a 1 -x {1.0 5.0 311 ------- null} - -t 1.32013 -s 2 -d 3 -p cbr -e 210 -c 1 -i 328 -a 1 -x {1.0 5.0 303 ------- null} h -t 1.32013 -s 2 -d 3 -p cbr -e 210 -c 1 -i 328 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.32053 -s 2 -d 3 -p cbr -e 210 -c 1 -i 316 -a 1 -x {1.0 5.0 292 ------- null} + -t 1.32053 -s 3 -d 5 -p cbr -e 210 -c 1 -i 316 -a 1 -x {1.0 5.0 292 ------- null} - -t 1.32053 -s 3 -d 5 -p cbr -e 210 -c 1 -i 316 -a 1 -x {1.0 5.0 292 ------- null} h -t 1.32053 -s 3 -d 5 -p cbr -e 210 -c 1 -i 316 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.32093 -s 3 -d 5 -p cbr -e 210 -c 1 -i 304 -a 1 -x {1.0 5.0 281 ------- null} + -t 1.3225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 352 -a 1 -x {1.0 5.0 326 ------- null} - -t 1.3225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 352 -a 1 -x {1.0 5.0 326 ------- null} h -t 1.3225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 352 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.32336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 337 -a 1 -x {1.0 5.0 312 ------- null} + -t 1.32336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 337 -a 1 -x {1.0 5.0 312 ------- null} - -t 1.32349 -s 2 -d 3 -p cbr -e 210 -c 1 -i 329 -a 1 -x {1.0 5.0 304 ------- null} h -t 1.32349 -s 2 -d 3 -p cbr -e 210 -c 1 -i 329 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.32389 -s 2 -d 3 -p cbr -e 210 -c 1 -i 317 -a 1 -x {1.0 5.0 293 ------- null} + -t 1.32389 -s 3 -d 5 -p cbr -e 210 -c 1 -i 317 -a 1 -x {1.0 5.0 293 ------- null} - -t 1.32389 -s 3 -d 5 -p cbr -e 210 -c 1 -i 317 -a 1 -x {1.0 5.0 293 ------- null} h -t 1.32389 -s 3 -d 5 -p cbr -e 210 -c 1 -i 317 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.32429 -s 3 -d 5 -p cbr -e 210 -c 1 -i 305 -a 1 -x {1.0 5.0 282 ------- null} + -t 1.32625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 353 -a 1 -x {1.0 5.0 327 ------- null} - -t 1.32625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 353 -a 1 -x {1.0 5.0 327 ------- null} h -t 1.32625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 353 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.32685 -s 2 -d 3 -p cbr -e 210 -c 1 -i 330 -a 1 -x {1.0 5.0 305 ------- null} h -t 1.32685 -s 2 -d 3 -p cbr -e 210 -c 1 -i 330 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.32711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 339 -a 1 -x {1.0 5.0 313 ------- null} + -t 1.32711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 339 -a 1 -x {1.0 5.0 313 ------- null} r -t 1.32725 -s 2 -d 3 -p cbr -e 210 -c 1 -i 318 -a 1 -x {1.0 5.0 294 ------- null} + -t 1.32725 -s 3 -d 5 -p cbr -e 210 -c 1 -i 318 -a 1 -x {1.0 5.0 294 ------- null} - -t 1.32725 -s 3 -d 5 -p cbr -e 210 -c 1 -i 318 -a 1 -x {1.0 5.0 294 ------- null} h -t 1.32725 -s 3 -d 5 -p cbr -e 210 -c 1 -i 318 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.32765 -s 3 -d 5 -p cbr -e 210 -c 1 -i 306 -a 1 -x {1.0 5.0 283 ------- null} + -t 1.33 -s 1 -d 2 -p cbr -e 210 -c 1 -i 354 -a 1 -x {1.0 5.0 328 ------- null} - -t 1.33 -s 1 -d 2 -p cbr -e 210 -c 1 -i 354 -a 1 -x {1.0 5.0 328 ------- null} h -t 1.33 -s 1 -d 2 -p cbr -e 210 -c 1 -i 354 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.33021 -s 2 -d 3 -p cbr -e 210 -c 1 -i 331 -a 1 -x {1.0 5.0 306 ------- null} h -t 1.33021 -s 2 -d 3 -p cbr -e 210 -c 1 -i 331 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.33061 -s 2 -d 3 -p cbr -e 210 -c 1 -i 319 -a 1 -x {1.0 5.0 295 ------- null} + -t 1.33061 -s 3 -d 5 -p cbr -e 210 -c 1 -i 319 -a 1 -x {1.0 5.0 295 ------- null} - -t 1.33061 -s 3 -d 5 -p cbr -e 210 -c 1 -i 319 -a 1 -x {1.0 5.0 295 ------- null} h -t 1.33061 -s 3 -d 5 -p cbr -e 210 -c 1 -i 319 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.33086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 340 -a 1 -x {1.0 5.0 314 ------- null} + -t 1.33086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 340 -a 1 -x {1.0 5.0 314 ------- null} r -t 1.33101 -s 3 -d 5 -p cbr -e 210 -c 1 -i 307 -a 1 -x {1.0 5.0 284 ------- null} - -t 1.33357 -s 2 -d 3 -p cbr -e 210 -c 1 -i 332 -a 1 -x {1.0 5.0 307 ------- null} h -t 1.33357 -s 2 -d 3 -p cbr -e 210 -c 1 -i 332 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.33375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 355 -a 1 -x {1.0 5.0 329 ------- null} - -t 1.33375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 355 -a 1 -x {1.0 5.0 329 ------- null} h -t 1.33375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 355 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.33397 -s 2 -d 3 -p cbr -e 210 -c 1 -i 320 -a 1 -x {1.0 5.0 296 ------- null} + -t 1.33397 -s 3 -d 5 -p cbr -e 210 -c 1 -i 320 -a 1 -x {1.0 5.0 296 ------- null} - -t 1.33397 -s 3 -d 5 -p cbr -e 210 -c 1 -i 320 -a 1 -x {1.0 5.0 296 ------- null} h -t 1.33397 -s 3 -d 5 -p cbr -e 210 -c 1 -i 320 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.33437 -s 3 -d 5 -p cbr -e 210 -c 1 -i 309 -a 1 -x {1.0 5.0 285 ------- null} r -t 1.33461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 341 -a 1 -x {1.0 5.0 315 ------- null} + -t 1.33461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 341 -a 1 -x {1.0 5.0 315 ------- null} r -t 1.33645 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 338 -a 0 -x {0.0 4.0 14 ------- null} + -t 1.33645 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 338 -a 0 -x {0.0 4.0 14 ------- null} - -t 1.33693 -s 2 -d 3 -p cbr -e 210 -c 1 -i 333 -a 1 -x {1.0 5.0 308 ------- null} h -t 1.33693 -s 2 -d 3 -p cbr -e 210 -c 1 -i 333 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.33733 -s 2 -d 3 -p cbr -e 210 -c 1 -i 321 -a 1 -x {1.0 5.0 297 ------- null} + -t 1.33733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 321 -a 1 -x {1.0 5.0 297 ------- null} - -t 1.33733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 321 -a 1 -x {1.0 5.0 297 ------- null} h -t 1.33733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 321 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.3375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 356 -a 1 -x {1.0 5.0 330 ------- null} - -t 1.3375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 356 -a 1 -x {1.0 5.0 330 ------- null} h -t 1.3375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 356 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.33773 -s 3 -d 5 -p cbr -e 210 -c 1 -i 310 -a 1 -x {1.0 5.0 286 ------- null} r -t 1.33836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 342 -a 1 -x {1.0 5.0 316 ------- null} + -t 1.33836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 342 -a 1 -x {1.0 5.0 316 ------- null} - -t 1.34029 -s 2 -d 3 -p cbr -e 210 -c 1 -i 334 -a 1 -x {1.0 5.0 309 ------- null} h -t 1.34029 -s 2 -d 3 -p cbr -e 210 -c 1 -i 334 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.34069 -s 2 -d 3 -p cbr -e 210 -c 1 -i 322 -a 1 -x {1.0 5.0 298 ------- null} + -t 1.34069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 322 -a 1 -x {1.0 5.0 298 ------- null} - -t 1.34069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 322 -a 1 -x {1.0 5.0 298 ------- null} h -t 1.34069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 322 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.34109 -s 3 -d 5 -p cbr -e 210 -c 1 -i 311 -a 1 -x {1.0 5.0 287 ------- null} + -t 1.34125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 357 -a 1 -x {1.0 5.0 331 ------- null} - -t 1.34125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 357 -a 1 -x {1.0 5.0 331 ------- null} h -t 1.34125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 357 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.34211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 343 -a 1 -x {1.0 5.0 317 ------- null} + -t 1.34211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 343 -a 1 -x {1.0 5.0 317 ------- null} - -t 1.34365 -s 2 -d 3 -p cbr -e 210 -c 1 -i 335 -a 1 -x {1.0 5.0 310 ------- null} h -t 1.34365 -s 2 -d 3 -p cbr -e 210 -c 1 -i 335 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.34405 -s 2 -d 3 -p cbr -e 210 -c 1 -i 324 -a 1 -x {1.0 5.0 299 ------- null} + -t 1.34405 -s 3 -d 5 -p cbr -e 210 -c 1 -i 324 -a 1 -x {1.0 5.0 299 ------- null} - -t 1.34405 -s 3 -d 5 -p cbr -e 210 -c 1 -i 324 -a 1 -x {1.0 5.0 299 ------- null} h -t 1.34405 -s 3 -d 5 -p cbr -e 210 -c 1 -i 324 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.34445 -s 3 -d 5 -p cbr -e 210 -c 1 -i 312 -a 1 -x {1.0 5.0 288 ------- null} + -t 1.345 -s 1 -d 2 -p cbr -e 210 -c 1 -i 358 -a 1 -x {1.0 5.0 332 ------- null} - -t 1.345 -s 1 -d 2 -p cbr -e 210 -c 1 -i 358 -a 1 -x {1.0 5.0 332 ------- null} h -t 1.345 -s 1 -d 2 -p cbr -e 210 -c 1 -i 358 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.34586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 344 -a 1 -x {1.0 5.0 318 ------- null} + -t 1.34586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 344 -a 1 -x {1.0 5.0 318 ------- null} - -t 1.34701 -s 2 -d 3 -p cbr -e 210 -c 1 -i 336 -a 1 -x {1.0 5.0 311 ------- null} h -t 1.34701 -s 2 -d 3 -p cbr -e 210 -c 1 -i 336 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.34741 -s 2 -d 3 -p cbr -e 210 -c 1 -i 325 -a 1 -x {1.0 5.0 300 ------- null} + -t 1.34741 -s 3 -d 5 -p cbr -e 210 -c 1 -i 325 -a 1 -x {1.0 5.0 300 ------- null} - -t 1.34741 -s 3 -d 5 -p cbr -e 210 -c 1 -i 325 -a 1 -x {1.0 5.0 300 ------- null} h -t 1.34741 -s 3 -d 5 -p cbr -e 210 -c 1 -i 325 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.34875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 359 -a 1 -x {1.0 5.0 333 ------- null} - -t 1.34875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 359 -a 1 -x {1.0 5.0 333 ------- null} h -t 1.34875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 359 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.34961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 345 -a 1 -x {1.0 5.0 319 ------- null} + -t 1.34961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 345 -a 1 -x {1.0 5.0 319 ------- null} - -t 1.35037 -s 2 -d 3 -p cbr -e 210 -c 1 -i 337 -a 1 -x {1.0 5.0 312 ------- null} h -t 1.35037 -s 2 -d 3 -p cbr -e 210 -c 1 -i 337 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.35077 -s 2 -d 3 -p cbr -e 210 -c 1 -i 326 -a 1 -x {1.0 5.0 301 ------- null} + -t 1.35077 -s 3 -d 5 -p cbr -e 210 -c 1 -i 326 -a 1 -x {1.0 5.0 301 ------- null} - -t 1.35077 -s 3 -d 5 -p cbr -e 210 -c 1 -i 326 -a 1 -x {1.0 5.0 301 ------- null} h -t 1.35077 -s 3 -d 5 -p cbr -e 210 -c 1 -i 326 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.3525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 360 -a 1 -x {1.0 5.0 334 ------- null} - -t 1.3525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 360 -a 1 -x {1.0 5.0 334 ------- null} h -t 1.3525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 360 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.35336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 346 -a 1 -x {1.0 5.0 320 ------- null} + -t 1.35336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 346 -a 1 -x {1.0 5.0 320 ------- null} - -t 1.35373 -s 2 -d 3 -p cbr -e 210 -c 1 -i 339 -a 1 -x {1.0 5.0 313 ------- null} h -t 1.35373 -s 2 -d 3 -p cbr -e 210 -c 1 -i 339 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.35413 -s 2 -d 3 -p cbr -e 210 -c 1 -i 327 -a 1 -x {1.0 5.0 302 ------- null} + -t 1.35413 -s 3 -d 5 -p cbr -e 210 -c 1 -i 327 -a 1 -x {1.0 5.0 302 ------- null} - -t 1.35413 -s 3 -d 5 -p cbr -e 210 -c 1 -i 327 -a 1 -x {1.0 5.0 302 ------- null} h -t 1.35413 -s 3 -d 5 -p cbr -e 210 -c 1 -i 327 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.35625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 361 -a 1 -x {1.0 5.0 335 ------- null} - -t 1.35625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 361 -a 1 -x {1.0 5.0 335 ------- null} h -t 1.35625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 361 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.35709 -s 2 -d 3 -p cbr -e 210 -c 1 -i 340 -a 1 -x {1.0 5.0 314 ------- null} h -t 1.35709 -s 2 -d 3 -p cbr -e 210 -c 1 -i 340 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.35711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 347 -a 1 -x {1.0 5.0 321 ------- null} + -t 1.35711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 347 -a 1 -x {1.0 5.0 321 ------- null} + -t 1.36 -s 1 -d 2 -p cbr -e 210 -c 1 -i 362 -a 1 -x {1.0 5.0 336 ------- null} - -t 1.36 -s 1 -d 2 -p cbr -e 210 -c 1 -i 362 -a 1 -x {1.0 5.0 336 ------- null} h -t 1.36 -s 1 -d 2 -p cbr -e 210 -c 1 -i 362 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.36045 -s 2 -d 3 -p cbr -e 210 -c 1 -i 341 -a 1 -x {1.0 5.0 315 ------- null} h -t 1.36045 -s 2 -d 3 -p cbr -e 210 -c 1 -i 341 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.36086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 348 -a 1 -x {1.0 5.0 322 ------- null} + -t 1.36086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 348 -a 1 -x {1.0 5.0 322 ------- null} + -t 1.36375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 363 -a 1 -x {1.0 5.0 337 ------- null} - -t 1.36375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 363 -a 1 -x {1.0 5.0 337 ------- null} h -t 1.36375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 363 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.36381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 313 -a 1 -x {1.0 5.0 289 ------- null} - -t 1.36381 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 338 -a 0 -x {0.0 4.0 14 ------- null} h -t 1.36381 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 338 -a 0 -x {0.0 4.0 -1 ------- null} r -t 1.36461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 349 -a 1 -x {1.0 5.0 323 ------- null} + -t 1.36461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 349 -a 1 -x {1.0 5.0 323 ------- null} r -t 1.36717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 314 -a 1 -x {1.0 5.0 290 ------- null} + -t 1.3675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 364 -a 1 -x {1.0 5.0 338 ------- null} - -t 1.3675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 364 -a 1 -x {1.0 5.0 338 ------- null} h -t 1.3675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 364 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.36836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 350 -a 1 -x {1.0 5.0 324 ------- null} + -t 1.36836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 350 -a 1 -x {1.0 5.0 324 ------- null} r -t 1.37013 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 323 -a 0 -x {0.0 4.0 13 ------- null} + -t 1.37013 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 323 -a 0 -x {0.0 4.0 13 ------- null} - -t 1.37013 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 323 -a 0 -x {0.0 4.0 13 ------- null} h -t 1.37013 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 323 -a 0 -x {0.0 4.0 -1 ------- null} r -t 1.37053 -s 3 -d 5 -p cbr -e 210 -c 1 -i 315 -a 1 -x {1.0 5.0 291 ------- null} + -t 1.37125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 365 -a 1 -x {1.0 5.0 339 ------- null} - -t 1.37125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 365 -a 1 -x {1.0 5.0 339 ------- null} h -t 1.37125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 365 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.37211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 351 -a 1 -x {1.0 5.0 325 ------- null} + -t 1.37211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 351 -a 1 -x {1.0 5.0 325 ------- null} d -t 1.37211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 351 -a 1 -x {1.0 5.0 325 ------- null} r -t 1.37309 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {0.0 4.0 12 ------- null} + -t 1.37309 -s 4 -d 3 -p ack -e 40 -c 0 -i 366 -a 0 -x {4.0 0.0 10 ------- null} - -t 1.37309 -s 4 -d 3 -p ack -e 40 -c 0 -i 366 -a 0 -x {4.0 0.0 10 ------- null} h -t 1.37309 -s 4 -d 3 -p ack -e 40 -c 0 -i 366 -a 0 -x {4.0 0.0 -1 ------- null} r -t 1.37349 -s 2 -d 3 -p cbr -e 210 -c 1 -i 328 -a 1 -x {1.0 5.0 303 ------- null} + -t 1.37349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 328 -a 1 -x {1.0 5.0 303 ------- null} - -t 1.37349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 328 -a 1 -x {1.0 5.0 303 ------- null} h -t 1.37349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 328 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.37389 -s 3 -d 5 -p cbr -e 210 -c 1 -i 316 -a 1 -x {1.0 5.0 292 ------- null} + -t 1.375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 367 -a 1 -x {1.0 5.0 340 ------- null} - -t 1.375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 367 -a 1 -x {1.0 5.0 340 ------- null} h -t 1.375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 367 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.37586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 352 -a 1 -x {1.0 5.0 326 ------- null} + -t 1.37586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 352 -a 1 -x {1.0 5.0 326 ------- null} d -t 1.37586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 352 -a 1 -x {1.0 5.0 326 ------- null} r -t 1.37685 -s 2 -d 3 -p cbr -e 210 -c 1 -i 329 -a 1 -x {1.0 5.0 304 ------- null} + -t 1.37685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 329 -a 1 -x {1.0 5.0 304 ------- null} - -t 1.37685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 329 -a 1 -x {1.0 5.0 304 ------- null} h -t 1.37685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 329 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.37725 -s 3 -d 5 -p cbr -e 210 -c 1 -i 317 -a 1 -x {1.0 5.0 293 ------- null} + -t 1.37875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 368 -a 1 -x {1.0 5.0 341 ------- null} - -t 1.37875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 368 -a 1 -x {1.0 5.0 341 ------- null} h -t 1.37875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 368 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.37961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 353 -a 1 -x {1.0 5.0 327 ------- null} + -t 1.37961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 353 -a 1 -x {1.0 5.0 327 ------- null} d -t 1.37961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 353 -a 1 -x {1.0 5.0 327 ------- null} - -t 1.37981 -s 2 -d 3 -p cbr -e 210 -c 1 -i 342 -a 1 -x {1.0 5.0 316 ------- null} h -t 1.37981 -s 2 -d 3 -p cbr -e 210 -c 1 -i 342 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.38021 -s 2 -d 3 -p cbr -e 210 -c 1 -i 330 -a 1 -x {1.0 5.0 305 ------- null} + -t 1.38021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 330 -a 1 -x {1.0 5.0 305 ------- null} - -t 1.38021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 330 -a 1 -x {1.0 5.0 305 ------- null} h -t 1.38021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 330 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.38061 -s 3 -d 5 -p cbr -e 210 -c 1 -i 318 -a 1 -x {1.0 5.0 294 ------- null} + -t 1.3825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 369 -a 1 -x {1.0 5.0 342 ------- null} - -t 1.3825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 369 -a 1 -x {1.0 5.0 342 ------- null} h -t 1.3825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 369 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.38317 -s 2 -d 3 -p cbr -e 210 -c 1 -i 343 -a 1 -x {1.0 5.0 317 ------- null} h -t 1.38317 -s 2 -d 3 -p cbr -e 210 -c 1 -i 343 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.38336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 354 -a 1 -x {1.0 5.0 328 ------- null} + -t 1.38336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 354 -a 1 -x {1.0 5.0 328 ------- null} r -t 1.38357 -s 2 -d 3 -p cbr -e 210 -c 1 -i 331 -a 1 -x {1.0 5.0 306 ------- null} + -t 1.38357 -s 3 -d 5 -p cbr -e 210 -c 1 -i 331 -a 1 -x {1.0 5.0 306 ------- null} - -t 1.38357 -s 3 -d 5 -p cbr -e 210 -c 1 -i 331 -a 1 -x {1.0 5.0 306 ------- null} h -t 1.38357 -s 3 -d 5 -p cbr -e 210 -c 1 -i 331 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.38397 -s 3 -d 5 -p cbr -e 210 -c 1 -i 319 -a 1 -x {1.0 5.0 295 ------- null} + -t 1.38625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 370 -a 1 -x {1.0 5.0 343 ------- null} - -t 1.38625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 370 -a 1 -x {1.0 5.0 343 ------- null} h -t 1.38625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 370 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.38653 -s 2 -d 3 -p cbr -e 210 -c 1 -i 344 -a 1 -x {1.0 5.0 318 ------- null} h -t 1.38653 -s 2 -d 3 -p cbr -e 210 -c 1 -i 344 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.38693 -s 2 -d 3 -p cbr -e 210 -c 1 -i 332 -a 1 -x {1.0 5.0 307 ------- null} + -t 1.38693 -s 3 -d 5 -p cbr -e 210 -c 1 -i 332 -a 1 -x {1.0 5.0 307 ------- null} - -t 1.38693 -s 3 -d 5 -p cbr -e 210 -c 1 -i 332 -a 1 -x {1.0 5.0 307 ------- null} h -t 1.38693 -s 3 -d 5 -p cbr -e 210 -c 1 -i 332 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.38711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 355 -a 1 -x {1.0 5.0 329 ------- null} + -t 1.38711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 355 -a 1 -x {1.0 5.0 329 ------- null} r -t 1.38733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 320 -a 1 -x {1.0 5.0 296 ------- null} - -t 1.38989 -s 2 -d 3 -p cbr -e 210 -c 1 -i 345 -a 1 -x {1.0 5.0 319 ------- null} h -t 1.38989 -s 2 -d 3 -p cbr -e 210 -c 1 -i 345 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.39 -s 1 -d 2 -p cbr -e 210 -c 1 -i 371 -a 1 -x {1.0 5.0 344 ------- null} - -t 1.39 -s 1 -d 2 -p cbr -e 210 -c 1 -i 371 -a 1 -x {1.0 5.0 344 ------- null} h -t 1.39 -s 1 -d 2 -p cbr -e 210 -c 1 -i 371 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.39029 -s 2 -d 3 -p cbr -e 210 -c 1 -i 333 -a 1 -x {1.0 5.0 308 ------- null} + -t 1.39029 -s 3 -d 5 -p cbr -e 210 -c 1 -i 333 -a 1 -x {1.0 5.0 308 ------- null} - -t 1.39029 -s 3 -d 5 -p cbr -e 210 -c 1 -i 333 -a 1 -x {1.0 5.0 308 ------- null} h -t 1.39029 -s 3 -d 5 -p cbr -e 210 -c 1 -i 333 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.39069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 321 -a 1 -x {1.0 5.0 297 ------- null} r -t 1.39086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 356 -a 1 -x {1.0 5.0 330 ------- null} + -t 1.39086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 356 -a 1 -x {1.0 5.0 330 ------- null} - -t 1.39325 -s 2 -d 3 -p cbr -e 210 -c 1 -i 346 -a 1 -x {1.0 5.0 320 ------- null} h -t 1.39325 -s 2 -d 3 -p cbr -e 210 -c 1 -i 346 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.39365 -s 2 -d 3 -p cbr -e 210 -c 1 -i 334 -a 1 -x {1.0 5.0 309 ------- null} + -t 1.39365 -s 3 -d 5 -p cbr -e 210 -c 1 -i 334 -a 1 -x {1.0 5.0 309 ------- null} - -t 1.39365 -s 3 -d 5 -p cbr -e 210 -c 1 -i 334 -a 1 -x {1.0 5.0 309 ------- null} h -t 1.39365 -s 3 -d 5 -p cbr -e 210 -c 1 -i 334 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.39375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 372 -a 1 -x {1.0 5.0 345 ------- null} - -t 1.39375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 372 -a 1 -x {1.0 5.0 345 ------- null} h -t 1.39375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 372 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.39405 -s 3 -d 5 -p cbr -e 210 -c 1 -i 322 -a 1 -x {1.0 5.0 298 ------- null} r -t 1.39461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 357 -a 1 -x {1.0 5.0 331 ------- null} + -t 1.39461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 357 -a 1 -x {1.0 5.0 331 ------- null} - -t 1.39661 -s 2 -d 3 -p cbr -e 210 -c 1 -i 347 -a 1 -x {1.0 5.0 321 ------- null} h -t 1.39661 -s 2 -d 3 -p cbr -e 210 -c 1 -i 347 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.39701 -s 2 -d 3 -p cbr -e 210 -c 1 -i 335 -a 1 -x {1.0 5.0 310 ------- null} + -t 1.39701 -s 3 -d 5 -p cbr -e 210 -c 1 -i 335 -a 1 -x {1.0 5.0 310 ------- null} - -t 1.39701 -s 3 -d 5 -p cbr -e 210 -c 1 -i 335 -a 1 -x {1.0 5.0 310 ------- null} h -t 1.39701 -s 3 -d 5 -p cbr -e 210 -c 1 -i 335 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.39741 -s 3 -d 5 -p cbr -e 210 -c 1 -i 324 -a 1 -x {1.0 5.0 299 ------- null} + -t 1.3975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 373 -a 1 -x {1.0 5.0 346 ------- null} - -t 1.3975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 373 -a 1 -x {1.0 5.0 346 ------- null} h -t 1.3975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 373 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.39836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 358 -a 1 -x {1.0 5.0 332 ------- null} + -t 1.39836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 358 -a 1 -x {1.0 5.0 332 ------- null} - -t 1.39997 -s 2 -d 3 -p cbr -e 210 -c 1 -i 348 -a 1 -x {1.0 5.0 322 ------- null} h -t 1.39997 -s 2 -d 3 -p cbr -e 210 -c 1 -i 348 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.40037 -s 2 -d 3 -p cbr -e 210 -c 1 -i 336 -a 1 -x {1.0 5.0 311 ------- null} + -t 1.40037 -s 3 -d 5 -p cbr -e 210 -c 1 -i 336 -a 1 -x {1.0 5.0 311 ------- null} - -t 1.40037 -s 3 -d 5 -p cbr -e 210 -c 1 -i 336 -a 1 -x {1.0 5.0 311 ------- null} h -t 1.40037 -s 3 -d 5 -p cbr -e 210 -c 1 -i 336 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.40077 -s 3 -d 5 -p cbr -e 210 -c 1 -i 325 -a 1 -x {1.0 5.0 300 ------- null} + -t 1.40125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 374 -a 1 -x {1.0 5.0 347 ------- null} - -t 1.40125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 374 -a 1 -x {1.0 5.0 347 ------- null} h -t 1.40125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 374 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.40211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 359 -a 1 -x {1.0 5.0 333 ------- null} + -t 1.40211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 359 -a 1 -x {1.0 5.0 333 ------- null} - -t 1.40333 -s 2 -d 3 -p cbr -e 210 -c 1 -i 349 -a 1 -x {1.0 5.0 323 ------- null} h -t 1.40333 -s 2 -d 3 -p cbr -e 210 -c 1 -i 349 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.40373 -s 2 -d 3 -p cbr -e 210 -c 1 -i 337 -a 1 -x {1.0 5.0 312 ------- null} + -t 1.40373 -s 3 -d 5 -p cbr -e 210 -c 1 -i 337 -a 1 -x {1.0 5.0 312 ------- null} - -t 1.40373 -s 3 -d 5 -p cbr -e 210 -c 1 -i 337 -a 1 -x {1.0 5.0 312 ------- null} h -t 1.40373 -s 3 -d 5 -p cbr -e 210 -c 1 -i 337 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.40413 -s 3 -d 5 -p cbr -e 210 -c 1 -i 326 -a 1 -x {1.0 5.0 301 ------- null} + -t 1.405 -s 1 -d 2 -p cbr -e 210 -c 1 -i 375 -a 1 -x {1.0 5.0 348 ------- null} - -t 1.405 -s 1 -d 2 -p cbr -e 210 -c 1 -i 375 -a 1 -x {1.0 5.0 348 ------- null} h -t 1.405 -s 1 -d 2 -p cbr -e 210 -c 1 -i 375 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.40586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 360 -a 1 -x {1.0 5.0 334 ------- null} + -t 1.40586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 360 -a 1 -x {1.0 5.0 334 ------- null} - -t 1.40669 -s 2 -d 3 -p cbr -e 210 -c 1 -i 350 -a 1 -x {1.0 5.0 324 ------- null} h -t 1.40669 -s 2 -d 3 -p cbr -e 210 -c 1 -i 350 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.40709 -s 2 -d 3 -p cbr -e 210 -c 1 -i 339 -a 1 -x {1.0 5.0 313 ------- null} + -t 1.40709 -s 3 -d 5 -p cbr -e 210 -c 1 -i 339 -a 1 -x {1.0 5.0 313 ------- null} - -t 1.40709 -s 3 -d 5 -p cbr -e 210 -c 1 -i 339 -a 1 -x {1.0 5.0 313 ------- null} h -t 1.40709 -s 3 -d 5 -p cbr -e 210 -c 1 -i 339 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.40749 -s 3 -d 5 -p cbr -e 210 -c 1 -i 327 -a 1 -x {1.0 5.0 302 ------- null} + -t 1.40875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 376 -a 1 -x {1.0 5.0 349 ------- null} - -t 1.40875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 376 -a 1 -x {1.0 5.0 349 ------- null} h -t 1.40875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 376 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.40961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 361 -a 1 -x {1.0 5.0 335 ------- null} + -t 1.40961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 361 -a 1 -x {1.0 5.0 335 ------- null} - -t 1.41005 -s 2 -d 3 -p cbr -e 210 -c 1 -i 354 -a 1 -x {1.0 5.0 328 ------- null} h -t 1.41005 -s 2 -d 3 -p cbr -e 210 -c 1 -i 354 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.41045 -s 2 -d 3 -p cbr -e 210 -c 1 -i 340 -a 1 -x {1.0 5.0 314 ------- null} + -t 1.41045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 340 -a 1 -x {1.0 5.0 314 ------- null} - -t 1.41045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 340 -a 1 -x {1.0 5.0 314 ------- null} h -t 1.41045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 340 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.4125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 377 -a 1 -x {1.0 5.0 350 ------- null} - -t 1.4125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 377 -a 1 -x {1.0 5.0 350 ------- null} h -t 1.4125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 377 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.41336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 362 -a 1 -x {1.0 5.0 336 ------- null} + -t 1.41336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 362 -a 1 -x {1.0 5.0 336 ------- null} - -t 1.41341 -s 2 -d 3 -p cbr -e 210 -c 1 -i 355 -a 1 -x {1.0 5.0 329 ------- null} h -t 1.41341 -s 2 -d 3 -p cbr -e 210 -c 1 -i 355 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.41381 -s 2 -d 3 -p cbr -e 210 -c 1 -i 341 -a 1 -x {1.0 5.0 315 ------- null} + -t 1.41381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 341 -a 1 -x {1.0 5.0 315 ------- null} - -t 1.41381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 341 -a 1 -x {1.0 5.0 315 ------- null} h -t 1.41381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 341 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.41625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 378 -a 1 -x {1.0 5.0 351 ------- null} - -t 1.41625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 378 -a 1 -x {1.0 5.0 351 ------- null} h -t 1.41625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 378 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.41677 -s 2 -d 3 -p cbr -e 210 -c 1 -i 356 -a 1 -x {1.0 5.0 330 ------- null} h -t 1.41677 -s 2 -d 3 -p cbr -e 210 -c 1 -i 356 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.41711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 363 -a 1 -x {1.0 5.0 337 ------- null} + -t 1.41711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 363 -a 1 -x {1.0 5.0 337 ------- null} + -t 1.42 -s 1 -d 2 -p cbr -e 210 -c 1 -i 379 -a 1 -x {1.0 5.0 352 ------- null} - -t 1.42 -s 1 -d 2 -p cbr -e 210 -c 1 -i 379 -a 1 -x {1.0 5.0 352 ------- null} h -t 1.42 -s 1 -d 2 -p cbr -e 210 -c 1 -i 379 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.42013 -s 2 -d 3 -p cbr -e 210 -c 1 -i 357 -a 1 -x {1.0 5.0 331 ------- null} h -t 1.42013 -s 2 -d 3 -p cbr -e 210 -c 1 -i 357 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.42086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 364 -a 1 -x {1.0 5.0 338 ------- null} + -t 1.42086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 364 -a 1 -x {1.0 5.0 338 ------- null} - -t 1.42349 -s 2 -d 3 -p cbr -e 210 -c 1 -i 358 -a 1 -x {1.0 5.0 332 ------- null} h -t 1.42349 -s 2 -d 3 -p cbr -e 210 -c 1 -i 358 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.42373 -s 4 -d 3 -p ack -e 40 -c 0 -i 366 -a 0 -x {4.0 0.0 10 ------- null} + -t 1.42373 -s 3 -d 2 -p ack -e 40 -c 0 -i 366 -a 0 -x {4.0 0.0 10 ------- null} - -t 1.42373 -s 3 -d 2 -p ack -e 40 -c 0 -i 366 -a 0 -x {4.0 0.0 10 ------- null} h -t 1.42373 -s 3 -d 2 -p ack -e 40 -c 0 -i 366 -a 0 -x {4.0 0.0 -1 ------- null} + -t 1.42375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 380 -a 1 -x {1.0 5.0 353 ------- null} - -t 1.42375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 380 -a 1 -x {1.0 5.0 353 ------- null} h -t 1.42375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 380 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.42461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 365 -a 1 -x {1.0 5.0 339 ------- null} + -t 1.42461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 365 -a 1 -x {1.0 5.0 339 ------- null} r -t 1.42685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 328 -a 1 -x {1.0 5.0 303 ------- null} - -t 1.42685 -s 2 -d 3 -p cbr -e 210 -c 1 -i 359 -a 1 -x {1.0 5.0 333 ------- null} h -t 1.42685 -s 2 -d 3 -p cbr -e 210 -c 1 -i 359 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.4275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 381 -a 1 -x {1.0 5.0 354 ------- null} - -t 1.4275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 381 -a 1 -x {1.0 5.0 354 ------- null} h -t 1.4275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 381 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.42836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 367 -a 1 -x {1.0 5.0 340 ------- null} + -t 1.42836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 367 -a 1 -x {1.0 5.0 340 ------- null} r -t 1.42981 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 338 -a 0 -x {0.0 4.0 14 ------- null} + -t 1.42981 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 338 -a 0 -x {0.0 4.0 14 ------- null} - -t 1.42981 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 338 -a 0 -x {0.0 4.0 14 ------- null} h -t 1.42981 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 338 -a 0 -x {0.0 4.0 -1 ------- null} r -t 1.43021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 329 -a 1 -x {1.0 5.0 304 ------- null} - -t 1.43021 -s 2 -d 3 -p cbr -e 210 -c 1 -i 360 -a 1 -x {1.0 5.0 334 ------- null} h -t 1.43021 -s 2 -d 3 -p cbr -e 210 -c 1 -i 360 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.43125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 382 -a 1 -x {1.0 5.0 355 ------- null} - -t 1.43125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 382 -a 1 -x {1.0 5.0 355 ------- null} h -t 1.43125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 382 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.43211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 368 -a 1 -x {1.0 5.0 341 ------- null} + -t 1.43211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 368 -a 1 -x {1.0 5.0 341 ------- null} r -t 1.43317 -s 2 -d 3 -p cbr -e 210 -c 1 -i 342 -a 1 -x {1.0 5.0 316 ------- null} + -t 1.43317 -s 3 -d 5 -p cbr -e 210 -c 1 -i 342 -a 1 -x {1.0 5.0 316 ------- null} - -t 1.43317 -s 3 -d 5 -p cbr -e 210 -c 1 -i 342 -a 1 -x {1.0 5.0 316 ------- null} h -t 1.43317 -s 3 -d 5 -p cbr -e 210 -c 1 -i 342 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.43357 -s 3 -d 5 -p cbr -e 210 -c 1 -i 330 -a 1 -x {1.0 5.0 305 ------- null} - -t 1.43357 -s 2 -d 3 -p cbr -e 210 -c 1 -i 361 -a 1 -x {1.0 5.0 335 ------- null} h -t 1.43357 -s 2 -d 3 -p cbr -e 210 -c 1 -i 361 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.435 -s 1 -d 2 -p cbr -e 210 -c 1 -i 383 -a 1 -x {1.0 5.0 356 ------- null} - -t 1.435 -s 1 -d 2 -p cbr -e 210 -c 1 -i 383 -a 1 -x {1.0 5.0 356 ------- null} h -t 1.435 -s 1 -d 2 -p cbr -e 210 -c 1 -i 383 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.43586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 369 -a 1 -x {1.0 5.0 342 ------- null} + -t 1.43586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 369 -a 1 -x {1.0 5.0 342 ------- null} r -t 1.43613 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 323 -a 0 -x {0.0 4.0 13 ------- null} + -t 1.43613 -s 4 -d 3 -p ack -e 40 -c 0 -i 384 -a 0 -x {4.0 0.0 10 ------- null} - -t 1.43613 -s 4 -d 3 -p ack -e 40 -c 0 -i 384 -a 0 -x {4.0 0.0 10 ------- null} h -t 1.43613 -s 4 -d 3 -p ack -e 40 -c 0 -i 384 -a 0 -x {4.0 0.0 -1 ------- null} r -t 1.43653 -s 2 -d 3 -p cbr -e 210 -c 1 -i 343 -a 1 -x {1.0 5.0 317 ------- null} + -t 1.43653 -s 3 -d 5 -p cbr -e 210 -c 1 -i 343 -a 1 -x {1.0 5.0 317 ------- null} - -t 1.43653 -s 3 -d 5 -p cbr -e 210 -c 1 -i 343 -a 1 -x {1.0 5.0 317 ------- null} h -t 1.43653 -s 3 -d 5 -p cbr -e 210 -c 1 -i 343 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.43693 -s 3 -d 5 -p cbr -e 210 -c 1 -i 331 -a 1 -x {1.0 5.0 306 ------- null} - -t 1.43693 -s 2 -d 3 -p cbr -e 210 -c 1 -i 362 -a 1 -x {1.0 5.0 336 ------- null} h -t 1.43693 -s 2 -d 3 -p cbr -e 210 -c 1 -i 362 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.43875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 385 -a 1 -x {1.0 5.0 357 ------- null} - -t 1.43875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 385 -a 1 -x {1.0 5.0 357 ------- null} h -t 1.43875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 385 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.43961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 370 -a 1 -x {1.0 5.0 343 ------- null} + -t 1.43961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 370 -a 1 -x {1.0 5.0 343 ------- null} r -t 1.43989 -s 2 -d 3 -p cbr -e 210 -c 1 -i 344 -a 1 -x {1.0 5.0 318 ------- null} + -t 1.43989 -s 3 -d 5 -p cbr -e 210 -c 1 -i 344 -a 1 -x {1.0 5.0 318 ------- null} - -t 1.43989 -s 3 -d 5 -p cbr -e 210 -c 1 -i 344 -a 1 -x {1.0 5.0 318 ------- null} h -t 1.43989 -s 3 -d 5 -p cbr -e 210 -c 1 -i 344 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.44029 -s 3 -d 5 -p cbr -e 210 -c 1 -i 332 -a 1 -x {1.0 5.0 307 ------- null} - -t 1.44029 -s 2 -d 3 -p cbr -e 210 -c 1 -i 363 -a 1 -x {1.0 5.0 337 ------- null} h -t 1.44029 -s 2 -d 3 -p cbr -e 210 -c 1 -i 363 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.4425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 386 -a 1 -x {1.0 5.0 358 ------- null} - -t 1.4425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 386 -a 1 -x {1.0 5.0 358 ------- null} h -t 1.4425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 386 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.44325 -s 2 -d 3 -p cbr -e 210 -c 1 -i 345 -a 1 -x {1.0 5.0 319 ------- null} + -t 1.44325 -s 3 -d 5 -p cbr -e 210 -c 1 -i 345 -a 1 -x {1.0 5.0 319 ------- null} - -t 1.44325 -s 3 -d 5 -p cbr -e 210 -c 1 -i 345 -a 1 -x {1.0 5.0 319 ------- null} h -t 1.44325 -s 3 -d 5 -p cbr -e 210 -c 1 -i 345 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.44336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 371 -a 1 -x {1.0 5.0 344 ------- null} + -t 1.44336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 371 -a 1 -x {1.0 5.0 344 ------- null} r -t 1.44365 -s 3 -d 5 -p cbr -e 210 -c 1 -i 333 -a 1 -x {1.0 5.0 308 ------- null} - -t 1.44365 -s 2 -d 3 -p cbr -e 210 -c 1 -i 364 -a 1 -x {1.0 5.0 338 ------- null} h -t 1.44365 -s 2 -d 3 -p cbr -e 210 -c 1 -i 364 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.44625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 387 -a 1 -x {1.0 5.0 359 ------- null} - -t 1.44625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 387 -a 1 -x {1.0 5.0 359 ------- null} h -t 1.44625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 387 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.44661 -s 2 -d 3 -p cbr -e 210 -c 1 -i 346 -a 1 -x {1.0 5.0 320 ------- null} + -t 1.44661 -s 3 -d 5 -p cbr -e 210 -c 1 -i 346 -a 1 -x {1.0 5.0 320 ------- null} - -t 1.44661 -s 3 -d 5 -p cbr -e 210 -c 1 -i 346 -a 1 -x {1.0 5.0 320 ------- null} h -t 1.44661 -s 3 -d 5 -p cbr -e 210 -c 1 -i 346 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.44701 -s 3 -d 5 -p cbr -e 210 -c 1 -i 334 -a 1 -x {1.0 5.0 309 ------- null} - -t 1.44701 -s 2 -d 3 -p cbr -e 210 -c 1 -i 365 -a 1 -x {1.0 5.0 339 ------- null} h -t 1.44701 -s 2 -d 3 -p cbr -e 210 -c 1 -i 365 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.44711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 372 -a 1 -x {1.0 5.0 345 ------- null} + -t 1.44711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 372 -a 1 -x {1.0 5.0 345 ------- null} r -t 1.44997 -s 2 -d 3 -p cbr -e 210 -c 1 -i 347 -a 1 -x {1.0 5.0 321 ------- null} + -t 1.44997 -s 3 -d 5 -p cbr -e 210 -c 1 -i 347 -a 1 -x {1.0 5.0 321 ------- null} - -t 1.44997 -s 3 -d 5 -p cbr -e 210 -c 1 -i 347 -a 1 -x {1.0 5.0 321 ------- null} h -t 1.44997 -s 3 -d 5 -p cbr -e 210 -c 1 -i 347 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.45 -s 1 -d 2 -p cbr -e 210 -c 1 -i 388 -a 1 -x {1.0 5.0 360 ------- null} - -t 1.45 -s 1 -d 2 -p cbr -e 210 -c 1 -i 388 -a 1 -x {1.0 5.0 360 ------- null} h -t 1.45 -s 1 -d 2 -p cbr -e 210 -c 1 -i 388 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.45037 -s 3 -d 5 -p cbr -e 210 -c 1 -i 335 -a 1 -x {1.0 5.0 310 ------- null} - -t 1.45037 -s 2 -d 3 -p cbr -e 210 -c 1 -i 367 -a 1 -x {1.0 5.0 340 ------- null} h -t 1.45037 -s 2 -d 3 -p cbr -e 210 -c 1 -i 367 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.45086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 373 -a 1 -x {1.0 5.0 346 ------- null} + -t 1.45086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 373 -a 1 -x {1.0 5.0 346 ------- null} r -t 1.45333 -s 2 -d 3 -p cbr -e 210 -c 1 -i 348 -a 1 -x {1.0 5.0 322 ------- null} + -t 1.45333 -s 3 -d 5 -p cbr -e 210 -c 1 -i 348 -a 1 -x {1.0 5.0 322 ------- null} - -t 1.45333 -s 3 -d 5 -p cbr -e 210 -c 1 -i 348 -a 1 -x {1.0 5.0 322 ------- null} h -t 1.45333 -s 3 -d 5 -p cbr -e 210 -c 1 -i 348 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.45373 -s 3 -d 5 -p cbr -e 210 -c 1 -i 336 -a 1 -x {1.0 5.0 311 ------- null} - -t 1.45373 -s 2 -d 3 -p cbr -e 210 -c 1 -i 368 -a 1 -x {1.0 5.0 341 ------- null} h -t 1.45373 -s 2 -d 3 -p cbr -e 210 -c 1 -i 368 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.45375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 389 -a 1 -x {1.0 5.0 361 ------- null} - -t 1.45375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 389 -a 1 -x {1.0 5.0 361 ------- null} h -t 1.45375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 389 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.45461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 374 -a 1 -x {1.0 5.0 347 ------- null} + -t 1.45461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 374 -a 1 -x {1.0 5.0 347 ------- null} r -t 1.45669 -s 2 -d 3 -p cbr -e 210 -c 1 -i 349 -a 1 -x {1.0 5.0 323 ------- null} + -t 1.45669 -s 3 -d 5 -p cbr -e 210 -c 1 -i 349 -a 1 -x {1.0 5.0 323 ------- null} - -t 1.45669 -s 3 -d 5 -p cbr -e 210 -c 1 -i 349 -a 1 -x {1.0 5.0 323 ------- null} h -t 1.45669 -s 3 -d 5 -p cbr -e 210 -c 1 -i 349 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.45709 -s 3 -d 5 -p cbr -e 210 -c 1 -i 337 -a 1 -x {1.0 5.0 312 ------- null} - -t 1.45709 -s 2 -d 3 -p cbr -e 210 -c 1 -i 369 -a 1 -x {1.0 5.0 342 ------- null} h -t 1.45709 -s 2 -d 3 -p cbr -e 210 -c 1 -i 369 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.4575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 390 -a 1 -x {1.0 5.0 362 ------- null} - -t 1.4575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 390 -a 1 -x {1.0 5.0 362 ------- null} h -t 1.4575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 390 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.45836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 375 -a 1 -x {1.0 5.0 348 ------- null} + -t 1.45836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 375 -a 1 -x {1.0 5.0 348 ------- null} r -t 1.46005 -s 2 -d 3 -p cbr -e 210 -c 1 -i 350 -a 1 -x {1.0 5.0 324 ------- null} + -t 1.46005 -s 3 -d 5 -p cbr -e 210 -c 1 -i 350 -a 1 -x {1.0 5.0 324 ------- null} - -t 1.46005 -s 3 -d 5 -p cbr -e 210 -c 1 -i 350 -a 1 -x {1.0 5.0 324 ------- null} h -t 1.46005 -s 3 -d 5 -p cbr -e 210 -c 1 -i 350 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.46045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 339 -a 1 -x {1.0 5.0 313 ------- null} - -t 1.46045 -s 2 -d 3 -p cbr -e 210 -c 1 -i 370 -a 1 -x {1.0 5.0 343 ------- null} h -t 1.46045 -s 2 -d 3 -p cbr -e 210 -c 1 -i 370 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.46125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 391 -a 1 -x {1.0 5.0 363 ------- null} - -t 1.46125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 391 -a 1 -x {1.0 5.0 363 ------- null} h -t 1.46125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 391 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.46211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 376 -a 1 -x {1.0 5.0 349 ------- null} + -t 1.46211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 376 -a 1 -x {1.0 5.0 349 ------- null} r -t 1.46341 -s 2 -d 3 -p cbr -e 210 -c 1 -i 354 -a 1 -x {1.0 5.0 328 ------- null} + -t 1.46341 -s 3 -d 5 -p cbr -e 210 -c 1 -i 354 -a 1 -x {1.0 5.0 328 ------- null} - -t 1.46341 -s 3 -d 5 -p cbr -e 210 -c 1 -i 354 -a 1 -x {1.0 5.0 328 ------- null} h -t 1.46341 -s 3 -d 5 -p cbr -e 210 -c 1 -i 354 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.46381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 340 -a 1 -x {1.0 5.0 314 ------- null} - -t 1.46381 -s 2 -d 3 -p cbr -e 210 -c 1 -i 371 -a 1 -x {1.0 5.0 344 ------- null} h -t 1.46381 -s 2 -d 3 -p cbr -e 210 -c 1 -i 371 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.465 -s 1 -d 2 -p cbr -e 210 -c 1 -i 392 -a 1 -x {1.0 5.0 364 ------- null} - -t 1.465 -s 1 -d 2 -p cbr -e 210 -c 1 -i 392 -a 1 -x {1.0 5.0 364 ------- null} h -t 1.465 -s 1 -d 2 -p cbr -e 210 -c 1 -i 392 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.46586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 377 -a 1 -x {1.0 5.0 350 ------- null} + -t 1.46586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 377 -a 1 -x {1.0 5.0 350 ------- null} r -t 1.46677 -s 2 -d 3 -p cbr -e 210 -c 1 -i 355 -a 1 -x {1.0 5.0 329 ------- null} + -t 1.46677 -s 3 -d 5 -p cbr -e 210 -c 1 -i 355 -a 1 -x {1.0 5.0 329 ------- null} - -t 1.46677 -s 3 -d 5 -p cbr -e 210 -c 1 -i 355 -a 1 -x {1.0 5.0 329 ------- null} h -t 1.46677 -s 3 -d 5 -p cbr -e 210 -c 1 -i 355 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.46717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 341 -a 1 -x {1.0 5.0 315 ------- null} - -t 1.46717 -s 2 -d 3 -p cbr -e 210 -c 1 -i 372 -a 1 -x {1.0 5.0 345 ------- null} h -t 1.46717 -s 2 -d 3 -p cbr -e 210 -c 1 -i 372 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.46875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 393 -a 1 -x {1.0 5.0 365 ------- null} - -t 1.46875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 393 -a 1 -x {1.0 5.0 365 ------- null} h -t 1.46875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 393 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.46961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 378 -a 1 -x {1.0 5.0 351 ------- null} + -t 1.46961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 378 -a 1 -x {1.0 5.0 351 ------- null} r -t 1.47013 -s 2 -d 3 -p cbr -e 210 -c 1 -i 356 -a 1 -x {1.0 5.0 330 ------- null} + -t 1.47013 -s 3 -d 5 -p cbr -e 210 -c 1 -i 356 -a 1 -x {1.0 5.0 330 ------- null} - -t 1.47013 -s 3 -d 5 -p cbr -e 210 -c 1 -i 356 -a 1 -x {1.0 5.0 330 ------- null} h -t 1.47013 -s 3 -d 5 -p cbr -e 210 -c 1 -i 356 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.47053 -s 2 -d 3 -p cbr -e 210 -c 1 -i 373 -a 1 -x {1.0 5.0 346 ------- null} h -t 1.47053 -s 2 -d 3 -p cbr -e 210 -c 1 -i 373 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.4725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 394 -a 1 -x {1.0 5.0 366 ------- null} - -t 1.4725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 394 -a 1 -x {1.0 5.0 366 ------- null} h -t 1.4725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 394 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.47336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 379 -a 1 -x {1.0 5.0 352 ------- null} + -t 1.47336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 379 -a 1 -x {1.0 5.0 352 ------- null} r -t 1.47349 -s 2 -d 3 -p cbr -e 210 -c 1 -i 357 -a 1 -x {1.0 5.0 331 ------- null} + -t 1.47349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 357 -a 1 -x {1.0 5.0 331 ------- null} - -t 1.47349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 357 -a 1 -x {1.0 5.0 331 ------- null} h -t 1.47349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 357 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.47389 -s 2 -d 3 -p cbr -e 210 -c 1 -i 374 -a 1 -x {1.0 5.0 347 ------- null} h -t 1.47389 -s 2 -d 3 -p cbr -e 210 -c 1 -i 374 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.47437 -s 3 -d 2 -p ack -e 40 -c 0 -i 366 -a 0 -x {4.0 0.0 10 ------- null} + -t 1.47437 -s 2 -d 0 -p ack -e 40 -c 0 -i 366 -a 0 -x {4.0 0.0 10 ------- null} - -t 1.47437 -s 2 -d 0 -p ack -e 40 -c 0 -i 366 -a 0 -x {4.0 0.0 10 ------- null} h -t 1.47437 -s 2 -d 0 -p ack -e 40 -c 0 -i 366 -a 0 -x {4.0 0.0 -1 ------- null} + -t 1.47625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 395 -a 1 -x {1.0 5.0 367 ------- null} - -t 1.47625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 395 -a 1 -x {1.0 5.0 367 ------- null} h -t 1.47625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 395 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.47685 -s 2 -d 3 -p cbr -e 210 -c 1 -i 358 -a 1 -x {1.0 5.0 332 ------- null} + -t 1.47685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 358 -a 1 -x {1.0 5.0 332 ------- null} - -t 1.47685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 358 -a 1 -x {1.0 5.0 332 ------- null} h -t 1.47685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 358 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.47711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 380 -a 1 -x {1.0 5.0 353 ------- null} + -t 1.47711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 380 -a 1 -x {1.0 5.0 353 ------- null} - -t 1.47725 -s 2 -d 3 -p cbr -e 210 -c 1 -i 375 -a 1 -x {1.0 5.0 348 ------- null} h -t 1.47725 -s 2 -d 3 -p cbr -e 210 -c 1 -i 375 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.48 -s 1 -d 2 -p cbr -e 210 -c 1 -i 396 -a 1 -x {1.0 5.0 368 ------- null} - -t 1.48 -s 1 -d 2 -p cbr -e 210 -c 1 -i 396 -a 1 -x {1.0 5.0 368 ------- null} h -t 1.48 -s 1 -d 2 -p cbr -e 210 -c 1 -i 396 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.48021 -s 2 -d 3 -p cbr -e 210 -c 1 -i 359 -a 1 -x {1.0 5.0 333 ------- null} + -t 1.48021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 359 -a 1 -x {1.0 5.0 333 ------- null} - -t 1.48021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 359 -a 1 -x {1.0 5.0 333 ------- null} h -t 1.48021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 359 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.48061 -s 2 -d 3 -p cbr -e 210 -c 1 -i 376 -a 1 -x {1.0 5.0 349 ------- null} h -t 1.48061 -s 2 -d 3 -p cbr -e 210 -c 1 -i 376 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.48086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 381 -a 1 -x {1.0 5.0 354 ------- null} + -t 1.48086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 381 -a 1 -x {1.0 5.0 354 ------- null} r -t 1.48357 -s 2 -d 3 -p cbr -e 210 -c 1 -i 360 -a 1 -x {1.0 5.0 334 ------- null} + -t 1.48357 -s 3 -d 5 -p cbr -e 210 -c 1 -i 360 -a 1 -x {1.0 5.0 334 ------- null} - -t 1.48357 -s 3 -d 5 -p cbr -e 210 -c 1 -i 360 -a 1 -x {1.0 5.0 334 ------- null} h -t 1.48357 -s 3 -d 5 -p cbr -e 210 -c 1 -i 360 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.48375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 397 -a 1 -x {1.0 5.0 369 ------- null} - -t 1.48375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 397 -a 1 -x {1.0 5.0 369 ------- null} h -t 1.48375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 397 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.48397 -s 2 -d 3 -p cbr -e 210 -c 1 -i 377 -a 1 -x {1.0 5.0 350 ------- null} h -t 1.48397 -s 2 -d 3 -p cbr -e 210 -c 1 -i 377 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.48461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 382 -a 1 -x {1.0 5.0 355 ------- null} + -t 1.48461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 382 -a 1 -x {1.0 5.0 355 ------- null} r -t 1.48653 -s 3 -d 5 -p cbr -e 210 -c 1 -i 342 -a 1 -x {1.0 5.0 316 ------- null} r -t 1.48677 -s 4 -d 3 -p ack -e 40 -c 0 -i 384 -a 0 -x {4.0 0.0 10 ------- null} + -t 1.48677 -s 3 -d 2 -p ack -e 40 -c 0 -i 384 -a 0 -x {4.0 0.0 10 ------- null} - -t 1.48677 -s 3 -d 2 -p ack -e 40 -c 0 -i 384 -a 0 -x {4.0 0.0 10 ------- null} h -t 1.48677 -s 3 -d 2 -p ack -e 40 -c 0 -i 384 -a 0 -x {4.0 0.0 -1 ------- null} r -t 1.48693 -s 2 -d 3 -p cbr -e 210 -c 1 -i 361 -a 1 -x {1.0 5.0 335 ------- null} + -t 1.48693 -s 3 -d 5 -p cbr -e 210 -c 1 -i 361 -a 1 -x {1.0 5.0 335 ------- null} - -t 1.48693 -s 3 -d 5 -p cbr -e 210 -c 1 -i 361 -a 1 -x {1.0 5.0 335 ------- null} h -t 1.48693 -s 3 -d 5 -p cbr -e 210 -c 1 -i 361 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.48733 -s 2 -d 3 -p cbr -e 210 -c 1 -i 378 -a 1 -x {1.0 5.0 351 ------- null} h -t 1.48733 -s 2 -d 3 -p cbr -e 210 -c 1 -i 378 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.4875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 398 -a 1 -x {1.0 5.0 370 ------- null} - -t 1.4875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 398 -a 1 -x {1.0 5.0 370 ------- null} h -t 1.4875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 398 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.48836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 383 -a 1 -x {1.0 5.0 356 ------- null} + -t 1.48836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 383 -a 1 -x {1.0 5.0 356 ------- null} r -t 1.48989 -s 3 -d 5 -p cbr -e 210 -c 1 -i 343 -a 1 -x {1.0 5.0 317 ------- null} r -t 1.49029 -s 2 -d 3 -p cbr -e 210 -c 1 -i 362 -a 1 -x {1.0 5.0 336 ------- null} + -t 1.49029 -s 3 -d 5 -p cbr -e 210 -c 1 -i 362 -a 1 -x {1.0 5.0 336 ------- null} - -t 1.49029 -s 3 -d 5 -p cbr -e 210 -c 1 -i 362 -a 1 -x {1.0 5.0 336 ------- null} h -t 1.49029 -s 3 -d 5 -p cbr -e 210 -c 1 -i 362 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.49069 -s 2 -d 3 -p cbr -e 210 -c 1 -i 379 -a 1 -x {1.0 5.0 352 ------- null} h -t 1.49069 -s 2 -d 3 -p cbr -e 210 -c 1 -i 379 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.49125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 399 -a 1 -x {1.0 5.0 371 ------- null} - -t 1.49125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 399 -a 1 -x {1.0 5.0 371 ------- null} h -t 1.49125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 399 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.49211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 385 -a 1 -x {1.0 5.0 357 ------- null} + -t 1.49211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 385 -a 1 -x {1.0 5.0 357 ------- null} r -t 1.49325 -s 3 -d 5 -p cbr -e 210 -c 1 -i 344 -a 1 -x {1.0 5.0 318 ------- null} r -t 1.49365 -s 2 -d 3 -p cbr -e 210 -c 1 -i 363 -a 1 -x {1.0 5.0 337 ------- null} + -t 1.49365 -s 3 -d 5 -p cbr -e 210 -c 1 -i 363 -a 1 -x {1.0 5.0 337 ------- null} - -t 1.49365 -s 3 -d 5 -p cbr -e 210 -c 1 -i 363 -a 1 -x {1.0 5.0 337 ------- null} h -t 1.49365 -s 3 -d 5 -p cbr -e 210 -c 1 -i 363 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.49405 -s 2 -d 3 -p cbr -e 210 -c 1 -i 380 -a 1 -x {1.0 5.0 353 ------- null} h -t 1.49405 -s 2 -d 3 -p cbr -e 210 -c 1 -i 380 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.495 -s 1 -d 2 -p cbr -e 210 -c 1 -i 400 -a 1 -x {1.0 5.0 372 ------- null} - -t 1.495 -s 1 -d 2 -p cbr -e 210 -c 1 -i 400 -a 1 -x {1.0 5.0 372 ------- null} h -t 1.495 -s 1 -d 2 -p cbr -e 210 -c 1 -i 400 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.49581 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 338 -a 0 -x {0.0 4.0 14 ------- null} + -t 1.49581 -s 4 -d 3 -p ack -e 40 -c 0 -i 401 -a 0 -x {4.0 0.0 10 ------- null} - -t 1.49581 -s 4 -d 3 -p ack -e 40 -c 0 -i 401 -a 0 -x {4.0 0.0 10 ------- null} h -t 1.49581 -s 4 -d 3 -p ack -e 40 -c 0 -i 401 -a 0 -x {4.0 0.0 -1 ------- null} r -t 1.49586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 386 -a 1 -x {1.0 5.0 358 ------- null} + -t 1.49586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 386 -a 1 -x {1.0 5.0 358 ------- null} r -t 1.49661 -s 3 -d 5 -p cbr -e 210 -c 1 -i 345 -a 1 -x {1.0 5.0 319 ------- null} r -t 1.49701 -s 2 -d 3 -p cbr -e 210 -c 1 -i 364 -a 1 -x {1.0 5.0 338 ------- null} + -t 1.49701 -s 3 -d 5 -p cbr -e 210 -c 1 -i 364 -a 1 -x {1.0 5.0 338 ------- null} - -t 1.49701 -s 3 -d 5 -p cbr -e 210 -c 1 -i 364 -a 1 -x {1.0 5.0 338 ------- null} h -t 1.49701 -s 3 -d 5 -p cbr -e 210 -c 1 -i 364 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.49741 -s 2 -d 3 -p cbr -e 210 -c 1 -i 381 -a 1 -x {1.0 5.0 354 ------- null} h -t 1.49741 -s 2 -d 3 -p cbr -e 210 -c 1 -i 381 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.49875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 402 -a 1 -x {1.0 5.0 373 ------- null} - -t 1.49875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 402 -a 1 -x {1.0 5.0 373 ------- null} h -t 1.49875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 402 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.49961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 387 -a 1 -x {1.0 5.0 359 ------- null} + -t 1.49961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 387 -a 1 -x {1.0 5.0 359 ------- null} r -t 1.49997 -s 3 -d 5 -p cbr -e 210 -c 1 -i 346 -a 1 -x {1.0 5.0 320 ------- null} r -t 1.50037 -s 2 -d 3 -p cbr -e 210 -c 1 -i 365 -a 1 -x {1.0 5.0 339 ------- null} + -t 1.50037 -s 3 -d 5 -p cbr -e 210 -c 1 -i 365 -a 1 -x {1.0 5.0 339 ------- null} - -t 1.50037 -s 3 -d 5 -p cbr -e 210 -c 1 -i 365 -a 1 -x {1.0 5.0 339 ------- null} h -t 1.50037 -s 3 -d 5 -p cbr -e 210 -c 1 -i 365 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.50077 -s 2 -d 3 -p cbr -e 210 -c 1 -i 382 -a 1 -x {1.0 5.0 355 ------- null} h -t 1.50077 -s 2 -d 3 -p cbr -e 210 -c 1 -i 382 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.5025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 403 -a 1 -x {1.0 5.0 374 ------- null} - -t 1.5025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 403 -a 1 -x {1.0 5.0 374 ------- null} h -t 1.5025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 403 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.50333 -s 3 -d 5 -p cbr -e 210 -c 1 -i 347 -a 1 -x {1.0 5.0 321 ------- null} r -t 1.50336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 388 -a 1 -x {1.0 5.0 360 ------- null} + -t 1.50336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 388 -a 1 -x {1.0 5.0 360 ------- null} r -t 1.50373 -s 2 -d 3 -p cbr -e 210 -c 1 -i 367 -a 1 -x {1.0 5.0 340 ------- null} + -t 1.50373 -s 3 -d 5 -p cbr -e 210 -c 1 -i 367 -a 1 -x {1.0 5.0 340 ------- null} - -t 1.50373 -s 3 -d 5 -p cbr -e 210 -c 1 -i 367 -a 1 -x {1.0 5.0 340 ------- null} h -t 1.50373 -s 3 -d 5 -p cbr -e 210 -c 1 -i 367 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.50413 -s 2 -d 3 -p cbr -e 210 -c 1 -i 383 -a 1 -x {1.0 5.0 356 ------- null} h -t 1.50413 -s 2 -d 3 -p cbr -e 210 -c 1 -i 383 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.50625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 404 -a 1 -x {1.0 5.0 375 ------- null} - -t 1.50625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 404 -a 1 -x {1.0 5.0 375 ------- null} h -t 1.50625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 404 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.50669 -s 3 -d 5 -p cbr -e 210 -c 1 -i 348 -a 1 -x {1.0 5.0 322 ------- null} r -t 1.50709 -s 2 -d 3 -p cbr -e 210 -c 1 -i 368 -a 1 -x {1.0 5.0 341 ------- null} + -t 1.50709 -s 3 -d 5 -p cbr -e 210 -c 1 -i 368 -a 1 -x {1.0 5.0 341 ------- null} - -t 1.50709 -s 3 -d 5 -p cbr -e 210 -c 1 -i 368 -a 1 -x {1.0 5.0 341 ------- null} h -t 1.50709 -s 3 -d 5 -p cbr -e 210 -c 1 -i 368 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.50711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 389 -a 1 -x {1.0 5.0 361 ------- null} + -t 1.50711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 389 -a 1 -x {1.0 5.0 361 ------- null} - -t 1.50749 -s 2 -d 3 -p cbr -e 210 -c 1 -i 385 -a 1 -x {1.0 5.0 357 ------- null} h -t 1.50749 -s 2 -d 3 -p cbr -e 210 -c 1 -i 385 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.51 -s 1 -d 2 -p cbr -e 210 -c 1 -i 405 -a 1 -x {1.0 5.0 376 ------- null} - -t 1.51 -s 1 -d 2 -p cbr -e 210 -c 1 -i 405 -a 1 -x {1.0 5.0 376 ------- null} h -t 1.51 -s 1 -d 2 -p cbr -e 210 -c 1 -i 405 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.51005 -s 3 -d 5 -p cbr -e 210 -c 1 -i 349 -a 1 -x {1.0 5.0 323 ------- null} r -t 1.51045 -s 2 -d 3 -p cbr -e 210 -c 1 -i 369 -a 1 -x {1.0 5.0 342 ------- null} + -t 1.51045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 369 -a 1 -x {1.0 5.0 342 ------- null} - -t 1.51045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 369 -a 1 -x {1.0 5.0 342 ------- null} h -t 1.51045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 369 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.51085 -s 2 -d 3 -p cbr -e 210 -c 1 -i 386 -a 1 -x {1.0 5.0 358 ------- null} h -t 1.51085 -s 2 -d 3 -p cbr -e 210 -c 1 -i 386 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.51086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 390 -a 1 -x {1.0 5.0 362 ------- null} + -t 1.51086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 390 -a 1 -x {1.0 5.0 362 ------- null} r -t 1.51341 -s 3 -d 5 -p cbr -e 210 -c 1 -i 350 -a 1 -x {1.0 5.0 324 ------- null} + -t 1.51375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 406 -a 1 -x {1.0 5.0 377 ------- null} - -t 1.51375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 406 -a 1 -x {1.0 5.0 377 ------- null} h -t 1.51375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 406 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.51381 -s 2 -d 3 -p cbr -e 210 -c 1 -i 370 -a 1 -x {1.0 5.0 343 ------- null} + -t 1.51381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 370 -a 1 -x {1.0 5.0 343 ------- null} - -t 1.51381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 370 -a 1 -x {1.0 5.0 343 ------- null} h -t 1.51381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 370 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.51421 -s 2 -d 3 -p cbr -e 210 -c 1 -i 387 -a 1 -x {1.0 5.0 359 ------- null} h -t 1.51421 -s 2 -d 3 -p cbr -e 210 -c 1 -i 387 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.51461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 391 -a 1 -x {1.0 5.0 363 ------- null} + -t 1.51461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 391 -a 1 -x {1.0 5.0 363 ------- null} r -t 1.51677 -s 3 -d 5 -p cbr -e 210 -c 1 -i 354 -a 1 -x {1.0 5.0 328 ------- null} r -t 1.51717 -s 2 -d 3 -p cbr -e 210 -c 1 -i 371 -a 1 -x {1.0 5.0 344 ------- null} + -t 1.51717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 371 -a 1 -x {1.0 5.0 344 ------- null} - -t 1.51717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 371 -a 1 -x {1.0 5.0 344 ------- null} h -t 1.51717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 371 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.5175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 407 -a 1 -x {1.0 5.0 378 ------- null} - -t 1.5175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 407 -a 1 -x {1.0 5.0 378 ------- null} h -t 1.5175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 407 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.51757 -s 2 -d 3 -p cbr -e 210 -c 1 -i 388 -a 1 -x {1.0 5.0 360 ------- null} h -t 1.51757 -s 2 -d 3 -p cbr -e 210 -c 1 -i 388 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.51836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 392 -a 1 -x {1.0 5.0 364 ------- null} + -t 1.51836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 392 -a 1 -x {1.0 5.0 364 ------- null} r -t 1.52013 -s 3 -d 5 -p cbr -e 210 -c 1 -i 355 -a 1 -x {1.0 5.0 329 ------- null} r -t 1.52053 -s 2 -d 3 -p cbr -e 210 -c 1 -i 372 -a 1 -x {1.0 5.0 345 ------- null} + -t 1.52053 -s 3 -d 5 -p cbr -e 210 -c 1 -i 372 -a 1 -x {1.0 5.0 345 ------- null} - -t 1.52053 -s 3 -d 5 -p cbr -e 210 -c 1 -i 372 -a 1 -x {1.0 5.0 345 ------- null} h -t 1.52053 -s 3 -d 5 -p cbr -e 210 -c 1 -i 372 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.52093 -s 2 -d 3 -p cbr -e 210 -c 1 -i 389 -a 1 -x {1.0 5.0 361 ------- null} h -t 1.52093 -s 2 -d 3 -p cbr -e 210 -c 1 -i 389 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.52125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 408 -a 1 -x {1.0 5.0 379 ------- null} - -t 1.52125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 408 -a 1 -x {1.0 5.0 379 ------- null} h -t 1.52125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 408 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.52211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 393 -a 1 -x {1.0 5.0 365 ------- null} + -t 1.52211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 393 -a 1 -x {1.0 5.0 365 ------- null} r -t 1.52349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 356 -a 1 -x {1.0 5.0 330 ------- null} r -t 1.52389 -s 2 -d 3 -p cbr -e 210 -c 1 -i 373 -a 1 -x {1.0 5.0 346 ------- null} + -t 1.52389 -s 3 -d 5 -p cbr -e 210 -c 1 -i 373 -a 1 -x {1.0 5.0 346 ------- null} - -t 1.52389 -s 3 -d 5 -p cbr -e 210 -c 1 -i 373 -a 1 -x {1.0 5.0 346 ------- null} h -t 1.52389 -s 3 -d 5 -p cbr -e 210 -c 1 -i 373 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.52429 -s 2 -d 3 -p cbr -e 210 -c 1 -i 390 -a 1 -x {1.0 5.0 362 ------- null} h -t 1.52429 -s 2 -d 3 -p cbr -e 210 -c 1 -i 390 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 409 -a 1 -x {1.0 5.0 380 ------- null} - -t 1.525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 409 -a 1 -x {1.0 5.0 380 ------- null} h -t 1.525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 409 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.52501 -s 2 -d 0 -p ack -e 40 -c 0 -i 366 -a 0 -x {4.0 0.0 10 ------- null} r -t 1.52586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 394 -a 1 -x {1.0 5.0 366 ------- null} + -t 1.52586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 394 -a 1 -x {1.0 5.0 366 ------- null} r -t 1.52685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 357 -a 1 -x {1.0 5.0 331 ------- null} r -t 1.52725 -s 2 -d 3 -p cbr -e 210 -c 1 -i 374 -a 1 -x {1.0 5.0 347 ------- null} + -t 1.52725 -s 3 -d 5 -p cbr -e 210 -c 1 -i 374 -a 1 -x {1.0 5.0 347 ------- null} - -t 1.52725 -s 3 -d 5 -p cbr -e 210 -c 1 -i 374 -a 1 -x {1.0 5.0 347 ------- null} h -t 1.52725 -s 3 -d 5 -p cbr -e 210 -c 1 -i 374 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.52765 -s 2 -d 3 -p cbr -e 210 -c 1 -i 391 -a 1 -x {1.0 5.0 363 ------- null} h -t 1.52765 -s 2 -d 3 -p cbr -e 210 -c 1 -i 391 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.52875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 410 -a 1 -x {1.0 5.0 381 ------- null} - -t 1.52875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 410 -a 1 -x {1.0 5.0 381 ------- null} h -t 1.52875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 410 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.52961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 395 -a 1 -x {1.0 5.0 367 ------- null} + -t 1.52961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 395 -a 1 -x {1.0 5.0 367 ------- null} r -t 1.53021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 358 -a 1 -x {1.0 5.0 332 ------- null} r -t 1.53061 -s 2 -d 3 -p cbr -e 210 -c 1 -i 375 -a 1 -x {1.0 5.0 348 ------- null} + -t 1.53061 -s 3 -d 5 -p cbr -e 210 -c 1 -i 375 -a 1 -x {1.0 5.0 348 ------- null} - -t 1.53061 -s 3 -d 5 -p cbr -e 210 -c 1 -i 375 -a 1 -x {1.0 5.0 348 ------- null} h -t 1.53061 -s 3 -d 5 -p cbr -e 210 -c 1 -i 375 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.53101 -s 2 -d 3 -p cbr -e 210 -c 1 -i 392 -a 1 -x {1.0 5.0 364 ------- null} h -t 1.53101 -s 2 -d 3 -p cbr -e 210 -c 1 -i 392 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.5325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 411 -a 1 -x {1.0 5.0 382 ------- null} - -t 1.5325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 411 -a 1 -x {1.0 5.0 382 ------- null} h -t 1.5325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 411 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.53336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 396 -a 1 -x {1.0 5.0 368 ------- null} + -t 1.53336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 396 -a 1 -x {1.0 5.0 368 ------- null} r -t 1.53357 -s 3 -d 5 -p cbr -e 210 -c 1 -i 359 -a 1 -x {1.0 5.0 333 ------- null} r -t 1.53397 -s 2 -d 3 -p cbr -e 210 -c 1 -i 376 -a 1 -x {1.0 5.0 349 ------- null} + -t 1.53397 -s 3 -d 5 -p cbr -e 210 -c 1 -i 376 -a 1 -x {1.0 5.0 349 ------- null} - -t 1.53397 -s 3 -d 5 -p cbr -e 210 -c 1 -i 376 -a 1 -x {1.0 5.0 349 ------- null} h -t 1.53397 -s 3 -d 5 -p cbr -e 210 -c 1 -i 376 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.53437 -s 2 -d 3 -p cbr -e 210 -c 1 -i 393 -a 1 -x {1.0 5.0 365 ------- null} h -t 1.53437 -s 2 -d 3 -p cbr -e 210 -c 1 -i 393 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.53625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 412 -a 1 -x {1.0 5.0 383 ------- null} - -t 1.53625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 412 -a 1 -x {1.0 5.0 383 ------- null} h -t 1.53625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 412 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.53693 -s 3 -d 5 -p cbr -e 210 -c 1 -i 360 -a 1 -x {1.0 5.0 334 ------- null} r -t 1.53711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 397 -a 1 -x {1.0 5.0 369 ------- null} + -t 1.53711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 397 -a 1 -x {1.0 5.0 369 ------- null} r -t 1.53733 -s 2 -d 3 -p cbr -e 210 -c 1 -i 377 -a 1 -x {1.0 5.0 350 ------- null} + -t 1.53733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 377 -a 1 -x {1.0 5.0 350 ------- null} - -t 1.53733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 377 -a 1 -x {1.0 5.0 350 ------- null} h -t 1.53733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 377 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.53741 -s 3 -d 2 -p ack -e 40 -c 0 -i 384 -a 0 -x {4.0 0.0 10 ------- null} + -t 1.53741 -s 2 -d 0 -p ack -e 40 -c 0 -i 384 -a 0 -x {4.0 0.0 10 ------- null} - -t 1.53741 -s 2 -d 0 -p ack -e 40 -c 0 -i 384 -a 0 -x {4.0 0.0 10 ------- null} h -t 1.53741 -s 2 -d 0 -p ack -e 40 -c 0 -i 384 -a 0 -x {4.0 0.0 -1 ------- null} - -t 1.53773 -s 2 -d 3 -p cbr -e 210 -c 1 -i 394 -a 1 -x {1.0 5.0 366 ------- null} h -t 1.53773 -s 2 -d 3 -p cbr -e 210 -c 1 -i 394 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.54 -s 1 -d 2 -p cbr -e 210 -c 1 -i 413 -a 1 -x {1.0 5.0 384 ------- null} - -t 1.54 -s 1 -d 2 -p cbr -e 210 -c 1 -i 413 -a 1 -x {1.0 5.0 384 ------- null} h -t 1.54 -s 1 -d 2 -p cbr -e 210 -c 1 -i 413 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.54029 -s 3 -d 5 -p cbr -e 210 -c 1 -i 361 -a 1 -x {1.0 5.0 335 ------- null} r -t 1.54069 -s 2 -d 3 -p cbr -e 210 -c 1 -i 378 -a 1 -x {1.0 5.0 351 ------- null} + -t 1.54069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 378 -a 1 -x {1.0 5.0 351 ------- null} - -t 1.54069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 378 -a 1 -x {1.0 5.0 351 ------- null} h -t 1.54069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 378 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.54086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 398 -a 1 -x {1.0 5.0 370 ------- null} + -t 1.54086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 398 -a 1 -x {1.0 5.0 370 ------- null} - -t 1.54109 -s 2 -d 3 -p cbr -e 210 -c 1 -i 395 -a 1 -x {1.0 5.0 367 ------- null} h -t 1.54109 -s 2 -d 3 -p cbr -e 210 -c 1 -i 395 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.54365 -s 3 -d 5 -p cbr -e 210 -c 1 -i 362 -a 1 -x {1.0 5.0 336 ------- null} + -t 1.54375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 414 -a 1 -x {1.0 5.0 385 ------- null} - -t 1.54375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 414 -a 1 -x {1.0 5.0 385 ------- null} h -t 1.54375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 414 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.54405 -s 2 -d 3 -p cbr -e 210 -c 1 -i 379 -a 1 -x {1.0 5.0 352 ------- null} + -t 1.54405 -s 3 -d 5 -p cbr -e 210 -c 1 -i 379 -a 1 -x {1.0 5.0 352 ------- null} - -t 1.54405 -s 3 -d 5 -p cbr -e 210 -c 1 -i 379 -a 1 -x {1.0 5.0 352 ------- null} h -t 1.54405 -s 3 -d 5 -p cbr -e 210 -c 1 -i 379 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.54445 -s 2 -d 3 -p cbr -e 210 -c 1 -i 396 -a 1 -x {1.0 5.0 368 ------- null} h -t 1.54445 -s 2 -d 3 -p cbr -e 210 -c 1 -i 396 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.54461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 399 -a 1 -x {1.0 5.0 371 ------- null} + -t 1.54461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 399 -a 1 -x {1.0 5.0 371 ------- null} r -t 1.54645 -s 4 -d 3 -p ack -e 40 -c 0 -i 401 -a 0 -x {4.0 0.0 10 ------- null} + -t 1.54645 -s 3 -d 2 -p ack -e 40 -c 0 -i 401 -a 0 -x {4.0 0.0 10 ------- null} - -t 1.54645 -s 3 -d 2 -p ack -e 40 -c 0 -i 401 -a 0 -x {4.0 0.0 10 ------- null} h -t 1.54645 -s 3 -d 2 -p ack -e 40 -c 0 -i 401 -a 0 -x {4.0 0.0 -1 ------- null} r -t 1.54701 -s 3 -d 5 -p cbr -e 210 -c 1 -i 363 -a 1 -x {1.0 5.0 337 ------- null} r -t 1.54741 -s 2 -d 3 -p cbr -e 210 -c 1 -i 380 -a 1 -x {1.0 5.0 353 ------- null} + -t 1.54741 -s 3 -d 5 -p cbr -e 210 -c 1 -i 380 -a 1 -x {1.0 5.0 353 ------- null} - -t 1.54741 -s 3 -d 5 -p cbr -e 210 -c 1 -i 380 -a 1 -x {1.0 5.0 353 ------- null} h -t 1.54741 -s 3 -d 5 -p cbr -e 210 -c 1 -i 380 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.5475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 415 -a 1 -x {1.0 5.0 386 ------- null} - -t 1.5475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 415 -a 1 -x {1.0 5.0 386 ------- null} h -t 1.5475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 415 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.54781 -s 2 -d 3 -p cbr -e 210 -c 1 -i 397 -a 1 -x {1.0 5.0 369 ------- null} h -t 1.54781 -s 2 -d 3 -p cbr -e 210 -c 1 -i 397 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.54836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 400 -a 1 -x {1.0 5.0 372 ------- null} + -t 1.54836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 400 -a 1 -x {1.0 5.0 372 ------- null} r -t 1.55037 -s 3 -d 5 -p cbr -e 210 -c 1 -i 364 -a 1 -x {1.0 5.0 338 ------- null} r -t 1.55077 -s 2 -d 3 -p cbr -e 210 -c 1 -i 381 -a 1 -x {1.0 5.0 354 ------- null} + -t 1.55077 -s 3 -d 5 -p cbr -e 210 -c 1 -i 381 -a 1 -x {1.0 5.0 354 ------- null} - -t 1.55077 -s 3 -d 5 -p cbr -e 210 -c 1 -i 381 -a 1 -x {1.0 5.0 354 ------- null} h -t 1.55077 -s 3 -d 5 -p cbr -e 210 -c 1 -i 381 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.55117 -s 2 -d 3 -p cbr -e 210 -c 1 -i 398 -a 1 -x {1.0 5.0 370 ------- null} h -t 1.55117 -s 2 -d 3 -p cbr -e 210 -c 1 -i 398 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.55125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 416 -a 1 -x {1.0 5.0 387 ------- null} - -t 1.55125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 416 -a 1 -x {1.0 5.0 387 ------- null} h -t 1.55125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 416 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.55211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 402 -a 1 -x {1.0 5.0 373 ------- null} + -t 1.55211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 402 -a 1 -x {1.0 5.0 373 ------- null} r -t 1.55373 -s 3 -d 5 -p cbr -e 210 -c 1 -i 365 -a 1 -x {1.0 5.0 339 ------- null} r -t 1.55413 -s 2 -d 3 -p cbr -e 210 -c 1 -i 382 -a 1 -x {1.0 5.0 355 ------- null} + -t 1.55413 -s 3 -d 5 -p cbr -e 210 -c 1 -i 382 -a 1 -x {1.0 5.0 355 ------- null} - -t 1.55413 -s 3 -d 5 -p cbr -e 210 -c 1 -i 382 -a 1 -x {1.0 5.0 355 ------- null} h -t 1.55413 -s 3 -d 5 -p cbr -e 210 -c 1 -i 382 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.55453 -s 2 -d 3 -p cbr -e 210 -c 1 -i 399 -a 1 -x {1.0 5.0 371 ------- null} h -t 1.55453 -s 2 -d 3 -p cbr -e 210 -c 1 -i 399 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.555 -s 1 -d 2 -p cbr -e 210 -c 1 -i 417 -a 1 -x {1.0 5.0 388 ------- null} - -t 1.555 -s 1 -d 2 -p cbr -e 210 -c 1 -i 417 -a 1 -x {1.0 5.0 388 ------- null} h -t 1.555 -s 1 -d 2 -p cbr -e 210 -c 1 -i 417 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.55586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 403 -a 1 -x {1.0 5.0 374 ------- null} + -t 1.55586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 403 -a 1 -x {1.0 5.0 374 ------- null} r -t 1.55709 -s 3 -d 5 -p cbr -e 210 -c 1 -i 367 -a 1 -x {1.0 5.0 340 ------- null} r -t 1.55749 -s 2 -d 3 -p cbr -e 210 -c 1 -i 383 -a 1 -x {1.0 5.0 356 ------- null} + -t 1.55749 -s 3 -d 5 -p cbr -e 210 -c 1 -i 383 -a 1 -x {1.0 5.0 356 ------- null} - -t 1.55749 -s 3 -d 5 -p cbr -e 210 -c 1 -i 383 -a 1 -x {1.0 5.0 356 ------- null} h -t 1.55749 -s 3 -d 5 -p cbr -e 210 -c 1 -i 383 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.55789 -s 2 -d 3 -p cbr -e 210 -c 1 -i 400 -a 1 -x {1.0 5.0 372 ------- null} h -t 1.55789 -s 2 -d 3 -p cbr -e 210 -c 1 -i 400 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.55875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 418 -a 1 -x {1.0 5.0 389 ------- null} - -t 1.55875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 418 -a 1 -x {1.0 5.0 389 ------- null} h -t 1.55875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 418 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.55961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 404 -a 1 -x {1.0 5.0 375 ------- null} + -t 1.55961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 404 -a 1 -x {1.0 5.0 375 ------- null} r -t 1.56045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 368 -a 1 -x {1.0 5.0 341 ------- null} r -t 1.56085 -s 2 -d 3 -p cbr -e 210 -c 1 -i 385 -a 1 -x {1.0 5.0 357 ------- null} + -t 1.56085 -s 3 -d 5 -p cbr -e 210 -c 1 -i 385 -a 1 -x {1.0 5.0 357 ------- null} - -t 1.56085 -s 3 -d 5 -p cbr -e 210 -c 1 -i 385 -a 1 -x {1.0 5.0 357 ------- null} h -t 1.56085 -s 3 -d 5 -p cbr -e 210 -c 1 -i 385 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.56125 -s 2 -d 3 -p cbr -e 210 -c 1 -i 402 -a 1 -x {1.0 5.0 373 ------- null} h -t 1.56125 -s 2 -d 3 -p cbr -e 210 -c 1 -i 402 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.5625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 419 -a 1 -x {1.0 5.0 390 ------- null} - -t 1.5625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 419 -a 1 -x {1.0 5.0 390 ------- null} h -t 1.5625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 419 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.56336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 405 -a 1 -x {1.0 5.0 376 ------- null} + -t 1.56336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 405 -a 1 -x {1.0 5.0 376 ------- null} r -t 1.56381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 369 -a 1 -x {1.0 5.0 342 ------- null} r -t 1.56421 -s 2 -d 3 -p cbr -e 210 -c 1 -i 386 -a 1 -x {1.0 5.0 358 ------- null} + -t 1.56421 -s 3 -d 5 -p cbr -e 210 -c 1 -i 386 -a 1 -x {1.0 5.0 358 ------- null} - -t 1.56421 -s 3 -d 5 -p cbr -e 210 -c 1 -i 386 -a 1 -x {1.0 5.0 358 ------- null} h -t 1.56421 -s 3 -d 5 -p cbr -e 210 -c 1 -i 386 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.56461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 403 -a 1 -x {1.0 5.0 374 ------- null} h -t 1.56461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 403 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.56625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 420 -a 1 -x {1.0 5.0 391 ------- null} - -t 1.56625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 420 -a 1 -x {1.0 5.0 391 ------- null} h -t 1.56625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 420 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.56711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 406 -a 1 -x {1.0 5.0 377 ------- null} + -t 1.56711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 406 -a 1 -x {1.0 5.0 377 ------- null} r -t 1.56717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 370 -a 1 -x {1.0 5.0 343 ------- null} r -t 1.56757 -s 2 -d 3 -p cbr -e 210 -c 1 -i 387 -a 1 -x {1.0 5.0 359 ------- null} + -t 1.56757 -s 3 -d 5 -p cbr -e 210 -c 1 -i 387 -a 1 -x {1.0 5.0 359 ------- null} - -t 1.56757 -s 3 -d 5 -p cbr -e 210 -c 1 -i 387 -a 1 -x {1.0 5.0 359 ------- null} h -t 1.56757 -s 3 -d 5 -p cbr -e 210 -c 1 -i 387 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.56797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 404 -a 1 -x {1.0 5.0 375 ------- null} h -t 1.56797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 404 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.57 -s 1 -d 2 -p cbr -e 210 -c 1 -i 421 -a 1 -x {1.0 5.0 392 ------- null} - -t 1.57 -s 1 -d 2 -p cbr -e 210 -c 1 -i 421 -a 1 -x {1.0 5.0 392 ------- null} h -t 1.57 -s 1 -d 2 -p cbr -e 210 -c 1 -i 421 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.57053 -s 3 -d 5 -p cbr -e 210 -c 1 -i 371 -a 1 -x {1.0 5.0 344 ------- null} r -t 1.57086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 407 -a 1 -x {1.0 5.0 378 ------- null} + -t 1.57086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 407 -a 1 -x {1.0 5.0 378 ------- null} r -t 1.57093 -s 2 -d 3 -p cbr -e 210 -c 1 -i 388 -a 1 -x {1.0 5.0 360 ------- null} + -t 1.57093 -s 3 -d 5 -p cbr -e 210 -c 1 -i 388 -a 1 -x {1.0 5.0 360 ------- null} - -t 1.57093 -s 3 -d 5 -p cbr -e 210 -c 1 -i 388 -a 1 -x {1.0 5.0 360 ------- null} h -t 1.57093 -s 3 -d 5 -p cbr -e 210 -c 1 -i 388 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.57133 -s 2 -d 3 -p cbr -e 210 -c 1 -i 405 -a 1 -x {1.0 5.0 376 ------- null} h -t 1.57133 -s 2 -d 3 -p cbr -e 210 -c 1 -i 405 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.57375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 422 -a 1 -x {1.0 5.0 393 ------- null} - -t 1.57375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 422 -a 1 -x {1.0 5.0 393 ------- null} h -t 1.57375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 422 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.57389 -s 3 -d 5 -p cbr -e 210 -c 1 -i 372 -a 1 -x {1.0 5.0 345 ------- null} r -t 1.57429 -s 2 -d 3 -p cbr -e 210 -c 1 -i 389 -a 1 -x {1.0 5.0 361 ------- null} + -t 1.57429 -s 3 -d 5 -p cbr -e 210 -c 1 -i 389 -a 1 -x {1.0 5.0 361 ------- null} - -t 1.57429 -s 3 -d 5 -p cbr -e 210 -c 1 -i 389 -a 1 -x {1.0 5.0 361 ------- null} h -t 1.57429 -s 3 -d 5 -p cbr -e 210 -c 1 -i 389 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.57461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 408 -a 1 -x {1.0 5.0 379 ------- null} + -t 1.57461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 408 -a 1 -x {1.0 5.0 379 ------- null} - -t 1.57469 -s 2 -d 3 -p cbr -e 210 -c 1 -i 406 -a 1 -x {1.0 5.0 377 ------- null} h -t 1.57469 -s 2 -d 3 -p cbr -e 210 -c 1 -i 406 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.57725 -s 3 -d 5 -p cbr -e 210 -c 1 -i 373 -a 1 -x {1.0 5.0 346 ------- null} + -t 1.5775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 423 -a 1 -x {1.0 5.0 394 ------- null} - -t 1.5775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 423 -a 1 -x {1.0 5.0 394 ------- null} h -t 1.5775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 423 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.57765 -s 2 -d 3 -p cbr -e 210 -c 1 -i 390 -a 1 -x {1.0 5.0 362 ------- null} + -t 1.57765 -s 3 -d 5 -p cbr -e 210 -c 1 -i 390 -a 1 -x {1.0 5.0 362 ------- null} - -t 1.57765 -s 3 -d 5 -p cbr -e 210 -c 1 -i 390 -a 1 -x {1.0 5.0 362 ------- null} h -t 1.57765 -s 3 -d 5 -p cbr -e 210 -c 1 -i 390 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.57805 -s 2 -d 3 -p cbr -e 210 -c 1 -i 407 -a 1 -x {1.0 5.0 378 ------- null} h -t 1.57805 -s 2 -d 3 -p cbr -e 210 -c 1 -i 407 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.57836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 409 -a 1 -x {1.0 5.0 380 ------- null} + -t 1.57836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 409 -a 1 -x {1.0 5.0 380 ------- null} r -t 1.58061 -s 3 -d 5 -p cbr -e 210 -c 1 -i 374 -a 1 -x {1.0 5.0 347 ------- null} r -t 1.58101 -s 2 -d 3 -p cbr -e 210 -c 1 -i 391 -a 1 -x {1.0 5.0 363 ------- null} + -t 1.58101 -s 3 -d 5 -p cbr -e 210 -c 1 -i 391 -a 1 -x {1.0 5.0 363 ------- null} - -t 1.58101 -s 3 -d 5 -p cbr -e 210 -c 1 -i 391 -a 1 -x {1.0 5.0 363 ------- null} h -t 1.58101 -s 3 -d 5 -p cbr -e 210 -c 1 -i 391 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.58125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 424 -a 1 -x {1.0 5.0 395 ------- null} - -t 1.58125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 424 -a 1 -x {1.0 5.0 395 ------- null} h -t 1.58125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 424 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.58141 -s 2 -d 3 -p cbr -e 210 -c 1 -i 408 -a 1 -x {1.0 5.0 379 ------- null} h -t 1.58141 -s 2 -d 3 -p cbr -e 210 -c 1 -i 408 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.58211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 410 -a 1 -x {1.0 5.0 381 ------- null} + -t 1.58211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 410 -a 1 -x {1.0 5.0 381 ------- null} r -t 1.58397 -s 3 -d 5 -p cbr -e 210 -c 1 -i 375 -a 1 -x {1.0 5.0 348 ------- null} r -t 1.58437 -s 2 -d 3 -p cbr -e 210 -c 1 -i 392 -a 1 -x {1.0 5.0 364 ------- null} + -t 1.58437 -s 3 -d 5 -p cbr -e 210 -c 1 -i 392 -a 1 -x {1.0 5.0 364 ------- null} - -t 1.58437 -s 3 -d 5 -p cbr -e 210 -c 1 -i 392 -a 1 -x {1.0 5.0 364 ------- null} h -t 1.58437 -s 3 -d 5 -p cbr -e 210 -c 1 -i 392 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.58477 -s 2 -d 3 -p cbr -e 210 -c 1 -i 409 -a 1 -x {1.0 5.0 380 ------- null} h -t 1.58477 -s 2 -d 3 -p cbr -e 210 -c 1 -i 409 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.585 -s 1 -d 2 -p cbr -e 210 -c 1 -i 425 -a 1 -x {1.0 5.0 396 ------- null} - -t 1.585 -s 1 -d 2 -p cbr -e 210 -c 1 -i 425 -a 1 -x {1.0 5.0 396 ------- null} h -t 1.585 -s 1 -d 2 -p cbr -e 210 -c 1 -i 425 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.58586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 411 -a 1 -x {1.0 5.0 382 ------- null} + -t 1.58586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 411 -a 1 -x {1.0 5.0 382 ------- null} r -t 1.58733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 376 -a 1 -x {1.0 5.0 349 ------- null} r -t 1.58773 -s 2 -d 3 -p cbr -e 210 -c 1 -i 393 -a 1 -x {1.0 5.0 365 ------- null} + -t 1.58773 -s 3 -d 5 -p cbr -e 210 -c 1 -i 393 -a 1 -x {1.0 5.0 365 ------- null} - -t 1.58773 -s 3 -d 5 -p cbr -e 210 -c 1 -i 393 -a 1 -x {1.0 5.0 365 ------- null} h -t 1.58773 -s 3 -d 5 -p cbr -e 210 -c 1 -i 393 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.58805 -s 2 -d 0 -p ack -e 40 -c 0 -i 384 -a 0 -x {4.0 0.0 10 ------- null} - -t 1.58813 -s 2 -d 3 -p cbr -e 210 -c 1 -i 410 -a 1 -x {1.0 5.0 381 ------- null} h -t 1.58813 -s 2 -d 3 -p cbr -e 210 -c 1 -i 410 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.58875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 426 -a 1 -x {1.0 5.0 397 ------- null} - -t 1.58875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 426 -a 1 -x {1.0 5.0 397 ------- null} h -t 1.58875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 426 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.58961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 412 -a 1 -x {1.0 5.0 383 ------- null} + -t 1.58961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 412 -a 1 -x {1.0 5.0 383 ------- null} r -t 1.59069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 377 -a 1 -x {1.0 5.0 350 ------- null} r -t 1.59109 -s 2 -d 3 -p cbr -e 210 -c 1 -i 394 -a 1 -x {1.0 5.0 366 ------- null} + -t 1.59109 -s 3 -d 5 -p cbr -e 210 -c 1 -i 394 -a 1 -x {1.0 5.0 366 ------- null} - -t 1.59109 -s 3 -d 5 -p cbr -e 210 -c 1 -i 394 -a 1 -x {1.0 5.0 366 ------- null} h -t 1.59109 -s 3 -d 5 -p cbr -e 210 -c 1 -i 394 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.59149 -s 2 -d 3 -p cbr -e 210 -c 1 -i 411 -a 1 -x {1.0 5.0 382 ------- null} h -t 1.59149 -s 2 -d 3 -p cbr -e 210 -c 1 -i 411 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.5925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 427 -a 1 -x {1.0 5.0 398 ------- null} - -t 1.5925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 427 -a 1 -x {1.0 5.0 398 ------- null} h -t 1.5925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 427 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.59336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 413 -a 1 -x {1.0 5.0 384 ------- null} + -t 1.59336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 413 -a 1 -x {1.0 5.0 384 ------- null} r -t 1.59405 -s 3 -d 5 -p cbr -e 210 -c 1 -i 378 -a 1 -x {1.0 5.0 351 ------- null} r -t 1.59445 -s 2 -d 3 -p cbr -e 210 -c 1 -i 395 -a 1 -x {1.0 5.0 367 ------- null} + -t 1.59445 -s 3 -d 5 -p cbr -e 210 -c 1 -i 395 -a 1 -x {1.0 5.0 367 ------- null} - -t 1.59445 -s 3 -d 5 -p cbr -e 210 -c 1 -i 395 -a 1 -x {1.0 5.0 367 ------- null} h -t 1.59445 -s 3 -d 5 -p cbr -e 210 -c 1 -i 395 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.59485 -s 2 -d 3 -p cbr -e 210 -c 1 -i 412 -a 1 -x {1.0 5.0 383 ------- null} h -t 1.59485 -s 2 -d 3 -p cbr -e 210 -c 1 -i 412 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.59625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 428 -a 1 -x {1.0 5.0 399 ------- null} - -t 1.59625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 428 -a 1 -x {1.0 5.0 399 ------- null} h -t 1.59625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 428 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.59709 -s 3 -d 2 -p ack -e 40 -c 0 -i 401 -a 0 -x {4.0 0.0 10 ------- null} + -t 1.59709 -s 2 -d 0 -p ack -e 40 -c 0 -i 401 -a 0 -x {4.0 0.0 10 ------- null} - -t 1.59709 -s 2 -d 0 -p ack -e 40 -c 0 -i 401 -a 0 -x {4.0 0.0 10 ------- null} h -t 1.59709 -s 2 -d 0 -p ack -e 40 -c 0 -i 401 -a 0 -x {4.0 0.0 -1 ------- null} r -t 1.59711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 414 -a 1 -x {1.0 5.0 385 ------- null} + -t 1.59711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 414 -a 1 -x {1.0 5.0 385 ------- null} r -t 1.59741 -s 3 -d 5 -p cbr -e 210 -c 1 -i 379 -a 1 -x {1.0 5.0 352 ------- null} r -t 1.59781 -s 2 -d 3 -p cbr -e 210 -c 1 -i 396 -a 1 -x {1.0 5.0 368 ------- null} + -t 1.59781 -s 3 -d 5 -p cbr -e 210 -c 1 -i 396 -a 1 -x {1.0 5.0 368 ------- null} - -t 1.59781 -s 3 -d 5 -p cbr -e 210 -c 1 -i 396 -a 1 -x {1.0 5.0 368 ------- null} h -t 1.59781 -s 3 -d 5 -p cbr -e 210 -c 1 -i 396 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.59821 -s 2 -d 3 -p cbr -e 210 -c 1 -i 413 -a 1 -x {1.0 5.0 384 ------- null} h -t 1.59821 -s 2 -d 3 -p cbr -e 210 -c 1 -i 413 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.6 -s 1 -d 2 -p cbr -e 210 -c 1 -i 429 -a 1 -x {1.0 5.0 400 ------- null} - -t 1.6 -s 1 -d 2 -p cbr -e 210 -c 1 -i 429 -a 1 -x {1.0 5.0 400 ------- null} h -t 1.6 -s 1 -d 2 -p cbr -e 210 -c 1 -i 429 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.60077 -s 3 -d 5 -p cbr -e 210 -c 1 -i 380 -a 1 -x {1.0 5.0 353 ------- null} r -t 1.60086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 415 -a 1 -x {1.0 5.0 386 ------- null} + -t 1.60086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 415 -a 1 -x {1.0 5.0 386 ------- null} r -t 1.60117 -s 2 -d 3 -p cbr -e 210 -c 1 -i 397 -a 1 -x {1.0 5.0 369 ------- null} + -t 1.60117 -s 3 -d 5 -p cbr -e 210 -c 1 -i 397 -a 1 -x {1.0 5.0 369 ------- null} - -t 1.60117 -s 3 -d 5 -p cbr -e 210 -c 1 -i 397 -a 1 -x {1.0 5.0 369 ------- null} h -t 1.60117 -s 3 -d 5 -p cbr -e 210 -c 1 -i 397 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.60157 -s 2 -d 3 -p cbr -e 210 -c 1 -i 414 -a 1 -x {1.0 5.0 385 ------- null} h -t 1.60157 -s 2 -d 3 -p cbr -e 210 -c 1 -i 414 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.60375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 430 -a 1 -x {1.0 5.0 401 ------- null} - -t 1.60375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 430 -a 1 -x {1.0 5.0 401 ------- null} h -t 1.60375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 430 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.60413 -s 3 -d 5 -p cbr -e 210 -c 1 -i 381 -a 1 -x {1.0 5.0 354 ------- null} r -t 1.60453 -s 2 -d 3 -p cbr -e 210 -c 1 -i 398 -a 1 -x {1.0 5.0 370 ------- null} + -t 1.60453 -s 3 -d 5 -p cbr -e 210 -c 1 -i 398 -a 1 -x {1.0 5.0 370 ------- null} - -t 1.60453 -s 3 -d 5 -p cbr -e 210 -c 1 -i 398 -a 1 -x {1.0 5.0 370 ------- null} h -t 1.60453 -s 3 -d 5 -p cbr -e 210 -c 1 -i 398 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.60461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 416 -a 1 -x {1.0 5.0 387 ------- null} + -t 1.60461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 416 -a 1 -x {1.0 5.0 387 ------- null} - -t 1.60493 -s 2 -d 3 -p cbr -e 210 -c 1 -i 415 -a 1 -x {1.0 5.0 386 ------- null} h -t 1.60493 -s 2 -d 3 -p cbr -e 210 -c 1 -i 415 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.60749 -s 3 -d 5 -p cbr -e 210 -c 1 -i 382 -a 1 -x {1.0 5.0 355 ------- null} + -t 1.6075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 431 -a 1 -x {1.0 5.0 402 ------- null} - -t 1.6075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 431 -a 1 -x {1.0 5.0 402 ------- null} h -t 1.6075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 431 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.60789 -s 2 -d 3 -p cbr -e 210 -c 1 -i 399 -a 1 -x {1.0 5.0 371 ------- null} + -t 1.60789 -s 3 -d 5 -p cbr -e 210 -c 1 -i 399 -a 1 -x {1.0 5.0 371 ------- null} - -t 1.60789 -s 3 -d 5 -p cbr -e 210 -c 1 -i 399 -a 1 -x {1.0 5.0 371 ------- null} h -t 1.60789 -s 3 -d 5 -p cbr -e 210 -c 1 -i 399 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.60829 -s 2 -d 3 -p cbr -e 210 -c 1 -i 416 -a 1 -x {1.0 5.0 387 ------- null} h -t 1.60829 -s 2 -d 3 -p cbr -e 210 -c 1 -i 416 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.60836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 417 -a 1 -x {1.0 5.0 388 ------- null} + -t 1.60836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 417 -a 1 -x {1.0 5.0 388 ------- null} r -t 1.61085 -s 3 -d 5 -p cbr -e 210 -c 1 -i 383 -a 1 -x {1.0 5.0 356 ------- null} + -t 1.61125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 432 -a 1 -x {1.0 5.0 403 ------- null} - -t 1.61125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 432 -a 1 -x {1.0 5.0 403 ------- null} h -t 1.61125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 432 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.61125 -s 2 -d 3 -p cbr -e 210 -c 1 -i 400 -a 1 -x {1.0 5.0 372 ------- null} + -t 1.61125 -s 3 -d 5 -p cbr -e 210 -c 1 -i 400 -a 1 -x {1.0 5.0 372 ------- null} - -t 1.61125 -s 3 -d 5 -p cbr -e 210 -c 1 -i 400 -a 1 -x {1.0 5.0 372 ------- null} h -t 1.61125 -s 3 -d 5 -p cbr -e 210 -c 1 -i 400 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.61165 -s 2 -d 3 -p cbr -e 210 -c 1 -i 417 -a 1 -x {1.0 5.0 388 ------- null} h -t 1.61165 -s 2 -d 3 -p cbr -e 210 -c 1 -i 417 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.61211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 418 -a 1 -x {1.0 5.0 389 ------- null} + -t 1.61211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 418 -a 1 -x {1.0 5.0 389 ------- null} r -t 1.61421 -s 3 -d 5 -p cbr -e 210 -c 1 -i 385 -a 1 -x {1.0 5.0 357 ------- null} r -t 1.61461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 402 -a 1 -x {1.0 5.0 373 ------- null} + -t 1.61461 -s 3 -d 5 -p cbr -e 210 -c 1 -i 402 -a 1 -x {1.0 5.0 373 ------- null} - -t 1.61461 -s 3 -d 5 -p cbr -e 210 -c 1 -i 402 -a 1 -x {1.0 5.0 373 ------- null} h -t 1.61461 -s 3 -d 5 -p cbr -e 210 -c 1 -i 402 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.615 -s 1 -d 2 -p cbr -e 210 -c 1 -i 433 -a 1 -x {1.0 5.0 404 ------- null} - -t 1.615 -s 1 -d 2 -p cbr -e 210 -c 1 -i 433 -a 1 -x {1.0 5.0 404 ------- null} h -t 1.615 -s 1 -d 2 -p cbr -e 210 -c 1 -i 433 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.61501 -s 2 -d 3 -p cbr -e 210 -c 1 -i 418 -a 1 -x {1.0 5.0 389 ------- null} h -t 1.61501 -s 2 -d 3 -p cbr -e 210 -c 1 -i 418 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.61586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 419 -a 1 -x {1.0 5.0 390 ------- null} + -t 1.61586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 419 -a 1 -x {1.0 5.0 390 ------- null} r -t 1.61757 -s 3 -d 5 -p cbr -e 210 -c 1 -i 386 -a 1 -x {1.0 5.0 358 ------- null} r -t 1.61797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 403 -a 1 -x {1.0 5.0 374 ------- null} + -t 1.61797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 403 -a 1 -x {1.0 5.0 374 ------- null} - -t 1.61797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 403 -a 1 -x {1.0 5.0 374 ------- null} h -t 1.61797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 403 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.61837 -s 2 -d 3 -p cbr -e 210 -c 1 -i 419 -a 1 -x {1.0 5.0 390 ------- null} h -t 1.61837 -s 2 -d 3 -p cbr -e 210 -c 1 -i 419 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.61875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 434 -a 1 -x {1.0 5.0 405 ------- null} - -t 1.61875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 434 -a 1 -x {1.0 5.0 405 ------- null} h -t 1.61875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 434 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.61961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 420 -a 1 -x {1.0 5.0 391 ------- null} + -t 1.61961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 420 -a 1 -x {1.0 5.0 391 ------- null} r -t 1.62093 -s 3 -d 5 -p cbr -e 210 -c 1 -i 387 -a 1 -x {1.0 5.0 359 ------- null} r -t 1.62133 -s 2 -d 3 -p cbr -e 210 -c 1 -i 404 -a 1 -x {1.0 5.0 375 ------- null} + -t 1.62133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 404 -a 1 -x {1.0 5.0 375 ------- null} - -t 1.62133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 404 -a 1 -x {1.0 5.0 375 ------- null} h -t 1.62133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 404 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.62173 -s 2 -d 3 -p cbr -e 210 -c 1 -i 420 -a 1 -x {1.0 5.0 391 ------- null} h -t 1.62173 -s 2 -d 3 -p cbr -e 210 -c 1 -i 420 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.6225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 435 -a 1 -x {1.0 5.0 406 ------- null} - -t 1.6225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 435 -a 1 -x {1.0 5.0 406 ------- null} h -t 1.6225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 435 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.62336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 421 -a 1 -x {1.0 5.0 392 ------- null} + -t 1.62336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 421 -a 1 -x {1.0 5.0 392 ------- null} r -t 1.62429 -s 3 -d 5 -p cbr -e 210 -c 1 -i 388 -a 1 -x {1.0 5.0 360 ------- null} r -t 1.62469 -s 2 -d 3 -p cbr -e 210 -c 1 -i 405 -a 1 -x {1.0 5.0 376 ------- null} + -t 1.62469 -s 3 -d 5 -p cbr -e 210 -c 1 -i 405 -a 1 -x {1.0 5.0 376 ------- null} - -t 1.62469 -s 3 -d 5 -p cbr -e 210 -c 1 -i 405 -a 1 -x {1.0 5.0 376 ------- null} h -t 1.62469 -s 3 -d 5 -p cbr -e 210 -c 1 -i 405 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.62509 -s 2 -d 3 -p cbr -e 210 -c 1 -i 421 -a 1 -x {1.0 5.0 392 ------- null} h -t 1.62509 -s 2 -d 3 -p cbr -e 210 -c 1 -i 421 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.62625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 436 -a 1 -x {1.0 5.0 407 ------- null} - -t 1.62625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 436 -a 1 -x {1.0 5.0 407 ------- null} h -t 1.62625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 436 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.62711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 422 -a 1 -x {1.0 5.0 393 ------- null} + -t 1.62711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 422 -a 1 -x {1.0 5.0 393 ------- null} r -t 1.62765 -s 3 -d 5 -p cbr -e 210 -c 1 -i 389 -a 1 -x {1.0 5.0 361 ------- null} r -t 1.62805 -s 2 -d 3 -p cbr -e 210 -c 1 -i 406 -a 1 -x {1.0 5.0 377 ------- null} + -t 1.62805 -s 3 -d 5 -p cbr -e 210 -c 1 -i 406 -a 1 -x {1.0 5.0 377 ------- null} - -t 1.62805 -s 3 -d 5 -p cbr -e 210 -c 1 -i 406 -a 1 -x {1.0 5.0 377 ------- null} h -t 1.62805 -s 3 -d 5 -p cbr -e 210 -c 1 -i 406 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.62845 -s 2 -d 3 -p cbr -e 210 -c 1 -i 422 -a 1 -x {1.0 5.0 393 ------- null} h -t 1.62845 -s 2 -d 3 -p cbr -e 210 -c 1 -i 422 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.63 -s 1 -d 2 -p cbr -e 210 -c 1 -i 437 -a 1 -x {1.0 5.0 408 ------- null} - -t 1.63 -s 1 -d 2 -p cbr -e 210 -c 1 -i 437 -a 1 -x {1.0 5.0 408 ------- null} h -t 1.63 -s 1 -d 2 -p cbr -e 210 -c 1 -i 437 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.63086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 423 -a 1 -x {1.0 5.0 394 ------- null} + -t 1.63086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 423 -a 1 -x {1.0 5.0 394 ------- null} r -t 1.63101 -s 3 -d 5 -p cbr -e 210 -c 1 -i 390 -a 1 -x {1.0 5.0 362 ------- null} r -t 1.63141 -s 2 -d 3 -p cbr -e 210 -c 1 -i 407 -a 1 -x {1.0 5.0 378 ------- null} + -t 1.63141 -s 3 -d 5 -p cbr -e 210 -c 1 -i 407 -a 1 -x {1.0 5.0 378 ------- null} - -t 1.63141 -s 3 -d 5 -p cbr -e 210 -c 1 -i 407 -a 1 -x {1.0 5.0 378 ------- null} h -t 1.63141 -s 3 -d 5 -p cbr -e 210 -c 1 -i 407 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.63181 -s 2 -d 3 -p cbr -e 210 -c 1 -i 423 -a 1 -x {1.0 5.0 394 ------- null} h -t 1.63181 -s 2 -d 3 -p cbr -e 210 -c 1 -i 423 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.63375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 438 -a 1 -x {1.0 5.0 409 ------- null} - -t 1.63375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 438 -a 1 -x {1.0 5.0 409 ------- null} h -t 1.63375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 438 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.63437 -s 3 -d 5 -p cbr -e 210 -c 1 -i 391 -a 1 -x {1.0 5.0 363 ------- null} r -t 1.63461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 424 -a 1 -x {1.0 5.0 395 ------- null} + -t 1.63461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 424 -a 1 -x {1.0 5.0 395 ------- null} r -t 1.63477 -s 2 -d 3 -p cbr -e 210 -c 1 -i 408 -a 1 -x {1.0 5.0 379 ------- null} + -t 1.63477 -s 3 -d 5 -p cbr -e 210 -c 1 -i 408 -a 1 -x {1.0 5.0 379 ------- null} - -t 1.63477 -s 3 -d 5 -p cbr -e 210 -c 1 -i 408 -a 1 -x {1.0 5.0 379 ------- null} h -t 1.63477 -s 3 -d 5 -p cbr -e 210 -c 1 -i 408 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.63517 -s 2 -d 3 -p cbr -e 210 -c 1 -i 424 -a 1 -x {1.0 5.0 395 ------- null} h -t 1.63517 -s 2 -d 3 -p cbr -e 210 -c 1 -i 424 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.6375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 439 -a 1 -x {1.0 5.0 410 ------- null} - -t 1.6375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 439 -a 1 -x {1.0 5.0 410 ------- null} h -t 1.6375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 439 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.63773 -s 3 -d 5 -p cbr -e 210 -c 1 -i 392 -a 1 -x {1.0 5.0 364 ------- null} r -t 1.63813 -s 2 -d 3 -p cbr -e 210 -c 1 -i 409 -a 1 -x {1.0 5.0 380 ------- null} + -t 1.63813 -s 3 -d 5 -p cbr -e 210 -c 1 -i 409 -a 1 -x {1.0 5.0 380 ------- null} - -t 1.63813 -s 3 -d 5 -p cbr -e 210 -c 1 -i 409 -a 1 -x {1.0 5.0 380 ------- null} h -t 1.63813 -s 3 -d 5 -p cbr -e 210 -c 1 -i 409 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.63836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 425 -a 1 -x {1.0 5.0 396 ------- null} + -t 1.63836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 425 -a 1 -x {1.0 5.0 396 ------- null} - -t 1.63853 -s 2 -d 3 -p cbr -e 210 -c 1 -i 425 -a 1 -x {1.0 5.0 396 ------- null} h -t 1.63853 -s 2 -d 3 -p cbr -e 210 -c 1 -i 425 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.64109 -s 3 -d 5 -p cbr -e 210 -c 1 -i 393 -a 1 -x {1.0 5.0 365 ------- null} + -t 1.64125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 440 -a 1 -x {1.0 5.0 411 ------- null} - -t 1.64125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 440 -a 1 -x {1.0 5.0 411 ------- null} h -t 1.64125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 440 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.64149 -s 2 -d 3 -p cbr -e 210 -c 1 -i 410 -a 1 -x {1.0 5.0 381 ------- null} + -t 1.64149 -s 3 -d 5 -p cbr -e 210 -c 1 -i 410 -a 1 -x {1.0 5.0 381 ------- null} - -t 1.64149 -s 3 -d 5 -p cbr -e 210 -c 1 -i 410 -a 1 -x {1.0 5.0 381 ------- null} h -t 1.64149 -s 3 -d 5 -p cbr -e 210 -c 1 -i 410 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.64211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 426 -a 1 -x {1.0 5.0 397 ------- null} + -t 1.64211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 426 -a 1 -x {1.0 5.0 397 ------- null} - -t 1.64211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 426 -a 1 -x {1.0 5.0 397 ------- null} h -t 1.64211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 426 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.64445 -s 3 -d 5 -p cbr -e 210 -c 1 -i 394 -a 1 -x {1.0 5.0 366 ------- null} r -t 1.64485 -s 2 -d 3 -p cbr -e 210 -c 1 -i 411 -a 1 -x {1.0 5.0 382 ------- null} + -t 1.64485 -s 3 -d 5 -p cbr -e 210 -c 1 -i 411 -a 1 -x {1.0 5.0 382 ------- null} - -t 1.64485 -s 3 -d 5 -p cbr -e 210 -c 1 -i 411 -a 1 -x {1.0 5.0 382 ------- null} h -t 1.64485 -s 3 -d 5 -p cbr -e 210 -c 1 -i 411 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.645 -s 1 -d 2 -p cbr -e 210 -c 1 -i 441 -a 1 -x {1.0 5.0 412 ------- null} - -t 1.645 -s 1 -d 2 -p cbr -e 210 -c 1 -i 441 -a 1 -x {1.0 5.0 412 ------- null} h -t 1.645 -s 1 -d 2 -p cbr -e 210 -c 1 -i 441 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.64586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 427 -a 1 -x {1.0 5.0 398 ------- null} + -t 1.64586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 427 -a 1 -x {1.0 5.0 398 ------- null} - -t 1.64586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 427 -a 1 -x {1.0 5.0 398 ------- null} h -t 1.64586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 427 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.64773 -s 2 -d 0 -p ack -e 40 -c 0 -i 401 -a 0 -x {4.0 0.0 10 ------- null} + -t 1.64773 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 442 -a 0 -x {0.0 4.0 11 ------- null} - -t 1.64773 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 442 -a 0 -x {0.0 4.0 11 ------- null} h -t 1.64773 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 442 -a 0 -x {0.0 4.0 -1 ------- null} + -t 1.64773 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 443 -a 0 -x {0.0 4.0 12 ------- null} + -t 1.64773 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 444 -a 0 -x {0.0 4.0 13 ------- null} + -t 1.64773 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 445 -a 0 -x {0.0 4.0 14 ------- null} r -t 1.64781 -s 3 -d 5 -p cbr -e 210 -c 1 -i 395 -a 1 -x {1.0 5.0 367 ------- null} r -t 1.64821 -s 2 -d 3 -p cbr -e 210 -c 1 -i 412 -a 1 -x {1.0 5.0 383 ------- null} + -t 1.64821 -s 3 -d 5 -p cbr -e 210 -c 1 -i 412 -a 1 -x {1.0 5.0 383 ------- null} - -t 1.64821 -s 3 -d 5 -p cbr -e 210 -c 1 -i 412 -a 1 -x {1.0 5.0 383 ------- null} h -t 1.64821 -s 3 -d 5 -p cbr -e 210 -c 1 -i 412 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.64875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 446 -a 1 -x {1.0 5.0 413 ------- null} - -t 1.64875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 446 -a 1 -x {1.0 5.0 413 ------- null} h -t 1.64875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 446 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.64961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 428 -a 1 -x {1.0 5.0 399 ------- null} + -t 1.64961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 428 -a 1 -x {1.0 5.0 399 ------- null} - -t 1.64961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 428 -a 1 -x {1.0 5.0 399 ------- null} h -t 1.64961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 428 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.65117 -s 3 -d 5 -p cbr -e 210 -c 1 -i 396 -a 1 -x {1.0 5.0 368 ------- null} r -t 1.65157 -s 2 -d 3 -p cbr -e 210 -c 1 -i 413 -a 1 -x {1.0 5.0 384 ------- null} + -t 1.65157 -s 3 -d 5 -p cbr -e 210 -c 1 -i 413 -a 1 -x {1.0 5.0 384 ------- null} - -t 1.65157 -s 3 -d 5 -p cbr -e 210 -c 1 -i 413 -a 1 -x {1.0 5.0 384 ------- null} h -t 1.65157 -s 3 -d 5 -p cbr -e 210 -c 1 -i 413 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.6525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 447 -a 1 -x {1.0 5.0 414 ------- null} - -t 1.6525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 447 -a 1 -x {1.0 5.0 414 ------- null} h -t 1.6525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 447 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.65336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 429 -a 1 -x {1.0 5.0 400 ------- null} + -t 1.65336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 429 -a 1 -x {1.0 5.0 400 ------- null} - -t 1.65336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 429 -a 1 -x {1.0 5.0 400 ------- null} h -t 1.65336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 429 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.65453 -s 3 -d 5 -p cbr -e 210 -c 1 -i 397 -a 1 -x {1.0 5.0 369 ------- null} r -t 1.65493 -s 2 -d 3 -p cbr -e 210 -c 1 -i 414 -a 1 -x {1.0 5.0 385 ------- null} + -t 1.65493 -s 3 -d 5 -p cbr -e 210 -c 1 -i 414 -a 1 -x {1.0 5.0 385 ------- null} - -t 1.65493 -s 3 -d 5 -p cbr -e 210 -c 1 -i 414 -a 1 -x {1.0 5.0 385 ------- null} h -t 1.65493 -s 3 -d 5 -p cbr -e 210 -c 1 -i 414 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.65625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 448 -a 1 -x {1.0 5.0 415 ------- null} - -t 1.65625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 448 -a 1 -x {1.0 5.0 415 ------- null} h -t 1.65625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 448 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.65711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 430 -a 1 -x {1.0 5.0 401 ------- null} + -t 1.65711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 430 -a 1 -x {1.0 5.0 401 ------- null} - -t 1.65711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 430 -a 1 -x {1.0 5.0 401 ------- null} h -t 1.65711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 430 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.65789 -s 3 -d 5 -p cbr -e 210 -c 1 -i 398 -a 1 -x {1.0 5.0 370 ------- null} r -t 1.65829 -s 2 -d 3 -p cbr -e 210 -c 1 -i 415 -a 1 -x {1.0 5.0 386 ------- null} + -t 1.65829 -s 3 -d 5 -p cbr -e 210 -c 1 -i 415 -a 1 -x {1.0 5.0 386 ------- null} - -t 1.65829 -s 3 -d 5 -p cbr -e 210 -c 1 -i 415 -a 1 -x {1.0 5.0 386 ------- null} h -t 1.65829 -s 3 -d 5 -p cbr -e 210 -c 1 -i 415 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.66 -s 1 -d 2 -p cbr -e 210 -c 1 -i 449 -a 1 -x {1.0 5.0 416 ------- null} - -t 1.66 -s 1 -d 2 -p cbr -e 210 -c 1 -i 449 -a 1 -x {1.0 5.0 416 ------- null} h -t 1.66 -s 1 -d 2 -p cbr -e 210 -c 1 -i 449 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.66086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 431 -a 1 -x {1.0 5.0 402 ------- null} + -t 1.66086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 431 -a 1 -x {1.0 5.0 402 ------- null} - -t 1.66086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 431 -a 1 -x {1.0 5.0 402 ------- null} h -t 1.66086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 431 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.66125 -s 3 -d 5 -p cbr -e 210 -c 1 -i 399 -a 1 -x {1.0 5.0 371 ------- null} r -t 1.66165 -s 2 -d 3 -p cbr -e 210 -c 1 -i 416 -a 1 -x {1.0 5.0 387 ------- null} + -t 1.66165 -s 3 -d 5 -p cbr -e 210 -c 1 -i 416 -a 1 -x {1.0 5.0 387 ------- null} - -t 1.66165 -s 3 -d 5 -p cbr -e 210 -c 1 -i 416 -a 1 -x {1.0 5.0 387 ------- null} h -t 1.66165 -s 3 -d 5 -p cbr -e 210 -c 1 -i 416 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.66373 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 443 -a 0 -x {0.0 4.0 12 ------- null} h -t 1.66373 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 443 -a 0 -x {0.0 4.0 -1 ------- null} + -t 1.66375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 450 -a 1 -x {1.0 5.0 417 ------- null} - -t 1.66375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 450 -a 1 -x {1.0 5.0 417 ------- null} h -t 1.66375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 450 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.66461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 432 -a 1 -x {1.0 5.0 403 ------- null} + -t 1.66461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 432 -a 1 -x {1.0 5.0 403 ------- null} - -t 1.66461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 432 -a 1 -x {1.0 5.0 403 ------- null} h -t 1.66461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 432 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.66461 -s 3 -d 5 -p cbr -e 210 -c 1 -i 400 -a 1 -x {1.0 5.0 372 ------- null} r -t 1.66501 -s 2 -d 3 -p cbr -e 210 -c 1 -i 417 -a 1 -x {1.0 5.0 388 ------- null} + -t 1.66501 -s 3 -d 5 -p cbr -e 210 -c 1 -i 417 -a 1 -x {1.0 5.0 388 ------- null} - -t 1.66501 -s 3 -d 5 -p cbr -e 210 -c 1 -i 417 -a 1 -x {1.0 5.0 388 ------- null} h -t 1.66501 -s 3 -d 5 -p cbr -e 210 -c 1 -i 417 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.6675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 451 -a 1 -x {1.0 5.0 418 ------- null} - -t 1.6675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 451 -a 1 -x {1.0 5.0 418 ------- null} h -t 1.6675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 451 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.66797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 402 -a 1 -x {1.0 5.0 373 ------- null} r -t 1.66836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 433 -a 1 -x {1.0 5.0 404 ------- null} + -t 1.66836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 433 -a 1 -x {1.0 5.0 404 ------- null} - -t 1.66836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 433 -a 1 -x {1.0 5.0 404 ------- null} h -t 1.66836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 433 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.66837 -s 2 -d 3 -p cbr -e 210 -c 1 -i 418 -a 1 -x {1.0 5.0 389 ------- null} + -t 1.66837 -s 3 -d 5 -p cbr -e 210 -c 1 -i 418 -a 1 -x {1.0 5.0 389 ------- null} - -t 1.66837 -s 3 -d 5 -p cbr -e 210 -c 1 -i 418 -a 1 -x {1.0 5.0 389 ------- null} h -t 1.66837 -s 3 -d 5 -p cbr -e 210 -c 1 -i 418 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.67125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 452 -a 1 -x {1.0 5.0 419 ------- null} - -t 1.67125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 452 -a 1 -x {1.0 5.0 419 ------- null} h -t 1.67125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 452 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.67133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 403 -a 1 -x {1.0 5.0 374 ------- null} r -t 1.67173 -s 2 -d 3 -p cbr -e 210 -c 1 -i 419 -a 1 -x {1.0 5.0 390 ------- null} + -t 1.67173 -s 3 -d 5 -p cbr -e 210 -c 1 -i 419 -a 1 -x {1.0 5.0 390 ------- null} - -t 1.67173 -s 3 -d 5 -p cbr -e 210 -c 1 -i 419 -a 1 -x {1.0 5.0 390 ------- null} h -t 1.67173 -s 3 -d 5 -p cbr -e 210 -c 1 -i 419 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.67211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 434 -a 1 -x {1.0 5.0 405 ------- null} + -t 1.67211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 434 -a 1 -x {1.0 5.0 405 ------- null} - -t 1.67211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 434 -a 1 -x {1.0 5.0 405 ------- null} h -t 1.67211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 434 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.67469 -s 3 -d 5 -p cbr -e 210 -c 1 -i 404 -a 1 -x {1.0 5.0 375 ------- null} + -t 1.675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 453 -a 1 -x {1.0 5.0 420 ------- null} - -t 1.675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 453 -a 1 -x {1.0 5.0 420 ------- null} h -t 1.675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 453 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.67509 -s 2 -d 3 -p cbr -e 210 -c 1 -i 420 -a 1 -x {1.0 5.0 391 ------- null} + -t 1.67509 -s 3 -d 5 -p cbr -e 210 -c 1 -i 420 -a 1 -x {1.0 5.0 391 ------- null} - -t 1.67509 -s 3 -d 5 -p cbr -e 210 -c 1 -i 420 -a 1 -x {1.0 5.0 391 ------- null} h -t 1.67509 -s 3 -d 5 -p cbr -e 210 -c 1 -i 420 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.67586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 435 -a 1 -x {1.0 5.0 406 ------- null} + -t 1.67586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 435 -a 1 -x {1.0 5.0 406 ------- null} - -t 1.67586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 435 -a 1 -x {1.0 5.0 406 ------- null} h -t 1.67586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 435 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.67805 -s 3 -d 5 -p cbr -e 210 -c 1 -i 405 -a 1 -x {1.0 5.0 376 ------- null} r -t 1.67845 -s 2 -d 3 -p cbr -e 210 -c 1 -i 421 -a 1 -x {1.0 5.0 392 ------- null} + -t 1.67845 -s 3 -d 5 -p cbr -e 210 -c 1 -i 421 -a 1 -x {1.0 5.0 392 ------- null} - -t 1.67845 -s 3 -d 5 -p cbr -e 210 -c 1 -i 421 -a 1 -x {1.0 5.0 392 ------- null} h -t 1.67845 -s 3 -d 5 -p cbr -e 210 -c 1 -i 421 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.67875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 454 -a 1 -x {1.0 5.0 421 ------- null} - -t 1.67875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 454 -a 1 -x {1.0 5.0 421 ------- null} h -t 1.67875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 454 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.67961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 436 -a 1 -x {1.0 5.0 407 ------- null} + -t 1.67961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 436 -a 1 -x {1.0 5.0 407 ------- null} - -t 1.67961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 436 -a 1 -x {1.0 5.0 407 ------- null} h -t 1.67961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 436 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.67973 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 444 -a 0 -x {0.0 4.0 13 ------- null} h -t 1.67973 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 444 -a 0 -x {0.0 4.0 -1 ------- null} r -t 1.68141 -s 3 -d 5 -p cbr -e 210 -c 1 -i 406 -a 1 -x {1.0 5.0 377 ------- null} r -t 1.68181 -s 2 -d 3 -p cbr -e 210 -c 1 -i 422 -a 1 -x {1.0 5.0 393 ------- null} + -t 1.68181 -s 3 -d 5 -p cbr -e 210 -c 1 -i 422 -a 1 -x {1.0 5.0 393 ------- null} - -t 1.68181 -s 3 -d 5 -p cbr -e 210 -c 1 -i 422 -a 1 -x {1.0 5.0 393 ------- null} h -t 1.68181 -s 3 -d 5 -p cbr -e 210 -c 1 -i 422 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.6825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 455 -a 1 -x {1.0 5.0 422 ------- null} - -t 1.6825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 455 -a 1 -x {1.0 5.0 422 ------- null} h -t 1.6825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 455 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.68336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 437 -a 1 -x {1.0 5.0 408 ------- null} + -t 1.68336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 437 -a 1 -x {1.0 5.0 408 ------- null} - -t 1.68336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 437 -a 1 -x {1.0 5.0 408 ------- null} h -t 1.68336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 437 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.68477 -s 3 -d 5 -p cbr -e 210 -c 1 -i 407 -a 1 -x {1.0 5.0 378 ------- null} r -t 1.68517 -s 2 -d 3 -p cbr -e 210 -c 1 -i 423 -a 1 -x {1.0 5.0 394 ------- null} + -t 1.68517 -s 3 -d 5 -p cbr -e 210 -c 1 -i 423 -a 1 -x {1.0 5.0 394 ------- null} - -t 1.68517 -s 3 -d 5 -p cbr -e 210 -c 1 -i 423 -a 1 -x {1.0 5.0 394 ------- null} h -t 1.68517 -s 3 -d 5 -p cbr -e 210 -c 1 -i 423 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.68625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 456 -a 1 -x {1.0 5.0 423 ------- null} - -t 1.68625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 456 -a 1 -x {1.0 5.0 423 ------- null} h -t 1.68625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 456 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.68711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 438 -a 1 -x {1.0 5.0 409 ------- null} + -t 1.68711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 438 -a 1 -x {1.0 5.0 409 ------- null} - -t 1.68711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 438 -a 1 -x {1.0 5.0 409 ------- null} h -t 1.68711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 438 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.68813 -s 3 -d 5 -p cbr -e 210 -c 1 -i 408 -a 1 -x {1.0 5.0 379 ------- null} r -t 1.68853 -s 2 -d 3 -p cbr -e 210 -c 1 -i 424 -a 1 -x {1.0 5.0 395 ------- null} + -t 1.68853 -s 3 -d 5 -p cbr -e 210 -c 1 -i 424 -a 1 -x {1.0 5.0 395 ------- null} - -t 1.68853 -s 3 -d 5 -p cbr -e 210 -c 1 -i 424 -a 1 -x {1.0 5.0 395 ------- null} h -t 1.68853 -s 3 -d 5 -p cbr -e 210 -c 1 -i 424 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.69 -s 1 -d 2 -p cbr -e 210 -c 1 -i 457 -a 1 -x {1.0 5.0 424 ------- null} - -t 1.69 -s 1 -d 2 -p cbr -e 210 -c 1 -i 457 -a 1 -x {1.0 5.0 424 ------- null} h -t 1.69 -s 1 -d 2 -p cbr -e 210 -c 1 -i 457 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.69086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 439 -a 1 -x {1.0 5.0 410 ------- null} + -t 1.69086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 439 -a 1 -x {1.0 5.0 410 ------- null} - -t 1.69086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 439 -a 1 -x {1.0 5.0 410 ------- null} h -t 1.69086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 439 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.69149 -s 3 -d 5 -p cbr -e 210 -c 1 -i 409 -a 1 -x {1.0 5.0 380 ------- null} r -t 1.69189 -s 2 -d 3 -p cbr -e 210 -c 1 -i 425 -a 1 -x {1.0 5.0 396 ------- null} + -t 1.69189 -s 3 -d 5 -p cbr -e 210 -c 1 -i 425 -a 1 -x {1.0 5.0 396 ------- null} - -t 1.69189 -s 3 -d 5 -p cbr -e 210 -c 1 -i 425 -a 1 -x {1.0 5.0 396 ------- null} h -t 1.69189 -s 3 -d 5 -p cbr -e 210 -c 1 -i 425 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.69375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 458 -a 1 -x {1.0 5.0 425 ------- null} - -t 1.69375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 458 -a 1 -x {1.0 5.0 425 ------- null} h -t 1.69375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 458 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.69461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 440 -a 1 -x {1.0 5.0 411 ------- null} + -t 1.69461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 440 -a 1 -x {1.0 5.0 411 ------- null} - -t 1.69461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 440 -a 1 -x {1.0 5.0 411 ------- null} h -t 1.69461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 440 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.69485 -s 3 -d 5 -p cbr -e 210 -c 1 -i 410 -a 1 -x {1.0 5.0 381 ------- null} r -t 1.69547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 426 -a 1 -x {1.0 5.0 397 ------- null} + -t 1.69547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 426 -a 1 -x {1.0 5.0 397 ------- null} - -t 1.69547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 426 -a 1 -x {1.0 5.0 397 ------- null} h -t 1.69547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 426 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.69573 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 445 -a 0 -x {0.0 4.0 14 ------- null} h -t 1.69573 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 445 -a 0 -x {0.0 4.0 -1 ------- null} + -t 1.6975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 459 -a 1 -x {1.0 5.0 426 ------- null} - -t 1.6975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 459 -a 1 -x {1.0 5.0 426 ------- null} h -t 1.6975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 459 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.69821 -s 3 -d 5 -p cbr -e 210 -c 1 -i 411 -a 1 -x {1.0 5.0 382 ------- null} r -t 1.69836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 441 -a 1 -x {1.0 5.0 412 ------- null} + -t 1.69836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 441 -a 1 -x {1.0 5.0 412 ------- null} - -t 1.69836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 441 -a 1 -x {1.0 5.0 412 ------- null} h -t 1.69836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 441 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.69922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 427 -a 1 -x {1.0 5.0 398 ------- null} + -t 1.69922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 427 -a 1 -x {1.0 5.0 398 ------- null} - -t 1.69922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 427 -a 1 -x {1.0 5.0 398 ------- null} h -t 1.69922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 427 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.70125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 460 -a 1 -x {1.0 5.0 427 ------- null} - -t 1.70125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 460 -a 1 -x {1.0 5.0 427 ------- null} h -t 1.70125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 460 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.70157 -s 3 -d 5 -p cbr -e 210 -c 1 -i 412 -a 1 -x {1.0 5.0 383 ------- null} r -t 1.70211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 446 -a 1 -x {1.0 5.0 413 ------- null} + -t 1.70211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 446 -a 1 -x {1.0 5.0 413 ------- null} - -t 1.70211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 446 -a 1 -x {1.0 5.0 413 ------- null} h -t 1.70211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 446 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.70297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 428 -a 1 -x {1.0 5.0 399 ------- null} + -t 1.70297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 428 -a 1 -x {1.0 5.0 399 ------- null} - -t 1.70297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 428 -a 1 -x {1.0 5.0 399 ------- null} h -t 1.70297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 428 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.70493 -s 3 -d 5 -p cbr -e 210 -c 1 -i 413 -a 1 -x {1.0 5.0 384 ------- null} + -t 1.705 -s 1 -d 2 -p cbr -e 210 -c 1 -i 461 -a 1 -x {1.0 5.0 428 ------- null} - -t 1.705 -s 1 -d 2 -p cbr -e 210 -c 1 -i 461 -a 1 -x {1.0 5.0 428 ------- null} h -t 1.705 -s 1 -d 2 -p cbr -e 210 -c 1 -i 461 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.70586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 447 -a 1 -x {1.0 5.0 414 ------- null} + -t 1.70586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 447 -a 1 -x {1.0 5.0 414 ------- null} - -t 1.70586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 447 -a 1 -x {1.0 5.0 414 ------- null} h -t 1.70586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 447 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.70672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 429 -a 1 -x {1.0 5.0 400 ------- null} + -t 1.70672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 429 -a 1 -x {1.0 5.0 400 ------- null} - -t 1.70672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 429 -a 1 -x {1.0 5.0 400 ------- null} h -t 1.70672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 429 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.70829 -s 3 -d 5 -p cbr -e 210 -c 1 -i 414 -a 1 -x {1.0 5.0 385 ------- null} + -t 1.70875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 462 -a 1 -x {1.0 5.0 429 ------- null} - -t 1.70875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 462 -a 1 -x {1.0 5.0 429 ------- null} h -t 1.70875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 462 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.70961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 448 -a 1 -x {1.0 5.0 415 ------- null} + -t 1.70961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 448 -a 1 -x {1.0 5.0 415 ------- null} - -t 1.70961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 448 -a 1 -x {1.0 5.0 415 ------- null} h -t 1.70961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 448 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.71047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 430 -a 1 -x {1.0 5.0 401 ------- null} + -t 1.71047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 430 -a 1 -x {1.0 5.0 401 ------- null} - -t 1.71047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 430 -a 1 -x {1.0 5.0 401 ------- null} h -t 1.71047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 430 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.71165 -s 3 -d 5 -p cbr -e 210 -c 1 -i 415 -a 1 -x {1.0 5.0 386 ------- null} + -t 1.7125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 463 -a 1 -x {1.0 5.0 430 ------- null} - -t 1.7125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 463 -a 1 -x {1.0 5.0 430 ------- null} h -t 1.7125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 463 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.71336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 449 -a 1 -x {1.0 5.0 416 ------- null} + -t 1.71336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 449 -a 1 -x {1.0 5.0 416 ------- null} - -t 1.71336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 449 -a 1 -x {1.0 5.0 416 ------- null} h -t 1.71336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 449 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.71373 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 442 -a 0 -x {0.0 4.0 11 ------- null} + -t 1.71373 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 442 -a 0 -x {0.0 4.0 11 ------- null} r -t 1.71422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 431 -a 1 -x {1.0 5.0 402 ------- null} + -t 1.71422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 431 -a 1 -x {1.0 5.0 402 ------- null} - -t 1.71422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 431 -a 1 -x {1.0 5.0 402 ------- null} h -t 1.71422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 431 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.71501 -s 3 -d 5 -p cbr -e 210 -c 1 -i 416 -a 1 -x {1.0 5.0 387 ------- null} + -t 1.71625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 464 -a 1 -x {1.0 5.0 431 ------- null} - -t 1.71625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 464 -a 1 -x {1.0 5.0 431 ------- null} h -t 1.71625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 464 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.71672 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 442 -a 0 -x {0.0 4.0 11 ------- null} h -t 1.71672 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 442 -a 0 -x {0.0 4.0 -1 ------- null} r -t 1.71711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 450 -a 1 -x {1.0 5.0 417 ------- null} + -t 1.71711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 450 -a 1 -x {1.0 5.0 417 ------- null} r -t 1.71797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 432 -a 1 -x {1.0 5.0 403 ------- null} + -t 1.71797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 432 -a 1 -x {1.0 5.0 403 ------- null} - -t 1.71797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 432 -a 1 -x {1.0 5.0 403 ------- null} h -t 1.71797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 432 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.71837 -s 3 -d 5 -p cbr -e 210 -c 1 -i 417 -a 1 -x {1.0 5.0 388 ------- null} + -t 1.72 -s 1 -d 2 -p cbr -e 210 -c 1 -i 465 -a 1 -x {1.0 5.0 432 ------- null} - -t 1.72 -s 1 -d 2 -p cbr -e 210 -c 1 -i 465 -a 1 -x {1.0 5.0 432 ------- null} h -t 1.72 -s 1 -d 2 -p cbr -e 210 -c 1 -i 465 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.72086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 451 -a 1 -x {1.0 5.0 418 ------- null} + -t 1.72086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 451 -a 1 -x {1.0 5.0 418 ------- null} r -t 1.72172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 433 -a 1 -x {1.0 5.0 404 ------- null} + -t 1.72172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 433 -a 1 -x {1.0 5.0 404 ------- null} - -t 1.72172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 433 -a 1 -x {1.0 5.0 404 ------- null} h -t 1.72172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 433 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.72173 -s 3 -d 5 -p cbr -e 210 -c 1 -i 418 -a 1 -x {1.0 5.0 389 ------- null} + -t 1.72375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 466 -a 1 -x {1.0 5.0 433 ------- null} - -t 1.72375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 466 -a 1 -x {1.0 5.0 433 ------- null} h -t 1.72375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 466 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.72461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 452 -a 1 -x {1.0 5.0 419 ------- null} + -t 1.72461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 452 -a 1 -x {1.0 5.0 419 ------- null} r -t 1.72509 -s 3 -d 5 -p cbr -e 210 -c 1 -i 419 -a 1 -x {1.0 5.0 390 ------- null} r -t 1.72547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 434 -a 1 -x {1.0 5.0 405 ------- null} + -t 1.72547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 434 -a 1 -x {1.0 5.0 405 ------- null} - -t 1.72547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 434 -a 1 -x {1.0 5.0 405 ------- null} h -t 1.72547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 434 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.7275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 467 -a 1 -x {1.0 5.0 434 ------- null} - -t 1.7275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 467 -a 1 -x {1.0 5.0 434 ------- null} h -t 1.7275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 467 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.72836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 453 -a 1 -x {1.0 5.0 420 ------- null} + -t 1.72836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 453 -a 1 -x {1.0 5.0 420 ------- null} r -t 1.72845 -s 3 -d 5 -p cbr -e 210 -c 1 -i 420 -a 1 -x {1.0 5.0 391 ------- null} r -t 1.72922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 435 -a 1 -x {1.0 5.0 406 ------- null} + -t 1.72922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 435 -a 1 -x {1.0 5.0 406 ------- null} - -t 1.72922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 435 -a 1 -x {1.0 5.0 406 ------- null} h -t 1.72922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 435 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.72973 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 443 -a 0 -x {0.0 4.0 12 ------- null} + -t 1.72973 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 443 -a 0 -x {0.0 4.0 12 ------- null} + -t 1.73125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 468 -a 1 -x {1.0 5.0 435 ------- null} - -t 1.73125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 468 -a 1 -x {1.0 5.0 435 ------- null} h -t 1.73125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 468 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.73181 -s 3 -d 5 -p cbr -e 210 -c 1 -i 421 -a 1 -x {1.0 5.0 392 ------- null} r -t 1.73211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 454 -a 1 -x {1.0 5.0 421 ------- null} + -t 1.73211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 454 -a 1 -x {1.0 5.0 421 ------- null} - -t 1.73272 -s 2 -d 3 -p cbr -e 210 -c 1 -i 450 -a 1 -x {1.0 5.0 417 ------- null} h -t 1.73272 -s 2 -d 3 -p cbr -e 210 -c 1 -i 450 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.73297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 436 -a 1 -x {1.0 5.0 407 ------- null} + -t 1.73297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 436 -a 1 -x {1.0 5.0 407 ------- null} - -t 1.73297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 436 -a 1 -x {1.0 5.0 407 ------- null} h -t 1.73297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 436 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.735 -s 1 -d 2 -p cbr -e 210 -c 1 -i 469 -a 1 -x {1.0 5.0 436 ------- null} - -t 1.735 -s 1 -d 2 -p cbr -e 210 -c 1 -i 469 -a 1 -x {1.0 5.0 436 ------- null} h -t 1.735 -s 1 -d 2 -p cbr -e 210 -c 1 -i 469 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.73517 -s 3 -d 5 -p cbr -e 210 -c 1 -i 422 -a 1 -x {1.0 5.0 393 ------- null} r -t 1.73586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 455 -a 1 -x {1.0 5.0 422 ------- null} + -t 1.73586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 455 -a 1 -x {1.0 5.0 422 ------- null} - -t 1.73608 -s 2 -d 3 -p cbr -e 210 -c 1 -i 451 -a 1 -x {1.0 5.0 418 ------- null} h -t 1.73608 -s 2 -d 3 -p cbr -e 210 -c 1 -i 451 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.73672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 437 -a 1 -x {1.0 5.0 408 ------- null} + -t 1.73672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 437 -a 1 -x {1.0 5.0 408 ------- null} - -t 1.73672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 437 -a 1 -x {1.0 5.0 408 ------- null} h -t 1.73672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 437 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.73853 -s 3 -d 5 -p cbr -e 210 -c 1 -i 423 -a 1 -x {1.0 5.0 394 ------- null} + -t 1.73875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 470 -a 1 -x {1.0 5.0 437 ------- null} - -t 1.73875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 470 -a 1 -x {1.0 5.0 437 ------- null} h -t 1.73875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 470 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.73944 -s 2 -d 3 -p cbr -e 210 -c 1 -i 452 -a 1 -x {1.0 5.0 419 ------- null} h -t 1.73944 -s 2 -d 3 -p cbr -e 210 -c 1 -i 452 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.73961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 456 -a 1 -x {1.0 5.0 423 ------- null} + -t 1.73961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 456 -a 1 -x {1.0 5.0 423 ------- null} r -t 1.74047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 438 -a 1 -x {1.0 5.0 409 ------- null} + -t 1.74047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 438 -a 1 -x {1.0 5.0 409 ------- null} - -t 1.74047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 438 -a 1 -x {1.0 5.0 409 ------- null} h -t 1.74047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 438 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.74189 -s 3 -d 5 -p cbr -e 210 -c 1 -i 424 -a 1 -x {1.0 5.0 395 ------- null} + -t 1.7425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 471 -a 1 -x {1.0 5.0 438 ------- null} - -t 1.7425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 471 -a 1 -x {1.0 5.0 438 ------- null} h -t 1.7425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 471 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.7428 -s 2 -d 3 -p cbr -e 210 -c 1 -i 453 -a 1 -x {1.0 5.0 420 ------- null} h -t 1.7428 -s 2 -d 3 -p cbr -e 210 -c 1 -i 453 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.74336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 457 -a 1 -x {1.0 5.0 424 ------- null} + -t 1.74336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 457 -a 1 -x {1.0 5.0 424 ------- null} r -t 1.74422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 439 -a 1 -x {1.0 5.0 410 ------- null} + -t 1.74422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 439 -a 1 -x {1.0 5.0 410 ------- null} - -t 1.74422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 439 -a 1 -x {1.0 5.0 410 ------- null} h -t 1.74422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 439 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.74525 -s 3 -d 5 -p cbr -e 210 -c 1 -i 425 -a 1 -x {1.0 5.0 396 ------- null} r -t 1.74573 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 444 -a 0 -x {0.0 4.0 13 ------- null} + -t 1.74573 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 444 -a 0 -x {0.0 4.0 13 ------- null} - -t 1.74616 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 443 -a 0 -x {0.0 4.0 12 ------- null} h -t 1.74616 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 443 -a 0 -x {0.0 4.0 -1 ------- null} + -t 1.74625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 472 -a 1 -x {1.0 5.0 439 ------- null} - -t 1.74625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 472 -a 1 -x {1.0 5.0 439 ------- null} h -t 1.74625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 472 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.74711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 458 -a 1 -x {1.0 5.0 425 ------- null} + -t 1.74711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 458 -a 1 -x {1.0 5.0 425 ------- null} r -t 1.74797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 440 -a 1 -x {1.0 5.0 411 ------- null} + -t 1.74797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 440 -a 1 -x {1.0 5.0 411 ------- null} - -t 1.74797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 440 -a 1 -x {1.0 5.0 411 ------- null} h -t 1.74797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 440 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.74883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 426 -a 1 -x {1.0 5.0 397 ------- null} + -t 1.75 -s 1 -d 2 -p cbr -e 210 -c 1 -i 473 -a 1 -x {1.0 5.0 440 ------- null} - -t 1.75 -s 1 -d 2 -p cbr -e 210 -c 1 -i 473 -a 1 -x {1.0 5.0 440 ------- null} h -t 1.75 -s 1 -d 2 -p cbr -e 210 -c 1 -i 473 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.75086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 459 -a 1 -x {1.0 5.0 426 ------- null} + -t 1.75086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 459 -a 1 -x {1.0 5.0 426 ------- null} r -t 1.75172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 441 -a 1 -x {1.0 5.0 412 ------- null} + -t 1.75172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 441 -a 1 -x {1.0 5.0 412 ------- null} - -t 1.75172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 441 -a 1 -x {1.0 5.0 412 ------- null} h -t 1.75172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 441 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.75258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 427 -a 1 -x {1.0 5.0 398 ------- null} + -t 1.75375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 474 -a 1 -x {1.0 5.0 441 ------- null} - -t 1.75375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 474 -a 1 -x {1.0 5.0 441 ------- null} h -t 1.75375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 474 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.75461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 460 -a 1 -x {1.0 5.0 427 ------- null} + -t 1.75461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 460 -a 1 -x {1.0 5.0 427 ------- null} r -t 1.75547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 446 -a 1 -x {1.0 5.0 413 ------- null} + -t 1.75547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 446 -a 1 -x {1.0 5.0 413 ------- null} - -t 1.75547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 446 -a 1 -x {1.0 5.0 413 ------- null} h -t 1.75547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 446 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.75633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 428 -a 1 -x {1.0 5.0 399 ------- null} + -t 1.7575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 475 -a 1 -x {1.0 5.0 442 ------- null} - -t 1.7575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 475 -a 1 -x {1.0 5.0 442 ------- null} h -t 1.7575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 475 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.75836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 461 -a 1 -x {1.0 5.0 428 ------- null} + -t 1.75836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 461 -a 1 -x {1.0 5.0 428 ------- null} r -t 1.75922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 447 -a 1 -x {1.0 5.0 414 ------- null} + -t 1.75922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 447 -a 1 -x {1.0 5.0 414 ------- null} - -t 1.75922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 447 -a 1 -x {1.0 5.0 414 ------- null} h -t 1.75922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 447 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.76008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 429 -a 1 -x {1.0 5.0 400 ------- null} + -t 1.76125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 476 -a 1 -x {1.0 5.0 443 ------- null} - -t 1.76125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 476 -a 1 -x {1.0 5.0 443 ------- null} h -t 1.76125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 476 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.76173 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 445 -a 0 -x {0.0 4.0 14 ------- null} + -t 1.76173 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 445 -a 0 -x {0.0 4.0 14 ------- null} d -t 1.76173 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 445 -a 0 -x {0.0 4.0 14 ------- null} r -t 1.76211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 462 -a 1 -x {1.0 5.0 429 ------- null} + -t 1.76211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 462 -a 1 -x {1.0 5.0 429 ------- null} d -t 1.76211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 462 -a 1 -x {1.0 5.0 429 ------- null} - -t 1.76216 -s 2 -d 3 -p cbr -e 210 -c 1 -i 454 -a 1 -x {1.0 5.0 421 ------- null} h -t 1.76216 -s 2 -d 3 -p cbr -e 210 -c 1 -i 454 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.76297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 448 -a 1 -x {1.0 5.0 415 ------- null} + -t 1.76297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 448 -a 1 -x {1.0 5.0 415 ------- null} - -t 1.76297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 448 -a 1 -x {1.0 5.0 415 ------- null} h -t 1.76297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 448 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.76383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 430 -a 1 -x {1.0 5.0 401 ------- null} + -t 1.765 -s 1 -d 2 -p cbr -e 210 -c 1 -i 477 -a 1 -x {1.0 5.0 444 ------- null} - -t 1.765 -s 1 -d 2 -p cbr -e 210 -c 1 -i 477 -a 1 -x {1.0 5.0 444 ------- null} h -t 1.765 -s 1 -d 2 -p cbr -e 210 -c 1 -i 477 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.76552 -s 2 -d 3 -p cbr -e 210 -c 1 -i 455 -a 1 -x {1.0 5.0 422 ------- null} h -t 1.76552 -s 2 -d 3 -p cbr -e 210 -c 1 -i 455 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.76586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 463 -a 1 -x {1.0 5.0 430 ------- null} + -t 1.76586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 463 -a 1 -x {1.0 5.0 430 ------- null} r -t 1.76672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 449 -a 1 -x {1.0 5.0 416 ------- null} + -t 1.76672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 449 -a 1 -x {1.0 5.0 416 ------- null} - -t 1.76672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 449 -a 1 -x {1.0 5.0 416 ------- null} h -t 1.76672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 449 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.76758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 431 -a 1 -x {1.0 5.0 402 ------- null} + -t 1.76875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 478 -a 1 -x {1.0 5.0 445 ------- null} - -t 1.76875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 478 -a 1 -x {1.0 5.0 445 ------- null} h -t 1.76875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 478 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.76888 -s 2 -d 3 -p cbr -e 210 -c 1 -i 456 -a 1 -x {1.0 5.0 423 ------- null} h -t 1.76888 -s 2 -d 3 -p cbr -e 210 -c 1 -i 456 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.76961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 464 -a 1 -x {1.0 5.0 431 ------- null} + -t 1.76961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 464 -a 1 -x {1.0 5.0 431 ------- null} r -t 1.77133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 432 -a 1 -x {1.0 5.0 403 ------- null} - -t 1.77224 -s 2 -d 3 -p cbr -e 210 -c 1 -i 457 -a 1 -x {1.0 5.0 424 ------- null} h -t 1.77224 -s 2 -d 3 -p cbr -e 210 -c 1 -i 457 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.7725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 479 -a 1 -x {1.0 5.0 446 ------- null} - -t 1.7725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 479 -a 1 -x {1.0 5.0 446 ------- null} h -t 1.7725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 479 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.77336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 465 -a 1 -x {1.0 5.0 432 ------- null} + -t 1.77336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 465 -a 1 -x {1.0 5.0 432 ------- null} r -t 1.77508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 433 -a 1 -x {1.0 5.0 404 ------- null} - -t 1.7756 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 444 -a 0 -x {0.0 4.0 13 ------- null} h -t 1.7756 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 444 -a 0 -x {0.0 4.0 -1 ------- null} + -t 1.77625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 480 -a 1 -x {1.0 5.0 447 ------- null} - -t 1.77625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 480 -a 1 -x {1.0 5.0 447 ------- null} h -t 1.77625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 480 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.77711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 466 -a 1 -x {1.0 5.0 433 ------- null} + -t 1.77711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 466 -a 1 -x {1.0 5.0 433 ------- null} r -t 1.77883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 434 -a 1 -x {1.0 5.0 405 ------- null} + -t 1.78 -s 1 -d 2 -p cbr -e 210 -c 1 -i 481 -a 1 -x {1.0 5.0 448 ------- null} - -t 1.78 -s 1 -d 2 -p cbr -e 210 -c 1 -i 481 -a 1 -x {1.0 5.0 448 ------- null} h -t 1.78 -s 1 -d 2 -p cbr -e 210 -c 1 -i 481 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.78086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 467 -a 1 -x {1.0 5.0 434 ------- null} + -t 1.78086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 467 -a 1 -x {1.0 5.0 434 ------- null} r -t 1.78258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 435 -a 1 -x {1.0 5.0 406 ------- null} r -t 1.78272 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 442 -a 0 -x {0.0 4.0 11 ------- null} + -t 1.78272 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 442 -a 0 -x {0.0 4.0 11 ------- null} - -t 1.78272 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 442 -a 0 -x {0.0 4.0 11 ------- null} h -t 1.78272 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 442 -a 0 -x {0.0 4.0 -1 ------- null} + -t 1.78375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 482 -a 1 -x {1.0 5.0 449 ------- null} - -t 1.78375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 482 -a 1 -x {1.0 5.0 449 ------- null} h -t 1.78375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 482 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.78461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 468 -a 1 -x {1.0 5.0 435 ------- null} + -t 1.78461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 468 -a 1 -x {1.0 5.0 435 ------- null} d -t 1.78461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 468 -a 1 -x {1.0 5.0 435 ------- null} r -t 1.78608 -s 2 -d 3 -p cbr -e 210 -c 1 -i 450 -a 1 -x {1.0 5.0 417 ------- null} + -t 1.78608 -s 3 -d 5 -p cbr -e 210 -c 1 -i 450 -a 1 -x {1.0 5.0 417 ------- null} - -t 1.78608 -s 3 -d 5 -p cbr -e 210 -c 1 -i 450 -a 1 -x {1.0 5.0 417 ------- null} h -t 1.78608 -s 3 -d 5 -p cbr -e 210 -c 1 -i 450 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.78633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 436 -a 1 -x {1.0 5.0 407 ------- null} + -t 1.7875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 483 -a 1 -x {1.0 5.0 450 ------- null} - -t 1.7875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 483 -a 1 -x {1.0 5.0 450 ------- null} h -t 1.7875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 483 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.78836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 469 -a 1 -x {1.0 5.0 436 ------- null} + -t 1.78836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 469 -a 1 -x {1.0 5.0 436 ------- null} d -t 1.78836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 469 -a 1 -x {1.0 5.0 436 ------- null} r -t 1.78944 -s 2 -d 3 -p cbr -e 210 -c 1 -i 451 -a 1 -x {1.0 5.0 418 ------- null} + -t 1.78944 -s 3 -d 5 -p cbr -e 210 -c 1 -i 451 -a 1 -x {1.0 5.0 418 ------- null} - -t 1.78944 -s 3 -d 5 -p cbr -e 210 -c 1 -i 451 -a 1 -x {1.0 5.0 418 ------- null} h -t 1.78944 -s 3 -d 5 -p cbr -e 210 -c 1 -i 451 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.79008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 437 -a 1 -x {1.0 5.0 408 ------- null} + -t 1.79125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 484 -a 1 -x {1.0 5.0 451 ------- null} - -t 1.79125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 484 -a 1 -x {1.0 5.0 451 ------- null} h -t 1.79125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 484 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.7916 -s 2 -d 3 -p cbr -e 210 -c 1 -i 458 -a 1 -x {1.0 5.0 425 ------- null} h -t 1.7916 -s 2 -d 3 -p cbr -e 210 -c 1 -i 458 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.79211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 470 -a 1 -x {1.0 5.0 437 ------- null} + -t 1.79211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 470 -a 1 -x {1.0 5.0 437 ------- null} r -t 1.7928 -s 2 -d 3 -p cbr -e 210 -c 1 -i 452 -a 1 -x {1.0 5.0 419 ------- null} + -t 1.7928 -s 3 -d 5 -p cbr -e 210 -c 1 -i 452 -a 1 -x {1.0 5.0 419 ------- null} - -t 1.7928 -s 3 -d 5 -p cbr -e 210 -c 1 -i 452 -a 1 -x {1.0 5.0 419 ------- null} h -t 1.7928 -s 3 -d 5 -p cbr -e 210 -c 1 -i 452 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.79383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 438 -a 1 -x {1.0 5.0 409 ------- null} - -t 1.79496 -s 2 -d 3 -p cbr -e 210 -c 1 -i 459 -a 1 -x {1.0 5.0 426 ------- null} h -t 1.79496 -s 2 -d 3 -p cbr -e 210 -c 1 -i 459 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.795 -s 1 -d 2 -p cbr -e 210 -c 1 -i 485 -a 1 -x {1.0 5.0 452 ------- null} - -t 1.795 -s 1 -d 2 -p cbr -e 210 -c 1 -i 485 -a 1 -x {1.0 5.0 452 ------- null} h -t 1.795 -s 1 -d 2 -p cbr -e 210 -c 1 -i 485 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.79586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 471 -a 1 -x {1.0 5.0 438 ------- null} + -t 1.79586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 471 -a 1 -x {1.0 5.0 438 ------- null} r -t 1.79616 -s 2 -d 3 -p cbr -e 210 -c 1 -i 453 -a 1 -x {1.0 5.0 420 ------- null} + -t 1.79616 -s 3 -d 5 -p cbr -e 210 -c 1 -i 453 -a 1 -x {1.0 5.0 420 ------- null} - -t 1.79616 -s 3 -d 5 -p cbr -e 210 -c 1 -i 453 -a 1 -x {1.0 5.0 420 ------- null} h -t 1.79616 -s 3 -d 5 -p cbr -e 210 -c 1 -i 453 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.79758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 439 -a 1 -x {1.0 5.0 410 ------- null} - -t 1.79832 -s 2 -d 3 -p cbr -e 210 -c 1 -i 460 -a 1 -x {1.0 5.0 427 ------- null} h -t 1.79832 -s 2 -d 3 -p cbr -e 210 -c 1 -i 460 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.79875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 486 -a 1 -x {1.0 5.0 453 ------- null} - -t 1.79875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 486 -a 1 -x {1.0 5.0 453 ------- null} h -t 1.79875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 486 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.79961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 472 -a 1 -x {1.0 5.0 439 ------- null} + -t 1.79961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 472 -a 1 -x {1.0 5.0 439 ------- null} r -t 1.80133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 440 -a 1 -x {1.0 5.0 411 ------- null} - -t 1.80168 -s 2 -d 3 -p cbr -e 210 -c 1 -i 461 -a 1 -x {1.0 5.0 428 ------- null} h -t 1.80168 -s 2 -d 3 -p cbr -e 210 -c 1 -i 461 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.8025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 487 -a 1 -x {1.0 5.0 454 ------- null} - -t 1.8025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 487 -a 1 -x {1.0 5.0 454 ------- null} h -t 1.8025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 487 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.80336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 473 -a 1 -x {1.0 5.0 440 ------- null} + -t 1.80336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 473 -a 1 -x {1.0 5.0 440 ------- null} - -t 1.80504 -s 2 -d 3 -p cbr -e 210 -c 1 -i 463 -a 1 -x {1.0 5.0 430 ------- null} h -t 1.80504 -s 2 -d 3 -p cbr -e 210 -c 1 -i 463 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.80508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 441 -a 1 -x {1.0 5.0 412 ------- null} + -t 1.80625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 488 -a 1 -x {1.0 5.0 455 ------- null} - -t 1.80625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 488 -a 1 -x {1.0 5.0 455 ------- null} h -t 1.80625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 488 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.80711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 474 -a 1 -x {1.0 5.0 441 ------- null} + -t 1.80711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 474 -a 1 -x {1.0 5.0 441 ------- null} - -t 1.8084 -s 2 -d 3 -p cbr -e 210 -c 1 -i 464 -a 1 -x {1.0 5.0 431 ------- null} h -t 1.8084 -s 2 -d 3 -p cbr -e 210 -c 1 -i 464 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.80883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 446 -a 1 -x {1.0 5.0 413 ------- null} + -t 1.81 -s 1 -d 2 -p cbr -e 210 -c 1 -i 489 -a 1 -x {1.0 5.0 456 ------- null} - -t 1.81 -s 1 -d 2 -p cbr -e 210 -c 1 -i 489 -a 1 -x {1.0 5.0 456 ------- null} h -t 1.81 -s 1 -d 2 -p cbr -e 210 -c 1 -i 489 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.81086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 475 -a 1 -x {1.0 5.0 442 ------- null} + -t 1.81086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 475 -a 1 -x {1.0 5.0 442 ------- null} - -t 1.81176 -s 2 -d 3 -p cbr -e 210 -c 1 -i 465 -a 1 -x {1.0 5.0 432 ------- null} h -t 1.81176 -s 2 -d 3 -p cbr -e 210 -c 1 -i 465 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.81216 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 443 -a 0 -x {0.0 4.0 12 ------- null} + -t 1.81216 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 443 -a 0 -x {0.0 4.0 12 ------- null} - -t 1.81216 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 443 -a 0 -x {0.0 4.0 12 ------- null} h -t 1.81216 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 443 -a 0 -x {0.0 4.0 -1 ------- null} r -t 1.81258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 447 -a 1 -x {1.0 5.0 414 ------- null} + -t 1.81375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 490 -a 1 -x {1.0 5.0 457 ------- null} - -t 1.81375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 490 -a 1 -x {1.0 5.0 457 ------- null} h -t 1.81375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 490 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.81461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 476 -a 1 -x {1.0 5.0 443 ------- null} + -t 1.81461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 476 -a 1 -x {1.0 5.0 443 ------- null} - -t 1.81512 -s 2 -d 3 -p cbr -e 210 -c 1 -i 466 -a 1 -x {1.0 5.0 433 ------- null} h -t 1.81512 -s 2 -d 3 -p cbr -e 210 -c 1 -i 466 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.81552 -s 2 -d 3 -p cbr -e 210 -c 1 -i 454 -a 1 -x {1.0 5.0 421 ------- null} + -t 1.81552 -s 3 -d 5 -p cbr -e 210 -c 1 -i 454 -a 1 -x {1.0 5.0 421 ------- null} - -t 1.81552 -s 3 -d 5 -p cbr -e 210 -c 1 -i 454 -a 1 -x {1.0 5.0 421 ------- null} h -t 1.81552 -s 3 -d 5 -p cbr -e 210 -c 1 -i 454 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.81633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 448 -a 1 -x {1.0 5.0 415 ------- null} + -t 1.8175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 491 -a 1 -x {1.0 5.0 458 ------- null} - -t 1.8175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 491 -a 1 -x {1.0 5.0 458 ------- null} h -t 1.8175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 491 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.81836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 477 -a 1 -x {1.0 5.0 444 ------- null} + -t 1.81836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 477 -a 1 -x {1.0 5.0 444 ------- null} - -t 1.81848 -s 2 -d 3 -p cbr -e 210 -c 1 -i 467 -a 1 -x {1.0 5.0 434 ------- null} h -t 1.81848 -s 2 -d 3 -p cbr -e 210 -c 1 -i 467 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.81888 -s 2 -d 3 -p cbr -e 210 -c 1 -i 455 -a 1 -x {1.0 5.0 422 ------- null} + -t 1.81888 -s 3 -d 5 -p cbr -e 210 -c 1 -i 455 -a 1 -x {1.0 5.0 422 ------- null} - -t 1.81888 -s 3 -d 5 -p cbr -e 210 -c 1 -i 455 -a 1 -x {1.0 5.0 422 ------- null} h -t 1.81888 -s 3 -d 5 -p cbr -e 210 -c 1 -i 455 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.82008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 449 -a 1 -x {1.0 5.0 416 ------- null} + -t 1.82125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 492 -a 1 -x {1.0 5.0 459 ------- null} - -t 1.82125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 492 -a 1 -x {1.0 5.0 459 ------- null} h -t 1.82125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 492 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.82184 -s 2 -d 3 -p cbr -e 210 -c 1 -i 470 -a 1 -x {1.0 5.0 437 ------- null} h -t 1.82184 -s 2 -d 3 -p cbr -e 210 -c 1 -i 470 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.82211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 478 -a 1 -x {1.0 5.0 445 ------- null} + -t 1.82211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 478 -a 1 -x {1.0 5.0 445 ------- null} r -t 1.82224 -s 2 -d 3 -p cbr -e 210 -c 1 -i 456 -a 1 -x {1.0 5.0 423 ------- null} + -t 1.82224 -s 3 -d 5 -p cbr -e 210 -c 1 -i 456 -a 1 -x {1.0 5.0 423 ------- null} - -t 1.82224 -s 3 -d 5 -p cbr -e 210 -c 1 -i 456 -a 1 -x {1.0 5.0 423 ------- null} h -t 1.82224 -s 3 -d 5 -p cbr -e 210 -c 1 -i 456 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 493 -a 1 -x {1.0 5.0 460 ------- null} - -t 1.825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 493 -a 1 -x {1.0 5.0 460 ------- null} h -t 1.825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 493 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.8252 -s 2 -d 3 -p cbr -e 210 -c 1 -i 471 -a 1 -x {1.0 5.0 438 ------- null} h -t 1.8252 -s 2 -d 3 -p cbr -e 210 -c 1 -i 471 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.8256 -s 2 -d 3 -p cbr -e 210 -c 1 -i 457 -a 1 -x {1.0 5.0 424 ------- null} + -t 1.8256 -s 3 -d 5 -p cbr -e 210 -c 1 -i 457 -a 1 -x {1.0 5.0 424 ------- null} - -t 1.8256 -s 3 -d 5 -p cbr -e 210 -c 1 -i 457 -a 1 -x {1.0 5.0 424 ------- null} h -t 1.8256 -s 3 -d 5 -p cbr -e 210 -c 1 -i 457 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.82586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 479 -a 1 -x {1.0 5.0 446 ------- null} + -t 1.82586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 479 -a 1 -x {1.0 5.0 446 ------- null} - -t 1.82856 -s 2 -d 3 -p cbr -e 210 -c 1 -i 472 -a 1 -x {1.0 5.0 439 ------- null} h -t 1.82856 -s 2 -d 3 -p cbr -e 210 -c 1 -i 472 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.82875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 494 -a 1 -x {1.0 5.0 461 ------- null} - -t 1.82875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 494 -a 1 -x {1.0 5.0 461 ------- null} h -t 1.82875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 494 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.82961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 480 -a 1 -x {1.0 5.0 447 ------- null} + -t 1.82961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 480 -a 1 -x {1.0 5.0 447 ------- null} - -t 1.83192 -s 2 -d 3 -p cbr -e 210 -c 1 -i 473 -a 1 -x {1.0 5.0 440 ------- null} h -t 1.83192 -s 2 -d 3 -p cbr -e 210 -c 1 -i 473 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.8325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 495 -a 1 -x {1.0 5.0 462 ------- null} - -t 1.8325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 495 -a 1 -x {1.0 5.0 462 ------- null} h -t 1.8325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 495 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.83336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 481 -a 1 -x {1.0 5.0 448 ------- null} + -t 1.83336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 481 -a 1 -x {1.0 5.0 448 ------- null} - -t 1.83528 -s 2 -d 3 -p cbr -e 210 -c 1 -i 474 -a 1 -x {1.0 5.0 441 ------- null} h -t 1.83528 -s 2 -d 3 -p cbr -e 210 -c 1 -i 474 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.83625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 496 -a 1 -x {1.0 5.0 463 ------- null} - -t 1.83625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 496 -a 1 -x {1.0 5.0 463 ------- null} h -t 1.83625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 496 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.83711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 482 -a 1 -x {1.0 5.0 449 ------- null} + -t 1.83711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 482 -a 1 -x {1.0 5.0 449 ------- null} - -t 1.83864 -s 2 -d 3 -p cbr -e 210 -c 1 -i 475 -a 1 -x {1.0 5.0 442 ------- null} h -t 1.83864 -s 2 -d 3 -p cbr -e 210 -c 1 -i 475 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.83944 -s 3 -d 5 -p cbr -e 210 -c 1 -i 450 -a 1 -x {1.0 5.0 417 ------- null} + -t 1.84 -s 1 -d 2 -p cbr -e 210 -c 1 -i 497 -a 1 -x {1.0 5.0 464 ------- null} - -t 1.84 -s 1 -d 2 -p cbr -e 210 -c 1 -i 497 -a 1 -x {1.0 5.0 464 ------- null} h -t 1.84 -s 1 -d 2 -p cbr -e 210 -c 1 -i 497 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.84086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 483 -a 1 -x {1.0 5.0 450 ------- null} + -t 1.84086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 483 -a 1 -x {1.0 5.0 450 ------- null} r -t 1.8416 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 444 -a 0 -x {0.0 4.0 13 ------- null} + -t 1.8416 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 444 -a 0 -x {0.0 4.0 13 ------- null} - -t 1.8416 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 444 -a 0 -x {0.0 4.0 13 ------- null} h -t 1.8416 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 444 -a 0 -x {0.0 4.0 -1 ------- null} - -t 1.842 -s 2 -d 3 -p cbr -e 210 -c 1 -i 476 -a 1 -x {1.0 5.0 443 ------- null} h -t 1.842 -s 2 -d 3 -p cbr -e 210 -c 1 -i 476 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.8428 -s 3 -d 5 -p cbr -e 210 -c 1 -i 451 -a 1 -x {1.0 5.0 418 ------- null} + -t 1.84375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 498 -a 1 -x {1.0 5.0 465 ------- null} - -t 1.84375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 498 -a 1 -x {1.0 5.0 465 ------- null} h -t 1.84375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 498 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.84461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 484 -a 1 -x {1.0 5.0 451 ------- null} + -t 1.84461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 484 -a 1 -x {1.0 5.0 451 ------- null} r -t 1.84496 -s 2 -d 3 -p cbr -e 210 -c 1 -i 458 -a 1 -x {1.0 5.0 425 ------- null} + -t 1.84496 -s 3 -d 5 -p cbr -e 210 -c 1 -i 458 -a 1 -x {1.0 5.0 425 ------- null} - -t 1.84496 -s 3 -d 5 -p cbr -e 210 -c 1 -i 458 -a 1 -x {1.0 5.0 425 ------- null} h -t 1.84496 -s 3 -d 5 -p cbr -e 210 -c 1 -i 458 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.84536 -s 2 -d 3 -p cbr -e 210 -c 1 -i 477 -a 1 -x {1.0 5.0 444 ------- null} h -t 1.84536 -s 2 -d 3 -p cbr -e 210 -c 1 -i 477 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.84616 -s 3 -d 5 -p cbr -e 210 -c 1 -i 452 -a 1 -x {1.0 5.0 419 ------- null} + -t 1.8475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 499 -a 1 -x {1.0 5.0 466 ------- null} - -t 1.8475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 499 -a 1 -x {1.0 5.0 466 ------- null} h -t 1.8475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 499 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.84832 -s 2 -d 3 -p cbr -e 210 -c 1 -i 459 -a 1 -x {1.0 5.0 426 ------- null} + -t 1.84832 -s 3 -d 5 -p cbr -e 210 -c 1 -i 459 -a 1 -x {1.0 5.0 426 ------- null} - -t 1.84832 -s 3 -d 5 -p cbr -e 210 -c 1 -i 459 -a 1 -x {1.0 5.0 426 ------- null} h -t 1.84832 -s 3 -d 5 -p cbr -e 210 -c 1 -i 459 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.84836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 485 -a 1 -x {1.0 5.0 452 ------- null} + -t 1.84836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 485 -a 1 -x {1.0 5.0 452 ------- null} r -t 1.84872 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 442 -a 0 -x {0.0 4.0 11 ------- null} + -t 1.84872 -s 4 -d 3 -p ack -e 40 -c 0 -i 500 -a 0 -x {4.0 0.0 11 ------- null} - -t 1.84872 -s 4 -d 3 -p ack -e 40 -c 0 -i 500 -a 0 -x {4.0 0.0 11 ------- null} h -t 1.84872 -s 4 -d 3 -p ack -e 40 -c 0 -i 500 -a 0 -x {4.0 0.0 -1 ------- null} - -t 1.84872 -s 2 -d 3 -p cbr -e 210 -c 1 -i 478 -a 1 -x {1.0 5.0 445 ------- null} h -t 1.84872 -s 2 -d 3 -p cbr -e 210 -c 1 -i 478 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.84952 -s 3 -d 5 -p cbr -e 210 -c 1 -i 453 -a 1 -x {1.0 5.0 420 ------- null} + -t 1.85125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 501 -a 1 -x {1.0 5.0 467 ------- null} - -t 1.85125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 501 -a 1 -x {1.0 5.0 467 ------- null} h -t 1.85125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 501 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.85168 -s 2 -d 3 -p cbr -e 210 -c 1 -i 460 -a 1 -x {1.0 5.0 427 ------- null} + -t 1.85168 -s 3 -d 5 -p cbr -e 210 -c 1 -i 460 -a 1 -x {1.0 5.0 427 ------- null} - -t 1.85168 -s 3 -d 5 -p cbr -e 210 -c 1 -i 460 -a 1 -x {1.0 5.0 427 ------- null} h -t 1.85168 -s 3 -d 5 -p cbr -e 210 -c 1 -i 460 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.85208 -s 2 -d 3 -p cbr -e 210 -c 1 -i 479 -a 1 -x {1.0 5.0 446 ------- null} h -t 1.85208 -s 2 -d 3 -p cbr -e 210 -c 1 -i 479 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.85211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 486 -a 1 -x {1.0 5.0 453 ------- null} + -t 1.85211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 486 -a 1 -x {1.0 5.0 453 ------- null} + -t 1.855 -s 1 -d 2 -p cbr -e 210 -c 1 -i 502 -a 1 -x {1.0 5.0 468 ------- null} - -t 1.855 -s 1 -d 2 -p cbr -e 210 -c 1 -i 502 -a 1 -x {1.0 5.0 468 ------- null} h -t 1.855 -s 1 -d 2 -p cbr -e 210 -c 1 -i 502 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.85504 -s 2 -d 3 -p cbr -e 210 -c 1 -i 461 -a 1 -x {1.0 5.0 428 ------- null} + -t 1.85504 -s 3 -d 5 -p cbr -e 210 -c 1 -i 461 -a 1 -x {1.0 5.0 428 ------- null} - -t 1.85504 -s 3 -d 5 -p cbr -e 210 -c 1 -i 461 -a 1 -x {1.0 5.0 428 ------- null} h -t 1.85504 -s 3 -d 5 -p cbr -e 210 -c 1 -i 461 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.85544 -s 2 -d 3 -p cbr -e 210 -c 1 -i 480 -a 1 -x {1.0 5.0 447 ------- null} h -t 1.85544 -s 2 -d 3 -p cbr -e 210 -c 1 -i 480 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.85586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 487 -a 1 -x {1.0 5.0 454 ------- null} + -t 1.85586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 487 -a 1 -x {1.0 5.0 454 ------- null} r -t 1.8584 -s 2 -d 3 -p cbr -e 210 -c 1 -i 463 -a 1 -x {1.0 5.0 430 ------- null} + -t 1.8584 -s 3 -d 5 -p cbr -e 210 -c 1 -i 463 -a 1 -x {1.0 5.0 430 ------- null} - -t 1.8584 -s 3 -d 5 -p cbr -e 210 -c 1 -i 463 -a 1 -x {1.0 5.0 430 ------- null} h -t 1.8584 -s 3 -d 5 -p cbr -e 210 -c 1 -i 463 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.85875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 503 -a 1 -x {1.0 5.0 469 ------- null} - -t 1.85875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 503 -a 1 -x {1.0 5.0 469 ------- null} h -t 1.85875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 503 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.8588 -s 2 -d 3 -p cbr -e 210 -c 1 -i 481 -a 1 -x {1.0 5.0 448 ------- null} h -t 1.8588 -s 2 -d 3 -p cbr -e 210 -c 1 -i 481 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.85961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 488 -a 1 -x {1.0 5.0 455 ------- null} + -t 1.85961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 488 -a 1 -x {1.0 5.0 455 ------- null} r -t 1.86176 -s 2 -d 3 -p cbr -e 210 -c 1 -i 464 -a 1 -x {1.0 5.0 431 ------- null} + -t 1.86176 -s 3 -d 5 -p cbr -e 210 -c 1 -i 464 -a 1 -x {1.0 5.0 431 ------- null} - -t 1.86176 -s 3 -d 5 -p cbr -e 210 -c 1 -i 464 -a 1 -x {1.0 5.0 431 ------- null} h -t 1.86176 -s 3 -d 5 -p cbr -e 210 -c 1 -i 464 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.86216 -s 2 -d 3 -p cbr -e 210 -c 1 -i 482 -a 1 -x {1.0 5.0 449 ------- null} h -t 1.86216 -s 2 -d 3 -p cbr -e 210 -c 1 -i 482 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.8625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 504 -a 1 -x {1.0 5.0 470 ------- null} - -t 1.8625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 504 -a 1 -x {1.0 5.0 470 ------- null} h -t 1.8625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 504 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.86336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 489 -a 1 -x {1.0 5.0 456 ------- null} + -t 1.86336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 489 -a 1 -x {1.0 5.0 456 ------- null} r -t 1.86512 -s 2 -d 3 -p cbr -e 210 -c 1 -i 465 -a 1 -x {1.0 5.0 432 ------- null} + -t 1.86512 -s 3 -d 5 -p cbr -e 210 -c 1 -i 465 -a 1 -x {1.0 5.0 432 ------- null} - -t 1.86512 -s 3 -d 5 -p cbr -e 210 -c 1 -i 465 -a 1 -x {1.0 5.0 432 ------- null} h -t 1.86512 -s 3 -d 5 -p cbr -e 210 -c 1 -i 465 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.86552 -s 2 -d 3 -p cbr -e 210 -c 1 -i 483 -a 1 -x {1.0 5.0 450 ------- null} h -t 1.86552 -s 2 -d 3 -p cbr -e 210 -c 1 -i 483 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.86625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 505 -a 1 -x {1.0 5.0 471 ------- null} - -t 1.86625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 505 -a 1 -x {1.0 5.0 471 ------- null} h -t 1.86625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 505 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.86711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 490 -a 1 -x {1.0 5.0 457 ------- null} + -t 1.86711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 490 -a 1 -x {1.0 5.0 457 ------- null} r -t 1.86848 -s 2 -d 3 -p cbr -e 210 -c 1 -i 466 -a 1 -x {1.0 5.0 433 ------- null} + -t 1.86848 -s 3 -d 5 -p cbr -e 210 -c 1 -i 466 -a 1 -x {1.0 5.0 433 ------- null} - -t 1.86848 -s 3 -d 5 -p cbr -e 210 -c 1 -i 466 -a 1 -x {1.0 5.0 433 ------- null} h -t 1.86848 -s 3 -d 5 -p cbr -e 210 -c 1 -i 466 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.86888 -s 3 -d 5 -p cbr -e 210 -c 1 -i 454 -a 1 -x {1.0 5.0 421 ------- null} - -t 1.86888 -s 2 -d 3 -p cbr -e 210 -c 1 -i 484 -a 1 -x {1.0 5.0 451 ------- null} h -t 1.86888 -s 2 -d 3 -p cbr -e 210 -c 1 -i 484 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.87 -s 1 -d 2 -p cbr -e 210 -c 1 -i 506 -a 1 -x {1.0 5.0 472 ------- null} - -t 1.87 -s 1 -d 2 -p cbr -e 210 -c 1 -i 506 -a 1 -x {1.0 5.0 472 ------- null} h -t 1.87 -s 1 -d 2 -p cbr -e 210 -c 1 -i 506 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.87086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 491 -a 1 -x {1.0 5.0 458 ------- null} + -t 1.87086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 491 -a 1 -x {1.0 5.0 458 ------- null} r -t 1.87184 -s 2 -d 3 -p cbr -e 210 -c 1 -i 467 -a 1 -x {1.0 5.0 434 ------- null} + -t 1.87184 -s 3 -d 5 -p cbr -e 210 -c 1 -i 467 -a 1 -x {1.0 5.0 434 ------- null} - -t 1.87184 -s 3 -d 5 -p cbr -e 210 -c 1 -i 467 -a 1 -x {1.0 5.0 434 ------- null} h -t 1.87184 -s 3 -d 5 -p cbr -e 210 -c 1 -i 467 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.87224 -s 3 -d 5 -p cbr -e 210 -c 1 -i 455 -a 1 -x {1.0 5.0 422 ------- null} - -t 1.87224 -s 2 -d 3 -p cbr -e 210 -c 1 -i 485 -a 1 -x {1.0 5.0 452 ------- null} h -t 1.87224 -s 2 -d 3 -p cbr -e 210 -c 1 -i 485 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.87375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 507 -a 1 -x {1.0 5.0 473 ------- null} - -t 1.87375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 507 -a 1 -x {1.0 5.0 473 ------- null} h -t 1.87375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 507 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.87461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 492 -a 1 -x {1.0 5.0 459 ------- null} + -t 1.87461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 492 -a 1 -x {1.0 5.0 459 ------- null} r -t 1.8752 -s 2 -d 3 -p cbr -e 210 -c 1 -i 470 -a 1 -x {1.0 5.0 437 ------- null} + -t 1.8752 -s 3 -d 5 -p cbr -e 210 -c 1 -i 470 -a 1 -x {1.0 5.0 437 ------- null} - -t 1.8752 -s 3 -d 5 -p cbr -e 210 -c 1 -i 470 -a 1 -x {1.0 5.0 437 ------- null} h -t 1.8752 -s 3 -d 5 -p cbr -e 210 -c 1 -i 470 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.8756 -s 3 -d 5 -p cbr -e 210 -c 1 -i 456 -a 1 -x {1.0 5.0 423 ------- null} - -t 1.8756 -s 2 -d 3 -p cbr -e 210 -c 1 -i 486 -a 1 -x {1.0 5.0 453 ------- null} h -t 1.8756 -s 2 -d 3 -p cbr -e 210 -c 1 -i 486 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.8775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 508 -a 1 -x {1.0 5.0 474 ------- null} - -t 1.8775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 508 -a 1 -x {1.0 5.0 474 ------- null} h -t 1.8775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 508 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.87816 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 443 -a 0 -x {0.0 4.0 12 ------- null} + -t 1.87816 -s 4 -d 3 -p ack -e 40 -c 0 -i 509 -a 0 -x {4.0 0.0 12 ------- null} - -t 1.87816 -s 4 -d 3 -p ack -e 40 -c 0 -i 509 -a 0 -x {4.0 0.0 12 ------- null} h -t 1.87816 -s 4 -d 3 -p ack -e 40 -c 0 -i 509 -a 0 -x {4.0 0.0 -1 ------- null} r -t 1.87836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 493 -a 1 -x {1.0 5.0 460 ------- null} + -t 1.87836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 493 -a 1 -x {1.0 5.0 460 ------- null} r -t 1.87856 -s 2 -d 3 -p cbr -e 210 -c 1 -i 471 -a 1 -x {1.0 5.0 438 ------- null} + -t 1.87856 -s 3 -d 5 -p cbr -e 210 -c 1 -i 471 -a 1 -x {1.0 5.0 438 ------- null} - -t 1.87856 -s 3 -d 5 -p cbr -e 210 -c 1 -i 471 -a 1 -x {1.0 5.0 438 ------- null} h -t 1.87856 -s 3 -d 5 -p cbr -e 210 -c 1 -i 471 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.87896 -s 3 -d 5 -p cbr -e 210 -c 1 -i 457 -a 1 -x {1.0 5.0 424 ------- null} - -t 1.87896 -s 2 -d 3 -p cbr -e 210 -c 1 -i 487 -a 1 -x {1.0 5.0 454 ------- null} h -t 1.87896 -s 2 -d 3 -p cbr -e 210 -c 1 -i 487 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.88125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 510 -a 1 -x {1.0 5.0 475 ------- null} - -t 1.88125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 510 -a 1 -x {1.0 5.0 475 ------- null} h -t 1.88125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 510 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.88192 -s 2 -d 3 -p cbr -e 210 -c 1 -i 472 -a 1 -x {1.0 5.0 439 ------- null} + -t 1.88192 -s 3 -d 5 -p cbr -e 210 -c 1 -i 472 -a 1 -x {1.0 5.0 439 ------- null} - -t 1.88192 -s 3 -d 5 -p cbr -e 210 -c 1 -i 472 -a 1 -x {1.0 5.0 439 ------- null} h -t 1.88192 -s 3 -d 5 -p cbr -e 210 -c 1 -i 472 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.88211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 494 -a 1 -x {1.0 5.0 461 ------- null} + -t 1.88211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 494 -a 1 -x {1.0 5.0 461 ------- null} - -t 1.88232 -s 2 -d 3 -p cbr -e 210 -c 1 -i 488 -a 1 -x {1.0 5.0 455 ------- null} h -t 1.88232 -s 2 -d 3 -p cbr -e 210 -c 1 -i 488 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.885 -s 1 -d 2 -p cbr -e 210 -c 1 -i 511 -a 1 -x {1.0 5.0 476 ------- null} - -t 1.885 -s 1 -d 2 -p cbr -e 210 -c 1 -i 511 -a 1 -x {1.0 5.0 476 ------- null} h -t 1.885 -s 1 -d 2 -p cbr -e 210 -c 1 -i 511 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.88528 -s 2 -d 3 -p cbr -e 210 -c 1 -i 473 -a 1 -x {1.0 5.0 440 ------- null} + -t 1.88528 -s 3 -d 5 -p cbr -e 210 -c 1 -i 473 -a 1 -x {1.0 5.0 440 ------- null} - -t 1.88528 -s 3 -d 5 -p cbr -e 210 -c 1 -i 473 -a 1 -x {1.0 5.0 440 ------- null} h -t 1.88528 -s 3 -d 5 -p cbr -e 210 -c 1 -i 473 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.88568 -s 2 -d 3 -p cbr -e 210 -c 1 -i 489 -a 1 -x {1.0 5.0 456 ------- null} h -t 1.88568 -s 2 -d 3 -p cbr -e 210 -c 1 -i 489 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.88586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 495 -a 1 -x {1.0 5.0 462 ------- null} + -t 1.88586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 495 -a 1 -x {1.0 5.0 462 ------- null} r -t 1.88864 -s 2 -d 3 -p cbr -e 210 -c 1 -i 474 -a 1 -x {1.0 5.0 441 ------- null} + -t 1.88864 -s 3 -d 5 -p cbr -e 210 -c 1 -i 474 -a 1 -x {1.0 5.0 441 ------- null} - -t 1.88864 -s 3 -d 5 -p cbr -e 210 -c 1 -i 474 -a 1 -x {1.0 5.0 441 ------- null} h -t 1.88864 -s 3 -d 5 -p cbr -e 210 -c 1 -i 474 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.88875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 512 -a 1 -x {1.0 5.0 477 ------- null} - -t 1.88875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 512 -a 1 -x {1.0 5.0 477 ------- null} h -t 1.88875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 512 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.88904 -s 2 -d 3 -p cbr -e 210 -c 1 -i 490 -a 1 -x {1.0 5.0 457 ------- null} h -t 1.88904 -s 2 -d 3 -p cbr -e 210 -c 1 -i 490 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.88961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 496 -a 1 -x {1.0 5.0 463 ------- null} + -t 1.88961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 496 -a 1 -x {1.0 5.0 463 ------- null} r -t 1.892 -s 2 -d 3 -p cbr -e 210 -c 1 -i 475 -a 1 -x {1.0 5.0 442 ------- null} + -t 1.892 -s 3 -d 5 -p cbr -e 210 -c 1 -i 475 -a 1 -x {1.0 5.0 442 ------- null} - -t 1.892 -s 3 -d 5 -p cbr -e 210 -c 1 -i 475 -a 1 -x {1.0 5.0 442 ------- null} h -t 1.892 -s 3 -d 5 -p cbr -e 210 -c 1 -i 475 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.8924 -s 2 -d 3 -p cbr -e 210 -c 1 -i 491 -a 1 -x {1.0 5.0 458 ------- null} h -t 1.8924 -s 2 -d 3 -p cbr -e 210 -c 1 -i 491 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.8925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 513 -a 1 -x {1.0 5.0 478 ------- null} - -t 1.8925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 513 -a 1 -x {1.0 5.0 478 ------- null} h -t 1.8925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 513 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.89336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 497 -a 1 -x {1.0 5.0 464 ------- null} + -t 1.89336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 497 -a 1 -x {1.0 5.0 464 ------- null} r -t 1.89536 -s 2 -d 3 -p cbr -e 210 -c 1 -i 476 -a 1 -x {1.0 5.0 443 ------- null} + -t 1.89536 -s 3 -d 5 -p cbr -e 210 -c 1 -i 476 -a 1 -x {1.0 5.0 443 ------- null} - -t 1.89536 -s 3 -d 5 -p cbr -e 210 -c 1 -i 476 -a 1 -x {1.0 5.0 443 ------- null} h -t 1.89536 -s 3 -d 5 -p cbr -e 210 -c 1 -i 476 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.89576 -s 2 -d 3 -p cbr -e 210 -c 1 -i 492 -a 1 -x {1.0 5.0 459 ------- null} h -t 1.89576 -s 2 -d 3 -p cbr -e 210 -c 1 -i 492 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.89625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 514 -a 1 -x {1.0 5.0 479 ------- null} - -t 1.89625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 514 -a 1 -x {1.0 5.0 479 ------- null} h -t 1.89625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 514 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.89711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 498 -a 1 -x {1.0 5.0 465 ------- null} + -t 1.89711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 498 -a 1 -x {1.0 5.0 465 ------- null} r -t 1.89832 -s 3 -d 5 -p cbr -e 210 -c 1 -i 458 -a 1 -x {1.0 5.0 425 ------- null} r -t 1.89872 -s 2 -d 3 -p cbr -e 210 -c 1 -i 477 -a 1 -x {1.0 5.0 444 ------- null} + -t 1.89872 -s 3 -d 5 -p cbr -e 210 -c 1 -i 477 -a 1 -x {1.0 5.0 444 ------- null} - -t 1.89872 -s 3 -d 5 -p cbr -e 210 -c 1 -i 477 -a 1 -x {1.0 5.0 444 ------- null} h -t 1.89872 -s 3 -d 5 -p cbr -e 210 -c 1 -i 477 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.89912 -s 2 -d 3 -p cbr -e 210 -c 1 -i 493 -a 1 -x {1.0 5.0 460 ------- null} h -t 1.89912 -s 2 -d 3 -p cbr -e 210 -c 1 -i 493 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.89936 -s 4 -d 3 -p ack -e 40 -c 0 -i 500 -a 0 -x {4.0 0.0 11 ------- null} + -t 1.89936 -s 3 -d 2 -p ack -e 40 -c 0 -i 500 -a 0 -x {4.0 0.0 11 ------- null} - -t 1.89936 -s 3 -d 2 -p ack -e 40 -c 0 -i 500 -a 0 -x {4.0 0.0 11 ------- null} h -t 1.89936 -s 3 -d 2 -p ack -e 40 -c 0 -i 500 -a 0 -x {4.0 0.0 -1 ------- null} + -t 1.9 -s 1 -d 2 -p cbr -e 210 -c 1 -i 515 -a 1 -x {1.0 5.0 480 ------- null} - -t 1.9 -s 1 -d 2 -p cbr -e 210 -c 1 -i 515 -a 1 -x {1.0 5.0 480 ------- null} h -t 1.9 -s 1 -d 2 -p cbr -e 210 -c 1 -i 515 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.90086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 499 -a 1 -x {1.0 5.0 466 ------- null} + -t 1.90086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 499 -a 1 -x {1.0 5.0 466 ------- null} r -t 1.90168 -s 3 -d 5 -p cbr -e 210 -c 1 -i 459 -a 1 -x {1.0 5.0 426 ------- null} r -t 1.90208 -s 2 -d 3 -p cbr -e 210 -c 1 -i 478 -a 1 -x {1.0 5.0 445 ------- null} + -t 1.90208 -s 3 -d 5 -p cbr -e 210 -c 1 -i 478 -a 1 -x {1.0 5.0 445 ------- null} - -t 1.90208 -s 3 -d 5 -p cbr -e 210 -c 1 -i 478 -a 1 -x {1.0 5.0 445 ------- null} h -t 1.90208 -s 3 -d 5 -p cbr -e 210 -c 1 -i 478 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.90248 -s 2 -d 3 -p cbr -e 210 -c 1 -i 494 -a 1 -x {1.0 5.0 461 ------- null} h -t 1.90248 -s 2 -d 3 -p cbr -e 210 -c 1 -i 494 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.90375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 516 -a 1 -x {1.0 5.0 481 ------- null} - -t 1.90375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 516 -a 1 -x {1.0 5.0 481 ------- null} h -t 1.90375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 516 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.90461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 501 -a 1 -x {1.0 5.0 467 ------- null} + -t 1.90461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 501 -a 1 -x {1.0 5.0 467 ------- null} r -t 1.90504 -s 3 -d 5 -p cbr -e 210 -c 1 -i 460 -a 1 -x {1.0 5.0 427 ------- null} r -t 1.90544 -s 2 -d 3 -p cbr -e 210 -c 1 -i 479 -a 1 -x {1.0 5.0 446 ------- null} + -t 1.90544 -s 3 -d 5 -p cbr -e 210 -c 1 -i 479 -a 1 -x {1.0 5.0 446 ------- null} - -t 1.90544 -s 3 -d 5 -p cbr -e 210 -c 1 -i 479 -a 1 -x {1.0 5.0 446 ------- null} h -t 1.90544 -s 3 -d 5 -p cbr -e 210 -c 1 -i 479 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.90584 -s 2 -d 3 -p cbr -e 210 -c 1 -i 495 -a 1 -x {1.0 5.0 462 ------- null} h -t 1.90584 -s 2 -d 3 -p cbr -e 210 -c 1 -i 495 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.9075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 517 -a 1 -x {1.0 5.0 482 ------- null} - -t 1.9075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 517 -a 1 -x {1.0 5.0 482 ------- null} h -t 1.9075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 517 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.9076 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 444 -a 0 -x {0.0 4.0 13 ------- null} + -t 1.9076 -s 4 -d 3 -p ack -e 40 -c 0 -i 518 -a 0 -x {4.0 0.0 13 ------- null} - -t 1.9076 -s 4 -d 3 -p ack -e 40 -c 0 -i 518 -a 0 -x {4.0 0.0 13 ------- null} h -t 1.9076 -s 4 -d 3 -p ack -e 40 -c 0 -i 518 -a 0 -x {4.0 0.0 -1 ------- null} r -t 1.90836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 502 -a 1 -x {1.0 5.0 468 ------- null} + -t 1.90836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 502 -a 1 -x {1.0 5.0 468 ------- null} r -t 1.9084 -s 3 -d 5 -p cbr -e 210 -c 1 -i 461 -a 1 -x {1.0 5.0 428 ------- null} r -t 1.9088 -s 2 -d 3 -p cbr -e 210 -c 1 -i 480 -a 1 -x {1.0 5.0 447 ------- null} + -t 1.9088 -s 3 -d 5 -p cbr -e 210 -c 1 -i 480 -a 1 -x {1.0 5.0 447 ------- null} - -t 1.9088 -s 3 -d 5 -p cbr -e 210 -c 1 -i 480 -a 1 -x {1.0 5.0 447 ------- null} h -t 1.9088 -s 3 -d 5 -p cbr -e 210 -c 1 -i 480 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.9092 -s 2 -d 3 -p cbr -e 210 -c 1 -i 496 -a 1 -x {1.0 5.0 463 ------- null} h -t 1.9092 -s 2 -d 3 -p cbr -e 210 -c 1 -i 496 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.91125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 519 -a 1 -x {1.0 5.0 483 ------- null} - -t 1.91125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 519 -a 1 -x {1.0 5.0 483 ------- null} h -t 1.91125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 519 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.91176 -s 3 -d 5 -p cbr -e 210 -c 1 -i 463 -a 1 -x {1.0 5.0 430 ------- null} r -t 1.91211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 503 -a 1 -x {1.0 5.0 469 ------- null} + -t 1.91211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 503 -a 1 -x {1.0 5.0 469 ------- null} r -t 1.91216 -s 2 -d 3 -p cbr -e 210 -c 1 -i 481 -a 1 -x {1.0 5.0 448 ------- null} + -t 1.91216 -s 3 -d 5 -p cbr -e 210 -c 1 -i 481 -a 1 -x {1.0 5.0 448 ------- null} - -t 1.91216 -s 3 -d 5 -p cbr -e 210 -c 1 -i 481 -a 1 -x {1.0 5.0 448 ------- null} h -t 1.91216 -s 3 -d 5 -p cbr -e 210 -c 1 -i 481 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.91256 -s 2 -d 3 -p cbr -e 210 -c 1 -i 497 -a 1 -x {1.0 5.0 464 ------- null} h -t 1.91256 -s 2 -d 3 -p cbr -e 210 -c 1 -i 497 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.915 -s 1 -d 2 -p cbr -e 210 -c 1 -i 520 -a 1 -x {1.0 5.0 484 ------- null} - -t 1.915 -s 1 -d 2 -p cbr -e 210 -c 1 -i 520 -a 1 -x {1.0 5.0 484 ------- null} h -t 1.915 -s 1 -d 2 -p cbr -e 210 -c 1 -i 520 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.91512 -s 3 -d 5 -p cbr -e 210 -c 1 -i 464 -a 1 -x {1.0 5.0 431 ------- null} r -t 1.91552 -s 2 -d 3 -p cbr -e 210 -c 1 -i 482 -a 1 -x {1.0 5.0 449 ------- null} + -t 1.91552 -s 3 -d 5 -p cbr -e 210 -c 1 -i 482 -a 1 -x {1.0 5.0 449 ------- null} - -t 1.91552 -s 3 -d 5 -p cbr -e 210 -c 1 -i 482 -a 1 -x {1.0 5.0 449 ------- null} h -t 1.91552 -s 3 -d 5 -p cbr -e 210 -c 1 -i 482 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.91586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 504 -a 1 -x {1.0 5.0 470 ------- null} + -t 1.91586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 504 -a 1 -x {1.0 5.0 470 ------- null} - -t 1.91592 -s 2 -d 3 -p cbr -e 210 -c 1 -i 498 -a 1 -x {1.0 5.0 465 ------- null} h -t 1.91592 -s 2 -d 3 -p cbr -e 210 -c 1 -i 498 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.91848 -s 3 -d 5 -p cbr -e 210 -c 1 -i 465 -a 1 -x {1.0 5.0 432 ------- null} + -t 1.91875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 521 -a 1 -x {1.0 5.0 485 ------- null} - -t 1.91875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 521 -a 1 -x {1.0 5.0 485 ------- null} h -t 1.91875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 521 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.91888 -s 2 -d 3 -p cbr -e 210 -c 1 -i 483 -a 1 -x {1.0 5.0 450 ------- null} + -t 1.91888 -s 3 -d 5 -p cbr -e 210 -c 1 -i 483 -a 1 -x {1.0 5.0 450 ------- null} - -t 1.91888 -s 3 -d 5 -p cbr -e 210 -c 1 -i 483 -a 1 -x {1.0 5.0 450 ------- null} h -t 1.91888 -s 3 -d 5 -p cbr -e 210 -c 1 -i 483 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.91928 -s 2 -d 3 -p cbr -e 210 -c 1 -i 499 -a 1 -x {1.0 5.0 466 ------- null} h -t 1.91928 -s 2 -d 3 -p cbr -e 210 -c 1 -i 499 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.91961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 505 -a 1 -x {1.0 5.0 471 ------- null} + -t 1.91961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 505 -a 1 -x {1.0 5.0 471 ------- null} r -t 1.92184 -s 3 -d 5 -p cbr -e 210 -c 1 -i 466 -a 1 -x {1.0 5.0 433 ------- null} r -t 1.92224 -s 2 -d 3 -p cbr -e 210 -c 1 -i 484 -a 1 -x {1.0 5.0 451 ------- null} + -t 1.92224 -s 3 -d 5 -p cbr -e 210 -c 1 -i 484 -a 1 -x {1.0 5.0 451 ------- null} - -t 1.92224 -s 3 -d 5 -p cbr -e 210 -c 1 -i 484 -a 1 -x {1.0 5.0 451 ------- null} h -t 1.92224 -s 3 -d 5 -p cbr -e 210 -c 1 -i 484 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.9225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 522 -a 1 -x {1.0 5.0 486 ------- null} - -t 1.9225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 522 -a 1 -x {1.0 5.0 486 ------- null} h -t 1.9225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 522 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.92264 -s 2 -d 3 -p cbr -e 210 -c 1 -i 501 -a 1 -x {1.0 5.0 467 ------- null} h -t 1.92264 -s 2 -d 3 -p cbr -e 210 -c 1 -i 501 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.92336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 506 -a 1 -x {1.0 5.0 472 ------- null} + -t 1.92336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 506 -a 1 -x {1.0 5.0 472 ------- null} r -t 1.9252 -s 3 -d 5 -p cbr -e 210 -c 1 -i 467 -a 1 -x {1.0 5.0 434 ------- null} r -t 1.9256 -s 2 -d 3 -p cbr -e 210 -c 1 -i 485 -a 1 -x {1.0 5.0 452 ------- null} + -t 1.9256 -s 3 -d 5 -p cbr -e 210 -c 1 -i 485 -a 1 -x {1.0 5.0 452 ------- null} - -t 1.9256 -s 3 -d 5 -p cbr -e 210 -c 1 -i 485 -a 1 -x {1.0 5.0 452 ------- null} h -t 1.9256 -s 3 -d 5 -p cbr -e 210 -c 1 -i 485 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.926 -s 2 -d 3 -p cbr -e 210 -c 1 -i 502 -a 1 -x {1.0 5.0 468 ------- null} h -t 1.926 -s 2 -d 3 -p cbr -e 210 -c 1 -i 502 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.92625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 523 -a 1 -x {1.0 5.0 487 ------- null} - -t 1.92625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 523 -a 1 -x {1.0 5.0 487 ------- null} h -t 1.92625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 523 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.92711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 507 -a 1 -x {1.0 5.0 473 ------- null} + -t 1.92711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 507 -a 1 -x {1.0 5.0 473 ------- null} r -t 1.92856 -s 3 -d 5 -p cbr -e 210 -c 1 -i 470 -a 1 -x {1.0 5.0 437 ------- null} r -t 1.9288 -s 4 -d 3 -p ack -e 40 -c 0 -i 509 -a 0 -x {4.0 0.0 12 ------- null} + -t 1.9288 -s 3 -d 2 -p ack -e 40 -c 0 -i 509 -a 0 -x {4.0 0.0 12 ------- null} - -t 1.9288 -s 3 -d 2 -p ack -e 40 -c 0 -i 509 -a 0 -x {4.0 0.0 12 ------- null} h -t 1.9288 -s 3 -d 2 -p ack -e 40 -c 0 -i 509 -a 0 -x {4.0 0.0 -1 ------- null} r -t 1.92896 -s 2 -d 3 -p cbr -e 210 -c 1 -i 486 -a 1 -x {1.0 5.0 453 ------- null} + -t 1.92896 -s 3 -d 5 -p cbr -e 210 -c 1 -i 486 -a 1 -x {1.0 5.0 453 ------- null} - -t 1.92896 -s 3 -d 5 -p cbr -e 210 -c 1 -i 486 -a 1 -x {1.0 5.0 453 ------- null} h -t 1.92896 -s 3 -d 5 -p cbr -e 210 -c 1 -i 486 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.92936 -s 2 -d 3 -p cbr -e 210 -c 1 -i 503 -a 1 -x {1.0 5.0 469 ------- null} h -t 1.92936 -s 2 -d 3 -p cbr -e 210 -c 1 -i 503 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.93 -s 1 -d 2 -p cbr -e 210 -c 1 -i 524 -a 1 -x {1.0 5.0 488 ------- null} - -t 1.93 -s 1 -d 2 -p cbr -e 210 -c 1 -i 524 -a 1 -x {1.0 5.0 488 ------- null} h -t 1.93 -s 1 -d 2 -p cbr -e 210 -c 1 -i 524 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.93086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 508 -a 1 -x {1.0 5.0 474 ------- null} + -t 1.93086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 508 -a 1 -x {1.0 5.0 474 ------- null} r -t 1.93192 -s 3 -d 5 -p cbr -e 210 -c 1 -i 471 -a 1 -x {1.0 5.0 438 ------- null} r -t 1.93232 -s 2 -d 3 -p cbr -e 210 -c 1 -i 487 -a 1 -x {1.0 5.0 454 ------- null} + -t 1.93232 -s 3 -d 5 -p cbr -e 210 -c 1 -i 487 -a 1 -x {1.0 5.0 454 ------- null} - -t 1.93232 -s 3 -d 5 -p cbr -e 210 -c 1 -i 487 -a 1 -x {1.0 5.0 454 ------- null} h -t 1.93232 -s 3 -d 5 -p cbr -e 210 -c 1 -i 487 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.93272 -s 2 -d 3 -p cbr -e 210 -c 1 -i 504 -a 1 -x {1.0 5.0 470 ------- null} h -t 1.93272 -s 2 -d 3 -p cbr -e 210 -c 1 -i 504 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.93375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 525 -a 1 -x {1.0 5.0 489 ------- null} - -t 1.93375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 525 -a 1 -x {1.0 5.0 489 ------- null} h -t 1.93375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 525 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.93461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 510 -a 1 -x {1.0 5.0 475 ------- null} + -t 1.93461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 510 -a 1 -x {1.0 5.0 475 ------- null} r -t 1.93528 -s 3 -d 5 -p cbr -e 210 -c 1 -i 472 -a 1 -x {1.0 5.0 439 ------- null} r -t 1.93568 -s 2 -d 3 -p cbr -e 210 -c 1 -i 488 -a 1 -x {1.0 5.0 455 ------- null} + -t 1.93568 -s 3 -d 5 -p cbr -e 210 -c 1 -i 488 -a 1 -x {1.0 5.0 455 ------- null} - -t 1.93568 -s 3 -d 5 -p cbr -e 210 -c 1 -i 488 -a 1 -x {1.0 5.0 455 ------- null} h -t 1.93568 -s 3 -d 5 -p cbr -e 210 -c 1 -i 488 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.93608 -s 2 -d 3 -p cbr -e 210 -c 1 -i 505 -a 1 -x {1.0 5.0 471 ------- null} h -t 1.93608 -s 2 -d 3 -p cbr -e 210 -c 1 -i 505 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.9375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 526 -a 1 -x {1.0 5.0 490 ------- null} - -t 1.9375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 526 -a 1 -x {1.0 5.0 490 ------- null} h -t 1.9375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 526 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.93836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 511 -a 1 -x {1.0 5.0 476 ------- null} + -t 1.93836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 511 -a 1 -x {1.0 5.0 476 ------- null} r -t 1.93864 -s 3 -d 5 -p cbr -e 210 -c 1 -i 473 -a 1 -x {1.0 5.0 440 ------- null} r -t 1.93904 -s 2 -d 3 -p cbr -e 210 -c 1 -i 489 -a 1 -x {1.0 5.0 456 ------- null} + -t 1.93904 -s 3 -d 5 -p cbr -e 210 -c 1 -i 489 -a 1 -x {1.0 5.0 456 ------- null} - -t 1.93904 -s 3 -d 5 -p cbr -e 210 -c 1 -i 489 -a 1 -x {1.0 5.0 456 ------- null} h -t 1.93904 -s 3 -d 5 -p cbr -e 210 -c 1 -i 489 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.93944 -s 2 -d 3 -p cbr -e 210 -c 1 -i 506 -a 1 -x {1.0 5.0 472 ------- null} h -t 1.93944 -s 2 -d 3 -p cbr -e 210 -c 1 -i 506 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.94125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 527 -a 1 -x {1.0 5.0 491 ------- null} - -t 1.94125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 527 -a 1 -x {1.0 5.0 491 ------- null} h -t 1.94125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 527 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.942 -s 3 -d 5 -p cbr -e 210 -c 1 -i 474 -a 1 -x {1.0 5.0 441 ------- null} r -t 1.94211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 512 -a 1 -x {1.0 5.0 477 ------- null} + -t 1.94211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 512 -a 1 -x {1.0 5.0 477 ------- null} r -t 1.9424 -s 2 -d 3 -p cbr -e 210 -c 1 -i 490 -a 1 -x {1.0 5.0 457 ------- null} + -t 1.9424 -s 3 -d 5 -p cbr -e 210 -c 1 -i 490 -a 1 -x {1.0 5.0 457 ------- null} - -t 1.9424 -s 3 -d 5 -p cbr -e 210 -c 1 -i 490 -a 1 -x {1.0 5.0 457 ------- null} h -t 1.9424 -s 3 -d 5 -p cbr -e 210 -c 1 -i 490 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.9428 -s 2 -d 3 -p cbr -e 210 -c 1 -i 507 -a 1 -x {1.0 5.0 473 ------- null} h -t 1.9428 -s 2 -d 3 -p cbr -e 210 -c 1 -i 507 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.945 -s 1 -d 2 -p cbr -e 210 -c 1 -i 528 -a 1 -x {1.0 5.0 492 ------- null} - -t 1.945 -s 1 -d 2 -p cbr -e 210 -c 1 -i 528 -a 1 -x {1.0 5.0 492 ------- null} h -t 1.945 -s 1 -d 2 -p cbr -e 210 -c 1 -i 528 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.94536 -s 3 -d 5 -p cbr -e 210 -c 1 -i 475 -a 1 -x {1.0 5.0 442 ------- null} r -t 1.94576 -s 2 -d 3 -p cbr -e 210 -c 1 -i 491 -a 1 -x {1.0 5.0 458 ------- null} + -t 1.94576 -s 3 -d 5 -p cbr -e 210 -c 1 -i 491 -a 1 -x {1.0 5.0 458 ------- null} - -t 1.94576 -s 3 -d 5 -p cbr -e 210 -c 1 -i 491 -a 1 -x {1.0 5.0 458 ------- null} h -t 1.94576 -s 3 -d 5 -p cbr -e 210 -c 1 -i 491 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.94586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 513 -a 1 -x {1.0 5.0 478 ------- null} + -t 1.94586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 513 -a 1 -x {1.0 5.0 478 ------- null} - -t 1.94616 -s 2 -d 3 -p cbr -e 210 -c 1 -i 508 -a 1 -x {1.0 5.0 474 ------- null} h -t 1.94616 -s 2 -d 3 -p cbr -e 210 -c 1 -i 508 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.94872 -s 3 -d 5 -p cbr -e 210 -c 1 -i 476 -a 1 -x {1.0 5.0 443 ------- null} + -t 1.94875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 529 -a 1 -x {1.0 5.0 493 ------- null} - -t 1.94875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 529 -a 1 -x {1.0 5.0 493 ------- null} h -t 1.94875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 529 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.94912 -s 2 -d 3 -p cbr -e 210 -c 1 -i 492 -a 1 -x {1.0 5.0 459 ------- null} + -t 1.94912 -s 3 -d 5 -p cbr -e 210 -c 1 -i 492 -a 1 -x {1.0 5.0 459 ------- null} - -t 1.94912 -s 3 -d 5 -p cbr -e 210 -c 1 -i 492 -a 1 -x {1.0 5.0 459 ------- null} h -t 1.94912 -s 3 -d 5 -p cbr -e 210 -c 1 -i 492 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.94952 -s 2 -d 3 -p cbr -e 210 -c 1 -i 510 -a 1 -x {1.0 5.0 475 ------- null} h -t 1.94952 -s 2 -d 3 -p cbr -e 210 -c 1 -i 510 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.94961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 514 -a 1 -x {1.0 5.0 479 ------- null} + -t 1.94961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 514 -a 1 -x {1.0 5.0 479 ------- null} r -t 1.95 -s 3 -d 2 -p ack -e 40 -c 0 -i 500 -a 0 -x {4.0 0.0 11 ------- null} + -t 1.95 -s 2 -d 0 -p ack -e 40 -c 0 -i 500 -a 0 -x {4.0 0.0 11 ------- null} - -t 1.95 -s 2 -d 0 -p ack -e 40 -c 0 -i 500 -a 0 -x {4.0 0.0 11 ------- null} h -t 1.95 -s 2 -d 0 -p ack -e 40 -c 0 -i 500 -a 0 -x {4.0 0.0 -1 ------- null} r -t 1.95208 -s 3 -d 5 -p cbr -e 210 -c 1 -i 477 -a 1 -x {1.0 5.0 444 ------- null} r -t 1.95248 -s 2 -d 3 -p cbr -e 210 -c 1 -i 493 -a 1 -x {1.0 5.0 460 ------- null} + -t 1.95248 -s 3 -d 5 -p cbr -e 210 -c 1 -i 493 -a 1 -x {1.0 5.0 460 ------- null} - -t 1.95248 -s 3 -d 5 -p cbr -e 210 -c 1 -i 493 -a 1 -x {1.0 5.0 460 ------- null} h -t 1.95248 -s 3 -d 5 -p cbr -e 210 -c 1 -i 493 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.9525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 530 -a 1 -x {1.0 5.0 494 ------- null} - -t 1.9525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 530 -a 1 -x {1.0 5.0 494 ------- null} h -t 1.9525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 530 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.95288 -s 2 -d 3 -p cbr -e 210 -c 1 -i 511 -a 1 -x {1.0 5.0 476 ------- null} h -t 1.95288 -s 2 -d 3 -p cbr -e 210 -c 1 -i 511 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.95336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 515 -a 1 -x {1.0 5.0 480 ------- null} + -t 1.95336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 515 -a 1 -x {1.0 5.0 480 ------- null} r -t 1.95544 -s 3 -d 5 -p cbr -e 210 -c 1 -i 478 -a 1 -x {1.0 5.0 445 ------- null} r -t 1.95584 -s 2 -d 3 -p cbr -e 210 -c 1 -i 494 -a 1 -x {1.0 5.0 461 ------- null} + -t 1.95584 -s 3 -d 5 -p cbr -e 210 -c 1 -i 494 -a 1 -x {1.0 5.0 461 ------- null} - -t 1.95584 -s 3 -d 5 -p cbr -e 210 -c 1 -i 494 -a 1 -x {1.0 5.0 461 ------- null} h -t 1.95584 -s 3 -d 5 -p cbr -e 210 -c 1 -i 494 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.95624 -s 2 -d 3 -p cbr -e 210 -c 1 -i 512 -a 1 -x {1.0 5.0 477 ------- null} h -t 1.95624 -s 2 -d 3 -p cbr -e 210 -c 1 -i 512 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.95625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 531 -a 1 -x {1.0 5.0 495 ------- null} - -t 1.95625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 531 -a 1 -x {1.0 5.0 495 ------- null} h -t 1.95625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 531 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.95711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 516 -a 1 -x {1.0 5.0 481 ------- null} + -t 1.95711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 516 -a 1 -x {1.0 5.0 481 ------- null} r -t 1.95824 -s 4 -d 3 -p ack -e 40 -c 0 -i 518 -a 0 -x {4.0 0.0 13 ------- null} + -t 1.95824 -s 3 -d 2 -p ack -e 40 -c 0 -i 518 -a 0 -x {4.0 0.0 13 ------- null} - -t 1.95824 -s 3 -d 2 -p ack -e 40 -c 0 -i 518 -a 0 -x {4.0 0.0 13 ------- null} h -t 1.95824 -s 3 -d 2 -p ack -e 40 -c 0 -i 518 -a 0 -x {4.0 0.0 -1 ------- null} r -t 1.9588 -s 3 -d 5 -p cbr -e 210 -c 1 -i 479 -a 1 -x {1.0 5.0 446 ------- null} r -t 1.9592 -s 2 -d 3 -p cbr -e 210 -c 1 -i 495 -a 1 -x {1.0 5.0 462 ------- null} + -t 1.9592 -s 3 -d 5 -p cbr -e 210 -c 1 -i 495 -a 1 -x {1.0 5.0 462 ------- null} - -t 1.9592 -s 3 -d 5 -p cbr -e 210 -c 1 -i 495 -a 1 -x {1.0 5.0 462 ------- null} h -t 1.9592 -s 3 -d 5 -p cbr -e 210 -c 1 -i 495 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.9596 -s 2 -d 3 -p cbr -e 210 -c 1 -i 513 -a 1 -x {1.0 5.0 478 ------- null} h -t 1.9596 -s 2 -d 3 -p cbr -e 210 -c 1 -i 513 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.96 -s 1 -d 2 -p cbr -e 210 -c 1 -i 532 -a 1 -x {1.0 5.0 496 ------- null} - -t 1.96 -s 1 -d 2 -p cbr -e 210 -c 1 -i 532 -a 1 -x {1.0 5.0 496 ------- null} h -t 1.96 -s 1 -d 2 -p cbr -e 210 -c 1 -i 532 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.96086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 517 -a 1 -x {1.0 5.0 482 ------- null} + -t 1.96086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 517 -a 1 -x {1.0 5.0 482 ------- null} r -t 1.96216 -s 3 -d 5 -p cbr -e 210 -c 1 -i 480 -a 1 -x {1.0 5.0 447 ------- null} r -t 1.96256 -s 2 -d 3 -p cbr -e 210 -c 1 -i 496 -a 1 -x {1.0 5.0 463 ------- null} + -t 1.96256 -s 3 -d 5 -p cbr -e 210 -c 1 -i 496 -a 1 -x {1.0 5.0 463 ------- null} - -t 1.96256 -s 3 -d 5 -p cbr -e 210 -c 1 -i 496 -a 1 -x {1.0 5.0 463 ------- null} h -t 1.96256 -s 3 -d 5 -p cbr -e 210 -c 1 -i 496 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.96296 -s 2 -d 3 -p cbr -e 210 -c 1 -i 514 -a 1 -x {1.0 5.0 479 ------- null} h -t 1.96296 -s 2 -d 3 -p cbr -e 210 -c 1 -i 514 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.96375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 533 -a 1 -x {1.0 5.0 497 ------- null} - -t 1.96375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 533 -a 1 -x {1.0 5.0 497 ------- null} h -t 1.96375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 533 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.96461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 519 -a 1 -x {1.0 5.0 483 ------- null} + -t 1.96461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 519 -a 1 -x {1.0 5.0 483 ------- null} r -t 1.96552 -s 3 -d 5 -p cbr -e 210 -c 1 -i 481 -a 1 -x {1.0 5.0 448 ------- null} r -t 1.96592 -s 2 -d 3 -p cbr -e 210 -c 1 -i 497 -a 1 -x {1.0 5.0 464 ------- null} + -t 1.96592 -s 3 -d 5 -p cbr -e 210 -c 1 -i 497 -a 1 -x {1.0 5.0 464 ------- null} - -t 1.96592 -s 3 -d 5 -p cbr -e 210 -c 1 -i 497 -a 1 -x {1.0 5.0 464 ------- null} h -t 1.96592 -s 3 -d 5 -p cbr -e 210 -c 1 -i 497 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.96632 -s 2 -d 3 -p cbr -e 210 -c 1 -i 515 -a 1 -x {1.0 5.0 480 ------- null} h -t 1.96632 -s 2 -d 3 -p cbr -e 210 -c 1 -i 515 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.9675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 534 -a 1 -x {1.0 5.0 498 ------- null} - -t 1.9675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 534 -a 1 -x {1.0 5.0 498 ------- null} h -t 1.9675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 534 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.96836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 520 -a 1 -x {1.0 5.0 484 ------- null} + -t 1.96836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 520 -a 1 -x {1.0 5.0 484 ------- null} r -t 1.96888 -s 3 -d 5 -p cbr -e 210 -c 1 -i 482 -a 1 -x {1.0 5.0 449 ------- null} r -t 1.96928 -s 2 -d 3 -p cbr -e 210 -c 1 -i 498 -a 1 -x {1.0 5.0 465 ------- null} + -t 1.96928 -s 3 -d 5 -p cbr -e 210 -c 1 -i 498 -a 1 -x {1.0 5.0 465 ------- null} - -t 1.96928 -s 3 -d 5 -p cbr -e 210 -c 1 -i 498 -a 1 -x {1.0 5.0 465 ------- null} h -t 1.96928 -s 3 -d 5 -p cbr -e 210 -c 1 -i 498 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.96968 -s 2 -d 3 -p cbr -e 210 -c 1 -i 516 -a 1 -x {1.0 5.0 481 ------- null} h -t 1.96968 -s 2 -d 3 -p cbr -e 210 -c 1 -i 516 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.97125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 535 -a 1 -x {1.0 5.0 499 ------- null} - -t 1.97125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 535 -a 1 -x {1.0 5.0 499 ------- null} h -t 1.97125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 535 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.97211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 521 -a 1 -x {1.0 5.0 485 ------- null} + -t 1.97211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 521 -a 1 -x {1.0 5.0 485 ------- null} r -t 1.97224 -s 3 -d 5 -p cbr -e 210 -c 1 -i 483 -a 1 -x {1.0 5.0 450 ------- null} r -t 1.97264 -s 2 -d 3 -p cbr -e 210 -c 1 -i 499 -a 1 -x {1.0 5.0 466 ------- null} + -t 1.97264 -s 3 -d 5 -p cbr -e 210 -c 1 -i 499 -a 1 -x {1.0 5.0 466 ------- null} - -t 1.97264 -s 3 -d 5 -p cbr -e 210 -c 1 -i 499 -a 1 -x {1.0 5.0 466 ------- null} h -t 1.97264 -s 3 -d 5 -p cbr -e 210 -c 1 -i 499 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.97304 -s 2 -d 3 -p cbr -e 210 -c 1 -i 517 -a 1 -x {1.0 5.0 482 ------- null} h -t 1.97304 -s 2 -d 3 -p cbr -e 210 -c 1 -i 517 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 536 -a 1 -x {1.0 5.0 500 ------- null} - -t 1.975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 536 -a 1 -x {1.0 5.0 500 ------- null} h -t 1.975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 536 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.9756 -s 3 -d 5 -p cbr -e 210 -c 1 -i 484 -a 1 -x {1.0 5.0 451 ------- null} r -t 1.97586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 522 -a 1 -x {1.0 5.0 486 ------- null} + -t 1.97586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 522 -a 1 -x {1.0 5.0 486 ------- null} r -t 1.976 -s 2 -d 3 -p cbr -e 210 -c 1 -i 501 -a 1 -x {1.0 5.0 467 ------- null} + -t 1.976 -s 3 -d 5 -p cbr -e 210 -c 1 -i 501 -a 1 -x {1.0 5.0 467 ------- null} - -t 1.976 -s 3 -d 5 -p cbr -e 210 -c 1 -i 501 -a 1 -x {1.0 5.0 467 ------- null} h -t 1.976 -s 3 -d 5 -p cbr -e 210 -c 1 -i 501 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.9764 -s 2 -d 3 -p cbr -e 210 -c 1 -i 519 -a 1 -x {1.0 5.0 483 ------- null} h -t 1.9764 -s 2 -d 3 -p cbr -e 210 -c 1 -i 519 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.97875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 537 -a 1 -x {1.0 5.0 501 ------- null} - -t 1.97875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 537 -a 1 -x {1.0 5.0 501 ------- null} h -t 1.97875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 537 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.97896 -s 3 -d 5 -p cbr -e 210 -c 1 -i 485 -a 1 -x {1.0 5.0 452 ------- null} r -t 1.97936 -s 2 -d 3 -p cbr -e 210 -c 1 -i 502 -a 1 -x {1.0 5.0 468 ------- null} + -t 1.97936 -s 3 -d 5 -p cbr -e 210 -c 1 -i 502 -a 1 -x {1.0 5.0 468 ------- null} - -t 1.97936 -s 3 -d 5 -p cbr -e 210 -c 1 -i 502 -a 1 -x {1.0 5.0 468 ------- null} h -t 1.97936 -s 3 -d 5 -p cbr -e 210 -c 1 -i 502 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.97944 -s 3 -d 2 -p ack -e 40 -c 0 -i 509 -a 0 -x {4.0 0.0 12 ------- null} + -t 1.97944 -s 2 -d 0 -p ack -e 40 -c 0 -i 509 -a 0 -x {4.0 0.0 12 ------- null} - -t 1.97944 -s 2 -d 0 -p ack -e 40 -c 0 -i 509 -a 0 -x {4.0 0.0 12 ------- null} h -t 1.97944 -s 2 -d 0 -p ack -e 40 -c 0 -i 509 -a 0 -x {4.0 0.0 -1 ------- null} r -t 1.97961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 523 -a 1 -x {1.0 5.0 487 ------- null} + -t 1.97961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 523 -a 1 -x {1.0 5.0 487 ------- null} - -t 1.97976 -s 2 -d 3 -p cbr -e 210 -c 1 -i 520 -a 1 -x {1.0 5.0 484 ------- null} h -t 1.97976 -s 2 -d 3 -p cbr -e 210 -c 1 -i 520 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.98232 -s 3 -d 5 -p cbr -e 210 -c 1 -i 486 -a 1 -x {1.0 5.0 453 ------- null} + -t 1.9825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 538 -a 1 -x {1.0 5.0 502 ------- null} - -t 1.9825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 538 -a 1 -x {1.0 5.0 502 ------- null} h -t 1.9825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 538 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.98272 -s 2 -d 3 -p cbr -e 210 -c 1 -i 503 -a 1 -x {1.0 5.0 469 ------- null} + -t 1.98272 -s 3 -d 5 -p cbr -e 210 -c 1 -i 503 -a 1 -x {1.0 5.0 469 ------- null} - -t 1.98272 -s 3 -d 5 -p cbr -e 210 -c 1 -i 503 -a 1 -x {1.0 5.0 469 ------- null} h -t 1.98272 -s 3 -d 5 -p cbr -e 210 -c 1 -i 503 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.98312 -s 2 -d 3 -p cbr -e 210 -c 1 -i 521 -a 1 -x {1.0 5.0 485 ------- null} h -t 1.98312 -s 2 -d 3 -p cbr -e 210 -c 1 -i 521 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.98336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 524 -a 1 -x {1.0 5.0 488 ------- null} + -t 1.98336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 524 -a 1 -x {1.0 5.0 488 ------- null} r -t 1.98568 -s 3 -d 5 -p cbr -e 210 -c 1 -i 487 -a 1 -x {1.0 5.0 454 ------- null} r -t 1.98608 -s 2 -d 3 -p cbr -e 210 -c 1 -i 504 -a 1 -x {1.0 5.0 470 ------- null} + -t 1.98608 -s 3 -d 5 -p cbr -e 210 -c 1 -i 504 -a 1 -x {1.0 5.0 470 ------- null} - -t 1.98608 -s 3 -d 5 -p cbr -e 210 -c 1 -i 504 -a 1 -x {1.0 5.0 470 ------- null} h -t 1.98608 -s 3 -d 5 -p cbr -e 210 -c 1 -i 504 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.98625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 539 -a 1 -x {1.0 5.0 503 ------- null} - -t 1.98625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 539 -a 1 -x {1.0 5.0 503 ------- null} h -t 1.98625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 539 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.98648 -s 2 -d 3 -p cbr -e 210 -c 1 -i 522 -a 1 -x {1.0 5.0 486 ------- null} h -t 1.98648 -s 2 -d 3 -p cbr -e 210 -c 1 -i 522 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.98711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 525 -a 1 -x {1.0 5.0 489 ------- null} + -t 1.98711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 525 -a 1 -x {1.0 5.0 489 ------- null} r -t 1.98904 -s 3 -d 5 -p cbr -e 210 -c 1 -i 488 -a 1 -x {1.0 5.0 455 ------- null} r -t 1.98944 -s 2 -d 3 -p cbr -e 210 -c 1 -i 505 -a 1 -x {1.0 5.0 471 ------- null} + -t 1.98944 -s 3 -d 5 -p cbr -e 210 -c 1 -i 505 -a 1 -x {1.0 5.0 471 ------- null} - -t 1.98944 -s 3 -d 5 -p cbr -e 210 -c 1 -i 505 -a 1 -x {1.0 5.0 471 ------- null} h -t 1.98944 -s 3 -d 5 -p cbr -e 210 -c 1 -i 505 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.98984 -s 2 -d 3 -p cbr -e 210 -c 1 -i 523 -a 1 -x {1.0 5.0 487 ------- null} h -t 1.98984 -s 2 -d 3 -p cbr -e 210 -c 1 -i 523 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.99 -s 1 -d 2 -p cbr -e 210 -c 1 -i 540 -a 1 -x {1.0 5.0 504 ------- null} - -t 1.99 -s 1 -d 2 -p cbr -e 210 -c 1 -i 540 -a 1 -x {1.0 5.0 504 ------- null} h -t 1.99 -s 1 -d 2 -p cbr -e 210 -c 1 -i 540 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.99086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 526 -a 1 -x {1.0 5.0 490 ------- null} + -t 1.99086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 526 -a 1 -x {1.0 5.0 490 ------- null} r -t 1.9924 -s 3 -d 5 -p cbr -e 210 -c 1 -i 489 -a 1 -x {1.0 5.0 456 ------- null} r -t 1.9928 -s 2 -d 3 -p cbr -e 210 -c 1 -i 506 -a 1 -x {1.0 5.0 472 ------- null} + -t 1.9928 -s 3 -d 5 -p cbr -e 210 -c 1 -i 506 -a 1 -x {1.0 5.0 472 ------- null} - -t 1.9928 -s 3 -d 5 -p cbr -e 210 -c 1 -i 506 -a 1 -x {1.0 5.0 472 ------- null} h -t 1.9928 -s 3 -d 5 -p cbr -e 210 -c 1 -i 506 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.9932 -s 2 -d 3 -p cbr -e 210 -c 1 -i 524 -a 1 -x {1.0 5.0 488 ------- null} h -t 1.9932 -s 2 -d 3 -p cbr -e 210 -c 1 -i 524 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.99375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 541 -a 1 -x {1.0 5.0 505 ------- null} - -t 1.99375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 541 -a 1 -x {1.0 5.0 505 ------- null} h -t 1.99375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 541 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.99461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 527 -a 1 -x {1.0 5.0 491 ------- null} + -t 1.99461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 527 -a 1 -x {1.0 5.0 491 ------- null} r -t 1.99576 -s 3 -d 5 -p cbr -e 210 -c 1 -i 490 -a 1 -x {1.0 5.0 457 ------- null} r -t 1.99616 -s 2 -d 3 -p cbr -e 210 -c 1 -i 507 -a 1 -x {1.0 5.0 473 ------- null} + -t 1.99616 -s 3 -d 5 -p cbr -e 210 -c 1 -i 507 -a 1 -x {1.0 5.0 473 ------- null} - -t 1.99616 -s 3 -d 5 -p cbr -e 210 -c 1 -i 507 -a 1 -x {1.0 5.0 473 ------- null} h -t 1.99616 -s 3 -d 5 -p cbr -e 210 -c 1 -i 507 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.99656 -s 2 -d 3 -p cbr -e 210 -c 1 -i 525 -a 1 -x {1.0 5.0 489 ------- null} h -t 1.99656 -s 2 -d 3 -p cbr -e 210 -c 1 -i 525 -a 1 -x {1.0 5.0 -1 ------- null} + -t 1.9975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 542 -a 1 -x {1.0 5.0 506 ------- null} - -t 1.9975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 542 -a 1 -x {1.0 5.0 506 ------- null} h -t 1.9975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 542 -a 1 -x {1.0 5.0 -1 ------- null} r -t 1.99836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 528 -a 1 -x {1.0 5.0 492 ------- null} + -t 1.99836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 528 -a 1 -x {1.0 5.0 492 ------- null} r -t 1.99912 -s 3 -d 5 -p cbr -e 210 -c 1 -i 491 -a 1 -x {1.0 5.0 458 ------- null} r -t 1.99952 -s 2 -d 3 -p cbr -e 210 -c 1 -i 508 -a 1 -x {1.0 5.0 474 ------- null} + -t 1.99952 -s 3 -d 5 -p cbr -e 210 -c 1 -i 508 -a 1 -x {1.0 5.0 474 ------- null} - -t 1.99952 -s 3 -d 5 -p cbr -e 210 -c 1 -i 508 -a 1 -x {1.0 5.0 474 ------- null} h -t 1.99952 -s 3 -d 5 -p cbr -e 210 -c 1 -i 508 -a 1 -x {1.0 5.0 -1 ------- null} - -t 1.99992 -s 2 -d 3 -p cbr -e 210 -c 1 -i 526 -a 1 -x {1.0 5.0 490 ------- null} h -t 1.99992 -s 2 -d 3 -p cbr -e 210 -c 1 -i 526 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.00064 -s 2 -d 0 -p ack -e 40 -c 0 -i 500 -a 0 -x {4.0 0.0 11 ------- null} + -t 2.00064 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {0.0 4.0 15 ------- null} - -t 2.00064 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {0.0 4.0 15 ------- null} h -t 2.00064 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {0.0 4.0 -1 ------- null} + -t 2.00125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 544 -a 1 -x {1.0 5.0 507 ------- null} - -t 2.00125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 544 -a 1 -x {1.0 5.0 507 ------- null} h -t 2.00125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 544 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.00211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 529 -a 1 -x {1.0 5.0 493 ------- null} + -t 2.00211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 529 -a 1 -x {1.0 5.0 493 ------- null} r -t 2.00248 -s 3 -d 5 -p cbr -e 210 -c 1 -i 492 -a 1 -x {1.0 5.0 459 ------- null} r -t 2.00288 -s 2 -d 3 -p cbr -e 210 -c 1 -i 510 -a 1 -x {1.0 5.0 475 ------- null} + -t 2.00288 -s 3 -d 5 -p cbr -e 210 -c 1 -i 510 -a 1 -x {1.0 5.0 475 ------- null} - -t 2.00288 -s 3 -d 5 -p cbr -e 210 -c 1 -i 510 -a 1 -x {1.0 5.0 475 ------- null} h -t 2.00288 -s 3 -d 5 -p cbr -e 210 -c 1 -i 510 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.00328 -s 2 -d 3 -p cbr -e 210 -c 1 -i 527 -a 1 -x {1.0 5.0 491 ------- null} h -t 2.00328 -s 2 -d 3 -p cbr -e 210 -c 1 -i 527 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.005 -s 1 -d 2 -p cbr -e 210 -c 1 -i 545 -a 1 -x {1.0 5.0 508 ------- null} - -t 2.005 -s 1 -d 2 -p cbr -e 210 -c 1 -i 545 -a 1 -x {1.0 5.0 508 ------- null} h -t 2.005 -s 1 -d 2 -p cbr -e 210 -c 1 -i 545 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.00584 -s 3 -d 5 -p cbr -e 210 -c 1 -i 493 -a 1 -x {1.0 5.0 460 ------- null} r -t 2.00586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 530 -a 1 -x {1.0 5.0 494 ------- null} + -t 2.00586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 530 -a 1 -x {1.0 5.0 494 ------- null} r -t 2.00624 -s 2 -d 3 -p cbr -e 210 -c 1 -i 511 -a 1 -x {1.0 5.0 476 ------- null} + -t 2.00624 -s 3 -d 5 -p cbr -e 210 -c 1 -i 511 -a 1 -x {1.0 5.0 476 ------- null} - -t 2.00624 -s 3 -d 5 -p cbr -e 210 -c 1 -i 511 -a 1 -x {1.0 5.0 476 ------- null} h -t 2.00624 -s 3 -d 5 -p cbr -e 210 -c 1 -i 511 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.00664 -s 2 -d 3 -p cbr -e 210 -c 1 -i 528 -a 1 -x {1.0 5.0 492 ------- null} h -t 2.00664 -s 2 -d 3 -p cbr -e 210 -c 1 -i 528 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.00875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 546 -a 1 -x {1.0 5.0 509 ------- null} - -t 2.00875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 546 -a 1 -x {1.0 5.0 509 ------- null} h -t 2.00875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 546 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.00888 -s 3 -d 2 -p ack -e 40 -c 0 -i 518 -a 0 -x {4.0 0.0 13 ------- null} + -t 2.00888 -s 2 -d 0 -p ack -e 40 -c 0 -i 518 -a 0 -x {4.0 0.0 13 ------- null} - -t 2.00888 -s 2 -d 0 -p ack -e 40 -c 0 -i 518 -a 0 -x {4.0 0.0 13 ------- null} h -t 2.00888 -s 2 -d 0 -p ack -e 40 -c 0 -i 518 -a 0 -x {4.0 0.0 -1 ------- null} r -t 2.0092 -s 3 -d 5 -p cbr -e 210 -c 1 -i 494 -a 1 -x {1.0 5.0 461 ------- null} r -t 2.0096 -s 2 -d 3 -p cbr -e 210 -c 1 -i 512 -a 1 -x {1.0 5.0 477 ------- null} + -t 2.0096 -s 3 -d 5 -p cbr -e 210 -c 1 -i 512 -a 1 -x {1.0 5.0 477 ------- null} - -t 2.0096 -s 3 -d 5 -p cbr -e 210 -c 1 -i 512 -a 1 -x {1.0 5.0 477 ------- null} h -t 2.0096 -s 3 -d 5 -p cbr -e 210 -c 1 -i 512 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.00961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 531 -a 1 -x {1.0 5.0 495 ------- null} + -t 2.00961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 531 -a 1 -x {1.0 5.0 495 ------- null} - -t 2.01 -s 2 -d 3 -p cbr -e 210 -c 1 -i 529 -a 1 -x {1.0 5.0 493 ------- null} h -t 2.01 -s 2 -d 3 -p cbr -e 210 -c 1 -i 529 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.0125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 547 -a 1 -x {1.0 5.0 510 ------- null} - -t 2.0125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 547 -a 1 -x {1.0 5.0 510 ------- null} h -t 2.0125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 547 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.01256 -s 3 -d 5 -p cbr -e 210 -c 1 -i 495 -a 1 -x {1.0 5.0 462 ------- null} r -t 2.01296 -s 2 -d 3 -p cbr -e 210 -c 1 -i 513 -a 1 -x {1.0 5.0 478 ------- null} + -t 2.01296 -s 3 -d 5 -p cbr -e 210 -c 1 -i 513 -a 1 -x {1.0 5.0 478 ------- null} - -t 2.01296 -s 3 -d 5 -p cbr -e 210 -c 1 -i 513 -a 1 -x {1.0 5.0 478 ------- null} h -t 2.01296 -s 3 -d 5 -p cbr -e 210 -c 1 -i 513 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.01336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 532 -a 1 -x {1.0 5.0 496 ------- null} + -t 2.01336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 532 -a 1 -x {1.0 5.0 496 ------- null} - -t 2.01336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 530 -a 1 -x {1.0 5.0 494 ------- null} h -t 2.01336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 530 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.01592 -s 3 -d 5 -p cbr -e 210 -c 1 -i 496 -a 1 -x {1.0 5.0 463 ------- null} + -t 2.01625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 548 -a 1 -x {1.0 5.0 511 ------- null} - -t 2.01625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 548 -a 1 -x {1.0 5.0 511 ------- null} h -t 2.01625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 548 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.01632 -s 2 -d 3 -p cbr -e 210 -c 1 -i 514 -a 1 -x {1.0 5.0 479 ------- null} + -t 2.01632 -s 3 -d 5 -p cbr -e 210 -c 1 -i 514 -a 1 -x {1.0 5.0 479 ------- null} - -t 2.01632 -s 3 -d 5 -p cbr -e 210 -c 1 -i 514 -a 1 -x {1.0 5.0 479 ------- null} h -t 2.01632 -s 3 -d 5 -p cbr -e 210 -c 1 -i 514 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.01672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 531 -a 1 -x {1.0 5.0 495 ------- null} h -t 2.01672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 531 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.01711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 533 -a 1 -x {1.0 5.0 497 ------- null} + -t 2.01711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 533 -a 1 -x {1.0 5.0 497 ------- null} r -t 2.01928 -s 3 -d 5 -p cbr -e 210 -c 1 -i 497 -a 1 -x {1.0 5.0 464 ------- null} r -t 2.01968 -s 2 -d 3 -p cbr -e 210 -c 1 -i 515 -a 1 -x {1.0 5.0 480 ------- null} + -t 2.01968 -s 3 -d 5 -p cbr -e 210 -c 1 -i 515 -a 1 -x {1.0 5.0 480 ------- null} - -t 2.01968 -s 3 -d 5 -p cbr -e 210 -c 1 -i 515 -a 1 -x {1.0 5.0 480 ------- null} h -t 2.01968 -s 3 -d 5 -p cbr -e 210 -c 1 -i 515 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.02 -s 1 -d 2 -p cbr -e 210 -c 1 -i 549 -a 1 -x {1.0 5.0 512 ------- null} - -t 2.02 -s 1 -d 2 -p cbr -e 210 -c 1 -i 549 -a 1 -x {1.0 5.0 512 ------- null} h -t 2.02 -s 1 -d 2 -p cbr -e 210 -c 1 -i 549 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.02008 -s 2 -d 3 -p cbr -e 210 -c 1 -i 532 -a 1 -x {1.0 5.0 496 ------- null} h -t 2.02008 -s 2 -d 3 -p cbr -e 210 -c 1 -i 532 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.02086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 534 -a 1 -x {1.0 5.0 498 ------- null} + -t 2.02086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 534 -a 1 -x {1.0 5.0 498 ------- null} r -t 2.02264 -s 3 -d 5 -p cbr -e 210 -c 1 -i 498 -a 1 -x {1.0 5.0 465 ------- null} r -t 2.02304 -s 2 -d 3 -p cbr -e 210 -c 1 -i 516 -a 1 -x {1.0 5.0 481 ------- null} + -t 2.02304 -s 3 -d 5 -p cbr -e 210 -c 1 -i 516 -a 1 -x {1.0 5.0 481 ------- null} - -t 2.02304 -s 3 -d 5 -p cbr -e 210 -c 1 -i 516 -a 1 -x {1.0 5.0 481 ------- null} h -t 2.02304 -s 3 -d 5 -p cbr -e 210 -c 1 -i 516 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.02344 -s 2 -d 3 -p cbr -e 210 -c 1 -i 533 -a 1 -x {1.0 5.0 497 ------- null} h -t 2.02344 -s 2 -d 3 -p cbr -e 210 -c 1 -i 533 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.02375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 550 -a 1 -x {1.0 5.0 513 ------- null} - -t 2.02375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 550 -a 1 -x {1.0 5.0 513 ------- null} h -t 2.02375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 550 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.02461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 535 -a 1 -x {1.0 5.0 499 ------- null} + -t 2.02461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 535 -a 1 -x {1.0 5.0 499 ------- null} r -t 2.026 -s 3 -d 5 -p cbr -e 210 -c 1 -i 499 -a 1 -x {1.0 5.0 466 ------- null} r -t 2.0264 -s 2 -d 3 -p cbr -e 210 -c 1 -i 517 -a 1 -x {1.0 5.0 482 ------- null} + -t 2.0264 -s 3 -d 5 -p cbr -e 210 -c 1 -i 517 -a 1 -x {1.0 5.0 482 ------- null} - -t 2.0264 -s 3 -d 5 -p cbr -e 210 -c 1 -i 517 -a 1 -x {1.0 5.0 482 ------- null} h -t 2.0264 -s 3 -d 5 -p cbr -e 210 -c 1 -i 517 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.0268 -s 2 -d 3 -p cbr -e 210 -c 1 -i 534 -a 1 -x {1.0 5.0 498 ------- null} h -t 2.0268 -s 2 -d 3 -p cbr -e 210 -c 1 -i 534 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.0275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 551 -a 1 -x {1.0 5.0 514 ------- null} - -t 2.0275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 551 -a 1 -x {1.0 5.0 514 ------- null} h -t 2.0275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 551 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.02836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 536 -a 1 -x {1.0 5.0 500 ------- null} + -t 2.02836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 536 -a 1 -x {1.0 5.0 500 ------- null} r -t 2.02936 -s 3 -d 5 -p cbr -e 210 -c 1 -i 501 -a 1 -x {1.0 5.0 467 ------- null} r -t 2.02976 -s 2 -d 3 -p cbr -e 210 -c 1 -i 519 -a 1 -x {1.0 5.0 483 ------- null} + -t 2.02976 -s 3 -d 5 -p cbr -e 210 -c 1 -i 519 -a 1 -x {1.0 5.0 483 ------- null} - -t 2.02976 -s 3 -d 5 -p cbr -e 210 -c 1 -i 519 -a 1 -x {1.0 5.0 483 ------- null} h -t 2.02976 -s 3 -d 5 -p cbr -e 210 -c 1 -i 519 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.03008 -s 2 -d 0 -p ack -e 40 -c 0 -i 509 -a 0 -x {4.0 0.0 12 ------- null} + -t 2.03008 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {0.0 4.0 16 ------- null} - -t 2.03008 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {0.0 4.0 16 ------- null} h -t 2.03008 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {0.0 4.0 -1 ------- null} - -t 2.03016 -s 2 -d 3 -p cbr -e 210 -c 1 -i 535 -a 1 -x {1.0 5.0 499 ------- null} h -t 2.03016 -s 2 -d 3 -p cbr -e 210 -c 1 -i 535 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.03125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 553 -a 1 -x {1.0 5.0 515 ------- null} - -t 2.03125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 553 -a 1 -x {1.0 5.0 515 ------- null} h -t 2.03125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 553 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.03211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 537 -a 1 -x {1.0 5.0 501 ------- null} + -t 2.03211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 537 -a 1 -x {1.0 5.0 501 ------- null} r -t 2.03272 -s 3 -d 5 -p cbr -e 210 -c 1 -i 502 -a 1 -x {1.0 5.0 468 ------- null} r -t 2.03312 -s 2 -d 3 -p cbr -e 210 -c 1 -i 520 -a 1 -x {1.0 5.0 484 ------- null} + -t 2.03312 -s 3 -d 5 -p cbr -e 210 -c 1 -i 520 -a 1 -x {1.0 5.0 484 ------- null} - -t 2.03312 -s 3 -d 5 -p cbr -e 210 -c 1 -i 520 -a 1 -x {1.0 5.0 484 ------- null} h -t 2.03312 -s 3 -d 5 -p cbr -e 210 -c 1 -i 520 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.03352 -s 2 -d 3 -p cbr -e 210 -c 1 -i 536 -a 1 -x {1.0 5.0 500 ------- null} h -t 2.03352 -s 2 -d 3 -p cbr -e 210 -c 1 -i 536 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.035 -s 1 -d 2 -p cbr -e 210 -c 1 -i 554 -a 1 -x {1.0 5.0 516 ------- null} - -t 2.035 -s 1 -d 2 -p cbr -e 210 -c 1 -i 554 -a 1 -x {1.0 5.0 516 ------- null} h -t 2.035 -s 1 -d 2 -p cbr -e 210 -c 1 -i 554 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.03586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 538 -a 1 -x {1.0 5.0 502 ------- null} + -t 2.03586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 538 -a 1 -x {1.0 5.0 502 ------- null} r -t 2.03608 -s 3 -d 5 -p cbr -e 210 -c 1 -i 503 -a 1 -x {1.0 5.0 469 ------- null} r -t 2.03648 -s 2 -d 3 -p cbr -e 210 -c 1 -i 521 -a 1 -x {1.0 5.0 485 ------- null} + -t 2.03648 -s 3 -d 5 -p cbr -e 210 -c 1 -i 521 -a 1 -x {1.0 5.0 485 ------- null} - -t 2.03648 -s 3 -d 5 -p cbr -e 210 -c 1 -i 521 -a 1 -x {1.0 5.0 485 ------- null} h -t 2.03648 -s 3 -d 5 -p cbr -e 210 -c 1 -i 521 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.03688 -s 2 -d 3 -p cbr -e 210 -c 1 -i 537 -a 1 -x {1.0 5.0 501 ------- null} h -t 2.03688 -s 2 -d 3 -p cbr -e 210 -c 1 -i 537 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.03875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 555 -a 1 -x {1.0 5.0 517 ------- null} - -t 2.03875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 555 -a 1 -x {1.0 5.0 517 ------- null} h -t 2.03875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 555 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.03944 -s 3 -d 5 -p cbr -e 210 -c 1 -i 504 -a 1 -x {1.0 5.0 470 ------- null} r -t 2.03961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 539 -a 1 -x {1.0 5.0 503 ------- null} + -t 2.03961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 539 -a 1 -x {1.0 5.0 503 ------- null} r -t 2.03984 -s 2 -d 3 -p cbr -e 210 -c 1 -i 522 -a 1 -x {1.0 5.0 486 ------- null} + -t 2.03984 -s 3 -d 5 -p cbr -e 210 -c 1 -i 522 -a 1 -x {1.0 5.0 486 ------- null} - -t 2.03984 -s 3 -d 5 -p cbr -e 210 -c 1 -i 522 -a 1 -x {1.0 5.0 486 ------- null} h -t 2.03984 -s 3 -d 5 -p cbr -e 210 -c 1 -i 522 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.04024 -s 2 -d 3 -p cbr -e 210 -c 1 -i 538 -a 1 -x {1.0 5.0 502 ------- null} h -t 2.04024 -s 2 -d 3 -p cbr -e 210 -c 1 -i 538 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.0425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 556 -a 1 -x {1.0 5.0 518 ------- null} - -t 2.0425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 556 -a 1 -x {1.0 5.0 518 ------- null} h -t 2.0425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 556 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.0428 -s 3 -d 5 -p cbr -e 210 -c 1 -i 505 -a 1 -x {1.0 5.0 471 ------- null} r -t 2.0432 -s 2 -d 3 -p cbr -e 210 -c 1 -i 523 -a 1 -x {1.0 5.0 487 ------- null} + -t 2.0432 -s 3 -d 5 -p cbr -e 210 -c 1 -i 523 -a 1 -x {1.0 5.0 487 ------- null} - -t 2.0432 -s 3 -d 5 -p cbr -e 210 -c 1 -i 523 -a 1 -x {1.0 5.0 487 ------- null} h -t 2.0432 -s 3 -d 5 -p cbr -e 210 -c 1 -i 523 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.04336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 540 -a 1 -x {1.0 5.0 504 ------- null} + -t 2.04336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 540 -a 1 -x {1.0 5.0 504 ------- null} - -t 2.0436 -s 2 -d 3 -p cbr -e 210 -c 1 -i 539 -a 1 -x {1.0 5.0 503 ------- null} h -t 2.0436 -s 2 -d 3 -p cbr -e 210 -c 1 -i 539 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.04616 -s 3 -d 5 -p cbr -e 210 -c 1 -i 506 -a 1 -x {1.0 5.0 472 ------- null} + -t 2.04625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 557 -a 1 -x {1.0 5.0 519 ------- null} - -t 2.04625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 557 -a 1 -x {1.0 5.0 519 ------- null} h -t 2.04625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 557 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.04656 -s 2 -d 3 -p cbr -e 210 -c 1 -i 524 -a 1 -x {1.0 5.0 488 ------- null} + -t 2.04656 -s 3 -d 5 -p cbr -e 210 -c 1 -i 524 -a 1 -x {1.0 5.0 488 ------- null} - -t 2.04656 -s 3 -d 5 -p cbr -e 210 -c 1 -i 524 -a 1 -x {1.0 5.0 488 ------- null} h -t 2.04656 -s 3 -d 5 -p cbr -e 210 -c 1 -i 524 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.04696 -s 2 -d 3 -p cbr -e 210 -c 1 -i 540 -a 1 -x {1.0 5.0 504 ------- null} h -t 2.04696 -s 2 -d 3 -p cbr -e 210 -c 1 -i 540 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.04711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 541 -a 1 -x {1.0 5.0 505 ------- null} + -t 2.04711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 541 -a 1 -x {1.0 5.0 505 ------- null} r -t 2.04952 -s 3 -d 5 -p cbr -e 210 -c 1 -i 507 -a 1 -x {1.0 5.0 473 ------- null} r -t 2.04992 -s 2 -d 3 -p cbr -e 210 -c 1 -i 525 -a 1 -x {1.0 5.0 489 ------- null} + -t 2.04992 -s 3 -d 5 -p cbr -e 210 -c 1 -i 525 -a 1 -x {1.0 5.0 489 ------- null} - -t 2.04992 -s 3 -d 5 -p cbr -e 210 -c 1 -i 525 -a 1 -x {1.0 5.0 489 ------- null} h -t 2.04992 -s 3 -d 5 -p cbr -e 210 -c 1 -i 525 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.05 -s 1 -d 2 -p cbr -e 210 -c 1 -i 558 -a 1 -x {1.0 5.0 520 ------- null} - -t 2.05 -s 1 -d 2 -p cbr -e 210 -c 1 -i 558 -a 1 -x {1.0 5.0 520 ------- null} h -t 2.05 -s 1 -d 2 -p cbr -e 210 -c 1 -i 558 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.05032 -s 2 -d 3 -p cbr -e 210 -c 1 -i 541 -a 1 -x {1.0 5.0 505 ------- null} h -t 2.05032 -s 2 -d 3 -p cbr -e 210 -c 1 -i 541 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.05086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 542 -a 1 -x {1.0 5.0 506 ------- null} + -t 2.05086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 542 -a 1 -x {1.0 5.0 506 ------- null} r -t 2.05288 -s 3 -d 5 -p cbr -e 210 -c 1 -i 508 -a 1 -x {1.0 5.0 474 ------- null} r -t 2.05328 -s 2 -d 3 -p cbr -e 210 -c 1 -i 526 -a 1 -x {1.0 5.0 490 ------- null} + -t 2.05328 -s 3 -d 5 -p cbr -e 210 -c 1 -i 526 -a 1 -x {1.0 5.0 490 ------- null} - -t 2.05328 -s 3 -d 5 -p cbr -e 210 -c 1 -i 526 -a 1 -x {1.0 5.0 490 ------- null} h -t 2.05328 -s 3 -d 5 -p cbr -e 210 -c 1 -i 526 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.05368 -s 2 -d 3 -p cbr -e 210 -c 1 -i 542 -a 1 -x {1.0 5.0 506 ------- null} h -t 2.05368 -s 2 -d 3 -p cbr -e 210 -c 1 -i 542 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.05375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 559 -a 1 -x {1.0 5.0 521 ------- null} - -t 2.05375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 559 -a 1 -x {1.0 5.0 521 ------- null} h -t 2.05375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 559 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.05461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 544 -a 1 -x {1.0 5.0 507 ------- null} + -t 2.05461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 544 -a 1 -x {1.0 5.0 507 ------- null} r -t 2.05624 -s 3 -d 5 -p cbr -e 210 -c 1 -i 510 -a 1 -x {1.0 5.0 475 ------- null} r -t 2.05664 -s 2 -d 3 -p cbr -e 210 -c 1 -i 527 -a 1 -x {1.0 5.0 491 ------- null} + -t 2.05664 -s 3 -d 5 -p cbr -e 210 -c 1 -i 527 -a 1 -x {1.0 5.0 491 ------- null} - -t 2.05664 -s 3 -d 5 -p cbr -e 210 -c 1 -i 527 -a 1 -x {1.0 5.0 491 ------- null} h -t 2.05664 -s 3 -d 5 -p cbr -e 210 -c 1 -i 527 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.05704 -s 2 -d 3 -p cbr -e 210 -c 1 -i 544 -a 1 -x {1.0 5.0 507 ------- null} h -t 2.05704 -s 2 -d 3 -p cbr -e 210 -c 1 -i 544 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.0575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 560 -a 1 -x {1.0 5.0 522 ------- null} - -t 2.0575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 560 -a 1 -x {1.0 5.0 522 ------- null} h -t 2.0575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 560 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.05836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 545 -a 1 -x {1.0 5.0 508 ------- null} + -t 2.05836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 545 -a 1 -x {1.0 5.0 508 ------- null} r -t 2.05952 -s 2 -d 0 -p ack -e 40 -c 0 -i 518 -a 0 -x {4.0 0.0 13 ------- null} + -t 2.05952 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {0.0 4.0 17 ------- null} - -t 2.05952 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {0.0 4.0 17 ------- null} h -t 2.05952 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {0.0 4.0 -1 ------- null} r -t 2.0596 -s 3 -d 5 -p cbr -e 210 -c 1 -i 511 -a 1 -x {1.0 5.0 476 ------- null} r -t 2.06 -s 2 -d 3 -p cbr -e 210 -c 1 -i 528 -a 1 -x {1.0 5.0 492 ------- null} + -t 2.06 -s 3 -d 5 -p cbr -e 210 -c 1 -i 528 -a 1 -x {1.0 5.0 492 ------- null} - -t 2.06 -s 3 -d 5 -p cbr -e 210 -c 1 -i 528 -a 1 -x {1.0 5.0 492 ------- null} h -t 2.06 -s 3 -d 5 -p cbr -e 210 -c 1 -i 528 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.0604 -s 2 -d 3 -p cbr -e 210 -c 1 -i 545 -a 1 -x {1.0 5.0 508 ------- null} h -t 2.0604 -s 2 -d 3 -p cbr -e 210 -c 1 -i 545 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.06125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 562 -a 1 -x {1.0 5.0 523 ------- null} - -t 2.06125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 562 -a 1 -x {1.0 5.0 523 ------- null} h -t 2.06125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 562 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.06211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 546 -a 1 -x {1.0 5.0 509 ------- null} + -t 2.06211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 546 -a 1 -x {1.0 5.0 509 ------- null} r -t 2.06296 -s 3 -d 5 -p cbr -e 210 -c 1 -i 512 -a 1 -x {1.0 5.0 477 ------- null} r -t 2.06336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 529 -a 1 -x {1.0 5.0 493 ------- null} + -t 2.06336 -s 3 -d 5 -p cbr -e 210 -c 1 -i 529 -a 1 -x {1.0 5.0 493 ------- null} - -t 2.06336 -s 3 -d 5 -p cbr -e 210 -c 1 -i 529 -a 1 -x {1.0 5.0 493 ------- null} h -t 2.06336 -s 3 -d 5 -p cbr -e 210 -c 1 -i 529 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.06376 -s 2 -d 3 -p cbr -e 210 -c 1 -i 546 -a 1 -x {1.0 5.0 509 ------- null} h -t 2.06376 -s 2 -d 3 -p cbr -e 210 -c 1 -i 546 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.065 -s 1 -d 2 -p cbr -e 210 -c 1 -i 563 -a 1 -x {1.0 5.0 524 ------- null} - -t 2.065 -s 1 -d 2 -p cbr -e 210 -c 1 -i 563 -a 1 -x {1.0 5.0 524 ------- null} h -t 2.065 -s 1 -d 2 -p cbr -e 210 -c 1 -i 563 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.06586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 547 -a 1 -x {1.0 5.0 510 ------- null} + -t 2.06586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 547 -a 1 -x {1.0 5.0 510 ------- null} r -t 2.06632 -s 3 -d 5 -p cbr -e 210 -c 1 -i 513 -a 1 -x {1.0 5.0 478 ------- null} r -t 2.06664 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {0.0 4.0 15 ------- null} + -t 2.06664 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {0.0 4.0 15 ------- null} r -t 2.06672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 530 -a 1 -x {1.0 5.0 494 ------- null} + -t 2.06672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 530 -a 1 -x {1.0 5.0 494 ------- null} - -t 2.06672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 530 -a 1 -x {1.0 5.0 494 ------- null} h -t 2.06672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 530 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.06712 -s 2 -d 3 -p cbr -e 210 -c 1 -i 547 -a 1 -x {1.0 5.0 510 ------- null} h -t 2.06712 -s 2 -d 3 -p cbr -e 210 -c 1 -i 547 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.06875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 564 -a 1 -x {1.0 5.0 525 ------- null} - -t 2.06875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 564 -a 1 -x {1.0 5.0 525 ------- null} h -t 2.06875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 564 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.06961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 548 -a 1 -x {1.0 5.0 511 ------- null} + -t 2.06961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 548 -a 1 -x {1.0 5.0 511 ------- null} r -t 2.06968 -s 3 -d 5 -p cbr -e 210 -c 1 -i 514 -a 1 -x {1.0 5.0 479 ------- null} r -t 2.07008 -s 2 -d 3 -p cbr -e 210 -c 1 -i 531 -a 1 -x {1.0 5.0 495 ------- null} + -t 2.07008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 531 -a 1 -x {1.0 5.0 495 ------- null} - -t 2.07008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 531 -a 1 -x {1.0 5.0 495 ------- null} h -t 2.07008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 531 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.07048 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {0.0 4.0 15 ------- null} h -t 2.07048 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {0.0 4.0 -1 ------- null} + -t 2.0725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 565 -a 1 -x {1.0 5.0 526 ------- null} - -t 2.0725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 565 -a 1 -x {1.0 5.0 526 ------- null} h -t 2.0725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 565 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.07304 -s 3 -d 5 -p cbr -e 210 -c 1 -i 515 -a 1 -x {1.0 5.0 480 ------- null} r -t 2.07336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 549 -a 1 -x {1.0 5.0 512 ------- null} + -t 2.07336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 549 -a 1 -x {1.0 5.0 512 ------- null} r -t 2.07344 -s 2 -d 3 -p cbr -e 210 -c 1 -i 532 -a 1 -x {1.0 5.0 496 ------- null} + -t 2.07344 -s 3 -d 5 -p cbr -e 210 -c 1 -i 532 -a 1 -x {1.0 5.0 496 ------- null} - -t 2.07344 -s 3 -d 5 -p cbr -e 210 -c 1 -i 532 -a 1 -x {1.0 5.0 496 ------- null} h -t 2.07344 -s 3 -d 5 -p cbr -e 210 -c 1 -i 532 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.07625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 566 -a 1 -x {1.0 5.0 527 ------- null} - -t 2.07625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 566 -a 1 -x {1.0 5.0 527 ------- null} h -t 2.07625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 566 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.0764 -s 3 -d 5 -p cbr -e 210 -c 1 -i 516 -a 1 -x {1.0 5.0 481 ------- null} r -t 2.0768 -s 2 -d 3 -p cbr -e 210 -c 1 -i 533 -a 1 -x {1.0 5.0 497 ------- null} + -t 2.0768 -s 3 -d 5 -p cbr -e 210 -c 1 -i 533 -a 1 -x {1.0 5.0 497 ------- null} - -t 2.0768 -s 3 -d 5 -p cbr -e 210 -c 1 -i 533 -a 1 -x {1.0 5.0 497 ------- null} h -t 2.0768 -s 3 -d 5 -p cbr -e 210 -c 1 -i 533 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.07711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 550 -a 1 -x {1.0 5.0 513 ------- null} + -t 2.07711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 550 -a 1 -x {1.0 5.0 513 ------- null} r -t 2.07976 -s 3 -d 5 -p cbr -e 210 -c 1 -i 517 -a 1 -x {1.0 5.0 482 ------- null} + -t 2.08 -s 1 -d 2 -p cbr -e 210 -c 1 -i 567 -a 1 -x {1.0 5.0 528 ------- null} - -t 2.08 -s 1 -d 2 -p cbr -e 210 -c 1 -i 567 -a 1 -x {1.0 5.0 528 ------- null} h -t 2.08 -s 1 -d 2 -p cbr -e 210 -c 1 -i 567 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.08016 -s 2 -d 3 -p cbr -e 210 -c 1 -i 534 -a 1 -x {1.0 5.0 498 ------- null} + -t 2.08016 -s 3 -d 5 -p cbr -e 210 -c 1 -i 534 -a 1 -x {1.0 5.0 498 ------- null} - -t 2.08016 -s 3 -d 5 -p cbr -e 210 -c 1 -i 534 -a 1 -x {1.0 5.0 498 ------- null} h -t 2.08016 -s 3 -d 5 -p cbr -e 210 -c 1 -i 534 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.08086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 551 -a 1 -x {1.0 5.0 514 ------- null} + -t 2.08086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 551 -a 1 -x {1.0 5.0 514 ------- null} r -t 2.08312 -s 3 -d 5 -p cbr -e 210 -c 1 -i 519 -a 1 -x {1.0 5.0 483 ------- null} r -t 2.08352 -s 2 -d 3 -p cbr -e 210 -c 1 -i 535 -a 1 -x {1.0 5.0 499 ------- null} + -t 2.08352 -s 3 -d 5 -p cbr -e 210 -c 1 -i 535 -a 1 -x {1.0 5.0 499 ------- null} - -t 2.08352 -s 3 -d 5 -p cbr -e 210 -c 1 -i 535 -a 1 -x {1.0 5.0 499 ------- null} h -t 2.08352 -s 3 -d 5 -p cbr -e 210 -c 1 -i 535 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.08375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 568 -a 1 -x {1.0 5.0 529 ------- null} - -t 2.08375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 568 -a 1 -x {1.0 5.0 529 ------- null} h -t 2.08375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 568 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.08461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 553 -a 1 -x {1.0 5.0 515 ------- null} + -t 2.08461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 553 -a 1 -x {1.0 5.0 515 ------- null} - -t 2.08648 -s 2 -d 3 -p cbr -e 210 -c 1 -i 548 -a 1 -x {1.0 5.0 511 ------- null} h -t 2.08648 -s 2 -d 3 -p cbr -e 210 -c 1 -i 548 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.08648 -s 3 -d 5 -p cbr -e 210 -c 1 -i 520 -a 1 -x {1.0 5.0 484 ------- null} r -t 2.08688 -s 2 -d 3 -p cbr -e 210 -c 1 -i 536 -a 1 -x {1.0 5.0 500 ------- null} + -t 2.08688 -s 3 -d 5 -p cbr -e 210 -c 1 -i 536 -a 1 -x {1.0 5.0 500 ------- null} - -t 2.08688 -s 3 -d 5 -p cbr -e 210 -c 1 -i 536 -a 1 -x {1.0 5.0 500 ------- null} h -t 2.08688 -s 3 -d 5 -p cbr -e 210 -c 1 -i 536 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.0875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 569 -a 1 -x {1.0 5.0 530 ------- null} - -t 2.0875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 569 -a 1 -x {1.0 5.0 530 ------- null} h -t 2.0875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 569 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.08836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 554 -a 1 -x {1.0 5.0 516 ------- null} + -t 2.08836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 554 -a 1 -x {1.0 5.0 516 ------- null} - -t 2.08984 -s 2 -d 3 -p cbr -e 210 -c 1 -i 549 -a 1 -x {1.0 5.0 512 ------- null} h -t 2.08984 -s 2 -d 3 -p cbr -e 210 -c 1 -i 549 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.08984 -s 3 -d 5 -p cbr -e 210 -c 1 -i 521 -a 1 -x {1.0 5.0 485 ------- null} r -t 2.09024 -s 2 -d 3 -p cbr -e 210 -c 1 -i 537 -a 1 -x {1.0 5.0 501 ------- null} + -t 2.09024 -s 3 -d 5 -p cbr -e 210 -c 1 -i 537 -a 1 -x {1.0 5.0 501 ------- null} - -t 2.09024 -s 3 -d 5 -p cbr -e 210 -c 1 -i 537 -a 1 -x {1.0 5.0 501 ------- null} h -t 2.09024 -s 3 -d 5 -p cbr -e 210 -c 1 -i 537 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.09125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 570 -a 1 -x {1.0 5.0 531 ------- null} - -t 2.09125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 570 -a 1 -x {1.0 5.0 531 ------- null} h -t 2.09125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 570 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.09211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 555 -a 1 -x {1.0 5.0 517 ------- null} + -t 2.09211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 555 -a 1 -x {1.0 5.0 517 ------- null} - -t 2.0932 -s 2 -d 3 -p cbr -e 210 -c 1 -i 550 -a 1 -x {1.0 5.0 513 ------- null} h -t 2.0932 -s 2 -d 3 -p cbr -e 210 -c 1 -i 550 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.0932 -s 3 -d 5 -p cbr -e 210 -c 1 -i 522 -a 1 -x {1.0 5.0 486 ------- null} r -t 2.0936 -s 2 -d 3 -p cbr -e 210 -c 1 -i 538 -a 1 -x {1.0 5.0 502 ------- null} + -t 2.0936 -s 3 -d 5 -p cbr -e 210 -c 1 -i 538 -a 1 -x {1.0 5.0 502 ------- null} - -t 2.0936 -s 3 -d 5 -p cbr -e 210 -c 1 -i 538 -a 1 -x {1.0 5.0 502 ------- null} h -t 2.0936 -s 3 -d 5 -p cbr -e 210 -c 1 -i 538 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.095 -s 1 -d 2 -p cbr -e 210 -c 1 -i 571 -a 1 -x {1.0 5.0 532 ------- null} - -t 2.095 -s 1 -d 2 -p cbr -e 210 -c 1 -i 571 -a 1 -x {1.0 5.0 532 ------- null} h -t 2.095 -s 1 -d 2 -p cbr -e 210 -c 1 -i 571 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.09586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 556 -a 1 -x {1.0 5.0 518 ------- null} + -t 2.09586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 556 -a 1 -x {1.0 5.0 518 ------- null} r -t 2.09608 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {0.0 4.0 16 ------- null} + -t 2.09608 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {0.0 4.0 16 ------- null} - -t 2.09656 -s 2 -d 3 -p cbr -e 210 -c 1 -i 551 -a 1 -x {1.0 5.0 514 ------- null} h -t 2.09656 -s 2 -d 3 -p cbr -e 210 -c 1 -i 551 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.09656 -s 3 -d 5 -p cbr -e 210 -c 1 -i 523 -a 1 -x {1.0 5.0 487 ------- null} r -t 2.09696 -s 2 -d 3 -p cbr -e 210 -c 1 -i 539 -a 1 -x {1.0 5.0 503 ------- null} + -t 2.09696 -s 3 -d 5 -p cbr -e 210 -c 1 -i 539 -a 1 -x {1.0 5.0 503 ------- null} - -t 2.09696 -s 3 -d 5 -p cbr -e 210 -c 1 -i 539 -a 1 -x {1.0 5.0 503 ------- null} h -t 2.09696 -s 3 -d 5 -p cbr -e 210 -c 1 -i 539 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.09875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 572 -a 1 -x {1.0 5.0 533 ------- null} - -t 2.09875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 572 -a 1 -x {1.0 5.0 533 ------- null} h -t 2.09875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 572 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.09961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 557 -a 1 -x {1.0 5.0 519 ------- null} + -t 2.09961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 557 -a 1 -x {1.0 5.0 519 ------- null} - -t 2.09992 -s 2 -d 3 -p cbr -e 210 -c 1 -i 553 -a 1 -x {1.0 5.0 515 ------- null} h -t 2.09992 -s 2 -d 3 -p cbr -e 210 -c 1 -i 553 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.09992 -s 3 -d 5 -p cbr -e 210 -c 1 -i 524 -a 1 -x {1.0 5.0 488 ------- null} r -t 2.10032 -s 2 -d 3 -p cbr -e 210 -c 1 -i 540 -a 1 -x {1.0 5.0 504 ------- null} + -t 2.10032 -s 3 -d 5 -p cbr -e 210 -c 1 -i 540 -a 1 -x {1.0 5.0 504 ------- null} - -t 2.10032 -s 3 -d 5 -p cbr -e 210 -c 1 -i 540 -a 1 -x {1.0 5.0 504 ------- null} h -t 2.10032 -s 3 -d 5 -p cbr -e 210 -c 1 -i 540 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.1025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 573 -a 1 -x {1.0 5.0 534 ------- null} - -t 2.1025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 573 -a 1 -x {1.0 5.0 534 ------- null} h -t 2.1025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 573 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.10328 -s 2 -d 3 -p cbr -e 210 -c 1 -i 554 -a 1 -x {1.0 5.0 516 ------- null} h -t 2.10328 -s 2 -d 3 -p cbr -e 210 -c 1 -i 554 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.10328 -s 3 -d 5 -p cbr -e 210 -c 1 -i 525 -a 1 -x {1.0 5.0 489 ------- null} r -t 2.10336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 558 -a 1 -x {1.0 5.0 520 ------- null} + -t 2.10336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 558 -a 1 -x {1.0 5.0 520 ------- null} r -t 2.10368 -s 2 -d 3 -p cbr -e 210 -c 1 -i 541 -a 1 -x {1.0 5.0 505 ------- null} + -t 2.10368 -s 3 -d 5 -p cbr -e 210 -c 1 -i 541 -a 1 -x {1.0 5.0 505 ------- null} - -t 2.10368 -s 3 -d 5 -p cbr -e 210 -c 1 -i 541 -a 1 -x {1.0 5.0 505 ------- null} h -t 2.10368 -s 3 -d 5 -p cbr -e 210 -c 1 -i 541 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.10625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 574 -a 1 -x {1.0 5.0 535 ------- null} - -t 2.10625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 574 -a 1 -x {1.0 5.0 535 ------- null} h -t 2.10625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 574 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.10664 -s 2 -d 3 -p cbr -e 210 -c 1 -i 555 -a 1 -x {1.0 5.0 517 ------- null} h -t 2.10664 -s 2 -d 3 -p cbr -e 210 -c 1 -i 555 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.10664 -s 3 -d 5 -p cbr -e 210 -c 1 -i 526 -a 1 -x {1.0 5.0 490 ------- null} r -t 2.10704 -s 2 -d 3 -p cbr -e 210 -c 1 -i 542 -a 1 -x {1.0 5.0 506 ------- null} + -t 2.10704 -s 3 -d 5 -p cbr -e 210 -c 1 -i 542 -a 1 -x {1.0 5.0 506 ------- null} - -t 2.10704 -s 3 -d 5 -p cbr -e 210 -c 1 -i 542 -a 1 -x {1.0 5.0 506 ------- null} h -t 2.10704 -s 3 -d 5 -p cbr -e 210 -c 1 -i 542 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.10711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 559 -a 1 -x {1.0 5.0 521 ------- null} + -t 2.10711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 559 -a 1 -x {1.0 5.0 521 ------- null} + -t 2.11 -s 1 -d 2 -p cbr -e 210 -c 1 -i 575 -a 1 -x {1.0 5.0 536 ------- null} - -t 2.11 -s 1 -d 2 -p cbr -e 210 -c 1 -i 575 -a 1 -x {1.0 5.0 536 ------- null} h -t 2.11 -s 1 -d 2 -p cbr -e 210 -c 1 -i 575 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.11 -s 2 -d 3 -p cbr -e 210 -c 1 -i 556 -a 1 -x {1.0 5.0 518 ------- null} h -t 2.11 -s 2 -d 3 -p cbr -e 210 -c 1 -i 556 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.11 -s 3 -d 5 -p cbr -e 210 -c 1 -i 527 -a 1 -x {1.0 5.0 491 ------- null} r -t 2.1104 -s 2 -d 3 -p cbr -e 210 -c 1 -i 544 -a 1 -x {1.0 5.0 507 ------- null} + -t 2.1104 -s 3 -d 5 -p cbr -e 210 -c 1 -i 544 -a 1 -x {1.0 5.0 507 ------- null} - -t 2.1104 -s 3 -d 5 -p cbr -e 210 -c 1 -i 544 -a 1 -x {1.0 5.0 507 ------- null} h -t 2.1104 -s 3 -d 5 -p cbr -e 210 -c 1 -i 544 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.11086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 560 -a 1 -x {1.0 5.0 522 ------- null} + -t 2.11086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 560 -a 1 -x {1.0 5.0 522 ------- null} - -t 2.11336 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {0.0 4.0 16 ------- null} h -t 2.11336 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {0.0 4.0 -1 ------- null} r -t 2.11336 -s 3 -d 5 -p cbr -e 210 -c 1 -i 528 -a 1 -x {1.0 5.0 492 ------- null} + -t 2.11375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 576 -a 1 -x {1.0 5.0 537 ------- null} - -t 2.11375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 576 -a 1 -x {1.0 5.0 537 ------- null} h -t 2.11375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 576 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.11376 -s 2 -d 3 -p cbr -e 210 -c 1 -i 545 -a 1 -x {1.0 5.0 508 ------- null} + -t 2.11376 -s 3 -d 5 -p cbr -e 210 -c 1 -i 545 -a 1 -x {1.0 5.0 508 ------- null} - -t 2.11376 -s 3 -d 5 -p cbr -e 210 -c 1 -i 545 -a 1 -x {1.0 5.0 508 ------- null} h -t 2.11376 -s 3 -d 5 -p cbr -e 210 -c 1 -i 545 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.11461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 562 -a 1 -x {1.0 5.0 523 ------- null} + -t 2.11461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 562 -a 1 -x {1.0 5.0 523 ------- null} r -t 2.11672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 529 -a 1 -x {1.0 5.0 493 ------- null} r -t 2.11712 -s 2 -d 3 -p cbr -e 210 -c 1 -i 546 -a 1 -x {1.0 5.0 509 ------- null} + -t 2.11712 -s 3 -d 5 -p cbr -e 210 -c 1 -i 546 -a 1 -x {1.0 5.0 509 ------- null} - -t 2.11712 -s 3 -d 5 -p cbr -e 210 -c 1 -i 546 -a 1 -x {1.0 5.0 509 ------- null} h -t 2.11712 -s 3 -d 5 -p cbr -e 210 -c 1 -i 546 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.1175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 577 -a 1 -x {1.0 5.0 538 ------- null} - -t 2.1175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 577 -a 1 -x {1.0 5.0 538 ------- null} h -t 2.1175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 577 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.11836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 563 -a 1 -x {1.0 5.0 524 ------- null} + -t 2.11836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 563 -a 1 -x {1.0 5.0 524 ------- null} r -t 2.12008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 530 -a 1 -x {1.0 5.0 494 ------- null} r -t 2.12048 -s 2 -d 3 -p cbr -e 210 -c 1 -i 547 -a 1 -x {1.0 5.0 510 ------- null} + -t 2.12048 -s 3 -d 5 -p cbr -e 210 -c 1 -i 547 -a 1 -x {1.0 5.0 510 ------- null} - -t 2.12048 -s 3 -d 5 -p cbr -e 210 -c 1 -i 547 -a 1 -x {1.0 5.0 510 ------- null} h -t 2.12048 -s 3 -d 5 -p cbr -e 210 -c 1 -i 547 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.12125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 578 -a 1 -x {1.0 5.0 539 ------- null} - -t 2.12125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 578 -a 1 -x {1.0 5.0 539 ------- null} h -t 2.12125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 578 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.12211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 564 -a 1 -x {1.0 5.0 525 ------- null} + -t 2.12211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 564 -a 1 -x {1.0 5.0 525 ------- null} r -t 2.12344 -s 3 -d 5 -p cbr -e 210 -c 1 -i 531 -a 1 -x {1.0 5.0 495 ------- null} + -t 2.125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 579 -a 1 -x {1.0 5.0 540 ------- null} - -t 2.125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 579 -a 1 -x {1.0 5.0 540 ------- null} h -t 2.125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 579 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.12552 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {0.0 4.0 17 ------- null} + -t 2.12552 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {0.0 4.0 17 ------- null} r -t 2.12586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 565 -a 1 -x {1.0 5.0 526 ------- null} + -t 2.12586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 565 -a 1 -x {1.0 5.0 526 ------- null} r -t 2.1268 -s 3 -d 5 -p cbr -e 210 -c 1 -i 532 -a 1 -x {1.0 5.0 496 ------- null} + -t 2.12875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 580 -a 1 -x {1.0 5.0 541 ------- null} - -t 2.12875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 580 -a 1 -x {1.0 5.0 541 ------- null} h -t 2.12875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 580 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.12936 -s 2 -d 3 -p cbr -e 210 -c 1 -i 557 -a 1 -x {1.0 5.0 519 ------- null} h -t 2.12936 -s 2 -d 3 -p cbr -e 210 -c 1 -i 557 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.12961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 566 -a 1 -x {1.0 5.0 527 ------- null} + -t 2.12961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 566 -a 1 -x {1.0 5.0 527 ------- null} r -t 2.13016 -s 3 -d 5 -p cbr -e 210 -c 1 -i 533 -a 1 -x {1.0 5.0 497 ------- null} + -t 2.1325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 581 -a 1 -x {1.0 5.0 542 ------- null} - -t 2.1325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 581 -a 1 -x {1.0 5.0 542 ------- null} h -t 2.1325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 581 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.13272 -s 2 -d 3 -p cbr -e 210 -c 1 -i 558 -a 1 -x {1.0 5.0 520 ------- null} h -t 2.13272 -s 2 -d 3 -p cbr -e 210 -c 1 -i 558 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.13336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 567 -a 1 -x {1.0 5.0 528 ------- null} + -t 2.13336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 567 -a 1 -x {1.0 5.0 528 ------- null} r -t 2.13352 -s 3 -d 5 -p cbr -e 210 -c 1 -i 534 -a 1 -x {1.0 5.0 498 ------- null} - -t 2.13608 -s 2 -d 3 -p cbr -e 210 -c 1 -i 559 -a 1 -x {1.0 5.0 521 ------- null} h -t 2.13608 -s 2 -d 3 -p cbr -e 210 -c 1 -i 559 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.13625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 582 -a 1 -x {1.0 5.0 543 ------- null} - -t 2.13625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 582 -a 1 -x {1.0 5.0 543 ------- null} h -t 2.13625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 582 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.13648 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {0.0 4.0 15 ------- null} + -t 2.13648 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {0.0 4.0 15 ------- null} - -t 2.13648 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {0.0 4.0 15 ------- null} h -t 2.13648 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {0.0 4.0 -1 ------- null} r -t 2.13688 -s 3 -d 5 -p cbr -e 210 -c 1 -i 535 -a 1 -x {1.0 5.0 499 ------- null} r -t 2.13711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 568 -a 1 -x {1.0 5.0 529 ------- null} + -t 2.13711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 568 -a 1 -x {1.0 5.0 529 ------- null} - -t 2.13944 -s 2 -d 3 -p cbr -e 210 -c 1 -i 560 -a 1 -x {1.0 5.0 522 ------- null} h -t 2.13944 -s 2 -d 3 -p cbr -e 210 -c 1 -i 560 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.13984 -s 2 -d 3 -p cbr -e 210 -c 1 -i 548 -a 1 -x {1.0 5.0 511 ------- null} + -t 2.13984 -s 3 -d 5 -p cbr -e 210 -c 1 -i 548 -a 1 -x {1.0 5.0 511 ------- null} - -t 2.13984 -s 3 -d 5 -p cbr -e 210 -c 1 -i 548 -a 1 -x {1.0 5.0 511 ------- null} h -t 2.13984 -s 3 -d 5 -p cbr -e 210 -c 1 -i 548 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.14 -s 1 -d 2 -p cbr -e 210 -c 1 -i 583 -a 1 -x {1.0 5.0 544 ------- null} - -t 2.14 -s 1 -d 2 -p cbr -e 210 -c 1 -i 583 -a 1 -x {1.0 5.0 544 ------- null} h -t 2.14 -s 1 -d 2 -p cbr -e 210 -c 1 -i 583 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.14024 -s 3 -d 5 -p cbr -e 210 -c 1 -i 536 -a 1 -x {1.0 5.0 500 ------- null} r -t 2.14086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 569 -a 1 -x {1.0 5.0 530 ------- null} + -t 2.14086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 569 -a 1 -x {1.0 5.0 530 ------- null} - -t 2.1428 -s 2 -d 3 -p cbr -e 210 -c 1 -i 562 -a 1 -x {1.0 5.0 523 ------- null} h -t 2.1428 -s 2 -d 3 -p cbr -e 210 -c 1 -i 562 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.1432 -s 2 -d 3 -p cbr -e 210 -c 1 -i 549 -a 1 -x {1.0 5.0 512 ------- null} + -t 2.1432 -s 3 -d 5 -p cbr -e 210 -c 1 -i 549 -a 1 -x {1.0 5.0 512 ------- null} - -t 2.1432 -s 3 -d 5 -p cbr -e 210 -c 1 -i 549 -a 1 -x {1.0 5.0 512 ------- null} h -t 2.1432 -s 3 -d 5 -p cbr -e 210 -c 1 -i 549 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.1436 -s 3 -d 5 -p cbr -e 210 -c 1 -i 537 -a 1 -x {1.0 5.0 501 ------- null} + -t 2.14375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 584 -a 1 -x {1.0 5.0 545 ------- null} - -t 2.14375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 584 -a 1 -x {1.0 5.0 545 ------- null} h -t 2.14375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 584 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.14461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 570 -a 1 -x {1.0 5.0 531 ------- null} + -t 2.14461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 570 -a 1 -x {1.0 5.0 531 ------- null} - -t 2.14616 -s 2 -d 3 -p cbr -e 210 -c 1 -i 563 -a 1 -x {1.0 5.0 524 ------- null} h -t 2.14616 -s 2 -d 3 -p cbr -e 210 -c 1 -i 563 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.14656 -s 2 -d 3 -p cbr -e 210 -c 1 -i 550 -a 1 -x {1.0 5.0 513 ------- null} + -t 2.14656 -s 3 -d 5 -p cbr -e 210 -c 1 -i 550 -a 1 -x {1.0 5.0 513 ------- null} - -t 2.14656 -s 3 -d 5 -p cbr -e 210 -c 1 -i 550 -a 1 -x {1.0 5.0 513 ------- null} h -t 2.14656 -s 3 -d 5 -p cbr -e 210 -c 1 -i 550 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.14696 -s 3 -d 5 -p cbr -e 210 -c 1 -i 538 -a 1 -x {1.0 5.0 502 ------- null} + -t 2.1475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 585 -a 1 -x {1.0 5.0 546 ------- null} - -t 2.1475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 585 -a 1 -x {1.0 5.0 546 ------- null} h -t 2.1475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 585 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.14836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 571 -a 1 -x {1.0 5.0 532 ------- null} + -t 2.14836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 571 -a 1 -x {1.0 5.0 532 ------- null} - -t 2.14952 -s 2 -d 3 -p cbr -e 210 -c 1 -i 564 -a 1 -x {1.0 5.0 525 ------- null} h -t 2.14952 -s 2 -d 3 -p cbr -e 210 -c 1 -i 564 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.14992 -s 2 -d 3 -p cbr -e 210 -c 1 -i 551 -a 1 -x {1.0 5.0 514 ------- null} + -t 2.14992 -s 3 -d 5 -p cbr -e 210 -c 1 -i 551 -a 1 -x {1.0 5.0 514 ------- null} - -t 2.14992 -s 3 -d 5 -p cbr -e 210 -c 1 -i 551 -a 1 -x {1.0 5.0 514 ------- null} h -t 2.14992 -s 3 -d 5 -p cbr -e 210 -c 1 -i 551 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.15032 -s 3 -d 5 -p cbr -e 210 -c 1 -i 539 -a 1 -x {1.0 5.0 503 ------- null} + -t 2.15125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 586 -a 1 -x {1.0 5.0 547 ------- null} - -t 2.15125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 586 -a 1 -x {1.0 5.0 547 ------- null} h -t 2.15125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 586 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.15211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 572 -a 1 -x {1.0 5.0 533 ------- null} + -t 2.15211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 572 -a 1 -x {1.0 5.0 533 ------- null} - -t 2.15288 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {0.0 4.0 17 ------- null} h -t 2.15288 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {0.0 4.0 -1 ------- null} r -t 2.15328 -s 2 -d 3 -p cbr -e 210 -c 1 -i 553 -a 1 -x {1.0 5.0 515 ------- null} + -t 2.15328 -s 3 -d 5 -p cbr -e 210 -c 1 -i 553 -a 1 -x {1.0 5.0 515 ------- null} - -t 2.15328 -s 3 -d 5 -p cbr -e 210 -c 1 -i 553 -a 1 -x {1.0 5.0 515 ------- null} h -t 2.15328 -s 3 -d 5 -p cbr -e 210 -c 1 -i 553 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.15368 -s 3 -d 5 -p cbr -e 210 -c 1 -i 540 -a 1 -x {1.0 5.0 504 ------- null} + -t 2.155 -s 1 -d 2 -p cbr -e 210 -c 1 -i 587 -a 1 -x {1.0 5.0 548 ------- null} - -t 2.155 -s 1 -d 2 -p cbr -e 210 -c 1 -i 587 -a 1 -x {1.0 5.0 548 ------- null} h -t 2.155 -s 1 -d 2 -p cbr -e 210 -c 1 -i 587 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.15586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 573 -a 1 -x {1.0 5.0 534 ------- null} + -t 2.15586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 573 -a 1 -x {1.0 5.0 534 ------- null} r -t 2.15664 -s 2 -d 3 -p cbr -e 210 -c 1 -i 554 -a 1 -x {1.0 5.0 516 ------- null} + -t 2.15664 -s 3 -d 5 -p cbr -e 210 -c 1 -i 554 -a 1 -x {1.0 5.0 516 ------- null} - -t 2.15664 -s 3 -d 5 -p cbr -e 210 -c 1 -i 554 -a 1 -x {1.0 5.0 516 ------- null} h -t 2.15664 -s 3 -d 5 -p cbr -e 210 -c 1 -i 554 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.15704 -s 3 -d 5 -p cbr -e 210 -c 1 -i 541 -a 1 -x {1.0 5.0 505 ------- null} + -t 2.15875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 588 -a 1 -x {1.0 5.0 549 ------- null} - -t 2.15875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 588 -a 1 -x {1.0 5.0 549 ------- null} h -t 2.15875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 588 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.15961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 574 -a 1 -x {1.0 5.0 535 ------- null} + -t 2.15961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 574 -a 1 -x {1.0 5.0 535 ------- null} d -t 2.15961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 574 -a 1 -x {1.0 5.0 535 ------- null} r -t 2.16 -s 2 -d 3 -p cbr -e 210 -c 1 -i 555 -a 1 -x {1.0 5.0 517 ------- null} + -t 2.16 -s 3 -d 5 -p cbr -e 210 -c 1 -i 555 -a 1 -x {1.0 5.0 517 ------- null} - -t 2.16 -s 3 -d 5 -p cbr -e 210 -c 1 -i 555 -a 1 -x {1.0 5.0 517 ------- null} h -t 2.16 -s 3 -d 5 -p cbr -e 210 -c 1 -i 555 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.1604 -s 3 -d 5 -p cbr -e 210 -c 1 -i 542 -a 1 -x {1.0 5.0 506 ------- null} + -t 2.1625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 589 -a 1 -x {1.0 5.0 550 ------- null} - -t 2.1625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 589 -a 1 -x {1.0 5.0 550 ------- null} h -t 2.1625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 589 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.16336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 575 -a 1 -x {1.0 5.0 536 ------- null} + -t 2.16336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 575 -a 1 -x {1.0 5.0 536 ------- null} d -t 2.16336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 575 -a 1 -x {1.0 5.0 536 ------- null} r -t 2.16336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 556 -a 1 -x {1.0 5.0 518 ------- null} + -t 2.16336 -s 3 -d 5 -p cbr -e 210 -c 1 -i 556 -a 1 -x {1.0 5.0 518 ------- null} - -t 2.16336 -s 3 -d 5 -p cbr -e 210 -c 1 -i 556 -a 1 -x {1.0 5.0 518 ------- null} h -t 2.16336 -s 3 -d 5 -p cbr -e 210 -c 1 -i 556 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.16376 -s 3 -d 5 -p cbr -e 210 -c 1 -i 544 -a 1 -x {1.0 5.0 507 ------- null} + -t 2.16625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 590 -a 1 -x {1.0 5.0 551 ------- null} - -t 2.16625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 590 -a 1 -x {1.0 5.0 551 ------- null} h -t 2.16625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 590 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.16711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 576 -a 1 -x {1.0 5.0 537 ------- null} + -t 2.16711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 576 -a 1 -x {1.0 5.0 537 ------- null} d -t 2.16711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 576 -a 1 -x {1.0 5.0 537 ------- null} r -t 2.16712 -s 3 -d 5 -p cbr -e 210 -c 1 -i 545 -a 1 -x {1.0 5.0 508 ------- null} - -t 2.16888 -s 2 -d 3 -p cbr -e 210 -c 1 -i 565 -a 1 -x {1.0 5.0 526 ------- null} h -t 2.16888 -s 2 -d 3 -p cbr -e 210 -c 1 -i 565 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.17 -s 1 -d 2 -p cbr -e 210 -c 1 -i 591 -a 1 -x {1.0 5.0 552 ------- null} - -t 2.17 -s 1 -d 2 -p cbr -e 210 -c 1 -i 591 -a 1 -x {1.0 5.0 552 ------- null} h -t 2.17 -s 1 -d 2 -p cbr -e 210 -c 1 -i 591 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.17048 -s 3 -d 5 -p cbr -e 210 -c 1 -i 546 -a 1 -x {1.0 5.0 509 ------- null} r -t 2.17086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 577 -a 1 -x {1.0 5.0 538 ------- null} + -t 2.17086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 577 -a 1 -x {1.0 5.0 538 ------- null} - -t 2.17224 -s 2 -d 3 -p cbr -e 210 -c 1 -i 566 -a 1 -x {1.0 5.0 527 ------- null} h -t 2.17224 -s 2 -d 3 -p cbr -e 210 -c 1 -i 566 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.17375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 592 -a 1 -x {1.0 5.0 553 ------- null} - -t 2.17375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 592 -a 1 -x {1.0 5.0 553 ------- null} h -t 2.17375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 592 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.17384 -s 3 -d 5 -p cbr -e 210 -c 1 -i 547 -a 1 -x {1.0 5.0 510 ------- null} r -t 2.17461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 578 -a 1 -x {1.0 5.0 539 ------- null} + -t 2.17461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 578 -a 1 -x {1.0 5.0 539 ------- null} - -t 2.1756 -s 2 -d 3 -p cbr -e 210 -c 1 -i 567 -a 1 -x {1.0 5.0 528 ------- null} h -t 2.1756 -s 2 -d 3 -p cbr -e 210 -c 1 -i 567 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.1775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 593 -a 1 -x {1.0 5.0 554 ------- null} - -t 2.1775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 593 -a 1 -x {1.0 5.0 554 ------- null} h -t 2.1775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 593 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.17836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 579 -a 1 -x {1.0 5.0 540 ------- null} + -t 2.17836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 579 -a 1 -x {1.0 5.0 540 ------- null} - -t 2.17896 -s 2 -d 3 -p cbr -e 210 -c 1 -i 568 -a 1 -x {1.0 5.0 529 ------- null} h -t 2.17896 -s 2 -d 3 -p cbr -e 210 -c 1 -i 568 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.17936 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {0.0 4.0 16 ------- null} + -t 2.17936 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {0.0 4.0 16 ------- null} - -t 2.17936 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {0.0 4.0 16 ------- null} h -t 2.17936 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {0.0 4.0 -1 ------- null} + -t 2.18125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 594 -a 1 -x {1.0 5.0 555 ------- null} - -t 2.18125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 594 -a 1 -x {1.0 5.0 555 ------- null} h -t 2.18125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 594 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.18211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 580 -a 1 -x {1.0 5.0 541 ------- null} + -t 2.18211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 580 -a 1 -x {1.0 5.0 541 ------- null} - -t 2.18232 -s 2 -d 3 -p cbr -e 210 -c 1 -i 569 -a 1 -x {1.0 5.0 530 ------- null} h -t 2.18232 -s 2 -d 3 -p cbr -e 210 -c 1 -i 569 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.18272 -s 2 -d 3 -p cbr -e 210 -c 1 -i 557 -a 1 -x {1.0 5.0 519 ------- null} + -t 2.18272 -s 3 -d 5 -p cbr -e 210 -c 1 -i 557 -a 1 -x {1.0 5.0 519 ------- null} - -t 2.18272 -s 3 -d 5 -p cbr -e 210 -c 1 -i 557 -a 1 -x {1.0 5.0 519 ------- null} h -t 2.18272 -s 3 -d 5 -p cbr -e 210 -c 1 -i 557 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.185 -s 1 -d 2 -p cbr -e 210 -c 1 -i 595 -a 1 -x {1.0 5.0 556 ------- null} - -t 2.185 -s 1 -d 2 -p cbr -e 210 -c 1 -i 595 -a 1 -x {1.0 5.0 556 ------- null} h -t 2.185 -s 1 -d 2 -p cbr -e 210 -c 1 -i 595 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.18568 -s 2 -d 3 -p cbr -e 210 -c 1 -i 570 -a 1 -x {1.0 5.0 531 ------- null} h -t 2.18568 -s 2 -d 3 -p cbr -e 210 -c 1 -i 570 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.18586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 581 -a 1 -x {1.0 5.0 542 ------- null} + -t 2.18586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 581 -a 1 -x {1.0 5.0 542 ------- null} r -t 2.18608 -s 2 -d 3 -p cbr -e 210 -c 1 -i 558 -a 1 -x {1.0 5.0 520 ------- null} + -t 2.18608 -s 3 -d 5 -p cbr -e 210 -c 1 -i 558 -a 1 -x {1.0 5.0 520 ------- null} - -t 2.18608 -s 3 -d 5 -p cbr -e 210 -c 1 -i 558 -a 1 -x {1.0 5.0 520 ------- null} h -t 2.18608 -s 3 -d 5 -p cbr -e 210 -c 1 -i 558 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.18875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 596 -a 1 -x {1.0 5.0 557 ------- null} - -t 2.18875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 596 -a 1 -x {1.0 5.0 557 ------- null} h -t 2.18875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 596 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.18904 -s 2 -d 3 -p cbr -e 210 -c 1 -i 571 -a 1 -x {1.0 5.0 532 ------- null} h -t 2.18904 -s 2 -d 3 -p cbr -e 210 -c 1 -i 571 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.18944 -s 2 -d 3 -p cbr -e 210 -c 1 -i 559 -a 1 -x {1.0 5.0 521 ------- null} + -t 2.18944 -s 3 -d 5 -p cbr -e 210 -c 1 -i 559 -a 1 -x {1.0 5.0 521 ------- null} - -t 2.18944 -s 3 -d 5 -p cbr -e 210 -c 1 -i 559 -a 1 -x {1.0 5.0 521 ------- null} h -t 2.18944 -s 3 -d 5 -p cbr -e 210 -c 1 -i 559 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.18961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 582 -a 1 -x {1.0 5.0 543 ------- null} + -t 2.18961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 582 -a 1 -x {1.0 5.0 543 ------- null} - -t 2.1924 -s 2 -d 3 -p cbr -e 210 -c 1 -i 572 -a 1 -x {1.0 5.0 533 ------- null} h -t 2.1924 -s 2 -d 3 -p cbr -e 210 -c 1 -i 572 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.1925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 597 -a 1 -x {1.0 5.0 558 ------- null} - -t 2.1925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 597 -a 1 -x {1.0 5.0 558 ------- null} h -t 2.1925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 597 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.1928 -s 2 -d 3 -p cbr -e 210 -c 1 -i 560 -a 1 -x {1.0 5.0 522 ------- null} + -t 2.1928 -s 3 -d 5 -p cbr -e 210 -c 1 -i 560 -a 1 -x {1.0 5.0 522 ------- null} - -t 2.1928 -s 3 -d 5 -p cbr -e 210 -c 1 -i 560 -a 1 -x {1.0 5.0 522 ------- null} h -t 2.1928 -s 3 -d 5 -p cbr -e 210 -c 1 -i 560 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.1932 -s 3 -d 5 -p cbr -e 210 -c 1 -i 548 -a 1 -x {1.0 5.0 511 ------- null} r -t 2.19336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 583 -a 1 -x {1.0 5.0 544 ------- null} + -t 2.19336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 583 -a 1 -x {1.0 5.0 544 ------- null} - -t 2.19576 -s 2 -d 3 -p cbr -e 210 -c 1 -i 573 -a 1 -x {1.0 5.0 534 ------- null} h -t 2.19576 -s 2 -d 3 -p cbr -e 210 -c 1 -i 573 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.19616 -s 2 -d 3 -p cbr -e 210 -c 1 -i 562 -a 1 -x {1.0 5.0 523 ------- null} + -t 2.19616 -s 3 -d 5 -p cbr -e 210 -c 1 -i 562 -a 1 -x {1.0 5.0 523 ------- null} - -t 2.19616 -s 3 -d 5 -p cbr -e 210 -c 1 -i 562 -a 1 -x {1.0 5.0 523 ------- null} h -t 2.19616 -s 3 -d 5 -p cbr -e 210 -c 1 -i 562 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.19625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 598 -a 1 -x {1.0 5.0 559 ------- null} - -t 2.19625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 598 -a 1 -x {1.0 5.0 559 ------- null} h -t 2.19625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 598 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.19656 -s 3 -d 5 -p cbr -e 210 -c 1 -i 549 -a 1 -x {1.0 5.0 512 ------- null} r -t 2.19711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 584 -a 1 -x {1.0 5.0 545 ------- null} + -t 2.19711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 584 -a 1 -x {1.0 5.0 545 ------- null} - -t 2.19912 -s 2 -d 3 -p cbr -e 210 -c 1 -i 577 -a 1 -x {1.0 5.0 538 ------- null} h -t 2.19912 -s 2 -d 3 -p cbr -e 210 -c 1 -i 577 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.19952 -s 2 -d 3 -p cbr -e 210 -c 1 -i 563 -a 1 -x {1.0 5.0 524 ------- null} + -t 2.19952 -s 3 -d 5 -p cbr -e 210 -c 1 -i 563 -a 1 -x {1.0 5.0 524 ------- null} - -t 2.19952 -s 3 -d 5 -p cbr -e 210 -c 1 -i 563 -a 1 -x {1.0 5.0 524 ------- null} h -t 2.19952 -s 3 -d 5 -p cbr -e 210 -c 1 -i 563 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.19992 -s 3 -d 5 -p cbr -e 210 -c 1 -i 550 -a 1 -x {1.0 5.0 513 ------- null} + -t 2.2 -s 1 -d 2 -p cbr -e 210 -c 1 -i 599 -a 1 -x {1.0 5.0 560 ------- null} - -t 2.2 -s 1 -d 2 -p cbr -e 210 -c 1 -i 599 -a 1 -x {1.0 5.0 560 ------- null} h -t 2.2 -s 1 -d 2 -p cbr -e 210 -c 1 -i 599 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.20086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 585 -a 1 -x {1.0 5.0 546 ------- null} + -t 2.20086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 585 -a 1 -x {1.0 5.0 546 ------- null} - -t 2.20248 -s 2 -d 3 -p cbr -e 210 -c 1 -i 578 -a 1 -x {1.0 5.0 539 ------- null} h -t 2.20248 -s 2 -d 3 -p cbr -e 210 -c 1 -i 578 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.20248 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {0.0 4.0 15 ------- null} + -t 2.20248 -s 4 -d 3 -p ack -e 40 -c 0 -i 600 -a 0 -x {4.0 0.0 13 ------- null} - -t 2.20248 -s 4 -d 3 -p ack -e 40 -c 0 -i 600 -a 0 -x {4.0 0.0 13 ------- null} h -t 2.20248 -s 4 -d 3 -p ack -e 40 -c 0 -i 600 -a 0 -x {4.0 0.0 -1 ------- null} r -t 2.20288 -s 2 -d 3 -p cbr -e 210 -c 1 -i 564 -a 1 -x {1.0 5.0 525 ------- null} + -t 2.20288 -s 3 -d 5 -p cbr -e 210 -c 1 -i 564 -a 1 -x {1.0 5.0 525 ------- null} - -t 2.20288 -s 3 -d 5 -p cbr -e 210 -c 1 -i 564 -a 1 -x {1.0 5.0 525 ------- null} h -t 2.20288 -s 3 -d 5 -p cbr -e 210 -c 1 -i 564 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.20328 -s 3 -d 5 -p cbr -e 210 -c 1 -i 551 -a 1 -x {1.0 5.0 514 ------- null} + -t 2.20375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 601 -a 1 -x {1.0 5.0 561 ------- null} - -t 2.20375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 601 -a 1 -x {1.0 5.0 561 ------- null} h -t 2.20375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 601 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.20461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 586 -a 1 -x {1.0 5.0 547 ------- null} + -t 2.20461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 586 -a 1 -x {1.0 5.0 547 ------- null} - -t 2.20584 -s 2 -d 3 -p cbr -e 210 -c 1 -i 579 -a 1 -x {1.0 5.0 540 ------- null} h -t 2.20584 -s 2 -d 3 -p cbr -e 210 -c 1 -i 579 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.20664 -s 3 -d 5 -p cbr -e 210 -c 1 -i 553 -a 1 -x {1.0 5.0 515 ------- null} + -t 2.2075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 602 -a 1 -x {1.0 5.0 562 ------- null} - -t 2.2075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 602 -a 1 -x {1.0 5.0 562 ------- null} h -t 2.2075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 602 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.20836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 587 -a 1 -x {1.0 5.0 548 ------- null} + -t 2.20836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 587 -a 1 -x {1.0 5.0 548 ------- null} - -t 2.2092 -s 2 -d 3 -p cbr -e 210 -c 1 -i 580 -a 1 -x {1.0 5.0 541 ------- null} h -t 2.2092 -s 2 -d 3 -p cbr -e 210 -c 1 -i 580 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.21 -s 3 -d 5 -p cbr -e 210 -c 1 -i 554 -a 1 -x {1.0 5.0 516 ------- null} + -t 2.21125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 603 -a 1 -x {1.0 5.0 563 ------- null} - -t 2.21125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 603 -a 1 -x {1.0 5.0 563 ------- null} h -t 2.21125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 603 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.21211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 588 -a 1 -x {1.0 5.0 549 ------- null} + -t 2.21211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 588 -a 1 -x {1.0 5.0 549 ------- null} - -t 2.21256 -s 2 -d 3 -p cbr -e 210 -c 1 -i 581 -a 1 -x {1.0 5.0 542 ------- null} h -t 2.21256 -s 2 -d 3 -p cbr -e 210 -c 1 -i 581 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.21336 -s 3 -d 5 -p cbr -e 210 -c 1 -i 555 -a 1 -x {1.0 5.0 517 ------- null} + -t 2.215 -s 1 -d 2 -p cbr -e 210 -c 1 -i 604 -a 1 -x {1.0 5.0 564 ------- null} - -t 2.215 -s 1 -d 2 -p cbr -e 210 -c 1 -i 604 -a 1 -x {1.0 5.0 564 ------- null} h -t 2.215 -s 1 -d 2 -p cbr -e 210 -c 1 -i 604 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.21586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 589 -a 1 -x {1.0 5.0 550 ------- null} + -t 2.21586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 589 -a 1 -x {1.0 5.0 550 ------- null} - -t 2.21592 -s 2 -d 3 -p cbr -e 210 -c 1 -i 582 -a 1 -x {1.0 5.0 543 ------- null} h -t 2.21592 -s 2 -d 3 -p cbr -e 210 -c 1 -i 582 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.21672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 556 -a 1 -x {1.0 5.0 518 ------- null} + -t 2.21875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 605 -a 1 -x {1.0 5.0 565 ------- null} - -t 2.21875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 605 -a 1 -x {1.0 5.0 565 ------- null} h -t 2.21875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 605 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.21888 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {0.0 4.0 17 ------- null} + -t 2.21888 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {0.0 4.0 17 ------- null} - -t 2.21888 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {0.0 4.0 17 ------- null} h -t 2.21888 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {0.0 4.0 -1 ------- null} - -t 2.21928 -s 2 -d 3 -p cbr -e 210 -c 1 -i 583 -a 1 -x {1.0 5.0 544 ------- null} h -t 2.21928 -s 2 -d 3 -p cbr -e 210 -c 1 -i 583 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.21961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 590 -a 1 -x {1.0 5.0 551 ------- null} + -t 2.21961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 590 -a 1 -x {1.0 5.0 551 ------- null} r -t 2.22224 -s 2 -d 3 -p cbr -e 210 -c 1 -i 565 -a 1 -x {1.0 5.0 526 ------- null} + -t 2.22224 -s 3 -d 5 -p cbr -e 210 -c 1 -i 565 -a 1 -x {1.0 5.0 526 ------- null} - -t 2.22224 -s 3 -d 5 -p cbr -e 210 -c 1 -i 565 -a 1 -x {1.0 5.0 526 ------- null} h -t 2.22224 -s 3 -d 5 -p cbr -e 210 -c 1 -i 565 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.2225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 606 -a 1 -x {1.0 5.0 566 ------- null} - -t 2.2225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 606 -a 1 -x {1.0 5.0 566 ------- null} h -t 2.2225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 606 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.22264 -s 2 -d 3 -p cbr -e 210 -c 1 -i 584 -a 1 -x {1.0 5.0 545 ------- null} h -t 2.22264 -s 2 -d 3 -p cbr -e 210 -c 1 -i 584 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.22336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 591 -a 1 -x {1.0 5.0 552 ------- null} + -t 2.22336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 591 -a 1 -x {1.0 5.0 552 ------- null} r -t 2.2256 -s 2 -d 3 -p cbr -e 210 -c 1 -i 566 -a 1 -x {1.0 5.0 527 ------- null} + -t 2.2256 -s 3 -d 5 -p cbr -e 210 -c 1 -i 566 -a 1 -x {1.0 5.0 527 ------- null} - -t 2.2256 -s 3 -d 5 -p cbr -e 210 -c 1 -i 566 -a 1 -x {1.0 5.0 527 ------- null} h -t 2.2256 -s 3 -d 5 -p cbr -e 210 -c 1 -i 566 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.226 -s 2 -d 3 -p cbr -e 210 -c 1 -i 585 -a 1 -x {1.0 5.0 546 ------- null} h -t 2.226 -s 2 -d 3 -p cbr -e 210 -c 1 -i 585 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.22625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 607 -a 1 -x {1.0 5.0 567 ------- null} - -t 2.22625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 607 -a 1 -x {1.0 5.0 567 ------- null} h -t 2.22625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 607 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.22711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 592 -a 1 -x {1.0 5.0 553 ------- null} + -t 2.22711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 592 -a 1 -x {1.0 5.0 553 ------- null} r -t 2.22896 -s 2 -d 3 -p cbr -e 210 -c 1 -i 567 -a 1 -x {1.0 5.0 528 ------- null} + -t 2.22896 -s 3 -d 5 -p cbr -e 210 -c 1 -i 567 -a 1 -x {1.0 5.0 528 ------- null} - -t 2.22896 -s 3 -d 5 -p cbr -e 210 -c 1 -i 567 -a 1 -x {1.0 5.0 528 ------- null} h -t 2.22896 -s 3 -d 5 -p cbr -e 210 -c 1 -i 567 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.22936 -s 2 -d 3 -p cbr -e 210 -c 1 -i 586 -a 1 -x {1.0 5.0 547 ------- null} h -t 2.22936 -s 2 -d 3 -p cbr -e 210 -c 1 -i 586 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.23 -s 1 -d 2 -p cbr -e 210 -c 1 -i 608 -a 1 -x {1.0 5.0 568 ------- null} - -t 2.23 -s 1 -d 2 -p cbr -e 210 -c 1 -i 608 -a 1 -x {1.0 5.0 568 ------- null} h -t 2.23 -s 1 -d 2 -p cbr -e 210 -c 1 -i 608 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.23086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 593 -a 1 -x {1.0 5.0 554 ------- null} + -t 2.23086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 593 -a 1 -x {1.0 5.0 554 ------- null} r -t 2.23232 -s 2 -d 3 -p cbr -e 210 -c 1 -i 568 -a 1 -x {1.0 5.0 529 ------- null} + -t 2.23232 -s 3 -d 5 -p cbr -e 210 -c 1 -i 568 -a 1 -x {1.0 5.0 529 ------- null} - -t 2.23232 -s 3 -d 5 -p cbr -e 210 -c 1 -i 568 -a 1 -x {1.0 5.0 529 ------- null} h -t 2.23232 -s 3 -d 5 -p cbr -e 210 -c 1 -i 568 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.23272 -s 2 -d 3 -p cbr -e 210 -c 1 -i 587 -a 1 -x {1.0 5.0 548 ------- null} h -t 2.23272 -s 2 -d 3 -p cbr -e 210 -c 1 -i 587 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.23375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 609 -a 1 -x {1.0 5.0 569 ------- null} - -t 2.23375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 609 -a 1 -x {1.0 5.0 569 ------- null} h -t 2.23375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 609 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.23461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 594 -a 1 -x {1.0 5.0 555 ------- null} + -t 2.23461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 594 -a 1 -x {1.0 5.0 555 ------- null} r -t 2.23568 -s 2 -d 3 -p cbr -e 210 -c 1 -i 569 -a 1 -x {1.0 5.0 530 ------- null} + -t 2.23568 -s 3 -d 5 -p cbr -e 210 -c 1 -i 569 -a 1 -x {1.0 5.0 530 ------- null} - -t 2.23568 -s 3 -d 5 -p cbr -e 210 -c 1 -i 569 -a 1 -x {1.0 5.0 530 ------- null} h -t 2.23568 -s 3 -d 5 -p cbr -e 210 -c 1 -i 569 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.23608 -s 2 -d 3 -p cbr -e 210 -c 1 -i 588 -a 1 -x {1.0 5.0 549 ------- null} h -t 2.23608 -s 2 -d 3 -p cbr -e 210 -c 1 -i 588 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.23608 -s 3 -d 5 -p cbr -e 210 -c 1 -i 557 -a 1 -x {1.0 5.0 519 ------- null} + -t 2.2375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 610 -a 1 -x {1.0 5.0 570 ------- null} - -t 2.2375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 610 -a 1 -x {1.0 5.0 570 ------- null} h -t 2.2375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 610 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.23836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 595 -a 1 -x {1.0 5.0 556 ------- null} + -t 2.23836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 595 -a 1 -x {1.0 5.0 556 ------- null} r -t 2.23904 -s 2 -d 3 -p cbr -e 210 -c 1 -i 570 -a 1 -x {1.0 5.0 531 ------- null} + -t 2.23904 -s 3 -d 5 -p cbr -e 210 -c 1 -i 570 -a 1 -x {1.0 5.0 531 ------- null} - -t 2.23904 -s 3 -d 5 -p cbr -e 210 -c 1 -i 570 -a 1 -x {1.0 5.0 531 ------- null} h -t 2.23904 -s 3 -d 5 -p cbr -e 210 -c 1 -i 570 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.23944 -s 2 -d 3 -p cbr -e 210 -c 1 -i 589 -a 1 -x {1.0 5.0 550 ------- null} h -t 2.23944 -s 2 -d 3 -p cbr -e 210 -c 1 -i 589 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.23944 -s 3 -d 5 -p cbr -e 210 -c 1 -i 558 -a 1 -x {1.0 5.0 520 ------- null} + -t 2.24125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 611 -a 1 -x {1.0 5.0 571 ------- null} - -t 2.24125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 611 -a 1 -x {1.0 5.0 571 ------- null} h -t 2.24125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 611 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.24211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 596 -a 1 -x {1.0 5.0 557 ------- null} + -t 2.24211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 596 -a 1 -x {1.0 5.0 557 ------- null} r -t 2.2424 -s 2 -d 3 -p cbr -e 210 -c 1 -i 571 -a 1 -x {1.0 5.0 532 ------- null} + -t 2.2424 -s 3 -d 5 -p cbr -e 210 -c 1 -i 571 -a 1 -x {1.0 5.0 532 ------- null} - -t 2.2424 -s 3 -d 5 -p cbr -e 210 -c 1 -i 571 -a 1 -x {1.0 5.0 532 ------- null} h -t 2.2424 -s 3 -d 5 -p cbr -e 210 -c 1 -i 571 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.2428 -s 2 -d 3 -p cbr -e 210 -c 1 -i 590 -a 1 -x {1.0 5.0 551 ------- null} h -t 2.2428 -s 2 -d 3 -p cbr -e 210 -c 1 -i 590 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.2428 -s 3 -d 5 -p cbr -e 210 -c 1 -i 559 -a 1 -x {1.0 5.0 521 ------- null} + -t 2.245 -s 1 -d 2 -p cbr -e 210 -c 1 -i 612 -a 1 -x {1.0 5.0 572 ------- null} - -t 2.245 -s 1 -d 2 -p cbr -e 210 -c 1 -i 612 -a 1 -x {1.0 5.0 572 ------- null} h -t 2.245 -s 1 -d 2 -p cbr -e 210 -c 1 -i 612 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.24536 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {0.0 4.0 16 ------- null} + -t 2.24536 -s 4 -d 3 -p ack -e 40 -c 0 -i 613 -a 0 -x {4.0 0.0 13 ------- null} - -t 2.24536 -s 4 -d 3 -p ack -e 40 -c 0 -i 613 -a 0 -x {4.0 0.0 13 ------- null} h -t 2.24536 -s 4 -d 3 -p ack -e 40 -c 0 -i 613 -a 0 -x {4.0 0.0 -1 ------- null} r -t 2.24576 -s 2 -d 3 -p cbr -e 210 -c 1 -i 572 -a 1 -x {1.0 5.0 533 ------- null} + -t 2.24576 -s 3 -d 5 -p cbr -e 210 -c 1 -i 572 -a 1 -x {1.0 5.0 533 ------- null} - -t 2.24576 -s 3 -d 5 -p cbr -e 210 -c 1 -i 572 -a 1 -x {1.0 5.0 533 ------- null} h -t 2.24576 -s 3 -d 5 -p cbr -e 210 -c 1 -i 572 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.24586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 597 -a 1 -x {1.0 5.0 558 ------- null} + -t 2.24586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 597 -a 1 -x {1.0 5.0 558 ------- null} - -t 2.24616 -s 2 -d 3 -p cbr -e 210 -c 1 -i 591 -a 1 -x {1.0 5.0 552 ------- null} h -t 2.24616 -s 2 -d 3 -p cbr -e 210 -c 1 -i 591 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.24616 -s 3 -d 5 -p cbr -e 210 -c 1 -i 560 -a 1 -x {1.0 5.0 522 ------- null} + -t 2.24875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 614 -a 1 -x {1.0 5.0 573 ------- null} - -t 2.24875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 614 -a 1 -x {1.0 5.0 573 ------- null} h -t 2.24875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 614 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.24912 -s 2 -d 3 -p cbr -e 210 -c 1 -i 573 -a 1 -x {1.0 5.0 534 ------- null} + -t 2.24912 -s 3 -d 5 -p cbr -e 210 -c 1 -i 573 -a 1 -x {1.0 5.0 534 ------- null} - -t 2.24912 -s 3 -d 5 -p cbr -e 210 -c 1 -i 573 -a 1 -x {1.0 5.0 534 ------- null} h -t 2.24912 -s 3 -d 5 -p cbr -e 210 -c 1 -i 573 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.24952 -s 2 -d 3 -p cbr -e 210 -c 1 -i 592 -a 1 -x {1.0 5.0 553 ------- null} h -t 2.24952 -s 2 -d 3 -p cbr -e 210 -c 1 -i 592 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.24952 -s 3 -d 5 -p cbr -e 210 -c 1 -i 562 -a 1 -x {1.0 5.0 523 ------- null} r -t 2.24961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 598 -a 1 -x {1.0 5.0 559 ------- null} + -t 2.24961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 598 -a 1 -x {1.0 5.0 559 ------- null} r -t 2.25248 -s 2 -d 3 -p cbr -e 210 -c 1 -i 577 -a 1 -x {1.0 5.0 538 ------- null} + -t 2.25248 -s 3 -d 5 -p cbr -e 210 -c 1 -i 577 -a 1 -x {1.0 5.0 538 ------- null} - -t 2.25248 -s 3 -d 5 -p cbr -e 210 -c 1 -i 577 -a 1 -x {1.0 5.0 538 ------- null} h -t 2.25248 -s 3 -d 5 -p cbr -e 210 -c 1 -i 577 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.2525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 615 -a 1 -x {1.0 5.0 574 ------- null} - -t 2.2525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 615 -a 1 -x {1.0 5.0 574 ------- null} h -t 2.2525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 615 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.25288 -s 2 -d 3 -p cbr -e 210 -c 1 -i 593 -a 1 -x {1.0 5.0 554 ------- null} h -t 2.25288 -s 2 -d 3 -p cbr -e 210 -c 1 -i 593 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.25288 -s 3 -d 5 -p cbr -e 210 -c 1 -i 563 -a 1 -x {1.0 5.0 524 ------- null} r -t 2.25312 -s 4 -d 3 -p ack -e 40 -c 0 -i 600 -a 0 -x {4.0 0.0 13 ------- null} + -t 2.25312 -s 3 -d 2 -p ack -e 40 -c 0 -i 600 -a 0 -x {4.0 0.0 13 ------- null} - -t 2.25312 -s 3 -d 2 -p ack -e 40 -c 0 -i 600 -a 0 -x {4.0 0.0 13 ------- null} h -t 2.25312 -s 3 -d 2 -p ack -e 40 -c 0 -i 600 -a 0 -x {4.0 0.0 -1 ------- null} r -t 2.25336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 599 -a 1 -x {1.0 5.0 560 ------- null} + -t 2.25336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 599 -a 1 -x {1.0 5.0 560 ------- null} r -t 2.25584 -s 2 -d 3 -p cbr -e 210 -c 1 -i 578 -a 1 -x {1.0 5.0 539 ------- null} + -t 2.25584 -s 3 -d 5 -p cbr -e 210 -c 1 -i 578 -a 1 -x {1.0 5.0 539 ------- null} - -t 2.25584 -s 3 -d 5 -p cbr -e 210 -c 1 -i 578 -a 1 -x {1.0 5.0 539 ------- null} h -t 2.25584 -s 3 -d 5 -p cbr -e 210 -c 1 -i 578 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.25624 -s 2 -d 3 -p cbr -e 210 -c 1 -i 594 -a 1 -x {1.0 5.0 555 ------- null} h -t 2.25624 -s 2 -d 3 -p cbr -e 210 -c 1 -i 594 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.25624 -s 3 -d 5 -p cbr -e 210 -c 1 -i 564 -a 1 -x {1.0 5.0 525 ------- null} + -t 2.25625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 616 -a 1 -x {1.0 5.0 575 ------- null} - -t 2.25625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 616 -a 1 -x {1.0 5.0 575 ------- null} h -t 2.25625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 616 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.25711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 601 -a 1 -x {1.0 5.0 561 ------- null} + -t 2.25711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 601 -a 1 -x {1.0 5.0 561 ------- null} r -t 2.2592 -s 2 -d 3 -p cbr -e 210 -c 1 -i 579 -a 1 -x {1.0 5.0 540 ------- null} + -t 2.2592 -s 3 -d 5 -p cbr -e 210 -c 1 -i 579 -a 1 -x {1.0 5.0 540 ------- null} - -t 2.2592 -s 3 -d 5 -p cbr -e 210 -c 1 -i 579 -a 1 -x {1.0 5.0 540 ------- null} h -t 2.2592 -s 3 -d 5 -p cbr -e 210 -c 1 -i 579 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.2596 -s 2 -d 3 -p cbr -e 210 -c 1 -i 595 -a 1 -x {1.0 5.0 556 ------- null} h -t 2.2596 -s 2 -d 3 -p cbr -e 210 -c 1 -i 595 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.26 -s 1 -d 2 -p cbr -e 210 -c 1 -i 617 -a 1 -x {1.0 5.0 576 ------- null} - -t 2.26 -s 1 -d 2 -p cbr -e 210 -c 1 -i 617 -a 1 -x {1.0 5.0 576 ------- null} h -t 2.26 -s 1 -d 2 -p cbr -e 210 -c 1 -i 617 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.26086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 602 -a 1 -x {1.0 5.0 562 ------- null} + -t 2.26086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 602 -a 1 -x {1.0 5.0 562 ------- null} r -t 2.26256 -s 2 -d 3 -p cbr -e 210 -c 1 -i 580 -a 1 -x {1.0 5.0 541 ------- null} + -t 2.26256 -s 3 -d 5 -p cbr -e 210 -c 1 -i 580 -a 1 -x {1.0 5.0 541 ------- null} - -t 2.26256 -s 3 -d 5 -p cbr -e 210 -c 1 -i 580 -a 1 -x {1.0 5.0 541 ------- null} h -t 2.26256 -s 3 -d 5 -p cbr -e 210 -c 1 -i 580 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.26296 -s 2 -d 3 -p cbr -e 210 -c 1 -i 596 -a 1 -x {1.0 5.0 557 ------- null} h -t 2.26296 -s 2 -d 3 -p cbr -e 210 -c 1 -i 596 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.26375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 618 -a 1 -x {1.0 5.0 577 ------- null} - -t 2.26375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 618 -a 1 -x {1.0 5.0 577 ------- null} h -t 2.26375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 618 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.26461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 603 -a 1 -x {1.0 5.0 563 ------- null} + -t 2.26461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 603 -a 1 -x {1.0 5.0 563 ------- null} r -t 2.26592 -s 2 -d 3 -p cbr -e 210 -c 1 -i 581 -a 1 -x {1.0 5.0 542 ------- null} + -t 2.26592 -s 3 -d 5 -p cbr -e 210 -c 1 -i 581 -a 1 -x {1.0 5.0 542 ------- null} - -t 2.26592 -s 3 -d 5 -p cbr -e 210 -c 1 -i 581 -a 1 -x {1.0 5.0 542 ------- null} h -t 2.26592 -s 3 -d 5 -p cbr -e 210 -c 1 -i 581 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.26632 -s 2 -d 3 -p cbr -e 210 -c 1 -i 597 -a 1 -x {1.0 5.0 558 ------- null} h -t 2.26632 -s 2 -d 3 -p cbr -e 210 -c 1 -i 597 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.2675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 619 -a 1 -x {1.0 5.0 578 ------- null} - -t 2.2675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 619 -a 1 -x {1.0 5.0 578 ------- null} h -t 2.2675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 619 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.26836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 604 -a 1 -x {1.0 5.0 564 ------- null} + -t 2.26836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 604 -a 1 -x {1.0 5.0 564 ------- null} r -t 2.26928 -s 2 -d 3 -p cbr -e 210 -c 1 -i 582 -a 1 -x {1.0 5.0 543 ------- null} + -t 2.26928 -s 3 -d 5 -p cbr -e 210 -c 1 -i 582 -a 1 -x {1.0 5.0 543 ------- null} - -t 2.26928 -s 3 -d 5 -p cbr -e 210 -c 1 -i 582 -a 1 -x {1.0 5.0 543 ------- null} h -t 2.26928 -s 3 -d 5 -p cbr -e 210 -c 1 -i 582 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.26968 -s 2 -d 3 -p cbr -e 210 -c 1 -i 598 -a 1 -x {1.0 5.0 559 ------- null} h -t 2.26968 -s 2 -d 3 -p cbr -e 210 -c 1 -i 598 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.27125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 620 -a 1 -x {1.0 5.0 579 ------- null} - -t 2.27125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 620 -a 1 -x {1.0 5.0 579 ------- null} h -t 2.27125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 620 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.27211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 605 -a 1 -x {1.0 5.0 565 ------- null} + -t 2.27211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 605 -a 1 -x {1.0 5.0 565 ------- null} r -t 2.27264 -s 2 -d 3 -p cbr -e 210 -c 1 -i 583 -a 1 -x {1.0 5.0 544 ------- null} + -t 2.27264 -s 3 -d 5 -p cbr -e 210 -c 1 -i 583 -a 1 -x {1.0 5.0 544 ------- null} - -t 2.27264 -s 3 -d 5 -p cbr -e 210 -c 1 -i 583 -a 1 -x {1.0 5.0 544 ------- null} h -t 2.27264 -s 3 -d 5 -p cbr -e 210 -c 1 -i 583 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.27304 -s 2 -d 3 -p cbr -e 210 -c 1 -i 599 -a 1 -x {1.0 5.0 560 ------- null} h -t 2.27304 -s 2 -d 3 -p cbr -e 210 -c 1 -i 599 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 621 -a 1 -x {1.0 5.0 580 ------- null} - -t 2.275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 621 -a 1 -x {1.0 5.0 580 ------- null} h -t 2.275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 621 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.2756 -s 3 -d 5 -p cbr -e 210 -c 1 -i 565 -a 1 -x {1.0 5.0 526 ------- null} r -t 2.27586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 606 -a 1 -x {1.0 5.0 566 ------- null} + -t 2.27586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 606 -a 1 -x {1.0 5.0 566 ------- null} r -t 2.276 -s 2 -d 3 -p cbr -e 210 -c 1 -i 584 -a 1 -x {1.0 5.0 545 ------- null} + -t 2.276 -s 3 -d 5 -p cbr -e 210 -c 1 -i 584 -a 1 -x {1.0 5.0 545 ------- null} - -t 2.276 -s 3 -d 5 -p cbr -e 210 -c 1 -i 584 -a 1 -x {1.0 5.0 545 ------- null} h -t 2.276 -s 3 -d 5 -p cbr -e 210 -c 1 -i 584 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.2764 -s 2 -d 3 -p cbr -e 210 -c 1 -i 601 -a 1 -x {1.0 5.0 561 ------- null} h -t 2.2764 -s 2 -d 3 -p cbr -e 210 -c 1 -i 601 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.27875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 622 -a 1 -x {1.0 5.0 581 ------- null} - -t 2.27875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 622 -a 1 -x {1.0 5.0 581 ------- null} h -t 2.27875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 622 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.27896 -s 3 -d 5 -p cbr -e 210 -c 1 -i 566 -a 1 -x {1.0 5.0 527 ------- null} r -t 2.27936 -s 2 -d 3 -p cbr -e 210 -c 1 -i 585 -a 1 -x {1.0 5.0 546 ------- null} + -t 2.27936 -s 3 -d 5 -p cbr -e 210 -c 1 -i 585 -a 1 -x {1.0 5.0 546 ------- null} - -t 2.27936 -s 3 -d 5 -p cbr -e 210 -c 1 -i 585 -a 1 -x {1.0 5.0 546 ------- null} h -t 2.27936 -s 3 -d 5 -p cbr -e 210 -c 1 -i 585 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.27961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 607 -a 1 -x {1.0 5.0 567 ------- null} + -t 2.27961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 607 -a 1 -x {1.0 5.0 567 ------- null} - -t 2.27976 -s 2 -d 3 -p cbr -e 210 -c 1 -i 602 -a 1 -x {1.0 5.0 562 ------- null} h -t 2.27976 -s 2 -d 3 -p cbr -e 210 -c 1 -i 602 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.28232 -s 3 -d 5 -p cbr -e 210 -c 1 -i 567 -a 1 -x {1.0 5.0 528 ------- null} + -t 2.2825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 623 -a 1 -x {1.0 5.0 582 ------- null} - -t 2.2825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 623 -a 1 -x {1.0 5.0 582 ------- null} h -t 2.2825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 623 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.28272 -s 2 -d 3 -p cbr -e 210 -c 1 -i 586 -a 1 -x {1.0 5.0 547 ------- null} + -t 2.28272 -s 3 -d 5 -p cbr -e 210 -c 1 -i 586 -a 1 -x {1.0 5.0 547 ------- null} - -t 2.28272 -s 3 -d 5 -p cbr -e 210 -c 1 -i 586 -a 1 -x {1.0 5.0 547 ------- null} h -t 2.28272 -s 3 -d 5 -p cbr -e 210 -c 1 -i 586 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.28312 -s 2 -d 3 -p cbr -e 210 -c 1 -i 603 -a 1 -x {1.0 5.0 563 ------- null} h -t 2.28312 -s 2 -d 3 -p cbr -e 210 -c 1 -i 603 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.28336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 608 -a 1 -x {1.0 5.0 568 ------- null} + -t 2.28336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 608 -a 1 -x {1.0 5.0 568 ------- null} r -t 2.28488 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {0.0 4.0 17 ------- null} + -t 2.28488 -s 4 -d 3 -p ack -e 40 -c 0 -i 624 -a 0 -x {4.0 0.0 13 ------- null} - -t 2.28488 -s 4 -d 3 -p ack -e 40 -c 0 -i 624 -a 0 -x {4.0 0.0 13 ------- null} h -t 2.28488 -s 4 -d 3 -p ack -e 40 -c 0 -i 624 -a 0 -x {4.0 0.0 -1 ------- null} r -t 2.28568 -s 3 -d 5 -p cbr -e 210 -c 1 -i 568 -a 1 -x {1.0 5.0 529 ------- null} r -t 2.28608 -s 2 -d 3 -p cbr -e 210 -c 1 -i 587 -a 1 -x {1.0 5.0 548 ------- null} + -t 2.28608 -s 3 -d 5 -p cbr -e 210 -c 1 -i 587 -a 1 -x {1.0 5.0 548 ------- null} - -t 2.28608 -s 3 -d 5 -p cbr -e 210 -c 1 -i 587 -a 1 -x {1.0 5.0 548 ------- null} h -t 2.28608 -s 3 -d 5 -p cbr -e 210 -c 1 -i 587 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.28625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 625 -a 1 -x {1.0 5.0 583 ------- null} - -t 2.28625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 625 -a 1 -x {1.0 5.0 583 ------- null} h -t 2.28625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 625 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.28648 -s 2 -d 3 -p cbr -e 210 -c 1 -i 604 -a 1 -x {1.0 5.0 564 ------- null} h -t 2.28648 -s 2 -d 3 -p cbr -e 210 -c 1 -i 604 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.28711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 609 -a 1 -x {1.0 5.0 569 ------- null} + -t 2.28711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 609 -a 1 -x {1.0 5.0 569 ------- null} r -t 2.28904 -s 3 -d 5 -p cbr -e 210 -c 1 -i 569 -a 1 -x {1.0 5.0 530 ------- null} r -t 2.28944 -s 2 -d 3 -p cbr -e 210 -c 1 -i 588 -a 1 -x {1.0 5.0 549 ------- null} + -t 2.28944 -s 3 -d 5 -p cbr -e 210 -c 1 -i 588 -a 1 -x {1.0 5.0 549 ------- null} - -t 2.28944 -s 3 -d 5 -p cbr -e 210 -c 1 -i 588 -a 1 -x {1.0 5.0 549 ------- null} h -t 2.28944 -s 3 -d 5 -p cbr -e 210 -c 1 -i 588 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.28984 -s 2 -d 3 -p cbr -e 210 -c 1 -i 605 -a 1 -x {1.0 5.0 565 ------- null} h -t 2.28984 -s 2 -d 3 -p cbr -e 210 -c 1 -i 605 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.29 -s 1 -d 2 -p cbr -e 210 -c 1 -i 626 -a 1 -x {1.0 5.0 584 ------- null} - -t 2.29 -s 1 -d 2 -p cbr -e 210 -c 1 -i 626 -a 1 -x {1.0 5.0 584 ------- null} h -t 2.29 -s 1 -d 2 -p cbr -e 210 -c 1 -i 626 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.29086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 610 -a 1 -x {1.0 5.0 570 ------- null} + -t 2.29086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 610 -a 1 -x {1.0 5.0 570 ------- null} r -t 2.2924 -s 3 -d 5 -p cbr -e 210 -c 1 -i 570 -a 1 -x {1.0 5.0 531 ------- null} r -t 2.2928 -s 2 -d 3 -p cbr -e 210 -c 1 -i 589 -a 1 -x {1.0 5.0 550 ------- null} + -t 2.2928 -s 3 -d 5 -p cbr -e 210 -c 1 -i 589 -a 1 -x {1.0 5.0 550 ------- null} - -t 2.2928 -s 3 -d 5 -p cbr -e 210 -c 1 -i 589 -a 1 -x {1.0 5.0 550 ------- null} h -t 2.2928 -s 3 -d 5 -p cbr -e 210 -c 1 -i 589 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.2932 -s 2 -d 3 -p cbr -e 210 -c 1 -i 606 -a 1 -x {1.0 5.0 566 ------- null} h -t 2.2932 -s 2 -d 3 -p cbr -e 210 -c 1 -i 606 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.29375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 627 -a 1 -x {1.0 5.0 585 ------- null} - -t 2.29375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 627 -a 1 -x {1.0 5.0 585 ------- null} h -t 2.29375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 627 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.29461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 611 -a 1 -x {1.0 5.0 571 ------- null} + -t 2.29461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 611 -a 1 -x {1.0 5.0 571 ------- null} r -t 2.29576 -s 3 -d 5 -p cbr -e 210 -c 1 -i 571 -a 1 -x {1.0 5.0 532 ------- null} r -t 2.296 -s 4 -d 3 -p ack -e 40 -c 0 -i 613 -a 0 -x {4.0 0.0 13 ------- null} + -t 2.296 -s 3 -d 2 -p ack -e 40 -c 0 -i 613 -a 0 -x {4.0 0.0 13 ------- null} - -t 2.296 -s 3 -d 2 -p ack -e 40 -c 0 -i 613 -a 0 -x {4.0 0.0 13 ------- null} h -t 2.296 -s 3 -d 2 -p ack -e 40 -c 0 -i 613 -a 0 -x {4.0 0.0 -1 ------- null} r -t 2.29616 -s 2 -d 3 -p cbr -e 210 -c 1 -i 590 -a 1 -x {1.0 5.0 551 ------- null} + -t 2.29616 -s 3 -d 5 -p cbr -e 210 -c 1 -i 590 -a 1 -x {1.0 5.0 551 ------- null} - -t 2.29616 -s 3 -d 5 -p cbr -e 210 -c 1 -i 590 -a 1 -x {1.0 5.0 551 ------- null} h -t 2.29616 -s 3 -d 5 -p cbr -e 210 -c 1 -i 590 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.29656 -s 2 -d 3 -p cbr -e 210 -c 1 -i 607 -a 1 -x {1.0 5.0 567 ------- null} h -t 2.29656 -s 2 -d 3 -p cbr -e 210 -c 1 -i 607 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.2975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 628 -a 1 -x {1.0 5.0 586 ------- null} - -t 2.2975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 628 -a 1 -x {1.0 5.0 586 ------- null} h -t 2.2975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 628 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.29836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 612 -a 1 -x {1.0 5.0 572 ------- null} + -t 2.29836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 612 -a 1 -x {1.0 5.0 572 ------- null} r -t 2.29912 -s 3 -d 5 -p cbr -e 210 -c 1 -i 572 -a 1 -x {1.0 5.0 533 ------- null} r -t 2.29952 -s 2 -d 3 -p cbr -e 210 -c 1 -i 591 -a 1 -x {1.0 5.0 552 ------- null} + -t 2.29952 -s 3 -d 5 -p cbr -e 210 -c 1 -i 591 -a 1 -x {1.0 5.0 552 ------- null} - -t 2.29952 -s 3 -d 5 -p cbr -e 210 -c 1 -i 591 -a 1 -x {1.0 5.0 552 ------- null} h -t 2.29952 -s 3 -d 5 -p cbr -e 210 -c 1 -i 591 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.29992 -s 2 -d 3 -p cbr -e 210 -c 1 -i 608 -a 1 -x {1.0 5.0 568 ------- null} h -t 2.29992 -s 2 -d 3 -p cbr -e 210 -c 1 -i 608 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.30125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 629 -a 1 -x {1.0 5.0 587 ------- null} - -t 2.30125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 629 -a 1 -x {1.0 5.0 587 ------- null} h -t 2.30125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 629 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.30211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 614 -a 1 -x {1.0 5.0 573 ------- null} + -t 2.30211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 614 -a 1 -x {1.0 5.0 573 ------- null} r -t 2.30248 -s 3 -d 5 -p cbr -e 210 -c 1 -i 573 -a 1 -x {1.0 5.0 534 ------- null} r -t 2.30288 -s 2 -d 3 -p cbr -e 210 -c 1 -i 592 -a 1 -x {1.0 5.0 553 ------- null} + -t 2.30288 -s 3 -d 5 -p cbr -e 210 -c 1 -i 592 -a 1 -x {1.0 5.0 553 ------- null} - -t 2.30288 -s 3 -d 5 -p cbr -e 210 -c 1 -i 592 -a 1 -x {1.0 5.0 553 ------- null} h -t 2.30288 -s 3 -d 5 -p cbr -e 210 -c 1 -i 592 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.30328 -s 2 -d 3 -p cbr -e 210 -c 1 -i 609 -a 1 -x {1.0 5.0 569 ------- null} h -t 2.30328 -s 2 -d 3 -p cbr -e 210 -c 1 -i 609 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.30376 -s 3 -d 2 -p ack -e 40 -c 0 -i 600 -a 0 -x {4.0 0.0 13 ------- null} + -t 2.30376 -s 2 -d 0 -p ack -e 40 -c 0 -i 600 -a 0 -x {4.0 0.0 13 ------- null} - -t 2.30376 -s 2 -d 0 -p ack -e 40 -c 0 -i 600 -a 0 -x {4.0 0.0 13 ------- null} h -t 2.30376 -s 2 -d 0 -p ack -e 40 -c 0 -i 600 -a 0 -x {4.0 0.0 -1 ------- null} + -t 2.305 -s 1 -d 2 -p cbr -e 210 -c 1 -i 630 -a 1 -x {1.0 5.0 588 ------- null} - -t 2.305 -s 1 -d 2 -p cbr -e 210 -c 1 -i 630 -a 1 -x {1.0 5.0 588 ------- null} h -t 2.305 -s 1 -d 2 -p cbr -e 210 -c 1 -i 630 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.30584 -s 3 -d 5 -p cbr -e 210 -c 1 -i 577 -a 1 -x {1.0 5.0 538 ------- null} r -t 2.30586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 615 -a 1 -x {1.0 5.0 574 ------- null} + -t 2.30586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 615 -a 1 -x {1.0 5.0 574 ------- null} r -t 2.30624 -s 2 -d 3 -p cbr -e 210 -c 1 -i 593 -a 1 -x {1.0 5.0 554 ------- null} + -t 2.30624 -s 3 -d 5 -p cbr -e 210 -c 1 -i 593 -a 1 -x {1.0 5.0 554 ------- null} - -t 2.30624 -s 3 -d 5 -p cbr -e 210 -c 1 -i 593 -a 1 -x {1.0 5.0 554 ------- null} h -t 2.30624 -s 3 -d 5 -p cbr -e 210 -c 1 -i 593 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.30664 -s 2 -d 3 -p cbr -e 210 -c 1 -i 610 -a 1 -x {1.0 5.0 570 ------- null} h -t 2.30664 -s 2 -d 3 -p cbr -e 210 -c 1 -i 610 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.30875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 631 -a 1 -x {1.0 5.0 589 ------- null} - -t 2.30875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 631 -a 1 -x {1.0 5.0 589 ------- null} h -t 2.30875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 631 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.3092 -s 3 -d 5 -p cbr -e 210 -c 1 -i 578 -a 1 -x {1.0 5.0 539 ------- null} r -t 2.3096 -s 2 -d 3 -p cbr -e 210 -c 1 -i 594 -a 1 -x {1.0 5.0 555 ------- null} + -t 2.3096 -s 3 -d 5 -p cbr -e 210 -c 1 -i 594 -a 1 -x {1.0 5.0 555 ------- null} - -t 2.3096 -s 3 -d 5 -p cbr -e 210 -c 1 -i 594 -a 1 -x {1.0 5.0 555 ------- null} h -t 2.3096 -s 3 -d 5 -p cbr -e 210 -c 1 -i 594 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.30961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 616 -a 1 -x {1.0 5.0 575 ------- null} + -t 2.30961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 616 -a 1 -x {1.0 5.0 575 ------- null} - -t 2.31 -s 2 -d 3 -p cbr -e 210 -c 1 -i 611 -a 1 -x {1.0 5.0 571 ------- null} h -t 2.31 -s 2 -d 3 -p cbr -e 210 -c 1 -i 611 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.3125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 632 -a 1 -x {1.0 5.0 590 ------- null} - -t 2.3125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 632 -a 1 -x {1.0 5.0 590 ------- null} h -t 2.3125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 632 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.31256 -s 3 -d 5 -p cbr -e 210 -c 1 -i 579 -a 1 -x {1.0 5.0 540 ------- null} r -t 2.31296 -s 2 -d 3 -p cbr -e 210 -c 1 -i 595 -a 1 -x {1.0 5.0 556 ------- null} + -t 2.31296 -s 3 -d 5 -p cbr -e 210 -c 1 -i 595 -a 1 -x {1.0 5.0 556 ------- null} - -t 2.31296 -s 3 -d 5 -p cbr -e 210 -c 1 -i 595 -a 1 -x {1.0 5.0 556 ------- null} h -t 2.31296 -s 3 -d 5 -p cbr -e 210 -c 1 -i 595 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.31336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 612 -a 1 -x {1.0 5.0 572 ------- null} h -t 2.31336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 612 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.31336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 617 -a 1 -x {1.0 5.0 576 ------- null} + -t 2.31336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 617 -a 1 -x {1.0 5.0 576 ------- null} r -t 2.31592 -s 3 -d 5 -p cbr -e 210 -c 1 -i 580 -a 1 -x {1.0 5.0 541 ------- null} + -t 2.31625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 633 -a 1 -x {1.0 5.0 591 ------- null} - -t 2.31625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 633 -a 1 -x {1.0 5.0 591 ------- null} h -t 2.31625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 633 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.31632 -s 2 -d 3 -p cbr -e 210 -c 1 -i 596 -a 1 -x {1.0 5.0 557 ------- null} + -t 2.31632 -s 3 -d 5 -p cbr -e 210 -c 1 -i 596 -a 1 -x {1.0 5.0 557 ------- null} - -t 2.31632 -s 3 -d 5 -p cbr -e 210 -c 1 -i 596 -a 1 -x {1.0 5.0 557 ------- null} h -t 2.31632 -s 3 -d 5 -p cbr -e 210 -c 1 -i 596 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.31672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 614 -a 1 -x {1.0 5.0 573 ------- null} h -t 2.31672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 614 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.31711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 618 -a 1 -x {1.0 5.0 577 ------- null} + -t 2.31711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 618 -a 1 -x {1.0 5.0 577 ------- null} r -t 2.31928 -s 3 -d 5 -p cbr -e 210 -c 1 -i 581 -a 1 -x {1.0 5.0 542 ------- null} r -t 2.31968 -s 2 -d 3 -p cbr -e 210 -c 1 -i 597 -a 1 -x {1.0 5.0 558 ------- null} + -t 2.31968 -s 3 -d 5 -p cbr -e 210 -c 1 -i 597 -a 1 -x {1.0 5.0 558 ------- null} - -t 2.31968 -s 3 -d 5 -p cbr -e 210 -c 1 -i 597 -a 1 -x {1.0 5.0 558 ------- null} h -t 2.31968 -s 3 -d 5 -p cbr -e 210 -c 1 -i 597 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.32 -s 1 -d 2 -p cbr -e 210 -c 1 -i 634 -a 1 -x {1.0 5.0 592 ------- null} - -t 2.32 -s 1 -d 2 -p cbr -e 210 -c 1 -i 634 -a 1 -x {1.0 5.0 592 ------- null} h -t 2.32 -s 1 -d 2 -p cbr -e 210 -c 1 -i 634 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.32008 -s 2 -d 3 -p cbr -e 210 -c 1 -i 615 -a 1 -x {1.0 5.0 574 ------- null} h -t 2.32008 -s 2 -d 3 -p cbr -e 210 -c 1 -i 615 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.32086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 619 -a 1 -x {1.0 5.0 578 ------- null} + -t 2.32086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 619 -a 1 -x {1.0 5.0 578 ------- null} r -t 2.32264 -s 3 -d 5 -p cbr -e 210 -c 1 -i 582 -a 1 -x {1.0 5.0 543 ------- null} r -t 2.32304 -s 2 -d 3 -p cbr -e 210 -c 1 -i 598 -a 1 -x {1.0 5.0 559 ------- null} + -t 2.32304 -s 3 -d 5 -p cbr -e 210 -c 1 -i 598 -a 1 -x {1.0 5.0 559 ------- null} - -t 2.32304 -s 3 -d 5 -p cbr -e 210 -c 1 -i 598 -a 1 -x {1.0 5.0 559 ------- null} h -t 2.32304 -s 3 -d 5 -p cbr -e 210 -c 1 -i 598 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.32344 -s 2 -d 3 -p cbr -e 210 -c 1 -i 616 -a 1 -x {1.0 5.0 575 ------- null} h -t 2.32344 -s 2 -d 3 -p cbr -e 210 -c 1 -i 616 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.32375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 635 -a 1 -x {1.0 5.0 593 ------- null} - -t 2.32375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 635 -a 1 -x {1.0 5.0 593 ------- null} h -t 2.32375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 635 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.32461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 620 -a 1 -x {1.0 5.0 579 ------- null} + -t 2.32461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 620 -a 1 -x {1.0 5.0 579 ------- null} r -t 2.326 -s 3 -d 5 -p cbr -e 210 -c 1 -i 583 -a 1 -x {1.0 5.0 544 ------- null} r -t 2.3264 -s 2 -d 3 -p cbr -e 210 -c 1 -i 599 -a 1 -x {1.0 5.0 560 ------- null} + -t 2.3264 -s 3 -d 5 -p cbr -e 210 -c 1 -i 599 -a 1 -x {1.0 5.0 560 ------- null} - -t 2.3264 -s 3 -d 5 -p cbr -e 210 -c 1 -i 599 -a 1 -x {1.0 5.0 560 ------- null} h -t 2.3264 -s 3 -d 5 -p cbr -e 210 -c 1 -i 599 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.3268 -s 2 -d 3 -p cbr -e 210 -c 1 -i 617 -a 1 -x {1.0 5.0 576 ------- null} h -t 2.3268 -s 2 -d 3 -p cbr -e 210 -c 1 -i 617 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.3275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 636 -a 1 -x {1.0 5.0 594 ------- null} - -t 2.3275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 636 -a 1 -x {1.0 5.0 594 ------- null} h -t 2.3275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 636 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.32836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 621 -a 1 -x {1.0 5.0 580 ------- null} + -t 2.32836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 621 -a 1 -x {1.0 5.0 580 ------- null} r -t 2.32936 -s 3 -d 5 -p cbr -e 210 -c 1 -i 584 -a 1 -x {1.0 5.0 545 ------- null} r -t 2.32976 -s 2 -d 3 -p cbr -e 210 -c 1 -i 601 -a 1 -x {1.0 5.0 561 ------- null} + -t 2.32976 -s 3 -d 5 -p cbr -e 210 -c 1 -i 601 -a 1 -x {1.0 5.0 561 ------- null} - -t 2.32976 -s 3 -d 5 -p cbr -e 210 -c 1 -i 601 -a 1 -x {1.0 5.0 561 ------- null} h -t 2.32976 -s 3 -d 5 -p cbr -e 210 -c 1 -i 601 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.33016 -s 2 -d 3 -p cbr -e 210 -c 1 -i 618 -a 1 -x {1.0 5.0 577 ------- null} h -t 2.33016 -s 2 -d 3 -p cbr -e 210 -c 1 -i 618 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.33125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 637 -a 1 -x {1.0 5.0 595 ------- null} - -t 2.33125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 637 -a 1 -x {1.0 5.0 595 ------- null} h -t 2.33125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 637 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.33211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 622 -a 1 -x {1.0 5.0 581 ------- null} + -t 2.33211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 622 -a 1 -x {1.0 5.0 581 ------- null} r -t 2.33272 -s 3 -d 5 -p cbr -e 210 -c 1 -i 585 -a 1 -x {1.0 5.0 546 ------- null} r -t 2.33312 -s 2 -d 3 -p cbr -e 210 -c 1 -i 602 -a 1 -x {1.0 5.0 562 ------- null} + -t 2.33312 -s 3 -d 5 -p cbr -e 210 -c 1 -i 602 -a 1 -x {1.0 5.0 562 ------- null} - -t 2.33312 -s 3 -d 5 -p cbr -e 210 -c 1 -i 602 -a 1 -x {1.0 5.0 562 ------- null} h -t 2.33312 -s 3 -d 5 -p cbr -e 210 -c 1 -i 602 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.33352 -s 2 -d 3 -p cbr -e 210 -c 1 -i 619 -a 1 -x {1.0 5.0 578 ------- null} h -t 2.33352 -s 2 -d 3 -p cbr -e 210 -c 1 -i 619 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.335 -s 1 -d 2 -p cbr -e 210 -c 1 -i 638 -a 1 -x {1.0 5.0 596 ------- null} - -t 2.335 -s 1 -d 2 -p cbr -e 210 -c 1 -i 638 -a 1 -x {1.0 5.0 596 ------- null} h -t 2.335 -s 1 -d 2 -p cbr -e 210 -c 1 -i 638 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.33552 -s 4 -d 3 -p ack -e 40 -c 0 -i 624 -a 0 -x {4.0 0.0 13 ------- null} + -t 2.33552 -s 3 -d 2 -p ack -e 40 -c 0 -i 624 -a 0 -x {4.0 0.0 13 ------- null} - -t 2.33552 -s 3 -d 2 -p ack -e 40 -c 0 -i 624 -a 0 -x {4.0 0.0 13 ------- null} h -t 2.33552 -s 3 -d 2 -p ack -e 40 -c 0 -i 624 -a 0 -x {4.0 0.0 -1 ------- null} r -t 2.33586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 623 -a 1 -x {1.0 5.0 582 ------- null} + -t 2.33586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 623 -a 1 -x {1.0 5.0 582 ------- null} r -t 2.33608 -s 3 -d 5 -p cbr -e 210 -c 1 -i 586 -a 1 -x {1.0 5.0 547 ------- null} r -t 2.33648 -s 2 -d 3 -p cbr -e 210 -c 1 -i 603 -a 1 -x {1.0 5.0 563 ------- null} + -t 2.33648 -s 3 -d 5 -p cbr -e 210 -c 1 -i 603 -a 1 -x {1.0 5.0 563 ------- null} - -t 2.33648 -s 3 -d 5 -p cbr -e 210 -c 1 -i 603 -a 1 -x {1.0 5.0 563 ------- null} h -t 2.33648 -s 3 -d 5 -p cbr -e 210 -c 1 -i 603 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.33688 -s 2 -d 3 -p cbr -e 210 -c 1 -i 620 -a 1 -x {1.0 5.0 579 ------- null} h -t 2.33688 -s 2 -d 3 -p cbr -e 210 -c 1 -i 620 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.33875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 639 -a 1 -x {1.0 5.0 597 ------- null} - -t 2.33875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 639 -a 1 -x {1.0 5.0 597 ------- null} h -t 2.33875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 639 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.33944 -s 3 -d 5 -p cbr -e 210 -c 1 -i 587 -a 1 -x {1.0 5.0 548 ------- null} r -t 2.33961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 625 -a 1 -x {1.0 5.0 583 ------- null} + -t 2.33961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 625 -a 1 -x {1.0 5.0 583 ------- null} r -t 2.33984 -s 2 -d 3 -p cbr -e 210 -c 1 -i 604 -a 1 -x {1.0 5.0 564 ------- null} + -t 2.33984 -s 3 -d 5 -p cbr -e 210 -c 1 -i 604 -a 1 -x {1.0 5.0 564 ------- null} - -t 2.33984 -s 3 -d 5 -p cbr -e 210 -c 1 -i 604 -a 1 -x {1.0 5.0 564 ------- null} h -t 2.33984 -s 3 -d 5 -p cbr -e 210 -c 1 -i 604 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.34024 -s 2 -d 3 -p cbr -e 210 -c 1 -i 621 -a 1 -x {1.0 5.0 580 ------- null} h -t 2.34024 -s 2 -d 3 -p cbr -e 210 -c 1 -i 621 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.3425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 640 -a 1 -x {1.0 5.0 598 ------- null} - -t 2.3425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 640 -a 1 -x {1.0 5.0 598 ------- null} h -t 2.3425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 640 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.3428 -s 3 -d 5 -p cbr -e 210 -c 1 -i 588 -a 1 -x {1.0 5.0 549 ------- null} r -t 2.3432 -s 2 -d 3 -p cbr -e 210 -c 1 -i 605 -a 1 -x {1.0 5.0 565 ------- null} + -t 2.3432 -s 3 -d 5 -p cbr -e 210 -c 1 -i 605 -a 1 -x {1.0 5.0 565 ------- null} - -t 2.3432 -s 3 -d 5 -p cbr -e 210 -c 1 -i 605 -a 1 -x {1.0 5.0 565 ------- null} h -t 2.3432 -s 3 -d 5 -p cbr -e 210 -c 1 -i 605 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.34336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 626 -a 1 -x {1.0 5.0 584 ------- null} + -t 2.34336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 626 -a 1 -x {1.0 5.0 584 ------- null} - -t 2.3436 -s 2 -d 3 -p cbr -e 210 -c 1 -i 622 -a 1 -x {1.0 5.0 581 ------- null} h -t 2.3436 -s 2 -d 3 -p cbr -e 210 -c 1 -i 622 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.34616 -s 3 -d 5 -p cbr -e 210 -c 1 -i 589 -a 1 -x {1.0 5.0 550 ------- null} + -t 2.34625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 641 -a 1 -x {1.0 5.0 599 ------- null} - -t 2.34625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 641 -a 1 -x {1.0 5.0 599 ------- null} h -t 2.34625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 641 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.34656 -s 2 -d 3 -p cbr -e 210 -c 1 -i 606 -a 1 -x {1.0 5.0 566 ------- null} + -t 2.34656 -s 3 -d 5 -p cbr -e 210 -c 1 -i 606 -a 1 -x {1.0 5.0 566 ------- null} - -t 2.34656 -s 3 -d 5 -p cbr -e 210 -c 1 -i 606 -a 1 -x {1.0 5.0 566 ------- null} h -t 2.34656 -s 3 -d 5 -p cbr -e 210 -c 1 -i 606 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.34664 -s 3 -d 2 -p ack -e 40 -c 0 -i 613 -a 0 -x {4.0 0.0 13 ------- null} + -t 2.34664 -s 2 -d 0 -p ack -e 40 -c 0 -i 613 -a 0 -x {4.0 0.0 13 ------- null} - -t 2.34664 -s 2 -d 0 -p ack -e 40 -c 0 -i 613 -a 0 -x {4.0 0.0 13 ------- null} h -t 2.34664 -s 2 -d 0 -p ack -e 40 -c 0 -i 613 -a 0 -x {4.0 0.0 -1 ------- null} - -t 2.34696 -s 2 -d 3 -p cbr -e 210 -c 1 -i 623 -a 1 -x {1.0 5.0 582 ------- null} h -t 2.34696 -s 2 -d 3 -p cbr -e 210 -c 1 -i 623 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.34711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 627 -a 1 -x {1.0 5.0 585 ------- null} + -t 2.34711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 627 -a 1 -x {1.0 5.0 585 ------- null} r -t 2.34952 -s 3 -d 5 -p cbr -e 210 -c 1 -i 590 -a 1 -x {1.0 5.0 551 ------- null} r -t 2.34992 -s 2 -d 3 -p cbr -e 210 -c 1 -i 607 -a 1 -x {1.0 5.0 567 ------- null} + -t 2.34992 -s 3 -d 5 -p cbr -e 210 -c 1 -i 607 -a 1 -x {1.0 5.0 567 ------- null} - -t 2.34992 -s 3 -d 5 -p cbr -e 210 -c 1 -i 607 -a 1 -x {1.0 5.0 567 ------- null} h -t 2.34992 -s 3 -d 5 -p cbr -e 210 -c 1 -i 607 -a 1 -x {1.0 5.0 -1 ------- null} + -t 2.35 -s 1 -d 2 -p cbr -e 210 -c 1 -i 642 -a 1 -x {1.0 5.0 600 ------- null} - -t 2.35 -s 1 -d 2 -p cbr -e 210 -c 1 -i 642 -a 1 -x {1.0 5.0 600 ------- null} h -t 2.35 -s 1 -d 2 -p cbr -e 210 -c 1 -i 642 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.35032 -s 2 -d 3 -p cbr -e 210 -c 1 -i 625 -a 1 -x {1.0 5.0 583 ------- null} h -t 2.35032 -s 2 -d 3 -p cbr -e 210 -c 1 -i 625 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.35086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 628 -a 1 -x {1.0 5.0 586 ------- null} + -t 2.35086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 628 -a 1 -x {1.0 5.0 586 ------- null} r -t 2.35288 -s 3 -d 5 -p cbr -e 210 -c 1 -i 591 -a 1 -x {1.0 5.0 552 ------- null} r -t 2.35328 -s 2 -d 3 -p cbr -e 210 -c 1 -i 608 -a 1 -x {1.0 5.0 568 ------- null} + -t 2.35328 -s 3 -d 5 -p cbr -e 210 -c 1 -i 608 -a 1 -x {1.0 5.0 568 ------- null} - -t 2.35328 -s 3 -d 5 -p cbr -e 210 -c 1 -i 608 -a 1 -x {1.0 5.0 568 ------- null} h -t 2.35328 -s 3 -d 5 -p cbr -e 210 -c 1 -i 608 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.35368 -s 2 -d 3 -p cbr -e 210 -c 1 -i 626 -a 1 -x {1.0 5.0 584 ------- null} h -t 2.35368 -s 2 -d 3 -p cbr -e 210 -c 1 -i 626 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.3544 -s 2 -d 0 -p ack -e 40 -c 0 -i 600 -a 0 -x {4.0 0.0 13 ------- null} r -t 2.35461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 629 -a 1 -x {1.0 5.0 587 ------- null} + -t 2.35461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 629 -a 1 -x {1.0 5.0 587 ------- null} r -t 2.35624 -s 3 -d 5 -p cbr -e 210 -c 1 -i 592 -a 1 -x {1.0 5.0 553 ------- null} r -t 2.35664 -s 2 -d 3 -p cbr -e 210 -c 1 -i 609 -a 1 -x {1.0 5.0 569 ------- null} + -t 2.35664 -s 3 -d 5 -p cbr -e 210 -c 1 -i 609 -a 1 -x {1.0 5.0 569 ------- null} - -t 2.35664 -s 3 -d 5 -p cbr -e 210 -c 1 -i 609 -a 1 -x {1.0 5.0 569 ------- null} h -t 2.35664 -s 3 -d 5 -p cbr -e 210 -c 1 -i 609 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.35704 -s 2 -d 3 -p cbr -e 210 -c 1 -i 627 -a 1 -x {1.0 5.0 585 ------- null} h -t 2.35704 -s 2 -d 3 -p cbr -e 210 -c 1 -i 627 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.35836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 630 -a 1 -x {1.0 5.0 588 ------- null} + -t 2.35836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 630 -a 1 -x {1.0 5.0 588 ------- null} r -t 2.3596 -s 3 -d 5 -p cbr -e 210 -c 1 -i 593 -a 1 -x {1.0 5.0 554 ------- null} r -t 2.36 -s 2 -d 3 -p cbr -e 210 -c 1 -i 610 -a 1 -x {1.0 5.0 570 ------- null} + -t 2.36 -s 3 -d 5 -p cbr -e 210 -c 1 -i 610 -a 1 -x {1.0 5.0 570 ------- null} - -t 2.36 -s 3 -d 5 -p cbr -e 210 -c 1 -i 610 -a 1 -x {1.0 5.0 570 ------- null} h -t 2.36 -s 3 -d 5 -p cbr -e 210 -c 1 -i 610 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.3604 -s 2 -d 3 -p cbr -e 210 -c 1 -i 628 -a 1 -x {1.0 5.0 586 ------- null} h -t 2.3604 -s 2 -d 3 -p cbr -e 210 -c 1 -i 628 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.36211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 631 -a 1 -x {1.0 5.0 589 ------- null} + -t 2.36211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 631 -a 1 -x {1.0 5.0 589 ------- null} r -t 2.36296 -s 3 -d 5 -p cbr -e 210 -c 1 -i 594 -a 1 -x {1.0 5.0 555 ------- null} r -t 2.36336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 611 -a 1 -x {1.0 5.0 571 ------- null} + -t 2.36336 -s 3 -d 5 -p cbr -e 210 -c 1 -i 611 -a 1 -x {1.0 5.0 571 ------- null} - -t 2.36336 -s 3 -d 5 -p cbr -e 210 -c 1 -i 611 -a 1 -x {1.0 5.0 571 ------- null} h -t 2.36336 -s 3 -d 5 -p cbr -e 210 -c 1 -i 611 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.36376 -s 2 -d 3 -p cbr -e 210 -c 1 -i 629 -a 1 -x {1.0 5.0 587 ------- null} h -t 2.36376 -s 2 -d 3 -p cbr -e 210 -c 1 -i 629 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.36586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 632 -a 1 -x {1.0 5.0 590 ------- null} + -t 2.36586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 632 -a 1 -x {1.0 5.0 590 ------- null} r -t 2.36632 -s 3 -d 5 -p cbr -e 210 -c 1 -i 595 -a 1 -x {1.0 5.0 556 ------- null} r -t 2.36672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 612 -a 1 -x {1.0 5.0 572 ------- null} + -t 2.36672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 612 -a 1 -x {1.0 5.0 572 ------- null} - -t 2.36672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 612 -a 1 -x {1.0 5.0 572 ------- null} h -t 2.36672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 612 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.36712 -s 2 -d 3 -p cbr -e 210 -c 1 -i 630 -a 1 -x {1.0 5.0 588 ------- null} h -t 2.36712 -s 2 -d 3 -p cbr -e 210 -c 1 -i 630 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.36961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 633 -a 1 -x {1.0 5.0 591 ------- null} + -t 2.36961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 633 -a 1 -x {1.0 5.0 591 ------- null} r -t 2.36968 -s 3 -d 5 -p cbr -e 210 -c 1 -i 596 -a 1 -x {1.0 5.0 557 ------- null} r -t 2.37008 -s 2 -d 3 -p cbr -e 210 -c 1 -i 614 -a 1 -x {1.0 5.0 573 ------- null} + -t 2.37008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 614 -a 1 -x {1.0 5.0 573 ------- null} - -t 2.37008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 614 -a 1 -x {1.0 5.0 573 ------- null} h -t 2.37008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 614 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.37048 -s 2 -d 3 -p cbr -e 210 -c 1 -i 631 -a 1 -x {1.0 5.0 589 ------- null} h -t 2.37048 -s 2 -d 3 -p cbr -e 210 -c 1 -i 631 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.37304 -s 3 -d 5 -p cbr -e 210 -c 1 -i 597 -a 1 -x {1.0 5.0 558 ------- null} r -t 2.37336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 634 -a 1 -x {1.0 5.0 592 ------- null} + -t 2.37336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 634 -a 1 -x {1.0 5.0 592 ------- null} r -t 2.37344 -s 2 -d 3 -p cbr -e 210 -c 1 -i 615 -a 1 -x {1.0 5.0 574 ------- null} + -t 2.37344 -s 3 -d 5 -p cbr -e 210 -c 1 -i 615 -a 1 -x {1.0 5.0 574 ------- null} - -t 2.37344 -s 3 -d 5 -p cbr -e 210 -c 1 -i 615 -a 1 -x {1.0 5.0 574 ------- null} h -t 2.37344 -s 3 -d 5 -p cbr -e 210 -c 1 -i 615 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.37384 -s 2 -d 3 -p cbr -e 210 -c 1 -i 632 -a 1 -x {1.0 5.0 590 ------- null} h -t 2.37384 -s 2 -d 3 -p cbr -e 210 -c 1 -i 632 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.3764 -s 3 -d 5 -p cbr -e 210 -c 1 -i 598 -a 1 -x {1.0 5.0 559 ------- null} r -t 2.3768 -s 2 -d 3 -p cbr -e 210 -c 1 -i 616 -a 1 -x {1.0 5.0 575 ------- null} + -t 2.3768 -s 3 -d 5 -p cbr -e 210 -c 1 -i 616 -a 1 -x {1.0 5.0 575 ------- null} - -t 2.3768 -s 3 -d 5 -p cbr -e 210 -c 1 -i 616 -a 1 -x {1.0 5.0 575 ------- null} h -t 2.3768 -s 3 -d 5 -p cbr -e 210 -c 1 -i 616 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.37711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 635 -a 1 -x {1.0 5.0 593 ------- null} + -t 2.37711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 635 -a 1 -x {1.0 5.0 593 ------- null} - -t 2.3772 -s 2 -d 3 -p cbr -e 210 -c 1 -i 633 -a 1 -x {1.0 5.0 591 ------- null} h -t 2.3772 -s 2 -d 3 -p cbr -e 210 -c 1 -i 633 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.37976 -s 3 -d 5 -p cbr -e 210 -c 1 -i 599 -a 1 -x {1.0 5.0 560 ------- null} r -t 2.38016 -s 2 -d 3 -p cbr -e 210 -c 1 -i 617 -a 1 -x {1.0 5.0 576 ------- null} + -t 2.38016 -s 3 -d 5 -p cbr -e 210 -c 1 -i 617 -a 1 -x {1.0 5.0 576 ------- null} - -t 2.38016 -s 3 -d 5 -p cbr -e 210 -c 1 -i 617 -a 1 -x {1.0 5.0 576 ------- null} h -t 2.38016 -s 3 -d 5 -p cbr -e 210 -c 1 -i 617 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.38056 -s 2 -d 3 -p cbr -e 210 -c 1 -i 634 -a 1 -x {1.0 5.0 592 ------- null} h -t 2.38056 -s 2 -d 3 -p cbr -e 210 -c 1 -i 634 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.38086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 636 -a 1 -x {1.0 5.0 594 ------- null} + -t 2.38086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 636 -a 1 -x {1.0 5.0 594 ------- null} r -t 2.38312 -s 3 -d 5 -p cbr -e 210 -c 1 -i 601 -a 1 -x {1.0 5.0 561 ------- null} r -t 2.38352 -s 2 -d 3 -p cbr -e 210 -c 1 -i 618 -a 1 -x {1.0 5.0 577 ------- null} + -t 2.38352 -s 3 -d 5 -p cbr -e 210 -c 1 -i 618 -a 1 -x {1.0 5.0 577 ------- null} - -t 2.38352 -s 3 -d 5 -p cbr -e 210 -c 1 -i 618 -a 1 -x {1.0 5.0 577 ------- null} h -t 2.38352 -s 3 -d 5 -p cbr -e 210 -c 1 -i 618 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.38392 -s 2 -d 3 -p cbr -e 210 -c 1 -i 635 -a 1 -x {1.0 5.0 593 ------- null} h -t 2.38392 -s 2 -d 3 -p cbr -e 210 -c 1 -i 635 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.38461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 637 -a 1 -x {1.0 5.0 595 ------- null} + -t 2.38461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 637 -a 1 -x {1.0 5.0 595 ------- null} r -t 2.38616 -s 3 -d 2 -p ack -e 40 -c 0 -i 624 -a 0 -x {4.0 0.0 13 ------- null} + -t 2.38616 -s 2 -d 0 -p ack -e 40 -c 0 -i 624 -a 0 -x {4.0 0.0 13 ------- null} - -t 2.38616 -s 2 -d 0 -p ack -e 40 -c 0 -i 624 -a 0 -x {4.0 0.0 13 ------- null} h -t 2.38616 -s 2 -d 0 -p ack -e 40 -c 0 -i 624 -a 0 -x {4.0 0.0 -1 ------- null} r -t 2.38648 -s 3 -d 5 -p cbr -e 210 -c 1 -i 602 -a 1 -x {1.0 5.0 562 ------- null} r -t 2.38688 -s 2 -d 3 -p cbr -e 210 -c 1 -i 619 -a 1 -x {1.0 5.0 578 ------- null} + -t 2.38688 -s 3 -d 5 -p cbr -e 210 -c 1 -i 619 -a 1 -x {1.0 5.0 578 ------- null} - -t 2.38688 -s 3 -d 5 -p cbr -e 210 -c 1 -i 619 -a 1 -x {1.0 5.0 578 ------- null} h -t 2.38688 -s 3 -d 5 -p cbr -e 210 -c 1 -i 619 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.38728 -s 2 -d 3 -p cbr -e 210 -c 1 -i 636 -a 1 -x {1.0 5.0 594 ------- null} h -t 2.38728 -s 2 -d 3 -p cbr -e 210 -c 1 -i 636 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.38836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 638 -a 1 -x {1.0 5.0 596 ------- null} + -t 2.38836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 638 -a 1 -x {1.0 5.0 596 ------- null} r -t 2.38984 -s 3 -d 5 -p cbr -e 210 -c 1 -i 603 -a 1 -x {1.0 5.0 563 ------- null} r -t 2.39024 -s 2 -d 3 -p cbr -e 210 -c 1 -i 620 -a 1 -x {1.0 5.0 579 ------- null} + -t 2.39024 -s 3 -d 5 -p cbr -e 210 -c 1 -i 620 -a 1 -x {1.0 5.0 579 ------- null} - -t 2.39024 -s 3 -d 5 -p cbr -e 210 -c 1 -i 620 -a 1 -x {1.0 5.0 579 ------- null} h -t 2.39024 -s 3 -d 5 -p cbr -e 210 -c 1 -i 620 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.39064 -s 2 -d 3 -p cbr -e 210 -c 1 -i 637 -a 1 -x {1.0 5.0 595 ------- null} h -t 2.39064 -s 2 -d 3 -p cbr -e 210 -c 1 -i 637 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.39211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 639 -a 1 -x {1.0 5.0 597 ------- null} + -t 2.39211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 639 -a 1 -x {1.0 5.0 597 ------- null} r -t 2.3932 -s 3 -d 5 -p cbr -e 210 -c 1 -i 604 -a 1 -x {1.0 5.0 564 ------- null} r -t 2.3936 -s 2 -d 3 -p cbr -e 210 -c 1 -i 621 -a 1 -x {1.0 5.0 580 ------- null} + -t 2.3936 -s 3 -d 5 -p cbr -e 210 -c 1 -i 621 -a 1 -x {1.0 5.0 580 ------- null} - -t 2.3936 -s 3 -d 5 -p cbr -e 210 -c 1 -i 621 -a 1 -x {1.0 5.0 580 ------- null} h -t 2.3936 -s 3 -d 5 -p cbr -e 210 -c 1 -i 621 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.394 -s 2 -d 3 -p cbr -e 210 -c 1 -i 638 -a 1 -x {1.0 5.0 596 ------- null} h -t 2.394 -s 2 -d 3 -p cbr -e 210 -c 1 -i 638 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.39586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 640 -a 1 -x {1.0 5.0 598 ------- null} + -t 2.39586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 640 -a 1 -x {1.0 5.0 598 ------- null} r -t 2.39656 -s 3 -d 5 -p cbr -e 210 -c 1 -i 605 -a 1 -x {1.0 5.0 565 ------- null} r -t 2.39696 -s 2 -d 3 -p cbr -e 210 -c 1 -i 622 -a 1 -x {1.0 5.0 581 ------- null} + -t 2.39696 -s 3 -d 5 -p cbr -e 210 -c 1 -i 622 -a 1 -x {1.0 5.0 581 ------- null} - -t 2.39696 -s 3 -d 5 -p cbr -e 210 -c 1 -i 622 -a 1 -x {1.0 5.0 581 ------- null} h -t 2.39696 -s 3 -d 5 -p cbr -e 210 -c 1 -i 622 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.39728 -s 2 -d 0 -p ack -e 40 -c 0 -i 613 -a 0 -x {4.0 0.0 13 ------- null} - -t 2.39736 -s 2 -d 3 -p cbr -e 210 -c 1 -i 639 -a 1 -x {1.0 5.0 597 ------- null} h -t 2.39736 -s 2 -d 3 -p cbr -e 210 -c 1 -i 639 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.39961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 641 -a 1 -x {1.0 5.0 599 ------- null} + -t 2.39961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 641 -a 1 -x {1.0 5.0 599 ------- null} r -t 2.39992 -s 3 -d 5 -p cbr -e 210 -c 1 -i 606 -a 1 -x {1.0 5.0 566 ------- null} r -t 2.40032 -s 2 -d 3 -p cbr -e 210 -c 1 -i 623 -a 1 -x {1.0 5.0 582 ------- null} + -t 2.40032 -s 3 -d 5 -p cbr -e 210 -c 1 -i 623 -a 1 -x {1.0 5.0 582 ------- null} - -t 2.40032 -s 3 -d 5 -p cbr -e 210 -c 1 -i 623 -a 1 -x {1.0 5.0 582 ------- null} h -t 2.40032 -s 3 -d 5 -p cbr -e 210 -c 1 -i 623 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.40072 -s 2 -d 3 -p cbr -e 210 -c 1 -i 640 -a 1 -x {1.0 5.0 598 ------- null} h -t 2.40072 -s 2 -d 3 -p cbr -e 210 -c 1 -i 640 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.40328 -s 3 -d 5 -p cbr -e 210 -c 1 -i 607 -a 1 -x {1.0 5.0 567 ------- null} r -t 2.40336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 642 -a 1 -x {1.0 5.0 600 ------- null} + -t 2.40336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 642 -a 1 -x {1.0 5.0 600 ------- null} r -t 2.40368 -s 2 -d 3 -p cbr -e 210 -c 1 -i 625 -a 1 -x {1.0 5.0 583 ------- null} + -t 2.40368 -s 3 -d 5 -p cbr -e 210 -c 1 -i 625 -a 1 -x {1.0 5.0 583 ------- null} - -t 2.40368 -s 3 -d 5 -p cbr -e 210 -c 1 -i 625 -a 1 -x {1.0 5.0 583 ------- null} h -t 2.40368 -s 3 -d 5 -p cbr -e 210 -c 1 -i 625 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.40408 -s 2 -d 3 -p cbr -e 210 -c 1 -i 641 -a 1 -x {1.0 5.0 599 ------- null} h -t 2.40408 -s 2 -d 3 -p cbr -e 210 -c 1 -i 641 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.40664 -s 3 -d 5 -p cbr -e 210 -c 1 -i 608 -a 1 -x {1.0 5.0 568 ------- null} r -t 2.40704 -s 2 -d 3 -p cbr -e 210 -c 1 -i 626 -a 1 -x {1.0 5.0 584 ------- null} + -t 2.40704 -s 3 -d 5 -p cbr -e 210 -c 1 -i 626 -a 1 -x {1.0 5.0 584 ------- null} - -t 2.40704 -s 3 -d 5 -p cbr -e 210 -c 1 -i 626 -a 1 -x {1.0 5.0 584 ------- null} h -t 2.40704 -s 3 -d 5 -p cbr -e 210 -c 1 -i 626 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.40744 -s 2 -d 3 -p cbr -e 210 -c 1 -i 642 -a 1 -x {1.0 5.0 600 ------- null} h -t 2.40744 -s 2 -d 3 -p cbr -e 210 -c 1 -i 642 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.41 -s 3 -d 5 -p cbr -e 210 -c 1 -i 609 -a 1 -x {1.0 5.0 569 ------- null} r -t 2.4104 -s 2 -d 3 -p cbr -e 210 -c 1 -i 627 -a 1 -x {1.0 5.0 585 ------- null} + -t 2.4104 -s 3 -d 5 -p cbr -e 210 -c 1 -i 627 -a 1 -x {1.0 5.0 585 ------- null} - -t 2.4104 -s 3 -d 5 -p cbr -e 210 -c 1 -i 627 -a 1 -x {1.0 5.0 585 ------- null} h -t 2.4104 -s 3 -d 5 -p cbr -e 210 -c 1 -i 627 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.41336 -s 3 -d 5 -p cbr -e 210 -c 1 -i 610 -a 1 -x {1.0 5.0 570 ------- null} r -t 2.41376 -s 2 -d 3 -p cbr -e 210 -c 1 -i 628 -a 1 -x {1.0 5.0 586 ------- null} + -t 2.41376 -s 3 -d 5 -p cbr -e 210 -c 1 -i 628 -a 1 -x {1.0 5.0 586 ------- null} - -t 2.41376 -s 3 -d 5 -p cbr -e 210 -c 1 -i 628 -a 1 -x {1.0 5.0 586 ------- null} h -t 2.41376 -s 3 -d 5 -p cbr -e 210 -c 1 -i 628 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.41672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 611 -a 1 -x {1.0 5.0 571 ------- null} r -t 2.41712 -s 2 -d 3 -p cbr -e 210 -c 1 -i 629 -a 1 -x {1.0 5.0 587 ------- null} + -t 2.41712 -s 3 -d 5 -p cbr -e 210 -c 1 -i 629 -a 1 -x {1.0 5.0 587 ------- null} - -t 2.41712 -s 3 -d 5 -p cbr -e 210 -c 1 -i 629 -a 1 -x {1.0 5.0 587 ------- null} h -t 2.41712 -s 3 -d 5 -p cbr -e 210 -c 1 -i 629 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.42008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 612 -a 1 -x {1.0 5.0 572 ------- null} r -t 2.42048 -s 2 -d 3 -p cbr -e 210 -c 1 -i 630 -a 1 -x {1.0 5.0 588 ------- null} + -t 2.42048 -s 3 -d 5 -p cbr -e 210 -c 1 -i 630 -a 1 -x {1.0 5.0 588 ------- null} - -t 2.42048 -s 3 -d 5 -p cbr -e 210 -c 1 -i 630 -a 1 -x {1.0 5.0 588 ------- null} h -t 2.42048 -s 3 -d 5 -p cbr -e 210 -c 1 -i 630 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.42344 -s 3 -d 5 -p cbr -e 210 -c 1 -i 614 -a 1 -x {1.0 5.0 573 ------- null} r -t 2.42384 -s 2 -d 3 -p cbr -e 210 -c 1 -i 631 -a 1 -x {1.0 5.0 589 ------- null} + -t 2.42384 -s 3 -d 5 -p cbr -e 210 -c 1 -i 631 -a 1 -x {1.0 5.0 589 ------- null} - -t 2.42384 -s 3 -d 5 -p cbr -e 210 -c 1 -i 631 -a 1 -x {1.0 5.0 589 ------- null} h -t 2.42384 -s 3 -d 5 -p cbr -e 210 -c 1 -i 631 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.4268 -s 3 -d 5 -p cbr -e 210 -c 1 -i 615 -a 1 -x {1.0 5.0 574 ------- null} r -t 2.4272 -s 2 -d 3 -p cbr -e 210 -c 1 -i 632 -a 1 -x {1.0 5.0 590 ------- null} + -t 2.4272 -s 3 -d 5 -p cbr -e 210 -c 1 -i 632 -a 1 -x {1.0 5.0 590 ------- null} - -t 2.4272 -s 3 -d 5 -p cbr -e 210 -c 1 -i 632 -a 1 -x {1.0 5.0 590 ------- null} h -t 2.4272 -s 3 -d 5 -p cbr -e 210 -c 1 -i 632 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.43016 -s 3 -d 5 -p cbr -e 210 -c 1 -i 616 -a 1 -x {1.0 5.0 575 ------- null} r -t 2.43056 -s 2 -d 3 -p cbr -e 210 -c 1 -i 633 -a 1 -x {1.0 5.0 591 ------- null} + -t 2.43056 -s 3 -d 5 -p cbr -e 210 -c 1 -i 633 -a 1 -x {1.0 5.0 591 ------- null} - -t 2.43056 -s 3 -d 5 -p cbr -e 210 -c 1 -i 633 -a 1 -x {1.0 5.0 591 ------- null} h -t 2.43056 -s 3 -d 5 -p cbr -e 210 -c 1 -i 633 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.43352 -s 3 -d 5 -p cbr -e 210 -c 1 -i 617 -a 1 -x {1.0 5.0 576 ------- null} r -t 2.43392 -s 2 -d 3 -p cbr -e 210 -c 1 -i 634 -a 1 -x {1.0 5.0 592 ------- null} + -t 2.43392 -s 3 -d 5 -p cbr -e 210 -c 1 -i 634 -a 1 -x {1.0 5.0 592 ------- null} - -t 2.43392 -s 3 -d 5 -p cbr -e 210 -c 1 -i 634 -a 1 -x {1.0 5.0 592 ------- null} h -t 2.43392 -s 3 -d 5 -p cbr -e 210 -c 1 -i 634 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.4368 -s 2 -d 0 -p ack -e 40 -c 0 -i 624 -a 0 -x {4.0 0.0 13 ------- null} + -t 2.4368 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 643 -a 0 -x {0.0 4.0 14 ------- null} - -t 2.4368 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 643 -a 0 -x {0.0 4.0 14 ------- null} h -t 2.4368 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 643 -a 0 -x {0.0 4.0 -1 ------- null} + -t 2.4368 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 644 -a 0 -x {0.0 4.0 15 ------- null} + -t 2.4368 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 645 -a 0 -x {0.0 4.0 16 ------- null} r -t 2.43688 -s 3 -d 5 -p cbr -e 210 -c 1 -i 618 -a 1 -x {1.0 5.0 577 ------- null} r -t 2.43728 -s 2 -d 3 -p cbr -e 210 -c 1 -i 635 -a 1 -x {1.0 5.0 593 ------- null} + -t 2.43728 -s 3 -d 5 -p cbr -e 210 -c 1 -i 635 -a 1 -x {1.0 5.0 593 ------- null} - -t 2.43728 -s 3 -d 5 -p cbr -e 210 -c 1 -i 635 -a 1 -x {1.0 5.0 593 ------- null} h -t 2.43728 -s 3 -d 5 -p cbr -e 210 -c 1 -i 635 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.44024 -s 3 -d 5 -p cbr -e 210 -c 1 -i 619 -a 1 -x {1.0 5.0 578 ------- null} r -t 2.44064 -s 2 -d 3 -p cbr -e 210 -c 1 -i 636 -a 1 -x {1.0 5.0 594 ------- null} + -t 2.44064 -s 3 -d 5 -p cbr -e 210 -c 1 -i 636 -a 1 -x {1.0 5.0 594 ------- null} - -t 2.44064 -s 3 -d 5 -p cbr -e 210 -c 1 -i 636 -a 1 -x {1.0 5.0 594 ------- null} h -t 2.44064 -s 3 -d 5 -p cbr -e 210 -c 1 -i 636 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.4436 -s 3 -d 5 -p cbr -e 210 -c 1 -i 620 -a 1 -x {1.0 5.0 579 ------- null} r -t 2.444 -s 2 -d 3 -p cbr -e 210 -c 1 -i 637 -a 1 -x {1.0 5.0 595 ------- null} + -t 2.444 -s 3 -d 5 -p cbr -e 210 -c 1 -i 637 -a 1 -x {1.0 5.0 595 ------- null} - -t 2.444 -s 3 -d 5 -p cbr -e 210 -c 1 -i 637 -a 1 -x {1.0 5.0 595 ------- null} h -t 2.444 -s 3 -d 5 -p cbr -e 210 -c 1 -i 637 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.44696 -s 3 -d 5 -p cbr -e 210 -c 1 -i 621 -a 1 -x {1.0 5.0 580 ------- null} r -t 2.44736 -s 2 -d 3 -p cbr -e 210 -c 1 -i 638 -a 1 -x {1.0 5.0 596 ------- null} + -t 2.44736 -s 3 -d 5 -p cbr -e 210 -c 1 -i 638 -a 1 -x {1.0 5.0 596 ------- null} - -t 2.44736 -s 3 -d 5 -p cbr -e 210 -c 1 -i 638 -a 1 -x {1.0 5.0 596 ------- null} h -t 2.44736 -s 3 -d 5 -p cbr -e 210 -c 1 -i 638 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.45032 -s 3 -d 5 -p cbr -e 210 -c 1 -i 622 -a 1 -x {1.0 5.0 581 ------- null} r -t 2.45072 -s 2 -d 3 -p cbr -e 210 -c 1 -i 639 -a 1 -x {1.0 5.0 597 ------- null} + -t 2.45072 -s 3 -d 5 -p cbr -e 210 -c 1 -i 639 -a 1 -x {1.0 5.0 597 ------- null} - -t 2.45072 -s 3 -d 5 -p cbr -e 210 -c 1 -i 639 -a 1 -x {1.0 5.0 597 ------- null} h -t 2.45072 -s 3 -d 5 -p cbr -e 210 -c 1 -i 639 -a 1 -x {1.0 5.0 -1 ------- null} - -t 2.4528 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 644 -a 0 -x {0.0 4.0 15 ------- null} h -t 2.4528 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 644 -a 0 -x {0.0 4.0 -1 ------- null} r -t 2.45368 -s 3 -d 5 -p cbr -e 210 -c 1 -i 623 -a 1 -x {1.0 5.0 582 ------- null} r -t 2.45408 -s 2 -d 3 -p cbr -e 210 -c 1 -i 640 -a 1 -x {1.0 5.0 598 ------- null} + -t 2.45408 -s 3 -d 5 -p cbr -e 210 -c 1 -i 640 -a 1 -x {1.0 5.0 598 ------- null} - -t 2.45408 -s 3 -d 5 -p cbr -e 210 -c 1 -i 640 -a 1 -x {1.0 5.0 598 ------- null} h -t 2.45408 -s 3 -d 5 -p cbr -e 210 -c 1 -i 640 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.45704 -s 3 -d 5 -p cbr -e 210 -c 1 -i 625 -a 1 -x {1.0 5.0 583 ------- null} r -t 2.45744 -s 2 -d 3 -p cbr -e 210 -c 1 -i 641 -a 1 -x {1.0 5.0 599 ------- null} + -t 2.45744 -s 3 -d 5 -p cbr -e 210 -c 1 -i 641 -a 1 -x {1.0 5.0 599 ------- null} - -t 2.45744 -s 3 -d 5 -p cbr -e 210 -c 1 -i 641 -a 1 -x {1.0 5.0 599 ------- null} h -t 2.45744 -s 3 -d 5 -p cbr -e 210 -c 1 -i 641 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.4604 -s 3 -d 5 -p cbr -e 210 -c 1 -i 626 -a 1 -x {1.0 5.0 584 ------- null} r -t 2.4608 -s 2 -d 3 -p cbr -e 210 -c 1 -i 642 -a 1 -x {1.0 5.0 600 ------- null} + -t 2.4608 -s 3 -d 5 -p cbr -e 210 -c 1 -i 642 -a 1 -x {1.0 5.0 600 ------- null} - -t 2.4608 -s 3 -d 5 -p cbr -e 210 -c 1 -i 642 -a 1 -x {1.0 5.0 600 ------- null} h -t 2.4608 -s 3 -d 5 -p cbr -e 210 -c 1 -i 642 -a 1 -x {1.0 5.0 -1 ------- null} r -t 2.46376 -s 3 -d 5 -p cbr -e 210 -c 1 -i 627 -a 1 -x {1.0 5.0 585 ------- null} r -t 2.46712 -s 3 -d 5 -p cbr -e 210 -c 1 -i 628 -a 1 -x {1.0 5.0 586 ------- null} - -t 2.4688 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 645 -a 0 -x {0.0 4.0 16 ------- null} h -t 2.4688 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 645 -a 0 -x {0.0 4.0 -1 ------- null} r -t 2.47048 -s 3 -d 5 -p cbr -e 210 -c 1 -i 629 -a 1 -x {1.0 5.0 587 ------- null} r -t 2.47384 -s 3 -d 5 -p cbr -e 210 -c 1 -i 630 -a 1 -x {1.0 5.0 588 ------- null} r -t 2.4772 -s 3 -d 5 -p cbr -e 210 -c 1 -i 631 -a 1 -x {1.0 5.0 589 ------- null} r -t 2.48056 -s 3 -d 5 -p cbr -e 210 -c 1 -i 632 -a 1 -x {1.0 5.0 590 ------- null} r -t 2.48392 -s 3 -d 5 -p cbr -e 210 -c 1 -i 633 -a 1 -x {1.0 5.0 591 ------- null} r -t 2.48728 -s 3 -d 5 -p cbr -e 210 -c 1 -i 634 -a 1 -x {1.0 5.0 592 ------- null} r -t 2.49064 -s 3 -d 5 -p cbr -e 210 -c 1 -i 635 -a 1 -x {1.0 5.0 593 ------- null} r -t 2.494 -s 3 -d 5 -p cbr -e 210 -c 1 -i 636 -a 1 -x {1.0 5.0 594 ------- null} r -t 2.49736 -s 3 -d 5 -p cbr -e 210 -c 1 -i 637 -a 1 -x {1.0 5.0 595 ------- null} r -t 2.50072 -s 3 -d 5 -p cbr -e 210 -c 1 -i 638 -a 1 -x {1.0 5.0 596 ------- null} r -t 2.5028 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 643 -a 0 -x {0.0 4.0 14 ------- null} + -t 2.5028 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 643 -a 0 -x {0.0 4.0 14 ------- null} - -t 2.5028 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 643 -a 0 -x {0.0 4.0 14 ------- null} h -t 2.5028 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 643 -a 0 -x {0.0 4.0 -1 ------- null} r -t 2.50408 -s 3 -d 5 -p cbr -e 210 -c 1 -i 639 -a 1 -x {1.0 5.0 597 ------- null} r -t 2.50744 -s 3 -d 5 -p cbr -e 210 -c 1 -i 640 -a 1 -x {1.0 5.0 598 ------- null} r -t 2.5108 -s 3 -d 5 -p cbr -e 210 -c 1 -i 641 -a 1 -x {1.0 5.0 599 ------- null} r -t 2.51416 -s 3 -d 5 -p cbr -e 210 -c 1 -i 642 -a 1 -x {1.0 5.0 600 ------- null} r -t 2.5188 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 644 -a 0 -x {0.0 4.0 15 ------- null} + -t 2.5188 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 644 -a 0 -x {0.0 4.0 15 ------- null} - -t 2.5188 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 644 -a 0 -x {0.0 4.0 15 ------- null} h -t 2.5188 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 644 -a 0 -x {0.0 4.0 -1 ------- null} r -t 2.5348 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 645 -a 0 -x {0.0 4.0 16 ------- null} + -t 2.5348 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 645 -a 0 -x {0.0 4.0 16 ------- null} - -t 2.5348 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 645 -a 0 -x {0.0 4.0 16 ------- null} h -t 2.5348 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 645 -a 0 -x {0.0 4.0 -1 ------- null} r -t 2.5688 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 643 -a 0 -x {0.0 4.0 14 ------- null} + -t 2.5688 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 643 -a 0 -x {0.0 4.0 14 ------- null} - -t 2.5688 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 643 -a 0 -x {0.0 4.0 14 ------- null} h -t 2.5688 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 643 -a 0 -x {0.0 4.0 -1 ------- null} r -t 2.5848 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 644 -a 0 -x {0.0 4.0 15 ------- null} + -t 2.5848 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 644 -a 0 -x {0.0 4.0 15 ------- null} - -t 2.5848 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 644 -a 0 -x {0.0 4.0 15 ------- null} h -t 2.5848 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 644 -a 0 -x {0.0 4.0 -1 ------- null} r -t 2.6008 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 645 -a 0 -x {0.0 4.0 16 ------- null} + -t 2.6008 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 645 -a 0 -x {0.0 4.0 16 ------- null} - -t 2.6008 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 645 -a 0 -x {0.0 4.0 16 ------- null} h -t 2.6008 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 645 -a 0 -x {0.0 4.0 -1 ------- null} r -t 2.6348 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 643 -a 0 -x {0.0 4.0 14 ------- null} + -t 2.6348 -s 4 -d 3 -p ack -e 40 -c 0 -i 646 -a 0 -x {4.0 0.0 14 ------- null} - -t 2.6348 -s 4 -d 3 -p ack -e 40 -c 0 -i 646 -a 0 -x {4.0 0.0 14 ------- null} h -t 2.6348 -s 4 -d 3 -p ack -e 40 -c 0 -i 646 -a 0 -x {4.0 0.0 -1 ------- null} r -t 2.6508 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 644 -a 0 -x {0.0 4.0 15 ------- null} + -t 2.6508 -s 4 -d 3 -p ack -e 40 -c 0 -i 647 -a 0 -x {4.0 0.0 15 ------- null} - -t 2.6508 -s 4 -d 3 -p ack -e 40 -c 0 -i 647 -a 0 -x {4.0 0.0 15 ------- null} h -t 2.6508 -s 4 -d 3 -p ack -e 40 -c 0 -i 647 -a 0 -x {4.0 0.0 -1 ------- null} r -t 2.6668 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 645 -a 0 -x {0.0 4.0 16 ------- null} + -t 2.6668 -s 4 -d 3 -p ack -e 40 -c 0 -i 648 -a 0 -x {4.0 0.0 16 ------- null} - -t 2.6668 -s 4 -d 3 -p ack -e 40 -c 0 -i 648 -a 0 -x {4.0 0.0 16 ------- null} h -t 2.6668 -s 4 -d 3 -p ack -e 40 -c 0 -i 648 -a 0 -x {4.0 0.0 -1 ------- null} r -t 2.68544 -s 4 -d 3 -p ack -e 40 -c 0 -i 646 -a 0 -x {4.0 0.0 14 ------- null} + -t 2.68544 -s 3 -d 2 -p ack -e 40 -c 0 -i 646 -a 0 -x {4.0 0.0 14 ------- null} - -t 2.68544 -s 3 -d 2 -p ack -e 40 -c 0 -i 646 -a 0 -x {4.0 0.0 14 ------- null} h -t 2.68544 -s 3 -d 2 -p ack -e 40 -c 0 -i 646 -a 0 -x {4.0 0.0 -1 ------- null} r -t 2.70144 -s 4 -d 3 -p ack -e 40 -c 0 -i 647 -a 0 -x {4.0 0.0 15 ------- null} + -t 2.70144 -s 3 -d 2 -p ack -e 40 -c 0 -i 647 -a 0 -x {4.0 0.0 15 ------- null} - -t 2.70144 -s 3 -d 2 -p ack -e 40 -c 0 -i 647 -a 0 -x {4.0 0.0 15 ------- null} h -t 2.70144 -s 3 -d 2 -p ack -e 40 -c 0 -i 647 -a 0 -x {4.0 0.0 -1 ------- null} r -t 2.71744 -s 4 -d 3 -p ack -e 40 -c 0 -i 648 -a 0 -x {4.0 0.0 16 ------- null} + -t 2.71744 -s 3 -d 2 -p ack -e 40 -c 0 -i 648 -a 0 -x {4.0 0.0 16 ------- null} - -t 2.71744 -s 3 -d 2 -p ack -e 40 -c 0 -i 648 -a 0 -x {4.0 0.0 16 ------- null} h -t 2.71744 -s 3 -d 2 -p ack -e 40 -c 0 -i 648 -a 0 -x {4.0 0.0 -1 ------- null} r -t 2.73608 -s 3 -d 2 -p ack -e 40 -c 0 -i 646 -a 0 -x {4.0 0.0 14 ------- null} + -t 2.73608 -s 2 -d 0 -p ack -e 40 -c 0 -i 646 -a 0 -x {4.0 0.0 14 ------- null} - -t 2.73608 -s 2 -d 0 -p ack -e 40 -c 0 -i 646 -a 0 -x {4.0 0.0 14 ------- null} h -t 2.73608 -s 2 -d 0 -p ack -e 40 -c 0 -i 646 -a 0 -x {4.0 0.0 -1 ------- null} r -t 2.75208 -s 3 -d 2 -p ack -e 40 -c 0 -i 647 -a 0 -x {4.0 0.0 15 ------- null} + -t 2.75208 -s 2 -d 0 -p ack -e 40 -c 0 -i 647 -a 0 -x {4.0 0.0 15 ------- null} - -t 2.75208 -s 2 -d 0 -p ack -e 40 -c 0 -i 647 -a 0 -x {4.0 0.0 15 ------- null} h -t 2.75208 -s 2 -d 0 -p ack -e 40 -c 0 -i 647 -a 0 -x {4.0 0.0 -1 ------- null} r -t 2.76808 -s 3 -d 2 -p ack -e 40 -c 0 -i 648 -a 0 -x {4.0 0.0 16 ------- null} + -t 2.76808 -s 2 -d 0 -p ack -e 40 -c 0 -i 648 -a 0 -x {4.0 0.0 16 ------- null} - -t 2.76808 -s 2 -d 0 -p ack -e 40 -c 0 -i 648 -a 0 -x {4.0 0.0 16 ------- null} h -t 2.76808 -s 2 -d 0 -p ack -e 40 -c 0 -i 648 -a 0 -x {4.0 0.0 -1 ------- null} r -t 2.78672 -s 2 -d 0 -p ack -e 40 -c 0 -i 646 -a 0 -x {4.0 0.0 14 ------- null} r -t 2.80272 -s 2 -d 0 -p ack -e 40 -c 0 -i 647 -a 0 -x {4.0 0.0 15 ------- null} r -t 2.81872 -s 2 -d 0 -p ack -e 40 -c 0 -i 648 -a 0 -x {4.0 0.0 16 ------- null} nam-1.15/edu/B4-sliding-color.tcl0000664000076400007660000000546307024407021015371 0ustar tomhnsnam# sliding window protocol in congestion # features : labeling, annotation, nam-graph, and window size monitoring # all packets look black cause of supporting nam-graph # You could run 'B4-sliding-color.nam' to see the colors of each traffic set ns [new Simulator] $ns color 1 red #$ns trace-all [open B4-sliding-color.tr w] #$ns namtrace-all [open B4-sliding-color.nam w] foreach i "s1 s2 r1 r2 s3 s4" { set node_($i) [$ns node] } $node_(s2) color "red" $node_(s4) color "red" $node_(r1) color "blue" $node_(r2) color "blue" $node_(r1) shape "rectangular" $node_(r2) shape "rectangular" $ns at 0.0 "$node_(s1) label Sliding-W-sender" $ns at 0.0 "$node_(s2) label CBR-sender" $ns at 0.0 "$node_(s3) label Sliding-W-receiver" $ns at 0.0 "$node_(s4) label CBR-receiver" $ns duplex-link $node_(s1) $node_(r1) 0.5Mb 50ms DropTail $ns duplex-link $node_(s2) $node_(r1) 0.5Mb 50ms DropTail $ns duplex-link $node_(r1) $node_(r2) 0.5Mb 50ms DropTail $ns duplex-link $node_(r2) $node_(s3) 0.5Mb 50ms DropTail $ns duplex-link $node_(r2) $node_(s4) 0.5Mb 50ms DropTail $ns queue-limit $node_(r1) $node_(r2) 10 $ns queue-limit $node_(r2) $node_(r1) 10 $ns duplex-link-op $node_(s1) $node_(r1) orient right-down $ns duplex-link-op $node_(s2) $node_(r1) orient right-up $ns duplex-link-op $node_(r1) $node_(r2) orient right $ns duplex-link-op $node_(r2) $node_(s3) orient right-up $ns duplex-link-op $node_(r2) $node_(s4) orient right-down $ns duplex-link-op $node_(r1) $node_(r2) queuePos 0.5 $ns duplex-link-op $node_(r2) $node_(r1) queuePos 0.5 Agent/TCP set nam_tracevar_ true # setting sliding window size to 4 Agent/TCP set maxcwnd_ 4 ### sliding-window protocol between s1 and s3 (Black) #set sliding [new Agent/TCP/SlidingWindow] set sliding [new Agent/TCP] $sliding set fid_ 0 $ns attach-agent $node_(s1) $sliding #set sink [new Agent/TCPSink/SlidingWindowSink] set sink [new Agent/TCPSink] $ns attach-agent $node_(s3) $sink $ns connect $sliding $sink set ftp [new Application/FTP] $ftp attach-agent $sliding $ns add-agent-trace $sliding tcp $ns monitor-agent-trace $sliding $sliding tracevar cwnd_ ### CBR traffic between s2 and s4 (Red) set cbr [$ns create-connection CBR $node_(s2) Null $node_(s4) 1] $cbr set fid_ 1 proc finish {} { global ns $ns flush-trace # puts "filtering..." # exec tclsh ../bin/namfilter.tcl B4-sliding-color.nam puts "running nam..." exec nam B4-sliding-color.nam & exit 0 } ### set operations $ns at 0.1 "$ftp start" $ns at 2.35 "$ftp stop" $ns at 0.1 "$cbr start" $ns at 2.35 "$cbr stop" $ns at 3.0 "finish" ### add annotations $ns at 0.0 "$ns trace-annotate \"Sliding Window with packet loss \"" $ns run nam-1.15/edu/B4-sliding-color.tr0000664000076400007660000102113706756703157015255 0ustar tomhnsnamv 0 eval {set sim_annotation {Sliding Window with packet loss }} + 0.1 0 2 tcp 1000 ------- 0 0.0 4.0 0 0 - 0.1 0 2 tcp 1000 ------- 0 0.0 4.0 0 0 + 0.1 0 2 tcp 1000 ------- 0 0.0 4.0 1 1 + 0.1 0 2 tcp 1000 ------- 0 0.0 4.0 2 2 + 0.1 0 2 tcp 1000 ------- 0 0.0 4.0 3 3 + 0.1 1 2 cbr 210 ------- 1 1.0 5.0 0 4 - 0.1 1 2 cbr 210 ------- 1 1.0 5.0 0 4 + 0.10375 1 2 cbr 210 ------- 1 1.0 5.0 1 5 - 0.10375 1 2 cbr 210 ------- 1 1.0 5.0 1 5 + 0.1075 1 2 cbr 210 ------- 1 1.0 5.0 2 6 - 0.1075 1 2 cbr 210 ------- 1 1.0 5.0 2 6 + 0.11125 1 2 cbr 210 ------- 1 1.0 5.0 3 7 - 0.11125 1 2 cbr 210 ------- 1 1.0 5.0 3 7 + 0.115 1 2 cbr 210 ------- 1 1.0 5.0 4 8 - 0.115 1 2 cbr 210 ------- 1 1.0 5.0 4 8 - 0.116 0 2 tcp 1000 ------- 0 0.0 4.0 1 1 + 0.11875 1 2 cbr 210 ------- 1 1.0 5.0 5 9 - 0.11875 1 2 cbr 210 ------- 1 1.0 5.0 5 9 + 0.1225 1 2 cbr 210 ------- 1 1.0 5.0 6 10 - 0.1225 1 2 cbr 210 ------- 1 1.0 5.0 6 10 + 0.12625 1 2 cbr 210 ------- 1 1.0 5.0 7 11 - 0.12625 1 2 cbr 210 ------- 1 1.0 5.0 7 11 + 0.13 1 2 cbr 210 ------- 1 1.0 5.0 8 12 - 0.13 1 2 cbr 210 ------- 1 1.0 5.0 8 12 - 0.132 0 2 tcp 1000 ------- 0 0.0 4.0 2 2 + 0.13375 1 2 cbr 210 ------- 1 1.0 5.0 9 13 - 0.13375 1 2 cbr 210 ------- 1 1.0 5.0 9 13 + 0.1375 1 2 cbr 210 ------- 1 1.0 5.0 10 14 - 0.1375 1 2 cbr 210 ------- 1 1.0 5.0 10 14 + 0.14125 1 2 cbr 210 ------- 1 1.0 5.0 11 15 - 0.14125 1 2 cbr 210 ------- 1 1.0 5.0 11 15 + 0.145 1 2 cbr 210 ------- 1 1.0 5.0 12 16 - 0.145 1 2 cbr 210 ------- 1 1.0 5.0 12 16 - 0.148 0 2 tcp 1000 ------- 0 0.0 4.0 3 3 + 0.14875 1 2 cbr 210 ------- 1 1.0 5.0 13 17 - 0.14875 1 2 cbr 210 ------- 1 1.0 5.0 13 17 + 0.1525 1 2 cbr 210 ------- 1 1.0 5.0 14 18 - 0.1525 1 2 cbr 210 ------- 1 1.0 5.0 14 18 r 0.15336 1 2 cbr 210 ------- 1 1.0 5.0 0 4 + 0.15336 2 3 cbr 210 ------- 1 1.0 5.0 0 4 - 0.15336 2 3 cbr 210 ------- 1 1.0 5.0 0 4 + 0.15625 1 2 cbr 210 ------- 1 1.0 5.0 15 19 - 0.15625 1 2 cbr 210 ------- 1 1.0 5.0 15 19 r 0.15711 1 2 cbr 210 ------- 1 1.0 5.0 1 5 + 0.15711 2 3 cbr 210 ------- 1 1.0 5.0 1 5 - 0.15711 2 3 cbr 210 ------- 1 1.0 5.0 1 5 + 0.16 1 2 cbr 210 ------- 1 1.0 5.0 16 20 - 0.16 1 2 cbr 210 ------- 1 1.0 5.0 16 20 r 0.16086 1 2 cbr 210 ------- 1 1.0 5.0 2 6 + 0.16086 2 3 cbr 210 ------- 1 1.0 5.0 2 6 - 0.16086 2 3 cbr 210 ------- 1 1.0 5.0 2 6 + 0.16375 1 2 cbr 210 ------- 1 1.0 5.0 17 21 - 0.16375 1 2 cbr 210 ------- 1 1.0 5.0 17 21 r 0.16461 1 2 cbr 210 ------- 1 1.0 5.0 3 7 + 0.16461 2 3 cbr 210 ------- 1 1.0 5.0 3 7 - 0.16461 2 3 cbr 210 ------- 1 1.0 5.0 3 7 r 0.166 0 2 tcp 1000 ------- 0 0.0 4.0 0 0 + 0.166 2 3 tcp 1000 ------- 0 0.0 4.0 0 0 + 0.1675 1 2 cbr 210 ------- 1 1.0 5.0 18 22 - 0.1675 1 2 cbr 210 ------- 1 1.0 5.0 18 22 - 0.16797 2 3 tcp 1000 ------- 0 0.0 4.0 0 0 r 0.16836 1 2 cbr 210 ------- 1 1.0 5.0 4 8 + 0.16836 2 3 cbr 210 ------- 1 1.0 5.0 4 8 + 0.17125 1 2 cbr 210 ------- 1 1.0 5.0 19 23 - 0.17125 1 2 cbr 210 ------- 1 1.0 5.0 19 23 r 0.17211 1 2 cbr 210 ------- 1 1.0 5.0 5 9 + 0.17211 2 3 cbr 210 ------- 1 1.0 5.0 5 9 + 0.175 1 2 cbr 210 ------- 1 1.0 5.0 20 24 - 0.175 1 2 cbr 210 ------- 1 1.0 5.0 20 24 r 0.17586 1 2 cbr 210 ------- 1 1.0 5.0 6 10 + 0.17586 2 3 cbr 210 ------- 1 1.0 5.0 6 10 + 0.17875 1 2 cbr 210 ------- 1 1.0 5.0 21 25 - 0.17875 1 2 cbr 210 ------- 1 1.0 5.0 21 25 r 0.17961 1 2 cbr 210 ------- 1 1.0 5.0 7 11 + 0.17961 2 3 cbr 210 ------- 1 1.0 5.0 7 11 r 0.182 0 2 tcp 1000 ------- 0 0.0 4.0 1 1 + 0.182 2 3 tcp 1000 ------- 0 0.0 4.0 1 1 + 0.1825 1 2 cbr 210 ------- 1 1.0 5.0 22 26 - 0.1825 1 2 cbr 210 ------- 1 1.0 5.0 22 26 r 0.18336 1 2 cbr 210 ------- 1 1.0 5.0 8 12 + 0.18336 2 3 cbr 210 ------- 1 1.0 5.0 8 12 - 0.18397 2 3 cbr 210 ------- 1 1.0 5.0 4 8 + 0.18625 1 2 cbr 210 ------- 1 1.0 5.0 23 27 - 0.18625 1 2 cbr 210 ------- 1 1.0 5.0 23 27 r 0.18711 1 2 cbr 210 ------- 1 1.0 5.0 9 13 + 0.18711 2 3 cbr 210 ------- 1 1.0 5.0 9 13 - 0.18733 2 3 cbr 210 ------- 1 1.0 5.0 5 9 + 0.19 1 2 cbr 210 ------- 1 1.0 5.0 24 28 - 0.19 1 2 cbr 210 ------- 1 1.0 5.0 24 28 - 0.19069 2 3 cbr 210 ------- 1 1.0 5.0 6 10 r 0.19086 1 2 cbr 210 ------- 1 1.0 5.0 10 14 + 0.19086 2 3 cbr 210 ------- 1 1.0 5.0 10 14 + 0.19375 1 2 cbr 210 ------- 1 1.0 5.0 25 29 - 0.19375 1 2 cbr 210 ------- 1 1.0 5.0 25 29 - 0.19405 2 3 cbr 210 ------- 1 1.0 5.0 7 11 r 0.19461 1 2 cbr 210 ------- 1 1.0 5.0 11 15 + 0.19461 2 3 cbr 210 ------- 1 1.0 5.0 11 15 - 0.19741 2 3 tcp 1000 ------- 0 0.0 4.0 1 1 + 0.1975 1 2 cbr 210 ------- 1 1.0 5.0 26 30 - 0.1975 1 2 cbr 210 ------- 1 1.0 5.0 26 30 r 0.198 0 2 tcp 1000 ------- 0 0.0 4.0 2 2 + 0.198 2 3 tcp 1000 ------- 0 0.0 4.0 2 2 r 0.19836 1 2 cbr 210 ------- 1 1.0 5.0 12 16 + 0.19836 2 3 cbr 210 ------- 1 1.0 5.0 12 16 + 0.20125 1 2 cbr 210 ------- 1 1.0 5.0 27 31 - 0.20125 1 2 cbr 210 ------- 1 1.0 5.0 27 31 r 0.20211 1 2 cbr 210 ------- 1 1.0 5.0 13 17 + 0.20211 2 3 cbr 210 ------- 1 1.0 5.0 13 17 + 0.205 1 2 cbr 210 ------- 1 1.0 5.0 28 32 - 0.205 1 2 cbr 210 ------- 1 1.0 5.0 28 32 r 0.20586 1 2 cbr 210 ------- 1 1.0 5.0 14 18 + 0.20586 2 3 cbr 210 ------- 1 1.0 5.0 14 18 r 0.20672 2 3 cbr 210 ------- 1 1.0 5.0 0 4 + 0.20672 3 5 cbr 210 ------- 1 1.0 5.0 0 4 - 0.20672 3 5 cbr 210 ------- 1 1.0 5.0 0 4 + 0.20875 1 2 cbr 210 ------- 1 1.0 5.0 29 33 - 0.20875 1 2 cbr 210 ------- 1 1.0 5.0 29 33 r 0.20961 1 2 cbr 210 ------- 1 1.0 5.0 15 19 + 0.20961 2 3 cbr 210 ------- 1 1.0 5.0 15 19 r 0.21047 2 3 cbr 210 ------- 1 1.0 5.0 1 5 + 0.21047 3 5 cbr 210 ------- 1 1.0 5.0 1 5 - 0.21047 3 5 cbr 210 ------- 1 1.0 5.0 1 5 + 0.2125 1 2 cbr 210 ------- 1 1.0 5.0 30 34 - 0.2125 1 2 cbr 210 ------- 1 1.0 5.0 30 34 r 0.21336 1 2 cbr 210 ------- 1 1.0 5.0 16 20 + 0.21336 2 3 cbr 210 ------- 1 1.0 5.0 16 20 d 0.21336 2 3 cbr 210 ------- 1 1.0 5.0 16 20 - 0.21341 2 3 cbr 210 ------- 1 1.0 5.0 8 12 r 0.214 0 2 tcp 1000 ------- 0 0.0 4.0 3 3 + 0.214 2 3 tcp 1000 ------- 0 0.0 4.0 3 3 r 0.21422 2 3 cbr 210 ------- 1 1.0 5.0 2 6 + 0.21422 3 5 cbr 210 ------- 1 1.0 5.0 2 6 - 0.21422 3 5 cbr 210 ------- 1 1.0 5.0 2 6 + 0.21625 1 2 cbr 210 ------- 1 1.0 5.0 31 35 - 0.21625 1 2 cbr 210 ------- 1 1.0 5.0 31 35 - 0.21677 2 3 cbr 210 ------- 1 1.0 5.0 9 13 r 0.21711 1 2 cbr 210 ------- 1 1.0 5.0 17 21 + 0.21711 2 3 cbr 210 ------- 1 1.0 5.0 17 21 r 0.21797 2 3 cbr 210 ------- 1 1.0 5.0 3 7 + 0.21797 3 5 cbr 210 ------- 1 1.0 5.0 3 7 - 0.21797 3 5 cbr 210 ------- 1 1.0 5.0 3 7 + 0.22 1 2 cbr 210 ------- 1 1.0 5.0 32 36 - 0.22 1 2 cbr 210 ------- 1 1.0 5.0 32 36 - 0.22013 2 3 cbr 210 ------- 1 1.0 5.0 10 14 r 0.22086 1 2 cbr 210 ------- 1 1.0 5.0 18 22 + 0.22086 2 3 cbr 210 ------- 1 1.0 5.0 18 22 - 0.22349 2 3 cbr 210 ------- 1 1.0 5.0 11 15 + 0.22375 1 2 cbr 210 ------- 1 1.0 5.0 33 37 - 0.22375 1 2 cbr 210 ------- 1 1.0 5.0 33 37 r 0.22461 1 2 cbr 210 ------- 1 1.0 5.0 19 23 + 0.22461 2 3 cbr 210 ------- 1 1.0 5.0 19 23 - 0.22685 2 3 tcp 1000 ------- 0 0.0 4.0 2 2 + 0.2275 1 2 cbr 210 ------- 1 1.0 5.0 34 38 - 0.2275 1 2 cbr 210 ------- 1 1.0 5.0 34 38 r 0.22836 1 2 cbr 210 ------- 1 1.0 5.0 20 24 + 0.22836 2 3 cbr 210 ------- 1 1.0 5.0 20 24 + 0.23125 1 2 cbr 210 ------- 1 1.0 5.0 35 39 - 0.23125 1 2 cbr 210 ------- 1 1.0 5.0 35 39 r 0.23211 1 2 cbr 210 ------- 1 1.0 5.0 21 25 + 0.23211 2 3 cbr 210 ------- 1 1.0 5.0 21 25 d 0.23211 2 3 cbr 210 ------- 1 1.0 5.0 21 25 r 0.23397 2 3 tcp 1000 ------- 0 0.0 4.0 0 0 + 0.23397 3 4 tcp 1000 ------- 0 0.0 4.0 0 0 - 0.23397 3 4 tcp 1000 ------- 0 0.0 4.0 0 0 + 0.235 1 2 cbr 210 ------- 1 1.0 5.0 36 40 - 0.235 1 2 cbr 210 ------- 1 1.0 5.0 36 40 r 0.23586 1 2 cbr 210 ------- 1 1.0 5.0 22 26 + 0.23586 2 3 cbr 210 ------- 1 1.0 5.0 22 26 d 0.23586 2 3 cbr 210 ------- 1 1.0 5.0 22 26 r 0.23733 2 3 cbr 210 ------- 1 1.0 5.0 4 8 + 0.23733 3 5 cbr 210 ------- 1 1.0 5.0 4 8 - 0.23733 3 5 cbr 210 ------- 1 1.0 5.0 4 8 + 0.23875 1 2 cbr 210 ------- 1 1.0 5.0 37 41 - 0.23875 1 2 cbr 210 ------- 1 1.0 5.0 37 41 r 0.23961 1 2 cbr 210 ------- 1 1.0 5.0 23 27 + 0.23961 2 3 cbr 210 ------- 1 1.0 5.0 23 27 d 0.23961 2 3 cbr 210 ------- 1 1.0 5.0 23 27 r 0.24069 2 3 cbr 210 ------- 1 1.0 5.0 5 9 + 0.24069 3 5 cbr 210 ------- 1 1.0 5.0 5 9 - 0.24069 3 5 cbr 210 ------- 1 1.0 5.0 5 9 + 0.2425 1 2 cbr 210 ------- 1 1.0 5.0 38 42 - 0.2425 1 2 cbr 210 ------- 1 1.0 5.0 38 42 - 0.24285 2 3 cbr 210 ------- 1 1.0 5.0 12 16 r 0.24336 1 2 cbr 210 ------- 1 1.0 5.0 24 28 + 0.24336 2 3 cbr 210 ------- 1 1.0 5.0 24 28 r 0.24405 2 3 cbr 210 ------- 1 1.0 5.0 6 10 + 0.24405 3 5 cbr 210 ------- 1 1.0 5.0 6 10 - 0.24405 3 5 cbr 210 ------- 1 1.0 5.0 6 10 - 0.24621 2 3 cbr 210 ------- 1 1.0 5.0 13 17 + 0.24625 1 2 cbr 210 ------- 1 1.0 5.0 39 43 - 0.24625 1 2 cbr 210 ------- 1 1.0 5.0 39 43 r 0.24711 1 2 cbr 210 ------- 1 1.0 5.0 25 29 + 0.24711 2 3 cbr 210 ------- 1 1.0 5.0 25 29 r 0.24741 2 3 cbr 210 ------- 1 1.0 5.0 7 11 + 0.24741 3 5 cbr 210 ------- 1 1.0 5.0 7 11 - 0.24741 3 5 cbr 210 ------- 1 1.0 5.0 7 11 - 0.24957 2 3 cbr 210 ------- 1 1.0 5.0 14 18 + 0.25 1 2 cbr 210 ------- 1 1.0 5.0 40 44 - 0.25 1 2 cbr 210 ------- 1 1.0 5.0 40 44 r 0.25086 1 2 cbr 210 ------- 1 1.0 5.0 26 30 + 0.25086 2 3 cbr 210 ------- 1 1.0 5.0 26 30 - 0.25293 2 3 cbr 210 ------- 1 1.0 5.0 15 19 + 0.25375 1 2 cbr 210 ------- 1 1.0 5.0 41 45 - 0.25375 1 2 cbr 210 ------- 1 1.0 5.0 41 45 r 0.25461 1 2 cbr 210 ------- 1 1.0 5.0 27 31 + 0.25461 2 3 cbr 210 ------- 1 1.0 5.0 27 31 - 0.25629 2 3 tcp 1000 ------- 0 0.0 4.0 3 3 + 0.2575 1 2 cbr 210 ------- 1 1.0 5.0 42 46 - 0.2575 1 2 cbr 210 ------- 1 1.0 5.0 42 46 r 0.25836 1 2 cbr 210 ------- 1 1.0 5.0 28 32 + 0.25836 2 3 cbr 210 ------- 1 1.0 5.0 28 32 r 0.26008 3 5 cbr 210 ------- 1 1.0 5.0 0 4 + 0.26125 1 2 cbr 210 ------- 1 1.0 5.0 43 47 - 0.26125 1 2 cbr 210 ------- 1 1.0 5.0 43 47 r 0.26211 1 2 cbr 210 ------- 1 1.0 5.0 29 33 + 0.26211 2 3 cbr 210 ------- 1 1.0 5.0 29 33 d 0.26211 2 3 cbr 210 ------- 1 1.0 5.0 29 33 r 0.26341 2 3 tcp 1000 ------- 0 0.0 4.0 1 1 + 0.26341 3 4 tcp 1000 ------- 0 0.0 4.0 1 1 - 0.26341 3 4 tcp 1000 ------- 0 0.0 4.0 1 1 r 0.26383 3 5 cbr 210 ------- 1 1.0 5.0 1 5 + 0.265 1 2 cbr 210 ------- 1 1.0 5.0 44 48 - 0.265 1 2 cbr 210 ------- 1 1.0 5.0 44 48 r 0.26586 1 2 cbr 210 ------- 1 1.0 5.0 30 34 + 0.26586 2 3 cbr 210 ------- 1 1.0 5.0 30 34 d 0.26586 2 3 cbr 210 ------- 1 1.0 5.0 30 34 r 0.26677 2 3 cbr 210 ------- 1 1.0 5.0 8 12 + 0.26677 3 5 cbr 210 ------- 1 1.0 5.0 8 12 - 0.26677 3 5 cbr 210 ------- 1 1.0 5.0 8 12 r 0.26758 3 5 cbr 210 ------- 1 1.0 5.0 2 6 + 0.26875 1 2 cbr 210 ------- 1 1.0 5.0 45 49 - 0.26875 1 2 cbr 210 ------- 1 1.0 5.0 45 49 r 0.26961 1 2 cbr 210 ------- 1 1.0 5.0 31 35 + 0.26961 2 3 cbr 210 ------- 1 1.0 5.0 31 35 d 0.26961 2 3 cbr 210 ------- 1 1.0 5.0 31 35 r 0.27013 2 3 cbr 210 ------- 1 1.0 5.0 9 13 + 0.27013 3 5 cbr 210 ------- 1 1.0 5.0 9 13 - 0.27013 3 5 cbr 210 ------- 1 1.0 5.0 9 13 r 0.27133 3 5 cbr 210 ------- 1 1.0 5.0 3 7 - 0.27229 2 3 cbr 210 ------- 1 1.0 5.0 17 21 + 0.2725 1 2 cbr 210 ------- 1 1.0 5.0 46 50 - 0.2725 1 2 cbr 210 ------- 1 1.0 5.0 46 50 r 0.27336 1 2 cbr 210 ------- 1 1.0 5.0 32 36 + 0.27336 2 3 cbr 210 ------- 1 1.0 5.0 32 36 r 0.27349 2 3 cbr 210 ------- 1 1.0 5.0 10 14 + 0.27349 3 5 cbr 210 ------- 1 1.0 5.0 10 14 - 0.27349 3 5 cbr 210 ------- 1 1.0 5.0 10 14 - 0.27565 2 3 cbr 210 ------- 1 1.0 5.0 18 22 + 0.27625 1 2 cbr 210 ------- 1 1.0 5.0 47 51 - 0.27625 1 2 cbr 210 ------- 1 1.0 5.0 47 51 r 0.27685 2 3 cbr 210 ------- 1 1.0 5.0 11 15 + 0.27685 3 5 cbr 210 ------- 1 1.0 5.0 11 15 - 0.27685 3 5 cbr 210 ------- 1 1.0 5.0 11 15 r 0.27711 1 2 cbr 210 ------- 1 1.0 5.0 33 37 + 0.27711 2 3 cbr 210 ------- 1 1.0 5.0 33 37 - 0.27901 2 3 cbr 210 ------- 1 1.0 5.0 19 23 + 0.28 1 2 cbr 210 ------- 1 1.0 5.0 48 52 - 0.28 1 2 cbr 210 ------- 1 1.0 5.0 48 52 r 0.28086 1 2 cbr 210 ------- 1 1.0 5.0 34 38 + 0.28086 2 3 cbr 210 ------- 1 1.0 5.0 34 38 - 0.28237 2 3 cbr 210 ------- 1 1.0 5.0 20 24 + 0.28375 1 2 cbr 210 ------- 1 1.0 5.0 49 53 - 0.28375 1 2 cbr 210 ------- 1 1.0 5.0 49 53 r 0.28461 1 2 cbr 210 ------- 1 1.0 5.0 35 39 + 0.28461 2 3 cbr 210 ------- 1 1.0 5.0 35 39 - 0.28573 2 3 cbr 210 ------- 1 1.0 5.0 24 28 + 0.2875 1 2 cbr 210 ------- 1 1.0 5.0 50 54 - 0.2875 1 2 cbr 210 ------- 1 1.0 5.0 50 54 r 0.28836 1 2 cbr 210 ------- 1 1.0 5.0 36 40 + 0.28836 2 3 cbr 210 ------- 1 1.0 5.0 36 40 - 0.28909 2 3 cbr 210 ------- 1 1.0 5.0 25 29 r 0.29069 3 5 cbr 210 ------- 1 1.0 5.0 4 8 + 0.29125 1 2 cbr 210 ------- 1 1.0 5.0 51 55 - 0.29125 1 2 cbr 210 ------- 1 1.0 5.0 51 55 r 0.29211 1 2 cbr 210 ------- 1 1.0 5.0 37 41 + 0.29211 2 3 cbr 210 ------- 1 1.0 5.0 37 41 - 0.29245 2 3 cbr 210 ------- 1 1.0 5.0 26 30 r 0.29285 2 3 tcp 1000 ------- 0 0.0 4.0 2 2 + 0.29285 3 4 tcp 1000 ------- 0 0.0 4.0 2 2 - 0.29285 3 4 tcp 1000 ------- 0 0.0 4.0 2 2 r 0.29405 3 5 cbr 210 ------- 1 1.0 5.0 5 9 + 0.295 1 2 cbr 210 ------- 1 1.0 5.0 52 56 - 0.295 1 2 cbr 210 ------- 1 1.0 5.0 52 56 - 0.29581 2 3 cbr 210 ------- 1 1.0 5.0 27 31 r 0.29586 1 2 cbr 210 ------- 1 1.0 5.0 38 42 + 0.29586 2 3 cbr 210 ------- 1 1.0 5.0 38 42 r 0.29621 2 3 cbr 210 ------- 1 1.0 5.0 12 16 + 0.29621 3 5 cbr 210 ------- 1 1.0 5.0 12 16 - 0.29621 3 5 cbr 210 ------- 1 1.0 5.0 12 16 r 0.29741 3 5 cbr 210 ------- 1 1.0 5.0 6 10 + 0.29875 1 2 cbr 210 ------- 1 1.0 5.0 53 57 - 0.29875 1 2 cbr 210 ------- 1 1.0 5.0 53 57 - 0.29917 2 3 cbr 210 ------- 1 1.0 5.0 28 32 r 0.29957 2 3 cbr 210 ------- 1 1.0 5.0 13 17 + 0.29957 3 5 cbr 210 ------- 1 1.0 5.0 13 17 - 0.29957 3 5 cbr 210 ------- 1 1.0 5.0 13 17 r 0.29961 1 2 cbr 210 ------- 1 1.0 5.0 39 43 + 0.29961 2 3 cbr 210 ------- 1 1.0 5.0 39 43 r 0.29997 3 4 tcp 1000 ------- 0 0.0 4.0 0 0 + 0.29997 4 3 ack 40 ------- 0 4.0 0.0 0 58 - 0.29997 4 3 ack 40 ------- 0 4.0 0.0 0 58 r 0.30077 3 5 cbr 210 ------- 1 1.0 5.0 7 11 + 0.3025 1 2 cbr 210 ------- 1 1.0 5.0 54 59 - 0.3025 1 2 cbr 210 ------- 1 1.0 5.0 54 59 - 0.30253 2 3 cbr 210 ------- 1 1.0 5.0 32 36 r 0.30293 2 3 cbr 210 ------- 1 1.0 5.0 14 18 + 0.30293 3 5 cbr 210 ------- 1 1.0 5.0 14 18 - 0.30293 3 5 cbr 210 ------- 1 1.0 5.0 14 18 r 0.30336 1 2 cbr 210 ------- 1 1.0 5.0 40 44 + 0.30336 2 3 cbr 210 ------- 1 1.0 5.0 40 44 - 0.30589 2 3 cbr 210 ------- 1 1.0 5.0 33 37 + 0.30625 1 2 cbr 210 ------- 1 1.0 5.0 55 60 - 0.30625 1 2 cbr 210 ------- 1 1.0 5.0 55 60 r 0.30629 2 3 cbr 210 ------- 1 1.0 5.0 15 19 + 0.30629 3 5 cbr 210 ------- 1 1.0 5.0 15 19 - 0.30629 3 5 cbr 210 ------- 1 1.0 5.0 15 19 r 0.30711 1 2 cbr 210 ------- 1 1.0 5.0 41 45 + 0.30711 2 3 cbr 210 ------- 1 1.0 5.0 41 45 - 0.30925 2 3 cbr 210 ------- 1 1.0 5.0 34 38 + 0.31 1 2 cbr 210 ------- 1 1.0 5.0 56 61 - 0.31 1 2 cbr 210 ------- 1 1.0 5.0 56 61 r 0.31086 1 2 cbr 210 ------- 1 1.0 5.0 42 46 + 0.31086 2 3 cbr 210 ------- 1 1.0 5.0 42 46 - 0.31261 2 3 cbr 210 ------- 1 1.0 5.0 35 39 + 0.31375 1 2 cbr 210 ------- 1 1.0 5.0 57 62 - 0.31375 1 2 cbr 210 ------- 1 1.0 5.0 57 62 r 0.31461 1 2 cbr 210 ------- 1 1.0 5.0 43 47 + 0.31461 2 3 cbr 210 ------- 1 1.0 5.0 43 47 - 0.31597 2 3 cbr 210 ------- 1 1.0 5.0 36 40 + 0.3175 1 2 cbr 210 ------- 1 1.0 5.0 58 63 - 0.3175 1 2 cbr 210 ------- 1 1.0 5.0 58 63 r 0.31836 1 2 cbr 210 ------- 1 1.0 5.0 44 48 + 0.31836 2 3 cbr 210 ------- 1 1.0 5.0 44 48 - 0.31933 2 3 cbr 210 ------- 1 1.0 5.0 37 41 r 0.32013 3 5 cbr 210 ------- 1 1.0 5.0 8 12 + 0.32125 1 2 cbr 210 ------- 1 1.0 5.0 59 64 - 0.32125 1 2 cbr 210 ------- 1 1.0 5.0 59 64 r 0.32211 1 2 cbr 210 ------- 1 1.0 5.0 45 49 + 0.32211 2 3 cbr 210 ------- 1 1.0 5.0 45 49 r 0.32229 2 3 tcp 1000 ------- 0 0.0 4.0 3 3 + 0.32229 3 4 tcp 1000 ------- 0 0.0 4.0 3 3 - 0.32229 3 4 tcp 1000 ------- 0 0.0 4.0 3 3 - 0.32269 2 3 cbr 210 ------- 1 1.0 5.0 38 42 r 0.32349 3 5 cbr 210 ------- 1 1.0 5.0 9 13 + 0.325 1 2 cbr 210 ------- 1 1.0 5.0 60 65 - 0.325 1 2 cbr 210 ------- 1 1.0 5.0 60 65 r 0.32565 2 3 cbr 210 ------- 1 1.0 5.0 17 21 + 0.32565 3 5 cbr 210 ------- 1 1.0 5.0 17 21 - 0.32565 3 5 cbr 210 ------- 1 1.0 5.0 17 21 r 0.32586 1 2 cbr 210 ------- 1 1.0 5.0 46 50 + 0.32586 2 3 cbr 210 ------- 1 1.0 5.0 46 50 - 0.32605 2 3 cbr 210 ------- 1 1.0 5.0 39 43 r 0.32685 3 5 cbr 210 ------- 1 1.0 5.0 10 14 + 0.32875 1 2 cbr 210 ------- 1 1.0 5.0 61 66 - 0.32875 1 2 cbr 210 ------- 1 1.0 5.0 61 66 r 0.32901 2 3 cbr 210 ------- 1 1.0 5.0 18 22 + 0.32901 3 5 cbr 210 ------- 1 1.0 5.0 18 22 - 0.32901 3 5 cbr 210 ------- 1 1.0 5.0 18 22 - 0.32941 2 3 cbr 210 ------- 1 1.0 5.0 40 44 r 0.32941 3 4 tcp 1000 ------- 0 0.0 4.0 1 1 + 0.32941 4 3 ack 40 ------- 0 4.0 0.0 1 67 - 0.32941 4 3 ack 40 ------- 0 4.0 0.0 1 67 r 0.32961 1 2 cbr 210 ------- 1 1.0 5.0 47 51 + 0.32961 2 3 cbr 210 ------- 1 1.0 5.0 47 51 r 0.33021 3 5 cbr 210 ------- 1 1.0 5.0 11 15 r 0.33237 2 3 cbr 210 ------- 1 1.0 5.0 19 23 + 0.33237 3 5 cbr 210 ------- 1 1.0 5.0 19 23 - 0.33237 3 5 cbr 210 ------- 1 1.0 5.0 19 23 + 0.3325 1 2 cbr 210 ------- 1 1.0 5.0 62 68 - 0.3325 1 2 cbr 210 ------- 1 1.0 5.0 62 68 - 0.33277 2 3 cbr 210 ------- 1 1.0 5.0 41 45 r 0.33336 1 2 cbr 210 ------- 1 1.0 5.0 48 52 + 0.33336 2 3 cbr 210 ------- 1 1.0 5.0 48 52 r 0.33573 2 3 cbr 210 ------- 1 1.0 5.0 20 24 + 0.33573 3 5 cbr 210 ------- 1 1.0 5.0 20 24 - 0.33573 3 5 cbr 210 ------- 1 1.0 5.0 20 24 - 0.33613 2 3 cbr 210 ------- 1 1.0 5.0 42 46 + 0.33625 1 2 cbr 210 ------- 1 1.0 5.0 63 69 - 0.33625 1 2 cbr 210 ------- 1 1.0 5.0 63 69 r 0.33711 1 2 cbr 210 ------- 1 1.0 5.0 49 53 + 0.33711 2 3 cbr 210 ------- 1 1.0 5.0 49 53 r 0.33909 2 3 cbr 210 ------- 1 1.0 5.0 24 28 + 0.33909 3 5 cbr 210 ------- 1 1.0 5.0 24 28 - 0.33909 3 5 cbr 210 ------- 1 1.0 5.0 24 28 - 0.33949 2 3 cbr 210 ------- 1 1.0 5.0 43 47 + 0.34 1 2 cbr 210 ------- 1 1.0 5.0 64 70 - 0.34 1 2 cbr 210 ------- 1 1.0 5.0 64 70 r 0.34086 1 2 cbr 210 ------- 1 1.0 5.0 50 54 + 0.34086 2 3 cbr 210 ------- 1 1.0 5.0 50 54 r 0.34245 2 3 cbr 210 ------- 1 1.0 5.0 25 29 + 0.34245 3 5 cbr 210 ------- 1 1.0 5.0 25 29 - 0.34245 3 5 cbr 210 ------- 1 1.0 5.0 25 29 - 0.34285 2 3 cbr 210 ------- 1 1.0 5.0 44 48 + 0.34375 1 2 cbr 210 ------- 1 1.0 5.0 65 71 - 0.34375 1 2 cbr 210 ------- 1 1.0 5.0 65 71 r 0.34461 1 2 cbr 210 ------- 1 1.0 5.0 51 55 + 0.34461 2 3 cbr 210 ------- 1 1.0 5.0 51 55 r 0.34581 2 3 cbr 210 ------- 1 1.0 5.0 26 30 + 0.34581 3 5 cbr 210 ------- 1 1.0 5.0 26 30 - 0.34581 3 5 cbr 210 ------- 1 1.0 5.0 26 30 - 0.34621 2 3 cbr 210 ------- 1 1.0 5.0 45 49 + 0.3475 1 2 cbr 210 ------- 1 1.0 5.0 66 72 - 0.3475 1 2 cbr 210 ------- 1 1.0 5.0 66 72 r 0.34836 1 2 cbr 210 ------- 1 1.0 5.0 52 56 + 0.34836 2 3 cbr 210 ------- 1 1.0 5.0 52 56 r 0.34917 2 3 cbr 210 ------- 1 1.0 5.0 27 31 + 0.34917 3 5 cbr 210 ------- 1 1.0 5.0 27 31 - 0.34917 3 5 cbr 210 ------- 1 1.0 5.0 27 31 - 0.34957 2 3 cbr 210 ------- 1 1.0 5.0 46 50 r 0.34957 3 5 cbr 210 ------- 1 1.0 5.0 12 16 r 0.35061 4 3 ack 40 ------- 0 4.0 0.0 0 58 + 0.35061 3 2 ack 40 ------- 0 4.0 0.0 0 58 - 0.35061 3 2 ack 40 ------- 0 4.0 0.0 0 58 + 0.35125 1 2 cbr 210 ------- 1 1.0 5.0 67 73 - 0.35125 1 2 cbr 210 ------- 1 1.0 5.0 67 73 r 0.35211 1 2 cbr 210 ------- 1 1.0 5.0 53 57 + 0.35211 2 3 cbr 210 ------- 1 1.0 5.0 53 57 r 0.35253 2 3 cbr 210 ------- 1 1.0 5.0 28 32 + 0.35253 3 5 cbr 210 ------- 1 1.0 5.0 28 32 - 0.35253 3 5 cbr 210 ------- 1 1.0 5.0 28 32 - 0.35293 2 3 cbr 210 ------- 1 1.0 5.0 47 51 r 0.35293 3 5 cbr 210 ------- 1 1.0 5.0 13 17 + 0.355 1 2 cbr 210 ------- 1 1.0 5.0 68 74 - 0.355 1 2 cbr 210 ------- 1 1.0 5.0 68 74 r 0.35586 1 2 cbr 210 ------- 1 1.0 5.0 54 59 + 0.35586 2 3 cbr 210 ------- 1 1.0 5.0 54 59 r 0.35589 2 3 cbr 210 ------- 1 1.0 5.0 32 36 + 0.35589 3 5 cbr 210 ------- 1 1.0 5.0 32 36 - 0.35589 3 5 cbr 210 ------- 1 1.0 5.0 32 36 - 0.35629 2 3 cbr 210 ------- 1 1.0 5.0 48 52 r 0.35629 3 5 cbr 210 ------- 1 1.0 5.0 14 18 + 0.35875 1 2 cbr 210 ------- 1 1.0 5.0 69 75 - 0.35875 1 2 cbr 210 ------- 1 1.0 5.0 69 75 r 0.35885 3 4 tcp 1000 ------- 0 0.0 4.0 2 2 + 0.35885 4 3 ack 40 ------- 0 4.0 0.0 2 76 - 0.35885 4 3 ack 40 ------- 0 4.0 0.0 2 76 r 0.35925 2 3 cbr 210 ------- 1 1.0 5.0 33 37 + 0.35925 3 5 cbr 210 ------- 1 1.0 5.0 33 37 - 0.35925 3 5 cbr 210 ------- 1 1.0 5.0 33 37 r 0.35961 1 2 cbr 210 ------- 1 1.0 5.0 55 60 + 0.35961 2 3 cbr 210 ------- 1 1.0 5.0 55 60 - 0.35965 2 3 cbr 210 ------- 1 1.0 5.0 49 53 r 0.35965 3 5 cbr 210 ------- 1 1.0 5.0 15 19 + 0.3625 1 2 cbr 210 ------- 1 1.0 5.0 70 77 - 0.3625 1 2 cbr 210 ------- 1 1.0 5.0 70 77 r 0.36261 2 3 cbr 210 ------- 1 1.0 5.0 34 38 + 0.36261 3 5 cbr 210 ------- 1 1.0 5.0 34 38 - 0.36261 3 5 cbr 210 ------- 1 1.0 5.0 34 38 - 0.36301 2 3 cbr 210 ------- 1 1.0 5.0 50 54 r 0.36336 1 2 cbr 210 ------- 1 1.0 5.0 56 61 + 0.36336 2 3 cbr 210 ------- 1 1.0 5.0 56 61 r 0.36597 2 3 cbr 210 ------- 1 1.0 5.0 35 39 + 0.36597 3 5 cbr 210 ------- 1 1.0 5.0 35 39 - 0.36597 3 5 cbr 210 ------- 1 1.0 5.0 35 39 + 0.36625 1 2 cbr 210 ------- 1 1.0 5.0 71 78 - 0.36625 1 2 cbr 210 ------- 1 1.0 5.0 71 78 - 0.36637 2 3 cbr 210 ------- 1 1.0 5.0 51 55 r 0.36711 1 2 cbr 210 ------- 1 1.0 5.0 57 62 + 0.36711 2 3 cbr 210 ------- 1 1.0 5.0 57 62 r 0.36933 2 3 cbr 210 ------- 1 1.0 5.0 36 40 + 0.36933 3 5 cbr 210 ------- 1 1.0 5.0 36 40 - 0.36933 3 5 cbr 210 ------- 1 1.0 5.0 36 40 - 0.36973 2 3 cbr 210 ------- 1 1.0 5.0 52 56 + 0.37 1 2 cbr 210 ------- 1 1.0 5.0 72 79 - 0.37 1 2 cbr 210 ------- 1 1.0 5.0 72 79 r 0.37086 1 2 cbr 210 ------- 1 1.0 5.0 58 63 + 0.37086 2 3 cbr 210 ------- 1 1.0 5.0 58 63 r 0.37269 2 3 cbr 210 ------- 1 1.0 5.0 37 41 + 0.37269 3 5 cbr 210 ------- 1 1.0 5.0 37 41 - 0.37269 3 5 cbr 210 ------- 1 1.0 5.0 37 41 - 0.37309 2 3 cbr 210 ------- 1 1.0 5.0 53 57 + 0.37375 1 2 cbr 210 ------- 1 1.0 5.0 73 80 - 0.37375 1 2 cbr 210 ------- 1 1.0 5.0 73 80 r 0.37461 1 2 cbr 210 ------- 1 1.0 5.0 59 64 + 0.37461 2 3 cbr 210 ------- 1 1.0 5.0 59 64 r 0.37605 2 3 cbr 210 ------- 1 1.0 5.0 38 42 + 0.37605 3 5 cbr 210 ------- 1 1.0 5.0 38 42 - 0.37605 3 5 cbr 210 ------- 1 1.0 5.0 38 42 - 0.37645 2 3 cbr 210 ------- 1 1.0 5.0 54 59 + 0.3775 1 2 cbr 210 ------- 1 1.0 5.0 74 81 - 0.3775 1 2 cbr 210 ------- 1 1.0 5.0 74 81 r 0.37836 1 2 cbr 210 ------- 1 1.0 5.0 60 65 + 0.37836 2 3 cbr 210 ------- 1 1.0 5.0 60 65 r 0.37901 3 5 cbr 210 ------- 1 1.0 5.0 17 21 r 0.37941 2 3 cbr 210 ------- 1 1.0 5.0 39 43 + 0.37941 3 5 cbr 210 ------- 1 1.0 5.0 39 43 - 0.37941 3 5 cbr 210 ------- 1 1.0 5.0 39 43 - 0.37981 2 3 cbr 210 ------- 1 1.0 5.0 55 60 r 0.38005 4 3 ack 40 ------- 0 4.0 0.0 1 67 + 0.38005 3 2 ack 40 ------- 0 4.0 0.0 1 67 - 0.38005 3 2 ack 40 ------- 0 4.0 0.0 1 67 + 0.38125 1 2 cbr 210 ------- 1 1.0 5.0 75 82 - 0.38125 1 2 cbr 210 ------- 1 1.0 5.0 75 82 r 0.38211 1 2 cbr 210 ------- 1 1.0 5.0 61 66 + 0.38211 2 3 cbr 210 ------- 1 1.0 5.0 61 66 r 0.38237 3 5 cbr 210 ------- 1 1.0 5.0 18 22 r 0.38277 2 3 cbr 210 ------- 1 1.0 5.0 40 44 + 0.38277 3 5 cbr 210 ------- 1 1.0 5.0 40 44 - 0.38277 3 5 cbr 210 ------- 1 1.0 5.0 40 44 - 0.38317 2 3 cbr 210 ------- 1 1.0 5.0 56 61 + 0.385 1 2 cbr 210 ------- 1 1.0 5.0 76 83 - 0.385 1 2 cbr 210 ------- 1 1.0 5.0 76 83 r 0.38573 3 5 cbr 210 ------- 1 1.0 5.0 19 23 r 0.38586 1 2 cbr 210 ------- 1 1.0 5.0 62 68 + 0.38586 2 3 cbr 210 ------- 1 1.0 5.0 62 68 r 0.38613 2 3 cbr 210 ------- 1 1.0 5.0 41 45 + 0.38613 3 5 cbr 210 ------- 1 1.0 5.0 41 45 - 0.38613 3 5 cbr 210 ------- 1 1.0 5.0 41 45 - 0.38653 2 3 cbr 210 ------- 1 1.0 5.0 57 62 r 0.38829 3 4 tcp 1000 ------- 0 0.0 4.0 3 3 + 0.38829 4 3 ack 40 ------- 0 4.0 0.0 3 84 - 0.38829 4 3 ack 40 ------- 0 4.0 0.0 3 84 + 0.38875 1 2 cbr 210 ------- 1 1.0 5.0 77 85 - 0.38875 1 2 cbr 210 ------- 1 1.0 5.0 77 85 r 0.38909 3 5 cbr 210 ------- 1 1.0 5.0 20 24 r 0.38949 2 3 cbr 210 ------- 1 1.0 5.0 42 46 + 0.38949 3 5 cbr 210 ------- 1 1.0 5.0 42 46 - 0.38949 3 5 cbr 210 ------- 1 1.0 5.0 42 46 r 0.38961 1 2 cbr 210 ------- 1 1.0 5.0 63 69 + 0.38961 2 3 cbr 210 ------- 1 1.0 5.0 63 69 - 0.38989 2 3 cbr 210 ------- 1 1.0 5.0 58 63 r 0.39245 3 5 cbr 210 ------- 1 1.0 5.0 24 28 + 0.3925 1 2 cbr 210 ------- 1 1.0 5.0 78 86 - 0.3925 1 2 cbr 210 ------- 1 1.0 5.0 78 86 r 0.39285 2 3 cbr 210 ------- 1 1.0 5.0 43 47 + 0.39285 3 5 cbr 210 ------- 1 1.0 5.0 43 47 - 0.39285 3 5 cbr 210 ------- 1 1.0 5.0 43 47 - 0.39325 2 3 cbr 210 ------- 1 1.0 5.0 59 64 r 0.39336 1 2 cbr 210 ------- 1 1.0 5.0 64 70 + 0.39336 2 3 cbr 210 ------- 1 1.0 5.0 64 70 r 0.39581 3 5 cbr 210 ------- 1 1.0 5.0 25 29 r 0.39621 2 3 cbr 210 ------- 1 1.0 5.0 44 48 + 0.39621 3 5 cbr 210 ------- 1 1.0 5.0 44 48 - 0.39621 3 5 cbr 210 ------- 1 1.0 5.0 44 48 + 0.39625 1 2 cbr 210 ------- 1 1.0 5.0 79 87 - 0.39625 1 2 cbr 210 ------- 1 1.0 5.0 79 87 - 0.39661 2 3 cbr 210 ------- 1 1.0 5.0 60 65 r 0.39711 1 2 cbr 210 ------- 1 1.0 5.0 65 71 + 0.39711 2 3 cbr 210 ------- 1 1.0 5.0 65 71 r 0.39917 3 5 cbr 210 ------- 1 1.0 5.0 26 30 r 0.39957 2 3 cbr 210 ------- 1 1.0 5.0 45 49 + 0.39957 3 5 cbr 210 ------- 1 1.0 5.0 45 49 - 0.39957 3 5 cbr 210 ------- 1 1.0 5.0 45 49 - 0.39997 2 3 cbr 210 ------- 1 1.0 5.0 61 66 + 0.4 1 2 cbr 210 ------- 1 1.0 5.0 80 88 - 0.4 1 2 cbr 210 ------- 1 1.0 5.0 80 88 r 0.40086 1 2 cbr 210 ------- 1 1.0 5.0 66 72 + 0.40086 2 3 cbr 210 ------- 1 1.0 5.0 66 72 r 0.40125 3 2 ack 40 ------- 0 4.0 0.0 0 58 + 0.40125 2 0 ack 40 ------- 0 4.0 0.0 0 58 - 0.40125 2 0 ack 40 ------- 0 4.0 0.0 0 58 r 0.40253 3 5 cbr 210 ------- 1 1.0 5.0 27 31 r 0.40293 2 3 cbr 210 ------- 1 1.0 5.0 46 50 + 0.40293 3 5 cbr 210 ------- 1 1.0 5.0 46 50 - 0.40293 3 5 cbr 210 ------- 1 1.0 5.0 46 50 - 0.40333 2 3 cbr 210 ------- 1 1.0 5.0 62 68 + 0.40375 1 2 cbr 210 ------- 1 1.0 5.0 81 89 - 0.40375 1 2 cbr 210 ------- 1 1.0 5.0 81 89 r 0.40461 1 2 cbr 210 ------- 1 1.0 5.0 67 73 + 0.40461 2 3 cbr 210 ------- 1 1.0 5.0 67 73 r 0.40589 3 5 cbr 210 ------- 1 1.0 5.0 28 32 r 0.40629 2 3 cbr 210 ------- 1 1.0 5.0 47 51 + 0.40629 3 5 cbr 210 ------- 1 1.0 5.0 47 51 - 0.40629 3 5 cbr 210 ------- 1 1.0 5.0 47 51 - 0.40669 2 3 cbr 210 ------- 1 1.0 5.0 63 69 + 0.4075 1 2 cbr 210 ------- 1 1.0 5.0 82 90 - 0.4075 1 2 cbr 210 ------- 1 1.0 5.0 82 90 r 0.40836 1 2 cbr 210 ------- 1 1.0 5.0 68 74 + 0.40836 2 3 cbr 210 ------- 1 1.0 5.0 68 74 r 0.40925 3 5 cbr 210 ------- 1 1.0 5.0 32 36 r 0.40949 4 3 ack 40 ------- 0 4.0 0.0 2 76 + 0.40949 3 2 ack 40 ------- 0 4.0 0.0 2 76 - 0.40949 3 2 ack 40 ------- 0 4.0 0.0 2 76 r 0.40965 2 3 cbr 210 ------- 1 1.0 5.0 48 52 + 0.40965 3 5 cbr 210 ------- 1 1.0 5.0 48 52 - 0.40965 3 5 cbr 210 ------- 1 1.0 5.0 48 52 - 0.41005 2 3 cbr 210 ------- 1 1.0 5.0 64 70 + 0.41125 1 2 cbr 210 ------- 1 1.0 5.0 83 91 - 0.41125 1 2 cbr 210 ------- 1 1.0 5.0 83 91 r 0.41211 1 2 cbr 210 ------- 1 1.0 5.0 69 75 + 0.41211 2 3 cbr 210 ------- 1 1.0 5.0 69 75 r 0.41261 3 5 cbr 210 ------- 1 1.0 5.0 33 37 r 0.41301 2 3 cbr 210 ------- 1 1.0 5.0 49 53 + 0.41301 3 5 cbr 210 ------- 1 1.0 5.0 49 53 - 0.41301 3 5 cbr 210 ------- 1 1.0 5.0 49 53 - 0.41341 2 3 cbr 210 ------- 1 1.0 5.0 65 71 + 0.415 1 2 cbr 210 ------- 1 1.0 5.0 84 92 - 0.415 1 2 cbr 210 ------- 1 1.0 5.0 84 92 r 0.41586 1 2 cbr 210 ------- 1 1.0 5.0 70 77 + 0.41586 2 3 cbr 210 ------- 1 1.0 5.0 70 77 r 0.41597 3 5 cbr 210 ------- 1 1.0 5.0 34 38 r 0.41637 2 3 cbr 210 ------- 1 1.0 5.0 50 54 + 0.41637 3 5 cbr 210 ------- 1 1.0 5.0 50 54 - 0.41637 3 5 cbr 210 ------- 1 1.0 5.0 50 54 - 0.41677 2 3 cbr 210 ------- 1 1.0 5.0 66 72 + 0.41875 1 2 cbr 210 ------- 1 1.0 5.0 85 93 - 0.41875 1 2 cbr 210 ------- 1 1.0 5.0 85 93 r 0.41933 3 5 cbr 210 ------- 1 1.0 5.0 35 39 r 0.41961 1 2 cbr 210 ------- 1 1.0 5.0 71 78 + 0.41961 2 3 cbr 210 ------- 1 1.0 5.0 71 78 r 0.41973 2 3 cbr 210 ------- 1 1.0 5.0 51 55 + 0.41973 3 5 cbr 210 ------- 1 1.0 5.0 51 55 - 0.41973 3 5 cbr 210 ------- 1 1.0 5.0 51 55 - 0.42013 2 3 cbr 210 ------- 1 1.0 5.0 67 73 + 0.4225 1 2 cbr 210 ------- 1 1.0 5.0 86 94 - 0.4225 1 2 cbr 210 ------- 1 1.0 5.0 86 94 r 0.42269 3 5 cbr 210 ------- 1 1.0 5.0 36 40 r 0.42309 2 3 cbr 210 ------- 1 1.0 5.0 52 56 + 0.42309 3 5 cbr 210 ------- 1 1.0 5.0 52 56 - 0.42309 3 5 cbr 210 ------- 1 1.0 5.0 52 56 r 0.42336 1 2 cbr 210 ------- 1 1.0 5.0 72 79 + 0.42336 2 3 cbr 210 ------- 1 1.0 5.0 72 79 - 0.42349 2 3 cbr 210 ------- 1 1.0 5.0 68 74 r 0.42605 3 5 cbr 210 ------- 1 1.0 5.0 37 41 + 0.42625 1 2 cbr 210 ------- 1 1.0 5.0 87 95 - 0.42625 1 2 cbr 210 ------- 1 1.0 5.0 87 95 r 0.42645 2 3 cbr 210 ------- 1 1.0 5.0 53 57 + 0.42645 3 5 cbr 210 ------- 1 1.0 5.0 53 57 - 0.42645 3 5 cbr 210 ------- 1 1.0 5.0 53 57 - 0.42685 2 3 cbr 210 ------- 1 1.0 5.0 69 75 r 0.42711 1 2 cbr 210 ------- 1 1.0 5.0 73 80 + 0.42711 2 3 cbr 210 ------- 1 1.0 5.0 73 80 r 0.42941 3 5 cbr 210 ------- 1 1.0 5.0 38 42 r 0.42981 2 3 cbr 210 ------- 1 1.0 5.0 54 59 + 0.42981 3 5 cbr 210 ------- 1 1.0 5.0 54 59 - 0.42981 3 5 cbr 210 ------- 1 1.0 5.0 54 59 + 0.43 1 2 cbr 210 ------- 1 1.0 5.0 88 96 - 0.43 1 2 cbr 210 ------- 1 1.0 5.0 88 96 - 0.43021 2 3 cbr 210 ------- 1 1.0 5.0 70 77 r 0.43069 3 2 ack 40 ------- 0 4.0 0.0 1 67 + 0.43069 2 0 ack 40 ------- 0 4.0 0.0 1 67 - 0.43069 2 0 ack 40 ------- 0 4.0 0.0 1 67 r 0.43086 1 2 cbr 210 ------- 1 1.0 5.0 74 81 + 0.43086 2 3 cbr 210 ------- 1 1.0 5.0 74 81 r 0.43277 3 5 cbr 210 ------- 1 1.0 5.0 39 43 r 0.43317 2 3 cbr 210 ------- 1 1.0 5.0 55 60 + 0.43317 3 5 cbr 210 ------- 1 1.0 5.0 55 60 - 0.43317 3 5 cbr 210 ------- 1 1.0 5.0 55 60 - 0.43357 2 3 cbr 210 ------- 1 1.0 5.0 71 78 + 0.43375 1 2 cbr 210 ------- 1 1.0 5.0 89 97 - 0.43375 1 2 cbr 210 ------- 1 1.0 5.0 89 97 r 0.43461 1 2 cbr 210 ------- 1 1.0 5.0 75 82 + 0.43461 2 3 cbr 210 ------- 1 1.0 5.0 75 82 r 0.43613 3 5 cbr 210 ------- 1 1.0 5.0 40 44 r 0.43653 2 3 cbr 210 ------- 1 1.0 5.0 56 61 + 0.43653 3 5 cbr 210 ------- 1 1.0 5.0 56 61 - 0.43653 3 5 cbr 210 ------- 1 1.0 5.0 56 61 - 0.43693 2 3 cbr 210 ------- 1 1.0 5.0 72 79 + 0.4375 1 2 cbr 210 ------- 1 1.0 5.0 90 98 - 0.4375 1 2 cbr 210 ------- 1 1.0 5.0 90 98 r 0.43836 1 2 cbr 210 ------- 1 1.0 5.0 76 83 + 0.43836 2 3 cbr 210 ------- 1 1.0 5.0 76 83 r 0.43893 4 3 ack 40 ------- 0 4.0 0.0 3 84 + 0.43893 3 2 ack 40 ------- 0 4.0 0.0 3 84 - 0.43893 3 2 ack 40 ------- 0 4.0 0.0 3 84 r 0.43949 3 5 cbr 210 ------- 1 1.0 5.0 41 45 r 0.43989 2 3 cbr 210 ------- 1 1.0 5.0 57 62 + 0.43989 3 5 cbr 210 ------- 1 1.0 5.0 57 62 - 0.43989 3 5 cbr 210 ------- 1 1.0 5.0 57 62 - 0.44029 2 3 cbr 210 ------- 1 1.0 5.0 73 80 + 0.44125 1 2 cbr 210 ------- 1 1.0 5.0 91 99 - 0.44125 1 2 cbr 210 ------- 1 1.0 5.0 91 99 r 0.44211 1 2 cbr 210 ------- 1 1.0 5.0 77 85 + 0.44211 2 3 cbr 210 ------- 1 1.0 5.0 77 85 r 0.44285 3 5 cbr 210 ------- 1 1.0 5.0 42 46 r 0.44325 2 3 cbr 210 ------- 1 1.0 5.0 58 63 + 0.44325 3 5 cbr 210 ------- 1 1.0 5.0 58 63 - 0.44325 3 5 cbr 210 ------- 1 1.0 5.0 58 63 - 0.44365 2 3 cbr 210 ------- 1 1.0 5.0 74 81 + 0.445 1 2 cbr 210 ------- 1 1.0 5.0 92 100 - 0.445 1 2 cbr 210 ------- 1 1.0 5.0 92 100 r 0.44586 1 2 cbr 210 ------- 1 1.0 5.0 78 86 + 0.44586 2 3 cbr 210 ------- 1 1.0 5.0 78 86 r 0.44621 3 5 cbr 210 ------- 1 1.0 5.0 43 47 r 0.44661 2 3 cbr 210 ------- 1 1.0 5.0 59 64 + 0.44661 3 5 cbr 210 ------- 1 1.0 5.0 59 64 - 0.44661 3 5 cbr 210 ------- 1 1.0 5.0 59 64 - 0.44701 2 3 cbr 210 ------- 1 1.0 5.0 75 82 + 0.44875 1 2 cbr 210 ------- 1 1.0 5.0 93 101 - 0.44875 1 2 cbr 210 ------- 1 1.0 5.0 93 101 r 0.44957 3 5 cbr 210 ------- 1 1.0 5.0 44 48 r 0.44961 1 2 cbr 210 ------- 1 1.0 5.0 79 87 + 0.44961 2 3 cbr 210 ------- 1 1.0 5.0 79 87 r 0.44997 2 3 cbr 210 ------- 1 1.0 5.0 60 65 + 0.44997 3 5 cbr 210 ------- 1 1.0 5.0 60 65 - 0.44997 3 5 cbr 210 ------- 1 1.0 5.0 60 65 - 0.45037 2 3 cbr 210 ------- 1 1.0 5.0 76 83 r 0.45189 2 0 ack 40 ------- 0 4.0 0.0 0 58 + 0.45189 0 2 tcp 1000 ------- 0 0.0 4.0 4 102 - 0.45189 0 2 tcp 1000 ------- 0 0.0 4.0 4 102 + 0.4525 1 2 cbr 210 ------- 1 1.0 5.0 94 103 - 0.4525 1 2 cbr 210 ------- 1 1.0 5.0 94 103 r 0.45293 3 5 cbr 210 ------- 1 1.0 5.0 45 49 r 0.45333 2 3 cbr 210 ------- 1 1.0 5.0 61 66 + 0.45333 3 5 cbr 210 ------- 1 1.0 5.0 61 66 - 0.45333 3 5 cbr 210 ------- 1 1.0 5.0 61 66 r 0.45336 1 2 cbr 210 ------- 1 1.0 5.0 80 88 + 0.45336 2 3 cbr 210 ------- 1 1.0 5.0 80 88 - 0.45373 2 3 cbr 210 ------- 1 1.0 5.0 77 85 + 0.45625 1 2 cbr 210 ------- 1 1.0 5.0 95 104 - 0.45625 1 2 cbr 210 ------- 1 1.0 5.0 95 104 r 0.45629 3 5 cbr 210 ------- 1 1.0 5.0 46 50 r 0.45669 2 3 cbr 210 ------- 1 1.0 5.0 62 68 + 0.45669 3 5 cbr 210 ------- 1 1.0 5.0 62 68 - 0.45669 3 5 cbr 210 ------- 1 1.0 5.0 62 68 - 0.45709 2 3 cbr 210 ------- 1 1.0 5.0 78 86 r 0.45711 1 2 cbr 210 ------- 1 1.0 5.0 81 89 + 0.45711 2 3 cbr 210 ------- 1 1.0 5.0 81 89 r 0.45965 3 5 cbr 210 ------- 1 1.0 5.0 47 51 + 0.46 1 2 cbr 210 ------- 1 1.0 5.0 96 105 - 0.46 1 2 cbr 210 ------- 1 1.0 5.0 96 105 r 0.46005 2 3 cbr 210 ------- 1 1.0 5.0 63 69 + 0.46005 3 5 cbr 210 ------- 1 1.0 5.0 63 69 - 0.46005 3 5 cbr 210 ------- 1 1.0 5.0 63 69 r 0.46013 3 2 ack 40 ------- 0 4.0 0.0 2 76 + 0.46013 2 0 ack 40 ------- 0 4.0 0.0 2 76 - 0.46013 2 0 ack 40 ------- 0 4.0 0.0 2 76 - 0.46045 2 3 cbr 210 ------- 1 1.0 5.0 79 87 r 0.46086 1 2 cbr 210 ------- 1 1.0 5.0 82 90 + 0.46086 2 3 cbr 210 ------- 1 1.0 5.0 82 90 r 0.46301 3 5 cbr 210 ------- 1 1.0 5.0 48 52 r 0.46341 2 3 cbr 210 ------- 1 1.0 5.0 64 70 + 0.46341 3 5 cbr 210 ------- 1 1.0 5.0 64 70 - 0.46341 3 5 cbr 210 ------- 1 1.0 5.0 64 70 + 0.46375 1 2 cbr 210 ------- 1 1.0 5.0 97 106 - 0.46375 1 2 cbr 210 ------- 1 1.0 5.0 97 106 - 0.46381 2 3 cbr 210 ------- 1 1.0 5.0 80 88 r 0.46461 1 2 cbr 210 ------- 1 1.0 5.0 83 91 + 0.46461 2 3 cbr 210 ------- 1 1.0 5.0 83 91 r 0.46637 3 5 cbr 210 ------- 1 1.0 5.0 49 53 r 0.46677 2 3 cbr 210 ------- 1 1.0 5.0 65 71 + 0.46677 3 5 cbr 210 ------- 1 1.0 5.0 65 71 - 0.46677 3 5 cbr 210 ------- 1 1.0 5.0 65 71 - 0.46717 2 3 cbr 210 ------- 1 1.0 5.0 81 89 + 0.4675 1 2 cbr 210 ------- 1 1.0 5.0 98 107 - 0.4675 1 2 cbr 210 ------- 1 1.0 5.0 98 107 r 0.46836 1 2 cbr 210 ------- 1 1.0 5.0 84 92 + 0.46836 2 3 cbr 210 ------- 1 1.0 5.0 84 92 r 0.46973 3 5 cbr 210 ------- 1 1.0 5.0 50 54 r 0.47013 2 3 cbr 210 ------- 1 1.0 5.0 66 72 + 0.47013 3 5 cbr 210 ------- 1 1.0 5.0 66 72 - 0.47013 3 5 cbr 210 ------- 1 1.0 5.0 66 72 - 0.47053 2 3 cbr 210 ------- 1 1.0 5.0 82 90 + 0.47125 1 2 cbr 210 ------- 1 1.0 5.0 99 108 - 0.47125 1 2 cbr 210 ------- 1 1.0 5.0 99 108 r 0.47211 1 2 cbr 210 ------- 1 1.0 5.0 85 93 + 0.47211 2 3 cbr 210 ------- 1 1.0 5.0 85 93 r 0.47309 3 5 cbr 210 ------- 1 1.0 5.0 51 55 r 0.47349 2 3 cbr 210 ------- 1 1.0 5.0 67 73 + 0.47349 3 5 cbr 210 ------- 1 1.0 5.0 67 73 - 0.47349 3 5 cbr 210 ------- 1 1.0 5.0 67 73 - 0.47389 2 3 cbr 210 ------- 1 1.0 5.0 83 91 + 0.475 1 2 cbr 210 ------- 1 1.0 5.0 100 109 - 0.475 1 2 cbr 210 ------- 1 1.0 5.0 100 109 r 0.47586 1 2 cbr 210 ------- 1 1.0 5.0 86 94 + 0.47586 2 3 cbr 210 ------- 1 1.0 5.0 86 94 r 0.47645 3 5 cbr 210 ------- 1 1.0 5.0 52 56 r 0.47685 2 3 cbr 210 ------- 1 1.0 5.0 68 74 + 0.47685 3 5 cbr 210 ------- 1 1.0 5.0 68 74 - 0.47685 3 5 cbr 210 ------- 1 1.0 5.0 68 74 - 0.47725 2 3 cbr 210 ------- 1 1.0 5.0 84 92 + 0.47875 1 2 cbr 210 ------- 1 1.0 5.0 101 110 - 0.47875 1 2 cbr 210 ------- 1 1.0 5.0 101 110 r 0.47961 1 2 cbr 210 ------- 1 1.0 5.0 87 95 + 0.47961 2 3 cbr 210 ------- 1 1.0 5.0 87 95 r 0.47981 3 5 cbr 210 ------- 1 1.0 5.0 53 57 r 0.48021 2 3 cbr 210 ------- 1 1.0 5.0 69 75 + 0.48021 3 5 cbr 210 ------- 1 1.0 5.0 69 75 - 0.48021 3 5 cbr 210 ------- 1 1.0 5.0 69 75 - 0.48061 2 3 cbr 210 ------- 1 1.0 5.0 85 93 r 0.48133 2 0 ack 40 ------- 0 4.0 0.0 1 67 + 0.48133 0 2 tcp 1000 ------- 0 0.0 4.0 5 111 - 0.48133 0 2 tcp 1000 ------- 0 0.0 4.0 5 111 + 0.4825 1 2 cbr 210 ------- 1 1.0 5.0 102 112 - 0.4825 1 2 cbr 210 ------- 1 1.0 5.0 102 112 r 0.48317 3 5 cbr 210 ------- 1 1.0 5.0 54 59 r 0.48336 1 2 cbr 210 ------- 1 1.0 5.0 88 96 + 0.48336 2 3 cbr 210 ------- 1 1.0 5.0 88 96 r 0.48357 2 3 cbr 210 ------- 1 1.0 5.0 70 77 + 0.48357 3 5 cbr 210 ------- 1 1.0 5.0 70 77 - 0.48357 3 5 cbr 210 ------- 1 1.0 5.0 70 77 - 0.48397 2 3 cbr 210 ------- 1 1.0 5.0 86 94 + 0.48625 1 2 cbr 210 ------- 1 1.0 5.0 103 113 - 0.48625 1 2 cbr 210 ------- 1 1.0 5.0 103 113 r 0.48653 3 5 cbr 210 ------- 1 1.0 5.0 55 60 r 0.48693 2 3 cbr 210 ------- 1 1.0 5.0 71 78 + 0.48693 3 5 cbr 210 ------- 1 1.0 5.0 71 78 - 0.48693 3 5 cbr 210 ------- 1 1.0 5.0 71 78 r 0.48711 1 2 cbr 210 ------- 1 1.0 5.0 89 97 + 0.48711 2 3 cbr 210 ------- 1 1.0 5.0 89 97 - 0.48733 2 3 cbr 210 ------- 1 1.0 5.0 87 95 r 0.48957 3 2 ack 40 ------- 0 4.0 0.0 3 84 + 0.48957 2 0 ack 40 ------- 0 4.0 0.0 3 84 - 0.48957 2 0 ack 40 ------- 0 4.0 0.0 3 84 r 0.48989 3 5 cbr 210 ------- 1 1.0 5.0 56 61 + 0.49 1 2 cbr 210 ------- 1 1.0 5.0 104 114 - 0.49 1 2 cbr 210 ------- 1 1.0 5.0 104 114 r 0.49029 2 3 cbr 210 ------- 1 1.0 5.0 72 79 + 0.49029 3 5 cbr 210 ------- 1 1.0 5.0 72 79 - 0.49029 3 5 cbr 210 ------- 1 1.0 5.0 72 79 - 0.49069 2 3 cbr 210 ------- 1 1.0 5.0 88 96 r 0.49086 1 2 cbr 210 ------- 1 1.0 5.0 90 98 + 0.49086 2 3 cbr 210 ------- 1 1.0 5.0 90 98 r 0.49325 3 5 cbr 210 ------- 1 1.0 5.0 57 62 r 0.49365 2 3 cbr 210 ------- 1 1.0 5.0 73 80 + 0.49365 3 5 cbr 210 ------- 1 1.0 5.0 73 80 - 0.49365 3 5 cbr 210 ------- 1 1.0 5.0 73 80 + 0.49375 1 2 cbr 210 ------- 1 1.0 5.0 105 115 - 0.49375 1 2 cbr 210 ------- 1 1.0 5.0 105 115 - 0.49405 2 3 cbr 210 ------- 1 1.0 5.0 89 97 r 0.49461 1 2 cbr 210 ------- 1 1.0 5.0 91 99 + 0.49461 2 3 cbr 210 ------- 1 1.0 5.0 91 99 r 0.49661 3 5 cbr 210 ------- 1 1.0 5.0 58 63 r 0.49701 2 3 cbr 210 ------- 1 1.0 5.0 74 81 + 0.49701 3 5 cbr 210 ------- 1 1.0 5.0 74 81 - 0.49701 3 5 cbr 210 ------- 1 1.0 5.0 74 81 - 0.49741 2 3 cbr 210 ------- 1 1.0 5.0 90 98 + 0.4975 1 2 cbr 210 ------- 1 1.0 5.0 106 116 - 0.4975 1 2 cbr 210 ------- 1 1.0 5.0 106 116 r 0.49836 1 2 cbr 210 ------- 1 1.0 5.0 92 100 + 0.49836 2 3 cbr 210 ------- 1 1.0 5.0 92 100 r 0.49997 3 5 cbr 210 ------- 1 1.0 5.0 59 64 r 0.50037 2 3 cbr 210 ------- 1 1.0 5.0 75 82 + 0.50037 3 5 cbr 210 ------- 1 1.0 5.0 75 82 - 0.50037 3 5 cbr 210 ------- 1 1.0 5.0 75 82 - 0.50077 2 3 cbr 210 ------- 1 1.0 5.0 91 99 + 0.50125 1 2 cbr 210 ------- 1 1.0 5.0 107 117 - 0.50125 1 2 cbr 210 ------- 1 1.0 5.0 107 117 r 0.50211 1 2 cbr 210 ------- 1 1.0 5.0 93 101 + 0.50211 2 3 cbr 210 ------- 1 1.0 5.0 93 101 r 0.50333 3 5 cbr 210 ------- 1 1.0 5.0 60 65 r 0.50373 2 3 cbr 210 ------- 1 1.0 5.0 76 83 + 0.50373 3 5 cbr 210 ------- 1 1.0 5.0 76 83 - 0.50373 3 5 cbr 210 ------- 1 1.0 5.0 76 83 - 0.50413 2 3 cbr 210 ------- 1 1.0 5.0 92 100 + 0.505 1 2 cbr 210 ------- 1 1.0 5.0 108 118 - 0.505 1 2 cbr 210 ------- 1 1.0 5.0 108 118 r 0.50586 1 2 cbr 210 ------- 1 1.0 5.0 94 103 + 0.50586 2 3 cbr 210 ------- 1 1.0 5.0 94 103 r 0.50669 3 5 cbr 210 ------- 1 1.0 5.0 61 66 r 0.50709 2 3 cbr 210 ------- 1 1.0 5.0 77 85 + 0.50709 3 5 cbr 210 ------- 1 1.0 5.0 77 85 - 0.50709 3 5 cbr 210 ------- 1 1.0 5.0 77 85 - 0.50749 2 3 cbr 210 ------- 1 1.0 5.0 93 101 + 0.50875 1 2 cbr 210 ------- 1 1.0 5.0 109 119 - 0.50875 1 2 cbr 210 ------- 1 1.0 5.0 109 119 r 0.50961 1 2 cbr 210 ------- 1 1.0 5.0 95 104 + 0.50961 2 3 cbr 210 ------- 1 1.0 5.0 95 104 r 0.51005 3 5 cbr 210 ------- 1 1.0 5.0 62 68 r 0.51045 2 3 cbr 210 ------- 1 1.0 5.0 78 86 + 0.51045 3 5 cbr 210 ------- 1 1.0 5.0 78 86 - 0.51045 3 5 cbr 210 ------- 1 1.0 5.0 78 86 r 0.51077 2 0 ack 40 ------- 0 4.0 0.0 2 76 + 0.51077 0 2 tcp 1000 ------- 0 0.0 4.0 6 120 - 0.51077 0 2 tcp 1000 ------- 0 0.0 4.0 6 120 - 0.51085 2 3 cbr 210 ------- 1 1.0 5.0 94 103 + 0.5125 1 2 cbr 210 ------- 1 1.0 5.0 110 121 - 0.5125 1 2 cbr 210 ------- 1 1.0 5.0 110 121 r 0.51336 1 2 cbr 210 ------- 1 1.0 5.0 96 105 + 0.51336 2 3 cbr 210 ------- 1 1.0 5.0 96 105 r 0.51341 3 5 cbr 210 ------- 1 1.0 5.0 63 69 r 0.51381 2 3 cbr 210 ------- 1 1.0 5.0 79 87 + 0.51381 3 5 cbr 210 ------- 1 1.0 5.0 79 87 - 0.51381 3 5 cbr 210 ------- 1 1.0 5.0 79 87 - 0.51421 2 3 cbr 210 ------- 1 1.0 5.0 95 104 + 0.51625 1 2 cbr 210 ------- 1 1.0 5.0 111 122 - 0.51625 1 2 cbr 210 ------- 1 1.0 5.0 111 122 r 0.51677 3 5 cbr 210 ------- 1 1.0 5.0 64 70 r 0.51711 1 2 cbr 210 ------- 1 1.0 5.0 97 106 + 0.51711 2 3 cbr 210 ------- 1 1.0 5.0 97 106 r 0.51717 2 3 cbr 210 ------- 1 1.0 5.0 80 88 + 0.51717 3 5 cbr 210 ------- 1 1.0 5.0 80 88 - 0.51717 3 5 cbr 210 ------- 1 1.0 5.0 80 88 - 0.51757 2 3 cbr 210 ------- 1 1.0 5.0 96 105 r 0.51789 0 2 tcp 1000 ------- 0 0.0 4.0 4 102 + 0.51789 2 3 tcp 1000 ------- 0 0.0 4.0 4 102 + 0.52 1 2 cbr 210 ------- 1 1.0 5.0 112 123 - 0.52 1 2 cbr 210 ------- 1 1.0 5.0 112 123 r 0.52013 3 5 cbr 210 ------- 1 1.0 5.0 65 71 r 0.52053 2 3 cbr 210 ------- 1 1.0 5.0 81 89 + 0.52053 3 5 cbr 210 ------- 1 1.0 5.0 81 89 - 0.52053 3 5 cbr 210 ------- 1 1.0 5.0 81 89 r 0.52086 1 2 cbr 210 ------- 1 1.0 5.0 98 107 + 0.52086 2 3 cbr 210 ------- 1 1.0 5.0 98 107 - 0.52093 2 3 cbr 210 ------- 1 1.0 5.0 97 106 r 0.52349 3 5 cbr 210 ------- 1 1.0 5.0 66 72 + 0.52375 1 2 cbr 210 ------- 1 1.0 5.0 113 124 - 0.52375 1 2 cbr 210 ------- 1 1.0 5.0 113 124 r 0.52389 2 3 cbr 210 ------- 1 1.0 5.0 82 90 + 0.52389 3 5 cbr 210 ------- 1 1.0 5.0 82 90 - 0.52389 3 5 cbr 210 ------- 1 1.0 5.0 82 90 - 0.52429 2 3 tcp 1000 ------- 0 0.0 4.0 4 102 r 0.52461 1 2 cbr 210 ------- 1 1.0 5.0 99 108 + 0.52461 2 3 cbr 210 ------- 1 1.0 5.0 99 108 r 0.52685 3 5 cbr 210 ------- 1 1.0 5.0 67 73 r 0.52725 2 3 cbr 210 ------- 1 1.0 5.0 83 91 + 0.52725 3 5 cbr 210 ------- 1 1.0 5.0 83 91 - 0.52725 3 5 cbr 210 ------- 1 1.0 5.0 83 91 + 0.5275 1 2 cbr 210 ------- 1 1.0 5.0 114 125 - 0.5275 1 2 cbr 210 ------- 1 1.0 5.0 114 125 r 0.52836 1 2 cbr 210 ------- 1 1.0 5.0 100 109 + 0.52836 2 3 cbr 210 ------- 1 1.0 5.0 100 109 r 0.53021 3 5 cbr 210 ------- 1 1.0 5.0 68 74 r 0.53061 2 3 cbr 210 ------- 1 1.0 5.0 84 92 + 0.53061 3 5 cbr 210 ------- 1 1.0 5.0 84 92 - 0.53061 3 5 cbr 210 ------- 1 1.0 5.0 84 92 + 0.53125 1 2 cbr 210 ------- 1 1.0 5.0 115 126 - 0.53125 1 2 cbr 210 ------- 1 1.0 5.0 115 126 r 0.53211 1 2 cbr 210 ------- 1 1.0 5.0 101 110 + 0.53211 2 3 cbr 210 ------- 1 1.0 5.0 101 110 r 0.53357 3 5 cbr 210 ------- 1 1.0 5.0 69 75 r 0.53397 2 3 cbr 210 ------- 1 1.0 5.0 85 93 + 0.53397 3 5 cbr 210 ------- 1 1.0 5.0 85 93 - 0.53397 3 5 cbr 210 ------- 1 1.0 5.0 85 93 + 0.535 1 2 cbr 210 ------- 1 1.0 5.0 116 127 - 0.535 1 2 cbr 210 ------- 1 1.0 5.0 116 127 r 0.53586 1 2 cbr 210 ------- 1 1.0 5.0 102 112 + 0.53586 2 3 cbr 210 ------- 1 1.0 5.0 102 112 r 0.53693 3 5 cbr 210 ------- 1 1.0 5.0 70 77 r 0.53733 2 3 cbr 210 ------- 1 1.0 5.0 86 94 + 0.53733 3 5 cbr 210 ------- 1 1.0 5.0 86 94 - 0.53733 3 5 cbr 210 ------- 1 1.0 5.0 86 94 + 0.53875 1 2 cbr 210 ------- 1 1.0 5.0 117 128 - 0.53875 1 2 cbr 210 ------- 1 1.0 5.0 117 128 r 0.53961 1 2 cbr 210 ------- 1 1.0 5.0 103 113 + 0.53961 2 3 cbr 210 ------- 1 1.0 5.0 103 113 r 0.54021 2 0 ack 40 ------- 0 4.0 0.0 3 84 + 0.54021 0 2 tcp 1000 ------- 0 0.0 4.0 7 129 - 0.54021 0 2 tcp 1000 ------- 0 0.0 4.0 7 129 - 0.54029 2 3 cbr 210 ------- 1 1.0 5.0 98 107 r 0.54029 3 5 cbr 210 ------- 1 1.0 5.0 71 78 r 0.54069 2 3 cbr 210 ------- 1 1.0 5.0 87 95 + 0.54069 3 5 cbr 210 ------- 1 1.0 5.0 87 95 - 0.54069 3 5 cbr 210 ------- 1 1.0 5.0 87 95 + 0.5425 1 2 cbr 210 ------- 1 1.0 5.0 118 130 - 0.5425 1 2 cbr 210 ------- 1 1.0 5.0 118 130 r 0.54336 1 2 cbr 210 ------- 1 1.0 5.0 104 114 + 0.54336 2 3 cbr 210 ------- 1 1.0 5.0 104 114 - 0.54365 2 3 cbr 210 ------- 1 1.0 5.0 99 108 r 0.54365 3 5 cbr 210 ------- 1 1.0 5.0 72 79 r 0.54405 2 3 cbr 210 ------- 1 1.0 5.0 88 96 + 0.54405 3 5 cbr 210 ------- 1 1.0 5.0 88 96 - 0.54405 3 5 cbr 210 ------- 1 1.0 5.0 88 96 + 0.54625 1 2 cbr 210 ------- 1 1.0 5.0 119 131 - 0.54625 1 2 cbr 210 ------- 1 1.0 5.0 119 131 - 0.54701 2 3 cbr 210 ------- 1 1.0 5.0 100 109 r 0.54701 3 5 cbr 210 ------- 1 1.0 5.0 73 80 r 0.54711 1 2 cbr 210 ------- 1 1.0 5.0 105 115 + 0.54711 2 3 cbr 210 ------- 1 1.0 5.0 105 115 r 0.54733 0 2 tcp 1000 ------- 0 0.0 4.0 5 111 + 0.54733 2 3 tcp 1000 ------- 0 0.0 4.0 5 111 r 0.54741 2 3 cbr 210 ------- 1 1.0 5.0 89 97 + 0.54741 3 5 cbr 210 ------- 1 1.0 5.0 89 97 - 0.54741 3 5 cbr 210 ------- 1 1.0 5.0 89 97 + 0.55 1 2 cbr 210 ------- 1 1.0 5.0 120 132 - 0.55 1 2 cbr 210 ------- 1 1.0 5.0 120 132 - 0.55037 2 3 cbr 210 ------- 1 1.0 5.0 101 110 r 0.55037 3 5 cbr 210 ------- 1 1.0 5.0 74 81 r 0.55077 2 3 cbr 210 ------- 1 1.0 5.0 90 98 + 0.55077 3 5 cbr 210 ------- 1 1.0 5.0 90 98 - 0.55077 3 5 cbr 210 ------- 1 1.0 5.0 90 98 r 0.55086 1 2 cbr 210 ------- 1 1.0 5.0 106 116 + 0.55086 2 3 cbr 210 ------- 1 1.0 5.0 106 116 - 0.55373 2 3 cbr 210 ------- 1 1.0 5.0 102 112 r 0.55373 3 5 cbr 210 ------- 1 1.0 5.0 75 82 + 0.55375 1 2 cbr 210 ------- 1 1.0 5.0 121 133 - 0.55375 1 2 cbr 210 ------- 1 1.0 5.0 121 133 r 0.55413 2 3 cbr 210 ------- 1 1.0 5.0 91 99 + 0.55413 3 5 cbr 210 ------- 1 1.0 5.0 91 99 - 0.55413 3 5 cbr 210 ------- 1 1.0 5.0 91 99 r 0.55461 1 2 cbr 210 ------- 1 1.0 5.0 107 117 + 0.55461 2 3 cbr 210 ------- 1 1.0 5.0 107 117 - 0.55709 2 3 cbr 210 ------- 1 1.0 5.0 103 113 r 0.55709 3 5 cbr 210 ------- 1 1.0 5.0 76 83 r 0.55749 2 3 cbr 210 ------- 1 1.0 5.0 92 100 + 0.55749 3 5 cbr 210 ------- 1 1.0 5.0 92 100 - 0.55749 3 5 cbr 210 ------- 1 1.0 5.0 92 100 + 0.5575 1 2 cbr 210 ------- 1 1.0 5.0 122 134 - 0.5575 1 2 cbr 210 ------- 1 1.0 5.0 122 134 r 0.55836 1 2 cbr 210 ------- 1 1.0 5.0 108 118 + 0.55836 2 3 cbr 210 ------- 1 1.0 5.0 108 118 - 0.56045 2 3 cbr 210 ------- 1 1.0 5.0 104 114 r 0.56045 3 5 cbr 210 ------- 1 1.0 5.0 77 85 r 0.56085 2 3 cbr 210 ------- 1 1.0 5.0 93 101 + 0.56085 3 5 cbr 210 ------- 1 1.0 5.0 93 101 - 0.56085 3 5 cbr 210 ------- 1 1.0 5.0 93 101 + 0.56125 1 2 cbr 210 ------- 1 1.0 5.0 123 135 - 0.56125 1 2 cbr 210 ------- 1 1.0 5.0 123 135 r 0.56211 1 2 cbr 210 ------- 1 1.0 5.0 109 119 + 0.56211 2 3 cbr 210 ------- 1 1.0 5.0 109 119 - 0.56381 2 3 cbr 210 ------- 1 1.0 5.0 105 115 r 0.56381 3 5 cbr 210 ------- 1 1.0 5.0 78 86 r 0.56421 2 3 cbr 210 ------- 1 1.0 5.0 94 103 + 0.56421 3 5 cbr 210 ------- 1 1.0 5.0 94 103 - 0.56421 3 5 cbr 210 ------- 1 1.0 5.0 94 103 + 0.565 1 2 cbr 210 ------- 1 1.0 5.0 124 136 - 0.565 1 2 cbr 210 ------- 1 1.0 5.0 124 136 r 0.56586 1 2 cbr 210 ------- 1 1.0 5.0 110 121 + 0.56586 2 3 cbr 210 ------- 1 1.0 5.0 110 121 - 0.56717 2 3 tcp 1000 ------- 0 0.0 4.0 5 111 r 0.56717 3 5 cbr 210 ------- 1 1.0 5.0 79 87 r 0.56757 2 3 cbr 210 ------- 1 1.0 5.0 95 104 + 0.56757 3 5 cbr 210 ------- 1 1.0 5.0 95 104 - 0.56757 3 5 cbr 210 ------- 1 1.0 5.0 95 104 + 0.56875 1 2 cbr 210 ------- 1 1.0 5.0 125 137 - 0.56875 1 2 cbr 210 ------- 1 1.0 5.0 125 137 r 0.56961 1 2 cbr 210 ------- 1 1.0 5.0 111 122 + 0.56961 2 3 cbr 210 ------- 1 1.0 5.0 111 122 r 0.57053 3 5 cbr 210 ------- 1 1.0 5.0 80 88 r 0.57093 2 3 cbr 210 ------- 1 1.0 5.0 96 105 + 0.57093 3 5 cbr 210 ------- 1 1.0 5.0 96 105 - 0.57093 3 5 cbr 210 ------- 1 1.0 5.0 96 105 + 0.5725 1 2 cbr 210 ------- 1 1.0 5.0 126 138 - 0.5725 1 2 cbr 210 ------- 1 1.0 5.0 126 138 r 0.57336 1 2 cbr 210 ------- 1 1.0 5.0 112 123 + 0.57336 2 3 cbr 210 ------- 1 1.0 5.0 112 123 r 0.57389 3 5 cbr 210 ------- 1 1.0 5.0 81 89 r 0.57429 2 3 cbr 210 ------- 1 1.0 5.0 97 106 + 0.57429 3 5 cbr 210 ------- 1 1.0 5.0 97 106 - 0.57429 3 5 cbr 210 ------- 1 1.0 5.0 97 106 + 0.57625 1 2 cbr 210 ------- 1 1.0 5.0 127 139 - 0.57625 1 2 cbr 210 ------- 1 1.0 5.0 127 139 r 0.57677 0 2 tcp 1000 ------- 0 0.0 4.0 6 120 + 0.57677 2 3 tcp 1000 ------- 0 0.0 4.0 6 120 r 0.57711 1 2 cbr 210 ------- 1 1.0 5.0 113 124 + 0.57711 2 3 cbr 210 ------- 1 1.0 5.0 113 124 r 0.57725 3 5 cbr 210 ------- 1 1.0 5.0 82 90 + 0.58 1 2 cbr 210 ------- 1 1.0 5.0 128 140 - 0.58 1 2 cbr 210 ------- 1 1.0 5.0 128 140 r 0.58061 3 5 cbr 210 ------- 1 1.0 5.0 83 91 r 0.58086 1 2 cbr 210 ------- 1 1.0 5.0 114 125 + 0.58086 2 3 cbr 210 ------- 1 1.0 5.0 114 125 d 0.58086 2 3 cbr 210 ------- 1 1.0 5.0 114 125 - 0.58317 2 3 cbr 210 ------- 1 1.0 5.0 106 116 + 0.58375 1 2 cbr 210 ------- 1 1.0 5.0 129 141 - 0.58375 1 2 cbr 210 ------- 1 1.0 5.0 129 141 r 0.58397 3 5 cbr 210 ------- 1 1.0 5.0 84 92 r 0.58461 1 2 cbr 210 ------- 1 1.0 5.0 115 126 + 0.58461 2 3 cbr 210 ------- 1 1.0 5.0 115 126 - 0.58653 2 3 cbr 210 ------- 1 1.0 5.0 107 117 r 0.58733 3 5 cbr 210 ------- 1 1.0 5.0 85 93 + 0.5875 1 2 cbr 210 ------- 1 1.0 5.0 130 142 - 0.5875 1 2 cbr 210 ------- 1 1.0 5.0 130 142 r 0.58836 1 2 cbr 210 ------- 1 1.0 5.0 116 127 + 0.58836 2 3 cbr 210 ------- 1 1.0 5.0 116 127 - 0.58989 2 3 cbr 210 ------- 1 1.0 5.0 108 118 r 0.59029 2 3 tcp 1000 ------- 0 0.0 4.0 4 102 + 0.59029 3 4 tcp 1000 ------- 0 0.0 4.0 4 102 - 0.59029 3 4 tcp 1000 ------- 0 0.0 4.0 4 102 r 0.59069 3 5 cbr 210 ------- 1 1.0 5.0 86 94 + 0.59125 1 2 cbr 210 ------- 1 1.0 5.0 131 143 - 0.59125 1 2 cbr 210 ------- 1 1.0 5.0 131 143 r 0.59211 1 2 cbr 210 ------- 1 1.0 5.0 117 128 + 0.59211 2 3 cbr 210 ------- 1 1.0 5.0 117 128 - 0.59325 2 3 cbr 210 ------- 1 1.0 5.0 109 119 r 0.59365 2 3 cbr 210 ------- 1 1.0 5.0 98 107 + 0.59365 3 5 cbr 210 ------- 1 1.0 5.0 98 107 - 0.59365 3 5 cbr 210 ------- 1 1.0 5.0 98 107 r 0.59405 3 5 cbr 210 ------- 1 1.0 5.0 87 95 + 0.595 1 2 cbr 210 ------- 1 1.0 5.0 132 144 - 0.595 1 2 cbr 210 ------- 1 1.0 5.0 132 144 r 0.59586 1 2 cbr 210 ------- 1 1.0 5.0 118 130 + 0.59586 2 3 cbr 210 ------- 1 1.0 5.0 118 130 - 0.59661 2 3 cbr 210 ------- 1 1.0 5.0 110 121 r 0.59701 2 3 cbr 210 ------- 1 1.0 5.0 99 108 + 0.59701 3 5 cbr 210 ------- 1 1.0 5.0 99 108 - 0.59701 3 5 cbr 210 ------- 1 1.0 5.0 99 108 r 0.59741 3 5 cbr 210 ------- 1 1.0 5.0 88 96 + 0.59875 1 2 cbr 210 ------- 1 1.0 5.0 133 145 - 0.59875 1 2 cbr 210 ------- 1 1.0 5.0 133 145 r 0.59961 1 2 cbr 210 ------- 1 1.0 5.0 119 131 + 0.59961 2 3 cbr 210 ------- 1 1.0 5.0 119 131 - 0.59997 2 3 cbr 210 ------- 1 1.0 5.0 111 122 r 0.60037 2 3 cbr 210 ------- 1 1.0 5.0 100 109 + 0.60037 3 5 cbr 210 ------- 1 1.0 5.0 100 109 - 0.60037 3 5 cbr 210 ------- 1 1.0 5.0 100 109 r 0.60077 3 5 cbr 210 ------- 1 1.0 5.0 89 97 + 0.6025 1 2 cbr 210 ------- 1 1.0 5.0 134 146 - 0.6025 1 2 cbr 210 ------- 1 1.0 5.0 134 146 - 0.60333 2 3 cbr 210 ------- 1 1.0 5.0 112 123 r 0.60336 1 2 cbr 210 ------- 1 1.0 5.0 120 132 + 0.60336 2 3 cbr 210 ------- 1 1.0 5.0 120 132 r 0.60373 2 3 cbr 210 ------- 1 1.0 5.0 101 110 + 0.60373 3 5 cbr 210 ------- 1 1.0 5.0 101 110 - 0.60373 3 5 cbr 210 ------- 1 1.0 5.0 101 110 r 0.60413 3 5 cbr 210 ------- 1 1.0 5.0 90 98 r 0.60621 0 2 tcp 1000 ------- 0 0.0 4.0 7 129 + 0.60621 2 3 tcp 1000 ------- 0 0.0 4.0 7 129 + 0.60625 1 2 cbr 210 ------- 1 1.0 5.0 135 147 - 0.60625 1 2 cbr 210 ------- 1 1.0 5.0 135 147 - 0.60669 2 3 tcp 1000 ------- 0 0.0 4.0 6 120 r 0.60709 2 3 cbr 210 ------- 1 1.0 5.0 102 112 + 0.60709 3 5 cbr 210 ------- 1 1.0 5.0 102 112 - 0.60709 3 5 cbr 210 ------- 1 1.0 5.0 102 112 r 0.60711 1 2 cbr 210 ------- 1 1.0 5.0 121 133 + 0.60711 2 3 cbr 210 ------- 1 1.0 5.0 121 133 r 0.60749 3 5 cbr 210 ------- 1 1.0 5.0 91 99 + 0.61 1 2 cbr 210 ------- 1 1.0 5.0 136 148 - 0.61 1 2 cbr 210 ------- 1 1.0 5.0 136 148 r 0.61045 2 3 cbr 210 ------- 1 1.0 5.0 103 113 + 0.61045 3 5 cbr 210 ------- 1 1.0 5.0 103 113 - 0.61045 3 5 cbr 210 ------- 1 1.0 5.0 103 113 r 0.61085 3 5 cbr 210 ------- 1 1.0 5.0 92 100 r 0.61086 1 2 cbr 210 ------- 1 1.0 5.0 122 134 + 0.61086 2 3 cbr 210 ------- 1 1.0 5.0 122 134 d 0.61086 2 3 cbr 210 ------- 1 1.0 5.0 122 134 + 0.61375 1 2 cbr 210 ------- 1 1.0 5.0 137 149 - 0.61375 1 2 cbr 210 ------- 1 1.0 5.0 137 149 r 0.61381 2 3 cbr 210 ------- 1 1.0 5.0 104 114 + 0.61381 3 5 cbr 210 ------- 1 1.0 5.0 104 114 - 0.61381 3 5 cbr 210 ------- 1 1.0 5.0 104 114 r 0.61421 3 5 cbr 210 ------- 1 1.0 5.0 93 101 r 0.61461 1 2 cbr 210 ------- 1 1.0 5.0 123 135 + 0.61461 2 3 cbr 210 ------- 1 1.0 5.0 123 135 d 0.61461 2 3 cbr 210 ------- 1 1.0 5.0 123 135 r 0.61717 2 3 cbr 210 ------- 1 1.0 5.0 105 115 + 0.61717 3 5 cbr 210 ------- 1 1.0 5.0 105 115 - 0.61717 3 5 cbr 210 ------- 1 1.0 5.0 105 115 + 0.6175 1 2 cbr 210 ------- 1 1.0 5.0 138 150 - 0.6175 1 2 cbr 210 ------- 1 1.0 5.0 138 150 r 0.61757 3 5 cbr 210 ------- 1 1.0 5.0 94 103 r 0.61836 1 2 cbr 210 ------- 1 1.0 5.0 124 136 + 0.61836 2 3 cbr 210 ------- 1 1.0 5.0 124 136 d 0.61836 2 3 cbr 210 ------- 1 1.0 5.0 124 136 r 0.62093 3 5 cbr 210 ------- 1 1.0 5.0 95 104 + 0.62125 1 2 cbr 210 ------- 1 1.0 5.0 139 151 - 0.62125 1 2 cbr 210 ------- 1 1.0 5.0 139 151 r 0.62211 1 2 cbr 210 ------- 1 1.0 5.0 125 137 + 0.62211 2 3 cbr 210 ------- 1 1.0 5.0 125 137 d 0.62211 2 3 cbr 210 ------- 1 1.0 5.0 125 137 - 0.62269 2 3 cbr 210 ------- 1 1.0 5.0 113 124 r 0.62429 3 5 cbr 210 ------- 1 1.0 5.0 96 105 + 0.625 1 2 cbr 210 ------- 1 1.0 5.0 140 152 - 0.625 1 2 cbr 210 ------- 1 1.0 5.0 140 152 r 0.62586 1 2 cbr 210 ------- 1 1.0 5.0 126 138 + 0.62586 2 3 cbr 210 ------- 1 1.0 5.0 126 138 - 0.62605 2 3 cbr 210 ------- 1 1.0 5.0 115 126 r 0.62765 3 5 cbr 210 ------- 1 1.0 5.0 97 106 + 0.62875 1 2 cbr 210 ------- 1 1.0 5.0 141 153 - 0.62875 1 2 cbr 210 ------- 1 1.0 5.0 141 153 - 0.62941 2 3 cbr 210 ------- 1 1.0 5.0 116 127 r 0.62961 1 2 cbr 210 ------- 1 1.0 5.0 127 139 + 0.62961 2 3 cbr 210 ------- 1 1.0 5.0 127 139 + 0.6325 1 2 cbr 210 ------- 1 1.0 5.0 142 154 - 0.6325 1 2 cbr 210 ------- 1 1.0 5.0 142 154 - 0.63277 2 3 cbr 210 ------- 1 1.0 5.0 117 128 r 0.63317 2 3 tcp 1000 ------- 0 0.0 4.0 5 111 + 0.63317 3 4 tcp 1000 ------- 0 0.0 4.0 5 111 - 0.63317 3 4 tcp 1000 ------- 0 0.0 4.0 5 111 r 0.63336 1 2 cbr 210 ------- 1 1.0 5.0 128 140 + 0.63336 2 3 cbr 210 ------- 1 1.0 5.0 128 140 - 0.63613 2 3 cbr 210 ------- 1 1.0 5.0 118 130 + 0.63625 1 2 cbr 210 ------- 1 1.0 5.0 143 155 - 0.63625 1 2 cbr 210 ------- 1 1.0 5.0 143 155 r 0.63653 2 3 cbr 210 ------- 1 1.0 5.0 106 116 + 0.63653 3 5 cbr 210 ------- 1 1.0 5.0 106 116 - 0.63653 3 5 cbr 210 ------- 1 1.0 5.0 106 116 r 0.63711 1 2 cbr 210 ------- 1 1.0 5.0 129 141 + 0.63711 2 3 cbr 210 ------- 1 1.0 5.0 129 141 - 0.63949 2 3 cbr 210 ------- 1 1.0 5.0 119 131 r 0.63989 2 3 cbr 210 ------- 1 1.0 5.0 107 117 + 0.63989 3 5 cbr 210 ------- 1 1.0 5.0 107 117 - 0.63989 3 5 cbr 210 ------- 1 1.0 5.0 107 117 + 0.64 1 2 cbr 210 ------- 1 1.0 5.0 144 156 - 0.64 1 2 cbr 210 ------- 1 1.0 5.0 144 156 r 0.64086 1 2 cbr 210 ------- 1 1.0 5.0 130 142 + 0.64086 2 3 cbr 210 ------- 1 1.0 5.0 130 142 - 0.64285 2 3 cbr 210 ------- 1 1.0 5.0 120 132 r 0.64325 2 3 cbr 210 ------- 1 1.0 5.0 108 118 + 0.64325 3 5 cbr 210 ------- 1 1.0 5.0 108 118 - 0.64325 3 5 cbr 210 ------- 1 1.0 5.0 108 118 + 0.64375 1 2 cbr 210 ------- 1 1.0 5.0 145 157 - 0.64375 1 2 cbr 210 ------- 1 1.0 5.0 145 157 r 0.64461 1 2 cbr 210 ------- 1 1.0 5.0 131 143 + 0.64461 2 3 cbr 210 ------- 1 1.0 5.0 131 143 - 0.64621 2 3 tcp 1000 ------- 0 0.0 4.0 7 129 r 0.64661 2 3 cbr 210 ------- 1 1.0 5.0 109 119 + 0.64661 3 5 cbr 210 ------- 1 1.0 5.0 109 119 - 0.64661 3 5 cbr 210 ------- 1 1.0 5.0 109 119 r 0.64701 3 5 cbr 210 ------- 1 1.0 5.0 98 107 + 0.6475 1 2 cbr 210 ------- 1 1.0 5.0 146 158 - 0.6475 1 2 cbr 210 ------- 1 1.0 5.0 146 158 r 0.64836 1 2 cbr 210 ------- 1 1.0 5.0 132 144 + 0.64836 2 3 cbr 210 ------- 1 1.0 5.0 132 144 r 0.64997 2 3 cbr 210 ------- 1 1.0 5.0 110 121 + 0.64997 3 5 cbr 210 ------- 1 1.0 5.0 110 121 - 0.64997 3 5 cbr 210 ------- 1 1.0 5.0 110 121 r 0.65037 3 5 cbr 210 ------- 1 1.0 5.0 99 108 + 0.65125 1 2 cbr 210 ------- 1 1.0 5.0 147 159 - 0.65125 1 2 cbr 210 ------- 1 1.0 5.0 147 159 r 0.65211 1 2 cbr 210 ------- 1 1.0 5.0 133 145 + 0.65211 2 3 cbr 210 ------- 1 1.0 5.0 133 145 r 0.65333 2 3 cbr 210 ------- 1 1.0 5.0 111 122 + 0.65333 3 5 cbr 210 ------- 1 1.0 5.0 111 122 - 0.65333 3 5 cbr 210 ------- 1 1.0 5.0 111 122 r 0.65373 3 5 cbr 210 ------- 1 1.0 5.0 100 109 + 0.655 1 2 cbr 210 ------- 1 1.0 5.0 148 160 - 0.655 1 2 cbr 210 ------- 1 1.0 5.0 148 160 r 0.65586 1 2 cbr 210 ------- 1 1.0 5.0 134 146 + 0.65586 2 3 cbr 210 ------- 1 1.0 5.0 134 146 d 0.65586 2 3 cbr 210 ------- 1 1.0 5.0 134 146 r 0.65629 3 4 tcp 1000 ------- 0 0.0 4.0 4 102 + 0.65629 4 3 ack 40 ------- 0 4.0 0.0 4 161 - 0.65629 4 3 ack 40 ------- 0 4.0 0.0 4 161 r 0.65669 2 3 cbr 210 ------- 1 1.0 5.0 112 123 + 0.65669 3 5 cbr 210 ------- 1 1.0 5.0 112 123 - 0.65669 3 5 cbr 210 ------- 1 1.0 5.0 112 123 r 0.65709 3 5 cbr 210 ------- 1 1.0 5.0 101 110 + 0.65875 1 2 cbr 210 ------- 1 1.0 5.0 149 162 - 0.65875 1 2 cbr 210 ------- 1 1.0 5.0 149 162 r 0.65961 1 2 cbr 210 ------- 1 1.0 5.0 135 147 + 0.65961 2 3 cbr 210 ------- 1 1.0 5.0 135 147 d 0.65961 2 3 cbr 210 ------- 1 1.0 5.0 135 147 r 0.66045 3 5 cbr 210 ------- 1 1.0 5.0 102 112 - 0.66221 2 3 cbr 210 ------- 1 1.0 5.0 121 133 + 0.6625 1 2 cbr 210 ------- 1 1.0 5.0 150 163 - 0.6625 1 2 cbr 210 ------- 1 1.0 5.0 150 163 r 0.66336 1 2 cbr 210 ------- 1 1.0 5.0 136 148 + 0.66336 2 3 cbr 210 ------- 1 1.0 5.0 136 148 r 0.66381 3 5 cbr 210 ------- 1 1.0 5.0 103 113 - 0.66557 2 3 cbr 210 ------- 1 1.0 5.0 126 138 + 0.66625 1 2 cbr 210 ------- 1 1.0 5.0 151 164 - 0.66625 1 2 cbr 210 ------- 1 1.0 5.0 151 164 r 0.66711 1 2 cbr 210 ------- 1 1.0 5.0 137 149 + 0.66711 2 3 cbr 210 ------- 1 1.0 5.0 137 149 r 0.66717 3 5 cbr 210 ------- 1 1.0 5.0 104 114 - 0.66893 2 3 cbr 210 ------- 1 1.0 5.0 127 139 + 0.67 1 2 cbr 210 ------- 1 1.0 5.0 152 165 - 0.67 1 2 cbr 210 ------- 1 1.0 5.0 152 165 r 0.67053 3 5 cbr 210 ------- 1 1.0 5.0 105 115 r 0.67086 1 2 cbr 210 ------- 1 1.0 5.0 138 150 + 0.67086 2 3 cbr 210 ------- 1 1.0 5.0 138 150 - 0.67229 2 3 cbr 210 ------- 1 1.0 5.0 128 140 r 0.67269 2 3 tcp 1000 ------- 0 0.0 4.0 6 120 + 0.67269 3 4 tcp 1000 ------- 0 0.0 4.0 6 120 - 0.67269 3 4 tcp 1000 ------- 0 0.0 4.0 6 120 + 0.67375 1 2 cbr 210 ------- 1 1.0 5.0 153 166 - 0.67375 1 2 cbr 210 ------- 1 1.0 5.0 153 166 r 0.67461 1 2 cbr 210 ------- 1 1.0 5.0 139 151 + 0.67461 2 3 cbr 210 ------- 1 1.0 5.0 139 151 - 0.67565 2 3 cbr 210 ------- 1 1.0 5.0 129 141 r 0.67605 2 3 cbr 210 ------- 1 1.0 5.0 113 124 + 0.67605 3 5 cbr 210 ------- 1 1.0 5.0 113 124 - 0.67605 3 5 cbr 210 ------- 1 1.0 5.0 113 124 + 0.6775 1 2 cbr 210 ------- 1 1.0 5.0 154 167 - 0.6775 1 2 cbr 210 ------- 1 1.0 5.0 154 167 r 0.67836 1 2 cbr 210 ------- 1 1.0 5.0 140 152 + 0.67836 2 3 cbr 210 ------- 1 1.0 5.0 140 152 - 0.67901 2 3 cbr 210 ------- 1 1.0 5.0 130 142 r 0.67941 2 3 cbr 210 ------- 1 1.0 5.0 115 126 + 0.67941 3 5 cbr 210 ------- 1 1.0 5.0 115 126 - 0.67941 3 5 cbr 210 ------- 1 1.0 5.0 115 126 + 0.68125 1 2 cbr 210 ------- 1 1.0 5.0 155 168 - 0.68125 1 2 cbr 210 ------- 1 1.0 5.0 155 168 r 0.68211 1 2 cbr 210 ------- 1 1.0 5.0 141 153 + 0.68211 2 3 cbr 210 ------- 1 1.0 5.0 141 153 - 0.68237 2 3 cbr 210 ------- 1 1.0 5.0 131 143 r 0.68277 2 3 cbr 210 ------- 1 1.0 5.0 116 127 + 0.68277 3 5 cbr 210 ------- 1 1.0 5.0 116 127 - 0.68277 3 5 cbr 210 ------- 1 1.0 5.0 116 127 + 0.685 1 2 cbr 210 ------- 1 1.0 5.0 156 169 - 0.685 1 2 cbr 210 ------- 1 1.0 5.0 156 169 - 0.68573 2 3 cbr 210 ------- 1 1.0 5.0 132 144 r 0.68586 1 2 cbr 210 ------- 1 1.0 5.0 142 154 + 0.68586 2 3 cbr 210 ------- 1 1.0 5.0 142 154 r 0.68613 2 3 cbr 210 ------- 1 1.0 5.0 117 128 + 0.68613 3 5 cbr 210 ------- 1 1.0 5.0 117 128 - 0.68613 3 5 cbr 210 ------- 1 1.0 5.0 117 128 + 0.68875 1 2 cbr 210 ------- 1 1.0 5.0 157 170 - 0.68875 1 2 cbr 210 ------- 1 1.0 5.0 157 170 - 0.68909 2 3 cbr 210 ------- 1 1.0 5.0 133 145 r 0.68949 2 3 cbr 210 ------- 1 1.0 5.0 118 130 + 0.68949 3 5 cbr 210 ------- 1 1.0 5.0 118 130 - 0.68949 3 5 cbr 210 ------- 1 1.0 5.0 118 130 r 0.68961 1 2 cbr 210 ------- 1 1.0 5.0 143 155 + 0.68961 2 3 cbr 210 ------- 1 1.0 5.0 143 155 r 0.68989 3 5 cbr 210 ------- 1 1.0 5.0 106 116 - 0.69245 2 3 cbr 210 ------- 1 1.0 5.0 136 148 + 0.6925 1 2 cbr 210 ------- 1 1.0 5.0 158 171 - 0.6925 1 2 cbr 210 ------- 1 1.0 5.0 158 171 r 0.69285 2 3 cbr 210 ------- 1 1.0 5.0 119 131 + 0.69285 3 5 cbr 210 ------- 1 1.0 5.0 119 131 - 0.69285 3 5 cbr 210 ------- 1 1.0 5.0 119 131 r 0.69325 3 5 cbr 210 ------- 1 1.0 5.0 107 117 r 0.69336 1 2 cbr 210 ------- 1 1.0 5.0 144 156 + 0.69336 2 3 cbr 210 ------- 1 1.0 5.0 144 156 - 0.69581 2 3 cbr 210 ------- 1 1.0 5.0 137 149 r 0.69621 2 3 cbr 210 ------- 1 1.0 5.0 120 132 + 0.69621 3 5 cbr 210 ------- 1 1.0 5.0 120 132 - 0.69621 3 5 cbr 210 ------- 1 1.0 5.0 120 132 + 0.69625 1 2 cbr 210 ------- 1 1.0 5.0 159 172 - 0.69625 1 2 cbr 210 ------- 1 1.0 5.0 159 172 r 0.69661 3 5 cbr 210 ------- 1 1.0 5.0 108 118 r 0.69711 1 2 cbr 210 ------- 1 1.0 5.0 145 157 + 0.69711 2 3 cbr 210 ------- 1 1.0 5.0 145 157 r 0.69917 3 4 tcp 1000 ------- 0 0.0 4.0 5 111 + 0.69917 4 3 ack 40 ------- 0 4.0 0.0 5 173 - 0.69917 4 3 ack 40 ------- 0 4.0 0.0 5 173 - 0.69917 2 3 cbr 210 ------- 1 1.0 5.0 138 150 r 0.69997 3 5 cbr 210 ------- 1 1.0 5.0 109 119 + 0.7 1 2 cbr 210 ------- 1 1.0 5.0 160 174 - 0.7 1 2 cbr 210 ------- 1 1.0 5.0 160 174 r 0.70086 1 2 cbr 210 ------- 1 1.0 5.0 146 158 + 0.70086 2 3 cbr 210 ------- 1 1.0 5.0 146 158 - 0.70253 2 3 cbr 210 ------- 1 1.0 5.0 139 151 r 0.70333 3 5 cbr 210 ------- 1 1.0 5.0 110 121 + 0.70375 1 2 cbr 210 ------- 1 1.0 5.0 161 175 - 0.70375 1 2 cbr 210 ------- 1 1.0 5.0 161 175 r 0.70461 1 2 cbr 210 ------- 1 1.0 5.0 147 159 + 0.70461 2 3 cbr 210 ------- 1 1.0 5.0 147 159 - 0.70589 2 3 cbr 210 ------- 1 1.0 5.0 140 152 r 0.70669 3 5 cbr 210 ------- 1 1.0 5.0 111 122 r 0.70693 4 3 ack 40 ------- 0 4.0 0.0 4 161 + 0.70693 3 2 ack 40 ------- 0 4.0 0.0 4 161 - 0.70693 3 2 ack 40 ------- 0 4.0 0.0 4 161 + 0.7075 1 2 cbr 210 ------- 1 1.0 5.0 162 176 - 0.7075 1 2 cbr 210 ------- 1 1.0 5.0 162 176 r 0.70836 1 2 cbr 210 ------- 1 1.0 5.0 148 160 + 0.70836 2 3 cbr 210 ------- 1 1.0 5.0 148 160 - 0.70925 2 3 cbr 210 ------- 1 1.0 5.0 141 153 r 0.71005 3 5 cbr 210 ------- 1 1.0 5.0 112 123 + 0.71125 1 2 cbr 210 ------- 1 1.0 5.0 163 177 - 0.71125 1 2 cbr 210 ------- 1 1.0 5.0 163 177 r 0.71211 1 2 cbr 210 ------- 1 1.0 5.0 149 162 + 0.71211 2 3 cbr 210 ------- 1 1.0 5.0 149 162 r 0.71221 2 3 tcp 1000 ------- 0 0.0 4.0 7 129 + 0.71221 3 4 tcp 1000 ------- 0 0.0 4.0 7 129 - 0.71221 3 4 tcp 1000 ------- 0 0.0 4.0 7 129 - 0.71261 2 3 cbr 210 ------- 1 1.0 5.0 142 154 + 0.715 1 2 cbr 210 ------- 1 1.0 5.0 164 178 - 0.715 1 2 cbr 210 ------- 1 1.0 5.0 164 178 r 0.71557 2 3 cbr 210 ------- 1 1.0 5.0 121 133 + 0.71557 3 5 cbr 210 ------- 1 1.0 5.0 121 133 - 0.71557 3 5 cbr 210 ------- 1 1.0 5.0 121 133 r 0.71586 1 2 cbr 210 ------- 1 1.0 5.0 150 163 + 0.71586 2 3 cbr 210 ------- 1 1.0 5.0 150 163 - 0.71597 2 3 cbr 210 ------- 1 1.0 5.0 143 155 + 0.71875 1 2 cbr 210 ------- 1 1.0 5.0 165 179 - 0.71875 1 2 cbr 210 ------- 1 1.0 5.0 165 179 r 0.71893 2 3 cbr 210 ------- 1 1.0 5.0 126 138 + 0.71893 3 5 cbr 210 ------- 1 1.0 5.0 126 138 - 0.71893 3 5 cbr 210 ------- 1 1.0 5.0 126 138 - 0.71933 2 3 cbr 210 ------- 1 1.0 5.0 144 156 r 0.71961 1 2 cbr 210 ------- 1 1.0 5.0 151 164 + 0.71961 2 3 cbr 210 ------- 1 1.0 5.0 151 164 r 0.72229 2 3 cbr 210 ------- 1 1.0 5.0 127 139 + 0.72229 3 5 cbr 210 ------- 1 1.0 5.0 127 139 - 0.72229 3 5 cbr 210 ------- 1 1.0 5.0 127 139 + 0.7225 1 2 cbr 210 ------- 1 1.0 5.0 166 180 - 0.7225 1 2 cbr 210 ------- 1 1.0 5.0 166 180 - 0.72269 2 3 cbr 210 ------- 1 1.0 5.0 145 157 r 0.72336 1 2 cbr 210 ------- 1 1.0 5.0 152 165 + 0.72336 2 3 cbr 210 ------- 1 1.0 5.0 152 165 r 0.72565 2 3 cbr 210 ------- 1 1.0 5.0 128 140 + 0.72565 3 5 cbr 210 ------- 1 1.0 5.0 128 140 - 0.72565 3 5 cbr 210 ------- 1 1.0 5.0 128 140 - 0.72605 2 3 cbr 210 ------- 1 1.0 5.0 146 158 + 0.72625 1 2 cbr 210 ------- 1 1.0 5.0 167 181 - 0.72625 1 2 cbr 210 ------- 1 1.0 5.0 167 181 r 0.72711 1 2 cbr 210 ------- 1 1.0 5.0 153 166 + 0.72711 2 3 cbr 210 ------- 1 1.0 5.0 153 166 r 0.72901 2 3 cbr 210 ------- 1 1.0 5.0 129 141 + 0.72901 3 5 cbr 210 ------- 1 1.0 5.0 129 141 - 0.72901 3 5 cbr 210 ------- 1 1.0 5.0 129 141 r 0.72941 3 5 cbr 210 ------- 1 1.0 5.0 113 124 - 0.72941 2 3 cbr 210 ------- 1 1.0 5.0 147 159 + 0.73 1 2 cbr 210 ------- 1 1.0 5.0 168 182 - 0.73 1 2 cbr 210 ------- 1 1.0 5.0 168 182 r 0.73086 1 2 cbr 210 ------- 1 1.0 5.0 154 167 + 0.73086 2 3 cbr 210 ------- 1 1.0 5.0 154 167 r 0.73237 2 3 cbr 210 ------- 1 1.0 5.0 130 142 + 0.73237 3 5 cbr 210 ------- 1 1.0 5.0 130 142 - 0.73237 3 5 cbr 210 ------- 1 1.0 5.0 130 142 r 0.73277 3 5 cbr 210 ------- 1 1.0 5.0 115 126 - 0.73277 2 3 cbr 210 ------- 1 1.0 5.0 148 160 + 0.73375 1 2 cbr 210 ------- 1 1.0 5.0 169 183 - 0.73375 1 2 cbr 210 ------- 1 1.0 5.0 169 183 r 0.73461 1 2 cbr 210 ------- 1 1.0 5.0 155 168 + 0.73461 2 3 cbr 210 ------- 1 1.0 5.0 155 168 r 0.73573 2 3 cbr 210 ------- 1 1.0 5.0 131 143 + 0.73573 3 5 cbr 210 ------- 1 1.0 5.0 131 143 - 0.73573 3 5 cbr 210 ------- 1 1.0 5.0 131 143 r 0.73613 3 5 cbr 210 ------- 1 1.0 5.0 116 127 - 0.73613 2 3 cbr 210 ------- 1 1.0 5.0 149 162 + 0.7375 1 2 cbr 210 ------- 1 1.0 5.0 170 184 - 0.7375 1 2 cbr 210 ------- 1 1.0 5.0 170 184 r 0.73836 1 2 cbr 210 ------- 1 1.0 5.0 156 169 + 0.73836 2 3 cbr 210 ------- 1 1.0 5.0 156 169 r 0.73869 3 4 tcp 1000 ------- 0 0.0 4.0 6 120 + 0.73869 4 3 ack 40 ------- 0 4.0 0.0 6 185 - 0.73869 4 3 ack 40 ------- 0 4.0 0.0 6 185 r 0.73909 2 3 cbr 210 ------- 1 1.0 5.0 132 144 + 0.73909 3 5 cbr 210 ------- 1 1.0 5.0 132 144 - 0.73909 3 5 cbr 210 ------- 1 1.0 5.0 132 144 r 0.73949 3 5 cbr 210 ------- 1 1.0 5.0 117 128 - 0.73949 2 3 cbr 210 ------- 1 1.0 5.0 150 163 + 0.74125 1 2 cbr 210 ------- 1 1.0 5.0 171 186 - 0.74125 1 2 cbr 210 ------- 1 1.0 5.0 171 186 r 0.74211 1 2 cbr 210 ------- 1 1.0 5.0 157 170 + 0.74211 2 3 cbr 210 ------- 1 1.0 5.0 157 170 r 0.74245 2 3 cbr 210 ------- 1 1.0 5.0 133 145 + 0.74245 3 5 cbr 210 ------- 1 1.0 5.0 133 145 - 0.74245 3 5 cbr 210 ------- 1 1.0 5.0 133 145 r 0.74285 3 5 cbr 210 ------- 1 1.0 5.0 118 130 - 0.74285 2 3 cbr 210 ------- 1 1.0 5.0 151 164 + 0.745 1 2 cbr 210 ------- 1 1.0 5.0 172 187 - 0.745 1 2 cbr 210 ------- 1 1.0 5.0 172 187 r 0.74581 2 3 cbr 210 ------- 1 1.0 5.0 136 148 + 0.74581 3 5 cbr 210 ------- 1 1.0 5.0 136 148 - 0.74581 3 5 cbr 210 ------- 1 1.0 5.0 136 148 r 0.74586 1 2 cbr 210 ------- 1 1.0 5.0 158 171 + 0.74586 2 3 cbr 210 ------- 1 1.0 5.0 158 171 r 0.74621 3 5 cbr 210 ------- 1 1.0 5.0 119 131 - 0.74621 2 3 cbr 210 ------- 1 1.0 5.0 152 165 + 0.74875 1 2 cbr 210 ------- 1 1.0 5.0 173 188 - 0.74875 1 2 cbr 210 ------- 1 1.0 5.0 173 188 r 0.74917 2 3 cbr 210 ------- 1 1.0 5.0 137 149 + 0.74917 3 5 cbr 210 ------- 1 1.0 5.0 137 149 - 0.74917 3 5 cbr 210 ------- 1 1.0 5.0 137 149 r 0.74957 3 5 cbr 210 ------- 1 1.0 5.0 120 132 - 0.74957 2 3 cbr 210 ------- 1 1.0 5.0 153 166 r 0.74961 1 2 cbr 210 ------- 1 1.0 5.0 159 172 + 0.74961 2 3 cbr 210 ------- 1 1.0 5.0 159 172 r 0.74981 4 3 ack 40 ------- 0 4.0 0.0 5 173 + 0.74981 3 2 ack 40 ------- 0 4.0 0.0 5 173 - 0.74981 3 2 ack 40 ------- 0 4.0 0.0 5 173 + 0.7525 1 2 cbr 210 ------- 1 1.0 5.0 174 189 - 0.7525 1 2 cbr 210 ------- 1 1.0 5.0 174 189 r 0.75253 2 3 cbr 210 ------- 1 1.0 5.0 138 150 + 0.75253 3 5 cbr 210 ------- 1 1.0 5.0 138 150 - 0.75253 3 5 cbr 210 ------- 1 1.0 5.0 138 150 - 0.75293 2 3 cbr 210 ------- 1 1.0 5.0 154 167 r 0.75336 1 2 cbr 210 ------- 1 1.0 5.0 160 174 + 0.75336 2 3 cbr 210 ------- 1 1.0 5.0 160 174 r 0.75589 2 3 cbr 210 ------- 1 1.0 5.0 139 151 + 0.75589 3 5 cbr 210 ------- 1 1.0 5.0 139 151 - 0.75589 3 5 cbr 210 ------- 1 1.0 5.0 139 151 + 0.75625 1 2 cbr 210 ------- 1 1.0 5.0 175 190 - 0.75625 1 2 cbr 210 ------- 1 1.0 5.0 175 190 - 0.75629 2 3 cbr 210 ------- 1 1.0 5.0 155 168 r 0.75711 1 2 cbr 210 ------- 1 1.0 5.0 161 175 + 0.75711 2 3 cbr 210 ------- 1 1.0 5.0 161 175 r 0.75757 3 2 ack 40 ------- 0 4.0 0.0 4 161 + 0.75757 2 0 ack 40 ------- 0 4.0 0.0 4 161 - 0.75757 2 0 ack 40 ------- 0 4.0 0.0 4 161 r 0.75925 2 3 cbr 210 ------- 1 1.0 5.0 140 152 + 0.75925 3 5 cbr 210 ------- 1 1.0 5.0 140 152 - 0.75925 3 5 cbr 210 ------- 1 1.0 5.0 140 152 - 0.75965 2 3 cbr 210 ------- 1 1.0 5.0 156 169 + 0.76 1 2 cbr 210 ------- 1 1.0 5.0 176 191 - 0.76 1 2 cbr 210 ------- 1 1.0 5.0 176 191 r 0.76086 1 2 cbr 210 ------- 1 1.0 5.0 162 176 + 0.76086 2 3 cbr 210 ------- 1 1.0 5.0 162 176 r 0.76261 2 3 cbr 210 ------- 1 1.0 5.0 141 153 + 0.76261 3 5 cbr 210 ------- 1 1.0 5.0 141 153 - 0.76261 3 5 cbr 210 ------- 1 1.0 5.0 141 153 - 0.76301 2 3 cbr 210 ------- 1 1.0 5.0 157 170 + 0.76375 1 2 cbr 210 ------- 1 1.0 5.0 177 192 - 0.76375 1 2 cbr 210 ------- 1 1.0 5.0 177 192 r 0.76461 1 2 cbr 210 ------- 1 1.0 5.0 163 177 + 0.76461 2 3 cbr 210 ------- 1 1.0 5.0 163 177 r 0.76597 2 3 cbr 210 ------- 1 1.0 5.0 142 154 + 0.76597 3 5 cbr 210 ------- 1 1.0 5.0 142 154 - 0.76597 3 5 cbr 210 ------- 1 1.0 5.0 142 154 - 0.76637 2 3 cbr 210 ------- 1 1.0 5.0 158 171 + 0.7675 1 2 cbr 210 ------- 1 1.0 5.0 178 193 - 0.7675 1 2 cbr 210 ------- 1 1.0 5.0 178 193 r 0.76836 1 2 cbr 210 ------- 1 1.0 5.0 164 178 + 0.76836 2 3 cbr 210 ------- 1 1.0 5.0 164 178 r 0.76893 3 5 cbr 210 ------- 1 1.0 5.0 121 133 r 0.76933 2 3 cbr 210 ------- 1 1.0 5.0 143 155 + 0.76933 3 5 cbr 210 ------- 1 1.0 5.0 143 155 - 0.76933 3 5 cbr 210 ------- 1 1.0 5.0 143 155 - 0.76973 2 3 cbr 210 ------- 1 1.0 5.0 159 172 + 0.77125 1 2 cbr 210 ------- 1 1.0 5.0 179 194 - 0.77125 1 2 cbr 210 ------- 1 1.0 5.0 179 194 r 0.77211 1 2 cbr 210 ------- 1 1.0 5.0 165 179 + 0.77211 2 3 cbr 210 ------- 1 1.0 5.0 165 179 r 0.77229 3 5 cbr 210 ------- 1 1.0 5.0 126 138 r 0.77269 2 3 cbr 210 ------- 1 1.0 5.0 144 156 + 0.77269 3 5 cbr 210 ------- 1 1.0 5.0 144 156 - 0.77269 3 5 cbr 210 ------- 1 1.0 5.0 144 156 - 0.77309 2 3 cbr 210 ------- 1 1.0 5.0 160 174 + 0.775 1 2 cbr 210 ------- 1 1.0 5.0 180 195 - 0.775 1 2 cbr 210 ------- 1 1.0 5.0 180 195 r 0.77565 3 5 cbr 210 ------- 1 1.0 5.0 127 139 r 0.77586 1 2 cbr 210 ------- 1 1.0 5.0 166 180 + 0.77586 2 3 cbr 210 ------- 1 1.0 5.0 166 180 r 0.77605 2 3 cbr 210 ------- 1 1.0 5.0 145 157 + 0.77605 3 5 cbr 210 ------- 1 1.0 5.0 145 157 - 0.77605 3 5 cbr 210 ------- 1 1.0 5.0 145 157 - 0.77645 2 3 cbr 210 ------- 1 1.0 5.0 161 175 r 0.77821 3 4 tcp 1000 ------- 0 0.0 4.0 7 129 + 0.77821 4 3 ack 40 ------- 0 4.0 0.0 7 196 - 0.77821 4 3 ack 40 ------- 0 4.0 0.0 7 196 + 0.77875 1 2 cbr 210 ------- 1 1.0 5.0 181 197 - 0.77875 1 2 cbr 210 ------- 1 1.0 5.0 181 197 r 0.77901 3 5 cbr 210 ------- 1 1.0 5.0 128 140 r 0.77941 2 3 cbr 210 ------- 1 1.0 5.0 146 158 + 0.77941 3 5 cbr 210 ------- 1 1.0 5.0 146 158 - 0.77941 3 5 cbr 210 ------- 1 1.0 5.0 146 158 r 0.77961 1 2 cbr 210 ------- 1 1.0 5.0 167 181 + 0.77961 2 3 cbr 210 ------- 1 1.0 5.0 167 181 - 0.77981 2 3 cbr 210 ------- 1 1.0 5.0 162 176 r 0.78237 3 5 cbr 210 ------- 1 1.0 5.0 129 141 + 0.7825 1 2 cbr 210 ------- 1 1.0 5.0 182 198 - 0.7825 1 2 cbr 210 ------- 1 1.0 5.0 182 198 r 0.78277 2 3 cbr 210 ------- 1 1.0 5.0 147 159 + 0.78277 3 5 cbr 210 ------- 1 1.0 5.0 147 159 - 0.78277 3 5 cbr 210 ------- 1 1.0 5.0 147 159 - 0.78317 2 3 cbr 210 ------- 1 1.0 5.0 163 177 r 0.78336 1 2 cbr 210 ------- 1 1.0 5.0 168 182 + 0.78336 2 3 cbr 210 ------- 1 1.0 5.0 168 182 r 0.78573 3 5 cbr 210 ------- 1 1.0 5.0 130 142 r 0.78613 2 3 cbr 210 ------- 1 1.0 5.0 148 160 + 0.78613 3 5 cbr 210 ------- 1 1.0 5.0 148 160 - 0.78613 3 5 cbr 210 ------- 1 1.0 5.0 148 160 + 0.78625 1 2 cbr 210 ------- 1 1.0 5.0 183 199 - 0.78625 1 2 cbr 210 ------- 1 1.0 5.0 183 199 - 0.78653 2 3 cbr 210 ------- 1 1.0 5.0 164 178 r 0.78711 1 2 cbr 210 ------- 1 1.0 5.0 169 183 + 0.78711 2 3 cbr 210 ------- 1 1.0 5.0 169 183 r 0.78909 3 5 cbr 210 ------- 1 1.0 5.0 131 143 r 0.78933 4 3 ack 40 ------- 0 4.0 0.0 6 185 + 0.78933 3 2 ack 40 ------- 0 4.0 0.0 6 185 - 0.78933 3 2 ack 40 ------- 0 4.0 0.0 6 185 r 0.78949 2 3 cbr 210 ------- 1 1.0 5.0 149 162 + 0.78949 3 5 cbr 210 ------- 1 1.0 5.0 149 162 - 0.78949 3 5 cbr 210 ------- 1 1.0 5.0 149 162 - 0.78989 2 3 cbr 210 ------- 1 1.0 5.0 165 179 + 0.79 1 2 cbr 210 ------- 1 1.0 5.0 184 200 - 0.79 1 2 cbr 210 ------- 1 1.0 5.0 184 200 r 0.79086 1 2 cbr 210 ------- 1 1.0 5.0 170 184 + 0.79086 2 3 cbr 210 ------- 1 1.0 5.0 170 184 r 0.79245 3 5 cbr 210 ------- 1 1.0 5.0 132 144 r 0.79285 2 3 cbr 210 ------- 1 1.0 5.0 150 163 + 0.79285 3 5 cbr 210 ------- 1 1.0 5.0 150 163 - 0.79285 3 5 cbr 210 ------- 1 1.0 5.0 150 163 - 0.79325 2 3 cbr 210 ------- 1 1.0 5.0 166 180 + 0.79375 1 2 cbr 210 ------- 1 1.0 5.0 185 201 - 0.79375 1 2 cbr 210 ------- 1 1.0 5.0 185 201 r 0.79461 1 2 cbr 210 ------- 1 1.0 5.0 171 186 + 0.79461 2 3 cbr 210 ------- 1 1.0 5.0 171 186 r 0.79581 3 5 cbr 210 ------- 1 1.0 5.0 133 145 r 0.79621 2 3 cbr 210 ------- 1 1.0 5.0 151 164 + 0.79621 3 5 cbr 210 ------- 1 1.0 5.0 151 164 - 0.79621 3 5 cbr 210 ------- 1 1.0 5.0 151 164 - 0.79661 2 3 cbr 210 ------- 1 1.0 5.0 167 181 + 0.7975 1 2 cbr 210 ------- 1 1.0 5.0 186 202 - 0.7975 1 2 cbr 210 ------- 1 1.0 5.0 186 202 r 0.79836 1 2 cbr 210 ------- 1 1.0 5.0 172 187 + 0.79836 2 3 cbr 210 ------- 1 1.0 5.0 172 187 r 0.79917 3 5 cbr 210 ------- 1 1.0 5.0 136 148 r 0.79957 2 3 cbr 210 ------- 1 1.0 5.0 152 165 + 0.79957 3 5 cbr 210 ------- 1 1.0 5.0 152 165 - 0.79957 3 5 cbr 210 ------- 1 1.0 5.0 152 165 - 0.79997 2 3 cbr 210 ------- 1 1.0 5.0 168 182 r 0.80045 3 2 ack 40 ------- 0 4.0 0.0 5 173 + 0.80045 2 0 ack 40 ------- 0 4.0 0.0 5 173 - 0.80045 2 0 ack 40 ------- 0 4.0 0.0 5 173 + 0.80125 1 2 cbr 210 ------- 1 1.0 5.0 187 203 - 0.80125 1 2 cbr 210 ------- 1 1.0 5.0 187 203 r 0.80211 1 2 cbr 210 ------- 1 1.0 5.0 173 188 + 0.80211 2 3 cbr 210 ------- 1 1.0 5.0 173 188 r 0.80253 3 5 cbr 210 ------- 1 1.0 5.0 137 149 r 0.80293 2 3 cbr 210 ------- 1 1.0 5.0 153 166 + 0.80293 3 5 cbr 210 ------- 1 1.0 5.0 153 166 - 0.80293 3 5 cbr 210 ------- 1 1.0 5.0 153 166 - 0.80333 2 3 cbr 210 ------- 1 1.0 5.0 169 183 + 0.805 1 2 cbr 210 ------- 1 1.0 5.0 188 204 - 0.805 1 2 cbr 210 ------- 1 1.0 5.0 188 204 r 0.80586 1 2 cbr 210 ------- 1 1.0 5.0 174 189 + 0.80586 2 3 cbr 210 ------- 1 1.0 5.0 174 189 r 0.80589 3 5 cbr 210 ------- 1 1.0 5.0 138 150 r 0.80629 2 3 cbr 210 ------- 1 1.0 5.0 154 167 + 0.80629 3 5 cbr 210 ------- 1 1.0 5.0 154 167 - 0.80629 3 5 cbr 210 ------- 1 1.0 5.0 154 167 - 0.80669 2 3 cbr 210 ------- 1 1.0 5.0 170 184 r 0.80821 2 0 ack 40 ------- 0 4.0 0.0 4 161 + 0.80821 0 2 tcp 1000 ------- 0 0.0 4.0 8 205 - 0.80821 0 2 tcp 1000 ------- 0 0.0 4.0 8 205 + 0.80875 1 2 cbr 210 ------- 1 1.0 5.0 189 206 - 0.80875 1 2 cbr 210 ------- 1 1.0 5.0 189 206 r 0.80925 3 5 cbr 210 ------- 1 1.0 5.0 139 151 r 0.80961 1 2 cbr 210 ------- 1 1.0 5.0 175 190 + 0.80961 2 3 cbr 210 ------- 1 1.0 5.0 175 190 r 0.80965 2 3 cbr 210 ------- 1 1.0 5.0 155 168 + 0.80965 3 5 cbr 210 ------- 1 1.0 5.0 155 168 - 0.80965 3 5 cbr 210 ------- 1 1.0 5.0 155 168 - 0.81005 2 3 cbr 210 ------- 1 1.0 5.0 171 186 + 0.8125 1 2 cbr 210 ------- 1 1.0 5.0 190 207 - 0.8125 1 2 cbr 210 ------- 1 1.0 5.0 190 207 r 0.81261 3 5 cbr 210 ------- 1 1.0 5.0 140 152 r 0.81301 2 3 cbr 210 ------- 1 1.0 5.0 156 169 + 0.81301 3 5 cbr 210 ------- 1 1.0 5.0 156 169 - 0.81301 3 5 cbr 210 ------- 1 1.0 5.0 156 169 r 0.81336 1 2 cbr 210 ------- 1 1.0 5.0 176 191 + 0.81336 2 3 cbr 210 ------- 1 1.0 5.0 176 191 - 0.81341 2 3 cbr 210 ------- 1 1.0 5.0 172 187 r 0.81597 3 5 cbr 210 ------- 1 1.0 5.0 141 153 + 0.81625 1 2 cbr 210 ------- 1 1.0 5.0 191 208 - 0.81625 1 2 cbr 210 ------- 1 1.0 5.0 191 208 r 0.81637 2 3 cbr 210 ------- 1 1.0 5.0 157 170 + 0.81637 3 5 cbr 210 ------- 1 1.0 5.0 157 170 - 0.81637 3 5 cbr 210 ------- 1 1.0 5.0 157 170 - 0.81677 2 3 cbr 210 ------- 1 1.0 5.0 173 188 r 0.81711 1 2 cbr 210 ------- 1 1.0 5.0 177 192 + 0.81711 2 3 cbr 210 ------- 1 1.0 5.0 177 192 r 0.81933 3 5 cbr 210 ------- 1 1.0 5.0 142 154 r 0.81973 2 3 cbr 210 ------- 1 1.0 5.0 158 171 + 0.81973 3 5 cbr 210 ------- 1 1.0 5.0 158 171 - 0.81973 3 5 cbr 210 ------- 1 1.0 5.0 158 171 + 0.82 1 2 cbr 210 ------- 1 1.0 5.0 192 209 - 0.82 1 2 cbr 210 ------- 1 1.0 5.0 192 209 - 0.82013 2 3 cbr 210 ------- 1 1.0 5.0 174 189 r 0.82086 1 2 cbr 210 ------- 1 1.0 5.0 178 193 + 0.82086 2 3 cbr 210 ------- 1 1.0 5.0 178 193 r 0.82269 3 5 cbr 210 ------- 1 1.0 5.0 143 155 r 0.82309 2 3 cbr 210 ------- 1 1.0 5.0 159 172 + 0.82309 3 5 cbr 210 ------- 1 1.0 5.0 159 172 - 0.82309 3 5 cbr 210 ------- 1 1.0 5.0 159 172 - 0.82349 2 3 cbr 210 ------- 1 1.0 5.0 175 190 + 0.82375 1 2 cbr 210 ------- 1 1.0 5.0 193 210 - 0.82375 1 2 cbr 210 ------- 1 1.0 5.0 193 210 r 0.82461 1 2 cbr 210 ------- 1 1.0 5.0 179 194 + 0.82461 2 3 cbr 210 ------- 1 1.0 5.0 179 194 r 0.82605 3 5 cbr 210 ------- 1 1.0 5.0 144 156 r 0.82645 2 3 cbr 210 ------- 1 1.0 5.0 160 174 + 0.82645 3 5 cbr 210 ------- 1 1.0 5.0 160 174 - 0.82645 3 5 cbr 210 ------- 1 1.0 5.0 160 174 - 0.82685 2 3 cbr 210 ------- 1 1.0 5.0 176 191 + 0.8275 1 2 cbr 210 ------- 1 1.0 5.0 194 211 - 0.8275 1 2 cbr 210 ------- 1 1.0 5.0 194 211 r 0.82836 1 2 cbr 210 ------- 1 1.0 5.0 180 195 + 0.82836 2 3 cbr 210 ------- 1 1.0 5.0 180 195 r 0.82885 4 3 ack 40 ------- 0 4.0 0.0 7 196 + 0.82885 3 2 ack 40 ------- 0 4.0 0.0 7 196 - 0.82885 3 2 ack 40 ------- 0 4.0 0.0 7 196 r 0.82941 3 5 cbr 210 ------- 1 1.0 5.0 145 157 r 0.82981 2 3 cbr 210 ------- 1 1.0 5.0 161 175 + 0.82981 3 5 cbr 210 ------- 1 1.0 5.0 161 175 - 0.82981 3 5 cbr 210 ------- 1 1.0 5.0 161 175 - 0.83021 2 3 cbr 210 ------- 1 1.0 5.0 177 192 + 0.83125 1 2 cbr 210 ------- 1 1.0 5.0 195 212 - 0.83125 1 2 cbr 210 ------- 1 1.0 5.0 195 212 r 0.83211 1 2 cbr 210 ------- 1 1.0 5.0 181 197 + 0.83211 2 3 cbr 210 ------- 1 1.0 5.0 181 197 r 0.83277 3 5 cbr 210 ------- 1 1.0 5.0 146 158 r 0.83317 2 3 cbr 210 ------- 1 1.0 5.0 162 176 + 0.83317 3 5 cbr 210 ------- 1 1.0 5.0 162 176 - 0.83317 3 5 cbr 210 ------- 1 1.0 5.0 162 176 - 0.83357 2 3 cbr 210 ------- 1 1.0 5.0 178 193 + 0.835 1 2 cbr 210 ------- 1 1.0 5.0 196 213 - 0.835 1 2 cbr 210 ------- 1 1.0 5.0 196 213 r 0.83586 1 2 cbr 210 ------- 1 1.0 5.0 182 198 + 0.83586 2 3 cbr 210 ------- 1 1.0 5.0 182 198 r 0.83613 3 5 cbr 210 ------- 1 1.0 5.0 147 159 r 0.83653 2 3 cbr 210 ------- 1 1.0 5.0 163 177 + 0.83653 3 5 cbr 210 ------- 1 1.0 5.0 163 177 - 0.83653 3 5 cbr 210 ------- 1 1.0 5.0 163 177 - 0.83693 2 3 cbr 210 ------- 1 1.0 5.0 179 194 + 0.83875 1 2 cbr 210 ------- 1 1.0 5.0 197 214 - 0.83875 1 2 cbr 210 ------- 1 1.0 5.0 197 214 r 0.83949 3 5 cbr 210 ------- 1 1.0 5.0 148 160 r 0.83961 1 2 cbr 210 ------- 1 1.0 5.0 183 199 + 0.83961 2 3 cbr 210 ------- 1 1.0 5.0 183 199 r 0.83989 2 3 cbr 210 ------- 1 1.0 5.0 164 178 + 0.83989 3 5 cbr 210 ------- 1 1.0 5.0 164 178 - 0.83989 3 5 cbr 210 ------- 1 1.0 5.0 164 178 r 0.83997 3 2 ack 40 ------- 0 4.0 0.0 6 185 + 0.83997 2 0 ack 40 ------- 0 4.0 0.0 6 185 - 0.83997 2 0 ack 40 ------- 0 4.0 0.0 6 185 - 0.84029 2 3 cbr 210 ------- 1 1.0 5.0 180 195 + 0.8425 1 2 cbr 210 ------- 1 1.0 5.0 198 215 - 0.8425 1 2 cbr 210 ------- 1 1.0 5.0 198 215 r 0.84285 3 5 cbr 210 ------- 1 1.0 5.0 149 162 r 0.84325 2 3 cbr 210 ------- 1 1.0 5.0 165 179 + 0.84325 3 5 cbr 210 ------- 1 1.0 5.0 165 179 - 0.84325 3 5 cbr 210 ------- 1 1.0 5.0 165 179 r 0.84336 1 2 cbr 210 ------- 1 1.0 5.0 184 200 + 0.84336 2 3 cbr 210 ------- 1 1.0 5.0 184 200 - 0.84365 2 3 cbr 210 ------- 1 1.0 5.0 181 197 r 0.84621 3 5 cbr 210 ------- 1 1.0 5.0 150 163 + 0.84625 1 2 cbr 210 ------- 1 1.0 5.0 199 216 - 0.84625 1 2 cbr 210 ------- 1 1.0 5.0 199 216 r 0.84661 2 3 cbr 210 ------- 1 1.0 5.0 166 180 + 0.84661 3 5 cbr 210 ------- 1 1.0 5.0 166 180 - 0.84661 3 5 cbr 210 ------- 1 1.0 5.0 166 180 - 0.84701 2 3 cbr 210 ------- 1 1.0 5.0 182 198 r 0.84711 1 2 cbr 210 ------- 1 1.0 5.0 185 201 + 0.84711 2 3 cbr 210 ------- 1 1.0 5.0 185 201 r 0.84957 3 5 cbr 210 ------- 1 1.0 5.0 151 164 r 0.84997 2 3 cbr 210 ------- 1 1.0 5.0 167 181 + 0.84997 3 5 cbr 210 ------- 1 1.0 5.0 167 181 - 0.84997 3 5 cbr 210 ------- 1 1.0 5.0 167 181 + 0.85 1 2 cbr 210 ------- 1 1.0 5.0 200 217 - 0.85 1 2 cbr 210 ------- 1 1.0 5.0 200 217 - 0.85037 2 3 cbr 210 ------- 1 1.0 5.0 183 199 r 0.85086 1 2 cbr 210 ------- 1 1.0 5.0 186 202 + 0.85086 2 3 cbr 210 ------- 1 1.0 5.0 186 202 r 0.85109 2 0 ack 40 ------- 0 4.0 0.0 5 173 + 0.85109 0 2 tcp 1000 ------- 0 0.0 4.0 9 218 - 0.85109 0 2 tcp 1000 ------- 0 0.0 4.0 9 218 r 0.85293 3 5 cbr 210 ------- 1 1.0 5.0 152 165 r 0.85333 2 3 cbr 210 ------- 1 1.0 5.0 168 182 + 0.85333 3 5 cbr 210 ------- 1 1.0 5.0 168 182 - 0.85333 3 5 cbr 210 ------- 1 1.0 5.0 168 182 - 0.85373 2 3 cbr 210 ------- 1 1.0 5.0 184 200 + 0.85375 1 2 cbr 210 ------- 1 1.0 5.0 201 219 - 0.85375 1 2 cbr 210 ------- 1 1.0 5.0 201 219 r 0.85461 1 2 cbr 210 ------- 1 1.0 5.0 187 203 + 0.85461 2 3 cbr 210 ------- 1 1.0 5.0 187 203 r 0.85629 3 5 cbr 210 ------- 1 1.0 5.0 153 166 r 0.85669 2 3 cbr 210 ------- 1 1.0 5.0 169 183 + 0.85669 3 5 cbr 210 ------- 1 1.0 5.0 169 183 - 0.85669 3 5 cbr 210 ------- 1 1.0 5.0 169 183 - 0.85709 2 3 cbr 210 ------- 1 1.0 5.0 185 201 + 0.8575 1 2 cbr 210 ------- 1 1.0 5.0 202 220 - 0.8575 1 2 cbr 210 ------- 1 1.0 5.0 202 220 r 0.85836 1 2 cbr 210 ------- 1 1.0 5.0 188 204 + 0.85836 2 3 cbr 210 ------- 1 1.0 5.0 188 204 r 0.85965 3 5 cbr 210 ------- 1 1.0 5.0 154 167 r 0.86005 2 3 cbr 210 ------- 1 1.0 5.0 170 184 + 0.86005 3 5 cbr 210 ------- 1 1.0 5.0 170 184 - 0.86005 3 5 cbr 210 ------- 1 1.0 5.0 170 184 - 0.86045 2 3 cbr 210 ------- 1 1.0 5.0 186 202 + 0.86125 1 2 cbr 210 ------- 1 1.0 5.0 203 221 - 0.86125 1 2 cbr 210 ------- 1 1.0 5.0 203 221 r 0.86211 1 2 cbr 210 ------- 1 1.0 5.0 189 206 + 0.86211 2 3 cbr 210 ------- 1 1.0 5.0 189 206 r 0.86301 3 5 cbr 210 ------- 1 1.0 5.0 155 168 r 0.86341 2 3 cbr 210 ------- 1 1.0 5.0 171 186 + 0.86341 3 5 cbr 210 ------- 1 1.0 5.0 171 186 - 0.86341 3 5 cbr 210 ------- 1 1.0 5.0 171 186 - 0.86381 2 3 cbr 210 ------- 1 1.0 5.0 187 203 + 0.865 1 2 cbr 210 ------- 1 1.0 5.0 204 222 - 0.865 1 2 cbr 210 ------- 1 1.0 5.0 204 222 r 0.86586 1 2 cbr 210 ------- 1 1.0 5.0 190 207 + 0.86586 2 3 cbr 210 ------- 1 1.0 5.0 190 207 r 0.86637 3 5 cbr 210 ------- 1 1.0 5.0 156 169 r 0.86677 2 3 cbr 210 ------- 1 1.0 5.0 172 187 + 0.86677 3 5 cbr 210 ------- 1 1.0 5.0 172 187 - 0.86677 3 5 cbr 210 ------- 1 1.0 5.0 172 187 - 0.86717 2 3 cbr 210 ------- 1 1.0 5.0 188 204 + 0.86875 1 2 cbr 210 ------- 1 1.0 5.0 205 223 - 0.86875 1 2 cbr 210 ------- 1 1.0 5.0 205 223 r 0.86961 1 2 cbr 210 ------- 1 1.0 5.0 191 208 + 0.86961 2 3 cbr 210 ------- 1 1.0 5.0 191 208 r 0.86973 3 5 cbr 210 ------- 1 1.0 5.0 157 170 r 0.87013 2 3 cbr 210 ------- 1 1.0 5.0 173 188 + 0.87013 3 5 cbr 210 ------- 1 1.0 5.0 173 188 - 0.87013 3 5 cbr 210 ------- 1 1.0 5.0 173 188 - 0.87053 2 3 cbr 210 ------- 1 1.0 5.0 189 206 + 0.8725 1 2 cbr 210 ------- 1 1.0 5.0 206 224 - 0.8725 1 2 cbr 210 ------- 1 1.0 5.0 206 224 r 0.87309 3 5 cbr 210 ------- 1 1.0 5.0 158 171 r 0.87336 1 2 cbr 210 ------- 1 1.0 5.0 192 209 + 0.87336 2 3 cbr 210 ------- 1 1.0 5.0 192 209 r 0.87349 2 3 cbr 210 ------- 1 1.0 5.0 174 189 + 0.87349 3 5 cbr 210 ------- 1 1.0 5.0 174 189 - 0.87349 3 5 cbr 210 ------- 1 1.0 5.0 174 189 - 0.87389 2 3 cbr 210 ------- 1 1.0 5.0 190 207 r 0.87421 0 2 tcp 1000 ------- 0 0.0 4.0 8 205 + 0.87421 2 3 tcp 1000 ------- 0 0.0 4.0 8 205 + 0.87625 1 2 cbr 210 ------- 1 1.0 5.0 207 225 - 0.87625 1 2 cbr 210 ------- 1 1.0 5.0 207 225 r 0.87645 3 5 cbr 210 ------- 1 1.0 5.0 159 172 r 0.87685 2 3 cbr 210 ------- 1 1.0 5.0 175 190 + 0.87685 3 5 cbr 210 ------- 1 1.0 5.0 175 190 - 0.87685 3 5 cbr 210 ------- 1 1.0 5.0 175 190 r 0.87711 1 2 cbr 210 ------- 1 1.0 5.0 193 210 + 0.87711 2 3 cbr 210 ------- 1 1.0 5.0 193 210 - 0.87725 2 3 cbr 210 ------- 1 1.0 5.0 191 208 r 0.87949 3 2 ack 40 ------- 0 4.0 0.0 7 196 + 0.87949 2 0 ack 40 ------- 0 4.0 0.0 7 196 - 0.87949 2 0 ack 40 ------- 0 4.0 0.0 7 196 r 0.87981 3 5 cbr 210 ------- 1 1.0 5.0 160 174 + 0.88 1 2 cbr 210 ------- 1 1.0 5.0 208 226 - 0.88 1 2 cbr 210 ------- 1 1.0 5.0 208 226 r 0.88021 2 3 cbr 210 ------- 1 1.0 5.0 176 191 + 0.88021 3 5 cbr 210 ------- 1 1.0 5.0 176 191 - 0.88021 3 5 cbr 210 ------- 1 1.0 5.0 176 191 - 0.88061 2 3 cbr 210 ------- 1 1.0 5.0 192 209 r 0.88086 1 2 cbr 210 ------- 1 1.0 5.0 194 211 + 0.88086 2 3 cbr 210 ------- 1 1.0 5.0 194 211 r 0.88317 3 5 cbr 210 ------- 1 1.0 5.0 161 175 r 0.88357 2 3 cbr 210 ------- 1 1.0 5.0 177 192 + 0.88357 3 5 cbr 210 ------- 1 1.0 5.0 177 192 - 0.88357 3 5 cbr 210 ------- 1 1.0 5.0 177 192 + 0.88375 1 2 cbr 210 ------- 1 1.0 5.0 209 227 - 0.88375 1 2 cbr 210 ------- 1 1.0 5.0 209 227 - 0.88397 2 3 tcp 1000 ------- 0 0.0 4.0 8 205 r 0.88461 1 2 cbr 210 ------- 1 1.0 5.0 195 212 + 0.88461 2 3 cbr 210 ------- 1 1.0 5.0 195 212 r 0.88653 3 5 cbr 210 ------- 1 1.0 5.0 162 176 r 0.88693 2 3 cbr 210 ------- 1 1.0 5.0 178 193 + 0.88693 3 5 cbr 210 ------- 1 1.0 5.0 178 193 - 0.88693 3 5 cbr 210 ------- 1 1.0 5.0 178 193 + 0.8875 1 2 cbr 210 ------- 1 1.0 5.0 210 228 - 0.8875 1 2 cbr 210 ------- 1 1.0 5.0 210 228 r 0.88836 1 2 cbr 210 ------- 1 1.0 5.0 196 213 + 0.88836 2 3 cbr 210 ------- 1 1.0 5.0 196 213 r 0.88989 3 5 cbr 210 ------- 1 1.0 5.0 163 177 r 0.89029 2 3 cbr 210 ------- 1 1.0 5.0 179 194 + 0.89029 3 5 cbr 210 ------- 1 1.0 5.0 179 194 - 0.89029 3 5 cbr 210 ------- 1 1.0 5.0 179 194 r 0.89061 2 0 ack 40 ------- 0 4.0 0.0 6 185 + 0.89061 0 2 tcp 1000 ------- 0 0.0 4.0 10 229 - 0.89061 0 2 tcp 1000 ------- 0 0.0 4.0 10 229 + 0.89125 1 2 cbr 210 ------- 1 1.0 5.0 211 230 - 0.89125 1 2 cbr 210 ------- 1 1.0 5.0 211 230 r 0.89211 1 2 cbr 210 ------- 1 1.0 5.0 197 214 + 0.89211 2 3 cbr 210 ------- 1 1.0 5.0 197 214 r 0.89325 3 5 cbr 210 ------- 1 1.0 5.0 164 178 r 0.89365 2 3 cbr 210 ------- 1 1.0 5.0 180 195 + 0.89365 3 5 cbr 210 ------- 1 1.0 5.0 180 195 - 0.89365 3 5 cbr 210 ------- 1 1.0 5.0 180 195 + 0.895 1 2 cbr 210 ------- 1 1.0 5.0 212 231 - 0.895 1 2 cbr 210 ------- 1 1.0 5.0 212 231 r 0.89586 1 2 cbr 210 ------- 1 1.0 5.0 198 215 + 0.89586 2 3 cbr 210 ------- 1 1.0 5.0 198 215 r 0.89661 3 5 cbr 210 ------- 1 1.0 5.0 165 179 r 0.89701 2 3 cbr 210 ------- 1 1.0 5.0 181 197 + 0.89701 3 5 cbr 210 ------- 1 1.0 5.0 181 197 - 0.89701 3 5 cbr 210 ------- 1 1.0 5.0 181 197 + 0.89875 1 2 cbr 210 ------- 1 1.0 5.0 213 232 - 0.89875 1 2 cbr 210 ------- 1 1.0 5.0 213 232 r 0.89961 1 2 cbr 210 ------- 1 1.0 5.0 199 216 + 0.89961 2 3 cbr 210 ------- 1 1.0 5.0 199 216 r 0.89997 3 5 cbr 210 ------- 1 1.0 5.0 166 180 - 0.89997 2 3 cbr 210 ------- 1 1.0 5.0 193 210 r 0.90037 2 3 cbr 210 ------- 1 1.0 5.0 182 198 + 0.90037 3 5 cbr 210 ------- 1 1.0 5.0 182 198 - 0.90037 3 5 cbr 210 ------- 1 1.0 5.0 182 198 + 0.9025 1 2 cbr 210 ------- 1 1.0 5.0 214 233 - 0.9025 1 2 cbr 210 ------- 1 1.0 5.0 214 233 r 0.90333 3 5 cbr 210 ------- 1 1.0 5.0 167 181 - 0.90333 2 3 cbr 210 ------- 1 1.0 5.0 194 211 r 0.90336 1 2 cbr 210 ------- 1 1.0 5.0 200 217 + 0.90336 2 3 cbr 210 ------- 1 1.0 5.0 200 217 r 0.90373 2 3 cbr 210 ------- 1 1.0 5.0 183 199 + 0.90373 3 5 cbr 210 ------- 1 1.0 5.0 183 199 - 0.90373 3 5 cbr 210 ------- 1 1.0 5.0 183 199 + 0.90625 1 2 cbr 210 ------- 1 1.0 5.0 215 234 - 0.90625 1 2 cbr 210 ------- 1 1.0 5.0 215 234 r 0.90669 3 5 cbr 210 ------- 1 1.0 5.0 168 182 - 0.90669 2 3 cbr 210 ------- 1 1.0 5.0 195 212 r 0.90709 2 3 cbr 210 ------- 1 1.0 5.0 184 200 + 0.90709 3 5 cbr 210 ------- 1 1.0 5.0 184 200 - 0.90709 3 5 cbr 210 ------- 1 1.0 5.0 184 200 r 0.90711 1 2 cbr 210 ------- 1 1.0 5.0 201 219 + 0.90711 2 3 cbr 210 ------- 1 1.0 5.0 201 219 + 0.91 1 2 cbr 210 ------- 1 1.0 5.0 216 235 - 0.91 1 2 cbr 210 ------- 1 1.0 5.0 216 235 r 0.91005 3 5 cbr 210 ------- 1 1.0 5.0 169 183 - 0.91005 2 3 cbr 210 ------- 1 1.0 5.0 196 213 r 0.91045 2 3 cbr 210 ------- 1 1.0 5.0 185 201 + 0.91045 3 5 cbr 210 ------- 1 1.0 5.0 185 201 - 0.91045 3 5 cbr 210 ------- 1 1.0 5.0 185 201 r 0.91086 1 2 cbr 210 ------- 1 1.0 5.0 202 220 + 0.91086 2 3 cbr 210 ------- 1 1.0 5.0 202 220 r 0.91341 3 5 cbr 210 ------- 1 1.0 5.0 170 184 - 0.91341 2 3 cbr 210 ------- 1 1.0 5.0 197 214 + 0.91375 1 2 cbr 210 ------- 1 1.0 5.0 217 236 - 0.91375 1 2 cbr 210 ------- 1 1.0 5.0 217 236 r 0.91381 2 3 cbr 210 ------- 1 1.0 5.0 186 202 + 0.91381 3 5 cbr 210 ------- 1 1.0 5.0 186 202 - 0.91381 3 5 cbr 210 ------- 1 1.0 5.0 186 202 r 0.91461 1 2 cbr 210 ------- 1 1.0 5.0 203 221 + 0.91461 2 3 cbr 210 ------- 1 1.0 5.0 203 221 r 0.91677 3 5 cbr 210 ------- 1 1.0 5.0 171 186 - 0.91677 2 3 cbr 210 ------- 1 1.0 5.0 198 215 r 0.91709 0 2 tcp 1000 ------- 0 0.0 4.0 9 218 + 0.91709 2 3 tcp 1000 ------- 0 0.0 4.0 9 218 r 0.91717 2 3 cbr 210 ------- 1 1.0 5.0 187 203 + 0.91717 3 5 cbr 210 ------- 1 1.0 5.0 187 203 - 0.91717 3 5 cbr 210 ------- 1 1.0 5.0 187 203 + 0.9175 1 2 cbr 210 ------- 1 1.0 5.0 218 237 - 0.9175 1 2 cbr 210 ------- 1 1.0 5.0 218 237 r 0.91836 1 2 cbr 210 ------- 1 1.0 5.0 204 222 + 0.91836 2 3 cbr 210 ------- 1 1.0 5.0 204 222 r 0.92013 3 5 cbr 210 ------- 1 1.0 5.0 172 187 - 0.92013 2 3 cbr 210 ------- 1 1.0 5.0 199 216 r 0.92053 2 3 cbr 210 ------- 1 1.0 5.0 188 204 + 0.92053 3 5 cbr 210 ------- 1 1.0 5.0 188 204 - 0.92053 3 5 cbr 210 ------- 1 1.0 5.0 188 204 + 0.92125 1 2 cbr 210 ------- 1 1.0 5.0 219 238 - 0.92125 1 2 cbr 210 ------- 1 1.0 5.0 219 238 r 0.92211 1 2 cbr 210 ------- 1 1.0 5.0 205 223 + 0.92211 2 3 cbr 210 ------- 1 1.0 5.0 205 223 r 0.92349 3 5 cbr 210 ------- 1 1.0 5.0 173 188 - 0.92349 2 3 cbr 210 ------- 1 1.0 5.0 200 217 r 0.92389 2 3 cbr 210 ------- 1 1.0 5.0 189 206 + 0.92389 3 5 cbr 210 ------- 1 1.0 5.0 189 206 - 0.92389 3 5 cbr 210 ------- 1 1.0 5.0 189 206 + 0.925 1 2 cbr 210 ------- 1 1.0 5.0 220 239 - 0.925 1 2 cbr 210 ------- 1 1.0 5.0 220 239 r 0.92586 1 2 cbr 210 ------- 1 1.0 5.0 206 224 + 0.92586 2 3 cbr 210 ------- 1 1.0 5.0 206 224 r 0.92685 3 5 cbr 210 ------- 1 1.0 5.0 174 189 - 0.92685 2 3 cbr 210 ------- 1 1.0 5.0 201 219 r 0.92725 2 3 cbr 210 ------- 1 1.0 5.0 190 207 + 0.92725 3 5 cbr 210 ------- 1 1.0 5.0 190 207 - 0.92725 3 5 cbr 210 ------- 1 1.0 5.0 190 207 + 0.92875 1 2 cbr 210 ------- 1 1.0 5.0 221 240 - 0.92875 1 2 cbr 210 ------- 1 1.0 5.0 221 240 r 0.92961 1 2 cbr 210 ------- 1 1.0 5.0 207 225 + 0.92961 2 3 cbr 210 ------- 1 1.0 5.0 207 225 r 0.93013 2 0 ack 40 ------- 0 4.0 0.0 7 196 + 0.93013 0 2 tcp 1000 ------- 0 0.0 4.0 11 241 - 0.93013 0 2 tcp 1000 ------- 0 0.0 4.0 11 241 r 0.93021 3 5 cbr 210 ------- 1 1.0 5.0 175 190 - 0.93021 2 3 cbr 210 ------- 1 1.0 5.0 202 220 r 0.93061 2 3 cbr 210 ------- 1 1.0 5.0 191 208 + 0.93061 3 5 cbr 210 ------- 1 1.0 5.0 191 208 - 0.93061 3 5 cbr 210 ------- 1 1.0 5.0 191 208 + 0.9325 1 2 cbr 210 ------- 1 1.0 5.0 222 242 - 0.9325 1 2 cbr 210 ------- 1 1.0 5.0 222 242 r 0.93336 1 2 cbr 210 ------- 1 1.0 5.0 208 226 + 0.93336 2 3 cbr 210 ------- 1 1.0 5.0 208 226 r 0.93357 3 5 cbr 210 ------- 1 1.0 5.0 176 191 - 0.93357 2 3 cbr 210 ------- 1 1.0 5.0 203 221 r 0.93397 2 3 cbr 210 ------- 1 1.0 5.0 192 209 + 0.93397 3 5 cbr 210 ------- 1 1.0 5.0 192 209 - 0.93397 3 5 cbr 210 ------- 1 1.0 5.0 192 209 + 0.93625 1 2 cbr 210 ------- 1 1.0 5.0 223 243 - 0.93625 1 2 cbr 210 ------- 1 1.0 5.0 223 243 r 0.93693 3 5 cbr 210 ------- 1 1.0 5.0 177 192 - 0.93693 2 3 tcp 1000 ------- 0 0.0 4.0 9 218 r 0.93711 1 2 cbr 210 ------- 1 1.0 5.0 209 227 + 0.93711 2 3 cbr 210 ------- 1 1.0 5.0 209 227 + 0.94 1 2 cbr 210 ------- 1 1.0 5.0 224 244 - 0.94 1 2 cbr 210 ------- 1 1.0 5.0 224 244 r 0.94029 3 5 cbr 210 ------- 1 1.0 5.0 178 193 r 0.94086 1 2 cbr 210 ------- 1 1.0 5.0 210 228 + 0.94086 2 3 cbr 210 ------- 1 1.0 5.0 210 228 r 0.94365 3 5 cbr 210 ------- 1 1.0 5.0 179 194 + 0.94375 1 2 cbr 210 ------- 1 1.0 5.0 225 245 - 0.94375 1 2 cbr 210 ------- 1 1.0 5.0 225 245 r 0.94461 1 2 cbr 210 ------- 1 1.0 5.0 211 230 + 0.94461 2 3 cbr 210 ------- 1 1.0 5.0 211 230 r 0.94701 3 5 cbr 210 ------- 1 1.0 5.0 180 195 + 0.9475 1 2 cbr 210 ------- 1 1.0 5.0 226 246 - 0.9475 1 2 cbr 210 ------- 1 1.0 5.0 226 246 r 0.94836 1 2 cbr 210 ------- 1 1.0 5.0 212 231 + 0.94836 2 3 cbr 210 ------- 1 1.0 5.0 212 231 r 0.94997 2 3 tcp 1000 ------- 0 0.0 4.0 8 205 + 0.94997 3 4 tcp 1000 ------- 0 0.0 4.0 8 205 - 0.94997 3 4 tcp 1000 ------- 0 0.0 4.0 8 205 r 0.95037 3 5 cbr 210 ------- 1 1.0 5.0 181 197 + 0.95125 1 2 cbr 210 ------- 1 1.0 5.0 227 247 - 0.95125 1 2 cbr 210 ------- 1 1.0 5.0 227 247 r 0.95211 1 2 cbr 210 ------- 1 1.0 5.0 213 232 + 0.95211 2 3 cbr 210 ------- 1 1.0 5.0 213 232 d 0.95211 2 3 cbr 210 ------- 1 1.0 5.0 213 232 - 0.95293 2 3 cbr 210 ------- 1 1.0 5.0 204 222 r 0.95333 2 3 cbr 210 ------- 1 1.0 5.0 193 210 + 0.95333 3 5 cbr 210 ------- 1 1.0 5.0 193 210 - 0.95333 3 5 cbr 210 ------- 1 1.0 5.0 193 210 r 0.95373 3 5 cbr 210 ------- 1 1.0 5.0 182 198 + 0.955 1 2 cbr 210 ------- 1 1.0 5.0 228 248 - 0.955 1 2 cbr 210 ------- 1 1.0 5.0 228 248 r 0.95586 1 2 cbr 210 ------- 1 1.0 5.0 214 233 + 0.95586 2 3 cbr 210 ------- 1 1.0 5.0 214 233 - 0.95629 2 3 cbr 210 ------- 1 1.0 5.0 205 223 r 0.95661 0 2 tcp 1000 ------- 0 0.0 4.0 10 229 + 0.95661 2 3 tcp 1000 ------- 0 0.0 4.0 10 229 r 0.95669 2 3 cbr 210 ------- 1 1.0 5.0 194 211 + 0.95669 3 5 cbr 210 ------- 1 1.0 5.0 194 211 - 0.95669 3 5 cbr 210 ------- 1 1.0 5.0 194 211 r 0.95709 3 5 cbr 210 ------- 1 1.0 5.0 183 199 + 0.95875 1 2 cbr 210 ------- 1 1.0 5.0 229 249 - 0.95875 1 2 cbr 210 ------- 1 1.0 5.0 229 249 r 0.95961 1 2 cbr 210 ------- 1 1.0 5.0 215 234 + 0.95961 2 3 cbr 210 ------- 1 1.0 5.0 215 234 d 0.95961 2 3 cbr 210 ------- 1 1.0 5.0 215 234 - 0.95965 2 3 cbr 210 ------- 1 1.0 5.0 206 224 r 0.96005 2 3 cbr 210 ------- 1 1.0 5.0 195 212 + 0.96005 3 5 cbr 210 ------- 1 1.0 5.0 195 212 - 0.96005 3 5 cbr 210 ------- 1 1.0 5.0 195 212 r 0.96045 3 5 cbr 210 ------- 1 1.0 5.0 184 200 + 0.9625 1 2 cbr 210 ------- 1 1.0 5.0 230 250 - 0.9625 1 2 cbr 210 ------- 1 1.0 5.0 230 250 - 0.96301 2 3 cbr 210 ------- 1 1.0 5.0 207 225 r 0.96336 1 2 cbr 210 ------- 1 1.0 5.0 216 235 + 0.96336 2 3 cbr 210 ------- 1 1.0 5.0 216 235 r 0.96341 2 3 cbr 210 ------- 1 1.0 5.0 196 213 + 0.96341 3 5 cbr 210 ------- 1 1.0 5.0 196 213 - 0.96341 3 5 cbr 210 ------- 1 1.0 5.0 196 213 r 0.96381 3 5 cbr 210 ------- 1 1.0 5.0 185 201 + 0.96625 1 2 cbr 210 ------- 1 1.0 5.0 231 251 - 0.96625 1 2 cbr 210 ------- 1 1.0 5.0 231 251 - 0.96637 2 3 cbr 210 ------- 1 1.0 5.0 208 226 r 0.96677 2 3 cbr 210 ------- 1 1.0 5.0 197 214 + 0.96677 3 5 cbr 210 ------- 1 1.0 5.0 197 214 - 0.96677 3 5 cbr 210 ------- 1 1.0 5.0 197 214 r 0.96711 1 2 cbr 210 ------- 1 1.0 5.0 217 236 + 0.96711 2 3 cbr 210 ------- 1 1.0 5.0 217 236 r 0.96717 3 5 cbr 210 ------- 1 1.0 5.0 186 202 - 0.96973 2 3 cbr 210 ------- 1 1.0 5.0 209 227 + 0.97 1 2 cbr 210 ------- 1 1.0 5.0 232 252 - 0.97 1 2 cbr 210 ------- 1 1.0 5.0 232 252 r 0.97013 2 3 cbr 210 ------- 1 1.0 5.0 198 215 + 0.97013 3 5 cbr 210 ------- 1 1.0 5.0 198 215 - 0.97013 3 5 cbr 210 ------- 1 1.0 5.0 198 215 r 0.97053 3 5 cbr 210 ------- 1 1.0 5.0 187 203 r 0.97086 1 2 cbr 210 ------- 1 1.0 5.0 218 237 + 0.97086 2 3 cbr 210 ------- 1 1.0 5.0 218 237 - 0.97309 2 3 cbr 210 ------- 1 1.0 5.0 210 228 r 0.97349 2 3 cbr 210 ------- 1 1.0 5.0 199 216 + 0.97349 3 5 cbr 210 ------- 1 1.0 5.0 199 216 - 0.97349 3 5 cbr 210 ------- 1 1.0 5.0 199 216 + 0.97375 1 2 cbr 210 ------- 1 1.0 5.0 233 253 - 0.97375 1 2 cbr 210 ------- 1 1.0 5.0 233 253 r 0.97389 3 5 cbr 210 ------- 1 1.0 5.0 188 204 r 0.97461 1 2 cbr 210 ------- 1 1.0 5.0 219 238 + 0.97461 2 3 cbr 210 ------- 1 1.0 5.0 219 238 - 0.97645 2 3 cbr 210 ------- 1 1.0 5.0 211 230 r 0.97685 2 3 cbr 210 ------- 1 1.0 5.0 200 217 + 0.97685 3 5 cbr 210 ------- 1 1.0 5.0 200 217 - 0.97685 3 5 cbr 210 ------- 1 1.0 5.0 200 217 r 0.97725 3 5 cbr 210 ------- 1 1.0 5.0 189 206 + 0.9775 1 2 cbr 210 ------- 1 1.0 5.0 234 254 - 0.9775 1 2 cbr 210 ------- 1 1.0 5.0 234 254 r 0.97836 1 2 cbr 210 ------- 1 1.0 5.0 220 239 + 0.97836 2 3 cbr 210 ------- 1 1.0 5.0 220 239 - 0.97981 2 3 cbr 210 ------- 1 1.0 5.0 212 231 r 0.98021 2 3 cbr 210 ------- 1 1.0 5.0 201 219 + 0.98021 3 5 cbr 210 ------- 1 1.0 5.0 201 219 - 0.98021 3 5 cbr 210 ------- 1 1.0 5.0 201 219 r 0.98061 3 5 cbr 210 ------- 1 1.0 5.0 190 207 + 0.98125 1 2 cbr 210 ------- 1 1.0 5.0 235 255 - 0.98125 1 2 cbr 210 ------- 1 1.0 5.0 235 255 r 0.98211 1 2 cbr 210 ------- 1 1.0 5.0 221 240 + 0.98211 2 3 cbr 210 ------- 1 1.0 5.0 221 240 - 0.98317 2 3 cbr 210 ------- 1 1.0 5.0 214 233 r 0.98357 2 3 cbr 210 ------- 1 1.0 5.0 202 220 + 0.98357 3 5 cbr 210 ------- 1 1.0 5.0 202 220 - 0.98357 3 5 cbr 210 ------- 1 1.0 5.0 202 220 r 0.98397 3 5 cbr 210 ------- 1 1.0 5.0 191 208 + 0.985 1 2 cbr 210 ------- 1 1.0 5.0 236 256 - 0.985 1 2 cbr 210 ------- 1 1.0 5.0 236 256 r 0.98586 1 2 cbr 210 ------- 1 1.0 5.0 222 242 + 0.98586 2 3 cbr 210 ------- 1 1.0 5.0 222 242 - 0.98653 2 3 tcp 1000 ------- 0 0.0 4.0 10 229 r 0.98693 2 3 cbr 210 ------- 1 1.0 5.0 203 221 + 0.98693 3 5 cbr 210 ------- 1 1.0 5.0 203 221 - 0.98693 3 5 cbr 210 ------- 1 1.0 5.0 203 221 r 0.98733 3 5 cbr 210 ------- 1 1.0 5.0 192 209 + 0.98875 1 2 cbr 210 ------- 1 1.0 5.0 237 257 - 0.98875 1 2 cbr 210 ------- 1 1.0 5.0 237 257 r 0.98961 1 2 cbr 210 ------- 1 1.0 5.0 223 243 + 0.98961 2 3 cbr 210 ------- 1 1.0 5.0 223 243 + 0.9925 1 2 cbr 210 ------- 1 1.0 5.0 238 258 - 0.9925 1 2 cbr 210 ------- 1 1.0 5.0 238 258 r 0.99336 1 2 cbr 210 ------- 1 1.0 5.0 224 244 + 0.99336 2 3 cbr 210 ------- 1 1.0 5.0 224 244 r 0.99613 0 2 tcp 1000 ------- 0 0.0 4.0 11 241 + 0.99613 2 3 tcp 1000 ------- 0 0.0 4.0 11 241 d 0.99613 2 3 tcp 1000 ------- 0 0.0 4.0 11 241 + 0.99625 1 2 cbr 210 ------- 1 1.0 5.0 239 259 - 0.99625 1 2 cbr 210 ------- 1 1.0 5.0 239 259 r 0.99711 1 2 cbr 210 ------- 1 1.0 5.0 225 245 + 0.99711 2 3 cbr 210 ------- 1 1.0 5.0 225 245 d 0.99711 2 3 cbr 210 ------- 1 1.0 5.0 225 245 + 1 1 2 cbr 210 ------- 1 1.0 5.0 240 260 - 1 1 2 cbr 210 ------- 1 1.0 5.0 240 260 r 1.00086 1 2 cbr 210 ------- 1 1.0 5.0 226 246 + 1.00086 2 3 cbr 210 ------- 1 1.0 5.0 226 246 d 1.00086 2 3 cbr 210 ------- 1 1.0 5.0 226 246 - 1.00253 2 3 cbr 210 ------- 1 1.0 5.0 216 235 r 1.00293 2 3 tcp 1000 ------- 0 0.0 4.0 9 218 + 1.00293 3 4 tcp 1000 ------- 0 0.0 4.0 9 218 - 1.00293 3 4 tcp 1000 ------- 0 0.0 4.0 9 218 + 1.00375 1 2 cbr 210 ------- 1 1.0 5.0 241 261 - 1.00375 1 2 cbr 210 ------- 1 1.0 5.0 241 261 r 1.00461 1 2 cbr 210 ------- 1 1.0 5.0 227 247 + 1.00461 2 3 cbr 210 ------- 1 1.0 5.0 227 247 - 1.00589 2 3 cbr 210 ------- 1 1.0 5.0 217 236 r 1.00629 2 3 cbr 210 ------- 1 1.0 5.0 204 222 + 1.00629 3 5 cbr 210 ------- 1 1.0 5.0 204 222 - 1.00629 3 5 cbr 210 ------- 1 1.0 5.0 204 222 r 1.00669 3 5 cbr 210 ------- 1 1.0 5.0 193 210 + 1.0075 1 2 cbr 210 ------- 1 1.0 5.0 242 262 - 1.0075 1 2 cbr 210 ------- 1 1.0 5.0 242 262 r 1.00836 1 2 cbr 210 ------- 1 1.0 5.0 228 248 + 1.00836 2 3 cbr 210 ------- 1 1.0 5.0 228 248 - 1.00925 2 3 cbr 210 ------- 1 1.0 5.0 218 237 r 1.00965 2 3 cbr 210 ------- 1 1.0 5.0 205 223 + 1.00965 3 5 cbr 210 ------- 1 1.0 5.0 205 223 - 1.00965 3 5 cbr 210 ------- 1 1.0 5.0 205 223 r 1.01005 3 5 cbr 210 ------- 1 1.0 5.0 194 211 + 1.01125 1 2 cbr 210 ------- 1 1.0 5.0 243 263 - 1.01125 1 2 cbr 210 ------- 1 1.0 5.0 243 263 r 1.01211 1 2 cbr 210 ------- 1 1.0 5.0 229 249 + 1.01211 2 3 cbr 210 ------- 1 1.0 5.0 229 249 - 1.01261 2 3 cbr 210 ------- 1 1.0 5.0 219 238 r 1.01301 2 3 cbr 210 ------- 1 1.0 5.0 206 224 + 1.01301 3 5 cbr 210 ------- 1 1.0 5.0 206 224 - 1.01301 3 5 cbr 210 ------- 1 1.0 5.0 206 224 r 1.01341 3 5 cbr 210 ------- 1 1.0 5.0 195 212 + 1.015 1 2 cbr 210 ------- 1 1.0 5.0 244 264 - 1.015 1 2 cbr 210 ------- 1 1.0 5.0 244 264 r 1.01586 1 2 cbr 210 ------- 1 1.0 5.0 230 250 + 1.01586 2 3 cbr 210 ------- 1 1.0 5.0 230 250 r 1.01597 3 4 tcp 1000 ------- 0 0.0 4.0 8 205 + 1.01597 4 3 ack 40 ------- 0 4.0 0.0 8 265 - 1.01597 4 3 ack 40 ------- 0 4.0 0.0 8 265 - 1.01597 2 3 cbr 210 ------- 1 1.0 5.0 220 239 r 1.01637 2 3 cbr 210 ------- 1 1.0 5.0 207 225 + 1.01637 3 5 cbr 210 ------- 1 1.0 5.0 207 225 - 1.01637 3 5 cbr 210 ------- 1 1.0 5.0 207 225 r 1.01677 3 5 cbr 210 ------- 1 1.0 5.0 196 213 + 1.01875 1 2 cbr 210 ------- 1 1.0 5.0 245 266 - 1.01875 1 2 cbr 210 ------- 1 1.0 5.0 245 266 - 1.01933 2 3 cbr 210 ------- 1 1.0 5.0 221 240 r 1.01961 1 2 cbr 210 ------- 1 1.0 5.0 231 251 + 1.01961 2 3 cbr 210 ------- 1 1.0 5.0 231 251 r 1.01973 2 3 cbr 210 ------- 1 1.0 5.0 208 226 + 1.01973 3 5 cbr 210 ------- 1 1.0 5.0 208 226 - 1.01973 3 5 cbr 210 ------- 1 1.0 5.0 208 226 r 1.02013 3 5 cbr 210 ------- 1 1.0 5.0 197 214 + 1.0225 1 2 cbr 210 ------- 1 1.0 5.0 246 267 - 1.0225 1 2 cbr 210 ------- 1 1.0 5.0 246 267 - 1.02269 2 3 cbr 210 ------- 1 1.0 5.0 222 242 r 1.02309 2 3 cbr 210 ------- 1 1.0 5.0 209 227 + 1.02309 3 5 cbr 210 ------- 1 1.0 5.0 209 227 - 1.02309 3 5 cbr 210 ------- 1 1.0 5.0 209 227 r 1.02336 1 2 cbr 210 ------- 1 1.0 5.0 232 252 + 1.02336 2 3 cbr 210 ------- 1 1.0 5.0 232 252 r 1.02349 3 5 cbr 210 ------- 1 1.0 5.0 198 215 - 1.02605 2 3 cbr 210 ------- 1 1.0 5.0 223 243 + 1.02625 1 2 cbr 210 ------- 1 1.0 5.0 247 268 - 1.02625 1 2 cbr 210 ------- 1 1.0 5.0 247 268 r 1.02645 2 3 cbr 210 ------- 1 1.0 5.0 210 228 + 1.02645 3 5 cbr 210 ------- 1 1.0 5.0 210 228 - 1.02645 3 5 cbr 210 ------- 1 1.0 5.0 210 228 r 1.02685 3 5 cbr 210 ------- 1 1.0 5.0 199 216 r 1.02711 1 2 cbr 210 ------- 1 1.0 5.0 233 253 + 1.02711 2 3 cbr 210 ------- 1 1.0 5.0 233 253 - 1.02941 2 3 cbr 210 ------- 1 1.0 5.0 224 244 r 1.02981 2 3 cbr 210 ------- 1 1.0 5.0 211 230 + 1.02981 3 5 cbr 210 ------- 1 1.0 5.0 211 230 - 1.02981 3 5 cbr 210 ------- 1 1.0 5.0 211 230 + 1.03 1 2 cbr 210 ------- 1 1.0 5.0 248 269 - 1.03 1 2 cbr 210 ------- 1 1.0 5.0 248 269 r 1.03021 3 5 cbr 210 ------- 1 1.0 5.0 200 217 r 1.03086 1 2 cbr 210 ------- 1 1.0 5.0 234 254 + 1.03086 2 3 cbr 210 ------- 1 1.0 5.0 234 254 - 1.03277 2 3 cbr 210 ------- 1 1.0 5.0 227 247 r 1.03317 2 3 cbr 210 ------- 1 1.0 5.0 212 231 + 1.03317 3 5 cbr 210 ------- 1 1.0 5.0 212 231 - 1.03317 3 5 cbr 210 ------- 1 1.0 5.0 212 231 r 1.03357 3 5 cbr 210 ------- 1 1.0 5.0 201 219 + 1.03375 1 2 cbr 210 ------- 1 1.0 5.0 249 270 - 1.03375 1 2 cbr 210 ------- 1 1.0 5.0 249 270 r 1.03461 1 2 cbr 210 ------- 1 1.0 5.0 235 255 + 1.03461 2 3 cbr 210 ------- 1 1.0 5.0 235 255 - 1.03613 2 3 cbr 210 ------- 1 1.0 5.0 228 248 r 1.03653 2 3 cbr 210 ------- 1 1.0 5.0 214 233 + 1.03653 3 5 cbr 210 ------- 1 1.0 5.0 214 233 - 1.03653 3 5 cbr 210 ------- 1 1.0 5.0 214 233 r 1.03693 3 5 cbr 210 ------- 1 1.0 5.0 202 220 + 1.0375 1 2 cbr 210 ------- 1 1.0 5.0 250 271 - 1.0375 1 2 cbr 210 ------- 1 1.0 5.0 250 271 r 1.03836 1 2 cbr 210 ------- 1 1.0 5.0 236 256 + 1.03836 2 3 cbr 210 ------- 1 1.0 5.0 236 256 - 1.03949 2 3 cbr 210 ------- 1 1.0 5.0 229 249 r 1.04029 3 5 cbr 210 ------- 1 1.0 5.0 203 221 + 1.04125 1 2 cbr 210 ------- 1 1.0 5.0 251 272 - 1.04125 1 2 cbr 210 ------- 1 1.0 5.0 251 272 r 1.04211 1 2 cbr 210 ------- 1 1.0 5.0 237 257 + 1.04211 2 3 cbr 210 ------- 1 1.0 5.0 237 257 - 1.04285 2 3 cbr 210 ------- 1 1.0 5.0 230 250 + 1.045 1 2 cbr 210 ------- 1 1.0 5.0 252 273 - 1.045 1 2 cbr 210 ------- 1 1.0 5.0 252 273 r 1.04586 1 2 cbr 210 ------- 1 1.0 5.0 238 258 + 1.04586 2 3 cbr 210 ------- 1 1.0 5.0 238 258 - 1.04621 2 3 cbr 210 ------- 1 1.0 5.0 231 251 + 1.04875 1 2 cbr 210 ------- 1 1.0 5.0 253 274 - 1.04875 1 2 cbr 210 ------- 1 1.0 5.0 253 274 - 1.04957 2 3 cbr 210 ------- 1 1.0 5.0 232 252 r 1.04961 1 2 cbr 210 ------- 1 1.0 5.0 239 259 + 1.04961 2 3 cbr 210 ------- 1 1.0 5.0 239 259 + 1.0525 1 2 cbr 210 ------- 1 1.0 5.0 254 275 - 1.0525 1 2 cbr 210 ------- 1 1.0 5.0 254 275 r 1.05253 2 3 tcp 1000 ------- 0 0.0 4.0 10 229 + 1.05253 3 4 tcp 1000 ------- 0 0.0 4.0 10 229 - 1.05253 3 4 tcp 1000 ------- 0 0.0 4.0 10 229 - 1.05293 2 3 cbr 210 ------- 1 1.0 5.0 233 253 r 1.05336 1 2 cbr 210 ------- 1 1.0 5.0 240 260 + 1.05336 2 3 cbr 210 ------- 1 1.0 5.0 240 260 r 1.05589 2 3 cbr 210 ------- 1 1.0 5.0 216 235 + 1.05589 3 5 cbr 210 ------- 1 1.0 5.0 216 235 - 1.05589 3 5 cbr 210 ------- 1 1.0 5.0 216 235 + 1.05625 1 2 cbr 210 ------- 1 1.0 5.0 255 276 - 1.05625 1 2 cbr 210 ------- 1 1.0 5.0 255 276 - 1.05629 2 3 cbr 210 ------- 1 1.0 5.0 234 254 r 1.05711 1 2 cbr 210 ------- 1 1.0 5.0 241 261 + 1.05711 2 3 cbr 210 ------- 1 1.0 5.0 241 261 r 1.05925 2 3 cbr 210 ------- 1 1.0 5.0 217 236 + 1.05925 3 5 cbr 210 ------- 1 1.0 5.0 217 236 - 1.05925 3 5 cbr 210 ------- 1 1.0 5.0 217 236 r 1.05965 3 5 cbr 210 ------- 1 1.0 5.0 204 222 - 1.05965 2 3 cbr 210 ------- 1 1.0 5.0 235 255 + 1.06 1 2 cbr 210 ------- 1 1.0 5.0 256 277 - 1.06 1 2 cbr 210 ------- 1 1.0 5.0 256 277 r 1.06086 1 2 cbr 210 ------- 1 1.0 5.0 242 262 + 1.06086 2 3 cbr 210 ------- 1 1.0 5.0 242 262 r 1.06261 2 3 cbr 210 ------- 1 1.0 5.0 218 237 + 1.06261 3 5 cbr 210 ------- 1 1.0 5.0 218 237 - 1.06261 3 5 cbr 210 ------- 1 1.0 5.0 218 237 r 1.06301 3 5 cbr 210 ------- 1 1.0 5.0 205 223 - 1.06301 2 3 cbr 210 ------- 1 1.0 5.0 236 256 + 1.06375 1 2 cbr 210 ------- 1 1.0 5.0 257 278 - 1.06375 1 2 cbr 210 ------- 1 1.0 5.0 257 278 r 1.06461 1 2 cbr 210 ------- 1 1.0 5.0 243 263 + 1.06461 2 3 cbr 210 ------- 1 1.0 5.0 243 263 r 1.06597 2 3 cbr 210 ------- 1 1.0 5.0 219 238 + 1.06597 3 5 cbr 210 ------- 1 1.0 5.0 219 238 - 1.06597 3 5 cbr 210 ------- 1 1.0 5.0 219 238 r 1.06637 3 5 cbr 210 ------- 1 1.0 5.0 206 224 - 1.06637 2 3 cbr 210 ------- 1 1.0 5.0 237 257 r 1.06661 4 3 ack 40 ------- 0 4.0 0.0 8 265 + 1.06661 3 2 ack 40 ------- 0 4.0 0.0 8 265 - 1.06661 3 2 ack 40 ------- 0 4.0 0.0 8 265 + 1.0675 1 2 cbr 210 ------- 1 1.0 5.0 258 279 - 1.0675 1 2 cbr 210 ------- 1 1.0 5.0 258 279 r 1.06836 1 2 cbr 210 ------- 1 1.0 5.0 244 264 + 1.06836 2 3 cbr 210 ------- 1 1.0 5.0 244 264 r 1.06893 3 4 tcp 1000 ------- 0 0.0 4.0 9 218 + 1.06893 4 3 ack 40 ------- 0 4.0 0.0 9 280 - 1.06893 4 3 ack 40 ------- 0 4.0 0.0 9 280 r 1.06933 2 3 cbr 210 ------- 1 1.0 5.0 220 239 + 1.06933 3 5 cbr 210 ------- 1 1.0 5.0 220 239 - 1.06933 3 5 cbr 210 ------- 1 1.0 5.0 220 239 r 1.06973 3 5 cbr 210 ------- 1 1.0 5.0 207 225 - 1.06973 2 3 cbr 210 ------- 1 1.0 5.0 238 258 + 1.07125 1 2 cbr 210 ------- 1 1.0 5.0 259 281 - 1.07125 1 2 cbr 210 ------- 1 1.0 5.0 259 281 r 1.07211 1 2 cbr 210 ------- 1 1.0 5.0 245 266 + 1.07211 2 3 cbr 210 ------- 1 1.0 5.0 245 266 r 1.07269 2 3 cbr 210 ------- 1 1.0 5.0 221 240 + 1.07269 3 5 cbr 210 ------- 1 1.0 5.0 221 240 - 1.07269 3 5 cbr 210 ------- 1 1.0 5.0 221 240 r 1.07309 3 5 cbr 210 ------- 1 1.0 5.0 208 226 - 1.07309 2 3 cbr 210 ------- 1 1.0 5.0 239 259 + 1.075 1 2 cbr 210 ------- 1 1.0 5.0 260 282 - 1.075 1 2 cbr 210 ------- 1 1.0 5.0 260 282 r 1.07586 1 2 cbr 210 ------- 1 1.0 5.0 246 267 + 1.07586 2 3 cbr 210 ------- 1 1.0 5.0 246 267 r 1.07605 2 3 cbr 210 ------- 1 1.0 5.0 222 242 + 1.07605 3 5 cbr 210 ------- 1 1.0 5.0 222 242 - 1.07605 3 5 cbr 210 ------- 1 1.0 5.0 222 242 r 1.07645 3 5 cbr 210 ------- 1 1.0 5.0 209 227 - 1.07645 2 3 cbr 210 ------- 1 1.0 5.0 240 260 + 1.07875 1 2 cbr 210 ------- 1 1.0 5.0 261 283 - 1.07875 1 2 cbr 210 ------- 1 1.0 5.0 261 283 r 1.07941 2 3 cbr 210 ------- 1 1.0 5.0 223 243 + 1.07941 3 5 cbr 210 ------- 1 1.0 5.0 223 243 - 1.07941 3 5 cbr 210 ------- 1 1.0 5.0 223 243 r 1.07961 1 2 cbr 210 ------- 1 1.0 5.0 247 268 + 1.07961 2 3 cbr 210 ------- 1 1.0 5.0 247 268 r 1.07981 3 5 cbr 210 ------- 1 1.0 5.0 210 228 - 1.07981 2 3 cbr 210 ------- 1 1.0 5.0 241 261 + 1.0825 1 2 cbr 210 ------- 1 1.0 5.0 262 284 - 1.0825 1 2 cbr 210 ------- 1 1.0 5.0 262 284 r 1.08277 2 3 cbr 210 ------- 1 1.0 5.0 224 244 + 1.08277 3 5 cbr 210 ------- 1 1.0 5.0 224 244 - 1.08277 3 5 cbr 210 ------- 1 1.0 5.0 224 244 r 1.08317 3 5 cbr 210 ------- 1 1.0 5.0 211 230 - 1.08317 2 3 cbr 210 ------- 1 1.0 5.0 242 262 r 1.08336 1 2 cbr 210 ------- 1 1.0 5.0 248 269 + 1.08336 2 3 cbr 210 ------- 1 1.0 5.0 248 269 r 1.08613 2 3 cbr 210 ------- 1 1.0 5.0 227 247 + 1.08613 3 5 cbr 210 ------- 1 1.0 5.0 227 247 - 1.08613 3 5 cbr 210 ------- 1 1.0 5.0 227 247 + 1.08625 1 2 cbr 210 ------- 1 1.0 5.0 263 285 - 1.08625 1 2 cbr 210 ------- 1 1.0 5.0 263 285 r 1.08653 3 5 cbr 210 ------- 1 1.0 5.0 212 231 - 1.08653 2 3 cbr 210 ------- 1 1.0 5.0 243 263 r 1.08711 1 2 cbr 210 ------- 1 1.0 5.0 249 270 + 1.08711 2 3 cbr 210 ------- 1 1.0 5.0 249 270 r 1.08949 2 3 cbr 210 ------- 1 1.0 5.0 228 248 + 1.08949 3 5 cbr 210 ------- 1 1.0 5.0 228 248 - 1.08949 3 5 cbr 210 ------- 1 1.0 5.0 228 248 r 1.08989 3 5 cbr 210 ------- 1 1.0 5.0 214 233 - 1.08989 2 3 cbr 210 ------- 1 1.0 5.0 244 264 + 1.09 1 2 cbr 210 ------- 1 1.0 5.0 264 286 - 1.09 1 2 cbr 210 ------- 1 1.0 5.0 264 286 r 1.09086 1 2 cbr 210 ------- 1 1.0 5.0 250 271 + 1.09086 2 3 cbr 210 ------- 1 1.0 5.0 250 271 r 1.09285 2 3 cbr 210 ------- 1 1.0 5.0 229 249 + 1.09285 3 5 cbr 210 ------- 1 1.0 5.0 229 249 - 1.09285 3 5 cbr 210 ------- 1 1.0 5.0 229 249 - 1.09325 2 3 cbr 210 ------- 1 1.0 5.0 245 266 + 1.09375 1 2 cbr 210 ------- 1 1.0 5.0 265 287 - 1.09375 1 2 cbr 210 ------- 1 1.0 5.0 265 287 r 1.09461 1 2 cbr 210 ------- 1 1.0 5.0 251 272 + 1.09461 2 3 cbr 210 ------- 1 1.0 5.0 251 272 r 1.09621 2 3 cbr 210 ------- 1 1.0 5.0 230 250 + 1.09621 3 5 cbr 210 ------- 1 1.0 5.0 230 250 - 1.09621 3 5 cbr 210 ------- 1 1.0 5.0 230 250 - 1.09661 2 3 cbr 210 ------- 1 1.0 5.0 246 267 + 1.0975 1 2 cbr 210 ------- 1 1.0 5.0 266 288 - 1.0975 1 2 cbr 210 ------- 1 1.0 5.0 266 288 r 1.09836 1 2 cbr 210 ------- 1 1.0 5.0 252 273 + 1.09836 2 3 cbr 210 ------- 1 1.0 5.0 252 273 r 1.09957 2 3 cbr 210 ------- 1 1.0 5.0 231 251 + 1.09957 3 5 cbr 210 ------- 1 1.0 5.0 231 251 - 1.09957 3 5 cbr 210 ------- 1 1.0 5.0 231 251 - 1.09997 2 3 cbr 210 ------- 1 1.0 5.0 247 268 + 1.10125 1 2 cbr 210 ------- 1 1.0 5.0 267 289 - 1.10125 1 2 cbr 210 ------- 1 1.0 5.0 267 289 r 1.10211 1 2 cbr 210 ------- 1 1.0 5.0 253 274 + 1.10211 2 3 cbr 210 ------- 1 1.0 5.0 253 274 r 1.10293 2 3 cbr 210 ------- 1 1.0 5.0 232 252 + 1.10293 3 5 cbr 210 ------- 1 1.0 5.0 232 252 - 1.10293 3 5 cbr 210 ------- 1 1.0 5.0 232 252 - 1.10333 2 3 cbr 210 ------- 1 1.0 5.0 248 269 + 1.105 1 2 cbr 210 ------- 1 1.0 5.0 268 290 - 1.105 1 2 cbr 210 ------- 1 1.0 5.0 268 290 r 1.10586 1 2 cbr 210 ------- 1 1.0 5.0 254 275 + 1.10586 2 3 cbr 210 ------- 1 1.0 5.0 254 275 r 1.10629 2 3 cbr 210 ------- 1 1.0 5.0 233 253 + 1.10629 3 5 cbr 210 ------- 1 1.0 5.0 233 253 - 1.10629 3 5 cbr 210 ------- 1 1.0 5.0 233 253 - 1.10669 2 3 cbr 210 ------- 1 1.0 5.0 249 270 + 1.10875 1 2 cbr 210 ------- 1 1.0 5.0 269 291 - 1.10875 1 2 cbr 210 ------- 1 1.0 5.0 269 291 r 1.10925 3 5 cbr 210 ------- 1 1.0 5.0 216 235 r 1.10961 1 2 cbr 210 ------- 1 1.0 5.0 255 276 + 1.10961 2 3 cbr 210 ------- 1 1.0 5.0 255 276 r 1.10965 2 3 cbr 210 ------- 1 1.0 5.0 234 254 + 1.10965 3 5 cbr 210 ------- 1 1.0 5.0 234 254 - 1.10965 3 5 cbr 210 ------- 1 1.0 5.0 234 254 - 1.11005 2 3 cbr 210 ------- 1 1.0 5.0 250 271 + 1.1125 1 2 cbr 210 ------- 1 1.0 5.0 270 292 - 1.1125 1 2 cbr 210 ------- 1 1.0 5.0 270 292 r 1.11261 3 5 cbr 210 ------- 1 1.0 5.0 217 236 r 1.11301 2 3 cbr 210 ------- 1 1.0 5.0 235 255 + 1.11301 3 5 cbr 210 ------- 1 1.0 5.0 235 255 - 1.11301 3 5 cbr 210 ------- 1 1.0 5.0 235 255 r 1.11336 1 2 cbr 210 ------- 1 1.0 5.0 256 277 + 1.11336 2 3 cbr 210 ------- 1 1.0 5.0 256 277 - 1.11341 2 3 cbr 210 ------- 1 1.0 5.0 251 272 r 1.11597 3 5 cbr 210 ------- 1 1.0 5.0 218 237 + 1.11625 1 2 cbr 210 ------- 1 1.0 5.0 271 293 - 1.11625 1 2 cbr 210 ------- 1 1.0 5.0 271 293 r 1.11637 2 3 cbr 210 ------- 1 1.0 5.0 236 256 + 1.11637 3 5 cbr 210 ------- 1 1.0 5.0 236 256 - 1.11637 3 5 cbr 210 ------- 1 1.0 5.0 236 256 - 1.11677 2 3 cbr 210 ------- 1 1.0 5.0 252 273 r 1.11711 1 2 cbr 210 ------- 1 1.0 5.0 257 278 + 1.11711 2 3 cbr 210 ------- 1 1.0 5.0 257 278 r 1.11725 3 2 ack 40 ------- 0 4.0 0.0 8 265 + 1.11725 2 0 ack 40 ------- 0 4.0 0.0 8 265 - 1.11725 2 0 ack 40 ------- 0 4.0 0.0 8 265 r 1.11853 3 4 tcp 1000 ------- 0 0.0 4.0 10 229 + 1.11853 4 3 ack 40 ------- 0 4.0 0.0 10 294 - 1.11853 4 3 ack 40 ------- 0 4.0 0.0 10 294 r 1.11933 3 5 cbr 210 ------- 1 1.0 5.0 219 238 r 1.11957 4 3 ack 40 ------- 0 4.0 0.0 9 280 + 1.11957 3 2 ack 40 ------- 0 4.0 0.0 9 280 - 1.11957 3 2 ack 40 ------- 0 4.0 0.0 9 280 r 1.11973 2 3 cbr 210 ------- 1 1.0 5.0 237 257 + 1.11973 3 5 cbr 210 ------- 1 1.0 5.0 237 257 - 1.11973 3 5 cbr 210 ------- 1 1.0 5.0 237 257 + 1.12 1 2 cbr 210 ------- 1 1.0 5.0 272 295 - 1.12 1 2 cbr 210 ------- 1 1.0 5.0 272 295 - 1.12013 2 3 cbr 210 ------- 1 1.0 5.0 253 274 r 1.12086 1 2 cbr 210 ------- 1 1.0 5.0 258 279 + 1.12086 2 3 cbr 210 ------- 1 1.0 5.0 258 279 r 1.12269 3 5 cbr 210 ------- 1 1.0 5.0 220 239 r 1.12309 2 3 cbr 210 ------- 1 1.0 5.0 238 258 + 1.12309 3 5 cbr 210 ------- 1 1.0 5.0 238 258 - 1.12309 3 5 cbr 210 ------- 1 1.0 5.0 238 258 - 1.12349 2 3 cbr 210 ------- 1 1.0 5.0 254 275 + 1.12375 1 2 cbr 210 ------- 1 1.0 5.0 273 296 - 1.12375 1 2 cbr 210 ------- 1 1.0 5.0 273 296 r 1.12461 1 2 cbr 210 ------- 1 1.0 5.0 259 281 + 1.12461 2 3 cbr 210 ------- 1 1.0 5.0 259 281 r 1.12605 3 5 cbr 210 ------- 1 1.0 5.0 221 240 r 1.12645 2 3 cbr 210 ------- 1 1.0 5.0 239 259 + 1.12645 3 5 cbr 210 ------- 1 1.0 5.0 239 259 - 1.12645 3 5 cbr 210 ------- 1 1.0 5.0 239 259 - 1.12685 2 3 cbr 210 ------- 1 1.0 5.0 255 276 + 1.1275 1 2 cbr 210 ------- 1 1.0 5.0 274 297 - 1.1275 1 2 cbr 210 ------- 1 1.0 5.0 274 297 r 1.12836 1 2 cbr 210 ------- 1 1.0 5.0 260 282 + 1.12836 2 3 cbr 210 ------- 1 1.0 5.0 260 282 r 1.12941 3 5 cbr 210 ------- 1 1.0 5.0 222 242 r 1.12981 2 3 cbr 210 ------- 1 1.0 5.0 240 260 + 1.12981 3 5 cbr 210 ------- 1 1.0 5.0 240 260 - 1.12981 3 5 cbr 210 ------- 1 1.0 5.0 240 260 - 1.13021 2 3 cbr 210 ------- 1 1.0 5.0 256 277 + 1.13125 1 2 cbr 210 ------- 1 1.0 5.0 275 298 - 1.13125 1 2 cbr 210 ------- 1 1.0 5.0 275 298 r 1.13211 1 2 cbr 210 ------- 1 1.0 5.0 261 283 + 1.13211 2 3 cbr 210 ------- 1 1.0 5.0 261 283 r 1.13277 3 5 cbr 210 ------- 1 1.0 5.0 223 243 r 1.13317 2 3 cbr 210 ------- 1 1.0 5.0 241 261 + 1.13317 3 5 cbr 210 ------- 1 1.0 5.0 241 261 - 1.13317 3 5 cbr 210 ------- 1 1.0 5.0 241 261 - 1.13357 2 3 cbr 210 ------- 1 1.0 5.0 257 278 + 1.135 1 2 cbr 210 ------- 1 1.0 5.0 276 299 - 1.135 1 2 cbr 210 ------- 1 1.0 5.0 276 299 r 1.13586 1 2 cbr 210 ------- 1 1.0 5.0 262 284 + 1.13586 2 3 cbr 210 ------- 1 1.0 5.0 262 284 r 1.13613 3 5 cbr 210 ------- 1 1.0 5.0 224 244 r 1.13653 2 3 cbr 210 ------- 1 1.0 5.0 242 262 + 1.13653 3 5 cbr 210 ------- 1 1.0 5.0 242 262 - 1.13653 3 5 cbr 210 ------- 1 1.0 5.0 242 262 - 1.13693 2 3 cbr 210 ------- 1 1.0 5.0 258 279 + 1.13875 1 2 cbr 210 ------- 1 1.0 5.0 277 300 - 1.13875 1 2 cbr 210 ------- 1 1.0 5.0 277 300 r 1.13949 3 5 cbr 210 ------- 1 1.0 5.0 227 247 r 1.13961 1 2 cbr 210 ------- 1 1.0 5.0 263 285 + 1.13961 2 3 cbr 210 ------- 1 1.0 5.0 263 285 r 1.13989 2 3 cbr 210 ------- 1 1.0 5.0 243 263 + 1.13989 3 5 cbr 210 ------- 1 1.0 5.0 243 263 - 1.13989 3 5 cbr 210 ------- 1 1.0 5.0 243 263 - 1.14029 2 3 cbr 210 ------- 1 1.0 5.0 259 281 + 1.1425 1 2 cbr 210 ------- 1 1.0 5.0 278 301 - 1.1425 1 2 cbr 210 ------- 1 1.0 5.0 278 301 r 1.14285 3 5 cbr 210 ------- 1 1.0 5.0 228 248 r 1.14325 2 3 cbr 210 ------- 1 1.0 5.0 244 264 + 1.14325 3 5 cbr 210 ------- 1 1.0 5.0 244 264 - 1.14325 3 5 cbr 210 ------- 1 1.0 5.0 244 264 r 1.14336 1 2 cbr 210 ------- 1 1.0 5.0 264 286 + 1.14336 2 3 cbr 210 ------- 1 1.0 5.0 264 286 - 1.14365 2 3 cbr 210 ------- 1 1.0 5.0 260 282 r 1.14621 3 5 cbr 210 ------- 1 1.0 5.0 229 249 + 1.14625 1 2 cbr 210 ------- 1 1.0 5.0 279 302 - 1.14625 1 2 cbr 210 ------- 1 1.0 5.0 279 302 r 1.14661 2 3 cbr 210 ------- 1 1.0 5.0 245 266 + 1.14661 3 5 cbr 210 ------- 1 1.0 5.0 245 266 - 1.14661 3 5 cbr 210 ------- 1 1.0 5.0 245 266 - 1.14701 2 3 cbr 210 ------- 1 1.0 5.0 261 283 r 1.14711 1 2 cbr 210 ------- 1 1.0 5.0 265 287 + 1.14711 2 3 cbr 210 ------- 1 1.0 5.0 265 287 r 1.14957 3 5 cbr 210 ------- 1 1.0 5.0 230 250 r 1.14997 2 3 cbr 210 ------- 1 1.0 5.0 246 267 + 1.14997 3 5 cbr 210 ------- 1 1.0 5.0 246 267 - 1.14997 3 5 cbr 210 ------- 1 1.0 5.0 246 267 + 1.15 1 2 cbr 210 ------- 1 1.0 5.0 280 303 - 1.15 1 2 cbr 210 ------- 1 1.0 5.0 280 303 - 1.15037 2 3 cbr 210 ------- 1 1.0 5.0 262 284 r 1.15086 1 2 cbr 210 ------- 1 1.0 5.0 266 288 + 1.15086 2 3 cbr 210 ------- 1 1.0 5.0 266 288 r 1.15293 3 5 cbr 210 ------- 1 1.0 5.0 231 251 r 1.15333 2 3 cbr 210 ------- 1 1.0 5.0 247 268 + 1.15333 3 5 cbr 210 ------- 1 1.0 5.0 247 268 - 1.15333 3 5 cbr 210 ------- 1 1.0 5.0 247 268 - 1.15373 2 3 cbr 210 ------- 1 1.0 5.0 263 285 + 1.15375 1 2 cbr 210 ------- 1 1.0 5.0 281 304 - 1.15375 1 2 cbr 210 ------- 1 1.0 5.0 281 304 r 1.15461 1 2 cbr 210 ------- 1 1.0 5.0 267 289 + 1.15461 2 3 cbr 210 ------- 1 1.0 5.0 267 289 r 1.15629 3 5 cbr 210 ------- 1 1.0 5.0 232 252 r 1.15669 2 3 cbr 210 ------- 1 1.0 5.0 248 269 + 1.15669 3 5 cbr 210 ------- 1 1.0 5.0 248 269 - 1.15669 3 5 cbr 210 ------- 1 1.0 5.0 248 269 - 1.15709 2 3 cbr 210 ------- 1 1.0 5.0 264 286 + 1.1575 1 2 cbr 210 ------- 1 1.0 5.0 282 305 - 1.1575 1 2 cbr 210 ------- 1 1.0 5.0 282 305 r 1.15836 1 2 cbr 210 ------- 1 1.0 5.0 268 290 + 1.15836 2 3 cbr 210 ------- 1 1.0 5.0 268 290 r 1.15965 3 5 cbr 210 ------- 1 1.0 5.0 233 253 r 1.16005 2 3 cbr 210 ------- 1 1.0 5.0 249 270 + 1.16005 3 5 cbr 210 ------- 1 1.0 5.0 249 270 - 1.16005 3 5 cbr 210 ------- 1 1.0 5.0 249 270 - 1.16045 2 3 cbr 210 ------- 1 1.0 5.0 265 287 + 1.16125 1 2 cbr 210 ------- 1 1.0 5.0 283 306 - 1.16125 1 2 cbr 210 ------- 1 1.0 5.0 283 306 r 1.16211 1 2 cbr 210 ------- 1 1.0 5.0 269 291 + 1.16211 2 3 cbr 210 ------- 1 1.0 5.0 269 291 r 1.16301 3 5 cbr 210 ------- 1 1.0 5.0 234 254 r 1.16341 2 3 cbr 210 ------- 1 1.0 5.0 250 271 + 1.16341 3 5 cbr 210 ------- 1 1.0 5.0 250 271 - 1.16341 3 5 cbr 210 ------- 1 1.0 5.0 250 271 - 1.16381 2 3 cbr 210 ------- 1 1.0 5.0 266 288 + 1.165 1 2 cbr 210 ------- 1 1.0 5.0 284 307 - 1.165 1 2 cbr 210 ------- 1 1.0 5.0 284 307 r 1.16586 1 2 cbr 210 ------- 1 1.0 5.0 270 292 + 1.16586 2 3 cbr 210 ------- 1 1.0 5.0 270 292 r 1.16637 3 5 cbr 210 ------- 1 1.0 5.0 235 255 r 1.16677 2 3 cbr 210 ------- 1 1.0 5.0 251 272 + 1.16677 3 5 cbr 210 ------- 1 1.0 5.0 251 272 - 1.16677 3 5 cbr 210 ------- 1 1.0 5.0 251 272 - 1.16717 2 3 cbr 210 ------- 1 1.0 5.0 267 289 r 1.16789 2 0 ack 40 ------- 0 4.0 0.0 8 265 + 1.16789 0 2 tcp 1000 ------- 0 0.0 4.0 12 308 - 1.16789 0 2 tcp 1000 ------- 0 0.0 4.0 12 308 + 1.16875 1 2 cbr 210 ------- 1 1.0 5.0 285 309 - 1.16875 1 2 cbr 210 ------- 1 1.0 5.0 285 309 r 1.16917 4 3 ack 40 ------- 0 4.0 0.0 10 294 + 1.16917 3 2 ack 40 ------- 0 4.0 0.0 10 294 - 1.16917 3 2 ack 40 ------- 0 4.0 0.0 10 294 r 1.16961 1 2 cbr 210 ------- 1 1.0 5.0 271 293 + 1.16961 2 3 cbr 210 ------- 1 1.0 5.0 271 293 r 1.16973 3 5 cbr 210 ------- 1 1.0 5.0 236 256 r 1.17013 2 3 cbr 210 ------- 1 1.0 5.0 252 273 + 1.17013 3 5 cbr 210 ------- 1 1.0 5.0 252 273 - 1.17013 3 5 cbr 210 ------- 1 1.0 5.0 252 273 r 1.17021 3 2 ack 40 ------- 0 4.0 0.0 9 280 + 1.17021 2 0 ack 40 ------- 0 4.0 0.0 9 280 - 1.17021 2 0 ack 40 ------- 0 4.0 0.0 9 280 - 1.17053 2 3 cbr 210 ------- 1 1.0 5.0 268 290 + 1.1725 1 2 cbr 210 ------- 1 1.0 5.0 286 310 - 1.1725 1 2 cbr 210 ------- 1 1.0 5.0 286 310 r 1.17309 3 5 cbr 210 ------- 1 1.0 5.0 237 257 r 1.17336 1 2 cbr 210 ------- 1 1.0 5.0 272 295 + 1.17336 2 3 cbr 210 ------- 1 1.0 5.0 272 295 r 1.17349 2 3 cbr 210 ------- 1 1.0 5.0 253 274 + 1.17349 3 5 cbr 210 ------- 1 1.0 5.0 253 274 - 1.17349 3 5 cbr 210 ------- 1 1.0 5.0 253 274 - 1.17389 2 3 cbr 210 ------- 1 1.0 5.0 269 291 + 1.17625 1 2 cbr 210 ------- 1 1.0 5.0 287 311 - 1.17625 1 2 cbr 210 ------- 1 1.0 5.0 287 311 r 1.17645 3 5 cbr 210 ------- 1 1.0 5.0 238 258 r 1.17685 2 3 cbr 210 ------- 1 1.0 5.0 254 275 + 1.17685 3 5 cbr 210 ------- 1 1.0 5.0 254 275 - 1.17685 3 5 cbr 210 ------- 1 1.0 5.0 254 275 r 1.17711 1 2 cbr 210 ------- 1 1.0 5.0 273 296 + 1.17711 2 3 cbr 210 ------- 1 1.0 5.0 273 296 - 1.17725 2 3 cbr 210 ------- 1 1.0 5.0 270 292 r 1.17981 3 5 cbr 210 ------- 1 1.0 5.0 239 259 + 1.18 1 2 cbr 210 ------- 1 1.0 5.0 288 312 - 1.18 1 2 cbr 210 ------- 1 1.0 5.0 288 312 r 1.18021 2 3 cbr 210 ------- 1 1.0 5.0 255 276 + 1.18021 3 5 cbr 210 ------- 1 1.0 5.0 255 276 - 1.18021 3 5 cbr 210 ------- 1 1.0 5.0 255 276 - 1.18061 2 3 cbr 210 ------- 1 1.0 5.0 271 293 r 1.18086 1 2 cbr 210 ------- 1 1.0 5.0 274 297 + 1.18086 2 3 cbr 210 ------- 1 1.0 5.0 274 297 r 1.18317 3 5 cbr 210 ------- 1 1.0 5.0 240 260 r 1.18357 2 3 cbr 210 ------- 1 1.0 5.0 256 277 + 1.18357 3 5 cbr 210 ------- 1 1.0 5.0 256 277 - 1.18357 3 5 cbr 210 ------- 1 1.0 5.0 256 277 + 1.18375 1 2 cbr 210 ------- 1 1.0 5.0 289 313 - 1.18375 1 2 cbr 210 ------- 1 1.0 5.0 289 313 - 1.18397 2 3 cbr 210 ------- 1 1.0 5.0 272 295 r 1.18461 1 2 cbr 210 ------- 1 1.0 5.0 275 298 + 1.18461 2 3 cbr 210 ------- 1 1.0 5.0 275 298 r 1.18653 3 5 cbr 210 ------- 1 1.0 5.0 241 261 r 1.18693 2 3 cbr 210 ------- 1 1.0 5.0 257 278 + 1.18693 3 5 cbr 210 ------- 1 1.0 5.0 257 278 - 1.18693 3 5 cbr 210 ------- 1 1.0 5.0 257 278 - 1.18733 2 3 cbr 210 ------- 1 1.0 5.0 273 296 + 1.1875 1 2 cbr 210 ------- 1 1.0 5.0 290 314 - 1.1875 1 2 cbr 210 ------- 1 1.0 5.0 290 314 r 1.18836 1 2 cbr 210 ------- 1 1.0 5.0 276 299 + 1.18836 2 3 cbr 210 ------- 1 1.0 5.0 276 299 r 1.18989 3 5 cbr 210 ------- 1 1.0 5.0 242 262 r 1.19029 2 3 cbr 210 ------- 1 1.0 5.0 258 279 + 1.19029 3 5 cbr 210 ------- 1 1.0 5.0 258 279 - 1.19029 3 5 cbr 210 ------- 1 1.0 5.0 258 279 - 1.19069 2 3 cbr 210 ------- 1 1.0 5.0 274 297 + 1.19125 1 2 cbr 210 ------- 1 1.0 5.0 291 315 - 1.19125 1 2 cbr 210 ------- 1 1.0 5.0 291 315 r 1.19211 1 2 cbr 210 ------- 1 1.0 5.0 277 300 + 1.19211 2 3 cbr 210 ------- 1 1.0 5.0 277 300 r 1.19325 3 5 cbr 210 ------- 1 1.0 5.0 243 263 r 1.19365 2 3 cbr 210 ------- 1 1.0 5.0 259 281 + 1.19365 3 5 cbr 210 ------- 1 1.0 5.0 259 281 - 1.19365 3 5 cbr 210 ------- 1 1.0 5.0 259 281 - 1.19405 2 3 cbr 210 ------- 1 1.0 5.0 275 298 + 1.195 1 2 cbr 210 ------- 1 1.0 5.0 292 316 - 1.195 1 2 cbr 210 ------- 1 1.0 5.0 292 316 r 1.19586 1 2 cbr 210 ------- 1 1.0 5.0 278 301 + 1.19586 2 3 cbr 210 ------- 1 1.0 5.0 278 301 r 1.19661 3 5 cbr 210 ------- 1 1.0 5.0 244 264 r 1.19701 2 3 cbr 210 ------- 1 1.0 5.0 260 282 + 1.19701 3 5 cbr 210 ------- 1 1.0 5.0 260 282 - 1.19701 3 5 cbr 210 ------- 1 1.0 5.0 260 282 - 1.19741 2 3 cbr 210 ------- 1 1.0 5.0 276 299 + 1.19875 1 2 cbr 210 ------- 1 1.0 5.0 293 317 - 1.19875 1 2 cbr 210 ------- 1 1.0 5.0 293 317 r 1.19961 1 2 cbr 210 ------- 1 1.0 5.0 279 302 + 1.19961 2 3 cbr 210 ------- 1 1.0 5.0 279 302 r 1.19997 3 5 cbr 210 ------- 1 1.0 5.0 245 266 r 1.20037 2 3 cbr 210 ------- 1 1.0 5.0 261 283 + 1.20037 3 5 cbr 210 ------- 1 1.0 5.0 261 283 - 1.20037 3 5 cbr 210 ------- 1 1.0 5.0 261 283 - 1.20077 2 3 cbr 210 ------- 1 1.0 5.0 277 300 + 1.2025 1 2 cbr 210 ------- 1 1.0 5.0 294 318 - 1.2025 1 2 cbr 210 ------- 1 1.0 5.0 294 318 r 1.20333 3 5 cbr 210 ------- 1 1.0 5.0 246 267 r 1.20336 1 2 cbr 210 ------- 1 1.0 5.0 280 303 + 1.20336 2 3 cbr 210 ------- 1 1.0 5.0 280 303 r 1.20373 2 3 cbr 210 ------- 1 1.0 5.0 262 284 + 1.20373 3 5 cbr 210 ------- 1 1.0 5.0 262 284 - 1.20373 3 5 cbr 210 ------- 1 1.0 5.0 262 284 - 1.20413 2 3 cbr 210 ------- 1 1.0 5.0 278 301 + 1.20625 1 2 cbr 210 ------- 1 1.0 5.0 295 319 - 1.20625 1 2 cbr 210 ------- 1 1.0 5.0 295 319 r 1.20669 3 5 cbr 210 ------- 1 1.0 5.0 247 268 r 1.20709 2 3 cbr 210 ------- 1 1.0 5.0 263 285 + 1.20709 3 5 cbr 210 ------- 1 1.0 5.0 263 285 - 1.20709 3 5 cbr 210 ------- 1 1.0 5.0 263 285 r 1.20711 1 2 cbr 210 ------- 1 1.0 5.0 281 304 + 1.20711 2 3 cbr 210 ------- 1 1.0 5.0 281 304 - 1.20749 2 3 cbr 210 ------- 1 1.0 5.0 279 302 + 1.21 1 2 cbr 210 ------- 1 1.0 5.0 296 320 - 1.21 1 2 cbr 210 ------- 1 1.0 5.0 296 320 r 1.21005 3 5 cbr 210 ------- 1 1.0 5.0 248 269 r 1.21045 2 3 cbr 210 ------- 1 1.0 5.0 264 286 + 1.21045 3 5 cbr 210 ------- 1 1.0 5.0 264 286 - 1.21045 3 5 cbr 210 ------- 1 1.0 5.0 264 286 - 1.21085 2 3 cbr 210 ------- 1 1.0 5.0 280 303 r 1.21086 1 2 cbr 210 ------- 1 1.0 5.0 282 305 + 1.21086 2 3 cbr 210 ------- 1 1.0 5.0 282 305 r 1.21341 3 5 cbr 210 ------- 1 1.0 5.0 249 270 + 1.21375 1 2 cbr 210 ------- 1 1.0 5.0 297 321 - 1.21375 1 2 cbr 210 ------- 1 1.0 5.0 297 321 r 1.21381 2 3 cbr 210 ------- 1 1.0 5.0 265 287 + 1.21381 3 5 cbr 210 ------- 1 1.0 5.0 265 287 - 1.21381 3 5 cbr 210 ------- 1 1.0 5.0 265 287 - 1.21421 2 3 cbr 210 ------- 1 1.0 5.0 281 304 r 1.21461 1 2 cbr 210 ------- 1 1.0 5.0 283 306 + 1.21461 2 3 cbr 210 ------- 1 1.0 5.0 283 306 r 1.21677 3 5 cbr 210 ------- 1 1.0 5.0 250 271 r 1.21717 2 3 cbr 210 ------- 1 1.0 5.0 266 288 + 1.21717 3 5 cbr 210 ------- 1 1.0 5.0 266 288 - 1.21717 3 5 cbr 210 ------- 1 1.0 5.0 266 288 + 1.2175 1 2 cbr 210 ------- 1 1.0 5.0 298 322 - 1.2175 1 2 cbr 210 ------- 1 1.0 5.0 298 322 - 1.21757 2 3 cbr 210 ------- 1 1.0 5.0 282 305 r 1.21836 1 2 cbr 210 ------- 1 1.0 5.0 284 307 + 1.21836 2 3 cbr 210 ------- 1 1.0 5.0 284 307 r 1.21981 3 2 ack 40 ------- 0 4.0 0.0 10 294 + 1.21981 2 0 ack 40 ------- 0 4.0 0.0 10 294 - 1.21981 2 0 ack 40 ------- 0 4.0 0.0 10 294 r 1.22013 3 5 cbr 210 ------- 1 1.0 5.0 251 272 r 1.22053 2 3 cbr 210 ------- 1 1.0 5.0 267 289 + 1.22053 3 5 cbr 210 ------- 1 1.0 5.0 267 289 - 1.22053 3 5 cbr 210 ------- 1 1.0 5.0 267 289 r 1.22085 2 0 ack 40 ------- 0 4.0 0.0 9 280 + 1.22085 0 2 tcp 1000 ------- 0 0.0 4.0 13 323 - 1.22085 0 2 tcp 1000 ------- 0 0.0 4.0 13 323 - 1.22093 2 3 cbr 210 ------- 1 1.0 5.0 283 306 + 1.22125 1 2 cbr 210 ------- 1 1.0 5.0 299 324 - 1.22125 1 2 cbr 210 ------- 1 1.0 5.0 299 324 r 1.22211 1 2 cbr 210 ------- 1 1.0 5.0 285 309 + 1.22211 2 3 cbr 210 ------- 1 1.0 5.0 285 309 r 1.22349 3 5 cbr 210 ------- 1 1.0 5.0 252 273 r 1.22389 2 3 cbr 210 ------- 1 1.0 5.0 268 290 + 1.22389 3 5 cbr 210 ------- 1 1.0 5.0 268 290 - 1.22389 3 5 cbr 210 ------- 1 1.0 5.0 268 290 - 1.22429 2 3 cbr 210 ------- 1 1.0 5.0 284 307 + 1.225 1 2 cbr 210 ------- 1 1.0 5.0 300 325 - 1.225 1 2 cbr 210 ------- 1 1.0 5.0 300 325 r 1.22586 1 2 cbr 210 ------- 1 1.0 5.0 286 310 + 1.22586 2 3 cbr 210 ------- 1 1.0 5.0 286 310 r 1.22685 3 5 cbr 210 ------- 1 1.0 5.0 253 274 r 1.22725 2 3 cbr 210 ------- 1 1.0 5.0 269 291 + 1.22725 3 5 cbr 210 ------- 1 1.0 5.0 269 291 - 1.22725 3 5 cbr 210 ------- 1 1.0 5.0 269 291 - 1.22765 2 3 cbr 210 ------- 1 1.0 5.0 285 309 + 1.22875 1 2 cbr 210 ------- 1 1.0 5.0 301 326 - 1.22875 1 2 cbr 210 ------- 1 1.0 5.0 301 326 r 1.22961 1 2 cbr 210 ------- 1 1.0 5.0 287 311 + 1.22961 2 3 cbr 210 ------- 1 1.0 5.0 287 311 r 1.23021 3 5 cbr 210 ------- 1 1.0 5.0 254 275 r 1.23061 2 3 cbr 210 ------- 1 1.0 5.0 270 292 + 1.23061 3 5 cbr 210 ------- 1 1.0 5.0 270 292 - 1.23061 3 5 cbr 210 ------- 1 1.0 5.0 270 292 - 1.23101 2 3 cbr 210 ------- 1 1.0 5.0 286 310 + 1.2325 1 2 cbr 210 ------- 1 1.0 5.0 302 327 - 1.2325 1 2 cbr 210 ------- 1 1.0 5.0 302 327 r 1.23336 1 2 cbr 210 ------- 1 1.0 5.0 288 312 + 1.23336 2 3 cbr 210 ------- 1 1.0 5.0 288 312 r 1.23357 3 5 cbr 210 ------- 1 1.0 5.0 255 276 r 1.23389 0 2 tcp 1000 ------- 0 0.0 4.0 12 308 + 1.23389 2 3 tcp 1000 ------- 0 0.0 4.0 12 308 r 1.23397 2 3 cbr 210 ------- 1 1.0 5.0 271 293 + 1.23397 3 5 cbr 210 ------- 1 1.0 5.0 271 293 - 1.23397 3 5 cbr 210 ------- 1 1.0 5.0 271 293 - 1.23437 2 3 cbr 210 ------- 1 1.0 5.0 287 311 + 1.23625 1 2 cbr 210 ------- 1 1.0 5.0 303 328 - 1.23625 1 2 cbr 210 ------- 1 1.0 5.0 303 328 r 1.23693 3 5 cbr 210 ------- 1 1.0 5.0 256 277 r 1.23711 1 2 cbr 210 ------- 1 1.0 5.0 289 313 + 1.23711 2 3 cbr 210 ------- 1 1.0 5.0 289 313 r 1.23733 2 3 cbr 210 ------- 1 1.0 5.0 272 295 + 1.23733 3 5 cbr 210 ------- 1 1.0 5.0 272 295 - 1.23733 3 5 cbr 210 ------- 1 1.0 5.0 272 295 - 1.23773 2 3 cbr 210 ------- 1 1.0 5.0 288 312 + 1.24 1 2 cbr 210 ------- 1 1.0 5.0 304 329 - 1.24 1 2 cbr 210 ------- 1 1.0 5.0 304 329 r 1.24029 3 5 cbr 210 ------- 1 1.0 5.0 257 278 r 1.24069 2 3 cbr 210 ------- 1 1.0 5.0 273 296 + 1.24069 3 5 cbr 210 ------- 1 1.0 5.0 273 296 - 1.24069 3 5 cbr 210 ------- 1 1.0 5.0 273 296 r 1.24086 1 2 cbr 210 ------- 1 1.0 5.0 290 314 + 1.24086 2 3 cbr 210 ------- 1 1.0 5.0 290 314 - 1.24109 2 3 tcp 1000 ------- 0 0.0 4.0 12 308 r 1.24365 3 5 cbr 210 ------- 1 1.0 5.0 258 279 + 1.24375 1 2 cbr 210 ------- 1 1.0 5.0 305 330 - 1.24375 1 2 cbr 210 ------- 1 1.0 5.0 305 330 r 1.24405 2 3 cbr 210 ------- 1 1.0 5.0 274 297 + 1.24405 3 5 cbr 210 ------- 1 1.0 5.0 274 297 - 1.24405 3 5 cbr 210 ------- 1 1.0 5.0 274 297 r 1.24461 1 2 cbr 210 ------- 1 1.0 5.0 291 315 + 1.24461 2 3 cbr 210 ------- 1 1.0 5.0 291 315 r 1.24701 3 5 cbr 210 ------- 1 1.0 5.0 259 281 r 1.24741 2 3 cbr 210 ------- 1 1.0 5.0 275 298 + 1.24741 3 5 cbr 210 ------- 1 1.0 5.0 275 298 - 1.24741 3 5 cbr 210 ------- 1 1.0 5.0 275 298 + 1.2475 1 2 cbr 210 ------- 1 1.0 5.0 306 331 - 1.2475 1 2 cbr 210 ------- 1 1.0 5.0 306 331 r 1.24836 1 2 cbr 210 ------- 1 1.0 5.0 292 316 + 1.24836 2 3 cbr 210 ------- 1 1.0 5.0 292 316 r 1.25037 3 5 cbr 210 ------- 1 1.0 5.0 260 282 r 1.25077 2 3 cbr 210 ------- 1 1.0 5.0 276 299 + 1.25077 3 5 cbr 210 ------- 1 1.0 5.0 276 299 - 1.25077 3 5 cbr 210 ------- 1 1.0 5.0 276 299 + 1.25125 1 2 cbr 210 ------- 1 1.0 5.0 307 332 - 1.25125 1 2 cbr 210 ------- 1 1.0 5.0 307 332 r 1.25211 1 2 cbr 210 ------- 1 1.0 5.0 293 317 + 1.25211 2 3 cbr 210 ------- 1 1.0 5.0 293 317 r 1.25373 3 5 cbr 210 ------- 1 1.0 5.0 261 283 r 1.25413 2 3 cbr 210 ------- 1 1.0 5.0 277 300 + 1.25413 3 5 cbr 210 ------- 1 1.0 5.0 277 300 - 1.25413 3 5 cbr 210 ------- 1 1.0 5.0 277 300 + 1.255 1 2 cbr 210 ------- 1 1.0 5.0 308 333 - 1.255 1 2 cbr 210 ------- 1 1.0 5.0 308 333 r 1.25586 1 2 cbr 210 ------- 1 1.0 5.0 294 318 + 1.25586 2 3 cbr 210 ------- 1 1.0 5.0 294 318 r 1.25709 3 5 cbr 210 ------- 1 1.0 5.0 262 284 - 1.25709 2 3 cbr 210 ------- 1 1.0 5.0 289 313 r 1.25749 2 3 cbr 210 ------- 1 1.0 5.0 278 301 + 1.25749 3 5 cbr 210 ------- 1 1.0 5.0 278 301 - 1.25749 3 5 cbr 210 ------- 1 1.0 5.0 278 301 + 1.25875 1 2 cbr 210 ------- 1 1.0 5.0 309 334 - 1.25875 1 2 cbr 210 ------- 1 1.0 5.0 309 334 r 1.25961 1 2 cbr 210 ------- 1 1.0 5.0 295 319 + 1.25961 2 3 cbr 210 ------- 1 1.0 5.0 295 319 r 1.26045 3 5 cbr 210 ------- 1 1.0 5.0 263 285 - 1.26045 2 3 cbr 210 ------- 1 1.0 5.0 290 314 r 1.26085 2 3 cbr 210 ------- 1 1.0 5.0 279 302 + 1.26085 3 5 cbr 210 ------- 1 1.0 5.0 279 302 - 1.26085 3 5 cbr 210 ------- 1 1.0 5.0 279 302 + 1.2625 1 2 cbr 210 ------- 1 1.0 5.0 310 335 - 1.2625 1 2 cbr 210 ------- 1 1.0 5.0 310 335 r 1.26336 1 2 cbr 210 ------- 1 1.0 5.0 296 320 + 1.26336 2 3 cbr 210 ------- 1 1.0 5.0 296 320 r 1.26381 3 5 cbr 210 ------- 1 1.0 5.0 264 286 - 1.26381 2 3 cbr 210 ------- 1 1.0 5.0 291 315 r 1.26421 2 3 cbr 210 ------- 1 1.0 5.0 280 303 + 1.26421 3 5 cbr 210 ------- 1 1.0 5.0 280 303 - 1.26421 3 5 cbr 210 ------- 1 1.0 5.0 280 303 + 1.26625 1 2 cbr 210 ------- 1 1.0 5.0 311 336 - 1.26625 1 2 cbr 210 ------- 1 1.0 5.0 311 336 r 1.26711 1 2 cbr 210 ------- 1 1.0 5.0 297 321 + 1.26711 2 3 cbr 210 ------- 1 1.0 5.0 297 321 r 1.26717 3 5 cbr 210 ------- 1 1.0 5.0 265 287 - 1.26717 2 3 cbr 210 ------- 1 1.0 5.0 292 316 r 1.26757 2 3 cbr 210 ------- 1 1.0 5.0 281 304 + 1.26757 3 5 cbr 210 ------- 1 1.0 5.0 281 304 - 1.26757 3 5 cbr 210 ------- 1 1.0 5.0 281 304 + 1.27 1 2 cbr 210 ------- 1 1.0 5.0 312 337 - 1.27 1 2 cbr 210 ------- 1 1.0 5.0 312 337 r 1.27045 2 0 ack 40 ------- 0 4.0 0.0 10 294 + 1.27045 0 2 tcp 1000 ------- 0 0.0 4.0 14 338 - 1.27045 0 2 tcp 1000 ------- 0 0.0 4.0 14 338 r 1.27053 3 5 cbr 210 ------- 1 1.0 5.0 266 288 - 1.27053 2 3 cbr 210 ------- 1 1.0 5.0 293 317 r 1.27086 1 2 cbr 210 ------- 1 1.0 5.0 298 322 + 1.27086 2 3 cbr 210 ------- 1 1.0 5.0 298 322 r 1.27093 2 3 cbr 210 ------- 1 1.0 5.0 282 305 + 1.27093 3 5 cbr 210 ------- 1 1.0 5.0 282 305 - 1.27093 3 5 cbr 210 ------- 1 1.0 5.0 282 305 + 1.27375 1 2 cbr 210 ------- 1 1.0 5.0 313 339 - 1.27375 1 2 cbr 210 ------- 1 1.0 5.0 313 339 r 1.27389 3 5 cbr 210 ------- 1 1.0 5.0 267 289 - 1.27389 2 3 cbr 210 ------- 1 1.0 5.0 294 318 r 1.27429 2 3 cbr 210 ------- 1 1.0 5.0 283 306 + 1.27429 3 5 cbr 210 ------- 1 1.0 5.0 283 306 - 1.27429 3 5 cbr 210 ------- 1 1.0 5.0 283 306 r 1.27461 1 2 cbr 210 ------- 1 1.0 5.0 299 324 + 1.27461 2 3 cbr 210 ------- 1 1.0 5.0 299 324 r 1.27725 3 5 cbr 210 ------- 1 1.0 5.0 268 290 - 1.27725 2 3 cbr 210 ------- 1 1.0 5.0 295 319 + 1.2775 1 2 cbr 210 ------- 1 1.0 5.0 314 340 - 1.2775 1 2 cbr 210 ------- 1 1.0 5.0 314 340 r 1.27765 2 3 cbr 210 ------- 1 1.0 5.0 284 307 + 1.27765 3 5 cbr 210 ------- 1 1.0 5.0 284 307 - 1.27765 3 5 cbr 210 ------- 1 1.0 5.0 284 307 r 1.27836 1 2 cbr 210 ------- 1 1.0 5.0 300 325 + 1.27836 2 3 cbr 210 ------- 1 1.0 5.0 300 325 r 1.28061 3 5 cbr 210 ------- 1 1.0 5.0 269 291 - 1.28061 2 3 cbr 210 ------- 1 1.0 5.0 296 320 r 1.28101 2 3 cbr 210 ------- 1 1.0 5.0 285 309 + 1.28101 3 5 cbr 210 ------- 1 1.0 5.0 285 309 - 1.28101 3 5 cbr 210 ------- 1 1.0 5.0 285 309 + 1.28125 1 2 cbr 210 ------- 1 1.0 5.0 315 341 - 1.28125 1 2 cbr 210 ------- 1 1.0 5.0 315 341 r 1.28211 1 2 cbr 210 ------- 1 1.0 5.0 301 326 + 1.28211 2 3 cbr 210 ------- 1 1.0 5.0 301 326 r 1.28397 3 5 cbr 210 ------- 1 1.0 5.0 270 292 - 1.28397 2 3 cbr 210 ------- 1 1.0 5.0 297 321 r 1.28437 2 3 cbr 210 ------- 1 1.0 5.0 286 310 + 1.28437 3 5 cbr 210 ------- 1 1.0 5.0 286 310 - 1.28437 3 5 cbr 210 ------- 1 1.0 5.0 286 310 + 1.285 1 2 cbr 210 ------- 1 1.0 5.0 316 342 - 1.285 1 2 cbr 210 ------- 1 1.0 5.0 316 342 r 1.28586 1 2 cbr 210 ------- 1 1.0 5.0 302 327 + 1.28586 2 3 cbr 210 ------- 1 1.0 5.0 302 327 r 1.28685 0 2 tcp 1000 ------- 0 0.0 4.0 13 323 + 1.28685 2 3 tcp 1000 ------- 0 0.0 4.0 13 323 r 1.28733 3 5 cbr 210 ------- 1 1.0 5.0 271 293 - 1.28733 2 3 cbr 210 ------- 1 1.0 5.0 298 322 r 1.28773 2 3 cbr 210 ------- 1 1.0 5.0 287 311 + 1.28773 3 5 cbr 210 ------- 1 1.0 5.0 287 311 - 1.28773 3 5 cbr 210 ------- 1 1.0 5.0 287 311 + 1.28875 1 2 cbr 210 ------- 1 1.0 5.0 317 343 - 1.28875 1 2 cbr 210 ------- 1 1.0 5.0 317 343 r 1.28961 1 2 cbr 210 ------- 1 1.0 5.0 303 328 + 1.28961 2 3 cbr 210 ------- 1 1.0 5.0 303 328 r 1.29069 3 5 cbr 210 ------- 1 1.0 5.0 272 295 - 1.29069 2 3 cbr 210 ------- 1 1.0 5.0 299 324 r 1.29109 2 3 cbr 210 ------- 1 1.0 5.0 288 312 + 1.29109 3 5 cbr 210 ------- 1 1.0 5.0 288 312 - 1.29109 3 5 cbr 210 ------- 1 1.0 5.0 288 312 + 1.2925 1 2 cbr 210 ------- 1 1.0 5.0 318 344 - 1.2925 1 2 cbr 210 ------- 1 1.0 5.0 318 344 r 1.29336 1 2 cbr 210 ------- 1 1.0 5.0 304 329 + 1.29336 2 3 cbr 210 ------- 1 1.0 5.0 304 329 r 1.29405 3 5 cbr 210 ------- 1 1.0 5.0 273 296 - 1.29405 2 3 cbr 210 ------- 1 1.0 5.0 300 325 + 1.29625 1 2 cbr 210 ------- 1 1.0 5.0 319 345 - 1.29625 1 2 cbr 210 ------- 1 1.0 5.0 319 345 r 1.29711 1 2 cbr 210 ------- 1 1.0 5.0 305 330 + 1.29711 2 3 cbr 210 ------- 1 1.0 5.0 305 330 r 1.29741 3 5 cbr 210 ------- 1 1.0 5.0 274 297 - 1.29741 2 3 cbr 210 ------- 1 1.0 5.0 301 326 + 1.3 1 2 cbr 210 ------- 1 1.0 5.0 320 346 - 1.3 1 2 cbr 210 ------- 1 1.0 5.0 320 346 r 1.30077 3 5 cbr 210 ------- 1 1.0 5.0 275 298 - 1.30077 2 3 cbr 210 ------- 1 1.0 5.0 302 327 r 1.30086 1 2 cbr 210 ------- 1 1.0 5.0 306 331 + 1.30086 2 3 cbr 210 ------- 1 1.0 5.0 306 331 + 1.30375 1 2 cbr 210 ------- 1 1.0 5.0 321 347 - 1.30375 1 2 cbr 210 ------- 1 1.0 5.0 321 347 r 1.30413 3 5 cbr 210 ------- 1 1.0 5.0 276 299 - 1.30413 2 3 tcp 1000 ------- 0 0.0 4.0 13 323 r 1.30461 1 2 cbr 210 ------- 1 1.0 5.0 307 332 + 1.30461 2 3 cbr 210 ------- 1 1.0 5.0 307 332 r 1.30709 2 3 tcp 1000 ------- 0 0.0 4.0 12 308 + 1.30709 3 4 tcp 1000 ------- 0 0.0 4.0 12 308 - 1.30709 3 4 tcp 1000 ------- 0 0.0 4.0 12 308 r 1.30749 3 5 cbr 210 ------- 1 1.0 5.0 277 300 + 1.3075 1 2 cbr 210 ------- 1 1.0 5.0 322 348 - 1.3075 1 2 cbr 210 ------- 1 1.0 5.0 322 348 r 1.30836 1 2 cbr 210 ------- 1 1.0 5.0 308 333 + 1.30836 2 3 cbr 210 ------- 1 1.0 5.0 308 333 r 1.31045 2 3 cbr 210 ------- 1 1.0 5.0 289 313 + 1.31045 3 5 cbr 210 ------- 1 1.0 5.0 289 313 - 1.31045 3 5 cbr 210 ------- 1 1.0 5.0 289 313 r 1.31085 3 5 cbr 210 ------- 1 1.0 5.0 278 301 + 1.31125 1 2 cbr 210 ------- 1 1.0 5.0 323 349 - 1.31125 1 2 cbr 210 ------- 1 1.0 5.0 323 349 r 1.31211 1 2 cbr 210 ------- 1 1.0 5.0 309 334 + 1.31211 2 3 cbr 210 ------- 1 1.0 5.0 309 334 r 1.31381 2 3 cbr 210 ------- 1 1.0 5.0 290 314 + 1.31381 3 5 cbr 210 ------- 1 1.0 5.0 290 314 - 1.31381 3 5 cbr 210 ------- 1 1.0 5.0 290 314 r 1.31421 3 5 cbr 210 ------- 1 1.0 5.0 279 302 + 1.315 1 2 cbr 210 ------- 1 1.0 5.0 324 350 - 1.315 1 2 cbr 210 ------- 1 1.0 5.0 324 350 r 1.31586 1 2 cbr 210 ------- 1 1.0 5.0 310 335 + 1.31586 2 3 cbr 210 ------- 1 1.0 5.0 310 335 r 1.31717 2 3 cbr 210 ------- 1 1.0 5.0 291 315 + 1.31717 3 5 cbr 210 ------- 1 1.0 5.0 291 315 - 1.31717 3 5 cbr 210 ------- 1 1.0 5.0 291 315 r 1.31757 3 5 cbr 210 ------- 1 1.0 5.0 280 303 + 1.31875 1 2 cbr 210 ------- 1 1.0 5.0 325 351 - 1.31875 1 2 cbr 210 ------- 1 1.0 5.0 325 351 r 1.31961 1 2 cbr 210 ------- 1 1.0 5.0 311 336 + 1.31961 2 3 cbr 210 ------- 1 1.0 5.0 311 336 - 1.32013 2 3 cbr 210 ------- 1 1.0 5.0 303 328 r 1.32053 2 3 cbr 210 ------- 1 1.0 5.0 292 316 + 1.32053 3 5 cbr 210 ------- 1 1.0 5.0 292 316 - 1.32053 3 5 cbr 210 ------- 1 1.0 5.0 292 316 r 1.32093 3 5 cbr 210 ------- 1 1.0 5.0 281 304 + 1.3225 1 2 cbr 210 ------- 1 1.0 5.0 326 352 - 1.3225 1 2 cbr 210 ------- 1 1.0 5.0 326 352 r 1.32336 1 2 cbr 210 ------- 1 1.0 5.0 312 337 + 1.32336 2 3 cbr 210 ------- 1 1.0 5.0 312 337 - 1.32349 2 3 cbr 210 ------- 1 1.0 5.0 304 329 r 1.32389 2 3 cbr 210 ------- 1 1.0 5.0 293 317 + 1.32389 3 5 cbr 210 ------- 1 1.0 5.0 293 317 - 1.32389 3 5 cbr 210 ------- 1 1.0 5.0 293 317 r 1.32429 3 5 cbr 210 ------- 1 1.0 5.0 282 305 + 1.32625 1 2 cbr 210 ------- 1 1.0 5.0 327 353 - 1.32625 1 2 cbr 210 ------- 1 1.0 5.0 327 353 - 1.32685 2 3 cbr 210 ------- 1 1.0 5.0 305 330 r 1.32711 1 2 cbr 210 ------- 1 1.0 5.0 313 339 + 1.32711 2 3 cbr 210 ------- 1 1.0 5.0 313 339 r 1.32725 2 3 cbr 210 ------- 1 1.0 5.0 294 318 + 1.32725 3 5 cbr 210 ------- 1 1.0 5.0 294 318 - 1.32725 3 5 cbr 210 ------- 1 1.0 5.0 294 318 r 1.32765 3 5 cbr 210 ------- 1 1.0 5.0 283 306 + 1.33 1 2 cbr 210 ------- 1 1.0 5.0 328 354 - 1.33 1 2 cbr 210 ------- 1 1.0 5.0 328 354 - 1.33021 2 3 cbr 210 ------- 1 1.0 5.0 306 331 r 1.33061 2 3 cbr 210 ------- 1 1.0 5.0 295 319 + 1.33061 3 5 cbr 210 ------- 1 1.0 5.0 295 319 - 1.33061 3 5 cbr 210 ------- 1 1.0 5.0 295 319 r 1.33086 1 2 cbr 210 ------- 1 1.0 5.0 314 340 + 1.33086 2 3 cbr 210 ------- 1 1.0 5.0 314 340 r 1.33101 3 5 cbr 210 ------- 1 1.0 5.0 284 307 - 1.33357 2 3 cbr 210 ------- 1 1.0 5.0 307 332 + 1.33375 1 2 cbr 210 ------- 1 1.0 5.0 329 355 - 1.33375 1 2 cbr 210 ------- 1 1.0 5.0 329 355 r 1.33397 2 3 cbr 210 ------- 1 1.0 5.0 296 320 + 1.33397 3 5 cbr 210 ------- 1 1.0 5.0 296 320 - 1.33397 3 5 cbr 210 ------- 1 1.0 5.0 296 320 r 1.33437 3 5 cbr 210 ------- 1 1.0 5.0 285 309 r 1.33461 1 2 cbr 210 ------- 1 1.0 5.0 315 341 + 1.33461 2 3 cbr 210 ------- 1 1.0 5.0 315 341 r 1.33645 0 2 tcp 1000 ------- 0 0.0 4.0 14 338 + 1.33645 2 3 tcp 1000 ------- 0 0.0 4.0 14 338 - 1.33693 2 3 cbr 210 ------- 1 1.0 5.0 308 333 r 1.33733 2 3 cbr 210 ------- 1 1.0 5.0 297 321 + 1.33733 3 5 cbr 210 ------- 1 1.0 5.0 297 321 - 1.33733 3 5 cbr 210 ------- 1 1.0 5.0 297 321 + 1.3375 1 2 cbr 210 ------- 1 1.0 5.0 330 356 - 1.3375 1 2 cbr 210 ------- 1 1.0 5.0 330 356 r 1.33773 3 5 cbr 210 ------- 1 1.0 5.0 286 310 r 1.33836 1 2 cbr 210 ------- 1 1.0 5.0 316 342 + 1.33836 2 3 cbr 210 ------- 1 1.0 5.0 316 342 - 1.34029 2 3 cbr 210 ------- 1 1.0 5.0 309 334 r 1.34069 2 3 cbr 210 ------- 1 1.0 5.0 298 322 + 1.34069 3 5 cbr 210 ------- 1 1.0 5.0 298 322 - 1.34069 3 5 cbr 210 ------- 1 1.0 5.0 298 322 r 1.34109 3 5 cbr 210 ------- 1 1.0 5.0 287 311 + 1.34125 1 2 cbr 210 ------- 1 1.0 5.0 331 357 - 1.34125 1 2 cbr 210 ------- 1 1.0 5.0 331 357 r 1.34211 1 2 cbr 210 ------- 1 1.0 5.0 317 343 + 1.34211 2 3 cbr 210 ------- 1 1.0 5.0 317 343 - 1.34365 2 3 cbr 210 ------- 1 1.0 5.0 310 335 r 1.34405 2 3 cbr 210 ------- 1 1.0 5.0 299 324 + 1.34405 3 5 cbr 210 ------- 1 1.0 5.0 299 324 - 1.34405 3 5 cbr 210 ------- 1 1.0 5.0 299 324 r 1.34445 3 5 cbr 210 ------- 1 1.0 5.0 288 312 + 1.345 1 2 cbr 210 ------- 1 1.0 5.0 332 358 - 1.345 1 2 cbr 210 ------- 1 1.0 5.0 332 358 r 1.34586 1 2 cbr 210 ------- 1 1.0 5.0 318 344 + 1.34586 2 3 cbr 210 ------- 1 1.0 5.0 318 344 - 1.34701 2 3 cbr 210 ------- 1 1.0 5.0 311 336 r 1.34741 2 3 cbr 210 ------- 1 1.0 5.0 300 325 + 1.34741 3 5 cbr 210 ------- 1 1.0 5.0 300 325 - 1.34741 3 5 cbr 210 ------- 1 1.0 5.0 300 325 + 1.34875 1 2 cbr 210 ------- 1 1.0 5.0 333 359 - 1.34875 1 2 cbr 210 ------- 1 1.0 5.0 333 359 r 1.34961 1 2 cbr 210 ------- 1 1.0 5.0 319 345 + 1.34961 2 3 cbr 210 ------- 1 1.0 5.0 319 345 - 1.35037 2 3 cbr 210 ------- 1 1.0 5.0 312 337 r 1.35077 2 3 cbr 210 ------- 1 1.0 5.0 301 326 + 1.35077 3 5 cbr 210 ------- 1 1.0 5.0 301 326 - 1.35077 3 5 cbr 210 ------- 1 1.0 5.0 301 326 + 1.3525 1 2 cbr 210 ------- 1 1.0 5.0 334 360 - 1.3525 1 2 cbr 210 ------- 1 1.0 5.0 334 360 r 1.35336 1 2 cbr 210 ------- 1 1.0 5.0 320 346 + 1.35336 2 3 cbr 210 ------- 1 1.0 5.0 320 346 - 1.35373 2 3 cbr 210 ------- 1 1.0 5.0 313 339 r 1.35413 2 3 cbr 210 ------- 1 1.0 5.0 302 327 + 1.35413 3 5 cbr 210 ------- 1 1.0 5.0 302 327 - 1.35413 3 5 cbr 210 ------- 1 1.0 5.0 302 327 + 1.35625 1 2 cbr 210 ------- 1 1.0 5.0 335 361 - 1.35625 1 2 cbr 210 ------- 1 1.0 5.0 335 361 - 1.35709 2 3 cbr 210 ------- 1 1.0 5.0 314 340 r 1.35711 1 2 cbr 210 ------- 1 1.0 5.0 321 347 + 1.35711 2 3 cbr 210 ------- 1 1.0 5.0 321 347 + 1.36 1 2 cbr 210 ------- 1 1.0 5.0 336 362 - 1.36 1 2 cbr 210 ------- 1 1.0 5.0 336 362 - 1.36045 2 3 cbr 210 ------- 1 1.0 5.0 315 341 r 1.36086 1 2 cbr 210 ------- 1 1.0 5.0 322 348 + 1.36086 2 3 cbr 210 ------- 1 1.0 5.0 322 348 + 1.36375 1 2 cbr 210 ------- 1 1.0 5.0 337 363 - 1.36375 1 2 cbr 210 ------- 1 1.0 5.0 337 363 r 1.36381 3 5 cbr 210 ------- 1 1.0 5.0 289 313 - 1.36381 2 3 tcp 1000 ------- 0 0.0 4.0 14 338 r 1.36461 1 2 cbr 210 ------- 1 1.0 5.0 323 349 + 1.36461 2 3 cbr 210 ------- 1 1.0 5.0 323 349 r 1.36717 3 5 cbr 210 ------- 1 1.0 5.0 290 314 + 1.3675 1 2 cbr 210 ------- 1 1.0 5.0 338 364 - 1.3675 1 2 cbr 210 ------- 1 1.0 5.0 338 364 r 1.36836 1 2 cbr 210 ------- 1 1.0 5.0 324 350 + 1.36836 2 3 cbr 210 ------- 1 1.0 5.0 324 350 r 1.37013 2 3 tcp 1000 ------- 0 0.0 4.0 13 323 + 1.37013 3 4 tcp 1000 ------- 0 0.0 4.0 13 323 - 1.37013 3 4 tcp 1000 ------- 0 0.0 4.0 13 323 r 1.37053 3 5 cbr 210 ------- 1 1.0 5.0 291 315 + 1.37125 1 2 cbr 210 ------- 1 1.0 5.0 339 365 - 1.37125 1 2 cbr 210 ------- 1 1.0 5.0 339 365 r 1.37211 1 2 cbr 210 ------- 1 1.0 5.0 325 351 + 1.37211 2 3 cbr 210 ------- 1 1.0 5.0 325 351 d 1.37211 2 3 cbr 210 ------- 1 1.0 5.0 325 351 r 1.37309 3 4 tcp 1000 ------- 0 0.0 4.0 12 308 + 1.37309 4 3 ack 40 ------- 0 4.0 0.0 10 366 - 1.37309 4 3 ack 40 ------- 0 4.0 0.0 10 366 r 1.37349 2 3 cbr 210 ------- 1 1.0 5.0 303 328 + 1.37349 3 5 cbr 210 ------- 1 1.0 5.0 303 328 - 1.37349 3 5 cbr 210 ------- 1 1.0 5.0 303 328 r 1.37389 3 5 cbr 210 ------- 1 1.0 5.0 292 316 + 1.375 1 2 cbr 210 ------- 1 1.0 5.0 340 367 - 1.375 1 2 cbr 210 ------- 1 1.0 5.0 340 367 r 1.37586 1 2 cbr 210 ------- 1 1.0 5.0 326 352 + 1.37586 2 3 cbr 210 ------- 1 1.0 5.0 326 352 d 1.37586 2 3 cbr 210 ------- 1 1.0 5.0 326 352 r 1.37685 2 3 cbr 210 ------- 1 1.0 5.0 304 329 + 1.37685 3 5 cbr 210 ------- 1 1.0 5.0 304 329 - 1.37685 3 5 cbr 210 ------- 1 1.0 5.0 304 329 r 1.37725 3 5 cbr 210 ------- 1 1.0 5.0 293 317 + 1.37875 1 2 cbr 210 ------- 1 1.0 5.0 341 368 - 1.37875 1 2 cbr 210 ------- 1 1.0 5.0 341 368 r 1.37961 1 2 cbr 210 ------- 1 1.0 5.0 327 353 + 1.37961 2 3 cbr 210 ------- 1 1.0 5.0 327 353 d 1.37961 2 3 cbr 210 ------- 1 1.0 5.0 327 353 - 1.37981 2 3 cbr 210 ------- 1 1.0 5.0 316 342 r 1.38021 2 3 cbr 210 ------- 1 1.0 5.0 305 330 + 1.38021 3 5 cbr 210 ------- 1 1.0 5.0 305 330 - 1.38021 3 5 cbr 210 ------- 1 1.0 5.0 305 330 r 1.38061 3 5 cbr 210 ------- 1 1.0 5.0 294 318 + 1.3825 1 2 cbr 210 ------- 1 1.0 5.0 342 369 - 1.3825 1 2 cbr 210 ------- 1 1.0 5.0 342 369 - 1.38317 2 3 cbr 210 ------- 1 1.0 5.0 317 343 r 1.38336 1 2 cbr 210 ------- 1 1.0 5.0 328 354 + 1.38336 2 3 cbr 210 ------- 1 1.0 5.0 328 354 r 1.38357 2 3 cbr 210 ------- 1 1.0 5.0 306 331 + 1.38357 3 5 cbr 210 ------- 1 1.0 5.0 306 331 - 1.38357 3 5 cbr 210 ------- 1 1.0 5.0 306 331 r 1.38397 3 5 cbr 210 ------- 1 1.0 5.0 295 319 + 1.38625 1 2 cbr 210 ------- 1 1.0 5.0 343 370 - 1.38625 1 2 cbr 210 ------- 1 1.0 5.0 343 370 - 1.38653 2 3 cbr 210 ------- 1 1.0 5.0 318 344 r 1.38693 2 3 cbr 210 ------- 1 1.0 5.0 307 332 + 1.38693 3 5 cbr 210 ------- 1 1.0 5.0 307 332 - 1.38693 3 5 cbr 210 ------- 1 1.0 5.0 307 332 r 1.38711 1 2 cbr 210 ------- 1 1.0 5.0 329 355 + 1.38711 2 3 cbr 210 ------- 1 1.0 5.0 329 355 r 1.38733 3 5 cbr 210 ------- 1 1.0 5.0 296 320 - 1.38989 2 3 cbr 210 ------- 1 1.0 5.0 319 345 + 1.39 1 2 cbr 210 ------- 1 1.0 5.0 344 371 - 1.39 1 2 cbr 210 ------- 1 1.0 5.0 344 371 r 1.39029 2 3 cbr 210 ------- 1 1.0 5.0 308 333 + 1.39029 3 5 cbr 210 ------- 1 1.0 5.0 308 333 - 1.39029 3 5 cbr 210 ------- 1 1.0 5.0 308 333 r 1.39069 3 5 cbr 210 ------- 1 1.0 5.0 297 321 r 1.39086 1 2 cbr 210 ------- 1 1.0 5.0 330 356 + 1.39086 2 3 cbr 210 ------- 1 1.0 5.0 330 356 - 1.39325 2 3 cbr 210 ------- 1 1.0 5.0 320 346 r 1.39365 2 3 cbr 210 ------- 1 1.0 5.0 309 334 + 1.39365 3 5 cbr 210 ------- 1 1.0 5.0 309 334 - 1.39365 3 5 cbr 210 ------- 1 1.0 5.0 309 334 + 1.39375 1 2 cbr 210 ------- 1 1.0 5.0 345 372 - 1.39375 1 2 cbr 210 ------- 1 1.0 5.0 345 372 r 1.39405 3 5 cbr 210 ------- 1 1.0 5.0 298 322 r 1.39461 1 2 cbr 210 ------- 1 1.0 5.0 331 357 + 1.39461 2 3 cbr 210 ------- 1 1.0 5.0 331 357 - 1.39661 2 3 cbr 210 ------- 1 1.0 5.0 321 347 r 1.39701 2 3 cbr 210 ------- 1 1.0 5.0 310 335 + 1.39701 3 5 cbr 210 ------- 1 1.0 5.0 310 335 - 1.39701 3 5 cbr 210 ------- 1 1.0 5.0 310 335 r 1.39741 3 5 cbr 210 ------- 1 1.0 5.0 299 324 + 1.3975 1 2 cbr 210 ------- 1 1.0 5.0 346 373 - 1.3975 1 2 cbr 210 ------- 1 1.0 5.0 346 373 r 1.39836 1 2 cbr 210 ------- 1 1.0 5.0 332 358 + 1.39836 2 3 cbr 210 ------- 1 1.0 5.0 332 358 - 1.39997 2 3 cbr 210 ------- 1 1.0 5.0 322 348 r 1.40037 2 3 cbr 210 ------- 1 1.0 5.0 311 336 + 1.40037 3 5 cbr 210 ------- 1 1.0 5.0 311 336 - 1.40037 3 5 cbr 210 ------- 1 1.0 5.0 311 336 r 1.40077 3 5 cbr 210 ------- 1 1.0 5.0 300 325 + 1.40125 1 2 cbr 210 ------- 1 1.0 5.0 347 374 - 1.40125 1 2 cbr 210 ------- 1 1.0 5.0 347 374 r 1.40211 1 2 cbr 210 ------- 1 1.0 5.0 333 359 + 1.40211 2 3 cbr 210 ------- 1 1.0 5.0 333 359 - 1.40333 2 3 cbr 210 ------- 1 1.0 5.0 323 349 r 1.40373 2 3 cbr 210 ------- 1 1.0 5.0 312 337 + 1.40373 3 5 cbr 210 ------- 1 1.0 5.0 312 337 - 1.40373 3 5 cbr 210 ------- 1 1.0 5.0 312 337 r 1.40413 3 5 cbr 210 ------- 1 1.0 5.0 301 326 + 1.405 1 2 cbr 210 ------- 1 1.0 5.0 348 375 - 1.405 1 2 cbr 210 ------- 1 1.0 5.0 348 375 r 1.40586 1 2 cbr 210 ------- 1 1.0 5.0 334 360 + 1.40586 2 3 cbr 210 ------- 1 1.0 5.0 334 360 - 1.40669 2 3 cbr 210 ------- 1 1.0 5.0 324 350 r 1.40709 2 3 cbr 210 ------- 1 1.0 5.0 313 339 + 1.40709 3 5 cbr 210 ------- 1 1.0 5.0 313 339 - 1.40709 3 5 cbr 210 ------- 1 1.0 5.0 313 339 r 1.40749 3 5 cbr 210 ------- 1 1.0 5.0 302 327 + 1.40875 1 2 cbr 210 ------- 1 1.0 5.0 349 376 - 1.40875 1 2 cbr 210 ------- 1 1.0 5.0 349 376 r 1.40961 1 2 cbr 210 ------- 1 1.0 5.0 335 361 + 1.40961 2 3 cbr 210 ------- 1 1.0 5.0 335 361 - 1.41005 2 3 cbr 210 ------- 1 1.0 5.0 328 354 r 1.41045 2 3 cbr 210 ------- 1 1.0 5.0 314 340 + 1.41045 3 5 cbr 210 ------- 1 1.0 5.0 314 340 - 1.41045 3 5 cbr 210 ------- 1 1.0 5.0 314 340 + 1.4125 1 2 cbr 210 ------- 1 1.0 5.0 350 377 - 1.4125 1 2 cbr 210 ------- 1 1.0 5.0 350 377 r 1.41336 1 2 cbr 210 ------- 1 1.0 5.0 336 362 + 1.41336 2 3 cbr 210 ------- 1 1.0 5.0 336 362 - 1.41341 2 3 cbr 210 ------- 1 1.0 5.0 329 355 r 1.41381 2 3 cbr 210 ------- 1 1.0 5.0 315 341 + 1.41381 3 5 cbr 210 ------- 1 1.0 5.0 315 341 - 1.41381 3 5 cbr 210 ------- 1 1.0 5.0 315 341 + 1.41625 1 2 cbr 210 ------- 1 1.0 5.0 351 378 - 1.41625 1 2 cbr 210 ------- 1 1.0 5.0 351 378 - 1.41677 2 3 cbr 210 ------- 1 1.0 5.0 330 356 r 1.41711 1 2 cbr 210 ------- 1 1.0 5.0 337 363 + 1.41711 2 3 cbr 210 ------- 1 1.0 5.0 337 363 + 1.42 1 2 cbr 210 ------- 1 1.0 5.0 352 379 - 1.42 1 2 cbr 210 ------- 1 1.0 5.0 352 379 - 1.42013 2 3 cbr 210 ------- 1 1.0 5.0 331 357 r 1.42086 1 2 cbr 210 ------- 1 1.0 5.0 338 364 + 1.42086 2 3 cbr 210 ------- 1 1.0 5.0 338 364 - 1.42349 2 3 cbr 210 ------- 1 1.0 5.0 332 358 r 1.42373 4 3 ack 40 ------- 0 4.0 0.0 10 366 + 1.42373 3 2 ack 40 ------- 0 4.0 0.0 10 366 - 1.42373 3 2 ack 40 ------- 0 4.0 0.0 10 366 + 1.42375 1 2 cbr 210 ------- 1 1.0 5.0 353 380 - 1.42375 1 2 cbr 210 ------- 1 1.0 5.0 353 380 r 1.42461 1 2 cbr 210 ------- 1 1.0 5.0 339 365 + 1.42461 2 3 cbr 210 ------- 1 1.0 5.0 339 365 r 1.42685 3 5 cbr 210 ------- 1 1.0 5.0 303 328 - 1.42685 2 3 cbr 210 ------- 1 1.0 5.0 333 359 + 1.4275 1 2 cbr 210 ------- 1 1.0 5.0 354 381 - 1.4275 1 2 cbr 210 ------- 1 1.0 5.0 354 381 r 1.42836 1 2 cbr 210 ------- 1 1.0 5.0 340 367 + 1.42836 2 3 cbr 210 ------- 1 1.0 5.0 340 367 r 1.42981 2 3 tcp 1000 ------- 0 0.0 4.0 14 338 + 1.42981 3 4 tcp 1000 ------- 0 0.0 4.0 14 338 - 1.42981 3 4 tcp 1000 ------- 0 0.0 4.0 14 338 r 1.43021 3 5 cbr 210 ------- 1 1.0 5.0 304 329 - 1.43021 2 3 cbr 210 ------- 1 1.0 5.0 334 360 + 1.43125 1 2 cbr 210 ------- 1 1.0 5.0 355 382 - 1.43125 1 2 cbr 210 ------- 1 1.0 5.0 355 382 r 1.43211 1 2 cbr 210 ------- 1 1.0 5.0 341 368 + 1.43211 2 3 cbr 210 ------- 1 1.0 5.0 341 368 r 1.43317 2 3 cbr 210 ------- 1 1.0 5.0 316 342 + 1.43317 3 5 cbr 210 ------- 1 1.0 5.0 316 342 - 1.43317 3 5 cbr 210 ------- 1 1.0 5.0 316 342 r 1.43357 3 5 cbr 210 ------- 1 1.0 5.0 305 330 - 1.43357 2 3 cbr 210 ------- 1 1.0 5.0 335 361 + 1.435 1 2 cbr 210 ------- 1 1.0 5.0 356 383 - 1.435 1 2 cbr 210 ------- 1 1.0 5.0 356 383 r 1.43586 1 2 cbr 210 ------- 1 1.0 5.0 342 369 + 1.43586 2 3 cbr 210 ------- 1 1.0 5.0 342 369 r 1.43613 3 4 tcp 1000 ------- 0 0.0 4.0 13 323 + 1.43613 4 3 ack 40 ------- 0 4.0 0.0 10 384 - 1.43613 4 3 ack 40 ------- 0 4.0 0.0 10 384 r 1.43653 2 3 cbr 210 ------- 1 1.0 5.0 317 343 + 1.43653 3 5 cbr 210 ------- 1 1.0 5.0 317 343 - 1.43653 3 5 cbr 210 ------- 1 1.0 5.0 317 343 r 1.43693 3 5 cbr 210 ------- 1 1.0 5.0 306 331 - 1.43693 2 3 cbr 210 ------- 1 1.0 5.0 336 362 + 1.43875 1 2 cbr 210 ------- 1 1.0 5.0 357 385 - 1.43875 1 2 cbr 210 ------- 1 1.0 5.0 357 385 r 1.43961 1 2 cbr 210 ------- 1 1.0 5.0 343 370 + 1.43961 2 3 cbr 210 ------- 1 1.0 5.0 343 370 r 1.43989 2 3 cbr 210 ------- 1 1.0 5.0 318 344 + 1.43989 3 5 cbr 210 ------- 1 1.0 5.0 318 344 - 1.43989 3 5 cbr 210 ------- 1 1.0 5.0 318 344 r 1.44029 3 5 cbr 210 ------- 1 1.0 5.0 307 332 - 1.44029 2 3 cbr 210 ------- 1 1.0 5.0 337 363 + 1.4425 1 2 cbr 210 ------- 1 1.0 5.0 358 386 - 1.4425 1 2 cbr 210 ------- 1 1.0 5.0 358 386 r 1.44325 2 3 cbr 210 ------- 1 1.0 5.0 319 345 + 1.44325 3 5 cbr 210 ------- 1 1.0 5.0 319 345 - 1.44325 3 5 cbr 210 ------- 1 1.0 5.0 319 345 r 1.44336 1 2 cbr 210 ------- 1 1.0 5.0 344 371 + 1.44336 2 3 cbr 210 ------- 1 1.0 5.0 344 371 r 1.44365 3 5 cbr 210 ------- 1 1.0 5.0 308 333 - 1.44365 2 3 cbr 210 ------- 1 1.0 5.0 338 364 + 1.44625 1 2 cbr 210 ------- 1 1.0 5.0 359 387 - 1.44625 1 2 cbr 210 ------- 1 1.0 5.0 359 387 r 1.44661 2 3 cbr 210 ------- 1 1.0 5.0 320 346 + 1.44661 3 5 cbr 210 ------- 1 1.0 5.0 320 346 - 1.44661 3 5 cbr 210 ------- 1 1.0 5.0 320 346 r 1.44701 3 5 cbr 210 ------- 1 1.0 5.0 309 334 - 1.44701 2 3 cbr 210 ------- 1 1.0 5.0 339 365 r 1.44711 1 2 cbr 210 ------- 1 1.0 5.0 345 372 + 1.44711 2 3 cbr 210 ------- 1 1.0 5.0 345 372 r 1.44997 2 3 cbr 210 ------- 1 1.0 5.0 321 347 + 1.44997 3 5 cbr 210 ------- 1 1.0 5.0 321 347 - 1.44997 3 5 cbr 210 ------- 1 1.0 5.0 321 347 + 1.45 1 2 cbr 210 ------- 1 1.0 5.0 360 388 - 1.45 1 2 cbr 210 ------- 1 1.0 5.0 360 388 r 1.45037 3 5 cbr 210 ------- 1 1.0 5.0 310 335 - 1.45037 2 3 cbr 210 ------- 1 1.0 5.0 340 367 r 1.45086 1 2 cbr 210 ------- 1 1.0 5.0 346 373 + 1.45086 2 3 cbr 210 ------- 1 1.0 5.0 346 373 r 1.45333 2 3 cbr 210 ------- 1 1.0 5.0 322 348 + 1.45333 3 5 cbr 210 ------- 1 1.0 5.0 322 348 - 1.45333 3 5 cbr 210 ------- 1 1.0 5.0 322 348 r 1.45373 3 5 cbr 210 ------- 1 1.0 5.0 311 336 - 1.45373 2 3 cbr 210 ------- 1 1.0 5.0 341 368 + 1.45375 1 2 cbr 210 ------- 1 1.0 5.0 361 389 - 1.45375 1 2 cbr 210 ------- 1 1.0 5.0 361 389 r 1.45461 1 2 cbr 210 ------- 1 1.0 5.0 347 374 + 1.45461 2 3 cbr 210 ------- 1 1.0 5.0 347 374 r 1.45669 2 3 cbr 210 ------- 1 1.0 5.0 323 349 + 1.45669 3 5 cbr 210 ------- 1 1.0 5.0 323 349 - 1.45669 3 5 cbr 210 ------- 1 1.0 5.0 323 349 r 1.45709 3 5 cbr 210 ------- 1 1.0 5.0 312 337 - 1.45709 2 3 cbr 210 ------- 1 1.0 5.0 342 369 + 1.4575 1 2 cbr 210 ------- 1 1.0 5.0 362 390 - 1.4575 1 2 cbr 210 ------- 1 1.0 5.0 362 390 r 1.45836 1 2 cbr 210 ------- 1 1.0 5.0 348 375 + 1.45836 2 3 cbr 210 ------- 1 1.0 5.0 348 375 r 1.46005 2 3 cbr 210 ------- 1 1.0 5.0 324 350 + 1.46005 3 5 cbr 210 ------- 1 1.0 5.0 324 350 - 1.46005 3 5 cbr 210 ------- 1 1.0 5.0 324 350 r 1.46045 3 5 cbr 210 ------- 1 1.0 5.0 313 339 - 1.46045 2 3 cbr 210 ------- 1 1.0 5.0 343 370 + 1.46125 1 2 cbr 210 ------- 1 1.0 5.0 363 391 - 1.46125 1 2 cbr 210 ------- 1 1.0 5.0 363 391 r 1.46211 1 2 cbr 210 ------- 1 1.0 5.0 349 376 + 1.46211 2 3 cbr 210 ------- 1 1.0 5.0 349 376 r 1.46341 2 3 cbr 210 ------- 1 1.0 5.0 328 354 + 1.46341 3 5 cbr 210 ------- 1 1.0 5.0 328 354 - 1.46341 3 5 cbr 210 ------- 1 1.0 5.0 328 354 r 1.46381 3 5 cbr 210 ------- 1 1.0 5.0 314 340 - 1.46381 2 3 cbr 210 ------- 1 1.0 5.0 344 371 + 1.465 1 2 cbr 210 ------- 1 1.0 5.0 364 392 - 1.465 1 2 cbr 210 ------- 1 1.0 5.0 364 392 r 1.46586 1 2 cbr 210 ------- 1 1.0 5.0 350 377 + 1.46586 2 3 cbr 210 ------- 1 1.0 5.0 350 377 r 1.46677 2 3 cbr 210 ------- 1 1.0 5.0 329 355 + 1.46677 3 5 cbr 210 ------- 1 1.0 5.0 329 355 - 1.46677 3 5 cbr 210 ------- 1 1.0 5.0 329 355 r 1.46717 3 5 cbr 210 ------- 1 1.0 5.0 315 341 - 1.46717 2 3 cbr 210 ------- 1 1.0 5.0 345 372 + 1.46875 1 2 cbr 210 ------- 1 1.0 5.0 365 393 - 1.46875 1 2 cbr 210 ------- 1 1.0 5.0 365 393 r 1.46961 1 2 cbr 210 ------- 1 1.0 5.0 351 378 + 1.46961 2 3 cbr 210 ------- 1 1.0 5.0 351 378 r 1.47013 2 3 cbr 210 ------- 1 1.0 5.0 330 356 + 1.47013 3 5 cbr 210 ------- 1 1.0 5.0 330 356 - 1.47013 3 5 cbr 210 ------- 1 1.0 5.0 330 356 - 1.47053 2 3 cbr 210 ------- 1 1.0 5.0 346 373 + 1.4725 1 2 cbr 210 ------- 1 1.0 5.0 366 394 - 1.4725 1 2 cbr 210 ------- 1 1.0 5.0 366 394 r 1.47336 1 2 cbr 210 ------- 1 1.0 5.0 352 379 + 1.47336 2 3 cbr 210 ------- 1 1.0 5.0 352 379 r 1.47349 2 3 cbr 210 ------- 1 1.0 5.0 331 357 + 1.47349 3 5 cbr 210 ------- 1 1.0 5.0 331 357 - 1.47349 3 5 cbr 210 ------- 1 1.0 5.0 331 357 - 1.47389 2 3 cbr 210 ------- 1 1.0 5.0 347 374 r 1.47437 3 2 ack 40 ------- 0 4.0 0.0 10 366 + 1.47437 2 0 ack 40 ------- 0 4.0 0.0 10 366 - 1.47437 2 0 ack 40 ------- 0 4.0 0.0 10 366 + 1.47625 1 2 cbr 210 ------- 1 1.0 5.0 367 395 - 1.47625 1 2 cbr 210 ------- 1 1.0 5.0 367 395 r 1.47685 2 3 cbr 210 ------- 1 1.0 5.0 332 358 + 1.47685 3 5 cbr 210 ------- 1 1.0 5.0 332 358 - 1.47685 3 5 cbr 210 ------- 1 1.0 5.0 332 358 r 1.47711 1 2 cbr 210 ------- 1 1.0 5.0 353 380 + 1.47711 2 3 cbr 210 ------- 1 1.0 5.0 353 380 - 1.47725 2 3 cbr 210 ------- 1 1.0 5.0 348 375 + 1.48 1 2 cbr 210 ------- 1 1.0 5.0 368 396 - 1.48 1 2 cbr 210 ------- 1 1.0 5.0 368 396 r 1.48021 2 3 cbr 210 ------- 1 1.0 5.0 333 359 + 1.48021 3 5 cbr 210 ------- 1 1.0 5.0 333 359 - 1.48021 3 5 cbr 210 ------- 1 1.0 5.0 333 359 - 1.48061 2 3 cbr 210 ------- 1 1.0 5.0 349 376 r 1.48086 1 2 cbr 210 ------- 1 1.0 5.0 354 381 + 1.48086 2 3 cbr 210 ------- 1 1.0 5.0 354 381 r 1.48357 2 3 cbr 210 ------- 1 1.0 5.0 334 360 + 1.48357 3 5 cbr 210 ------- 1 1.0 5.0 334 360 - 1.48357 3 5 cbr 210 ------- 1 1.0 5.0 334 360 + 1.48375 1 2 cbr 210 ------- 1 1.0 5.0 369 397 - 1.48375 1 2 cbr 210 ------- 1 1.0 5.0 369 397 - 1.48397 2 3 cbr 210 ------- 1 1.0 5.0 350 377 r 1.48461 1 2 cbr 210 ------- 1 1.0 5.0 355 382 + 1.48461 2 3 cbr 210 ------- 1 1.0 5.0 355 382 r 1.48653 3 5 cbr 210 ------- 1 1.0 5.0 316 342 r 1.48677 4 3 ack 40 ------- 0 4.0 0.0 10 384 + 1.48677 3 2 ack 40 ------- 0 4.0 0.0 10 384 - 1.48677 3 2 ack 40 ------- 0 4.0 0.0 10 384 r 1.48693 2 3 cbr 210 ------- 1 1.0 5.0 335 361 + 1.48693 3 5 cbr 210 ------- 1 1.0 5.0 335 361 - 1.48693 3 5 cbr 210 ------- 1 1.0 5.0 335 361 - 1.48733 2 3 cbr 210 ------- 1 1.0 5.0 351 378 + 1.4875 1 2 cbr 210 ------- 1 1.0 5.0 370 398 - 1.4875 1 2 cbr 210 ------- 1 1.0 5.0 370 398 r 1.48836 1 2 cbr 210 ------- 1 1.0 5.0 356 383 + 1.48836 2 3 cbr 210 ------- 1 1.0 5.0 356 383 r 1.48989 3 5 cbr 210 ------- 1 1.0 5.0 317 343 r 1.49029 2 3 cbr 210 ------- 1 1.0 5.0 336 362 + 1.49029 3 5 cbr 210 ------- 1 1.0 5.0 336 362 - 1.49029 3 5 cbr 210 ------- 1 1.0 5.0 336 362 - 1.49069 2 3 cbr 210 ------- 1 1.0 5.0 352 379 + 1.49125 1 2 cbr 210 ------- 1 1.0 5.0 371 399 - 1.49125 1 2 cbr 210 ------- 1 1.0 5.0 371 399 r 1.49211 1 2 cbr 210 ------- 1 1.0 5.0 357 385 + 1.49211 2 3 cbr 210 ------- 1 1.0 5.0 357 385 r 1.49325 3 5 cbr 210 ------- 1 1.0 5.0 318 344 r 1.49365 2 3 cbr 210 ------- 1 1.0 5.0 337 363 + 1.49365 3 5 cbr 210 ------- 1 1.0 5.0 337 363 - 1.49365 3 5 cbr 210 ------- 1 1.0 5.0 337 363 - 1.49405 2 3 cbr 210 ------- 1 1.0 5.0 353 380 + 1.495 1 2 cbr 210 ------- 1 1.0 5.0 372 400 - 1.495 1 2 cbr 210 ------- 1 1.0 5.0 372 400 r 1.49581 3 4 tcp 1000 ------- 0 0.0 4.0 14 338 + 1.49581 4 3 ack 40 ------- 0 4.0 0.0 10 401 - 1.49581 4 3 ack 40 ------- 0 4.0 0.0 10 401 r 1.49586 1 2 cbr 210 ------- 1 1.0 5.0 358 386 + 1.49586 2 3 cbr 210 ------- 1 1.0 5.0 358 386 r 1.49661 3 5 cbr 210 ------- 1 1.0 5.0 319 345 r 1.49701 2 3 cbr 210 ------- 1 1.0 5.0 338 364 + 1.49701 3 5 cbr 210 ------- 1 1.0 5.0 338 364 - 1.49701 3 5 cbr 210 ------- 1 1.0 5.0 338 364 - 1.49741 2 3 cbr 210 ------- 1 1.0 5.0 354 381 + 1.49875 1 2 cbr 210 ------- 1 1.0 5.0 373 402 - 1.49875 1 2 cbr 210 ------- 1 1.0 5.0 373 402 r 1.49961 1 2 cbr 210 ------- 1 1.0 5.0 359 387 + 1.49961 2 3 cbr 210 ------- 1 1.0 5.0 359 387 r 1.49997 3 5 cbr 210 ------- 1 1.0 5.0 320 346 r 1.50037 2 3 cbr 210 ------- 1 1.0 5.0 339 365 + 1.50037 3 5 cbr 210 ------- 1 1.0 5.0 339 365 - 1.50037 3 5 cbr 210 ------- 1 1.0 5.0 339 365 - 1.50077 2 3 cbr 210 ------- 1 1.0 5.0 355 382 + 1.5025 1 2 cbr 210 ------- 1 1.0 5.0 374 403 - 1.5025 1 2 cbr 210 ------- 1 1.0 5.0 374 403 r 1.50333 3 5 cbr 210 ------- 1 1.0 5.0 321 347 r 1.50336 1 2 cbr 210 ------- 1 1.0 5.0 360 388 + 1.50336 2 3 cbr 210 ------- 1 1.0 5.0 360 388 r 1.50373 2 3 cbr 210 ------- 1 1.0 5.0 340 367 + 1.50373 3 5 cbr 210 ------- 1 1.0 5.0 340 367 - 1.50373 3 5 cbr 210 ------- 1 1.0 5.0 340 367 - 1.50413 2 3 cbr 210 ------- 1 1.0 5.0 356 383 + 1.50625 1 2 cbr 210 ------- 1 1.0 5.0 375 404 - 1.50625 1 2 cbr 210 ------- 1 1.0 5.0 375 404 r 1.50669 3 5 cbr 210 ------- 1 1.0 5.0 322 348 r 1.50709 2 3 cbr 210 ------- 1 1.0 5.0 341 368 + 1.50709 3 5 cbr 210 ------- 1 1.0 5.0 341 368 - 1.50709 3 5 cbr 210 ------- 1 1.0 5.0 341 368 r 1.50711 1 2 cbr 210 ------- 1 1.0 5.0 361 389 + 1.50711 2 3 cbr 210 ------- 1 1.0 5.0 361 389 - 1.50749 2 3 cbr 210 ------- 1 1.0 5.0 357 385 + 1.51 1 2 cbr 210 ------- 1 1.0 5.0 376 405 - 1.51 1 2 cbr 210 ------- 1 1.0 5.0 376 405 r 1.51005 3 5 cbr 210 ------- 1 1.0 5.0 323 349 r 1.51045 2 3 cbr 210 ------- 1 1.0 5.0 342 369 + 1.51045 3 5 cbr 210 ------- 1 1.0 5.0 342 369 - 1.51045 3 5 cbr 210 ------- 1 1.0 5.0 342 369 - 1.51085 2 3 cbr 210 ------- 1 1.0 5.0 358 386 r 1.51086 1 2 cbr 210 ------- 1 1.0 5.0 362 390 + 1.51086 2 3 cbr 210 ------- 1 1.0 5.0 362 390 r 1.51341 3 5 cbr 210 ------- 1 1.0 5.0 324 350 + 1.51375 1 2 cbr 210 ------- 1 1.0 5.0 377 406 - 1.51375 1 2 cbr 210 ------- 1 1.0 5.0 377 406 r 1.51381 2 3 cbr 210 ------- 1 1.0 5.0 343 370 + 1.51381 3 5 cbr 210 ------- 1 1.0 5.0 343 370 - 1.51381 3 5 cbr 210 ------- 1 1.0 5.0 343 370 - 1.51421 2 3 cbr 210 ------- 1 1.0 5.0 359 387 r 1.51461 1 2 cbr 210 ------- 1 1.0 5.0 363 391 + 1.51461 2 3 cbr 210 ------- 1 1.0 5.0 363 391 r 1.51677 3 5 cbr 210 ------- 1 1.0 5.0 328 354 r 1.51717 2 3 cbr 210 ------- 1 1.0 5.0 344 371 + 1.51717 3 5 cbr 210 ------- 1 1.0 5.0 344 371 - 1.51717 3 5 cbr 210 ------- 1 1.0 5.0 344 371 + 1.5175 1 2 cbr 210 ------- 1 1.0 5.0 378 407 - 1.5175 1 2 cbr 210 ------- 1 1.0 5.0 378 407 - 1.51757 2 3 cbr 210 ------- 1 1.0 5.0 360 388 r 1.51836 1 2 cbr 210 ------- 1 1.0 5.0 364 392 + 1.51836 2 3 cbr 210 ------- 1 1.0 5.0 364 392 r 1.52013 3 5 cbr 210 ------- 1 1.0 5.0 329 355 r 1.52053 2 3 cbr 210 ------- 1 1.0 5.0 345 372 + 1.52053 3 5 cbr 210 ------- 1 1.0 5.0 345 372 - 1.52053 3 5 cbr 210 ------- 1 1.0 5.0 345 372 - 1.52093 2 3 cbr 210 ------- 1 1.0 5.0 361 389 + 1.52125 1 2 cbr 210 ------- 1 1.0 5.0 379 408 - 1.52125 1 2 cbr 210 ------- 1 1.0 5.0 379 408 r 1.52211 1 2 cbr 210 ------- 1 1.0 5.0 365 393 + 1.52211 2 3 cbr 210 ------- 1 1.0 5.0 365 393 r 1.52349 3 5 cbr 210 ------- 1 1.0 5.0 330 356 r 1.52389 2 3 cbr 210 ------- 1 1.0 5.0 346 373 + 1.52389 3 5 cbr 210 ------- 1 1.0 5.0 346 373 - 1.52389 3 5 cbr 210 ------- 1 1.0 5.0 346 373 - 1.52429 2 3 cbr 210 ------- 1 1.0 5.0 362 390 + 1.525 1 2 cbr 210 ------- 1 1.0 5.0 380 409 - 1.525 1 2 cbr 210 ------- 1 1.0 5.0 380 409 r 1.52501 2 0 ack 40 ------- 0 4.0 0.0 10 366 r 1.52586 1 2 cbr 210 ------- 1 1.0 5.0 366 394 + 1.52586 2 3 cbr 210 ------- 1 1.0 5.0 366 394 r 1.52685 3 5 cbr 210 ------- 1 1.0 5.0 331 357 r 1.52725 2 3 cbr 210 ------- 1 1.0 5.0 347 374 + 1.52725 3 5 cbr 210 ------- 1 1.0 5.0 347 374 - 1.52725 3 5 cbr 210 ------- 1 1.0 5.0 347 374 - 1.52765 2 3 cbr 210 ------- 1 1.0 5.0 363 391 + 1.52875 1 2 cbr 210 ------- 1 1.0 5.0 381 410 - 1.52875 1 2 cbr 210 ------- 1 1.0 5.0 381 410 r 1.52961 1 2 cbr 210 ------- 1 1.0 5.0 367 395 + 1.52961 2 3 cbr 210 ------- 1 1.0 5.0 367 395 r 1.53021 3 5 cbr 210 ------- 1 1.0 5.0 332 358 r 1.53061 2 3 cbr 210 ------- 1 1.0 5.0 348 375 + 1.53061 3 5 cbr 210 ------- 1 1.0 5.0 348 375 - 1.53061 3 5 cbr 210 ------- 1 1.0 5.0 348 375 - 1.53101 2 3 cbr 210 ------- 1 1.0 5.0 364 392 + 1.5325 1 2 cbr 210 ------- 1 1.0 5.0 382 411 - 1.5325 1 2 cbr 210 ------- 1 1.0 5.0 382 411 r 1.53336 1 2 cbr 210 ------- 1 1.0 5.0 368 396 + 1.53336 2 3 cbr 210 ------- 1 1.0 5.0 368 396 r 1.53357 3 5 cbr 210 ------- 1 1.0 5.0 333 359 r 1.53397 2 3 cbr 210 ------- 1 1.0 5.0 349 376 + 1.53397 3 5 cbr 210 ------- 1 1.0 5.0 349 376 - 1.53397 3 5 cbr 210 ------- 1 1.0 5.0 349 376 - 1.53437 2 3 cbr 210 ------- 1 1.0 5.0 365 393 + 1.53625 1 2 cbr 210 ------- 1 1.0 5.0 383 412 - 1.53625 1 2 cbr 210 ------- 1 1.0 5.0 383 412 r 1.53693 3 5 cbr 210 ------- 1 1.0 5.0 334 360 r 1.53711 1 2 cbr 210 ------- 1 1.0 5.0 369 397 + 1.53711 2 3 cbr 210 ------- 1 1.0 5.0 369 397 r 1.53733 2 3 cbr 210 ------- 1 1.0 5.0 350 377 + 1.53733 3 5 cbr 210 ------- 1 1.0 5.0 350 377 - 1.53733 3 5 cbr 210 ------- 1 1.0 5.0 350 377 r 1.53741 3 2 ack 40 ------- 0 4.0 0.0 10 384 + 1.53741 2 0 ack 40 ------- 0 4.0 0.0 10 384 - 1.53741 2 0 ack 40 ------- 0 4.0 0.0 10 384 - 1.53773 2 3 cbr 210 ------- 1 1.0 5.0 366 394 + 1.54 1 2 cbr 210 ------- 1 1.0 5.0 384 413 - 1.54 1 2 cbr 210 ------- 1 1.0 5.0 384 413 r 1.54029 3 5 cbr 210 ------- 1 1.0 5.0 335 361 r 1.54069 2 3 cbr 210 ------- 1 1.0 5.0 351 378 + 1.54069 3 5 cbr 210 ------- 1 1.0 5.0 351 378 - 1.54069 3 5 cbr 210 ------- 1 1.0 5.0 351 378 r 1.54086 1 2 cbr 210 ------- 1 1.0 5.0 370 398 + 1.54086 2 3 cbr 210 ------- 1 1.0 5.0 370 398 - 1.54109 2 3 cbr 210 ------- 1 1.0 5.0 367 395 r 1.54365 3 5 cbr 210 ------- 1 1.0 5.0 336 362 + 1.54375 1 2 cbr 210 ------- 1 1.0 5.0 385 414 - 1.54375 1 2 cbr 210 ------- 1 1.0 5.0 385 414 r 1.54405 2 3 cbr 210 ------- 1 1.0 5.0 352 379 + 1.54405 3 5 cbr 210 ------- 1 1.0 5.0 352 379 - 1.54405 3 5 cbr 210 ------- 1 1.0 5.0 352 379 - 1.54445 2 3 cbr 210 ------- 1 1.0 5.0 368 396 r 1.54461 1 2 cbr 210 ------- 1 1.0 5.0 371 399 + 1.54461 2 3 cbr 210 ------- 1 1.0 5.0 371 399 r 1.54645 4 3 ack 40 ------- 0 4.0 0.0 10 401 + 1.54645 3 2 ack 40 ------- 0 4.0 0.0 10 401 - 1.54645 3 2 ack 40 ------- 0 4.0 0.0 10 401 r 1.54701 3 5 cbr 210 ------- 1 1.0 5.0 337 363 r 1.54741 2 3 cbr 210 ------- 1 1.0 5.0 353 380 + 1.54741 3 5 cbr 210 ------- 1 1.0 5.0 353 380 - 1.54741 3 5 cbr 210 ------- 1 1.0 5.0 353 380 + 1.5475 1 2 cbr 210 ------- 1 1.0 5.0 386 415 - 1.5475 1 2 cbr 210 ------- 1 1.0 5.0 386 415 - 1.54781 2 3 cbr 210 ------- 1 1.0 5.0 369 397 r 1.54836 1 2 cbr 210 ------- 1 1.0 5.0 372 400 + 1.54836 2 3 cbr 210 ------- 1 1.0 5.0 372 400 r 1.55037 3 5 cbr 210 ------- 1 1.0 5.0 338 364 r 1.55077 2 3 cbr 210 ------- 1 1.0 5.0 354 381 + 1.55077 3 5 cbr 210 ------- 1 1.0 5.0 354 381 - 1.55077 3 5 cbr 210 ------- 1 1.0 5.0 354 381 - 1.55117 2 3 cbr 210 ------- 1 1.0 5.0 370 398 + 1.55125 1 2 cbr 210 ------- 1 1.0 5.0 387 416 - 1.55125 1 2 cbr 210 ------- 1 1.0 5.0 387 416 r 1.55211 1 2 cbr 210 ------- 1 1.0 5.0 373 402 + 1.55211 2 3 cbr 210 ------- 1 1.0 5.0 373 402 r 1.55373 3 5 cbr 210 ------- 1 1.0 5.0 339 365 r 1.55413 2 3 cbr 210 ------- 1 1.0 5.0 355 382 + 1.55413 3 5 cbr 210 ------- 1 1.0 5.0 355 382 - 1.55413 3 5 cbr 210 ------- 1 1.0 5.0 355 382 - 1.55453 2 3 cbr 210 ------- 1 1.0 5.0 371 399 + 1.555 1 2 cbr 210 ------- 1 1.0 5.0 388 417 - 1.555 1 2 cbr 210 ------- 1 1.0 5.0 388 417 r 1.55586 1 2 cbr 210 ------- 1 1.0 5.0 374 403 + 1.55586 2 3 cbr 210 ------- 1 1.0 5.0 374 403 r 1.55709 3 5 cbr 210 ------- 1 1.0 5.0 340 367 r 1.55749 2 3 cbr 210 ------- 1 1.0 5.0 356 383 + 1.55749 3 5 cbr 210 ------- 1 1.0 5.0 356 383 - 1.55749 3 5 cbr 210 ------- 1 1.0 5.0 356 383 - 1.55789 2 3 cbr 210 ------- 1 1.0 5.0 372 400 + 1.55875 1 2 cbr 210 ------- 1 1.0 5.0 389 418 - 1.55875 1 2 cbr 210 ------- 1 1.0 5.0 389 418 r 1.55961 1 2 cbr 210 ------- 1 1.0 5.0 375 404 + 1.55961 2 3 cbr 210 ------- 1 1.0 5.0 375 404 r 1.56045 3 5 cbr 210 ------- 1 1.0 5.0 341 368 r 1.56085 2 3 cbr 210 ------- 1 1.0 5.0 357 385 + 1.56085 3 5 cbr 210 ------- 1 1.0 5.0 357 385 - 1.56085 3 5 cbr 210 ------- 1 1.0 5.0 357 385 - 1.56125 2 3 cbr 210 ------- 1 1.0 5.0 373 402 + 1.5625 1 2 cbr 210 ------- 1 1.0 5.0 390 419 - 1.5625 1 2 cbr 210 ------- 1 1.0 5.0 390 419 r 1.56336 1 2 cbr 210 ------- 1 1.0 5.0 376 405 + 1.56336 2 3 cbr 210 ------- 1 1.0 5.0 376 405 r 1.56381 3 5 cbr 210 ------- 1 1.0 5.0 342 369 r 1.56421 2 3 cbr 210 ------- 1 1.0 5.0 358 386 + 1.56421 3 5 cbr 210 ------- 1 1.0 5.0 358 386 - 1.56421 3 5 cbr 210 ------- 1 1.0 5.0 358 386 - 1.56461 2 3 cbr 210 ------- 1 1.0 5.0 374 403 + 1.56625 1 2 cbr 210 ------- 1 1.0 5.0 391 420 - 1.56625 1 2 cbr 210 ------- 1 1.0 5.0 391 420 r 1.56711 1 2 cbr 210 ------- 1 1.0 5.0 377 406 + 1.56711 2 3 cbr 210 ------- 1 1.0 5.0 377 406 r 1.56717 3 5 cbr 210 ------- 1 1.0 5.0 343 370 r 1.56757 2 3 cbr 210 ------- 1 1.0 5.0 359 387 + 1.56757 3 5 cbr 210 ------- 1 1.0 5.0 359 387 - 1.56757 3 5 cbr 210 ------- 1 1.0 5.0 359 387 - 1.56797 2 3 cbr 210 ------- 1 1.0 5.0 375 404 + 1.57 1 2 cbr 210 ------- 1 1.0 5.0 392 421 - 1.57 1 2 cbr 210 ------- 1 1.0 5.0 392 421 r 1.57053 3 5 cbr 210 ------- 1 1.0 5.0 344 371 r 1.57086 1 2 cbr 210 ------- 1 1.0 5.0 378 407 + 1.57086 2 3 cbr 210 ------- 1 1.0 5.0 378 407 r 1.57093 2 3 cbr 210 ------- 1 1.0 5.0 360 388 + 1.57093 3 5 cbr 210 ------- 1 1.0 5.0 360 388 - 1.57093 3 5 cbr 210 ------- 1 1.0 5.0 360 388 - 1.57133 2 3 cbr 210 ------- 1 1.0 5.0 376 405 + 1.57375 1 2 cbr 210 ------- 1 1.0 5.0 393 422 - 1.57375 1 2 cbr 210 ------- 1 1.0 5.0 393 422 r 1.57389 3 5 cbr 210 ------- 1 1.0 5.0 345 372 r 1.57429 2 3 cbr 210 ------- 1 1.0 5.0 361 389 + 1.57429 3 5 cbr 210 ------- 1 1.0 5.0 361 389 - 1.57429 3 5 cbr 210 ------- 1 1.0 5.0 361 389 r 1.57461 1 2 cbr 210 ------- 1 1.0 5.0 379 408 + 1.57461 2 3 cbr 210 ------- 1 1.0 5.0 379 408 - 1.57469 2 3 cbr 210 ------- 1 1.0 5.0 377 406 r 1.57725 3 5 cbr 210 ------- 1 1.0 5.0 346 373 + 1.5775 1 2 cbr 210 ------- 1 1.0 5.0 394 423 - 1.5775 1 2 cbr 210 ------- 1 1.0 5.0 394 423 r 1.57765 2 3 cbr 210 ------- 1 1.0 5.0 362 390 + 1.57765 3 5 cbr 210 ------- 1 1.0 5.0 362 390 - 1.57765 3 5 cbr 210 ------- 1 1.0 5.0 362 390 - 1.57805 2 3 cbr 210 ------- 1 1.0 5.0 378 407 r 1.57836 1 2 cbr 210 ------- 1 1.0 5.0 380 409 + 1.57836 2 3 cbr 210 ------- 1 1.0 5.0 380 409 r 1.58061 3 5 cbr 210 ------- 1 1.0 5.0 347 374 r 1.58101 2 3 cbr 210 ------- 1 1.0 5.0 363 391 + 1.58101 3 5 cbr 210 ------- 1 1.0 5.0 363 391 - 1.58101 3 5 cbr 210 ------- 1 1.0 5.0 363 391 + 1.58125 1 2 cbr 210 ------- 1 1.0 5.0 395 424 - 1.58125 1 2 cbr 210 ------- 1 1.0 5.0 395 424 - 1.58141 2 3 cbr 210 ------- 1 1.0 5.0 379 408 r 1.58211 1 2 cbr 210 ------- 1 1.0 5.0 381 410 + 1.58211 2 3 cbr 210 ------- 1 1.0 5.0 381 410 r 1.58397 3 5 cbr 210 ------- 1 1.0 5.0 348 375 r 1.58437 2 3 cbr 210 ------- 1 1.0 5.0 364 392 + 1.58437 3 5 cbr 210 ------- 1 1.0 5.0 364 392 - 1.58437 3 5 cbr 210 ------- 1 1.0 5.0 364 392 - 1.58477 2 3 cbr 210 ------- 1 1.0 5.0 380 409 + 1.585 1 2 cbr 210 ------- 1 1.0 5.0 396 425 - 1.585 1 2 cbr 210 ------- 1 1.0 5.0 396 425 r 1.58586 1 2 cbr 210 ------- 1 1.0 5.0 382 411 + 1.58586 2 3 cbr 210 ------- 1 1.0 5.0 382 411 r 1.58733 3 5 cbr 210 ------- 1 1.0 5.0 349 376 r 1.58773 2 3 cbr 210 ------- 1 1.0 5.0 365 393 + 1.58773 3 5 cbr 210 ------- 1 1.0 5.0 365 393 - 1.58773 3 5 cbr 210 ------- 1 1.0 5.0 365 393 r 1.58805 2 0 ack 40 ------- 0 4.0 0.0 10 384 - 1.58813 2 3 cbr 210 ------- 1 1.0 5.0 381 410 + 1.58875 1 2 cbr 210 ------- 1 1.0 5.0 397 426 - 1.58875 1 2 cbr 210 ------- 1 1.0 5.0 397 426 r 1.58961 1 2 cbr 210 ------- 1 1.0 5.0 383 412 + 1.58961 2 3 cbr 210 ------- 1 1.0 5.0 383 412 r 1.59069 3 5 cbr 210 ------- 1 1.0 5.0 350 377 r 1.59109 2 3 cbr 210 ------- 1 1.0 5.0 366 394 + 1.59109 3 5 cbr 210 ------- 1 1.0 5.0 366 394 - 1.59109 3 5 cbr 210 ------- 1 1.0 5.0 366 394 - 1.59149 2 3 cbr 210 ------- 1 1.0 5.0 382 411 + 1.5925 1 2 cbr 210 ------- 1 1.0 5.0 398 427 - 1.5925 1 2 cbr 210 ------- 1 1.0 5.0 398 427 r 1.59336 1 2 cbr 210 ------- 1 1.0 5.0 384 413 + 1.59336 2 3 cbr 210 ------- 1 1.0 5.0 384 413 r 1.59405 3 5 cbr 210 ------- 1 1.0 5.0 351 378 r 1.59445 2 3 cbr 210 ------- 1 1.0 5.0 367 395 + 1.59445 3 5 cbr 210 ------- 1 1.0 5.0 367 395 - 1.59445 3 5 cbr 210 ------- 1 1.0 5.0 367 395 - 1.59485 2 3 cbr 210 ------- 1 1.0 5.0 383 412 + 1.59625 1 2 cbr 210 ------- 1 1.0 5.0 399 428 - 1.59625 1 2 cbr 210 ------- 1 1.0 5.0 399 428 r 1.59709 3 2 ack 40 ------- 0 4.0 0.0 10 401 + 1.59709 2 0 ack 40 ------- 0 4.0 0.0 10 401 - 1.59709 2 0 ack 40 ------- 0 4.0 0.0 10 401 r 1.59711 1 2 cbr 210 ------- 1 1.0 5.0 385 414 + 1.59711 2 3 cbr 210 ------- 1 1.0 5.0 385 414 r 1.59741 3 5 cbr 210 ------- 1 1.0 5.0 352 379 r 1.59781 2 3 cbr 210 ------- 1 1.0 5.0 368 396 + 1.59781 3 5 cbr 210 ------- 1 1.0 5.0 368 396 - 1.59781 3 5 cbr 210 ------- 1 1.0 5.0 368 396 - 1.59821 2 3 cbr 210 ------- 1 1.0 5.0 384 413 + 1.6 1 2 cbr 210 ------- 1 1.0 5.0 400 429 - 1.6 1 2 cbr 210 ------- 1 1.0 5.0 400 429 r 1.60077 3 5 cbr 210 ------- 1 1.0 5.0 353 380 r 1.60086 1 2 cbr 210 ------- 1 1.0 5.0 386 415 + 1.60086 2 3 cbr 210 ------- 1 1.0 5.0 386 415 r 1.60117 2 3 cbr 210 ------- 1 1.0 5.0 369 397 + 1.60117 3 5 cbr 210 ------- 1 1.0 5.0 369 397 - 1.60117 3 5 cbr 210 ------- 1 1.0 5.0 369 397 - 1.60157 2 3 cbr 210 ------- 1 1.0 5.0 385 414 + 1.60375 1 2 cbr 210 ------- 1 1.0 5.0 401 430 - 1.60375 1 2 cbr 210 ------- 1 1.0 5.0 401 430 r 1.60413 3 5 cbr 210 ------- 1 1.0 5.0 354 381 r 1.60453 2 3 cbr 210 ------- 1 1.0 5.0 370 398 + 1.60453 3 5 cbr 210 ------- 1 1.0 5.0 370 398 - 1.60453 3 5 cbr 210 ------- 1 1.0 5.0 370 398 r 1.60461 1 2 cbr 210 ------- 1 1.0 5.0 387 416 + 1.60461 2 3 cbr 210 ------- 1 1.0 5.0 387 416 - 1.60493 2 3 cbr 210 ------- 1 1.0 5.0 386 415 r 1.60749 3 5 cbr 210 ------- 1 1.0 5.0 355 382 + 1.6075 1 2 cbr 210 ------- 1 1.0 5.0 402 431 - 1.6075 1 2 cbr 210 ------- 1 1.0 5.0 402 431 r 1.60789 2 3 cbr 210 ------- 1 1.0 5.0 371 399 + 1.60789 3 5 cbr 210 ------- 1 1.0 5.0 371 399 - 1.60789 3 5 cbr 210 ------- 1 1.0 5.0 371 399 - 1.60829 2 3 cbr 210 ------- 1 1.0 5.0 387 416 r 1.60836 1 2 cbr 210 ------- 1 1.0 5.0 388 417 + 1.60836 2 3 cbr 210 ------- 1 1.0 5.0 388 417 r 1.61085 3 5 cbr 210 ------- 1 1.0 5.0 356 383 + 1.61125 1 2 cbr 210 ------- 1 1.0 5.0 403 432 - 1.61125 1 2 cbr 210 ------- 1 1.0 5.0 403 432 r 1.61125 2 3 cbr 210 ------- 1 1.0 5.0 372 400 + 1.61125 3 5 cbr 210 ------- 1 1.0 5.0 372 400 - 1.61125 3 5 cbr 210 ------- 1 1.0 5.0 372 400 - 1.61165 2 3 cbr 210 ------- 1 1.0 5.0 388 417 r 1.61211 1 2 cbr 210 ------- 1 1.0 5.0 389 418 + 1.61211 2 3 cbr 210 ------- 1 1.0 5.0 389 418 r 1.61421 3 5 cbr 210 ------- 1 1.0 5.0 357 385 r 1.61461 2 3 cbr 210 ------- 1 1.0 5.0 373 402 + 1.61461 3 5 cbr 210 ------- 1 1.0 5.0 373 402 - 1.61461 3 5 cbr 210 ------- 1 1.0 5.0 373 402 + 1.615 1 2 cbr 210 ------- 1 1.0 5.0 404 433 - 1.615 1 2 cbr 210 ------- 1 1.0 5.0 404 433 - 1.61501 2 3 cbr 210 ------- 1 1.0 5.0 389 418 r 1.61586 1 2 cbr 210 ------- 1 1.0 5.0 390 419 + 1.61586 2 3 cbr 210 ------- 1 1.0 5.0 390 419 r 1.61757 3 5 cbr 210 ------- 1 1.0 5.0 358 386 r 1.61797 2 3 cbr 210 ------- 1 1.0 5.0 374 403 + 1.61797 3 5 cbr 210 ------- 1 1.0 5.0 374 403 - 1.61797 3 5 cbr 210 ------- 1 1.0 5.0 374 403 - 1.61837 2 3 cbr 210 ------- 1 1.0 5.0 390 419 + 1.61875 1 2 cbr 210 ------- 1 1.0 5.0 405 434 - 1.61875 1 2 cbr 210 ------- 1 1.0 5.0 405 434 r 1.61961 1 2 cbr 210 ------- 1 1.0 5.0 391 420 + 1.61961 2 3 cbr 210 ------- 1 1.0 5.0 391 420 r 1.62093 3 5 cbr 210 ------- 1 1.0 5.0 359 387 r 1.62133 2 3 cbr 210 ------- 1 1.0 5.0 375 404 + 1.62133 3 5 cbr 210 ------- 1 1.0 5.0 375 404 - 1.62133 3 5 cbr 210 ------- 1 1.0 5.0 375 404 - 1.62173 2 3 cbr 210 ------- 1 1.0 5.0 391 420 + 1.6225 1 2 cbr 210 ------- 1 1.0 5.0 406 435 - 1.6225 1 2 cbr 210 ------- 1 1.0 5.0 406 435 r 1.62336 1 2 cbr 210 ------- 1 1.0 5.0 392 421 + 1.62336 2 3 cbr 210 ------- 1 1.0 5.0 392 421 r 1.62429 3 5 cbr 210 ------- 1 1.0 5.0 360 388 r 1.62469 2 3 cbr 210 ------- 1 1.0 5.0 376 405 + 1.62469 3 5 cbr 210 ------- 1 1.0 5.0 376 405 - 1.62469 3 5 cbr 210 ------- 1 1.0 5.0 376 405 - 1.62509 2 3 cbr 210 ------- 1 1.0 5.0 392 421 + 1.62625 1 2 cbr 210 ------- 1 1.0 5.0 407 436 - 1.62625 1 2 cbr 210 ------- 1 1.0 5.0 407 436 r 1.62711 1 2 cbr 210 ------- 1 1.0 5.0 393 422 + 1.62711 2 3 cbr 210 ------- 1 1.0 5.0 393 422 r 1.62765 3 5 cbr 210 ------- 1 1.0 5.0 361 389 r 1.62805 2 3 cbr 210 ------- 1 1.0 5.0 377 406 + 1.62805 3 5 cbr 210 ------- 1 1.0 5.0 377 406 - 1.62805 3 5 cbr 210 ------- 1 1.0 5.0 377 406 - 1.62845 2 3 cbr 210 ------- 1 1.0 5.0 393 422 + 1.63 1 2 cbr 210 ------- 1 1.0 5.0 408 437 - 1.63 1 2 cbr 210 ------- 1 1.0 5.0 408 437 r 1.63086 1 2 cbr 210 ------- 1 1.0 5.0 394 423 + 1.63086 2 3 cbr 210 ------- 1 1.0 5.0 394 423 r 1.63101 3 5 cbr 210 ------- 1 1.0 5.0 362 390 r 1.63141 2 3 cbr 210 ------- 1 1.0 5.0 378 407 + 1.63141 3 5 cbr 210 ------- 1 1.0 5.0 378 407 - 1.63141 3 5 cbr 210 ------- 1 1.0 5.0 378 407 - 1.63181 2 3 cbr 210 ------- 1 1.0 5.0 394 423 + 1.63375 1 2 cbr 210 ------- 1 1.0 5.0 409 438 - 1.63375 1 2 cbr 210 ------- 1 1.0 5.0 409 438 r 1.63437 3 5 cbr 210 ------- 1 1.0 5.0 363 391 r 1.63461 1 2 cbr 210 ------- 1 1.0 5.0 395 424 + 1.63461 2 3 cbr 210 ------- 1 1.0 5.0 395 424 r 1.63477 2 3 cbr 210 ------- 1 1.0 5.0 379 408 + 1.63477 3 5 cbr 210 ------- 1 1.0 5.0 379 408 - 1.63477 3 5 cbr 210 ------- 1 1.0 5.0 379 408 - 1.63517 2 3 cbr 210 ------- 1 1.0 5.0 395 424 + 1.6375 1 2 cbr 210 ------- 1 1.0 5.0 410 439 - 1.6375 1 2 cbr 210 ------- 1 1.0 5.0 410 439 r 1.63773 3 5 cbr 210 ------- 1 1.0 5.0 364 392 r 1.63813 2 3 cbr 210 ------- 1 1.0 5.0 380 409 + 1.63813 3 5 cbr 210 ------- 1 1.0 5.0 380 409 - 1.63813 3 5 cbr 210 ------- 1 1.0 5.0 380 409 r 1.63836 1 2 cbr 210 ------- 1 1.0 5.0 396 425 + 1.63836 2 3 cbr 210 ------- 1 1.0 5.0 396 425 - 1.63853 2 3 cbr 210 ------- 1 1.0 5.0 396 425 r 1.64109 3 5 cbr 210 ------- 1 1.0 5.0 365 393 + 1.64125 1 2 cbr 210 ------- 1 1.0 5.0 411 440 - 1.64125 1 2 cbr 210 ------- 1 1.0 5.0 411 440 r 1.64149 2 3 cbr 210 ------- 1 1.0 5.0 381 410 + 1.64149 3 5 cbr 210 ------- 1 1.0 5.0 381 410 - 1.64149 3 5 cbr 210 ------- 1 1.0 5.0 381 410 r 1.64211 1 2 cbr 210 ------- 1 1.0 5.0 397 426 + 1.64211 2 3 cbr 210 ------- 1 1.0 5.0 397 426 - 1.64211 2 3 cbr 210 ------- 1 1.0 5.0 397 426 r 1.64445 3 5 cbr 210 ------- 1 1.0 5.0 366 394 r 1.64485 2 3 cbr 210 ------- 1 1.0 5.0 382 411 + 1.64485 3 5 cbr 210 ------- 1 1.0 5.0 382 411 - 1.64485 3 5 cbr 210 ------- 1 1.0 5.0 382 411 + 1.645 1 2 cbr 210 ------- 1 1.0 5.0 412 441 - 1.645 1 2 cbr 210 ------- 1 1.0 5.0 412 441 r 1.64586 1 2 cbr 210 ------- 1 1.0 5.0 398 427 + 1.64586 2 3 cbr 210 ------- 1 1.0 5.0 398 427 - 1.64586 2 3 cbr 210 ------- 1 1.0 5.0 398 427 r 1.64773 2 0 ack 40 ------- 0 4.0 0.0 10 401 + 1.64773 0 2 tcp 1000 ------- 0 0.0 4.0 11 442 - 1.64773 0 2 tcp 1000 ------- 0 0.0 4.0 11 442 + 1.64773 0 2 tcp 1000 ------- 0 0.0 4.0 12 443 + 1.64773 0 2 tcp 1000 ------- 0 0.0 4.0 13 444 + 1.64773 0 2 tcp 1000 ------- 0 0.0 4.0 14 445 r 1.64781 3 5 cbr 210 ------- 1 1.0 5.0 367 395 r 1.64821 2 3 cbr 210 ------- 1 1.0 5.0 383 412 + 1.64821 3 5 cbr 210 ------- 1 1.0 5.0 383 412 - 1.64821 3 5 cbr 210 ------- 1 1.0 5.0 383 412 + 1.64875 1 2 cbr 210 ------- 1 1.0 5.0 413 446 - 1.64875 1 2 cbr 210 ------- 1 1.0 5.0 413 446 r 1.64961 1 2 cbr 210 ------- 1 1.0 5.0 399 428 + 1.64961 2 3 cbr 210 ------- 1 1.0 5.0 399 428 - 1.64961 2 3 cbr 210 ------- 1 1.0 5.0 399 428 r 1.65117 3 5 cbr 210 ------- 1 1.0 5.0 368 396 r 1.65157 2 3 cbr 210 ------- 1 1.0 5.0 384 413 + 1.65157 3 5 cbr 210 ------- 1 1.0 5.0 384 413 - 1.65157 3 5 cbr 210 ------- 1 1.0 5.0 384 413 + 1.6525 1 2 cbr 210 ------- 1 1.0 5.0 414 447 - 1.6525 1 2 cbr 210 ------- 1 1.0 5.0 414 447 r 1.65336 1 2 cbr 210 ------- 1 1.0 5.0 400 429 + 1.65336 2 3 cbr 210 ------- 1 1.0 5.0 400 429 - 1.65336 2 3 cbr 210 ------- 1 1.0 5.0 400 429 r 1.65453 3 5 cbr 210 ------- 1 1.0 5.0 369 397 r 1.65493 2 3 cbr 210 ------- 1 1.0 5.0 385 414 + 1.65493 3 5 cbr 210 ------- 1 1.0 5.0 385 414 - 1.65493 3 5 cbr 210 ------- 1 1.0 5.0 385 414 + 1.65625 1 2 cbr 210 ------- 1 1.0 5.0 415 448 - 1.65625 1 2 cbr 210 ------- 1 1.0 5.0 415 448 r 1.65711 1 2 cbr 210 ------- 1 1.0 5.0 401 430 + 1.65711 2 3 cbr 210 ------- 1 1.0 5.0 401 430 - 1.65711 2 3 cbr 210 ------- 1 1.0 5.0 401 430 r 1.65789 3 5 cbr 210 ------- 1 1.0 5.0 370 398 r 1.65829 2 3 cbr 210 ------- 1 1.0 5.0 386 415 + 1.65829 3 5 cbr 210 ------- 1 1.0 5.0 386 415 - 1.65829 3 5 cbr 210 ------- 1 1.0 5.0 386 415 + 1.66 1 2 cbr 210 ------- 1 1.0 5.0 416 449 - 1.66 1 2 cbr 210 ------- 1 1.0 5.0 416 449 r 1.66086 1 2 cbr 210 ------- 1 1.0 5.0 402 431 + 1.66086 2 3 cbr 210 ------- 1 1.0 5.0 402 431 - 1.66086 2 3 cbr 210 ------- 1 1.0 5.0 402 431 r 1.66125 3 5 cbr 210 ------- 1 1.0 5.0 371 399 r 1.66165 2 3 cbr 210 ------- 1 1.0 5.0 387 416 + 1.66165 3 5 cbr 210 ------- 1 1.0 5.0 387 416 - 1.66165 3 5 cbr 210 ------- 1 1.0 5.0 387 416 - 1.66373 0 2 tcp 1000 ------- 0 0.0 4.0 12 443 + 1.66375 1 2 cbr 210 ------- 1 1.0 5.0 417 450 - 1.66375 1 2 cbr 210 ------- 1 1.0 5.0 417 450 r 1.66461 1 2 cbr 210 ------- 1 1.0 5.0 403 432 + 1.66461 2 3 cbr 210 ------- 1 1.0 5.0 403 432 - 1.66461 2 3 cbr 210 ------- 1 1.0 5.0 403 432 r 1.66461 3 5 cbr 210 ------- 1 1.0 5.0 372 400 r 1.66501 2 3 cbr 210 ------- 1 1.0 5.0 388 417 + 1.66501 3 5 cbr 210 ------- 1 1.0 5.0 388 417 - 1.66501 3 5 cbr 210 ------- 1 1.0 5.0 388 417 + 1.6675 1 2 cbr 210 ------- 1 1.0 5.0 418 451 - 1.6675 1 2 cbr 210 ------- 1 1.0 5.0 418 451 r 1.66797 3 5 cbr 210 ------- 1 1.0 5.0 373 402 r 1.66836 1 2 cbr 210 ------- 1 1.0 5.0 404 433 + 1.66836 2 3 cbr 210 ------- 1 1.0 5.0 404 433 - 1.66836 2 3 cbr 210 ------- 1 1.0 5.0 404 433 r 1.66837 2 3 cbr 210 ------- 1 1.0 5.0 389 418 + 1.66837 3 5 cbr 210 ------- 1 1.0 5.0 389 418 - 1.66837 3 5 cbr 210 ------- 1 1.0 5.0 389 418 + 1.67125 1 2 cbr 210 ------- 1 1.0 5.0 419 452 - 1.67125 1 2 cbr 210 ------- 1 1.0 5.0 419 452 r 1.67133 3 5 cbr 210 ------- 1 1.0 5.0 374 403 r 1.67173 2 3 cbr 210 ------- 1 1.0 5.0 390 419 + 1.67173 3 5 cbr 210 ------- 1 1.0 5.0 390 419 - 1.67173 3 5 cbr 210 ------- 1 1.0 5.0 390 419 r 1.67211 1 2 cbr 210 ------- 1 1.0 5.0 405 434 + 1.67211 2 3 cbr 210 ------- 1 1.0 5.0 405 434 - 1.67211 2 3 cbr 210 ------- 1 1.0 5.0 405 434 r 1.67469 3 5 cbr 210 ------- 1 1.0 5.0 375 404 + 1.675 1 2 cbr 210 ------- 1 1.0 5.0 420 453 - 1.675 1 2 cbr 210 ------- 1 1.0 5.0 420 453 r 1.67509 2 3 cbr 210 ------- 1 1.0 5.0 391 420 + 1.67509 3 5 cbr 210 ------- 1 1.0 5.0 391 420 - 1.67509 3 5 cbr 210 ------- 1 1.0 5.0 391 420 r 1.67586 1 2 cbr 210 ------- 1 1.0 5.0 406 435 + 1.67586 2 3 cbr 210 ------- 1 1.0 5.0 406 435 - 1.67586 2 3 cbr 210 ------- 1 1.0 5.0 406 435 r 1.67805 3 5 cbr 210 ------- 1 1.0 5.0 376 405 r 1.67845 2 3 cbr 210 ------- 1 1.0 5.0 392 421 + 1.67845 3 5 cbr 210 ------- 1 1.0 5.0 392 421 - 1.67845 3 5 cbr 210 ------- 1 1.0 5.0 392 421 + 1.67875 1 2 cbr 210 ------- 1 1.0 5.0 421 454 - 1.67875 1 2 cbr 210 ------- 1 1.0 5.0 421 454 r 1.67961 1 2 cbr 210 ------- 1 1.0 5.0 407 436 + 1.67961 2 3 cbr 210 ------- 1 1.0 5.0 407 436 - 1.67961 2 3 cbr 210 ------- 1 1.0 5.0 407 436 - 1.67973 0 2 tcp 1000 ------- 0 0.0 4.0 13 444 r 1.68141 3 5 cbr 210 ------- 1 1.0 5.0 377 406 r 1.68181 2 3 cbr 210 ------- 1 1.0 5.0 393 422 + 1.68181 3 5 cbr 210 ------- 1 1.0 5.0 393 422 - 1.68181 3 5 cbr 210 ------- 1 1.0 5.0 393 422 + 1.6825 1 2 cbr 210 ------- 1 1.0 5.0 422 455 - 1.6825 1 2 cbr 210 ------- 1 1.0 5.0 422 455 r 1.68336 1 2 cbr 210 ------- 1 1.0 5.0 408 437 + 1.68336 2 3 cbr 210 ------- 1 1.0 5.0 408 437 - 1.68336 2 3 cbr 210 ------- 1 1.0 5.0 408 437 r 1.68477 3 5 cbr 210 ------- 1 1.0 5.0 378 407 r 1.68517 2 3 cbr 210 ------- 1 1.0 5.0 394 423 + 1.68517 3 5 cbr 210 ------- 1 1.0 5.0 394 423 - 1.68517 3 5 cbr 210 ------- 1 1.0 5.0 394 423 + 1.68625 1 2 cbr 210 ------- 1 1.0 5.0 423 456 - 1.68625 1 2 cbr 210 ------- 1 1.0 5.0 423 456 r 1.68711 1 2 cbr 210 ------- 1 1.0 5.0 409 438 + 1.68711 2 3 cbr 210 ------- 1 1.0 5.0 409 438 - 1.68711 2 3 cbr 210 ------- 1 1.0 5.0 409 438 r 1.68813 3 5 cbr 210 ------- 1 1.0 5.0 379 408 r 1.68853 2 3 cbr 210 ------- 1 1.0 5.0 395 424 + 1.68853 3 5 cbr 210 ------- 1 1.0 5.0 395 424 - 1.68853 3 5 cbr 210 ------- 1 1.0 5.0 395 424 + 1.69 1 2 cbr 210 ------- 1 1.0 5.0 424 457 - 1.69 1 2 cbr 210 ------- 1 1.0 5.0 424 457 r 1.69086 1 2 cbr 210 ------- 1 1.0 5.0 410 439 + 1.69086 2 3 cbr 210 ------- 1 1.0 5.0 410 439 - 1.69086 2 3 cbr 210 ------- 1 1.0 5.0 410 439 r 1.69149 3 5 cbr 210 ------- 1 1.0 5.0 380 409 r 1.69189 2 3 cbr 210 ------- 1 1.0 5.0 396 425 + 1.69189 3 5 cbr 210 ------- 1 1.0 5.0 396 425 - 1.69189 3 5 cbr 210 ------- 1 1.0 5.0 396 425 + 1.69375 1 2 cbr 210 ------- 1 1.0 5.0 425 458 - 1.69375 1 2 cbr 210 ------- 1 1.0 5.0 425 458 r 1.69461 1 2 cbr 210 ------- 1 1.0 5.0 411 440 + 1.69461 2 3 cbr 210 ------- 1 1.0 5.0 411 440 - 1.69461 2 3 cbr 210 ------- 1 1.0 5.0 411 440 r 1.69485 3 5 cbr 210 ------- 1 1.0 5.0 381 410 r 1.69547 2 3 cbr 210 ------- 1 1.0 5.0 397 426 + 1.69547 3 5 cbr 210 ------- 1 1.0 5.0 397 426 - 1.69547 3 5 cbr 210 ------- 1 1.0 5.0 397 426 - 1.69573 0 2 tcp 1000 ------- 0 0.0 4.0 14 445 + 1.6975 1 2 cbr 210 ------- 1 1.0 5.0 426 459 - 1.6975 1 2 cbr 210 ------- 1 1.0 5.0 426 459 r 1.69821 3 5 cbr 210 ------- 1 1.0 5.0 382 411 r 1.69836 1 2 cbr 210 ------- 1 1.0 5.0 412 441 + 1.69836 2 3 cbr 210 ------- 1 1.0 5.0 412 441 - 1.69836 2 3 cbr 210 ------- 1 1.0 5.0 412 441 r 1.69922 2 3 cbr 210 ------- 1 1.0 5.0 398 427 + 1.69922 3 5 cbr 210 ------- 1 1.0 5.0 398 427 - 1.69922 3 5 cbr 210 ------- 1 1.0 5.0 398 427 + 1.70125 1 2 cbr 210 ------- 1 1.0 5.0 427 460 - 1.70125 1 2 cbr 210 ------- 1 1.0 5.0 427 460 r 1.70157 3 5 cbr 210 ------- 1 1.0 5.0 383 412 r 1.70211 1 2 cbr 210 ------- 1 1.0 5.0 413 446 + 1.70211 2 3 cbr 210 ------- 1 1.0 5.0 413 446 - 1.70211 2 3 cbr 210 ------- 1 1.0 5.0 413 446 r 1.70297 2 3 cbr 210 ------- 1 1.0 5.0 399 428 + 1.70297 3 5 cbr 210 ------- 1 1.0 5.0 399 428 - 1.70297 3 5 cbr 210 ------- 1 1.0 5.0 399 428 r 1.70493 3 5 cbr 210 ------- 1 1.0 5.0 384 413 + 1.705 1 2 cbr 210 ------- 1 1.0 5.0 428 461 - 1.705 1 2 cbr 210 ------- 1 1.0 5.0 428 461 r 1.70586 1 2 cbr 210 ------- 1 1.0 5.0 414 447 + 1.70586 2 3 cbr 210 ------- 1 1.0 5.0 414 447 - 1.70586 2 3 cbr 210 ------- 1 1.0 5.0 414 447 r 1.70672 2 3 cbr 210 ------- 1 1.0 5.0 400 429 + 1.70672 3 5 cbr 210 ------- 1 1.0 5.0 400 429 - 1.70672 3 5 cbr 210 ------- 1 1.0 5.0 400 429 r 1.70829 3 5 cbr 210 ------- 1 1.0 5.0 385 414 + 1.70875 1 2 cbr 210 ------- 1 1.0 5.0 429 462 - 1.70875 1 2 cbr 210 ------- 1 1.0 5.0 429 462 r 1.70961 1 2 cbr 210 ------- 1 1.0 5.0 415 448 + 1.70961 2 3 cbr 210 ------- 1 1.0 5.0 415 448 - 1.70961 2 3 cbr 210 ------- 1 1.0 5.0 415 448 r 1.71047 2 3 cbr 210 ------- 1 1.0 5.0 401 430 + 1.71047 3 5 cbr 210 ------- 1 1.0 5.0 401 430 - 1.71047 3 5 cbr 210 ------- 1 1.0 5.0 401 430 r 1.71165 3 5 cbr 210 ------- 1 1.0 5.0 386 415 + 1.7125 1 2 cbr 210 ------- 1 1.0 5.0 430 463 - 1.7125 1 2 cbr 210 ------- 1 1.0 5.0 430 463 r 1.71336 1 2 cbr 210 ------- 1 1.0 5.0 416 449 + 1.71336 2 3 cbr 210 ------- 1 1.0 5.0 416 449 - 1.71336 2 3 cbr 210 ------- 1 1.0 5.0 416 449 r 1.71373 0 2 tcp 1000 ------- 0 0.0 4.0 11 442 + 1.71373 2 3 tcp 1000 ------- 0 0.0 4.0 11 442 r 1.71422 2 3 cbr 210 ------- 1 1.0 5.0 402 431 + 1.71422 3 5 cbr 210 ------- 1 1.0 5.0 402 431 - 1.71422 3 5 cbr 210 ------- 1 1.0 5.0 402 431 r 1.71501 3 5 cbr 210 ------- 1 1.0 5.0 387 416 + 1.71625 1 2 cbr 210 ------- 1 1.0 5.0 431 464 - 1.71625 1 2 cbr 210 ------- 1 1.0 5.0 431 464 - 1.71672 2 3 tcp 1000 ------- 0 0.0 4.0 11 442 r 1.71711 1 2 cbr 210 ------- 1 1.0 5.0 417 450 + 1.71711 2 3 cbr 210 ------- 1 1.0 5.0 417 450 r 1.71797 2 3 cbr 210 ------- 1 1.0 5.0 403 432 + 1.71797 3 5 cbr 210 ------- 1 1.0 5.0 403 432 - 1.71797 3 5 cbr 210 ------- 1 1.0 5.0 403 432 r 1.71837 3 5 cbr 210 ------- 1 1.0 5.0 388 417 + 1.72 1 2 cbr 210 ------- 1 1.0 5.0 432 465 - 1.72 1 2 cbr 210 ------- 1 1.0 5.0 432 465 r 1.72086 1 2 cbr 210 ------- 1 1.0 5.0 418 451 + 1.72086 2 3 cbr 210 ------- 1 1.0 5.0 418 451 r 1.72172 2 3 cbr 210 ------- 1 1.0 5.0 404 433 + 1.72172 3 5 cbr 210 ------- 1 1.0 5.0 404 433 - 1.72172 3 5 cbr 210 ------- 1 1.0 5.0 404 433 r 1.72173 3 5 cbr 210 ------- 1 1.0 5.0 389 418 + 1.72375 1 2 cbr 210 ------- 1 1.0 5.0 433 466 - 1.72375 1 2 cbr 210 ------- 1 1.0 5.0 433 466 r 1.72461 1 2 cbr 210 ------- 1 1.0 5.0 419 452 + 1.72461 2 3 cbr 210 ------- 1 1.0 5.0 419 452 r 1.72509 3 5 cbr 210 ------- 1 1.0 5.0 390 419 r 1.72547 2 3 cbr 210 ------- 1 1.0 5.0 405 434 + 1.72547 3 5 cbr 210 ------- 1 1.0 5.0 405 434 - 1.72547 3 5 cbr 210 ------- 1 1.0 5.0 405 434 + 1.7275 1 2 cbr 210 ------- 1 1.0 5.0 434 467 - 1.7275 1 2 cbr 210 ------- 1 1.0 5.0 434 467 r 1.72836 1 2 cbr 210 ------- 1 1.0 5.0 420 453 + 1.72836 2 3 cbr 210 ------- 1 1.0 5.0 420 453 r 1.72845 3 5 cbr 210 ------- 1 1.0 5.0 391 420 r 1.72922 2 3 cbr 210 ------- 1 1.0 5.0 406 435 + 1.72922 3 5 cbr 210 ------- 1 1.0 5.0 406 435 - 1.72922 3 5 cbr 210 ------- 1 1.0 5.0 406 435 r 1.72973 0 2 tcp 1000 ------- 0 0.0 4.0 12 443 + 1.72973 2 3 tcp 1000 ------- 0 0.0 4.0 12 443 + 1.73125 1 2 cbr 210 ------- 1 1.0 5.0 435 468 - 1.73125 1 2 cbr 210 ------- 1 1.0 5.0 435 468 r 1.73181 3 5 cbr 210 ------- 1 1.0 5.0 392 421 r 1.73211 1 2 cbr 210 ------- 1 1.0 5.0 421 454 + 1.73211 2 3 cbr 210 ------- 1 1.0 5.0 421 454 - 1.73272 2 3 cbr 210 ------- 1 1.0 5.0 417 450 r 1.73297 2 3 cbr 210 ------- 1 1.0 5.0 407 436 + 1.73297 3 5 cbr 210 ------- 1 1.0 5.0 407 436 - 1.73297 3 5 cbr 210 ------- 1 1.0 5.0 407 436 + 1.735 1 2 cbr 210 ------- 1 1.0 5.0 436 469 - 1.735 1 2 cbr 210 ------- 1 1.0 5.0 436 469 r 1.73517 3 5 cbr 210 ------- 1 1.0 5.0 393 422 r 1.73586 1 2 cbr 210 ------- 1 1.0 5.0 422 455 + 1.73586 2 3 cbr 210 ------- 1 1.0 5.0 422 455 - 1.73608 2 3 cbr 210 ------- 1 1.0 5.0 418 451 r 1.73672 2 3 cbr 210 ------- 1 1.0 5.0 408 437 + 1.73672 3 5 cbr 210 ------- 1 1.0 5.0 408 437 - 1.73672 3 5 cbr 210 ------- 1 1.0 5.0 408 437 r 1.73853 3 5 cbr 210 ------- 1 1.0 5.0 394 423 + 1.73875 1 2 cbr 210 ------- 1 1.0 5.0 437 470 - 1.73875 1 2 cbr 210 ------- 1 1.0 5.0 437 470 - 1.73944 2 3 cbr 210 ------- 1 1.0 5.0 419 452 r 1.73961 1 2 cbr 210 ------- 1 1.0 5.0 423 456 + 1.73961 2 3 cbr 210 ------- 1 1.0 5.0 423 456 r 1.74047 2 3 cbr 210 ------- 1 1.0 5.0 409 438 + 1.74047 3 5 cbr 210 ------- 1 1.0 5.0 409 438 - 1.74047 3 5 cbr 210 ------- 1 1.0 5.0 409 438 r 1.74189 3 5 cbr 210 ------- 1 1.0 5.0 395 424 + 1.7425 1 2 cbr 210 ------- 1 1.0 5.0 438 471 - 1.7425 1 2 cbr 210 ------- 1 1.0 5.0 438 471 - 1.7428 2 3 cbr 210 ------- 1 1.0 5.0 420 453 r 1.74336 1 2 cbr 210 ------- 1 1.0 5.0 424 457 + 1.74336 2 3 cbr 210 ------- 1 1.0 5.0 424 457 r 1.74422 2 3 cbr 210 ------- 1 1.0 5.0 410 439 + 1.74422 3 5 cbr 210 ------- 1 1.0 5.0 410 439 - 1.74422 3 5 cbr 210 ------- 1 1.0 5.0 410 439 r 1.74525 3 5 cbr 210 ------- 1 1.0 5.0 396 425 r 1.74573 0 2 tcp 1000 ------- 0 0.0 4.0 13 444 + 1.74573 2 3 tcp 1000 ------- 0 0.0 4.0 13 444 - 1.74616 2 3 tcp 1000 ------- 0 0.0 4.0 12 443 + 1.74625 1 2 cbr 210 ------- 1 1.0 5.0 439 472 - 1.74625 1 2 cbr 210 ------- 1 1.0 5.0 439 472 r 1.74711 1 2 cbr 210 ------- 1 1.0 5.0 425 458 + 1.74711 2 3 cbr 210 ------- 1 1.0 5.0 425 458 r 1.74797 2 3 cbr 210 ------- 1 1.0 5.0 411 440 + 1.74797 3 5 cbr 210 ------- 1 1.0 5.0 411 440 - 1.74797 3 5 cbr 210 ------- 1 1.0 5.0 411 440 r 1.74883 3 5 cbr 210 ------- 1 1.0 5.0 397 426 + 1.75 1 2 cbr 210 ------- 1 1.0 5.0 440 473 - 1.75 1 2 cbr 210 ------- 1 1.0 5.0 440 473 r 1.75086 1 2 cbr 210 ------- 1 1.0 5.0 426 459 + 1.75086 2 3 cbr 210 ------- 1 1.0 5.0 426 459 r 1.75172 2 3 cbr 210 ------- 1 1.0 5.0 412 441 + 1.75172 3 5 cbr 210 ------- 1 1.0 5.0 412 441 - 1.75172 3 5 cbr 210 ------- 1 1.0 5.0 412 441 r 1.75258 3 5 cbr 210 ------- 1 1.0 5.0 398 427 + 1.75375 1 2 cbr 210 ------- 1 1.0 5.0 441 474 - 1.75375 1 2 cbr 210 ------- 1 1.0 5.0 441 474 r 1.75461 1 2 cbr 210 ------- 1 1.0 5.0 427 460 + 1.75461 2 3 cbr 210 ------- 1 1.0 5.0 427 460 r 1.75547 2 3 cbr 210 ------- 1 1.0 5.0 413 446 + 1.75547 3 5 cbr 210 ------- 1 1.0 5.0 413 446 - 1.75547 3 5 cbr 210 ------- 1 1.0 5.0 413 446 r 1.75633 3 5 cbr 210 ------- 1 1.0 5.0 399 428 + 1.7575 1 2 cbr 210 ------- 1 1.0 5.0 442 475 - 1.7575 1 2 cbr 210 ------- 1 1.0 5.0 442 475 r 1.75836 1 2 cbr 210 ------- 1 1.0 5.0 428 461 + 1.75836 2 3 cbr 210 ------- 1 1.0 5.0 428 461 r 1.75922 2 3 cbr 210 ------- 1 1.0 5.0 414 447 + 1.75922 3 5 cbr 210 ------- 1 1.0 5.0 414 447 - 1.75922 3 5 cbr 210 ------- 1 1.0 5.0 414 447 r 1.76008 3 5 cbr 210 ------- 1 1.0 5.0 400 429 + 1.76125 1 2 cbr 210 ------- 1 1.0 5.0 443 476 - 1.76125 1 2 cbr 210 ------- 1 1.0 5.0 443 476 r 1.76173 0 2 tcp 1000 ------- 0 0.0 4.0 14 445 + 1.76173 2 3 tcp 1000 ------- 0 0.0 4.0 14 445 d 1.76173 2 3 tcp 1000 ------- 0 0.0 4.0 14 445 r 1.76211 1 2 cbr 210 ------- 1 1.0 5.0 429 462 + 1.76211 2 3 cbr 210 ------- 1 1.0 5.0 429 462 d 1.76211 2 3 cbr 210 ------- 1 1.0 5.0 429 462 - 1.76216 2 3 cbr 210 ------- 1 1.0 5.0 421 454 r 1.76297 2 3 cbr 210 ------- 1 1.0 5.0 415 448 + 1.76297 3 5 cbr 210 ------- 1 1.0 5.0 415 448 - 1.76297 3 5 cbr 210 ------- 1 1.0 5.0 415 448 r 1.76383 3 5 cbr 210 ------- 1 1.0 5.0 401 430 + 1.765 1 2 cbr 210 ------- 1 1.0 5.0 444 477 - 1.765 1 2 cbr 210 ------- 1 1.0 5.0 444 477 - 1.76552 2 3 cbr 210 ------- 1 1.0 5.0 422 455 r 1.76586 1 2 cbr 210 ------- 1 1.0 5.0 430 463 + 1.76586 2 3 cbr 210 ------- 1 1.0 5.0 430 463 r 1.76672 2 3 cbr 210 ------- 1 1.0 5.0 416 449 + 1.76672 3 5 cbr 210 ------- 1 1.0 5.0 416 449 - 1.76672 3 5 cbr 210 ------- 1 1.0 5.0 416 449 r 1.76758 3 5 cbr 210 ------- 1 1.0 5.0 402 431 + 1.76875 1 2 cbr 210 ------- 1 1.0 5.0 445 478 - 1.76875 1 2 cbr 210 ------- 1 1.0 5.0 445 478 - 1.76888 2 3 cbr 210 ------- 1 1.0 5.0 423 456 r 1.76961 1 2 cbr 210 ------- 1 1.0 5.0 431 464 + 1.76961 2 3 cbr 210 ------- 1 1.0 5.0 431 464 r 1.77133 3 5 cbr 210 ------- 1 1.0 5.0 403 432 - 1.77224 2 3 cbr 210 ------- 1 1.0 5.0 424 457 + 1.7725 1 2 cbr 210 ------- 1 1.0 5.0 446 479 - 1.7725 1 2 cbr 210 ------- 1 1.0 5.0 446 479 r 1.77336 1 2 cbr 210 ------- 1 1.0 5.0 432 465 + 1.77336 2 3 cbr 210 ------- 1 1.0 5.0 432 465 r 1.77508 3 5 cbr 210 ------- 1 1.0 5.0 404 433 - 1.7756 2 3 tcp 1000 ------- 0 0.0 4.0 13 444 + 1.77625 1 2 cbr 210 ------- 1 1.0 5.0 447 480 - 1.77625 1 2 cbr 210 ------- 1 1.0 5.0 447 480 r 1.77711 1 2 cbr 210 ------- 1 1.0 5.0 433 466 + 1.77711 2 3 cbr 210 ------- 1 1.0 5.0 433 466 r 1.77883 3 5 cbr 210 ------- 1 1.0 5.0 405 434 + 1.78 1 2 cbr 210 ------- 1 1.0 5.0 448 481 - 1.78 1 2 cbr 210 ------- 1 1.0 5.0 448 481 r 1.78086 1 2 cbr 210 ------- 1 1.0 5.0 434 467 + 1.78086 2 3 cbr 210 ------- 1 1.0 5.0 434 467 r 1.78258 3 5 cbr 210 ------- 1 1.0 5.0 406 435 r 1.78272 2 3 tcp 1000 ------- 0 0.0 4.0 11 442 + 1.78272 3 4 tcp 1000 ------- 0 0.0 4.0 11 442 - 1.78272 3 4 tcp 1000 ------- 0 0.0 4.0 11 442 + 1.78375 1 2 cbr 210 ------- 1 1.0 5.0 449 482 - 1.78375 1 2 cbr 210 ------- 1 1.0 5.0 449 482 r 1.78461 1 2 cbr 210 ------- 1 1.0 5.0 435 468 + 1.78461 2 3 cbr 210 ------- 1 1.0 5.0 435 468 d 1.78461 2 3 cbr 210 ------- 1 1.0 5.0 435 468 r 1.78608 2 3 cbr 210 ------- 1 1.0 5.0 417 450 + 1.78608 3 5 cbr 210 ------- 1 1.0 5.0 417 450 - 1.78608 3 5 cbr 210 ------- 1 1.0 5.0 417 450 r 1.78633 3 5 cbr 210 ------- 1 1.0 5.0 407 436 + 1.7875 1 2 cbr 210 ------- 1 1.0 5.0 450 483 - 1.7875 1 2 cbr 210 ------- 1 1.0 5.0 450 483 r 1.78836 1 2 cbr 210 ------- 1 1.0 5.0 436 469 + 1.78836 2 3 cbr 210 ------- 1 1.0 5.0 436 469 d 1.78836 2 3 cbr 210 ------- 1 1.0 5.0 436 469 r 1.78944 2 3 cbr 210 ------- 1 1.0 5.0 418 451 + 1.78944 3 5 cbr 210 ------- 1 1.0 5.0 418 451 - 1.78944 3 5 cbr 210 ------- 1 1.0 5.0 418 451 r 1.79008 3 5 cbr 210 ------- 1 1.0 5.0 408 437 + 1.79125 1 2 cbr 210 ------- 1 1.0 5.0 451 484 - 1.79125 1 2 cbr 210 ------- 1 1.0 5.0 451 484 - 1.7916 2 3 cbr 210 ------- 1 1.0 5.0 425 458 r 1.79211 1 2 cbr 210 ------- 1 1.0 5.0 437 470 + 1.79211 2 3 cbr 210 ------- 1 1.0 5.0 437 470 r 1.7928 2 3 cbr 210 ------- 1 1.0 5.0 419 452 + 1.7928 3 5 cbr 210 ------- 1 1.0 5.0 419 452 - 1.7928 3 5 cbr 210 ------- 1 1.0 5.0 419 452 r 1.79383 3 5 cbr 210 ------- 1 1.0 5.0 409 438 - 1.79496 2 3 cbr 210 ------- 1 1.0 5.0 426 459 + 1.795 1 2 cbr 210 ------- 1 1.0 5.0 452 485 - 1.795 1 2 cbr 210 ------- 1 1.0 5.0 452 485 r 1.79586 1 2 cbr 210 ------- 1 1.0 5.0 438 471 + 1.79586 2 3 cbr 210 ------- 1 1.0 5.0 438 471 r 1.79616 2 3 cbr 210 ------- 1 1.0 5.0 420 453 + 1.79616 3 5 cbr 210 ------- 1 1.0 5.0 420 453 - 1.79616 3 5 cbr 210 ------- 1 1.0 5.0 420 453 r 1.79758 3 5 cbr 210 ------- 1 1.0 5.0 410 439 - 1.79832 2 3 cbr 210 ------- 1 1.0 5.0 427 460 + 1.79875 1 2 cbr 210 ------- 1 1.0 5.0 453 486 - 1.79875 1 2 cbr 210 ------- 1 1.0 5.0 453 486 r 1.79961 1 2 cbr 210 ------- 1 1.0 5.0 439 472 + 1.79961 2 3 cbr 210 ------- 1 1.0 5.0 439 472 r 1.80133 3 5 cbr 210 ------- 1 1.0 5.0 411 440 - 1.80168 2 3 cbr 210 ------- 1 1.0 5.0 428 461 + 1.8025 1 2 cbr 210 ------- 1 1.0 5.0 454 487 - 1.8025 1 2 cbr 210 ------- 1 1.0 5.0 454 487 r 1.80336 1 2 cbr 210 ------- 1 1.0 5.0 440 473 + 1.80336 2 3 cbr 210 ------- 1 1.0 5.0 440 473 - 1.80504 2 3 cbr 210 ------- 1 1.0 5.0 430 463 r 1.80508 3 5 cbr 210 ------- 1 1.0 5.0 412 441 + 1.80625 1 2 cbr 210 ------- 1 1.0 5.0 455 488 - 1.80625 1 2 cbr 210 ------- 1 1.0 5.0 455 488 r 1.80711 1 2 cbr 210 ------- 1 1.0 5.0 441 474 + 1.80711 2 3 cbr 210 ------- 1 1.0 5.0 441 474 - 1.8084 2 3 cbr 210 ------- 1 1.0 5.0 431 464 r 1.80883 3 5 cbr 210 ------- 1 1.0 5.0 413 446 + 1.81 1 2 cbr 210 ------- 1 1.0 5.0 456 489 - 1.81 1 2 cbr 210 ------- 1 1.0 5.0 456 489 r 1.81086 1 2 cbr 210 ------- 1 1.0 5.0 442 475 + 1.81086 2 3 cbr 210 ------- 1 1.0 5.0 442 475 - 1.81176 2 3 cbr 210 ------- 1 1.0 5.0 432 465 r 1.81216 2 3 tcp 1000 ------- 0 0.0 4.0 12 443 + 1.81216 3 4 tcp 1000 ------- 0 0.0 4.0 12 443 - 1.81216 3 4 tcp 1000 ------- 0 0.0 4.0 12 443 r 1.81258 3 5 cbr 210 ------- 1 1.0 5.0 414 447 + 1.81375 1 2 cbr 210 ------- 1 1.0 5.0 457 490 - 1.81375 1 2 cbr 210 ------- 1 1.0 5.0 457 490 r 1.81461 1 2 cbr 210 ------- 1 1.0 5.0 443 476 + 1.81461 2 3 cbr 210 ------- 1 1.0 5.0 443 476 - 1.81512 2 3 cbr 210 ------- 1 1.0 5.0 433 466 r 1.81552 2 3 cbr 210 ------- 1 1.0 5.0 421 454 + 1.81552 3 5 cbr 210 ------- 1 1.0 5.0 421 454 - 1.81552 3 5 cbr 210 ------- 1 1.0 5.0 421 454 r 1.81633 3 5 cbr 210 ------- 1 1.0 5.0 415 448 + 1.8175 1 2 cbr 210 ------- 1 1.0 5.0 458 491 - 1.8175 1 2 cbr 210 ------- 1 1.0 5.0 458 491 r 1.81836 1 2 cbr 210 ------- 1 1.0 5.0 444 477 + 1.81836 2 3 cbr 210 ------- 1 1.0 5.0 444 477 - 1.81848 2 3 cbr 210 ------- 1 1.0 5.0 434 467 r 1.81888 2 3 cbr 210 ------- 1 1.0 5.0 422 455 + 1.81888 3 5 cbr 210 ------- 1 1.0 5.0 422 455 - 1.81888 3 5 cbr 210 ------- 1 1.0 5.0 422 455 r 1.82008 3 5 cbr 210 ------- 1 1.0 5.0 416 449 + 1.82125 1 2 cbr 210 ------- 1 1.0 5.0 459 492 - 1.82125 1 2 cbr 210 ------- 1 1.0 5.0 459 492 - 1.82184 2 3 cbr 210 ------- 1 1.0 5.0 437 470 r 1.82211 1 2 cbr 210 ------- 1 1.0 5.0 445 478 + 1.82211 2 3 cbr 210 ------- 1 1.0 5.0 445 478 r 1.82224 2 3 cbr 210 ------- 1 1.0 5.0 423 456 + 1.82224 3 5 cbr 210 ------- 1 1.0 5.0 423 456 - 1.82224 3 5 cbr 210 ------- 1 1.0 5.0 423 456 + 1.825 1 2 cbr 210 ------- 1 1.0 5.0 460 493 - 1.825 1 2 cbr 210 ------- 1 1.0 5.0 460 493 - 1.8252 2 3 cbr 210 ------- 1 1.0 5.0 438 471 r 1.8256 2 3 cbr 210 ------- 1 1.0 5.0 424 457 + 1.8256 3 5 cbr 210 ------- 1 1.0 5.0 424 457 - 1.8256 3 5 cbr 210 ------- 1 1.0 5.0 424 457 r 1.82586 1 2 cbr 210 ------- 1 1.0 5.0 446 479 + 1.82586 2 3 cbr 210 ------- 1 1.0 5.0 446 479 - 1.82856 2 3 cbr 210 ------- 1 1.0 5.0 439 472 + 1.82875 1 2 cbr 210 ------- 1 1.0 5.0 461 494 - 1.82875 1 2 cbr 210 ------- 1 1.0 5.0 461 494 r 1.82961 1 2 cbr 210 ------- 1 1.0 5.0 447 480 + 1.82961 2 3 cbr 210 ------- 1 1.0 5.0 447 480 - 1.83192 2 3 cbr 210 ------- 1 1.0 5.0 440 473 + 1.8325 1 2 cbr 210 ------- 1 1.0 5.0 462 495 - 1.8325 1 2 cbr 210 ------- 1 1.0 5.0 462 495 r 1.83336 1 2 cbr 210 ------- 1 1.0 5.0 448 481 + 1.83336 2 3 cbr 210 ------- 1 1.0 5.0 448 481 - 1.83528 2 3 cbr 210 ------- 1 1.0 5.0 441 474 + 1.83625 1 2 cbr 210 ------- 1 1.0 5.0 463 496 - 1.83625 1 2 cbr 210 ------- 1 1.0 5.0 463 496 r 1.83711 1 2 cbr 210 ------- 1 1.0 5.0 449 482 + 1.83711 2 3 cbr 210 ------- 1 1.0 5.0 449 482 - 1.83864 2 3 cbr 210 ------- 1 1.0 5.0 442 475 r 1.83944 3 5 cbr 210 ------- 1 1.0 5.0 417 450 + 1.84 1 2 cbr 210 ------- 1 1.0 5.0 464 497 - 1.84 1 2 cbr 210 ------- 1 1.0 5.0 464 497 r 1.84086 1 2 cbr 210 ------- 1 1.0 5.0 450 483 + 1.84086 2 3 cbr 210 ------- 1 1.0 5.0 450 483 r 1.8416 2 3 tcp 1000 ------- 0 0.0 4.0 13 444 + 1.8416 3 4 tcp 1000 ------- 0 0.0 4.0 13 444 - 1.8416 3 4 tcp 1000 ------- 0 0.0 4.0 13 444 - 1.842 2 3 cbr 210 ------- 1 1.0 5.0 443 476 r 1.8428 3 5 cbr 210 ------- 1 1.0 5.0 418 451 + 1.84375 1 2 cbr 210 ------- 1 1.0 5.0 465 498 - 1.84375 1 2 cbr 210 ------- 1 1.0 5.0 465 498 r 1.84461 1 2 cbr 210 ------- 1 1.0 5.0 451 484 + 1.84461 2 3 cbr 210 ------- 1 1.0 5.0 451 484 r 1.84496 2 3 cbr 210 ------- 1 1.0 5.0 425 458 + 1.84496 3 5 cbr 210 ------- 1 1.0 5.0 425 458 - 1.84496 3 5 cbr 210 ------- 1 1.0 5.0 425 458 - 1.84536 2 3 cbr 210 ------- 1 1.0 5.0 444 477 r 1.84616 3 5 cbr 210 ------- 1 1.0 5.0 419 452 + 1.8475 1 2 cbr 210 ------- 1 1.0 5.0 466 499 - 1.8475 1 2 cbr 210 ------- 1 1.0 5.0 466 499 r 1.84832 2 3 cbr 210 ------- 1 1.0 5.0 426 459 + 1.84832 3 5 cbr 210 ------- 1 1.0 5.0 426 459 - 1.84832 3 5 cbr 210 ------- 1 1.0 5.0 426 459 r 1.84836 1 2 cbr 210 ------- 1 1.0 5.0 452 485 + 1.84836 2 3 cbr 210 ------- 1 1.0 5.0 452 485 r 1.84872 3 4 tcp 1000 ------- 0 0.0 4.0 11 442 + 1.84872 4 3 ack 40 ------- 0 4.0 0.0 11 500 - 1.84872 4 3 ack 40 ------- 0 4.0 0.0 11 500 - 1.84872 2 3 cbr 210 ------- 1 1.0 5.0 445 478 r 1.84952 3 5 cbr 210 ------- 1 1.0 5.0 420 453 + 1.85125 1 2 cbr 210 ------- 1 1.0 5.0 467 501 - 1.85125 1 2 cbr 210 ------- 1 1.0 5.0 467 501 r 1.85168 2 3 cbr 210 ------- 1 1.0 5.0 427 460 + 1.85168 3 5 cbr 210 ------- 1 1.0 5.0 427 460 - 1.85168 3 5 cbr 210 ------- 1 1.0 5.0 427 460 - 1.85208 2 3 cbr 210 ------- 1 1.0 5.0 446 479 r 1.85211 1 2 cbr 210 ------- 1 1.0 5.0 453 486 + 1.85211 2 3 cbr 210 ------- 1 1.0 5.0 453 486 + 1.855 1 2 cbr 210 ------- 1 1.0 5.0 468 502 - 1.855 1 2 cbr 210 ------- 1 1.0 5.0 468 502 r 1.85504 2 3 cbr 210 ------- 1 1.0 5.0 428 461 + 1.85504 3 5 cbr 210 ------- 1 1.0 5.0 428 461 - 1.85504 3 5 cbr 210 ------- 1 1.0 5.0 428 461 - 1.85544 2 3 cbr 210 ------- 1 1.0 5.0 447 480 r 1.85586 1 2 cbr 210 ------- 1 1.0 5.0 454 487 + 1.85586 2 3 cbr 210 ------- 1 1.0 5.0 454 487 r 1.8584 2 3 cbr 210 ------- 1 1.0 5.0 430 463 + 1.8584 3 5 cbr 210 ------- 1 1.0 5.0 430 463 - 1.8584 3 5 cbr 210 ------- 1 1.0 5.0 430 463 + 1.85875 1 2 cbr 210 ------- 1 1.0 5.0 469 503 - 1.85875 1 2 cbr 210 ------- 1 1.0 5.0 469 503 - 1.8588 2 3 cbr 210 ------- 1 1.0 5.0 448 481 r 1.85961 1 2 cbr 210 ------- 1 1.0 5.0 455 488 + 1.85961 2 3 cbr 210 ------- 1 1.0 5.0 455 488 r 1.86176 2 3 cbr 210 ------- 1 1.0 5.0 431 464 + 1.86176 3 5 cbr 210 ------- 1 1.0 5.0 431 464 - 1.86176 3 5 cbr 210 ------- 1 1.0 5.0 431 464 - 1.86216 2 3 cbr 210 ------- 1 1.0 5.0 449 482 + 1.8625 1 2 cbr 210 ------- 1 1.0 5.0 470 504 - 1.8625 1 2 cbr 210 ------- 1 1.0 5.0 470 504 r 1.86336 1 2 cbr 210 ------- 1 1.0 5.0 456 489 + 1.86336 2 3 cbr 210 ------- 1 1.0 5.0 456 489 r 1.86512 2 3 cbr 210 ------- 1 1.0 5.0 432 465 + 1.86512 3 5 cbr 210 ------- 1 1.0 5.0 432 465 - 1.86512 3 5 cbr 210 ------- 1 1.0 5.0 432 465 - 1.86552 2 3 cbr 210 ------- 1 1.0 5.0 450 483 + 1.86625 1 2 cbr 210 ------- 1 1.0 5.0 471 505 - 1.86625 1 2 cbr 210 ------- 1 1.0 5.0 471 505 r 1.86711 1 2 cbr 210 ------- 1 1.0 5.0 457 490 + 1.86711 2 3 cbr 210 ------- 1 1.0 5.0 457 490 r 1.86848 2 3 cbr 210 ------- 1 1.0 5.0 433 466 + 1.86848 3 5 cbr 210 ------- 1 1.0 5.0 433 466 - 1.86848 3 5 cbr 210 ------- 1 1.0 5.0 433 466 r 1.86888 3 5 cbr 210 ------- 1 1.0 5.0 421 454 - 1.86888 2 3 cbr 210 ------- 1 1.0 5.0 451 484 + 1.87 1 2 cbr 210 ------- 1 1.0 5.0 472 506 - 1.87 1 2 cbr 210 ------- 1 1.0 5.0 472 506 r 1.87086 1 2 cbr 210 ------- 1 1.0 5.0 458 491 + 1.87086 2 3 cbr 210 ------- 1 1.0 5.0 458 491 r 1.87184 2 3 cbr 210 ------- 1 1.0 5.0 434 467 + 1.87184 3 5 cbr 210 ------- 1 1.0 5.0 434 467 - 1.87184 3 5 cbr 210 ------- 1 1.0 5.0 434 467 r 1.87224 3 5 cbr 210 ------- 1 1.0 5.0 422 455 - 1.87224 2 3 cbr 210 ------- 1 1.0 5.0 452 485 + 1.87375 1 2 cbr 210 ------- 1 1.0 5.0 473 507 - 1.87375 1 2 cbr 210 ------- 1 1.0 5.0 473 507 r 1.87461 1 2 cbr 210 ------- 1 1.0 5.0 459 492 + 1.87461 2 3 cbr 210 ------- 1 1.0 5.0 459 492 r 1.8752 2 3 cbr 210 ------- 1 1.0 5.0 437 470 + 1.8752 3 5 cbr 210 ------- 1 1.0 5.0 437 470 - 1.8752 3 5 cbr 210 ------- 1 1.0 5.0 437 470 r 1.8756 3 5 cbr 210 ------- 1 1.0 5.0 423 456 - 1.8756 2 3 cbr 210 ------- 1 1.0 5.0 453 486 + 1.8775 1 2 cbr 210 ------- 1 1.0 5.0 474 508 - 1.8775 1 2 cbr 210 ------- 1 1.0 5.0 474 508 r 1.87816 3 4 tcp 1000 ------- 0 0.0 4.0 12 443 + 1.87816 4 3 ack 40 ------- 0 4.0 0.0 12 509 - 1.87816 4 3 ack 40 ------- 0 4.0 0.0 12 509 r 1.87836 1 2 cbr 210 ------- 1 1.0 5.0 460 493 + 1.87836 2 3 cbr 210 ------- 1 1.0 5.0 460 493 r 1.87856 2 3 cbr 210 ------- 1 1.0 5.0 438 471 + 1.87856 3 5 cbr 210 ------- 1 1.0 5.0 438 471 - 1.87856 3 5 cbr 210 ------- 1 1.0 5.0 438 471 r 1.87896 3 5 cbr 210 ------- 1 1.0 5.0 424 457 - 1.87896 2 3 cbr 210 ------- 1 1.0 5.0 454 487 + 1.88125 1 2 cbr 210 ------- 1 1.0 5.0 475 510 - 1.88125 1 2 cbr 210 ------- 1 1.0 5.0 475 510 r 1.88192 2 3 cbr 210 ------- 1 1.0 5.0 439 472 + 1.88192 3 5 cbr 210 ------- 1 1.0 5.0 439 472 - 1.88192 3 5 cbr 210 ------- 1 1.0 5.0 439 472 r 1.88211 1 2 cbr 210 ------- 1 1.0 5.0 461 494 + 1.88211 2 3 cbr 210 ------- 1 1.0 5.0 461 494 - 1.88232 2 3 cbr 210 ------- 1 1.0 5.0 455 488 + 1.885 1 2 cbr 210 ------- 1 1.0 5.0 476 511 - 1.885 1 2 cbr 210 ------- 1 1.0 5.0 476 511 r 1.88528 2 3 cbr 210 ------- 1 1.0 5.0 440 473 + 1.88528 3 5 cbr 210 ------- 1 1.0 5.0 440 473 - 1.88528 3 5 cbr 210 ------- 1 1.0 5.0 440 473 - 1.88568 2 3 cbr 210 ------- 1 1.0 5.0 456 489 r 1.88586 1 2 cbr 210 ------- 1 1.0 5.0 462 495 + 1.88586 2 3 cbr 210 ------- 1 1.0 5.0 462 495 r 1.88864 2 3 cbr 210 ------- 1 1.0 5.0 441 474 + 1.88864 3 5 cbr 210 ------- 1 1.0 5.0 441 474 - 1.88864 3 5 cbr 210 ------- 1 1.0 5.0 441 474 + 1.88875 1 2 cbr 210 ------- 1 1.0 5.0 477 512 - 1.88875 1 2 cbr 210 ------- 1 1.0 5.0 477 512 - 1.88904 2 3 cbr 210 ------- 1 1.0 5.0 457 490 r 1.88961 1 2 cbr 210 ------- 1 1.0 5.0 463 496 + 1.88961 2 3 cbr 210 ------- 1 1.0 5.0 463 496 r 1.892 2 3 cbr 210 ------- 1 1.0 5.0 442 475 + 1.892 3 5 cbr 210 ------- 1 1.0 5.0 442 475 - 1.892 3 5 cbr 210 ------- 1 1.0 5.0 442 475 - 1.8924 2 3 cbr 210 ------- 1 1.0 5.0 458 491 + 1.8925 1 2 cbr 210 ------- 1 1.0 5.0 478 513 - 1.8925 1 2 cbr 210 ------- 1 1.0 5.0 478 513 r 1.89336 1 2 cbr 210 ------- 1 1.0 5.0 464 497 + 1.89336 2 3 cbr 210 ------- 1 1.0 5.0 464 497 r 1.89536 2 3 cbr 210 ------- 1 1.0 5.0 443 476 + 1.89536 3 5 cbr 210 ------- 1 1.0 5.0 443 476 - 1.89536 3 5 cbr 210 ------- 1 1.0 5.0 443 476 - 1.89576 2 3 cbr 210 ------- 1 1.0 5.0 459 492 + 1.89625 1 2 cbr 210 ------- 1 1.0 5.0 479 514 - 1.89625 1 2 cbr 210 ------- 1 1.0 5.0 479 514 r 1.89711 1 2 cbr 210 ------- 1 1.0 5.0 465 498 + 1.89711 2 3 cbr 210 ------- 1 1.0 5.0 465 498 r 1.89832 3 5 cbr 210 ------- 1 1.0 5.0 425 458 r 1.89872 2 3 cbr 210 ------- 1 1.0 5.0 444 477 + 1.89872 3 5 cbr 210 ------- 1 1.0 5.0 444 477 - 1.89872 3 5 cbr 210 ------- 1 1.0 5.0 444 477 - 1.89912 2 3 cbr 210 ------- 1 1.0 5.0 460 493 r 1.89936 4 3 ack 40 ------- 0 4.0 0.0 11 500 + 1.89936 3 2 ack 40 ------- 0 4.0 0.0 11 500 - 1.89936 3 2 ack 40 ------- 0 4.0 0.0 11 500 + 1.9 1 2 cbr 210 ------- 1 1.0 5.0 480 515 - 1.9 1 2 cbr 210 ------- 1 1.0 5.0 480 515 r 1.90086 1 2 cbr 210 ------- 1 1.0 5.0 466 499 + 1.90086 2 3 cbr 210 ------- 1 1.0 5.0 466 499 r 1.90168 3 5 cbr 210 ------- 1 1.0 5.0 426 459 r 1.90208 2 3 cbr 210 ------- 1 1.0 5.0 445 478 + 1.90208 3 5 cbr 210 ------- 1 1.0 5.0 445 478 - 1.90208 3 5 cbr 210 ------- 1 1.0 5.0 445 478 - 1.90248 2 3 cbr 210 ------- 1 1.0 5.0 461 494 + 1.90375 1 2 cbr 210 ------- 1 1.0 5.0 481 516 - 1.90375 1 2 cbr 210 ------- 1 1.0 5.0 481 516 r 1.90461 1 2 cbr 210 ------- 1 1.0 5.0 467 501 + 1.90461 2 3 cbr 210 ------- 1 1.0 5.0 467 501 r 1.90504 3 5 cbr 210 ------- 1 1.0 5.0 427 460 r 1.90544 2 3 cbr 210 ------- 1 1.0 5.0 446 479 + 1.90544 3 5 cbr 210 ------- 1 1.0 5.0 446 479 - 1.90544 3 5 cbr 210 ------- 1 1.0 5.0 446 479 - 1.90584 2 3 cbr 210 ------- 1 1.0 5.0 462 495 + 1.9075 1 2 cbr 210 ------- 1 1.0 5.0 482 517 - 1.9075 1 2 cbr 210 ------- 1 1.0 5.0 482 517 r 1.9076 3 4 tcp 1000 ------- 0 0.0 4.0 13 444 + 1.9076 4 3 ack 40 ------- 0 4.0 0.0 13 518 - 1.9076 4 3 ack 40 ------- 0 4.0 0.0 13 518 r 1.90836 1 2 cbr 210 ------- 1 1.0 5.0 468 502 + 1.90836 2 3 cbr 210 ------- 1 1.0 5.0 468 502 r 1.9084 3 5 cbr 210 ------- 1 1.0 5.0 428 461 r 1.9088 2 3 cbr 210 ------- 1 1.0 5.0 447 480 + 1.9088 3 5 cbr 210 ------- 1 1.0 5.0 447 480 - 1.9088 3 5 cbr 210 ------- 1 1.0 5.0 447 480 - 1.9092 2 3 cbr 210 ------- 1 1.0 5.0 463 496 + 1.91125 1 2 cbr 210 ------- 1 1.0 5.0 483 519 - 1.91125 1 2 cbr 210 ------- 1 1.0 5.0 483 519 r 1.91176 3 5 cbr 210 ------- 1 1.0 5.0 430 463 r 1.91211 1 2 cbr 210 ------- 1 1.0 5.0 469 503 + 1.91211 2 3 cbr 210 ------- 1 1.0 5.0 469 503 r 1.91216 2 3 cbr 210 ------- 1 1.0 5.0 448 481 + 1.91216 3 5 cbr 210 ------- 1 1.0 5.0 448 481 - 1.91216 3 5 cbr 210 ------- 1 1.0 5.0 448 481 - 1.91256 2 3 cbr 210 ------- 1 1.0 5.0 464 497 + 1.915 1 2 cbr 210 ------- 1 1.0 5.0 484 520 - 1.915 1 2 cbr 210 ------- 1 1.0 5.0 484 520 r 1.91512 3 5 cbr 210 ------- 1 1.0 5.0 431 464 r 1.91552 2 3 cbr 210 ------- 1 1.0 5.0 449 482 + 1.91552 3 5 cbr 210 ------- 1 1.0 5.0 449 482 - 1.91552 3 5 cbr 210 ------- 1 1.0 5.0 449 482 r 1.91586 1 2 cbr 210 ------- 1 1.0 5.0 470 504 + 1.91586 2 3 cbr 210 ------- 1 1.0 5.0 470 504 - 1.91592 2 3 cbr 210 ------- 1 1.0 5.0 465 498 r 1.91848 3 5 cbr 210 ------- 1 1.0 5.0 432 465 + 1.91875 1 2 cbr 210 ------- 1 1.0 5.0 485 521 - 1.91875 1 2 cbr 210 ------- 1 1.0 5.0 485 521 r 1.91888 2 3 cbr 210 ------- 1 1.0 5.0 450 483 + 1.91888 3 5 cbr 210 ------- 1 1.0 5.0 450 483 - 1.91888 3 5 cbr 210 ------- 1 1.0 5.0 450 483 - 1.91928 2 3 cbr 210 ------- 1 1.0 5.0 466 499 r 1.91961 1 2 cbr 210 ------- 1 1.0 5.0 471 505 + 1.91961 2 3 cbr 210 ------- 1 1.0 5.0 471 505 r 1.92184 3 5 cbr 210 ------- 1 1.0 5.0 433 466 r 1.92224 2 3 cbr 210 ------- 1 1.0 5.0 451 484 + 1.92224 3 5 cbr 210 ------- 1 1.0 5.0 451 484 - 1.92224 3 5 cbr 210 ------- 1 1.0 5.0 451 484 + 1.9225 1 2 cbr 210 ------- 1 1.0 5.0 486 522 - 1.9225 1 2 cbr 210 ------- 1 1.0 5.0 486 522 - 1.92264 2 3 cbr 210 ------- 1 1.0 5.0 467 501 r 1.92336 1 2 cbr 210 ------- 1 1.0 5.0 472 506 + 1.92336 2 3 cbr 210 ------- 1 1.0 5.0 472 506 r 1.9252 3 5 cbr 210 ------- 1 1.0 5.0 434 467 r 1.9256 2 3 cbr 210 ------- 1 1.0 5.0 452 485 + 1.9256 3 5 cbr 210 ------- 1 1.0 5.0 452 485 - 1.9256 3 5 cbr 210 ------- 1 1.0 5.0 452 485 - 1.926 2 3 cbr 210 ------- 1 1.0 5.0 468 502 + 1.92625 1 2 cbr 210 ------- 1 1.0 5.0 487 523 - 1.92625 1 2 cbr 210 ------- 1 1.0 5.0 487 523 r 1.92711 1 2 cbr 210 ------- 1 1.0 5.0 473 507 + 1.92711 2 3 cbr 210 ------- 1 1.0 5.0 473 507 r 1.92856 3 5 cbr 210 ------- 1 1.0 5.0 437 470 r 1.9288 4 3 ack 40 ------- 0 4.0 0.0 12 509 + 1.9288 3 2 ack 40 ------- 0 4.0 0.0 12 509 - 1.9288 3 2 ack 40 ------- 0 4.0 0.0 12 509 r 1.92896 2 3 cbr 210 ------- 1 1.0 5.0 453 486 + 1.92896 3 5 cbr 210 ------- 1 1.0 5.0 453 486 - 1.92896 3 5 cbr 210 ------- 1 1.0 5.0 453 486 - 1.92936 2 3 cbr 210 ------- 1 1.0 5.0 469 503 + 1.93 1 2 cbr 210 ------- 1 1.0 5.0 488 524 - 1.93 1 2 cbr 210 ------- 1 1.0 5.0 488 524 r 1.93086 1 2 cbr 210 ------- 1 1.0 5.0 474 508 + 1.93086 2 3 cbr 210 ------- 1 1.0 5.0 474 508 r 1.93192 3 5 cbr 210 ------- 1 1.0 5.0 438 471 r 1.93232 2 3 cbr 210 ------- 1 1.0 5.0 454 487 + 1.93232 3 5 cbr 210 ------- 1 1.0 5.0 454 487 - 1.93232 3 5 cbr 210 ------- 1 1.0 5.0 454 487 - 1.93272 2 3 cbr 210 ------- 1 1.0 5.0 470 504 + 1.93375 1 2 cbr 210 ------- 1 1.0 5.0 489 525 - 1.93375 1 2 cbr 210 ------- 1 1.0 5.0 489 525 r 1.93461 1 2 cbr 210 ------- 1 1.0 5.0 475 510 + 1.93461 2 3 cbr 210 ------- 1 1.0 5.0 475 510 r 1.93528 3 5 cbr 210 ------- 1 1.0 5.0 439 472 r 1.93568 2 3 cbr 210 ------- 1 1.0 5.0 455 488 + 1.93568 3 5 cbr 210 ------- 1 1.0 5.0 455 488 - 1.93568 3 5 cbr 210 ------- 1 1.0 5.0 455 488 - 1.93608 2 3 cbr 210 ------- 1 1.0 5.0 471 505 + 1.9375 1 2 cbr 210 ------- 1 1.0 5.0 490 526 - 1.9375 1 2 cbr 210 ------- 1 1.0 5.0 490 526 r 1.93836 1 2 cbr 210 ------- 1 1.0 5.0 476 511 + 1.93836 2 3 cbr 210 ------- 1 1.0 5.0 476 511 r 1.93864 3 5 cbr 210 ------- 1 1.0 5.0 440 473 r 1.93904 2 3 cbr 210 ------- 1 1.0 5.0 456 489 + 1.93904 3 5 cbr 210 ------- 1 1.0 5.0 456 489 - 1.93904 3 5 cbr 210 ------- 1 1.0 5.0 456 489 - 1.93944 2 3 cbr 210 ------- 1 1.0 5.0 472 506 + 1.94125 1 2 cbr 210 ------- 1 1.0 5.0 491 527 - 1.94125 1 2 cbr 210 ------- 1 1.0 5.0 491 527 r 1.942 3 5 cbr 210 ------- 1 1.0 5.0 441 474 r 1.94211 1 2 cbr 210 ------- 1 1.0 5.0 477 512 + 1.94211 2 3 cbr 210 ------- 1 1.0 5.0 477 512 r 1.9424 2 3 cbr 210 ------- 1 1.0 5.0 457 490 + 1.9424 3 5 cbr 210 ------- 1 1.0 5.0 457 490 - 1.9424 3 5 cbr 210 ------- 1 1.0 5.0 457 490 - 1.9428 2 3 cbr 210 ------- 1 1.0 5.0 473 507 + 1.945 1 2 cbr 210 ------- 1 1.0 5.0 492 528 - 1.945 1 2 cbr 210 ------- 1 1.0 5.0 492 528 r 1.94536 3 5 cbr 210 ------- 1 1.0 5.0 442 475 r 1.94576 2 3 cbr 210 ------- 1 1.0 5.0 458 491 + 1.94576 3 5 cbr 210 ------- 1 1.0 5.0 458 491 - 1.94576 3 5 cbr 210 ------- 1 1.0 5.0 458 491 r 1.94586 1 2 cbr 210 ------- 1 1.0 5.0 478 513 + 1.94586 2 3 cbr 210 ------- 1 1.0 5.0 478 513 - 1.94616 2 3 cbr 210 ------- 1 1.0 5.0 474 508 r 1.94872 3 5 cbr 210 ------- 1 1.0 5.0 443 476 + 1.94875 1 2 cbr 210 ------- 1 1.0 5.0 493 529 - 1.94875 1 2 cbr 210 ------- 1 1.0 5.0 493 529 r 1.94912 2 3 cbr 210 ------- 1 1.0 5.0 459 492 + 1.94912 3 5 cbr 210 ------- 1 1.0 5.0 459 492 - 1.94912 3 5 cbr 210 ------- 1 1.0 5.0 459 492 - 1.94952 2 3 cbr 210 ------- 1 1.0 5.0 475 510 r 1.94961 1 2 cbr 210 ------- 1 1.0 5.0 479 514 + 1.94961 2 3 cbr 210 ------- 1 1.0 5.0 479 514 r 1.95 3 2 ack 40 ------- 0 4.0 0.0 11 500 + 1.95 2 0 ack 40 ------- 0 4.0 0.0 11 500 - 1.95 2 0 ack 40 ------- 0 4.0 0.0 11 500 r 1.95208 3 5 cbr 210 ------- 1 1.0 5.0 444 477 r 1.95248 2 3 cbr 210 ------- 1 1.0 5.0 460 493 + 1.95248 3 5 cbr 210 ------- 1 1.0 5.0 460 493 - 1.95248 3 5 cbr 210 ------- 1 1.0 5.0 460 493 + 1.9525 1 2 cbr 210 ------- 1 1.0 5.0 494 530 - 1.9525 1 2 cbr 210 ------- 1 1.0 5.0 494 530 - 1.95288 2 3 cbr 210 ------- 1 1.0 5.0 476 511 r 1.95336 1 2 cbr 210 ------- 1 1.0 5.0 480 515 + 1.95336 2 3 cbr 210 ------- 1 1.0 5.0 480 515 r 1.95544 3 5 cbr 210 ------- 1 1.0 5.0 445 478 r 1.95584 2 3 cbr 210 ------- 1 1.0 5.0 461 494 + 1.95584 3 5 cbr 210 ------- 1 1.0 5.0 461 494 - 1.95584 3 5 cbr 210 ------- 1 1.0 5.0 461 494 - 1.95624 2 3 cbr 210 ------- 1 1.0 5.0 477 512 + 1.95625 1 2 cbr 210 ------- 1 1.0 5.0 495 531 - 1.95625 1 2 cbr 210 ------- 1 1.0 5.0 495 531 r 1.95711 1 2 cbr 210 ------- 1 1.0 5.0 481 516 + 1.95711 2 3 cbr 210 ------- 1 1.0 5.0 481 516 r 1.95824 4 3 ack 40 ------- 0 4.0 0.0 13 518 + 1.95824 3 2 ack 40 ------- 0 4.0 0.0 13 518 - 1.95824 3 2 ack 40 ------- 0 4.0 0.0 13 518 r 1.9588 3 5 cbr 210 ------- 1 1.0 5.0 446 479 r 1.9592 2 3 cbr 210 ------- 1 1.0 5.0 462 495 + 1.9592 3 5 cbr 210 ------- 1 1.0 5.0 462 495 - 1.9592 3 5 cbr 210 ------- 1 1.0 5.0 462 495 - 1.9596 2 3 cbr 210 ------- 1 1.0 5.0 478 513 + 1.96 1 2 cbr 210 ------- 1 1.0 5.0 496 532 - 1.96 1 2 cbr 210 ------- 1 1.0 5.0 496 532 r 1.96086 1 2 cbr 210 ------- 1 1.0 5.0 482 517 + 1.96086 2 3 cbr 210 ------- 1 1.0 5.0 482 517 r 1.96216 3 5 cbr 210 ------- 1 1.0 5.0 447 480 r 1.96256 2 3 cbr 210 ------- 1 1.0 5.0 463 496 + 1.96256 3 5 cbr 210 ------- 1 1.0 5.0 463 496 - 1.96256 3 5 cbr 210 ------- 1 1.0 5.0 463 496 - 1.96296 2 3 cbr 210 ------- 1 1.0 5.0 479 514 + 1.96375 1 2 cbr 210 ------- 1 1.0 5.0 497 533 - 1.96375 1 2 cbr 210 ------- 1 1.0 5.0 497 533 r 1.96461 1 2 cbr 210 ------- 1 1.0 5.0 483 519 + 1.96461 2 3 cbr 210 ------- 1 1.0 5.0 483 519 r 1.96552 3 5 cbr 210 ------- 1 1.0 5.0 448 481 r 1.96592 2 3 cbr 210 ------- 1 1.0 5.0 464 497 + 1.96592 3 5 cbr 210 ------- 1 1.0 5.0 464 497 - 1.96592 3 5 cbr 210 ------- 1 1.0 5.0 464 497 - 1.96632 2 3 cbr 210 ------- 1 1.0 5.0 480 515 + 1.9675 1 2 cbr 210 ------- 1 1.0 5.0 498 534 - 1.9675 1 2 cbr 210 ------- 1 1.0 5.0 498 534 r 1.96836 1 2 cbr 210 ------- 1 1.0 5.0 484 520 + 1.96836 2 3 cbr 210 ------- 1 1.0 5.0 484 520 r 1.96888 3 5 cbr 210 ------- 1 1.0 5.0 449 482 r 1.96928 2 3 cbr 210 ------- 1 1.0 5.0 465 498 + 1.96928 3 5 cbr 210 ------- 1 1.0 5.0 465 498 - 1.96928 3 5 cbr 210 ------- 1 1.0 5.0 465 498 - 1.96968 2 3 cbr 210 ------- 1 1.0 5.0 481 516 + 1.97125 1 2 cbr 210 ------- 1 1.0 5.0 499 535 - 1.97125 1 2 cbr 210 ------- 1 1.0 5.0 499 535 r 1.97211 1 2 cbr 210 ------- 1 1.0 5.0 485 521 + 1.97211 2 3 cbr 210 ------- 1 1.0 5.0 485 521 r 1.97224 3 5 cbr 210 ------- 1 1.0 5.0 450 483 r 1.97264 2 3 cbr 210 ------- 1 1.0 5.0 466 499 + 1.97264 3 5 cbr 210 ------- 1 1.0 5.0 466 499 - 1.97264 3 5 cbr 210 ------- 1 1.0 5.0 466 499 - 1.97304 2 3 cbr 210 ------- 1 1.0 5.0 482 517 + 1.975 1 2 cbr 210 ------- 1 1.0 5.0 500 536 - 1.975 1 2 cbr 210 ------- 1 1.0 5.0 500 536 r 1.9756 3 5 cbr 210 ------- 1 1.0 5.0 451 484 r 1.97586 1 2 cbr 210 ------- 1 1.0 5.0 486 522 + 1.97586 2 3 cbr 210 ------- 1 1.0 5.0 486 522 r 1.976 2 3 cbr 210 ------- 1 1.0 5.0 467 501 + 1.976 3 5 cbr 210 ------- 1 1.0 5.0 467 501 - 1.976 3 5 cbr 210 ------- 1 1.0 5.0 467 501 - 1.9764 2 3 cbr 210 ------- 1 1.0 5.0 483 519 + 1.97875 1 2 cbr 210 ------- 1 1.0 5.0 501 537 - 1.97875 1 2 cbr 210 ------- 1 1.0 5.0 501 537 r 1.97896 3 5 cbr 210 ------- 1 1.0 5.0 452 485 r 1.97936 2 3 cbr 210 ------- 1 1.0 5.0 468 502 + 1.97936 3 5 cbr 210 ------- 1 1.0 5.0 468 502 - 1.97936 3 5 cbr 210 ------- 1 1.0 5.0 468 502 r 1.97944 3 2 ack 40 ------- 0 4.0 0.0 12 509 + 1.97944 2 0 ack 40 ------- 0 4.0 0.0 12 509 - 1.97944 2 0 ack 40 ------- 0 4.0 0.0 12 509 r 1.97961 1 2 cbr 210 ------- 1 1.0 5.0 487 523 + 1.97961 2 3 cbr 210 ------- 1 1.0 5.0 487 523 - 1.97976 2 3 cbr 210 ------- 1 1.0 5.0 484 520 r 1.98232 3 5 cbr 210 ------- 1 1.0 5.0 453 486 + 1.9825 1 2 cbr 210 ------- 1 1.0 5.0 502 538 - 1.9825 1 2 cbr 210 ------- 1 1.0 5.0 502 538 r 1.98272 2 3 cbr 210 ------- 1 1.0 5.0 469 503 + 1.98272 3 5 cbr 210 ------- 1 1.0 5.0 469 503 - 1.98272 3 5 cbr 210 ------- 1 1.0 5.0 469 503 - 1.98312 2 3 cbr 210 ------- 1 1.0 5.0 485 521 r 1.98336 1 2 cbr 210 ------- 1 1.0 5.0 488 524 + 1.98336 2 3 cbr 210 ------- 1 1.0 5.0 488 524 r 1.98568 3 5 cbr 210 ------- 1 1.0 5.0 454 487 r 1.98608 2 3 cbr 210 ------- 1 1.0 5.0 470 504 + 1.98608 3 5 cbr 210 ------- 1 1.0 5.0 470 504 - 1.98608 3 5 cbr 210 ------- 1 1.0 5.0 470 504 + 1.98625 1 2 cbr 210 ------- 1 1.0 5.0 503 539 - 1.98625 1 2 cbr 210 ------- 1 1.0 5.0 503 539 - 1.98648 2 3 cbr 210 ------- 1 1.0 5.0 486 522 r 1.98711 1 2 cbr 210 ------- 1 1.0 5.0 489 525 + 1.98711 2 3 cbr 210 ------- 1 1.0 5.0 489 525 r 1.98904 3 5 cbr 210 ------- 1 1.0 5.0 455 488 r 1.98944 2 3 cbr 210 ------- 1 1.0 5.0 471 505 + 1.98944 3 5 cbr 210 ------- 1 1.0 5.0 471 505 - 1.98944 3 5 cbr 210 ------- 1 1.0 5.0 471 505 - 1.98984 2 3 cbr 210 ------- 1 1.0 5.0 487 523 + 1.99 1 2 cbr 210 ------- 1 1.0 5.0 504 540 - 1.99 1 2 cbr 210 ------- 1 1.0 5.0 504 540 r 1.99086 1 2 cbr 210 ------- 1 1.0 5.0 490 526 + 1.99086 2 3 cbr 210 ------- 1 1.0 5.0 490 526 r 1.9924 3 5 cbr 210 ------- 1 1.0 5.0 456 489 r 1.9928 2 3 cbr 210 ------- 1 1.0 5.0 472 506 + 1.9928 3 5 cbr 210 ------- 1 1.0 5.0 472 506 - 1.9928 3 5 cbr 210 ------- 1 1.0 5.0 472 506 - 1.9932 2 3 cbr 210 ------- 1 1.0 5.0 488 524 + 1.99375 1 2 cbr 210 ------- 1 1.0 5.0 505 541 - 1.99375 1 2 cbr 210 ------- 1 1.0 5.0 505 541 r 1.99461 1 2 cbr 210 ------- 1 1.0 5.0 491 527 + 1.99461 2 3 cbr 210 ------- 1 1.0 5.0 491 527 r 1.99576 3 5 cbr 210 ------- 1 1.0 5.0 457 490 r 1.99616 2 3 cbr 210 ------- 1 1.0 5.0 473 507 + 1.99616 3 5 cbr 210 ------- 1 1.0 5.0 473 507 - 1.99616 3 5 cbr 210 ------- 1 1.0 5.0 473 507 - 1.99656 2 3 cbr 210 ------- 1 1.0 5.0 489 525 + 1.9975 1 2 cbr 210 ------- 1 1.0 5.0 506 542 - 1.9975 1 2 cbr 210 ------- 1 1.0 5.0 506 542 r 1.99836 1 2 cbr 210 ------- 1 1.0 5.0 492 528 + 1.99836 2 3 cbr 210 ------- 1 1.0 5.0 492 528 r 1.99912 3 5 cbr 210 ------- 1 1.0 5.0 458 491 r 1.99952 2 3 cbr 210 ------- 1 1.0 5.0 474 508 + 1.99952 3 5 cbr 210 ------- 1 1.0 5.0 474 508 - 1.99952 3 5 cbr 210 ------- 1 1.0 5.0 474 508 - 1.99992 2 3 cbr 210 ------- 1 1.0 5.0 490 526 r 2.00064 2 0 ack 40 ------- 0 4.0 0.0 11 500 + 2.00064 0 2 tcp 1000 ------- 0 0.0 4.0 15 543 - 2.00064 0 2 tcp 1000 ------- 0 0.0 4.0 15 543 + 2.00125 1 2 cbr 210 ------- 1 1.0 5.0 507 544 - 2.00125 1 2 cbr 210 ------- 1 1.0 5.0 507 544 r 2.00211 1 2 cbr 210 ------- 1 1.0 5.0 493 529 + 2.00211 2 3 cbr 210 ------- 1 1.0 5.0 493 529 r 2.00248 3 5 cbr 210 ------- 1 1.0 5.0 459 492 r 2.00288 2 3 cbr 210 ------- 1 1.0 5.0 475 510 + 2.00288 3 5 cbr 210 ------- 1 1.0 5.0 475 510 - 2.00288 3 5 cbr 210 ------- 1 1.0 5.0 475 510 - 2.00328 2 3 cbr 210 ------- 1 1.0 5.0 491 527 + 2.005 1 2 cbr 210 ------- 1 1.0 5.0 508 545 - 2.005 1 2 cbr 210 ------- 1 1.0 5.0 508 545 r 2.00584 3 5 cbr 210 ------- 1 1.0 5.0 460 493 r 2.00586 1 2 cbr 210 ------- 1 1.0 5.0 494 530 + 2.00586 2 3 cbr 210 ------- 1 1.0 5.0 494 530 r 2.00624 2 3 cbr 210 ------- 1 1.0 5.0 476 511 + 2.00624 3 5 cbr 210 ------- 1 1.0 5.0 476 511 - 2.00624 3 5 cbr 210 ------- 1 1.0 5.0 476 511 - 2.00664 2 3 cbr 210 ------- 1 1.0 5.0 492 528 + 2.00875 1 2 cbr 210 ------- 1 1.0 5.0 509 546 - 2.00875 1 2 cbr 210 ------- 1 1.0 5.0 509 546 r 2.00888 3 2 ack 40 ------- 0 4.0 0.0 13 518 + 2.00888 2 0 ack 40 ------- 0 4.0 0.0 13 518 - 2.00888 2 0 ack 40 ------- 0 4.0 0.0 13 518 r 2.0092 3 5 cbr 210 ------- 1 1.0 5.0 461 494 r 2.0096 2 3 cbr 210 ------- 1 1.0 5.0 477 512 + 2.0096 3 5 cbr 210 ------- 1 1.0 5.0 477 512 - 2.0096 3 5 cbr 210 ------- 1 1.0 5.0 477 512 r 2.00961 1 2 cbr 210 ------- 1 1.0 5.0 495 531 + 2.00961 2 3 cbr 210 ------- 1 1.0 5.0 495 531 - 2.01 2 3 cbr 210 ------- 1 1.0 5.0 493 529 + 2.0125 1 2 cbr 210 ------- 1 1.0 5.0 510 547 - 2.0125 1 2 cbr 210 ------- 1 1.0 5.0 510 547 r 2.01256 3 5 cbr 210 ------- 1 1.0 5.0 462 495 r 2.01296 2 3 cbr 210 ------- 1 1.0 5.0 478 513 + 2.01296 3 5 cbr 210 ------- 1 1.0 5.0 478 513 - 2.01296 3 5 cbr 210 ------- 1 1.0 5.0 478 513 r 2.01336 1 2 cbr 210 ------- 1 1.0 5.0 496 532 + 2.01336 2 3 cbr 210 ------- 1 1.0 5.0 496 532 - 2.01336 2 3 cbr 210 ------- 1 1.0 5.0 494 530 r 2.01592 3 5 cbr 210 ------- 1 1.0 5.0 463 496 + 2.01625 1 2 cbr 210 ------- 1 1.0 5.0 511 548 - 2.01625 1 2 cbr 210 ------- 1 1.0 5.0 511 548 r 2.01632 2 3 cbr 210 ------- 1 1.0 5.0 479 514 + 2.01632 3 5 cbr 210 ------- 1 1.0 5.0 479 514 - 2.01632 3 5 cbr 210 ------- 1 1.0 5.0 479 514 - 2.01672 2 3 cbr 210 ------- 1 1.0 5.0 495 531 r 2.01711 1 2 cbr 210 ------- 1 1.0 5.0 497 533 + 2.01711 2 3 cbr 210 ------- 1 1.0 5.0 497 533 r 2.01928 3 5 cbr 210 ------- 1 1.0 5.0 464 497 r 2.01968 2 3 cbr 210 ------- 1 1.0 5.0 480 515 + 2.01968 3 5 cbr 210 ------- 1 1.0 5.0 480 515 - 2.01968 3 5 cbr 210 ------- 1 1.0 5.0 480 515 + 2.02 1 2 cbr 210 ------- 1 1.0 5.0 512 549 - 2.02 1 2 cbr 210 ------- 1 1.0 5.0 512 549 - 2.02008 2 3 cbr 210 ------- 1 1.0 5.0 496 532 r 2.02086 1 2 cbr 210 ------- 1 1.0 5.0 498 534 + 2.02086 2 3 cbr 210 ------- 1 1.0 5.0 498 534 r 2.02264 3 5 cbr 210 ------- 1 1.0 5.0 465 498 r 2.02304 2 3 cbr 210 ------- 1 1.0 5.0 481 516 + 2.02304 3 5 cbr 210 ------- 1 1.0 5.0 481 516 - 2.02304 3 5 cbr 210 ------- 1 1.0 5.0 481 516 - 2.02344 2 3 cbr 210 ------- 1 1.0 5.0 497 533 + 2.02375 1 2 cbr 210 ------- 1 1.0 5.0 513 550 - 2.02375 1 2 cbr 210 ------- 1 1.0 5.0 513 550 r 2.02461 1 2 cbr 210 ------- 1 1.0 5.0 499 535 + 2.02461 2 3 cbr 210 ------- 1 1.0 5.0 499 535 r 2.026 3 5 cbr 210 ------- 1 1.0 5.0 466 499 r 2.0264 2 3 cbr 210 ------- 1 1.0 5.0 482 517 + 2.0264 3 5 cbr 210 ------- 1 1.0 5.0 482 517 - 2.0264 3 5 cbr 210 ------- 1 1.0 5.0 482 517 - 2.0268 2 3 cbr 210 ------- 1 1.0 5.0 498 534 + 2.0275 1 2 cbr 210 ------- 1 1.0 5.0 514 551 - 2.0275 1 2 cbr 210 ------- 1 1.0 5.0 514 551 r 2.02836 1 2 cbr 210 ------- 1 1.0 5.0 500 536 + 2.02836 2 3 cbr 210 ------- 1 1.0 5.0 500 536 r 2.02936 3 5 cbr 210 ------- 1 1.0 5.0 467 501 r 2.02976 2 3 cbr 210 ------- 1 1.0 5.0 483 519 + 2.02976 3 5 cbr 210 ------- 1 1.0 5.0 483 519 - 2.02976 3 5 cbr 210 ------- 1 1.0 5.0 483 519 r 2.03008 2 0 ack 40 ------- 0 4.0 0.0 12 509 + 2.03008 0 2 tcp 1000 ------- 0 0.0 4.0 16 552 - 2.03008 0 2 tcp 1000 ------- 0 0.0 4.0 16 552 - 2.03016 2 3 cbr 210 ------- 1 1.0 5.0 499 535 + 2.03125 1 2 cbr 210 ------- 1 1.0 5.0 515 553 - 2.03125 1 2 cbr 210 ------- 1 1.0 5.0 515 553 r 2.03211 1 2 cbr 210 ------- 1 1.0 5.0 501 537 + 2.03211 2 3 cbr 210 ------- 1 1.0 5.0 501 537 r 2.03272 3 5 cbr 210 ------- 1 1.0 5.0 468 502 r 2.03312 2 3 cbr 210 ------- 1 1.0 5.0 484 520 + 2.03312 3 5 cbr 210 ------- 1 1.0 5.0 484 520 - 2.03312 3 5 cbr 210 ------- 1 1.0 5.0 484 520 - 2.03352 2 3 cbr 210 ------- 1 1.0 5.0 500 536 + 2.035 1 2 cbr 210 ------- 1 1.0 5.0 516 554 - 2.035 1 2 cbr 210 ------- 1 1.0 5.0 516 554 r 2.03586 1 2 cbr 210 ------- 1 1.0 5.0 502 538 + 2.03586 2 3 cbr 210 ------- 1 1.0 5.0 502 538 r 2.03608 3 5 cbr 210 ------- 1 1.0 5.0 469 503 r 2.03648 2 3 cbr 210 ------- 1 1.0 5.0 485 521 + 2.03648 3 5 cbr 210 ------- 1 1.0 5.0 485 521 - 2.03648 3 5 cbr 210 ------- 1 1.0 5.0 485 521 - 2.03688 2 3 cbr 210 ------- 1 1.0 5.0 501 537 + 2.03875 1 2 cbr 210 ------- 1 1.0 5.0 517 555 - 2.03875 1 2 cbr 210 ------- 1 1.0 5.0 517 555 r 2.03944 3 5 cbr 210 ------- 1 1.0 5.0 470 504 r 2.03961 1 2 cbr 210 ------- 1 1.0 5.0 503 539 + 2.03961 2 3 cbr 210 ------- 1 1.0 5.0 503 539 r 2.03984 2 3 cbr 210 ------- 1 1.0 5.0 486 522 + 2.03984 3 5 cbr 210 ------- 1 1.0 5.0 486 522 - 2.03984 3 5 cbr 210 ------- 1 1.0 5.0 486 522 - 2.04024 2 3 cbr 210 ------- 1 1.0 5.0 502 538 + 2.0425 1 2 cbr 210 ------- 1 1.0 5.0 518 556 - 2.0425 1 2 cbr 210 ------- 1 1.0 5.0 518 556 r 2.0428 3 5 cbr 210 ------- 1 1.0 5.0 471 505 r 2.0432 2 3 cbr 210 ------- 1 1.0 5.0 487 523 + 2.0432 3 5 cbr 210 ------- 1 1.0 5.0 487 523 - 2.0432 3 5 cbr 210 ------- 1 1.0 5.0 487 523 r 2.04336 1 2 cbr 210 ------- 1 1.0 5.0 504 540 + 2.04336 2 3 cbr 210 ------- 1 1.0 5.0 504 540 - 2.0436 2 3 cbr 210 ------- 1 1.0 5.0 503 539 r 2.04616 3 5 cbr 210 ------- 1 1.0 5.0 472 506 + 2.04625 1 2 cbr 210 ------- 1 1.0 5.0 519 557 - 2.04625 1 2 cbr 210 ------- 1 1.0 5.0 519 557 r 2.04656 2 3 cbr 210 ------- 1 1.0 5.0 488 524 + 2.04656 3 5 cbr 210 ------- 1 1.0 5.0 488 524 - 2.04656 3 5 cbr 210 ------- 1 1.0 5.0 488 524 - 2.04696 2 3 cbr 210 ------- 1 1.0 5.0 504 540 r 2.04711 1 2 cbr 210 ------- 1 1.0 5.0 505 541 + 2.04711 2 3 cbr 210 ------- 1 1.0 5.0 505 541 r 2.04952 3 5 cbr 210 ------- 1 1.0 5.0 473 507 r 2.04992 2 3 cbr 210 ------- 1 1.0 5.0 489 525 + 2.04992 3 5 cbr 210 ------- 1 1.0 5.0 489 525 - 2.04992 3 5 cbr 210 ------- 1 1.0 5.0 489 525 + 2.05 1 2 cbr 210 ------- 1 1.0 5.0 520 558 - 2.05 1 2 cbr 210 ------- 1 1.0 5.0 520 558 - 2.05032 2 3 cbr 210 ------- 1 1.0 5.0 505 541 r 2.05086 1 2 cbr 210 ------- 1 1.0 5.0 506 542 + 2.05086 2 3 cbr 210 ------- 1 1.0 5.0 506 542 r 2.05288 3 5 cbr 210 ------- 1 1.0 5.0 474 508 r 2.05328 2 3 cbr 210 ------- 1 1.0 5.0 490 526 + 2.05328 3 5 cbr 210 ------- 1 1.0 5.0 490 526 - 2.05328 3 5 cbr 210 ------- 1 1.0 5.0 490 526 - 2.05368 2 3 cbr 210 ------- 1 1.0 5.0 506 542 + 2.05375 1 2 cbr 210 ------- 1 1.0 5.0 521 559 - 2.05375 1 2 cbr 210 ------- 1 1.0 5.0 521 559 r 2.05461 1 2 cbr 210 ------- 1 1.0 5.0 507 544 + 2.05461 2 3 cbr 210 ------- 1 1.0 5.0 507 544 r 2.05624 3 5 cbr 210 ------- 1 1.0 5.0 475 510 r 2.05664 2 3 cbr 210 ------- 1 1.0 5.0 491 527 + 2.05664 3 5 cbr 210 ------- 1 1.0 5.0 491 527 - 2.05664 3 5 cbr 210 ------- 1 1.0 5.0 491 527 - 2.05704 2 3 cbr 210 ------- 1 1.0 5.0 507 544 + 2.0575 1 2 cbr 210 ------- 1 1.0 5.0 522 560 - 2.0575 1 2 cbr 210 ------- 1 1.0 5.0 522 560 r 2.05836 1 2 cbr 210 ------- 1 1.0 5.0 508 545 + 2.05836 2 3 cbr 210 ------- 1 1.0 5.0 508 545 r 2.05952 2 0 ack 40 ------- 0 4.0 0.0 13 518 + 2.05952 0 2 tcp 1000 ------- 0 0.0 4.0 17 561 - 2.05952 0 2 tcp 1000 ------- 0 0.0 4.0 17 561 r 2.0596 3 5 cbr 210 ------- 1 1.0 5.0 476 511 r 2.06 2 3 cbr 210 ------- 1 1.0 5.0 492 528 + 2.06 3 5 cbr 210 ------- 1 1.0 5.0 492 528 - 2.06 3 5 cbr 210 ------- 1 1.0 5.0 492 528 - 2.0604 2 3 cbr 210 ------- 1 1.0 5.0 508 545 + 2.06125 1 2 cbr 210 ------- 1 1.0 5.0 523 562 - 2.06125 1 2 cbr 210 ------- 1 1.0 5.0 523 562 r 2.06211 1 2 cbr 210 ------- 1 1.0 5.0 509 546 + 2.06211 2 3 cbr 210 ------- 1 1.0 5.0 509 546 r 2.06296 3 5 cbr 210 ------- 1 1.0 5.0 477 512 r 2.06336 2 3 cbr 210 ------- 1 1.0 5.0 493 529 + 2.06336 3 5 cbr 210 ------- 1 1.0 5.0 493 529 - 2.06336 3 5 cbr 210 ------- 1 1.0 5.0 493 529 - 2.06376 2 3 cbr 210 ------- 1 1.0 5.0 509 546 + 2.065 1 2 cbr 210 ------- 1 1.0 5.0 524 563 - 2.065 1 2 cbr 210 ------- 1 1.0 5.0 524 563 r 2.06586 1 2 cbr 210 ------- 1 1.0 5.0 510 547 + 2.06586 2 3 cbr 210 ------- 1 1.0 5.0 510 547 r 2.06632 3 5 cbr 210 ------- 1 1.0 5.0 478 513 r 2.06664 0 2 tcp 1000 ------- 0 0.0 4.0 15 543 + 2.06664 2 3 tcp 1000 ------- 0 0.0 4.0 15 543 r 2.06672 2 3 cbr 210 ------- 1 1.0 5.0 494 530 + 2.06672 3 5 cbr 210 ------- 1 1.0 5.0 494 530 - 2.06672 3 5 cbr 210 ------- 1 1.0 5.0 494 530 - 2.06712 2 3 cbr 210 ------- 1 1.0 5.0 510 547 + 2.06875 1 2 cbr 210 ------- 1 1.0 5.0 525 564 - 2.06875 1 2 cbr 210 ------- 1 1.0 5.0 525 564 r 2.06961 1 2 cbr 210 ------- 1 1.0 5.0 511 548 + 2.06961 2 3 cbr 210 ------- 1 1.0 5.0 511 548 r 2.06968 3 5 cbr 210 ------- 1 1.0 5.0 479 514 r 2.07008 2 3 cbr 210 ------- 1 1.0 5.0 495 531 + 2.07008 3 5 cbr 210 ------- 1 1.0 5.0 495 531 - 2.07008 3 5 cbr 210 ------- 1 1.0 5.0 495 531 - 2.07048 2 3 tcp 1000 ------- 0 0.0 4.0 15 543 + 2.0725 1 2 cbr 210 ------- 1 1.0 5.0 526 565 - 2.0725 1 2 cbr 210 ------- 1 1.0 5.0 526 565 r 2.07304 3 5 cbr 210 ------- 1 1.0 5.0 480 515 r 2.07336 1 2 cbr 210 ------- 1 1.0 5.0 512 549 + 2.07336 2 3 cbr 210 ------- 1 1.0 5.0 512 549 r 2.07344 2 3 cbr 210 ------- 1 1.0 5.0 496 532 + 2.07344 3 5 cbr 210 ------- 1 1.0 5.0 496 532 - 2.07344 3 5 cbr 210 ------- 1 1.0 5.0 496 532 + 2.07625 1 2 cbr 210 ------- 1 1.0 5.0 527 566 - 2.07625 1 2 cbr 210 ------- 1 1.0 5.0 527 566 r 2.0764 3 5 cbr 210 ------- 1 1.0 5.0 481 516 r 2.0768 2 3 cbr 210 ------- 1 1.0 5.0 497 533 + 2.0768 3 5 cbr 210 ------- 1 1.0 5.0 497 533 - 2.0768 3 5 cbr 210 ------- 1 1.0 5.0 497 533 r 2.07711 1 2 cbr 210 ------- 1 1.0 5.0 513 550 + 2.07711 2 3 cbr 210 ------- 1 1.0 5.0 513 550 r 2.07976 3 5 cbr 210 ------- 1 1.0 5.0 482 517 + 2.08 1 2 cbr 210 ------- 1 1.0 5.0 528 567 - 2.08 1 2 cbr 210 ------- 1 1.0 5.0 528 567 r 2.08016 2 3 cbr 210 ------- 1 1.0 5.0 498 534 + 2.08016 3 5 cbr 210 ------- 1 1.0 5.0 498 534 - 2.08016 3 5 cbr 210 ------- 1 1.0 5.0 498 534 r 2.08086 1 2 cbr 210 ------- 1 1.0 5.0 514 551 + 2.08086 2 3 cbr 210 ------- 1 1.0 5.0 514 551 r 2.08312 3 5 cbr 210 ------- 1 1.0 5.0 483 519 r 2.08352 2 3 cbr 210 ------- 1 1.0 5.0 499 535 + 2.08352 3 5 cbr 210 ------- 1 1.0 5.0 499 535 - 2.08352 3 5 cbr 210 ------- 1 1.0 5.0 499 535 + 2.08375 1 2 cbr 210 ------- 1 1.0 5.0 529 568 - 2.08375 1 2 cbr 210 ------- 1 1.0 5.0 529 568 r 2.08461 1 2 cbr 210 ------- 1 1.0 5.0 515 553 + 2.08461 2 3 cbr 210 ------- 1 1.0 5.0 515 553 - 2.08648 2 3 cbr 210 ------- 1 1.0 5.0 511 548 r 2.08648 3 5 cbr 210 ------- 1 1.0 5.0 484 520 r 2.08688 2 3 cbr 210 ------- 1 1.0 5.0 500 536 + 2.08688 3 5 cbr 210 ------- 1 1.0 5.0 500 536 - 2.08688 3 5 cbr 210 ------- 1 1.0 5.0 500 536 + 2.0875 1 2 cbr 210 ------- 1 1.0 5.0 530 569 - 2.0875 1 2 cbr 210 ------- 1 1.0 5.0 530 569 r 2.08836 1 2 cbr 210 ------- 1 1.0 5.0 516 554 + 2.08836 2 3 cbr 210 ------- 1 1.0 5.0 516 554 - 2.08984 2 3 cbr 210 ------- 1 1.0 5.0 512 549 r 2.08984 3 5 cbr 210 ------- 1 1.0 5.0 485 521 r 2.09024 2 3 cbr 210 ------- 1 1.0 5.0 501 537 + 2.09024 3 5 cbr 210 ------- 1 1.0 5.0 501 537 - 2.09024 3 5 cbr 210 ------- 1 1.0 5.0 501 537 + 2.09125 1 2 cbr 210 ------- 1 1.0 5.0 531 570 - 2.09125 1 2 cbr 210 ------- 1 1.0 5.0 531 570 r 2.09211 1 2 cbr 210 ------- 1 1.0 5.0 517 555 + 2.09211 2 3 cbr 210 ------- 1 1.0 5.0 517 555 - 2.0932 2 3 cbr 210 ------- 1 1.0 5.0 513 550 r 2.0932 3 5 cbr 210 ------- 1 1.0 5.0 486 522 r 2.0936 2 3 cbr 210 ------- 1 1.0 5.0 502 538 + 2.0936 3 5 cbr 210 ------- 1 1.0 5.0 502 538 - 2.0936 3 5 cbr 210 ------- 1 1.0 5.0 502 538 + 2.095 1 2 cbr 210 ------- 1 1.0 5.0 532 571 - 2.095 1 2 cbr 210 ------- 1 1.0 5.0 532 571 r 2.09586 1 2 cbr 210 ------- 1 1.0 5.0 518 556 + 2.09586 2 3 cbr 210 ------- 1 1.0 5.0 518 556 r 2.09608 0 2 tcp 1000 ------- 0 0.0 4.0 16 552 + 2.09608 2 3 tcp 1000 ------- 0 0.0 4.0 16 552 - 2.09656 2 3 cbr 210 ------- 1 1.0 5.0 514 551 r 2.09656 3 5 cbr 210 ------- 1 1.0 5.0 487 523 r 2.09696 2 3 cbr 210 ------- 1 1.0 5.0 503 539 + 2.09696 3 5 cbr 210 ------- 1 1.0 5.0 503 539 - 2.09696 3 5 cbr 210 ------- 1 1.0 5.0 503 539 + 2.09875 1 2 cbr 210 ------- 1 1.0 5.0 533 572 - 2.09875 1 2 cbr 210 ------- 1 1.0 5.0 533 572 r 2.09961 1 2 cbr 210 ------- 1 1.0 5.0 519 557 + 2.09961 2 3 cbr 210 ------- 1 1.0 5.0 519 557 - 2.09992 2 3 cbr 210 ------- 1 1.0 5.0 515 553 r 2.09992 3 5 cbr 210 ------- 1 1.0 5.0 488 524 r 2.10032 2 3 cbr 210 ------- 1 1.0 5.0 504 540 + 2.10032 3 5 cbr 210 ------- 1 1.0 5.0 504 540 - 2.10032 3 5 cbr 210 ------- 1 1.0 5.0 504 540 + 2.1025 1 2 cbr 210 ------- 1 1.0 5.0 534 573 - 2.1025 1 2 cbr 210 ------- 1 1.0 5.0 534 573 - 2.10328 2 3 cbr 210 ------- 1 1.0 5.0 516 554 r 2.10328 3 5 cbr 210 ------- 1 1.0 5.0 489 525 r 2.10336 1 2 cbr 210 ------- 1 1.0 5.0 520 558 + 2.10336 2 3 cbr 210 ------- 1 1.0 5.0 520 558 r 2.10368 2 3 cbr 210 ------- 1 1.0 5.0 505 541 + 2.10368 3 5 cbr 210 ------- 1 1.0 5.0 505 541 - 2.10368 3 5 cbr 210 ------- 1 1.0 5.0 505 541 + 2.10625 1 2 cbr 210 ------- 1 1.0 5.0 535 574 - 2.10625 1 2 cbr 210 ------- 1 1.0 5.0 535 574 - 2.10664 2 3 cbr 210 ------- 1 1.0 5.0 517 555 r 2.10664 3 5 cbr 210 ------- 1 1.0 5.0 490 526 r 2.10704 2 3 cbr 210 ------- 1 1.0 5.0 506 542 + 2.10704 3 5 cbr 210 ------- 1 1.0 5.0 506 542 - 2.10704 3 5 cbr 210 ------- 1 1.0 5.0 506 542 r 2.10711 1 2 cbr 210 ------- 1 1.0 5.0 521 559 + 2.10711 2 3 cbr 210 ------- 1 1.0 5.0 521 559 + 2.11 1 2 cbr 210 ------- 1 1.0 5.0 536 575 - 2.11 1 2 cbr 210 ------- 1 1.0 5.0 536 575 - 2.11 2 3 cbr 210 ------- 1 1.0 5.0 518 556 r 2.11 3 5 cbr 210 ------- 1 1.0 5.0 491 527 r 2.1104 2 3 cbr 210 ------- 1 1.0 5.0 507 544 + 2.1104 3 5 cbr 210 ------- 1 1.0 5.0 507 544 - 2.1104 3 5 cbr 210 ------- 1 1.0 5.0 507 544 r 2.11086 1 2 cbr 210 ------- 1 1.0 5.0 522 560 + 2.11086 2 3 cbr 210 ------- 1 1.0 5.0 522 560 - 2.11336 2 3 tcp 1000 ------- 0 0.0 4.0 16 552 r 2.11336 3 5 cbr 210 ------- 1 1.0 5.0 492 528 + 2.11375 1 2 cbr 210 ------- 1 1.0 5.0 537 576 - 2.11375 1 2 cbr 210 ------- 1 1.0 5.0 537 576 r 2.11376 2 3 cbr 210 ------- 1 1.0 5.0 508 545 + 2.11376 3 5 cbr 210 ------- 1 1.0 5.0 508 545 - 2.11376 3 5 cbr 210 ------- 1 1.0 5.0 508 545 r 2.11461 1 2 cbr 210 ------- 1 1.0 5.0 523 562 + 2.11461 2 3 cbr 210 ------- 1 1.0 5.0 523 562 r 2.11672 3 5 cbr 210 ------- 1 1.0 5.0 493 529 r 2.11712 2 3 cbr 210 ------- 1 1.0 5.0 509 546 + 2.11712 3 5 cbr 210 ------- 1 1.0 5.0 509 546 - 2.11712 3 5 cbr 210 ------- 1 1.0 5.0 509 546 + 2.1175 1 2 cbr 210 ------- 1 1.0 5.0 538 577 - 2.1175 1 2 cbr 210 ------- 1 1.0 5.0 538 577 r 2.11836 1 2 cbr 210 ------- 1 1.0 5.0 524 563 + 2.11836 2 3 cbr 210 ------- 1 1.0 5.0 524 563 r 2.12008 3 5 cbr 210 ------- 1 1.0 5.0 494 530 r 2.12048 2 3 cbr 210 ------- 1 1.0 5.0 510 547 + 2.12048 3 5 cbr 210 ------- 1 1.0 5.0 510 547 - 2.12048 3 5 cbr 210 ------- 1 1.0 5.0 510 547 + 2.12125 1 2 cbr 210 ------- 1 1.0 5.0 539 578 - 2.12125 1 2 cbr 210 ------- 1 1.0 5.0 539 578 r 2.12211 1 2 cbr 210 ------- 1 1.0 5.0 525 564 + 2.12211 2 3 cbr 210 ------- 1 1.0 5.0 525 564 r 2.12344 3 5 cbr 210 ------- 1 1.0 5.0 495 531 + 2.125 1 2 cbr 210 ------- 1 1.0 5.0 540 579 - 2.125 1 2 cbr 210 ------- 1 1.0 5.0 540 579 r 2.12552 0 2 tcp 1000 ------- 0 0.0 4.0 17 561 + 2.12552 2 3 tcp 1000 ------- 0 0.0 4.0 17 561 r 2.12586 1 2 cbr 210 ------- 1 1.0 5.0 526 565 + 2.12586 2 3 cbr 210 ------- 1 1.0 5.0 526 565 r 2.1268 3 5 cbr 210 ------- 1 1.0 5.0 496 532 + 2.12875 1 2 cbr 210 ------- 1 1.0 5.0 541 580 - 2.12875 1 2 cbr 210 ------- 1 1.0 5.0 541 580 - 2.12936 2 3 cbr 210 ------- 1 1.0 5.0 519 557 r 2.12961 1 2 cbr 210 ------- 1 1.0 5.0 527 566 + 2.12961 2 3 cbr 210 ------- 1 1.0 5.0 527 566 r 2.13016 3 5 cbr 210 ------- 1 1.0 5.0 497 533 + 2.1325 1 2 cbr 210 ------- 1 1.0 5.0 542 581 - 2.1325 1 2 cbr 210 ------- 1 1.0 5.0 542 581 - 2.13272 2 3 cbr 210 ------- 1 1.0 5.0 520 558 r 2.13336 1 2 cbr 210 ------- 1 1.0 5.0 528 567 + 2.13336 2 3 cbr 210 ------- 1 1.0 5.0 528 567 r 2.13352 3 5 cbr 210 ------- 1 1.0 5.0 498 534 - 2.13608 2 3 cbr 210 ------- 1 1.0 5.0 521 559 + 2.13625 1 2 cbr 210 ------- 1 1.0 5.0 543 582 - 2.13625 1 2 cbr 210 ------- 1 1.0 5.0 543 582 r 2.13648 2 3 tcp 1000 ------- 0 0.0 4.0 15 543 + 2.13648 3 4 tcp 1000 ------- 0 0.0 4.0 15 543 - 2.13648 3 4 tcp 1000 ------- 0 0.0 4.0 15 543 r 2.13688 3 5 cbr 210 ------- 1 1.0 5.0 499 535 r 2.13711 1 2 cbr 210 ------- 1 1.0 5.0 529 568 + 2.13711 2 3 cbr 210 ------- 1 1.0 5.0 529 568 - 2.13944 2 3 cbr 210 ------- 1 1.0 5.0 522 560 r 2.13984 2 3 cbr 210 ------- 1 1.0 5.0 511 548 + 2.13984 3 5 cbr 210 ------- 1 1.0 5.0 511 548 - 2.13984 3 5 cbr 210 ------- 1 1.0 5.0 511 548 + 2.14 1 2 cbr 210 ------- 1 1.0 5.0 544 583 - 2.14 1 2 cbr 210 ------- 1 1.0 5.0 544 583 r 2.14024 3 5 cbr 210 ------- 1 1.0 5.0 500 536 r 2.14086 1 2 cbr 210 ------- 1 1.0 5.0 530 569 + 2.14086 2 3 cbr 210 ------- 1 1.0 5.0 530 569 - 2.1428 2 3 cbr 210 ------- 1 1.0 5.0 523 562 r 2.1432 2 3 cbr 210 ------- 1 1.0 5.0 512 549 + 2.1432 3 5 cbr 210 ------- 1 1.0 5.0 512 549 - 2.1432 3 5 cbr 210 ------- 1 1.0 5.0 512 549 r 2.1436 3 5 cbr 210 ------- 1 1.0 5.0 501 537 + 2.14375 1 2 cbr 210 ------- 1 1.0 5.0 545 584 - 2.14375 1 2 cbr 210 ------- 1 1.0 5.0 545 584 r 2.14461 1 2 cbr 210 ------- 1 1.0 5.0 531 570 + 2.14461 2 3 cbr 210 ------- 1 1.0 5.0 531 570 - 2.14616 2 3 cbr 210 ------- 1 1.0 5.0 524 563 r 2.14656 2 3 cbr 210 ------- 1 1.0 5.0 513 550 + 2.14656 3 5 cbr 210 ------- 1 1.0 5.0 513 550 - 2.14656 3 5 cbr 210 ------- 1 1.0 5.0 513 550 r 2.14696 3 5 cbr 210 ------- 1 1.0 5.0 502 538 + 2.1475 1 2 cbr 210 ------- 1 1.0 5.0 546 585 - 2.1475 1 2 cbr 210 ------- 1 1.0 5.0 546 585 r 2.14836 1 2 cbr 210 ------- 1 1.0 5.0 532 571 + 2.14836 2 3 cbr 210 ------- 1 1.0 5.0 532 571 - 2.14952 2 3 cbr 210 ------- 1 1.0 5.0 525 564 r 2.14992 2 3 cbr 210 ------- 1 1.0 5.0 514 551 + 2.14992 3 5 cbr 210 ------- 1 1.0 5.0 514 551 - 2.14992 3 5 cbr 210 ------- 1 1.0 5.0 514 551 r 2.15032 3 5 cbr 210 ------- 1 1.0 5.0 503 539 + 2.15125 1 2 cbr 210 ------- 1 1.0 5.0 547 586 - 2.15125 1 2 cbr 210 ------- 1 1.0 5.0 547 586 r 2.15211 1 2 cbr 210 ------- 1 1.0 5.0 533 572 + 2.15211 2 3 cbr 210 ------- 1 1.0 5.0 533 572 - 2.15288 2 3 tcp 1000 ------- 0 0.0 4.0 17 561 r 2.15328 2 3 cbr 210 ------- 1 1.0 5.0 515 553 + 2.15328 3 5 cbr 210 ------- 1 1.0 5.0 515 553 - 2.15328 3 5 cbr 210 ------- 1 1.0 5.0 515 553 r 2.15368 3 5 cbr 210 ------- 1 1.0 5.0 504 540 + 2.155 1 2 cbr 210 ------- 1 1.0 5.0 548 587 - 2.155 1 2 cbr 210 ------- 1 1.0 5.0 548 587 r 2.15586 1 2 cbr 210 ------- 1 1.0 5.0 534 573 + 2.15586 2 3 cbr 210 ------- 1 1.0 5.0 534 573 r 2.15664 2 3 cbr 210 ------- 1 1.0 5.0 516 554 + 2.15664 3 5 cbr 210 ------- 1 1.0 5.0 516 554 - 2.15664 3 5 cbr 210 ------- 1 1.0 5.0 516 554 r 2.15704 3 5 cbr 210 ------- 1 1.0 5.0 505 541 + 2.15875 1 2 cbr 210 ------- 1 1.0 5.0 549 588 - 2.15875 1 2 cbr 210 ------- 1 1.0 5.0 549 588 r 2.15961 1 2 cbr 210 ------- 1 1.0 5.0 535 574 + 2.15961 2 3 cbr 210 ------- 1 1.0 5.0 535 574 d 2.15961 2 3 cbr 210 ------- 1 1.0 5.0 535 574 r 2.16 2 3 cbr 210 ------- 1 1.0 5.0 517 555 + 2.16 3 5 cbr 210 ------- 1 1.0 5.0 517 555 - 2.16 3 5 cbr 210 ------- 1 1.0 5.0 517 555 r 2.1604 3 5 cbr 210 ------- 1 1.0 5.0 506 542 + 2.1625 1 2 cbr 210 ------- 1 1.0 5.0 550 589 - 2.1625 1 2 cbr 210 ------- 1 1.0 5.0 550 589 r 2.16336 1 2 cbr 210 ------- 1 1.0 5.0 536 575 + 2.16336 2 3 cbr 210 ------- 1 1.0 5.0 536 575 d 2.16336 2 3 cbr 210 ------- 1 1.0 5.0 536 575 r 2.16336 2 3 cbr 210 ------- 1 1.0 5.0 518 556 + 2.16336 3 5 cbr 210 ------- 1 1.0 5.0 518 556 - 2.16336 3 5 cbr 210 ------- 1 1.0 5.0 518 556 r 2.16376 3 5 cbr 210 ------- 1 1.0 5.0 507 544 + 2.16625 1 2 cbr 210 ------- 1 1.0 5.0 551 590 - 2.16625 1 2 cbr 210 ------- 1 1.0 5.0 551 590 r 2.16711 1 2 cbr 210 ------- 1 1.0 5.0 537 576 + 2.16711 2 3 cbr 210 ------- 1 1.0 5.0 537 576 d 2.16711 2 3 cbr 210 ------- 1 1.0 5.0 537 576 r 2.16712 3 5 cbr 210 ------- 1 1.0 5.0 508 545 - 2.16888 2 3 cbr 210 ------- 1 1.0 5.0 526 565 + 2.17 1 2 cbr 210 ------- 1 1.0 5.0 552 591 - 2.17 1 2 cbr 210 ------- 1 1.0 5.0 552 591 r 2.17048 3 5 cbr 210 ------- 1 1.0 5.0 509 546 r 2.17086 1 2 cbr 210 ------- 1 1.0 5.0 538 577 + 2.17086 2 3 cbr 210 ------- 1 1.0 5.0 538 577 - 2.17224 2 3 cbr 210 ------- 1 1.0 5.0 527 566 + 2.17375 1 2 cbr 210 ------- 1 1.0 5.0 553 592 - 2.17375 1 2 cbr 210 ------- 1 1.0 5.0 553 592 r 2.17384 3 5 cbr 210 ------- 1 1.0 5.0 510 547 r 2.17461 1 2 cbr 210 ------- 1 1.0 5.0 539 578 + 2.17461 2 3 cbr 210 ------- 1 1.0 5.0 539 578 - 2.1756 2 3 cbr 210 ------- 1 1.0 5.0 528 567 + 2.1775 1 2 cbr 210 ------- 1 1.0 5.0 554 593 - 2.1775 1 2 cbr 210 ------- 1 1.0 5.0 554 593 r 2.17836 1 2 cbr 210 ------- 1 1.0 5.0 540 579 + 2.17836 2 3 cbr 210 ------- 1 1.0 5.0 540 579 - 2.17896 2 3 cbr 210 ------- 1 1.0 5.0 529 568 r 2.17936 2 3 tcp 1000 ------- 0 0.0 4.0 16 552 + 2.17936 3 4 tcp 1000 ------- 0 0.0 4.0 16 552 - 2.17936 3 4 tcp 1000 ------- 0 0.0 4.0 16 552 + 2.18125 1 2 cbr 210 ------- 1 1.0 5.0 555 594 - 2.18125 1 2 cbr 210 ------- 1 1.0 5.0 555 594 r 2.18211 1 2 cbr 210 ------- 1 1.0 5.0 541 580 + 2.18211 2 3 cbr 210 ------- 1 1.0 5.0 541 580 - 2.18232 2 3 cbr 210 ------- 1 1.0 5.0 530 569 r 2.18272 2 3 cbr 210 ------- 1 1.0 5.0 519 557 + 2.18272 3 5 cbr 210 ------- 1 1.0 5.0 519 557 - 2.18272 3 5 cbr 210 ------- 1 1.0 5.0 519 557 + 2.185 1 2 cbr 210 ------- 1 1.0 5.0 556 595 - 2.185 1 2 cbr 210 ------- 1 1.0 5.0 556 595 - 2.18568 2 3 cbr 210 ------- 1 1.0 5.0 531 570 r 2.18586 1 2 cbr 210 ------- 1 1.0 5.0 542 581 + 2.18586 2 3 cbr 210 ------- 1 1.0 5.0 542 581 r 2.18608 2 3 cbr 210 ------- 1 1.0 5.0 520 558 + 2.18608 3 5 cbr 210 ------- 1 1.0 5.0 520 558 - 2.18608 3 5 cbr 210 ------- 1 1.0 5.0 520 558 + 2.18875 1 2 cbr 210 ------- 1 1.0 5.0 557 596 - 2.18875 1 2 cbr 210 ------- 1 1.0 5.0 557 596 - 2.18904 2 3 cbr 210 ------- 1 1.0 5.0 532 571 r 2.18944 2 3 cbr 210 ------- 1 1.0 5.0 521 559 + 2.18944 3 5 cbr 210 ------- 1 1.0 5.0 521 559 - 2.18944 3 5 cbr 210 ------- 1 1.0 5.0 521 559 r 2.18961 1 2 cbr 210 ------- 1 1.0 5.0 543 582 + 2.18961 2 3 cbr 210 ------- 1 1.0 5.0 543 582 - 2.1924 2 3 cbr 210 ------- 1 1.0 5.0 533 572 + 2.1925 1 2 cbr 210 ------- 1 1.0 5.0 558 597 - 2.1925 1 2 cbr 210 ------- 1 1.0 5.0 558 597 r 2.1928 2 3 cbr 210 ------- 1 1.0 5.0 522 560 + 2.1928 3 5 cbr 210 ------- 1 1.0 5.0 522 560 - 2.1928 3 5 cbr 210 ------- 1 1.0 5.0 522 560 r 2.1932 3 5 cbr 210 ------- 1 1.0 5.0 511 548 r 2.19336 1 2 cbr 210 ------- 1 1.0 5.0 544 583 + 2.19336 2 3 cbr 210 ------- 1 1.0 5.0 544 583 - 2.19576 2 3 cbr 210 ------- 1 1.0 5.0 534 573 r 2.19616 2 3 cbr 210 ------- 1 1.0 5.0 523 562 + 2.19616 3 5 cbr 210 ------- 1 1.0 5.0 523 562 - 2.19616 3 5 cbr 210 ------- 1 1.0 5.0 523 562 + 2.19625 1 2 cbr 210 ------- 1 1.0 5.0 559 598 - 2.19625 1 2 cbr 210 ------- 1 1.0 5.0 559 598 r 2.19656 3 5 cbr 210 ------- 1 1.0 5.0 512 549 r 2.19711 1 2 cbr 210 ------- 1 1.0 5.0 545 584 + 2.19711 2 3 cbr 210 ------- 1 1.0 5.0 545 584 - 2.19912 2 3 cbr 210 ------- 1 1.0 5.0 538 577 r 2.19952 2 3 cbr 210 ------- 1 1.0 5.0 524 563 + 2.19952 3 5 cbr 210 ------- 1 1.0 5.0 524 563 - 2.19952 3 5 cbr 210 ------- 1 1.0 5.0 524 563 r 2.19992 3 5 cbr 210 ------- 1 1.0 5.0 513 550 + 2.2 1 2 cbr 210 ------- 1 1.0 5.0 560 599 - 2.2 1 2 cbr 210 ------- 1 1.0 5.0 560 599 r 2.20086 1 2 cbr 210 ------- 1 1.0 5.0 546 585 + 2.20086 2 3 cbr 210 ------- 1 1.0 5.0 546 585 - 2.20248 2 3 cbr 210 ------- 1 1.0 5.0 539 578 r 2.20248 3 4 tcp 1000 ------- 0 0.0 4.0 15 543 + 2.20248 4 3 ack 40 ------- 0 4.0 0.0 13 600 - 2.20248 4 3 ack 40 ------- 0 4.0 0.0 13 600 r 2.20288 2 3 cbr 210 ------- 1 1.0 5.0 525 564 + 2.20288 3 5 cbr 210 ------- 1 1.0 5.0 525 564 - 2.20288 3 5 cbr 210 ------- 1 1.0 5.0 525 564 r 2.20328 3 5 cbr 210 ------- 1 1.0 5.0 514 551 + 2.20375 1 2 cbr 210 ------- 1 1.0 5.0 561 601 - 2.20375 1 2 cbr 210 ------- 1 1.0 5.0 561 601 r 2.20461 1 2 cbr 210 ------- 1 1.0 5.0 547 586 + 2.20461 2 3 cbr 210 ------- 1 1.0 5.0 547 586 - 2.20584 2 3 cbr 210 ------- 1 1.0 5.0 540 579 r 2.20664 3 5 cbr 210 ------- 1 1.0 5.0 515 553 + 2.2075 1 2 cbr 210 ------- 1 1.0 5.0 562 602 - 2.2075 1 2 cbr 210 ------- 1 1.0 5.0 562 602 r 2.20836 1 2 cbr 210 ------- 1 1.0 5.0 548 587 + 2.20836 2 3 cbr 210 ------- 1 1.0 5.0 548 587 - 2.2092 2 3 cbr 210 ------- 1 1.0 5.0 541 580 r 2.21 3 5 cbr 210 ------- 1 1.0 5.0 516 554 + 2.21125 1 2 cbr 210 ------- 1 1.0 5.0 563 603 - 2.21125 1 2 cbr 210 ------- 1 1.0 5.0 563 603 r 2.21211 1 2 cbr 210 ------- 1 1.0 5.0 549 588 + 2.21211 2 3 cbr 210 ------- 1 1.0 5.0 549 588 - 2.21256 2 3 cbr 210 ------- 1 1.0 5.0 542 581 r 2.21336 3 5 cbr 210 ------- 1 1.0 5.0 517 555 + 2.215 1 2 cbr 210 ------- 1 1.0 5.0 564 604 - 2.215 1 2 cbr 210 ------- 1 1.0 5.0 564 604 r 2.21586 1 2 cbr 210 ------- 1 1.0 5.0 550 589 + 2.21586 2 3 cbr 210 ------- 1 1.0 5.0 550 589 - 2.21592 2 3 cbr 210 ------- 1 1.0 5.0 543 582 r 2.21672 3 5 cbr 210 ------- 1 1.0 5.0 518 556 + 2.21875 1 2 cbr 210 ------- 1 1.0 5.0 565 605 - 2.21875 1 2 cbr 210 ------- 1 1.0 5.0 565 605 r 2.21888 2 3 tcp 1000 ------- 0 0.0 4.0 17 561 + 2.21888 3 4 tcp 1000 ------- 0 0.0 4.0 17 561 - 2.21888 3 4 tcp 1000 ------- 0 0.0 4.0 17 561 - 2.21928 2 3 cbr 210 ------- 1 1.0 5.0 544 583 r 2.21961 1 2 cbr 210 ------- 1 1.0 5.0 551 590 + 2.21961 2 3 cbr 210 ------- 1 1.0 5.0 551 590 r 2.22224 2 3 cbr 210 ------- 1 1.0 5.0 526 565 + 2.22224 3 5 cbr 210 ------- 1 1.0 5.0 526 565 - 2.22224 3 5 cbr 210 ------- 1 1.0 5.0 526 565 + 2.2225 1 2 cbr 210 ------- 1 1.0 5.0 566 606 - 2.2225 1 2 cbr 210 ------- 1 1.0 5.0 566 606 - 2.22264 2 3 cbr 210 ------- 1 1.0 5.0 545 584 r 2.22336 1 2 cbr 210 ------- 1 1.0 5.0 552 591 + 2.22336 2 3 cbr 210 ------- 1 1.0 5.0 552 591 r 2.2256 2 3 cbr 210 ------- 1 1.0 5.0 527 566 + 2.2256 3 5 cbr 210 ------- 1 1.0 5.0 527 566 - 2.2256 3 5 cbr 210 ------- 1 1.0 5.0 527 566 - 2.226 2 3 cbr 210 ------- 1 1.0 5.0 546 585 + 2.22625 1 2 cbr 210 ------- 1 1.0 5.0 567 607 - 2.22625 1 2 cbr 210 ------- 1 1.0 5.0 567 607 r 2.22711 1 2 cbr 210 ------- 1 1.0 5.0 553 592 + 2.22711 2 3 cbr 210 ------- 1 1.0 5.0 553 592 r 2.22896 2 3 cbr 210 ------- 1 1.0 5.0 528 567 + 2.22896 3 5 cbr 210 ------- 1 1.0 5.0 528 567 - 2.22896 3 5 cbr 210 ------- 1 1.0 5.0 528 567 - 2.22936 2 3 cbr 210 ------- 1 1.0 5.0 547 586 + 2.23 1 2 cbr 210 ------- 1 1.0 5.0 568 608 - 2.23 1 2 cbr 210 ------- 1 1.0 5.0 568 608 r 2.23086 1 2 cbr 210 ------- 1 1.0 5.0 554 593 + 2.23086 2 3 cbr 210 ------- 1 1.0 5.0 554 593 r 2.23232 2 3 cbr 210 ------- 1 1.0 5.0 529 568 + 2.23232 3 5 cbr 210 ------- 1 1.0 5.0 529 568 - 2.23232 3 5 cbr 210 ------- 1 1.0 5.0 529 568 - 2.23272 2 3 cbr 210 ------- 1 1.0 5.0 548 587 + 2.23375 1 2 cbr 210 ------- 1 1.0 5.0 569 609 - 2.23375 1 2 cbr 210 ------- 1 1.0 5.0 569 609 r 2.23461 1 2 cbr 210 ------- 1 1.0 5.0 555 594 + 2.23461 2 3 cbr 210 ------- 1 1.0 5.0 555 594 r 2.23568 2 3 cbr 210 ------- 1 1.0 5.0 530 569 + 2.23568 3 5 cbr 210 ------- 1 1.0 5.0 530 569 - 2.23568 3 5 cbr 210 ------- 1 1.0 5.0 530 569 - 2.23608 2 3 cbr 210 ------- 1 1.0 5.0 549 588 r 2.23608 3 5 cbr 210 ------- 1 1.0 5.0 519 557 + 2.2375 1 2 cbr 210 ------- 1 1.0 5.0 570 610 - 2.2375 1 2 cbr 210 ------- 1 1.0 5.0 570 610 r 2.23836 1 2 cbr 210 ------- 1 1.0 5.0 556 595 + 2.23836 2 3 cbr 210 ------- 1 1.0 5.0 556 595 r 2.23904 2 3 cbr 210 ------- 1 1.0 5.0 531 570 + 2.23904 3 5 cbr 210 ------- 1 1.0 5.0 531 570 - 2.23904 3 5 cbr 210 ------- 1 1.0 5.0 531 570 - 2.23944 2 3 cbr 210 ------- 1 1.0 5.0 550 589 r 2.23944 3 5 cbr 210 ------- 1 1.0 5.0 520 558 + 2.24125 1 2 cbr 210 ------- 1 1.0 5.0 571 611 - 2.24125 1 2 cbr 210 ------- 1 1.0 5.0 571 611 r 2.24211 1 2 cbr 210 ------- 1 1.0 5.0 557 596 + 2.24211 2 3 cbr 210 ------- 1 1.0 5.0 557 596 r 2.2424 2 3 cbr 210 ------- 1 1.0 5.0 532 571 + 2.2424 3 5 cbr 210 ------- 1 1.0 5.0 532 571 - 2.2424 3 5 cbr 210 ------- 1 1.0 5.0 532 571 - 2.2428 2 3 cbr 210 ------- 1 1.0 5.0 551 590 r 2.2428 3 5 cbr 210 ------- 1 1.0 5.0 521 559 + 2.245 1 2 cbr 210 ------- 1 1.0 5.0 572 612 - 2.245 1 2 cbr 210 ------- 1 1.0 5.0 572 612 r 2.24536 3 4 tcp 1000 ------- 0 0.0 4.0 16 552 + 2.24536 4 3 ack 40 ------- 0 4.0 0.0 13 613 - 2.24536 4 3 ack 40 ------- 0 4.0 0.0 13 613 r 2.24576 2 3 cbr 210 ------- 1 1.0 5.0 533 572 + 2.24576 3 5 cbr 210 ------- 1 1.0 5.0 533 572 - 2.24576 3 5 cbr 210 ------- 1 1.0 5.0 533 572 r 2.24586 1 2 cbr 210 ------- 1 1.0 5.0 558 597 + 2.24586 2 3 cbr 210 ------- 1 1.0 5.0 558 597 - 2.24616 2 3 cbr 210 ------- 1 1.0 5.0 552 591 r 2.24616 3 5 cbr 210 ------- 1 1.0 5.0 522 560 + 2.24875 1 2 cbr 210 ------- 1 1.0 5.0 573 614 - 2.24875 1 2 cbr 210 ------- 1 1.0 5.0 573 614 r 2.24912 2 3 cbr 210 ------- 1 1.0 5.0 534 573 + 2.24912 3 5 cbr 210 ------- 1 1.0 5.0 534 573 - 2.24912 3 5 cbr 210 ------- 1 1.0 5.0 534 573 - 2.24952 2 3 cbr 210 ------- 1 1.0 5.0 553 592 r 2.24952 3 5 cbr 210 ------- 1 1.0 5.0 523 562 r 2.24961 1 2 cbr 210 ------- 1 1.0 5.0 559 598 + 2.24961 2 3 cbr 210 ------- 1 1.0 5.0 559 598 r 2.25248 2 3 cbr 210 ------- 1 1.0 5.0 538 577 + 2.25248 3 5 cbr 210 ------- 1 1.0 5.0 538 577 - 2.25248 3 5 cbr 210 ------- 1 1.0 5.0 538 577 + 2.2525 1 2 cbr 210 ------- 1 1.0 5.0 574 615 - 2.2525 1 2 cbr 210 ------- 1 1.0 5.0 574 615 - 2.25288 2 3 cbr 210 ------- 1 1.0 5.0 554 593 r 2.25288 3 5 cbr 210 ------- 1 1.0 5.0 524 563 r 2.25312 4 3 ack 40 ------- 0 4.0 0.0 13 600 + 2.25312 3 2 ack 40 ------- 0 4.0 0.0 13 600 - 2.25312 3 2 ack 40 ------- 0 4.0 0.0 13 600 r 2.25336 1 2 cbr 210 ------- 1 1.0 5.0 560 599 + 2.25336 2 3 cbr 210 ------- 1 1.0 5.0 560 599 r 2.25584 2 3 cbr 210 ------- 1 1.0 5.0 539 578 + 2.25584 3 5 cbr 210 ------- 1 1.0 5.0 539 578 - 2.25584 3 5 cbr 210 ------- 1 1.0 5.0 539 578 - 2.25624 2 3 cbr 210 ------- 1 1.0 5.0 555 594 r 2.25624 3 5 cbr 210 ------- 1 1.0 5.0 525 564 + 2.25625 1 2 cbr 210 ------- 1 1.0 5.0 575 616 - 2.25625 1 2 cbr 210 ------- 1 1.0 5.0 575 616 r 2.25711 1 2 cbr 210 ------- 1 1.0 5.0 561 601 + 2.25711 2 3 cbr 210 ------- 1 1.0 5.0 561 601 r 2.2592 2 3 cbr 210 ------- 1 1.0 5.0 540 579 + 2.2592 3 5 cbr 210 ------- 1 1.0 5.0 540 579 - 2.2592 3 5 cbr 210 ------- 1 1.0 5.0 540 579 - 2.2596 2 3 cbr 210 ------- 1 1.0 5.0 556 595 + 2.26 1 2 cbr 210 ------- 1 1.0 5.0 576 617 - 2.26 1 2 cbr 210 ------- 1 1.0 5.0 576 617 r 2.26086 1 2 cbr 210 ------- 1 1.0 5.0 562 602 + 2.26086 2 3 cbr 210 ------- 1 1.0 5.0 562 602 r 2.26256 2 3 cbr 210 ------- 1 1.0 5.0 541 580 + 2.26256 3 5 cbr 210 ------- 1 1.0 5.0 541 580 - 2.26256 3 5 cbr 210 ------- 1 1.0 5.0 541 580 - 2.26296 2 3 cbr 210 ------- 1 1.0 5.0 557 596 + 2.26375 1 2 cbr 210 ------- 1 1.0 5.0 577 618 - 2.26375 1 2 cbr 210 ------- 1 1.0 5.0 577 618 r 2.26461 1 2 cbr 210 ------- 1 1.0 5.0 563 603 + 2.26461 2 3 cbr 210 ------- 1 1.0 5.0 563 603 r 2.26592 2 3 cbr 210 ------- 1 1.0 5.0 542 581 + 2.26592 3 5 cbr 210 ------- 1 1.0 5.0 542 581 - 2.26592 3 5 cbr 210 ------- 1 1.0 5.0 542 581 - 2.26632 2 3 cbr 210 ------- 1 1.0 5.0 558 597 + 2.2675 1 2 cbr 210 ------- 1 1.0 5.0 578 619 - 2.2675 1 2 cbr 210 ------- 1 1.0 5.0 578 619 r 2.26836 1 2 cbr 210 ------- 1 1.0 5.0 564 604 + 2.26836 2 3 cbr 210 ------- 1 1.0 5.0 564 604 r 2.26928 2 3 cbr 210 ------- 1 1.0 5.0 543 582 + 2.26928 3 5 cbr 210 ------- 1 1.0 5.0 543 582 - 2.26928 3 5 cbr 210 ------- 1 1.0 5.0 543 582 - 2.26968 2 3 cbr 210 ------- 1 1.0 5.0 559 598 + 2.27125 1 2 cbr 210 ------- 1 1.0 5.0 579 620 - 2.27125 1 2 cbr 210 ------- 1 1.0 5.0 579 620 r 2.27211 1 2 cbr 210 ------- 1 1.0 5.0 565 605 + 2.27211 2 3 cbr 210 ------- 1 1.0 5.0 565 605 r 2.27264 2 3 cbr 210 ------- 1 1.0 5.0 544 583 + 2.27264 3 5 cbr 210 ------- 1 1.0 5.0 544 583 - 2.27264 3 5 cbr 210 ------- 1 1.0 5.0 544 583 - 2.27304 2 3 cbr 210 ------- 1 1.0 5.0 560 599 + 2.275 1 2 cbr 210 ------- 1 1.0 5.0 580 621 - 2.275 1 2 cbr 210 ------- 1 1.0 5.0 580 621 r 2.2756 3 5 cbr 210 ------- 1 1.0 5.0 526 565 r 2.27586 1 2 cbr 210 ------- 1 1.0 5.0 566 606 + 2.27586 2 3 cbr 210 ------- 1 1.0 5.0 566 606 r 2.276 2 3 cbr 210 ------- 1 1.0 5.0 545 584 + 2.276 3 5 cbr 210 ------- 1 1.0 5.0 545 584 - 2.276 3 5 cbr 210 ------- 1 1.0 5.0 545 584 - 2.2764 2 3 cbr 210 ------- 1 1.0 5.0 561 601 + 2.27875 1 2 cbr 210 ------- 1 1.0 5.0 581 622 - 2.27875 1 2 cbr 210 ------- 1 1.0 5.0 581 622 r 2.27896 3 5 cbr 210 ------- 1 1.0 5.0 527 566 r 2.27936 2 3 cbr 210 ------- 1 1.0 5.0 546 585 + 2.27936 3 5 cbr 210 ------- 1 1.0 5.0 546 585 - 2.27936 3 5 cbr 210 ------- 1 1.0 5.0 546 585 r 2.27961 1 2 cbr 210 ------- 1 1.0 5.0 567 607 + 2.27961 2 3 cbr 210 ------- 1 1.0 5.0 567 607 - 2.27976 2 3 cbr 210 ------- 1 1.0 5.0 562 602 r 2.28232 3 5 cbr 210 ------- 1 1.0 5.0 528 567 + 2.2825 1 2 cbr 210 ------- 1 1.0 5.0 582 623 - 2.2825 1 2 cbr 210 ------- 1 1.0 5.0 582 623 r 2.28272 2 3 cbr 210 ------- 1 1.0 5.0 547 586 + 2.28272 3 5 cbr 210 ------- 1 1.0 5.0 547 586 - 2.28272 3 5 cbr 210 ------- 1 1.0 5.0 547 586 - 2.28312 2 3 cbr 210 ------- 1 1.0 5.0 563 603 r 2.28336 1 2 cbr 210 ------- 1 1.0 5.0 568 608 + 2.28336 2 3 cbr 210 ------- 1 1.0 5.0 568 608 r 2.28488 3 4 tcp 1000 ------- 0 0.0 4.0 17 561 + 2.28488 4 3 ack 40 ------- 0 4.0 0.0 13 624 - 2.28488 4 3 ack 40 ------- 0 4.0 0.0 13 624 r 2.28568 3 5 cbr 210 ------- 1 1.0 5.0 529 568 r 2.28608 2 3 cbr 210 ------- 1 1.0 5.0 548 587 + 2.28608 3 5 cbr 210 ------- 1 1.0 5.0 548 587 - 2.28608 3 5 cbr 210 ------- 1 1.0 5.0 548 587 + 2.28625 1 2 cbr 210 ------- 1 1.0 5.0 583 625 - 2.28625 1 2 cbr 210 ------- 1 1.0 5.0 583 625 - 2.28648 2 3 cbr 210 ------- 1 1.0 5.0 564 604 r 2.28711 1 2 cbr 210 ------- 1 1.0 5.0 569 609 + 2.28711 2 3 cbr 210 ------- 1 1.0 5.0 569 609 r 2.28904 3 5 cbr 210 ------- 1 1.0 5.0 530 569 r 2.28944 2 3 cbr 210 ------- 1 1.0 5.0 549 588 + 2.28944 3 5 cbr 210 ------- 1 1.0 5.0 549 588 - 2.28944 3 5 cbr 210 ------- 1 1.0 5.0 549 588 - 2.28984 2 3 cbr 210 ------- 1 1.0 5.0 565 605 + 2.29 1 2 cbr 210 ------- 1 1.0 5.0 584 626 - 2.29 1 2 cbr 210 ------- 1 1.0 5.0 584 626 r 2.29086 1 2 cbr 210 ------- 1 1.0 5.0 570 610 + 2.29086 2 3 cbr 210 ------- 1 1.0 5.0 570 610 r 2.2924 3 5 cbr 210 ------- 1 1.0 5.0 531 570 r 2.2928 2 3 cbr 210 ------- 1 1.0 5.0 550 589 + 2.2928 3 5 cbr 210 ------- 1 1.0 5.0 550 589 - 2.2928 3 5 cbr 210 ------- 1 1.0 5.0 550 589 - 2.2932 2 3 cbr 210 ------- 1 1.0 5.0 566 606 + 2.29375 1 2 cbr 210 ------- 1 1.0 5.0 585 627 - 2.29375 1 2 cbr 210 ------- 1 1.0 5.0 585 627 r 2.29461 1 2 cbr 210 ------- 1 1.0 5.0 571 611 + 2.29461 2 3 cbr 210 ------- 1 1.0 5.0 571 611 r 2.29576 3 5 cbr 210 ------- 1 1.0 5.0 532 571 r 2.296 4 3 ack 40 ------- 0 4.0 0.0 13 613 + 2.296 3 2 ack 40 ------- 0 4.0 0.0 13 613 - 2.296 3 2 ack 40 ------- 0 4.0 0.0 13 613 r 2.29616 2 3 cbr 210 ------- 1 1.0 5.0 551 590 + 2.29616 3 5 cbr 210 ------- 1 1.0 5.0 551 590 - 2.29616 3 5 cbr 210 ------- 1 1.0 5.0 551 590 - 2.29656 2 3 cbr 210 ------- 1 1.0 5.0 567 607 + 2.2975 1 2 cbr 210 ------- 1 1.0 5.0 586 628 - 2.2975 1 2 cbr 210 ------- 1 1.0 5.0 586 628 r 2.29836 1 2 cbr 210 ------- 1 1.0 5.0 572 612 + 2.29836 2 3 cbr 210 ------- 1 1.0 5.0 572 612 r 2.29912 3 5 cbr 210 ------- 1 1.0 5.0 533 572 r 2.29952 2 3 cbr 210 ------- 1 1.0 5.0 552 591 + 2.29952 3 5 cbr 210 ------- 1 1.0 5.0 552 591 - 2.29952 3 5 cbr 210 ------- 1 1.0 5.0 552 591 - 2.29992 2 3 cbr 210 ------- 1 1.0 5.0 568 608 + 2.30125 1 2 cbr 210 ------- 1 1.0 5.0 587 629 - 2.30125 1 2 cbr 210 ------- 1 1.0 5.0 587 629 r 2.30211 1 2 cbr 210 ------- 1 1.0 5.0 573 614 + 2.30211 2 3 cbr 210 ------- 1 1.0 5.0 573 614 r 2.30248 3 5 cbr 210 ------- 1 1.0 5.0 534 573 r 2.30288 2 3 cbr 210 ------- 1 1.0 5.0 553 592 + 2.30288 3 5 cbr 210 ------- 1 1.0 5.0 553 592 - 2.30288 3 5 cbr 210 ------- 1 1.0 5.0 553 592 - 2.30328 2 3 cbr 210 ------- 1 1.0 5.0 569 609 r 2.30376 3 2 ack 40 ------- 0 4.0 0.0 13 600 + 2.30376 2 0 ack 40 ------- 0 4.0 0.0 13 600 - 2.30376 2 0 ack 40 ------- 0 4.0 0.0 13 600 + 2.305 1 2 cbr 210 ------- 1 1.0 5.0 588 630 - 2.305 1 2 cbr 210 ------- 1 1.0 5.0 588 630 r 2.30584 3 5 cbr 210 ------- 1 1.0 5.0 538 577 r 2.30586 1 2 cbr 210 ------- 1 1.0 5.0 574 615 + 2.30586 2 3 cbr 210 ------- 1 1.0 5.0 574 615 r 2.30624 2 3 cbr 210 ------- 1 1.0 5.0 554 593 + 2.30624 3 5 cbr 210 ------- 1 1.0 5.0 554 593 - 2.30624 3 5 cbr 210 ------- 1 1.0 5.0 554 593 - 2.30664 2 3 cbr 210 ------- 1 1.0 5.0 570 610 + 2.30875 1 2 cbr 210 ------- 1 1.0 5.0 589 631 - 2.30875 1 2 cbr 210 ------- 1 1.0 5.0 589 631 r 2.3092 3 5 cbr 210 ------- 1 1.0 5.0 539 578 r 2.3096 2 3 cbr 210 ------- 1 1.0 5.0 555 594 + 2.3096 3 5 cbr 210 ------- 1 1.0 5.0 555 594 - 2.3096 3 5 cbr 210 ------- 1 1.0 5.0 555 594 r 2.30961 1 2 cbr 210 ------- 1 1.0 5.0 575 616 + 2.30961 2 3 cbr 210 ------- 1 1.0 5.0 575 616 - 2.31 2 3 cbr 210 ------- 1 1.0 5.0 571 611 + 2.3125 1 2 cbr 210 ------- 1 1.0 5.0 590 632 - 2.3125 1 2 cbr 210 ------- 1 1.0 5.0 590 632 r 2.31256 3 5 cbr 210 ------- 1 1.0 5.0 540 579 r 2.31296 2 3 cbr 210 ------- 1 1.0 5.0 556 595 + 2.31296 3 5 cbr 210 ------- 1 1.0 5.0 556 595 - 2.31296 3 5 cbr 210 ------- 1 1.0 5.0 556 595 - 2.31336 2 3 cbr 210 ------- 1 1.0 5.0 572 612 r 2.31336 1 2 cbr 210 ------- 1 1.0 5.0 576 617 + 2.31336 2 3 cbr 210 ------- 1 1.0 5.0 576 617 r 2.31592 3 5 cbr 210 ------- 1 1.0 5.0 541 580 + 2.31625 1 2 cbr 210 ------- 1 1.0 5.0 591 633 - 2.31625 1 2 cbr 210 ------- 1 1.0 5.0 591 633 r 2.31632 2 3 cbr 210 ------- 1 1.0 5.0 557 596 + 2.31632 3 5 cbr 210 ------- 1 1.0 5.0 557 596 - 2.31632 3 5 cbr 210 ------- 1 1.0 5.0 557 596 - 2.31672 2 3 cbr 210 ------- 1 1.0 5.0 573 614 r 2.31711 1 2 cbr 210 ------- 1 1.0 5.0 577 618 + 2.31711 2 3 cbr 210 ------- 1 1.0 5.0 577 618 r 2.31928 3 5 cbr 210 ------- 1 1.0 5.0 542 581 r 2.31968 2 3 cbr 210 ------- 1 1.0 5.0 558 597 + 2.31968 3 5 cbr 210 ------- 1 1.0 5.0 558 597 - 2.31968 3 5 cbr 210 ------- 1 1.0 5.0 558 597 + 2.32 1 2 cbr 210 ------- 1 1.0 5.0 592 634 - 2.32 1 2 cbr 210 ------- 1 1.0 5.0 592 634 - 2.32008 2 3 cbr 210 ------- 1 1.0 5.0 574 615 r 2.32086 1 2 cbr 210 ------- 1 1.0 5.0 578 619 + 2.32086 2 3 cbr 210 ------- 1 1.0 5.0 578 619 r 2.32264 3 5 cbr 210 ------- 1 1.0 5.0 543 582 r 2.32304 2 3 cbr 210 ------- 1 1.0 5.0 559 598 + 2.32304 3 5 cbr 210 ------- 1 1.0 5.0 559 598 - 2.32304 3 5 cbr 210 ------- 1 1.0 5.0 559 598 - 2.32344 2 3 cbr 210 ------- 1 1.0 5.0 575 616 + 2.32375 1 2 cbr 210 ------- 1 1.0 5.0 593 635 - 2.32375 1 2 cbr 210 ------- 1 1.0 5.0 593 635 r 2.32461 1 2 cbr 210 ------- 1 1.0 5.0 579 620 + 2.32461 2 3 cbr 210 ------- 1 1.0 5.0 579 620 r 2.326 3 5 cbr 210 ------- 1 1.0 5.0 544 583 r 2.3264 2 3 cbr 210 ------- 1 1.0 5.0 560 599 + 2.3264 3 5 cbr 210 ------- 1 1.0 5.0 560 599 - 2.3264 3 5 cbr 210 ------- 1 1.0 5.0 560 599 - 2.3268 2 3 cbr 210 ------- 1 1.0 5.0 576 617 + 2.3275 1 2 cbr 210 ------- 1 1.0 5.0 594 636 - 2.3275 1 2 cbr 210 ------- 1 1.0 5.0 594 636 r 2.32836 1 2 cbr 210 ------- 1 1.0 5.0 580 621 + 2.32836 2 3 cbr 210 ------- 1 1.0 5.0 580 621 r 2.32936 3 5 cbr 210 ------- 1 1.0 5.0 545 584 r 2.32976 2 3 cbr 210 ------- 1 1.0 5.0 561 601 + 2.32976 3 5 cbr 210 ------- 1 1.0 5.0 561 601 - 2.32976 3 5 cbr 210 ------- 1 1.0 5.0 561 601 - 2.33016 2 3 cbr 210 ------- 1 1.0 5.0 577 618 + 2.33125 1 2 cbr 210 ------- 1 1.0 5.0 595 637 - 2.33125 1 2 cbr 210 ------- 1 1.0 5.0 595 637 r 2.33211 1 2 cbr 210 ------- 1 1.0 5.0 581 622 + 2.33211 2 3 cbr 210 ------- 1 1.0 5.0 581 622 r 2.33272 3 5 cbr 210 ------- 1 1.0 5.0 546 585 r 2.33312 2 3 cbr 210 ------- 1 1.0 5.0 562 602 + 2.33312 3 5 cbr 210 ------- 1 1.0 5.0 562 602 - 2.33312 3 5 cbr 210 ------- 1 1.0 5.0 562 602 - 2.33352 2 3 cbr 210 ------- 1 1.0 5.0 578 619 + 2.335 1 2 cbr 210 ------- 1 1.0 5.0 596 638 - 2.335 1 2 cbr 210 ------- 1 1.0 5.0 596 638 r 2.33552 4 3 ack 40 ------- 0 4.0 0.0 13 624 + 2.33552 3 2 ack 40 ------- 0 4.0 0.0 13 624 - 2.33552 3 2 ack 40 ------- 0 4.0 0.0 13 624 r 2.33586 1 2 cbr 210 ------- 1 1.0 5.0 582 623 + 2.33586 2 3 cbr 210 ------- 1 1.0 5.0 582 623 r 2.33608 3 5 cbr 210 ------- 1 1.0 5.0 547 586 r 2.33648 2 3 cbr 210 ------- 1 1.0 5.0 563 603 + 2.33648 3 5 cbr 210 ------- 1 1.0 5.0 563 603 - 2.33648 3 5 cbr 210 ------- 1 1.0 5.0 563 603 - 2.33688 2 3 cbr 210 ------- 1 1.0 5.0 579 620 + 2.33875 1 2 cbr 210 ------- 1 1.0 5.0 597 639 - 2.33875 1 2 cbr 210 ------- 1 1.0 5.0 597 639 r 2.33944 3 5 cbr 210 ------- 1 1.0 5.0 548 587 r 2.33961 1 2 cbr 210 ------- 1 1.0 5.0 583 625 + 2.33961 2 3 cbr 210 ------- 1 1.0 5.0 583 625 r 2.33984 2 3 cbr 210 ------- 1 1.0 5.0 564 604 + 2.33984 3 5 cbr 210 ------- 1 1.0 5.0 564 604 - 2.33984 3 5 cbr 210 ------- 1 1.0 5.0 564 604 - 2.34024 2 3 cbr 210 ------- 1 1.0 5.0 580 621 + 2.3425 1 2 cbr 210 ------- 1 1.0 5.0 598 640 - 2.3425 1 2 cbr 210 ------- 1 1.0 5.0 598 640 r 2.3428 3 5 cbr 210 ------- 1 1.0 5.0 549 588 r 2.3432 2 3 cbr 210 ------- 1 1.0 5.0 565 605 + 2.3432 3 5 cbr 210 ------- 1 1.0 5.0 565 605 - 2.3432 3 5 cbr 210 ------- 1 1.0 5.0 565 605 r 2.34336 1 2 cbr 210 ------- 1 1.0 5.0 584 626 + 2.34336 2 3 cbr 210 ------- 1 1.0 5.0 584 626 - 2.3436 2 3 cbr 210 ------- 1 1.0 5.0 581 622 r 2.34616 3 5 cbr 210 ------- 1 1.0 5.0 550 589 + 2.34625 1 2 cbr 210 ------- 1 1.0 5.0 599 641 - 2.34625 1 2 cbr 210 ------- 1 1.0 5.0 599 641 r 2.34656 2 3 cbr 210 ------- 1 1.0 5.0 566 606 + 2.34656 3 5 cbr 210 ------- 1 1.0 5.0 566 606 - 2.34656 3 5 cbr 210 ------- 1 1.0 5.0 566 606 r 2.34664 3 2 ack 40 ------- 0 4.0 0.0 13 613 + 2.34664 2 0 ack 40 ------- 0 4.0 0.0 13 613 - 2.34664 2 0 ack 40 ------- 0 4.0 0.0 13 613 - 2.34696 2 3 cbr 210 ------- 1 1.0 5.0 582 623 r 2.34711 1 2 cbr 210 ------- 1 1.0 5.0 585 627 + 2.34711 2 3 cbr 210 ------- 1 1.0 5.0 585 627 r 2.34952 3 5 cbr 210 ------- 1 1.0 5.0 551 590 r 2.34992 2 3 cbr 210 ------- 1 1.0 5.0 567 607 + 2.34992 3 5 cbr 210 ------- 1 1.0 5.0 567 607 - 2.34992 3 5 cbr 210 ------- 1 1.0 5.0 567 607 + 2.35 1 2 cbr 210 ------- 1 1.0 5.0 600 642 - 2.35 1 2 cbr 210 ------- 1 1.0 5.0 600 642 - 2.35032 2 3 cbr 210 ------- 1 1.0 5.0 583 625 r 2.35086 1 2 cbr 210 ------- 1 1.0 5.0 586 628 + 2.35086 2 3 cbr 210 ------- 1 1.0 5.0 586 628 r 2.35288 3 5 cbr 210 ------- 1 1.0 5.0 552 591 r 2.35328 2 3 cbr 210 ------- 1 1.0 5.0 568 608 + 2.35328 3 5 cbr 210 ------- 1 1.0 5.0 568 608 - 2.35328 3 5 cbr 210 ------- 1 1.0 5.0 568 608 - 2.35368 2 3 cbr 210 ------- 1 1.0 5.0 584 626 r 2.3544 2 0 ack 40 ------- 0 4.0 0.0 13 600 r 2.35461 1 2 cbr 210 ------- 1 1.0 5.0 587 629 + 2.35461 2 3 cbr 210 ------- 1 1.0 5.0 587 629 r 2.35624 3 5 cbr 210 ------- 1 1.0 5.0 553 592 r 2.35664 2 3 cbr 210 ------- 1 1.0 5.0 569 609 + 2.35664 3 5 cbr 210 ------- 1 1.0 5.0 569 609 - 2.35664 3 5 cbr 210 ------- 1 1.0 5.0 569 609 - 2.35704 2 3 cbr 210 ------- 1 1.0 5.0 585 627 r 2.35836 1 2 cbr 210 ------- 1 1.0 5.0 588 630 + 2.35836 2 3 cbr 210 ------- 1 1.0 5.0 588 630 r 2.3596 3 5 cbr 210 ------- 1 1.0 5.0 554 593 r 2.36 2 3 cbr 210 ------- 1 1.0 5.0 570 610 + 2.36 3 5 cbr 210 ------- 1 1.0 5.0 570 610 - 2.36 3 5 cbr 210 ------- 1 1.0 5.0 570 610 - 2.3604 2 3 cbr 210 ------- 1 1.0 5.0 586 628 r 2.36211 1 2 cbr 210 ------- 1 1.0 5.0 589 631 + 2.36211 2 3 cbr 210 ------- 1 1.0 5.0 589 631 r 2.36296 3 5 cbr 210 ------- 1 1.0 5.0 555 594 r 2.36336 2 3 cbr 210 ------- 1 1.0 5.0 571 611 + 2.36336 3 5 cbr 210 ------- 1 1.0 5.0 571 611 - 2.36336 3 5 cbr 210 ------- 1 1.0 5.0 571 611 - 2.36376 2 3 cbr 210 ------- 1 1.0 5.0 587 629 r 2.36586 1 2 cbr 210 ------- 1 1.0 5.0 590 632 + 2.36586 2 3 cbr 210 ------- 1 1.0 5.0 590 632 r 2.36632 3 5 cbr 210 ------- 1 1.0 5.0 556 595 r 2.36672 2 3 cbr 210 ------- 1 1.0 5.0 572 612 + 2.36672 3 5 cbr 210 ------- 1 1.0 5.0 572 612 - 2.36672 3 5 cbr 210 ------- 1 1.0 5.0 572 612 - 2.36712 2 3 cbr 210 ------- 1 1.0 5.0 588 630 r 2.36961 1 2 cbr 210 ------- 1 1.0 5.0 591 633 + 2.36961 2 3 cbr 210 ------- 1 1.0 5.0 591 633 r 2.36968 3 5 cbr 210 ------- 1 1.0 5.0 557 596 r 2.37008 2 3 cbr 210 ------- 1 1.0 5.0 573 614 + 2.37008 3 5 cbr 210 ------- 1 1.0 5.0 573 614 - 2.37008 3 5 cbr 210 ------- 1 1.0 5.0 573 614 - 2.37048 2 3 cbr 210 ------- 1 1.0 5.0 589 631 r 2.37304 3 5 cbr 210 ------- 1 1.0 5.0 558 597 r 2.37336 1 2 cbr 210 ------- 1 1.0 5.0 592 634 + 2.37336 2 3 cbr 210 ------- 1 1.0 5.0 592 634 r 2.37344 2 3 cbr 210 ------- 1 1.0 5.0 574 615 + 2.37344 3 5 cbr 210 ------- 1 1.0 5.0 574 615 - 2.37344 3 5 cbr 210 ------- 1 1.0 5.0 574 615 - 2.37384 2 3 cbr 210 ------- 1 1.0 5.0 590 632 r 2.3764 3 5 cbr 210 ------- 1 1.0 5.0 559 598 r 2.3768 2 3 cbr 210 ------- 1 1.0 5.0 575 616 + 2.3768 3 5 cbr 210 ------- 1 1.0 5.0 575 616 - 2.3768 3 5 cbr 210 ------- 1 1.0 5.0 575 616 r 2.37711 1 2 cbr 210 ------- 1 1.0 5.0 593 635 + 2.37711 2 3 cbr 210 ------- 1 1.0 5.0 593 635 - 2.3772 2 3 cbr 210 ------- 1 1.0 5.0 591 633 r 2.37976 3 5 cbr 210 ------- 1 1.0 5.0 560 599 r 2.38016 2 3 cbr 210 ------- 1 1.0 5.0 576 617 + 2.38016 3 5 cbr 210 ------- 1 1.0 5.0 576 617 - 2.38016 3 5 cbr 210 ------- 1 1.0 5.0 576 617 - 2.38056 2 3 cbr 210 ------- 1 1.0 5.0 592 634 r 2.38086 1 2 cbr 210 ------- 1 1.0 5.0 594 636 + 2.38086 2 3 cbr 210 ------- 1 1.0 5.0 594 636 r 2.38312 3 5 cbr 210 ------- 1 1.0 5.0 561 601 r 2.38352 2 3 cbr 210 ------- 1 1.0 5.0 577 618 + 2.38352 3 5 cbr 210 ------- 1 1.0 5.0 577 618 - 2.38352 3 5 cbr 210 ------- 1 1.0 5.0 577 618 - 2.38392 2 3 cbr 210 ------- 1 1.0 5.0 593 635 r 2.38461 1 2 cbr 210 ------- 1 1.0 5.0 595 637 + 2.38461 2 3 cbr 210 ------- 1 1.0 5.0 595 637 r 2.38616 3 2 ack 40 ------- 0 4.0 0.0 13 624 + 2.38616 2 0 ack 40 ------- 0 4.0 0.0 13 624 - 2.38616 2 0 ack 40 ------- 0 4.0 0.0 13 624 r 2.38648 3 5 cbr 210 ------- 1 1.0 5.0 562 602 r 2.38688 2 3 cbr 210 ------- 1 1.0 5.0 578 619 + 2.38688 3 5 cbr 210 ------- 1 1.0 5.0 578 619 - 2.38688 3 5 cbr 210 ------- 1 1.0 5.0 578 619 - 2.38728 2 3 cbr 210 ------- 1 1.0 5.0 594 636 r 2.38836 1 2 cbr 210 ------- 1 1.0 5.0 596 638 + 2.38836 2 3 cbr 210 ------- 1 1.0 5.0 596 638 r 2.38984 3 5 cbr 210 ------- 1 1.0 5.0 563 603 r 2.39024 2 3 cbr 210 ------- 1 1.0 5.0 579 620 + 2.39024 3 5 cbr 210 ------- 1 1.0 5.0 579 620 - 2.39024 3 5 cbr 210 ------- 1 1.0 5.0 579 620 - 2.39064 2 3 cbr 210 ------- 1 1.0 5.0 595 637 r 2.39211 1 2 cbr 210 ------- 1 1.0 5.0 597 639 + 2.39211 2 3 cbr 210 ------- 1 1.0 5.0 597 639 r 2.3932 3 5 cbr 210 ------- 1 1.0 5.0 564 604 r 2.3936 2 3 cbr 210 ------- 1 1.0 5.0 580 621 + 2.3936 3 5 cbr 210 ------- 1 1.0 5.0 580 621 - 2.3936 3 5 cbr 210 ------- 1 1.0 5.0 580 621 - 2.394 2 3 cbr 210 ------- 1 1.0 5.0 596 638 r 2.39586 1 2 cbr 210 ------- 1 1.0 5.0 598 640 + 2.39586 2 3 cbr 210 ------- 1 1.0 5.0 598 640 r 2.39656 3 5 cbr 210 ------- 1 1.0 5.0 565 605 r 2.39696 2 3 cbr 210 ------- 1 1.0 5.0 581 622 + 2.39696 3 5 cbr 210 ------- 1 1.0 5.0 581 622 - 2.39696 3 5 cbr 210 ------- 1 1.0 5.0 581 622 r 2.39728 2 0 ack 40 ------- 0 4.0 0.0 13 613 - 2.39736 2 3 cbr 210 ------- 1 1.0 5.0 597 639 r 2.39961 1 2 cbr 210 ------- 1 1.0 5.0 599 641 + 2.39961 2 3 cbr 210 ------- 1 1.0 5.0 599 641 r 2.39992 3 5 cbr 210 ------- 1 1.0 5.0 566 606 r 2.40032 2 3 cbr 210 ------- 1 1.0 5.0 582 623 + 2.40032 3 5 cbr 210 ------- 1 1.0 5.0 582 623 - 2.40032 3 5 cbr 210 ------- 1 1.0 5.0 582 623 - 2.40072 2 3 cbr 210 ------- 1 1.0 5.0 598 640 r 2.40328 3 5 cbr 210 ------- 1 1.0 5.0 567 607 r 2.40336 1 2 cbr 210 ------- 1 1.0 5.0 600 642 + 2.40336 2 3 cbr 210 ------- 1 1.0 5.0 600 642 r 2.40368 2 3 cbr 210 ------- 1 1.0 5.0 583 625 + 2.40368 3 5 cbr 210 ------- 1 1.0 5.0 583 625 - 2.40368 3 5 cbr 210 ------- 1 1.0 5.0 583 625 - 2.40408 2 3 cbr 210 ------- 1 1.0 5.0 599 641 r 2.40664 3 5 cbr 210 ------- 1 1.0 5.0 568 608 r 2.40704 2 3 cbr 210 ------- 1 1.0 5.0 584 626 + 2.40704 3 5 cbr 210 ------- 1 1.0 5.0 584 626 - 2.40704 3 5 cbr 210 ------- 1 1.0 5.0 584 626 - 2.40744 2 3 cbr 210 ------- 1 1.0 5.0 600 642 r 2.41 3 5 cbr 210 ------- 1 1.0 5.0 569 609 r 2.4104 2 3 cbr 210 ------- 1 1.0 5.0 585 627 + 2.4104 3 5 cbr 210 ------- 1 1.0 5.0 585 627 - 2.4104 3 5 cbr 210 ------- 1 1.0 5.0 585 627 r 2.41336 3 5 cbr 210 ------- 1 1.0 5.0 570 610 r 2.41376 2 3 cbr 210 ------- 1 1.0 5.0 586 628 + 2.41376 3 5 cbr 210 ------- 1 1.0 5.0 586 628 - 2.41376 3 5 cbr 210 ------- 1 1.0 5.0 586 628 r 2.41672 3 5 cbr 210 ------- 1 1.0 5.0 571 611 r 2.41712 2 3 cbr 210 ------- 1 1.0 5.0 587 629 + 2.41712 3 5 cbr 210 ------- 1 1.0 5.0 587 629 - 2.41712 3 5 cbr 210 ------- 1 1.0 5.0 587 629 r 2.42008 3 5 cbr 210 ------- 1 1.0 5.0 572 612 r 2.42048 2 3 cbr 210 ------- 1 1.0 5.0 588 630 + 2.42048 3 5 cbr 210 ------- 1 1.0 5.0 588 630 - 2.42048 3 5 cbr 210 ------- 1 1.0 5.0 588 630 r 2.42344 3 5 cbr 210 ------- 1 1.0 5.0 573 614 r 2.42384 2 3 cbr 210 ------- 1 1.0 5.0 589 631 + 2.42384 3 5 cbr 210 ------- 1 1.0 5.0 589 631 - 2.42384 3 5 cbr 210 ------- 1 1.0 5.0 589 631 r 2.4268 3 5 cbr 210 ------- 1 1.0 5.0 574 615 r 2.4272 2 3 cbr 210 ------- 1 1.0 5.0 590 632 + 2.4272 3 5 cbr 210 ------- 1 1.0 5.0 590 632 - 2.4272 3 5 cbr 210 ------- 1 1.0 5.0 590 632 r 2.43016 3 5 cbr 210 ------- 1 1.0 5.0 575 616 r 2.43056 2 3 cbr 210 ------- 1 1.0 5.0 591 633 + 2.43056 3 5 cbr 210 ------- 1 1.0 5.0 591 633 - 2.43056 3 5 cbr 210 ------- 1 1.0 5.0 591 633 r 2.43352 3 5 cbr 210 ------- 1 1.0 5.0 576 617 r 2.43392 2 3 cbr 210 ------- 1 1.0 5.0 592 634 + 2.43392 3 5 cbr 210 ------- 1 1.0 5.0 592 634 - 2.43392 3 5 cbr 210 ------- 1 1.0 5.0 592 634 r 2.4368 2 0 ack 40 ------- 0 4.0 0.0 13 624 + 2.4368 0 2 tcp 1000 ------- 0 0.0 4.0 14 643 - 2.4368 0 2 tcp 1000 ------- 0 0.0 4.0 14 643 + 2.4368 0 2 tcp 1000 ------- 0 0.0 4.0 15 644 + 2.4368 0 2 tcp 1000 ------- 0 0.0 4.0 16 645 r 2.43688 3 5 cbr 210 ------- 1 1.0 5.0 577 618 r 2.43728 2 3 cbr 210 ------- 1 1.0 5.0 593 635 + 2.43728 3 5 cbr 210 ------- 1 1.0 5.0 593 635 - 2.43728 3 5 cbr 210 ------- 1 1.0 5.0 593 635 r 2.44024 3 5 cbr 210 ------- 1 1.0 5.0 578 619 r 2.44064 2 3 cbr 210 ------- 1 1.0 5.0 594 636 + 2.44064 3 5 cbr 210 ------- 1 1.0 5.0 594 636 - 2.44064 3 5 cbr 210 ------- 1 1.0 5.0 594 636 r 2.4436 3 5 cbr 210 ------- 1 1.0 5.0 579 620 r 2.444 2 3 cbr 210 ------- 1 1.0 5.0 595 637 + 2.444 3 5 cbr 210 ------- 1 1.0 5.0 595 637 - 2.444 3 5 cbr 210 ------- 1 1.0 5.0 595 637 r 2.44696 3 5 cbr 210 ------- 1 1.0 5.0 580 621 r 2.44736 2 3 cbr 210 ------- 1 1.0 5.0 596 638 + 2.44736 3 5 cbr 210 ------- 1 1.0 5.0 596 638 - 2.44736 3 5 cbr 210 ------- 1 1.0 5.0 596 638 r 2.45032 3 5 cbr 210 ------- 1 1.0 5.0 581 622 r 2.45072 2 3 cbr 210 ------- 1 1.0 5.0 597 639 + 2.45072 3 5 cbr 210 ------- 1 1.0 5.0 597 639 - 2.45072 3 5 cbr 210 ------- 1 1.0 5.0 597 639 - 2.4528 0 2 tcp 1000 ------- 0 0.0 4.0 15 644 r 2.45368 3 5 cbr 210 ------- 1 1.0 5.0 582 623 r 2.45408 2 3 cbr 210 ------- 1 1.0 5.0 598 640 + 2.45408 3 5 cbr 210 ------- 1 1.0 5.0 598 640 - 2.45408 3 5 cbr 210 ------- 1 1.0 5.0 598 640 r 2.45704 3 5 cbr 210 ------- 1 1.0 5.0 583 625 r 2.45744 2 3 cbr 210 ------- 1 1.0 5.0 599 641 + 2.45744 3 5 cbr 210 ------- 1 1.0 5.0 599 641 - 2.45744 3 5 cbr 210 ------- 1 1.0 5.0 599 641 r 2.4604 3 5 cbr 210 ------- 1 1.0 5.0 584 626 r 2.4608 2 3 cbr 210 ------- 1 1.0 5.0 600 642 + 2.4608 3 5 cbr 210 ------- 1 1.0 5.0 600 642 - 2.4608 3 5 cbr 210 ------- 1 1.0 5.0 600 642 r 2.46376 3 5 cbr 210 ------- 1 1.0 5.0 585 627 r 2.46712 3 5 cbr 210 ------- 1 1.0 5.0 586 628 - 2.4688 0 2 tcp 1000 ------- 0 0.0 4.0 16 645 r 2.47048 3 5 cbr 210 ------- 1 1.0 5.0 587 629 r 2.47384 3 5 cbr 210 ------- 1 1.0 5.0 588 630 r 2.4772 3 5 cbr 210 ------- 1 1.0 5.0 589 631 r 2.48056 3 5 cbr 210 ------- 1 1.0 5.0 590 632 r 2.48392 3 5 cbr 210 ------- 1 1.0 5.0 591 633 r 2.48728 3 5 cbr 210 ------- 1 1.0 5.0 592 634 r 2.49064 3 5 cbr 210 ------- 1 1.0 5.0 593 635 r 2.494 3 5 cbr 210 ------- 1 1.0 5.0 594 636 r 2.49736 3 5 cbr 210 ------- 1 1.0 5.0 595 637 r 2.50072 3 5 cbr 210 ------- 1 1.0 5.0 596 638 r 2.5028 0 2 tcp 1000 ------- 0 0.0 4.0 14 643 + 2.5028 2 3 tcp 1000 ------- 0 0.0 4.0 14 643 - 2.5028 2 3 tcp 1000 ------- 0 0.0 4.0 14 643 r 2.50408 3 5 cbr 210 ------- 1 1.0 5.0 597 639 r 2.50744 3 5 cbr 210 ------- 1 1.0 5.0 598 640 r 2.5108 3 5 cbr 210 ------- 1 1.0 5.0 599 641 r 2.51416 3 5 cbr 210 ------- 1 1.0 5.0 600 642 r 2.5188 0 2 tcp 1000 ------- 0 0.0 4.0 15 644 + 2.5188 2 3 tcp 1000 ------- 0 0.0 4.0 15 644 - 2.5188 2 3 tcp 1000 ------- 0 0.0 4.0 15 644 r 2.5348 0 2 tcp 1000 ------- 0 0.0 4.0 16 645 + 2.5348 2 3 tcp 1000 ------- 0 0.0 4.0 16 645 - 2.5348 2 3 tcp 1000 ------- 0 0.0 4.0 16 645 r 2.5688 2 3 tcp 1000 ------- 0 0.0 4.0 14 643 + 2.5688 3 4 tcp 1000 ------- 0 0.0 4.0 14 643 - 2.5688 3 4 tcp 1000 ------- 0 0.0 4.0 14 643 r 2.5848 2 3 tcp 1000 ------- 0 0.0 4.0 15 644 + 2.5848 3 4 tcp 1000 ------- 0 0.0 4.0 15 644 - 2.5848 3 4 tcp 1000 ------- 0 0.0 4.0 15 644 r 2.6008 2 3 tcp 1000 ------- 0 0.0 4.0 16 645 + 2.6008 3 4 tcp 1000 ------- 0 0.0 4.0 16 645 - 2.6008 3 4 tcp 1000 ------- 0 0.0 4.0 16 645 r 2.6348 3 4 tcp 1000 ------- 0 0.0 4.0 14 643 + 2.6348 4 3 ack 40 ------- 0 4.0 0.0 14 646 - 2.6348 4 3 ack 40 ------- 0 4.0 0.0 14 646 r 2.6508 3 4 tcp 1000 ------- 0 0.0 4.0 15 644 + 2.6508 4 3 ack 40 ------- 0 4.0 0.0 15 647 - 2.6508 4 3 ack 40 ------- 0 4.0 0.0 15 647 r 2.6668 3 4 tcp 1000 ------- 0 0.0 4.0 16 645 + 2.6668 4 3 ack 40 ------- 0 4.0 0.0 16 648 - 2.6668 4 3 ack 40 ------- 0 4.0 0.0 16 648 r 2.68544 4 3 ack 40 ------- 0 4.0 0.0 14 646 + 2.68544 3 2 ack 40 ------- 0 4.0 0.0 14 646 - 2.68544 3 2 ack 40 ------- 0 4.0 0.0 14 646 r 2.70144 4 3 ack 40 ------- 0 4.0 0.0 15 647 + 2.70144 3 2 ack 40 ------- 0 4.0 0.0 15 647 - 2.70144 3 2 ack 40 ------- 0 4.0 0.0 15 647 r 2.71744 4 3 ack 40 ------- 0 4.0 0.0 16 648 + 2.71744 3 2 ack 40 ------- 0 4.0 0.0 16 648 - 2.71744 3 2 ack 40 ------- 0 4.0 0.0 16 648 r 2.73608 3 2 ack 40 ------- 0 4.0 0.0 14 646 + 2.73608 2 0 ack 40 ------- 0 4.0 0.0 14 646 - 2.73608 2 0 ack 40 ------- 0 4.0 0.0 14 646 r 2.75208 3 2 ack 40 ------- 0 4.0 0.0 15 647 + 2.75208 2 0 ack 40 ------- 0 4.0 0.0 15 647 - 2.75208 2 0 ack 40 ------- 0 4.0 0.0 15 647 r 2.76808 3 2 ack 40 ------- 0 4.0 0.0 16 648 + 2.76808 2 0 ack 40 ------- 0 4.0 0.0 16 648 - 2.76808 2 0 ack 40 ------- 0 4.0 0.0 16 648 r 2.78672 2 0 ack 40 ------- 0 4.0 0.0 14 646 r 2.80272 2 0 ack 40 ------- 0 4.0 0.0 15 647 r 2.81872 2 0 ack 40 ------- 0 4.0 0.0 16 648 nam-1.15/edu/B4-sliding-window-loss.nam0000664000076400007660000146113706756703161016555 0ustar tomhnsnamV -t * -v 1.0a5 -a 1 -c 1 -F 1 -M 2 c -t * -i 0 -n black N -t * -S 0 -n {TCP session between node 0.0 and node 4.0} -p TCP -m {} N -t * -S 0 -h 17 N -t * -F 0 -M 0 -n tcp N -t * -F 0 -M 1 -n ack A -t * -n 1 -p 0 -o 255 -c 15 -a 1 A -t * -h 1 -m 127 -s 8 n -t * -a 4 -s 4 -S UP -v circle -c black n -t * -a 0 -s 0 -S UP -v circle -c black n -t * -a 5 -s 5 -S UP -v circle -c red n -t * -a 1 -s 1 -S UP -v circle -c red n -t * -a 2 -s 2 -S UP -v rectangular -c blue n -t * -a 3 -s 3 -S UP -v rectangular -c blue l -t * -s 0 -d 2 -S UP -r 500000 -D 0.050000000000000003 -c black -o right-down l -t * -s 1 -d 2 -S UP -r 500000 -D 0.050000000000000003 -c black -o right-up l -t * -s 2 -d 3 -S UP -r 500000 -D 0.050000000000000003 -c black -o right l -t * -s 3 -d 4 -S UP -r 500000 -D 0.050000000000000003 -c black -o right-up l -t * -s 3 -d 5 -S UP -r 500000 -D 0.050000000000000003 -c black -o right-down q -t * -s 3 -d 2 -a 0.5 q -t * -s 2 -d 3 -a 0.5 a -t 0.00000000000000000 -s 0 -d 4 -n tcp f -t 0.00000000000000000 -s 0 -d 4 -n cwnd_ -a tcp -v 4.000000 -T v f -t 0.00000000000000000 -s 0 -d 4 -n cwnd_ -a tcp -v 4.000000 -o 4.000000 -T v v -t 0.00000000000000000 monitor_agent 0 tcp n -t 0 -s 0 -S DLABEL -l Sliding-W-sender -L "" n -t 0 -s 1 -S DLABEL -l CBR-sender -L "" n -t 0 -s 4 -S DLABEL -l Sliding-W-receiver -L "" n -t 0 -s 5 -S DLABEL -l CBR-receiver -L "" v -t 0 sim_annotation 0 1 Sliding Window with packet loss + -t 0.1 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -f 0 -m 0 -y {0 0} - -t 0.1 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} h -t 0.1 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {-1 -1} + -t 0.1 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 1 -a 0 -S 0 -f 0 -m 0 -y {1 1} + -t 0.1 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -f 0 -m 0 -y {2 2} + -t 0.1 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -f 0 -m 0 -y {3 3} + -t 0.1 -s 1 -d 2 -p cbr -e 210 -c 1 -i 4 -a 1 - -t 0.1 -s 1 -d 2 -p cbr -e 210 -c 1 -i 4 -a 1 h -t 0.1 -s 1 -d 2 -p cbr -e 210 -c 1 -i 4 -a 1 + -t 0.10375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 5 -a 1 - -t 0.10375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 5 -a 1 h -t 0.10375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 5 -a 1 + -t 0.1075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 6 -a 1 - -t 0.1075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 6 -a 1 h -t 0.1075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 6 -a 1 + -t 0.11125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 7 -a 1 - -t 0.11125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 7 -a 1 h -t 0.11125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 7 -a 1 + -t 0.115 -s 1 -d 2 -p cbr -e 210 -c 1 -i 8 -a 1 - -t 0.115 -s 1 -d 2 -p cbr -e 210 -c 1 -i 8 -a 1 h -t 0.115 -s 1 -d 2 -p cbr -e 210 -c 1 -i 8 -a 1 - -t 0.116 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 1 -a 0 -S 0 -y {1 1} h -t 0.116 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 1 -a 0 -S 0 -y {-1 -1} + -t 0.11875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 9 -a 1 - -t 0.11875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 9 -a 1 h -t 0.11875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 9 -a 1 + -t 0.1225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 10 -a 1 - -t 0.1225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 10 -a 1 h -t 0.1225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 10 -a 1 + -t 0.12625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 11 -a 1 - -t 0.12625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 11 -a 1 h -t 0.12625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 11 -a 1 + -t 0.13 -s 1 -d 2 -p cbr -e 210 -c 1 -i 12 -a 1 - -t 0.13 -s 1 -d 2 -p cbr -e 210 -c 1 -i 12 -a 1 h -t 0.13 -s 1 -d 2 -p cbr -e 210 -c 1 -i 12 -a 1 - -t 0.132 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {2 2} h -t 0.132 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {-1 -1} + -t 0.13375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 13 -a 1 - -t 0.13375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 13 -a 1 h -t 0.13375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 13 -a 1 + -t 0.1375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 14 -a 1 - -t 0.1375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 14 -a 1 h -t 0.1375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 14 -a 1 + -t 0.14125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 15 -a 1 - -t 0.14125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 15 -a 1 h -t 0.14125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 15 -a 1 + -t 0.145 -s 1 -d 2 -p cbr -e 210 -c 1 -i 16 -a 1 - -t 0.145 -s 1 -d 2 -p cbr -e 210 -c 1 -i 16 -a 1 h -t 0.145 -s 1 -d 2 -p cbr -e 210 -c 1 -i 16 -a 1 - -t 0.148 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {3 3} h -t 0.148 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {-1 -1} + -t 0.14875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 17 -a 1 - -t 0.14875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 17 -a 1 h -t 0.14875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 17 -a 1 + -t 0.1525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 18 -a 1 - -t 0.1525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 18 -a 1 h -t 0.1525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 18 -a 1 r -t 0.15336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 4 -a 1 + -t 0.15336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 4 -a 1 - -t 0.15336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 4 -a 1 h -t 0.15336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 4 -a 1 + -t 0.15625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 19 -a 1 - -t 0.15625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 19 -a 1 h -t 0.15625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 19 -a 1 r -t 0.15711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 5 -a 1 + -t 0.15711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 5 -a 1 - -t 0.15711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 5 -a 1 h -t 0.15711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 5 -a 1 + -t 0.16 -s 1 -d 2 -p cbr -e 210 -c 1 -i 20 -a 1 - -t 0.16 -s 1 -d 2 -p cbr -e 210 -c 1 -i 20 -a 1 h -t 0.16 -s 1 -d 2 -p cbr -e 210 -c 1 -i 20 -a 1 r -t 0.16086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 6 -a 1 + -t 0.16086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 6 -a 1 - -t 0.16086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 6 -a 1 h -t 0.16086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 6 -a 1 + -t 0.16375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 21 -a 1 - -t 0.16375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 21 -a 1 h -t 0.16375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 21 -a 1 r -t 0.16461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 7 -a 1 + -t 0.16461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 7 -a 1 - -t 0.16461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 7 -a 1 h -t 0.16461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 7 -a 1 r -t 0.166 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} + -t 0.166 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} + -t 0.1675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 22 -a 1 - -t 0.1675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 22 -a 1 h -t 0.1675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 22 -a 1 - -t 0.16797 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} h -t 0.16797 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {-1 -1} r -t 0.16836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 8 -a 1 + -t 0.16836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 8 -a 1 + -t 0.17125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 23 -a 1 - -t 0.17125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 23 -a 1 h -t 0.17125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 23 -a 1 r -t 0.17211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 9 -a 1 + -t 0.17211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 9 -a 1 + -t 0.175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 24 -a 1 - -t 0.175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 24 -a 1 h -t 0.175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 24 -a 1 r -t 0.17586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 10 -a 1 + -t 0.17586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 10 -a 1 + -t 0.17875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 25 -a 1 - -t 0.17875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 25 -a 1 h -t 0.17875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 25 -a 1 r -t 0.17961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 11 -a 1 + -t 0.17961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 11 -a 1 r -t 0.182 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 1 -a 0 -S 0 -y {1 1} + -t 0.182 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 1 -a 0 -S 0 -y {1 1} + -t 0.1825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 26 -a 1 - -t 0.1825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 26 -a 1 h -t 0.1825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 26 -a 1 r -t 0.18336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 12 -a 1 + -t 0.18336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 12 -a 1 - -t 0.18397 -s 2 -d 3 -p cbr -e 210 -c 1 -i 8 -a 1 h -t 0.18397 -s 2 -d 3 -p cbr -e 210 -c 1 -i 8 -a 1 + -t 0.18625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 27 -a 1 - -t 0.18625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 27 -a 1 h -t 0.18625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 27 -a 1 r -t 0.18711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 13 -a 1 + -t 0.18711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 13 -a 1 - -t 0.18733 -s 2 -d 3 -p cbr -e 210 -c 1 -i 9 -a 1 h -t 0.18733 -s 2 -d 3 -p cbr -e 210 -c 1 -i 9 -a 1 + -t 0.19 -s 1 -d 2 -p cbr -e 210 -c 1 -i 28 -a 1 - -t 0.19 -s 1 -d 2 -p cbr -e 210 -c 1 -i 28 -a 1 h -t 0.19 -s 1 -d 2 -p cbr -e 210 -c 1 -i 28 -a 1 - -t 0.19069 -s 2 -d 3 -p cbr -e 210 -c 1 -i 10 -a 1 h -t 0.19069 -s 2 -d 3 -p cbr -e 210 -c 1 -i 10 -a 1 r -t 0.19086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 14 -a 1 + -t 0.19086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 14 -a 1 + -t 0.19375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 29 -a 1 - -t 0.19375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 29 -a 1 h -t 0.19375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 29 -a 1 - -t 0.19405 -s 2 -d 3 -p cbr -e 210 -c 1 -i 11 -a 1 h -t 0.19405 -s 2 -d 3 -p cbr -e 210 -c 1 -i 11 -a 1 r -t 0.19461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 15 -a 1 + -t 0.19461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 15 -a 1 - -t 0.19741 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 1 -a 0 -S 0 -y {1 1} h -t 0.19741 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 1 -a 0 -S 0 -y {-1 -1} + -t 0.1975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 30 -a 1 - -t 0.1975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 30 -a 1 h -t 0.1975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 30 -a 1 r -t 0.198 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {2 2} + -t 0.198 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {2 2} r -t 0.19836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 16 -a 1 + -t 0.19836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 16 -a 1 + -t 0.20125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 31 -a 1 - -t 0.20125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 31 -a 1 h -t 0.20125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 31 -a 1 r -t 0.20211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 17 -a 1 + -t 0.20211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 17 -a 1 + -t 0.205 -s 1 -d 2 -p cbr -e 210 -c 1 -i 32 -a 1 - -t 0.205 -s 1 -d 2 -p cbr -e 210 -c 1 -i 32 -a 1 h -t 0.205 -s 1 -d 2 -p cbr -e 210 -c 1 -i 32 -a 1 r -t 0.20586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 18 -a 1 + -t 0.20586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 18 -a 1 r -t 0.20672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 4 -a 1 + -t 0.20672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 4 -a 1 - -t 0.20672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 4 -a 1 h -t 0.20672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 4 -a 1 + -t 0.20875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 33 -a 1 - -t 0.20875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 33 -a 1 h -t 0.20875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 33 -a 1 r -t 0.20961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 19 -a 1 + -t 0.20961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 19 -a 1 r -t 0.21047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 5 -a 1 + -t 0.21047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 5 -a 1 - -t 0.21047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 5 -a 1 h -t 0.21047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 5 -a 1 + -t 0.2125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 34 -a 1 - -t 0.2125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 34 -a 1 h -t 0.2125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 34 -a 1 r -t 0.21336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 20 -a 1 + -t 0.21336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 20 -a 1 d -t 0.21336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 20 -a 1 - -t 0.21341 -s 2 -d 3 -p cbr -e 210 -c 1 -i 12 -a 1 h -t 0.21341 -s 2 -d 3 -p cbr -e 210 -c 1 -i 12 -a 1 r -t 0.214 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {3 3} + -t 0.214 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {3 3} r -t 0.21422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 6 -a 1 + -t 0.21422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 6 -a 1 - -t 0.21422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 6 -a 1 h -t 0.21422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 6 -a 1 + -t 0.21625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 35 -a 1 - -t 0.21625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 35 -a 1 h -t 0.21625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 35 -a 1 - -t 0.21677 -s 2 -d 3 -p cbr -e 210 -c 1 -i 13 -a 1 h -t 0.21677 -s 2 -d 3 -p cbr -e 210 -c 1 -i 13 -a 1 r -t 0.21711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 21 -a 1 + -t 0.21711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 21 -a 1 r -t 0.21797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 7 -a 1 + -t 0.21797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 7 -a 1 - -t 0.21797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 7 -a 1 h -t 0.21797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 7 -a 1 + -t 0.22 -s 1 -d 2 -p cbr -e 210 -c 1 -i 36 -a 1 - -t 0.22 -s 1 -d 2 -p cbr -e 210 -c 1 -i 36 -a 1 h -t 0.22 -s 1 -d 2 -p cbr -e 210 -c 1 -i 36 -a 1 - -t 0.22013 -s 2 -d 3 -p cbr -e 210 -c 1 -i 14 -a 1 h -t 0.22013 -s 2 -d 3 -p cbr -e 210 -c 1 -i 14 -a 1 r -t 0.22086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 22 -a 1 + -t 0.22086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 22 -a 1 - -t 0.22349 -s 2 -d 3 -p cbr -e 210 -c 1 -i 15 -a 1 h -t 0.22349 -s 2 -d 3 -p cbr -e 210 -c 1 -i 15 -a 1 + -t 0.22375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 37 -a 1 - -t 0.22375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 37 -a 1 h -t 0.22375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 37 -a 1 r -t 0.22461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 23 -a 1 + -t 0.22461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 23 -a 1 - -t 0.22685 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {2 2} h -t 0.22685 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {-1 -1} + -t 0.2275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 38 -a 1 - -t 0.2275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 38 -a 1 h -t 0.2275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 38 -a 1 r -t 0.22836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 24 -a 1 + -t 0.22836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 24 -a 1 + -t 0.23125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 39 -a 1 - -t 0.23125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 39 -a 1 h -t 0.23125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 39 -a 1 r -t 0.23211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 25 -a 1 + -t 0.23211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 25 -a 1 d -t 0.23211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 25 -a 1 r -t 0.23397 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} + -t 0.23397 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} - -t 0.23397 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} h -t 0.23397 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {-1 -1} + -t 0.235 -s 1 -d 2 -p cbr -e 210 -c 1 -i 40 -a 1 - -t 0.235 -s 1 -d 2 -p cbr -e 210 -c 1 -i 40 -a 1 h -t 0.235 -s 1 -d 2 -p cbr -e 210 -c 1 -i 40 -a 1 r -t 0.23586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 26 -a 1 + -t 0.23586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 26 -a 1 d -t 0.23586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 26 -a 1 r -t 0.23733 -s 2 -d 3 -p cbr -e 210 -c 1 -i 8 -a 1 + -t 0.23733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 8 -a 1 - -t 0.23733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 8 -a 1 h -t 0.23733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 8 -a 1 + -t 0.23875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 41 -a 1 - -t 0.23875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 41 -a 1 h -t 0.23875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 41 -a 1 r -t 0.23961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 27 -a 1 + -t 0.23961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 27 -a 1 d -t 0.23961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 27 -a 1 r -t 0.24069 -s 2 -d 3 -p cbr -e 210 -c 1 -i 9 -a 1 + -t 0.24069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 9 -a 1 - -t 0.24069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 9 -a 1 h -t 0.24069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 9 -a 1 + -t 0.2425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 42 -a 1 - -t 0.2425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 42 -a 1 h -t 0.2425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 42 -a 1 - -t 0.24285 -s 2 -d 3 -p cbr -e 210 -c 1 -i 16 -a 1 h -t 0.24285 -s 2 -d 3 -p cbr -e 210 -c 1 -i 16 -a 1 r -t 0.24336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 28 -a 1 + -t 0.24336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 28 -a 1 r -t 0.24405 -s 2 -d 3 -p cbr -e 210 -c 1 -i 10 -a 1 + -t 0.24405 -s 3 -d 5 -p cbr -e 210 -c 1 -i 10 -a 1 - -t 0.24405 -s 3 -d 5 -p cbr -e 210 -c 1 -i 10 -a 1 h -t 0.24405 -s 3 -d 5 -p cbr -e 210 -c 1 -i 10 -a 1 - -t 0.24621 -s 2 -d 3 -p cbr -e 210 -c 1 -i 17 -a 1 h -t 0.24621 -s 2 -d 3 -p cbr -e 210 -c 1 -i 17 -a 1 + -t 0.24625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 43 -a 1 - -t 0.24625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 43 -a 1 h -t 0.24625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 43 -a 1 r -t 0.24711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 29 -a 1 + -t 0.24711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 29 -a 1 r -t 0.24741 -s 2 -d 3 -p cbr -e 210 -c 1 -i 11 -a 1 + -t 0.24741 -s 3 -d 5 -p cbr -e 210 -c 1 -i 11 -a 1 - -t 0.24741 -s 3 -d 5 -p cbr -e 210 -c 1 -i 11 -a 1 h -t 0.24741 -s 3 -d 5 -p cbr -e 210 -c 1 -i 11 -a 1 - -t 0.24957 -s 2 -d 3 -p cbr -e 210 -c 1 -i 18 -a 1 h -t 0.24957 -s 2 -d 3 -p cbr -e 210 -c 1 -i 18 -a 1 + -t 0.25 -s 1 -d 2 -p cbr -e 210 -c 1 -i 44 -a 1 - -t 0.25 -s 1 -d 2 -p cbr -e 210 -c 1 -i 44 -a 1 h -t 0.25 -s 1 -d 2 -p cbr -e 210 -c 1 -i 44 -a 1 r -t 0.25086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 30 -a 1 + -t 0.25086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 30 -a 1 - -t 0.25293 -s 2 -d 3 -p cbr -e 210 -c 1 -i 19 -a 1 h -t 0.25293 -s 2 -d 3 -p cbr -e 210 -c 1 -i 19 -a 1 + -t 0.25375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 45 -a 1 - -t 0.25375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 45 -a 1 h -t 0.25375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 45 -a 1 r -t 0.25461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 31 -a 1 + -t 0.25461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 31 -a 1 - -t 0.25629 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {3 3} h -t 0.25629 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {-1 -1} + -t 0.2575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 46 -a 1 - -t 0.2575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 46 -a 1 h -t 0.2575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 46 -a 1 r -t 0.25836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 32 -a 1 + -t 0.25836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 32 -a 1 r -t 0.26008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 4 -a 1 + -t 0.26125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 47 -a 1 - -t 0.26125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 47 -a 1 h -t 0.26125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 47 -a 1 r -t 0.26211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 33 -a 1 + -t 0.26211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 33 -a 1 d -t 0.26211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 33 -a 1 r -t 0.26341 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 1 -a 0 -S 0 -y {1 1} + -t 0.26341 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 1 -a 0 -S 0 -y {1 1} - -t 0.26341 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 1 -a 0 -S 0 -y {1 1} h -t 0.26341 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 1 -a 0 -S 0 -y {-1 -1} r -t 0.26383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 5 -a 1 + -t 0.265 -s 1 -d 2 -p cbr -e 210 -c 1 -i 48 -a 1 - -t 0.265 -s 1 -d 2 -p cbr -e 210 -c 1 -i 48 -a 1 h -t 0.265 -s 1 -d 2 -p cbr -e 210 -c 1 -i 48 -a 1 r -t 0.26586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 34 -a 1 + -t 0.26586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 34 -a 1 d -t 0.26586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 34 -a 1 r -t 0.26677 -s 2 -d 3 -p cbr -e 210 -c 1 -i 12 -a 1 + -t 0.26677 -s 3 -d 5 -p cbr -e 210 -c 1 -i 12 -a 1 - -t 0.26677 -s 3 -d 5 -p cbr -e 210 -c 1 -i 12 -a 1 h -t 0.26677 -s 3 -d 5 -p cbr -e 210 -c 1 -i 12 -a 1 r -t 0.26758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 6 -a 1 + -t 0.26875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 49 -a 1 - -t 0.26875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 49 -a 1 h -t 0.26875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 49 -a 1 r -t 0.26961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 35 -a 1 + -t 0.26961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 35 -a 1 d -t 0.26961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 35 -a 1 r -t 0.27013 -s 2 -d 3 -p cbr -e 210 -c 1 -i 13 -a 1 + -t 0.27013 -s 3 -d 5 -p cbr -e 210 -c 1 -i 13 -a 1 - -t 0.27013 -s 3 -d 5 -p cbr -e 210 -c 1 -i 13 -a 1 h -t 0.27013 -s 3 -d 5 -p cbr -e 210 -c 1 -i 13 -a 1 r -t 0.27133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 7 -a 1 - -t 0.27229 -s 2 -d 3 -p cbr -e 210 -c 1 -i 21 -a 1 h -t 0.27229 -s 2 -d 3 -p cbr -e 210 -c 1 -i 21 -a 1 + -t 0.2725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 50 -a 1 - -t 0.2725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 50 -a 1 h -t 0.2725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 50 -a 1 r -t 0.27336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 36 -a 1 + -t 0.27336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 36 -a 1 r -t 0.27349 -s 2 -d 3 -p cbr -e 210 -c 1 -i 14 -a 1 + -t 0.27349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 14 -a 1 - -t 0.27349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 14 -a 1 h -t 0.27349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 14 -a 1 - -t 0.27565 -s 2 -d 3 -p cbr -e 210 -c 1 -i 22 -a 1 h -t 0.27565 -s 2 -d 3 -p cbr -e 210 -c 1 -i 22 -a 1 + -t 0.27625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 51 -a 1 - -t 0.27625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 51 -a 1 h -t 0.27625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 51 -a 1 r -t 0.27685 -s 2 -d 3 -p cbr -e 210 -c 1 -i 15 -a 1 + -t 0.27685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 15 -a 1 - -t 0.27685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 15 -a 1 h -t 0.27685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 15 -a 1 r -t 0.27711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 37 -a 1 + -t 0.27711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 37 -a 1 - -t 0.27901 -s 2 -d 3 -p cbr -e 210 -c 1 -i 23 -a 1 h -t 0.27901 -s 2 -d 3 -p cbr -e 210 -c 1 -i 23 -a 1 + -t 0.28 -s 1 -d 2 -p cbr -e 210 -c 1 -i 52 -a 1 - -t 0.28 -s 1 -d 2 -p cbr -e 210 -c 1 -i 52 -a 1 h -t 0.28 -s 1 -d 2 -p cbr -e 210 -c 1 -i 52 -a 1 r -t 0.28086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 38 -a 1 + -t 0.28086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 38 -a 1 - -t 0.28237 -s 2 -d 3 -p cbr -e 210 -c 1 -i 24 -a 1 h -t 0.28237 -s 2 -d 3 -p cbr -e 210 -c 1 -i 24 -a 1 + -t 0.28375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 53 -a 1 - -t 0.28375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 53 -a 1 h -t 0.28375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 53 -a 1 r -t 0.28461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 39 -a 1 + -t 0.28461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 39 -a 1 - -t 0.28573 -s 2 -d 3 -p cbr -e 210 -c 1 -i 28 -a 1 h -t 0.28573 -s 2 -d 3 -p cbr -e 210 -c 1 -i 28 -a 1 + -t 0.2875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 54 -a 1 - -t 0.2875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 54 -a 1 h -t 0.2875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 54 -a 1 r -t 0.28836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 40 -a 1 + -t 0.28836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 40 -a 1 - -t 0.28909 -s 2 -d 3 -p cbr -e 210 -c 1 -i 29 -a 1 h -t 0.28909 -s 2 -d 3 -p cbr -e 210 -c 1 -i 29 -a 1 r -t 0.29069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 8 -a 1 + -t 0.29125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 55 -a 1 - -t 0.29125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 55 -a 1 h -t 0.29125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 55 -a 1 r -t 0.29211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 41 -a 1 + -t 0.29211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 41 -a 1 - -t 0.29245 -s 2 -d 3 -p cbr -e 210 -c 1 -i 30 -a 1 h -t 0.29245 -s 2 -d 3 -p cbr -e 210 -c 1 -i 30 -a 1 r -t 0.29285 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {2 2} + -t 0.29285 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {2 2} - -t 0.29285 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {2 2} h -t 0.29285 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {-1 -1} r -t 0.29405 -s 3 -d 5 -p cbr -e 210 -c 1 -i 9 -a 1 + -t 0.295 -s 1 -d 2 -p cbr -e 210 -c 1 -i 56 -a 1 - -t 0.295 -s 1 -d 2 -p cbr -e 210 -c 1 -i 56 -a 1 h -t 0.295 -s 1 -d 2 -p cbr -e 210 -c 1 -i 56 -a 1 - -t 0.29581 -s 2 -d 3 -p cbr -e 210 -c 1 -i 31 -a 1 h -t 0.29581 -s 2 -d 3 -p cbr -e 210 -c 1 -i 31 -a 1 r -t 0.29586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 42 -a 1 + -t 0.29586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 42 -a 1 r -t 0.29621 -s 2 -d 3 -p cbr -e 210 -c 1 -i 16 -a 1 + -t 0.29621 -s 3 -d 5 -p cbr -e 210 -c 1 -i 16 -a 1 - -t 0.29621 -s 3 -d 5 -p cbr -e 210 -c 1 -i 16 -a 1 h -t 0.29621 -s 3 -d 5 -p cbr -e 210 -c 1 -i 16 -a 1 r -t 0.29741 -s 3 -d 5 -p cbr -e 210 -c 1 -i 10 -a 1 + -t 0.29875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 57 -a 1 - -t 0.29875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 57 -a 1 h -t 0.29875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 57 -a 1 - -t 0.29917 -s 2 -d 3 -p cbr -e 210 -c 1 -i 32 -a 1 h -t 0.29917 -s 2 -d 3 -p cbr -e 210 -c 1 -i 32 -a 1 r -t 0.29957 -s 2 -d 3 -p cbr -e 210 -c 1 -i 17 -a 1 + -t 0.29957 -s 3 -d 5 -p cbr -e 210 -c 1 -i 17 -a 1 - -t 0.29957 -s 3 -d 5 -p cbr -e 210 -c 1 -i 17 -a 1 h -t 0.29957 -s 3 -d 5 -p cbr -e 210 -c 1 -i 17 -a 1 r -t 0.29961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 43 -a 1 + -t 0.29961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 43 -a 1 r -t 0.29997 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} + -t 0.29997 -s 4 -d 3 -p ack -e 40 -c 0 -i 58 -a 0 -S 0 -y {0 0} - -t 0.29997 -s 4 -d 3 -p ack -e 40 -c 0 -i 58 -a 0 -S 0 -y {0 0} h -t 0.29997 -s 4 -d 3 -p ack -e 40 -c 0 -i 58 -a 0 -S 0 -y {-1 -1} r -t 0.30077 -s 3 -d 5 -p cbr -e 210 -c 1 -i 11 -a 1 + -t 0.3025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 59 -a 1 - -t 0.3025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 59 -a 1 h -t 0.3025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 59 -a 1 - -t 0.30253 -s 2 -d 3 -p cbr -e 210 -c 1 -i 36 -a 1 h -t 0.30253 -s 2 -d 3 -p cbr -e 210 -c 1 -i 36 -a 1 r -t 0.30293 -s 2 -d 3 -p cbr -e 210 -c 1 -i 18 -a 1 + -t 0.30293 -s 3 -d 5 -p cbr -e 210 -c 1 -i 18 -a 1 - -t 0.30293 -s 3 -d 5 -p cbr -e 210 -c 1 -i 18 -a 1 h -t 0.30293 -s 3 -d 5 -p cbr -e 210 -c 1 -i 18 -a 1 r -t 0.30336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 44 -a 1 + -t 0.30336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 44 -a 1 - -t 0.30589 -s 2 -d 3 -p cbr -e 210 -c 1 -i 37 -a 1 h -t 0.30589 -s 2 -d 3 -p cbr -e 210 -c 1 -i 37 -a 1 + -t 0.30625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 60 -a 1 - -t 0.30625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 60 -a 1 h -t 0.30625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 60 -a 1 r -t 0.30629 -s 2 -d 3 -p cbr -e 210 -c 1 -i 19 -a 1 + -t 0.30629 -s 3 -d 5 -p cbr -e 210 -c 1 -i 19 -a 1 - -t 0.30629 -s 3 -d 5 -p cbr -e 210 -c 1 -i 19 -a 1 h -t 0.30629 -s 3 -d 5 -p cbr -e 210 -c 1 -i 19 -a 1 r -t 0.30711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 45 -a 1 + -t 0.30711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 45 -a 1 - -t 0.30925 -s 2 -d 3 -p cbr -e 210 -c 1 -i 38 -a 1 h -t 0.30925 -s 2 -d 3 -p cbr -e 210 -c 1 -i 38 -a 1 + -t 0.31 -s 1 -d 2 -p cbr -e 210 -c 1 -i 61 -a 1 - -t 0.31 -s 1 -d 2 -p cbr -e 210 -c 1 -i 61 -a 1 h -t 0.31 -s 1 -d 2 -p cbr -e 210 -c 1 -i 61 -a 1 r -t 0.31086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 46 -a 1 + -t 0.31086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 46 -a 1 - -t 0.31261 -s 2 -d 3 -p cbr -e 210 -c 1 -i 39 -a 1 h -t 0.31261 -s 2 -d 3 -p cbr -e 210 -c 1 -i 39 -a 1 + -t 0.31375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 62 -a 1 - -t 0.31375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 62 -a 1 h -t 0.31375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 62 -a 1 r -t 0.31461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 47 -a 1 + -t 0.31461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 47 -a 1 - -t 0.31597 -s 2 -d 3 -p cbr -e 210 -c 1 -i 40 -a 1 h -t 0.31597 -s 2 -d 3 -p cbr -e 210 -c 1 -i 40 -a 1 + -t 0.3175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 63 -a 1 - -t 0.3175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 63 -a 1 h -t 0.3175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 63 -a 1 r -t 0.31836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 48 -a 1 + -t 0.31836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 48 -a 1 - -t 0.31933 -s 2 -d 3 -p cbr -e 210 -c 1 -i 41 -a 1 h -t 0.31933 -s 2 -d 3 -p cbr -e 210 -c 1 -i 41 -a 1 r -t 0.32013 -s 3 -d 5 -p cbr -e 210 -c 1 -i 12 -a 1 + -t 0.32125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 64 -a 1 - -t 0.32125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 64 -a 1 h -t 0.32125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 64 -a 1 r -t 0.32211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 49 -a 1 + -t 0.32211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 49 -a 1 r -t 0.32229 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {3 3} + -t 0.32229 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {3 3} - -t 0.32229 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {3 3} h -t 0.32229 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {-1 -1} - -t 0.32269 -s 2 -d 3 -p cbr -e 210 -c 1 -i 42 -a 1 h -t 0.32269 -s 2 -d 3 -p cbr -e 210 -c 1 -i 42 -a 1 r -t 0.32349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 13 -a 1 + -t 0.325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 65 -a 1 - -t 0.325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 65 -a 1 h -t 0.325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 65 -a 1 r -t 0.32565 -s 2 -d 3 -p cbr -e 210 -c 1 -i 21 -a 1 + -t 0.32565 -s 3 -d 5 -p cbr -e 210 -c 1 -i 21 -a 1 - -t 0.32565 -s 3 -d 5 -p cbr -e 210 -c 1 -i 21 -a 1 h -t 0.32565 -s 3 -d 5 -p cbr -e 210 -c 1 -i 21 -a 1 r -t 0.32586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 50 -a 1 + -t 0.32586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 50 -a 1 - -t 0.32605 -s 2 -d 3 -p cbr -e 210 -c 1 -i 43 -a 1 h -t 0.32605 -s 2 -d 3 -p cbr -e 210 -c 1 -i 43 -a 1 r -t 0.32685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 14 -a 1 + -t 0.32875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 66 -a 1 - -t 0.32875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 66 -a 1 h -t 0.32875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 66 -a 1 r -t 0.32901 -s 2 -d 3 -p cbr -e 210 -c 1 -i 22 -a 1 + -t 0.32901 -s 3 -d 5 -p cbr -e 210 -c 1 -i 22 -a 1 - -t 0.32901 -s 3 -d 5 -p cbr -e 210 -c 1 -i 22 -a 1 h -t 0.32901 -s 3 -d 5 -p cbr -e 210 -c 1 -i 22 -a 1 - -t 0.32941 -s 2 -d 3 -p cbr -e 210 -c 1 -i 44 -a 1 h -t 0.32941 -s 2 -d 3 -p cbr -e 210 -c 1 -i 44 -a 1 r -t 0.32941 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 1 -a 0 -S 0 -y {1 1} + -t 0.32941 -s 4 -d 3 -p ack -e 40 -c 0 -i 67 -a 0 -S 0 -y {1 1} - -t 0.32941 -s 4 -d 3 -p ack -e 40 -c 0 -i 67 -a 0 -S 0 -y {1 1} h -t 0.32941 -s 4 -d 3 -p ack -e 40 -c 0 -i 67 -a 0 -S 0 -y {-1 -1} r -t 0.32961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 51 -a 1 + -t 0.32961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 51 -a 1 r -t 0.33021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 15 -a 1 r -t 0.33237 -s 2 -d 3 -p cbr -e 210 -c 1 -i 23 -a 1 + -t 0.33237 -s 3 -d 5 -p cbr -e 210 -c 1 -i 23 -a 1 - -t 0.33237 -s 3 -d 5 -p cbr -e 210 -c 1 -i 23 -a 1 h -t 0.33237 -s 3 -d 5 -p cbr -e 210 -c 1 -i 23 -a 1 + -t 0.3325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 68 -a 1 - -t 0.3325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 68 -a 1 h -t 0.3325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 68 -a 1 - -t 0.33277 -s 2 -d 3 -p cbr -e 210 -c 1 -i 45 -a 1 h -t 0.33277 -s 2 -d 3 -p cbr -e 210 -c 1 -i 45 -a 1 r -t 0.33336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 52 -a 1 + -t 0.33336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 52 -a 1 r -t 0.33573 -s 2 -d 3 -p cbr -e 210 -c 1 -i 24 -a 1 + -t 0.33573 -s 3 -d 5 -p cbr -e 210 -c 1 -i 24 -a 1 - -t 0.33573 -s 3 -d 5 -p cbr -e 210 -c 1 -i 24 -a 1 h -t 0.33573 -s 3 -d 5 -p cbr -e 210 -c 1 -i 24 -a 1 - -t 0.33613 -s 2 -d 3 -p cbr -e 210 -c 1 -i 46 -a 1 h -t 0.33613 -s 2 -d 3 -p cbr -e 210 -c 1 -i 46 -a 1 + -t 0.33625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 69 -a 1 - -t 0.33625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 69 -a 1 h -t 0.33625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 69 -a 1 r -t 0.33711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 53 -a 1 + -t 0.33711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 53 -a 1 r -t 0.33909 -s 2 -d 3 -p cbr -e 210 -c 1 -i 28 -a 1 + -t 0.33909 -s 3 -d 5 -p cbr -e 210 -c 1 -i 28 -a 1 - -t 0.33909 -s 3 -d 5 -p cbr -e 210 -c 1 -i 28 -a 1 h -t 0.33909 -s 3 -d 5 -p cbr -e 210 -c 1 -i 28 -a 1 - -t 0.33949 -s 2 -d 3 -p cbr -e 210 -c 1 -i 47 -a 1 h -t 0.33949 -s 2 -d 3 -p cbr -e 210 -c 1 -i 47 -a 1 + -t 0.34 -s 1 -d 2 -p cbr -e 210 -c 1 -i 70 -a 1 - -t 0.34 -s 1 -d 2 -p cbr -e 210 -c 1 -i 70 -a 1 h -t 0.34 -s 1 -d 2 -p cbr -e 210 -c 1 -i 70 -a 1 r -t 0.34086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 54 -a 1 + -t 0.34086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 54 -a 1 r -t 0.34245 -s 2 -d 3 -p cbr -e 210 -c 1 -i 29 -a 1 + -t 0.34245 -s 3 -d 5 -p cbr -e 210 -c 1 -i 29 -a 1 - -t 0.34245 -s 3 -d 5 -p cbr -e 210 -c 1 -i 29 -a 1 h -t 0.34245 -s 3 -d 5 -p cbr -e 210 -c 1 -i 29 -a 1 - -t 0.34285 -s 2 -d 3 -p cbr -e 210 -c 1 -i 48 -a 1 h -t 0.34285 -s 2 -d 3 -p cbr -e 210 -c 1 -i 48 -a 1 + -t 0.34375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 71 -a 1 - -t 0.34375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 71 -a 1 h -t 0.34375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 71 -a 1 r -t 0.34461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 55 -a 1 + -t 0.34461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 55 -a 1 r -t 0.34581 -s 2 -d 3 -p cbr -e 210 -c 1 -i 30 -a 1 + -t 0.34581 -s 3 -d 5 -p cbr -e 210 -c 1 -i 30 -a 1 - -t 0.34581 -s 3 -d 5 -p cbr -e 210 -c 1 -i 30 -a 1 h -t 0.34581 -s 3 -d 5 -p cbr -e 210 -c 1 -i 30 -a 1 - -t 0.34621 -s 2 -d 3 -p cbr -e 210 -c 1 -i 49 -a 1 h -t 0.34621 -s 2 -d 3 -p cbr -e 210 -c 1 -i 49 -a 1 + -t 0.3475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 72 -a 1 - -t 0.3475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 72 -a 1 h -t 0.3475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 72 -a 1 r -t 0.34836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 56 -a 1 + -t 0.34836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 56 -a 1 r -t 0.34917 -s 2 -d 3 -p cbr -e 210 -c 1 -i 31 -a 1 + -t 0.34917 -s 3 -d 5 -p cbr -e 210 -c 1 -i 31 -a 1 - -t 0.34917 -s 3 -d 5 -p cbr -e 210 -c 1 -i 31 -a 1 h -t 0.34917 -s 3 -d 5 -p cbr -e 210 -c 1 -i 31 -a 1 - -t 0.34957 -s 2 -d 3 -p cbr -e 210 -c 1 -i 50 -a 1 h -t 0.34957 -s 2 -d 3 -p cbr -e 210 -c 1 -i 50 -a 1 r -t 0.34957 -s 3 -d 5 -p cbr -e 210 -c 1 -i 16 -a 1 r -t 0.35061 -s 4 -d 3 -p ack -e 40 -c 0 -i 58 -a 0 -S 0 -y {0 0} + -t 0.35061 -s 3 -d 2 -p ack -e 40 -c 0 -i 58 -a 0 -S 0 -y {0 0} - -t 0.35061 -s 3 -d 2 -p ack -e 40 -c 0 -i 58 -a 0 -S 0 -y {0 0} h -t 0.35061 -s 3 -d 2 -p ack -e 40 -c 0 -i 58 -a 0 -S 0 -y {-1 -1} + -t 0.35125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 73 -a 1 - -t 0.35125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 73 -a 1 h -t 0.35125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 73 -a 1 r -t 0.35211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 57 -a 1 + -t 0.35211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 57 -a 1 r -t 0.35253 -s 2 -d 3 -p cbr -e 210 -c 1 -i 32 -a 1 + -t 0.35253 -s 3 -d 5 -p cbr -e 210 -c 1 -i 32 -a 1 - -t 0.35253 -s 3 -d 5 -p cbr -e 210 -c 1 -i 32 -a 1 h -t 0.35253 -s 3 -d 5 -p cbr -e 210 -c 1 -i 32 -a 1 - -t 0.35293 -s 2 -d 3 -p cbr -e 210 -c 1 -i 51 -a 1 h -t 0.35293 -s 2 -d 3 -p cbr -e 210 -c 1 -i 51 -a 1 r -t 0.35293 -s 3 -d 5 -p cbr -e 210 -c 1 -i 17 -a 1 + -t 0.355 -s 1 -d 2 -p cbr -e 210 -c 1 -i 74 -a 1 - -t 0.355 -s 1 -d 2 -p cbr -e 210 -c 1 -i 74 -a 1 h -t 0.355 -s 1 -d 2 -p cbr -e 210 -c 1 -i 74 -a 1 r -t 0.35586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 59 -a 1 + -t 0.35586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 59 -a 1 r -t 0.35589 -s 2 -d 3 -p cbr -e 210 -c 1 -i 36 -a 1 + -t 0.35589 -s 3 -d 5 -p cbr -e 210 -c 1 -i 36 -a 1 - -t 0.35589 -s 3 -d 5 -p cbr -e 210 -c 1 -i 36 -a 1 h -t 0.35589 -s 3 -d 5 -p cbr -e 210 -c 1 -i 36 -a 1 - -t 0.35629 -s 2 -d 3 -p cbr -e 210 -c 1 -i 52 -a 1 h -t 0.35629 -s 2 -d 3 -p cbr -e 210 -c 1 -i 52 -a 1 r -t 0.35629 -s 3 -d 5 -p cbr -e 210 -c 1 -i 18 -a 1 + -t 0.35875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 75 -a 1 - -t 0.35875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 75 -a 1 h -t 0.35875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 75 -a 1 r -t 0.35885 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {2 2} + -t 0.35885 -s 4 -d 3 -p ack -e 40 -c 0 -i 76 -a 0 -S 0 -y {2 2} - -t 0.35885 -s 4 -d 3 -p ack -e 40 -c 0 -i 76 -a 0 -S 0 -y {2 2} h -t 0.35885 -s 4 -d 3 -p ack -e 40 -c 0 -i 76 -a 0 -S 0 -y {-1 -1} r -t 0.35925 -s 2 -d 3 -p cbr -e 210 -c 1 -i 37 -a 1 + -t 0.35925 -s 3 -d 5 -p cbr -e 210 -c 1 -i 37 -a 1 - -t 0.35925 -s 3 -d 5 -p cbr -e 210 -c 1 -i 37 -a 1 h -t 0.35925 -s 3 -d 5 -p cbr -e 210 -c 1 -i 37 -a 1 r -t 0.35961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 60 -a 1 + -t 0.35961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 60 -a 1 - -t 0.35965 -s 2 -d 3 -p cbr -e 210 -c 1 -i 53 -a 1 h -t 0.35965 -s 2 -d 3 -p cbr -e 210 -c 1 -i 53 -a 1 r -t 0.35965 -s 3 -d 5 -p cbr -e 210 -c 1 -i 19 -a 1 + -t 0.3625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 77 -a 1 - -t 0.3625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 77 -a 1 h -t 0.3625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 77 -a 1 r -t 0.36261 -s 2 -d 3 -p cbr -e 210 -c 1 -i 38 -a 1 + -t 0.36261 -s 3 -d 5 -p cbr -e 210 -c 1 -i 38 -a 1 - -t 0.36261 -s 3 -d 5 -p cbr -e 210 -c 1 -i 38 -a 1 h -t 0.36261 -s 3 -d 5 -p cbr -e 210 -c 1 -i 38 -a 1 - -t 0.36301 -s 2 -d 3 -p cbr -e 210 -c 1 -i 54 -a 1 h -t 0.36301 -s 2 -d 3 -p cbr -e 210 -c 1 -i 54 -a 1 r -t 0.36336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 61 -a 1 + -t 0.36336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 61 -a 1 r -t 0.36597 -s 2 -d 3 -p cbr -e 210 -c 1 -i 39 -a 1 + -t 0.36597 -s 3 -d 5 -p cbr -e 210 -c 1 -i 39 -a 1 - -t 0.36597 -s 3 -d 5 -p cbr -e 210 -c 1 -i 39 -a 1 h -t 0.36597 -s 3 -d 5 -p cbr -e 210 -c 1 -i 39 -a 1 + -t 0.36625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 78 -a 1 - -t 0.36625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 78 -a 1 h -t 0.36625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 78 -a 1 - -t 0.36637 -s 2 -d 3 -p cbr -e 210 -c 1 -i 55 -a 1 h -t 0.36637 -s 2 -d 3 -p cbr -e 210 -c 1 -i 55 -a 1 r -t 0.36711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 62 -a 1 + -t 0.36711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 62 -a 1 r -t 0.36933 -s 2 -d 3 -p cbr -e 210 -c 1 -i 40 -a 1 + -t 0.36933 -s 3 -d 5 -p cbr -e 210 -c 1 -i 40 -a 1 - -t 0.36933 -s 3 -d 5 -p cbr -e 210 -c 1 -i 40 -a 1 h -t 0.36933 -s 3 -d 5 -p cbr -e 210 -c 1 -i 40 -a 1 - -t 0.36973 -s 2 -d 3 -p cbr -e 210 -c 1 -i 56 -a 1 h -t 0.36973 -s 2 -d 3 -p cbr -e 210 -c 1 -i 56 -a 1 + -t 0.37 -s 1 -d 2 -p cbr -e 210 -c 1 -i 79 -a 1 - -t 0.37 -s 1 -d 2 -p cbr -e 210 -c 1 -i 79 -a 1 h -t 0.37 -s 1 -d 2 -p cbr -e 210 -c 1 -i 79 -a 1 r -t 0.37086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 63 -a 1 + -t 0.37086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 63 -a 1 r -t 0.37269 -s 2 -d 3 -p cbr -e 210 -c 1 -i 41 -a 1 + -t 0.37269 -s 3 -d 5 -p cbr -e 210 -c 1 -i 41 -a 1 - -t 0.37269 -s 3 -d 5 -p cbr -e 210 -c 1 -i 41 -a 1 h -t 0.37269 -s 3 -d 5 -p cbr -e 210 -c 1 -i 41 -a 1 - -t 0.37309 -s 2 -d 3 -p cbr -e 210 -c 1 -i 57 -a 1 h -t 0.37309 -s 2 -d 3 -p cbr -e 210 -c 1 -i 57 -a 1 + -t 0.37375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 80 -a 1 - -t 0.37375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 80 -a 1 h -t 0.37375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 80 -a 1 r -t 0.37461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 64 -a 1 + -t 0.37461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 64 -a 1 r -t 0.37605 -s 2 -d 3 -p cbr -e 210 -c 1 -i 42 -a 1 + -t 0.37605 -s 3 -d 5 -p cbr -e 210 -c 1 -i 42 -a 1 - -t 0.37605 -s 3 -d 5 -p cbr -e 210 -c 1 -i 42 -a 1 h -t 0.37605 -s 3 -d 5 -p cbr -e 210 -c 1 -i 42 -a 1 - -t 0.37645 -s 2 -d 3 -p cbr -e 210 -c 1 -i 59 -a 1 h -t 0.37645 -s 2 -d 3 -p cbr -e 210 -c 1 -i 59 -a 1 + -t 0.3775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 81 -a 1 - -t 0.3775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 81 -a 1 h -t 0.3775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 81 -a 1 r -t 0.37836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 65 -a 1 + -t 0.37836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 65 -a 1 r -t 0.37901 -s 3 -d 5 -p cbr -e 210 -c 1 -i 21 -a 1 r -t 0.37941 -s 2 -d 3 -p cbr -e 210 -c 1 -i 43 -a 1 + -t 0.37941 -s 3 -d 5 -p cbr -e 210 -c 1 -i 43 -a 1 - -t 0.37941 -s 3 -d 5 -p cbr -e 210 -c 1 -i 43 -a 1 h -t 0.37941 -s 3 -d 5 -p cbr -e 210 -c 1 -i 43 -a 1 - -t 0.37981 -s 2 -d 3 -p cbr -e 210 -c 1 -i 60 -a 1 h -t 0.37981 -s 2 -d 3 -p cbr -e 210 -c 1 -i 60 -a 1 r -t 0.38005 -s 4 -d 3 -p ack -e 40 -c 0 -i 67 -a 0 -S 0 -y {1 1} + -t 0.38005 -s 3 -d 2 -p ack -e 40 -c 0 -i 67 -a 0 -S 0 -y {1 1} - -t 0.38005 -s 3 -d 2 -p ack -e 40 -c 0 -i 67 -a 0 -S 0 -y {1 1} h -t 0.38005 -s 3 -d 2 -p ack -e 40 -c 0 -i 67 -a 0 -S 0 -y {-1 -1} + -t 0.38125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 82 -a 1 - -t 0.38125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 82 -a 1 h -t 0.38125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 82 -a 1 r -t 0.38211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 66 -a 1 + -t 0.38211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 66 -a 1 r -t 0.38237 -s 3 -d 5 -p cbr -e 210 -c 1 -i 22 -a 1 r -t 0.38277 -s 2 -d 3 -p cbr -e 210 -c 1 -i 44 -a 1 + -t 0.38277 -s 3 -d 5 -p cbr -e 210 -c 1 -i 44 -a 1 - -t 0.38277 -s 3 -d 5 -p cbr -e 210 -c 1 -i 44 -a 1 h -t 0.38277 -s 3 -d 5 -p cbr -e 210 -c 1 -i 44 -a 1 - -t 0.38317 -s 2 -d 3 -p cbr -e 210 -c 1 -i 61 -a 1 h -t 0.38317 -s 2 -d 3 -p cbr -e 210 -c 1 -i 61 -a 1 + -t 0.385 -s 1 -d 2 -p cbr -e 210 -c 1 -i 83 -a 1 - -t 0.385 -s 1 -d 2 -p cbr -e 210 -c 1 -i 83 -a 1 h -t 0.385 -s 1 -d 2 -p cbr -e 210 -c 1 -i 83 -a 1 r -t 0.38573 -s 3 -d 5 -p cbr -e 210 -c 1 -i 23 -a 1 r -t 0.38586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 68 -a 1 + -t 0.38586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 68 -a 1 r -t 0.38613 -s 2 -d 3 -p cbr -e 210 -c 1 -i 45 -a 1 + -t 0.38613 -s 3 -d 5 -p cbr -e 210 -c 1 -i 45 -a 1 - -t 0.38613 -s 3 -d 5 -p cbr -e 210 -c 1 -i 45 -a 1 h -t 0.38613 -s 3 -d 5 -p cbr -e 210 -c 1 -i 45 -a 1 - -t 0.38653 -s 2 -d 3 -p cbr -e 210 -c 1 -i 62 -a 1 h -t 0.38653 -s 2 -d 3 -p cbr -e 210 -c 1 -i 62 -a 1 r -t 0.38829 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {3 3} + -t 0.38829 -s 4 -d 3 -p ack -e 40 -c 0 -i 84 -a 0 -S 0 -y {3 3} - -t 0.38829 -s 4 -d 3 -p ack -e 40 -c 0 -i 84 -a 0 -S 0 -y {3 3} h -t 0.38829 -s 4 -d 3 -p ack -e 40 -c 0 -i 84 -a 0 -S 0 -y {-1 -1} + -t 0.38875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 85 -a 1 - -t 0.38875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 85 -a 1 h -t 0.38875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 85 -a 1 r -t 0.38909 -s 3 -d 5 -p cbr -e 210 -c 1 -i 24 -a 1 r -t 0.38949 -s 2 -d 3 -p cbr -e 210 -c 1 -i 46 -a 1 + -t 0.38949 -s 3 -d 5 -p cbr -e 210 -c 1 -i 46 -a 1 - -t 0.38949 -s 3 -d 5 -p cbr -e 210 -c 1 -i 46 -a 1 h -t 0.38949 -s 3 -d 5 -p cbr -e 210 -c 1 -i 46 -a 1 r -t 0.38961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 69 -a 1 + -t 0.38961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 69 -a 1 - -t 0.38989 -s 2 -d 3 -p cbr -e 210 -c 1 -i 63 -a 1 h -t 0.38989 -s 2 -d 3 -p cbr -e 210 -c 1 -i 63 -a 1 r -t 0.39245 -s 3 -d 5 -p cbr -e 210 -c 1 -i 28 -a 1 + -t 0.3925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 86 -a 1 - -t 0.3925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 86 -a 1 h -t 0.3925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 86 -a 1 r -t 0.39285 -s 2 -d 3 -p cbr -e 210 -c 1 -i 47 -a 1 + -t 0.39285 -s 3 -d 5 -p cbr -e 210 -c 1 -i 47 -a 1 - -t 0.39285 -s 3 -d 5 -p cbr -e 210 -c 1 -i 47 -a 1 h -t 0.39285 -s 3 -d 5 -p cbr -e 210 -c 1 -i 47 -a 1 - -t 0.39325 -s 2 -d 3 -p cbr -e 210 -c 1 -i 64 -a 1 h -t 0.39325 -s 2 -d 3 -p cbr -e 210 -c 1 -i 64 -a 1 r -t 0.39336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 70 -a 1 + -t 0.39336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 70 -a 1 r -t 0.39581 -s 3 -d 5 -p cbr -e 210 -c 1 -i 29 -a 1 r -t 0.39621 -s 2 -d 3 -p cbr -e 210 -c 1 -i 48 -a 1 + -t 0.39621 -s 3 -d 5 -p cbr -e 210 -c 1 -i 48 -a 1 - -t 0.39621 -s 3 -d 5 -p cbr -e 210 -c 1 -i 48 -a 1 h -t 0.39621 -s 3 -d 5 -p cbr -e 210 -c 1 -i 48 -a 1 + -t 0.39625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 87 -a 1 - -t 0.39625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 87 -a 1 h -t 0.39625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 87 -a 1 - -t 0.39661 -s 2 -d 3 -p cbr -e 210 -c 1 -i 65 -a 1 h -t 0.39661 -s 2 -d 3 -p cbr -e 210 -c 1 -i 65 -a 1 r -t 0.39711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 71 -a 1 + -t 0.39711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 71 -a 1 r -t 0.39917 -s 3 -d 5 -p cbr -e 210 -c 1 -i 30 -a 1 r -t 0.39957 -s 2 -d 3 -p cbr -e 210 -c 1 -i 49 -a 1 + -t 0.39957 -s 3 -d 5 -p cbr -e 210 -c 1 -i 49 -a 1 - -t 0.39957 -s 3 -d 5 -p cbr -e 210 -c 1 -i 49 -a 1 h -t 0.39957 -s 3 -d 5 -p cbr -e 210 -c 1 -i 49 -a 1 - -t 0.39997 -s 2 -d 3 -p cbr -e 210 -c 1 -i 66 -a 1 h -t 0.39997 -s 2 -d 3 -p cbr -e 210 -c 1 -i 66 -a 1 + -t 0.4 -s 1 -d 2 -p cbr -e 210 -c 1 -i 88 -a 1 - -t 0.4 -s 1 -d 2 -p cbr -e 210 -c 1 -i 88 -a 1 h -t 0.4 -s 1 -d 2 -p cbr -e 210 -c 1 -i 88 -a 1 r -t 0.40086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 72 -a 1 + -t 0.40086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 72 -a 1 r -t 0.40125 -s 3 -d 2 -p ack -e 40 -c 0 -i 58 -a 0 -S 0 -y {0 0} + -t 0.40125 -s 2 -d 0 -p ack -e 40 -c 0 -i 58 -a 0 -S 0 -y {0 0} - -t 0.40125 -s 2 -d 0 -p ack -e 40 -c 0 -i 58 -a 0 -S 0 -f 0 -m 1 -y {0 0} h -t 0.40125 -s 2 -d 0 -p ack -e 40 -c 0 -i 58 -a 0 -S 0 -y {-1 -1} r -t 0.40253 -s 3 -d 5 -p cbr -e 210 -c 1 -i 31 -a 1 r -t 0.40293 -s 2 -d 3 -p cbr -e 210 -c 1 -i 50 -a 1 + -t 0.40293 -s 3 -d 5 -p cbr -e 210 -c 1 -i 50 -a 1 - -t 0.40293 -s 3 -d 5 -p cbr -e 210 -c 1 -i 50 -a 1 h -t 0.40293 -s 3 -d 5 -p cbr -e 210 -c 1 -i 50 -a 1 - -t 0.40333 -s 2 -d 3 -p cbr -e 210 -c 1 -i 68 -a 1 h -t 0.40333 -s 2 -d 3 -p cbr -e 210 -c 1 -i 68 -a 1 + -t 0.40375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 89 -a 1 - -t 0.40375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 89 -a 1 h -t 0.40375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 89 -a 1 r -t 0.40461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 73 -a 1 + -t 0.40461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 73 -a 1 r -t 0.40589 -s 3 -d 5 -p cbr -e 210 -c 1 -i 32 -a 1 r -t 0.40629 -s 2 -d 3 -p cbr -e 210 -c 1 -i 51 -a 1 + -t 0.40629 -s 3 -d 5 -p cbr -e 210 -c 1 -i 51 -a 1 - -t 0.40629 -s 3 -d 5 -p cbr -e 210 -c 1 -i 51 -a 1 h -t 0.40629 -s 3 -d 5 -p cbr -e 210 -c 1 -i 51 -a 1 - -t 0.40669 -s 2 -d 3 -p cbr -e 210 -c 1 -i 69 -a 1 h -t 0.40669 -s 2 -d 3 -p cbr -e 210 -c 1 -i 69 -a 1 + -t 0.4075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 90 -a 1 - -t 0.4075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 90 -a 1 h -t 0.4075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 90 -a 1 r -t 0.40836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 74 -a 1 + -t 0.40836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 74 -a 1 r -t 0.40925 -s 3 -d 5 -p cbr -e 210 -c 1 -i 36 -a 1 r -t 0.40949 -s 4 -d 3 -p ack -e 40 -c 0 -i 76 -a 0 -S 0 -y {2 2} + -t 0.40949 -s 3 -d 2 -p ack -e 40 -c 0 -i 76 -a 0 -S 0 -y {2 2} - -t 0.40949 -s 3 -d 2 -p ack -e 40 -c 0 -i 76 -a 0 -S 0 -y {2 2} h -t 0.40949 -s 3 -d 2 -p ack -e 40 -c 0 -i 76 -a 0 -S 0 -y {-1 -1} r -t 0.40965 -s 2 -d 3 -p cbr -e 210 -c 1 -i 52 -a 1 + -t 0.40965 -s 3 -d 5 -p cbr -e 210 -c 1 -i 52 -a 1 - -t 0.40965 -s 3 -d 5 -p cbr -e 210 -c 1 -i 52 -a 1 h -t 0.40965 -s 3 -d 5 -p cbr -e 210 -c 1 -i 52 -a 1 - -t 0.41005 -s 2 -d 3 -p cbr -e 210 -c 1 -i 70 -a 1 h -t 0.41005 -s 2 -d 3 -p cbr -e 210 -c 1 -i 70 -a 1 + -t 0.41125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 91 -a 1 - -t 0.41125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 91 -a 1 h -t 0.41125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 91 -a 1 r -t 0.41211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 75 -a 1 + -t 0.41211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 75 -a 1 r -t 0.41261 -s 3 -d 5 -p cbr -e 210 -c 1 -i 37 -a 1 r -t 0.41301 -s 2 -d 3 -p cbr -e 210 -c 1 -i 53 -a 1 + -t 0.41301 -s 3 -d 5 -p cbr -e 210 -c 1 -i 53 -a 1 - -t 0.41301 -s 3 -d 5 -p cbr -e 210 -c 1 -i 53 -a 1 h -t 0.41301 -s 3 -d 5 -p cbr -e 210 -c 1 -i 53 -a 1 - -t 0.41341 -s 2 -d 3 -p cbr -e 210 -c 1 -i 71 -a 1 h -t 0.41341 -s 2 -d 3 -p cbr -e 210 -c 1 -i 71 -a 1 + -t 0.415 -s 1 -d 2 -p cbr -e 210 -c 1 -i 92 -a 1 - -t 0.415 -s 1 -d 2 -p cbr -e 210 -c 1 -i 92 -a 1 h -t 0.415 -s 1 -d 2 -p cbr -e 210 -c 1 -i 92 -a 1 r -t 0.41586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 77 -a 1 + -t 0.41586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 77 -a 1 r -t 0.41597 -s 3 -d 5 -p cbr -e 210 -c 1 -i 38 -a 1 r -t 0.41637 -s 2 -d 3 -p cbr -e 210 -c 1 -i 54 -a 1 + -t 0.41637 -s 3 -d 5 -p cbr -e 210 -c 1 -i 54 -a 1 - -t 0.41637 -s 3 -d 5 -p cbr -e 210 -c 1 -i 54 -a 1 h -t 0.41637 -s 3 -d 5 -p cbr -e 210 -c 1 -i 54 -a 1 - -t 0.41677 -s 2 -d 3 -p cbr -e 210 -c 1 -i 72 -a 1 h -t 0.41677 -s 2 -d 3 -p cbr -e 210 -c 1 -i 72 -a 1 + -t 0.41875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 93 -a 1 - -t 0.41875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 93 -a 1 h -t 0.41875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 93 -a 1 r -t 0.41933 -s 3 -d 5 -p cbr -e 210 -c 1 -i 39 -a 1 r -t 0.41961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 78 -a 1 + -t 0.41961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 78 -a 1 r -t 0.41973 -s 2 -d 3 -p cbr -e 210 -c 1 -i 55 -a 1 + -t 0.41973 -s 3 -d 5 -p cbr -e 210 -c 1 -i 55 -a 1 - -t 0.41973 -s 3 -d 5 -p cbr -e 210 -c 1 -i 55 -a 1 h -t 0.41973 -s 3 -d 5 -p cbr -e 210 -c 1 -i 55 -a 1 - -t 0.42013 -s 2 -d 3 -p cbr -e 210 -c 1 -i 73 -a 1 h -t 0.42013 -s 2 -d 3 -p cbr -e 210 -c 1 -i 73 -a 1 + -t 0.4225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 94 -a 1 - -t 0.4225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 94 -a 1 h -t 0.4225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 94 -a 1 r -t 0.42269 -s 3 -d 5 -p cbr -e 210 -c 1 -i 40 -a 1 r -t 0.42309 -s 2 -d 3 -p cbr -e 210 -c 1 -i 56 -a 1 + -t 0.42309 -s 3 -d 5 -p cbr -e 210 -c 1 -i 56 -a 1 - -t 0.42309 -s 3 -d 5 -p cbr -e 210 -c 1 -i 56 -a 1 h -t 0.42309 -s 3 -d 5 -p cbr -e 210 -c 1 -i 56 -a 1 r -t 0.42336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 79 -a 1 + -t 0.42336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 79 -a 1 - -t 0.42349 -s 2 -d 3 -p cbr -e 210 -c 1 -i 74 -a 1 h -t 0.42349 -s 2 -d 3 -p cbr -e 210 -c 1 -i 74 -a 1 r -t 0.42605 -s 3 -d 5 -p cbr -e 210 -c 1 -i 41 -a 1 + -t 0.42625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 95 -a 1 - -t 0.42625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 95 -a 1 h -t 0.42625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 95 -a 1 r -t 0.42645 -s 2 -d 3 -p cbr -e 210 -c 1 -i 57 -a 1 + -t 0.42645 -s 3 -d 5 -p cbr -e 210 -c 1 -i 57 -a 1 - -t 0.42645 -s 3 -d 5 -p cbr -e 210 -c 1 -i 57 -a 1 h -t 0.42645 -s 3 -d 5 -p cbr -e 210 -c 1 -i 57 -a 1 - -t 0.42685 -s 2 -d 3 -p cbr -e 210 -c 1 -i 75 -a 1 h -t 0.42685 -s 2 -d 3 -p cbr -e 210 -c 1 -i 75 -a 1 r -t 0.42711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 80 -a 1 + -t 0.42711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 80 -a 1 r -t 0.42941 -s 3 -d 5 -p cbr -e 210 -c 1 -i 42 -a 1 r -t 0.42981 -s 2 -d 3 -p cbr -e 210 -c 1 -i 59 -a 1 + -t 0.42981 -s 3 -d 5 -p cbr -e 210 -c 1 -i 59 -a 1 - -t 0.42981 -s 3 -d 5 -p cbr -e 210 -c 1 -i 59 -a 1 h -t 0.42981 -s 3 -d 5 -p cbr -e 210 -c 1 -i 59 -a 1 + -t 0.43 -s 1 -d 2 -p cbr -e 210 -c 1 -i 96 -a 1 - -t 0.43 -s 1 -d 2 -p cbr -e 210 -c 1 -i 96 -a 1 h -t 0.43 -s 1 -d 2 -p cbr -e 210 -c 1 -i 96 -a 1 - -t 0.43021 -s 2 -d 3 -p cbr -e 210 -c 1 -i 77 -a 1 h -t 0.43021 -s 2 -d 3 -p cbr -e 210 -c 1 -i 77 -a 1 r -t 0.43069 -s 3 -d 2 -p ack -e 40 -c 0 -i 67 -a 0 -S 0 -y {1 1} + -t 0.43069 -s 2 -d 0 -p ack -e 40 -c 0 -i 67 -a 0 -S 0 -y {1 1} - -t 0.43069 -s 2 -d 0 -p ack -e 40 -c 0 -i 67 -a 0 -S 0 -f 0 -m 1 -y {1 1} h -t 0.43069 -s 2 -d 0 -p ack -e 40 -c 0 -i 67 -a 0 -S 0 -y {-1 -1} r -t 0.43086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 81 -a 1 + -t 0.43086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 81 -a 1 r -t 0.43277 -s 3 -d 5 -p cbr -e 210 -c 1 -i 43 -a 1 r -t 0.43317 -s 2 -d 3 -p cbr -e 210 -c 1 -i 60 -a 1 + -t 0.43317 -s 3 -d 5 -p cbr -e 210 -c 1 -i 60 -a 1 - -t 0.43317 -s 3 -d 5 -p cbr -e 210 -c 1 -i 60 -a 1 h -t 0.43317 -s 3 -d 5 -p cbr -e 210 -c 1 -i 60 -a 1 - -t 0.43357 -s 2 -d 3 -p cbr -e 210 -c 1 -i 78 -a 1 h -t 0.43357 -s 2 -d 3 -p cbr -e 210 -c 1 -i 78 -a 1 + -t 0.43375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 97 -a 1 - -t 0.43375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 97 -a 1 h -t 0.43375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 97 -a 1 r -t 0.43461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 82 -a 1 + -t 0.43461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 82 -a 1 r -t 0.43613 -s 3 -d 5 -p cbr -e 210 -c 1 -i 44 -a 1 r -t 0.43653 -s 2 -d 3 -p cbr -e 210 -c 1 -i 61 -a 1 + -t 0.43653 -s 3 -d 5 -p cbr -e 210 -c 1 -i 61 -a 1 - -t 0.43653 -s 3 -d 5 -p cbr -e 210 -c 1 -i 61 -a 1 h -t 0.43653 -s 3 -d 5 -p cbr -e 210 -c 1 -i 61 -a 1 - -t 0.43693 -s 2 -d 3 -p cbr -e 210 -c 1 -i 79 -a 1 h -t 0.43693 -s 2 -d 3 -p cbr -e 210 -c 1 -i 79 -a 1 + -t 0.4375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 98 -a 1 - -t 0.4375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 98 -a 1 h -t 0.4375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 98 -a 1 r -t 0.43836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 83 -a 1 + -t 0.43836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 83 -a 1 r -t 0.43893 -s 4 -d 3 -p ack -e 40 -c 0 -i 84 -a 0 -S 0 -y {3 3} + -t 0.43893 -s 3 -d 2 -p ack -e 40 -c 0 -i 84 -a 0 -S 0 -y {3 3} - -t 0.43893 -s 3 -d 2 -p ack -e 40 -c 0 -i 84 -a 0 -S 0 -y {3 3} h -t 0.43893 -s 3 -d 2 -p ack -e 40 -c 0 -i 84 -a 0 -S 0 -y {-1 -1} r -t 0.43949 -s 3 -d 5 -p cbr -e 210 -c 1 -i 45 -a 1 r -t 0.43989 -s 2 -d 3 -p cbr -e 210 -c 1 -i 62 -a 1 + -t 0.43989 -s 3 -d 5 -p cbr -e 210 -c 1 -i 62 -a 1 - -t 0.43989 -s 3 -d 5 -p cbr -e 210 -c 1 -i 62 -a 1 h -t 0.43989 -s 3 -d 5 -p cbr -e 210 -c 1 -i 62 -a 1 - -t 0.44029 -s 2 -d 3 -p cbr -e 210 -c 1 -i 80 -a 1 h -t 0.44029 -s 2 -d 3 -p cbr -e 210 -c 1 -i 80 -a 1 + -t 0.44125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 99 -a 1 - -t 0.44125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 99 -a 1 h -t 0.44125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 99 -a 1 r -t 0.44211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 85 -a 1 + -t 0.44211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 85 -a 1 r -t 0.44285 -s 3 -d 5 -p cbr -e 210 -c 1 -i 46 -a 1 r -t 0.44325 -s 2 -d 3 -p cbr -e 210 -c 1 -i 63 -a 1 + -t 0.44325 -s 3 -d 5 -p cbr -e 210 -c 1 -i 63 -a 1 - -t 0.44325 -s 3 -d 5 -p cbr -e 210 -c 1 -i 63 -a 1 h -t 0.44325 -s 3 -d 5 -p cbr -e 210 -c 1 -i 63 -a 1 - -t 0.44365 -s 2 -d 3 -p cbr -e 210 -c 1 -i 81 -a 1 h -t 0.44365 -s 2 -d 3 -p cbr -e 210 -c 1 -i 81 -a 1 + -t 0.445 -s 1 -d 2 -p cbr -e 210 -c 1 -i 100 -a 1 - -t 0.445 -s 1 -d 2 -p cbr -e 210 -c 1 -i 100 -a 1 h -t 0.445 -s 1 -d 2 -p cbr -e 210 -c 1 -i 100 -a 1 r -t 0.44586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 86 -a 1 + -t 0.44586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 86 -a 1 r -t 0.44621 -s 3 -d 5 -p cbr -e 210 -c 1 -i 47 -a 1 r -t 0.44661 -s 2 -d 3 -p cbr -e 210 -c 1 -i 64 -a 1 + -t 0.44661 -s 3 -d 5 -p cbr -e 210 -c 1 -i 64 -a 1 - -t 0.44661 -s 3 -d 5 -p cbr -e 210 -c 1 -i 64 -a 1 h -t 0.44661 -s 3 -d 5 -p cbr -e 210 -c 1 -i 64 -a 1 - -t 0.44701 -s 2 -d 3 -p cbr -e 210 -c 1 -i 82 -a 1 h -t 0.44701 -s 2 -d 3 -p cbr -e 210 -c 1 -i 82 -a 1 + -t 0.44875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 101 -a 1 - -t 0.44875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 101 -a 1 h -t 0.44875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 101 -a 1 r -t 0.44957 -s 3 -d 5 -p cbr -e 210 -c 1 -i 48 -a 1 r -t 0.44961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 87 -a 1 + -t 0.44961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 87 -a 1 r -t 0.44997 -s 2 -d 3 -p cbr -e 210 -c 1 -i 65 -a 1 + -t 0.44997 -s 3 -d 5 -p cbr -e 210 -c 1 -i 65 -a 1 - -t 0.44997 -s 3 -d 5 -p cbr -e 210 -c 1 -i 65 -a 1 h -t 0.44997 -s 3 -d 5 -p cbr -e 210 -c 1 -i 65 -a 1 - -t 0.45037 -s 2 -d 3 -p cbr -e 210 -c 1 -i 83 -a 1 h -t 0.45037 -s 2 -d 3 -p cbr -e 210 -c 1 -i 83 -a 1 r -t 0.45189 -s 2 -d 0 -p ack -e 40 -c 0 -i 58 -a 0 -S 0 -y {0 0} + -t 0.45189 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 102 -a 0 -S 0 -f 0 -m 0 -y {4 4} - -t 0.45189 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 102 -a 0 -S 0 -y {4 4} h -t 0.45189 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 102 -a 0 -S 0 -y {-1 -1} + -t 0.4525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 103 -a 1 - -t 0.4525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 103 -a 1 h -t 0.4525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 103 -a 1 r -t 0.45293 -s 3 -d 5 -p cbr -e 210 -c 1 -i 49 -a 1 r -t 0.45333 -s 2 -d 3 -p cbr -e 210 -c 1 -i 66 -a 1 + -t 0.45333 -s 3 -d 5 -p cbr -e 210 -c 1 -i 66 -a 1 - -t 0.45333 -s 3 -d 5 -p cbr -e 210 -c 1 -i 66 -a 1 h -t 0.45333 -s 3 -d 5 -p cbr -e 210 -c 1 -i 66 -a 1 r -t 0.45336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 88 -a 1 + -t 0.45336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 88 -a 1 - -t 0.45373 -s 2 -d 3 -p cbr -e 210 -c 1 -i 85 -a 1 h -t 0.45373 -s 2 -d 3 -p cbr -e 210 -c 1 -i 85 -a 1 + -t 0.45625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 104 -a 1 - -t 0.45625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 104 -a 1 h -t 0.45625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 104 -a 1 r -t 0.45629 -s 3 -d 5 -p cbr -e 210 -c 1 -i 50 -a 1 r -t 0.45669 -s 2 -d 3 -p cbr -e 210 -c 1 -i 68 -a 1 + -t 0.45669 -s 3 -d 5 -p cbr -e 210 -c 1 -i 68 -a 1 - -t 0.45669 -s 3 -d 5 -p cbr -e 210 -c 1 -i 68 -a 1 h -t 0.45669 -s 3 -d 5 -p cbr -e 210 -c 1 -i 68 -a 1 - -t 0.45709 -s 2 -d 3 -p cbr -e 210 -c 1 -i 86 -a 1 h -t 0.45709 -s 2 -d 3 -p cbr -e 210 -c 1 -i 86 -a 1 r -t 0.45711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 89 -a 1 + -t 0.45711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 89 -a 1 r -t 0.45965 -s 3 -d 5 -p cbr -e 210 -c 1 -i 51 -a 1 + -t 0.46 -s 1 -d 2 -p cbr -e 210 -c 1 -i 105 -a 1 - -t 0.46 -s 1 -d 2 -p cbr -e 210 -c 1 -i 105 -a 1 h -t 0.46 -s 1 -d 2 -p cbr -e 210 -c 1 -i 105 -a 1 r -t 0.46005 -s 2 -d 3 -p cbr -e 210 -c 1 -i 69 -a 1 + -t 0.46005 -s 3 -d 5 -p cbr -e 210 -c 1 -i 69 -a 1 - -t 0.46005 -s 3 -d 5 -p cbr -e 210 -c 1 -i 69 -a 1 h -t 0.46005 -s 3 -d 5 -p cbr -e 210 -c 1 -i 69 -a 1 r -t 0.46013 -s 3 -d 2 -p ack -e 40 -c 0 -i 76 -a 0 -S 0 -y {2 2} + -t 0.46013 -s 2 -d 0 -p ack -e 40 -c 0 -i 76 -a 0 -S 0 -y {2 2} - -t 0.46013 -s 2 -d 0 -p ack -e 40 -c 0 -i 76 -a 0 -S 0 -f 0 -m 1 -y {2 2} h -t 0.46013 -s 2 -d 0 -p ack -e 40 -c 0 -i 76 -a 0 -S 0 -y {-1 -1} - -t 0.46045 -s 2 -d 3 -p cbr -e 210 -c 1 -i 87 -a 1 h -t 0.46045 -s 2 -d 3 -p cbr -e 210 -c 1 -i 87 -a 1 r -t 0.46086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 90 -a 1 + -t 0.46086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 90 -a 1 r -t 0.46301 -s 3 -d 5 -p cbr -e 210 -c 1 -i 52 -a 1 r -t 0.46341 -s 2 -d 3 -p cbr -e 210 -c 1 -i 70 -a 1 + -t 0.46341 -s 3 -d 5 -p cbr -e 210 -c 1 -i 70 -a 1 - -t 0.46341 -s 3 -d 5 -p cbr -e 210 -c 1 -i 70 -a 1 h -t 0.46341 -s 3 -d 5 -p cbr -e 210 -c 1 -i 70 -a 1 + -t 0.46375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 106 -a 1 - -t 0.46375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 106 -a 1 h -t 0.46375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 106 -a 1 - -t 0.46381 -s 2 -d 3 -p cbr -e 210 -c 1 -i 88 -a 1 h -t 0.46381 -s 2 -d 3 -p cbr -e 210 -c 1 -i 88 -a 1 r -t 0.46461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 91 -a 1 + -t 0.46461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 91 -a 1 r -t 0.46637 -s 3 -d 5 -p cbr -e 210 -c 1 -i 53 -a 1 r -t 0.46677 -s 2 -d 3 -p cbr -e 210 -c 1 -i 71 -a 1 + -t 0.46677 -s 3 -d 5 -p cbr -e 210 -c 1 -i 71 -a 1 - -t 0.46677 -s 3 -d 5 -p cbr -e 210 -c 1 -i 71 -a 1 h -t 0.46677 -s 3 -d 5 -p cbr -e 210 -c 1 -i 71 -a 1 - -t 0.46717 -s 2 -d 3 -p cbr -e 210 -c 1 -i 89 -a 1 h -t 0.46717 -s 2 -d 3 -p cbr -e 210 -c 1 -i 89 -a 1 + -t 0.4675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 107 -a 1 - -t 0.4675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 107 -a 1 h -t 0.4675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 107 -a 1 r -t 0.46836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 92 -a 1 + -t 0.46836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 92 -a 1 r -t 0.46973 -s 3 -d 5 -p cbr -e 210 -c 1 -i 54 -a 1 r -t 0.47013 -s 2 -d 3 -p cbr -e 210 -c 1 -i 72 -a 1 + -t 0.47013 -s 3 -d 5 -p cbr -e 210 -c 1 -i 72 -a 1 - -t 0.47013 -s 3 -d 5 -p cbr -e 210 -c 1 -i 72 -a 1 h -t 0.47013 -s 3 -d 5 -p cbr -e 210 -c 1 -i 72 -a 1 - -t 0.47053 -s 2 -d 3 -p cbr -e 210 -c 1 -i 90 -a 1 h -t 0.47053 -s 2 -d 3 -p cbr -e 210 -c 1 -i 90 -a 1 + -t 0.47125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 108 -a 1 - -t 0.47125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 108 -a 1 h -t 0.47125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 108 -a 1 r -t 0.47211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 93 -a 1 + -t 0.47211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 93 -a 1 r -t 0.47309 -s 3 -d 5 -p cbr -e 210 -c 1 -i 55 -a 1 r -t 0.47349 -s 2 -d 3 -p cbr -e 210 -c 1 -i 73 -a 1 + -t 0.47349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 73 -a 1 - -t 0.47349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 73 -a 1 h -t 0.47349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 73 -a 1 - -t 0.47389 -s 2 -d 3 -p cbr -e 210 -c 1 -i 91 -a 1 h -t 0.47389 -s 2 -d 3 -p cbr -e 210 -c 1 -i 91 -a 1 + -t 0.475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 109 -a 1 - -t 0.475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 109 -a 1 h -t 0.475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 109 -a 1 r -t 0.47586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 94 -a 1 + -t 0.47586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 94 -a 1 r -t 0.47645 -s 3 -d 5 -p cbr -e 210 -c 1 -i 56 -a 1 r -t 0.47685 -s 2 -d 3 -p cbr -e 210 -c 1 -i 74 -a 1 + -t 0.47685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 74 -a 1 - -t 0.47685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 74 -a 1 h -t 0.47685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 74 -a 1 - -t 0.47725 -s 2 -d 3 -p cbr -e 210 -c 1 -i 92 -a 1 h -t 0.47725 -s 2 -d 3 -p cbr -e 210 -c 1 -i 92 -a 1 + -t 0.47875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 110 -a 1 - -t 0.47875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 110 -a 1 h -t 0.47875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 110 -a 1 r -t 0.47961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 95 -a 1 + -t 0.47961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 95 -a 1 r -t 0.47981 -s 3 -d 5 -p cbr -e 210 -c 1 -i 57 -a 1 r -t 0.48021 -s 2 -d 3 -p cbr -e 210 -c 1 -i 75 -a 1 + -t 0.48021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 75 -a 1 - -t 0.48021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 75 -a 1 h -t 0.48021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 75 -a 1 - -t 0.48061 -s 2 -d 3 -p cbr -e 210 -c 1 -i 93 -a 1 h -t 0.48061 -s 2 -d 3 -p cbr -e 210 -c 1 -i 93 -a 1 r -t 0.48133 -s 2 -d 0 -p ack -e 40 -c 0 -i 67 -a 0 -S 0 -y {1 1} + -t 0.48133 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 111 -a 0 -S 0 -f 0 -m 0 -y {5 5} - -t 0.48133 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 111 -a 0 -S 0 -y {5 5} h -t 0.48133 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 111 -a 0 -S 0 -y {-1 -1} + -t 0.4825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 112 -a 1 - -t 0.4825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 112 -a 1 h -t 0.4825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 112 -a 1 r -t 0.48317 -s 3 -d 5 -p cbr -e 210 -c 1 -i 59 -a 1 r -t 0.48336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 96 -a 1 + -t 0.48336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 96 -a 1 r -t 0.48357 -s 2 -d 3 -p cbr -e 210 -c 1 -i 77 -a 1 + -t 0.48357 -s 3 -d 5 -p cbr -e 210 -c 1 -i 77 -a 1 - -t 0.48357 -s 3 -d 5 -p cbr -e 210 -c 1 -i 77 -a 1 h -t 0.48357 -s 3 -d 5 -p cbr -e 210 -c 1 -i 77 -a 1 - -t 0.48397 -s 2 -d 3 -p cbr -e 210 -c 1 -i 94 -a 1 h -t 0.48397 -s 2 -d 3 -p cbr -e 210 -c 1 -i 94 -a 1 + -t 0.48625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 113 -a 1 - -t 0.48625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 113 -a 1 h -t 0.48625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 113 -a 1 r -t 0.48653 -s 3 -d 5 -p cbr -e 210 -c 1 -i 60 -a 1 r -t 0.48693 -s 2 -d 3 -p cbr -e 210 -c 1 -i 78 -a 1 + -t 0.48693 -s 3 -d 5 -p cbr -e 210 -c 1 -i 78 -a 1 - -t 0.48693 -s 3 -d 5 -p cbr -e 210 -c 1 -i 78 -a 1 h -t 0.48693 -s 3 -d 5 -p cbr -e 210 -c 1 -i 78 -a 1 r -t 0.48711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 97 -a 1 + -t 0.48711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 97 -a 1 - -t 0.48733 -s 2 -d 3 -p cbr -e 210 -c 1 -i 95 -a 1 h -t 0.48733 -s 2 -d 3 -p cbr -e 210 -c 1 -i 95 -a 1 r -t 0.48957 -s 3 -d 2 -p ack -e 40 -c 0 -i 84 -a 0 -S 0 -y {3 3} + -t 0.48957 -s 2 -d 0 -p ack -e 40 -c 0 -i 84 -a 0 -S 0 -y {3 3} - -t 0.48957 -s 2 -d 0 -p ack -e 40 -c 0 -i 84 -a 0 -S 0 -f 0 -m 1 -y {3 3} h -t 0.48957 -s 2 -d 0 -p ack -e 40 -c 0 -i 84 -a 0 -S 0 -y {-1 -1} r -t 0.48989 -s 3 -d 5 -p cbr -e 210 -c 1 -i 61 -a 1 + -t 0.49 -s 1 -d 2 -p cbr -e 210 -c 1 -i 114 -a 1 - -t 0.49 -s 1 -d 2 -p cbr -e 210 -c 1 -i 114 -a 1 h -t 0.49 -s 1 -d 2 -p cbr -e 210 -c 1 -i 114 -a 1 r -t 0.49029 -s 2 -d 3 -p cbr -e 210 -c 1 -i 79 -a 1 + -t 0.49029 -s 3 -d 5 -p cbr -e 210 -c 1 -i 79 -a 1 - -t 0.49029 -s 3 -d 5 -p cbr -e 210 -c 1 -i 79 -a 1 h -t 0.49029 -s 3 -d 5 -p cbr -e 210 -c 1 -i 79 -a 1 - -t 0.49069 -s 2 -d 3 -p cbr -e 210 -c 1 -i 96 -a 1 h -t 0.49069 -s 2 -d 3 -p cbr -e 210 -c 1 -i 96 -a 1 r -t 0.49086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 98 -a 1 + -t 0.49086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 98 -a 1 r -t 0.49325 -s 3 -d 5 -p cbr -e 210 -c 1 -i 62 -a 1 r -t 0.49365 -s 2 -d 3 -p cbr -e 210 -c 1 -i 80 -a 1 + -t 0.49365 -s 3 -d 5 -p cbr -e 210 -c 1 -i 80 -a 1 - -t 0.49365 -s 3 -d 5 -p cbr -e 210 -c 1 -i 80 -a 1 h -t 0.49365 -s 3 -d 5 -p cbr -e 210 -c 1 -i 80 -a 1 + -t 0.49375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 115 -a 1 - -t 0.49375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 115 -a 1 h -t 0.49375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 115 -a 1 - -t 0.49405 -s 2 -d 3 -p cbr -e 210 -c 1 -i 97 -a 1 h -t 0.49405 -s 2 -d 3 -p cbr -e 210 -c 1 -i 97 -a 1 r -t 0.49461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 99 -a 1 + -t 0.49461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 99 -a 1 r -t 0.49661 -s 3 -d 5 -p cbr -e 210 -c 1 -i 63 -a 1 r -t 0.49701 -s 2 -d 3 -p cbr -e 210 -c 1 -i 81 -a 1 + -t 0.49701 -s 3 -d 5 -p cbr -e 210 -c 1 -i 81 -a 1 - -t 0.49701 -s 3 -d 5 -p cbr -e 210 -c 1 -i 81 -a 1 h -t 0.49701 -s 3 -d 5 -p cbr -e 210 -c 1 -i 81 -a 1 - -t 0.49741 -s 2 -d 3 -p cbr -e 210 -c 1 -i 98 -a 1 h -t 0.49741 -s 2 -d 3 -p cbr -e 210 -c 1 -i 98 -a 1 + -t 0.4975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 116 -a 1 - -t 0.4975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 116 -a 1 h -t 0.4975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 116 -a 1 r -t 0.49836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 100 -a 1 + -t 0.49836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 100 -a 1 r -t 0.49997 -s 3 -d 5 -p cbr -e 210 -c 1 -i 64 -a 1 r -t 0.50037 -s 2 -d 3 -p cbr -e 210 -c 1 -i 82 -a 1 + -t 0.50037 -s 3 -d 5 -p cbr -e 210 -c 1 -i 82 -a 1 - -t 0.50037 -s 3 -d 5 -p cbr -e 210 -c 1 -i 82 -a 1 h -t 0.50037 -s 3 -d 5 -p cbr -e 210 -c 1 -i 82 -a 1 - -t 0.50077 -s 2 -d 3 -p cbr -e 210 -c 1 -i 99 -a 1 h -t 0.50077 -s 2 -d 3 -p cbr -e 210 -c 1 -i 99 -a 1 + -t 0.50125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 117 -a 1 - -t 0.50125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 117 -a 1 h -t 0.50125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 117 -a 1 r -t 0.50211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 101 -a 1 + -t 0.50211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 101 -a 1 r -t 0.50333 -s 3 -d 5 -p cbr -e 210 -c 1 -i 65 -a 1 r -t 0.50373 -s 2 -d 3 -p cbr -e 210 -c 1 -i 83 -a 1 + -t 0.50373 -s 3 -d 5 -p cbr -e 210 -c 1 -i 83 -a 1 - -t 0.50373 -s 3 -d 5 -p cbr -e 210 -c 1 -i 83 -a 1 h -t 0.50373 -s 3 -d 5 -p cbr -e 210 -c 1 -i 83 -a 1 - -t 0.50413 -s 2 -d 3 -p cbr -e 210 -c 1 -i 100 -a 1 h -t 0.50413 -s 2 -d 3 -p cbr -e 210 -c 1 -i 100 -a 1 + -t 0.505 -s 1 -d 2 -p cbr -e 210 -c 1 -i 118 -a 1 - -t 0.505 -s 1 -d 2 -p cbr -e 210 -c 1 -i 118 -a 1 h -t 0.505 -s 1 -d 2 -p cbr -e 210 -c 1 -i 118 -a 1 r -t 0.50586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 103 -a 1 + -t 0.50586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 103 -a 1 r -t 0.50669 -s 3 -d 5 -p cbr -e 210 -c 1 -i 66 -a 1 r -t 0.50709 -s 2 -d 3 -p cbr -e 210 -c 1 -i 85 -a 1 + -t 0.50709 -s 3 -d 5 -p cbr -e 210 -c 1 -i 85 -a 1 - -t 0.50709 -s 3 -d 5 -p cbr -e 210 -c 1 -i 85 -a 1 h -t 0.50709 -s 3 -d 5 -p cbr -e 210 -c 1 -i 85 -a 1 - -t 0.50749 -s 2 -d 3 -p cbr -e 210 -c 1 -i 101 -a 1 h -t 0.50749 -s 2 -d 3 -p cbr -e 210 -c 1 -i 101 -a 1 + -t 0.50875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 119 -a 1 - -t 0.50875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 119 -a 1 h -t 0.50875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 119 -a 1 r -t 0.50961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 104 -a 1 + -t 0.50961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 104 -a 1 r -t 0.51005 -s 3 -d 5 -p cbr -e 210 -c 1 -i 68 -a 1 r -t 0.51045 -s 2 -d 3 -p cbr -e 210 -c 1 -i 86 -a 1 + -t 0.51045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 86 -a 1 - -t 0.51045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 86 -a 1 h -t 0.51045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 86 -a 1 r -t 0.51077 -s 2 -d 0 -p ack -e 40 -c 0 -i 76 -a 0 -S 0 -y {2 2} + -t 0.51077 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 120 -a 0 -S 0 -f 0 -m 0 -y {6 6} - -t 0.51077 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 120 -a 0 -S 0 -y {6 6} h -t 0.51077 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 120 -a 0 -S 0 -y {-1 -1} - -t 0.51085 -s 2 -d 3 -p cbr -e 210 -c 1 -i 103 -a 1 h -t 0.51085 -s 2 -d 3 -p cbr -e 210 -c 1 -i 103 -a 1 + -t 0.5125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 121 -a 1 - -t 0.5125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 121 -a 1 h -t 0.5125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 121 -a 1 r -t 0.51336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 105 -a 1 + -t 0.51336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 105 -a 1 r -t 0.51341 -s 3 -d 5 -p cbr -e 210 -c 1 -i 69 -a 1 r -t 0.51381 -s 2 -d 3 -p cbr -e 210 -c 1 -i 87 -a 1 + -t 0.51381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 87 -a 1 - -t 0.51381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 87 -a 1 h -t 0.51381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 87 -a 1 - -t 0.51421 -s 2 -d 3 -p cbr -e 210 -c 1 -i 104 -a 1 h -t 0.51421 -s 2 -d 3 -p cbr -e 210 -c 1 -i 104 -a 1 + -t 0.51625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 122 -a 1 - -t 0.51625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 122 -a 1 h -t 0.51625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 122 -a 1 r -t 0.51677 -s 3 -d 5 -p cbr -e 210 -c 1 -i 70 -a 1 r -t 0.51711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 106 -a 1 + -t 0.51711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 106 -a 1 r -t 0.51717 -s 2 -d 3 -p cbr -e 210 -c 1 -i 88 -a 1 + -t 0.51717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 88 -a 1 - -t 0.51717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 88 -a 1 h -t 0.51717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 88 -a 1 - -t 0.51757 -s 2 -d 3 -p cbr -e 210 -c 1 -i 105 -a 1 h -t 0.51757 -s 2 -d 3 -p cbr -e 210 -c 1 -i 105 -a 1 r -t 0.51789 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 102 -a 0 -S 0 -y {4 4} + -t 0.51789 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 102 -a 0 -S 0 -y {4 4} + -t 0.52 -s 1 -d 2 -p cbr -e 210 -c 1 -i 123 -a 1 - -t 0.52 -s 1 -d 2 -p cbr -e 210 -c 1 -i 123 -a 1 h -t 0.52 -s 1 -d 2 -p cbr -e 210 -c 1 -i 123 -a 1 r -t 0.52013 -s 3 -d 5 -p cbr -e 210 -c 1 -i 71 -a 1 r -t 0.52053 -s 2 -d 3 -p cbr -e 210 -c 1 -i 89 -a 1 + -t 0.52053 -s 3 -d 5 -p cbr -e 210 -c 1 -i 89 -a 1 - -t 0.52053 -s 3 -d 5 -p cbr -e 210 -c 1 -i 89 -a 1 h -t 0.52053 -s 3 -d 5 -p cbr -e 210 -c 1 -i 89 -a 1 r -t 0.52086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 107 -a 1 + -t 0.52086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 107 -a 1 - -t 0.52093 -s 2 -d 3 -p cbr -e 210 -c 1 -i 106 -a 1 h -t 0.52093 -s 2 -d 3 -p cbr -e 210 -c 1 -i 106 -a 1 r -t 0.52349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 72 -a 1 + -t 0.52375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 124 -a 1 - -t 0.52375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 124 -a 1 h -t 0.52375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 124 -a 1 r -t 0.52389 -s 2 -d 3 -p cbr -e 210 -c 1 -i 90 -a 1 + -t 0.52389 -s 3 -d 5 -p cbr -e 210 -c 1 -i 90 -a 1 - -t 0.52389 -s 3 -d 5 -p cbr -e 210 -c 1 -i 90 -a 1 h -t 0.52389 -s 3 -d 5 -p cbr -e 210 -c 1 -i 90 -a 1 - -t 0.52429 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 102 -a 0 -S 0 -y {4 4} h -t 0.52429 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 102 -a 0 -S 0 -y {-1 -1} r -t 0.52461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 108 -a 1 + -t 0.52461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 108 -a 1 r -t 0.52685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 73 -a 1 r -t 0.52725 -s 2 -d 3 -p cbr -e 210 -c 1 -i 91 -a 1 + -t 0.52725 -s 3 -d 5 -p cbr -e 210 -c 1 -i 91 -a 1 - -t 0.52725 -s 3 -d 5 -p cbr -e 210 -c 1 -i 91 -a 1 h -t 0.52725 -s 3 -d 5 -p cbr -e 210 -c 1 -i 91 -a 1 + -t 0.5275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 125 -a 1 - -t 0.5275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 125 -a 1 h -t 0.5275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 125 -a 1 r -t 0.52836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 109 -a 1 + -t 0.52836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 109 -a 1 r -t 0.53021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 74 -a 1 r -t 0.53061 -s 2 -d 3 -p cbr -e 210 -c 1 -i 92 -a 1 + -t 0.53061 -s 3 -d 5 -p cbr -e 210 -c 1 -i 92 -a 1 - -t 0.53061 -s 3 -d 5 -p cbr -e 210 -c 1 -i 92 -a 1 h -t 0.53061 -s 3 -d 5 -p cbr -e 210 -c 1 -i 92 -a 1 + -t 0.53125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 126 -a 1 - -t 0.53125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 126 -a 1 h -t 0.53125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 126 -a 1 r -t 0.53211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 110 -a 1 + -t 0.53211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 110 -a 1 r -t 0.53357 -s 3 -d 5 -p cbr -e 210 -c 1 -i 75 -a 1 r -t 0.53397 -s 2 -d 3 -p cbr -e 210 -c 1 -i 93 -a 1 + -t 0.53397 -s 3 -d 5 -p cbr -e 210 -c 1 -i 93 -a 1 - -t 0.53397 -s 3 -d 5 -p cbr -e 210 -c 1 -i 93 -a 1 h -t 0.53397 -s 3 -d 5 -p cbr -e 210 -c 1 -i 93 -a 1 + -t 0.535 -s 1 -d 2 -p cbr -e 210 -c 1 -i 127 -a 1 - -t 0.535 -s 1 -d 2 -p cbr -e 210 -c 1 -i 127 -a 1 h -t 0.535 -s 1 -d 2 -p cbr -e 210 -c 1 -i 127 -a 1 r -t 0.53586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 112 -a 1 + -t 0.53586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 112 -a 1 r -t 0.53693 -s 3 -d 5 -p cbr -e 210 -c 1 -i 77 -a 1 r -t 0.53733 -s 2 -d 3 -p cbr -e 210 -c 1 -i 94 -a 1 + -t 0.53733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 94 -a 1 - -t 0.53733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 94 -a 1 h -t 0.53733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 94 -a 1 + -t 0.53875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 128 -a 1 - -t 0.53875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 128 -a 1 h -t 0.53875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 128 -a 1 r -t 0.53961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 113 -a 1 + -t 0.53961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 113 -a 1 r -t 0.54021 -s 2 -d 0 -p ack -e 40 -c 0 -i 84 -a 0 -S 0 -y {3 3} + -t 0.54021 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 129 -a 0 -S 0 -f 0 -m 0 -y {7 7} - -t 0.54021 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 129 -a 0 -S 0 -y {7 7} h -t 0.54021 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 129 -a 0 -S 0 -y {-1 -1} - -t 0.54029 -s 2 -d 3 -p cbr -e 210 -c 1 -i 107 -a 1 h -t 0.54029 -s 2 -d 3 -p cbr -e 210 -c 1 -i 107 -a 1 r -t 0.54029 -s 3 -d 5 -p cbr -e 210 -c 1 -i 78 -a 1 r -t 0.54069 -s 2 -d 3 -p cbr -e 210 -c 1 -i 95 -a 1 + -t 0.54069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 95 -a 1 - -t 0.54069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 95 -a 1 h -t 0.54069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 95 -a 1 + -t 0.5425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 130 -a 1 - -t 0.5425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 130 -a 1 h -t 0.5425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 130 -a 1 r -t 0.54336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 114 -a 1 + -t 0.54336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 114 -a 1 - -t 0.54365 -s 2 -d 3 -p cbr -e 210 -c 1 -i 108 -a 1 h -t 0.54365 -s 2 -d 3 -p cbr -e 210 -c 1 -i 108 -a 1 r -t 0.54365 -s 3 -d 5 -p cbr -e 210 -c 1 -i 79 -a 1 r -t 0.54405 -s 2 -d 3 -p cbr -e 210 -c 1 -i 96 -a 1 + -t 0.54405 -s 3 -d 5 -p cbr -e 210 -c 1 -i 96 -a 1 - -t 0.54405 -s 3 -d 5 -p cbr -e 210 -c 1 -i 96 -a 1 h -t 0.54405 -s 3 -d 5 -p cbr -e 210 -c 1 -i 96 -a 1 + -t 0.54625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 131 -a 1 - -t 0.54625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 131 -a 1 h -t 0.54625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 131 -a 1 - -t 0.54701 -s 2 -d 3 -p cbr -e 210 -c 1 -i 109 -a 1 h -t 0.54701 -s 2 -d 3 -p cbr -e 210 -c 1 -i 109 -a 1 r -t 0.54701 -s 3 -d 5 -p cbr -e 210 -c 1 -i 80 -a 1 r -t 0.54711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 115 -a 1 + -t 0.54711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 115 -a 1 r -t 0.54733 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 111 -a 0 -S 0 -y {5 5} + -t 0.54733 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 111 -a 0 -S 0 -y {5 5} r -t 0.54741 -s 2 -d 3 -p cbr -e 210 -c 1 -i 97 -a 1 + -t 0.54741 -s 3 -d 5 -p cbr -e 210 -c 1 -i 97 -a 1 - -t 0.54741 -s 3 -d 5 -p cbr -e 210 -c 1 -i 97 -a 1 h -t 0.54741 -s 3 -d 5 -p cbr -e 210 -c 1 -i 97 -a 1 + -t 0.55 -s 1 -d 2 -p cbr -e 210 -c 1 -i 132 -a 1 - -t 0.55 -s 1 -d 2 -p cbr -e 210 -c 1 -i 132 -a 1 h -t 0.55 -s 1 -d 2 -p cbr -e 210 -c 1 -i 132 -a 1 - -t 0.55037 -s 2 -d 3 -p cbr -e 210 -c 1 -i 110 -a 1 h -t 0.55037 -s 2 -d 3 -p cbr -e 210 -c 1 -i 110 -a 1 r -t 0.55037 -s 3 -d 5 -p cbr -e 210 -c 1 -i 81 -a 1 r -t 0.55077 -s 2 -d 3 -p cbr -e 210 -c 1 -i 98 -a 1 + -t 0.55077 -s 3 -d 5 -p cbr -e 210 -c 1 -i 98 -a 1 - -t 0.55077 -s 3 -d 5 -p cbr -e 210 -c 1 -i 98 -a 1 h -t 0.55077 -s 3 -d 5 -p cbr -e 210 -c 1 -i 98 -a 1 r -t 0.55086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 116 -a 1 + -t 0.55086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 116 -a 1 - -t 0.55373 -s 2 -d 3 -p cbr -e 210 -c 1 -i 112 -a 1 h -t 0.55373 -s 2 -d 3 -p cbr -e 210 -c 1 -i 112 -a 1 r -t 0.55373 -s 3 -d 5 -p cbr -e 210 -c 1 -i 82 -a 1 + -t 0.55375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 133 -a 1 - -t 0.55375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 133 -a 1 h -t 0.55375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 133 -a 1 r -t 0.55413 -s 2 -d 3 -p cbr -e 210 -c 1 -i 99 -a 1 + -t 0.55413 -s 3 -d 5 -p cbr -e 210 -c 1 -i 99 -a 1 - -t 0.55413 -s 3 -d 5 -p cbr -e 210 -c 1 -i 99 -a 1 h -t 0.55413 -s 3 -d 5 -p cbr -e 210 -c 1 -i 99 -a 1 r -t 0.55461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 117 -a 1 + -t 0.55461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 117 -a 1 - -t 0.55709 -s 2 -d 3 -p cbr -e 210 -c 1 -i 113 -a 1 h -t 0.55709 -s 2 -d 3 -p cbr -e 210 -c 1 -i 113 -a 1 r -t 0.55709 -s 3 -d 5 -p cbr -e 210 -c 1 -i 83 -a 1 r -t 0.55749 -s 2 -d 3 -p cbr -e 210 -c 1 -i 100 -a 1 + -t 0.55749 -s 3 -d 5 -p cbr -e 210 -c 1 -i 100 -a 1 - -t 0.55749 -s 3 -d 5 -p cbr -e 210 -c 1 -i 100 -a 1 h -t 0.55749 -s 3 -d 5 -p cbr -e 210 -c 1 -i 100 -a 1 + -t 0.5575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 134 -a 1 - -t 0.5575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 134 -a 1 h -t 0.5575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 134 -a 1 r -t 0.55836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 118 -a 1 + -t 0.55836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 118 -a 1 - -t 0.56045 -s 2 -d 3 -p cbr -e 210 -c 1 -i 114 -a 1 h -t 0.56045 -s 2 -d 3 -p cbr -e 210 -c 1 -i 114 -a 1 r -t 0.56045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 85 -a 1 r -t 0.56085 -s 2 -d 3 -p cbr -e 210 -c 1 -i 101 -a 1 + -t 0.56085 -s 3 -d 5 -p cbr -e 210 -c 1 -i 101 -a 1 - -t 0.56085 -s 3 -d 5 -p cbr -e 210 -c 1 -i 101 -a 1 h -t 0.56085 -s 3 -d 5 -p cbr -e 210 -c 1 -i 101 -a 1 + -t 0.56125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 135 -a 1 - -t 0.56125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 135 -a 1 h -t 0.56125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 135 -a 1 r -t 0.56211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 119 -a 1 + -t 0.56211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 119 -a 1 - -t 0.56381 -s 2 -d 3 -p cbr -e 210 -c 1 -i 115 -a 1 h -t 0.56381 -s 2 -d 3 -p cbr -e 210 -c 1 -i 115 -a 1 r -t 0.56381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 86 -a 1 r -t 0.56421 -s 2 -d 3 -p cbr -e 210 -c 1 -i 103 -a 1 + -t 0.56421 -s 3 -d 5 -p cbr -e 210 -c 1 -i 103 -a 1 - -t 0.56421 -s 3 -d 5 -p cbr -e 210 -c 1 -i 103 -a 1 h -t 0.56421 -s 3 -d 5 -p cbr -e 210 -c 1 -i 103 -a 1 + -t 0.565 -s 1 -d 2 -p cbr -e 210 -c 1 -i 136 -a 1 - -t 0.565 -s 1 -d 2 -p cbr -e 210 -c 1 -i 136 -a 1 h -t 0.565 -s 1 -d 2 -p cbr -e 210 -c 1 -i 136 -a 1 r -t 0.56586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 121 -a 1 + -t 0.56586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 121 -a 1 - -t 0.56717 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 111 -a 0 -S 0 -y {5 5} h -t 0.56717 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 111 -a 0 -S 0 -y {-1 -1} r -t 0.56717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 87 -a 1 r -t 0.56757 -s 2 -d 3 -p cbr -e 210 -c 1 -i 104 -a 1 + -t 0.56757 -s 3 -d 5 -p cbr -e 210 -c 1 -i 104 -a 1 - -t 0.56757 -s 3 -d 5 -p cbr -e 210 -c 1 -i 104 -a 1 h -t 0.56757 -s 3 -d 5 -p cbr -e 210 -c 1 -i 104 -a 1 + -t 0.56875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 137 -a 1 - -t 0.56875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 137 -a 1 h -t 0.56875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 137 -a 1 r -t 0.56961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 122 -a 1 + -t 0.56961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 122 -a 1 r -t 0.57053 -s 3 -d 5 -p cbr -e 210 -c 1 -i 88 -a 1 r -t 0.57093 -s 2 -d 3 -p cbr -e 210 -c 1 -i 105 -a 1 + -t 0.57093 -s 3 -d 5 -p cbr -e 210 -c 1 -i 105 -a 1 - -t 0.57093 -s 3 -d 5 -p cbr -e 210 -c 1 -i 105 -a 1 h -t 0.57093 -s 3 -d 5 -p cbr -e 210 -c 1 -i 105 -a 1 + -t 0.5725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 138 -a 1 - -t 0.5725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 138 -a 1 h -t 0.5725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 138 -a 1 r -t 0.57336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 123 -a 1 + -t 0.57336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 123 -a 1 r -t 0.57389 -s 3 -d 5 -p cbr -e 210 -c 1 -i 89 -a 1 r -t 0.57429 -s 2 -d 3 -p cbr -e 210 -c 1 -i 106 -a 1 + -t 0.57429 -s 3 -d 5 -p cbr -e 210 -c 1 -i 106 -a 1 - -t 0.57429 -s 3 -d 5 -p cbr -e 210 -c 1 -i 106 -a 1 h -t 0.57429 -s 3 -d 5 -p cbr -e 210 -c 1 -i 106 -a 1 + -t 0.57625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 139 -a 1 - -t 0.57625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 139 -a 1 h -t 0.57625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 139 -a 1 r -t 0.57677 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 120 -a 0 -S 0 -y {6 6} + -t 0.57677 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 120 -a 0 -S 0 -y {6 6} r -t 0.57711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 124 -a 1 + -t 0.57711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 124 -a 1 r -t 0.57725 -s 3 -d 5 -p cbr -e 210 -c 1 -i 90 -a 1 + -t 0.58 -s 1 -d 2 -p cbr -e 210 -c 1 -i 140 -a 1 - -t 0.58 -s 1 -d 2 -p cbr -e 210 -c 1 -i 140 -a 1 h -t 0.58 -s 1 -d 2 -p cbr -e 210 -c 1 -i 140 -a 1 r -t 0.58061 -s 3 -d 5 -p cbr -e 210 -c 1 -i 91 -a 1 r -t 0.58086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 125 -a 1 + -t 0.58086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 125 -a 1 d -t 0.58086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 125 -a 1 - -t 0.58317 -s 2 -d 3 -p cbr -e 210 -c 1 -i 116 -a 1 h -t 0.58317 -s 2 -d 3 -p cbr -e 210 -c 1 -i 116 -a 1 + -t 0.58375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 141 -a 1 - -t 0.58375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 141 -a 1 h -t 0.58375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 141 -a 1 r -t 0.58397 -s 3 -d 5 -p cbr -e 210 -c 1 -i 92 -a 1 r -t 0.58461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 126 -a 1 + -t 0.58461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 126 -a 1 - -t 0.58653 -s 2 -d 3 -p cbr -e 210 -c 1 -i 117 -a 1 h -t 0.58653 -s 2 -d 3 -p cbr -e 210 -c 1 -i 117 -a 1 r -t 0.58733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 93 -a 1 + -t 0.5875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 142 -a 1 - -t 0.5875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 142 -a 1 h -t 0.5875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 142 -a 1 r -t 0.58836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 127 -a 1 + -t 0.58836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 127 -a 1 - -t 0.58989 -s 2 -d 3 -p cbr -e 210 -c 1 -i 118 -a 1 h -t 0.58989 -s 2 -d 3 -p cbr -e 210 -c 1 -i 118 -a 1 r -t 0.59029 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 102 -a 0 -S 0 -y {4 4} + -t 0.59029 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 102 -a 0 -S 0 -y {4 4} - -t 0.59029 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 102 -a 0 -S 0 -y {4 4} h -t 0.59029 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 102 -a 0 -S 0 -y {-1 -1} r -t 0.59069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 94 -a 1 + -t 0.59125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 143 -a 1 - -t 0.59125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 143 -a 1 h -t 0.59125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 143 -a 1 r -t 0.59211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 128 -a 1 + -t 0.59211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 128 -a 1 - -t 0.59325 -s 2 -d 3 -p cbr -e 210 -c 1 -i 119 -a 1 h -t 0.59325 -s 2 -d 3 -p cbr -e 210 -c 1 -i 119 -a 1 r -t 0.59365 -s 2 -d 3 -p cbr -e 210 -c 1 -i 107 -a 1 + -t 0.59365 -s 3 -d 5 -p cbr -e 210 -c 1 -i 107 -a 1 - -t 0.59365 -s 3 -d 5 -p cbr -e 210 -c 1 -i 107 -a 1 h -t 0.59365 -s 3 -d 5 -p cbr -e 210 -c 1 -i 107 -a 1 r -t 0.59405 -s 3 -d 5 -p cbr -e 210 -c 1 -i 95 -a 1 + -t 0.595 -s 1 -d 2 -p cbr -e 210 -c 1 -i 144 -a 1 - -t 0.595 -s 1 -d 2 -p cbr -e 210 -c 1 -i 144 -a 1 h -t 0.595 -s 1 -d 2 -p cbr -e 210 -c 1 -i 144 -a 1 r -t 0.59586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 130 -a 1 + -t 0.59586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 130 -a 1 - -t 0.59661 -s 2 -d 3 -p cbr -e 210 -c 1 -i 121 -a 1 h -t 0.59661 -s 2 -d 3 -p cbr -e 210 -c 1 -i 121 -a 1 r -t 0.59701 -s 2 -d 3 -p cbr -e 210 -c 1 -i 108 -a 1 + -t 0.59701 -s 3 -d 5 -p cbr -e 210 -c 1 -i 108 -a 1 - -t 0.59701 -s 3 -d 5 -p cbr -e 210 -c 1 -i 108 -a 1 h -t 0.59701 -s 3 -d 5 -p cbr -e 210 -c 1 -i 108 -a 1 r -t 0.59741 -s 3 -d 5 -p cbr -e 210 -c 1 -i 96 -a 1 + -t 0.59875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 145 -a 1 - -t 0.59875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 145 -a 1 h -t 0.59875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 145 -a 1 r -t 0.59961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 131 -a 1 + -t 0.59961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 131 -a 1 - -t 0.59997 -s 2 -d 3 -p cbr -e 210 -c 1 -i 122 -a 1 h -t 0.59997 -s 2 -d 3 -p cbr -e 210 -c 1 -i 122 -a 1 r -t 0.60037 -s 2 -d 3 -p cbr -e 210 -c 1 -i 109 -a 1 + -t 0.60037 -s 3 -d 5 -p cbr -e 210 -c 1 -i 109 -a 1 - -t 0.60037 -s 3 -d 5 -p cbr -e 210 -c 1 -i 109 -a 1 h -t 0.60037 -s 3 -d 5 -p cbr -e 210 -c 1 -i 109 -a 1 r -t 0.60077 -s 3 -d 5 -p cbr -e 210 -c 1 -i 97 -a 1 + -t 0.6025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 146 -a 1 - -t 0.6025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 146 -a 1 h -t 0.6025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 146 -a 1 - -t 0.60333 -s 2 -d 3 -p cbr -e 210 -c 1 -i 123 -a 1 h -t 0.60333 -s 2 -d 3 -p cbr -e 210 -c 1 -i 123 -a 1 r -t 0.60336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 132 -a 1 + -t 0.60336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 132 -a 1 r -t 0.60373 -s 2 -d 3 -p cbr -e 210 -c 1 -i 110 -a 1 + -t 0.60373 -s 3 -d 5 -p cbr -e 210 -c 1 -i 110 -a 1 - -t 0.60373 -s 3 -d 5 -p cbr -e 210 -c 1 -i 110 -a 1 h -t 0.60373 -s 3 -d 5 -p cbr -e 210 -c 1 -i 110 -a 1 r -t 0.60413 -s 3 -d 5 -p cbr -e 210 -c 1 -i 98 -a 1 r -t 0.60621 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 129 -a 0 -S 0 -y {7 7} + -t 0.60621 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 129 -a 0 -S 0 -y {7 7} + -t 0.60625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 147 -a 1 - -t 0.60625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 147 -a 1 h -t 0.60625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 147 -a 1 - -t 0.60669 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 120 -a 0 -S 0 -y {6 6} h -t 0.60669 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 120 -a 0 -S 0 -y {-1 -1} r -t 0.60709 -s 2 -d 3 -p cbr -e 210 -c 1 -i 112 -a 1 + -t 0.60709 -s 3 -d 5 -p cbr -e 210 -c 1 -i 112 -a 1 - -t 0.60709 -s 3 -d 5 -p cbr -e 210 -c 1 -i 112 -a 1 h -t 0.60709 -s 3 -d 5 -p cbr -e 210 -c 1 -i 112 -a 1 r -t 0.60711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 133 -a 1 + -t 0.60711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 133 -a 1 r -t 0.60749 -s 3 -d 5 -p cbr -e 210 -c 1 -i 99 -a 1 + -t 0.61 -s 1 -d 2 -p cbr -e 210 -c 1 -i 148 -a 1 - -t 0.61 -s 1 -d 2 -p cbr -e 210 -c 1 -i 148 -a 1 h -t 0.61 -s 1 -d 2 -p cbr -e 210 -c 1 -i 148 -a 1 r -t 0.61045 -s 2 -d 3 -p cbr -e 210 -c 1 -i 113 -a 1 + -t 0.61045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 113 -a 1 - -t 0.61045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 113 -a 1 h -t 0.61045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 113 -a 1 r -t 0.61085 -s 3 -d 5 -p cbr -e 210 -c 1 -i 100 -a 1 r -t 0.61086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 134 -a 1 + -t 0.61086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 134 -a 1 d -t 0.61086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 134 -a 1 + -t 0.61375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 149 -a 1 - -t 0.61375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 149 -a 1 h -t 0.61375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 149 -a 1 r -t 0.61381 -s 2 -d 3 -p cbr -e 210 -c 1 -i 114 -a 1 + -t 0.61381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 114 -a 1 - -t 0.61381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 114 -a 1 h -t 0.61381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 114 -a 1 r -t 0.61421 -s 3 -d 5 -p cbr -e 210 -c 1 -i 101 -a 1 r -t 0.61461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 135 -a 1 + -t 0.61461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 135 -a 1 d -t 0.61461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 135 -a 1 r -t 0.61717 -s 2 -d 3 -p cbr -e 210 -c 1 -i 115 -a 1 + -t 0.61717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 115 -a 1 - -t 0.61717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 115 -a 1 h -t 0.61717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 115 -a 1 + -t 0.6175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 150 -a 1 - -t 0.6175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 150 -a 1 h -t 0.6175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 150 -a 1 r -t 0.61757 -s 3 -d 5 -p cbr -e 210 -c 1 -i 103 -a 1 r -t 0.61836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 136 -a 1 + -t 0.61836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 136 -a 1 d -t 0.61836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 136 -a 1 r -t 0.62093 -s 3 -d 5 -p cbr -e 210 -c 1 -i 104 -a 1 + -t 0.62125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 151 -a 1 - -t 0.62125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 151 -a 1 h -t 0.62125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 151 -a 1 r -t 0.62211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 137 -a 1 + -t 0.62211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 137 -a 1 d -t 0.62211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 137 -a 1 - -t 0.62269 -s 2 -d 3 -p cbr -e 210 -c 1 -i 124 -a 1 h -t 0.62269 -s 2 -d 3 -p cbr -e 210 -c 1 -i 124 -a 1 r -t 0.62429 -s 3 -d 5 -p cbr -e 210 -c 1 -i 105 -a 1 + -t 0.625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 152 -a 1 - -t 0.625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 152 -a 1 h -t 0.625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 152 -a 1 r -t 0.62586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 138 -a 1 + -t 0.62586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 138 -a 1 - -t 0.62605 -s 2 -d 3 -p cbr -e 210 -c 1 -i 126 -a 1 h -t 0.62605 -s 2 -d 3 -p cbr -e 210 -c 1 -i 126 -a 1 r -t 0.62765 -s 3 -d 5 -p cbr -e 210 -c 1 -i 106 -a 1 + -t 0.62875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 153 -a 1 - -t 0.62875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 153 -a 1 h -t 0.62875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 153 -a 1 - -t 0.62941 -s 2 -d 3 -p cbr -e 210 -c 1 -i 127 -a 1 h -t 0.62941 -s 2 -d 3 -p cbr -e 210 -c 1 -i 127 -a 1 r -t 0.62961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 139 -a 1 + -t 0.62961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 139 -a 1 + -t 0.6325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 154 -a 1 - -t 0.6325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 154 -a 1 h -t 0.6325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 154 -a 1 - -t 0.63277 -s 2 -d 3 -p cbr -e 210 -c 1 -i 128 -a 1 h -t 0.63277 -s 2 -d 3 -p cbr -e 210 -c 1 -i 128 -a 1 r -t 0.63317 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 111 -a 0 -S 0 -y {5 5} + -t 0.63317 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 111 -a 0 -S 0 -y {5 5} - -t 0.63317 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 111 -a 0 -S 0 -y {5 5} h -t 0.63317 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 111 -a 0 -S 0 -y {-1 -1} r -t 0.63336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 140 -a 1 + -t 0.63336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 140 -a 1 - -t 0.63613 -s 2 -d 3 -p cbr -e 210 -c 1 -i 130 -a 1 h -t 0.63613 -s 2 -d 3 -p cbr -e 210 -c 1 -i 130 -a 1 + -t 0.63625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 155 -a 1 - -t 0.63625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 155 -a 1 h -t 0.63625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 155 -a 1 r -t 0.63653 -s 2 -d 3 -p cbr -e 210 -c 1 -i 116 -a 1 + -t 0.63653 -s 3 -d 5 -p cbr -e 210 -c 1 -i 116 -a 1 - -t 0.63653 -s 3 -d 5 -p cbr -e 210 -c 1 -i 116 -a 1 h -t 0.63653 -s 3 -d 5 -p cbr -e 210 -c 1 -i 116 -a 1 r -t 0.63711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 141 -a 1 + -t 0.63711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 141 -a 1 - -t 0.63949 -s 2 -d 3 -p cbr -e 210 -c 1 -i 131 -a 1 h -t 0.63949 -s 2 -d 3 -p cbr -e 210 -c 1 -i 131 -a 1 r -t 0.63989 -s 2 -d 3 -p cbr -e 210 -c 1 -i 117 -a 1 + -t 0.63989 -s 3 -d 5 -p cbr -e 210 -c 1 -i 117 -a 1 - -t 0.63989 -s 3 -d 5 -p cbr -e 210 -c 1 -i 117 -a 1 h -t 0.63989 -s 3 -d 5 -p cbr -e 210 -c 1 -i 117 -a 1 + -t 0.64 -s 1 -d 2 -p cbr -e 210 -c 1 -i 156 -a 1 - -t 0.64 -s 1 -d 2 -p cbr -e 210 -c 1 -i 156 -a 1 h -t 0.64 -s 1 -d 2 -p cbr -e 210 -c 1 -i 156 -a 1 r -t 0.64086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 142 -a 1 + -t 0.64086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 142 -a 1 - -t 0.64285 -s 2 -d 3 -p cbr -e 210 -c 1 -i 132 -a 1 h -t 0.64285 -s 2 -d 3 -p cbr -e 210 -c 1 -i 132 -a 1 r -t 0.64325 -s 2 -d 3 -p cbr -e 210 -c 1 -i 118 -a 1 + -t 0.64325 -s 3 -d 5 -p cbr -e 210 -c 1 -i 118 -a 1 - -t 0.64325 -s 3 -d 5 -p cbr -e 210 -c 1 -i 118 -a 1 h -t 0.64325 -s 3 -d 5 -p cbr -e 210 -c 1 -i 118 -a 1 + -t 0.64375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 157 -a 1 - -t 0.64375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 157 -a 1 h -t 0.64375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 157 -a 1 r -t 0.64461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 143 -a 1 + -t 0.64461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 143 -a 1 - -t 0.64621 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 129 -a 0 -S 0 -y {7 7} h -t 0.64621 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 129 -a 0 -S 0 -y {-1 -1} r -t 0.64661 -s 2 -d 3 -p cbr -e 210 -c 1 -i 119 -a 1 + -t 0.64661 -s 3 -d 5 -p cbr -e 210 -c 1 -i 119 -a 1 - -t 0.64661 -s 3 -d 5 -p cbr -e 210 -c 1 -i 119 -a 1 h -t 0.64661 -s 3 -d 5 -p cbr -e 210 -c 1 -i 119 -a 1 r -t 0.64701 -s 3 -d 5 -p cbr -e 210 -c 1 -i 107 -a 1 + -t 0.6475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 158 -a 1 - -t 0.6475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 158 -a 1 h -t 0.6475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 158 -a 1 r -t 0.64836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 144 -a 1 + -t 0.64836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 144 -a 1 r -t 0.64997 -s 2 -d 3 -p cbr -e 210 -c 1 -i 121 -a 1 + -t 0.64997 -s 3 -d 5 -p cbr -e 210 -c 1 -i 121 -a 1 - -t 0.64997 -s 3 -d 5 -p cbr -e 210 -c 1 -i 121 -a 1 h -t 0.64997 -s 3 -d 5 -p cbr -e 210 -c 1 -i 121 -a 1 r -t 0.65037 -s 3 -d 5 -p cbr -e 210 -c 1 -i 108 -a 1 + -t 0.65125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 159 -a 1 - -t 0.65125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 159 -a 1 h -t 0.65125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 159 -a 1 r -t 0.65211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 145 -a 1 + -t 0.65211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 145 -a 1 r -t 0.65333 -s 2 -d 3 -p cbr -e 210 -c 1 -i 122 -a 1 + -t 0.65333 -s 3 -d 5 -p cbr -e 210 -c 1 -i 122 -a 1 - -t 0.65333 -s 3 -d 5 -p cbr -e 210 -c 1 -i 122 -a 1 h -t 0.65333 -s 3 -d 5 -p cbr -e 210 -c 1 -i 122 -a 1 r -t 0.65373 -s 3 -d 5 -p cbr -e 210 -c 1 -i 109 -a 1 + -t 0.655 -s 1 -d 2 -p cbr -e 210 -c 1 -i 160 -a 1 - -t 0.655 -s 1 -d 2 -p cbr -e 210 -c 1 -i 160 -a 1 h -t 0.655 -s 1 -d 2 -p cbr -e 210 -c 1 -i 160 -a 1 r -t 0.65586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 146 -a 1 + -t 0.65586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 146 -a 1 d -t 0.65586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 146 -a 1 r -t 0.65629 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 102 -a 0 -S 0 -y {4 4} + -t 0.65629 -s 4 -d 3 -p ack -e 40 -c 0 -i 161 -a 0 -S 0 -y {4 4} - -t 0.65629 -s 4 -d 3 -p ack -e 40 -c 0 -i 161 -a 0 -S 0 -y {4 4} h -t 0.65629 -s 4 -d 3 -p ack -e 40 -c 0 -i 161 -a 0 -S 0 -y {-1 -1} r -t 0.65669 -s 2 -d 3 -p cbr -e 210 -c 1 -i 123 -a 1 + -t 0.65669 -s 3 -d 5 -p cbr -e 210 -c 1 -i 123 -a 1 - -t 0.65669 -s 3 -d 5 -p cbr -e 210 -c 1 -i 123 -a 1 h -t 0.65669 -s 3 -d 5 -p cbr -e 210 -c 1 -i 123 -a 1 r -t 0.65709 -s 3 -d 5 -p cbr -e 210 -c 1 -i 110 -a 1 + -t 0.65875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 162 -a 1 - -t 0.65875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 162 -a 1 h -t 0.65875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 162 -a 1 r -t 0.65961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 147 -a 1 + -t 0.65961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 147 -a 1 d -t 0.65961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 147 -a 1 r -t 0.66045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 112 -a 1 - -t 0.66221 -s 2 -d 3 -p cbr -e 210 -c 1 -i 133 -a 1 h -t 0.66221 -s 2 -d 3 -p cbr -e 210 -c 1 -i 133 -a 1 + -t 0.6625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 163 -a 1 - -t 0.6625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 163 -a 1 h -t 0.6625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 163 -a 1 r -t 0.66336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 148 -a 1 + -t 0.66336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 148 -a 1 r -t 0.66381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 113 -a 1 - -t 0.66557 -s 2 -d 3 -p cbr -e 210 -c 1 -i 138 -a 1 h -t 0.66557 -s 2 -d 3 -p cbr -e 210 -c 1 -i 138 -a 1 + -t 0.66625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 164 -a 1 - -t 0.66625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 164 -a 1 h -t 0.66625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 164 -a 1 r -t 0.66711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 149 -a 1 + -t 0.66711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 149 -a 1 r -t 0.66717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 114 -a 1 - -t 0.66893 -s 2 -d 3 -p cbr -e 210 -c 1 -i 139 -a 1 h -t 0.66893 -s 2 -d 3 -p cbr -e 210 -c 1 -i 139 -a 1 + -t 0.67 -s 1 -d 2 -p cbr -e 210 -c 1 -i 165 -a 1 - -t 0.67 -s 1 -d 2 -p cbr -e 210 -c 1 -i 165 -a 1 h -t 0.67 -s 1 -d 2 -p cbr -e 210 -c 1 -i 165 -a 1 r -t 0.67053 -s 3 -d 5 -p cbr -e 210 -c 1 -i 115 -a 1 r -t 0.67086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 150 -a 1 + -t 0.67086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 150 -a 1 - -t 0.67229 -s 2 -d 3 -p cbr -e 210 -c 1 -i 140 -a 1 h -t 0.67229 -s 2 -d 3 -p cbr -e 210 -c 1 -i 140 -a 1 r -t 0.67269 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 120 -a 0 -S 0 -y {6 6} + -t 0.67269 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 120 -a 0 -S 0 -y {6 6} - -t 0.67269 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 120 -a 0 -S 0 -y {6 6} h -t 0.67269 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 120 -a 0 -S 0 -y {-1 -1} + -t 0.67375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 166 -a 1 - -t 0.67375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 166 -a 1 h -t 0.67375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 166 -a 1 r -t 0.67461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 151 -a 1 + -t 0.67461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 151 -a 1 - -t 0.67565 -s 2 -d 3 -p cbr -e 210 -c 1 -i 141 -a 1 h -t 0.67565 -s 2 -d 3 -p cbr -e 210 -c 1 -i 141 -a 1 r -t 0.67605 -s 2 -d 3 -p cbr -e 210 -c 1 -i 124 -a 1 + -t 0.67605 -s 3 -d 5 -p cbr -e 210 -c 1 -i 124 -a 1 - -t 0.67605 -s 3 -d 5 -p cbr -e 210 -c 1 -i 124 -a 1 h -t 0.67605 -s 3 -d 5 -p cbr -e 210 -c 1 -i 124 -a 1 + -t 0.6775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 167 -a 1 - -t 0.6775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 167 -a 1 h -t 0.6775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 167 -a 1 r -t 0.67836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 152 -a 1 + -t 0.67836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 152 -a 1 - -t 0.67901 -s 2 -d 3 -p cbr -e 210 -c 1 -i 142 -a 1 h -t 0.67901 -s 2 -d 3 -p cbr -e 210 -c 1 -i 142 -a 1 r -t 0.67941 -s 2 -d 3 -p cbr -e 210 -c 1 -i 126 -a 1 + -t 0.67941 -s 3 -d 5 -p cbr -e 210 -c 1 -i 126 -a 1 - -t 0.67941 -s 3 -d 5 -p cbr -e 210 -c 1 -i 126 -a 1 h -t 0.67941 -s 3 -d 5 -p cbr -e 210 -c 1 -i 126 -a 1 + -t 0.68125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 168 -a 1 - -t 0.68125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 168 -a 1 h -t 0.68125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 168 -a 1 r -t 0.68211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 153 -a 1 + -t 0.68211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 153 -a 1 - -t 0.68237 -s 2 -d 3 -p cbr -e 210 -c 1 -i 143 -a 1 h -t 0.68237 -s 2 -d 3 -p cbr -e 210 -c 1 -i 143 -a 1 r -t 0.68277 -s 2 -d 3 -p cbr -e 210 -c 1 -i 127 -a 1 + -t 0.68277 -s 3 -d 5 -p cbr -e 210 -c 1 -i 127 -a 1 - -t 0.68277 -s 3 -d 5 -p cbr -e 210 -c 1 -i 127 -a 1 h -t 0.68277 -s 3 -d 5 -p cbr -e 210 -c 1 -i 127 -a 1 + -t 0.685 -s 1 -d 2 -p cbr -e 210 -c 1 -i 169 -a 1 - -t 0.685 -s 1 -d 2 -p cbr -e 210 -c 1 -i 169 -a 1 h -t 0.685 -s 1 -d 2 -p cbr -e 210 -c 1 -i 169 -a 1 - -t 0.68573 -s 2 -d 3 -p cbr -e 210 -c 1 -i 144 -a 1 h -t 0.68573 -s 2 -d 3 -p cbr -e 210 -c 1 -i 144 -a 1 r -t 0.68586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 154 -a 1 + -t 0.68586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 154 -a 1 r -t 0.68613 -s 2 -d 3 -p cbr -e 210 -c 1 -i 128 -a 1 + -t 0.68613 -s 3 -d 5 -p cbr -e 210 -c 1 -i 128 -a 1 - -t 0.68613 -s 3 -d 5 -p cbr -e 210 -c 1 -i 128 -a 1 h -t 0.68613 -s 3 -d 5 -p cbr -e 210 -c 1 -i 128 -a 1 + -t 0.68875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 170 -a 1 - -t 0.68875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 170 -a 1 h -t 0.68875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 170 -a 1 - -t 0.68909 -s 2 -d 3 -p cbr -e 210 -c 1 -i 145 -a 1 h -t 0.68909 -s 2 -d 3 -p cbr -e 210 -c 1 -i 145 -a 1 r -t 0.68949 -s 2 -d 3 -p cbr -e 210 -c 1 -i 130 -a 1 + -t 0.68949 -s 3 -d 5 -p cbr -e 210 -c 1 -i 130 -a 1 - -t 0.68949 -s 3 -d 5 -p cbr -e 210 -c 1 -i 130 -a 1 h -t 0.68949 -s 3 -d 5 -p cbr -e 210 -c 1 -i 130 -a 1 r -t 0.68961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 155 -a 1 + -t 0.68961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 155 -a 1 r -t 0.68989 -s 3 -d 5 -p cbr -e 210 -c 1 -i 116 -a 1 - -t 0.69245 -s 2 -d 3 -p cbr -e 210 -c 1 -i 148 -a 1 h -t 0.69245 -s 2 -d 3 -p cbr -e 210 -c 1 -i 148 -a 1 + -t 0.6925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 171 -a 1 - -t 0.6925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 171 -a 1 h -t 0.6925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 171 -a 1 r -t 0.69285 -s 2 -d 3 -p cbr -e 210 -c 1 -i 131 -a 1 + -t 0.69285 -s 3 -d 5 -p cbr -e 210 -c 1 -i 131 -a 1 - -t 0.69285 -s 3 -d 5 -p cbr -e 210 -c 1 -i 131 -a 1 h -t 0.69285 -s 3 -d 5 -p cbr -e 210 -c 1 -i 131 -a 1 r -t 0.69325 -s 3 -d 5 -p cbr -e 210 -c 1 -i 117 -a 1 r -t 0.69336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 156 -a 1 + -t 0.69336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 156 -a 1 - -t 0.69581 -s 2 -d 3 -p cbr -e 210 -c 1 -i 149 -a 1 h -t 0.69581 -s 2 -d 3 -p cbr -e 210 -c 1 -i 149 -a 1 r -t 0.69621 -s 2 -d 3 -p cbr -e 210 -c 1 -i 132 -a 1 + -t 0.69621 -s 3 -d 5 -p cbr -e 210 -c 1 -i 132 -a 1 - -t 0.69621 -s 3 -d 5 -p cbr -e 210 -c 1 -i 132 -a 1 h -t 0.69621 -s 3 -d 5 -p cbr -e 210 -c 1 -i 132 -a 1 + -t 0.69625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 172 -a 1 - -t 0.69625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 172 -a 1 h -t 0.69625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 172 -a 1 r -t 0.69661 -s 3 -d 5 -p cbr -e 210 -c 1 -i 118 -a 1 r -t 0.69711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 157 -a 1 + -t 0.69711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 157 -a 1 r -t 0.69917 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 111 -a 0 -S 0 -y {5 5} + -t 0.69917 -s 4 -d 3 -p ack -e 40 -c 0 -i 173 -a 0 -S 0 -y {5 5} - -t 0.69917 -s 4 -d 3 -p ack -e 40 -c 0 -i 173 -a 0 -S 0 -y {5 5} h -t 0.69917 -s 4 -d 3 -p ack -e 40 -c 0 -i 173 -a 0 -S 0 -y {-1 -1} - -t 0.69917 -s 2 -d 3 -p cbr -e 210 -c 1 -i 150 -a 1 h -t 0.69917 -s 2 -d 3 -p cbr -e 210 -c 1 -i 150 -a 1 r -t 0.69997 -s 3 -d 5 -p cbr -e 210 -c 1 -i 119 -a 1 + -t 0.7 -s 1 -d 2 -p cbr -e 210 -c 1 -i 174 -a 1 - -t 0.7 -s 1 -d 2 -p cbr -e 210 -c 1 -i 174 -a 1 h -t 0.7 -s 1 -d 2 -p cbr -e 210 -c 1 -i 174 -a 1 r -t 0.70086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 158 -a 1 + -t 0.70086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 158 -a 1 - -t 0.70253 -s 2 -d 3 -p cbr -e 210 -c 1 -i 151 -a 1 h -t 0.70253 -s 2 -d 3 -p cbr -e 210 -c 1 -i 151 -a 1 r -t 0.70333 -s 3 -d 5 -p cbr -e 210 -c 1 -i 121 -a 1 + -t 0.70375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 175 -a 1 - -t 0.70375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 175 -a 1 h -t 0.70375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 175 -a 1 r -t 0.70461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 159 -a 1 + -t 0.70461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 159 -a 1 - -t 0.70589 -s 2 -d 3 -p cbr -e 210 -c 1 -i 152 -a 1 h -t 0.70589 -s 2 -d 3 -p cbr -e 210 -c 1 -i 152 -a 1 r -t 0.70669 -s 3 -d 5 -p cbr -e 210 -c 1 -i 122 -a 1 r -t 0.70693 -s 4 -d 3 -p ack -e 40 -c 0 -i 161 -a 0 -S 0 -y {4 4} + -t 0.70693 -s 3 -d 2 -p ack -e 40 -c 0 -i 161 -a 0 -S 0 -y {4 4} - -t 0.70693 -s 3 -d 2 -p ack -e 40 -c 0 -i 161 -a 0 -S 0 -y {4 4} h -t 0.70693 -s 3 -d 2 -p ack -e 40 -c 0 -i 161 -a 0 -S 0 -y {-1 -1} + -t 0.7075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 176 -a 1 - -t 0.7075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 176 -a 1 h -t 0.7075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 176 -a 1 r -t 0.70836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 160 -a 1 + -t 0.70836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 160 -a 1 - -t 0.70925 -s 2 -d 3 -p cbr -e 210 -c 1 -i 153 -a 1 h -t 0.70925 -s 2 -d 3 -p cbr -e 210 -c 1 -i 153 -a 1 r -t 0.71005 -s 3 -d 5 -p cbr -e 210 -c 1 -i 123 -a 1 + -t 0.71125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 177 -a 1 - -t 0.71125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 177 -a 1 h -t 0.71125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 177 -a 1 r -t 0.71211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 162 -a 1 + -t 0.71211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 162 -a 1 r -t 0.71221 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 129 -a 0 -S 0 -y {7 7} + -t 0.71221 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 129 -a 0 -S 0 -y {7 7} - -t 0.71221 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 129 -a 0 -S 0 -y {7 7} h -t 0.71221 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 129 -a 0 -S 0 -y {-1 -1} - -t 0.71261 -s 2 -d 3 -p cbr -e 210 -c 1 -i 154 -a 1 h -t 0.71261 -s 2 -d 3 -p cbr -e 210 -c 1 -i 154 -a 1 + -t 0.715 -s 1 -d 2 -p cbr -e 210 -c 1 -i 178 -a 1 - -t 0.715 -s 1 -d 2 -p cbr -e 210 -c 1 -i 178 -a 1 h -t 0.715 -s 1 -d 2 -p cbr -e 210 -c 1 -i 178 -a 1 r -t 0.71557 -s 2 -d 3 -p cbr -e 210 -c 1 -i 133 -a 1 + -t 0.71557 -s 3 -d 5 -p cbr -e 210 -c 1 -i 133 -a 1 - -t 0.71557 -s 3 -d 5 -p cbr -e 210 -c 1 -i 133 -a 1 h -t 0.71557 -s 3 -d 5 -p cbr -e 210 -c 1 -i 133 -a 1 r -t 0.71586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 163 -a 1 + -t 0.71586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 163 -a 1 - -t 0.71597 -s 2 -d 3 -p cbr -e 210 -c 1 -i 155 -a 1 h -t 0.71597 -s 2 -d 3 -p cbr -e 210 -c 1 -i 155 -a 1 + -t 0.71875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 179 -a 1 - -t 0.71875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 179 -a 1 h -t 0.71875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 179 -a 1 r -t 0.71893 -s 2 -d 3 -p cbr -e 210 -c 1 -i 138 -a 1 + -t 0.71893 -s 3 -d 5 -p cbr -e 210 -c 1 -i 138 -a 1 - -t 0.71893 -s 3 -d 5 -p cbr -e 210 -c 1 -i 138 -a 1 h -t 0.71893 -s 3 -d 5 -p cbr -e 210 -c 1 -i 138 -a 1 - -t 0.71933 -s 2 -d 3 -p cbr -e 210 -c 1 -i 156 -a 1 h -t 0.71933 -s 2 -d 3 -p cbr -e 210 -c 1 -i 156 -a 1 r -t 0.71961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 164 -a 1 + -t 0.71961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 164 -a 1 r -t 0.72229 -s 2 -d 3 -p cbr -e 210 -c 1 -i 139 -a 1 + -t 0.72229 -s 3 -d 5 -p cbr -e 210 -c 1 -i 139 -a 1 - -t 0.72229 -s 3 -d 5 -p cbr -e 210 -c 1 -i 139 -a 1 h -t 0.72229 -s 3 -d 5 -p cbr -e 210 -c 1 -i 139 -a 1 + -t 0.7225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 180 -a 1 - -t 0.7225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 180 -a 1 h -t 0.7225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 180 -a 1 - -t 0.72269 -s 2 -d 3 -p cbr -e 210 -c 1 -i 157 -a 1 h -t 0.72269 -s 2 -d 3 -p cbr -e 210 -c 1 -i 157 -a 1 r -t 0.72336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 165 -a 1 + -t 0.72336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 165 -a 1 r -t 0.72565 -s 2 -d 3 -p cbr -e 210 -c 1 -i 140 -a 1 + -t 0.72565 -s 3 -d 5 -p cbr -e 210 -c 1 -i 140 -a 1 - -t 0.72565 -s 3 -d 5 -p cbr -e 210 -c 1 -i 140 -a 1 h -t 0.72565 -s 3 -d 5 -p cbr -e 210 -c 1 -i 140 -a 1 - -t 0.72605 -s 2 -d 3 -p cbr -e 210 -c 1 -i 158 -a 1 h -t 0.72605 -s 2 -d 3 -p cbr -e 210 -c 1 -i 158 -a 1 + -t 0.72625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 181 -a 1 - -t 0.72625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 181 -a 1 h -t 0.72625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 181 -a 1 r -t 0.72711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 166 -a 1 + -t 0.72711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 166 -a 1 r -t 0.72901 -s 2 -d 3 -p cbr -e 210 -c 1 -i 141 -a 1 + -t 0.72901 -s 3 -d 5 -p cbr -e 210 -c 1 -i 141 -a 1 - -t 0.72901 -s 3 -d 5 -p cbr -e 210 -c 1 -i 141 -a 1 h -t 0.72901 -s 3 -d 5 -p cbr -e 210 -c 1 -i 141 -a 1 r -t 0.72941 -s 3 -d 5 -p cbr -e 210 -c 1 -i 124 -a 1 - -t 0.72941 -s 2 -d 3 -p cbr -e 210 -c 1 -i 159 -a 1 h -t 0.72941 -s 2 -d 3 -p cbr -e 210 -c 1 -i 159 -a 1 + -t 0.73 -s 1 -d 2 -p cbr -e 210 -c 1 -i 182 -a 1 - -t 0.73 -s 1 -d 2 -p cbr -e 210 -c 1 -i 182 -a 1 h -t 0.73 -s 1 -d 2 -p cbr -e 210 -c 1 -i 182 -a 1 r -t 0.73086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 167 -a 1 + -t 0.73086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 167 -a 1 r -t 0.73237 -s 2 -d 3 -p cbr -e 210 -c 1 -i 142 -a 1 + -t 0.73237 -s 3 -d 5 -p cbr -e 210 -c 1 -i 142 -a 1 - -t 0.73237 -s 3 -d 5 -p cbr -e 210 -c 1 -i 142 -a 1 h -t 0.73237 -s 3 -d 5 -p cbr -e 210 -c 1 -i 142 -a 1 r -t 0.73277 -s 3 -d 5 -p cbr -e 210 -c 1 -i 126 -a 1 - -t 0.73277 -s 2 -d 3 -p cbr -e 210 -c 1 -i 160 -a 1 h -t 0.73277 -s 2 -d 3 -p cbr -e 210 -c 1 -i 160 -a 1 + -t 0.73375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 183 -a 1 - -t 0.73375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 183 -a 1 h -t 0.73375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 183 -a 1 r -t 0.73461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 168 -a 1 + -t 0.73461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 168 -a 1 r -t 0.73573 -s 2 -d 3 -p cbr -e 210 -c 1 -i 143 -a 1 + -t 0.73573 -s 3 -d 5 -p cbr -e 210 -c 1 -i 143 -a 1 - -t 0.73573 -s 3 -d 5 -p cbr -e 210 -c 1 -i 143 -a 1 h -t 0.73573 -s 3 -d 5 -p cbr -e 210 -c 1 -i 143 -a 1 r -t 0.73613 -s 3 -d 5 -p cbr -e 210 -c 1 -i 127 -a 1 - -t 0.73613 -s 2 -d 3 -p cbr -e 210 -c 1 -i 162 -a 1 h -t 0.73613 -s 2 -d 3 -p cbr -e 210 -c 1 -i 162 -a 1 + -t 0.7375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 184 -a 1 - -t 0.7375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 184 -a 1 h -t 0.7375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 184 -a 1 r -t 0.73836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 169 -a 1 + -t 0.73836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 169 -a 1 r -t 0.73869 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 120 -a 0 -S 0 -y {6 6} + -t 0.73869 -s 4 -d 3 -p ack -e 40 -c 0 -i 185 -a 0 -S 0 -y {6 6} - -t 0.73869 -s 4 -d 3 -p ack -e 40 -c 0 -i 185 -a 0 -S 0 -y {6 6} h -t 0.73869 -s 4 -d 3 -p ack -e 40 -c 0 -i 185 -a 0 -S 0 -y {-1 -1} r -t 0.73909 -s 2 -d 3 -p cbr -e 210 -c 1 -i 144 -a 1 + -t 0.73909 -s 3 -d 5 -p cbr -e 210 -c 1 -i 144 -a 1 - -t 0.73909 -s 3 -d 5 -p cbr -e 210 -c 1 -i 144 -a 1 h -t 0.73909 -s 3 -d 5 -p cbr -e 210 -c 1 -i 144 -a 1 r -t 0.73949 -s 3 -d 5 -p cbr -e 210 -c 1 -i 128 -a 1 - -t 0.73949 -s 2 -d 3 -p cbr -e 210 -c 1 -i 163 -a 1 h -t 0.73949 -s 2 -d 3 -p cbr -e 210 -c 1 -i 163 -a 1 + -t 0.74125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 186 -a 1 - -t 0.74125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 186 -a 1 h -t 0.74125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 186 -a 1 r -t 0.74211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 170 -a 1 + -t 0.74211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 170 -a 1 r -t 0.74245 -s 2 -d 3 -p cbr -e 210 -c 1 -i 145 -a 1 + -t 0.74245 -s 3 -d 5 -p cbr -e 210 -c 1 -i 145 -a 1 - -t 0.74245 -s 3 -d 5 -p cbr -e 210 -c 1 -i 145 -a 1 h -t 0.74245 -s 3 -d 5 -p cbr -e 210 -c 1 -i 145 -a 1 r -t 0.74285 -s 3 -d 5 -p cbr -e 210 -c 1 -i 130 -a 1 - -t 0.74285 -s 2 -d 3 -p cbr -e 210 -c 1 -i 164 -a 1 h -t 0.74285 -s 2 -d 3 -p cbr -e 210 -c 1 -i 164 -a 1 + -t 0.745 -s 1 -d 2 -p cbr -e 210 -c 1 -i 187 -a 1 - -t 0.745 -s 1 -d 2 -p cbr -e 210 -c 1 -i 187 -a 1 h -t 0.745 -s 1 -d 2 -p cbr -e 210 -c 1 -i 187 -a 1 r -t 0.74581 -s 2 -d 3 -p cbr -e 210 -c 1 -i 148 -a 1 + -t 0.74581 -s 3 -d 5 -p cbr -e 210 -c 1 -i 148 -a 1 - -t 0.74581 -s 3 -d 5 -p cbr -e 210 -c 1 -i 148 -a 1 h -t 0.74581 -s 3 -d 5 -p cbr -e 210 -c 1 -i 148 -a 1 r -t 0.74586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 171 -a 1 + -t 0.74586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 171 -a 1 r -t 0.74621 -s 3 -d 5 -p cbr -e 210 -c 1 -i 131 -a 1 - -t 0.74621 -s 2 -d 3 -p cbr -e 210 -c 1 -i 165 -a 1 h -t 0.74621 -s 2 -d 3 -p cbr -e 210 -c 1 -i 165 -a 1 + -t 0.74875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 188 -a 1 - -t 0.74875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 188 -a 1 h -t 0.74875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 188 -a 1 r -t 0.74917 -s 2 -d 3 -p cbr -e 210 -c 1 -i 149 -a 1 + -t 0.74917 -s 3 -d 5 -p cbr -e 210 -c 1 -i 149 -a 1 - -t 0.74917 -s 3 -d 5 -p cbr -e 210 -c 1 -i 149 -a 1 h -t 0.74917 -s 3 -d 5 -p cbr -e 210 -c 1 -i 149 -a 1 r -t 0.74957 -s 3 -d 5 -p cbr -e 210 -c 1 -i 132 -a 1 - -t 0.74957 -s 2 -d 3 -p cbr -e 210 -c 1 -i 166 -a 1 h -t 0.74957 -s 2 -d 3 -p cbr -e 210 -c 1 -i 166 -a 1 r -t 0.74961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 172 -a 1 + -t 0.74961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 172 -a 1 r -t 0.74981 -s 4 -d 3 -p ack -e 40 -c 0 -i 173 -a 0 -S 0 -y {5 5} + -t 0.74981 -s 3 -d 2 -p ack -e 40 -c 0 -i 173 -a 0 -S 0 -y {5 5} - -t 0.74981 -s 3 -d 2 -p ack -e 40 -c 0 -i 173 -a 0 -S 0 -y {5 5} h -t 0.74981 -s 3 -d 2 -p ack -e 40 -c 0 -i 173 -a 0 -S 0 -y {-1 -1} + -t 0.7525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 189 -a 1 - -t 0.7525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 189 -a 1 h -t 0.7525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 189 -a 1 r -t 0.75253 -s 2 -d 3 -p cbr -e 210 -c 1 -i 150 -a 1 + -t 0.75253 -s 3 -d 5 -p cbr -e 210 -c 1 -i 150 -a 1 - -t 0.75253 -s 3 -d 5 -p cbr -e 210 -c 1 -i 150 -a 1 h -t 0.75253 -s 3 -d 5 -p cbr -e 210 -c 1 -i 150 -a 1 - -t 0.75293 -s 2 -d 3 -p cbr -e 210 -c 1 -i 167 -a 1 h -t 0.75293 -s 2 -d 3 -p cbr -e 210 -c 1 -i 167 -a 1 r -t 0.75336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 174 -a 1 + -t 0.75336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 174 -a 1 r -t 0.75589 -s 2 -d 3 -p cbr -e 210 -c 1 -i 151 -a 1 + -t 0.75589 -s 3 -d 5 -p cbr -e 210 -c 1 -i 151 -a 1 - -t 0.75589 -s 3 -d 5 -p cbr -e 210 -c 1 -i 151 -a 1 h -t 0.75589 -s 3 -d 5 -p cbr -e 210 -c 1 -i 151 -a 1 + -t 0.75625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 190 -a 1 - -t 0.75625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 190 -a 1 h -t 0.75625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 190 -a 1 - -t 0.75629 -s 2 -d 3 -p cbr -e 210 -c 1 -i 168 -a 1 h -t 0.75629 -s 2 -d 3 -p cbr -e 210 -c 1 -i 168 -a 1 r -t 0.75711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 175 -a 1 + -t 0.75711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 175 -a 1 r -t 0.75757 -s 3 -d 2 -p ack -e 40 -c 0 -i 161 -a 0 -S 0 -y {4 4} + -t 0.75757 -s 2 -d 0 -p ack -e 40 -c 0 -i 161 -a 0 -S 0 -y {4 4} - -t 0.75757 -s 2 -d 0 -p ack -e 40 -c 0 -i 161 -a 0 -S 0 -f 0 -m 1 -y {4 4} h -t 0.75757 -s 2 -d 0 -p ack -e 40 -c 0 -i 161 -a 0 -S 0 -y {-1 -1} r -t 0.75925 -s 2 -d 3 -p cbr -e 210 -c 1 -i 152 -a 1 + -t 0.75925 -s 3 -d 5 -p cbr -e 210 -c 1 -i 152 -a 1 - -t 0.75925 -s 3 -d 5 -p cbr -e 210 -c 1 -i 152 -a 1 h -t 0.75925 -s 3 -d 5 -p cbr -e 210 -c 1 -i 152 -a 1 - -t 0.75965 -s 2 -d 3 -p cbr -e 210 -c 1 -i 169 -a 1 h -t 0.75965 -s 2 -d 3 -p cbr -e 210 -c 1 -i 169 -a 1 + -t 0.76 -s 1 -d 2 -p cbr -e 210 -c 1 -i 191 -a 1 - -t 0.76 -s 1 -d 2 -p cbr -e 210 -c 1 -i 191 -a 1 h -t 0.76 -s 1 -d 2 -p cbr -e 210 -c 1 -i 191 -a 1 r -t 0.76086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 176 -a 1 + -t 0.76086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 176 -a 1 r -t 0.76261 -s 2 -d 3 -p cbr -e 210 -c 1 -i 153 -a 1 + -t 0.76261 -s 3 -d 5 -p cbr -e 210 -c 1 -i 153 -a 1 - -t 0.76261 -s 3 -d 5 -p cbr -e 210 -c 1 -i 153 -a 1 h -t 0.76261 -s 3 -d 5 -p cbr -e 210 -c 1 -i 153 -a 1 - -t 0.76301 -s 2 -d 3 -p cbr -e 210 -c 1 -i 170 -a 1 h -t 0.76301 -s 2 -d 3 -p cbr -e 210 -c 1 -i 170 -a 1 + -t 0.76375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 192 -a 1 - -t 0.76375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 192 -a 1 h -t 0.76375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 192 -a 1 r -t 0.76461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 177 -a 1 + -t 0.76461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 177 -a 1 r -t 0.76597 -s 2 -d 3 -p cbr -e 210 -c 1 -i 154 -a 1 + -t 0.76597 -s 3 -d 5 -p cbr -e 210 -c 1 -i 154 -a 1 - -t 0.76597 -s 3 -d 5 -p cbr -e 210 -c 1 -i 154 -a 1 h -t 0.76597 -s 3 -d 5 -p cbr -e 210 -c 1 -i 154 -a 1 - -t 0.76637 -s 2 -d 3 -p cbr -e 210 -c 1 -i 171 -a 1 h -t 0.76637 -s 2 -d 3 -p cbr -e 210 -c 1 -i 171 -a 1 + -t 0.7675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 193 -a 1 - -t 0.7675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 193 -a 1 h -t 0.7675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 193 -a 1 r -t 0.76836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 178 -a 1 + -t 0.76836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 178 -a 1 r -t 0.76893 -s 3 -d 5 -p cbr -e 210 -c 1 -i 133 -a 1 r -t 0.76933 -s 2 -d 3 -p cbr -e 210 -c 1 -i 155 -a 1 + -t 0.76933 -s 3 -d 5 -p cbr -e 210 -c 1 -i 155 -a 1 - -t 0.76933 -s 3 -d 5 -p cbr -e 210 -c 1 -i 155 -a 1 h -t 0.76933 -s 3 -d 5 -p cbr -e 210 -c 1 -i 155 -a 1 - -t 0.76973 -s 2 -d 3 -p cbr -e 210 -c 1 -i 172 -a 1 h -t 0.76973 -s 2 -d 3 -p cbr -e 210 -c 1 -i 172 -a 1 + -t 0.77125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 194 -a 1 - -t 0.77125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 194 -a 1 h -t 0.77125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 194 -a 1 r -t 0.77211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 179 -a 1 + -t 0.77211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 179 -a 1 r -t 0.77229 -s 3 -d 5 -p cbr -e 210 -c 1 -i 138 -a 1 r -t 0.77269 -s 2 -d 3 -p cbr -e 210 -c 1 -i 156 -a 1 + -t 0.77269 -s 3 -d 5 -p cbr -e 210 -c 1 -i 156 -a 1 - -t 0.77269 -s 3 -d 5 -p cbr -e 210 -c 1 -i 156 -a 1 h -t 0.77269 -s 3 -d 5 -p cbr -e 210 -c 1 -i 156 -a 1 - -t 0.77309 -s 2 -d 3 -p cbr -e 210 -c 1 -i 174 -a 1 h -t 0.77309 -s 2 -d 3 -p cbr -e 210 -c 1 -i 174 -a 1 + -t 0.775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 195 -a 1 - -t 0.775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 195 -a 1 h -t 0.775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 195 -a 1 r -t 0.77565 -s 3 -d 5 -p cbr -e 210 -c 1 -i 139 -a 1 r -t 0.77586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 180 -a 1 + -t 0.77586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 180 -a 1 r -t 0.77605 -s 2 -d 3 -p cbr -e 210 -c 1 -i 157 -a 1 + -t 0.77605 -s 3 -d 5 -p cbr -e 210 -c 1 -i 157 -a 1 - -t 0.77605 -s 3 -d 5 -p cbr -e 210 -c 1 -i 157 -a 1 h -t 0.77605 -s 3 -d 5 -p cbr -e 210 -c 1 -i 157 -a 1 - -t 0.77645 -s 2 -d 3 -p cbr -e 210 -c 1 -i 175 -a 1 h -t 0.77645 -s 2 -d 3 -p cbr -e 210 -c 1 -i 175 -a 1 r -t 0.77821 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 129 -a 0 -S 0 -y {7 7} + -t 0.77821 -s 4 -d 3 -p ack -e 40 -c 0 -i 196 -a 0 -S 0 -y {7 7} - -t 0.77821 -s 4 -d 3 -p ack -e 40 -c 0 -i 196 -a 0 -S 0 -y {7 7} h -t 0.77821 -s 4 -d 3 -p ack -e 40 -c 0 -i 196 -a 0 -S 0 -y {-1 -1} + -t 0.77875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 197 -a 1 - -t 0.77875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 197 -a 1 h -t 0.77875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 197 -a 1 r -t 0.77901 -s 3 -d 5 -p cbr -e 210 -c 1 -i 140 -a 1 r -t 0.77941 -s 2 -d 3 -p cbr -e 210 -c 1 -i 158 -a 1 + -t 0.77941 -s 3 -d 5 -p cbr -e 210 -c 1 -i 158 -a 1 - -t 0.77941 -s 3 -d 5 -p cbr -e 210 -c 1 -i 158 -a 1 h -t 0.77941 -s 3 -d 5 -p cbr -e 210 -c 1 -i 158 -a 1 r -t 0.77961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 181 -a 1 + -t 0.77961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 181 -a 1 - -t 0.77981 -s 2 -d 3 -p cbr -e 210 -c 1 -i 176 -a 1 h -t 0.77981 -s 2 -d 3 -p cbr -e 210 -c 1 -i 176 -a 1 r -t 0.78237 -s 3 -d 5 -p cbr -e 210 -c 1 -i 141 -a 1 + -t 0.7825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 198 -a 1 - -t 0.7825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 198 -a 1 h -t 0.7825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 198 -a 1 r -t 0.78277 -s 2 -d 3 -p cbr -e 210 -c 1 -i 159 -a 1 + -t 0.78277 -s 3 -d 5 -p cbr -e 210 -c 1 -i 159 -a 1 - -t 0.78277 -s 3 -d 5 -p cbr -e 210 -c 1 -i 159 -a 1 h -t 0.78277 -s 3 -d 5 -p cbr -e 210 -c 1 -i 159 -a 1 - -t 0.78317 -s 2 -d 3 -p cbr -e 210 -c 1 -i 177 -a 1 h -t 0.78317 -s 2 -d 3 -p cbr -e 210 -c 1 -i 177 -a 1 r -t 0.78336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 182 -a 1 + -t 0.78336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 182 -a 1 r -t 0.78573 -s 3 -d 5 -p cbr -e 210 -c 1 -i 142 -a 1 r -t 0.78613 -s 2 -d 3 -p cbr -e 210 -c 1 -i 160 -a 1 + -t 0.78613 -s 3 -d 5 -p cbr -e 210 -c 1 -i 160 -a 1 - -t 0.78613 -s 3 -d 5 -p cbr -e 210 -c 1 -i 160 -a 1 h -t 0.78613 -s 3 -d 5 -p cbr -e 210 -c 1 -i 160 -a 1 + -t 0.78625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 199 -a 1 - -t 0.78625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 199 -a 1 h -t 0.78625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 199 -a 1 - -t 0.78653 -s 2 -d 3 -p cbr -e 210 -c 1 -i 178 -a 1 h -t 0.78653 -s 2 -d 3 -p cbr -e 210 -c 1 -i 178 -a 1 r -t 0.78711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 183 -a 1 + -t 0.78711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 183 -a 1 r -t 0.78909 -s 3 -d 5 -p cbr -e 210 -c 1 -i 143 -a 1 r -t 0.78933 -s 4 -d 3 -p ack -e 40 -c 0 -i 185 -a 0 -S 0 -y {6 6} + -t 0.78933 -s 3 -d 2 -p ack -e 40 -c 0 -i 185 -a 0 -S 0 -y {6 6} - -t 0.78933 -s 3 -d 2 -p ack -e 40 -c 0 -i 185 -a 0 -S 0 -y {6 6} h -t 0.78933 -s 3 -d 2 -p ack -e 40 -c 0 -i 185 -a 0 -S 0 -y {-1 -1} r -t 0.78949 -s 2 -d 3 -p cbr -e 210 -c 1 -i 162 -a 1 + -t 0.78949 -s 3 -d 5 -p cbr -e 210 -c 1 -i 162 -a 1 - -t 0.78949 -s 3 -d 5 -p cbr -e 210 -c 1 -i 162 -a 1 h -t 0.78949 -s 3 -d 5 -p cbr -e 210 -c 1 -i 162 -a 1 - -t 0.78989 -s 2 -d 3 -p cbr -e 210 -c 1 -i 179 -a 1 h -t 0.78989 -s 2 -d 3 -p cbr -e 210 -c 1 -i 179 -a 1 + -t 0.79 -s 1 -d 2 -p cbr -e 210 -c 1 -i 200 -a 1 - -t 0.79 -s 1 -d 2 -p cbr -e 210 -c 1 -i 200 -a 1 h -t 0.79 -s 1 -d 2 -p cbr -e 210 -c 1 -i 200 -a 1 r -t 0.79086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 184 -a 1 + -t 0.79086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 184 -a 1 r -t 0.79245 -s 3 -d 5 -p cbr -e 210 -c 1 -i 144 -a 1 r -t 0.79285 -s 2 -d 3 -p cbr -e 210 -c 1 -i 163 -a 1 + -t 0.79285 -s 3 -d 5 -p cbr -e 210 -c 1 -i 163 -a 1 - -t 0.79285 -s 3 -d 5 -p cbr -e 210 -c 1 -i 163 -a 1 h -t 0.79285 -s 3 -d 5 -p cbr -e 210 -c 1 -i 163 -a 1 - -t 0.79325 -s 2 -d 3 -p cbr -e 210 -c 1 -i 180 -a 1 h -t 0.79325 -s 2 -d 3 -p cbr -e 210 -c 1 -i 180 -a 1 + -t 0.79375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 201 -a 1 - -t 0.79375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 201 -a 1 h -t 0.79375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 201 -a 1 r -t 0.79461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 186 -a 1 + -t 0.79461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 186 -a 1 r -t 0.79581 -s 3 -d 5 -p cbr -e 210 -c 1 -i 145 -a 1 r -t 0.79621 -s 2 -d 3 -p cbr -e 210 -c 1 -i 164 -a 1 + -t 0.79621 -s 3 -d 5 -p cbr -e 210 -c 1 -i 164 -a 1 - -t 0.79621 -s 3 -d 5 -p cbr -e 210 -c 1 -i 164 -a 1 h -t 0.79621 -s 3 -d 5 -p cbr -e 210 -c 1 -i 164 -a 1 - -t 0.79661 -s 2 -d 3 -p cbr -e 210 -c 1 -i 181 -a 1 h -t 0.79661 -s 2 -d 3 -p cbr -e 210 -c 1 -i 181 -a 1 + -t 0.7975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 202 -a 1 - -t 0.7975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 202 -a 1 h -t 0.7975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 202 -a 1 r -t 0.79836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 187 -a 1 + -t 0.79836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 187 -a 1 r -t 0.79917 -s 3 -d 5 -p cbr -e 210 -c 1 -i 148 -a 1 r -t 0.79957 -s 2 -d 3 -p cbr -e 210 -c 1 -i 165 -a 1 + -t 0.79957 -s 3 -d 5 -p cbr -e 210 -c 1 -i 165 -a 1 - -t 0.79957 -s 3 -d 5 -p cbr -e 210 -c 1 -i 165 -a 1 h -t 0.79957 -s 3 -d 5 -p cbr -e 210 -c 1 -i 165 -a 1 - -t 0.79997 -s 2 -d 3 -p cbr -e 210 -c 1 -i 182 -a 1 h -t 0.79997 -s 2 -d 3 -p cbr -e 210 -c 1 -i 182 -a 1 r -t 0.80045 -s 3 -d 2 -p ack -e 40 -c 0 -i 173 -a 0 -S 0 -y {5 5} + -t 0.80045 -s 2 -d 0 -p ack -e 40 -c 0 -i 173 -a 0 -S 0 -y {5 5} - -t 0.80045 -s 2 -d 0 -p ack -e 40 -c 0 -i 173 -a 0 -S 0 -f 0 -m 1 -y {5 5} h -t 0.80045 -s 2 -d 0 -p ack -e 40 -c 0 -i 173 -a 0 -S 0 -y {-1 -1} + -t 0.80125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 203 -a 1 - -t 0.80125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 203 -a 1 h -t 0.80125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 203 -a 1 r -t 0.80211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 188 -a 1 + -t 0.80211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 188 -a 1 r -t 0.80253 -s 3 -d 5 -p cbr -e 210 -c 1 -i 149 -a 1 r -t 0.80293 -s 2 -d 3 -p cbr -e 210 -c 1 -i 166 -a 1 + -t 0.80293 -s 3 -d 5 -p cbr -e 210 -c 1 -i 166 -a 1 - -t 0.80293 -s 3 -d 5 -p cbr -e 210 -c 1 -i 166 -a 1 h -t 0.80293 -s 3 -d 5 -p cbr -e 210 -c 1 -i 166 -a 1 - -t 0.80333 -s 2 -d 3 -p cbr -e 210 -c 1 -i 183 -a 1 h -t 0.80333 -s 2 -d 3 -p cbr -e 210 -c 1 -i 183 -a 1 + -t 0.805 -s 1 -d 2 -p cbr -e 210 -c 1 -i 204 -a 1 - -t 0.805 -s 1 -d 2 -p cbr -e 210 -c 1 -i 204 -a 1 h -t 0.805 -s 1 -d 2 -p cbr -e 210 -c 1 -i 204 -a 1 r -t 0.80586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 189 -a 1 + -t 0.80586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 189 -a 1 r -t 0.80589 -s 3 -d 5 -p cbr -e 210 -c 1 -i 150 -a 1 r -t 0.80629 -s 2 -d 3 -p cbr -e 210 -c 1 -i 167 -a 1 + -t 0.80629 -s 3 -d 5 -p cbr -e 210 -c 1 -i 167 -a 1 - -t 0.80629 -s 3 -d 5 -p cbr -e 210 -c 1 -i 167 -a 1 h -t 0.80629 -s 3 -d 5 -p cbr -e 210 -c 1 -i 167 -a 1 - -t 0.80669 -s 2 -d 3 -p cbr -e 210 -c 1 -i 184 -a 1 h -t 0.80669 -s 2 -d 3 -p cbr -e 210 -c 1 -i 184 -a 1 r -t 0.80821 -s 2 -d 0 -p ack -e 40 -c 0 -i 161 -a 0 -S 0 -y {4 4} + -t 0.80821 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 205 -a 0 -S 0 -f 0 -m 0 -y {8 8} - -t 0.80821 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 205 -a 0 -S 0 -y {8 8} h -t 0.80821 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 205 -a 0 -S 0 -y {-1 -1} + -t 0.80875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 206 -a 1 - -t 0.80875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 206 -a 1 h -t 0.80875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 206 -a 1 r -t 0.80925 -s 3 -d 5 -p cbr -e 210 -c 1 -i 151 -a 1 r -t 0.80961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 190 -a 1 + -t 0.80961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 190 -a 1 r -t 0.80965 -s 2 -d 3 -p cbr -e 210 -c 1 -i 168 -a 1 + -t 0.80965 -s 3 -d 5 -p cbr -e 210 -c 1 -i 168 -a 1 - -t 0.80965 -s 3 -d 5 -p cbr -e 210 -c 1 -i 168 -a 1 h -t 0.80965 -s 3 -d 5 -p cbr -e 210 -c 1 -i 168 -a 1 - -t 0.81005 -s 2 -d 3 -p cbr -e 210 -c 1 -i 186 -a 1 h -t 0.81005 -s 2 -d 3 -p cbr -e 210 -c 1 -i 186 -a 1 + -t 0.8125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 207 -a 1 - -t 0.8125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 207 -a 1 h -t 0.8125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 207 -a 1 r -t 0.81261 -s 3 -d 5 -p cbr -e 210 -c 1 -i 152 -a 1 r -t 0.81301 -s 2 -d 3 -p cbr -e 210 -c 1 -i 169 -a 1 + -t 0.81301 -s 3 -d 5 -p cbr -e 210 -c 1 -i 169 -a 1 - -t 0.81301 -s 3 -d 5 -p cbr -e 210 -c 1 -i 169 -a 1 h -t 0.81301 -s 3 -d 5 -p cbr -e 210 -c 1 -i 169 -a 1 r -t 0.81336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 191 -a 1 + -t 0.81336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 191 -a 1 - -t 0.81341 -s 2 -d 3 -p cbr -e 210 -c 1 -i 187 -a 1 h -t 0.81341 -s 2 -d 3 -p cbr -e 210 -c 1 -i 187 -a 1 r -t 0.81597 -s 3 -d 5 -p cbr -e 210 -c 1 -i 153 -a 1 + -t 0.81625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 208 -a 1 - -t 0.81625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 208 -a 1 h -t 0.81625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 208 -a 1 r -t 0.81637 -s 2 -d 3 -p cbr -e 210 -c 1 -i 170 -a 1 + -t 0.81637 -s 3 -d 5 -p cbr -e 210 -c 1 -i 170 -a 1 - -t 0.81637 -s 3 -d 5 -p cbr -e 210 -c 1 -i 170 -a 1 h -t 0.81637 -s 3 -d 5 -p cbr -e 210 -c 1 -i 170 -a 1 - -t 0.81677 -s 2 -d 3 -p cbr -e 210 -c 1 -i 188 -a 1 h -t 0.81677 -s 2 -d 3 -p cbr -e 210 -c 1 -i 188 -a 1 r -t 0.81711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 192 -a 1 + -t 0.81711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 192 -a 1 r -t 0.81933 -s 3 -d 5 -p cbr -e 210 -c 1 -i 154 -a 1 r -t 0.81973 -s 2 -d 3 -p cbr -e 210 -c 1 -i 171 -a 1 + -t 0.81973 -s 3 -d 5 -p cbr -e 210 -c 1 -i 171 -a 1 - -t 0.81973 -s 3 -d 5 -p cbr -e 210 -c 1 -i 171 -a 1 h -t 0.81973 -s 3 -d 5 -p cbr -e 210 -c 1 -i 171 -a 1 + -t 0.82 -s 1 -d 2 -p cbr -e 210 -c 1 -i 209 -a 1 - -t 0.82 -s 1 -d 2 -p cbr -e 210 -c 1 -i 209 -a 1 h -t 0.82 -s 1 -d 2 -p cbr -e 210 -c 1 -i 209 -a 1 - -t 0.82013 -s 2 -d 3 -p cbr -e 210 -c 1 -i 189 -a 1 h -t 0.82013 -s 2 -d 3 -p cbr -e 210 -c 1 -i 189 -a 1 r -t 0.82086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 193 -a 1 + -t 0.82086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 193 -a 1 r -t 0.82269 -s 3 -d 5 -p cbr -e 210 -c 1 -i 155 -a 1 r -t 0.82309 -s 2 -d 3 -p cbr -e 210 -c 1 -i 172 -a 1 + -t 0.82309 -s 3 -d 5 -p cbr -e 210 -c 1 -i 172 -a 1 - -t 0.82309 -s 3 -d 5 -p cbr -e 210 -c 1 -i 172 -a 1 h -t 0.82309 -s 3 -d 5 -p cbr -e 210 -c 1 -i 172 -a 1 - -t 0.82349 -s 2 -d 3 -p cbr -e 210 -c 1 -i 190 -a 1 h -t 0.82349 -s 2 -d 3 -p cbr -e 210 -c 1 -i 190 -a 1 + -t 0.82375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 210 -a 1 - -t 0.82375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 210 -a 1 h -t 0.82375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 210 -a 1 r -t 0.82461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 194 -a 1 + -t 0.82461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 194 -a 1 r -t 0.82605 -s 3 -d 5 -p cbr -e 210 -c 1 -i 156 -a 1 r -t 0.82645 -s 2 -d 3 -p cbr -e 210 -c 1 -i 174 -a 1 + -t 0.82645 -s 3 -d 5 -p cbr -e 210 -c 1 -i 174 -a 1 - -t 0.82645 -s 3 -d 5 -p cbr -e 210 -c 1 -i 174 -a 1 h -t 0.82645 -s 3 -d 5 -p cbr -e 210 -c 1 -i 174 -a 1 - -t 0.82685 -s 2 -d 3 -p cbr -e 210 -c 1 -i 191 -a 1 h -t 0.82685 -s 2 -d 3 -p cbr -e 210 -c 1 -i 191 -a 1 + -t 0.8275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 211 -a 1 - -t 0.8275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 211 -a 1 h -t 0.8275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 211 -a 1 r -t 0.82836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 195 -a 1 + -t 0.82836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 195 -a 1 r -t 0.82885 -s 4 -d 3 -p ack -e 40 -c 0 -i 196 -a 0 -S 0 -y {7 7} + -t 0.82885 -s 3 -d 2 -p ack -e 40 -c 0 -i 196 -a 0 -S 0 -y {7 7} - -t 0.82885 -s 3 -d 2 -p ack -e 40 -c 0 -i 196 -a 0 -S 0 -y {7 7} h -t 0.82885 -s 3 -d 2 -p ack -e 40 -c 0 -i 196 -a 0 -S 0 -y {-1 -1} r -t 0.82941 -s 3 -d 5 -p cbr -e 210 -c 1 -i 157 -a 1 r -t 0.82981 -s 2 -d 3 -p cbr -e 210 -c 1 -i 175 -a 1 + -t 0.82981 -s 3 -d 5 -p cbr -e 210 -c 1 -i 175 -a 1 - -t 0.82981 -s 3 -d 5 -p cbr -e 210 -c 1 -i 175 -a 1 h -t 0.82981 -s 3 -d 5 -p cbr -e 210 -c 1 -i 175 -a 1 - -t 0.83021 -s 2 -d 3 -p cbr -e 210 -c 1 -i 192 -a 1 h -t 0.83021 -s 2 -d 3 -p cbr -e 210 -c 1 -i 192 -a 1 + -t 0.83125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 212 -a 1 - -t 0.83125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 212 -a 1 h -t 0.83125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 212 -a 1 r -t 0.83211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 197 -a 1 + -t 0.83211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 197 -a 1 r -t 0.83277 -s 3 -d 5 -p cbr -e 210 -c 1 -i 158 -a 1 r -t 0.83317 -s 2 -d 3 -p cbr -e 210 -c 1 -i 176 -a 1 + -t 0.83317 -s 3 -d 5 -p cbr -e 210 -c 1 -i 176 -a 1 - -t 0.83317 -s 3 -d 5 -p cbr -e 210 -c 1 -i 176 -a 1 h -t 0.83317 -s 3 -d 5 -p cbr -e 210 -c 1 -i 176 -a 1 - -t 0.83357 -s 2 -d 3 -p cbr -e 210 -c 1 -i 193 -a 1 h -t 0.83357 -s 2 -d 3 -p cbr -e 210 -c 1 -i 193 -a 1 + -t 0.835 -s 1 -d 2 -p cbr -e 210 -c 1 -i 213 -a 1 - -t 0.835 -s 1 -d 2 -p cbr -e 210 -c 1 -i 213 -a 1 h -t 0.835 -s 1 -d 2 -p cbr -e 210 -c 1 -i 213 -a 1 r -t 0.83586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 198 -a 1 + -t 0.83586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 198 -a 1 r -t 0.83613 -s 3 -d 5 -p cbr -e 210 -c 1 -i 159 -a 1 r -t 0.83653 -s 2 -d 3 -p cbr -e 210 -c 1 -i 177 -a 1 + -t 0.83653 -s 3 -d 5 -p cbr -e 210 -c 1 -i 177 -a 1 - -t 0.83653 -s 3 -d 5 -p cbr -e 210 -c 1 -i 177 -a 1 h -t 0.83653 -s 3 -d 5 -p cbr -e 210 -c 1 -i 177 -a 1 - -t 0.83693 -s 2 -d 3 -p cbr -e 210 -c 1 -i 194 -a 1 h -t 0.83693 -s 2 -d 3 -p cbr -e 210 -c 1 -i 194 -a 1 + -t 0.83875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 214 -a 1 - -t 0.83875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 214 -a 1 h -t 0.83875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 214 -a 1 r -t 0.83949 -s 3 -d 5 -p cbr -e 210 -c 1 -i 160 -a 1 r -t 0.83961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 199 -a 1 + -t 0.83961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 199 -a 1 r -t 0.83989 -s 2 -d 3 -p cbr -e 210 -c 1 -i 178 -a 1 + -t 0.83989 -s 3 -d 5 -p cbr -e 210 -c 1 -i 178 -a 1 - -t 0.83989 -s 3 -d 5 -p cbr -e 210 -c 1 -i 178 -a 1 h -t 0.83989 -s 3 -d 5 -p cbr -e 210 -c 1 -i 178 -a 1 r -t 0.83997 -s 3 -d 2 -p ack -e 40 -c 0 -i 185 -a 0 -S 0 -y {6 6} + -t 0.83997 -s 2 -d 0 -p ack -e 40 -c 0 -i 185 -a 0 -S 0 -y {6 6} - -t 0.83997 -s 2 -d 0 -p ack -e 40 -c 0 -i 185 -a 0 -S 0 -f 0 -m 1 -y {6 6} h -t 0.83997 -s 2 -d 0 -p ack -e 40 -c 0 -i 185 -a 0 -S 0 -y {-1 -1} - -t 0.84029 -s 2 -d 3 -p cbr -e 210 -c 1 -i 195 -a 1 h -t 0.84029 -s 2 -d 3 -p cbr -e 210 -c 1 -i 195 -a 1 + -t 0.8425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 215 -a 1 - -t 0.8425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 215 -a 1 h -t 0.8425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 215 -a 1 r -t 0.84285 -s 3 -d 5 -p cbr -e 210 -c 1 -i 162 -a 1 r -t 0.84325 -s 2 -d 3 -p cbr -e 210 -c 1 -i 179 -a 1 + -t 0.84325 -s 3 -d 5 -p cbr -e 210 -c 1 -i 179 -a 1 - -t 0.84325 -s 3 -d 5 -p cbr -e 210 -c 1 -i 179 -a 1 h -t 0.84325 -s 3 -d 5 -p cbr -e 210 -c 1 -i 179 -a 1 r -t 0.84336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 200 -a 1 + -t 0.84336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 200 -a 1 - -t 0.84365 -s 2 -d 3 -p cbr -e 210 -c 1 -i 197 -a 1 h -t 0.84365 -s 2 -d 3 -p cbr -e 210 -c 1 -i 197 -a 1 r -t 0.84621 -s 3 -d 5 -p cbr -e 210 -c 1 -i 163 -a 1 + -t 0.84625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 216 -a 1 - -t 0.84625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 216 -a 1 h -t 0.84625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 216 -a 1 r -t 0.84661 -s 2 -d 3 -p cbr -e 210 -c 1 -i 180 -a 1 + -t 0.84661 -s 3 -d 5 -p cbr -e 210 -c 1 -i 180 -a 1 - -t 0.84661 -s 3 -d 5 -p cbr -e 210 -c 1 -i 180 -a 1 h -t 0.84661 -s 3 -d 5 -p cbr -e 210 -c 1 -i 180 -a 1 - -t 0.84701 -s 2 -d 3 -p cbr -e 210 -c 1 -i 198 -a 1 h -t 0.84701 -s 2 -d 3 -p cbr -e 210 -c 1 -i 198 -a 1 r -t 0.84711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 201 -a 1 + -t 0.84711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 201 -a 1 r -t 0.84957 -s 3 -d 5 -p cbr -e 210 -c 1 -i 164 -a 1 r -t 0.84997 -s 2 -d 3 -p cbr -e 210 -c 1 -i 181 -a 1 + -t 0.84997 -s 3 -d 5 -p cbr -e 210 -c 1 -i 181 -a 1 - -t 0.84997 -s 3 -d 5 -p cbr -e 210 -c 1 -i 181 -a 1 h -t 0.84997 -s 3 -d 5 -p cbr -e 210 -c 1 -i 181 -a 1 + -t 0.85 -s 1 -d 2 -p cbr -e 210 -c 1 -i 217 -a 1 - -t 0.85 -s 1 -d 2 -p cbr -e 210 -c 1 -i 217 -a 1 h -t 0.85 -s 1 -d 2 -p cbr -e 210 -c 1 -i 217 -a 1 - -t 0.85037 -s 2 -d 3 -p cbr -e 210 -c 1 -i 199 -a 1 h -t 0.85037 -s 2 -d 3 -p cbr -e 210 -c 1 -i 199 -a 1 r -t 0.85086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 202 -a 1 + -t 0.85086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 202 -a 1 r -t 0.85109 -s 2 -d 0 -p ack -e 40 -c 0 -i 173 -a 0 -S 0 -y {5 5} + -t 0.85109 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 218 -a 0 -S 0 -f 0 -m 0 -y {9 9} - -t 0.85109 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 218 -a 0 -S 0 -y {9 9} h -t 0.85109 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 218 -a 0 -S 0 -y {-1 -1} r -t 0.85293 -s 3 -d 5 -p cbr -e 210 -c 1 -i 165 -a 1 r -t 0.85333 -s 2 -d 3 -p cbr -e 210 -c 1 -i 182 -a 1 + -t 0.85333 -s 3 -d 5 -p cbr -e 210 -c 1 -i 182 -a 1 - -t 0.85333 -s 3 -d 5 -p cbr -e 210 -c 1 -i 182 -a 1 h -t 0.85333 -s 3 -d 5 -p cbr -e 210 -c 1 -i 182 -a 1 - -t 0.85373 -s 2 -d 3 -p cbr -e 210 -c 1 -i 200 -a 1 h -t 0.85373 -s 2 -d 3 -p cbr -e 210 -c 1 -i 200 -a 1 + -t 0.85375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 219 -a 1 - -t 0.85375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 219 -a 1 h -t 0.85375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 219 -a 1 r -t 0.85461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 203 -a 1 + -t 0.85461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 203 -a 1 r -t 0.85629 -s 3 -d 5 -p cbr -e 210 -c 1 -i 166 -a 1 r -t 0.85669 -s 2 -d 3 -p cbr -e 210 -c 1 -i 183 -a 1 + -t 0.85669 -s 3 -d 5 -p cbr -e 210 -c 1 -i 183 -a 1 - -t 0.85669 -s 3 -d 5 -p cbr -e 210 -c 1 -i 183 -a 1 h -t 0.85669 -s 3 -d 5 -p cbr -e 210 -c 1 -i 183 -a 1 - -t 0.85709 -s 2 -d 3 -p cbr -e 210 -c 1 -i 201 -a 1 h -t 0.85709 -s 2 -d 3 -p cbr -e 210 -c 1 -i 201 -a 1 + -t 0.8575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 220 -a 1 - -t 0.8575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 220 -a 1 h -t 0.8575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 220 -a 1 r -t 0.85836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 204 -a 1 + -t 0.85836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 204 -a 1 r -t 0.85965 -s 3 -d 5 -p cbr -e 210 -c 1 -i 167 -a 1 r -t 0.86005 -s 2 -d 3 -p cbr -e 210 -c 1 -i 184 -a 1 + -t 0.86005 -s 3 -d 5 -p cbr -e 210 -c 1 -i 184 -a 1 - -t 0.86005 -s 3 -d 5 -p cbr -e 210 -c 1 -i 184 -a 1 h -t 0.86005 -s 3 -d 5 -p cbr -e 210 -c 1 -i 184 -a 1 - -t 0.86045 -s 2 -d 3 -p cbr -e 210 -c 1 -i 202 -a 1 h -t 0.86045 -s 2 -d 3 -p cbr -e 210 -c 1 -i 202 -a 1 + -t 0.86125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 221 -a 1 - -t 0.86125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 221 -a 1 h -t 0.86125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 221 -a 1 r -t 0.86211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 206 -a 1 + -t 0.86211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 206 -a 1 r -t 0.86301 -s 3 -d 5 -p cbr -e 210 -c 1 -i 168 -a 1 r -t 0.86341 -s 2 -d 3 -p cbr -e 210 -c 1 -i 186 -a 1 + -t 0.86341 -s 3 -d 5 -p cbr -e 210 -c 1 -i 186 -a 1 - -t 0.86341 -s 3 -d 5 -p cbr -e 210 -c 1 -i 186 -a 1 h -t 0.86341 -s 3 -d 5 -p cbr -e 210 -c 1 -i 186 -a 1 - -t 0.86381 -s 2 -d 3 -p cbr -e 210 -c 1 -i 203 -a 1 h -t 0.86381 -s 2 -d 3 -p cbr -e 210 -c 1 -i 203 -a 1 + -t 0.865 -s 1 -d 2 -p cbr -e 210 -c 1 -i 222 -a 1 - -t 0.865 -s 1 -d 2 -p cbr -e 210 -c 1 -i 222 -a 1 h -t 0.865 -s 1 -d 2 -p cbr -e 210 -c 1 -i 222 -a 1 r -t 0.86586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 207 -a 1 + -t 0.86586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 207 -a 1 r -t 0.86637 -s 3 -d 5 -p cbr -e 210 -c 1 -i 169 -a 1 r -t 0.86677 -s 2 -d 3 -p cbr -e 210 -c 1 -i 187 -a 1 + -t 0.86677 -s 3 -d 5 -p cbr -e 210 -c 1 -i 187 -a 1 - -t 0.86677 -s 3 -d 5 -p cbr -e 210 -c 1 -i 187 -a 1 h -t 0.86677 -s 3 -d 5 -p cbr -e 210 -c 1 -i 187 -a 1 - -t 0.86717 -s 2 -d 3 -p cbr -e 210 -c 1 -i 204 -a 1 h -t 0.86717 -s 2 -d 3 -p cbr -e 210 -c 1 -i 204 -a 1 + -t 0.86875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 223 -a 1 - -t 0.86875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 223 -a 1 h -t 0.86875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 223 -a 1 r -t 0.86961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 208 -a 1 + -t 0.86961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 208 -a 1 r -t 0.86973 -s 3 -d 5 -p cbr -e 210 -c 1 -i 170 -a 1 r -t 0.87013 -s 2 -d 3 -p cbr -e 210 -c 1 -i 188 -a 1 + -t 0.87013 -s 3 -d 5 -p cbr -e 210 -c 1 -i 188 -a 1 - -t 0.87013 -s 3 -d 5 -p cbr -e 210 -c 1 -i 188 -a 1 h -t 0.87013 -s 3 -d 5 -p cbr -e 210 -c 1 -i 188 -a 1 - -t 0.87053 -s 2 -d 3 -p cbr -e 210 -c 1 -i 206 -a 1 h -t 0.87053 -s 2 -d 3 -p cbr -e 210 -c 1 -i 206 -a 1 + -t 0.8725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 224 -a 1 - -t 0.8725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 224 -a 1 h -t 0.8725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 224 -a 1 r -t 0.87309 -s 3 -d 5 -p cbr -e 210 -c 1 -i 171 -a 1 r -t 0.87336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 209 -a 1 + -t 0.87336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 209 -a 1 r -t 0.87349 -s 2 -d 3 -p cbr -e 210 -c 1 -i 189 -a 1 + -t 0.87349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 189 -a 1 - -t 0.87349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 189 -a 1 h -t 0.87349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 189 -a 1 - -t 0.87389 -s 2 -d 3 -p cbr -e 210 -c 1 -i 207 -a 1 h -t 0.87389 -s 2 -d 3 -p cbr -e 210 -c 1 -i 207 -a 1 r -t 0.87421 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 205 -a 0 -S 0 -y {8 8} + -t 0.87421 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 205 -a 0 -S 0 -y {8 8} + -t 0.87625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 225 -a 1 - -t 0.87625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 225 -a 1 h -t 0.87625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 225 -a 1 r -t 0.87645 -s 3 -d 5 -p cbr -e 210 -c 1 -i 172 -a 1 r -t 0.87685 -s 2 -d 3 -p cbr -e 210 -c 1 -i 190 -a 1 + -t 0.87685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 190 -a 1 - -t 0.87685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 190 -a 1 h -t 0.87685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 190 -a 1 r -t 0.87711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 210 -a 1 + -t 0.87711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 210 -a 1 - -t 0.87725 -s 2 -d 3 -p cbr -e 210 -c 1 -i 208 -a 1 h -t 0.87725 -s 2 -d 3 -p cbr -e 210 -c 1 -i 208 -a 1 r -t 0.87949 -s 3 -d 2 -p ack -e 40 -c 0 -i 196 -a 0 -S 0 -y {7 7} + -t 0.87949 -s 2 -d 0 -p ack -e 40 -c 0 -i 196 -a 0 -S 0 -y {7 7} - -t 0.87949 -s 2 -d 0 -p ack -e 40 -c 0 -i 196 -a 0 -S 0 -f 0 -m 1 -y {7 7} h -t 0.87949 -s 2 -d 0 -p ack -e 40 -c 0 -i 196 -a 0 -S 0 -y {-1 -1} r -t 0.87981 -s 3 -d 5 -p cbr -e 210 -c 1 -i 174 -a 1 + -t 0.88 -s 1 -d 2 -p cbr -e 210 -c 1 -i 226 -a 1 - -t 0.88 -s 1 -d 2 -p cbr -e 210 -c 1 -i 226 -a 1 h -t 0.88 -s 1 -d 2 -p cbr -e 210 -c 1 -i 226 -a 1 r -t 0.88021 -s 2 -d 3 -p cbr -e 210 -c 1 -i 191 -a 1 + -t 0.88021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 191 -a 1 - -t 0.88021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 191 -a 1 h -t 0.88021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 191 -a 1 - -t 0.88061 -s 2 -d 3 -p cbr -e 210 -c 1 -i 209 -a 1 h -t 0.88061 -s 2 -d 3 -p cbr -e 210 -c 1 -i 209 -a 1 r -t 0.88086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 211 -a 1 + -t 0.88086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 211 -a 1 r -t 0.88317 -s 3 -d 5 -p cbr -e 210 -c 1 -i 175 -a 1 r -t 0.88357 -s 2 -d 3 -p cbr -e 210 -c 1 -i 192 -a 1 + -t 0.88357 -s 3 -d 5 -p cbr -e 210 -c 1 -i 192 -a 1 - -t 0.88357 -s 3 -d 5 -p cbr -e 210 -c 1 -i 192 -a 1 h -t 0.88357 -s 3 -d 5 -p cbr -e 210 -c 1 -i 192 -a 1 + -t 0.88375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 227 -a 1 - -t 0.88375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 227 -a 1 h -t 0.88375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 227 -a 1 - -t 0.88397 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 205 -a 0 -S 0 -y {8 8} h -t 0.88397 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 205 -a 0 -S 0 -y {-1 -1} r -t 0.88461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 212 -a 1 + -t 0.88461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 212 -a 1 r -t 0.88653 -s 3 -d 5 -p cbr -e 210 -c 1 -i 176 -a 1 r -t 0.88693 -s 2 -d 3 -p cbr -e 210 -c 1 -i 193 -a 1 + -t 0.88693 -s 3 -d 5 -p cbr -e 210 -c 1 -i 193 -a 1 - -t 0.88693 -s 3 -d 5 -p cbr -e 210 -c 1 -i 193 -a 1 h -t 0.88693 -s 3 -d 5 -p cbr -e 210 -c 1 -i 193 -a 1 + -t 0.8875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 228 -a 1 - -t 0.8875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 228 -a 1 h -t 0.8875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 228 -a 1 r -t 0.88836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 213 -a 1 + -t 0.88836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 213 -a 1 r -t 0.88989 -s 3 -d 5 -p cbr -e 210 -c 1 -i 177 -a 1 r -t 0.89029 -s 2 -d 3 -p cbr -e 210 -c 1 -i 194 -a 1 + -t 0.89029 -s 3 -d 5 -p cbr -e 210 -c 1 -i 194 -a 1 - -t 0.89029 -s 3 -d 5 -p cbr -e 210 -c 1 -i 194 -a 1 h -t 0.89029 -s 3 -d 5 -p cbr -e 210 -c 1 -i 194 -a 1 r -t 0.89061 -s 2 -d 0 -p ack -e 40 -c 0 -i 185 -a 0 -S 0 -y {6 6} + -t 0.89061 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 229 -a 0 -S 0 -f 0 -m 0 -y {10 10} - -t 0.89061 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 229 -a 0 -S 0 -y {10 10} h -t 0.89061 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 229 -a 0 -S 0 -y {-1 -1} + -t 0.89125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 230 -a 1 - -t 0.89125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 230 -a 1 h -t 0.89125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 230 -a 1 r -t 0.89211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 214 -a 1 + -t 0.89211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 214 -a 1 r -t 0.89325 -s 3 -d 5 -p cbr -e 210 -c 1 -i 178 -a 1 r -t 0.89365 -s 2 -d 3 -p cbr -e 210 -c 1 -i 195 -a 1 + -t 0.89365 -s 3 -d 5 -p cbr -e 210 -c 1 -i 195 -a 1 - -t 0.89365 -s 3 -d 5 -p cbr -e 210 -c 1 -i 195 -a 1 h -t 0.89365 -s 3 -d 5 -p cbr -e 210 -c 1 -i 195 -a 1 + -t 0.895 -s 1 -d 2 -p cbr -e 210 -c 1 -i 231 -a 1 - -t 0.895 -s 1 -d 2 -p cbr -e 210 -c 1 -i 231 -a 1 h -t 0.895 -s 1 -d 2 -p cbr -e 210 -c 1 -i 231 -a 1 r -t 0.89586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 215 -a 1 + -t 0.89586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 215 -a 1 r -t 0.89661 -s 3 -d 5 -p cbr -e 210 -c 1 -i 179 -a 1 r -t 0.89701 -s 2 -d 3 -p cbr -e 210 -c 1 -i 197 -a 1 + -t 0.89701 -s 3 -d 5 -p cbr -e 210 -c 1 -i 197 -a 1 - -t 0.89701 -s 3 -d 5 -p cbr -e 210 -c 1 -i 197 -a 1 h -t 0.89701 -s 3 -d 5 -p cbr -e 210 -c 1 -i 197 -a 1 + -t 0.89875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 232 -a 1 - -t 0.89875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 232 -a 1 h -t 0.89875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 232 -a 1 r -t 0.89961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 216 -a 1 + -t 0.89961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 216 -a 1 r -t 0.89997 -s 3 -d 5 -p cbr -e 210 -c 1 -i 180 -a 1 - -t 0.89997 -s 2 -d 3 -p cbr -e 210 -c 1 -i 210 -a 1 h -t 0.89997 -s 2 -d 3 -p cbr -e 210 -c 1 -i 210 -a 1 r -t 0.90037 -s 2 -d 3 -p cbr -e 210 -c 1 -i 198 -a 1 + -t 0.90037 -s 3 -d 5 -p cbr -e 210 -c 1 -i 198 -a 1 - -t 0.90037 -s 3 -d 5 -p cbr -e 210 -c 1 -i 198 -a 1 h -t 0.90037 -s 3 -d 5 -p cbr -e 210 -c 1 -i 198 -a 1 + -t 0.9025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 233 -a 1 - -t 0.9025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 233 -a 1 h -t 0.9025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 233 -a 1 r -t 0.90333 -s 3 -d 5 -p cbr -e 210 -c 1 -i 181 -a 1 - -t 0.90333 -s 2 -d 3 -p cbr -e 210 -c 1 -i 211 -a 1 h -t 0.90333 -s 2 -d 3 -p cbr -e 210 -c 1 -i 211 -a 1 r -t 0.90336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 217 -a 1 + -t 0.90336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 217 -a 1 r -t 0.90373 -s 2 -d 3 -p cbr -e 210 -c 1 -i 199 -a 1 + -t 0.90373 -s 3 -d 5 -p cbr -e 210 -c 1 -i 199 -a 1 - -t 0.90373 -s 3 -d 5 -p cbr -e 210 -c 1 -i 199 -a 1 h -t 0.90373 -s 3 -d 5 -p cbr -e 210 -c 1 -i 199 -a 1 + -t 0.90625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 234 -a 1 - -t 0.90625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 234 -a 1 h -t 0.90625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 234 -a 1 r -t 0.90669 -s 3 -d 5 -p cbr -e 210 -c 1 -i 182 -a 1 - -t 0.90669 -s 2 -d 3 -p cbr -e 210 -c 1 -i 212 -a 1 h -t 0.90669 -s 2 -d 3 -p cbr -e 210 -c 1 -i 212 -a 1 r -t 0.90709 -s 2 -d 3 -p cbr -e 210 -c 1 -i 200 -a 1 + -t 0.90709 -s 3 -d 5 -p cbr -e 210 -c 1 -i 200 -a 1 - -t 0.90709 -s 3 -d 5 -p cbr -e 210 -c 1 -i 200 -a 1 h -t 0.90709 -s 3 -d 5 -p cbr -e 210 -c 1 -i 200 -a 1 r -t 0.90711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 219 -a 1 + -t 0.90711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 219 -a 1 + -t 0.91 -s 1 -d 2 -p cbr -e 210 -c 1 -i 235 -a 1 - -t 0.91 -s 1 -d 2 -p cbr -e 210 -c 1 -i 235 -a 1 h -t 0.91 -s 1 -d 2 -p cbr -e 210 -c 1 -i 235 -a 1 r -t 0.91005 -s 3 -d 5 -p cbr -e 210 -c 1 -i 183 -a 1 - -t 0.91005 -s 2 -d 3 -p cbr -e 210 -c 1 -i 213 -a 1 h -t 0.91005 -s 2 -d 3 -p cbr -e 210 -c 1 -i 213 -a 1 r -t 0.91045 -s 2 -d 3 -p cbr -e 210 -c 1 -i 201 -a 1 + -t 0.91045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 201 -a 1 - -t 0.91045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 201 -a 1 h -t 0.91045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 201 -a 1 r -t 0.91086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 220 -a 1 + -t 0.91086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 220 -a 1 r -t 0.91341 -s 3 -d 5 -p cbr -e 210 -c 1 -i 184 -a 1 - -t 0.91341 -s 2 -d 3 -p cbr -e 210 -c 1 -i 214 -a 1 h -t 0.91341 -s 2 -d 3 -p cbr -e 210 -c 1 -i 214 -a 1 + -t 0.91375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 236 -a 1 - -t 0.91375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 236 -a 1 h -t 0.91375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 236 -a 1 r -t 0.91381 -s 2 -d 3 -p cbr -e 210 -c 1 -i 202 -a 1 + -t 0.91381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 202 -a 1 - -t 0.91381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 202 -a 1 h -t 0.91381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 202 -a 1 r -t 0.91461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 221 -a 1 + -t 0.91461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 221 -a 1 r -t 0.91677 -s 3 -d 5 -p cbr -e 210 -c 1 -i 186 -a 1 - -t 0.91677 -s 2 -d 3 -p cbr -e 210 -c 1 -i 215 -a 1 h -t 0.91677 -s 2 -d 3 -p cbr -e 210 -c 1 -i 215 -a 1 r -t 0.91709 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 218 -a 0 -S 0 -y {9 9} + -t 0.91709 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 218 -a 0 -S 0 -y {9 9} r -t 0.91717 -s 2 -d 3 -p cbr -e 210 -c 1 -i 203 -a 1 + -t 0.91717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 203 -a 1 - -t 0.91717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 203 -a 1 h -t 0.91717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 203 -a 1 + -t 0.9175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 237 -a 1 - -t 0.9175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 237 -a 1 h -t 0.9175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 237 -a 1 r -t 0.91836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 222 -a 1 + -t 0.91836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 222 -a 1 r -t 0.92013 -s 3 -d 5 -p cbr -e 210 -c 1 -i 187 -a 1 - -t 0.92013 -s 2 -d 3 -p cbr -e 210 -c 1 -i 216 -a 1 h -t 0.92013 -s 2 -d 3 -p cbr -e 210 -c 1 -i 216 -a 1 r -t 0.92053 -s 2 -d 3 -p cbr -e 210 -c 1 -i 204 -a 1 + -t 0.92053 -s 3 -d 5 -p cbr -e 210 -c 1 -i 204 -a 1 - -t 0.92053 -s 3 -d 5 -p cbr -e 210 -c 1 -i 204 -a 1 h -t 0.92053 -s 3 -d 5 -p cbr -e 210 -c 1 -i 204 -a 1 + -t 0.92125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 238 -a 1 - -t 0.92125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 238 -a 1 h -t 0.92125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 238 -a 1 r -t 0.92211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 223 -a 1 + -t 0.92211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 223 -a 1 r -t 0.92349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 188 -a 1 - -t 0.92349 -s 2 -d 3 -p cbr -e 210 -c 1 -i 217 -a 1 h -t 0.92349 -s 2 -d 3 -p cbr -e 210 -c 1 -i 217 -a 1 r -t 0.92389 -s 2 -d 3 -p cbr -e 210 -c 1 -i 206 -a 1 + -t 0.92389 -s 3 -d 5 -p cbr -e 210 -c 1 -i 206 -a 1 - -t 0.92389 -s 3 -d 5 -p cbr -e 210 -c 1 -i 206 -a 1 h -t 0.92389 -s 3 -d 5 -p cbr -e 210 -c 1 -i 206 -a 1 + -t 0.925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 239 -a 1 - -t 0.925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 239 -a 1 h -t 0.925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 239 -a 1 r -t 0.92586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 224 -a 1 + -t 0.92586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 224 -a 1 r -t 0.92685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 189 -a 1 - -t 0.92685 -s 2 -d 3 -p cbr -e 210 -c 1 -i 219 -a 1 h -t 0.92685 -s 2 -d 3 -p cbr -e 210 -c 1 -i 219 -a 1 r -t 0.92725 -s 2 -d 3 -p cbr -e 210 -c 1 -i 207 -a 1 + -t 0.92725 -s 3 -d 5 -p cbr -e 210 -c 1 -i 207 -a 1 - -t 0.92725 -s 3 -d 5 -p cbr -e 210 -c 1 -i 207 -a 1 h -t 0.92725 -s 3 -d 5 -p cbr -e 210 -c 1 -i 207 -a 1 + -t 0.92875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 240 -a 1 - -t 0.92875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 240 -a 1 h -t 0.92875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 240 -a 1 r -t 0.92961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 225 -a 1 + -t 0.92961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 225 -a 1 r -t 0.93013 -s 2 -d 0 -p ack -e 40 -c 0 -i 196 -a 0 -S 0 -y {7 7} + -t 0.93013 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 241 -a 0 -S 0 -f 0 -m 0 -y {11 11} - -t 0.93013 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 241 -a 0 -S 0 -y {11 11} h -t 0.93013 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 241 -a 0 -S 0 -y {-1 -1} r -t 0.93021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 190 -a 1 - -t 0.93021 -s 2 -d 3 -p cbr -e 210 -c 1 -i 220 -a 1 h -t 0.93021 -s 2 -d 3 -p cbr -e 210 -c 1 -i 220 -a 1 r -t 0.93061 -s 2 -d 3 -p cbr -e 210 -c 1 -i 208 -a 1 + -t 0.93061 -s 3 -d 5 -p cbr -e 210 -c 1 -i 208 -a 1 - -t 0.93061 -s 3 -d 5 -p cbr -e 210 -c 1 -i 208 -a 1 h -t 0.93061 -s 3 -d 5 -p cbr -e 210 -c 1 -i 208 -a 1 + -t 0.9325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 242 -a 1 - -t 0.9325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 242 -a 1 h -t 0.9325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 242 -a 1 r -t 0.93336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 226 -a 1 + -t 0.93336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 226 -a 1 r -t 0.93357 -s 3 -d 5 -p cbr -e 210 -c 1 -i 191 -a 1 - -t 0.93357 -s 2 -d 3 -p cbr -e 210 -c 1 -i 221 -a 1 h -t 0.93357 -s 2 -d 3 -p cbr -e 210 -c 1 -i 221 -a 1 r -t 0.93397 -s 2 -d 3 -p cbr -e 210 -c 1 -i 209 -a 1 + -t 0.93397 -s 3 -d 5 -p cbr -e 210 -c 1 -i 209 -a 1 - -t 0.93397 -s 3 -d 5 -p cbr -e 210 -c 1 -i 209 -a 1 h -t 0.93397 -s 3 -d 5 -p cbr -e 210 -c 1 -i 209 -a 1 + -t 0.93625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 243 -a 1 - -t 0.93625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 243 -a 1 h -t 0.93625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 243 -a 1 r -t 0.93693 -s 3 -d 5 -p cbr -e 210 -c 1 -i 192 -a 1 - -t 0.93693 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 218 -a 0 -S 0 -y {9 9} h -t 0.93693 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 218 -a 0 -S 0 -y {-1 -1} r -t 0.93711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 227 -a 1 + -t 0.93711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 227 -a 1 + -t 0.94 -s 1 -d 2 -p cbr -e 210 -c 1 -i 244 -a 1 - -t 0.94 -s 1 -d 2 -p cbr -e 210 -c 1 -i 244 -a 1 h -t 0.94 -s 1 -d 2 -p cbr -e 210 -c 1 -i 244 -a 1 r -t 0.94029 -s 3 -d 5 -p cbr -e 210 -c 1 -i 193 -a 1 r -t 0.94086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 228 -a 1 + -t 0.94086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 228 -a 1 r -t 0.94365 -s 3 -d 5 -p cbr -e 210 -c 1 -i 194 -a 1 + -t 0.94375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 245 -a 1 - -t 0.94375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 245 -a 1 h -t 0.94375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 245 -a 1 r -t 0.94461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 230 -a 1 + -t 0.94461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 230 -a 1 r -t 0.94701 -s 3 -d 5 -p cbr -e 210 -c 1 -i 195 -a 1 + -t 0.9475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 246 -a 1 - -t 0.9475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 246 -a 1 h -t 0.9475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 246 -a 1 r -t 0.94836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 231 -a 1 + -t 0.94836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 231 -a 1 r -t 0.94997 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 205 -a 0 -S 0 -y {8 8} + -t 0.94997 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 205 -a 0 -S 0 -y {8 8} - -t 0.94997 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 205 -a 0 -S 0 -y {8 8} h -t 0.94997 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 205 -a 0 -S 0 -y {-1 -1} r -t 0.95037 -s 3 -d 5 -p cbr -e 210 -c 1 -i 197 -a 1 + -t 0.95125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 247 -a 1 - -t 0.95125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 247 -a 1 h -t 0.95125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 247 -a 1 r -t 0.95211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 232 -a 1 + -t 0.95211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 232 -a 1 d -t 0.95211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 232 -a 1 - -t 0.95293 -s 2 -d 3 -p cbr -e 210 -c 1 -i 222 -a 1 h -t 0.95293 -s 2 -d 3 -p cbr -e 210 -c 1 -i 222 -a 1 r -t 0.95333 -s 2 -d 3 -p cbr -e 210 -c 1 -i 210 -a 1 + -t 0.95333 -s 3 -d 5 -p cbr -e 210 -c 1 -i 210 -a 1 - -t 0.95333 -s 3 -d 5 -p cbr -e 210 -c 1 -i 210 -a 1 h -t 0.95333 -s 3 -d 5 -p cbr -e 210 -c 1 -i 210 -a 1 r -t 0.95373 -s 3 -d 5 -p cbr -e 210 -c 1 -i 198 -a 1 + -t 0.955 -s 1 -d 2 -p cbr -e 210 -c 1 -i 248 -a 1 - -t 0.955 -s 1 -d 2 -p cbr -e 210 -c 1 -i 248 -a 1 h -t 0.955 -s 1 -d 2 -p cbr -e 210 -c 1 -i 248 -a 1 r -t 0.95586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 233 -a 1 + -t 0.95586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 233 -a 1 - -t 0.95629 -s 2 -d 3 -p cbr -e 210 -c 1 -i 223 -a 1 h -t 0.95629 -s 2 -d 3 -p cbr -e 210 -c 1 -i 223 -a 1 r -t 0.95661 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 229 -a 0 -S 0 -y {10 10} + -t 0.95661 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 229 -a 0 -S 0 -y {10 10} r -t 0.95669 -s 2 -d 3 -p cbr -e 210 -c 1 -i 211 -a 1 + -t 0.95669 -s 3 -d 5 -p cbr -e 210 -c 1 -i 211 -a 1 - -t 0.95669 -s 3 -d 5 -p cbr -e 210 -c 1 -i 211 -a 1 h -t 0.95669 -s 3 -d 5 -p cbr -e 210 -c 1 -i 211 -a 1 r -t 0.95709 -s 3 -d 5 -p cbr -e 210 -c 1 -i 199 -a 1 + -t 0.95875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 249 -a 1 - -t 0.95875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 249 -a 1 h -t 0.95875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 249 -a 1 r -t 0.95961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 234 -a 1 + -t 0.95961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 234 -a 1 d -t 0.95961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 234 -a 1 - -t 0.95965 -s 2 -d 3 -p cbr -e 210 -c 1 -i 224 -a 1 h -t 0.95965 -s 2 -d 3 -p cbr -e 210 -c 1 -i 224 -a 1 r -t 0.96005 -s 2 -d 3 -p cbr -e 210 -c 1 -i 212 -a 1 + -t 0.96005 -s 3 -d 5 -p cbr -e 210 -c 1 -i 212 -a 1 - -t 0.96005 -s 3 -d 5 -p cbr -e 210 -c 1 -i 212 -a 1 h -t 0.96005 -s 3 -d 5 -p cbr -e 210 -c 1 -i 212 -a 1 r -t 0.96045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 200 -a 1 + -t 0.9625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 250 -a 1 - -t 0.9625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 250 -a 1 h -t 0.9625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 250 -a 1 - -t 0.96301 -s 2 -d 3 -p cbr -e 210 -c 1 -i 225 -a 1 h -t 0.96301 -s 2 -d 3 -p cbr -e 210 -c 1 -i 225 -a 1 r -t 0.96336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 235 -a 1 + -t 0.96336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 235 -a 1 r -t 0.96341 -s 2 -d 3 -p cbr -e 210 -c 1 -i 213 -a 1 + -t 0.96341 -s 3 -d 5 -p cbr -e 210 -c 1 -i 213 -a 1 - -t 0.96341 -s 3 -d 5 -p cbr -e 210 -c 1 -i 213 -a 1 h -t 0.96341 -s 3 -d 5 -p cbr -e 210 -c 1 -i 213 -a 1 r -t 0.96381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 201 -a 1 + -t 0.96625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 251 -a 1 - -t 0.96625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 251 -a 1 h -t 0.96625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 251 -a 1 - -t 0.96637 -s 2 -d 3 -p cbr -e 210 -c 1 -i 226 -a 1 h -t 0.96637 -s 2 -d 3 -p cbr -e 210 -c 1 -i 226 -a 1 r -t 0.96677 -s 2 -d 3 -p cbr -e 210 -c 1 -i 214 -a 1 + -t 0.96677 -s 3 -d 5 -p cbr -e 210 -c 1 -i 214 -a 1 - -t 0.96677 -s 3 -d 5 -p cbr -e 210 -c 1 -i 214 -a 1 h -t 0.96677 -s 3 -d 5 -p cbr -e 210 -c 1 -i 214 -a 1 r -t 0.96711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 236 -a 1 + -t 0.96711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 236 -a 1 r -t 0.96717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 202 -a 1 - -t 0.96973 -s 2 -d 3 -p cbr -e 210 -c 1 -i 227 -a 1 h -t 0.96973 -s 2 -d 3 -p cbr -e 210 -c 1 -i 227 -a 1 + -t 0.97 -s 1 -d 2 -p cbr -e 210 -c 1 -i 252 -a 1 - -t 0.97 -s 1 -d 2 -p cbr -e 210 -c 1 -i 252 -a 1 h -t 0.97 -s 1 -d 2 -p cbr -e 210 -c 1 -i 252 -a 1 r -t 0.97013 -s 2 -d 3 -p cbr -e 210 -c 1 -i 215 -a 1 + -t 0.97013 -s 3 -d 5 -p cbr -e 210 -c 1 -i 215 -a 1 - -t 0.97013 -s 3 -d 5 -p cbr -e 210 -c 1 -i 215 -a 1 h -t 0.97013 -s 3 -d 5 -p cbr -e 210 -c 1 -i 215 -a 1 r -t 0.97053 -s 3 -d 5 -p cbr -e 210 -c 1 -i 203 -a 1 r -t 0.97086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 237 -a 1 + -t 0.97086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 237 -a 1 - -t 0.97309 -s 2 -d 3 -p cbr -e 210 -c 1 -i 228 -a 1 h -t 0.97309 -s 2 -d 3 -p cbr -e 210 -c 1 -i 228 -a 1 r -t 0.97349 -s 2 -d 3 -p cbr -e 210 -c 1 -i 216 -a 1 + -t 0.97349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 216 -a 1 - -t 0.97349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 216 -a 1 h -t 0.97349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 216 -a 1 + -t 0.97375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 253 -a 1 - -t 0.97375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 253 -a 1 h -t 0.97375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 253 -a 1 r -t 0.97389 -s 3 -d 5 -p cbr -e 210 -c 1 -i 204 -a 1 r -t 0.97461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 238 -a 1 + -t 0.97461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 238 -a 1 - -t 0.97645 -s 2 -d 3 -p cbr -e 210 -c 1 -i 230 -a 1 h -t 0.97645 -s 2 -d 3 -p cbr -e 210 -c 1 -i 230 -a 1 r -t 0.97685 -s 2 -d 3 -p cbr -e 210 -c 1 -i 217 -a 1 + -t 0.97685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 217 -a 1 - -t 0.97685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 217 -a 1 h -t 0.97685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 217 -a 1 r -t 0.97725 -s 3 -d 5 -p cbr -e 210 -c 1 -i 206 -a 1 + -t 0.9775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 254 -a 1 - -t 0.9775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 254 -a 1 h -t 0.9775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 254 -a 1 r -t 0.97836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 239 -a 1 + -t 0.97836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 239 -a 1 - -t 0.97981 -s 2 -d 3 -p cbr -e 210 -c 1 -i 231 -a 1 h -t 0.97981 -s 2 -d 3 -p cbr -e 210 -c 1 -i 231 -a 1 r -t 0.98021 -s 2 -d 3 -p cbr -e 210 -c 1 -i 219 -a 1 + -t 0.98021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 219 -a 1 - -t 0.98021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 219 -a 1 h -t 0.98021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 219 -a 1 r -t 0.98061 -s 3 -d 5 -p cbr -e 210 -c 1 -i 207 -a 1 + -t 0.98125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 255 -a 1 - -t 0.98125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 255 -a 1 h -t 0.98125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 255 -a 1 r -t 0.98211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 240 -a 1 + -t 0.98211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 240 -a 1 - -t 0.98317 -s 2 -d 3 -p cbr -e 210 -c 1 -i 233 -a 1 h -t 0.98317 -s 2 -d 3 -p cbr -e 210 -c 1 -i 233 -a 1 r -t 0.98357 -s 2 -d 3 -p cbr -e 210 -c 1 -i 220 -a 1 + -t 0.98357 -s 3 -d 5 -p cbr -e 210 -c 1 -i 220 -a 1 - -t 0.98357 -s 3 -d 5 -p cbr -e 210 -c 1 -i 220 -a 1 h -t 0.98357 -s 3 -d 5 -p cbr -e 210 -c 1 -i 220 -a 1 r -t 0.98397 -s 3 -d 5 -p cbr -e 210 -c 1 -i 208 -a 1 + -t 0.985 -s 1 -d 2 -p cbr -e 210 -c 1 -i 256 -a 1 - -t 0.985 -s 1 -d 2 -p cbr -e 210 -c 1 -i 256 -a 1 h -t 0.985 -s 1 -d 2 -p cbr -e 210 -c 1 -i 256 -a 1 r -t 0.98586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 242 -a 1 + -t 0.98586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 242 -a 1 - -t 0.98653 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 229 -a 0 -S 0 -y {10 10} h -t 0.98653 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 229 -a 0 -S 0 -y {-1 -1} r -t 0.98693 -s 2 -d 3 -p cbr -e 210 -c 1 -i 221 -a 1 + -t 0.98693 -s 3 -d 5 -p cbr -e 210 -c 1 -i 221 -a 1 - -t 0.98693 -s 3 -d 5 -p cbr -e 210 -c 1 -i 221 -a 1 h -t 0.98693 -s 3 -d 5 -p cbr -e 210 -c 1 -i 221 -a 1 r -t 0.98733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 209 -a 1 + -t 0.98875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 257 -a 1 - -t 0.98875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 257 -a 1 h -t 0.98875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 257 -a 1 r -t 0.98961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 243 -a 1 + -t 0.98961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 243 -a 1 + -t 0.9925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 258 -a 1 - -t 0.9925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 258 -a 1 h -t 0.9925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 258 -a 1 r -t 0.99336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 244 -a 1 + -t 0.99336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 244 -a 1 r -t 0.99613 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 241 -a 0 -S 0 -y {11 11} + -t 0.99613 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 241 -a 0 -S 0 -y {11 11} d -t 0.99613 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 241 -a 0 -S 0 -y {11 11} + -t 0.99625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 259 -a 1 - -t 0.99625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 259 -a 1 h -t 0.99625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 259 -a 1 r -t 0.99711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 245 -a 1 + -t 0.99711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 245 -a 1 d -t 0.99711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 245 -a 1 + -t 1 -s 1 -d 2 -p cbr -e 210 -c 1 -i 260 -a 1 - -t 1 -s 1 -d 2 -p cbr -e 210 -c 1 -i 260 -a 1 h -t 1 -s 1 -d 2 -p cbr -e 210 -c 1 -i 260 -a 1 r -t 1.00086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 246 -a 1 + -t 1.00086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 246 -a 1 d -t 1.00086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 246 -a 1 - -t 1.00253 -s 2 -d 3 -p cbr -e 210 -c 1 -i 235 -a 1 h -t 1.00253 -s 2 -d 3 -p cbr -e 210 -c 1 -i 235 -a 1 r -t 1.00293 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 218 -a 0 -S 0 -y {9 9} + -t 1.00293 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 218 -a 0 -S 0 -y {9 9} - -t 1.00293 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 218 -a 0 -S 0 -y {9 9} h -t 1.00293 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 218 -a 0 -S 0 -y {-1 -1} + -t 1.00375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 261 -a 1 - -t 1.00375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 261 -a 1 h -t 1.00375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 261 -a 1 r -t 1.00461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 247 -a 1 + -t 1.00461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 247 -a 1 - -t 1.00589 -s 2 -d 3 -p cbr -e 210 -c 1 -i 236 -a 1 h -t 1.00589 -s 2 -d 3 -p cbr -e 210 -c 1 -i 236 -a 1 r -t 1.00629 -s 2 -d 3 -p cbr -e 210 -c 1 -i 222 -a 1 + -t 1.00629 -s 3 -d 5 -p cbr -e 210 -c 1 -i 222 -a 1 - -t 1.00629 -s 3 -d 5 -p cbr -e 210 -c 1 -i 222 -a 1 h -t 1.00629 -s 3 -d 5 -p cbr -e 210 -c 1 -i 222 -a 1 r -t 1.00669 -s 3 -d 5 -p cbr -e 210 -c 1 -i 210 -a 1 + -t 1.0075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 262 -a 1 - -t 1.0075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 262 -a 1 h -t 1.0075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 262 -a 1 r -t 1.00836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 248 -a 1 + -t 1.00836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 248 -a 1 - -t 1.00925 -s 2 -d 3 -p cbr -e 210 -c 1 -i 237 -a 1 h -t 1.00925 -s 2 -d 3 -p cbr -e 210 -c 1 -i 237 -a 1 r -t 1.00965 -s 2 -d 3 -p cbr -e 210 -c 1 -i 223 -a 1 + -t 1.00965 -s 3 -d 5 -p cbr -e 210 -c 1 -i 223 -a 1 - -t 1.00965 -s 3 -d 5 -p cbr -e 210 -c 1 -i 223 -a 1 h -t 1.00965 -s 3 -d 5 -p cbr -e 210 -c 1 -i 223 -a 1 r -t 1.01005 -s 3 -d 5 -p cbr -e 210 -c 1 -i 211 -a 1 + -t 1.01125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 263 -a 1 - -t 1.01125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 263 -a 1 h -t 1.01125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 263 -a 1 r -t 1.01211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 249 -a 1 + -t 1.01211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 249 -a 1 - -t 1.01261 -s 2 -d 3 -p cbr -e 210 -c 1 -i 238 -a 1 h -t 1.01261 -s 2 -d 3 -p cbr -e 210 -c 1 -i 238 -a 1 r -t 1.01301 -s 2 -d 3 -p cbr -e 210 -c 1 -i 224 -a 1 + -t 1.01301 -s 3 -d 5 -p cbr -e 210 -c 1 -i 224 -a 1 - -t 1.01301 -s 3 -d 5 -p cbr -e 210 -c 1 -i 224 -a 1 h -t 1.01301 -s 3 -d 5 -p cbr -e 210 -c 1 -i 224 -a 1 r -t 1.01341 -s 3 -d 5 -p cbr -e 210 -c 1 -i 212 -a 1 + -t 1.015 -s 1 -d 2 -p cbr -e 210 -c 1 -i 264 -a 1 - -t 1.015 -s 1 -d 2 -p cbr -e 210 -c 1 -i 264 -a 1 h -t 1.015 -s 1 -d 2 -p cbr -e 210 -c 1 -i 264 -a 1 r -t 1.01586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 250 -a 1 + -t 1.01586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 250 -a 1 r -t 1.01597 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 205 -a 0 -S 0 -y {8 8} + -t 1.01597 -s 4 -d 3 -p ack -e 40 -c 0 -i 265 -a 0 -S 0 -y {8 8} - -t 1.01597 -s 4 -d 3 -p ack -e 40 -c 0 -i 265 -a 0 -S 0 -y {8 8} h -t 1.01597 -s 4 -d 3 -p ack -e 40 -c 0 -i 265 -a 0 -S 0 -y {-1 -1} - -t 1.01597 -s 2 -d 3 -p cbr -e 210 -c 1 -i 239 -a 1 h -t 1.01597 -s 2 -d 3 -p cbr -e 210 -c 1 -i 239 -a 1 r -t 1.01637 -s 2 -d 3 -p cbr -e 210 -c 1 -i 225 -a 1 + -t 1.01637 -s 3 -d 5 -p cbr -e 210 -c 1 -i 225 -a 1 - -t 1.01637 -s 3 -d 5 -p cbr -e 210 -c 1 -i 225 -a 1 h -t 1.01637 -s 3 -d 5 -p cbr -e 210 -c 1 -i 225 -a 1 r -t 1.01677 -s 3 -d 5 -p cbr -e 210 -c 1 -i 213 -a 1 + -t 1.01875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 266 -a 1 - -t 1.01875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 266 -a 1 h -t 1.01875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 266 -a 1 - -t 1.01933 -s 2 -d 3 -p cbr -e 210 -c 1 -i 240 -a 1 h -t 1.01933 -s 2 -d 3 -p cbr -e 210 -c 1 -i 240 -a 1 r -t 1.01961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 251 -a 1 + -t 1.01961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 251 -a 1 r -t 1.01973 -s 2 -d 3 -p cbr -e 210 -c 1 -i 226 -a 1 + -t 1.01973 -s 3 -d 5 -p cbr -e 210 -c 1 -i 226 -a 1 - -t 1.01973 -s 3 -d 5 -p cbr -e 210 -c 1 -i 226 -a 1 h -t 1.01973 -s 3 -d 5 -p cbr -e 210 -c 1 -i 226 -a 1 r -t 1.02013 -s 3 -d 5 -p cbr -e 210 -c 1 -i 214 -a 1 + -t 1.0225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 267 -a 1 - -t 1.0225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 267 -a 1 h -t 1.0225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 267 -a 1 - -t 1.02269 -s 2 -d 3 -p cbr -e 210 -c 1 -i 242 -a 1 h -t 1.02269 -s 2 -d 3 -p cbr -e 210 -c 1 -i 242 -a 1 r -t 1.02309 -s 2 -d 3 -p cbr -e 210 -c 1 -i 227 -a 1 + -t 1.02309 -s 3 -d 5 -p cbr -e 210 -c 1 -i 227 -a 1 - -t 1.02309 -s 3 -d 5 -p cbr -e 210 -c 1 -i 227 -a 1 h -t 1.02309 -s 3 -d 5 -p cbr -e 210 -c 1 -i 227 -a 1 r -t 1.02336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 252 -a 1 + -t 1.02336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 252 -a 1 r -t 1.02349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 215 -a 1 - -t 1.02605 -s 2 -d 3 -p cbr -e 210 -c 1 -i 243 -a 1 h -t 1.02605 -s 2 -d 3 -p cbr -e 210 -c 1 -i 243 -a 1 + -t 1.02625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 268 -a 1 - -t 1.02625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 268 -a 1 h -t 1.02625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 268 -a 1 r -t 1.02645 -s 2 -d 3 -p cbr -e 210 -c 1 -i 228 -a 1 + -t 1.02645 -s 3 -d 5 -p cbr -e 210 -c 1 -i 228 -a 1 - -t 1.02645 -s 3 -d 5 -p cbr -e 210 -c 1 -i 228 -a 1 h -t 1.02645 -s 3 -d 5 -p cbr -e 210 -c 1 -i 228 -a 1 r -t 1.02685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 216 -a 1 r -t 1.02711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 253 -a 1 + -t 1.02711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 253 -a 1 - -t 1.02941 -s 2 -d 3 -p cbr -e 210 -c 1 -i 244 -a 1 h -t 1.02941 -s 2 -d 3 -p cbr -e 210 -c 1 -i 244 -a 1 r -t 1.02981 -s 2 -d 3 -p cbr -e 210 -c 1 -i 230 -a 1 + -t 1.02981 -s 3 -d 5 -p cbr -e 210 -c 1 -i 230 -a 1 - -t 1.02981 -s 3 -d 5 -p cbr -e 210 -c 1 -i 230 -a 1 h -t 1.02981 -s 3 -d 5 -p cbr -e 210 -c 1 -i 230 -a 1 + -t 1.03 -s 1 -d 2 -p cbr -e 210 -c 1 -i 269 -a 1 - -t 1.03 -s 1 -d 2 -p cbr -e 210 -c 1 -i 269 -a 1 h -t 1.03 -s 1 -d 2 -p cbr -e 210 -c 1 -i 269 -a 1 r -t 1.03021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 217 -a 1 r -t 1.03086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 254 -a 1 + -t 1.03086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 254 -a 1 - -t 1.03277 -s 2 -d 3 -p cbr -e 210 -c 1 -i 247 -a 1 h -t 1.03277 -s 2 -d 3 -p cbr -e 210 -c 1 -i 247 -a 1 r -t 1.03317 -s 2 -d 3 -p cbr -e 210 -c 1 -i 231 -a 1 + -t 1.03317 -s 3 -d 5 -p cbr -e 210 -c 1 -i 231 -a 1 - -t 1.03317 -s 3 -d 5 -p cbr -e 210 -c 1 -i 231 -a 1 h -t 1.03317 -s 3 -d 5 -p cbr -e 210 -c 1 -i 231 -a 1 r -t 1.03357 -s 3 -d 5 -p cbr -e 210 -c 1 -i 219 -a 1 + -t 1.03375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 270 -a 1 - -t 1.03375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 270 -a 1 h -t 1.03375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 270 -a 1 r -t 1.03461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 255 -a 1 + -t 1.03461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 255 -a 1 - -t 1.03613 -s 2 -d 3 -p cbr -e 210 -c 1 -i 248 -a 1 h -t 1.03613 -s 2 -d 3 -p cbr -e 210 -c 1 -i 248 -a 1 r -t 1.03653 -s 2 -d 3 -p cbr -e 210 -c 1 -i 233 -a 1 + -t 1.03653 -s 3 -d 5 -p cbr -e 210 -c 1 -i 233 -a 1 - -t 1.03653 -s 3 -d 5 -p cbr -e 210 -c 1 -i 233 -a 1 h -t 1.03653 -s 3 -d 5 -p cbr -e 210 -c 1 -i 233 -a 1 r -t 1.03693 -s 3 -d 5 -p cbr -e 210 -c 1 -i 220 -a 1 + -t 1.0375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 271 -a 1 - -t 1.0375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 271 -a 1 h -t 1.0375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 271 -a 1 r -t 1.03836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 256 -a 1 + -t 1.03836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 256 -a 1 - -t 1.03949 -s 2 -d 3 -p cbr -e 210 -c 1 -i 249 -a 1 h -t 1.03949 -s 2 -d 3 -p cbr -e 210 -c 1 -i 249 -a 1 r -t 1.04029 -s 3 -d 5 -p cbr -e 210 -c 1 -i 221 -a 1 + -t 1.04125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 272 -a 1 - -t 1.04125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 272 -a 1 h -t 1.04125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 272 -a 1 r -t 1.04211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 257 -a 1 + -t 1.04211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 257 -a 1 - -t 1.04285 -s 2 -d 3 -p cbr -e 210 -c 1 -i 250 -a 1 h -t 1.04285 -s 2 -d 3 -p cbr -e 210 -c 1 -i 250 -a 1 + -t 1.045 -s 1 -d 2 -p cbr -e 210 -c 1 -i 273 -a 1 - -t 1.045 -s 1 -d 2 -p cbr -e 210 -c 1 -i 273 -a 1 h -t 1.045 -s 1 -d 2 -p cbr -e 210 -c 1 -i 273 -a 1 r -t 1.04586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 258 -a 1 + -t 1.04586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 258 -a 1 - -t 1.04621 -s 2 -d 3 -p cbr -e 210 -c 1 -i 251 -a 1 h -t 1.04621 -s 2 -d 3 -p cbr -e 210 -c 1 -i 251 -a 1 + -t 1.04875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 274 -a 1 - -t 1.04875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 274 -a 1 h -t 1.04875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 274 -a 1 - -t 1.04957 -s 2 -d 3 -p cbr -e 210 -c 1 -i 252 -a 1 h -t 1.04957 -s 2 -d 3 -p cbr -e 210 -c 1 -i 252 -a 1 r -t 1.04961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 259 -a 1 + -t 1.04961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 259 -a 1 + -t 1.0525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 275 -a 1 - -t 1.0525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 275 -a 1 h -t 1.0525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 275 -a 1 r -t 1.05253 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 229 -a 0 -S 0 -y {10 10} + -t 1.05253 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 229 -a 0 -S 0 -y {10 10} - -t 1.05253 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 229 -a 0 -S 0 -y {10 10} h -t 1.05253 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 229 -a 0 -S 0 -y {-1 -1} - -t 1.05293 -s 2 -d 3 -p cbr -e 210 -c 1 -i 253 -a 1 h -t 1.05293 -s 2 -d 3 -p cbr -e 210 -c 1 -i 253 -a 1 r -t 1.05336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 260 -a 1 + -t 1.05336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 260 -a 1 r -t 1.05589 -s 2 -d 3 -p cbr -e 210 -c 1 -i 235 -a 1 + -t 1.05589 -s 3 -d 5 -p cbr -e 210 -c 1 -i 235 -a 1 - -t 1.05589 -s 3 -d 5 -p cbr -e 210 -c 1 -i 235 -a 1 h -t 1.05589 -s 3 -d 5 -p cbr -e 210 -c 1 -i 235 -a 1 + -t 1.05625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 276 -a 1 - -t 1.05625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 276 -a 1 h -t 1.05625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 276 -a 1 - -t 1.05629 -s 2 -d 3 -p cbr -e 210 -c 1 -i 254 -a 1 h -t 1.05629 -s 2 -d 3 -p cbr -e 210 -c 1 -i 254 -a 1 r -t 1.05711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 261 -a 1 + -t 1.05711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 261 -a 1 r -t 1.05925 -s 2 -d 3 -p cbr -e 210 -c 1 -i 236 -a 1 + -t 1.05925 -s 3 -d 5 -p cbr -e 210 -c 1 -i 236 -a 1 - -t 1.05925 -s 3 -d 5 -p cbr -e 210 -c 1 -i 236 -a 1 h -t 1.05925 -s 3 -d 5 -p cbr -e 210 -c 1 -i 236 -a 1 r -t 1.05965 -s 3 -d 5 -p cbr -e 210 -c 1 -i 222 -a 1 - -t 1.05965 -s 2 -d 3 -p cbr -e 210 -c 1 -i 255 -a 1 h -t 1.05965 -s 2 -d 3 -p cbr -e 210 -c 1 -i 255 -a 1 + -t 1.06 -s 1 -d 2 -p cbr -e 210 -c 1 -i 277 -a 1 - -t 1.06 -s 1 -d 2 -p cbr -e 210 -c 1 -i 277 -a 1 h -t 1.06 -s 1 -d 2 -p cbr -e 210 -c 1 -i 277 -a 1 r -t 1.06086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 262 -a 1 + -t 1.06086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 262 -a 1 r -t 1.06261 -s 2 -d 3 -p cbr -e 210 -c 1 -i 237 -a 1 + -t 1.06261 -s 3 -d 5 -p cbr -e 210 -c 1 -i 237 -a 1 - -t 1.06261 -s 3 -d 5 -p cbr -e 210 -c 1 -i 237 -a 1 h -t 1.06261 -s 3 -d 5 -p cbr -e 210 -c 1 -i 237 -a 1 r -t 1.06301 -s 3 -d 5 -p cbr -e 210 -c 1 -i 223 -a 1 - -t 1.06301 -s 2 -d 3 -p cbr -e 210 -c 1 -i 256 -a 1 h -t 1.06301 -s 2 -d 3 -p cbr -e 210 -c 1 -i 256 -a 1 + -t 1.06375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 278 -a 1 - -t 1.06375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 278 -a 1 h -t 1.06375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 278 -a 1 r -t 1.06461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 263 -a 1 + -t 1.06461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 263 -a 1 r -t 1.06597 -s 2 -d 3 -p cbr -e 210 -c 1 -i 238 -a 1 + -t 1.06597 -s 3 -d 5 -p cbr -e 210 -c 1 -i 238 -a 1 - -t 1.06597 -s 3 -d 5 -p cbr -e 210 -c 1 -i 238 -a 1 h -t 1.06597 -s 3 -d 5 -p cbr -e 210 -c 1 -i 238 -a 1 r -t 1.06637 -s 3 -d 5 -p cbr -e 210 -c 1 -i 224 -a 1 - -t 1.06637 -s 2 -d 3 -p cbr -e 210 -c 1 -i 257 -a 1 h -t 1.06637 -s 2 -d 3 -p cbr -e 210 -c 1 -i 257 -a 1 r -t 1.06661 -s 4 -d 3 -p ack -e 40 -c 0 -i 265 -a 0 -S 0 -y {8 8} + -t 1.06661 -s 3 -d 2 -p ack -e 40 -c 0 -i 265 -a 0 -S 0 -y {8 8} - -t 1.06661 -s 3 -d 2 -p ack -e 40 -c 0 -i 265 -a 0 -S 0 -y {8 8} h -t 1.06661 -s 3 -d 2 -p ack -e 40 -c 0 -i 265 -a 0 -S 0 -y {-1 -1} + -t 1.0675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 279 -a 1 - -t 1.0675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 279 -a 1 h -t 1.0675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 279 -a 1 r -t 1.06836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 264 -a 1 + -t 1.06836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 264 -a 1 r -t 1.06893 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 218 -a 0 -S 0 -y {9 9} + -t 1.06893 -s 4 -d 3 -p ack -e 40 -c 0 -i 280 -a 0 -S 0 -y {9 9} - -t 1.06893 -s 4 -d 3 -p ack -e 40 -c 0 -i 280 -a 0 -S 0 -y {9 9} h -t 1.06893 -s 4 -d 3 -p ack -e 40 -c 0 -i 280 -a 0 -S 0 -y {-1 -1} r -t 1.06933 -s 2 -d 3 -p cbr -e 210 -c 1 -i 239 -a 1 + -t 1.06933 -s 3 -d 5 -p cbr -e 210 -c 1 -i 239 -a 1 - -t 1.06933 -s 3 -d 5 -p cbr -e 210 -c 1 -i 239 -a 1 h -t 1.06933 -s 3 -d 5 -p cbr -e 210 -c 1 -i 239 -a 1 r -t 1.06973 -s 3 -d 5 -p cbr -e 210 -c 1 -i 225 -a 1 - -t 1.06973 -s 2 -d 3 -p cbr -e 210 -c 1 -i 258 -a 1 h -t 1.06973 -s 2 -d 3 -p cbr -e 210 -c 1 -i 258 -a 1 + -t 1.07125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 281 -a 1 - -t 1.07125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 281 -a 1 h -t 1.07125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 281 -a 1 r -t 1.07211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 266 -a 1 + -t 1.07211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 266 -a 1 r -t 1.07269 -s 2 -d 3 -p cbr -e 210 -c 1 -i 240 -a 1 + -t 1.07269 -s 3 -d 5 -p cbr -e 210 -c 1 -i 240 -a 1 - -t 1.07269 -s 3 -d 5 -p cbr -e 210 -c 1 -i 240 -a 1 h -t 1.07269 -s 3 -d 5 -p cbr -e 210 -c 1 -i 240 -a 1 r -t 1.07309 -s 3 -d 5 -p cbr -e 210 -c 1 -i 226 -a 1 - -t 1.07309 -s 2 -d 3 -p cbr -e 210 -c 1 -i 259 -a 1 h -t 1.07309 -s 2 -d 3 -p cbr -e 210 -c 1 -i 259 -a 1 + -t 1.075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 282 -a 1 - -t 1.075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 282 -a 1 h -t 1.075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 282 -a 1 r -t 1.07586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 267 -a 1 + -t 1.07586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 267 -a 1 r -t 1.07605 -s 2 -d 3 -p cbr -e 210 -c 1 -i 242 -a 1 + -t 1.07605 -s 3 -d 5 -p cbr -e 210 -c 1 -i 242 -a 1 - -t 1.07605 -s 3 -d 5 -p cbr -e 210 -c 1 -i 242 -a 1 h -t 1.07605 -s 3 -d 5 -p cbr -e 210 -c 1 -i 242 -a 1 r -t 1.07645 -s 3 -d 5 -p cbr -e 210 -c 1 -i 227 -a 1 - -t 1.07645 -s 2 -d 3 -p cbr -e 210 -c 1 -i 260 -a 1 h -t 1.07645 -s 2 -d 3 -p cbr -e 210 -c 1 -i 260 -a 1 + -t 1.07875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 283 -a 1 - -t 1.07875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 283 -a 1 h -t 1.07875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 283 -a 1 r -t 1.07941 -s 2 -d 3 -p cbr -e 210 -c 1 -i 243 -a 1 + -t 1.07941 -s 3 -d 5 -p cbr -e 210 -c 1 -i 243 -a 1 - -t 1.07941 -s 3 -d 5 -p cbr -e 210 -c 1 -i 243 -a 1 h -t 1.07941 -s 3 -d 5 -p cbr -e 210 -c 1 -i 243 -a 1 r -t 1.07961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 268 -a 1 + -t 1.07961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 268 -a 1 r -t 1.07981 -s 3 -d 5 -p cbr -e 210 -c 1 -i 228 -a 1 - -t 1.07981 -s 2 -d 3 -p cbr -e 210 -c 1 -i 261 -a 1 h -t 1.07981 -s 2 -d 3 -p cbr -e 210 -c 1 -i 261 -a 1 + -t 1.0825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 284 -a 1 - -t 1.0825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 284 -a 1 h -t 1.0825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 284 -a 1 r -t 1.08277 -s 2 -d 3 -p cbr -e 210 -c 1 -i 244 -a 1 + -t 1.08277 -s 3 -d 5 -p cbr -e 210 -c 1 -i 244 -a 1 - -t 1.08277 -s 3 -d 5 -p cbr -e 210 -c 1 -i 244 -a 1 h -t 1.08277 -s 3 -d 5 -p cbr -e 210 -c 1 -i 244 -a 1 r -t 1.08317 -s 3 -d 5 -p cbr -e 210 -c 1 -i 230 -a 1 - -t 1.08317 -s 2 -d 3 -p cbr -e 210 -c 1 -i 262 -a 1 h -t 1.08317 -s 2 -d 3 -p cbr -e 210 -c 1 -i 262 -a 1 r -t 1.08336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 269 -a 1 + -t 1.08336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 269 -a 1 r -t 1.08613 -s 2 -d 3 -p cbr -e 210 -c 1 -i 247 -a 1 + -t 1.08613 -s 3 -d 5 -p cbr -e 210 -c 1 -i 247 -a 1 - -t 1.08613 -s 3 -d 5 -p cbr -e 210 -c 1 -i 247 -a 1 h -t 1.08613 -s 3 -d 5 -p cbr -e 210 -c 1 -i 247 -a 1 + -t 1.08625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 285 -a 1 - -t 1.08625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 285 -a 1 h -t 1.08625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 285 -a 1 r -t 1.08653 -s 3 -d 5 -p cbr -e 210 -c 1 -i 231 -a 1 - -t 1.08653 -s 2 -d 3 -p cbr -e 210 -c 1 -i 263 -a 1 h -t 1.08653 -s 2 -d 3 -p cbr -e 210 -c 1 -i 263 -a 1 r -t 1.08711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 270 -a 1 + -t 1.08711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 270 -a 1 r -t 1.08949 -s 2 -d 3 -p cbr -e 210 -c 1 -i 248 -a 1 + -t 1.08949 -s 3 -d 5 -p cbr -e 210 -c 1 -i 248 -a 1 - -t 1.08949 -s 3 -d 5 -p cbr -e 210 -c 1 -i 248 -a 1 h -t 1.08949 -s 3 -d 5 -p cbr -e 210 -c 1 -i 248 -a 1 r -t 1.08989 -s 3 -d 5 -p cbr -e 210 -c 1 -i 233 -a 1 - -t 1.08989 -s 2 -d 3 -p cbr -e 210 -c 1 -i 264 -a 1 h -t 1.08989 -s 2 -d 3 -p cbr -e 210 -c 1 -i 264 -a 1 + -t 1.09 -s 1 -d 2 -p cbr -e 210 -c 1 -i 286 -a 1 - -t 1.09 -s 1 -d 2 -p cbr -e 210 -c 1 -i 286 -a 1 h -t 1.09 -s 1 -d 2 -p cbr -e 210 -c 1 -i 286 -a 1 r -t 1.09086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 271 -a 1 + -t 1.09086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 271 -a 1 r -t 1.09285 -s 2 -d 3 -p cbr -e 210 -c 1 -i 249 -a 1 + -t 1.09285 -s 3 -d 5 -p cbr -e 210 -c 1 -i 249 -a 1 - -t 1.09285 -s 3 -d 5 -p cbr -e 210 -c 1 -i 249 -a 1 h -t 1.09285 -s 3 -d 5 -p cbr -e 210 -c 1 -i 249 -a 1 - -t 1.09325 -s 2 -d 3 -p cbr -e 210 -c 1 -i 266 -a 1 h -t 1.09325 -s 2 -d 3 -p cbr -e 210 -c 1 -i 266 -a 1 + -t 1.09375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 287 -a 1 - -t 1.09375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 287 -a 1 h -t 1.09375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 287 -a 1 r -t 1.09461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 272 -a 1 + -t 1.09461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 272 -a 1 r -t 1.09621 -s 2 -d 3 -p cbr -e 210 -c 1 -i 250 -a 1 + -t 1.09621 -s 3 -d 5 -p cbr -e 210 -c 1 -i 250 -a 1 - -t 1.09621 -s 3 -d 5 -p cbr -e 210 -c 1 -i 250 -a 1 h -t 1.09621 -s 3 -d 5 -p cbr -e 210 -c 1 -i 250 -a 1 - -t 1.09661 -s 2 -d 3 -p cbr -e 210 -c 1 -i 267 -a 1 h -t 1.09661 -s 2 -d 3 -p cbr -e 210 -c 1 -i 267 -a 1 + -t 1.0975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 288 -a 1 - -t 1.0975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 288 -a 1 h -t 1.0975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 288 -a 1 r -t 1.09836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 273 -a 1 + -t 1.09836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 273 -a 1 r -t 1.09957 -s 2 -d 3 -p cbr -e 210 -c 1 -i 251 -a 1 + -t 1.09957 -s 3 -d 5 -p cbr -e 210 -c 1 -i 251 -a 1 - -t 1.09957 -s 3 -d 5 -p cbr -e 210 -c 1 -i 251 -a 1 h -t 1.09957 -s 3 -d 5 -p cbr -e 210 -c 1 -i 251 -a 1 - -t 1.09997 -s 2 -d 3 -p cbr -e 210 -c 1 -i 268 -a 1 h -t 1.09997 -s 2 -d 3 -p cbr -e 210 -c 1 -i 268 -a 1 + -t 1.10125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 289 -a 1 - -t 1.10125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 289 -a 1 h -t 1.10125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 289 -a 1 r -t 1.10211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 274 -a 1 + -t 1.10211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 274 -a 1 r -t 1.10293 -s 2 -d 3 -p cbr -e 210 -c 1 -i 252 -a 1 + -t 1.10293 -s 3 -d 5 -p cbr -e 210 -c 1 -i 252 -a 1 - -t 1.10293 -s 3 -d 5 -p cbr -e 210 -c 1 -i 252 -a 1 h -t 1.10293 -s 3 -d 5 -p cbr -e 210 -c 1 -i 252 -a 1 - -t 1.10333 -s 2 -d 3 -p cbr -e 210 -c 1 -i 269 -a 1 h -t 1.10333 -s 2 -d 3 -p cbr -e 210 -c 1 -i 269 -a 1 + -t 1.105 -s 1 -d 2 -p cbr -e 210 -c 1 -i 290 -a 1 - -t 1.105 -s 1 -d 2 -p cbr -e 210 -c 1 -i 290 -a 1 h -t 1.105 -s 1 -d 2 -p cbr -e 210 -c 1 -i 290 -a 1 r -t 1.10586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 275 -a 1 + -t 1.10586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 275 -a 1 r -t 1.10629 -s 2 -d 3 -p cbr -e 210 -c 1 -i 253 -a 1 + -t 1.10629 -s 3 -d 5 -p cbr -e 210 -c 1 -i 253 -a 1 - -t 1.10629 -s 3 -d 5 -p cbr -e 210 -c 1 -i 253 -a 1 h -t 1.10629 -s 3 -d 5 -p cbr -e 210 -c 1 -i 253 -a 1 - -t 1.10669 -s 2 -d 3 -p cbr -e 210 -c 1 -i 270 -a 1 h -t 1.10669 -s 2 -d 3 -p cbr -e 210 -c 1 -i 270 -a 1 + -t 1.10875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 291 -a 1 - -t 1.10875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 291 -a 1 h -t 1.10875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 291 -a 1 r -t 1.10925 -s 3 -d 5 -p cbr -e 210 -c 1 -i 235 -a 1 r -t 1.10961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 276 -a 1 + -t 1.10961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 276 -a 1 r -t 1.10965 -s 2 -d 3 -p cbr -e 210 -c 1 -i 254 -a 1 + -t 1.10965 -s 3 -d 5 -p cbr -e 210 -c 1 -i 254 -a 1 - -t 1.10965 -s 3 -d 5 -p cbr -e 210 -c 1 -i 254 -a 1 h -t 1.10965 -s 3 -d 5 -p cbr -e 210 -c 1 -i 254 -a 1 - -t 1.11005 -s 2 -d 3 -p cbr -e 210 -c 1 -i 271 -a 1 h -t 1.11005 -s 2 -d 3 -p cbr -e 210 -c 1 -i 271 -a 1 + -t 1.1125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 292 -a 1 - -t 1.1125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 292 -a 1 h -t 1.1125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 292 -a 1 r -t 1.11261 -s 3 -d 5 -p cbr -e 210 -c 1 -i 236 -a 1 r -t 1.11301 -s 2 -d 3 -p cbr -e 210 -c 1 -i 255 -a 1 + -t 1.11301 -s 3 -d 5 -p cbr -e 210 -c 1 -i 255 -a 1 - -t 1.11301 -s 3 -d 5 -p cbr -e 210 -c 1 -i 255 -a 1 h -t 1.11301 -s 3 -d 5 -p cbr -e 210 -c 1 -i 255 -a 1 r -t 1.11336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 277 -a 1 + -t 1.11336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 277 -a 1 - -t 1.11341 -s 2 -d 3 -p cbr -e 210 -c 1 -i 272 -a 1 h -t 1.11341 -s 2 -d 3 -p cbr -e 210 -c 1 -i 272 -a 1 r -t 1.11597 -s 3 -d 5 -p cbr -e 210 -c 1 -i 237 -a 1 + -t 1.11625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 293 -a 1 - -t 1.11625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 293 -a 1 h -t 1.11625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 293 -a 1 r -t 1.11637 -s 2 -d 3 -p cbr -e 210 -c 1 -i 256 -a 1 + -t 1.11637 -s 3 -d 5 -p cbr -e 210 -c 1 -i 256 -a 1 - -t 1.11637 -s 3 -d 5 -p cbr -e 210 -c 1 -i 256 -a 1 h -t 1.11637 -s 3 -d 5 -p cbr -e 210 -c 1 -i 256 -a 1 - -t 1.11677 -s 2 -d 3 -p cbr -e 210 -c 1 -i 273 -a 1 h -t 1.11677 -s 2 -d 3 -p cbr -e 210 -c 1 -i 273 -a 1 r -t 1.11711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 278 -a 1 + -t 1.11711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 278 -a 1 r -t 1.11725 -s 3 -d 2 -p ack -e 40 -c 0 -i 265 -a 0 -S 0 -y {8 8} + -t 1.11725 -s 2 -d 0 -p ack -e 40 -c 0 -i 265 -a 0 -S 0 -y {8 8} - -t 1.11725 -s 2 -d 0 -p ack -e 40 -c 0 -i 265 -a 0 -S 0 -f 0 -m 1 -y {8 8} h -t 1.11725 -s 2 -d 0 -p ack -e 40 -c 0 -i 265 -a 0 -S 0 -y {-1 -1} r -t 1.11853 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 229 -a 0 -S 0 -y {10 10} + -t 1.11853 -s 4 -d 3 -p ack -e 40 -c 0 -i 294 -a 0 -S 0 -y {10 10} - -t 1.11853 -s 4 -d 3 -p ack -e 40 -c 0 -i 294 -a 0 -S 0 -y {10 10} h -t 1.11853 -s 4 -d 3 -p ack -e 40 -c 0 -i 294 -a 0 -S 0 -y {-1 -1} r -t 1.11933 -s 3 -d 5 -p cbr -e 210 -c 1 -i 238 -a 1 r -t 1.11957 -s 4 -d 3 -p ack -e 40 -c 0 -i 280 -a 0 -S 0 -y {9 9} + -t 1.11957 -s 3 -d 2 -p ack -e 40 -c 0 -i 280 -a 0 -S 0 -y {9 9} - -t 1.11957 -s 3 -d 2 -p ack -e 40 -c 0 -i 280 -a 0 -S 0 -y {9 9} h -t 1.11957 -s 3 -d 2 -p ack -e 40 -c 0 -i 280 -a 0 -S 0 -y {-1 -1} r -t 1.11973 -s 2 -d 3 -p cbr -e 210 -c 1 -i 257 -a 1 + -t 1.11973 -s 3 -d 5 -p cbr -e 210 -c 1 -i 257 -a 1 - -t 1.11973 -s 3 -d 5 -p cbr -e 210 -c 1 -i 257 -a 1 h -t 1.11973 -s 3 -d 5 -p cbr -e 210 -c 1 -i 257 -a 1 + -t 1.12 -s 1 -d 2 -p cbr -e 210 -c 1 -i 295 -a 1 - -t 1.12 -s 1 -d 2 -p cbr -e 210 -c 1 -i 295 -a 1 h -t 1.12 -s 1 -d 2 -p cbr -e 210 -c 1 -i 295 -a 1 - -t 1.12013 -s 2 -d 3 -p cbr -e 210 -c 1 -i 274 -a 1 h -t 1.12013 -s 2 -d 3 -p cbr -e 210 -c 1 -i 274 -a 1 r -t 1.12086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 279 -a 1 + -t 1.12086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 279 -a 1 r -t 1.12269 -s 3 -d 5 -p cbr -e 210 -c 1 -i 239 -a 1 r -t 1.12309 -s 2 -d 3 -p cbr -e 210 -c 1 -i 258 -a 1 + -t 1.12309 -s 3 -d 5 -p cbr -e 210 -c 1 -i 258 -a 1 - -t 1.12309 -s 3 -d 5 -p cbr -e 210 -c 1 -i 258 -a 1 h -t 1.12309 -s 3 -d 5 -p cbr -e 210 -c 1 -i 258 -a 1 - -t 1.12349 -s 2 -d 3 -p cbr -e 210 -c 1 -i 275 -a 1 h -t 1.12349 -s 2 -d 3 -p cbr -e 210 -c 1 -i 275 -a 1 + -t 1.12375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 296 -a 1 - -t 1.12375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 296 -a 1 h -t 1.12375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 296 -a 1 r -t 1.12461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 281 -a 1 + -t 1.12461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 281 -a 1 r -t 1.12605 -s 3 -d 5 -p cbr -e 210 -c 1 -i 240 -a 1 r -t 1.12645 -s 2 -d 3 -p cbr -e 210 -c 1 -i 259 -a 1 + -t 1.12645 -s 3 -d 5 -p cbr -e 210 -c 1 -i 259 -a 1 - -t 1.12645 -s 3 -d 5 -p cbr -e 210 -c 1 -i 259 -a 1 h -t 1.12645 -s 3 -d 5 -p cbr -e 210 -c 1 -i 259 -a 1 - -t 1.12685 -s 2 -d 3 -p cbr -e 210 -c 1 -i 276 -a 1 h -t 1.12685 -s 2 -d 3 -p cbr -e 210 -c 1 -i 276 -a 1 + -t 1.1275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 297 -a 1 - -t 1.1275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 297 -a 1 h -t 1.1275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 297 -a 1 r -t 1.12836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 282 -a 1 + -t 1.12836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 282 -a 1 r -t 1.12941 -s 3 -d 5 -p cbr -e 210 -c 1 -i 242 -a 1 r -t 1.12981 -s 2 -d 3 -p cbr -e 210 -c 1 -i 260 -a 1 + -t 1.12981 -s 3 -d 5 -p cbr -e 210 -c 1 -i 260 -a 1 - -t 1.12981 -s 3 -d 5 -p cbr -e 210 -c 1 -i 260 -a 1 h -t 1.12981 -s 3 -d 5 -p cbr -e 210 -c 1 -i 260 -a 1 - -t 1.13021 -s 2 -d 3 -p cbr -e 210 -c 1 -i 277 -a 1 h -t 1.13021 -s 2 -d 3 -p cbr -e 210 -c 1 -i 277 -a 1 + -t 1.13125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 298 -a 1 - -t 1.13125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 298 -a 1 h -t 1.13125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 298 -a 1 r -t 1.13211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 283 -a 1 + -t 1.13211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 283 -a 1 r -t 1.13277 -s 3 -d 5 -p cbr -e 210 -c 1 -i 243 -a 1 r -t 1.13317 -s 2 -d 3 -p cbr -e 210 -c 1 -i 261 -a 1 + -t 1.13317 -s 3 -d 5 -p cbr -e 210 -c 1 -i 261 -a 1 - -t 1.13317 -s 3 -d 5 -p cbr -e 210 -c 1 -i 261 -a 1 h -t 1.13317 -s 3 -d 5 -p cbr -e 210 -c 1 -i 261 -a 1 - -t 1.13357 -s 2 -d 3 -p cbr -e 210 -c 1 -i 278 -a 1 h -t 1.13357 -s 2 -d 3 -p cbr -e 210 -c 1 -i 278 -a 1 + -t 1.135 -s 1 -d 2 -p cbr -e 210 -c 1 -i 299 -a 1 - -t 1.135 -s 1 -d 2 -p cbr -e 210 -c 1 -i 299 -a 1 h -t 1.135 -s 1 -d 2 -p cbr -e 210 -c 1 -i 299 -a 1 r -t 1.13586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 284 -a 1 + -t 1.13586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 284 -a 1 r -t 1.13613 -s 3 -d 5 -p cbr -e 210 -c 1 -i 244 -a 1 r -t 1.13653 -s 2 -d 3 -p cbr -e 210 -c 1 -i 262 -a 1 + -t 1.13653 -s 3 -d 5 -p cbr -e 210 -c 1 -i 262 -a 1 - -t 1.13653 -s 3 -d 5 -p cbr -e 210 -c 1 -i 262 -a 1 h -t 1.13653 -s 3 -d 5 -p cbr -e 210 -c 1 -i 262 -a 1 - -t 1.13693 -s 2 -d 3 -p cbr -e 210 -c 1 -i 279 -a 1 h -t 1.13693 -s 2 -d 3 -p cbr -e 210 -c 1 -i 279 -a 1 + -t 1.13875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 300 -a 1 - -t 1.13875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 300 -a 1 h -t 1.13875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 300 -a 1 r -t 1.13949 -s 3 -d 5 -p cbr -e 210 -c 1 -i 247 -a 1 r -t 1.13961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 285 -a 1 + -t 1.13961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 285 -a 1 r -t 1.13989 -s 2 -d 3 -p cbr -e 210 -c 1 -i 263 -a 1 + -t 1.13989 -s 3 -d 5 -p cbr -e 210 -c 1 -i 263 -a 1 - -t 1.13989 -s 3 -d 5 -p cbr -e 210 -c 1 -i 263 -a 1 h -t 1.13989 -s 3 -d 5 -p cbr -e 210 -c 1 -i 263 -a 1 - -t 1.14029 -s 2 -d 3 -p cbr -e 210 -c 1 -i 281 -a 1 h -t 1.14029 -s 2 -d 3 -p cbr -e 210 -c 1 -i 281 -a 1 + -t 1.1425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 301 -a 1 - -t 1.1425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 301 -a 1 h -t 1.1425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 301 -a 1 r -t 1.14285 -s 3 -d 5 -p cbr -e 210 -c 1 -i 248 -a 1 r -t 1.14325 -s 2 -d 3 -p cbr -e 210 -c 1 -i 264 -a 1 + -t 1.14325 -s 3 -d 5 -p cbr -e 210 -c 1 -i 264 -a 1 - -t 1.14325 -s 3 -d 5 -p cbr -e 210 -c 1 -i 264 -a 1 h -t 1.14325 -s 3 -d 5 -p cbr -e 210 -c 1 -i 264 -a 1 r -t 1.14336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 286 -a 1 + -t 1.14336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 286 -a 1 - -t 1.14365 -s 2 -d 3 -p cbr -e 210 -c 1 -i 282 -a 1 h -t 1.14365 -s 2 -d 3 -p cbr -e 210 -c 1 -i 282 -a 1 r -t 1.14621 -s 3 -d 5 -p cbr -e 210 -c 1 -i 249 -a 1 + -t 1.14625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 302 -a 1 - -t 1.14625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 302 -a 1 h -t 1.14625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 302 -a 1 r -t 1.14661 -s 2 -d 3 -p cbr -e 210 -c 1 -i 266 -a 1 + -t 1.14661 -s 3 -d 5 -p cbr -e 210 -c 1 -i 266 -a 1 - -t 1.14661 -s 3 -d 5 -p cbr -e 210 -c 1 -i 266 -a 1 h -t 1.14661 -s 3 -d 5 -p cbr -e 210 -c 1 -i 266 -a 1 - -t 1.14701 -s 2 -d 3 -p cbr -e 210 -c 1 -i 283 -a 1 h -t 1.14701 -s 2 -d 3 -p cbr -e 210 -c 1 -i 283 -a 1 r -t 1.14711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 287 -a 1 + -t 1.14711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 287 -a 1 r -t 1.14957 -s 3 -d 5 -p cbr -e 210 -c 1 -i 250 -a 1 r -t 1.14997 -s 2 -d 3 -p cbr -e 210 -c 1 -i 267 -a 1 + -t 1.14997 -s 3 -d 5 -p cbr -e 210 -c 1 -i 267 -a 1 - -t 1.14997 -s 3 -d 5 -p cbr -e 210 -c 1 -i 267 -a 1 h -t 1.14997 -s 3 -d 5 -p cbr -e 210 -c 1 -i 267 -a 1 + -t 1.15 -s 1 -d 2 -p cbr -e 210 -c 1 -i 303 -a 1 - -t 1.15 -s 1 -d 2 -p cbr -e 210 -c 1 -i 303 -a 1 h -t 1.15 -s 1 -d 2 -p cbr -e 210 -c 1 -i 303 -a 1 - -t 1.15037 -s 2 -d 3 -p cbr -e 210 -c 1 -i 284 -a 1 h -t 1.15037 -s 2 -d 3 -p cbr -e 210 -c 1 -i 284 -a 1 r -t 1.15086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 288 -a 1 + -t 1.15086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 288 -a 1 r -t 1.15293 -s 3 -d 5 -p cbr -e 210 -c 1 -i 251 -a 1 r -t 1.15333 -s 2 -d 3 -p cbr -e 210 -c 1 -i 268 -a 1 + -t 1.15333 -s 3 -d 5 -p cbr -e 210 -c 1 -i 268 -a 1 - -t 1.15333 -s 3 -d 5 -p cbr -e 210 -c 1 -i 268 -a 1 h -t 1.15333 -s 3 -d 5 -p cbr -e 210 -c 1 -i 268 -a 1 - -t 1.15373 -s 2 -d 3 -p cbr -e 210 -c 1 -i 285 -a 1 h -t 1.15373 -s 2 -d 3 -p cbr -e 210 -c 1 -i 285 -a 1 + -t 1.15375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 304 -a 1 - -t 1.15375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 304 -a 1 h -t 1.15375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 304 -a 1 r -t 1.15461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 289 -a 1 + -t 1.15461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 289 -a 1 r -t 1.15629 -s 3 -d 5 -p cbr -e 210 -c 1 -i 252 -a 1 r -t 1.15669 -s 2 -d 3 -p cbr -e 210 -c 1 -i 269 -a 1 + -t 1.15669 -s 3 -d 5 -p cbr -e 210 -c 1 -i 269 -a 1 - -t 1.15669 -s 3 -d 5 -p cbr -e 210 -c 1 -i 269 -a 1 h -t 1.15669 -s 3 -d 5 -p cbr -e 210 -c 1 -i 269 -a 1 - -t 1.15709 -s 2 -d 3 -p cbr -e 210 -c 1 -i 286 -a 1 h -t 1.15709 -s 2 -d 3 -p cbr -e 210 -c 1 -i 286 -a 1 + -t 1.1575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 305 -a 1 - -t 1.1575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 305 -a 1 h -t 1.1575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 305 -a 1 r -t 1.15836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 290 -a 1 + -t 1.15836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 290 -a 1 r -t 1.15965 -s 3 -d 5 -p cbr -e 210 -c 1 -i 253 -a 1 r -t 1.16005 -s 2 -d 3 -p cbr -e 210 -c 1 -i 270 -a 1 + -t 1.16005 -s 3 -d 5 -p cbr -e 210 -c 1 -i 270 -a 1 - -t 1.16005 -s 3 -d 5 -p cbr -e 210 -c 1 -i 270 -a 1 h -t 1.16005 -s 3 -d 5 -p cbr -e 210 -c 1 -i 270 -a 1 - -t 1.16045 -s 2 -d 3 -p cbr -e 210 -c 1 -i 287 -a 1 h -t 1.16045 -s 2 -d 3 -p cbr -e 210 -c 1 -i 287 -a 1 + -t 1.16125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 306 -a 1 - -t 1.16125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 306 -a 1 h -t 1.16125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 306 -a 1 r -t 1.16211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 291 -a 1 + -t 1.16211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 291 -a 1 r -t 1.16301 -s 3 -d 5 -p cbr -e 210 -c 1 -i 254 -a 1 r -t 1.16341 -s 2 -d 3 -p cbr -e 210 -c 1 -i 271 -a 1 + -t 1.16341 -s 3 -d 5 -p cbr -e 210 -c 1 -i 271 -a 1 - -t 1.16341 -s 3 -d 5 -p cbr -e 210 -c 1 -i 271 -a 1 h -t 1.16341 -s 3 -d 5 -p cbr -e 210 -c 1 -i 271 -a 1 - -t 1.16381 -s 2 -d 3 -p cbr -e 210 -c 1 -i 288 -a 1 h -t 1.16381 -s 2 -d 3 -p cbr -e 210 -c 1 -i 288 -a 1 + -t 1.165 -s 1 -d 2 -p cbr -e 210 -c 1 -i 307 -a 1 - -t 1.165 -s 1 -d 2 -p cbr -e 210 -c 1 -i 307 -a 1 h -t 1.165 -s 1 -d 2 -p cbr -e 210 -c 1 -i 307 -a 1 r -t 1.16586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 292 -a 1 + -t 1.16586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 292 -a 1 r -t 1.16637 -s 3 -d 5 -p cbr -e 210 -c 1 -i 255 -a 1 r -t 1.16677 -s 2 -d 3 -p cbr -e 210 -c 1 -i 272 -a 1 + -t 1.16677 -s 3 -d 5 -p cbr -e 210 -c 1 -i 272 -a 1 - -t 1.16677 -s 3 -d 5 -p cbr -e 210 -c 1 -i 272 -a 1 h -t 1.16677 -s 3 -d 5 -p cbr -e 210 -c 1 -i 272 -a 1 - -t 1.16717 -s 2 -d 3 -p cbr -e 210 -c 1 -i 289 -a 1 h -t 1.16717 -s 2 -d 3 -p cbr -e 210 -c 1 -i 289 -a 1 r -t 1.16789 -s 2 -d 0 -p ack -e 40 -c 0 -i 265 -a 0 -S 0 -y {8 8} + -t 1.16789 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 308 -a 0 -S 0 -f 0 -m 0 -y {12 12} - -t 1.16789 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 308 -a 0 -S 0 -y {12 12} h -t 1.16789 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 308 -a 0 -S 0 -y {-1 -1} + -t 1.16875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 309 -a 1 - -t 1.16875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 309 -a 1 h -t 1.16875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 309 -a 1 r -t 1.16917 -s 4 -d 3 -p ack -e 40 -c 0 -i 294 -a 0 -S 0 -y {10 10} + -t 1.16917 -s 3 -d 2 -p ack -e 40 -c 0 -i 294 -a 0 -S 0 -y {10 10} - -t 1.16917 -s 3 -d 2 -p ack -e 40 -c 0 -i 294 -a 0 -S 0 -y {10 10} h -t 1.16917 -s 3 -d 2 -p ack -e 40 -c 0 -i 294 -a 0 -S 0 -y {-1 -1} r -t 1.16961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 293 -a 1 + -t 1.16961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 293 -a 1 r -t 1.16973 -s 3 -d 5 -p cbr -e 210 -c 1 -i 256 -a 1 r -t 1.17013 -s 2 -d 3 -p cbr -e 210 -c 1 -i 273 -a 1 + -t 1.17013 -s 3 -d 5 -p cbr -e 210 -c 1 -i 273 -a 1 - -t 1.17013 -s 3 -d 5 -p cbr -e 210 -c 1 -i 273 -a 1 h -t 1.17013 -s 3 -d 5 -p cbr -e 210 -c 1 -i 273 -a 1 r -t 1.17021 -s 3 -d 2 -p ack -e 40 -c 0 -i 280 -a 0 -S 0 -y {9 9} + -t 1.17021 -s 2 -d 0 -p ack -e 40 -c 0 -i 280 -a 0 -S 0 -y {9 9} - -t 1.17021 -s 2 -d 0 -p ack -e 40 -c 0 -i 280 -a 0 -S 0 -f 0 -m 1 -y {9 9} h -t 1.17021 -s 2 -d 0 -p ack -e 40 -c 0 -i 280 -a 0 -S 0 -y {-1 -1} - -t 1.17053 -s 2 -d 3 -p cbr -e 210 -c 1 -i 290 -a 1 h -t 1.17053 -s 2 -d 3 -p cbr -e 210 -c 1 -i 290 -a 1 + -t 1.1725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 310 -a 1 - -t 1.1725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 310 -a 1 h -t 1.1725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 310 -a 1 r -t 1.17309 -s 3 -d 5 -p cbr -e 210 -c 1 -i 257 -a 1 r -t 1.17336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 295 -a 1 + -t 1.17336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 295 -a 1 r -t 1.17349 -s 2 -d 3 -p cbr -e 210 -c 1 -i 274 -a 1 + -t 1.17349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 274 -a 1 - -t 1.17349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 274 -a 1 h -t 1.17349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 274 -a 1 - -t 1.17389 -s 2 -d 3 -p cbr -e 210 -c 1 -i 291 -a 1 h -t 1.17389 -s 2 -d 3 -p cbr -e 210 -c 1 -i 291 -a 1 + -t 1.17625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 311 -a 1 - -t 1.17625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 311 -a 1 h -t 1.17625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 311 -a 1 r -t 1.17645 -s 3 -d 5 -p cbr -e 210 -c 1 -i 258 -a 1 r -t 1.17685 -s 2 -d 3 -p cbr -e 210 -c 1 -i 275 -a 1 + -t 1.17685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 275 -a 1 - -t 1.17685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 275 -a 1 h -t 1.17685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 275 -a 1 r -t 1.17711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 296 -a 1 + -t 1.17711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 296 -a 1 - -t 1.17725 -s 2 -d 3 -p cbr -e 210 -c 1 -i 292 -a 1 h -t 1.17725 -s 2 -d 3 -p cbr -e 210 -c 1 -i 292 -a 1 r -t 1.17981 -s 3 -d 5 -p cbr -e 210 -c 1 -i 259 -a 1 + -t 1.18 -s 1 -d 2 -p cbr -e 210 -c 1 -i 312 -a 1 - -t 1.18 -s 1 -d 2 -p cbr -e 210 -c 1 -i 312 -a 1 h -t 1.18 -s 1 -d 2 -p cbr -e 210 -c 1 -i 312 -a 1 r -t 1.18021 -s 2 -d 3 -p cbr -e 210 -c 1 -i 276 -a 1 + -t 1.18021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 276 -a 1 - -t 1.18021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 276 -a 1 h -t 1.18021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 276 -a 1 - -t 1.18061 -s 2 -d 3 -p cbr -e 210 -c 1 -i 293 -a 1 h -t 1.18061 -s 2 -d 3 -p cbr -e 210 -c 1 -i 293 -a 1 r -t 1.18086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 297 -a 1 + -t 1.18086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 297 -a 1 r -t 1.18317 -s 3 -d 5 -p cbr -e 210 -c 1 -i 260 -a 1 r -t 1.18357 -s 2 -d 3 -p cbr -e 210 -c 1 -i 277 -a 1 + -t 1.18357 -s 3 -d 5 -p cbr -e 210 -c 1 -i 277 -a 1 - -t 1.18357 -s 3 -d 5 -p cbr -e 210 -c 1 -i 277 -a 1 h -t 1.18357 -s 3 -d 5 -p cbr -e 210 -c 1 -i 277 -a 1 + -t 1.18375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 313 -a 1 - -t 1.18375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 313 -a 1 h -t 1.18375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 313 -a 1 - -t 1.18397 -s 2 -d 3 -p cbr -e 210 -c 1 -i 295 -a 1 h -t 1.18397 -s 2 -d 3 -p cbr -e 210 -c 1 -i 295 -a 1 r -t 1.18461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 298 -a 1 + -t 1.18461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 298 -a 1 r -t 1.18653 -s 3 -d 5 -p cbr -e 210 -c 1 -i 261 -a 1 r -t 1.18693 -s 2 -d 3 -p cbr -e 210 -c 1 -i 278 -a 1 + -t 1.18693 -s 3 -d 5 -p cbr -e 210 -c 1 -i 278 -a 1 - -t 1.18693 -s 3 -d 5 -p cbr -e 210 -c 1 -i 278 -a 1 h -t 1.18693 -s 3 -d 5 -p cbr -e 210 -c 1 -i 278 -a 1 - -t 1.18733 -s 2 -d 3 -p cbr -e 210 -c 1 -i 296 -a 1 h -t 1.18733 -s 2 -d 3 -p cbr -e 210 -c 1 -i 296 -a 1 + -t 1.1875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 314 -a 1 - -t 1.1875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 314 -a 1 h -t 1.1875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 314 -a 1 r -t 1.18836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 299 -a 1 + -t 1.18836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 299 -a 1 r -t 1.18989 -s 3 -d 5 -p cbr -e 210 -c 1 -i 262 -a 1 r -t 1.19029 -s 2 -d 3 -p cbr -e 210 -c 1 -i 279 -a 1 + -t 1.19029 -s 3 -d 5 -p cbr -e 210 -c 1 -i 279 -a 1 - -t 1.19029 -s 3 -d 5 -p cbr -e 210 -c 1 -i 279 -a 1 h -t 1.19029 -s 3 -d 5 -p cbr -e 210 -c 1 -i 279 -a 1 - -t 1.19069 -s 2 -d 3 -p cbr -e 210 -c 1 -i 297 -a 1 h -t 1.19069 -s 2 -d 3 -p cbr -e 210 -c 1 -i 297 -a 1 + -t 1.19125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 315 -a 1 - -t 1.19125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 315 -a 1 h -t 1.19125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 315 -a 1 r -t 1.19211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 300 -a 1 + -t 1.19211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 300 -a 1 r -t 1.19325 -s 3 -d 5 -p cbr -e 210 -c 1 -i 263 -a 1 r -t 1.19365 -s 2 -d 3 -p cbr -e 210 -c 1 -i 281 -a 1 + -t 1.19365 -s 3 -d 5 -p cbr -e 210 -c 1 -i 281 -a 1 - -t 1.19365 -s 3 -d 5 -p cbr -e 210 -c 1 -i 281 -a 1 h -t 1.19365 -s 3 -d 5 -p cbr -e 210 -c 1 -i 281 -a 1 - -t 1.19405 -s 2 -d 3 -p cbr -e 210 -c 1 -i 298 -a 1 h -t 1.19405 -s 2 -d 3 -p cbr -e 210 -c 1 -i 298 -a 1 + -t 1.195 -s 1 -d 2 -p cbr -e 210 -c 1 -i 316 -a 1 - -t 1.195 -s 1 -d 2 -p cbr -e 210 -c 1 -i 316 -a 1 h -t 1.195 -s 1 -d 2 -p cbr -e 210 -c 1 -i 316 -a 1 r -t 1.19586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 301 -a 1 + -t 1.19586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 301 -a 1 r -t 1.19661 -s 3 -d 5 -p cbr -e 210 -c 1 -i 264 -a 1 r -t 1.19701 -s 2 -d 3 -p cbr -e 210 -c 1 -i 282 -a 1 + -t 1.19701 -s 3 -d 5 -p cbr -e 210 -c 1 -i 282 -a 1 - -t 1.19701 -s 3 -d 5 -p cbr -e 210 -c 1 -i 282 -a 1 h -t 1.19701 -s 3 -d 5 -p cbr -e 210 -c 1 -i 282 -a 1 - -t 1.19741 -s 2 -d 3 -p cbr -e 210 -c 1 -i 299 -a 1 h -t 1.19741 -s 2 -d 3 -p cbr -e 210 -c 1 -i 299 -a 1 + -t 1.19875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 317 -a 1 - -t 1.19875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 317 -a 1 h -t 1.19875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 317 -a 1 r -t 1.19961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 302 -a 1 + -t 1.19961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 302 -a 1 r -t 1.19997 -s 3 -d 5 -p cbr -e 210 -c 1 -i 266 -a 1 r -t 1.20037 -s 2 -d 3 -p cbr -e 210 -c 1 -i 283 -a 1 + -t 1.20037 -s 3 -d 5 -p cbr -e 210 -c 1 -i 283 -a 1 - -t 1.20037 -s 3 -d 5 -p cbr -e 210 -c 1 -i 283 -a 1 h -t 1.20037 -s 3 -d 5 -p cbr -e 210 -c 1 -i 283 -a 1 - -t 1.20077 -s 2 -d 3 -p cbr -e 210 -c 1 -i 300 -a 1 h -t 1.20077 -s 2 -d 3 -p cbr -e 210 -c 1 -i 300 -a 1 + -t 1.2025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 318 -a 1 - -t 1.2025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 318 -a 1 h -t 1.2025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 318 -a 1 r -t 1.20333 -s 3 -d 5 -p cbr -e 210 -c 1 -i 267 -a 1 r -t 1.20336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 303 -a 1 + -t 1.20336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 303 -a 1 r -t 1.20373 -s 2 -d 3 -p cbr -e 210 -c 1 -i 284 -a 1 + -t 1.20373 -s 3 -d 5 -p cbr -e 210 -c 1 -i 284 -a 1 - -t 1.20373 -s 3 -d 5 -p cbr -e 210 -c 1 -i 284 -a 1 h -t 1.20373 -s 3 -d 5 -p cbr -e 210 -c 1 -i 284 -a 1 - -t 1.20413 -s 2 -d 3 -p cbr -e 210 -c 1 -i 301 -a 1 h -t 1.20413 -s 2 -d 3 -p cbr -e 210 -c 1 -i 301 -a 1 + -t 1.20625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 319 -a 1 - -t 1.20625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 319 -a 1 h -t 1.20625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 319 -a 1 r -t 1.20669 -s 3 -d 5 -p cbr -e 210 -c 1 -i 268 -a 1 r -t 1.20709 -s 2 -d 3 -p cbr -e 210 -c 1 -i 285 -a 1 + -t 1.20709 -s 3 -d 5 -p cbr -e 210 -c 1 -i 285 -a 1 - -t 1.20709 -s 3 -d 5 -p cbr -e 210 -c 1 -i 285 -a 1 h -t 1.20709 -s 3 -d 5 -p cbr -e 210 -c 1 -i 285 -a 1 r -t 1.20711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 304 -a 1 + -t 1.20711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 304 -a 1 - -t 1.20749 -s 2 -d 3 -p cbr -e 210 -c 1 -i 302 -a 1 h -t 1.20749 -s 2 -d 3 -p cbr -e 210 -c 1 -i 302 -a 1 + -t 1.21 -s 1 -d 2 -p cbr -e 210 -c 1 -i 320 -a 1 - -t 1.21 -s 1 -d 2 -p cbr -e 210 -c 1 -i 320 -a 1 h -t 1.21 -s 1 -d 2 -p cbr -e 210 -c 1 -i 320 -a 1 r -t 1.21005 -s 3 -d 5 -p cbr -e 210 -c 1 -i 269 -a 1 r -t 1.21045 -s 2 -d 3 -p cbr -e 210 -c 1 -i 286 -a 1 + -t 1.21045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 286 -a 1 - -t 1.21045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 286 -a 1 h -t 1.21045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 286 -a 1 - -t 1.21085 -s 2 -d 3 -p cbr -e 210 -c 1 -i 303 -a 1 h -t 1.21085 -s 2 -d 3 -p cbr -e 210 -c 1 -i 303 -a 1 r -t 1.21086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 305 -a 1 + -t 1.21086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 305 -a 1 r -t 1.21341 -s 3 -d 5 -p cbr -e 210 -c 1 -i 270 -a 1 + -t 1.21375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 321 -a 1 - -t 1.21375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 321 -a 1 h -t 1.21375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 321 -a 1 r -t 1.21381 -s 2 -d 3 -p cbr -e 210 -c 1 -i 287 -a 1 + -t 1.21381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 287 -a 1 - -t 1.21381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 287 -a 1 h -t 1.21381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 287 -a 1 - -t 1.21421 -s 2 -d 3 -p cbr -e 210 -c 1 -i 304 -a 1 h -t 1.21421 -s 2 -d 3 -p cbr -e 210 -c 1 -i 304 -a 1 r -t 1.21461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 306 -a 1 + -t 1.21461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 306 -a 1 r -t 1.21677 -s 3 -d 5 -p cbr -e 210 -c 1 -i 271 -a 1 r -t 1.21717 -s 2 -d 3 -p cbr -e 210 -c 1 -i 288 -a 1 + -t 1.21717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 288 -a 1 - -t 1.21717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 288 -a 1 h -t 1.21717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 288 -a 1 + -t 1.2175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 322 -a 1 - -t 1.2175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 322 -a 1 h -t 1.2175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 322 -a 1 - -t 1.21757 -s 2 -d 3 -p cbr -e 210 -c 1 -i 305 -a 1 h -t 1.21757 -s 2 -d 3 -p cbr -e 210 -c 1 -i 305 -a 1 r -t 1.21836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 307 -a 1 + -t 1.21836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 307 -a 1 r -t 1.21981 -s 3 -d 2 -p ack -e 40 -c 0 -i 294 -a 0 -S 0 -y {10 10} + -t 1.21981 -s 2 -d 0 -p ack -e 40 -c 0 -i 294 -a 0 -S 0 -y {10 10} - -t 1.21981 -s 2 -d 0 -p ack -e 40 -c 0 -i 294 -a 0 -S 0 -f 0 -m 1 -y {10 10} h -t 1.21981 -s 2 -d 0 -p ack -e 40 -c 0 -i 294 -a 0 -S 0 -y {-1 -1} r -t 1.22013 -s 3 -d 5 -p cbr -e 210 -c 1 -i 272 -a 1 r -t 1.22053 -s 2 -d 3 -p cbr -e 210 -c 1 -i 289 -a 1 + -t 1.22053 -s 3 -d 5 -p cbr -e 210 -c 1 -i 289 -a 1 - -t 1.22053 -s 3 -d 5 -p cbr -e 210 -c 1 -i 289 -a 1 h -t 1.22053 -s 3 -d 5 -p cbr -e 210 -c 1 -i 289 -a 1 r -t 1.22085 -s 2 -d 0 -p ack -e 40 -c 0 -i 280 -a 0 -S 0 -y {9 9} + -t 1.22085 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 323 -a 0 -S 0 -f 0 -m 0 -y {13 13} - -t 1.22085 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 323 -a 0 -S 0 -y {13 13} h -t 1.22085 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 323 -a 0 -S 0 -y {-1 -1} - -t 1.22093 -s 2 -d 3 -p cbr -e 210 -c 1 -i 306 -a 1 h -t 1.22093 -s 2 -d 3 -p cbr -e 210 -c 1 -i 306 -a 1 + -t 1.22125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 324 -a 1 - -t 1.22125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 324 -a 1 h -t 1.22125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 324 -a 1 r -t 1.22211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 309 -a 1 + -t 1.22211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 309 -a 1 r -t 1.22349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 273 -a 1 r -t 1.22389 -s 2 -d 3 -p cbr -e 210 -c 1 -i 290 -a 1 + -t 1.22389 -s 3 -d 5 -p cbr -e 210 -c 1 -i 290 -a 1 - -t 1.22389 -s 3 -d 5 -p cbr -e 210 -c 1 -i 290 -a 1 h -t 1.22389 -s 3 -d 5 -p cbr -e 210 -c 1 -i 290 -a 1 - -t 1.22429 -s 2 -d 3 -p cbr -e 210 -c 1 -i 307 -a 1 h -t 1.22429 -s 2 -d 3 -p cbr -e 210 -c 1 -i 307 -a 1 + -t 1.225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 325 -a 1 - -t 1.225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 325 -a 1 h -t 1.225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 325 -a 1 r -t 1.22586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 310 -a 1 + -t 1.22586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 310 -a 1 r -t 1.22685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 274 -a 1 r -t 1.22725 -s 2 -d 3 -p cbr -e 210 -c 1 -i 291 -a 1 + -t 1.22725 -s 3 -d 5 -p cbr -e 210 -c 1 -i 291 -a 1 - -t 1.22725 -s 3 -d 5 -p cbr -e 210 -c 1 -i 291 -a 1 h -t 1.22725 -s 3 -d 5 -p cbr -e 210 -c 1 -i 291 -a 1 - -t 1.22765 -s 2 -d 3 -p cbr -e 210 -c 1 -i 309 -a 1 h -t 1.22765 -s 2 -d 3 -p cbr -e 210 -c 1 -i 309 -a 1 + -t 1.22875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 326 -a 1 - -t 1.22875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 326 -a 1 h -t 1.22875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 326 -a 1 r -t 1.22961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 311 -a 1 + -t 1.22961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 311 -a 1 r -t 1.23021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 275 -a 1 r -t 1.23061 -s 2 -d 3 -p cbr -e 210 -c 1 -i 292 -a 1 + -t 1.23061 -s 3 -d 5 -p cbr -e 210 -c 1 -i 292 -a 1 - -t 1.23061 -s 3 -d 5 -p cbr -e 210 -c 1 -i 292 -a 1 h -t 1.23061 -s 3 -d 5 -p cbr -e 210 -c 1 -i 292 -a 1 - -t 1.23101 -s 2 -d 3 -p cbr -e 210 -c 1 -i 310 -a 1 h -t 1.23101 -s 2 -d 3 -p cbr -e 210 -c 1 -i 310 -a 1 + -t 1.2325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 327 -a 1 - -t 1.2325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 327 -a 1 h -t 1.2325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 327 -a 1 r -t 1.23336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 312 -a 1 + -t 1.23336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 312 -a 1 r -t 1.23357 -s 3 -d 5 -p cbr -e 210 -c 1 -i 276 -a 1 r -t 1.23389 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 308 -a 0 -S 0 -y {12 12} + -t 1.23389 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 308 -a 0 -S 0 -y {12 12} r -t 1.23397 -s 2 -d 3 -p cbr -e 210 -c 1 -i 293 -a 1 + -t 1.23397 -s 3 -d 5 -p cbr -e 210 -c 1 -i 293 -a 1 - -t 1.23397 -s 3 -d 5 -p cbr -e 210 -c 1 -i 293 -a 1 h -t 1.23397 -s 3 -d 5 -p cbr -e 210 -c 1 -i 293 -a 1 - -t 1.23437 -s 2 -d 3 -p cbr -e 210 -c 1 -i 311 -a 1 h -t 1.23437 -s 2 -d 3 -p cbr -e 210 -c 1 -i 311 -a 1 + -t 1.23625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 328 -a 1 - -t 1.23625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 328 -a 1 h -t 1.23625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 328 -a 1 r -t 1.23693 -s 3 -d 5 -p cbr -e 210 -c 1 -i 277 -a 1 r -t 1.23711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 313 -a 1 + -t 1.23711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 313 -a 1 r -t 1.23733 -s 2 -d 3 -p cbr -e 210 -c 1 -i 295 -a 1 + -t 1.23733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 295 -a 1 - -t 1.23733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 295 -a 1 h -t 1.23733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 295 -a 1 - -t 1.23773 -s 2 -d 3 -p cbr -e 210 -c 1 -i 312 -a 1 h -t 1.23773 -s 2 -d 3 -p cbr -e 210 -c 1 -i 312 -a 1 + -t 1.24 -s 1 -d 2 -p cbr -e 210 -c 1 -i 329 -a 1 - -t 1.24 -s 1 -d 2 -p cbr -e 210 -c 1 -i 329 -a 1 h -t 1.24 -s 1 -d 2 -p cbr -e 210 -c 1 -i 329 -a 1 r -t 1.24029 -s 3 -d 5 -p cbr -e 210 -c 1 -i 278 -a 1 r -t 1.24069 -s 2 -d 3 -p cbr -e 210 -c 1 -i 296 -a 1 + -t 1.24069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 296 -a 1 - -t 1.24069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 296 -a 1 h -t 1.24069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 296 -a 1 r -t 1.24086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 314 -a 1 + -t 1.24086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 314 -a 1 - -t 1.24109 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 308 -a 0 -S 0 -y {12 12} h -t 1.24109 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 308 -a 0 -S 0 -y {-1 -1} r -t 1.24365 -s 3 -d 5 -p cbr -e 210 -c 1 -i 279 -a 1 + -t 1.24375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 330 -a 1 - -t 1.24375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 330 -a 1 h -t 1.24375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 330 -a 1 r -t 1.24405 -s 2 -d 3 -p cbr -e 210 -c 1 -i 297 -a 1 + -t 1.24405 -s 3 -d 5 -p cbr -e 210 -c 1 -i 297 -a 1 - -t 1.24405 -s 3 -d 5 -p cbr -e 210 -c 1 -i 297 -a 1 h -t 1.24405 -s 3 -d 5 -p cbr -e 210 -c 1 -i 297 -a 1 r -t 1.24461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 315 -a 1 + -t 1.24461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 315 -a 1 r -t 1.24701 -s 3 -d 5 -p cbr -e 210 -c 1 -i 281 -a 1 r -t 1.24741 -s 2 -d 3 -p cbr -e 210 -c 1 -i 298 -a 1 + -t 1.24741 -s 3 -d 5 -p cbr -e 210 -c 1 -i 298 -a 1 - -t 1.24741 -s 3 -d 5 -p cbr -e 210 -c 1 -i 298 -a 1 h -t 1.24741 -s 3 -d 5 -p cbr -e 210 -c 1 -i 298 -a 1 + -t 1.2475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 331 -a 1 - -t 1.2475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 331 -a 1 h -t 1.2475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 331 -a 1 r -t 1.24836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 316 -a 1 + -t 1.24836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 316 -a 1 r -t 1.25037 -s 3 -d 5 -p cbr -e 210 -c 1 -i 282 -a 1 r -t 1.25077 -s 2 -d 3 -p cbr -e 210 -c 1 -i 299 -a 1 + -t 1.25077 -s 3 -d 5 -p cbr -e 210 -c 1 -i 299 -a 1 - -t 1.25077 -s 3 -d 5 -p cbr -e 210 -c 1 -i 299 -a 1 h -t 1.25077 -s 3 -d 5 -p cbr -e 210 -c 1 -i 299 -a 1 + -t 1.25125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 332 -a 1 - -t 1.25125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 332 -a 1 h -t 1.25125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 332 -a 1 r -t 1.25211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 317 -a 1 + -t 1.25211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 317 -a 1 r -t 1.25373 -s 3 -d 5 -p cbr -e 210 -c 1 -i 283 -a 1 r -t 1.25413 -s 2 -d 3 -p cbr -e 210 -c 1 -i 300 -a 1 + -t 1.25413 -s 3 -d 5 -p cbr -e 210 -c 1 -i 300 -a 1 - -t 1.25413 -s 3 -d 5 -p cbr -e 210 -c 1 -i 300 -a 1 h -t 1.25413 -s 3 -d 5 -p cbr -e 210 -c 1 -i 300 -a 1 + -t 1.255 -s 1 -d 2 -p cbr -e 210 -c 1 -i 333 -a 1 - -t 1.255 -s 1 -d 2 -p cbr -e 210 -c 1 -i 333 -a 1 h -t 1.255 -s 1 -d 2 -p cbr -e 210 -c 1 -i 333 -a 1 r -t 1.25586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 318 -a 1 + -t 1.25586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 318 -a 1 r -t 1.25709 -s 3 -d 5 -p cbr -e 210 -c 1 -i 284 -a 1 - -t 1.25709 -s 2 -d 3 -p cbr -e 210 -c 1 -i 313 -a 1 h -t 1.25709 -s 2 -d 3 -p cbr -e 210 -c 1 -i 313 -a 1 r -t 1.25749 -s 2 -d 3 -p cbr -e 210 -c 1 -i 301 -a 1 + -t 1.25749 -s 3 -d 5 -p cbr -e 210 -c 1 -i 301 -a 1 - -t 1.25749 -s 3 -d 5 -p cbr -e 210 -c 1 -i 301 -a 1 h -t 1.25749 -s 3 -d 5 -p cbr -e 210 -c 1 -i 301 -a 1 + -t 1.25875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 334 -a 1 - -t 1.25875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 334 -a 1 h -t 1.25875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 334 -a 1 r -t 1.25961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 319 -a 1 + -t 1.25961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 319 -a 1 r -t 1.26045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 285 -a 1 - -t 1.26045 -s 2 -d 3 -p cbr -e 210 -c 1 -i 314 -a 1 h -t 1.26045 -s 2 -d 3 -p cbr -e 210 -c 1 -i 314 -a 1 r -t 1.26085 -s 2 -d 3 -p cbr -e 210 -c 1 -i 302 -a 1 + -t 1.26085 -s 3 -d 5 -p cbr -e 210 -c 1 -i 302 -a 1 - -t 1.26085 -s 3 -d 5 -p cbr -e 210 -c 1 -i 302 -a 1 h -t 1.26085 -s 3 -d 5 -p cbr -e 210 -c 1 -i 302 -a 1 + -t 1.2625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 335 -a 1 - -t 1.2625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 335 -a 1 h -t 1.2625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 335 -a 1 r -t 1.26336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 320 -a 1 + -t 1.26336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 320 -a 1 r -t 1.26381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 286 -a 1 - -t 1.26381 -s 2 -d 3 -p cbr -e 210 -c 1 -i 315 -a 1 h -t 1.26381 -s 2 -d 3 -p cbr -e 210 -c 1 -i 315 -a 1 r -t 1.26421 -s 2 -d 3 -p cbr -e 210 -c 1 -i 303 -a 1 + -t 1.26421 -s 3 -d 5 -p cbr -e 210 -c 1 -i 303 -a 1 - -t 1.26421 -s 3 -d 5 -p cbr -e 210 -c 1 -i 303 -a 1 h -t 1.26421 -s 3 -d 5 -p cbr -e 210 -c 1 -i 303 -a 1 + -t 1.26625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 336 -a 1 - -t 1.26625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 336 -a 1 h -t 1.26625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 336 -a 1 r -t 1.26711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 321 -a 1 + -t 1.26711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 321 -a 1 r -t 1.26717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 287 -a 1 - -t 1.26717 -s 2 -d 3 -p cbr -e 210 -c 1 -i 316 -a 1 h -t 1.26717 -s 2 -d 3 -p cbr -e 210 -c 1 -i 316 -a 1 r -t 1.26757 -s 2 -d 3 -p cbr -e 210 -c 1 -i 304 -a 1 + -t 1.26757 -s 3 -d 5 -p cbr -e 210 -c 1 -i 304 -a 1 - -t 1.26757 -s 3 -d 5 -p cbr -e 210 -c 1 -i 304 -a 1 h -t 1.26757 -s 3 -d 5 -p cbr -e 210 -c 1 -i 304 -a 1 + -t 1.27 -s 1 -d 2 -p cbr -e 210 -c 1 -i 337 -a 1 - -t 1.27 -s 1 -d 2 -p cbr -e 210 -c 1 -i 337 -a 1 h -t 1.27 -s 1 -d 2 -p cbr -e 210 -c 1 -i 337 -a 1 r -t 1.27045 -s 2 -d 0 -p ack -e 40 -c 0 -i 294 -a 0 -S 0 -y {10 10} + -t 1.27045 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 338 -a 0 -S 0 -f 0 -m 0 -y {14 14} - -t 1.27045 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 338 -a 0 -S 0 -y {14 14} h -t 1.27045 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 338 -a 0 -S 0 -y {-1 -1} r -t 1.27053 -s 3 -d 5 -p cbr -e 210 -c 1 -i 288 -a 1 - -t 1.27053 -s 2 -d 3 -p cbr -e 210 -c 1 -i 317 -a 1 h -t 1.27053 -s 2 -d 3 -p cbr -e 210 -c 1 -i 317 -a 1 r -t 1.27086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 322 -a 1 + -t 1.27086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 322 -a 1 r -t 1.27093 -s 2 -d 3 -p cbr -e 210 -c 1 -i 305 -a 1 + -t 1.27093 -s 3 -d 5 -p cbr -e 210 -c 1 -i 305 -a 1 - -t 1.27093 -s 3 -d 5 -p cbr -e 210 -c 1 -i 305 -a 1 h -t 1.27093 -s 3 -d 5 -p cbr -e 210 -c 1 -i 305 -a 1 + -t 1.27375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 339 -a 1 - -t 1.27375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 339 -a 1 h -t 1.27375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 339 -a 1 r -t 1.27389 -s 3 -d 5 -p cbr -e 210 -c 1 -i 289 -a 1 - -t 1.27389 -s 2 -d 3 -p cbr -e 210 -c 1 -i 318 -a 1 h -t 1.27389 -s 2 -d 3 -p cbr -e 210 -c 1 -i 318 -a 1 r -t 1.27429 -s 2 -d 3 -p cbr -e 210 -c 1 -i 306 -a 1 + -t 1.27429 -s 3 -d 5 -p cbr -e 210 -c 1 -i 306 -a 1 - -t 1.27429 -s 3 -d 5 -p cbr -e 210 -c 1 -i 306 -a 1 h -t 1.27429 -s 3 -d 5 -p cbr -e 210 -c 1 -i 306 -a 1 r -t 1.27461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 324 -a 1 + -t 1.27461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 324 -a 1 r -t 1.27725 -s 3 -d 5 -p cbr -e 210 -c 1 -i 290 -a 1 - -t 1.27725 -s 2 -d 3 -p cbr -e 210 -c 1 -i 319 -a 1 h -t 1.27725 -s 2 -d 3 -p cbr -e 210 -c 1 -i 319 -a 1 + -t 1.2775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 340 -a 1 - -t 1.2775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 340 -a 1 h -t 1.2775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 340 -a 1 r -t 1.27765 -s 2 -d 3 -p cbr -e 210 -c 1 -i 307 -a 1 + -t 1.27765 -s 3 -d 5 -p cbr -e 210 -c 1 -i 307 -a 1 - -t 1.27765 -s 3 -d 5 -p cbr -e 210 -c 1 -i 307 -a 1 h -t 1.27765 -s 3 -d 5 -p cbr -e 210 -c 1 -i 307 -a 1 r -t 1.27836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 325 -a 1 + -t 1.27836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 325 -a 1 r -t 1.28061 -s 3 -d 5 -p cbr -e 210 -c 1 -i 291 -a 1 - -t 1.28061 -s 2 -d 3 -p cbr -e 210 -c 1 -i 320 -a 1 h -t 1.28061 -s 2 -d 3 -p cbr -e 210 -c 1 -i 320 -a 1 r -t 1.28101 -s 2 -d 3 -p cbr -e 210 -c 1 -i 309 -a 1 + -t 1.28101 -s 3 -d 5 -p cbr -e 210 -c 1 -i 309 -a 1 - -t 1.28101 -s 3 -d 5 -p cbr -e 210 -c 1 -i 309 -a 1 h -t 1.28101 -s 3 -d 5 -p cbr -e 210 -c 1 -i 309 -a 1 + -t 1.28125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 341 -a 1 - -t 1.28125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 341 -a 1 h -t 1.28125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 341 -a 1 r -t 1.28211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 326 -a 1 + -t 1.28211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 326 -a 1 r -t 1.28397 -s 3 -d 5 -p cbr -e 210 -c 1 -i 292 -a 1 - -t 1.28397 -s 2 -d 3 -p cbr -e 210 -c 1 -i 321 -a 1 h -t 1.28397 -s 2 -d 3 -p cbr -e 210 -c 1 -i 321 -a 1 r -t 1.28437 -s 2 -d 3 -p cbr -e 210 -c 1 -i 310 -a 1 + -t 1.28437 -s 3 -d 5 -p cbr -e 210 -c 1 -i 310 -a 1 - -t 1.28437 -s 3 -d 5 -p cbr -e 210 -c 1 -i 310 -a 1 h -t 1.28437 -s 3 -d 5 -p cbr -e 210 -c 1 -i 310 -a 1 + -t 1.285 -s 1 -d 2 -p cbr -e 210 -c 1 -i 342 -a 1 - -t 1.285 -s 1 -d 2 -p cbr -e 210 -c 1 -i 342 -a 1 h -t 1.285 -s 1 -d 2 -p cbr -e 210 -c 1 -i 342 -a 1 r -t 1.28586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 327 -a 1 + -t 1.28586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 327 -a 1 r -t 1.28685 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 323 -a 0 -S 0 -y {13 13} + -t 1.28685 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 323 -a 0 -S 0 -y {13 13} r -t 1.28733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 293 -a 1 - -t 1.28733 -s 2 -d 3 -p cbr -e 210 -c 1 -i 322 -a 1 h -t 1.28733 -s 2 -d 3 -p cbr -e 210 -c 1 -i 322 -a 1 r -t 1.28773 -s 2 -d 3 -p cbr -e 210 -c 1 -i 311 -a 1 + -t 1.28773 -s 3 -d 5 -p cbr -e 210 -c 1 -i 311 -a 1 - -t 1.28773 -s 3 -d 5 -p cbr -e 210 -c 1 -i 311 -a 1 h -t 1.28773 -s 3 -d 5 -p cbr -e 210 -c 1 -i 311 -a 1 + -t 1.28875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 343 -a 1 - -t 1.28875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 343 -a 1 h -t 1.28875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 343 -a 1 r -t 1.28961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 328 -a 1 + -t 1.28961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 328 -a 1 r -t 1.29069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 295 -a 1 - -t 1.29069 -s 2 -d 3 -p cbr -e 210 -c 1 -i 324 -a 1 h -t 1.29069 -s 2 -d 3 -p cbr -e 210 -c 1 -i 324 -a 1 r -t 1.29109 -s 2 -d 3 -p cbr -e 210 -c 1 -i 312 -a 1 + -t 1.29109 -s 3 -d 5 -p cbr -e 210 -c 1 -i 312 -a 1 - -t 1.29109 -s 3 -d 5 -p cbr -e 210 -c 1 -i 312 -a 1 h -t 1.29109 -s 3 -d 5 -p cbr -e 210 -c 1 -i 312 -a 1 + -t 1.2925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 344 -a 1 - -t 1.2925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 344 -a 1 h -t 1.2925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 344 -a 1 r -t 1.29336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 329 -a 1 + -t 1.29336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 329 -a 1 r -t 1.29405 -s 3 -d 5 -p cbr -e 210 -c 1 -i 296 -a 1 - -t 1.29405 -s 2 -d 3 -p cbr -e 210 -c 1 -i 325 -a 1 h -t 1.29405 -s 2 -d 3 -p cbr -e 210 -c 1 -i 325 -a 1 + -t 1.29625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 345 -a 1 - -t 1.29625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 345 -a 1 h -t 1.29625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 345 -a 1 r -t 1.29711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 330 -a 1 + -t 1.29711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 330 -a 1 r -t 1.29741 -s 3 -d 5 -p cbr -e 210 -c 1 -i 297 -a 1 - -t 1.29741 -s 2 -d 3 -p cbr -e 210 -c 1 -i 326 -a 1 h -t 1.29741 -s 2 -d 3 -p cbr -e 210 -c 1 -i 326 -a 1 + -t 1.3 -s 1 -d 2 -p cbr -e 210 -c 1 -i 346 -a 1 - -t 1.3 -s 1 -d 2 -p cbr -e 210 -c 1 -i 346 -a 1 h -t 1.3 -s 1 -d 2 -p cbr -e 210 -c 1 -i 346 -a 1 r -t 1.30077 -s 3 -d 5 -p cbr -e 210 -c 1 -i 298 -a 1 - -t 1.30077 -s 2 -d 3 -p cbr -e 210 -c 1 -i 327 -a 1 h -t 1.30077 -s 2 -d 3 -p cbr -e 210 -c 1 -i 327 -a 1 r -t 1.30086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 331 -a 1 + -t 1.30086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 331 -a 1 + -t 1.30375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 347 -a 1 - -t 1.30375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 347 -a 1 h -t 1.30375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 347 -a 1 r -t 1.30413 -s 3 -d 5 -p cbr -e 210 -c 1 -i 299 -a 1 - -t 1.30413 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 323 -a 0 -S 0 -y {13 13} h -t 1.30413 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 323 -a 0 -S 0 -y {-1 -1} r -t 1.30461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 332 -a 1 + -t 1.30461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 332 -a 1 r -t 1.30709 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 308 -a 0 -S 0 -y {12 12} + -t 1.30709 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 308 -a 0 -S 0 -y {12 12} - -t 1.30709 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 308 -a 0 -S 0 -y {12 12} h -t 1.30709 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 308 -a 0 -S 0 -y {-1 -1} r -t 1.30749 -s 3 -d 5 -p cbr -e 210 -c 1 -i 300 -a 1 + -t 1.3075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 348 -a 1 - -t 1.3075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 348 -a 1 h -t 1.3075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 348 -a 1 r -t 1.30836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 333 -a 1 + -t 1.30836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 333 -a 1 r -t 1.31045 -s 2 -d 3 -p cbr -e 210 -c 1 -i 313 -a 1 + -t 1.31045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 313 -a 1 - -t 1.31045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 313 -a 1 h -t 1.31045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 313 -a 1 r -t 1.31085 -s 3 -d 5 -p cbr -e 210 -c 1 -i 301 -a 1 + -t 1.31125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 349 -a 1 - -t 1.31125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 349 -a 1 h -t 1.31125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 349 -a 1 r -t 1.31211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 334 -a 1 + -t 1.31211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 334 -a 1 r -t 1.31381 -s 2 -d 3 -p cbr -e 210 -c 1 -i 314 -a 1 + -t 1.31381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 314 -a 1 - -t 1.31381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 314 -a 1 h -t 1.31381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 314 -a 1 r -t 1.31421 -s 3 -d 5 -p cbr -e 210 -c 1 -i 302 -a 1 + -t 1.315 -s 1 -d 2 -p cbr -e 210 -c 1 -i 350 -a 1 - -t 1.315 -s 1 -d 2 -p cbr -e 210 -c 1 -i 350 -a 1 h -t 1.315 -s 1 -d 2 -p cbr -e 210 -c 1 -i 350 -a 1 r -t 1.31586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 335 -a 1 + -t 1.31586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 335 -a 1 r -t 1.31717 -s 2 -d 3 -p cbr -e 210 -c 1 -i 315 -a 1 + -t 1.31717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 315 -a 1 - -t 1.31717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 315 -a 1 h -t 1.31717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 315 -a 1 r -t 1.31757 -s 3 -d 5 -p cbr -e 210 -c 1 -i 303 -a 1 + -t 1.31875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 351 -a 1 - -t 1.31875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 351 -a 1 h -t 1.31875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 351 -a 1 r -t 1.31961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 336 -a 1 + -t 1.31961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 336 -a 1 - -t 1.32013 -s 2 -d 3 -p cbr -e 210 -c 1 -i 328 -a 1 h -t 1.32013 -s 2 -d 3 -p cbr -e 210 -c 1 -i 328 -a 1 r -t 1.32053 -s 2 -d 3 -p cbr -e 210 -c 1 -i 316 -a 1 + -t 1.32053 -s 3 -d 5 -p cbr -e 210 -c 1 -i 316 -a 1 - -t 1.32053 -s 3 -d 5 -p cbr -e 210 -c 1 -i 316 -a 1 h -t 1.32053 -s 3 -d 5 -p cbr -e 210 -c 1 -i 316 -a 1 r -t 1.32093 -s 3 -d 5 -p cbr -e 210 -c 1 -i 304 -a 1 + -t 1.3225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 352 -a 1 - -t 1.3225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 352 -a 1 h -t 1.3225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 352 -a 1 r -t 1.32336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 337 -a 1 + -t 1.32336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 337 -a 1 - -t 1.32349 -s 2 -d 3 -p cbr -e 210 -c 1 -i 329 -a 1 h -t 1.32349 -s 2 -d 3 -p cbr -e 210 -c 1 -i 329 -a 1 r -t 1.32389 -s 2 -d 3 -p cbr -e 210 -c 1 -i 317 -a 1 + -t 1.32389 -s 3 -d 5 -p cbr -e 210 -c 1 -i 317 -a 1 - -t 1.32389 -s 3 -d 5 -p cbr -e 210 -c 1 -i 317 -a 1 h -t 1.32389 -s 3 -d 5 -p cbr -e 210 -c 1 -i 317 -a 1 r -t 1.32429 -s 3 -d 5 -p cbr -e 210 -c 1 -i 305 -a 1 + -t 1.32625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 353 -a 1 - -t 1.32625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 353 -a 1 h -t 1.32625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 353 -a 1 - -t 1.32685 -s 2 -d 3 -p cbr -e 210 -c 1 -i 330 -a 1 h -t 1.32685 -s 2 -d 3 -p cbr -e 210 -c 1 -i 330 -a 1 r -t 1.32711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 339 -a 1 + -t 1.32711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 339 -a 1 r -t 1.32725 -s 2 -d 3 -p cbr -e 210 -c 1 -i 318 -a 1 + -t 1.32725 -s 3 -d 5 -p cbr -e 210 -c 1 -i 318 -a 1 - -t 1.32725 -s 3 -d 5 -p cbr -e 210 -c 1 -i 318 -a 1 h -t 1.32725 -s 3 -d 5 -p cbr -e 210 -c 1 -i 318 -a 1 r -t 1.32765 -s 3 -d 5 -p cbr -e 210 -c 1 -i 306 -a 1 + -t 1.33 -s 1 -d 2 -p cbr -e 210 -c 1 -i 354 -a 1 - -t 1.33 -s 1 -d 2 -p cbr -e 210 -c 1 -i 354 -a 1 h -t 1.33 -s 1 -d 2 -p cbr -e 210 -c 1 -i 354 -a 1 - -t 1.33021 -s 2 -d 3 -p cbr -e 210 -c 1 -i 331 -a 1 h -t 1.33021 -s 2 -d 3 -p cbr -e 210 -c 1 -i 331 -a 1 r -t 1.33061 -s 2 -d 3 -p cbr -e 210 -c 1 -i 319 -a 1 + -t 1.33061 -s 3 -d 5 -p cbr -e 210 -c 1 -i 319 -a 1 - -t 1.33061 -s 3 -d 5 -p cbr -e 210 -c 1 -i 319 -a 1 h -t 1.33061 -s 3 -d 5 -p cbr -e 210 -c 1 -i 319 -a 1 r -t 1.33086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 340 -a 1 + -t 1.33086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 340 -a 1 r -t 1.33101 -s 3 -d 5 -p cbr -e 210 -c 1 -i 307 -a 1 - -t 1.33357 -s 2 -d 3 -p cbr -e 210 -c 1 -i 332 -a 1 h -t 1.33357 -s 2 -d 3 -p cbr -e 210 -c 1 -i 332 -a 1 + -t 1.33375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 355 -a 1 - -t 1.33375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 355 -a 1 h -t 1.33375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 355 -a 1 r -t 1.33397 -s 2 -d 3 -p cbr -e 210 -c 1 -i 320 -a 1 + -t 1.33397 -s 3 -d 5 -p cbr -e 210 -c 1 -i 320 -a 1 - -t 1.33397 -s 3 -d 5 -p cbr -e 210 -c 1 -i 320 -a 1 h -t 1.33397 -s 3 -d 5 -p cbr -e 210 -c 1 -i 320 -a 1 r -t 1.33437 -s 3 -d 5 -p cbr -e 210 -c 1 -i 309 -a 1 r -t 1.33461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 341 -a 1 + -t 1.33461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 341 -a 1 r -t 1.33645 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 338 -a 0 -S 0 -y {14 14} + -t 1.33645 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 338 -a 0 -S 0 -y {14 14} - -t 1.33693 -s 2 -d 3 -p cbr -e 210 -c 1 -i 333 -a 1 h -t 1.33693 -s 2 -d 3 -p cbr -e 210 -c 1 -i 333 -a 1 r -t 1.33733 -s 2 -d 3 -p cbr -e 210 -c 1 -i 321 -a 1 + -t 1.33733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 321 -a 1 - -t 1.33733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 321 -a 1 h -t 1.33733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 321 -a 1 + -t 1.3375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 356 -a 1 - -t 1.3375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 356 -a 1 h -t 1.3375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 356 -a 1 r -t 1.33773 -s 3 -d 5 -p cbr -e 210 -c 1 -i 310 -a 1 r -t 1.33836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 342 -a 1 + -t 1.33836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 342 -a 1 - -t 1.34029 -s 2 -d 3 -p cbr -e 210 -c 1 -i 334 -a 1 h -t 1.34029 -s 2 -d 3 -p cbr -e 210 -c 1 -i 334 -a 1 r -t 1.34069 -s 2 -d 3 -p cbr -e 210 -c 1 -i 322 -a 1 + -t 1.34069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 322 -a 1 - -t 1.34069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 322 -a 1 h -t 1.34069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 322 -a 1 r -t 1.34109 -s 3 -d 5 -p cbr -e 210 -c 1 -i 311 -a 1 + -t 1.34125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 357 -a 1 - -t 1.34125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 357 -a 1 h -t 1.34125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 357 -a 1 r -t 1.34211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 343 -a 1 + -t 1.34211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 343 -a 1 - -t 1.34365 -s 2 -d 3 -p cbr -e 210 -c 1 -i 335 -a 1 h -t 1.34365 -s 2 -d 3 -p cbr -e 210 -c 1 -i 335 -a 1 r -t 1.34405 -s 2 -d 3 -p cbr -e 210 -c 1 -i 324 -a 1 + -t 1.34405 -s 3 -d 5 -p cbr -e 210 -c 1 -i 324 -a 1 - -t 1.34405 -s 3 -d 5 -p cbr -e 210 -c 1 -i 324 -a 1 h -t 1.34405 -s 3 -d 5 -p cbr -e 210 -c 1 -i 324 -a 1 r -t 1.34445 -s 3 -d 5 -p cbr -e 210 -c 1 -i 312 -a 1 + -t 1.345 -s 1 -d 2 -p cbr -e 210 -c 1 -i 358 -a 1 - -t 1.345 -s 1 -d 2 -p cbr -e 210 -c 1 -i 358 -a 1 h -t 1.345 -s 1 -d 2 -p cbr -e 210 -c 1 -i 358 -a 1 r -t 1.34586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 344 -a 1 + -t 1.34586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 344 -a 1 - -t 1.34701 -s 2 -d 3 -p cbr -e 210 -c 1 -i 336 -a 1 h -t 1.34701 -s 2 -d 3 -p cbr -e 210 -c 1 -i 336 -a 1 r -t 1.34741 -s 2 -d 3 -p cbr -e 210 -c 1 -i 325 -a 1 + -t 1.34741 -s 3 -d 5 -p cbr -e 210 -c 1 -i 325 -a 1 - -t 1.34741 -s 3 -d 5 -p cbr -e 210 -c 1 -i 325 -a 1 h -t 1.34741 -s 3 -d 5 -p cbr -e 210 -c 1 -i 325 -a 1 + -t 1.34875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 359 -a 1 - -t 1.34875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 359 -a 1 h -t 1.34875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 359 -a 1 r -t 1.34961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 345 -a 1 + -t 1.34961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 345 -a 1 - -t 1.35037 -s 2 -d 3 -p cbr -e 210 -c 1 -i 337 -a 1 h -t 1.35037 -s 2 -d 3 -p cbr -e 210 -c 1 -i 337 -a 1 r -t 1.35077 -s 2 -d 3 -p cbr -e 210 -c 1 -i 326 -a 1 + -t 1.35077 -s 3 -d 5 -p cbr -e 210 -c 1 -i 326 -a 1 - -t 1.35077 -s 3 -d 5 -p cbr -e 210 -c 1 -i 326 -a 1 h -t 1.35077 -s 3 -d 5 -p cbr -e 210 -c 1 -i 326 -a 1 + -t 1.3525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 360 -a 1 - -t 1.3525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 360 -a 1 h -t 1.3525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 360 -a 1 r -t 1.35336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 346 -a 1 + -t 1.35336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 346 -a 1 - -t 1.35373 -s 2 -d 3 -p cbr -e 210 -c 1 -i 339 -a 1 h -t 1.35373 -s 2 -d 3 -p cbr -e 210 -c 1 -i 339 -a 1 r -t 1.35413 -s 2 -d 3 -p cbr -e 210 -c 1 -i 327 -a 1 + -t 1.35413 -s 3 -d 5 -p cbr -e 210 -c 1 -i 327 -a 1 - -t 1.35413 -s 3 -d 5 -p cbr -e 210 -c 1 -i 327 -a 1 h -t 1.35413 -s 3 -d 5 -p cbr -e 210 -c 1 -i 327 -a 1 + -t 1.35625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 361 -a 1 - -t 1.35625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 361 -a 1 h -t 1.35625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 361 -a 1 - -t 1.35709 -s 2 -d 3 -p cbr -e 210 -c 1 -i 340 -a 1 h -t 1.35709 -s 2 -d 3 -p cbr -e 210 -c 1 -i 340 -a 1 r -t 1.35711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 347 -a 1 + -t 1.35711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 347 -a 1 + -t 1.36 -s 1 -d 2 -p cbr -e 210 -c 1 -i 362 -a 1 - -t 1.36 -s 1 -d 2 -p cbr -e 210 -c 1 -i 362 -a 1 h -t 1.36 -s 1 -d 2 -p cbr -e 210 -c 1 -i 362 -a 1 - -t 1.36045 -s 2 -d 3 -p cbr -e 210 -c 1 -i 341 -a 1 h -t 1.36045 -s 2 -d 3 -p cbr -e 210 -c 1 -i 341 -a 1 r -t 1.36086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 348 -a 1 + -t 1.36086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 348 -a 1 + -t 1.36375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 363 -a 1 - -t 1.36375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 363 -a 1 h -t 1.36375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 363 -a 1 r -t 1.36381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 313 -a 1 - -t 1.36381 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 338 -a 0 -S 0 -y {14 14} h -t 1.36381 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 338 -a 0 -S 0 -y {-1 -1} r -t 1.36461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 349 -a 1 + -t 1.36461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 349 -a 1 r -t 1.36717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 314 -a 1 + -t 1.3675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 364 -a 1 - -t 1.3675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 364 -a 1 h -t 1.3675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 364 -a 1 r -t 1.36836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 350 -a 1 + -t 1.36836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 350 -a 1 r -t 1.37013 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 323 -a 0 -S 0 -y {13 13} + -t 1.37013 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 323 -a 0 -S 0 -y {13 13} - -t 1.37013 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 323 -a 0 -S 0 -y {13 13} h -t 1.37013 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 323 -a 0 -S 0 -y {-1 -1} r -t 1.37053 -s 3 -d 5 -p cbr -e 210 -c 1 -i 315 -a 1 + -t 1.37125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 365 -a 1 - -t 1.37125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 365 -a 1 h -t 1.37125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 365 -a 1 r -t 1.37211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 351 -a 1 + -t 1.37211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 351 -a 1 d -t 1.37211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 351 -a 1 r -t 1.37309 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 308 -a 0 -S 0 -y {12 12} + -t 1.37309 -s 4 -d 3 -p ack -e 40 -c 0 -i 366 -a 0 -S 0 -y {10 10} - -t 1.37309 -s 4 -d 3 -p ack -e 40 -c 0 -i 366 -a 0 -S 0 -y {10 10} h -t 1.37309 -s 4 -d 3 -p ack -e 40 -c 0 -i 366 -a 0 -S 0 -y {-1 -1} r -t 1.37349 -s 2 -d 3 -p cbr -e 210 -c 1 -i 328 -a 1 + -t 1.37349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 328 -a 1 - -t 1.37349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 328 -a 1 h -t 1.37349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 328 -a 1 r -t 1.37389 -s 3 -d 5 -p cbr -e 210 -c 1 -i 316 -a 1 + -t 1.375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 367 -a 1 - -t 1.375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 367 -a 1 h -t 1.375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 367 -a 1 r -t 1.37586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 352 -a 1 + -t 1.37586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 352 -a 1 d -t 1.37586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 352 -a 1 r -t 1.37685 -s 2 -d 3 -p cbr -e 210 -c 1 -i 329 -a 1 + -t 1.37685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 329 -a 1 - -t 1.37685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 329 -a 1 h -t 1.37685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 329 -a 1 r -t 1.37725 -s 3 -d 5 -p cbr -e 210 -c 1 -i 317 -a 1 + -t 1.37875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 368 -a 1 - -t 1.37875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 368 -a 1 h -t 1.37875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 368 -a 1 r -t 1.37961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 353 -a 1 + -t 1.37961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 353 -a 1 d -t 1.37961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 353 -a 1 - -t 1.37981 -s 2 -d 3 -p cbr -e 210 -c 1 -i 342 -a 1 h -t 1.37981 -s 2 -d 3 -p cbr -e 210 -c 1 -i 342 -a 1 r -t 1.38021 -s 2 -d 3 -p cbr -e 210 -c 1 -i 330 -a 1 + -t 1.38021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 330 -a 1 - -t 1.38021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 330 -a 1 h -t 1.38021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 330 -a 1 r -t 1.38061 -s 3 -d 5 -p cbr -e 210 -c 1 -i 318 -a 1 + -t 1.3825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 369 -a 1 - -t 1.3825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 369 -a 1 h -t 1.3825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 369 -a 1 - -t 1.38317 -s 2 -d 3 -p cbr -e 210 -c 1 -i 343 -a 1 h -t 1.38317 -s 2 -d 3 -p cbr -e 210 -c 1 -i 343 -a 1 r -t 1.38336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 354 -a 1 + -t 1.38336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 354 -a 1 r -t 1.38357 -s 2 -d 3 -p cbr -e 210 -c 1 -i 331 -a 1 + -t 1.38357 -s 3 -d 5 -p cbr -e 210 -c 1 -i 331 -a 1 - -t 1.38357 -s 3 -d 5 -p cbr -e 210 -c 1 -i 331 -a 1 h -t 1.38357 -s 3 -d 5 -p cbr -e 210 -c 1 -i 331 -a 1 r -t 1.38397 -s 3 -d 5 -p cbr -e 210 -c 1 -i 319 -a 1 + -t 1.38625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 370 -a 1 - -t 1.38625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 370 -a 1 h -t 1.38625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 370 -a 1 - -t 1.38653 -s 2 -d 3 -p cbr -e 210 -c 1 -i 344 -a 1 h -t 1.38653 -s 2 -d 3 -p cbr -e 210 -c 1 -i 344 -a 1 r -t 1.38693 -s 2 -d 3 -p cbr -e 210 -c 1 -i 332 -a 1 + -t 1.38693 -s 3 -d 5 -p cbr -e 210 -c 1 -i 332 -a 1 - -t 1.38693 -s 3 -d 5 -p cbr -e 210 -c 1 -i 332 -a 1 h -t 1.38693 -s 3 -d 5 -p cbr -e 210 -c 1 -i 332 -a 1 r -t 1.38711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 355 -a 1 + -t 1.38711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 355 -a 1 r -t 1.38733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 320 -a 1 - -t 1.38989 -s 2 -d 3 -p cbr -e 210 -c 1 -i 345 -a 1 h -t 1.38989 -s 2 -d 3 -p cbr -e 210 -c 1 -i 345 -a 1 + -t 1.39 -s 1 -d 2 -p cbr -e 210 -c 1 -i 371 -a 1 - -t 1.39 -s 1 -d 2 -p cbr -e 210 -c 1 -i 371 -a 1 h -t 1.39 -s 1 -d 2 -p cbr -e 210 -c 1 -i 371 -a 1 r -t 1.39029 -s 2 -d 3 -p cbr -e 210 -c 1 -i 333 -a 1 + -t 1.39029 -s 3 -d 5 -p cbr -e 210 -c 1 -i 333 -a 1 - -t 1.39029 -s 3 -d 5 -p cbr -e 210 -c 1 -i 333 -a 1 h -t 1.39029 -s 3 -d 5 -p cbr -e 210 -c 1 -i 333 -a 1 r -t 1.39069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 321 -a 1 r -t 1.39086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 356 -a 1 + -t 1.39086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 356 -a 1 - -t 1.39325 -s 2 -d 3 -p cbr -e 210 -c 1 -i 346 -a 1 h -t 1.39325 -s 2 -d 3 -p cbr -e 210 -c 1 -i 346 -a 1 r -t 1.39365 -s 2 -d 3 -p cbr -e 210 -c 1 -i 334 -a 1 + -t 1.39365 -s 3 -d 5 -p cbr -e 210 -c 1 -i 334 -a 1 - -t 1.39365 -s 3 -d 5 -p cbr -e 210 -c 1 -i 334 -a 1 h -t 1.39365 -s 3 -d 5 -p cbr -e 210 -c 1 -i 334 -a 1 + -t 1.39375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 372 -a 1 - -t 1.39375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 372 -a 1 h -t 1.39375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 372 -a 1 r -t 1.39405 -s 3 -d 5 -p cbr -e 210 -c 1 -i 322 -a 1 r -t 1.39461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 357 -a 1 + -t 1.39461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 357 -a 1 - -t 1.39661 -s 2 -d 3 -p cbr -e 210 -c 1 -i 347 -a 1 h -t 1.39661 -s 2 -d 3 -p cbr -e 210 -c 1 -i 347 -a 1 r -t 1.39701 -s 2 -d 3 -p cbr -e 210 -c 1 -i 335 -a 1 + -t 1.39701 -s 3 -d 5 -p cbr -e 210 -c 1 -i 335 -a 1 - -t 1.39701 -s 3 -d 5 -p cbr -e 210 -c 1 -i 335 -a 1 h -t 1.39701 -s 3 -d 5 -p cbr -e 210 -c 1 -i 335 -a 1 r -t 1.39741 -s 3 -d 5 -p cbr -e 210 -c 1 -i 324 -a 1 + -t 1.3975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 373 -a 1 - -t 1.3975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 373 -a 1 h -t 1.3975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 373 -a 1 r -t 1.39836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 358 -a 1 + -t 1.39836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 358 -a 1 - -t 1.39997 -s 2 -d 3 -p cbr -e 210 -c 1 -i 348 -a 1 h -t 1.39997 -s 2 -d 3 -p cbr -e 210 -c 1 -i 348 -a 1 r -t 1.40037 -s 2 -d 3 -p cbr -e 210 -c 1 -i 336 -a 1 + -t 1.40037 -s 3 -d 5 -p cbr -e 210 -c 1 -i 336 -a 1 - -t 1.40037 -s 3 -d 5 -p cbr -e 210 -c 1 -i 336 -a 1 h -t 1.40037 -s 3 -d 5 -p cbr -e 210 -c 1 -i 336 -a 1 r -t 1.40077 -s 3 -d 5 -p cbr -e 210 -c 1 -i 325 -a 1 + -t 1.40125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 374 -a 1 - -t 1.40125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 374 -a 1 h -t 1.40125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 374 -a 1 r -t 1.40211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 359 -a 1 + -t 1.40211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 359 -a 1 - -t 1.40333 -s 2 -d 3 -p cbr -e 210 -c 1 -i 349 -a 1 h -t 1.40333 -s 2 -d 3 -p cbr -e 210 -c 1 -i 349 -a 1 r -t 1.40373 -s 2 -d 3 -p cbr -e 210 -c 1 -i 337 -a 1 + -t 1.40373 -s 3 -d 5 -p cbr -e 210 -c 1 -i 337 -a 1 - -t 1.40373 -s 3 -d 5 -p cbr -e 210 -c 1 -i 337 -a 1 h -t 1.40373 -s 3 -d 5 -p cbr -e 210 -c 1 -i 337 -a 1 r -t 1.40413 -s 3 -d 5 -p cbr -e 210 -c 1 -i 326 -a 1 + -t 1.405 -s 1 -d 2 -p cbr -e 210 -c 1 -i 375 -a 1 - -t 1.405 -s 1 -d 2 -p cbr -e 210 -c 1 -i 375 -a 1 h -t 1.405 -s 1 -d 2 -p cbr -e 210 -c 1 -i 375 -a 1 r -t 1.40586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 360 -a 1 + -t 1.40586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 360 -a 1 - -t 1.40669 -s 2 -d 3 -p cbr -e 210 -c 1 -i 350 -a 1 h -t 1.40669 -s 2 -d 3 -p cbr -e 210 -c 1 -i 350 -a 1 r -t 1.40709 -s 2 -d 3 -p cbr -e 210 -c 1 -i 339 -a 1 + -t 1.40709 -s 3 -d 5 -p cbr -e 210 -c 1 -i 339 -a 1 - -t 1.40709 -s 3 -d 5 -p cbr -e 210 -c 1 -i 339 -a 1 h -t 1.40709 -s 3 -d 5 -p cbr -e 210 -c 1 -i 339 -a 1 r -t 1.40749 -s 3 -d 5 -p cbr -e 210 -c 1 -i 327 -a 1 + -t 1.40875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 376 -a 1 - -t 1.40875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 376 -a 1 h -t 1.40875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 376 -a 1 r -t 1.40961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 361 -a 1 + -t 1.40961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 361 -a 1 - -t 1.41005 -s 2 -d 3 -p cbr -e 210 -c 1 -i 354 -a 1 h -t 1.41005 -s 2 -d 3 -p cbr -e 210 -c 1 -i 354 -a 1 r -t 1.41045 -s 2 -d 3 -p cbr -e 210 -c 1 -i 340 -a 1 + -t 1.41045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 340 -a 1 - -t 1.41045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 340 -a 1 h -t 1.41045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 340 -a 1 + -t 1.4125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 377 -a 1 - -t 1.4125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 377 -a 1 h -t 1.4125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 377 -a 1 r -t 1.41336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 362 -a 1 + -t 1.41336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 362 -a 1 - -t 1.41341 -s 2 -d 3 -p cbr -e 210 -c 1 -i 355 -a 1 h -t 1.41341 -s 2 -d 3 -p cbr -e 210 -c 1 -i 355 -a 1 r -t 1.41381 -s 2 -d 3 -p cbr -e 210 -c 1 -i 341 -a 1 + -t 1.41381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 341 -a 1 - -t 1.41381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 341 -a 1 h -t 1.41381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 341 -a 1 + -t 1.41625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 378 -a 1 - -t 1.41625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 378 -a 1 h -t 1.41625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 378 -a 1 - -t 1.41677 -s 2 -d 3 -p cbr -e 210 -c 1 -i 356 -a 1 h -t 1.41677 -s 2 -d 3 -p cbr -e 210 -c 1 -i 356 -a 1 r -t 1.41711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 363 -a 1 + -t 1.41711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 363 -a 1 + -t 1.42 -s 1 -d 2 -p cbr -e 210 -c 1 -i 379 -a 1 - -t 1.42 -s 1 -d 2 -p cbr -e 210 -c 1 -i 379 -a 1 h -t 1.42 -s 1 -d 2 -p cbr -e 210 -c 1 -i 379 -a 1 - -t 1.42013 -s 2 -d 3 -p cbr -e 210 -c 1 -i 357 -a 1 h -t 1.42013 -s 2 -d 3 -p cbr -e 210 -c 1 -i 357 -a 1 r -t 1.42086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 364 -a 1 + -t 1.42086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 364 -a 1 - -t 1.42349 -s 2 -d 3 -p cbr -e 210 -c 1 -i 358 -a 1 h -t 1.42349 -s 2 -d 3 -p cbr -e 210 -c 1 -i 358 -a 1 r -t 1.42373 -s 4 -d 3 -p ack -e 40 -c 0 -i 366 -a 0 -S 0 -y {10 10} + -t 1.42373 -s 3 -d 2 -p ack -e 40 -c 0 -i 366 -a 0 -S 0 -y {10 10} - -t 1.42373 -s 3 -d 2 -p ack -e 40 -c 0 -i 366 -a 0 -S 0 -y {10 10} h -t 1.42373 -s 3 -d 2 -p ack -e 40 -c 0 -i 366 -a 0 -S 0 -y {-1 -1} + -t 1.42375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 380 -a 1 - -t 1.42375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 380 -a 1 h -t 1.42375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 380 -a 1 r -t 1.42461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 365 -a 1 + -t 1.42461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 365 -a 1 r -t 1.42685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 328 -a 1 - -t 1.42685 -s 2 -d 3 -p cbr -e 210 -c 1 -i 359 -a 1 h -t 1.42685 -s 2 -d 3 -p cbr -e 210 -c 1 -i 359 -a 1 + -t 1.4275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 381 -a 1 - -t 1.4275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 381 -a 1 h -t 1.4275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 381 -a 1 r -t 1.42836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 367 -a 1 + -t 1.42836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 367 -a 1 r -t 1.42981 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 338 -a 0 -S 0 -y {14 14} + -t 1.42981 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 338 -a 0 -S 0 -y {14 14} - -t 1.42981 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 338 -a 0 -S 0 -y {14 14} h -t 1.42981 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 338 -a 0 -S 0 -y {-1 -1} r -t 1.43021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 329 -a 1 - -t 1.43021 -s 2 -d 3 -p cbr -e 210 -c 1 -i 360 -a 1 h -t 1.43021 -s 2 -d 3 -p cbr -e 210 -c 1 -i 360 -a 1 + -t 1.43125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 382 -a 1 - -t 1.43125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 382 -a 1 h -t 1.43125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 382 -a 1 r -t 1.43211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 368 -a 1 + -t 1.43211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 368 -a 1 r -t 1.43317 -s 2 -d 3 -p cbr -e 210 -c 1 -i 342 -a 1 + -t 1.43317 -s 3 -d 5 -p cbr -e 210 -c 1 -i 342 -a 1 - -t 1.43317 -s 3 -d 5 -p cbr -e 210 -c 1 -i 342 -a 1 h -t 1.43317 -s 3 -d 5 -p cbr -e 210 -c 1 -i 342 -a 1 r -t 1.43357 -s 3 -d 5 -p cbr -e 210 -c 1 -i 330 -a 1 - -t 1.43357 -s 2 -d 3 -p cbr -e 210 -c 1 -i 361 -a 1 h -t 1.43357 -s 2 -d 3 -p cbr -e 210 -c 1 -i 361 -a 1 + -t 1.435 -s 1 -d 2 -p cbr -e 210 -c 1 -i 383 -a 1 - -t 1.435 -s 1 -d 2 -p cbr -e 210 -c 1 -i 383 -a 1 h -t 1.435 -s 1 -d 2 -p cbr -e 210 -c 1 -i 383 -a 1 r -t 1.43586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 369 -a 1 + -t 1.43586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 369 -a 1 r -t 1.43613 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 323 -a 0 -S 0 -y {13 13} + -t 1.43613 -s 4 -d 3 -p ack -e 40 -c 0 -i 384 -a 0 -S 0 -y {10 10} - -t 1.43613 -s 4 -d 3 -p ack -e 40 -c 0 -i 384 -a 0 -S 0 -y {10 10} h -t 1.43613 -s 4 -d 3 -p ack -e 40 -c 0 -i 384 -a 0 -S 0 -y {-1 -1} r -t 1.43653 -s 2 -d 3 -p cbr -e 210 -c 1 -i 343 -a 1 + -t 1.43653 -s 3 -d 5 -p cbr -e 210 -c 1 -i 343 -a 1 - -t 1.43653 -s 3 -d 5 -p cbr -e 210 -c 1 -i 343 -a 1 h -t 1.43653 -s 3 -d 5 -p cbr -e 210 -c 1 -i 343 -a 1 r -t 1.43693 -s 3 -d 5 -p cbr -e 210 -c 1 -i 331 -a 1 - -t 1.43693 -s 2 -d 3 -p cbr -e 210 -c 1 -i 362 -a 1 h -t 1.43693 -s 2 -d 3 -p cbr -e 210 -c 1 -i 362 -a 1 + -t 1.43875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 385 -a 1 - -t 1.43875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 385 -a 1 h -t 1.43875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 385 -a 1 r -t 1.43961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 370 -a 1 + -t 1.43961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 370 -a 1 r -t 1.43989 -s 2 -d 3 -p cbr -e 210 -c 1 -i 344 -a 1 + -t 1.43989 -s 3 -d 5 -p cbr -e 210 -c 1 -i 344 -a 1 - -t 1.43989 -s 3 -d 5 -p cbr -e 210 -c 1 -i 344 -a 1 h -t 1.43989 -s 3 -d 5 -p cbr -e 210 -c 1 -i 344 -a 1 r -t 1.44029 -s 3 -d 5 -p cbr -e 210 -c 1 -i 332 -a 1 - -t 1.44029 -s 2 -d 3 -p cbr -e 210 -c 1 -i 363 -a 1 h -t 1.44029 -s 2 -d 3 -p cbr -e 210 -c 1 -i 363 -a 1 + -t 1.4425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 386 -a 1 - -t 1.4425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 386 -a 1 h -t 1.4425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 386 -a 1 r -t 1.44325 -s 2 -d 3 -p cbr -e 210 -c 1 -i 345 -a 1 + -t 1.44325 -s 3 -d 5 -p cbr -e 210 -c 1 -i 345 -a 1 - -t 1.44325 -s 3 -d 5 -p cbr -e 210 -c 1 -i 345 -a 1 h -t 1.44325 -s 3 -d 5 -p cbr -e 210 -c 1 -i 345 -a 1 r -t 1.44336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 371 -a 1 + -t 1.44336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 371 -a 1 r -t 1.44365 -s 3 -d 5 -p cbr -e 210 -c 1 -i 333 -a 1 - -t 1.44365 -s 2 -d 3 -p cbr -e 210 -c 1 -i 364 -a 1 h -t 1.44365 -s 2 -d 3 -p cbr -e 210 -c 1 -i 364 -a 1 + -t 1.44625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 387 -a 1 - -t 1.44625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 387 -a 1 h -t 1.44625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 387 -a 1 r -t 1.44661 -s 2 -d 3 -p cbr -e 210 -c 1 -i 346 -a 1 + -t 1.44661 -s 3 -d 5 -p cbr -e 210 -c 1 -i 346 -a 1 - -t 1.44661 -s 3 -d 5 -p cbr -e 210 -c 1 -i 346 -a 1 h -t 1.44661 -s 3 -d 5 -p cbr -e 210 -c 1 -i 346 -a 1 r -t 1.44701 -s 3 -d 5 -p cbr -e 210 -c 1 -i 334 -a 1 - -t 1.44701 -s 2 -d 3 -p cbr -e 210 -c 1 -i 365 -a 1 h -t 1.44701 -s 2 -d 3 -p cbr -e 210 -c 1 -i 365 -a 1 r -t 1.44711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 372 -a 1 + -t 1.44711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 372 -a 1 r -t 1.44997 -s 2 -d 3 -p cbr -e 210 -c 1 -i 347 -a 1 + -t 1.44997 -s 3 -d 5 -p cbr -e 210 -c 1 -i 347 -a 1 - -t 1.44997 -s 3 -d 5 -p cbr -e 210 -c 1 -i 347 -a 1 h -t 1.44997 -s 3 -d 5 -p cbr -e 210 -c 1 -i 347 -a 1 + -t 1.45 -s 1 -d 2 -p cbr -e 210 -c 1 -i 388 -a 1 - -t 1.45 -s 1 -d 2 -p cbr -e 210 -c 1 -i 388 -a 1 h -t 1.45 -s 1 -d 2 -p cbr -e 210 -c 1 -i 388 -a 1 r -t 1.45037 -s 3 -d 5 -p cbr -e 210 -c 1 -i 335 -a 1 - -t 1.45037 -s 2 -d 3 -p cbr -e 210 -c 1 -i 367 -a 1 h -t 1.45037 -s 2 -d 3 -p cbr -e 210 -c 1 -i 367 -a 1 r -t 1.45086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 373 -a 1 + -t 1.45086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 373 -a 1 r -t 1.45333 -s 2 -d 3 -p cbr -e 210 -c 1 -i 348 -a 1 + -t 1.45333 -s 3 -d 5 -p cbr -e 210 -c 1 -i 348 -a 1 - -t 1.45333 -s 3 -d 5 -p cbr -e 210 -c 1 -i 348 -a 1 h -t 1.45333 -s 3 -d 5 -p cbr -e 210 -c 1 -i 348 -a 1 r -t 1.45373 -s 3 -d 5 -p cbr -e 210 -c 1 -i 336 -a 1 - -t 1.45373 -s 2 -d 3 -p cbr -e 210 -c 1 -i 368 -a 1 h -t 1.45373 -s 2 -d 3 -p cbr -e 210 -c 1 -i 368 -a 1 + -t 1.45375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 389 -a 1 - -t 1.45375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 389 -a 1 h -t 1.45375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 389 -a 1 r -t 1.45461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 374 -a 1 + -t 1.45461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 374 -a 1 r -t 1.45669 -s 2 -d 3 -p cbr -e 210 -c 1 -i 349 -a 1 + -t 1.45669 -s 3 -d 5 -p cbr -e 210 -c 1 -i 349 -a 1 - -t 1.45669 -s 3 -d 5 -p cbr -e 210 -c 1 -i 349 -a 1 h -t 1.45669 -s 3 -d 5 -p cbr -e 210 -c 1 -i 349 -a 1 r -t 1.45709 -s 3 -d 5 -p cbr -e 210 -c 1 -i 337 -a 1 - -t 1.45709 -s 2 -d 3 -p cbr -e 210 -c 1 -i 369 -a 1 h -t 1.45709 -s 2 -d 3 -p cbr -e 210 -c 1 -i 369 -a 1 + -t 1.4575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 390 -a 1 - -t 1.4575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 390 -a 1 h -t 1.4575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 390 -a 1 r -t 1.45836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 375 -a 1 + -t 1.45836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 375 -a 1 r -t 1.46005 -s 2 -d 3 -p cbr -e 210 -c 1 -i 350 -a 1 + -t 1.46005 -s 3 -d 5 -p cbr -e 210 -c 1 -i 350 -a 1 - -t 1.46005 -s 3 -d 5 -p cbr -e 210 -c 1 -i 350 -a 1 h -t 1.46005 -s 3 -d 5 -p cbr -e 210 -c 1 -i 350 -a 1 r -t 1.46045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 339 -a 1 - -t 1.46045 -s 2 -d 3 -p cbr -e 210 -c 1 -i 370 -a 1 h -t 1.46045 -s 2 -d 3 -p cbr -e 210 -c 1 -i 370 -a 1 + -t 1.46125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 391 -a 1 - -t 1.46125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 391 -a 1 h -t 1.46125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 391 -a 1 r -t 1.46211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 376 -a 1 + -t 1.46211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 376 -a 1 r -t 1.46341 -s 2 -d 3 -p cbr -e 210 -c 1 -i 354 -a 1 + -t 1.46341 -s 3 -d 5 -p cbr -e 210 -c 1 -i 354 -a 1 - -t 1.46341 -s 3 -d 5 -p cbr -e 210 -c 1 -i 354 -a 1 h -t 1.46341 -s 3 -d 5 -p cbr -e 210 -c 1 -i 354 -a 1 r -t 1.46381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 340 -a 1 - -t 1.46381 -s 2 -d 3 -p cbr -e 210 -c 1 -i 371 -a 1 h -t 1.46381 -s 2 -d 3 -p cbr -e 210 -c 1 -i 371 -a 1 + -t 1.465 -s 1 -d 2 -p cbr -e 210 -c 1 -i 392 -a 1 - -t 1.465 -s 1 -d 2 -p cbr -e 210 -c 1 -i 392 -a 1 h -t 1.465 -s 1 -d 2 -p cbr -e 210 -c 1 -i 392 -a 1 r -t 1.46586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 377 -a 1 + -t 1.46586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 377 -a 1 r -t 1.46677 -s 2 -d 3 -p cbr -e 210 -c 1 -i 355 -a 1 + -t 1.46677 -s 3 -d 5 -p cbr -e 210 -c 1 -i 355 -a 1 - -t 1.46677 -s 3 -d 5 -p cbr -e 210 -c 1 -i 355 -a 1 h -t 1.46677 -s 3 -d 5 -p cbr -e 210 -c 1 -i 355 -a 1 r -t 1.46717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 341 -a 1 - -t 1.46717 -s 2 -d 3 -p cbr -e 210 -c 1 -i 372 -a 1 h -t 1.46717 -s 2 -d 3 -p cbr -e 210 -c 1 -i 372 -a 1 + -t 1.46875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 393 -a 1 - -t 1.46875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 393 -a 1 h -t 1.46875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 393 -a 1 r -t 1.46961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 378 -a 1 + -t 1.46961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 378 -a 1 r -t 1.47013 -s 2 -d 3 -p cbr -e 210 -c 1 -i 356 -a 1 + -t 1.47013 -s 3 -d 5 -p cbr -e 210 -c 1 -i 356 -a 1 - -t 1.47013 -s 3 -d 5 -p cbr -e 210 -c 1 -i 356 -a 1 h -t 1.47013 -s 3 -d 5 -p cbr -e 210 -c 1 -i 356 -a 1 - -t 1.47053 -s 2 -d 3 -p cbr -e 210 -c 1 -i 373 -a 1 h -t 1.47053 -s 2 -d 3 -p cbr -e 210 -c 1 -i 373 -a 1 + -t 1.4725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 394 -a 1 - -t 1.4725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 394 -a 1 h -t 1.4725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 394 -a 1 r -t 1.47336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 379 -a 1 + -t 1.47336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 379 -a 1 r -t 1.47349 -s 2 -d 3 -p cbr -e 210 -c 1 -i 357 -a 1 + -t 1.47349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 357 -a 1 - -t 1.47349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 357 -a 1 h -t 1.47349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 357 -a 1 - -t 1.47389 -s 2 -d 3 -p cbr -e 210 -c 1 -i 374 -a 1 h -t 1.47389 -s 2 -d 3 -p cbr -e 210 -c 1 -i 374 -a 1 r -t 1.47437 -s 3 -d 2 -p ack -e 40 -c 0 -i 366 -a 0 -S 0 -y {10 10} + -t 1.47437 -s 2 -d 0 -p ack -e 40 -c 0 -i 366 -a 0 -S 0 -y {10 10} - -t 1.47437 -s 2 -d 0 -p ack -e 40 -c 0 -i 366 -a 0 -S 0 -f 0 -m 1 -y {10 10} h -t 1.47437 -s 2 -d 0 -p ack -e 40 -c 0 -i 366 -a 0 -S 0 -y {-1 -1} + -t 1.47625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 395 -a 1 - -t 1.47625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 395 -a 1 h -t 1.47625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 395 -a 1 r -t 1.47685 -s 2 -d 3 -p cbr -e 210 -c 1 -i 358 -a 1 + -t 1.47685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 358 -a 1 - -t 1.47685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 358 -a 1 h -t 1.47685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 358 -a 1 r -t 1.47711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 380 -a 1 + -t 1.47711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 380 -a 1 - -t 1.47725 -s 2 -d 3 -p cbr -e 210 -c 1 -i 375 -a 1 h -t 1.47725 -s 2 -d 3 -p cbr -e 210 -c 1 -i 375 -a 1 + -t 1.48 -s 1 -d 2 -p cbr -e 210 -c 1 -i 396 -a 1 - -t 1.48 -s 1 -d 2 -p cbr -e 210 -c 1 -i 396 -a 1 h -t 1.48 -s 1 -d 2 -p cbr -e 210 -c 1 -i 396 -a 1 r -t 1.48021 -s 2 -d 3 -p cbr -e 210 -c 1 -i 359 -a 1 + -t 1.48021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 359 -a 1 - -t 1.48021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 359 -a 1 h -t 1.48021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 359 -a 1 - -t 1.48061 -s 2 -d 3 -p cbr -e 210 -c 1 -i 376 -a 1 h -t 1.48061 -s 2 -d 3 -p cbr -e 210 -c 1 -i 376 -a 1 r -t 1.48086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 381 -a 1 + -t 1.48086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 381 -a 1 r -t 1.48357 -s 2 -d 3 -p cbr -e 210 -c 1 -i 360 -a 1 + -t 1.48357 -s 3 -d 5 -p cbr -e 210 -c 1 -i 360 -a 1 - -t 1.48357 -s 3 -d 5 -p cbr -e 210 -c 1 -i 360 -a 1 h -t 1.48357 -s 3 -d 5 -p cbr -e 210 -c 1 -i 360 -a 1 + -t 1.48375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 397 -a 1 - -t 1.48375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 397 -a 1 h -t 1.48375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 397 -a 1 - -t 1.48397 -s 2 -d 3 -p cbr -e 210 -c 1 -i 377 -a 1 h -t 1.48397 -s 2 -d 3 -p cbr -e 210 -c 1 -i 377 -a 1 r -t 1.48461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 382 -a 1 + -t 1.48461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 382 -a 1 r -t 1.48653 -s 3 -d 5 -p cbr -e 210 -c 1 -i 342 -a 1 r -t 1.48677 -s 4 -d 3 -p ack -e 40 -c 0 -i 384 -a 0 -S 0 -y {10 10} + -t 1.48677 -s 3 -d 2 -p ack -e 40 -c 0 -i 384 -a 0 -S 0 -y {10 10} - -t 1.48677 -s 3 -d 2 -p ack -e 40 -c 0 -i 384 -a 0 -S 0 -y {10 10} h -t 1.48677 -s 3 -d 2 -p ack -e 40 -c 0 -i 384 -a 0 -S 0 -y {-1 -1} r -t 1.48693 -s 2 -d 3 -p cbr -e 210 -c 1 -i 361 -a 1 + -t 1.48693 -s 3 -d 5 -p cbr -e 210 -c 1 -i 361 -a 1 - -t 1.48693 -s 3 -d 5 -p cbr -e 210 -c 1 -i 361 -a 1 h -t 1.48693 -s 3 -d 5 -p cbr -e 210 -c 1 -i 361 -a 1 - -t 1.48733 -s 2 -d 3 -p cbr -e 210 -c 1 -i 378 -a 1 h -t 1.48733 -s 2 -d 3 -p cbr -e 210 -c 1 -i 378 -a 1 + -t 1.4875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 398 -a 1 - -t 1.4875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 398 -a 1 h -t 1.4875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 398 -a 1 r -t 1.48836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 383 -a 1 + -t 1.48836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 383 -a 1 r -t 1.48989 -s 3 -d 5 -p cbr -e 210 -c 1 -i 343 -a 1 r -t 1.49029 -s 2 -d 3 -p cbr -e 210 -c 1 -i 362 -a 1 + -t 1.49029 -s 3 -d 5 -p cbr -e 210 -c 1 -i 362 -a 1 - -t 1.49029 -s 3 -d 5 -p cbr -e 210 -c 1 -i 362 -a 1 h -t 1.49029 -s 3 -d 5 -p cbr -e 210 -c 1 -i 362 -a 1 - -t 1.49069 -s 2 -d 3 -p cbr -e 210 -c 1 -i 379 -a 1 h -t 1.49069 -s 2 -d 3 -p cbr -e 210 -c 1 -i 379 -a 1 + -t 1.49125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 399 -a 1 - -t 1.49125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 399 -a 1 h -t 1.49125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 399 -a 1 r -t 1.49211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 385 -a 1 + -t 1.49211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 385 -a 1 r -t 1.49325 -s 3 -d 5 -p cbr -e 210 -c 1 -i 344 -a 1 r -t 1.49365 -s 2 -d 3 -p cbr -e 210 -c 1 -i 363 -a 1 + -t 1.49365 -s 3 -d 5 -p cbr -e 210 -c 1 -i 363 -a 1 - -t 1.49365 -s 3 -d 5 -p cbr -e 210 -c 1 -i 363 -a 1 h -t 1.49365 -s 3 -d 5 -p cbr -e 210 -c 1 -i 363 -a 1 - -t 1.49405 -s 2 -d 3 -p cbr -e 210 -c 1 -i 380 -a 1 h -t 1.49405 -s 2 -d 3 -p cbr -e 210 -c 1 -i 380 -a 1 + -t 1.495 -s 1 -d 2 -p cbr -e 210 -c 1 -i 400 -a 1 - -t 1.495 -s 1 -d 2 -p cbr -e 210 -c 1 -i 400 -a 1 h -t 1.495 -s 1 -d 2 -p cbr -e 210 -c 1 -i 400 -a 1 r -t 1.49581 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 338 -a 0 -S 0 -y {14 14} + -t 1.49581 -s 4 -d 3 -p ack -e 40 -c 0 -i 401 -a 0 -S 0 -y {10 10} - -t 1.49581 -s 4 -d 3 -p ack -e 40 -c 0 -i 401 -a 0 -S 0 -y {10 10} h -t 1.49581 -s 4 -d 3 -p ack -e 40 -c 0 -i 401 -a 0 -S 0 -y {-1 -1} r -t 1.49586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 386 -a 1 + -t 1.49586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 386 -a 1 r -t 1.49661 -s 3 -d 5 -p cbr -e 210 -c 1 -i 345 -a 1 r -t 1.49701 -s 2 -d 3 -p cbr -e 210 -c 1 -i 364 -a 1 + -t 1.49701 -s 3 -d 5 -p cbr -e 210 -c 1 -i 364 -a 1 - -t 1.49701 -s 3 -d 5 -p cbr -e 210 -c 1 -i 364 -a 1 h -t 1.49701 -s 3 -d 5 -p cbr -e 210 -c 1 -i 364 -a 1 - -t 1.49741 -s 2 -d 3 -p cbr -e 210 -c 1 -i 381 -a 1 h -t 1.49741 -s 2 -d 3 -p cbr -e 210 -c 1 -i 381 -a 1 + -t 1.49875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 402 -a 1 - -t 1.49875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 402 -a 1 h -t 1.49875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 402 -a 1 r -t 1.49961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 387 -a 1 + -t 1.49961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 387 -a 1 r -t 1.49997 -s 3 -d 5 -p cbr -e 210 -c 1 -i 346 -a 1 r -t 1.50037 -s 2 -d 3 -p cbr -e 210 -c 1 -i 365 -a 1 + -t 1.50037 -s 3 -d 5 -p cbr -e 210 -c 1 -i 365 -a 1 - -t 1.50037 -s 3 -d 5 -p cbr -e 210 -c 1 -i 365 -a 1 h -t 1.50037 -s 3 -d 5 -p cbr -e 210 -c 1 -i 365 -a 1 - -t 1.50077 -s 2 -d 3 -p cbr -e 210 -c 1 -i 382 -a 1 h -t 1.50077 -s 2 -d 3 -p cbr -e 210 -c 1 -i 382 -a 1 + -t 1.5025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 403 -a 1 - -t 1.5025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 403 -a 1 h -t 1.5025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 403 -a 1 r -t 1.50333 -s 3 -d 5 -p cbr -e 210 -c 1 -i 347 -a 1 r -t 1.50336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 388 -a 1 + -t 1.50336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 388 -a 1 r -t 1.50373 -s 2 -d 3 -p cbr -e 210 -c 1 -i 367 -a 1 + -t 1.50373 -s 3 -d 5 -p cbr -e 210 -c 1 -i 367 -a 1 - -t 1.50373 -s 3 -d 5 -p cbr -e 210 -c 1 -i 367 -a 1 h -t 1.50373 -s 3 -d 5 -p cbr -e 210 -c 1 -i 367 -a 1 - -t 1.50413 -s 2 -d 3 -p cbr -e 210 -c 1 -i 383 -a 1 h -t 1.50413 -s 2 -d 3 -p cbr -e 210 -c 1 -i 383 -a 1 + -t 1.50625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 404 -a 1 - -t 1.50625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 404 -a 1 h -t 1.50625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 404 -a 1 r -t 1.50669 -s 3 -d 5 -p cbr -e 210 -c 1 -i 348 -a 1 r -t 1.50709 -s 2 -d 3 -p cbr -e 210 -c 1 -i 368 -a 1 + -t 1.50709 -s 3 -d 5 -p cbr -e 210 -c 1 -i 368 -a 1 - -t 1.50709 -s 3 -d 5 -p cbr -e 210 -c 1 -i 368 -a 1 h -t 1.50709 -s 3 -d 5 -p cbr -e 210 -c 1 -i 368 -a 1 r -t 1.50711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 389 -a 1 + -t 1.50711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 389 -a 1 - -t 1.50749 -s 2 -d 3 -p cbr -e 210 -c 1 -i 385 -a 1 h -t 1.50749 -s 2 -d 3 -p cbr -e 210 -c 1 -i 385 -a 1 + -t 1.51 -s 1 -d 2 -p cbr -e 210 -c 1 -i 405 -a 1 - -t 1.51 -s 1 -d 2 -p cbr -e 210 -c 1 -i 405 -a 1 h -t 1.51 -s 1 -d 2 -p cbr -e 210 -c 1 -i 405 -a 1 r -t 1.51005 -s 3 -d 5 -p cbr -e 210 -c 1 -i 349 -a 1 r -t 1.51045 -s 2 -d 3 -p cbr -e 210 -c 1 -i 369 -a 1 + -t 1.51045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 369 -a 1 - -t 1.51045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 369 -a 1 h -t 1.51045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 369 -a 1 - -t 1.51085 -s 2 -d 3 -p cbr -e 210 -c 1 -i 386 -a 1 h -t 1.51085 -s 2 -d 3 -p cbr -e 210 -c 1 -i 386 -a 1 r -t 1.51086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 390 -a 1 + -t 1.51086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 390 -a 1 r -t 1.51341 -s 3 -d 5 -p cbr -e 210 -c 1 -i 350 -a 1 + -t 1.51375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 406 -a 1 - -t 1.51375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 406 -a 1 h -t 1.51375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 406 -a 1 r -t 1.51381 -s 2 -d 3 -p cbr -e 210 -c 1 -i 370 -a 1 + -t 1.51381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 370 -a 1 - -t 1.51381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 370 -a 1 h -t 1.51381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 370 -a 1 - -t 1.51421 -s 2 -d 3 -p cbr -e 210 -c 1 -i 387 -a 1 h -t 1.51421 -s 2 -d 3 -p cbr -e 210 -c 1 -i 387 -a 1 r -t 1.51461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 391 -a 1 + -t 1.51461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 391 -a 1 r -t 1.51677 -s 3 -d 5 -p cbr -e 210 -c 1 -i 354 -a 1 r -t 1.51717 -s 2 -d 3 -p cbr -e 210 -c 1 -i 371 -a 1 + -t 1.51717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 371 -a 1 - -t 1.51717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 371 -a 1 h -t 1.51717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 371 -a 1 + -t 1.5175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 407 -a 1 - -t 1.5175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 407 -a 1 h -t 1.5175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 407 -a 1 - -t 1.51757 -s 2 -d 3 -p cbr -e 210 -c 1 -i 388 -a 1 h -t 1.51757 -s 2 -d 3 -p cbr -e 210 -c 1 -i 388 -a 1 r -t 1.51836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 392 -a 1 + -t 1.51836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 392 -a 1 r -t 1.52013 -s 3 -d 5 -p cbr -e 210 -c 1 -i 355 -a 1 r -t 1.52053 -s 2 -d 3 -p cbr -e 210 -c 1 -i 372 -a 1 + -t 1.52053 -s 3 -d 5 -p cbr -e 210 -c 1 -i 372 -a 1 - -t 1.52053 -s 3 -d 5 -p cbr -e 210 -c 1 -i 372 -a 1 h -t 1.52053 -s 3 -d 5 -p cbr -e 210 -c 1 -i 372 -a 1 - -t 1.52093 -s 2 -d 3 -p cbr -e 210 -c 1 -i 389 -a 1 h -t 1.52093 -s 2 -d 3 -p cbr -e 210 -c 1 -i 389 -a 1 + -t 1.52125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 408 -a 1 - -t 1.52125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 408 -a 1 h -t 1.52125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 408 -a 1 r -t 1.52211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 393 -a 1 + -t 1.52211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 393 -a 1 r -t 1.52349 -s 3 -d 5 -p cbr -e 210 -c 1 -i 356 -a 1 r -t 1.52389 -s 2 -d 3 -p cbr -e 210 -c 1 -i 373 -a 1 + -t 1.52389 -s 3 -d 5 -p cbr -e 210 -c 1 -i 373 -a 1 - -t 1.52389 -s 3 -d 5 -p cbr -e 210 -c 1 -i 373 -a 1 h -t 1.52389 -s 3 -d 5 -p cbr -e 210 -c 1 -i 373 -a 1 - -t 1.52429 -s 2 -d 3 -p cbr -e 210 -c 1 -i 390 -a 1 h -t 1.52429 -s 2 -d 3 -p cbr -e 210 -c 1 -i 390 -a 1 + -t 1.525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 409 -a 1 - -t 1.525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 409 -a 1 h -t 1.525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 409 -a 1 r -t 1.52501 -s 2 -d 0 -p ack -e 40 -c 0 -i 366 -a 0 -S 0 -y {10 10} r -t 1.52586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 394 -a 1 + -t 1.52586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 394 -a 1 r -t 1.52685 -s 3 -d 5 -p cbr -e 210 -c 1 -i 357 -a 1 r -t 1.52725 -s 2 -d 3 -p cbr -e 210 -c 1 -i 374 -a 1 + -t 1.52725 -s 3 -d 5 -p cbr -e 210 -c 1 -i 374 -a 1 - -t 1.52725 -s 3 -d 5 -p cbr -e 210 -c 1 -i 374 -a 1 h -t 1.52725 -s 3 -d 5 -p cbr -e 210 -c 1 -i 374 -a 1 - -t 1.52765 -s 2 -d 3 -p cbr -e 210 -c 1 -i 391 -a 1 h -t 1.52765 -s 2 -d 3 -p cbr -e 210 -c 1 -i 391 -a 1 + -t 1.52875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 410 -a 1 - -t 1.52875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 410 -a 1 h -t 1.52875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 410 -a 1 r -t 1.52961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 395 -a 1 + -t 1.52961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 395 -a 1 r -t 1.53021 -s 3 -d 5 -p cbr -e 210 -c 1 -i 358 -a 1 r -t 1.53061 -s 2 -d 3 -p cbr -e 210 -c 1 -i 375 -a 1 + -t 1.53061 -s 3 -d 5 -p cbr -e 210 -c 1 -i 375 -a 1 - -t 1.53061 -s 3 -d 5 -p cbr -e 210 -c 1 -i 375 -a 1 h -t 1.53061 -s 3 -d 5 -p cbr -e 210 -c 1 -i 375 -a 1 - -t 1.53101 -s 2 -d 3 -p cbr -e 210 -c 1 -i 392 -a 1 h -t 1.53101 -s 2 -d 3 -p cbr -e 210 -c 1 -i 392 -a 1 + -t 1.5325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 411 -a 1 - -t 1.5325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 411 -a 1 h -t 1.5325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 411 -a 1 r -t 1.53336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 396 -a 1 + -t 1.53336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 396 -a 1 r -t 1.53357 -s 3 -d 5 -p cbr -e 210 -c 1 -i 359 -a 1 r -t 1.53397 -s 2 -d 3 -p cbr -e 210 -c 1 -i 376 -a 1 + -t 1.53397 -s 3 -d 5 -p cbr -e 210 -c 1 -i 376 -a 1 - -t 1.53397 -s 3 -d 5 -p cbr -e 210 -c 1 -i 376 -a 1 h -t 1.53397 -s 3 -d 5 -p cbr -e 210 -c 1 -i 376 -a 1 - -t 1.53437 -s 2 -d 3 -p cbr -e 210 -c 1 -i 393 -a 1 h -t 1.53437 -s 2 -d 3 -p cbr -e 210 -c 1 -i 393 -a 1 + -t 1.53625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 412 -a 1 - -t 1.53625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 412 -a 1 h -t 1.53625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 412 -a 1 r -t 1.53693 -s 3 -d 5 -p cbr -e 210 -c 1 -i 360 -a 1 r -t 1.53711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 397 -a 1 + -t 1.53711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 397 -a 1 r -t 1.53733 -s 2 -d 3 -p cbr -e 210 -c 1 -i 377 -a 1 + -t 1.53733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 377 -a 1 - -t 1.53733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 377 -a 1 h -t 1.53733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 377 -a 1 r -t 1.53741 -s 3 -d 2 -p ack -e 40 -c 0 -i 384 -a 0 -S 0 -y {10 10} + -t 1.53741 -s 2 -d 0 -p ack -e 40 -c 0 -i 384 -a 0 -S 0 -y {10 10} - -t 1.53741 -s 2 -d 0 -p ack -e 40 -c 0 -i 384 -a 0 -S 0 -f 0 -m 1 -y {10 10} h -t 1.53741 -s 2 -d 0 -p ack -e 40 -c 0 -i 384 -a 0 -S 0 -y {-1 -1} - -t 1.53773 -s 2 -d 3 -p cbr -e 210 -c 1 -i 394 -a 1 h -t 1.53773 -s 2 -d 3 -p cbr -e 210 -c 1 -i 394 -a 1 + -t 1.54 -s 1 -d 2 -p cbr -e 210 -c 1 -i 413 -a 1 - -t 1.54 -s 1 -d 2 -p cbr -e 210 -c 1 -i 413 -a 1 h -t 1.54 -s 1 -d 2 -p cbr -e 210 -c 1 -i 413 -a 1 r -t 1.54029 -s 3 -d 5 -p cbr -e 210 -c 1 -i 361 -a 1 r -t 1.54069 -s 2 -d 3 -p cbr -e 210 -c 1 -i 378 -a 1 + -t 1.54069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 378 -a 1 - -t 1.54069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 378 -a 1 h -t 1.54069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 378 -a 1 r -t 1.54086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 398 -a 1 + -t 1.54086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 398 -a 1 - -t 1.54109 -s 2 -d 3 -p cbr -e 210 -c 1 -i 395 -a 1 h -t 1.54109 -s 2 -d 3 -p cbr -e 210 -c 1 -i 395 -a 1 r -t 1.54365 -s 3 -d 5 -p cbr -e 210 -c 1 -i 362 -a 1 + -t 1.54375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 414 -a 1 - -t 1.54375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 414 -a 1 h -t 1.54375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 414 -a 1 r -t 1.54405 -s 2 -d 3 -p cbr -e 210 -c 1 -i 379 -a 1 + -t 1.54405 -s 3 -d 5 -p cbr -e 210 -c 1 -i 379 -a 1 - -t 1.54405 -s 3 -d 5 -p cbr -e 210 -c 1 -i 379 -a 1 h -t 1.54405 -s 3 -d 5 -p cbr -e 210 -c 1 -i 379 -a 1 - -t 1.54445 -s 2 -d 3 -p cbr -e 210 -c 1 -i 396 -a 1 h -t 1.54445 -s 2 -d 3 -p cbr -e 210 -c 1 -i 396 -a 1 r -t 1.54461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 399 -a 1 + -t 1.54461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 399 -a 1 r -t 1.54645 -s 4 -d 3 -p ack -e 40 -c 0 -i 401 -a 0 -S 0 -y {10 10} + -t 1.54645 -s 3 -d 2 -p ack -e 40 -c 0 -i 401 -a 0 -S 0 -y {10 10} - -t 1.54645 -s 3 -d 2 -p ack -e 40 -c 0 -i 401 -a 0 -S 0 -y {10 10} h -t 1.54645 -s 3 -d 2 -p ack -e 40 -c 0 -i 401 -a 0 -S 0 -y {-1 -1} r -t 1.54701 -s 3 -d 5 -p cbr -e 210 -c 1 -i 363 -a 1 r -t 1.54741 -s 2 -d 3 -p cbr -e 210 -c 1 -i 380 -a 1 + -t 1.54741 -s 3 -d 5 -p cbr -e 210 -c 1 -i 380 -a 1 - -t 1.54741 -s 3 -d 5 -p cbr -e 210 -c 1 -i 380 -a 1 h -t 1.54741 -s 3 -d 5 -p cbr -e 210 -c 1 -i 380 -a 1 + -t 1.5475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 415 -a 1 - -t 1.5475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 415 -a 1 h -t 1.5475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 415 -a 1 - -t 1.54781 -s 2 -d 3 -p cbr -e 210 -c 1 -i 397 -a 1 h -t 1.54781 -s 2 -d 3 -p cbr -e 210 -c 1 -i 397 -a 1 r -t 1.54836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 400 -a 1 + -t 1.54836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 400 -a 1 r -t 1.55037 -s 3 -d 5 -p cbr -e 210 -c 1 -i 364 -a 1 r -t 1.55077 -s 2 -d 3 -p cbr -e 210 -c 1 -i 381 -a 1 + -t 1.55077 -s 3 -d 5 -p cbr -e 210 -c 1 -i 381 -a 1 - -t 1.55077 -s 3 -d 5 -p cbr -e 210 -c 1 -i 381 -a 1 h -t 1.55077 -s 3 -d 5 -p cbr -e 210 -c 1 -i 381 -a 1 - -t 1.55117 -s 2 -d 3 -p cbr -e 210 -c 1 -i 398 -a 1 h -t 1.55117 -s 2 -d 3 -p cbr -e 210 -c 1 -i 398 -a 1 + -t 1.55125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 416 -a 1 - -t 1.55125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 416 -a 1 h -t 1.55125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 416 -a 1 r -t 1.55211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 402 -a 1 + -t 1.55211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 402 -a 1 r -t 1.55373 -s 3 -d 5 -p cbr -e 210 -c 1 -i 365 -a 1 r -t 1.55413 -s 2 -d 3 -p cbr -e 210 -c 1 -i 382 -a 1 + -t 1.55413 -s 3 -d 5 -p cbr -e 210 -c 1 -i 382 -a 1 - -t 1.55413 -s 3 -d 5 -p cbr -e 210 -c 1 -i 382 -a 1 h -t 1.55413 -s 3 -d 5 -p cbr -e 210 -c 1 -i 382 -a 1 - -t 1.55453 -s 2 -d 3 -p cbr -e 210 -c 1 -i 399 -a 1 h -t 1.55453 -s 2 -d 3 -p cbr -e 210 -c 1 -i 399 -a 1 + -t 1.555 -s 1 -d 2 -p cbr -e 210 -c 1 -i 417 -a 1 - -t 1.555 -s 1 -d 2 -p cbr -e 210 -c 1 -i 417 -a 1 h -t 1.555 -s 1 -d 2 -p cbr -e 210 -c 1 -i 417 -a 1 r -t 1.55586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 403 -a 1 + -t 1.55586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 403 -a 1 r -t 1.55709 -s 3 -d 5 -p cbr -e 210 -c 1 -i 367 -a 1 r -t 1.55749 -s 2 -d 3 -p cbr -e 210 -c 1 -i 383 -a 1 + -t 1.55749 -s 3 -d 5 -p cbr -e 210 -c 1 -i 383 -a 1 - -t 1.55749 -s 3 -d 5 -p cbr -e 210 -c 1 -i 383 -a 1 h -t 1.55749 -s 3 -d 5 -p cbr -e 210 -c 1 -i 383 -a 1 - -t 1.55789 -s 2 -d 3 -p cbr -e 210 -c 1 -i 400 -a 1 h -t 1.55789 -s 2 -d 3 -p cbr -e 210 -c 1 -i 400 -a 1 + -t 1.55875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 418 -a 1 - -t 1.55875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 418 -a 1 h -t 1.55875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 418 -a 1 r -t 1.55961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 404 -a 1 + -t 1.55961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 404 -a 1 r -t 1.56045 -s 3 -d 5 -p cbr -e 210 -c 1 -i 368 -a 1 r -t 1.56085 -s 2 -d 3 -p cbr -e 210 -c 1 -i 385 -a 1 + -t 1.56085 -s 3 -d 5 -p cbr -e 210 -c 1 -i 385 -a 1 - -t 1.56085 -s 3 -d 5 -p cbr -e 210 -c 1 -i 385 -a 1 h -t 1.56085 -s 3 -d 5 -p cbr -e 210 -c 1 -i 385 -a 1 - -t 1.56125 -s 2 -d 3 -p cbr -e 210 -c 1 -i 402 -a 1 h -t 1.56125 -s 2 -d 3 -p cbr -e 210 -c 1 -i 402 -a 1 + -t 1.5625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 419 -a 1 - -t 1.5625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 419 -a 1 h -t 1.5625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 419 -a 1 r -t 1.56336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 405 -a 1 + -t 1.56336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 405 -a 1 r -t 1.56381 -s 3 -d 5 -p cbr -e 210 -c 1 -i 369 -a 1 r -t 1.56421 -s 2 -d 3 -p cbr -e 210 -c 1 -i 386 -a 1 + -t 1.56421 -s 3 -d 5 -p cbr -e 210 -c 1 -i 386 -a 1 - -t 1.56421 -s 3 -d 5 -p cbr -e 210 -c 1 -i 386 -a 1 h -t 1.56421 -s 3 -d 5 -p cbr -e 210 -c 1 -i 386 -a 1 - -t 1.56461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 403 -a 1 h -t 1.56461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 403 -a 1 + -t 1.56625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 420 -a 1 - -t 1.56625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 420 -a 1 h -t 1.56625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 420 -a 1 r -t 1.56711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 406 -a 1 + -t 1.56711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 406 -a 1 r -t 1.56717 -s 3 -d 5 -p cbr -e 210 -c 1 -i 370 -a 1 r -t 1.56757 -s 2 -d 3 -p cbr -e 210 -c 1 -i 387 -a 1 + -t 1.56757 -s 3 -d 5 -p cbr -e 210 -c 1 -i 387 -a 1 - -t 1.56757 -s 3 -d 5 -p cbr -e 210 -c 1 -i 387 -a 1 h -t 1.56757 -s 3 -d 5 -p cbr -e 210 -c 1 -i 387 -a 1 - -t 1.56797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 404 -a 1 h -t 1.56797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 404 -a 1 + -t 1.57 -s 1 -d 2 -p cbr -e 210 -c 1 -i 421 -a 1 - -t 1.57 -s 1 -d 2 -p cbr -e 210 -c 1 -i 421 -a 1 h -t 1.57 -s 1 -d 2 -p cbr -e 210 -c 1 -i 421 -a 1 r -t 1.57053 -s 3 -d 5 -p cbr -e 210 -c 1 -i 371 -a 1 r -t 1.57086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 407 -a 1 + -t 1.57086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 407 -a 1 r -t 1.57093 -s 2 -d 3 -p cbr -e 210 -c 1 -i 388 -a 1 + -t 1.57093 -s 3 -d 5 -p cbr -e 210 -c 1 -i 388 -a 1 - -t 1.57093 -s 3 -d 5 -p cbr -e 210 -c 1 -i 388 -a 1 h -t 1.57093 -s 3 -d 5 -p cbr -e 210 -c 1 -i 388 -a 1 - -t 1.57133 -s 2 -d 3 -p cbr -e 210 -c 1 -i 405 -a 1 h -t 1.57133 -s 2 -d 3 -p cbr -e 210 -c 1 -i 405 -a 1 + -t 1.57375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 422 -a 1 - -t 1.57375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 422 -a 1 h -t 1.57375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 422 -a 1 r -t 1.57389 -s 3 -d 5 -p cbr -e 210 -c 1 -i 372 -a 1 r -t 1.57429 -s 2 -d 3 -p cbr -e 210 -c 1 -i 389 -a 1 + -t 1.57429 -s 3 -d 5 -p cbr -e 210 -c 1 -i 389 -a 1 - -t 1.57429 -s 3 -d 5 -p cbr -e 210 -c 1 -i 389 -a 1 h -t 1.57429 -s 3 -d 5 -p cbr -e 210 -c 1 -i 389 -a 1 r -t 1.57461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 408 -a 1 + -t 1.57461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 408 -a 1 - -t 1.57469 -s 2 -d 3 -p cbr -e 210 -c 1 -i 406 -a 1 h -t 1.57469 -s 2 -d 3 -p cbr -e 210 -c 1 -i 406 -a 1 r -t 1.57725 -s 3 -d 5 -p cbr -e 210 -c 1 -i 373 -a 1 + -t 1.5775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 423 -a 1 - -t 1.5775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 423 -a 1 h -t 1.5775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 423 -a 1 r -t 1.57765 -s 2 -d 3 -p cbr -e 210 -c 1 -i 390 -a 1 + -t 1.57765 -s 3 -d 5 -p cbr -e 210 -c 1 -i 390 -a 1 - -t 1.57765 -s 3 -d 5 -p cbr -e 210 -c 1 -i 390 -a 1 h -t 1.57765 -s 3 -d 5 -p cbr -e 210 -c 1 -i 390 -a 1 - -t 1.57805 -s 2 -d 3 -p cbr -e 210 -c 1 -i 407 -a 1 h -t 1.57805 -s 2 -d 3 -p cbr -e 210 -c 1 -i 407 -a 1 r -t 1.57836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 409 -a 1 + -t 1.57836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 409 -a 1 r -t 1.58061 -s 3 -d 5 -p cbr -e 210 -c 1 -i 374 -a 1 r -t 1.58101 -s 2 -d 3 -p cbr -e 210 -c 1 -i 391 -a 1 + -t 1.58101 -s 3 -d 5 -p cbr -e 210 -c 1 -i 391 -a 1 - -t 1.58101 -s 3 -d 5 -p cbr -e 210 -c 1 -i 391 -a 1 h -t 1.58101 -s 3 -d 5 -p cbr -e 210 -c 1 -i 391 -a 1 + -t 1.58125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 424 -a 1 - -t 1.58125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 424 -a 1 h -t 1.58125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 424 -a 1 - -t 1.58141 -s 2 -d 3 -p cbr -e 210 -c 1 -i 408 -a 1 h -t 1.58141 -s 2 -d 3 -p cbr -e 210 -c 1 -i 408 -a 1 r -t 1.58211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 410 -a 1 + -t 1.58211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 410 -a 1 r -t 1.58397 -s 3 -d 5 -p cbr -e 210 -c 1 -i 375 -a 1 r -t 1.58437 -s 2 -d 3 -p cbr -e 210 -c 1 -i 392 -a 1 + -t 1.58437 -s 3 -d 5 -p cbr -e 210 -c 1 -i 392 -a 1 - -t 1.58437 -s 3 -d 5 -p cbr -e 210 -c 1 -i 392 -a 1 h -t 1.58437 -s 3 -d 5 -p cbr -e 210 -c 1 -i 392 -a 1 - -t 1.58477 -s 2 -d 3 -p cbr -e 210 -c 1 -i 409 -a 1 h -t 1.58477 -s 2 -d 3 -p cbr -e 210 -c 1 -i 409 -a 1 + -t 1.585 -s 1 -d 2 -p cbr -e 210 -c 1 -i 425 -a 1 - -t 1.585 -s 1 -d 2 -p cbr -e 210 -c 1 -i 425 -a 1 h -t 1.585 -s 1 -d 2 -p cbr -e 210 -c 1 -i 425 -a 1 r -t 1.58586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 411 -a 1 + -t 1.58586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 411 -a 1 r -t 1.58733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 376 -a 1 r -t 1.58773 -s 2 -d 3 -p cbr -e 210 -c 1 -i 393 -a 1 + -t 1.58773 -s 3 -d 5 -p cbr -e 210 -c 1 -i 393 -a 1 - -t 1.58773 -s 3 -d 5 -p cbr -e 210 -c 1 -i 393 -a 1 h -t 1.58773 -s 3 -d 5 -p cbr -e 210 -c 1 -i 393 -a 1 r -t 1.58805 -s 2 -d 0 -p ack -e 40 -c 0 -i 384 -a 0 -S 0 -y {10 10} - -t 1.58813 -s 2 -d 3 -p cbr -e 210 -c 1 -i 410 -a 1 h -t 1.58813 -s 2 -d 3 -p cbr -e 210 -c 1 -i 410 -a 1 + -t 1.58875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 426 -a 1 - -t 1.58875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 426 -a 1 h -t 1.58875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 426 -a 1 r -t 1.58961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 412 -a 1 + -t 1.58961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 412 -a 1 r -t 1.59069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 377 -a 1 r -t 1.59109 -s 2 -d 3 -p cbr -e 210 -c 1 -i 394 -a 1 + -t 1.59109 -s 3 -d 5 -p cbr -e 210 -c 1 -i 394 -a 1 - -t 1.59109 -s 3 -d 5 -p cbr -e 210 -c 1 -i 394 -a 1 h -t 1.59109 -s 3 -d 5 -p cbr -e 210 -c 1 -i 394 -a 1 - -t 1.59149 -s 2 -d 3 -p cbr -e 210 -c 1 -i 411 -a 1 h -t 1.59149 -s 2 -d 3 -p cbr -e 210 -c 1 -i 411 -a 1 + -t 1.5925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 427 -a 1 - -t 1.5925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 427 -a 1 h -t 1.5925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 427 -a 1 r -t 1.59336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 413 -a 1 + -t 1.59336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 413 -a 1 r -t 1.59405 -s 3 -d 5 -p cbr -e 210 -c 1 -i 378 -a 1 r -t 1.59445 -s 2 -d 3 -p cbr -e 210 -c 1 -i 395 -a 1 + -t 1.59445 -s 3 -d 5 -p cbr -e 210 -c 1 -i 395 -a 1 - -t 1.59445 -s 3 -d 5 -p cbr -e 210 -c 1 -i 395 -a 1 h -t 1.59445 -s 3 -d 5 -p cbr -e 210 -c 1 -i 395 -a 1 - -t 1.59485 -s 2 -d 3 -p cbr -e 210 -c 1 -i 412 -a 1 h -t 1.59485 -s 2 -d 3 -p cbr -e 210 -c 1 -i 412 -a 1 + -t 1.59625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 428 -a 1 - -t 1.59625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 428 -a 1 h -t 1.59625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 428 -a 1 r -t 1.59709 -s 3 -d 2 -p ack -e 40 -c 0 -i 401 -a 0 -S 0 -y {10 10} + -t 1.59709 -s 2 -d 0 -p ack -e 40 -c 0 -i 401 -a 0 -S 0 -y {10 10} - -t 1.59709 -s 2 -d 0 -p ack -e 40 -c 0 -i 401 -a 0 -S 0 -f 0 -m 1 -y {10 10} h -t 1.59709 -s 2 -d 0 -p ack -e 40 -c 0 -i 401 -a 0 -S 0 -y {-1 -1} r -t 1.59711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 414 -a 1 + -t 1.59711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 414 -a 1 r -t 1.59741 -s 3 -d 5 -p cbr -e 210 -c 1 -i 379 -a 1 r -t 1.59781 -s 2 -d 3 -p cbr -e 210 -c 1 -i 396 -a 1 + -t 1.59781 -s 3 -d 5 -p cbr -e 210 -c 1 -i 396 -a 1 - -t 1.59781 -s 3 -d 5 -p cbr -e 210 -c 1 -i 396 -a 1 h -t 1.59781 -s 3 -d 5 -p cbr -e 210 -c 1 -i 396 -a 1 - -t 1.59821 -s 2 -d 3 -p cbr -e 210 -c 1 -i 413 -a 1 h -t 1.59821 -s 2 -d 3 -p cbr -e 210 -c 1 -i 413 -a 1 + -t 1.6 -s 1 -d 2 -p cbr -e 210 -c 1 -i 429 -a 1 - -t 1.6 -s 1 -d 2 -p cbr -e 210 -c 1 -i 429 -a 1 h -t 1.6 -s 1 -d 2 -p cbr -e 210 -c 1 -i 429 -a 1 r -t 1.60077 -s 3 -d 5 -p cbr -e 210 -c 1 -i 380 -a 1 r -t 1.60086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 415 -a 1 + -t 1.60086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 415 -a 1 r -t 1.60117 -s 2 -d 3 -p cbr -e 210 -c 1 -i 397 -a 1 + -t 1.60117 -s 3 -d 5 -p cbr -e 210 -c 1 -i 397 -a 1 - -t 1.60117 -s 3 -d 5 -p cbr -e 210 -c 1 -i 397 -a 1 h -t 1.60117 -s 3 -d 5 -p cbr -e 210 -c 1 -i 397 -a 1 - -t 1.60157 -s 2 -d 3 -p cbr -e 210 -c 1 -i 414 -a 1 h -t 1.60157 -s 2 -d 3 -p cbr -e 210 -c 1 -i 414 -a 1 + -t 1.60375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 430 -a 1 - -t 1.60375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 430 -a 1 h -t 1.60375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 430 -a 1 r -t 1.60413 -s 3 -d 5 -p cbr -e 210 -c 1 -i 381 -a 1 r -t 1.60453 -s 2 -d 3 -p cbr -e 210 -c 1 -i 398 -a 1 + -t 1.60453 -s 3 -d 5 -p cbr -e 210 -c 1 -i 398 -a 1 - -t 1.60453 -s 3 -d 5 -p cbr -e 210 -c 1 -i 398 -a 1 h -t 1.60453 -s 3 -d 5 -p cbr -e 210 -c 1 -i 398 -a 1 r -t 1.60461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 416 -a 1 + -t 1.60461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 416 -a 1 - -t 1.60493 -s 2 -d 3 -p cbr -e 210 -c 1 -i 415 -a 1 h -t 1.60493 -s 2 -d 3 -p cbr -e 210 -c 1 -i 415 -a 1 r -t 1.60749 -s 3 -d 5 -p cbr -e 210 -c 1 -i 382 -a 1 + -t 1.6075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 431 -a 1 - -t 1.6075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 431 -a 1 h -t 1.6075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 431 -a 1 r -t 1.60789 -s 2 -d 3 -p cbr -e 210 -c 1 -i 399 -a 1 + -t 1.60789 -s 3 -d 5 -p cbr -e 210 -c 1 -i 399 -a 1 - -t 1.60789 -s 3 -d 5 -p cbr -e 210 -c 1 -i 399 -a 1 h -t 1.60789 -s 3 -d 5 -p cbr -e 210 -c 1 -i 399 -a 1 - -t 1.60829 -s 2 -d 3 -p cbr -e 210 -c 1 -i 416 -a 1 h -t 1.60829 -s 2 -d 3 -p cbr -e 210 -c 1 -i 416 -a 1 r -t 1.60836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 417 -a 1 + -t 1.60836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 417 -a 1 r -t 1.61085 -s 3 -d 5 -p cbr -e 210 -c 1 -i 383 -a 1 + -t 1.61125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 432 -a 1 - -t 1.61125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 432 -a 1 h -t 1.61125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 432 -a 1 r -t 1.61125 -s 2 -d 3 -p cbr -e 210 -c 1 -i 400 -a 1 + -t 1.61125 -s 3 -d 5 -p cbr -e 210 -c 1 -i 400 -a 1 - -t 1.61125 -s 3 -d 5 -p cbr -e 210 -c 1 -i 400 -a 1 h -t 1.61125 -s 3 -d 5 -p cbr -e 210 -c 1 -i 400 -a 1 - -t 1.61165 -s 2 -d 3 -p cbr -e 210 -c 1 -i 417 -a 1 h -t 1.61165 -s 2 -d 3 -p cbr -e 210 -c 1 -i 417 -a 1 r -t 1.61211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 418 -a 1 + -t 1.61211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 418 -a 1 r -t 1.61421 -s 3 -d 5 -p cbr -e 210 -c 1 -i 385 -a 1 r -t 1.61461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 402 -a 1 + -t 1.61461 -s 3 -d 5 -p cbr -e 210 -c 1 -i 402 -a 1 - -t 1.61461 -s 3 -d 5 -p cbr -e 210 -c 1 -i 402 -a 1 h -t 1.61461 -s 3 -d 5 -p cbr -e 210 -c 1 -i 402 -a 1 + -t 1.615 -s 1 -d 2 -p cbr -e 210 -c 1 -i 433 -a 1 - -t 1.615 -s 1 -d 2 -p cbr -e 210 -c 1 -i 433 -a 1 h -t 1.615 -s 1 -d 2 -p cbr -e 210 -c 1 -i 433 -a 1 - -t 1.61501 -s 2 -d 3 -p cbr -e 210 -c 1 -i 418 -a 1 h -t 1.61501 -s 2 -d 3 -p cbr -e 210 -c 1 -i 418 -a 1 r -t 1.61586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 419 -a 1 + -t 1.61586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 419 -a 1 r -t 1.61757 -s 3 -d 5 -p cbr -e 210 -c 1 -i 386 -a 1 r -t 1.61797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 403 -a 1 + -t 1.61797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 403 -a 1 - -t 1.61797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 403 -a 1 h -t 1.61797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 403 -a 1 - -t 1.61837 -s 2 -d 3 -p cbr -e 210 -c 1 -i 419 -a 1 h -t 1.61837 -s 2 -d 3 -p cbr -e 210 -c 1 -i 419 -a 1 + -t 1.61875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 434 -a 1 - -t 1.61875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 434 -a 1 h -t 1.61875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 434 -a 1 r -t 1.61961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 420 -a 1 + -t 1.61961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 420 -a 1 r -t 1.62093 -s 3 -d 5 -p cbr -e 210 -c 1 -i 387 -a 1 r -t 1.62133 -s 2 -d 3 -p cbr -e 210 -c 1 -i 404 -a 1 + -t 1.62133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 404 -a 1 - -t 1.62133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 404 -a 1 h -t 1.62133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 404 -a 1 - -t 1.62173 -s 2 -d 3 -p cbr -e 210 -c 1 -i 420 -a 1 h -t 1.62173 -s 2 -d 3 -p cbr -e 210 -c 1 -i 420 -a 1 + -t 1.6225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 435 -a 1 - -t 1.6225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 435 -a 1 h -t 1.6225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 435 -a 1 r -t 1.62336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 421 -a 1 + -t 1.62336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 421 -a 1 r -t 1.62429 -s 3 -d 5 -p cbr -e 210 -c 1 -i 388 -a 1 r -t 1.62469 -s 2 -d 3 -p cbr -e 210 -c 1 -i 405 -a 1 + -t 1.62469 -s 3 -d 5 -p cbr -e 210 -c 1 -i 405 -a 1 - -t 1.62469 -s 3 -d 5 -p cbr -e 210 -c 1 -i 405 -a 1 h -t 1.62469 -s 3 -d 5 -p cbr -e 210 -c 1 -i 405 -a 1 - -t 1.62509 -s 2 -d 3 -p cbr -e 210 -c 1 -i 421 -a 1 h -t 1.62509 -s 2 -d 3 -p cbr -e 210 -c 1 -i 421 -a 1 + -t 1.62625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 436 -a 1 - -t 1.62625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 436 -a 1 h -t 1.62625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 436 -a 1 r -t 1.62711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 422 -a 1 + -t 1.62711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 422 -a 1 r -t 1.62765 -s 3 -d 5 -p cbr -e 210 -c 1 -i 389 -a 1 r -t 1.62805 -s 2 -d 3 -p cbr -e 210 -c 1 -i 406 -a 1 + -t 1.62805 -s 3 -d 5 -p cbr -e 210 -c 1 -i 406 -a 1 - -t 1.62805 -s 3 -d 5 -p cbr -e 210 -c 1 -i 406 -a 1 h -t 1.62805 -s 3 -d 5 -p cbr -e 210 -c 1 -i 406 -a 1 - -t 1.62845 -s 2 -d 3 -p cbr -e 210 -c 1 -i 422 -a 1 h -t 1.62845 -s 2 -d 3 -p cbr -e 210 -c 1 -i 422 -a 1 + -t 1.63 -s 1 -d 2 -p cbr -e 210 -c 1 -i 437 -a 1 - -t 1.63 -s 1 -d 2 -p cbr -e 210 -c 1 -i 437 -a 1 h -t 1.63 -s 1 -d 2 -p cbr -e 210 -c 1 -i 437 -a 1 r -t 1.63086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 423 -a 1 + -t 1.63086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 423 -a 1 r -t 1.63101 -s 3 -d 5 -p cbr -e 210 -c 1 -i 390 -a 1 r -t 1.63141 -s 2 -d 3 -p cbr -e 210 -c 1 -i 407 -a 1 + -t 1.63141 -s 3 -d 5 -p cbr -e 210 -c 1 -i 407 -a 1 - -t 1.63141 -s 3 -d 5 -p cbr -e 210 -c 1 -i 407 -a 1 h -t 1.63141 -s 3 -d 5 -p cbr -e 210 -c 1 -i 407 -a 1 - -t 1.63181 -s 2 -d 3 -p cbr -e 210 -c 1 -i 423 -a 1 h -t 1.63181 -s 2 -d 3 -p cbr -e 210 -c 1 -i 423 -a 1 + -t 1.63375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 438 -a 1 - -t 1.63375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 438 -a 1 h -t 1.63375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 438 -a 1 r -t 1.63437 -s 3 -d 5 -p cbr -e 210 -c 1 -i 391 -a 1 r -t 1.63461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 424 -a 1 + -t 1.63461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 424 -a 1 r -t 1.63477 -s 2 -d 3 -p cbr -e 210 -c 1 -i 408 -a 1 + -t 1.63477 -s 3 -d 5 -p cbr -e 210 -c 1 -i 408 -a 1 - -t 1.63477 -s 3 -d 5 -p cbr -e 210 -c 1 -i 408 -a 1 h -t 1.63477 -s 3 -d 5 -p cbr -e 210 -c 1 -i 408 -a 1 - -t 1.63517 -s 2 -d 3 -p cbr -e 210 -c 1 -i 424 -a 1 h -t 1.63517 -s 2 -d 3 -p cbr -e 210 -c 1 -i 424 -a 1 + -t 1.6375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 439 -a 1 - -t 1.6375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 439 -a 1 h -t 1.6375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 439 -a 1 r -t 1.63773 -s 3 -d 5 -p cbr -e 210 -c 1 -i 392 -a 1 r -t 1.63813 -s 2 -d 3 -p cbr -e 210 -c 1 -i 409 -a 1 + -t 1.63813 -s 3 -d 5 -p cbr -e 210 -c 1 -i 409 -a 1 - -t 1.63813 -s 3 -d 5 -p cbr -e 210 -c 1 -i 409 -a 1 h -t 1.63813 -s 3 -d 5 -p cbr -e 210 -c 1 -i 409 -a 1 r -t 1.63836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 425 -a 1 + -t 1.63836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 425 -a 1 - -t 1.63853 -s 2 -d 3 -p cbr -e 210 -c 1 -i 425 -a 1 h -t 1.63853 -s 2 -d 3 -p cbr -e 210 -c 1 -i 425 -a 1 r -t 1.64109 -s 3 -d 5 -p cbr -e 210 -c 1 -i 393 -a 1 + -t 1.64125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 440 -a 1 - -t 1.64125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 440 -a 1 h -t 1.64125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 440 -a 1 r -t 1.64149 -s 2 -d 3 -p cbr -e 210 -c 1 -i 410 -a 1 + -t 1.64149 -s 3 -d 5 -p cbr -e 210 -c 1 -i 410 -a 1 - -t 1.64149 -s 3 -d 5 -p cbr -e 210 -c 1 -i 410 -a 1 h -t 1.64149 -s 3 -d 5 -p cbr -e 210 -c 1 -i 410 -a 1 r -t 1.64211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 426 -a 1 + -t 1.64211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 426 -a 1 - -t 1.64211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 426 -a 1 h -t 1.64211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 426 -a 1 r -t 1.64445 -s 3 -d 5 -p cbr -e 210 -c 1 -i 394 -a 1 r -t 1.64485 -s 2 -d 3 -p cbr -e 210 -c 1 -i 411 -a 1 + -t 1.64485 -s 3 -d 5 -p cbr -e 210 -c 1 -i 411 -a 1 - -t 1.64485 -s 3 -d 5 -p cbr -e 210 -c 1 -i 411 -a 1 h -t 1.64485 -s 3 -d 5 -p cbr -e 210 -c 1 -i 411 -a 1 + -t 1.645 -s 1 -d 2 -p cbr -e 210 -c 1 -i 441 -a 1 - -t 1.645 -s 1 -d 2 -p cbr -e 210 -c 1 -i 441 -a 1 h -t 1.645 -s 1 -d 2 -p cbr -e 210 -c 1 -i 441 -a 1 r -t 1.64586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 427 -a 1 + -t 1.64586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 427 -a 1 - -t 1.64586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 427 -a 1 h -t 1.64586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 427 -a 1 r -t 1.64773 -s 2 -d 0 -p ack -e 40 -c 0 -i 401 -a 0 -S 0 -y {10 10} + -t 1.64773 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 442 -a 0 -S 0 -f 0 -m 0 -y {11 11} - -t 1.64773 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 442 -a 0 -S 0 -y {11 11} h -t 1.64773 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 442 -a 0 -S 0 -y {-1 -1} + -t 1.64773 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 443 -a 0 -S 0 -f 0 -m 0 -y {12 12} + -t 1.64773 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 444 -a 0 -S 0 -f 0 -m 0 -y {13 13} + -t 1.64773 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 445 -a 0 -S 0 -f 0 -m 0 -y {14 14} r -t 1.64781 -s 3 -d 5 -p cbr -e 210 -c 1 -i 395 -a 1 r -t 1.64821 -s 2 -d 3 -p cbr -e 210 -c 1 -i 412 -a 1 + -t 1.64821 -s 3 -d 5 -p cbr -e 210 -c 1 -i 412 -a 1 - -t 1.64821 -s 3 -d 5 -p cbr -e 210 -c 1 -i 412 -a 1 h -t 1.64821 -s 3 -d 5 -p cbr -e 210 -c 1 -i 412 -a 1 + -t 1.64875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 446 -a 1 - -t 1.64875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 446 -a 1 h -t 1.64875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 446 -a 1 r -t 1.64961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 428 -a 1 + -t 1.64961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 428 -a 1 - -t 1.64961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 428 -a 1 h -t 1.64961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 428 -a 1 r -t 1.65117 -s 3 -d 5 -p cbr -e 210 -c 1 -i 396 -a 1 r -t 1.65157 -s 2 -d 3 -p cbr -e 210 -c 1 -i 413 -a 1 + -t 1.65157 -s 3 -d 5 -p cbr -e 210 -c 1 -i 413 -a 1 - -t 1.65157 -s 3 -d 5 -p cbr -e 210 -c 1 -i 413 -a 1 h -t 1.65157 -s 3 -d 5 -p cbr -e 210 -c 1 -i 413 -a 1 + -t 1.6525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 447 -a 1 - -t 1.6525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 447 -a 1 h -t 1.6525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 447 -a 1 r -t 1.65336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 429 -a 1 + -t 1.65336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 429 -a 1 - -t 1.65336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 429 -a 1 h -t 1.65336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 429 -a 1 r -t 1.65453 -s 3 -d 5 -p cbr -e 210 -c 1 -i 397 -a 1 r -t 1.65493 -s 2 -d 3 -p cbr -e 210 -c 1 -i 414 -a 1 + -t 1.65493 -s 3 -d 5 -p cbr -e 210 -c 1 -i 414 -a 1 - -t 1.65493 -s 3 -d 5 -p cbr -e 210 -c 1 -i 414 -a 1 h -t 1.65493 -s 3 -d 5 -p cbr -e 210 -c 1 -i 414 -a 1 + -t 1.65625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 448 -a 1 - -t 1.65625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 448 -a 1 h -t 1.65625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 448 -a 1 r -t 1.65711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 430 -a 1 + -t 1.65711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 430 -a 1 - -t 1.65711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 430 -a 1 h -t 1.65711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 430 -a 1 r -t 1.65789 -s 3 -d 5 -p cbr -e 210 -c 1 -i 398 -a 1 r -t 1.65829 -s 2 -d 3 -p cbr -e 210 -c 1 -i 415 -a 1 + -t 1.65829 -s 3 -d 5 -p cbr -e 210 -c 1 -i 415 -a 1 - -t 1.65829 -s 3 -d 5 -p cbr -e 210 -c 1 -i 415 -a 1 h -t 1.65829 -s 3 -d 5 -p cbr -e 210 -c 1 -i 415 -a 1 + -t 1.66 -s 1 -d 2 -p cbr -e 210 -c 1 -i 449 -a 1 - -t 1.66 -s 1 -d 2 -p cbr -e 210 -c 1 -i 449 -a 1 h -t 1.66 -s 1 -d 2 -p cbr -e 210 -c 1 -i 449 -a 1 r -t 1.66086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 431 -a 1 + -t 1.66086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 431 -a 1 - -t 1.66086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 431 -a 1 h -t 1.66086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 431 -a 1 r -t 1.66125 -s 3 -d 5 -p cbr -e 210 -c 1 -i 399 -a 1 r -t 1.66165 -s 2 -d 3 -p cbr -e 210 -c 1 -i 416 -a 1 + -t 1.66165 -s 3 -d 5 -p cbr -e 210 -c 1 -i 416 -a 1 - -t 1.66165 -s 3 -d 5 -p cbr -e 210 -c 1 -i 416 -a 1 h -t 1.66165 -s 3 -d 5 -p cbr -e 210 -c 1 -i 416 -a 1 - -t 1.66373 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 443 -a 0 -S 0 -y {12 12} h -t 1.66373 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 443 -a 0 -S 0 -y {-1 -1} + -t 1.66375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 450 -a 1 - -t 1.66375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 450 -a 1 h -t 1.66375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 450 -a 1 r -t 1.66461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 432 -a 1 + -t 1.66461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 432 -a 1 - -t 1.66461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 432 -a 1 h -t 1.66461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 432 -a 1 r -t 1.66461 -s 3 -d 5 -p cbr -e 210 -c 1 -i 400 -a 1 r -t 1.66501 -s 2 -d 3 -p cbr -e 210 -c 1 -i 417 -a 1 + -t 1.66501 -s 3 -d 5 -p cbr -e 210 -c 1 -i 417 -a 1 - -t 1.66501 -s 3 -d 5 -p cbr -e 210 -c 1 -i 417 -a 1 h -t 1.66501 -s 3 -d 5 -p cbr -e 210 -c 1 -i 417 -a 1 + -t 1.6675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 451 -a 1 - -t 1.6675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 451 -a 1 h -t 1.6675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 451 -a 1 r -t 1.66797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 402 -a 1 r -t 1.66836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 433 -a 1 + -t 1.66836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 433 -a 1 - -t 1.66836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 433 -a 1 h -t 1.66836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 433 -a 1 r -t 1.66837 -s 2 -d 3 -p cbr -e 210 -c 1 -i 418 -a 1 + -t 1.66837 -s 3 -d 5 -p cbr -e 210 -c 1 -i 418 -a 1 - -t 1.66837 -s 3 -d 5 -p cbr -e 210 -c 1 -i 418 -a 1 h -t 1.66837 -s 3 -d 5 -p cbr -e 210 -c 1 -i 418 -a 1 + -t 1.67125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 452 -a 1 - -t 1.67125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 452 -a 1 h -t 1.67125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 452 -a 1 r -t 1.67133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 403 -a 1 r -t 1.67173 -s 2 -d 3 -p cbr -e 210 -c 1 -i 419 -a 1 + -t 1.67173 -s 3 -d 5 -p cbr -e 210 -c 1 -i 419 -a 1 - -t 1.67173 -s 3 -d 5 -p cbr -e 210 -c 1 -i 419 -a 1 h -t 1.67173 -s 3 -d 5 -p cbr -e 210 -c 1 -i 419 -a 1 r -t 1.67211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 434 -a 1 + -t 1.67211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 434 -a 1 - -t 1.67211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 434 -a 1 h -t 1.67211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 434 -a 1 r -t 1.67469 -s 3 -d 5 -p cbr -e 210 -c 1 -i 404 -a 1 + -t 1.675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 453 -a 1 - -t 1.675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 453 -a 1 h -t 1.675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 453 -a 1 r -t 1.67509 -s 2 -d 3 -p cbr -e 210 -c 1 -i 420 -a 1 + -t 1.67509 -s 3 -d 5 -p cbr -e 210 -c 1 -i 420 -a 1 - -t 1.67509 -s 3 -d 5 -p cbr -e 210 -c 1 -i 420 -a 1 h -t 1.67509 -s 3 -d 5 -p cbr -e 210 -c 1 -i 420 -a 1 r -t 1.67586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 435 -a 1 + -t 1.67586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 435 -a 1 - -t 1.67586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 435 -a 1 h -t 1.67586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 435 -a 1 r -t 1.67805 -s 3 -d 5 -p cbr -e 210 -c 1 -i 405 -a 1 r -t 1.67845 -s 2 -d 3 -p cbr -e 210 -c 1 -i 421 -a 1 + -t 1.67845 -s 3 -d 5 -p cbr -e 210 -c 1 -i 421 -a 1 - -t 1.67845 -s 3 -d 5 -p cbr -e 210 -c 1 -i 421 -a 1 h -t 1.67845 -s 3 -d 5 -p cbr -e 210 -c 1 -i 421 -a 1 + -t 1.67875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 454 -a 1 - -t 1.67875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 454 -a 1 h -t 1.67875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 454 -a 1 r -t 1.67961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 436 -a 1 + -t 1.67961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 436 -a 1 - -t 1.67961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 436 -a 1 h -t 1.67961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 436 -a 1 - -t 1.67973 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 444 -a 0 -S 0 -y {13 13} h -t 1.67973 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 444 -a 0 -S 0 -y {-1 -1} r -t 1.68141 -s 3 -d 5 -p cbr -e 210 -c 1 -i 406 -a 1 r -t 1.68181 -s 2 -d 3 -p cbr -e 210 -c 1 -i 422 -a 1 + -t 1.68181 -s 3 -d 5 -p cbr -e 210 -c 1 -i 422 -a 1 - -t 1.68181 -s 3 -d 5 -p cbr -e 210 -c 1 -i 422 -a 1 h -t 1.68181 -s 3 -d 5 -p cbr -e 210 -c 1 -i 422 -a 1 + -t 1.6825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 455 -a 1 - -t 1.6825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 455 -a 1 h -t 1.6825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 455 -a 1 r -t 1.68336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 437 -a 1 + -t 1.68336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 437 -a 1 - -t 1.68336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 437 -a 1 h -t 1.68336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 437 -a 1 r -t 1.68477 -s 3 -d 5 -p cbr -e 210 -c 1 -i 407 -a 1 r -t 1.68517 -s 2 -d 3 -p cbr -e 210 -c 1 -i 423 -a 1 + -t 1.68517 -s 3 -d 5 -p cbr -e 210 -c 1 -i 423 -a 1 - -t 1.68517 -s 3 -d 5 -p cbr -e 210 -c 1 -i 423 -a 1 h -t 1.68517 -s 3 -d 5 -p cbr -e 210 -c 1 -i 423 -a 1 + -t 1.68625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 456 -a 1 - -t 1.68625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 456 -a 1 h -t 1.68625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 456 -a 1 r -t 1.68711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 438 -a 1 + -t 1.68711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 438 -a 1 - -t 1.68711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 438 -a 1 h -t 1.68711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 438 -a 1 r -t 1.68813 -s 3 -d 5 -p cbr -e 210 -c 1 -i 408 -a 1 r -t 1.68853 -s 2 -d 3 -p cbr -e 210 -c 1 -i 424 -a 1 + -t 1.68853 -s 3 -d 5 -p cbr -e 210 -c 1 -i 424 -a 1 - -t 1.68853 -s 3 -d 5 -p cbr -e 210 -c 1 -i 424 -a 1 h -t 1.68853 -s 3 -d 5 -p cbr -e 210 -c 1 -i 424 -a 1 + -t 1.69 -s 1 -d 2 -p cbr -e 210 -c 1 -i 457 -a 1 - -t 1.69 -s 1 -d 2 -p cbr -e 210 -c 1 -i 457 -a 1 h -t 1.69 -s 1 -d 2 -p cbr -e 210 -c 1 -i 457 -a 1 r -t 1.69086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 439 -a 1 + -t 1.69086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 439 -a 1 - -t 1.69086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 439 -a 1 h -t 1.69086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 439 -a 1 r -t 1.69149 -s 3 -d 5 -p cbr -e 210 -c 1 -i 409 -a 1 r -t 1.69189 -s 2 -d 3 -p cbr -e 210 -c 1 -i 425 -a 1 + -t 1.69189 -s 3 -d 5 -p cbr -e 210 -c 1 -i 425 -a 1 - -t 1.69189 -s 3 -d 5 -p cbr -e 210 -c 1 -i 425 -a 1 h -t 1.69189 -s 3 -d 5 -p cbr -e 210 -c 1 -i 425 -a 1 + -t 1.69375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 458 -a 1 - -t 1.69375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 458 -a 1 h -t 1.69375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 458 -a 1 r -t 1.69461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 440 -a 1 + -t 1.69461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 440 -a 1 - -t 1.69461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 440 -a 1 h -t 1.69461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 440 -a 1 r -t 1.69485 -s 3 -d 5 -p cbr -e 210 -c 1 -i 410 -a 1 r -t 1.69547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 426 -a 1 + -t 1.69547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 426 -a 1 - -t 1.69547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 426 -a 1 h -t 1.69547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 426 -a 1 - -t 1.69573 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 445 -a 0 -S 0 -y {14 14} h -t 1.69573 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 445 -a 0 -S 0 -y {-1 -1} + -t 1.6975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 459 -a 1 - -t 1.6975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 459 -a 1 h -t 1.6975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 459 -a 1 r -t 1.69821 -s 3 -d 5 -p cbr -e 210 -c 1 -i 411 -a 1 r -t 1.69836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 441 -a 1 + -t 1.69836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 441 -a 1 - -t 1.69836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 441 -a 1 h -t 1.69836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 441 -a 1 r -t 1.69922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 427 -a 1 + -t 1.69922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 427 -a 1 - -t 1.69922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 427 -a 1 h -t 1.69922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 427 -a 1 + -t 1.70125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 460 -a 1 - -t 1.70125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 460 -a 1 h -t 1.70125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 460 -a 1 r -t 1.70157 -s 3 -d 5 -p cbr -e 210 -c 1 -i 412 -a 1 r -t 1.70211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 446 -a 1 + -t 1.70211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 446 -a 1 - -t 1.70211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 446 -a 1 h -t 1.70211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 446 -a 1 r -t 1.70297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 428 -a 1 + -t 1.70297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 428 -a 1 - -t 1.70297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 428 -a 1 h -t 1.70297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 428 -a 1 r -t 1.70493 -s 3 -d 5 -p cbr -e 210 -c 1 -i 413 -a 1 + -t 1.705 -s 1 -d 2 -p cbr -e 210 -c 1 -i 461 -a 1 - -t 1.705 -s 1 -d 2 -p cbr -e 210 -c 1 -i 461 -a 1 h -t 1.705 -s 1 -d 2 -p cbr -e 210 -c 1 -i 461 -a 1 r -t 1.70586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 447 -a 1 + -t 1.70586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 447 -a 1 - -t 1.70586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 447 -a 1 h -t 1.70586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 447 -a 1 r -t 1.70672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 429 -a 1 + -t 1.70672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 429 -a 1 - -t 1.70672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 429 -a 1 h -t 1.70672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 429 -a 1 r -t 1.70829 -s 3 -d 5 -p cbr -e 210 -c 1 -i 414 -a 1 + -t 1.70875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 462 -a 1 - -t 1.70875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 462 -a 1 h -t 1.70875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 462 -a 1 r -t 1.70961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 448 -a 1 + -t 1.70961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 448 -a 1 - -t 1.70961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 448 -a 1 h -t 1.70961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 448 -a 1 r -t 1.71047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 430 -a 1 + -t 1.71047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 430 -a 1 - -t 1.71047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 430 -a 1 h -t 1.71047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 430 -a 1 r -t 1.71165 -s 3 -d 5 -p cbr -e 210 -c 1 -i 415 -a 1 + -t 1.7125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 463 -a 1 - -t 1.7125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 463 -a 1 h -t 1.7125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 463 -a 1 r -t 1.71336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 449 -a 1 + -t 1.71336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 449 -a 1 - -t 1.71336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 449 -a 1 h -t 1.71336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 449 -a 1 r -t 1.71373 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 442 -a 0 -S 0 -y {11 11} + -t 1.71373 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 442 -a 0 -S 0 -y {11 11} r -t 1.71422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 431 -a 1 + -t 1.71422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 431 -a 1 - -t 1.71422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 431 -a 1 h -t 1.71422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 431 -a 1 r -t 1.71501 -s 3 -d 5 -p cbr -e 210 -c 1 -i 416 -a 1 + -t 1.71625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 464 -a 1 - -t 1.71625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 464 -a 1 h -t 1.71625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 464 -a 1 - -t 1.71672 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 442 -a 0 -S 0 -y {11 11} h -t 1.71672 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 442 -a 0 -S 0 -y {-1 -1} r -t 1.71711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 450 -a 1 + -t 1.71711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 450 -a 1 r -t 1.71797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 432 -a 1 + -t 1.71797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 432 -a 1 - -t 1.71797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 432 -a 1 h -t 1.71797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 432 -a 1 r -t 1.71837 -s 3 -d 5 -p cbr -e 210 -c 1 -i 417 -a 1 + -t 1.72 -s 1 -d 2 -p cbr -e 210 -c 1 -i 465 -a 1 - -t 1.72 -s 1 -d 2 -p cbr -e 210 -c 1 -i 465 -a 1 h -t 1.72 -s 1 -d 2 -p cbr -e 210 -c 1 -i 465 -a 1 r -t 1.72086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 451 -a 1 + -t 1.72086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 451 -a 1 r -t 1.72172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 433 -a 1 + -t 1.72172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 433 -a 1 - -t 1.72172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 433 -a 1 h -t 1.72172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 433 -a 1 r -t 1.72173 -s 3 -d 5 -p cbr -e 210 -c 1 -i 418 -a 1 + -t 1.72375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 466 -a 1 - -t 1.72375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 466 -a 1 h -t 1.72375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 466 -a 1 r -t 1.72461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 452 -a 1 + -t 1.72461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 452 -a 1 r -t 1.72509 -s 3 -d 5 -p cbr -e 210 -c 1 -i 419 -a 1 r -t 1.72547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 434 -a 1 + -t 1.72547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 434 -a 1 - -t 1.72547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 434 -a 1 h -t 1.72547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 434 -a 1 + -t 1.7275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 467 -a 1 - -t 1.7275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 467 -a 1 h -t 1.7275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 467 -a 1 r -t 1.72836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 453 -a 1 + -t 1.72836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 453 -a 1 r -t 1.72845 -s 3 -d 5 -p cbr -e 210 -c 1 -i 420 -a 1 r -t 1.72922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 435 -a 1 + -t 1.72922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 435 -a 1 - -t 1.72922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 435 -a 1 h -t 1.72922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 435 -a 1 r -t 1.72973 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 443 -a 0 -S 0 -y {12 12} + -t 1.72973 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 443 -a 0 -S 0 -y {12 12} + -t 1.73125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 468 -a 1 - -t 1.73125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 468 -a 1 h -t 1.73125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 468 -a 1 r -t 1.73181 -s 3 -d 5 -p cbr -e 210 -c 1 -i 421 -a 1 r -t 1.73211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 454 -a 1 + -t 1.73211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 454 -a 1 - -t 1.73272 -s 2 -d 3 -p cbr -e 210 -c 1 -i 450 -a 1 h -t 1.73272 -s 2 -d 3 -p cbr -e 210 -c 1 -i 450 -a 1 r -t 1.73297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 436 -a 1 + -t 1.73297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 436 -a 1 - -t 1.73297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 436 -a 1 h -t 1.73297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 436 -a 1 + -t 1.735 -s 1 -d 2 -p cbr -e 210 -c 1 -i 469 -a 1 - -t 1.735 -s 1 -d 2 -p cbr -e 210 -c 1 -i 469 -a 1 h -t 1.735 -s 1 -d 2 -p cbr -e 210 -c 1 -i 469 -a 1 r -t 1.73517 -s 3 -d 5 -p cbr -e 210 -c 1 -i 422 -a 1 r -t 1.73586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 455 -a 1 + -t 1.73586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 455 -a 1 - -t 1.73608 -s 2 -d 3 -p cbr -e 210 -c 1 -i 451 -a 1 h -t 1.73608 -s 2 -d 3 -p cbr -e 210 -c 1 -i 451 -a 1 r -t 1.73672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 437 -a 1 + -t 1.73672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 437 -a 1 - -t 1.73672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 437 -a 1 h -t 1.73672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 437 -a 1 r -t 1.73853 -s 3 -d 5 -p cbr -e 210 -c 1 -i 423 -a 1 + -t 1.73875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 470 -a 1 - -t 1.73875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 470 -a 1 h -t 1.73875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 470 -a 1 - -t 1.73944 -s 2 -d 3 -p cbr -e 210 -c 1 -i 452 -a 1 h -t 1.73944 -s 2 -d 3 -p cbr -e 210 -c 1 -i 452 -a 1 r -t 1.73961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 456 -a 1 + -t 1.73961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 456 -a 1 r -t 1.74047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 438 -a 1 + -t 1.74047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 438 -a 1 - -t 1.74047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 438 -a 1 h -t 1.74047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 438 -a 1 r -t 1.74189 -s 3 -d 5 -p cbr -e 210 -c 1 -i 424 -a 1 + -t 1.7425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 471 -a 1 - -t 1.7425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 471 -a 1 h -t 1.7425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 471 -a 1 - -t 1.7428 -s 2 -d 3 -p cbr -e 210 -c 1 -i 453 -a 1 h -t 1.7428 -s 2 -d 3 -p cbr -e 210 -c 1 -i 453 -a 1 r -t 1.74336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 457 -a 1 + -t 1.74336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 457 -a 1 r -t 1.74422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 439 -a 1 + -t 1.74422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 439 -a 1 - -t 1.74422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 439 -a 1 h -t 1.74422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 439 -a 1 r -t 1.74525 -s 3 -d 5 -p cbr -e 210 -c 1 -i 425 -a 1 r -t 1.74573 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 444 -a 0 -S 0 -y {13 13} + -t 1.74573 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 444 -a 0 -S 0 -y {13 13} - -t 1.74616 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 443 -a 0 -S 0 -y {12 12} h -t 1.74616 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 443 -a 0 -S 0 -y {-1 -1} + -t 1.74625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 472 -a 1 - -t 1.74625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 472 -a 1 h -t 1.74625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 472 -a 1 r -t 1.74711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 458 -a 1 + -t 1.74711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 458 -a 1 r -t 1.74797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 440 -a 1 + -t 1.74797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 440 -a 1 - -t 1.74797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 440 -a 1 h -t 1.74797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 440 -a 1 r -t 1.74883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 426 -a 1 + -t 1.75 -s 1 -d 2 -p cbr -e 210 -c 1 -i 473 -a 1 - -t 1.75 -s 1 -d 2 -p cbr -e 210 -c 1 -i 473 -a 1 h -t 1.75 -s 1 -d 2 -p cbr -e 210 -c 1 -i 473 -a 1 r -t 1.75086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 459 -a 1 + -t 1.75086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 459 -a 1 r -t 1.75172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 441 -a 1 + -t 1.75172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 441 -a 1 - -t 1.75172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 441 -a 1 h -t 1.75172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 441 -a 1 r -t 1.75258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 427 -a 1 + -t 1.75375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 474 -a 1 - -t 1.75375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 474 -a 1 h -t 1.75375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 474 -a 1 r -t 1.75461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 460 -a 1 + -t 1.75461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 460 -a 1 r -t 1.75547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 446 -a 1 + -t 1.75547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 446 -a 1 - -t 1.75547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 446 -a 1 h -t 1.75547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 446 -a 1 r -t 1.75633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 428 -a 1 + -t 1.7575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 475 -a 1 - -t 1.7575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 475 -a 1 h -t 1.7575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 475 -a 1 r -t 1.75836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 461 -a 1 + -t 1.75836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 461 -a 1 r -t 1.75922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 447 -a 1 + -t 1.75922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 447 -a 1 - -t 1.75922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 447 -a 1 h -t 1.75922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 447 -a 1 r -t 1.76008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 429 -a 1 + -t 1.76125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 476 -a 1 - -t 1.76125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 476 -a 1 h -t 1.76125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 476 -a 1 r -t 1.76173 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 445 -a 0 -S 0 -y {14 14} + -t 1.76173 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 445 -a 0 -S 0 -y {14 14} d -t 1.76173 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 445 -a 0 -S 0 -y {14 14} r -t 1.76211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 462 -a 1 + -t 1.76211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 462 -a 1 d -t 1.76211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 462 -a 1 - -t 1.76216 -s 2 -d 3 -p cbr -e 210 -c 1 -i 454 -a 1 h -t 1.76216 -s 2 -d 3 -p cbr -e 210 -c 1 -i 454 -a 1 r -t 1.76297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 448 -a 1 + -t 1.76297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 448 -a 1 - -t 1.76297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 448 -a 1 h -t 1.76297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 448 -a 1 r -t 1.76383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 430 -a 1 + -t 1.765 -s 1 -d 2 -p cbr -e 210 -c 1 -i 477 -a 1 - -t 1.765 -s 1 -d 2 -p cbr -e 210 -c 1 -i 477 -a 1 h -t 1.765 -s 1 -d 2 -p cbr -e 210 -c 1 -i 477 -a 1 - -t 1.76552 -s 2 -d 3 -p cbr -e 210 -c 1 -i 455 -a 1 h -t 1.76552 -s 2 -d 3 -p cbr -e 210 -c 1 -i 455 -a 1 r -t 1.76586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 463 -a 1 + -t 1.76586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 463 -a 1 r -t 1.76672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 449 -a 1 + -t 1.76672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 449 -a 1 - -t 1.76672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 449 -a 1 h -t 1.76672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 449 -a 1 r -t 1.76758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 431 -a 1 + -t 1.76875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 478 -a 1 - -t 1.76875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 478 -a 1 h -t 1.76875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 478 -a 1 - -t 1.76888 -s 2 -d 3 -p cbr -e 210 -c 1 -i 456 -a 1 h -t 1.76888 -s 2 -d 3 -p cbr -e 210 -c 1 -i 456 -a 1 r -t 1.76961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 464 -a 1 + -t 1.76961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 464 -a 1 r -t 1.77133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 432 -a 1 - -t 1.77224 -s 2 -d 3 -p cbr -e 210 -c 1 -i 457 -a 1 h -t 1.77224 -s 2 -d 3 -p cbr -e 210 -c 1 -i 457 -a 1 + -t 1.7725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 479 -a 1 - -t 1.7725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 479 -a 1 h -t 1.7725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 479 -a 1 r -t 1.77336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 465 -a 1 + -t 1.77336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 465 -a 1 r -t 1.77508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 433 -a 1 - -t 1.7756 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 444 -a 0 -S 0 -y {13 13} h -t 1.7756 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 444 -a 0 -S 0 -y {-1 -1} + -t 1.77625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 480 -a 1 - -t 1.77625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 480 -a 1 h -t 1.77625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 480 -a 1 r -t 1.77711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 466 -a 1 + -t 1.77711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 466 -a 1 r -t 1.77883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 434 -a 1 + -t 1.78 -s 1 -d 2 -p cbr -e 210 -c 1 -i 481 -a 1 - -t 1.78 -s 1 -d 2 -p cbr -e 210 -c 1 -i 481 -a 1 h -t 1.78 -s 1 -d 2 -p cbr -e 210 -c 1 -i 481 -a 1 r -t 1.78086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 467 -a 1 + -t 1.78086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 467 -a 1 r -t 1.78258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 435 -a 1 r -t 1.78272 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 442 -a 0 -S 0 -y {11 11} + -t 1.78272 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 442 -a 0 -S 0 -y {11 11} - -t 1.78272 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 442 -a 0 -S 0 -y {11 11} h -t 1.78272 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 442 -a 0 -S 0 -y {-1 -1} + -t 1.78375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 482 -a 1 - -t 1.78375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 482 -a 1 h -t 1.78375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 482 -a 1 r -t 1.78461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 468 -a 1 + -t 1.78461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 468 -a 1 d -t 1.78461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 468 -a 1 r -t 1.78608 -s 2 -d 3 -p cbr -e 210 -c 1 -i 450 -a 1 + -t 1.78608 -s 3 -d 5 -p cbr -e 210 -c 1 -i 450 -a 1 - -t 1.78608 -s 3 -d 5 -p cbr -e 210 -c 1 -i 450 -a 1 h -t 1.78608 -s 3 -d 5 -p cbr -e 210 -c 1 -i 450 -a 1 r -t 1.78633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 436 -a 1 + -t 1.7875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 483 -a 1 - -t 1.7875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 483 -a 1 h -t 1.7875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 483 -a 1 r -t 1.78836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 469 -a 1 + -t 1.78836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 469 -a 1 d -t 1.78836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 469 -a 1 r -t 1.78944 -s 2 -d 3 -p cbr -e 210 -c 1 -i 451 -a 1 + -t 1.78944 -s 3 -d 5 -p cbr -e 210 -c 1 -i 451 -a 1 - -t 1.78944 -s 3 -d 5 -p cbr -e 210 -c 1 -i 451 -a 1 h -t 1.78944 -s 3 -d 5 -p cbr -e 210 -c 1 -i 451 -a 1 r -t 1.79008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 437 -a 1 + -t 1.79125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 484 -a 1 - -t 1.79125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 484 -a 1 h -t 1.79125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 484 -a 1 - -t 1.7916 -s 2 -d 3 -p cbr -e 210 -c 1 -i 458 -a 1 h -t 1.7916 -s 2 -d 3 -p cbr -e 210 -c 1 -i 458 -a 1 r -t 1.79211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 470 -a 1 + -t 1.79211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 470 -a 1 r -t 1.7928 -s 2 -d 3 -p cbr -e 210 -c 1 -i 452 -a 1 + -t 1.7928 -s 3 -d 5 -p cbr -e 210 -c 1 -i 452 -a 1 - -t 1.7928 -s 3 -d 5 -p cbr -e 210 -c 1 -i 452 -a 1 h -t 1.7928 -s 3 -d 5 -p cbr -e 210 -c 1 -i 452 -a 1 r -t 1.79383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 438 -a 1 - -t 1.79496 -s 2 -d 3 -p cbr -e 210 -c 1 -i 459 -a 1 h -t 1.79496 -s 2 -d 3 -p cbr -e 210 -c 1 -i 459 -a 1 + -t 1.795 -s 1 -d 2 -p cbr -e 210 -c 1 -i 485 -a 1 - -t 1.795 -s 1 -d 2 -p cbr -e 210 -c 1 -i 485 -a 1 h -t 1.795 -s 1 -d 2 -p cbr -e 210 -c 1 -i 485 -a 1 r -t 1.79586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 471 -a 1 + -t 1.79586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 471 -a 1 r -t 1.79616 -s 2 -d 3 -p cbr -e 210 -c 1 -i 453 -a 1 + -t 1.79616 -s 3 -d 5 -p cbr -e 210 -c 1 -i 453 -a 1 - -t 1.79616 -s 3 -d 5 -p cbr -e 210 -c 1 -i 453 -a 1 h -t 1.79616 -s 3 -d 5 -p cbr -e 210 -c 1 -i 453 -a 1 r -t 1.79758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 439 -a 1 - -t 1.79832 -s 2 -d 3 -p cbr -e 210 -c 1 -i 460 -a 1 h -t 1.79832 -s 2 -d 3 -p cbr -e 210 -c 1 -i 460 -a 1 + -t 1.79875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 486 -a 1 - -t 1.79875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 486 -a 1 h -t 1.79875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 486 -a 1 r -t 1.79961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 472 -a 1 + -t 1.79961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 472 -a 1 r -t 1.80133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 440 -a 1 - -t 1.80168 -s 2 -d 3 -p cbr -e 210 -c 1 -i 461 -a 1 h -t 1.80168 -s 2 -d 3 -p cbr -e 210 -c 1 -i 461 -a 1 + -t 1.8025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 487 -a 1 - -t 1.8025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 487 -a 1 h -t 1.8025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 487 -a 1 r -t 1.80336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 473 -a 1 + -t 1.80336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 473 -a 1 - -t 1.80504 -s 2 -d 3 -p cbr -e 210 -c 1 -i 463 -a 1 h -t 1.80504 -s 2 -d 3 -p cbr -e 210 -c 1 -i 463 -a 1 r -t 1.80508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 441 -a 1 + -t 1.80625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 488 -a 1 - -t 1.80625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 488 -a 1 h -t 1.80625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 488 -a 1 r -t 1.80711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 474 -a 1 + -t 1.80711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 474 -a 1 - -t 1.8084 -s 2 -d 3 -p cbr -e 210 -c 1 -i 464 -a 1 h -t 1.8084 -s 2 -d 3 -p cbr -e 210 -c 1 -i 464 -a 1 r -t 1.80883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 446 -a 1 + -t 1.81 -s 1 -d 2 -p cbr -e 210 -c 1 -i 489 -a 1 - -t 1.81 -s 1 -d 2 -p cbr -e 210 -c 1 -i 489 -a 1 h -t 1.81 -s 1 -d 2 -p cbr -e 210 -c 1 -i 489 -a 1 r -t 1.81086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 475 -a 1 + -t 1.81086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 475 -a 1 - -t 1.81176 -s 2 -d 3 -p cbr -e 210 -c 1 -i 465 -a 1 h -t 1.81176 -s 2 -d 3 -p cbr -e 210 -c 1 -i 465 -a 1 r -t 1.81216 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 443 -a 0 -S 0 -y {12 12} + -t 1.81216 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 443 -a 0 -S 0 -y {12 12} - -t 1.81216 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 443 -a 0 -S 0 -y {12 12} h -t 1.81216 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 443 -a 0 -S 0 -y {-1 -1} r -t 1.81258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 447 -a 1 + -t 1.81375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 490 -a 1 - -t 1.81375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 490 -a 1 h -t 1.81375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 490 -a 1 r -t 1.81461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 476 -a 1 + -t 1.81461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 476 -a 1 - -t 1.81512 -s 2 -d 3 -p cbr -e 210 -c 1 -i 466 -a 1 h -t 1.81512 -s 2 -d 3 -p cbr -e 210 -c 1 -i 466 -a 1 r -t 1.81552 -s 2 -d 3 -p cbr -e 210 -c 1 -i 454 -a 1 + -t 1.81552 -s 3 -d 5 -p cbr -e 210 -c 1 -i 454 -a 1 - -t 1.81552 -s 3 -d 5 -p cbr -e 210 -c 1 -i 454 -a 1 h -t 1.81552 -s 3 -d 5 -p cbr -e 210 -c 1 -i 454 -a 1 r -t 1.81633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 448 -a 1 + -t 1.8175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 491 -a 1 - -t 1.8175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 491 -a 1 h -t 1.8175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 491 -a 1 r -t 1.81836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 477 -a 1 + -t 1.81836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 477 -a 1 - -t 1.81848 -s 2 -d 3 -p cbr -e 210 -c 1 -i 467 -a 1 h -t 1.81848 -s 2 -d 3 -p cbr -e 210 -c 1 -i 467 -a 1 r -t 1.81888 -s 2 -d 3 -p cbr -e 210 -c 1 -i 455 -a 1 + -t 1.81888 -s 3 -d 5 -p cbr -e 210 -c 1 -i 455 -a 1 - -t 1.81888 -s 3 -d 5 -p cbr -e 210 -c 1 -i 455 -a 1 h -t 1.81888 -s 3 -d 5 -p cbr -e 210 -c 1 -i 455 -a 1 r -t 1.82008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 449 -a 1 + -t 1.82125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 492 -a 1 - -t 1.82125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 492 -a 1 h -t 1.82125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 492 -a 1 - -t 1.82184 -s 2 -d 3 -p cbr -e 210 -c 1 -i 470 -a 1 h -t 1.82184 -s 2 -d 3 -p cbr -e 210 -c 1 -i 470 -a 1 r -t 1.82211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 478 -a 1 + -t 1.82211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 478 -a 1 r -t 1.82224 -s 2 -d 3 -p cbr -e 210 -c 1 -i 456 -a 1 + -t 1.82224 -s 3 -d 5 -p cbr -e 210 -c 1 -i 456 -a 1 - -t 1.82224 -s 3 -d 5 -p cbr -e 210 -c 1 -i 456 -a 1 h -t 1.82224 -s 3 -d 5 -p cbr -e 210 -c 1 -i 456 -a 1 + -t 1.825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 493 -a 1 - -t 1.825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 493 -a 1 h -t 1.825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 493 -a 1 - -t 1.8252 -s 2 -d 3 -p cbr -e 210 -c 1 -i 471 -a 1 h -t 1.8252 -s 2 -d 3 -p cbr -e 210 -c 1 -i 471 -a 1 r -t 1.8256 -s 2 -d 3 -p cbr -e 210 -c 1 -i 457 -a 1 + -t 1.8256 -s 3 -d 5 -p cbr -e 210 -c 1 -i 457 -a 1 - -t 1.8256 -s 3 -d 5 -p cbr -e 210 -c 1 -i 457 -a 1 h -t 1.8256 -s 3 -d 5 -p cbr -e 210 -c 1 -i 457 -a 1 r -t 1.82586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 479 -a 1 + -t 1.82586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 479 -a 1 - -t 1.82856 -s 2 -d 3 -p cbr -e 210 -c 1 -i 472 -a 1 h -t 1.82856 -s 2 -d 3 -p cbr -e 210 -c 1 -i 472 -a 1 + -t 1.82875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 494 -a 1 - -t 1.82875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 494 -a 1 h -t 1.82875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 494 -a 1 r -t 1.82961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 480 -a 1 + -t 1.82961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 480 -a 1 - -t 1.83192 -s 2 -d 3 -p cbr -e 210 -c 1 -i 473 -a 1 h -t 1.83192 -s 2 -d 3 -p cbr -e 210 -c 1 -i 473 -a 1 + -t 1.8325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 495 -a 1 - -t 1.8325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 495 -a 1 h -t 1.8325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 495 -a 1 r -t 1.83336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 481 -a 1 + -t 1.83336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 481 -a 1 - -t 1.83528 -s 2 -d 3 -p cbr -e 210 -c 1 -i 474 -a 1 h -t 1.83528 -s 2 -d 3 -p cbr -e 210 -c 1 -i 474 -a 1 + -t 1.83625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 496 -a 1 - -t 1.83625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 496 -a 1 h -t 1.83625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 496 -a 1 r -t 1.83711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 482 -a 1 + -t 1.83711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 482 -a 1 - -t 1.83864 -s 2 -d 3 -p cbr -e 210 -c 1 -i 475 -a 1 h -t 1.83864 -s 2 -d 3 -p cbr -e 210 -c 1 -i 475 -a 1 r -t 1.83944 -s 3 -d 5 -p cbr -e 210 -c 1 -i 450 -a 1 + -t 1.84 -s 1 -d 2 -p cbr -e 210 -c 1 -i 497 -a 1 - -t 1.84 -s 1 -d 2 -p cbr -e 210 -c 1 -i 497 -a 1 h -t 1.84 -s 1 -d 2 -p cbr -e 210 -c 1 -i 497 -a 1 r -t 1.84086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 483 -a 1 + -t 1.84086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 483 -a 1 r -t 1.8416 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 444 -a 0 -S 0 -y {13 13} + -t 1.8416 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 444 -a 0 -S 0 -y {13 13} - -t 1.8416 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 444 -a 0 -S 0 -y {13 13} h -t 1.8416 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 444 -a 0 -S 0 -y {-1 -1} - -t 1.842 -s 2 -d 3 -p cbr -e 210 -c 1 -i 476 -a 1 h -t 1.842 -s 2 -d 3 -p cbr -e 210 -c 1 -i 476 -a 1 r -t 1.8428 -s 3 -d 5 -p cbr -e 210 -c 1 -i 451 -a 1 + -t 1.84375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 498 -a 1 - -t 1.84375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 498 -a 1 h -t 1.84375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 498 -a 1 r -t 1.84461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 484 -a 1 + -t 1.84461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 484 -a 1 r -t 1.84496 -s 2 -d 3 -p cbr -e 210 -c 1 -i 458 -a 1 + -t 1.84496 -s 3 -d 5 -p cbr -e 210 -c 1 -i 458 -a 1 - -t 1.84496 -s 3 -d 5 -p cbr -e 210 -c 1 -i 458 -a 1 h -t 1.84496 -s 3 -d 5 -p cbr -e 210 -c 1 -i 458 -a 1 - -t 1.84536 -s 2 -d 3 -p cbr -e 210 -c 1 -i 477 -a 1 h -t 1.84536 -s 2 -d 3 -p cbr -e 210 -c 1 -i 477 -a 1 r -t 1.84616 -s 3 -d 5 -p cbr -e 210 -c 1 -i 452 -a 1 + -t 1.8475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 499 -a 1 - -t 1.8475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 499 -a 1 h -t 1.8475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 499 -a 1 r -t 1.84832 -s 2 -d 3 -p cbr -e 210 -c 1 -i 459 -a 1 + -t 1.84832 -s 3 -d 5 -p cbr -e 210 -c 1 -i 459 -a 1 - -t 1.84832 -s 3 -d 5 -p cbr -e 210 -c 1 -i 459 -a 1 h -t 1.84832 -s 3 -d 5 -p cbr -e 210 -c 1 -i 459 -a 1 r -t 1.84836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 485 -a 1 + -t 1.84836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 485 -a 1 r -t 1.84872 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 442 -a 0 -S 0 -y {11 11} + -t 1.84872 -s 4 -d 3 -p ack -e 40 -c 0 -i 500 -a 0 -S 0 -y {11 11} - -t 1.84872 -s 4 -d 3 -p ack -e 40 -c 0 -i 500 -a 0 -S 0 -y {11 11} h -t 1.84872 -s 4 -d 3 -p ack -e 40 -c 0 -i 500 -a 0 -S 0 -y {-1 -1} - -t 1.84872 -s 2 -d 3 -p cbr -e 210 -c 1 -i 478 -a 1 h -t 1.84872 -s 2 -d 3 -p cbr -e 210 -c 1 -i 478 -a 1 r -t 1.84952 -s 3 -d 5 -p cbr -e 210 -c 1 -i 453 -a 1 + -t 1.85125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 501 -a 1 - -t 1.85125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 501 -a 1 h -t 1.85125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 501 -a 1 r -t 1.85168 -s 2 -d 3 -p cbr -e 210 -c 1 -i 460 -a 1 + -t 1.85168 -s 3 -d 5 -p cbr -e 210 -c 1 -i 460 -a 1 - -t 1.85168 -s 3 -d 5 -p cbr -e 210 -c 1 -i 460 -a 1 h -t 1.85168 -s 3 -d 5 -p cbr -e 210 -c 1 -i 460 -a 1 - -t 1.85208 -s 2 -d 3 -p cbr -e 210 -c 1 -i 479 -a 1 h -t 1.85208 -s 2 -d 3 -p cbr -e 210 -c 1 -i 479 -a 1 r -t 1.85211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 486 -a 1 + -t 1.85211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 486 -a 1 + -t 1.855 -s 1 -d 2 -p cbr -e 210 -c 1 -i 502 -a 1 - -t 1.855 -s 1 -d 2 -p cbr -e 210 -c 1 -i 502 -a 1 h -t 1.855 -s 1 -d 2 -p cbr -e 210 -c 1 -i 502 -a 1 r -t 1.85504 -s 2 -d 3 -p cbr -e 210 -c 1 -i 461 -a 1 + -t 1.85504 -s 3 -d 5 -p cbr -e 210 -c 1 -i 461 -a 1 - -t 1.85504 -s 3 -d 5 -p cbr -e 210 -c 1 -i 461 -a 1 h -t 1.85504 -s 3 -d 5 -p cbr -e 210 -c 1 -i 461 -a 1 - -t 1.85544 -s 2 -d 3 -p cbr -e 210 -c 1 -i 480 -a 1 h -t 1.85544 -s 2 -d 3 -p cbr -e 210 -c 1 -i 480 -a 1 r -t 1.85586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 487 -a 1 + -t 1.85586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 487 -a 1 r -t 1.8584 -s 2 -d 3 -p cbr -e 210 -c 1 -i 463 -a 1 + -t 1.8584 -s 3 -d 5 -p cbr -e 210 -c 1 -i 463 -a 1 - -t 1.8584 -s 3 -d 5 -p cbr -e 210 -c 1 -i 463 -a 1 h -t 1.8584 -s 3 -d 5 -p cbr -e 210 -c 1 -i 463 -a 1 + -t 1.85875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 503 -a 1 - -t 1.85875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 503 -a 1 h -t 1.85875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 503 -a 1 - -t 1.8588 -s 2 -d 3 -p cbr -e 210 -c 1 -i 481 -a 1 h -t 1.8588 -s 2 -d 3 -p cbr -e 210 -c 1 -i 481 -a 1 r -t 1.85961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 488 -a 1 + -t 1.85961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 488 -a 1 r -t 1.86176 -s 2 -d 3 -p cbr -e 210 -c 1 -i 464 -a 1 + -t 1.86176 -s 3 -d 5 -p cbr -e 210 -c 1 -i 464 -a 1 - -t 1.86176 -s 3 -d 5 -p cbr -e 210 -c 1 -i 464 -a 1 h -t 1.86176 -s 3 -d 5 -p cbr -e 210 -c 1 -i 464 -a 1 - -t 1.86216 -s 2 -d 3 -p cbr -e 210 -c 1 -i 482 -a 1 h -t 1.86216 -s 2 -d 3 -p cbr -e 210 -c 1 -i 482 -a 1 + -t 1.8625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 504 -a 1 - -t 1.8625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 504 -a 1 h -t 1.8625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 504 -a 1 r -t 1.86336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 489 -a 1 + -t 1.86336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 489 -a 1 r -t 1.86512 -s 2 -d 3 -p cbr -e 210 -c 1 -i 465 -a 1 + -t 1.86512 -s 3 -d 5 -p cbr -e 210 -c 1 -i 465 -a 1 - -t 1.86512 -s 3 -d 5 -p cbr -e 210 -c 1 -i 465 -a 1 h -t 1.86512 -s 3 -d 5 -p cbr -e 210 -c 1 -i 465 -a 1 - -t 1.86552 -s 2 -d 3 -p cbr -e 210 -c 1 -i 483 -a 1 h -t 1.86552 -s 2 -d 3 -p cbr -e 210 -c 1 -i 483 -a 1 + -t 1.86625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 505 -a 1 - -t 1.86625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 505 -a 1 h -t 1.86625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 505 -a 1 r -t 1.86711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 490 -a 1 + -t 1.86711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 490 -a 1 r -t 1.86848 -s 2 -d 3 -p cbr -e 210 -c 1 -i 466 -a 1 + -t 1.86848 -s 3 -d 5 -p cbr -e 210 -c 1 -i 466 -a 1 - -t 1.86848 -s 3 -d 5 -p cbr -e 210 -c 1 -i 466 -a 1 h -t 1.86848 -s 3 -d 5 -p cbr -e 210 -c 1 -i 466 -a 1 r -t 1.86888 -s 3 -d 5 -p cbr -e 210 -c 1 -i 454 -a 1 - -t 1.86888 -s 2 -d 3 -p cbr -e 210 -c 1 -i 484 -a 1 h -t 1.86888 -s 2 -d 3 -p cbr -e 210 -c 1 -i 484 -a 1 + -t 1.87 -s 1 -d 2 -p cbr -e 210 -c 1 -i 506 -a 1 - -t 1.87 -s 1 -d 2 -p cbr -e 210 -c 1 -i 506 -a 1 h -t 1.87 -s 1 -d 2 -p cbr -e 210 -c 1 -i 506 -a 1 r -t 1.87086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 491 -a 1 + -t 1.87086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 491 -a 1 r -t 1.87184 -s 2 -d 3 -p cbr -e 210 -c 1 -i 467 -a 1 + -t 1.87184 -s 3 -d 5 -p cbr -e 210 -c 1 -i 467 -a 1 - -t 1.87184 -s 3 -d 5 -p cbr -e 210 -c 1 -i 467 -a 1 h -t 1.87184 -s 3 -d 5 -p cbr -e 210 -c 1 -i 467 -a 1 r -t 1.87224 -s 3 -d 5 -p cbr -e 210 -c 1 -i 455 -a 1 - -t 1.87224 -s 2 -d 3 -p cbr -e 210 -c 1 -i 485 -a 1 h -t 1.87224 -s 2 -d 3 -p cbr -e 210 -c 1 -i 485 -a 1 + -t 1.87375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 507 -a 1 - -t 1.87375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 507 -a 1 h -t 1.87375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 507 -a 1 r -t 1.87461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 492 -a 1 + -t 1.87461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 492 -a 1 r -t 1.8752 -s 2 -d 3 -p cbr -e 210 -c 1 -i 470 -a 1 + -t 1.8752 -s 3 -d 5 -p cbr -e 210 -c 1 -i 470 -a 1 - -t 1.8752 -s 3 -d 5 -p cbr -e 210 -c 1 -i 470 -a 1 h -t 1.8752 -s 3 -d 5 -p cbr -e 210 -c 1 -i 470 -a 1 r -t 1.8756 -s 3 -d 5 -p cbr -e 210 -c 1 -i 456 -a 1 - -t 1.8756 -s 2 -d 3 -p cbr -e 210 -c 1 -i 486 -a 1 h -t 1.8756 -s 2 -d 3 -p cbr -e 210 -c 1 -i 486 -a 1 + -t 1.8775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 508 -a 1 - -t 1.8775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 508 -a 1 h -t 1.8775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 508 -a 1 r -t 1.87816 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 443 -a 0 -S 0 -y {12 12} + -t 1.87816 -s 4 -d 3 -p ack -e 40 -c 0 -i 509 -a 0 -S 0 -y {12 12} - -t 1.87816 -s 4 -d 3 -p ack -e 40 -c 0 -i 509 -a 0 -S 0 -y {12 12} h -t 1.87816 -s 4 -d 3 -p ack -e 40 -c 0 -i 509 -a 0 -S 0 -y {-1 -1} r -t 1.87836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 493 -a 1 + -t 1.87836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 493 -a 1 r -t 1.87856 -s 2 -d 3 -p cbr -e 210 -c 1 -i 471 -a 1 + -t 1.87856 -s 3 -d 5 -p cbr -e 210 -c 1 -i 471 -a 1 - -t 1.87856 -s 3 -d 5 -p cbr -e 210 -c 1 -i 471 -a 1 h -t 1.87856 -s 3 -d 5 -p cbr -e 210 -c 1 -i 471 -a 1 r -t 1.87896 -s 3 -d 5 -p cbr -e 210 -c 1 -i 457 -a 1 - -t 1.87896 -s 2 -d 3 -p cbr -e 210 -c 1 -i 487 -a 1 h -t 1.87896 -s 2 -d 3 -p cbr -e 210 -c 1 -i 487 -a 1 + -t 1.88125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 510 -a 1 - -t 1.88125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 510 -a 1 h -t 1.88125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 510 -a 1 r -t 1.88192 -s 2 -d 3 -p cbr -e 210 -c 1 -i 472 -a 1 + -t 1.88192 -s 3 -d 5 -p cbr -e 210 -c 1 -i 472 -a 1 - -t 1.88192 -s 3 -d 5 -p cbr -e 210 -c 1 -i 472 -a 1 h -t 1.88192 -s 3 -d 5 -p cbr -e 210 -c 1 -i 472 -a 1 r -t 1.88211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 494 -a 1 + -t 1.88211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 494 -a 1 - -t 1.88232 -s 2 -d 3 -p cbr -e 210 -c 1 -i 488 -a 1 h -t 1.88232 -s 2 -d 3 -p cbr -e 210 -c 1 -i 488 -a 1 + -t 1.885 -s 1 -d 2 -p cbr -e 210 -c 1 -i 511 -a 1 - -t 1.885 -s 1 -d 2 -p cbr -e 210 -c 1 -i 511 -a 1 h -t 1.885 -s 1 -d 2 -p cbr -e 210 -c 1 -i 511 -a 1 r -t 1.88528 -s 2 -d 3 -p cbr -e 210 -c 1 -i 473 -a 1 + -t 1.88528 -s 3 -d 5 -p cbr -e 210 -c 1 -i 473 -a 1 - -t 1.88528 -s 3 -d 5 -p cbr -e 210 -c 1 -i 473 -a 1 h -t 1.88528 -s 3 -d 5 -p cbr -e 210 -c 1 -i 473 -a 1 - -t 1.88568 -s 2 -d 3 -p cbr -e 210 -c 1 -i 489 -a 1 h -t 1.88568 -s 2 -d 3 -p cbr -e 210 -c 1 -i 489 -a 1 r -t 1.88586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 495 -a 1 + -t 1.88586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 495 -a 1 r -t 1.88864 -s 2 -d 3 -p cbr -e 210 -c 1 -i 474 -a 1 + -t 1.88864 -s 3 -d 5 -p cbr -e 210 -c 1 -i 474 -a 1 - -t 1.88864 -s 3 -d 5 -p cbr -e 210 -c 1 -i 474 -a 1 h -t 1.88864 -s 3 -d 5 -p cbr -e 210 -c 1 -i 474 -a 1 + -t 1.88875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 512 -a 1 - -t 1.88875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 512 -a 1 h -t 1.88875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 512 -a 1 - -t 1.88904 -s 2 -d 3 -p cbr -e 210 -c 1 -i 490 -a 1 h -t 1.88904 -s 2 -d 3 -p cbr -e 210 -c 1 -i 490 -a 1 r -t 1.88961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 496 -a 1 + -t 1.88961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 496 -a 1 r -t 1.892 -s 2 -d 3 -p cbr -e 210 -c 1 -i 475 -a 1 + -t 1.892 -s 3 -d 5 -p cbr -e 210 -c 1 -i 475 -a 1 - -t 1.892 -s 3 -d 5 -p cbr -e 210 -c 1 -i 475 -a 1 h -t 1.892 -s 3 -d 5 -p cbr -e 210 -c 1 -i 475 -a 1 - -t 1.8924 -s 2 -d 3 -p cbr -e 210 -c 1 -i 491 -a 1 h -t 1.8924 -s 2 -d 3 -p cbr -e 210 -c 1 -i 491 -a 1 + -t 1.8925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 513 -a 1 - -t 1.8925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 513 -a 1 h -t 1.8925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 513 -a 1 r -t 1.89336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 497 -a 1 + -t 1.89336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 497 -a 1 r -t 1.89536 -s 2 -d 3 -p cbr -e 210 -c 1 -i 476 -a 1 + -t 1.89536 -s 3 -d 5 -p cbr -e 210 -c 1 -i 476 -a 1 - -t 1.89536 -s 3 -d 5 -p cbr -e 210 -c 1 -i 476 -a 1 h -t 1.89536 -s 3 -d 5 -p cbr -e 210 -c 1 -i 476 -a 1 - -t 1.89576 -s 2 -d 3 -p cbr -e 210 -c 1 -i 492 -a 1 h -t 1.89576 -s 2 -d 3 -p cbr -e 210 -c 1 -i 492 -a 1 + -t 1.89625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 514 -a 1 - -t 1.89625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 514 -a 1 h -t 1.89625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 514 -a 1 r -t 1.89711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 498 -a 1 + -t 1.89711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 498 -a 1 r -t 1.89832 -s 3 -d 5 -p cbr -e 210 -c 1 -i 458 -a 1 r -t 1.89872 -s 2 -d 3 -p cbr -e 210 -c 1 -i 477 -a 1 + -t 1.89872 -s 3 -d 5 -p cbr -e 210 -c 1 -i 477 -a 1 - -t 1.89872 -s 3 -d 5 -p cbr -e 210 -c 1 -i 477 -a 1 h -t 1.89872 -s 3 -d 5 -p cbr -e 210 -c 1 -i 477 -a 1 - -t 1.89912 -s 2 -d 3 -p cbr -e 210 -c 1 -i 493 -a 1 h -t 1.89912 -s 2 -d 3 -p cbr -e 210 -c 1 -i 493 -a 1 r -t 1.89936 -s 4 -d 3 -p ack -e 40 -c 0 -i 500 -a 0 -S 0 -y {11 11} + -t 1.89936 -s 3 -d 2 -p ack -e 40 -c 0 -i 500 -a 0 -S 0 -y {11 11} - -t 1.89936 -s 3 -d 2 -p ack -e 40 -c 0 -i 500 -a 0 -S 0 -y {11 11} h -t 1.89936 -s 3 -d 2 -p ack -e 40 -c 0 -i 500 -a 0 -S 0 -y {-1 -1} + -t 1.9 -s 1 -d 2 -p cbr -e 210 -c 1 -i 515 -a 1 - -t 1.9 -s 1 -d 2 -p cbr -e 210 -c 1 -i 515 -a 1 h -t 1.9 -s 1 -d 2 -p cbr -e 210 -c 1 -i 515 -a 1 r -t 1.90086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 499 -a 1 + -t 1.90086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 499 -a 1 r -t 1.90168 -s 3 -d 5 -p cbr -e 210 -c 1 -i 459 -a 1 r -t 1.90208 -s 2 -d 3 -p cbr -e 210 -c 1 -i 478 -a 1 + -t 1.90208 -s 3 -d 5 -p cbr -e 210 -c 1 -i 478 -a 1 - -t 1.90208 -s 3 -d 5 -p cbr -e 210 -c 1 -i 478 -a 1 h -t 1.90208 -s 3 -d 5 -p cbr -e 210 -c 1 -i 478 -a 1 - -t 1.90248 -s 2 -d 3 -p cbr -e 210 -c 1 -i 494 -a 1 h -t 1.90248 -s 2 -d 3 -p cbr -e 210 -c 1 -i 494 -a 1 + -t 1.90375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 516 -a 1 - -t 1.90375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 516 -a 1 h -t 1.90375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 516 -a 1 r -t 1.90461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 501 -a 1 + -t 1.90461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 501 -a 1 r -t 1.90504 -s 3 -d 5 -p cbr -e 210 -c 1 -i 460 -a 1 r -t 1.90544 -s 2 -d 3 -p cbr -e 210 -c 1 -i 479 -a 1 + -t 1.90544 -s 3 -d 5 -p cbr -e 210 -c 1 -i 479 -a 1 - -t 1.90544 -s 3 -d 5 -p cbr -e 210 -c 1 -i 479 -a 1 h -t 1.90544 -s 3 -d 5 -p cbr -e 210 -c 1 -i 479 -a 1 - -t 1.90584 -s 2 -d 3 -p cbr -e 210 -c 1 -i 495 -a 1 h -t 1.90584 -s 2 -d 3 -p cbr -e 210 -c 1 -i 495 -a 1 + -t 1.9075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 517 -a 1 - -t 1.9075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 517 -a 1 h -t 1.9075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 517 -a 1 r -t 1.9076 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 444 -a 0 -S 0 -y {13 13} + -t 1.9076 -s 4 -d 3 -p ack -e 40 -c 0 -i 518 -a 0 -S 0 -y {13 13} - -t 1.9076 -s 4 -d 3 -p ack -e 40 -c 0 -i 518 -a 0 -S 0 -y {13 13} h -t 1.9076 -s 4 -d 3 -p ack -e 40 -c 0 -i 518 -a 0 -S 0 -y {-1 -1} r -t 1.90836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 502 -a 1 + -t 1.90836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 502 -a 1 r -t 1.9084 -s 3 -d 5 -p cbr -e 210 -c 1 -i 461 -a 1 r -t 1.9088 -s 2 -d 3 -p cbr -e 210 -c 1 -i 480 -a 1 + -t 1.9088 -s 3 -d 5 -p cbr -e 210 -c 1 -i 480 -a 1 - -t 1.9088 -s 3 -d 5 -p cbr -e 210 -c 1 -i 480 -a 1 h -t 1.9088 -s 3 -d 5 -p cbr -e 210 -c 1 -i 480 -a 1 - -t 1.9092 -s 2 -d 3 -p cbr -e 210 -c 1 -i 496 -a 1 h -t 1.9092 -s 2 -d 3 -p cbr -e 210 -c 1 -i 496 -a 1 + -t 1.91125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 519 -a 1 - -t 1.91125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 519 -a 1 h -t 1.91125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 519 -a 1 r -t 1.91176 -s 3 -d 5 -p cbr -e 210 -c 1 -i 463 -a 1 r -t 1.91211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 503 -a 1 + -t 1.91211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 503 -a 1 r -t 1.91216 -s 2 -d 3 -p cbr -e 210 -c 1 -i 481 -a 1 + -t 1.91216 -s 3 -d 5 -p cbr -e 210 -c 1 -i 481 -a 1 - -t 1.91216 -s 3 -d 5 -p cbr -e 210 -c 1 -i 481 -a 1 h -t 1.91216 -s 3 -d 5 -p cbr -e 210 -c 1 -i 481 -a 1 - -t 1.91256 -s 2 -d 3 -p cbr -e 210 -c 1 -i 497 -a 1 h -t 1.91256 -s 2 -d 3 -p cbr -e 210 -c 1 -i 497 -a 1 + -t 1.915 -s 1 -d 2 -p cbr -e 210 -c 1 -i 520 -a 1 - -t 1.915 -s 1 -d 2 -p cbr -e 210 -c 1 -i 520 -a 1 h -t 1.915 -s 1 -d 2 -p cbr -e 210 -c 1 -i 520 -a 1 r -t 1.91512 -s 3 -d 5 -p cbr -e 210 -c 1 -i 464 -a 1 r -t 1.91552 -s 2 -d 3 -p cbr -e 210 -c 1 -i 482 -a 1 + -t 1.91552 -s 3 -d 5 -p cbr -e 210 -c 1 -i 482 -a 1 - -t 1.91552 -s 3 -d 5 -p cbr -e 210 -c 1 -i 482 -a 1 h -t 1.91552 -s 3 -d 5 -p cbr -e 210 -c 1 -i 482 -a 1 r -t 1.91586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 504 -a 1 + -t 1.91586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 504 -a 1 - -t 1.91592 -s 2 -d 3 -p cbr -e 210 -c 1 -i 498 -a 1 h -t 1.91592 -s 2 -d 3 -p cbr -e 210 -c 1 -i 498 -a 1 r -t 1.91848 -s 3 -d 5 -p cbr -e 210 -c 1 -i 465 -a 1 + -t 1.91875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 521 -a 1 - -t 1.91875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 521 -a 1 h -t 1.91875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 521 -a 1 r -t 1.91888 -s 2 -d 3 -p cbr -e 210 -c 1 -i 483 -a 1 + -t 1.91888 -s 3 -d 5 -p cbr -e 210 -c 1 -i 483 -a 1 - -t 1.91888 -s 3 -d 5 -p cbr -e 210 -c 1 -i 483 -a 1 h -t 1.91888 -s 3 -d 5 -p cbr -e 210 -c 1 -i 483 -a 1 - -t 1.91928 -s 2 -d 3 -p cbr -e 210 -c 1 -i 499 -a 1 h -t 1.91928 -s 2 -d 3 -p cbr -e 210 -c 1 -i 499 -a 1 r -t 1.91961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 505 -a 1 + -t 1.91961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 505 -a 1 r -t 1.92184 -s 3 -d 5 -p cbr -e 210 -c 1 -i 466 -a 1 r -t 1.92224 -s 2 -d 3 -p cbr -e 210 -c 1 -i 484 -a 1 + -t 1.92224 -s 3 -d 5 -p cbr -e 210 -c 1 -i 484 -a 1 - -t 1.92224 -s 3 -d 5 -p cbr -e 210 -c 1 -i 484 -a 1 h -t 1.92224 -s 3 -d 5 -p cbr -e 210 -c 1 -i 484 -a 1 + -t 1.9225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 522 -a 1 - -t 1.9225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 522 -a 1 h -t 1.9225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 522 -a 1 - -t 1.92264 -s 2 -d 3 -p cbr -e 210 -c 1 -i 501 -a 1 h -t 1.92264 -s 2 -d 3 -p cbr -e 210 -c 1 -i 501 -a 1 r -t 1.92336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 506 -a 1 + -t 1.92336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 506 -a 1 r -t 1.9252 -s 3 -d 5 -p cbr -e 210 -c 1 -i 467 -a 1 r -t 1.9256 -s 2 -d 3 -p cbr -e 210 -c 1 -i 485 -a 1 + -t 1.9256 -s 3 -d 5 -p cbr -e 210 -c 1 -i 485 -a 1 - -t 1.9256 -s 3 -d 5 -p cbr -e 210 -c 1 -i 485 -a 1 h -t 1.9256 -s 3 -d 5 -p cbr -e 210 -c 1 -i 485 -a 1 - -t 1.926 -s 2 -d 3 -p cbr -e 210 -c 1 -i 502 -a 1 h -t 1.926 -s 2 -d 3 -p cbr -e 210 -c 1 -i 502 -a 1 + -t 1.92625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 523 -a 1 - -t 1.92625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 523 -a 1 h -t 1.92625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 523 -a 1 r -t 1.92711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 507 -a 1 + -t 1.92711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 507 -a 1 r -t 1.92856 -s 3 -d 5 -p cbr -e 210 -c 1 -i 470 -a 1 r -t 1.9288 -s 4 -d 3 -p ack -e 40 -c 0 -i 509 -a 0 -S 0 -y {12 12} + -t 1.9288 -s 3 -d 2 -p ack -e 40 -c 0 -i 509 -a 0 -S 0 -y {12 12} - -t 1.9288 -s 3 -d 2 -p ack -e 40 -c 0 -i 509 -a 0 -S 0 -y {12 12} h -t 1.9288 -s 3 -d 2 -p ack -e 40 -c 0 -i 509 -a 0 -S 0 -y {-1 -1} r -t 1.92896 -s 2 -d 3 -p cbr -e 210 -c 1 -i 486 -a 1 + -t 1.92896 -s 3 -d 5 -p cbr -e 210 -c 1 -i 486 -a 1 - -t 1.92896 -s 3 -d 5 -p cbr -e 210 -c 1 -i 486 -a 1 h -t 1.92896 -s 3 -d 5 -p cbr -e 210 -c 1 -i 486 -a 1 - -t 1.92936 -s 2 -d 3 -p cbr -e 210 -c 1 -i 503 -a 1 h -t 1.92936 -s 2 -d 3 -p cbr -e 210 -c 1 -i 503 -a 1 + -t 1.93 -s 1 -d 2 -p cbr -e 210 -c 1 -i 524 -a 1 - -t 1.93 -s 1 -d 2 -p cbr -e 210 -c 1 -i 524 -a 1 h -t 1.93 -s 1 -d 2 -p cbr -e 210 -c 1 -i 524 -a 1 r -t 1.93086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 508 -a 1 + -t 1.93086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 508 -a 1 r -t 1.93192 -s 3 -d 5 -p cbr -e 210 -c 1 -i 471 -a 1 r -t 1.93232 -s 2 -d 3 -p cbr -e 210 -c 1 -i 487 -a 1 + -t 1.93232 -s 3 -d 5 -p cbr -e 210 -c 1 -i 487 -a 1 - -t 1.93232 -s 3 -d 5 -p cbr -e 210 -c 1 -i 487 -a 1 h -t 1.93232 -s 3 -d 5 -p cbr -e 210 -c 1 -i 487 -a 1 - -t 1.93272 -s 2 -d 3 -p cbr -e 210 -c 1 -i 504 -a 1 h -t 1.93272 -s 2 -d 3 -p cbr -e 210 -c 1 -i 504 -a 1 + -t 1.93375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 525 -a 1 - -t 1.93375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 525 -a 1 h -t 1.93375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 525 -a 1 r -t 1.93461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 510 -a 1 + -t 1.93461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 510 -a 1 r -t 1.93528 -s 3 -d 5 -p cbr -e 210 -c 1 -i 472 -a 1 r -t 1.93568 -s 2 -d 3 -p cbr -e 210 -c 1 -i 488 -a 1 + -t 1.93568 -s 3 -d 5 -p cbr -e 210 -c 1 -i 488 -a 1 - -t 1.93568 -s 3 -d 5 -p cbr -e 210 -c 1 -i 488 -a 1 h -t 1.93568 -s 3 -d 5 -p cbr -e 210 -c 1 -i 488 -a 1 - -t 1.93608 -s 2 -d 3 -p cbr -e 210 -c 1 -i 505 -a 1 h -t 1.93608 -s 2 -d 3 -p cbr -e 210 -c 1 -i 505 -a 1 + -t 1.9375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 526 -a 1 - -t 1.9375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 526 -a 1 h -t 1.9375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 526 -a 1 r -t 1.93836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 511 -a 1 + -t 1.93836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 511 -a 1 r -t 1.93864 -s 3 -d 5 -p cbr -e 210 -c 1 -i 473 -a 1 r -t 1.93904 -s 2 -d 3 -p cbr -e 210 -c 1 -i 489 -a 1 + -t 1.93904 -s 3 -d 5 -p cbr -e 210 -c 1 -i 489 -a 1 - -t 1.93904 -s 3 -d 5 -p cbr -e 210 -c 1 -i 489 -a 1 h -t 1.93904 -s 3 -d 5 -p cbr -e 210 -c 1 -i 489 -a 1 - -t 1.93944 -s 2 -d 3 -p cbr -e 210 -c 1 -i 506 -a 1 h -t 1.93944 -s 2 -d 3 -p cbr -e 210 -c 1 -i 506 -a 1 + -t 1.94125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 527 -a 1 - -t 1.94125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 527 -a 1 h -t 1.94125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 527 -a 1 r -t 1.942 -s 3 -d 5 -p cbr -e 210 -c 1 -i 474 -a 1 r -t 1.94211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 512 -a 1 + -t 1.94211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 512 -a 1 r -t 1.9424 -s 2 -d 3 -p cbr -e 210 -c 1 -i 490 -a 1 + -t 1.9424 -s 3 -d 5 -p cbr -e 210 -c 1 -i 490 -a 1 - -t 1.9424 -s 3 -d 5 -p cbr -e 210 -c 1 -i 490 -a 1 h -t 1.9424 -s 3 -d 5 -p cbr -e 210 -c 1 -i 490 -a 1 - -t 1.9428 -s 2 -d 3 -p cbr -e 210 -c 1 -i 507 -a 1 h -t 1.9428 -s 2 -d 3 -p cbr -e 210 -c 1 -i 507 -a 1 + -t 1.945 -s 1 -d 2 -p cbr -e 210 -c 1 -i 528 -a 1 - -t 1.945 -s 1 -d 2 -p cbr -e 210 -c 1 -i 528 -a 1 h -t 1.945 -s 1 -d 2 -p cbr -e 210 -c 1 -i 528 -a 1 r -t 1.94536 -s 3 -d 5 -p cbr -e 210 -c 1 -i 475 -a 1 r -t 1.94576 -s 2 -d 3 -p cbr -e 210 -c 1 -i 491 -a 1 + -t 1.94576 -s 3 -d 5 -p cbr -e 210 -c 1 -i 491 -a 1 - -t 1.94576 -s 3 -d 5 -p cbr -e 210 -c 1 -i 491 -a 1 h -t 1.94576 -s 3 -d 5 -p cbr -e 210 -c 1 -i 491 -a 1 r -t 1.94586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 513 -a 1 + -t 1.94586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 513 -a 1 - -t 1.94616 -s 2 -d 3 -p cbr -e 210 -c 1 -i 508 -a 1 h -t 1.94616 -s 2 -d 3 -p cbr -e 210 -c 1 -i 508 -a 1 r -t 1.94872 -s 3 -d 5 -p cbr -e 210 -c 1 -i 476 -a 1 + -t 1.94875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 529 -a 1 - -t 1.94875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 529 -a 1 h -t 1.94875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 529 -a 1 r -t 1.94912 -s 2 -d 3 -p cbr -e 210 -c 1 -i 492 -a 1 + -t 1.94912 -s 3 -d 5 -p cbr -e 210 -c 1 -i 492 -a 1 - -t 1.94912 -s 3 -d 5 -p cbr -e 210 -c 1 -i 492 -a 1 h -t 1.94912 -s 3 -d 5 -p cbr -e 210 -c 1 -i 492 -a 1 - -t 1.94952 -s 2 -d 3 -p cbr -e 210 -c 1 -i 510 -a 1 h -t 1.94952 -s 2 -d 3 -p cbr -e 210 -c 1 -i 510 -a 1 r -t 1.94961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 514 -a 1 + -t 1.94961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 514 -a 1 r -t 1.95 -s 3 -d 2 -p ack -e 40 -c 0 -i 500 -a 0 -S 0 -y {11 11} + -t 1.95 -s 2 -d 0 -p ack -e 40 -c 0 -i 500 -a 0 -S 0 -y {11 11} - -t 1.95 -s 2 -d 0 -p ack -e 40 -c 0 -i 500 -a 0 -S 0 -f 0 -m 1 -y {11 11} h -t 1.95 -s 2 -d 0 -p ack -e 40 -c 0 -i 500 -a 0 -S 0 -y {-1 -1} r -t 1.95208 -s 3 -d 5 -p cbr -e 210 -c 1 -i 477 -a 1 r -t 1.95248 -s 2 -d 3 -p cbr -e 210 -c 1 -i 493 -a 1 + -t 1.95248 -s 3 -d 5 -p cbr -e 210 -c 1 -i 493 -a 1 - -t 1.95248 -s 3 -d 5 -p cbr -e 210 -c 1 -i 493 -a 1 h -t 1.95248 -s 3 -d 5 -p cbr -e 210 -c 1 -i 493 -a 1 + -t 1.9525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 530 -a 1 - -t 1.9525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 530 -a 1 h -t 1.9525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 530 -a 1 - -t 1.95288 -s 2 -d 3 -p cbr -e 210 -c 1 -i 511 -a 1 h -t 1.95288 -s 2 -d 3 -p cbr -e 210 -c 1 -i 511 -a 1 r -t 1.95336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 515 -a 1 + -t 1.95336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 515 -a 1 r -t 1.95544 -s 3 -d 5 -p cbr -e 210 -c 1 -i 478 -a 1 r -t 1.95584 -s 2 -d 3 -p cbr -e 210 -c 1 -i 494 -a 1 + -t 1.95584 -s 3 -d 5 -p cbr -e 210 -c 1 -i 494 -a 1 - -t 1.95584 -s 3 -d 5 -p cbr -e 210 -c 1 -i 494 -a 1 h -t 1.95584 -s 3 -d 5 -p cbr -e 210 -c 1 -i 494 -a 1 - -t 1.95624 -s 2 -d 3 -p cbr -e 210 -c 1 -i 512 -a 1 h -t 1.95624 -s 2 -d 3 -p cbr -e 210 -c 1 -i 512 -a 1 + -t 1.95625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 531 -a 1 - -t 1.95625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 531 -a 1 h -t 1.95625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 531 -a 1 r -t 1.95711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 516 -a 1 + -t 1.95711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 516 -a 1 r -t 1.95824 -s 4 -d 3 -p ack -e 40 -c 0 -i 518 -a 0 -S 0 -y {13 13} + -t 1.95824 -s 3 -d 2 -p ack -e 40 -c 0 -i 518 -a 0 -S 0 -y {13 13} - -t 1.95824 -s 3 -d 2 -p ack -e 40 -c 0 -i 518 -a 0 -S 0 -y {13 13} h -t 1.95824 -s 3 -d 2 -p ack -e 40 -c 0 -i 518 -a 0 -S 0 -y {-1 -1} r -t 1.9588 -s 3 -d 5 -p cbr -e 210 -c 1 -i 479 -a 1 r -t 1.9592 -s 2 -d 3 -p cbr -e 210 -c 1 -i 495 -a 1 + -t 1.9592 -s 3 -d 5 -p cbr -e 210 -c 1 -i 495 -a 1 - -t 1.9592 -s 3 -d 5 -p cbr -e 210 -c 1 -i 495 -a 1 h -t 1.9592 -s 3 -d 5 -p cbr -e 210 -c 1 -i 495 -a 1 - -t 1.9596 -s 2 -d 3 -p cbr -e 210 -c 1 -i 513 -a 1 h -t 1.9596 -s 2 -d 3 -p cbr -e 210 -c 1 -i 513 -a 1 + -t 1.96 -s 1 -d 2 -p cbr -e 210 -c 1 -i 532 -a 1 - -t 1.96 -s 1 -d 2 -p cbr -e 210 -c 1 -i 532 -a 1 h -t 1.96 -s 1 -d 2 -p cbr -e 210 -c 1 -i 532 -a 1 r -t 1.96086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 517 -a 1 + -t 1.96086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 517 -a 1 r -t 1.96216 -s 3 -d 5 -p cbr -e 210 -c 1 -i 480 -a 1 r -t 1.96256 -s 2 -d 3 -p cbr -e 210 -c 1 -i 496 -a 1 + -t 1.96256 -s 3 -d 5 -p cbr -e 210 -c 1 -i 496 -a 1 - -t 1.96256 -s 3 -d 5 -p cbr -e 210 -c 1 -i 496 -a 1 h -t 1.96256 -s 3 -d 5 -p cbr -e 210 -c 1 -i 496 -a 1 - -t 1.96296 -s 2 -d 3 -p cbr -e 210 -c 1 -i 514 -a 1 h -t 1.96296 -s 2 -d 3 -p cbr -e 210 -c 1 -i 514 -a 1 + -t 1.96375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 533 -a 1 - -t 1.96375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 533 -a 1 h -t 1.96375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 533 -a 1 r -t 1.96461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 519 -a 1 + -t 1.96461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 519 -a 1 r -t 1.96552 -s 3 -d 5 -p cbr -e 210 -c 1 -i 481 -a 1 r -t 1.96592 -s 2 -d 3 -p cbr -e 210 -c 1 -i 497 -a 1 + -t 1.96592 -s 3 -d 5 -p cbr -e 210 -c 1 -i 497 -a 1 - -t 1.96592 -s 3 -d 5 -p cbr -e 210 -c 1 -i 497 -a 1 h -t 1.96592 -s 3 -d 5 -p cbr -e 210 -c 1 -i 497 -a 1 - -t 1.96632 -s 2 -d 3 -p cbr -e 210 -c 1 -i 515 -a 1 h -t 1.96632 -s 2 -d 3 -p cbr -e 210 -c 1 -i 515 -a 1 + -t 1.9675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 534 -a 1 - -t 1.9675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 534 -a 1 h -t 1.9675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 534 -a 1 r -t 1.96836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 520 -a 1 + -t 1.96836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 520 -a 1 r -t 1.96888 -s 3 -d 5 -p cbr -e 210 -c 1 -i 482 -a 1 r -t 1.96928 -s 2 -d 3 -p cbr -e 210 -c 1 -i 498 -a 1 + -t 1.96928 -s 3 -d 5 -p cbr -e 210 -c 1 -i 498 -a 1 - -t 1.96928 -s 3 -d 5 -p cbr -e 210 -c 1 -i 498 -a 1 h -t 1.96928 -s 3 -d 5 -p cbr -e 210 -c 1 -i 498 -a 1 - -t 1.96968 -s 2 -d 3 -p cbr -e 210 -c 1 -i 516 -a 1 h -t 1.96968 -s 2 -d 3 -p cbr -e 210 -c 1 -i 516 -a 1 + -t 1.97125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 535 -a 1 - -t 1.97125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 535 -a 1 h -t 1.97125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 535 -a 1 r -t 1.97211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 521 -a 1 + -t 1.97211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 521 -a 1 r -t 1.97224 -s 3 -d 5 -p cbr -e 210 -c 1 -i 483 -a 1 r -t 1.97264 -s 2 -d 3 -p cbr -e 210 -c 1 -i 499 -a 1 + -t 1.97264 -s 3 -d 5 -p cbr -e 210 -c 1 -i 499 -a 1 - -t 1.97264 -s 3 -d 5 -p cbr -e 210 -c 1 -i 499 -a 1 h -t 1.97264 -s 3 -d 5 -p cbr -e 210 -c 1 -i 499 -a 1 - -t 1.97304 -s 2 -d 3 -p cbr -e 210 -c 1 -i 517 -a 1 h -t 1.97304 -s 2 -d 3 -p cbr -e 210 -c 1 -i 517 -a 1 + -t 1.975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 536 -a 1 - -t 1.975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 536 -a 1 h -t 1.975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 536 -a 1 r -t 1.9756 -s 3 -d 5 -p cbr -e 210 -c 1 -i 484 -a 1 r -t 1.97586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 522 -a 1 + -t 1.97586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 522 -a 1 r -t 1.976 -s 2 -d 3 -p cbr -e 210 -c 1 -i 501 -a 1 + -t 1.976 -s 3 -d 5 -p cbr -e 210 -c 1 -i 501 -a 1 - -t 1.976 -s 3 -d 5 -p cbr -e 210 -c 1 -i 501 -a 1 h -t 1.976 -s 3 -d 5 -p cbr -e 210 -c 1 -i 501 -a 1 - -t 1.9764 -s 2 -d 3 -p cbr -e 210 -c 1 -i 519 -a 1 h -t 1.9764 -s 2 -d 3 -p cbr -e 210 -c 1 -i 519 -a 1 + -t 1.97875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 537 -a 1 - -t 1.97875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 537 -a 1 h -t 1.97875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 537 -a 1 r -t 1.97896 -s 3 -d 5 -p cbr -e 210 -c 1 -i 485 -a 1 r -t 1.97936 -s 2 -d 3 -p cbr -e 210 -c 1 -i 502 -a 1 + -t 1.97936 -s 3 -d 5 -p cbr -e 210 -c 1 -i 502 -a 1 - -t 1.97936 -s 3 -d 5 -p cbr -e 210 -c 1 -i 502 -a 1 h -t 1.97936 -s 3 -d 5 -p cbr -e 210 -c 1 -i 502 -a 1 r -t 1.97944 -s 3 -d 2 -p ack -e 40 -c 0 -i 509 -a 0 -S 0 -y {12 12} + -t 1.97944 -s 2 -d 0 -p ack -e 40 -c 0 -i 509 -a 0 -S 0 -y {12 12} - -t 1.97944 -s 2 -d 0 -p ack -e 40 -c 0 -i 509 -a 0 -S 0 -f 0 -m 1 -y {12 12} h -t 1.97944 -s 2 -d 0 -p ack -e 40 -c 0 -i 509 -a 0 -S 0 -y {-1 -1} r -t 1.97961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 523 -a 1 + -t 1.97961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 523 -a 1 - -t 1.97976 -s 2 -d 3 -p cbr -e 210 -c 1 -i 520 -a 1 h -t 1.97976 -s 2 -d 3 -p cbr -e 210 -c 1 -i 520 -a 1 r -t 1.98232 -s 3 -d 5 -p cbr -e 210 -c 1 -i 486 -a 1 + -t 1.9825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 538 -a 1 - -t 1.9825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 538 -a 1 h -t 1.9825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 538 -a 1 r -t 1.98272 -s 2 -d 3 -p cbr -e 210 -c 1 -i 503 -a 1 + -t 1.98272 -s 3 -d 5 -p cbr -e 210 -c 1 -i 503 -a 1 - -t 1.98272 -s 3 -d 5 -p cbr -e 210 -c 1 -i 503 -a 1 h -t 1.98272 -s 3 -d 5 -p cbr -e 210 -c 1 -i 503 -a 1 - -t 1.98312 -s 2 -d 3 -p cbr -e 210 -c 1 -i 521 -a 1 h -t 1.98312 -s 2 -d 3 -p cbr -e 210 -c 1 -i 521 -a 1 r -t 1.98336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 524 -a 1 + -t 1.98336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 524 -a 1 r -t 1.98568 -s 3 -d 5 -p cbr -e 210 -c 1 -i 487 -a 1 r -t 1.98608 -s 2 -d 3 -p cbr -e 210 -c 1 -i 504 -a 1 + -t 1.98608 -s 3 -d 5 -p cbr -e 210 -c 1 -i 504 -a 1 - -t 1.98608 -s 3 -d 5 -p cbr -e 210 -c 1 -i 504 -a 1 h -t 1.98608 -s 3 -d 5 -p cbr -e 210 -c 1 -i 504 -a 1 + -t 1.98625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 539 -a 1 - -t 1.98625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 539 -a 1 h -t 1.98625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 539 -a 1 - -t 1.98648 -s 2 -d 3 -p cbr -e 210 -c 1 -i 522 -a 1 h -t 1.98648 -s 2 -d 3 -p cbr -e 210 -c 1 -i 522 -a 1 r -t 1.98711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 525 -a 1 + -t 1.98711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 525 -a 1 r -t 1.98904 -s 3 -d 5 -p cbr -e 210 -c 1 -i 488 -a 1 r -t 1.98944 -s 2 -d 3 -p cbr -e 210 -c 1 -i 505 -a 1 + -t 1.98944 -s 3 -d 5 -p cbr -e 210 -c 1 -i 505 -a 1 - -t 1.98944 -s 3 -d 5 -p cbr -e 210 -c 1 -i 505 -a 1 h -t 1.98944 -s 3 -d 5 -p cbr -e 210 -c 1 -i 505 -a 1 - -t 1.98984 -s 2 -d 3 -p cbr -e 210 -c 1 -i 523 -a 1 h -t 1.98984 -s 2 -d 3 -p cbr -e 210 -c 1 -i 523 -a 1 + -t 1.99 -s 1 -d 2 -p cbr -e 210 -c 1 -i 540 -a 1 - -t 1.99 -s 1 -d 2 -p cbr -e 210 -c 1 -i 540 -a 1 h -t 1.99 -s 1 -d 2 -p cbr -e 210 -c 1 -i 540 -a 1 r -t 1.99086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 526 -a 1 + -t 1.99086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 526 -a 1 r -t 1.9924 -s 3 -d 5 -p cbr -e 210 -c 1 -i 489 -a 1 r -t 1.9928 -s 2 -d 3 -p cbr -e 210 -c 1 -i 506 -a 1 + -t 1.9928 -s 3 -d 5 -p cbr -e 210 -c 1 -i 506 -a 1 - -t 1.9928 -s 3 -d 5 -p cbr -e 210 -c 1 -i 506 -a 1 h -t 1.9928 -s 3 -d 5 -p cbr -e 210 -c 1 -i 506 -a 1 - -t 1.9932 -s 2 -d 3 -p cbr -e 210 -c 1 -i 524 -a 1 h -t 1.9932 -s 2 -d 3 -p cbr -e 210 -c 1 -i 524 -a 1 + -t 1.99375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 541 -a 1 - -t 1.99375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 541 -a 1 h -t 1.99375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 541 -a 1 r -t 1.99461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 527 -a 1 + -t 1.99461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 527 -a 1 r -t 1.99576 -s 3 -d 5 -p cbr -e 210 -c 1 -i 490 -a 1 r -t 1.99616 -s 2 -d 3 -p cbr -e 210 -c 1 -i 507 -a 1 + -t 1.99616 -s 3 -d 5 -p cbr -e 210 -c 1 -i 507 -a 1 - -t 1.99616 -s 3 -d 5 -p cbr -e 210 -c 1 -i 507 -a 1 h -t 1.99616 -s 3 -d 5 -p cbr -e 210 -c 1 -i 507 -a 1 - -t 1.99656 -s 2 -d 3 -p cbr -e 210 -c 1 -i 525 -a 1 h -t 1.99656 -s 2 -d 3 -p cbr -e 210 -c 1 -i 525 -a 1 + -t 1.9975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 542 -a 1 - -t 1.9975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 542 -a 1 h -t 1.9975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 542 -a 1 r -t 1.99836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 528 -a 1 + -t 1.99836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 528 -a 1 r -t 1.99912 -s 3 -d 5 -p cbr -e 210 -c 1 -i 491 -a 1 r -t 1.99952 -s 2 -d 3 -p cbr -e 210 -c 1 -i 508 -a 1 + -t 1.99952 -s 3 -d 5 -p cbr -e 210 -c 1 -i 508 -a 1 - -t 1.99952 -s 3 -d 5 -p cbr -e 210 -c 1 -i 508 -a 1 h -t 1.99952 -s 3 -d 5 -p cbr -e 210 -c 1 -i 508 -a 1 - -t 1.99992 -s 2 -d 3 -p cbr -e 210 -c 1 -i 526 -a 1 h -t 1.99992 -s 2 -d 3 -p cbr -e 210 -c 1 -i 526 -a 1 r -t 2.00064 -s 2 -d 0 -p ack -e 40 -c 0 -i 500 -a 0 -S 0 -y {11 11} + -t 2.00064 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 543 -a 0 -S 0 -f 0 -m 0 -y {15 15} - -t 2.00064 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 543 -a 0 -S 0 -y {15 15} h -t 2.00064 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 543 -a 0 -S 0 -y {-1 -1} + -t 2.00125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 544 -a 1 - -t 2.00125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 544 -a 1 h -t 2.00125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 544 -a 1 r -t 2.00211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 529 -a 1 + -t 2.00211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 529 -a 1 r -t 2.00248 -s 3 -d 5 -p cbr -e 210 -c 1 -i 492 -a 1 r -t 2.00288 -s 2 -d 3 -p cbr -e 210 -c 1 -i 510 -a 1 + -t 2.00288 -s 3 -d 5 -p cbr -e 210 -c 1 -i 510 -a 1 - -t 2.00288 -s 3 -d 5 -p cbr -e 210 -c 1 -i 510 -a 1 h -t 2.00288 -s 3 -d 5 -p cbr -e 210 -c 1 -i 510 -a 1 - -t 2.00328 -s 2 -d 3 -p cbr -e 210 -c 1 -i 527 -a 1 h -t 2.00328 -s 2 -d 3 -p cbr -e 210 -c 1 -i 527 -a 1 + -t 2.005 -s 1 -d 2 -p cbr -e 210 -c 1 -i 545 -a 1 - -t 2.005 -s 1 -d 2 -p cbr -e 210 -c 1 -i 545 -a 1 h -t 2.005 -s 1 -d 2 -p cbr -e 210 -c 1 -i 545 -a 1 r -t 2.00584 -s 3 -d 5 -p cbr -e 210 -c 1 -i 493 -a 1 r -t 2.00586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 530 -a 1 + -t 2.00586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 530 -a 1 r -t 2.00624 -s 2 -d 3 -p cbr -e 210 -c 1 -i 511 -a 1 + -t 2.00624 -s 3 -d 5 -p cbr -e 210 -c 1 -i 511 -a 1 - -t 2.00624 -s 3 -d 5 -p cbr -e 210 -c 1 -i 511 -a 1 h -t 2.00624 -s 3 -d 5 -p cbr -e 210 -c 1 -i 511 -a 1 - -t 2.00664 -s 2 -d 3 -p cbr -e 210 -c 1 -i 528 -a 1 h -t 2.00664 -s 2 -d 3 -p cbr -e 210 -c 1 -i 528 -a 1 + -t 2.00875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 546 -a 1 - -t 2.00875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 546 -a 1 h -t 2.00875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 546 -a 1 r -t 2.00888 -s 3 -d 2 -p ack -e 40 -c 0 -i 518 -a 0 -S 0 -y {13 13} + -t 2.00888 -s 2 -d 0 -p ack -e 40 -c 0 -i 518 -a 0 -S 0 -y {13 13} - -t 2.00888 -s 2 -d 0 -p ack -e 40 -c 0 -i 518 -a 0 -S 0 -f 0 -m 1 -y {13 13} h -t 2.00888 -s 2 -d 0 -p ack -e 40 -c 0 -i 518 -a 0 -S 0 -y {-1 -1} r -t 2.0092 -s 3 -d 5 -p cbr -e 210 -c 1 -i 494 -a 1 r -t 2.0096 -s 2 -d 3 -p cbr -e 210 -c 1 -i 512 -a 1 + -t 2.0096 -s 3 -d 5 -p cbr -e 210 -c 1 -i 512 -a 1 - -t 2.0096 -s 3 -d 5 -p cbr -e 210 -c 1 -i 512 -a 1 h -t 2.0096 -s 3 -d 5 -p cbr -e 210 -c 1 -i 512 -a 1 r -t 2.00961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 531 -a 1 + -t 2.00961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 531 -a 1 - -t 2.01 -s 2 -d 3 -p cbr -e 210 -c 1 -i 529 -a 1 h -t 2.01 -s 2 -d 3 -p cbr -e 210 -c 1 -i 529 -a 1 + -t 2.0125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 547 -a 1 - -t 2.0125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 547 -a 1 h -t 2.0125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 547 -a 1 r -t 2.01256 -s 3 -d 5 -p cbr -e 210 -c 1 -i 495 -a 1 r -t 2.01296 -s 2 -d 3 -p cbr -e 210 -c 1 -i 513 -a 1 + -t 2.01296 -s 3 -d 5 -p cbr -e 210 -c 1 -i 513 -a 1 - -t 2.01296 -s 3 -d 5 -p cbr -e 210 -c 1 -i 513 -a 1 h -t 2.01296 -s 3 -d 5 -p cbr -e 210 -c 1 -i 513 -a 1 r -t 2.01336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 532 -a 1 + -t 2.01336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 532 -a 1 - -t 2.01336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 530 -a 1 h -t 2.01336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 530 -a 1 r -t 2.01592 -s 3 -d 5 -p cbr -e 210 -c 1 -i 496 -a 1 + -t 2.01625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 548 -a 1 - -t 2.01625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 548 -a 1 h -t 2.01625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 548 -a 1 r -t 2.01632 -s 2 -d 3 -p cbr -e 210 -c 1 -i 514 -a 1 + -t 2.01632 -s 3 -d 5 -p cbr -e 210 -c 1 -i 514 -a 1 - -t 2.01632 -s 3 -d 5 -p cbr -e 210 -c 1 -i 514 -a 1 h -t 2.01632 -s 3 -d 5 -p cbr -e 210 -c 1 -i 514 -a 1 - -t 2.01672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 531 -a 1 h -t 2.01672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 531 -a 1 r -t 2.01711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 533 -a 1 + -t 2.01711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 533 -a 1 r -t 2.01928 -s 3 -d 5 -p cbr -e 210 -c 1 -i 497 -a 1 r -t 2.01968 -s 2 -d 3 -p cbr -e 210 -c 1 -i 515 -a 1 + -t 2.01968 -s 3 -d 5 -p cbr -e 210 -c 1 -i 515 -a 1 - -t 2.01968 -s 3 -d 5 -p cbr -e 210 -c 1 -i 515 -a 1 h -t 2.01968 -s 3 -d 5 -p cbr -e 210 -c 1 -i 515 -a 1 + -t 2.02 -s 1 -d 2 -p cbr -e 210 -c 1 -i 549 -a 1 - -t 2.02 -s 1 -d 2 -p cbr -e 210 -c 1 -i 549 -a 1 h -t 2.02 -s 1 -d 2 -p cbr -e 210 -c 1 -i 549 -a 1 - -t 2.02008 -s 2 -d 3 -p cbr -e 210 -c 1 -i 532 -a 1 h -t 2.02008 -s 2 -d 3 -p cbr -e 210 -c 1 -i 532 -a 1 r -t 2.02086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 534 -a 1 + -t 2.02086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 534 -a 1 r -t 2.02264 -s 3 -d 5 -p cbr -e 210 -c 1 -i 498 -a 1 r -t 2.02304 -s 2 -d 3 -p cbr -e 210 -c 1 -i 516 -a 1 + -t 2.02304 -s 3 -d 5 -p cbr -e 210 -c 1 -i 516 -a 1 - -t 2.02304 -s 3 -d 5 -p cbr -e 210 -c 1 -i 516 -a 1 h -t 2.02304 -s 3 -d 5 -p cbr -e 210 -c 1 -i 516 -a 1 - -t 2.02344 -s 2 -d 3 -p cbr -e 210 -c 1 -i 533 -a 1 h -t 2.02344 -s 2 -d 3 -p cbr -e 210 -c 1 -i 533 -a 1 + -t 2.02375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 550 -a 1 - -t 2.02375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 550 -a 1 h -t 2.02375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 550 -a 1 r -t 2.02461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 535 -a 1 + -t 2.02461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 535 -a 1 r -t 2.026 -s 3 -d 5 -p cbr -e 210 -c 1 -i 499 -a 1 r -t 2.0264 -s 2 -d 3 -p cbr -e 210 -c 1 -i 517 -a 1 + -t 2.0264 -s 3 -d 5 -p cbr -e 210 -c 1 -i 517 -a 1 - -t 2.0264 -s 3 -d 5 -p cbr -e 210 -c 1 -i 517 -a 1 h -t 2.0264 -s 3 -d 5 -p cbr -e 210 -c 1 -i 517 -a 1 - -t 2.0268 -s 2 -d 3 -p cbr -e 210 -c 1 -i 534 -a 1 h -t 2.0268 -s 2 -d 3 -p cbr -e 210 -c 1 -i 534 -a 1 + -t 2.0275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 551 -a 1 - -t 2.0275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 551 -a 1 h -t 2.0275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 551 -a 1 r -t 2.02836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 536 -a 1 + -t 2.02836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 536 -a 1 r -t 2.02936 -s 3 -d 5 -p cbr -e 210 -c 1 -i 501 -a 1 r -t 2.02976 -s 2 -d 3 -p cbr -e 210 -c 1 -i 519 -a 1 + -t 2.02976 -s 3 -d 5 -p cbr -e 210 -c 1 -i 519 -a 1 - -t 2.02976 -s 3 -d 5 -p cbr -e 210 -c 1 -i 519 -a 1 h -t 2.02976 -s 3 -d 5 -p cbr -e 210 -c 1 -i 519 -a 1 r -t 2.03008 -s 2 -d 0 -p ack -e 40 -c 0 -i 509 -a 0 -S 0 -y {12 12} + -t 2.03008 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 552 -a 0 -S 0 -f 0 -m 0 -y {16 16} - -t 2.03008 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 552 -a 0 -S 0 -y {16 16} h -t 2.03008 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 552 -a 0 -S 0 -y {-1 -1} - -t 2.03016 -s 2 -d 3 -p cbr -e 210 -c 1 -i 535 -a 1 h -t 2.03016 -s 2 -d 3 -p cbr -e 210 -c 1 -i 535 -a 1 + -t 2.03125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 553 -a 1 - -t 2.03125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 553 -a 1 h -t 2.03125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 553 -a 1 r -t 2.03211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 537 -a 1 + -t 2.03211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 537 -a 1 r -t 2.03272 -s 3 -d 5 -p cbr -e 210 -c 1 -i 502 -a 1 r -t 2.03312 -s 2 -d 3 -p cbr -e 210 -c 1 -i 520 -a 1 + -t 2.03312 -s 3 -d 5 -p cbr -e 210 -c 1 -i 520 -a 1 - -t 2.03312 -s 3 -d 5 -p cbr -e 210 -c 1 -i 520 -a 1 h -t 2.03312 -s 3 -d 5 -p cbr -e 210 -c 1 -i 520 -a 1 - -t 2.03352 -s 2 -d 3 -p cbr -e 210 -c 1 -i 536 -a 1 h -t 2.03352 -s 2 -d 3 -p cbr -e 210 -c 1 -i 536 -a 1 + -t 2.035 -s 1 -d 2 -p cbr -e 210 -c 1 -i 554 -a 1 - -t 2.035 -s 1 -d 2 -p cbr -e 210 -c 1 -i 554 -a 1 h -t 2.035 -s 1 -d 2 -p cbr -e 210 -c 1 -i 554 -a 1 r -t 2.03586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 538 -a 1 + -t 2.03586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 538 -a 1 r -t 2.03608 -s 3 -d 5 -p cbr -e 210 -c 1 -i 503 -a 1 r -t 2.03648 -s 2 -d 3 -p cbr -e 210 -c 1 -i 521 -a 1 + -t 2.03648 -s 3 -d 5 -p cbr -e 210 -c 1 -i 521 -a 1 - -t 2.03648 -s 3 -d 5 -p cbr -e 210 -c 1 -i 521 -a 1 h -t 2.03648 -s 3 -d 5 -p cbr -e 210 -c 1 -i 521 -a 1 - -t 2.03688 -s 2 -d 3 -p cbr -e 210 -c 1 -i 537 -a 1 h -t 2.03688 -s 2 -d 3 -p cbr -e 210 -c 1 -i 537 -a 1 + -t 2.03875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 555 -a 1 - -t 2.03875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 555 -a 1 h -t 2.03875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 555 -a 1 r -t 2.03944 -s 3 -d 5 -p cbr -e 210 -c 1 -i 504 -a 1 r -t 2.03961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 539 -a 1 + -t 2.03961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 539 -a 1 r -t 2.03984 -s 2 -d 3 -p cbr -e 210 -c 1 -i 522 -a 1 + -t 2.03984 -s 3 -d 5 -p cbr -e 210 -c 1 -i 522 -a 1 - -t 2.03984 -s 3 -d 5 -p cbr -e 210 -c 1 -i 522 -a 1 h -t 2.03984 -s 3 -d 5 -p cbr -e 210 -c 1 -i 522 -a 1 - -t 2.04024 -s 2 -d 3 -p cbr -e 210 -c 1 -i 538 -a 1 h -t 2.04024 -s 2 -d 3 -p cbr -e 210 -c 1 -i 538 -a 1 + -t 2.0425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 556 -a 1 - -t 2.0425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 556 -a 1 h -t 2.0425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 556 -a 1 r -t 2.0428 -s 3 -d 5 -p cbr -e 210 -c 1 -i 505 -a 1 r -t 2.0432 -s 2 -d 3 -p cbr -e 210 -c 1 -i 523 -a 1 + -t 2.0432 -s 3 -d 5 -p cbr -e 210 -c 1 -i 523 -a 1 - -t 2.0432 -s 3 -d 5 -p cbr -e 210 -c 1 -i 523 -a 1 h -t 2.0432 -s 3 -d 5 -p cbr -e 210 -c 1 -i 523 -a 1 r -t 2.04336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 540 -a 1 + -t 2.04336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 540 -a 1 - -t 2.0436 -s 2 -d 3 -p cbr -e 210 -c 1 -i 539 -a 1 h -t 2.0436 -s 2 -d 3 -p cbr -e 210 -c 1 -i 539 -a 1 r -t 2.04616 -s 3 -d 5 -p cbr -e 210 -c 1 -i 506 -a 1 + -t 2.04625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 557 -a 1 - -t 2.04625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 557 -a 1 h -t 2.04625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 557 -a 1 r -t 2.04656 -s 2 -d 3 -p cbr -e 210 -c 1 -i 524 -a 1 + -t 2.04656 -s 3 -d 5 -p cbr -e 210 -c 1 -i 524 -a 1 - -t 2.04656 -s 3 -d 5 -p cbr -e 210 -c 1 -i 524 -a 1 h -t 2.04656 -s 3 -d 5 -p cbr -e 210 -c 1 -i 524 -a 1 - -t 2.04696 -s 2 -d 3 -p cbr -e 210 -c 1 -i 540 -a 1 h -t 2.04696 -s 2 -d 3 -p cbr -e 210 -c 1 -i 540 -a 1 r -t 2.04711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 541 -a 1 + -t 2.04711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 541 -a 1 r -t 2.04952 -s 3 -d 5 -p cbr -e 210 -c 1 -i 507 -a 1 r -t 2.04992 -s 2 -d 3 -p cbr -e 210 -c 1 -i 525 -a 1 + -t 2.04992 -s 3 -d 5 -p cbr -e 210 -c 1 -i 525 -a 1 - -t 2.04992 -s 3 -d 5 -p cbr -e 210 -c 1 -i 525 -a 1 h -t 2.04992 -s 3 -d 5 -p cbr -e 210 -c 1 -i 525 -a 1 + -t 2.05 -s 1 -d 2 -p cbr -e 210 -c 1 -i 558 -a 1 - -t 2.05 -s 1 -d 2 -p cbr -e 210 -c 1 -i 558 -a 1 h -t 2.05 -s 1 -d 2 -p cbr -e 210 -c 1 -i 558 -a 1 - -t 2.05032 -s 2 -d 3 -p cbr -e 210 -c 1 -i 541 -a 1 h -t 2.05032 -s 2 -d 3 -p cbr -e 210 -c 1 -i 541 -a 1 r -t 2.05086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 542 -a 1 + -t 2.05086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 542 -a 1 r -t 2.05288 -s 3 -d 5 -p cbr -e 210 -c 1 -i 508 -a 1 r -t 2.05328 -s 2 -d 3 -p cbr -e 210 -c 1 -i 526 -a 1 + -t 2.05328 -s 3 -d 5 -p cbr -e 210 -c 1 -i 526 -a 1 - -t 2.05328 -s 3 -d 5 -p cbr -e 210 -c 1 -i 526 -a 1 h -t 2.05328 -s 3 -d 5 -p cbr -e 210 -c 1 -i 526 -a 1 - -t 2.05368 -s 2 -d 3 -p cbr -e 210 -c 1 -i 542 -a 1 h -t 2.05368 -s 2 -d 3 -p cbr -e 210 -c 1 -i 542 -a 1 + -t 2.05375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 559 -a 1 - -t 2.05375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 559 -a 1 h -t 2.05375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 559 -a 1 r -t 2.05461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 544 -a 1 + -t 2.05461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 544 -a 1 r -t 2.05624 -s 3 -d 5 -p cbr -e 210 -c 1 -i 510 -a 1 r -t 2.05664 -s 2 -d 3 -p cbr -e 210 -c 1 -i 527 -a 1 + -t 2.05664 -s 3 -d 5 -p cbr -e 210 -c 1 -i 527 -a 1 - -t 2.05664 -s 3 -d 5 -p cbr -e 210 -c 1 -i 527 -a 1 h -t 2.05664 -s 3 -d 5 -p cbr -e 210 -c 1 -i 527 -a 1 - -t 2.05704 -s 2 -d 3 -p cbr -e 210 -c 1 -i 544 -a 1 h -t 2.05704 -s 2 -d 3 -p cbr -e 210 -c 1 -i 544 -a 1 + -t 2.0575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 560 -a 1 - -t 2.0575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 560 -a 1 h -t 2.0575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 560 -a 1 r -t 2.05836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 545 -a 1 + -t 2.05836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 545 -a 1 r -t 2.05952 -s 2 -d 0 -p ack -e 40 -c 0 -i 518 -a 0 -S 0 -y {13 13} + -t 2.05952 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 561 -a 0 -S 0 -f 0 -m 0 -y {17 17} - -t 2.05952 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 561 -a 0 -S 0 -y {17 17} h -t 2.05952 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 561 -a 0 -S 0 -y {-1 -1} r -t 2.0596 -s 3 -d 5 -p cbr -e 210 -c 1 -i 511 -a 1 r -t 2.06 -s 2 -d 3 -p cbr -e 210 -c 1 -i 528 -a 1 + -t 2.06 -s 3 -d 5 -p cbr -e 210 -c 1 -i 528 -a 1 - -t 2.06 -s 3 -d 5 -p cbr -e 210 -c 1 -i 528 -a 1 h -t 2.06 -s 3 -d 5 -p cbr -e 210 -c 1 -i 528 -a 1 - -t 2.0604 -s 2 -d 3 -p cbr -e 210 -c 1 -i 545 -a 1 h -t 2.0604 -s 2 -d 3 -p cbr -e 210 -c 1 -i 545 -a 1 + -t 2.06125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 562 -a 1 - -t 2.06125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 562 -a 1 h -t 2.06125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 562 -a 1 r -t 2.06211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 546 -a 1 + -t 2.06211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 546 -a 1 r -t 2.06296 -s 3 -d 5 -p cbr -e 210 -c 1 -i 512 -a 1 r -t 2.06336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 529 -a 1 + -t 2.06336 -s 3 -d 5 -p cbr -e 210 -c 1 -i 529 -a 1 - -t 2.06336 -s 3 -d 5 -p cbr -e 210 -c 1 -i 529 -a 1 h -t 2.06336 -s 3 -d 5 -p cbr -e 210 -c 1 -i 529 -a 1 - -t 2.06376 -s 2 -d 3 -p cbr -e 210 -c 1 -i 546 -a 1 h -t 2.06376 -s 2 -d 3 -p cbr -e 210 -c 1 -i 546 -a 1 + -t 2.065 -s 1 -d 2 -p cbr -e 210 -c 1 -i 563 -a 1 - -t 2.065 -s 1 -d 2 -p cbr -e 210 -c 1 -i 563 -a 1 h -t 2.065 -s 1 -d 2 -p cbr -e 210 -c 1 -i 563 -a 1 r -t 2.06586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 547 -a 1 + -t 2.06586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 547 -a 1 r -t 2.06632 -s 3 -d 5 -p cbr -e 210 -c 1 -i 513 -a 1 r -t 2.06664 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 543 -a 0 -S 0 -y {15 15} + -t 2.06664 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 543 -a 0 -S 0 -y {15 15} r -t 2.06672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 530 -a 1 + -t 2.06672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 530 -a 1 - -t 2.06672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 530 -a 1 h -t 2.06672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 530 -a 1 - -t 2.06712 -s 2 -d 3 -p cbr -e 210 -c 1 -i 547 -a 1 h -t 2.06712 -s 2 -d 3 -p cbr -e 210 -c 1 -i 547 -a 1 + -t 2.06875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 564 -a 1 - -t 2.06875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 564 -a 1 h -t 2.06875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 564 -a 1 r -t 2.06961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 548 -a 1 + -t 2.06961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 548 -a 1 r -t 2.06968 -s 3 -d 5 -p cbr -e 210 -c 1 -i 514 -a 1 r -t 2.07008 -s 2 -d 3 -p cbr -e 210 -c 1 -i 531 -a 1 + -t 2.07008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 531 -a 1 - -t 2.07008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 531 -a 1 h -t 2.07008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 531 -a 1 - -t 2.07048 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 543 -a 0 -S 0 -y {15 15} h -t 2.07048 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 543 -a 0 -S 0 -y {-1 -1} + -t 2.0725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 565 -a 1 - -t 2.0725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 565 -a 1 h -t 2.0725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 565 -a 1 r -t 2.07304 -s 3 -d 5 -p cbr -e 210 -c 1 -i 515 -a 1 r -t 2.07336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 549 -a 1 + -t 2.07336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 549 -a 1 r -t 2.07344 -s 2 -d 3 -p cbr -e 210 -c 1 -i 532 -a 1 + -t 2.07344 -s 3 -d 5 -p cbr -e 210 -c 1 -i 532 -a 1 - -t 2.07344 -s 3 -d 5 -p cbr -e 210 -c 1 -i 532 -a 1 h -t 2.07344 -s 3 -d 5 -p cbr -e 210 -c 1 -i 532 -a 1 + -t 2.07625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 566 -a 1 - -t 2.07625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 566 -a 1 h -t 2.07625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 566 -a 1 r -t 2.0764 -s 3 -d 5 -p cbr -e 210 -c 1 -i 516 -a 1 r -t 2.0768 -s 2 -d 3 -p cbr -e 210 -c 1 -i 533 -a 1 + -t 2.0768 -s 3 -d 5 -p cbr -e 210 -c 1 -i 533 -a 1 - -t 2.0768 -s 3 -d 5 -p cbr -e 210 -c 1 -i 533 -a 1 h -t 2.0768 -s 3 -d 5 -p cbr -e 210 -c 1 -i 533 -a 1 r -t 2.07711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 550 -a 1 + -t 2.07711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 550 -a 1 r -t 2.07976 -s 3 -d 5 -p cbr -e 210 -c 1 -i 517 -a 1 + -t 2.08 -s 1 -d 2 -p cbr -e 210 -c 1 -i 567 -a 1 - -t 2.08 -s 1 -d 2 -p cbr -e 210 -c 1 -i 567 -a 1 h -t 2.08 -s 1 -d 2 -p cbr -e 210 -c 1 -i 567 -a 1 r -t 2.08016 -s 2 -d 3 -p cbr -e 210 -c 1 -i 534 -a 1 + -t 2.08016 -s 3 -d 5 -p cbr -e 210 -c 1 -i 534 -a 1 - -t 2.08016 -s 3 -d 5 -p cbr -e 210 -c 1 -i 534 -a 1 h -t 2.08016 -s 3 -d 5 -p cbr -e 210 -c 1 -i 534 -a 1 r -t 2.08086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 551 -a 1 + -t 2.08086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 551 -a 1 r -t 2.08312 -s 3 -d 5 -p cbr -e 210 -c 1 -i 519 -a 1 r -t 2.08352 -s 2 -d 3 -p cbr -e 210 -c 1 -i 535 -a 1 + -t 2.08352 -s 3 -d 5 -p cbr -e 210 -c 1 -i 535 -a 1 - -t 2.08352 -s 3 -d 5 -p cbr -e 210 -c 1 -i 535 -a 1 h -t 2.08352 -s 3 -d 5 -p cbr -e 210 -c 1 -i 535 -a 1 + -t 2.08375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 568 -a 1 - -t 2.08375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 568 -a 1 h -t 2.08375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 568 -a 1 r -t 2.08461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 553 -a 1 + -t 2.08461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 553 -a 1 - -t 2.08648 -s 2 -d 3 -p cbr -e 210 -c 1 -i 548 -a 1 h -t 2.08648 -s 2 -d 3 -p cbr -e 210 -c 1 -i 548 -a 1 r -t 2.08648 -s 3 -d 5 -p cbr -e 210 -c 1 -i 520 -a 1 r -t 2.08688 -s 2 -d 3 -p cbr -e 210 -c 1 -i 536 -a 1 + -t 2.08688 -s 3 -d 5 -p cbr -e 210 -c 1 -i 536 -a 1 - -t 2.08688 -s 3 -d 5 -p cbr -e 210 -c 1 -i 536 -a 1 h -t 2.08688 -s 3 -d 5 -p cbr -e 210 -c 1 -i 536 -a 1 + -t 2.0875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 569 -a 1 - -t 2.0875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 569 -a 1 h -t 2.0875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 569 -a 1 r -t 2.08836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 554 -a 1 + -t 2.08836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 554 -a 1 - -t 2.08984 -s 2 -d 3 -p cbr -e 210 -c 1 -i 549 -a 1 h -t 2.08984 -s 2 -d 3 -p cbr -e 210 -c 1 -i 549 -a 1 r -t 2.08984 -s 3 -d 5 -p cbr -e 210 -c 1 -i 521 -a 1 r -t 2.09024 -s 2 -d 3 -p cbr -e 210 -c 1 -i 537 -a 1 + -t 2.09024 -s 3 -d 5 -p cbr -e 210 -c 1 -i 537 -a 1 - -t 2.09024 -s 3 -d 5 -p cbr -e 210 -c 1 -i 537 -a 1 h -t 2.09024 -s 3 -d 5 -p cbr -e 210 -c 1 -i 537 -a 1 + -t 2.09125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 570 -a 1 - -t 2.09125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 570 -a 1 h -t 2.09125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 570 -a 1 r -t 2.09211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 555 -a 1 + -t 2.09211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 555 -a 1 - -t 2.0932 -s 2 -d 3 -p cbr -e 210 -c 1 -i 550 -a 1 h -t 2.0932 -s 2 -d 3 -p cbr -e 210 -c 1 -i 550 -a 1 r -t 2.0932 -s 3 -d 5 -p cbr -e 210 -c 1 -i 522 -a 1 r -t 2.0936 -s 2 -d 3 -p cbr -e 210 -c 1 -i 538 -a 1 + -t 2.0936 -s 3 -d 5 -p cbr -e 210 -c 1 -i 538 -a 1 - -t 2.0936 -s 3 -d 5 -p cbr -e 210 -c 1 -i 538 -a 1 h -t 2.0936 -s 3 -d 5 -p cbr -e 210 -c 1 -i 538 -a 1 + -t 2.095 -s 1 -d 2 -p cbr -e 210 -c 1 -i 571 -a 1 - -t 2.095 -s 1 -d 2 -p cbr -e 210 -c 1 -i 571 -a 1 h -t 2.095 -s 1 -d 2 -p cbr -e 210 -c 1 -i 571 -a 1 r -t 2.09586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 556 -a 1 + -t 2.09586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 556 -a 1 r -t 2.09608 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 552 -a 0 -S 0 -y {16 16} + -t 2.09608 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 552 -a 0 -S 0 -y {16 16} - -t 2.09656 -s 2 -d 3 -p cbr -e 210 -c 1 -i 551 -a 1 h -t 2.09656 -s 2 -d 3 -p cbr -e 210 -c 1 -i 551 -a 1 r -t 2.09656 -s 3 -d 5 -p cbr -e 210 -c 1 -i 523 -a 1 r -t 2.09696 -s 2 -d 3 -p cbr -e 210 -c 1 -i 539 -a 1 + -t 2.09696 -s 3 -d 5 -p cbr -e 210 -c 1 -i 539 -a 1 - -t 2.09696 -s 3 -d 5 -p cbr -e 210 -c 1 -i 539 -a 1 h -t 2.09696 -s 3 -d 5 -p cbr -e 210 -c 1 -i 539 -a 1 + -t 2.09875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 572 -a 1 - -t 2.09875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 572 -a 1 h -t 2.09875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 572 -a 1 r -t 2.09961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 557 -a 1 + -t 2.09961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 557 -a 1 - -t 2.09992 -s 2 -d 3 -p cbr -e 210 -c 1 -i 553 -a 1 h -t 2.09992 -s 2 -d 3 -p cbr -e 210 -c 1 -i 553 -a 1 r -t 2.09992 -s 3 -d 5 -p cbr -e 210 -c 1 -i 524 -a 1 r -t 2.10032 -s 2 -d 3 -p cbr -e 210 -c 1 -i 540 -a 1 + -t 2.10032 -s 3 -d 5 -p cbr -e 210 -c 1 -i 540 -a 1 - -t 2.10032 -s 3 -d 5 -p cbr -e 210 -c 1 -i 540 -a 1 h -t 2.10032 -s 3 -d 5 -p cbr -e 210 -c 1 -i 540 -a 1 + -t 2.1025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 573 -a 1 - -t 2.1025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 573 -a 1 h -t 2.1025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 573 -a 1 - -t 2.10328 -s 2 -d 3 -p cbr -e 210 -c 1 -i 554 -a 1 h -t 2.10328 -s 2 -d 3 -p cbr -e 210 -c 1 -i 554 -a 1 r -t 2.10328 -s 3 -d 5 -p cbr -e 210 -c 1 -i 525 -a 1 r -t 2.10336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 558 -a 1 + -t 2.10336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 558 -a 1 r -t 2.10368 -s 2 -d 3 -p cbr -e 210 -c 1 -i 541 -a 1 + -t 2.10368 -s 3 -d 5 -p cbr -e 210 -c 1 -i 541 -a 1 - -t 2.10368 -s 3 -d 5 -p cbr -e 210 -c 1 -i 541 -a 1 h -t 2.10368 -s 3 -d 5 -p cbr -e 210 -c 1 -i 541 -a 1 + -t 2.10625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 574 -a 1 - -t 2.10625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 574 -a 1 h -t 2.10625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 574 -a 1 - -t 2.10664 -s 2 -d 3 -p cbr -e 210 -c 1 -i 555 -a 1 h -t 2.10664 -s 2 -d 3 -p cbr -e 210 -c 1 -i 555 -a 1 r -t 2.10664 -s 3 -d 5 -p cbr -e 210 -c 1 -i 526 -a 1 r -t 2.10704 -s 2 -d 3 -p cbr -e 210 -c 1 -i 542 -a 1 + -t 2.10704 -s 3 -d 5 -p cbr -e 210 -c 1 -i 542 -a 1 - -t 2.10704 -s 3 -d 5 -p cbr -e 210 -c 1 -i 542 -a 1 h -t 2.10704 -s 3 -d 5 -p cbr -e 210 -c 1 -i 542 -a 1 r -t 2.10711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 559 -a 1 + -t 2.10711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 559 -a 1 + -t 2.11 -s 1 -d 2 -p cbr -e 210 -c 1 -i 575 -a 1 - -t 2.11 -s 1 -d 2 -p cbr -e 210 -c 1 -i 575 -a 1 h -t 2.11 -s 1 -d 2 -p cbr -e 210 -c 1 -i 575 -a 1 - -t 2.11 -s 2 -d 3 -p cbr -e 210 -c 1 -i 556 -a 1 h -t 2.11 -s 2 -d 3 -p cbr -e 210 -c 1 -i 556 -a 1 r -t 2.11 -s 3 -d 5 -p cbr -e 210 -c 1 -i 527 -a 1 r -t 2.1104 -s 2 -d 3 -p cbr -e 210 -c 1 -i 544 -a 1 + -t 2.1104 -s 3 -d 5 -p cbr -e 210 -c 1 -i 544 -a 1 - -t 2.1104 -s 3 -d 5 -p cbr -e 210 -c 1 -i 544 -a 1 h -t 2.1104 -s 3 -d 5 -p cbr -e 210 -c 1 -i 544 -a 1 r -t 2.11086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 560 -a 1 + -t 2.11086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 560 -a 1 - -t 2.11336 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 552 -a 0 -S 0 -y {16 16} h -t 2.11336 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 552 -a 0 -S 0 -y {-1 -1} r -t 2.11336 -s 3 -d 5 -p cbr -e 210 -c 1 -i 528 -a 1 + -t 2.11375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 576 -a 1 - -t 2.11375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 576 -a 1 h -t 2.11375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 576 -a 1 r -t 2.11376 -s 2 -d 3 -p cbr -e 210 -c 1 -i 545 -a 1 + -t 2.11376 -s 3 -d 5 -p cbr -e 210 -c 1 -i 545 -a 1 - -t 2.11376 -s 3 -d 5 -p cbr -e 210 -c 1 -i 545 -a 1 h -t 2.11376 -s 3 -d 5 -p cbr -e 210 -c 1 -i 545 -a 1 r -t 2.11461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 562 -a 1 + -t 2.11461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 562 -a 1 r -t 2.11672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 529 -a 1 r -t 2.11712 -s 2 -d 3 -p cbr -e 210 -c 1 -i 546 -a 1 + -t 2.11712 -s 3 -d 5 -p cbr -e 210 -c 1 -i 546 -a 1 - -t 2.11712 -s 3 -d 5 -p cbr -e 210 -c 1 -i 546 -a 1 h -t 2.11712 -s 3 -d 5 -p cbr -e 210 -c 1 -i 546 -a 1 + -t 2.1175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 577 -a 1 - -t 2.1175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 577 -a 1 h -t 2.1175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 577 -a 1 r -t 2.11836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 563 -a 1 + -t 2.11836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 563 -a 1 r -t 2.12008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 530 -a 1 r -t 2.12048 -s 2 -d 3 -p cbr -e 210 -c 1 -i 547 -a 1 + -t 2.12048 -s 3 -d 5 -p cbr -e 210 -c 1 -i 547 -a 1 - -t 2.12048 -s 3 -d 5 -p cbr -e 210 -c 1 -i 547 -a 1 h -t 2.12048 -s 3 -d 5 -p cbr -e 210 -c 1 -i 547 -a 1 + -t 2.12125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 578 -a 1 - -t 2.12125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 578 -a 1 h -t 2.12125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 578 -a 1 r -t 2.12211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 564 -a 1 + -t 2.12211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 564 -a 1 r -t 2.12344 -s 3 -d 5 -p cbr -e 210 -c 1 -i 531 -a 1 + -t 2.125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 579 -a 1 - -t 2.125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 579 -a 1 h -t 2.125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 579 -a 1 r -t 2.12552 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 561 -a 0 -S 0 -y {17 17} + -t 2.12552 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 561 -a 0 -S 0 -y {17 17} r -t 2.12586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 565 -a 1 + -t 2.12586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 565 -a 1 r -t 2.1268 -s 3 -d 5 -p cbr -e 210 -c 1 -i 532 -a 1 + -t 2.12875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 580 -a 1 - -t 2.12875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 580 -a 1 h -t 2.12875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 580 -a 1 - -t 2.12936 -s 2 -d 3 -p cbr -e 210 -c 1 -i 557 -a 1 h -t 2.12936 -s 2 -d 3 -p cbr -e 210 -c 1 -i 557 -a 1 r -t 2.12961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 566 -a 1 + -t 2.12961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 566 -a 1 r -t 2.13016 -s 3 -d 5 -p cbr -e 210 -c 1 -i 533 -a 1 + -t 2.1325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 581 -a 1 - -t 2.1325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 581 -a 1 h -t 2.1325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 581 -a 1 - -t 2.13272 -s 2 -d 3 -p cbr -e 210 -c 1 -i 558 -a 1 h -t 2.13272 -s 2 -d 3 -p cbr -e 210 -c 1 -i 558 -a 1 r -t 2.13336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 567 -a 1 + -t 2.13336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 567 -a 1 r -t 2.13352 -s 3 -d 5 -p cbr -e 210 -c 1 -i 534 -a 1 - -t 2.13608 -s 2 -d 3 -p cbr -e 210 -c 1 -i 559 -a 1 h -t 2.13608 -s 2 -d 3 -p cbr -e 210 -c 1 -i 559 -a 1 + -t 2.13625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 582 -a 1 - -t 2.13625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 582 -a 1 h -t 2.13625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 582 -a 1 r -t 2.13648 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 543 -a 0 -S 0 -y {15 15} + -t 2.13648 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 543 -a 0 -S 0 -y {15 15} - -t 2.13648 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 543 -a 0 -S 0 -y {15 15} h -t 2.13648 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 543 -a 0 -S 0 -y {-1 -1} r -t 2.13688 -s 3 -d 5 -p cbr -e 210 -c 1 -i 535 -a 1 r -t 2.13711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 568 -a 1 + -t 2.13711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 568 -a 1 - -t 2.13944 -s 2 -d 3 -p cbr -e 210 -c 1 -i 560 -a 1 h -t 2.13944 -s 2 -d 3 -p cbr -e 210 -c 1 -i 560 -a 1 r -t 2.13984 -s 2 -d 3 -p cbr -e 210 -c 1 -i 548 -a 1 + -t 2.13984 -s 3 -d 5 -p cbr -e 210 -c 1 -i 548 -a 1 - -t 2.13984 -s 3 -d 5 -p cbr -e 210 -c 1 -i 548 -a 1 h -t 2.13984 -s 3 -d 5 -p cbr -e 210 -c 1 -i 548 -a 1 + -t 2.14 -s 1 -d 2 -p cbr -e 210 -c 1 -i 583 -a 1 - -t 2.14 -s 1 -d 2 -p cbr -e 210 -c 1 -i 583 -a 1 h -t 2.14 -s 1 -d 2 -p cbr -e 210 -c 1 -i 583 -a 1 r -t 2.14024 -s 3 -d 5 -p cbr -e 210 -c 1 -i 536 -a 1 r -t 2.14086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 569 -a 1 + -t 2.14086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 569 -a 1 - -t 2.1428 -s 2 -d 3 -p cbr -e 210 -c 1 -i 562 -a 1 h -t 2.1428 -s 2 -d 3 -p cbr -e 210 -c 1 -i 562 -a 1 r -t 2.1432 -s 2 -d 3 -p cbr -e 210 -c 1 -i 549 -a 1 + -t 2.1432 -s 3 -d 5 -p cbr -e 210 -c 1 -i 549 -a 1 - -t 2.1432 -s 3 -d 5 -p cbr -e 210 -c 1 -i 549 -a 1 h -t 2.1432 -s 3 -d 5 -p cbr -e 210 -c 1 -i 549 -a 1 r -t 2.1436 -s 3 -d 5 -p cbr -e 210 -c 1 -i 537 -a 1 + -t 2.14375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 584 -a 1 - -t 2.14375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 584 -a 1 h -t 2.14375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 584 -a 1 r -t 2.14461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 570 -a 1 + -t 2.14461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 570 -a 1 - -t 2.14616 -s 2 -d 3 -p cbr -e 210 -c 1 -i 563 -a 1 h -t 2.14616 -s 2 -d 3 -p cbr -e 210 -c 1 -i 563 -a 1 r -t 2.14656 -s 2 -d 3 -p cbr -e 210 -c 1 -i 550 -a 1 + -t 2.14656 -s 3 -d 5 -p cbr -e 210 -c 1 -i 550 -a 1 - -t 2.14656 -s 3 -d 5 -p cbr -e 210 -c 1 -i 550 -a 1 h -t 2.14656 -s 3 -d 5 -p cbr -e 210 -c 1 -i 550 -a 1 r -t 2.14696 -s 3 -d 5 -p cbr -e 210 -c 1 -i 538 -a 1 + -t 2.1475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 585 -a 1 - -t 2.1475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 585 -a 1 h -t 2.1475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 585 -a 1 r -t 2.14836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 571 -a 1 + -t 2.14836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 571 -a 1 - -t 2.14952 -s 2 -d 3 -p cbr -e 210 -c 1 -i 564 -a 1 h -t 2.14952 -s 2 -d 3 -p cbr -e 210 -c 1 -i 564 -a 1 r -t 2.14992 -s 2 -d 3 -p cbr -e 210 -c 1 -i 551 -a 1 + -t 2.14992 -s 3 -d 5 -p cbr -e 210 -c 1 -i 551 -a 1 - -t 2.14992 -s 3 -d 5 -p cbr -e 210 -c 1 -i 551 -a 1 h -t 2.14992 -s 3 -d 5 -p cbr -e 210 -c 1 -i 551 -a 1 r -t 2.15032 -s 3 -d 5 -p cbr -e 210 -c 1 -i 539 -a 1 + -t 2.15125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 586 -a 1 - -t 2.15125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 586 -a 1 h -t 2.15125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 586 -a 1 r -t 2.15211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 572 -a 1 + -t 2.15211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 572 -a 1 - -t 2.15288 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 561 -a 0 -S 0 -y {17 17} h -t 2.15288 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 561 -a 0 -S 0 -y {-1 -1} r -t 2.15328 -s 2 -d 3 -p cbr -e 210 -c 1 -i 553 -a 1 + -t 2.15328 -s 3 -d 5 -p cbr -e 210 -c 1 -i 553 -a 1 - -t 2.15328 -s 3 -d 5 -p cbr -e 210 -c 1 -i 553 -a 1 h -t 2.15328 -s 3 -d 5 -p cbr -e 210 -c 1 -i 553 -a 1 r -t 2.15368 -s 3 -d 5 -p cbr -e 210 -c 1 -i 540 -a 1 + -t 2.155 -s 1 -d 2 -p cbr -e 210 -c 1 -i 587 -a 1 - -t 2.155 -s 1 -d 2 -p cbr -e 210 -c 1 -i 587 -a 1 h -t 2.155 -s 1 -d 2 -p cbr -e 210 -c 1 -i 587 -a 1 r -t 2.15586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 573 -a 1 + -t 2.15586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 573 -a 1 r -t 2.15664 -s 2 -d 3 -p cbr -e 210 -c 1 -i 554 -a 1 + -t 2.15664 -s 3 -d 5 -p cbr -e 210 -c 1 -i 554 -a 1 - -t 2.15664 -s 3 -d 5 -p cbr -e 210 -c 1 -i 554 -a 1 h -t 2.15664 -s 3 -d 5 -p cbr -e 210 -c 1 -i 554 -a 1 r -t 2.15704 -s 3 -d 5 -p cbr -e 210 -c 1 -i 541 -a 1 + -t 2.15875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 588 -a 1 - -t 2.15875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 588 -a 1 h -t 2.15875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 588 -a 1 r -t 2.15961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 574 -a 1 + -t 2.15961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 574 -a 1 d -t 2.15961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 574 -a 1 r -t 2.16 -s 2 -d 3 -p cbr -e 210 -c 1 -i 555 -a 1 + -t 2.16 -s 3 -d 5 -p cbr -e 210 -c 1 -i 555 -a 1 - -t 2.16 -s 3 -d 5 -p cbr -e 210 -c 1 -i 555 -a 1 h -t 2.16 -s 3 -d 5 -p cbr -e 210 -c 1 -i 555 -a 1 r -t 2.1604 -s 3 -d 5 -p cbr -e 210 -c 1 -i 542 -a 1 + -t 2.1625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 589 -a 1 - -t 2.1625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 589 -a 1 h -t 2.1625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 589 -a 1 r -t 2.16336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 575 -a 1 + -t 2.16336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 575 -a 1 d -t 2.16336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 575 -a 1 r -t 2.16336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 556 -a 1 + -t 2.16336 -s 3 -d 5 -p cbr -e 210 -c 1 -i 556 -a 1 - -t 2.16336 -s 3 -d 5 -p cbr -e 210 -c 1 -i 556 -a 1 h -t 2.16336 -s 3 -d 5 -p cbr -e 210 -c 1 -i 556 -a 1 r -t 2.16376 -s 3 -d 5 -p cbr -e 210 -c 1 -i 544 -a 1 + -t 2.16625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 590 -a 1 - -t 2.16625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 590 -a 1 h -t 2.16625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 590 -a 1 r -t 2.16711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 576 -a 1 + -t 2.16711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 576 -a 1 d -t 2.16711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 576 -a 1 r -t 2.16712 -s 3 -d 5 -p cbr -e 210 -c 1 -i 545 -a 1 - -t 2.16888 -s 2 -d 3 -p cbr -e 210 -c 1 -i 565 -a 1 h -t 2.16888 -s 2 -d 3 -p cbr -e 210 -c 1 -i 565 -a 1 + -t 2.17 -s 1 -d 2 -p cbr -e 210 -c 1 -i 591 -a 1 - -t 2.17 -s 1 -d 2 -p cbr -e 210 -c 1 -i 591 -a 1 h -t 2.17 -s 1 -d 2 -p cbr -e 210 -c 1 -i 591 -a 1 r -t 2.17048 -s 3 -d 5 -p cbr -e 210 -c 1 -i 546 -a 1 r -t 2.17086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 577 -a 1 + -t 2.17086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 577 -a 1 - -t 2.17224 -s 2 -d 3 -p cbr -e 210 -c 1 -i 566 -a 1 h -t 2.17224 -s 2 -d 3 -p cbr -e 210 -c 1 -i 566 -a 1 + -t 2.17375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 592 -a 1 - -t 2.17375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 592 -a 1 h -t 2.17375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 592 -a 1 r -t 2.17384 -s 3 -d 5 -p cbr -e 210 -c 1 -i 547 -a 1 r -t 2.17461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 578 -a 1 + -t 2.17461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 578 -a 1 - -t 2.1756 -s 2 -d 3 -p cbr -e 210 -c 1 -i 567 -a 1 h -t 2.1756 -s 2 -d 3 -p cbr -e 210 -c 1 -i 567 -a 1 + -t 2.1775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 593 -a 1 - -t 2.1775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 593 -a 1 h -t 2.1775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 593 -a 1 r -t 2.17836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 579 -a 1 + -t 2.17836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 579 -a 1 - -t 2.17896 -s 2 -d 3 -p cbr -e 210 -c 1 -i 568 -a 1 h -t 2.17896 -s 2 -d 3 -p cbr -e 210 -c 1 -i 568 -a 1 r -t 2.17936 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 552 -a 0 -S 0 -y {16 16} + -t 2.17936 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 552 -a 0 -S 0 -y {16 16} - -t 2.17936 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 552 -a 0 -S 0 -y {16 16} h -t 2.17936 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 552 -a 0 -S 0 -y {-1 -1} + -t 2.18125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 594 -a 1 - -t 2.18125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 594 -a 1 h -t 2.18125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 594 -a 1 r -t 2.18211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 580 -a 1 + -t 2.18211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 580 -a 1 - -t 2.18232 -s 2 -d 3 -p cbr -e 210 -c 1 -i 569 -a 1 h -t 2.18232 -s 2 -d 3 -p cbr -e 210 -c 1 -i 569 -a 1 r -t 2.18272 -s 2 -d 3 -p cbr -e 210 -c 1 -i 557 -a 1 + -t 2.18272 -s 3 -d 5 -p cbr -e 210 -c 1 -i 557 -a 1 - -t 2.18272 -s 3 -d 5 -p cbr -e 210 -c 1 -i 557 -a 1 h -t 2.18272 -s 3 -d 5 -p cbr -e 210 -c 1 -i 557 -a 1 + -t 2.185 -s 1 -d 2 -p cbr -e 210 -c 1 -i 595 -a 1 - -t 2.185 -s 1 -d 2 -p cbr -e 210 -c 1 -i 595 -a 1 h -t 2.185 -s 1 -d 2 -p cbr -e 210 -c 1 -i 595 -a 1 - -t 2.18568 -s 2 -d 3 -p cbr -e 210 -c 1 -i 570 -a 1 h -t 2.18568 -s 2 -d 3 -p cbr -e 210 -c 1 -i 570 -a 1 r -t 2.18586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 581 -a 1 + -t 2.18586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 581 -a 1 r -t 2.18608 -s 2 -d 3 -p cbr -e 210 -c 1 -i 558 -a 1 + -t 2.18608 -s 3 -d 5 -p cbr -e 210 -c 1 -i 558 -a 1 - -t 2.18608 -s 3 -d 5 -p cbr -e 210 -c 1 -i 558 -a 1 h -t 2.18608 -s 3 -d 5 -p cbr -e 210 -c 1 -i 558 -a 1 + -t 2.18875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 596 -a 1 - -t 2.18875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 596 -a 1 h -t 2.18875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 596 -a 1 - -t 2.18904 -s 2 -d 3 -p cbr -e 210 -c 1 -i 571 -a 1 h -t 2.18904 -s 2 -d 3 -p cbr -e 210 -c 1 -i 571 -a 1 r -t 2.18944 -s 2 -d 3 -p cbr -e 210 -c 1 -i 559 -a 1 + -t 2.18944 -s 3 -d 5 -p cbr -e 210 -c 1 -i 559 -a 1 - -t 2.18944 -s 3 -d 5 -p cbr -e 210 -c 1 -i 559 -a 1 h -t 2.18944 -s 3 -d 5 -p cbr -e 210 -c 1 -i 559 -a 1 r -t 2.18961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 582 -a 1 + -t 2.18961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 582 -a 1 - -t 2.1924 -s 2 -d 3 -p cbr -e 210 -c 1 -i 572 -a 1 h -t 2.1924 -s 2 -d 3 -p cbr -e 210 -c 1 -i 572 -a 1 + -t 2.1925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 597 -a 1 - -t 2.1925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 597 -a 1 h -t 2.1925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 597 -a 1 r -t 2.1928 -s 2 -d 3 -p cbr -e 210 -c 1 -i 560 -a 1 + -t 2.1928 -s 3 -d 5 -p cbr -e 210 -c 1 -i 560 -a 1 - -t 2.1928 -s 3 -d 5 -p cbr -e 210 -c 1 -i 560 -a 1 h -t 2.1928 -s 3 -d 5 -p cbr -e 210 -c 1 -i 560 -a 1 r -t 2.1932 -s 3 -d 5 -p cbr -e 210 -c 1 -i 548 -a 1 r -t 2.19336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 583 -a 1 + -t 2.19336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 583 -a 1 - -t 2.19576 -s 2 -d 3 -p cbr -e 210 -c 1 -i 573 -a 1 h -t 2.19576 -s 2 -d 3 -p cbr -e 210 -c 1 -i 573 -a 1 r -t 2.19616 -s 2 -d 3 -p cbr -e 210 -c 1 -i 562 -a 1 + -t 2.19616 -s 3 -d 5 -p cbr -e 210 -c 1 -i 562 -a 1 - -t 2.19616 -s 3 -d 5 -p cbr -e 210 -c 1 -i 562 -a 1 h -t 2.19616 -s 3 -d 5 -p cbr -e 210 -c 1 -i 562 -a 1 + -t 2.19625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 598 -a 1 - -t 2.19625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 598 -a 1 h -t 2.19625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 598 -a 1 r -t 2.19656 -s 3 -d 5 -p cbr -e 210 -c 1 -i 549 -a 1 r -t 2.19711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 584 -a 1 + -t 2.19711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 584 -a 1 - -t 2.19912 -s 2 -d 3 -p cbr -e 210 -c 1 -i 577 -a 1 h -t 2.19912 -s 2 -d 3 -p cbr -e 210 -c 1 -i 577 -a 1 r -t 2.19952 -s 2 -d 3 -p cbr -e 210 -c 1 -i 563 -a 1 + -t 2.19952 -s 3 -d 5 -p cbr -e 210 -c 1 -i 563 -a 1 - -t 2.19952 -s 3 -d 5 -p cbr -e 210 -c 1 -i 563 -a 1 h -t 2.19952 -s 3 -d 5 -p cbr -e 210 -c 1 -i 563 -a 1 r -t 2.19992 -s 3 -d 5 -p cbr -e 210 -c 1 -i 550 -a 1 + -t 2.2 -s 1 -d 2 -p cbr -e 210 -c 1 -i 599 -a 1 - -t 2.2 -s 1 -d 2 -p cbr -e 210 -c 1 -i 599 -a 1 h -t 2.2 -s 1 -d 2 -p cbr -e 210 -c 1 -i 599 -a 1 r -t 2.20086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 585 -a 1 + -t 2.20086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 585 -a 1 - -t 2.20248 -s 2 -d 3 -p cbr -e 210 -c 1 -i 578 -a 1 h -t 2.20248 -s 2 -d 3 -p cbr -e 210 -c 1 -i 578 -a 1 r -t 2.20248 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 543 -a 0 -S 0 -y {15 15} + -t 2.20248 -s 4 -d 3 -p ack -e 40 -c 0 -i 600 -a 0 -S 0 -y {13 13} - -t 2.20248 -s 4 -d 3 -p ack -e 40 -c 0 -i 600 -a 0 -S 0 -y {13 13} h -t 2.20248 -s 4 -d 3 -p ack -e 40 -c 0 -i 600 -a 0 -S 0 -y {-1 -1} r -t 2.20288 -s 2 -d 3 -p cbr -e 210 -c 1 -i 564 -a 1 + -t 2.20288 -s 3 -d 5 -p cbr -e 210 -c 1 -i 564 -a 1 - -t 2.20288 -s 3 -d 5 -p cbr -e 210 -c 1 -i 564 -a 1 h -t 2.20288 -s 3 -d 5 -p cbr -e 210 -c 1 -i 564 -a 1 r -t 2.20328 -s 3 -d 5 -p cbr -e 210 -c 1 -i 551 -a 1 + -t 2.20375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 601 -a 1 - -t 2.20375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 601 -a 1 h -t 2.20375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 601 -a 1 r -t 2.20461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 586 -a 1 + -t 2.20461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 586 -a 1 - -t 2.20584 -s 2 -d 3 -p cbr -e 210 -c 1 -i 579 -a 1 h -t 2.20584 -s 2 -d 3 -p cbr -e 210 -c 1 -i 579 -a 1 r -t 2.20664 -s 3 -d 5 -p cbr -e 210 -c 1 -i 553 -a 1 + -t 2.2075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 602 -a 1 - -t 2.2075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 602 -a 1 h -t 2.2075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 602 -a 1 r -t 2.20836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 587 -a 1 + -t 2.20836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 587 -a 1 - -t 2.2092 -s 2 -d 3 -p cbr -e 210 -c 1 -i 580 -a 1 h -t 2.2092 -s 2 -d 3 -p cbr -e 210 -c 1 -i 580 -a 1 r -t 2.21 -s 3 -d 5 -p cbr -e 210 -c 1 -i 554 -a 1 + -t 2.21125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 603 -a 1 - -t 2.21125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 603 -a 1 h -t 2.21125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 603 -a 1 r -t 2.21211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 588 -a 1 + -t 2.21211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 588 -a 1 - -t 2.21256 -s 2 -d 3 -p cbr -e 210 -c 1 -i 581 -a 1 h -t 2.21256 -s 2 -d 3 -p cbr -e 210 -c 1 -i 581 -a 1 r -t 2.21336 -s 3 -d 5 -p cbr -e 210 -c 1 -i 555 -a 1 + -t 2.215 -s 1 -d 2 -p cbr -e 210 -c 1 -i 604 -a 1 - -t 2.215 -s 1 -d 2 -p cbr -e 210 -c 1 -i 604 -a 1 h -t 2.215 -s 1 -d 2 -p cbr -e 210 -c 1 -i 604 -a 1 r -t 2.21586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 589 -a 1 + -t 2.21586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 589 -a 1 - -t 2.21592 -s 2 -d 3 -p cbr -e 210 -c 1 -i 582 -a 1 h -t 2.21592 -s 2 -d 3 -p cbr -e 210 -c 1 -i 582 -a 1 r -t 2.21672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 556 -a 1 + -t 2.21875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 605 -a 1 - -t 2.21875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 605 -a 1 h -t 2.21875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 605 -a 1 r -t 2.21888 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 561 -a 0 -S 0 -y {17 17} + -t 2.21888 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 561 -a 0 -S 0 -y {17 17} - -t 2.21888 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 561 -a 0 -S 0 -y {17 17} h -t 2.21888 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 561 -a 0 -S 0 -y {-1 -1} - -t 2.21928 -s 2 -d 3 -p cbr -e 210 -c 1 -i 583 -a 1 h -t 2.21928 -s 2 -d 3 -p cbr -e 210 -c 1 -i 583 -a 1 r -t 2.21961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 590 -a 1 + -t 2.21961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 590 -a 1 r -t 2.22224 -s 2 -d 3 -p cbr -e 210 -c 1 -i 565 -a 1 + -t 2.22224 -s 3 -d 5 -p cbr -e 210 -c 1 -i 565 -a 1 - -t 2.22224 -s 3 -d 5 -p cbr -e 210 -c 1 -i 565 -a 1 h -t 2.22224 -s 3 -d 5 -p cbr -e 210 -c 1 -i 565 -a 1 + -t 2.2225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 606 -a 1 - -t 2.2225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 606 -a 1 h -t 2.2225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 606 -a 1 - -t 2.22264 -s 2 -d 3 -p cbr -e 210 -c 1 -i 584 -a 1 h -t 2.22264 -s 2 -d 3 -p cbr -e 210 -c 1 -i 584 -a 1 r -t 2.22336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 591 -a 1 + -t 2.22336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 591 -a 1 r -t 2.2256 -s 2 -d 3 -p cbr -e 210 -c 1 -i 566 -a 1 + -t 2.2256 -s 3 -d 5 -p cbr -e 210 -c 1 -i 566 -a 1 - -t 2.2256 -s 3 -d 5 -p cbr -e 210 -c 1 -i 566 -a 1 h -t 2.2256 -s 3 -d 5 -p cbr -e 210 -c 1 -i 566 -a 1 - -t 2.226 -s 2 -d 3 -p cbr -e 210 -c 1 -i 585 -a 1 h -t 2.226 -s 2 -d 3 -p cbr -e 210 -c 1 -i 585 -a 1 + -t 2.22625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 607 -a 1 - -t 2.22625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 607 -a 1 h -t 2.22625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 607 -a 1 r -t 2.22711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 592 -a 1 + -t 2.22711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 592 -a 1 r -t 2.22896 -s 2 -d 3 -p cbr -e 210 -c 1 -i 567 -a 1 + -t 2.22896 -s 3 -d 5 -p cbr -e 210 -c 1 -i 567 -a 1 - -t 2.22896 -s 3 -d 5 -p cbr -e 210 -c 1 -i 567 -a 1 h -t 2.22896 -s 3 -d 5 -p cbr -e 210 -c 1 -i 567 -a 1 - -t 2.22936 -s 2 -d 3 -p cbr -e 210 -c 1 -i 586 -a 1 h -t 2.22936 -s 2 -d 3 -p cbr -e 210 -c 1 -i 586 -a 1 + -t 2.23 -s 1 -d 2 -p cbr -e 210 -c 1 -i 608 -a 1 - -t 2.23 -s 1 -d 2 -p cbr -e 210 -c 1 -i 608 -a 1 h -t 2.23 -s 1 -d 2 -p cbr -e 210 -c 1 -i 608 -a 1 r -t 2.23086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 593 -a 1 + -t 2.23086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 593 -a 1 r -t 2.23232 -s 2 -d 3 -p cbr -e 210 -c 1 -i 568 -a 1 + -t 2.23232 -s 3 -d 5 -p cbr -e 210 -c 1 -i 568 -a 1 - -t 2.23232 -s 3 -d 5 -p cbr -e 210 -c 1 -i 568 -a 1 h -t 2.23232 -s 3 -d 5 -p cbr -e 210 -c 1 -i 568 -a 1 - -t 2.23272 -s 2 -d 3 -p cbr -e 210 -c 1 -i 587 -a 1 h -t 2.23272 -s 2 -d 3 -p cbr -e 210 -c 1 -i 587 -a 1 + -t 2.23375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 609 -a 1 - -t 2.23375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 609 -a 1 h -t 2.23375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 609 -a 1 r -t 2.23461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 594 -a 1 + -t 2.23461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 594 -a 1 r -t 2.23568 -s 2 -d 3 -p cbr -e 210 -c 1 -i 569 -a 1 + -t 2.23568 -s 3 -d 5 -p cbr -e 210 -c 1 -i 569 -a 1 - -t 2.23568 -s 3 -d 5 -p cbr -e 210 -c 1 -i 569 -a 1 h -t 2.23568 -s 3 -d 5 -p cbr -e 210 -c 1 -i 569 -a 1 - -t 2.23608 -s 2 -d 3 -p cbr -e 210 -c 1 -i 588 -a 1 h -t 2.23608 -s 2 -d 3 -p cbr -e 210 -c 1 -i 588 -a 1 r -t 2.23608 -s 3 -d 5 -p cbr -e 210 -c 1 -i 557 -a 1 + -t 2.2375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 610 -a 1 - -t 2.2375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 610 -a 1 h -t 2.2375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 610 -a 1 r -t 2.23836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 595 -a 1 + -t 2.23836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 595 -a 1 r -t 2.23904 -s 2 -d 3 -p cbr -e 210 -c 1 -i 570 -a 1 + -t 2.23904 -s 3 -d 5 -p cbr -e 210 -c 1 -i 570 -a 1 - -t 2.23904 -s 3 -d 5 -p cbr -e 210 -c 1 -i 570 -a 1 h -t 2.23904 -s 3 -d 5 -p cbr -e 210 -c 1 -i 570 -a 1 - -t 2.23944 -s 2 -d 3 -p cbr -e 210 -c 1 -i 589 -a 1 h -t 2.23944 -s 2 -d 3 -p cbr -e 210 -c 1 -i 589 -a 1 r -t 2.23944 -s 3 -d 5 -p cbr -e 210 -c 1 -i 558 -a 1 + -t 2.24125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 611 -a 1 - -t 2.24125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 611 -a 1 h -t 2.24125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 611 -a 1 r -t 2.24211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 596 -a 1 + -t 2.24211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 596 -a 1 r -t 2.2424 -s 2 -d 3 -p cbr -e 210 -c 1 -i 571 -a 1 + -t 2.2424 -s 3 -d 5 -p cbr -e 210 -c 1 -i 571 -a 1 - -t 2.2424 -s 3 -d 5 -p cbr -e 210 -c 1 -i 571 -a 1 h -t 2.2424 -s 3 -d 5 -p cbr -e 210 -c 1 -i 571 -a 1 - -t 2.2428 -s 2 -d 3 -p cbr -e 210 -c 1 -i 590 -a 1 h -t 2.2428 -s 2 -d 3 -p cbr -e 210 -c 1 -i 590 -a 1 r -t 2.2428 -s 3 -d 5 -p cbr -e 210 -c 1 -i 559 -a 1 + -t 2.245 -s 1 -d 2 -p cbr -e 210 -c 1 -i 612 -a 1 - -t 2.245 -s 1 -d 2 -p cbr -e 210 -c 1 -i 612 -a 1 h -t 2.245 -s 1 -d 2 -p cbr -e 210 -c 1 -i 612 -a 1 r -t 2.24536 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 552 -a 0 -S 0 -y {16 16} + -t 2.24536 -s 4 -d 3 -p ack -e 40 -c 0 -i 613 -a 0 -S 0 -y {13 13} - -t 2.24536 -s 4 -d 3 -p ack -e 40 -c 0 -i 613 -a 0 -S 0 -y {13 13} h -t 2.24536 -s 4 -d 3 -p ack -e 40 -c 0 -i 613 -a 0 -S 0 -y {-1 -1} r -t 2.24576 -s 2 -d 3 -p cbr -e 210 -c 1 -i 572 -a 1 + -t 2.24576 -s 3 -d 5 -p cbr -e 210 -c 1 -i 572 -a 1 - -t 2.24576 -s 3 -d 5 -p cbr -e 210 -c 1 -i 572 -a 1 h -t 2.24576 -s 3 -d 5 -p cbr -e 210 -c 1 -i 572 -a 1 r -t 2.24586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 597 -a 1 + -t 2.24586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 597 -a 1 - -t 2.24616 -s 2 -d 3 -p cbr -e 210 -c 1 -i 591 -a 1 h -t 2.24616 -s 2 -d 3 -p cbr -e 210 -c 1 -i 591 -a 1 r -t 2.24616 -s 3 -d 5 -p cbr -e 210 -c 1 -i 560 -a 1 + -t 2.24875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 614 -a 1 - -t 2.24875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 614 -a 1 h -t 2.24875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 614 -a 1 r -t 2.24912 -s 2 -d 3 -p cbr -e 210 -c 1 -i 573 -a 1 + -t 2.24912 -s 3 -d 5 -p cbr -e 210 -c 1 -i 573 -a 1 - -t 2.24912 -s 3 -d 5 -p cbr -e 210 -c 1 -i 573 -a 1 h -t 2.24912 -s 3 -d 5 -p cbr -e 210 -c 1 -i 573 -a 1 - -t 2.24952 -s 2 -d 3 -p cbr -e 210 -c 1 -i 592 -a 1 h -t 2.24952 -s 2 -d 3 -p cbr -e 210 -c 1 -i 592 -a 1 r -t 2.24952 -s 3 -d 5 -p cbr -e 210 -c 1 -i 562 -a 1 r -t 2.24961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 598 -a 1 + -t 2.24961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 598 -a 1 r -t 2.25248 -s 2 -d 3 -p cbr -e 210 -c 1 -i 577 -a 1 + -t 2.25248 -s 3 -d 5 -p cbr -e 210 -c 1 -i 577 -a 1 - -t 2.25248 -s 3 -d 5 -p cbr -e 210 -c 1 -i 577 -a 1 h -t 2.25248 -s 3 -d 5 -p cbr -e 210 -c 1 -i 577 -a 1 + -t 2.2525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 615 -a 1 - -t 2.2525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 615 -a 1 h -t 2.2525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 615 -a 1 - -t 2.25288 -s 2 -d 3 -p cbr -e 210 -c 1 -i 593 -a 1 h -t 2.25288 -s 2 -d 3 -p cbr -e 210 -c 1 -i 593 -a 1 r -t 2.25288 -s 3 -d 5 -p cbr -e 210 -c 1 -i 563 -a 1 r -t 2.25312 -s 4 -d 3 -p ack -e 40 -c 0 -i 600 -a 0 -S 0 -y {13 13} + -t 2.25312 -s 3 -d 2 -p ack -e 40 -c 0 -i 600 -a 0 -S 0 -y {13 13} - -t 2.25312 -s 3 -d 2 -p ack -e 40 -c 0 -i 600 -a 0 -S 0 -y {13 13} h -t 2.25312 -s 3 -d 2 -p ack -e 40 -c 0 -i 600 -a 0 -S 0 -y {-1 -1} r -t 2.25336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 599 -a 1 + -t 2.25336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 599 -a 1 r -t 2.25584 -s 2 -d 3 -p cbr -e 210 -c 1 -i 578 -a 1 + -t 2.25584 -s 3 -d 5 -p cbr -e 210 -c 1 -i 578 -a 1 - -t 2.25584 -s 3 -d 5 -p cbr -e 210 -c 1 -i 578 -a 1 h -t 2.25584 -s 3 -d 5 -p cbr -e 210 -c 1 -i 578 -a 1 - -t 2.25624 -s 2 -d 3 -p cbr -e 210 -c 1 -i 594 -a 1 h -t 2.25624 -s 2 -d 3 -p cbr -e 210 -c 1 -i 594 -a 1 r -t 2.25624 -s 3 -d 5 -p cbr -e 210 -c 1 -i 564 -a 1 + -t 2.25625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 616 -a 1 - -t 2.25625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 616 -a 1 h -t 2.25625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 616 -a 1 r -t 2.25711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 601 -a 1 + -t 2.25711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 601 -a 1 r -t 2.2592 -s 2 -d 3 -p cbr -e 210 -c 1 -i 579 -a 1 + -t 2.2592 -s 3 -d 5 -p cbr -e 210 -c 1 -i 579 -a 1 - -t 2.2592 -s 3 -d 5 -p cbr -e 210 -c 1 -i 579 -a 1 h -t 2.2592 -s 3 -d 5 -p cbr -e 210 -c 1 -i 579 -a 1 - -t 2.2596 -s 2 -d 3 -p cbr -e 210 -c 1 -i 595 -a 1 h -t 2.2596 -s 2 -d 3 -p cbr -e 210 -c 1 -i 595 -a 1 + -t 2.26 -s 1 -d 2 -p cbr -e 210 -c 1 -i 617 -a 1 - -t 2.26 -s 1 -d 2 -p cbr -e 210 -c 1 -i 617 -a 1 h -t 2.26 -s 1 -d 2 -p cbr -e 210 -c 1 -i 617 -a 1 r -t 2.26086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 602 -a 1 + -t 2.26086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 602 -a 1 r -t 2.26256 -s 2 -d 3 -p cbr -e 210 -c 1 -i 580 -a 1 + -t 2.26256 -s 3 -d 5 -p cbr -e 210 -c 1 -i 580 -a 1 - -t 2.26256 -s 3 -d 5 -p cbr -e 210 -c 1 -i 580 -a 1 h -t 2.26256 -s 3 -d 5 -p cbr -e 210 -c 1 -i 580 -a 1 - -t 2.26296 -s 2 -d 3 -p cbr -e 210 -c 1 -i 596 -a 1 h -t 2.26296 -s 2 -d 3 -p cbr -e 210 -c 1 -i 596 -a 1 + -t 2.26375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 618 -a 1 - -t 2.26375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 618 -a 1 h -t 2.26375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 618 -a 1 r -t 2.26461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 603 -a 1 + -t 2.26461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 603 -a 1 r -t 2.26592 -s 2 -d 3 -p cbr -e 210 -c 1 -i 581 -a 1 + -t 2.26592 -s 3 -d 5 -p cbr -e 210 -c 1 -i 581 -a 1 - -t 2.26592 -s 3 -d 5 -p cbr -e 210 -c 1 -i 581 -a 1 h -t 2.26592 -s 3 -d 5 -p cbr -e 210 -c 1 -i 581 -a 1 - -t 2.26632 -s 2 -d 3 -p cbr -e 210 -c 1 -i 597 -a 1 h -t 2.26632 -s 2 -d 3 -p cbr -e 210 -c 1 -i 597 -a 1 + -t 2.2675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 619 -a 1 - -t 2.2675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 619 -a 1 h -t 2.2675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 619 -a 1 r -t 2.26836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 604 -a 1 + -t 2.26836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 604 -a 1 r -t 2.26928 -s 2 -d 3 -p cbr -e 210 -c 1 -i 582 -a 1 + -t 2.26928 -s 3 -d 5 -p cbr -e 210 -c 1 -i 582 -a 1 - -t 2.26928 -s 3 -d 5 -p cbr -e 210 -c 1 -i 582 -a 1 h -t 2.26928 -s 3 -d 5 -p cbr -e 210 -c 1 -i 582 -a 1 - -t 2.26968 -s 2 -d 3 -p cbr -e 210 -c 1 -i 598 -a 1 h -t 2.26968 -s 2 -d 3 -p cbr -e 210 -c 1 -i 598 -a 1 + -t 2.27125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 620 -a 1 - -t 2.27125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 620 -a 1 h -t 2.27125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 620 -a 1 r -t 2.27211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 605 -a 1 + -t 2.27211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 605 -a 1 r -t 2.27264 -s 2 -d 3 -p cbr -e 210 -c 1 -i 583 -a 1 + -t 2.27264 -s 3 -d 5 -p cbr -e 210 -c 1 -i 583 -a 1 - -t 2.27264 -s 3 -d 5 -p cbr -e 210 -c 1 -i 583 -a 1 h -t 2.27264 -s 3 -d 5 -p cbr -e 210 -c 1 -i 583 -a 1 - -t 2.27304 -s 2 -d 3 -p cbr -e 210 -c 1 -i 599 -a 1 h -t 2.27304 -s 2 -d 3 -p cbr -e 210 -c 1 -i 599 -a 1 + -t 2.275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 621 -a 1 - -t 2.275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 621 -a 1 h -t 2.275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 621 -a 1 r -t 2.2756 -s 3 -d 5 -p cbr -e 210 -c 1 -i 565 -a 1 r -t 2.27586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 606 -a 1 + -t 2.27586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 606 -a 1 r -t 2.276 -s 2 -d 3 -p cbr -e 210 -c 1 -i 584 -a 1 + -t 2.276 -s 3 -d 5 -p cbr -e 210 -c 1 -i 584 -a 1 - -t 2.276 -s 3 -d 5 -p cbr -e 210 -c 1 -i 584 -a 1 h -t 2.276 -s 3 -d 5 -p cbr -e 210 -c 1 -i 584 -a 1 - -t 2.2764 -s 2 -d 3 -p cbr -e 210 -c 1 -i 601 -a 1 h -t 2.2764 -s 2 -d 3 -p cbr -e 210 -c 1 -i 601 -a 1 + -t 2.27875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 622 -a 1 - -t 2.27875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 622 -a 1 h -t 2.27875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 622 -a 1 r -t 2.27896 -s 3 -d 5 -p cbr -e 210 -c 1 -i 566 -a 1 r -t 2.27936 -s 2 -d 3 -p cbr -e 210 -c 1 -i 585 -a 1 + -t 2.27936 -s 3 -d 5 -p cbr -e 210 -c 1 -i 585 -a 1 - -t 2.27936 -s 3 -d 5 -p cbr -e 210 -c 1 -i 585 -a 1 h -t 2.27936 -s 3 -d 5 -p cbr -e 210 -c 1 -i 585 -a 1 r -t 2.27961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 607 -a 1 + -t 2.27961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 607 -a 1 - -t 2.27976 -s 2 -d 3 -p cbr -e 210 -c 1 -i 602 -a 1 h -t 2.27976 -s 2 -d 3 -p cbr -e 210 -c 1 -i 602 -a 1 r -t 2.28232 -s 3 -d 5 -p cbr -e 210 -c 1 -i 567 -a 1 + -t 2.2825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 623 -a 1 - -t 2.2825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 623 -a 1 h -t 2.2825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 623 -a 1 r -t 2.28272 -s 2 -d 3 -p cbr -e 210 -c 1 -i 586 -a 1 + -t 2.28272 -s 3 -d 5 -p cbr -e 210 -c 1 -i 586 -a 1 - -t 2.28272 -s 3 -d 5 -p cbr -e 210 -c 1 -i 586 -a 1 h -t 2.28272 -s 3 -d 5 -p cbr -e 210 -c 1 -i 586 -a 1 - -t 2.28312 -s 2 -d 3 -p cbr -e 210 -c 1 -i 603 -a 1 h -t 2.28312 -s 2 -d 3 -p cbr -e 210 -c 1 -i 603 -a 1 r -t 2.28336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 608 -a 1 + -t 2.28336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 608 -a 1 r -t 2.28488 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 561 -a 0 -S 0 -y {17 17} + -t 2.28488 -s 4 -d 3 -p ack -e 40 -c 0 -i 624 -a 0 -S 0 -y {13 13} - -t 2.28488 -s 4 -d 3 -p ack -e 40 -c 0 -i 624 -a 0 -S 0 -y {13 13} h -t 2.28488 -s 4 -d 3 -p ack -e 40 -c 0 -i 624 -a 0 -S 0 -y {-1 -1} r -t 2.28568 -s 3 -d 5 -p cbr -e 210 -c 1 -i 568 -a 1 r -t 2.28608 -s 2 -d 3 -p cbr -e 210 -c 1 -i 587 -a 1 + -t 2.28608 -s 3 -d 5 -p cbr -e 210 -c 1 -i 587 -a 1 - -t 2.28608 -s 3 -d 5 -p cbr -e 210 -c 1 -i 587 -a 1 h -t 2.28608 -s 3 -d 5 -p cbr -e 210 -c 1 -i 587 -a 1 + -t 2.28625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 625 -a 1 - -t 2.28625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 625 -a 1 h -t 2.28625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 625 -a 1 - -t 2.28648 -s 2 -d 3 -p cbr -e 210 -c 1 -i 604 -a 1 h -t 2.28648 -s 2 -d 3 -p cbr -e 210 -c 1 -i 604 -a 1 r -t 2.28711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 609 -a 1 + -t 2.28711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 609 -a 1 r -t 2.28904 -s 3 -d 5 -p cbr -e 210 -c 1 -i 569 -a 1 r -t 2.28944 -s 2 -d 3 -p cbr -e 210 -c 1 -i 588 -a 1 + -t 2.28944 -s 3 -d 5 -p cbr -e 210 -c 1 -i 588 -a 1 - -t 2.28944 -s 3 -d 5 -p cbr -e 210 -c 1 -i 588 -a 1 h -t 2.28944 -s 3 -d 5 -p cbr -e 210 -c 1 -i 588 -a 1 - -t 2.28984 -s 2 -d 3 -p cbr -e 210 -c 1 -i 605 -a 1 h -t 2.28984 -s 2 -d 3 -p cbr -e 210 -c 1 -i 605 -a 1 + -t 2.29 -s 1 -d 2 -p cbr -e 210 -c 1 -i 626 -a 1 - -t 2.29 -s 1 -d 2 -p cbr -e 210 -c 1 -i 626 -a 1 h -t 2.29 -s 1 -d 2 -p cbr -e 210 -c 1 -i 626 -a 1 r -t 2.29086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 610 -a 1 + -t 2.29086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 610 -a 1 r -t 2.2924 -s 3 -d 5 -p cbr -e 210 -c 1 -i 570 -a 1 r -t 2.2928 -s 2 -d 3 -p cbr -e 210 -c 1 -i 589 -a 1 + -t 2.2928 -s 3 -d 5 -p cbr -e 210 -c 1 -i 589 -a 1 - -t 2.2928 -s 3 -d 5 -p cbr -e 210 -c 1 -i 589 -a 1 h -t 2.2928 -s 3 -d 5 -p cbr -e 210 -c 1 -i 589 -a 1 - -t 2.2932 -s 2 -d 3 -p cbr -e 210 -c 1 -i 606 -a 1 h -t 2.2932 -s 2 -d 3 -p cbr -e 210 -c 1 -i 606 -a 1 + -t 2.29375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 627 -a 1 - -t 2.29375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 627 -a 1 h -t 2.29375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 627 -a 1 r -t 2.29461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 611 -a 1 + -t 2.29461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 611 -a 1 r -t 2.29576 -s 3 -d 5 -p cbr -e 210 -c 1 -i 571 -a 1 r -t 2.296 -s 4 -d 3 -p ack -e 40 -c 0 -i 613 -a 0 -S 0 -y {13 13} + -t 2.296 -s 3 -d 2 -p ack -e 40 -c 0 -i 613 -a 0 -S 0 -y {13 13} - -t 2.296 -s 3 -d 2 -p ack -e 40 -c 0 -i 613 -a 0 -S 0 -y {13 13} h -t 2.296 -s 3 -d 2 -p ack -e 40 -c 0 -i 613 -a 0 -S 0 -y {-1 -1} r -t 2.29616 -s 2 -d 3 -p cbr -e 210 -c 1 -i 590 -a 1 + -t 2.29616 -s 3 -d 5 -p cbr -e 210 -c 1 -i 590 -a 1 - -t 2.29616 -s 3 -d 5 -p cbr -e 210 -c 1 -i 590 -a 1 h -t 2.29616 -s 3 -d 5 -p cbr -e 210 -c 1 -i 590 -a 1 - -t 2.29656 -s 2 -d 3 -p cbr -e 210 -c 1 -i 607 -a 1 h -t 2.29656 -s 2 -d 3 -p cbr -e 210 -c 1 -i 607 -a 1 + -t 2.2975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 628 -a 1 - -t 2.2975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 628 -a 1 h -t 2.2975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 628 -a 1 r -t 2.29836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 612 -a 1 + -t 2.29836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 612 -a 1 r -t 2.29912 -s 3 -d 5 -p cbr -e 210 -c 1 -i 572 -a 1 r -t 2.29952 -s 2 -d 3 -p cbr -e 210 -c 1 -i 591 -a 1 + -t 2.29952 -s 3 -d 5 -p cbr -e 210 -c 1 -i 591 -a 1 - -t 2.29952 -s 3 -d 5 -p cbr -e 210 -c 1 -i 591 -a 1 h -t 2.29952 -s 3 -d 5 -p cbr -e 210 -c 1 -i 591 -a 1 - -t 2.29992 -s 2 -d 3 -p cbr -e 210 -c 1 -i 608 -a 1 h -t 2.29992 -s 2 -d 3 -p cbr -e 210 -c 1 -i 608 -a 1 + -t 2.30125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 629 -a 1 - -t 2.30125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 629 -a 1 h -t 2.30125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 629 -a 1 r -t 2.30211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 614 -a 1 + -t 2.30211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 614 -a 1 r -t 2.30248 -s 3 -d 5 -p cbr -e 210 -c 1 -i 573 -a 1 r -t 2.30288 -s 2 -d 3 -p cbr -e 210 -c 1 -i 592 -a 1 + -t 2.30288 -s 3 -d 5 -p cbr -e 210 -c 1 -i 592 -a 1 - -t 2.30288 -s 3 -d 5 -p cbr -e 210 -c 1 -i 592 -a 1 h -t 2.30288 -s 3 -d 5 -p cbr -e 210 -c 1 -i 592 -a 1 - -t 2.30328 -s 2 -d 3 -p cbr -e 210 -c 1 -i 609 -a 1 h -t 2.30328 -s 2 -d 3 -p cbr -e 210 -c 1 -i 609 -a 1 r -t 2.30376 -s 3 -d 2 -p ack -e 40 -c 0 -i 600 -a 0 -S 0 -y {13 13} + -t 2.30376 -s 2 -d 0 -p ack -e 40 -c 0 -i 600 -a 0 -S 0 -y {13 13} - -t 2.30376 -s 2 -d 0 -p ack -e 40 -c 0 -i 600 -a 0 -S 0 -f 0 -m 1 -y {13 13} h -t 2.30376 -s 2 -d 0 -p ack -e 40 -c 0 -i 600 -a 0 -S 0 -y {-1 -1} + -t 2.305 -s 1 -d 2 -p cbr -e 210 -c 1 -i 630 -a 1 - -t 2.305 -s 1 -d 2 -p cbr -e 210 -c 1 -i 630 -a 1 h -t 2.305 -s 1 -d 2 -p cbr -e 210 -c 1 -i 630 -a 1 r -t 2.30584 -s 3 -d 5 -p cbr -e 210 -c 1 -i 577 -a 1 r -t 2.30586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 615 -a 1 + -t 2.30586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 615 -a 1 r -t 2.30624 -s 2 -d 3 -p cbr -e 210 -c 1 -i 593 -a 1 + -t 2.30624 -s 3 -d 5 -p cbr -e 210 -c 1 -i 593 -a 1 - -t 2.30624 -s 3 -d 5 -p cbr -e 210 -c 1 -i 593 -a 1 h -t 2.30624 -s 3 -d 5 -p cbr -e 210 -c 1 -i 593 -a 1 - -t 2.30664 -s 2 -d 3 -p cbr -e 210 -c 1 -i 610 -a 1 h -t 2.30664 -s 2 -d 3 -p cbr -e 210 -c 1 -i 610 -a 1 + -t 2.30875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 631 -a 1 - -t 2.30875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 631 -a 1 h -t 2.30875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 631 -a 1 r -t 2.3092 -s 3 -d 5 -p cbr -e 210 -c 1 -i 578 -a 1 r -t 2.3096 -s 2 -d 3 -p cbr -e 210 -c 1 -i 594 -a 1 + -t 2.3096 -s 3 -d 5 -p cbr -e 210 -c 1 -i 594 -a 1 - -t 2.3096 -s 3 -d 5 -p cbr -e 210 -c 1 -i 594 -a 1 h -t 2.3096 -s 3 -d 5 -p cbr -e 210 -c 1 -i 594 -a 1 r -t 2.30961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 616 -a 1 + -t 2.30961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 616 -a 1 - -t 2.31 -s 2 -d 3 -p cbr -e 210 -c 1 -i 611 -a 1 h -t 2.31 -s 2 -d 3 -p cbr -e 210 -c 1 -i 611 -a 1 + -t 2.3125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 632 -a 1 - -t 2.3125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 632 -a 1 h -t 2.3125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 632 -a 1 r -t 2.31256 -s 3 -d 5 -p cbr -e 210 -c 1 -i 579 -a 1 r -t 2.31296 -s 2 -d 3 -p cbr -e 210 -c 1 -i 595 -a 1 + -t 2.31296 -s 3 -d 5 -p cbr -e 210 -c 1 -i 595 -a 1 - -t 2.31296 -s 3 -d 5 -p cbr -e 210 -c 1 -i 595 -a 1 h -t 2.31296 -s 3 -d 5 -p cbr -e 210 -c 1 -i 595 -a 1 - -t 2.31336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 612 -a 1 h -t 2.31336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 612 -a 1 r -t 2.31336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 617 -a 1 + -t 2.31336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 617 -a 1 r -t 2.31592 -s 3 -d 5 -p cbr -e 210 -c 1 -i 580 -a 1 + -t 2.31625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 633 -a 1 - -t 2.31625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 633 -a 1 h -t 2.31625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 633 -a 1 r -t 2.31632 -s 2 -d 3 -p cbr -e 210 -c 1 -i 596 -a 1 + -t 2.31632 -s 3 -d 5 -p cbr -e 210 -c 1 -i 596 -a 1 - -t 2.31632 -s 3 -d 5 -p cbr -e 210 -c 1 -i 596 -a 1 h -t 2.31632 -s 3 -d 5 -p cbr -e 210 -c 1 -i 596 -a 1 - -t 2.31672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 614 -a 1 h -t 2.31672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 614 -a 1 r -t 2.31711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 618 -a 1 + -t 2.31711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 618 -a 1 r -t 2.31928 -s 3 -d 5 -p cbr -e 210 -c 1 -i 581 -a 1 r -t 2.31968 -s 2 -d 3 -p cbr -e 210 -c 1 -i 597 -a 1 + -t 2.31968 -s 3 -d 5 -p cbr -e 210 -c 1 -i 597 -a 1 - -t 2.31968 -s 3 -d 5 -p cbr -e 210 -c 1 -i 597 -a 1 h -t 2.31968 -s 3 -d 5 -p cbr -e 210 -c 1 -i 597 -a 1 + -t 2.32 -s 1 -d 2 -p cbr -e 210 -c 1 -i 634 -a 1 - -t 2.32 -s 1 -d 2 -p cbr -e 210 -c 1 -i 634 -a 1 h -t 2.32 -s 1 -d 2 -p cbr -e 210 -c 1 -i 634 -a 1 - -t 2.32008 -s 2 -d 3 -p cbr -e 210 -c 1 -i 615 -a 1 h -t 2.32008 -s 2 -d 3 -p cbr -e 210 -c 1 -i 615 -a 1 r -t 2.32086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 619 -a 1 + -t 2.32086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 619 -a 1 r -t 2.32264 -s 3 -d 5 -p cbr -e 210 -c 1 -i 582 -a 1 r -t 2.32304 -s 2 -d 3 -p cbr -e 210 -c 1 -i 598 -a 1 + -t 2.32304 -s 3 -d 5 -p cbr -e 210 -c 1 -i 598 -a 1 - -t 2.32304 -s 3 -d 5 -p cbr -e 210 -c 1 -i 598 -a 1 h -t 2.32304 -s 3 -d 5 -p cbr -e 210 -c 1 -i 598 -a 1 - -t 2.32344 -s 2 -d 3 -p cbr -e 210 -c 1 -i 616 -a 1 h -t 2.32344 -s 2 -d 3 -p cbr -e 210 -c 1 -i 616 -a 1 + -t 2.32375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 635 -a 1 - -t 2.32375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 635 -a 1 h -t 2.32375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 635 -a 1 r -t 2.32461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 620 -a 1 + -t 2.32461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 620 -a 1 r -t 2.326 -s 3 -d 5 -p cbr -e 210 -c 1 -i 583 -a 1 r -t 2.3264 -s 2 -d 3 -p cbr -e 210 -c 1 -i 599 -a 1 + -t 2.3264 -s 3 -d 5 -p cbr -e 210 -c 1 -i 599 -a 1 - -t 2.3264 -s 3 -d 5 -p cbr -e 210 -c 1 -i 599 -a 1 h -t 2.3264 -s 3 -d 5 -p cbr -e 210 -c 1 -i 599 -a 1 - -t 2.3268 -s 2 -d 3 -p cbr -e 210 -c 1 -i 617 -a 1 h -t 2.3268 -s 2 -d 3 -p cbr -e 210 -c 1 -i 617 -a 1 + -t 2.3275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 636 -a 1 - -t 2.3275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 636 -a 1 h -t 2.3275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 636 -a 1 r -t 2.32836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 621 -a 1 + -t 2.32836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 621 -a 1 r -t 2.32936 -s 3 -d 5 -p cbr -e 210 -c 1 -i 584 -a 1 r -t 2.32976 -s 2 -d 3 -p cbr -e 210 -c 1 -i 601 -a 1 + -t 2.32976 -s 3 -d 5 -p cbr -e 210 -c 1 -i 601 -a 1 - -t 2.32976 -s 3 -d 5 -p cbr -e 210 -c 1 -i 601 -a 1 h -t 2.32976 -s 3 -d 5 -p cbr -e 210 -c 1 -i 601 -a 1 - -t 2.33016 -s 2 -d 3 -p cbr -e 210 -c 1 -i 618 -a 1 h -t 2.33016 -s 2 -d 3 -p cbr -e 210 -c 1 -i 618 -a 1 + -t 2.33125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 637 -a 1 - -t 2.33125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 637 -a 1 h -t 2.33125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 637 -a 1 r -t 2.33211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 622 -a 1 + -t 2.33211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 622 -a 1 r -t 2.33272 -s 3 -d 5 -p cbr -e 210 -c 1 -i 585 -a 1 r -t 2.33312 -s 2 -d 3 -p cbr -e 210 -c 1 -i 602 -a 1 + -t 2.33312 -s 3 -d 5 -p cbr -e 210 -c 1 -i 602 -a 1 - -t 2.33312 -s 3 -d 5 -p cbr -e 210 -c 1 -i 602 -a 1 h -t 2.33312 -s 3 -d 5 -p cbr -e 210 -c 1 -i 602 -a 1 - -t 2.33352 -s 2 -d 3 -p cbr -e 210 -c 1 -i 619 -a 1 h -t 2.33352 -s 2 -d 3 -p cbr -e 210 -c 1 -i 619 -a 1 + -t 2.335 -s 1 -d 2 -p cbr -e 210 -c 1 -i 638 -a 1 - -t 2.335 -s 1 -d 2 -p cbr -e 210 -c 1 -i 638 -a 1 h -t 2.335 -s 1 -d 2 -p cbr -e 210 -c 1 -i 638 -a 1 r -t 2.33552 -s 4 -d 3 -p ack -e 40 -c 0 -i 624 -a 0 -S 0 -y {13 13} + -t 2.33552 -s 3 -d 2 -p ack -e 40 -c 0 -i 624 -a 0 -S 0 -y {13 13} - -t 2.33552 -s 3 -d 2 -p ack -e 40 -c 0 -i 624 -a 0 -S 0 -y {13 13} h -t 2.33552 -s 3 -d 2 -p ack -e 40 -c 0 -i 624 -a 0 -S 0 -y {-1 -1} r -t 2.33586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 623 -a 1 + -t 2.33586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 623 -a 1 r -t 2.33608 -s 3 -d 5 -p cbr -e 210 -c 1 -i 586 -a 1 r -t 2.33648 -s 2 -d 3 -p cbr -e 210 -c 1 -i 603 -a 1 + -t 2.33648 -s 3 -d 5 -p cbr -e 210 -c 1 -i 603 -a 1 - -t 2.33648 -s 3 -d 5 -p cbr -e 210 -c 1 -i 603 -a 1 h -t 2.33648 -s 3 -d 5 -p cbr -e 210 -c 1 -i 603 -a 1 - -t 2.33688 -s 2 -d 3 -p cbr -e 210 -c 1 -i 620 -a 1 h -t 2.33688 -s 2 -d 3 -p cbr -e 210 -c 1 -i 620 -a 1 + -t 2.33875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 639 -a 1 - -t 2.33875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 639 -a 1 h -t 2.33875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 639 -a 1 r -t 2.33944 -s 3 -d 5 -p cbr -e 210 -c 1 -i 587 -a 1 r -t 2.33961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 625 -a 1 + -t 2.33961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 625 -a 1 r -t 2.33984 -s 2 -d 3 -p cbr -e 210 -c 1 -i 604 -a 1 + -t 2.33984 -s 3 -d 5 -p cbr -e 210 -c 1 -i 604 -a 1 - -t 2.33984 -s 3 -d 5 -p cbr -e 210 -c 1 -i 604 -a 1 h -t 2.33984 -s 3 -d 5 -p cbr -e 210 -c 1 -i 604 -a 1 - -t 2.34024 -s 2 -d 3 -p cbr -e 210 -c 1 -i 621 -a 1 h -t 2.34024 -s 2 -d 3 -p cbr -e 210 -c 1 -i 621 -a 1 + -t 2.3425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 640 -a 1 - -t 2.3425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 640 -a 1 h -t 2.3425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 640 -a 1 r -t 2.3428 -s 3 -d 5 -p cbr -e 210 -c 1 -i 588 -a 1 r -t 2.3432 -s 2 -d 3 -p cbr -e 210 -c 1 -i 605 -a 1 + -t 2.3432 -s 3 -d 5 -p cbr -e 210 -c 1 -i 605 -a 1 - -t 2.3432 -s 3 -d 5 -p cbr -e 210 -c 1 -i 605 -a 1 h -t 2.3432 -s 3 -d 5 -p cbr -e 210 -c 1 -i 605 -a 1 r -t 2.34336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 626 -a 1 + -t 2.34336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 626 -a 1 - -t 2.3436 -s 2 -d 3 -p cbr -e 210 -c 1 -i 622 -a 1 h -t 2.3436 -s 2 -d 3 -p cbr -e 210 -c 1 -i 622 -a 1 r -t 2.34616 -s 3 -d 5 -p cbr -e 210 -c 1 -i 589 -a 1 + -t 2.34625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 641 -a 1 - -t 2.34625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 641 -a 1 h -t 2.34625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 641 -a 1 r -t 2.34656 -s 2 -d 3 -p cbr -e 210 -c 1 -i 606 -a 1 + -t 2.34656 -s 3 -d 5 -p cbr -e 210 -c 1 -i 606 -a 1 - -t 2.34656 -s 3 -d 5 -p cbr -e 210 -c 1 -i 606 -a 1 h -t 2.34656 -s 3 -d 5 -p cbr -e 210 -c 1 -i 606 -a 1 r -t 2.34664 -s 3 -d 2 -p ack -e 40 -c 0 -i 613 -a 0 -S 0 -y {13 13} + -t 2.34664 -s 2 -d 0 -p ack -e 40 -c 0 -i 613 -a 0 -S 0 -y {13 13} - -t 2.34664 -s 2 -d 0 -p ack -e 40 -c 0 -i 613 -a 0 -S 0 -f 0 -m 1 -y {13 13} h -t 2.34664 -s 2 -d 0 -p ack -e 40 -c 0 -i 613 -a 0 -S 0 -y {-1 -1} - -t 2.34696 -s 2 -d 3 -p cbr -e 210 -c 1 -i 623 -a 1 h -t 2.34696 -s 2 -d 3 -p cbr -e 210 -c 1 -i 623 -a 1 r -t 2.34711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 627 -a 1 + -t 2.34711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 627 -a 1 r -t 2.34952 -s 3 -d 5 -p cbr -e 210 -c 1 -i 590 -a 1 r -t 2.34992 -s 2 -d 3 -p cbr -e 210 -c 1 -i 607 -a 1 + -t 2.34992 -s 3 -d 5 -p cbr -e 210 -c 1 -i 607 -a 1 - -t 2.34992 -s 3 -d 5 -p cbr -e 210 -c 1 -i 607 -a 1 h -t 2.34992 -s 3 -d 5 -p cbr -e 210 -c 1 -i 607 -a 1 + -t 2.35 -s 1 -d 2 -p cbr -e 210 -c 1 -i 642 -a 1 - -t 2.35 -s 1 -d 2 -p cbr -e 210 -c 1 -i 642 -a 1 h -t 2.35 -s 1 -d 2 -p cbr -e 210 -c 1 -i 642 -a 1 - -t 2.35032 -s 2 -d 3 -p cbr -e 210 -c 1 -i 625 -a 1 h -t 2.35032 -s 2 -d 3 -p cbr -e 210 -c 1 -i 625 -a 1 r -t 2.35086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 628 -a 1 + -t 2.35086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 628 -a 1 r -t 2.35288 -s 3 -d 5 -p cbr -e 210 -c 1 -i 591 -a 1 r -t 2.35328 -s 2 -d 3 -p cbr -e 210 -c 1 -i 608 -a 1 + -t 2.35328 -s 3 -d 5 -p cbr -e 210 -c 1 -i 608 -a 1 - -t 2.35328 -s 3 -d 5 -p cbr -e 210 -c 1 -i 608 -a 1 h -t 2.35328 -s 3 -d 5 -p cbr -e 210 -c 1 -i 608 -a 1 - -t 2.35368 -s 2 -d 3 -p cbr -e 210 -c 1 -i 626 -a 1 h -t 2.35368 -s 2 -d 3 -p cbr -e 210 -c 1 -i 626 -a 1 r -t 2.3544 -s 2 -d 0 -p ack -e 40 -c 0 -i 600 -a 0 -S 0 -y {13 13} r -t 2.35461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 629 -a 1 + -t 2.35461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 629 -a 1 r -t 2.35624 -s 3 -d 5 -p cbr -e 210 -c 1 -i 592 -a 1 r -t 2.35664 -s 2 -d 3 -p cbr -e 210 -c 1 -i 609 -a 1 + -t 2.35664 -s 3 -d 5 -p cbr -e 210 -c 1 -i 609 -a 1 - -t 2.35664 -s 3 -d 5 -p cbr -e 210 -c 1 -i 609 -a 1 h -t 2.35664 -s 3 -d 5 -p cbr -e 210 -c 1 -i 609 -a 1 - -t 2.35704 -s 2 -d 3 -p cbr -e 210 -c 1 -i 627 -a 1 h -t 2.35704 -s 2 -d 3 -p cbr -e 210 -c 1 -i 627 -a 1 r -t 2.35836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 630 -a 1 + -t 2.35836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 630 -a 1 r -t 2.3596 -s 3 -d 5 -p cbr -e 210 -c 1 -i 593 -a 1 r -t 2.36 -s 2 -d 3 -p cbr -e 210 -c 1 -i 610 -a 1 + -t 2.36 -s 3 -d 5 -p cbr -e 210 -c 1 -i 610 -a 1 - -t 2.36 -s 3 -d 5 -p cbr -e 210 -c 1 -i 610 -a 1 h -t 2.36 -s 3 -d 5 -p cbr -e 210 -c 1 -i 610 -a 1 - -t 2.3604 -s 2 -d 3 -p cbr -e 210 -c 1 -i 628 -a 1 h -t 2.3604 -s 2 -d 3 -p cbr -e 210 -c 1 -i 628 -a 1 r -t 2.36211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 631 -a 1 + -t 2.36211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 631 -a 1 r -t 2.36296 -s 3 -d 5 -p cbr -e 210 -c 1 -i 594 -a 1 r -t 2.36336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 611 -a 1 + -t 2.36336 -s 3 -d 5 -p cbr -e 210 -c 1 -i 611 -a 1 - -t 2.36336 -s 3 -d 5 -p cbr -e 210 -c 1 -i 611 -a 1 h -t 2.36336 -s 3 -d 5 -p cbr -e 210 -c 1 -i 611 -a 1 - -t 2.36376 -s 2 -d 3 -p cbr -e 210 -c 1 -i 629 -a 1 h -t 2.36376 -s 2 -d 3 -p cbr -e 210 -c 1 -i 629 -a 1 r -t 2.36586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 632 -a 1 + -t 2.36586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 632 -a 1 r -t 2.36632 -s 3 -d 5 -p cbr -e 210 -c 1 -i 595 -a 1 r -t 2.36672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 612 -a 1 + -t 2.36672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 612 -a 1 - -t 2.36672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 612 -a 1 h -t 2.36672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 612 -a 1 - -t 2.36712 -s 2 -d 3 -p cbr -e 210 -c 1 -i 630 -a 1 h -t 2.36712 -s 2 -d 3 -p cbr -e 210 -c 1 -i 630 -a 1 r -t 2.36961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 633 -a 1 + -t 2.36961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 633 -a 1 r -t 2.36968 -s 3 -d 5 -p cbr -e 210 -c 1 -i 596 -a 1 r -t 2.37008 -s 2 -d 3 -p cbr -e 210 -c 1 -i 614 -a 1 + -t 2.37008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 614 -a 1 - -t 2.37008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 614 -a 1 h -t 2.37008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 614 -a 1 - -t 2.37048 -s 2 -d 3 -p cbr -e 210 -c 1 -i 631 -a 1 h -t 2.37048 -s 2 -d 3 -p cbr -e 210 -c 1 -i 631 -a 1 r -t 2.37304 -s 3 -d 5 -p cbr -e 210 -c 1 -i 597 -a 1 r -t 2.37336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 634 -a 1 + -t 2.37336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 634 -a 1 r -t 2.37344 -s 2 -d 3 -p cbr -e 210 -c 1 -i 615 -a 1 + -t 2.37344 -s 3 -d 5 -p cbr -e 210 -c 1 -i 615 -a 1 - -t 2.37344 -s 3 -d 5 -p cbr -e 210 -c 1 -i 615 -a 1 h -t 2.37344 -s 3 -d 5 -p cbr -e 210 -c 1 -i 615 -a 1 - -t 2.37384 -s 2 -d 3 -p cbr -e 210 -c 1 -i 632 -a 1 h -t 2.37384 -s 2 -d 3 -p cbr -e 210 -c 1 -i 632 -a 1 r -t 2.3764 -s 3 -d 5 -p cbr -e 210 -c 1 -i 598 -a 1 r -t 2.3768 -s 2 -d 3 -p cbr -e 210 -c 1 -i 616 -a 1 + -t 2.3768 -s 3 -d 5 -p cbr -e 210 -c 1 -i 616 -a 1 - -t 2.3768 -s 3 -d 5 -p cbr -e 210 -c 1 -i 616 -a 1 h -t 2.3768 -s 3 -d 5 -p cbr -e 210 -c 1 -i 616 -a 1 r -t 2.37711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 635 -a 1 + -t 2.37711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 635 -a 1 - -t 2.3772 -s 2 -d 3 -p cbr -e 210 -c 1 -i 633 -a 1 h -t 2.3772 -s 2 -d 3 -p cbr -e 210 -c 1 -i 633 -a 1 r -t 2.37976 -s 3 -d 5 -p cbr -e 210 -c 1 -i 599 -a 1 r -t 2.38016 -s 2 -d 3 -p cbr -e 210 -c 1 -i 617 -a 1 + -t 2.38016 -s 3 -d 5 -p cbr -e 210 -c 1 -i 617 -a 1 - -t 2.38016 -s 3 -d 5 -p cbr -e 210 -c 1 -i 617 -a 1 h -t 2.38016 -s 3 -d 5 -p cbr -e 210 -c 1 -i 617 -a 1 - -t 2.38056 -s 2 -d 3 -p cbr -e 210 -c 1 -i 634 -a 1 h -t 2.38056 -s 2 -d 3 -p cbr -e 210 -c 1 -i 634 -a 1 r -t 2.38086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 636 -a 1 + -t 2.38086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 636 -a 1 r -t 2.38312 -s 3 -d 5 -p cbr -e 210 -c 1 -i 601 -a 1 r -t 2.38352 -s 2 -d 3 -p cbr -e 210 -c 1 -i 618 -a 1 + -t 2.38352 -s 3 -d 5 -p cbr -e 210 -c 1 -i 618 -a 1 - -t 2.38352 -s 3 -d 5 -p cbr -e 210 -c 1 -i 618 -a 1 h -t 2.38352 -s 3 -d 5 -p cbr -e 210 -c 1 -i 618 -a 1 - -t 2.38392 -s 2 -d 3 -p cbr -e 210 -c 1 -i 635 -a 1 h -t 2.38392 -s 2 -d 3 -p cbr -e 210 -c 1 -i 635 -a 1 r -t 2.38461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 637 -a 1 + -t 2.38461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 637 -a 1 r -t 2.38616 -s 3 -d 2 -p ack -e 40 -c 0 -i 624 -a 0 -S 0 -y {13 13} + -t 2.38616 -s 2 -d 0 -p ack -e 40 -c 0 -i 624 -a 0 -S 0 -y {13 13} - -t 2.38616 -s 2 -d 0 -p ack -e 40 -c 0 -i 624 -a 0 -S 0 -f 0 -m 1 -y {13 13} h -t 2.38616 -s 2 -d 0 -p ack -e 40 -c 0 -i 624 -a 0 -S 0 -y {-1 -1} r -t 2.38648 -s 3 -d 5 -p cbr -e 210 -c 1 -i 602 -a 1 r -t 2.38688 -s 2 -d 3 -p cbr -e 210 -c 1 -i 619 -a 1 + -t 2.38688 -s 3 -d 5 -p cbr -e 210 -c 1 -i 619 -a 1 - -t 2.38688 -s 3 -d 5 -p cbr -e 210 -c 1 -i 619 -a 1 h -t 2.38688 -s 3 -d 5 -p cbr -e 210 -c 1 -i 619 -a 1 - -t 2.38728 -s 2 -d 3 -p cbr -e 210 -c 1 -i 636 -a 1 h -t 2.38728 -s 2 -d 3 -p cbr -e 210 -c 1 -i 636 -a 1 r -t 2.38836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 638 -a 1 + -t 2.38836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 638 -a 1 r -t 2.38984 -s 3 -d 5 -p cbr -e 210 -c 1 -i 603 -a 1 r -t 2.39024 -s 2 -d 3 -p cbr -e 210 -c 1 -i 620 -a 1 + -t 2.39024 -s 3 -d 5 -p cbr -e 210 -c 1 -i 620 -a 1 - -t 2.39024 -s 3 -d 5 -p cbr -e 210 -c 1 -i 620 -a 1 h -t 2.39024 -s 3 -d 5 -p cbr -e 210 -c 1 -i 620 -a 1 - -t 2.39064 -s 2 -d 3 -p cbr -e 210 -c 1 -i 637 -a 1 h -t 2.39064 -s 2 -d 3 -p cbr -e 210 -c 1 -i 637 -a 1 r -t 2.39211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 639 -a 1 + -t 2.39211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 639 -a 1 r -t 2.3932 -s 3 -d 5 -p cbr -e 210 -c 1 -i 604 -a 1 r -t 2.3936 -s 2 -d 3 -p cbr -e 210 -c 1 -i 621 -a 1 + -t 2.3936 -s 3 -d 5 -p cbr -e 210 -c 1 -i 621 -a 1 - -t 2.3936 -s 3 -d 5 -p cbr -e 210 -c 1 -i 621 -a 1 h -t 2.3936 -s 3 -d 5 -p cbr -e 210 -c 1 -i 621 -a 1 - -t 2.394 -s 2 -d 3 -p cbr -e 210 -c 1 -i 638 -a 1 h -t 2.394 -s 2 -d 3 -p cbr -e 210 -c 1 -i 638 -a 1 r -t 2.39586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 640 -a 1 + -t 2.39586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 640 -a 1 r -t 2.39656 -s 3 -d 5 -p cbr -e 210 -c 1 -i 605 -a 1 r -t 2.39696 -s 2 -d 3 -p cbr -e 210 -c 1 -i 622 -a 1 + -t 2.39696 -s 3 -d 5 -p cbr -e 210 -c 1 -i 622 -a 1 - -t 2.39696 -s 3 -d 5 -p cbr -e 210 -c 1 -i 622 -a 1 h -t 2.39696 -s 3 -d 5 -p cbr -e 210 -c 1 -i 622 -a 1 r -t 2.39728 -s 2 -d 0 -p ack -e 40 -c 0 -i 613 -a 0 -S 0 -y {13 13} - -t 2.39736 -s 2 -d 3 -p cbr -e 210 -c 1 -i 639 -a 1 h -t 2.39736 -s 2 -d 3 -p cbr -e 210 -c 1 -i 639 -a 1 r -t 2.39961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 641 -a 1 + -t 2.39961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 641 -a 1 r -t 2.39992 -s 3 -d 5 -p cbr -e 210 -c 1 -i 606 -a 1 r -t 2.40032 -s 2 -d 3 -p cbr -e 210 -c 1 -i 623 -a 1 + -t 2.40032 -s 3 -d 5 -p cbr -e 210 -c 1 -i 623 -a 1 - -t 2.40032 -s 3 -d 5 -p cbr -e 210 -c 1 -i 623 -a 1 h -t 2.40032 -s 3 -d 5 -p cbr -e 210 -c 1 -i 623 -a 1 - -t 2.40072 -s 2 -d 3 -p cbr -e 210 -c 1 -i 640 -a 1 h -t 2.40072 -s 2 -d 3 -p cbr -e 210 -c 1 -i 640 -a 1 r -t 2.40328 -s 3 -d 5 -p cbr -e 210 -c 1 -i 607 -a 1 r -t 2.40336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 642 -a 1 + -t 2.40336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 642 -a 1 r -t 2.40368 -s 2 -d 3 -p cbr -e 210 -c 1 -i 625 -a 1 + -t 2.40368 -s 3 -d 5 -p cbr -e 210 -c 1 -i 625 -a 1 - -t 2.40368 -s 3 -d 5 -p cbr -e 210 -c 1 -i 625 -a 1 h -t 2.40368 -s 3 -d 5 -p cbr -e 210 -c 1 -i 625 -a 1 - -t 2.40408 -s 2 -d 3 -p cbr -e 210 -c 1 -i 641 -a 1 h -t 2.40408 -s 2 -d 3 -p cbr -e 210 -c 1 -i 641 -a 1 r -t 2.40664 -s 3 -d 5 -p cbr -e 210 -c 1 -i 608 -a 1 r -t 2.40704 -s 2 -d 3 -p cbr -e 210 -c 1 -i 626 -a 1 + -t 2.40704 -s 3 -d 5 -p cbr -e 210 -c 1 -i 626 -a 1 - -t 2.40704 -s 3 -d 5 -p cbr -e 210 -c 1 -i 626 -a 1 h -t 2.40704 -s 3 -d 5 -p cbr -e 210 -c 1 -i 626 -a 1 - -t 2.40744 -s 2 -d 3 -p cbr -e 210 -c 1 -i 642 -a 1 h -t 2.40744 -s 2 -d 3 -p cbr -e 210 -c 1 -i 642 -a 1 r -t 2.41 -s 3 -d 5 -p cbr -e 210 -c 1 -i 609 -a 1 r -t 2.4104 -s 2 -d 3 -p cbr -e 210 -c 1 -i 627 -a 1 + -t 2.4104 -s 3 -d 5 -p cbr -e 210 -c 1 -i 627 -a 1 - -t 2.4104 -s 3 -d 5 -p cbr -e 210 -c 1 -i 627 -a 1 h -t 2.4104 -s 3 -d 5 -p cbr -e 210 -c 1 -i 627 -a 1 r -t 2.41336 -s 3 -d 5 -p cbr -e 210 -c 1 -i 610 -a 1 r -t 2.41376 -s 2 -d 3 -p cbr -e 210 -c 1 -i 628 -a 1 + -t 2.41376 -s 3 -d 5 -p cbr -e 210 -c 1 -i 628 -a 1 - -t 2.41376 -s 3 -d 5 -p cbr -e 210 -c 1 -i 628 -a 1 h -t 2.41376 -s 3 -d 5 -p cbr -e 210 -c 1 -i 628 -a 1 r -t 2.41672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 611 -a 1 r -t 2.41712 -s 2 -d 3 -p cbr -e 210 -c 1 -i 629 -a 1 + -t 2.41712 -s 3 -d 5 -p cbr -e 210 -c 1 -i 629 -a 1 - -t 2.41712 -s 3 -d 5 -p cbr -e 210 -c 1 -i 629 -a 1 h -t 2.41712 -s 3 -d 5 -p cbr -e 210 -c 1 -i 629 -a 1 r -t 2.42008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 612 -a 1 r -t 2.42048 -s 2 -d 3 -p cbr -e 210 -c 1 -i 630 -a 1 + -t 2.42048 -s 3 -d 5 -p cbr -e 210 -c 1 -i 630 -a 1 - -t 2.42048 -s 3 -d 5 -p cbr -e 210 -c 1 -i 630 -a 1 h -t 2.42048 -s 3 -d 5 -p cbr -e 210 -c 1 -i 630 -a 1 r -t 2.42344 -s 3 -d 5 -p cbr -e 210 -c 1 -i 614 -a 1 r -t 2.42384 -s 2 -d 3 -p cbr -e 210 -c 1 -i 631 -a 1 + -t 2.42384 -s 3 -d 5 -p cbr -e 210 -c 1 -i 631 -a 1 - -t 2.42384 -s 3 -d 5 -p cbr -e 210 -c 1 -i 631 -a 1 h -t 2.42384 -s 3 -d 5 -p cbr -e 210 -c 1 -i 631 -a 1 r -t 2.4268 -s 3 -d 5 -p cbr -e 210 -c 1 -i 615 -a 1 r -t 2.4272 -s 2 -d 3 -p cbr -e 210 -c 1 -i 632 -a 1 + -t 2.4272 -s 3 -d 5 -p cbr -e 210 -c 1 -i 632 -a 1 - -t 2.4272 -s 3 -d 5 -p cbr -e 210 -c 1 -i 632 -a 1 h -t 2.4272 -s 3 -d 5 -p cbr -e 210 -c 1 -i 632 -a 1 r -t 2.43016 -s 3 -d 5 -p cbr -e 210 -c 1 -i 616 -a 1 r -t 2.43056 -s 2 -d 3 -p cbr -e 210 -c 1 -i 633 -a 1 + -t 2.43056 -s 3 -d 5 -p cbr -e 210 -c 1 -i 633 -a 1 - -t 2.43056 -s 3 -d 5 -p cbr -e 210 -c 1 -i 633 -a 1 h -t 2.43056 -s 3 -d 5 -p cbr -e 210 -c 1 -i 633 -a 1 r -t 2.43352 -s 3 -d 5 -p cbr -e 210 -c 1 -i 617 -a 1 r -t 2.43392 -s 2 -d 3 -p cbr -e 210 -c 1 -i 634 -a 1 + -t 2.43392 -s 3 -d 5 -p cbr -e 210 -c 1 -i 634 -a 1 - -t 2.43392 -s 3 -d 5 -p cbr -e 210 -c 1 -i 634 -a 1 h -t 2.43392 -s 3 -d 5 -p cbr -e 210 -c 1 -i 634 -a 1 r -t 2.4368 -s 2 -d 0 -p ack -e 40 -c 0 -i 624 -a 0 -S 0 -y {13 13} + -t 2.4368 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 643 -a 0 -S 0 -f 0 -m 0 -y {14 14} - -t 2.4368 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 643 -a 0 -S 0 -y {14 14} h -t 2.4368 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 643 -a 0 -S 0 -y {-1 -1} + -t 2.4368 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 644 -a 0 -S 0 -f 0 -m 0 -y {15 15} + -t 2.4368 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 645 -a 0 -S 0 -f 0 -m 0 -y {16 16} r -t 2.43688 -s 3 -d 5 -p cbr -e 210 -c 1 -i 618 -a 1 r -t 2.43728 -s 2 -d 3 -p cbr -e 210 -c 1 -i 635 -a 1 + -t 2.43728 -s 3 -d 5 -p cbr -e 210 -c 1 -i 635 -a 1 - -t 2.43728 -s 3 -d 5 -p cbr -e 210 -c 1 -i 635 -a 1 h -t 2.43728 -s 3 -d 5 -p cbr -e 210 -c 1 -i 635 -a 1 r -t 2.44024 -s 3 -d 5 -p cbr -e 210 -c 1 -i 619 -a 1 r -t 2.44064 -s 2 -d 3 -p cbr -e 210 -c 1 -i 636 -a 1 + -t 2.44064 -s 3 -d 5 -p cbr -e 210 -c 1 -i 636 -a 1 - -t 2.44064 -s 3 -d 5 -p cbr -e 210 -c 1 -i 636 -a 1 h -t 2.44064 -s 3 -d 5 -p cbr -e 210 -c 1 -i 636 -a 1 r -t 2.4436 -s 3 -d 5 -p cbr -e 210 -c 1 -i 620 -a 1 r -t 2.444 -s 2 -d 3 -p cbr -e 210 -c 1 -i 637 -a 1 + -t 2.444 -s 3 -d 5 -p cbr -e 210 -c 1 -i 637 -a 1 - -t 2.444 -s 3 -d 5 -p cbr -e 210 -c 1 -i 637 -a 1 h -t 2.444 -s 3 -d 5 -p cbr -e 210 -c 1 -i 637 -a 1 r -t 2.44696 -s 3 -d 5 -p cbr -e 210 -c 1 -i 621 -a 1 r -t 2.44736 -s 2 -d 3 -p cbr -e 210 -c 1 -i 638 -a 1 + -t 2.44736 -s 3 -d 5 -p cbr -e 210 -c 1 -i 638 -a 1 - -t 2.44736 -s 3 -d 5 -p cbr -e 210 -c 1 -i 638 -a 1 h -t 2.44736 -s 3 -d 5 -p cbr -e 210 -c 1 -i 638 -a 1 r -t 2.45032 -s 3 -d 5 -p cbr -e 210 -c 1 -i 622 -a 1 r -t 2.45072 -s 2 -d 3 -p cbr -e 210 -c 1 -i 639 -a 1 + -t 2.45072 -s 3 -d 5 -p cbr -e 210 -c 1 -i 639 -a 1 - -t 2.45072 -s 3 -d 5 -p cbr -e 210 -c 1 -i 639 -a 1 h -t 2.45072 -s 3 -d 5 -p cbr -e 210 -c 1 -i 639 -a 1 - -t 2.4528 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 644 -a 0 -S 0 -y {15 15} h -t 2.4528 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 644 -a 0 -S 0 -y {-1 -1} r -t 2.45368 -s 3 -d 5 -p cbr -e 210 -c 1 -i 623 -a 1 r -t 2.45408 -s 2 -d 3 -p cbr -e 210 -c 1 -i 640 -a 1 + -t 2.45408 -s 3 -d 5 -p cbr -e 210 -c 1 -i 640 -a 1 - -t 2.45408 -s 3 -d 5 -p cbr -e 210 -c 1 -i 640 -a 1 h -t 2.45408 -s 3 -d 5 -p cbr -e 210 -c 1 -i 640 -a 1 r -t 2.45704 -s 3 -d 5 -p cbr -e 210 -c 1 -i 625 -a 1 r -t 2.45744 -s 2 -d 3 -p cbr -e 210 -c 1 -i 641 -a 1 + -t 2.45744 -s 3 -d 5 -p cbr -e 210 -c 1 -i 641 -a 1 - -t 2.45744 -s 3 -d 5 -p cbr -e 210 -c 1 -i 641 -a 1 h -t 2.45744 -s 3 -d 5 -p cbr -e 210 -c 1 -i 641 -a 1 r -t 2.4604 -s 3 -d 5 -p cbr -e 210 -c 1 -i 626 -a 1 r -t 2.4608 -s 2 -d 3 -p cbr -e 210 -c 1 -i 642 -a 1 + -t 2.4608 -s 3 -d 5 -p cbr -e 210 -c 1 -i 642 -a 1 - -t 2.4608 -s 3 -d 5 -p cbr -e 210 -c 1 -i 642 -a 1 h -t 2.4608 -s 3 -d 5 -p cbr -e 210 -c 1 -i 642 -a 1 r -t 2.46376 -s 3 -d 5 -p cbr -e 210 -c 1 -i 627 -a 1 r -t 2.46712 -s 3 -d 5 -p cbr -e 210 -c 1 -i 628 -a 1 - -t 2.4688 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 645 -a 0 -S 0 -y {16 16} h -t 2.4688 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 645 -a 0 -S 0 -y {-1 -1} r -t 2.47048 -s 3 -d 5 -p cbr -e 210 -c 1 -i 629 -a 1 r -t 2.47384 -s 3 -d 5 -p cbr -e 210 -c 1 -i 630 -a 1 r -t 2.4772 -s 3 -d 5 -p cbr -e 210 -c 1 -i 631 -a 1 r -t 2.48056 -s 3 -d 5 -p cbr -e 210 -c 1 -i 632 -a 1 r -t 2.48392 -s 3 -d 5 -p cbr -e 210 -c 1 -i 633 -a 1 r -t 2.48728 -s 3 -d 5 -p cbr -e 210 -c 1 -i 634 -a 1 r -t 2.49064 -s 3 -d 5 -p cbr -e 210 -c 1 -i 635 -a 1 r -t 2.494 -s 3 -d 5 -p cbr -e 210 -c 1 -i 636 -a 1 r -t 2.49736 -s 3 -d 5 -p cbr -e 210 -c 1 -i 637 -a 1 r -t 2.50072 -s 3 -d 5 -p cbr -e 210 -c 1 -i 638 -a 1 r -t 2.5028 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 643 -a 0 -S 0 -y {14 14} + -t 2.5028 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 643 -a 0 -S 0 -y {14 14} - -t 2.5028 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 643 -a 0 -S 0 -y {14 14} h -t 2.5028 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 643 -a 0 -S 0 -y {-1 -1} r -t 2.50408 -s 3 -d 5 -p cbr -e 210 -c 1 -i 639 -a 1 r -t 2.50744 -s 3 -d 5 -p cbr -e 210 -c 1 -i 640 -a 1 r -t 2.5108 -s 3 -d 5 -p cbr -e 210 -c 1 -i 641 -a 1 r -t 2.51416 -s 3 -d 5 -p cbr -e 210 -c 1 -i 642 -a 1 r -t 2.5188 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 644 -a 0 -S 0 -y {15 15} + -t 2.5188 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 644 -a 0 -S 0 -y {15 15} - -t 2.5188 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 644 -a 0 -S 0 -y {15 15} h -t 2.5188 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 644 -a 0 -S 0 -y {-1 -1} r -t 2.5348 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 645 -a 0 -S 0 -y {16 16} + -t 2.5348 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 645 -a 0 -S 0 -y {16 16} - -t 2.5348 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 645 -a 0 -S 0 -y {16 16} h -t 2.5348 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 645 -a 0 -S 0 -y {-1 -1} r -t 2.5688 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 643 -a 0 -S 0 -y {14 14} + -t 2.5688 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 643 -a 0 -S 0 -y {14 14} - -t 2.5688 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 643 -a 0 -S 0 -y {14 14} h -t 2.5688 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 643 -a 0 -S 0 -y {-1 -1} r -t 2.5848 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 644 -a 0 -S 0 -y {15 15} + -t 2.5848 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 644 -a 0 -S 0 -y {15 15} - -t 2.5848 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 644 -a 0 -S 0 -y {15 15} h -t 2.5848 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 644 -a 0 -S 0 -y {-1 -1} r -t 2.6008 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 645 -a 0 -S 0 -y {16 16} + -t 2.6008 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 645 -a 0 -S 0 -y {16 16} - -t 2.6008 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 645 -a 0 -S 0 -y {16 16} h -t 2.6008 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 645 -a 0 -S 0 -y {-1 -1} r -t 2.6348 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 643 -a 0 -S 0 -y {14 14} + -t 2.6348 -s 4 -d 3 -p ack -e 40 -c 0 -i 646 -a 0 -S 0 -y {14 14} - -t 2.6348 -s 4 -d 3 -p ack -e 40 -c 0 -i 646 -a 0 -S 0 -y {14 14} h -t 2.6348 -s 4 -d 3 -p ack -e 40 -c 0 -i 646 -a 0 -S 0 -y {-1 -1} r -t 2.6508 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 644 -a 0 -S 0 -y {15 15} + -t 2.6508 -s 4 -d 3 -p ack -e 40 -c 0 -i 647 -a 0 -S 0 -y {15 15} - -t 2.6508 -s 4 -d 3 -p ack -e 40 -c 0 -i 647 -a 0 -S 0 -y {15 15} h -t 2.6508 -s 4 -d 3 -p ack -e 40 -c 0 -i 647 -a 0 -S 0 -y {-1 -1} r -t 2.6668 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 645 -a 0 -S 0 -y {16 16} + -t 2.6668 -s 4 -d 3 -p ack -e 40 -c 0 -i 648 -a 0 -S 0 -y {16 16} - -t 2.6668 -s 4 -d 3 -p ack -e 40 -c 0 -i 648 -a 0 -S 0 -y {16 16} h -t 2.6668 -s 4 -d 3 -p ack -e 40 -c 0 -i 648 -a 0 -S 0 -y {-1 -1} r -t 2.68544 -s 4 -d 3 -p ack -e 40 -c 0 -i 646 -a 0 -S 0 -y {14 14} + -t 2.68544 -s 3 -d 2 -p ack -e 40 -c 0 -i 646 -a 0 -S 0 -y {14 14} - -t 2.68544 -s 3 -d 2 -p ack -e 40 -c 0 -i 646 -a 0 -S 0 -y {14 14} h -t 2.68544 -s 3 -d 2 -p ack -e 40 -c 0 -i 646 -a 0 -S 0 -y {-1 -1} r -t 2.70144 -s 4 -d 3 -p ack -e 40 -c 0 -i 647 -a 0 -S 0 -y {15 15} + -t 2.70144 -s 3 -d 2 -p ack -e 40 -c 0 -i 647 -a 0 -S 0 -y {15 15} - -t 2.70144 -s 3 -d 2 -p ack -e 40 -c 0 -i 647 -a 0 -S 0 -y {15 15} h -t 2.70144 -s 3 -d 2 -p ack -e 40 -c 0 -i 647 -a 0 -S 0 -y {-1 -1} r -t 2.71744 -s 4 -d 3 -p ack -e 40 -c 0 -i 648 -a 0 -S 0 -y {16 16} + -t 2.71744 -s 3 -d 2 -p ack -e 40 -c 0 -i 648 -a 0 -S 0 -y {16 16} - -t 2.71744 -s 3 -d 2 -p ack -e 40 -c 0 -i 648 -a 0 -S 0 -y {16 16} h -t 2.71744 -s 3 -d 2 -p ack -e 40 -c 0 -i 648 -a 0 -S 0 -y {-1 -1} r -t 2.73608 -s 3 -d 2 -p ack -e 40 -c 0 -i 646 -a 0 -S 0 -y {14 14} + -t 2.73608 -s 2 -d 0 -p ack -e 40 -c 0 -i 646 -a 0 -S 0 -y {14 14} - -t 2.73608 -s 2 -d 0 -p ack -e 40 -c 0 -i 646 -a 0 -S 0 -f 0 -m 1 -y {14 14} h -t 2.73608 -s 2 -d 0 -p ack -e 40 -c 0 -i 646 -a 0 -S 0 -y {-1 -1} r -t 2.75208 -s 3 -d 2 -p ack -e 40 -c 0 -i 647 -a 0 -S 0 -y {15 15} + -t 2.75208 -s 2 -d 0 -p ack -e 40 -c 0 -i 647 -a 0 -S 0 -y {15 15} - -t 2.75208 -s 2 -d 0 -p ack -e 40 -c 0 -i 647 -a 0 -S 0 -f 0 -m 1 -y {15 15} h -t 2.75208 -s 2 -d 0 -p ack -e 40 -c 0 -i 647 -a 0 -S 0 -y {-1 -1} r -t 2.76808 -s 3 -d 2 -p ack -e 40 -c 0 -i 648 -a 0 -S 0 -y {16 16} + -t 2.76808 -s 2 -d 0 -p ack -e 40 -c 0 -i 648 -a 0 -S 0 -y {16 16} - -t 2.76808 -s 2 -d 0 -p ack -e 40 -c 0 -i 648 -a 0 -S 0 -f 0 -m 1 -y {16 16} h -t 2.76808 -s 2 -d 0 -p ack -e 40 -c 0 -i 648 -a 0 -S 0 -y {-1 -1} r -t 2.78672 -s 2 -d 0 -p ack -e 40 -c 0 -i 646 -a 0 -S 0 -y {14 14} r -t 2.80272 -s 2 -d 0 -p ack -e 40 -c 0 -i 647 -a 0 -S 0 -y {15 15} r -t 2.81872 -s 2 -d 0 -p ack -e 40 -c 0 -i 648 -a 0 -S 0 -y {16 16} nam-1.15/edu/B4-sliding-window-loss.tcl0000664000076400007660000000551307024407022016535 0ustar tomhnsnam# sliding window protocol in congestion # features : labeling, annotation, nam-graph, and window size monitoring # all packets look black cause of supporting nam-graph # You could run 'B4-sliding-color.nam' to see the colors of each traffic set ns [new Simulator] $ns color 1 red #$ns trace-all [open B4-sliding-window-loss.tr w] #$ns namtrace-all [open B4-sliding-window-loss.nam w] foreach i "s1 s2 r1 r2 s3 s4" { set node_($i) [$ns node] } $node_(s2) color "red" $node_(s4) color "red" $node_(r1) color "blue" $node_(r2) color "blue" $node_(r1) shape "rectangular" $node_(r2) shape "rectangular" $ns at 0.0 "$node_(s1) label Sliding-W-sender" $ns at 0.0 "$node_(s2) label CBR-sender" $ns at 0.0 "$node_(s3) label Sliding-W-receiver" $ns at 0.0 "$node_(s4) label CBR-receiver" $ns duplex-link $node_(s1) $node_(r1) 0.5Mb 50ms DropTail $ns duplex-link $node_(s2) $node_(r1) 0.5Mb 50ms DropTail $ns duplex-link $node_(r1) $node_(r2) 0.5Mb 50ms DropTail $ns duplex-link $node_(r2) $node_(s3) 0.5Mb 50ms DropTail $ns duplex-link $node_(r2) $node_(s4) 0.5Mb 50ms DropTail $ns queue-limit $node_(r1) $node_(r2) 10 $ns queue-limit $node_(r2) $node_(r1) 10 $ns duplex-link-op $node_(s1) $node_(r1) orient right-down $ns duplex-link-op $node_(s2) $node_(r1) orient right-up $ns duplex-link-op $node_(r1) $node_(r2) orient right $ns duplex-link-op $node_(r2) $node_(s3) orient right-up $ns duplex-link-op $node_(r2) $node_(s4) orient right-down $ns duplex-link-op $node_(r1) $node_(r2) queuePos 0.5 $ns duplex-link-op $node_(r2) $node_(r1) queuePos 0.5 Agent/TCP set nam_tracevar_ true # setting sliding window size to 4 Agent/TCP set maxcwnd_ 4 ### sliding-window protocol between s1 and s3 (Black) #set sliding [new Agent/TCP/SlidingWindow] set sliding [new Agent/TCP] $sliding set fid_ 0 $ns attach-agent $node_(s1) $sliding #set sink [new Agent/TCPSink/SlidingWindowSink] set sink [new Agent/TCPSink] $ns attach-agent $node_(s3) $sink $ns connect $sliding $sink set ftp [new Application/FTP] $ftp attach-agent $sliding $ns add-agent-trace $sliding tcp $ns monitor-agent-trace $sliding $sliding tracevar cwnd_ ### CBR traffic between s2 and s4 (Red) set cbr [$ns create-connection CBR $node_(s2) Null $node_(s4) 1] $cbr set fid_ 1 proc finish {} { global ns $ns flush-trace # puts "filtering..." # exec tclsh ../bin/namfilter.tcl B4-sliding-window-loss.nam puts "running nam..." exec nam B4-sliding-window-loss.nam & exit 0 } ### set operations $ns at 0.1 "$ftp start" $ns at 2.35 "$ftp stop" $ns at 0.1 "$cbr start" $ns at 2.35 "$cbr stop" $ns at 3.0 "finish" ### add annotations $ns at 0.0 "$ns trace-annotate \"Sliding Window with packet loss \"" $ns run nam-1.15/edu/B4-sliding-window-loss.tr0000664000076400007660000102113706756703164016422 0ustar tomhnsnamv 0 eval {set sim_annotation {Sliding Window with packet loss }} + 0.1 0 2 tcp 1000 ------- 0 0.0 4.0 0 0 - 0.1 0 2 tcp 1000 ------- 0 0.0 4.0 0 0 + 0.1 0 2 tcp 1000 ------- 0 0.0 4.0 1 1 + 0.1 0 2 tcp 1000 ------- 0 0.0 4.0 2 2 + 0.1 0 2 tcp 1000 ------- 0 0.0 4.0 3 3 + 0.1 1 2 cbr 210 ------- 1 1.0 5.0 0 4 - 0.1 1 2 cbr 210 ------- 1 1.0 5.0 0 4 + 0.10375 1 2 cbr 210 ------- 1 1.0 5.0 1 5 - 0.10375 1 2 cbr 210 ------- 1 1.0 5.0 1 5 + 0.1075 1 2 cbr 210 ------- 1 1.0 5.0 2 6 - 0.1075 1 2 cbr 210 ------- 1 1.0 5.0 2 6 + 0.11125 1 2 cbr 210 ------- 1 1.0 5.0 3 7 - 0.11125 1 2 cbr 210 ------- 1 1.0 5.0 3 7 + 0.115 1 2 cbr 210 ------- 1 1.0 5.0 4 8 - 0.115 1 2 cbr 210 ------- 1 1.0 5.0 4 8 - 0.116 0 2 tcp 1000 ------- 0 0.0 4.0 1 1 + 0.11875 1 2 cbr 210 ------- 1 1.0 5.0 5 9 - 0.11875 1 2 cbr 210 ------- 1 1.0 5.0 5 9 + 0.1225 1 2 cbr 210 ------- 1 1.0 5.0 6 10 - 0.1225 1 2 cbr 210 ------- 1 1.0 5.0 6 10 + 0.12625 1 2 cbr 210 ------- 1 1.0 5.0 7 11 - 0.12625 1 2 cbr 210 ------- 1 1.0 5.0 7 11 + 0.13 1 2 cbr 210 ------- 1 1.0 5.0 8 12 - 0.13 1 2 cbr 210 ------- 1 1.0 5.0 8 12 - 0.132 0 2 tcp 1000 ------- 0 0.0 4.0 2 2 + 0.13375 1 2 cbr 210 ------- 1 1.0 5.0 9 13 - 0.13375 1 2 cbr 210 ------- 1 1.0 5.0 9 13 + 0.1375 1 2 cbr 210 ------- 1 1.0 5.0 10 14 - 0.1375 1 2 cbr 210 ------- 1 1.0 5.0 10 14 + 0.14125 1 2 cbr 210 ------- 1 1.0 5.0 11 15 - 0.14125 1 2 cbr 210 ------- 1 1.0 5.0 11 15 + 0.145 1 2 cbr 210 ------- 1 1.0 5.0 12 16 - 0.145 1 2 cbr 210 ------- 1 1.0 5.0 12 16 - 0.148 0 2 tcp 1000 ------- 0 0.0 4.0 3 3 + 0.14875 1 2 cbr 210 ------- 1 1.0 5.0 13 17 - 0.14875 1 2 cbr 210 ------- 1 1.0 5.0 13 17 + 0.1525 1 2 cbr 210 ------- 1 1.0 5.0 14 18 - 0.1525 1 2 cbr 210 ------- 1 1.0 5.0 14 18 r 0.15336 1 2 cbr 210 ------- 1 1.0 5.0 0 4 + 0.15336 2 3 cbr 210 ------- 1 1.0 5.0 0 4 - 0.15336 2 3 cbr 210 ------- 1 1.0 5.0 0 4 + 0.15625 1 2 cbr 210 ------- 1 1.0 5.0 15 19 - 0.15625 1 2 cbr 210 ------- 1 1.0 5.0 15 19 r 0.15711 1 2 cbr 210 ------- 1 1.0 5.0 1 5 + 0.15711 2 3 cbr 210 ------- 1 1.0 5.0 1 5 - 0.15711 2 3 cbr 210 ------- 1 1.0 5.0 1 5 + 0.16 1 2 cbr 210 ------- 1 1.0 5.0 16 20 - 0.16 1 2 cbr 210 ------- 1 1.0 5.0 16 20 r 0.16086 1 2 cbr 210 ------- 1 1.0 5.0 2 6 + 0.16086 2 3 cbr 210 ------- 1 1.0 5.0 2 6 - 0.16086 2 3 cbr 210 ------- 1 1.0 5.0 2 6 + 0.16375 1 2 cbr 210 ------- 1 1.0 5.0 17 21 - 0.16375 1 2 cbr 210 ------- 1 1.0 5.0 17 21 r 0.16461 1 2 cbr 210 ------- 1 1.0 5.0 3 7 + 0.16461 2 3 cbr 210 ------- 1 1.0 5.0 3 7 - 0.16461 2 3 cbr 210 ------- 1 1.0 5.0 3 7 r 0.166 0 2 tcp 1000 ------- 0 0.0 4.0 0 0 + 0.166 2 3 tcp 1000 ------- 0 0.0 4.0 0 0 + 0.1675 1 2 cbr 210 ------- 1 1.0 5.0 18 22 - 0.1675 1 2 cbr 210 ------- 1 1.0 5.0 18 22 - 0.16797 2 3 tcp 1000 ------- 0 0.0 4.0 0 0 r 0.16836 1 2 cbr 210 ------- 1 1.0 5.0 4 8 + 0.16836 2 3 cbr 210 ------- 1 1.0 5.0 4 8 + 0.17125 1 2 cbr 210 ------- 1 1.0 5.0 19 23 - 0.17125 1 2 cbr 210 ------- 1 1.0 5.0 19 23 r 0.17211 1 2 cbr 210 ------- 1 1.0 5.0 5 9 + 0.17211 2 3 cbr 210 ------- 1 1.0 5.0 5 9 + 0.175 1 2 cbr 210 ------- 1 1.0 5.0 20 24 - 0.175 1 2 cbr 210 ------- 1 1.0 5.0 20 24 r 0.17586 1 2 cbr 210 ------- 1 1.0 5.0 6 10 + 0.17586 2 3 cbr 210 ------- 1 1.0 5.0 6 10 + 0.17875 1 2 cbr 210 ------- 1 1.0 5.0 21 25 - 0.17875 1 2 cbr 210 ------- 1 1.0 5.0 21 25 r 0.17961 1 2 cbr 210 ------- 1 1.0 5.0 7 11 + 0.17961 2 3 cbr 210 ------- 1 1.0 5.0 7 11 r 0.182 0 2 tcp 1000 ------- 0 0.0 4.0 1 1 + 0.182 2 3 tcp 1000 ------- 0 0.0 4.0 1 1 + 0.1825 1 2 cbr 210 ------- 1 1.0 5.0 22 26 - 0.1825 1 2 cbr 210 ------- 1 1.0 5.0 22 26 r 0.18336 1 2 cbr 210 ------- 1 1.0 5.0 8 12 + 0.18336 2 3 cbr 210 ------- 1 1.0 5.0 8 12 - 0.18397 2 3 cbr 210 ------- 1 1.0 5.0 4 8 + 0.18625 1 2 cbr 210 ------- 1 1.0 5.0 23 27 - 0.18625 1 2 cbr 210 ------- 1 1.0 5.0 23 27 r 0.18711 1 2 cbr 210 ------- 1 1.0 5.0 9 13 + 0.18711 2 3 cbr 210 ------- 1 1.0 5.0 9 13 - 0.18733 2 3 cbr 210 ------- 1 1.0 5.0 5 9 + 0.19 1 2 cbr 210 ------- 1 1.0 5.0 24 28 - 0.19 1 2 cbr 210 ------- 1 1.0 5.0 24 28 - 0.19069 2 3 cbr 210 ------- 1 1.0 5.0 6 10 r 0.19086 1 2 cbr 210 ------- 1 1.0 5.0 10 14 + 0.19086 2 3 cbr 210 ------- 1 1.0 5.0 10 14 + 0.19375 1 2 cbr 210 ------- 1 1.0 5.0 25 29 - 0.19375 1 2 cbr 210 ------- 1 1.0 5.0 25 29 - 0.19405 2 3 cbr 210 ------- 1 1.0 5.0 7 11 r 0.19461 1 2 cbr 210 ------- 1 1.0 5.0 11 15 + 0.19461 2 3 cbr 210 ------- 1 1.0 5.0 11 15 - 0.19741 2 3 tcp 1000 ------- 0 0.0 4.0 1 1 + 0.1975 1 2 cbr 210 ------- 1 1.0 5.0 26 30 - 0.1975 1 2 cbr 210 ------- 1 1.0 5.0 26 30 r 0.198 0 2 tcp 1000 ------- 0 0.0 4.0 2 2 + 0.198 2 3 tcp 1000 ------- 0 0.0 4.0 2 2 r 0.19836 1 2 cbr 210 ------- 1 1.0 5.0 12 16 + 0.19836 2 3 cbr 210 ------- 1 1.0 5.0 12 16 + 0.20125 1 2 cbr 210 ------- 1 1.0 5.0 27 31 - 0.20125 1 2 cbr 210 ------- 1 1.0 5.0 27 31 r 0.20211 1 2 cbr 210 ------- 1 1.0 5.0 13 17 + 0.20211 2 3 cbr 210 ------- 1 1.0 5.0 13 17 + 0.205 1 2 cbr 210 ------- 1 1.0 5.0 28 32 - 0.205 1 2 cbr 210 ------- 1 1.0 5.0 28 32 r 0.20586 1 2 cbr 210 ------- 1 1.0 5.0 14 18 + 0.20586 2 3 cbr 210 ------- 1 1.0 5.0 14 18 r 0.20672 2 3 cbr 210 ------- 1 1.0 5.0 0 4 + 0.20672 3 5 cbr 210 ------- 1 1.0 5.0 0 4 - 0.20672 3 5 cbr 210 ------- 1 1.0 5.0 0 4 + 0.20875 1 2 cbr 210 ------- 1 1.0 5.0 29 33 - 0.20875 1 2 cbr 210 ------- 1 1.0 5.0 29 33 r 0.20961 1 2 cbr 210 ------- 1 1.0 5.0 15 19 + 0.20961 2 3 cbr 210 ------- 1 1.0 5.0 15 19 r 0.21047 2 3 cbr 210 ------- 1 1.0 5.0 1 5 + 0.21047 3 5 cbr 210 ------- 1 1.0 5.0 1 5 - 0.21047 3 5 cbr 210 ------- 1 1.0 5.0 1 5 + 0.2125 1 2 cbr 210 ------- 1 1.0 5.0 30 34 - 0.2125 1 2 cbr 210 ------- 1 1.0 5.0 30 34 r 0.21336 1 2 cbr 210 ------- 1 1.0 5.0 16 20 + 0.21336 2 3 cbr 210 ------- 1 1.0 5.0 16 20 d 0.21336 2 3 cbr 210 ------- 1 1.0 5.0 16 20 - 0.21341 2 3 cbr 210 ------- 1 1.0 5.0 8 12 r 0.214 0 2 tcp 1000 ------- 0 0.0 4.0 3 3 + 0.214 2 3 tcp 1000 ------- 0 0.0 4.0 3 3 r 0.21422 2 3 cbr 210 ------- 1 1.0 5.0 2 6 + 0.21422 3 5 cbr 210 ------- 1 1.0 5.0 2 6 - 0.21422 3 5 cbr 210 ------- 1 1.0 5.0 2 6 + 0.21625 1 2 cbr 210 ------- 1 1.0 5.0 31 35 - 0.21625 1 2 cbr 210 ------- 1 1.0 5.0 31 35 - 0.21677 2 3 cbr 210 ------- 1 1.0 5.0 9 13 r 0.21711 1 2 cbr 210 ------- 1 1.0 5.0 17 21 + 0.21711 2 3 cbr 210 ------- 1 1.0 5.0 17 21 r 0.21797 2 3 cbr 210 ------- 1 1.0 5.0 3 7 + 0.21797 3 5 cbr 210 ------- 1 1.0 5.0 3 7 - 0.21797 3 5 cbr 210 ------- 1 1.0 5.0 3 7 + 0.22 1 2 cbr 210 ------- 1 1.0 5.0 32 36 - 0.22 1 2 cbr 210 ------- 1 1.0 5.0 32 36 - 0.22013 2 3 cbr 210 ------- 1 1.0 5.0 10 14 r 0.22086 1 2 cbr 210 ------- 1 1.0 5.0 18 22 + 0.22086 2 3 cbr 210 ------- 1 1.0 5.0 18 22 - 0.22349 2 3 cbr 210 ------- 1 1.0 5.0 11 15 + 0.22375 1 2 cbr 210 ------- 1 1.0 5.0 33 37 - 0.22375 1 2 cbr 210 ------- 1 1.0 5.0 33 37 r 0.22461 1 2 cbr 210 ------- 1 1.0 5.0 19 23 + 0.22461 2 3 cbr 210 ------- 1 1.0 5.0 19 23 - 0.22685 2 3 tcp 1000 ------- 0 0.0 4.0 2 2 + 0.2275 1 2 cbr 210 ------- 1 1.0 5.0 34 38 - 0.2275 1 2 cbr 210 ------- 1 1.0 5.0 34 38 r 0.22836 1 2 cbr 210 ------- 1 1.0 5.0 20 24 + 0.22836 2 3 cbr 210 ------- 1 1.0 5.0 20 24 + 0.23125 1 2 cbr 210 ------- 1 1.0 5.0 35 39 - 0.23125 1 2 cbr 210 ------- 1 1.0 5.0 35 39 r 0.23211 1 2 cbr 210 ------- 1 1.0 5.0 21 25 + 0.23211 2 3 cbr 210 ------- 1 1.0 5.0 21 25 d 0.23211 2 3 cbr 210 ------- 1 1.0 5.0 21 25 r 0.23397 2 3 tcp 1000 ------- 0 0.0 4.0 0 0 + 0.23397 3 4 tcp 1000 ------- 0 0.0 4.0 0 0 - 0.23397 3 4 tcp 1000 ------- 0 0.0 4.0 0 0 + 0.235 1 2 cbr 210 ------- 1 1.0 5.0 36 40 - 0.235 1 2 cbr 210 ------- 1 1.0 5.0 36 40 r 0.23586 1 2 cbr 210 ------- 1 1.0 5.0 22 26 + 0.23586 2 3 cbr 210 ------- 1 1.0 5.0 22 26 d 0.23586 2 3 cbr 210 ------- 1 1.0 5.0 22 26 r 0.23733 2 3 cbr 210 ------- 1 1.0 5.0 4 8 + 0.23733 3 5 cbr 210 ------- 1 1.0 5.0 4 8 - 0.23733 3 5 cbr 210 ------- 1 1.0 5.0 4 8 + 0.23875 1 2 cbr 210 ------- 1 1.0 5.0 37 41 - 0.23875 1 2 cbr 210 ------- 1 1.0 5.0 37 41 r 0.23961 1 2 cbr 210 ------- 1 1.0 5.0 23 27 + 0.23961 2 3 cbr 210 ------- 1 1.0 5.0 23 27 d 0.23961 2 3 cbr 210 ------- 1 1.0 5.0 23 27 r 0.24069 2 3 cbr 210 ------- 1 1.0 5.0 5 9 + 0.24069 3 5 cbr 210 ------- 1 1.0 5.0 5 9 - 0.24069 3 5 cbr 210 ------- 1 1.0 5.0 5 9 + 0.2425 1 2 cbr 210 ------- 1 1.0 5.0 38 42 - 0.2425 1 2 cbr 210 ------- 1 1.0 5.0 38 42 - 0.24285 2 3 cbr 210 ------- 1 1.0 5.0 12 16 r 0.24336 1 2 cbr 210 ------- 1 1.0 5.0 24 28 + 0.24336 2 3 cbr 210 ------- 1 1.0 5.0 24 28 r 0.24405 2 3 cbr 210 ------- 1 1.0 5.0 6 10 + 0.24405 3 5 cbr 210 ------- 1 1.0 5.0 6 10 - 0.24405 3 5 cbr 210 ------- 1 1.0 5.0 6 10 - 0.24621 2 3 cbr 210 ------- 1 1.0 5.0 13 17 + 0.24625 1 2 cbr 210 ------- 1 1.0 5.0 39 43 - 0.24625 1 2 cbr 210 ------- 1 1.0 5.0 39 43 r 0.24711 1 2 cbr 210 ------- 1 1.0 5.0 25 29 + 0.24711 2 3 cbr 210 ------- 1 1.0 5.0 25 29 r 0.24741 2 3 cbr 210 ------- 1 1.0 5.0 7 11 + 0.24741 3 5 cbr 210 ------- 1 1.0 5.0 7 11 - 0.24741 3 5 cbr 210 ------- 1 1.0 5.0 7 11 - 0.24957 2 3 cbr 210 ------- 1 1.0 5.0 14 18 + 0.25 1 2 cbr 210 ------- 1 1.0 5.0 40 44 - 0.25 1 2 cbr 210 ------- 1 1.0 5.0 40 44 r 0.25086 1 2 cbr 210 ------- 1 1.0 5.0 26 30 + 0.25086 2 3 cbr 210 ------- 1 1.0 5.0 26 30 - 0.25293 2 3 cbr 210 ------- 1 1.0 5.0 15 19 + 0.25375 1 2 cbr 210 ------- 1 1.0 5.0 41 45 - 0.25375 1 2 cbr 210 ------- 1 1.0 5.0 41 45 r 0.25461 1 2 cbr 210 ------- 1 1.0 5.0 27 31 + 0.25461 2 3 cbr 210 ------- 1 1.0 5.0 27 31 - 0.25629 2 3 tcp 1000 ------- 0 0.0 4.0 3 3 + 0.2575 1 2 cbr 210 ------- 1 1.0 5.0 42 46 - 0.2575 1 2 cbr 210 ------- 1 1.0 5.0 42 46 r 0.25836 1 2 cbr 210 ------- 1 1.0 5.0 28 32 + 0.25836 2 3 cbr 210 ------- 1 1.0 5.0 28 32 r 0.26008 3 5 cbr 210 ------- 1 1.0 5.0 0 4 + 0.26125 1 2 cbr 210 ------- 1 1.0 5.0 43 47 - 0.26125 1 2 cbr 210 ------- 1 1.0 5.0 43 47 r 0.26211 1 2 cbr 210 ------- 1 1.0 5.0 29 33 + 0.26211 2 3 cbr 210 ------- 1 1.0 5.0 29 33 d 0.26211 2 3 cbr 210 ------- 1 1.0 5.0 29 33 r 0.26341 2 3 tcp 1000 ------- 0 0.0 4.0 1 1 + 0.26341 3 4 tcp 1000 ------- 0 0.0 4.0 1 1 - 0.26341 3 4 tcp 1000 ------- 0 0.0 4.0 1 1 r 0.26383 3 5 cbr 210 ------- 1 1.0 5.0 1 5 + 0.265 1 2 cbr 210 ------- 1 1.0 5.0 44 48 - 0.265 1 2 cbr 210 ------- 1 1.0 5.0 44 48 r 0.26586 1 2 cbr 210 ------- 1 1.0 5.0 30 34 + 0.26586 2 3 cbr 210 ------- 1 1.0 5.0 30 34 d 0.26586 2 3 cbr 210 ------- 1 1.0 5.0 30 34 r 0.26677 2 3 cbr 210 ------- 1 1.0 5.0 8 12 + 0.26677 3 5 cbr 210 ------- 1 1.0 5.0 8 12 - 0.26677 3 5 cbr 210 ------- 1 1.0 5.0 8 12 r 0.26758 3 5 cbr 210 ------- 1 1.0 5.0 2 6 + 0.26875 1 2 cbr 210 ------- 1 1.0 5.0 45 49 - 0.26875 1 2 cbr 210 ------- 1 1.0 5.0 45 49 r 0.26961 1 2 cbr 210 ------- 1 1.0 5.0 31 35 + 0.26961 2 3 cbr 210 ------- 1 1.0 5.0 31 35 d 0.26961 2 3 cbr 210 ------- 1 1.0 5.0 31 35 r 0.27013 2 3 cbr 210 ------- 1 1.0 5.0 9 13 + 0.27013 3 5 cbr 210 ------- 1 1.0 5.0 9 13 - 0.27013 3 5 cbr 210 ------- 1 1.0 5.0 9 13 r 0.27133 3 5 cbr 210 ------- 1 1.0 5.0 3 7 - 0.27229 2 3 cbr 210 ------- 1 1.0 5.0 17 21 + 0.2725 1 2 cbr 210 ------- 1 1.0 5.0 46 50 - 0.2725 1 2 cbr 210 ------- 1 1.0 5.0 46 50 r 0.27336 1 2 cbr 210 ------- 1 1.0 5.0 32 36 + 0.27336 2 3 cbr 210 ------- 1 1.0 5.0 32 36 r 0.27349 2 3 cbr 210 ------- 1 1.0 5.0 10 14 + 0.27349 3 5 cbr 210 ------- 1 1.0 5.0 10 14 - 0.27349 3 5 cbr 210 ------- 1 1.0 5.0 10 14 - 0.27565 2 3 cbr 210 ------- 1 1.0 5.0 18 22 + 0.27625 1 2 cbr 210 ------- 1 1.0 5.0 47 51 - 0.27625 1 2 cbr 210 ------- 1 1.0 5.0 47 51 r 0.27685 2 3 cbr 210 ------- 1 1.0 5.0 11 15 + 0.27685 3 5 cbr 210 ------- 1 1.0 5.0 11 15 - 0.27685 3 5 cbr 210 ------- 1 1.0 5.0 11 15 r 0.27711 1 2 cbr 210 ------- 1 1.0 5.0 33 37 + 0.27711 2 3 cbr 210 ------- 1 1.0 5.0 33 37 - 0.27901 2 3 cbr 210 ------- 1 1.0 5.0 19 23 + 0.28 1 2 cbr 210 ------- 1 1.0 5.0 48 52 - 0.28 1 2 cbr 210 ------- 1 1.0 5.0 48 52 r 0.28086 1 2 cbr 210 ------- 1 1.0 5.0 34 38 + 0.28086 2 3 cbr 210 ------- 1 1.0 5.0 34 38 - 0.28237 2 3 cbr 210 ------- 1 1.0 5.0 20 24 + 0.28375 1 2 cbr 210 ------- 1 1.0 5.0 49 53 - 0.28375 1 2 cbr 210 ------- 1 1.0 5.0 49 53 r 0.28461 1 2 cbr 210 ------- 1 1.0 5.0 35 39 + 0.28461 2 3 cbr 210 ------- 1 1.0 5.0 35 39 - 0.28573 2 3 cbr 210 ------- 1 1.0 5.0 24 28 + 0.2875 1 2 cbr 210 ------- 1 1.0 5.0 50 54 - 0.2875 1 2 cbr 210 ------- 1 1.0 5.0 50 54 r 0.28836 1 2 cbr 210 ------- 1 1.0 5.0 36 40 + 0.28836 2 3 cbr 210 ------- 1 1.0 5.0 36 40 - 0.28909 2 3 cbr 210 ------- 1 1.0 5.0 25 29 r 0.29069 3 5 cbr 210 ------- 1 1.0 5.0 4 8 + 0.29125 1 2 cbr 210 ------- 1 1.0 5.0 51 55 - 0.29125 1 2 cbr 210 ------- 1 1.0 5.0 51 55 r 0.29211 1 2 cbr 210 ------- 1 1.0 5.0 37 41 + 0.29211 2 3 cbr 210 ------- 1 1.0 5.0 37 41 - 0.29245 2 3 cbr 210 ------- 1 1.0 5.0 26 30 r 0.29285 2 3 tcp 1000 ------- 0 0.0 4.0 2 2 + 0.29285 3 4 tcp 1000 ------- 0 0.0 4.0 2 2 - 0.29285 3 4 tcp 1000 ------- 0 0.0 4.0 2 2 r 0.29405 3 5 cbr 210 ------- 1 1.0 5.0 5 9 + 0.295 1 2 cbr 210 ------- 1 1.0 5.0 52 56 - 0.295 1 2 cbr 210 ------- 1 1.0 5.0 52 56 - 0.29581 2 3 cbr 210 ------- 1 1.0 5.0 27 31 r 0.29586 1 2 cbr 210 ------- 1 1.0 5.0 38 42 + 0.29586 2 3 cbr 210 ------- 1 1.0 5.0 38 42 r 0.29621 2 3 cbr 210 ------- 1 1.0 5.0 12 16 + 0.29621 3 5 cbr 210 ------- 1 1.0 5.0 12 16 - 0.29621 3 5 cbr 210 ------- 1 1.0 5.0 12 16 r 0.29741 3 5 cbr 210 ------- 1 1.0 5.0 6 10 + 0.29875 1 2 cbr 210 ------- 1 1.0 5.0 53 57 - 0.29875 1 2 cbr 210 ------- 1 1.0 5.0 53 57 - 0.29917 2 3 cbr 210 ------- 1 1.0 5.0 28 32 r 0.29957 2 3 cbr 210 ------- 1 1.0 5.0 13 17 + 0.29957 3 5 cbr 210 ------- 1 1.0 5.0 13 17 - 0.29957 3 5 cbr 210 ------- 1 1.0 5.0 13 17 r 0.29961 1 2 cbr 210 ------- 1 1.0 5.0 39 43 + 0.29961 2 3 cbr 210 ------- 1 1.0 5.0 39 43 r 0.29997 3 4 tcp 1000 ------- 0 0.0 4.0 0 0 + 0.29997 4 3 ack 40 ------- 0 4.0 0.0 0 58 - 0.29997 4 3 ack 40 ------- 0 4.0 0.0 0 58 r 0.30077 3 5 cbr 210 ------- 1 1.0 5.0 7 11 + 0.3025 1 2 cbr 210 ------- 1 1.0 5.0 54 59 - 0.3025 1 2 cbr 210 ------- 1 1.0 5.0 54 59 - 0.30253 2 3 cbr 210 ------- 1 1.0 5.0 32 36 r 0.30293 2 3 cbr 210 ------- 1 1.0 5.0 14 18 + 0.30293 3 5 cbr 210 ------- 1 1.0 5.0 14 18 - 0.30293 3 5 cbr 210 ------- 1 1.0 5.0 14 18 r 0.30336 1 2 cbr 210 ------- 1 1.0 5.0 40 44 + 0.30336 2 3 cbr 210 ------- 1 1.0 5.0 40 44 - 0.30589 2 3 cbr 210 ------- 1 1.0 5.0 33 37 + 0.30625 1 2 cbr 210 ------- 1 1.0 5.0 55 60 - 0.30625 1 2 cbr 210 ------- 1 1.0 5.0 55 60 r 0.30629 2 3 cbr 210 ------- 1 1.0 5.0 15 19 + 0.30629 3 5 cbr 210 ------- 1 1.0 5.0 15 19 - 0.30629 3 5 cbr 210 ------- 1 1.0 5.0 15 19 r 0.30711 1 2 cbr 210 ------- 1 1.0 5.0 41 45 + 0.30711 2 3 cbr 210 ------- 1 1.0 5.0 41 45 - 0.30925 2 3 cbr 210 ------- 1 1.0 5.0 34 38 + 0.31 1 2 cbr 210 ------- 1 1.0 5.0 56 61 - 0.31 1 2 cbr 210 ------- 1 1.0 5.0 56 61 r 0.31086 1 2 cbr 210 ------- 1 1.0 5.0 42 46 + 0.31086 2 3 cbr 210 ------- 1 1.0 5.0 42 46 - 0.31261 2 3 cbr 210 ------- 1 1.0 5.0 35 39 + 0.31375 1 2 cbr 210 ------- 1 1.0 5.0 57 62 - 0.31375 1 2 cbr 210 ------- 1 1.0 5.0 57 62 r 0.31461 1 2 cbr 210 ------- 1 1.0 5.0 43 47 + 0.31461 2 3 cbr 210 ------- 1 1.0 5.0 43 47 - 0.31597 2 3 cbr 210 ------- 1 1.0 5.0 36 40 + 0.3175 1 2 cbr 210 ------- 1 1.0 5.0 58 63 - 0.3175 1 2 cbr 210 ------- 1 1.0 5.0 58 63 r 0.31836 1 2 cbr 210 ------- 1 1.0 5.0 44 48 + 0.31836 2 3 cbr 210 ------- 1 1.0 5.0 44 48 - 0.31933 2 3 cbr 210 ------- 1 1.0 5.0 37 41 r 0.32013 3 5 cbr 210 ------- 1 1.0 5.0 8 12 + 0.32125 1 2 cbr 210 ------- 1 1.0 5.0 59 64 - 0.32125 1 2 cbr 210 ------- 1 1.0 5.0 59 64 r 0.32211 1 2 cbr 210 ------- 1 1.0 5.0 45 49 + 0.32211 2 3 cbr 210 ------- 1 1.0 5.0 45 49 r 0.32229 2 3 tcp 1000 ------- 0 0.0 4.0 3 3 + 0.32229 3 4 tcp 1000 ------- 0 0.0 4.0 3 3 - 0.32229 3 4 tcp 1000 ------- 0 0.0 4.0 3 3 - 0.32269 2 3 cbr 210 ------- 1 1.0 5.0 38 42 r 0.32349 3 5 cbr 210 ------- 1 1.0 5.0 9 13 + 0.325 1 2 cbr 210 ------- 1 1.0 5.0 60 65 - 0.325 1 2 cbr 210 ------- 1 1.0 5.0 60 65 r 0.32565 2 3 cbr 210 ------- 1 1.0 5.0 17 21 + 0.32565 3 5 cbr 210 ------- 1 1.0 5.0 17 21 - 0.32565 3 5 cbr 210 ------- 1 1.0 5.0 17 21 r 0.32586 1 2 cbr 210 ------- 1 1.0 5.0 46 50 + 0.32586 2 3 cbr 210 ------- 1 1.0 5.0 46 50 - 0.32605 2 3 cbr 210 ------- 1 1.0 5.0 39 43 r 0.32685 3 5 cbr 210 ------- 1 1.0 5.0 10 14 + 0.32875 1 2 cbr 210 ------- 1 1.0 5.0 61 66 - 0.32875 1 2 cbr 210 ------- 1 1.0 5.0 61 66 r 0.32901 2 3 cbr 210 ------- 1 1.0 5.0 18 22 + 0.32901 3 5 cbr 210 ------- 1 1.0 5.0 18 22 - 0.32901 3 5 cbr 210 ------- 1 1.0 5.0 18 22 - 0.32941 2 3 cbr 210 ------- 1 1.0 5.0 40 44 r 0.32941 3 4 tcp 1000 ------- 0 0.0 4.0 1 1 + 0.32941 4 3 ack 40 ------- 0 4.0 0.0 1 67 - 0.32941 4 3 ack 40 ------- 0 4.0 0.0 1 67 r 0.32961 1 2 cbr 210 ------- 1 1.0 5.0 47 51 + 0.32961 2 3 cbr 210 ------- 1 1.0 5.0 47 51 r 0.33021 3 5 cbr 210 ------- 1 1.0 5.0 11 15 r 0.33237 2 3 cbr 210 ------- 1 1.0 5.0 19 23 + 0.33237 3 5 cbr 210 ------- 1 1.0 5.0 19 23 - 0.33237 3 5 cbr 210 ------- 1 1.0 5.0 19 23 + 0.3325 1 2 cbr 210 ------- 1 1.0 5.0 62 68 - 0.3325 1 2 cbr 210 ------- 1 1.0 5.0 62 68 - 0.33277 2 3 cbr 210 ------- 1 1.0 5.0 41 45 r 0.33336 1 2 cbr 210 ------- 1 1.0 5.0 48 52 + 0.33336 2 3 cbr 210 ------- 1 1.0 5.0 48 52 r 0.33573 2 3 cbr 210 ------- 1 1.0 5.0 20 24 + 0.33573 3 5 cbr 210 ------- 1 1.0 5.0 20 24 - 0.33573 3 5 cbr 210 ------- 1 1.0 5.0 20 24 - 0.33613 2 3 cbr 210 ------- 1 1.0 5.0 42 46 + 0.33625 1 2 cbr 210 ------- 1 1.0 5.0 63 69 - 0.33625 1 2 cbr 210 ------- 1 1.0 5.0 63 69 r 0.33711 1 2 cbr 210 ------- 1 1.0 5.0 49 53 + 0.33711 2 3 cbr 210 ------- 1 1.0 5.0 49 53 r 0.33909 2 3 cbr 210 ------- 1 1.0 5.0 24 28 + 0.33909 3 5 cbr 210 ------- 1 1.0 5.0 24 28 - 0.33909 3 5 cbr 210 ------- 1 1.0 5.0 24 28 - 0.33949 2 3 cbr 210 ------- 1 1.0 5.0 43 47 + 0.34 1 2 cbr 210 ------- 1 1.0 5.0 64 70 - 0.34 1 2 cbr 210 ------- 1 1.0 5.0 64 70 r 0.34086 1 2 cbr 210 ------- 1 1.0 5.0 50 54 + 0.34086 2 3 cbr 210 ------- 1 1.0 5.0 50 54 r 0.34245 2 3 cbr 210 ------- 1 1.0 5.0 25 29 + 0.34245 3 5 cbr 210 ------- 1 1.0 5.0 25 29 - 0.34245 3 5 cbr 210 ------- 1 1.0 5.0 25 29 - 0.34285 2 3 cbr 210 ------- 1 1.0 5.0 44 48 + 0.34375 1 2 cbr 210 ------- 1 1.0 5.0 65 71 - 0.34375 1 2 cbr 210 ------- 1 1.0 5.0 65 71 r 0.34461 1 2 cbr 210 ------- 1 1.0 5.0 51 55 + 0.34461 2 3 cbr 210 ------- 1 1.0 5.0 51 55 r 0.34581 2 3 cbr 210 ------- 1 1.0 5.0 26 30 + 0.34581 3 5 cbr 210 ------- 1 1.0 5.0 26 30 - 0.34581 3 5 cbr 210 ------- 1 1.0 5.0 26 30 - 0.34621 2 3 cbr 210 ------- 1 1.0 5.0 45 49 + 0.3475 1 2 cbr 210 ------- 1 1.0 5.0 66 72 - 0.3475 1 2 cbr 210 ------- 1 1.0 5.0 66 72 r 0.34836 1 2 cbr 210 ------- 1 1.0 5.0 52 56 + 0.34836 2 3 cbr 210 ------- 1 1.0 5.0 52 56 r 0.34917 2 3 cbr 210 ------- 1 1.0 5.0 27 31 + 0.34917 3 5 cbr 210 ------- 1 1.0 5.0 27 31 - 0.34917 3 5 cbr 210 ------- 1 1.0 5.0 27 31 - 0.34957 2 3 cbr 210 ------- 1 1.0 5.0 46 50 r 0.34957 3 5 cbr 210 ------- 1 1.0 5.0 12 16 r 0.35061 4 3 ack 40 ------- 0 4.0 0.0 0 58 + 0.35061 3 2 ack 40 ------- 0 4.0 0.0 0 58 - 0.35061 3 2 ack 40 ------- 0 4.0 0.0 0 58 + 0.35125 1 2 cbr 210 ------- 1 1.0 5.0 67 73 - 0.35125 1 2 cbr 210 ------- 1 1.0 5.0 67 73 r 0.35211 1 2 cbr 210 ------- 1 1.0 5.0 53 57 + 0.35211 2 3 cbr 210 ------- 1 1.0 5.0 53 57 r 0.35253 2 3 cbr 210 ------- 1 1.0 5.0 28 32 + 0.35253 3 5 cbr 210 ------- 1 1.0 5.0 28 32 - 0.35253 3 5 cbr 210 ------- 1 1.0 5.0 28 32 - 0.35293 2 3 cbr 210 ------- 1 1.0 5.0 47 51 r 0.35293 3 5 cbr 210 ------- 1 1.0 5.0 13 17 + 0.355 1 2 cbr 210 ------- 1 1.0 5.0 68 74 - 0.355 1 2 cbr 210 ------- 1 1.0 5.0 68 74 r 0.35586 1 2 cbr 210 ------- 1 1.0 5.0 54 59 + 0.35586 2 3 cbr 210 ------- 1 1.0 5.0 54 59 r 0.35589 2 3 cbr 210 ------- 1 1.0 5.0 32 36 + 0.35589 3 5 cbr 210 ------- 1 1.0 5.0 32 36 - 0.35589 3 5 cbr 210 ------- 1 1.0 5.0 32 36 - 0.35629 2 3 cbr 210 ------- 1 1.0 5.0 48 52 r 0.35629 3 5 cbr 210 ------- 1 1.0 5.0 14 18 + 0.35875 1 2 cbr 210 ------- 1 1.0 5.0 69 75 - 0.35875 1 2 cbr 210 ------- 1 1.0 5.0 69 75 r 0.35885 3 4 tcp 1000 ------- 0 0.0 4.0 2 2 + 0.35885 4 3 ack 40 ------- 0 4.0 0.0 2 76 - 0.35885 4 3 ack 40 ------- 0 4.0 0.0 2 76 r 0.35925 2 3 cbr 210 ------- 1 1.0 5.0 33 37 + 0.35925 3 5 cbr 210 ------- 1 1.0 5.0 33 37 - 0.35925 3 5 cbr 210 ------- 1 1.0 5.0 33 37 r 0.35961 1 2 cbr 210 ------- 1 1.0 5.0 55 60 + 0.35961 2 3 cbr 210 ------- 1 1.0 5.0 55 60 - 0.35965 2 3 cbr 210 ------- 1 1.0 5.0 49 53 r 0.35965 3 5 cbr 210 ------- 1 1.0 5.0 15 19 + 0.3625 1 2 cbr 210 ------- 1 1.0 5.0 70 77 - 0.3625 1 2 cbr 210 ------- 1 1.0 5.0 70 77 r 0.36261 2 3 cbr 210 ------- 1 1.0 5.0 34 38 + 0.36261 3 5 cbr 210 ------- 1 1.0 5.0 34 38 - 0.36261 3 5 cbr 210 ------- 1 1.0 5.0 34 38 - 0.36301 2 3 cbr 210 ------- 1 1.0 5.0 50 54 r 0.36336 1 2 cbr 210 ------- 1 1.0 5.0 56 61 + 0.36336 2 3 cbr 210 ------- 1 1.0 5.0 56 61 r 0.36597 2 3 cbr 210 ------- 1 1.0 5.0 35 39 + 0.36597 3 5 cbr 210 ------- 1 1.0 5.0 35 39 - 0.36597 3 5 cbr 210 ------- 1 1.0 5.0 35 39 + 0.36625 1 2 cbr 210 ------- 1 1.0 5.0 71 78 - 0.36625 1 2 cbr 210 ------- 1 1.0 5.0 71 78 - 0.36637 2 3 cbr 210 ------- 1 1.0 5.0 51 55 r 0.36711 1 2 cbr 210 ------- 1 1.0 5.0 57 62 + 0.36711 2 3 cbr 210 ------- 1 1.0 5.0 57 62 r 0.36933 2 3 cbr 210 ------- 1 1.0 5.0 36 40 + 0.36933 3 5 cbr 210 ------- 1 1.0 5.0 36 40 - 0.36933 3 5 cbr 210 ------- 1 1.0 5.0 36 40 - 0.36973 2 3 cbr 210 ------- 1 1.0 5.0 52 56 + 0.37 1 2 cbr 210 ------- 1 1.0 5.0 72 79 - 0.37 1 2 cbr 210 ------- 1 1.0 5.0 72 79 r 0.37086 1 2 cbr 210 ------- 1 1.0 5.0 58 63 + 0.37086 2 3 cbr 210 ------- 1 1.0 5.0 58 63 r 0.37269 2 3 cbr 210 ------- 1 1.0 5.0 37 41 + 0.37269 3 5 cbr 210 ------- 1 1.0 5.0 37 41 - 0.37269 3 5 cbr 210 ------- 1 1.0 5.0 37 41 - 0.37309 2 3 cbr 210 ------- 1 1.0 5.0 53 57 + 0.37375 1 2 cbr 210 ------- 1 1.0 5.0 73 80 - 0.37375 1 2 cbr 210 ------- 1 1.0 5.0 73 80 r 0.37461 1 2 cbr 210 ------- 1 1.0 5.0 59 64 + 0.37461 2 3 cbr 210 ------- 1 1.0 5.0 59 64 r 0.37605 2 3 cbr 210 ------- 1 1.0 5.0 38 42 + 0.37605 3 5 cbr 210 ------- 1 1.0 5.0 38 42 - 0.37605 3 5 cbr 210 ------- 1 1.0 5.0 38 42 - 0.37645 2 3 cbr 210 ------- 1 1.0 5.0 54 59 + 0.3775 1 2 cbr 210 ------- 1 1.0 5.0 74 81 - 0.3775 1 2 cbr 210 ------- 1 1.0 5.0 74 81 r 0.37836 1 2 cbr 210 ------- 1 1.0 5.0 60 65 + 0.37836 2 3 cbr 210 ------- 1 1.0 5.0 60 65 r 0.37901 3 5 cbr 210 ------- 1 1.0 5.0 17 21 r 0.37941 2 3 cbr 210 ------- 1 1.0 5.0 39 43 + 0.37941 3 5 cbr 210 ------- 1 1.0 5.0 39 43 - 0.37941 3 5 cbr 210 ------- 1 1.0 5.0 39 43 - 0.37981 2 3 cbr 210 ------- 1 1.0 5.0 55 60 r 0.38005 4 3 ack 40 ------- 0 4.0 0.0 1 67 + 0.38005 3 2 ack 40 ------- 0 4.0 0.0 1 67 - 0.38005 3 2 ack 40 ------- 0 4.0 0.0 1 67 + 0.38125 1 2 cbr 210 ------- 1 1.0 5.0 75 82 - 0.38125 1 2 cbr 210 ------- 1 1.0 5.0 75 82 r 0.38211 1 2 cbr 210 ------- 1 1.0 5.0 61 66 + 0.38211 2 3 cbr 210 ------- 1 1.0 5.0 61 66 r 0.38237 3 5 cbr 210 ------- 1 1.0 5.0 18 22 r 0.38277 2 3 cbr 210 ------- 1 1.0 5.0 40 44 + 0.38277 3 5 cbr 210 ------- 1 1.0 5.0 40 44 - 0.38277 3 5 cbr 210 ------- 1 1.0 5.0 40 44 - 0.38317 2 3 cbr 210 ------- 1 1.0 5.0 56 61 + 0.385 1 2 cbr 210 ------- 1 1.0 5.0 76 83 - 0.385 1 2 cbr 210 ------- 1 1.0 5.0 76 83 r 0.38573 3 5 cbr 210 ------- 1 1.0 5.0 19 23 r 0.38586 1 2 cbr 210 ------- 1 1.0 5.0 62 68 + 0.38586 2 3 cbr 210 ------- 1 1.0 5.0 62 68 r 0.38613 2 3 cbr 210 ------- 1 1.0 5.0 41 45 + 0.38613 3 5 cbr 210 ------- 1 1.0 5.0 41 45 - 0.38613 3 5 cbr 210 ------- 1 1.0 5.0 41 45 - 0.38653 2 3 cbr 210 ------- 1 1.0 5.0 57 62 r 0.38829 3 4 tcp 1000 ------- 0 0.0 4.0 3 3 + 0.38829 4 3 ack 40 ------- 0 4.0 0.0 3 84 - 0.38829 4 3 ack 40 ------- 0 4.0 0.0 3 84 + 0.38875 1 2 cbr 210 ------- 1 1.0 5.0 77 85 - 0.38875 1 2 cbr 210 ------- 1 1.0 5.0 77 85 r 0.38909 3 5 cbr 210 ------- 1 1.0 5.0 20 24 r 0.38949 2 3 cbr 210 ------- 1 1.0 5.0 42 46 + 0.38949 3 5 cbr 210 ------- 1 1.0 5.0 42 46 - 0.38949 3 5 cbr 210 ------- 1 1.0 5.0 42 46 r 0.38961 1 2 cbr 210 ------- 1 1.0 5.0 63 69 + 0.38961 2 3 cbr 210 ------- 1 1.0 5.0 63 69 - 0.38989 2 3 cbr 210 ------- 1 1.0 5.0 58 63 r 0.39245 3 5 cbr 210 ------- 1 1.0 5.0 24 28 + 0.3925 1 2 cbr 210 ------- 1 1.0 5.0 78 86 - 0.3925 1 2 cbr 210 ------- 1 1.0 5.0 78 86 r 0.39285 2 3 cbr 210 ------- 1 1.0 5.0 43 47 + 0.39285 3 5 cbr 210 ------- 1 1.0 5.0 43 47 - 0.39285 3 5 cbr 210 ------- 1 1.0 5.0 43 47 - 0.39325 2 3 cbr 210 ------- 1 1.0 5.0 59 64 r 0.39336 1 2 cbr 210 ------- 1 1.0 5.0 64 70 + 0.39336 2 3 cbr 210 ------- 1 1.0 5.0 64 70 r 0.39581 3 5 cbr 210 ------- 1 1.0 5.0 25 29 r 0.39621 2 3 cbr 210 ------- 1 1.0 5.0 44 48 + 0.39621 3 5 cbr 210 ------- 1 1.0 5.0 44 48 - 0.39621 3 5 cbr 210 ------- 1 1.0 5.0 44 48 + 0.39625 1 2 cbr 210 ------- 1 1.0 5.0 79 87 - 0.39625 1 2 cbr 210 ------- 1 1.0 5.0 79 87 - 0.39661 2 3 cbr 210 ------- 1 1.0 5.0 60 65 r 0.39711 1 2 cbr 210 ------- 1 1.0 5.0 65 71 + 0.39711 2 3 cbr 210 ------- 1 1.0 5.0 65 71 r 0.39917 3 5 cbr 210 ------- 1 1.0 5.0 26 30 r 0.39957 2 3 cbr 210 ------- 1 1.0 5.0 45 49 + 0.39957 3 5 cbr 210 ------- 1 1.0 5.0 45 49 - 0.39957 3 5 cbr 210 ------- 1 1.0 5.0 45 49 - 0.39997 2 3 cbr 210 ------- 1 1.0 5.0 61 66 + 0.4 1 2 cbr 210 ------- 1 1.0 5.0 80 88 - 0.4 1 2 cbr 210 ------- 1 1.0 5.0 80 88 r 0.40086 1 2 cbr 210 ------- 1 1.0 5.0 66 72 + 0.40086 2 3 cbr 210 ------- 1 1.0 5.0 66 72 r 0.40125 3 2 ack 40 ------- 0 4.0 0.0 0 58 + 0.40125 2 0 ack 40 ------- 0 4.0 0.0 0 58 - 0.40125 2 0 ack 40 ------- 0 4.0 0.0 0 58 r 0.40253 3 5 cbr 210 ------- 1 1.0 5.0 27 31 r 0.40293 2 3 cbr 210 ------- 1 1.0 5.0 46 50 + 0.40293 3 5 cbr 210 ------- 1 1.0 5.0 46 50 - 0.40293 3 5 cbr 210 ------- 1 1.0 5.0 46 50 - 0.40333 2 3 cbr 210 ------- 1 1.0 5.0 62 68 + 0.40375 1 2 cbr 210 ------- 1 1.0 5.0 81 89 - 0.40375 1 2 cbr 210 ------- 1 1.0 5.0 81 89 r 0.40461 1 2 cbr 210 ------- 1 1.0 5.0 67 73 + 0.40461 2 3 cbr 210 ------- 1 1.0 5.0 67 73 r 0.40589 3 5 cbr 210 ------- 1 1.0 5.0 28 32 r 0.40629 2 3 cbr 210 ------- 1 1.0 5.0 47 51 + 0.40629 3 5 cbr 210 ------- 1 1.0 5.0 47 51 - 0.40629 3 5 cbr 210 ------- 1 1.0 5.0 47 51 - 0.40669 2 3 cbr 210 ------- 1 1.0 5.0 63 69 + 0.4075 1 2 cbr 210 ------- 1 1.0 5.0 82 90 - 0.4075 1 2 cbr 210 ------- 1 1.0 5.0 82 90 r 0.40836 1 2 cbr 210 ------- 1 1.0 5.0 68 74 + 0.40836 2 3 cbr 210 ------- 1 1.0 5.0 68 74 r 0.40925 3 5 cbr 210 ------- 1 1.0 5.0 32 36 r 0.40949 4 3 ack 40 ------- 0 4.0 0.0 2 76 + 0.40949 3 2 ack 40 ------- 0 4.0 0.0 2 76 - 0.40949 3 2 ack 40 ------- 0 4.0 0.0 2 76 r 0.40965 2 3 cbr 210 ------- 1 1.0 5.0 48 52 + 0.40965 3 5 cbr 210 ------- 1 1.0 5.0 48 52 - 0.40965 3 5 cbr 210 ------- 1 1.0 5.0 48 52 - 0.41005 2 3 cbr 210 ------- 1 1.0 5.0 64 70 + 0.41125 1 2 cbr 210 ------- 1 1.0 5.0 83 91 - 0.41125 1 2 cbr 210 ------- 1 1.0 5.0 83 91 r 0.41211 1 2 cbr 210 ------- 1 1.0 5.0 69 75 + 0.41211 2 3 cbr 210 ------- 1 1.0 5.0 69 75 r 0.41261 3 5 cbr 210 ------- 1 1.0 5.0 33 37 r 0.41301 2 3 cbr 210 ------- 1 1.0 5.0 49 53 + 0.41301 3 5 cbr 210 ------- 1 1.0 5.0 49 53 - 0.41301 3 5 cbr 210 ------- 1 1.0 5.0 49 53 - 0.41341 2 3 cbr 210 ------- 1 1.0 5.0 65 71 + 0.415 1 2 cbr 210 ------- 1 1.0 5.0 84 92 - 0.415 1 2 cbr 210 ------- 1 1.0 5.0 84 92 r 0.41586 1 2 cbr 210 ------- 1 1.0 5.0 70 77 + 0.41586 2 3 cbr 210 ------- 1 1.0 5.0 70 77 r 0.41597 3 5 cbr 210 ------- 1 1.0 5.0 34 38 r 0.41637 2 3 cbr 210 ------- 1 1.0 5.0 50 54 + 0.41637 3 5 cbr 210 ------- 1 1.0 5.0 50 54 - 0.41637 3 5 cbr 210 ------- 1 1.0 5.0 50 54 - 0.41677 2 3 cbr 210 ------- 1 1.0 5.0 66 72 + 0.41875 1 2 cbr 210 ------- 1 1.0 5.0 85 93 - 0.41875 1 2 cbr 210 ------- 1 1.0 5.0 85 93 r 0.41933 3 5 cbr 210 ------- 1 1.0 5.0 35 39 r 0.41961 1 2 cbr 210 ------- 1 1.0 5.0 71 78 + 0.41961 2 3 cbr 210 ------- 1 1.0 5.0 71 78 r 0.41973 2 3 cbr 210 ------- 1 1.0 5.0 51 55 + 0.41973 3 5 cbr 210 ------- 1 1.0 5.0 51 55 - 0.41973 3 5 cbr 210 ------- 1 1.0 5.0 51 55 - 0.42013 2 3 cbr 210 ------- 1 1.0 5.0 67 73 + 0.4225 1 2 cbr 210 ------- 1 1.0 5.0 86 94 - 0.4225 1 2 cbr 210 ------- 1 1.0 5.0 86 94 r 0.42269 3 5 cbr 210 ------- 1 1.0 5.0 36 40 r 0.42309 2 3 cbr 210 ------- 1 1.0 5.0 52 56 + 0.42309 3 5 cbr 210 ------- 1 1.0 5.0 52 56 - 0.42309 3 5 cbr 210 ------- 1 1.0 5.0 52 56 r 0.42336 1 2 cbr 210 ------- 1 1.0 5.0 72 79 + 0.42336 2 3 cbr 210 ------- 1 1.0 5.0 72 79 - 0.42349 2 3 cbr 210 ------- 1 1.0 5.0 68 74 r 0.42605 3 5 cbr 210 ------- 1 1.0 5.0 37 41 + 0.42625 1 2 cbr 210 ------- 1 1.0 5.0 87 95 - 0.42625 1 2 cbr 210 ------- 1 1.0 5.0 87 95 r 0.42645 2 3 cbr 210 ------- 1 1.0 5.0 53 57 + 0.42645 3 5 cbr 210 ------- 1 1.0 5.0 53 57 - 0.42645 3 5 cbr 210 ------- 1 1.0 5.0 53 57 - 0.42685 2 3 cbr 210 ------- 1 1.0 5.0 69 75 r 0.42711 1 2 cbr 210 ------- 1 1.0 5.0 73 80 + 0.42711 2 3 cbr 210 ------- 1 1.0 5.0 73 80 r 0.42941 3 5 cbr 210 ------- 1 1.0 5.0 38 42 r 0.42981 2 3 cbr 210 ------- 1 1.0 5.0 54 59 + 0.42981 3 5 cbr 210 ------- 1 1.0 5.0 54 59 - 0.42981 3 5 cbr 210 ------- 1 1.0 5.0 54 59 + 0.43 1 2 cbr 210 ------- 1 1.0 5.0 88 96 - 0.43 1 2 cbr 210 ------- 1 1.0 5.0 88 96 - 0.43021 2 3 cbr 210 ------- 1 1.0 5.0 70 77 r 0.43069 3 2 ack 40 ------- 0 4.0 0.0 1 67 + 0.43069 2 0 ack 40 ------- 0 4.0 0.0 1 67 - 0.43069 2 0 ack 40 ------- 0 4.0 0.0 1 67 r 0.43086 1 2 cbr 210 ------- 1 1.0 5.0 74 81 + 0.43086 2 3 cbr 210 ------- 1 1.0 5.0 74 81 r 0.43277 3 5 cbr 210 ------- 1 1.0 5.0 39 43 r 0.43317 2 3 cbr 210 ------- 1 1.0 5.0 55 60 + 0.43317 3 5 cbr 210 ------- 1 1.0 5.0 55 60 - 0.43317 3 5 cbr 210 ------- 1 1.0 5.0 55 60 - 0.43357 2 3 cbr 210 ------- 1 1.0 5.0 71 78 + 0.43375 1 2 cbr 210 ------- 1 1.0 5.0 89 97 - 0.43375 1 2 cbr 210 ------- 1 1.0 5.0 89 97 r 0.43461 1 2 cbr 210 ------- 1 1.0 5.0 75 82 + 0.43461 2 3 cbr 210 ------- 1 1.0 5.0 75 82 r 0.43613 3 5 cbr 210 ------- 1 1.0 5.0 40 44 r 0.43653 2 3 cbr 210 ------- 1 1.0 5.0 56 61 + 0.43653 3 5 cbr 210 ------- 1 1.0 5.0 56 61 - 0.43653 3 5 cbr 210 ------- 1 1.0 5.0 56 61 - 0.43693 2 3 cbr 210 ------- 1 1.0 5.0 72 79 + 0.4375 1 2 cbr 210 ------- 1 1.0 5.0 90 98 - 0.4375 1 2 cbr 210 ------- 1 1.0 5.0 90 98 r 0.43836 1 2 cbr 210 ------- 1 1.0 5.0 76 83 + 0.43836 2 3 cbr 210 ------- 1 1.0 5.0 76 83 r 0.43893 4 3 ack 40 ------- 0 4.0 0.0 3 84 + 0.43893 3 2 ack 40 ------- 0 4.0 0.0 3 84 - 0.43893 3 2 ack 40 ------- 0 4.0 0.0 3 84 r 0.43949 3 5 cbr 210 ------- 1 1.0 5.0 41 45 r 0.43989 2 3 cbr 210 ------- 1 1.0 5.0 57 62 + 0.43989 3 5 cbr 210 ------- 1 1.0 5.0 57 62 - 0.43989 3 5 cbr 210 ------- 1 1.0 5.0 57 62 - 0.44029 2 3 cbr 210 ------- 1 1.0 5.0 73 80 + 0.44125 1 2 cbr 210 ------- 1 1.0 5.0 91 99 - 0.44125 1 2 cbr 210 ------- 1 1.0 5.0 91 99 r 0.44211 1 2 cbr 210 ------- 1 1.0 5.0 77 85 + 0.44211 2 3 cbr 210 ------- 1 1.0 5.0 77 85 r 0.44285 3 5 cbr 210 ------- 1 1.0 5.0 42 46 r 0.44325 2 3 cbr 210 ------- 1 1.0 5.0 58 63 + 0.44325 3 5 cbr 210 ------- 1 1.0 5.0 58 63 - 0.44325 3 5 cbr 210 ------- 1 1.0 5.0 58 63 - 0.44365 2 3 cbr 210 ------- 1 1.0 5.0 74 81 + 0.445 1 2 cbr 210 ------- 1 1.0 5.0 92 100 - 0.445 1 2 cbr 210 ------- 1 1.0 5.0 92 100 r 0.44586 1 2 cbr 210 ------- 1 1.0 5.0 78 86 + 0.44586 2 3 cbr 210 ------- 1 1.0 5.0 78 86 r 0.44621 3 5 cbr 210 ------- 1 1.0 5.0 43 47 r 0.44661 2 3 cbr 210 ------- 1 1.0 5.0 59 64 + 0.44661 3 5 cbr 210 ------- 1 1.0 5.0 59 64 - 0.44661 3 5 cbr 210 ------- 1 1.0 5.0 59 64 - 0.44701 2 3 cbr 210 ------- 1 1.0 5.0 75 82 + 0.44875 1 2 cbr 210 ------- 1 1.0 5.0 93 101 - 0.44875 1 2 cbr 210 ------- 1 1.0 5.0 93 101 r 0.44957 3 5 cbr 210 ------- 1 1.0 5.0 44 48 r 0.44961 1 2 cbr 210 ------- 1 1.0 5.0 79 87 + 0.44961 2 3 cbr 210 ------- 1 1.0 5.0 79 87 r 0.44997 2 3 cbr 210 ------- 1 1.0 5.0 60 65 + 0.44997 3 5 cbr 210 ------- 1 1.0 5.0 60 65 - 0.44997 3 5 cbr 210 ------- 1 1.0 5.0 60 65 - 0.45037 2 3 cbr 210 ------- 1 1.0 5.0 76 83 r 0.45189 2 0 ack 40 ------- 0 4.0 0.0 0 58 + 0.45189 0 2 tcp 1000 ------- 0 0.0 4.0 4 102 - 0.45189 0 2 tcp 1000 ------- 0 0.0 4.0 4 102 + 0.4525 1 2 cbr 210 ------- 1 1.0 5.0 94 103 - 0.4525 1 2 cbr 210 ------- 1 1.0 5.0 94 103 r 0.45293 3 5 cbr 210 ------- 1 1.0 5.0 45 49 r 0.45333 2 3 cbr 210 ------- 1 1.0 5.0 61 66 + 0.45333 3 5 cbr 210 ------- 1 1.0 5.0 61 66 - 0.45333 3 5 cbr 210 ------- 1 1.0 5.0 61 66 r 0.45336 1 2 cbr 210 ------- 1 1.0 5.0 80 88 + 0.45336 2 3 cbr 210 ------- 1 1.0 5.0 80 88 - 0.45373 2 3 cbr 210 ------- 1 1.0 5.0 77 85 + 0.45625 1 2 cbr 210 ------- 1 1.0 5.0 95 104 - 0.45625 1 2 cbr 210 ------- 1 1.0 5.0 95 104 r 0.45629 3 5 cbr 210 ------- 1 1.0 5.0 46 50 r 0.45669 2 3 cbr 210 ------- 1 1.0 5.0 62 68 + 0.45669 3 5 cbr 210 ------- 1 1.0 5.0 62 68 - 0.45669 3 5 cbr 210 ------- 1 1.0 5.0 62 68 - 0.45709 2 3 cbr 210 ------- 1 1.0 5.0 78 86 r 0.45711 1 2 cbr 210 ------- 1 1.0 5.0 81 89 + 0.45711 2 3 cbr 210 ------- 1 1.0 5.0 81 89 r 0.45965 3 5 cbr 210 ------- 1 1.0 5.0 47 51 + 0.46 1 2 cbr 210 ------- 1 1.0 5.0 96 105 - 0.46 1 2 cbr 210 ------- 1 1.0 5.0 96 105 r 0.46005 2 3 cbr 210 ------- 1 1.0 5.0 63 69 + 0.46005 3 5 cbr 210 ------- 1 1.0 5.0 63 69 - 0.46005 3 5 cbr 210 ------- 1 1.0 5.0 63 69 r 0.46013 3 2 ack 40 ------- 0 4.0 0.0 2 76 + 0.46013 2 0 ack 40 ------- 0 4.0 0.0 2 76 - 0.46013 2 0 ack 40 ------- 0 4.0 0.0 2 76 - 0.46045 2 3 cbr 210 ------- 1 1.0 5.0 79 87 r 0.46086 1 2 cbr 210 ------- 1 1.0 5.0 82 90 + 0.46086 2 3 cbr 210 ------- 1 1.0 5.0 82 90 r 0.46301 3 5 cbr 210 ------- 1 1.0 5.0 48 52 r 0.46341 2 3 cbr 210 ------- 1 1.0 5.0 64 70 + 0.46341 3 5 cbr 210 ------- 1 1.0 5.0 64 70 - 0.46341 3 5 cbr 210 ------- 1 1.0 5.0 64 70 + 0.46375 1 2 cbr 210 ------- 1 1.0 5.0 97 106 - 0.46375 1 2 cbr 210 ------- 1 1.0 5.0 97 106 - 0.46381 2 3 cbr 210 ------- 1 1.0 5.0 80 88 r 0.46461 1 2 cbr 210 ------- 1 1.0 5.0 83 91 + 0.46461 2 3 cbr 210 ------- 1 1.0 5.0 83 91 r 0.46637 3 5 cbr 210 ------- 1 1.0 5.0 49 53 r 0.46677 2 3 cbr 210 ------- 1 1.0 5.0 65 71 + 0.46677 3 5 cbr 210 ------- 1 1.0 5.0 65 71 - 0.46677 3 5 cbr 210 ------- 1 1.0 5.0 65 71 - 0.46717 2 3 cbr 210 ------- 1 1.0 5.0 81 89 + 0.4675 1 2 cbr 210 ------- 1 1.0 5.0 98 107 - 0.4675 1 2 cbr 210 ------- 1 1.0 5.0 98 107 r 0.46836 1 2 cbr 210 ------- 1 1.0 5.0 84 92 + 0.46836 2 3 cbr 210 ------- 1 1.0 5.0 84 92 r 0.46973 3 5 cbr 210 ------- 1 1.0 5.0 50 54 r 0.47013 2 3 cbr 210 ------- 1 1.0 5.0 66 72 + 0.47013 3 5 cbr 210 ------- 1 1.0 5.0 66 72 - 0.47013 3 5 cbr 210 ------- 1 1.0 5.0 66 72 - 0.47053 2 3 cbr 210 ------- 1 1.0 5.0 82 90 + 0.47125 1 2 cbr 210 ------- 1 1.0 5.0 99 108 - 0.47125 1 2 cbr 210 ------- 1 1.0 5.0 99 108 r 0.47211 1 2 cbr 210 ------- 1 1.0 5.0 85 93 + 0.47211 2 3 cbr 210 ------- 1 1.0 5.0 85 93 r 0.47309 3 5 cbr 210 ------- 1 1.0 5.0 51 55 r 0.47349 2 3 cbr 210 ------- 1 1.0 5.0 67 73 + 0.47349 3 5 cbr 210 ------- 1 1.0 5.0 67 73 - 0.47349 3 5 cbr 210 ------- 1 1.0 5.0 67 73 - 0.47389 2 3 cbr 210 ------- 1 1.0 5.0 83 91 + 0.475 1 2 cbr 210 ------- 1 1.0 5.0 100 109 - 0.475 1 2 cbr 210 ------- 1 1.0 5.0 100 109 r 0.47586 1 2 cbr 210 ------- 1 1.0 5.0 86 94 + 0.47586 2 3 cbr 210 ------- 1 1.0 5.0 86 94 r 0.47645 3 5 cbr 210 ------- 1 1.0 5.0 52 56 r 0.47685 2 3 cbr 210 ------- 1 1.0 5.0 68 74 + 0.47685 3 5 cbr 210 ------- 1 1.0 5.0 68 74 - 0.47685 3 5 cbr 210 ------- 1 1.0 5.0 68 74 - 0.47725 2 3 cbr 210 ------- 1 1.0 5.0 84 92 + 0.47875 1 2 cbr 210 ------- 1 1.0 5.0 101 110 - 0.47875 1 2 cbr 210 ------- 1 1.0 5.0 101 110 r 0.47961 1 2 cbr 210 ------- 1 1.0 5.0 87 95 + 0.47961 2 3 cbr 210 ------- 1 1.0 5.0 87 95 r 0.47981 3 5 cbr 210 ------- 1 1.0 5.0 53 57 r 0.48021 2 3 cbr 210 ------- 1 1.0 5.0 69 75 + 0.48021 3 5 cbr 210 ------- 1 1.0 5.0 69 75 - 0.48021 3 5 cbr 210 ------- 1 1.0 5.0 69 75 - 0.48061 2 3 cbr 210 ------- 1 1.0 5.0 85 93 r 0.48133 2 0 ack 40 ------- 0 4.0 0.0 1 67 + 0.48133 0 2 tcp 1000 ------- 0 0.0 4.0 5 111 - 0.48133 0 2 tcp 1000 ------- 0 0.0 4.0 5 111 + 0.4825 1 2 cbr 210 ------- 1 1.0 5.0 102 112 - 0.4825 1 2 cbr 210 ------- 1 1.0 5.0 102 112 r 0.48317 3 5 cbr 210 ------- 1 1.0 5.0 54 59 r 0.48336 1 2 cbr 210 ------- 1 1.0 5.0 88 96 + 0.48336 2 3 cbr 210 ------- 1 1.0 5.0 88 96 r 0.48357 2 3 cbr 210 ------- 1 1.0 5.0 70 77 + 0.48357 3 5 cbr 210 ------- 1 1.0 5.0 70 77 - 0.48357 3 5 cbr 210 ------- 1 1.0 5.0 70 77 - 0.48397 2 3 cbr 210 ------- 1 1.0 5.0 86 94 + 0.48625 1 2 cbr 210 ------- 1 1.0 5.0 103 113 - 0.48625 1 2 cbr 210 ------- 1 1.0 5.0 103 113 r 0.48653 3 5 cbr 210 ------- 1 1.0 5.0 55 60 r 0.48693 2 3 cbr 210 ------- 1 1.0 5.0 71 78 + 0.48693 3 5 cbr 210 ------- 1 1.0 5.0 71 78 - 0.48693 3 5 cbr 210 ------- 1 1.0 5.0 71 78 r 0.48711 1 2 cbr 210 ------- 1 1.0 5.0 89 97 + 0.48711 2 3 cbr 210 ------- 1 1.0 5.0 89 97 - 0.48733 2 3 cbr 210 ------- 1 1.0 5.0 87 95 r 0.48957 3 2 ack 40 ------- 0 4.0 0.0 3 84 + 0.48957 2 0 ack 40 ------- 0 4.0 0.0 3 84 - 0.48957 2 0 ack 40 ------- 0 4.0 0.0 3 84 r 0.48989 3 5 cbr 210 ------- 1 1.0 5.0 56 61 + 0.49 1 2 cbr 210 ------- 1 1.0 5.0 104 114 - 0.49 1 2 cbr 210 ------- 1 1.0 5.0 104 114 r 0.49029 2 3 cbr 210 ------- 1 1.0 5.0 72 79 + 0.49029 3 5 cbr 210 ------- 1 1.0 5.0 72 79 - 0.49029 3 5 cbr 210 ------- 1 1.0 5.0 72 79 - 0.49069 2 3 cbr 210 ------- 1 1.0 5.0 88 96 r 0.49086 1 2 cbr 210 ------- 1 1.0 5.0 90 98 + 0.49086 2 3 cbr 210 ------- 1 1.0 5.0 90 98 r 0.49325 3 5 cbr 210 ------- 1 1.0 5.0 57 62 r 0.49365 2 3 cbr 210 ------- 1 1.0 5.0 73 80 + 0.49365 3 5 cbr 210 ------- 1 1.0 5.0 73 80 - 0.49365 3 5 cbr 210 ------- 1 1.0 5.0 73 80 + 0.49375 1 2 cbr 210 ------- 1 1.0 5.0 105 115 - 0.49375 1 2 cbr 210 ------- 1 1.0 5.0 105 115 - 0.49405 2 3 cbr 210 ------- 1 1.0 5.0 89 97 r 0.49461 1 2 cbr 210 ------- 1 1.0 5.0 91 99 + 0.49461 2 3 cbr 210 ------- 1 1.0 5.0 91 99 r 0.49661 3 5 cbr 210 ------- 1 1.0 5.0 58 63 r 0.49701 2 3 cbr 210 ------- 1 1.0 5.0 74 81 + 0.49701 3 5 cbr 210 ------- 1 1.0 5.0 74 81 - 0.49701 3 5 cbr 210 ------- 1 1.0 5.0 74 81 - 0.49741 2 3 cbr 210 ------- 1 1.0 5.0 90 98 + 0.4975 1 2 cbr 210 ------- 1 1.0 5.0 106 116 - 0.4975 1 2 cbr 210 ------- 1 1.0 5.0 106 116 r 0.49836 1 2 cbr 210 ------- 1 1.0 5.0 92 100 + 0.49836 2 3 cbr 210 ------- 1 1.0 5.0 92 100 r 0.49997 3 5 cbr 210 ------- 1 1.0 5.0 59 64 r 0.50037 2 3 cbr 210 ------- 1 1.0 5.0 75 82 + 0.50037 3 5 cbr 210 ------- 1 1.0 5.0 75 82 - 0.50037 3 5 cbr 210 ------- 1 1.0 5.0 75 82 - 0.50077 2 3 cbr 210 ------- 1 1.0 5.0 91 99 + 0.50125 1 2 cbr 210 ------- 1 1.0 5.0 107 117 - 0.50125 1 2 cbr 210 ------- 1 1.0 5.0 107 117 r 0.50211 1 2 cbr 210 ------- 1 1.0 5.0 93 101 + 0.50211 2 3 cbr 210 ------- 1 1.0 5.0 93 101 r 0.50333 3 5 cbr 210 ------- 1 1.0 5.0 60 65 r 0.50373 2 3 cbr 210 ------- 1 1.0 5.0 76 83 + 0.50373 3 5 cbr 210 ------- 1 1.0 5.0 76 83 - 0.50373 3 5 cbr 210 ------- 1 1.0 5.0 76 83 - 0.50413 2 3 cbr 210 ------- 1 1.0 5.0 92 100 + 0.505 1 2 cbr 210 ------- 1 1.0 5.0 108 118 - 0.505 1 2 cbr 210 ------- 1 1.0 5.0 108 118 r 0.50586 1 2 cbr 210 ------- 1 1.0 5.0 94 103 + 0.50586 2 3 cbr 210 ------- 1 1.0 5.0 94 103 r 0.50669 3 5 cbr 210 ------- 1 1.0 5.0 61 66 r 0.50709 2 3 cbr 210 ------- 1 1.0 5.0 77 85 + 0.50709 3 5 cbr 210 ------- 1 1.0 5.0 77 85 - 0.50709 3 5 cbr 210 ------- 1 1.0 5.0 77 85 - 0.50749 2 3 cbr 210 ------- 1 1.0 5.0 93 101 + 0.50875 1 2 cbr 210 ------- 1 1.0 5.0 109 119 - 0.50875 1 2 cbr 210 ------- 1 1.0 5.0 109 119 r 0.50961 1 2 cbr 210 ------- 1 1.0 5.0 95 104 + 0.50961 2 3 cbr 210 ------- 1 1.0 5.0 95 104 r 0.51005 3 5 cbr 210 ------- 1 1.0 5.0 62 68 r 0.51045 2 3 cbr 210 ------- 1 1.0 5.0 78 86 + 0.51045 3 5 cbr 210 ------- 1 1.0 5.0 78 86 - 0.51045 3 5 cbr 210 ------- 1 1.0 5.0 78 86 r 0.51077 2 0 ack 40 ------- 0 4.0 0.0 2 76 + 0.51077 0 2 tcp 1000 ------- 0 0.0 4.0 6 120 - 0.51077 0 2 tcp 1000 ------- 0 0.0 4.0 6 120 - 0.51085 2 3 cbr 210 ------- 1 1.0 5.0 94 103 + 0.5125 1 2 cbr 210 ------- 1 1.0 5.0 110 121 - 0.5125 1 2 cbr 210 ------- 1 1.0 5.0 110 121 r 0.51336 1 2 cbr 210 ------- 1 1.0 5.0 96 105 + 0.51336 2 3 cbr 210 ------- 1 1.0 5.0 96 105 r 0.51341 3 5 cbr 210 ------- 1 1.0 5.0 63 69 r 0.51381 2 3 cbr 210 ------- 1 1.0 5.0 79 87 + 0.51381 3 5 cbr 210 ------- 1 1.0 5.0 79 87 - 0.51381 3 5 cbr 210 ------- 1 1.0 5.0 79 87 - 0.51421 2 3 cbr 210 ------- 1 1.0 5.0 95 104 + 0.51625 1 2 cbr 210 ------- 1 1.0 5.0 111 122 - 0.51625 1 2 cbr 210 ------- 1 1.0 5.0 111 122 r 0.51677 3 5 cbr 210 ------- 1 1.0 5.0 64 70 r 0.51711 1 2 cbr 210 ------- 1 1.0 5.0 97 106 + 0.51711 2 3 cbr 210 ------- 1 1.0 5.0 97 106 r 0.51717 2 3 cbr 210 ------- 1 1.0 5.0 80 88 + 0.51717 3 5 cbr 210 ------- 1 1.0 5.0 80 88 - 0.51717 3 5 cbr 210 ------- 1 1.0 5.0 80 88 - 0.51757 2 3 cbr 210 ------- 1 1.0 5.0 96 105 r 0.51789 0 2 tcp 1000 ------- 0 0.0 4.0 4 102 + 0.51789 2 3 tcp 1000 ------- 0 0.0 4.0 4 102 + 0.52 1 2 cbr 210 ------- 1 1.0 5.0 112 123 - 0.52 1 2 cbr 210 ------- 1 1.0 5.0 112 123 r 0.52013 3 5 cbr 210 ------- 1 1.0 5.0 65 71 r 0.52053 2 3 cbr 210 ------- 1 1.0 5.0 81 89 + 0.52053 3 5 cbr 210 ------- 1 1.0 5.0 81 89 - 0.52053 3 5 cbr 210 ------- 1 1.0 5.0 81 89 r 0.52086 1 2 cbr 210 ------- 1 1.0 5.0 98 107 + 0.52086 2 3 cbr 210 ------- 1 1.0 5.0 98 107 - 0.52093 2 3 cbr 210 ------- 1 1.0 5.0 97 106 r 0.52349 3 5 cbr 210 ------- 1 1.0 5.0 66 72 + 0.52375 1 2 cbr 210 ------- 1 1.0 5.0 113 124 - 0.52375 1 2 cbr 210 ------- 1 1.0 5.0 113 124 r 0.52389 2 3 cbr 210 ------- 1 1.0 5.0 82 90 + 0.52389 3 5 cbr 210 ------- 1 1.0 5.0 82 90 - 0.52389 3 5 cbr 210 ------- 1 1.0 5.0 82 90 - 0.52429 2 3 tcp 1000 ------- 0 0.0 4.0 4 102 r 0.52461 1 2 cbr 210 ------- 1 1.0 5.0 99 108 + 0.52461 2 3 cbr 210 ------- 1 1.0 5.0 99 108 r 0.52685 3 5 cbr 210 ------- 1 1.0 5.0 67 73 r 0.52725 2 3 cbr 210 ------- 1 1.0 5.0 83 91 + 0.52725 3 5 cbr 210 ------- 1 1.0 5.0 83 91 - 0.52725 3 5 cbr 210 ------- 1 1.0 5.0 83 91 + 0.5275 1 2 cbr 210 ------- 1 1.0 5.0 114 125 - 0.5275 1 2 cbr 210 ------- 1 1.0 5.0 114 125 r 0.52836 1 2 cbr 210 ------- 1 1.0 5.0 100 109 + 0.52836 2 3 cbr 210 ------- 1 1.0 5.0 100 109 r 0.53021 3 5 cbr 210 ------- 1 1.0 5.0 68 74 r 0.53061 2 3 cbr 210 ------- 1 1.0 5.0 84 92 + 0.53061 3 5 cbr 210 ------- 1 1.0 5.0 84 92 - 0.53061 3 5 cbr 210 ------- 1 1.0 5.0 84 92 + 0.53125 1 2 cbr 210 ------- 1 1.0 5.0 115 126 - 0.53125 1 2 cbr 210 ------- 1 1.0 5.0 115 126 r 0.53211 1 2 cbr 210 ------- 1 1.0 5.0 101 110 + 0.53211 2 3 cbr 210 ------- 1 1.0 5.0 101 110 r 0.53357 3 5 cbr 210 ------- 1 1.0 5.0 69 75 r 0.53397 2 3 cbr 210 ------- 1 1.0 5.0 85 93 + 0.53397 3 5 cbr 210 ------- 1 1.0 5.0 85 93 - 0.53397 3 5 cbr 210 ------- 1 1.0 5.0 85 93 + 0.535 1 2 cbr 210 ------- 1 1.0 5.0 116 127 - 0.535 1 2 cbr 210 ------- 1 1.0 5.0 116 127 r 0.53586 1 2 cbr 210 ------- 1 1.0 5.0 102 112 + 0.53586 2 3 cbr 210 ------- 1 1.0 5.0 102 112 r 0.53693 3 5 cbr 210 ------- 1 1.0 5.0 70 77 r 0.53733 2 3 cbr 210 ------- 1 1.0 5.0 86 94 + 0.53733 3 5 cbr 210 ------- 1 1.0 5.0 86 94 - 0.53733 3 5 cbr 210 ------- 1 1.0 5.0 86 94 + 0.53875 1 2 cbr 210 ------- 1 1.0 5.0 117 128 - 0.53875 1 2 cbr 210 ------- 1 1.0 5.0 117 128 r 0.53961 1 2 cbr 210 ------- 1 1.0 5.0 103 113 + 0.53961 2 3 cbr 210 ------- 1 1.0 5.0 103 113 r 0.54021 2 0 ack 40 ------- 0 4.0 0.0 3 84 + 0.54021 0 2 tcp 1000 ------- 0 0.0 4.0 7 129 - 0.54021 0 2 tcp 1000 ------- 0 0.0 4.0 7 129 - 0.54029 2 3 cbr 210 ------- 1 1.0 5.0 98 107 r 0.54029 3 5 cbr 210 ------- 1 1.0 5.0 71 78 r 0.54069 2 3 cbr 210 ------- 1 1.0 5.0 87 95 + 0.54069 3 5 cbr 210 ------- 1 1.0 5.0 87 95 - 0.54069 3 5 cbr 210 ------- 1 1.0 5.0 87 95 + 0.5425 1 2 cbr 210 ------- 1 1.0 5.0 118 130 - 0.5425 1 2 cbr 210 ------- 1 1.0 5.0 118 130 r 0.54336 1 2 cbr 210 ------- 1 1.0 5.0 104 114 + 0.54336 2 3 cbr 210 ------- 1 1.0 5.0 104 114 - 0.54365 2 3 cbr 210 ------- 1 1.0 5.0 99 108 r 0.54365 3 5 cbr 210 ------- 1 1.0 5.0 72 79 r 0.54405 2 3 cbr 210 ------- 1 1.0 5.0 88 96 + 0.54405 3 5 cbr 210 ------- 1 1.0 5.0 88 96 - 0.54405 3 5 cbr 210 ------- 1 1.0 5.0 88 96 + 0.54625 1 2 cbr 210 ------- 1 1.0 5.0 119 131 - 0.54625 1 2 cbr 210 ------- 1 1.0 5.0 119 131 - 0.54701 2 3 cbr 210 ------- 1 1.0 5.0 100 109 r 0.54701 3 5 cbr 210 ------- 1 1.0 5.0 73 80 r 0.54711 1 2 cbr 210 ------- 1 1.0 5.0 105 115 + 0.54711 2 3 cbr 210 ------- 1 1.0 5.0 105 115 r 0.54733 0 2 tcp 1000 ------- 0 0.0 4.0 5 111 + 0.54733 2 3 tcp 1000 ------- 0 0.0 4.0 5 111 r 0.54741 2 3 cbr 210 ------- 1 1.0 5.0 89 97 + 0.54741 3 5 cbr 210 ------- 1 1.0 5.0 89 97 - 0.54741 3 5 cbr 210 ------- 1 1.0 5.0 89 97 + 0.55 1 2 cbr 210 ------- 1 1.0 5.0 120 132 - 0.55 1 2 cbr 210 ------- 1 1.0 5.0 120 132 - 0.55037 2 3 cbr 210 ------- 1 1.0 5.0 101 110 r 0.55037 3 5 cbr 210 ------- 1 1.0 5.0 74 81 r 0.55077 2 3 cbr 210 ------- 1 1.0 5.0 90 98 + 0.55077 3 5 cbr 210 ------- 1 1.0 5.0 90 98 - 0.55077 3 5 cbr 210 ------- 1 1.0 5.0 90 98 r 0.55086 1 2 cbr 210 ------- 1 1.0 5.0 106 116 + 0.55086 2 3 cbr 210 ------- 1 1.0 5.0 106 116 - 0.55373 2 3 cbr 210 ------- 1 1.0 5.0 102 112 r 0.55373 3 5 cbr 210 ------- 1 1.0 5.0 75 82 + 0.55375 1 2 cbr 210 ------- 1 1.0 5.0 121 133 - 0.55375 1 2 cbr 210 ------- 1 1.0 5.0 121 133 r 0.55413 2 3 cbr 210 ------- 1 1.0 5.0 91 99 + 0.55413 3 5 cbr 210 ------- 1 1.0 5.0 91 99 - 0.55413 3 5 cbr 210 ------- 1 1.0 5.0 91 99 r 0.55461 1 2 cbr 210 ------- 1 1.0 5.0 107 117 + 0.55461 2 3 cbr 210 ------- 1 1.0 5.0 107 117 - 0.55709 2 3 cbr 210 ------- 1 1.0 5.0 103 113 r 0.55709 3 5 cbr 210 ------- 1 1.0 5.0 76 83 r 0.55749 2 3 cbr 210 ------- 1 1.0 5.0 92 100 + 0.55749 3 5 cbr 210 ------- 1 1.0 5.0 92 100 - 0.55749 3 5 cbr 210 ------- 1 1.0 5.0 92 100 + 0.5575 1 2 cbr 210 ------- 1 1.0 5.0 122 134 - 0.5575 1 2 cbr 210 ------- 1 1.0 5.0 122 134 r 0.55836 1 2 cbr 210 ------- 1 1.0 5.0 108 118 + 0.55836 2 3 cbr 210 ------- 1 1.0 5.0 108 118 - 0.56045 2 3 cbr 210 ------- 1 1.0 5.0 104 114 r 0.56045 3 5 cbr 210 ------- 1 1.0 5.0 77 85 r 0.56085 2 3 cbr 210 ------- 1 1.0 5.0 93 101 + 0.56085 3 5 cbr 210 ------- 1 1.0 5.0 93 101 - 0.56085 3 5 cbr 210 ------- 1 1.0 5.0 93 101 + 0.56125 1 2 cbr 210 ------- 1 1.0 5.0 123 135 - 0.56125 1 2 cbr 210 ------- 1 1.0 5.0 123 135 r 0.56211 1 2 cbr 210 ------- 1 1.0 5.0 109 119 + 0.56211 2 3 cbr 210 ------- 1 1.0 5.0 109 119 - 0.56381 2 3 cbr 210 ------- 1 1.0 5.0 105 115 r 0.56381 3 5 cbr 210 ------- 1 1.0 5.0 78 86 r 0.56421 2 3 cbr 210 ------- 1 1.0 5.0 94 103 + 0.56421 3 5 cbr 210 ------- 1 1.0 5.0 94 103 - 0.56421 3 5 cbr 210 ------- 1 1.0 5.0 94 103 + 0.565 1 2 cbr 210 ------- 1 1.0 5.0 124 136 - 0.565 1 2 cbr 210 ------- 1 1.0 5.0 124 136 r 0.56586 1 2 cbr 210 ------- 1 1.0 5.0 110 121 + 0.56586 2 3 cbr 210 ------- 1 1.0 5.0 110 121 - 0.56717 2 3 tcp 1000 ------- 0 0.0 4.0 5 111 r 0.56717 3 5 cbr 210 ------- 1 1.0 5.0 79 87 r 0.56757 2 3 cbr 210 ------- 1 1.0 5.0 95 104 + 0.56757 3 5 cbr 210 ------- 1 1.0 5.0 95 104 - 0.56757 3 5 cbr 210 ------- 1 1.0 5.0 95 104 + 0.56875 1 2 cbr 210 ------- 1 1.0 5.0 125 137 - 0.56875 1 2 cbr 210 ------- 1 1.0 5.0 125 137 r 0.56961 1 2 cbr 210 ------- 1 1.0 5.0 111 122 + 0.56961 2 3 cbr 210 ------- 1 1.0 5.0 111 122 r 0.57053 3 5 cbr 210 ------- 1 1.0 5.0 80 88 r 0.57093 2 3 cbr 210 ------- 1 1.0 5.0 96 105 + 0.57093 3 5 cbr 210 ------- 1 1.0 5.0 96 105 - 0.57093 3 5 cbr 210 ------- 1 1.0 5.0 96 105 + 0.5725 1 2 cbr 210 ------- 1 1.0 5.0 126 138 - 0.5725 1 2 cbr 210 ------- 1 1.0 5.0 126 138 r 0.57336 1 2 cbr 210 ------- 1 1.0 5.0 112 123 + 0.57336 2 3 cbr 210 ------- 1 1.0 5.0 112 123 r 0.57389 3 5 cbr 210 ------- 1 1.0 5.0 81 89 r 0.57429 2 3 cbr 210 ------- 1 1.0 5.0 97 106 + 0.57429 3 5 cbr 210 ------- 1 1.0 5.0 97 106 - 0.57429 3 5 cbr 210 ------- 1 1.0 5.0 97 106 + 0.57625 1 2 cbr 210 ------- 1 1.0 5.0 127 139 - 0.57625 1 2 cbr 210 ------- 1 1.0 5.0 127 139 r 0.57677 0 2 tcp 1000 ------- 0 0.0 4.0 6 120 + 0.57677 2 3 tcp 1000 ------- 0 0.0 4.0 6 120 r 0.57711 1 2 cbr 210 ------- 1 1.0 5.0 113 124 + 0.57711 2 3 cbr 210 ------- 1 1.0 5.0 113 124 r 0.57725 3 5 cbr 210 ------- 1 1.0 5.0 82 90 + 0.58 1 2 cbr 210 ------- 1 1.0 5.0 128 140 - 0.58 1 2 cbr 210 ------- 1 1.0 5.0 128 140 r 0.58061 3 5 cbr 210 ------- 1 1.0 5.0 83 91 r 0.58086 1 2 cbr 210 ------- 1 1.0 5.0 114 125 + 0.58086 2 3 cbr 210 ------- 1 1.0 5.0 114 125 d 0.58086 2 3 cbr 210 ------- 1 1.0 5.0 114 125 - 0.58317 2 3 cbr 210 ------- 1 1.0 5.0 106 116 + 0.58375 1 2 cbr 210 ------- 1 1.0 5.0 129 141 - 0.58375 1 2 cbr 210 ------- 1 1.0 5.0 129 141 r 0.58397 3 5 cbr 210 ------- 1 1.0 5.0 84 92 r 0.58461 1 2 cbr 210 ------- 1 1.0 5.0 115 126 + 0.58461 2 3 cbr 210 ------- 1 1.0 5.0 115 126 - 0.58653 2 3 cbr 210 ------- 1 1.0 5.0 107 117 r 0.58733 3 5 cbr 210 ------- 1 1.0 5.0 85 93 + 0.5875 1 2 cbr 210 ------- 1 1.0 5.0 130 142 - 0.5875 1 2 cbr 210 ------- 1 1.0 5.0 130 142 r 0.58836 1 2 cbr 210 ------- 1 1.0 5.0 116 127 + 0.58836 2 3 cbr 210 ------- 1 1.0 5.0 116 127 - 0.58989 2 3 cbr 210 ------- 1 1.0 5.0 108 118 r 0.59029 2 3 tcp 1000 ------- 0 0.0 4.0 4 102 + 0.59029 3 4 tcp 1000 ------- 0 0.0 4.0 4 102 - 0.59029 3 4 tcp 1000 ------- 0 0.0 4.0 4 102 r 0.59069 3 5 cbr 210 ------- 1 1.0 5.0 86 94 + 0.59125 1 2 cbr 210 ------- 1 1.0 5.0 131 143 - 0.59125 1 2 cbr 210 ------- 1 1.0 5.0 131 143 r 0.59211 1 2 cbr 210 ------- 1 1.0 5.0 117 128 + 0.59211 2 3 cbr 210 ------- 1 1.0 5.0 117 128 - 0.59325 2 3 cbr 210 ------- 1 1.0 5.0 109 119 r 0.59365 2 3 cbr 210 ------- 1 1.0 5.0 98 107 + 0.59365 3 5 cbr 210 ------- 1 1.0 5.0 98 107 - 0.59365 3 5 cbr 210 ------- 1 1.0 5.0 98 107 r 0.59405 3 5 cbr 210 ------- 1 1.0 5.0 87 95 + 0.595 1 2 cbr 210 ------- 1 1.0 5.0 132 144 - 0.595 1 2 cbr 210 ------- 1 1.0 5.0 132 144 r 0.59586 1 2 cbr 210 ------- 1 1.0 5.0 118 130 + 0.59586 2 3 cbr 210 ------- 1 1.0 5.0 118 130 - 0.59661 2 3 cbr 210 ------- 1 1.0 5.0 110 121 r 0.59701 2 3 cbr 210 ------- 1 1.0 5.0 99 108 + 0.59701 3 5 cbr 210 ------- 1 1.0 5.0 99 108 - 0.59701 3 5 cbr 210 ------- 1 1.0 5.0 99 108 r 0.59741 3 5 cbr 210 ------- 1 1.0 5.0 88 96 + 0.59875 1 2 cbr 210 ------- 1 1.0 5.0 133 145 - 0.59875 1 2 cbr 210 ------- 1 1.0 5.0 133 145 r 0.59961 1 2 cbr 210 ------- 1 1.0 5.0 119 131 + 0.59961 2 3 cbr 210 ------- 1 1.0 5.0 119 131 - 0.59997 2 3 cbr 210 ------- 1 1.0 5.0 111 122 r 0.60037 2 3 cbr 210 ------- 1 1.0 5.0 100 109 + 0.60037 3 5 cbr 210 ------- 1 1.0 5.0 100 109 - 0.60037 3 5 cbr 210 ------- 1 1.0 5.0 100 109 r 0.60077 3 5 cbr 210 ------- 1 1.0 5.0 89 97 + 0.6025 1 2 cbr 210 ------- 1 1.0 5.0 134 146 - 0.6025 1 2 cbr 210 ------- 1 1.0 5.0 134 146 - 0.60333 2 3 cbr 210 ------- 1 1.0 5.0 112 123 r 0.60336 1 2 cbr 210 ------- 1 1.0 5.0 120 132 + 0.60336 2 3 cbr 210 ------- 1 1.0 5.0 120 132 r 0.60373 2 3 cbr 210 ------- 1 1.0 5.0 101 110 + 0.60373 3 5 cbr 210 ------- 1 1.0 5.0 101 110 - 0.60373 3 5 cbr 210 ------- 1 1.0 5.0 101 110 r 0.60413 3 5 cbr 210 ------- 1 1.0 5.0 90 98 r 0.60621 0 2 tcp 1000 ------- 0 0.0 4.0 7 129 + 0.60621 2 3 tcp 1000 ------- 0 0.0 4.0 7 129 + 0.60625 1 2 cbr 210 ------- 1 1.0 5.0 135 147 - 0.60625 1 2 cbr 210 ------- 1 1.0 5.0 135 147 - 0.60669 2 3 tcp 1000 ------- 0 0.0 4.0 6 120 r 0.60709 2 3 cbr 210 ------- 1 1.0 5.0 102 112 + 0.60709 3 5 cbr 210 ------- 1 1.0 5.0 102 112 - 0.60709 3 5 cbr 210 ------- 1 1.0 5.0 102 112 r 0.60711 1 2 cbr 210 ------- 1 1.0 5.0 121 133 + 0.60711 2 3 cbr 210 ------- 1 1.0 5.0 121 133 r 0.60749 3 5 cbr 210 ------- 1 1.0 5.0 91 99 + 0.61 1 2 cbr 210 ------- 1 1.0 5.0 136 148 - 0.61 1 2 cbr 210 ------- 1 1.0 5.0 136 148 r 0.61045 2 3 cbr 210 ------- 1 1.0 5.0 103 113 + 0.61045 3 5 cbr 210 ------- 1 1.0 5.0 103 113 - 0.61045 3 5 cbr 210 ------- 1 1.0 5.0 103 113 r 0.61085 3 5 cbr 210 ------- 1 1.0 5.0 92 100 r 0.61086 1 2 cbr 210 ------- 1 1.0 5.0 122 134 + 0.61086 2 3 cbr 210 ------- 1 1.0 5.0 122 134 d 0.61086 2 3 cbr 210 ------- 1 1.0 5.0 122 134 + 0.61375 1 2 cbr 210 ------- 1 1.0 5.0 137 149 - 0.61375 1 2 cbr 210 ------- 1 1.0 5.0 137 149 r 0.61381 2 3 cbr 210 ------- 1 1.0 5.0 104 114 + 0.61381 3 5 cbr 210 ------- 1 1.0 5.0 104 114 - 0.61381 3 5 cbr 210 ------- 1 1.0 5.0 104 114 r 0.61421 3 5 cbr 210 ------- 1 1.0 5.0 93 101 r 0.61461 1 2 cbr 210 ------- 1 1.0 5.0 123 135 + 0.61461 2 3 cbr 210 ------- 1 1.0 5.0 123 135 d 0.61461 2 3 cbr 210 ------- 1 1.0 5.0 123 135 r 0.61717 2 3 cbr 210 ------- 1 1.0 5.0 105 115 + 0.61717 3 5 cbr 210 ------- 1 1.0 5.0 105 115 - 0.61717 3 5 cbr 210 ------- 1 1.0 5.0 105 115 + 0.6175 1 2 cbr 210 ------- 1 1.0 5.0 138 150 - 0.6175 1 2 cbr 210 ------- 1 1.0 5.0 138 150 r 0.61757 3 5 cbr 210 ------- 1 1.0 5.0 94 103 r 0.61836 1 2 cbr 210 ------- 1 1.0 5.0 124 136 + 0.61836 2 3 cbr 210 ------- 1 1.0 5.0 124 136 d 0.61836 2 3 cbr 210 ------- 1 1.0 5.0 124 136 r 0.62093 3 5 cbr 210 ------- 1 1.0 5.0 95 104 + 0.62125 1 2 cbr 210 ------- 1 1.0 5.0 139 151 - 0.62125 1 2 cbr 210 ------- 1 1.0 5.0 139 151 r 0.62211 1 2 cbr 210 ------- 1 1.0 5.0 125 137 + 0.62211 2 3 cbr 210 ------- 1 1.0 5.0 125 137 d 0.62211 2 3 cbr 210 ------- 1 1.0 5.0 125 137 - 0.62269 2 3 cbr 210 ------- 1 1.0 5.0 113 124 r 0.62429 3 5 cbr 210 ------- 1 1.0 5.0 96 105 + 0.625 1 2 cbr 210 ------- 1 1.0 5.0 140 152 - 0.625 1 2 cbr 210 ------- 1 1.0 5.0 140 152 r 0.62586 1 2 cbr 210 ------- 1 1.0 5.0 126 138 + 0.62586 2 3 cbr 210 ------- 1 1.0 5.0 126 138 - 0.62605 2 3 cbr 210 ------- 1 1.0 5.0 115 126 r 0.62765 3 5 cbr 210 ------- 1 1.0 5.0 97 106 + 0.62875 1 2 cbr 210 ------- 1 1.0 5.0 141 153 - 0.62875 1 2 cbr 210 ------- 1 1.0 5.0 141 153 - 0.62941 2 3 cbr 210 ------- 1 1.0 5.0 116 127 r 0.62961 1 2 cbr 210 ------- 1 1.0 5.0 127 139 + 0.62961 2 3 cbr 210 ------- 1 1.0 5.0 127 139 + 0.6325 1 2 cbr 210 ------- 1 1.0 5.0 142 154 - 0.6325 1 2 cbr 210 ------- 1 1.0 5.0 142 154 - 0.63277 2 3 cbr 210 ------- 1 1.0 5.0 117 128 r 0.63317 2 3 tcp 1000 ------- 0 0.0 4.0 5 111 + 0.63317 3 4 tcp 1000 ------- 0 0.0 4.0 5 111 - 0.63317 3 4 tcp 1000 ------- 0 0.0 4.0 5 111 r 0.63336 1 2 cbr 210 ------- 1 1.0 5.0 128 140 + 0.63336 2 3 cbr 210 ------- 1 1.0 5.0 128 140 - 0.63613 2 3 cbr 210 ------- 1 1.0 5.0 118 130 + 0.63625 1 2 cbr 210 ------- 1 1.0 5.0 143 155 - 0.63625 1 2 cbr 210 ------- 1 1.0 5.0 143 155 r 0.63653 2 3 cbr 210 ------- 1 1.0 5.0 106 116 + 0.63653 3 5 cbr 210 ------- 1 1.0 5.0 106 116 - 0.63653 3 5 cbr 210 ------- 1 1.0 5.0 106 116 r 0.63711 1 2 cbr 210 ------- 1 1.0 5.0 129 141 + 0.63711 2 3 cbr 210 ------- 1 1.0 5.0 129 141 - 0.63949 2 3 cbr 210 ------- 1 1.0 5.0 119 131 r 0.63989 2 3 cbr 210 ------- 1 1.0 5.0 107 117 + 0.63989 3 5 cbr 210 ------- 1 1.0 5.0 107 117 - 0.63989 3 5 cbr 210 ------- 1 1.0 5.0 107 117 + 0.64 1 2 cbr 210 ------- 1 1.0 5.0 144 156 - 0.64 1 2 cbr 210 ------- 1 1.0 5.0 144 156 r 0.64086 1 2 cbr 210 ------- 1 1.0 5.0 130 142 + 0.64086 2 3 cbr 210 ------- 1 1.0 5.0 130 142 - 0.64285 2 3 cbr 210 ------- 1 1.0 5.0 120 132 r 0.64325 2 3 cbr 210 ------- 1 1.0 5.0 108 118 + 0.64325 3 5 cbr 210 ------- 1 1.0 5.0 108 118 - 0.64325 3 5 cbr 210 ------- 1 1.0 5.0 108 118 + 0.64375 1 2 cbr 210 ------- 1 1.0 5.0 145 157 - 0.64375 1 2 cbr 210 ------- 1 1.0 5.0 145 157 r 0.64461 1 2 cbr 210 ------- 1 1.0 5.0 131 143 + 0.64461 2 3 cbr 210 ------- 1 1.0 5.0 131 143 - 0.64621 2 3 tcp 1000 ------- 0 0.0 4.0 7 129 r 0.64661 2 3 cbr 210 ------- 1 1.0 5.0 109 119 + 0.64661 3 5 cbr 210 ------- 1 1.0 5.0 109 119 - 0.64661 3 5 cbr 210 ------- 1 1.0 5.0 109 119 r 0.64701 3 5 cbr 210 ------- 1 1.0 5.0 98 107 + 0.6475 1 2 cbr 210 ------- 1 1.0 5.0 146 158 - 0.6475 1 2 cbr 210 ------- 1 1.0 5.0 146 158 r 0.64836 1 2 cbr 210 ------- 1 1.0 5.0 132 144 + 0.64836 2 3 cbr 210 ------- 1 1.0 5.0 132 144 r 0.64997 2 3 cbr 210 ------- 1 1.0 5.0 110 121 + 0.64997 3 5 cbr 210 ------- 1 1.0 5.0 110 121 - 0.64997 3 5 cbr 210 ------- 1 1.0 5.0 110 121 r 0.65037 3 5 cbr 210 ------- 1 1.0 5.0 99 108 + 0.65125 1 2 cbr 210 ------- 1 1.0 5.0 147 159 - 0.65125 1 2 cbr 210 ------- 1 1.0 5.0 147 159 r 0.65211 1 2 cbr 210 ------- 1 1.0 5.0 133 145 + 0.65211 2 3 cbr 210 ------- 1 1.0 5.0 133 145 r 0.65333 2 3 cbr 210 ------- 1 1.0 5.0 111 122 + 0.65333 3 5 cbr 210 ------- 1 1.0 5.0 111 122 - 0.65333 3 5 cbr 210 ------- 1 1.0 5.0 111 122 r 0.65373 3 5 cbr 210 ------- 1 1.0 5.0 100 109 + 0.655 1 2 cbr 210 ------- 1 1.0 5.0 148 160 - 0.655 1 2 cbr 210 ------- 1 1.0 5.0 148 160 r 0.65586 1 2 cbr 210 ------- 1 1.0 5.0 134 146 + 0.65586 2 3 cbr 210 ------- 1 1.0 5.0 134 146 d 0.65586 2 3 cbr 210 ------- 1 1.0 5.0 134 146 r 0.65629 3 4 tcp 1000 ------- 0 0.0 4.0 4 102 + 0.65629 4 3 ack 40 ------- 0 4.0 0.0 4 161 - 0.65629 4 3 ack 40 ------- 0 4.0 0.0 4 161 r 0.65669 2 3 cbr 210 ------- 1 1.0 5.0 112 123 + 0.65669 3 5 cbr 210 ------- 1 1.0 5.0 112 123 - 0.65669 3 5 cbr 210 ------- 1 1.0 5.0 112 123 r 0.65709 3 5 cbr 210 ------- 1 1.0 5.0 101 110 + 0.65875 1 2 cbr 210 ------- 1 1.0 5.0 149 162 - 0.65875 1 2 cbr 210 ------- 1 1.0 5.0 149 162 r 0.65961 1 2 cbr 210 ------- 1 1.0 5.0 135 147 + 0.65961 2 3 cbr 210 ------- 1 1.0 5.0 135 147 d 0.65961 2 3 cbr 210 ------- 1 1.0 5.0 135 147 r 0.66045 3 5 cbr 210 ------- 1 1.0 5.0 102 112 - 0.66221 2 3 cbr 210 ------- 1 1.0 5.0 121 133 + 0.6625 1 2 cbr 210 ------- 1 1.0 5.0 150 163 - 0.6625 1 2 cbr 210 ------- 1 1.0 5.0 150 163 r 0.66336 1 2 cbr 210 ------- 1 1.0 5.0 136 148 + 0.66336 2 3 cbr 210 ------- 1 1.0 5.0 136 148 r 0.66381 3 5 cbr 210 ------- 1 1.0 5.0 103 113 - 0.66557 2 3 cbr 210 ------- 1 1.0 5.0 126 138 + 0.66625 1 2 cbr 210 ------- 1 1.0 5.0 151 164 - 0.66625 1 2 cbr 210 ------- 1 1.0 5.0 151 164 r 0.66711 1 2 cbr 210 ------- 1 1.0 5.0 137 149 + 0.66711 2 3 cbr 210 ------- 1 1.0 5.0 137 149 r 0.66717 3 5 cbr 210 ------- 1 1.0 5.0 104 114 - 0.66893 2 3 cbr 210 ------- 1 1.0 5.0 127 139 + 0.67 1 2 cbr 210 ------- 1 1.0 5.0 152 165 - 0.67 1 2 cbr 210 ------- 1 1.0 5.0 152 165 r 0.67053 3 5 cbr 210 ------- 1 1.0 5.0 105 115 r 0.67086 1 2 cbr 210 ------- 1 1.0 5.0 138 150 + 0.67086 2 3 cbr 210 ------- 1 1.0 5.0 138 150 - 0.67229 2 3 cbr 210 ------- 1 1.0 5.0 128 140 r 0.67269 2 3 tcp 1000 ------- 0 0.0 4.0 6 120 + 0.67269 3 4 tcp 1000 ------- 0 0.0 4.0 6 120 - 0.67269 3 4 tcp 1000 ------- 0 0.0 4.0 6 120 + 0.67375 1 2 cbr 210 ------- 1 1.0 5.0 153 166 - 0.67375 1 2 cbr 210 ------- 1 1.0 5.0 153 166 r 0.67461 1 2 cbr 210 ------- 1 1.0 5.0 139 151 + 0.67461 2 3 cbr 210 ------- 1 1.0 5.0 139 151 - 0.67565 2 3 cbr 210 ------- 1 1.0 5.0 129 141 r 0.67605 2 3 cbr 210 ------- 1 1.0 5.0 113 124 + 0.67605 3 5 cbr 210 ------- 1 1.0 5.0 113 124 - 0.67605 3 5 cbr 210 ------- 1 1.0 5.0 113 124 + 0.6775 1 2 cbr 210 ------- 1 1.0 5.0 154 167 - 0.6775 1 2 cbr 210 ------- 1 1.0 5.0 154 167 r 0.67836 1 2 cbr 210 ------- 1 1.0 5.0 140 152 + 0.67836 2 3 cbr 210 ------- 1 1.0 5.0 140 152 - 0.67901 2 3 cbr 210 ------- 1 1.0 5.0 130 142 r 0.67941 2 3 cbr 210 ------- 1 1.0 5.0 115 126 + 0.67941 3 5 cbr 210 ------- 1 1.0 5.0 115 126 - 0.67941 3 5 cbr 210 ------- 1 1.0 5.0 115 126 + 0.68125 1 2 cbr 210 ------- 1 1.0 5.0 155 168 - 0.68125 1 2 cbr 210 ------- 1 1.0 5.0 155 168 r 0.68211 1 2 cbr 210 ------- 1 1.0 5.0 141 153 + 0.68211 2 3 cbr 210 ------- 1 1.0 5.0 141 153 - 0.68237 2 3 cbr 210 ------- 1 1.0 5.0 131 143 r 0.68277 2 3 cbr 210 ------- 1 1.0 5.0 116 127 + 0.68277 3 5 cbr 210 ------- 1 1.0 5.0 116 127 - 0.68277 3 5 cbr 210 ------- 1 1.0 5.0 116 127 + 0.685 1 2 cbr 210 ------- 1 1.0 5.0 156 169 - 0.685 1 2 cbr 210 ------- 1 1.0 5.0 156 169 - 0.68573 2 3 cbr 210 ------- 1 1.0 5.0 132 144 r 0.68586 1 2 cbr 210 ------- 1 1.0 5.0 142 154 + 0.68586 2 3 cbr 210 ------- 1 1.0 5.0 142 154 r 0.68613 2 3 cbr 210 ------- 1 1.0 5.0 117 128 + 0.68613 3 5 cbr 210 ------- 1 1.0 5.0 117 128 - 0.68613 3 5 cbr 210 ------- 1 1.0 5.0 117 128 + 0.68875 1 2 cbr 210 ------- 1 1.0 5.0 157 170 - 0.68875 1 2 cbr 210 ------- 1 1.0 5.0 157 170 - 0.68909 2 3 cbr 210 ------- 1 1.0 5.0 133 145 r 0.68949 2 3 cbr 210 ------- 1 1.0 5.0 118 130 + 0.68949 3 5 cbr 210 ------- 1 1.0 5.0 118 130 - 0.68949 3 5 cbr 210 ------- 1 1.0 5.0 118 130 r 0.68961 1 2 cbr 210 ------- 1 1.0 5.0 143 155 + 0.68961 2 3 cbr 210 ------- 1 1.0 5.0 143 155 r 0.68989 3 5 cbr 210 ------- 1 1.0 5.0 106 116 - 0.69245 2 3 cbr 210 ------- 1 1.0 5.0 136 148 + 0.6925 1 2 cbr 210 ------- 1 1.0 5.0 158 171 - 0.6925 1 2 cbr 210 ------- 1 1.0 5.0 158 171 r 0.69285 2 3 cbr 210 ------- 1 1.0 5.0 119 131 + 0.69285 3 5 cbr 210 ------- 1 1.0 5.0 119 131 - 0.69285 3 5 cbr 210 ------- 1 1.0 5.0 119 131 r 0.69325 3 5 cbr 210 ------- 1 1.0 5.0 107 117 r 0.69336 1 2 cbr 210 ------- 1 1.0 5.0 144 156 + 0.69336 2 3 cbr 210 ------- 1 1.0 5.0 144 156 - 0.69581 2 3 cbr 210 ------- 1 1.0 5.0 137 149 r 0.69621 2 3 cbr 210 ------- 1 1.0 5.0 120 132 + 0.69621 3 5 cbr 210 ------- 1 1.0 5.0 120 132 - 0.69621 3 5 cbr 210 ------- 1 1.0 5.0 120 132 + 0.69625 1 2 cbr 210 ------- 1 1.0 5.0 159 172 - 0.69625 1 2 cbr 210 ------- 1 1.0 5.0 159 172 r 0.69661 3 5 cbr 210 ------- 1 1.0 5.0 108 118 r 0.69711 1 2 cbr 210 ------- 1 1.0 5.0 145 157 + 0.69711 2 3 cbr 210 ------- 1 1.0 5.0 145 157 r 0.69917 3 4 tcp 1000 ------- 0 0.0 4.0 5 111 + 0.69917 4 3 ack 40 ------- 0 4.0 0.0 5 173 - 0.69917 4 3 ack 40 ------- 0 4.0 0.0 5 173 - 0.69917 2 3 cbr 210 ------- 1 1.0 5.0 138 150 r 0.69997 3 5 cbr 210 ------- 1 1.0 5.0 109 119 + 0.7 1 2 cbr 210 ------- 1 1.0 5.0 160 174 - 0.7 1 2 cbr 210 ------- 1 1.0 5.0 160 174 r 0.70086 1 2 cbr 210 ------- 1 1.0 5.0 146 158 + 0.70086 2 3 cbr 210 ------- 1 1.0 5.0 146 158 - 0.70253 2 3 cbr 210 ------- 1 1.0 5.0 139 151 r 0.70333 3 5 cbr 210 ------- 1 1.0 5.0 110 121 + 0.70375 1 2 cbr 210 ------- 1 1.0 5.0 161 175 - 0.70375 1 2 cbr 210 ------- 1 1.0 5.0 161 175 r 0.70461 1 2 cbr 210 ------- 1 1.0 5.0 147 159 + 0.70461 2 3 cbr 210 ------- 1 1.0 5.0 147 159 - 0.70589 2 3 cbr 210 ------- 1 1.0 5.0 140 152 r 0.70669 3 5 cbr 210 ------- 1 1.0 5.0 111 122 r 0.70693 4 3 ack 40 ------- 0 4.0 0.0 4 161 + 0.70693 3 2 ack 40 ------- 0 4.0 0.0 4 161 - 0.70693 3 2 ack 40 ------- 0 4.0 0.0 4 161 + 0.7075 1 2 cbr 210 ------- 1 1.0 5.0 162 176 - 0.7075 1 2 cbr 210 ------- 1 1.0 5.0 162 176 r 0.70836 1 2 cbr 210 ------- 1 1.0 5.0 148 160 + 0.70836 2 3 cbr 210 ------- 1 1.0 5.0 148 160 - 0.70925 2 3 cbr 210 ------- 1 1.0 5.0 141 153 r 0.71005 3 5 cbr 210 ------- 1 1.0 5.0 112 123 + 0.71125 1 2 cbr 210 ------- 1 1.0 5.0 163 177 - 0.71125 1 2 cbr 210 ------- 1 1.0 5.0 163 177 r 0.71211 1 2 cbr 210 ------- 1 1.0 5.0 149 162 + 0.71211 2 3 cbr 210 ------- 1 1.0 5.0 149 162 r 0.71221 2 3 tcp 1000 ------- 0 0.0 4.0 7 129 + 0.71221 3 4 tcp 1000 ------- 0 0.0 4.0 7 129 - 0.71221 3 4 tcp 1000 ------- 0 0.0 4.0 7 129 - 0.71261 2 3 cbr 210 ------- 1 1.0 5.0 142 154 + 0.715 1 2 cbr 210 ------- 1 1.0 5.0 164 178 - 0.715 1 2 cbr 210 ------- 1 1.0 5.0 164 178 r 0.71557 2 3 cbr 210 ------- 1 1.0 5.0 121 133 + 0.71557 3 5 cbr 210 ------- 1 1.0 5.0 121 133 - 0.71557 3 5 cbr 210 ------- 1 1.0 5.0 121 133 r 0.71586 1 2 cbr 210 ------- 1 1.0 5.0 150 163 + 0.71586 2 3 cbr 210 ------- 1 1.0 5.0 150 163 - 0.71597 2 3 cbr 210 ------- 1 1.0 5.0 143 155 + 0.71875 1 2 cbr 210 ------- 1 1.0 5.0 165 179 - 0.71875 1 2 cbr 210 ------- 1 1.0 5.0 165 179 r 0.71893 2 3 cbr 210 ------- 1 1.0 5.0 126 138 + 0.71893 3 5 cbr 210 ------- 1 1.0 5.0 126 138 - 0.71893 3 5 cbr 210 ------- 1 1.0 5.0 126 138 - 0.71933 2 3 cbr 210 ------- 1 1.0 5.0 144 156 r 0.71961 1 2 cbr 210 ------- 1 1.0 5.0 151 164 + 0.71961 2 3 cbr 210 ------- 1 1.0 5.0 151 164 r 0.72229 2 3 cbr 210 ------- 1 1.0 5.0 127 139 + 0.72229 3 5 cbr 210 ------- 1 1.0 5.0 127 139 - 0.72229 3 5 cbr 210 ------- 1 1.0 5.0 127 139 + 0.7225 1 2 cbr 210 ------- 1 1.0 5.0 166 180 - 0.7225 1 2 cbr 210 ------- 1 1.0 5.0 166 180 - 0.72269 2 3 cbr 210 ------- 1 1.0 5.0 145 157 r 0.72336 1 2 cbr 210 ------- 1 1.0 5.0 152 165 + 0.72336 2 3 cbr 210 ------- 1 1.0 5.0 152 165 r 0.72565 2 3 cbr 210 ------- 1 1.0 5.0 128 140 + 0.72565 3 5 cbr 210 ------- 1 1.0 5.0 128 140 - 0.72565 3 5 cbr 210 ------- 1 1.0 5.0 128 140 - 0.72605 2 3 cbr 210 ------- 1 1.0 5.0 146 158 + 0.72625 1 2 cbr 210 ------- 1 1.0 5.0 167 181 - 0.72625 1 2 cbr 210 ------- 1 1.0 5.0 167 181 r 0.72711 1 2 cbr 210 ------- 1 1.0 5.0 153 166 + 0.72711 2 3 cbr 210 ------- 1 1.0 5.0 153 166 r 0.72901 2 3 cbr 210 ------- 1 1.0 5.0 129 141 + 0.72901 3 5 cbr 210 ------- 1 1.0 5.0 129 141 - 0.72901 3 5 cbr 210 ------- 1 1.0 5.0 129 141 r 0.72941 3 5 cbr 210 ------- 1 1.0 5.0 113 124 - 0.72941 2 3 cbr 210 ------- 1 1.0 5.0 147 159 + 0.73 1 2 cbr 210 ------- 1 1.0 5.0 168 182 - 0.73 1 2 cbr 210 ------- 1 1.0 5.0 168 182 r 0.73086 1 2 cbr 210 ------- 1 1.0 5.0 154 167 + 0.73086 2 3 cbr 210 ------- 1 1.0 5.0 154 167 r 0.73237 2 3 cbr 210 ------- 1 1.0 5.0 130 142 + 0.73237 3 5 cbr 210 ------- 1 1.0 5.0 130 142 - 0.73237 3 5 cbr 210 ------- 1 1.0 5.0 130 142 r 0.73277 3 5 cbr 210 ------- 1 1.0 5.0 115 126 - 0.73277 2 3 cbr 210 ------- 1 1.0 5.0 148 160 + 0.73375 1 2 cbr 210 ------- 1 1.0 5.0 169 183 - 0.73375 1 2 cbr 210 ------- 1 1.0 5.0 169 183 r 0.73461 1 2 cbr 210 ------- 1 1.0 5.0 155 168 + 0.73461 2 3 cbr 210 ------- 1 1.0 5.0 155 168 r 0.73573 2 3 cbr 210 ------- 1 1.0 5.0 131 143 + 0.73573 3 5 cbr 210 ------- 1 1.0 5.0 131 143 - 0.73573 3 5 cbr 210 ------- 1 1.0 5.0 131 143 r 0.73613 3 5 cbr 210 ------- 1 1.0 5.0 116 127 - 0.73613 2 3 cbr 210 ------- 1 1.0 5.0 149 162 + 0.7375 1 2 cbr 210 ------- 1 1.0 5.0 170 184 - 0.7375 1 2 cbr 210 ------- 1 1.0 5.0 170 184 r 0.73836 1 2 cbr 210 ------- 1 1.0 5.0 156 169 + 0.73836 2 3 cbr 210 ------- 1 1.0 5.0 156 169 r 0.73869 3 4 tcp 1000 ------- 0 0.0 4.0 6 120 + 0.73869 4 3 ack 40 ------- 0 4.0 0.0 6 185 - 0.73869 4 3 ack 40 ------- 0 4.0 0.0 6 185 r 0.73909 2 3 cbr 210 ------- 1 1.0 5.0 132 144 + 0.73909 3 5 cbr 210 ------- 1 1.0 5.0 132 144 - 0.73909 3 5 cbr 210 ------- 1 1.0 5.0 132 144 r 0.73949 3 5 cbr 210 ------- 1 1.0 5.0 117 128 - 0.73949 2 3 cbr 210 ------- 1 1.0 5.0 150 163 + 0.74125 1 2 cbr 210 ------- 1 1.0 5.0 171 186 - 0.74125 1 2 cbr 210 ------- 1 1.0 5.0 171 186 r 0.74211 1 2 cbr 210 ------- 1 1.0 5.0 157 170 + 0.74211 2 3 cbr 210 ------- 1 1.0 5.0 157 170 r 0.74245 2 3 cbr 210 ------- 1 1.0 5.0 133 145 + 0.74245 3 5 cbr 210 ------- 1 1.0 5.0 133 145 - 0.74245 3 5 cbr 210 ------- 1 1.0 5.0 133 145 r 0.74285 3 5 cbr 210 ------- 1 1.0 5.0 118 130 - 0.74285 2 3 cbr 210 ------- 1 1.0 5.0 151 164 + 0.745 1 2 cbr 210 ------- 1 1.0 5.0 172 187 - 0.745 1 2 cbr 210 ------- 1 1.0 5.0 172 187 r 0.74581 2 3 cbr 210 ------- 1 1.0 5.0 136 148 + 0.74581 3 5 cbr 210 ------- 1 1.0 5.0 136 148 - 0.74581 3 5 cbr 210 ------- 1 1.0 5.0 136 148 r 0.74586 1 2 cbr 210 ------- 1 1.0 5.0 158 171 + 0.74586 2 3 cbr 210 ------- 1 1.0 5.0 158 171 r 0.74621 3 5 cbr 210 ------- 1 1.0 5.0 119 131 - 0.74621 2 3 cbr 210 ------- 1 1.0 5.0 152 165 + 0.74875 1 2 cbr 210 ------- 1 1.0 5.0 173 188 - 0.74875 1 2 cbr 210 ------- 1 1.0 5.0 173 188 r 0.74917 2 3 cbr 210 ------- 1 1.0 5.0 137 149 + 0.74917 3 5 cbr 210 ------- 1 1.0 5.0 137 149 - 0.74917 3 5 cbr 210 ------- 1 1.0 5.0 137 149 r 0.74957 3 5 cbr 210 ------- 1 1.0 5.0 120 132 - 0.74957 2 3 cbr 210 ------- 1 1.0 5.0 153 166 r 0.74961 1 2 cbr 210 ------- 1 1.0 5.0 159 172 + 0.74961 2 3 cbr 210 ------- 1 1.0 5.0 159 172 r 0.74981 4 3 ack 40 ------- 0 4.0 0.0 5 173 + 0.74981 3 2 ack 40 ------- 0 4.0 0.0 5 173 - 0.74981 3 2 ack 40 ------- 0 4.0 0.0 5 173 + 0.7525 1 2 cbr 210 ------- 1 1.0 5.0 174 189 - 0.7525 1 2 cbr 210 ------- 1 1.0 5.0 174 189 r 0.75253 2 3 cbr 210 ------- 1 1.0 5.0 138 150 + 0.75253 3 5 cbr 210 ------- 1 1.0 5.0 138 150 - 0.75253 3 5 cbr 210 ------- 1 1.0 5.0 138 150 - 0.75293 2 3 cbr 210 ------- 1 1.0 5.0 154 167 r 0.75336 1 2 cbr 210 ------- 1 1.0 5.0 160 174 + 0.75336 2 3 cbr 210 ------- 1 1.0 5.0 160 174 r 0.75589 2 3 cbr 210 ------- 1 1.0 5.0 139 151 + 0.75589 3 5 cbr 210 ------- 1 1.0 5.0 139 151 - 0.75589 3 5 cbr 210 ------- 1 1.0 5.0 139 151 + 0.75625 1 2 cbr 210 ------- 1 1.0 5.0 175 190 - 0.75625 1 2 cbr 210 ------- 1 1.0 5.0 175 190 - 0.75629 2 3 cbr 210 ------- 1 1.0 5.0 155 168 r 0.75711 1 2 cbr 210 ------- 1 1.0 5.0 161 175 + 0.75711 2 3 cbr 210 ------- 1 1.0 5.0 161 175 r 0.75757 3 2 ack 40 ------- 0 4.0 0.0 4 161 + 0.75757 2 0 ack 40 ------- 0 4.0 0.0 4 161 - 0.75757 2 0 ack 40 ------- 0 4.0 0.0 4 161 r 0.75925 2 3 cbr 210 ------- 1 1.0 5.0 140 152 + 0.75925 3 5 cbr 210 ------- 1 1.0 5.0 140 152 - 0.75925 3 5 cbr 210 ------- 1 1.0 5.0 140 152 - 0.75965 2 3 cbr 210 ------- 1 1.0 5.0 156 169 + 0.76 1 2 cbr 210 ------- 1 1.0 5.0 176 191 - 0.76 1 2 cbr 210 ------- 1 1.0 5.0 176 191 r 0.76086 1 2 cbr 210 ------- 1 1.0 5.0 162 176 + 0.76086 2 3 cbr 210 ------- 1 1.0 5.0 162 176 r 0.76261 2 3 cbr 210 ------- 1 1.0 5.0 141 153 + 0.76261 3 5 cbr 210 ------- 1 1.0 5.0 141 153 - 0.76261 3 5 cbr 210 ------- 1 1.0 5.0 141 153 - 0.76301 2 3 cbr 210 ------- 1 1.0 5.0 157 170 + 0.76375 1 2 cbr 210 ------- 1 1.0 5.0 177 192 - 0.76375 1 2 cbr 210 ------- 1 1.0 5.0 177 192 r 0.76461 1 2 cbr 210 ------- 1 1.0 5.0 163 177 + 0.76461 2 3 cbr 210 ------- 1 1.0 5.0 163 177 r 0.76597 2 3 cbr 210 ------- 1 1.0 5.0 142 154 + 0.76597 3 5 cbr 210 ------- 1 1.0 5.0 142 154 - 0.76597 3 5 cbr 210 ------- 1 1.0 5.0 142 154 - 0.76637 2 3 cbr 210 ------- 1 1.0 5.0 158 171 + 0.7675 1 2 cbr 210 ------- 1 1.0 5.0 178 193 - 0.7675 1 2 cbr 210 ------- 1 1.0 5.0 178 193 r 0.76836 1 2 cbr 210 ------- 1 1.0 5.0 164 178 + 0.76836 2 3 cbr 210 ------- 1 1.0 5.0 164 178 r 0.76893 3 5 cbr 210 ------- 1 1.0 5.0 121 133 r 0.76933 2 3 cbr 210 ------- 1 1.0 5.0 143 155 + 0.76933 3 5 cbr 210 ------- 1 1.0 5.0 143 155 - 0.76933 3 5 cbr 210 ------- 1 1.0 5.0 143 155 - 0.76973 2 3 cbr 210 ------- 1 1.0 5.0 159 172 + 0.77125 1 2 cbr 210 ------- 1 1.0 5.0 179 194 - 0.77125 1 2 cbr 210 ------- 1 1.0 5.0 179 194 r 0.77211 1 2 cbr 210 ------- 1 1.0 5.0 165 179 + 0.77211 2 3 cbr 210 ------- 1 1.0 5.0 165 179 r 0.77229 3 5 cbr 210 ------- 1 1.0 5.0 126 138 r 0.77269 2 3 cbr 210 ------- 1 1.0 5.0 144 156 + 0.77269 3 5 cbr 210 ------- 1 1.0 5.0 144 156 - 0.77269 3 5 cbr 210 ------- 1 1.0 5.0 144 156 - 0.77309 2 3 cbr 210 ------- 1 1.0 5.0 160 174 + 0.775 1 2 cbr 210 ------- 1 1.0 5.0 180 195 - 0.775 1 2 cbr 210 ------- 1 1.0 5.0 180 195 r 0.77565 3 5 cbr 210 ------- 1 1.0 5.0 127 139 r 0.77586 1 2 cbr 210 ------- 1 1.0 5.0 166 180 + 0.77586 2 3 cbr 210 ------- 1 1.0 5.0 166 180 r 0.77605 2 3 cbr 210 ------- 1 1.0 5.0 145 157 + 0.77605 3 5 cbr 210 ------- 1 1.0 5.0 145 157 - 0.77605 3 5 cbr 210 ------- 1 1.0 5.0 145 157 - 0.77645 2 3 cbr 210 ------- 1 1.0 5.0 161 175 r 0.77821 3 4 tcp 1000 ------- 0 0.0 4.0 7 129 + 0.77821 4 3 ack 40 ------- 0 4.0 0.0 7 196 - 0.77821 4 3 ack 40 ------- 0 4.0 0.0 7 196 + 0.77875 1 2 cbr 210 ------- 1 1.0 5.0 181 197 - 0.77875 1 2 cbr 210 ------- 1 1.0 5.0 181 197 r 0.77901 3 5 cbr 210 ------- 1 1.0 5.0 128 140 r 0.77941 2 3 cbr 210 ------- 1 1.0 5.0 146 158 + 0.77941 3 5 cbr 210 ------- 1 1.0 5.0 146 158 - 0.77941 3 5 cbr 210 ------- 1 1.0 5.0 146 158 r 0.77961 1 2 cbr 210 ------- 1 1.0 5.0 167 181 + 0.77961 2 3 cbr 210 ------- 1 1.0 5.0 167 181 - 0.77981 2 3 cbr 210 ------- 1 1.0 5.0 162 176 r 0.78237 3 5 cbr 210 ------- 1 1.0 5.0 129 141 + 0.7825 1 2 cbr 210 ------- 1 1.0 5.0 182 198 - 0.7825 1 2 cbr 210 ------- 1 1.0 5.0 182 198 r 0.78277 2 3 cbr 210 ------- 1 1.0 5.0 147 159 + 0.78277 3 5 cbr 210 ------- 1 1.0 5.0 147 159 - 0.78277 3 5 cbr 210 ------- 1 1.0 5.0 147 159 - 0.78317 2 3 cbr 210 ------- 1 1.0 5.0 163 177 r 0.78336 1 2 cbr 210 ------- 1 1.0 5.0 168 182 + 0.78336 2 3 cbr 210 ------- 1 1.0 5.0 168 182 r 0.78573 3 5 cbr 210 ------- 1 1.0 5.0 130 142 r 0.78613 2 3 cbr 210 ------- 1 1.0 5.0 148 160 + 0.78613 3 5 cbr 210 ------- 1 1.0 5.0 148 160 - 0.78613 3 5 cbr 210 ------- 1 1.0 5.0 148 160 + 0.78625 1 2 cbr 210 ------- 1 1.0 5.0 183 199 - 0.78625 1 2 cbr 210 ------- 1 1.0 5.0 183 199 - 0.78653 2 3 cbr 210 ------- 1 1.0 5.0 164 178 r 0.78711 1 2 cbr 210 ------- 1 1.0 5.0 169 183 + 0.78711 2 3 cbr 210 ------- 1 1.0 5.0 169 183 r 0.78909 3 5 cbr 210 ------- 1 1.0 5.0 131 143 r 0.78933 4 3 ack 40 ------- 0 4.0 0.0 6 185 + 0.78933 3 2 ack 40 ------- 0 4.0 0.0 6 185 - 0.78933 3 2 ack 40 ------- 0 4.0 0.0 6 185 r 0.78949 2 3 cbr 210 ------- 1 1.0 5.0 149 162 + 0.78949 3 5 cbr 210 ------- 1 1.0 5.0 149 162 - 0.78949 3 5 cbr 210 ------- 1 1.0 5.0 149 162 - 0.78989 2 3 cbr 210 ------- 1 1.0 5.0 165 179 + 0.79 1 2 cbr 210 ------- 1 1.0 5.0 184 200 - 0.79 1 2 cbr 210 ------- 1 1.0 5.0 184 200 r 0.79086 1 2 cbr 210 ------- 1 1.0 5.0 170 184 + 0.79086 2 3 cbr 210 ------- 1 1.0 5.0 170 184 r 0.79245 3 5 cbr 210 ------- 1 1.0 5.0 132 144 r 0.79285 2 3 cbr 210 ------- 1 1.0 5.0 150 163 + 0.79285 3 5 cbr 210 ------- 1 1.0 5.0 150 163 - 0.79285 3 5 cbr 210 ------- 1 1.0 5.0 150 163 - 0.79325 2 3 cbr 210 ------- 1 1.0 5.0 166 180 + 0.79375 1 2 cbr 210 ------- 1 1.0 5.0 185 201 - 0.79375 1 2 cbr 210 ------- 1 1.0 5.0 185 201 r 0.79461 1 2 cbr 210 ------- 1 1.0 5.0 171 186 + 0.79461 2 3 cbr 210 ------- 1 1.0 5.0 171 186 r 0.79581 3 5 cbr 210 ------- 1 1.0 5.0 133 145 r 0.79621 2 3 cbr 210 ------- 1 1.0 5.0 151 164 + 0.79621 3 5 cbr 210 ------- 1 1.0 5.0 151 164 - 0.79621 3 5 cbr 210 ------- 1 1.0 5.0 151 164 - 0.79661 2 3 cbr 210 ------- 1 1.0 5.0 167 181 + 0.7975 1 2 cbr 210 ------- 1 1.0 5.0 186 202 - 0.7975 1 2 cbr 210 ------- 1 1.0 5.0 186 202 r 0.79836 1 2 cbr 210 ------- 1 1.0 5.0 172 187 + 0.79836 2 3 cbr 210 ------- 1 1.0 5.0 172 187 r 0.79917 3 5 cbr 210 ------- 1 1.0 5.0 136 148 r 0.79957 2 3 cbr 210 ------- 1 1.0 5.0 152 165 + 0.79957 3 5 cbr 210 ------- 1 1.0 5.0 152 165 - 0.79957 3 5 cbr 210 ------- 1 1.0 5.0 152 165 - 0.79997 2 3 cbr 210 ------- 1 1.0 5.0 168 182 r 0.80045 3 2 ack 40 ------- 0 4.0 0.0 5 173 + 0.80045 2 0 ack 40 ------- 0 4.0 0.0 5 173 - 0.80045 2 0 ack 40 ------- 0 4.0 0.0 5 173 + 0.80125 1 2 cbr 210 ------- 1 1.0 5.0 187 203 - 0.80125 1 2 cbr 210 ------- 1 1.0 5.0 187 203 r 0.80211 1 2 cbr 210 ------- 1 1.0 5.0 173 188 + 0.80211 2 3 cbr 210 ------- 1 1.0 5.0 173 188 r 0.80253 3 5 cbr 210 ------- 1 1.0 5.0 137 149 r 0.80293 2 3 cbr 210 ------- 1 1.0 5.0 153 166 + 0.80293 3 5 cbr 210 ------- 1 1.0 5.0 153 166 - 0.80293 3 5 cbr 210 ------- 1 1.0 5.0 153 166 - 0.80333 2 3 cbr 210 ------- 1 1.0 5.0 169 183 + 0.805 1 2 cbr 210 ------- 1 1.0 5.0 188 204 - 0.805 1 2 cbr 210 ------- 1 1.0 5.0 188 204 r 0.80586 1 2 cbr 210 ------- 1 1.0 5.0 174 189 + 0.80586 2 3 cbr 210 ------- 1 1.0 5.0 174 189 r 0.80589 3 5 cbr 210 ------- 1 1.0 5.0 138 150 r 0.80629 2 3 cbr 210 ------- 1 1.0 5.0 154 167 + 0.80629 3 5 cbr 210 ------- 1 1.0 5.0 154 167 - 0.80629 3 5 cbr 210 ------- 1 1.0 5.0 154 167 - 0.80669 2 3 cbr 210 ------- 1 1.0 5.0 170 184 r 0.80821 2 0 ack 40 ------- 0 4.0 0.0 4 161 + 0.80821 0 2 tcp 1000 ------- 0 0.0 4.0 8 205 - 0.80821 0 2 tcp 1000 ------- 0 0.0 4.0 8 205 + 0.80875 1 2 cbr 210 ------- 1 1.0 5.0 189 206 - 0.80875 1 2 cbr 210 ------- 1 1.0 5.0 189 206 r 0.80925 3 5 cbr 210 ------- 1 1.0 5.0 139 151 r 0.80961 1 2 cbr 210 ------- 1 1.0 5.0 175 190 + 0.80961 2 3 cbr 210 ------- 1 1.0 5.0 175 190 r 0.80965 2 3 cbr 210 ------- 1 1.0 5.0 155 168 + 0.80965 3 5 cbr 210 ------- 1 1.0 5.0 155 168 - 0.80965 3 5 cbr 210 ------- 1 1.0 5.0 155 168 - 0.81005 2 3 cbr 210 ------- 1 1.0 5.0 171 186 + 0.8125 1 2 cbr 210 ------- 1 1.0 5.0 190 207 - 0.8125 1 2 cbr 210 ------- 1 1.0 5.0 190 207 r 0.81261 3 5 cbr 210 ------- 1 1.0 5.0 140 152 r 0.81301 2 3 cbr 210 ------- 1 1.0 5.0 156 169 + 0.81301 3 5 cbr 210 ------- 1 1.0 5.0 156 169 - 0.81301 3 5 cbr 210 ------- 1 1.0 5.0 156 169 r 0.81336 1 2 cbr 210 ------- 1 1.0 5.0 176 191 + 0.81336 2 3 cbr 210 ------- 1 1.0 5.0 176 191 - 0.81341 2 3 cbr 210 ------- 1 1.0 5.0 172 187 r 0.81597 3 5 cbr 210 ------- 1 1.0 5.0 141 153 + 0.81625 1 2 cbr 210 ------- 1 1.0 5.0 191 208 - 0.81625 1 2 cbr 210 ------- 1 1.0 5.0 191 208 r 0.81637 2 3 cbr 210 ------- 1 1.0 5.0 157 170 + 0.81637 3 5 cbr 210 ------- 1 1.0 5.0 157 170 - 0.81637 3 5 cbr 210 ------- 1 1.0 5.0 157 170 - 0.81677 2 3 cbr 210 ------- 1 1.0 5.0 173 188 r 0.81711 1 2 cbr 210 ------- 1 1.0 5.0 177 192 + 0.81711 2 3 cbr 210 ------- 1 1.0 5.0 177 192 r 0.81933 3 5 cbr 210 ------- 1 1.0 5.0 142 154 r 0.81973 2 3 cbr 210 ------- 1 1.0 5.0 158 171 + 0.81973 3 5 cbr 210 ------- 1 1.0 5.0 158 171 - 0.81973 3 5 cbr 210 ------- 1 1.0 5.0 158 171 + 0.82 1 2 cbr 210 ------- 1 1.0 5.0 192 209 - 0.82 1 2 cbr 210 ------- 1 1.0 5.0 192 209 - 0.82013 2 3 cbr 210 ------- 1 1.0 5.0 174 189 r 0.82086 1 2 cbr 210 ------- 1 1.0 5.0 178 193 + 0.82086 2 3 cbr 210 ------- 1 1.0 5.0 178 193 r 0.82269 3 5 cbr 210 ------- 1 1.0 5.0 143 155 r 0.82309 2 3 cbr 210 ------- 1 1.0 5.0 159 172 + 0.82309 3 5 cbr 210 ------- 1 1.0 5.0 159 172 - 0.82309 3 5 cbr 210 ------- 1 1.0 5.0 159 172 - 0.82349 2 3 cbr 210 ------- 1 1.0 5.0 175 190 + 0.82375 1 2 cbr 210 ------- 1 1.0 5.0 193 210 - 0.82375 1 2 cbr 210 ------- 1 1.0 5.0 193 210 r 0.82461 1 2 cbr 210 ------- 1 1.0 5.0 179 194 + 0.82461 2 3 cbr 210 ------- 1 1.0 5.0 179 194 r 0.82605 3 5 cbr 210 ------- 1 1.0 5.0 144 156 r 0.82645 2 3 cbr 210 ------- 1 1.0 5.0 160 174 + 0.82645 3 5 cbr 210 ------- 1 1.0 5.0 160 174 - 0.82645 3 5 cbr 210 ------- 1 1.0 5.0 160 174 - 0.82685 2 3 cbr 210 ------- 1 1.0 5.0 176 191 + 0.8275 1 2 cbr 210 ------- 1 1.0 5.0 194 211 - 0.8275 1 2 cbr 210 ------- 1 1.0 5.0 194 211 r 0.82836 1 2 cbr 210 ------- 1 1.0 5.0 180 195 + 0.82836 2 3 cbr 210 ------- 1 1.0 5.0 180 195 r 0.82885 4 3 ack 40 ------- 0 4.0 0.0 7 196 + 0.82885 3 2 ack 40 ------- 0 4.0 0.0 7 196 - 0.82885 3 2 ack 40 ------- 0 4.0 0.0 7 196 r 0.82941 3 5 cbr 210 ------- 1 1.0 5.0 145 157 r 0.82981 2 3 cbr 210 ------- 1 1.0 5.0 161 175 + 0.82981 3 5 cbr 210 ------- 1 1.0 5.0 161 175 - 0.82981 3 5 cbr 210 ------- 1 1.0 5.0 161 175 - 0.83021 2 3 cbr 210 ------- 1 1.0 5.0 177 192 + 0.83125 1 2 cbr 210 ------- 1 1.0 5.0 195 212 - 0.83125 1 2 cbr 210 ------- 1 1.0 5.0 195 212 r 0.83211 1 2 cbr 210 ------- 1 1.0 5.0 181 197 + 0.83211 2 3 cbr 210 ------- 1 1.0 5.0 181 197 r 0.83277 3 5 cbr 210 ------- 1 1.0 5.0 146 158 r 0.83317 2 3 cbr 210 ------- 1 1.0 5.0 162 176 + 0.83317 3 5 cbr 210 ------- 1 1.0 5.0 162 176 - 0.83317 3 5 cbr 210 ------- 1 1.0 5.0 162 176 - 0.83357 2 3 cbr 210 ------- 1 1.0 5.0 178 193 + 0.835 1 2 cbr 210 ------- 1 1.0 5.0 196 213 - 0.835 1 2 cbr 210 ------- 1 1.0 5.0 196 213 r 0.83586 1 2 cbr 210 ------- 1 1.0 5.0 182 198 + 0.83586 2 3 cbr 210 ------- 1 1.0 5.0 182 198 r 0.83613 3 5 cbr 210 ------- 1 1.0 5.0 147 159 r 0.83653 2 3 cbr 210 ------- 1 1.0 5.0 163 177 + 0.83653 3 5 cbr 210 ------- 1 1.0 5.0 163 177 - 0.83653 3 5 cbr 210 ------- 1 1.0 5.0 163 177 - 0.83693 2 3 cbr 210 ------- 1 1.0 5.0 179 194 + 0.83875 1 2 cbr 210 ------- 1 1.0 5.0 197 214 - 0.83875 1 2 cbr 210 ------- 1 1.0 5.0 197 214 r 0.83949 3 5 cbr 210 ------- 1 1.0 5.0 148 160 r 0.83961 1 2 cbr 210 ------- 1 1.0 5.0 183 199 + 0.83961 2 3 cbr 210 ------- 1 1.0 5.0 183 199 r 0.83989 2 3 cbr 210 ------- 1 1.0 5.0 164 178 + 0.83989 3 5 cbr 210 ------- 1 1.0 5.0 164 178 - 0.83989 3 5 cbr 210 ------- 1 1.0 5.0 164 178 r 0.83997 3 2 ack 40 ------- 0 4.0 0.0 6 185 + 0.83997 2 0 ack 40 ------- 0 4.0 0.0 6 185 - 0.83997 2 0 ack 40 ------- 0 4.0 0.0 6 185 - 0.84029 2 3 cbr 210 ------- 1 1.0 5.0 180 195 + 0.8425 1 2 cbr 210 ------- 1 1.0 5.0 198 215 - 0.8425 1 2 cbr 210 ------- 1 1.0 5.0 198 215 r 0.84285 3 5 cbr 210 ------- 1 1.0 5.0 149 162 r 0.84325 2 3 cbr 210 ------- 1 1.0 5.0 165 179 + 0.84325 3 5 cbr 210 ------- 1 1.0 5.0 165 179 - 0.84325 3 5 cbr 210 ------- 1 1.0 5.0 165 179 r 0.84336 1 2 cbr 210 ------- 1 1.0 5.0 184 200 + 0.84336 2 3 cbr 210 ------- 1 1.0 5.0 184 200 - 0.84365 2 3 cbr 210 ------- 1 1.0 5.0 181 197 r 0.84621 3 5 cbr 210 ------- 1 1.0 5.0 150 163 + 0.84625 1 2 cbr 210 ------- 1 1.0 5.0 199 216 - 0.84625 1 2 cbr 210 ------- 1 1.0 5.0 199 216 r 0.84661 2 3 cbr 210 ------- 1 1.0 5.0 166 180 + 0.84661 3 5 cbr 210 ------- 1 1.0 5.0 166 180 - 0.84661 3 5 cbr 210 ------- 1 1.0 5.0 166 180 - 0.84701 2 3 cbr 210 ------- 1 1.0 5.0 182 198 r 0.84711 1 2 cbr 210 ------- 1 1.0 5.0 185 201 + 0.84711 2 3 cbr 210 ------- 1 1.0 5.0 185 201 r 0.84957 3 5 cbr 210 ------- 1 1.0 5.0 151 164 r 0.84997 2 3 cbr 210 ------- 1 1.0 5.0 167 181 + 0.84997 3 5 cbr 210 ------- 1 1.0 5.0 167 181 - 0.84997 3 5 cbr 210 ------- 1 1.0 5.0 167 181 + 0.85 1 2 cbr 210 ------- 1 1.0 5.0 200 217 - 0.85 1 2 cbr 210 ------- 1 1.0 5.0 200 217 - 0.85037 2 3 cbr 210 ------- 1 1.0 5.0 183 199 r 0.85086 1 2 cbr 210 ------- 1 1.0 5.0 186 202 + 0.85086 2 3 cbr 210 ------- 1 1.0 5.0 186 202 r 0.85109 2 0 ack 40 ------- 0 4.0 0.0 5 173 + 0.85109 0 2 tcp 1000 ------- 0 0.0 4.0 9 218 - 0.85109 0 2 tcp 1000 ------- 0 0.0 4.0 9 218 r 0.85293 3 5 cbr 210 ------- 1 1.0 5.0 152 165 r 0.85333 2 3 cbr 210 ------- 1 1.0 5.0 168 182 + 0.85333 3 5 cbr 210 ------- 1 1.0 5.0 168 182 - 0.85333 3 5 cbr 210 ------- 1 1.0 5.0 168 182 - 0.85373 2 3 cbr 210 ------- 1 1.0 5.0 184 200 + 0.85375 1 2 cbr 210 ------- 1 1.0 5.0 201 219 - 0.85375 1 2 cbr 210 ------- 1 1.0 5.0 201 219 r 0.85461 1 2 cbr 210 ------- 1 1.0 5.0 187 203 + 0.85461 2 3 cbr 210 ------- 1 1.0 5.0 187 203 r 0.85629 3 5 cbr 210 ------- 1 1.0 5.0 153 166 r 0.85669 2 3 cbr 210 ------- 1 1.0 5.0 169 183 + 0.85669 3 5 cbr 210 ------- 1 1.0 5.0 169 183 - 0.85669 3 5 cbr 210 ------- 1 1.0 5.0 169 183 - 0.85709 2 3 cbr 210 ------- 1 1.0 5.0 185 201 + 0.8575 1 2 cbr 210 ------- 1 1.0 5.0 202 220 - 0.8575 1 2 cbr 210 ------- 1 1.0 5.0 202 220 r 0.85836 1 2 cbr 210 ------- 1 1.0 5.0 188 204 + 0.85836 2 3 cbr 210 ------- 1 1.0 5.0 188 204 r 0.85965 3 5 cbr 210 ------- 1 1.0 5.0 154 167 r 0.86005 2 3 cbr 210 ------- 1 1.0 5.0 170 184 + 0.86005 3 5 cbr 210 ------- 1 1.0 5.0 170 184 - 0.86005 3 5 cbr 210 ------- 1 1.0 5.0 170 184 - 0.86045 2 3 cbr 210 ------- 1 1.0 5.0 186 202 + 0.86125 1 2 cbr 210 ------- 1 1.0 5.0 203 221 - 0.86125 1 2 cbr 210 ------- 1 1.0 5.0 203 221 r 0.86211 1 2 cbr 210 ------- 1 1.0 5.0 189 206 + 0.86211 2 3 cbr 210 ------- 1 1.0 5.0 189 206 r 0.86301 3 5 cbr 210 ------- 1 1.0 5.0 155 168 r 0.86341 2 3 cbr 210 ------- 1 1.0 5.0 171 186 + 0.86341 3 5 cbr 210 ------- 1 1.0 5.0 171 186 - 0.86341 3 5 cbr 210 ------- 1 1.0 5.0 171 186 - 0.86381 2 3 cbr 210 ------- 1 1.0 5.0 187 203 + 0.865 1 2 cbr 210 ------- 1 1.0 5.0 204 222 - 0.865 1 2 cbr 210 ------- 1 1.0 5.0 204 222 r 0.86586 1 2 cbr 210 ------- 1 1.0 5.0 190 207 + 0.86586 2 3 cbr 210 ------- 1 1.0 5.0 190 207 r 0.86637 3 5 cbr 210 ------- 1 1.0 5.0 156 169 r 0.86677 2 3 cbr 210 ------- 1 1.0 5.0 172 187 + 0.86677 3 5 cbr 210 ------- 1 1.0 5.0 172 187 - 0.86677 3 5 cbr 210 ------- 1 1.0 5.0 172 187 - 0.86717 2 3 cbr 210 ------- 1 1.0 5.0 188 204 + 0.86875 1 2 cbr 210 ------- 1 1.0 5.0 205 223 - 0.86875 1 2 cbr 210 ------- 1 1.0 5.0 205 223 r 0.86961 1 2 cbr 210 ------- 1 1.0 5.0 191 208 + 0.86961 2 3 cbr 210 ------- 1 1.0 5.0 191 208 r 0.86973 3 5 cbr 210 ------- 1 1.0 5.0 157 170 r 0.87013 2 3 cbr 210 ------- 1 1.0 5.0 173 188 + 0.87013 3 5 cbr 210 ------- 1 1.0 5.0 173 188 - 0.87013 3 5 cbr 210 ------- 1 1.0 5.0 173 188 - 0.87053 2 3 cbr 210 ------- 1 1.0 5.0 189 206 + 0.8725 1 2 cbr 210 ------- 1 1.0 5.0 206 224 - 0.8725 1 2 cbr 210 ------- 1 1.0 5.0 206 224 r 0.87309 3 5 cbr 210 ------- 1 1.0 5.0 158 171 r 0.87336 1 2 cbr 210 ------- 1 1.0 5.0 192 209 + 0.87336 2 3 cbr 210 ------- 1 1.0 5.0 192 209 r 0.87349 2 3 cbr 210 ------- 1 1.0 5.0 174 189 + 0.87349 3 5 cbr 210 ------- 1 1.0 5.0 174 189 - 0.87349 3 5 cbr 210 ------- 1 1.0 5.0 174 189 - 0.87389 2 3 cbr 210 ------- 1 1.0 5.0 190 207 r 0.87421 0 2 tcp 1000 ------- 0 0.0 4.0 8 205 + 0.87421 2 3 tcp 1000 ------- 0 0.0 4.0 8 205 + 0.87625 1 2 cbr 210 ------- 1 1.0 5.0 207 225 - 0.87625 1 2 cbr 210 ------- 1 1.0 5.0 207 225 r 0.87645 3 5 cbr 210 ------- 1 1.0 5.0 159 172 r 0.87685 2 3 cbr 210 ------- 1 1.0 5.0 175 190 + 0.87685 3 5 cbr 210 ------- 1 1.0 5.0 175 190 - 0.87685 3 5 cbr 210 ------- 1 1.0 5.0 175 190 r 0.87711 1 2 cbr 210 ------- 1 1.0 5.0 193 210 + 0.87711 2 3 cbr 210 ------- 1 1.0 5.0 193 210 - 0.87725 2 3 cbr 210 ------- 1 1.0 5.0 191 208 r 0.87949 3 2 ack 40 ------- 0 4.0 0.0 7 196 + 0.87949 2 0 ack 40 ------- 0 4.0 0.0 7 196 - 0.87949 2 0 ack 40 ------- 0 4.0 0.0 7 196 r 0.87981 3 5 cbr 210 ------- 1 1.0 5.0 160 174 + 0.88 1 2 cbr 210 ------- 1 1.0 5.0 208 226 - 0.88 1 2 cbr 210 ------- 1 1.0 5.0 208 226 r 0.88021 2 3 cbr 210 ------- 1 1.0 5.0 176 191 + 0.88021 3 5 cbr 210 ------- 1 1.0 5.0 176 191 - 0.88021 3 5 cbr 210 ------- 1 1.0 5.0 176 191 - 0.88061 2 3 cbr 210 ------- 1 1.0 5.0 192 209 r 0.88086 1 2 cbr 210 ------- 1 1.0 5.0 194 211 + 0.88086 2 3 cbr 210 ------- 1 1.0 5.0 194 211 r 0.88317 3 5 cbr 210 ------- 1 1.0 5.0 161 175 r 0.88357 2 3 cbr 210 ------- 1 1.0 5.0 177 192 + 0.88357 3 5 cbr 210 ------- 1 1.0 5.0 177 192 - 0.88357 3 5 cbr 210 ------- 1 1.0 5.0 177 192 + 0.88375 1 2 cbr 210 ------- 1 1.0 5.0 209 227 - 0.88375 1 2 cbr 210 ------- 1 1.0 5.0 209 227 - 0.88397 2 3 tcp 1000 ------- 0 0.0 4.0 8 205 r 0.88461 1 2 cbr 210 ------- 1 1.0 5.0 195 212 + 0.88461 2 3 cbr 210 ------- 1 1.0 5.0 195 212 r 0.88653 3 5 cbr 210 ------- 1 1.0 5.0 162 176 r 0.88693 2 3 cbr 210 ------- 1 1.0 5.0 178 193 + 0.88693 3 5 cbr 210 ------- 1 1.0 5.0 178 193 - 0.88693 3 5 cbr 210 ------- 1 1.0 5.0 178 193 + 0.8875 1 2 cbr 210 ------- 1 1.0 5.0 210 228 - 0.8875 1 2 cbr 210 ------- 1 1.0 5.0 210 228 r 0.88836 1 2 cbr 210 ------- 1 1.0 5.0 196 213 + 0.88836 2 3 cbr 210 ------- 1 1.0 5.0 196 213 r 0.88989 3 5 cbr 210 ------- 1 1.0 5.0 163 177 r 0.89029 2 3 cbr 210 ------- 1 1.0 5.0 179 194 + 0.89029 3 5 cbr 210 ------- 1 1.0 5.0 179 194 - 0.89029 3 5 cbr 210 ------- 1 1.0 5.0 179 194 r 0.89061 2 0 ack 40 ------- 0 4.0 0.0 6 185 + 0.89061 0 2 tcp 1000 ------- 0 0.0 4.0 10 229 - 0.89061 0 2 tcp 1000 ------- 0 0.0 4.0 10 229 + 0.89125 1 2 cbr 210 ------- 1 1.0 5.0 211 230 - 0.89125 1 2 cbr 210 ------- 1 1.0 5.0 211 230 r 0.89211 1 2 cbr 210 ------- 1 1.0 5.0 197 214 + 0.89211 2 3 cbr 210 ------- 1 1.0 5.0 197 214 r 0.89325 3 5 cbr 210 ------- 1 1.0 5.0 164 178 r 0.89365 2 3 cbr 210 ------- 1 1.0 5.0 180 195 + 0.89365 3 5 cbr 210 ------- 1 1.0 5.0 180 195 - 0.89365 3 5 cbr 210 ------- 1 1.0 5.0 180 195 + 0.895 1 2 cbr 210 ------- 1 1.0 5.0 212 231 - 0.895 1 2 cbr 210 ------- 1 1.0 5.0 212 231 r 0.89586 1 2 cbr 210 ------- 1 1.0 5.0 198 215 + 0.89586 2 3 cbr 210 ------- 1 1.0 5.0 198 215 r 0.89661 3 5 cbr 210 ------- 1 1.0 5.0 165 179 r 0.89701 2 3 cbr 210 ------- 1 1.0 5.0 181 197 + 0.89701 3 5 cbr 210 ------- 1 1.0 5.0 181 197 - 0.89701 3 5 cbr 210 ------- 1 1.0 5.0 181 197 + 0.89875 1 2 cbr 210 ------- 1 1.0 5.0 213 232 - 0.89875 1 2 cbr 210 ------- 1 1.0 5.0 213 232 r 0.89961 1 2 cbr 210 ------- 1 1.0 5.0 199 216 + 0.89961 2 3 cbr 210 ------- 1 1.0 5.0 199 216 r 0.89997 3 5 cbr 210 ------- 1 1.0 5.0 166 180 - 0.89997 2 3 cbr 210 ------- 1 1.0 5.0 193 210 r 0.90037 2 3 cbr 210 ------- 1 1.0 5.0 182 198 + 0.90037 3 5 cbr 210 ------- 1 1.0 5.0 182 198 - 0.90037 3 5 cbr 210 ------- 1 1.0 5.0 182 198 + 0.9025 1 2 cbr 210 ------- 1 1.0 5.0 214 233 - 0.9025 1 2 cbr 210 ------- 1 1.0 5.0 214 233 r 0.90333 3 5 cbr 210 ------- 1 1.0 5.0 167 181 - 0.90333 2 3 cbr 210 ------- 1 1.0 5.0 194 211 r 0.90336 1 2 cbr 210 ------- 1 1.0 5.0 200 217 + 0.90336 2 3 cbr 210 ------- 1 1.0 5.0 200 217 r 0.90373 2 3 cbr 210 ------- 1 1.0 5.0 183 199 + 0.90373 3 5 cbr 210 ------- 1 1.0 5.0 183 199 - 0.90373 3 5 cbr 210 ------- 1 1.0 5.0 183 199 + 0.90625 1 2 cbr 210 ------- 1 1.0 5.0 215 234 - 0.90625 1 2 cbr 210 ------- 1 1.0 5.0 215 234 r 0.90669 3 5 cbr 210 ------- 1 1.0 5.0 168 182 - 0.90669 2 3 cbr 210 ------- 1 1.0 5.0 195 212 r 0.90709 2 3 cbr 210 ------- 1 1.0 5.0 184 200 + 0.90709 3 5 cbr 210 ------- 1 1.0 5.0 184 200 - 0.90709 3 5 cbr 210 ------- 1 1.0 5.0 184 200 r 0.90711 1 2 cbr 210 ------- 1 1.0 5.0 201 219 + 0.90711 2 3 cbr 210 ------- 1 1.0 5.0 201 219 + 0.91 1 2 cbr 210 ------- 1 1.0 5.0 216 235 - 0.91 1 2 cbr 210 ------- 1 1.0 5.0 216 235 r 0.91005 3 5 cbr 210 ------- 1 1.0 5.0 169 183 - 0.91005 2 3 cbr 210 ------- 1 1.0 5.0 196 213 r 0.91045 2 3 cbr 210 ------- 1 1.0 5.0 185 201 + 0.91045 3 5 cbr 210 ------- 1 1.0 5.0 185 201 - 0.91045 3 5 cbr 210 ------- 1 1.0 5.0 185 201 r 0.91086 1 2 cbr 210 ------- 1 1.0 5.0 202 220 + 0.91086 2 3 cbr 210 ------- 1 1.0 5.0 202 220 r 0.91341 3 5 cbr 210 ------- 1 1.0 5.0 170 184 - 0.91341 2 3 cbr 210 ------- 1 1.0 5.0 197 214 + 0.91375 1 2 cbr 210 ------- 1 1.0 5.0 217 236 - 0.91375 1 2 cbr 210 ------- 1 1.0 5.0 217 236 r 0.91381 2 3 cbr 210 ------- 1 1.0 5.0 186 202 + 0.91381 3 5 cbr 210 ------- 1 1.0 5.0 186 202 - 0.91381 3 5 cbr 210 ------- 1 1.0 5.0 186 202 r 0.91461 1 2 cbr 210 ------- 1 1.0 5.0 203 221 + 0.91461 2 3 cbr 210 ------- 1 1.0 5.0 203 221 r 0.91677 3 5 cbr 210 ------- 1 1.0 5.0 171 186 - 0.91677 2 3 cbr 210 ------- 1 1.0 5.0 198 215 r 0.91709 0 2 tcp 1000 ------- 0 0.0 4.0 9 218 + 0.91709 2 3 tcp 1000 ------- 0 0.0 4.0 9 218 r 0.91717 2 3 cbr 210 ------- 1 1.0 5.0 187 203 + 0.91717 3 5 cbr 210 ------- 1 1.0 5.0 187 203 - 0.91717 3 5 cbr 210 ------- 1 1.0 5.0 187 203 + 0.9175 1 2 cbr 210 ------- 1 1.0 5.0 218 237 - 0.9175 1 2 cbr 210 ------- 1 1.0 5.0 218 237 r 0.91836 1 2 cbr 210 ------- 1 1.0 5.0 204 222 + 0.91836 2 3 cbr 210 ------- 1 1.0 5.0 204 222 r 0.92013 3 5 cbr 210 ------- 1 1.0 5.0 172 187 - 0.92013 2 3 cbr 210 ------- 1 1.0 5.0 199 216 r 0.92053 2 3 cbr 210 ------- 1 1.0 5.0 188 204 + 0.92053 3 5 cbr 210 ------- 1 1.0 5.0 188 204 - 0.92053 3 5 cbr 210 ------- 1 1.0 5.0 188 204 + 0.92125 1 2 cbr 210 ------- 1 1.0 5.0 219 238 - 0.92125 1 2 cbr 210 ------- 1 1.0 5.0 219 238 r 0.92211 1 2 cbr 210 ------- 1 1.0 5.0 205 223 + 0.92211 2 3 cbr 210 ------- 1 1.0 5.0 205 223 r 0.92349 3 5 cbr 210 ------- 1 1.0 5.0 173 188 - 0.92349 2 3 cbr 210 ------- 1 1.0 5.0 200 217 r 0.92389 2 3 cbr 210 ------- 1 1.0 5.0 189 206 + 0.92389 3 5 cbr 210 ------- 1 1.0 5.0 189 206 - 0.92389 3 5 cbr 210 ------- 1 1.0 5.0 189 206 + 0.925 1 2 cbr 210 ------- 1 1.0 5.0 220 239 - 0.925 1 2 cbr 210 ------- 1 1.0 5.0 220 239 r 0.92586 1 2 cbr 210 ------- 1 1.0 5.0 206 224 + 0.92586 2 3 cbr 210 ------- 1 1.0 5.0 206 224 r 0.92685 3 5 cbr 210 ------- 1 1.0 5.0 174 189 - 0.92685 2 3 cbr 210 ------- 1 1.0 5.0 201 219 r 0.92725 2 3 cbr 210 ------- 1 1.0 5.0 190 207 + 0.92725 3 5 cbr 210 ------- 1 1.0 5.0 190 207 - 0.92725 3 5 cbr 210 ------- 1 1.0 5.0 190 207 + 0.92875 1 2 cbr 210 ------- 1 1.0 5.0 221 240 - 0.92875 1 2 cbr 210 ------- 1 1.0 5.0 221 240 r 0.92961 1 2 cbr 210 ------- 1 1.0 5.0 207 225 + 0.92961 2 3 cbr 210 ------- 1 1.0 5.0 207 225 r 0.93013 2 0 ack 40 ------- 0 4.0 0.0 7 196 + 0.93013 0 2 tcp 1000 ------- 0 0.0 4.0 11 241 - 0.93013 0 2 tcp 1000 ------- 0 0.0 4.0 11 241 r 0.93021 3 5 cbr 210 ------- 1 1.0 5.0 175 190 - 0.93021 2 3 cbr 210 ------- 1 1.0 5.0 202 220 r 0.93061 2 3 cbr 210 ------- 1 1.0 5.0 191 208 + 0.93061 3 5 cbr 210 ------- 1 1.0 5.0 191 208 - 0.93061 3 5 cbr 210 ------- 1 1.0 5.0 191 208 + 0.9325 1 2 cbr 210 ------- 1 1.0 5.0 222 242 - 0.9325 1 2 cbr 210 ------- 1 1.0 5.0 222 242 r 0.93336 1 2 cbr 210 ------- 1 1.0 5.0 208 226 + 0.93336 2 3 cbr 210 ------- 1 1.0 5.0 208 226 r 0.93357 3 5 cbr 210 ------- 1 1.0 5.0 176 191 - 0.93357 2 3 cbr 210 ------- 1 1.0 5.0 203 221 r 0.93397 2 3 cbr 210 ------- 1 1.0 5.0 192 209 + 0.93397 3 5 cbr 210 ------- 1 1.0 5.0 192 209 - 0.93397 3 5 cbr 210 ------- 1 1.0 5.0 192 209 + 0.93625 1 2 cbr 210 ------- 1 1.0 5.0 223 243 - 0.93625 1 2 cbr 210 ------- 1 1.0 5.0 223 243 r 0.93693 3 5 cbr 210 ------- 1 1.0 5.0 177 192 - 0.93693 2 3 tcp 1000 ------- 0 0.0 4.0 9 218 r 0.93711 1 2 cbr 210 ------- 1 1.0 5.0 209 227 + 0.93711 2 3 cbr 210 ------- 1 1.0 5.0 209 227 + 0.94 1 2 cbr 210 ------- 1 1.0 5.0 224 244 - 0.94 1 2 cbr 210 ------- 1 1.0 5.0 224 244 r 0.94029 3 5 cbr 210 ------- 1 1.0 5.0 178 193 r 0.94086 1 2 cbr 210 ------- 1 1.0 5.0 210 228 + 0.94086 2 3 cbr 210 ------- 1 1.0 5.0 210 228 r 0.94365 3 5 cbr 210 ------- 1 1.0 5.0 179 194 + 0.94375 1 2 cbr 210 ------- 1 1.0 5.0 225 245 - 0.94375 1 2 cbr 210 ------- 1 1.0 5.0 225 245 r 0.94461 1 2 cbr 210 ------- 1 1.0 5.0 211 230 + 0.94461 2 3 cbr 210 ------- 1 1.0 5.0 211 230 r 0.94701 3 5 cbr 210 ------- 1 1.0 5.0 180 195 + 0.9475 1 2 cbr 210 ------- 1 1.0 5.0 226 246 - 0.9475 1 2 cbr 210 ------- 1 1.0 5.0 226 246 r 0.94836 1 2 cbr 210 ------- 1 1.0 5.0 212 231 + 0.94836 2 3 cbr 210 ------- 1 1.0 5.0 212 231 r 0.94997 2 3 tcp 1000 ------- 0 0.0 4.0 8 205 + 0.94997 3 4 tcp 1000 ------- 0 0.0 4.0 8 205 - 0.94997 3 4 tcp 1000 ------- 0 0.0 4.0 8 205 r 0.95037 3 5 cbr 210 ------- 1 1.0 5.0 181 197 + 0.95125 1 2 cbr 210 ------- 1 1.0 5.0 227 247 - 0.95125 1 2 cbr 210 ------- 1 1.0 5.0 227 247 r 0.95211 1 2 cbr 210 ------- 1 1.0 5.0 213 232 + 0.95211 2 3 cbr 210 ------- 1 1.0 5.0 213 232 d 0.95211 2 3 cbr 210 ------- 1 1.0 5.0 213 232 - 0.95293 2 3 cbr 210 ------- 1 1.0 5.0 204 222 r 0.95333 2 3 cbr 210 ------- 1 1.0 5.0 193 210 + 0.95333 3 5 cbr 210 ------- 1 1.0 5.0 193 210 - 0.95333 3 5 cbr 210 ------- 1 1.0 5.0 193 210 r 0.95373 3 5 cbr 210 ------- 1 1.0 5.0 182 198 + 0.955 1 2 cbr 210 ------- 1 1.0 5.0 228 248 - 0.955 1 2 cbr 210 ------- 1 1.0 5.0 228 248 r 0.95586 1 2 cbr 210 ------- 1 1.0 5.0 214 233 + 0.95586 2 3 cbr 210 ------- 1 1.0 5.0 214 233 - 0.95629 2 3 cbr 210 ------- 1 1.0 5.0 205 223 r 0.95661 0 2 tcp 1000 ------- 0 0.0 4.0 10 229 + 0.95661 2 3 tcp 1000 ------- 0 0.0 4.0 10 229 r 0.95669 2 3 cbr 210 ------- 1 1.0 5.0 194 211 + 0.95669 3 5 cbr 210 ------- 1 1.0 5.0 194 211 - 0.95669 3 5 cbr 210 ------- 1 1.0 5.0 194 211 r 0.95709 3 5 cbr 210 ------- 1 1.0 5.0 183 199 + 0.95875 1 2 cbr 210 ------- 1 1.0 5.0 229 249 - 0.95875 1 2 cbr 210 ------- 1 1.0 5.0 229 249 r 0.95961 1 2 cbr 210 ------- 1 1.0 5.0 215 234 + 0.95961 2 3 cbr 210 ------- 1 1.0 5.0 215 234 d 0.95961 2 3 cbr 210 ------- 1 1.0 5.0 215 234 - 0.95965 2 3 cbr 210 ------- 1 1.0 5.0 206 224 r 0.96005 2 3 cbr 210 ------- 1 1.0 5.0 195 212 + 0.96005 3 5 cbr 210 ------- 1 1.0 5.0 195 212 - 0.96005 3 5 cbr 210 ------- 1 1.0 5.0 195 212 r 0.96045 3 5 cbr 210 ------- 1 1.0 5.0 184 200 + 0.9625 1 2 cbr 210 ------- 1 1.0 5.0 230 250 - 0.9625 1 2 cbr 210 ------- 1 1.0 5.0 230 250 - 0.96301 2 3 cbr 210 ------- 1 1.0 5.0 207 225 r 0.96336 1 2 cbr 210 ------- 1 1.0 5.0 216 235 + 0.96336 2 3 cbr 210 ------- 1 1.0 5.0 216 235 r 0.96341 2 3 cbr 210 ------- 1 1.0 5.0 196 213 + 0.96341 3 5 cbr 210 ------- 1 1.0 5.0 196 213 - 0.96341 3 5 cbr 210 ------- 1 1.0 5.0 196 213 r 0.96381 3 5 cbr 210 ------- 1 1.0 5.0 185 201 + 0.96625 1 2 cbr 210 ------- 1 1.0 5.0 231 251 - 0.96625 1 2 cbr 210 ------- 1 1.0 5.0 231 251 - 0.96637 2 3 cbr 210 ------- 1 1.0 5.0 208 226 r 0.96677 2 3 cbr 210 ------- 1 1.0 5.0 197 214 + 0.96677 3 5 cbr 210 ------- 1 1.0 5.0 197 214 - 0.96677 3 5 cbr 210 ------- 1 1.0 5.0 197 214 r 0.96711 1 2 cbr 210 ------- 1 1.0 5.0 217 236 + 0.96711 2 3 cbr 210 ------- 1 1.0 5.0 217 236 r 0.96717 3 5 cbr 210 ------- 1 1.0 5.0 186 202 - 0.96973 2 3 cbr 210 ------- 1 1.0 5.0 209 227 + 0.97 1 2 cbr 210 ------- 1 1.0 5.0 232 252 - 0.97 1 2 cbr 210 ------- 1 1.0 5.0 232 252 r 0.97013 2 3 cbr 210 ------- 1 1.0 5.0 198 215 + 0.97013 3 5 cbr 210 ------- 1 1.0 5.0 198 215 - 0.97013 3 5 cbr 210 ------- 1 1.0 5.0 198 215 r 0.97053 3 5 cbr 210 ------- 1 1.0 5.0 187 203 r 0.97086 1 2 cbr 210 ------- 1 1.0 5.0 218 237 + 0.97086 2 3 cbr 210 ------- 1 1.0 5.0 218 237 - 0.97309 2 3 cbr 210 ------- 1 1.0 5.0 210 228 r 0.97349 2 3 cbr 210 ------- 1 1.0 5.0 199 216 + 0.97349 3 5 cbr 210 ------- 1 1.0 5.0 199 216 - 0.97349 3 5 cbr 210 ------- 1 1.0 5.0 199 216 + 0.97375 1 2 cbr 210 ------- 1 1.0 5.0 233 253 - 0.97375 1 2 cbr 210 ------- 1 1.0 5.0 233 253 r 0.97389 3 5 cbr 210 ------- 1 1.0 5.0 188 204 r 0.97461 1 2 cbr 210 ------- 1 1.0 5.0 219 238 + 0.97461 2 3 cbr 210 ------- 1 1.0 5.0 219 238 - 0.97645 2 3 cbr 210 ------- 1 1.0 5.0 211 230 r 0.97685 2 3 cbr 210 ------- 1 1.0 5.0 200 217 + 0.97685 3 5 cbr 210 ------- 1 1.0 5.0 200 217 - 0.97685 3 5 cbr 210 ------- 1 1.0 5.0 200 217 r 0.97725 3 5 cbr 210 ------- 1 1.0 5.0 189 206 + 0.9775 1 2 cbr 210 ------- 1 1.0 5.0 234 254 - 0.9775 1 2 cbr 210 ------- 1 1.0 5.0 234 254 r 0.97836 1 2 cbr 210 ------- 1 1.0 5.0 220 239 + 0.97836 2 3 cbr 210 ------- 1 1.0 5.0 220 239 - 0.97981 2 3 cbr 210 ------- 1 1.0 5.0 212 231 r 0.98021 2 3 cbr 210 ------- 1 1.0 5.0 201 219 + 0.98021 3 5 cbr 210 ------- 1 1.0 5.0 201 219 - 0.98021 3 5 cbr 210 ------- 1 1.0 5.0 201 219 r 0.98061 3 5 cbr 210 ------- 1 1.0 5.0 190 207 + 0.98125 1 2 cbr 210 ------- 1 1.0 5.0 235 255 - 0.98125 1 2 cbr 210 ------- 1 1.0 5.0 235 255 r 0.98211 1 2 cbr 210 ------- 1 1.0 5.0 221 240 + 0.98211 2 3 cbr 210 ------- 1 1.0 5.0 221 240 - 0.98317 2 3 cbr 210 ------- 1 1.0 5.0 214 233 r 0.98357 2 3 cbr 210 ------- 1 1.0 5.0 202 220 + 0.98357 3 5 cbr 210 ------- 1 1.0 5.0 202 220 - 0.98357 3 5 cbr 210 ------- 1 1.0 5.0 202 220 r 0.98397 3 5 cbr 210 ------- 1 1.0 5.0 191 208 + 0.985 1 2 cbr 210 ------- 1 1.0 5.0 236 256 - 0.985 1 2 cbr 210 ------- 1 1.0 5.0 236 256 r 0.98586 1 2 cbr 210 ------- 1 1.0 5.0 222 242 + 0.98586 2 3 cbr 210 ------- 1 1.0 5.0 222 242 - 0.98653 2 3 tcp 1000 ------- 0 0.0 4.0 10 229 r 0.98693 2 3 cbr 210 ------- 1 1.0 5.0 203 221 + 0.98693 3 5 cbr 210 ------- 1 1.0 5.0 203 221 - 0.98693 3 5 cbr 210 ------- 1 1.0 5.0 203 221 r 0.98733 3 5 cbr 210 ------- 1 1.0 5.0 192 209 + 0.98875 1 2 cbr 210 ------- 1 1.0 5.0 237 257 - 0.98875 1 2 cbr 210 ------- 1 1.0 5.0 237 257 r 0.98961 1 2 cbr 210 ------- 1 1.0 5.0 223 243 + 0.98961 2 3 cbr 210 ------- 1 1.0 5.0 223 243 + 0.9925 1 2 cbr 210 ------- 1 1.0 5.0 238 258 - 0.9925 1 2 cbr 210 ------- 1 1.0 5.0 238 258 r 0.99336 1 2 cbr 210 ------- 1 1.0 5.0 224 244 + 0.99336 2 3 cbr 210 ------- 1 1.0 5.0 224 244 r 0.99613 0 2 tcp 1000 ------- 0 0.0 4.0 11 241 + 0.99613 2 3 tcp 1000 ------- 0 0.0 4.0 11 241 d 0.99613 2 3 tcp 1000 ------- 0 0.0 4.0 11 241 + 0.99625 1 2 cbr 210 ------- 1 1.0 5.0 239 259 - 0.99625 1 2 cbr 210 ------- 1 1.0 5.0 239 259 r 0.99711 1 2 cbr 210 ------- 1 1.0 5.0 225 245 + 0.99711 2 3 cbr 210 ------- 1 1.0 5.0 225 245 d 0.99711 2 3 cbr 210 ------- 1 1.0 5.0 225 245 + 1 1 2 cbr 210 ------- 1 1.0 5.0 240 260 - 1 1 2 cbr 210 ------- 1 1.0 5.0 240 260 r 1.00086 1 2 cbr 210 ------- 1 1.0 5.0 226 246 + 1.00086 2 3 cbr 210 ------- 1 1.0 5.0 226 246 d 1.00086 2 3 cbr 210 ------- 1 1.0 5.0 226 246 - 1.00253 2 3 cbr 210 ------- 1 1.0 5.0 216 235 r 1.00293 2 3 tcp 1000 ------- 0 0.0 4.0 9 218 + 1.00293 3 4 tcp 1000 ------- 0 0.0 4.0 9 218 - 1.00293 3 4 tcp 1000 ------- 0 0.0 4.0 9 218 + 1.00375 1 2 cbr 210 ------- 1 1.0 5.0 241 261 - 1.00375 1 2 cbr 210 ------- 1 1.0 5.0 241 261 r 1.00461 1 2 cbr 210 ------- 1 1.0 5.0 227 247 + 1.00461 2 3 cbr 210 ------- 1 1.0 5.0 227 247 - 1.00589 2 3 cbr 210 ------- 1 1.0 5.0 217 236 r 1.00629 2 3 cbr 210 ------- 1 1.0 5.0 204 222 + 1.00629 3 5 cbr 210 ------- 1 1.0 5.0 204 222 - 1.00629 3 5 cbr 210 ------- 1 1.0 5.0 204 222 r 1.00669 3 5 cbr 210 ------- 1 1.0 5.0 193 210 + 1.0075 1 2 cbr 210 ------- 1 1.0 5.0 242 262 - 1.0075 1 2 cbr 210 ------- 1 1.0 5.0 242 262 r 1.00836 1 2 cbr 210 ------- 1 1.0 5.0 228 248 + 1.00836 2 3 cbr 210 ------- 1 1.0 5.0 228 248 - 1.00925 2 3 cbr 210 ------- 1 1.0 5.0 218 237 r 1.00965 2 3 cbr 210 ------- 1 1.0 5.0 205 223 + 1.00965 3 5 cbr 210 ------- 1 1.0 5.0 205 223 - 1.00965 3 5 cbr 210 ------- 1 1.0 5.0 205 223 r 1.01005 3 5 cbr 210 ------- 1 1.0 5.0 194 211 + 1.01125 1 2 cbr 210 ------- 1 1.0 5.0 243 263 - 1.01125 1 2 cbr 210 ------- 1 1.0 5.0 243 263 r 1.01211 1 2 cbr 210 ------- 1 1.0 5.0 229 249 + 1.01211 2 3 cbr 210 ------- 1 1.0 5.0 229 249 - 1.01261 2 3 cbr 210 ------- 1 1.0 5.0 219 238 r 1.01301 2 3 cbr 210 ------- 1 1.0 5.0 206 224 + 1.01301 3 5 cbr 210 ------- 1 1.0 5.0 206 224 - 1.01301 3 5 cbr 210 ------- 1 1.0 5.0 206 224 r 1.01341 3 5 cbr 210 ------- 1 1.0 5.0 195 212 + 1.015 1 2 cbr 210 ------- 1 1.0 5.0 244 264 - 1.015 1 2 cbr 210 ------- 1 1.0 5.0 244 264 r 1.01586 1 2 cbr 210 ------- 1 1.0 5.0 230 250 + 1.01586 2 3 cbr 210 ------- 1 1.0 5.0 230 250 r 1.01597 3 4 tcp 1000 ------- 0 0.0 4.0 8 205 + 1.01597 4 3 ack 40 ------- 0 4.0 0.0 8 265 - 1.01597 4 3 ack 40 ------- 0 4.0 0.0 8 265 - 1.01597 2 3 cbr 210 ------- 1 1.0 5.0 220 239 r 1.01637 2 3 cbr 210 ------- 1 1.0 5.0 207 225 + 1.01637 3 5 cbr 210 ------- 1 1.0 5.0 207 225 - 1.01637 3 5 cbr 210 ------- 1 1.0 5.0 207 225 r 1.01677 3 5 cbr 210 ------- 1 1.0 5.0 196 213 + 1.01875 1 2 cbr 210 ------- 1 1.0 5.0 245 266 - 1.01875 1 2 cbr 210 ------- 1 1.0 5.0 245 266 - 1.01933 2 3 cbr 210 ------- 1 1.0 5.0 221 240 r 1.01961 1 2 cbr 210 ------- 1 1.0 5.0 231 251 + 1.01961 2 3 cbr 210 ------- 1 1.0 5.0 231 251 r 1.01973 2 3 cbr 210 ------- 1 1.0 5.0 208 226 + 1.01973 3 5 cbr 210 ------- 1 1.0 5.0 208 226 - 1.01973 3 5 cbr 210 ------- 1 1.0 5.0 208 226 r 1.02013 3 5 cbr 210 ------- 1 1.0 5.0 197 214 + 1.0225 1 2 cbr 210 ------- 1 1.0 5.0 246 267 - 1.0225 1 2 cbr 210 ------- 1 1.0 5.0 246 267 - 1.02269 2 3 cbr 210 ------- 1 1.0 5.0 222 242 r 1.02309 2 3 cbr 210 ------- 1 1.0 5.0 209 227 + 1.02309 3 5 cbr 210 ------- 1 1.0 5.0 209 227 - 1.02309 3 5 cbr 210 ------- 1 1.0 5.0 209 227 r 1.02336 1 2 cbr 210 ------- 1 1.0 5.0 232 252 + 1.02336 2 3 cbr 210 ------- 1 1.0 5.0 232 252 r 1.02349 3 5 cbr 210 ------- 1 1.0 5.0 198 215 - 1.02605 2 3 cbr 210 ------- 1 1.0 5.0 223 243 + 1.02625 1 2 cbr 210 ------- 1 1.0 5.0 247 268 - 1.02625 1 2 cbr 210 ------- 1 1.0 5.0 247 268 r 1.02645 2 3 cbr 210 ------- 1 1.0 5.0 210 228 + 1.02645 3 5 cbr 210 ------- 1 1.0 5.0 210 228 - 1.02645 3 5 cbr 210 ------- 1 1.0 5.0 210 228 r 1.02685 3 5 cbr 210 ------- 1 1.0 5.0 199 216 r 1.02711 1 2 cbr 210 ------- 1 1.0 5.0 233 253 + 1.02711 2 3 cbr 210 ------- 1 1.0 5.0 233 253 - 1.02941 2 3 cbr 210 ------- 1 1.0 5.0 224 244 r 1.02981 2 3 cbr 210 ------- 1 1.0 5.0 211 230 + 1.02981 3 5 cbr 210 ------- 1 1.0 5.0 211 230 - 1.02981 3 5 cbr 210 ------- 1 1.0 5.0 211 230 + 1.03 1 2 cbr 210 ------- 1 1.0 5.0 248 269 - 1.03 1 2 cbr 210 ------- 1 1.0 5.0 248 269 r 1.03021 3 5 cbr 210 ------- 1 1.0 5.0 200 217 r 1.03086 1 2 cbr 210 ------- 1 1.0 5.0 234 254 + 1.03086 2 3 cbr 210 ------- 1 1.0 5.0 234 254 - 1.03277 2 3 cbr 210 ------- 1 1.0 5.0 227 247 r 1.03317 2 3 cbr 210 ------- 1 1.0 5.0 212 231 + 1.03317 3 5 cbr 210 ------- 1 1.0 5.0 212 231 - 1.03317 3 5 cbr 210 ------- 1 1.0 5.0 212 231 r 1.03357 3 5 cbr 210 ------- 1 1.0 5.0 201 219 + 1.03375 1 2 cbr 210 ------- 1 1.0 5.0 249 270 - 1.03375 1 2 cbr 210 ------- 1 1.0 5.0 249 270 r 1.03461 1 2 cbr 210 ------- 1 1.0 5.0 235 255 + 1.03461 2 3 cbr 210 ------- 1 1.0 5.0 235 255 - 1.03613 2 3 cbr 210 ------- 1 1.0 5.0 228 248 r 1.03653 2 3 cbr 210 ------- 1 1.0 5.0 214 233 + 1.03653 3 5 cbr 210 ------- 1 1.0 5.0 214 233 - 1.03653 3 5 cbr 210 ------- 1 1.0 5.0 214 233 r 1.03693 3 5 cbr 210 ------- 1 1.0 5.0 202 220 + 1.0375 1 2 cbr 210 ------- 1 1.0 5.0 250 271 - 1.0375 1 2 cbr 210 ------- 1 1.0 5.0 250 271 r 1.03836 1 2 cbr 210 ------- 1 1.0 5.0 236 256 + 1.03836 2 3 cbr 210 ------- 1 1.0 5.0 236 256 - 1.03949 2 3 cbr 210 ------- 1 1.0 5.0 229 249 r 1.04029 3 5 cbr 210 ------- 1 1.0 5.0 203 221 + 1.04125 1 2 cbr 210 ------- 1 1.0 5.0 251 272 - 1.04125 1 2 cbr 210 ------- 1 1.0 5.0 251 272 r 1.04211 1 2 cbr 210 ------- 1 1.0 5.0 237 257 + 1.04211 2 3 cbr 210 ------- 1 1.0 5.0 237 257 - 1.04285 2 3 cbr 210 ------- 1 1.0 5.0 230 250 + 1.045 1 2 cbr 210 ------- 1 1.0 5.0 252 273 - 1.045 1 2 cbr 210 ------- 1 1.0 5.0 252 273 r 1.04586 1 2 cbr 210 ------- 1 1.0 5.0 238 258 + 1.04586 2 3 cbr 210 ------- 1 1.0 5.0 238 258 - 1.04621 2 3 cbr 210 ------- 1 1.0 5.0 231 251 + 1.04875 1 2 cbr 210 ------- 1 1.0 5.0 253 274 - 1.04875 1 2 cbr 210 ------- 1 1.0 5.0 253 274 - 1.04957 2 3 cbr 210 ------- 1 1.0 5.0 232 252 r 1.04961 1 2 cbr 210 ------- 1 1.0 5.0 239 259 + 1.04961 2 3 cbr 210 ------- 1 1.0 5.0 239 259 + 1.0525 1 2 cbr 210 ------- 1 1.0 5.0 254 275 - 1.0525 1 2 cbr 210 ------- 1 1.0 5.0 254 275 r 1.05253 2 3 tcp 1000 ------- 0 0.0 4.0 10 229 + 1.05253 3 4 tcp 1000 ------- 0 0.0 4.0 10 229 - 1.05253 3 4 tcp 1000 ------- 0 0.0 4.0 10 229 - 1.05293 2 3 cbr 210 ------- 1 1.0 5.0 233 253 r 1.05336 1 2 cbr 210 ------- 1 1.0 5.0 240 260 + 1.05336 2 3 cbr 210 ------- 1 1.0 5.0 240 260 r 1.05589 2 3 cbr 210 ------- 1 1.0 5.0 216 235 + 1.05589 3 5 cbr 210 ------- 1 1.0 5.0 216 235 - 1.05589 3 5 cbr 210 ------- 1 1.0 5.0 216 235 + 1.05625 1 2 cbr 210 ------- 1 1.0 5.0 255 276 - 1.05625 1 2 cbr 210 ------- 1 1.0 5.0 255 276 - 1.05629 2 3 cbr 210 ------- 1 1.0 5.0 234 254 r 1.05711 1 2 cbr 210 ------- 1 1.0 5.0 241 261 + 1.05711 2 3 cbr 210 ------- 1 1.0 5.0 241 261 r 1.05925 2 3 cbr 210 ------- 1 1.0 5.0 217 236 + 1.05925 3 5 cbr 210 ------- 1 1.0 5.0 217 236 - 1.05925 3 5 cbr 210 ------- 1 1.0 5.0 217 236 r 1.05965 3 5 cbr 210 ------- 1 1.0 5.0 204 222 - 1.05965 2 3 cbr 210 ------- 1 1.0 5.0 235 255 + 1.06 1 2 cbr 210 ------- 1 1.0 5.0 256 277 - 1.06 1 2 cbr 210 ------- 1 1.0 5.0 256 277 r 1.06086 1 2 cbr 210 ------- 1 1.0 5.0 242 262 + 1.06086 2 3 cbr 210 ------- 1 1.0 5.0 242 262 r 1.06261 2 3 cbr 210 ------- 1 1.0 5.0 218 237 + 1.06261 3 5 cbr 210 ------- 1 1.0 5.0 218 237 - 1.06261 3 5 cbr 210 ------- 1 1.0 5.0 218 237 r 1.06301 3 5 cbr 210 ------- 1 1.0 5.0 205 223 - 1.06301 2 3 cbr 210 ------- 1 1.0 5.0 236 256 + 1.06375 1 2 cbr 210 ------- 1 1.0 5.0 257 278 - 1.06375 1 2 cbr 210 ------- 1 1.0 5.0 257 278 r 1.06461 1 2 cbr 210 ------- 1 1.0 5.0 243 263 + 1.06461 2 3 cbr 210 ------- 1 1.0 5.0 243 263 r 1.06597 2 3 cbr 210 ------- 1 1.0 5.0 219 238 + 1.06597 3 5 cbr 210 ------- 1 1.0 5.0 219 238 - 1.06597 3 5 cbr 210 ------- 1 1.0 5.0 219 238 r 1.06637 3 5 cbr 210 ------- 1 1.0 5.0 206 224 - 1.06637 2 3 cbr 210 ------- 1 1.0 5.0 237 257 r 1.06661 4 3 ack 40 ------- 0 4.0 0.0 8 265 + 1.06661 3 2 ack 40 ------- 0 4.0 0.0 8 265 - 1.06661 3 2 ack 40 ------- 0 4.0 0.0 8 265 + 1.0675 1 2 cbr 210 ------- 1 1.0 5.0 258 279 - 1.0675 1 2 cbr 210 ------- 1 1.0 5.0 258 279 r 1.06836 1 2 cbr 210 ------- 1 1.0 5.0 244 264 + 1.06836 2 3 cbr 210 ------- 1 1.0 5.0 244 264 r 1.06893 3 4 tcp 1000 ------- 0 0.0 4.0 9 218 + 1.06893 4 3 ack 40 ------- 0 4.0 0.0 9 280 - 1.06893 4 3 ack 40 ------- 0 4.0 0.0 9 280 r 1.06933 2 3 cbr 210 ------- 1 1.0 5.0 220 239 + 1.06933 3 5 cbr 210 ------- 1 1.0 5.0 220 239 - 1.06933 3 5 cbr 210 ------- 1 1.0 5.0 220 239 r 1.06973 3 5 cbr 210 ------- 1 1.0 5.0 207 225 - 1.06973 2 3 cbr 210 ------- 1 1.0 5.0 238 258 + 1.07125 1 2 cbr 210 ------- 1 1.0 5.0 259 281 - 1.07125 1 2 cbr 210 ------- 1 1.0 5.0 259 281 r 1.07211 1 2 cbr 210 ------- 1 1.0 5.0 245 266 + 1.07211 2 3 cbr 210 ------- 1 1.0 5.0 245 266 r 1.07269 2 3 cbr 210 ------- 1 1.0 5.0 221 240 + 1.07269 3 5 cbr 210 ------- 1 1.0 5.0 221 240 - 1.07269 3 5 cbr 210 ------- 1 1.0 5.0 221 240 r 1.07309 3 5 cbr 210 ------- 1 1.0 5.0 208 226 - 1.07309 2 3 cbr 210 ------- 1 1.0 5.0 239 259 + 1.075 1 2 cbr 210 ------- 1 1.0 5.0 260 282 - 1.075 1 2 cbr 210 ------- 1 1.0 5.0 260 282 r 1.07586 1 2 cbr 210 ------- 1 1.0 5.0 246 267 + 1.07586 2 3 cbr 210 ------- 1 1.0 5.0 246 267 r 1.07605 2 3 cbr 210 ------- 1 1.0 5.0 222 242 + 1.07605 3 5 cbr 210 ------- 1 1.0 5.0 222 242 - 1.07605 3 5 cbr 210 ------- 1 1.0 5.0 222 242 r 1.07645 3 5 cbr 210 ------- 1 1.0 5.0 209 227 - 1.07645 2 3 cbr 210 ------- 1 1.0 5.0 240 260 + 1.07875 1 2 cbr 210 ------- 1 1.0 5.0 261 283 - 1.07875 1 2 cbr 210 ------- 1 1.0 5.0 261 283 r 1.07941 2 3 cbr 210 ------- 1 1.0 5.0 223 243 + 1.07941 3 5 cbr 210 ------- 1 1.0 5.0 223 243 - 1.07941 3 5 cbr 210 ------- 1 1.0 5.0 223 243 r 1.07961 1 2 cbr 210 ------- 1 1.0 5.0 247 268 + 1.07961 2 3 cbr 210 ------- 1 1.0 5.0 247 268 r 1.07981 3 5 cbr 210 ------- 1 1.0 5.0 210 228 - 1.07981 2 3 cbr 210 ------- 1 1.0 5.0 241 261 + 1.0825 1 2 cbr 210 ------- 1 1.0 5.0 262 284 - 1.0825 1 2 cbr 210 ------- 1 1.0 5.0 262 284 r 1.08277 2 3 cbr 210 ------- 1 1.0 5.0 224 244 + 1.08277 3 5 cbr 210 ------- 1 1.0 5.0 224 244 - 1.08277 3 5 cbr 210 ------- 1 1.0 5.0 224 244 r 1.08317 3 5 cbr 210 ------- 1 1.0 5.0 211 230 - 1.08317 2 3 cbr 210 ------- 1 1.0 5.0 242 262 r 1.08336 1 2 cbr 210 ------- 1 1.0 5.0 248 269 + 1.08336 2 3 cbr 210 ------- 1 1.0 5.0 248 269 r 1.08613 2 3 cbr 210 ------- 1 1.0 5.0 227 247 + 1.08613 3 5 cbr 210 ------- 1 1.0 5.0 227 247 - 1.08613 3 5 cbr 210 ------- 1 1.0 5.0 227 247 + 1.08625 1 2 cbr 210 ------- 1 1.0 5.0 263 285 - 1.08625 1 2 cbr 210 ------- 1 1.0 5.0 263 285 r 1.08653 3 5 cbr 210 ------- 1 1.0 5.0 212 231 - 1.08653 2 3 cbr 210 ------- 1 1.0 5.0 243 263 r 1.08711 1 2 cbr 210 ------- 1 1.0 5.0 249 270 + 1.08711 2 3 cbr 210 ------- 1 1.0 5.0 249 270 r 1.08949 2 3 cbr 210 ------- 1 1.0 5.0 228 248 + 1.08949 3 5 cbr 210 ------- 1 1.0 5.0 228 248 - 1.08949 3 5 cbr 210 ------- 1 1.0 5.0 228 248 r 1.08989 3 5 cbr 210 ------- 1 1.0 5.0 214 233 - 1.08989 2 3 cbr 210 ------- 1 1.0 5.0 244 264 + 1.09 1 2 cbr 210 ------- 1 1.0 5.0 264 286 - 1.09 1 2 cbr 210 ------- 1 1.0 5.0 264 286 r 1.09086 1 2 cbr 210 ------- 1 1.0 5.0 250 271 + 1.09086 2 3 cbr 210 ------- 1 1.0 5.0 250 271 r 1.09285 2 3 cbr 210 ------- 1 1.0 5.0 229 249 + 1.09285 3 5 cbr 210 ------- 1 1.0 5.0 229 249 - 1.09285 3 5 cbr 210 ------- 1 1.0 5.0 229 249 - 1.09325 2 3 cbr 210 ------- 1 1.0 5.0 245 266 + 1.09375 1 2 cbr 210 ------- 1 1.0 5.0 265 287 - 1.09375 1 2 cbr 210 ------- 1 1.0 5.0 265 287 r 1.09461 1 2 cbr 210 ------- 1 1.0 5.0 251 272 + 1.09461 2 3 cbr 210 ------- 1 1.0 5.0 251 272 r 1.09621 2 3 cbr 210 ------- 1 1.0 5.0 230 250 + 1.09621 3 5 cbr 210 ------- 1 1.0 5.0 230 250 - 1.09621 3 5 cbr 210 ------- 1 1.0 5.0 230 250 - 1.09661 2 3 cbr 210 ------- 1 1.0 5.0 246 267 + 1.0975 1 2 cbr 210 ------- 1 1.0 5.0 266 288 - 1.0975 1 2 cbr 210 ------- 1 1.0 5.0 266 288 r 1.09836 1 2 cbr 210 ------- 1 1.0 5.0 252 273 + 1.09836 2 3 cbr 210 ------- 1 1.0 5.0 252 273 r 1.09957 2 3 cbr 210 ------- 1 1.0 5.0 231 251 + 1.09957 3 5 cbr 210 ------- 1 1.0 5.0 231 251 - 1.09957 3 5 cbr 210 ------- 1 1.0 5.0 231 251 - 1.09997 2 3 cbr 210 ------- 1 1.0 5.0 247 268 + 1.10125 1 2 cbr 210 ------- 1 1.0 5.0 267 289 - 1.10125 1 2 cbr 210 ------- 1 1.0 5.0 267 289 r 1.10211 1 2 cbr 210 ------- 1 1.0 5.0 253 274 + 1.10211 2 3 cbr 210 ------- 1 1.0 5.0 253 274 r 1.10293 2 3 cbr 210 ------- 1 1.0 5.0 232 252 + 1.10293 3 5 cbr 210 ------- 1 1.0 5.0 232 252 - 1.10293 3 5 cbr 210 ------- 1 1.0 5.0 232 252 - 1.10333 2 3 cbr 210 ------- 1 1.0 5.0 248 269 + 1.105 1 2 cbr 210 ------- 1 1.0 5.0 268 290 - 1.105 1 2 cbr 210 ------- 1 1.0 5.0 268 290 r 1.10586 1 2 cbr 210 ------- 1 1.0 5.0 254 275 + 1.10586 2 3 cbr 210 ------- 1 1.0 5.0 254 275 r 1.10629 2 3 cbr 210 ------- 1 1.0 5.0 233 253 + 1.10629 3 5 cbr 210 ------- 1 1.0 5.0 233 253 - 1.10629 3 5 cbr 210 ------- 1 1.0 5.0 233 253 - 1.10669 2 3 cbr 210 ------- 1 1.0 5.0 249 270 + 1.10875 1 2 cbr 210 ------- 1 1.0 5.0 269 291 - 1.10875 1 2 cbr 210 ------- 1 1.0 5.0 269 291 r 1.10925 3 5 cbr 210 ------- 1 1.0 5.0 216 235 r 1.10961 1 2 cbr 210 ------- 1 1.0 5.0 255 276 + 1.10961 2 3 cbr 210 ------- 1 1.0 5.0 255 276 r 1.10965 2 3 cbr 210 ------- 1 1.0 5.0 234 254 + 1.10965 3 5 cbr 210 ------- 1 1.0 5.0 234 254 - 1.10965 3 5 cbr 210 ------- 1 1.0 5.0 234 254 - 1.11005 2 3 cbr 210 ------- 1 1.0 5.0 250 271 + 1.1125 1 2 cbr 210 ------- 1 1.0 5.0 270 292 - 1.1125 1 2 cbr 210 ------- 1 1.0 5.0 270 292 r 1.11261 3 5 cbr 210 ------- 1 1.0 5.0 217 236 r 1.11301 2 3 cbr 210 ------- 1 1.0 5.0 235 255 + 1.11301 3 5 cbr 210 ------- 1 1.0 5.0 235 255 - 1.11301 3 5 cbr 210 ------- 1 1.0 5.0 235 255 r 1.11336 1 2 cbr 210 ------- 1 1.0 5.0 256 277 + 1.11336 2 3 cbr 210 ------- 1 1.0 5.0 256 277 - 1.11341 2 3 cbr 210 ------- 1 1.0 5.0 251 272 r 1.11597 3 5 cbr 210 ------- 1 1.0 5.0 218 237 + 1.11625 1 2 cbr 210 ------- 1 1.0 5.0 271 293 - 1.11625 1 2 cbr 210 ------- 1 1.0 5.0 271 293 r 1.11637 2 3 cbr 210 ------- 1 1.0 5.0 236 256 + 1.11637 3 5 cbr 210 ------- 1 1.0 5.0 236 256 - 1.11637 3 5 cbr 210 ------- 1 1.0 5.0 236 256 - 1.11677 2 3 cbr 210 ------- 1 1.0 5.0 252 273 r 1.11711 1 2 cbr 210 ------- 1 1.0 5.0 257 278 + 1.11711 2 3 cbr 210 ------- 1 1.0 5.0 257 278 r 1.11725 3 2 ack 40 ------- 0 4.0 0.0 8 265 + 1.11725 2 0 ack 40 ------- 0 4.0 0.0 8 265 - 1.11725 2 0 ack 40 ------- 0 4.0 0.0 8 265 r 1.11853 3 4 tcp 1000 ------- 0 0.0 4.0 10 229 + 1.11853 4 3 ack 40 ------- 0 4.0 0.0 10 294 - 1.11853 4 3 ack 40 ------- 0 4.0 0.0 10 294 r 1.11933 3 5 cbr 210 ------- 1 1.0 5.0 219 238 r 1.11957 4 3 ack 40 ------- 0 4.0 0.0 9 280 + 1.11957 3 2 ack 40 ------- 0 4.0 0.0 9 280 - 1.11957 3 2 ack 40 ------- 0 4.0 0.0 9 280 r 1.11973 2 3 cbr 210 ------- 1 1.0 5.0 237 257 + 1.11973 3 5 cbr 210 ------- 1 1.0 5.0 237 257 - 1.11973 3 5 cbr 210 ------- 1 1.0 5.0 237 257 + 1.12 1 2 cbr 210 ------- 1 1.0 5.0 272 295 - 1.12 1 2 cbr 210 ------- 1 1.0 5.0 272 295 - 1.12013 2 3 cbr 210 ------- 1 1.0 5.0 253 274 r 1.12086 1 2 cbr 210 ------- 1 1.0 5.0 258 279 + 1.12086 2 3 cbr 210 ------- 1 1.0 5.0 258 279 r 1.12269 3 5 cbr 210 ------- 1 1.0 5.0 220 239 r 1.12309 2 3 cbr 210 ------- 1 1.0 5.0 238 258 + 1.12309 3 5 cbr 210 ------- 1 1.0 5.0 238 258 - 1.12309 3 5 cbr 210 ------- 1 1.0 5.0 238 258 - 1.12349 2 3 cbr 210 ------- 1 1.0 5.0 254 275 + 1.12375 1 2 cbr 210 ------- 1 1.0 5.0 273 296 - 1.12375 1 2 cbr 210 ------- 1 1.0 5.0 273 296 r 1.12461 1 2 cbr 210 ------- 1 1.0 5.0 259 281 + 1.12461 2 3 cbr 210 ------- 1 1.0 5.0 259 281 r 1.12605 3 5 cbr 210 ------- 1 1.0 5.0 221 240 r 1.12645 2 3 cbr 210 ------- 1 1.0 5.0 239 259 + 1.12645 3 5 cbr 210 ------- 1 1.0 5.0 239 259 - 1.12645 3 5 cbr 210 ------- 1 1.0 5.0 239 259 - 1.12685 2 3 cbr 210 ------- 1 1.0 5.0 255 276 + 1.1275 1 2 cbr 210 ------- 1 1.0 5.0 274 297 - 1.1275 1 2 cbr 210 ------- 1 1.0 5.0 274 297 r 1.12836 1 2 cbr 210 ------- 1 1.0 5.0 260 282 + 1.12836 2 3 cbr 210 ------- 1 1.0 5.0 260 282 r 1.12941 3 5 cbr 210 ------- 1 1.0 5.0 222 242 r 1.12981 2 3 cbr 210 ------- 1 1.0 5.0 240 260 + 1.12981 3 5 cbr 210 ------- 1 1.0 5.0 240 260 - 1.12981 3 5 cbr 210 ------- 1 1.0 5.0 240 260 - 1.13021 2 3 cbr 210 ------- 1 1.0 5.0 256 277 + 1.13125 1 2 cbr 210 ------- 1 1.0 5.0 275 298 - 1.13125 1 2 cbr 210 ------- 1 1.0 5.0 275 298 r 1.13211 1 2 cbr 210 ------- 1 1.0 5.0 261 283 + 1.13211 2 3 cbr 210 ------- 1 1.0 5.0 261 283 r 1.13277 3 5 cbr 210 ------- 1 1.0 5.0 223 243 r 1.13317 2 3 cbr 210 ------- 1 1.0 5.0 241 261 + 1.13317 3 5 cbr 210 ------- 1 1.0 5.0 241 261 - 1.13317 3 5 cbr 210 ------- 1 1.0 5.0 241 261 - 1.13357 2 3 cbr 210 ------- 1 1.0 5.0 257 278 + 1.135 1 2 cbr 210 ------- 1 1.0 5.0 276 299 - 1.135 1 2 cbr 210 ------- 1 1.0 5.0 276 299 r 1.13586 1 2 cbr 210 ------- 1 1.0 5.0 262 284 + 1.13586 2 3 cbr 210 ------- 1 1.0 5.0 262 284 r 1.13613 3 5 cbr 210 ------- 1 1.0 5.0 224 244 r 1.13653 2 3 cbr 210 ------- 1 1.0 5.0 242 262 + 1.13653 3 5 cbr 210 ------- 1 1.0 5.0 242 262 - 1.13653 3 5 cbr 210 ------- 1 1.0 5.0 242 262 - 1.13693 2 3 cbr 210 ------- 1 1.0 5.0 258 279 + 1.13875 1 2 cbr 210 ------- 1 1.0 5.0 277 300 - 1.13875 1 2 cbr 210 ------- 1 1.0 5.0 277 300 r 1.13949 3 5 cbr 210 ------- 1 1.0 5.0 227 247 r 1.13961 1 2 cbr 210 ------- 1 1.0 5.0 263 285 + 1.13961 2 3 cbr 210 ------- 1 1.0 5.0 263 285 r 1.13989 2 3 cbr 210 ------- 1 1.0 5.0 243 263 + 1.13989 3 5 cbr 210 ------- 1 1.0 5.0 243 263 - 1.13989 3 5 cbr 210 ------- 1 1.0 5.0 243 263 - 1.14029 2 3 cbr 210 ------- 1 1.0 5.0 259 281 + 1.1425 1 2 cbr 210 ------- 1 1.0 5.0 278 301 - 1.1425 1 2 cbr 210 ------- 1 1.0 5.0 278 301 r 1.14285 3 5 cbr 210 ------- 1 1.0 5.0 228 248 r 1.14325 2 3 cbr 210 ------- 1 1.0 5.0 244 264 + 1.14325 3 5 cbr 210 ------- 1 1.0 5.0 244 264 - 1.14325 3 5 cbr 210 ------- 1 1.0 5.0 244 264 r 1.14336 1 2 cbr 210 ------- 1 1.0 5.0 264 286 + 1.14336 2 3 cbr 210 ------- 1 1.0 5.0 264 286 - 1.14365 2 3 cbr 210 ------- 1 1.0 5.0 260 282 r 1.14621 3 5 cbr 210 ------- 1 1.0 5.0 229 249 + 1.14625 1 2 cbr 210 ------- 1 1.0 5.0 279 302 - 1.14625 1 2 cbr 210 ------- 1 1.0 5.0 279 302 r 1.14661 2 3 cbr 210 ------- 1 1.0 5.0 245 266 + 1.14661 3 5 cbr 210 ------- 1 1.0 5.0 245 266 - 1.14661 3 5 cbr 210 ------- 1 1.0 5.0 245 266 - 1.14701 2 3 cbr 210 ------- 1 1.0 5.0 261 283 r 1.14711 1 2 cbr 210 ------- 1 1.0 5.0 265 287 + 1.14711 2 3 cbr 210 ------- 1 1.0 5.0 265 287 r 1.14957 3 5 cbr 210 ------- 1 1.0 5.0 230 250 r 1.14997 2 3 cbr 210 ------- 1 1.0 5.0 246 267 + 1.14997 3 5 cbr 210 ------- 1 1.0 5.0 246 267 - 1.14997 3 5 cbr 210 ------- 1 1.0 5.0 246 267 + 1.15 1 2 cbr 210 ------- 1 1.0 5.0 280 303 - 1.15 1 2 cbr 210 ------- 1 1.0 5.0 280 303 - 1.15037 2 3 cbr 210 ------- 1 1.0 5.0 262 284 r 1.15086 1 2 cbr 210 ------- 1 1.0 5.0 266 288 + 1.15086 2 3 cbr 210 ------- 1 1.0 5.0 266 288 r 1.15293 3 5 cbr 210 ------- 1 1.0 5.0 231 251 r 1.15333 2 3 cbr 210 ------- 1 1.0 5.0 247 268 + 1.15333 3 5 cbr 210 ------- 1 1.0 5.0 247 268 - 1.15333 3 5 cbr 210 ------- 1 1.0 5.0 247 268 - 1.15373 2 3 cbr 210 ------- 1 1.0 5.0 263 285 + 1.15375 1 2 cbr 210 ------- 1 1.0 5.0 281 304 - 1.15375 1 2 cbr 210 ------- 1 1.0 5.0 281 304 r 1.15461 1 2 cbr 210 ------- 1 1.0 5.0 267 289 + 1.15461 2 3 cbr 210 ------- 1 1.0 5.0 267 289 r 1.15629 3 5 cbr 210 ------- 1 1.0 5.0 232 252 r 1.15669 2 3 cbr 210 ------- 1 1.0 5.0 248 269 + 1.15669 3 5 cbr 210 ------- 1 1.0 5.0 248 269 - 1.15669 3 5 cbr 210 ------- 1 1.0 5.0 248 269 - 1.15709 2 3 cbr 210 ------- 1 1.0 5.0 264 286 + 1.1575 1 2 cbr 210 ------- 1 1.0 5.0 282 305 - 1.1575 1 2 cbr 210 ------- 1 1.0 5.0 282 305 r 1.15836 1 2 cbr 210 ------- 1 1.0 5.0 268 290 + 1.15836 2 3 cbr 210 ------- 1 1.0 5.0 268 290 r 1.15965 3 5 cbr 210 ------- 1 1.0 5.0 233 253 r 1.16005 2 3 cbr 210 ------- 1 1.0 5.0 249 270 + 1.16005 3 5 cbr 210 ------- 1 1.0 5.0 249 270 - 1.16005 3 5 cbr 210 ------- 1 1.0 5.0 249 270 - 1.16045 2 3 cbr 210 ------- 1 1.0 5.0 265 287 + 1.16125 1 2 cbr 210 ------- 1 1.0 5.0 283 306 - 1.16125 1 2 cbr 210 ------- 1 1.0 5.0 283 306 r 1.16211 1 2 cbr 210 ------- 1 1.0 5.0 269 291 + 1.16211 2 3 cbr 210 ------- 1 1.0 5.0 269 291 r 1.16301 3 5 cbr 210 ------- 1 1.0 5.0 234 254 r 1.16341 2 3 cbr 210 ------- 1 1.0 5.0 250 271 + 1.16341 3 5 cbr 210 ------- 1 1.0 5.0 250 271 - 1.16341 3 5 cbr 210 ------- 1 1.0 5.0 250 271 - 1.16381 2 3 cbr 210 ------- 1 1.0 5.0 266 288 + 1.165 1 2 cbr 210 ------- 1 1.0 5.0 284 307 - 1.165 1 2 cbr 210 ------- 1 1.0 5.0 284 307 r 1.16586 1 2 cbr 210 ------- 1 1.0 5.0 270 292 + 1.16586 2 3 cbr 210 ------- 1 1.0 5.0 270 292 r 1.16637 3 5 cbr 210 ------- 1 1.0 5.0 235 255 r 1.16677 2 3 cbr 210 ------- 1 1.0 5.0 251 272 + 1.16677 3 5 cbr 210 ------- 1 1.0 5.0 251 272 - 1.16677 3 5 cbr 210 ------- 1 1.0 5.0 251 272 - 1.16717 2 3 cbr 210 ------- 1 1.0 5.0 267 289 r 1.16789 2 0 ack 40 ------- 0 4.0 0.0 8 265 + 1.16789 0 2 tcp 1000 ------- 0 0.0 4.0 12 308 - 1.16789 0 2 tcp 1000 ------- 0 0.0 4.0 12 308 + 1.16875 1 2 cbr 210 ------- 1 1.0 5.0 285 309 - 1.16875 1 2 cbr 210 ------- 1 1.0 5.0 285 309 r 1.16917 4 3 ack 40 ------- 0 4.0 0.0 10 294 + 1.16917 3 2 ack 40 ------- 0 4.0 0.0 10 294 - 1.16917 3 2 ack 40 ------- 0 4.0 0.0 10 294 r 1.16961 1 2 cbr 210 ------- 1 1.0 5.0 271 293 + 1.16961 2 3 cbr 210 ------- 1 1.0 5.0 271 293 r 1.16973 3 5 cbr 210 ------- 1 1.0 5.0 236 256 r 1.17013 2 3 cbr 210 ------- 1 1.0 5.0 252 273 + 1.17013 3 5 cbr 210 ------- 1 1.0 5.0 252 273 - 1.17013 3 5 cbr 210 ------- 1 1.0 5.0 252 273 r 1.17021 3 2 ack 40 ------- 0 4.0 0.0 9 280 + 1.17021 2 0 ack 40 ------- 0 4.0 0.0 9 280 - 1.17021 2 0 ack 40 ------- 0 4.0 0.0 9 280 - 1.17053 2 3 cbr 210 ------- 1 1.0 5.0 268 290 + 1.1725 1 2 cbr 210 ------- 1 1.0 5.0 286 310 - 1.1725 1 2 cbr 210 ------- 1 1.0 5.0 286 310 r 1.17309 3 5 cbr 210 ------- 1 1.0 5.0 237 257 r 1.17336 1 2 cbr 210 ------- 1 1.0 5.0 272 295 + 1.17336 2 3 cbr 210 ------- 1 1.0 5.0 272 295 r 1.17349 2 3 cbr 210 ------- 1 1.0 5.0 253 274 + 1.17349 3 5 cbr 210 ------- 1 1.0 5.0 253 274 - 1.17349 3 5 cbr 210 ------- 1 1.0 5.0 253 274 - 1.17389 2 3 cbr 210 ------- 1 1.0 5.0 269 291 + 1.17625 1 2 cbr 210 ------- 1 1.0 5.0 287 311 - 1.17625 1 2 cbr 210 ------- 1 1.0 5.0 287 311 r 1.17645 3 5 cbr 210 ------- 1 1.0 5.0 238 258 r 1.17685 2 3 cbr 210 ------- 1 1.0 5.0 254 275 + 1.17685 3 5 cbr 210 ------- 1 1.0 5.0 254 275 - 1.17685 3 5 cbr 210 ------- 1 1.0 5.0 254 275 r 1.17711 1 2 cbr 210 ------- 1 1.0 5.0 273 296 + 1.17711 2 3 cbr 210 ------- 1 1.0 5.0 273 296 - 1.17725 2 3 cbr 210 ------- 1 1.0 5.0 270 292 r 1.17981 3 5 cbr 210 ------- 1 1.0 5.0 239 259 + 1.18 1 2 cbr 210 ------- 1 1.0 5.0 288 312 - 1.18 1 2 cbr 210 ------- 1 1.0 5.0 288 312 r 1.18021 2 3 cbr 210 ------- 1 1.0 5.0 255 276 + 1.18021 3 5 cbr 210 ------- 1 1.0 5.0 255 276 - 1.18021 3 5 cbr 210 ------- 1 1.0 5.0 255 276 - 1.18061 2 3 cbr 210 ------- 1 1.0 5.0 271 293 r 1.18086 1 2 cbr 210 ------- 1 1.0 5.0 274 297 + 1.18086 2 3 cbr 210 ------- 1 1.0 5.0 274 297 r 1.18317 3 5 cbr 210 ------- 1 1.0 5.0 240 260 r 1.18357 2 3 cbr 210 ------- 1 1.0 5.0 256 277 + 1.18357 3 5 cbr 210 ------- 1 1.0 5.0 256 277 - 1.18357 3 5 cbr 210 ------- 1 1.0 5.0 256 277 + 1.18375 1 2 cbr 210 ------- 1 1.0 5.0 289 313 - 1.18375 1 2 cbr 210 ------- 1 1.0 5.0 289 313 - 1.18397 2 3 cbr 210 ------- 1 1.0 5.0 272 295 r 1.18461 1 2 cbr 210 ------- 1 1.0 5.0 275 298 + 1.18461 2 3 cbr 210 ------- 1 1.0 5.0 275 298 r 1.18653 3 5 cbr 210 ------- 1 1.0 5.0 241 261 r 1.18693 2 3 cbr 210 ------- 1 1.0 5.0 257 278 + 1.18693 3 5 cbr 210 ------- 1 1.0 5.0 257 278 - 1.18693 3 5 cbr 210 ------- 1 1.0 5.0 257 278 - 1.18733 2 3 cbr 210 ------- 1 1.0 5.0 273 296 + 1.1875 1 2 cbr 210 ------- 1 1.0 5.0 290 314 - 1.1875 1 2 cbr 210 ------- 1 1.0 5.0 290 314 r 1.18836 1 2 cbr 210 ------- 1 1.0 5.0 276 299 + 1.18836 2 3 cbr 210 ------- 1 1.0 5.0 276 299 r 1.18989 3 5 cbr 210 ------- 1 1.0 5.0 242 262 r 1.19029 2 3 cbr 210 ------- 1 1.0 5.0 258 279 + 1.19029 3 5 cbr 210 ------- 1 1.0 5.0 258 279 - 1.19029 3 5 cbr 210 ------- 1 1.0 5.0 258 279 - 1.19069 2 3 cbr 210 ------- 1 1.0 5.0 274 297 + 1.19125 1 2 cbr 210 ------- 1 1.0 5.0 291 315 - 1.19125 1 2 cbr 210 ------- 1 1.0 5.0 291 315 r 1.19211 1 2 cbr 210 ------- 1 1.0 5.0 277 300 + 1.19211 2 3 cbr 210 ------- 1 1.0 5.0 277 300 r 1.19325 3 5 cbr 210 ------- 1 1.0 5.0 243 263 r 1.19365 2 3 cbr 210 ------- 1 1.0 5.0 259 281 + 1.19365 3 5 cbr 210 ------- 1 1.0 5.0 259 281 - 1.19365 3 5 cbr 210 ------- 1 1.0 5.0 259 281 - 1.19405 2 3 cbr 210 ------- 1 1.0 5.0 275 298 + 1.195 1 2 cbr 210 ------- 1 1.0 5.0 292 316 - 1.195 1 2 cbr 210 ------- 1 1.0 5.0 292 316 r 1.19586 1 2 cbr 210 ------- 1 1.0 5.0 278 301 + 1.19586 2 3 cbr 210 ------- 1 1.0 5.0 278 301 r 1.19661 3 5 cbr 210 ------- 1 1.0 5.0 244 264 r 1.19701 2 3 cbr 210 ------- 1 1.0 5.0 260 282 + 1.19701 3 5 cbr 210 ------- 1 1.0 5.0 260 282 - 1.19701 3 5 cbr 210 ------- 1 1.0 5.0 260 282 - 1.19741 2 3 cbr 210 ------- 1 1.0 5.0 276 299 + 1.19875 1 2 cbr 210 ------- 1 1.0 5.0 293 317 - 1.19875 1 2 cbr 210 ------- 1 1.0 5.0 293 317 r 1.19961 1 2 cbr 210 ------- 1 1.0 5.0 279 302 + 1.19961 2 3 cbr 210 ------- 1 1.0 5.0 279 302 r 1.19997 3 5 cbr 210 ------- 1 1.0 5.0 245 266 r 1.20037 2 3 cbr 210 ------- 1 1.0 5.0 261 283 + 1.20037 3 5 cbr 210 ------- 1 1.0 5.0 261 283 - 1.20037 3 5 cbr 210 ------- 1 1.0 5.0 261 283 - 1.20077 2 3 cbr 210 ------- 1 1.0 5.0 277 300 + 1.2025 1 2 cbr 210 ------- 1 1.0 5.0 294 318 - 1.2025 1 2 cbr 210 ------- 1 1.0 5.0 294 318 r 1.20333 3 5 cbr 210 ------- 1 1.0 5.0 246 267 r 1.20336 1 2 cbr 210 ------- 1 1.0 5.0 280 303 + 1.20336 2 3 cbr 210 ------- 1 1.0 5.0 280 303 r 1.20373 2 3 cbr 210 ------- 1 1.0 5.0 262 284 + 1.20373 3 5 cbr 210 ------- 1 1.0 5.0 262 284 - 1.20373 3 5 cbr 210 ------- 1 1.0 5.0 262 284 - 1.20413 2 3 cbr 210 ------- 1 1.0 5.0 278 301 + 1.20625 1 2 cbr 210 ------- 1 1.0 5.0 295 319 - 1.20625 1 2 cbr 210 ------- 1 1.0 5.0 295 319 r 1.20669 3 5 cbr 210 ------- 1 1.0 5.0 247 268 r 1.20709 2 3 cbr 210 ------- 1 1.0 5.0 263 285 + 1.20709 3 5 cbr 210 ------- 1 1.0 5.0 263 285 - 1.20709 3 5 cbr 210 ------- 1 1.0 5.0 263 285 r 1.20711 1 2 cbr 210 ------- 1 1.0 5.0 281 304 + 1.20711 2 3 cbr 210 ------- 1 1.0 5.0 281 304 - 1.20749 2 3 cbr 210 ------- 1 1.0 5.0 279 302 + 1.21 1 2 cbr 210 ------- 1 1.0 5.0 296 320 - 1.21 1 2 cbr 210 ------- 1 1.0 5.0 296 320 r 1.21005 3 5 cbr 210 ------- 1 1.0 5.0 248 269 r 1.21045 2 3 cbr 210 ------- 1 1.0 5.0 264 286 + 1.21045 3 5 cbr 210 ------- 1 1.0 5.0 264 286 - 1.21045 3 5 cbr 210 ------- 1 1.0 5.0 264 286 - 1.21085 2 3 cbr 210 ------- 1 1.0 5.0 280 303 r 1.21086 1 2 cbr 210 ------- 1 1.0 5.0 282 305 + 1.21086 2 3 cbr 210 ------- 1 1.0 5.0 282 305 r 1.21341 3 5 cbr 210 ------- 1 1.0 5.0 249 270 + 1.21375 1 2 cbr 210 ------- 1 1.0 5.0 297 321 - 1.21375 1 2 cbr 210 ------- 1 1.0 5.0 297 321 r 1.21381 2 3 cbr 210 ------- 1 1.0 5.0 265 287 + 1.21381 3 5 cbr 210 ------- 1 1.0 5.0 265 287 - 1.21381 3 5 cbr 210 ------- 1 1.0 5.0 265 287 - 1.21421 2 3 cbr 210 ------- 1 1.0 5.0 281 304 r 1.21461 1 2 cbr 210 ------- 1 1.0 5.0 283 306 + 1.21461 2 3 cbr 210 ------- 1 1.0 5.0 283 306 r 1.21677 3 5 cbr 210 ------- 1 1.0 5.0 250 271 r 1.21717 2 3 cbr 210 ------- 1 1.0 5.0 266 288 + 1.21717 3 5 cbr 210 ------- 1 1.0 5.0 266 288 - 1.21717 3 5 cbr 210 ------- 1 1.0 5.0 266 288 + 1.2175 1 2 cbr 210 ------- 1 1.0 5.0 298 322 - 1.2175 1 2 cbr 210 ------- 1 1.0 5.0 298 322 - 1.21757 2 3 cbr 210 ------- 1 1.0 5.0 282 305 r 1.21836 1 2 cbr 210 ------- 1 1.0 5.0 284 307 + 1.21836 2 3 cbr 210 ------- 1 1.0 5.0 284 307 r 1.21981 3 2 ack 40 ------- 0 4.0 0.0 10 294 + 1.21981 2 0 ack 40 ------- 0 4.0 0.0 10 294 - 1.21981 2 0 ack 40 ------- 0 4.0 0.0 10 294 r 1.22013 3 5 cbr 210 ------- 1 1.0 5.0 251 272 r 1.22053 2 3 cbr 210 ------- 1 1.0 5.0 267 289 + 1.22053 3 5 cbr 210 ------- 1 1.0 5.0 267 289 - 1.22053 3 5 cbr 210 ------- 1 1.0 5.0 267 289 r 1.22085 2 0 ack 40 ------- 0 4.0 0.0 9 280 + 1.22085 0 2 tcp 1000 ------- 0 0.0 4.0 13 323 - 1.22085 0 2 tcp 1000 ------- 0 0.0 4.0 13 323 - 1.22093 2 3 cbr 210 ------- 1 1.0 5.0 283 306 + 1.22125 1 2 cbr 210 ------- 1 1.0 5.0 299 324 - 1.22125 1 2 cbr 210 ------- 1 1.0 5.0 299 324 r 1.22211 1 2 cbr 210 ------- 1 1.0 5.0 285 309 + 1.22211 2 3 cbr 210 ------- 1 1.0 5.0 285 309 r 1.22349 3 5 cbr 210 ------- 1 1.0 5.0 252 273 r 1.22389 2 3 cbr 210 ------- 1 1.0 5.0 268 290 + 1.22389 3 5 cbr 210 ------- 1 1.0 5.0 268 290 - 1.22389 3 5 cbr 210 ------- 1 1.0 5.0 268 290 - 1.22429 2 3 cbr 210 ------- 1 1.0 5.0 284 307 + 1.225 1 2 cbr 210 ------- 1 1.0 5.0 300 325 - 1.225 1 2 cbr 210 ------- 1 1.0 5.0 300 325 r 1.22586 1 2 cbr 210 ------- 1 1.0 5.0 286 310 + 1.22586 2 3 cbr 210 ------- 1 1.0 5.0 286 310 r 1.22685 3 5 cbr 210 ------- 1 1.0 5.0 253 274 r 1.22725 2 3 cbr 210 ------- 1 1.0 5.0 269 291 + 1.22725 3 5 cbr 210 ------- 1 1.0 5.0 269 291 - 1.22725 3 5 cbr 210 ------- 1 1.0 5.0 269 291 - 1.22765 2 3 cbr 210 ------- 1 1.0 5.0 285 309 + 1.22875 1 2 cbr 210 ------- 1 1.0 5.0 301 326 - 1.22875 1 2 cbr 210 ------- 1 1.0 5.0 301 326 r 1.22961 1 2 cbr 210 ------- 1 1.0 5.0 287 311 + 1.22961 2 3 cbr 210 ------- 1 1.0 5.0 287 311 r 1.23021 3 5 cbr 210 ------- 1 1.0 5.0 254 275 r 1.23061 2 3 cbr 210 ------- 1 1.0 5.0 270 292 + 1.23061 3 5 cbr 210 ------- 1 1.0 5.0 270 292 - 1.23061 3 5 cbr 210 ------- 1 1.0 5.0 270 292 - 1.23101 2 3 cbr 210 ------- 1 1.0 5.0 286 310 + 1.2325 1 2 cbr 210 ------- 1 1.0 5.0 302 327 - 1.2325 1 2 cbr 210 ------- 1 1.0 5.0 302 327 r 1.23336 1 2 cbr 210 ------- 1 1.0 5.0 288 312 + 1.23336 2 3 cbr 210 ------- 1 1.0 5.0 288 312 r 1.23357 3 5 cbr 210 ------- 1 1.0 5.0 255 276 r 1.23389 0 2 tcp 1000 ------- 0 0.0 4.0 12 308 + 1.23389 2 3 tcp 1000 ------- 0 0.0 4.0 12 308 r 1.23397 2 3 cbr 210 ------- 1 1.0 5.0 271 293 + 1.23397 3 5 cbr 210 ------- 1 1.0 5.0 271 293 - 1.23397 3 5 cbr 210 ------- 1 1.0 5.0 271 293 - 1.23437 2 3 cbr 210 ------- 1 1.0 5.0 287 311 + 1.23625 1 2 cbr 210 ------- 1 1.0 5.0 303 328 - 1.23625 1 2 cbr 210 ------- 1 1.0 5.0 303 328 r 1.23693 3 5 cbr 210 ------- 1 1.0 5.0 256 277 r 1.23711 1 2 cbr 210 ------- 1 1.0 5.0 289 313 + 1.23711 2 3 cbr 210 ------- 1 1.0 5.0 289 313 r 1.23733 2 3 cbr 210 ------- 1 1.0 5.0 272 295 + 1.23733 3 5 cbr 210 ------- 1 1.0 5.0 272 295 - 1.23733 3 5 cbr 210 ------- 1 1.0 5.0 272 295 - 1.23773 2 3 cbr 210 ------- 1 1.0 5.0 288 312 + 1.24 1 2 cbr 210 ------- 1 1.0 5.0 304 329 - 1.24 1 2 cbr 210 ------- 1 1.0 5.0 304 329 r 1.24029 3 5 cbr 210 ------- 1 1.0 5.0 257 278 r 1.24069 2 3 cbr 210 ------- 1 1.0 5.0 273 296 + 1.24069 3 5 cbr 210 ------- 1 1.0 5.0 273 296 - 1.24069 3 5 cbr 210 ------- 1 1.0 5.0 273 296 r 1.24086 1 2 cbr 210 ------- 1 1.0 5.0 290 314 + 1.24086 2 3 cbr 210 ------- 1 1.0 5.0 290 314 - 1.24109 2 3 tcp 1000 ------- 0 0.0 4.0 12 308 r 1.24365 3 5 cbr 210 ------- 1 1.0 5.0 258 279 + 1.24375 1 2 cbr 210 ------- 1 1.0 5.0 305 330 - 1.24375 1 2 cbr 210 ------- 1 1.0 5.0 305 330 r 1.24405 2 3 cbr 210 ------- 1 1.0 5.0 274 297 + 1.24405 3 5 cbr 210 ------- 1 1.0 5.0 274 297 - 1.24405 3 5 cbr 210 ------- 1 1.0 5.0 274 297 r 1.24461 1 2 cbr 210 ------- 1 1.0 5.0 291 315 + 1.24461 2 3 cbr 210 ------- 1 1.0 5.0 291 315 r 1.24701 3 5 cbr 210 ------- 1 1.0 5.0 259 281 r 1.24741 2 3 cbr 210 ------- 1 1.0 5.0 275 298 + 1.24741 3 5 cbr 210 ------- 1 1.0 5.0 275 298 - 1.24741 3 5 cbr 210 ------- 1 1.0 5.0 275 298 + 1.2475 1 2 cbr 210 ------- 1 1.0 5.0 306 331 - 1.2475 1 2 cbr 210 ------- 1 1.0 5.0 306 331 r 1.24836 1 2 cbr 210 ------- 1 1.0 5.0 292 316 + 1.24836 2 3 cbr 210 ------- 1 1.0 5.0 292 316 r 1.25037 3 5 cbr 210 ------- 1 1.0 5.0 260 282 r 1.25077 2 3 cbr 210 ------- 1 1.0 5.0 276 299 + 1.25077 3 5 cbr 210 ------- 1 1.0 5.0 276 299 - 1.25077 3 5 cbr 210 ------- 1 1.0 5.0 276 299 + 1.25125 1 2 cbr 210 ------- 1 1.0 5.0 307 332 - 1.25125 1 2 cbr 210 ------- 1 1.0 5.0 307 332 r 1.25211 1 2 cbr 210 ------- 1 1.0 5.0 293 317 + 1.25211 2 3 cbr 210 ------- 1 1.0 5.0 293 317 r 1.25373 3 5 cbr 210 ------- 1 1.0 5.0 261 283 r 1.25413 2 3 cbr 210 ------- 1 1.0 5.0 277 300 + 1.25413 3 5 cbr 210 ------- 1 1.0 5.0 277 300 - 1.25413 3 5 cbr 210 ------- 1 1.0 5.0 277 300 + 1.255 1 2 cbr 210 ------- 1 1.0 5.0 308 333 - 1.255 1 2 cbr 210 ------- 1 1.0 5.0 308 333 r 1.25586 1 2 cbr 210 ------- 1 1.0 5.0 294 318 + 1.25586 2 3 cbr 210 ------- 1 1.0 5.0 294 318 r 1.25709 3 5 cbr 210 ------- 1 1.0 5.0 262 284 - 1.25709 2 3 cbr 210 ------- 1 1.0 5.0 289 313 r 1.25749 2 3 cbr 210 ------- 1 1.0 5.0 278 301 + 1.25749 3 5 cbr 210 ------- 1 1.0 5.0 278 301 - 1.25749 3 5 cbr 210 ------- 1 1.0 5.0 278 301 + 1.25875 1 2 cbr 210 ------- 1 1.0 5.0 309 334 - 1.25875 1 2 cbr 210 ------- 1 1.0 5.0 309 334 r 1.25961 1 2 cbr 210 ------- 1 1.0 5.0 295 319 + 1.25961 2 3 cbr 210 ------- 1 1.0 5.0 295 319 r 1.26045 3 5 cbr 210 ------- 1 1.0 5.0 263 285 - 1.26045 2 3 cbr 210 ------- 1 1.0 5.0 290 314 r 1.26085 2 3 cbr 210 ------- 1 1.0 5.0 279 302 + 1.26085 3 5 cbr 210 ------- 1 1.0 5.0 279 302 - 1.26085 3 5 cbr 210 ------- 1 1.0 5.0 279 302 + 1.2625 1 2 cbr 210 ------- 1 1.0 5.0 310 335 - 1.2625 1 2 cbr 210 ------- 1 1.0 5.0 310 335 r 1.26336 1 2 cbr 210 ------- 1 1.0 5.0 296 320 + 1.26336 2 3 cbr 210 ------- 1 1.0 5.0 296 320 r 1.26381 3 5 cbr 210 ------- 1 1.0 5.0 264 286 - 1.26381 2 3 cbr 210 ------- 1 1.0 5.0 291 315 r 1.26421 2 3 cbr 210 ------- 1 1.0 5.0 280 303 + 1.26421 3 5 cbr 210 ------- 1 1.0 5.0 280 303 - 1.26421 3 5 cbr 210 ------- 1 1.0 5.0 280 303 + 1.26625 1 2 cbr 210 ------- 1 1.0 5.0 311 336 - 1.26625 1 2 cbr 210 ------- 1 1.0 5.0 311 336 r 1.26711 1 2 cbr 210 ------- 1 1.0 5.0 297 321 + 1.26711 2 3 cbr 210 ------- 1 1.0 5.0 297 321 r 1.26717 3 5 cbr 210 ------- 1 1.0 5.0 265 287 - 1.26717 2 3 cbr 210 ------- 1 1.0 5.0 292 316 r 1.26757 2 3 cbr 210 ------- 1 1.0 5.0 281 304 + 1.26757 3 5 cbr 210 ------- 1 1.0 5.0 281 304 - 1.26757 3 5 cbr 210 ------- 1 1.0 5.0 281 304 + 1.27 1 2 cbr 210 ------- 1 1.0 5.0 312 337 - 1.27 1 2 cbr 210 ------- 1 1.0 5.0 312 337 r 1.27045 2 0 ack 40 ------- 0 4.0 0.0 10 294 + 1.27045 0 2 tcp 1000 ------- 0 0.0 4.0 14 338 - 1.27045 0 2 tcp 1000 ------- 0 0.0 4.0 14 338 r 1.27053 3 5 cbr 210 ------- 1 1.0 5.0 266 288 - 1.27053 2 3 cbr 210 ------- 1 1.0 5.0 293 317 r 1.27086 1 2 cbr 210 ------- 1 1.0 5.0 298 322 + 1.27086 2 3 cbr 210 ------- 1 1.0 5.0 298 322 r 1.27093 2 3 cbr 210 ------- 1 1.0 5.0 282 305 + 1.27093 3 5 cbr 210 ------- 1 1.0 5.0 282 305 - 1.27093 3 5 cbr 210 ------- 1 1.0 5.0 282 305 + 1.27375 1 2 cbr 210 ------- 1 1.0 5.0 313 339 - 1.27375 1 2 cbr 210 ------- 1 1.0 5.0 313 339 r 1.27389 3 5 cbr 210 ------- 1 1.0 5.0 267 289 - 1.27389 2 3 cbr 210 ------- 1 1.0 5.0 294 318 r 1.27429 2 3 cbr 210 ------- 1 1.0 5.0 283 306 + 1.27429 3 5 cbr 210 ------- 1 1.0 5.0 283 306 - 1.27429 3 5 cbr 210 ------- 1 1.0 5.0 283 306 r 1.27461 1 2 cbr 210 ------- 1 1.0 5.0 299 324 + 1.27461 2 3 cbr 210 ------- 1 1.0 5.0 299 324 r 1.27725 3 5 cbr 210 ------- 1 1.0 5.0 268 290 - 1.27725 2 3 cbr 210 ------- 1 1.0 5.0 295 319 + 1.2775 1 2 cbr 210 ------- 1 1.0 5.0 314 340 - 1.2775 1 2 cbr 210 ------- 1 1.0 5.0 314 340 r 1.27765 2 3 cbr 210 ------- 1 1.0 5.0 284 307 + 1.27765 3 5 cbr 210 ------- 1 1.0 5.0 284 307 - 1.27765 3 5 cbr 210 ------- 1 1.0 5.0 284 307 r 1.27836 1 2 cbr 210 ------- 1 1.0 5.0 300 325 + 1.27836 2 3 cbr 210 ------- 1 1.0 5.0 300 325 r 1.28061 3 5 cbr 210 ------- 1 1.0 5.0 269 291 - 1.28061 2 3 cbr 210 ------- 1 1.0 5.0 296 320 r 1.28101 2 3 cbr 210 ------- 1 1.0 5.0 285 309 + 1.28101 3 5 cbr 210 ------- 1 1.0 5.0 285 309 - 1.28101 3 5 cbr 210 ------- 1 1.0 5.0 285 309 + 1.28125 1 2 cbr 210 ------- 1 1.0 5.0 315 341 - 1.28125 1 2 cbr 210 ------- 1 1.0 5.0 315 341 r 1.28211 1 2 cbr 210 ------- 1 1.0 5.0 301 326 + 1.28211 2 3 cbr 210 ------- 1 1.0 5.0 301 326 r 1.28397 3 5 cbr 210 ------- 1 1.0 5.0 270 292 - 1.28397 2 3 cbr 210 ------- 1 1.0 5.0 297 321 r 1.28437 2 3 cbr 210 ------- 1 1.0 5.0 286 310 + 1.28437 3 5 cbr 210 ------- 1 1.0 5.0 286 310 - 1.28437 3 5 cbr 210 ------- 1 1.0 5.0 286 310 + 1.285 1 2 cbr 210 ------- 1 1.0 5.0 316 342 - 1.285 1 2 cbr 210 ------- 1 1.0 5.0 316 342 r 1.28586 1 2 cbr 210 ------- 1 1.0 5.0 302 327 + 1.28586 2 3 cbr 210 ------- 1 1.0 5.0 302 327 r 1.28685 0 2 tcp 1000 ------- 0 0.0 4.0 13 323 + 1.28685 2 3 tcp 1000 ------- 0 0.0 4.0 13 323 r 1.28733 3 5 cbr 210 ------- 1 1.0 5.0 271 293 - 1.28733 2 3 cbr 210 ------- 1 1.0 5.0 298 322 r 1.28773 2 3 cbr 210 ------- 1 1.0 5.0 287 311 + 1.28773 3 5 cbr 210 ------- 1 1.0 5.0 287 311 - 1.28773 3 5 cbr 210 ------- 1 1.0 5.0 287 311 + 1.28875 1 2 cbr 210 ------- 1 1.0 5.0 317 343 - 1.28875 1 2 cbr 210 ------- 1 1.0 5.0 317 343 r 1.28961 1 2 cbr 210 ------- 1 1.0 5.0 303 328 + 1.28961 2 3 cbr 210 ------- 1 1.0 5.0 303 328 r 1.29069 3 5 cbr 210 ------- 1 1.0 5.0 272 295 - 1.29069 2 3 cbr 210 ------- 1 1.0 5.0 299 324 r 1.29109 2 3 cbr 210 ------- 1 1.0 5.0 288 312 + 1.29109 3 5 cbr 210 ------- 1 1.0 5.0 288 312 - 1.29109 3 5 cbr 210 ------- 1 1.0 5.0 288 312 + 1.2925 1 2 cbr 210 ------- 1 1.0 5.0 318 344 - 1.2925 1 2 cbr 210 ------- 1 1.0 5.0 318 344 r 1.29336 1 2 cbr 210 ------- 1 1.0 5.0 304 329 + 1.29336 2 3 cbr 210 ------- 1 1.0 5.0 304 329 r 1.29405 3 5 cbr 210 ------- 1 1.0 5.0 273 296 - 1.29405 2 3 cbr 210 ------- 1 1.0 5.0 300 325 + 1.29625 1 2 cbr 210 ------- 1 1.0 5.0 319 345 - 1.29625 1 2 cbr 210 ------- 1 1.0 5.0 319 345 r 1.29711 1 2 cbr 210 ------- 1 1.0 5.0 305 330 + 1.29711 2 3 cbr 210 ------- 1 1.0 5.0 305 330 r 1.29741 3 5 cbr 210 ------- 1 1.0 5.0 274 297 - 1.29741 2 3 cbr 210 ------- 1 1.0 5.0 301 326 + 1.3 1 2 cbr 210 ------- 1 1.0 5.0 320 346 - 1.3 1 2 cbr 210 ------- 1 1.0 5.0 320 346 r 1.30077 3 5 cbr 210 ------- 1 1.0 5.0 275 298 - 1.30077 2 3 cbr 210 ------- 1 1.0 5.0 302 327 r 1.30086 1 2 cbr 210 ------- 1 1.0 5.0 306 331 + 1.30086 2 3 cbr 210 ------- 1 1.0 5.0 306 331 + 1.30375 1 2 cbr 210 ------- 1 1.0 5.0 321 347 - 1.30375 1 2 cbr 210 ------- 1 1.0 5.0 321 347 r 1.30413 3 5 cbr 210 ------- 1 1.0 5.0 276 299 - 1.30413 2 3 tcp 1000 ------- 0 0.0 4.0 13 323 r 1.30461 1 2 cbr 210 ------- 1 1.0 5.0 307 332 + 1.30461 2 3 cbr 210 ------- 1 1.0 5.0 307 332 r 1.30709 2 3 tcp 1000 ------- 0 0.0 4.0 12 308 + 1.30709 3 4 tcp 1000 ------- 0 0.0 4.0 12 308 - 1.30709 3 4 tcp 1000 ------- 0 0.0 4.0 12 308 r 1.30749 3 5 cbr 210 ------- 1 1.0 5.0 277 300 + 1.3075 1 2 cbr 210 ------- 1 1.0 5.0 322 348 - 1.3075 1 2 cbr 210 ------- 1 1.0 5.0 322 348 r 1.30836 1 2 cbr 210 ------- 1 1.0 5.0 308 333 + 1.30836 2 3 cbr 210 ------- 1 1.0 5.0 308 333 r 1.31045 2 3 cbr 210 ------- 1 1.0 5.0 289 313 + 1.31045 3 5 cbr 210 ------- 1 1.0 5.0 289 313 - 1.31045 3 5 cbr 210 ------- 1 1.0 5.0 289 313 r 1.31085 3 5 cbr 210 ------- 1 1.0 5.0 278 301 + 1.31125 1 2 cbr 210 ------- 1 1.0 5.0 323 349 - 1.31125 1 2 cbr 210 ------- 1 1.0 5.0 323 349 r 1.31211 1 2 cbr 210 ------- 1 1.0 5.0 309 334 + 1.31211 2 3 cbr 210 ------- 1 1.0 5.0 309 334 r 1.31381 2 3 cbr 210 ------- 1 1.0 5.0 290 314 + 1.31381 3 5 cbr 210 ------- 1 1.0 5.0 290 314 - 1.31381 3 5 cbr 210 ------- 1 1.0 5.0 290 314 r 1.31421 3 5 cbr 210 ------- 1 1.0 5.0 279 302 + 1.315 1 2 cbr 210 ------- 1 1.0 5.0 324 350 - 1.315 1 2 cbr 210 ------- 1 1.0 5.0 324 350 r 1.31586 1 2 cbr 210 ------- 1 1.0 5.0 310 335 + 1.31586 2 3 cbr 210 ------- 1 1.0 5.0 310 335 r 1.31717 2 3 cbr 210 ------- 1 1.0 5.0 291 315 + 1.31717 3 5 cbr 210 ------- 1 1.0 5.0 291 315 - 1.31717 3 5 cbr 210 ------- 1 1.0 5.0 291 315 r 1.31757 3 5 cbr 210 ------- 1 1.0 5.0 280 303 + 1.31875 1 2 cbr 210 ------- 1 1.0 5.0 325 351 - 1.31875 1 2 cbr 210 ------- 1 1.0 5.0 325 351 r 1.31961 1 2 cbr 210 ------- 1 1.0 5.0 311 336 + 1.31961 2 3 cbr 210 ------- 1 1.0 5.0 311 336 - 1.32013 2 3 cbr 210 ------- 1 1.0 5.0 303 328 r 1.32053 2 3 cbr 210 ------- 1 1.0 5.0 292 316 + 1.32053 3 5 cbr 210 ------- 1 1.0 5.0 292 316 - 1.32053 3 5 cbr 210 ------- 1 1.0 5.0 292 316 r 1.32093 3 5 cbr 210 ------- 1 1.0 5.0 281 304 + 1.3225 1 2 cbr 210 ------- 1 1.0 5.0 326 352 - 1.3225 1 2 cbr 210 ------- 1 1.0 5.0 326 352 r 1.32336 1 2 cbr 210 ------- 1 1.0 5.0 312 337 + 1.32336 2 3 cbr 210 ------- 1 1.0 5.0 312 337 - 1.32349 2 3 cbr 210 ------- 1 1.0 5.0 304 329 r 1.32389 2 3 cbr 210 ------- 1 1.0 5.0 293 317 + 1.32389 3 5 cbr 210 ------- 1 1.0 5.0 293 317 - 1.32389 3 5 cbr 210 ------- 1 1.0 5.0 293 317 r 1.32429 3 5 cbr 210 ------- 1 1.0 5.0 282 305 + 1.32625 1 2 cbr 210 ------- 1 1.0 5.0 327 353 - 1.32625 1 2 cbr 210 ------- 1 1.0 5.0 327 353 - 1.32685 2 3 cbr 210 ------- 1 1.0 5.0 305 330 r 1.32711 1 2 cbr 210 ------- 1 1.0 5.0 313 339 + 1.32711 2 3 cbr 210 ------- 1 1.0 5.0 313 339 r 1.32725 2 3 cbr 210 ------- 1 1.0 5.0 294 318 + 1.32725 3 5 cbr 210 ------- 1 1.0 5.0 294 318 - 1.32725 3 5 cbr 210 ------- 1 1.0 5.0 294 318 r 1.32765 3 5 cbr 210 ------- 1 1.0 5.0 283 306 + 1.33 1 2 cbr 210 ------- 1 1.0 5.0 328 354 - 1.33 1 2 cbr 210 ------- 1 1.0 5.0 328 354 - 1.33021 2 3 cbr 210 ------- 1 1.0 5.0 306 331 r 1.33061 2 3 cbr 210 ------- 1 1.0 5.0 295 319 + 1.33061 3 5 cbr 210 ------- 1 1.0 5.0 295 319 - 1.33061 3 5 cbr 210 ------- 1 1.0 5.0 295 319 r 1.33086 1 2 cbr 210 ------- 1 1.0 5.0 314 340 + 1.33086 2 3 cbr 210 ------- 1 1.0 5.0 314 340 r 1.33101 3 5 cbr 210 ------- 1 1.0 5.0 284 307 - 1.33357 2 3 cbr 210 ------- 1 1.0 5.0 307 332 + 1.33375 1 2 cbr 210 ------- 1 1.0 5.0 329 355 - 1.33375 1 2 cbr 210 ------- 1 1.0 5.0 329 355 r 1.33397 2 3 cbr 210 ------- 1 1.0 5.0 296 320 + 1.33397 3 5 cbr 210 ------- 1 1.0 5.0 296 320 - 1.33397 3 5 cbr 210 ------- 1 1.0 5.0 296 320 r 1.33437 3 5 cbr 210 ------- 1 1.0 5.0 285 309 r 1.33461 1 2 cbr 210 ------- 1 1.0 5.0 315 341 + 1.33461 2 3 cbr 210 ------- 1 1.0 5.0 315 341 r 1.33645 0 2 tcp 1000 ------- 0 0.0 4.0 14 338 + 1.33645 2 3 tcp 1000 ------- 0 0.0 4.0 14 338 - 1.33693 2 3 cbr 210 ------- 1 1.0 5.0 308 333 r 1.33733 2 3 cbr 210 ------- 1 1.0 5.0 297 321 + 1.33733 3 5 cbr 210 ------- 1 1.0 5.0 297 321 - 1.33733 3 5 cbr 210 ------- 1 1.0 5.0 297 321 + 1.3375 1 2 cbr 210 ------- 1 1.0 5.0 330 356 - 1.3375 1 2 cbr 210 ------- 1 1.0 5.0 330 356 r 1.33773 3 5 cbr 210 ------- 1 1.0 5.0 286 310 r 1.33836 1 2 cbr 210 ------- 1 1.0 5.0 316 342 + 1.33836 2 3 cbr 210 ------- 1 1.0 5.0 316 342 - 1.34029 2 3 cbr 210 ------- 1 1.0 5.0 309 334 r 1.34069 2 3 cbr 210 ------- 1 1.0 5.0 298 322 + 1.34069 3 5 cbr 210 ------- 1 1.0 5.0 298 322 - 1.34069 3 5 cbr 210 ------- 1 1.0 5.0 298 322 r 1.34109 3 5 cbr 210 ------- 1 1.0 5.0 287 311 + 1.34125 1 2 cbr 210 ------- 1 1.0 5.0 331 357 - 1.34125 1 2 cbr 210 ------- 1 1.0 5.0 331 357 r 1.34211 1 2 cbr 210 ------- 1 1.0 5.0 317 343 + 1.34211 2 3 cbr 210 ------- 1 1.0 5.0 317 343 - 1.34365 2 3 cbr 210 ------- 1 1.0 5.0 310 335 r 1.34405 2 3 cbr 210 ------- 1 1.0 5.0 299 324 + 1.34405 3 5 cbr 210 ------- 1 1.0 5.0 299 324 - 1.34405 3 5 cbr 210 ------- 1 1.0 5.0 299 324 r 1.34445 3 5 cbr 210 ------- 1 1.0 5.0 288 312 + 1.345 1 2 cbr 210 ------- 1 1.0 5.0 332 358 - 1.345 1 2 cbr 210 ------- 1 1.0 5.0 332 358 r 1.34586 1 2 cbr 210 ------- 1 1.0 5.0 318 344 + 1.34586 2 3 cbr 210 ------- 1 1.0 5.0 318 344 - 1.34701 2 3 cbr 210 ------- 1 1.0 5.0 311 336 r 1.34741 2 3 cbr 210 ------- 1 1.0 5.0 300 325 + 1.34741 3 5 cbr 210 ------- 1 1.0 5.0 300 325 - 1.34741 3 5 cbr 210 ------- 1 1.0 5.0 300 325 + 1.34875 1 2 cbr 210 ------- 1 1.0 5.0 333 359 - 1.34875 1 2 cbr 210 ------- 1 1.0 5.0 333 359 r 1.34961 1 2 cbr 210 ------- 1 1.0 5.0 319 345 + 1.34961 2 3 cbr 210 ------- 1 1.0 5.0 319 345 - 1.35037 2 3 cbr 210 ------- 1 1.0 5.0 312 337 r 1.35077 2 3 cbr 210 ------- 1 1.0 5.0 301 326 + 1.35077 3 5 cbr 210 ------- 1 1.0 5.0 301 326 - 1.35077 3 5 cbr 210 ------- 1 1.0 5.0 301 326 + 1.3525 1 2 cbr 210 ------- 1 1.0 5.0 334 360 - 1.3525 1 2 cbr 210 ------- 1 1.0 5.0 334 360 r 1.35336 1 2 cbr 210 ------- 1 1.0 5.0 320 346 + 1.35336 2 3 cbr 210 ------- 1 1.0 5.0 320 346 - 1.35373 2 3 cbr 210 ------- 1 1.0 5.0 313 339 r 1.35413 2 3 cbr 210 ------- 1 1.0 5.0 302 327 + 1.35413 3 5 cbr 210 ------- 1 1.0 5.0 302 327 - 1.35413 3 5 cbr 210 ------- 1 1.0 5.0 302 327 + 1.35625 1 2 cbr 210 ------- 1 1.0 5.0 335 361 - 1.35625 1 2 cbr 210 ------- 1 1.0 5.0 335 361 - 1.35709 2 3 cbr 210 ------- 1 1.0 5.0 314 340 r 1.35711 1 2 cbr 210 ------- 1 1.0 5.0 321 347 + 1.35711 2 3 cbr 210 ------- 1 1.0 5.0 321 347 + 1.36 1 2 cbr 210 ------- 1 1.0 5.0 336 362 - 1.36 1 2 cbr 210 ------- 1 1.0 5.0 336 362 - 1.36045 2 3 cbr 210 ------- 1 1.0 5.0 315 341 r 1.36086 1 2 cbr 210 ------- 1 1.0 5.0 322 348 + 1.36086 2 3 cbr 210 ------- 1 1.0 5.0 322 348 + 1.36375 1 2 cbr 210 ------- 1 1.0 5.0 337 363 - 1.36375 1 2 cbr 210 ------- 1 1.0 5.0 337 363 r 1.36381 3 5 cbr 210 ------- 1 1.0 5.0 289 313 - 1.36381 2 3 tcp 1000 ------- 0 0.0 4.0 14 338 r 1.36461 1 2 cbr 210 ------- 1 1.0 5.0 323 349 + 1.36461 2 3 cbr 210 ------- 1 1.0 5.0 323 349 r 1.36717 3 5 cbr 210 ------- 1 1.0 5.0 290 314 + 1.3675 1 2 cbr 210 ------- 1 1.0 5.0 338 364 - 1.3675 1 2 cbr 210 ------- 1 1.0 5.0 338 364 r 1.36836 1 2 cbr 210 ------- 1 1.0 5.0 324 350 + 1.36836 2 3 cbr 210 ------- 1 1.0 5.0 324 350 r 1.37013 2 3 tcp 1000 ------- 0 0.0 4.0 13 323 + 1.37013 3 4 tcp 1000 ------- 0 0.0 4.0 13 323 - 1.37013 3 4 tcp 1000 ------- 0 0.0 4.0 13 323 r 1.37053 3 5 cbr 210 ------- 1 1.0 5.0 291 315 + 1.37125 1 2 cbr 210 ------- 1 1.0 5.0 339 365 - 1.37125 1 2 cbr 210 ------- 1 1.0 5.0 339 365 r 1.37211 1 2 cbr 210 ------- 1 1.0 5.0 325 351 + 1.37211 2 3 cbr 210 ------- 1 1.0 5.0 325 351 d 1.37211 2 3 cbr 210 ------- 1 1.0 5.0 325 351 r 1.37309 3 4 tcp 1000 ------- 0 0.0 4.0 12 308 + 1.37309 4 3 ack 40 ------- 0 4.0 0.0 10 366 - 1.37309 4 3 ack 40 ------- 0 4.0 0.0 10 366 r 1.37349 2 3 cbr 210 ------- 1 1.0 5.0 303 328 + 1.37349 3 5 cbr 210 ------- 1 1.0 5.0 303 328 - 1.37349 3 5 cbr 210 ------- 1 1.0 5.0 303 328 r 1.37389 3 5 cbr 210 ------- 1 1.0 5.0 292 316 + 1.375 1 2 cbr 210 ------- 1 1.0 5.0 340 367 - 1.375 1 2 cbr 210 ------- 1 1.0 5.0 340 367 r 1.37586 1 2 cbr 210 ------- 1 1.0 5.0 326 352 + 1.37586 2 3 cbr 210 ------- 1 1.0 5.0 326 352 d 1.37586 2 3 cbr 210 ------- 1 1.0 5.0 326 352 r 1.37685 2 3 cbr 210 ------- 1 1.0 5.0 304 329 + 1.37685 3 5 cbr 210 ------- 1 1.0 5.0 304 329 - 1.37685 3 5 cbr 210 ------- 1 1.0 5.0 304 329 r 1.37725 3 5 cbr 210 ------- 1 1.0 5.0 293 317 + 1.37875 1 2 cbr 210 ------- 1 1.0 5.0 341 368 - 1.37875 1 2 cbr 210 ------- 1 1.0 5.0 341 368 r 1.37961 1 2 cbr 210 ------- 1 1.0 5.0 327 353 + 1.37961 2 3 cbr 210 ------- 1 1.0 5.0 327 353 d 1.37961 2 3 cbr 210 ------- 1 1.0 5.0 327 353 - 1.37981 2 3 cbr 210 ------- 1 1.0 5.0 316 342 r 1.38021 2 3 cbr 210 ------- 1 1.0 5.0 305 330 + 1.38021 3 5 cbr 210 ------- 1 1.0 5.0 305 330 - 1.38021 3 5 cbr 210 ------- 1 1.0 5.0 305 330 r 1.38061 3 5 cbr 210 ------- 1 1.0 5.0 294 318 + 1.3825 1 2 cbr 210 ------- 1 1.0 5.0 342 369 - 1.3825 1 2 cbr 210 ------- 1 1.0 5.0 342 369 - 1.38317 2 3 cbr 210 ------- 1 1.0 5.0 317 343 r 1.38336 1 2 cbr 210 ------- 1 1.0 5.0 328 354 + 1.38336 2 3 cbr 210 ------- 1 1.0 5.0 328 354 r 1.38357 2 3 cbr 210 ------- 1 1.0 5.0 306 331 + 1.38357 3 5 cbr 210 ------- 1 1.0 5.0 306 331 - 1.38357 3 5 cbr 210 ------- 1 1.0 5.0 306 331 r 1.38397 3 5 cbr 210 ------- 1 1.0 5.0 295 319 + 1.38625 1 2 cbr 210 ------- 1 1.0 5.0 343 370 - 1.38625 1 2 cbr 210 ------- 1 1.0 5.0 343 370 - 1.38653 2 3 cbr 210 ------- 1 1.0 5.0 318 344 r 1.38693 2 3 cbr 210 ------- 1 1.0 5.0 307 332 + 1.38693 3 5 cbr 210 ------- 1 1.0 5.0 307 332 - 1.38693 3 5 cbr 210 ------- 1 1.0 5.0 307 332 r 1.38711 1 2 cbr 210 ------- 1 1.0 5.0 329 355 + 1.38711 2 3 cbr 210 ------- 1 1.0 5.0 329 355 r 1.38733 3 5 cbr 210 ------- 1 1.0 5.0 296 320 - 1.38989 2 3 cbr 210 ------- 1 1.0 5.0 319 345 + 1.39 1 2 cbr 210 ------- 1 1.0 5.0 344 371 - 1.39 1 2 cbr 210 ------- 1 1.0 5.0 344 371 r 1.39029 2 3 cbr 210 ------- 1 1.0 5.0 308 333 + 1.39029 3 5 cbr 210 ------- 1 1.0 5.0 308 333 - 1.39029 3 5 cbr 210 ------- 1 1.0 5.0 308 333 r 1.39069 3 5 cbr 210 ------- 1 1.0 5.0 297 321 r 1.39086 1 2 cbr 210 ------- 1 1.0 5.0 330 356 + 1.39086 2 3 cbr 210 ------- 1 1.0 5.0 330 356 - 1.39325 2 3 cbr 210 ------- 1 1.0 5.0 320 346 r 1.39365 2 3 cbr 210 ------- 1 1.0 5.0 309 334 + 1.39365 3 5 cbr 210 ------- 1 1.0 5.0 309 334 - 1.39365 3 5 cbr 210 ------- 1 1.0 5.0 309 334 + 1.39375 1 2 cbr 210 ------- 1 1.0 5.0 345 372 - 1.39375 1 2 cbr 210 ------- 1 1.0 5.0 345 372 r 1.39405 3 5 cbr 210 ------- 1 1.0 5.0 298 322 r 1.39461 1 2 cbr 210 ------- 1 1.0 5.0 331 357 + 1.39461 2 3 cbr 210 ------- 1 1.0 5.0 331 357 - 1.39661 2 3 cbr 210 ------- 1 1.0 5.0 321 347 r 1.39701 2 3 cbr 210 ------- 1 1.0 5.0 310 335 + 1.39701 3 5 cbr 210 ------- 1 1.0 5.0 310 335 - 1.39701 3 5 cbr 210 ------- 1 1.0 5.0 310 335 r 1.39741 3 5 cbr 210 ------- 1 1.0 5.0 299 324 + 1.3975 1 2 cbr 210 ------- 1 1.0 5.0 346 373 - 1.3975 1 2 cbr 210 ------- 1 1.0 5.0 346 373 r 1.39836 1 2 cbr 210 ------- 1 1.0 5.0 332 358 + 1.39836 2 3 cbr 210 ------- 1 1.0 5.0 332 358 - 1.39997 2 3 cbr 210 ------- 1 1.0 5.0 322 348 r 1.40037 2 3 cbr 210 ------- 1 1.0 5.0 311 336 + 1.40037 3 5 cbr 210 ------- 1 1.0 5.0 311 336 - 1.40037 3 5 cbr 210 ------- 1 1.0 5.0 311 336 r 1.40077 3 5 cbr 210 ------- 1 1.0 5.0 300 325 + 1.40125 1 2 cbr 210 ------- 1 1.0 5.0 347 374 - 1.40125 1 2 cbr 210 ------- 1 1.0 5.0 347 374 r 1.40211 1 2 cbr 210 ------- 1 1.0 5.0 333 359 + 1.40211 2 3 cbr 210 ------- 1 1.0 5.0 333 359 - 1.40333 2 3 cbr 210 ------- 1 1.0 5.0 323 349 r 1.40373 2 3 cbr 210 ------- 1 1.0 5.0 312 337 + 1.40373 3 5 cbr 210 ------- 1 1.0 5.0 312 337 - 1.40373 3 5 cbr 210 ------- 1 1.0 5.0 312 337 r 1.40413 3 5 cbr 210 ------- 1 1.0 5.0 301 326 + 1.405 1 2 cbr 210 ------- 1 1.0 5.0 348 375 - 1.405 1 2 cbr 210 ------- 1 1.0 5.0 348 375 r 1.40586 1 2 cbr 210 ------- 1 1.0 5.0 334 360 + 1.40586 2 3 cbr 210 ------- 1 1.0 5.0 334 360 - 1.40669 2 3 cbr 210 ------- 1 1.0 5.0 324 350 r 1.40709 2 3 cbr 210 ------- 1 1.0 5.0 313 339 + 1.40709 3 5 cbr 210 ------- 1 1.0 5.0 313 339 - 1.40709 3 5 cbr 210 ------- 1 1.0 5.0 313 339 r 1.40749 3 5 cbr 210 ------- 1 1.0 5.0 302 327 + 1.40875 1 2 cbr 210 ------- 1 1.0 5.0 349 376 - 1.40875 1 2 cbr 210 ------- 1 1.0 5.0 349 376 r 1.40961 1 2 cbr 210 ------- 1 1.0 5.0 335 361 + 1.40961 2 3 cbr 210 ------- 1 1.0 5.0 335 361 - 1.41005 2 3 cbr 210 ------- 1 1.0 5.0 328 354 r 1.41045 2 3 cbr 210 ------- 1 1.0 5.0 314 340 + 1.41045 3 5 cbr 210 ------- 1 1.0 5.0 314 340 - 1.41045 3 5 cbr 210 ------- 1 1.0 5.0 314 340 + 1.4125 1 2 cbr 210 ------- 1 1.0 5.0 350 377 - 1.4125 1 2 cbr 210 ------- 1 1.0 5.0 350 377 r 1.41336 1 2 cbr 210 ------- 1 1.0 5.0 336 362 + 1.41336 2 3 cbr 210 ------- 1 1.0 5.0 336 362 - 1.41341 2 3 cbr 210 ------- 1 1.0 5.0 329 355 r 1.41381 2 3 cbr 210 ------- 1 1.0 5.0 315 341 + 1.41381 3 5 cbr 210 ------- 1 1.0 5.0 315 341 - 1.41381 3 5 cbr 210 ------- 1 1.0 5.0 315 341 + 1.41625 1 2 cbr 210 ------- 1 1.0 5.0 351 378 - 1.41625 1 2 cbr 210 ------- 1 1.0 5.0 351 378 - 1.41677 2 3 cbr 210 ------- 1 1.0 5.0 330 356 r 1.41711 1 2 cbr 210 ------- 1 1.0 5.0 337 363 + 1.41711 2 3 cbr 210 ------- 1 1.0 5.0 337 363 + 1.42 1 2 cbr 210 ------- 1 1.0 5.0 352 379 - 1.42 1 2 cbr 210 ------- 1 1.0 5.0 352 379 - 1.42013 2 3 cbr 210 ------- 1 1.0 5.0 331 357 r 1.42086 1 2 cbr 210 ------- 1 1.0 5.0 338 364 + 1.42086 2 3 cbr 210 ------- 1 1.0 5.0 338 364 - 1.42349 2 3 cbr 210 ------- 1 1.0 5.0 332 358 r 1.42373 4 3 ack 40 ------- 0 4.0 0.0 10 366 + 1.42373 3 2 ack 40 ------- 0 4.0 0.0 10 366 - 1.42373 3 2 ack 40 ------- 0 4.0 0.0 10 366 + 1.42375 1 2 cbr 210 ------- 1 1.0 5.0 353 380 - 1.42375 1 2 cbr 210 ------- 1 1.0 5.0 353 380 r 1.42461 1 2 cbr 210 ------- 1 1.0 5.0 339 365 + 1.42461 2 3 cbr 210 ------- 1 1.0 5.0 339 365 r 1.42685 3 5 cbr 210 ------- 1 1.0 5.0 303 328 - 1.42685 2 3 cbr 210 ------- 1 1.0 5.0 333 359 + 1.4275 1 2 cbr 210 ------- 1 1.0 5.0 354 381 - 1.4275 1 2 cbr 210 ------- 1 1.0 5.0 354 381 r 1.42836 1 2 cbr 210 ------- 1 1.0 5.0 340 367 + 1.42836 2 3 cbr 210 ------- 1 1.0 5.0 340 367 r 1.42981 2 3 tcp 1000 ------- 0 0.0 4.0 14 338 + 1.42981 3 4 tcp 1000 ------- 0 0.0 4.0 14 338 - 1.42981 3 4 tcp 1000 ------- 0 0.0 4.0 14 338 r 1.43021 3 5 cbr 210 ------- 1 1.0 5.0 304 329 - 1.43021 2 3 cbr 210 ------- 1 1.0 5.0 334 360 + 1.43125 1 2 cbr 210 ------- 1 1.0 5.0 355 382 - 1.43125 1 2 cbr 210 ------- 1 1.0 5.0 355 382 r 1.43211 1 2 cbr 210 ------- 1 1.0 5.0 341 368 + 1.43211 2 3 cbr 210 ------- 1 1.0 5.0 341 368 r 1.43317 2 3 cbr 210 ------- 1 1.0 5.0 316 342 + 1.43317 3 5 cbr 210 ------- 1 1.0 5.0 316 342 - 1.43317 3 5 cbr 210 ------- 1 1.0 5.0 316 342 r 1.43357 3 5 cbr 210 ------- 1 1.0 5.0 305 330 - 1.43357 2 3 cbr 210 ------- 1 1.0 5.0 335 361 + 1.435 1 2 cbr 210 ------- 1 1.0 5.0 356 383 - 1.435 1 2 cbr 210 ------- 1 1.0 5.0 356 383 r 1.43586 1 2 cbr 210 ------- 1 1.0 5.0 342 369 + 1.43586 2 3 cbr 210 ------- 1 1.0 5.0 342 369 r 1.43613 3 4 tcp 1000 ------- 0 0.0 4.0 13 323 + 1.43613 4 3 ack 40 ------- 0 4.0 0.0 10 384 - 1.43613 4 3 ack 40 ------- 0 4.0 0.0 10 384 r 1.43653 2 3 cbr 210 ------- 1 1.0 5.0 317 343 + 1.43653 3 5 cbr 210 ------- 1 1.0 5.0 317 343 - 1.43653 3 5 cbr 210 ------- 1 1.0 5.0 317 343 r 1.43693 3 5 cbr 210 ------- 1 1.0 5.0 306 331 - 1.43693 2 3 cbr 210 ------- 1 1.0 5.0 336 362 + 1.43875 1 2 cbr 210 ------- 1 1.0 5.0 357 385 - 1.43875 1 2 cbr 210 ------- 1 1.0 5.0 357 385 r 1.43961 1 2 cbr 210 ------- 1 1.0 5.0 343 370 + 1.43961 2 3 cbr 210 ------- 1 1.0 5.0 343 370 r 1.43989 2 3 cbr 210 ------- 1 1.0 5.0 318 344 + 1.43989 3 5 cbr 210 ------- 1 1.0 5.0 318 344 - 1.43989 3 5 cbr 210 ------- 1 1.0 5.0 318 344 r 1.44029 3 5 cbr 210 ------- 1 1.0 5.0 307 332 - 1.44029 2 3 cbr 210 ------- 1 1.0 5.0 337 363 + 1.4425 1 2 cbr 210 ------- 1 1.0 5.0 358 386 - 1.4425 1 2 cbr 210 ------- 1 1.0 5.0 358 386 r 1.44325 2 3 cbr 210 ------- 1 1.0 5.0 319 345 + 1.44325 3 5 cbr 210 ------- 1 1.0 5.0 319 345 - 1.44325 3 5 cbr 210 ------- 1 1.0 5.0 319 345 r 1.44336 1 2 cbr 210 ------- 1 1.0 5.0 344 371 + 1.44336 2 3 cbr 210 ------- 1 1.0 5.0 344 371 r 1.44365 3 5 cbr 210 ------- 1 1.0 5.0 308 333 - 1.44365 2 3 cbr 210 ------- 1 1.0 5.0 338 364 + 1.44625 1 2 cbr 210 ------- 1 1.0 5.0 359 387 - 1.44625 1 2 cbr 210 ------- 1 1.0 5.0 359 387 r 1.44661 2 3 cbr 210 ------- 1 1.0 5.0 320 346 + 1.44661 3 5 cbr 210 ------- 1 1.0 5.0 320 346 - 1.44661 3 5 cbr 210 ------- 1 1.0 5.0 320 346 r 1.44701 3 5 cbr 210 ------- 1 1.0 5.0 309 334 - 1.44701 2 3 cbr 210 ------- 1 1.0 5.0 339 365 r 1.44711 1 2 cbr 210 ------- 1 1.0 5.0 345 372 + 1.44711 2 3 cbr 210 ------- 1 1.0 5.0 345 372 r 1.44997 2 3 cbr 210 ------- 1 1.0 5.0 321 347 + 1.44997 3 5 cbr 210 ------- 1 1.0 5.0 321 347 - 1.44997 3 5 cbr 210 ------- 1 1.0 5.0 321 347 + 1.45 1 2 cbr 210 ------- 1 1.0 5.0 360 388 - 1.45 1 2 cbr 210 ------- 1 1.0 5.0 360 388 r 1.45037 3 5 cbr 210 ------- 1 1.0 5.0 310 335 - 1.45037 2 3 cbr 210 ------- 1 1.0 5.0 340 367 r 1.45086 1 2 cbr 210 ------- 1 1.0 5.0 346 373 + 1.45086 2 3 cbr 210 ------- 1 1.0 5.0 346 373 r 1.45333 2 3 cbr 210 ------- 1 1.0 5.0 322 348 + 1.45333 3 5 cbr 210 ------- 1 1.0 5.0 322 348 - 1.45333 3 5 cbr 210 ------- 1 1.0 5.0 322 348 r 1.45373 3 5 cbr 210 ------- 1 1.0 5.0 311 336 - 1.45373 2 3 cbr 210 ------- 1 1.0 5.0 341 368 + 1.45375 1 2 cbr 210 ------- 1 1.0 5.0 361 389 - 1.45375 1 2 cbr 210 ------- 1 1.0 5.0 361 389 r 1.45461 1 2 cbr 210 ------- 1 1.0 5.0 347 374 + 1.45461 2 3 cbr 210 ------- 1 1.0 5.0 347 374 r 1.45669 2 3 cbr 210 ------- 1 1.0 5.0 323 349 + 1.45669 3 5 cbr 210 ------- 1 1.0 5.0 323 349 - 1.45669 3 5 cbr 210 ------- 1 1.0 5.0 323 349 r 1.45709 3 5 cbr 210 ------- 1 1.0 5.0 312 337 - 1.45709 2 3 cbr 210 ------- 1 1.0 5.0 342 369 + 1.4575 1 2 cbr 210 ------- 1 1.0 5.0 362 390 - 1.4575 1 2 cbr 210 ------- 1 1.0 5.0 362 390 r 1.45836 1 2 cbr 210 ------- 1 1.0 5.0 348 375 + 1.45836 2 3 cbr 210 ------- 1 1.0 5.0 348 375 r 1.46005 2 3 cbr 210 ------- 1 1.0 5.0 324 350 + 1.46005 3 5 cbr 210 ------- 1 1.0 5.0 324 350 - 1.46005 3 5 cbr 210 ------- 1 1.0 5.0 324 350 r 1.46045 3 5 cbr 210 ------- 1 1.0 5.0 313 339 - 1.46045 2 3 cbr 210 ------- 1 1.0 5.0 343 370 + 1.46125 1 2 cbr 210 ------- 1 1.0 5.0 363 391 - 1.46125 1 2 cbr 210 ------- 1 1.0 5.0 363 391 r 1.46211 1 2 cbr 210 ------- 1 1.0 5.0 349 376 + 1.46211 2 3 cbr 210 ------- 1 1.0 5.0 349 376 r 1.46341 2 3 cbr 210 ------- 1 1.0 5.0 328 354 + 1.46341 3 5 cbr 210 ------- 1 1.0 5.0 328 354 - 1.46341 3 5 cbr 210 ------- 1 1.0 5.0 328 354 r 1.46381 3 5 cbr 210 ------- 1 1.0 5.0 314 340 - 1.46381 2 3 cbr 210 ------- 1 1.0 5.0 344 371 + 1.465 1 2 cbr 210 ------- 1 1.0 5.0 364 392 - 1.465 1 2 cbr 210 ------- 1 1.0 5.0 364 392 r 1.46586 1 2 cbr 210 ------- 1 1.0 5.0 350 377 + 1.46586 2 3 cbr 210 ------- 1 1.0 5.0 350 377 r 1.46677 2 3 cbr 210 ------- 1 1.0 5.0 329 355 + 1.46677 3 5 cbr 210 ------- 1 1.0 5.0 329 355 - 1.46677 3 5 cbr 210 ------- 1 1.0 5.0 329 355 r 1.46717 3 5 cbr 210 ------- 1 1.0 5.0 315 341 - 1.46717 2 3 cbr 210 ------- 1 1.0 5.0 345 372 + 1.46875 1 2 cbr 210 ------- 1 1.0 5.0 365 393 - 1.46875 1 2 cbr 210 ------- 1 1.0 5.0 365 393 r 1.46961 1 2 cbr 210 ------- 1 1.0 5.0 351 378 + 1.46961 2 3 cbr 210 ------- 1 1.0 5.0 351 378 r 1.47013 2 3 cbr 210 ------- 1 1.0 5.0 330 356 + 1.47013 3 5 cbr 210 ------- 1 1.0 5.0 330 356 - 1.47013 3 5 cbr 210 ------- 1 1.0 5.0 330 356 - 1.47053 2 3 cbr 210 ------- 1 1.0 5.0 346 373 + 1.4725 1 2 cbr 210 ------- 1 1.0 5.0 366 394 - 1.4725 1 2 cbr 210 ------- 1 1.0 5.0 366 394 r 1.47336 1 2 cbr 210 ------- 1 1.0 5.0 352 379 + 1.47336 2 3 cbr 210 ------- 1 1.0 5.0 352 379 r 1.47349 2 3 cbr 210 ------- 1 1.0 5.0 331 357 + 1.47349 3 5 cbr 210 ------- 1 1.0 5.0 331 357 - 1.47349 3 5 cbr 210 ------- 1 1.0 5.0 331 357 - 1.47389 2 3 cbr 210 ------- 1 1.0 5.0 347 374 r 1.47437 3 2 ack 40 ------- 0 4.0 0.0 10 366 + 1.47437 2 0 ack 40 ------- 0 4.0 0.0 10 366 - 1.47437 2 0 ack 40 ------- 0 4.0 0.0 10 366 + 1.47625 1 2 cbr 210 ------- 1 1.0 5.0 367 395 - 1.47625 1 2 cbr 210 ------- 1 1.0 5.0 367 395 r 1.47685 2 3 cbr 210 ------- 1 1.0 5.0 332 358 + 1.47685 3 5 cbr 210 ------- 1 1.0 5.0 332 358 - 1.47685 3 5 cbr 210 ------- 1 1.0 5.0 332 358 r 1.47711 1 2 cbr 210 ------- 1 1.0 5.0 353 380 + 1.47711 2 3 cbr 210 ------- 1 1.0 5.0 353 380 - 1.47725 2 3 cbr 210 ------- 1 1.0 5.0 348 375 + 1.48 1 2 cbr 210 ------- 1 1.0 5.0 368 396 - 1.48 1 2 cbr 210 ------- 1 1.0 5.0 368 396 r 1.48021 2 3 cbr 210 ------- 1 1.0 5.0 333 359 + 1.48021 3 5 cbr 210 ------- 1 1.0 5.0 333 359 - 1.48021 3 5 cbr 210 ------- 1 1.0 5.0 333 359 - 1.48061 2 3 cbr 210 ------- 1 1.0 5.0 349 376 r 1.48086 1 2 cbr 210 ------- 1 1.0 5.0 354 381 + 1.48086 2 3 cbr 210 ------- 1 1.0 5.0 354 381 r 1.48357 2 3 cbr 210 ------- 1 1.0 5.0 334 360 + 1.48357 3 5 cbr 210 ------- 1 1.0 5.0 334 360 - 1.48357 3 5 cbr 210 ------- 1 1.0 5.0 334 360 + 1.48375 1 2 cbr 210 ------- 1 1.0 5.0 369 397 - 1.48375 1 2 cbr 210 ------- 1 1.0 5.0 369 397 - 1.48397 2 3 cbr 210 ------- 1 1.0 5.0 350 377 r 1.48461 1 2 cbr 210 ------- 1 1.0 5.0 355 382 + 1.48461 2 3 cbr 210 ------- 1 1.0 5.0 355 382 r 1.48653 3 5 cbr 210 ------- 1 1.0 5.0 316 342 r 1.48677 4 3 ack 40 ------- 0 4.0 0.0 10 384 + 1.48677 3 2 ack 40 ------- 0 4.0 0.0 10 384 - 1.48677 3 2 ack 40 ------- 0 4.0 0.0 10 384 r 1.48693 2 3 cbr 210 ------- 1 1.0 5.0 335 361 + 1.48693 3 5 cbr 210 ------- 1 1.0 5.0 335 361 - 1.48693 3 5 cbr 210 ------- 1 1.0 5.0 335 361 - 1.48733 2 3 cbr 210 ------- 1 1.0 5.0 351 378 + 1.4875 1 2 cbr 210 ------- 1 1.0 5.0 370 398 - 1.4875 1 2 cbr 210 ------- 1 1.0 5.0 370 398 r 1.48836 1 2 cbr 210 ------- 1 1.0 5.0 356 383 + 1.48836 2 3 cbr 210 ------- 1 1.0 5.0 356 383 r 1.48989 3 5 cbr 210 ------- 1 1.0 5.0 317 343 r 1.49029 2 3 cbr 210 ------- 1 1.0 5.0 336 362 + 1.49029 3 5 cbr 210 ------- 1 1.0 5.0 336 362 - 1.49029 3 5 cbr 210 ------- 1 1.0 5.0 336 362 - 1.49069 2 3 cbr 210 ------- 1 1.0 5.0 352 379 + 1.49125 1 2 cbr 210 ------- 1 1.0 5.0 371 399 - 1.49125 1 2 cbr 210 ------- 1 1.0 5.0 371 399 r 1.49211 1 2 cbr 210 ------- 1 1.0 5.0 357 385 + 1.49211 2 3 cbr 210 ------- 1 1.0 5.0 357 385 r 1.49325 3 5 cbr 210 ------- 1 1.0 5.0 318 344 r 1.49365 2 3 cbr 210 ------- 1 1.0 5.0 337 363 + 1.49365 3 5 cbr 210 ------- 1 1.0 5.0 337 363 - 1.49365 3 5 cbr 210 ------- 1 1.0 5.0 337 363 - 1.49405 2 3 cbr 210 ------- 1 1.0 5.0 353 380 + 1.495 1 2 cbr 210 ------- 1 1.0 5.0 372 400 - 1.495 1 2 cbr 210 ------- 1 1.0 5.0 372 400 r 1.49581 3 4 tcp 1000 ------- 0 0.0 4.0 14 338 + 1.49581 4 3 ack 40 ------- 0 4.0 0.0 10 401 - 1.49581 4 3 ack 40 ------- 0 4.0 0.0 10 401 r 1.49586 1 2 cbr 210 ------- 1 1.0 5.0 358 386 + 1.49586 2 3 cbr 210 ------- 1 1.0 5.0 358 386 r 1.49661 3 5 cbr 210 ------- 1 1.0 5.0 319 345 r 1.49701 2 3 cbr 210 ------- 1 1.0 5.0 338 364 + 1.49701 3 5 cbr 210 ------- 1 1.0 5.0 338 364 - 1.49701 3 5 cbr 210 ------- 1 1.0 5.0 338 364 - 1.49741 2 3 cbr 210 ------- 1 1.0 5.0 354 381 + 1.49875 1 2 cbr 210 ------- 1 1.0 5.0 373 402 - 1.49875 1 2 cbr 210 ------- 1 1.0 5.0 373 402 r 1.49961 1 2 cbr 210 ------- 1 1.0 5.0 359 387 + 1.49961 2 3 cbr 210 ------- 1 1.0 5.0 359 387 r 1.49997 3 5 cbr 210 ------- 1 1.0 5.0 320 346 r 1.50037 2 3 cbr 210 ------- 1 1.0 5.0 339 365 + 1.50037 3 5 cbr 210 ------- 1 1.0 5.0 339 365 - 1.50037 3 5 cbr 210 ------- 1 1.0 5.0 339 365 - 1.50077 2 3 cbr 210 ------- 1 1.0 5.0 355 382 + 1.5025 1 2 cbr 210 ------- 1 1.0 5.0 374 403 - 1.5025 1 2 cbr 210 ------- 1 1.0 5.0 374 403 r 1.50333 3 5 cbr 210 ------- 1 1.0 5.0 321 347 r 1.50336 1 2 cbr 210 ------- 1 1.0 5.0 360 388 + 1.50336 2 3 cbr 210 ------- 1 1.0 5.0 360 388 r 1.50373 2 3 cbr 210 ------- 1 1.0 5.0 340 367 + 1.50373 3 5 cbr 210 ------- 1 1.0 5.0 340 367 - 1.50373 3 5 cbr 210 ------- 1 1.0 5.0 340 367 - 1.50413 2 3 cbr 210 ------- 1 1.0 5.0 356 383 + 1.50625 1 2 cbr 210 ------- 1 1.0 5.0 375 404 - 1.50625 1 2 cbr 210 ------- 1 1.0 5.0 375 404 r 1.50669 3 5 cbr 210 ------- 1 1.0 5.0 322 348 r 1.50709 2 3 cbr 210 ------- 1 1.0 5.0 341 368 + 1.50709 3 5 cbr 210 ------- 1 1.0 5.0 341 368 - 1.50709 3 5 cbr 210 ------- 1 1.0 5.0 341 368 r 1.50711 1 2 cbr 210 ------- 1 1.0 5.0 361 389 + 1.50711 2 3 cbr 210 ------- 1 1.0 5.0 361 389 - 1.50749 2 3 cbr 210 ------- 1 1.0 5.0 357 385 + 1.51 1 2 cbr 210 ------- 1 1.0 5.0 376 405 - 1.51 1 2 cbr 210 ------- 1 1.0 5.0 376 405 r 1.51005 3 5 cbr 210 ------- 1 1.0 5.0 323 349 r 1.51045 2 3 cbr 210 ------- 1 1.0 5.0 342 369 + 1.51045 3 5 cbr 210 ------- 1 1.0 5.0 342 369 - 1.51045 3 5 cbr 210 ------- 1 1.0 5.0 342 369 - 1.51085 2 3 cbr 210 ------- 1 1.0 5.0 358 386 r 1.51086 1 2 cbr 210 ------- 1 1.0 5.0 362 390 + 1.51086 2 3 cbr 210 ------- 1 1.0 5.0 362 390 r 1.51341 3 5 cbr 210 ------- 1 1.0 5.0 324 350 + 1.51375 1 2 cbr 210 ------- 1 1.0 5.0 377 406 - 1.51375 1 2 cbr 210 ------- 1 1.0 5.0 377 406 r 1.51381 2 3 cbr 210 ------- 1 1.0 5.0 343 370 + 1.51381 3 5 cbr 210 ------- 1 1.0 5.0 343 370 - 1.51381 3 5 cbr 210 ------- 1 1.0 5.0 343 370 - 1.51421 2 3 cbr 210 ------- 1 1.0 5.0 359 387 r 1.51461 1 2 cbr 210 ------- 1 1.0 5.0 363 391 + 1.51461 2 3 cbr 210 ------- 1 1.0 5.0 363 391 r 1.51677 3 5 cbr 210 ------- 1 1.0 5.0 328 354 r 1.51717 2 3 cbr 210 ------- 1 1.0 5.0 344 371 + 1.51717 3 5 cbr 210 ------- 1 1.0 5.0 344 371 - 1.51717 3 5 cbr 210 ------- 1 1.0 5.0 344 371 + 1.5175 1 2 cbr 210 ------- 1 1.0 5.0 378 407 - 1.5175 1 2 cbr 210 ------- 1 1.0 5.0 378 407 - 1.51757 2 3 cbr 210 ------- 1 1.0 5.0 360 388 r 1.51836 1 2 cbr 210 ------- 1 1.0 5.0 364 392 + 1.51836 2 3 cbr 210 ------- 1 1.0 5.0 364 392 r 1.52013 3 5 cbr 210 ------- 1 1.0 5.0 329 355 r 1.52053 2 3 cbr 210 ------- 1 1.0 5.0 345 372 + 1.52053 3 5 cbr 210 ------- 1 1.0 5.0 345 372 - 1.52053 3 5 cbr 210 ------- 1 1.0 5.0 345 372 - 1.52093 2 3 cbr 210 ------- 1 1.0 5.0 361 389 + 1.52125 1 2 cbr 210 ------- 1 1.0 5.0 379 408 - 1.52125 1 2 cbr 210 ------- 1 1.0 5.0 379 408 r 1.52211 1 2 cbr 210 ------- 1 1.0 5.0 365 393 + 1.52211 2 3 cbr 210 ------- 1 1.0 5.0 365 393 r 1.52349 3 5 cbr 210 ------- 1 1.0 5.0 330 356 r 1.52389 2 3 cbr 210 ------- 1 1.0 5.0 346 373 + 1.52389 3 5 cbr 210 ------- 1 1.0 5.0 346 373 - 1.52389 3 5 cbr 210 ------- 1 1.0 5.0 346 373 - 1.52429 2 3 cbr 210 ------- 1 1.0 5.0 362 390 + 1.525 1 2 cbr 210 ------- 1 1.0 5.0 380 409 - 1.525 1 2 cbr 210 ------- 1 1.0 5.0 380 409 r 1.52501 2 0 ack 40 ------- 0 4.0 0.0 10 366 r 1.52586 1 2 cbr 210 ------- 1 1.0 5.0 366 394 + 1.52586 2 3 cbr 210 ------- 1 1.0 5.0 366 394 r 1.52685 3 5 cbr 210 ------- 1 1.0 5.0 331 357 r 1.52725 2 3 cbr 210 ------- 1 1.0 5.0 347 374 + 1.52725 3 5 cbr 210 ------- 1 1.0 5.0 347 374 - 1.52725 3 5 cbr 210 ------- 1 1.0 5.0 347 374 - 1.52765 2 3 cbr 210 ------- 1 1.0 5.0 363 391 + 1.52875 1 2 cbr 210 ------- 1 1.0 5.0 381 410 - 1.52875 1 2 cbr 210 ------- 1 1.0 5.0 381 410 r 1.52961 1 2 cbr 210 ------- 1 1.0 5.0 367 395 + 1.52961 2 3 cbr 210 ------- 1 1.0 5.0 367 395 r 1.53021 3 5 cbr 210 ------- 1 1.0 5.0 332 358 r 1.53061 2 3 cbr 210 ------- 1 1.0 5.0 348 375 + 1.53061 3 5 cbr 210 ------- 1 1.0 5.0 348 375 - 1.53061 3 5 cbr 210 ------- 1 1.0 5.0 348 375 - 1.53101 2 3 cbr 210 ------- 1 1.0 5.0 364 392 + 1.5325 1 2 cbr 210 ------- 1 1.0 5.0 382 411 - 1.5325 1 2 cbr 210 ------- 1 1.0 5.0 382 411 r 1.53336 1 2 cbr 210 ------- 1 1.0 5.0 368 396 + 1.53336 2 3 cbr 210 ------- 1 1.0 5.0 368 396 r 1.53357 3 5 cbr 210 ------- 1 1.0 5.0 333 359 r 1.53397 2 3 cbr 210 ------- 1 1.0 5.0 349 376 + 1.53397 3 5 cbr 210 ------- 1 1.0 5.0 349 376 - 1.53397 3 5 cbr 210 ------- 1 1.0 5.0 349 376 - 1.53437 2 3 cbr 210 ------- 1 1.0 5.0 365 393 + 1.53625 1 2 cbr 210 ------- 1 1.0 5.0 383 412 - 1.53625 1 2 cbr 210 ------- 1 1.0 5.0 383 412 r 1.53693 3 5 cbr 210 ------- 1 1.0 5.0 334 360 r 1.53711 1 2 cbr 210 ------- 1 1.0 5.0 369 397 + 1.53711 2 3 cbr 210 ------- 1 1.0 5.0 369 397 r 1.53733 2 3 cbr 210 ------- 1 1.0 5.0 350 377 + 1.53733 3 5 cbr 210 ------- 1 1.0 5.0 350 377 - 1.53733 3 5 cbr 210 ------- 1 1.0 5.0 350 377 r 1.53741 3 2 ack 40 ------- 0 4.0 0.0 10 384 + 1.53741 2 0 ack 40 ------- 0 4.0 0.0 10 384 - 1.53741 2 0 ack 40 ------- 0 4.0 0.0 10 384 - 1.53773 2 3 cbr 210 ------- 1 1.0 5.0 366 394 + 1.54 1 2 cbr 210 ------- 1 1.0 5.0 384 413 - 1.54 1 2 cbr 210 ------- 1 1.0 5.0 384 413 r 1.54029 3 5 cbr 210 ------- 1 1.0 5.0 335 361 r 1.54069 2 3 cbr 210 ------- 1 1.0 5.0 351 378 + 1.54069 3 5 cbr 210 ------- 1 1.0 5.0 351 378 - 1.54069 3 5 cbr 210 ------- 1 1.0 5.0 351 378 r 1.54086 1 2 cbr 210 ------- 1 1.0 5.0 370 398 + 1.54086 2 3 cbr 210 ------- 1 1.0 5.0 370 398 - 1.54109 2 3 cbr 210 ------- 1 1.0 5.0 367 395 r 1.54365 3 5 cbr 210 ------- 1 1.0 5.0 336 362 + 1.54375 1 2 cbr 210 ------- 1 1.0 5.0 385 414 - 1.54375 1 2 cbr 210 ------- 1 1.0 5.0 385 414 r 1.54405 2 3 cbr 210 ------- 1 1.0 5.0 352 379 + 1.54405 3 5 cbr 210 ------- 1 1.0 5.0 352 379 - 1.54405 3 5 cbr 210 ------- 1 1.0 5.0 352 379 - 1.54445 2 3 cbr 210 ------- 1 1.0 5.0 368 396 r 1.54461 1 2 cbr 210 ------- 1 1.0 5.0 371 399 + 1.54461 2 3 cbr 210 ------- 1 1.0 5.0 371 399 r 1.54645 4 3 ack 40 ------- 0 4.0 0.0 10 401 + 1.54645 3 2 ack 40 ------- 0 4.0 0.0 10 401 - 1.54645 3 2 ack 40 ------- 0 4.0 0.0 10 401 r 1.54701 3 5 cbr 210 ------- 1 1.0 5.0 337 363 r 1.54741 2 3 cbr 210 ------- 1 1.0 5.0 353 380 + 1.54741 3 5 cbr 210 ------- 1 1.0 5.0 353 380 - 1.54741 3 5 cbr 210 ------- 1 1.0 5.0 353 380 + 1.5475 1 2 cbr 210 ------- 1 1.0 5.0 386 415 - 1.5475 1 2 cbr 210 ------- 1 1.0 5.0 386 415 - 1.54781 2 3 cbr 210 ------- 1 1.0 5.0 369 397 r 1.54836 1 2 cbr 210 ------- 1 1.0 5.0 372 400 + 1.54836 2 3 cbr 210 ------- 1 1.0 5.0 372 400 r 1.55037 3 5 cbr 210 ------- 1 1.0 5.0 338 364 r 1.55077 2 3 cbr 210 ------- 1 1.0 5.0 354 381 + 1.55077 3 5 cbr 210 ------- 1 1.0 5.0 354 381 - 1.55077 3 5 cbr 210 ------- 1 1.0 5.0 354 381 - 1.55117 2 3 cbr 210 ------- 1 1.0 5.0 370 398 + 1.55125 1 2 cbr 210 ------- 1 1.0 5.0 387 416 - 1.55125 1 2 cbr 210 ------- 1 1.0 5.0 387 416 r 1.55211 1 2 cbr 210 ------- 1 1.0 5.0 373 402 + 1.55211 2 3 cbr 210 ------- 1 1.0 5.0 373 402 r 1.55373 3 5 cbr 210 ------- 1 1.0 5.0 339 365 r 1.55413 2 3 cbr 210 ------- 1 1.0 5.0 355 382 + 1.55413 3 5 cbr 210 ------- 1 1.0 5.0 355 382 - 1.55413 3 5 cbr 210 ------- 1 1.0 5.0 355 382 - 1.55453 2 3 cbr 210 ------- 1 1.0 5.0 371 399 + 1.555 1 2 cbr 210 ------- 1 1.0 5.0 388 417 - 1.555 1 2 cbr 210 ------- 1 1.0 5.0 388 417 r 1.55586 1 2 cbr 210 ------- 1 1.0 5.0 374 403 + 1.55586 2 3 cbr 210 ------- 1 1.0 5.0 374 403 r 1.55709 3 5 cbr 210 ------- 1 1.0 5.0 340 367 r 1.55749 2 3 cbr 210 ------- 1 1.0 5.0 356 383 + 1.55749 3 5 cbr 210 ------- 1 1.0 5.0 356 383 - 1.55749 3 5 cbr 210 ------- 1 1.0 5.0 356 383 - 1.55789 2 3 cbr 210 ------- 1 1.0 5.0 372 400 + 1.55875 1 2 cbr 210 ------- 1 1.0 5.0 389 418 - 1.55875 1 2 cbr 210 ------- 1 1.0 5.0 389 418 r 1.55961 1 2 cbr 210 ------- 1 1.0 5.0 375 404 + 1.55961 2 3 cbr 210 ------- 1 1.0 5.0 375 404 r 1.56045 3 5 cbr 210 ------- 1 1.0 5.0 341 368 r 1.56085 2 3 cbr 210 ------- 1 1.0 5.0 357 385 + 1.56085 3 5 cbr 210 ------- 1 1.0 5.0 357 385 - 1.56085 3 5 cbr 210 ------- 1 1.0 5.0 357 385 - 1.56125 2 3 cbr 210 ------- 1 1.0 5.0 373 402 + 1.5625 1 2 cbr 210 ------- 1 1.0 5.0 390 419 - 1.5625 1 2 cbr 210 ------- 1 1.0 5.0 390 419 r 1.56336 1 2 cbr 210 ------- 1 1.0 5.0 376 405 + 1.56336 2 3 cbr 210 ------- 1 1.0 5.0 376 405 r 1.56381 3 5 cbr 210 ------- 1 1.0 5.0 342 369 r 1.56421 2 3 cbr 210 ------- 1 1.0 5.0 358 386 + 1.56421 3 5 cbr 210 ------- 1 1.0 5.0 358 386 - 1.56421 3 5 cbr 210 ------- 1 1.0 5.0 358 386 - 1.56461 2 3 cbr 210 ------- 1 1.0 5.0 374 403 + 1.56625 1 2 cbr 210 ------- 1 1.0 5.0 391 420 - 1.56625 1 2 cbr 210 ------- 1 1.0 5.0 391 420 r 1.56711 1 2 cbr 210 ------- 1 1.0 5.0 377 406 + 1.56711 2 3 cbr 210 ------- 1 1.0 5.0 377 406 r 1.56717 3 5 cbr 210 ------- 1 1.0 5.0 343 370 r 1.56757 2 3 cbr 210 ------- 1 1.0 5.0 359 387 + 1.56757 3 5 cbr 210 ------- 1 1.0 5.0 359 387 - 1.56757 3 5 cbr 210 ------- 1 1.0 5.0 359 387 - 1.56797 2 3 cbr 210 ------- 1 1.0 5.0 375 404 + 1.57 1 2 cbr 210 ------- 1 1.0 5.0 392 421 - 1.57 1 2 cbr 210 ------- 1 1.0 5.0 392 421 r 1.57053 3 5 cbr 210 ------- 1 1.0 5.0 344 371 r 1.57086 1 2 cbr 210 ------- 1 1.0 5.0 378 407 + 1.57086 2 3 cbr 210 ------- 1 1.0 5.0 378 407 r 1.57093 2 3 cbr 210 ------- 1 1.0 5.0 360 388 + 1.57093 3 5 cbr 210 ------- 1 1.0 5.0 360 388 - 1.57093 3 5 cbr 210 ------- 1 1.0 5.0 360 388 - 1.57133 2 3 cbr 210 ------- 1 1.0 5.0 376 405 + 1.57375 1 2 cbr 210 ------- 1 1.0 5.0 393 422 - 1.57375 1 2 cbr 210 ------- 1 1.0 5.0 393 422 r 1.57389 3 5 cbr 210 ------- 1 1.0 5.0 345 372 r 1.57429 2 3 cbr 210 ------- 1 1.0 5.0 361 389 + 1.57429 3 5 cbr 210 ------- 1 1.0 5.0 361 389 - 1.57429 3 5 cbr 210 ------- 1 1.0 5.0 361 389 r 1.57461 1 2 cbr 210 ------- 1 1.0 5.0 379 408 + 1.57461 2 3 cbr 210 ------- 1 1.0 5.0 379 408 - 1.57469 2 3 cbr 210 ------- 1 1.0 5.0 377 406 r 1.57725 3 5 cbr 210 ------- 1 1.0 5.0 346 373 + 1.5775 1 2 cbr 210 ------- 1 1.0 5.0 394 423 - 1.5775 1 2 cbr 210 ------- 1 1.0 5.0 394 423 r 1.57765 2 3 cbr 210 ------- 1 1.0 5.0 362 390 + 1.57765 3 5 cbr 210 ------- 1 1.0 5.0 362 390 - 1.57765 3 5 cbr 210 ------- 1 1.0 5.0 362 390 - 1.57805 2 3 cbr 210 ------- 1 1.0 5.0 378 407 r 1.57836 1 2 cbr 210 ------- 1 1.0 5.0 380 409 + 1.57836 2 3 cbr 210 ------- 1 1.0 5.0 380 409 r 1.58061 3 5 cbr 210 ------- 1 1.0 5.0 347 374 r 1.58101 2 3 cbr 210 ------- 1 1.0 5.0 363 391 + 1.58101 3 5 cbr 210 ------- 1 1.0 5.0 363 391 - 1.58101 3 5 cbr 210 ------- 1 1.0 5.0 363 391 + 1.58125 1 2 cbr 210 ------- 1 1.0 5.0 395 424 - 1.58125 1 2 cbr 210 ------- 1 1.0 5.0 395 424 - 1.58141 2 3 cbr 210 ------- 1 1.0 5.0 379 408 r 1.58211 1 2 cbr 210 ------- 1 1.0 5.0 381 410 + 1.58211 2 3 cbr 210 ------- 1 1.0 5.0 381 410 r 1.58397 3 5 cbr 210 ------- 1 1.0 5.0 348 375 r 1.58437 2 3 cbr 210 ------- 1 1.0 5.0 364 392 + 1.58437 3 5 cbr 210 ------- 1 1.0 5.0 364 392 - 1.58437 3 5 cbr 210 ------- 1 1.0 5.0 364 392 - 1.58477 2 3 cbr 210 ------- 1 1.0 5.0 380 409 + 1.585 1 2 cbr 210 ------- 1 1.0 5.0 396 425 - 1.585 1 2 cbr 210 ------- 1 1.0 5.0 396 425 r 1.58586 1 2 cbr 210 ------- 1 1.0 5.0 382 411 + 1.58586 2 3 cbr 210 ------- 1 1.0 5.0 382 411 r 1.58733 3 5 cbr 210 ------- 1 1.0 5.0 349 376 r 1.58773 2 3 cbr 210 ------- 1 1.0 5.0 365 393 + 1.58773 3 5 cbr 210 ------- 1 1.0 5.0 365 393 - 1.58773 3 5 cbr 210 ------- 1 1.0 5.0 365 393 r 1.58805 2 0 ack 40 ------- 0 4.0 0.0 10 384 - 1.58813 2 3 cbr 210 ------- 1 1.0 5.0 381 410 + 1.58875 1 2 cbr 210 ------- 1 1.0 5.0 397 426 - 1.58875 1 2 cbr 210 ------- 1 1.0 5.0 397 426 r 1.58961 1 2 cbr 210 ------- 1 1.0 5.0 383 412 + 1.58961 2 3 cbr 210 ------- 1 1.0 5.0 383 412 r 1.59069 3 5 cbr 210 ------- 1 1.0 5.0 350 377 r 1.59109 2 3 cbr 210 ------- 1 1.0 5.0 366 394 + 1.59109 3 5 cbr 210 ------- 1 1.0 5.0 366 394 - 1.59109 3 5 cbr 210 ------- 1 1.0 5.0 366 394 - 1.59149 2 3 cbr 210 ------- 1 1.0 5.0 382 411 + 1.5925 1 2 cbr 210 ------- 1 1.0 5.0 398 427 - 1.5925 1 2 cbr 210 ------- 1 1.0 5.0 398 427 r 1.59336 1 2 cbr 210 ------- 1 1.0 5.0 384 413 + 1.59336 2 3 cbr 210 ------- 1 1.0 5.0 384 413 r 1.59405 3 5 cbr 210 ------- 1 1.0 5.0 351 378 r 1.59445 2 3 cbr 210 ------- 1 1.0 5.0 367 395 + 1.59445 3 5 cbr 210 ------- 1 1.0 5.0 367 395 - 1.59445 3 5 cbr 210 ------- 1 1.0 5.0 367 395 - 1.59485 2 3 cbr 210 ------- 1 1.0 5.0 383 412 + 1.59625 1 2 cbr 210 ------- 1 1.0 5.0 399 428 - 1.59625 1 2 cbr 210 ------- 1 1.0 5.0 399 428 r 1.59709 3 2 ack 40 ------- 0 4.0 0.0 10 401 + 1.59709 2 0 ack 40 ------- 0 4.0 0.0 10 401 - 1.59709 2 0 ack 40 ------- 0 4.0 0.0 10 401 r 1.59711 1 2 cbr 210 ------- 1 1.0 5.0 385 414 + 1.59711 2 3 cbr 210 ------- 1 1.0 5.0 385 414 r 1.59741 3 5 cbr 210 ------- 1 1.0 5.0 352 379 r 1.59781 2 3 cbr 210 ------- 1 1.0 5.0 368 396 + 1.59781 3 5 cbr 210 ------- 1 1.0 5.0 368 396 - 1.59781 3 5 cbr 210 ------- 1 1.0 5.0 368 396 - 1.59821 2 3 cbr 210 ------- 1 1.0 5.0 384 413 + 1.6 1 2 cbr 210 ------- 1 1.0 5.0 400 429 - 1.6 1 2 cbr 210 ------- 1 1.0 5.0 400 429 r 1.60077 3 5 cbr 210 ------- 1 1.0 5.0 353 380 r 1.60086 1 2 cbr 210 ------- 1 1.0 5.0 386 415 + 1.60086 2 3 cbr 210 ------- 1 1.0 5.0 386 415 r 1.60117 2 3 cbr 210 ------- 1 1.0 5.0 369 397 + 1.60117 3 5 cbr 210 ------- 1 1.0 5.0 369 397 - 1.60117 3 5 cbr 210 ------- 1 1.0 5.0 369 397 - 1.60157 2 3 cbr 210 ------- 1 1.0 5.0 385 414 + 1.60375 1 2 cbr 210 ------- 1 1.0 5.0 401 430 - 1.60375 1 2 cbr 210 ------- 1 1.0 5.0 401 430 r 1.60413 3 5 cbr 210 ------- 1 1.0 5.0 354 381 r 1.60453 2 3 cbr 210 ------- 1 1.0 5.0 370 398 + 1.60453 3 5 cbr 210 ------- 1 1.0 5.0 370 398 - 1.60453 3 5 cbr 210 ------- 1 1.0 5.0 370 398 r 1.60461 1 2 cbr 210 ------- 1 1.0 5.0 387 416 + 1.60461 2 3 cbr 210 ------- 1 1.0 5.0 387 416 - 1.60493 2 3 cbr 210 ------- 1 1.0 5.0 386 415 r 1.60749 3 5 cbr 210 ------- 1 1.0 5.0 355 382 + 1.6075 1 2 cbr 210 ------- 1 1.0 5.0 402 431 - 1.6075 1 2 cbr 210 ------- 1 1.0 5.0 402 431 r 1.60789 2 3 cbr 210 ------- 1 1.0 5.0 371 399 + 1.60789 3 5 cbr 210 ------- 1 1.0 5.0 371 399 - 1.60789 3 5 cbr 210 ------- 1 1.0 5.0 371 399 - 1.60829 2 3 cbr 210 ------- 1 1.0 5.0 387 416 r 1.60836 1 2 cbr 210 ------- 1 1.0 5.0 388 417 + 1.60836 2 3 cbr 210 ------- 1 1.0 5.0 388 417 r 1.61085 3 5 cbr 210 ------- 1 1.0 5.0 356 383 + 1.61125 1 2 cbr 210 ------- 1 1.0 5.0 403 432 - 1.61125 1 2 cbr 210 ------- 1 1.0 5.0 403 432 r 1.61125 2 3 cbr 210 ------- 1 1.0 5.0 372 400 + 1.61125 3 5 cbr 210 ------- 1 1.0 5.0 372 400 - 1.61125 3 5 cbr 210 ------- 1 1.0 5.0 372 400 - 1.61165 2 3 cbr 210 ------- 1 1.0 5.0 388 417 r 1.61211 1 2 cbr 210 ------- 1 1.0 5.0 389 418 + 1.61211 2 3 cbr 210 ------- 1 1.0 5.0 389 418 r 1.61421 3 5 cbr 210 ------- 1 1.0 5.0 357 385 r 1.61461 2 3 cbr 210 ------- 1 1.0 5.0 373 402 + 1.61461 3 5 cbr 210 ------- 1 1.0 5.0 373 402 - 1.61461 3 5 cbr 210 ------- 1 1.0 5.0 373 402 + 1.615 1 2 cbr 210 ------- 1 1.0 5.0 404 433 - 1.615 1 2 cbr 210 ------- 1 1.0 5.0 404 433 - 1.61501 2 3 cbr 210 ------- 1 1.0 5.0 389 418 r 1.61586 1 2 cbr 210 ------- 1 1.0 5.0 390 419 + 1.61586 2 3 cbr 210 ------- 1 1.0 5.0 390 419 r 1.61757 3 5 cbr 210 ------- 1 1.0 5.0 358 386 r 1.61797 2 3 cbr 210 ------- 1 1.0 5.0 374 403 + 1.61797 3 5 cbr 210 ------- 1 1.0 5.0 374 403 - 1.61797 3 5 cbr 210 ------- 1 1.0 5.0 374 403 - 1.61837 2 3 cbr 210 ------- 1 1.0 5.0 390 419 + 1.61875 1 2 cbr 210 ------- 1 1.0 5.0 405 434 - 1.61875 1 2 cbr 210 ------- 1 1.0 5.0 405 434 r 1.61961 1 2 cbr 210 ------- 1 1.0 5.0 391 420 + 1.61961 2 3 cbr 210 ------- 1 1.0 5.0 391 420 r 1.62093 3 5 cbr 210 ------- 1 1.0 5.0 359 387 r 1.62133 2 3 cbr 210 ------- 1 1.0 5.0 375 404 + 1.62133 3 5 cbr 210 ------- 1 1.0 5.0 375 404 - 1.62133 3 5 cbr 210 ------- 1 1.0 5.0 375 404 - 1.62173 2 3 cbr 210 ------- 1 1.0 5.0 391 420 + 1.6225 1 2 cbr 210 ------- 1 1.0 5.0 406 435 - 1.6225 1 2 cbr 210 ------- 1 1.0 5.0 406 435 r 1.62336 1 2 cbr 210 ------- 1 1.0 5.0 392 421 + 1.62336 2 3 cbr 210 ------- 1 1.0 5.0 392 421 r 1.62429 3 5 cbr 210 ------- 1 1.0 5.0 360 388 r 1.62469 2 3 cbr 210 ------- 1 1.0 5.0 376 405 + 1.62469 3 5 cbr 210 ------- 1 1.0 5.0 376 405 - 1.62469 3 5 cbr 210 ------- 1 1.0 5.0 376 405 - 1.62509 2 3 cbr 210 ------- 1 1.0 5.0 392 421 + 1.62625 1 2 cbr 210 ------- 1 1.0 5.0 407 436 - 1.62625 1 2 cbr 210 ------- 1 1.0 5.0 407 436 r 1.62711 1 2 cbr 210 ------- 1 1.0 5.0 393 422 + 1.62711 2 3 cbr 210 ------- 1 1.0 5.0 393 422 r 1.62765 3 5 cbr 210 ------- 1 1.0 5.0 361 389 r 1.62805 2 3 cbr 210 ------- 1 1.0 5.0 377 406 + 1.62805 3 5 cbr 210 ------- 1 1.0 5.0 377 406 - 1.62805 3 5 cbr 210 ------- 1 1.0 5.0 377 406 - 1.62845 2 3 cbr 210 ------- 1 1.0 5.0 393 422 + 1.63 1 2 cbr 210 ------- 1 1.0 5.0 408 437 - 1.63 1 2 cbr 210 ------- 1 1.0 5.0 408 437 r 1.63086 1 2 cbr 210 ------- 1 1.0 5.0 394 423 + 1.63086 2 3 cbr 210 ------- 1 1.0 5.0 394 423 r 1.63101 3 5 cbr 210 ------- 1 1.0 5.0 362 390 r 1.63141 2 3 cbr 210 ------- 1 1.0 5.0 378 407 + 1.63141 3 5 cbr 210 ------- 1 1.0 5.0 378 407 - 1.63141 3 5 cbr 210 ------- 1 1.0 5.0 378 407 - 1.63181 2 3 cbr 210 ------- 1 1.0 5.0 394 423 + 1.63375 1 2 cbr 210 ------- 1 1.0 5.0 409 438 - 1.63375 1 2 cbr 210 ------- 1 1.0 5.0 409 438 r 1.63437 3 5 cbr 210 ------- 1 1.0 5.0 363 391 r 1.63461 1 2 cbr 210 ------- 1 1.0 5.0 395 424 + 1.63461 2 3 cbr 210 ------- 1 1.0 5.0 395 424 r 1.63477 2 3 cbr 210 ------- 1 1.0 5.0 379 408 + 1.63477 3 5 cbr 210 ------- 1 1.0 5.0 379 408 - 1.63477 3 5 cbr 210 ------- 1 1.0 5.0 379 408 - 1.63517 2 3 cbr 210 ------- 1 1.0 5.0 395 424 + 1.6375 1 2 cbr 210 ------- 1 1.0 5.0 410 439 - 1.6375 1 2 cbr 210 ------- 1 1.0 5.0 410 439 r 1.63773 3 5 cbr 210 ------- 1 1.0 5.0 364 392 r 1.63813 2 3 cbr 210 ------- 1 1.0 5.0 380 409 + 1.63813 3 5 cbr 210 ------- 1 1.0 5.0 380 409 - 1.63813 3 5 cbr 210 ------- 1 1.0 5.0 380 409 r 1.63836 1 2 cbr 210 ------- 1 1.0 5.0 396 425 + 1.63836 2 3 cbr 210 ------- 1 1.0 5.0 396 425 - 1.63853 2 3 cbr 210 ------- 1 1.0 5.0 396 425 r 1.64109 3 5 cbr 210 ------- 1 1.0 5.0 365 393 + 1.64125 1 2 cbr 210 ------- 1 1.0 5.0 411 440 - 1.64125 1 2 cbr 210 ------- 1 1.0 5.0 411 440 r 1.64149 2 3 cbr 210 ------- 1 1.0 5.0 381 410 + 1.64149 3 5 cbr 210 ------- 1 1.0 5.0 381 410 - 1.64149 3 5 cbr 210 ------- 1 1.0 5.0 381 410 r 1.64211 1 2 cbr 210 ------- 1 1.0 5.0 397 426 + 1.64211 2 3 cbr 210 ------- 1 1.0 5.0 397 426 - 1.64211 2 3 cbr 210 ------- 1 1.0 5.0 397 426 r 1.64445 3 5 cbr 210 ------- 1 1.0 5.0 366 394 r 1.64485 2 3 cbr 210 ------- 1 1.0 5.0 382 411 + 1.64485 3 5 cbr 210 ------- 1 1.0 5.0 382 411 - 1.64485 3 5 cbr 210 ------- 1 1.0 5.0 382 411 + 1.645 1 2 cbr 210 ------- 1 1.0 5.0 412 441 - 1.645 1 2 cbr 210 ------- 1 1.0 5.0 412 441 r 1.64586 1 2 cbr 210 ------- 1 1.0 5.0 398 427 + 1.64586 2 3 cbr 210 ------- 1 1.0 5.0 398 427 - 1.64586 2 3 cbr 210 ------- 1 1.0 5.0 398 427 r 1.64773 2 0 ack 40 ------- 0 4.0 0.0 10 401 + 1.64773 0 2 tcp 1000 ------- 0 0.0 4.0 11 442 - 1.64773 0 2 tcp 1000 ------- 0 0.0 4.0 11 442 + 1.64773 0 2 tcp 1000 ------- 0 0.0 4.0 12 443 + 1.64773 0 2 tcp 1000 ------- 0 0.0 4.0 13 444 + 1.64773 0 2 tcp 1000 ------- 0 0.0 4.0 14 445 r 1.64781 3 5 cbr 210 ------- 1 1.0 5.0 367 395 r 1.64821 2 3 cbr 210 ------- 1 1.0 5.0 383 412 + 1.64821 3 5 cbr 210 ------- 1 1.0 5.0 383 412 - 1.64821 3 5 cbr 210 ------- 1 1.0 5.0 383 412 + 1.64875 1 2 cbr 210 ------- 1 1.0 5.0 413 446 - 1.64875 1 2 cbr 210 ------- 1 1.0 5.0 413 446 r 1.64961 1 2 cbr 210 ------- 1 1.0 5.0 399 428 + 1.64961 2 3 cbr 210 ------- 1 1.0 5.0 399 428 - 1.64961 2 3 cbr 210 ------- 1 1.0 5.0 399 428 r 1.65117 3 5 cbr 210 ------- 1 1.0 5.0 368 396 r 1.65157 2 3 cbr 210 ------- 1 1.0 5.0 384 413 + 1.65157 3 5 cbr 210 ------- 1 1.0 5.0 384 413 - 1.65157 3 5 cbr 210 ------- 1 1.0 5.0 384 413 + 1.6525 1 2 cbr 210 ------- 1 1.0 5.0 414 447 - 1.6525 1 2 cbr 210 ------- 1 1.0 5.0 414 447 r 1.65336 1 2 cbr 210 ------- 1 1.0 5.0 400 429 + 1.65336 2 3 cbr 210 ------- 1 1.0 5.0 400 429 - 1.65336 2 3 cbr 210 ------- 1 1.0 5.0 400 429 r 1.65453 3 5 cbr 210 ------- 1 1.0 5.0 369 397 r 1.65493 2 3 cbr 210 ------- 1 1.0 5.0 385 414 + 1.65493 3 5 cbr 210 ------- 1 1.0 5.0 385 414 - 1.65493 3 5 cbr 210 ------- 1 1.0 5.0 385 414 + 1.65625 1 2 cbr 210 ------- 1 1.0 5.0 415 448 - 1.65625 1 2 cbr 210 ------- 1 1.0 5.0 415 448 r 1.65711 1 2 cbr 210 ------- 1 1.0 5.0 401 430 + 1.65711 2 3 cbr 210 ------- 1 1.0 5.0 401 430 - 1.65711 2 3 cbr 210 ------- 1 1.0 5.0 401 430 r 1.65789 3 5 cbr 210 ------- 1 1.0 5.0 370 398 r 1.65829 2 3 cbr 210 ------- 1 1.0 5.0 386 415 + 1.65829 3 5 cbr 210 ------- 1 1.0 5.0 386 415 - 1.65829 3 5 cbr 210 ------- 1 1.0 5.0 386 415 + 1.66 1 2 cbr 210 ------- 1 1.0 5.0 416 449 - 1.66 1 2 cbr 210 ------- 1 1.0 5.0 416 449 r 1.66086 1 2 cbr 210 ------- 1 1.0 5.0 402 431 + 1.66086 2 3 cbr 210 ------- 1 1.0 5.0 402 431 - 1.66086 2 3 cbr 210 ------- 1 1.0 5.0 402 431 r 1.66125 3 5 cbr 210 ------- 1 1.0 5.0 371 399 r 1.66165 2 3 cbr 210 ------- 1 1.0 5.0 387 416 + 1.66165 3 5 cbr 210 ------- 1 1.0 5.0 387 416 - 1.66165 3 5 cbr 210 ------- 1 1.0 5.0 387 416 - 1.66373 0 2 tcp 1000 ------- 0 0.0 4.0 12 443 + 1.66375 1 2 cbr 210 ------- 1 1.0 5.0 417 450 - 1.66375 1 2 cbr 210 ------- 1 1.0 5.0 417 450 r 1.66461 1 2 cbr 210 ------- 1 1.0 5.0 403 432 + 1.66461 2 3 cbr 210 ------- 1 1.0 5.0 403 432 - 1.66461 2 3 cbr 210 ------- 1 1.0 5.0 403 432 r 1.66461 3 5 cbr 210 ------- 1 1.0 5.0 372 400 r 1.66501 2 3 cbr 210 ------- 1 1.0 5.0 388 417 + 1.66501 3 5 cbr 210 ------- 1 1.0 5.0 388 417 - 1.66501 3 5 cbr 210 ------- 1 1.0 5.0 388 417 + 1.6675 1 2 cbr 210 ------- 1 1.0 5.0 418 451 - 1.6675 1 2 cbr 210 ------- 1 1.0 5.0 418 451 r 1.66797 3 5 cbr 210 ------- 1 1.0 5.0 373 402 r 1.66836 1 2 cbr 210 ------- 1 1.0 5.0 404 433 + 1.66836 2 3 cbr 210 ------- 1 1.0 5.0 404 433 - 1.66836 2 3 cbr 210 ------- 1 1.0 5.0 404 433 r 1.66837 2 3 cbr 210 ------- 1 1.0 5.0 389 418 + 1.66837 3 5 cbr 210 ------- 1 1.0 5.0 389 418 - 1.66837 3 5 cbr 210 ------- 1 1.0 5.0 389 418 + 1.67125 1 2 cbr 210 ------- 1 1.0 5.0 419 452 - 1.67125 1 2 cbr 210 ------- 1 1.0 5.0 419 452 r 1.67133 3 5 cbr 210 ------- 1 1.0 5.0 374 403 r 1.67173 2 3 cbr 210 ------- 1 1.0 5.0 390 419 + 1.67173 3 5 cbr 210 ------- 1 1.0 5.0 390 419 - 1.67173 3 5 cbr 210 ------- 1 1.0 5.0 390 419 r 1.67211 1 2 cbr 210 ------- 1 1.0 5.0 405 434 + 1.67211 2 3 cbr 210 ------- 1 1.0 5.0 405 434 - 1.67211 2 3 cbr 210 ------- 1 1.0 5.0 405 434 r 1.67469 3 5 cbr 210 ------- 1 1.0 5.0 375 404 + 1.675 1 2 cbr 210 ------- 1 1.0 5.0 420 453 - 1.675 1 2 cbr 210 ------- 1 1.0 5.0 420 453 r 1.67509 2 3 cbr 210 ------- 1 1.0 5.0 391 420 + 1.67509 3 5 cbr 210 ------- 1 1.0 5.0 391 420 - 1.67509 3 5 cbr 210 ------- 1 1.0 5.0 391 420 r 1.67586 1 2 cbr 210 ------- 1 1.0 5.0 406 435 + 1.67586 2 3 cbr 210 ------- 1 1.0 5.0 406 435 - 1.67586 2 3 cbr 210 ------- 1 1.0 5.0 406 435 r 1.67805 3 5 cbr 210 ------- 1 1.0 5.0 376 405 r 1.67845 2 3 cbr 210 ------- 1 1.0 5.0 392 421 + 1.67845 3 5 cbr 210 ------- 1 1.0 5.0 392 421 - 1.67845 3 5 cbr 210 ------- 1 1.0 5.0 392 421 + 1.67875 1 2 cbr 210 ------- 1 1.0 5.0 421 454 - 1.67875 1 2 cbr 210 ------- 1 1.0 5.0 421 454 r 1.67961 1 2 cbr 210 ------- 1 1.0 5.0 407 436 + 1.67961 2 3 cbr 210 ------- 1 1.0 5.0 407 436 - 1.67961 2 3 cbr 210 ------- 1 1.0 5.0 407 436 - 1.67973 0 2 tcp 1000 ------- 0 0.0 4.0 13 444 r 1.68141 3 5 cbr 210 ------- 1 1.0 5.0 377 406 r 1.68181 2 3 cbr 210 ------- 1 1.0 5.0 393 422 + 1.68181 3 5 cbr 210 ------- 1 1.0 5.0 393 422 - 1.68181 3 5 cbr 210 ------- 1 1.0 5.0 393 422 + 1.6825 1 2 cbr 210 ------- 1 1.0 5.0 422 455 - 1.6825 1 2 cbr 210 ------- 1 1.0 5.0 422 455 r 1.68336 1 2 cbr 210 ------- 1 1.0 5.0 408 437 + 1.68336 2 3 cbr 210 ------- 1 1.0 5.0 408 437 - 1.68336 2 3 cbr 210 ------- 1 1.0 5.0 408 437 r 1.68477 3 5 cbr 210 ------- 1 1.0 5.0 378 407 r 1.68517 2 3 cbr 210 ------- 1 1.0 5.0 394 423 + 1.68517 3 5 cbr 210 ------- 1 1.0 5.0 394 423 - 1.68517 3 5 cbr 210 ------- 1 1.0 5.0 394 423 + 1.68625 1 2 cbr 210 ------- 1 1.0 5.0 423 456 - 1.68625 1 2 cbr 210 ------- 1 1.0 5.0 423 456 r 1.68711 1 2 cbr 210 ------- 1 1.0 5.0 409 438 + 1.68711 2 3 cbr 210 ------- 1 1.0 5.0 409 438 - 1.68711 2 3 cbr 210 ------- 1 1.0 5.0 409 438 r 1.68813 3 5 cbr 210 ------- 1 1.0 5.0 379 408 r 1.68853 2 3 cbr 210 ------- 1 1.0 5.0 395 424 + 1.68853 3 5 cbr 210 ------- 1 1.0 5.0 395 424 - 1.68853 3 5 cbr 210 ------- 1 1.0 5.0 395 424 + 1.69 1 2 cbr 210 ------- 1 1.0 5.0 424 457 - 1.69 1 2 cbr 210 ------- 1 1.0 5.0 424 457 r 1.69086 1 2 cbr 210 ------- 1 1.0 5.0 410 439 + 1.69086 2 3 cbr 210 ------- 1 1.0 5.0 410 439 - 1.69086 2 3 cbr 210 ------- 1 1.0 5.0 410 439 r 1.69149 3 5 cbr 210 ------- 1 1.0 5.0 380 409 r 1.69189 2 3 cbr 210 ------- 1 1.0 5.0 396 425 + 1.69189 3 5 cbr 210 ------- 1 1.0 5.0 396 425 - 1.69189 3 5 cbr 210 ------- 1 1.0 5.0 396 425 + 1.69375 1 2 cbr 210 ------- 1 1.0 5.0 425 458 - 1.69375 1 2 cbr 210 ------- 1 1.0 5.0 425 458 r 1.69461 1 2 cbr 210 ------- 1 1.0 5.0 411 440 + 1.69461 2 3 cbr 210 ------- 1 1.0 5.0 411 440 - 1.69461 2 3 cbr 210 ------- 1 1.0 5.0 411 440 r 1.69485 3 5 cbr 210 ------- 1 1.0 5.0 381 410 r 1.69547 2 3 cbr 210 ------- 1 1.0 5.0 397 426 + 1.69547 3 5 cbr 210 ------- 1 1.0 5.0 397 426 - 1.69547 3 5 cbr 210 ------- 1 1.0 5.0 397 426 - 1.69573 0 2 tcp 1000 ------- 0 0.0 4.0 14 445 + 1.6975 1 2 cbr 210 ------- 1 1.0 5.0 426 459 - 1.6975 1 2 cbr 210 ------- 1 1.0 5.0 426 459 r 1.69821 3 5 cbr 210 ------- 1 1.0 5.0 382 411 r 1.69836 1 2 cbr 210 ------- 1 1.0 5.0 412 441 + 1.69836 2 3 cbr 210 ------- 1 1.0 5.0 412 441 - 1.69836 2 3 cbr 210 ------- 1 1.0 5.0 412 441 r 1.69922 2 3 cbr 210 ------- 1 1.0 5.0 398 427 + 1.69922 3 5 cbr 210 ------- 1 1.0 5.0 398 427 - 1.69922 3 5 cbr 210 ------- 1 1.0 5.0 398 427 + 1.70125 1 2 cbr 210 ------- 1 1.0 5.0 427 460 - 1.70125 1 2 cbr 210 ------- 1 1.0 5.0 427 460 r 1.70157 3 5 cbr 210 ------- 1 1.0 5.0 383 412 r 1.70211 1 2 cbr 210 ------- 1 1.0 5.0 413 446 + 1.70211 2 3 cbr 210 ------- 1 1.0 5.0 413 446 - 1.70211 2 3 cbr 210 ------- 1 1.0 5.0 413 446 r 1.70297 2 3 cbr 210 ------- 1 1.0 5.0 399 428 + 1.70297 3 5 cbr 210 ------- 1 1.0 5.0 399 428 - 1.70297 3 5 cbr 210 ------- 1 1.0 5.0 399 428 r 1.70493 3 5 cbr 210 ------- 1 1.0 5.0 384 413 + 1.705 1 2 cbr 210 ------- 1 1.0 5.0 428 461 - 1.705 1 2 cbr 210 ------- 1 1.0 5.0 428 461 r 1.70586 1 2 cbr 210 ------- 1 1.0 5.0 414 447 + 1.70586 2 3 cbr 210 ------- 1 1.0 5.0 414 447 - 1.70586 2 3 cbr 210 ------- 1 1.0 5.0 414 447 r 1.70672 2 3 cbr 210 ------- 1 1.0 5.0 400 429 + 1.70672 3 5 cbr 210 ------- 1 1.0 5.0 400 429 - 1.70672 3 5 cbr 210 ------- 1 1.0 5.0 400 429 r 1.70829 3 5 cbr 210 ------- 1 1.0 5.0 385 414 + 1.70875 1 2 cbr 210 ------- 1 1.0 5.0 429 462 - 1.70875 1 2 cbr 210 ------- 1 1.0 5.0 429 462 r 1.70961 1 2 cbr 210 ------- 1 1.0 5.0 415 448 + 1.70961 2 3 cbr 210 ------- 1 1.0 5.0 415 448 - 1.70961 2 3 cbr 210 ------- 1 1.0 5.0 415 448 r 1.71047 2 3 cbr 210 ------- 1 1.0 5.0 401 430 + 1.71047 3 5 cbr 210 ------- 1 1.0 5.0 401 430 - 1.71047 3 5 cbr 210 ------- 1 1.0 5.0 401 430 r 1.71165 3 5 cbr 210 ------- 1 1.0 5.0 386 415 + 1.7125 1 2 cbr 210 ------- 1 1.0 5.0 430 463 - 1.7125 1 2 cbr 210 ------- 1 1.0 5.0 430 463 r 1.71336 1 2 cbr 210 ------- 1 1.0 5.0 416 449 + 1.71336 2 3 cbr 210 ------- 1 1.0 5.0 416 449 - 1.71336 2 3 cbr 210 ------- 1 1.0 5.0 416 449 r 1.71373 0 2 tcp 1000 ------- 0 0.0 4.0 11 442 + 1.71373 2 3 tcp 1000 ------- 0 0.0 4.0 11 442 r 1.71422 2 3 cbr 210 ------- 1 1.0 5.0 402 431 + 1.71422 3 5 cbr 210 ------- 1 1.0 5.0 402 431 - 1.71422 3 5 cbr 210 ------- 1 1.0 5.0 402 431 r 1.71501 3 5 cbr 210 ------- 1 1.0 5.0 387 416 + 1.71625 1 2 cbr 210 ------- 1 1.0 5.0 431 464 - 1.71625 1 2 cbr 210 ------- 1 1.0 5.0 431 464 - 1.71672 2 3 tcp 1000 ------- 0 0.0 4.0 11 442 r 1.71711 1 2 cbr 210 ------- 1 1.0 5.0 417 450 + 1.71711 2 3 cbr 210 ------- 1 1.0 5.0 417 450 r 1.71797 2 3 cbr 210 ------- 1 1.0 5.0 403 432 + 1.71797 3 5 cbr 210 ------- 1 1.0 5.0 403 432 - 1.71797 3 5 cbr 210 ------- 1 1.0 5.0 403 432 r 1.71837 3 5 cbr 210 ------- 1 1.0 5.0 388 417 + 1.72 1 2 cbr 210 ------- 1 1.0 5.0 432 465 - 1.72 1 2 cbr 210 ------- 1 1.0 5.0 432 465 r 1.72086 1 2 cbr 210 ------- 1 1.0 5.0 418 451 + 1.72086 2 3 cbr 210 ------- 1 1.0 5.0 418 451 r 1.72172 2 3 cbr 210 ------- 1 1.0 5.0 404 433 + 1.72172 3 5 cbr 210 ------- 1 1.0 5.0 404 433 - 1.72172 3 5 cbr 210 ------- 1 1.0 5.0 404 433 r 1.72173 3 5 cbr 210 ------- 1 1.0 5.0 389 418 + 1.72375 1 2 cbr 210 ------- 1 1.0 5.0 433 466 - 1.72375 1 2 cbr 210 ------- 1 1.0 5.0 433 466 r 1.72461 1 2 cbr 210 ------- 1 1.0 5.0 419 452 + 1.72461 2 3 cbr 210 ------- 1 1.0 5.0 419 452 r 1.72509 3 5 cbr 210 ------- 1 1.0 5.0 390 419 r 1.72547 2 3 cbr 210 ------- 1 1.0 5.0 405 434 + 1.72547 3 5 cbr 210 ------- 1 1.0 5.0 405 434 - 1.72547 3 5 cbr 210 ------- 1 1.0 5.0 405 434 + 1.7275 1 2 cbr 210 ------- 1 1.0 5.0 434 467 - 1.7275 1 2 cbr 210 ------- 1 1.0 5.0 434 467 r 1.72836 1 2 cbr 210 ------- 1 1.0 5.0 420 453 + 1.72836 2 3 cbr 210 ------- 1 1.0 5.0 420 453 r 1.72845 3 5 cbr 210 ------- 1 1.0 5.0 391 420 r 1.72922 2 3 cbr 210 ------- 1 1.0 5.0 406 435 + 1.72922 3 5 cbr 210 ------- 1 1.0 5.0 406 435 - 1.72922 3 5 cbr 210 ------- 1 1.0 5.0 406 435 r 1.72973 0 2 tcp 1000 ------- 0 0.0 4.0 12 443 + 1.72973 2 3 tcp 1000 ------- 0 0.0 4.0 12 443 + 1.73125 1 2 cbr 210 ------- 1 1.0 5.0 435 468 - 1.73125 1 2 cbr 210 ------- 1 1.0 5.0 435 468 r 1.73181 3 5 cbr 210 ------- 1 1.0 5.0 392 421 r 1.73211 1 2 cbr 210 ------- 1 1.0 5.0 421 454 + 1.73211 2 3 cbr 210 ------- 1 1.0 5.0 421 454 - 1.73272 2 3 cbr 210 ------- 1 1.0 5.0 417 450 r 1.73297 2 3 cbr 210 ------- 1 1.0 5.0 407 436 + 1.73297 3 5 cbr 210 ------- 1 1.0 5.0 407 436 - 1.73297 3 5 cbr 210 ------- 1 1.0 5.0 407 436 + 1.735 1 2 cbr 210 ------- 1 1.0 5.0 436 469 - 1.735 1 2 cbr 210 ------- 1 1.0 5.0 436 469 r 1.73517 3 5 cbr 210 ------- 1 1.0 5.0 393 422 r 1.73586 1 2 cbr 210 ------- 1 1.0 5.0 422 455 + 1.73586 2 3 cbr 210 ------- 1 1.0 5.0 422 455 - 1.73608 2 3 cbr 210 ------- 1 1.0 5.0 418 451 r 1.73672 2 3 cbr 210 ------- 1 1.0 5.0 408 437 + 1.73672 3 5 cbr 210 ------- 1 1.0 5.0 408 437 - 1.73672 3 5 cbr 210 ------- 1 1.0 5.0 408 437 r 1.73853 3 5 cbr 210 ------- 1 1.0 5.0 394 423 + 1.73875 1 2 cbr 210 ------- 1 1.0 5.0 437 470 - 1.73875 1 2 cbr 210 ------- 1 1.0 5.0 437 470 - 1.73944 2 3 cbr 210 ------- 1 1.0 5.0 419 452 r 1.73961 1 2 cbr 210 ------- 1 1.0 5.0 423 456 + 1.73961 2 3 cbr 210 ------- 1 1.0 5.0 423 456 r 1.74047 2 3 cbr 210 ------- 1 1.0 5.0 409 438 + 1.74047 3 5 cbr 210 ------- 1 1.0 5.0 409 438 - 1.74047 3 5 cbr 210 ------- 1 1.0 5.0 409 438 r 1.74189 3 5 cbr 210 ------- 1 1.0 5.0 395 424 + 1.7425 1 2 cbr 210 ------- 1 1.0 5.0 438 471 - 1.7425 1 2 cbr 210 ------- 1 1.0 5.0 438 471 - 1.7428 2 3 cbr 210 ------- 1 1.0 5.0 420 453 r 1.74336 1 2 cbr 210 ------- 1 1.0 5.0 424 457 + 1.74336 2 3 cbr 210 ------- 1 1.0 5.0 424 457 r 1.74422 2 3 cbr 210 ------- 1 1.0 5.0 410 439 + 1.74422 3 5 cbr 210 ------- 1 1.0 5.0 410 439 - 1.74422 3 5 cbr 210 ------- 1 1.0 5.0 410 439 r 1.74525 3 5 cbr 210 ------- 1 1.0 5.0 396 425 r 1.74573 0 2 tcp 1000 ------- 0 0.0 4.0 13 444 + 1.74573 2 3 tcp 1000 ------- 0 0.0 4.0 13 444 - 1.74616 2 3 tcp 1000 ------- 0 0.0 4.0 12 443 + 1.74625 1 2 cbr 210 ------- 1 1.0 5.0 439 472 - 1.74625 1 2 cbr 210 ------- 1 1.0 5.0 439 472 r 1.74711 1 2 cbr 210 ------- 1 1.0 5.0 425 458 + 1.74711 2 3 cbr 210 ------- 1 1.0 5.0 425 458 r 1.74797 2 3 cbr 210 ------- 1 1.0 5.0 411 440 + 1.74797 3 5 cbr 210 ------- 1 1.0 5.0 411 440 - 1.74797 3 5 cbr 210 ------- 1 1.0 5.0 411 440 r 1.74883 3 5 cbr 210 ------- 1 1.0 5.0 397 426 + 1.75 1 2 cbr 210 ------- 1 1.0 5.0 440 473 - 1.75 1 2 cbr 210 ------- 1 1.0 5.0 440 473 r 1.75086 1 2 cbr 210 ------- 1 1.0 5.0 426 459 + 1.75086 2 3 cbr 210 ------- 1 1.0 5.0 426 459 r 1.75172 2 3 cbr 210 ------- 1 1.0 5.0 412 441 + 1.75172 3 5 cbr 210 ------- 1 1.0 5.0 412 441 - 1.75172 3 5 cbr 210 ------- 1 1.0 5.0 412 441 r 1.75258 3 5 cbr 210 ------- 1 1.0 5.0 398 427 + 1.75375 1 2 cbr 210 ------- 1 1.0 5.0 441 474 - 1.75375 1 2 cbr 210 ------- 1 1.0 5.0 441 474 r 1.75461 1 2 cbr 210 ------- 1 1.0 5.0 427 460 + 1.75461 2 3 cbr 210 ------- 1 1.0 5.0 427 460 r 1.75547 2 3 cbr 210 ------- 1 1.0 5.0 413 446 + 1.75547 3 5 cbr 210 ------- 1 1.0 5.0 413 446 - 1.75547 3 5 cbr 210 ------- 1 1.0 5.0 413 446 r 1.75633 3 5 cbr 210 ------- 1 1.0 5.0 399 428 + 1.7575 1 2 cbr 210 ------- 1 1.0 5.0 442 475 - 1.7575 1 2 cbr 210 ------- 1 1.0 5.0 442 475 r 1.75836 1 2 cbr 210 ------- 1 1.0 5.0 428 461 + 1.75836 2 3 cbr 210 ------- 1 1.0 5.0 428 461 r 1.75922 2 3 cbr 210 ------- 1 1.0 5.0 414 447 + 1.75922 3 5 cbr 210 ------- 1 1.0 5.0 414 447 - 1.75922 3 5 cbr 210 ------- 1 1.0 5.0 414 447 r 1.76008 3 5 cbr 210 ------- 1 1.0 5.0 400 429 + 1.76125 1 2 cbr 210 ------- 1 1.0 5.0 443 476 - 1.76125 1 2 cbr 210 ------- 1 1.0 5.0 443 476 r 1.76173 0 2 tcp 1000 ------- 0 0.0 4.0 14 445 + 1.76173 2 3 tcp 1000 ------- 0 0.0 4.0 14 445 d 1.76173 2 3 tcp 1000 ------- 0 0.0 4.0 14 445 r 1.76211 1 2 cbr 210 ------- 1 1.0 5.0 429 462 + 1.76211 2 3 cbr 210 ------- 1 1.0 5.0 429 462 d 1.76211 2 3 cbr 210 ------- 1 1.0 5.0 429 462 - 1.76216 2 3 cbr 210 ------- 1 1.0 5.0 421 454 r 1.76297 2 3 cbr 210 ------- 1 1.0 5.0 415 448 + 1.76297 3 5 cbr 210 ------- 1 1.0 5.0 415 448 - 1.76297 3 5 cbr 210 ------- 1 1.0 5.0 415 448 r 1.76383 3 5 cbr 210 ------- 1 1.0 5.0 401 430 + 1.765 1 2 cbr 210 ------- 1 1.0 5.0 444 477 - 1.765 1 2 cbr 210 ------- 1 1.0 5.0 444 477 - 1.76552 2 3 cbr 210 ------- 1 1.0 5.0 422 455 r 1.76586 1 2 cbr 210 ------- 1 1.0 5.0 430 463 + 1.76586 2 3 cbr 210 ------- 1 1.0 5.0 430 463 r 1.76672 2 3 cbr 210 ------- 1 1.0 5.0 416 449 + 1.76672 3 5 cbr 210 ------- 1 1.0 5.0 416 449 - 1.76672 3 5 cbr 210 ------- 1 1.0 5.0 416 449 r 1.76758 3 5 cbr 210 ------- 1 1.0 5.0 402 431 + 1.76875 1 2 cbr 210 ------- 1 1.0 5.0 445 478 - 1.76875 1 2 cbr 210 ------- 1 1.0 5.0 445 478 - 1.76888 2 3 cbr 210 ------- 1 1.0 5.0 423 456 r 1.76961 1 2 cbr 210 ------- 1 1.0 5.0 431 464 + 1.76961 2 3 cbr 210 ------- 1 1.0 5.0 431 464 r 1.77133 3 5 cbr 210 ------- 1 1.0 5.0 403 432 - 1.77224 2 3 cbr 210 ------- 1 1.0 5.0 424 457 + 1.7725 1 2 cbr 210 ------- 1 1.0 5.0 446 479 - 1.7725 1 2 cbr 210 ------- 1 1.0 5.0 446 479 r 1.77336 1 2 cbr 210 ------- 1 1.0 5.0 432 465 + 1.77336 2 3 cbr 210 ------- 1 1.0 5.0 432 465 r 1.77508 3 5 cbr 210 ------- 1 1.0 5.0 404 433 - 1.7756 2 3 tcp 1000 ------- 0 0.0 4.0 13 444 + 1.77625 1 2 cbr 210 ------- 1 1.0 5.0 447 480 - 1.77625 1 2 cbr 210 ------- 1 1.0 5.0 447 480 r 1.77711 1 2 cbr 210 ------- 1 1.0 5.0 433 466 + 1.77711 2 3 cbr 210 ------- 1 1.0 5.0 433 466 r 1.77883 3 5 cbr 210 ------- 1 1.0 5.0 405 434 + 1.78 1 2 cbr 210 ------- 1 1.0 5.0 448 481 - 1.78 1 2 cbr 210 ------- 1 1.0 5.0 448 481 r 1.78086 1 2 cbr 210 ------- 1 1.0 5.0 434 467 + 1.78086 2 3 cbr 210 ------- 1 1.0 5.0 434 467 r 1.78258 3 5 cbr 210 ------- 1 1.0 5.0 406 435 r 1.78272 2 3 tcp 1000 ------- 0 0.0 4.0 11 442 + 1.78272 3 4 tcp 1000 ------- 0 0.0 4.0 11 442 - 1.78272 3 4 tcp 1000 ------- 0 0.0 4.0 11 442 + 1.78375 1 2 cbr 210 ------- 1 1.0 5.0 449 482 - 1.78375 1 2 cbr 210 ------- 1 1.0 5.0 449 482 r 1.78461 1 2 cbr 210 ------- 1 1.0 5.0 435 468 + 1.78461 2 3 cbr 210 ------- 1 1.0 5.0 435 468 d 1.78461 2 3 cbr 210 ------- 1 1.0 5.0 435 468 r 1.78608 2 3 cbr 210 ------- 1 1.0 5.0 417 450 + 1.78608 3 5 cbr 210 ------- 1 1.0 5.0 417 450 - 1.78608 3 5 cbr 210 ------- 1 1.0 5.0 417 450 r 1.78633 3 5 cbr 210 ------- 1 1.0 5.0 407 436 + 1.7875 1 2 cbr 210 ------- 1 1.0 5.0 450 483 - 1.7875 1 2 cbr 210 ------- 1 1.0 5.0 450 483 r 1.78836 1 2 cbr 210 ------- 1 1.0 5.0 436 469 + 1.78836 2 3 cbr 210 ------- 1 1.0 5.0 436 469 d 1.78836 2 3 cbr 210 ------- 1 1.0 5.0 436 469 r 1.78944 2 3 cbr 210 ------- 1 1.0 5.0 418 451 + 1.78944 3 5 cbr 210 ------- 1 1.0 5.0 418 451 - 1.78944 3 5 cbr 210 ------- 1 1.0 5.0 418 451 r 1.79008 3 5 cbr 210 ------- 1 1.0 5.0 408 437 + 1.79125 1 2 cbr 210 ------- 1 1.0 5.0 451 484 - 1.79125 1 2 cbr 210 ------- 1 1.0 5.0 451 484 - 1.7916 2 3 cbr 210 ------- 1 1.0 5.0 425 458 r 1.79211 1 2 cbr 210 ------- 1 1.0 5.0 437 470 + 1.79211 2 3 cbr 210 ------- 1 1.0 5.0 437 470 r 1.7928 2 3 cbr 210 ------- 1 1.0 5.0 419 452 + 1.7928 3 5 cbr 210 ------- 1 1.0 5.0 419 452 - 1.7928 3 5 cbr 210 ------- 1 1.0 5.0 419 452 r 1.79383 3 5 cbr 210 ------- 1 1.0 5.0 409 438 - 1.79496 2 3 cbr 210 ------- 1 1.0 5.0 426 459 + 1.795 1 2 cbr 210 ------- 1 1.0 5.0 452 485 - 1.795 1 2 cbr 210 ------- 1 1.0 5.0 452 485 r 1.79586 1 2 cbr 210 ------- 1 1.0 5.0 438 471 + 1.79586 2 3 cbr 210 ------- 1 1.0 5.0 438 471 r 1.79616 2 3 cbr 210 ------- 1 1.0 5.0 420 453 + 1.79616 3 5 cbr 210 ------- 1 1.0 5.0 420 453 - 1.79616 3 5 cbr 210 ------- 1 1.0 5.0 420 453 r 1.79758 3 5 cbr 210 ------- 1 1.0 5.0 410 439 - 1.79832 2 3 cbr 210 ------- 1 1.0 5.0 427 460 + 1.79875 1 2 cbr 210 ------- 1 1.0 5.0 453 486 - 1.79875 1 2 cbr 210 ------- 1 1.0 5.0 453 486 r 1.79961 1 2 cbr 210 ------- 1 1.0 5.0 439 472 + 1.79961 2 3 cbr 210 ------- 1 1.0 5.0 439 472 r 1.80133 3 5 cbr 210 ------- 1 1.0 5.0 411 440 - 1.80168 2 3 cbr 210 ------- 1 1.0 5.0 428 461 + 1.8025 1 2 cbr 210 ------- 1 1.0 5.0 454 487 - 1.8025 1 2 cbr 210 ------- 1 1.0 5.0 454 487 r 1.80336 1 2 cbr 210 ------- 1 1.0 5.0 440 473 + 1.80336 2 3 cbr 210 ------- 1 1.0 5.0 440 473 - 1.80504 2 3 cbr 210 ------- 1 1.0 5.0 430 463 r 1.80508 3 5 cbr 210 ------- 1 1.0 5.0 412 441 + 1.80625 1 2 cbr 210 ------- 1 1.0 5.0 455 488 - 1.80625 1 2 cbr 210 ------- 1 1.0 5.0 455 488 r 1.80711 1 2 cbr 210 ------- 1 1.0 5.0 441 474 + 1.80711 2 3 cbr 210 ------- 1 1.0 5.0 441 474 - 1.8084 2 3 cbr 210 ------- 1 1.0 5.0 431 464 r 1.80883 3 5 cbr 210 ------- 1 1.0 5.0 413 446 + 1.81 1 2 cbr 210 ------- 1 1.0 5.0 456 489 - 1.81 1 2 cbr 210 ------- 1 1.0 5.0 456 489 r 1.81086 1 2 cbr 210 ------- 1 1.0 5.0 442 475 + 1.81086 2 3 cbr 210 ------- 1 1.0 5.0 442 475 - 1.81176 2 3 cbr 210 ------- 1 1.0 5.0 432 465 r 1.81216 2 3 tcp 1000 ------- 0 0.0 4.0 12 443 + 1.81216 3 4 tcp 1000 ------- 0 0.0 4.0 12 443 - 1.81216 3 4 tcp 1000 ------- 0 0.0 4.0 12 443 r 1.81258 3 5 cbr 210 ------- 1 1.0 5.0 414 447 + 1.81375 1 2 cbr 210 ------- 1 1.0 5.0 457 490 - 1.81375 1 2 cbr 210 ------- 1 1.0 5.0 457 490 r 1.81461 1 2 cbr 210 ------- 1 1.0 5.0 443 476 + 1.81461 2 3 cbr 210 ------- 1 1.0 5.0 443 476 - 1.81512 2 3 cbr 210 ------- 1 1.0 5.0 433 466 r 1.81552 2 3 cbr 210 ------- 1 1.0 5.0 421 454 + 1.81552 3 5 cbr 210 ------- 1 1.0 5.0 421 454 - 1.81552 3 5 cbr 210 ------- 1 1.0 5.0 421 454 r 1.81633 3 5 cbr 210 ------- 1 1.0 5.0 415 448 + 1.8175 1 2 cbr 210 ------- 1 1.0 5.0 458 491 - 1.8175 1 2 cbr 210 ------- 1 1.0 5.0 458 491 r 1.81836 1 2 cbr 210 ------- 1 1.0 5.0 444 477 + 1.81836 2 3 cbr 210 ------- 1 1.0 5.0 444 477 - 1.81848 2 3 cbr 210 ------- 1 1.0 5.0 434 467 r 1.81888 2 3 cbr 210 ------- 1 1.0 5.0 422 455 + 1.81888 3 5 cbr 210 ------- 1 1.0 5.0 422 455 - 1.81888 3 5 cbr 210 ------- 1 1.0 5.0 422 455 r 1.82008 3 5 cbr 210 ------- 1 1.0 5.0 416 449 + 1.82125 1 2 cbr 210 ------- 1 1.0 5.0 459 492 - 1.82125 1 2 cbr 210 ------- 1 1.0 5.0 459 492 - 1.82184 2 3 cbr 210 ------- 1 1.0 5.0 437 470 r 1.82211 1 2 cbr 210 ------- 1 1.0 5.0 445 478 + 1.82211 2 3 cbr 210 ------- 1 1.0 5.0 445 478 r 1.82224 2 3 cbr 210 ------- 1 1.0 5.0 423 456 + 1.82224 3 5 cbr 210 ------- 1 1.0 5.0 423 456 - 1.82224 3 5 cbr 210 ------- 1 1.0 5.0 423 456 + 1.825 1 2 cbr 210 ------- 1 1.0 5.0 460 493 - 1.825 1 2 cbr 210 ------- 1 1.0 5.0 460 493 - 1.8252 2 3 cbr 210 ------- 1 1.0 5.0 438 471 r 1.8256 2 3 cbr 210 ------- 1 1.0 5.0 424 457 + 1.8256 3 5 cbr 210 ------- 1 1.0 5.0 424 457 - 1.8256 3 5 cbr 210 ------- 1 1.0 5.0 424 457 r 1.82586 1 2 cbr 210 ------- 1 1.0 5.0 446 479 + 1.82586 2 3 cbr 210 ------- 1 1.0 5.0 446 479 - 1.82856 2 3 cbr 210 ------- 1 1.0 5.0 439 472 + 1.82875 1 2 cbr 210 ------- 1 1.0 5.0 461 494 - 1.82875 1 2 cbr 210 ------- 1 1.0 5.0 461 494 r 1.82961 1 2 cbr 210 ------- 1 1.0 5.0 447 480 + 1.82961 2 3 cbr 210 ------- 1 1.0 5.0 447 480 - 1.83192 2 3 cbr 210 ------- 1 1.0 5.0 440 473 + 1.8325 1 2 cbr 210 ------- 1 1.0 5.0 462 495 - 1.8325 1 2 cbr 210 ------- 1 1.0 5.0 462 495 r 1.83336 1 2 cbr 210 ------- 1 1.0 5.0 448 481 + 1.83336 2 3 cbr 210 ------- 1 1.0 5.0 448 481 - 1.83528 2 3 cbr 210 ------- 1 1.0 5.0 441 474 + 1.83625 1 2 cbr 210 ------- 1 1.0 5.0 463 496 - 1.83625 1 2 cbr 210 ------- 1 1.0 5.0 463 496 r 1.83711 1 2 cbr 210 ------- 1 1.0 5.0 449 482 + 1.83711 2 3 cbr 210 ------- 1 1.0 5.0 449 482 - 1.83864 2 3 cbr 210 ------- 1 1.0 5.0 442 475 r 1.83944 3 5 cbr 210 ------- 1 1.0 5.0 417 450 + 1.84 1 2 cbr 210 ------- 1 1.0 5.0 464 497 - 1.84 1 2 cbr 210 ------- 1 1.0 5.0 464 497 r 1.84086 1 2 cbr 210 ------- 1 1.0 5.0 450 483 + 1.84086 2 3 cbr 210 ------- 1 1.0 5.0 450 483 r 1.8416 2 3 tcp 1000 ------- 0 0.0 4.0 13 444 + 1.8416 3 4 tcp 1000 ------- 0 0.0 4.0 13 444 - 1.8416 3 4 tcp 1000 ------- 0 0.0 4.0 13 444 - 1.842 2 3 cbr 210 ------- 1 1.0 5.0 443 476 r 1.8428 3 5 cbr 210 ------- 1 1.0 5.0 418 451 + 1.84375 1 2 cbr 210 ------- 1 1.0 5.0 465 498 - 1.84375 1 2 cbr 210 ------- 1 1.0 5.0 465 498 r 1.84461 1 2 cbr 210 ------- 1 1.0 5.0 451 484 + 1.84461 2 3 cbr 210 ------- 1 1.0 5.0 451 484 r 1.84496 2 3 cbr 210 ------- 1 1.0 5.0 425 458 + 1.84496 3 5 cbr 210 ------- 1 1.0 5.0 425 458 - 1.84496 3 5 cbr 210 ------- 1 1.0 5.0 425 458 - 1.84536 2 3 cbr 210 ------- 1 1.0 5.0 444 477 r 1.84616 3 5 cbr 210 ------- 1 1.0 5.0 419 452 + 1.8475 1 2 cbr 210 ------- 1 1.0 5.0 466 499 - 1.8475 1 2 cbr 210 ------- 1 1.0 5.0 466 499 r 1.84832 2 3 cbr 210 ------- 1 1.0 5.0 426 459 + 1.84832 3 5 cbr 210 ------- 1 1.0 5.0 426 459 - 1.84832 3 5 cbr 210 ------- 1 1.0 5.0 426 459 r 1.84836 1 2 cbr 210 ------- 1 1.0 5.0 452 485 + 1.84836 2 3 cbr 210 ------- 1 1.0 5.0 452 485 r 1.84872 3 4 tcp 1000 ------- 0 0.0 4.0 11 442 + 1.84872 4 3 ack 40 ------- 0 4.0 0.0 11 500 - 1.84872 4 3 ack 40 ------- 0 4.0 0.0 11 500 - 1.84872 2 3 cbr 210 ------- 1 1.0 5.0 445 478 r 1.84952 3 5 cbr 210 ------- 1 1.0 5.0 420 453 + 1.85125 1 2 cbr 210 ------- 1 1.0 5.0 467 501 - 1.85125 1 2 cbr 210 ------- 1 1.0 5.0 467 501 r 1.85168 2 3 cbr 210 ------- 1 1.0 5.0 427 460 + 1.85168 3 5 cbr 210 ------- 1 1.0 5.0 427 460 - 1.85168 3 5 cbr 210 ------- 1 1.0 5.0 427 460 - 1.85208 2 3 cbr 210 ------- 1 1.0 5.0 446 479 r 1.85211 1 2 cbr 210 ------- 1 1.0 5.0 453 486 + 1.85211 2 3 cbr 210 ------- 1 1.0 5.0 453 486 + 1.855 1 2 cbr 210 ------- 1 1.0 5.0 468 502 - 1.855 1 2 cbr 210 ------- 1 1.0 5.0 468 502 r 1.85504 2 3 cbr 210 ------- 1 1.0 5.0 428 461 + 1.85504 3 5 cbr 210 ------- 1 1.0 5.0 428 461 - 1.85504 3 5 cbr 210 ------- 1 1.0 5.0 428 461 - 1.85544 2 3 cbr 210 ------- 1 1.0 5.0 447 480 r 1.85586 1 2 cbr 210 ------- 1 1.0 5.0 454 487 + 1.85586 2 3 cbr 210 ------- 1 1.0 5.0 454 487 r 1.8584 2 3 cbr 210 ------- 1 1.0 5.0 430 463 + 1.8584 3 5 cbr 210 ------- 1 1.0 5.0 430 463 - 1.8584 3 5 cbr 210 ------- 1 1.0 5.0 430 463 + 1.85875 1 2 cbr 210 ------- 1 1.0 5.0 469 503 - 1.85875 1 2 cbr 210 ------- 1 1.0 5.0 469 503 - 1.8588 2 3 cbr 210 ------- 1 1.0 5.0 448 481 r 1.85961 1 2 cbr 210 ------- 1 1.0 5.0 455 488 + 1.85961 2 3 cbr 210 ------- 1 1.0 5.0 455 488 r 1.86176 2 3 cbr 210 ------- 1 1.0 5.0 431 464 + 1.86176 3 5 cbr 210 ------- 1 1.0 5.0 431 464 - 1.86176 3 5 cbr 210 ------- 1 1.0 5.0 431 464 - 1.86216 2 3 cbr 210 ------- 1 1.0 5.0 449 482 + 1.8625 1 2 cbr 210 ------- 1 1.0 5.0 470 504 - 1.8625 1 2 cbr 210 ------- 1 1.0 5.0 470 504 r 1.86336 1 2 cbr 210 ------- 1 1.0 5.0 456 489 + 1.86336 2 3 cbr 210 ------- 1 1.0 5.0 456 489 r 1.86512 2 3 cbr 210 ------- 1 1.0 5.0 432 465 + 1.86512 3 5 cbr 210 ------- 1 1.0 5.0 432 465 - 1.86512 3 5 cbr 210 ------- 1 1.0 5.0 432 465 - 1.86552 2 3 cbr 210 ------- 1 1.0 5.0 450 483 + 1.86625 1 2 cbr 210 ------- 1 1.0 5.0 471 505 - 1.86625 1 2 cbr 210 ------- 1 1.0 5.0 471 505 r 1.86711 1 2 cbr 210 ------- 1 1.0 5.0 457 490 + 1.86711 2 3 cbr 210 ------- 1 1.0 5.0 457 490 r 1.86848 2 3 cbr 210 ------- 1 1.0 5.0 433 466 + 1.86848 3 5 cbr 210 ------- 1 1.0 5.0 433 466 - 1.86848 3 5 cbr 210 ------- 1 1.0 5.0 433 466 r 1.86888 3 5 cbr 210 ------- 1 1.0 5.0 421 454 - 1.86888 2 3 cbr 210 ------- 1 1.0 5.0 451 484 + 1.87 1 2 cbr 210 ------- 1 1.0 5.0 472 506 - 1.87 1 2 cbr 210 ------- 1 1.0 5.0 472 506 r 1.87086 1 2 cbr 210 ------- 1 1.0 5.0 458 491 + 1.87086 2 3 cbr 210 ------- 1 1.0 5.0 458 491 r 1.87184 2 3 cbr 210 ------- 1 1.0 5.0 434 467 + 1.87184 3 5 cbr 210 ------- 1 1.0 5.0 434 467 - 1.87184 3 5 cbr 210 ------- 1 1.0 5.0 434 467 r 1.87224 3 5 cbr 210 ------- 1 1.0 5.0 422 455 - 1.87224 2 3 cbr 210 ------- 1 1.0 5.0 452 485 + 1.87375 1 2 cbr 210 ------- 1 1.0 5.0 473 507 - 1.87375 1 2 cbr 210 ------- 1 1.0 5.0 473 507 r 1.87461 1 2 cbr 210 ------- 1 1.0 5.0 459 492 + 1.87461 2 3 cbr 210 ------- 1 1.0 5.0 459 492 r 1.8752 2 3 cbr 210 ------- 1 1.0 5.0 437 470 + 1.8752 3 5 cbr 210 ------- 1 1.0 5.0 437 470 - 1.8752 3 5 cbr 210 ------- 1 1.0 5.0 437 470 r 1.8756 3 5 cbr 210 ------- 1 1.0 5.0 423 456 - 1.8756 2 3 cbr 210 ------- 1 1.0 5.0 453 486 + 1.8775 1 2 cbr 210 ------- 1 1.0 5.0 474 508 - 1.8775 1 2 cbr 210 ------- 1 1.0 5.0 474 508 r 1.87816 3 4 tcp 1000 ------- 0 0.0 4.0 12 443 + 1.87816 4 3 ack 40 ------- 0 4.0 0.0 12 509 - 1.87816 4 3 ack 40 ------- 0 4.0 0.0 12 509 r 1.87836 1 2 cbr 210 ------- 1 1.0 5.0 460 493 + 1.87836 2 3 cbr 210 ------- 1 1.0 5.0 460 493 r 1.87856 2 3 cbr 210 ------- 1 1.0 5.0 438 471 + 1.87856 3 5 cbr 210 ------- 1 1.0 5.0 438 471 - 1.87856 3 5 cbr 210 ------- 1 1.0 5.0 438 471 r 1.87896 3 5 cbr 210 ------- 1 1.0 5.0 424 457 - 1.87896 2 3 cbr 210 ------- 1 1.0 5.0 454 487 + 1.88125 1 2 cbr 210 ------- 1 1.0 5.0 475 510 - 1.88125 1 2 cbr 210 ------- 1 1.0 5.0 475 510 r 1.88192 2 3 cbr 210 ------- 1 1.0 5.0 439 472 + 1.88192 3 5 cbr 210 ------- 1 1.0 5.0 439 472 - 1.88192 3 5 cbr 210 ------- 1 1.0 5.0 439 472 r 1.88211 1 2 cbr 210 ------- 1 1.0 5.0 461 494 + 1.88211 2 3 cbr 210 ------- 1 1.0 5.0 461 494 - 1.88232 2 3 cbr 210 ------- 1 1.0 5.0 455 488 + 1.885 1 2 cbr 210 ------- 1 1.0 5.0 476 511 - 1.885 1 2 cbr 210 ------- 1 1.0 5.0 476 511 r 1.88528 2 3 cbr 210 ------- 1 1.0 5.0 440 473 + 1.88528 3 5 cbr 210 ------- 1 1.0 5.0 440 473 - 1.88528 3 5 cbr 210 ------- 1 1.0 5.0 440 473 - 1.88568 2 3 cbr 210 ------- 1 1.0 5.0 456 489 r 1.88586 1 2 cbr 210 ------- 1 1.0 5.0 462 495 + 1.88586 2 3 cbr 210 ------- 1 1.0 5.0 462 495 r 1.88864 2 3 cbr 210 ------- 1 1.0 5.0 441 474 + 1.88864 3 5 cbr 210 ------- 1 1.0 5.0 441 474 - 1.88864 3 5 cbr 210 ------- 1 1.0 5.0 441 474 + 1.88875 1 2 cbr 210 ------- 1 1.0 5.0 477 512 - 1.88875 1 2 cbr 210 ------- 1 1.0 5.0 477 512 - 1.88904 2 3 cbr 210 ------- 1 1.0 5.0 457 490 r 1.88961 1 2 cbr 210 ------- 1 1.0 5.0 463 496 + 1.88961 2 3 cbr 210 ------- 1 1.0 5.0 463 496 r 1.892 2 3 cbr 210 ------- 1 1.0 5.0 442 475 + 1.892 3 5 cbr 210 ------- 1 1.0 5.0 442 475 - 1.892 3 5 cbr 210 ------- 1 1.0 5.0 442 475 - 1.8924 2 3 cbr 210 ------- 1 1.0 5.0 458 491 + 1.8925 1 2 cbr 210 ------- 1 1.0 5.0 478 513 - 1.8925 1 2 cbr 210 ------- 1 1.0 5.0 478 513 r 1.89336 1 2 cbr 210 ------- 1 1.0 5.0 464 497 + 1.89336 2 3 cbr 210 ------- 1 1.0 5.0 464 497 r 1.89536 2 3 cbr 210 ------- 1 1.0 5.0 443 476 + 1.89536 3 5 cbr 210 ------- 1 1.0 5.0 443 476 - 1.89536 3 5 cbr 210 ------- 1 1.0 5.0 443 476 - 1.89576 2 3 cbr 210 ------- 1 1.0 5.0 459 492 + 1.89625 1 2 cbr 210 ------- 1 1.0 5.0 479 514 - 1.89625 1 2 cbr 210 ------- 1 1.0 5.0 479 514 r 1.89711 1 2 cbr 210 ------- 1 1.0 5.0 465 498 + 1.89711 2 3 cbr 210 ------- 1 1.0 5.0 465 498 r 1.89832 3 5 cbr 210 ------- 1 1.0 5.0 425 458 r 1.89872 2 3 cbr 210 ------- 1 1.0 5.0 444 477 + 1.89872 3 5 cbr 210 ------- 1 1.0 5.0 444 477 - 1.89872 3 5 cbr 210 ------- 1 1.0 5.0 444 477 - 1.89912 2 3 cbr 210 ------- 1 1.0 5.0 460 493 r 1.89936 4 3 ack 40 ------- 0 4.0 0.0 11 500 + 1.89936 3 2 ack 40 ------- 0 4.0 0.0 11 500 - 1.89936 3 2 ack 40 ------- 0 4.0 0.0 11 500 + 1.9 1 2 cbr 210 ------- 1 1.0 5.0 480 515 - 1.9 1 2 cbr 210 ------- 1 1.0 5.0 480 515 r 1.90086 1 2 cbr 210 ------- 1 1.0 5.0 466 499 + 1.90086 2 3 cbr 210 ------- 1 1.0 5.0 466 499 r 1.90168 3 5 cbr 210 ------- 1 1.0 5.0 426 459 r 1.90208 2 3 cbr 210 ------- 1 1.0 5.0 445 478 + 1.90208 3 5 cbr 210 ------- 1 1.0 5.0 445 478 - 1.90208 3 5 cbr 210 ------- 1 1.0 5.0 445 478 - 1.90248 2 3 cbr 210 ------- 1 1.0 5.0 461 494 + 1.90375 1 2 cbr 210 ------- 1 1.0 5.0 481 516 - 1.90375 1 2 cbr 210 ------- 1 1.0 5.0 481 516 r 1.90461 1 2 cbr 210 ------- 1 1.0 5.0 467 501 + 1.90461 2 3 cbr 210 ------- 1 1.0 5.0 467 501 r 1.90504 3 5 cbr 210 ------- 1 1.0 5.0 427 460 r 1.90544 2 3 cbr 210 ------- 1 1.0 5.0 446 479 + 1.90544 3 5 cbr 210 ------- 1 1.0 5.0 446 479 - 1.90544 3 5 cbr 210 ------- 1 1.0 5.0 446 479 - 1.90584 2 3 cbr 210 ------- 1 1.0 5.0 462 495 + 1.9075 1 2 cbr 210 ------- 1 1.0 5.0 482 517 - 1.9075 1 2 cbr 210 ------- 1 1.0 5.0 482 517 r 1.9076 3 4 tcp 1000 ------- 0 0.0 4.0 13 444 + 1.9076 4 3 ack 40 ------- 0 4.0 0.0 13 518 - 1.9076 4 3 ack 40 ------- 0 4.0 0.0 13 518 r 1.90836 1 2 cbr 210 ------- 1 1.0 5.0 468 502 + 1.90836 2 3 cbr 210 ------- 1 1.0 5.0 468 502 r 1.9084 3 5 cbr 210 ------- 1 1.0 5.0 428 461 r 1.9088 2 3 cbr 210 ------- 1 1.0 5.0 447 480 + 1.9088 3 5 cbr 210 ------- 1 1.0 5.0 447 480 - 1.9088 3 5 cbr 210 ------- 1 1.0 5.0 447 480 - 1.9092 2 3 cbr 210 ------- 1 1.0 5.0 463 496 + 1.91125 1 2 cbr 210 ------- 1 1.0 5.0 483 519 - 1.91125 1 2 cbr 210 ------- 1 1.0 5.0 483 519 r 1.91176 3 5 cbr 210 ------- 1 1.0 5.0 430 463 r 1.91211 1 2 cbr 210 ------- 1 1.0 5.0 469 503 + 1.91211 2 3 cbr 210 ------- 1 1.0 5.0 469 503 r 1.91216 2 3 cbr 210 ------- 1 1.0 5.0 448 481 + 1.91216 3 5 cbr 210 ------- 1 1.0 5.0 448 481 - 1.91216 3 5 cbr 210 ------- 1 1.0 5.0 448 481 - 1.91256 2 3 cbr 210 ------- 1 1.0 5.0 464 497 + 1.915 1 2 cbr 210 ------- 1 1.0 5.0 484 520 - 1.915 1 2 cbr 210 ------- 1 1.0 5.0 484 520 r 1.91512 3 5 cbr 210 ------- 1 1.0 5.0 431 464 r 1.91552 2 3 cbr 210 ------- 1 1.0 5.0 449 482 + 1.91552 3 5 cbr 210 ------- 1 1.0 5.0 449 482 - 1.91552 3 5 cbr 210 ------- 1 1.0 5.0 449 482 r 1.91586 1 2 cbr 210 ------- 1 1.0 5.0 470 504 + 1.91586 2 3 cbr 210 ------- 1 1.0 5.0 470 504 - 1.91592 2 3 cbr 210 ------- 1 1.0 5.0 465 498 r 1.91848 3 5 cbr 210 ------- 1 1.0 5.0 432 465 + 1.91875 1 2 cbr 210 ------- 1 1.0 5.0 485 521 - 1.91875 1 2 cbr 210 ------- 1 1.0 5.0 485 521 r 1.91888 2 3 cbr 210 ------- 1 1.0 5.0 450 483 + 1.91888 3 5 cbr 210 ------- 1 1.0 5.0 450 483 - 1.91888 3 5 cbr 210 ------- 1 1.0 5.0 450 483 - 1.91928 2 3 cbr 210 ------- 1 1.0 5.0 466 499 r 1.91961 1 2 cbr 210 ------- 1 1.0 5.0 471 505 + 1.91961 2 3 cbr 210 ------- 1 1.0 5.0 471 505 r 1.92184 3 5 cbr 210 ------- 1 1.0 5.0 433 466 r 1.92224 2 3 cbr 210 ------- 1 1.0 5.0 451 484 + 1.92224 3 5 cbr 210 ------- 1 1.0 5.0 451 484 - 1.92224 3 5 cbr 210 ------- 1 1.0 5.0 451 484 + 1.9225 1 2 cbr 210 ------- 1 1.0 5.0 486 522 - 1.9225 1 2 cbr 210 ------- 1 1.0 5.0 486 522 - 1.92264 2 3 cbr 210 ------- 1 1.0 5.0 467 501 r 1.92336 1 2 cbr 210 ------- 1 1.0 5.0 472 506 + 1.92336 2 3 cbr 210 ------- 1 1.0 5.0 472 506 r 1.9252 3 5 cbr 210 ------- 1 1.0 5.0 434 467 r 1.9256 2 3 cbr 210 ------- 1 1.0 5.0 452 485 + 1.9256 3 5 cbr 210 ------- 1 1.0 5.0 452 485 - 1.9256 3 5 cbr 210 ------- 1 1.0 5.0 452 485 - 1.926 2 3 cbr 210 ------- 1 1.0 5.0 468 502 + 1.92625 1 2 cbr 210 ------- 1 1.0 5.0 487 523 - 1.92625 1 2 cbr 210 ------- 1 1.0 5.0 487 523 r 1.92711 1 2 cbr 210 ------- 1 1.0 5.0 473 507 + 1.92711 2 3 cbr 210 ------- 1 1.0 5.0 473 507 r 1.92856 3 5 cbr 210 ------- 1 1.0 5.0 437 470 r 1.9288 4 3 ack 40 ------- 0 4.0 0.0 12 509 + 1.9288 3 2 ack 40 ------- 0 4.0 0.0 12 509 - 1.9288 3 2 ack 40 ------- 0 4.0 0.0 12 509 r 1.92896 2 3 cbr 210 ------- 1 1.0 5.0 453 486 + 1.92896 3 5 cbr 210 ------- 1 1.0 5.0 453 486 - 1.92896 3 5 cbr 210 ------- 1 1.0 5.0 453 486 - 1.92936 2 3 cbr 210 ------- 1 1.0 5.0 469 503 + 1.93 1 2 cbr 210 ------- 1 1.0 5.0 488 524 - 1.93 1 2 cbr 210 ------- 1 1.0 5.0 488 524 r 1.93086 1 2 cbr 210 ------- 1 1.0 5.0 474 508 + 1.93086 2 3 cbr 210 ------- 1 1.0 5.0 474 508 r 1.93192 3 5 cbr 210 ------- 1 1.0 5.0 438 471 r 1.93232 2 3 cbr 210 ------- 1 1.0 5.0 454 487 + 1.93232 3 5 cbr 210 ------- 1 1.0 5.0 454 487 - 1.93232 3 5 cbr 210 ------- 1 1.0 5.0 454 487 - 1.93272 2 3 cbr 210 ------- 1 1.0 5.0 470 504 + 1.93375 1 2 cbr 210 ------- 1 1.0 5.0 489 525 - 1.93375 1 2 cbr 210 ------- 1 1.0 5.0 489 525 r 1.93461 1 2 cbr 210 ------- 1 1.0 5.0 475 510 + 1.93461 2 3 cbr 210 ------- 1 1.0 5.0 475 510 r 1.93528 3 5 cbr 210 ------- 1 1.0 5.0 439 472 r 1.93568 2 3 cbr 210 ------- 1 1.0 5.0 455 488 + 1.93568 3 5 cbr 210 ------- 1 1.0 5.0 455 488 - 1.93568 3 5 cbr 210 ------- 1 1.0 5.0 455 488 - 1.93608 2 3 cbr 210 ------- 1 1.0 5.0 471 505 + 1.9375 1 2 cbr 210 ------- 1 1.0 5.0 490 526 - 1.9375 1 2 cbr 210 ------- 1 1.0 5.0 490 526 r 1.93836 1 2 cbr 210 ------- 1 1.0 5.0 476 511 + 1.93836 2 3 cbr 210 ------- 1 1.0 5.0 476 511 r 1.93864 3 5 cbr 210 ------- 1 1.0 5.0 440 473 r 1.93904 2 3 cbr 210 ------- 1 1.0 5.0 456 489 + 1.93904 3 5 cbr 210 ------- 1 1.0 5.0 456 489 - 1.93904 3 5 cbr 210 ------- 1 1.0 5.0 456 489 - 1.93944 2 3 cbr 210 ------- 1 1.0 5.0 472 506 + 1.94125 1 2 cbr 210 ------- 1 1.0 5.0 491 527 - 1.94125 1 2 cbr 210 ------- 1 1.0 5.0 491 527 r 1.942 3 5 cbr 210 ------- 1 1.0 5.0 441 474 r 1.94211 1 2 cbr 210 ------- 1 1.0 5.0 477 512 + 1.94211 2 3 cbr 210 ------- 1 1.0 5.0 477 512 r 1.9424 2 3 cbr 210 ------- 1 1.0 5.0 457 490 + 1.9424 3 5 cbr 210 ------- 1 1.0 5.0 457 490 - 1.9424 3 5 cbr 210 ------- 1 1.0 5.0 457 490 - 1.9428 2 3 cbr 210 ------- 1 1.0 5.0 473 507 + 1.945 1 2 cbr 210 ------- 1 1.0 5.0 492 528 - 1.945 1 2 cbr 210 ------- 1 1.0 5.0 492 528 r 1.94536 3 5 cbr 210 ------- 1 1.0 5.0 442 475 r 1.94576 2 3 cbr 210 ------- 1 1.0 5.0 458 491 + 1.94576 3 5 cbr 210 ------- 1 1.0 5.0 458 491 - 1.94576 3 5 cbr 210 ------- 1 1.0 5.0 458 491 r 1.94586 1 2 cbr 210 ------- 1 1.0 5.0 478 513 + 1.94586 2 3 cbr 210 ------- 1 1.0 5.0 478 513 - 1.94616 2 3 cbr 210 ------- 1 1.0 5.0 474 508 r 1.94872 3 5 cbr 210 ------- 1 1.0 5.0 443 476 + 1.94875 1 2 cbr 210 ------- 1 1.0 5.0 493 529 - 1.94875 1 2 cbr 210 ------- 1 1.0 5.0 493 529 r 1.94912 2 3 cbr 210 ------- 1 1.0 5.0 459 492 + 1.94912 3 5 cbr 210 ------- 1 1.0 5.0 459 492 - 1.94912 3 5 cbr 210 ------- 1 1.0 5.0 459 492 - 1.94952 2 3 cbr 210 ------- 1 1.0 5.0 475 510 r 1.94961 1 2 cbr 210 ------- 1 1.0 5.0 479 514 + 1.94961 2 3 cbr 210 ------- 1 1.0 5.0 479 514 r 1.95 3 2 ack 40 ------- 0 4.0 0.0 11 500 + 1.95 2 0 ack 40 ------- 0 4.0 0.0 11 500 - 1.95 2 0 ack 40 ------- 0 4.0 0.0 11 500 r 1.95208 3 5 cbr 210 ------- 1 1.0 5.0 444 477 r 1.95248 2 3 cbr 210 ------- 1 1.0 5.0 460 493 + 1.95248 3 5 cbr 210 ------- 1 1.0 5.0 460 493 - 1.95248 3 5 cbr 210 ------- 1 1.0 5.0 460 493 + 1.9525 1 2 cbr 210 ------- 1 1.0 5.0 494 530 - 1.9525 1 2 cbr 210 ------- 1 1.0 5.0 494 530 - 1.95288 2 3 cbr 210 ------- 1 1.0 5.0 476 511 r 1.95336 1 2 cbr 210 ------- 1 1.0 5.0 480 515 + 1.95336 2 3 cbr 210 ------- 1 1.0 5.0 480 515 r 1.95544 3 5 cbr 210 ------- 1 1.0 5.0 445 478 r 1.95584 2 3 cbr 210 ------- 1 1.0 5.0 461 494 + 1.95584 3 5 cbr 210 ------- 1 1.0 5.0 461 494 - 1.95584 3 5 cbr 210 ------- 1 1.0 5.0 461 494 - 1.95624 2 3 cbr 210 ------- 1 1.0 5.0 477 512 + 1.95625 1 2 cbr 210 ------- 1 1.0 5.0 495 531 - 1.95625 1 2 cbr 210 ------- 1 1.0 5.0 495 531 r 1.95711 1 2 cbr 210 ------- 1 1.0 5.0 481 516 + 1.95711 2 3 cbr 210 ------- 1 1.0 5.0 481 516 r 1.95824 4 3 ack 40 ------- 0 4.0 0.0 13 518 + 1.95824 3 2 ack 40 ------- 0 4.0 0.0 13 518 - 1.95824 3 2 ack 40 ------- 0 4.0 0.0 13 518 r 1.9588 3 5 cbr 210 ------- 1 1.0 5.0 446 479 r 1.9592 2 3 cbr 210 ------- 1 1.0 5.0 462 495 + 1.9592 3 5 cbr 210 ------- 1 1.0 5.0 462 495 - 1.9592 3 5 cbr 210 ------- 1 1.0 5.0 462 495 - 1.9596 2 3 cbr 210 ------- 1 1.0 5.0 478 513 + 1.96 1 2 cbr 210 ------- 1 1.0 5.0 496 532 - 1.96 1 2 cbr 210 ------- 1 1.0 5.0 496 532 r 1.96086 1 2 cbr 210 ------- 1 1.0 5.0 482 517 + 1.96086 2 3 cbr 210 ------- 1 1.0 5.0 482 517 r 1.96216 3 5 cbr 210 ------- 1 1.0 5.0 447 480 r 1.96256 2 3 cbr 210 ------- 1 1.0 5.0 463 496 + 1.96256 3 5 cbr 210 ------- 1 1.0 5.0 463 496 - 1.96256 3 5 cbr 210 ------- 1 1.0 5.0 463 496 - 1.96296 2 3 cbr 210 ------- 1 1.0 5.0 479 514 + 1.96375 1 2 cbr 210 ------- 1 1.0 5.0 497 533 - 1.96375 1 2 cbr 210 ------- 1 1.0 5.0 497 533 r 1.96461 1 2 cbr 210 ------- 1 1.0 5.0 483 519 + 1.96461 2 3 cbr 210 ------- 1 1.0 5.0 483 519 r 1.96552 3 5 cbr 210 ------- 1 1.0 5.0 448 481 r 1.96592 2 3 cbr 210 ------- 1 1.0 5.0 464 497 + 1.96592 3 5 cbr 210 ------- 1 1.0 5.0 464 497 - 1.96592 3 5 cbr 210 ------- 1 1.0 5.0 464 497 - 1.96632 2 3 cbr 210 ------- 1 1.0 5.0 480 515 + 1.9675 1 2 cbr 210 ------- 1 1.0 5.0 498 534 - 1.9675 1 2 cbr 210 ------- 1 1.0 5.0 498 534 r 1.96836 1 2 cbr 210 ------- 1 1.0 5.0 484 520 + 1.96836 2 3 cbr 210 ------- 1 1.0 5.0 484 520 r 1.96888 3 5 cbr 210 ------- 1 1.0 5.0 449 482 r 1.96928 2 3 cbr 210 ------- 1 1.0 5.0 465 498 + 1.96928 3 5 cbr 210 ------- 1 1.0 5.0 465 498 - 1.96928 3 5 cbr 210 ------- 1 1.0 5.0 465 498 - 1.96968 2 3 cbr 210 ------- 1 1.0 5.0 481 516 + 1.97125 1 2 cbr 210 ------- 1 1.0 5.0 499 535 - 1.97125 1 2 cbr 210 ------- 1 1.0 5.0 499 535 r 1.97211 1 2 cbr 210 ------- 1 1.0 5.0 485 521 + 1.97211 2 3 cbr 210 ------- 1 1.0 5.0 485 521 r 1.97224 3 5 cbr 210 ------- 1 1.0 5.0 450 483 r 1.97264 2 3 cbr 210 ------- 1 1.0 5.0 466 499 + 1.97264 3 5 cbr 210 ------- 1 1.0 5.0 466 499 - 1.97264 3 5 cbr 210 ------- 1 1.0 5.0 466 499 - 1.97304 2 3 cbr 210 ------- 1 1.0 5.0 482 517 + 1.975 1 2 cbr 210 ------- 1 1.0 5.0 500 536 - 1.975 1 2 cbr 210 ------- 1 1.0 5.0 500 536 r 1.9756 3 5 cbr 210 ------- 1 1.0 5.0 451 484 r 1.97586 1 2 cbr 210 ------- 1 1.0 5.0 486 522 + 1.97586 2 3 cbr 210 ------- 1 1.0 5.0 486 522 r 1.976 2 3 cbr 210 ------- 1 1.0 5.0 467 501 + 1.976 3 5 cbr 210 ------- 1 1.0 5.0 467 501 - 1.976 3 5 cbr 210 ------- 1 1.0 5.0 467 501 - 1.9764 2 3 cbr 210 ------- 1 1.0 5.0 483 519 + 1.97875 1 2 cbr 210 ------- 1 1.0 5.0 501 537 - 1.97875 1 2 cbr 210 ------- 1 1.0 5.0 501 537 r 1.97896 3 5 cbr 210 ------- 1 1.0 5.0 452 485 r 1.97936 2 3 cbr 210 ------- 1 1.0 5.0 468 502 + 1.97936 3 5 cbr 210 ------- 1 1.0 5.0 468 502 - 1.97936 3 5 cbr 210 ------- 1 1.0 5.0 468 502 r 1.97944 3 2 ack 40 ------- 0 4.0 0.0 12 509 + 1.97944 2 0 ack 40 ------- 0 4.0 0.0 12 509 - 1.97944 2 0 ack 40 ------- 0 4.0 0.0 12 509 r 1.97961 1 2 cbr 210 ------- 1 1.0 5.0 487 523 + 1.97961 2 3 cbr 210 ------- 1 1.0 5.0 487 523 - 1.97976 2 3 cbr 210 ------- 1 1.0 5.0 484 520 r 1.98232 3 5 cbr 210 ------- 1 1.0 5.0 453 486 + 1.9825 1 2 cbr 210 ------- 1 1.0 5.0 502 538 - 1.9825 1 2 cbr 210 ------- 1 1.0 5.0 502 538 r 1.98272 2 3 cbr 210 ------- 1 1.0 5.0 469 503 + 1.98272 3 5 cbr 210 ------- 1 1.0 5.0 469 503 - 1.98272 3 5 cbr 210 ------- 1 1.0 5.0 469 503 - 1.98312 2 3 cbr 210 ------- 1 1.0 5.0 485 521 r 1.98336 1 2 cbr 210 ------- 1 1.0 5.0 488 524 + 1.98336 2 3 cbr 210 ------- 1 1.0 5.0 488 524 r 1.98568 3 5 cbr 210 ------- 1 1.0 5.0 454 487 r 1.98608 2 3 cbr 210 ------- 1 1.0 5.0 470 504 + 1.98608 3 5 cbr 210 ------- 1 1.0 5.0 470 504 - 1.98608 3 5 cbr 210 ------- 1 1.0 5.0 470 504 + 1.98625 1 2 cbr 210 ------- 1 1.0 5.0 503 539 - 1.98625 1 2 cbr 210 ------- 1 1.0 5.0 503 539 - 1.98648 2 3 cbr 210 ------- 1 1.0 5.0 486 522 r 1.98711 1 2 cbr 210 ------- 1 1.0 5.0 489 525 + 1.98711 2 3 cbr 210 ------- 1 1.0 5.0 489 525 r 1.98904 3 5 cbr 210 ------- 1 1.0 5.0 455 488 r 1.98944 2 3 cbr 210 ------- 1 1.0 5.0 471 505 + 1.98944 3 5 cbr 210 ------- 1 1.0 5.0 471 505 - 1.98944 3 5 cbr 210 ------- 1 1.0 5.0 471 505 - 1.98984 2 3 cbr 210 ------- 1 1.0 5.0 487 523 + 1.99 1 2 cbr 210 ------- 1 1.0 5.0 504 540 - 1.99 1 2 cbr 210 ------- 1 1.0 5.0 504 540 r 1.99086 1 2 cbr 210 ------- 1 1.0 5.0 490 526 + 1.99086 2 3 cbr 210 ------- 1 1.0 5.0 490 526 r 1.9924 3 5 cbr 210 ------- 1 1.0 5.0 456 489 r 1.9928 2 3 cbr 210 ------- 1 1.0 5.0 472 506 + 1.9928 3 5 cbr 210 ------- 1 1.0 5.0 472 506 - 1.9928 3 5 cbr 210 ------- 1 1.0 5.0 472 506 - 1.9932 2 3 cbr 210 ------- 1 1.0 5.0 488 524 + 1.99375 1 2 cbr 210 ------- 1 1.0 5.0 505 541 - 1.99375 1 2 cbr 210 ------- 1 1.0 5.0 505 541 r 1.99461 1 2 cbr 210 ------- 1 1.0 5.0 491 527 + 1.99461 2 3 cbr 210 ------- 1 1.0 5.0 491 527 r 1.99576 3 5 cbr 210 ------- 1 1.0 5.0 457 490 r 1.99616 2 3 cbr 210 ------- 1 1.0 5.0 473 507 + 1.99616 3 5 cbr 210 ------- 1 1.0 5.0 473 507 - 1.99616 3 5 cbr 210 ------- 1 1.0 5.0 473 507 - 1.99656 2 3 cbr 210 ------- 1 1.0 5.0 489 525 + 1.9975 1 2 cbr 210 ------- 1 1.0 5.0 506 542 - 1.9975 1 2 cbr 210 ------- 1 1.0 5.0 506 542 r 1.99836 1 2 cbr 210 ------- 1 1.0 5.0 492 528 + 1.99836 2 3 cbr 210 ------- 1 1.0 5.0 492 528 r 1.99912 3 5 cbr 210 ------- 1 1.0 5.0 458 491 r 1.99952 2 3 cbr 210 ------- 1 1.0 5.0 474 508 + 1.99952 3 5 cbr 210 ------- 1 1.0 5.0 474 508 - 1.99952 3 5 cbr 210 ------- 1 1.0 5.0 474 508 - 1.99992 2 3 cbr 210 ------- 1 1.0 5.0 490 526 r 2.00064 2 0 ack 40 ------- 0 4.0 0.0 11 500 + 2.00064 0 2 tcp 1000 ------- 0 0.0 4.0 15 543 - 2.00064 0 2 tcp 1000 ------- 0 0.0 4.0 15 543 + 2.00125 1 2 cbr 210 ------- 1 1.0 5.0 507 544 - 2.00125 1 2 cbr 210 ------- 1 1.0 5.0 507 544 r 2.00211 1 2 cbr 210 ------- 1 1.0 5.0 493 529 + 2.00211 2 3 cbr 210 ------- 1 1.0 5.0 493 529 r 2.00248 3 5 cbr 210 ------- 1 1.0 5.0 459 492 r 2.00288 2 3 cbr 210 ------- 1 1.0 5.0 475 510 + 2.00288 3 5 cbr 210 ------- 1 1.0 5.0 475 510 - 2.00288 3 5 cbr 210 ------- 1 1.0 5.0 475 510 - 2.00328 2 3 cbr 210 ------- 1 1.0 5.0 491 527 + 2.005 1 2 cbr 210 ------- 1 1.0 5.0 508 545 - 2.005 1 2 cbr 210 ------- 1 1.0 5.0 508 545 r 2.00584 3 5 cbr 210 ------- 1 1.0 5.0 460 493 r 2.00586 1 2 cbr 210 ------- 1 1.0 5.0 494 530 + 2.00586 2 3 cbr 210 ------- 1 1.0 5.0 494 530 r 2.00624 2 3 cbr 210 ------- 1 1.0 5.0 476 511 + 2.00624 3 5 cbr 210 ------- 1 1.0 5.0 476 511 - 2.00624 3 5 cbr 210 ------- 1 1.0 5.0 476 511 - 2.00664 2 3 cbr 210 ------- 1 1.0 5.0 492 528 + 2.00875 1 2 cbr 210 ------- 1 1.0 5.0 509 546 - 2.00875 1 2 cbr 210 ------- 1 1.0 5.0 509 546 r 2.00888 3 2 ack 40 ------- 0 4.0 0.0 13 518 + 2.00888 2 0 ack 40 ------- 0 4.0 0.0 13 518 - 2.00888 2 0 ack 40 ------- 0 4.0 0.0 13 518 r 2.0092 3 5 cbr 210 ------- 1 1.0 5.0 461 494 r 2.0096 2 3 cbr 210 ------- 1 1.0 5.0 477 512 + 2.0096 3 5 cbr 210 ------- 1 1.0 5.0 477 512 - 2.0096 3 5 cbr 210 ------- 1 1.0 5.0 477 512 r 2.00961 1 2 cbr 210 ------- 1 1.0 5.0 495 531 + 2.00961 2 3 cbr 210 ------- 1 1.0 5.0 495 531 - 2.01 2 3 cbr 210 ------- 1 1.0 5.0 493 529 + 2.0125 1 2 cbr 210 ------- 1 1.0 5.0 510 547 - 2.0125 1 2 cbr 210 ------- 1 1.0 5.0 510 547 r 2.01256 3 5 cbr 210 ------- 1 1.0 5.0 462 495 r 2.01296 2 3 cbr 210 ------- 1 1.0 5.0 478 513 + 2.01296 3 5 cbr 210 ------- 1 1.0 5.0 478 513 - 2.01296 3 5 cbr 210 ------- 1 1.0 5.0 478 513 r 2.01336 1 2 cbr 210 ------- 1 1.0 5.0 496 532 + 2.01336 2 3 cbr 210 ------- 1 1.0 5.0 496 532 - 2.01336 2 3 cbr 210 ------- 1 1.0 5.0 494 530 r 2.01592 3 5 cbr 210 ------- 1 1.0 5.0 463 496 + 2.01625 1 2 cbr 210 ------- 1 1.0 5.0 511 548 - 2.01625 1 2 cbr 210 ------- 1 1.0 5.0 511 548 r 2.01632 2 3 cbr 210 ------- 1 1.0 5.0 479 514 + 2.01632 3 5 cbr 210 ------- 1 1.0 5.0 479 514 - 2.01632 3 5 cbr 210 ------- 1 1.0 5.0 479 514 - 2.01672 2 3 cbr 210 ------- 1 1.0 5.0 495 531 r 2.01711 1 2 cbr 210 ------- 1 1.0 5.0 497 533 + 2.01711 2 3 cbr 210 ------- 1 1.0 5.0 497 533 r 2.01928 3 5 cbr 210 ------- 1 1.0 5.0 464 497 r 2.01968 2 3 cbr 210 ------- 1 1.0 5.0 480 515 + 2.01968 3 5 cbr 210 ------- 1 1.0 5.0 480 515 - 2.01968 3 5 cbr 210 ------- 1 1.0 5.0 480 515 + 2.02 1 2 cbr 210 ------- 1 1.0 5.0 512 549 - 2.02 1 2 cbr 210 ------- 1 1.0 5.0 512 549 - 2.02008 2 3 cbr 210 ------- 1 1.0 5.0 496 532 r 2.02086 1 2 cbr 210 ------- 1 1.0 5.0 498 534 + 2.02086 2 3 cbr 210 ------- 1 1.0 5.0 498 534 r 2.02264 3 5 cbr 210 ------- 1 1.0 5.0 465 498 r 2.02304 2 3 cbr 210 ------- 1 1.0 5.0 481 516 + 2.02304 3 5 cbr 210 ------- 1 1.0 5.0 481 516 - 2.02304 3 5 cbr 210 ------- 1 1.0 5.0 481 516 - 2.02344 2 3 cbr 210 ------- 1 1.0 5.0 497 533 + 2.02375 1 2 cbr 210 ------- 1 1.0 5.0 513 550 - 2.02375 1 2 cbr 210 ------- 1 1.0 5.0 513 550 r 2.02461 1 2 cbr 210 ------- 1 1.0 5.0 499 535 + 2.02461 2 3 cbr 210 ------- 1 1.0 5.0 499 535 r 2.026 3 5 cbr 210 ------- 1 1.0 5.0 466 499 r 2.0264 2 3 cbr 210 ------- 1 1.0 5.0 482 517 + 2.0264 3 5 cbr 210 ------- 1 1.0 5.0 482 517 - 2.0264 3 5 cbr 210 ------- 1 1.0 5.0 482 517 - 2.0268 2 3 cbr 210 ------- 1 1.0 5.0 498 534 + 2.0275 1 2 cbr 210 ------- 1 1.0 5.0 514 551 - 2.0275 1 2 cbr 210 ------- 1 1.0 5.0 514 551 r 2.02836 1 2 cbr 210 ------- 1 1.0 5.0 500 536 + 2.02836 2 3 cbr 210 ------- 1 1.0 5.0 500 536 r 2.02936 3 5 cbr 210 ------- 1 1.0 5.0 467 501 r 2.02976 2 3 cbr 210 ------- 1 1.0 5.0 483 519 + 2.02976 3 5 cbr 210 ------- 1 1.0 5.0 483 519 - 2.02976 3 5 cbr 210 ------- 1 1.0 5.0 483 519 r 2.03008 2 0 ack 40 ------- 0 4.0 0.0 12 509 + 2.03008 0 2 tcp 1000 ------- 0 0.0 4.0 16 552 - 2.03008 0 2 tcp 1000 ------- 0 0.0 4.0 16 552 - 2.03016 2 3 cbr 210 ------- 1 1.0 5.0 499 535 + 2.03125 1 2 cbr 210 ------- 1 1.0 5.0 515 553 - 2.03125 1 2 cbr 210 ------- 1 1.0 5.0 515 553 r 2.03211 1 2 cbr 210 ------- 1 1.0 5.0 501 537 + 2.03211 2 3 cbr 210 ------- 1 1.0 5.0 501 537 r 2.03272 3 5 cbr 210 ------- 1 1.0 5.0 468 502 r 2.03312 2 3 cbr 210 ------- 1 1.0 5.0 484 520 + 2.03312 3 5 cbr 210 ------- 1 1.0 5.0 484 520 - 2.03312 3 5 cbr 210 ------- 1 1.0 5.0 484 520 - 2.03352 2 3 cbr 210 ------- 1 1.0 5.0 500 536 + 2.035 1 2 cbr 210 ------- 1 1.0 5.0 516 554 - 2.035 1 2 cbr 210 ------- 1 1.0 5.0 516 554 r 2.03586 1 2 cbr 210 ------- 1 1.0 5.0 502 538 + 2.03586 2 3 cbr 210 ------- 1 1.0 5.0 502 538 r 2.03608 3 5 cbr 210 ------- 1 1.0 5.0 469 503 r 2.03648 2 3 cbr 210 ------- 1 1.0 5.0 485 521 + 2.03648 3 5 cbr 210 ------- 1 1.0 5.0 485 521 - 2.03648 3 5 cbr 210 ------- 1 1.0 5.0 485 521 - 2.03688 2 3 cbr 210 ------- 1 1.0 5.0 501 537 + 2.03875 1 2 cbr 210 ------- 1 1.0 5.0 517 555 - 2.03875 1 2 cbr 210 ------- 1 1.0 5.0 517 555 r 2.03944 3 5 cbr 210 ------- 1 1.0 5.0 470 504 r 2.03961 1 2 cbr 210 ------- 1 1.0 5.0 503 539 + 2.03961 2 3 cbr 210 ------- 1 1.0 5.0 503 539 r 2.03984 2 3 cbr 210 ------- 1 1.0 5.0 486 522 + 2.03984 3 5 cbr 210 ------- 1 1.0 5.0 486 522 - 2.03984 3 5 cbr 210 ------- 1 1.0 5.0 486 522 - 2.04024 2 3 cbr 210 ------- 1 1.0 5.0 502 538 + 2.0425 1 2 cbr 210 ------- 1 1.0 5.0 518 556 - 2.0425 1 2 cbr 210 ------- 1 1.0 5.0 518 556 r 2.0428 3 5 cbr 210 ------- 1 1.0 5.0 471 505 r 2.0432 2 3 cbr 210 ------- 1 1.0 5.0 487 523 + 2.0432 3 5 cbr 210 ------- 1 1.0 5.0 487 523 - 2.0432 3 5 cbr 210 ------- 1 1.0 5.0 487 523 r 2.04336 1 2 cbr 210 ------- 1 1.0 5.0 504 540 + 2.04336 2 3 cbr 210 ------- 1 1.0 5.0 504 540 - 2.0436 2 3 cbr 210 ------- 1 1.0 5.0 503 539 r 2.04616 3 5 cbr 210 ------- 1 1.0 5.0 472 506 + 2.04625 1 2 cbr 210 ------- 1 1.0 5.0 519 557 - 2.04625 1 2 cbr 210 ------- 1 1.0 5.0 519 557 r 2.04656 2 3 cbr 210 ------- 1 1.0 5.0 488 524 + 2.04656 3 5 cbr 210 ------- 1 1.0 5.0 488 524 - 2.04656 3 5 cbr 210 ------- 1 1.0 5.0 488 524 - 2.04696 2 3 cbr 210 ------- 1 1.0 5.0 504 540 r 2.04711 1 2 cbr 210 ------- 1 1.0 5.0 505 541 + 2.04711 2 3 cbr 210 ------- 1 1.0 5.0 505 541 r 2.04952 3 5 cbr 210 ------- 1 1.0 5.0 473 507 r 2.04992 2 3 cbr 210 ------- 1 1.0 5.0 489 525 + 2.04992 3 5 cbr 210 ------- 1 1.0 5.0 489 525 - 2.04992 3 5 cbr 210 ------- 1 1.0 5.0 489 525 + 2.05 1 2 cbr 210 ------- 1 1.0 5.0 520 558 - 2.05 1 2 cbr 210 ------- 1 1.0 5.0 520 558 - 2.05032 2 3 cbr 210 ------- 1 1.0 5.0 505 541 r 2.05086 1 2 cbr 210 ------- 1 1.0 5.0 506 542 + 2.05086 2 3 cbr 210 ------- 1 1.0 5.0 506 542 r 2.05288 3 5 cbr 210 ------- 1 1.0 5.0 474 508 r 2.05328 2 3 cbr 210 ------- 1 1.0 5.0 490 526 + 2.05328 3 5 cbr 210 ------- 1 1.0 5.0 490 526 - 2.05328 3 5 cbr 210 ------- 1 1.0 5.0 490 526 - 2.05368 2 3 cbr 210 ------- 1 1.0 5.0 506 542 + 2.05375 1 2 cbr 210 ------- 1 1.0 5.0 521 559 - 2.05375 1 2 cbr 210 ------- 1 1.0 5.0 521 559 r 2.05461 1 2 cbr 210 ------- 1 1.0 5.0 507 544 + 2.05461 2 3 cbr 210 ------- 1 1.0 5.0 507 544 r 2.05624 3 5 cbr 210 ------- 1 1.0 5.0 475 510 r 2.05664 2 3 cbr 210 ------- 1 1.0 5.0 491 527 + 2.05664 3 5 cbr 210 ------- 1 1.0 5.0 491 527 - 2.05664 3 5 cbr 210 ------- 1 1.0 5.0 491 527 - 2.05704 2 3 cbr 210 ------- 1 1.0 5.0 507 544 + 2.0575 1 2 cbr 210 ------- 1 1.0 5.0 522 560 - 2.0575 1 2 cbr 210 ------- 1 1.0 5.0 522 560 r 2.05836 1 2 cbr 210 ------- 1 1.0 5.0 508 545 + 2.05836 2 3 cbr 210 ------- 1 1.0 5.0 508 545 r 2.05952 2 0 ack 40 ------- 0 4.0 0.0 13 518 + 2.05952 0 2 tcp 1000 ------- 0 0.0 4.0 17 561 - 2.05952 0 2 tcp 1000 ------- 0 0.0 4.0 17 561 r 2.0596 3 5 cbr 210 ------- 1 1.0 5.0 476 511 r 2.06 2 3 cbr 210 ------- 1 1.0 5.0 492 528 + 2.06 3 5 cbr 210 ------- 1 1.0 5.0 492 528 - 2.06 3 5 cbr 210 ------- 1 1.0 5.0 492 528 - 2.0604 2 3 cbr 210 ------- 1 1.0 5.0 508 545 + 2.06125 1 2 cbr 210 ------- 1 1.0 5.0 523 562 - 2.06125 1 2 cbr 210 ------- 1 1.0 5.0 523 562 r 2.06211 1 2 cbr 210 ------- 1 1.0 5.0 509 546 + 2.06211 2 3 cbr 210 ------- 1 1.0 5.0 509 546 r 2.06296 3 5 cbr 210 ------- 1 1.0 5.0 477 512 r 2.06336 2 3 cbr 210 ------- 1 1.0 5.0 493 529 + 2.06336 3 5 cbr 210 ------- 1 1.0 5.0 493 529 - 2.06336 3 5 cbr 210 ------- 1 1.0 5.0 493 529 - 2.06376 2 3 cbr 210 ------- 1 1.0 5.0 509 546 + 2.065 1 2 cbr 210 ------- 1 1.0 5.0 524 563 - 2.065 1 2 cbr 210 ------- 1 1.0 5.0 524 563 r 2.06586 1 2 cbr 210 ------- 1 1.0 5.0 510 547 + 2.06586 2 3 cbr 210 ------- 1 1.0 5.0 510 547 r 2.06632 3 5 cbr 210 ------- 1 1.0 5.0 478 513 r 2.06664 0 2 tcp 1000 ------- 0 0.0 4.0 15 543 + 2.06664 2 3 tcp 1000 ------- 0 0.0 4.0 15 543 r 2.06672 2 3 cbr 210 ------- 1 1.0 5.0 494 530 + 2.06672 3 5 cbr 210 ------- 1 1.0 5.0 494 530 - 2.06672 3 5 cbr 210 ------- 1 1.0 5.0 494 530 - 2.06712 2 3 cbr 210 ------- 1 1.0 5.0 510 547 + 2.06875 1 2 cbr 210 ------- 1 1.0 5.0 525 564 - 2.06875 1 2 cbr 210 ------- 1 1.0 5.0 525 564 r 2.06961 1 2 cbr 210 ------- 1 1.0 5.0 511 548 + 2.06961 2 3 cbr 210 ------- 1 1.0 5.0 511 548 r 2.06968 3 5 cbr 210 ------- 1 1.0 5.0 479 514 r 2.07008 2 3 cbr 210 ------- 1 1.0 5.0 495 531 + 2.07008 3 5 cbr 210 ------- 1 1.0 5.0 495 531 - 2.07008 3 5 cbr 210 ------- 1 1.0 5.0 495 531 - 2.07048 2 3 tcp 1000 ------- 0 0.0 4.0 15 543 + 2.0725 1 2 cbr 210 ------- 1 1.0 5.0 526 565 - 2.0725 1 2 cbr 210 ------- 1 1.0 5.0 526 565 r 2.07304 3 5 cbr 210 ------- 1 1.0 5.0 480 515 r 2.07336 1 2 cbr 210 ------- 1 1.0 5.0 512 549 + 2.07336 2 3 cbr 210 ------- 1 1.0 5.0 512 549 r 2.07344 2 3 cbr 210 ------- 1 1.0 5.0 496 532 + 2.07344 3 5 cbr 210 ------- 1 1.0 5.0 496 532 - 2.07344 3 5 cbr 210 ------- 1 1.0 5.0 496 532 + 2.07625 1 2 cbr 210 ------- 1 1.0 5.0 527 566 - 2.07625 1 2 cbr 210 ------- 1 1.0 5.0 527 566 r 2.0764 3 5 cbr 210 ------- 1 1.0 5.0 481 516 r 2.0768 2 3 cbr 210 ------- 1 1.0 5.0 497 533 + 2.0768 3 5 cbr 210 ------- 1 1.0 5.0 497 533 - 2.0768 3 5 cbr 210 ------- 1 1.0 5.0 497 533 r 2.07711 1 2 cbr 210 ------- 1 1.0 5.0 513 550 + 2.07711 2 3 cbr 210 ------- 1 1.0 5.0 513 550 r 2.07976 3 5 cbr 210 ------- 1 1.0 5.0 482 517 + 2.08 1 2 cbr 210 ------- 1 1.0 5.0 528 567 - 2.08 1 2 cbr 210 ------- 1 1.0 5.0 528 567 r 2.08016 2 3 cbr 210 ------- 1 1.0 5.0 498 534 + 2.08016 3 5 cbr 210 ------- 1 1.0 5.0 498 534 - 2.08016 3 5 cbr 210 ------- 1 1.0 5.0 498 534 r 2.08086 1 2 cbr 210 ------- 1 1.0 5.0 514 551 + 2.08086 2 3 cbr 210 ------- 1 1.0 5.0 514 551 r 2.08312 3 5 cbr 210 ------- 1 1.0 5.0 483 519 r 2.08352 2 3 cbr 210 ------- 1 1.0 5.0 499 535 + 2.08352 3 5 cbr 210 ------- 1 1.0 5.0 499 535 - 2.08352 3 5 cbr 210 ------- 1 1.0 5.0 499 535 + 2.08375 1 2 cbr 210 ------- 1 1.0 5.0 529 568 - 2.08375 1 2 cbr 210 ------- 1 1.0 5.0 529 568 r 2.08461 1 2 cbr 210 ------- 1 1.0 5.0 515 553 + 2.08461 2 3 cbr 210 ------- 1 1.0 5.0 515 553 - 2.08648 2 3 cbr 210 ------- 1 1.0 5.0 511 548 r 2.08648 3 5 cbr 210 ------- 1 1.0 5.0 484 520 r 2.08688 2 3 cbr 210 ------- 1 1.0 5.0 500 536 + 2.08688 3 5 cbr 210 ------- 1 1.0 5.0 500 536 - 2.08688 3 5 cbr 210 ------- 1 1.0 5.0 500 536 + 2.0875 1 2 cbr 210 ------- 1 1.0 5.0 530 569 - 2.0875 1 2 cbr 210 ------- 1 1.0 5.0 530 569 r 2.08836 1 2 cbr 210 ------- 1 1.0 5.0 516 554 + 2.08836 2 3 cbr 210 ------- 1 1.0 5.0 516 554 - 2.08984 2 3 cbr 210 ------- 1 1.0 5.0 512 549 r 2.08984 3 5 cbr 210 ------- 1 1.0 5.0 485 521 r 2.09024 2 3 cbr 210 ------- 1 1.0 5.0 501 537 + 2.09024 3 5 cbr 210 ------- 1 1.0 5.0 501 537 - 2.09024 3 5 cbr 210 ------- 1 1.0 5.0 501 537 + 2.09125 1 2 cbr 210 ------- 1 1.0 5.0 531 570 - 2.09125 1 2 cbr 210 ------- 1 1.0 5.0 531 570 r 2.09211 1 2 cbr 210 ------- 1 1.0 5.0 517 555 + 2.09211 2 3 cbr 210 ------- 1 1.0 5.0 517 555 - 2.0932 2 3 cbr 210 ------- 1 1.0 5.0 513 550 r 2.0932 3 5 cbr 210 ------- 1 1.0 5.0 486 522 r 2.0936 2 3 cbr 210 ------- 1 1.0 5.0 502 538 + 2.0936 3 5 cbr 210 ------- 1 1.0 5.0 502 538 - 2.0936 3 5 cbr 210 ------- 1 1.0 5.0 502 538 + 2.095 1 2 cbr 210 ------- 1 1.0 5.0 532 571 - 2.095 1 2 cbr 210 ------- 1 1.0 5.0 532 571 r 2.09586 1 2 cbr 210 ------- 1 1.0 5.0 518 556 + 2.09586 2 3 cbr 210 ------- 1 1.0 5.0 518 556 r 2.09608 0 2 tcp 1000 ------- 0 0.0 4.0 16 552 + 2.09608 2 3 tcp 1000 ------- 0 0.0 4.0 16 552 - 2.09656 2 3 cbr 210 ------- 1 1.0 5.0 514 551 r 2.09656 3 5 cbr 210 ------- 1 1.0 5.0 487 523 r 2.09696 2 3 cbr 210 ------- 1 1.0 5.0 503 539 + 2.09696 3 5 cbr 210 ------- 1 1.0 5.0 503 539 - 2.09696 3 5 cbr 210 ------- 1 1.0 5.0 503 539 + 2.09875 1 2 cbr 210 ------- 1 1.0 5.0 533 572 - 2.09875 1 2 cbr 210 ------- 1 1.0 5.0 533 572 r 2.09961 1 2 cbr 210 ------- 1 1.0 5.0 519 557 + 2.09961 2 3 cbr 210 ------- 1 1.0 5.0 519 557 - 2.09992 2 3 cbr 210 ------- 1 1.0 5.0 515 553 r 2.09992 3 5 cbr 210 ------- 1 1.0 5.0 488 524 r 2.10032 2 3 cbr 210 ------- 1 1.0 5.0 504 540 + 2.10032 3 5 cbr 210 ------- 1 1.0 5.0 504 540 - 2.10032 3 5 cbr 210 ------- 1 1.0 5.0 504 540 + 2.1025 1 2 cbr 210 ------- 1 1.0 5.0 534 573 - 2.1025 1 2 cbr 210 ------- 1 1.0 5.0 534 573 - 2.10328 2 3 cbr 210 ------- 1 1.0 5.0 516 554 r 2.10328 3 5 cbr 210 ------- 1 1.0 5.0 489 525 r 2.10336 1 2 cbr 210 ------- 1 1.0 5.0 520 558 + 2.10336 2 3 cbr 210 ------- 1 1.0 5.0 520 558 r 2.10368 2 3 cbr 210 ------- 1 1.0 5.0 505 541 + 2.10368 3 5 cbr 210 ------- 1 1.0 5.0 505 541 - 2.10368 3 5 cbr 210 ------- 1 1.0 5.0 505 541 + 2.10625 1 2 cbr 210 ------- 1 1.0 5.0 535 574 - 2.10625 1 2 cbr 210 ------- 1 1.0 5.0 535 574 - 2.10664 2 3 cbr 210 ------- 1 1.0 5.0 517 555 r 2.10664 3 5 cbr 210 ------- 1 1.0 5.0 490 526 r 2.10704 2 3 cbr 210 ------- 1 1.0 5.0 506 542 + 2.10704 3 5 cbr 210 ------- 1 1.0 5.0 506 542 - 2.10704 3 5 cbr 210 ------- 1 1.0 5.0 506 542 r 2.10711 1 2 cbr 210 ------- 1 1.0 5.0 521 559 + 2.10711 2 3 cbr 210 ------- 1 1.0 5.0 521 559 + 2.11 1 2 cbr 210 ------- 1 1.0 5.0 536 575 - 2.11 1 2 cbr 210 ------- 1 1.0 5.0 536 575 - 2.11 2 3 cbr 210 ------- 1 1.0 5.0 518 556 r 2.11 3 5 cbr 210 ------- 1 1.0 5.0 491 527 r 2.1104 2 3 cbr 210 ------- 1 1.0 5.0 507 544 + 2.1104 3 5 cbr 210 ------- 1 1.0 5.0 507 544 - 2.1104 3 5 cbr 210 ------- 1 1.0 5.0 507 544 r 2.11086 1 2 cbr 210 ------- 1 1.0 5.0 522 560 + 2.11086 2 3 cbr 210 ------- 1 1.0 5.0 522 560 - 2.11336 2 3 tcp 1000 ------- 0 0.0 4.0 16 552 r 2.11336 3 5 cbr 210 ------- 1 1.0 5.0 492 528 + 2.11375 1 2 cbr 210 ------- 1 1.0 5.0 537 576 - 2.11375 1 2 cbr 210 ------- 1 1.0 5.0 537 576 r 2.11376 2 3 cbr 210 ------- 1 1.0 5.0 508 545 + 2.11376 3 5 cbr 210 ------- 1 1.0 5.0 508 545 - 2.11376 3 5 cbr 210 ------- 1 1.0 5.0 508 545 r 2.11461 1 2 cbr 210 ------- 1 1.0 5.0 523 562 + 2.11461 2 3 cbr 210 ------- 1 1.0 5.0 523 562 r 2.11672 3 5 cbr 210 ------- 1 1.0 5.0 493 529 r 2.11712 2 3 cbr 210 ------- 1 1.0 5.0 509 546 + 2.11712 3 5 cbr 210 ------- 1 1.0 5.0 509 546 - 2.11712 3 5 cbr 210 ------- 1 1.0 5.0 509 546 + 2.1175 1 2 cbr 210 ------- 1 1.0 5.0 538 577 - 2.1175 1 2 cbr 210 ------- 1 1.0 5.0 538 577 r 2.11836 1 2 cbr 210 ------- 1 1.0 5.0 524 563 + 2.11836 2 3 cbr 210 ------- 1 1.0 5.0 524 563 r 2.12008 3 5 cbr 210 ------- 1 1.0 5.0 494 530 r 2.12048 2 3 cbr 210 ------- 1 1.0 5.0 510 547 + 2.12048 3 5 cbr 210 ------- 1 1.0 5.0 510 547 - 2.12048 3 5 cbr 210 ------- 1 1.0 5.0 510 547 + 2.12125 1 2 cbr 210 ------- 1 1.0 5.0 539 578 - 2.12125 1 2 cbr 210 ------- 1 1.0 5.0 539 578 r 2.12211 1 2 cbr 210 ------- 1 1.0 5.0 525 564 + 2.12211 2 3 cbr 210 ------- 1 1.0 5.0 525 564 r 2.12344 3 5 cbr 210 ------- 1 1.0 5.0 495 531 + 2.125 1 2 cbr 210 ------- 1 1.0 5.0 540 579 - 2.125 1 2 cbr 210 ------- 1 1.0 5.0 540 579 r 2.12552 0 2 tcp 1000 ------- 0 0.0 4.0 17 561 + 2.12552 2 3 tcp 1000 ------- 0 0.0 4.0 17 561 r 2.12586 1 2 cbr 210 ------- 1 1.0 5.0 526 565 + 2.12586 2 3 cbr 210 ------- 1 1.0 5.0 526 565 r 2.1268 3 5 cbr 210 ------- 1 1.0 5.0 496 532 + 2.12875 1 2 cbr 210 ------- 1 1.0 5.0 541 580 - 2.12875 1 2 cbr 210 ------- 1 1.0 5.0 541 580 - 2.12936 2 3 cbr 210 ------- 1 1.0 5.0 519 557 r 2.12961 1 2 cbr 210 ------- 1 1.0 5.0 527 566 + 2.12961 2 3 cbr 210 ------- 1 1.0 5.0 527 566 r 2.13016 3 5 cbr 210 ------- 1 1.0 5.0 497 533 + 2.1325 1 2 cbr 210 ------- 1 1.0 5.0 542 581 - 2.1325 1 2 cbr 210 ------- 1 1.0 5.0 542 581 - 2.13272 2 3 cbr 210 ------- 1 1.0 5.0 520 558 r 2.13336 1 2 cbr 210 ------- 1 1.0 5.0 528 567 + 2.13336 2 3 cbr 210 ------- 1 1.0 5.0 528 567 r 2.13352 3 5 cbr 210 ------- 1 1.0 5.0 498 534 - 2.13608 2 3 cbr 210 ------- 1 1.0 5.0 521 559 + 2.13625 1 2 cbr 210 ------- 1 1.0 5.0 543 582 - 2.13625 1 2 cbr 210 ------- 1 1.0 5.0 543 582 r 2.13648 2 3 tcp 1000 ------- 0 0.0 4.0 15 543 + 2.13648 3 4 tcp 1000 ------- 0 0.0 4.0 15 543 - 2.13648 3 4 tcp 1000 ------- 0 0.0 4.0 15 543 r 2.13688 3 5 cbr 210 ------- 1 1.0 5.0 499 535 r 2.13711 1 2 cbr 210 ------- 1 1.0 5.0 529 568 + 2.13711 2 3 cbr 210 ------- 1 1.0 5.0 529 568 - 2.13944 2 3 cbr 210 ------- 1 1.0 5.0 522 560 r 2.13984 2 3 cbr 210 ------- 1 1.0 5.0 511 548 + 2.13984 3 5 cbr 210 ------- 1 1.0 5.0 511 548 - 2.13984 3 5 cbr 210 ------- 1 1.0 5.0 511 548 + 2.14 1 2 cbr 210 ------- 1 1.0 5.0 544 583 - 2.14 1 2 cbr 210 ------- 1 1.0 5.0 544 583 r 2.14024 3 5 cbr 210 ------- 1 1.0 5.0 500 536 r 2.14086 1 2 cbr 210 ------- 1 1.0 5.0 530 569 + 2.14086 2 3 cbr 210 ------- 1 1.0 5.0 530 569 - 2.1428 2 3 cbr 210 ------- 1 1.0 5.0 523 562 r 2.1432 2 3 cbr 210 ------- 1 1.0 5.0 512 549 + 2.1432 3 5 cbr 210 ------- 1 1.0 5.0 512 549 - 2.1432 3 5 cbr 210 ------- 1 1.0 5.0 512 549 r 2.1436 3 5 cbr 210 ------- 1 1.0 5.0 501 537 + 2.14375 1 2 cbr 210 ------- 1 1.0 5.0 545 584 - 2.14375 1 2 cbr 210 ------- 1 1.0 5.0 545 584 r 2.14461 1 2 cbr 210 ------- 1 1.0 5.0 531 570 + 2.14461 2 3 cbr 210 ------- 1 1.0 5.0 531 570 - 2.14616 2 3 cbr 210 ------- 1 1.0 5.0 524 563 r 2.14656 2 3 cbr 210 ------- 1 1.0 5.0 513 550 + 2.14656 3 5 cbr 210 ------- 1 1.0 5.0 513 550 - 2.14656 3 5 cbr 210 ------- 1 1.0 5.0 513 550 r 2.14696 3 5 cbr 210 ------- 1 1.0 5.0 502 538 + 2.1475 1 2 cbr 210 ------- 1 1.0 5.0 546 585 - 2.1475 1 2 cbr 210 ------- 1 1.0 5.0 546 585 r 2.14836 1 2 cbr 210 ------- 1 1.0 5.0 532 571 + 2.14836 2 3 cbr 210 ------- 1 1.0 5.0 532 571 - 2.14952 2 3 cbr 210 ------- 1 1.0 5.0 525 564 r 2.14992 2 3 cbr 210 ------- 1 1.0 5.0 514 551 + 2.14992 3 5 cbr 210 ------- 1 1.0 5.0 514 551 - 2.14992 3 5 cbr 210 ------- 1 1.0 5.0 514 551 r 2.15032 3 5 cbr 210 ------- 1 1.0 5.0 503 539 + 2.15125 1 2 cbr 210 ------- 1 1.0 5.0 547 586 - 2.15125 1 2 cbr 210 ------- 1 1.0 5.0 547 586 r 2.15211 1 2 cbr 210 ------- 1 1.0 5.0 533 572 + 2.15211 2 3 cbr 210 ------- 1 1.0 5.0 533 572 - 2.15288 2 3 tcp 1000 ------- 0 0.0 4.0 17 561 r 2.15328 2 3 cbr 210 ------- 1 1.0 5.0 515 553 + 2.15328 3 5 cbr 210 ------- 1 1.0 5.0 515 553 - 2.15328 3 5 cbr 210 ------- 1 1.0 5.0 515 553 r 2.15368 3 5 cbr 210 ------- 1 1.0 5.0 504 540 + 2.155 1 2 cbr 210 ------- 1 1.0 5.0 548 587 - 2.155 1 2 cbr 210 ------- 1 1.0 5.0 548 587 r 2.15586 1 2 cbr 210 ------- 1 1.0 5.0 534 573 + 2.15586 2 3 cbr 210 ------- 1 1.0 5.0 534 573 r 2.15664 2 3 cbr 210 ------- 1 1.0 5.0 516 554 + 2.15664 3 5 cbr 210 ------- 1 1.0 5.0 516 554 - 2.15664 3 5 cbr 210 ------- 1 1.0 5.0 516 554 r 2.15704 3 5 cbr 210 ------- 1 1.0 5.0 505 541 + 2.15875 1 2 cbr 210 ------- 1 1.0 5.0 549 588 - 2.15875 1 2 cbr 210 ------- 1 1.0 5.0 549 588 r 2.15961 1 2 cbr 210 ------- 1 1.0 5.0 535 574 + 2.15961 2 3 cbr 210 ------- 1 1.0 5.0 535 574 d 2.15961 2 3 cbr 210 ------- 1 1.0 5.0 535 574 r 2.16 2 3 cbr 210 ------- 1 1.0 5.0 517 555 + 2.16 3 5 cbr 210 ------- 1 1.0 5.0 517 555 - 2.16 3 5 cbr 210 ------- 1 1.0 5.0 517 555 r 2.1604 3 5 cbr 210 ------- 1 1.0 5.0 506 542 + 2.1625 1 2 cbr 210 ------- 1 1.0 5.0 550 589 - 2.1625 1 2 cbr 210 ------- 1 1.0 5.0 550 589 r 2.16336 1 2 cbr 210 ------- 1 1.0 5.0 536 575 + 2.16336 2 3 cbr 210 ------- 1 1.0 5.0 536 575 d 2.16336 2 3 cbr 210 ------- 1 1.0 5.0 536 575 r 2.16336 2 3 cbr 210 ------- 1 1.0 5.0 518 556 + 2.16336 3 5 cbr 210 ------- 1 1.0 5.0 518 556 - 2.16336 3 5 cbr 210 ------- 1 1.0 5.0 518 556 r 2.16376 3 5 cbr 210 ------- 1 1.0 5.0 507 544 + 2.16625 1 2 cbr 210 ------- 1 1.0 5.0 551 590 - 2.16625 1 2 cbr 210 ------- 1 1.0 5.0 551 590 r 2.16711 1 2 cbr 210 ------- 1 1.0 5.0 537 576 + 2.16711 2 3 cbr 210 ------- 1 1.0 5.0 537 576 d 2.16711 2 3 cbr 210 ------- 1 1.0 5.0 537 576 r 2.16712 3 5 cbr 210 ------- 1 1.0 5.0 508 545 - 2.16888 2 3 cbr 210 ------- 1 1.0 5.0 526 565 + 2.17 1 2 cbr 210 ------- 1 1.0 5.0 552 591 - 2.17 1 2 cbr 210 ------- 1 1.0 5.0 552 591 r 2.17048 3 5 cbr 210 ------- 1 1.0 5.0 509 546 r 2.17086 1 2 cbr 210 ------- 1 1.0 5.0 538 577 + 2.17086 2 3 cbr 210 ------- 1 1.0 5.0 538 577 - 2.17224 2 3 cbr 210 ------- 1 1.0 5.0 527 566 + 2.17375 1 2 cbr 210 ------- 1 1.0 5.0 553 592 - 2.17375 1 2 cbr 210 ------- 1 1.0 5.0 553 592 r 2.17384 3 5 cbr 210 ------- 1 1.0 5.0 510 547 r 2.17461 1 2 cbr 210 ------- 1 1.0 5.0 539 578 + 2.17461 2 3 cbr 210 ------- 1 1.0 5.0 539 578 - 2.1756 2 3 cbr 210 ------- 1 1.0 5.0 528 567 + 2.1775 1 2 cbr 210 ------- 1 1.0 5.0 554 593 - 2.1775 1 2 cbr 210 ------- 1 1.0 5.0 554 593 r 2.17836 1 2 cbr 210 ------- 1 1.0 5.0 540 579 + 2.17836 2 3 cbr 210 ------- 1 1.0 5.0 540 579 - 2.17896 2 3 cbr 210 ------- 1 1.0 5.0 529 568 r 2.17936 2 3 tcp 1000 ------- 0 0.0 4.0 16 552 + 2.17936 3 4 tcp 1000 ------- 0 0.0 4.0 16 552 - 2.17936 3 4 tcp 1000 ------- 0 0.0 4.0 16 552 + 2.18125 1 2 cbr 210 ------- 1 1.0 5.0 555 594 - 2.18125 1 2 cbr 210 ------- 1 1.0 5.0 555 594 r 2.18211 1 2 cbr 210 ------- 1 1.0 5.0 541 580 + 2.18211 2 3 cbr 210 ------- 1 1.0 5.0 541 580 - 2.18232 2 3 cbr 210 ------- 1 1.0 5.0 530 569 r 2.18272 2 3 cbr 210 ------- 1 1.0 5.0 519 557 + 2.18272 3 5 cbr 210 ------- 1 1.0 5.0 519 557 - 2.18272 3 5 cbr 210 ------- 1 1.0 5.0 519 557 + 2.185 1 2 cbr 210 ------- 1 1.0 5.0 556 595 - 2.185 1 2 cbr 210 ------- 1 1.0 5.0 556 595 - 2.18568 2 3 cbr 210 ------- 1 1.0 5.0 531 570 r 2.18586 1 2 cbr 210 ------- 1 1.0 5.0 542 581 + 2.18586 2 3 cbr 210 ------- 1 1.0 5.0 542 581 r 2.18608 2 3 cbr 210 ------- 1 1.0 5.0 520 558 + 2.18608 3 5 cbr 210 ------- 1 1.0 5.0 520 558 - 2.18608 3 5 cbr 210 ------- 1 1.0 5.0 520 558 + 2.18875 1 2 cbr 210 ------- 1 1.0 5.0 557 596 - 2.18875 1 2 cbr 210 ------- 1 1.0 5.0 557 596 - 2.18904 2 3 cbr 210 ------- 1 1.0 5.0 532 571 r 2.18944 2 3 cbr 210 ------- 1 1.0 5.0 521 559 + 2.18944 3 5 cbr 210 ------- 1 1.0 5.0 521 559 - 2.18944 3 5 cbr 210 ------- 1 1.0 5.0 521 559 r 2.18961 1 2 cbr 210 ------- 1 1.0 5.0 543 582 + 2.18961 2 3 cbr 210 ------- 1 1.0 5.0 543 582 - 2.1924 2 3 cbr 210 ------- 1 1.0 5.0 533 572 + 2.1925 1 2 cbr 210 ------- 1 1.0 5.0 558 597 - 2.1925 1 2 cbr 210 ------- 1 1.0 5.0 558 597 r 2.1928 2 3 cbr 210 ------- 1 1.0 5.0 522 560 + 2.1928 3 5 cbr 210 ------- 1 1.0 5.0 522 560 - 2.1928 3 5 cbr 210 ------- 1 1.0 5.0 522 560 r 2.1932 3 5 cbr 210 ------- 1 1.0 5.0 511 548 r 2.19336 1 2 cbr 210 ------- 1 1.0 5.0 544 583 + 2.19336 2 3 cbr 210 ------- 1 1.0 5.0 544 583 - 2.19576 2 3 cbr 210 ------- 1 1.0 5.0 534 573 r 2.19616 2 3 cbr 210 ------- 1 1.0 5.0 523 562 + 2.19616 3 5 cbr 210 ------- 1 1.0 5.0 523 562 - 2.19616 3 5 cbr 210 ------- 1 1.0 5.0 523 562 + 2.19625 1 2 cbr 210 ------- 1 1.0 5.0 559 598 - 2.19625 1 2 cbr 210 ------- 1 1.0 5.0 559 598 r 2.19656 3 5 cbr 210 ------- 1 1.0 5.0 512 549 r 2.19711 1 2 cbr 210 ------- 1 1.0 5.0 545 584 + 2.19711 2 3 cbr 210 ------- 1 1.0 5.0 545 584 - 2.19912 2 3 cbr 210 ------- 1 1.0 5.0 538 577 r 2.19952 2 3 cbr 210 ------- 1 1.0 5.0 524 563 + 2.19952 3 5 cbr 210 ------- 1 1.0 5.0 524 563 - 2.19952 3 5 cbr 210 ------- 1 1.0 5.0 524 563 r 2.19992 3 5 cbr 210 ------- 1 1.0 5.0 513 550 + 2.2 1 2 cbr 210 ------- 1 1.0 5.0 560 599 - 2.2 1 2 cbr 210 ------- 1 1.0 5.0 560 599 r 2.20086 1 2 cbr 210 ------- 1 1.0 5.0 546 585 + 2.20086 2 3 cbr 210 ------- 1 1.0 5.0 546 585 - 2.20248 2 3 cbr 210 ------- 1 1.0 5.0 539 578 r 2.20248 3 4 tcp 1000 ------- 0 0.0 4.0 15 543 + 2.20248 4 3 ack 40 ------- 0 4.0 0.0 13 600 - 2.20248 4 3 ack 40 ------- 0 4.0 0.0 13 600 r 2.20288 2 3 cbr 210 ------- 1 1.0 5.0 525 564 + 2.20288 3 5 cbr 210 ------- 1 1.0 5.0 525 564 - 2.20288 3 5 cbr 210 ------- 1 1.0 5.0 525 564 r 2.20328 3 5 cbr 210 ------- 1 1.0 5.0 514 551 + 2.20375 1 2 cbr 210 ------- 1 1.0 5.0 561 601 - 2.20375 1 2 cbr 210 ------- 1 1.0 5.0 561 601 r 2.20461 1 2 cbr 210 ------- 1 1.0 5.0 547 586 + 2.20461 2 3 cbr 210 ------- 1 1.0 5.0 547 586 - 2.20584 2 3 cbr 210 ------- 1 1.0 5.0 540 579 r 2.20664 3 5 cbr 210 ------- 1 1.0 5.0 515 553 + 2.2075 1 2 cbr 210 ------- 1 1.0 5.0 562 602 - 2.2075 1 2 cbr 210 ------- 1 1.0 5.0 562 602 r 2.20836 1 2 cbr 210 ------- 1 1.0 5.0 548 587 + 2.20836 2 3 cbr 210 ------- 1 1.0 5.0 548 587 - 2.2092 2 3 cbr 210 ------- 1 1.0 5.0 541 580 r 2.21 3 5 cbr 210 ------- 1 1.0 5.0 516 554 + 2.21125 1 2 cbr 210 ------- 1 1.0 5.0 563 603 - 2.21125 1 2 cbr 210 ------- 1 1.0 5.0 563 603 r 2.21211 1 2 cbr 210 ------- 1 1.0 5.0 549 588 + 2.21211 2 3 cbr 210 ------- 1 1.0 5.0 549 588 - 2.21256 2 3 cbr 210 ------- 1 1.0 5.0 542 581 r 2.21336 3 5 cbr 210 ------- 1 1.0 5.0 517 555 + 2.215 1 2 cbr 210 ------- 1 1.0 5.0 564 604 - 2.215 1 2 cbr 210 ------- 1 1.0 5.0 564 604 r 2.21586 1 2 cbr 210 ------- 1 1.0 5.0 550 589 + 2.21586 2 3 cbr 210 ------- 1 1.0 5.0 550 589 - 2.21592 2 3 cbr 210 ------- 1 1.0 5.0 543 582 r 2.21672 3 5 cbr 210 ------- 1 1.0 5.0 518 556 + 2.21875 1 2 cbr 210 ------- 1 1.0 5.0 565 605 - 2.21875 1 2 cbr 210 ------- 1 1.0 5.0 565 605 r 2.21888 2 3 tcp 1000 ------- 0 0.0 4.0 17 561 + 2.21888 3 4 tcp 1000 ------- 0 0.0 4.0 17 561 - 2.21888 3 4 tcp 1000 ------- 0 0.0 4.0 17 561 - 2.21928 2 3 cbr 210 ------- 1 1.0 5.0 544 583 r 2.21961 1 2 cbr 210 ------- 1 1.0 5.0 551 590 + 2.21961 2 3 cbr 210 ------- 1 1.0 5.0 551 590 r 2.22224 2 3 cbr 210 ------- 1 1.0 5.0 526 565 + 2.22224 3 5 cbr 210 ------- 1 1.0 5.0 526 565 - 2.22224 3 5 cbr 210 ------- 1 1.0 5.0 526 565 + 2.2225 1 2 cbr 210 ------- 1 1.0 5.0 566 606 - 2.2225 1 2 cbr 210 ------- 1 1.0 5.0 566 606 - 2.22264 2 3 cbr 210 ------- 1 1.0 5.0 545 584 r 2.22336 1 2 cbr 210 ------- 1 1.0 5.0 552 591 + 2.22336 2 3 cbr 210 ------- 1 1.0 5.0 552 591 r 2.2256 2 3 cbr 210 ------- 1 1.0 5.0 527 566 + 2.2256 3 5 cbr 210 ------- 1 1.0 5.0 527 566 - 2.2256 3 5 cbr 210 ------- 1 1.0 5.0 527 566 - 2.226 2 3 cbr 210 ------- 1 1.0 5.0 546 585 + 2.22625 1 2 cbr 210 ------- 1 1.0 5.0 567 607 - 2.22625 1 2 cbr 210 ------- 1 1.0 5.0 567 607 r 2.22711 1 2 cbr 210 ------- 1 1.0 5.0 553 592 + 2.22711 2 3 cbr 210 ------- 1 1.0 5.0 553 592 r 2.22896 2 3 cbr 210 ------- 1 1.0 5.0 528 567 + 2.22896 3 5 cbr 210 ------- 1 1.0 5.0 528 567 - 2.22896 3 5 cbr 210 ------- 1 1.0 5.0 528 567 - 2.22936 2 3 cbr 210 ------- 1 1.0 5.0 547 586 + 2.23 1 2 cbr 210 ------- 1 1.0 5.0 568 608 - 2.23 1 2 cbr 210 ------- 1 1.0 5.0 568 608 r 2.23086 1 2 cbr 210 ------- 1 1.0 5.0 554 593 + 2.23086 2 3 cbr 210 ------- 1 1.0 5.0 554 593 r 2.23232 2 3 cbr 210 ------- 1 1.0 5.0 529 568 + 2.23232 3 5 cbr 210 ------- 1 1.0 5.0 529 568 - 2.23232 3 5 cbr 210 ------- 1 1.0 5.0 529 568 - 2.23272 2 3 cbr 210 ------- 1 1.0 5.0 548 587 + 2.23375 1 2 cbr 210 ------- 1 1.0 5.0 569 609 - 2.23375 1 2 cbr 210 ------- 1 1.0 5.0 569 609 r 2.23461 1 2 cbr 210 ------- 1 1.0 5.0 555 594 + 2.23461 2 3 cbr 210 ------- 1 1.0 5.0 555 594 r 2.23568 2 3 cbr 210 ------- 1 1.0 5.0 530 569 + 2.23568 3 5 cbr 210 ------- 1 1.0 5.0 530 569 - 2.23568 3 5 cbr 210 ------- 1 1.0 5.0 530 569 - 2.23608 2 3 cbr 210 ------- 1 1.0 5.0 549 588 r 2.23608 3 5 cbr 210 ------- 1 1.0 5.0 519 557 + 2.2375 1 2 cbr 210 ------- 1 1.0 5.0 570 610 - 2.2375 1 2 cbr 210 ------- 1 1.0 5.0 570 610 r 2.23836 1 2 cbr 210 ------- 1 1.0 5.0 556 595 + 2.23836 2 3 cbr 210 ------- 1 1.0 5.0 556 595 r 2.23904 2 3 cbr 210 ------- 1 1.0 5.0 531 570 + 2.23904 3 5 cbr 210 ------- 1 1.0 5.0 531 570 - 2.23904 3 5 cbr 210 ------- 1 1.0 5.0 531 570 - 2.23944 2 3 cbr 210 ------- 1 1.0 5.0 550 589 r 2.23944 3 5 cbr 210 ------- 1 1.0 5.0 520 558 + 2.24125 1 2 cbr 210 ------- 1 1.0 5.0 571 611 - 2.24125 1 2 cbr 210 ------- 1 1.0 5.0 571 611 r 2.24211 1 2 cbr 210 ------- 1 1.0 5.0 557 596 + 2.24211 2 3 cbr 210 ------- 1 1.0 5.0 557 596 r 2.2424 2 3 cbr 210 ------- 1 1.0 5.0 532 571 + 2.2424 3 5 cbr 210 ------- 1 1.0 5.0 532 571 - 2.2424 3 5 cbr 210 ------- 1 1.0 5.0 532 571 - 2.2428 2 3 cbr 210 ------- 1 1.0 5.0 551 590 r 2.2428 3 5 cbr 210 ------- 1 1.0 5.0 521 559 + 2.245 1 2 cbr 210 ------- 1 1.0 5.0 572 612 - 2.245 1 2 cbr 210 ------- 1 1.0 5.0 572 612 r 2.24536 3 4 tcp 1000 ------- 0 0.0 4.0 16 552 + 2.24536 4 3 ack 40 ------- 0 4.0 0.0 13 613 - 2.24536 4 3 ack 40 ------- 0 4.0 0.0 13 613 r 2.24576 2 3 cbr 210 ------- 1 1.0 5.0 533 572 + 2.24576 3 5 cbr 210 ------- 1 1.0 5.0 533 572 - 2.24576 3 5 cbr 210 ------- 1 1.0 5.0 533 572 r 2.24586 1 2 cbr 210 ------- 1 1.0 5.0 558 597 + 2.24586 2 3 cbr 210 ------- 1 1.0 5.0 558 597 - 2.24616 2 3 cbr 210 ------- 1 1.0 5.0 552 591 r 2.24616 3 5 cbr 210 ------- 1 1.0 5.0 522 560 + 2.24875 1 2 cbr 210 ------- 1 1.0 5.0 573 614 - 2.24875 1 2 cbr 210 ------- 1 1.0 5.0 573 614 r 2.24912 2 3 cbr 210 ------- 1 1.0 5.0 534 573 + 2.24912 3 5 cbr 210 ------- 1 1.0 5.0 534 573 - 2.24912 3 5 cbr 210 ------- 1 1.0 5.0 534 573 - 2.24952 2 3 cbr 210 ------- 1 1.0 5.0 553 592 r 2.24952 3 5 cbr 210 ------- 1 1.0 5.0 523 562 r 2.24961 1 2 cbr 210 ------- 1 1.0 5.0 559 598 + 2.24961 2 3 cbr 210 ------- 1 1.0 5.0 559 598 r 2.25248 2 3 cbr 210 ------- 1 1.0 5.0 538 577 + 2.25248 3 5 cbr 210 ------- 1 1.0 5.0 538 577 - 2.25248 3 5 cbr 210 ------- 1 1.0 5.0 538 577 + 2.2525 1 2 cbr 210 ------- 1 1.0 5.0 574 615 - 2.2525 1 2 cbr 210 ------- 1 1.0 5.0 574 615 - 2.25288 2 3 cbr 210 ------- 1 1.0 5.0 554 593 r 2.25288 3 5 cbr 210 ------- 1 1.0 5.0 524 563 r 2.25312 4 3 ack 40 ------- 0 4.0 0.0 13 600 + 2.25312 3 2 ack 40 ------- 0 4.0 0.0 13 600 - 2.25312 3 2 ack 40 ------- 0 4.0 0.0 13 600 r 2.25336 1 2 cbr 210 ------- 1 1.0 5.0 560 599 + 2.25336 2 3 cbr 210 ------- 1 1.0 5.0 560 599 r 2.25584 2 3 cbr 210 ------- 1 1.0 5.0 539 578 + 2.25584 3 5 cbr 210 ------- 1 1.0 5.0 539 578 - 2.25584 3 5 cbr 210 ------- 1 1.0 5.0 539 578 - 2.25624 2 3 cbr 210 ------- 1 1.0 5.0 555 594 r 2.25624 3 5 cbr 210 ------- 1 1.0 5.0 525 564 + 2.25625 1 2 cbr 210 ------- 1 1.0 5.0 575 616 - 2.25625 1 2 cbr 210 ------- 1 1.0 5.0 575 616 r 2.25711 1 2 cbr 210 ------- 1 1.0 5.0 561 601 + 2.25711 2 3 cbr 210 ------- 1 1.0 5.0 561 601 r 2.2592 2 3 cbr 210 ------- 1 1.0 5.0 540 579 + 2.2592 3 5 cbr 210 ------- 1 1.0 5.0 540 579 - 2.2592 3 5 cbr 210 ------- 1 1.0 5.0 540 579 - 2.2596 2 3 cbr 210 ------- 1 1.0 5.0 556 595 + 2.26 1 2 cbr 210 ------- 1 1.0 5.0 576 617 - 2.26 1 2 cbr 210 ------- 1 1.0 5.0 576 617 r 2.26086 1 2 cbr 210 ------- 1 1.0 5.0 562 602 + 2.26086 2 3 cbr 210 ------- 1 1.0 5.0 562 602 r 2.26256 2 3 cbr 210 ------- 1 1.0 5.0 541 580 + 2.26256 3 5 cbr 210 ------- 1 1.0 5.0 541 580 - 2.26256 3 5 cbr 210 ------- 1 1.0 5.0 541 580 - 2.26296 2 3 cbr 210 ------- 1 1.0 5.0 557 596 + 2.26375 1 2 cbr 210 ------- 1 1.0 5.0 577 618 - 2.26375 1 2 cbr 210 ------- 1 1.0 5.0 577 618 r 2.26461 1 2 cbr 210 ------- 1 1.0 5.0 563 603 + 2.26461 2 3 cbr 210 ------- 1 1.0 5.0 563 603 r 2.26592 2 3 cbr 210 ------- 1 1.0 5.0 542 581 + 2.26592 3 5 cbr 210 ------- 1 1.0 5.0 542 581 - 2.26592 3 5 cbr 210 ------- 1 1.0 5.0 542 581 - 2.26632 2 3 cbr 210 ------- 1 1.0 5.0 558 597 + 2.2675 1 2 cbr 210 ------- 1 1.0 5.0 578 619 - 2.2675 1 2 cbr 210 ------- 1 1.0 5.0 578 619 r 2.26836 1 2 cbr 210 ------- 1 1.0 5.0 564 604 + 2.26836 2 3 cbr 210 ------- 1 1.0 5.0 564 604 r 2.26928 2 3 cbr 210 ------- 1 1.0 5.0 543 582 + 2.26928 3 5 cbr 210 ------- 1 1.0 5.0 543 582 - 2.26928 3 5 cbr 210 ------- 1 1.0 5.0 543 582 - 2.26968 2 3 cbr 210 ------- 1 1.0 5.0 559 598 + 2.27125 1 2 cbr 210 ------- 1 1.0 5.0 579 620 - 2.27125 1 2 cbr 210 ------- 1 1.0 5.0 579 620 r 2.27211 1 2 cbr 210 ------- 1 1.0 5.0 565 605 + 2.27211 2 3 cbr 210 ------- 1 1.0 5.0 565 605 r 2.27264 2 3 cbr 210 ------- 1 1.0 5.0 544 583 + 2.27264 3 5 cbr 210 ------- 1 1.0 5.0 544 583 - 2.27264 3 5 cbr 210 ------- 1 1.0 5.0 544 583 - 2.27304 2 3 cbr 210 ------- 1 1.0 5.0 560 599 + 2.275 1 2 cbr 210 ------- 1 1.0 5.0 580 621 - 2.275 1 2 cbr 210 ------- 1 1.0 5.0 580 621 r 2.2756 3 5 cbr 210 ------- 1 1.0 5.0 526 565 r 2.27586 1 2 cbr 210 ------- 1 1.0 5.0 566 606 + 2.27586 2 3 cbr 210 ------- 1 1.0 5.0 566 606 r 2.276 2 3 cbr 210 ------- 1 1.0 5.0 545 584 + 2.276 3 5 cbr 210 ------- 1 1.0 5.0 545 584 - 2.276 3 5 cbr 210 ------- 1 1.0 5.0 545 584 - 2.2764 2 3 cbr 210 ------- 1 1.0 5.0 561 601 + 2.27875 1 2 cbr 210 ------- 1 1.0 5.0 581 622 - 2.27875 1 2 cbr 210 ------- 1 1.0 5.0 581 622 r 2.27896 3 5 cbr 210 ------- 1 1.0 5.0 527 566 r 2.27936 2 3 cbr 210 ------- 1 1.0 5.0 546 585 + 2.27936 3 5 cbr 210 ------- 1 1.0 5.0 546 585 - 2.27936 3 5 cbr 210 ------- 1 1.0 5.0 546 585 r 2.27961 1 2 cbr 210 ------- 1 1.0 5.0 567 607 + 2.27961 2 3 cbr 210 ------- 1 1.0 5.0 567 607 - 2.27976 2 3 cbr 210 ------- 1 1.0 5.0 562 602 r 2.28232 3 5 cbr 210 ------- 1 1.0 5.0 528 567 + 2.2825 1 2 cbr 210 ------- 1 1.0 5.0 582 623 - 2.2825 1 2 cbr 210 ------- 1 1.0 5.0 582 623 r 2.28272 2 3 cbr 210 ------- 1 1.0 5.0 547 586 + 2.28272 3 5 cbr 210 ------- 1 1.0 5.0 547 586 - 2.28272 3 5 cbr 210 ------- 1 1.0 5.0 547 586 - 2.28312 2 3 cbr 210 ------- 1 1.0 5.0 563 603 r 2.28336 1 2 cbr 210 ------- 1 1.0 5.0 568 608 + 2.28336 2 3 cbr 210 ------- 1 1.0 5.0 568 608 r 2.28488 3 4 tcp 1000 ------- 0 0.0 4.0 17 561 + 2.28488 4 3 ack 40 ------- 0 4.0 0.0 13 624 - 2.28488 4 3 ack 40 ------- 0 4.0 0.0 13 624 r 2.28568 3 5 cbr 210 ------- 1 1.0 5.0 529 568 r 2.28608 2 3 cbr 210 ------- 1 1.0 5.0 548 587 + 2.28608 3 5 cbr 210 ------- 1 1.0 5.0 548 587 - 2.28608 3 5 cbr 210 ------- 1 1.0 5.0 548 587 + 2.28625 1 2 cbr 210 ------- 1 1.0 5.0 583 625 - 2.28625 1 2 cbr 210 ------- 1 1.0 5.0 583 625 - 2.28648 2 3 cbr 210 ------- 1 1.0 5.0 564 604 r 2.28711 1 2 cbr 210 ------- 1 1.0 5.0 569 609 + 2.28711 2 3 cbr 210 ------- 1 1.0 5.0 569 609 r 2.28904 3 5 cbr 210 ------- 1 1.0 5.0 530 569 r 2.28944 2 3 cbr 210 ------- 1 1.0 5.0 549 588 + 2.28944 3 5 cbr 210 ------- 1 1.0 5.0 549 588 - 2.28944 3 5 cbr 210 ------- 1 1.0 5.0 549 588 - 2.28984 2 3 cbr 210 ------- 1 1.0 5.0 565 605 + 2.29 1 2 cbr 210 ------- 1 1.0 5.0 584 626 - 2.29 1 2 cbr 210 ------- 1 1.0 5.0 584 626 r 2.29086 1 2 cbr 210 ------- 1 1.0 5.0 570 610 + 2.29086 2 3 cbr 210 ------- 1 1.0 5.0 570 610 r 2.2924 3 5 cbr 210 ------- 1 1.0 5.0 531 570 r 2.2928 2 3 cbr 210 ------- 1 1.0 5.0 550 589 + 2.2928 3 5 cbr 210 ------- 1 1.0 5.0 550 589 - 2.2928 3 5 cbr 210 ------- 1 1.0 5.0 550 589 - 2.2932 2 3 cbr 210 ------- 1 1.0 5.0 566 606 + 2.29375 1 2 cbr 210 ------- 1 1.0 5.0 585 627 - 2.29375 1 2 cbr 210 ------- 1 1.0 5.0 585 627 r 2.29461 1 2 cbr 210 ------- 1 1.0 5.0 571 611 + 2.29461 2 3 cbr 210 ------- 1 1.0 5.0 571 611 r 2.29576 3 5 cbr 210 ------- 1 1.0 5.0 532 571 r 2.296 4 3 ack 40 ------- 0 4.0 0.0 13 613 + 2.296 3 2 ack 40 ------- 0 4.0 0.0 13 613 - 2.296 3 2 ack 40 ------- 0 4.0 0.0 13 613 r 2.29616 2 3 cbr 210 ------- 1 1.0 5.0 551 590 + 2.29616 3 5 cbr 210 ------- 1 1.0 5.0 551 590 - 2.29616 3 5 cbr 210 ------- 1 1.0 5.0 551 590 - 2.29656 2 3 cbr 210 ------- 1 1.0 5.0 567 607 + 2.2975 1 2 cbr 210 ------- 1 1.0 5.0 586 628 - 2.2975 1 2 cbr 210 ------- 1 1.0 5.0 586 628 r 2.29836 1 2 cbr 210 ------- 1 1.0 5.0 572 612 + 2.29836 2 3 cbr 210 ------- 1 1.0 5.0 572 612 r 2.29912 3 5 cbr 210 ------- 1 1.0 5.0 533 572 r 2.29952 2 3 cbr 210 ------- 1 1.0 5.0 552 591 + 2.29952 3 5 cbr 210 ------- 1 1.0 5.0 552 591 - 2.29952 3 5 cbr 210 ------- 1 1.0 5.0 552 591 - 2.29992 2 3 cbr 210 ------- 1 1.0 5.0 568 608 + 2.30125 1 2 cbr 210 ------- 1 1.0 5.0 587 629 - 2.30125 1 2 cbr 210 ------- 1 1.0 5.0 587 629 r 2.30211 1 2 cbr 210 ------- 1 1.0 5.0 573 614 + 2.30211 2 3 cbr 210 ------- 1 1.0 5.0 573 614 r 2.30248 3 5 cbr 210 ------- 1 1.0 5.0 534 573 r 2.30288 2 3 cbr 210 ------- 1 1.0 5.0 553 592 + 2.30288 3 5 cbr 210 ------- 1 1.0 5.0 553 592 - 2.30288 3 5 cbr 210 ------- 1 1.0 5.0 553 592 - 2.30328 2 3 cbr 210 ------- 1 1.0 5.0 569 609 r 2.30376 3 2 ack 40 ------- 0 4.0 0.0 13 600 + 2.30376 2 0 ack 40 ------- 0 4.0 0.0 13 600 - 2.30376 2 0 ack 40 ------- 0 4.0 0.0 13 600 + 2.305 1 2 cbr 210 ------- 1 1.0 5.0 588 630 - 2.305 1 2 cbr 210 ------- 1 1.0 5.0 588 630 r 2.30584 3 5 cbr 210 ------- 1 1.0 5.0 538 577 r 2.30586 1 2 cbr 210 ------- 1 1.0 5.0 574 615 + 2.30586 2 3 cbr 210 ------- 1 1.0 5.0 574 615 r 2.30624 2 3 cbr 210 ------- 1 1.0 5.0 554 593 + 2.30624 3 5 cbr 210 ------- 1 1.0 5.0 554 593 - 2.30624 3 5 cbr 210 ------- 1 1.0 5.0 554 593 - 2.30664 2 3 cbr 210 ------- 1 1.0 5.0 570 610 + 2.30875 1 2 cbr 210 ------- 1 1.0 5.0 589 631 - 2.30875 1 2 cbr 210 ------- 1 1.0 5.0 589 631 r 2.3092 3 5 cbr 210 ------- 1 1.0 5.0 539 578 r 2.3096 2 3 cbr 210 ------- 1 1.0 5.0 555 594 + 2.3096 3 5 cbr 210 ------- 1 1.0 5.0 555 594 - 2.3096 3 5 cbr 210 ------- 1 1.0 5.0 555 594 r 2.30961 1 2 cbr 210 ------- 1 1.0 5.0 575 616 + 2.30961 2 3 cbr 210 ------- 1 1.0 5.0 575 616 - 2.31 2 3 cbr 210 ------- 1 1.0 5.0 571 611 + 2.3125 1 2 cbr 210 ------- 1 1.0 5.0 590 632 - 2.3125 1 2 cbr 210 ------- 1 1.0 5.0 590 632 r 2.31256 3 5 cbr 210 ------- 1 1.0 5.0 540 579 r 2.31296 2 3 cbr 210 ------- 1 1.0 5.0 556 595 + 2.31296 3 5 cbr 210 ------- 1 1.0 5.0 556 595 - 2.31296 3 5 cbr 210 ------- 1 1.0 5.0 556 595 - 2.31336 2 3 cbr 210 ------- 1 1.0 5.0 572 612 r 2.31336 1 2 cbr 210 ------- 1 1.0 5.0 576 617 + 2.31336 2 3 cbr 210 ------- 1 1.0 5.0 576 617 r 2.31592 3 5 cbr 210 ------- 1 1.0 5.0 541 580 + 2.31625 1 2 cbr 210 ------- 1 1.0 5.0 591 633 - 2.31625 1 2 cbr 210 ------- 1 1.0 5.0 591 633 r 2.31632 2 3 cbr 210 ------- 1 1.0 5.0 557 596 + 2.31632 3 5 cbr 210 ------- 1 1.0 5.0 557 596 - 2.31632 3 5 cbr 210 ------- 1 1.0 5.0 557 596 - 2.31672 2 3 cbr 210 ------- 1 1.0 5.0 573 614 r 2.31711 1 2 cbr 210 ------- 1 1.0 5.0 577 618 + 2.31711 2 3 cbr 210 ------- 1 1.0 5.0 577 618 r 2.31928 3 5 cbr 210 ------- 1 1.0 5.0 542 581 r 2.31968 2 3 cbr 210 ------- 1 1.0 5.0 558 597 + 2.31968 3 5 cbr 210 ------- 1 1.0 5.0 558 597 - 2.31968 3 5 cbr 210 ------- 1 1.0 5.0 558 597 + 2.32 1 2 cbr 210 ------- 1 1.0 5.0 592 634 - 2.32 1 2 cbr 210 ------- 1 1.0 5.0 592 634 - 2.32008 2 3 cbr 210 ------- 1 1.0 5.0 574 615 r 2.32086 1 2 cbr 210 ------- 1 1.0 5.0 578 619 + 2.32086 2 3 cbr 210 ------- 1 1.0 5.0 578 619 r 2.32264 3 5 cbr 210 ------- 1 1.0 5.0 543 582 r 2.32304 2 3 cbr 210 ------- 1 1.0 5.0 559 598 + 2.32304 3 5 cbr 210 ------- 1 1.0 5.0 559 598 - 2.32304 3 5 cbr 210 ------- 1 1.0 5.0 559 598 - 2.32344 2 3 cbr 210 ------- 1 1.0 5.0 575 616 + 2.32375 1 2 cbr 210 ------- 1 1.0 5.0 593 635 - 2.32375 1 2 cbr 210 ------- 1 1.0 5.0 593 635 r 2.32461 1 2 cbr 210 ------- 1 1.0 5.0 579 620 + 2.32461 2 3 cbr 210 ------- 1 1.0 5.0 579 620 r 2.326 3 5 cbr 210 ------- 1 1.0 5.0 544 583 r 2.3264 2 3 cbr 210 ------- 1 1.0 5.0 560 599 + 2.3264 3 5 cbr 210 ------- 1 1.0 5.0 560 599 - 2.3264 3 5 cbr 210 ------- 1 1.0 5.0 560 599 - 2.3268 2 3 cbr 210 ------- 1 1.0 5.0 576 617 + 2.3275 1 2 cbr 210 ------- 1 1.0 5.0 594 636 - 2.3275 1 2 cbr 210 ------- 1 1.0 5.0 594 636 r 2.32836 1 2 cbr 210 ------- 1 1.0 5.0 580 621 + 2.32836 2 3 cbr 210 ------- 1 1.0 5.0 580 621 r 2.32936 3 5 cbr 210 ------- 1 1.0 5.0 545 584 r 2.32976 2 3 cbr 210 ------- 1 1.0 5.0 561 601 + 2.32976 3 5 cbr 210 ------- 1 1.0 5.0 561 601 - 2.32976 3 5 cbr 210 ------- 1 1.0 5.0 561 601 - 2.33016 2 3 cbr 210 ------- 1 1.0 5.0 577 618 + 2.33125 1 2 cbr 210 ------- 1 1.0 5.0 595 637 - 2.33125 1 2 cbr 210 ------- 1 1.0 5.0 595 637 r 2.33211 1 2 cbr 210 ------- 1 1.0 5.0 581 622 + 2.33211 2 3 cbr 210 ------- 1 1.0 5.0 581 622 r 2.33272 3 5 cbr 210 ------- 1 1.0 5.0 546 585 r 2.33312 2 3 cbr 210 ------- 1 1.0 5.0 562 602 + 2.33312 3 5 cbr 210 ------- 1 1.0 5.0 562 602 - 2.33312 3 5 cbr 210 ------- 1 1.0 5.0 562 602 - 2.33352 2 3 cbr 210 ------- 1 1.0 5.0 578 619 + 2.335 1 2 cbr 210 ------- 1 1.0 5.0 596 638 - 2.335 1 2 cbr 210 ------- 1 1.0 5.0 596 638 r 2.33552 4 3 ack 40 ------- 0 4.0 0.0 13 624 + 2.33552 3 2 ack 40 ------- 0 4.0 0.0 13 624 - 2.33552 3 2 ack 40 ------- 0 4.0 0.0 13 624 r 2.33586 1 2 cbr 210 ------- 1 1.0 5.0 582 623 + 2.33586 2 3 cbr 210 ------- 1 1.0 5.0 582 623 r 2.33608 3 5 cbr 210 ------- 1 1.0 5.0 547 586 r 2.33648 2 3 cbr 210 ------- 1 1.0 5.0 563 603 + 2.33648 3 5 cbr 210 ------- 1 1.0 5.0 563 603 - 2.33648 3 5 cbr 210 ------- 1 1.0 5.0 563 603 - 2.33688 2 3 cbr 210 ------- 1 1.0 5.0 579 620 + 2.33875 1 2 cbr 210 ------- 1 1.0 5.0 597 639 - 2.33875 1 2 cbr 210 ------- 1 1.0 5.0 597 639 r 2.33944 3 5 cbr 210 ------- 1 1.0 5.0 548 587 r 2.33961 1 2 cbr 210 ------- 1 1.0 5.0 583 625 + 2.33961 2 3 cbr 210 ------- 1 1.0 5.0 583 625 r 2.33984 2 3 cbr 210 ------- 1 1.0 5.0 564 604 + 2.33984 3 5 cbr 210 ------- 1 1.0 5.0 564 604 - 2.33984 3 5 cbr 210 ------- 1 1.0 5.0 564 604 - 2.34024 2 3 cbr 210 ------- 1 1.0 5.0 580 621 + 2.3425 1 2 cbr 210 ------- 1 1.0 5.0 598 640 - 2.3425 1 2 cbr 210 ------- 1 1.0 5.0 598 640 r 2.3428 3 5 cbr 210 ------- 1 1.0 5.0 549 588 r 2.3432 2 3 cbr 210 ------- 1 1.0 5.0 565 605 + 2.3432 3 5 cbr 210 ------- 1 1.0 5.0 565 605 - 2.3432 3 5 cbr 210 ------- 1 1.0 5.0 565 605 r 2.34336 1 2 cbr 210 ------- 1 1.0 5.0 584 626 + 2.34336 2 3 cbr 210 ------- 1 1.0 5.0 584 626 - 2.3436 2 3 cbr 210 ------- 1 1.0 5.0 581 622 r 2.34616 3 5 cbr 210 ------- 1 1.0 5.0 550 589 + 2.34625 1 2 cbr 210 ------- 1 1.0 5.0 599 641 - 2.34625 1 2 cbr 210 ------- 1 1.0 5.0 599 641 r 2.34656 2 3 cbr 210 ------- 1 1.0 5.0 566 606 + 2.34656 3 5 cbr 210 ------- 1 1.0 5.0 566 606 - 2.34656 3 5 cbr 210 ------- 1 1.0 5.0 566 606 r 2.34664 3 2 ack 40 ------- 0 4.0 0.0 13 613 + 2.34664 2 0 ack 40 ------- 0 4.0 0.0 13 613 - 2.34664 2 0 ack 40 ------- 0 4.0 0.0 13 613 - 2.34696 2 3 cbr 210 ------- 1 1.0 5.0 582 623 r 2.34711 1 2 cbr 210 ------- 1 1.0 5.0 585 627 + 2.34711 2 3 cbr 210 ------- 1 1.0 5.0 585 627 r 2.34952 3 5 cbr 210 ------- 1 1.0 5.0 551 590 r 2.34992 2 3 cbr 210 ------- 1 1.0 5.0 567 607 + 2.34992 3 5 cbr 210 ------- 1 1.0 5.0 567 607 - 2.34992 3 5 cbr 210 ------- 1 1.0 5.0 567 607 + 2.35 1 2 cbr 210 ------- 1 1.0 5.0 600 642 - 2.35 1 2 cbr 210 ------- 1 1.0 5.0 600 642 - 2.35032 2 3 cbr 210 ------- 1 1.0 5.0 583 625 r 2.35086 1 2 cbr 210 ------- 1 1.0 5.0 586 628 + 2.35086 2 3 cbr 210 ------- 1 1.0 5.0 586 628 r 2.35288 3 5 cbr 210 ------- 1 1.0 5.0 552 591 r 2.35328 2 3 cbr 210 ------- 1 1.0 5.0 568 608 + 2.35328 3 5 cbr 210 ------- 1 1.0 5.0 568 608 - 2.35328 3 5 cbr 210 ------- 1 1.0 5.0 568 608 - 2.35368 2 3 cbr 210 ------- 1 1.0 5.0 584 626 r 2.3544 2 0 ack 40 ------- 0 4.0 0.0 13 600 r 2.35461 1 2 cbr 210 ------- 1 1.0 5.0 587 629 + 2.35461 2 3 cbr 210 ------- 1 1.0 5.0 587 629 r 2.35624 3 5 cbr 210 ------- 1 1.0 5.0 553 592 r 2.35664 2 3 cbr 210 ------- 1 1.0 5.0 569 609 + 2.35664 3 5 cbr 210 ------- 1 1.0 5.0 569 609 - 2.35664 3 5 cbr 210 ------- 1 1.0 5.0 569 609 - 2.35704 2 3 cbr 210 ------- 1 1.0 5.0 585 627 r 2.35836 1 2 cbr 210 ------- 1 1.0 5.0 588 630 + 2.35836 2 3 cbr 210 ------- 1 1.0 5.0 588 630 r 2.3596 3 5 cbr 210 ------- 1 1.0 5.0 554 593 r 2.36 2 3 cbr 210 ------- 1 1.0 5.0 570 610 + 2.36 3 5 cbr 210 ------- 1 1.0 5.0 570 610 - 2.36 3 5 cbr 210 ------- 1 1.0 5.0 570 610 - 2.3604 2 3 cbr 210 ------- 1 1.0 5.0 586 628 r 2.36211 1 2 cbr 210 ------- 1 1.0 5.0 589 631 + 2.36211 2 3 cbr 210 ------- 1 1.0 5.0 589 631 r 2.36296 3 5 cbr 210 ------- 1 1.0 5.0 555 594 r 2.36336 2 3 cbr 210 ------- 1 1.0 5.0 571 611 + 2.36336 3 5 cbr 210 ------- 1 1.0 5.0 571 611 - 2.36336 3 5 cbr 210 ------- 1 1.0 5.0 571 611 - 2.36376 2 3 cbr 210 ------- 1 1.0 5.0 587 629 r 2.36586 1 2 cbr 210 ------- 1 1.0 5.0 590 632 + 2.36586 2 3 cbr 210 ------- 1 1.0 5.0 590 632 r 2.36632 3 5 cbr 210 ------- 1 1.0 5.0 556 595 r 2.36672 2 3 cbr 210 ------- 1 1.0 5.0 572 612 + 2.36672 3 5 cbr 210 ------- 1 1.0 5.0 572 612 - 2.36672 3 5 cbr 210 ------- 1 1.0 5.0 572 612 - 2.36712 2 3 cbr 210 ------- 1 1.0 5.0 588 630 r 2.36961 1 2 cbr 210 ------- 1 1.0 5.0 591 633 + 2.36961 2 3 cbr 210 ------- 1 1.0 5.0 591 633 r 2.36968 3 5 cbr 210 ------- 1 1.0 5.0 557 596 r 2.37008 2 3 cbr 210 ------- 1 1.0 5.0 573 614 + 2.37008 3 5 cbr 210 ------- 1 1.0 5.0 573 614 - 2.37008 3 5 cbr 210 ------- 1 1.0 5.0 573 614 - 2.37048 2 3 cbr 210 ------- 1 1.0 5.0 589 631 r 2.37304 3 5 cbr 210 ------- 1 1.0 5.0 558 597 r 2.37336 1 2 cbr 210 ------- 1 1.0 5.0 592 634 + 2.37336 2 3 cbr 210 ------- 1 1.0 5.0 592 634 r 2.37344 2 3 cbr 210 ------- 1 1.0 5.0 574 615 + 2.37344 3 5 cbr 210 ------- 1 1.0 5.0 574 615 - 2.37344 3 5 cbr 210 ------- 1 1.0 5.0 574 615 - 2.37384 2 3 cbr 210 ------- 1 1.0 5.0 590 632 r 2.3764 3 5 cbr 210 ------- 1 1.0 5.0 559 598 r 2.3768 2 3 cbr 210 ------- 1 1.0 5.0 575 616 + 2.3768 3 5 cbr 210 ------- 1 1.0 5.0 575 616 - 2.3768 3 5 cbr 210 ------- 1 1.0 5.0 575 616 r 2.37711 1 2 cbr 210 ------- 1 1.0 5.0 593 635 + 2.37711 2 3 cbr 210 ------- 1 1.0 5.0 593 635 - 2.3772 2 3 cbr 210 ------- 1 1.0 5.0 591 633 r 2.37976 3 5 cbr 210 ------- 1 1.0 5.0 560 599 r 2.38016 2 3 cbr 210 ------- 1 1.0 5.0 576 617 + 2.38016 3 5 cbr 210 ------- 1 1.0 5.0 576 617 - 2.38016 3 5 cbr 210 ------- 1 1.0 5.0 576 617 - 2.38056 2 3 cbr 210 ------- 1 1.0 5.0 592 634 r 2.38086 1 2 cbr 210 ------- 1 1.0 5.0 594 636 + 2.38086 2 3 cbr 210 ------- 1 1.0 5.0 594 636 r 2.38312 3 5 cbr 210 ------- 1 1.0 5.0 561 601 r 2.38352 2 3 cbr 210 ------- 1 1.0 5.0 577 618 + 2.38352 3 5 cbr 210 ------- 1 1.0 5.0 577 618 - 2.38352 3 5 cbr 210 ------- 1 1.0 5.0 577 618 - 2.38392 2 3 cbr 210 ------- 1 1.0 5.0 593 635 r 2.38461 1 2 cbr 210 ------- 1 1.0 5.0 595 637 + 2.38461 2 3 cbr 210 ------- 1 1.0 5.0 595 637 r 2.38616 3 2 ack 40 ------- 0 4.0 0.0 13 624 + 2.38616 2 0 ack 40 ------- 0 4.0 0.0 13 624 - 2.38616 2 0 ack 40 ------- 0 4.0 0.0 13 624 r 2.38648 3 5 cbr 210 ------- 1 1.0 5.0 562 602 r 2.38688 2 3 cbr 210 ------- 1 1.0 5.0 578 619 + 2.38688 3 5 cbr 210 ------- 1 1.0 5.0 578 619 - 2.38688 3 5 cbr 210 ------- 1 1.0 5.0 578 619 - 2.38728 2 3 cbr 210 ------- 1 1.0 5.0 594 636 r 2.38836 1 2 cbr 210 ------- 1 1.0 5.0 596 638 + 2.38836 2 3 cbr 210 ------- 1 1.0 5.0 596 638 r 2.38984 3 5 cbr 210 ------- 1 1.0 5.0 563 603 r 2.39024 2 3 cbr 210 ------- 1 1.0 5.0 579 620 + 2.39024 3 5 cbr 210 ------- 1 1.0 5.0 579 620 - 2.39024 3 5 cbr 210 ------- 1 1.0 5.0 579 620 - 2.39064 2 3 cbr 210 ------- 1 1.0 5.0 595 637 r 2.39211 1 2 cbr 210 ------- 1 1.0 5.0 597 639 + 2.39211 2 3 cbr 210 ------- 1 1.0 5.0 597 639 r 2.3932 3 5 cbr 210 ------- 1 1.0 5.0 564 604 r 2.3936 2 3 cbr 210 ------- 1 1.0 5.0 580 621 + 2.3936 3 5 cbr 210 ------- 1 1.0 5.0 580 621 - 2.3936 3 5 cbr 210 ------- 1 1.0 5.0 580 621 - 2.394 2 3 cbr 210 ------- 1 1.0 5.0 596 638 r 2.39586 1 2 cbr 210 ------- 1 1.0 5.0 598 640 + 2.39586 2 3 cbr 210 ------- 1 1.0 5.0 598 640 r 2.39656 3 5 cbr 210 ------- 1 1.0 5.0 565 605 r 2.39696 2 3 cbr 210 ------- 1 1.0 5.0 581 622 + 2.39696 3 5 cbr 210 ------- 1 1.0 5.0 581 622 - 2.39696 3 5 cbr 210 ------- 1 1.0 5.0 581 622 r 2.39728 2 0 ack 40 ------- 0 4.0 0.0 13 613 - 2.39736 2 3 cbr 210 ------- 1 1.0 5.0 597 639 r 2.39961 1 2 cbr 210 ------- 1 1.0 5.0 599 641 + 2.39961 2 3 cbr 210 ------- 1 1.0 5.0 599 641 r 2.39992 3 5 cbr 210 ------- 1 1.0 5.0 566 606 r 2.40032 2 3 cbr 210 ------- 1 1.0 5.0 582 623 + 2.40032 3 5 cbr 210 ------- 1 1.0 5.0 582 623 - 2.40032 3 5 cbr 210 ------- 1 1.0 5.0 582 623 - 2.40072 2 3 cbr 210 ------- 1 1.0 5.0 598 640 r 2.40328 3 5 cbr 210 ------- 1 1.0 5.0 567 607 r 2.40336 1 2 cbr 210 ------- 1 1.0 5.0 600 642 + 2.40336 2 3 cbr 210 ------- 1 1.0 5.0 600 642 r 2.40368 2 3 cbr 210 ------- 1 1.0 5.0 583 625 + 2.40368 3 5 cbr 210 ------- 1 1.0 5.0 583 625 - 2.40368 3 5 cbr 210 ------- 1 1.0 5.0 583 625 - 2.40408 2 3 cbr 210 ------- 1 1.0 5.0 599 641 r 2.40664 3 5 cbr 210 ------- 1 1.0 5.0 568 608 r 2.40704 2 3 cbr 210 ------- 1 1.0 5.0 584 626 + 2.40704 3 5 cbr 210 ------- 1 1.0 5.0 584 626 - 2.40704 3 5 cbr 210 ------- 1 1.0 5.0 584 626 - 2.40744 2 3 cbr 210 ------- 1 1.0 5.0 600 642 r 2.41 3 5 cbr 210 ------- 1 1.0 5.0 569 609 r 2.4104 2 3 cbr 210 ------- 1 1.0 5.0 585 627 + 2.4104 3 5 cbr 210 ------- 1 1.0 5.0 585 627 - 2.4104 3 5 cbr 210 ------- 1 1.0 5.0 585 627 r 2.41336 3 5 cbr 210 ------- 1 1.0 5.0 570 610 r 2.41376 2 3 cbr 210 ------- 1 1.0 5.0 586 628 + 2.41376 3 5 cbr 210 ------- 1 1.0 5.0 586 628 - 2.41376 3 5 cbr 210 ------- 1 1.0 5.0 586 628 r 2.41672 3 5 cbr 210 ------- 1 1.0 5.0 571 611 r 2.41712 2 3 cbr 210 ------- 1 1.0 5.0 587 629 + 2.41712 3 5 cbr 210 ------- 1 1.0 5.0 587 629 - 2.41712 3 5 cbr 210 ------- 1 1.0 5.0 587 629 r 2.42008 3 5 cbr 210 ------- 1 1.0 5.0 572 612 r 2.42048 2 3 cbr 210 ------- 1 1.0 5.0 588 630 + 2.42048 3 5 cbr 210 ------- 1 1.0 5.0 588 630 - 2.42048 3 5 cbr 210 ------- 1 1.0 5.0 588 630 r 2.42344 3 5 cbr 210 ------- 1 1.0 5.0 573 614 r 2.42384 2 3 cbr 210 ------- 1 1.0 5.0 589 631 + 2.42384 3 5 cbr 210 ------- 1 1.0 5.0 589 631 - 2.42384 3 5 cbr 210 ------- 1 1.0 5.0 589 631 r 2.4268 3 5 cbr 210 ------- 1 1.0 5.0 574 615 r 2.4272 2 3 cbr 210 ------- 1 1.0 5.0 590 632 + 2.4272 3 5 cbr 210 ------- 1 1.0 5.0 590 632 - 2.4272 3 5 cbr 210 ------- 1 1.0 5.0 590 632 r 2.43016 3 5 cbr 210 ------- 1 1.0 5.0 575 616 r 2.43056 2 3 cbr 210 ------- 1 1.0 5.0 591 633 + 2.43056 3 5 cbr 210 ------- 1 1.0 5.0 591 633 - 2.43056 3 5 cbr 210 ------- 1 1.0 5.0 591 633 r 2.43352 3 5 cbr 210 ------- 1 1.0 5.0 576 617 r 2.43392 2 3 cbr 210 ------- 1 1.0 5.0 592 634 + 2.43392 3 5 cbr 210 ------- 1 1.0 5.0 592 634 - 2.43392 3 5 cbr 210 ------- 1 1.0 5.0 592 634 r 2.4368 2 0 ack 40 ------- 0 4.0 0.0 13 624 + 2.4368 0 2 tcp 1000 ------- 0 0.0 4.0 14 643 - 2.4368 0 2 tcp 1000 ------- 0 0.0 4.0 14 643 + 2.4368 0 2 tcp 1000 ------- 0 0.0 4.0 15 644 + 2.4368 0 2 tcp 1000 ------- 0 0.0 4.0 16 645 r 2.43688 3 5 cbr 210 ------- 1 1.0 5.0 577 618 r 2.43728 2 3 cbr 210 ------- 1 1.0 5.0 593 635 + 2.43728 3 5 cbr 210 ------- 1 1.0 5.0 593 635 - 2.43728 3 5 cbr 210 ------- 1 1.0 5.0 593 635 r 2.44024 3 5 cbr 210 ------- 1 1.0 5.0 578 619 r 2.44064 2 3 cbr 210 ------- 1 1.0 5.0 594 636 + 2.44064 3 5 cbr 210 ------- 1 1.0 5.0 594 636 - 2.44064 3 5 cbr 210 ------- 1 1.0 5.0 594 636 r 2.4436 3 5 cbr 210 ------- 1 1.0 5.0 579 620 r 2.444 2 3 cbr 210 ------- 1 1.0 5.0 595 637 + 2.444 3 5 cbr 210 ------- 1 1.0 5.0 595 637 - 2.444 3 5 cbr 210 ------- 1 1.0 5.0 595 637 r 2.44696 3 5 cbr 210 ------- 1 1.0 5.0 580 621 r 2.44736 2 3 cbr 210 ------- 1 1.0 5.0 596 638 + 2.44736 3 5 cbr 210 ------- 1 1.0 5.0 596 638 - 2.44736 3 5 cbr 210 ------- 1 1.0 5.0 596 638 r 2.45032 3 5 cbr 210 ------- 1 1.0 5.0 581 622 r 2.45072 2 3 cbr 210 ------- 1 1.0 5.0 597 639 + 2.45072 3 5 cbr 210 ------- 1 1.0 5.0 597 639 - 2.45072 3 5 cbr 210 ------- 1 1.0 5.0 597 639 - 2.4528 0 2 tcp 1000 ------- 0 0.0 4.0 15 644 r 2.45368 3 5 cbr 210 ------- 1 1.0 5.0 582 623 r 2.45408 2 3 cbr 210 ------- 1 1.0 5.0 598 640 + 2.45408 3 5 cbr 210 ------- 1 1.0 5.0 598 640 - 2.45408 3 5 cbr 210 ------- 1 1.0 5.0 598 640 r 2.45704 3 5 cbr 210 ------- 1 1.0 5.0 583 625 r 2.45744 2 3 cbr 210 ------- 1 1.0 5.0 599 641 + 2.45744 3 5 cbr 210 ------- 1 1.0 5.0 599 641 - 2.45744 3 5 cbr 210 ------- 1 1.0 5.0 599 641 r 2.4604 3 5 cbr 210 ------- 1 1.0 5.0 584 626 r 2.4608 2 3 cbr 210 ------- 1 1.0 5.0 600 642 + 2.4608 3 5 cbr 210 ------- 1 1.0 5.0 600 642 - 2.4608 3 5 cbr 210 ------- 1 1.0 5.0 600 642 r 2.46376 3 5 cbr 210 ------- 1 1.0 5.0 585 627 r 2.46712 3 5 cbr 210 ------- 1 1.0 5.0 586 628 - 2.4688 0 2 tcp 1000 ------- 0 0.0 4.0 16 645 r 2.47048 3 5 cbr 210 ------- 1 1.0 5.0 587 629 r 2.47384 3 5 cbr 210 ------- 1 1.0 5.0 588 630 r 2.4772 3 5 cbr 210 ------- 1 1.0 5.0 589 631 r 2.48056 3 5 cbr 210 ------- 1 1.0 5.0 590 632 r 2.48392 3 5 cbr 210 ------- 1 1.0 5.0 591 633 r 2.48728 3 5 cbr 210 ------- 1 1.0 5.0 592 634 r 2.49064 3 5 cbr 210 ------- 1 1.0 5.0 593 635 r 2.494 3 5 cbr 210 ------- 1 1.0 5.0 594 636 r 2.49736 3 5 cbr 210 ------- 1 1.0 5.0 595 637 r 2.50072 3 5 cbr 210 ------- 1 1.0 5.0 596 638 r 2.5028 0 2 tcp 1000 ------- 0 0.0 4.0 14 643 + 2.5028 2 3 tcp 1000 ------- 0 0.0 4.0 14 643 - 2.5028 2 3 tcp 1000 ------- 0 0.0 4.0 14 643 r 2.50408 3 5 cbr 210 ------- 1 1.0 5.0 597 639 r 2.50744 3 5 cbr 210 ------- 1 1.0 5.0 598 640 r 2.5108 3 5 cbr 210 ------- 1 1.0 5.0 599 641 r 2.51416 3 5 cbr 210 ------- 1 1.0 5.0 600 642 r 2.5188 0 2 tcp 1000 ------- 0 0.0 4.0 15 644 + 2.5188 2 3 tcp 1000 ------- 0 0.0 4.0 15 644 - 2.5188 2 3 tcp 1000 ------- 0 0.0 4.0 15 644 r 2.5348 0 2 tcp 1000 ------- 0 0.0 4.0 16 645 + 2.5348 2 3 tcp 1000 ------- 0 0.0 4.0 16 645 - 2.5348 2 3 tcp 1000 ------- 0 0.0 4.0 16 645 r 2.5688 2 3 tcp 1000 ------- 0 0.0 4.0 14 643 + 2.5688 3 4 tcp 1000 ------- 0 0.0 4.0 14 643 - 2.5688 3 4 tcp 1000 ------- 0 0.0 4.0 14 643 r 2.5848 2 3 tcp 1000 ------- 0 0.0 4.0 15 644 + 2.5848 3 4 tcp 1000 ------- 0 0.0 4.0 15 644 - 2.5848 3 4 tcp 1000 ------- 0 0.0 4.0 15 644 r 2.6008 2 3 tcp 1000 ------- 0 0.0 4.0 16 645 + 2.6008 3 4 tcp 1000 ------- 0 0.0 4.0 16 645 - 2.6008 3 4 tcp 1000 ------- 0 0.0 4.0 16 645 r 2.6348 3 4 tcp 1000 ------- 0 0.0 4.0 14 643 + 2.6348 4 3 ack 40 ------- 0 4.0 0.0 14 646 - 2.6348 4 3 ack 40 ------- 0 4.0 0.0 14 646 r 2.6508 3 4 tcp 1000 ------- 0 0.0 4.0 15 644 + 2.6508 4 3 ack 40 ------- 0 4.0 0.0 15 647 - 2.6508 4 3 ack 40 ------- 0 4.0 0.0 15 647 r 2.6668 3 4 tcp 1000 ------- 0 0.0 4.0 16 645 + 2.6668 4 3 ack 40 ------- 0 4.0 0.0 16 648 - 2.6668 4 3 ack 40 ------- 0 4.0 0.0 16 648 r 2.68544 4 3 ack 40 ------- 0 4.0 0.0 14 646 + 2.68544 3 2 ack 40 ------- 0 4.0 0.0 14 646 - 2.68544 3 2 ack 40 ------- 0 4.0 0.0 14 646 r 2.70144 4 3 ack 40 ------- 0 4.0 0.0 15 647 + 2.70144 3 2 ack 40 ------- 0 4.0 0.0 15 647 - 2.70144 3 2 ack 40 ------- 0 4.0 0.0 15 647 r 2.71744 4 3 ack 40 ------- 0 4.0 0.0 16 648 + 2.71744 3 2 ack 40 ------- 0 4.0 0.0 16 648 - 2.71744 3 2 ack 40 ------- 0 4.0 0.0 16 648 r 2.73608 3 2 ack 40 ------- 0 4.0 0.0 14 646 + 2.73608 2 0 ack 40 ------- 0 4.0 0.0 14 646 - 2.73608 2 0 ack 40 ------- 0 4.0 0.0 14 646 r 2.75208 3 2 ack 40 ------- 0 4.0 0.0 15 647 + 2.75208 2 0 ack 40 ------- 0 4.0 0.0 15 647 - 2.75208 2 0 ack 40 ------- 0 4.0 0.0 15 647 r 2.76808 3 2 ack 40 ------- 0 4.0 0.0 16 648 + 2.76808 2 0 ack 40 ------- 0 4.0 0.0 16 648 - 2.76808 2 0 ack 40 ------- 0 4.0 0.0 16 648 r 2.78672 2 0 ack 40 ------- 0 4.0 0.0 14 646 r 2.80272 2 0 ack 40 ------- 0 4.0 0.0 15 647 r 2.81872 2 0 ack 40 ------- 0 4.0 0.0 16 648 nam-1.15/edu/B5-slow-start.nam0000664000076400007660000021117306751716021014743 0ustar tomhnsnamV -t * -v 1.0a5 -a 1 -c 1 -F 1 -M 2 c -t * -i 0 -n black N -t * -S 0 -n {TCP session between node 0.0 and node 4.0} -p TCP -m {} N -t * -S 0 -h 30 N -t * -F 0 -M 0 -n tcp N -t * -F 0 -M 1 -n ack A -t * -n 1 -p 0 -o 255 -c 15 -a 1 A -t * -h 1 -m 127 -s 8 n -t * -a 4 -s 4 -S UP -v circle -c black n -t * -a 0 -s 0 -S UP -v circle -c black n -t * -a 5 -s 5 -S UP -v circle -c red n -t * -a 1 -s 1 -S UP -v circle -c red n -t * -a 2 -s 2 -S UP -v rectangular -c blue n -t * -a 3 -s 3 -S UP -v rectangular -c blue l -t * -s 0 -d 2 -S UP -r 500000 -D 0.02 -c black -o right-down l -t * -s 1 -d 2 -S UP -r 500000 -D 0.02 -c black -o right-up l -t * -s 2 -d 3 -S UP -r 500000 -D 0.02 -c black -o right l -t * -s 3 -d 4 -S UP -r 500000 -D 0.02 -c black -o right-up l -t * -s 3 -d 5 -S UP -r 500000 -D 0.02 -c black -o right-down q -t * -s 3 -d 2 -a 0.5 q -t * -s 2 -d 3 -a 0.5 a -t 0.00000000000000000 -s 0 -d 4 -n tcp f -t 0.00000000000000000 -s 0 -d 4 -n cwnd_ -a tcp -v 1.000000 -T v v -t 0.00000000000000000 monitor_agent 0 tcp n -t 0 -s 0 -S DLABEL -l TCP2-Sender -L "" n -t 0 -s 1 -S DLABEL -l CBR2-Sender -L "" n -t 0 -s 4 -S DLABEL -l TCP2-Receiver -L "" n -t 0 -s 5 -S DLABEL -l CBR2-Receiver -L "" v -t 0 sim_annotation 0 1 Normal operation of with max window size, 8 + -t 0.1 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 0 -a 0 -S 0 -f 0 -m 0 -y {0 0} - -t 0.1 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 0 -a 0 -S 0 -y {0 0} h -t 0.1 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 0 -a 0 -S 0 -y {-1 -1} + -t 0.1 -s 1 -d 2 -p cbr -e 500 -c 3 -i 1 -a 3 - -t 0.1 -s 1 -d 2 -p cbr -e 500 -c 3 -i 1 -a 3 h -t 0.1 -s 1 -d 2 -p cbr -e 500 -c 3 -i 1 -a 3 v -t 0.10000000000000001 sim_annotation 0.10000000000000001 2 FTP starts at 0.1 v -t 0.10000000000000001 sim_annotation 0.10000000000000001 3 CBR starts at 0.1 v -t 0.11 sim_annotation 0.11 4 Initial window size is 1 r -t 0.128 -s 1 -d 2 -p cbr -e 500 -c 3 -i 1 -a 3 + -t 0.128 -s 2 -d 3 -p cbr -e 500 -c 3 -i 1 -a 3 - -t 0.128 -s 2 -d 3 -p cbr -e 500 -c 3 -i 1 -a 3 h -t 0.128 -s 2 -d 3 -p cbr -e 500 -c 3 -i 1 -a 3 r -t 0.136 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 0 -a 0 -S 0 -y {0 0} + -t 0.136 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 0 -a 0 -S 0 -y {0 0} - -t 0.136 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 0 -a 0 -S 0 -y {0 0} h -t 0.136 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 0 -a 0 -S 0 -y {-1 -1} + -t 0.15 -s 1 -d 2 -p cbr -e 500 -c 3 -i 2 -a 3 - -t 0.15 -s 1 -d 2 -p cbr -e 500 -c 3 -i 2 -a 3 h -t 0.15 -s 1 -d 2 -p cbr -e 500 -c 3 -i 2 -a 3 r -t 0.156 -s 2 -d 3 -p cbr -e 500 -c 3 -i 1 -a 3 + -t 0.156 -s 3 -d 5 -p cbr -e 500 -c 3 -i 1 -a 3 - -t 0.156 -s 3 -d 5 -p cbr -e 500 -c 3 -i 1 -a 3 h -t 0.156 -s 3 -d 5 -p cbr -e 500 -c 3 -i 1 -a 3 r -t 0.172 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 0 -a 0 -S 0 -y {0 0} + -t 0.172 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 0 -a 0 -S 0 -y {0 0} - -t 0.172 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 0 -a 0 -S 0 -y {0 0} h -t 0.172 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 0 -a 0 -S 0 -y {-1 -1} r -t 0.178 -s 1 -d 2 -p cbr -e 500 -c 3 -i 2 -a 3 + -t 0.178 -s 2 -d 3 -p cbr -e 500 -c 3 -i 2 -a 3 - -t 0.178 -s 2 -d 3 -p cbr -e 500 -c 3 -i 2 -a 3 h -t 0.178 -s 2 -d 3 -p cbr -e 500 -c 3 -i 2 -a 3 r -t 0.184 -s 3 -d 5 -p cbr -e 500 -c 3 -i 1 -a 3 + -t 0.2 -s 1 -d 2 -p cbr -e 500 -c 3 -i 3 -a 3 - -t 0.2 -s 1 -d 2 -p cbr -e 500 -c 3 -i 3 -a 3 h -t 0.2 -s 1 -d 2 -p cbr -e 500 -c 3 -i 3 -a 3 r -t 0.206 -s 2 -d 3 -p cbr -e 500 -c 3 -i 2 -a 3 + -t 0.206 -s 3 -d 5 -p cbr -e 500 -c 3 -i 2 -a 3 - -t 0.206 -s 3 -d 5 -p cbr -e 500 -c 3 -i 2 -a 3 h -t 0.206 -s 3 -d 5 -p cbr -e 500 -c 3 -i 2 -a 3 r -t 0.208 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 0 -a 0 -S 0 -y {0 0} + -t 0.208 -s 4 -d 3 -p ack -e 40 -c 2 -i 4 -a 0 -S 0 -y {0 0} - -t 0.208 -s 4 -d 3 -p ack -e 40 -c 2 -i 4 -a 0 -S 0 -y {0 0} h -t 0.208 -s 4 -d 3 -p ack -e 40 -c 2 -i 4 -a 0 -S 0 -y {-1 -1} v -t 0.22 sim_annotation 0.22 5 1 ack is coming r -t 0.228 -s 1 -d 2 -p cbr -e 500 -c 3 -i 3 -a 3 + -t 0.228 -s 2 -d 3 -p cbr -e 500 -c 3 -i 3 -a 3 - -t 0.228 -s 2 -d 3 -p cbr -e 500 -c 3 -i 3 -a 3 h -t 0.228 -s 2 -d 3 -p cbr -e 500 -c 3 -i 3 -a 3 r -t 0.22864 -s 4 -d 3 -p ack -e 40 -c 2 -i 4 -a 0 -S 0 -y {0 0} + -t 0.22864 -s 3 -d 2 -p ack -e 40 -c 2 -i 4 -a 0 -S 0 -y {0 0} - -t 0.22864 -s 3 -d 2 -p ack -e 40 -c 2 -i 4 -a 0 -S 0 -y {0 0} h -t 0.22864 -s 3 -d 2 -p ack -e 40 -c 2 -i 4 -a 0 -S 0 -y {-1 -1} r -t 0.234 -s 3 -d 5 -p cbr -e 500 -c 3 -i 2 -a 3 r -t 0.24928 -s 3 -d 2 -p ack -e 40 -c 2 -i 4 -a 0 -S 0 -y {0 0} + -t 0.24928 -s 2 -d 0 -p ack -e 40 -c 2 -i 4 -a 0 -S 0 -y {0 0} - -t 0.24928 -s 2 -d 0 -p ack -e 40 -c 2 -i 4 -a 0 -S 0 -f 0 -m 1 -y {0 0} h -t 0.24928 -s 2 -d 0 -p ack -e 40 -c 2 -i 4 -a 0 -S 0 -y {-1 -1} + -t 0.25 -s 1 -d 2 -p cbr -e 500 -c 3 -i 5 -a 3 - -t 0.25 -s 1 -d 2 -p cbr -e 500 -c 3 -i 5 -a 3 h -t 0.25 -s 1 -d 2 -p cbr -e 500 -c 3 -i 5 -a 3 r -t 0.256 -s 2 -d 3 -p cbr -e 500 -c 3 -i 3 -a 3 + -t 0.256 -s 3 -d 5 -p cbr -e 500 -c 3 -i 3 -a 3 - -t 0.256 -s 3 -d 5 -p cbr -e 500 -c 3 -i 3 -a 3 h -t 0.256 -s 3 -d 5 -p cbr -e 500 -c 3 -i 3 -a 3 v -t 0.26000000000000001 sim_annotation 0.26000000000000001 6 Increase window size to 2 r -t 0.26992 -s 2 -d 0 -p ack -e 40 -c 2 -i 4 -a 0 -S 0 -y {0 0} f -t 0.26991999999999999 -s 0 -d 4 -n cwnd_ -a tcp -v 2.000000 -o 1.000000 -T v + -t 0.26992 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 6 -a 0 -S 0 -f 0 -m 0 -y {1 1} - -t 0.26992 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 6 -a 0 -S 0 -y {1 1} h -t 0.26992 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 6 -a 0 -S 0 -y {-1 -1} + -t 0.26992 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 7 -a 0 -S 0 -f 0 -m 0 -y {2 2} r -t 0.278 -s 1 -d 2 -p cbr -e 500 -c 3 -i 5 -a 3 + -t 0.278 -s 2 -d 3 -p cbr -e 500 -c 3 -i 5 -a 3 - -t 0.278 -s 2 -d 3 -p cbr -e 500 -c 3 -i 5 -a 3 h -t 0.278 -s 2 -d 3 -p cbr -e 500 -c 3 -i 5 -a 3 r -t 0.284 -s 3 -d 5 -p cbr -e 500 -c 3 -i 3 -a 3 - -t 0.28592 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 7 -a 0 -S 0 -y {2 2} h -t 0.28592 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 7 -a 0 -S 0 -y {-1 -1} + -t 0.3 -s 1 -d 2 -p cbr -e 500 -c 3 -i 8 -a 3 - -t 0.3 -s 1 -d 2 -p cbr -e 500 -c 3 -i 8 -a 3 h -t 0.3 -s 1 -d 2 -p cbr -e 500 -c 3 -i 8 -a 3 r -t 0.30592 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 6 -a 0 -S 0 -y {1 1} + -t 0.30592 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 6 -a 0 -S 0 -y {1 1} - -t 0.30592 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 6 -a 0 -S 0 -y {1 1} h -t 0.30592 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 6 -a 0 -S 0 -y {-1 -1} r -t 0.306 -s 2 -d 3 -p cbr -e 500 -c 3 -i 5 -a 3 + -t 0.306 -s 3 -d 5 -p cbr -e 500 -c 3 -i 5 -a 3 - -t 0.306 -s 3 -d 5 -p cbr -e 500 -c 3 -i 5 -a 3 h -t 0.306 -s 3 -d 5 -p cbr -e 500 -c 3 -i 5 -a 3 r -t 0.32192 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 7 -a 0 -S 0 -y {2 2} + -t 0.32192 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 7 -a 0 -S 0 -y {2 2} - -t 0.32192 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 7 -a 0 -S 0 -y {2 2} h -t 0.32192 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 7 -a 0 -S 0 -y {-1 -1} r -t 0.328 -s 1 -d 2 -p cbr -e 500 -c 3 -i 8 -a 3 + -t 0.328 -s 2 -d 3 -p cbr -e 500 -c 3 -i 8 -a 3 r -t 0.334 -s 3 -d 5 -p cbr -e 500 -c 3 -i 5 -a 3 - -t 0.33792 -s 2 -d 3 -p cbr -e 500 -c 3 -i 8 -a 3 h -t 0.33792 -s 2 -d 3 -p cbr -e 500 -c 3 -i 8 -a 3 r -t 0.34192 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 6 -a 0 -S 0 -y {1 1} + -t 0.34192 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 6 -a 0 -S 0 -y {1 1} - -t 0.34192 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 6 -a 0 -S 0 -y {1 1} h -t 0.34192 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 6 -a 0 -S 0 -y {-1 -1} + -t 0.35 -s 1 -d 2 -p cbr -e 500 -c 3 -i 9 -a 3 - -t 0.35 -s 1 -d 2 -p cbr -e 500 -c 3 -i 9 -a 3 h -t 0.35 -s 1 -d 2 -p cbr -e 500 -c 3 -i 9 -a 3 r -t 0.35792 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 7 -a 0 -S 0 -y {2 2} + -t 0.35792 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 7 -a 0 -S 0 -y {2 2} - -t 0.35792 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 7 -a 0 -S 0 -y {2 2} h -t 0.35792 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 7 -a 0 -S 0 -y {-1 -1} r -t 0.36592 -s 2 -d 3 -p cbr -e 500 -c 3 -i 8 -a 3 + -t 0.36592 -s 3 -d 5 -p cbr -e 500 -c 3 -i 8 -a 3 - -t 0.36592 -s 3 -d 5 -p cbr -e 500 -c 3 -i 8 -a 3 h -t 0.36592 -s 3 -d 5 -p cbr -e 500 -c 3 -i 8 -a 3 r -t 0.37792 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 6 -a 0 -S 0 -y {1 1} + -t 0.37792 -s 4 -d 3 -p ack -e 40 -c 2 -i 10 -a 0 -S 0 -y {1 1} - -t 0.37792 -s 4 -d 3 -p ack -e 40 -c 2 -i 10 -a 0 -S 0 -y {1 1} h -t 0.37792 -s 4 -d 3 -p ack -e 40 -c 2 -i 10 -a 0 -S 0 -y {-1 -1} r -t 0.378 -s 1 -d 2 -p cbr -e 500 -c 3 -i 9 -a 3 + -t 0.378 -s 2 -d 3 -p cbr -e 500 -c 3 -i 9 -a 3 - -t 0.378 -s 2 -d 3 -p cbr -e 500 -c 3 -i 9 -a 3 h -t 0.378 -s 2 -d 3 -p cbr -e 500 -c 3 -i 9 -a 3 v -t 0.38 sim_annotation 0.38 7 2 acks are coming r -t 0.39392 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 7 -a 0 -S 0 -y {2 2} + -t 0.39392 -s 4 -d 3 -p ack -e 40 -c 2 -i 11 -a 0 -S 0 -y {2 2} - -t 0.39392 -s 4 -d 3 -p ack -e 40 -c 2 -i 11 -a 0 -S 0 -y {2 2} h -t 0.39392 -s 4 -d 3 -p ack -e 40 -c 2 -i 11 -a 0 -S 0 -y {-1 -1} r -t 0.39392 -s 3 -d 5 -p cbr -e 500 -c 3 -i 8 -a 3 r -t 0.39856 -s 4 -d 3 -p ack -e 40 -c 2 -i 10 -a 0 -S 0 -y {1 1} + -t 0.39856 -s 3 -d 2 -p ack -e 40 -c 2 -i 10 -a 0 -S 0 -y {1 1} - -t 0.39856 -s 3 -d 2 -p ack -e 40 -c 2 -i 10 -a 0 -S 0 -y {1 1} h -t 0.39856 -s 3 -d 2 -p ack -e 40 -c 2 -i 10 -a 0 -S 0 -y {-1 -1} + -t 0.4 -s 1 -d 2 -p cbr -e 500 -c 3 -i 12 -a 3 - -t 0.4 -s 1 -d 2 -p cbr -e 500 -c 3 -i 12 -a 3 h -t 0.4 -s 1 -d 2 -p cbr -e 500 -c 3 -i 12 -a 3 r -t 0.406 -s 2 -d 3 -p cbr -e 500 -c 3 -i 9 -a 3 + -t 0.406 -s 3 -d 5 -p cbr -e 500 -c 3 -i 9 -a 3 - -t 0.406 -s 3 -d 5 -p cbr -e 500 -c 3 -i 9 -a 3 h -t 0.406 -s 3 -d 5 -p cbr -e 500 -c 3 -i 9 -a 3 r -t 0.41456 -s 4 -d 3 -p ack -e 40 -c 2 -i 11 -a 0 -S 0 -y {2 2} + -t 0.41456 -s 3 -d 2 -p ack -e 40 -c 2 -i 11 -a 0 -S 0 -y {2 2} - -t 0.41456 -s 3 -d 2 -p ack -e 40 -c 2 -i 11 -a 0 -S 0 -y {2 2} h -t 0.41456 -s 3 -d 2 -p ack -e 40 -c 2 -i 11 -a 0 -S 0 -y {-1 -1} r -t 0.4192 -s 3 -d 2 -p ack -e 40 -c 2 -i 10 -a 0 -S 0 -y {1 1} + -t 0.4192 -s 2 -d 0 -p ack -e 40 -c 2 -i 10 -a 0 -S 0 -y {1 1} - -t 0.4192 -s 2 -d 0 -p ack -e 40 -c 2 -i 10 -a 0 -S 0 -f 0 -m 1 -y {1 1} h -t 0.4192 -s 2 -d 0 -p ack -e 40 -c 2 -i 10 -a 0 -S 0 -y {-1 -1} v -t 0.41999999999999998 sim_annotation 0.41999999999999998 8 Increase window size to 4 r -t 0.428 -s 1 -d 2 -p cbr -e 500 -c 3 -i 12 -a 3 + -t 0.428 -s 2 -d 3 -p cbr -e 500 -c 3 -i 12 -a 3 - -t 0.428 -s 2 -d 3 -p cbr -e 500 -c 3 -i 12 -a 3 h -t 0.428 -s 2 -d 3 -p cbr -e 500 -c 3 -i 12 -a 3 r -t 0.434 -s 3 -d 5 -p cbr -e 500 -c 3 -i 9 -a 3 r -t 0.4352 -s 3 -d 2 -p ack -e 40 -c 2 -i 11 -a 0 -S 0 -y {2 2} + -t 0.4352 -s 2 -d 0 -p ack -e 40 -c 2 -i 11 -a 0 -S 0 -y {2 2} - -t 0.4352 -s 2 -d 0 -p ack -e 40 -c 2 -i 11 -a 0 -S 0 -f 0 -m 1 -y {2 2} h -t 0.4352 -s 2 -d 0 -p ack -e 40 -c 2 -i 11 -a 0 -S 0 -y {-1 -1} r -t 0.43984 -s 2 -d 0 -p ack -e 40 -c 2 -i 10 -a 0 -S 0 -y {1 1} f -t 0.43984000000000001 -s 0 -d 4 -n cwnd_ -a tcp -v 3.000000 -o 2.000000 -T v + -t 0.43984 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 13 -a 0 -S 0 -f 0 -m 0 -y {3 3} - -t 0.43984 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 13 -a 0 -S 0 -y {3 3} h -t 0.43984 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 13 -a 0 -S 0 -y {-1 -1} + -t 0.43984 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 14 -a 0 -S 0 -f 0 -m 0 -y {4 4} + -t 0.45 -s 1 -d 2 -p cbr -e 500 -c 3 -i 15 -a 3 - -t 0.45 -s 1 -d 2 -p cbr -e 500 -c 3 -i 15 -a 3 h -t 0.45 -s 1 -d 2 -p cbr -e 500 -c 3 -i 15 -a 3 r -t 0.45584 -s 2 -d 0 -p ack -e 40 -c 2 -i 11 -a 0 -S 0 -y {2 2} f -t 0.45584000000000002 -s 0 -d 4 -n cwnd_ -a tcp -v 4.000000 -o 3.000000 -T v + -t 0.45584 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 16 -a 0 -S 0 -f 0 -m 0 -y {5 5} + -t 0.45584 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 17 -a 0 -S 0 -f 0 -m 0 -y {6 6} - -t 0.45584 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 14 -a 0 -S 0 -y {4 4} h -t 0.45584 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 14 -a 0 -S 0 -y {-1 -1} r -t 0.456 -s 2 -d 3 -p cbr -e 500 -c 3 -i 12 -a 3 + -t 0.456 -s 3 -d 5 -p cbr -e 500 -c 3 -i 12 -a 3 - -t 0.456 -s 3 -d 5 -p cbr -e 500 -c 3 -i 12 -a 3 h -t 0.456 -s 3 -d 5 -p cbr -e 500 -c 3 -i 12 -a 3 - -t 0.47184 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 16 -a 0 -S 0 -y {5 5} h -t 0.47184 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 16 -a 0 -S 0 -y {-1 -1} r -t 0.47584 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 13 -a 0 -S 0 -y {3 3} + -t 0.47584 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 13 -a 0 -S 0 -y {3 3} - -t 0.47584 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 13 -a 0 -S 0 -y {3 3} h -t 0.47584 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 13 -a 0 -S 0 -y {-1 -1} r -t 0.478 -s 1 -d 2 -p cbr -e 500 -c 3 -i 15 -a 3 + -t 0.478 -s 2 -d 3 -p cbr -e 500 -c 3 -i 15 -a 3 r -t 0.484 -s 3 -d 5 -p cbr -e 500 -c 3 -i 12 -a 3 - -t 0.48784 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 17 -a 0 -S 0 -y {6 6} h -t 0.48784 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 17 -a 0 -S 0 -y {-1 -1} r -t 0.49184 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 14 -a 0 -S 0 -y {4 4} + -t 0.49184 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 14 -a 0 -S 0 -y {4 4} - -t 0.49184 -s 2 -d 3 -p cbr -e 500 -c 3 -i 15 -a 3 h -t 0.49184 -s 2 -d 3 -p cbr -e 500 -c 3 -i 15 -a 3 - -t 0.49984 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 14 -a 0 -S 0 -y {4 4} h -t 0.49984 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 14 -a 0 -S 0 -y {-1 -1} + -t 0.5 -s 1 -d 2 -p cbr -e 500 -c 3 -i 18 -a 3 - -t 0.5 -s 1 -d 2 -p cbr -e 500 -c 3 -i 18 -a 3 h -t 0.5 -s 1 -d 2 -p cbr -e 500 -c 3 -i 18 -a 3 r -t 0.50784 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 16 -a 0 -S 0 -y {5 5} + -t 0.50784 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 16 -a 0 -S 0 -y {5 5} r -t 0.51184 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 13 -a 0 -S 0 -y {3 3} + -t 0.51184 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 13 -a 0 -S 0 -y {3 3} - -t 0.51184 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 13 -a 0 -S 0 -y {3 3} h -t 0.51184 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 13 -a 0 -S 0 -y {-1 -1} - -t 0.51584 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 16 -a 0 -S 0 -y {5 5} h -t 0.51584 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 16 -a 0 -S 0 -y {-1 -1} r -t 0.51984 -s 2 -d 3 -p cbr -e 500 -c 3 -i 15 -a 3 + -t 0.51984 -s 3 -d 5 -p cbr -e 500 -c 3 -i 15 -a 3 - -t 0.51984 -s 3 -d 5 -p cbr -e 500 -c 3 -i 15 -a 3 h -t 0.51984 -s 3 -d 5 -p cbr -e 500 -c 3 -i 15 -a 3 r -t 0.52384 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 17 -a 0 -S 0 -y {6 6} + -t 0.52384 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 17 -a 0 -S 0 -y {6 6} r -t 0.528 -s 1 -d 2 -p cbr -e 500 -c 3 -i 18 -a 3 + -t 0.528 -s 2 -d 3 -p cbr -e 500 -c 3 -i 18 -a 3 - -t 0.53184 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 17 -a 0 -S 0 -y {6 6} h -t 0.53184 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 17 -a 0 -S 0 -y {-1 -1} r -t 0.53584 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 14 -a 0 -S 0 -y {4 4} + -t 0.53584 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 14 -a 0 -S 0 -y {4 4} - -t 0.53584 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 14 -a 0 -S 0 -y {4 4} h -t 0.53584 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 14 -a 0 -S 0 -y {-1 -1} r -t 0.54784 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 13 -a 0 -S 0 -y {3 3} + -t 0.54784 -s 4 -d 3 -p ack -e 40 -c 2 -i 19 -a 0 -S 0 -y {3 3} - -t 0.54784 -s 4 -d 3 -p ack -e 40 -c 2 -i 19 -a 0 -S 0 -y {3 3} h -t 0.54784 -s 4 -d 3 -p ack -e 40 -c 2 -i 19 -a 0 -S 0 -y {-1 -1} r -t 0.54784 -s 3 -d 5 -p cbr -e 500 -c 3 -i 15 -a 3 - -t 0.54784 -s 2 -d 3 -p cbr -e 500 -c 3 -i 18 -a 3 h -t 0.54784 -s 2 -d 3 -p cbr -e 500 -c 3 -i 18 -a 3 + -t 0.55 -s 1 -d 2 -p cbr -e 500 -c 3 -i 20 -a 3 - -t 0.55 -s 1 -d 2 -p cbr -e 500 -c 3 -i 20 -a 3 h -t 0.55 -s 1 -d 2 -p cbr -e 500 -c 3 -i 20 -a 3 v -t 0.55000000000000004 sim_annotation 0.55000000000000004 9 4 acks are coming r -t 0.55184 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 16 -a 0 -S 0 -y {5 5} + -t 0.55184 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 16 -a 0 -S 0 -y {5 5} - -t 0.55184 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 16 -a 0 -S 0 -y {5 5} h -t 0.55184 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 16 -a 0 -S 0 -y {-1 -1} r -t 0.56784 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 17 -a 0 -S 0 -y {6 6} + -t 0.56784 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 17 -a 0 -S 0 -y {6 6} - -t 0.56784 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 17 -a 0 -S 0 -y {6 6} h -t 0.56784 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 17 -a 0 -S 0 -y {-1 -1} r -t 0.56848 -s 4 -d 3 -p ack -e 40 -c 2 -i 19 -a 0 -S 0 -y {3 3} + -t 0.56848 -s 3 -d 2 -p ack -e 40 -c 2 -i 19 -a 0 -S 0 -y {3 3} - -t 0.56848 -s 3 -d 2 -p ack -e 40 -c 2 -i 19 -a 0 -S 0 -y {3 3} h -t 0.56848 -s 3 -d 2 -p ack -e 40 -c 2 -i 19 -a 0 -S 0 -y {-1 -1} r -t 0.57184 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 14 -a 0 -S 0 -y {4 4} + -t 0.57184 -s 4 -d 3 -p ack -e 40 -c 2 -i 21 -a 0 -S 0 -y {4 4} - -t 0.57184 -s 4 -d 3 -p ack -e 40 -c 2 -i 21 -a 0 -S 0 -y {4 4} h -t 0.57184 -s 4 -d 3 -p ack -e 40 -c 2 -i 21 -a 0 -S 0 -y {-1 -1} r -t 0.57584 -s 2 -d 3 -p cbr -e 500 -c 3 -i 18 -a 3 + -t 0.57584 -s 3 -d 5 -p cbr -e 500 -c 3 -i 18 -a 3 - -t 0.57584 -s 3 -d 5 -p cbr -e 500 -c 3 -i 18 -a 3 h -t 0.57584 -s 3 -d 5 -p cbr -e 500 -c 3 -i 18 -a 3 r -t 0.578 -s 1 -d 2 -p cbr -e 500 -c 3 -i 20 -a 3 + -t 0.578 -s 2 -d 3 -p cbr -e 500 -c 3 -i 20 -a 3 - -t 0.578 -s 2 -d 3 -p cbr -e 500 -c 3 -i 20 -a 3 h -t 0.578 -s 2 -d 3 -p cbr -e 500 -c 3 -i 20 -a 3 r -t 0.58784 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 16 -a 0 -S 0 -y {5 5} + -t 0.58784 -s 4 -d 3 -p ack -e 40 -c 2 -i 22 -a 0 -S 0 -y {5 5} - -t 0.58784 -s 4 -d 3 -p ack -e 40 -c 2 -i 22 -a 0 -S 0 -y {5 5} h -t 0.58784 -s 4 -d 3 -p ack -e 40 -c 2 -i 22 -a 0 -S 0 -y {-1 -1} r -t 0.58912 -s 3 -d 2 -p ack -e 40 -c 2 -i 19 -a 0 -S 0 -y {3 3} + -t 0.58912 -s 2 -d 0 -p ack -e 40 -c 2 -i 19 -a 0 -S 0 -y {3 3} - -t 0.58912 -s 2 -d 0 -p ack -e 40 -c 2 -i 19 -a 0 -S 0 -f 0 -m 1 -y {3 3} h -t 0.58912 -s 2 -d 0 -p ack -e 40 -c 2 -i 19 -a 0 -S 0 -y {-1 -1} v -t 0.58999999999999997 sim_annotation 0.58999999999999997 10 Increase window size to 8 r -t 0.59248 -s 4 -d 3 -p ack -e 40 -c 2 -i 21 -a 0 -S 0 -y {4 4} + -t 0.59248 -s 3 -d 2 -p ack -e 40 -c 2 -i 21 -a 0 -S 0 -y {4 4} - -t 0.59248 -s 3 -d 2 -p ack -e 40 -c 2 -i 21 -a 0 -S 0 -y {4 4} h -t 0.59248 -s 3 -d 2 -p ack -e 40 -c 2 -i 21 -a 0 -S 0 -y {-1 -1} + -t 0.6 -s 1 -d 2 -p cbr -e 500 -c 3 -i 23 -a 3 - -t 0.6 -s 1 -d 2 -p cbr -e 500 -c 3 -i 23 -a 3 h -t 0.6 -s 1 -d 2 -p cbr -e 500 -c 3 -i 23 -a 3 r -t 0.60384 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 17 -a 0 -S 0 -y {6 6} + -t 0.60384 -s 4 -d 3 -p ack -e 40 -c 2 -i 24 -a 0 -S 0 -y {6 6} - -t 0.60384 -s 4 -d 3 -p ack -e 40 -c 2 -i 24 -a 0 -S 0 -y {6 6} h -t 0.60384 -s 4 -d 3 -p ack -e 40 -c 2 -i 24 -a 0 -S 0 -y {-1 -1} r -t 0.60384 -s 3 -d 5 -p cbr -e 500 -c 3 -i 18 -a 3 r -t 0.606 -s 2 -d 3 -p cbr -e 500 -c 3 -i 20 -a 3 + -t 0.606 -s 3 -d 5 -p cbr -e 500 -c 3 -i 20 -a 3 - -t 0.606 -s 3 -d 5 -p cbr -e 500 -c 3 -i 20 -a 3 h -t 0.606 -s 3 -d 5 -p cbr -e 500 -c 3 -i 20 -a 3 r -t 0.60848 -s 4 -d 3 -p ack -e 40 -c 2 -i 22 -a 0 -S 0 -y {5 5} + -t 0.60848 -s 3 -d 2 -p ack -e 40 -c 2 -i 22 -a 0 -S 0 -y {5 5} - -t 0.60848 -s 3 -d 2 -p ack -e 40 -c 2 -i 22 -a 0 -S 0 -y {5 5} h -t 0.60848 -s 3 -d 2 -p ack -e 40 -c 2 -i 22 -a 0 -S 0 -y {-1 -1} r -t 0.60976 -s 2 -d 0 -p ack -e 40 -c 2 -i 19 -a 0 -S 0 -y {3 3} f -t 0.60976000000000008 -s 0 -d 4 -n cwnd_ -a tcp -v 5.000000 -o 4.000000 -T v + -t 0.60976 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 25 -a 0 -S 0 -f 0 -m 0 -y {7 7} - -t 0.60976 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 25 -a 0 -S 0 -y {7 7} h -t 0.60976 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 25 -a 0 -S 0 -y {-1 -1} + -t 0.60976 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 26 -a 0 -S 0 -f 0 -m 0 -y {8 8} r -t 0.61312 -s 3 -d 2 -p ack -e 40 -c 2 -i 21 -a 0 -S 0 -y {4 4} + -t 0.61312 -s 2 -d 0 -p ack -e 40 -c 2 -i 21 -a 0 -S 0 -y {4 4} - -t 0.61312 -s 2 -d 0 -p ack -e 40 -c 2 -i 21 -a 0 -S 0 -f 0 -m 1 -y {4 4} h -t 0.61312 -s 2 -d 0 -p ack -e 40 -c 2 -i 21 -a 0 -S 0 -y {-1 -1} r -t 0.62448 -s 4 -d 3 -p ack -e 40 -c 2 -i 24 -a 0 -S 0 -y {6 6} + -t 0.62448 -s 3 -d 2 -p ack -e 40 -c 2 -i 24 -a 0 -S 0 -y {6 6} - -t 0.62448 -s 3 -d 2 -p ack -e 40 -c 2 -i 24 -a 0 -S 0 -y {6 6} h -t 0.62448 -s 3 -d 2 -p ack -e 40 -c 2 -i 24 -a 0 -S 0 -y {-1 -1} - -t 0.62576 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 26 -a 0 -S 0 -y {8 8} h -t 0.62576 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 26 -a 0 -S 0 -y {-1 -1} r -t 0.628 -s 1 -d 2 -p cbr -e 500 -c 3 -i 23 -a 3 + -t 0.628 -s 2 -d 3 -p cbr -e 500 -c 3 -i 23 -a 3 - -t 0.628 -s 2 -d 3 -p cbr -e 500 -c 3 -i 23 -a 3 h -t 0.628 -s 2 -d 3 -p cbr -e 500 -c 3 -i 23 -a 3 r -t 0.62912 -s 3 -d 2 -p ack -e 40 -c 2 -i 22 -a 0 -S 0 -y {5 5} + -t 0.62912 -s 2 -d 0 -p ack -e 40 -c 2 -i 22 -a 0 -S 0 -y {5 5} - -t 0.62912 -s 2 -d 0 -p ack -e 40 -c 2 -i 22 -a 0 -S 0 -f 0 -m 1 -y {5 5} h -t 0.62912 -s 2 -d 0 -p ack -e 40 -c 2 -i 22 -a 0 -S 0 -y {-1 -1} r -t 0.63376 -s 2 -d 0 -p ack -e 40 -c 2 -i 21 -a 0 -S 0 -y {4 4} f -t 0.63376000000000010 -s 0 -d 4 -n cwnd_ -a tcp -v 6.000000 -o 5.000000 -T v + -t 0.63376 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 27 -a 0 -S 0 -f 0 -m 0 -y {9 9} + -t 0.63376 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 28 -a 0 -S 0 -f 0 -m 0 -y {10 10} r -t 0.634 -s 3 -d 5 -p cbr -e 500 -c 3 -i 20 -a 3 - -t 0.64176 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 27 -a 0 -S 0 -y {9 9} h -t 0.64176 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 27 -a 0 -S 0 -y {-1 -1} r -t 0.64512 -s 3 -d 2 -p ack -e 40 -c 2 -i 24 -a 0 -S 0 -y {6 6} + -t 0.64512 -s 2 -d 0 -p ack -e 40 -c 2 -i 24 -a 0 -S 0 -y {6 6} - -t 0.64512 -s 2 -d 0 -p ack -e 40 -c 2 -i 24 -a 0 -S 0 -f 0 -m 1 -y {6 6} h -t 0.64512 -s 2 -d 0 -p ack -e 40 -c 2 -i 24 -a 0 -S 0 -y {-1 -1} r -t 0.64576 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 25 -a 0 -S 0 -y {7 7} + -t 0.64576 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 25 -a 0 -S 0 -y {7 7} - -t 0.64576 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 25 -a 0 -S 0 -y {7 7} h -t 0.64576 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 25 -a 0 -S 0 -y {-1 -1} r -t 0.64976 -s 2 -d 0 -p ack -e 40 -c 2 -i 22 -a 0 -S 0 -y {5 5} f -t 0.64976000000000012 -s 0 -d 4 -n cwnd_ -a tcp -v 7.000000 -o 6.000000 -T v + -t 0.64976 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 29 -a 0 -S 0 -f 0 -m 0 -y {11 11} + -t 0.64976 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 30 -a 0 -S 0 -f 0 -m 0 -y {12 12} + -t 0.65 -s 1 -d 2 -p cbr -e 500 -c 3 -i 31 -a 3 - -t 0.65 -s 1 -d 2 -p cbr -e 500 -c 3 -i 31 -a 3 h -t 0.65 -s 1 -d 2 -p cbr -e 500 -c 3 -i 31 -a 3 r -t 0.656 -s 2 -d 3 -p cbr -e 500 -c 3 -i 23 -a 3 + -t 0.656 -s 3 -d 5 -p cbr -e 500 -c 3 -i 23 -a 3 - -t 0.656 -s 3 -d 5 -p cbr -e 500 -c 3 -i 23 -a 3 h -t 0.656 -s 3 -d 5 -p cbr -e 500 -c 3 -i 23 -a 3 - -t 0.65776 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 28 -a 0 -S 0 -y {10 10} h -t 0.65776 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 28 -a 0 -S 0 -y {-1 -1} r -t 0.66176 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 26 -a 0 -S 0 -y {8 8} + -t 0.66176 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 26 -a 0 -S 0 -y {8 8} - -t 0.66176 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 26 -a 0 -S 0 -y {8 8} h -t 0.66176 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 26 -a 0 -S 0 -y {-1 -1} r -t 0.66576 -s 2 -d 0 -p ack -e 40 -c 2 -i 24 -a 0 -S 0 -y {6 6} f -t 0.66576000000000013 -s 0 -d 4 -n cwnd_ -a tcp -v 8.000000 -o 7.000000 -T v + -t 0.66576 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 32 -a 0 -S 0 -f 0 -m 0 -y {13 13} + -t 0.66576 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 33 -a 0 -S 0 -f 0 -m 0 -y {14 14} - -t 0.67376 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 29 -a 0 -S 0 -y {11 11} h -t 0.67376 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 29 -a 0 -S 0 -y {-1 -1} r -t 0.67776 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 27 -a 0 -S 0 -y {9 9} + -t 0.67776 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 27 -a 0 -S 0 -y {9 9} - -t 0.67776 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 27 -a 0 -S 0 -y {9 9} h -t 0.67776 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 27 -a 0 -S 0 -y {-1 -1} r -t 0.678 -s 1 -d 2 -p cbr -e 500 -c 3 -i 31 -a 3 + -t 0.678 -s 2 -d 3 -p cbr -e 500 -c 3 -i 31 -a 3 r -t 0.68176 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 25 -a 0 -S 0 -y {7 7} + -t 0.68176 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 25 -a 0 -S 0 -y {7 7} - -t 0.68176 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 25 -a 0 -S 0 -y {7 7} h -t 0.68176 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 25 -a 0 -S 0 -y {-1 -1} r -t 0.684 -s 3 -d 5 -p cbr -e 500 -c 3 -i 23 -a 3 - -t 0.68976 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 30 -a 0 -S 0 -y {12 12} h -t 0.68976 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 30 -a 0 -S 0 -y {-1 -1} r -t 0.69376 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 28 -a 0 -S 0 -y {10 10} + -t 0.69376 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 28 -a 0 -S 0 -y {10 10} - -t 0.69376 -s 2 -d 3 -p cbr -e 500 -c 3 -i 31 -a 3 h -t 0.69376 -s 2 -d 3 -p cbr -e 500 -c 3 -i 31 -a 3 r -t 0.69776 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 26 -a 0 -S 0 -y {8 8} + -t 0.69776 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 26 -a 0 -S 0 -y {8 8} - -t 0.69776 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 26 -a 0 -S 0 -y {8 8} h -t 0.69776 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 26 -a 0 -S 0 -y {-1 -1} + -t 0.7 -s 1 -d 2 -p cbr -e 500 -c 3 -i 34 -a 3 - -t 0.7 -s 1 -d 2 -p cbr -e 500 -c 3 -i 34 -a 3 h -t 0.7 -s 1 -d 2 -p cbr -e 500 -c 3 -i 34 -a 3 - -t 0.70176 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 28 -a 0 -S 0 -y {10 10} h -t 0.70176 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 28 -a 0 -S 0 -y {-1 -1} - -t 0.70576 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 32 -a 0 -S 0 -y {13 13} h -t 0.70576 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 32 -a 0 -S 0 -y {-1 -1} r -t 0.70976 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 29 -a 0 -S 0 -y {11 11} + -t 0.70976 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 29 -a 0 -S 0 -y {11 11} r -t 0.71376 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 27 -a 0 -S 0 -y {9 9} + -t 0.71376 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 27 -a 0 -S 0 -y {9 9} - -t 0.71376 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 27 -a 0 -S 0 -y {9 9} h -t 0.71376 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 27 -a 0 -S 0 -y {-1 -1} r -t 0.71776 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 25 -a 0 -S 0 -y {7 7} + -t 0.71776 -s 4 -d 3 -p ack -e 40 -c 2 -i 35 -a 0 -S 0 -y {7 7} - -t 0.71776 -s 4 -d 3 -p ack -e 40 -c 2 -i 35 -a 0 -S 0 -y {7 7} h -t 0.71776 -s 4 -d 3 -p ack -e 40 -c 2 -i 35 -a 0 -S 0 -y {-1 -1} - -t 0.71776 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 29 -a 0 -S 0 -y {11 11} h -t 0.71776 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 29 -a 0 -S 0 -y {-1 -1} r -t 0.72176 -s 2 -d 3 -p cbr -e 500 -c 3 -i 31 -a 3 + -t 0.72176 -s 3 -d 5 -p cbr -e 500 -c 3 -i 31 -a 3 - -t 0.72176 -s 3 -d 5 -p cbr -e 500 -c 3 -i 31 -a 3 h -t 0.72176 -s 3 -d 5 -p cbr -e 500 -c 3 -i 31 -a 3 - -t 0.72176 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 33 -a 0 -S 0 -y {14 14} h -t 0.72176 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 33 -a 0 -S 0 -y {-1 -1} r -t 0.72576 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 30 -a 0 -S 0 -y {12 12} + -t 0.72576 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 30 -a 0 -S 0 -y {12 12} r -t 0.728 -s 1 -d 2 -p cbr -e 500 -c 3 -i 34 -a 3 + -t 0.728 -s 2 -d 3 -p cbr -e 500 -c 3 -i 34 -a 3 r -t 0.73376 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 26 -a 0 -S 0 -y {8 8} + -t 0.73376 -s 4 -d 3 -p ack -e 40 -c 2 -i 36 -a 0 -S 0 -y {8 8} - -t 0.73376 -s 4 -d 3 -p ack -e 40 -c 2 -i 36 -a 0 -S 0 -y {8 8} h -t 0.73376 -s 4 -d 3 -p ack -e 40 -c 2 -i 36 -a 0 -S 0 -y {-1 -1} - -t 0.73376 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 30 -a 0 -S 0 -y {12 12} h -t 0.73376 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 30 -a 0 -S 0 -y {-1 -1} r -t 0.73776 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 28 -a 0 -S 0 -y {10 10} + -t 0.73776 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 28 -a 0 -S 0 -y {10 10} - -t 0.73776 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 28 -a 0 -S 0 -y {10 10} h -t 0.73776 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 28 -a 0 -S 0 -y {-1 -1} r -t 0.7384 -s 4 -d 3 -p ack -e 40 -c 2 -i 35 -a 0 -S 0 -y {7 7} + -t 0.7384 -s 3 -d 2 -p ack -e 40 -c 2 -i 35 -a 0 -S 0 -y {7 7} - -t 0.7384 -s 3 -d 2 -p ack -e 40 -c 2 -i 35 -a 0 -S 0 -y {7 7} h -t 0.7384 -s 3 -d 2 -p ack -e 40 -c 2 -i 35 -a 0 -S 0 -y {-1 -1} r -t 0.74176 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 32 -a 0 -S 0 -y {13 13} + -t 0.74176 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 32 -a 0 -S 0 -y {13 13} r -t 0.74976 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 27 -a 0 -S 0 -y {9 9} + -t 0.74976 -s 4 -d 3 -p ack -e 40 -c 2 -i 37 -a 0 -S 0 -y {9 9} - -t 0.74976 -s 4 -d 3 -p ack -e 40 -c 2 -i 37 -a 0 -S 0 -y {9 9} h -t 0.74976 -s 4 -d 3 -p ack -e 40 -c 2 -i 37 -a 0 -S 0 -y {-1 -1} r -t 0.74976 -s 3 -d 5 -p cbr -e 500 -c 3 -i 31 -a 3 - -t 0.74976 -s 2 -d 3 -p cbr -e 500 -c 3 -i 34 -a 3 h -t 0.74976 -s 2 -d 3 -p cbr -e 500 -c 3 -i 34 -a 3 v -t 0.75 sim_annotation 0.75 11 8 acks are coming + -t 0.75 -s 1 -d 2 -p cbr -e 500 -c 3 -i 38 -a 3 - -t 0.75 -s 1 -d 2 -p cbr -e 500 -c 3 -i 38 -a 3 h -t 0.75 -s 1 -d 2 -p cbr -e 500 -c 3 -i 38 -a 3 r -t 0.75376 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 29 -a 0 -S 0 -y {11 11} + -t 0.75376 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 29 -a 0 -S 0 -y {11 11} - -t 0.75376 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 29 -a 0 -S 0 -y {11 11} h -t 0.75376 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 29 -a 0 -S 0 -y {-1 -1} r -t 0.7544 -s 4 -d 3 -p ack -e 40 -c 2 -i 36 -a 0 -S 0 -y {8 8} + -t 0.7544 -s 3 -d 2 -p ack -e 40 -c 2 -i 36 -a 0 -S 0 -y {8 8} - -t 0.7544 -s 3 -d 2 -p ack -e 40 -c 2 -i 36 -a 0 -S 0 -y {8 8} h -t 0.7544 -s 3 -d 2 -p ack -e 40 -c 2 -i 36 -a 0 -S 0 -y {-1 -1} r -t 0.75776 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 33 -a 0 -S 0 -y {14 14} + -t 0.75776 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 33 -a 0 -S 0 -y {14 14} - -t 0.75776 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 32 -a 0 -S 0 -y {13 13} h -t 0.75776 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 32 -a 0 -S 0 -y {-1 -1} r -t 0.75904 -s 3 -d 2 -p ack -e 40 -c 2 -i 35 -a 0 -S 0 -y {7 7} + -t 0.75904 -s 2 -d 0 -p ack -e 40 -c 2 -i 35 -a 0 -S 0 -y {7 7} - -t 0.75904 -s 2 -d 0 -p ack -e 40 -c 2 -i 35 -a 0 -S 0 -f 0 -m 1 -y {7 7} h -t 0.75904 -s 2 -d 0 -p ack -e 40 -c 2 -i 35 -a 0 -S 0 -y {-1 -1} r -t 0.76976 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 30 -a 0 -S 0 -y {12 12} + -t 0.76976 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 30 -a 0 -S 0 -y {12 12} - -t 0.76976 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 30 -a 0 -S 0 -y {12 12} h -t 0.76976 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 30 -a 0 -S 0 -y {-1 -1} v -t 0.77000000000000002 sim_annotation 0.77000000000000002 12 Keep maximum cwnd size, 8 r -t 0.7704 -s 4 -d 3 -p ack -e 40 -c 2 -i 37 -a 0 -S 0 -y {9 9} + -t 0.7704 -s 3 -d 2 -p ack -e 40 -c 2 -i 37 -a 0 -S 0 -y {9 9} - -t 0.7704 -s 3 -d 2 -p ack -e 40 -c 2 -i 37 -a 0 -S 0 -y {9 9} h -t 0.7704 -s 3 -d 2 -p ack -e 40 -c 2 -i 37 -a 0 -S 0 -y {-1 -1} r -t 0.77376 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 28 -a 0 -S 0 -y {10 10} + -t 0.77376 -s 4 -d 3 -p ack -e 40 -c 2 -i 39 -a 0 -S 0 -y {10 10} - -t 0.77376 -s 4 -d 3 -p ack -e 40 -c 2 -i 39 -a 0 -S 0 -y {10 10} h -t 0.77376 -s 4 -d 3 -p ack -e 40 -c 2 -i 39 -a 0 -S 0 -y {-1 -1} - -t 0.77376 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 33 -a 0 -S 0 -y {14 14} h -t 0.77376 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 33 -a 0 -S 0 -y {-1 -1} r -t 0.77504 -s 3 -d 2 -p ack -e 40 -c 2 -i 36 -a 0 -S 0 -y {8 8} + -t 0.77504 -s 2 -d 0 -p ack -e 40 -c 2 -i 36 -a 0 -S 0 -y {8 8} - -t 0.77504 -s 2 -d 0 -p ack -e 40 -c 2 -i 36 -a 0 -S 0 -f 0 -m 1 -y {8 8} h -t 0.77504 -s 2 -d 0 -p ack -e 40 -c 2 -i 36 -a 0 -S 0 -y {-1 -1} r -t 0.77776 -s 2 -d 3 -p cbr -e 500 -c 3 -i 34 -a 3 + -t 0.77776 -s 3 -d 5 -p cbr -e 500 -c 3 -i 34 -a 3 - -t 0.77776 -s 3 -d 5 -p cbr -e 500 -c 3 -i 34 -a 3 h -t 0.77776 -s 3 -d 5 -p cbr -e 500 -c 3 -i 34 -a 3 r -t 0.778 -s 1 -d 2 -p cbr -e 500 -c 3 -i 38 -a 3 + -t 0.778 -s 2 -d 3 -p cbr -e 500 -c 3 -i 38 -a 3 r -t 0.77968 -s 2 -d 0 -p ack -e 40 -c 2 -i 35 -a 0 -S 0 -y {7 7} f -t 0.77968000000000015 -s 0 -d 4 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 0.77968000000000015 -s 0 -d 4 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v + -t 0.77968 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 40 -a 0 -S 0 -f 0 -m 0 -y {15 15} - -t 0.77968 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 40 -a 0 -S 0 -y {15 15} h -t 0.77968 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 40 -a 0 -S 0 -y {-1 -1} r -t 0.78976 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 29 -a 0 -S 0 -y {11 11} + -t 0.78976 -s 4 -d 3 -p ack -e 40 -c 2 -i 41 -a 0 -S 0 -y {11 11} - -t 0.78976 -s 4 -d 3 -p ack -e 40 -c 2 -i 41 -a 0 -S 0 -y {11 11} h -t 0.78976 -s 4 -d 3 -p ack -e 40 -c 2 -i 41 -a 0 -S 0 -y {-1 -1} - -t 0.78976 -s 2 -d 3 -p cbr -e 500 -c 3 -i 38 -a 3 h -t 0.78976 -s 2 -d 3 -p cbr -e 500 -c 3 -i 38 -a 3 r -t 0.79104 -s 3 -d 2 -p ack -e 40 -c 2 -i 37 -a 0 -S 0 -y {9 9} + -t 0.79104 -s 2 -d 0 -p ack -e 40 -c 2 -i 37 -a 0 -S 0 -y {9 9} - -t 0.79104 -s 2 -d 0 -p ack -e 40 -c 2 -i 37 -a 0 -S 0 -f 0 -m 1 -y {9 9} h -t 0.79104 -s 2 -d 0 -p ack -e 40 -c 2 -i 37 -a 0 -S 0 -y {-1 -1} r -t 0.79376 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 32 -a 0 -S 0 -y {13 13} + -t 0.79376 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 32 -a 0 -S 0 -y {13 13} - -t 0.79376 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 32 -a 0 -S 0 -y {13 13} h -t 0.79376 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 32 -a 0 -S 0 -y {-1 -1} r -t 0.7944 -s 4 -d 3 -p ack -e 40 -c 2 -i 39 -a 0 -S 0 -y {10 10} + -t 0.7944 -s 3 -d 2 -p ack -e 40 -c 2 -i 39 -a 0 -S 0 -y {10 10} - -t 0.7944 -s 3 -d 2 -p ack -e 40 -c 2 -i 39 -a 0 -S 0 -y {10 10} h -t 0.7944 -s 3 -d 2 -p ack -e 40 -c 2 -i 39 -a 0 -S 0 -y {-1 -1} r -t 0.79568 -s 2 -d 0 -p ack -e 40 -c 2 -i 36 -a 0 -S 0 -y {8 8} f -t 0.79568000000000016 -s 0 -d 4 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 0.79568000000000016 -s 0 -d 4 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v + -t 0.79568 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 42 -a 0 -S 0 -f 0 -m 0 -y {16 16} - -t 0.79568 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 42 -a 0 -S 0 -y {16 16} h -t 0.79568 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 42 -a 0 -S 0 -y {-1 -1} + -t 0.8 -s 1 -d 2 -p cbr -e 500 -c 3 -i 43 -a 3 - -t 0.8 -s 1 -d 2 -p cbr -e 500 -c 3 -i 43 -a 3 h -t 0.8 -s 1 -d 2 -p cbr -e 500 -c 3 -i 43 -a 3 r -t 0.80576 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 30 -a 0 -S 0 -y {12 12} + -t 0.80576 -s 4 -d 3 -p ack -e 40 -c 2 -i 44 -a 0 -S 0 -y {12 12} - -t 0.80576 -s 4 -d 3 -p ack -e 40 -c 2 -i 44 -a 0 -S 0 -y {12 12} h -t 0.80576 -s 4 -d 3 -p ack -e 40 -c 2 -i 44 -a 0 -S 0 -y {-1 -1} r -t 0.80576 -s 3 -d 5 -p cbr -e 500 -c 3 -i 34 -a 3 r -t 0.80976 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 33 -a 0 -S 0 -y {14 14} + -t 0.80976 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 33 -a 0 -S 0 -y {14 14} - -t 0.80976 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 33 -a 0 -S 0 -y {14 14} h -t 0.80976 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 33 -a 0 -S 0 -y {-1 -1} r -t 0.8104 -s 4 -d 3 -p ack -e 40 -c 2 -i 41 -a 0 -S 0 -y {11 11} + -t 0.8104 -s 3 -d 2 -p ack -e 40 -c 2 -i 41 -a 0 -S 0 -y {11 11} - -t 0.8104 -s 3 -d 2 -p ack -e 40 -c 2 -i 41 -a 0 -S 0 -y {11 11} h -t 0.8104 -s 3 -d 2 -p ack -e 40 -c 2 -i 41 -a 0 -S 0 -y {-1 -1} r -t 0.81168 -s 2 -d 0 -p ack -e 40 -c 2 -i 37 -a 0 -S 0 -y {9 9} f -t 0.81168000000000018 -s 0 -d 4 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 0.81168000000000018 -s 0 -d 4 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v + -t 0.81168 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 45 -a 0 -S 0 -f 0 -m 0 -y {17 17} - -t 0.81168 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 45 -a 0 -S 0 -y {17 17} h -t 0.81168 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 45 -a 0 -S 0 -y {-1 -1} r -t 0.81504 -s 3 -d 2 -p ack -e 40 -c 2 -i 39 -a 0 -S 0 -y {10 10} + -t 0.81504 -s 2 -d 0 -p ack -e 40 -c 2 -i 39 -a 0 -S 0 -y {10 10} - -t 0.81504 -s 2 -d 0 -p ack -e 40 -c 2 -i 39 -a 0 -S 0 -f 0 -m 1 -y {10 10} h -t 0.81504 -s 2 -d 0 -p ack -e 40 -c 2 -i 39 -a 0 -S 0 -y {-1 -1} r -t 0.81568 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 40 -a 0 -S 0 -y {15 15} + -t 0.81568 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 40 -a 0 -S 0 -y {15 15} - -t 0.81568 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 40 -a 0 -S 0 -y {15 15} h -t 0.81568 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 40 -a 0 -S 0 -y {-1 -1} r -t 0.81776 -s 2 -d 3 -p cbr -e 500 -c 3 -i 38 -a 3 + -t 0.81776 -s 3 -d 5 -p cbr -e 500 -c 3 -i 38 -a 3 - -t 0.81776 -s 3 -d 5 -p cbr -e 500 -c 3 -i 38 -a 3 h -t 0.81776 -s 3 -d 5 -p cbr -e 500 -c 3 -i 38 -a 3 r -t 0.8264 -s 4 -d 3 -p ack -e 40 -c 2 -i 44 -a 0 -S 0 -y {12 12} + -t 0.8264 -s 3 -d 2 -p ack -e 40 -c 2 -i 44 -a 0 -S 0 -y {12 12} - -t 0.8264 -s 3 -d 2 -p ack -e 40 -c 2 -i 44 -a 0 -S 0 -y {12 12} h -t 0.8264 -s 3 -d 2 -p ack -e 40 -c 2 -i 44 -a 0 -S 0 -y {-1 -1} r -t 0.828 -s 1 -d 2 -p cbr -e 500 -c 3 -i 43 -a 3 + -t 0.828 -s 2 -d 3 -p cbr -e 500 -c 3 -i 43 -a 3 r -t 0.82976 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 32 -a 0 -S 0 -y {13 13} + -t 0.82976 -s 4 -d 3 -p ack -e 40 -c 2 -i 46 -a 0 -S 0 -y {13 13} - -t 0.82976 -s 4 -d 3 -p ack -e 40 -c 2 -i 46 -a 0 -S 0 -y {13 13} h -t 0.82976 -s 4 -d 3 -p ack -e 40 -c 2 -i 46 -a 0 -S 0 -y {-1 -1} r -t 0.83104 -s 3 -d 2 -p ack -e 40 -c 2 -i 41 -a 0 -S 0 -y {11 11} + -t 0.83104 -s 2 -d 0 -p ack -e 40 -c 2 -i 41 -a 0 -S 0 -y {11 11} - -t 0.83104 -s 2 -d 0 -p ack -e 40 -c 2 -i 41 -a 0 -S 0 -f 0 -m 1 -y {11 11} h -t 0.83104 -s 2 -d 0 -p ack -e 40 -c 2 -i 41 -a 0 -S 0 -y {-1 -1} r -t 0.83168 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 42 -a 0 -S 0 -y {16 16} + -t 0.83168 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 42 -a 0 -S 0 -y {16 16} - -t 0.83168 -s 2 -d 3 -p cbr -e 500 -c 3 -i 43 -a 3 h -t 0.83168 -s 2 -d 3 -p cbr -e 500 -c 3 -i 43 -a 3 r -t 0.83568 -s 2 -d 0 -p ack -e 40 -c 2 -i 39 -a 0 -S 0 -y {10 10} f -t 0.83568000000000020 -s 0 -d 4 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 0.83568000000000020 -s 0 -d 4 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v + -t 0.83568 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 47 -a 0 -S 0 -f 0 -m 0 -y {18 18} - -t 0.83568 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 47 -a 0 -S 0 -y {18 18} h -t 0.83568 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 47 -a 0 -S 0 -y {-1 -1} - -t 0.83968 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 42 -a 0 -S 0 -y {16 16} h -t 0.83968 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 42 -a 0 -S 0 -y {-1 -1} r -t 0.84576 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 33 -a 0 -S 0 -y {14 14} + -t 0.84576 -s 4 -d 3 -p ack -e 40 -c 2 -i 48 -a 0 -S 0 -y {14 14} - -t 0.84576 -s 4 -d 3 -p ack -e 40 -c 2 -i 48 -a 0 -S 0 -y {14 14} h -t 0.84576 -s 4 -d 3 -p ack -e 40 -c 2 -i 48 -a 0 -S 0 -y {-1 -1} r -t 0.84576 -s 3 -d 5 -p cbr -e 500 -c 3 -i 38 -a 3 r -t 0.84704 -s 3 -d 2 -p ack -e 40 -c 2 -i 44 -a 0 -S 0 -y {12 12} + -t 0.84704 -s 2 -d 0 -p ack -e 40 -c 2 -i 44 -a 0 -S 0 -y {12 12} - -t 0.84704 -s 2 -d 0 -p ack -e 40 -c 2 -i 44 -a 0 -S 0 -f 0 -m 1 -y {12 12} h -t 0.84704 -s 2 -d 0 -p ack -e 40 -c 2 -i 44 -a 0 -S 0 -y {-1 -1} r -t 0.84768 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 45 -a 0 -S 0 -y {17 17} + -t 0.84768 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 45 -a 0 -S 0 -y {17 17} + -t 0.85 -s 1 -d 2 -p cbr -e 500 -c 3 -i 49 -a 3 - -t 0.85 -s 1 -d 2 -p cbr -e 500 -c 3 -i 49 -a 3 h -t 0.85 -s 1 -d 2 -p cbr -e 500 -c 3 -i 49 -a 3 r -t 0.8504 -s 4 -d 3 -p ack -e 40 -c 2 -i 46 -a 0 -S 0 -y {13 13} + -t 0.8504 -s 3 -d 2 -p ack -e 40 -c 2 -i 46 -a 0 -S 0 -y {13 13} - -t 0.8504 -s 3 -d 2 -p ack -e 40 -c 2 -i 46 -a 0 -S 0 -y {13 13} h -t 0.8504 -s 3 -d 2 -p ack -e 40 -c 2 -i 46 -a 0 -S 0 -y {-1 -1} r -t 0.85168 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 40 -a 0 -S 0 -y {15 15} + -t 0.85168 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 40 -a 0 -S 0 -y {15 15} - -t 0.85168 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 40 -a 0 -S 0 -y {15 15} h -t 0.85168 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 40 -a 0 -S 0 -y {-1 -1} r -t 0.85168 -s 2 -d 0 -p ack -e 40 -c 2 -i 41 -a 0 -S 0 -y {11 11} f -t 0.85168000000000021 -s 0 -d 4 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 0.85168000000000021 -s 0 -d 4 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v + -t 0.85168 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 50 -a 0 -S 0 -f 0 -m 0 -y {19 19} - -t 0.85168 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 50 -a 0 -S 0 -y {19 19} h -t 0.85168 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 50 -a 0 -S 0 -y {-1 -1} - -t 0.85568 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 45 -a 0 -S 0 -y {17 17} h -t 0.85568 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 45 -a 0 -S 0 -y {-1 -1} r -t 0.85968 -s 2 -d 3 -p cbr -e 500 -c 3 -i 43 -a 3 + -t 0.85968 -s 3 -d 5 -p cbr -e 500 -c 3 -i 43 -a 3 - -t 0.85968 -s 3 -d 5 -p cbr -e 500 -c 3 -i 43 -a 3 h -t 0.85968 -s 3 -d 5 -p cbr -e 500 -c 3 -i 43 -a 3 r -t 0.8664 -s 4 -d 3 -p ack -e 40 -c 2 -i 48 -a 0 -S 0 -y {14 14} + -t 0.8664 -s 3 -d 2 -p ack -e 40 -c 2 -i 48 -a 0 -S 0 -y {14 14} - -t 0.8664 -s 3 -d 2 -p ack -e 40 -c 2 -i 48 -a 0 -S 0 -y {14 14} h -t 0.8664 -s 3 -d 2 -p ack -e 40 -c 2 -i 48 -a 0 -S 0 -y {-1 -1} r -t 0.86768 -s 2 -d 0 -p ack -e 40 -c 2 -i 44 -a 0 -S 0 -y {12 12} f -t 0.86768000000000023 -s 0 -d 4 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 0.86768000000000023 -s 0 -d 4 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v + -t 0.86768 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 51 -a 0 -S 0 -f 0 -m 0 -y {20 20} - -t 0.86768 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 51 -a 0 -S 0 -y {20 20} h -t 0.86768 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 51 -a 0 -S 0 -y {-1 -1} r -t 0.87104 -s 3 -d 2 -p ack -e 40 -c 2 -i 46 -a 0 -S 0 -y {13 13} + -t 0.87104 -s 2 -d 0 -p ack -e 40 -c 2 -i 46 -a 0 -S 0 -y {13 13} - -t 0.87104 -s 2 -d 0 -p ack -e 40 -c 2 -i 46 -a 0 -S 0 -f 0 -m 1 -y {13 13} h -t 0.87104 -s 2 -d 0 -p ack -e 40 -c 2 -i 46 -a 0 -S 0 -y {-1 -1} r -t 0.87168 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 47 -a 0 -S 0 -y {18 18} + -t 0.87168 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 47 -a 0 -S 0 -y {18 18} - -t 0.87168 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 47 -a 0 -S 0 -y {18 18} h -t 0.87168 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 47 -a 0 -S 0 -y {-1 -1} r -t 0.87568 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 42 -a 0 -S 0 -y {16 16} + -t 0.87568 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 42 -a 0 -S 0 -y {16 16} - -t 0.87568 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 42 -a 0 -S 0 -y {16 16} h -t 0.87568 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 42 -a 0 -S 0 -y {-1 -1} r -t 0.878 -s 1 -d 2 -p cbr -e 500 -c 3 -i 49 -a 3 + -t 0.878 -s 2 -d 3 -p cbr -e 500 -c 3 -i 49 -a 3 r -t 0.88704 -s 3 -d 2 -p ack -e 40 -c 2 -i 48 -a 0 -S 0 -y {14 14} + -t 0.88704 -s 2 -d 0 -p ack -e 40 -c 2 -i 48 -a 0 -S 0 -y {14 14} - -t 0.88704 -s 2 -d 0 -p ack -e 40 -c 2 -i 48 -a 0 -S 0 -f 0 -m 1 -y {14 14} h -t 0.88704 -s 2 -d 0 -p ack -e 40 -c 2 -i 48 -a 0 -S 0 -y {-1 -1} r -t 0.88768 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 40 -a 0 -S 0 -y {15 15} + -t 0.88768 -s 4 -d 3 -p ack -e 40 -c 2 -i 52 -a 0 -S 0 -y {15 15} - -t 0.88768 -s 4 -d 3 -p ack -e 40 -c 2 -i 52 -a 0 -S 0 -y {15 15} h -t 0.88768 -s 4 -d 3 -p ack -e 40 -c 2 -i 52 -a 0 -S 0 -y {-1 -1} r -t 0.88768 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 50 -a 0 -S 0 -y {19 19} + -t 0.88768 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 50 -a 0 -S 0 -y {19 19} r -t 0.88768 -s 3 -d 5 -p cbr -e 500 -c 3 -i 43 -a 3 - -t 0.88768 -s 2 -d 3 -p cbr -e 500 -c 3 -i 49 -a 3 h -t 0.88768 -s 2 -d 3 -p cbr -e 500 -c 3 -i 49 -a 3 r -t 0.89168 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 45 -a 0 -S 0 -y {17 17} + -t 0.89168 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 45 -a 0 -S 0 -y {17 17} r -t 0.89168 -s 2 -d 0 -p ack -e 40 -c 2 -i 46 -a 0 -S 0 -y {13 13} f -t 0.89168000000000025 -s 0 -d 4 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 0.89168000000000025 -s 0 -d 4 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v + -t 0.89168 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 53 -a 0 -S 0 -f 0 -m 0 -y {21 21} - -t 0.89168 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 53 -a 0 -S 0 -y {21 21} h -t 0.89168 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 53 -a 0 -S 0 -y {-1 -1} - -t 0.89168 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 45 -a 0 -S 0 -y {17 17} h -t 0.89168 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 45 -a 0 -S 0 -y {-1 -1} - -t 0.89568 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 50 -a 0 -S 0 -y {19 19} h -t 0.89568 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 50 -a 0 -S 0 -y {-1 -1} + -t 0.9 -s 1 -d 2 -p cbr -e 500 -c 3 -i 54 -a 3 - -t 0.9 -s 1 -d 2 -p cbr -e 500 -c 3 -i 54 -a 3 h -t 0.9 -s 1 -d 2 -p cbr -e 500 -c 3 -i 54 -a 3 r -t 0.90368 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 51 -a 0 -S 0 -y {20 20} + -t 0.90368 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 51 -a 0 -S 0 -y {20 20} r -t 0.90768 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 47 -a 0 -S 0 -y {18 18} + -t 0.90768 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 47 -a 0 -S 0 -y {18 18} r -t 0.90768 -s 2 -d 0 -p ack -e 40 -c 2 -i 48 -a 0 -S 0 -y {14 14} f -t 0.90768000000000026 -s 0 -d 4 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 0.90768000000000026 -s 0 -d 4 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v + -t 0.90768 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 55 -a 0 -S 0 -f 0 -m 0 -y {22 22} - -t 0.90768 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 55 -a 0 -S 0 -y {22 22} h -t 0.90768 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 55 -a 0 -S 0 -y {-1 -1} - -t 0.90768 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 47 -a 0 -S 0 -y {18 18} h -t 0.90768 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 47 -a 0 -S 0 -y {-1 -1} r -t 0.90832 -s 4 -d 3 -p ack -e 40 -c 2 -i 52 -a 0 -S 0 -y {15 15} + -t 0.90832 -s 3 -d 2 -p ack -e 40 -c 2 -i 52 -a 0 -S 0 -y {15 15} - -t 0.90832 -s 3 -d 2 -p ack -e 40 -c 2 -i 52 -a 0 -S 0 -y {15 15} h -t 0.90832 -s 3 -d 2 -p ack -e 40 -c 2 -i 52 -a 0 -S 0 -y {-1 -1} r -t 0.91168 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 42 -a 0 -S 0 -y {16 16} + -t 0.91168 -s 4 -d 3 -p ack -e 40 -c 2 -i 56 -a 0 -S 0 -y {16 16} - -t 0.91168 -s 4 -d 3 -p ack -e 40 -c 2 -i 56 -a 0 -S 0 -y {16 16} h -t 0.91168 -s 4 -d 3 -p ack -e 40 -c 2 -i 56 -a 0 -S 0 -y {-1 -1} - -t 0.91168 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 51 -a 0 -S 0 -y {20 20} h -t 0.91168 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 51 -a 0 -S 0 -y {-1 -1} r -t 0.91568 -s 2 -d 3 -p cbr -e 500 -c 3 -i 49 -a 3 + -t 0.91568 -s 3 -d 5 -p cbr -e 500 -c 3 -i 49 -a 3 - -t 0.91568 -s 3 -d 5 -p cbr -e 500 -c 3 -i 49 -a 3 h -t 0.91568 -s 3 -d 5 -p cbr -e 500 -c 3 -i 49 -a 3 r -t 0.92768 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 53 -a 0 -S 0 -y {21 21} + -t 0.92768 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 53 -a 0 -S 0 -y {21 21} r -t 0.92768 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 45 -a 0 -S 0 -y {17 17} + -t 0.92768 -s 4 -d 3 -p ack -e 40 -c 2 -i 57 -a 0 -S 0 -y {17 17} - -t 0.92768 -s 4 -d 3 -p ack -e 40 -c 2 -i 57 -a 0 -S 0 -y {17 17} h -t 0.92768 -s 4 -d 3 -p ack -e 40 -c 2 -i 57 -a 0 -S 0 -y {-1 -1} - -t 0.92768 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 53 -a 0 -S 0 -y {21 21} h -t 0.92768 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 53 -a 0 -S 0 -y {-1 -1} r -t 0.928 -s 1 -d 2 -p cbr -e 500 -c 3 -i 54 -a 3 + -t 0.928 -s 2 -d 3 -p cbr -e 500 -c 3 -i 54 -a 3 r -t 0.92896 -s 3 -d 2 -p ack -e 40 -c 2 -i 52 -a 0 -S 0 -y {15 15} + -t 0.92896 -s 2 -d 0 -p ack -e 40 -c 2 -i 52 -a 0 -S 0 -y {15 15} - -t 0.92896 -s 2 -d 0 -p ack -e 40 -c 2 -i 52 -a 0 -S 0 -f 0 -m 1 -y {15 15} h -t 0.92896 -s 2 -d 0 -p ack -e 40 -c 2 -i 52 -a 0 -S 0 -y {-1 -1} r -t 0.93168 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 50 -a 0 -S 0 -y {19 19} + -t 0.93168 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 50 -a 0 -S 0 -y {19 19} - -t 0.93168 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 50 -a 0 -S 0 -y {19 19} h -t 0.93168 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 50 -a 0 -S 0 -y {-1 -1} r -t 0.93232 -s 4 -d 3 -p ack -e 40 -c 2 -i 56 -a 0 -S 0 -y {16 16} + -t 0.93232 -s 3 -d 2 -p ack -e 40 -c 2 -i 56 -a 0 -S 0 -y {16 16} - -t 0.93232 -s 3 -d 2 -p ack -e 40 -c 2 -i 56 -a 0 -S 0 -y {16 16} h -t 0.93232 -s 3 -d 2 -p ack -e 40 -c 2 -i 56 -a 0 -S 0 -y {-1 -1} r -t 0.94368 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 55 -a 0 -S 0 -y {22 22} + -t 0.94368 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 55 -a 0 -S 0 -y {22 22} r -t 0.94368 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 47 -a 0 -S 0 -y {18 18} + -t 0.94368 -s 4 -d 3 -p ack -e 40 -c 2 -i 58 -a 0 -S 0 -y {18 18} - -t 0.94368 -s 4 -d 3 -p ack -e 40 -c 2 -i 58 -a 0 -S 0 -y {18 18} h -t 0.94368 -s 4 -d 3 -p ack -e 40 -c 2 -i 58 -a 0 -S 0 -y {-1 -1} r -t 0.94368 -s 3 -d 5 -p cbr -e 500 -c 3 -i 49 -a 3 - -t 0.94368 -s 2 -d 3 -p cbr -e 500 -c 3 -i 54 -a 3 h -t 0.94368 -s 2 -d 3 -p cbr -e 500 -c 3 -i 54 -a 3 r -t 0.94768 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 51 -a 0 -S 0 -y {20 20} + -t 0.94768 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 51 -a 0 -S 0 -y {20 20} - -t 0.94768 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 51 -a 0 -S 0 -y {20 20} h -t 0.94768 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 51 -a 0 -S 0 -y {-1 -1} r -t 0.94832 -s 4 -d 3 -p ack -e 40 -c 2 -i 57 -a 0 -S 0 -y {17 17} + -t 0.94832 -s 3 -d 2 -p ack -e 40 -c 2 -i 57 -a 0 -S 0 -y {17 17} - -t 0.94832 -s 3 -d 2 -p ack -e 40 -c 2 -i 57 -a 0 -S 0 -y {17 17} h -t 0.94832 -s 3 -d 2 -p ack -e 40 -c 2 -i 57 -a 0 -S 0 -y {-1 -1} r -t 0.9496 -s 2 -d 0 -p ack -e 40 -c 2 -i 52 -a 0 -S 0 -y {15 15} f -t 0.94960000000000022 -s 0 -d 4 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 0.94960000000000022 -s 0 -d 4 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v + -t 0.9496 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 59 -a 0 -S 0 -f 0 -m 0 -y {23 23} - -t 0.9496 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 59 -a 0 -S 0 -y {23 23} h -t 0.9496 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 59 -a 0 -S 0 -y {-1 -1} + -t 0.95 -s 1 -d 2 -p cbr -e 500 -c 3 -i 60 -a 3 - -t 0.95 -s 1 -d 2 -p cbr -e 500 -c 3 -i 60 -a 3 h -t 0.95 -s 1 -d 2 -p cbr -e 500 -c 3 -i 60 -a 3 - -t 0.95168 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 55 -a 0 -S 0 -y {22 22} h -t 0.95168 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 55 -a 0 -S 0 -y {-1 -1} r -t 0.95296 -s 3 -d 2 -p ack -e 40 -c 2 -i 56 -a 0 -S 0 -y {16 16} + -t 0.95296 -s 2 -d 0 -p ack -e 40 -c 2 -i 56 -a 0 -S 0 -y {16 16} - -t 0.95296 -s 2 -d 0 -p ack -e 40 -c 2 -i 56 -a 0 -S 0 -f 0 -m 1 -y {16 16} h -t 0.95296 -s 2 -d 0 -p ack -e 40 -c 2 -i 56 -a 0 -S 0 -y {-1 -1} r -t 0.96368 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 53 -a 0 -S 0 -y {21 21} + -t 0.96368 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 53 -a 0 -S 0 -y {21 21} - -t 0.96368 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 53 -a 0 -S 0 -y {21 21} h -t 0.96368 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 53 -a 0 -S 0 -y {-1 -1} r -t 0.96432 -s 4 -d 3 -p ack -e 40 -c 2 -i 58 -a 0 -S 0 -y {18 18} + -t 0.96432 -s 3 -d 2 -p ack -e 40 -c 2 -i 58 -a 0 -S 0 -y {18 18} - -t 0.96432 -s 3 -d 2 -p ack -e 40 -c 2 -i 58 -a 0 -S 0 -y {18 18} h -t 0.96432 -s 3 -d 2 -p ack -e 40 -c 2 -i 58 -a 0 -S 0 -y {-1 -1} r -t 0.96768 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 50 -a 0 -S 0 -y {19 19} + -t 0.96768 -s 4 -d 3 -p ack -e 40 -c 2 -i 61 -a 0 -S 0 -y {19 19} - -t 0.96768 -s 4 -d 3 -p ack -e 40 -c 2 -i 61 -a 0 -S 0 -y {19 19} h -t 0.96768 -s 4 -d 3 -p ack -e 40 -c 2 -i 61 -a 0 -S 0 -y {-1 -1} r -t 0.96896 -s 3 -d 2 -p ack -e 40 -c 2 -i 57 -a 0 -S 0 -y {17 17} + -t 0.96896 -s 2 -d 0 -p ack -e 40 -c 2 -i 57 -a 0 -S 0 -y {17 17} - -t 0.96896 -s 2 -d 0 -p ack -e 40 -c 2 -i 57 -a 0 -S 0 -f 0 -m 1 -y {17 17} h -t 0.96896 -s 2 -d 0 -p ack -e 40 -c 2 -i 57 -a 0 -S 0 -y {-1 -1} r -t 0.97168 -s 2 -d 3 -p cbr -e 500 -c 3 -i 54 -a 3 + -t 0.97168 -s 3 -d 5 -p cbr -e 500 -c 3 -i 54 -a 3 - -t 0.97168 -s 3 -d 5 -p cbr -e 500 -c 3 -i 54 -a 3 h -t 0.97168 -s 3 -d 5 -p cbr -e 500 -c 3 -i 54 -a 3 r -t 0.9736 -s 2 -d 0 -p ack -e 40 -c 2 -i 56 -a 0 -S 0 -y {16 16} f -t 0.97360000000000024 -s 0 -d 4 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 0.97360000000000024 -s 0 -d 4 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v + -t 0.9736 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 62 -a 0 -S 0 -f 0 -m 0 -y {24 24} - -t 0.9736 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 62 -a 0 -S 0 -y {24 24} h -t 0.9736 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 62 -a 0 -S 0 -y {-1 -1} r -t 0.978 -s 1 -d 2 -p cbr -e 500 -c 3 -i 60 -a 3 + -t 0.978 -s 2 -d 3 -p cbr -e 500 -c 3 -i 60 -a 3 - -t 0.978 -s 2 -d 3 -p cbr -e 500 -c 3 -i 60 -a 3 h -t 0.978 -s 2 -d 3 -p cbr -e 500 -c 3 -i 60 -a 3 r -t 0.98368 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 51 -a 0 -S 0 -y {20 20} + -t 0.98368 -s 4 -d 3 -p ack -e 40 -c 2 -i 63 -a 0 -S 0 -y {20 20} - -t 0.98368 -s 4 -d 3 -p ack -e 40 -c 2 -i 63 -a 0 -S 0 -y {20 20} h -t 0.98368 -s 4 -d 3 -p ack -e 40 -c 2 -i 63 -a 0 -S 0 -y {-1 -1} r -t 0.98496 -s 3 -d 2 -p ack -e 40 -c 2 -i 58 -a 0 -S 0 -y {18 18} + -t 0.98496 -s 2 -d 0 -p ack -e 40 -c 2 -i 58 -a 0 -S 0 -y {18 18} - -t 0.98496 -s 2 -d 0 -p ack -e 40 -c 2 -i 58 -a 0 -S 0 -f 0 -m 1 -y {18 18} h -t 0.98496 -s 2 -d 0 -p ack -e 40 -c 2 -i 58 -a 0 -S 0 -y {-1 -1} r -t 0.9856 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 59 -a 0 -S 0 -y {23 23} + -t 0.9856 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 59 -a 0 -S 0 -y {23 23} - -t 0.986 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 59 -a 0 -S 0 -y {23 23} h -t 0.986 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 59 -a 0 -S 0 -y {-1 -1} r -t 0.98768 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 55 -a 0 -S 0 -y {22 22} + -t 0.98768 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 55 -a 0 -S 0 -y {22 22} - -t 0.98768 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 55 -a 0 -S 0 -y {22 22} h -t 0.98768 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 55 -a 0 -S 0 -y {-1 -1} r -t 0.98832 -s 4 -d 3 -p ack -e 40 -c 2 -i 61 -a 0 -S 0 -y {19 19} + -t 0.98832 -s 3 -d 2 -p ack -e 40 -c 2 -i 61 -a 0 -S 0 -y {19 19} - -t 0.98832 -s 3 -d 2 -p ack -e 40 -c 2 -i 61 -a 0 -S 0 -y {19 19} h -t 0.98832 -s 3 -d 2 -p ack -e 40 -c 2 -i 61 -a 0 -S 0 -y {-1 -1} r -t 0.9896 -s 2 -d 0 -p ack -e 40 -c 2 -i 57 -a 0 -S 0 -y {17 17} f -t 0.98960000000000026 -s 0 -d 4 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 0.98960000000000026 -s 0 -d 4 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v + -t 0.9896 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 64 -a 0 -S 0 -f 0 -m 0 -y {25 25} - -t 0.9896 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 64 -a 0 -S 0 -y {25 25} h -t 0.9896 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 64 -a 0 -S 0 -y {-1 -1} r -t 0.99968 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 53 -a 0 -S 0 -y {21 21} + -t 0.99968 -s 4 -d 3 -p ack -e 40 -c 2 -i 65 -a 0 -S 0 -y {21 21} - -t 0.99968 -s 4 -d 3 -p ack -e 40 -c 2 -i 65 -a 0 -S 0 -y {21 21} h -t 0.99968 -s 4 -d 3 -p ack -e 40 -c 2 -i 65 -a 0 -S 0 -y {-1 -1} r -t 0.99968 -s 3 -d 5 -p cbr -e 500 -c 3 -i 54 -a 3 + -t 1 -s 1 -d 2 -p cbr -e 500 -c 3 -i 66 -a 3 - -t 1 -s 1 -d 2 -p cbr -e 500 -c 3 -i 66 -a 3 h -t 1 -s 1 -d 2 -p cbr -e 500 -c 3 -i 66 -a 3 r -t 1.00432 -s 4 -d 3 -p ack -e 40 -c 2 -i 63 -a 0 -S 0 -y {20 20} + -t 1.00432 -s 3 -d 2 -p ack -e 40 -c 2 -i 63 -a 0 -S 0 -y {20 20} - -t 1.00432 -s 3 -d 2 -p ack -e 40 -c 2 -i 63 -a 0 -S 0 -y {20 20} h -t 1.00432 -s 3 -d 2 -p ack -e 40 -c 2 -i 63 -a 0 -S 0 -y {-1 -1} r -t 1.0056 -s 2 -d 0 -p ack -e 40 -c 2 -i 58 -a 0 -S 0 -y {18 18} f -t 1.00560000000000027 -s 0 -d 4 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 1.00560000000000027 -s 0 -d 4 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v + -t 1.0056 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 67 -a 0 -S 0 -f 0 -m 0 -y {26 26} - -t 1.0056 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 67 -a 0 -S 0 -y {26 26} h -t 1.0056 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 67 -a 0 -S 0 -y {-1 -1} r -t 1.006 -s 2 -d 3 -p cbr -e 500 -c 3 -i 60 -a 3 + -t 1.006 -s 3 -d 5 -p cbr -e 500 -c 3 -i 60 -a 3 - -t 1.006 -s 3 -d 5 -p cbr -e 500 -c 3 -i 60 -a 3 h -t 1.006 -s 3 -d 5 -p cbr -e 500 -c 3 -i 60 -a 3 r -t 1.00896 -s 3 -d 2 -p ack -e 40 -c 2 -i 61 -a 0 -S 0 -y {19 19} + -t 1.00896 -s 2 -d 0 -p ack -e 40 -c 2 -i 61 -a 0 -S 0 -y {19 19} - -t 1.00896 -s 2 -d 0 -p ack -e 40 -c 2 -i 61 -a 0 -S 0 -f 0 -m 1 -y {19 19} h -t 1.00896 -s 2 -d 0 -p ack -e 40 -c 2 -i 61 -a 0 -S 0 -y {-1 -1} r -t 1.0096 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 62 -a 0 -S 0 -y {24 24} + -t 1.0096 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 62 -a 0 -S 0 -y {24 24} - -t 1.0096 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 62 -a 0 -S 0 -y {24 24} h -t 1.0096 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 62 -a 0 -S 0 -y {-1 -1} r -t 1.02032 -s 4 -d 3 -p ack -e 40 -c 2 -i 65 -a 0 -S 0 -y {21 21} + -t 1.02032 -s 3 -d 2 -p ack -e 40 -c 2 -i 65 -a 0 -S 0 -y {21 21} - -t 1.02032 -s 3 -d 2 -p ack -e 40 -c 2 -i 65 -a 0 -S 0 -y {21 21} h -t 1.02032 -s 3 -d 2 -p ack -e 40 -c 2 -i 65 -a 0 -S 0 -y {-1 -1} r -t 1.022 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 59 -a 0 -S 0 -y {23 23} + -t 1.022 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 59 -a 0 -S 0 -y {23 23} - -t 1.022 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 59 -a 0 -S 0 -y {23 23} h -t 1.022 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 59 -a 0 -S 0 -y {-1 -1} r -t 1.02368 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 55 -a 0 -S 0 -y {22 22} + -t 1.02368 -s 4 -d 3 -p ack -e 40 -c 2 -i 68 -a 0 -S 0 -y {22 22} - -t 1.02368 -s 4 -d 3 -p ack -e 40 -c 2 -i 68 -a 0 -S 0 -y {22 22} h -t 1.02368 -s 4 -d 3 -p ack -e 40 -c 2 -i 68 -a 0 -S 0 -y {-1 -1} r -t 1.02496 -s 3 -d 2 -p ack -e 40 -c 2 -i 63 -a 0 -S 0 -y {20 20} + -t 1.02496 -s 2 -d 0 -p ack -e 40 -c 2 -i 63 -a 0 -S 0 -y {20 20} - -t 1.02496 -s 2 -d 0 -p ack -e 40 -c 2 -i 63 -a 0 -S 0 -f 0 -m 1 -y {20 20} h -t 1.02496 -s 2 -d 0 -p ack -e 40 -c 2 -i 63 -a 0 -S 0 -y {-1 -1} r -t 1.0256 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 64 -a 0 -S 0 -y {25 25} + -t 1.0256 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 64 -a 0 -S 0 -y {25 25} - -t 1.0256 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 64 -a 0 -S 0 -y {25 25} h -t 1.0256 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 64 -a 0 -S 0 -y {-1 -1} r -t 1.028 -s 1 -d 2 -p cbr -e 500 -c 3 -i 66 -a 3 + -t 1.028 -s 2 -d 3 -p cbr -e 500 -c 3 -i 66 -a 3 r -t 1.0296 -s 2 -d 0 -p ack -e 40 -c 2 -i 61 -a 0 -S 0 -y {19 19} f -t 1.02960000000000029 -s 0 -d 4 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 1.02960000000000029 -s 0 -d 4 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v + -t 1.0296 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 69 -a 0 -S 0 -f 0 -m 0 -y {27 27} - -t 1.0296 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 69 -a 0 -S 0 -y {27 27} h -t 1.0296 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 69 -a 0 -S 0 -y {-1 -1} r -t 1.034 -s 3 -d 5 -p cbr -e 500 -c 3 -i 60 -a 3 r -t 1.04096 -s 3 -d 2 -p ack -e 40 -c 2 -i 65 -a 0 -S 0 -y {21 21} + -t 1.04096 -s 2 -d 0 -p ack -e 40 -c 2 -i 65 -a 0 -S 0 -y {21 21} - -t 1.04096 -s 2 -d 0 -p ack -e 40 -c 2 -i 65 -a 0 -S 0 -f 0 -m 1 -y {21 21} h -t 1.04096 -s 2 -d 0 -p ack -e 40 -c 2 -i 65 -a 0 -S 0 -y {-1 -1} r -t 1.0416 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 67 -a 0 -S 0 -y {26 26} + -t 1.0416 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 67 -a 0 -S 0 -y {26 26} - -t 1.0416 -s 2 -d 3 -p cbr -e 500 -c 3 -i 66 -a 3 h -t 1.0416 -s 2 -d 3 -p cbr -e 500 -c 3 -i 66 -a 3 r -t 1.04432 -s 4 -d 3 -p ack -e 40 -c 2 -i 68 -a 0 -S 0 -y {22 22} + -t 1.04432 -s 3 -d 2 -p ack -e 40 -c 2 -i 68 -a 0 -S 0 -y {22 22} - -t 1.04432 -s 3 -d 2 -p ack -e 40 -c 2 -i 68 -a 0 -S 0 -y {22 22} h -t 1.04432 -s 3 -d 2 -p ack -e 40 -c 2 -i 68 -a 0 -S 0 -y {-1 -1} r -t 1.0456 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 62 -a 0 -S 0 -y {24 24} + -t 1.0456 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 62 -a 0 -S 0 -y {24 24} - -t 1.0456 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 62 -a 0 -S 0 -y {24 24} h -t 1.0456 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 62 -a 0 -S 0 -y {-1 -1} r -t 1.0456 -s 2 -d 0 -p ack -e 40 -c 2 -i 63 -a 0 -S 0 -y {20 20} f -t 1.04560000000000031 -s 0 -d 4 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 1.04560000000000031 -s 0 -d 4 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v + -t 1.0456 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 70 -a 0 -S 0 -f 0 -m 0 -y {28 28} - -t 1.0456 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 70 -a 0 -S 0 -y {28 28} h -t 1.0456 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 70 -a 0 -S 0 -y {-1 -1} - -t 1.0496 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 67 -a 0 -S 0 -y {26 26} h -t 1.0496 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 67 -a 0 -S 0 -y {-1 -1} + -t 1.05 -s 1 -d 2 -p cbr -e 500 -c 3 -i 71 -a 3 - -t 1.05 -s 1 -d 2 -p cbr -e 500 -c 3 -i 71 -a 3 h -t 1.05 -s 1 -d 2 -p cbr -e 500 -c 3 -i 71 -a 3 r -t 1.058 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 59 -a 0 -S 0 -y {23 23} + -t 1.058 -s 4 -d 3 -p ack -e 40 -c 2 -i 72 -a 0 -S 0 -y {23 23} - -t 1.058 -s 4 -d 3 -p ack -e 40 -c 2 -i 72 -a 0 -S 0 -y {23 23} h -t 1.058 -s 4 -d 3 -p ack -e 40 -c 2 -i 72 -a 0 -S 0 -y {-1 -1} r -t 1.0616 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 64 -a 0 -S 0 -y {25 25} + -t 1.0616 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 64 -a 0 -S 0 -y {25 25} r -t 1.0616 -s 2 -d 0 -p ack -e 40 -c 2 -i 65 -a 0 -S 0 -y {21 21} f -t 1.06160000000000032 -s 0 -d 4 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 1.06160000000000032 -s 0 -d 4 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v + -t 1.0616 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 73 -a 0 -S 0 -f 0 -m 0 -y {29 29} - -t 1.0616 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 64 -a 0 -S 0 -y {25 25} h -t 1.0616 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 64 -a 0 -S 0 -y {-1 -1} - -t 1.0616 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 73 -a 0 -S 0 -y {29 29} h -t 1.0616 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 73 -a 0 -S 0 -y {-1 -1} r -t 1.06496 -s 3 -d 2 -p ack -e 40 -c 2 -i 68 -a 0 -S 0 -y {22 22} + -t 1.06496 -s 2 -d 0 -p ack -e 40 -c 2 -i 68 -a 0 -S 0 -y {22 22} - -t 1.06496 -s 2 -d 0 -p ack -e 40 -c 2 -i 68 -a 0 -S 0 -f 0 -m 1 -y {22 22} h -t 1.06496 -s 2 -d 0 -p ack -e 40 -c 2 -i 68 -a 0 -S 0 -y {-1 -1} r -t 1.0656 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 69 -a 0 -S 0 -y {27 27} + -t 1.0656 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 69 -a 0 -S 0 -y {27 27} - -t 1.0656 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 69 -a 0 -S 0 -y {27 27} h -t 1.0656 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 69 -a 0 -S 0 -y {-1 -1} r -t 1.0696 -s 2 -d 3 -p cbr -e 500 -c 3 -i 66 -a 3 + -t 1.0696 -s 3 -d 5 -p cbr -e 500 -c 3 -i 66 -a 3 - -t 1.0696 -s 3 -d 5 -p cbr -e 500 -c 3 -i 66 -a 3 h -t 1.0696 -s 3 -d 5 -p cbr -e 500 -c 3 -i 66 -a 3 r -t 1.078 -s 1 -d 2 -p cbr -e 500 -c 3 -i 71 -a 3 + -t 1.078 -s 2 -d 3 -p cbr -e 500 -c 3 -i 71 -a 3 r -t 1.07864 -s 4 -d 3 -p ack -e 40 -c 2 -i 72 -a 0 -S 0 -y {23 23} + -t 1.07864 -s 3 -d 2 -p ack -e 40 -c 2 -i 72 -a 0 -S 0 -y {23 23} - -t 1.07864 -s 3 -d 2 -p ack -e 40 -c 2 -i 72 -a 0 -S 0 -y {23 23} h -t 1.07864 -s 3 -d 2 -p ack -e 40 -c 2 -i 72 -a 0 -S 0 -y {-1 -1} r -t 1.0816 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 62 -a 0 -S 0 -y {24 24} + -t 1.0816 -s 4 -d 3 -p ack -e 40 -c 2 -i 74 -a 0 -S 0 -y {24 24} - -t 1.0816 -s 4 -d 3 -p ack -e 40 -c 2 -i 74 -a 0 -S 0 -y {24 24} h -t 1.0816 -s 4 -d 3 -p ack -e 40 -c 2 -i 74 -a 0 -S 0 -y {-1 -1} r -t 1.0816 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 70 -a 0 -S 0 -y {28 28} + -t 1.0816 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 70 -a 0 -S 0 -y {28 28} - -t 1.0816 -s 2 -d 3 -p cbr -e 500 -c 3 -i 71 -a 3 h -t 1.0816 -s 2 -d 3 -p cbr -e 500 -c 3 -i 71 -a 3 r -t 1.0856 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 67 -a 0 -S 0 -y {26 26} + -t 1.0856 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 67 -a 0 -S 0 -y {26 26} - -t 1.0856 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 67 -a 0 -S 0 -y {26 26} h -t 1.0856 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 67 -a 0 -S 0 -y {-1 -1} r -t 1.0856 -s 2 -d 0 -p ack -e 40 -c 2 -i 68 -a 0 -S 0 -y {22 22} f -t 1.08560000000000034 -s 0 -d 4 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 1.08560000000000034 -s 0 -d 4 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v + -t 1.0856 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 75 -a 0 -S 0 -f 0 -m 0 -y {30 30} - -t 1.0856 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 75 -a 0 -S 0 -y {30 30} h -t 1.0856 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 75 -a 0 -S 0 -y {-1 -1} - -t 1.0896 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 70 -a 0 -S 0 -y {28 28} h -t 1.0896 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 70 -a 0 -S 0 -y {-1 -1} r -t 1.0976 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 64 -a 0 -S 0 -y {25 25} + -t 1.0976 -s 4 -d 3 -p ack -e 40 -c 2 -i 76 -a 0 -S 0 -y {25 25} - -t 1.0976 -s 4 -d 3 -p ack -e 40 -c 2 -i 76 -a 0 -S 0 -y {25 25} h -t 1.0976 -s 4 -d 3 -p ack -e 40 -c 2 -i 76 -a 0 -S 0 -y {-1 -1} r -t 1.0976 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 73 -a 0 -S 0 -y {29 29} + -t 1.0976 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 73 -a 0 -S 0 -y {29 29} r -t 1.0976 -s 3 -d 5 -p cbr -e 500 -c 3 -i 66 -a 3 r -t 1.09928 -s 3 -d 2 -p ack -e 40 -c 2 -i 72 -a 0 -S 0 -y {23 23} + -t 1.09928 -s 2 -d 0 -p ack -e 40 -c 2 -i 72 -a 0 -S 0 -y {23 23} - -t 1.09928 -s 2 -d 0 -p ack -e 40 -c 2 -i 72 -a 0 -S 0 -f 0 -m 1 -y {23 23} h -t 1.09928 -s 2 -d 0 -p ack -e 40 -c 2 -i 72 -a 0 -S 0 -y {-1 -1} v -t 1.1000000000000001 sim_annotation 1.1000000000000001 13 FTP stops at 1.1 v -t 1.1000000000000001 sim_annotation 1.1000000000000001 14 CBR stops at 1.1 r -t 1.1016 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 69 -a 0 -S 0 -y {27 27} + -t 1.1016 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 69 -a 0 -S 0 -y {27 27} - -t 1.1016 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 69 -a 0 -S 0 -y {27 27} h -t 1.1016 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 69 -a 0 -S 0 -y {-1 -1} r -t 1.10224 -s 4 -d 3 -p ack -e 40 -c 2 -i 74 -a 0 -S 0 -y {24 24} + -t 1.10224 -s 3 -d 2 -p ack -e 40 -c 2 -i 74 -a 0 -S 0 -y {24 24} - -t 1.10224 -s 3 -d 2 -p ack -e 40 -c 2 -i 74 -a 0 -S 0 -y {24 24} h -t 1.10224 -s 3 -d 2 -p ack -e 40 -c 2 -i 74 -a 0 -S 0 -y {-1 -1} - -t 1.1056 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 73 -a 0 -S 0 -y {29 29} h -t 1.1056 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 73 -a 0 -S 0 -y {-1 -1} r -t 1.1096 -s 2 -d 3 -p cbr -e 500 -c 3 -i 71 -a 3 + -t 1.1096 -s 3 -d 5 -p cbr -e 500 -c 3 -i 71 -a 3 - -t 1.1096 -s 3 -d 5 -p cbr -e 500 -c 3 -i 71 -a 3 h -t 1.1096 -s 3 -d 5 -p cbr -e 500 -c 3 -i 71 -a 3 r -t 1.11824 -s 4 -d 3 -p ack -e 40 -c 2 -i 76 -a 0 -S 0 -y {25 25} + -t 1.11824 -s 3 -d 2 -p ack -e 40 -c 2 -i 76 -a 0 -S 0 -y {25 25} - -t 1.11824 -s 3 -d 2 -p ack -e 40 -c 2 -i 76 -a 0 -S 0 -y {25 25} h -t 1.11824 -s 3 -d 2 -p ack -e 40 -c 2 -i 76 -a 0 -S 0 -y {-1 -1} r -t 1.11992 -s 2 -d 0 -p ack -e 40 -c 2 -i 72 -a 0 -S 0 -y {23 23} f -t 1.11992000000000025 -s 0 -d 4 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 1.11992000000000025 -s 0 -d 4 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v r -t 1.1216 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 67 -a 0 -S 0 -y {26 26} + -t 1.1216 -s 4 -d 3 -p ack -e 40 -c 2 -i 77 -a 0 -S 0 -y {26 26} - -t 1.1216 -s 4 -d 3 -p ack -e 40 -c 2 -i 77 -a 0 -S 0 -y {26 26} h -t 1.1216 -s 4 -d 3 -p ack -e 40 -c 2 -i 77 -a 0 -S 0 -y {-1 -1} r -t 1.1216 -s 0 -d 2 -p tcp -e 1000 -c 2 -i 75 -a 0 -S 0 -y {30 30} + -t 1.1216 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 75 -a 0 -S 0 -y {30 30} - -t 1.1216 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 75 -a 0 -S 0 -y {30 30} h -t 1.1216 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 75 -a 0 -S 0 -y {-1 -1} r -t 1.12288 -s 3 -d 2 -p ack -e 40 -c 2 -i 74 -a 0 -S 0 -y {24 24} + -t 1.12288 -s 2 -d 0 -p ack -e 40 -c 2 -i 74 -a 0 -S 0 -y {24 24} - -t 1.12288 -s 2 -d 0 -p ack -e 40 -c 2 -i 74 -a 0 -S 0 -f 0 -m 1 -y {24 24} h -t 1.12288 -s 2 -d 0 -p ack -e 40 -c 2 -i 74 -a 0 -S 0 -y {-1 -1} r -t 1.1256 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 70 -a 0 -S 0 -y {28 28} + -t 1.1256 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 70 -a 0 -S 0 -y {28 28} - -t 1.1256 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 70 -a 0 -S 0 -y {28 28} h -t 1.1256 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 70 -a 0 -S 0 -y {-1 -1} r -t 1.1376 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 69 -a 0 -S 0 -y {27 27} + -t 1.1376 -s 4 -d 3 -p ack -e 40 -c 2 -i 78 -a 0 -S 0 -y {27 27} - -t 1.1376 -s 4 -d 3 -p ack -e 40 -c 2 -i 78 -a 0 -S 0 -y {27 27} h -t 1.1376 -s 4 -d 3 -p ack -e 40 -c 2 -i 78 -a 0 -S 0 -y {-1 -1} r -t 1.1376 -s 3 -d 5 -p cbr -e 500 -c 3 -i 71 -a 3 r -t 1.13888 -s 3 -d 2 -p ack -e 40 -c 2 -i 76 -a 0 -S 0 -y {25 25} + -t 1.13888 -s 2 -d 0 -p ack -e 40 -c 2 -i 76 -a 0 -S 0 -y {25 25} - -t 1.13888 -s 2 -d 0 -p ack -e 40 -c 2 -i 76 -a 0 -S 0 -f 0 -m 1 -y {25 25} h -t 1.13888 -s 2 -d 0 -p ack -e 40 -c 2 -i 76 -a 0 -S 0 -y {-1 -1} r -t 1.1416 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 73 -a 0 -S 0 -y {29 29} + -t 1.1416 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 73 -a 0 -S 0 -y {29 29} - -t 1.1416 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 73 -a 0 -S 0 -y {29 29} h -t 1.1416 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 73 -a 0 -S 0 -y {-1 -1} r -t 1.14224 -s 4 -d 3 -p ack -e 40 -c 2 -i 77 -a 0 -S 0 -y {26 26} + -t 1.14224 -s 3 -d 2 -p ack -e 40 -c 2 -i 77 -a 0 -S 0 -y {26 26} - -t 1.14224 -s 3 -d 2 -p ack -e 40 -c 2 -i 77 -a 0 -S 0 -y {26 26} h -t 1.14224 -s 3 -d 2 -p ack -e 40 -c 2 -i 77 -a 0 -S 0 -y {-1 -1} r -t 1.14352 -s 2 -d 0 -p ack -e 40 -c 2 -i 74 -a 0 -S 0 -y {24 24} f -t 1.14352000000000031 -s 0 -d 4 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 1.14352000000000031 -s 0 -d 4 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v r -t 1.1576 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 75 -a 0 -S 0 -y {30 30} + -t 1.1576 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 75 -a 0 -S 0 -y {30 30} - -t 1.1576 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 75 -a 0 -S 0 -y {30 30} h -t 1.1576 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 75 -a 0 -S 0 -y {-1 -1} r -t 1.15824 -s 4 -d 3 -p ack -e 40 -c 2 -i 78 -a 0 -S 0 -y {27 27} + -t 1.15824 -s 3 -d 2 -p ack -e 40 -c 2 -i 78 -a 0 -S 0 -y {27 27} - -t 1.15824 -s 3 -d 2 -p ack -e 40 -c 2 -i 78 -a 0 -S 0 -y {27 27} h -t 1.15824 -s 3 -d 2 -p ack -e 40 -c 2 -i 78 -a 0 -S 0 -y {-1 -1} r -t 1.15952 -s 2 -d 0 -p ack -e 40 -c 2 -i 76 -a 0 -S 0 -y {25 25} f -t 1.15952000000000033 -s 0 -d 4 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 1.15952000000000033 -s 0 -d 4 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v r -t 1.1616 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 70 -a 0 -S 0 -y {28 28} + -t 1.1616 -s 4 -d 3 -p ack -e 40 -c 2 -i 79 -a 0 -S 0 -y {28 28} - -t 1.1616 -s 4 -d 3 -p ack -e 40 -c 2 -i 79 -a 0 -S 0 -y {28 28} h -t 1.1616 -s 4 -d 3 -p ack -e 40 -c 2 -i 79 -a 0 -S 0 -y {-1 -1} r -t 1.16288 -s 3 -d 2 -p ack -e 40 -c 2 -i 77 -a 0 -S 0 -y {26 26} + -t 1.16288 -s 2 -d 0 -p ack -e 40 -c 2 -i 77 -a 0 -S 0 -y {26 26} - -t 1.16288 -s 2 -d 0 -p ack -e 40 -c 2 -i 77 -a 0 -S 0 -f 0 -m 1 -y {26 26} h -t 1.16288 -s 2 -d 0 -p ack -e 40 -c 2 -i 77 -a 0 -S 0 -y {-1 -1} r -t 1.1776 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 73 -a 0 -S 0 -y {29 29} + -t 1.1776 -s 4 -d 3 -p ack -e 40 -c 2 -i 80 -a 0 -S 0 -y {29 29} - -t 1.1776 -s 4 -d 3 -p ack -e 40 -c 2 -i 80 -a 0 -S 0 -y {29 29} h -t 1.1776 -s 4 -d 3 -p ack -e 40 -c 2 -i 80 -a 0 -S 0 -y {-1 -1} r -t 1.17888 -s 3 -d 2 -p ack -e 40 -c 2 -i 78 -a 0 -S 0 -y {27 27} + -t 1.17888 -s 2 -d 0 -p ack -e 40 -c 2 -i 78 -a 0 -S 0 -y {27 27} - -t 1.17888 -s 2 -d 0 -p ack -e 40 -c 2 -i 78 -a 0 -S 0 -f 0 -m 1 -y {27 27} h -t 1.17888 -s 2 -d 0 -p ack -e 40 -c 2 -i 78 -a 0 -S 0 -y {-1 -1} r -t 1.18224 -s 4 -d 3 -p ack -e 40 -c 2 -i 79 -a 0 -S 0 -y {28 28} + -t 1.18224 -s 3 -d 2 -p ack -e 40 -c 2 -i 79 -a 0 -S 0 -y {28 28} - -t 1.18224 -s 3 -d 2 -p ack -e 40 -c 2 -i 79 -a 0 -S 0 -y {28 28} h -t 1.18224 -s 3 -d 2 -p ack -e 40 -c 2 -i 79 -a 0 -S 0 -y {-1 -1} r -t 1.18352 -s 2 -d 0 -p ack -e 40 -c 2 -i 77 -a 0 -S 0 -y {26 26} f -t 1.18352000000000035 -s 0 -d 4 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 1.18352000000000035 -s 0 -d 4 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v r -t 1.1936 -s 3 -d 4 -p tcp -e 1000 -c 2 -i 75 -a 0 -S 0 -y {30 30} + -t 1.1936 -s 4 -d 3 -p ack -e 40 -c 2 -i 81 -a 0 -S 0 -y {30 30} - -t 1.1936 -s 4 -d 3 -p ack -e 40 -c 2 -i 81 -a 0 -S 0 -y {30 30} h -t 1.1936 -s 4 -d 3 -p ack -e 40 -c 2 -i 81 -a 0 -S 0 -y {-1 -1} r -t 1.19824 -s 4 -d 3 -p ack -e 40 -c 2 -i 80 -a 0 -S 0 -y {29 29} + -t 1.19824 -s 3 -d 2 -p ack -e 40 -c 2 -i 80 -a 0 -S 0 -y {29 29} - -t 1.19824 -s 3 -d 2 -p ack -e 40 -c 2 -i 80 -a 0 -S 0 -y {29 29} h -t 1.19824 -s 3 -d 2 -p ack -e 40 -c 2 -i 80 -a 0 -S 0 -y {-1 -1} r -t 1.19952 -s 2 -d 0 -p ack -e 40 -c 2 -i 78 -a 0 -S 0 -y {27 27} f -t 1.19952000000000036 -s 0 -d 4 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 1.19952000000000036 -s 0 -d 4 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v r -t 1.20288 -s 3 -d 2 -p ack -e 40 -c 2 -i 79 -a 0 -S 0 -y {28 28} + -t 1.20288 -s 2 -d 0 -p ack -e 40 -c 2 -i 79 -a 0 -S 0 -y {28 28} - -t 1.20288 -s 2 -d 0 -p ack -e 40 -c 2 -i 79 -a 0 -S 0 -f 0 -m 1 -y {28 28} h -t 1.20288 -s 2 -d 0 -p ack -e 40 -c 2 -i 79 -a 0 -S 0 -y {-1 -1} r -t 1.21424 -s 4 -d 3 -p ack -e 40 -c 2 -i 81 -a 0 -S 0 -y {30 30} + -t 1.21424 -s 3 -d 2 -p ack -e 40 -c 2 -i 81 -a 0 -S 0 -y {30 30} - -t 1.21424 -s 3 -d 2 -p ack -e 40 -c 2 -i 81 -a 0 -S 0 -y {30 30} h -t 1.21424 -s 3 -d 2 -p ack -e 40 -c 2 -i 81 -a 0 -S 0 -y {-1 -1} r -t 1.21888 -s 3 -d 2 -p ack -e 40 -c 2 -i 80 -a 0 -S 0 -y {29 29} + -t 1.21888 -s 2 -d 0 -p ack -e 40 -c 2 -i 80 -a 0 -S 0 -y {29 29} - -t 1.21888 -s 2 -d 0 -p ack -e 40 -c 2 -i 80 -a 0 -S 0 -f 0 -m 1 -y {29 29} h -t 1.21888 -s 2 -d 0 -p ack -e 40 -c 2 -i 80 -a 0 -S 0 -y {-1 -1} r -t 1.22352 -s 2 -d 0 -p ack -e 40 -c 2 -i 79 -a 0 -S 0 -y {28 28} f -t 1.22352000000000039 -s 0 -d 4 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 1.22352000000000039 -s 0 -d 4 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v r -t 1.23488 -s 3 -d 2 -p ack -e 40 -c 2 -i 81 -a 0 -S 0 -y {30 30} + -t 1.23488 -s 2 -d 0 -p ack -e 40 -c 2 -i 81 -a 0 -S 0 -y {30 30} - -t 1.23488 -s 2 -d 0 -p ack -e 40 -c 2 -i 81 -a 0 -S 0 -f 0 -m 1 -y {30 30} h -t 1.23488 -s 2 -d 0 -p ack -e 40 -c 2 -i 81 -a 0 -S 0 -y {-1 -1} r -t 1.23952 -s 2 -d 0 -p ack -e 40 -c 2 -i 80 -a 0 -S 0 -y {29 29} f -t 1.23952000000000040 -s 0 -d 4 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 1.23952000000000040 -s 0 -d 4 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v r -t 1.25552 -s 2 -d 0 -p ack -e 40 -c 2 -i 81 -a 0 -S 0 -y {30 30} f -t 1.25552000000000041 -s 0 -d 4 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v f -t 1.25552000000000041 -s 0 -d 4 -n cwnd_ -a tcp -v 8.000000 -o 9.000000 -T v f -t 1.75552000000000041 -s 0 -d 4 -n cwnd_ -a tcp -v 1.000000 -o 8.000000 -T v nam-1.15/edu/B5-slow-start.tcl0000664000076400007660000000706007024407022014740 0ustar tomhnsnam# slow start protocol in normal situation # features : labeling, annotation, nam-graph, and window size monitoring set ns [new Simulator] $ns color 1 Red $ns trace-all [open B5-slow-start.tr w] $ns namtrace-all [open B5-slow-start.nam w] ### build topology with 6 nodes proc build_topology { ns } { global node_ set node_(ss1) [$ns node] set node_(ss2) [$ns node] set node_(rr1) [$ns node] set node_(rr2) [$ns node] set node_(ss3) [$ns node] set node_(ss4) [$ns node] $node_(ss2) color "red" $node_(ss4) color "red" $node_(rr1) color "blue" $node_(rr2) color "blue" $node_(rr1) shape "rectangular" $node_(rr2) shape "rectangular" $ns at 0.0 "$node_(ss1) label TCP2-Sender" $ns at 0.0 "$node_(ss2) label CBR2-Sender" $ns at 0.0 "$node_(ss3) label TCP2-Receiver" $ns at 0.0 "$node_(ss4) label CBR2-Receiver" $ns duplex-link $node_(ss1) $node_(rr1) 0.5Mb 20ms DropTail $ns duplex-link $node_(ss2) $node_(rr1) 0.5Mb 20ms DropTail $ns duplex-link $node_(rr1) $node_(rr2) 0.5Mb 20ms DropTail $ns duplex-link $node_(rr2) $node_(ss3) 0.5Mb 20ms DropTail $ns duplex-link $node_(rr2) $node_(ss4) 0.5Mb 20ms DropTail $ns queue-limit $node_(rr1) $node_(rr2) 100 $ns queue-limit $node_(rr2) $node_(rr1) 100 $ns duplex-link-op $node_(ss1) $node_(rr1) orient right-down $ns duplex-link-op $node_(ss2) $node_(rr1) orient right-up $ns duplex-link-op $node_(rr1) $node_(rr2) orient right $ns duplex-link-op $node_(rr2) $node_(ss3) orient right-up $ns duplex-link-op $node_(rr2) $node_(ss4) orient right-down $ns duplex-link-op $node_(rr1) $node_(rr2) queuePos 0.5 $ns duplex-link-op $node_(rr2) $node_(rr1) queuePos 0.5 } build_topology $ns Agent/TCP set nam_tracevar_ true ### TCP between ss1 and ss3 (Black) set tcp2 [$ns create-connection TCP $node_(ss1) TCPSink $node_(ss3) 2] $tcp2 set maxcwnd_ 8 $tcp2 set fid_ 2 set ftp2 [$tcp2 attach-app FTP] $ns add-agent-trace $tcp2 tcp $ns monitor-agent-trace $tcp2 $tcp2 tracevar cwnd_ ### CBR traffic between ss2 and ss4 (Red) set cbr2 [$ns create-connection CBR $node_(ss2) Null $node_(ss4) 3] $cbr2 set packetSize_ 500 $cbr2 set interval_ 0.05 $cbr2 set fid_ 3 proc finish {} { global ns $ns flush-trace puts "filtering..." exec tclsh ../bin/namfilter.tcl B5-slow-start.nam puts "running nam..." exec nam B5-slow-start.nam & exit 0 } ### set operations $ns at 0.1 "$ftp2 start" $ns at 1.1 "$ftp2 stop" $ns at 0.1 "$cbr2 start" $ns at 1.1 "$cbr2 stop" $ns at 2.0 "finish" ### add annotations $ns at 0.0 "$ns trace-annotate \"Normal operation of with max window size, 8\"" $ns at 0.1 "$ns trace-annotate \"FTP starts at 0.1\"" $ns at 0.1 "$ns trace-annotate \"CBR starts at 0.1\"" $ns at 0.11 "$ns trace-annotate \"Initial window size is 1\"" $ns at 0.22 "$ns trace-annotate \"1 ack is coming\"" $ns at 0.26 "$ns trace-annotate \"Increase window size to 2\"" $ns at 0.38 "$ns trace-annotate \"2 acks are coming\"" $ns at 0.42 "$ns trace-annotate \"Increase window size to 4\"" $ns at 0.55 "$ns trace-annotate \"4 acks are coming\"" $ns at 0.59 "$ns trace-annotate \"Increase window size to 8\"" $ns at 0.75 "$ns trace-annotate \"8 acks are coming\"" $ns at 0.77 "$ns trace-annotate \"Keep maximum cwnd size, 8\"" $ns at 1.1 "$ns trace-annotate \"FTP stops at 1.1\"" $ns at 1.1 "$ns trace-annotate \"CBR stops at 1.1\"" $ns run nam-1.15/edu/B5-slow-start.tr0000664000076400007660000010240306751716023014612 0ustar tomhnsnamv 0 eval {set sim_annotation {Normal operation of with max window size, 8}} + 0.1 0 2 tcp 1000 ------- 2 0.0 4.0 0 0 - 0.1 0 2 tcp 1000 ------- 2 0.0 4.0 0 0 + 0.1 1 2 cbr 500 ------- 3 1.0 5.0 0 1 - 0.1 1 2 cbr 500 ------- 3 1.0 5.0 0 1 v 0.10000000000000001 eval {set sim_annotation {FTP starts at 0.1}} v 0.10000000000000001 eval {set sim_annotation {CBR starts at 0.1}} v 0.11 eval {set sim_annotation {Initial window size is 1}} r 0.128 1 2 cbr 500 ------- 3 1.0 5.0 0 1 + 0.128 2 3 cbr 500 ------- 3 1.0 5.0 0 1 - 0.128 2 3 cbr 500 ------- 3 1.0 5.0 0 1 r 0.136 0 2 tcp 1000 ------- 2 0.0 4.0 0 0 + 0.136 2 3 tcp 1000 ------- 2 0.0 4.0 0 0 - 0.136 2 3 tcp 1000 ------- 2 0.0 4.0 0 0 + 0.15 1 2 cbr 500 ------- 3 1.0 5.0 1 2 - 0.15 1 2 cbr 500 ------- 3 1.0 5.0 1 2 r 0.156 2 3 cbr 500 ------- 3 1.0 5.0 0 1 + 0.156 3 5 cbr 500 ------- 3 1.0 5.0 0 1 - 0.156 3 5 cbr 500 ------- 3 1.0 5.0 0 1 r 0.172 2 3 tcp 1000 ------- 2 0.0 4.0 0 0 + 0.172 3 4 tcp 1000 ------- 2 0.0 4.0 0 0 - 0.172 3 4 tcp 1000 ------- 2 0.0 4.0 0 0 r 0.178 1 2 cbr 500 ------- 3 1.0 5.0 1 2 + 0.178 2 3 cbr 500 ------- 3 1.0 5.0 1 2 - 0.178 2 3 cbr 500 ------- 3 1.0 5.0 1 2 r 0.184 3 5 cbr 500 ------- 3 1.0 5.0 0 1 + 0.2 1 2 cbr 500 ------- 3 1.0 5.0 2 3 - 0.2 1 2 cbr 500 ------- 3 1.0 5.0 2 3 r 0.206 2 3 cbr 500 ------- 3 1.0 5.0 1 2 + 0.206 3 5 cbr 500 ------- 3 1.0 5.0 1 2 - 0.206 3 5 cbr 500 ------- 3 1.0 5.0 1 2 r 0.208 3 4 tcp 1000 ------- 2 0.0 4.0 0 0 + 0.208 4 3 ack 40 ------- 2 4.0 0.0 0 4 - 0.208 4 3 ack 40 ------- 2 4.0 0.0 0 4 v 0.22 eval {set sim_annotation {1 ack is coming}} r 0.228 1 2 cbr 500 ------- 3 1.0 5.0 2 3 + 0.228 2 3 cbr 500 ------- 3 1.0 5.0 2 3 - 0.228 2 3 cbr 500 ------- 3 1.0 5.0 2 3 r 0.22864 4 3 ack 40 ------- 2 4.0 0.0 0 4 + 0.22864 3 2 ack 40 ------- 2 4.0 0.0 0 4 - 0.22864 3 2 ack 40 ------- 2 4.0 0.0 0 4 r 0.234 3 5 cbr 500 ------- 3 1.0 5.0 1 2 r 0.24928 3 2 ack 40 ------- 2 4.0 0.0 0 4 + 0.24928 2 0 ack 40 ------- 2 4.0 0.0 0 4 - 0.24928 2 0 ack 40 ------- 2 4.0 0.0 0 4 + 0.25 1 2 cbr 500 ------- 3 1.0 5.0 3 5 - 0.25 1 2 cbr 500 ------- 3 1.0 5.0 3 5 r 0.256 2 3 cbr 500 ------- 3 1.0 5.0 2 3 + 0.256 3 5 cbr 500 ------- 3 1.0 5.0 2 3 - 0.256 3 5 cbr 500 ------- 3 1.0 5.0 2 3 v 0.26000000000000001 eval {set sim_annotation {Increase window size to 2}} r 0.26992 2 0 ack 40 ------- 2 4.0 0.0 0 4 + 0.26992 0 2 tcp 1000 ------- 2 0.0 4.0 1 6 - 0.26992 0 2 tcp 1000 ------- 2 0.0 4.0 1 6 + 0.26992 0 2 tcp 1000 ------- 2 0.0 4.0 2 7 r 0.278 1 2 cbr 500 ------- 3 1.0 5.0 3 5 + 0.278 2 3 cbr 500 ------- 3 1.0 5.0 3 5 - 0.278 2 3 cbr 500 ------- 3 1.0 5.0 3 5 r 0.284 3 5 cbr 500 ------- 3 1.0 5.0 2 3 - 0.28592 0 2 tcp 1000 ------- 2 0.0 4.0 2 7 + 0.3 1 2 cbr 500 ------- 3 1.0 5.0 4 8 - 0.3 1 2 cbr 500 ------- 3 1.0 5.0 4 8 r 0.30592 0 2 tcp 1000 ------- 2 0.0 4.0 1 6 + 0.30592 2 3 tcp 1000 ------- 2 0.0 4.0 1 6 - 0.30592 2 3 tcp 1000 ------- 2 0.0 4.0 1 6 r 0.306 2 3 cbr 500 ------- 3 1.0 5.0 3 5 + 0.306 3 5 cbr 500 ------- 3 1.0 5.0 3 5 - 0.306 3 5 cbr 500 ------- 3 1.0 5.0 3 5 r 0.32192 0 2 tcp 1000 ------- 2 0.0 4.0 2 7 + 0.32192 2 3 tcp 1000 ------- 2 0.0 4.0 2 7 - 0.32192 2 3 tcp 1000 ------- 2 0.0 4.0 2 7 r 0.328 1 2 cbr 500 ------- 3 1.0 5.0 4 8 + 0.328 2 3 cbr 500 ------- 3 1.0 5.0 4 8 r 0.334 3 5 cbr 500 ------- 3 1.0 5.0 3 5 - 0.33792 2 3 cbr 500 ------- 3 1.0 5.0 4 8 r 0.34192 2 3 tcp 1000 ------- 2 0.0 4.0 1 6 + 0.34192 3 4 tcp 1000 ------- 2 0.0 4.0 1 6 - 0.34192 3 4 tcp 1000 ------- 2 0.0 4.0 1 6 + 0.35 1 2 cbr 500 ------- 3 1.0 5.0 5 9 - 0.35 1 2 cbr 500 ------- 3 1.0 5.0 5 9 r 0.35792 2 3 tcp 1000 ------- 2 0.0 4.0 2 7 + 0.35792 3 4 tcp 1000 ------- 2 0.0 4.0 2 7 - 0.35792 3 4 tcp 1000 ------- 2 0.0 4.0 2 7 r 0.36592 2 3 cbr 500 ------- 3 1.0 5.0 4 8 + 0.36592 3 5 cbr 500 ------- 3 1.0 5.0 4 8 - 0.36592 3 5 cbr 500 ------- 3 1.0 5.0 4 8 r 0.37792 3 4 tcp 1000 ------- 2 0.0 4.0 1 6 + 0.37792 4 3 ack 40 ------- 2 4.0 0.0 1 10 - 0.37792 4 3 ack 40 ------- 2 4.0 0.0 1 10 r 0.378 1 2 cbr 500 ------- 3 1.0 5.0 5 9 + 0.378 2 3 cbr 500 ------- 3 1.0 5.0 5 9 - 0.378 2 3 cbr 500 ------- 3 1.0 5.0 5 9 v 0.38 eval {set sim_annotation {2 acks are coming}} r 0.39392 3 4 tcp 1000 ------- 2 0.0 4.0 2 7 + 0.39392 4 3 ack 40 ------- 2 4.0 0.0 2 11 - 0.39392 4 3 ack 40 ------- 2 4.0 0.0 2 11 r 0.39392 3 5 cbr 500 ------- 3 1.0 5.0 4 8 r 0.39856 4 3 ack 40 ------- 2 4.0 0.0 1 10 + 0.39856 3 2 ack 40 ------- 2 4.0 0.0 1 10 - 0.39856 3 2 ack 40 ------- 2 4.0 0.0 1 10 + 0.4 1 2 cbr 500 ------- 3 1.0 5.0 6 12 - 0.4 1 2 cbr 500 ------- 3 1.0 5.0 6 12 r 0.406 2 3 cbr 500 ------- 3 1.0 5.0 5 9 + 0.406 3 5 cbr 500 ------- 3 1.0 5.0 5 9 - 0.406 3 5 cbr 500 ------- 3 1.0 5.0 5 9 r 0.41456 4 3 ack 40 ------- 2 4.0 0.0 2 11 + 0.41456 3 2 ack 40 ------- 2 4.0 0.0 2 11 - 0.41456 3 2 ack 40 ------- 2 4.0 0.0 2 11 r 0.4192 3 2 ack 40 ------- 2 4.0 0.0 1 10 + 0.4192 2 0 ack 40 ------- 2 4.0 0.0 1 10 - 0.4192 2 0 ack 40 ------- 2 4.0 0.0 1 10 v 0.41999999999999998 eval {set sim_annotation {Increase window size to 4}} r 0.428 1 2 cbr 500 ------- 3 1.0 5.0 6 12 + 0.428 2 3 cbr 500 ------- 3 1.0 5.0 6 12 - 0.428 2 3 cbr 500 ------- 3 1.0 5.0 6 12 r 0.434 3 5 cbr 500 ------- 3 1.0 5.0 5 9 r 0.4352 3 2 ack 40 ------- 2 4.0 0.0 2 11 + 0.4352 2 0 ack 40 ------- 2 4.0 0.0 2 11 - 0.4352 2 0 ack 40 ------- 2 4.0 0.0 2 11 r 0.43984 2 0 ack 40 ------- 2 4.0 0.0 1 10 + 0.43984 0 2 tcp 1000 ------- 2 0.0 4.0 3 13 - 0.43984 0 2 tcp 1000 ------- 2 0.0 4.0 3 13 + 0.43984 0 2 tcp 1000 ------- 2 0.0 4.0 4 14 + 0.45 1 2 cbr 500 ------- 3 1.0 5.0 7 15 - 0.45 1 2 cbr 500 ------- 3 1.0 5.0 7 15 r 0.45584 2 0 ack 40 ------- 2 4.0 0.0 2 11 + 0.45584 0 2 tcp 1000 ------- 2 0.0 4.0 5 16 + 0.45584 0 2 tcp 1000 ------- 2 0.0 4.0 6 17 - 0.45584 0 2 tcp 1000 ------- 2 0.0 4.0 4 14 r 0.456 2 3 cbr 500 ------- 3 1.0 5.0 6 12 + 0.456 3 5 cbr 500 ------- 3 1.0 5.0 6 12 - 0.456 3 5 cbr 500 ------- 3 1.0 5.0 6 12 - 0.47184 0 2 tcp 1000 ------- 2 0.0 4.0 5 16 r 0.47584 0 2 tcp 1000 ------- 2 0.0 4.0 3 13 + 0.47584 2 3 tcp 1000 ------- 2 0.0 4.0 3 13 - 0.47584 2 3 tcp 1000 ------- 2 0.0 4.0 3 13 r 0.478 1 2 cbr 500 ------- 3 1.0 5.0 7 15 + 0.478 2 3 cbr 500 ------- 3 1.0 5.0 7 15 r 0.484 3 5 cbr 500 ------- 3 1.0 5.0 6 12 - 0.48784 0 2 tcp 1000 ------- 2 0.0 4.0 6 17 r 0.49184 0 2 tcp 1000 ------- 2 0.0 4.0 4 14 + 0.49184 2 3 tcp 1000 ------- 2 0.0 4.0 4 14 - 0.49184 2 3 cbr 500 ------- 3 1.0 5.0 7 15 - 0.49984 2 3 tcp 1000 ------- 2 0.0 4.0 4 14 + 0.5 1 2 cbr 500 ------- 3 1.0 5.0 8 18 - 0.5 1 2 cbr 500 ------- 3 1.0 5.0 8 18 r 0.50784 0 2 tcp 1000 ------- 2 0.0 4.0 5 16 + 0.50784 2 3 tcp 1000 ------- 2 0.0 4.0 5 16 r 0.51184 2 3 tcp 1000 ------- 2 0.0 4.0 3 13 + 0.51184 3 4 tcp 1000 ------- 2 0.0 4.0 3 13 - 0.51184 3 4 tcp 1000 ------- 2 0.0 4.0 3 13 - 0.51584 2 3 tcp 1000 ------- 2 0.0 4.0 5 16 r 0.51984 2 3 cbr 500 ------- 3 1.0 5.0 7 15 + 0.51984 3 5 cbr 500 ------- 3 1.0 5.0 7 15 - 0.51984 3 5 cbr 500 ------- 3 1.0 5.0 7 15 r 0.52384 0 2 tcp 1000 ------- 2 0.0 4.0 6 17 + 0.52384 2 3 tcp 1000 ------- 2 0.0 4.0 6 17 r 0.528 1 2 cbr 500 ------- 3 1.0 5.0 8 18 + 0.528 2 3 cbr 500 ------- 3 1.0 5.0 8 18 - 0.53184 2 3 tcp 1000 ------- 2 0.0 4.0 6 17 r 0.53584 2 3 tcp 1000 ------- 2 0.0 4.0 4 14 + 0.53584 3 4 tcp 1000 ------- 2 0.0 4.0 4 14 - 0.53584 3 4 tcp 1000 ------- 2 0.0 4.0 4 14 r 0.54784 3 4 tcp 1000 ------- 2 0.0 4.0 3 13 + 0.54784 4 3 ack 40 ------- 2 4.0 0.0 3 19 - 0.54784 4 3 ack 40 ------- 2 4.0 0.0 3 19 r 0.54784 3 5 cbr 500 ------- 3 1.0 5.0 7 15 - 0.54784 2 3 cbr 500 ------- 3 1.0 5.0 8 18 + 0.55 1 2 cbr 500 ------- 3 1.0 5.0 9 20 - 0.55 1 2 cbr 500 ------- 3 1.0 5.0 9 20 v 0.55000000000000004 eval {set sim_annotation {4 acks are coming}} r 0.55184 2 3 tcp 1000 ------- 2 0.0 4.0 5 16 + 0.55184 3 4 tcp 1000 ------- 2 0.0 4.0 5 16 - 0.55184 3 4 tcp 1000 ------- 2 0.0 4.0 5 16 r 0.56784 2 3 tcp 1000 ------- 2 0.0 4.0 6 17 + 0.56784 3 4 tcp 1000 ------- 2 0.0 4.0 6 17 - 0.56784 3 4 tcp 1000 ------- 2 0.0 4.0 6 17 r 0.56848 4 3 ack 40 ------- 2 4.0 0.0 3 19 + 0.56848 3 2 ack 40 ------- 2 4.0 0.0 3 19 - 0.56848 3 2 ack 40 ------- 2 4.0 0.0 3 19 r 0.57184 3 4 tcp 1000 ------- 2 0.0 4.0 4 14 + 0.57184 4 3 ack 40 ------- 2 4.0 0.0 4 21 - 0.57184 4 3 ack 40 ------- 2 4.0 0.0 4 21 r 0.57584 2 3 cbr 500 ------- 3 1.0 5.0 8 18 + 0.57584 3 5 cbr 500 ------- 3 1.0 5.0 8 18 - 0.57584 3 5 cbr 500 ------- 3 1.0 5.0 8 18 r 0.578 1 2 cbr 500 ------- 3 1.0 5.0 9 20 + 0.578 2 3 cbr 500 ------- 3 1.0 5.0 9 20 - 0.578 2 3 cbr 500 ------- 3 1.0 5.0 9 20 r 0.58784 3 4 tcp 1000 ------- 2 0.0 4.0 5 16 + 0.58784 4 3 ack 40 ------- 2 4.0 0.0 5 22 - 0.58784 4 3 ack 40 ------- 2 4.0 0.0 5 22 r 0.58912 3 2 ack 40 ------- 2 4.0 0.0 3 19 + 0.58912 2 0 ack 40 ------- 2 4.0 0.0 3 19 - 0.58912 2 0 ack 40 ------- 2 4.0 0.0 3 19 v 0.58999999999999997 eval {set sim_annotation {Increase window size to 8}} r 0.59248 4 3 ack 40 ------- 2 4.0 0.0 4 21 + 0.59248 3 2 ack 40 ------- 2 4.0 0.0 4 21 - 0.59248 3 2 ack 40 ------- 2 4.0 0.0 4 21 + 0.6 1 2 cbr 500 ------- 3 1.0 5.0 10 23 - 0.6 1 2 cbr 500 ------- 3 1.0 5.0 10 23 r 0.60384 3 4 tcp 1000 ------- 2 0.0 4.0 6 17 + 0.60384 4 3 ack 40 ------- 2 4.0 0.0 6 24 - 0.60384 4 3 ack 40 ------- 2 4.0 0.0 6 24 r 0.60384 3 5 cbr 500 ------- 3 1.0 5.0 8 18 r 0.606 2 3 cbr 500 ------- 3 1.0 5.0 9 20 + 0.606 3 5 cbr 500 ------- 3 1.0 5.0 9 20 - 0.606 3 5 cbr 500 ------- 3 1.0 5.0 9 20 r 0.60848 4 3 ack 40 ------- 2 4.0 0.0 5 22 + 0.60848 3 2 ack 40 ------- 2 4.0 0.0 5 22 - 0.60848 3 2 ack 40 ------- 2 4.0 0.0 5 22 r 0.60976 2 0 ack 40 ------- 2 4.0 0.0 3 19 + 0.60976 0 2 tcp 1000 ------- 2 0.0 4.0 7 25 - 0.60976 0 2 tcp 1000 ------- 2 0.0 4.0 7 25 + 0.60976 0 2 tcp 1000 ------- 2 0.0 4.0 8 26 r 0.61312 3 2 ack 40 ------- 2 4.0 0.0 4 21 + 0.61312 2 0 ack 40 ------- 2 4.0 0.0 4 21 - 0.61312 2 0 ack 40 ------- 2 4.0 0.0 4 21 r 0.62448 4 3 ack 40 ------- 2 4.0 0.0 6 24 + 0.62448 3 2 ack 40 ------- 2 4.0 0.0 6 24 - 0.62448 3 2 ack 40 ------- 2 4.0 0.0 6 24 - 0.62576 0 2 tcp 1000 ------- 2 0.0 4.0 8 26 r 0.628 1 2 cbr 500 ------- 3 1.0 5.0 10 23 + 0.628 2 3 cbr 500 ------- 3 1.0 5.0 10 23 - 0.628 2 3 cbr 500 ------- 3 1.0 5.0 10 23 r 0.62912 3 2 ack 40 ------- 2 4.0 0.0 5 22 + 0.62912 2 0 ack 40 ------- 2 4.0 0.0 5 22 - 0.62912 2 0 ack 40 ------- 2 4.0 0.0 5 22 r 0.63376 2 0 ack 40 ------- 2 4.0 0.0 4 21 + 0.63376 0 2 tcp 1000 ------- 2 0.0 4.0 9 27 + 0.63376 0 2 tcp 1000 ------- 2 0.0 4.0 10 28 r 0.634 3 5 cbr 500 ------- 3 1.0 5.0 9 20 - 0.64176 0 2 tcp 1000 ------- 2 0.0 4.0 9 27 r 0.64512 3 2 ack 40 ------- 2 4.0 0.0 6 24 + 0.64512 2 0 ack 40 ------- 2 4.0 0.0 6 24 - 0.64512 2 0 ack 40 ------- 2 4.0 0.0 6 24 r 0.64576 0 2 tcp 1000 ------- 2 0.0 4.0 7 25 + 0.64576 2 3 tcp 1000 ------- 2 0.0 4.0 7 25 - 0.64576 2 3 tcp 1000 ------- 2 0.0 4.0 7 25 r 0.64976 2 0 ack 40 ------- 2 4.0 0.0 5 22 + 0.64976 0 2 tcp 1000 ------- 2 0.0 4.0 11 29 + 0.64976 0 2 tcp 1000 ------- 2 0.0 4.0 12 30 + 0.65 1 2 cbr 500 ------- 3 1.0 5.0 11 31 - 0.65 1 2 cbr 500 ------- 3 1.0 5.0 11 31 r 0.656 2 3 cbr 500 ------- 3 1.0 5.0 10 23 + 0.656 3 5 cbr 500 ------- 3 1.0 5.0 10 23 - 0.656 3 5 cbr 500 ------- 3 1.0 5.0 10 23 - 0.65776 0 2 tcp 1000 ------- 2 0.0 4.0 10 28 r 0.66176 0 2 tcp 1000 ------- 2 0.0 4.0 8 26 + 0.66176 2 3 tcp 1000 ------- 2 0.0 4.0 8 26 - 0.66176 2 3 tcp 1000 ------- 2 0.0 4.0 8 26 r 0.66576 2 0 ack 40 ------- 2 4.0 0.0 6 24 + 0.66576 0 2 tcp 1000 ------- 2 0.0 4.0 13 32 + 0.66576 0 2 tcp 1000 ------- 2 0.0 4.0 14 33 - 0.67376 0 2 tcp 1000 ------- 2 0.0 4.0 11 29 r 0.67776 0 2 tcp 1000 ------- 2 0.0 4.0 9 27 + 0.67776 2 3 tcp 1000 ------- 2 0.0 4.0 9 27 - 0.67776 2 3 tcp 1000 ------- 2 0.0 4.0 9 27 r 0.678 1 2 cbr 500 ------- 3 1.0 5.0 11 31 + 0.678 2 3 cbr 500 ------- 3 1.0 5.0 11 31 r 0.68176 2 3 tcp 1000 ------- 2 0.0 4.0 7 25 + 0.68176 3 4 tcp 1000 ------- 2 0.0 4.0 7 25 - 0.68176 3 4 tcp 1000 ------- 2 0.0 4.0 7 25 r 0.684 3 5 cbr 500 ------- 3 1.0 5.0 10 23 - 0.68976 0 2 tcp 1000 ------- 2 0.0 4.0 12 30 r 0.69376 0 2 tcp 1000 ------- 2 0.0 4.0 10 28 + 0.69376 2 3 tcp 1000 ------- 2 0.0 4.0 10 28 - 0.69376 2 3 cbr 500 ------- 3 1.0 5.0 11 31 r 0.69776 2 3 tcp 1000 ------- 2 0.0 4.0 8 26 + 0.69776 3 4 tcp 1000 ------- 2 0.0 4.0 8 26 - 0.69776 3 4 tcp 1000 ------- 2 0.0 4.0 8 26 + 0.7 1 2 cbr 500 ------- 3 1.0 5.0 12 34 - 0.7 1 2 cbr 500 ------- 3 1.0 5.0 12 34 - 0.70176 2 3 tcp 1000 ------- 2 0.0 4.0 10 28 - 0.70576 0 2 tcp 1000 ------- 2 0.0 4.0 13 32 r 0.70976 0 2 tcp 1000 ------- 2 0.0 4.0 11 29 + 0.70976 2 3 tcp 1000 ------- 2 0.0 4.0 11 29 r 0.71376 2 3 tcp 1000 ------- 2 0.0 4.0 9 27 + 0.71376 3 4 tcp 1000 ------- 2 0.0 4.0 9 27 - 0.71376 3 4 tcp 1000 ------- 2 0.0 4.0 9 27 r 0.71776 3 4 tcp 1000 ------- 2 0.0 4.0 7 25 + 0.71776 4 3 ack 40 ------- 2 4.0 0.0 7 35 - 0.71776 4 3 ack 40 ------- 2 4.0 0.0 7 35 - 0.71776 2 3 tcp 1000 ------- 2 0.0 4.0 11 29 r 0.72176 2 3 cbr 500 ------- 3 1.0 5.0 11 31 + 0.72176 3 5 cbr 500 ------- 3 1.0 5.0 11 31 - 0.72176 3 5 cbr 500 ------- 3 1.0 5.0 11 31 - 0.72176 0 2 tcp 1000 ------- 2 0.0 4.0 14 33 r 0.72576 0 2 tcp 1000 ------- 2 0.0 4.0 12 30 + 0.72576 2 3 tcp 1000 ------- 2 0.0 4.0 12 30 r 0.728 1 2 cbr 500 ------- 3 1.0 5.0 12 34 + 0.728 2 3 cbr 500 ------- 3 1.0 5.0 12 34 r 0.73376 3 4 tcp 1000 ------- 2 0.0 4.0 8 26 + 0.73376 4 3 ack 40 ------- 2 4.0 0.0 8 36 - 0.73376 4 3 ack 40 ------- 2 4.0 0.0 8 36 - 0.73376 2 3 tcp 1000 ------- 2 0.0 4.0 12 30 r 0.73776 2 3 tcp 1000 ------- 2 0.0 4.0 10 28 + 0.73776 3 4 tcp 1000 ------- 2 0.0 4.0 10 28 - 0.73776 3 4 tcp 1000 ------- 2 0.0 4.0 10 28 r 0.7384 4 3 ack 40 ------- 2 4.0 0.0 7 35 + 0.7384 3 2 ack 40 ------- 2 4.0 0.0 7 35 - 0.7384 3 2 ack 40 ------- 2 4.0 0.0 7 35 r 0.74176 0 2 tcp 1000 ------- 2 0.0 4.0 13 32 + 0.74176 2 3 tcp 1000 ------- 2 0.0 4.0 13 32 r 0.74976 3 4 tcp 1000 ------- 2 0.0 4.0 9 27 + 0.74976 4 3 ack 40 ------- 2 4.0 0.0 9 37 - 0.74976 4 3 ack 40 ------- 2 4.0 0.0 9 37 r 0.74976 3 5 cbr 500 ------- 3 1.0 5.0 11 31 - 0.74976 2 3 cbr 500 ------- 3 1.0 5.0 12 34 v 0.75 eval {set sim_annotation {8 acks are coming}} + 0.75 1 2 cbr 500 ------- 3 1.0 5.0 13 38 - 0.75 1 2 cbr 500 ------- 3 1.0 5.0 13 38 r 0.75376 2 3 tcp 1000 ------- 2 0.0 4.0 11 29 + 0.75376 3 4 tcp 1000 ------- 2 0.0 4.0 11 29 - 0.75376 3 4 tcp 1000 ------- 2 0.0 4.0 11 29 r 0.7544 4 3 ack 40 ------- 2 4.0 0.0 8 36 + 0.7544 3 2 ack 40 ------- 2 4.0 0.0 8 36 - 0.7544 3 2 ack 40 ------- 2 4.0 0.0 8 36 r 0.75776 0 2 tcp 1000 ------- 2 0.0 4.0 14 33 + 0.75776 2 3 tcp 1000 ------- 2 0.0 4.0 14 33 - 0.75776 2 3 tcp 1000 ------- 2 0.0 4.0 13 32 r 0.75904 3 2 ack 40 ------- 2 4.0 0.0 7 35 + 0.75904 2 0 ack 40 ------- 2 4.0 0.0 7 35 - 0.75904 2 0 ack 40 ------- 2 4.0 0.0 7 35 r 0.76976 2 3 tcp 1000 ------- 2 0.0 4.0 12 30 + 0.76976 3 4 tcp 1000 ------- 2 0.0 4.0 12 30 - 0.76976 3 4 tcp 1000 ------- 2 0.0 4.0 12 30 v 0.77000000000000002 eval {set sim_annotation {Keep maximum cwnd size, 8}} r 0.7704 4 3 ack 40 ------- 2 4.0 0.0 9 37 + 0.7704 3 2 ack 40 ------- 2 4.0 0.0 9 37 - 0.7704 3 2 ack 40 ------- 2 4.0 0.0 9 37 r 0.77376 3 4 tcp 1000 ------- 2 0.0 4.0 10 28 + 0.77376 4 3 ack 40 ------- 2 4.0 0.0 10 39 - 0.77376 4 3 ack 40 ------- 2 4.0 0.0 10 39 - 0.77376 2 3 tcp 1000 ------- 2 0.0 4.0 14 33 r 0.77504 3 2 ack 40 ------- 2 4.0 0.0 8 36 + 0.77504 2 0 ack 40 ------- 2 4.0 0.0 8 36 - 0.77504 2 0 ack 40 ------- 2 4.0 0.0 8 36 r 0.77776 2 3 cbr 500 ------- 3 1.0 5.0 12 34 + 0.77776 3 5 cbr 500 ------- 3 1.0 5.0 12 34 - 0.77776 3 5 cbr 500 ------- 3 1.0 5.0 12 34 r 0.778 1 2 cbr 500 ------- 3 1.0 5.0 13 38 + 0.778 2 3 cbr 500 ------- 3 1.0 5.0 13 38 r 0.77968 2 0 ack 40 ------- 2 4.0 0.0 7 35 + 0.77968 0 2 tcp 1000 ------- 2 0.0 4.0 15 40 - 0.77968 0 2 tcp 1000 ------- 2 0.0 4.0 15 40 r 0.78976 3 4 tcp 1000 ------- 2 0.0 4.0 11 29 + 0.78976 4 3 ack 40 ------- 2 4.0 0.0 11 41 - 0.78976 4 3 ack 40 ------- 2 4.0 0.0 11 41 - 0.78976 2 3 cbr 500 ------- 3 1.0 5.0 13 38 r 0.79104 3 2 ack 40 ------- 2 4.0 0.0 9 37 + 0.79104 2 0 ack 40 ------- 2 4.0 0.0 9 37 - 0.79104 2 0 ack 40 ------- 2 4.0 0.0 9 37 r 0.79376 2 3 tcp 1000 ------- 2 0.0 4.0 13 32 + 0.79376 3 4 tcp 1000 ------- 2 0.0 4.0 13 32 - 0.79376 3 4 tcp 1000 ------- 2 0.0 4.0 13 32 r 0.7944 4 3 ack 40 ------- 2 4.0 0.0 10 39 + 0.7944 3 2 ack 40 ------- 2 4.0 0.0 10 39 - 0.7944 3 2 ack 40 ------- 2 4.0 0.0 10 39 r 0.79568 2 0 ack 40 ------- 2 4.0 0.0 8 36 + 0.79568 0 2 tcp 1000 ------- 2 0.0 4.0 16 42 - 0.79568 0 2 tcp 1000 ------- 2 0.0 4.0 16 42 + 0.8 1 2 cbr 500 ------- 3 1.0 5.0 14 43 - 0.8 1 2 cbr 500 ------- 3 1.0 5.0 14 43 r 0.80576 3 4 tcp 1000 ------- 2 0.0 4.0 12 30 + 0.80576 4 3 ack 40 ------- 2 4.0 0.0 12 44 - 0.80576 4 3 ack 40 ------- 2 4.0 0.0 12 44 r 0.80576 3 5 cbr 500 ------- 3 1.0 5.0 12 34 r 0.80976 2 3 tcp 1000 ------- 2 0.0 4.0 14 33 + 0.80976 3 4 tcp 1000 ------- 2 0.0 4.0 14 33 - 0.80976 3 4 tcp 1000 ------- 2 0.0 4.0 14 33 r 0.8104 4 3 ack 40 ------- 2 4.0 0.0 11 41 + 0.8104 3 2 ack 40 ------- 2 4.0 0.0 11 41 - 0.8104 3 2 ack 40 ------- 2 4.0 0.0 11 41 r 0.81168 2 0 ack 40 ------- 2 4.0 0.0 9 37 + 0.81168 0 2 tcp 1000 ------- 2 0.0 4.0 17 45 - 0.81168 0 2 tcp 1000 ------- 2 0.0 4.0 17 45 r 0.81504 3 2 ack 40 ------- 2 4.0 0.0 10 39 + 0.81504 2 0 ack 40 ------- 2 4.0 0.0 10 39 - 0.81504 2 0 ack 40 ------- 2 4.0 0.0 10 39 r 0.81568 0 2 tcp 1000 ------- 2 0.0 4.0 15 40 + 0.81568 2 3 tcp 1000 ------- 2 0.0 4.0 15 40 - 0.81568 2 3 tcp 1000 ------- 2 0.0 4.0 15 40 r 0.81776 2 3 cbr 500 ------- 3 1.0 5.0 13 38 + 0.81776 3 5 cbr 500 ------- 3 1.0 5.0 13 38 - 0.81776 3 5 cbr 500 ------- 3 1.0 5.0 13 38 r 0.8264 4 3 ack 40 ------- 2 4.0 0.0 12 44 + 0.8264 3 2 ack 40 ------- 2 4.0 0.0 12 44 - 0.8264 3 2 ack 40 ------- 2 4.0 0.0 12 44 r 0.828 1 2 cbr 500 ------- 3 1.0 5.0 14 43 + 0.828 2 3 cbr 500 ------- 3 1.0 5.0 14 43 r 0.82976 3 4 tcp 1000 ------- 2 0.0 4.0 13 32 + 0.82976 4 3 ack 40 ------- 2 4.0 0.0 13 46 - 0.82976 4 3 ack 40 ------- 2 4.0 0.0 13 46 r 0.83104 3 2 ack 40 ------- 2 4.0 0.0 11 41 + 0.83104 2 0 ack 40 ------- 2 4.0 0.0 11 41 - 0.83104 2 0 ack 40 ------- 2 4.0 0.0 11 41 r 0.83168 0 2 tcp 1000 ------- 2 0.0 4.0 16 42 + 0.83168 2 3 tcp 1000 ------- 2 0.0 4.0 16 42 - 0.83168 2 3 cbr 500 ------- 3 1.0 5.0 14 43 r 0.83568 2 0 ack 40 ------- 2 4.0 0.0 10 39 + 0.83568 0 2 tcp 1000 ------- 2 0.0 4.0 18 47 - 0.83568 0 2 tcp 1000 ------- 2 0.0 4.0 18 47 - 0.83968 2 3 tcp 1000 ------- 2 0.0 4.0 16 42 r 0.84576 3 4 tcp 1000 ------- 2 0.0 4.0 14 33 + 0.84576 4 3 ack 40 ------- 2 4.0 0.0 14 48 - 0.84576 4 3 ack 40 ------- 2 4.0 0.0 14 48 r 0.84576 3 5 cbr 500 ------- 3 1.0 5.0 13 38 r 0.84704 3 2 ack 40 ------- 2 4.0 0.0 12 44 + 0.84704 2 0 ack 40 ------- 2 4.0 0.0 12 44 - 0.84704 2 0 ack 40 ------- 2 4.0 0.0 12 44 r 0.84768 0 2 tcp 1000 ------- 2 0.0 4.0 17 45 + 0.84768 2 3 tcp 1000 ------- 2 0.0 4.0 17 45 + 0.85 1 2 cbr 500 ------- 3 1.0 5.0 15 49 - 0.85 1 2 cbr 500 ------- 3 1.0 5.0 15 49 r 0.8504 4 3 ack 40 ------- 2 4.0 0.0 13 46 + 0.8504 3 2 ack 40 ------- 2 4.0 0.0 13 46 - 0.8504 3 2 ack 40 ------- 2 4.0 0.0 13 46 r 0.85168 2 3 tcp 1000 ------- 2 0.0 4.0 15 40 + 0.85168 3 4 tcp 1000 ------- 2 0.0 4.0 15 40 - 0.85168 3 4 tcp 1000 ------- 2 0.0 4.0 15 40 r 0.85168 2 0 ack 40 ------- 2 4.0 0.0 11 41 + 0.85168 0 2 tcp 1000 ------- 2 0.0 4.0 19 50 - 0.85168 0 2 tcp 1000 ------- 2 0.0 4.0 19 50 - 0.85568 2 3 tcp 1000 ------- 2 0.0 4.0 17 45 r 0.85968 2 3 cbr 500 ------- 3 1.0 5.0 14 43 + 0.85968 3 5 cbr 500 ------- 3 1.0 5.0 14 43 - 0.85968 3 5 cbr 500 ------- 3 1.0 5.0 14 43 r 0.8664 4 3 ack 40 ------- 2 4.0 0.0 14 48 + 0.8664 3 2 ack 40 ------- 2 4.0 0.0 14 48 - 0.8664 3 2 ack 40 ------- 2 4.0 0.0 14 48 r 0.86768 2 0 ack 40 ------- 2 4.0 0.0 12 44 + 0.86768 0 2 tcp 1000 ------- 2 0.0 4.0 20 51 - 0.86768 0 2 tcp 1000 ------- 2 0.0 4.0 20 51 r 0.87104 3 2 ack 40 ------- 2 4.0 0.0 13 46 + 0.87104 2 0 ack 40 ------- 2 4.0 0.0 13 46 - 0.87104 2 0 ack 40 ------- 2 4.0 0.0 13 46 r 0.87168 0 2 tcp 1000 ------- 2 0.0 4.0 18 47 + 0.87168 2 3 tcp 1000 ------- 2 0.0 4.0 18 47 - 0.87168 2 3 tcp 1000 ------- 2 0.0 4.0 18 47 r 0.87568 2 3 tcp 1000 ------- 2 0.0 4.0 16 42 + 0.87568 3 4 tcp 1000 ------- 2 0.0 4.0 16 42 - 0.87568 3 4 tcp 1000 ------- 2 0.0 4.0 16 42 r 0.878 1 2 cbr 500 ------- 3 1.0 5.0 15 49 + 0.878 2 3 cbr 500 ------- 3 1.0 5.0 15 49 r 0.88704 3 2 ack 40 ------- 2 4.0 0.0 14 48 + 0.88704 2 0 ack 40 ------- 2 4.0 0.0 14 48 - 0.88704 2 0 ack 40 ------- 2 4.0 0.0 14 48 r 0.88768 3 4 tcp 1000 ------- 2 0.0 4.0 15 40 + 0.88768 4 3 ack 40 ------- 2 4.0 0.0 15 52 - 0.88768 4 3 ack 40 ------- 2 4.0 0.0 15 52 r 0.88768 0 2 tcp 1000 ------- 2 0.0 4.0 19 50 + 0.88768 2 3 tcp 1000 ------- 2 0.0 4.0 19 50 r 0.88768 3 5 cbr 500 ------- 3 1.0 5.0 14 43 - 0.88768 2 3 cbr 500 ------- 3 1.0 5.0 15 49 r 0.89168 2 3 tcp 1000 ------- 2 0.0 4.0 17 45 + 0.89168 3 4 tcp 1000 ------- 2 0.0 4.0 17 45 r 0.89168 2 0 ack 40 ------- 2 4.0 0.0 13 46 + 0.89168 0 2 tcp 1000 ------- 2 0.0 4.0 21 53 - 0.89168 0 2 tcp 1000 ------- 2 0.0 4.0 21 53 - 0.89168 3 4 tcp 1000 ------- 2 0.0 4.0 17 45 - 0.89568 2 3 tcp 1000 ------- 2 0.0 4.0 19 50 + 0.9 1 2 cbr 500 ------- 3 1.0 5.0 16 54 - 0.9 1 2 cbr 500 ------- 3 1.0 5.0 16 54 r 0.90368 0 2 tcp 1000 ------- 2 0.0 4.0 20 51 + 0.90368 2 3 tcp 1000 ------- 2 0.0 4.0 20 51 r 0.90768 2 3 tcp 1000 ------- 2 0.0 4.0 18 47 + 0.90768 3 4 tcp 1000 ------- 2 0.0 4.0 18 47 r 0.90768 2 0 ack 40 ------- 2 4.0 0.0 14 48 + 0.90768 0 2 tcp 1000 ------- 2 0.0 4.0 22 55 - 0.90768 0 2 tcp 1000 ------- 2 0.0 4.0 22 55 - 0.90768 3 4 tcp 1000 ------- 2 0.0 4.0 18 47 r 0.90832 4 3 ack 40 ------- 2 4.0 0.0 15 52 + 0.90832 3 2 ack 40 ------- 2 4.0 0.0 15 52 - 0.90832 3 2 ack 40 ------- 2 4.0 0.0 15 52 r 0.91168 3 4 tcp 1000 ------- 2 0.0 4.0 16 42 + 0.91168 4 3 ack 40 ------- 2 4.0 0.0 16 56 - 0.91168 4 3 ack 40 ------- 2 4.0 0.0 16 56 - 0.91168 2 3 tcp 1000 ------- 2 0.0 4.0 20 51 r 0.91568 2 3 cbr 500 ------- 3 1.0 5.0 15 49 + 0.91568 3 5 cbr 500 ------- 3 1.0 5.0 15 49 - 0.91568 3 5 cbr 500 ------- 3 1.0 5.0 15 49 r 0.92768 0 2 tcp 1000 ------- 2 0.0 4.0 21 53 + 0.92768 2 3 tcp 1000 ------- 2 0.0 4.0 21 53 r 0.92768 3 4 tcp 1000 ------- 2 0.0 4.0 17 45 + 0.92768 4 3 ack 40 ------- 2 4.0 0.0 17 57 - 0.92768 4 3 ack 40 ------- 2 4.0 0.0 17 57 - 0.92768 2 3 tcp 1000 ------- 2 0.0 4.0 21 53 r 0.928 1 2 cbr 500 ------- 3 1.0 5.0 16 54 + 0.928 2 3 cbr 500 ------- 3 1.0 5.0 16 54 r 0.92896 3 2 ack 40 ------- 2 4.0 0.0 15 52 + 0.92896 2 0 ack 40 ------- 2 4.0 0.0 15 52 - 0.92896 2 0 ack 40 ------- 2 4.0 0.0 15 52 r 0.93168 2 3 tcp 1000 ------- 2 0.0 4.0 19 50 + 0.93168 3 4 tcp 1000 ------- 2 0.0 4.0 19 50 - 0.93168 3 4 tcp 1000 ------- 2 0.0 4.0 19 50 r 0.93232 4 3 ack 40 ------- 2 4.0 0.0 16 56 + 0.93232 3 2 ack 40 ------- 2 4.0 0.0 16 56 - 0.93232 3 2 ack 40 ------- 2 4.0 0.0 16 56 r 0.94368 0 2 tcp 1000 ------- 2 0.0 4.0 22 55 + 0.94368 2 3 tcp 1000 ------- 2 0.0 4.0 22 55 r 0.94368 3 4 tcp 1000 ------- 2 0.0 4.0 18 47 + 0.94368 4 3 ack 40 ------- 2 4.0 0.0 18 58 - 0.94368 4 3 ack 40 ------- 2 4.0 0.0 18 58 r 0.94368 3 5 cbr 500 ------- 3 1.0 5.0 15 49 - 0.94368 2 3 cbr 500 ------- 3 1.0 5.0 16 54 r 0.94768 2 3 tcp 1000 ------- 2 0.0 4.0 20 51 + 0.94768 3 4 tcp 1000 ------- 2 0.0 4.0 20 51 - 0.94768 3 4 tcp 1000 ------- 2 0.0 4.0 20 51 r 0.94832 4 3 ack 40 ------- 2 4.0 0.0 17 57 + 0.94832 3 2 ack 40 ------- 2 4.0 0.0 17 57 - 0.94832 3 2 ack 40 ------- 2 4.0 0.0 17 57 r 0.9496 2 0 ack 40 ------- 2 4.0 0.0 15 52 + 0.9496 0 2 tcp 1000 ------- 2 0.0 4.0 23 59 - 0.9496 0 2 tcp 1000 ------- 2 0.0 4.0 23 59 + 0.95 1 2 cbr 500 ------- 3 1.0 5.0 17 60 - 0.95 1 2 cbr 500 ------- 3 1.0 5.0 17 60 - 0.95168 2 3 tcp 1000 ------- 2 0.0 4.0 22 55 r 0.95296 3 2 ack 40 ------- 2 4.0 0.0 16 56 + 0.95296 2 0 ack 40 ------- 2 4.0 0.0 16 56 - 0.95296 2 0 ack 40 ------- 2 4.0 0.0 16 56 r 0.96368 2 3 tcp 1000 ------- 2 0.0 4.0 21 53 + 0.96368 3 4 tcp 1000 ------- 2 0.0 4.0 21 53 - 0.96368 3 4 tcp 1000 ------- 2 0.0 4.0 21 53 r 0.96432 4 3 ack 40 ------- 2 4.0 0.0 18 58 + 0.96432 3 2 ack 40 ------- 2 4.0 0.0 18 58 - 0.96432 3 2 ack 40 ------- 2 4.0 0.0 18 58 r 0.96768 3 4 tcp 1000 ------- 2 0.0 4.0 19 50 + 0.96768 4 3 ack 40 ------- 2 4.0 0.0 19 61 - 0.96768 4 3 ack 40 ------- 2 4.0 0.0 19 61 r 0.96896 3 2 ack 40 ------- 2 4.0 0.0 17 57 + 0.96896 2 0 ack 40 ------- 2 4.0 0.0 17 57 - 0.96896 2 0 ack 40 ------- 2 4.0 0.0 17 57 r 0.97168 2 3 cbr 500 ------- 3 1.0 5.0 16 54 + 0.97168 3 5 cbr 500 ------- 3 1.0 5.0 16 54 - 0.97168 3 5 cbr 500 ------- 3 1.0 5.0 16 54 r 0.9736 2 0 ack 40 ------- 2 4.0 0.0 16 56 + 0.9736 0 2 tcp 1000 ------- 2 0.0 4.0 24 62 - 0.9736 0 2 tcp 1000 ------- 2 0.0 4.0 24 62 r 0.978 1 2 cbr 500 ------- 3 1.0 5.0 17 60 + 0.978 2 3 cbr 500 ------- 3 1.0 5.0 17 60 - 0.978 2 3 cbr 500 ------- 3 1.0 5.0 17 60 r 0.98368 3 4 tcp 1000 ------- 2 0.0 4.0 20 51 + 0.98368 4 3 ack 40 ------- 2 4.0 0.0 20 63 - 0.98368 4 3 ack 40 ------- 2 4.0 0.0 20 63 r 0.98496 3 2 ack 40 ------- 2 4.0 0.0 18 58 + 0.98496 2 0 ack 40 ------- 2 4.0 0.0 18 58 - 0.98496 2 0 ack 40 ------- 2 4.0 0.0 18 58 r 0.9856 0 2 tcp 1000 ------- 2 0.0 4.0 23 59 + 0.9856 2 3 tcp 1000 ------- 2 0.0 4.0 23 59 - 0.986 2 3 tcp 1000 ------- 2 0.0 4.0 23 59 r 0.98768 2 3 tcp 1000 ------- 2 0.0 4.0 22 55 + 0.98768 3 4 tcp 1000 ------- 2 0.0 4.0 22 55 - 0.98768 3 4 tcp 1000 ------- 2 0.0 4.0 22 55 r 0.98832 4 3 ack 40 ------- 2 4.0 0.0 19 61 + 0.98832 3 2 ack 40 ------- 2 4.0 0.0 19 61 - 0.98832 3 2 ack 40 ------- 2 4.0 0.0 19 61 r 0.9896 2 0 ack 40 ------- 2 4.0 0.0 17 57 + 0.9896 0 2 tcp 1000 ------- 2 0.0 4.0 25 64 - 0.9896 0 2 tcp 1000 ------- 2 0.0 4.0 25 64 r 0.99968 3 4 tcp 1000 ------- 2 0.0 4.0 21 53 + 0.99968 4 3 ack 40 ------- 2 4.0 0.0 21 65 - 0.99968 4 3 ack 40 ------- 2 4.0 0.0 21 65 r 0.99968 3 5 cbr 500 ------- 3 1.0 5.0 16 54 + 1 1 2 cbr 500 ------- 3 1.0 5.0 18 66 - 1 1 2 cbr 500 ------- 3 1.0 5.0 18 66 r 1.00432 4 3 ack 40 ------- 2 4.0 0.0 20 63 + 1.00432 3 2 ack 40 ------- 2 4.0 0.0 20 63 - 1.00432 3 2 ack 40 ------- 2 4.0 0.0 20 63 r 1.0056 2 0 ack 40 ------- 2 4.0 0.0 18 58 + 1.0056 0 2 tcp 1000 ------- 2 0.0 4.0 26 67 - 1.0056 0 2 tcp 1000 ------- 2 0.0 4.0 26 67 r 1.006 2 3 cbr 500 ------- 3 1.0 5.0 17 60 + 1.006 3 5 cbr 500 ------- 3 1.0 5.0 17 60 - 1.006 3 5 cbr 500 ------- 3 1.0 5.0 17 60 r 1.00896 3 2 ack 40 ------- 2 4.0 0.0 19 61 + 1.00896 2 0 ack 40 ------- 2 4.0 0.0 19 61 - 1.00896 2 0 ack 40 ------- 2 4.0 0.0 19 61 r 1.0096 0 2 tcp 1000 ------- 2 0.0 4.0 24 62 + 1.0096 2 3 tcp 1000 ------- 2 0.0 4.0 24 62 - 1.0096 2 3 tcp 1000 ------- 2 0.0 4.0 24 62 r 1.02032 4 3 ack 40 ------- 2 4.0 0.0 21 65 + 1.02032 3 2 ack 40 ------- 2 4.0 0.0 21 65 - 1.02032 3 2 ack 40 ------- 2 4.0 0.0 21 65 r 1.022 2 3 tcp 1000 ------- 2 0.0 4.0 23 59 + 1.022 3 4 tcp 1000 ------- 2 0.0 4.0 23 59 - 1.022 3 4 tcp 1000 ------- 2 0.0 4.0 23 59 r 1.02368 3 4 tcp 1000 ------- 2 0.0 4.0 22 55 + 1.02368 4 3 ack 40 ------- 2 4.0 0.0 22 68 - 1.02368 4 3 ack 40 ------- 2 4.0 0.0 22 68 r 1.02496 3 2 ack 40 ------- 2 4.0 0.0 20 63 + 1.02496 2 0 ack 40 ------- 2 4.0 0.0 20 63 - 1.02496 2 0 ack 40 ------- 2 4.0 0.0 20 63 r 1.0256 0 2 tcp 1000 ------- 2 0.0 4.0 25 64 + 1.0256 2 3 tcp 1000 ------- 2 0.0 4.0 25 64 - 1.0256 2 3 tcp 1000 ------- 2 0.0 4.0 25 64 r 1.028 1 2 cbr 500 ------- 3 1.0 5.0 18 66 + 1.028 2 3 cbr 500 ------- 3 1.0 5.0 18 66 r 1.0296 2 0 ack 40 ------- 2 4.0 0.0 19 61 + 1.0296 0 2 tcp 1000 ------- 2 0.0 4.0 27 69 - 1.0296 0 2 tcp 1000 ------- 2 0.0 4.0 27 69 r 1.034 3 5 cbr 500 ------- 3 1.0 5.0 17 60 r 1.04096 3 2 ack 40 ------- 2 4.0 0.0 21 65 + 1.04096 2 0 ack 40 ------- 2 4.0 0.0 21 65 - 1.04096 2 0 ack 40 ------- 2 4.0 0.0 21 65 r 1.0416 0 2 tcp 1000 ------- 2 0.0 4.0 26 67 + 1.0416 2 3 tcp 1000 ------- 2 0.0 4.0 26 67 - 1.0416 2 3 cbr 500 ------- 3 1.0 5.0 18 66 r 1.04432 4 3 ack 40 ------- 2 4.0 0.0 22 68 + 1.04432 3 2 ack 40 ------- 2 4.0 0.0 22 68 - 1.04432 3 2 ack 40 ------- 2 4.0 0.0 22 68 r 1.0456 2 3 tcp 1000 ------- 2 0.0 4.0 24 62 + 1.0456 3 4 tcp 1000 ------- 2 0.0 4.0 24 62 - 1.0456 3 4 tcp 1000 ------- 2 0.0 4.0 24 62 r 1.0456 2 0 ack 40 ------- 2 4.0 0.0 20 63 + 1.0456 0 2 tcp 1000 ------- 2 0.0 4.0 28 70 - 1.0456 0 2 tcp 1000 ------- 2 0.0 4.0 28 70 - 1.0496 2 3 tcp 1000 ------- 2 0.0 4.0 26 67 + 1.05 1 2 cbr 500 ------- 3 1.0 5.0 19 71 - 1.05 1 2 cbr 500 ------- 3 1.0 5.0 19 71 r 1.058 3 4 tcp 1000 ------- 2 0.0 4.0 23 59 + 1.058 4 3 ack 40 ------- 2 4.0 0.0 23 72 - 1.058 4 3 ack 40 ------- 2 4.0 0.0 23 72 r 1.0616 2 3 tcp 1000 ------- 2 0.0 4.0 25 64 + 1.0616 3 4 tcp 1000 ------- 2 0.0 4.0 25 64 r 1.0616 2 0 ack 40 ------- 2 4.0 0.0 21 65 + 1.0616 0 2 tcp 1000 ------- 2 0.0 4.0 29 73 - 1.0616 3 4 tcp 1000 ------- 2 0.0 4.0 25 64 - 1.0616 0 2 tcp 1000 ------- 2 0.0 4.0 29 73 r 1.06496 3 2 ack 40 ------- 2 4.0 0.0 22 68 + 1.06496 2 0 ack 40 ------- 2 4.0 0.0 22 68 - 1.06496 2 0 ack 40 ------- 2 4.0 0.0 22 68 r 1.0656 0 2 tcp 1000 ------- 2 0.0 4.0 27 69 + 1.0656 2 3 tcp 1000 ------- 2 0.0 4.0 27 69 - 1.0656 2 3 tcp 1000 ------- 2 0.0 4.0 27 69 r 1.0696 2 3 cbr 500 ------- 3 1.0 5.0 18 66 + 1.0696 3 5 cbr 500 ------- 3 1.0 5.0 18 66 - 1.0696 3 5 cbr 500 ------- 3 1.0 5.0 18 66 r 1.078 1 2 cbr 500 ------- 3 1.0 5.0 19 71 + 1.078 2 3 cbr 500 ------- 3 1.0 5.0 19 71 r 1.07864 4 3 ack 40 ------- 2 4.0 0.0 23 72 + 1.07864 3 2 ack 40 ------- 2 4.0 0.0 23 72 - 1.07864 3 2 ack 40 ------- 2 4.0 0.0 23 72 r 1.0816 3 4 tcp 1000 ------- 2 0.0 4.0 24 62 + 1.0816 4 3 ack 40 ------- 2 4.0 0.0 24 74 - 1.0816 4 3 ack 40 ------- 2 4.0 0.0 24 74 r 1.0816 0 2 tcp 1000 ------- 2 0.0 4.0 28 70 + 1.0816 2 3 tcp 1000 ------- 2 0.0 4.0 28 70 - 1.0816 2 3 cbr 500 ------- 3 1.0 5.0 19 71 r 1.0856 2 3 tcp 1000 ------- 2 0.0 4.0 26 67 + 1.0856 3 4 tcp 1000 ------- 2 0.0 4.0 26 67 - 1.0856 3 4 tcp 1000 ------- 2 0.0 4.0 26 67 r 1.0856 2 0 ack 40 ------- 2 4.0 0.0 22 68 + 1.0856 0 2 tcp 1000 ------- 2 0.0 4.0 30 75 - 1.0856 0 2 tcp 1000 ------- 2 0.0 4.0 30 75 - 1.0896 2 3 tcp 1000 ------- 2 0.0 4.0 28 70 r 1.0976 3 4 tcp 1000 ------- 2 0.0 4.0 25 64 + 1.0976 4 3 ack 40 ------- 2 4.0 0.0 25 76 - 1.0976 4 3 ack 40 ------- 2 4.0 0.0 25 76 r 1.0976 0 2 tcp 1000 ------- 2 0.0 4.0 29 73 + 1.0976 2 3 tcp 1000 ------- 2 0.0 4.0 29 73 r 1.0976 3 5 cbr 500 ------- 3 1.0 5.0 18 66 r 1.09928 3 2 ack 40 ------- 2 4.0 0.0 23 72 + 1.09928 2 0 ack 40 ------- 2 4.0 0.0 23 72 - 1.09928 2 0 ack 40 ------- 2 4.0 0.0 23 72 v 1.1000000000000001 eval {set sim_annotation {FTP stops at 1.1}} v 1.1000000000000001 eval {set sim_annotation {CBR stops at 1.1}} r 1.1016 2 3 tcp 1000 ------- 2 0.0 4.0 27 69 + 1.1016 3 4 tcp 1000 ------- 2 0.0 4.0 27 69 - 1.1016 3 4 tcp 1000 ------- 2 0.0 4.0 27 69 r 1.10224 4 3 ack 40 ------- 2 4.0 0.0 24 74 + 1.10224 3 2 ack 40 ------- 2 4.0 0.0 24 74 - 1.10224 3 2 ack 40 ------- 2 4.0 0.0 24 74 - 1.1056 2 3 tcp 1000 ------- 2 0.0 4.0 29 73 r 1.1096 2 3 cbr 500 ------- 3 1.0 5.0 19 71 + 1.1096 3 5 cbr 500 ------- 3 1.0 5.0 19 71 - 1.1096 3 5 cbr 500 ------- 3 1.0 5.0 19 71 r 1.11824 4 3 ack 40 ------- 2 4.0 0.0 25 76 + 1.11824 3 2 ack 40 ------- 2 4.0 0.0 25 76 - 1.11824 3 2 ack 40 ------- 2 4.0 0.0 25 76 r 1.11992 2 0 ack 40 ------- 2 4.0 0.0 23 72 r 1.1216 3 4 tcp 1000 ------- 2 0.0 4.0 26 67 + 1.1216 4 3 ack 40 ------- 2 4.0 0.0 26 77 - 1.1216 4 3 ack 40 ------- 2 4.0 0.0 26 77 r 1.1216 0 2 tcp 1000 ------- 2 0.0 4.0 30 75 + 1.1216 2 3 tcp 1000 ------- 2 0.0 4.0 30 75 - 1.1216 2 3 tcp 1000 ------- 2 0.0 4.0 30 75 r 1.12288 3 2 ack 40 ------- 2 4.0 0.0 24 74 + 1.12288 2 0 ack 40 ------- 2 4.0 0.0 24 74 - 1.12288 2 0 ack 40 ------- 2 4.0 0.0 24 74 r 1.1256 2 3 tcp 1000 ------- 2 0.0 4.0 28 70 + 1.1256 3 4 tcp 1000 ------- 2 0.0 4.0 28 70 - 1.1256 3 4 tcp 1000 ------- 2 0.0 4.0 28 70 r 1.1376 3 4 tcp 1000 ------- 2 0.0 4.0 27 69 + 1.1376 4 3 ack 40 ------- 2 4.0 0.0 27 78 - 1.1376 4 3 ack 40 ------- 2 4.0 0.0 27 78 r 1.1376 3 5 cbr 500 ------- 3 1.0 5.0 19 71 r 1.13888 3 2 ack 40 ------- 2 4.0 0.0 25 76 + 1.13888 2 0 ack 40 ------- 2 4.0 0.0 25 76 - 1.13888 2 0 ack 40 ------- 2 4.0 0.0 25 76 r 1.1416 2 3 tcp 1000 ------- 2 0.0 4.0 29 73 + 1.1416 3 4 tcp 1000 ------- 2 0.0 4.0 29 73 - 1.1416 3 4 tcp 1000 ------- 2 0.0 4.0 29 73 r 1.14224 4 3 ack 40 ------- 2 4.0 0.0 26 77 + 1.14224 3 2 ack 40 ------- 2 4.0 0.0 26 77 - 1.14224 3 2 ack 40 ------- 2 4.0 0.0 26 77 r 1.14352 2 0 ack 40 ------- 2 4.0 0.0 24 74 r 1.1576 2 3 tcp 1000 ------- 2 0.0 4.0 30 75 + 1.1576 3 4 tcp 1000 ------- 2 0.0 4.0 30 75 - 1.1576 3 4 tcp 1000 ------- 2 0.0 4.0 30 75 r 1.15824 4 3 ack 40 ------- 2 4.0 0.0 27 78 + 1.15824 3 2 ack 40 ------- 2 4.0 0.0 27 78 - 1.15824 3 2 ack 40 ------- 2 4.0 0.0 27 78 r 1.15952 2 0 ack 40 ------- 2 4.0 0.0 25 76 r 1.1616 3 4 tcp 1000 ------- 2 0.0 4.0 28 70 + 1.1616 4 3 ack 40 ------- 2 4.0 0.0 28 79 - 1.1616 4 3 ack 40 ------- 2 4.0 0.0 28 79 r 1.16288 3 2 ack 40 ------- 2 4.0 0.0 26 77 + 1.16288 2 0 ack 40 ------- 2 4.0 0.0 26 77 - 1.16288 2 0 ack 40 ------- 2 4.0 0.0 26 77 r 1.1776 3 4 tcp 1000 ------- 2 0.0 4.0 29 73 + 1.1776 4 3 ack 40 ------- 2 4.0 0.0 29 80 - 1.1776 4 3 ack 40 ------- 2 4.0 0.0 29 80 r 1.17888 3 2 ack 40 ------- 2 4.0 0.0 27 78 + 1.17888 2 0 ack 40 ------- 2 4.0 0.0 27 78 - 1.17888 2 0 ack 40 ------- 2 4.0 0.0 27 78 r 1.18224 4 3 ack 40 ------- 2 4.0 0.0 28 79 + 1.18224 3 2 ack 40 ------- 2 4.0 0.0 28 79 - 1.18224 3 2 ack 40 ------- 2 4.0 0.0 28 79 r 1.18352 2 0 ack 40 ------- 2 4.0 0.0 26 77 r 1.1936 3 4 tcp 1000 ------- 2 0.0 4.0 30 75 + 1.1936 4 3 ack 40 ------- 2 4.0 0.0 30 81 - 1.1936 4 3 ack 40 ------- 2 4.0 0.0 30 81 r 1.19824 4 3 ack 40 ------- 2 4.0 0.0 29 80 + 1.19824 3 2 ack 40 ------- 2 4.0 0.0 29 80 - 1.19824 3 2 ack 40 ------- 2 4.0 0.0 29 80 r 1.19952 2 0 ack 40 ------- 2 4.0 0.0 27 78 r 1.20288 3 2 ack 40 ------- 2 4.0 0.0 28 79 + 1.20288 2 0 ack 40 ------- 2 4.0 0.0 28 79 - 1.20288 2 0 ack 40 ------- 2 4.0 0.0 28 79 r 1.21424 4 3 ack 40 ------- 2 4.0 0.0 30 81 + 1.21424 3 2 ack 40 ------- 2 4.0 0.0 30 81 - 1.21424 3 2 ack 40 ------- 2 4.0 0.0 30 81 r 1.21888 3 2 ack 40 ------- 2 4.0 0.0 29 80 + 1.21888 2 0 ack 40 ------- 2 4.0 0.0 29 80 - 1.21888 2 0 ack 40 ------- 2 4.0 0.0 29 80 r 1.22352 2 0 ack 40 ------- 2 4.0 0.0 28 79 r 1.23488 3 2 ack 40 ------- 2 4.0 0.0 30 81 + 1.23488 2 0 ack 40 ------- 2 4.0 0.0 30 81 - 1.23488 2 0 ack 40 ------- 2 4.0 0.0 30 81 r 1.23952 2 0 ack 40 ------- 2 4.0 0.0 29 80 r 1.25552 2 0 ack 40 ------- 2 4.0 0.0 30 81 nam-1.15/edu/B6-slow-start-loss.nam0000664000076400007660000145671406751716024015742 0ustar tomhnsnamV -t * -v 1.0a5 -a 1 -c 1 -F 2 -M 3 c -t * -i 0 -n black c -t * -i 1 -n red N -t * -S 0 -n {TCP session between node 0.0 and node 4.0} -p TCP -m {} N -t * -S 0 -h 17 N -t * -F 0 -M 0 -n tcp N -t * -F 1 -M 2 -n tcp_cong N -t * -F 0 -M 1 -n ack A -t * -n 1 -p 0 -o 255 -c 15 -a 1 A -t * -h 1 -m 127 -s 8 n -t * -a 4 -s 4 -S UP -v circle -c black n -t * -a 0 -s 0 -S UP -v circle -c black n -t * -a 5 -s 5 -S UP -v circle -c red n -t * -a 1 -s 1 -S UP -v circle -c red n -t * -a 2 -s 2 -S UP -v rectangular -c blue n -t * -a 3 -s 3 -S UP -v rectangular -c blue l -t * -s 0 -d 2 -S UP -r 500000 -D 0.050000000000000003 -c black -o right-down l -t * -s 1 -d 2 -S UP -r 500000 -D 0.050000000000000003 -c black -o right-up l -t * -s 2 -d 3 -S UP -r 500000 -D 0.050000000000000003 -c black -o right l -t * -s 3 -d 4 -S UP -r 500000 -D 0.050000000000000003 -c black -o right-up l -t * -s 3 -d 5 -S UP -r 500000 -D 0.050000000000000003 -c black -o right-down q -t * -s 3 -d 2 -a 0.5 q -t * -s 2 -d 3 -a 0.5 a -t 0.00000000000000000 -s 0 -d 4 -n tcp f -t 0.00000000000000000 -s 0 -d 4 -n cwnd_ -a tcp -v 1.000000 -T v v -t 0.00000000000000000 monitor_agent 0 tcp n -t 0 -s 0 -S DLABEL -l TCP-Sender -L "" n -t 0 -s 1 -S DLABEL -l CBR-Sender -L "" n -t 0 -s 4 -S DLABEL -l TCP-Receiver -L "" n -t 0 -s 5 -S DLABEL -l CBR-Receiver -L "" v -t 0 sim_annotation 0 1 Slow Start with Selective Repeat + -t 0.1 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -f 0 -m 0 -y {0 0} - -t 0.1 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} h -t 0.1 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {-1 -1} + -t 0.1 -s 1 -d 2 -p cbr -e 210 -c 1 -i 1 -a 1 - -t 0.1 -s 1 -d 2 -p cbr -e 210 -c 1 -i 1 -a 1 h -t 0.1 -s 1 -d 2 -p cbr -e 210 -c 1 -i 1 -a 1 v -t 0.10000000000000001 sim_annotation 0.10000000000000001 2 FTP starts at 0.1 v -t 0.10000000000000001 sim_annotation 0.10000000000000001 3 CBR starts at 0.1 + -t 0.10375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 2 -a 1 - -t 0.10375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 2 -a 1 h -t 0.10375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 2 -a 1 + -t 0.1075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 3 -a 1 - -t 0.1075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 3 -a 1 h -t 0.1075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 3 -a 1 v -t 0.11 sim_annotation 0.11 4 Send Packet_0 : Initial window size is 1 + -t 0.11125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 4 -a 1 - -t 0.11125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 4 -a 1 h -t 0.11125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 4 -a 1 + -t 0.115 -s 1 -d 2 -p cbr -e 210 -c 1 -i 5 -a 1 - -t 0.115 -s 1 -d 2 -p cbr -e 210 -c 1 -i 5 -a 1 h -t 0.115 -s 1 -d 2 -p cbr -e 210 -c 1 -i 5 -a 1 + -t 0.11875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 6 -a 1 - -t 0.11875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 6 -a 1 h -t 0.11875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 6 -a 1 + -t 0.1225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 7 -a 1 - -t 0.1225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 7 -a 1 h -t 0.1225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 7 -a 1 + -t 0.12625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 8 -a 1 - -t 0.12625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 8 -a 1 h -t 0.12625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 8 -a 1 + -t 0.13 -s 1 -d 2 -p cbr -e 210 -c 1 -i 9 -a 1 - -t 0.13 -s 1 -d 2 -p cbr -e 210 -c 1 -i 9 -a 1 h -t 0.13 -s 1 -d 2 -p cbr -e 210 -c 1 -i 9 -a 1 + -t 0.13375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 10 -a 1 - -t 0.13375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 10 -a 1 h -t 0.13375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 10 -a 1 + -t 0.1375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 11 -a 1 - -t 0.1375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 11 -a 1 h -t 0.1375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 11 -a 1 + -t 0.14125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 12 -a 1 - -t 0.14125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 12 -a 1 h -t 0.14125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 12 -a 1 + -t 0.145 -s 1 -d 2 -p cbr -e 210 -c 1 -i 13 -a 1 - -t 0.145 -s 1 -d 2 -p cbr -e 210 -c 1 -i 13 -a 1 h -t 0.145 -s 1 -d 2 -p cbr -e 210 -c 1 -i 13 -a 1 + -t 0.14875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 14 -a 1 - -t 0.14875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 14 -a 1 h -t 0.14875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 14 -a 1 + -t 0.1525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 15 -a 1 - -t 0.1525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 15 -a 1 h -t 0.1525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 15 -a 1 r -t 0.15336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 1 -a 1 + -t 0.15336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 1 -a 1 - -t 0.15336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 1 -a 1 h -t 0.15336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 1 -a 1 + -t 0.15625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 16 -a 1 - -t 0.15625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 16 -a 1 h -t 0.15625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 16 -a 1 r -t 0.15711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 2 -a 1 + -t 0.15711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 2 -a 1 - -t 0.15711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 2 -a 1 h -t 0.15711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 2 -a 1 + -t 0.16 -s 1 -d 2 -p cbr -e 210 -c 1 -i 17 -a 1 - -t 0.16 -s 1 -d 2 -p cbr -e 210 -c 1 -i 17 -a 1 h -t 0.16 -s 1 -d 2 -p cbr -e 210 -c 1 -i 17 -a 1 r -t 0.16086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 3 -a 1 + -t 0.16086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 3 -a 1 - -t 0.16086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 3 -a 1 h -t 0.16086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 3 -a 1 + -t 0.16375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 18 -a 1 - -t 0.16375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 18 -a 1 h -t 0.16375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 18 -a 1 r -t 0.16461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 4 -a 1 + -t 0.16461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 4 -a 1 - -t 0.16461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 4 -a 1 h -t 0.16461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 4 -a 1 r -t 0.166 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} + -t 0.166 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} + -t 0.1675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 19 -a 1 - -t 0.1675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 19 -a 1 h -t 0.1675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 19 -a 1 - -t 0.16797 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} h -t 0.16797 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {-1 -1} r -t 0.16836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 5 -a 1 + -t 0.16836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 5 -a 1 + -t 0.17125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 20 -a 1 - -t 0.17125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 20 -a 1 h -t 0.17125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 20 -a 1 r -t 0.17211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 6 -a 1 + -t 0.17211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 6 -a 1 + -t 0.175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 21 -a 1 - -t 0.175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 21 -a 1 h -t 0.175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 21 -a 1 r -t 0.17586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 7 -a 1 + -t 0.17586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 7 -a 1 + -t 0.17875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 22 -a 1 - -t 0.17875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 22 -a 1 h -t 0.17875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 22 -a 1 r -t 0.17961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 8 -a 1 + -t 0.17961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 8 -a 1 + -t 0.1825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 23 -a 1 - -t 0.1825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 23 -a 1 h -t 0.1825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 23 -a 1 r -t 0.18336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 9 -a 1 + -t 0.18336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 9 -a 1 - -t 0.18397 -s 2 -d 3 -p cbr -e 210 -c 1 -i 5 -a 1 h -t 0.18397 -s 2 -d 3 -p cbr -e 210 -c 1 -i 5 -a 1 + -t 0.18625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 24 -a 1 - -t 0.18625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 24 -a 1 h -t 0.18625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 24 -a 1 r -t 0.18711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 10 -a 1 + -t 0.18711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 10 -a 1 - -t 0.18733 -s 2 -d 3 -p cbr -e 210 -c 1 -i 6 -a 1 h -t 0.18733 -s 2 -d 3 -p cbr -e 210 -c 1 -i 6 -a 1 + -t 0.19 -s 1 -d 2 -p cbr -e 210 -c 1 -i 25 -a 1 - -t 0.19 -s 1 -d 2 -p cbr -e 210 -c 1 -i 25 -a 1 h -t 0.19 -s 1 -d 2 -p cbr -e 210 -c 1 -i 25 -a 1 - -t 0.19069 -s 2 -d 3 -p cbr -e 210 -c 1 -i 7 -a 1 h -t 0.19069 -s 2 -d 3 -p cbr -e 210 -c 1 -i 7 -a 1 r -t 0.19086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 11 -a 1 + -t 0.19086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 11 -a 1 + -t 0.19375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 26 -a 1 - -t 0.19375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 26 -a 1 h -t 0.19375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 26 -a 1 - -t 0.19405 -s 2 -d 3 -p cbr -e 210 -c 1 -i 8 -a 1 h -t 0.19405 -s 2 -d 3 -p cbr -e 210 -c 1 -i 8 -a 1 r -t 0.19461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 12 -a 1 + -t 0.19461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 12 -a 1 - -t 0.19741 -s 2 -d 3 -p cbr -e 210 -c 1 -i 9 -a 1 h -t 0.19741 -s 2 -d 3 -p cbr -e 210 -c 1 -i 9 -a 1 + -t 0.1975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 27 -a 1 - -t 0.1975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 27 -a 1 h -t 0.1975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 27 -a 1 r -t 0.19836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 13 -a 1 + -t 0.19836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 13 -a 1 - -t 0.20077 -s 2 -d 3 -p cbr -e 210 -c 1 -i 10 -a 1 h -t 0.20077 -s 2 -d 3 -p cbr -e 210 -c 1 -i 10 -a 1 + -t 0.20125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 28 -a 1 - -t 0.20125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 28 -a 1 h -t 0.20125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 28 -a 1 r -t 0.20211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 14 -a 1 + -t 0.20211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 14 -a 1 - -t 0.20413 -s 2 -d 3 -p cbr -e 210 -c 1 -i 11 -a 1 h -t 0.20413 -s 2 -d 3 -p cbr -e 210 -c 1 -i 11 -a 1 + -t 0.205 -s 1 -d 2 -p cbr -e 210 -c 1 -i 29 -a 1 - -t 0.205 -s 1 -d 2 -p cbr -e 210 -c 1 -i 29 -a 1 h -t 0.205 -s 1 -d 2 -p cbr -e 210 -c 1 -i 29 -a 1 r -t 0.20586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 15 -a 1 + -t 0.20586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 15 -a 1 r -t 0.20672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 1 -a 1 + -t 0.20672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 1 -a 1 - -t 0.20672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 1 -a 1 h -t 0.20672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 1 -a 1 - -t 0.20749 -s 2 -d 3 -p cbr -e 210 -c 1 -i 12 -a 1 h -t 0.20749 -s 2 -d 3 -p cbr -e 210 -c 1 -i 12 -a 1 + -t 0.20875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 30 -a 1 - -t 0.20875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 30 -a 1 h -t 0.20875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 30 -a 1 r -t 0.20961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 16 -a 1 + -t 0.20961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 16 -a 1 v -t 0.20999999999999999 sim_annotation 0.20999999999999999 5 Ack_0 : 1 ack is coming r -t 0.21047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 2 -a 1 + -t 0.21047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 2 -a 1 - -t 0.21047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 2 -a 1 h -t 0.21047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 2 -a 1 - -t 0.21085 -s 2 -d 3 -p cbr -e 210 -c 1 -i 13 -a 1 h -t 0.21085 -s 2 -d 3 -p cbr -e 210 -c 1 -i 13 -a 1 + -t 0.2125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 31 -a 1 - -t 0.2125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 31 -a 1 h -t 0.2125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 31 -a 1 r -t 0.21336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 17 -a 1 + -t 0.21336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 17 -a 1 - -t 0.21421 -s 2 -d 3 -p cbr -e 210 -c 1 -i 14 -a 1 h -t 0.21421 -s 2 -d 3 -p cbr -e 210 -c 1 -i 14 -a 1 r -t 0.21422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 3 -a 1 + -t 0.21422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 3 -a 1 - -t 0.21422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 3 -a 1 h -t 0.21422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 3 -a 1 + -t 0.21625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 32 -a 1 - -t 0.21625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 32 -a 1 h -t 0.21625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 32 -a 1 r -t 0.21711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 18 -a 1 + -t 0.21711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 18 -a 1 - -t 0.21757 -s 2 -d 3 -p cbr -e 210 -c 1 -i 15 -a 1 h -t 0.21757 -s 2 -d 3 -p cbr -e 210 -c 1 -i 15 -a 1 r -t 0.21797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 4 -a 1 + -t 0.21797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 4 -a 1 - -t 0.21797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 4 -a 1 h -t 0.21797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 4 -a 1 + -t 0.22 -s 1 -d 2 -p cbr -e 210 -c 1 -i 33 -a 1 - -t 0.22 -s 1 -d 2 -p cbr -e 210 -c 1 -i 33 -a 1 h -t 0.22 -s 1 -d 2 -p cbr -e 210 -c 1 -i 33 -a 1 r -t 0.22086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 19 -a 1 + -t 0.22086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 19 -a 1 - -t 0.22093 -s 2 -d 3 -p cbr -e 210 -c 1 -i 16 -a 1 h -t 0.22093 -s 2 -d 3 -p cbr -e 210 -c 1 -i 16 -a 1 + -t 0.22375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 34 -a 1 - -t 0.22375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 34 -a 1 h -t 0.22375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 34 -a 1 - -t 0.22429 -s 2 -d 3 -p cbr -e 210 -c 1 -i 17 -a 1 h -t 0.22429 -s 2 -d 3 -p cbr -e 210 -c 1 -i 17 -a 1 r -t 0.22461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 20 -a 1 + -t 0.22461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 20 -a 1 + -t 0.2275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 35 -a 1 - -t 0.2275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 35 -a 1 h -t 0.2275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 35 -a 1 - -t 0.22765 -s 2 -d 3 -p cbr -e 210 -c 1 -i 18 -a 1 h -t 0.22765 -s 2 -d 3 -p cbr -e 210 -c 1 -i 18 -a 1 r -t 0.22836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 21 -a 1 + -t 0.22836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 21 -a 1 - -t 0.23101 -s 2 -d 3 -p cbr -e 210 -c 1 -i 19 -a 1 h -t 0.23101 -s 2 -d 3 -p cbr -e 210 -c 1 -i 19 -a 1 + -t 0.23125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 36 -a 1 - -t 0.23125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 36 -a 1 h -t 0.23125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 36 -a 1 r -t 0.23211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 22 -a 1 + -t 0.23211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 22 -a 1 r -t 0.23397 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} + -t 0.23397 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} - -t 0.23397 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} h -t 0.23397 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {-1 -1} - -t 0.23437 -s 2 -d 3 -p cbr -e 210 -c 1 -i 20 -a 1 h -t 0.23437 -s 2 -d 3 -p cbr -e 210 -c 1 -i 20 -a 1 + -t 0.235 -s 1 -d 2 -p cbr -e 210 -c 1 -i 37 -a 1 - -t 0.235 -s 1 -d 2 -p cbr -e 210 -c 1 -i 37 -a 1 h -t 0.235 -s 1 -d 2 -p cbr -e 210 -c 1 -i 37 -a 1 r -t 0.23586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 23 -a 1 + -t 0.23586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 23 -a 1 r -t 0.23733 -s 2 -d 3 -p cbr -e 210 -c 1 -i 5 -a 1 + -t 0.23733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 5 -a 1 - -t 0.23733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 5 -a 1 h -t 0.23733 -s 3 -d 5 -p cbr -e 210 -c 1 -i 5 -a 1 - -t 0.23773 -s 2 -d 3 -p cbr -e 210 -c 1 -i 21 -a 1 h -t 0.23773 -s 2 -d 3 -p cbr -e 210 -c 1 -i 21 -a 1 + -t 0.23875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 38 -a 1 - -t 0.23875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 38 -a 1 h -t 0.23875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 38 -a 1 r -t 0.23961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 24 -a 1 + -t 0.23961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 24 -a 1 r -t 0.24069 -s 2 -d 3 -p cbr -e 210 -c 1 -i 6 -a 1 + -t 0.24069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 6 -a 1 - -t 0.24069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 6 -a 1 h -t 0.24069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 6 -a 1 - -t 0.24109 -s 2 -d 3 -p cbr -e 210 -c 1 -i 22 -a 1 h -t 0.24109 -s 2 -d 3 -p cbr -e 210 -c 1 -i 22 -a 1 + -t 0.2425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 39 -a 1 - -t 0.2425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 39 -a 1 h -t 0.2425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 39 -a 1 r -t 0.24336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 25 -a 1 + -t 0.24336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 25 -a 1 r -t 0.24405 -s 2 -d 3 -p cbr -e 210 -c 1 -i 7 -a 1 + -t 0.24405 -s 3 -d 5 -p cbr -e 210 -c 1 -i 7 -a 1 - -t 0.24405 -s 3 -d 5 -p cbr -e 210 -c 1 -i 7 -a 1 h -t 0.24405 -s 3 -d 5 -p cbr -e 210 -c 1 -i 7 -a 1 - -t 0.24445 -s 2 -d 3 -p cbr -e 210 -c 1 -i 23 -a 1 h -t 0.24445 -s 2 -d 3 -p cbr -e 210 -c 1 -i 23 -a 1 + -t 0.24625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 40 -a 1 - -t 0.24625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 40 -a 1 h -t 0.24625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 40 -a 1 r -t 0.24711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 26 -a 1 + -t 0.24711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 26 -a 1 r -t 0.24741 -s 2 -d 3 -p cbr -e 210 -c 1 -i 8 -a 1 + -t 0.24741 -s 3 -d 5 -p cbr -e 210 -c 1 -i 8 -a 1 - -t 0.24741 -s 3 -d 5 -p cbr -e 210 -c 1 -i 8 -a 1 h -t 0.24741 -s 3 -d 5 -p cbr -e 210 -c 1 -i 8 -a 1 - -t 0.24781 -s 2 -d 3 -p cbr -e 210 -c 1 -i 24 -a 1 h -t 0.24781 -s 2 -d 3 -p cbr -e 210 -c 1 -i 24 -a 1 + -t 0.25 -s 1 -d 2 -p cbr -e 210 -c 1 -i 41 -a 1 - -t 0.25 -s 1 -d 2 -p cbr -e 210 -c 1 -i 41 -a 1 h -t 0.25 -s 1 -d 2 -p cbr -e 210 -c 1 -i 41 -a 1 r -t 0.25077 -s 2 -d 3 -p cbr -e 210 -c 1 -i 9 -a 1 + -t 0.25077 -s 3 -d 5 -p cbr -e 210 -c 1 -i 9 -a 1 - -t 0.25077 -s 3 -d 5 -p cbr -e 210 -c 1 -i 9 -a 1 h -t 0.25077 -s 3 -d 5 -p cbr -e 210 -c 1 -i 9 -a 1 r -t 0.25086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 27 -a 1 + -t 0.25086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 27 -a 1 - -t 0.25117 -s 2 -d 3 -p cbr -e 210 -c 1 -i 25 -a 1 h -t 0.25117 -s 2 -d 3 -p cbr -e 210 -c 1 -i 25 -a 1 + -t 0.25375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 42 -a 1 - -t 0.25375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 42 -a 1 h -t 0.25375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 42 -a 1 r -t 0.25413 -s 2 -d 3 -p cbr -e 210 -c 1 -i 10 -a 1 + -t 0.25413 -s 3 -d 5 -p cbr -e 210 -c 1 -i 10 -a 1 - -t 0.25413 -s 3 -d 5 -p cbr -e 210 -c 1 -i 10 -a 1 h -t 0.25413 -s 3 -d 5 -p cbr -e 210 -c 1 -i 10 -a 1 - -t 0.25453 -s 2 -d 3 -p cbr -e 210 -c 1 -i 26 -a 1 h -t 0.25453 -s 2 -d 3 -p cbr -e 210 -c 1 -i 26 -a 1 r -t 0.25461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 28 -a 1 + -t 0.25461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 28 -a 1 r -t 0.25749 -s 2 -d 3 -p cbr -e 210 -c 1 -i 11 -a 1 + -t 0.25749 -s 3 -d 5 -p cbr -e 210 -c 1 -i 11 -a 1 - -t 0.25749 -s 3 -d 5 -p cbr -e 210 -c 1 -i 11 -a 1 h -t 0.25749 -s 3 -d 5 -p cbr -e 210 -c 1 -i 11 -a 1 + -t 0.2575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 43 -a 1 - -t 0.2575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 43 -a 1 h -t 0.2575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 43 -a 1 - -t 0.25789 -s 2 -d 3 -p cbr -e 210 -c 1 -i 27 -a 1 h -t 0.25789 -s 2 -d 3 -p cbr -e 210 -c 1 -i 27 -a 1 r -t 0.25836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 29 -a 1 + -t 0.25836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 29 -a 1 r -t 0.26008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 1 -a 1 r -t 0.26085 -s 2 -d 3 -p cbr -e 210 -c 1 -i 12 -a 1 + -t 0.26085 -s 3 -d 5 -p cbr -e 210 -c 1 -i 12 -a 1 - -t 0.26085 -s 3 -d 5 -p cbr -e 210 -c 1 -i 12 -a 1 h -t 0.26085 -s 3 -d 5 -p cbr -e 210 -c 1 -i 12 -a 1 - -t 0.26125 -s 2 -d 3 -p cbr -e 210 -c 1 -i 28 -a 1 h -t 0.26125 -s 2 -d 3 -p cbr -e 210 -c 1 -i 28 -a 1 + -t 0.26125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 44 -a 1 - -t 0.26125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 44 -a 1 h -t 0.26125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 44 -a 1 r -t 0.26211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 30 -a 1 + -t 0.26211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 30 -a 1 r -t 0.26383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 2 -a 1 r -t 0.26421 -s 2 -d 3 -p cbr -e 210 -c 1 -i 13 -a 1 + -t 0.26421 -s 3 -d 5 -p cbr -e 210 -c 1 -i 13 -a 1 - -t 0.26421 -s 3 -d 5 -p cbr -e 210 -c 1 -i 13 -a 1 h -t 0.26421 -s 3 -d 5 -p cbr -e 210 -c 1 -i 13 -a 1 - -t 0.26461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 29 -a 1 h -t 0.26461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 29 -a 1 + -t 0.265 -s 1 -d 2 -p cbr -e 210 -c 1 -i 45 -a 1 - -t 0.265 -s 1 -d 2 -p cbr -e 210 -c 1 -i 45 -a 1 h -t 0.265 -s 1 -d 2 -p cbr -e 210 -c 1 -i 45 -a 1 r -t 0.26586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 31 -a 1 + -t 0.26586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 31 -a 1 r -t 0.26757 -s 2 -d 3 -p cbr -e 210 -c 1 -i 14 -a 1 + -t 0.26757 -s 3 -d 5 -p cbr -e 210 -c 1 -i 14 -a 1 - -t 0.26757 -s 3 -d 5 -p cbr -e 210 -c 1 -i 14 -a 1 h -t 0.26757 -s 3 -d 5 -p cbr -e 210 -c 1 -i 14 -a 1 r -t 0.26758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 3 -a 1 - -t 0.26797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 30 -a 1 h -t 0.26797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 30 -a 1 + -t 0.26875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 46 -a 1 - -t 0.26875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 46 -a 1 h -t 0.26875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 46 -a 1 r -t 0.26961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 32 -a 1 + -t 0.26961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 32 -a 1 v -t 0.27000000000000002 sim_annotation 0.27000000000000002 6 Send Packet_1,2 : Increase window size to 2 r -t 0.27093 -s 2 -d 3 -p cbr -e 210 -c 1 -i 15 -a 1 + -t 0.27093 -s 3 -d 5 -p cbr -e 210 -c 1 -i 15 -a 1 - -t 0.27093 -s 3 -d 5 -p cbr -e 210 -c 1 -i 15 -a 1 h -t 0.27093 -s 3 -d 5 -p cbr -e 210 -c 1 -i 15 -a 1 - -t 0.27133 -s 2 -d 3 -p cbr -e 210 -c 1 -i 31 -a 1 h -t 0.27133 -s 2 -d 3 -p cbr -e 210 -c 1 -i 31 -a 1 r -t 0.27133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 4 -a 1 + -t 0.2725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 47 -a 1 - -t 0.2725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 47 -a 1 h -t 0.2725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 47 -a 1 r -t 0.27336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 33 -a 1 + -t 0.27336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 33 -a 1 r -t 0.27429 -s 2 -d 3 -p cbr -e 210 -c 1 -i 16 -a 1 + -t 0.27429 -s 3 -d 5 -p cbr -e 210 -c 1 -i 16 -a 1 - -t 0.27429 -s 3 -d 5 -p cbr -e 210 -c 1 -i 16 -a 1 h -t 0.27429 -s 3 -d 5 -p cbr -e 210 -c 1 -i 16 -a 1 - -t 0.27469 -s 2 -d 3 -p cbr -e 210 -c 1 -i 32 -a 1 h -t 0.27469 -s 2 -d 3 -p cbr -e 210 -c 1 -i 32 -a 1 + -t 0.27625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 48 -a 1 - -t 0.27625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 48 -a 1 h -t 0.27625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 48 -a 1 r -t 0.27711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 34 -a 1 + -t 0.27711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 34 -a 1 r -t 0.27765 -s 2 -d 3 -p cbr -e 210 -c 1 -i 17 -a 1 + -t 0.27765 -s 3 -d 5 -p cbr -e 210 -c 1 -i 17 -a 1 - -t 0.27765 -s 3 -d 5 -p cbr -e 210 -c 1 -i 17 -a 1 h -t 0.27765 -s 3 -d 5 -p cbr -e 210 -c 1 -i 17 -a 1 - -t 0.27805 -s 2 -d 3 -p cbr -e 210 -c 1 -i 33 -a 1 h -t 0.27805 -s 2 -d 3 -p cbr -e 210 -c 1 -i 33 -a 1 + -t 0.28 -s 1 -d 2 -p cbr -e 210 -c 1 -i 49 -a 1 - -t 0.28 -s 1 -d 2 -p cbr -e 210 -c 1 -i 49 -a 1 h -t 0.28 -s 1 -d 2 -p cbr -e 210 -c 1 -i 49 -a 1 r -t 0.28086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 35 -a 1 + -t 0.28086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 35 -a 1 r -t 0.28101 -s 2 -d 3 -p cbr -e 210 -c 1 -i 18 -a 1 + -t 0.28101 -s 3 -d 5 -p cbr -e 210 -c 1 -i 18 -a 1 - -t 0.28101 -s 3 -d 5 -p cbr -e 210 -c 1 -i 18 -a 1 h -t 0.28101 -s 3 -d 5 -p cbr -e 210 -c 1 -i 18 -a 1 - -t 0.28141 -s 2 -d 3 -p cbr -e 210 -c 1 -i 34 -a 1 h -t 0.28141 -s 2 -d 3 -p cbr -e 210 -c 1 -i 34 -a 1 + -t 0.28375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 50 -a 1 - -t 0.28375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 50 -a 1 h -t 0.28375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 50 -a 1 r -t 0.28437 -s 2 -d 3 -p cbr -e 210 -c 1 -i 19 -a 1 + -t 0.28437 -s 3 -d 5 -p cbr -e 210 -c 1 -i 19 -a 1 - -t 0.28437 -s 3 -d 5 -p cbr -e 210 -c 1 -i 19 -a 1 h -t 0.28437 -s 3 -d 5 -p cbr -e 210 -c 1 -i 19 -a 1 r -t 0.28461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 36 -a 1 + -t 0.28461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 36 -a 1 - -t 0.28477 -s 2 -d 3 -p cbr -e 210 -c 1 -i 35 -a 1 h -t 0.28477 -s 2 -d 3 -p cbr -e 210 -c 1 -i 35 -a 1 + -t 0.2875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 51 -a 1 - -t 0.2875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 51 -a 1 h -t 0.2875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 51 -a 1 r -t 0.28773 -s 2 -d 3 -p cbr -e 210 -c 1 -i 20 -a 1 + -t 0.28773 -s 3 -d 5 -p cbr -e 210 -c 1 -i 20 -a 1 - -t 0.28773 -s 3 -d 5 -p cbr -e 210 -c 1 -i 20 -a 1 h -t 0.28773 -s 3 -d 5 -p cbr -e 210 -c 1 -i 20 -a 1 - -t 0.28813 -s 2 -d 3 -p cbr -e 210 -c 1 -i 36 -a 1 h -t 0.28813 -s 2 -d 3 -p cbr -e 210 -c 1 -i 36 -a 1 r -t 0.28836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 37 -a 1 + -t 0.28836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 37 -a 1 r -t 0.29069 -s 3 -d 5 -p cbr -e 210 -c 1 -i 5 -a 1 r -t 0.29109 -s 2 -d 3 -p cbr -e 210 -c 1 -i 21 -a 1 + -t 0.29109 -s 3 -d 5 -p cbr -e 210 -c 1 -i 21 -a 1 - -t 0.29109 -s 3 -d 5 -p cbr -e 210 -c 1 -i 21 -a 1 h -t 0.29109 -s 3 -d 5 -p cbr -e 210 -c 1 -i 21 -a 1 + -t 0.29125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 52 -a 1 - -t 0.29125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 52 -a 1 h -t 0.29125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 52 -a 1 - -t 0.29149 -s 2 -d 3 -p cbr -e 210 -c 1 -i 37 -a 1 h -t 0.29149 -s 2 -d 3 -p cbr -e 210 -c 1 -i 37 -a 1 r -t 0.29211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 38 -a 1 + -t 0.29211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 38 -a 1 r -t 0.29405 -s 3 -d 5 -p cbr -e 210 -c 1 -i 6 -a 1 r -t 0.29445 -s 2 -d 3 -p cbr -e 210 -c 1 -i 22 -a 1 + -t 0.29445 -s 3 -d 5 -p cbr -e 210 -c 1 -i 22 -a 1 - -t 0.29445 -s 3 -d 5 -p cbr -e 210 -c 1 -i 22 -a 1 h -t 0.29445 -s 3 -d 5 -p cbr -e 210 -c 1 -i 22 -a 1 - -t 0.29485 -s 2 -d 3 -p cbr -e 210 -c 1 -i 38 -a 1 h -t 0.29485 -s 2 -d 3 -p cbr -e 210 -c 1 -i 38 -a 1 + -t 0.295 -s 1 -d 2 -p cbr -e 210 -c 1 -i 53 -a 1 - -t 0.295 -s 1 -d 2 -p cbr -e 210 -c 1 -i 53 -a 1 h -t 0.295 -s 1 -d 2 -p cbr -e 210 -c 1 -i 53 -a 1 r -t 0.29586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 39 -a 1 + -t 0.29586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 39 -a 1 r -t 0.29741 -s 3 -d 5 -p cbr -e 210 -c 1 -i 7 -a 1 r -t 0.29781 -s 2 -d 3 -p cbr -e 210 -c 1 -i 23 -a 1 + -t 0.29781 -s 3 -d 5 -p cbr -e 210 -c 1 -i 23 -a 1 - -t 0.29781 -s 3 -d 5 -p cbr -e 210 -c 1 -i 23 -a 1 h -t 0.29781 -s 3 -d 5 -p cbr -e 210 -c 1 -i 23 -a 1 - -t 0.29821 -s 2 -d 3 -p cbr -e 210 -c 1 -i 39 -a 1 h -t 0.29821 -s 2 -d 3 -p cbr -e 210 -c 1 -i 39 -a 1 + -t 0.29875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 54 -a 1 - -t 0.29875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 54 -a 1 h -t 0.29875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 54 -a 1 r -t 0.29961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 40 -a 1 + -t 0.29961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 40 -a 1 r -t 0.29997 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} + -t 0.29997 -s 4 -d 3 -p ack -e 40 -c 0 -i 55 -a 0 -S 0 -y {0 0} - -t 0.29997 -s 4 -d 3 -p ack -e 40 -c 0 -i 55 -a 0 -S 0 -y {0 0} h -t 0.29997 -s 4 -d 3 -p ack -e 40 -c 0 -i 55 -a 0 -S 0 -y {-1 -1} r -t 0.30077 -s 3 -d 5 -p cbr -e 210 -c 1 -i 8 -a 1 r -t 0.30117 -s 2 -d 3 -p cbr -e 210 -c 1 -i 24 -a 1 + -t 0.30117 -s 3 -d 5 -p cbr -e 210 -c 1 -i 24 -a 1 - -t 0.30117 -s 3 -d 5 -p cbr -e 210 -c 1 -i 24 -a 1 h -t 0.30117 -s 3 -d 5 -p cbr -e 210 -c 1 -i 24 -a 1 - -t 0.30157 -s 2 -d 3 -p cbr -e 210 -c 1 -i 40 -a 1 h -t 0.30157 -s 2 -d 3 -p cbr -e 210 -c 1 -i 40 -a 1 + -t 0.3025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 56 -a 1 - -t 0.3025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 56 -a 1 h -t 0.3025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 56 -a 1 r -t 0.30336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 41 -a 1 + -t 0.30336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 41 -a 1 r -t 0.30413 -s 3 -d 5 -p cbr -e 210 -c 1 -i 9 -a 1 r -t 0.30453 -s 2 -d 3 -p cbr -e 210 -c 1 -i 25 -a 1 + -t 0.30453 -s 3 -d 5 -p cbr -e 210 -c 1 -i 25 -a 1 - -t 0.30453 -s 3 -d 5 -p cbr -e 210 -c 1 -i 25 -a 1 h -t 0.30453 -s 3 -d 5 -p cbr -e 210 -c 1 -i 25 -a 1 - -t 0.30493 -s 2 -d 3 -p cbr -e 210 -c 1 -i 41 -a 1 h -t 0.30493 -s 2 -d 3 -p cbr -e 210 -c 1 -i 41 -a 1 + -t 0.30625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 57 -a 1 - -t 0.30625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 57 -a 1 h -t 0.30625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 57 -a 1 r -t 0.30711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 42 -a 1 + -t 0.30711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 42 -a 1 r -t 0.30749 -s 3 -d 5 -p cbr -e 210 -c 1 -i 10 -a 1 r -t 0.30789 -s 2 -d 3 -p cbr -e 210 -c 1 -i 26 -a 1 + -t 0.30789 -s 3 -d 5 -p cbr -e 210 -c 1 -i 26 -a 1 - -t 0.30789 -s 3 -d 5 -p cbr -e 210 -c 1 -i 26 -a 1 h -t 0.30789 -s 3 -d 5 -p cbr -e 210 -c 1 -i 26 -a 1 - -t 0.30829 -s 2 -d 3 -p cbr -e 210 -c 1 -i 42 -a 1 h -t 0.30829 -s 2 -d 3 -p cbr -e 210 -c 1 -i 42 -a 1 + -t 0.31 -s 1 -d 2 -p cbr -e 210 -c 1 -i 58 -a 1 - -t 0.31 -s 1 -d 2 -p cbr -e 210 -c 1 -i 58 -a 1 h -t 0.31 -s 1 -d 2 -p cbr -e 210 -c 1 -i 58 -a 1 r -t 0.31085 -s 3 -d 5 -p cbr -e 210 -c 1 -i 11 -a 1 r -t 0.31086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 43 -a 1 + -t 0.31086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 43 -a 1 r -t 0.31125 -s 2 -d 3 -p cbr -e 210 -c 1 -i 27 -a 1 + -t 0.31125 -s 3 -d 5 -p cbr -e 210 -c 1 -i 27 -a 1 - -t 0.31125 -s 3 -d 5 -p cbr -e 210 -c 1 -i 27 -a 1 h -t 0.31125 -s 3 -d 5 -p cbr -e 210 -c 1 -i 27 -a 1 - -t 0.31165 -s 2 -d 3 -p cbr -e 210 -c 1 -i 43 -a 1 h -t 0.31165 -s 2 -d 3 -p cbr -e 210 -c 1 -i 43 -a 1 + -t 0.31375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 59 -a 1 - -t 0.31375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 59 -a 1 h -t 0.31375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 59 -a 1 r -t 0.31421 -s 3 -d 5 -p cbr -e 210 -c 1 -i 12 -a 1 r -t 0.31461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 28 -a 1 + -t 0.31461 -s 3 -d 5 -p cbr -e 210 -c 1 -i 28 -a 1 - -t 0.31461 -s 3 -d 5 -p cbr -e 210 -c 1 -i 28 -a 1 h -t 0.31461 -s 3 -d 5 -p cbr -e 210 -c 1 -i 28 -a 1 r -t 0.31461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 44 -a 1 + -t 0.31461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 44 -a 1 - -t 0.31501 -s 2 -d 3 -p cbr -e 210 -c 1 -i 44 -a 1 h -t 0.31501 -s 2 -d 3 -p cbr -e 210 -c 1 -i 44 -a 1 + -t 0.3175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 60 -a 1 - -t 0.3175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 60 -a 1 h -t 0.3175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 60 -a 1 r -t 0.31757 -s 3 -d 5 -p cbr -e 210 -c 1 -i 13 -a 1 r -t 0.31797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 29 -a 1 + -t 0.31797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 29 -a 1 - -t 0.31797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 29 -a 1 h -t 0.31797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 29 -a 1 r -t 0.31836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 45 -a 1 + -t 0.31836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 45 -a 1 - -t 0.31837 -s 2 -d 3 -p cbr -e 210 -c 1 -i 45 -a 1 h -t 0.31837 -s 2 -d 3 -p cbr -e 210 -c 1 -i 45 -a 1 r -t 0.32093 -s 3 -d 5 -p cbr -e 210 -c 1 -i 14 -a 1 + -t 0.32125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 61 -a 1 - -t 0.32125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 61 -a 1 h -t 0.32125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 61 -a 1 r -t 0.32133 -s 2 -d 3 -p cbr -e 210 -c 1 -i 30 -a 1 + -t 0.32133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 30 -a 1 - -t 0.32133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 30 -a 1 h -t 0.32133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 30 -a 1 r -t 0.32211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 46 -a 1 + -t 0.32211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 46 -a 1 - -t 0.32211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 46 -a 1 h -t 0.32211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 46 -a 1 r -t 0.32429 -s 3 -d 5 -p cbr -e 210 -c 1 -i 15 -a 1 r -t 0.32469 -s 2 -d 3 -p cbr -e 210 -c 1 -i 31 -a 1 + -t 0.32469 -s 3 -d 5 -p cbr -e 210 -c 1 -i 31 -a 1 - -t 0.32469 -s 3 -d 5 -p cbr -e 210 -c 1 -i 31 -a 1 h -t 0.32469 -s 3 -d 5 -p cbr -e 210 -c 1 -i 31 -a 1 + -t 0.325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 62 -a 1 - -t 0.325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 62 -a 1 h -t 0.325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 62 -a 1 r -t 0.32586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 47 -a 1 + -t 0.32586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 47 -a 1 - -t 0.32586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 47 -a 1 h -t 0.32586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 47 -a 1 r -t 0.32765 -s 3 -d 5 -p cbr -e 210 -c 1 -i 16 -a 1 r -t 0.32805 -s 2 -d 3 -p cbr -e 210 -c 1 -i 32 -a 1 + -t 0.32805 -s 3 -d 5 -p cbr -e 210 -c 1 -i 32 -a 1 - -t 0.32805 -s 3 -d 5 -p cbr -e 210 -c 1 -i 32 -a 1 h -t 0.32805 -s 3 -d 5 -p cbr -e 210 -c 1 -i 32 -a 1 + -t 0.32875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 63 -a 1 - -t 0.32875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 63 -a 1 h -t 0.32875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 63 -a 1 r -t 0.32961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 48 -a 1 + -t 0.32961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 48 -a 1 - -t 0.32961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 48 -a 1 h -t 0.32961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 48 -a 1 r -t 0.33101 -s 3 -d 5 -p cbr -e 210 -c 1 -i 17 -a 1 r -t 0.33141 -s 2 -d 3 -p cbr -e 210 -c 1 -i 33 -a 1 + -t 0.33141 -s 3 -d 5 -p cbr -e 210 -c 1 -i 33 -a 1 - -t 0.33141 -s 3 -d 5 -p cbr -e 210 -c 1 -i 33 -a 1 h -t 0.33141 -s 3 -d 5 -p cbr -e 210 -c 1 -i 33 -a 1 + -t 0.3325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 64 -a 1 - -t 0.3325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 64 -a 1 h -t 0.3325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 64 -a 1 r -t 0.33336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 49 -a 1 + -t 0.33336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 49 -a 1 - -t 0.33336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 49 -a 1 h -t 0.33336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 49 -a 1 r -t 0.33437 -s 3 -d 5 -p cbr -e 210 -c 1 -i 18 -a 1 r -t 0.33477 -s 2 -d 3 -p cbr -e 210 -c 1 -i 34 -a 1 + -t 0.33477 -s 3 -d 5 -p cbr -e 210 -c 1 -i 34 -a 1 - -t 0.33477 -s 3 -d 5 -p cbr -e 210 -c 1 -i 34 -a 1 h -t 0.33477 -s 3 -d 5 -p cbr -e 210 -c 1 -i 34 -a 1 + -t 0.33625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 65 -a 1 - -t 0.33625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 65 -a 1 h -t 0.33625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 65 -a 1 r -t 0.33711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 50 -a 1 + -t 0.33711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 50 -a 1 - -t 0.33711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 50 -a 1 h -t 0.33711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 50 -a 1 r -t 0.33773 -s 3 -d 5 -p cbr -e 210 -c 1 -i 19 -a 1 r -t 0.33813 -s 2 -d 3 -p cbr -e 210 -c 1 -i 35 -a 1 + -t 0.33813 -s 3 -d 5 -p cbr -e 210 -c 1 -i 35 -a 1 - -t 0.33813 -s 3 -d 5 -p cbr -e 210 -c 1 -i 35 -a 1 h -t 0.33813 -s 3 -d 5 -p cbr -e 210 -c 1 -i 35 -a 1 + -t 0.34 -s 1 -d 2 -p cbr -e 210 -c 1 -i 66 -a 1 - -t 0.34 -s 1 -d 2 -p cbr -e 210 -c 1 -i 66 -a 1 h -t 0.34 -s 1 -d 2 -p cbr -e 210 -c 1 -i 66 -a 1 r -t 0.34086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 51 -a 1 + -t 0.34086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 51 -a 1 - -t 0.34086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 51 -a 1 h -t 0.34086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 51 -a 1 r -t 0.34109 -s 3 -d 5 -p cbr -e 210 -c 1 -i 20 -a 1 r -t 0.34149 -s 2 -d 3 -p cbr -e 210 -c 1 -i 36 -a 1 + -t 0.34149 -s 3 -d 5 -p cbr -e 210 -c 1 -i 36 -a 1 - -t 0.34149 -s 3 -d 5 -p cbr -e 210 -c 1 -i 36 -a 1 h -t 0.34149 -s 3 -d 5 -p cbr -e 210 -c 1 -i 36 -a 1 + -t 0.34375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 67 -a 1 - -t 0.34375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 67 -a 1 h -t 0.34375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 67 -a 1 r -t 0.34445 -s 3 -d 5 -p cbr -e 210 -c 1 -i 21 -a 1 r -t 0.34461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 52 -a 1 + -t 0.34461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 52 -a 1 - -t 0.34461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 52 -a 1 h -t 0.34461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 52 -a 1 r -t 0.34485 -s 2 -d 3 -p cbr -e 210 -c 1 -i 37 -a 1 + -t 0.34485 -s 3 -d 5 -p cbr -e 210 -c 1 -i 37 -a 1 - -t 0.34485 -s 3 -d 5 -p cbr -e 210 -c 1 -i 37 -a 1 h -t 0.34485 -s 3 -d 5 -p cbr -e 210 -c 1 -i 37 -a 1 + -t 0.3475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 68 -a 1 - -t 0.3475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 68 -a 1 h -t 0.3475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 68 -a 1 r -t 0.34781 -s 3 -d 5 -p cbr -e 210 -c 1 -i 22 -a 1 r -t 0.34821 -s 2 -d 3 -p cbr -e 210 -c 1 -i 38 -a 1 + -t 0.34821 -s 3 -d 5 -p cbr -e 210 -c 1 -i 38 -a 1 - -t 0.34821 -s 3 -d 5 -p cbr -e 210 -c 1 -i 38 -a 1 h -t 0.34821 -s 3 -d 5 -p cbr -e 210 -c 1 -i 38 -a 1 r -t 0.34836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 53 -a 1 + -t 0.34836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 53 -a 1 - -t 0.34836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 53 -a 1 h -t 0.34836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 53 -a 1 r -t 0.35061 -s 4 -d 3 -p ack -e 40 -c 0 -i 55 -a 0 -S 0 -y {0 0} + -t 0.35061 -s 3 -d 2 -p ack -e 40 -c 0 -i 55 -a 0 -S 0 -y {0 0} - -t 0.35061 -s 3 -d 2 -p ack -e 40 -c 0 -i 55 -a 0 -S 0 -y {0 0} h -t 0.35061 -s 3 -d 2 -p ack -e 40 -c 0 -i 55 -a 0 -S 0 -y {-1 -1} r -t 0.35117 -s 3 -d 5 -p cbr -e 210 -c 1 -i 23 -a 1 + -t 0.35125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 69 -a 1 - -t 0.35125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 69 -a 1 h -t 0.35125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 69 -a 1 r -t 0.35157 -s 2 -d 3 -p cbr -e 210 -c 1 -i 39 -a 1 + -t 0.35157 -s 3 -d 5 -p cbr -e 210 -c 1 -i 39 -a 1 - -t 0.35157 -s 3 -d 5 -p cbr -e 210 -c 1 -i 39 -a 1 h -t 0.35157 -s 3 -d 5 -p cbr -e 210 -c 1 -i 39 -a 1 r -t 0.35211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 54 -a 1 + -t 0.35211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 54 -a 1 - -t 0.35211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 54 -a 1 h -t 0.35211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 54 -a 1 r -t 0.35453 -s 3 -d 5 -p cbr -e 210 -c 1 -i 24 -a 1 r -t 0.35493 -s 2 -d 3 -p cbr -e 210 -c 1 -i 40 -a 1 + -t 0.35493 -s 3 -d 5 -p cbr -e 210 -c 1 -i 40 -a 1 - -t 0.35493 -s 3 -d 5 -p cbr -e 210 -c 1 -i 40 -a 1 h -t 0.35493 -s 3 -d 5 -p cbr -e 210 -c 1 -i 40 -a 1 + -t 0.355 -s 1 -d 2 -p cbr -e 210 -c 1 -i 70 -a 1 - -t 0.355 -s 1 -d 2 -p cbr -e 210 -c 1 -i 70 -a 1 h -t 0.355 -s 1 -d 2 -p cbr -e 210 -c 1 -i 70 -a 1 r -t 0.35586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 56 -a 1 + -t 0.35586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 56 -a 1 - -t 0.35586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 56 -a 1 h -t 0.35586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 56 -a 1 r -t 0.35789 -s 3 -d 5 -p cbr -e 210 -c 1 -i 25 -a 1 r -t 0.35829 -s 2 -d 3 -p cbr -e 210 -c 1 -i 41 -a 1 + -t 0.35829 -s 3 -d 5 -p cbr -e 210 -c 1 -i 41 -a 1 - -t 0.35829 -s 3 -d 5 -p cbr -e 210 -c 1 -i 41 -a 1 h -t 0.35829 -s 3 -d 5 -p cbr -e 210 -c 1 -i 41 -a 1 + -t 0.35875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 71 -a 1 - -t 0.35875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 71 -a 1 h -t 0.35875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 71 -a 1 r -t 0.35961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 57 -a 1 + -t 0.35961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 57 -a 1 - -t 0.35961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 57 -a 1 h -t 0.35961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 57 -a 1 r -t 0.36125 -s 3 -d 5 -p cbr -e 210 -c 1 -i 26 -a 1 r -t 0.36165 -s 2 -d 3 -p cbr -e 210 -c 1 -i 42 -a 1 + -t 0.36165 -s 3 -d 5 -p cbr -e 210 -c 1 -i 42 -a 1 - -t 0.36165 -s 3 -d 5 -p cbr -e 210 -c 1 -i 42 -a 1 h -t 0.36165 -s 3 -d 5 -p cbr -e 210 -c 1 -i 42 -a 1 + -t 0.3625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 72 -a 1 - -t 0.3625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 72 -a 1 h -t 0.3625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 72 -a 1 r -t 0.36336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 58 -a 1 + -t 0.36336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 58 -a 1 - -t 0.36336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 58 -a 1 h -t 0.36336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 58 -a 1 r -t 0.36461 -s 3 -d 5 -p cbr -e 210 -c 1 -i 27 -a 1 r -t 0.36501 -s 2 -d 3 -p cbr -e 210 -c 1 -i 43 -a 1 + -t 0.36501 -s 3 -d 5 -p cbr -e 210 -c 1 -i 43 -a 1 - -t 0.36501 -s 3 -d 5 -p cbr -e 210 -c 1 -i 43 -a 1 h -t 0.36501 -s 3 -d 5 -p cbr -e 210 -c 1 -i 43 -a 1 + -t 0.36625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 73 -a 1 - -t 0.36625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 73 -a 1 h -t 0.36625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 73 -a 1 r -t 0.36711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 59 -a 1 + -t 0.36711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 59 -a 1 - -t 0.36711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 59 -a 1 h -t 0.36711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 59 -a 1 r -t 0.36797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 28 -a 1 r -t 0.36837 -s 2 -d 3 -p cbr -e 210 -c 1 -i 44 -a 1 + -t 0.36837 -s 3 -d 5 -p cbr -e 210 -c 1 -i 44 -a 1 - -t 0.36837 -s 3 -d 5 -p cbr -e 210 -c 1 -i 44 -a 1 h -t 0.36837 -s 3 -d 5 -p cbr -e 210 -c 1 -i 44 -a 1 + -t 0.37 -s 1 -d 2 -p cbr -e 210 -c 1 -i 74 -a 1 - -t 0.37 -s 1 -d 2 -p cbr -e 210 -c 1 -i 74 -a 1 h -t 0.37 -s 1 -d 2 -p cbr -e 210 -c 1 -i 74 -a 1 r -t 0.37086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 60 -a 1 + -t 0.37086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 60 -a 1 - -t 0.37086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 60 -a 1 h -t 0.37086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 60 -a 1 r -t 0.37133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 29 -a 1 r -t 0.37173 -s 2 -d 3 -p cbr -e 210 -c 1 -i 45 -a 1 + -t 0.37173 -s 3 -d 5 -p cbr -e 210 -c 1 -i 45 -a 1 - -t 0.37173 -s 3 -d 5 -p cbr -e 210 -c 1 -i 45 -a 1 h -t 0.37173 -s 3 -d 5 -p cbr -e 210 -c 1 -i 45 -a 1 + -t 0.37375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 75 -a 1 - -t 0.37375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 75 -a 1 h -t 0.37375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 75 -a 1 r -t 0.37461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 61 -a 1 + -t 0.37461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 61 -a 1 - -t 0.37461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 61 -a 1 h -t 0.37461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 61 -a 1 r -t 0.37469 -s 3 -d 5 -p cbr -e 210 -c 1 -i 30 -a 1 r -t 0.37547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 46 -a 1 + -t 0.37547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 46 -a 1 - -t 0.37547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 46 -a 1 h -t 0.37547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 46 -a 1 + -t 0.3775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 76 -a 1 - -t 0.3775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 76 -a 1 h -t 0.3775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 76 -a 1 r -t 0.37805 -s 3 -d 5 -p cbr -e 210 -c 1 -i 31 -a 1 r -t 0.37836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 62 -a 1 + -t 0.37836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 62 -a 1 - -t 0.37836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 62 -a 1 h -t 0.37836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 62 -a 1 r -t 0.37922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 47 -a 1 + -t 0.37922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 47 -a 1 - -t 0.37922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 47 -a 1 h -t 0.37922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 47 -a 1 v -t 0.38 sim_annotation 0.38 7 Ack_1,2 : 2 acks are coming + -t 0.38125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 77 -a 1 - -t 0.38125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 77 -a 1 h -t 0.38125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 77 -a 1 r -t 0.38141 -s 3 -d 5 -p cbr -e 210 -c 1 -i 32 -a 1 r -t 0.38211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 63 -a 1 + -t 0.38211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 63 -a 1 - -t 0.38211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 63 -a 1 h -t 0.38211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 63 -a 1 r -t 0.38297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 48 -a 1 + -t 0.38297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 48 -a 1 - -t 0.38297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 48 -a 1 h -t 0.38297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 48 -a 1 r -t 0.38477 -s 3 -d 5 -p cbr -e 210 -c 1 -i 33 -a 1 + -t 0.385 -s 1 -d 2 -p cbr -e 210 -c 1 -i 78 -a 1 - -t 0.385 -s 1 -d 2 -p cbr -e 210 -c 1 -i 78 -a 1 h -t 0.385 -s 1 -d 2 -p cbr -e 210 -c 1 -i 78 -a 1 r -t 0.38586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 64 -a 1 + -t 0.38586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 64 -a 1 - -t 0.38586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 64 -a 1 h -t 0.38586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 64 -a 1 r -t 0.38672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 49 -a 1 + -t 0.38672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 49 -a 1 - -t 0.38672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 49 -a 1 h -t 0.38672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 49 -a 1 r -t 0.38813 -s 3 -d 5 -p cbr -e 210 -c 1 -i 34 -a 1 + -t 0.38875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 79 -a 1 - -t 0.38875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 79 -a 1 h -t 0.38875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 79 -a 1 r -t 0.38961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 65 -a 1 + -t 0.38961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 65 -a 1 - -t 0.38961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 65 -a 1 h -t 0.38961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 65 -a 1 r -t 0.39047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 50 -a 1 + -t 0.39047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 50 -a 1 - -t 0.39047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 50 -a 1 h -t 0.39047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 50 -a 1 r -t 0.39149 -s 3 -d 5 -p cbr -e 210 -c 1 -i 35 -a 1 + -t 0.3925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 80 -a 1 - -t 0.3925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 80 -a 1 h -t 0.3925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 80 -a 1 r -t 0.39336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 66 -a 1 + -t 0.39336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 66 -a 1 - -t 0.39336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 66 -a 1 h -t 0.39336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 66 -a 1 r -t 0.39422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 51 -a 1 + -t 0.39422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 51 -a 1 - -t 0.39422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 51 -a 1 h -t 0.39422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 51 -a 1 r -t 0.39485 -s 3 -d 5 -p cbr -e 210 -c 1 -i 36 -a 1 + -t 0.39625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 81 -a 1 - -t 0.39625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 81 -a 1 h -t 0.39625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 81 -a 1 r -t 0.39711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 67 -a 1 + -t 0.39711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 67 -a 1 - -t 0.39711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 67 -a 1 h -t 0.39711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 67 -a 1 r -t 0.39797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 52 -a 1 + -t 0.39797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 52 -a 1 - -t 0.39797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 52 -a 1 h -t 0.39797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 52 -a 1 r -t 0.39821 -s 3 -d 5 -p cbr -e 210 -c 1 -i 37 -a 1 + -t 0.4 -s 1 -d 2 -p cbr -e 210 -c 1 -i 82 -a 1 - -t 0.4 -s 1 -d 2 -p cbr -e 210 -c 1 -i 82 -a 1 h -t 0.4 -s 1 -d 2 -p cbr -e 210 -c 1 -i 82 -a 1 r -t 0.40086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 68 -a 1 + -t 0.40086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 68 -a 1 - -t 0.40086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 68 -a 1 h -t 0.40086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 68 -a 1 r -t 0.40125 -s 3 -d 2 -p ack -e 40 -c 0 -i 55 -a 0 -S 0 -y {0 0} + -t 0.40125 -s 2 -d 0 -p ack -e 40 -c 0 -i 55 -a 0 -S 0 -y {0 0} - -t 0.40125 -s 2 -d 0 -p ack -e 40 -c 0 -i 55 -a 0 -S 0 -f 0 -m 1 -y {0 0} h -t 0.40125 -s 2 -d 0 -p ack -e 40 -c 0 -i 55 -a 0 -S 0 -y {-1 -1} r -t 0.40157 -s 3 -d 5 -p cbr -e 210 -c 1 -i 38 -a 1 r -t 0.40172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 53 -a 1 + -t 0.40172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 53 -a 1 - -t 0.40172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 53 -a 1 h -t 0.40172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 53 -a 1 + -t 0.40375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 83 -a 1 - -t 0.40375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 83 -a 1 h -t 0.40375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 83 -a 1 r -t 0.40461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 69 -a 1 + -t 0.40461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 69 -a 1 - -t 0.40461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 69 -a 1 h -t 0.40461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 69 -a 1 r -t 0.40493 -s 3 -d 5 -p cbr -e 210 -c 1 -i 39 -a 1 r -t 0.40547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 54 -a 1 + -t 0.40547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 54 -a 1 - -t 0.40547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 54 -a 1 h -t 0.40547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 54 -a 1 + -t 0.4075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 84 -a 1 - -t 0.4075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 84 -a 1 h -t 0.4075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 84 -a 1 r -t 0.40829 -s 3 -d 5 -p cbr -e 210 -c 1 -i 40 -a 1 r -t 0.40836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 70 -a 1 + -t 0.40836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 70 -a 1 - -t 0.40836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 70 -a 1 h -t 0.40836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 70 -a 1 r -t 0.40922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 56 -a 1 + -t 0.40922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 56 -a 1 - -t 0.40922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 56 -a 1 h -t 0.40922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 56 -a 1 + -t 0.41125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 85 -a 1 - -t 0.41125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 85 -a 1 h -t 0.41125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 85 -a 1 r -t 0.41165 -s 3 -d 5 -p cbr -e 210 -c 1 -i 41 -a 1 r -t 0.41211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 71 -a 1 + -t 0.41211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 71 -a 1 - -t 0.41211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 71 -a 1 h -t 0.41211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 71 -a 1 r -t 0.41297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 57 -a 1 + -t 0.41297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 57 -a 1 - -t 0.41297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 57 -a 1 h -t 0.41297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 57 -a 1 + -t 0.415 -s 1 -d 2 -p cbr -e 210 -c 1 -i 86 -a 1 - -t 0.415 -s 1 -d 2 -p cbr -e 210 -c 1 -i 86 -a 1 h -t 0.415 -s 1 -d 2 -p cbr -e 210 -c 1 -i 86 -a 1 r -t 0.41501 -s 3 -d 5 -p cbr -e 210 -c 1 -i 42 -a 1 r -t 0.41586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 72 -a 1 + -t 0.41586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 72 -a 1 - -t 0.41586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 72 -a 1 h -t 0.41586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 72 -a 1 r -t 0.41672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 58 -a 1 + -t 0.41672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 58 -a 1 - -t 0.41672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 58 -a 1 h -t 0.41672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 58 -a 1 r -t 0.41837 -s 3 -d 5 -p cbr -e 210 -c 1 -i 43 -a 1 + -t 0.41875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 87 -a 1 - -t 0.41875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 87 -a 1 h -t 0.41875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 87 -a 1 r -t 0.41961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 73 -a 1 + -t 0.41961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 73 -a 1 - -t 0.41961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 73 -a 1 h -t 0.41961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 73 -a 1 r -t 0.42047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 59 -a 1 + -t 0.42047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 59 -a 1 - -t 0.42047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 59 -a 1 h -t 0.42047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 59 -a 1 r -t 0.42173 -s 3 -d 5 -p cbr -e 210 -c 1 -i 44 -a 1 + -t 0.4225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 88 -a 1 - -t 0.4225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 88 -a 1 h -t 0.4225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 88 -a 1 r -t 0.42336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 74 -a 1 + -t 0.42336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 74 -a 1 - -t 0.42336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 74 -a 1 h -t 0.42336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 74 -a 1 r -t 0.42422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 60 -a 1 + -t 0.42422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 60 -a 1 - -t 0.42422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 60 -a 1 h -t 0.42422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 60 -a 1 r -t 0.42509 -s 3 -d 5 -p cbr -e 210 -c 1 -i 45 -a 1 + -t 0.42625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 89 -a 1 - -t 0.42625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 89 -a 1 h -t 0.42625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 89 -a 1 r -t 0.42711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 75 -a 1 + -t 0.42711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 75 -a 1 - -t 0.42711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 75 -a 1 h -t 0.42711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 75 -a 1 r -t 0.42797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 61 -a 1 + -t 0.42797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 61 -a 1 - -t 0.42797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 61 -a 1 h -t 0.42797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 61 -a 1 r -t 0.42883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 46 -a 1 + -t 0.43 -s 1 -d 2 -p cbr -e 210 -c 1 -i 90 -a 1 - -t 0.43 -s 1 -d 2 -p cbr -e 210 -c 1 -i 90 -a 1 h -t 0.43 -s 1 -d 2 -p cbr -e 210 -c 1 -i 90 -a 1 r -t 0.43086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 76 -a 1 + -t 0.43086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 76 -a 1 - -t 0.43086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 76 -a 1 h -t 0.43086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 76 -a 1 r -t 0.43172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 62 -a 1 + -t 0.43172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 62 -a 1 - -t 0.43172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 62 -a 1 h -t 0.43172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 62 -a 1 r -t 0.43258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 47 -a 1 + -t 0.43375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 91 -a 1 - -t 0.43375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 91 -a 1 h -t 0.43375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 91 -a 1 r -t 0.43461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 77 -a 1 + -t 0.43461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 77 -a 1 - -t 0.43461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 77 -a 1 h -t 0.43461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 77 -a 1 r -t 0.43547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 63 -a 1 + -t 0.43547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 63 -a 1 - -t 0.43547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 63 -a 1 h -t 0.43547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 63 -a 1 r -t 0.43633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 48 -a 1 + -t 0.4375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 92 -a 1 - -t 0.4375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 92 -a 1 h -t 0.4375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 92 -a 1 r -t 0.43836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 78 -a 1 + -t 0.43836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 78 -a 1 - -t 0.43836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 78 -a 1 h -t 0.43836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 78 -a 1 r -t 0.43922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 64 -a 1 + -t 0.43922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 64 -a 1 - -t 0.43922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 64 -a 1 h -t 0.43922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 64 -a 1 r -t 0.44008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 49 -a 1 + -t 0.44125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 93 -a 1 - -t 0.44125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 93 -a 1 h -t 0.44125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 93 -a 1 r -t 0.44211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 79 -a 1 + -t 0.44211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 79 -a 1 - -t 0.44211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 79 -a 1 h -t 0.44211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 79 -a 1 r -t 0.44297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 65 -a 1 + -t 0.44297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 65 -a 1 - -t 0.44297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 65 -a 1 h -t 0.44297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 65 -a 1 r -t 0.44383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 50 -a 1 + -t 0.445 -s 1 -d 2 -p cbr -e 210 -c 1 -i 94 -a 1 - -t 0.445 -s 1 -d 2 -p cbr -e 210 -c 1 -i 94 -a 1 h -t 0.445 -s 1 -d 2 -p cbr -e 210 -c 1 -i 94 -a 1 r -t 0.44586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 80 -a 1 + -t 0.44586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 80 -a 1 - -t 0.44586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 80 -a 1 h -t 0.44586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 80 -a 1 r -t 0.44672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 66 -a 1 + -t 0.44672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 66 -a 1 - -t 0.44672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 66 -a 1 h -t 0.44672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 66 -a 1 r -t 0.44758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 51 -a 1 + -t 0.44875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 95 -a 1 - -t 0.44875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 95 -a 1 h -t 0.44875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 95 -a 1 r -t 0.44961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 81 -a 1 + -t 0.44961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 81 -a 1 - -t 0.44961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 81 -a 1 h -t 0.44961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 81 -a 1 v -t 0.45000000000000001 sim_annotation 0.45000000000000001 8 Send Packet_3,4,5,6 : Increase window size to 4 r -t 0.45047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 67 -a 1 + -t 0.45047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 67 -a 1 - -t 0.45047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 67 -a 1 h -t 0.45047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 67 -a 1 r -t 0.45133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 52 -a 1 r -t 0.45189 -s 2 -d 0 -p ack -e 40 -c 0 -i 55 -a 0 -S 0 -y {0 0} f -t 0.45189000000000012 -s 0 -d 4 -n cwnd_ -a tcp -v 2.000000 -o 1.000000 -T v + -t 0.45189 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 96 -a 0 -S 0 -f 0 -m 0 -y {1 1} - -t 0.45189 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 96 -a 0 -S 0 -y {1 1} h -t 0.45189 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 96 -a 0 -S 0 -y {-1 -1} + -t 0.45189 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 97 -a 0 -S 0 -f 0 -m 0 -y {2 2} + -t 0.4525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 98 -a 1 - -t 0.4525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 98 -a 1 h -t 0.4525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 98 -a 1 r -t 0.45336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 82 -a 1 + -t 0.45336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 82 -a 1 - -t 0.45336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 82 -a 1 h -t 0.45336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 82 -a 1 r -t 0.45422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 68 -a 1 + -t 0.45422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 68 -a 1 - -t 0.45422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 68 -a 1 h -t 0.45422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 68 -a 1 r -t 0.45508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 53 -a 1 + -t 0.45625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 99 -a 1 - -t 0.45625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 99 -a 1 h -t 0.45625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 99 -a 1 r -t 0.45711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 83 -a 1 + -t 0.45711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 83 -a 1 - -t 0.45711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 83 -a 1 h -t 0.45711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 83 -a 1 r -t 0.45797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 69 -a 1 + -t 0.45797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 69 -a 1 - -t 0.45797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 69 -a 1 h -t 0.45797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 69 -a 1 r -t 0.45883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 54 -a 1 + -t 0.46 -s 1 -d 2 -p cbr -e 210 -c 1 -i 100 -a 1 - -t 0.46 -s 1 -d 2 -p cbr -e 210 -c 1 -i 100 -a 1 h -t 0.46 -s 1 -d 2 -p cbr -e 210 -c 1 -i 100 -a 1 r -t 0.46086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 84 -a 1 + -t 0.46086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 84 -a 1 - -t 0.46086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 84 -a 1 h -t 0.46086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 84 -a 1 r -t 0.46172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 70 -a 1 + -t 0.46172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 70 -a 1 - -t 0.46172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 70 -a 1 h -t 0.46172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 70 -a 1 r -t 0.46258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 56 -a 1 + -t 0.46375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 101 -a 1 - -t 0.46375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 101 -a 1 h -t 0.46375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 101 -a 1 r -t 0.46461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 85 -a 1 + -t 0.46461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 85 -a 1 - -t 0.46461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 85 -a 1 h -t 0.46461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 85 -a 1 r -t 0.46547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 71 -a 1 + -t 0.46547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 71 -a 1 - -t 0.46547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 71 -a 1 h -t 0.46547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 71 -a 1 r -t 0.46633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 57 -a 1 + -t 0.4675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 102 -a 1 - -t 0.4675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 102 -a 1 h -t 0.4675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 102 -a 1 - -t 0.46789 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 97 -a 0 -S 0 -y {2 2} h -t 0.46789 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 97 -a 0 -S 0 -y {-1 -1} r -t 0.46836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 86 -a 1 + -t 0.46836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 86 -a 1 - -t 0.46836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 86 -a 1 h -t 0.46836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 86 -a 1 r -t 0.46922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 72 -a 1 + -t 0.46922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 72 -a 1 - -t 0.46922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 72 -a 1 h -t 0.46922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 72 -a 1 r -t 0.47008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 58 -a 1 + -t 0.47125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 103 -a 1 - -t 0.47125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 103 -a 1 h -t 0.47125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 103 -a 1 r -t 0.47211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 87 -a 1 + -t 0.47211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 87 -a 1 - -t 0.47211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 87 -a 1 h -t 0.47211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 87 -a 1 r -t 0.47297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 73 -a 1 + -t 0.47297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 73 -a 1 - -t 0.47297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 73 -a 1 h -t 0.47297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 73 -a 1 r -t 0.47383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 59 -a 1 + -t 0.475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 104 -a 1 - -t 0.475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 104 -a 1 h -t 0.475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 104 -a 1 r -t 0.47586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 88 -a 1 + -t 0.47586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 88 -a 1 - -t 0.47586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 88 -a 1 h -t 0.47586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 88 -a 1 r -t 0.47672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 74 -a 1 + -t 0.47672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 74 -a 1 - -t 0.47672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 74 -a 1 h -t 0.47672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 74 -a 1 r -t 0.47758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 60 -a 1 + -t 0.47875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 105 -a 1 - -t 0.47875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 105 -a 1 h -t 0.47875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 105 -a 1 r -t 0.47961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 89 -a 1 + -t 0.47961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 89 -a 1 - -t 0.47961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 89 -a 1 h -t 0.47961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 89 -a 1 r -t 0.48047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 75 -a 1 + -t 0.48047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 75 -a 1 - -t 0.48047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 75 -a 1 h -t 0.48047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 75 -a 1 r -t 0.48133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 61 -a 1 + -t 0.4825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 106 -a 1 - -t 0.4825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 106 -a 1 h -t 0.4825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 106 -a 1 r -t 0.48336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 90 -a 1 + -t 0.48336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 90 -a 1 - -t 0.48336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 90 -a 1 h -t 0.48336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 90 -a 1 r -t 0.48422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 76 -a 1 + -t 0.48422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 76 -a 1 - -t 0.48422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 76 -a 1 h -t 0.48422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 76 -a 1 r -t 0.48508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 62 -a 1 + -t 0.48625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 107 -a 1 - -t 0.48625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 107 -a 1 h -t 0.48625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 107 -a 1 r -t 0.48711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 91 -a 1 + -t 0.48711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 91 -a 1 - -t 0.48711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 91 -a 1 h -t 0.48711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 91 -a 1 r -t 0.48797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 77 -a 1 + -t 0.48797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 77 -a 1 - -t 0.48797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 77 -a 1 h -t 0.48797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 77 -a 1 r -t 0.48883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 63 -a 1 + -t 0.49 -s 1 -d 2 -p cbr -e 210 -c 1 -i 108 -a 1 - -t 0.49 -s 1 -d 2 -p cbr -e 210 -c 1 -i 108 -a 1 h -t 0.49 -s 1 -d 2 -p cbr -e 210 -c 1 -i 108 -a 1 r -t 0.49086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 92 -a 1 + -t 0.49086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 92 -a 1 - -t 0.49086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 92 -a 1 h -t 0.49086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 92 -a 1 r -t 0.49172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 78 -a 1 + -t 0.49172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 78 -a 1 - -t 0.49172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 78 -a 1 h -t 0.49172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 78 -a 1 r -t 0.49258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 64 -a 1 + -t 0.49375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 109 -a 1 - -t 0.49375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 109 -a 1 h -t 0.49375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 109 -a 1 r -t 0.49461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 93 -a 1 + -t 0.49461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 93 -a 1 - -t 0.49461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 93 -a 1 h -t 0.49461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 93 -a 1 r -t 0.49547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 79 -a 1 + -t 0.49547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 79 -a 1 - -t 0.49547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 79 -a 1 h -t 0.49547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 79 -a 1 r -t 0.49633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 65 -a 1 + -t 0.4975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 110 -a 1 - -t 0.4975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 110 -a 1 h -t 0.4975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 110 -a 1 r -t 0.49836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 94 -a 1 + -t 0.49836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 94 -a 1 - -t 0.49836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 94 -a 1 h -t 0.49836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 94 -a 1 r -t 0.49922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 80 -a 1 + -t 0.49922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 80 -a 1 - -t 0.49922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 80 -a 1 h -t 0.49922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 80 -a 1 r -t 0.50008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 66 -a 1 + -t 0.50125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 111 -a 1 - -t 0.50125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 111 -a 1 h -t 0.50125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 111 -a 1 r -t 0.50211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 95 -a 1 + -t 0.50211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 95 -a 1 - -t 0.50211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 95 -a 1 h -t 0.50211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 95 -a 1 r -t 0.50297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 81 -a 1 + -t 0.50297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 81 -a 1 - -t 0.50297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 81 -a 1 h -t 0.50297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 81 -a 1 r -t 0.50383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 67 -a 1 + -t 0.505 -s 1 -d 2 -p cbr -e 210 -c 1 -i 112 -a 1 - -t 0.505 -s 1 -d 2 -p cbr -e 210 -c 1 -i 112 -a 1 h -t 0.505 -s 1 -d 2 -p cbr -e 210 -c 1 -i 112 -a 1 r -t 0.50586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 98 -a 1 + -t 0.50586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 98 -a 1 - -t 0.50586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 98 -a 1 h -t 0.50586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 98 -a 1 r -t 0.50672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 82 -a 1 + -t 0.50672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 82 -a 1 - -t 0.50672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 82 -a 1 h -t 0.50672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 82 -a 1 r -t 0.50758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 68 -a 1 + -t 0.50875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 113 -a 1 - -t 0.50875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 113 -a 1 h -t 0.50875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 113 -a 1 r -t 0.50961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 99 -a 1 + -t 0.50961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 99 -a 1 - -t 0.50961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 99 -a 1 h -t 0.50961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 99 -a 1 r -t 0.51047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 83 -a 1 + -t 0.51047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 83 -a 1 - -t 0.51047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 83 -a 1 h -t 0.51047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 83 -a 1 r -t 0.51133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 69 -a 1 + -t 0.5125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 114 -a 1 - -t 0.5125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 114 -a 1 h -t 0.5125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 114 -a 1 r -t 0.51336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 100 -a 1 + -t 0.51336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 100 -a 1 - -t 0.51336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 100 -a 1 h -t 0.51336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 100 -a 1 r -t 0.51422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 84 -a 1 + -t 0.51422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 84 -a 1 - -t 0.51422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 84 -a 1 h -t 0.51422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 84 -a 1 r -t 0.51508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 70 -a 1 + -t 0.51625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 115 -a 1 - -t 0.51625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 115 -a 1 h -t 0.51625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 115 -a 1 r -t 0.51711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 101 -a 1 + -t 0.51711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 101 -a 1 - -t 0.51711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 101 -a 1 h -t 0.51711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 101 -a 1 r -t 0.51789 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 96 -a 0 -S 0 -y {1 1} + -t 0.51789 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 96 -a 0 -S 0 -y {1 1} r -t 0.51797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 85 -a 1 + -t 0.51797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 85 -a 1 - -t 0.51797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 85 -a 1 h -t 0.51797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 85 -a 1 r -t 0.51883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 71 -a 1 + -t 0.52 -s 1 -d 2 -p cbr -e 210 -c 1 -i 116 -a 1 - -t 0.52 -s 1 -d 2 -p cbr -e 210 -c 1 -i 116 -a 1 h -t 0.52 -s 1 -d 2 -p cbr -e 210 -c 1 -i 116 -a 1 v -t 0.52000000000000002 sim_annotation 0.52000000000000002 9 Packet_5,6 are lost - -t 0.52047 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 96 -a 0 -S 0 -y {1 1} h -t 0.52047 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 96 -a 0 -S 0 -y {-1 -1} r -t 0.52086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 102 -a 1 + -t 0.52086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 102 -a 1 r -t 0.52172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 86 -a 1 + -t 0.52172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 86 -a 1 - -t 0.52172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 86 -a 1 h -t 0.52172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 86 -a 1 r -t 0.52258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 72 -a 1 + -t 0.52375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 117 -a 1 - -t 0.52375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 117 -a 1 h -t 0.52375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 117 -a 1 r -t 0.52461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 103 -a 1 + -t 0.52461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 103 -a 1 r -t 0.52547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 87 -a 1 + -t 0.52547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 87 -a 1 - -t 0.52547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 87 -a 1 h -t 0.52547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 87 -a 1 r -t 0.52633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 73 -a 1 + -t 0.5275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 118 -a 1 - -t 0.5275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 118 -a 1 h -t 0.5275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 118 -a 1 r -t 0.52836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 104 -a 1 + -t 0.52836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 104 -a 1 r -t 0.52922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 88 -a 1 + -t 0.52922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 88 -a 1 - -t 0.52922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 88 -a 1 h -t 0.52922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 88 -a 1 r -t 0.53008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 74 -a 1 + -t 0.53125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 119 -a 1 - -t 0.53125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 119 -a 1 h -t 0.53125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 119 -a 1 r -t 0.53211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 105 -a 1 + -t 0.53211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 105 -a 1 r -t 0.53297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 89 -a 1 + -t 0.53297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 89 -a 1 - -t 0.53297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 89 -a 1 h -t 0.53297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 89 -a 1 r -t 0.53383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 75 -a 1 r -t 0.53389 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 97 -a 0 -S 0 -y {2 2} + -t 0.53389 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 97 -a 0 -S 0 -y {2 2} + -t 0.535 -s 1 -d 2 -p cbr -e 210 -c 1 -i 120 -a 1 - -t 0.535 -s 1 -d 2 -p cbr -e 210 -c 1 -i 120 -a 1 h -t 0.535 -s 1 -d 2 -p cbr -e 210 -c 1 -i 120 -a 1 r -t 0.53586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 106 -a 1 + -t 0.53586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 106 -a 1 - -t 0.53647 -s 2 -d 3 -p cbr -e 210 -c 1 -i 102 -a 1 h -t 0.53647 -s 2 -d 3 -p cbr -e 210 -c 1 -i 102 -a 1 r -t 0.53672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 90 -a 1 + -t 0.53672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 90 -a 1 - -t 0.53672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 90 -a 1 h -t 0.53672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 90 -a 1 r -t 0.53758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 76 -a 1 + -t 0.53875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 121 -a 1 - -t 0.53875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 121 -a 1 h -t 0.53875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 121 -a 1 r -t 0.53961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 107 -a 1 + -t 0.53961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 107 -a 1 - -t 0.53983 -s 2 -d 3 -p cbr -e 210 -c 1 -i 103 -a 1 h -t 0.53983 -s 2 -d 3 -p cbr -e 210 -c 1 -i 103 -a 1 r -t 0.54047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 91 -a 1 + -t 0.54047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 91 -a 1 - -t 0.54047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 91 -a 1 h -t 0.54047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 91 -a 1 r -t 0.54133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 77 -a 1 + -t 0.5425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 122 -a 1 - -t 0.5425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 122 -a 1 h -t 0.5425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 122 -a 1 - -t 0.54319 -s 2 -d 3 -p cbr -e 210 -c 1 -i 104 -a 1 h -t 0.54319 -s 2 -d 3 -p cbr -e 210 -c 1 -i 104 -a 1 r -t 0.54336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 108 -a 1 + -t 0.54336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 108 -a 1 r -t 0.54422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 92 -a 1 + -t 0.54422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 92 -a 1 - -t 0.54422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 92 -a 1 h -t 0.54422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 92 -a 1 r -t 0.54508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 78 -a 1 + -t 0.54625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 123 -a 1 - -t 0.54625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 123 -a 1 h -t 0.54625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 123 -a 1 - -t 0.54655 -s 2 -d 3 -p cbr -e 210 -c 1 -i 105 -a 1 h -t 0.54655 -s 2 -d 3 -p cbr -e 210 -c 1 -i 105 -a 1 r -t 0.54711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 109 -a 1 + -t 0.54711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 109 -a 1 r -t 0.54797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 93 -a 1 + -t 0.54797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 93 -a 1 - -t 0.54797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 93 -a 1 h -t 0.54797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 93 -a 1 r -t 0.54883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 79 -a 1 - -t 0.54991 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 97 -a 0 -S 0 -y {2 2} h -t 0.54991 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 97 -a 0 -S 0 -y {-1 -1} + -t 0.55 -s 1 -d 2 -p cbr -e 210 -c 1 -i 124 -a 1 - -t 0.55 -s 1 -d 2 -p cbr -e 210 -c 1 -i 124 -a 1 h -t 0.55 -s 1 -d 2 -p cbr -e 210 -c 1 -i 124 -a 1 r -t 0.55086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 110 -a 1 + -t 0.55086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 110 -a 1 r -t 0.55172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 94 -a 1 + -t 0.55172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 94 -a 1 - -t 0.55172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 94 -a 1 h -t 0.55172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 94 -a 1 r -t 0.55258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 80 -a 1 + -t 0.55375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 125 -a 1 - -t 0.55375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 125 -a 1 h -t 0.55375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 125 -a 1 r -t 0.55461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 111 -a 1 + -t 0.55461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 111 -a 1 r -t 0.55547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 95 -a 1 + -t 0.55547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 95 -a 1 - -t 0.55547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 95 -a 1 h -t 0.55547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 95 -a 1 r -t 0.55633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 81 -a 1 + -t 0.5575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 126 -a 1 - -t 0.5575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 126 -a 1 h -t 0.5575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 126 -a 1 r -t 0.55836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 112 -a 1 + -t 0.55836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 112 -a 1 r -t 0.55922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 98 -a 1 + -t 0.55922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 98 -a 1 - -t 0.55922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 98 -a 1 h -t 0.55922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 98 -a 1 r -t 0.56008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 82 -a 1 + -t 0.56125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 127 -a 1 - -t 0.56125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 127 -a 1 h -t 0.56125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 127 -a 1 r -t 0.56211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 113 -a 1 + -t 0.56211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 113 -a 1 r -t 0.56297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 99 -a 1 + -t 0.56297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 99 -a 1 - -t 0.56297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 99 -a 1 h -t 0.56297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 99 -a 1 r -t 0.56383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 83 -a 1 + -t 0.565 -s 1 -d 2 -p cbr -e 210 -c 1 -i 128 -a 1 - -t 0.565 -s 1 -d 2 -p cbr -e 210 -c 1 -i 128 -a 1 h -t 0.565 -s 1 -d 2 -p cbr -e 210 -c 1 -i 128 -a 1 r -t 0.56586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 114 -a 1 + -t 0.56586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 114 -a 1 - -t 0.56591 -s 2 -d 3 -p cbr -e 210 -c 1 -i 106 -a 1 h -t 0.56591 -s 2 -d 3 -p cbr -e 210 -c 1 -i 106 -a 1 r -t 0.56672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 100 -a 1 + -t 0.56672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 100 -a 1 - -t 0.56672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 100 -a 1 h -t 0.56672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 100 -a 1 r -t 0.56758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 84 -a 1 + -t 0.56875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 129 -a 1 - -t 0.56875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 129 -a 1 h -t 0.56875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 129 -a 1 - -t 0.56927 -s 2 -d 3 -p cbr -e 210 -c 1 -i 107 -a 1 h -t 0.56927 -s 2 -d 3 -p cbr -e 210 -c 1 -i 107 -a 1 r -t 0.56961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 115 -a 1 + -t 0.56961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 115 -a 1 r -t 0.57047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 101 -a 1 + -t 0.57047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 101 -a 1 - -t 0.57047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 101 -a 1 h -t 0.57047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 101 -a 1 r -t 0.57133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 85 -a 1 + -t 0.5725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 130 -a 1 - -t 0.5725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 130 -a 1 h -t 0.5725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 130 -a 1 - -t 0.57263 -s 2 -d 3 -p cbr -e 210 -c 1 -i 108 -a 1 h -t 0.57263 -s 2 -d 3 -p cbr -e 210 -c 1 -i 108 -a 1 r -t 0.57336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 116 -a 1 + -t 0.57336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 116 -a 1 r -t 0.57508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 86 -a 1 - -t 0.57599 -s 2 -d 3 -p cbr -e 210 -c 1 -i 109 -a 1 h -t 0.57599 -s 2 -d 3 -p cbr -e 210 -c 1 -i 109 -a 1 + -t 0.57625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 131 -a 1 - -t 0.57625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 131 -a 1 h -t 0.57625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 131 -a 1 r -t 0.57711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 117 -a 1 + -t 0.57711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 117 -a 1 r -t 0.57883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 87 -a 1 - -t 0.57935 -s 2 -d 3 -p cbr -e 210 -c 1 -i 110 -a 1 h -t 0.57935 -s 2 -d 3 -p cbr -e 210 -c 1 -i 110 -a 1 + -t 0.58 -s 1 -d 2 -p cbr -e 210 -c 1 -i 132 -a 1 - -t 0.58 -s 1 -d 2 -p cbr -e 210 -c 1 -i 132 -a 1 h -t 0.58 -s 1 -d 2 -p cbr -e 210 -c 1 -i 132 -a 1 v -t 0.57999999999999996 sim_annotation 0.57999999999999996 10 Ack_3,4 : 2 acks are coming r -t 0.58086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 118 -a 1 + -t 0.58086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 118 -a 1 r -t 0.58258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 88 -a 1 - -t 0.58271 -s 2 -d 3 -p cbr -e 210 -c 1 -i 111 -a 1 h -t 0.58271 -s 2 -d 3 -p cbr -e 210 -c 1 -i 111 -a 1 + -t 0.58375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 133 -a 1 - -t 0.58375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 133 -a 1 h -t 0.58375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 133 -a 1 r -t 0.58461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 119 -a 1 + -t 0.58461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 119 -a 1 - -t 0.58607 -s 2 -d 3 -p cbr -e 210 -c 1 -i 112 -a 1 h -t 0.58607 -s 2 -d 3 -p cbr -e 210 -c 1 -i 112 -a 1 r -t 0.58633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 89 -a 1 r -t 0.58647 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 96 -a 0 -S 0 -y {1 1} + -t 0.58647 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 96 -a 0 -S 0 -y {1 1} - -t 0.58647 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 96 -a 0 -S 0 -y {1 1} h -t 0.58647 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 96 -a 0 -S 0 -y {-1 -1} + -t 0.5875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 134 -a 1 - -t 0.5875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 134 -a 1 h -t 0.5875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 134 -a 1 r -t 0.58836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 120 -a 1 + -t 0.58836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 120 -a 1 - -t 0.58943 -s 2 -d 3 -p cbr -e 210 -c 1 -i 113 -a 1 h -t 0.58943 -s 2 -d 3 -p cbr -e 210 -c 1 -i 113 -a 1 r -t 0.58983 -s 2 -d 3 -p cbr -e 210 -c 1 -i 102 -a 1 + -t 0.58983 -s 3 -d 5 -p cbr -e 210 -c 1 -i 102 -a 1 - -t 0.58983 -s 3 -d 5 -p cbr -e 210 -c 1 -i 102 -a 1 h -t 0.58983 -s 3 -d 5 -p cbr -e 210 -c 1 -i 102 -a 1 r -t 0.59008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 90 -a 1 + -t 0.59125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 135 -a 1 - -t 0.59125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 135 -a 1 h -t 0.59125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 135 -a 1 r -t 0.59211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 121 -a 1 + -t 0.59211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 121 -a 1 - -t 0.59279 -s 2 -d 3 -p cbr -e 210 -c 1 -i 114 -a 1 h -t 0.59279 -s 2 -d 3 -p cbr -e 210 -c 1 -i 114 -a 1 r -t 0.59319 -s 2 -d 3 -p cbr -e 210 -c 1 -i 103 -a 1 + -t 0.59319 -s 3 -d 5 -p cbr -e 210 -c 1 -i 103 -a 1 - -t 0.59319 -s 3 -d 5 -p cbr -e 210 -c 1 -i 103 -a 1 h -t 0.59319 -s 3 -d 5 -p cbr -e 210 -c 1 -i 103 -a 1 r -t 0.59383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 91 -a 1 + -t 0.595 -s 1 -d 2 -p cbr -e 210 -c 1 -i 136 -a 1 - -t 0.595 -s 1 -d 2 -p cbr -e 210 -c 1 -i 136 -a 1 h -t 0.595 -s 1 -d 2 -p cbr -e 210 -c 1 -i 136 -a 1 r -t 0.59586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 122 -a 1 + -t 0.59586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 122 -a 1 - -t 0.59615 -s 2 -d 3 -p cbr -e 210 -c 1 -i 115 -a 1 h -t 0.59615 -s 2 -d 3 -p cbr -e 210 -c 1 -i 115 -a 1 r -t 0.59655 -s 2 -d 3 -p cbr -e 210 -c 1 -i 104 -a 1 + -t 0.59655 -s 3 -d 5 -p cbr -e 210 -c 1 -i 104 -a 1 - -t 0.59655 -s 3 -d 5 -p cbr -e 210 -c 1 -i 104 -a 1 h -t 0.59655 -s 3 -d 5 -p cbr -e 210 -c 1 -i 104 -a 1 r -t 0.59758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 92 -a 1 + -t 0.59875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 137 -a 1 - -t 0.59875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 137 -a 1 h -t 0.59875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 137 -a 1 - -t 0.59951 -s 2 -d 3 -p cbr -e 210 -c 1 -i 116 -a 1 h -t 0.59951 -s 2 -d 3 -p cbr -e 210 -c 1 -i 116 -a 1 r -t 0.59961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 123 -a 1 + -t 0.59961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 123 -a 1 r -t 0.59991 -s 2 -d 3 -p cbr -e 210 -c 1 -i 105 -a 1 + -t 0.59991 -s 3 -d 5 -p cbr -e 210 -c 1 -i 105 -a 1 - -t 0.59991 -s 3 -d 5 -p cbr -e 210 -c 1 -i 105 -a 1 h -t 0.59991 -s 3 -d 5 -p cbr -e 210 -c 1 -i 105 -a 1 r -t 0.60133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 93 -a 1 + -t 0.6025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 138 -a 1 - -t 0.6025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 138 -a 1 h -t 0.6025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 138 -a 1 - -t 0.60287 -s 2 -d 3 -p cbr -e 210 -c 1 -i 117 -a 1 h -t 0.60287 -s 2 -d 3 -p cbr -e 210 -c 1 -i 117 -a 1 r -t 0.60336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 124 -a 1 + -t 0.60336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 124 -a 1 r -t 0.60508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 94 -a 1 - -t 0.60623 -s 2 -d 3 -p cbr -e 210 -c 1 -i 118 -a 1 h -t 0.60623 -s 2 -d 3 -p cbr -e 210 -c 1 -i 118 -a 1 + -t 0.60625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 139 -a 1 - -t 0.60625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 139 -a 1 h -t 0.60625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 139 -a 1 r -t 0.60711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 125 -a 1 + -t 0.60711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 125 -a 1 r -t 0.60883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 95 -a 1 - -t 0.60959 -s 2 -d 3 -p cbr -e 210 -c 1 -i 119 -a 1 h -t 0.60959 -s 2 -d 3 -p cbr -e 210 -c 1 -i 119 -a 1 + -t 0.61 -s 1 -d 2 -p cbr -e 210 -c 1 -i 140 -a 1 - -t 0.61 -s 1 -d 2 -p cbr -e 210 -c 1 -i 140 -a 1 h -t 0.61 -s 1 -d 2 -p cbr -e 210 -c 1 -i 140 -a 1 r -t 0.61086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 126 -a 1 + -t 0.61086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 126 -a 1 r -t 0.61258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 98 -a 1 - -t 0.61295 -s 2 -d 3 -p cbr -e 210 -c 1 -i 120 -a 1 h -t 0.61295 -s 2 -d 3 -p cbr -e 210 -c 1 -i 120 -a 1 + -t 0.61375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 141 -a 1 - -t 0.61375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 141 -a 1 h -t 0.61375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 141 -a 1 r -t 0.61461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 127 -a 1 + -t 0.61461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 127 -a 1 r -t 0.61591 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 97 -a 0 -S 0 -y {2 2} + -t 0.61591 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 97 -a 0 -S 0 -y {2 2} - -t 0.61591 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 97 -a 0 -S 0 -y {2 2} h -t 0.61591 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 97 -a 0 -S 0 -y {-1 -1} - -t 0.61631 -s 2 -d 3 -p cbr -e 210 -c 1 -i 121 -a 1 h -t 0.61631 -s 2 -d 3 -p cbr -e 210 -c 1 -i 121 -a 1 r -t 0.61633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 99 -a 1 + -t 0.6175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 142 -a 1 - -t 0.6175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 142 -a 1 h -t 0.6175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 142 -a 1 r -t 0.61836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 128 -a 1 + -t 0.61836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 128 -a 1 r -t 0.61927 -s 2 -d 3 -p cbr -e 210 -c 1 -i 106 -a 1 + -t 0.61927 -s 3 -d 5 -p cbr -e 210 -c 1 -i 106 -a 1 - -t 0.61927 -s 3 -d 5 -p cbr -e 210 -c 1 -i 106 -a 1 h -t 0.61927 -s 3 -d 5 -p cbr -e 210 -c 1 -i 106 -a 1 - -t 0.61967 -s 2 -d 3 -p cbr -e 210 -c 1 -i 122 -a 1 h -t 0.61967 -s 2 -d 3 -p cbr -e 210 -c 1 -i 122 -a 1 r -t 0.62008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 100 -a 1 + -t 0.62125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 143 -a 1 - -t 0.62125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 143 -a 1 h -t 0.62125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 143 -a 1 r -t 0.62211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 129 -a 1 + -t 0.62211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 129 -a 1 r -t 0.62263 -s 2 -d 3 -p cbr -e 210 -c 1 -i 107 -a 1 + -t 0.62263 -s 3 -d 5 -p cbr -e 210 -c 1 -i 107 -a 1 - -t 0.62263 -s 3 -d 5 -p cbr -e 210 -c 1 -i 107 -a 1 h -t 0.62263 -s 3 -d 5 -p cbr -e 210 -c 1 -i 107 -a 1 - -t 0.62303 -s 2 -d 3 -p cbr -e 210 -c 1 -i 123 -a 1 h -t 0.62303 -s 2 -d 3 -p cbr -e 210 -c 1 -i 123 -a 1 r -t 0.62383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 101 -a 1 + -t 0.625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 144 -a 1 - -t 0.625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 144 -a 1 h -t 0.625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 144 -a 1 r -t 0.62586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 130 -a 1 + -t 0.62586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 130 -a 1 r -t 0.62599 -s 2 -d 3 -p cbr -e 210 -c 1 -i 108 -a 1 + -t 0.62599 -s 3 -d 5 -p cbr -e 210 -c 1 -i 108 -a 1 - -t 0.62599 -s 3 -d 5 -p cbr -e 210 -c 1 -i 108 -a 1 h -t 0.62599 -s 3 -d 5 -p cbr -e 210 -c 1 -i 108 -a 1 - -t 0.62639 -s 2 -d 3 -p cbr -e 210 -c 1 -i 124 -a 1 h -t 0.62639 -s 2 -d 3 -p cbr -e 210 -c 1 -i 124 -a 1 + -t 0.62875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 145 -a 1 - -t 0.62875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 145 -a 1 h -t 0.62875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 145 -a 1 r -t 0.62935 -s 2 -d 3 -p cbr -e 210 -c 1 -i 109 -a 1 + -t 0.62935 -s 3 -d 5 -p cbr -e 210 -c 1 -i 109 -a 1 - -t 0.62935 -s 3 -d 5 -p cbr -e 210 -c 1 -i 109 -a 1 h -t 0.62935 -s 3 -d 5 -p cbr -e 210 -c 1 -i 109 -a 1 r -t 0.62961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 131 -a 1 + -t 0.62961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 131 -a 1 - -t 0.62975 -s 2 -d 3 -p cbr -e 210 -c 1 -i 125 -a 1 h -t 0.62975 -s 2 -d 3 -p cbr -e 210 -c 1 -i 125 -a 1 v -t 0.63 sim_annotation 0.63 11 Send Packet_7,8,9,10 : Keep window size to 4 + -t 0.6325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 146 -a 1 - -t 0.6325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 146 -a 1 h -t 0.6325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 146 -a 1 r -t 0.63271 -s 2 -d 3 -p cbr -e 210 -c 1 -i 110 -a 1 + -t 0.63271 -s 3 -d 5 -p cbr -e 210 -c 1 -i 110 -a 1 - -t 0.63271 -s 3 -d 5 -p cbr -e 210 -c 1 -i 110 -a 1 h -t 0.63271 -s 3 -d 5 -p cbr -e 210 -c 1 -i 110 -a 1 - -t 0.63311 -s 2 -d 3 -p cbr -e 210 -c 1 -i 126 -a 1 h -t 0.63311 -s 2 -d 3 -p cbr -e 210 -c 1 -i 126 -a 1 r -t 0.63336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 132 -a 1 + -t 0.63336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 132 -a 1 r -t 0.63607 -s 2 -d 3 -p cbr -e 210 -c 1 -i 111 -a 1 + -t 0.63607 -s 3 -d 5 -p cbr -e 210 -c 1 -i 111 -a 1 - -t 0.63607 -s 3 -d 5 -p cbr -e 210 -c 1 -i 111 -a 1 h -t 0.63607 -s 3 -d 5 -p cbr -e 210 -c 1 -i 111 -a 1 + -t 0.63625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 147 -a 1 - -t 0.63625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 147 -a 1 h -t 0.63625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 147 -a 1 - -t 0.63647 -s 2 -d 3 -p cbr -e 210 -c 1 -i 127 -a 1 h -t 0.63647 -s 2 -d 3 -p cbr -e 210 -c 1 -i 127 -a 1 r -t 0.63711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 133 -a 1 + -t 0.63711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 133 -a 1 r -t 0.63943 -s 2 -d 3 -p cbr -e 210 -c 1 -i 112 -a 1 + -t 0.63943 -s 3 -d 5 -p cbr -e 210 -c 1 -i 112 -a 1 - -t 0.63943 -s 3 -d 5 -p cbr -e 210 -c 1 -i 112 -a 1 h -t 0.63943 -s 3 -d 5 -p cbr -e 210 -c 1 -i 112 -a 1 - -t 0.63983 -s 2 -d 3 -p cbr -e 210 -c 1 -i 128 -a 1 h -t 0.63983 -s 2 -d 3 -p cbr -e 210 -c 1 -i 128 -a 1 + -t 0.64 -s 1 -d 2 -p cbr -e 210 -c 1 -i 148 -a 1 - -t 0.64 -s 1 -d 2 -p cbr -e 210 -c 1 -i 148 -a 1 h -t 0.64 -s 1 -d 2 -p cbr -e 210 -c 1 -i 148 -a 1 r -t 0.64086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 134 -a 1 + -t 0.64086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 134 -a 1 r -t 0.64279 -s 2 -d 3 -p cbr -e 210 -c 1 -i 113 -a 1 + -t 0.64279 -s 3 -d 5 -p cbr -e 210 -c 1 -i 113 -a 1 - -t 0.64279 -s 3 -d 5 -p cbr -e 210 -c 1 -i 113 -a 1 h -t 0.64279 -s 3 -d 5 -p cbr -e 210 -c 1 -i 113 -a 1 r -t 0.64319 -s 3 -d 5 -p cbr -e 210 -c 1 -i 102 -a 1 - -t 0.64319 -s 2 -d 3 -p cbr -e 210 -c 1 -i 129 -a 1 h -t 0.64319 -s 2 -d 3 -p cbr -e 210 -c 1 -i 129 -a 1 + -t 0.64375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 149 -a 1 - -t 0.64375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 149 -a 1 h -t 0.64375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 149 -a 1 r -t 0.64461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 135 -a 1 + -t 0.64461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 135 -a 1 r -t 0.64615 -s 2 -d 3 -p cbr -e 210 -c 1 -i 114 -a 1 + -t 0.64615 -s 3 -d 5 -p cbr -e 210 -c 1 -i 114 -a 1 - -t 0.64615 -s 3 -d 5 -p cbr -e 210 -c 1 -i 114 -a 1 h -t 0.64615 -s 3 -d 5 -p cbr -e 210 -c 1 -i 114 -a 1 r -t 0.64655 -s 3 -d 5 -p cbr -e 210 -c 1 -i 103 -a 1 - -t 0.64655 -s 2 -d 3 -p cbr -e 210 -c 1 -i 130 -a 1 h -t 0.64655 -s 2 -d 3 -p cbr -e 210 -c 1 -i 130 -a 1 + -t 0.6475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 150 -a 1 - -t 0.6475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 150 -a 1 h -t 0.6475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 150 -a 1 r -t 0.64836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 136 -a 1 + -t 0.64836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 136 -a 1 r -t 0.64951 -s 2 -d 3 -p cbr -e 210 -c 1 -i 115 -a 1 + -t 0.64951 -s 3 -d 5 -p cbr -e 210 -c 1 -i 115 -a 1 - -t 0.64951 -s 3 -d 5 -p cbr -e 210 -c 1 -i 115 -a 1 h -t 0.64951 -s 3 -d 5 -p cbr -e 210 -c 1 -i 115 -a 1 r -t 0.64991 -s 3 -d 5 -p cbr -e 210 -c 1 -i 104 -a 1 - -t 0.64991 -s 2 -d 3 -p cbr -e 210 -c 1 -i 131 -a 1 h -t 0.64991 -s 2 -d 3 -p cbr -e 210 -c 1 -i 131 -a 1 + -t 0.65125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 151 -a 1 - -t 0.65125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 151 -a 1 h -t 0.65125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 151 -a 1 r -t 0.65211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 137 -a 1 + -t 0.65211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 137 -a 1 r -t 0.65247 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 96 -a 0 -S 0 -y {1 1} + -t 0.65247 -s 4 -d 3 -p ack -e 40 -c 0 -i 152 -a 0 -S 0 -y {1 1} - -t 0.65247 -s 4 -d 3 -p ack -e 40 -c 0 -i 152 -a 0 -S 0 -y {1 1} h -t 0.65247 -s 4 -d 3 -p ack -e 40 -c 0 -i 152 -a 0 -S 0 -y {-1 -1} r -t 0.65287 -s 2 -d 3 -p cbr -e 210 -c 1 -i 116 -a 1 + -t 0.65287 -s 3 -d 5 -p cbr -e 210 -c 1 -i 116 -a 1 - -t 0.65287 -s 3 -d 5 -p cbr -e 210 -c 1 -i 116 -a 1 h -t 0.65287 -s 3 -d 5 -p cbr -e 210 -c 1 -i 116 -a 1 r -t 0.65327 -s 3 -d 5 -p cbr -e 210 -c 1 -i 105 -a 1 - -t 0.65327 -s 2 -d 3 -p cbr -e 210 -c 1 -i 132 -a 1 h -t 0.65327 -s 2 -d 3 -p cbr -e 210 -c 1 -i 132 -a 1 + -t 0.655 -s 1 -d 2 -p cbr -e 210 -c 1 -i 153 -a 1 - -t 0.655 -s 1 -d 2 -p cbr -e 210 -c 1 -i 153 -a 1 h -t 0.655 -s 1 -d 2 -p cbr -e 210 -c 1 -i 153 -a 1 r -t 0.65586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 138 -a 1 + -t 0.65586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 138 -a 1 r -t 0.65623 -s 2 -d 3 -p cbr -e 210 -c 1 -i 117 -a 1 + -t 0.65623 -s 3 -d 5 -p cbr -e 210 -c 1 -i 117 -a 1 - -t 0.65623 -s 3 -d 5 -p cbr -e 210 -c 1 -i 117 -a 1 h -t 0.65623 -s 3 -d 5 -p cbr -e 210 -c 1 -i 117 -a 1 - -t 0.65663 -s 2 -d 3 -p cbr -e 210 -c 1 -i 133 -a 1 h -t 0.65663 -s 2 -d 3 -p cbr -e 210 -c 1 -i 133 -a 1 + -t 0.65875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 154 -a 1 - -t 0.65875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 154 -a 1 h -t 0.65875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 154 -a 1 r -t 0.65959 -s 2 -d 3 -p cbr -e 210 -c 1 -i 118 -a 1 + -t 0.65959 -s 3 -d 5 -p cbr -e 210 -c 1 -i 118 -a 1 - -t 0.65959 -s 3 -d 5 -p cbr -e 210 -c 1 -i 118 -a 1 h -t 0.65959 -s 3 -d 5 -p cbr -e 210 -c 1 -i 118 -a 1 r -t 0.65961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 139 -a 1 + -t 0.65961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 139 -a 1 - -t 0.65999 -s 2 -d 3 -p cbr -e 210 -c 1 -i 134 -a 1 h -t 0.65999 -s 2 -d 3 -p cbr -e 210 -c 1 -i 134 -a 1 + -t 0.6625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 155 -a 1 - -t 0.6625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 155 -a 1 h -t 0.6625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 155 -a 1 r -t 0.66295 -s 2 -d 3 -p cbr -e 210 -c 1 -i 119 -a 1 + -t 0.66295 -s 3 -d 5 -p cbr -e 210 -c 1 -i 119 -a 1 - -t 0.66295 -s 3 -d 5 -p cbr -e 210 -c 1 -i 119 -a 1 h -t 0.66295 -s 3 -d 5 -p cbr -e 210 -c 1 -i 119 -a 1 - -t 0.66335 -s 2 -d 3 -p cbr -e 210 -c 1 -i 135 -a 1 h -t 0.66335 -s 2 -d 3 -p cbr -e 210 -c 1 -i 135 -a 1 r -t 0.66336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 140 -a 1 + -t 0.66336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 140 -a 1 + -t 0.66625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 156 -a 1 - -t 0.66625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 156 -a 1 h -t 0.66625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 156 -a 1 r -t 0.66631 -s 2 -d 3 -p cbr -e 210 -c 1 -i 120 -a 1 + -t 0.66631 -s 3 -d 5 -p cbr -e 210 -c 1 -i 120 -a 1 - -t 0.66631 -s 3 -d 5 -p cbr -e 210 -c 1 -i 120 -a 1 h -t 0.66631 -s 3 -d 5 -p cbr -e 210 -c 1 -i 120 -a 1 - -t 0.66671 -s 2 -d 3 -p cbr -e 210 -c 1 -i 136 -a 1 h -t 0.66671 -s 2 -d 3 -p cbr -e 210 -c 1 -i 136 -a 1 r -t 0.66711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 141 -a 1 + -t 0.66711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 141 -a 1 r -t 0.66967 -s 2 -d 3 -p cbr -e 210 -c 1 -i 121 -a 1 + -t 0.66967 -s 3 -d 5 -p cbr -e 210 -c 1 -i 121 -a 1 - -t 0.66967 -s 3 -d 5 -p cbr -e 210 -c 1 -i 121 -a 1 h -t 0.66967 -s 3 -d 5 -p cbr -e 210 -c 1 -i 121 -a 1 + -t 0.67 -s 1 -d 2 -p cbr -e 210 -c 1 -i 157 -a 1 - -t 0.67 -s 1 -d 2 -p cbr -e 210 -c 1 -i 157 -a 1 h -t 0.67 -s 1 -d 2 -p cbr -e 210 -c 1 -i 157 -a 1 - -t 0.67007 -s 2 -d 3 -p cbr -e 210 -c 1 -i 137 -a 1 h -t 0.67007 -s 2 -d 3 -p cbr -e 210 -c 1 -i 137 -a 1 r -t 0.67086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 142 -a 1 + -t 0.67086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 142 -a 1 r -t 0.67263 -s 3 -d 5 -p cbr -e 210 -c 1 -i 106 -a 1 r -t 0.67303 -s 2 -d 3 -p cbr -e 210 -c 1 -i 122 -a 1 + -t 0.67303 -s 3 -d 5 -p cbr -e 210 -c 1 -i 122 -a 1 - -t 0.67303 -s 3 -d 5 -p cbr -e 210 -c 1 -i 122 -a 1 h -t 0.67303 -s 3 -d 5 -p cbr -e 210 -c 1 -i 122 -a 1 - -t 0.67343 -s 2 -d 3 -p cbr -e 210 -c 1 -i 138 -a 1 h -t 0.67343 -s 2 -d 3 -p cbr -e 210 -c 1 -i 138 -a 1 + -t 0.67375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 158 -a 1 - -t 0.67375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 158 -a 1 h -t 0.67375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 158 -a 1 r -t 0.67461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 143 -a 1 + -t 0.67461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 143 -a 1 r -t 0.67599 -s 3 -d 5 -p cbr -e 210 -c 1 -i 107 -a 1 r -t 0.67639 -s 2 -d 3 -p cbr -e 210 -c 1 -i 123 -a 1 + -t 0.67639 -s 3 -d 5 -p cbr -e 210 -c 1 -i 123 -a 1 - -t 0.67639 -s 3 -d 5 -p cbr -e 210 -c 1 -i 123 -a 1 h -t 0.67639 -s 3 -d 5 -p cbr -e 210 -c 1 -i 123 -a 1 - -t 0.67679 -s 2 -d 3 -p cbr -e 210 -c 1 -i 139 -a 1 h -t 0.67679 -s 2 -d 3 -p cbr -e 210 -c 1 -i 139 -a 1 + -t 0.6775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 159 -a 1 - -t 0.6775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 159 -a 1 h -t 0.6775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 159 -a 1 r -t 0.67836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 144 -a 1 + -t 0.67836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 144 -a 1 r -t 0.67935 -s 3 -d 5 -p cbr -e 210 -c 1 -i 108 -a 1 r -t 0.67975 -s 2 -d 3 -p cbr -e 210 -c 1 -i 124 -a 1 + -t 0.67975 -s 3 -d 5 -p cbr -e 210 -c 1 -i 124 -a 1 - -t 0.67975 -s 3 -d 5 -p cbr -e 210 -c 1 -i 124 -a 1 h -t 0.67975 -s 3 -d 5 -p cbr -e 210 -c 1 -i 124 -a 1 - -t 0.68015 -s 2 -d 3 -p cbr -e 210 -c 1 -i 140 -a 1 h -t 0.68015 -s 2 -d 3 -p cbr -e 210 -c 1 -i 140 -a 1 + -t 0.68125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 160 -a 1 - -t 0.68125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 160 -a 1 h -t 0.68125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 160 -a 1 r -t 0.68191 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 97 -a 0 -S 0 -y {2 2} + -t 0.68191 -s 4 -d 3 -p ack -e 40 -c 0 -i 161 -a 0 -S 0 -y {2 2} - -t 0.68191 -s 4 -d 3 -p ack -e 40 -c 0 -i 161 -a 0 -S 0 -y {2 2} h -t 0.68191 -s 4 -d 3 -p ack -e 40 -c 0 -i 161 -a 0 -S 0 -y {-1 -1} r -t 0.68211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 145 -a 1 + -t 0.68211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 145 -a 1 r -t 0.68271 -s 3 -d 5 -p cbr -e 210 -c 1 -i 109 -a 1 r -t 0.68311 -s 2 -d 3 -p cbr -e 210 -c 1 -i 125 -a 1 + -t 0.68311 -s 3 -d 5 -p cbr -e 210 -c 1 -i 125 -a 1 - -t 0.68311 -s 3 -d 5 -p cbr -e 210 -c 1 -i 125 -a 1 h -t 0.68311 -s 3 -d 5 -p cbr -e 210 -c 1 -i 125 -a 1 - -t 0.68351 -s 2 -d 3 -p cbr -e 210 -c 1 -i 141 -a 1 h -t 0.68351 -s 2 -d 3 -p cbr -e 210 -c 1 -i 141 -a 1 + -t 0.685 -s 1 -d 2 -p cbr -e 210 -c 1 -i 162 -a 1 - -t 0.685 -s 1 -d 2 -p cbr -e 210 -c 1 -i 162 -a 1 h -t 0.685 -s 1 -d 2 -p cbr -e 210 -c 1 -i 162 -a 1 r -t 0.68586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 146 -a 1 + -t 0.68586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 146 -a 1 r -t 0.68607 -s 3 -d 5 -p cbr -e 210 -c 1 -i 110 -a 1 r -t 0.68647 -s 2 -d 3 -p cbr -e 210 -c 1 -i 126 -a 1 + -t 0.68647 -s 3 -d 5 -p cbr -e 210 -c 1 -i 126 -a 1 - -t 0.68647 -s 3 -d 5 -p cbr -e 210 -c 1 -i 126 -a 1 h -t 0.68647 -s 3 -d 5 -p cbr -e 210 -c 1 -i 126 -a 1 - -t 0.68687 -s 2 -d 3 -p cbr -e 210 -c 1 -i 142 -a 1 h -t 0.68687 -s 2 -d 3 -p cbr -e 210 -c 1 -i 142 -a 1 + -t 0.68875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 163 -a 1 - -t 0.68875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 163 -a 1 h -t 0.68875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 163 -a 1 r -t 0.68943 -s 3 -d 5 -p cbr -e 210 -c 1 -i 111 -a 1 r -t 0.68961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 147 -a 1 + -t 0.68961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 147 -a 1 r -t 0.68983 -s 2 -d 3 -p cbr -e 210 -c 1 -i 127 -a 1 + -t 0.68983 -s 3 -d 5 -p cbr -e 210 -c 1 -i 127 -a 1 - -t 0.68983 -s 3 -d 5 -p cbr -e 210 -c 1 -i 127 -a 1 h -t 0.68983 -s 3 -d 5 -p cbr -e 210 -c 1 -i 127 -a 1 - -t 0.69023 -s 2 -d 3 -p cbr -e 210 -c 1 -i 143 -a 1 h -t 0.69023 -s 2 -d 3 -p cbr -e 210 -c 1 -i 143 -a 1 + -t 0.6925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 164 -a 1 - -t 0.6925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 164 -a 1 h -t 0.6925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 164 -a 1 r -t 0.69279 -s 3 -d 5 -p cbr -e 210 -c 1 -i 112 -a 1 r -t 0.69319 -s 2 -d 3 -p cbr -e 210 -c 1 -i 128 -a 1 + -t 0.69319 -s 3 -d 5 -p cbr -e 210 -c 1 -i 128 -a 1 - -t 0.69319 -s 3 -d 5 -p cbr -e 210 -c 1 -i 128 -a 1 h -t 0.69319 -s 3 -d 5 -p cbr -e 210 -c 1 -i 128 -a 1 r -t 0.69336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 148 -a 1 + -t 0.69336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 148 -a 1 - -t 0.69359 -s 2 -d 3 -p cbr -e 210 -c 1 -i 144 -a 1 h -t 0.69359 -s 2 -d 3 -p cbr -e 210 -c 1 -i 144 -a 1 r -t 0.69615 -s 3 -d 5 -p cbr -e 210 -c 1 -i 113 -a 1 + -t 0.69625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 165 -a 1 - -t 0.69625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 165 -a 1 h -t 0.69625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 165 -a 1 r -t 0.69655 -s 2 -d 3 -p cbr -e 210 -c 1 -i 129 -a 1 + -t 0.69655 -s 3 -d 5 -p cbr -e 210 -c 1 -i 129 -a 1 - -t 0.69655 -s 3 -d 5 -p cbr -e 210 -c 1 -i 129 -a 1 h -t 0.69655 -s 3 -d 5 -p cbr -e 210 -c 1 -i 129 -a 1 - -t 0.69695 -s 2 -d 3 -p cbr -e 210 -c 1 -i 145 -a 1 h -t 0.69695 -s 2 -d 3 -p cbr -e 210 -c 1 -i 145 -a 1 r -t 0.69711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 149 -a 1 + -t 0.69711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 149 -a 1 r -t 0.69951 -s 3 -d 5 -p cbr -e 210 -c 1 -i 114 -a 1 r -t 0.69991 -s 2 -d 3 -p cbr -e 210 -c 1 -i 130 -a 1 + -t 0.69991 -s 3 -d 5 -p cbr -e 210 -c 1 -i 130 -a 1 - -t 0.69991 -s 3 -d 5 -p cbr -e 210 -c 1 -i 130 -a 1 h -t 0.69991 -s 3 -d 5 -p cbr -e 210 -c 1 -i 130 -a 1 v -t 0.69999999999999996 sim_annotation 0.69999999999999996 12 Packet_9 is lost + -t 0.7 -s 1 -d 2 -p cbr -e 210 -c 1 -i 166 -a 1 - -t 0.7 -s 1 -d 2 -p cbr -e 210 -c 1 -i 166 -a 1 h -t 0.7 -s 1 -d 2 -p cbr -e 210 -c 1 -i 166 -a 1 - -t 0.70031 -s 2 -d 3 -p cbr -e 210 -c 1 -i 146 -a 1 h -t 0.70031 -s 2 -d 3 -p cbr -e 210 -c 1 -i 146 -a 1 r -t 0.70086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 150 -a 1 + -t 0.70086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 150 -a 1 r -t 0.70287 -s 3 -d 5 -p cbr -e 210 -c 1 -i 115 -a 1 r -t 0.70311 -s 4 -d 3 -p ack -e 40 -c 0 -i 152 -a 0 -S 0 -y {1 1} + -t 0.70311 -s 3 -d 2 -p ack -e 40 -c 0 -i 152 -a 0 -S 0 -y {1 1} - -t 0.70311 -s 3 -d 2 -p ack -e 40 -c 0 -i 152 -a 0 -S 0 -y {1 1} h -t 0.70311 -s 3 -d 2 -p ack -e 40 -c 0 -i 152 -a 0 -S 0 -y {-1 -1} r -t 0.70327 -s 2 -d 3 -p cbr -e 210 -c 1 -i 131 -a 1 + -t 0.70327 -s 3 -d 5 -p cbr -e 210 -c 1 -i 131 -a 1 - -t 0.70327 -s 3 -d 5 -p cbr -e 210 -c 1 -i 131 -a 1 h -t 0.70327 -s 3 -d 5 -p cbr -e 210 -c 1 -i 131 -a 1 - -t 0.70367 -s 2 -d 3 -p cbr -e 210 -c 1 -i 147 -a 1 h -t 0.70367 -s 2 -d 3 -p cbr -e 210 -c 1 -i 147 -a 1 + -t 0.70375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 167 -a 1 - -t 0.70375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 167 -a 1 h -t 0.70375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 167 -a 1 r -t 0.70461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 151 -a 1 + -t 0.70461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 151 -a 1 r -t 0.70623 -s 3 -d 5 -p cbr -e 210 -c 1 -i 116 -a 1 r -t 0.70663 -s 2 -d 3 -p cbr -e 210 -c 1 -i 132 -a 1 + -t 0.70663 -s 3 -d 5 -p cbr -e 210 -c 1 -i 132 -a 1 - -t 0.70663 -s 3 -d 5 -p cbr -e 210 -c 1 -i 132 -a 1 h -t 0.70663 -s 3 -d 5 -p cbr -e 210 -c 1 -i 132 -a 1 - -t 0.70703 -s 2 -d 3 -p cbr -e 210 -c 1 -i 148 -a 1 h -t 0.70703 -s 2 -d 3 -p cbr -e 210 -c 1 -i 148 -a 1 + -t 0.7075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 168 -a 1 - -t 0.7075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 168 -a 1 h -t 0.7075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 168 -a 1 r -t 0.70836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 153 -a 1 + -t 0.70836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 153 -a 1 r -t 0.70959 -s 3 -d 5 -p cbr -e 210 -c 1 -i 117 -a 1 r -t 0.70999 -s 2 -d 3 -p cbr -e 210 -c 1 -i 133 -a 1 + -t 0.70999 -s 3 -d 5 -p cbr -e 210 -c 1 -i 133 -a 1 - -t 0.70999 -s 3 -d 5 -p cbr -e 210 -c 1 -i 133 -a 1 h -t 0.70999 -s 3 -d 5 -p cbr -e 210 -c 1 -i 133 -a 1 - -t 0.71039 -s 2 -d 3 -p cbr -e 210 -c 1 -i 149 -a 1 h -t 0.71039 -s 2 -d 3 -p cbr -e 210 -c 1 -i 149 -a 1 + -t 0.71125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 169 -a 1 - -t 0.71125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 169 -a 1 h -t 0.71125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 169 -a 1 r -t 0.71211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 154 -a 1 + -t 0.71211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 154 -a 1 r -t 0.71295 -s 3 -d 5 -p cbr -e 210 -c 1 -i 118 -a 1 r -t 0.71335 -s 2 -d 3 -p cbr -e 210 -c 1 -i 134 -a 1 + -t 0.71335 -s 3 -d 5 -p cbr -e 210 -c 1 -i 134 -a 1 - -t 0.71335 -s 3 -d 5 -p cbr -e 210 -c 1 -i 134 -a 1 h -t 0.71335 -s 3 -d 5 -p cbr -e 210 -c 1 -i 134 -a 1 - -t 0.71375 -s 2 -d 3 -p cbr -e 210 -c 1 -i 150 -a 1 h -t 0.71375 -s 2 -d 3 -p cbr -e 210 -c 1 -i 150 -a 1 + -t 0.715 -s 1 -d 2 -p cbr -e 210 -c 1 -i 170 -a 1 - -t 0.715 -s 1 -d 2 -p cbr -e 210 -c 1 -i 170 -a 1 h -t 0.715 -s 1 -d 2 -p cbr -e 210 -c 1 -i 170 -a 1 r -t 0.71586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 155 -a 1 + -t 0.71586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 155 -a 1 r -t 0.71631 -s 3 -d 5 -p cbr -e 210 -c 1 -i 119 -a 1 r -t 0.71671 -s 2 -d 3 -p cbr -e 210 -c 1 -i 135 -a 1 + -t 0.71671 -s 3 -d 5 -p cbr -e 210 -c 1 -i 135 -a 1 - -t 0.71671 -s 3 -d 5 -p cbr -e 210 -c 1 -i 135 -a 1 h -t 0.71671 -s 3 -d 5 -p cbr -e 210 -c 1 -i 135 -a 1 - -t 0.71711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 151 -a 1 h -t 0.71711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 151 -a 1 + -t 0.71875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 171 -a 1 - -t 0.71875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 171 -a 1 h -t 0.71875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 171 -a 1 r -t 0.71961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 156 -a 1 + -t 0.71961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 156 -a 1 r -t 0.71967 -s 3 -d 5 -p cbr -e 210 -c 1 -i 120 -a 1 r -t 0.72007 -s 2 -d 3 -p cbr -e 210 -c 1 -i 136 -a 1 + -t 0.72007 -s 3 -d 5 -p cbr -e 210 -c 1 -i 136 -a 1 - -t 0.72007 -s 3 -d 5 -p cbr -e 210 -c 1 -i 136 -a 1 h -t 0.72007 -s 3 -d 5 -p cbr -e 210 -c 1 -i 136 -a 1 - -t 0.72047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 153 -a 1 h -t 0.72047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 153 -a 1 + -t 0.7225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 172 -a 1 - -t 0.7225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 172 -a 1 h -t 0.7225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 172 -a 1 r -t 0.72303 -s 3 -d 5 -p cbr -e 210 -c 1 -i 121 -a 1 r -t 0.72336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 157 -a 1 + -t 0.72336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 157 -a 1 r -t 0.72343 -s 2 -d 3 -p cbr -e 210 -c 1 -i 137 -a 1 + -t 0.72343 -s 3 -d 5 -p cbr -e 210 -c 1 -i 137 -a 1 - -t 0.72343 -s 3 -d 5 -p cbr -e 210 -c 1 -i 137 -a 1 h -t 0.72343 -s 3 -d 5 -p cbr -e 210 -c 1 -i 137 -a 1 - -t 0.72383 -s 2 -d 3 -p cbr -e 210 -c 1 -i 154 -a 1 h -t 0.72383 -s 2 -d 3 -p cbr -e 210 -c 1 -i 154 -a 1 + -t 0.72625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 173 -a 1 - -t 0.72625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 173 -a 1 h -t 0.72625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 173 -a 1 r -t 0.72639 -s 3 -d 5 -p cbr -e 210 -c 1 -i 122 -a 1 r -t 0.72679 -s 2 -d 3 -p cbr -e 210 -c 1 -i 138 -a 1 + -t 0.72679 -s 3 -d 5 -p cbr -e 210 -c 1 -i 138 -a 1 - -t 0.72679 -s 3 -d 5 -p cbr -e 210 -c 1 -i 138 -a 1 h -t 0.72679 -s 3 -d 5 -p cbr -e 210 -c 1 -i 138 -a 1 r -t 0.72711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 158 -a 1 + -t 0.72711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 158 -a 1 - -t 0.72719 -s 2 -d 3 -p cbr -e 210 -c 1 -i 155 -a 1 h -t 0.72719 -s 2 -d 3 -p cbr -e 210 -c 1 -i 155 -a 1 r -t 0.72975 -s 3 -d 5 -p cbr -e 210 -c 1 -i 123 -a 1 + -t 0.73 -s 1 -d 2 -p cbr -e 210 -c 1 -i 174 -a 1 - -t 0.73 -s 1 -d 2 -p cbr -e 210 -c 1 -i 174 -a 1 h -t 0.73 -s 1 -d 2 -p cbr -e 210 -c 1 -i 174 -a 1 r -t 0.73015 -s 2 -d 3 -p cbr -e 210 -c 1 -i 139 -a 1 + -t 0.73015 -s 3 -d 5 -p cbr -e 210 -c 1 -i 139 -a 1 - -t 0.73015 -s 3 -d 5 -p cbr -e 210 -c 1 -i 139 -a 1 h -t 0.73015 -s 3 -d 5 -p cbr -e 210 -c 1 -i 139 -a 1 - -t 0.73055 -s 2 -d 3 -p cbr -e 210 -c 1 -i 156 -a 1 h -t 0.73055 -s 2 -d 3 -p cbr -e 210 -c 1 -i 156 -a 1 r -t 0.73086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 159 -a 1 + -t 0.73086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 159 -a 1 r -t 0.73255 -s 4 -d 3 -p ack -e 40 -c 0 -i 161 -a 0 -S 0 -y {2 2} + -t 0.73255 -s 3 -d 2 -p ack -e 40 -c 0 -i 161 -a 0 -S 0 -y {2 2} - -t 0.73255 -s 3 -d 2 -p ack -e 40 -c 0 -i 161 -a 0 -S 0 -y {2 2} h -t 0.73255 -s 3 -d 2 -p ack -e 40 -c 0 -i 161 -a 0 -S 0 -y {-1 -1} r -t 0.73311 -s 3 -d 5 -p cbr -e 210 -c 1 -i 124 -a 1 r -t 0.73351 -s 2 -d 3 -p cbr -e 210 -c 1 -i 140 -a 1 + -t 0.73351 -s 3 -d 5 -p cbr -e 210 -c 1 -i 140 -a 1 - -t 0.73351 -s 3 -d 5 -p cbr -e 210 -c 1 -i 140 -a 1 h -t 0.73351 -s 3 -d 5 -p cbr -e 210 -c 1 -i 140 -a 1 + -t 0.73375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 175 -a 1 - -t 0.73375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 175 -a 1 h -t 0.73375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 175 -a 1 - -t 0.73391 -s 2 -d 3 -p cbr -e 210 -c 1 -i 157 -a 1 h -t 0.73391 -s 2 -d 3 -p cbr -e 210 -c 1 -i 157 -a 1 r -t 0.73461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 160 -a 1 + -t 0.73461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 160 -a 1 r -t 0.73647 -s 3 -d 5 -p cbr -e 210 -c 1 -i 125 -a 1 r -t 0.73687 -s 2 -d 3 -p cbr -e 210 -c 1 -i 141 -a 1 + -t 0.73687 -s 3 -d 5 -p cbr -e 210 -c 1 -i 141 -a 1 - -t 0.73687 -s 3 -d 5 -p cbr -e 210 -c 1 -i 141 -a 1 h -t 0.73687 -s 3 -d 5 -p cbr -e 210 -c 1 -i 141 -a 1 - -t 0.73727 -s 2 -d 3 -p cbr -e 210 -c 1 -i 158 -a 1 h -t 0.73727 -s 2 -d 3 -p cbr -e 210 -c 1 -i 158 -a 1 + -t 0.7375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 176 -a 1 - -t 0.7375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 176 -a 1 h -t 0.7375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 176 -a 1 r -t 0.73836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 162 -a 1 + -t 0.73836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 162 -a 1 r -t 0.73983 -s 3 -d 5 -p cbr -e 210 -c 1 -i 126 -a 1 r -t 0.74023 -s 2 -d 3 -p cbr -e 210 -c 1 -i 142 -a 1 + -t 0.74023 -s 3 -d 5 -p cbr -e 210 -c 1 -i 142 -a 1 - -t 0.74023 -s 3 -d 5 -p cbr -e 210 -c 1 -i 142 -a 1 h -t 0.74023 -s 3 -d 5 -p cbr -e 210 -c 1 -i 142 -a 1 - -t 0.74063 -s 2 -d 3 -p cbr -e 210 -c 1 -i 159 -a 1 h -t 0.74063 -s 2 -d 3 -p cbr -e 210 -c 1 -i 159 -a 1 + -t 0.74125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 177 -a 1 - -t 0.74125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 177 -a 1 h -t 0.74125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 177 -a 1 r -t 0.74211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 163 -a 1 + -t 0.74211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 163 -a 1 r -t 0.74319 -s 3 -d 5 -p cbr -e 210 -c 1 -i 127 -a 1 r -t 0.74359 -s 2 -d 3 -p cbr -e 210 -c 1 -i 143 -a 1 + -t 0.74359 -s 3 -d 5 -p cbr -e 210 -c 1 -i 143 -a 1 - -t 0.74359 -s 3 -d 5 -p cbr -e 210 -c 1 -i 143 -a 1 h -t 0.74359 -s 3 -d 5 -p cbr -e 210 -c 1 -i 143 -a 1 - -t 0.74399 -s 2 -d 3 -p cbr -e 210 -c 1 -i 160 -a 1 h -t 0.74399 -s 2 -d 3 -p cbr -e 210 -c 1 -i 160 -a 1 + -t 0.745 -s 1 -d 2 -p cbr -e 210 -c 1 -i 178 -a 1 - -t 0.745 -s 1 -d 2 -p cbr -e 210 -c 1 -i 178 -a 1 h -t 0.745 -s 1 -d 2 -p cbr -e 210 -c 1 -i 178 -a 1 r -t 0.74586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 164 -a 1 + -t 0.74586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 164 -a 1 r -t 0.74655 -s 3 -d 5 -p cbr -e 210 -c 1 -i 128 -a 1 r -t 0.74695 -s 2 -d 3 -p cbr -e 210 -c 1 -i 144 -a 1 + -t 0.74695 -s 3 -d 5 -p cbr -e 210 -c 1 -i 144 -a 1 - -t 0.74695 -s 3 -d 5 -p cbr -e 210 -c 1 -i 144 -a 1 h -t 0.74695 -s 3 -d 5 -p cbr -e 210 -c 1 -i 144 -a 1 - -t 0.74735 -s 2 -d 3 -p cbr -e 210 -c 1 -i 162 -a 1 h -t 0.74735 -s 2 -d 3 -p cbr -e 210 -c 1 -i 162 -a 1 + -t 0.74875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 179 -a 1 - -t 0.74875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 179 -a 1 h -t 0.74875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 179 -a 1 r -t 0.74961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 165 -a 1 + -t 0.74961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 165 -a 1 r -t 0.74991 -s 3 -d 5 -p cbr -e 210 -c 1 -i 129 -a 1 r -t 0.75031 -s 2 -d 3 -p cbr -e 210 -c 1 -i 145 -a 1 + -t 0.75031 -s 3 -d 5 -p cbr -e 210 -c 1 -i 145 -a 1 - -t 0.75031 -s 3 -d 5 -p cbr -e 210 -c 1 -i 145 -a 1 h -t 0.75031 -s 3 -d 5 -p cbr -e 210 -c 1 -i 145 -a 1 - -t 0.75071 -s 2 -d 3 -p cbr -e 210 -c 1 -i 163 -a 1 h -t 0.75071 -s 2 -d 3 -p cbr -e 210 -c 1 -i 163 -a 1 + -t 0.7525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 180 -a 1 - -t 0.7525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 180 -a 1 h -t 0.7525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 180 -a 1 r -t 0.75327 -s 3 -d 5 -p cbr -e 210 -c 1 -i 130 -a 1 r -t 0.75336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 166 -a 1 + -t 0.75336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 166 -a 1 r -t 0.75367 -s 2 -d 3 -p cbr -e 210 -c 1 -i 146 -a 1 + -t 0.75367 -s 3 -d 5 -p cbr -e 210 -c 1 -i 146 -a 1 - -t 0.75367 -s 3 -d 5 -p cbr -e 210 -c 1 -i 146 -a 1 h -t 0.75367 -s 3 -d 5 -p cbr -e 210 -c 1 -i 146 -a 1 r -t 0.75375 -s 3 -d 2 -p ack -e 40 -c 0 -i 152 -a 0 -S 0 -y {1 1} + -t 0.75375 -s 2 -d 0 -p ack -e 40 -c 0 -i 152 -a 0 -S 0 -y {1 1} - -t 0.75375 -s 2 -d 0 -p ack -e 40 -c 0 -i 152 -a 0 -S 0 -f 0 -m 1 -y {1 1} h -t 0.75375 -s 2 -d 0 -p ack -e 40 -c 0 -i 152 -a 0 -S 0 -y {-1 -1} - -t 0.75407 -s 2 -d 3 -p cbr -e 210 -c 1 -i 164 -a 1 h -t 0.75407 -s 2 -d 3 -p cbr -e 210 -c 1 -i 164 -a 1 + -t 0.75625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 181 -a 1 - -t 0.75625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 181 -a 1 h -t 0.75625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 181 -a 1 r -t 0.75663 -s 3 -d 5 -p cbr -e 210 -c 1 -i 131 -a 1 r -t 0.75703 -s 2 -d 3 -p cbr -e 210 -c 1 -i 147 -a 1 + -t 0.75703 -s 3 -d 5 -p cbr -e 210 -c 1 -i 147 -a 1 - -t 0.75703 -s 3 -d 5 -p cbr -e 210 -c 1 -i 147 -a 1 h -t 0.75703 -s 3 -d 5 -p cbr -e 210 -c 1 -i 147 -a 1 r -t 0.75711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 167 -a 1 + -t 0.75711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 167 -a 1 - -t 0.75743 -s 2 -d 3 -p cbr -e 210 -c 1 -i 165 -a 1 h -t 0.75743 -s 2 -d 3 -p cbr -e 210 -c 1 -i 165 -a 1 r -t 0.75999 -s 3 -d 5 -p cbr -e 210 -c 1 -i 132 -a 1 v -t 0.76000000000000001 sim_annotation 0.76000000000000001 13 3 Ack_4s : 3 acks are coming + -t 0.76 -s 1 -d 2 -p cbr -e 210 -c 1 -i 182 -a 1 - -t 0.76 -s 1 -d 2 -p cbr -e 210 -c 1 -i 182 -a 1 h -t 0.76 -s 1 -d 2 -p cbr -e 210 -c 1 -i 182 -a 1 r -t 0.76039 -s 2 -d 3 -p cbr -e 210 -c 1 -i 148 -a 1 + -t 0.76039 -s 3 -d 5 -p cbr -e 210 -c 1 -i 148 -a 1 - -t 0.76039 -s 3 -d 5 -p cbr -e 210 -c 1 -i 148 -a 1 h -t 0.76039 -s 3 -d 5 -p cbr -e 210 -c 1 -i 148 -a 1 - -t 0.76079 -s 2 -d 3 -p cbr -e 210 -c 1 -i 166 -a 1 h -t 0.76079 -s 2 -d 3 -p cbr -e 210 -c 1 -i 166 -a 1 r -t 0.76086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 168 -a 1 + -t 0.76086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 168 -a 1 r -t 0.76335 -s 3 -d 5 -p cbr -e 210 -c 1 -i 133 -a 1 r -t 0.76375 -s 2 -d 3 -p cbr -e 210 -c 1 -i 149 -a 1 + -t 0.76375 -s 3 -d 5 -p cbr -e 210 -c 1 -i 149 -a 1 - -t 0.76375 -s 3 -d 5 -p cbr -e 210 -c 1 -i 149 -a 1 h -t 0.76375 -s 3 -d 5 -p cbr -e 210 -c 1 -i 149 -a 1 + -t 0.76375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 183 -a 1 - -t 0.76375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 183 -a 1 h -t 0.76375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 183 -a 1 - -t 0.76415 -s 2 -d 3 -p cbr -e 210 -c 1 -i 167 -a 1 h -t 0.76415 -s 2 -d 3 -p cbr -e 210 -c 1 -i 167 -a 1 r -t 0.76461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 169 -a 1 + -t 0.76461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 169 -a 1 r -t 0.76671 -s 3 -d 5 -p cbr -e 210 -c 1 -i 134 -a 1 r -t 0.76711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 150 -a 1 + -t 0.76711 -s 3 -d 5 -p cbr -e 210 -c 1 -i 150 -a 1 - -t 0.76711 -s 3 -d 5 -p cbr -e 210 -c 1 -i 150 -a 1 h -t 0.76711 -s 3 -d 5 -p cbr -e 210 -c 1 -i 150 -a 1 + -t 0.7675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 184 -a 1 - -t 0.7675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 184 -a 1 h -t 0.7675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 184 -a 1 - -t 0.76751 -s 2 -d 3 -p cbr -e 210 -c 1 -i 168 -a 1 h -t 0.76751 -s 2 -d 3 -p cbr -e 210 -c 1 -i 168 -a 1 r -t 0.76836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 170 -a 1 + -t 0.76836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 170 -a 1 r -t 0.77007 -s 3 -d 5 -p cbr -e 210 -c 1 -i 135 -a 1 r -t 0.77047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 151 -a 1 + -t 0.77047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 151 -a 1 - -t 0.77047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 151 -a 1 h -t 0.77047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 151 -a 1 - -t 0.77087 -s 2 -d 3 -p cbr -e 210 -c 1 -i 169 -a 1 h -t 0.77087 -s 2 -d 3 -p cbr -e 210 -c 1 -i 169 -a 1 + -t 0.77125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 185 -a 1 - -t 0.77125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 185 -a 1 h -t 0.77125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 185 -a 1 r -t 0.77211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 171 -a 1 + -t 0.77211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 171 -a 1 r -t 0.77343 -s 3 -d 5 -p cbr -e 210 -c 1 -i 136 -a 1 r -t 0.77383 -s 2 -d 3 -p cbr -e 210 -c 1 -i 153 -a 1 + -t 0.77383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 153 -a 1 - -t 0.77383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 153 -a 1 h -t 0.77383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 153 -a 1 - -t 0.77423 -s 2 -d 3 -p cbr -e 210 -c 1 -i 170 -a 1 h -t 0.77423 -s 2 -d 3 -p cbr -e 210 -c 1 -i 170 -a 1 + -t 0.775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 186 -a 1 - -t 0.775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 186 -a 1 h -t 0.775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 186 -a 1 r -t 0.77586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 172 -a 1 + -t 0.77586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 172 -a 1 r -t 0.77679 -s 3 -d 5 -p cbr -e 210 -c 1 -i 137 -a 1 r -t 0.77719 -s 2 -d 3 -p cbr -e 210 -c 1 -i 154 -a 1 + -t 0.77719 -s 3 -d 5 -p cbr -e 210 -c 1 -i 154 -a 1 - -t 0.77719 -s 3 -d 5 -p cbr -e 210 -c 1 -i 154 -a 1 h -t 0.77719 -s 3 -d 5 -p cbr -e 210 -c 1 -i 154 -a 1 - -t 0.77759 -s 2 -d 3 -p cbr -e 210 -c 1 -i 171 -a 1 h -t 0.77759 -s 2 -d 3 -p cbr -e 210 -c 1 -i 171 -a 1 + -t 0.77875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 187 -a 1 - -t 0.77875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 187 -a 1 h -t 0.77875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 187 -a 1 r -t 0.77961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 173 -a 1 + -t 0.77961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 173 -a 1 r -t 0.78015 -s 3 -d 5 -p cbr -e 210 -c 1 -i 138 -a 1 r -t 0.78055 -s 2 -d 3 -p cbr -e 210 -c 1 -i 155 -a 1 + -t 0.78055 -s 3 -d 5 -p cbr -e 210 -c 1 -i 155 -a 1 - -t 0.78055 -s 3 -d 5 -p cbr -e 210 -c 1 -i 155 -a 1 h -t 0.78055 -s 3 -d 5 -p cbr -e 210 -c 1 -i 155 -a 1 - -t 0.78095 -s 2 -d 3 -p cbr -e 210 -c 1 -i 172 -a 1 h -t 0.78095 -s 2 -d 3 -p cbr -e 210 -c 1 -i 172 -a 1 + -t 0.7825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 188 -a 1 - -t 0.7825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 188 -a 1 h -t 0.7825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 188 -a 1 r -t 0.78319 -s 3 -d 2 -p ack -e 40 -c 0 -i 161 -a 0 -S 0 -y {2 2} + -t 0.78319 -s 2 -d 0 -p ack -e 40 -c 0 -i 161 -a 0 -S 0 -y {2 2} - -t 0.78319 -s 2 -d 0 -p ack -e 40 -c 0 -i 161 -a 0 -S 0 -f 0 -m 1 -y {2 2} h -t 0.78319 -s 2 -d 0 -p ack -e 40 -c 0 -i 161 -a 0 -S 0 -y {-1 -1} r -t 0.78336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 174 -a 1 + -t 0.78336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 174 -a 1 r -t 0.78351 -s 3 -d 5 -p cbr -e 210 -c 1 -i 139 -a 1 r -t 0.78391 -s 2 -d 3 -p cbr -e 210 -c 1 -i 156 -a 1 + -t 0.78391 -s 3 -d 5 -p cbr -e 210 -c 1 -i 156 -a 1 - -t 0.78391 -s 3 -d 5 -p cbr -e 210 -c 1 -i 156 -a 1 h -t 0.78391 -s 3 -d 5 -p cbr -e 210 -c 1 -i 156 -a 1 - -t 0.78431 -s 2 -d 3 -p cbr -e 210 -c 1 -i 173 -a 1 h -t 0.78431 -s 2 -d 3 -p cbr -e 210 -c 1 -i 173 -a 1 + -t 0.78625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 189 -a 1 - -t 0.78625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 189 -a 1 h -t 0.78625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 189 -a 1 r -t 0.78687 -s 3 -d 5 -p cbr -e 210 -c 1 -i 140 -a 1 r -t 0.78711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 175 -a 1 + -t 0.78711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 175 -a 1 r -t 0.78727 -s 2 -d 3 -p cbr -e 210 -c 1 -i 157 -a 1 + -t 0.78727 -s 3 -d 5 -p cbr -e 210 -c 1 -i 157 -a 1 - -t 0.78727 -s 3 -d 5 -p cbr -e 210 -c 1 -i 157 -a 1 h -t 0.78727 -s 3 -d 5 -p cbr -e 210 -c 1 -i 157 -a 1 - -t 0.78767 -s 2 -d 3 -p cbr -e 210 -c 1 -i 174 -a 1 h -t 0.78767 -s 2 -d 3 -p cbr -e 210 -c 1 -i 174 -a 1 + -t 0.79 -s 1 -d 2 -p cbr -e 210 -c 1 -i 190 -a 1 - -t 0.79 -s 1 -d 2 -p cbr -e 210 -c 1 -i 190 -a 1 h -t 0.79 -s 1 -d 2 -p cbr -e 210 -c 1 -i 190 -a 1 r -t 0.79023 -s 3 -d 5 -p cbr -e 210 -c 1 -i 141 -a 1 r -t 0.79063 -s 2 -d 3 -p cbr -e 210 -c 1 -i 158 -a 1 + -t 0.79063 -s 3 -d 5 -p cbr -e 210 -c 1 -i 158 -a 1 - -t 0.79063 -s 3 -d 5 -p cbr -e 210 -c 1 -i 158 -a 1 h -t 0.79063 -s 3 -d 5 -p cbr -e 210 -c 1 -i 158 -a 1 r -t 0.79086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 176 -a 1 + -t 0.79086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 176 -a 1 - -t 0.79103 -s 2 -d 3 -p cbr -e 210 -c 1 -i 175 -a 1 h -t 0.79103 -s 2 -d 3 -p cbr -e 210 -c 1 -i 175 -a 1 r -t 0.79359 -s 3 -d 5 -p cbr -e 210 -c 1 -i 142 -a 1 + -t 0.79375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 191 -a 1 - -t 0.79375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 191 -a 1 h -t 0.79375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 191 -a 1 r -t 0.79399 -s 2 -d 3 -p cbr -e 210 -c 1 -i 159 -a 1 + -t 0.79399 -s 3 -d 5 -p cbr -e 210 -c 1 -i 159 -a 1 - -t 0.79399 -s 3 -d 5 -p cbr -e 210 -c 1 -i 159 -a 1 h -t 0.79399 -s 3 -d 5 -p cbr -e 210 -c 1 -i 159 -a 1 - -t 0.79439 -s 2 -d 3 -p cbr -e 210 -c 1 -i 176 -a 1 h -t 0.79439 -s 2 -d 3 -p cbr -e 210 -c 1 -i 176 -a 1 r -t 0.79461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 177 -a 1 + -t 0.79461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 177 -a 1 r -t 0.79695 -s 3 -d 5 -p cbr -e 210 -c 1 -i 143 -a 1 r -t 0.79735 -s 2 -d 3 -p cbr -e 210 -c 1 -i 160 -a 1 + -t 0.79735 -s 3 -d 5 -p cbr -e 210 -c 1 -i 160 -a 1 - -t 0.79735 -s 3 -d 5 -p cbr -e 210 -c 1 -i 160 -a 1 h -t 0.79735 -s 3 -d 5 -p cbr -e 210 -c 1 -i 160 -a 1 + -t 0.7975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 192 -a 1 - -t 0.7975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 192 -a 1 h -t 0.7975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 192 -a 1 - -t 0.79775 -s 2 -d 3 -p cbr -e 210 -c 1 -i 177 -a 1 h -t 0.79775 -s 2 -d 3 -p cbr -e 210 -c 1 -i 177 -a 1 r -t 0.79836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 178 -a 1 + -t 0.79836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 178 -a 1 r -t 0.80031 -s 3 -d 5 -p cbr -e 210 -c 1 -i 144 -a 1 r -t 0.80071 -s 2 -d 3 -p cbr -e 210 -c 1 -i 162 -a 1 + -t 0.80071 -s 3 -d 5 -p cbr -e 210 -c 1 -i 162 -a 1 - -t 0.80071 -s 3 -d 5 -p cbr -e 210 -c 1 -i 162 -a 1 h -t 0.80071 -s 3 -d 5 -p cbr -e 210 -c 1 -i 162 -a 1 - -t 0.80111 -s 2 -d 3 -p cbr -e 210 -c 1 -i 178 -a 1 h -t 0.80111 -s 2 -d 3 -p cbr -e 210 -c 1 -i 178 -a 1 + -t 0.80125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 193 -a 1 - -t 0.80125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 193 -a 1 h -t 0.80125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 193 -a 1 r -t 0.80211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 179 -a 1 + -t 0.80211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 179 -a 1 r -t 0.80367 -s 3 -d 5 -p cbr -e 210 -c 1 -i 145 -a 1 r -t 0.80407 -s 2 -d 3 -p cbr -e 210 -c 1 -i 163 -a 1 + -t 0.80407 -s 3 -d 5 -p cbr -e 210 -c 1 -i 163 -a 1 - -t 0.80407 -s 3 -d 5 -p cbr -e 210 -c 1 -i 163 -a 1 h -t 0.80407 -s 3 -d 5 -p cbr -e 210 -c 1 -i 163 -a 1 r -t 0.80439 -s 2 -d 0 -p ack -e 40 -c 0 -i 152 -a 0 -S 0 -y {1 1} f -t 0.80438999999999883 -s 0 -d 4 -n cwnd_ -a tcp -v 3.000000 -o 2.000000 -T v + -t 0.80439 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 194 -a 0 -S 0 -f 0 -m 0 -y {3 3} - -t 0.80439 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 194 -a 0 -S 0 -y {3 3} h -t 0.80439 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 194 -a 0 -S 0 -y {-1 -1} + -t 0.80439 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 195 -a 0 -S 0 -f 0 -m 0 -y {4 4} - -t 0.80447 -s 2 -d 3 -p cbr -e 210 -c 1 -i 179 -a 1 h -t 0.80447 -s 2 -d 3 -p cbr -e 210 -c 1 -i 179 -a 1 + -t 0.805 -s 1 -d 2 -p cbr -e 210 -c 1 -i 196 -a 1 - -t 0.805 -s 1 -d 2 -p cbr -e 210 -c 1 -i 196 -a 1 h -t 0.805 -s 1 -d 2 -p cbr -e 210 -c 1 -i 196 -a 1 r -t 0.80586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 180 -a 1 + -t 0.80586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 180 -a 1 r -t 0.80703 -s 3 -d 5 -p cbr -e 210 -c 1 -i 146 -a 1 r -t 0.80743 -s 2 -d 3 -p cbr -e 210 -c 1 -i 164 -a 1 + -t 0.80743 -s 3 -d 5 -p cbr -e 210 -c 1 -i 164 -a 1 - -t 0.80743 -s 3 -d 5 -p cbr -e 210 -c 1 -i 164 -a 1 h -t 0.80743 -s 3 -d 5 -p cbr -e 210 -c 1 -i 164 -a 1 - -t 0.80783 -s 2 -d 3 -p cbr -e 210 -c 1 -i 180 -a 1 h -t 0.80783 -s 2 -d 3 -p cbr -e 210 -c 1 -i 180 -a 1 + -t 0.80875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 197 -a 1 - -t 0.80875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 197 -a 1 h -t 0.80875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 197 -a 1 r -t 0.80961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 181 -a 1 + -t 0.80961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 181 -a 1 r -t 0.81039 -s 3 -d 5 -p cbr -e 210 -c 1 -i 147 -a 1 r -t 0.81079 -s 2 -d 3 -p cbr -e 210 -c 1 -i 165 -a 1 + -t 0.81079 -s 3 -d 5 -p cbr -e 210 -c 1 -i 165 -a 1 - -t 0.81079 -s 3 -d 5 -p cbr -e 210 -c 1 -i 165 -a 1 h -t 0.81079 -s 3 -d 5 -p cbr -e 210 -c 1 -i 165 -a 1 - -t 0.81119 -s 2 -d 3 -p cbr -e 210 -c 1 -i 181 -a 1 h -t 0.81119 -s 2 -d 3 -p cbr -e 210 -c 1 -i 181 -a 1 + -t 0.8125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 198 -a 1 - -t 0.8125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 198 -a 1 h -t 0.8125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 198 -a 1 r -t 0.81336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 182 -a 1 + -t 0.81336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 182 -a 1 r -t 0.81375 -s 3 -d 5 -p cbr -e 210 -c 1 -i 148 -a 1 r -t 0.81415 -s 2 -d 3 -p cbr -e 210 -c 1 -i 166 -a 1 + -t 0.81415 -s 3 -d 5 -p cbr -e 210 -c 1 -i 166 -a 1 - -t 0.81415 -s 3 -d 5 -p cbr -e 210 -c 1 -i 166 -a 1 h -t 0.81415 -s 3 -d 5 -p cbr -e 210 -c 1 -i 166 -a 1 - -t 0.81455 -s 2 -d 3 -p cbr -e 210 -c 1 -i 182 -a 1 h -t 0.81455 -s 2 -d 3 -p cbr -e 210 -c 1 -i 182 -a 1 + -t 0.81625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 199 -a 1 - -t 0.81625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 199 -a 1 h -t 0.81625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 199 -a 1 r -t 0.81711 -s 3 -d 5 -p cbr -e 210 -c 1 -i 149 -a 1 r -t 0.81711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 183 -a 1 + -t 0.81711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 183 -a 1 r -t 0.81751 -s 2 -d 3 -p cbr -e 210 -c 1 -i 167 -a 1 + -t 0.81751 -s 3 -d 5 -p cbr -e 210 -c 1 -i 167 -a 1 - -t 0.81751 -s 3 -d 5 -p cbr -e 210 -c 1 -i 167 -a 1 h -t 0.81751 -s 3 -d 5 -p cbr -e 210 -c 1 -i 167 -a 1 - -t 0.81791 -s 2 -d 3 -p cbr -e 210 -c 1 -i 183 -a 1 h -t 0.81791 -s 2 -d 3 -p cbr -e 210 -c 1 -i 183 -a 1 + -t 0.82 -s 1 -d 2 -p cbr -e 210 -c 1 -i 200 -a 1 - -t 0.82 -s 1 -d 2 -p cbr -e 210 -c 1 -i 200 -a 1 h -t 0.82 -s 1 -d 2 -p cbr -e 210 -c 1 -i 200 -a 1 - -t 0.82039 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 195 -a 0 -S 0 -y {4 4} h -t 0.82039 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 195 -a 0 -S 0 -y {-1 -1} r -t 0.82047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 150 -a 1 r -t 0.82086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 184 -a 1 + -t 0.82086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 184 -a 1 r -t 0.82087 -s 2 -d 3 -p cbr -e 210 -c 1 -i 168 -a 1 + -t 0.82087 -s 3 -d 5 -p cbr -e 210 -c 1 -i 168 -a 1 - -t 0.82087 -s 3 -d 5 -p cbr -e 210 -c 1 -i 168 -a 1 h -t 0.82087 -s 3 -d 5 -p cbr -e 210 -c 1 -i 168 -a 1 - -t 0.82127 -s 2 -d 3 -p cbr -e 210 -c 1 -i 184 -a 1 h -t 0.82127 -s 2 -d 3 -p cbr -e 210 -c 1 -i 184 -a 1 + -t 0.82375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 201 -a 1 - -t 0.82375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 201 -a 1 h -t 0.82375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 201 -a 1 r -t 0.82383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 151 -a 1 r -t 0.82423 -s 2 -d 3 -p cbr -e 210 -c 1 -i 169 -a 1 + -t 0.82423 -s 3 -d 5 -p cbr -e 210 -c 1 -i 169 -a 1 - -t 0.82423 -s 3 -d 5 -p cbr -e 210 -c 1 -i 169 -a 1 h -t 0.82423 -s 3 -d 5 -p cbr -e 210 -c 1 -i 169 -a 1 r -t 0.82461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 185 -a 1 + -t 0.82461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 185 -a 1 - -t 0.82463 -s 2 -d 3 -p cbr -e 210 -c 1 -i 185 -a 1 h -t 0.82463 -s 2 -d 3 -p cbr -e 210 -c 1 -i 185 -a 1 r -t 0.82719 -s 3 -d 5 -p cbr -e 210 -c 1 -i 153 -a 1 + -t 0.8275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 202 -a 1 - -t 0.8275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 202 -a 1 h -t 0.8275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 202 -a 1 r -t 0.82759 -s 2 -d 3 -p cbr -e 210 -c 1 -i 170 -a 1 + -t 0.82759 -s 3 -d 5 -p cbr -e 210 -c 1 -i 170 -a 1 - -t 0.82759 -s 3 -d 5 -p cbr -e 210 -c 1 -i 170 -a 1 h -t 0.82759 -s 3 -d 5 -p cbr -e 210 -c 1 -i 170 -a 1 r -t 0.82836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 186 -a 1 + -t 0.82836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 186 -a 1 - -t 0.82836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 186 -a 1 h -t 0.82836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 186 -a 1 r -t 0.83055 -s 3 -d 5 -p cbr -e 210 -c 1 -i 154 -a 1 r -t 0.83095 -s 2 -d 3 -p cbr -e 210 -c 1 -i 171 -a 1 + -t 0.83095 -s 3 -d 5 -p cbr -e 210 -c 1 -i 171 -a 1 - -t 0.83095 -s 3 -d 5 -p cbr -e 210 -c 1 -i 171 -a 1 h -t 0.83095 -s 3 -d 5 -p cbr -e 210 -c 1 -i 171 -a 1 + -t 0.83125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 203 -a 1 - -t 0.83125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 203 -a 1 h -t 0.83125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 203 -a 1 r -t 0.83211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 187 -a 1 + -t 0.83211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 187 -a 1 - -t 0.83211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 187 -a 1 h -t 0.83211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 187 -a 1 r -t 0.83383 -s 2 -d 0 -p ack -e 40 -c 0 -i 161 -a 0 -S 0 -y {2 2} f -t 0.83382999999999896 -s 0 -d 4 -n cwnd_ -a tcp -v 4.000000 -o 3.000000 -T v + -t 0.83383 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 204 -a 0 -S 0 -f 0 -m 0 -y {5 5} + -t 0.83383 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 205 -a 0 -S 0 -f 0 -m 0 -y {6 6} r -t 0.83391 -s 3 -d 5 -p cbr -e 210 -c 1 -i 155 -a 1 r -t 0.83431 -s 2 -d 3 -p cbr -e 210 -c 1 -i 172 -a 1 + -t 0.83431 -s 3 -d 5 -p cbr -e 210 -c 1 -i 172 -a 1 - -t 0.83431 -s 3 -d 5 -p cbr -e 210 -c 1 -i 172 -a 1 h -t 0.83431 -s 3 -d 5 -p cbr -e 210 -c 1 -i 172 -a 1 + -t 0.835 -s 1 -d 2 -p cbr -e 210 -c 1 -i 206 -a 1 - -t 0.835 -s 1 -d 2 -p cbr -e 210 -c 1 -i 206 -a 1 h -t 0.835 -s 1 -d 2 -p cbr -e 210 -c 1 -i 206 -a 1 r -t 0.83586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 188 -a 1 + -t 0.83586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 188 -a 1 - -t 0.83586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 188 -a 1 h -t 0.83586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 188 -a 1 - -t 0.83639 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 204 -a 0 -S 0 -y {5 5} h -t 0.83639 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 204 -a 0 -S 0 -y {-1 -1} r -t 0.83727 -s 3 -d 5 -p cbr -e 210 -c 1 -i 156 -a 1 r -t 0.83767 -s 2 -d 3 -p cbr -e 210 -c 1 -i 173 -a 1 + -t 0.83767 -s 3 -d 5 -p cbr -e 210 -c 1 -i 173 -a 1 - -t 0.83767 -s 3 -d 5 -p cbr -e 210 -c 1 -i 173 -a 1 h -t 0.83767 -s 3 -d 5 -p cbr -e 210 -c 1 -i 173 -a 1 + -t 0.83875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 207 -a 1 - -t 0.83875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 207 -a 1 h -t 0.83875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 207 -a 1 r -t 0.83961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 189 -a 1 + -t 0.83961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 189 -a 1 - -t 0.83961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 189 -a 1 h -t 0.83961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 189 -a 1 r -t 0.84063 -s 3 -d 5 -p cbr -e 210 -c 1 -i 157 -a 1 r -t 0.84103 -s 2 -d 3 -p cbr -e 210 -c 1 -i 174 -a 1 + -t 0.84103 -s 3 -d 5 -p cbr -e 210 -c 1 -i 174 -a 1 - -t 0.84103 -s 3 -d 5 -p cbr -e 210 -c 1 -i 174 -a 1 h -t 0.84103 -s 3 -d 5 -p cbr -e 210 -c 1 -i 174 -a 1 + -t 0.8425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 208 -a 1 - -t 0.8425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 208 -a 1 h -t 0.8425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 208 -a 1 r -t 0.84336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 190 -a 1 + -t 0.84336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 190 -a 1 - -t 0.84336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 190 -a 1 h -t 0.84336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 190 -a 1 r -t 0.84399 -s 3 -d 5 -p cbr -e 210 -c 1 -i 158 -a 1 r -t 0.84439 -s 2 -d 3 -p cbr -e 210 -c 1 -i 175 -a 1 + -t 0.84439 -s 3 -d 5 -p cbr -e 210 -c 1 -i 175 -a 1 - -t 0.84439 -s 3 -d 5 -p cbr -e 210 -c 1 -i 175 -a 1 h -t 0.84439 -s 3 -d 5 -p cbr -e 210 -c 1 -i 175 -a 1 + -t 0.84625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 209 -a 1 - -t 0.84625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 209 -a 1 h -t 0.84625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 209 -a 1 r -t 0.84711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 191 -a 1 + -t 0.84711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 191 -a 1 - -t 0.84711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 191 -a 1 h -t 0.84711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 191 -a 1 r -t 0.84735 -s 3 -d 5 -p cbr -e 210 -c 1 -i 159 -a 1 r -t 0.84775 -s 2 -d 3 -p cbr -e 210 -c 1 -i 176 -a 1 + -t 0.84775 -s 3 -d 5 -p cbr -e 210 -c 1 -i 176 -a 1 - -t 0.84775 -s 3 -d 5 -p cbr -e 210 -c 1 -i 176 -a 1 h -t 0.84775 -s 3 -d 5 -p cbr -e 210 -c 1 -i 176 -a 1 + -t 0.85 -s 1 -d 2 -p cbr -e 210 -c 1 -i 210 -a 1 - -t 0.85 -s 1 -d 2 -p cbr -e 210 -c 1 -i 210 -a 1 h -t 0.85 -s 1 -d 2 -p cbr -e 210 -c 1 -i 210 -a 1 r -t 0.85071 -s 3 -d 5 -p cbr -e 210 -c 1 -i 160 -a 1 r -t 0.85086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 192 -a 1 + -t 0.85086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 192 -a 1 - -t 0.85086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 192 -a 1 h -t 0.85086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 192 -a 1 r -t 0.85111 -s 2 -d 3 -p cbr -e 210 -c 1 -i 177 -a 1 + -t 0.85111 -s 3 -d 5 -p cbr -e 210 -c 1 -i 177 -a 1 - -t 0.85111 -s 3 -d 5 -p cbr -e 210 -c 1 -i 177 -a 1 h -t 0.85111 -s 3 -d 5 -p cbr -e 210 -c 1 -i 177 -a 1 - -t 0.85239 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 205 -a 0 -S 0 -y {6 6} h -t 0.85239 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 205 -a 0 -S 0 -y {-1 -1} + -t 0.85375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 211 -a 1 - -t 0.85375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 211 -a 1 h -t 0.85375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 211 -a 1 r -t 0.85407 -s 3 -d 5 -p cbr -e 210 -c 1 -i 162 -a 1 r -t 0.85447 -s 2 -d 3 -p cbr -e 210 -c 1 -i 178 -a 1 + -t 0.85447 -s 3 -d 5 -p cbr -e 210 -c 1 -i 178 -a 1 - -t 0.85447 -s 3 -d 5 -p cbr -e 210 -c 1 -i 178 -a 1 h -t 0.85447 -s 3 -d 5 -p cbr -e 210 -c 1 -i 178 -a 1 r -t 0.85461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 193 -a 1 + -t 0.85461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 193 -a 1 - -t 0.85461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 193 -a 1 h -t 0.85461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 193 -a 1 r -t 0.85743 -s 3 -d 5 -p cbr -e 210 -c 1 -i 163 -a 1 + -t 0.8575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 212 -a 1 - -t 0.8575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 212 -a 1 h -t 0.8575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 212 -a 1 r -t 0.85783 -s 2 -d 3 -p cbr -e 210 -c 1 -i 179 -a 1 + -t 0.85783 -s 3 -d 5 -p cbr -e 210 -c 1 -i 179 -a 1 - -t 0.85783 -s 3 -d 5 -p cbr -e 210 -c 1 -i 179 -a 1 h -t 0.85783 -s 3 -d 5 -p cbr -e 210 -c 1 -i 179 -a 1 r -t 0.85836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 196 -a 1 + -t 0.85836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 196 -a 1 - -t 0.85836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 196 -a 1 h -t 0.85836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 196 -a 1 r -t 0.86079 -s 3 -d 5 -p cbr -e 210 -c 1 -i 164 -a 1 r -t 0.86119 -s 2 -d 3 -p cbr -e 210 -c 1 -i 180 -a 1 + -t 0.86119 -s 3 -d 5 -p cbr -e 210 -c 1 -i 180 -a 1 - -t 0.86119 -s 3 -d 5 -p cbr -e 210 -c 1 -i 180 -a 1 h -t 0.86119 -s 3 -d 5 -p cbr -e 210 -c 1 -i 180 -a 1 + -t 0.86125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 213 -a 1 - -t 0.86125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 213 -a 1 h -t 0.86125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 213 -a 1 r -t 0.86211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 197 -a 1 + -t 0.86211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 197 -a 1 - -t 0.86211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 197 -a 1 h -t 0.86211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 197 -a 1 r -t 0.86415 -s 3 -d 5 -p cbr -e 210 -c 1 -i 165 -a 1 r -t 0.86455 -s 2 -d 3 -p cbr -e 210 -c 1 -i 181 -a 1 + -t 0.86455 -s 3 -d 5 -p cbr -e 210 -c 1 -i 181 -a 1 - -t 0.86455 -s 3 -d 5 -p cbr -e 210 -c 1 -i 181 -a 1 h -t 0.86455 -s 3 -d 5 -p cbr -e 210 -c 1 -i 181 -a 1 + -t 0.865 -s 1 -d 2 -p cbr -e 210 -c 1 -i 214 -a 1 - -t 0.865 -s 1 -d 2 -p cbr -e 210 -c 1 -i 214 -a 1 h -t 0.865 -s 1 -d 2 -p cbr -e 210 -c 1 -i 214 -a 1 r -t 0.86586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 198 -a 1 + -t 0.86586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 198 -a 1 - -t 0.86586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 198 -a 1 h -t 0.86586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 198 -a 1 r -t 0.86751 -s 3 -d 5 -p cbr -e 210 -c 1 -i 166 -a 1 r -t 0.86791 -s 2 -d 3 -p cbr -e 210 -c 1 -i 182 -a 1 + -t 0.86791 -s 3 -d 5 -p cbr -e 210 -c 1 -i 182 -a 1 - -t 0.86791 -s 3 -d 5 -p cbr -e 210 -c 1 -i 182 -a 1 h -t 0.86791 -s 3 -d 5 -p cbr -e 210 -c 1 -i 182 -a 1 + -t 0.86875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 215 -a 1 - -t 0.86875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 215 -a 1 h -t 0.86875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 215 -a 1 r -t 0.86961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 199 -a 1 + -t 0.86961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 199 -a 1 - -t 0.86961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 199 -a 1 h -t 0.86961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 199 -a 1 v -t 0.87 sim_annotation 0.87 14 TIMEOUT for Packet_5 r -t 0.87039 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 194 -a 0 -S 0 -y {3 3} + -t 0.87039 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 194 -a 0 -S 0 -y {3 3} r -t 0.87087 -s 3 -d 5 -p cbr -e 210 -c 1 -i 167 -a 1 r -t 0.87127 -s 2 -d 3 -p cbr -e 210 -c 1 -i 183 -a 1 + -t 0.87127 -s 3 -d 5 -p cbr -e 210 -c 1 -i 183 -a 1 - -t 0.87127 -s 3 -d 5 -p cbr -e 210 -c 1 -i 183 -a 1 h -t 0.87127 -s 3 -d 5 -p cbr -e 210 -c 1 -i 183 -a 1 + -t 0.8725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 216 -a 1 - -t 0.8725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 216 -a 1 h -t 0.8725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 216 -a 1 - -t 0.87297 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 194 -a 0 -S 0 -y {3 3} h -t 0.87297 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 194 -a 0 -S 0 -y {-1 -1} r -t 0.87336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 200 -a 1 + -t 0.87336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 200 -a 1 r -t 0.87423 -s 3 -d 5 -p cbr -e 210 -c 1 -i 168 -a 1 r -t 0.87463 -s 2 -d 3 -p cbr -e 210 -c 1 -i 184 -a 1 + -t 0.87463 -s 3 -d 5 -p cbr -e 210 -c 1 -i 184 -a 1 - -t 0.87463 -s 3 -d 5 -p cbr -e 210 -c 1 -i 184 -a 1 h -t 0.87463 -s 3 -d 5 -p cbr -e 210 -c 1 -i 184 -a 1 + -t 0.87625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 217 -a 1 - -t 0.87625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 217 -a 1 h -t 0.87625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 217 -a 1 r -t 0.87711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 201 -a 1 + -t 0.87711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 201 -a 1 r -t 0.87759 -s 3 -d 5 -p cbr -e 210 -c 1 -i 169 -a 1 r -t 0.87799 -s 2 -d 3 -p cbr -e 210 -c 1 -i 185 -a 1 + -t 0.87799 -s 3 -d 5 -p cbr -e 210 -c 1 -i 185 -a 1 - -t 0.87799 -s 3 -d 5 -p cbr -e 210 -c 1 -i 185 -a 1 h -t 0.87799 -s 3 -d 5 -p cbr -e 210 -c 1 -i 185 -a 1 + -t 0.88 -s 1 -d 2 -p cbr -e 210 -c 1 -i 218 -a 1 - -t 0.88 -s 1 -d 2 -p cbr -e 210 -c 1 -i 218 -a 1 h -t 0.88 -s 1 -d 2 -p cbr -e 210 -c 1 -i 218 -a 1 r -t 0.88086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 202 -a 1 + -t 0.88086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 202 -a 1 r -t 0.88095 -s 3 -d 5 -p cbr -e 210 -c 1 -i 170 -a 1 r -t 0.88172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 186 -a 1 + -t 0.88172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 186 -a 1 - -t 0.88172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 186 -a 1 h -t 0.88172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 186 -a 1 + -t 0.88375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 219 -a 1 - -t 0.88375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 219 -a 1 h -t 0.88375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 219 -a 1 r -t 0.88431 -s 3 -d 5 -p cbr -e 210 -c 1 -i 171 -a 1 r -t 0.88461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 203 -a 1 + -t 0.88461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 203 -a 1 r -t 0.88547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 187 -a 1 + -t 0.88547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 187 -a 1 - -t 0.88547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 187 -a 1 h -t 0.88547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 187 -a 1 r -t 0.88639 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 195 -a 0 -S 0 -y {4 4} + -t 0.88639 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 195 -a 0 -S 0 -y {4 4} + -t 0.8875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 220 -a 1 - -t 0.8875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 220 -a 1 h -t 0.8875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 220 -a 1 r -t 0.88767 -s 3 -d 5 -p cbr -e 210 -c 1 -i 172 -a 1 r -t 0.88836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 206 -a 1 + -t 0.88836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 206 -a 1 - -t 0.88897 -s 2 -d 3 -p cbr -e 210 -c 1 -i 200 -a 1 h -t 0.88897 -s 2 -d 3 -p cbr -e 210 -c 1 -i 200 -a 1 r -t 0.88922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 188 -a 1 + -t 0.88922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 188 -a 1 - -t 0.88922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 188 -a 1 h -t 0.88922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 188 -a 1 v -t 0.89000000000000001 sim_annotation 0.89000000000000001 15 Send Packet_5 r -t 0.89103 -s 3 -d 5 -p cbr -e 210 -c 1 -i 173 -a 1 + -t 0.89125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 221 -a 1 - -t 0.89125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 221 -a 1 h -t 0.89125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 221 -a 1 r -t 0.89211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 207 -a 1 + -t 0.89211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 207 -a 1 - -t 0.89233 -s 2 -d 3 -p cbr -e 210 -c 1 -i 201 -a 1 h -t 0.89233 -s 2 -d 3 -p cbr -e 210 -c 1 -i 201 -a 1 r -t 0.89297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 189 -a 1 + -t 0.89297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 189 -a 1 - -t 0.89297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 189 -a 1 h -t 0.89297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 189 -a 1 r -t 0.89439 -s 3 -d 5 -p cbr -e 210 -c 1 -i 174 -a 1 + -t 0.895 -s 1 -d 2 -p cbr -e 210 -c 1 -i 222 -a 1 - -t 0.895 -s 1 -d 2 -p cbr -e 210 -c 1 -i 222 -a 1 h -t 0.895 -s 1 -d 2 -p cbr -e 210 -c 1 -i 222 -a 1 - -t 0.89569 -s 2 -d 3 -p cbr -e 210 -c 1 -i 202 -a 1 h -t 0.89569 -s 2 -d 3 -p cbr -e 210 -c 1 -i 202 -a 1 r -t 0.89586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 208 -a 1 + -t 0.89586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 208 -a 1 r -t 0.89672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 190 -a 1 + -t 0.89672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 190 -a 1 - -t 0.89672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 190 -a 1 h -t 0.89672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 190 -a 1 r -t 0.89775 -s 3 -d 5 -p cbr -e 210 -c 1 -i 175 -a 1 + -t 0.89875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 223 -a 1 - -t 0.89875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 223 -a 1 h -t 0.89875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 223 -a 1 - -t 0.89905 -s 2 -d 3 -p cbr -e 210 -c 1 -i 203 -a 1 h -t 0.89905 -s 2 -d 3 -p cbr -e 210 -c 1 -i 203 -a 1 r -t 0.89961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 209 -a 1 + -t 0.89961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 209 -a 1 r -t 0.90047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 191 -a 1 + -t 0.90047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 191 -a 1 - -t 0.90047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 191 -a 1 h -t 0.90047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 191 -a 1 r -t 0.90111 -s 3 -d 5 -p cbr -e 210 -c 1 -i 176 -a 1 r -t 0.90239 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 204 -a 0 -S 0 -y {5 5} + -t 0.90239 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 204 -a 0 -S 0 -y {5 5} - -t 0.90241 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 195 -a 0 -S 0 -y {4 4} h -t 0.90241 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 195 -a 0 -S 0 -y {-1 -1} + -t 0.9025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 224 -a 1 - -t 0.9025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 224 -a 1 h -t 0.9025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 224 -a 1 r -t 0.90336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 210 -a 1 + -t 0.90336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 210 -a 1 r -t 0.90422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 192 -a 1 + -t 0.90422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 192 -a 1 - -t 0.90422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 192 -a 1 h -t 0.90422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 192 -a 1 r -t 0.90447 -s 3 -d 5 -p cbr -e 210 -c 1 -i 177 -a 1 + -t 0.90625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 225 -a 1 - -t 0.90625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 225 -a 1 h -t 0.90625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 225 -a 1 r -t 0.90711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 211 -a 1 + -t 0.90711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 211 -a 1 r -t 0.90783 -s 3 -d 5 -p cbr -e 210 -c 1 -i 178 -a 1 r -t 0.90797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 193 -a 1 + -t 0.90797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 193 -a 1 - -t 0.90797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 193 -a 1 h -t 0.90797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 193 -a 1 + -t 0.91 -s 1 -d 2 -p cbr -e 210 -c 1 -i 226 -a 1 - -t 0.91 -s 1 -d 2 -p cbr -e 210 -c 1 -i 226 -a 1 h -t 0.91 -s 1 -d 2 -p cbr -e 210 -c 1 -i 226 -a 1 r -t 0.91086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 212 -a 1 + -t 0.91086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 212 -a 1 r -t 0.91119 -s 3 -d 5 -p cbr -e 210 -c 1 -i 179 -a 1 r -t 0.91172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 196 -a 1 + -t 0.91172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 196 -a 1 - -t 0.91172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 196 -a 1 h -t 0.91172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 196 -a 1 + -t 0.91375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 227 -a 1 - -t 0.91375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 227 -a 1 h -t 0.91375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 227 -a 1 r -t 0.91455 -s 3 -d 5 -p cbr -e 210 -c 1 -i 180 -a 1 r -t 0.91461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 213 -a 1 + -t 0.91461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 213 -a 1 r -t 0.91547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 197 -a 1 + -t 0.91547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 197 -a 1 - -t 0.91547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 197 -a 1 h -t 0.91547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 197 -a 1 + -t 0.9175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 228 -a 1 - -t 0.9175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 228 -a 1 h -t 0.9175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 228 -a 1 r -t 0.91791 -s 3 -d 5 -p cbr -e 210 -c 1 -i 181 -a 1 r -t 0.91836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 214 -a 1 + -t 0.91836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 214 -a 1 d -t 0.91836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 214 -a 1 r -t 0.91839 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 205 -a 0 -S 0 -y {6 6} + -t 0.91839 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 205 -a 0 -S 0 -y {6 6} d -t 0.91839 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 205 -a 0 -S 0 -y {6 6} - -t 0.91841 -s 2 -d 3 -p cbr -e 210 -c 1 -i 206 -a 1 h -t 0.91841 -s 2 -d 3 -p cbr -e 210 -c 1 -i 206 -a 1 r -t 0.91922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 198 -a 1 + -t 0.91922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 198 -a 1 - -t 0.91922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 198 -a 1 h -t 0.91922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 198 -a 1 + -t 0.92125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 229 -a 1 - -t 0.92125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 229 -a 1 h -t 0.92125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 229 -a 1 r -t 0.92127 -s 3 -d 5 -p cbr -e 210 -c 1 -i 182 -a 1 - -t 0.92177 -s 2 -d 3 -p cbr -e 210 -c 1 -i 207 -a 1 h -t 0.92177 -s 2 -d 3 -p cbr -e 210 -c 1 -i 207 -a 1 r -t 0.92211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 215 -a 1 + -t 0.92211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 215 -a 1 r -t 0.92297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 199 -a 1 + -t 0.92297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 199 -a 1 - -t 0.92297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 199 -a 1 h -t 0.92297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 199 -a 1 r -t 0.92463 -s 3 -d 5 -p cbr -e 210 -c 1 -i 183 -a 1 + -t 0.925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 230 -a 1 - -t 0.925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 230 -a 1 h -t 0.925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 230 -a 1 - -t 0.92513 -s 2 -d 3 -p cbr -e 210 -c 1 -i 208 -a 1 h -t 0.92513 -s 2 -d 3 -p cbr -e 210 -c 1 -i 208 -a 1 r -t 0.92586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 216 -a 1 + -t 0.92586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 216 -a 1 r -t 0.92799 -s 3 -d 5 -p cbr -e 210 -c 1 -i 184 -a 1 - -t 0.92849 -s 2 -d 3 -p cbr -e 210 -c 1 -i 209 -a 1 h -t 0.92849 -s 2 -d 3 -p cbr -e 210 -c 1 -i 209 -a 1 + -t 0.92875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 231 -a 1 - -t 0.92875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 231 -a 1 h -t 0.92875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 231 -a 1 r -t 0.92961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 217 -a 1 + -t 0.92961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 217 -a 1 r -t 0.93135 -s 3 -d 5 -p cbr -e 210 -c 1 -i 185 -a 1 - -t 0.93185 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 204 -a 0 -S 0 -y {5 5} h -t 0.93185 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 204 -a 0 -S 0 -y {-1 -1} + -t 0.9325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 232 -a 1 - -t 0.9325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 232 -a 1 h -t 0.9325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 232 -a 1 r -t 0.93336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 218 -a 1 + -t 0.93336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 218 -a 1 r -t 0.93508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 186 -a 1 + -t 0.93625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 233 -a 1 - -t 0.93625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 233 -a 1 h -t 0.93625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 233 -a 1 r -t 0.93711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 219 -a 1 + -t 0.93711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 219 -a 1 r -t 0.93883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 187 -a 1 r -t 0.93897 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 194 -a 0 -S 0 -y {3 3} + -t 0.93897 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 194 -a 0 -S 0 -y {3 3} - -t 0.93897 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 194 -a 0 -S 0 -y {3 3} h -t 0.93897 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 194 -a 0 -S 0 -y {-1 -1} + -t 0.94 -s 1 -d 2 -p cbr -e 210 -c 1 -i 234 -a 1 - -t 0.94 -s 1 -d 2 -p cbr -e 210 -c 1 -i 234 -a 1 h -t 0.94 -s 1 -d 2 -p cbr -e 210 -c 1 -i 234 -a 1 r -t 0.94086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 220 -a 1 + -t 0.94086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 220 -a 1 d -t 0.94086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 220 -a 1 r -t 0.94233 -s 2 -d 3 -p cbr -e 210 -c 1 -i 200 -a 1 + -t 0.94233 -s 3 -d 5 -p cbr -e 210 -c 1 -i 200 -a 1 - -t 0.94233 -s 3 -d 5 -p cbr -e 210 -c 1 -i 200 -a 1 h -t 0.94233 -s 3 -d 5 -p cbr -e 210 -c 1 -i 200 -a 1 r -t 0.94258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 188 -a 1 + -t 0.94375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 235 -a 1 - -t 0.94375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 235 -a 1 h -t 0.94375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 235 -a 1 r -t 0.94461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 221 -a 1 + -t 0.94461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 221 -a 1 d -t 0.94461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 221 -a 1 r -t 0.94569 -s 2 -d 3 -p cbr -e 210 -c 1 -i 201 -a 1 + -t 0.94569 -s 3 -d 5 -p cbr -e 210 -c 1 -i 201 -a 1 - -t 0.94569 -s 3 -d 5 -p cbr -e 210 -c 1 -i 201 -a 1 h -t 0.94569 -s 3 -d 5 -p cbr -e 210 -c 1 -i 201 -a 1 r -t 0.94633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 189 -a 1 + -t 0.9475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 236 -a 1 - -t 0.9475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 236 -a 1 h -t 0.9475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 236 -a 1 - -t 0.94785 -s 2 -d 3 -p cbr -e 210 -c 1 -i 210 -a 1 h -t 0.94785 -s 2 -d 3 -p cbr -e 210 -c 1 -i 210 -a 1 r -t 0.94836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 222 -a 1 + -t 0.94836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 222 -a 1 r -t 0.94905 -s 2 -d 3 -p cbr -e 210 -c 1 -i 202 -a 1 + -t 0.94905 -s 3 -d 5 -p cbr -e 210 -c 1 -i 202 -a 1 - -t 0.94905 -s 3 -d 5 -p cbr -e 210 -c 1 -i 202 -a 1 h -t 0.94905 -s 3 -d 5 -p cbr -e 210 -c 1 -i 202 -a 1 r -t 0.95008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 190 -a 1 - -t 0.95121 -s 2 -d 3 -p cbr -e 210 -c 1 -i 211 -a 1 h -t 0.95121 -s 2 -d 3 -p cbr -e 210 -c 1 -i 211 -a 1 + -t 0.95125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 237 -a 1 - -t 0.95125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 237 -a 1 h -t 0.95125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 237 -a 1 r -t 0.95211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 223 -a 1 + -t 0.95211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 223 -a 1 r -t 0.95241 -s 2 -d 3 -p cbr -e 210 -c 1 -i 203 -a 1 + -t 0.95241 -s 3 -d 5 -p cbr -e 210 -c 1 -i 203 -a 1 - -t 0.95241 -s 3 -d 5 -p cbr -e 210 -c 1 -i 203 -a 1 h -t 0.95241 -s 3 -d 5 -p cbr -e 210 -c 1 -i 203 -a 1 r -t 0.95383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 191 -a 1 - -t 0.95457 -s 2 -d 3 -p cbr -e 210 -c 1 -i 212 -a 1 h -t 0.95457 -s 2 -d 3 -p cbr -e 210 -c 1 -i 212 -a 1 + -t 0.955 -s 1 -d 2 -p cbr -e 210 -c 1 -i 238 -a 1 - -t 0.955 -s 1 -d 2 -p cbr -e 210 -c 1 -i 238 -a 1 h -t 0.955 -s 1 -d 2 -p cbr -e 210 -c 1 -i 238 -a 1 r -t 0.95586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 224 -a 1 + -t 0.95586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 224 -a 1 r -t 0.95758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 192 -a 1 - -t 0.95793 -s 2 -d 3 -p cbr -e 210 -c 1 -i 213 -a 1 h -t 0.95793 -s 2 -d 3 -p cbr -e 210 -c 1 -i 213 -a 1 + -t 0.95875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 239 -a 1 - -t 0.95875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 239 -a 1 h -t 0.95875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 239 -a 1 r -t 0.95961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 225 -a 1 + -t 0.95961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 225 -a 1 - -t 0.96129 -s 2 -d 3 -p cbr -e 210 -c 1 -i 215 -a 1 h -t 0.96129 -s 2 -d 3 -p cbr -e 210 -c 1 -i 215 -a 1 r -t 0.96133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 193 -a 1 + -t 0.9625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 240 -a 1 - -t 0.9625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 240 -a 1 h -t 0.9625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 240 -a 1 r -t 0.96336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 226 -a 1 + -t 0.96336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 226 -a 1 - -t 0.96465 -s 2 -d 3 -p cbr -e 210 -c 1 -i 216 -a 1 h -t 0.96465 -s 2 -d 3 -p cbr -e 210 -c 1 -i 216 -a 1 r -t 0.96508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 196 -a 1 + -t 0.96625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 241 -a 1 - -t 0.96625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 241 -a 1 h -t 0.96625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 241 -a 1 r -t 0.96711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 227 -a 1 + -t 0.96711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 227 -a 1 - -t 0.96801 -s 2 -d 3 -p cbr -e 210 -c 1 -i 217 -a 1 h -t 0.96801 -s 2 -d 3 -p cbr -e 210 -c 1 -i 217 -a 1 r -t 0.96841 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 195 -a 0 -S 0 -y {4 4} + -t 0.96841 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 195 -a 0 -S 0 -y {4 4} - -t 0.96841 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 195 -a 0 -S 0 -y {4 4} h -t 0.96841 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 195 -a 0 -S 0 -y {-1 -1} r -t 0.96883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 197 -a 1 + -t 0.97 -s 1 -d 2 -p cbr -e 210 -c 1 -i 242 -a 1 - -t 0.97 -s 1 -d 2 -p cbr -e 210 -c 1 -i 242 -a 1 h -t 0.97 -s 1 -d 2 -p cbr -e 210 -c 1 -i 242 -a 1 r -t 0.97086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 228 -a 1 + -t 0.97086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 228 -a 1 - -t 0.97137 -s 2 -d 3 -p cbr -e 210 -c 1 -i 218 -a 1 h -t 0.97137 -s 2 -d 3 -p cbr -e 210 -c 1 -i 218 -a 1 r -t 0.97177 -s 2 -d 3 -p cbr -e 210 -c 1 -i 206 -a 1 + -t 0.97177 -s 3 -d 5 -p cbr -e 210 -c 1 -i 206 -a 1 - -t 0.97177 -s 3 -d 5 -p cbr -e 210 -c 1 -i 206 -a 1 h -t 0.97177 -s 3 -d 5 -p cbr -e 210 -c 1 -i 206 -a 1 r -t 0.97258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 198 -a 1 + -t 0.97375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 243 -a 1 - -t 0.97375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 243 -a 1 h -t 0.97375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 243 -a 1 r -t 0.97461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 229 -a 1 + -t 0.97461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 229 -a 1 - -t 0.97473 -s 2 -d 3 -p cbr -e 210 -c 1 -i 219 -a 1 h -t 0.97473 -s 2 -d 3 -p cbr -e 210 -c 1 -i 219 -a 1 r -t 0.97513 -s 2 -d 3 -p cbr -e 210 -c 1 -i 207 -a 1 + -t 0.97513 -s 3 -d 5 -p cbr -e 210 -c 1 -i 207 -a 1 - -t 0.97513 -s 3 -d 5 -p cbr -e 210 -c 1 -i 207 -a 1 h -t 0.97513 -s 3 -d 5 -p cbr -e 210 -c 1 -i 207 -a 1 r -t 0.97633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 199 -a 1 + -t 0.9775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 244 -a 1 - -t 0.9775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 244 -a 1 h -t 0.9775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 244 -a 1 - -t 0.97809 -s 2 -d 3 -p cbr -e 210 -c 1 -i 222 -a 1 h -t 0.97809 -s 2 -d 3 -p cbr -e 210 -c 1 -i 222 -a 1 r -t 0.97836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 230 -a 1 + -t 0.97836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 230 -a 1 r -t 0.97849 -s 2 -d 3 -p cbr -e 210 -c 1 -i 208 -a 1 + -t 0.97849 -s 3 -d 5 -p cbr -e 210 -c 1 -i 208 -a 1 - -t 0.97849 -s 3 -d 5 -p cbr -e 210 -c 1 -i 208 -a 1 h -t 0.97849 -s 3 -d 5 -p cbr -e 210 -c 1 -i 208 -a 1 + -t 0.98125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 245 -a 1 - -t 0.98125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 245 -a 1 h -t 0.98125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 245 -a 1 - -t 0.98145 -s 2 -d 3 -p cbr -e 210 -c 1 -i 223 -a 1 h -t 0.98145 -s 2 -d 3 -p cbr -e 210 -c 1 -i 223 -a 1 r -t 0.98185 -s 2 -d 3 -p cbr -e 210 -c 1 -i 209 -a 1 + -t 0.98185 -s 3 -d 5 -p cbr -e 210 -c 1 -i 209 -a 1 - -t 0.98185 -s 3 -d 5 -p cbr -e 210 -c 1 -i 209 -a 1 h -t 0.98185 -s 3 -d 5 -p cbr -e 210 -c 1 -i 209 -a 1 r -t 0.98211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 231 -a 1 + -t 0.98211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 231 -a 1 - -t 0.98481 -s 2 -d 3 -p cbr -e 210 -c 1 -i 224 -a 1 h -t 0.98481 -s 2 -d 3 -p cbr -e 210 -c 1 -i 224 -a 1 + -t 0.985 -s 1 -d 2 -p cbr -e 210 -c 1 -i 246 -a 1 - -t 0.985 -s 1 -d 2 -p cbr -e 210 -c 1 -i 246 -a 1 h -t 0.985 -s 1 -d 2 -p cbr -e 210 -c 1 -i 246 -a 1 r -t 0.98586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 232 -a 1 + -t 0.98586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 232 -a 1 - -t 0.98817 -s 2 -d 3 -p cbr -e 210 -c 1 -i 225 -a 1 h -t 0.98817 -s 2 -d 3 -p cbr -e 210 -c 1 -i 225 -a 1 + -t 0.98875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 247 -a 1 - -t 0.98875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 247 -a 1 h -t 0.98875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 247 -a 1 r -t 0.98961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 233 -a 1 + -t 0.98961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 233 -a 1 - -t 0.99153 -s 2 -d 3 -p cbr -e 210 -c 1 -i 226 -a 1 h -t 0.99153 -s 2 -d 3 -p cbr -e 210 -c 1 -i 226 -a 1 + -t 0.9925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 248 -a 1 - -t 0.9925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 248 -a 1 h -t 0.9925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 248 -a 1 r -t 0.99336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 234 -a 1 + -t 0.99336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 234 -a 1 - -t 0.99489 -s 2 -d 3 -p cbr -e 210 -c 1 -i 227 -a 1 h -t 0.99489 -s 2 -d 3 -p cbr -e 210 -c 1 -i 227 -a 1 r -t 0.99569 -s 3 -d 5 -p cbr -e 210 -c 1 -i 200 -a 1 + -t 0.99625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 249 -a 1 - -t 0.99625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 249 -a 1 h -t 0.99625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 249 -a 1 r -t 0.99711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 235 -a 1 + -t 0.99711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 235 -a 1 r -t 0.99785 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 204 -a 0 -S 0 -y {5 5} + -t 0.99785 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 204 -a 0 -S 0 -y {5 5} - -t 0.99785 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 204 -a 0 -S 0 -y {5 5} h -t 0.99785 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 204 -a 0 -S 0 -y {-1 -1} - -t 0.99825 -s 2 -d 3 -p cbr -e 210 -c 1 -i 228 -a 1 h -t 0.99825 -s 2 -d 3 -p cbr -e 210 -c 1 -i 228 -a 1 r -t 0.99905 -s 3 -d 5 -p cbr -e 210 -c 1 -i 201 -a 1 + -t 1 -s 1 -d 2 -p cbr -e 210 -c 1 -i 250 -a 1 - -t 1 -s 1 -d 2 -p cbr -e 210 -c 1 -i 250 -a 1 h -t 1 -s 1 -d 2 -p cbr -e 210 -c 1 -i 250 -a 1 r -t 1.00086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 236 -a 1 + -t 1.00086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 236 -a 1 r -t 1.00121 -s 2 -d 3 -p cbr -e 210 -c 1 -i 210 -a 1 + -t 1.00121 -s 3 -d 5 -p cbr -e 210 -c 1 -i 210 -a 1 - -t 1.00121 -s 3 -d 5 -p cbr -e 210 -c 1 -i 210 -a 1 h -t 1.00121 -s 3 -d 5 -p cbr -e 210 -c 1 -i 210 -a 1 - -t 1.00161 -s 2 -d 3 -p cbr -e 210 -c 1 -i 229 -a 1 h -t 1.00161 -s 2 -d 3 -p cbr -e 210 -c 1 -i 229 -a 1 r -t 1.00241 -s 3 -d 5 -p cbr -e 210 -c 1 -i 202 -a 1 + -t 1.00375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 251 -a 1 - -t 1.00375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 251 -a 1 h -t 1.00375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 251 -a 1 r -t 1.00457 -s 2 -d 3 -p cbr -e 210 -c 1 -i 211 -a 1 + -t 1.00457 -s 3 -d 5 -p cbr -e 210 -c 1 -i 211 -a 1 - -t 1.00457 -s 3 -d 5 -p cbr -e 210 -c 1 -i 211 -a 1 h -t 1.00457 -s 3 -d 5 -p cbr -e 210 -c 1 -i 211 -a 1 r -t 1.00461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 237 -a 1 + -t 1.00461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 237 -a 1 r -t 1.00497 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 194 -a 0 -S 0 -y {3 3} + -t 1.00497 -s 4 -d 3 -p ack -e 40 -c 0 -i 252 -a 0 -S 0 -y {3 3} - -t 1.00497 -s 4 -d 3 -p ack -e 40 -c 0 -i 252 -a 0 -S 0 -y {3 3} h -t 1.00497 -s 4 -d 3 -p ack -e 40 -c 0 -i 252 -a 0 -S 0 -y {-1 -1} - -t 1.00497 -s 2 -d 3 -p cbr -e 210 -c 1 -i 230 -a 1 h -t 1.00497 -s 2 -d 3 -p cbr -e 210 -c 1 -i 230 -a 1 r -t 1.00577 -s 3 -d 5 -p cbr -e 210 -c 1 -i 203 -a 1 + -t 1.0075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 253 -a 1 - -t 1.0075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 253 -a 1 h -t 1.0075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 253 -a 1 r -t 1.00793 -s 2 -d 3 -p cbr -e 210 -c 1 -i 212 -a 1 + -t 1.00793 -s 3 -d 5 -p cbr -e 210 -c 1 -i 212 -a 1 - -t 1.00793 -s 3 -d 5 -p cbr -e 210 -c 1 -i 212 -a 1 h -t 1.00793 -s 3 -d 5 -p cbr -e 210 -c 1 -i 212 -a 1 - -t 1.00833 -s 2 -d 3 -p cbr -e 210 -c 1 -i 231 -a 1 h -t 1.00833 -s 2 -d 3 -p cbr -e 210 -c 1 -i 231 -a 1 r -t 1.00836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 238 -a 1 + -t 1.00836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 238 -a 1 + -t 1.01125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 254 -a 1 - -t 1.01125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 254 -a 1 h -t 1.01125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 254 -a 1 r -t 1.01129 -s 2 -d 3 -p cbr -e 210 -c 1 -i 213 -a 1 + -t 1.01129 -s 3 -d 5 -p cbr -e 210 -c 1 -i 213 -a 1 - -t 1.01129 -s 3 -d 5 -p cbr -e 210 -c 1 -i 213 -a 1 h -t 1.01129 -s 3 -d 5 -p cbr -e 210 -c 1 -i 213 -a 1 - -t 1.01169 -s 2 -d 3 -p cbr -e 210 -c 1 -i 232 -a 1 h -t 1.01169 -s 2 -d 3 -p cbr -e 210 -c 1 -i 232 -a 1 r -t 1.01211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 239 -a 1 + -t 1.01211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 239 -a 1 r -t 1.01465 -s 2 -d 3 -p cbr -e 210 -c 1 -i 215 -a 1 + -t 1.01465 -s 3 -d 5 -p cbr -e 210 -c 1 -i 215 -a 1 - -t 1.01465 -s 3 -d 5 -p cbr -e 210 -c 1 -i 215 -a 1 h -t 1.01465 -s 3 -d 5 -p cbr -e 210 -c 1 -i 215 -a 1 + -t 1.015 -s 1 -d 2 -p cbr -e 210 -c 1 -i 255 -a 1 - -t 1.015 -s 1 -d 2 -p cbr -e 210 -c 1 -i 255 -a 1 h -t 1.015 -s 1 -d 2 -p cbr -e 210 -c 1 -i 255 -a 1 - -t 1.01505 -s 2 -d 3 -p cbr -e 210 -c 1 -i 233 -a 1 h -t 1.01505 -s 2 -d 3 -p cbr -e 210 -c 1 -i 233 -a 1 r -t 1.01586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 240 -a 1 + -t 1.01586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 240 -a 1 r -t 1.01801 -s 2 -d 3 -p cbr -e 210 -c 1 -i 216 -a 1 + -t 1.01801 -s 3 -d 5 -p cbr -e 210 -c 1 -i 216 -a 1 - -t 1.01801 -s 3 -d 5 -p cbr -e 210 -c 1 -i 216 -a 1 h -t 1.01801 -s 3 -d 5 -p cbr -e 210 -c 1 -i 216 -a 1 - -t 1.01841 -s 2 -d 3 -p cbr -e 210 -c 1 -i 234 -a 1 h -t 1.01841 -s 2 -d 3 -p cbr -e 210 -c 1 -i 234 -a 1 + -t 1.01875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 256 -a 1 - -t 1.01875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 256 -a 1 h -t 1.01875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 256 -a 1 r -t 1.01961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 241 -a 1 + -t 1.01961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 241 -a 1 v -t 1.02 sim_annotation 1.02 16 Ack_5 : 1 ack is coming r -t 1.02137 -s 2 -d 3 -p cbr -e 210 -c 1 -i 217 -a 1 + -t 1.02137 -s 3 -d 5 -p cbr -e 210 -c 1 -i 217 -a 1 - -t 1.02137 -s 3 -d 5 -p cbr -e 210 -c 1 -i 217 -a 1 h -t 1.02137 -s 3 -d 5 -p cbr -e 210 -c 1 -i 217 -a 1 - -t 1.02177 -s 2 -d 3 -p cbr -e 210 -c 1 -i 235 -a 1 h -t 1.02177 -s 2 -d 3 -p cbr -e 210 -c 1 -i 235 -a 1 + -t 1.0225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 257 -a 1 - -t 1.0225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 257 -a 1 h -t 1.0225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 257 -a 1 r -t 1.02336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 242 -a 1 + -t 1.02336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 242 -a 1 r -t 1.02473 -s 2 -d 3 -p cbr -e 210 -c 1 -i 218 -a 1 + -t 1.02473 -s 3 -d 5 -p cbr -e 210 -c 1 -i 218 -a 1 - -t 1.02473 -s 3 -d 5 -p cbr -e 210 -c 1 -i 218 -a 1 h -t 1.02473 -s 3 -d 5 -p cbr -e 210 -c 1 -i 218 -a 1 r -t 1.02513 -s 3 -d 5 -p cbr -e 210 -c 1 -i 206 -a 1 - -t 1.02513 -s 2 -d 3 -p cbr -e 210 -c 1 -i 236 -a 1 h -t 1.02513 -s 2 -d 3 -p cbr -e 210 -c 1 -i 236 -a 1 + -t 1.02625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 258 -a 1 - -t 1.02625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 258 -a 1 h -t 1.02625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 258 -a 1 r -t 1.02711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 243 -a 1 + -t 1.02711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 243 -a 1 r -t 1.02809 -s 2 -d 3 -p cbr -e 210 -c 1 -i 219 -a 1 + -t 1.02809 -s 3 -d 5 -p cbr -e 210 -c 1 -i 219 -a 1 - -t 1.02809 -s 3 -d 5 -p cbr -e 210 -c 1 -i 219 -a 1 h -t 1.02809 -s 3 -d 5 -p cbr -e 210 -c 1 -i 219 -a 1 r -t 1.02849 -s 3 -d 5 -p cbr -e 210 -c 1 -i 207 -a 1 - -t 1.02849 -s 2 -d 3 -p cbr -e 210 -c 1 -i 237 -a 1 h -t 1.02849 -s 2 -d 3 -p cbr -e 210 -c 1 -i 237 -a 1 + -t 1.03 -s 1 -d 2 -p cbr -e 210 -c 1 -i 259 -a 1 - -t 1.03 -s 1 -d 2 -p cbr -e 210 -c 1 -i 259 -a 1 h -t 1.03 -s 1 -d 2 -p cbr -e 210 -c 1 -i 259 -a 1 r -t 1.03086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 244 -a 1 + -t 1.03086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 244 -a 1 r -t 1.03145 -s 2 -d 3 -p cbr -e 210 -c 1 -i 222 -a 1 + -t 1.03145 -s 3 -d 5 -p cbr -e 210 -c 1 -i 222 -a 1 - -t 1.03145 -s 3 -d 5 -p cbr -e 210 -c 1 -i 222 -a 1 h -t 1.03145 -s 3 -d 5 -p cbr -e 210 -c 1 -i 222 -a 1 r -t 1.03185 -s 3 -d 5 -p cbr -e 210 -c 1 -i 208 -a 1 - -t 1.03185 -s 2 -d 3 -p cbr -e 210 -c 1 -i 238 -a 1 h -t 1.03185 -s 2 -d 3 -p cbr -e 210 -c 1 -i 238 -a 1 + -t 1.03375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 260 -a 1 - -t 1.03375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 260 -a 1 h -t 1.03375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 260 -a 1 r -t 1.03441 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 195 -a 0 -S 0 -y {4 4} + -t 1.03441 -s 4 -d 3 -p ack -e 40 -c 0 -i 261 -a 0 -S 0 -y {4 4} - -t 1.03441 -s 4 -d 3 -p ack -e 40 -c 0 -i 261 -a 0 -S 0 -y {4 4} h -t 1.03441 -s 4 -d 3 -p ack -e 40 -c 0 -i 261 -a 0 -S 0 -y {-1 -1} r -t 1.03461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 245 -a 1 + -t 1.03461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 245 -a 1 r -t 1.03481 -s 2 -d 3 -p cbr -e 210 -c 1 -i 223 -a 1 + -t 1.03481 -s 3 -d 5 -p cbr -e 210 -c 1 -i 223 -a 1 - -t 1.03481 -s 3 -d 5 -p cbr -e 210 -c 1 -i 223 -a 1 h -t 1.03481 -s 3 -d 5 -p cbr -e 210 -c 1 -i 223 -a 1 r -t 1.03521 -s 3 -d 5 -p cbr -e 210 -c 1 -i 209 -a 1 - -t 1.03521 -s 2 -d 3 -p cbr -e 210 -c 1 -i 239 -a 1 h -t 1.03521 -s 2 -d 3 -p cbr -e 210 -c 1 -i 239 -a 1 + -t 1.0375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 262 -a 1 - -t 1.0375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 262 -a 1 h -t 1.0375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 262 -a 1 r -t 1.03817 -s 2 -d 3 -p cbr -e 210 -c 1 -i 224 -a 1 + -t 1.03817 -s 3 -d 5 -p cbr -e 210 -c 1 -i 224 -a 1 - -t 1.03817 -s 3 -d 5 -p cbr -e 210 -c 1 -i 224 -a 1 h -t 1.03817 -s 3 -d 5 -p cbr -e 210 -c 1 -i 224 -a 1 r -t 1.03836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 246 -a 1 + -t 1.03836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 246 -a 1 - -t 1.03857 -s 2 -d 3 -p cbr -e 210 -c 1 -i 240 -a 1 h -t 1.03857 -s 2 -d 3 -p cbr -e 210 -c 1 -i 240 -a 1 + -t 1.04125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 263 -a 1 - -t 1.04125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 263 -a 1 h -t 1.04125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 263 -a 1 r -t 1.04153 -s 2 -d 3 -p cbr -e 210 -c 1 -i 225 -a 1 + -t 1.04153 -s 3 -d 5 -p cbr -e 210 -c 1 -i 225 -a 1 - -t 1.04153 -s 3 -d 5 -p cbr -e 210 -c 1 -i 225 -a 1 h -t 1.04153 -s 3 -d 5 -p cbr -e 210 -c 1 -i 225 -a 1 - -t 1.04193 -s 2 -d 3 -p cbr -e 210 -c 1 -i 241 -a 1 h -t 1.04193 -s 2 -d 3 -p cbr -e 210 -c 1 -i 241 -a 1 r -t 1.04211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 247 -a 1 + -t 1.04211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 247 -a 1 r -t 1.04489 -s 2 -d 3 -p cbr -e 210 -c 1 -i 226 -a 1 + -t 1.04489 -s 3 -d 5 -p cbr -e 210 -c 1 -i 226 -a 1 - -t 1.04489 -s 3 -d 5 -p cbr -e 210 -c 1 -i 226 -a 1 h -t 1.04489 -s 3 -d 5 -p cbr -e 210 -c 1 -i 226 -a 1 + -t 1.045 -s 1 -d 2 -p cbr -e 210 -c 1 -i 264 -a 1 - -t 1.045 -s 1 -d 2 -p cbr -e 210 -c 1 -i 264 -a 1 h -t 1.045 -s 1 -d 2 -p cbr -e 210 -c 1 -i 264 -a 1 - -t 1.04529 -s 2 -d 3 -p cbr -e 210 -c 1 -i 242 -a 1 h -t 1.04529 -s 2 -d 3 -p cbr -e 210 -c 1 -i 242 -a 1 r -t 1.04586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 248 -a 1 + -t 1.04586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 248 -a 1 r -t 1.04825 -s 2 -d 3 -p cbr -e 210 -c 1 -i 227 -a 1 + -t 1.04825 -s 3 -d 5 -p cbr -e 210 -c 1 -i 227 -a 1 - -t 1.04825 -s 3 -d 5 -p cbr -e 210 -c 1 -i 227 -a 1 h -t 1.04825 -s 3 -d 5 -p cbr -e 210 -c 1 -i 227 -a 1 - -t 1.04865 -s 2 -d 3 -p cbr -e 210 -c 1 -i 243 -a 1 h -t 1.04865 -s 2 -d 3 -p cbr -e 210 -c 1 -i 243 -a 1 + -t 1.04875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 265 -a 1 - -t 1.04875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 265 -a 1 h -t 1.04875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 265 -a 1 r -t 1.04961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 249 -a 1 + -t 1.04961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 249 -a 1 r -t 1.05161 -s 2 -d 3 -p cbr -e 210 -c 1 -i 228 -a 1 + -t 1.05161 -s 3 -d 5 -p cbr -e 210 -c 1 -i 228 -a 1 - -t 1.05161 -s 3 -d 5 -p cbr -e 210 -c 1 -i 228 -a 1 h -t 1.05161 -s 3 -d 5 -p cbr -e 210 -c 1 -i 228 -a 1 - -t 1.05201 -s 2 -d 3 -p cbr -e 210 -c 1 -i 244 -a 1 h -t 1.05201 -s 2 -d 3 -p cbr -e 210 -c 1 -i 244 -a 1 + -t 1.0525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 266 -a 1 - -t 1.0525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 266 -a 1 h -t 1.0525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 266 -a 1 r -t 1.05336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 250 -a 1 + -t 1.05336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 250 -a 1 r -t 1.05457 -s 3 -d 5 -p cbr -e 210 -c 1 -i 210 -a 1 r -t 1.05497 -s 2 -d 3 -p cbr -e 210 -c 1 -i 229 -a 1 + -t 1.05497 -s 3 -d 5 -p cbr -e 210 -c 1 -i 229 -a 1 - -t 1.05497 -s 3 -d 5 -p cbr -e 210 -c 1 -i 229 -a 1 h -t 1.05497 -s 3 -d 5 -p cbr -e 210 -c 1 -i 229 -a 1 - -t 1.05537 -s 2 -d 3 -p cbr -e 210 -c 1 -i 245 -a 1 h -t 1.05537 -s 2 -d 3 -p cbr -e 210 -c 1 -i 245 -a 1 r -t 1.05561 -s 4 -d 3 -p ack -e 40 -c 0 -i 252 -a 0 -S 0 -y {3 3} + -t 1.05561 -s 3 -d 2 -p ack -e 40 -c 0 -i 252 -a 0 -S 0 -y {3 3} - -t 1.05561 -s 3 -d 2 -p ack -e 40 -c 0 -i 252 -a 0 -S 0 -y {3 3} h -t 1.05561 -s 3 -d 2 -p ack -e 40 -c 0 -i 252 -a 0 -S 0 -y {-1 -1} + -t 1.05625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 267 -a 1 - -t 1.05625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 267 -a 1 h -t 1.05625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 267 -a 1 r -t 1.05711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 251 -a 1 + -t 1.05711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 251 -a 1 r -t 1.05793 -s 3 -d 5 -p cbr -e 210 -c 1 -i 211 -a 1 r -t 1.05833 -s 2 -d 3 -p cbr -e 210 -c 1 -i 230 -a 1 + -t 1.05833 -s 3 -d 5 -p cbr -e 210 -c 1 -i 230 -a 1 - -t 1.05833 -s 3 -d 5 -p cbr -e 210 -c 1 -i 230 -a 1 h -t 1.05833 -s 3 -d 5 -p cbr -e 210 -c 1 -i 230 -a 1 - -t 1.05873 -s 2 -d 3 -p cbr -e 210 -c 1 -i 246 -a 1 h -t 1.05873 -s 2 -d 3 -p cbr -e 210 -c 1 -i 246 -a 1 + -t 1.06 -s 1 -d 2 -p cbr -e 210 -c 1 -i 268 -a 1 - -t 1.06 -s 1 -d 2 -p cbr -e 210 -c 1 -i 268 -a 1 h -t 1.06 -s 1 -d 2 -p cbr -e 210 -c 1 -i 268 -a 1 r -t 1.06086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 253 -a 1 + -t 1.06086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 253 -a 1 r -t 1.06129 -s 3 -d 5 -p cbr -e 210 -c 1 -i 212 -a 1 r -t 1.06169 -s 2 -d 3 -p cbr -e 210 -c 1 -i 231 -a 1 + -t 1.06169 -s 3 -d 5 -p cbr -e 210 -c 1 -i 231 -a 1 - -t 1.06169 -s 3 -d 5 -p cbr -e 210 -c 1 -i 231 -a 1 h -t 1.06169 -s 3 -d 5 -p cbr -e 210 -c 1 -i 231 -a 1 - -t 1.06209 -s 2 -d 3 -p cbr -e 210 -c 1 -i 247 -a 1 h -t 1.06209 -s 2 -d 3 -p cbr -e 210 -c 1 -i 247 -a 1 + -t 1.06375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 269 -a 1 - -t 1.06375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 269 -a 1 h -t 1.06375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 269 -a 1 r -t 1.06385 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 204 -a 0 -S 0 -y {5 5} + -t 1.06385 -s 4 -d 3 -p ack -e 40 -c 0 -i 270 -a 0 -S 0 -y {5 5} - -t 1.06385 -s 4 -d 3 -p ack -e 40 -c 0 -i 270 -a 0 -S 0 -y {5 5} h -t 1.06385 -s 4 -d 3 -p ack -e 40 -c 0 -i 270 -a 0 -S 0 -y {-1 -1} r -t 1.06461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 254 -a 1 + -t 1.06461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 254 -a 1 r -t 1.06465 -s 3 -d 5 -p cbr -e 210 -c 1 -i 213 -a 1 r -t 1.06505 -s 2 -d 3 -p cbr -e 210 -c 1 -i 232 -a 1 + -t 1.06505 -s 3 -d 5 -p cbr -e 210 -c 1 -i 232 -a 1 - -t 1.06505 -s 3 -d 5 -p cbr -e 210 -c 1 -i 232 -a 1 h -t 1.06505 -s 3 -d 5 -p cbr -e 210 -c 1 -i 232 -a 1 - -t 1.06545 -s 2 -d 3 -p cbr -e 210 -c 1 -i 248 -a 1 h -t 1.06545 -s 2 -d 3 -p cbr -e 210 -c 1 -i 248 -a 1 + -t 1.0675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 271 -a 1 - -t 1.0675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 271 -a 1 h -t 1.0675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 271 -a 1 r -t 1.06801 -s 3 -d 5 -p cbr -e 210 -c 1 -i 215 -a 1 r -t 1.06836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 255 -a 1 + -t 1.06836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 255 -a 1 r -t 1.06841 -s 2 -d 3 -p cbr -e 210 -c 1 -i 233 -a 1 + -t 1.06841 -s 3 -d 5 -p cbr -e 210 -c 1 -i 233 -a 1 - -t 1.06841 -s 3 -d 5 -p cbr -e 210 -c 1 -i 233 -a 1 h -t 1.06841 -s 3 -d 5 -p cbr -e 210 -c 1 -i 233 -a 1 - -t 1.06881 -s 2 -d 3 -p cbr -e 210 -c 1 -i 249 -a 1 h -t 1.06881 -s 2 -d 3 -p cbr -e 210 -c 1 -i 249 -a 1 + -t 1.07125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 272 -a 1 - -t 1.07125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 272 -a 1 h -t 1.07125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 272 -a 1 r -t 1.07137 -s 3 -d 5 -p cbr -e 210 -c 1 -i 216 -a 1 r -t 1.07177 -s 2 -d 3 -p cbr -e 210 -c 1 -i 234 -a 1 + -t 1.07177 -s 3 -d 5 -p cbr -e 210 -c 1 -i 234 -a 1 - -t 1.07177 -s 3 -d 5 -p cbr -e 210 -c 1 -i 234 -a 1 h -t 1.07177 -s 3 -d 5 -p cbr -e 210 -c 1 -i 234 -a 1 r -t 1.07211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 256 -a 1 + -t 1.07211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 256 -a 1 - -t 1.07217 -s 2 -d 3 -p cbr -e 210 -c 1 -i 250 -a 1 h -t 1.07217 -s 2 -d 3 -p cbr -e 210 -c 1 -i 250 -a 1 r -t 1.07473 -s 3 -d 5 -p cbr -e 210 -c 1 -i 217 -a 1 + -t 1.075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 273 -a 1 - -t 1.075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 273 -a 1 h -t 1.075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 273 -a 1 r -t 1.07513 -s 2 -d 3 -p cbr -e 210 -c 1 -i 235 -a 1 + -t 1.07513 -s 3 -d 5 -p cbr -e 210 -c 1 -i 235 -a 1 - -t 1.07513 -s 3 -d 5 -p cbr -e 210 -c 1 -i 235 -a 1 h -t 1.07513 -s 3 -d 5 -p cbr -e 210 -c 1 -i 235 -a 1 - -t 1.07553 -s 2 -d 3 -p cbr -e 210 -c 1 -i 251 -a 1 h -t 1.07553 -s 2 -d 3 -p cbr -e 210 -c 1 -i 251 -a 1 r -t 1.07586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 257 -a 1 + -t 1.07586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 257 -a 1 r -t 1.07809 -s 3 -d 5 -p cbr -e 210 -c 1 -i 218 -a 1 r -t 1.07849 -s 2 -d 3 -p cbr -e 210 -c 1 -i 236 -a 1 + -t 1.07849 -s 3 -d 5 -p cbr -e 210 -c 1 -i 236 -a 1 - -t 1.07849 -s 3 -d 5 -p cbr -e 210 -c 1 -i 236 -a 1 h -t 1.07849 -s 3 -d 5 -p cbr -e 210 -c 1 -i 236 -a 1 + -t 1.07875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 274 -a 1 - -t 1.07875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 274 -a 1 h -t 1.07875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 274 -a 1 - -t 1.07889 -s 2 -d 3 -p cbr -e 210 -c 1 -i 253 -a 1 h -t 1.07889 -s 2 -d 3 -p cbr -e 210 -c 1 -i 253 -a 1 r -t 1.07961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 258 -a 1 + -t 1.07961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 258 -a 1 v -t 1.0800000000000001 sim_annotation 1.0800000000000001 17 Send Packet_6,9 r -t 1.08145 -s 3 -d 5 -p cbr -e 210 -c 1 -i 219 -a 1 r -t 1.08185 -s 2 -d 3 -p cbr -e 210 -c 1 -i 237 -a 1 + -t 1.08185 -s 3 -d 5 -p cbr -e 210 -c 1 -i 237 -a 1 - -t 1.08185 -s 3 -d 5 -p cbr -e 210 -c 1 -i 237 -a 1 h -t 1.08185 -s 3 -d 5 -p cbr -e 210 -c 1 -i 237 -a 1 - -t 1.08225 -s 2 -d 3 -p cbr -e 210 -c 1 -i 254 -a 1 h -t 1.08225 -s 2 -d 3 -p cbr -e 210 -c 1 -i 254 -a 1 + -t 1.0825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 275 -a 1 - -t 1.0825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 275 -a 1 h -t 1.0825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 275 -a 1 r -t 1.08336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 259 -a 1 + -t 1.08336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 259 -a 1 r -t 1.08481 -s 3 -d 5 -p cbr -e 210 -c 1 -i 222 -a 1 r -t 1.08505 -s 4 -d 3 -p ack -e 40 -c 0 -i 261 -a 0 -S 0 -y {4 4} + -t 1.08505 -s 3 -d 2 -p ack -e 40 -c 0 -i 261 -a 0 -S 0 -y {4 4} - -t 1.08505 -s 3 -d 2 -p ack -e 40 -c 0 -i 261 -a 0 -S 0 -y {4 4} h -t 1.08505 -s 3 -d 2 -p ack -e 40 -c 0 -i 261 -a 0 -S 0 -y {-1 -1} r -t 1.08521 -s 2 -d 3 -p cbr -e 210 -c 1 -i 238 -a 1 + -t 1.08521 -s 3 -d 5 -p cbr -e 210 -c 1 -i 238 -a 1 - -t 1.08521 -s 3 -d 5 -p cbr -e 210 -c 1 -i 238 -a 1 h -t 1.08521 -s 3 -d 5 -p cbr -e 210 -c 1 -i 238 -a 1 - -t 1.08561 -s 2 -d 3 -p cbr -e 210 -c 1 -i 255 -a 1 h -t 1.08561 -s 2 -d 3 -p cbr -e 210 -c 1 -i 255 -a 1 + -t 1.08625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 276 -a 1 - -t 1.08625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 276 -a 1 h -t 1.08625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 276 -a 1 r -t 1.08711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 260 -a 1 + -t 1.08711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 260 -a 1 r -t 1.08817 -s 3 -d 5 -p cbr -e 210 -c 1 -i 223 -a 1 r -t 1.08857 -s 2 -d 3 -p cbr -e 210 -c 1 -i 239 -a 1 + -t 1.08857 -s 3 -d 5 -p cbr -e 210 -c 1 -i 239 -a 1 - -t 1.08857 -s 3 -d 5 -p cbr -e 210 -c 1 -i 239 -a 1 h -t 1.08857 -s 3 -d 5 -p cbr -e 210 -c 1 -i 239 -a 1 - -t 1.08897 -s 2 -d 3 -p cbr -e 210 -c 1 -i 256 -a 1 h -t 1.08897 -s 2 -d 3 -p cbr -e 210 -c 1 -i 256 -a 1 + -t 1.09 -s 1 -d 2 -p cbr -e 210 -c 1 -i 277 -a 1 - -t 1.09 -s 1 -d 2 -p cbr -e 210 -c 1 -i 277 -a 1 h -t 1.09 -s 1 -d 2 -p cbr -e 210 -c 1 -i 277 -a 1 r -t 1.09086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 262 -a 1 + -t 1.09086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 262 -a 1 r -t 1.09153 -s 3 -d 5 -p cbr -e 210 -c 1 -i 224 -a 1 r -t 1.09193 -s 2 -d 3 -p cbr -e 210 -c 1 -i 240 -a 1 + -t 1.09193 -s 3 -d 5 -p cbr -e 210 -c 1 -i 240 -a 1 - -t 1.09193 -s 3 -d 5 -p cbr -e 210 -c 1 -i 240 -a 1 h -t 1.09193 -s 3 -d 5 -p cbr -e 210 -c 1 -i 240 -a 1 - -t 1.09233 -s 2 -d 3 -p cbr -e 210 -c 1 -i 257 -a 1 h -t 1.09233 -s 2 -d 3 -p cbr -e 210 -c 1 -i 257 -a 1 + -t 1.09375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 278 -a 1 - -t 1.09375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 278 -a 1 h -t 1.09375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 278 -a 1 r -t 1.09461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 263 -a 1 + -t 1.09461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 263 -a 1 r -t 1.09489 -s 3 -d 5 -p cbr -e 210 -c 1 -i 225 -a 1 r -t 1.09529 -s 2 -d 3 -p cbr -e 210 -c 1 -i 241 -a 1 + -t 1.09529 -s 3 -d 5 -p cbr -e 210 -c 1 -i 241 -a 1 - -t 1.09529 -s 3 -d 5 -p cbr -e 210 -c 1 -i 241 -a 1 h -t 1.09529 -s 3 -d 5 -p cbr -e 210 -c 1 -i 241 -a 1 - -t 1.09569 -s 2 -d 3 -p cbr -e 210 -c 1 -i 258 -a 1 h -t 1.09569 -s 2 -d 3 -p cbr -e 210 -c 1 -i 258 -a 1 + -t 1.0975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 279 -a 1 - -t 1.0975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 279 -a 1 h -t 1.0975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 279 -a 1 r -t 1.09825 -s 3 -d 5 -p cbr -e 210 -c 1 -i 226 -a 1 r -t 1.09836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 264 -a 1 + -t 1.09836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 264 -a 1 r -t 1.09865 -s 2 -d 3 -p cbr -e 210 -c 1 -i 242 -a 1 + -t 1.09865 -s 3 -d 5 -p cbr -e 210 -c 1 -i 242 -a 1 - -t 1.09865 -s 3 -d 5 -p cbr -e 210 -c 1 -i 242 -a 1 h -t 1.09865 -s 3 -d 5 -p cbr -e 210 -c 1 -i 242 -a 1 - -t 1.09905 -s 2 -d 3 -p cbr -e 210 -c 1 -i 259 -a 1 h -t 1.09905 -s 2 -d 3 -p cbr -e 210 -c 1 -i 259 -a 1 + -t 1.10125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 280 -a 1 - -t 1.10125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 280 -a 1 h -t 1.10125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 280 -a 1 r -t 1.10161 -s 3 -d 5 -p cbr -e 210 -c 1 -i 227 -a 1 r -t 1.10201 -s 2 -d 3 -p cbr -e 210 -c 1 -i 243 -a 1 + -t 1.10201 -s 3 -d 5 -p cbr -e 210 -c 1 -i 243 -a 1 - -t 1.10201 -s 3 -d 5 -p cbr -e 210 -c 1 -i 243 -a 1 h -t 1.10201 -s 3 -d 5 -p cbr -e 210 -c 1 -i 243 -a 1 r -t 1.10211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 265 -a 1 + -t 1.10211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 265 -a 1 - -t 1.10241 -s 2 -d 3 -p cbr -e 210 -c 1 -i 260 -a 1 h -t 1.10241 -s 2 -d 3 -p cbr -e 210 -c 1 -i 260 -a 1 r -t 1.10497 -s 3 -d 5 -p cbr -e 210 -c 1 -i 228 -a 1 + -t 1.105 -s 1 -d 2 -p cbr -e 210 -c 1 -i 281 -a 1 - -t 1.105 -s 1 -d 2 -p cbr -e 210 -c 1 -i 281 -a 1 h -t 1.105 -s 1 -d 2 -p cbr -e 210 -c 1 -i 281 -a 1 r -t 1.10537 -s 2 -d 3 -p cbr -e 210 -c 1 -i 244 -a 1 + -t 1.10537 -s 3 -d 5 -p cbr -e 210 -c 1 -i 244 -a 1 - -t 1.10537 -s 3 -d 5 -p cbr -e 210 -c 1 -i 244 -a 1 h -t 1.10537 -s 3 -d 5 -p cbr -e 210 -c 1 -i 244 -a 1 - -t 1.10577 -s 2 -d 3 -p cbr -e 210 -c 1 -i 262 -a 1 h -t 1.10577 -s 2 -d 3 -p cbr -e 210 -c 1 -i 262 -a 1 r -t 1.10586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 266 -a 1 + -t 1.10586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 266 -a 1 r -t 1.10625 -s 3 -d 2 -p ack -e 40 -c 0 -i 252 -a 0 -S 0 -y {3 3} + -t 1.10625 -s 2 -d 0 -p ack -e 40 -c 0 -i 252 -a 0 -S 0 -y {3 3} - -t 1.10625 -s 2 -d 0 -p ack -e 40 -c 0 -i 252 -a 0 -S 0 -f 0 -m 1 -y {3 3} h -t 1.10625 -s 2 -d 0 -p ack -e 40 -c 0 -i 252 -a 0 -S 0 -y {-1 -1} r -t 1.10833 -s 3 -d 5 -p cbr -e 210 -c 1 -i 229 -a 1 r -t 1.10873 -s 2 -d 3 -p cbr -e 210 -c 1 -i 245 -a 1 + -t 1.10873 -s 3 -d 5 -p cbr -e 210 -c 1 -i 245 -a 1 - -t 1.10873 -s 3 -d 5 -p cbr -e 210 -c 1 -i 245 -a 1 h -t 1.10873 -s 3 -d 5 -p cbr -e 210 -c 1 -i 245 -a 1 + -t 1.10875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 282 -a 1 - -t 1.10875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 282 -a 1 h -t 1.10875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 282 -a 1 - -t 1.10913 -s 2 -d 3 -p cbr -e 210 -c 1 -i 263 -a 1 h -t 1.10913 -s 2 -d 3 -p cbr -e 210 -c 1 -i 263 -a 1 r -t 1.10961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 267 -a 1 + -t 1.10961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 267 -a 1 r -t 1.11169 -s 3 -d 5 -p cbr -e 210 -c 1 -i 230 -a 1 r -t 1.11209 -s 2 -d 3 -p cbr -e 210 -c 1 -i 246 -a 1 + -t 1.11209 -s 3 -d 5 -p cbr -e 210 -c 1 -i 246 -a 1 - -t 1.11209 -s 3 -d 5 -p cbr -e 210 -c 1 -i 246 -a 1 h -t 1.11209 -s 3 -d 5 -p cbr -e 210 -c 1 -i 246 -a 1 - -t 1.11249 -s 2 -d 3 -p cbr -e 210 -c 1 -i 264 -a 1 h -t 1.11249 -s 2 -d 3 -p cbr -e 210 -c 1 -i 264 -a 1 + -t 1.1125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 283 -a 1 - -t 1.1125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 283 -a 1 h -t 1.1125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 283 -a 1 r -t 1.11336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 268 -a 1 + -t 1.11336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 268 -a 1 r -t 1.11449 -s 4 -d 3 -p ack -e 40 -c 0 -i 270 -a 0 -S 0 -y {5 5} + -t 1.11449 -s 3 -d 2 -p ack -e 40 -c 0 -i 270 -a 0 -S 0 -y {5 5} - -t 1.11449 -s 3 -d 2 -p ack -e 40 -c 0 -i 270 -a 0 -S 0 -y {5 5} h -t 1.11449 -s 3 -d 2 -p ack -e 40 -c 0 -i 270 -a 0 -S 0 -y {-1 -1} r -t 1.11505 -s 3 -d 5 -p cbr -e 210 -c 1 -i 231 -a 1 r -t 1.11545 -s 2 -d 3 -p cbr -e 210 -c 1 -i 247 -a 1 + -t 1.11545 -s 3 -d 5 -p cbr -e 210 -c 1 -i 247 -a 1 - -t 1.11545 -s 3 -d 5 -p cbr -e 210 -c 1 -i 247 -a 1 h -t 1.11545 -s 3 -d 5 -p cbr -e 210 -c 1 -i 247 -a 1 - -t 1.11585 -s 2 -d 3 -p cbr -e 210 -c 1 -i 265 -a 1 h -t 1.11585 -s 2 -d 3 -p cbr -e 210 -c 1 -i 265 -a 1 + -t 1.11625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 284 -a 1 - -t 1.11625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 284 -a 1 h -t 1.11625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 284 -a 1 r -t 1.11711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 269 -a 1 + -t 1.11711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 269 -a 1 r -t 1.11841 -s 3 -d 5 -p cbr -e 210 -c 1 -i 232 -a 1 r -t 1.11881 -s 2 -d 3 -p cbr -e 210 -c 1 -i 248 -a 1 + -t 1.11881 -s 3 -d 5 -p cbr -e 210 -c 1 -i 248 -a 1 - -t 1.11881 -s 3 -d 5 -p cbr -e 210 -c 1 -i 248 -a 1 h -t 1.11881 -s 3 -d 5 -p cbr -e 210 -c 1 -i 248 -a 1 - -t 1.11921 -s 2 -d 3 -p cbr -e 210 -c 1 -i 266 -a 1 h -t 1.11921 -s 2 -d 3 -p cbr -e 210 -c 1 -i 266 -a 1 + -t 1.12 -s 1 -d 2 -p cbr -e 210 -c 1 -i 285 -a 1 - -t 1.12 -s 1 -d 2 -p cbr -e 210 -c 1 -i 285 -a 1 h -t 1.12 -s 1 -d 2 -p cbr -e 210 -c 1 -i 285 -a 1 r -t 1.12086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 271 -a 1 + -t 1.12086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 271 -a 1 r -t 1.12177 -s 3 -d 5 -p cbr -e 210 -c 1 -i 233 -a 1 r -t 1.12217 -s 2 -d 3 -p cbr -e 210 -c 1 -i 249 -a 1 + -t 1.12217 -s 3 -d 5 -p cbr -e 210 -c 1 -i 249 -a 1 - -t 1.12217 -s 3 -d 5 -p cbr -e 210 -c 1 -i 249 -a 1 h -t 1.12217 -s 3 -d 5 -p cbr -e 210 -c 1 -i 249 -a 1 - -t 1.12257 -s 2 -d 3 -p cbr -e 210 -c 1 -i 267 -a 1 h -t 1.12257 -s 2 -d 3 -p cbr -e 210 -c 1 -i 267 -a 1 + -t 1.12375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 286 -a 1 - -t 1.12375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 286 -a 1 h -t 1.12375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 286 -a 1 r -t 1.12461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 272 -a 1 + -t 1.12461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 272 -a 1 r -t 1.12513 -s 3 -d 5 -p cbr -e 210 -c 1 -i 234 -a 1 r -t 1.12553 -s 2 -d 3 -p cbr -e 210 -c 1 -i 250 -a 1 + -t 1.12553 -s 3 -d 5 -p cbr -e 210 -c 1 -i 250 -a 1 - -t 1.12553 -s 3 -d 5 -p cbr -e 210 -c 1 -i 250 -a 1 h -t 1.12553 -s 3 -d 5 -p cbr -e 210 -c 1 -i 250 -a 1 - -t 1.12593 -s 2 -d 3 -p cbr -e 210 -c 1 -i 268 -a 1 h -t 1.12593 -s 2 -d 3 -p cbr -e 210 -c 1 -i 268 -a 1 + -t 1.1275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 287 -a 1 - -t 1.1275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 287 -a 1 h -t 1.1275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 287 -a 1 r -t 1.12836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 273 -a 1 + -t 1.12836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 273 -a 1 r -t 1.12849 -s 3 -d 5 -p cbr -e 210 -c 1 -i 235 -a 1 r -t 1.12889 -s 2 -d 3 -p cbr -e 210 -c 1 -i 251 -a 1 + -t 1.12889 -s 3 -d 5 -p cbr -e 210 -c 1 -i 251 -a 1 - -t 1.12889 -s 3 -d 5 -p cbr -e 210 -c 1 -i 251 -a 1 h -t 1.12889 -s 3 -d 5 -p cbr -e 210 -c 1 -i 251 -a 1 - -t 1.12929 -s 2 -d 3 -p cbr -e 210 -c 1 -i 269 -a 1 h -t 1.12929 -s 2 -d 3 -p cbr -e 210 -c 1 -i 269 -a 1 + -t 1.13125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 288 -a 1 - -t 1.13125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 288 -a 1 h -t 1.13125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 288 -a 1 r -t 1.13185 -s 3 -d 5 -p cbr -e 210 -c 1 -i 236 -a 1 r -t 1.13211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 274 -a 1 + -t 1.13211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 274 -a 1 r -t 1.13225 -s 2 -d 3 -p cbr -e 210 -c 1 -i 253 -a 1 + -t 1.13225 -s 3 -d 5 -p cbr -e 210 -c 1 -i 253 -a 1 - -t 1.13225 -s 3 -d 5 -p cbr -e 210 -c 1 -i 253 -a 1 h -t 1.13225 -s 3 -d 5 -p cbr -e 210 -c 1 -i 253 -a 1 - -t 1.13265 -s 2 -d 3 -p cbr -e 210 -c 1 -i 271 -a 1 h -t 1.13265 -s 2 -d 3 -p cbr -e 210 -c 1 -i 271 -a 1 + -t 1.135 -s 1 -d 2 -p cbr -e 210 -c 1 -i 289 -a 1 - -t 1.135 -s 1 -d 2 -p cbr -e 210 -c 1 -i 289 -a 1 h -t 1.135 -s 1 -d 2 -p cbr -e 210 -c 1 -i 289 -a 1 r -t 1.13521 -s 3 -d 5 -p cbr -e 210 -c 1 -i 237 -a 1 r -t 1.13561 -s 2 -d 3 -p cbr -e 210 -c 1 -i 254 -a 1 + -t 1.13561 -s 3 -d 5 -p cbr -e 210 -c 1 -i 254 -a 1 - -t 1.13561 -s 3 -d 5 -p cbr -e 210 -c 1 -i 254 -a 1 h -t 1.13561 -s 3 -d 5 -p cbr -e 210 -c 1 -i 254 -a 1 r -t 1.13569 -s 3 -d 2 -p ack -e 40 -c 0 -i 261 -a 0 -S 0 -y {4 4} + -t 1.13569 -s 2 -d 0 -p ack -e 40 -c 0 -i 261 -a 0 -S 0 -y {4 4} - -t 1.13569 -s 2 -d 0 -p ack -e 40 -c 0 -i 261 -a 0 -S 0 -f 0 -m 1 -y {4 4} h -t 1.13569 -s 2 -d 0 -p ack -e 40 -c 0 -i 261 -a 0 -S 0 -y {-1 -1} r -t 1.13586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 275 -a 1 + -t 1.13586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 275 -a 1 - -t 1.13601 -s 2 -d 3 -p cbr -e 210 -c 1 -i 272 -a 1 h -t 1.13601 -s 2 -d 3 -p cbr -e 210 -c 1 -i 272 -a 1 r -t 1.13857 -s 3 -d 5 -p cbr -e 210 -c 1 -i 238 -a 1 + -t 1.13875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 290 -a 1 - -t 1.13875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 290 -a 1 h -t 1.13875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 290 -a 1 r -t 1.13897 -s 2 -d 3 -p cbr -e 210 -c 1 -i 255 -a 1 + -t 1.13897 -s 3 -d 5 -p cbr -e 210 -c 1 -i 255 -a 1 - -t 1.13897 -s 3 -d 5 -p cbr -e 210 -c 1 -i 255 -a 1 h -t 1.13897 -s 3 -d 5 -p cbr -e 210 -c 1 -i 255 -a 1 - -t 1.13937 -s 2 -d 3 -p cbr -e 210 -c 1 -i 273 -a 1 h -t 1.13937 -s 2 -d 3 -p cbr -e 210 -c 1 -i 273 -a 1 r -t 1.13961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 276 -a 1 + -t 1.13961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 276 -a 1 r -t 1.14193 -s 3 -d 5 -p cbr -e 210 -c 1 -i 239 -a 1 r -t 1.14233 -s 2 -d 3 -p cbr -e 210 -c 1 -i 256 -a 1 + -t 1.14233 -s 3 -d 5 -p cbr -e 210 -c 1 -i 256 -a 1 - -t 1.14233 -s 3 -d 5 -p cbr -e 210 -c 1 -i 256 -a 1 h -t 1.14233 -s 3 -d 5 -p cbr -e 210 -c 1 -i 256 -a 1 + -t 1.1425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 291 -a 1 - -t 1.1425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 291 -a 1 h -t 1.1425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 291 -a 1 - -t 1.14273 -s 2 -d 3 -p cbr -e 210 -c 1 -i 274 -a 1 h -t 1.14273 -s 2 -d 3 -p cbr -e 210 -c 1 -i 274 -a 1 r -t 1.14336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 277 -a 1 + -t 1.14336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 277 -a 1 r -t 1.14529 -s 3 -d 5 -p cbr -e 210 -c 1 -i 240 -a 1 r -t 1.14569 -s 2 -d 3 -p cbr -e 210 -c 1 -i 257 -a 1 + -t 1.14569 -s 3 -d 5 -p cbr -e 210 -c 1 -i 257 -a 1 - -t 1.14569 -s 3 -d 5 -p cbr -e 210 -c 1 -i 257 -a 1 h -t 1.14569 -s 3 -d 5 -p cbr -e 210 -c 1 -i 257 -a 1 - -t 1.14609 -s 2 -d 3 -p cbr -e 210 -c 1 -i 275 -a 1 h -t 1.14609 -s 2 -d 3 -p cbr -e 210 -c 1 -i 275 -a 1 + -t 1.14625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 292 -a 1 - -t 1.14625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 292 -a 1 h -t 1.14625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 292 -a 1 r -t 1.14711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 278 -a 1 + -t 1.14711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 278 -a 1 r -t 1.14865 -s 3 -d 5 -p cbr -e 210 -c 1 -i 241 -a 1 r -t 1.14905 -s 2 -d 3 -p cbr -e 210 -c 1 -i 258 -a 1 + -t 1.14905 -s 3 -d 5 -p cbr -e 210 -c 1 -i 258 -a 1 - -t 1.14905 -s 3 -d 5 -p cbr -e 210 -c 1 -i 258 -a 1 h -t 1.14905 -s 3 -d 5 -p cbr -e 210 -c 1 -i 258 -a 1 - -t 1.14945 -s 2 -d 3 -p cbr -e 210 -c 1 -i 276 -a 1 h -t 1.14945 -s 2 -d 3 -p cbr -e 210 -c 1 -i 276 -a 1 + -t 1.15 -s 1 -d 2 -p cbr -e 210 -c 1 -i 293 -a 1 - -t 1.15 -s 1 -d 2 -p cbr -e 210 -c 1 -i 293 -a 1 h -t 1.15 -s 1 -d 2 -p cbr -e 210 -c 1 -i 293 -a 1 r -t 1.15086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 279 -a 1 + -t 1.15086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 279 -a 1 r -t 1.15201 -s 3 -d 5 -p cbr -e 210 -c 1 -i 242 -a 1 r -t 1.15241 -s 2 -d 3 -p cbr -e 210 -c 1 -i 259 -a 1 + -t 1.15241 -s 3 -d 5 -p cbr -e 210 -c 1 -i 259 -a 1 - -t 1.15241 -s 3 -d 5 -p cbr -e 210 -c 1 -i 259 -a 1 h -t 1.15241 -s 3 -d 5 -p cbr -e 210 -c 1 -i 259 -a 1 - -t 1.15281 -s 2 -d 3 -p cbr -e 210 -c 1 -i 277 -a 1 h -t 1.15281 -s 2 -d 3 -p cbr -e 210 -c 1 -i 277 -a 1 + -t 1.15375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 294 -a 1 - -t 1.15375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 294 -a 1 h -t 1.15375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 294 -a 1 r -t 1.15461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 280 -a 1 + -t 1.15461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 280 -a 1 r -t 1.15537 -s 3 -d 5 -p cbr -e 210 -c 1 -i 243 -a 1 r -t 1.15577 -s 2 -d 3 -p cbr -e 210 -c 1 -i 260 -a 1 + -t 1.15577 -s 3 -d 5 -p cbr -e 210 -c 1 -i 260 -a 1 - -t 1.15577 -s 3 -d 5 -p cbr -e 210 -c 1 -i 260 -a 1 h -t 1.15577 -s 3 -d 5 -p cbr -e 210 -c 1 -i 260 -a 1 - -t 1.15617 -s 2 -d 3 -p cbr -e 210 -c 1 -i 278 -a 1 h -t 1.15617 -s 2 -d 3 -p cbr -e 210 -c 1 -i 278 -a 1 r -t 1.15689 -s 2 -d 0 -p ack -e 40 -c 0 -i 252 -a 0 -S 0 -y {3 3} f -t 1.15689000000000131 -s 0 -d 4 -n cwnd_ -a tcp -v 5.000000 -o 4.000000 -T v + -t 1.15689 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 295 -a 0 -S 0 -f 0 -m 0 -y {7 7} - -t 1.15689 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 295 -a 0 -S 0 -y {7 7} h -t 1.15689 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 295 -a 0 -S 0 -y {-1 -1} + -t 1.15689 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 296 -a 0 -S 0 -f 0 -m 0 -y {8 8} + -t 1.1575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 297 -a 1 - -t 1.1575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 297 -a 1 h -t 1.1575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 297 -a 1 r -t 1.15836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 281 -a 1 + -t 1.15836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 281 -a 1 r -t 1.15873 -s 3 -d 5 -p cbr -e 210 -c 1 -i 244 -a 1 r -t 1.15913 -s 2 -d 3 -p cbr -e 210 -c 1 -i 262 -a 1 + -t 1.15913 -s 3 -d 5 -p cbr -e 210 -c 1 -i 262 -a 1 - -t 1.15913 -s 3 -d 5 -p cbr -e 210 -c 1 -i 262 -a 1 h -t 1.15913 -s 3 -d 5 -p cbr -e 210 -c 1 -i 262 -a 1 - -t 1.15953 -s 2 -d 3 -p cbr -e 210 -c 1 -i 279 -a 1 h -t 1.15953 -s 2 -d 3 -p cbr -e 210 -c 1 -i 279 -a 1 + -t 1.16125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 298 -a 1 - -t 1.16125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 298 -a 1 h -t 1.16125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 298 -a 1 r -t 1.16209 -s 3 -d 5 -p cbr -e 210 -c 1 -i 245 -a 1 r -t 1.16211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 282 -a 1 + -t 1.16211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 282 -a 1 r -t 1.16249 -s 2 -d 3 -p cbr -e 210 -c 1 -i 263 -a 1 + -t 1.16249 -s 3 -d 5 -p cbr -e 210 -c 1 -i 263 -a 1 - -t 1.16249 -s 3 -d 5 -p cbr -e 210 -c 1 -i 263 -a 1 h -t 1.16249 -s 3 -d 5 -p cbr -e 210 -c 1 -i 263 -a 1 - -t 1.16289 -s 2 -d 3 -p cbr -e 210 -c 1 -i 280 -a 1 h -t 1.16289 -s 2 -d 3 -p cbr -e 210 -c 1 -i 280 -a 1 + -t 1.165 -s 1 -d 2 -p cbr -e 210 -c 1 -i 299 -a 1 - -t 1.165 -s 1 -d 2 -p cbr -e 210 -c 1 -i 299 -a 1 h -t 1.165 -s 1 -d 2 -p cbr -e 210 -c 1 -i 299 -a 1 r -t 1.16513 -s 3 -d 2 -p ack -e 40 -c 0 -i 270 -a 0 -S 0 -y {5 5} + -t 1.16513 -s 2 -d 0 -p ack -e 40 -c 0 -i 270 -a 0 -S 0 -y {5 5} - -t 1.16513 -s 2 -d 0 -p ack -e 40 -c 0 -i 270 -a 0 -S 0 -f 0 -m 1 -y {5 5} h -t 1.16513 -s 2 -d 0 -p ack -e 40 -c 0 -i 270 -a 0 -S 0 -y {-1 -1} r -t 1.16545 -s 3 -d 5 -p cbr -e 210 -c 1 -i 246 -a 1 r -t 1.16585 -s 2 -d 3 -p cbr -e 210 -c 1 -i 264 -a 1 + -t 1.16585 -s 3 -d 5 -p cbr -e 210 -c 1 -i 264 -a 1 - -t 1.16585 -s 3 -d 5 -p cbr -e 210 -c 1 -i 264 -a 1 h -t 1.16585 -s 3 -d 5 -p cbr -e 210 -c 1 -i 264 -a 1 r -t 1.16586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 283 -a 1 + -t 1.16586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 283 -a 1 - -t 1.16625 -s 2 -d 3 -p cbr -e 210 -c 1 -i 281 -a 1 h -t 1.16625 -s 2 -d 3 -p cbr -e 210 -c 1 -i 281 -a 1 + -t 1.16875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 300 -a 1 - -t 1.16875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 300 -a 1 h -t 1.16875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 300 -a 1 r -t 1.16881 -s 3 -d 5 -p cbr -e 210 -c 1 -i 247 -a 1 r -t 1.16921 -s 2 -d 3 -p cbr -e 210 -c 1 -i 265 -a 1 + -t 1.16921 -s 3 -d 5 -p cbr -e 210 -c 1 -i 265 -a 1 - -t 1.16921 -s 3 -d 5 -p cbr -e 210 -c 1 -i 265 -a 1 h -t 1.16921 -s 3 -d 5 -p cbr -e 210 -c 1 -i 265 -a 1 r -t 1.16961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 284 -a 1 + -t 1.16961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 284 -a 1 - -t 1.16961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 282 -a 1 h -t 1.16961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 282 -a 1 r -t 1.17217 -s 3 -d 5 -p cbr -e 210 -c 1 -i 248 -a 1 + -t 1.1725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 301 -a 1 - -t 1.1725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 301 -a 1 h -t 1.1725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 301 -a 1 r -t 1.17257 -s 2 -d 3 -p cbr -e 210 -c 1 -i 266 -a 1 + -t 1.17257 -s 3 -d 5 -p cbr -e 210 -c 1 -i 266 -a 1 - -t 1.17257 -s 3 -d 5 -p cbr -e 210 -c 1 -i 266 -a 1 h -t 1.17257 -s 3 -d 5 -p cbr -e 210 -c 1 -i 266 -a 1 - -t 1.17289 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 296 -a 0 -S 0 -y {8 8} h -t 1.17289 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 296 -a 0 -S 0 -y {-1 -1} - -t 1.17297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 283 -a 1 h -t 1.17297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 283 -a 1 r -t 1.17336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 285 -a 1 + -t 1.17336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 285 -a 1 r -t 1.17553 -s 3 -d 5 -p cbr -e 210 -c 1 -i 249 -a 1 r -t 1.17593 -s 2 -d 3 -p cbr -e 210 -c 1 -i 267 -a 1 + -t 1.17593 -s 3 -d 5 -p cbr -e 210 -c 1 -i 267 -a 1 - -t 1.17593 -s 3 -d 5 -p cbr -e 210 -c 1 -i 267 -a 1 h -t 1.17593 -s 3 -d 5 -p cbr -e 210 -c 1 -i 267 -a 1 + -t 1.17625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 302 -a 1 - -t 1.17625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 302 -a 1 h -t 1.17625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 302 -a 1 - -t 1.17633 -s 2 -d 3 -p cbr -e 210 -c 1 -i 284 -a 1 h -t 1.17633 -s 2 -d 3 -p cbr -e 210 -c 1 -i 284 -a 1 r -t 1.17711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 286 -a 1 + -t 1.17711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 286 -a 1 r -t 1.17889 -s 3 -d 5 -p cbr -e 210 -c 1 -i 250 -a 1 r -t 1.17929 -s 2 -d 3 -p cbr -e 210 -c 1 -i 268 -a 1 + -t 1.17929 -s 3 -d 5 -p cbr -e 210 -c 1 -i 268 -a 1 - -t 1.17929 -s 3 -d 5 -p cbr -e 210 -c 1 -i 268 -a 1 h -t 1.17929 -s 3 -d 5 -p cbr -e 210 -c 1 -i 268 -a 1 - -t 1.17969 -s 2 -d 3 -p cbr -e 210 -c 1 -i 285 -a 1 h -t 1.17969 -s 2 -d 3 -p cbr -e 210 -c 1 -i 285 -a 1 + -t 1.18 -s 1 -d 2 -p cbr -e 210 -c 1 -i 303 -a 1 - -t 1.18 -s 1 -d 2 -p cbr -e 210 -c 1 -i 303 -a 1 h -t 1.18 -s 1 -d 2 -p cbr -e 210 -c 1 -i 303 -a 1 r -t 1.18086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 287 -a 1 + -t 1.18086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 287 -a 1 r -t 1.18225 -s 3 -d 5 -p cbr -e 210 -c 1 -i 251 -a 1 r -t 1.18265 -s 2 -d 3 -p cbr -e 210 -c 1 -i 269 -a 1 + -t 1.18265 -s 3 -d 5 -p cbr -e 210 -c 1 -i 269 -a 1 - -t 1.18265 -s 3 -d 5 -p cbr -e 210 -c 1 -i 269 -a 1 h -t 1.18265 -s 3 -d 5 -p cbr -e 210 -c 1 -i 269 -a 1 - -t 1.18305 -s 2 -d 3 -p cbr -e 210 -c 1 -i 286 -a 1 h -t 1.18305 -s 2 -d 3 -p cbr -e 210 -c 1 -i 286 -a 1 + -t 1.18375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 304 -a 1 - -t 1.18375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 304 -a 1 h -t 1.18375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 304 -a 1 r -t 1.18461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 288 -a 1 + -t 1.18461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 288 -a 1 r -t 1.18561 -s 3 -d 5 -p cbr -e 210 -c 1 -i 253 -a 1 r -t 1.18601 -s 2 -d 3 -p cbr -e 210 -c 1 -i 271 -a 1 + -t 1.18601 -s 3 -d 5 -p cbr -e 210 -c 1 -i 271 -a 1 - -t 1.18601 -s 3 -d 5 -p cbr -e 210 -c 1 -i 271 -a 1 h -t 1.18601 -s 3 -d 5 -p cbr -e 210 -c 1 -i 271 -a 1 r -t 1.18633 -s 2 -d 0 -p ack -e 40 -c 0 -i 261 -a 0 -S 0 -y {4 4} f -t 1.18633000000000144 -s 0 -d 4 -n cwnd_ -a tcp -v 6.000000 -o 5.000000 -T v + -t 1.18633 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 305 -a 0 -S 0 -f 0 -m 0 -y {9 9} + -t 1.18633 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 306 -a 0 -S 0 -f 0 -m 0 -y {10 10} - -t 1.18641 -s 2 -d 3 -p cbr -e 210 -c 1 -i 287 -a 1 h -t 1.18641 -s 2 -d 3 -p cbr -e 210 -c 1 -i 287 -a 1 + -t 1.1875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 307 -a 1 - -t 1.1875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 307 -a 1 h -t 1.1875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 307 -a 1 r -t 1.18836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 289 -a 1 + -t 1.18836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 289 -a 1 - -t 1.18889 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 305 -a 0 -S 0 -y {9 9} h -t 1.18889 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 305 -a 0 -S 0 -y {-1 -1} r -t 1.18897 -s 3 -d 5 -p cbr -e 210 -c 1 -i 254 -a 1 r -t 1.18937 -s 2 -d 3 -p cbr -e 210 -c 1 -i 272 -a 1 + -t 1.18937 -s 3 -d 5 -p cbr -e 210 -c 1 -i 272 -a 1 - -t 1.18937 -s 3 -d 5 -p cbr -e 210 -c 1 -i 272 -a 1 h -t 1.18937 -s 3 -d 5 -p cbr -e 210 -c 1 -i 272 -a 1 - -t 1.18977 -s 2 -d 3 -p cbr -e 210 -c 1 -i 288 -a 1 h -t 1.18977 -s 2 -d 3 -p cbr -e 210 -c 1 -i 288 -a 1 + -t 1.19125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 308 -a 1 - -t 1.19125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 308 -a 1 h -t 1.19125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 308 -a 1 r -t 1.19211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 290 -a 1 + -t 1.19211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 290 -a 1 r -t 1.19233 -s 3 -d 5 -p cbr -e 210 -c 1 -i 255 -a 1 r -t 1.19273 -s 2 -d 3 -p cbr -e 210 -c 1 -i 273 -a 1 + -t 1.19273 -s 3 -d 5 -p cbr -e 210 -c 1 -i 273 -a 1 - -t 1.19273 -s 3 -d 5 -p cbr -e 210 -c 1 -i 273 -a 1 h -t 1.19273 -s 3 -d 5 -p cbr -e 210 -c 1 -i 273 -a 1 - -t 1.19313 -s 2 -d 3 -p cbr -e 210 -c 1 -i 289 -a 1 h -t 1.19313 -s 2 -d 3 -p cbr -e 210 -c 1 -i 289 -a 1 + -t 1.195 -s 1 -d 2 -p cbr -e 210 -c 1 -i 309 -a 1 - -t 1.195 -s 1 -d 2 -p cbr -e 210 -c 1 -i 309 -a 1 h -t 1.195 -s 1 -d 2 -p cbr -e 210 -c 1 -i 309 -a 1 r -t 1.19569 -s 3 -d 5 -p cbr -e 210 -c 1 -i 256 -a 1 r -t 1.19586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 291 -a 1 + -t 1.19586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 291 -a 1 r -t 1.19609 -s 2 -d 3 -p cbr -e 210 -c 1 -i 274 -a 1 + -t 1.19609 -s 3 -d 5 -p cbr -e 210 -c 1 -i 274 -a 1 - -t 1.19609 -s 3 -d 5 -p cbr -e 210 -c 1 -i 274 -a 1 h -t 1.19609 -s 3 -d 5 -p cbr -e 210 -c 1 -i 274 -a 1 - -t 1.19649 -s 2 -d 3 -p cbr -e 210 -c 1 -i 290 -a 1 h -t 1.19649 -s 2 -d 3 -p cbr -e 210 -c 1 -i 290 -a 1 + -t 1.19875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 310 -a 1 - -t 1.19875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 310 -a 1 h -t 1.19875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 310 -a 1 r -t 1.19905 -s 3 -d 5 -p cbr -e 210 -c 1 -i 257 -a 1 r -t 1.19945 -s 2 -d 3 -p cbr -e 210 -c 1 -i 275 -a 1 + -t 1.19945 -s 3 -d 5 -p cbr -e 210 -c 1 -i 275 -a 1 - -t 1.19945 -s 3 -d 5 -p cbr -e 210 -c 1 -i 275 -a 1 h -t 1.19945 -s 3 -d 5 -p cbr -e 210 -c 1 -i 275 -a 1 r -t 1.19961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 292 -a 1 + -t 1.19961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 292 -a 1 - -t 1.19985 -s 2 -d 3 -p cbr -e 210 -c 1 -i 291 -a 1 h -t 1.19985 -s 2 -d 3 -p cbr -e 210 -c 1 -i 291 -a 1 v -t 1.2 sim_annotation 1.2 18 Ack_8,10 : 2 acks are coming r -t 1.20241 -s 3 -d 5 -p cbr -e 210 -c 1 -i 258 -a 1 + -t 1.2025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 311 -a 1 - -t 1.2025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 311 -a 1 h -t 1.2025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 311 -a 1 r -t 1.20281 -s 2 -d 3 -p cbr -e 210 -c 1 -i 276 -a 1 + -t 1.20281 -s 3 -d 5 -p cbr -e 210 -c 1 -i 276 -a 1 - -t 1.20281 -s 3 -d 5 -p cbr -e 210 -c 1 -i 276 -a 1 h -t 1.20281 -s 3 -d 5 -p cbr -e 210 -c 1 -i 276 -a 1 - -t 1.20321 -s 2 -d 3 -p cbr -e 210 -c 1 -i 292 -a 1 h -t 1.20321 -s 2 -d 3 -p cbr -e 210 -c 1 -i 292 -a 1 r -t 1.20336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 293 -a 1 + -t 1.20336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 293 -a 1 - -t 1.20489 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 306 -a 0 -S 0 -y {10 10} h -t 1.20489 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 306 -a 0 -S 0 -y {-1 -1} r -t 1.20577 -s 3 -d 5 -p cbr -e 210 -c 1 -i 259 -a 1 r -t 1.20617 -s 2 -d 3 -p cbr -e 210 -c 1 -i 277 -a 1 + -t 1.20617 -s 3 -d 5 -p cbr -e 210 -c 1 -i 277 -a 1 - -t 1.20617 -s 3 -d 5 -p cbr -e 210 -c 1 -i 277 -a 1 h -t 1.20617 -s 3 -d 5 -p cbr -e 210 -c 1 -i 277 -a 1 + -t 1.20625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 312 -a 1 - -t 1.20625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 312 -a 1 h -t 1.20625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 312 -a 1 - -t 1.20657 -s 2 -d 3 -p cbr -e 210 -c 1 -i 293 -a 1 h -t 1.20657 -s 2 -d 3 -p cbr -e 210 -c 1 -i 293 -a 1 r -t 1.20711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 294 -a 1 + -t 1.20711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 294 -a 1 r -t 1.20913 -s 3 -d 5 -p cbr -e 210 -c 1 -i 260 -a 1 r -t 1.20953 -s 2 -d 3 -p cbr -e 210 -c 1 -i 278 -a 1 + -t 1.20953 -s 3 -d 5 -p cbr -e 210 -c 1 -i 278 -a 1 - -t 1.20953 -s 3 -d 5 -p cbr -e 210 -c 1 -i 278 -a 1 h -t 1.20953 -s 3 -d 5 -p cbr -e 210 -c 1 -i 278 -a 1 - -t 1.20993 -s 2 -d 3 -p cbr -e 210 -c 1 -i 294 -a 1 h -t 1.20993 -s 2 -d 3 -p cbr -e 210 -c 1 -i 294 -a 1 + -t 1.21 -s 1 -d 2 -p cbr -e 210 -c 1 -i 313 -a 1 - -t 1.21 -s 1 -d 2 -p cbr -e 210 -c 1 -i 313 -a 1 h -t 1.21 -s 1 -d 2 -p cbr -e 210 -c 1 -i 313 -a 1 r -t 1.21086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 297 -a 1 + -t 1.21086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 297 -a 1 r -t 1.21249 -s 3 -d 5 -p cbr -e 210 -c 1 -i 262 -a 1 r -t 1.21289 -s 2 -d 3 -p cbr -e 210 -c 1 -i 279 -a 1 + -t 1.21289 -s 3 -d 5 -p cbr -e 210 -c 1 -i 279 -a 1 - -t 1.21289 -s 3 -d 5 -p cbr -e 210 -c 1 -i 279 -a 1 h -t 1.21289 -s 3 -d 5 -p cbr -e 210 -c 1 -i 279 -a 1 - -t 1.21329 -s 2 -d 3 -p cbr -e 210 -c 1 -i 297 -a 1 h -t 1.21329 -s 2 -d 3 -p cbr -e 210 -c 1 -i 297 -a 1 + -t 1.21375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 314 -a 1 - -t 1.21375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 314 -a 1 h -t 1.21375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 314 -a 1 r -t 1.21461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 298 -a 1 + -t 1.21461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 298 -a 1 r -t 1.21577 -s 2 -d 0 -p ack -e 40 -c 0 -i 270 -a 0 -S 0 -y {5 5} f -t 1.21577000000000157 -s 0 -d 4 -n cwnd_ -a tcp -v 7.000000 -o 6.000000 -T v + -t 1.21577 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 315 -a 0 -S 0 -f 0 -m 0 -y {11 11} + -t 1.21577 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 316 -a 0 -S 0 -f 0 -m 0 -y {12 12} r -t 1.21585 -s 3 -d 5 -p cbr -e 210 -c 1 -i 263 -a 1 r -t 1.21625 -s 2 -d 3 -p cbr -e 210 -c 1 -i 280 -a 1 + -t 1.21625 -s 3 -d 5 -p cbr -e 210 -c 1 -i 280 -a 1 - -t 1.21625 -s 3 -d 5 -p cbr -e 210 -c 1 -i 280 -a 1 h -t 1.21625 -s 3 -d 5 -p cbr -e 210 -c 1 -i 280 -a 1 - -t 1.21665 -s 2 -d 3 -p cbr -e 210 -c 1 -i 298 -a 1 h -t 1.21665 -s 2 -d 3 -p cbr -e 210 -c 1 -i 298 -a 1 + -t 1.2175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 317 -a 1 - -t 1.2175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 317 -a 1 h -t 1.2175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 317 -a 1 r -t 1.21836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 299 -a 1 + -t 1.21836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 299 -a 1 r -t 1.21921 -s 3 -d 5 -p cbr -e 210 -c 1 -i 264 -a 1 r -t 1.21961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 281 -a 1 + -t 1.21961 -s 3 -d 5 -p cbr -e 210 -c 1 -i 281 -a 1 - -t 1.21961 -s 3 -d 5 -p cbr -e 210 -c 1 -i 281 -a 1 h -t 1.21961 -s 3 -d 5 -p cbr -e 210 -c 1 -i 281 -a 1 - -t 1.22001 -s 2 -d 3 -p cbr -e 210 -c 1 -i 299 -a 1 h -t 1.22001 -s 2 -d 3 -p cbr -e 210 -c 1 -i 299 -a 1 - -t 1.22089 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 315 -a 0 -S 0 -y {11 11} h -t 1.22089 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 315 -a 0 -S 0 -y {-1 -1} + -t 1.22125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 318 -a 1 - -t 1.22125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 318 -a 1 h -t 1.22125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 318 -a 1 r -t 1.22211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 300 -a 1 + -t 1.22211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 300 -a 1 r -t 1.22257 -s 3 -d 5 -p cbr -e 210 -c 1 -i 265 -a 1 r -t 1.22289 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 295 -a 0 -S 0 -y {7 7} + -t 1.22289 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 295 -a 0 -S 0 -y {7 7} r -t 1.22297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 282 -a 1 + -t 1.22297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 282 -a 1 - -t 1.22297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 282 -a 1 h -t 1.22297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 282 -a 1 - -t 1.22337 -s 2 -d 3 -p cbr -e 210 -c 1 -i 300 -a 1 h -t 1.22337 -s 2 -d 3 -p cbr -e 210 -c 1 -i 300 -a 1 + -t 1.225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 319 -a 1 - -t 1.225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 319 -a 1 h -t 1.225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 319 -a 1 r -t 1.22586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 301 -a 1 + -t 1.22586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 301 -a 1 r -t 1.22593 -s 3 -d 5 -p cbr -e 210 -c 1 -i 266 -a 1 r -t 1.22633 -s 2 -d 3 -p cbr -e 210 -c 1 -i 283 -a 1 + -t 1.22633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 283 -a 1 - -t 1.22633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 283 -a 1 h -t 1.22633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 283 -a 1 - -t 1.22673 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 295 -a 0 -S 0 -y {7 7} h -t 1.22673 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 295 -a 0 -S 0 -y {-1 -1} + -t 1.22875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 320 -a 1 - -t 1.22875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 320 -a 1 h -t 1.22875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 320 -a 1 r -t 1.22929 -s 3 -d 5 -p cbr -e 210 -c 1 -i 267 -a 1 r -t 1.22961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 302 -a 1 + -t 1.22961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 302 -a 1 r -t 1.22969 -s 2 -d 3 -p cbr -e 210 -c 1 -i 284 -a 1 + -t 1.22969 -s 3 -d 5 -p cbr -e 210 -c 1 -i 284 -a 1 - -t 1.22969 -s 3 -d 5 -p cbr -e 210 -c 1 -i 284 -a 1 h -t 1.22969 -s 3 -d 5 -p cbr -e 210 -c 1 -i 284 -a 1 + -t 1.2325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 321 -a 1 - -t 1.2325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 321 -a 1 h -t 1.2325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 321 -a 1 r -t 1.23265 -s 3 -d 5 -p cbr -e 210 -c 1 -i 268 -a 1 r -t 1.23305 -s 2 -d 3 -p cbr -e 210 -c 1 -i 285 -a 1 + -t 1.23305 -s 3 -d 5 -p cbr -e 210 -c 1 -i 285 -a 1 - -t 1.23305 -s 3 -d 5 -p cbr -e 210 -c 1 -i 285 -a 1 h -t 1.23305 -s 3 -d 5 -p cbr -e 210 -c 1 -i 285 -a 1 r -t 1.23336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 303 -a 1 + -t 1.23336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 303 -a 1 r -t 1.23601 -s 3 -d 5 -p cbr -e 210 -c 1 -i 269 -a 1 + -t 1.23625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 322 -a 1 - -t 1.23625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 322 -a 1 h -t 1.23625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 322 -a 1 r -t 1.23641 -s 2 -d 3 -p cbr -e 210 -c 1 -i 286 -a 1 + -t 1.23641 -s 3 -d 5 -p cbr -e 210 -c 1 -i 286 -a 1 - -t 1.23641 -s 3 -d 5 -p cbr -e 210 -c 1 -i 286 -a 1 h -t 1.23641 -s 3 -d 5 -p cbr -e 210 -c 1 -i 286 -a 1 - -t 1.23689 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 316 -a 0 -S 0 -y {12 12} h -t 1.23689 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 316 -a 0 -S 0 -y {-1 -1} r -t 1.23711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 304 -a 1 + -t 1.23711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 304 -a 1 r -t 1.23889 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 296 -a 0 -S 0 -y {8 8} + -t 1.23889 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 296 -a 0 -S 0 -y {8 8} r -t 1.23937 -s 3 -d 5 -p cbr -e 210 -c 1 -i 271 -a 1 r -t 1.23977 -s 2 -d 3 -p cbr -e 210 -c 1 -i 287 -a 1 + -t 1.23977 -s 3 -d 5 -p cbr -e 210 -c 1 -i 287 -a 1 - -t 1.23977 -s 3 -d 5 -p cbr -e 210 -c 1 -i 287 -a 1 h -t 1.23977 -s 3 -d 5 -p cbr -e 210 -c 1 -i 287 -a 1 + -t 1.24 -s 1 -d 2 -p cbr -e 210 -c 1 -i 323 -a 1 - -t 1.24 -s 1 -d 2 -p cbr -e 210 -c 1 -i 323 -a 1 h -t 1.24 -s 1 -d 2 -p cbr -e 210 -c 1 -i 323 -a 1 r -t 1.24086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 307 -a 1 + -t 1.24086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 307 -a 1 r -t 1.24273 -s 3 -d 5 -p cbr -e 210 -c 1 -i 272 -a 1 - -t 1.24273 -s 2 -d 3 -p cbr -e 210 -c 1 -i 301 -a 1 h -t 1.24273 -s 2 -d 3 -p cbr -e 210 -c 1 -i 301 -a 1 r -t 1.24313 -s 2 -d 3 -p cbr -e 210 -c 1 -i 288 -a 1 + -t 1.24313 -s 3 -d 5 -p cbr -e 210 -c 1 -i 288 -a 1 - -t 1.24313 -s 3 -d 5 -p cbr -e 210 -c 1 -i 288 -a 1 h -t 1.24313 -s 3 -d 5 -p cbr -e 210 -c 1 -i 288 -a 1 + -t 1.24375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 324 -a 1 - -t 1.24375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 324 -a 1 h -t 1.24375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 324 -a 1 r -t 1.24461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 308 -a 1 + -t 1.24461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 308 -a 1 r -t 1.24609 -s 3 -d 5 -p cbr -e 210 -c 1 -i 273 -a 1 - -t 1.24609 -s 2 -d 3 -p cbr -e 210 -c 1 -i 302 -a 1 h -t 1.24609 -s 2 -d 3 -p cbr -e 210 -c 1 -i 302 -a 1 r -t 1.24649 -s 2 -d 3 -p cbr -e 210 -c 1 -i 289 -a 1 + -t 1.24649 -s 3 -d 5 -p cbr -e 210 -c 1 -i 289 -a 1 - -t 1.24649 -s 3 -d 5 -p cbr -e 210 -c 1 -i 289 -a 1 h -t 1.24649 -s 3 -d 5 -p cbr -e 210 -c 1 -i 289 -a 1 + -t 1.2475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 325 -a 1 - -t 1.2475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 325 -a 1 h -t 1.2475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 325 -a 1 r -t 1.24836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 309 -a 1 + -t 1.24836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 309 -a 1 r -t 1.24945 -s 3 -d 5 -p cbr -e 210 -c 1 -i 274 -a 1 - -t 1.24945 -s 2 -d 3 -p cbr -e 210 -c 1 -i 303 -a 1 h -t 1.24945 -s 2 -d 3 -p cbr -e 210 -c 1 -i 303 -a 1 r -t 1.24985 -s 2 -d 3 -p cbr -e 210 -c 1 -i 290 -a 1 + -t 1.24985 -s 3 -d 5 -p cbr -e 210 -c 1 -i 290 -a 1 - -t 1.24985 -s 3 -d 5 -p cbr -e 210 -c 1 -i 290 -a 1 h -t 1.24985 -s 3 -d 5 -p cbr -e 210 -c 1 -i 290 -a 1 + -t 1.25125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 326 -a 1 - -t 1.25125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 326 -a 1 h -t 1.25125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 326 -a 1 r -t 1.25211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 310 -a 1 + -t 1.25211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 310 -a 1 r -t 1.25281 -s 3 -d 5 -p cbr -e 210 -c 1 -i 275 -a 1 - -t 1.25281 -s 2 -d 3 -p cbr -e 210 -c 1 -i 304 -a 1 h -t 1.25281 -s 2 -d 3 -p cbr -e 210 -c 1 -i 304 -a 1 r -t 1.25321 -s 2 -d 3 -p cbr -e 210 -c 1 -i 291 -a 1 + -t 1.25321 -s 3 -d 5 -p cbr -e 210 -c 1 -i 291 -a 1 - -t 1.25321 -s 3 -d 5 -p cbr -e 210 -c 1 -i 291 -a 1 h -t 1.25321 -s 3 -d 5 -p cbr -e 210 -c 1 -i 291 -a 1 r -t 1.25489 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 305 -a 0 -S 0 -y {9 9} + -t 1.25489 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 305 -a 0 -S 0 -y {9 9} + -t 1.255 -s 1 -d 2 -p cbr -e 210 -c 1 -i 327 -a 1 - -t 1.255 -s 1 -d 2 -p cbr -e 210 -c 1 -i 327 -a 1 h -t 1.255 -s 1 -d 2 -p cbr -e 210 -c 1 -i 327 -a 1 r -t 1.25586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 311 -a 1 + -t 1.25586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 311 -a 1 r -t 1.25617 -s 3 -d 5 -p cbr -e 210 -c 1 -i 276 -a 1 - -t 1.25617 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 296 -a 0 -S 0 -y {8 8} h -t 1.25617 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 296 -a 0 -S 0 -y {-1 -1} r -t 1.25657 -s 2 -d 3 -p cbr -e 210 -c 1 -i 292 -a 1 + -t 1.25657 -s 3 -d 5 -p cbr -e 210 -c 1 -i 292 -a 1 - -t 1.25657 -s 3 -d 5 -p cbr -e 210 -c 1 -i 292 -a 1 h -t 1.25657 -s 3 -d 5 -p cbr -e 210 -c 1 -i 292 -a 1 + -t 1.25875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 328 -a 1 - -t 1.25875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 328 -a 1 h -t 1.25875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 328 -a 1 r -t 1.25953 -s 3 -d 5 -p cbr -e 210 -c 1 -i 277 -a 1 r -t 1.25961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 312 -a 1 + -t 1.25961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 312 -a 1 r -t 1.25993 -s 2 -d 3 -p cbr -e 210 -c 1 -i 293 -a 1 + -t 1.25993 -s 3 -d 5 -p cbr -e 210 -c 1 -i 293 -a 1 - -t 1.25993 -s 3 -d 5 -p cbr -e 210 -c 1 -i 293 -a 1 h -t 1.25993 -s 3 -d 5 -p cbr -e 210 -c 1 -i 293 -a 1 v -t 1.26 sim_annotation 1.26 19 Send Packet_11,12,13 : Decrease window size to 3 + -t 1.2625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 329 -a 1 - -t 1.2625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 329 -a 1 h -t 1.2625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 329 -a 1 r -t 1.26289 -s 3 -d 5 -p cbr -e 210 -c 1 -i 278 -a 1 r -t 1.26329 -s 2 -d 3 -p cbr -e 210 -c 1 -i 294 -a 1 + -t 1.26329 -s 3 -d 5 -p cbr -e 210 -c 1 -i 294 -a 1 - -t 1.26329 -s 3 -d 5 -p cbr -e 210 -c 1 -i 294 -a 1 h -t 1.26329 -s 3 -d 5 -p cbr -e 210 -c 1 -i 294 -a 1 r -t 1.26336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 313 -a 1 + -t 1.26336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 313 -a 1 + -t 1.26625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 330 -a 1 - -t 1.26625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 330 -a 1 h -t 1.26625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 330 -a 1 r -t 1.26625 -s 3 -d 5 -p cbr -e 210 -c 1 -i 279 -a 1 r -t 1.26665 -s 2 -d 3 -p cbr -e 210 -c 1 -i 297 -a 1 + -t 1.26665 -s 3 -d 5 -p cbr -e 210 -c 1 -i 297 -a 1 - -t 1.26665 -s 3 -d 5 -p cbr -e 210 -c 1 -i 297 -a 1 h -t 1.26665 -s 3 -d 5 -p cbr -e 210 -c 1 -i 297 -a 1 r -t 1.26711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 314 -a 1 + -t 1.26711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 314 -a 1 r -t 1.26961 -s 3 -d 5 -p cbr -e 210 -c 1 -i 280 -a 1 + -t 1.27 -s 1 -d 2 -p cbr -e 210 -c 1 -i 331 -a 1 - -t 1.27 -s 1 -d 2 -p cbr -e 210 -c 1 -i 331 -a 1 h -t 1.27 -s 1 -d 2 -p cbr -e 210 -c 1 -i 331 -a 1 r -t 1.27001 -s 2 -d 3 -p cbr -e 210 -c 1 -i 298 -a 1 + -t 1.27001 -s 3 -d 5 -p cbr -e 210 -c 1 -i 298 -a 1 - -t 1.27001 -s 3 -d 5 -p cbr -e 210 -c 1 -i 298 -a 1 h -t 1.27001 -s 3 -d 5 -p cbr -e 210 -c 1 -i 298 -a 1 r -t 1.27086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 317 -a 1 + -t 1.27086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 317 -a 1 d -t 1.27086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 317 -a 1 r -t 1.27089 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 306 -a 0 -S 0 -y {10 10} + -t 1.27089 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 306 -a 0 -S 0 -y {10 10} d -t 1.27089 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 306 -a 0 -S 0 -y {10 10} - -t 1.27217 -s 2 -d 3 -p cbr -e 210 -c 1 -i 307 -a 1 h -t 1.27217 -s 2 -d 3 -p cbr -e 210 -c 1 -i 307 -a 1 r -t 1.27297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 281 -a 1 r -t 1.27337 -s 2 -d 3 -p cbr -e 210 -c 1 -i 299 -a 1 + -t 1.27337 -s 3 -d 5 -p cbr -e 210 -c 1 -i 299 -a 1 - -t 1.27337 -s 3 -d 5 -p cbr -e 210 -c 1 -i 299 -a 1 h -t 1.27337 -s 3 -d 5 -p cbr -e 210 -c 1 -i 299 -a 1 + -t 1.27375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 332 -a 1 - -t 1.27375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 332 -a 1 h -t 1.27375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 332 -a 1 r -t 1.27461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 318 -a 1 + -t 1.27461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 318 -a 1 - -t 1.27553 -s 2 -d 3 -p cbr -e 210 -c 1 -i 308 -a 1 h -t 1.27553 -s 2 -d 3 -p cbr -e 210 -c 1 -i 308 -a 1 r -t 1.27633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 282 -a 1 r -t 1.27673 -s 2 -d 3 -p cbr -e 210 -c 1 -i 300 -a 1 + -t 1.27673 -s 3 -d 5 -p cbr -e 210 -c 1 -i 300 -a 1 - -t 1.27673 -s 3 -d 5 -p cbr -e 210 -c 1 -i 300 -a 1 h -t 1.27673 -s 3 -d 5 -p cbr -e 210 -c 1 -i 300 -a 1 + -t 1.2775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 333 -a 1 - -t 1.2775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 333 -a 1 h -t 1.2775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 333 -a 1 r -t 1.27836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 319 -a 1 + -t 1.27836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 319 -a 1 - -t 1.27889 -s 2 -d 3 -p cbr -e 210 -c 1 -i 309 -a 1 h -t 1.27889 -s 2 -d 3 -p cbr -e 210 -c 1 -i 309 -a 1 r -t 1.27969 -s 3 -d 5 -p cbr -e 210 -c 1 -i 283 -a 1 + -t 1.28125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 334 -a 1 - -t 1.28125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 334 -a 1 h -t 1.28125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 334 -a 1 r -t 1.28211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 320 -a 1 + -t 1.28211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 320 -a 1 - -t 1.28225 -s 2 -d 3 -p cbr -e 210 -c 1 -i 310 -a 1 h -t 1.28225 -s 2 -d 3 -p cbr -e 210 -c 1 -i 310 -a 1 r -t 1.28305 -s 3 -d 5 -p cbr -e 210 -c 1 -i 284 -a 1 + -t 1.285 -s 1 -d 2 -p cbr -e 210 -c 1 -i 335 -a 1 - -t 1.285 -s 1 -d 2 -p cbr -e 210 -c 1 -i 335 -a 1 h -t 1.285 -s 1 -d 2 -p cbr -e 210 -c 1 -i 335 -a 1 - -t 1.28561 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 305 -a 0 -S 0 -y {9 9} h -t 1.28561 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 305 -a 0 -S 0 -y {-1 -1} r -t 1.28586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 321 -a 1 + -t 1.28586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 321 -a 1 r -t 1.28641 -s 3 -d 5 -p cbr -e 210 -c 1 -i 285 -a 1 r -t 1.28689 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 315 -a 0 -S 0 -y {11 11} + -t 1.28689 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 315 -a 0 -S 0 -y {11 11} + -t 1.28875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 336 -a 1 - -t 1.28875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 336 -a 1 h -t 1.28875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 336 -a 1 r -t 1.28961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 322 -a 1 + -t 1.28961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 322 -a 1 d -t 1.28961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 322 -a 1 r -t 1.28977 -s 3 -d 5 -p cbr -e 210 -c 1 -i 286 -a 1 + -t 1.2925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 337 -a 1 - -t 1.2925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 337 -a 1 h -t 1.2925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 337 -a 1 r -t 1.29273 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 295 -a 0 -S 0 -y {7 7} + -t 1.29273 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 295 -a 0 -S 0 -y {7 7} - -t 1.29273 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 295 -a 0 -S 0 -y {7 7} h -t 1.29273 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 295 -a 0 -S 0 -y {-1 -1} r -t 1.29313 -s 3 -d 5 -p cbr -e 210 -c 1 -i 287 -a 1 r -t 1.29336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 323 -a 1 + -t 1.29336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 323 -a 1 d -t 1.29336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 323 -a 1 r -t 1.29609 -s 2 -d 3 -p cbr -e 210 -c 1 -i 301 -a 1 + -t 1.29609 -s 3 -d 5 -p cbr -e 210 -c 1 -i 301 -a 1 - -t 1.29609 -s 3 -d 5 -p cbr -e 210 -c 1 -i 301 -a 1 h -t 1.29609 -s 3 -d 5 -p cbr -e 210 -c 1 -i 301 -a 1 + -t 1.29625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 338 -a 1 - -t 1.29625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 338 -a 1 h -t 1.29625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 338 -a 1 r -t 1.29649 -s 3 -d 5 -p cbr -e 210 -c 1 -i 288 -a 1 r -t 1.29711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 324 -a 1 + -t 1.29711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 324 -a 1 d -t 1.29711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 324 -a 1 r -t 1.29945 -s 2 -d 3 -p cbr -e 210 -c 1 -i 302 -a 1 + -t 1.29945 -s 3 -d 5 -p cbr -e 210 -c 1 -i 302 -a 1 - -t 1.29945 -s 3 -d 5 -p cbr -e 210 -c 1 -i 302 -a 1 h -t 1.29945 -s 3 -d 5 -p cbr -e 210 -c 1 -i 302 -a 1 r -t 1.29985 -s 3 -d 5 -p cbr -e 210 -c 1 -i 289 -a 1 + -t 1.3 -s 1 -d 2 -p cbr -e 210 -c 1 -i 339 -a 1 - -t 1.3 -s 1 -d 2 -p cbr -e 210 -c 1 -i 339 -a 1 h -t 1.3 -s 1 -d 2 -p cbr -e 210 -c 1 -i 339 -a 1 r -t 1.30086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 325 -a 1 + -t 1.30086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 325 -a 1 d -t 1.30086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 325 -a 1 - -t 1.30161 -s 2 -d 3 -p cbr -e 210 -c 1 -i 311 -a 1 h -t 1.30161 -s 2 -d 3 -p cbr -e 210 -c 1 -i 311 -a 1 r -t 1.30281 -s 2 -d 3 -p cbr -e 210 -c 1 -i 303 -a 1 + -t 1.30281 -s 3 -d 5 -p cbr -e 210 -c 1 -i 303 -a 1 - -t 1.30281 -s 3 -d 5 -p cbr -e 210 -c 1 -i 303 -a 1 h -t 1.30281 -s 3 -d 5 -p cbr -e 210 -c 1 -i 303 -a 1 r -t 1.30289 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 316 -a 0 -S 0 -y {12 12} + -t 1.30289 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 316 -a 0 -S 0 -y {12 12} r -t 1.30321 -s 3 -d 5 -p cbr -e 210 -c 1 -i 290 -a 1 + -t 1.30375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 340 -a 1 - -t 1.30375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 340 -a 1 h -t 1.30375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 340 -a 1 r -t 1.30461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 326 -a 1 + -t 1.30461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 326 -a 1 d -t 1.30461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 326 -a 1 - -t 1.30497 -s 2 -d 3 -p cbr -e 210 -c 1 -i 312 -a 1 h -t 1.30497 -s 2 -d 3 -p cbr -e 210 -c 1 -i 312 -a 1 r -t 1.30617 -s 2 -d 3 -p cbr -e 210 -c 1 -i 304 -a 1 + -t 1.30617 -s 3 -d 5 -p cbr -e 210 -c 1 -i 304 -a 1 - -t 1.30617 -s 3 -d 5 -p cbr -e 210 -c 1 -i 304 -a 1 h -t 1.30617 -s 3 -d 5 -p cbr -e 210 -c 1 -i 304 -a 1 r -t 1.30657 -s 3 -d 5 -p cbr -e 210 -c 1 -i 291 -a 1 + -t 1.3075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 341 -a 1 - -t 1.3075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 341 -a 1 h -t 1.3075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 341 -a 1 - -t 1.30833 -s 2 -d 3 -p cbr -e 210 -c 1 -i 313 -a 1 h -t 1.30833 -s 2 -d 3 -p cbr -e 210 -c 1 -i 313 -a 1 r -t 1.30836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 327 -a 1 + -t 1.30836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 327 -a 1 r -t 1.30993 -s 3 -d 5 -p cbr -e 210 -c 1 -i 292 -a 1 + -t 1.31125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 342 -a 1 - -t 1.31125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 342 -a 1 h -t 1.31125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 342 -a 1 - -t 1.31169 -s 2 -d 3 -p cbr -e 210 -c 1 -i 314 -a 1 h -t 1.31169 -s 2 -d 3 -p cbr -e 210 -c 1 -i 314 -a 1 r -t 1.31211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 328 -a 1 + -t 1.31211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 328 -a 1 r -t 1.31329 -s 3 -d 5 -p cbr -e 210 -c 1 -i 293 -a 1 + -t 1.315 -s 1 -d 2 -p cbr -e 210 -c 1 -i 343 -a 1 - -t 1.315 -s 1 -d 2 -p cbr -e 210 -c 1 -i 343 -a 1 h -t 1.315 -s 1 -d 2 -p cbr -e 210 -c 1 -i 343 -a 1 - -t 1.31505 -s 2 -d 3 -p cbr -e 210 -c 1 -i 318 -a 1 h -t 1.31505 -s 2 -d 3 -p cbr -e 210 -c 1 -i 318 -a 1 r -t 1.31586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 329 -a 1 + -t 1.31586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 329 -a 1 r -t 1.31665 -s 3 -d 5 -p cbr -e 210 -c 1 -i 294 -a 1 - -t 1.31841 -s 2 -d 3 -p cbr -e 210 -c 1 -i 319 -a 1 h -t 1.31841 -s 2 -d 3 -p cbr -e 210 -c 1 -i 319 -a 1 + -t 1.31875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 344 -a 1 - -t 1.31875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 344 -a 1 h -t 1.31875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 344 -a 1 r -t 1.31961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 330 -a 1 + -t 1.31961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 330 -a 1 r -t 1.32001 -s 3 -d 5 -p cbr -e 210 -c 1 -i 297 -a 1 - -t 1.32177 -s 2 -d 3 -p cbr -e 210 -c 1 -i 320 -a 1 h -t 1.32177 -s 2 -d 3 -p cbr -e 210 -c 1 -i 320 -a 1 r -t 1.32217 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 296 -a 0 -S 0 -y {8 8} + -t 1.32217 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 296 -a 0 -S 0 -y {8 8} - -t 1.32217 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 296 -a 0 -S 0 -y {8 8} h -t 1.32217 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 296 -a 0 -S 0 -y {-1 -1} + -t 1.3225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 345 -a 1 - -t 1.3225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 345 -a 1 h -t 1.3225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 345 -a 1 r -t 1.32336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 331 -a 1 + -t 1.32336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 331 -a 1 r -t 1.32337 -s 3 -d 5 -p cbr -e 210 -c 1 -i 298 -a 1 - -t 1.32513 -s 2 -d 3 -p cbr -e 210 -c 1 -i 321 -a 1 h -t 1.32513 -s 2 -d 3 -p cbr -e 210 -c 1 -i 321 -a 1 r -t 1.32553 -s 2 -d 3 -p cbr -e 210 -c 1 -i 307 -a 1 + -t 1.32553 -s 3 -d 5 -p cbr -e 210 -c 1 -i 307 -a 1 - -t 1.32553 -s 3 -d 5 -p cbr -e 210 -c 1 -i 307 -a 1 h -t 1.32553 -s 3 -d 5 -p cbr -e 210 -c 1 -i 307 -a 1 + -t 1.32625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 346 -a 1 - -t 1.32625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 346 -a 1 h -t 1.32625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 346 -a 1 r -t 1.32673 -s 3 -d 5 -p cbr -e 210 -c 1 -i 299 -a 1 r -t 1.32711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 332 -a 1 + -t 1.32711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 332 -a 1 - -t 1.32849 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 315 -a 0 -S 0 -y {11 11} h -t 1.32849 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 315 -a 0 -S 0 -y {-1 -1} r -t 1.32889 -s 2 -d 3 -p cbr -e 210 -c 1 -i 308 -a 1 + -t 1.32889 -s 3 -d 5 -p cbr -e 210 -c 1 -i 308 -a 1 - -t 1.32889 -s 3 -d 5 -p cbr -e 210 -c 1 -i 308 -a 1 h -t 1.32889 -s 3 -d 5 -p cbr -e 210 -c 1 -i 308 -a 1 + -t 1.33 -s 1 -d 2 -p cbr -e 210 -c 1 -i 347 -a 1 - -t 1.33 -s 1 -d 2 -p cbr -e 210 -c 1 -i 347 -a 1 h -t 1.33 -s 1 -d 2 -p cbr -e 210 -c 1 -i 347 -a 1 v -t 1.3300000000000001 sim_annotation 1.3300000000000001 20 Packet_13 is lost r -t 1.33009 -s 3 -d 5 -p cbr -e 210 -c 1 -i 300 -a 1 r -t 1.33086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 333 -a 1 + -t 1.33086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 333 -a 1 r -t 1.33225 -s 2 -d 3 -p cbr -e 210 -c 1 -i 309 -a 1 + -t 1.33225 -s 3 -d 5 -p cbr -e 210 -c 1 -i 309 -a 1 - -t 1.33225 -s 3 -d 5 -p cbr -e 210 -c 1 -i 309 -a 1 h -t 1.33225 -s 3 -d 5 -p cbr -e 210 -c 1 -i 309 -a 1 + -t 1.33375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 348 -a 1 - -t 1.33375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 348 -a 1 h -t 1.33375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 348 -a 1 r -t 1.33461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 334 -a 1 + -t 1.33461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 334 -a 1 r -t 1.33561 -s 2 -d 3 -p cbr -e 210 -c 1 -i 310 -a 1 + -t 1.33561 -s 3 -d 5 -p cbr -e 210 -c 1 -i 310 -a 1 - -t 1.33561 -s 3 -d 5 -p cbr -e 210 -c 1 -i 310 -a 1 h -t 1.33561 -s 3 -d 5 -p cbr -e 210 -c 1 -i 310 -a 1 + -t 1.3375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 349 -a 1 - -t 1.3375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 349 -a 1 h -t 1.3375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 349 -a 1 r -t 1.33836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 335 -a 1 + -t 1.33836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 335 -a 1 d -t 1.33836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 335 -a 1 + -t 1.34125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 350 -a 1 - -t 1.34125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 350 -a 1 h -t 1.34125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 350 -a 1 r -t 1.34211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 336 -a 1 + -t 1.34211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 336 -a 1 d -t 1.34211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 336 -a 1 - -t 1.34449 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 316 -a 0 -S 0 -y {12 12} h -t 1.34449 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 316 -a 0 -S 0 -y {-1 -1} + -t 1.345 -s 1 -d 2 -p cbr -e 210 -c 1 -i 351 -a 1 - -t 1.345 -s 1 -d 2 -p cbr -e 210 -c 1 -i 351 -a 1 h -t 1.345 -s 1 -d 2 -p cbr -e 210 -c 1 -i 351 -a 1 r -t 1.34586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 337 -a 1 + -t 1.34586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 337 -a 1 + -t 1.34875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 352 -a 1 - -t 1.34875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 352 -a 1 h -t 1.34875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 352 -a 1 r -t 1.34945 -s 3 -d 5 -p cbr -e 210 -c 1 -i 301 -a 1 r -t 1.34961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 338 -a 1 + -t 1.34961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 338 -a 1 d -t 1.34961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 338 -a 1 r -t 1.35161 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 305 -a 0 -S 0 -y {9 9} + -t 1.35161 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 305 -a 0 -S 0 -y {9 9} - -t 1.35161 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 305 -a 0 -S 0 -y {9 9} h -t 1.35161 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 305 -a 0 -S 0 -y {-1 -1} + -t 1.3525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 353 -a 1 - -t 1.3525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 353 -a 1 h -t 1.3525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 353 -a 1 r -t 1.35281 -s 3 -d 5 -p cbr -e 210 -c 1 -i 302 -a 1 r -t 1.35336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 339 -a 1 + -t 1.35336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 339 -a 1 d -t 1.35336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 339 -a 1 r -t 1.35497 -s 2 -d 3 -p cbr -e 210 -c 1 -i 311 -a 1 + -t 1.35497 -s 3 -d 5 -p cbr -e 210 -c 1 -i 311 -a 1 - -t 1.35497 -s 3 -d 5 -p cbr -e 210 -c 1 -i 311 -a 1 h -t 1.35497 -s 3 -d 5 -p cbr -e 210 -c 1 -i 311 -a 1 r -t 1.35617 -s 3 -d 5 -p cbr -e 210 -c 1 -i 303 -a 1 + -t 1.35625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 354 -a 1 - -t 1.35625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 354 -a 1 h -t 1.35625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 354 -a 1 r -t 1.35711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 340 -a 1 + -t 1.35711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 340 -a 1 d -t 1.35711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 340 -a 1 r -t 1.35833 -s 2 -d 3 -p cbr -e 210 -c 1 -i 312 -a 1 + -t 1.35833 -s 3 -d 5 -p cbr -e 210 -c 1 -i 312 -a 1 - -t 1.35833 -s 3 -d 5 -p cbr -e 210 -c 1 -i 312 -a 1 h -t 1.35833 -s 3 -d 5 -p cbr -e 210 -c 1 -i 312 -a 1 r -t 1.35873 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 295 -a 0 -S 0 -y {7 7} + -t 1.35873 -s 4 -d 3 -p ack -e 48 -c 0 -i 355 -a 0 -S 0 -y {5 5} - -t 1.35873 -s 4 -d 3 -p ack -e 48 -c 0 -i 355 -a 0 -S 0 -y {5 5} h -t 1.35873 -s 4 -d 3 -p ack -e 48 -c 0 -i 355 -a 0 -S 0 -y {-1 -1} r -t 1.35953 -s 3 -d 5 -p cbr -e 210 -c 1 -i 304 -a 1 + -t 1.36 -s 1 -d 2 -p cbr -e 210 -c 1 -i 356 -a 1 - -t 1.36 -s 1 -d 2 -p cbr -e 210 -c 1 -i 356 -a 1 h -t 1.36 -s 1 -d 2 -p cbr -e 210 -c 1 -i 356 -a 1 - -t 1.36049 -s 2 -d 3 -p cbr -e 210 -c 1 -i 327 -a 1 h -t 1.36049 -s 2 -d 3 -p cbr -e 210 -c 1 -i 327 -a 1 r -t 1.36086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 341 -a 1 + -t 1.36086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 341 -a 1 r -t 1.36169 -s 2 -d 3 -p cbr -e 210 -c 1 -i 313 -a 1 + -t 1.36169 -s 3 -d 5 -p cbr -e 210 -c 1 -i 313 -a 1 - -t 1.36169 -s 3 -d 5 -p cbr -e 210 -c 1 -i 313 -a 1 h -t 1.36169 -s 3 -d 5 -p cbr -e 210 -c 1 -i 313 -a 1 + -t 1.36375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 357 -a 1 - -t 1.36375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 357 -a 1 h -t 1.36375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 357 -a 1 - -t 1.36385 -s 2 -d 3 -p cbr -e 210 -c 1 -i 328 -a 1 h -t 1.36385 -s 2 -d 3 -p cbr -e 210 -c 1 -i 328 -a 1 r -t 1.36461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 342 -a 1 + -t 1.36461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 342 -a 1 r -t 1.36505 -s 2 -d 3 -p cbr -e 210 -c 1 -i 314 -a 1 + -t 1.36505 -s 3 -d 5 -p cbr -e 210 -c 1 -i 314 -a 1 - -t 1.36505 -s 3 -d 5 -p cbr -e 210 -c 1 -i 314 -a 1 h -t 1.36505 -s 3 -d 5 -p cbr -e 210 -c 1 -i 314 -a 1 - -t 1.36721 -s 2 -d 3 -p cbr -e 210 -c 1 -i 329 -a 1 h -t 1.36721 -s 2 -d 3 -p cbr -e 210 -c 1 -i 329 -a 1 + -t 1.3675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 358 -a 1 - -t 1.3675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 358 -a 1 h -t 1.3675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 358 -a 1 r -t 1.36836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 343 -a 1 + -t 1.36836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 343 -a 1 r -t 1.36841 -s 2 -d 3 -p cbr -e 210 -c 1 -i 318 -a 1 + -t 1.36841 -s 3 -d 5 -p cbr -e 210 -c 1 -i 318 -a 1 - -t 1.36841 -s 3 -d 5 -p cbr -e 210 -c 1 -i 318 -a 1 h -t 1.36841 -s 3 -d 5 -p cbr -e 210 -c 1 -i 318 -a 1 - -t 1.37057 -s 2 -d 3 -p cbr -e 210 -c 1 -i 330 -a 1 h -t 1.37057 -s 2 -d 3 -p cbr -e 210 -c 1 -i 330 -a 1 + -t 1.37125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 359 -a 1 - -t 1.37125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 359 -a 1 h -t 1.37125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 359 -a 1 r -t 1.37177 -s 2 -d 3 -p cbr -e 210 -c 1 -i 319 -a 1 + -t 1.37177 -s 3 -d 5 -p cbr -e 210 -c 1 -i 319 -a 1 - -t 1.37177 -s 3 -d 5 -p cbr -e 210 -c 1 -i 319 -a 1 h -t 1.37177 -s 3 -d 5 -p cbr -e 210 -c 1 -i 319 -a 1 r -t 1.37211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 344 -a 1 + -t 1.37211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 344 -a 1 - -t 1.37393 -s 2 -d 3 -p cbr -e 210 -c 1 -i 331 -a 1 h -t 1.37393 -s 2 -d 3 -p cbr -e 210 -c 1 -i 331 -a 1 + -t 1.375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 360 -a 1 - -t 1.375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 360 -a 1 h -t 1.375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 360 -a 1 r -t 1.37513 -s 2 -d 3 -p cbr -e 210 -c 1 -i 320 -a 1 + -t 1.37513 -s 3 -d 5 -p cbr -e 210 -c 1 -i 320 -a 1 - -t 1.37513 -s 3 -d 5 -p cbr -e 210 -c 1 -i 320 -a 1 h -t 1.37513 -s 3 -d 5 -p cbr -e 210 -c 1 -i 320 -a 1 r -t 1.37586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 345 -a 1 + -t 1.37586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 345 -a 1 - -t 1.37729 -s 2 -d 3 -p cbr -e 210 -c 1 -i 332 -a 1 h -t 1.37729 -s 2 -d 3 -p cbr -e 210 -c 1 -i 332 -a 1 r -t 1.37849 -s 2 -d 3 -p cbr -e 210 -c 1 -i 321 -a 1 + -t 1.37849 -s 3 -d 5 -p cbr -e 210 -c 1 -i 321 -a 1 - -t 1.37849 -s 3 -d 5 -p cbr -e 210 -c 1 -i 321 -a 1 h -t 1.37849 -s 3 -d 5 -p cbr -e 210 -c 1 -i 321 -a 1 + -t 1.37875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 361 -a 1 - -t 1.37875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 361 -a 1 h -t 1.37875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 361 -a 1 r -t 1.37889 -s 3 -d 5 -p cbr -e 210 -c 1 -i 307 -a 1 r -t 1.37961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 346 -a 1 + -t 1.37961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 346 -a 1 - -t 1.38065 -s 2 -d 3 -p cbr -e 210 -c 1 -i 333 -a 1 h -t 1.38065 -s 2 -d 3 -p cbr -e 210 -c 1 -i 333 -a 1 r -t 1.38225 -s 3 -d 5 -p cbr -e 210 -c 1 -i 308 -a 1 + -t 1.3825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 362 -a 1 - -t 1.3825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 362 -a 1 h -t 1.3825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 362 -a 1 r -t 1.38336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 347 -a 1 + -t 1.38336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 347 -a 1 - -t 1.38401 -s 2 -d 3 -p cbr -e 210 -c 1 -i 334 -a 1 h -t 1.38401 -s 2 -d 3 -p cbr -e 210 -c 1 -i 334 -a 1 r -t 1.38561 -s 3 -d 5 -p cbr -e 210 -c 1 -i 309 -a 1 + -t 1.38625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 363 -a 1 - -t 1.38625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 363 -a 1 h -t 1.38625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 363 -a 1 r -t 1.38711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 348 -a 1 + -t 1.38711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 348 -a 1 - -t 1.38737 -s 2 -d 3 -p cbr -e 210 -c 1 -i 337 -a 1 h -t 1.38737 -s 2 -d 3 -p cbr -e 210 -c 1 -i 337 -a 1 r -t 1.38817 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 296 -a 0 -S 0 -y {8 8} + -t 1.38817 -s 4 -d 3 -p ack -e 48 -c 0 -i 364 -a 0 -S 0 -y {5 5} - -t 1.38817 -s 4 -d 3 -p ack -e 48 -c 0 -i 364 -a 0 -S 0 -y {5 5} h -t 1.38817 -s 4 -d 3 -p ack -e 48 -c 0 -i 364 -a 0 -S 0 -y {-1 -1} r -t 1.38897 -s 3 -d 5 -p cbr -e 210 -c 1 -i 310 -a 1 + -t 1.39 -s 1 -d 2 -p cbr -e 210 -c 1 -i 365 -a 1 - -t 1.39 -s 1 -d 2 -p cbr -e 210 -c 1 -i 365 -a 1 h -t 1.39 -s 1 -d 2 -p cbr -e 210 -c 1 -i 365 -a 1 v -t 1.3899999999999999 sim_annotation 1.3899999999999999 21 Ack_11,12 : 2 acks are coming - -t 1.39073 -s 2 -d 3 -p cbr -e 210 -c 1 -i 341 -a 1 h -t 1.39073 -s 2 -d 3 -p cbr -e 210 -c 1 -i 341 -a 1 r -t 1.39086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 349 -a 1 + -t 1.39086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 349 -a 1 + -t 1.39375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 366 -a 1 - -t 1.39375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 366 -a 1 h -t 1.39375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 366 -a 1 - -t 1.39409 -s 2 -d 3 -p cbr -e 210 -c 1 -i 342 -a 1 h -t 1.39409 -s 2 -d 3 -p cbr -e 210 -c 1 -i 342 -a 1 r -t 1.39449 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 315 -a 0 -S 0 -y {11 11} + -t 1.39449 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 315 -a 0 -S 0 -y {11 11} - -t 1.39449 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 315 -a 0 -S 0 -y {11 11} h -t 1.39449 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 315 -a 0 -S 0 -y {-1 -1} r -t 1.39461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 350 -a 1 + -t 1.39461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 350 -a 1 - -t 1.39745 -s 2 -d 3 -p cbr -e 210 -c 1 -i 343 -a 1 h -t 1.39745 -s 2 -d 3 -p cbr -e 210 -c 1 -i 343 -a 1 + -t 1.3975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 367 -a 1 - -t 1.3975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 367 -a 1 h -t 1.3975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 367 -a 1 r -t 1.39836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 351 -a 1 + -t 1.39836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 351 -a 1 - -t 1.40081 -s 2 -d 3 -p cbr -e 210 -c 1 -i 344 -a 1 h -t 1.40081 -s 2 -d 3 -p cbr -e 210 -c 1 -i 344 -a 1 + -t 1.40125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 368 -a 1 - -t 1.40125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 368 -a 1 h -t 1.40125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 368 -a 1 r -t 1.40211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 352 -a 1 + -t 1.40211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 352 -a 1 - -t 1.40417 -s 2 -d 3 -p cbr -e 210 -c 1 -i 345 -a 1 h -t 1.40417 -s 2 -d 3 -p cbr -e 210 -c 1 -i 345 -a 1 + -t 1.405 -s 1 -d 2 -p cbr -e 210 -c 1 -i 369 -a 1 - -t 1.405 -s 1 -d 2 -p cbr -e 210 -c 1 -i 369 -a 1 h -t 1.405 -s 1 -d 2 -p cbr -e 210 -c 1 -i 369 -a 1 r -t 1.40586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 353 -a 1 + -t 1.40586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 353 -a 1 - -t 1.40753 -s 2 -d 3 -p cbr -e 210 -c 1 -i 346 -a 1 h -t 1.40753 -s 2 -d 3 -p cbr -e 210 -c 1 -i 346 -a 1 r -t 1.40833 -s 3 -d 5 -p cbr -e 210 -c 1 -i 311 -a 1 + -t 1.40875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 370 -a 1 - -t 1.40875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 370 -a 1 h -t 1.40875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 370 -a 1 r -t 1.4095 -s 4 -d 3 -p ack -e 48 -c 0 -i 355 -a 0 -S 0 -y {5 5} + -t 1.4095 -s 3 -d 2 -p ack -e 48 -c 0 -i 355 -a 0 -S 0 -y {5 5} - -t 1.4095 -s 3 -d 2 -p ack -e 48 -c 0 -i 355 -a 0 -S 0 -y {5 5} h -t 1.4095 -s 3 -d 2 -p ack -e 48 -c 0 -i 355 -a 0 -S 0 -y {-1 -1} r -t 1.40961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 354 -a 1 + -t 1.40961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 354 -a 1 r -t 1.41049 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 316 -a 0 -S 0 -y {12 12} + -t 1.41049 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 316 -a 0 -S 0 -y {12 12} - -t 1.41049 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 316 -a 0 -S 0 -y {12 12} h -t 1.41049 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 316 -a 0 -S 0 -y {-1 -1} - -t 1.41089 -s 2 -d 3 -p cbr -e 210 -c 1 -i 347 -a 1 h -t 1.41089 -s 2 -d 3 -p cbr -e 210 -c 1 -i 347 -a 1 r -t 1.41169 -s 3 -d 5 -p cbr -e 210 -c 1 -i 312 -a 1 + -t 1.4125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 371 -a 1 - -t 1.4125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 371 -a 1 h -t 1.4125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 371 -a 1 r -t 1.41336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 356 -a 1 + -t 1.41336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 356 -a 1 r -t 1.41385 -s 2 -d 3 -p cbr -e 210 -c 1 -i 327 -a 1 + -t 1.41385 -s 3 -d 5 -p cbr -e 210 -c 1 -i 327 -a 1 - -t 1.41385 -s 3 -d 5 -p cbr -e 210 -c 1 -i 327 -a 1 h -t 1.41385 -s 3 -d 5 -p cbr -e 210 -c 1 -i 327 -a 1 - -t 1.41425 -s 2 -d 3 -p cbr -e 210 -c 1 -i 348 -a 1 h -t 1.41425 -s 2 -d 3 -p cbr -e 210 -c 1 -i 348 -a 1 r -t 1.41505 -s 3 -d 5 -p cbr -e 210 -c 1 -i 313 -a 1 + -t 1.41625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 372 -a 1 - -t 1.41625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 372 -a 1 h -t 1.41625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 372 -a 1 r -t 1.41711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 357 -a 1 + -t 1.41711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 357 -a 1 r -t 1.41721 -s 2 -d 3 -p cbr -e 210 -c 1 -i 328 -a 1 + -t 1.41721 -s 3 -d 5 -p cbr -e 210 -c 1 -i 328 -a 1 - -t 1.41721 -s 3 -d 5 -p cbr -e 210 -c 1 -i 328 -a 1 h -t 1.41721 -s 3 -d 5 -p cbr -e 210 -c 1 -i 328 -a 1 r -t 1.41761 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 305 -a 0 -S 0 -y {9 9} + -t 1.41761 -s 4 -d 3 -p ack -e 48 -c 0 -i 373 -a 0 -S 0 -y {5 5} - -t 1.41761 -s 4 -d 3 -p ack -e 48 -c 0 -i 373 -a 0 -S 0 -y {5 5} h -t 1.41761 -s 4 -d 3 -p ack -e 48 -c 0 -i 373 -a 0 -S 0 -y {-1 -1} - -t 1.41761 -s 2 -d 3 -p cbr -e 210 -c 1 -i 349 -a 1 h -t 1.41761 -s 2 -d 3 -p cbr -e 210 -c 1 -i 349 -a 1 r -t 1.41841 -s 3 -d 5 -p cbr -e 210 -c 1 -i 314 -a 1 + -t 1.42 -s 1 -d 2 -p cbr -e 210 -c 1 -i 374 -a 1 - -t 1.42 -s 1 -d 2 -p cbr -e 210 -c 1 -i 374 -a 1 h -t 1.42 -s 1 -d 2 -p cbr -e 210 -c 1 -i 374 -a 1 r -t 1.42057 -s 2 -d 3 -p cbr -e 210 -c 1 -i 329 -a 1 + -t 1.42057 -s 3 -d 5 -p cbr -e 210 -c 1 -i 329 -a 1 - -t 1.42057 -s 3 -d 5 -p cbr -e 210 -c 1 -i 329 -a 1 h -t 1.42057 -s 3 -d 5 -p cbr -e 210 -c 1 -i 329 -a 1 r -t 1.42086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 358 -a 1 + -t 1.42086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 358 -a 1 - -t 1.42097 -s 2 -d 3 -p cbr -e 210 -c 1 -i 350 -a 1 h -t 1.42097 -s 2 -d 3 -p cbr -e 210 -c 1 -i 350 -a 1 r -t 1.42177 -s 3 -d 5 -p cbr -e 210 -c 1 -i 318 -a 1 + -t 1.42375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 375 -a 1 - -t 1.42375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 375 -a 1 h -t 1.42375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 375 -a 1 r -t 1.42393 -s 2 -d 3 -p cbr -e 210 -c 1 -i 330 -a 1 + -t 1.42393 -s 3 -d 5 -p cbr -e 210 -c 1 -i 330 -a 1 - -t 1.42393 -s 3 -d 5 -p cbr -e 210 -c 1 -i 330 -a 1 h -t 1.42393 -s 3 -d 5 -p cbr -e 210 -c 1 -i 330 -a 1 - -t 1.42433 -s 2 -d 3 -p cbr -e 210 -c 1 -i 351 -a 1 h -t 1.42433 -s 2 -d 3 -p cbr -e 210 -c 1 -i 351 -a 1 r -t 1.42461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 359 -a 1 + -t 1.42461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 359 -a 1 r -t 1.42513 -s 3 -d 5 -p cbr -e 210 -c 1 -i 319 -a 1 r -t 1.42729 -s 2 -d 3 -p cbr -e 210 -c 1 -i 331 -a 1 + -t 1.42729 -s 3 -d 5 -p cbr -e 210 -c 1 -i 331 -a 1 - -t 1.42729 -s 3 -d 5 -p cbr -e 210 -c 1 -i 331 -a 1 h -t 1.42729 -s 3 -d 5 -p cbr -e 210 -c 1 -i 331 -a 1 + -t 1.4275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 376 -a 1 - -t 1.4275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 376 -a 1 h -t 1.4275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 376 -a 1 - -t 1.42769 -s 2 -d 3 -p cbr -e 210 -c 1 -i 352 -a 1 h -t 1.42769 -s 2 -d 3 -p cbr -e 210 -c 1 -i 352 -a 1 r -t 1.42836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 360 -a 1 + -t 1.42836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 360 -a 1 r -t 1.42849 -s 3 -d 5 -p cbr -e 210 -c 1 -i 320 -a 1 r -t 1.43065 -s 2 -d 3 -p cbr -e 210 -c 1 -i 332 -a 1 + -t 1.43065 -s 3 -d 5 -p cbr -e 210 -c 1 -i 332 -a 1 - -t 1.43065 -s 3 -d 5 -p cbr -e 210 -c 1 -i 332 -a 1 h -t 1.43065 -s 3 -d 5 -p cbr -e 210 -c 1 -i 332 -a 1 - -t 1.43105 -s 2 -d 3 -p cbr -e 210 -c 1 -i 353 -a 1 h -t 1.43105 -s 2 -d 3 -p cbr -e 210 -c 1 -i 353 -a 1 + -t 1.43125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 377 -a 1 - -t 1.43125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 377 -a 1 h -t 1.43125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 377 -a 1 r -t 1.43185 -s 3 -d 5 -p cbr -e 210 -c 1 -i 321 -a 1 r -t 1.43211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 361 -a 1 + -t 1.43211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 361 -a 1 r -t 1.43401 -s 2 -d 3 -p cbr -e 210 -c 1 -i 333 -a 1 + -t 1.43401 -s 3 -d 5 -p cbr -e 210 -c 1 -i 333 -a 1 - -t 1.43401 -s 3 -d 5 -p cbr -e 210 -c 1 -i 333 -a 1 h -t 1.43401 -s 3 -d 5 -p cbr -e 210 -c 1 -i 333 -a 1 - -t 1.43441 -s 2 -d 3 -p cbr -e 210 -c 1 -i 354 -a 1 h -t 1.43441 -s 2 -d 3 -p cbr -e 210 -c 1 -i 354 -a 1 + -t 1.435 -s 1 -d 2 -p cbr -e 210 -c 1 -i 378 -a 1 - -t 1.435 -s 1 -d 2 -p cbr -e 210 -c 1 -i 378 -a 1 h -t 1.435 -s 1 -d 2 -p cbr -e 210 -c 1 -i 378 -a 1 r -t 1.43586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 362 -a 1 + -t 1.43586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 362 -a 1 r -t 1.43737 -s 2 -d 3 -p cbr -e 210 -c 1 -i 334 -a 1 + -t 1.43737 -s 3 -d 5 -p cbr -e 210 -c 1 -i 334 -a 1 - -t 1.43737 -s 3 -d 5 -p cbr -e 210 -c 1 -i 334 -a 1 h -t 1.43737 -s 3 -d 5 -p cbr -e 210 -c 1 -i 334 -a 1 - -t 1.43777 -s 2 -d 3 -p cbr -e 210 -c 1 -i 356 -a 1 h -t 1.43777 -s 2 -d 3 -p cbr -e 210 -c 1 -i 356 -a 1 + -t 1.43875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 379 -a 1 - -t 1.43875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 379 -a 1 h -t 1.43875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 379 -a 1 r -t 1.43894 -s 4 -d 3 -p ack -e 48 -c 0 -i 364 -a 0 -S 0 -y {5 5} + -t 1.43894 -s 3 -d 2 -p ack -e 48 -c 0 -i 364 -a 0 -S 0 -y {5 5} - -t 1.43894 -s 3 -d 2 -p ack -e 48 -c 0 -i 364 -a 0 -S 0 -y {5 5} h -t 1.43894 -s 3 -d 2 -p ack -e 48 -c 0 -i 364 -a 0 -S 0 -y {-1 -1} r -t 1.43961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 363 -a 1 + -t 1.43961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 363 -a 1 r -t 1.44073 -s 2 -d 3 -p cbr -e 210 -c 1 -i 337 -a 1 + -t 1.44073 -s 3 -d 5 -p cbr -e 210 -c 1 -i 337 -a 1 - -t 1.44073 -s 3 -d 5 -p cbr -e 210 -c 1 -i 337 -a 1 h -t 1.44073 -s 3 -d 5 -p cbr -e 210 -c 1 -i 337 -a 1 - -t 1.44113 -s 2 -d 3 -p cbr -e 210 -c 1 -i 357 -a 1 h -t 1.44113 -s 2 -d 3 -p cbr -e 210 -c 1 -i 357 -a 1 + -t 1.4425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 380 -a 1 - -t 1.4425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 380 -a 1 h -t 1.4425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 380 -a 1 r -t 1.44336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 365 -a 1 + -t 1.44336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 365 -a 1 r -t 1.44409 -s 2 -d 3 -p cbr -e 210 -c 1 -i 341 -a 1 + -t 1.44409 -s 3 -d 5 -p cbr -e 210 -c 1 -i 341 -a 1 - -t 1.44409 -s 3 -d 5 -p cbr -e 210 -c 1 -i 341 -a 1 h -t 1.44409 -s 3 -d 5 -p cbr -e 210 -c 1 -i 341 -a 1 - -t 1.44449 -s 2 -d 3 -p cbr -e 210 -c 1 -i 358 -a 1 h -t 1.44449 -s 2 -d 3 -p cbr -e 210 -c 1 -i 358 -a 1 + -t 1.44625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 381 -a 1 - -t 1.44625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 381 -a 1 h -t 1.44625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 381 -a 1 r -t 1.44711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 366 -a 1 + -t 1.44711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 366 -a 1 r -t 1.44745 -s 2 -d 3 -p cbr -e 210 -c 1 -i 342 -a 1 + -t 1.44745 -s 3 -d 5 -p cbr -e 210 -c 1 -i 342 -a 1 - -t 1.44745 -s 3 -d 5 -p cbr -e 210 -c 1 -i 342 -a 1 h -t 1.44745 -s 3 -d 5 -p cbr -e 210 -c 1 -i 342 -a 1 - -t 1.44785 -s 2 -d 3 -p cbr -e 210 -c 1 -i 359 -a 1 h -t 1.44785 -s 2 -d 3 -p cbr -e 210 -c 1 -i 359 -a 1 + -t 1.45 -s 1 -d 2 -p cbr -e 210 -c 1 -i 382 -a 1 - -t 1.45 -s 1 -d 2 -p cbr -e 210 -c 1 -i 382 -a 1 h -t 1.45 -s 1 -d 2 -p cbr -e 210 -c 1 -i 382 -a 1 r -t 1.45081 -s 2 -d 3 -p cbr -e 210 -c 1 -i 343 -a 1 + -t 1.45081 -s 3 -d 5 -p cbr -e 210 -c 1 -i 343 -a 1 - -t 1.45081 -s 3 -d 5 -p cbr -e 210 -c 1 -i 343 -a 1 h -t 1.45081 -s 3 -d 5 -p cbr -e 210 -c 1 -i 343 -a 1 r -t 1.45086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 367 -a 1 + -t 1.45086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 367 -a 1 - -t 1.45121 -s 2 -d 3 -p cbr -e 210 -c 1 -i 360 -a 1 h -t 1.45121 -s 2 -d 3 -p cbr -e 210 -c 1 -i 360 -a 1 + -t 1.45375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 383 -a 1 - -t 1.45375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 383 -a 1 h -t 1.45375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 383 -a 1 r -t 1.45417 -s 2 -d 3 -p cbr -e 210 -c 1 -i 344 -a 1 + -t 1.45417 -s 3 -d 5 -p cbr -e 210 -c 1 -i 344 -a 1 - -t 1.45417 -s 3 -d 5 -p cbr -e 210 -c 1 -i 344 -a 1 h -t 1.45417 -s 3 -d 5 -p cbr -e 210 -c 1 -i 344 -a 1 - -t 1.45457 -s 2 -d 3 -p cbr -e 210 -c 1 -i 361 -a 1 h -t 1.45457 -s 2 -d 3 -p cbr -e 210 -c 1 -i 361 -a 1 r -t 1.45461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 368 -a 1 + -t 1.45461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 368 -a 1 + -t 1.4575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 384 -a 1 - -t 1.4575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 384 -a 1 h -t 1.4575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 384 -a 1 r -t 1.45753 -s 2 -d 3 -p cbr -e 210 -c 1 -i 345 -a 1 + -t 1.45753 -s 3 -d 5 -p cbr -e 210 -c 1 -i 345 -a 1 - -t 1.45753 -s 3 -d 5 -p cbr -e 210 -c 1 -i 345 -a 1 h -t 1.45753 -s 3 -d 5 -p cbr -e 210 -c 1 -i 345 -a 1 - -t 1.45793 -s 2 -d 3 -p cbr -e 210 -c 1 -i 362 -a 1 h -t 1.45793 -s 2 -d 3 -p cbr -e 210 -c 1 -i 362 -a 1 r -t 1.45836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 369 -a 1 + -t 1.45836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 369 -a 1 v -t 1.46 sim_annotation 1.46 22 Send Packet_14,15 : 1 packet per ack r -t 1.46027 -s 3 -d 2 -p ack -e 48 -c 0 -i 355 -a 0 -S 0 -y {5 5} + -t 1.46027 -s 2 -d 0 -p ack -e 48 -c 0 -i 355 -a 0 -S 0 -y {5 5} - -t 1.46027 -s 2 -d 0 -p ack -e 48 -c 0 -i 355 -a 0 -S 0 -f 0 -m 1 -y {5 5} h -t 1.46027 -s 2 -d 0 -p ack -e 48 -c 0 -i 355 -a 0 -S 0 -y {-1 -1} r -t 1.46049 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 315 -a 0 -S 0 -y {11 11} + -t 1.46049 -s 4 -d 3 -p ack -e 56 -c 0 -i 385 -a 0 -S 0 -y {5 5} - -t 1.46049 -s 4 -d 3 -p ack -e 56 -c 0 -i 385 -a 0 -S 0 -y {5 5} h -t 1.46049 -s 4 -d 3 -p ack -e 56 -c 0 -i 385 -a 0 -S 0 -y {-1 -1} r -t 1.46089 -s 2 -d 3 -p cbr -e 210 -c 1 -i 346 -a 1 + -t 1.46089 -s 3 -d 5 -p cbr -e 210 -c 1 -i 346 -a 1 - -t 1.46089 -s 3 -d 5 -p cbr -e 210 -c 1 -i 346 -a 1 h -t 1.46089 -s 3 -d 5 -p cbr -e 210 -c 1 -i 346 -a 1 + -t 1.46125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 386 -a 1 - -t 1.46125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 386 -a 1 h -t 1.46125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 386 -a 1 - -t 1.46129 -s 2 -d 3 -p cbr -e 210 -c 1 -i 363 -a 1 h -t 1.46129 -s 2 -d 3 -p cbr -e 210 -c 1 -i 363 -a 1 r -t 1.46211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 370 -a 1 + -t 1.46211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 370 -a 1 r -t 1.46425 -s 2 -d 3 -p cbr -e 210 -c 1 -i 347 -a 1 + -t 1.46425 -s 3 -d 5 -p cbr -e 210 -c 1 -i 347 -a 1 - -t 1.46425 -s 3 -d 5 -p cbr -e 210 -c 1 -i 347 -a 1 h -t 1.46425 -s 3 -d 5 -p cbr -e 210 -c 1 -i 347 -a 1 - -t 1.46465 -s 2 -d 3 -p cbr -e 210 -c 1 -i 365 -a 1 h -t 1.46465 -s 2 -d 3 -p cbr -e 210 -c 1 -i 365 -a 1 + -t 1.465 -s 1 -d 2 -p cbr -e 210 -c 1 -i 387 -a 1 - -t 1.465 -s 1 -d 2 -p cbr -e 210 -c 1 -i 387 -a 1 h -t 1.465 -s 1 -d 2 -p cbr -e 210 -c 1 -i 387 -a 1 r -t 1.46586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 371 -a 1 + -t 1.46586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 371 -a 1 r -t 1.46721 -s 3 -d 5 -p cbr -e 210 -c 1 -i 327 -a 1 r -t 1.46761 -s 2 -d 3 -p cbr -e 210 -c 1 -i 348 -a 1 + -t 1.46761 -s 3 -d 5 -p cbr -e 210 -c 1 -i 348 -a 1 - -t 1.46761 -s 3 -d 5 -p cbr -e 210 -c 1 -i 348 -a 1 h -t 1.46761 -s 3 -d 5 -p cbr -e 210 -c 1 -i 348 -a 1 - -t 1.46801 -s 2 -d 3 -p cbr -e 210 -c 1 -i 366 -a 1 h -t 1.46801 -s 2 -d 3 -p cbr -e 210 -c 1 -i 366 -a 1 r -t 1.46838 -s 4 -d 3 -p ack -e 48 -c 0 -i 373 -a 0 -S 0 -y {5 5} + -t 1.46838 -s 3 -d 2 -p ack -e 48 -c 0 -i 373 -a 0 -S 0 -y {5 5} - -t 1.46838 -s 3 -d 2 -p ack -e 48 -c 0 -i 373 -a 0 -S 0 -y {5 5} h -t 1.46838 -s 3 -d 2 -p ack -e 48 -c 0 -i 373 -a 0 -S 0 -y {-1 -1} + -t 1.46875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 388 -a 1 - -t 1.46875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 388 -a 1 h -t 1.46875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 388 -a 1 r -t 1.46961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 372 -a 1 + -t 1.46961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 372 -a 1 r -t 1.47057 -s 3 -d 5 -p cbr -e 210 -c 1 -i 328 -a 1 r -t 1.47097 -s 2 -d 3 -p cbr -e 210 -c 1 -i 349 -a 1 + -t 1.47097 -s 3 -d 5 -p cbr -e 210 -c 1 -i 349 -a 1 - -t 1.47097 -s 3 -d 5 -p cbr -e 210 -c 1 -i 349 -a 1 h -t 1.47097 -s 3 -d 5 -p cbr -e 210 -c 1 -i 349 -a 1 - -t 1.47137 -s 2 -d 3 -p cbr -e 210 -c 1 -i 367 -a 1 h -t 1.47137 -s 2 -d 3 -p cbr -e 210 -c 1 -i 367 -a 1 + -t 1.4725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 389 -a 1 - -t 1.4725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 389 -a 1 h -t 1.4725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 389 -a 1 r -t 1.47336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 374 -a 1 + -t 1.47336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 374 -a 1 r -t 1.47393 -s 3 -d 5 -p cbr -e 210 -c 1 -i 329 -a 1 r -t 1.47433 -s 2 -d 3 -p cbr -e 210 -c 1 -i 350 -a 1 + -t 1.47433 -s 3 -d 5 -p cbr -e 210 -c 1 -i 350 -a 1 - -t 1.47433 -s 3 -d 5 -p cbr -e 210 -c 1 -i 350 -a 1 h -t 1.47433 -s 3 -d 5 -p cbr -e 210 -c 1 -i 350 -a 1 - -t 1.47473 -s 2 -d 3 -p cbr -e 210 -c 1 -i 368 -a 1 h -t 1.47473 -s 2 -d 3 -p cbr -e 210 -c 1 -i 368 -a 1 + -t 1.47625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 390 -a 1 - -t 1.47625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 390 -a 1 h -t 1.47625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 390 -a 1 r -t 1.47649 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 316 -a 0 -S 0 -y {12 12} + -t 1.47649 -s 4 -d 3 -p ack -e 56 -c 0 -i 391 -a 0 -S 0 -y {5 5} - -t 1.47649 -s 4 -d 3 -p ack -e 56 -c 0 -i 391 -a 0 -S 0 -y {5 5} h -t 1.47649 -s 4 -d 3 -p ack -e 56 -c 0 -i 391 -a 0 -S 0 -y {-1 -1} r -t 1.47711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 375 -a 1 + -t 1.47711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 375 -a 1 r -t 1.47729 -s 3 -d 5 -p cbr -e 210 -c 1 -i 330 -a 1 r -t 1.47769 -s 2 -d 3 -p cbr -e 210 -c 1 -i 351 -a 1 + -t 1.47769 -s 3 -d 5 -p cbr -e 210 -c 1 -i 351 -a 1 - -t 1.47769 -s 3 -d 5 -p cbr -e 210 -c 1 -i 351 -a 1 h -t 1.47769 -s 3 -d 5 -p cbr -e 210 -c 1 -i 351 -a 1 - -t 1.47809 -s 2 -d 3 -p cbr -e 210 -c 1 -i 369 -a 1 h -t 1.47809 -s 2 -d 3 -p cbr -e 210 -c 1 -i 369 -a 1 + -t 1.48 -s 1 -d 2 -p cbr -e 210 -c 1 -i 392 -a 1 - -t 1.48 -s 1 -d 2 -p cbr -e 210 -c 1 -i 392 -a 1 h -t 1.48 -s 1 -d 2 -p cbr -e 210 -c 1 -i 392 -a 1 r -t 1.48065 -s 3 -d 5 -p cbr -e 210 -c 1 -i 331 -a 1 r -t 1.48086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 376 -a 1 + -t 1.48086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 376 -a 1 r -t 1.48105 -s 2 -d 3 -p cbr -e 210 -c 1 -i 352 -a 1 + -t 1.48105 -s 3 -d 5 -p cbr -e 210 -c 1 -i 352 -a 1 - -t 1.48105 -s 3 -d 5 -p cbr -e 210 -c 1 -i 352 -a 1 h -t 1.48105 -s 3 -d 5 -p cbr -e 210 -c 1 -i 352 -a 1 - -t 1.48145 -s 2 -d 3 -p cbr -e 210 -c 1 -i 370 -a 1 h -t 1.48145 -s 2 -d 3 -p cbr -e 210 -c 1 -i 370 -a 1 + -t 1.48375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 393 -a 1 - -t 1.48375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 393 -a 1 h -t 1.48375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 393 -a 1 r -t 1.48401 -s 3 -d 5 -p cbr -e 210 -c 1 -i 332 -a 1 r -t 1.48441 -s 2 -d 3 -p cbr -e 210 -c 1 -i 353 -a 1 + -t 1.48441 -s 3 -d 5 -p cbr -e 210 -c 1 -i 353 -a 1 - -t 1.48441 -s 3 -d 5 -p cbr -e 210 -c 1 -i 353 -a 1 h -t 1.48441 -s 3 -d 5 -p cbr -e 210 -c 1 -i 353 -a 1 r -t 1.48461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 377 -a 1 + -t 1.48461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 377 -a 1 - -t 1.48481 -s 2 -d 3 -p cbr -e 210 -c 1 -i 371 -a 1 h -t 1.48481 -s 2 -d 3 -p cbr -e 210 -c 1 -i 371 -a 1 r -t 1.48737 -s 3 -d 5 -p cbr -e 210 -c 1 -i 333 -a 1 + -t 1.4875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 394 -a 1 - -t 1.4875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 394 -a 1 h -t 1.4875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 394 -a 1 r -t 1.48777 -s 2 -d 3 -p cbr -e 210 -c 1 -i 354 -a 1 + -t 1.48777 -s 3 -d 5 -p cbr -e 210 -c 1 -i 354 -a 1 - -t 1.48777 -s 3 -d 5 -p cbr -e 210 -c 1 -i 354 -a 1 h -t 1.48777 -s 3 -d 5 -p cbr -e 210 -c 1 -i 354 -a 1 - -t 1.48817 -s 2 -d 3 -p cbr -e 210 -c 1 -i 372 -a 1 h -t 1.48817 -s 2 -d 3 -p cbr -e 210 -c 1 -i 372 -a 1 r -t 1.48836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 378 -a 1 + -t 1.48836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 378 -a 1 r -t 1.48971 -s 3 -d 2 -p ack -e 48 -c 0 -i 364 -a 0 -S 0 -y {5 5} + -t 1.48971 -s 2 -d 0 -p ack -e 48 -c 0 -i 364 -a 0 -S 0 -y {5 5} - -t 1.48971 -s 2 -d 0 -p ack -e 48 -c 0 -i 364 -a 0 -S 0 -f 0 -m 1 -y {5 5} h -t 1.48971 -s 2 -d 0 -p ack -e 48 -c 0 -i 364 -a 0 -S 0 -y {-1 -1} r -t 1.49073 -s 3 -d 5 -p cbr -e 210 -c 1 -i 334 -a 1 r -t 1.49113 -s 2 -d 3 -p cbr -e 210 -c 1 -i 356 -a 1 + -t 1.49113 -s 3 -d 5 -p cbr -e 210 -c 1 -i 356 -a 1 - -t 1.49113 -s 3 -d 5 -p cbr -e 210 -c 1 -i 356 -a 1 h -t 1.49113 -s 3 -d 5 -p cbr -e 210 -c 1 -i 356 -a 1 + -t 1.49125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 395 -a 1 - -t 1.49125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 395 -a 1 h -t 1.49125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 395 -a 1 - -t 1.49153 -s 2 -d 3 -p cbr -e 210 -c 1 -i 374 -a 1 h -t 1.49153 -s 2 -d 3 -p cbr -e 210 -c 1 -i 374 -a 1 r -t 1.49211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 379 -a 1 + -t 1.49211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 379 -a 1 r -t 1.49409 -s 3 -d 5 -p cbr -e 210 -c 1 -i 337 -a 1 r -t 1.49449 -s 2 -d 3 -p cbr -e 210 -c 1 -i 357 -a 1 + -t 1.49449 -s 3 -d 5 -p cbr -e 210 -c 1 -i 357 -a 1 - -t 1.49449 -s 3 -d 5 -p cbr -e 210 -c 1 -i 357 -a 1 h -t 1.49449 -s 3 -d 5 -p cbr -e 210 -c 1 -i 357 -a 1 - -t 1.49489 -s 2 -d 3 -p cbr -e 210 -c 1 -i 375 -a 1 h -t 1.49489 -s 2 -d 3 -p cbr -e 210 -c 1 -i 375 -a 1 + -t 1.495 -s 1 -d 2 -p cbr -e 210 -c 1 -i 396 -a 1 - -t 1.495 -s 1 -d 2 -p cbr -e 210 -c 1 -i 396 -a 1 h -t 1.495 -s 1 -d 2 -p cbr -e 210 -c 1 -i 396 -a 1 r -t 1.49586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 380 -a 1 + -t 1.49586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 380 -a 1 r -t 1.49745 -s 3 -d 5 -p cbr -e 210 -c 1 -i 341 -a 1 r -t 1.49785 -s 2 -d 3 -p cbr -e 210 -c 1 -i 358 -a 1 + -t 1.49785 -s 3 -d 5 -p cbr -e 210 -c 1 -i 358 -a 1 - -t 1.49785 -s 3 -d 5 -p cbr -e 210 -c 1 -i 358 -a 1 h -t 1.49785 -s 3 -d 5 -p cbr -e 210 -c 1 -i 358 -a 1 - -t 1.49825 -s 2 -d 3 -p cbr -e 210 -c 1 -i 376 -a 1 h -t 1.49825 -s 2 -d 3 -p cbr -e 210 -c 1 -i 376 -a 1 + -t 1.49875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 397 -a 1 - -t 1.49875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 397 -a 1 h -t 1.49875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 397 -a 1 r -t 1.49961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 381 -a 1 + -t 1.49961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 381 -a 1 r -t 1.50081 -s 3 -d 5 -p cbr -e 210 -c 1 -i 342 -a 1 r -t 1.50121 -s 2 -d 3 -p cbr -e 210 -c 1 -i 359 -a 1 + -t 1.50121 -s 3 -d 5 -p cbr -e 210 -c 1 -i 359 -a 1 - -t 1.50121 -s 3 -d 5 -p cbr -e 210 -c 1 -i 359 -a 1 h -t 1.50121 -s 3 -d 5 -p cbr -e 210 -c 1 -i 359 -a 1 - -t 1.50161 -s 2 -d 3 -p cbr -e 210 -c 1 -i 377 -a 1 h -t 1.50161 -s 2 -d 3 -p cbr -e 210 -c 1 -i 377 -a 1 + -t 1.5025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 398 -a 1 - -t 1.5025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 398 -a 1 h -t 1.5025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 398 -a 1 r -t 1.50336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 382 -a 1 + -t 1.50336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 382 -a 1 r -t 1.50417 -s 3 -d 5 -p cbr -e 210 -c 1 -i 343 -a 1 r -t 1.50457 -s 2 -d 3 -p cbr -e 210 -c 1 -i 360 -a 1 + -t 1.50457 -s 3 -d 5 -p cbr -e 210 -c 1 -i 360 -a 1 - -t 1.50457 -s 3 -d 5 -p cbr -e 210 -c 1 -i 360 -a 1 h -t 1.50457 -s 3 -d 5 -p cbr -e 210 -c 1 -i 360 -a 1 - -t 1.50497 -s 2 -d 3 -p cbr -e 210 -c 1 -i 378 -a 1 h -t 1.50497 -s 2 -d 3 -p cbr -e 210 -c 1 -i 378 -a 1 + -t 1.50625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 399 -a 1 - -t 1.50625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 399 -a 1 h -t 1.50625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 399 -a 1 r -t 1.50711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 383 -a 1 + -t 1.50711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 383 -a 1 r -t 1.50753 -s 3 -d 5 -p cbr -e 210 -c 1 -i 344 -a 1 r -t 1.50793 -s 2 -d 3 -p cbr -e 210 -c 1 -i 361 -a 1 + -t 1.50793 -s 3 -d 5 -p cbr -e 210 -c 1 -i 361 -a 1 - -t 1.50793 -s 3 -d 5 -p cbr -e 210 -c 1 -i 361 -a 1 h -t 1.50793 -s 3 -d 5 -p cbr -e 210 -c 1 -i 361 -a 1 - -t 1.50833 -s 2 -d 3 -p cbr -e 210 -c 1 -i 379 -a 1 h -t 1.50833 -s 2 -d 3 -p cbr -e 210 -c 1 -i 379 -a 1 + -t 1.51 -s 1 -d 2 -p cbr -e 210 -c 1 -i 400 -a 1 - -t 1.51 -s 1 -d 2 -p cbr -e 210 -c 1 -i 400 -a 1 h -t 1.51 -s 1 -d 2 -p cbr -e 210 -c 1 -i 400 -a 1 r -t 1.51086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 384 -a 1 + -t 1.51086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 384 -a 1 r -t 1.51089 -s 3 -d 5 -p cbr -e 210 -c 1 -i 345 -a 1 r -t 1.51103 -s 2 -d 0 -p ack -e 48 -c 0 -i 355 -a 0 -S 0 -y {5 5} r -t 1.51129 -s 2 -d 3 -p cbr -e 210 -c 1 -i 362 -a 1 + -t 1.51129 -s 3 -d 5 -p cbr -e 210 -c 1 -i 362 -a 1 - -t 1.51129 -s 3 -d 5 -p cbr -e 210 -c 1 -i 362 -a 1 h -t 1.51129 -s 3 -d 5 -p cbr -e 210 -c 1 -i 362 -a 1 r -t 1.51139 -s 4 -d 3 -p ack -e 56 -c 0 -i 385 -a 0 -S 0 -y {5 5} + -t 1.51139 -s 3 -d 2 -p ack -e 56 -c 0 -i 385 -a 0 -S 0 -y {5 5} - -t 1.51139 -s 3 -d 2 -p ack -e 56 -c 0 -i 385 -a 0 -S 0 -y {5 5} h -t 1.51139 -s 3 -d 2 -p ack -e 56 -c 0 -i 385 -a 0 -S 0 -y {-1 -1} - -t 1.51169 -s 2 -d 3 -p cbr -e 210 -c 1 -i 380 -a 1 h -t 1.51169 -s 2 -d 3 -p cbr -e 210 -c 1 -i 380 -a 1 + -t 1.51375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 401 -a 1 - -t 1.51375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 401 -a 1 h -t 1.51375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 401 -a 1 r -t 1.51425 -s 3 -d 5 -p cbr -e 210 -c 1 -i 346 -a 1 r -t 1.51461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 386 -a 1 + -t 1.51461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 386 -a 1 r -t 1.51465 -s 2 -d 3 -p cbr -e 210 -c 1 -i 363 -a 1 + -t 1.51465 -s 3 -d 5 -p cbr -e 210 -c 1 -i 363 -a 1 - -t 1.51465 -s 3 -d 5 -p cbr -e 210 -c 1 -i 363 -a 1 h -t 1.51465 -s 3 -d 5 -p cbr -e 210 -c 1 -i 363 -a 1 - -t 1.51505 -s 2 -d 3 -p cbr -e 210 -c 1 -i 381 -a 1 h -t 1.51505 -s 2 -d 3 -p cbr -e 210 -c 1 -i 381 -a 1 + -t 1.5175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 402 -a 1 - -t 1.5175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 402 -a 1 h -t 1.5175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 402 -a 1 r -t 1.51761 -s 3 -d 5 -p cbr -e 210 -c 1 -i 347 -a 1 r -t 1.51801 -s 2 -d 3 -p cbr -e 210 -c 1 -i 365 -a 1 + -t 1.51801 -s 3 -d 5 -p cbr -e 210 -c 1 -i 365 -a 1 - -t 1.51801 -s 3 -d 5 -p cbr -e 210 -c 1 -i 365 -a 1 h -t 1.51801 -s 3 -d 5 -p cbr -e 210 -c 1 -i 365 -a 1 r -t 1.51836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 387 -a 1 + -t 1.51836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 387 -a 1 - -t 1.51841 -s 2 -d 3 -p cbr -e 210 -c 1 -i 382 -a 1 h -t 1.51841 -s 2 -d 3 -p cbr -e 210 -c 1 -i 382 -a 1 r -t 1.51915 -s 3 -d 2 -p ack -e 48 -c 0 -i 373 -a 0 -S 0 -y {5 5} + -t 1.51915 -s 2 -d 0 -p ack -e 48 -c 0 -i 373 -a 0 -S 0 -y {5 5} - -t 1.51915 -s 2 -d 0 -p ack -e 48 -c 0 -i 373 -a 0 -S 0 -f 0 -m 1 -y {5 5} h -t 1.51915 -s 2 -d 0 -p ack -e 48 -c 0 -i 373 -a 0 -S 0 -y {-1 -1} r -t 1.52097 -s 3 -d 5 -p cbr -e 210 -c 1 -i 348 -a 1 + -t 1.52125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 403 -a 1 - -t 1.52125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 403 -a 1 h -t 1.52125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 403 -a 1 r -t 1.52137 -s 2 -d 3 -p cbr -e 210 -c 1 -i 366 -a 1 + -t 1.52137 -s 3 -d 5 -p cbr -e 210 -c 1 -i 366 -a 1 - -t 1.52137 -s 3 -d 5 -p cbr -e 210 -c 1 -i 366 -a 1 h -t 1.52137 -s 3 -d 5 -p cbr -e 210 -c 1 -i 366 -a 1 - -t 1.52177 -s 2 -d 3 -p cbr -e 210 -c 1 -i 383 -a 1 h -t 1.52177 -s 2 -d 3 -p cbr -e 210 -c 1 -i 383 -a 1 r -t 1.52211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 388 -a 1 + -t 1.52211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 388 -a 1 r -t 1.52433 -s 3 -d 5 -p cbr -e 210 -c 1 -i 349 -a 1 r -t 1.52473 -s 2 -d 3 -p cbr -e 210 -c 1 -i 367 -a 1 + -t 1.52473 -s 3 -d 5 -p cbr -e 210 -c 1 -i 367 -a 1 - -t 1.52473 -s 3 -d 5 -p cbr -e 210 -c 1 -i 367 -a 1 h -t 1.52473 -s 3 -d 5 -p cbr -e 210 -c 1 -i 367 -a 1 + -t 1.525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 404 -a 1 - -t 1.525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 404 -a 1 h -t 1.525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 404 -a 1 - -t 1.52513 -s 2 -d 3 -p cbr -e 210 -c 1 -i 384 -a 1 h -t 1.52513 -s 2 -d 3 -p cbr -e 210 -c 1 -i 384 -a 1 r -t 1.52586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 389 -a 1 + -t 1.52586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 389 -a 1 r -t 1.52739 -s 4 -d 3 -p ack -e 56 -c 0 -i 391 -a 0 -S 0 -y {5 5} + -t 1.52739 -s 3 -d 2 -p ack -e 56 -c 0 -i 391 -a 0 -S 0 -y {5 5} - -t 1.52739 -s 3 -d 2 -p ack -e 56 -c 0 -i 391 -a 0 -S 0 -y {5 5} h -t 1.52739 -s 3 -d 2 -p ack -e 56 -c 0 -i 391 -a 0 -S 0 -y {-1 -1} r -t 1.52769 -s 3 -d 5 -p cbr -e 210 -c 1 -i 350 -a 1 r -t 1.52809 -s 2 -d 3 -p cbr -e 210 -c 1 -i 368 -a 1 + -t 1.52809 -s 3 -d 5 -p cbr -e 210 -c 1 -i 368 -a 1 - -t 1.52809 -s 3 -d 5 -p cbr -e 210 -c 1 -i 368 -a 1 h -t 1.52809 -s 3 -d 5 -p cbr -e 210 -c 1 -i 368 -a 1 - -t 1.52849 -s 2 -d 3 -p cbr -e 210 -c 1 -i 386 -a 1 h -t 1.52849 -s 2 -d 3 -p cbr -e 210 -c 1 -i 386 -a 1 + -t 1.52875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 405 -a 1 - -t 1.52875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 405 -a 1 h -t 1.52875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 405 -a 1 r -t 1.52961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 390 -a 1 + -t 1.52961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 390 -a 1 r -t 1.53105 -s 3 -d 5 -p cbr -e 210 -c 1 -i 351 -a 1 r -t 1.53145 -s 2 -d 3 -p cbr -e 210 -c 1 -i 369 -a 1 + -t 1.53145 -s 3 -d 5 -p cbr -e 210 -c 1 -i 369 -a 1 - -t 1.53145 -s 3 -d 5 -p cbr -e 210 -c 1 -i 369 -a 1 h -t 1.53145 -s 3 -d 5 -p cbr -e 210 -c 1 -i 369 -a 1 - -t 1.53185 -s 2 -d 3 -p cbr -e 210 -c 1 -i 387 -a 1 h -t 1.53185 -s 2 -d 3 -p cbr -e 210 -c 1 -i 387 -a 1 + -t 1.5325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 406 -a 1 - -t 1.5325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 406 -a 1 h -t 1.5325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 406 -a 1 r -t 1.53336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 392 -a 1 + -t 1.53336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 392 -a 1 r -t 1.53441 -s 3 -d 5 -p cbr -e 210 -c 1 -i 352 -a 1 r -t 1.53481 -s 2 -d 3 -p cbr -e 210 -c 1 -i 370 -a 1 + -t 1.53481 -s 3 -d 5 -p cbr -e 210 -c 1 -i 370 -a 1 - -t 1.53481 -s 3 -d 5 -p cbr -e 210 -c 1 -i 370 -a 1 h -t 1.53481 -s 3 -d 5 -p cbr -e 210 -c 1 -i 370 -a 1 - -t 1.53521 -s 2 -d 3 -p cbr -e 210 -c 1 -i 388 -a 1 h -t 1.53521 -s 2 -d 3 -p cbr -e 210 -c 1 -i 388 -a 1 + -t 1.53625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 407 -a 1 - -t 1.53625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 407 -a 1 h -t 1.53625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 407 -a 1 r -t 1.53711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 393 -a 1 + -t 1.53711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 393 -a 1 r -t 1.53777 -s 3 -d 5 -p cbr -e 210 -c 1 -i 353 -a 1 r -t 1.53817 -s 2 -d 3 -p cbr -e 210 -c 1 -i 371 -a 1 + -t 1.53817 -s 3 -d 5 -p cbr -e 210 -c 1 -i 371 -a 1 - -t 1.53817 -s 3 -d 5 -p cbr -e 210 -c 1 -i 371 -a 1 h -t 1.53817 -s 3 -d 5 -p cbr -e 210 -c 1 -i 371 -a 1 - -t 1.53857 -s 2 -d 3 -p cbr -e 210 -c 1 -i 389 -a 1 h -t 1.53857 -s 2 -d 3 -p cbr -e 210 -c 1 -i 389 -a 1 + -t 1.54 -s 1 -d 2 -p cbr -e 210 -c 1 -i 408 -a 1 - -t 1.54 -s 1 -d 2 -p cbr -e 210 -c 1 -i 408 -a 1 h -t 1.54 -s 1 -d 2 -p cbr -e 210 -c 1 -i 408 -a 1 r -t 1.54047 -s 2 -d 0 -p ack -e 48 -c 0 -i 364 -a 0 -S 0 -y {5 5} r -t 1.54086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 394 -a 1 + -t 1.54086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 394 -a 1 r -t 1.54113 -s 3 -d 5 -p cbr -e 210 -c 1 -i 354 -a 1 r -t 1.54153 -s 2 -d 3 -p cbr -e 210 -c 1 -i 372 -a 1 + -t 1.54153 -s 3 -d 5 -p cbr -e 210 -c 1 -i 372 -a 1 - -t 1.54153 -s 3 -d 5 -p cbr -e 210 -c 1 -i 372 -a 1 h -t 1.54153 -s 3 -d 5 -p cbr -e 210 -c 1 -i 372 -a 1 - -t 1.54193 -s 2 -d 3 -p cbr -e 210 -c 1 -i 390 -a 1 h -t 1.54193 -s 2 -d 3 -p cbr -e 210 -c 1 -i 390 -a 1 + -t 1.54375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 409 -a 1 - -t 1.54375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 409 -a 1 h -t 1.54375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 409 -a 1 r -t 1.54449 -s 3 -d 5 -p cbr -e 210 -c 1 -i 356 -a 1 r -t 1.54461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 395 -a 1 + -t 1.54461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 395 -a 1 r -t 1.54489 -s 2 -d 3 -p cbr -e 210 -c 1 -i 374 -a 1 + -t 1.54489 -s 3 -d 5 -p cbr -e 210 -c 1 -i 374 -a 1 - -t 1.54489 -s 3 -d 5 -p cbr -e 210 -c 1 -i 374 -a 1 h -t 1.54489 -s 3 -d 5 -p cbr -e 210 -c 1 -i 374 -a 1 - -t 1.54529 -s 2 -d 3 -p cbr -e 210 -c 1 -i 392 -a 1 h -t 1.54529 -s 2 -d 3 -p cbr -e 210 -c 1 -i 392 -a 1 + -t 1.5475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 410 -a 1 - -t 1.5475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 410 -a 1 h -t 1.5475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 410 -a 1 r -t 1.54785 -s 3 -d 5 -p cbr -e 210 -c 1 -i 357 -a 1 r -t 1.54825 -s 2 -d 3 -p cbr -e 210 -c 1 -i 375 -a 1 + -t 1.54825 -s 3 -d 5 -p cbr -e 210 -c 1 -i 375 -a 1 - -t 1.54825 -s 3 -d 5 -p cbr -e 210 -c 1 -i 375 -a 1 h -t 1.54825 -s 3 -d 5 -p cbr -e 210 -c 1 -i 375 -a 1 r -t 1.54836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 396 -a 1 + -t 1.54836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 396 -a 1 - -t 1.54865 -s 2 -d 3 -p cbr -e 210 -c 1 -i 393 -a 1 h -t 1.54865 -s 2 -d 3 -p cbr -e 210 -c 1 -i 393 -a 1 r -t 1.55121 -s 3 -d 5 -p cbr -e 210 -c 1 -i 358 -a 1 + -t 1.55125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 411 -a 1 - -t 1.55125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 411 -a 1 h -t 1.55125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 411 -a 1 r -t 1.55161 -s 2 -d 3 -p cbr -e 210 -c 1 -i 376 -a 1 + -t 1.55161 -s 3 -d 5 -p cbr -e 210 -c 1 -i 376 -a 1 - -t 1.55161 -s 3 -d 5 -p cbr -e 210 -c 1 -i 376 -a 1 h -t 1.55161 -s 3 -d 5 -p cbr -e 210 -c 1 -i 376 -a 1 - -t 1.55201 -s 2 -d 3 -p cbr -e 210 -c 1 -i 394 -a 1 h -t 1.55201 -s 2 -d 3 -p cbr -e 210 -c 1 -i 394 -a 1 r -t 1.55211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 397 -a 1 + -t 1.55211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 397 -a 1 r -t 1.55457 -s 3 -d 5 -p cbr -e 210 -c 1 -i 359 -a 1 r -t 1.55497 -s 2 -d 3 -p cbr -e 210 -c 1 -i 377 -a 1 + -t 1.55497 -s 3 -d 5 -p cbr -e 210 -c 1 -i 377 -a 1 - -t 1.55497 -s 3 -d 5 -p cbr -e 210 -c 1 -i 377 -a 1 h -t 1.55497 -s 3 -d 5 -p cbr -e 210 -c 1 -i 377 -a 1 + -t 1.555 -s 1 -d 2 -p cbr -e 210 -c 1 -i 412 -a 1 - -t 1.555 -s 1 -d 2 -p cbr -e 210 -c 1 -i 412 -a 1 h -t 1.555 -s 1 -d 2 -p cbr -e 210 -c 1 -i 412 -a 1 - -t 1.55537 -s 2 -d 3 -p cbr -e 210 -c 1 -i 395 -a 1 h -t 1.55537 -s 2 -d 3 -p cbr -e 210 -c 1 -i 395 -a 1 r -t 1.55586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 398 -a 1 + -t 1.55586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 398 -a 1 r -t 1.55793 -s 3 -d 5 -p cbr -e 210 -c 1 -i 360 -a 1 r -t 1.55833 -s 2 -d 3 -p cbr -e 210 -c 1 -i 378 -a 1 + -t 1.55833 -s 3 -d 5 -p cbr -e 210 -c 1 -i 378 -a 1 - -t 1.55833 -s 3 -d 5 -p cbr -e 210 -c 1 -i 378 -a 1 h -t 1.55833 -s 3 -d 5 -p cbr -e 210 -c 1 -i 378 -a 1 - -t 1.55873 -s 2 -d 3 -p cbr -e 210 -c 1 -i 396 -a 1 h -t 1.55873 -s 2 -d 3 -p cbr -e 210 -c 1 -i 396 -a 1 + -t 1.55875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 413 -a 1 - -t 1.55875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 413 -a 1 h -t 1.55875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 413 -a 1 r -t 1.55961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 399 -a 1 + -t 1.55961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 399 -a 1 r -t 1.56129 -s 3 -d 5 -p cbr -e 210 -c 1 -i 361 -a 1 r -t 1.56169 -s 2 -d 3 -p cbr -e 210 -c 1 -i 379 -a 1 + -t 1.56169 -s 3 -d 5 -p cbr -e 210 -c 1 -i 379 -a 1 - -t 1.56169 -s 3 -d 5 -p cbr -e 210 -c 1 -i 379 -a 1 h -t 1.56169 -s 3 -d 5 -p cbr -e 210 -c 1 -i 379 -a 1 - -t 1.56209 -s 2 -d 3 -p cbr -e 210 -c 1 -i 397 -a 1 h -t 1.56209 -s 2 -d 3 -p cbr -e 210 -c 1 -i 397 -a 1 r -t 1.56228 -s 3 -d 2 -p ack -e 56 -c 0 -i 385 -a 0 -S 0 -y {5 5} + -t 1.56228 -s 2 -d 0 -p ack -e 56 -c 0 -i 385 -a 0 -S 0 -y {5 5} - -t 1.56228 -s 2 -d 0 -p ack -e 56 -c 0 -i 385 -a 0 -S 0 -f 0 -m 1 -y {5 5} h -t 1.56228 -s 2 -d 0 -p ack -e 56 -c 0 -i 385 -a 0 -S 0 -y {-1 -1} + -t 1.5625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 414 -a 1 - -t 1.5625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 414 -a 1 h -t 1.5625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 414 -a 1 r -t 1.56336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 400 -a 1 + -t 1.56336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 400 -a 1 r -t 1.56465 -s 3 -d 5 -p cbr -e 210 -c 1 -i 362 -a 1 r -t 1.56505 -s 2 -d 3 -p cbr -e 210 -c 1 -i 380 -a 1 + -t 1.56505 -s 3 -d 5 -p cbr -e 210 -c 1 -i 380 -a 1 - -t 1.56505 -s 3 -d 5 -p cbr -e 210 -c 1 -i 380 -a 1 h -t 1.56505 -s 3 -d 5 -p cbr -e 210 -c 1 -i 380 -a 1 - -t 1.56545 -s 2 -d 3 -p cbr -e 210 -c 1 -i 398 -a 1 h -t 1.56545 -s 2 -d 3 -p cbr -e 210 -c 1 -i 398 -a 1 + -t 1.56625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 415 -a 1 - -t 1.56625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 415 -a 1 h -t 1.56625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 415 -a 1 r -t 1.56711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 401 -a 1 + -t 1.56711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 401 -a 1 r -t 1.56801 -s 3 -d 5 -p cbr -e 210 -c 1 -i 363 -a 1 r -t 1.56841 -s 2 -d 3 -p cbr -e 210 -c 1 -i 381 -a 1 + -t 1.56841 -s 3 -d 5 -p cbr -e 210 -c 1 -i 381 -a 1 - -t 1.56841 -s 3 -d 5 -p cbr -e 210 -c 1 -i 381 -a 1 h -t 1.56841 -s 3 -d 5 -p cbr -e 210 -c 1 -i 381 -a 1 - -t 1.56881 -s 2 -d 3 -p cbr -e 210 -c 1 -i 399 -a 1 h -t 1.56881 -s 2 -d 3 -p cbr -e 210 -c 1 -i 399 -a 1 r -t 1.56991 -s 2 -d 0 -p ack -e 48 -c 0 -i 373 -a 0 -S 0 -y {5 5} f -t 1.56991400000000403 -s 0 -d 4 -n cwnd_ -a tcp -v 3.000000 -o 7.000000 -T v + -t 1.56991 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 416 -a 0 -S 0 -f 1 -m 2 -y {6 6} - -t 1.56991 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 416 -a 0 -S 0 -f 1 -y {6 6} h -t 1.56991 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 416 -a 0 -S 0 -f 1 -y {-1 -1} + -t 1.57 -s 1 -d 2 -p cbr -e 210 -c 1 -i 417 -a 1 - -t 1.57 -s 1 -d 2 -p cbr -e 210 -c 1 -i 417 -a 1 h -t 1.57 -s 1 -d 2 -p cbr -e 210 -c 1 -i 417 -a 1 r -t 1.57086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 402 -a 1 + -t 1.57086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 402 -a 1 r -t 1.57137 -s 3 -d 5 -p cbr -e 210 -c 1 -i 365 -a 1 r -t 1.57177 -s 2 -d 3 -p cbr -e 210 -c 1 -i 382 -a 1 + -t 1.57177 -s 3 -d 5 -p cbr -e 210 -c 1 -i 382 -a 1 - -t 1.57177 -s 3 -d 5 -p cbr -e 210 -c 1 -i 382 -a 1 h -t 1.57177 -s 3 -d 5 -p cbr -e 210 -c 1 -i 382 -a 1 - -t 1.57217 -s 2 -d 3 -p cbr -e 210 -c 1 -i 400 -a 1 h -t 1.57217 -s 2 -d 3 -p cbr -e 210 -c 1 -i 400 -a 1 + -t 1.57375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 418 -a 1 - -t 1.57375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 418 -a 1 h -t 1.57375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 418 -a 1 r -t 1.57461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 403 -a 1 + -t 1.57461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 403 -a 1 r -t 1.57473 -s 3 -d 5 -p cbr -e 210 -c 1 -i 366 -a 1 r -t 1.57513 -s 2 -d 3 -p cbr -e 210 -c 1 -i 383 -a 1 + -t 1.57513 -s 3 -d 5 -p cbr -e 210 -c 1 -i 383 -a 1 - -t 1.57513 -s 3 -d 5 -p cbr -e 210 -c 1 -i 383 -a 1 h -t 1.57513 -s 3 -d 5 -p cbr -e 210 -c 1 -i 383 -a 1 - -t 1.57553 -s 2 -d 3 -p cbr -e 210 -c 1 -i 401 -a 1 h -t 1.57553 -s 2 -d 3 -p cbr -e 210 -c 1 -i 401 -a 1 + -t 1.5775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 419 -a 1 - -t 1.5775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 419 -a 1 h -t 1.5775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 419 -a 1 r -t 1.57809 -s 3 -d 5 -p cbr -e 210 -c 1 -i 367 -a 1 r -t 1.57828 -s 3 -d 2 -p ack -e 56 -c 0 -i 391 -a 0 -S 0 -y {5 5} + -t 1.57828 -s 2 -d 0 -p ack -e 56 -c 0 -i 391 -a 0 -S 0 -y {5 5} - -t 1.57828 -s 2 -d 0 -p ack -e 56 -c 0 -i 391 -a 0 -S 0 -f 0 -m 1 -y {5 5} h -t 1.57828 -s 2 -d 0 -p ack -e 56 -c 0 -i 391 -a 0 -S 0 -y {-1 -1} r -t 1.57836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 404 -a 1 + -t 1.57836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 404 -a 1 r -t 1.57849 -s 2 -d 3 -p cbr -e 210 -c 1 -i 384 -a 1 + -t 1.57849 -s 3 -d 5 -p cbr -e 210 -c 1 -i 384 -a 1 - -t 1.57849 -s 3 -d 5 -p cbr -e 210 -c 1 -i 384 -a 1 h -t 1.57849 -s 3 -d 5 -p cbr -e 210 -c 1 -i 384 -a 1 - -t 1.57889 -s 2 -d 3 -p cbr -e 210 -c 1 -i 402 -a 1 h -t 1.57889 -s 2 -d 3 -p cbr -e 210 -c 1 -i 402 -a 1 v -t 1.5800000000000001 sim_annotation 1.5800000000000001 23 2 Ack_12s : 2 acks are coming + -t 1.58125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 420 -a 1 - -t 1.58125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 420 -a 1 h -t 1.58125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 420 -a 1 r -t 1.58145 -s 3 -d 5 -p cbr -e 210 -c 1 -i 368 -a 1 r -t 1.58185 -s 2 -d 3 -p cbr -e 210 -c 1 -i 386 -a 1 + -t 1.58185 -s 3 -d 5 -p cbr -e 210 -c 1 -i 386 -a 1 - -t 1.58185 -s 3 -d 5 -p cbr -e 210 -c 1 -i 386 -a 1 h -t 1.58185 -s 3 -d 5 -p cbr -e 210 -c 1 -i 386 -a 1 r -t 1.58211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 405 -a 1 + -t 1.58211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 405 -a 1 - -t 1.58225 -s 2 -d 3 -p cbr -e 210 -c 1 -i 403 -a 1 h -t 1.58225 -s 2 -d 3 -p cbr -e 210 -c 1 -i 403 -a 1 r -t 1.58481 -s 3 -d 5 -p cbr -e 210 -c 1 -i 369 -a 1 + -t 1.585 -s 1 -d 2 -p cbr -e 210 -c 1 -i 421 -a 1 - -t 1.585 -s 1 -d 2 -p cbr -e 210 -c 1 -i 421 -a 1 h -t 1.585 -s 1 -d 2 -p cbr -e 210 -c 1 -i 421 -a 1 r -t 1.58521 -s 2 -d 3 -p cbr -e 210 -c 1 -i 387 -a 1 + -t 1.58521 -s 3 -d 5 -p cbr -e 210 -c 1 -i 387 -a 1 - -t 1.58521 -s 3 -d 5 -p cbr -e 210 -c 1 -i 387 -a 1 h -t 1.58521 -s 3 -d 5 -p cbr -e 210 -c 1 -i 387 -a 1 - -t 1.58561 -s 2 -d 3 -p cbr -e 210 -c 1 -i 404 -a 1 h -t 1.58561 -s 2 -d 3 -p cbr -e 210 -c 1 -i 404 -a 1 r -t 1.58586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 406 -a 1 + -t 1.58586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 406 -a 1 r -t 1.58817 -s 3 -d 5 -p cbr -e 210 -c 1 -i 370 -a 1 r -t 1.58857 -s 2 -d 3 -p cbr -e 210 -c 1 -i 388 -a 1 + -t 1.58857 -s 3 -d 5 -p cbr -e 210 -c 1 -i 388 -a 1 - -t 1.58857 -s 3 -d 5 -p cbr -e 210 -c 1 -i 388 -a 1 h -t 1.58857 -s 3 -d 5 -p cbr -e 210 -c 1 -i 388 -a 1 + -t 1.58875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 422 -a 1 - -t 1.58875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 422 -a 1 h -t 1.58875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 422 -a 1 - -t 1.58897 -s 2 -d 3 -p cbr -e 210 -c 1 -i 405 -a 1 h -t 1.58897 -s 2 -d 3 -p cbr -e 210 -c 1 -i 405 -a 1 r -t 1.58961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 407 -a 1 + -t 1.58961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 407 -a 1 r -t 1.59153 -s 3 -d 5 -p cbr -e 210 -c 1 -i 371 -a 1 r -t 1.59193 -s 2 -d 3 -p cbr -e 210 -c 1 -i 389 -a 1 + -t 1.59193 -s 3 -d 5 -p cbr -e 210 -c 1 -i 389 -a 1 - -t 1.59193 -s 3 -d 5 -p cbr -e 210 -c 1 -i 389 -a 1 h -t 1.59193 -s 3 -d 5 -p cbr -e 210 -c 1 -i 389 -a 1 - -t 1.59233 -s 2 -d 3 -p cbr -e 210 -c 1 -i 406 -a 1 h -t 1.59233 -s 2 -d 3 -p cbr -e 210 -c 1 -i 406 -a 1 + -t 1.5925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 423 -a 1 - -t 1.5925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 423 -a 1 h -t 1.5925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 423 -a 1 r -t 1.59336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 408 -a 1 + -t 1.59336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 408 -a 1 r -t 1.59489 -s 3 -d 5 -p cbr -e 210 -c 1 -i 372 -a 1 r -t 1.59529 -s 2 -d 3 -p cbr -e 210 -c 1 -i 390 -a 1 + -t 1.59529 -s 3 -d 5 -p cbr -e 210 -c 1 -i 390 -a 1 - -t 1.59529 -s 3 -d 5 -p cbr -e 210 -c 1 -i 390 -a 1 h -t 1.59529 -s 3 -d 5 -p cbr -e 210 -c 1 -i 390 -a 1 - -t 1.59569 -s 2 -d 3 -p cbr -e 210 -c 1 -i 407 -a 1 h -t 1.59569 -s 2 -d 3 -p cbr -e 210 -c 1 -i 407 -a 1 + -t 1.59625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 424 -a 1 - -t 1.59625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 424 -a 1 h -t 1.59625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 424 -a 1 r -t 1.59711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 409 -a 1 + -t 1.59711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 409 -a 1 r -t 1.59825 -s 3 -d 5 -p cbr -e 210 -c 1 -i 374 -a 1 r -t 1.59865 -s 2 -d 3 -p cbr -e 210 -c 1 -i 392 -a 1 + -t 1.59865 -s 3 -d 5 -p cbr -e 210 -c 1 -i 392 -a 1 - -t 1.59865 -s 3 -d 5 -p cbr -e 210 -c 1 -i 392 -a 1 h -t 1.59865 -s 3 -d 5 -p cbr -e 210 -c 1 -i 392 -a 1 - -t 1.59905 -s 2 -d 3 -p cbr -e 210 -c 1 -i 408 -a 1 h -t 1.59905 -s 2 -d 3 -p cbr -e 210 -c 1 -i 408 -a 1 + -t 1.6 -s 1 -d 2 -p cbr -e 210 -c 1 -i 425 -a 1 - -t 1.6 -s 1 -d 2 -p cbr -e 210 -c 1 -i 425 -a 1 h -t 1.6 -s 1 -d 2 -p cbr -e 210 -c 1 -i 425 -a 1 r -t 1.60086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 410 -a 1 + -t 1.60086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 410 -a 1 r -t 1.60161 -s 3 -d 5 -p cbr -e 210 -c 1 -i 375 -a 1 r -t 1.60201 -s 2 -d 3 -p cbr -e 210 -c 1 -i 393 -a 1 + -t 1.60201 -s 3 -d 5 -p cbr -e 210 -c 1 -i 393 -a 1 - -t 1.60201 -s 3 -d 5 -p cbr -e 210 -c 1 -i 393 -a 1 h -t 1.60201 -s 3 -d 5 -p cbr -e 210 -c 1 -i 393 -a 1 - -t 1.60241 -s 2 -d 3 -p cbr -e 210 -c 1 -i 409 -a 1 h -t 1.60241 -s 2 -d 3 -p cbr -e 210 -c 1 -i 409 -a 1 + -t 1.60375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 426 -a 1 - -t 1.60375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 426 -a 1 h -t 1.60375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 426 -a 1 r -t 1.60461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 411 -a 1 + -t 1.60461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 411 -a 1 r -t 1.60497 -s 3 -d 5 -p cbr -e 210 -c 1 -i 376 -a 1 r -t 1.60537 -s 2 -d 3 -p cbr -e 210 -c 1 -i 394 -a 1 + -t 1.60537 -s 3 -d 5 -p cbr -e 210 -c 1 -i 394 -a 1 - -t 1.60537 -s 3 -d 5 -p cbr -e 210 -c 1 -i 394 -a 1 h -t 1.60537 -s 3 -d 5 -p cbr -e 210 -c 1 -i 394 -a 1 - -t 1.60577 -s 2 -d 3 -p cbr -e 210 -c 1 -i 410 -a 1 h -t 1.60577 -s 2 -d 3 -p cbr -e 210 -c 1 -i 410 -a 1 + -t 1.6075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 427 -a 1 - -t 1.6075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 427 -a 1 h -t 1.6075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 427 -a 1 r -t 1.60833 -s 3 -d 5 -p cbr -e 210 -c 1 -i 377 -a 1 r -t 1.60836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 412 -a 1 + -t 1.60836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 412 -a 1 r -t 1.60873 -s 2 -d 3 -p cbr -e 210 -c 1 -i 395 -a 1 + -t 1.60873 -s 3 -d 5 -p cbr -e 210 -c 1 -i 395 -a 1 - -t 1.60873 -s 3 -d 5 -p cbr -e 210 -c 1 -i 395 -a 1 h -t 1.60873 -s 3 -d 5 -p cbr -e 210 -c 1 -i 395 -a 1 - -t 1.60913 -s 2 -d 3 -p cbr -e 210 -c 1 -i 411 -a 1 h -t 1.60913 -s 2 -d 3 -p cbr -e 210 -c 1 -i 411 -a 1 + -t 1.61125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 428 -a 1 - -t 1.61125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 428 -a 1 h -t 1.61125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 428 -a 1 r -t 1.61169 -s 3 -d 5 -p cbr -e 210 -c 1 -i 378 -a 1 r -t 1.61209 -s 2 -d 3 -p cbr -e 210 -c 1 -i 396 -a 1 + -t 1.61209 -s 3 -d 5 -p cbr -e 210 -c 1 -i 396 -a 1 - -t 1.61209 -s 3 -d 5 -p cbr -e 210 -c 1 -i 396 -a 1 h -t 1.61209 -s 3 -d 5 -p cbr -e 210 -c 1 -i 396 -a 1 r -t 1.61211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 413 -a 1 + -t 1.61211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 413 -a 1 - -t 1.61249 -s 2 -d 3 -p cbr -e 210 -c 1 -i 412 -a 1 h -t 1.61249 -s 2 -d 3 -p cbr -e 210 -c 1 -i 412 -a 1 r -t 1.61318 -s 2 -d 0 -p ack -e 56 -c 0 -i 385 -a 0 -S 0 -y {5 5} + -t 1.615 -s 1 -d 2 -p cbr -e 210 -c 1 -i 429 -a 1 - -t 1.615 -s 1 -d 2 -p cbr -e 210 -c 1 -i 429 -a 1 h -t 1.615 -s 1 -d 2 -p cbr -e 210 -c 1 -i 429 -a 1 r -t 1.61505 -s 3 -d 5 -p cbr -e 210 -c 1 -i 379 -a 1 r -t 1.61545 -s 2 -d 3 -p cbr -e 210 -c 1 -i 397 -a 1 + -t 1.61545 -s 3 -d 5 -p cbr -e 210 -c 1 -i 397 -a 1 - -t 1.61545 -s 3 -d 5 -p cbr -e 210 -c 1 -i 397 -a 1 h -t 1.61545 -s 3 -d 5 -p cbr -e 210 -c 1 -i 397 -a 1 - -t 1.61585 -s 2 -d 3 -p cbr -e 210 -c 1 -i 413 -a 1 h -t 1.61585 -s 2 -d 3 -p cbr -e 210 -c 1 -i 413 -a 1 r -t 1.61586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 414 -a 1 + -t 1.61586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 414 -a 1 r -t 1.61841 -s 3 -d 5 -p cbr -e 210 -c 1 -i 380 -a 1 + -t 1.61875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 430 -a 1 - -t 1.61875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 430 -a 1 h -t 1.61875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 430 -a 1 r -t 1.61881 -s 2 -d 3 -p cbr -e 210 -c 1 -i 398 -a 1 + -t 1.61881 -s 3 -d 5 -p cbr -e 210 -c 1 -i 398 -a 1 - -t 1.61881 -s 3 -d 5 -p cbr -e 210 -c 1 -i 398 -a 1 h -t 1.61881 -s 3 -d 5 -p cbr -e 210 -c 1 -i 398 -a 1 - -t 1.61921 -s 2 -d 3 -p cbr -e 210 -c 1 -i 414 -a 1 h -t 1.61921 -s 2 -d 3 -p cbr -e 210 -c 1 -i 414 -a 1 r -t 1.61961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 415 -a 1 + -t 1.61961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 415 -a 1 r -t 1.62177 -s 3 -d 5 -p cbr -e 210 -c 1 -i 381 -a 1 r -t 1.62217 -s 2 -d 3 -p cbr -e 210 -c 1 -i 399 -a 1 + -t 1.62217 -s 3 -d 5 -p cbr -e 210 -c 1 -i 399 -a 1 - -t 1.62217 -s 3 -d 5 -p cbr -e 210 -c 1 -i 399 -a 1 h -t 1.62217 -s 3 -d 5 -p cbr -e 210 -c 1 -i 399 -a 1 + -t 1.6225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 431 -a 1 - -t 1.6225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 431 -a 1 h -t 1.6225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 431 -a 1 - -t 1.62257 -s 2 -d 3 -p cbr -e 210 -c 1 -i 415 -a 1 h -t 1.62257 -s 2 -d 3 -p cbr -e 210 -c 1 -i 415 -a 1 r -t 1.62336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 417 -a 1 + -t 1.62336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 417 -a 1 r -t 1.62513 -s 3 -d 5 -p cbr -e 210 -c 1 -i 382 -a 1 r -t 1.62553 -s 2 -d 3 -p cbr -e 210 -c 1 -i 400 -a 1 + -t 1.62553 -s 3 -d 5 -p cbr -e 210 -c 1 -i 400 -a 1 - -t 1.62553 -s 3 -d 5 -p cbr -e 210 -c 1 -i 400 -a 1 h -t 1.62553 -s 3 -d 5 -p cbr -e 210 -c 1 -i 400 -a 1 - -t 1.62593 -s 2 -d 3 -p cbr -e 210 -c 1 -i 417 -a 1 h -t 1.62593 -s 2 -d 3 -p cbr -e 210 -c 1 -i 417 -a 1 + -t 1.62625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 432 -a 1 - -t 1.62625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 432 -a 1 h -t 1.62625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 432 -a 1 r -t 1.62711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 418 -a 1 + -t 1.62711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 418 -a 1 r -t 1.62849 -s 3 -d 5 -p cbr -e 210 -c 1 -i 383 -a 1 r -t 1.62889 -s 2 -d 3 -p cbr -e 210 -c 1 -i 401 -a 1 + -t 1.62889 -s 3 -d 5 -p cbr -e 210 -c 1 -i 401 -a 1 - -t 1.62889 -s 3 -d 5 -p cbr -e 210 -c 1 -i 401 -a 1 h -t 1.62889 -s 3 -d 5 -p cbr -e 210 -c 1 -i 401 -a 1 r -t 1.62918 -s 2 -d 0 -p ack -e 56 -c 0 -i 391 -a 0 -S 0 -y {5 5} + -t 1.62918 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 433 -a 0 -S 0 -f 0 -m 0 -y {10 10} - -t 1.62918 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 433 -a 0 -S 0 -y {10 10} h -t 1.62918 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 433 -a 0 -S 0 -y {-1 -1} - -t 1.62929 -s 2 -d 3 -p cbr -e 210 -c 1 -i 418 -a 1 h -t 1.62929 -s 2 -d 3 -p cbr -e 210 -c 1 -i 418 -a 1 + -t 1.63 -s 1 -d 2 -p cbr -e 210 -c 1 -i 434 -a 1 - -t 1.63 -s 1 -d 2 -p cbr -e 210 -c 1 -i 434 -a 1 h -t 1.63 -s 1 -d 2 -p cbr -e 210 -c 1 -i 434 -a 1 v -t 1.6299999999999999 sim_annotation 1.6299999999999999 24 Waiting for Ack_13 r -t 1.63086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 419 -a 1 + -t 1.63086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 419 -a 1 r -t 1.63185 -s 3 -d 5 -p cbr -e 210 -c 1 -i 384 -a 1 r -t 1.63225 -s 2 -d 3 -p cbr -e 210 -c 1 -i 402 -a 1 + -t 1.63225 -s 3 -d 5 -p cbr -e 210 -c 1 -i 402 -a 1 - -t 1.63225 -s 3 -d 5 -p cbr -e 210 -c 1 -i 402 -a 1 h -t 1.63225 -s 3 -d 5 -p cbr -e 210 -c 1 -i 402 -a 1 - -t 1.63265 -s 2 -d 3 -p cbr -e 210 -c 1 -i 419 -a 1 h -t 1.63265 -s 2 -d 3 -p cbr -e 210 -c 1 -i 419 -a 1 + -t 1.63375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 435 -a 1 - -t 1.63375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 435 -a 1 h -t 1.63375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 435 -a 1 r -t 1.63461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 420 -a 1 + -t 1.63461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 420 -a 1 r -t 1.63521 -s 3 -d 5 -p cbr -e 210 -c 1 -i 386 -a 1 r -t 1.63561 -s 2 -d 3 -p cbr -e 210 -c 1 -i 403 -a 1 + -t 1.63561 -s 3 -d 5 -p cbr -e 210 -c 1 -i 403 -a 1 - -t 1.63561 -s 3 -d 5 -p cbr -e 210 -c 1 -i 403 -a 1 h -t 1.63561 -s 3 -d 5 -p cbr -e 210 -c 1 -i 403 -a 1 r -t 1.63591 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 416 -a 0 -S 0 -f 1 -y {6 6} + -t 1.63591 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 416 -a 0 -S 0 -f 1 -y {6 6} - -t 1.63601 -s 2 -d 3 -p cbr -e 210 -c 1 -i 420 -a 1 h -t 1.63601 -s 2 -d 3 -p cbr -e 210 -c 1 -i 420 -a 1 + -t 1.6375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 436 -a 1 - -t 1.6375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 436 -a 1 h -t 1.6375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 436 -a 1 r -t 1.63836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 421 -a 1 + -t 1.63836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 421 -a 1 r -t 1.63857 -s 3 -d 5 -p cbr -e 210 -c 1 -i 387 -a 1 r -t 1.63897 -s 2 -d 3 -p cbr -e 210 -c 1 -i 404 -a 1 + -t 1.63897 -s 3 -d 5 -p cbr -e 210 -c 1 -i 404 -a 1 - -t 1.63897 -s 3 -d 5 -p cbr -e 210 -c 1 -i 404 -a 1 h -t 1.63897 -s 3 -d 5 -p cbr -e 210 -c 1 -i 404 -a 1 - -t 1.63937 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 416 -a 0 -S 0 -f 1 -y {6 6} h -t 1.63937 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 416 -a 0 -S 0 -f 1 -y {-1 -1} + -t 1.64125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 437 -a 1 - -t 1.64125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 437 -a 1 h -t 1.64125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 437 -a 1 r -t 1.64193 -s 3 -d 5 -p cbr -e 210 -c 1 -i 388 -a 1 r -t 1.64211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 422 -a 1 + -t 1.64211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 422 -a 1 r -t 1.64233 -s 2 -d 3 -p cbr -e 210 -c 1 -i 405 -a 1 + -t 1.64233 -s 3 -d 5 -p cbr -e 210 -c 1 -i 405 -a 1 - -t 1.64233 -s 3 -d 5 -p cbr -e 210 -c 1 -i 405 -a 1 h -t 1.64233 -s 3 -d 5 -p cbr -e 210 -c 1 -i 405 -a 1 + -t 1.645 -s 1 -d 2 -p cbr -e 210 -c 1 -i 438 -a 1 - -t 1.645 -s 1 -d 2 -p cbr -e 210 -c 1 -i 438 -a 1 h -t 1.645 -s 1 -d 2 -p cbr -e 210 -c 1 -i 438 -a 1 r -t 1.64529 -s 3 -d 5 -p cbr -e 210 -c 1 -i 389 -a 1 r -t 1.64569 -s 2 -d 3 -p cbr -e 210 -c 1 -i 406 -a 1 + -t 1.64569 -s 3 -d 5 -p cbr -e 210 -c 1 -i 406 -a 1 - -t 1.64569 -s 3 -d 5 -p cbr -e 210 -c 1 -i 406 -a 1 h -t 1.64569 -s 3 -d 5 -p cbr -e 210 -c 1 -i 406 -a 1 r -t 1.64586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 423 -a 1 + -t 1.64586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 423 -a 1 r -t 1.64865 -s 3 -d 5 -p cbr -e 210 -c 1 -i 390 -a 1 + -t 1.64875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 439 -a 1 - -t 1.64875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 439 -a 1 h -t 1.64875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 439 -a 1 r -t 1.64905 -s 2 -d 3 -p cbr -e 210 -c 1 -i 407 -a 1 + -t 1.64905 -s 3 -d 5 -p cbr -e 210 -c 1 -i 407 -a 1 - -t 1.64905 -s 3 -d 5 -p cbr -e 210 -c 1 -i 407 -a 1 h -t 1.64905 -s 3 -d 5 -p cbr -e 210 -c 1 -i 407 -a 1 r -t 1.64961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 424 -a 1 + -t 1.64961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 424 -a 1 r -t 1.65201 -s 3 -d 5 -p cbr -e 210 -c 1 -i 392 -a 1 r -t 1.65241 -s 2 -d 3 -p cbr -e 210 -c 1 -i 408 -a 1 + -t 1.65241 -s 3 -d 5 -p cbr -e 210 -c 1 -i 408 -a 1 - -t 1.65241 -s 3 -d 5 -p cbr -e 210 -c 1 -i 408 -a 1 h -t 1.65241 -s 3 -d 5 -p cbr -e 210 -c 1 -i 408 -a 1 + -t 1.6525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 440 -a 1 - -t 1.6525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 440 -a 1 h -t 1.6525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 440 -a 1 r -t 1.65336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 425 -a 1 + -t 1.65336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 425 -a 1 r -t 1.65537 -s 3 -d 5 -p cbr -e 210 -c 1 -i 393 -a 1 - -t 1.65537 -s 2 -d 3 -p cbr -e 210 -c 1 -i 421 -a 1 h -t 1.65537 -s 2 -d 3 -p cbr -e 210 -c 1 -i 421 -a 1 r -t 1.65577 -s 2 -d 3 -p cbr -e 210 -c 1 -i 409 -a 1 + -t 1.65577 -s 3 -d 5 -p cbr -e 210 -c 1 -i 409 -a 1 - -t 1.65577 -s 3 -d 5 -p cbr -e 210 -c 1 -i 409 -a 1 h -t 1.65577 -s 3 -d 5 -p cbr -e 210 -c 1 -i 409 -a 1 + -t 1.65625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 441 -a 1 - -t 1.65625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 441 -a 1 h -t 1.65625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 441 -a 1 r -t 1.65711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 426 -a 1 + -t 1.65711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 426 -a 1 r -t 1.65873 -s 3 -d 5 -p cbr -e 210 -c 1 -i 394 -a 1 - -t 1.65873 -s 2 -d 3 -p cbr -e 210 -c 1 -i 422 -a 1 h -t 1.65873 -s 2 -d 3 -p cbr -e 210 -c 1 -i 422 -a 1 r -t 1.65913 -s 2 -d 3 -p cbr -e 210 -c 1 -i 410 -a 1 + -t 1.65913 -s 3 -d 5 -p cbr -e 210 -c 1 -i 410 -a 1 - -t 1.65913 -s 3 -d 5 -p cbr -e 210 -c 1 -i 410 -a 1 h -t 1.65913 -s 3 -d 5 -p cbr -e 210 -c 1 -i 410 -a 1 + -t 1.66 -s 1 -d 2 -p cbr -e 210 -c 1 -i 442 -a 1 - -t 1.66 -s 1 -d 2 -p cbr -e 210 -c 1 -i 442 -a 1 h -t 1.66 -s 1 -d 2 -p cbr -e 210 -c 1 -i 442 -a 1 r -t 1.66086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 427 -a 1 + -t 1.66086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 427 -a 1 r -t 1.66209 -s 3 -d 5 -p cbr -e 210 -c 1 -i 395 -a 1 - -t 1.66209 -s 2 -d 3 -p cbr -e 210 -c 1 -i 423 -a 1 h -t 1.66209 -s 2 -d 3 -p cbr -e 210 -c 1 -i 423 -a 1 r -t 1.66249 -s 2 -d 3 -p cbr -e 210 -c 1 -i 411 -a 1 + -t 1.66249 -s 3 -d 5 -p cbr -e 210 -c 1 -i 411 -a 1 - -t 1.66249 -s 3 -d 5 -p cbr -e 210 -c 1 -i 411 -a 1 h -t 1.66249 -s 3 -d 5 -p cbr -e 210 -c 1 -i 411 -a 1 + -t 1.66375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 443 -a 1 - -t 1.66375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 443 -a 1 h -t 1.66375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 443 -a 1 r -t 1.66461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 428 -a 1 + -t 1.66461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 428 -a 1 r -t 1.66545 -s 3 -d 5 -p cbr -e 210 -c 1 -i 396 -a 1 - -t 1.66545 -s 2 -d 3 -p cbr -e 210 -c 1 -i 424 -a 1 h -t 1.66545 -s 2 -d 3 -p cbr -e 210 -c 1 -i 424 -a 1 r -t 1.66585 -s 2 -d 3 -p cbr -e 210 -c 1 -i 412 -a 1 + -t 1.66585 -s 3 -d 5 -p cbr -e 210 -c 1 -i 412 -a 1 - -t 1.66585 -s 3 -d 5 -p cbr -e 210 -c 1 -i 412 -a 1 h -t 1.66585 -s 3 -d 5 -p cbr -e 210 -c 1 -i 412 -a 1 + -t 1.6675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 444 -a 1 - -t 1.6675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 444 -a 1 h -t 1.6675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 444 -a 1 r -t 1.66836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 429 -a 1 + -t 1.66836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 429 -a 1 r -t 1.66881 -s 3 -d 5 -p cbr -e 210 -c 1 -i 397 -a 1 - -t 1.66881 -s 2 -d 3 -p cbr -e 210 -c 1 -i 425 -a 1 h -t 1.66881 -s 2 -d 3 -p cbr -e 210 -c 1 -i 425 -a 1 r -t 1.66921 -s 2 -d 3 -p cbr -e 210 -c 1 -i 413 -a 1 + -t 1.66921 -s 3 -d 5 -p cbr -e 210 -c 1 -i 413 -a 1 - -t 1.66921 -s 3 -d 5 -p cbr -e 210 -c 1 -i 413 -a 1 h -t 1.66921 -s 3 -d 5 -p cbr -e 210 -c 1 -i 413 -a 1 + -t 1.67125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 445 -a 1 - -t 1.67125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 445 -a 1 h -t 1.67125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 445 -a 1 r -t 1.67211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 430 -a 1 + -t 1.67211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 430 -a 1 r -t 1.67217 -s 3 -d 5 -p cbr -e 210 -c 1 -i 398 -a 1 - -t 1.67217 -s 2 -d 3 -p cbr -e 210 -c 1 -i 426 -a 1 h -t 1.67217 -s 2 -d 3 -p cbr -e 210 -c 1 -i 426 -a 1 r -t 1.67257 -s 2 -d 3 -p cbr -e 210 -c 1 -i 414 -a 1 + -t 1.67257 -s 3 -d 5 -p cbr -e 210 -c 1 -i 414 -a 1 - -t 1.67257 -s 3 -d 5 -p cbr -e 210 -c 1 -i 414 -a 1 h -t 1.67257 -s 3 -d 5 -p cbr -e 210 -c 1 -i 414 -a 1 + -t 1.675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 446 -a 1 - -t 1.675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 446 -a 1 h -t 1.675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 446 -a 1 r -t 1.67553 -s 3 -d 5 -p cbr -e 210 -c 1 -i 399 -a 1 - -t 1.67553 -s 2 -d 3 -p cbr -e 210 -c 1 -i 427 -a 1 h -t 1.67553 -s 2 -d 3 -p cbr -e 210 -c 1 -i 427 -a 1 r -t 1.67586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 431 -a 1 + -t 1.67586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 431 -a 1 r -t 1.67593 -s 2 -d 3 -p cbr -e 210 -c 1 -i 415 -a 1 + -t 1.67593 -s 3 -d 5 -p cbr -e 210 -c 1 -i 415 -a 1 - -t 1.67593 -s 3 -d 5 -p cbr -e 210 -c 1 -i 415 -a 1 h -t 1.67593 -s 3 -d 5 -p cbr -e 210 -c 1 -i 415 -a 1 + -t 1.67875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 447 -a 1 - -t 1.67875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 447 -a 1 h -t 1.67875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 447 -a 1 r -t 1.67889 -s 3 -d 5 -p cbr -e 210 -c 1 -i 400 -a 1 - -t 1.67889 -s 2 -d 3 -p cbr -e 210 -c 1 -i 428 -a 1 h -t 1.67889 -s 2 -d 3 -p cbr -e 210 -c 1 -i 428 -a 1 r -t 1.67929 -s 2 -d 3 -p cbr -e 210 -c 1 -i 417 -a 1 + -t 1.67929 -s 3 -d 5 -p cbr -e 210 -c 1 -i 417 -a 1 - -t 1.67929 -s 3 -d 5 -p cbr -e 210 -c 1 -i 417 -a 1 h -t 1.67929 -s 3 -d 5 -p cbr -e 210 -c 1 -i 417 -a 1 r -t 1.67961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 432 -a 1 + -t 1.67961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 432 -a 1 r -t 1.68225 -s 3 -d 5 -p cbr -e 210 -c 1 -i 401 -a 1 - -t 1.68225 -s 2 -d 3 -p cbr -e 210 -c 1 -i 429 -a 1 h -t 1.68225 -s 2 -d 3 -p cbr -e 210 -c 1 -i 429 -a 1 + -t 1.6825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 448 -a 1 - -t 1.6825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 448 -a 1 h -t 1.6825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 448 -a 1 r -t 1.68265 -s 2 -d 3 -p cbr -e 210 -c 1 -i 418 -a 1 + -t 1.68265 -s 3 -d 5 -p cbr -e 210 -c 1 -i 418 -a 1 - -t 1.68265 -s 3 -d 5 -p cbr -e 210 -c 1 -i 418 -a 1 h -t 1.68265 -s 3 -d 5 -p cbr -e 210 -c 1 -i 418 -a 1 r -t 1.68336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 434 -a 1 + -t 1.68336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 434 -a 1 r -t 1.68561 -s 3 -d 5 -p cbr -e 210 -c 1 -i 402 -a 1 - -t 1.68561 -s 2 -d 3 -p cbr -e 210 -c 1 -i 430 -a 1 h -t 1.68561 -s 2 -d 3 -p cbr -e 210 -c 1 -i 430 -a 1 r -t 1.68601 -s 2 -d 3 -p cbr -e 210 -c 1 -i 419 -a 1 + -t 1.68601 -s 3 -d 5 -p cbr -e 210 -c 1 -i 419 -a 1 - -t 1.68601 -s 3 -d 5 -p cbr -e 210 -c 1 -i 419 -a 1 h -t 1.68601 -s 3 -d 5 -p cbr -e 210 -c 1 -i 419 -a 1 + -t 1.68625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 449 -a 1 - -t 1.68625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 449 -a 1 h -t 1.68625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 449 -a 1 r -t 1.68711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 435 -a 1 + -t 1.68711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 435 -a 1 r -t 1.68897 -s 3 -d 5 -p cbr -e 210 -c 1 -i 403 -a 1 - -t 1.68897 -s 2 -d 3 -p cbr -e 210 -c 1 -i 431 -a 1 h -t 1.68897 -s 2 -d 3 -p cbr -e 210 -c 1 -i 431 -a 1 r -t 1.68937 -s 2 -d 3 -p cbr -e 210 -c 1 -i 420 -a 1 + -t 1.68937 -s 3 -d 5 -p cbr -e 210 -c 1 -i 420 -a 1 - -t 1.68937 -s 3 -d 5 -p cbr -e 210 -c 1 -i 420 -a 1 h -t 1.68937 -s 3 -d 5 -p cbr -e 210 -c 1 -i 420 -a 1 + -t 1.69 -s 1 -d 2 -p cbr -e 210 -c 1 -i 450 -a 1 - -t 1.69 -s 1 -d 2 -p cbr -e 210 -c 1 -i 450 -a 1 h -t 1.69 -s 1 -d 2 -p cbr -e 210 -c 1 -i 450 -a 1 r -t 1.69086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 436 -a 1 + -t 1.69086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 436 -a 1 r -t 1.69233 -s 3 -d 5 -p cbr -e 210 -c 1 -i 404 -a 1 - -t 1.69233 -s 2 -d 3 -p cbr -e 210 -c 1 -i 432 -a 1 h -t 1.69233 -s 2 -d 3 -p cbr -e 210 -c 1 -i 432 -a 1 + -t 1.69375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 451 -a 1 - -t 1.69375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 451 -a 1 h -t 1.69375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 451 -a 1 r -t 1.69461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 437 -a 1 + -t 1.69461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 437 -a 1 r -t 1.69518 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 433 -a 0 -S 0 -y {10 10} + -t 1.69518 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 433 -a 0 -S 0 -y {10 10} r -t 1.69569 -s 3 -d 5 -p cbr -e 210 -c 1 -i 405 -a 1 - -t 1.69569 -s 2 -d 3 -p cbr -e 210 -c 1 -i 434 -a 1 h -t 1.69569 -s 2 -d 3 -p cbr -e 210 -c 1 -i 434 -a 1 + -t 1.6975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 452 -a 1 - -t 1.6975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 452 -a 1 h -t 1.6975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 452 -a 1 r -t 1.69836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 438 -a 1 + -t 1.69836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 438 -a 1 r -t 1.69905 -s 3 -d 5 -p cbr -e 210 -c 1 -i 406 -a 1 - -t 1.69905 -s 2 -d 3 -p cbr -e 210 -c 1 -i 435 -a 1 h -t 1.69905 -s 2 -d 3 -p cbr -e 210 -c 1 -i 435 -a 1 + -t 1.70125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 453 -a 1 - -t 1.70125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 453 -a 1 h -t 1.70125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 453 -a 1 r -t 1.70211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 439 -a 1 + -t 1.70211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 439 -a 1 r -t 1.70241 -s 3 -d 5 -p cbr -e 210 -c 1 -i 407 -a 1 - -t 1.70241 -s 2 -d 3 -p cbr -e 210 -c 1 -i 436 -a 1 h -t 1.70241 -s 2 -d 3 -p cbr -e 210 -c 1 -i 436 -a 1 + -t 1.705 -s 1 -d 2 -p cbr -e 210 -c 1 -i 454 -a 1 - -t 1.705 -s 1 -d 2 -p cbr -e 210 -c 1 -i 454 -a 1 h -t 1.705 -s 1 -d 2 -p cbr -e 210 -c 1 -i 454 -a 1 r -t 1.70537 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 416 -a 0 -S 0 -f 1 -y {6 6} + -t 1.70537 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 416 -a 0 -S 0 -f 1 -y {6 6} - -t 1.70537 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 416 -a 0 -S 0 -f 1 -y {6 6} h -t 1.70537 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 416 -a 0 -S 0 -f 1 -y {-1 -1} r -t 1.70577 -s 3 -d 5 -p cbr -e 210 -c 1 -i 408 -a 1 - -t 1.70577 -s 2 -d 3 -p cbr -e 210 -c 1 -i 437 -a 1 h -t 1.70577 -s 2 -d 3 -p cbr -e 210 -c 1 -i 437 -a 1 r -t 1.70586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 440 -a 1 + -t 1.70586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 440 -a 1 r -t 1.70873 -s 2 -d 3 -p cbr -e 210 -c 1 -i 421 -a 1 + -t 1.70873 -s 3 -d 5 -p cbr -e 210 -c 1 -i 421 -a 1 - -t 1.70873 -s 3 -d 5 -p cbr -e 210 -c 1 -i 421 -a 1 h -t 1.70873 -s 3 -d 5 -p cbr -e 210 -c 1 -i 421 -a 1 + -t 1.70875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 455 -a 1 - -t 1.70875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 455 -a 1 h -t 1.70875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 455 -a 1 r -t 1.70913 -s 3 -d 5 -p cbr -e 210 -c 1 -i 409 -a 1 - -t 1.70913 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 433 -a 0 -S 0 -y {10 10} h -t 1.70913 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 433 -a 0 -S 0 -y {-1 -1} r -t 1.70961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 441 -a 1 + -t 1.70961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 441 -a 1 r -t 1.71209 -s 2 -d 3 -p cbr -e 210 -c 1 -i 422 -a 1 + -t 1.71209 -s 3 -d 5 -p cbr -e 210 -c 1 -i 422 -a 1 - -t 1.71209 -s 3 -d 5 -p cbr -e 210 -c 1 -i 422 -a 1 h -t 1.71209 -s 3 -d 5 -p cbr -e 210 -c 1 -i 422 -a 1 r -t 1.71249 -s 3 -d 5 -p cbr -e 210 -c 1 -i 410 -a 1 + -t 1.7125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 456 -a 1 - -t 1.7125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 456 -a 1 h -t 1.7125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 456 -a 1 r -t 1.71336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 442 -a 1 + -t 1.71336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 442 -a 1 r -t 1.71545 -s 2 -d 3 -p cbr -e 210 -c 1 -i 423 -a 1 + -t 1.71545 -s 3 -d 5 -p cbr -e 210 -c 1 -i 423 -a 1 - -t 1.71545 -s 3 -d 5 -p cbr -e 210 -c 1 -i 423 -a 1 h -t 1.71545 -s 3 -d 5 -p cbr -e 210 -c 1 -i 423 -a 1 r -t 1.71585 -s 3 -d 5 -p cbr -e 210 -c 1 -i 411 -a 1 + -t 1.71625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 457 -a 1 - -t 1.71625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 457 -a 1 h -t 1.71625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 457 -a 1 r -t 1.71711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 443 -a 1 + -t 1.71711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 443 -a 1 r -t 1.71881 -s 2 -d 3 -p cbr -e 210 -c 1 -i 424 -a 1 + -t 1.71881 -s 3 -d 5 -p cbr -e 210 -c 1 -i 424 -a 1 - -t 1.71881 -s 3 -d 5 -p cbr -e 210 -c 1 -i 424 -a 1 h -t 1.71881 -s 3 -d 5 -p cbr -e 210 -c 1 -i 424 -a 1 r -t 1.71921 -s 3 -d 5 -p cbr -e 210 -c 1 -i 412 -a 1 + -t 1.72 -s 1 -d 2 -p cbr -e 210 -c 1 -i 458 -a 1 - -t 1.72 -s 1 -d 2 -p cbr -e 210 -c 1 -i 458 -a 1 h -t 1.72 -s 1 -d 2 -p cbr -e 210 -c 1 -i 458 -a 1 r -t 1.72086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 444 -a 1 + -t 1.72086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 444 -a 1 r -t 1.72217 -s 2 -d 3 -p cbr -e 210 -c 1 -i 425 -a 1 + -t 1.72217 -s 3 -d 5 -p cbr -e 210 -c 1 -i 425 -a 1 - -t 1.72217 -s 3 -d 5 -p cbr -e 210 -c 1 -i 425 -a 1 h -t 1.72217 -s 3 -d 5 -p cbr -e 210 -c 1 -i 425 -a 1 r -t 1.72257 -s 3 -d 5 -p cbr -e 210 -c 1 -i 413 -a 1 + -t 1.72375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 459 -a 1 - -t 1.72375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 459 -a 1 h -t 1.72375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 459 -a 1 r -t 1.72461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 445 -a 1 + -t 1.72461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 445 -a 1 - -t 1.72513 -s 2 -d 3 -p cbr -e 210 -c 1 -i 438 -a 1 h -t 1.72513 -s 2 -d 3 -p cbr -e 210 -c 1 -i 438 -a 1 r -t 1.72553 -s 2 -d 3 -p cbr -e 210 -c 1 -i 426 -a 1 + -t 1.72553 -s 3 -d 5 -p cbr -e 210 -c 1 -i 426 -a 1 - -t 1.72553 -s 3 -d 5 -p cbr -e 210 -c 1 -i 426 -a 1 h -t 1.72553 -s 3 -d 5 -p cbr -e 210 -c 1 -i 426 -a 1 r -t 1.72593 -s 3 -d 5 -p cbr -e 210 -c 1 -i 414 -a 1 + -t 1.7275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 460 -a 1 - -t 1.7275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 460 -a 1 h -t 1.7275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 460 -a 1 r -t 1.72836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 446 -a 1 + -t 1.72836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 446 -a 1 - -t 1.72849 -s 2 -d 3 -p cbr -e 210 -c 1 -i 439 -a 1 h -t 1.72849 -s 2 -d 3 -p cbr -e 210 -c 1 -i 439 -a 1 r -t 1.72889 -s 2 -d 3 -p cbr -e 210 -c 1 -i 427 -a 1 + -t 1.72889 -s 3 -d 5 -p cbr -e 210 -c 1 -i 427 -a 1 - -t 1.72889 -s 3 -d 5 -p cbr -e 210 -c 1 -i 427 -a 1 h -t 1.72889 -s 3 -d 5 -p cbr -e 210 -c 1 -i 427 -a 1 r -t 1.72929 -s 3 -d 5 -p cbr -e 210 -c 1 -i 415 -a 1 + -t 1.73125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 461 -a 1 - -t 1.73125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 461 -a 1 h -t 1.73125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 461 -a 1 - -t 1.73185 -s 2 -d 3 -p cbr -e 210 -c 1 -i 440 -a 1 h -t 1.73185 -s 2 -d 3 -p cbr -e 210 -c 1 -i 440 -a 1 r -t 1.73211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 447 -a 1 + -t 1.73211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 447 -a 1 r -t 1.73225 -s 2 -d 3 -p cbr -e 210 -c 1 -i 428 -a 1 + -t 1.73225 -s 3 -d 5 -p cbr -e 210 -c 1 -i 428 -a 1 - -t 1.73225 -s 3 -d 5 -p cbr -e 210 -c 1 -i 428 -a 1 h -t 1.73225 -s 3 -d 5 -p cbr -e 210 -c 1 -i 428 -a 1 r -t 1.73265 -s 3 -d 5 -p cbr -e 210 -c 1 -i 417 -a 1 + -t 1.735 -s 1 -d 2 -p cbr -e 210 -c 1 -i 462 -a 1 - -t 1.735 -s 1 -d 2 -p cbr -e 210 -c 1 -i 462 -a 1 h -t 1.735 -s 1 -d 2 -p cbr -e 210 -c 1 -i 462 -a 1 - -t 1.73521 -s 2 -d 3 -p cbr -e 210 -c 1 -i 441 -a 1 h -t 1.73521 -s 2 -d 3 -p cbr -e 210 -c 1 -i 441 -a 1 r -t 1.73561 -s 2 -d 3 -p cbr -e 210 -c 1 -i 429 -a 1 + -t 1.73561 -s 3 -d 5 -p cbr -e 210 -c 1 -i 429 -a 1 - -t 1.73561 -s 3 -d 5 -p cbr -e 210 -c 1 -i 429 -a 1 h -t 1.73561 -s 3 -d 5 -p cbr -e 210 -c 1 -i 429 -a 1 r -t 1.73586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 448 -a 1 + -t 1.73586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 448 -a 1 r -t 1.73601 -s 3 -d 5 -p cbr -e 210 -c 1 -i 418 -a 1 - -t 1.73857 -s 2 -d 3 -p cbr -e 210 -c 1 -i 442 -a 1 h -t 1.73857 -s 2 -d 3 -p cbr -e 210 -c 1 -i 442 -a 1 + -t 1.73875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 463 -a 1 - -t 1.73875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 463 -a 1 h -t 1.73875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 463 -a 1 r -t 1.73897 -s 2 -d 3 -p cbr -e 210 -c 1 -i 430 -a 1 + -t 1.73897 -s 3 -d 5 -p cbr -e 210 -c 1 -i 430 -a 1 - -t 1.73897 -s 3 -d 5 -p cbr -e 210 -c 1 -i 430 -a 1 h -t 1.73897 -s 3 -d 5 -p cbr -e 210 -c 1 -i 430 -a 1 r -t 1.73937 -s 3 -d 5 -p cbr -e 210 -c 1 -i 419 -a 1 r -t 1.73961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 449 -a 1 + -t 1.73961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 449 -a 1 - -t 1.74193 -s 2 -d 3 -p cbr -e 210 -c 1 -i 443 -a 1 h -t 1.74193 -s 2 -d 3 -p cbr -e 210 -c 1 -i 443 -a 1 r -t 1.74233 -s 2 -d 3 -p cbr -e 210 -c 1 -i 431 -a 1 + -t 1.74233 -s 3 -d 5 -p cbr -e 210 -c 1 -i 431 -a 1 - -t 1.74233 -s 3 -d 5 -p cbr -e 210 -c 1 -i 431 -a 1 h -t 1.74233 -s 3 -d 5 -p cbr -e 210 -c 1 -i 431 -a 1 + -t 1.7425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 464 -a 1 - -t 1.7425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 464 -a 1 h -t 1.7425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 464 -a 1 r -t 1.74273 -s 3 -d 5 -p cbr -e 210 -c 1 -i 420 -a 1 r -t 1.74336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 450 -a 1 + -t 1.74336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 450 -a 1 - -t 1.74529 -s 2 -d 3 -p cbr -e 210 -c 1 -i 444 -a 1 h -t 1.74529 -s 2 -d 3 -p cbr -e 210 -c 1 -i 444 -a 1 r -t 1.74569 -s 2 -d 3 -p cbr -e 210 -c 1 -i 432 -a 1 + -t 1.74569 -s 3 -d 5 -p cbr -e 210 -c 1 -i 432 -a 1 - -t 1.74569 -s 3 -d 5 -p cbr -e 210 -c 1 -i 432 -a 1 h -t 1.74569 -s 3 -d 5 -p cbr -e 210 -c 1 -i 432 -a 1 + -t 1.74625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 465 -a 1 - -t 1.74625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 465 -a 1 h -t 1.74625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 465 -a 1 r -t 1.74711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 451 -a 1 + -t 1.74711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 451 -a 1 - -t 1.74865 -s 2 -d 3 -p cbr -e 210 -c 1 -i 445 -a 1 h -t 1.74865 -s 2 -d 3 -p cbr -e 210 -c 1 -i 445 -a 1 r -t 1.74905 -s 2 -d 3 -p cbr -e 210 -c 1 -i 434 -a 1 + -t 1.74905 -s 3 -d 5 -p cbr -e 210 -c 1 -i 434 -a 1 - -t 1.74905 -s 3 -d 5 -p cbr -e 210 -c 1 -i 434 -a 1 h -t 1.74905 -s 3 -d 5 -p cbr -e 210 -c 1 -i 434 -a 1 + -t 1.75 -s 1 -d 2 -p cbr -e 210 -c 1 -i 466 -a 1 - -t 1.75 -s 1 -d 2 -p cbr -e 210 -c 1 -i 466 -a 1 h -t 1.75 -s 1 -d 2 -p cbr -e 210 -c 1 -i 466 -a 1 r -t 1.75086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 452 -a 1 + -t 1.75086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 452 -a 1 - -t 1.75201 -s 2 -d 3 -p cbr -e 210 -c 1 -i 446 -a 1 h -t 1.75201 -s 2 -d 3 -p cbr -e 210 -c 1 -i 446 -a 1 r -t 1.75241 -s 2 -d 3 -p cbr -e 210 -c 1 -i 435 -a 1 + -t 1.75241 -s 3 -d 5 -p cbr -e 210 -c 1 -i 435 -a 1 - -t 1.75241 -s 3 -d 5 -p cbr -e 210 -c 1 -i 435 -a 1 h -t 1.75241 -s 3 -d 5 -p cbr -e 210 -c 1 -i 435 -a 1 + -t 1.75375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 467 -a 1 - -t 1.75375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 467 -a 1 h -t 1.75375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 467 -a 1 r -t 1.75461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 453 -a 1 + -t 1.75461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 453 -a 1 - -t 1.75537 -s 2 -d 3 -p cbr -e 210 -c 1 -i 447 -a 1 h -t 1.75537 -s 2 -d 3 -p cbr -e 210 -c 1 -i 447 -a 1 r -t 1.75577 -s 2 -d 3 -p cbr -e 210 -c 1 -i 436 -a 1 + -t 1.75577 -s 3 -d 5 -p cbr -e 210 -c 1 -i 436 -a 1 - -t 1.75577 -s 3 -d 5 -p cbr -e 210 -c 1 -i 436 -a 1 h -t 1.75577 -s 3 -d 5 -p cbr -e 210 -c 1 -i 436 -a 1 + -t 1.7575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 468 -a 1 - -t 1.7575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 468 -a 1 h -t 1.7575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 468 -a 1 r -t 1.75836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 454 -a 1 + -t 1.75836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 454 -a 1 - -t 1.75873 -s 2 -d 3 -p cbr -e 210 -c 1 -i 448 -a 1 h -t 1.75873 -s 2 -d 3 -p cbr -e 210 -c 1 -i 448 -a 1 r -t 1.75913 -s 2 -d 3 -p cbr -e 210 -c 1 -i 437 -a 1 + -t 1.75913 -s 3 -d 5 -p cbr -e 210 -c 1 -i 437 -a 1 - -t 1.75913 -s 3 -d 5 -p cbr -e 210 -c 1 -i 437 -a 1 h -t 1.75913 -s 3 -d 5 -p cbr -e 210 -c 1 -i 437 -a 1 + -t 1.76125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 469 -a 1 - -t 1.76125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 469 -a 1 h -t 1.76125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 469 -a 1 r -t 1.76209 -s 3 -d 5 -p cbr -e 210 -c 1 -i 421 -a 1 - -t 1.76209 -s 2 -d 3 -p cbr -e 210 -c 1 -i 449 -a 1 h -t 1.76209 -s 2 -d 3 -p cbr -e 210 -c 1 -i 449 -a 1 r -t 1.76211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 455 -a 1 + -t 1.76211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 455 -a 1 + -t 1.765 -s 1 -d 2 -p cbr -e 210 -c 1 -i 470 -a 1 - -t 1.765 -s 1 -d 2 -p cbr -e 210 -c 1 -i 470 -a 1 h -t 1.765 -s 1 -d 2 -p cbr -e 210 -c 1 -i 470 -a 1 r -t 1.76545 -s 3 -d 5 -p cbr -e 210 -c 1 -i 422 -a 1 - -t 1.76545 -s 2 -d 3 -p cbr -e 210 -c 1 -i 450 -a 1 h -t 1.76545 -s 2 -d 3 -p cbr -e 210 -c 1 -i 450 -a 1 r -t 1.76586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 456 -a 1 + -t 1.76586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 456 -a 1 + -t 1.76875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 471 -a 1 - -t 1.76875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 471 -a 1 h -t 1.76875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 471 -a 1 r -t 1.76881 -s 3 -d 5 -p cbr -e 210 -c 1 -i 423 -a 1 - -t 1.76881 -s 2 -d 3 -p cbr -e 210 -c 1 -i 451 -a 1 h -t 1.76881 -s 2 -d 3 -p cbr -e 210 -c 1 -i 451 -a 1 r -t 1.76961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 457 -a 1 + -t 1.76961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 457 -a 1 r -t 1.77137 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 416 -a 0 -S 0 -f 1 -y {6 6} + -t 1.77137 -s 4 -d 3 -p ack -e 48 -c 0 -i 472 -a 0 -S 0 -y {9 9} - -t 1.77137 -s 4 -d 3 -p ack -e 48 -c 0 -i 472 -a 0 -S 0 -y {9 9} h -t 1.77137 -s 4 -d 3 -p ack -e 48 -c 0 -i 472 -a 0 -S 0 -y {-1 -1} r -t 1.77217 -s 3 -d 5 -p cbr -e 210 -c 1 -i 424 -a 1 - -t 1.77217 -s 2 -d 3 -p cbr -e 210 -c 1 -i 452 -a 1 h -t 1.77217 -s 2 -d 3 -p cbr -e 210 -c 1 -i 452 -a 1 + -t 1.7725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 473 -a 1 - -t 1.7725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 473 -a 1 h -t 1.7725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 473 -a 1 r -t 1.77336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 458 -a 1 + -t 1.77336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 458 -a 1 r -t 1.77513 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 433 -a 0 -S 0 -y {10 10} + -t 1.77513 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 433 -a 0 -S 0 -y {10 10} - -t 1.77513 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 433 -a 0 -S 0 -y {10 10} h -t 1.77513 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 433 -a 0 -S 0 -y {-1 -1} r -t 1.77553 -s 3 -d 5 -p cbr -e 210 -c 1 -i 425 -a 1 - -t 1.77553 -s 2 -d 3 -p cbr -e 210 -c 1 -i 453 -a 1 h -t 1.77553 -s 2 -d 3 -p cbr -e 210 -c 1 -i 453 -a 1 + -t 1.77625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 474 -a 1 - -t 1.77625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 474 -a 1 h -t 1.77625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 474 -a 1 r -t 1.77711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 459 -a 1 + -t 1.77711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 459 -a 1 r -t 1.77849 -s 2 -d 3 -p cbr -e 210 -c 1 -i 438 -a 1 + -t 1.77849 -s 3 -d 5 -p cbr -e 210 -c 1 -i 438 -a 1 - -t 1.77849 -s 3 -d 5 -p cbr -e 210 -c 1 -i 438 -a 1 h -t 1.77849 -s 3 -d 5 -p cbr -e 210 -c 1 -i 438 -a 1 r -t 1.77889 -s 3 -d 5 -p cbr -e 210 -c 1 -i 426 -a 1 - -t 1.77889 -s 2 -d 3 -p cbr -e 210 -c 1 -i 454 -a 1 h -t 1.77889 -s 2 -d 3 -p cbr -e 210 -c 1 -i 454 -a 1 + -t 1.78 -s 1 -d 2 -p cbr -e 210 -c 1 -i 475 -a 1 - -t 1.78 -s 1 -d 2 -p cbr -e 210 -c 1 -i 475 -a 1 h -t 1.78 -s 1 -d 2 -p cbr -e 210 -c 1 -i 475 -a 1 r -t 1.78086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 460 -a 1 + -t 1.78086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 460 -a 1 r -t 1.78185 -s 2 -d 3 -p cbr -e 210 -c 1 -i 439 -a 1 + -t 1.78185 -s 3 -d 5 -p cbr -e 210 -c 1 -i 439 -a 1 - -t 1.78185 -s 3 -d 5 -p cbr -e 210 -c 1 -i 439 -a 1 h -t 1.78185 -s 3 -d 5 -p cbr -e 210 -c 1 -i 439 -a 1 r -t 1.78225 -s 3 -d 5 -p cbr -e 210 -c 1 -i 427 -a 1 - -t 1.78225 -s 2 -d 3 -p cbr -e 210 -c 1 -i 455 -a 1 h -t 1.78225 -s 2 -d 3 -p cbr -e 210 -c 1 -i 455 -a 1 + -t 1.78375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 476 -a 1 - -t 1.78375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 476 -a 1 h -t 1.78375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 476 -a 1 r -t 1.78461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 461 -a 1 + -t 1.78461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 461 -a 1 r -t 1.78521 -s 2 -d 3 -p cbr -e 210 -c 1 -i 440 -a 1 + -t 1.78521 -s 3 -d 5 -p cbr -e 210 -c 1 -i 440 -a 1 - -t 1.78521 -s 3 -d 5 -p cbr -e 210 -c 1 -i 440 -a 1 h -t 1.78521 -s 3 -d 5 -p cbr -e 210 -c 1 -i 440 -a 1 r -t 1.78561 -s 3 -d 5 -p cbr -e 210 -c 1 -i 428 -a 1 - -t 1.78561 -s 2 -d 3 -p cbr -e 210 -c 1 -i 456 -a 1 h -t 1.78561 -s 2 -d 3 -p cbr -e 210 -c 1 -i 456 -a 1 + -t 1.7875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 477 -a 1 - -t 1.7875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 477 -a 1 h -t 1.7875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 477 -a 1 r -t 1.78836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 462 -a 1 + -t 1.78836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 462 -a 1 r -t 1.78857 -s 2 -d 3 -p cbr -e 210 -c 1 -i 441 -a 1 + -t 1.78857 -s 3 -d 5 -p cbr -e 210 -c 1 -i 441 -a 1 - -t 1.78857 -s 3 -d 5 -p cbr -e 210 -c 1 -i 441 -a 1 h -t 1.78857 -s 3 -d 5 -p cbr -e 210 -c 1 -i 441 -a 1 r -t 1.78897 -s 3 -d 5 -p cbr -e 210 -c 1 -i 429 -a 1 - -t 1.78897 -s 2 -d 3 -p cbr -e 210 -c 1 -i 457 -a 1 h -t 1.78897 -s 2 -d 3 -p cbr -e 210 -c 1 -i 457 -a 1 + -t 1.79125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 478 -a 1 - -t 1.79125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 478 -a 1 h -t 1.79125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 478 -a 1 r -t 1.79193 -s 2 -d 3 -p cbr -e 210 -c 1 -i 442 -a 1 + -t 1.79193 -s 3 -d 5 -p cbr -e 210 -c 1 -i 442 -a 1 - -t 1.79193 -s 3 -d 5 -p cbr -e 210 -c 1 -i 442 -a 1 h -t 1.79193 -s 3 -d 5 -p cbr -e 210 -c 1 -i 442 -a 1 r -t 1.79211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 463 -a 1 + -t 1.79211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 463 -a 1 r -t 1.79233 -s 3 -d 5 -p cbr -e 210 -c 1 -i 430 -a 1 - -t 1.79233 -s 2 -d 3 -p cbr -e 210 -c 1 -i 458 -a 1 h -t 1.79233 -s 2 -d 3 -p cbr -e 210 -c 1 -i 458 -a 1 + -t 1.795 -s 1 -d 2 -p cbr -e 210 -c 1 -i 479 -a 1 - -t 1.795 -s 1 -d 2 -p cbr -e 210 -c 1 -i 479 -a 1 h -t 1.795 -s 1 -d 2 -p cbr -e 210 -c 1 -i 479 -a 1 r -t 1.79529 -s 2 -d 3 -p cbr -e 210 -c 1 -i 443 -a 1 + -t 1.79529 -s 3 -d 5 -p cbr -e 210 -c 1 -i 443 -a 1 - -t 1.79529 -s 3 -d 5 -p cbr -e 210 -c 1 -i 443 -a 1 h -t 1.79529 -s 3 -d 5 -p cbr -e 210 -c 1 -i 443 -a 1 r -t 1.79569 -s 3 -d 5 -p cbr -e 210 -c 1 -i 431 -a 1 - -t 1.79569 -s 2 -d 3 -p cbr -e 210 -c 1 -i 459 -a 1 h -t 1.79569 -s 2 -d 3 -p cbr -e 210 -c 1 -i 459 -a 1 r -t 1.79586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 464 -a 1 + -t 1.79586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 464 -a 1 r -t 1.79865 -s 2 -d 3 -p cbr -e 210 -c 1 -i 444 -a 1 + -t 1.79865 -s 3 -d 5 -p cbr -e 210 -c 1 -i 444 -a 1 - -t 1.79865 -s 3 -d 5 -p cbr -e 210 -c 1 -i 444 -a 1 h -t 1.79865 -s 3 -d 5 -p cbr -e 210 -c 1 -i 444 -a 1 + -t 1.79875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 480 -a 1 - -t 1.79875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 480 -a 1 h -t 1.79875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 480 -a 1 r -t 1.79905 -s 3 -d 5 -p cbr -e 210 -c 1 -i 432 -a 1 - -t 1.79905 -s 2 -d 3 -p cbr -e 210 -c 1 -i 460 -a 1 h -t 1.79905 -s 2 -d 3 -p cbr -e 210 -c 1 -i 460 -a 1 r -t 1.79961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 465 -a 1 + -t 1.79961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 465 -a 1 r -t 1.80201 -s 2 -d 3 -p cbr -e 210 -c 1 -i 445 -a 1 + -t 1.80201 -s 3 -d 5 -p cbr -e 210 -c 1 -i 445 -a 1 - -t 1.80201 -s 3 -d 5 -p cbr -e 210 -c 1 -i 445 -a 1 h -t 1.80201 -s 3 -d 5 -p cbr -e 210 -c 1 -i 445 -a 1 r -t 1.80241 -s 3 -d 5 -p cbr -e 210 -c 1 -i 434 -a 1 - -t 1.80241 -s 2 -d 3 -p cbr -e 210 -c 1 -i 461 -a 1 h -t 1.80241 -s 2 -d 3 -p cbr -e 210 -c 1 -i 461 -a 1 + -t 1.8025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 481 -a 1 - -t 1.8025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 481 -a 1 h -t 1.8025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 481 -a 1 r -t 1.80336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 466 -a 1 + -t 1.80336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 466 -a 1 r -t 1.80537 -s 2 -d 3 -p cbr -e 210 -c 1 -i 446 -a 1 + -t 1.80537 -s 3 -d 5 -p cbr -e 210 -c 1 -i 446 -a 1 - -t 1.80537 -s 3 -d 5 -p cbr -e 210 -c 1 -i 446 -a 1 h -t 1.80537 -s 3 -d 5 -p cbr -e 210 -c 1 -i 446 -a 1 r -t 1.80577 -s 3 -d 5 -p cbr -e 210 -c 1 -i 435 -a 1 - -t 1.80577 -s 2 -d 3 -p cbr -e 210 -c 1 -i 462 -a 1 h -t 1.80577 -s 2 -d 3 -p cbr -e 210 -c 1 -i 462 -a 1 + -t 1.80625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 482 -a 1 - -t 1.80625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 482 -a 1 h -t 1.80625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 482 -a 1 r -t 1.80711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 467 -a 1 + -t 1.80711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 467 -a 1 r -t 1.80873 -s 2 -d 3 -p cbr -e 210 -c 1 -i 447 -a 1 + -t 1.80873 -s 3 -d 5 -p cbr -e 210 -c 1 -i 447 -a 1 - -t 1.80873 -s 3 -d 5 -p cbr -e 210 -c 1 -i 447 -a 1 h -t 1.80873 -s 3 -d 5 -p cbr -e 210 -c 1 -i 447 -a 1 r -t 1.80913 -s 3 -d 5 -p cbr -e 210 -c 1 -i 436 -a 1 - -t 1.80913 -s 2 -d 3 -p cbr -e 210 -c 1 -i 463 -a 1 h -t 1.80913 -s 2 -d 3 -p cbr -e 210 -c 1 -i 463 -a 1 + -t 1.81 -s 1 -d 2 -p cbr -e 210 -c 1 -i 483 -a 1 - -t 1.81 -s 1 -d 2 -p cbr -e 210 -c 1 -i 483 -a 1 h -t 1.81 -s 1 -d 2 -p cbr -e 210 -c 1 -i 483 -a 1 r -t 1.81086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 468 -a 1 + -t 1.81086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 468 -a 1 r -t 1.81209 -s 2 -d 3 -p cbr -e 210 -c 1 -i 448 -a 1 + -t 1.81209 -s 3 -d 5 -p cbr -e 210 -c 1 -i 448 -a 1 - -t 1.81209 -s 3 -d 5 -p cbr -e 210 -c 1 -i 448 -a 1 h -t 1.81209 -s 3 -d 5 -p cbr -e 210 -c 1 -i 448 -a 1 r -t 1.81249 -s 3 -d 5 -p cbr -e 210 -c 1 -i 437 -a 1 - -t 1.81249 -s 2 -d 3 -p cbr -e 210 -c 1 -i 464 -a 1 h -t 1.81249 -s 2 -d 3 -p cbr -e 210 -c 1 -i 464 -a 1 + -t 1.81375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 484 -a 1 - -t 1.81375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 484 -a 1 h -t 1.81375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 484 -a 1 r -t 1.81461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 469 -a 1 + -t 1.81461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 469 -a 1 r -t 1.81545 -s 2 -d 3 -p cbr -e 210 -c 1 -i 449 -a 1 + -t 1.81545 -s 3 -d 5 -p cbr -e 210 -c 1 -i 449 -a 1 - -t 1.81545 -s 3 -d 5 -p cbr -e 210 -c 1 -i 449 -a 1 h -t 1.81545 -s 3 -d 5 -p cbr -e 210 -c 1 -i 449 -a 1 - -t 1.81585 -s 2 -d 3 -p cbr -e 210 -c 1 -i 465 -a 1 h -t 1.81585 -s 2 -d 3 -p cbr -e 210 -c 1 -i 465 -a 1 + -t 1.8175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 485 -a 1 - -t 1.8175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 485 -a 1 h -t 1.8175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 485 -a 1 r -t 1.81836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 470 -a 1 + -t 1.81836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 470 -a 1 r -t 1.81881 -s 2 -d 3 -p cbr -e 210 -c 1 -i 450 -a 1 + -t 1.81881 -s 3 -d 5 -p cbr -e 210 -c 1 -i 450 -a 1 - -t 1.81881 -s 3 -d 5 -p cbr -e 210 -c 1 -i 450 -a 1 h -t 1.81881 -s 3 -d 5 -p cbr -e 210 -c 1 -i 450 -a 1 - -t 1.81921 -s 2 -d 3 -p cbr -e 210 -c 1 -i 466 -a 1 h -t 1.81921 -s 2 -d 3 -p cbr -e 210 -c 1 -i 466 -a 1 + -t 1.82125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 486 -a 1 - -t 1.82125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 486 -a 1 h -t 1.82125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 486 -a 1 r -t 1.82211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 471 -a 1 + -t 1.82211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 471 -a 1 r -t 1.82214 -s 4 -d 3 -p ack -e 48 -c 0 -i 472 -a 0 -S 0 -y {9 9} + -t 1.82214 -s 3 -d 2 -p ack -e 48 -c 0 -i 472 -a 0 -S 0 -y {9 9} - -t 1.82214 -s 3 -d 2 -p ack -e 48 -c 0 -i 472 -a 0 -S 0 -y {9 9} h -t 1.82214 -s 3 -d 2 -p ack -e 48 -c 0 -i 472 -a 0 -S 0 -y {-1 -1} r -t 1.82217 -s 2 -d 3 -p cbr -e 210 -c 1 -i 451 -a 1 + -t 1.82217 -s 3 -d 5 -p cbr -e 210 -c 1 -i 451 -a 1 - -t 1.82217 -s 3 -d 5 -p cbr -e 210 -c 1 -i 451 -a 1 h -t 1.82217 -s 3 -d 5 -p cbr -e 210 -c 1 -i 451 -a 1 - -t 1.82257 -s 2 -d 3 -p cbr -e 210 -c 1 -i 467 -a 1 h -t 1.82257 -s 2 -d 3 -p cbr -e 210 -c 1 -i 467 -a 1 + -t 1.825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 487 -a 1 - -t 1.825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 487 -a 1 h -t 1.825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 487 -a 1 r -t 1.82553 -s 2 -d 3 -p cbr -e 210 -c 1 -i 452 -a 1 + -t 1.82553 -s 3 -d 5 -p cbr -e 210 -c 1 -i 452 -a 1 - -t 1.82553 -s 3 -d 5 -p cbr -e 210 -c 1 -i 452 -a 1 h -t 1.82553 -s 3 -d 5 -p cbr -e 210 -c 1 -i 452 -a 1 r -t 1.82586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 473 -a 1 + -t 1.82586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 473 -a 1 - -t 1.82593 -s 2 -d 3 -p cbr -e 210 -c 1 -i 468 -a 1 h -t 1.82593 -s 2 -d 3 -p cbr -e 210 -c 1 -i 468 -a 1 + -t 1.82875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 488 -a 1 - -t 1.82875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 488 -a 1 h -t 1.82875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 488 -a 1 r -t 1.82889 -s 2 -d 3 -p cbr -e 210 -c 1 -i 453 -a 1 + -t 1.82889 -s 3 -d 5 -p cbr -e 210 -c 1 -i 453 -a 1 - -t 1.82889 -s 3 -d 5 -p cbr -e 210 -c 1 -i 453 -a 1 h -t 1.82889 -s 3 -d 5 -p cbr -e 210 -c 1 -i 453 -a 1 - -t 1.82929 -s 2 -d 3 -p cbr -e 210 -c 1 -i 469 -a 1 h -t 1.82929 -s 2 -d 3 -p cbr -e 210 -c 1 -i 469 -a 1 r -t 1.82961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 474 -a 1 + -t 1.82961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 474 -a 1 r -t 1.83185 -s 3 -d 5 -p cbr -e 210 -c 1 -i 438 -a 1 r -t 1.83225 -s 2 -d 3 -p cbr -e 210 -c 1 -i 454 -a 1 + -t 1.83225 -s 3 -d 5 -p cbr -e 210 -c 1 -i 454 -a 1 - -t 1.83225 -s 3 -d 5 -p cbr -e 210 -c 1 -i 454 -a 1 h -t 1.83225 -s 3 -d 5 -p cbr -e 210 -c 1 -i 454 -a 1 + -t 1.8325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 489 -a 1 - -t 1.8325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 489 -a 1 h -t 1.8325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 489 -a 1 - -t 1.83265 -s 2 -d 3 -p cbr -e 210 -c 1 -i 470 -a 1 h -t 1.83265 -s 2 -d 3 -p cbr -e 210 -c 1 -i 470 -a 1 r -t 1.83336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 475 -a 1 + -t 1.83336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 475 -a 1 r -t 1.83521 -s 3 -d 5 -p cbr -e 210 -c 1 -i 439 -a 1 r -t 1.83561 -s 2 -d 3 -p cbr -e 210 -c 1 -i 455 -a 1 + -t 1.83561 -s 3 -d 5 -p cbr -e 210 -c 1 -i 455 -a 1 - -t 1.83561 -s 3 -d 5 -p cbr -e 210 -c 1 -i 455 -a 1 h -t 1.83561 -s 3 -d 5 -p cbr -e 210 -c 1 -i 455 -a 1 - -t 1.83601 -s 2 -d 3 -p cbr -e 210 -c 1 -i 471 -a 1 h -t 1.83601 -s 2 -d 3 -p cbr -e 210 -c 1 -i 471 -a 1 + -t 1.83625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 490 -a 1 - -t 1.83625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 490 -a 1 h -t 1.83625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 490 -a 1 r -t 1.83711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 476 -a 1 + -t 1.83711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 476 -a 1 r -t 1.83857 -s 3 -d 5 -p cbr -e 210 -c 1 -i 440 -a 1 r -t 1.83897 -s 2 -d 3 -p cbr -e 210 -c 1 -i 456 -a 1 + -t 1.83897 -s 3 -d 5 -p cbr -e 210 -c 1 -i 456 -a 1 - -t 1.83897 -s 3 -d 5 -p cbr -e 210 -c 1 -i 456 -a 1 h -t 1.83897 -s 3 -d 5 -p cbr -e 210 -c 1 -i 456 -a 1 - -t 1.83937 -s 2 -d 3 -p cbr -e 210 -c 1 -i 473 -a 1 h -t 1.83937 -s 2 -d 3 -p cbr -e 210 -c 1 -i 473 -a 1 + -t 1.84 -s 1 -d 2 -p cbr -e 210 -c 1 -i 491 -a 1 - -t 1.84 -s 1 -d 2 -p cbr -e 210 -c 1 -i 491 -a 1 h -t 1.84 -s 1 -d 2 -p cbr -e 210 -c 1 -i 491 -a 1 r -t 1.84086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 477 -a 1 + -t 1.84086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 477 -a 1 r -t 1.84113 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 433 -a 0 -S 0 -y {10 10} + -t 1.84113 -s 4 -d 3 -p ack -e 40 -c 0 -i 492 -a 0 -S 0 -y {12 12} - -t 1.84113 -s 4 -d 3 -p ack -e 40 -c 0 -i 492 -a 0 -S 0 -y {12 12} h -t 1.84113 -s 4 -d 3 -p ack -e 40 -c 0 -i 492 -a 0 -S 0 -y {-1 -1} r -t 1.84193 -s 3 -d 5 -p cbr -e 210 -c 1 -i 441 -a 1 r -t 1.84233 -s 2 -d 3 -p cbr -e 210 -c 1 -i 457 -a 1 + -t 1.84233 -s 3 -d 5 -p cbr -e 210 -c 1 -i 457 -a 1 - -t 1.84233 -s 3 -d 5 -p cbr -e 210 -c 1 -i 457 -a 1 h -t 1.84233 -s 3 -d 5 -p cbr -e 210 -c 1 -i 457 -a 1 - -t 1.84273 -s 2 -d 3 -p cbr -e 210 -c 1 -i 474 -a 1 h -t 1.84273 -s 2 -d 3 -p cbr -e 210 -c 1 -i 474 -a 1 + -t 1.84375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 493 -a 1 - -t 1.84375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 493 -a 1 h -t 1.84375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 493 -a 1 r -t 1.84461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 478 -a 1 + -t 1.84461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 478 -a 1 r -t 1.84529 -s 3 -d 5 -p cbr -e 210 -c 1 -i 442 -a 1 r -t 1.84569 -s 2 -d 3 -p cbr -e 210 -c 1 -i 458 -a 1 + -t 1.84569 -s 3 -d 5 -p cbr -e 210 -c 1 -i 458 -a 1 - -t 1.84569 -s 3 -d 5 -p cbr -e 210 -c 1 -i 458 -a 1 h -t 1.84569 -s 3 -d 5 -p cbr -e 210 -c 1 -i 458 -a 1 - -t 1.84609 -s 2 -d 3 -p cbr -e 210 -c 1 -i 475 -a 1 h -t 1.84609 -s 2 -d 3 -p cbr -e 210 -c 1 -i 475 -a 1 + -t 1.8475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 494 -a 1 - -t 1.8475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 494 -a 1 h -t 1.8475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 494 -a 1 r -t 1.84836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 479 -a 1 + -t 1.84836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 479 -a 1 r -t 1.84865 -s 3 -d 5 -p cbr -e 210 -c 1 -i 443 -a 1 r -t 1.84905 -s 2 -d 3 -p cbr -e 210 -c 1 -i 459 -a 1 + -t 1.84905 -s 3 -d 5 -p cbr -e 210 -c 1 -i 459 -a 1 - -t 1.84905 -s 3 -d 5 -p cbr -e 210 -c 1 -i 459 -a 1 h -t 1.84905 -s 3 -d 5 -p cbr -e 210 -c 1 -i 459 -a 1 - -t 1.84945 -s 2 -d 3 -p cbr -e 210 -c 1 -i 476 -a 1 h -t 1.84945 -s 2 -d 3 -p cbr -e 210 -c 1 -i 476 -a 1 + -t 1.85125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 495 -a 1 - -t 1.85125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 495 -a 1 h -t 1.85125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 495 -a 1 r -t 1.85201 -s 3 -d 5 -p cbr -e 210 -c 1 -i 444 -a 1 r -t 1.85211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 480 -a 1 + -t 1.85211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 480 -a 1 r -t 1.85241 -s 2 -d 3 -p cbr -e 210 -c 1 -i 460 -a 1 + -t 1.85241 -s 3 -d 5 -p cbr -e 210 -c 1 -i 460 -a 1 - -t 1.85241 -s 3 -d 5 -p cbr -e 210 -c 1 -i 460 -a 1 h -t 1.85241 -s 3 -d 5 -p cbr -e 210 -c 1 -i 460 -a 1 - -t 1.85281 -s 2 -d 3 -p cbr -e 210 -c 1 -i 477 -a 1 h -t 1.85281 -s 2 -d 3 -p cbr -e 210 -c 1 -i 477 -a 1 + -t 1.855 -s 1 -d 2 -p cbr -e 210 -c 1 -i 496 -a 1 - -t 1.855 -s 1 -d 2 -p cbr -e 210 -c 1 -i 496 -a 1 h -t 1.855 -s 1 -d 2 -p cbr -e 210 -c 1 -i 496 -a 1 r -t 1.85537 -s 3 -d 5 -p cbr -e 210 -c 1 -i 445 -a 1 r -t 1.85577 -s 2 -d 3 -p cbr -e 210 -c 1 -i 461 -a 1 + -t 1.85577 -s 3 -d 5 -p cbr -e 210 -c 1 -i 461 -a 1 - -t 1.85577 -s 3 -d 5 -p cbr -e 210 -c 1 -i 461 -a 1 h -t 1.85577 -s 3 -d 5 -p cbr -e 210 -c 1 -i 461 -a 1 r -t 1.85586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 481 -a 1 + -t 1.85586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 481 -a 1 - -t 1.85617 -s 2 -d 3 -p cbr -e 210 -c 1 -i 478 -a 1 h -t 1.85617 -s 2 -d 3 -p cbr -e 210 -c 1 -i 478 -a 1 r -t 1.85873 -s 3 -d 5 -p cbr -e 210 -c 1 -i 446 -a 1 + -t 1.85875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 497 -a 1 - -t 1.85875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 497 -a 1 h -t 1.85875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 497 -a 1 r -t 1.85913 -s 2 -d 3 -p cbr -e 210 -c 1 -i 462 -a 1 + -t 1.85913 -s 3 -d 5 -p cbr -e 210 -c 1 -i 462 -a 1 - -t 1.85913 -s 3 -d 5 -p cbr -e 210 -c 1 -i 462 -a 1 h -t 1.85913 -s 3 -d 5 -p cbr -e 210 -c 1 -i 462 -a 1 - -t 1.85953 -s 2 -d 3 -p cbr -e 210 -c 1 -i 479 -a 1 h -t 1.85953 -s 2 -d 3 -p cbr -e 210 -c 1 -i 479 -a 1 r -t 1.85961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 482 -a 1 + -t 1.85961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 482 -a 1 r -t 1.86209 -s 3 -d 5 -p cbr -e 210 -c 1 -i 447 -a 1 r -t 1.86249 -s 2 -d 3 -p cbr -e 210 -c 1 -i 463 -a 1 + -t 1.86249 -s 3 -d 5 -p cbr -e 210 -c 1 -i 463 -a 1 - -t 1.86249 -s 3 -d 5 -p cbr -e 210 -c 1 -i 463 -a 1 h -t 1.86249 -s 3 -d 5 -p cbr -e 210 -c 1 -i 463 -a 1 + -t 1.8625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 498 -a 1 - -t 1.8625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 498 -a 1 h -t 1.8625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 498 -a 1 - -t 1.86289 -s 2 -d 3 -p cbr -e 210 -c 1 -i 480 -a 1 h -t 1.86289 -s 2 -d 3 -p cbr -e 210 -c 1 -i 480 -a 1 r -t 1.86336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 483 -a 1 + -t 1.86336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 483 -a 1 r -t 1.86545 -s 3 -d 5 -p cbr -e 210 -c 1 -i 448 -a 1 r -t 1.86585 -s 2 -d 3 -p cbr -e 210 -c 1 -i 464 -a 1 + -t 1.86585 -s 3 -d 5 -p cbr -e 210 -c 1 -i 464 -a 1 - -t 1.86585 -s 3 -d 5 -p cbr -e 210 -c 1 -i 464 -a 1 h -t 1.86585 -s 3 -d 5 -p cbr -e 210 -c 1 -i 464 -a 1 + -t 1.86625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 499 -a 1 - -t 1.86625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 499 -a 1 h -t 1.86625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 499 -a 1 - -t 1.86625 -s 2 -d 3 -p cbr -e 210 -c 1 -i 481 -a 1 h -t 1.86625 -s 2 -d 3 -p cbr -e 210 -c 1 -i 481 -a 1 r -t 1.86711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 484 -a 1 + -t 1.86711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 484 -a 1 r -t 1.86881 -s 3 -d 5 -p cbr -e 210 -c 1 -i 449 -a 1 r -t 1.86921 -s 2 -d 3 -p cbr -e 210 -c 1 -i 465 -a 1 + -t 1.86921 -s 3 -d 5 -p cbr -e 210 -c 1 -i 465 -a 1 - -t 1.86921 -s 3 -d 5 -p cbr -e 210 -c 1 -i 465 -a 1 h -t 1.86921 -s 3 -d 5 -p cbr -e 210 -c 1 -i 465 -a 1 - -t 1.86961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 482 -a 1 h -t 1.86961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 482 -a 1 + -t 1.87 -s 1 -d 2 -p cbr -e 210 -c 1 -i 500 -a 1 - -t 1.87 -s 1 -d 2 -p cbr -e 210 -c 1 -i 500 -a 1 h -t 1.87 -s 1 -d 2 -p cbr -e 210 -c 1 -i 500 -a 1 r -t 1.87086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 485 -a 1 + -t 1.87086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 485 -a 1 r -t 1.87217 -s 3 -d 5 -p cbr -e 210 -c 1 -i 450 -a 1 r -t 1.87257 -s 2 -d 3 -p cbr -e 210 -c 1 -i 466 -a 1 + -t 1.87257 -s 3 -d 5 -p cbr -e 210 -c 1 -i 466 -a 1 - -t 1.87257 -s 3 -d 5 -p cbr -e 210 -c 1 -i 466 -a 1 h -t 1.87257 -s 3 -d 5 -p cbr -e 210 -c 1 -i 466 -a 1 r -t 1.87291 -s 3 -d 2 -p ack -e 48 -c 0 -i 472 -a 0 -S 0 -y {9 9} + -t 1.87291 -s 2 -d 0 -p ack -e 48 -c 0 -i 472 -a 0 -S 0 -y {9 9} - -t 1.87291 -s 2 -d 0 -p ack -e 48 -c 0 -i 472 -a 0 -S 0 -f 0 -m 1 -y {9 9} h -t 1.87291 -s 2 -d 0 -p ack -e 48 -c 0 -i 472 -a 0 -S 0 -y {-1 -1} - -t 1.87297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 483 -a 1 h -t 1.87297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 483 -a 1 + -t 1.87375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 501 -a 1 - -t 1.87375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 501 -a 1 h -t 1.87375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 501 -a 1 r -t 1.87461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 486 -a 1 + -t 1.87461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 486 -a 1 r -t 1.87553 -s 3 -d 5 -p cbr -e 210 -c 1 -i 451 -a 1 r -t 1.87593 -s 2 -d 3 -p cbr -e 210 -c 1 -i 467 -a 1 + -t 1.87593 -s 3 -d 5 -p cbr -e 210 -c 1 -i 467 -a 1 - -t 1.87593 -s 3 -d 5 -p cbr -e 210 -c 1 -i 467 -a 1 h -t 1.87593 -s 3 -d 5 -p cbr -e 210 -c 1 -i 467 -a 1 - -t 1.87633 -s 2 -d 3 -p cbr -e 210 -c 1 -i 484 -a 1 h -t 1.87633 -s 2 -d 3 -p cbr -e 210 -c 1 -i 484 -a 1 + -t 1.8775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 502 -a 1 - -t 1.8775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 502 -a 1 h -t 1.8775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 502 -a 1 r -t 1.87836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 487 -a 1 + -t 1.87836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 487 -a 1 r -t 1.87889 -s 3 -d 5 -p cbr -e 210 -c 1 -i 452 -a 1 r -t 1.87929 -s 2 -d 3 -p cbr -e 210 -c 1 -i 468 -a 1 + -t 1.87929 -s 3 -d 5 -p cbr -e 210 -c 1 -i 468 -a 1 - -t 1.87929 -s 3 -d 5 -p cbr -e 210 -c 1 -i 468 -a 1 h -t 1.87929 -s 3 -d 5 -p cbr -e 210 -c 1 -i 468 -a 1 - -t 1.87969 -s 2 -d 3 -p cbr -e 210 -c 1 -i 485 -a 1 h -t 1.87969 -s 2 -d 3 -p cbr -e 210 -c 1 -i 485 -a 1 + -t 1.88125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 503 -a 1 - -t 1.88125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 503 -a 1 h -t 1.88125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 503 -a 1 r -t 1.88211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 488 -a 1 + -t 1.88211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 488 -a 1 r -t 1.88225 -s 3 -d 5 -p cbr -e 210 -c 1 -i 453 -a 1 r -t 1.88265 -s 2 -d 3 -p cbr -e 210 -c 1 -i 469 -a 1 + -t 1.88265 -s 3 -d 5 -p cbr -e 210 -c 1 -i 469 -a 1 - -t 1.88265 -s 3 -d 5 -p cbr -e 210 -c 1 -i 469 -a 1 h -t 1.88265 -s 3 -d 5 -p cbr -e 210 -c 1 -i 469 -a 1 - -t 1.88305 -s 2 -d 3 -p cbr -e 210 -c 1 -i 486 -a 1 h -t 1.88305 -s 2 -d 3 -p cbr -e 210 -c 1 -i 486 -a 1 + -t 1.885 -s 1 -d 2 -p cbr -e 210 -c 1 -i 504 -a 1 - -t 1.885 -s 1 -d 2 -p cbr -e 210 -c 1 -i 504 -a 1 h -t 1.885 -s 1 -d 2 -p cbr -e 210 -c 1 -i 504 -a 1 r -t 1.88561 -s 3 -d 5 -p cbr -e 210 -c 1 -i 454 -a 1 r -t 1.88586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 489 -a 1 + -t 1.88586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 489 -a 1 r -t 1.88601 -s 2 -d 3 -p cbr -e 210 -c 1 -i 470 -a 1 + -t 1.88601 -s 3 -d 5 -p cbr -e 210 -c 1 -i 470 -a 1 - -t 1.88601 -s 3 -d 5 -p cbr -e 210 -c 1 -i 470 -a 1 h -t 1.88601 -s 3 -d 5 -p cbr -e 210 -c 1 -i 470 -a 1 - -t 1.88641 -s 2 -d 3 -p cbr -e 210 -c 1 -i 487 -a 1 h -t 1.88641 -s 2 -d 3 -p cbr -e 210 -c 1 -i 487 -a 1 + -t 1.88875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 505 -a 1 - -t 1.88875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 505 -a 1 h -t 1.88875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 505 -a 1 r -t 1.88897 -s 3 -d 5 -p cbr -e 210 -c 1 -i 455 -a 1 r -t 1.88937 -s 2 -d 3 -p cbr -e 210 -c 1 -i 471 -a 1 + -t 1.88937 -s 3 -d 5 -p cbr -e 210 -c 1 -i 471 -a 1 - -t 1.88937 -s 3 -d 5 -p cbr -e 210 -c 1 -i 471 -a 1 h -t 1.88937 -s 3 -d 5 -p cbr -e 210 -c 1 -i 471 -a 1 r -t 1.88961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 490 -a 1 + -t 1.88961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 490 -a 1 - -t 1.88977 -s 2 -d 3 -p cbr -e 210 -c 1 -i 488 -a 1 h -t 1.88977 -s 2 -d 3 -p cbr -e 210 -c 1 -i 488 -a 1 r -t 1.89177 -s 4 -d 3 -p ack -e 40 -c 0 -i 492 -a 0 -S 0 -y {12 12} + -t 1.89177 -s 3 -d 2 -p ack -e 40 -c 0 -i 492 -a 0 -S 0 -y {12 12} - -t 1.89177 -s 3 -d 2 -p ack -e 40 -c 0 -i 492 -a 0 -S 0 -y {12 12} h -t 1.89177 -s 3 -d 2 -p ack -e 40 -c 0 -i 492 -a 0 -S 0 -y {-1 -1} r -t 1.89233 -s 3 -d 5 -p cbr -e 210 -c 1 -i 456 -a 1 + -t 1.8925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 506 -a 1 - -t 1.8925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 506 -a 1 h -t 1.8925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 506 -a 1 r -t 1.89273 -s 2 -d 3 -p cbr -e 210 -c 1 -i 473 -a 1 + -t 1.89273 -s 3 -d 5 -p cbr -e 210 -c 1 -i 473 -a 1 - -t 1.89273 -s 3 -d 5 -p cbr -e 210 -c 1 -i 473 -a 1 h -t 1.89273 -s 3 -d 5 -p cbr -e 210 -c 1 -i 473 -a 1 - -t 1.89313 -s 2 -d 3 -p cbr -e 210 -c 1 -i 489 -a 1 h -t 1.89313 -s 2 -d 3 -p cbr -e 210 -c 1 -i 489 -a 1 r -t 1.89336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 491 -a 1 + -t 1.89336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 491 -a 1 r -t 1.89569 -s 3 -d 5 -p cbr -e 210 -c 1 -i 457 -a 1 r -t 1.89609 -s 2 -d 3 -p cbr -e 210 -c 1 -i 474 -a 1 + -t 1.89609 -s 3 -d 5 -p cbr -e 210 -c 1 -i 474 -a 1 - -t 1.89609 -s 3 -d 5 -p cbr -e 210 -c 1 -i 474 -a 1 h -t 1.89609 -s 3 -d 5 -p cbr -e 210 -c 1 -i 474 -a 1 + -t 1.89625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 507 -a 1 - -t 1.89625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 507 -a 1 h -t 1.89625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 507 -a 1 - -t 1.89649 -s 2 -d 3 -p cbr -e 210 -c 1 -i 490 -a 1 h -t 1.89649 -s 2 -d 3 -p cbr -e 210 -c 1 -i 490 -a 1 r -t 1.89711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 493 -a 1 + -t 1.89711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 493 -a 1 r -t 1.89905 -s 3 -d 5 -p cbr -e 210 -c 1 -i 458 -a 1 r -t 1.89945 -s 2 -d 3 -p cbr -e 210 -c 1 -i 475 -a 1 + -t 1.89945 -s 3 -d 5 -p cbr -e 210 -c 1 -i 475 -a 1 - -t 1.89945 -s 3 -d 5 -p cbr -e 210 -c 1 -i 475 -a 1 h -t 1.89945 -s 3 -d 5 -p cbr -e 210 -c 1 -i 475 -a 1 - -t 1.89985 -s 2 -d 3 -p cbr -e 210 -c 1 -i 491 -a 1 h -t 1.89985 -s 2 -d 3 -p cbr -e 210 -c 1 -i 491 -a 1 + -t 1.9 -s 1 -d 2 -p cbr -e 210 -c 1 -i 508 -a 1 - -t 1.9 -s 1 -d 2 -p cbr -e 210 -c 1 -i 508 -a 1 h -t 1.9 -s 1 -d 2 -p cbr -e 210 -c 1 -i 508 -a 1 r -t 1.90086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 494 -a 1 + -t 1.90086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 494 -a 1 r -t 1.90241 -s 3 -d 5 -p cbr -e 210 -c 1 -i 459 -a 1 r -t 1.90281 -s 2 -d 3 -p cbr -e 210 -c 1 -i 476 -a 1 + -t 1.90281 -s 3 -d 5 -p cbr -e 210 -c 1 -i 476 -a 1 - -t 1.90281 -s 3 -d 5 -p cbr -e 210 -c 1 -i 476 -a 1 h -t 1.90281 -s 3 -d 5 -p cbr -e 210 -c 1 -i 476 -a 1 - -t 1.90321 -s 2 -d 3 -p cbr -e 210 -c 1 -i 493 -a 1 h -t 1.90321 -s 2 -d 3 -p cbr -e 210 -c 1 -i 493 -a 1 + -t 1.90375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 509 -a 1 - -t 1.90375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 509 -a 1 h -t 1.90375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 509 -a 1 r -t 1.90461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 495 -a 1 + -t 1.90461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 495 -a 1 r -t 1.90577 -s 3 -d 5 -p cbr -e 210 -c 1 -i 460 -a 1 r -t 1.90617 -s 2 -d 3 -p cbr -e 210 -c 1 -i 477 -a 1 + -t 1.90617 -s 3 -d 5 -p cbr -e 210 -c 1 -i 477 -a 1 - -t 1.90617 -s 3 -d 5 -p cbr -e 210 -c 1 -i 477 -a 1 h -t 1.90617 -s 3 -d 5 -p cbr -e 210 -c 1 -i 477 -a 1 - -t 1.90657 -s 2 -d 3 -p cbr -e 210 -c 1 -i 494 -a 1 h -t 1.90657 -s 2 -d 3 -p cbr -e 210 -c 1 -i 494 -a 1 + -t 1.9075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 510 -a 1 - -t 1.9075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 510 -a 1 h -t 1.9075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 510 -a 1 r -t 1.90836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 496 -a 1 + -t 1.90836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 496 -a 1 r -t 1.90913 -s 3 -d 5 -p cbr -e 210 -c 1 -i 461 -a 1 r -t 1.90953 -s 2 -d 3 -p cbr -e 210 -c 1 -i 478 -a 1 + -t 1.90953 -s 3 -d 5 -p cbr -e 210 -c 1 -i 478 -a 1 - -t 1.90953 -s 3 -d 5 -p cbr -e 210 -c 1 -i 478 -a 1 h -t 1.90953 -s 3 -d 5 -p cbr -e 210 -c 1 -i 478 -a 1 - -t 1.90993 -s 2 -d 3 -p cbr -e 210 -c 1 -i 495 -a 1 h -t 1.90993 -s 2 -d 3 -p cbr -e 210 -c 1 -i 495 -a 1 + -t 1.91125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 511 -a 1 - -t 1.91125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 511 -a 1 h -t 1.91125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 511 -a 1 r -t 1.91211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 497 -a 1 + -t 1.91211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 497 -a 1 r -t 1.91249 -s 3 -d 5 -p cbr -e 210 -c 1 -i 462 -a 1 r -t 1.91289 -s 2 -d 3 -p cbr -e 210 -c 1 -i 479 -a 1 + -t 1.91289 -s 3 -d 5 -p cbr -e 210 -c 1 -i 479 -a 1 - -t 1.91289 -s 3 -d 5 -p cbr -e 210 -c 1 -i 479 -a 1 h -t 1.91289 -s 3 -d 5 -p cbr -e 210 -c 1 -i 479 -a 1 - -t 1.91329 -s 2 -d 3 -p cbr -e 210 -c 1 -i 496 -a 1 h -t 1.91329 -s 2 -d 3 -p cbr -e 210 -c 1 -i 496 -a 1 + -t 1.915 -s 1 -d 2 -p cbr -e 210 -c 1 -i 512 -a 1 - -t 1.915 -s 1 -d 2 -p cbr -e 210 -c 1 -i 512 -a 1 h -t 1.915 -s 1 -d 2 -p cbr -e 210 -c 1 -i 512 -a 1 r -t 1.91585 -s 3 -d 5 -p cbr -e 210 -c 1 -i 463 -a 1 r -t 1.91586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 498 -a 1 + -t 1.91586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 498 -a 1 r -t 1.91625 -s 2 -d 3 -p cbr -e 210 -c 1 -i 480 -a 1 + -t 1.91625 -s 3 -d 5 -p cbr -e 210 -c 1 -i 480 -a 1 - -t 1.91625 -s 3 -d 5 -p cbr -e 210 -c 1 -i 480 -a 1 h -t 1.91625 -s 3 -d 5 -p cbr -e 210 -c 1 -i 480 -a 1 - -t 1.91665 -s 2 -d 3 -p cbr -e 210 -c 1 -i 497 -a 1 h -t 1.91665 -s 2 -d 3 -p cbr -e 210 -c 1 -i 497 -a 1 + -t 1.91875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 513 -a 1 - -t 1.91875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 513 -a 1 h -t 1.91875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 513 -a 1 r -t 1.91921 -s 3 -d 5 -p cbr -e 210 -c 1 -i 464 -a 1 r -t 1.91961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 499 -a 1 + -t 1.91961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 499 -a 1 r -t 1.91961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 481 -a 1 + -t 1.91961 -s 3 -d 5 -p cbr -e 210 -c 1 -i 481 -a 1 - -t 1.91961 -s 3 -d 5 -p cbr -e 210 -c 1 -i 481 -a 1 h -t 1.91961 -s 3 -d 5 -p cbr -e 210 -c 1 -i 481 -a 1 - -t 1.92001 -s 2 -d 3 -p cbr -e 210 -c 1 -i 498 -a 1 h -t 1.92001 -s 2 -d 3 -p cbr -e 210 -c 1 -i 498 -a 1 + -t 1.9225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 514 -a 1 - -t 1.9225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 514 -a 1 h -t 1.9225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 514 -a 1 r -t 1.92257 -s 3 -d 5 -p cbr -e 210 -c 1 -i 465 -a 1 r -t 1.92297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 482 -a 1 + -t 1.92297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 482 -a 1 - -t 1.92297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 482 -a 1 h -t 1.92297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 482 -a 1 r -t 1.92336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 500 -a 1 + -t 1.92336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 500 -a 1 - -t 1.92337 -s 2 -d 3 -p cbr -e 210 -c 1 -i 499 -a 1 h -t 1.92337 -s 2 -d 3 -p cbr -e 210 -c 1 -i 499 -a 1 r -t 1.92367 -s 2 -d 0 -p ack -e 48 -c 0 -i 472 -a 0 -S 0 -y {9 9} + -t 1.92367 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 515 -a 0 -S 0 -f 0 -m 0 -y {13 13} - -t 1.92367 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 515 -a 0 -S 0 -y {13 13} h -t 1.92367 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 515 -a 0 -S 0 -y {-1 -1} + -t 1.92367 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 516 -a 0 -S 0 -f 0 -m 0 -y {14 14} r -t 1.92593 -s 3 -d 5 -p cbr -e 210 -c 1 -i 466 -a 1 + -t 1.92625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 517 -a 1 - -t 1.92625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 517 -a 1 h -t 1.92625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 517 -a 1 r -t 1.92633 -s 2 -d 3 -p cbr -e 210 -c 1 -i 483 -a 1 + -t 1.92633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 483 -a 1 - -t 1.92633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 483 -a 1 h -t 1.92633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 483 -a 1 - -t 1.92673 -s 2 -d 3 -p cbr -e 210 -c 1 -i 500 -a 1 h -t 1.92673 -s 2 -d 3 -p cbr -e 210 -c 1 -i 500 -a 1 r -t 1.92711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 501 -a 1 + -t 1.92711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 501 -a 1 r -t 1.92929 -s 3 -d 5 -p cbr -e 210 -c 1 -i 467 -a 1 r -t 1.92969 -s 2 -d 3 -p cbr -e 210 -c 1 -i 484 -a 1 + -t 1.92969 -s 3 -d 5 -p cbr -e 210 -c 1 -i 484 -a 1 - -t 1.92969 -s 3 -d 5 -p cbr -e 210 -c 1 -i 484 -a 1 h -t 1.92969 -s 3 -d 5 -p cbr -e 210 -c 1 -i 484 -a 1 + -t 1.93 -s 1 -d 2 -p cbr -e 210 -c 1 -i 518 -a 1 - -t 1.93 -s 1 -d 2 -p cbr -e 210 -c 1 -i 518 -a 1 h -t 1.93 -s 1 -d 2 -p cbr -e 210 -c 1 -i 518 -a 1 - -t 1.93009 -s 2 -d 3 -p cbr -e 210 -c 1 -i 501 -a 1 h -t 1.93009 -s 2 -d 3 -p cbr -e 210 -c 1 -i 501 -a 1 r -t 1.93086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 502 -a 1 + -t 1.93086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 502 -a 1 r -t 1.93265 -s 3 -d 5 -p cbr -e 210 -c 1 -i 468 -a 1 r -t 1.93305 -s 2 -d 3 -p cbr -e 210 -c 1 -i 485 -a 1 + -t 1.93305 -s 3 -d 5 -p cbr -e 210 -c 1 -i 485 -a 1 - -t 1.93305 -s 3 -d 5 -p cbr -e 210 -c 1 -i 485 -a 1 h -t 1.93305 -s 3 -d 5 -p cbr -e 210 -c 1 -i 485 -a 1 - -t 1.93345 -s 2 -d 3 -p cbr -e 210 -c 1 -i 502 -a 1 h -t 1.93345 -s 2 -d 3 -p cbr -e 210 -c 1 -i 502 -a 1 + -t 1.93375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 519 -a 1 - -t 1.93375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 519 -a 1 h -t 1.93375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 519 -a 1 r -t 1.93461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 503 -a 1 + -t 1.93461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 503 -a 1 r -t 1.93601 -s 3 -d 5 -p cbr -e 210 -c 1 -i 469 -a 1 r -t 1.93641 -s 2 -d 3 -p cbr -e 210 -c 1 -i 486 -a 1 + -t 1.93641 -s 3 -d 5 -p cbr -e 210 -c 1 -i 486 -a 1 - -t 1.93641 -s 3 -d 5 -p cbr -e 210 -c 1 -i 486 -a 1 h -t 1.93641 -s 3 -d 5 -p cbr -e 210 -c 1 -i 486 -a 1 - -t 1.93681 -s 2 -d 3 -p cbr -e 210 -c 1 -i 503 -a 1 h -t 1.93681 -s 2 -d 3 -p cbr -e 210 -c 1 -i 503 -a 1 + -t 1.9375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 520 -a 1 - -t 1.9375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 520 -a 1 h -t 1.9375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 520 -a 1 r -t 1.93836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 504 -a 1 + -t 1.93836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 504 -a 1 r -t 1.93937 -s 3 -d 5 -p cbr -e 210 -c 1 -i 470 -a 1 - -t 1.93967 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 516 -a 0 -S 0 -y {14 14} h -t 1.93967 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 516 -a 0 -S 0 -y {-1 -1} r -t 1.93977 -s 2 -d 3 -p cbr -e 210 -c 1 -i 487 -a 1 + -t 1.93977 -s 3 -d 5 -p cbr -e 210 -c 1 -i 487 -a 1 - -t 1.93977 -s 3 -d 5 -p cbr -e 210 -c 1 -i 487 -a 1 h -t 1.93977 -s 3 -d 5 -p cbr -e 210 -c 1 -i 487 -a 1 - -t 1.94017 -s 2 -d 3 -p cbr -e 210 -c 1 -i 504 -a 1 h -t 1.94017 -s 2 -d 3 -p cbr -e 210 -c 1 -i 504 -a 1 + -t 1.94125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 521 -a 1 - -t 1.94125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 521 -a 1 h -t 1.94125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 521 -a 1 r -t 1.94211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 505 -a 1 + -t 1.94211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 505 -a 1 r -t 1.94241 -s 3 -d 2 -p ack -e 40 -c 0 -i 492 -a 0 -S 0 -y {12 12} + -t 1.94241 -s 2 -d 0 -p ack -e 40 -c 0 -i 492 -a 0 -S 0 -y {12 12} - -t 1.94241 -s 2 -d 0 -p ack -e 40 -c 0 -i 492 -a 0 -S 0 -f 0 -m 1 -y {12 12} h -t 1.94241 -s 2 -d 0 -p ack -e 40 -c 0 -i 492 -a 0 -S 0 -y {-1 -1} r -t 1.94273 -s 3 -d 5 -p cbr -e 210 -c 1 -i 471 -a 1 r -t 1.94313 -s 2 -d 3 -p cbr -e 210 -c 1 -i 488 -a 1 + -t 1.94313 -s 3 -d 5 -p cbr -e 210 -c 1 -i 488 -a 1 - -t 1.94313 -s 3 -d 5 -p cbr -e 210 -c 1 -i 488 -a 1 h -t 1.94313 -s 3 -d 5 -p cbr -e 210 -c 1 -i 488 -a 1 - -t 1.94353 -s 2 -d 3 -p cbr -e 210 -c 1 -i 505 -a 1 h -t 1.94353 -s 2 -d 3 -p cbr -e 210 -c 1 -i 505 -a 1 + -t 1.945 -s 1 -d 2 -p cbr -e 210 -c 1 -i 522 -a 1 - -t 1.945 -s 1 -d 2 -p cbr -e 210 -c 1 -i 522 -a 1 h -t 1.945 -s 1 -d 2 -p cbr -e 210 -c 1 -i 522 -a 1 r -t 1.94586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 506 -a 1 + -t 1.94586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 506 -a 1 r -t 1.94609 -s 3 -d 5 -p cbr -e 210 -c 1 -i 473 -a 1 r -t 1.94649 -s 2 -d 3 -p cbr -e 210 -c 1 -i 489 -a 1 + -t 1.94649 -s 3 -d 5 -p cbr -e 210 -c 1 -i 489 -a 1 - -t 1.94649 -s 3 -d 5 -p cbr -e 210 -c 1 -i 489 -a 1 h -t 1.94649 -s 3 -d 5 -p cbr -e 210 -c 1 -i 489 -a 1 - -t 1.94689 -s 2 -d 3 -p cbr -e 210 -c 1 -i 506 -a 1 h -t 1.94689 -s 2 -d 3 -p cbr -e 210 -c 1 -i 506 -a 1 + -t 1.94875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 523 -a 1 - -t 1.94875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 523 -a 1 h -t 1.94875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 523 -a 1 r -t 1.94945 -s 3 -d 5 -p cbr -e 210 -c 1 -i 474 -a 1 r -t 1.94961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 507 -a 1 + -t 1.94961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 507 -a 1 r -t 1.94985 -s 2 -d 3 -p cbr -e 210 -c 1 -i 490 -a 1 + -t 1.94985 -s 3 -d 5 -p cbr -e 210 -c 1 -i 490 -a 1 - -t 1.94985 -s 3 -d 5 -p cbr -e 210 -c 1 -i 490 -a 1 h -t 1.94985 -s 3 -d 5 -p cbr -e 210 -c 1 -i 490 -a 1 - -t 1.95025 -s 2 -d 3 -p cbr -e 210 -c 1 -i 507 -a 1 h -t 1.95025 -s 2 -d 3 -p cbr -e 210 -c 1 -i 507 -a 1 + -t 1.9525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 524 -a 1 - -t 1.9525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 524 -a 1 h -t 1.9525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 524 -a 1 r -t 1.95281 -s 3 -d 5 -p cbr -e 210 -c 1 -i 475 -a 1 r -t 1.95321 -s 2 -d 3 -p cbr -e 210 -c 1 -i 491 -a 1 + -t 1.95321 -s 3 -d 5 -p cbr -e 210 -c 1 -i 491 -a 1 - -t 1.95321 -s 3 -d 5 -p cbr -e 210 -c 1 -i 491 -a 1 h -t 1.95321 -s 3 -d 5 -p cbr -e 210 -c 1 -i 491 -a 1 r -t 1.95336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 508 -a 1 + -t 1.95336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 508 -a 1 - -t 1.95361 -s 2 -d 3 -p cbr -e 210 -c 1 -i 508 -a 1 h -t 1.95361 -s 2 -d 3 -p cbr -e 210 -c 1 -i 508 -a 1 r -t 1.95617 -s 3 -d 5 -p cbr -e 210 -c 1 -i 476 -a 1 + -t 1.95625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 525 -a 1 - -t 1.95625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 525 -a 1 h -t 1.95625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 525 -a 1 r -t 1.95657 -s 2 -d 3 -p cbr -e 210 -c 1 -i 493 -a 1 + -t 1.95657 -s 3 -d 5 -p cbr -e 210 -c 1 -i 493 -a 1 - -t 1.95657 -s 3 -d 5 -p cbr -e 210 -c 1 -i 493 -a 1 h -t 1.95657 -s 3 -d 5 -p cbr -e 210 -c 1 -i 493 -a 1 r -t 1.95711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 509 -a 1 + -t 1.95711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 509 -a 1 - -t 1.95711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 509 -a 1 h -t 1.95711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 509 -a 1 r -t 1.95953 -s 3 -d 5 -p cbr -e 210 -c 1 -i 477 -a 1 r -t 1.95993 -s 2 -d 3 -p cbr -e 210 -c 1 -i 494 -a 1 + -t 1.95993 -s 3 -d 5 -p cbr -e 210 -c 1 -i 494 -a 1 - -t 1.95993 -s 3 -d 5 -p cbr -e 210 -c 1 -i 494 -a 1 h -t 1.95993 -s 3 -d 5 -p cbr -e 210 -c 1 -i 494 -a 1 + -t 1.96 -s 1 -d 2 -p cbr -e 210 -c 1 -i 526 -a 1 - -t 1.96 -s 1 -d 2 -p cbr -e 210 -c 1 -i 526 -a 1 h -t 1.96 -s 1 -d 2 -p cbr -e 210 -c 1 -i 526 -a 1 v -t 1.96 sim_annotation 1.96 25 TIMEOUT,Send Packet_13 : Initialize window size to 1 r -t 1.96086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 510 -a 1 + -t 1.96086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 510 -a 1 - -t 1.96086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 510 -a 1 h -t 1.96086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 510 -a 1 r -t 1.96289 -s 3 -d 5 -p cbr -e 210 -c 1 -i 478 -a 1 r -t 1.96329 -s 2 -d 3 -p cbr -e 210 -c 1 -i 495 -a 1 + -t 1.96329 -s 3 -d 5 -p cbr -e 210 -c 1 -i 495 -a 1 - -t 1.96329 -s 3 -d 5 -p cbr -e 210 -c 1 -i 495 -a 1 h -t 1.96329 -s 3 -d 5 -p cbr -e 210 -c 1 -i 495 -a 1 + -t 1.96375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 527 -a 1 - -t 1.96375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 527 -a 1 h -t 1.96375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 527 -a 1 r -t 1.96461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 511 -a 1 + -t 1.96461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 511 -a 1 - -t 1.96461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 511 -a 1 h -t 1.96461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 511 -a 1 r -t 1.96625 -s 3 -d 5 -p cbr -e 210 -c 1 -i 479 -a 1 r -t 1.96665 -s 2 -d 3 -p cbr -e 210 -c 1 -i 496 -a 1 + -t 1.96665 -s 3 -d 5 -p cbr -e 210 -c 1 -i 496 -a 1 - -t 1.96665 -s 3 -d 5 -p cbr -e 210 -c 1 -i 496 -a 1 h -t 1.96665 -s 3 -d 5 -p cbr -e 210 -c 1 -i 496 -a 1 + -t 1.9675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 528 -a 1 - -t 1.9675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 528 -a 1 h -t 1.9675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 528 -a 1 r -t 1.96836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 512 -a 1 + -t 1.96836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 512 -a 1 - -t 1.96836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 512 -a 1 h -t 1.96836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 512 -a 1 r -t 1.96961 -s 3 -d 5 -p cbr -e 210 -c 1 -i 480 -a 1 r -t 1.97001 -s 2 -d 3 -p cbr -e 210 -c 1 -i 497 -a 1 + -t 1.97001 -s 3 -d 5 -p cbr -e 210 -c 1 -i 497 -a 1 - -t 1.97001 -s 3 -d 5 -p cbr -e 210 -c 1 -i 497 -a 1 h -t 1.97001 -s 3 -d 5 -p cbr -e 210 -c 1 -i 497 -a 1 + -t 1.97125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 529 -a 1 - -t 1.97125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 529 -a 1 h -t 1.97125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 529 -a 1 r -t 1.97211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 513 -a 1 + -t 1.97211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 513 -a 1 - -t 1.97211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 513 -a 1 h -t 1.97211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 513 -a 1 r -t 1.97297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 481 -a 1 r -t 1.97337 -s 2 -d 3 -p cbr -e 210 -c 1 -i 498 -a 1 + -t 1.97337 -s 3 -d 5 -p cbr -e 210 -c 1 -i 498 -a 1 - -t 1.97337 -s 3 -d 5 -p cbr -e 210 -c 1 -i 498 -a 1 h -t 1.97337 -s 3 -d 5 -p cbr -e 210 -c 1 -i 498 -a 1 + -t 1.975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 530 -a 1 - -t 1.975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 530 -a 1 h -t 1.975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 530 -a 1 r -t 1.97586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 514 -a 1 + -t 1.97586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 514 -a 1 - -t 1.97586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 514 -a 1 h -t 1.97586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 514 -a 1 r -t 1.97633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 482 -a 1 r -t 1.97673 -s 2 -d 3 -p cbr -e 210 -c 1 -i 499 -a 1 + -t 1.97673 -s 3 -d 5 -p cbr -e 210 -c 1 -i 499 -a 1 - -t 1.97673 -s 3 -d 5 -p cbr -e 210 -c 1 -i 499 -a 1 h -t 1.97673 -s 3 -d 5 -p cbr -e 210 -c 1 -i 499 -a 1 + -t 1.97875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 531 -a 1 - -t 1.97875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 531 -a 1 h -t 1.97875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 531 -a 1 r -t 1.97961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 517 -a 1 + -t 1.97961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 517 -a 1 - -t 1.97961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 517 -a 1 h -t 1.97961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 517 -a 1 r -t 1.97969 -s 3 -d 5 -p cbr -e 210 -c 1 -i 483 -a 1 r -t 1.98009 -s 2 -d 3 -p cbr -e 210 -c 1 -i 500 -a 1 + -t 1.98009 -s 3 -d 5 -p cbr -e 210 -c 1 -i 500 -a 1 - -t 1.98009 -s 3 -d 5 -p cbr -e 210 -c 1 -i 500 -a 1 h -t 1.98009 -s 3 -d 5 -p cbr -e 210 -c 1 -i 500 -a 1 + -t 1.9825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 532 -a 1 - -t 1.9825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 532 -a 1 h -t 1.9825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 532 -a 1 r -t 1.98305 -s 3 -d 5 -p cbr -e 210 -c 1 -i 484 -a 1 r -t 1.98336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 518 -a 1 + -t 1.98336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 518 -a 1 - -t 1.98336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 518 -a 1 h -t 1.98336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 518 -a 1 r -t 1.98345 -s 2 -d 3 -p cbr -e 210 -c 1 -i 501 -a 1 + -t 1.98345 -s 3 -d 5 -p cbr -e 210 -c 1 -i 501 -a 1 - -t 1.98345 -s 3 -d 5 -p cbr -e 210 -c 1 -i 501 -a 1 h -t 1.98345 -s 3 -d 5 -p cbr -e 210 -c 1 -i 501 -a 1 + -t 1.98625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 533 -a 1 - -t 1.98625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 533 -a 1 h -t 1.98625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 533 -a 1 r -t 1.98641 -s 3 -d 5 -p cbr -e 210 -c 1 -i 485 -a 1 r -t 1.98681 -s 2 -d 3 -p cbr -e 210 -c 1 -i 502 -a 1 + -t 1.98681 -s 3 -d 5 -p cbr -e 210 -c 1 -i 502 -a 1 - -t 1.98681 -s 3 -d 5 -p cbr -e 210 -c 1 -i 502 -a 1 h -t 1.98681 -s 3 -d 5 -p cbr -e 210 -c 1 -i 502 -a 1 r -t 1.98711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 519 -a 1 + -t 1.98711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 519 -a 1 - -t 1.98711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 519 -a 1 h -t 1.98711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 519 -a 1 r -t 1.98967 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 515 -a 0 -S 0 -y {13 13} + -t 1.98967 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 515 -a 0 -S 0 -y {13 13} r -t 1.98977 -s 3 -d 5 -p cbr -e 210 -c 1 -i 486 -a 1 + -t 1.99 -s 1 -d 2 -p cbr -e 210 -c 1 -i 534 -a 1 - -t 1.99 -s 1 -d 2 -p cbr -e 210 -c 1 -i 534 -a 1 h -t 1.99 -s 1 -d 2 -p cbr -e 210 -c 1 -i 534 -a 1 r -t 1.99017 -s 2 -d 3 -p cbr -e 210 -c 1 -i 503 -a 1 + -t 1.99017 -s 3 -d 5 -p cbr -e 210 -c 1 -i 503 -a 1 - -t 1.99017 -s 3 -d 5 -p cbr -e 210 -c 1 -i 503 -a 1 h -t 1.99017 -s 3 -d 5 -p cbr -e 210 -c 1 -i 503 -a 1 - -t 1.99047 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 515 -a 0 -S 0 -y {13 13} h -t 1.99047 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 515 -a 0 -S 0 -y {-1 -1} r -t 1.99086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 520 -a 1 + -t 1.99086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 520 -a 1 r -t 1.99305 -s 2 -d 0 -p ack -e 40 -c 0 -i 492 -a 0 -S 0 -y {12 12} + -t 1.99305 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 535 -a 0 -S 0 -f 0 -m 0 -y {15 15} - -t 1.99305 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 535 -a 0 -S 0 -y {15 15} h -t 1.99305 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 535 -a 0 -S 0 -y {-1 -1} r -t 1.99313 -s 3 -d 5 -p cbr -e 210 -c 1 -i 487 -a 1 r -t 1.99353 -s 2 -d 3 -p cbr -e 210 -c 1 -i 504 -a 1 + -t 1.99353 -s 3 -d 5 -p cbr -e 210 -c 1 -i 504 -a 1 - -t 1.99353 -s 3 -d 5 -p cbr -e 210 -c 1 -i 504 -a 1 h -t 1.99353 -s 3 -d 5 -p cbr -e 210 -c 1 -i 504 -a 1 + -t 1.99375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 536 -a 1 - -t 1.99375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 536 -a 1 h -t 1.99375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 536 -a 1 r -t 1.99461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 521 -a 1 + -t 1.99461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 521 -a 1 r -t 1.99649 -s 3 -d 5 -p cbr -e 210 -c 1 -i 488 -a 1 r -t 1.99689 -s 2 -d 3 -p cbr -e 210 -c 1 -i 505 -a 1 + -t 1.99689 -s 3 -d 5 -p cbr -e 210 -c 1 -i 505 -a 1 - -t 1.99689 -s 3 -d 5 -p cbr -e 210 -c 1 -i 505 -a 1 h -t 1.99689 -s 3 -d 5 -p cbr -e 210 -c 1 -i 505 -a 1 + -t 1.9975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 537 -a 1 - -t 1.9975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 537 -a 1 h -t 1.9975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 537 -a 1 r -t 1.99836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 522 -a 1 + -t 1.99836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 522 -a 1 r -t 1.99985 -s 3 -d 5 -p cbr -e 210 -c 1 -i 489 -a 1 r -t 2.00025 -s 2 -d 3 -p cbr -e 210 -c 1 -i 506 -a 1 + -t 2.00025 -s 3 -d 5 -p cbr -e 210 -c 1 -i 506 -a 1 - -t 2.00025 -s 3 -d 5 -p cbr -e 210 -c 1 -i 506 -a 1 h -t 2.00025 -s 3 -d 5 -p cbr -e 210 -c 1 -i 506 -a 1 + -t 2.00125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 538 -a 1 - -t 2.00125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 538 -a 1 h -t 2.00125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 538 -a 1 r -t 2.00211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 523 -a 1 + -t 2.00211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 523 -a 1 r -t 2.00321 -s 3 -d 5 -p cbr -e 210 -c 1 -i 490 -a 1 r -t 2.00361 -s 2 -d 3 -p cbr -e 210 -c 1 -i 507 -a 1 + -t 2.00361 -s 3 -d 5 -p cbr -e 210 -c 1 -i 507 -a 1 - -t 2.00361 -s 3 -d 5 -p cbr -e 210 -c 1 -i 507 -a 1 h -t 2.00361 -s 3 -d 5 -p cbr -e 210 -c 1 -i 507 -a 1 + -t 2.005 -s 1 -d 2 -p cbr -e 210 -c 1 -i 539 -a 1 - -t 2.005 -s 1 -d 2 -p cbr -e 210 -c 1 -i 539 -a 1 h -t 2.005 -s 1 -d 2 -p cbr -e 210 -c 1 -i 539 -a 1 r -t 2.00567 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 516 -a 0 -S 0 -y {14 14} + -t 2.00567 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 516 -a 0 -S 0 -y {14 14} r -t 2.00586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 524 -a 1 + -t 2.00586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 524 -a 1 - -t 2.00647 -s 2 -d 3 -p cbr -e 210 -c 1 -i 520 -a 1 h -t 2.00647 -s 2 -d 3 -p cbr -e 210 -c 1 -i 520 -a 1 r -t 2.00657 -s 3 -d 5 -p cbr -e 210 -c 1 -i 491 -a 1 r -t 2.00697 -s 2 -d 3 -p cbr -e 210 -c 1 -i 508 -a 1 + -t 2.00697 -s 3 -d 5 -p cbr -e 210 -c 1 -i 508 -a 1 - -t 2.00697 -s 3 -d 5 -p cbr -e 210 -c 1 -i 508 -a 1 h -t 2.00697 -s 3 -d 5 -p cbr -e 210 -c 1 -i 508 -a 1 + -t 2.00875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 540 -a 1 - -t 2.00875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 540 -a 1 h -t 2.00875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 540 -a 1 r -t 2.00961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 525 -a 1 + -t 2.00961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 525 -a 1 - -t 2.00983 -s 2 -d 3 -p cbr -e 210 -c 1 -i 521 -a 1 h -t 2.00983 -s 2 -d 3 -p cbr -e 210 -c 1 -i 521 -a 1 r -t 2.00993 -s 3 -d 5 -p cbr -e 210 -c 1 -i 493 -a 1 r -t 2.01047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 509 -a 1 + -t 2.01047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 509 -a 1 - -t 2.01047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 509 -a 1 h -t 2.01047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 509 -a 1 + -t 2.0125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 541 -a 1 - -t 2.0125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 541 -a 1 h -t 2.0125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 541 -a 1 - -t 2.01319 -s 2 -d 3 -p cbr -e 210 -c 1 -i 522 -a 1 h -t 2.01319 -s 2 -d 3 -p cbr -e 210 -c 1 -i 522 -a 1 r -t 2.01329 -s 3 -d 5 -p cbr -e 210 -c 1 -i 494 -a 1 r -t 2.01336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 526 -a 1 + -t 2.01336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 526 -a 1 r -t 2.01422 -s 2 -d 3 -p cbr -e 210 -c 1 -i 510 -a 1 + -t 2.01422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 510 -a 1 - -t 2.01422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 510 -a 1 h -t 2.01422 -s 3 -d 5 -p cbr -e 210 -c 1 -i 510 -a 1 + -t 2.01625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 542 -a 1 - -t 2.01625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 542 -a 1 h -t 2.01625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 542 -a 1 - -t 2.01655 -s 2 -d 3 -p cbr -e 210 -c 1 -i 523 -a 1 h -t 2.01655 -s 2 -d 3 -p cbr -e 210 -c 1 -i 523 -a 1 r -t 2.01665 -s 3 -d 5 -p cbr -e 210 -c 1 -i 495 -a 1 r -t 2.01711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 527 -a 1 + -t 2.01711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 527 -a 1 r -t 2.01797 -s 2 -d 3 -p cbr -e 210 -c 1 -i 511 -a 1 + -t 2.01797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 511 -a 1 - -t 2.01797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 511 -a 1 h -t 2.01797 -s 3 -d 5 -p cbr -e 210 -c 1 -i 511 -a 1 - -t 2.01991 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 516 -a 0 -S 0 -y {14 14} h -t 2.01991 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 516 -a 0 -S 0 -y {-1 -1} + -t 2.02 -s 1 -d 2 -p cbr -e 210 -c 1 -i 543 -a 1 - -t 2.02 -s 1 -d 2 -p cbr -e 210 -c 1 -i 543 -a 1 h -t 2.02 -s 1 -d 2 -p cbr -e 210 -c 1 -i 543 -a 1 r -t 2.02001 -s 3 -d 5 -p cbr -e 210 -c 1 -i 496 -a 1 r -t 2.02086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 528 -a 1 + -t 2.02086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 528 -a 1 r -t 2.02172 -s 2 -d 3 -p cbr -e 210 -c 1 -i 512 -a 1 + -t 2.02172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 512 -a 1 - -t 2.02172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 512 -a 1 h -t 2.02172 -s 3 -d 5 -p cbr -e 210 -c 1 -i 512 -a 1 r -t 2.02337 -s 3 -d 5 -p cbr -e 210 -c 1 -i 497 -a 1 + -t 2.02375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 544 -a 1 - -t 2.02375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 544 -a 1 h -t 2.02375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 544 -a 1 r -t 2.02461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 529 -a 1 + -t 2.02461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 529 -a 1 r -t 2.02547 -s 2 -d 3 -p cbr -e 210 -c 1 -i 513 -a 1 + -t 2.02547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 513 -a 1 - -t 2.02547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 513 -a 1 h -t 2.02547 -s 3 -d 5 -p cbr -e 210 -c 1 -i 513 -a 1 r -t 2.02673 -s 3 -d 5 -p cbr -e 210 -c 1 -i 498 -a 1 + -t 2.0275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 545 -a 1 - -t 2.0275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 545 -a 1 h -t 2.0275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 545 -a 1 r -t 2.02836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 530 -a 1 + -t 2.02836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 530 -a 1 r -t 2.02922 -s 2 -d 3 -p cbr -e 210 -c 1 -i 514 -a 1 + -t 2.02922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 514 -a 1 - -t 2.02922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 514 -a 1 h -t 2.02922 -s 3 -d 5 -p cbr -e 210 -c 1 -i 514 -a 1 r -t 2.03009 -s 3 -d 5 -p cbr -e 210 -c 1 -i 499 -a 1 + -t 2.03125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 546 -a 1 - -t 2.03125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 546 -a 1 h -t 2.03125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 546 -a 1 r -t 2.03211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 531 -a 1 + -t 2.03211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 531 -a 1 r -t 2.03297 -s 2 -d 3 -p cbr -e 210 -c 1 -i 517 -a 1 + -t 2.03297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 517 -a 1 - -t 2.03297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 517 -a 1 h -t 2.03297 -s 3 -d 5 -p cbr -e 210 -c 1 -i 517 -a 1 r -t 2.03345 -s 3 -d 5 -p cbr -e 210 -c 1 -i 500 -a 1 + -t 2.035 -s 1 -d 2 -p cbr -e 210 -c 1 -i 547 -a 1 - -t 2.035 -s 1 -d 2 -p cbr -e 210 -c 1 -i 547 -a 1 h -t 2.035 -s 1 -d 2 -p cbr -e 210 -c 1 -i 547 -a 1 r -t 2.03586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 532 -a 1 + -t 2.03586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 532 -a 1 - -t 2.03591 -s 2 -d 3 -p cbr -e 210 -c 1 -i 524 -a 1 h -t 2.03591 -s 2 -d 3 -p cbr -e 210 -c 1 -i 524 -a 1 r -t 2.03672 -s 2 -d 3 -p cbr -e 210 -c 1 -i 518 -a 1 + -t 2.03672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 518 -a 1 - -t 2.03672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 518 -a 1 h -t 2.03672 -s 3 -d 5 -p cbr -e 210 -c 1 -i 518 -a 1 r -t 2.03681 -s 3 -d 5 -p cbr -e 210 -c 1 -i 501 -a 1 + -t 2.03875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 548 -a 1 - -t 2.03875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 548 -a 1 h -t 2.03875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 548 -a 1 - -t 2.03927 -s 2 -d 3 -p cbr -e 210 -c 1 -i 525 -a 1 h -t 2.03927 -s 2 -d 3 -p cbr -e 210 -c 1 -i 525 -a 1 r -t 2.03961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 533 -a 1 + -t 2.03961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 533 -a 1 r -t 2.04017 -s 3 -d 5 -p cbr -e 210 -c 1 -i 502 -a 1 r -t 2.04047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 519 -a 1 + -t 2.04047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 519 -a 1 - -t 2.04047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 519 -a 1 h -t 2.04047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 519 -a 1 + -t 2.0425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 549 -a 1 - -t 2.0425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 549 -a 1 h -t 2.0425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 549 -a 1 - -t 2.04263 -s 2 -d 3 -p cbr -e 210 -c 1 -i 526 -a 1 h -t 2.04263 -s 2 -d 3 -p cbr -e 210 -c 1 -i 526 -a 1 r -t 2.04336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 534 -a 1 + -t 2.04336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 534 -a 1 r -t 2.04353 -s 3 -d 5 -p cbr -e 210 -c 1 -i 503 -a 1 - -t 2.04599 -s 2 -d 3 -p cbr -e 210 -c 1 -i 527 -a 1 h -t 2.04599 -s 2 -d 3 -p cbr -e 210 -c 1 -i 527 -a 1 + -t 2.04625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 550 -a 1 - -t 2.04625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 550 -a 1 h -t 2.04625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 550 -a 1 r -t 2.04689 -s 3 -d 5 -p cbr -e 210 -c 1 -i 504 -a 1 r -t 2.04711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 536 -a 1 + -t 2.04711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 536 -a 1 - -t 2.04935 -s 2 -d 3 -p cbr -e 210 -c 1 -i 528 -a 1 h -t 2.04935 -s 2 -d 3 -p cbr -e 210 -c 1 -i 528 -a 1 + -t 2.05 -s 1 -d 2 -p cbr -e 210 -c 1 -i 551 -a 1 - -t 2.05 -s 1 -d 2 -p cbr -e 210 -c 1 -i 551 -a 1 h -t 2.05 -s 1 -d 2 -p cbr -e 210 -c 1 -i 551 -a 1 r -t 2.05025 -s 3 -d 5 -p cbr -e 210 -c 1 -i 505 -a 1 r -t 2.05086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 537 -a 1 + -t 2.05086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 537 -a 1 - -t 2.05271 -s 2 -d 3 -p cbr -e 210 -c 1 -i 529 -a 1 h -t 2.05271 -s 2 -d 3 -p cbr -e 210 -c 1 -i 529 -a 1 r -t 2.05361 -s 3 -d 5 -p cbr -e 210 -c 1 -i 506 -a 1 + -t 2.05375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 552 -a 1 - -t 2.05375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 552 -a 1 h -t 2.05375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 552 -a 1 r -t 2.05461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 538 -a 1 + -t 2.05461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 538 -a 1 - -t 2.05607 -s 2 -d 3 -p cbr -e 210 -c 1 -i 530 -a 1 h -t 2.05607 -s 2 -d 3 -p cbr -e 210 -c 1 -i 530 -a 1 r -t 2.05647 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 515 -a 0 -S 0 -y {13 13} + -t 2.05647 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 515 -a 0 -S 0 -y {13 13} - -t 2.05647 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 515 -a 0 -S 0 -y {13 13} h -t 2.05647 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 515 -a 0 -S 0 -y {-1 -1} r -t 2.05697 -s 3 -d 5 -p cbr -e 210 -c 1 -i 507 -a 1 + -t 2.0575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 553 -a 1 - -t 2.0575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 553 -a 1 h -t 2.0575 -s 1 -d 2 -p cbr -e 210 -c 1 -i 553 -a 1 r -t 2.05836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 539 -a 1 + -t 2.05836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 539 -a 1 r -t 2.05905 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 535 -a 0 -S 0 -y {15 15} + -t 2.05905 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 535 -a 0 -S 0 -y {15 15} - -t 2.05943 -s 2 -d 3 -p cbr -e 210 -c 1 -i 531 -a 1 h -t 2.05943 -s 2 -d 3 -p cbr -e 210 -c 1 -i 531 -a 1 r -t 2.05983 -s 2 -d 3 -p cbr -e 210 -c 1 -i 520 -a 1 + -t 2.05983 -s 3 -d 5 -p cbr -e 210 -c 1 -i 520 -a 1 - -t 2.05983 -s 3 -d 5 -p cbr -e 210 -c 1 -i 520 -a 1 h -t 2.05983 -s 3 -d 5 -p cbr -e 210 -c 1 -i 520 -a 1 r -t 2.06033 -s 3 -d 5 -p cbr -e 210 -c 1 -i 508 -a 1 + -t 2.06125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 554 -a 1 - -t 2.06125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 554 -a 1 h -t 2.06125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 554 -a 1 r -t 2.06211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 540 -a 1 + -t 2.06211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 540 -a 1 - -t 2.06279 -s 2 -d 3 -p cbr -e 210 -c 1 -i 532 -a 1 h -t 2.06279 -s 2 -d 3 -p cbr -e 210 -c 1 -i 532 -a 1 r -t 2.06319 -s 2 -d 3 -p cbr -e 210 -c 1 -i 521 -a 1 + -t 2.06319 -s 3 -d 5 -p cbr -e 210 -c 1 -i 521 -a 1 - -t 2.06319 -s 3 -d 5 -p cbr -e 210 -c 1 -i 521 -a 1 h -t 2.06319 -s 3 -d 5 -p cbr -e 210 -c 1 -i 521 -a 1 r -t 2.06383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 509 -a 1 + -t 2.065 -s 1 -d 2 -p cbr -e 210 -c 1 -i 555 -a 1 - -t 2.065 -s 1 -d 2 -p cbr -e 210 -c 1 -i 555 -a 1 h -t 2.065 -s 1 -d 2 -p cbr -e 210 -c 1 -i 555 -a 1 r -t 2.06586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 541 -a 1 + -t 2.06586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 541 -a 1 - -t 2.06615 -s 2 -d 3 -p cbr -e 210 -c 1 -i 533 -a 1 h -t 2.06615 -s 2 -d 3 -p cbr -e 210 -c 1 -i 533 -a 1 r -t 2.06655 -s 2 -d 3 -p cbr -e 210 -c 1 -i 522 -a 1 + -t 2.06655 -s 3 -d 5 -p cbr -e 210 -c 1 -i 522 -a 1 - -t 2.06655 -s 3 -d 5 -p cbr -e 210 -c 1 -i 522 -a 1 h -t 2.06655 -s 3 -d 5 -p cbr -e 210 -c 1 -i 522 -a 1 r -t 2.06758 -s 3 -d 5 -p cbr -e 210 -c 1 -i 510 -a 1 + -t 2.06875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 556 -a 1 - -t 2.06875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 556 -a 1 h -t 2.06875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 556 -a 1 - -t 2.06951 -s 2 -d 3 -p cbr -e 210 -c 1 -i 534 -a 1 h -t 2.06951 -s 2 -d 3 -p cbr -e 210 -c 1 -i 534 -a 1 r -t 2.06961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 542 -a 1 + -t 2.06961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 542 -a 1 r -t 2.06991 -s 2 -d 3 -p cbr -e 210 -c 1 -i 523 -a 1 + -t 2.06991 -s 3 -d 5 -p cbr -e 210 -c 1 -i 523 -a 1 - -t 2.06991 -s 3 -d 5 -p cbr -e 210 -c 1 -i 523 -a 1 h -t 2.06991 -s 3 -d 5 -p cbr -e 210 -c 1 -i 523 -a 1 r -t 2.07133 -s 3 -d 5 -p cbr -e 210 -c 1 -i 511 -a 1 + -t 2.0725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 557 -a 1 - -t 2.0725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 557 -a 1 h -t 2.0725 -s 1 -d 2 -p cbr -e 210 -c 1 -i 557 -a 1 - -t 2.07287 -s 2 -d 3 -p cbr -e 210 -c 1 -i 536 -a 1 h -t 2.07287 -s 2 -d 3 -p cbr -e 210 -c 1 -i 536 -a 1 r -t 2.07336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 543 -a 1 + -t 2.07336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 543 -a 1 r -t 2.07508 -s 3 -d 5 -p cbr -e 210 -c 1 -i 512 -a 1 - -t 2.07623 -s 2 -d 3 -p cbr -e 210 -c 1 -i 537 -a 1 h -t 2.07623 -s 2 -d 3 -p cbr -e 210 -c 1 -i 537 -a 1 + -t 2.07625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 558 -a 1 - -t 2.07625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 558 -a 1 h -t 2.07625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 558 -a 1 r -t 2.07711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 544 -a 1 + -t 2.07711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 544 -a 1 r -t 2.07883 -s 3 -d 5 -p cbr -e 210 -c 1 -i 513 -a 1 - -t 2.07959 -s 2 -d 3 -p cbr -e 210 -c 1 -i 538 -a 1 h -t 2.07959 -s 2 -d 3 -p cbr -e 210 -c 1 -i 538 -a 1 + -t 2.08 -s 1 -d 2 -p cbr -e 210 -c 1 -i 559 -a 1 - -t 2.08 -s 1 -d 2 -p cbr -e 210 -c 1 -i 559 -a 1 h -t 2.08 -s 1 -d 2 -p cbr -e 210 -c 1 -i 559 -a 1 r -t 2.08086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 545 -a 1 + -t 2.08086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 545 -a 1 r -t 2.08258 -s 3 -d 5 -p cbr -e 210 -c 1 -i 514 -a 1 - -t 2.08295 -s 2 -d 3 -p cbr -e 210 -c 1 -i 539 -a 1 h -t 2.08295 -s 2 -d 3 -p cbr -e 210 -c 1 -i 539 -a 1 + -t 2.08375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 560 -a 1 - -t 2.08375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 560 -a 1 h -t 2.08375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 560 -a 1 r -t 2.08461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 546 -a 1 + -t 2.08461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 546 -a 1 r -t 2.08591 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 516 -a 0 -S 0 -y {14 14} + -t 2.08591 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 516 -a 0 -S 0 -y {14 14} - -t 2.08591 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 516 -a 0 -S 0 -y {14 14} h -t 2.08591 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 516 -a 0 -S 0 -y {-1 -1} - -t 2.08631 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 535 -a 0 -S 0 -y {15 15} h -t 2.08631 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 535 -a 0 -S 0 -y {-1 -1} r -t 2.08633 -s 3 -d 5 -p cbr -e 210 -c 1 -i 517 -a 1 + -t 2.0875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 561 -a 1 - -t 2.0875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 561 -a 1 h -t 2.0875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 561 -a 1 r -t 2.08836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 547 -a 1 + -t 2.08836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 547 -a 1 r -t 2.08927 -s 2 -d 3 -p cbr -e 210 -c 1 -i 524 -a 1 + -t 2.08927 -s 3 -d 5 -p cbr -e 210 -c 1 -i 524 -a 1 - -t 2.08927 -s 3 -d 5 -p cbr -e 210 -c 1 -i 524 -a 1 h -t 2.08927 -s 3 -d 5 -p cbr -e 210 -c 1 -i 524 -a 1 v -t 2.0899999999999999 sim_annotation 2.0899999999999999 26 Ack_15 : 1 ack is coming r -t 2.09008 -s 3 -d 5 -p cbr -e 210 -c 1 -i 518 -a 1 + -t 2.09125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 562 -a 1 - -t 2.09125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 562 -a 1 h -t 2.09125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 562 -a 1 r -t 2.09211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 548 -a 1 + -t 2.09211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 548 -a 1 r -t 2.09263 -s 2 -d 3 -p cbr -e 210 -c 1 -i 525 -a 1 + -t 2.09263 -s 3 -d 5 -p cbr -e 210 -c 1 -i 525 -a 1 - -t 2.09263 -s 3 -d 5 -p cbr -e 210 -c 1 -i 525 -a 1 h -t 2.09263 -s 3 -d 5 -p cbr -e 210 -c 1 -i 525 -a 1 r -t 2.09383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 519 -a 1 + -t 2.095 -s 1 -d 2 -p cbr -e 210 -c 1 -i 563 -a 1 - -t 2.095 -s 1 -d 2 -p cbr -e 210 -c 1 -i 563 -a 1 h -t 2.095 -s 1 -d 2 -p cbr -e 210 -c 1 -i 563 -a 1 r -t 2.09586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 549 -a 1 + -t 2.09586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 549 -a 1 d -t 2.09586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 549 -a 1 r -t 2.09599 -s 2 -d 3 -p cbr -e 210 -c 1 -i 526 -a 1 + -t 2.09599 -s 3 -d 5 -p cbr -e 210 -c 1 -i 526 -a 1 - -t 2.09599 -s 3 -d 5 -p cbr -e 210 -c 1 -i 526 -a 1 h -t 2.09599 -s 3 -d 5 -p cbr -e 210 -c 1 -i 526 -a 1 + -t 2.09875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 564 -a 1 - -t 2.09875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 564 -a 1 h -t 2.09875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 564 -a 1 r -t 2.09935 -s 2 -d 3 -p cbr -e 210 -c 1 -i 527 -a 1 + -t 2.09935 -s 3 -d 5 -p cbr -e 210 -c 1 -i 527 -a 1 - -t 2.09935 -s 3 -d 5 -p cbr -e 210 -c 1 -i 527 -a 1 h -t 2.09935 -s 3 -d 5 -p cbr -e 210 -c 1 -i 527 -a 1 r -t 2.09961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 550 -a 1 + -t 2.09961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 550 -a 1 d -t 2.09961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 550 -a 1 - -t 2.10231 -s 2 -d 3 -p cbr -e 210 -c 1 -i 540 -a 1 h -t 2.10231 -s 2 -d 3 -p cbr -e 210 -c 1 -i 540 -a 1 + -t 2.1025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 565 -a 1 - -t 2.1025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 565 -a 1 h -t 2.1025 -s 1 -d 2 -p cbr -e 210 -c 1 -i 565 -a 1 r -t 2.10271 -s 2 -d 3 -p cbr -e 210 -c 1 -i 528 -a 1 + -t 2.10271 -s 3 -d 5 -p cbr -e 210 -c 1 -i 528 -a 1 - -t 2.10271 -s 3 -d 5 -p cbr -e 210 -c 1 -i 528 -a 1 h -t 2.10271 -s 3 -d 5 -p cbr -e 210 -c 1 -i 528 -a 1 r -t 2.10336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 551 -a 1 + -t 2.10336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 551 -a 1 - -t 2.10567 -s 2 -d 3 -p cbr -e 210 -c 1 -i 541 -a 1 h -t 2.10567 -s 2 -d 3 -p cbr -e 210 -c 1 -i 541 -a 1 r -t 2.10607 -s 2 -d 3 -p cbr -e 210 -c 1 -i 529 -a 1 + -t 2.10607 -s 3 -d 5 -p cbr -e 210 -c 1 -i 529 -a 1 - -t 2.10607 -s 3 -d 5 -p cbr -e 210 -c 1 -i 529 -a 1 h -t 2.10607 -s 3 -d 5 -p cbr -e 210 -c 1 -i 529 -a 1 + -t 2.10625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 566 -a 1 - -t 2.10625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 566 -a 1 h -t 2.10625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 566 -a 1 r -t 2.10711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 552 -a 1 + -t 2.10711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 552 -a 1 - -t 2.10903 -s 2 -d 3 -p cbr -e 210 -c 1 -i 542 -a 1 h -t 2.10903 -s 2 -d 3 -p cbr -e 210 -c 1 -i 542 -a 1 r -t 2.10943 -s 2 -d 3 -p cbr -e 210 -c 1 -i 530 -a 1 + -t 2.10943 -s 3 -d 5 -p cbr -e 210 -c 1 -i 530 -a 1 - -t 2.10943 -s 3 -d 5 -p cbr -e 210 -c 1 -i 530 -a 1 h -t 2.10943 -s 3 -d 5 -p cbr -e 210 -c 1 -i 530 -a 1 + -t 2.11 -s 1 -d 2 -p cbr -e 210 -c 1 -i 567 -a 1 - -t 2.11 -s 1 -d 2 -p cbr -e 210 -c 1 -i 567 -a 1 h -t 2.11 -s 1 -d 2 -p cbr -e 210 -c 1 -i 567 -a 1 r -t 2.11086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 553 -a 1 + -t 2.11086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 553 -a 1 - -t 2.11239 -s 2 -d 3 -p cbr -e 210 -c 1 -i 543 -a 1 h -t 2.11239 -s 2 -d 3 -p cbr -e 210 -c 1 -i 543 -a 1 r -t 2.11279 -s 2 -d 3 -p cbr -e 210 -c 1 -i 531 -a 1 + -t 2.11279 -s 3 -d 5 -p cbr -e 210 -c 1 -i 531 -a 1 - -t 2.11279 -s 3 -d 5 -p cbr -e 210 -c 1 -i 531 -a 1 h -t 2.11279 -s 3 -d 5 -p cbr -e 210 -c 1 -i 531 -a 1 r -t 2.11319 -s 3 -d 5 -p cbr -e 210 -c 1 -i 520 -a 1 + -t 2.11375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 568 -a 1 - -t 2.11375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 568 -a 1 h -t 2.11375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 568 -a 1 r -t 2.11461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 554 -a 1 + -t 2.11461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 554 -a 1 - -t 2.11575 -s 2 -d 3 -p cbr -e 210 -c 1 -i 544 -a 1 h -t 2.11575 -s 2 -d 3 -p cbr -e 210 -c 1 -i 544 -a 1 r -t 2.11615 -s 2 -d 3 -p cbr -e 210 -c 1 -i 532 -a 1 + -t 2.11615 -s 3 -d 5 -p cbr -e 210 -c 1 -i 532 -a 1 - -t 2.11615 -s 3 -d 5 -p cbr -e 210 -c 1 -i 532 -a 1 h -t 2.11615 -s 3 -d 5 -p cbr -e 210 -c 1 -i 532 -a 1 r -t 2.11655 -s 3 -d 5 -p cbr -e 210 -c 1 -i 521 -a 1 + -t 2.1175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 569 -a 1 - -t 2.1175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 569 -a 1 h -t 2.1175 -s 1 -d 2 -p cbr -e 210 -c 1 -i 569 -a 1 r -t 2.11836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 555 -a 1 + -t 2.11836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 555 -a 1 - -t 2.11911 -s 2 -d 3 -p cbr -e 210 -c 1 -i 545 -a 1 h -t 2.11911 -s 2 -d 3 -p cbr -e 210 -c 1 -i 545 -a 1 r -t 2.11951 -s 2 -d 3 -p cbr -e 210 -c 1 -i 533 -a 1 + -t 2.11951 -s 3 -d 5 -p cbr -e 210 -c 1 -i 533 -a 1 - -t 2.11951 -s 3 -d 5 -p cbr -e 210 -c 1 -i 533 -a 1 h -t 2.11951 -s 3 -d 5 -p cbr -e 210 -c 1 -i 533 -a 1 r -t 2.11991 -s 3 -d 5 -p cbr -e 210 -c 1 -i 522 -a 1 + -t 2.12125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 570 -a 1 - -t 2.12125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 570 -a 1 h -t 2.12125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 570 -a 1 r -t 2.12211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 556 -a 1 + -t 2.12211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 556 -a 1 - -t 2.12247 -s 2 -d 3 -p cbr -e 210 -c 1 -i 546 -a 1 h -t 2.12247 -s 2 -d 3 -p cbr -e 210 -c 1 -i 546 -a 1 r -t 2.12247 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 515 -a 0 -S 0 -y {13 13} + -t 2.12247 -s 4 -d 3 -p ack -e 40 -c 0 -i 571 -a 0 -S 0 -y {13 13} - -t 2.12247 -s 4 -d 3 -p ack -e 40 -c 0 -i 571 -a 0 -S 0 -y {13 13} h -t 2.12247 -s 4 -d 3 -p ack -e 40 -c 0 -i 571 -a 0 -S 0 -y {-1 -1} r -t 2.12287 -s 2 -d 3 -p cbr -e 210 -c 1 -i 534 -a 1 + -t 2.12287 -s 3 -d 5 -p cbr -e 210 -c 1 -i 534 -a 1 - -t 2.12287 -s 3 -d 5 -p cbr -e 210 -c 1 -i 534 -a 1 h -t 2.12287 -s 3 -d 5 -p cbr -e 210 -c 1 -i 534 -a 1 r -t 2.12327 -s 3 -d 5 -p cbr -e 210 -c 1 -i 523 -a 1 + -t 2.125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 572 -a 1 - -t 2.125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 572 -a 1 h -t 2.125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 572 -a 1 - -t 2.12583 -s 2 -d 3 -p cbr -e 210 -c 1 -i 547 -a 1 h -t 2.12583 -s 2 -d 3 -p cbr -e 210 -c 1 -i 547 -a 1 r -t 2.12586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 557 -a 1 + -t 2.12586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 557 -a 1 r -t 2.12623 -s 2 -d 3 -p cbr -e 210 -c 1 -i 536 -a 1 + -t 2.12623 -s 3 -d 5 -p cbr -e 210 -c 1 -i 536 -a 1 - -t 2.12623 -s 3 -d 5 -p cbr -e 210 -c 1 -i 536 -a 1 h -t 2.12623 -s 3 -d 5 -p cbr -e 210 -c 1 -i 536 -a 1 + -t 2.12875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 573 -a 1 - -t 2.12875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 573 -a 1 h -t 2.12875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 573 -a 1 - -t 2.12919 -s 2 -d 3 -p cbr -e 210 -c 1 -i 548 -a 1 h -t 2.12919 -s 2 -d 3 -p cbr -e 210 -c 1 -i 548 -a 1 r -t 2.12959 -s 2 -d 3 -p cbr -e 210 -c 1 -i 537 -a 1 + -t 2.12959 -s 3 -d 5 -p cbr -e 210 -c 1 -i 537 -a 1 - -t 2.12959 -s 3 -d 5 -p cbr -e 210 -c 1 -i 537 -a 1 h -t 2.12959 -s 3 -d 5 -p cbr -e 210 -c 1 -i 537 -a 1 r -t 2.12961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 558 -a 1 + -t 2.12961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 558 -a 1 + -t 2.1325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 574 -a 1 - -t 2.1325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 574 -a 1 h -t 2.1325 -s 1 -d 2 -p cbr -e 210 -c 1 -i 574 -a 1 - -t 2.13255 -s 2 -d 3 -p cbr -e 210 -c 1 -i 551 -a 1 h -t 2.13255 -s 2 -d 3 -p cbr -e 210 -c 1 -i 551 -a 1 r -t 2.13295 -s 2 -d 3 -p cbr -e 210 -c 1 -i 538 -a 1 + -t 2.13295 -s 3 -d 5 -p cbr -e 210 -c 1 -i 538 -a 1 - -t 2.13295 -s 3 -d 5 -p cbr -e 210 -c 1 -i 538 -a 1 h -t 2.13295 -s 3 -d 5 -p cbr -e 210 -c 1 -i 538 -a 1 r -t 2.13336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 559 -a 1 + -t 2.13336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 559 -a 1 - -t 2.13591 -s 2 -d 3 -p cbr -e 210 -c 1 -i 552 -a 1 h -t 2.13591 -s 2 -d 3 -p cbr -e 210 -c 1 -i 552 -a 1 + -t 2.13625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 575 -a 1 - -t 2.13625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 575 -a 1 h -t 2.13625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 575 -a 1 r -t 2.13631 -s 2 -d 3 -p cbr -e 210 -c 1 -i 539 -a 1 + -t 2.13631 -s 3 -d 5 -p cbr -e 210 -c 1 -i 539 -a 1 - -t 2.13631 -s 3 -d 5 -p cbr -e 210 -c 1 -i 539 -a 1 h -t 2.13631 -s 3 -d 5 -p cbr -e 210 -c 1 -i 539 -a 1 r -t 2.13711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 560 -a 1 + -t 2.13711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 560 -a 1 - -t 2.13927 -s 2 -d 3 -p cbr -e 210 -c 1 -i 553 -a 1 h -t 2.13927 -s 2 -d 3 -p cbr -e 210 -c 1 -i 553 -a 1 + -t 2.14 -s 1 -d 2 -p cbr -e 210 -c 1 -i 576 -a 1 - -t 2.14 -s 1 -d 2 -p cbr -e 210 -c 1 -i 576 -a 1 h -t 2.14 -s 1 -d 2 -p cbr -e 210 -c 1 -i 576 -a 1 r -t 2.14086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 561 -a 1 + -t 2.14086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 561 -a 1 - -t 2.14263 -s 2 -d 3 -p cbr -e 210 -c 1 -i 554 -a 1 h -t 2.14263 -s 2 -d 3 -p cbr -e 210 -c 1 -i 554 -a 1 r -t 2.14263 -s 3 -d 5 -p cbr -e 210 -c 1 -i 524 -a 1 + -t 2.14375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 577 -a 1 - -t 2.14375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 577 -a 1 h -t 2.14375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 577 -a 1 r -t 2.14461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 562 -a 1 + -t 2.14461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 562 -a 1 - -t 2.14599 -s 2 -d 3 -p cbr -e 210 -c 1 -i 555 -a 1 h -t 2.14599 -s 2 -d 3 -p cbr -e 210 -c 1 -i 555 -a 1 r -t 2.14599 -s 3 -d 5 -p cbr -e 210 -c 1 -i 525 -a 1 + -t 2.1475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 578 -a 1 - -t 2.1475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 578 -a 1 h -t 2.1475 -s 1 -d 2 -p cbr -e 210 -c 1 -i 578 -a 1 r -t 2.14836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 563 -a 1 + -t 2.14836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 563 -a 1 - -t 2.14935 -s 2 -d 3 -p cbr -e 210 -c 1 -i 556 -a 1 h -t 2.14935 -s 2 -d 3 -p cbr -e 210 -c 1 -i 556 -a 1 r -t 2.14935 -s 3 -d 5 -p cbr -e 210 -c 1 -i 526 -a 1 v -t 2.1499999999999999 sim_annotation 2.1499999999999999 27 Send Packet_16,17 : Increase window size to 2 + -t 2.15125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 579 -a 1 - -t 2.15125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 579 -a 1 h -t 2.15125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 579 -a 1 r -t 2.15191 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 516 -a 0 -S 0 -y {14 14} + -t 2.15191 -s 4 -d 3 -p ack -e 40 -c 0 -i 580 -a 0 -S 0 -y {14 14} - -t 2.15191 -s 4 -d 3 -p ack -e 40 -c 0 -i 580 -a 0 -S 0 -y {14 14} h -t 2.15191 -s 4 -d 3 -p ack -e 40 -c 0 -i 580 -a 0 -S 0 -y {-1 -1} r -t 2.15211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 564 -a 1 + -t 2.15211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 564 -a 1 r -t 2.15231 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 535 -a 0 -S 0 -y {15 15} + -t 2.15231 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 535 -a 0 -S 0 -y {15 15} - -t 2.15231 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 535 -a 0 -S 0 -y {15 15} h -t 2.15231 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 535 -a 0 -S 0 -y {-1 -1} - -t 2.15271 -s 2 -d 3 -p cbr -e 210 -c 1 -i 557 -a 1 h -t 2.15271 -s 2 -d 3 -p cbr -e 210 -c 1 -i 557 -a 1 r -t 2.15271 -s 3 -d 5 -p cbr -e 210 -c 1 -i 527 -a 1 + -t 2.155 -s 1 -d 2 -p cbr -e 210 -c 1 -i 581 -a 1 - -t 2.155 -s 1 -d 2 -p cbr -e 210 -c 1 -i 581 -a 1 h -t 2.155 -s 1 -d 2 -p cbr -e 210 -c 1 -i 581 -a 1 r -t 2.15567 -s 2 -d 3 -p cbr -e 210 -c 1 -i 540 -a 1 + -t 2.15567 -s 3 -d 5 -p cbr -e 210 -c 1 -i 540 -a 1 - -t 2.15567 -s 3 -d 5 -p cbr -e 210 -c 1 -i 540 -a 1 h -t 2.15567 -s 3 -d 5 -p cbr -e 210 -c 1 -i 540 -a 1 r -t 2.15586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 565 -a 1 + -t 2.15586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 565 -a 1 - -t 2.15607 -s 2 -d 3 -p cbr -e 210 -c 1 -i 558 -a 1 h -t 2.15607 -s 2 -d 3 -p cbr -e 210 -c 1 -i 558 -a 1 r -t 2.15607 -s 3 -d 5 -p cbr -e 210 -c 1 -i 528 -a 1 + -t 2.15875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 582 -a 1 - -t 2.15875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 582 -a 1 h -t 2.15875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 582 -a 1 r -t 2.15903 -s 2 -d 3 -p cbr -e 210 -c 1 -i 541 -a 1 + -t 2.15903 -s 3 -d 5 -p cbr -e 210 -c 1 -i 541 -a 1 - -t 2.15903 -s 3 -d 5 -p cbr -e 210 -c 1 -i 541 -a 1 h -t 2.15903 -s 3 -d 5 -p cbr -e 210 -c 1 -i 541 -a 1 - -t 2.15943 -s 2 -d 3 -p cbr -e 210 -c 1 -i 559 -a 1 h -t 2.15943 -s 2 -d 3 -p cbr -e 210 -c 1 -i 559 -a 1 r -t 2.15943 -s 3 -d 5 -p cbr -e 210 -c 1 -i 529 -a 1 r -t 2.15961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 566 -a 1 + -t 2.15961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 566 -a 1 r -t 2.16239 -s 2 -d 3 -p cbr -e 210 -c 1 -i 542 -a 1 + -t 2.16239 -s 3 -d 5 -p cbr -e 210 -c 1 -i 542 -a 1 - -t 2.16239 -s 3 -d 5 -p cbr -e 210 -c 1 -i 542 -a 1 h -t 2.16239 -s 3 -d 5 -p cbr -e 210 -c 1 -i 542 -a 1 + -t 2.1625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 583 -a 1 - -t 2.1625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 583 -a 1 h -t 2.1625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 583 -a 1 - -t 2.16279 -s 2 -d 3 -p cbr -e 210 -c 1 -i 560 -a 1 h -t 2.16279 -s 2 -d 3 -p cbr -e 210 -c 1 -i 560 -a 1 r -t 2.16279 -s 3 -d 5 -p cbr -e 210 -c 1 -i 530 -a 1 r -t 2.16336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 567 -a 1 + -t 2.16336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 567 -a 1 r -t 2.16575 -s 2 -d 3 -p cbr -e 210 -c 1 -i 543 -a 1 + -t 2.16575 -s 3 -d 5 -p cbr -e 210 -c 1 -i 543 -a 1 - -t 2.16575 -s 3 -d 5 -p cbr -e 210 -c 1 -i 543 -a 1 h -t 2.16575 -s 3 -d 5 -p cbr -e 210 -c 1 -i 543 -a 1 - -t 2.16615 -s 2 -d 3 -p cbr -e 210 -c 1 -i 561 -a 1 h -t 2.16615 -s 2 -d 3 -p cbr -e 210 -c 1 -i 561 -a 1 r -t 2.16615 -s 3 -d 5 -p cbr -e 210 -c 1 -i 531 -a 1 + -t 2.16625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 584 -a 1 - -t 2.16625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 584 -a 1 h -t 2.16625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 584 -a 1 r -t 2.16711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 568 -a 1 + -t 2.16711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 568 -a 1 r -t 2.16911 -s 2 -d 3 -p cbr -e 210 -c 1 -i 544 -a 1 + -t 2.16911 -s 3 -d 5 -p cbr -e 210 -c 1 -i 544 -a 1 - -t 2.16911 -s 3 -d 5 -p cbr -e 210 -c 1 -i 544 -a 1 h -t 2.16911 -s 3 -d 5 -p cbr -e 210 -c 1 -i 544 -a 1 - -t 2.16951 -s 2 -d 3 -p cbr -e 210 -c 1 -i 562 -a 1 h -t 2.16951 -s 2 -d 3 -p cbr -e 210 -c 1 -i 562 -a 1 r -t 2.16951 -s 3 -d 5 -p cbr -e 210 -c 1 -i 532 -a 1 + -t 2.17 -s 1 -d 2 -p cbr -e 210 -c 1 -i 585 -a 1 - -t 2.17 -s 1 -d 2 -p cbr -e 210 -c 1 -i 585 -a 1 h -t 2.17 -s 1 -d 2 -p cbr -e 210 -c 1 -i 585 -a 1 r -t 2.17086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 569 -a 1 + -t 2.17086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 569 -a 1 r -t 2.17247 -s 2 -d 3 -p cbr -e 210 -c 1 -i 545 -a 1 + -t 2.17247 -s 3 -d 5 -p cbr -e 210 -c 1 -i 545 -a 1 - -t 2.17247 -s 3 -d 5 -p cbr -e 210 -c 1 -i 545 -a 1 h -t 2.17247 -s 3 -d 5 -p cbr -e 210 -c 1 -i 545 -a 1 - -t 2.17287 -s 2 -d 3 -p cbr -e 210 -c 1 -i 563 -a 1 h -t 2.17287 -s 2 -d 3 -p cbr -e 210 -c 1 -i 563 -a 1 r -t 2.17287 -s 3 -d 5 -p cbr -e 210 -c 1 -i 533 -a 1 r -t 2.17311 -s 4 -d 3 -p ack -e 40 -c 0 -i 571 -a 0 -S 0 -y {13 13} + -t 2.17311 -s 3 -d 2 -p ack -e 40 -c 0 -i 571 -a 0 -S 0 -y {13 13} - -t 2.17311 -s 3 -d 2 -p ack -e 40 -c 0 -i 571 -a 0 -S 0 -y {13 13} h -t 2.17311 -s 3 -d 2 -p ack -e 40 -c 0 -i 571 -a 0 -S 0 -y {-1 -1} + -t 2.17375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 586 -a 1 - -t 2.17375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 586 -a 1 h -t 2.17375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 586 -a 1 r -t 2.17461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 570 -a 1 + -t 2.17461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 570 -a 1 r -t 2.17583 -s 2 -d 3 -p cbr -e 210 -c 1 -i 546 -a 1 + -t 2.17583 -s 3 -d 5 -p cbr -e 210 -c 1 -i 546 -a 1 - -t 2.17583 -s 3 -d 5 -p cbr -e 210 -c 1 -i 546 -a 1 h -t 2.17583 -s 3 -d 5 -p cbr -e 210 -c 1 -i 546 -a 1 - -t 2.17623 -s 2 -d 3 -p cbr -e 210 -c 1 -i 564 -a 1 h -t 2.17623 -s 2 -d 3 -p cbr -e 210 -c 1 -i 564 -a 1 r -t 2.17623 -s 3 -d 5 -p cbr -e 210 -c 1 -i 534 -a 1 + -t 2.1775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 587 -a 1 - -t 2.1775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 587 -a 1 h -t 2.1775 -s 1 -d 2 -p cbr -e 210 -c 1 -i 587 -a 1 r -t 2.17836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 572 -a 1 + -t 2.17836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 572 -a 1 r -t 2.17919 -s 2 -d 3 -p cbr -e 210 -c 1 -i 547 -a 1 + -t 2.17919 -s 3 -d 5 -p cbr -e 210 -c 1 -i 547 -a 1 - -t 2.17919 -s 3 -d 5 -p cbr -e 210 -c 1 -i 547 -a 1 h -t 2.17919 -s 3 -d 5 -p cbr -e 210 -c 1 -i 547 -a 1 - -t 2.17959 -s 2 -d 3 -p cbr -e 210 -c 1 -i 565 -a 1 h -t 2.17959 -s 2 -d 3 -p cbr -e 210 -c 1 -i 565 -a 1 r -t 2.17959 -s 3 -d 5 -p cbr -e 210 -c 1 -i 536 -a 1 + -t 2.18125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 588 -a 1 - -t 2.18125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 588 -a 1 h -t 2.18125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 588 -a 1 r -t 2.18211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 573 -a 1 + -t 2.18211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 573 -a 1 r -t 2.18255 -s 2 -d 3 -p cbr -e 210 -c 1 -i 548 -a 1 + -t 2.18255 -s 3 -d 5 -p cbr -e 210 -c 1 -i 548 -a 1 - -t 2.18255 -s 3 -d 5 -p cbr -e 210 -c 1 -i 548 -a 1 h -t 2.18255 -s 3 -d 5 -p cbr -e 210 -c 1 -i 548 -a 1 - -t 2.18295 -s 2 -d 3 -p cbr -e 210 -c 1 -i 566 -a 1 h -t 2.18295 -s 2 -d 3 -p cbr -e 210 -c 1 -i 566 -a 1 r -t 2.18295 -s 3 -d 5 -p cbr -e 210 -c 1 -i 537 -a 1 + -t 2.185 -s 1 -d 2 -p cbr -e 210 -c 1 -i 589 -a 1 - -t 2.185 -s 1 -d 2 -p cbr -e 210 -c 1 -i 589 -a 1 h -t 2.185 -s 1 -d 2 -p cbr -e 210 -c 1 -i 589 -a 1 r -t 2.18586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 574 -a 1 + -t 2.18586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 574 -a 1 r -t 2.18591 -s 2 -d 3 -p cbr -e 210 -c 1 -i 551 -a 1 + -t 2.18591 -s 3 -d 5 -p cbr -e 210 -c 1 -i 551 -a 1 - -t 2.18591 -s 3 -d 5 -p cbr -e 210 -c 1 -i 551 -a 1 h -t 2.18591 -s 3 -d 5 -p cbr -e 210 -c 1 -i 551 -a 1 - -t 2.18631 -s 2 -d 3 -p cbr -e 210 -c 1 -i 567 -a 1 h -t 2.18631 -s 2 -d 3 -p cbr -e 210 -c 1 -i 567 -a 1 r -t 2.18631 -s 3 -d 5 -p cbr -e 210 -c 1 -i 538 -a 1 + -t 2.18875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 590 -a 1 - -t 2.18875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 590 -a 1 h -t 2.18875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 590 -a 1 r -t 2.18927 -s 2 -d 3 -p cbr -e 210 -c 1 -i 552 -a 1 + -t 2.18927 -s 3 -d 5 -p cbr -e 210 -c 1 -i 552 -a 1 - -t 2.18927 -s 3 -d 5 -p cbr -e 210 -c 1 -i 552 -a 1 h -t 2.18927 -s 3 -d 5 -p cbr -e 210 -c 1 -i 552 -a 1 r -t 2.18961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 575 -a 1 + -t 2.18961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 575 -a 1 - -t 2.18967 -s 2 -d 3 -p cbr -e 210 -c 1 -i 568 -a 1 h -t 2.18967 -s 2 -d 3 -p cbr -e 210 -c 1 -i 568 -a 1 r -t 2.18967 -s 3 -d 5 -p cbr -e 210 -c 1 -i 539 -a 1 + -t 2.1925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 591 -a 1 - -t 2.1925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 591 -a 1 h -t 2.1925 -s 1 -d 2 -p cbr -e 210 -c 1 -i 591 -a 1 r -t 2.19263 -s 2 -d 3 -p cbr -e 210 -c 1 -i 553 -a 1 + -t 2.19263 -s 3 -d 5 -p cbr -e 210 -c 1 -i 553 -a 1 - -t 2.19263 -s 3 -d 5 -p cbr -e 210 -c 1 -i 553 -a 1 h -t 2.19263 -s 3 -d 5 -p cbr -e 210 -c 1 -i 553 -a 1 - -t 2.19303 -s 2 -d 3 -p cbr -e 210 -c 1 -i 569 -a 1 h -t 2.19303 -s 2 -d 3 -p cbr -e 210 -c 1 -i 569 -a 1 r -t 2.19336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 576 -a 1 + -t 2.19336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 576 -a 1 r -t 2.19599 -s 2 -d 3 -p cbr -e 210 -c 1 -i 554 -a 1 + -t 2.19599 -s 3 -d 5 -p cbr -e 210 -c 1 -i 554 -a 1 - -t 2.19599 -s 3 -d 5 -p cbr -e 210 -c 1 -i 554 -a 1 h -t 2.19599 -s 3 -d 5 -p cbr -e 210 -c 1 -i 554 -a 1 + -t 2.19625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 592 -a 1 - -t 2.19625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 592 -a 1 h -t 2.19625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 592 -a 1 - -t 2.19639 -s 2 -d 3 -p cbr -e 210 -c 1 -i 570 -a 1 h -t 2.19639 -s 2 -d 3 -p cbr -e 210 -c 1 -i 570 -a 1 r -t 2.19711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 577 -a 1 + -t 2.19711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 577 -a 1 r -t 2.19935 -s 2 -d 3 -p cbr -e 210 -c 1 -i 555 -a 1 + -t 2.19935 -s 3 -d 5 -p cbr -e 210 -c 1 -i 555 -a 1 - -t 2.19935 -s 3 -d 5 -p cbr -e 210 -c 1 -i 555 -a 1 h -t 2.19935 -s 3 -d 5 -p cbr -e 210 -c 1 -i 555 -a 1 - -t 2.19975 -s 2 -d 3 -p cbr -e 210 -c 1 -i 572 -a 1 h -t 2.19975 -s 2 -d 3 -p cbr -e 210 -c 1 -i 572 -a 1 + -t 2.2 -s 1 -d 2 -p cbr -e 210 -c 1 -i 593 -a 1 - -t 2.2 -s 1 -d 2 -p cbr -e 210 -c 1 -i 593 -a 1 h -t 2.2 -s 1 -d 2 -p cbr -e 210 -c 1 -i 593 -a 1 r -t 2.20086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 578 -a 1 + -t 2.20086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 578 -a 1 r -t 2.20255 -s 4 -d 3 -p ack -e 40 -c 0 -i 580 -a 0 -S 0 -y {14 14} + -t 2.20255 -s 3 -d 2 -p ack -e 40 -c 0 -i 580 -a 0 -S 0 -y {14 14} - -t 2.20255 -s 3 -d 2 -p ack -e 40 -c 0 -i 580 -a 0 -S 0 -y {14 14} h -t 2.20255 -s 3 -d 2 -p ack -e 40 -c 0 -i 580 -a 0 -S 0 -y {-1 -1} r -t 2.20271 -s 2 -d 3 -p cbr -e 210 -c 1 -i 556 -a 1 + -t 2.20271 -s 3 -d 5 -p cbr -e 210 -c 1 -i 556 -a 1 - -t 2.20271 -s 3 -d 5 -p cbr -e 210 -c 1 -i 556 -a 1 h -t 2.20271 -s 3 -d 5 -p cbr -e 210 -c 1 -i 556 -a 1 - -t 2.20311 -s 2 -d 3 -p cbr -e 210 -c 1 -i 573 -a 1 h -t 2.20311 -s 2 -d 3 -p cbr -e 210 -c 1 -i 573 -a 1 + -t 2.20375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 594 -a 1 - -t 2.20375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 594 -a 1 h -t 2.20375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 594 -a 1 r -t 2.20461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 579 -a 1 + -t 2.20461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 579 -a 1 r -t 2.20607 -s 2 -d 3 -p cbr -e 210 -c 1 -i 557 -a 1 + -t 2.20607 -s 3 -d 5 -p cbr -e 210 -c 1 -i 557 -a 1 - -t 2.20607 -s 3 -d 5 -p cbr -e 210 -c 1 -i 557 -a 1 h -t 2.20607 -s 3 -d 5 -p cbr -e 210 -c 1 -i 557 -a 1 - -t 2.20647 -s 2 -d 3 -p cbr -e 210 -c 1 -i 574 -a 1 h -t 2.20647 -s 2 -d 3 -p cbr -e 210 -c 1 -i 574 -a 1 + -t 2.2075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 595 -a 1 - -t 2.2075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 595 -a 1 h -t 2.2075 -s 1 -d 2 -p cbr -e 210 -c 1 -i 595 -a 1 r -t 2.20836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 581 -a 1 + -t 2.20836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 581 -a 1 r -t 2.20903 -s 3 -d 5 -p cbr -e 210 -c 1 -i 540 -a 1 r -t 2.20943 -s 2 -d 3 -p cbr -e 210 -c 1 -i 558 -a 1 + -t 2.20943 -s 3 -d 5 -p cbr -e 210 -c 1 -i 558 -a 1 - -t 2.20943 -s 3 -d 5 -p cbr -e 210 -c 1 -i 558 -a 1 h -t 2.20943 -s 3 -d 5 -p cbr -e 210 -c 1 -i 558 -a 1 - -t 2.20983 -s 2 -d 3 -p cbr -e 210 -c 1 -i 575 -a 1 h -t 2.20983 -s 2 -d 3 -p cbr -e 210 -c 1 -i 575 -a 1 + -t 2.21125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 596 -a 1 - -t 2.21125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 596 -a 1 h -t 2.21125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 596 -a 1 r -t 2.21211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 582 -a 1 + -t 2.21211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 582 -a 1 r -t 2.21239 -s 3 -d 5 -p cbr -e 210 -c 1 -i 541 -a 1 r -t 2.21279 -s 2 -d 3 -p cbr -e 210 -c 1 -i 559 -a 1 + -t 2.21279 -s 3 -d 5 -p cbr -e 210 -c 1 -i 559 -a 1 - -t 2.21279 -s 3 -d 5 -p cbr -e 210 -c 1 -i 559 -a 1 h -t 2.21279 -s 3 -d 5 -p cbr -e 210 -c 1 -i 559 -a 1 - -t 2.21319 -s 2 -d 3 -p cbr -e 210 -c 1 -i 576 -a 1 h -t 2.21319 -s 2 -d 3 -p cbr -e 210 -c 1 -i 576 -a 1 + -t 2.215 -s 1 -d 2 -p cbr -e 210 -c 1 -i 597 -a 1 - -t 2.215 -s 1 -d 2 -p cbr -e 210 -c 1 -i 597 -a 1 h -t 2.215 -s 1 -d 2 -p cbr -e 210 -c 1 -i 597 -a 1 r -t 2.21575 -s 3 -d 5 -p cbr -e 210 -c 1 -i 542 -a 1 r -t 2.21586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 583 -a 1 + -t 2.21586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 583 -a 1 r -t 2.21615 -s 2 -d 3 -p cbr -e 210 -c 1 -i 560 -a 1 + -t 2.21615 -s 3 -d 5 -p cbr -e 210 -c 1 -i 560 -a 1 - -t 2.21615 -s 3 -d 5 -p cbr -e 210 -c 1 -i 560 -a 1 h -t 2.21615 -s 3 -d 5 -p cbr -e 210 -c 1 -i 560 -a 1 - -t 2.21655 -s 2 -d 3 -p cbr -e 210 -c 1 -i 577 -a 1 h -t 2.21655 -s 2 -d 3 -p cbr -e 210 -c 1 -i 577 -a 1 r -t 2.21831 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 535 -a 0 -S 0 -y {15 15} + -t 2.21831 -s 4 -d 3 -p ack -e 40 -c 0 -i 598 -a 0 -S 0 -y {15 15} - -t 2.21831 -s 4 -d 3 -p ack -e 40 -c 0 -i 598 -a 0 -S 0 -y {15 15} h -t 2.21831 -s 4 -d 3 -p ack -e 40 -c 0 -i 598 -a 0 -S 0 -y {-1 -1} + -t 2.21875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 599 -a 1 - -t 2.21875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 599 -a 1 h -t 2.21875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 599 -a 1 r -t 2.21911 -s 3 -d 5 -p cbr -e 210 -c 1 -i 543 -a 1 r -t 2.21951 -s 2 -d 3 -p cbr -e 210 -c 1 -i 561 -a 1 + -t 2.21951 -s 3 -d 5 -p cbr -e 210 -c 1 -i 561 -a 1 - -t 2.21951 -s 3 -d 5 -p cbr -e 210 -c 1 -i 561 -a 1 h -t 2.21951 -s 3 -d 5 -p cbr -e 210 -c 1 -i 561 -a 1 r -t 2.21961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 584 -a 1 + -t 2.21961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 584 -a 1 - -t 2.21991 -s 2 -d 3 -p cbr -e 210 -c 1 -i 578 -a 1 h -t 2.21991 -s 2 -d 3 -p cbr -e 210 -c 1 -i 578 -a 1 r -t 2.22247 -s 3 -d 5 -p cbr -e 210 -c 1 -i 544 -a 1 + -t 2.2225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 600 -a 1 - -t 2.2225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 600 -a 1 h -t 2.2225 -s 1 -d 2 -p cbr -e 210 -c 1 -i 600 -a 1 r -t 2.22287 -s 2 -d 3 -p cbr -e 210 -c 1 -i 562 -a 1 + -t 2.22287 -s 3 -d 5 -p cbr -e 210 -c 1 -i 562 -a 1 - -t 2.22287 -s 3 -d 5 -p cbr -e 210 -c 1 -i 562 -a 1 h -t 2.22287 -s 3 -d 5 -p cbr -e 210 -c 1 -i 562 -a 1 - -t 2.22327 -s 2 -d 3 -p cbr -e 210 -c 1 -i 579 -a 1 h -t 2.22327 -s 2 -d 3 -p cbr -e 210 -c 1 -i 579 -a 1 r -t 2.22336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 585 -a 1 + -t 2.22336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 585 -a 1 r -t 2.22375 -s 3 -d 2 -p ack -e 40 -c 0 -i 571 -a 0 -S 0 -y {13 13} + -t 2.22375 -s 2 -d 0 -p ack -e 40 -c 0 -i 571 -a 0 -S 0 -y {13 13} - -t 2.22375 -s 2 -d 0 -p ack -e 40 -c 0 -i 571 -a 0 -S 0 -f 0 -m 1 -y {13 13} h -t 2.22375 -s 2 -d 0 -p ack -e 40 -c 0 -i 571 -a 0 -S 0 -y {-1 -1} r -t 2.22583 -s 3 -d 5 -p cbr -e 210 -c 1 -i 545 -a 1 r -t 2.22623 -s 2 -d 3 -p cbr -e 210 -c 1 -i 563 -a 1 + -t 2.22623 -s 3 -d 5 -p cbr -e 210 -c 1 -i 563 -a 1 - -t 2.22623 -s 3 -d 5 -p cbr -e 210 -c 1 -i 563 -a 1 h -t 2.22623 -s 3 -d 5 -p cbr -e 210 -c 1 -i 563 -a 1 + -t 2.22625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 601 -a 1 - -t 2.22625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 601 -a 1 h -t 2.22625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 601 -a 1 - -t 2.22663 -s 2 -d 3 -p cbr -e 210 -c 1 -i 581 -a 1 h -t 2.22663 -s 2 -d 3 -p cbr -e 210 -c 1 -i 581 -a 1 r -t 2.22711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 586 -a 1 + -t 2.22711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 586 -a 1 r -t 2.22919 -s 3 -d 5 -p cbr -e 210 -c 1 -i 546 -a 1 r -t 2.22959 -s 2 -d 3 -p cbr -e 210 -c 1 -i 564 -a 1 + -t 2.22959 -s 3 -d 5 -p cbr -e 210 -c 1 -i 564 -a 1 - -t 2.22959 -s 3 -d 5 -p cbr -e 210 -c 1 -i 564 -a 1 h -t 2.22959 -s 3 -d 5 -p cbr -e 210 -c 1 -i 564 -a 1 - -t 2.22999 -s 2 -d 3 -p cbr -e 210 -c 1 -i 582 -a 1 h -t 2.22999 -s 2 -d 3 -p cbr -e 210 -c 1 -i 582 -a 1 + -t 2.23 -s 1 -d 2 -p cbr -e 210 -c 1 -i 602 -a 1 - -t 2.23 -s 1 -d 2 -p cbr -e 210 -c 1 -i 602 -a 1 h -t 2.23 -s 1 -d 2 -p cbr -e 210 -c 1 -i 602 -a 1 r -t 2.23086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 587 -a 1 + -t 2.23086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 587 -a 1 r -t 2.23255 -s 3 -d 5 -p cbr -e 210 -c 1 -i 547 -a 1 r -t 2.23295 -s 2 -d 3 -p cbr -e 210 -c 1 -i 565 -a 1 + -t 2.23295 -s 3 -d 5 -p cbr -e 210 -c 1 -i 565 -a 1 - -t 2.23295 -s 3 -d 5 -p cbr -e 210 -c 1 -i 565 -a 1 h -t 2.23295 -s 3 -d 5 -p cbr -e 210 -c 1 -i 565 -a 1 - -t 2.23335 -s 2 -d 3 -p cbr -e 210 -c 1 -i 583 -a 1 h -t 2.23335 -s 2 -d 3 -p cbr -e 210 -c 1 -i 583 -a 1 + -t 2.23375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 603 -a 1 - -t 2.23375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 603 -a 1 h -t 2.23375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 603 -a 1 r -t 2.23461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 588 -a 1 + -t 2.23461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 588 -a 1 r -t 2.23591 -s 3 -d 5 -p cbr -e 210 -c 1 -i 548 -a 1 r -t 2.23631 -s 2 -d 3 -p cbr -e 210 -c 1 -i 566 -a 1 + -t 2.23631 -s 3 -d 5 -p cbr -e 210 -c 1 -i 566 -a 1 - -t 2.23631 -s 3 -d 5 -p cbr -e 210 -c 1 -i 566 -a 1 h -t 2.23631 -s 3 -d 5 -p cbr -e 210 -c 1 -i 566 -a 1 - -t 2.23671 -s 2 -d 3 -p cbr -e 210 -c 1 -i 584 -a 1 h -t 2.23671 -s 2 -d 3 -p cbr -e 210 -c 1 -i 584 -a 1 + -t 2.2375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 604 -a 1 - -t 2.2375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 604 -a 1 h -t 2.2375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 604 -a 1 r -t 2.23836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 589 -a 1 + -t 2.23836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 589 -a 1 r -t 2.23927 -s 3 -d 5 -p cbr -e 210 -c 1 -i 551 -a 1 r -t 2.23967 -s 2 -d 3 -p cbr -e 210 -c 1 -i 567 -a 1 + -t 2.23967 -s 3 -d 5 -p cbr -e 210 -c 1 -i 567 -a 1 - -t 2.23967 -s 3 -d 5 -p cbr -e 210 -c 1 -i 567 -a 1 h -t 2.23967 -s 3 -d 5 -p cbr -e 210 -c 1 -i 567 -a 1 - -t 2.24007 -s 2 -d 3 -p cbr -e 210 -c 1 -i 585 -a 1 h -t 2.24007 -s 2 -d 3 -p cbr -e 210 -c 1 -i 585 -a 1 + -t 2.24125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 605 -a 1 - -t 2.24125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 605 -a 1 h -t 2.24125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 605 -a 1 r -t 2.24211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 590 -a 1 + -t 2.24211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 590 -a 1 r -t 2.24263 -s 3 -d 5 -p cbr -e 210 -c 1 -i 552 -a 1 r -t 2.24303 -s 2 -d 3 -p cbr -e 210 -c 1 -i 568 -a 1 + -t 2.24303 -s 3 -d 5 -p cbr -e 210 -c 1 -i 568 -a 1 - -t 2.24303 -s 3 -d 5 -p cbr -e 210 -c 1 -i 568 -a 1 h -t 2.24303 -s 3 -d 5 -p cbr -e 210 -c 1 -i 568 -a 1 - -t 2.24343 -s 2 -d 3 -p cbr -e 210 -c 1 -i 586 -a 1 h -t 2.24343 -s 2 -d 3 -p cbr -e 210 -c 1 -i 586 -a 1 + -t 2.245 -s 1 -d 2 -p cbr -e 210 -c 1 -i 606 -a 1 - -t 2.245 -s 1 -d 2 -p cbr -e 210 -c 1 -i 606 -a 1 h -t 2.245 -s 1 -d 2 -p cbr -e 210 -c 1 -i 606 -a 1 r -t 2.24586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 591 -a 1 + -t 2.24586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 591 -a 1 r -t 2.24599 -s 3 -d 5 -p cbr -e 210 -c 1 -i 553 -a 1 r -t 2.24639 -s 2 -d 3 -p cbr -e 210 -c 1 -i 569 -a 1 + -t 2.24639 -s 3 -d 5 -p cbr -e 210 -c 1 -i 569 -a 1 - -t 2.24639 -s 3 -d 5 -p cbr -e 210 -c 1 -i 569 -a 1 h -t 2.24639 -s 3 -d 5 -p cbr -e 210 -c 1 -i 569 -a 1 - -t 2.24679 -s 2 -d 3 -p cbr -e 210 -c 1 -i 587 -a 1 h -t 2.24679 -s 2 -d 3 -p cbr -e 210 -c 1 -i 587 -a 1 + -t 2.24875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 607 -a 1 - -t 2.24875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 607 -a 1 h -t 2.24875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 607 -a 1 r -t 2.24935 -s 3 -d 5 -p cbr -e 210 -c 1 -i 554 -a 1 r -t 2.24961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 592 -a 1 + -t 2.24961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 592 -a 1 r -t 2.24975 -s 2 -d 3 -p cbr -e 210 -c 1 -i 570 -a 1 + -t 2.24975 -s 3 -d 5 -p cbr -e 210 -c 1 -i 570 -a 1 - -t 2.24975 -s 3 -d 5 -p cbr -e 210 -c 1 -i 570 -a 1 h -t 2.24975 -s 3 -d 5 -p cbr -e 210 -c 1 -i 570 -a 1 - -t 2.25015 -s 2 -d 3 -p cbr -e 210 -c 1 -i 588 -a 1 h -t 2.25015 -s 2 -d 3 -p cbr -e 210 -c 1 -i 588 -a 1 + -t 2.2525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 608 -a 1 - -t 2.2525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 608 -a 1 h -t 2.2525 -s 1 -d 2 -p cbr -e 210 -c 1 -i 608 -a 1 r -t 2.25271 -s 3 -d 5 -p cbr -e 210 -c 1 -i 555 -a 1 r -t 2.25311 -s 2 -d 3 -p cbr -e 210 -c 1 -i 572 -a 1 + -t 2.25311 -s 3 -d 5 -p cbr -e 210 -c 1 -i 572 -a 1 - -t 2.25311 -s 3 -d 5 -p cbr -e 210 -c 1 -i 572 -a 1 h -t 2.25311 -s 3 -d 5 -p cbr -e 210 -c 1 -i 572 -a 1 r -t 2.25319 -s 3 -d 2 -p ack -e 40 -c 0 -i 580 -a 0 -S 0 -y {14 14} + -t 2.25319 -s 2 -d 0 -p ack -e 40 -c 0 -i 580 -a 0 -S 0 -y {14 14} - -t 2.25319 -s 2 -d 0 -p ack -e 40 -c 0 -i 580 -a 0 -S 0 -f 0 -m 1 -y {14 14} h -t 2.25319 -s 2 -d 0 -p ack -e 40 -c 0 -i 580 -a 0 -S 0 -y {-1 -1} r -t 2.25336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 593 -a 1 + -t 2.25336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 593 -a 1 - -t 2.25351 -s 2 -d 3 -p cbr -e 210 -c 1 -i 589 -a 1 h -t 2.25351 -s 2 -d 3 -p cbr -e 210 -c 1 -i 589 -a 1 r -t 2.25607 -s 3 -d 5 -p cbr -e 210 -c 1 -i 556 -a 1 + -t 2.25625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 609 -a 1 - -t 2.25625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 609 -a 1 h -t 2.25625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 609 -a 1 r -t 2.25647 -s 2 -d 3 -p cbr -e 210 -c 1 -i 573 -a 1 + -t 2.25647 -s 3 -d 5 -p cbr -e 210 -c 1 -i 573 -a 1 - -t 2.25647 -s 3 -d 5 -p cbr -e 210 -c 1 -i 573 -a 1 h -t 2.25647 -s 3 -d 5 -p cbr -e 210 -c 1 -i 573 -a 1 - -t 2.25687 -s 2 -d 3 -p cbr -e 210 -c 1 -i 590 -a 1 h -t 2.25687 -s 2 -d 3 -p cbr -e 210 -c 1 -i 590 -a 1 r -t 2.25711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 594 -a 1 + -t 2.25711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 594 -a 1 r -t 2.25943 -s 3 -d 5 -p cbr -e 210 -c 1 -i 557 -a 1 r -t 2.25983 -s 2 -d 3 -p cbr -e 210 -c 1 -i 574 -a 1 + -t 2.25983 -s 3 -d 5 -p cbr -e 210 -c 1 -i 574 -a 1 - -t 2.25983 -s 3 -d 5 -p cbr -e 210 -c 1 -i 574 -a 1 h -t 2.25983 -s 3 -d 5 -p cbr -e 210 -c 1 -i 574 -a 1 + -t 2.26 -s 1 -d 2 -p cbr -e 210 -c 1 -i 610 -a 1 - -t 2.26 -s 1 -d 2 -p cbr -e 210 -c 1 -i 610 -a 1 h -t 2.26 -s 1 -d 2 -p cbr -e 210 -c 1 -i 610 -a 1 - -t 2.26023 -s 2 -d 3 -p cbr -e 210 -c 1 -i 591 -a 1 h -t 2.26023 -s 2 -d 3 -p cbr -e 210 -c 1 -i 591 -a 1 r -t 2.26086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 595 -a 1 + -t 2.26086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 595 -a 1 r -t 2.26279 -s 3 -d 5 -p cbr -e 210 -c 1 -i 558 -a 1 r -t 2.26319 -s 2 -d 3 -p cbr -e 210 -c 1 -i 575 -a 1 + -t 2.26319 -s 3 -d 5 -p cbr -e 210 -c 1 -i 575 -a 1 - -t 2.26319 -s 3 -d 5 -p cbr -e 210 -c 1 -i 575 -a 1 h -t 2.26319 -s 3 -d 5 -p cbr -e 210 -c 1 -i 575 -a 1 - -t 2.26359 -s 2 -d 3 -p cbr -e 210 -c 1 -i 592 -a 1 h -t 2.26359 -s 2 -d 3 -p cbr -e 210 -c 1 -i 592 -a 1 + -t 2.26375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 611 -a 1 - -t 2.26375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 611 -a 1 h -t 2.26375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 611 -a 1 r -t 2.26461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 596 -a 1 + -t 2.26461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 596 -a 1 r -t 2.26615 -s 3 -d 5 -p cbr -e 210 -c 1 -i 559 -a 1 r -t 2.26655 -s 2 -d 3 -p cbr -e 210 -c 1 -i 576 -a 1 + -t 2.26655 -s 3 -d 5 -p cbr -e 210 -c 1 -i 576 -a 1 - -t 2.26655 -s 3 -d 5 -p cbr -e 210 -c 1 -i 576 -a 1 h -t 2.26655 -s 3 -d 5 -p cbr -e 210 -c 1 -i 576 -a 1 - -t 2.26695 -s 2 -d 3 -p cbr -e 210 -c 1 -i 593 -a 1 h -t 2.26695 -s 2 -d 3 -p cbr -e 210 -c 1 -i 593 -a 1 + -t 2.2675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 612 -a 1 - -t 2.2675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 612 -a 1 h -t 2.2675 -s 1 -d 2 -p cbr -e 210 -c 1 -i 612 -a 1 r -t 2.26836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 597 -a 1 + -t 2.26836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 597 -a 1 r -t 2.26895 -s 4 -d 3 -p ack -e 40 -c 0 -i 598 -a 0 -S 0 -y {15 15} + -t 2.26895 -s 3 -d 2 -p ack -e 40 -c 0 -i 598 -a 0 -S 0 -y {15 15} - -t 2.26895 -s 3 -d 2 -p ack -e 40 -c 0 -i 598 -a 0 -S 0 -y {15 15} h -t 2.26895 -s 3 -d 2 -p ack -e 40 -c 0 -i 598 -a 0 -S 0 -y {-1 -1} r -t 2.26951 -s 3 -d 5 -p cbr -e 210 -c 1 -i 560 -a 1 r -t 2.26991 -s 2 -d 3 -p cbr -e 210 -c 1 -i 577 -a 1 + -t 2.26991 -s 3 -d 5 -p cbr -e 210 -c 1 -i 577 -a 1 - -t 2.26991 -s 3 -d 5 -p cbr -e 210 -c 1 -i 577 -a 1 h -t 2.26991 -s 3 -d 5 -p cbr -e 210 -c 1 -i 577 -a 1 v -t 2.27 sim_annotation 2.27 28 Ack_16,17 : 2 acks are coming - -t 2.27031 -s 2 -d 3 -p cbr -e 210 -c 1 -i 594 -a 1 h -t 2.27031 -s 2 -d 3 -p cbr -e 210 -c 1 -i 594 -a 1 + -t 2.27125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 613 -a 1 - -t 2.27125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 613 -a 1 h -t 2.27125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 613 -a 1 r -t 2.27211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 599 -a 1 + -t 2.27211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 599 -a 1 r -t 2.27287 -s 3 -d 5 -p cbr -e 210 -c 1 -i 561 -a 1 r -t 2.27327 -s 2 -d 3 -p cbr -e 210 -c 1 -i 578 -a 1 + -t 2.27327 -s 3 -d 5 -p cbr -e 210 -c 1 -i 578 -a 1 - -t 2.27327 -s 3 -d 5 -p cbr -e 210 -c 1 -i 578 -a 1 h -t 2.27327 -s 3 -d 5 -p cbr -e 210 -c 1 -i 578 -a 1 - -t 2.27367 -s 2 -d 3 -p cbr -e 210 -c 1 -i 595 -a 1 h -t 2.27367 -s 2 -d 3 -p cbr -e 210 -c 1 -i 595 -a 1 r -t 2.27439 -s 2 -d 0 -p ack -e 40 -c 0 -i 571 -a 0 -S 0 -y {13 13} f -t 2.27438999999998259 -s 0 -d 4 -n cwnd_ -a tcp -v 3.333333 -o 3.000000 -T v + -t 2.27439 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 614 -a 0 -S 0 -f 0 -m 0 -y {16 16} - -t 2.27439 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 614 -a 0 -S 0 -y {16 16} h -t 2.27439 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 614 -a 0 -S 0 -y {-1 -1} + -t 2.275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 615 -a 1 - -t 2.275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 615 -a 1 h -t 2.275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 615 -a 1 r -t 2.27586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 600 -a 1 + -t 2.27586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 600 -a 1 r -t 2.27623 -s 3 -d 5 -p cbr -e 210 -c 1 -i 562 -a 1 r -t 2.27663 -s 2 -d 3 -p cbr -e 210 -c 1 -i 579 -a 1 + -t 2.27663 -s 3 -d 5 -p cbr -e 210 -c 1 -i 579 -a 1 - -t 2.27663 -s 3 -d 5 -p cbr -e 210 -c 1 -i 579 -a 1 h -t 2.27663 -s 3 -d 5 -p cbr -e 210 -c 1 -i 579 -a 1 - -t 2.27703 -s 2 -d 3 -p cbr -e 210 -c 1 -i 596 -a 1 h -t 2.27703 -s 2 -d 3 -p cbr -e 210 -c 1 -i 596 -a 1 + -t 2.27875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 616 -a 1 - -t 2.27875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 616 -a 1 h -t 2.27875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 616 -a 1 r -t 2.27959 -s 3 -d 5 -p cbr -e 210 -c 1 -i 563 -a 1 r -t 2.27961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 601 -a 1 + -t 2.27961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 601 -a 1 r -t 2.27999 -s 2 -d 3 -p cbr -e 210 -c 1 -i 581 -a 1 + -t 2.27999 -s 3 -d 5 -p cbr -e 210 -c 1 -i 581 -a 1 - -t 2.27999 -s 3 -d 5 -p cbr -e 210 -c 1 -i 581 -a 1 h -t 2.27999 -s 3 -d 5 -p cbr -e 210 -c 1 -i 581 -a 1 - -t 2.28039 -s 2 -d 3 -p cbr -e 210 -c 1 -i 597 -a 1 h -t 2.28039 -s 2 -d 3 -p cbr -e 210 -c 1 -i 597 -a 1 + -t 2.2825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 617 -a 1 - -t 2.2825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 617 -a 1 h -t 2.2825 -s 1 -d 2 -p cbr -e 210 -c 1 -i 617 -a 1 r -t 2.28295 -s 3 -d 5 -p cbr -e 210 -c 1 -i 564 -a 1 r -t 2.28335 -s 2 -d 3 -p cbr -e 210 -c 1 -i 582 -a 1 + -t 2.28335 -s 3 -d 5 -p cbr -e 210 -c 1 -i 582 -a 1 - -t 2.28335 -s 3 -d 5 -p cbr -e 210 -c 1 -i 582 -a 1 h -t 2.28335 -s 3 -d 5 -p cbr -e 210 -c 1 -i 582 -a 1 r -t 2.28336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 602 -a 1 + -t 2.28336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 602 -a 1 - -t 2.28375 -s 2 -d 3 -p cbr -e 210 -c 1 -i 599 -a 1 h -t 2.28375 -s 2 -d 3 -p cbr -e 210 -c 1 -i 599 -a 1 + -t 2.28625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 618 -a 1 - -t 2.28625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 618 -a 1 h -t 2.28625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 618 -a 1 r -t 2.28631 -s 3 -d 5 -p cbr -e 210 -c 1 -i 565 -a 1 r -t 2.28671 -s 2 -d 3 -p cbr -e 210 -c 1 -i 583 -a 1 + -t 2.28671 -s 3 -d 5 -p cbr -e 210 -c 1 -i 583 -a 1 - -t 2.28671 -s 3 -d 5 -p cbr -e 210 -c 1 -i 583 -a 1 h -t 2.28671 -s 3 -d 5 -p cbr -e 210 -c 1 -i 583 -a 1 - -t 2.28711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 600 -a 1 h -t 2.28711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 600 -a 1 r -t 2.28711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 603 -a 1 + -t 2.28711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 603 -a 1 r -t 2.28967 -s 3 -d 5 -p cbr -e 210 -c 1 -i 566 -a 1 + -t 2.29 -s 1 -d 2 -p cbr -e 210 -c 1 -i 619 -a 1 - -t 2.29 -s 1 -d 2 -p cbr -e 210 -c 1 -i 619 -a 1 h -t 2.29 -s 1 -d 2 -p cbr -e 210 -c 1 -i 619 -a 1 r -t 2.29007 -s 2 -d 3 -p cbr -e 210 -c 1 -i 584 -a 1 + -t 2.29007 -s 3 -d 5 -p cbr -e 210 -c 1 -i 584 -a 1 - -t 2.29007 -s 3 -d 5 -p cbr -e 210 -c 1 -i 584 -a 1 h -t 2.29007 -s 3 -d 5 -p cbr -e 210 -c 1 -i 584 -a 1 - -t 2.29047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 601 -a 1 h -t 2.29047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 601 -a 1 r -t 2.29086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 604 -a 1 + -t 2.29086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 604 -a 1 r -t 2.29303 -s 3 -d 5 -p cbr -e 210 -c 1 -i 567 -a 1 r -t 2.29343 -s 2 -d 3 -p cbr -e 210 -c 1 -i 585 -a 1 + -t 2.29343 -s 3 -d 5 -p cbr -e 210 -c 1 -i 585 -a 1 - -t 2.29343 -s 3 -d 5 -p cbr -e 210 -c 1 -i 585 -a 1 h -t 2.29343 -s 3 -d 5 -p cbr -e 210 -c 1 -i 585 -a 1 + -t 2.29375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 620 -a 1 - -t 2.29375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 620 -a 1 h -t 2.29375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 620 -a 1 - -t 2.29383 -s 2 -d 3 -p cbr -e 210 -c 1 -i 602 -a 1 h -t 2.29383 -s 2 -d 3 -p cbr -e 210 -c 1 -i 602 -a 1 r -t 2.29461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 605 -a 1 + -t 2.29461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 605 -a 1 r -t 2.29639 -s 3 -d 5 -p cbr -e 210 -c 1 -i 568 -a 1 r -t 2.29679 -s 2 -d 3 -p cbr -e 210 -c 1 -i 586 -a 1 + -t 2.29679 -s 3 -d 5 -p cbr -e 210 -c 1 -i 586 -a 1 - -t 2.29679 -s 3 -d 5 -p cbr -e 210 -c 1 -i 586 -a 1 h -t 2.29679 -s 3 -d 5 -p cbr -e 210 -c 1 -i 586 -a 1 - -t 2.29719 -s 2 -d 3 -p cbr -e 210 -c 1 -i 603 -a 1 h -t 2.29719 -s 2 -d 3 -p cbr -e 210 -c 1 -i 603 -a 1 + -t 2.2975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 621 -a 1 - -t 2.2975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 621 -a 1 h -t 2.2975 -s 1 -d 2 -p cbr -e 210 -c 1 -i 621 -a 1 r -t 2.29836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 606 -a 1 + -t 2.29836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 606 -a 1 r -t 2.29975 -s 3 -d 5 -p cbr -e 210 -c 1 -i 569 -a 1 r -t 2.30015 -s 2 -d 3 -p cbr -e 210 -c 1 -i 587 -a 1 + -t 2.30015 -s 3 -d 5 -p cbr -e 210 -c 1 -i 587 -a 1 - -t 2.30015 -s 3 -d 5 -p cbr -e 210 -c 1 -i 587 -a 1 h -t 2.30015 -s 3 -d 5 -p cbr -e 210 -c 1 -i 587 -a 1 - -t 2.30055 -s 2 -d 3 -p cbr -e 210 -c 1 -i 604 -a 1 h -t 2.30055 -s 2 -d 3 -p cbr -e 210 -c 1 -i 604 -a 1 + -t 2.30125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 622 -a 1 - -t 2.30125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 622 -a 1 h -t 2.30125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 622 -a 1 r -t 2.30211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 607 -a 1 + -t 2.30211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 607 -a 1 r -t 2.30311 -s 3 -d 5 -p cbr -e 210 -c 1 -i 570 -a 1 r -t 2.30351 -s 2 -d 3 -p cbr -e 210 -c 1 -i 588 -a 1 + -t 2.30351 -s 3 -d 5 -p cbr -e 210 -c 1 -i 588 -a 1 - -t 2.30351 -s 3 -d 5 -p cbr -e 210 -c 1 -i 588 -a 1 h -t 2.30351 -s 3 -d 5 -p cbr -e 210 -c 1 -i 588 -a 1 r -t 2.30383 -s 2 -d 0 -p ack -e 40 -c 0 -i 580 -a 0 -S 0 -y {14 14} f -t 2.30382999999998184 -s 0 -d 4 -n cwnd_ -a tcp -v 3.633333 -o 3.333333 -T v + -t 2.30383 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 623 -a 0 -S 0 -f 0 -m 0 -y {17 17} - -t 2.30383 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 623 -a 0 -S 0 -y {17 17} h -t 2.30383 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 623 -a 0 -S 0 -y {-1 -1} - -t 2.30391 -s 2 -d 3 -p cbr -e 210 -c 1 -i 605 -a 1 h -t 2.30391 -s 2 -d 3 -p cbr -e 210 -c 1 -i 605 -a 1 + -t 2.305 -s 1 -d 2 -p cbr -e 210 -c 1 -i 624 -a 1 - -t 2.305 -s 1 -d 2 -p cbr -e 210 -c 1 -i 624 -a 1 h -t 2.305 -s 1 -d 2 -p cbr -e 210 -c 1 -i 624 -a 1 r -t 2.30586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 608 -a 1 + -t 2.30586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 608 -a 1 r -t 2.30647 -s 3 -d 5 -p cbr -e 210 -c 1 -i 572 -a 1 r -t 2.30687 -s 2 -d 3 -p cbr -e 210 -c 1 -i 589 -a 1 + -t 2.30687 -s 3 -d 5 -p cbr -e 210 -c 1 -i 589 -a 1 - -t 2.30687 -s 3 -d 5 -p cbr -e 210 -c 1 -i 589 -a 1 h -t 2.30687 -s 3 -d 5 -p cbr -e 210 -c 1 -i 589 -a 1 - -t 2.30727 -s 2 -d 3 -p cbr -e 210 -c 1 -i 606 -a 1 h -t 2.30727 -s 2 -d 3 -p cbr -e 210 -c 1 -i 606 -a 1 + -t 2.30875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 625 -a 1 - -t 2.30875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 625 -a 1 h -t 2.30875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 625 -a 1 r -t 2.30961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 609 -a 1 + -t 2.30961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 609 -a 1 r -t 2.30983 -s 3 -d 5 -p cbr -e 210 -c 1 -i 573 -a 1 r -t 2.31023 -s 2 -d 3 -p cbr -e 210 -c 1 -i 590 -a 1 + -t 2.31023 -s 3 -d 5 -p cbr -e 210 -c 1 -i 590 -a 1 - -t 2.31023 -s 3 -d 5 -p cbr -e 210 -c 1 -i 590 -a 1 h -t 2.31023 -s 3 -d 5 -p cbr -e 210 -c 1 -i 590 -a 1 - -t 2.31063 -s 2 -d 3 -p cbr -e 210 -c 1 -i 607 -a 1 h -t 2.31063 -s 2 -d 3 -p cbr -e 210 -c 1 -i 607 -a 1 + -t 2.3125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 626 -a 1 - -t 2.3125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 626 -a 1 h -t 2.3125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 626 -a 1 r -t 2.31319 -s 3 -d 5 -p cbr -e 210 -c 1 -i 574 -a 1 r -t 2.31336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 610 -a 1 + -t 2.31336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 610 -a 1 r -t 2.31359 -s 2 -d 3 -p cbr -e 210 -c 1 -i 591 -a 1 + -t 2.31359 -s 3 -d 5 -p cbr -e 210 -c 1 -i 591 -a 1 - -t 2.31359 -s 3 -d 5 -p cbr -e 210 -c 1 -i 591 -a 1 h -t 2.31359 -s 3 -d 5 -p cbr -e 210 -c 1 -i 591 -a 1 - -t 2.31399 -s 2 -d 3 -p cbr -e 210 -c 1 -i 608 -a 1 h -t 2.31399 -s 2 -d 3 -p cbr -e 210 -c 1 -i 608 -a 1 + -t 2.31625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 627 -a 1 - -t 2.31625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 627 -a 1 h -t 2.31625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 627 -a 1 r -t 2.31655 -s 3 -d 5 -p cbr -e 210 -c 1 -i 575 -a 1 r -t 2.31695 -s 2 -d 3 -p cbr -e 210 -c 1 -i 592 -a 1 + -t 2.31695 -s 3 -d 5 -p cbr -e 210 -c 1 -i 592 -a 1 - -t 2.31695 -s 3 -d 5 -p cbr -e 210 -c 1 -i 592 -a 1 h -t 2.31695 -s 3 -d 5 -p cbr -e 210 -c 1 -i 592 -a 1 r -t 2.31711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 611 -a 1 + -t 2.31711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 611 -a 1 - -t 2.31735 -s 2 -d 3 -p cbr -e 210 -c 1 -i 609 -a 1 h -t 2.31735 -s 2 -d 3 -p cbr -e 210 -c 1 -i 609 -a 1 r -t 2.31959 -s 3 -d 2 -p ack -e 40 -c 0 -i 598 -a 0 -S 0 -y {15 15} + -t 2.31959 -s 2 -d 0 -p ack -e 40 -c 0 -i 598 -a 0 -S 0 -y {15 15} - -t 2.31959 -s 2 -d 0 -p ack -e 40 -c 0 -i 598 -a 0 -S 0 -f 0 -m 1 -y {15 15} h -t 2.31959 -s 2 -d 0 -p ack -e 40 -c 0 -i 598 -a 0 -S 0 -y {-1 -1} r -t 2.31991 -s 3 -d 5 -p cbr -e 210 -c 1 -i 576 -a 1 + -t 2.32 -s 1 -d 2 -p cbr -e 210 -c 1 -i 628 -a 1 - -t 2.32 -s 1 -d 2 -p cbr -e 210 -c 1 -i 628 -a 1 h -t 2.32 -s 1 -d 2 -p cbr -e 210 -c 1 -i 628 -a 1 r -t 2.32031 -s 2 -d 3 -p cbr -e 210 -c 1 -i 593 -a 1 + -t 2.32031 -s 3 -d 5 -p cbr -e 210 -c 1 -i 593 -a 1 - -t 2.32031 -s 3 -d 5 -p cbr -e 210 -c 1 -i 593 -a 1 h -t 2.32031 -s 3 -d 5 -p cbr -e 210 -c 1 -i 593 -a 1 - -t 2.32071 -s 2 -d 3 -p cbr -e 210 -c 1 -i 610 -a 1 h -t 2.32071 -s 2 -d 3 -p cbr -e 210 -c 1 -i 610 -a 1 r -t 2.32086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 612 -a 1 + -t 2.32086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 612 -a 1 r -t 2.32327 -s 3 -d 5 -p cbr -e 210 -c 1 -i 577 -a 1 r -t 2.32367 -s 2 -d 3 -p cbr -e 210 -c 1 -i 594 -a 1 + -t 2.32367 -s 3 -d 5 -p cbr -e 210 -c 1 -i 594 -a 1 - -t 2.32367 -s 3 -d 5 -p cbr -e 210 -c 1 -i 594 -a 1 h -t 2.32367 -s 3 -d 5 -p cbr -e 210 -c 1 -i 594 -a 1 + -t 2.32375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 629 -a 1 - -t 2.32375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 629 -a 1 h -t 2.32375 -s 1 -d 2 -p cbr -e 210 -c 1 -i 629 -a 1 - -t 2.32407 -s 2 -d 3 -p cbr -e 210 -c 1 -i 611 -a 1 h -t 2.32407 -s 2 -d 3 -p cbr -e 210 -c 1 -i 611 -a 1 r -t 2.32461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 613 -a 1 + -t 2.32461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 613 -a 1 r -t 2.32663 -s 3 -d 5 -p cbr -e 210 -c 1 -i 578 -a 1 r -t 2.32703 -s 2 -d 3 -p cbr -e 210 -c 1 -i 595 -a 1 + -t 2.32703 -s 3 -d 5 -p cbr -e 210 -c 1 -i 595 -a 1 - -t 2.32703 -s 3 -d 5 -p cbr -e 210 -c 1 -i 595 -a 1 h -t 2.32703 -s 3 -d 5 -p cbr -e 210 -c 1 -i 595 -a 1 - -t 2.32743 -s 2 -d 3 -p cbr -e 210 -c 1 -i 612 -a 1 h -t 2.32743 -s 2 -d 3 -p cbr -e 210 -c 1 -i 612 -a 1 + -t 2.3275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 630 -a 1 - -t 2.3275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 630 -a 1 h -t 2.3275 -s 1 -d 2 -p cbr -e 210 -c 1 -i 630 -a 1 r -t 2.32836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 615 -a 1 + -t 2.32836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 615 -a 1 r -t 2.32999 -s 3 -d 5 -p cbr -e 210 -c 1 -i 579 -a 1 v -t 2.3300000000000001 sim_annotation 2.3300000000000001 29 Send Packet_18 r -t 2.33039 -s 2 -d 3 -p cbr -e 210 -c 1 -i 596 -a 1 + -t 2.33039 -s 3 -d 5 -p cbr -e 210 -c 1 -i 596 -a 1 - -t 2.33039 -s 3 -d 5 -p cbr -e 210 -c 1 -i 596 -a 1 h -t 2.33039 -s 3 -d 5 -p cbr -e 210 -c 1 -i 596 -a 1 - -t 2.33079 -s 2 -d 3 -p cbr -e 210 -c 1 -i 613 -a 1 h -t 2.33079 -s 2 -d 3 -p cbr -e 210 -c 1 -i 613 -a 1 + -t 2.33125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 631 -a 1 - -t 2.33125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 631 -a 1 h -t 2.33125 -s 1 -d 2 -p cbr -e 210 -c 1 -i 631 -a 1 r -t 2.33211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 616 -a 1 + -t 2.33211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 616 -a 1 r -t 2.33335 -s 3 -d 5 -p cbr -e 210 -c 1 -i 581 -a 1 r -t 2.33375 -s 2 -d 3 -p cbr -e 210 -c 1 -i 597 -a 1 + -t 2.33375 -s 3 -d 5 -p cbr -e 210 -c 1 -i 597 -a 1 - -t 2.33375 -s 3 -d 5 -p cbr -e 210 -c 1 -i 597 -a 1 h -t 2.33375 -s 3 -d 5 -p cbr -e 210 -c 1 -i 597 -a 1 - -t 2.33415 -s 2 -d 3 -p cbr -e 210 -c 1 -i 615 -a 1 h -t 2.33415 -s 2 -d 3 -p cbr -e 210 -c 1 -i 615 -a 1 + -t 2.335 -s 1 -d 2 -p cbr -e 210 -c 1 -i 632 -a 1 - -t 2.335 -s 1 -d 2 -p cbr -e 210 -c 1 -i 632 -a 1 h -t 2.335 -s 1 -d 2 -p cbr -e 210 -c 1 -i 632 -a 1 r -t 2.33586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 617 -a 1 + -t 2.33586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 617 -a 1 r -t 2.33671 -s 3 -d 5 -p cbr -e 210 -c 1 -i 582 -a 1 r -t 2.33711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 599 -a 1 + -t 2.33711 -s 3 -d 5 -p cbr -e 210 -c 1 -i 599 -a 1 - -t 2.33711 -s 3 -d 5 -p cbr -e 210 -c 1 -i 599 -a 1 h -t 2.33711 -s 3 -d 5 -p cbr -e 210 -c 1 -i 599 -a 1 - -t 2.33751 -s 2 -d 3 -p cbr -e 210 -c 1 -i 616 -a 1 h -t 2.33751 -s 2 -d 3 -p cbr -e 210 -c 1 -i 616 -a 1 + -t 2.33875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 633 -a 1 - -t 2.33875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 633 -a 1 h -t 2.33875 -s 1 -d 2 -p cbr -e 210 -c 1 -i 633 -a 1 r -t 2.33961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 618 -a 1 + -t 2.33961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 618 -a 1 r -t 2.34007 -s 3 -d 5 -p cbr -e 210 -c 1 -i 583 -a 1 r -t 2.34039 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 614 -a 0 -S 0 -y {16 16} + -t 2.34039 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 614 -a 0 -S 0 -y {16 16} r -t 2.34047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 600 -a 1 + -t 2.34047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 600 -a 1 - -t 2.34047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 600 -a 1 h -t 2.34047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 600 -a 1 - -t 2.34087 -s 2 -d 3 -p cbr -e 210 -c 1 -i 617 -a 1 h -t 2.34087 -s 2 -d 3 -p cbr -e 210 -c 1 -i 617 -a 1 + -t 2.3425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 634 -a 1 - -t 2.3425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 634 -a 1 h -t 2.3425 -s 1 -d 2 -p cbr -e 210 -c 1 -i 634 -a 1 r -t 2.34336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 619 -a 1 + -t 2.34336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 619 -a 1 r -t 2.34343 -s 3 -d 5 -p cbr -e 210 -c 1 -i 584 -a 1 r -t 2.34383 -s 2 -d 3 -p cbr -e 210 -c 1 -i 601 -a 1 + -t 2.34383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 601 -a 1 - -t 2.34383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 601 -a 1 h -t 2.34383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 601 -a 1 - -t 2.34423 -s 2 -d 3 -p cbr -e 210 -c 1 -i 618 -a 1 h -t 2.34423 -s 2 -d 3 -p cbr -e 210 -c 1 -i 618 -a 1 + -t 2.34625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 635 -a 1 - -t 2.34625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 635 -a 1 h -t 2.34625 -s 1 -d 2 -p cbr -e 210 -c 1 -i 635 -a 1 r -t 2.34679 -s 3 -d 5 -p cbr -e 210 -c 1 -i 585 -a 1 r -t 2.34711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 620 -a 1 + -t 2.34711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 620 -a 1 r -t 2.34719 -s 2 -d 3 -p cbr -e 210 -c 1 -i 602 -a 1 + -t 2.34719 -s 3 -d 5 -p cbr -e 210 -c 1 -i 602 -a 1 - -t 2.34719 -s 3 -d 5 -p cbr -e 210 -c 1 -i 602 -a 1 h -t 2.34719 -s 3 -d 5 -p cbr -e 210 -c 1 -i 602 -a 1 - -t 2.34759 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 614 -a 0 -S 0 -y {16 16} h -t 2.34759 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 614 -a 0 -S 0 -y {-1 -1} + -t 2.35 -s 1 -d 2 -p cbr -e 210 -c 1 -i 636 -a 1 - -t 2.35 -s 1 -d 2 -p cbr -e 210 -c 1 -i 636 -a 1 h -t 2.35 -s 1 -d 2 -p cbr -e 210 -c 1 -i 636 -a 1 r -t 2.35015 -s 3 -d 5 -p cbr -e 210 -c 1 -i 586 -a 1 r -t 2.35055 -s 2 -d 3 -p cbr -e 210 -c 1 -i 603 -a 1 + -t 2.35055 -s 3 -d 5 -p cbr -e 210 -c 1 -i 603 -a 1 - -t 2.35055 -s 3 -d 5 -p cbr -e 210 -c 1 -i 603 -a 1 h -t 2.35055 -s 3 -d 5 -p cbr -e 210 -c 1 -i 603 -a 1 r -t 2.35086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 621 -a 1 + -t 2.35086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 621 -a 1 r -t 2.35351 -s 3 -d 5 -p cbr -e 210 -c 1 -i 587 -a 1 r -t 2.35391 -s 2 -d 3 -p cbr -e 210 -c 1 -i 604 -a 1 + -t 2.35391 -s 3 -d 5 -p cbr -e 210 -c 1 -i 604 -a 1 - -t 2.35391 -s 3 -d 5 -p cbr -e 210 -c 1 -i 604 -a 1 h -t 2.35391 -s 3 -d 5 -p cbr -e 210 -c 1 -i 604 -a 1 r -t 2.35461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 622 -a 1 + -t 2.35461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 622 -a 1 r -t 2.35687 -s 3 -d 5 -p cbr -e 210 -c 1 -i 588 -a 1 r -t 2.35727 -s 2 -d 3 -p cbr -e 210 -c 1 -i 605 -a 1 + -t 2.35727 -s 3 -d 5 -p cbr -e 210 -c 1 -i 605 -a 1 - -t 2.35727 -s 3 -d 5 -p cbr -e 210 -c 1 -i 605 -a 1 h -t 2.35727 -s 3 -d 5 -p cbr -e 210 -c 1 -i 605 -a 1 r -t 2.35836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 624 -a 1 + -t 2.35836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 624 -a 1 r -t 2.36023 -s 3 -d 5 -p cbr -e 210 -c 1 -i 589 -a 1 r -t 2.36063 -s 2 -d 3 -p cbr -e 210 -c 1 -i 606 -a 1 + -t 2.36063 -s 3 -d 5 -p cbr -e 210 -c 1 -i 606 -a 1 - -t 2.36063 -s 3 -d 5 -p cbr -e 210 -c 1 -i 606 -a 1 h -t 2.36063 -s 3 -d 5 -p cbr -e 210 -c 1 -i 606 -a 1 r -t 2.36211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 625 -a 1 + -t 2.36211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 625 -a 1 - -t 2.36359 -s 2 -d 3 -p cbr -e 210 -c 1 -i 619 -a 1 h -t 2.36359 -s 2 -d 3 -p cbr -e 210 -c 1 -i 619 -a 1 r -t 2.36359 -s 3 -d 5 -p cbr -e 210 -c 1 -i 590 -a 1 r -t 2.36399 -s 2 -d 3 -p cbr -e 210 -c 1 -i 607 -a 1 + -t 2.36399 -s 3 -d 5 -p cbr -e 210 -c 1 -i 607 -a 1 - -t 2.36399 -s 3 -d 5 -p cbr -e 210 -c 1 -i 607 -a 1 h -t 2.36399 -s 3 -d 5 -p cbr -e 210 -c 1 -i 607 -a 1 r -t 2.36586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 626 -a 1 + -t 2.36586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 626 -a 1 - -t 2.36695 -s 2 -d 3 -p cbr -e 210 -c 1 -i 620 -a 1 h -t 2.36695 -s 2 -d 3 -p cbr -e 210 -c 1 -i 620 -a 1 r -t 2.36695 -s 3 -d 5 -p cbr -e 210 -c 1 -i 591 -a 1 r -t 2.36735 -s 2 -d 3 -p cbr -e 210 -c 1 -i 608 -a 1 + -t 2.36735 -s 3 -d 5 -p cbr -e 210 -c 1 -i 608 -a 1 - -t 2.36735 -s 3 -d 5 -p cbr -e 210 -c 1 -i 608 -a 1 h -t 2.36735 -s 3 -d 5 -p cbr -e 210 -c 1 -i 608 -a 1 r -t 2.36961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 627 -a 1 + -t 2.36961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 627 -a 1 r -t 2.36983 -s 0 -d 2 -p tcp -e 1000 -c 0 -i 623 -a 0 -S 0 -y {17 17} + -t 2.36983 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 623 -a 0 -S 0 -y {17 17} r -t 2.37023 -s 2 -d 0 -p ack -e 40 -c 0 -i 598 -a 0 -S 0 -y {15 15} f -t 2.37022999999997896 -s 0 -d 4 -n cwnd_ -a tcp -v 3.908563 -o 3.633333 -T v - -t 2.37031 -s 2 -d 3 -p cbr -e 210 -c 1 -i 621 -a 1 h -t 2.37031 -s 2 -d 3 -p cbr -e 210 -c 1 -i 621 -a 1 r -t 2.37031 -s 3 -d 5 -p cbr -e 210 -c 1 -i 592 -a 1 r -t 2.37071 -s 2 -d 3 -p cbr -e 210 -c 1 -i 609 -a 1 + -t 2.37071 -s 3 -d 5 -p cbr -e 210 -c 1 -i 609 -a 1 - -t 2.37071 -s 3 -d 5 -p cbr -e 210 -c 1 -i 609 -a 1 h -t 2.37071 -s 3 -d 5 -p cbr -e 210 -c 1 -i 609 -a 1 r -t 2.37336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 628 -a 1 + -t 2.37336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 628 -a 1 - -t 2.37367 -s 2 -d 3 -p cbr -e 210 -c 1 -i 622 -a 1 h -t 2.37367 -s 2 -d 3 -p cbr -e 210 -c 1 -i 622 -a 1 r -t 2.37367 -s 3 -d 5 -p cbr -e 210 -c 1 -i 593 -a 1 r -t 2.37407 -s 2 -d 3 -p cbr -e 210 -c 1 -i 610 -a 1 + -t 2.37407 -s 3 -d 5 -p cbr -e 210 -c 1 -i 610 -a 1 - -t 2.37407 -s 3 -d 5 -p cbr -e 210 -c 1 -i 610 -a 1 h -t 2.37407 -s 3 -d 5 -p cbr -e 210 -c 1 -i 610 -a 1 - -t 2.37703 -s 2 -d 3 -p cbr -e 210 -c 1 -i 624 -a 1 h -t 2.37703 -s 2 -d 3 -p cbr -e 210 -c 1 -i 624 -a 1 r -t 2.37703 -s 3 -d 5 -p cbr -e 210 -c 1 -i 594 -a 1 r -t 2.37711 -s 1 -d 2 -p cbr -e 210 -c 1 -i 629 -a 1 + -t 2.37711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 629 -a 1 r -t 2.37743 -s 2 -d 3 -p cbr -e 210 -c 1 -i 611 -a 1 + -t 2.37743 -s 3 -d 5 -p cbr -e 210 -c 1 -i 611 -a 1 - -t 2.37743 -s 3 -d 5 -p cbr -e 210 -c 1 -i 611 -a 1 h -t 2.37743 -s 3 -d 5 -p cbr -e 210 -c 1 -i 611 -a 1 - -t 2.38039 -s 2 -d 3 -p cbr -e 210 -c 1 -i 625 -a 1 h -t 2.38039 -s 2 -d 3 -p cbr -e 210 -c 1 -i 625 -a 1 r -t 2.38039 -s 3 -d 5 -p cbr -e 210 -c 1 -i 595 -a 1 r -t 2.38079 -s 2 -d 3 -p cbr -e 210 -c 1 -i 612 -a 1 + -t 2.38079 -s 3 -d 5 -p cbr -e 210 -c 1 -i 612 -a 1 - -t 2.38079 -s 3 -d 5 -p cbr -e 210 -c 1 -i 612 -a 1 h -t 2.38079 -s 3 -d 5 -p cbr -e 210 -c 1 -i 612 -a 1 r -t 2.38086 -s 1 -d 2 -p cbr -e 210 -c 1 -i 630 -a 1 + -t 2.38086 -s 2 -d 3 -p cbr -e 210 -c 1 -i 630 -a 1 - -t 2.38375 -s 2 -d 3 -p cbr -e 210 -c 1 -i 626 -a 1 h -t 2.38375 -s 2 -d 3 -p cbr -e 210 -c 1 -i 626 -a 1 r -t 2.38375 -s 3 -d 5 -p cbr -e 210 -c 1 -i 596 -a 1 r -t 2.38415 -s 2 -d 3 -p cbr -e 210 -c 1 -i 613 -a 1 + -t 2.38415 -s 3 -d 5 -p cbr -e 210 -c 1 -i 613 -a 1 - -t 2.38415 -s 3 -d 5 -p cbr -e 210 -c 1 -i 613 -a 1 h -t 2.38415 -s 3 -d 5 -p cbr -e 210 -c 1 -i 613 -a 1 r -t 2.38461 -s 1 -d 2 -p cbr -e 210 -c 1 -i 631 -a 1 + -t 2.38461 -s 2 -d 3 -p cbr -e 210 -c 1 -i 631 -a 1 - -t 2.38711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 627 -a 1 h -t 2.38711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 627 -a 1 r -t 2.38711 -s 3 -d 5 -p cbr -e 210 -c 1 -i 597 -a 1 r -t 2.38751 -s 2 -d 3 -p cbr -e 210 -c 1 -i 615 -a 1 + -t 2.38751 -s 3 -d 5 -p cbr -e 210 -c 1 -i 615 -a 1 - -t 2.38751 -s 3 -d 5 -p cbr -e 210 -c 1 -i 615 -a 1 h -t 2.38751 -s 3 -d 5 -p cbr -e 210 -c 1 -i 615 -a 1 r -t 2.38836 -s 1 -d 2 -p cbr -e 210 -c 1 -i 632 -a 1 + -t 2.38836 -s 2 -d 3 -p cbr -e 210 -c 1 -i 632 -a 1 - -t 2.39047 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 623 -a 0 -S 0 -y {17 17} h -t 2.39047 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 623 -a 0 -S 0 -y {-1 -1} r -t 2.39047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 599 -a 1 r -t 2.39087 -s 2 -d 3 -p cbr -e 210 -c 1 -i 616 -a 1 + -t 2.39087 -s 3 -d 5 -p cbr -e 210 -c 1 -i 616 -a 1 - -t 2.39087 -s 3 -d 5 -p cbr -e 210 -c 1 -i 616 -a 1 h -t 2.39087 -s 3 -d 5 -p cbr -e 210 -c 1 -i 616 -a 1 r -t 2.39211 -s 1 -d 2 -p cbr -e 210 -c 1 -i 633 -a 1 + -t 2.39211 -s 2 -d 3 -p cbr -e 210 -c 1 -i 633 -a 1 r -t 2.39383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 600 -a 1 r -t 2.39423 -s 2 -d 3 -p cbr -e 210 -c 1 -i 617 -a 1 + -t 2.39423 -s 3 -d 5 -p cbr -e 210 -c 1 -i 617 -a 1 - -t 2.39423 -s 3 -d 5 -p cbr -e 210 -c 1 -i 617 -a 1 h -t 2.39423 -s 3 -d 5 -p cbr -e 210 -c 1 -i 617 -a 1 r -t 2.39586 -s 1 -d 2 -p cbr -e 210 -c 1 -i 634 -a 1 + -t 2.39586 -s 2 -d 3 -p cbr -e 210 -c 1 -i 634 -a 1 r -t 2.39719 -s 3 -d 5 -p cbr -e 210 -c 1 -i 601 -a 1 r -t 2.39759 -s 2 -d 3 -p cbr -e 210 -c 1 -i 618 -a 1 + -t 2.39759 -s 3 -d 5 -p cbr -e 210 -c 1 -i 618 -a 1 - -t 2.39759 -s 3 -d 5 -p cbr -e 210 -c 1 -i 618 -a 1 h -t 2.39759 -s 3 -d 5 -p cbr -e 210 -c 1 -i 618 -a 1 r -t 2.39961 -s 1 -d 2 -p cbr -e 210 -c 1 -i 635 -a 1 + -t 2.39961 -s 2 -d 3 -p cbr -e 210 -c 1 -i 635 -a 1 r -t 2.40055 -s 3 -d 5 -p cbr -e 210 -c 1 -i 602 -a 1 r -t 2.40336 -s 1 -d 2 -p cbr -e 210 -c 1 -i 636 -a 1 + -t 2.40336 -s 2 -d 3 -p cbr -e 210 -c 1 -i 636 -a 1 r -t 2.40391 -s 3 -d 5 -p cbr -e 210 -c 1 -i 603 -a 1 - -t 2.40647 -s 2 -d 3 -p cbr -e 210 -c 1 -i 628 -a 1 h -t 2.40647 -s 2 -d 3 -p cbr -e 210 -c 1 -i 628 -a 1 r -t 2.40727 -s 3 -d 5 -p cbr -e 210 -c 1 -i 604 -a 1 - -t 2.40983 -s 2 -d 3 -p cbr -e 210 -c 1 -i 629 -a 1 h -t 2.40983 -s 2 -d 3 -p cbr -e 210 -c 1 -i 629 -a 1 r -t 2.41063 -s 3 -d 5 -p cbr -e 210 -c 1 -i 605 -a 1 - -t 2.41319 -s 2 -d 3 -p cbr -e 210 -c 1 -i 630 -a 1 h -t 2.41319 -s 2 -d 3 -p cbr -e 210 -c 1 -i 630 -a 1 r -t 2.41359 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 614 -a 0 -S 0 -y {16 16} + -t 2.41359 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 614 -a 0 -S 0 -y {16 16} - -t 2.41359 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 614 -a 0 -S 0 -y {16 16} h -t 2.41359 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 614 -a 0 -S 0 -y {-1 -1} r -t 2.41399 -s 3 -d 5 -p cbr -e 210 -c 1 -i 606 -a 1 - -t 2.41655 -s 2 -d 3 -p cbr -e 210 -c 1 -i 631 -a 1 h -t 2.41655 -s 2 -d 3 -p cbr -e 210 -c 1 -i 631 -a 1 r -t 2.41695 -s 2 -d 3 -p cbr -e 210 -c 1 -i 619 -a 1 + -t 2.41695 -s 3 -d 5 -p cbr -e 210 -c 1 -i 619 -a 1 - -t 2.41695 -s 3 -d 5 -p cbr -e 210 -c 1 -i 619 -a 1 h -t 2.41695 -s 3 -d 5 -p cbr -e 210 -c 1 -i 619 -a 1 r -t 2.41735 -s 3 -d 5 -p cbr -e 210 -c 1 -i 607 -a 1 - -t 2.41991 -s 2 -d 3 -p cbr -e 210 -c 1 -i 632 -a 1 h -t 2.41991 -s 2 -d 3 -p cbr -e 210 -c 1 -i 632 -a 1 r -t 2.42031 -s 2 -d 3 -p cbr -e 210 -c 1 -i 620 -a 1 + -t 2.42031 -s 3 -d 5 -p cbr -e 210 -c 1 -i 620 -a 1 - -t 2.42031 -s 3 -d 5 -p cbr -e 210 -c 1 -i 620 -a 1 h -t 2.42031 -s 3 -d 5 -p cbr -e 210 -c 1 -i 620 -a 1 r -t 2.42071 -s 3 -d 5 -p cbr -e 210 -c 1 -i 608 -a 1 - -t 2.42327 -s 2 -d 3 -p cbr -e 210 -c 1 -i 633 -a 1 h -t 2.42327 -s 2 -d 3 -p cbr -e 210 -c 1 -i 633 -a 1 r -t 2.42367 -s 2 -d 3 -p cbr -e 210 -c 1 -i 621 -a 1 + -t 2.42367 -s 3 -d 5 -p cbr -e 210 -c 1 -i 621 -a 1 - -t 2.42367 -s 3 -d 5 -p cbr -e 210 -c 1 -i 621 -a 1 h -t 2.42367 -s 3 -d 5 -p cbr -e 210 -c 1 -i 621 -a 1 r -t 2.42407 -s 3 -d 5 -p cbr -e 210 -c 1 -i 609 -a 1 - -t 2.42663 -s 2 -d 3 -p cbr -e 210 -c 1 -i 634 -a 1 h -t 2.42663 -s 2 -d 3 -p cbr -e 210 -c 1 -i 634 -a 1 r -t 2.42703 -s 2 -d 3 -p cbr -e 210 -c 1 -i 622 -a 1 + -t 2.42703 -s 3 -d 5 -p cbr -e 210 -c 1 -i 622 -a 1 - -t 2.42703 -s 3 -d 5 -p cbr -e 210 -c 1 -i 622 -a 1 h -t 2.42703 -s 3 -d 5 -p cbr -e 210 -c 1 -i 622 -a 1 r -t 2.42743 -s 3 -d 5 -p cbr -e 210 -c 1 -i 610 -a 1 - -t 2.42999 -s 2 -d 3 -p cbr -e 210 -c 1 -i 635 -a 1 h -t 2.42999 -s 2 -d 3 -p cbr -e 210 -c 1 -i 635 -a 1 r -t 2.43039 -s 2 -d 3 -p cbr -e 210 -c 1 -i 624 -a 1 + -t 2.43039 -s 3 -d 5 -p cbr -e 210 -c 1 -i 624 -a 1 - -t 2.43039 -s 3 -d 5 -p cbr -e 210 -c 1 -i 624 -a 1 h -t 2.43039 -s 3 -d 5 -p cbr -e 210 -c 1 -i 624 -a 1 r -t 2.43079 -s 3 -d 5 -p cbr -e 210 -c 1 -i 611 -a 1 - -t 2.43335 -s 2 -d 3 -p cbr -e 210 -c 1 -i 636 -a 1 h -t 2.43335 -s 2 -d 3 -p cbr -e 210 -c 1 -i 636 -a 1 r -t 2.43375 -s 2 -d 3 -p cbr -e 210 -c 1 -i 625 -a 1 + -t 2.43375 -s 3 -d 5 -p cbr -e 210 -c 1 -i 625 -a 1 - -t 2.43375 -s 3 -d 5 -p cbr -e 210 -c 1 -i 625 -a 1 h -t 2.43375 -s 3 -d 5 -p cbr -e 210 -c 1 -i 625 -a 1 r -t 2.43415 -s 3 -d 5 -p cbr -e 210 -c 1 -i 612 -a 1 r -t 2.43711 -s 2 -d 3 -p cbr -e 210 -c 1 -i 626 -a 1 + -t 2.43711 -s 3 -d 5 -p cbr -e 210 -c 1 -i 626 -a 1 - -t 2.43711 -s 3 -d 5 -p cbr -e 210 -c 1 -i 626 -a 1 h -t 2.43711 -s 3 -d 5 -p cbr -e 210 -c 1 -i 626 -a 1 r -t 2.43751 -s 3 -d 5 -p cbr -e 210 -c 1 -i 613 -a 1 r -t 2.44047 -s 2 -d 3 -p cbr -e 210 -c 1 -i 627 -a 1 + -t 2.44047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 627 -a 1 - -t 2.44047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 627 -a 1 h -t 2.44047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 627 -a 1 r -t 2.44087 -s 3 -d 5 -p cbr -e 210 -c 1 -i 615 -a 1 r -t 2.44423 -s 3 -d 5 -p cbr -e 210 -c 1 -i 616 -a 1 r -t 2.44759 -s 3 -d 5 -p cbr -e 210 -c 1 -i 617 -a 1 v -t 2.4500000000000002 sim_annotation 2.4500000000000002 30 Ack_18 r -t 2.45095 -s 3 -d 5 -p cbr -e 210 -c 1 -i 618 -a 1 r -t 2.45647 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 623 -a 0 -S 0 -y {17 17} + -t 2.45647 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 623 -a 0 -S 0 -y {17 17} - -t 2.45647 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 623 -a 0 -S 0 -y {17 17} h -t 2.45647 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 623 -a 0 -S 0 -y {-1 -1} r -t 2.45983 -s 2 -d 3 -p cbr -e 210 -c 1 -i 628 -a 1 + -t 2.45983 -s 3 -d 5 -p cbr -e 210 -c 1 -i 628 -a 1 - -t 2.45983 -s 3 -d 5 -p cbr -e 210 -c 1 -i 628 -a 1 h -t 2.45983 -s 3 -d 5 -p cbr -e 210 -c 1 -i 628 -a 1 r -t 2.46319 -s 2 -d 3 -p cbr -e 210 -c 1 -i 629 -a 1 + -t 2.46319 -s 3 -d 5 -p cbr -e 210 -c 1 -i 629 -a 1 - -t 2.46319 -s 3 -d 5 -p cbr -e 210 -c 1 -i 629 -a 1 h -t 2.46319 -s 3 -d 5 -p cbr -e 210 -c 1 -i 629 -a 1 r -t 2.46655 -s 2 -d 3 -p cbr -e 210 -c 1 -i 630 -a 1 + -t 2.46655 -s 3 -d 5 -p cbr -e 210 -c 1 -i 630 -a 1 - -t 2.46655 -s 3 -d 5 -p cbr -e 210 -c 1 -i 630 -a 1 h -t 2.46655 -s 3 -d 5 -p cbr -e 210 -c 1 -i 630 -a 1 r -t 2.46991 -s 2 -d 3 -p cbr -e 210 -c 1 -i 631 -a 1 + -t 2.46991 -s 3 -d 5 -p cbr -e 210 -c 1 -i 631 -a 1 - -t 2.46991 -s 3 -d 5 -p cbr -e 210 -c 1 -i 631 -a 1 h -t 2.46991 -s 3 -d 5 -p cbr -e 210 -c 1 -i 631 -a 1 r -t 2.47031 -s 3 -d 5 -p cbr -e 210 -c 1 -i 619 -a 1 r -t 2.47327 -s 2 -d 3 -p cbr -e 210 -c 1 -i 632 -a 1 + -t 2.47327 -s 3 -d 5 -p cbr -e 210 -c 1 -i 632 -a 1 - -t 2.47327 -s 3 -d 5 -p cbr -e 210 -c 1 -i 632 -a 1 h -t 2.47327 -s 3 -d 5 -p cbr -e 210 -c 1 -i 632 -a 1 r -t 2.47367 -s 3 -d 5 -p cbr -e 210 -c 1 -i 620 -a 1 r -t 2.47663 -s 2 -d 3 -p cbr -e 210 -c 1 -i 633 -a 1 + -t 2.47663 -s 3 -d 5 -p cbr -e 210 -c 1 -i 633 -a 1 - -t 2.47663 -s 3 -d 5 -p cbr -e 210 -c 1 -i 633 -a 1 h -t 2.47663 -s 3 -d 5 -p cbr -e 210 -c 1 -i 633 -a 1 r -t 2.47703 -s 3 -d 5 -p cbr -e 210 -c 1 -i 621 -a 1 r -t 2.47959 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 614 -a 0 -S 0 -y {16 16} + -t 2.47959 -s 4 -d 3 -p ack -e 40 -c 0 -i 637 -a 0 -S 0 -y {16 16} - -t 2.47959 -s 4 -d 3 -p ack -e 40 -c 0 -i 637 -a 0 -S 0 -y {16 16} h -t 2.47959 -s 4 -d 3 -p ack -e 40 -c 0 -i 637 -a 0 -S 0 -y {-1 -1} r -t 2.47999 -s 2 -d 3 -p cbr -e 210 -c 1 -i 634 -a 1 + -t 2.47999 -s 3 -d 5 -p cbr -e 210 -c 1 -i 634 -a 1 - -t 2.47999 -s 3 -d 5 -p cbr -e 210 -c 1 -i 634 -a 1 h -t 2.47999 -s 3 -d 5 -p cbr -e 210 -c 1 -i 634 -a 1 r -t 2.48039 -s 3 -d 5 -p cbr -e 210 -c 1 -i 622 -a 1 r -t 2.48335 -s 2 -d 3 -p cbr -e 210 -c 1 -i 635 -a 1 + -t 2.48335 -s 3 -d 5 -p cbr -e 210 -c 1 -i 635 -a 1 - -t 2.48335 -s 3 -d 5 -p cbr -e 210 -c 1 -i 635 -a 1 h -t 2.48335 -s 3 -d 5 -p cbr -e 210 -c 1 -i 635 -a 1 r -t 2.48375 -s 3 -d 5 -p cbr -e 210 -c 1 -i 624 -a 1 r -t 2.48671 -s 2 -d 3 -p cbr -e 210 -c 1 -i 636 -a 1 + -t 2.48671 -s 3 -d 5 -p cbr -e 210 -c 1 -i 636 -a 1 - -t 2.48671 -s 3 -d 5 -p cbr -e 210 -c 1 -i 636 -a 1 h -t 2.48671 -s 3 -d 5 -p cbr -e 210 -c 1 -i 636 -a 1 r -t 2.48711 -s 3 -d 5 -p cbr -e 210 -c 1 -i 625 -a 1 r -t 2.49047 -s 3 -d 5 -p cbr -e 210 -c 1 -i 626 -a 1 r -t 2.49383 -s 3 -d 5 -p cbr -e 210 -c 1 -i 627 -a 1 v -t 2.5 sim_annotation 2.5 31 FTP stops r -t 2.51319 -s 3 -d 5 -p cbr -e 210 -c 1 -i 628 -a 1 r -t 2.51655 -s 3 -d 5 -p cbr -e 210 -c 1 -i 629 -a 1 r -t 2.51991 -s 3 -d 5 -p cbr -e 210 -c 1 -i 630 -a 1 r -t 2.52247 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 623 -a 0 -S 0 -y {17 17} + -t 2.52247 -s 4 -d 3 -p ack -e 40 -c 0 -i 638 -a 0 -S 0 -y {17 17} - -t 2.52247 -s 4 -d 3 -p ack -e 40 -c 0 -i 638 -a 0 -S 0 -y {17 17} h -t 2.52247 -s 4 -d 3 -p ack -e 40 -c 0 -i 638 -a 0 -S 0 -y {-1 -1} r -t 2.52327 -s 3 -d 5 -p cbr -e 210 -c 1 -i 631 -a 1 r -t 2.52663 -s 3 -d 5 -p cbr -e 210 -c 1 -i 632 -a 1 r -t 2.52999 -s 3 -d 5 -p cbr -e 210 -c 1 -i 633 -a 1 r -t 2.53023 -s 4 -d 3 -p ack -e 40 -c 0 -i 637 -a 0 -S 0 -y {16 16} + -t 2.53023 -s 3 -d 2 -p ack -e 40 -c 0 -i 637 -a 0 -S 0 -y {16 16} - -t 2.53023 -s 3 -d 2 -p ack -e 40 -c 0 -i 637 -a 0 -S 0 -y {16 16} h -t 2.53023 -s 3 -d 2 -p ack -e 40 -c 0 -i 637 -a 0 -S 0 -y {-1 -1} r -t 2.53335 -s 3 -d 5 -p cbr -e 210 -c 1 -i 634 -a 1 r -t 2.53671 -s 3 -d 5 -p cbr -e 210 -c 1 -i 635 -a 1 r -t 2.54007 -s 3 -d 5 -p cbr -e 210 -c 1 -i 636 -a 1 r -t 2.57311 -s 4 -d 3 -p ack -e 40 -c 0 -i 638 -a 0 -S 0 -y {17 17} + -t 2.57311 -s 3 -d 2 -p ack -e 40 -c 0 -i 638 -a 0 -S 0 -y {17 17} - -t 2.57311 -s 3 -d 2 -p ack -e 40 -c 0 -i 638 -a 0 -S 0 -y {17 17} h -t 2.57311 -s 3 -d 2 -p ack -e 40 -c 0 -i 638 -a 0 -S 0 -y {-1 -1} r -t 2.58087 -s 3 -d 2 -p ack -e 40 -c 0 -i 637 -a 0 -S 0 -y {16 16} + -t 2.58087 -s 2 -d 0 -p ack -e 40 -c 0 -i 637 -a 0 -S 0 -y {16 16} - -t 2.58087 -s 2 -d 0 -p ack -e 40 -c 0 -i 637 -a 0 -S 0 -f 0 -m 1 -y {16 16} h -t 2.58087 -s 2 -d 0 -p ack -e 40 -c 0 -i 637 -a 0 -S 0 -y {-1 -1} r -t 2.62375 -s 3 -d 2 -p ack -e 40 -c 0 -i 638 -a 0 -S 0 -y {17 17} + -t 2.62375 -s 2 -d 0 -p ack -e 40 -c 0 -i 638 -a 0 -S 0 -y {17 17} - -t 2.62375 -s 2 -d 0 -p ack -e 40 -c 0 -i 638 -a 0 -S 0 -f 0 -m 1 -y {17 17} h -t 2.62375 -s 2 -d 0 -p ack -e 40 -c 0 -i 638 -a 0 -S 0 -y {-1 -1} r -t 2.63151 -s 2 -d 0 -p ack -e 40 -c 0 -i 637 -a 0 -S 0 -y {16 16} f -t 2.63150999999996493 -s 0 -d 4 -n cwnd_ -a tcp -v 4.164411 -o 3.908563 -T v r -t 2.67439 -s 2 -d 0 -p ack -e 40 -c 0 -i 638 -a 0 -S 0 -y {17 17} f -t 2.67438999999996341 -s 0 -d 4 -n cwnd_ -a tcp -v 4.404541 -o 4.164411 -T v nam-1.15/edu/B6-slow-start-loss.tcl0000664000076400007660000001136107024407023015717 0ustar tomhnsnam# slow start protocol in congestion # features : labeling, annotation, nam-graph, and window size monitoring set ns [new Simulator] $ns color 1 Red $ns trace-all [open B6-slow-start-loss.tr w] $ns namtrace-all [open B6-slow-start-loss.nam w] ### build topology with 6 nodes proc build_topology1 { ns } { global node_ set node_(ss1) [$ns node] set node_(ss2) [$ns node] set node_(rr1) [$ns node] set node_(rr2) [$ns node] set node_(ss3) [$ns node] set node_(ss4) [$ns node] $node_(ss2) color "red" $node_(ss4) color "red" $node_(rr1) color "blue" $node_(rr2) color "blue" $node_(rr1) shape "rectangular" $node_(rr2) shape "rectangular" $ns at 0.0 "$node_(ss1) label TCP-Sender" $ns at 0.0 "$node_(ss2) label CBR-Sender" $ns at 0.0 "$node_(ss3) label TCP-Receiver" $ns at 0.0 "$node_(ss4) label CBR-Receiver" $ns duplex-link $node_(ss1) $node_(rr1) 0.5Mb 50ms DropTail $ns duplex-link $node_(ss2) $node_(rr1) 0.5Mb 50ms DropTail $ns duplex-link $node_(rr1) $node_(rr2) 0.5Mb 50ms DropTail $ns duplex-link $node_(rr2) $node_(ss3) 0.5Mb 50ms DropTail $ns duplex-link $node_(rr2) $node_(ss4) 0.5Mb 50ms DropTail $ns queue-limit $node_(rr1) $node_(rr2) 10 $ns queue-limit $node_(rr2) $node_(rr1) 10 $ns duplex-link-op $node_(ss1) $node_(rr1) orient right-down $ns duplex-link-op $node_(ss2) $node_(rr1) orient right-up $ns duplex-link-op $node_(rr1) $node_(rr2) orient right $ns duplex-link-op $node_(rr2) $node_(ss3) orient right-up $ns duplex-link-op $node_(rr2) $node_(ss4) orient right-down $ns duplex-link-op $node_(rr1) $node_(rr2) queuePos 0.5 $ns duplex-link-op $node_(rr2) $node_(rr1) queuePos 0.5 } build_topology1 $ns Agent/TCP set nam_tracevar_ true ### TCP between ss1 and ss3 (Black) set tcp2 [$ns create-connection TCP/Sack1 $node_(ss1) TCPSink/Sack1 $node_(ss3) 2] $tcp2 set fid_ 0 set ftp2 [$tcp2 attach-app FTP] $ns add-agent-trace $tcp2 tcp $ns monitor-agent-trace $tcp2 $tcp2 tracevar cwnd_ ### CBR traffic between ss2 and ss4 (Red) set cbr2 [$ns create-connection CBR $node_(ss2) Null $node_(ss4) 3] $cbr2 set fid_ 1 proc finish {} { global ns $ns flush-trace puts "filtering..." exec tclsh ../bin/namfilter.tcl B6-slow-start-loss.nam puts "running nam..." exec nam B6-slow-start-loss.nam & exit 0 } ### set operations $ns at 0.1 "$ftp2 start" $ns at 2.35 "$ftp2 stop" $ns at 0.1 "$cbr2 start" $ns at 2.35 "$cbr2 stop" $ns at 3.0 "finish" ### add annotations $ns at 0.0 "$ns trace-annotate \"Slow Start with Selective Repeat\"" $ns at 0.1 "$ns trace-annotate \"FTP starts at 0.1\"" $ns at 0.1 "$ns trace-annotate \"CBR starts at 0.1\"" $ns at 0.11 "$ns trace-annotate \"Send Packet_0 : Initial window size is 1\"" $ns at 0.21 "$ns trace-annotate \"Ack_0 : 1 ack is coming\"" $ns at 0.27 "$ns trace-annotate \"Send Packet_1,2 : Increase window size to 2\"" $ns at 0.38 "$ns trace-annotate \"Ack_1,2 : 2 acks are coming\"" $ns at 0.45 "$ns trace-annotate \"Send Packet_3,4,5,6 : Increase window size to 4\"" $ns at 0.52 "$ns trace-annotate \"Packet_5,6 are lost\"" $ns at 0.58 "$ns trace-annotate \"Ack_3,4 : 2 acks are coming\"" $ns at 0.63 "$ns trace-annotate \"Send Packet_7,8,9,10 : Keep window size to 4\"" $ns at 0.70 "$ns trace-annotate \"Packet_9 is lost\"" $ns at 0.76 "$ns trace-annotate \"3 Ack_4s : 3 acks are coming\"" $ns at 0.87 "$ns trace-annotate \"TIMEOUT for Packet_5\"" $ns at 0.89 "$ns trace-annotate \"Send Packet_5\"" $ns at 1.02 "$ns trace-annotate \"Ack_5 : 1 ack is coming\"" $ns at 1.08 "$ns trace-annotate \"Send Packet_6,9\"" $ns at 1.20 "$ns trace-annotate \"Ack_8,10 : 2 acks are coming\"" $ns at 1.26 "$ns trace-annotate \"Send Packet_11,12,13 : Decrease window size to 3\"" $ns at 1.33 "$ns trace-annotate \"Packet_13 is lost\"" $ns at 1.39 "$ns trace-annotate \"Ack_11,12 : 2 acks are coming\"" $ns at 1.46 "$ns trace-annotate \"Send Packet_14,15 : 1 packet per ack\"" $ns at 1.58 "$ns trace-annotate \"2 Ack_12s : 2 acks are coming\"" $ns at 1.63 "$ns trace-annotate \"Waiting for Ack_13\"" $ns at 1.96 "$ns trace-annotate \"TIMEOUT,Send Packet_13 : Initialize window size to 1\"" $ns at 2.09 "$ns trace-annotate \"Ack_15 : 1 ack is coming\"" $ns at 2.15 "$ns trace-annotate \"Send Packet_16,17 : Increase window size to 2\"" $ns at 2.27 "$ns trace-annotate \"Ack_16,17 : 2 acks are coming\"" $ns at 2.33 "$ns trace-annotate \"Send Packet_18\"" $ns at 2.45 "$ns trace-annotate \"Ack_18\"" $ns at 2.50 "$ns trace-annotate \"FTP stops\"" $ns run nam-1.15/edu/B6-slow-start-loss.tr0000664000076400007660000102171106751716026015577 0ustar tomhnsnamv 0 eval {set sim_annotation {Slow Start with Selective Repeat}} + 0.1 0 2 tcp 1000 ------- 0 0.0 4.0 0 0 - 0.1 0 2 tcp 1000 ------- 0 0.0 4.0 0 0 + 0.1 1 2 cbr 210 ------- 1 1.0 5.0 0 1 - 0.1 1 2 cbr 210 ------- 1 1.0 5.0 0 1 v 0.10000000000000001 eval {set sim_annotation {FTP starts at 0.1}} v 0.10000000000000001 eval {set sim_annotation {CBR starts at 0.1}} + 0.10375 1 2 cbr 210 ------- 1 1.0 5.0 1 2 - 0.10375 1 2 cbr 210 ------- 1 1.0 5.0 1 2 + 0.1075 1 2 cbr 210 ------- 1 1.0 5.0 2 3 - 0.1075 1 2 cbr 210 ------- 1 1.0 5.0 2 3 v 0.11 eval {set sim_annotation {Send Packet_0 : Initial window size is 1}} + 0.11125 1 2 cbr 210 ------- 1 1.0 5.0 3 4 - 0.11125 1 2 cbr 210 ------- 1 1.0 5.0 3 4 + 0.115 1 2 cbr 210 ------- 1 1.0 5.0 4 5 - 0.115 1 2 cbr 210 ------- 1 1.0 5.0 4 5 + 0.11875 1 2 cbr 210 ------- 1 1.0 5.0 5 6 - 0.11875 1 2 cbr 210 ------- 1 1.0 5.0 5 6 + 0.1225 1 2 cbr 210 ------- 1 1.0 5.0 6 7 - 0.1225 1 2 cbr 210 ------- 1 1.0 5.0 6 7 + 0.12625 1 2 cbr 210 ------- 1 1.0 5.0 7 8 - 0.12625 1 2 cbr 210 ------- 1 1.0 5.0 7 8 + 0.13 1 2 cbr 210 ------- 1 1.0 5.0 8 9 - 0.13 1 2 cbr 210 ------- 1 1.0 5.0 8 9 + 0.13375 1 2 cbr 210 ------- 1 1.0 5.0 9 10 - 0.13375 1 2 cbr 210 ------- 1 1.0 5.0 9 10 + 0.1375 1 2 cbr 210 ------- 1 1.0 5.0 10 11 - 0.1375 1 2 cbr 210 ------- 1 1.0 5.0 10 11 + 0.14125 1 2 cbr 210 ------- 1 1.0 5.0 11 12 - 0.14125 1 2 cbr 210 ------- 1 1.0 5.0 11 12 + 0.145 1 2 cbr 210 ------- 1 1.0 5.0 12 13 - 0.145 1 2 cbr 210 ------- 1 1.0 5.0 12 13 + 0.14875 1 2 cbr 210 ------- 1 1.0 5.0 13 14 - 0.14875 1 2 cbr 210 ------- 1 1.0 5.0 13 14 + 0.1525 1 2 cbr 210 ------- 1 1.0 5.0 14 15 - 0.1525 1 2 cbr 210 ------- 1 1.0 5.0 14 15 r 0.15336 1 2 cbr 210 ------- 1 1.0 5.0 0 1 + 0.15336 2 3 cbr 210 ------- 1 1.0 5.0 0 1 - 0.15336 2 3 cbr 210 ------- 1 1.0 5.0 0 1 + 0.15625 1 2 cbr 210 ------- 1 1.0 5.0 15 16 - 0.15625 1 2 cbr 210 ------- 1 1.0 5.0 15 16 r 0.15711 1 2 cbr 210 ------- 1 1.0 5.0 1 2 + 0.15711 2 3 cbr 210 ------- 1 1.0 5.0 1 2 - 0.15711 2 3 cbr 210 ------- 1 1.0 5.0 1 2 + 0.16 1 2 cbr 210 ------- 1 1.0 5.0 16 17 - 0.16 1 2 cbr 210 ------- 1 1.0 5.0 16 17 r 0.16086 1 2 cbr 210 ------- 1 1.0 5.0 2 3 + 0.16086 2 3 cbr 210 ------- 1 1.0 5.0 2 3 - 0.16086 2 3 cbr 210 ------- 1 1.0 5.0 2 3 + 0.16375 1 2 cbr 210 ------- 1 1.0 5.0 17 18 - 0.16375 1 2 cbr 210 ------- 1 1.0 5.0 17 18 r 0.16461 1 2 cbr 210 ------- 1 1.0 5.0 3 4 + 0.16461 2 3 cbr 210 ------- 1 1.0 5.0 3 4 - 0.16461 2 3 cbr 210 ------- 1 1.0 5.0 3 4 r 0.166 0 2 tcp 1000 ------- 0 0.0 4.0 0 0 + 0.166 2 3 tcp 1000 ------- 0 0.0 4.0 0 0 + 0.1675 1 2 cbr 210 ------- 1 1.0 5.0 18 19 - 0.1675 1 2 cbr 210 ------- 1 1.0 5.0 18 19 - 0.16797 2 3 tcp 1000 ------- 0 0.0 4.0 0 0 r 0.16836 1 2 cbr 210 ------- 1 1.0 5.0 4 5 + 0.16836 2 3 cbr 210 ------- 1 1.0 5.0 4 5 + 0.17125 1 2 cbr 210 ------- 1 1.0 5.0 19 20 - 0.17125 1 2 cbr 210 ------- 1 1.0 5.0 19 20 r 0.17211 1 2 cbr 210 ------- 1 1.0 5.0 5 6 + 0.17211 2 3 cbr 210 ------- 1 1.0 5.0 5 6 + 0.175 1 2 cbr 210 ------- 1 1.0 5.0 20 21 - 0.175 1 2 cbr 210 ------- 1 1.0 5.0 20 21 r 0.17586 1 2 cbr 210 ------- 1 1.0 5.0 6 7 + 0.17586 2 3 cbr 210 ------- 1 1.0 5.0 6 7 + 0.17875 1 2 cbr 210 ------- 1 1.0 5.0 21 22 - 0.17875 1 2 cbr 210 ------- 1 1.0 5.0 21 22 r 0.17961 1 2 cbr 210 ------- 1 1.0 5.0 7 8 + 0.17961 2 3 cbr 210 ------- 1 1.0 5.0 7 8 + 0.1825 1 2 cbr 210 ------- 1 1.0 5.0 22 23 - 0.1825 1 2 cbr 210 ------- 1 1.0 5.0 22 23 r 0.18336 1 2 cbr 210 ------- 1 1.0 5.0 8 9 + 0.18336 2 3 cbr 210 ------- 1 1.0 5.0 8 9 - 0.18397 2 3 cbr 210 ------- 1 1.0 5.0 4 5 + 0.18625 1 2 cbr 210 ------- 1 1.0 5.0 23 24 - 0.18625 1 2 cbr 210 ------- 1 1.0 5.0 23 24 r 0.18711 1 2 cbr 210 ------- 1 1.0 5.0 9 10 + 0.18711 2 3 cbr 210 ------- 1 1.0 5.0 9 10 - 0.18733 2 3 cbr 210 ------- 1 1.0 5.0 5 6 + 0.19 1 2 cbr 210 ------- 1 1.0 5.0 24 25 - 0.19 1 2 cbr 210 ------- 1 1.0 5.0 24 25 - 0.19069 2 3 cbr 210 ------- 1 1.0 5.0 6 7 r 0.19086 1 2 cbr 210 ------- 1 1.0 5.0 10 11 + 0.19086 2 3 cbr 210 ------- 1 1.0 5.0 10 11 + 0.19375 1 2 cbr 210 ------- 1 1.0 5.0 25 26 - 0.19375 1 2 cbr 210 ------- 1 1.0 5.0 25 26 - 0.19405 2 3 cbr 210 ------- 1 1.0 5.0 7 8 r 0.19461 1 2 cbr 210 ------- 1 1.0 5.0 11 12 + 0.19461 2 3 cbr 210 ------- 1 1.0 5.0 11 12 - 0.19741 2 3 cbr 210 ------- 1 1.0 5.0 8 9 + 0.1975 1 2 cbr 210 ------- 1 1.0 5.0 26 27 - 0.1975 1 2 cbr 210 ------- 1 1.0 5.0 26 27 r 0.19836 1 2 cbr 210 ------- 1 1.0 5.0 12 13 + 0.19836 2 3 cbr 210 ------- 1 1.0 5.0 12 13 - 0.20077 2 3 cbr 210 ------- 1 1.0 5.0 9 10 + 0.20125 1 2 cbr 210 ------- 1 1.0 5.0 27 28 - 0.20125 1 2 cbr 210 ------- 1 1.0 5.0 27 28 r 0.20211 1 2 cbr 210 ------- 1 1.0 5.0 13 14 + 0.20211 2 3 cbr 210 ------- 1 1.0 5.0 13 14 - 0.20413 2 3 cbr 210 ------- 1 1.0 5.0 10 11 + 0.205 1 2 cbr 210 ------- 1 1.0 5.0 28 29 - 0.205 1 2 cbr 210 ------- 1 1.0 5.0 28 29 r 0.20586 1 2 cbr 210 ------- 1 1.0 5.0 14 15 + 0.20586 2 3 cbr 210 ------- 1 1.0 5.0 14 15 r 0.20672 2 3 cbr 210 ------- 1 1.0 5.0 0 1 + 0.20672 3 5 cbr 210 ------- 1 1.0 5.0 0 1 - 0.20672 3 5 cbr 210 ------- 1 1.0 5.0 0 1 - 0.20749 2 3 cbr 210 ------- 1 1.0 5.0 11 12 + 0.20875 1 2 cbr 210 ------- 1 1.0 5.0 29 30 - 0.20875 1 2 cbr 210 ------- 1 1.0 5.0 29 30 r 0.20961 1 2 cbr 210 ------- 1 1.0 5.0 15 16 + 0.20961 2 3 cbr 210 ------- 1 1.0 5.0 15 16 v 0.20999999999999999 eval {set sim_annotation {Ack_0 : 1 ack is coming}} r 0.21047 2 3 cbr 210 ------- 1 1.0 5.0 1 2 + 0.21047 3 5 cbr 210 ------- 1 1.0 5.0 1 2 - 0.21047 3 5 cbr 210 ------- 1 1.0 5.0 1 2 - 0.21085 2 3 cbr 210 ------- 1 1.0 5.0 12 13 + 0.2125 1 2 cbr 210 ------- 1 1.0 5.0 30 31 - 0.2125 1 2 cbr 210 ------- 1 1.0 5.0 30 31 r 0.21336 1 2 cbr 210 ------- 1 1.0 5.0 16 17 + 0.21336 2 3 cbr 210 ------- 1 1.0 5.0 16 17 - 0.21421 2 3 cbr 210 ------- 1 1.0 5.0 13 14 r 0.21422 2 3 cbr 210 ------- 1 1.0 5.0 2 3 + 0.21422 3 5 cbr 210 ------- 1 1.0 5.0 2 3 - 0.21422 3 5 cbr 210 ------- 1 1.0 5.0 2 3 + 0.21625 1 2 cbr 210 ------- 1 1.0 5.0 31 32 - 0.21625 1 2 cbr 210 ------- 1 1.0 5.0 31 32 r 0.21711 1 2 cbr 210 ------- 1 1.0 5.0 17 18 + 0.21711 2 3 cbr 210 ------- 1 1.0 5.0 17 18 - 0.21757 2 3 cbr 210 ------- 1 1.0 5.0 14 15 r 0.21797 2 3 cbr 210 ------- 1 1.0 5.0 3 4 + 0.21797 3 5 cbr 210 ------- 1 1.0 5.0 3 4 - 0.21797 3 5 cbr 210 ------- 1 1.0 5.0 3 4 + 0.22 1 2 cbr 210 ------- 1 1.0 5.0 32 33 - 0.22 1 2 cbr 210 ------- 1 1.0 5.0 32 33 r 0.22086 1 2 cbr 210 ------- 1 1.0 5.0 18 19 + 0.22086 2 3 cbr 210 ------- 1 1.0 5.0 18 19 - 0.22093 2 3 cbr 210 ------- 1 1.0 5.0 15 16 + 0.22375 1 2 cbr 210 ------- 1 1.0 5.0 33 34 - 0.22375 1 2 cbr 210 ------- 1 1.0 5.0 33 34 - 0.22429 2 3 cbr 210 ------- 1 1.0 5.0 16 17 r 0.22461 1 2 cbr 210 ------- 1 1.0 5.0 19 20 + 0.22461 2 3 cbr 210 ------- 1 1.0 5.0 19 20 + 0.2275 1 2 cbr 210 ------- 1 1.0 5.0 34 35 - 0.2275 1 2 cbr 210 ------- 1 1.0 5.0 34 35 - 0.22765 2 3 cbr 210 ------- 1 1.0 5.0 17 18 r 0.22836 1 2 cbr 210 ------- 1 1.0 5.0 20 21 + 0.22836 2 3 cbr 210 ------- 1 1.0 5.0 20 21 - 0.23101 2 3 cbr 210 ------- 1 1.0 5.0 18 19 + 0.23125 1 2 cbr 210 ------- 1 1.0 5.0 35 36 - 0.23125 1 2 cbr 210 ------- 1 1.0 5.0 35 36 r 0.23211 1 2 cbr 210 ------- 1 1.0 5.0 21 22 + 0.23211 2 3 cbr 210 ------- 1 1.0 5.0 21 22 r 0.23397 2 3 tcp 1000 ------- 0 0.0 4.0 0 0 + 0.23397 3 4 tcp 1000 ------- 0 0.0 4.0 0 0 - 0.23397 3 4 tcp 1000 ------- 0 0.0 4.0 0 0 - 0.23437 2 3 cbr 210 ------- 1 1.0 5.0 19 20 + 0.235 1 2 cbr 210 ------- 1 1.0 5.0 36 37 - 0.235 1 2 cbr 210 ------- 1 1.0 5.0 36 37 r 0.23586 1 2 cbr 210 ------- 1 1.0 5.0 22 23 + 0.23586 2 3 cbr 210 ------- 1 1.0 5.0 22 23 r 0.23733 2 3 cbr 210 ------- 1 1.0 5.0 4 5 + 0.23733 3 5 cbr 210 ------- 1 1.0 5.0 4 5 - 0.23733 3 5 cbr 210 ------- 1 1.0 5.0 4 5 - 0.23773 2 3 cbr 210 ------- 1 1.0 5.0 20 21 + 0.23875 1 2 cbr 210 ------- 1 1.0 5.0 37 38 - 0.23875 1 2 cbr 210 ------- 1 1.0 5.0 37 38 r 0.23961 1 2 cbr 210 ------- 1 1.0 5.0 23 24 + 0.23961 2 3 cbr 210 ------- 1 1.0 5.0 23 24 r 0.24069 2 3 cbr 210 ------- 1 1.0 5.0 5 6 + 0.24069 3 5 cbr 210 ------- 1 1.0 5.0 5 6 - 0.24069 3 5 cbr 210 ------- 1 1.0 5.0 5 6 - 0.24109 2 3 cbr 210 ------- 1 1.0 5.0 21 22 + 0.2425 1 2 cbr 210 ------- 1 1.0 5.0 38 39 - 0.2425 1 2 cbr 210 ------- 1 1.0 5.0 38 39 r 0.24336 1 2 cbr 210 ------- 1 1.0 5.0 24 25 + 0.24336 2 3 cbr 210 ------- 1 1.0 5.0 24 25 r 0.24405 2 3 cbr 210 ------- 1 1.0 5.0 6 7 + 0.24405 3 5 cbr 210 ------- 1 1.0 5.0 6 7 - 0.24405 3 5 cbr 210 ------- 1 1.0 5.0 6 7 - 0.24445 2 3 cbr 210 ------- 1 1.0 5.0 22 23 + 0.24625 1 2 cbr 210 ------- 1 1.0 5.0 39 40 - 0.24625 1 2 cbr 210 ------- 1 1.0 5.0 39 40 r 0.24711 1 2 cbr 210 ------- 1 1.0 5.0 25 26 + 0.24711 2 3 cbr 210 ------- 1 1.0 5.0 25 26 r 0.24741 2 3 cbr 210 ------- 1 1.0 5.0 7 8 + 0.24741 3 5 cbr 210 ------- 1 1.0 5.0 7 8 - 0.24741 3 5 cbr 210 ------- 1 1.0 5.0 7 8 - 0.24781 2 3 cbr 210 ------- 1 1.0 5.0 23 24 + 0.25 1 2 cbr 210 ------- 1 1.0 5.0 40 41 - 0.25 1 2 cbr 210 ------- 1 1.0 5.0 40 41 r 0.25077 2 3 cbr 210 ------- 1 1.0 5.0 8 9 + 0.25077 3 5 cbr 210 ------- 1 1.0 5.0 8 9 - 0.25077 3 5 cbr 210 ------- 1 1.0 5.0 8 9 r 0.25086 1 2 cbr 210 ------- 1 1.0 5.0 26 27 + 0.25086 2 3 cbr 210 ------- 1 1.0 5.0 26 27 - 0.25117 2 3 cbr 210 ------- 1 1.0 5.0 24 25 + 0.25375 1 2 cbr 210 ------- 1 1.0 5.0 41 42 - 0.25375 1 2 cbr 210 ------- 1 1.0 5.0 41 42 r 0.25413 2 3 cbr 210 ------- 1 1.0 5.0 9 10 + 0.25413 3 5 cbr 210 ------- 1 1.0 5.0 9 10 - 0.25413 3 5 cbr 210 ------- 1 1.0 5.0 9 10 - 0.25453 2 3 cbr 210 ------- 1 1.0 5.0 25 26 r 0.25461 1 2 cbr 210 ------- 1 1.0 5.0 27 28 + 0.25461 2 3 cbr 210 ------- 1 1.0 5.0 27 28 r 0.25749 2 3 cbr 210 ------- 1 1.0 5.0 10 11 + 0.25749 3 5 cbr 210 ------- 1 1.0 5.0 10 11 - 0.25749 3 5 cbr 210 ------- 1 1.0 5.0 10 11 + 0.2575 1 2 cbr 210 ------- 1 1.0 5.0 42 43 - 0.2575 1 2 cbr 210 ------- 1 1.0 5.0 42 43 - 0.25789 2 3 cbr 210 ------- 1 1.0 5.0 26 27 r 0.25836 1 2 cbr 210 ------- 1 1.0 5.0 28 29 + 0.25836 2 3 cbr 210 ------- 1 1.0 5.0 28 29 r 0.26008 3 5 cbr 210 ------- 1 1.0 5.0 0 1 r 0.26085 2 3 cbr 210 ------- 1 1.0 5.0 11 12 + 0.26085 3 5 cbr 210 ------- 1 1.0 5.0 11 12 - 0.26085 3 5 cbr 210 ------- 1 1.0 5.0 11 12 - 0.26125 2 3 cbr 210 ------- 1 1.0 5.0 27 28 + 0.26125 1 2 cbr 210 ------- 1 1.0 5.0 43 44 - 0.26125 1 2 cbr 210 ------- 1 1.0 5.0 43 44 r 0.26211 1 2 cbr 210 ------- 1 1.0 5.0 29 30 + 0.26211 2 3 cbr 210 ------- 1 1.0 5.0 29 30 r 0.26383 3 5 cbr 210 ------- 1 1.0 5.0 1 2 r 0.26421 2 3 cbr 210 ------- 1 1.0 5.0 12 13 + 0.26421 3 5 cbr 210 ------- 1 1.0 5.0 12 13 - 0.26421 3 5 cbr 210 ------- 1 1.0 5.0 12 13 - 0.26461 2 3 cbr 210 ------- 1 1.0 5.0 28 29 + 0.265 1 2 cbr 210 ------- 1 1.0 5.0 44 45 - 0.265 1 2 cbr 210 ------- 1 1.0 5.0 44 45 r 0.26586 1 2 cbr 210 ------- 1 1.0 5.0 30 31 + 0.26586 2 3 cbr 210 ------- 1 1.0 5.0 30 31 r 0.26757 2 3 cbr 210 ------- 1 1.0 5.0 13 14 + 0.26757 3 5 cbr 210 ------- 1 1.0 5.0 13 14 - 0.26757 3 5 cbr 210 ------- 1 1.0 5.0 13 14 r 0.26758 3 5 cbr 210 ------- 1 1.0 5.0 2 3 - 0.26797 2 3 cbr 210 ------- 1 1.0 5.0 29 30 + 0.26875 1 2 cbr 210 ------- 1 1.0 5.0 45 46 - 0.26875 1 2 cbr 210 ------- 1 1.0 5.0 45 46 r 0.26961 1 2 cbr 210 ------- 1 1.0 5.0 31 32 + 0.26961 2 3 cbr 210 ------- 1 1.0 5.0 31 32 v 0.27000000000000002 eval {set sim_annotation {Send Packet_1,2 : Increase window size to 2}} r 0.27093 2 3 cbr 210 ------- 1 1.0 5.0 14 15 + 0.27093 3 5 cbr 210 ------- 1 1.0 5.0 14 15 - 0.27093 3 5 cbr 210 ------- 1 1.0 5.0 14 15 - 0.27133 2 3 cbr 210 ------- 1 1.0 5.0 30 31 r 0.27133 3 5 cbr 210 ------- 1 1.0 5.0 3 4 + 0.2725 1 2 cbr 210 ------- 1 1.0 5.0 46 47 - 0.2725 1 2 cbr 210 ------- 1 1.0 5.0 46 47 r 0.27336 1 2 cbr 210 ------- 1 1.0 5.0 32 33 + 0.27336 2 3 cbr 210 ------- 1 1.0 5.0 32 33 r 0.27429 2 3 cbr 210 ------- 1 1.0 5.0 15 16 + 0.27429 3 5 cbr 210 ------- 1 1.0 5.0 15 16 - 0.27429 3 5 cbr 210 ------- 1 1.0 5.0 15 16 - 0.27469 2 3 cbr 210 ------- 1 1.0 5.0 31 32 + 0.27625 1 2 cbr 210 ------- 1 1.0 5.0 47 48 - 0.27625 1 2 cbr 210 ------- 1 1.0 5.0 47 48 r 0.27711 1 2 cbr 210 ------- 1 1.0 5.0 33 34 + 0.27711 2 3 cbr 210 ------- 1 1.0 5.0 33 34 r 0.27765 2 3 cbr 210 ------- 1 1.0 5.0 16 17 + 0.27765 3 5 cbr 210 ------- 1 1.0 5.0 16 17 - 0.27765 3 5 cbr 210 ------- 1 1.0 5.0 16 17 - 0.27805 2 3 cbr 210 ------- 1 1.0 5.0 32 33 + 0.28 1 2 cbr 210 ------- 1 1.0 5.0 48 49 - 0.28 1 2 cbr 210 ------- 1 1.0 5.0 48 49 r 0.28086 1 2 cbr 210 ------- 1 1.0 5.0 34 35 + 0.28086 2 3 cbr 210 ------- 1 1.0 5.0 34 35 r 0.28101 2 3 cbr 210 ------- 1 1.0 5.0 17 18 + 0.28101 3 5 cbr 210 ------- 1 1.0 5.0 17 18 - 0.28101 3 5 cbr 210 ------- 1 1.0 5.0 17 18 - 0.28141 2 3 cbr 210 ------- 1 1.0 5.0 33 34 + 0.28375 1 2 cbr 210 ------- 1 1.0 5.0 49 50 - 0.28375 1 2 cbr 210 ------- 1 1.0 5.0 49 50 r 0.28437 2 3 cbr 210 ------- 1 1.0 5.0 18 19 + 0.28437 3 5 cbr 210 ------- 1 1.0 5.0 18 19 - 0.28437 3 5 cbr 210 ------- 1 1.0 5.0 18 19 r 0.28461 1 2 cbr 210 ------- 1 1.0 5.0 35 36 + 0.28461 2 3 cbr 210 ------- 1 1.0 5.0 35 36 - 0.28477 2 3 cbr 210 ------- 1 1.0 5.0 34 35 + 0.2875 1 2 cbr 210 ------- 1 1.0 5.0 50 51 - 0.2875 1 2 cbr 210 ------- 1 1.0 5.0 50 51 r 0.28773 2 3 cbr 210 ------- 1 1.0 5.0 19 20 + 0.28773 3 5 cbr 210 ------- 1 1.0 5.0 19 20 - 0.28773 3 5 cbr 210 ------- 1 1.0 5.0 19 20 - 0.28813 2 3 cbr 210 ------- 1 1.0 5.0 35 36 r 0.28836 1 2 cbr 210 ------- 1 1.0 5.0 36 37 + 0.28836 2 3 cbr 210 ------- 1 1.0 5.0 36 37 r 0.29069 3 5 cbr 210 ------- 1 1.0 5.0 4 5 r 0.29109 2 3 cbr 210 ------- 1 1.0 5.0 20 21 + 0.29109 3 5 cbr 210 ------- 1 1.0 5.0 20 21 - 0.29109 3 5 cbr 210 ------- 1 1.0 5.0 20 21 + 0.29125 1 2 cbr 210 ------- 1 1.0 5.0 51 52 - 0.29125 1 2 cbr 210 ------- 1 1.0 5.0 51 52 - 0.29149 2 3 cbr 210 ------- 1 1.0 5.0 36 37 r 0.29211 1 2 cbr 210 ------- 1 1.0 5.0 37 38 + 0.29211 2 3 cbr 210 ------- 1 1.0 5.0 37 38 r 0.29405 3 5 cbr 210 ------- 1 1.0 5.0 5 6 r 0.29445 2 3 cbr 210 ------- 1 1.0 5.0 21 22 + 0.29445 3 5 cbr 210 ------- 1 1.0 5.0 21 22 - 0.29445 3 5 cbr 210 ------- 1 1.0 5.0 21 22 - 0.29485 2 3 cbr 210 ------- 1 1.0 5.0 37 38 + 0.295 1 2 cbr 210 ------- 1 1.0 5.0 52 53 - 0.295 1 2 cbr 210 ------- 1 1.0 5.0 52 53 r 0.29586 1 2 cbr 210 ------- 1 1.0 5.0 38 39 + 0.29586 2 3 cbr 210 ------- 1 1.0 5.0 38 39 r 0.29741 3 5 cbr 210 ------- 1 1.0 5.0 6 7 r 0.29781 2 3 cbr 210 ------- 1 1.0 5.0 22 23 + 0.29781 3 5 cbr 210 ------- 1 1.0 5.0 22 23 - 0.29781 3 5 cbr 210 ------- 1 1.0 5.0 22 23 - 0.29821 2 3 cbr 210 ------- 1 1.0 5.0 38 39 + 0.29875 1 2 cbr 210 ------- 1 1.0 5.0 53 54 - 0.29875 1 2 cbr 210 ------- 1 1.0 5.0 53 54 r 0.29961 1 2 cbr 210 ------- 1 1.0 5.0 39 40 + 0.29961 2 3 cbr 210 ------- 1 1.0 5.0 39 40 r 0.29997 3 4 tcp 1000 ------- 0 0.0 4.0 0 0 + 0.29997 4 3 ack 40 ------- 0 4.0 0.0 0 55 - 0.29997 4 3 ack 40 ------- 0 4.0 0.0 0 55 r 0.30077 3 5 cbr 210 ------- 1 1.0 5.0 7 8 r 0.30117 2 3 cbr 210 ------- 1 1.0 5.0 23 24 + 0.30117 3 5 cbr 210 ------- 1 1.0 5.0 23 24 - 0.30117 3 5 cbr 210 ------- 1 1.0 5.0 23 24 - 0.30157 2 3 cbr 210 ------- 1 1.0 5.0 39 40 + 0.3025 1 2 cbr 210 ------- 1 1.0 5.0 54 56 - 0.3025 1 2 cbr 210 ------- 1 1.0 5.0 54 56 r 0.30336 1 2 cbr 210 ------- 1 1.0 5.0 40 41 + 0.30336 2 3 cbr 210 ------- 1 1.0 5.0 40 41 r 0.30413 3 5 cbr 210 ------- 1 1.0 5.0 8 9 r 0.30453 2 3 cbr 210 ------- 1 1.0 5.0 24 25 + 0.30453 3 5 cbr 210 ------- 1 1.0 5.0 24 25 - 0.30453 3 5 cbr 210 ------- 1 1.0 5.0 24 25 - 0.30493 2 3 cbr 210 ------- 1 1.0 5.0 40 41 + 0.30625 1 2 cbr 210 ------- 1 1.0 5.0 55 57 - 0.30625 1 2 cbr 210 ------- 1 1.0 5.0 55 57 r 0.30711 1 2 cbr 210 ------- 1 1.0 5.0 41 42 + 0.30711 2 3 cbr 210 ------- 1 1.0 5.0 41 42 r 0.30749 3 5 cbr 210 ------- 1 1.0 5.0 9 10 r 0.30789 2 3 cbr 210 ------- 1 1.0 5.0 25 26 + 0.30789 3 5 cbr 210 ------- 1 1.0 5.0 25 26 - 0.30789 3 5 cbr 210 ------- 1 1.0 5.0 25 26 - 0.30829 2 3 cbr 210 ------- 1 1.0 5.0 41 42 + 0.31 1 2 cbr 210 ------- 1 1.0 5.0 56 58 - 0.31 1 2 cbr 210 ------- 1 1.0 5.0 56 58 r 0.31085 3 5 cbr 210 ------- 1 1.0 5.0 10 11 r 0.31086 1 2 cbr 210 ------- 1 1.0 5.0 42 43 + 0.31086 2 3 cbr 210 ------- 1 1.0 5.0 42 43 r 0.31125 2 3 cbr 210 ------- 1 1.0 5.0 26 27 + 0.31125 3 5 cbr 210 ------- 1 1.0 5.0 26 27 - 0.31125 3 5 cbr 210 ------- 1 1.0 5.0 26 27 - 0.31165 2 3 cbr 210 ------- 1 1.0 5.0 42 43 + 0.31375 1 2 cbr 210 ------- 1 1.0 5.0 57 59 - 0.31375 1 2 cbr 210 ------- 1 1.0 5.0 57 59 r 0.31421 3 5 cbr 210 ------- 1 1.0 5.0 11 12 r 0.31461 2 3 cbr 210 ------- 1 1.0 5.0 27 28 + 0.31461 3 5 cbr 210 ------- 1 1.0 5.0 27 28 - 0.31461 3 5 cbr 210 ------- 1 1.0 5.0 27 28 r 0.31461 1 2 cbr 210 ------- 1 1.0 5.0 43 44 + 0.31461 2 3 cbr 210 ------- 1 1.0 5.0 43 44 - 0.31501 2 3 cbr 210 ------- 1 1.0 5.0 43 44 + 0.3175 1 2 cbr 210 ------- 1 1.0 5.0 58 60 - 0.3175 1 2 cbr 210 ------- 1 1.0 5.0 58 60 r 0.31757 3 5 cbr 210 ------- 1 1.0 5.0 12 13 r 0.31797 2 3 cbr 210 ------- 1 1.0 5.0 28 29 + 0.31797 3 5 cbr 210 ------- 1 1.0 5.0 28 29 - 0.31797 3 5 cbr 210 ------- 1 1.0 5.0 28 29 r 0.31836 1 2 cbr 210 ------- 1 1.0 5.0 44 45 + 0.31836 2 3 cbr 210 ------- 1 1.0 5.0 44 45 - 0.31837 2 3 cbr 210 ------- 1 1.0 5.0 44 45 r 0.32093 3 5 cbr 210 ------- 1 1.0 5.0 13 14 + 0.32125 1 2 cbr 210 ------- 1 1.0 5.0 59 61 - 0.32125 1 2 cbr 210 ------- 1 1.0 5.0 59 61 r 0.32133 2 3 cbr 210 ------- 1 1.0 5.0 29 30 + 0.32133 3 5 cbr 210 ------- 1 1.0 5.0 29 30 - 0.32133 3 5 cbr 210 ------- 1 1.0 5.0 29 30 r 0.32211 1 2 cbr 210 ------- 1 1.0 5.0 45 46 + 0.32211 2 3 cbr 210 ------- 1 1.0 5.0 45 46 - 0.32211 2 3 cbr 210 ------- 1 1.0 5.0 45 46 r 0.32429 3 5 cbr 210 ------- 1 1.0 5.0 14 15 r 0.32469 2 3 cbr 210 ------- 1 1.0 5.0 30 31 + 0.32469 3 5 cbr 210 ------- 1 1.0 5.0 30 31 - 0.32469 3 5 cbr 210 ------- 1 1.0 5.0 30 31 + 0.325 1 2 cbr 210 ------- 1 1.0 5.0 60 62 - 0.325 1 2 cbr 210 ------- 1 1.0 5.0 60 62 r 0.32586 1 2 cbr 210 ------- 1 1.0 5.0 46 47 + 0.32586 2 3 cbr 210 ------- 1 1.0 5.0 46 47 - 0.32586 2 3 cbr 210 ------- 1 1.0 5.0 46 47 r 0.32765 3 5 cbr 210 ------- 1 1.0 5.0 15 16 r 0.32805 2 3 cbr 210 ------- 1 1.0 5.0 31 32 + 0.32805 3 5 cbr 210 ------- 1 1.0 5.0 31 32 - 0.32805 3 5 cbr 210 ------- 1 1.0 5.0 31 32 + 0.32875 1 2 cbr 210 ------- 1 1.0 5.0 61 63 - 0.32875 1 2 cbr 210 ------- 1 1.0 5.0 61 63 r 0.32961 1 2 cbr 210 ------- 1 1.0 5.0 47 48 + 0.32961 2 3 cbr 210 ------- 1 1.0 5.0 47 48 - 0.32961 2 3 cbr 210 ------- 1 1.0 5.0 47 48 r 0.33101 3 5 cbr 210 ------- 1 1.0 5.0 16 17 r 0.33141 2 3 cbr 210 ------- 1 1.0 5.0 32 33 + 0.33141 3 5 cbr 210 ------- 1 1.0 5.0 32 33 - 0.33141 3 5 cbr 210 ------- 1 1.0 5.0 32 33 + 0.3325 1 2 cbr 210 ------- 1 1.0 5.0 62 64 - 0.3325 1 2 cbr 210 ------- 1 1.0 5.0 62 64 r 0.33336 1 2 cbr 210 ------- 1 1.0 5.0 48 49 + 0.33336 2 3 cbr 210 ------- 1 1.0 5.0 48 49 - 0.33336 2 3 cbr 210 ------- 1 1.0 5.0 48 49 r 0.33437 3 5 cbr 210 ------- 1 1.0 5.0 17 18 r 0.33477 2 3 cbr 210 ------- 1 1.0 5.0 33 34 + 0.33477 3 5 cbr 210 ------- 1 1.0 5.0 33 34 - 0.33477 3 5 cbr 210 ------- 1 1.0 5.0 33 34 + 0.33625 1 2 cbr 210 ------- 1 1.0 5.0 63 65 - 0.33625 1 2 cbr 210 ------- 1 1.0 5.0 63 65 r 0.33711 1 2 cbr 210 ------- 1 1.0 5.0 49 50 + 0.33711 2 3 cbr 210 ------- 1 1.0 5.0 49 50 - 0.33711 2 3 cbr 210 ------- 1 1.0 5.0 49 50 r 0.33773 3 5 cbr 210 ------- 1 1.0 5.0 18 19 r 0.33813 2 3 cbr 210 ------- 1 1.0 5.0 34 35 + 0.33813 3 5 cbr 210 ------- 1 1.0 5.0 34 35 - 0.33813 3 5 cbr 210 ------- 1 1.0 5.0 34 35 + 0.34 1 2 cbr 210 ------- 1 1.0 5.0 64 66 - 0.34 1 2 cbr 210 ------- 1 1.0 5.0 64 66 r 0.34086 1 2 cbr 210 ------- 1 1.0 5.0 50 51 + 0.34086 2 3 cbr 210 ------- 1 1.0 5.0 50 51 - 0.34086 2 3 cbr 210 ------- 1 1.0 5.0 50 51 r 0.34109 3 5 cbr 210 ------- 1 1.0 5.0 19 20 r 0.34149 2 3 cbr 210 ------- 1 1.0 5.0 35 36 + 0.34149 3 5 cbr 210 ------- 1 1.0 5.0 35 36 - 0.34149 3 5 cbr 210 ------- 1 1.0 5.0 35 36 + 0.34375 1 2 cbr 210 ------- 1 1.0 5.0 65 67 - 0.34375 1 2 cbr 210 ------- 1 1.0 5.0 65 67 r 0.34445 3 5 cbr 210 ------- 1 1.0 5.0 20 21 r 0.34461 1 2 cbr 210 ------- 1 1.0 5.0 51 52 + 0.34461 2 3 cbr 210 ------- 1 1.0 5.0 51 52 - 0.34461 2 3 cbr 210 ------- 1 1.0 5.0 51 52 r 0.34485 2 3 cbr 210 ------- 1 1.0 5.0 36 37 + 0.34485 3 5 cbr 210 ------- 1 1.0 5.0 36 37 - 0.34485 3 5 cbr 210 ------- 1 1.0 5.0 36 37 + 0.3475 1 2 cbr 210 ------- 1 1.0 5.0 66 68 - 0.3475 1 2 cbr 210 ------- 1 1.0 5.0 66 68 r 0.34781 3 5 cbr 210 ------- 1 1.0 5.0 21 22 r 0.34821 2 3 cbr 210 ------- 1 1.0 5.0 37 38 + 0.34821 3 5 cbr 210 ------- 1 1.0 5.0 37 38 - 0.34821 3 5 cbr 210 ------- 1 1.0 5.0 37 38 r 0.34836 1 2 cbr 210 ------- 1 1.0 5.0 52 53 + 0.34836 2 3 cbr 210 ------- 1 1.0 5.0 52 53 - 0.34836 2 3 cbr 210 ------- 1 1.0 5.0 52 53 r 0.35061 4 3 ack 40 ------- 0 4.0 0.0 0 55 + 0.35061 3 2 ack 40 ------- 0 4.0 0.0 0 55 - 0.35061 3 2 ack 40 ------- 0 4.0 0.0 0 55 r 0.35117 3 5 cbr 210 ------- 1 1.0 5.0 22 23 + 0.35125 1 2 cbr 210 ------- 1 1.0 5.0 67 69 - 0.35125 1 2 cbr 210 ------- 1 1.0 5.0 67 69 r 0.35157 2 3 cbr 210 ------- 1 1.0 5.0 38 39 + 0.35157 3 5 cbr 210 ------- 1 1.0 5.0 38 39 - 0.35157 3 5 cbr 210 ------- 1 1.0 5.0 38 39 r 0.35211 1 2 cbr 210 ------- 1 1.0 5.0 53 54 + 0.35211 2 3 cbr 210 ------- 1 1.0 5.0 53 54 - 0.35211 2 3 cbr 210 ------- 1 1.0 5.0 53 54 r 0.35453 3 5 cbr 210 ------- 1 1.0 5.0 23 24 r 0.35493 2 3 cbr 210 ------- 1 1.0 5.0 39 40 + 0.35493 3 5 cbr 210 ------- 1 1.0 5.0 39 40 - 0.35493 3 5 cbr 210 ------- 1 1.0 5.0 39 40 + 0.355 1 2 cbr 210 ------- 1 1.0 5.0 68 70 - 0.355 1 2 cbr 210 ------- 1 1.0 5.0 68 70 r 0.35586 1 2 cbr 210 ------- 1 1.0 5.0 54 56 + 0.35586 2 3 cbr 210 ------- 1 1.0 5.0 54 56 - 0.35586 2 3 cbr 210 ------- 1 1.0 5.0 54 56 r 0.35789 3 5 cbr 210 ------- 1 1.0 5.0 24 25 r 0.35829 2 3 cbr 210 ------- 1 1.0 5.0 40 41 + 0.35829 3 5 cbr 210 ------- 1 1.0 5.0 40 41 - 0.35829 3 5 cbr 210 ------- 1 1.0 5.0 40 41 + 0.35875 1 2 cbr 210 ------- 1 1.0 5.0 69 71 - 0.35875 1 2 cbr 210 ------- 1 1.0 5.0 69 71 r 0.35961 1 2 cbr 210 ------- 1 1.0 5.0 55 57 + 0.35961 2 3 cbr 210 ------- 1 1.0 5.0 55 57 - 0.35961 2 3 cbr 210 ------- 1 1.0 5.0 55 57 r 0.36125 3 5 cbr 210 ------- 1 1.0 5.0 25 26 r 0.36165 2 3 cbr 210 ------- 1 1.0 5.0 41 42 + 0.36165 3 5 cbr 210 ------- 1 1.0 5.0 41 42 - 0.36165 3 5 cbr 210 ------- 1 1.0 5.0 41 42 + 0.3625 1 2 cbr 210 ------- 1 1.0 5.0 70 72 - 0.3625 1 2 cbr 210 ------- 1 1.0 5.0 70 72 r 0.36336 1 2 cbr 210 ------- 1 1.0 5.0 56 58 + 0.36336 2 3 cbr 210 ------- 1 1.0 5.0 56 58 - 0.36336 2 3 cbr 210 ------- 1 1.0 5.0 56 58 r 0.36461 3 5 cbr 210 ------- 1 1.0 5.0 26 27 r 0.36501 2 3 cbr 210 ------- 1 1.0 5.0 42 43 + 0.36501 3 5 cbr 210 ------- 1 1.0 5.0 42 43 - 0.36501 3 5 cbr 210 ------- 1 1.0 5.0 42 43 + 0.36625 1 2 cbr 210 ------- 1 1.0 5.0 71 73 - 0.36625 1 2 cbr 210 ------- 1 1.0 5.0 71 73 r 0.36711 1 2 cbr 210 ------- 1 1.0 5.0 57 59 + 0.36711 2 3 cbr 210 ------- 1 1.0 5.0 57 59 - 0.36711 2 3 cbr 210 ------- 1 1.0 5.0 57 59 r 0.36797 3 5 cbr 210 ------- 1 1.0 5.0 27 28 r 0.36837 2 3 cbr 210 ------- 1 1.0 5.0 43 44 + 0.36837 3 5 cbr 210 ------- 1 1.0 5.0 43 44 - 0.36837 3 5 cbr 210 ------- 1 1.0 5.0 43 44 + 0.37 1 2 cbr 210 ------- 1 1.0 5.0 72 74 - 0.37 1 2 cbr 210 ------- 1 1.0 5.0 72 74 r 0.37086 1 2 cbr 210 ------- 1 1.0 5.0 58 60 + 0.37086 2 3 cbr 210 ------- 1 1.0 5.0 58 60 - 0.37086 2 3 cbr 210 ------- 1 1.0 5.0 58 60 r 0.37133 3 5 cbr 210 ------- 1 1.0 5.0 28 29 r 0.37173 2 3 cbr 210 ------- 1 1.0 5.0 44 45 + 0.37173 3 5 cbr 210 ------- 1 1.0 5.0 44 45 - 0.37173 3 5 cbr 210 ------- 1 1.0 5.0 44 45 + 0.37375 1 2 cbr 210 ------- 1 1.0 5.0 73 75 - 0.37375 1 2 cbr 210 ------- 1 1.0 5.0 73 75 r 0.37461 1 2 cbr 210 ------- 1 1.0 5.0 59 61 + 0.37461 2 3 cbr 210 ------- 1 1.0 5.0 59 61 - 0.37461 2 3 cbr 210 ------- 1 1.0 5.0 59 61 r 0.37469 3 5 cbr 210 ------- 1 1.0 5.0 29 30 r 0.37547 2 3 cbr 210 ------- 1 1.0 5.0 45 46 + 0.37547 3 5 cbr 210 ------- 1 1.0 5.0 45 46 - 0.37547 3 5 cbr 210 ------- 1 1.0 5.0 45 46 + 0.3775 1 2 cbr 210 ------- 1 1.0 5.0 74 76 - 0.3775 1 2 cbr 210 ------- 1 1.0 5.0 74 76 r 0.37805 3 5 cbr 210 ------- 1 1.0 5.0 30 31 r 0.37836 1 2 cbr 210 ------- 1 1.0 5.0 60 62 + 0.37836 2 3 cbr 210 ------- 1 1.0 5.0 60 62 - 0.37836 2 3 cbr 210 ------- 1 1.0 5.0 60 62 r 0.37922 2 3 cbr 210 ------- 1 1.0 5.0 46 47 + 0.37922 3 5 cbr 210 ------- 1 1.0 5.0 46 47 - 0.37922 3 5 cbr 210 ------- 1 1.0 5.0 46 47 v 0.38 eval {set sim_annotation {Ack_1,2 : 2 acks are coming}} + 0.38125 1 2 cbr 210 ------- 1 1.0 5.0 75 77 - 0.38125 1 2 cbr 210 ------- 1 1.0 5.0 75 77 r 0.38141 3 5 cbr 210 ------- 1 1.0 5.0 31 32 r 0.38211 1 2 cbr 210 ------- 1 1.0 5.0 61 63 + 0.38211 2 3 cbr 210 ------- 1 1.0 5.0 61 63 - 0.38211 2 3 cbr 210 ------- 1 1.0 5.0 61 63 r 0.38297 2 3 cbr 210 ------- 1 1.0 5.0 47 48 + 0.38297 3 5 cbr 210 ------- 1 1.0 5.0 47 48 - 0.38297 3 5 cbr 210 ------- 1 1.0 5.0 47 48 r 0.38477 3 5 cbr 210 ------- 1 1.0 5.0 32 33 + 0.385 1 2 cbr 210 ------- 1 1.0 5.0 76 78 - 0.385 1 2 cbr 210 ------- 1 1.0 5.0 76 78 r 0.38586 1 2 cbr 210 ------- 1 1.0 5.0 62 64 + 0.38586 2 3 cbr 210 ------- 1 1.0 5.0 62 64 - 0.38586 2 3 cbr 210 ------- 1 1.0 5.0 62 64 r 0.38672 2 3 cbr 210 ------- 1 1.0 5.0 48 49 + 0.38672 3 5 cbr 210 ------- 1 1.0 5.0 48 49 - 0.38672 3 5 cbr 210 ------- 1 1.0 5.0 48 49 r 0.38813 3 5 cbr 210 ------- 1 1.0 5.0 33 34 + 0.38875 1 2 cbr 210 ------- 1 1.0 5.0 77 79 - 0.38875 1 2 cbr 210 ------- 1 1.0 5.0 77 79 r 0.38961 1 2 cbr 210 ------- 1 1.0 5.0 63 65 + 0.38961 2 3 cbr 210 ------- 1 1.0 5.0 63 65 - 0.38961 2 3 cbr 210 ------- 1 1.0 5.0 63 65 r 0.39047 2 3 cbr 210 ------- 1 1.0 5.0 49 50 + 0.39047 3 5 cbr 210 ------- 1 1.0 5.0 49 50 - 0.39047 3 5 cbr 210 ------- 1 1.0 5.0 49 50 r 0.39149 3 5 cbr 210 ------- 1 1.0 5.0 34 35 + 0.3925 1 2 cbr 210 ------- 1 1.0 5.0 78 80 - 0.3925 1 2 cbr 210 ------- 1 1.0 5.0 78 80 r 0.39336 1 2 cbr 210 ------- 1 1.0 5.0 64 66 + 0.39336 2 3 cbr 210 ------- 1 1.0 5.0 64 66 - 0.39336 2 3 cbr 210 ------- 1 1.0 5.0 64 66 r 0.39422 2 3 cbr 210 ------- 1 1.0 5.0 50 51 + 0.39422 3 5 cbr 210 ------- 1 1.0 5.0 50 51 - 0.39422 3 5 cbr 210 ------- 1 1.0 5.0 50 51 r 0.39485 3 5 cbr 210 ------- 1 1.0 5.0 35 36 + 0.39625 1 2 cbr 210 ------- 1 1.0 5.0 79 81 - 0.39625 1 2 cbr 210 ------- 1 1.0 5.0 79 81 r 0.39711 1 2 cbr 210 ------- 1 1.0 5.0 65 67 + 0.39711 2 3 cbr 210 ------- 1 1.0 5.0 65 67 - 0.39711 2 3 cbr 210 ------- 1 1.0 5.0 65 67 r 0.39797 2 3 cbr 210 ------- 1 1.0 5.0 51 52 + 0.39797 3 5 cbr 210 ------- 1 1.0 5.0 51 52 - 0.39797 3 5 cbr 210 ------- 1 1.0 5.0 51 52 r 0.39821 3 5 cbr 210 ------- 1 1.0 5.0 36 37 + 0.4 1 2 cbr 210 ------- 1 1.0 5.0 80 82 - 0.4 1 2 cbr 210 ------- 1 1.0 5.0 80 82 r 0.40086 1 2 cbr 210 ------- 1 1.0 5.0 66 68 + 0.40086 2 3 cbr 210 ------- 1 1.0 5.0 66 68 - 0.40086 2 3 cbr 210 ------- 1 1.0 5.0 66 68 r 0.40125 3 2 ack 40 ------- 0 4.0 0.0 0 55 + 0.40125 2 0 ack 40 ------- 0 4.0 0.0 0 55 - 0.40125 2 0 ack 40 ------- 0 4.0 0.0 0 55 r 0.40157 3 5 cbr 210 ------- 1 1.0 5.0 37 38 r 0.40172 2 3 cbr 210 ------- 1 1.0 5.0 52 53 + 0.40172 3 5 cbr 210 ------- 1 1.0 5.0 52 53 - 0.40172 3 5 cbr 210 ------- 1 1.0 5.0 52 53 + 0.40375 1 2 cbr 210 ------- 1 1.0 5.0 81 83 - 0.40375 1 2 cbr 210 ------- 1 1.0 5.0 81 83 r 0.40461 1 2 cbr 210 ------- 1 1.0 5.0 67 69 + 0.40461 2 3 cbr 210 ------- 1 1.0 5.0 67 69 - 0.40461 2 3 cbr 210 ------- 1 1.0 5.0 67 69 r 0.40493 3 5 cbr 210 ------- 1 1.0 5.0 38 39 r 0.40547 2 3 cbr 210 ------- 1 1.0 5.0 53 54 + 0.40547 3 5 cbr 210 ------- 1 1.0 5.0 53 54 - 0.40547 3 5 cbr 210 ------- 1 1.0 5.0 53 54 + 0.4075 1 2 cbr 210 ------- 1 1.0 5.0 82 84 - 0.4075 1 2 cbr 210 ------- 1 1.0 5.0 82 84 r 0.40829 3 5 cbr 210 ------- 1 1.0 5.0 39 40 r 0.40836 1 2 cbr 210 ------- 1 1.0 5.0 68 70 + 0.40836 2 3 cbr 210 ------- 1 1.0 5.0 68 70 - 0.40836 2 3 cbr 210 ------- 1 1.0 5.0 68 70 r 0.40922 2 3 cbr 210 ------- 1 1.0 5.0 54 56 + 0.40922 3 5 cbr 210 ------- 1 1.0 5.0 54 56 - 0.40922 3 5 cbr 210 ------- 1 1.0 5.0 54 56 + 0.41125 1 2 cbr 210 ------- 1 1.0 5.0 83 85 - 0.41125 1 2 cbr 210 ------- 1 1.0 5.0 83 85 r 0.41165 3 5 cbr 210 ------- 1 1.0 5.0 40 41 r 0.41211 1 2 cbr 210 ------- 1 1.0 5.0 69 71 + 0.41211 2 3 cbr 210 ------- 1 1.0 5.0 69 71 - 0.41211 2 3 cbr 210 ------- 1 1.0 5.0 69 71 r 0.41297 2 3 cbr 210 ------- 1 1.0 5.0 55 57 + 0.41297 3 5 cbr 210 ------- 1 1.0 5.0 55 57 - 0.41297 3 5 cbr 210 ------- 1 1.0 5.0 55 57 + 0.415 1 2 cbr 210 ------- 1 1.0 5.0 84 86 - 0.415 1 2 cbr 210 ------- 1 1.0 5.0 84 86 r 0.41501 3 5 cbr 210 ------- 1 1.0 5.0 41 42 r 0.41586 1 2 cbr 210 ------- 1 1.0 5.0 70 72 + 0.41586 2 3 cbr 210 ------- 1 1.0 5.0 70 72 - 0.41586 2 3 cbr 210 ------- 1 1.0 5.0 70 72 r 0.41672 2 3 cbr 210 ------- 1 1.0 5.0 56 58 + 0.41672 3 5 cbr 210 ------- 1 1.0 5.0 56 58 - 0.41672 3 5 cbr 210 ------- 1 1.0 5.0 56 58 r 0.41837 3 5 cbr 210 ------- 1 1.0 5.0 42 43 + 0.41875 1 2 cbr 210 ------- 1 1.0 5.0 85 87 - 0.41875 1 2 cbr 210 ------- 1 1.0 5.0 85 87 r 0.41961 1 2 cbr 210 ------- 1 1.0 5.0 71 73 + 0.41961 2 3 cbr 210 ------- 1 1.0 5.0 71 73 - 0.41961 2 3 cbr 210 ------- 1 1.0 5.0 71 73 r 0.42047 2 3 cbr 210 ------- 1 1.0 5.0 57 59 + 0.42047 3 5 cbr 210 ------- 1 1.0 5.0 57 59 - 0.42047 3 5 cbr 210 ------- 1 1.0 5.0 57 59 r 0.42173 3 5 cbr 210 ------- 1 1.0 5.0 43 44 + 0.4225 1 2 cbr 210 ------- 1 1.0 5.0 86 88 - 0.4225 1 2 cbr 210 ------- 1 1.0 5.0 86 88 r 0.42336 1 2 cbr 210 ------- 1 1.0 5.0 72 74 + 0.42336 2 3 cbr 210 ------- 1 1.0 5.0 72 74 - 0.42336 2 3 cbr 210 ------- 1 1.0 5.0 72 74 r 0.42422 2 3 cbr 210 ------- 1 1.0 5.0 58 60 + 0.42422 3 5 cbr 210 ------- 1 1.0 5.0 58 60 - 0.42422 3 5 cbr 210 ------- 1 1.0 5.0 58 60 r 0.42509 3 5 cbr 210 ------- 1 1.0 5.0 44 45 + 0.42625 1 2 cbr 210 ------- 1 1.0 5.0 87 89 - 0.42625 1 2 cbr 210 ------- 1 1.0 5.0 87 89 r 0.42711 1 2 cbr 210 ------- 1 1.0 5.0 73 75 + 0.42711 2 3 cbr 210 ------- 1 1.0 5.0 73 75 - 0.42711 2 3 cbr 210 ------- 1 1.0 5.0 73 75 r 0.42797 2 3 cbr 210 ------- 1 1.0 5.0 59 61 + 0.42797 3 5 cbr 210 ------- 1 1.0 5.0 59 61 - 0.42797 3 5 cbr 210 ------- 1 1.0 5.0 59 61 r 0.42883 3 5 cbr 210 ------- 1 1.0 5.0 45 46 + 0.43 1 2 cbr 210 ------- 1 1.0 5.0 88 90 - 0.43 1 2 cbr 210 ------- 1 1.0 5.0 88 90 r 0.43086 1 2 cbr 210 ------- 1 1.0 5.0 74 76 + 0.43086 2 3 cbr 210 ------- 1 1.0 5.0 74 76 - 0.43086 2 3 cbr 210 ------- 1 1.0 5.0 74 76 r 0.43172 2 3 cbr 210 ------- 1 1.0 5.0 60 62 + 0.43172 3 5 cbr 210 ------- 1 1.0 5.0 60 62 - 0.43172 3 5 cbr 210 ------- 1 1.0 5.0 60 62 r 0.43258 3 5 cbr 210 ------- 1 1.0 5.0 46 47 + 0.43375 1 2 cbr 210 ------- 1 1.0 5.0 89 91 - 0.43375 1 2 cbr 210 ------- 1 1.0 5.0 89 91 r 0.43461 1 2 cbr 210 ------- 1 1.0 5.0 75 77 + 0.43461 2 3 cbr 210 ------- 1 1.0 5.0 75 77 - 0.43461 2 3 cbr 210 ------- 1 1.0 5.0 75 77 r 0.43547 2 3 cbr 210 ------- 1 1.0 5.0 61 63 + 0.43547 3 5 cbr 210 ------- 1 1.0 5.0 61 63 - 0.43547 3 5 cbr 210 ------- 1 1.0 5.0 61 63 r 0.43633 3 5 cbr 210 ------- 1 1.0 5.0 47 48 + 0.4375 1 2 cbr 210 ------- 1 1.0 5.0 90 92 - 0.4375 1 2 cbr 210 ------- 1 1.0 5.0 90 92 r 0.43836 1 2 cbr 210 ------- 1 1.0 5.0 76 78 + 0.43836 2 3 cbr 210 ------- 1 1.0 5.0 76 78 - 0.43836 2 3 cbr 210 ------- 1 1.0 5.0 76 78 r 0.43922 2 3 cbr 210 ------- 1 1.0 5.0 62 64 + 0.43922 3 5 cbr 210 ------- 1 1.0 5.0 62 64 - 0.43922 3 5 cbr 210 ------- 1 1.0 5.0 62 64 r 0.44008 3 5 cbr 210 ------- 1 1.0 5.0 48 49 + 0.44125 1 2 cbr 210 ------- 1 1.0 5.0 91 93 - 0.44125 1 2 cbr 210 ------- 1 1.0 5.0 91 93 r 0.44211 1 2 cbr 210 ------- 1 1.0 5.0 77 79 + 0.44211 2 3 cbr 210 ------- 1 1.0 5.0 77 79 - 0.44211 2 3 cbr 210 ------- 1 1.0 5.0 77 79 r 0.44297 2 3 cbr 210 ------- 1 1.0 5.0 63 65 + 0.44297 3 5 cbr 210 ------- 1 1.0 5.0 63 65 - 0.44297 3 5 cbr 210 ------- 1 1.0 5.0 63 65 r 0.44383 3 5 cbr 210 ------- 1 1.0 5.0 49 50 + 0.445 1 2 cbr 210 ------- 1 1.0 5.0 92 94 - 0.445 1 2 cbr 210 ------- 1 1.0 5.0 92 94 r 0.44586 1 2 cbr 210 ------- 1 1.0 5.0 78 80 + 0.44586 2 3 cbr 210 ------- 1 1.0 5.0 78 80 - 0.44586 2 3 cbr 210 ------- 1 1.0 5.0 78 80 r 0.44672 2 3 cbr 210 ------- 1 1.0 5.0 64 66 + 0.44672 3 5 cbr 210 ------- 1 1.0 5.0 64 66 - 0.44672 3 5 cbr 210 ------- 1 1.0 5.0 64 66 r 0.44758 3 5 cbr 210 ------- 1 1.0 5.0 50 51 + 0.44875 1 2 cbr 210 ------- 1 1.0 5.0 93 95 - 0.44875 1 2 cbr 210 ------- 1 1.0 5.0 93 95 r 0.44961 1 2 cbr 210 ------- 1 1.0 5.0 79 81 + 0.44961 2 3 cbr 210 ------- 1 1.0 5.0 79 81 - 0.44961 2 3 cbr 210 ------- 1 1.0 5.0 79 81 v 0.45000000000000001 eval {set sim_annotation {Send Packet_3,4,5,6 : Increase window size to 4}} r 0.45047 2 3 cbr 210 ------- 1 1.0 5.0 65 67 + 0.45047 3 5 cbr 210 ------- 1 1.0 5.0 65 67 - 0.45047 3 5 cbr 210 ------- 1 1.0 5.0 65 67 r 0.45133 3 5 cbr 210 ------- 1 1.0 5.0 51 52 r 0.45189 2 0 ack 40 ------- 0 4.0 0.0 0 55 + 0.45189 0 2 tcp 1000 ------- 0 0.0 4.0 1 96 - 0.45189 0 2 tcp 1000 ------- 0 0.0 4.0 1 96 + 0.45189 0 2 tcp 1000 ------- 0 0.0 4.0 2 97 + 0.4525 1 2 cbr 210 ------- 1 1.0 5.0 94 98 - 0.4525 1 2 cbr 210 ------- 1 1.0 5.0 94 98 r 0.45336 1 2 cbr 210 ------- 1 1.0 5.0 80 82 + 0.45336 2 3 cbr 210 ------- 1 1.0 5.0 80 82 - 0.45336 2 3 cbr 210 ------- 1 1.0 5.0 80 82 r 0.45422 2 3 cbr 210 ------- 1 1.0 5.0 66 68 + 0.45422 3 5 cbr 210 ------- 1 1.0 5.0 66 68 - 0.45422 3 5 cbr 210 ------- 1 1.0 5.0 66 68 r 0.45508 3 5 cbr 210 ------- 1 1.0 5.0 52 53 + 0.45625 1 2 cbr 210 ------- 1 1.0 5.0 95 99 - 0.45625 1 2 cbr 210 ------- 1 1.0 5.0 95 99 r 0.45711 1 2 cbr 210 ------- 1 1.0 5.0 81 83 + 0.45711 2 3 cbr 210 ------- 1 1.0 5.0 81 83 - 0.45711 2 3 cbr 210 ------- 1 1.0 5.0 81 83 r 0.45797 2 3 cbr 210 ------- 1 1.0 5.0 67 69 + 0.45797 3 5 cbr 210 ------- 1 1.0 5.0 67 69 - 0.45797 3 5 cbr 210 ------- 1 1.0 5.0 67 69 r 0.45883 3 5 cbr 210 ------- 1 1.0 5.0 53 54 + 0.46 1 2 cbr 210 ------- 1 1.0 5.0 96 100 - 0.46 1 2 cbr 210 ------- 1 1.0 5.0 96 100 r 0.46086 1 2 cbr 210 ------- 1 1.0 5.0 82 84 + 0.46086 2 3 cbr 210 ------- 1 1.0 5.0 82 84 - 0.46086 2 3 cbr 210 ------- 1 1.0 5.0 82 84 r 0.46172 2 3 cbr 210 ------- 1 1.0 5.0 68 70 + 0.46172 3 5 cbr 210 ------- 1 1.0 5.0 68 70 - 0.46172 3 5 cbr 210 ------- 1 1.0 5.0 68 70 r 0.46258 3 5 cbr 210 ------- 1 1.0 5.0 54 56 + 0.46375 1 2 cbr 210 ------- 1 1.0 5.0 97 101 - 0.46375 1 2 cbr 210 ------- 1 1.0 5.0 97 101 r 0.46461 1 2 cbr 210 ------- 1 1.0 5.0 83 85 + 0.46461 2 3 cbr 210 ------- 1 1.0 5.0 83 85 - 0.46461 2 3 cbr 210 ------- 1 1.0 5.0 83 85 r 0.46547 2 3 cbr 210 ------- 1 1.0 5.0 69 71 + 0.46547 3 5 cbr 210 ------- 1 1.0 5.0 69 71 - 0.46547 3 5 cbr 210 ------- 1 1.0 5.0 69 71 r 0.46633 3 5 cbr 210 ------- 1 1.0 5.0 55 57 + 0.4675 1 2 cbr 210 ------- 1 1.0 5.0 98 102 - 0.4675 1 2 cbr 210 ------- 1 1.0 5.0 98 102 - 0.46789 0 2 tcp 1000 ------- 0 0.0 4.0 2 97 r 0.46836 1 2 cbr 210 ------- 1 1.0 5.0 84 86 + 0.46836 2 3 cbr 210 ------- 1 1.0 5.0 84 86 - 0.46836 2 3 cbr 210 ------- 1 1.0 5.0 84 86 r 0.46922 2 3 cbr 210 ------- 1 1.0 5.0 70 72 + 0.46922 3 5 cbr 210 ------- 1 1.0 5.0 70 72 - 0.46922 3 5 cbr 210 ------- 1 1.0 5.0 70 72 r 0.47008 3 5 cbr 210 ------- 1 1.0 5.0 56 58 + 0.47125 1 2 cbr 210 ------- 1 1.0 5.0 99 103 - 0.47125 1 2 cbr 210 ------- 1 1.0 5.0 99 103 r 0.47211 1 2 cbr 210 ------- 1 1.0 5.0 85 87 + 0.47211 2 3 cbr 210 ------- 1 1.0 5.0 85 87 - 0.47211 2 3 cbr 210 ------- 1 1.0 5.0 85 87 r 0.47297 2 3 cbr 210 ------- 1 1.0 5.0 71 73 + 0.47297 3 5 cbr 210 ------- 1 1.0 5.0 71 73 - 0.47297 3 5 cbr 210 ------- 1 1.0 5.0 71 73 r 0.47383 3 5 cbr 210 ------- 1 1.0 5.0 57 59 + 0.475 1 2 cbr 210 ------- 1 1.0 5.0 100 104 - 0.475 1 2 cbr 210 ------- 1 1.0 5.0 100 104 r 0.47586 1 2 cbr 210 ------- 1 1.0 5.0 86 88 + 0.47586 2 3 cbr 210 ------- 1 1.0 5.0 86 88 - 0.47586 2 3 cbr 210 ------- 1 1.0 5.0 86 88 r 0.47672 2 3 cbr 210 ------- 1 1.0 5.0 72 74 + 0.47672 3 5 cbr 210 ------- 1 1.0 5.0 72 74 - 0.47672 3 5 cbr 210 ------- 1 1.0 5.0 72 74 r 0.47758 3 5 cbr 210 ------- 1 1.0 5.0 58 60 + 0.47875 1 2 cbr 210 ------- 1 1.0 5.0 101 105 - 0.47875 1 2 cbr 210 ------- 1 1.0 5.0 101 105 r 0.47961 1 2 cbr 210 ------- 1 1.0 5.0 87 89 + 0.47961 2 3 cbr 210 ------- 1 1.0 5.0 87 89 - 0.47961 2 3 cbr 210 ------- 1 1.0 5.0 87 89 r 0.48047 2 3 cbr 210 ------- 1 1.0 5.0 73 75 + 0.48047 3 5 cbr 210 ------- 1 1.0 5.0 73 75 - 0.48047 3 5 cbr 210 ------- 1 1.0 5.0 73 75 r 0.48133 3 5 cbr 210 ------- 1 1.0 5.0 59 61 + 0.4825 1 2 cbr 210 ------- 1 1.0 5.0 102 106 - 0.4825 1 2 cbr 210 ------- 1 1.0 5.0 102 106 r 0.48336 1 2 cbr 210 ------- 1 1.0 5.0 88 90 + 0.48336 2 3 cbr 210 ------- 1 1.0 5.0 88 90 - 0.48336 2 3 cbr 210 ------- 1 1.0 5.0 88 90 r 0.48422 2 3 cbr 210 ------- 1 1.0 5.0 74 76 + 0.48422 3 5 cbr 210 ------- 1 1.0 5.0 74 76 - 0.48422 3 5 cbr 210 ------- 1 1.0 5.0 74 76 r 0.48508 3 5 cbr 210 ------- 1 1.0 5.0 60 62 + 0.48625 1 2 cbr 210 ------- 1 1.0 5.0 103 107 - 0.48625 1 2 cbr 210 ------- 1 1.0 5.0 103 107 r 0.48711 1 2 cbr 210 ------- 1 1.0 5.0 89 91 + 0.48711 2 3 cbr 210 ------- 1 1.0 5.0 89 91 - 0.48711 2 3 cbr 210 ------- 1 1.0 5.0 89 91 r 0.48797 2 3 cbr 210 ------- 1 1.0 5.0 75 77 + 0.48797 3 5 cbr 210 ------- 1 1.0 5.0 75 77 - 0.48797 3 5 cbr 210 ------- 1 1.0 5.0 75 77 r 0.48883 3 5 cbr 210 ------- 1 1.0 5.0 61 63 + 0.49 1 2 cbr 210 ------- 1 1.0 5.0 104 108 - 0.49 1 2 cbr 210 ------- 1 1.0 5.0 104 108 r 0.49086 1 2 cbr 210 ------- 1 1.0 5.0 90 92 + 0.49086 2 3 cbr 210 ------- 1 1.0 5.0 90 92 - 0.49086 2 3 cbr 210 ------- 1 1.0 5.0 90 92 r 0.49172 2 3 cbr 210 ------- 1 1.0 5.0 76 78 + 0.49172 3 5 cbr 210 ------- 1 1.0 5.0 76 78 - 0.49172 3 5 cbr 210 ------- 1 1.0 5.0 76 78 r 0.49258 3 5 cbr 210 ------- 1 1.0 5.0 62 64 + 0.49375 1 2 cbr 210 ------- 1 1.0 5.0 105 109 - 0.49375 1 2 cbr 210 ------- 1 1.0 5.0 105 109 r 0.49461 1 2 cbr 210 ------- 1 1.0 5.0 91 93 + 0.49461 2 3 cbr 210 ------- 1 1.0 5.0 91 93 - 0.49461 2 3 cbr 210 ------- 1 1.0 5.0 91 93 r 0.49547 2 3 cbr 210 ------- 1 1.0 5.0 77 79 + 0.49547 3 5 cbr 210 ------- 1 1.0 5.0 77 79 - 0.49547 3 5 cbr 210 ------- 1 1.0 5.0 77 79 r 0.49633 3 5 cbr 210 ------- 1 1.0 5.0 63 65 + 0.4975 1 2 cbr 210 ------- 1 1.0 5.0 106 110 - 0.4975 1 2 cbr 210 ------- 1 1.0 5.0 106 110 r 0.49836 1 2 cbr 210 ------- 1 1.0 5.0 92 94 + 0.49836 2 3 cbr 210 ------- 1 1.0 5.0 92 94 - 0.49836 2 3 cbr 210 ------- 1 1.0 5.0 92 94 r 0.49922 2 3 cbr 210 ------- 1 1.0 5.0 78 80 + 0.49922 3 5 cbr 210 ------- 1 1.0 5.0 78 80 - 0.49922 3 5 cbr 210 ------- 1 1.0 5.0 78 80 r 0.50008 3 5 cbr 210 ------- 1 1.0 5.0 64 66 + 0.50125 1 2 cbr 210 ------- 1 1.0 5.0 107 111 - 0.50125 1 2 cbr 210 ------- 1 1.0 5.0 107 111 r 0.50211 1 2 cbr 210 ------- 1 1.0 5.0 93 95 + 0.50211 2 3 cbr 210 ------- 1 1.0 5.0 93 95 - 0.50211 2 3 cbr 210 ------- 1 1.0 5.0 93 95 r 0.50297 2 3 cbr 210 ------- 1 1.0 5.0 79 81 + 0.50297 3 5 cbr 210 ------- 1 1.0 5.0 79 81 - 0.50297 3 5 cbr 210 ------- 1 1.0 5.0 79 81 r 0.50383 3 5 cbr 210 ------- 1 1.0 5.0 65 67 + 0.505 1 2 cbr 210 ------- 1 1.0 5.0 108 112 - 0.505 1 2 cbr 210 ------- 1 1.0 5.0 108 112 r 0.50586 1 2 cbr 210 ------- 1 1.0 5.0 94 98 + 0.50586 2 3 cbr 210 ------- 1 1.0 5.0 94 98 - 0.50586 2 3 cbr 210 ------- 1 1.0 5.0 94 98 r 0.50672 2 3 cbr 210 ------- 1 1.0 5.0 80 82 + 0.50672 3 5 cbr 210 ------- 1 1.0 5.0 80 82 - 0.50672 3 5 cbr 210 ------- 1 1.0 5.0 80 82 r 0.50758 3 5 cbr 210 ------- 1 1.0 5.0 66 68 + 0.50875 1 2 cbr 210 ------- 1 1.0 5.0 109 113 - 0.50875 1 2 cbr 210 ------- 1 1.0 5.0 109 113 r 0.50961 1 2 cbr 210 ------- 1 1.0 5.0 95 99 + 0.50961 2 3 cbr 210 ------- 1 1.0 5.0 95 99 - 0.50961 2 3 cbr 210 ------- 1 1.0 5.0 95 99 r 0.51047 2 3 cbr 210 ------- 1 1.0 5.0 81 83 + 0.51047 3 5 cbr 210 ------- 1 1.0 5.0 81 83 - 0.51047 3 5 cbr 210 ------- 1 1.0 5.0 81 83 r 0.51133 3 5 cbr 210 ------- 1 1.0 5.0 67 69 + 0.5125 1 2 cbr 210 ------- 1 1.0 5.0 110 114 - 0.5125 1 2 cbr 210 ------- 1 1.0 5.0 110 114 r 0.51336 1 2 cbr 210 ------- 1 1.0 5.0 96 100 + 0.51336 2 3 cbr 210 ------- 1 1.0 5.0 96 100 - 0.51336 2 3 cbr 210 ------- 1 1.0 5.0 96 100 r 0.51422 2 3 cbr 210 ------- 1 1.0 5.0 82 84 + 0.51422 3 5 cbr 210 ------- 1 1.0 5.0 82 84 - 0.51422 3 5 cbr 210 ------- 1 1.0 5.0 82 84 r 0.51508 3 5 cbr 210 ------- 1 1.0 5.0 68 70 + 0.51625 1 2 cbr 210 ------- 1 1.0 5.0 111 115 - 0.51625 1 2 cbr 210 ------- 1 1.0 5.0 111 115 r 0.51711 1 2 cbr 210 ------- 1 1.0 5.0 97 101 + 0.51711 2 3 cbr 210 ------- 1 1.0 5.0 97 101 - 0.51711 2 3 cbr 210 ------- 1 1.0 5.0 97 101 r 0.51789 0 2 tcp 1000 ------- 0 0.0 4.0 1 96 + 0.51789 2 3 tcp 1000 ------- 0 0.0 4.0 1 96 r 0.51797 2 3 cbr 210 ------- 1 1.0 5.0 83 85 + 0.51797 3 5 cbr 210 ------- 1 1.0 5.0 83 85 - 0.51797 3 5 cbr 210 ------- 1 1.0 5.0 83 85 r 0.51883 3 5 cbr 210 ------- 1 1.0 5.0 69 71 + 0.52 1 2 cbr 210 ------- 1 1.0 5.0 112 116 - 0.52 1 2 cbr 210 ------- 1 1.0 5.0 112 116 v 0.52000000000000002 eval {set sim_annotation {Packet_5,6 are lost}} - 0.52047 2 3 tcp 1000 ------- 0 0.0 4.0 1 96 r 0.52086 1 2 cbr 210 ------- 1 1.0 5.0 98 102 + 0.52086 2 3 cbr 210 ------- 1 1.0 5.0 98 102 r 0.52172 2 3 cbr 210 ------- 1 1.0 5.0 84 86 + 0.52172 3 5 cbr 210 ------- 1 1.0 5.0 84 86 - 0.52172 3 5 cbr 210 ------- 1 1.0 5.0 84 86 r 0.52258 3 5 cbr 210 ------- 1 1.0 5.0 70 72 + 0.52375 1 2 cbr 210 ------- 1 1.0 5.0 113 117 - 0.52375 1 2 cbr 210 ------- 1 1.0 5.0 113 117 r 0.52461 1 2 cbr 210 ------- 1 1.0 5.0 99 103 + 0.52461 2 3 cbr 210 ------- 1 1.0 5.0 99 103 r 0.52547 2 3 cbr 210 ------- 1 1.0 5.0 85 87 + 0.52547 3 5 cbr 210 ------- 1 1.0 5.0 85 87 - 0.52547 3 5 cbr 210 ------- 1 1.0 5.0 85 87 r 0.52633 3 5 cbr 210 ------- 1 1.0 5.0 71 73 + 0.5275 1 2 cbr 210 ------- 1 1.0 5.0 114 118 - 0.5275 1 2 cbr 210 ------- 1 1.0 5.0 114 118 r 0.52836 1 2 cbr 210 ------- 1 1.0 5.0 100 104 + 0.52836 2 3 cbr 210 ------- 1 1.0 5.0 100 104 r 0.52922 2 3 cbr 210 ------- 1 1.0 5.0 86 88 + 0.52922 3 5 cbr 210 ------- 1 1.0 5.0 86 88 - 0.52922 3 5 cbr 210 ------- 1 1.0 5.0 86 88 r 0.53008 3 5 cbr 210 ------- 1 1.0 5.0 72 74 + 0.53125 1 2 cbr 210 ------- 1 1.0 5.0 115 119 - 0.53125 1 2 cbr 210 ------- 1 1.0 5.0 115 119 r 0.53211 1 2 cbr 210 ------- 1 1.0 5.0 101 105 + 0.53211 2 3 cbr 210 ------- 1 1.0 5.0 101 105 r 0.53297 2 3 cbr 210 ------- 1 1.0 5.0 87 89 + 0.53297 3 5 cbr 210 ------- 1 1.0 5.0 87 89 - 0.53297 3 5 cbr 210 ------- 1 1.0 5.0 87 89 r 0.53383 3 5 cbr 210 ------- 1 1.0 5.0 73 75 r 0.53389 0 2 tcp 1000 ------- 0 0.0 4.0 2 97 + 0.53389 2 3 tcp 1000 ------- 0 0.0 4.0 2 97 + 0.535 1 2 cbr 210 ------- 1 1.0 5.0 116 120 - 0.535 1 2 cbr 210 ------- 1 1.0 5.0 116 120 r 0.53586 1 2 cbr 210 ------- 1 1.0 5.0 102 106 + 0.53586 2 3 cbr 210 ------- 1 1.0 5.0 102 106 - 0.53647 2 3 cbr 210 ------- 1 1.0 5.0 98 102 r 0.53672 2 3 cbr 210 ------- 1 1.0 5.0 88 90 + 0.53672 3 5 cbr 210 ------- 1 1.0 5.0 88 90 - 0.53672 3 5 cbr 210 ------- 1 1.0 5.0 88 90 r 0.53758 3 5 cbr 210 ------- 1 1.0 5.0 74 76 + 0.53875 1 2 cbr 210 ------- 1 1.0 5.0 117 121 - 0.53875 1 2 cbr 210 ------- 1 1.0 5.0 117 121 r 0.53961 1 2 cbr 210 ------- 1 1.0 5.0 103 107 + 0.53961 2 3 cbr 210 ------- 1 1.0 5.0 103 107 - 0.53983 2 3 cbr 210 ------- 1 1.0 5.0 99 103 r 0.54047 2 3 cbr 210 ------- 1 1.0 5.0 89 91 + 0.54047 3 5 cbr 210 ------- 1 1.0 5.0 89 91 - 0.54047 3 5 cbr 210 ------- 1 1.0 5.0 89 91 r 0.54133 3 5 cbr 210 ------- 1 1.0 5.0 75 77 + 0.5425 1 2 cbr 210 ------- 1 1.0 5.0 118 122 - 0.5425 1 2 cbr 210 ------- 1 1.0 5.0 118 122 - 0.54319 2 3 cbr 210 ------- 1 1.0 5.0 100 104 r 0.54336 1 2 cbr 210 ------- 1 1.0 5.0 104 108 + 0.54336 2 3 cbr 210 ------- 1 1.0 5.0 104 108 r 0.54422 2 3 cbr 210 ------- 1 1.0 5.0 90 92 + 0.54422 3 5 cbr 210 ------- 1 1.0 5.0 90 92 - 0.54422 3 5 cbr 210 ------- 1 1.0 5.0 90 92 r 0.54508 3 5 cbr 210 ------- 1 1.0 5.0 76 78 + 0.54625 1 2 cbr 210 ------- 1 1.0 5.0 119 123 - 0.54625 1 2 cbr 210 ------- 1 1.0 5.0 119 123 - 0.54655 2 3 cbr 210 ------- 1 1.0 5.0 101 105 r 0.54711 1 2 cbr 210 ------- 1 1.0 5.0 105 109 + 0.54711 2 3 cbr 210 ------- 1 1.0 5.0 105 109 r 0.54797 2 3 cbr 210 ------- 1 1.0 5.0 91 93 + 0.54797 3 5 cbr 210 ------- 1 1.0 5.0 91 93 - 0.54797 3 5 cbr 210 ------- 1 1.0 5.0 91 93 r 0.54883 3 5 cbr 210 ------- 1 1.0 5.0 77 79 - 0.54991 2 3 tcp 1000 ------- 0 0.0 4.0 2 97 + 0.55 1 2 cbr 210 ------- 1 1.0 5.0 120 124 - 0.55 1 2 cbr 210 ------- 1 1.0 5.0 120 124 r 0.55086 1 2 cbr 210 ------- 1 1.0 5.0 106 110 + 0.55086 2 3 cbr 210 ------- 1 1.0 5.0 106 110 r 0.55172 2 3 cbr 210 ------- 1 1.0 5.0 92 94 + 0.55172 3 5 cbr 210 ------- 1 1.0 5.0 92 94 - 0.55172 3 5 cbr 210 ------- 1 1.0 5.0 92 94 r 0.55258 3 5 cbr 210 ------- 1 1.0 5.0 78 80 + 0.55375 1 2 cbr 210 ------- 1 1.0 5.0 121 125 - 0.55375 1 2 cbr 210 ------- 1 1.0 5.0 121 125 r 0.55461 1 2 cbr 210 ------- 1 1.0 5.0 107 111 + 0.55461 2 3 cbr 210 ------- 1 1.0 5.0 107 111 r 0.55547 2 3 cbr 210 ------- 1 1.0 5.0 93 95 + 0.55547 3 5 cbr 210 ------- 1 1.0 5.0 93 95 - 0.55547 3 5 cbr 210 ------- 1 1.0 5.0 93 95 r 0.55633 3 5 cbr 210 ------- 1 1.0 5.0 79 81 + 0.5575 1 2 cbr 210 ------- 1 1.0 5.0 122 126 - 0.5575 1 2 cbr 210 ------- 1 1.0 5.0 122 126 r 0.55836 1 2 cbr 210 ------- 1 1.0 5.0 108 112 + 0.55836 2 3 cbr 210 ------- 1 1.0 5.0 108 112 r 0.55922 2 3 cbr 210 ------- 1 1.0 5.0 94 98 + 0.55922 3 5 cbr 210 ------- 1 1.0 5.0 94 98 - 0.55922 3 5 cbr 210 ------- 1 1.0 5.0 94 98 r 0.56008 3 5 cbr 210 ------- 1 1.0 5.0 80 82 + 0.56125 1 2 cbr 210 ------- 1 1.0 5.0 123 127 - 0.56125 1 2 cbr 210 ------- 1 1.0 5.0 123 127 r 0.56211 1 2 cbr 210 ------- 1 1.0 5.0 109 113 + 0.56211 2 3 cbr 210 ------- 1 1.0 5.0 109 113 r 0.56297 2 3 cbr 210 ------- 1 1.0 5.0 95 99 + 0.56297 3 5 cbr 210 ------- 1 1.0 5.0 95 99 - 0.56297 3 5 cbr 210 ------- 1 1.0 5.0 95 99 r 0.56383 3 5 cbr 210 ------- 1 1.0 5.0 81 83 + 0.565 1 2 cbr 210 ------- 1 1.0 5.0 124 128 - 0.565 1 2 cbr 210 ------- 1 1.0 5.0 124 128 r 0.56586 1 2 cbr 210 ------- 1 1.0 5.0 110 114 + 0.56586 2 3 cbr 210 ------- 1 1.0 5.0 110 114 - 0.56591 2 3 cbr 210 ------- 1 1.0 5.0 102 106 r 0.56672 2 3 cbr 210 ------- 1 1.0 5.0 96 100 + 0.56672 3 5 cbr 210 ------- 1 1.0 5.0 96 100 - 0.56672 3 5 cbr 210 ------- 1 1.0 5.0 96 100 r 0.56758 3 5 cbr 210 ------- 1 1.0 5.0 82 84 + 0.56875 1 2 cbr 210 ------- 1 1.0 5.0 125 129 - 0.56875 1 2 cbr 210 ------- 1 1.0 5.0 125 129 - 0.56927 2 3 cbr 210 ------- 1 1.0 5.0 103 107 r 0.56961 1 2 cbr 210 ------- 1 1.0 5.0 111 115 + 0.56961 2 3 cbr 210 ------- 1 1.0 5.0 111 115 r 0.57047 2 3 cbr 210 ------- 1 1.0 5.0 97 101 + 0.57047 3 5 cbr 210 ------- 1 1.0 5.0 97 101 - 0.57047 3 5 cbr 210 ------- 1 1.0 5.0 97 101 r 0.57133 3 5 cbr 210 ------- 1 1.0 5.0 83 85 + 0.5725 1 2 cbr 210 ------- 1 1.0 5.0 126 130 - 0.5725 1 2 cbr 210 ------- 1 1.0 5.0 126 130 - 0.57263 2 3 cbr 210 ------- 1 1.0 5.0 104 108 r 0.57336 1 2 cbr 210 ------- 1 1.0 5.0 112 116 + 0.57336 2 3 cbr 210 ------- 1 1.0 5.0 112 116 r 0.57508 3 5 cbr 210 ------- 1 1.0 5.0 84 86 - 0.57599 2 3 cbr 210 ------- 1 1.0 5.0 105 109 + 0.57625 1 2 cbr 210 ------- 1 1.0 5.0 127 131 - 0.57625 1 2 cbr 210 ------- 1 1.0 5.0 127 131 r 0.57711 1 2 cbr 210 ------- 1 1.0 5.0 113 117 + 0.57711 2 3 cbr 210 ------- 1 1.0 5.0 113 117 r 0.57883 3 5 cbr 210 ------- 1 1.0 5.0 85 87 - 0.57935 2 3 cbr 210 ------- 1 1.0 5.0 106 110 + 0.58 1 2 cbr 210 ------- 1 1.0 5.0 128 132 - 0.58 1 2 cbr 210 ------- 1 1.0 5.0 128 132 v 0.57999999999999996 eval {set sim_annotation {Ack_3,4 : 2 acks are coming}} r 0.58086 1 2 cbr 210 ------- 1 1.0 5.0 114 118 + 0.58086 2 3 cbr 210 ------- 1 1.0 5.0 114 118 r 0.58258 3 5 cbr 210 ------- 1 1.0 5.0 86 88 - 0.58271 2 3 cbr 210 ------- 1 1.0 5.0 107 111 + 0.58375 1 2 cbr 210 ------- 1 1.0 5.0 129 133 - 0.58375 1 2 cbr 210 ------- 1 1.0 5.0 129 133 r 0.58461 1 2 cbr 210 ------- 1 1.0 5.0 115 119 + 0.58461 2 3 cbr 210 ------- 1 1.0 5.0 115 119 - 0.58607 2 3 cbr 210 ------- 1 1.0 5.0 108 112 r 0.58633 3 5 cbr 210 ------- 1 1.0 5.0 87 89 r 0.58647 2 3 tcp 1000 ------- 0 0.0 4.0 1 96 + 0.58647 3 4 tcp 1000 ------- 0 0.0 4.0 1 96 - 0.58647 3 4 tcp 1000 ------- 0 0.0 4.0 1 96 + 0.5875 1 2 cbr 210 ------- 1 1.0 5.0 130 134 - 0.5875 1 2 cbr 210 ------- 1 1.0 5.0 130 134 r 0.58836 1 2 cbr 210 ------- 1 1.0 5.0 116 120 + 0.58836 2 3 cbr 210 ------- 1 1.0 5.0 116 120 - 0.58943 2 3 cbr 210 ------- 1 1.0 5.0 109 113 r 0.58983 2 3 cbr 210 ------- 1 1.0 5.0 98 102 + 0.58983 3 5 cbr 210 ------- 1 1.0 5.0 98 102 - 0.58983 3 5 cbr 210 ------- 1 1.0 5.0 98 102 r 0.59008 3 5 cbr 210 ------- 1 1.0 5.0 88 90 + 0.59125 1 2 cbr 210 ------- 1 1.0 5.0 131 135 - 0.59125 1 2 cbr 210 ------- 1 1.0 5.0 131 135 r 0.59211 1 2 cbr 210 ------- 1 1.0 5.0 117 121 + 0.59211 2 3 cbr 210 ------- 1 1.0 5.0 117 121 - 0.59279 2 3 cbr 210 ------- 1 1.0 5.0 110 114 r 0.59319 2 3 cbr 210 ------- 1 1.0 5.0 99 103 + 0.59319 3 5 cbr 210 ------- 1 1.0 5.0 99 103 - 0.59319 3 5 cbr 210 ------- 1 1.0 5.0 99 103 r 0.59383 3 5 cbr 210 ------- 1 1.0 5.0 89 91 + 0.595 1 2 cbr 210 ------- 1 1.0 5.0 132 136 - 0.595 1 2 cbr 210 ------- 1 1.0 5.0 132 136 r 0.59586 1 2 cbr 210 ------- 1 1.0 5.0 118 122 + 0.59586 2 3 cbr 210 ------- 1 1.0 5.0 118 122 - 0.59615 2 3 cbr 210 ------- 1 1.0 5.0 111 115 r 0.59655 2 3 cbr 210 ------- 1 1.0 5.0 100 104 + 0.59655 3 5 cbr 210 ------- 1 1.0 5.0 100 104 - 0.59655 3 5 cbr 210 ------- 1 1.0 5.0 100 104 r 0.59758 3 5 cbr 210 ------- 1 1.0 5.0 90 92 + 0.59875 1 2 cbr 210 ------- 1 1.0 5.0 133 137 - 0.59875 1 2 cbr 210 ------- 1 1.0 5.0 133 137 - 0.59951 2 3 cbr 210 ------- 1 1.0 5.0 112 116 r 0.59961 1 2 cbr 210 ------- 1 1.0 5.0 119 123 + 0.59961 2 3 cbr 210 ------- 1 1.0 5.0 119 123 r 0.59991 2 3 cbr 210 ------- 1 1.0 5.0 101 105 + 0.59991 3 5 cbr 210 ------- 1 1.0 5.0 101 105 - 0.59991 3 5 cbr 210 ------- 1 1.0 5.0 101 105 r 0.60133 3 5 cbr 210 ------- 1 1.0 5.0 91 93 + 0.6025 1 2 cbr 210 ------- 1 1.0 5.0 134 138 - 0.6025 1 2 cbr 210 ------- 1 1.0 5.0 134 138 - 0.60287 2 3 cbr 210 ------- 1 1.0 5.0 113 117 r 0.60336 1 2 cbr 210 ------- 1 1.0 5.0 120 124 + 0.60336 2 3 cbr 210 ------- 1 1.0 5.0 120 124 r 0.60508 3 5 cbr 210 ------- 1 1.0 5.0 92 94 - 0.60623 2 3 cbr 210 ------- 1 1.0 5.0 114 118 + 0.60625 1 2 cbr 210 ------- 1 1.0 5.0 135 139 - 0.60625 1 2 cbr 210 ------- 1 1.0 5.0 135 139 r 0.60711 1 2 cbr 210 ------- 1 1.0 5.0 121 125 + 0.60711 2 3 cbr 210 ------- 1 1.0 5.0 121 125 r 0.60883 3 5 cbr 210 ------- 1 1.0 5.0 93 95 - 0.60959 2 3 cbr 210 ------- 1 1.0 5.0 115 119 + 0.61 1 2 cbr 210 ------- 1 1.0 5.0 136 140 - 0.61 1 2 cbr 210 ------- 1 1.0 5.0 136 140 r 0.61086 1 2 cbr 210 ------- 1 1.0 5.0 122 126 + 0.61086 2 3 cbr 210 ------- 1 1.0 5.0 122 126 r 0.61258 3 5 cbr 210 ------- 1 1.0 5.0 94 98 - 0.61295 2 3 cbr 210 ------- 1 1.0 5.0 116 120 + 0.61375 1 2 cbr 210 ------- 1 1.0 5.0 137 141 - 0.61375 1 2 cbr 210 ------- 1 1.0 5.0 137 141 r 0.61461 1 2 cbr 210 ------- 1 1.0 5.0 123 127 + 0.61461 2 3 cbr 210 ------- 1 1.0 5.0 123 127 r 0.61591 2 3 tcp 1000 ------- 0 0.0 4.0 2 97 + 0.61591 3 4 tcp 1000 ------- 0 0.0 4.0 2 97 - 0.61591 3 4 tcp 1000 ------- 0 0.0 4.0 2 97 - 0.61631 2 3 cbr 210 ------- 1 1.0 5.0 117 121 r 0.61633 3 5 cbr 210 ------- 1 1.0 5.0 95 99 + 0.6175 1 2 cbr 210 ------- 1 1.0 5.0 138 142 - 0.6175 1 2 cbr 210 ------- 1 1.0 5.0 138 142 r 0.61836 1 2 cbr 210 ------- 1 1.0 5.0 124 128 + 0.61836 2 3 cbr 210 ------- 1 1.0 5.0 124 128 r 0.61927 2 3 cbr 210 ------- 1 1.0 5.0 102 106 + 0.61927 3 5 cbr 210 ------- 1 1.0 5.0 102 106 - 0.61927 3 5 cbr 210 ------- 1 1.0 5.0 102 106 - 0.61967 2 3 cbr 210 ------- 1 1.0 5.0 118 122 r 0.62008 3 5 cbr 210 ------- 1 1.0 5.0 96 100 + 0.62125 1 2 cbr 210 ------- 1 1.0 5.0 139 143 - 0.62125 1 2 cbr 210 ------- 1 1.0 5.0 139 143 r 0.62211 1 2 cbr 210 ------- 1 1.0 5.0 125 129 + 0.62211 2 3 cbr 210 ------- 1 1.0 5.0 125 129 r 0.62263 2 3 cbr 210 ------- 1 1.0 5.0 103 107 + 0.62263 3 5 cbr 210 ------- 1 1.0 5.0 103 107 - 0.62263 3 5 cbr 210 ------- 1 1.0 5.0 103 107 - 0.62303 2 3 cbr 210 ------- 1 1.0 5.0 119 123 r 0.62383 3 5 cbr 210 ------- 1 1.0 5.0 97 101 + 0.625 1 2 cbr 210 ------- 1 1.0 5.0 140 144 - 0.625 1 2 cbr 210 ------- 1 1.0 5.0 140 144 r 0.62586 1 2 cbr 210 ------- 1 1.0 5.0 126 130 + 0.62586 2 3 cbr 210 ------- 1 1.0 5.0 126 130 r 0.62599 2 3 cbr 210 ------- 1 1.0 5.0 104 108 + 0.62599 3 5 cbr 210 ------- 1 1.0 5.0 104 108 - 0.62599 3 5 cbr 210 ------- 1 1.0 5.0 104 108 - 0.62639 2 3 cbr 210 ------- 1 1.0 5.0 120 124 + 0.62875 1 2 cbr 210 ------- 1 1.0 5.0 141 145 - 0.62875 1 2 cbr 210 ------- 1 1.0 5.0 141 145 r 0.62935 2 3 cbr 210 ------- 1 1.0 5.0 105 109 + 0.62935 3 5 cbr 210 ------- 1 1.0 5.0 105 109 - 0.62935 3 5 cbr 210 ------- 1 1.0 5.0 105 109 r 0.62961 1 2 cbr 210 ------- 1 1.0 5.0 127 131 + 0.62961 2 3 cbr 210 ------- 1 1.0 5.0 127 131 - 0.62975 2 3 cbr 210 ------- 1 1.0 5.0 121 125 v 0.63 eval {set sim_annotation {Send Packet_7,8,9,10 : Keep window size to 4}} + 0.6325 1 2 cbr 210 ------- 1 1.0 5.0 142 146 - 0.6325 1 2 cbr 210 ------- 1 1.0 5.0 142 146 r 0.63271 2 3 cbr 210 ------- 1 1.0 5.0 106 110 + 0.63271 3 5 cbr 210 ------- 1 1.0 5.0 106 110 - 0.63271 3 5 cbr 210 ------- 1 1.0 5.0 106 110 - 0.63311 2 3 cbr 210 ------- 1 1.0 5.0 122 126 r 0.63336 1 2 cbr 210 ------- 1 1.0 5.0 128 132 + 0.63336 2 3 cbr 210 ------- 1 1.0 5.0 128 132 r 0.63607 2 3 cbr 210 ------- 1 1.0 5.0 107 111 + 0.63607 3 5 cbr 210 ------- 1 1.0 5.0 107 111 - 0.63607 3 5 cbr 210 ------- 1 1.0 5.0 107 111 + 0.63625 1 2 cbr 210 ------- 1 1.0 5.0 143 147 - 0.63625 1 2 cbr 210 ------- 1 1.0 5.0 143 147 - 0.63647 2 3 cbr 210 ------- 1 1.0 5.0 123 127 r 0.63711 1 2 cbr 210 ------- 1 1.0 5.0 129 133 + 0.63711 2 3 cbr 210 ------- 1 1.0 5.0 129 133 r 0.63943 2 3 cbr 210 ------- 1 1.0 5.0 108 112 + 0.63943 3 5 cbr 210 ------- 1 1.0 5.0 108 112 - 0.63943 3 5 cbr 210 ------- 1 1.0 5.0 108 112 - 0.63983 2 3 cbr 210 ------- 1 1.0 5.0 124 128 + 0.64 1 2 cbr 210 ------- 1 1.0 5.0 144 148 - 0.64 1 2 cbr 210 ------- 1 1.0 5.0 144 148 r 0.64086 1 2 cbr 210 ------- 1 1.0 5.0 130 134 + 0.64086 2 3 cbr 210 ------- 1 1.0 5.0 130 134 r 0.64279 2 3 cbr 210 ------- 1 1.0 5.0 109 113 + 0.64279 3 5 cbr 210 ------- 1 1.0 5.0 109 113 - 0.64279 3 5 cbr 210 ------- 1 1.0 5.0 109 113 r 0.64319 3 5 cbr 210 ------- 1 1.0 5.0 98 102 - 0.64319 2 3 cbr 210 ------- 1 1.0 5.0 125 129 + 0.64375 1 2 cbr 210 ------- 1 1.0 5.0 145 149 - 0.64375 1 2 cbr 210 ------- 1 1.0 5.0 145 149 r 0.64461 1 2 cbr 210 ------- 1 1.0 5.0 131 135 + 0.64461 2 3 cbr 210 ------- 1 1.0 5.0 131 135 r 0.64615 2 3 cbr 210 ------- 1 1.0 5.0 110 114 + 0.64615 3 5 cbr 210 ------- 1 1.0 5.0 110 114 - 0.64615 3 5 cbr 210 ------- 1 1.0 5.0 110 114 r 0.64655 3 5 cbr 210 ------- 1 1.0 5.0 99 103 - 0.64655 2 3 cbr 210 ------- 1 1.0 5.0 126 130 + 0.6475 1 2 cbr 210 ------- 1 1.0 5.0 146 150 - 0.6475 1 2 cbr 210 ------- 1 1.0 5.0 146 150 r 0.64836 1 2 cbr 210 ------- 1 1.0 5.0 132 136 + 0.64836 2 3 cbr 210 ------- 1 1.0 5.0 132 136 r 0.64951 2 3 cbr 210 ------- 1 1.0 5.0 111 115 + 0.64951 3 5 cbr 210 ------- 1 1.0 5.0 111 115 - 0.64951 3 5 cbr 210 ------- 1 1.0 5.0 111 115 r 0.64991 3 5 cbr 210 ------- 1 1.0 5.0 100 104 - 0.64991 2 3 cbr 210 ------- 1 1.0 5.0 127 131 + 0.65125 1 2 cbr 210 ------- 1 1.0 5.0 147 151 - 0.65125 1 2 cbr 210 ------- 1 1.0 5.0 147 151 r 0.65211 1 2 cbr 210 ------- 1 1.0 5.0 133 137 + 0.65211 2 3 cbr 210 ------- 1 1.0 5.0 133 137 r 0.65247 3 4 tcp 1000 ------- 0 0.0 4.0 1 96 + 0.65247 4 3 ack 40 ------- 0 4.0 0.0 1 152 - 0.65247 4 3 ack 40 ------- 0 4.0 0.0 1 152 r 0.65287 2 3 cbr 210 ------- 1 1.0 5.0 112 116 + 0.65287 3 5 cbr 210 ------- 1 1.0 5.0 112 116 - 0.65287 3 5 cbr 210 ------- 1 1.0 5.0 112 116 r 0.65327 3 5 cbr 210 ------- 1 1.0 5.0 101 105 - 0.65327 2 3 cbr 210 ------- 1 1.0 5.0 128 132 + 0.655 1 2 cbr 210 ------- 1 1.0 5.0 148 153 - 0.655 1 2 cbr 210 ------- 1 1.0 5.0 148 153 r 0.65586 1 2 cbr 210 ------- 1 1.0 5.0 134 138 + 0.65586 2 3 cbr 210 ------- 1 1.0 5.0 134 138 r 0.65623 2 3 cbr 210 ------- 1 1.0 5.0 113 117 + 0.65623 3 5 cbr 210 ------- 1 1.0 5.0 113 117 - 0.65623 3 5 cbr 210 ------- 1 1.0 5.0 113 117 - 0.65663 2 3 cbr 210 ------- 1 1.0 5.0 129 133 + 0.65875 1 2 cbr 210 ------- 1 1.0 5.0 149 154 - 0.65875 1 2 cbr 210 ------- 1 1.0 5.0 149 154 r 0.65959 2 3 cbr 210 ------- 1 1.0 5.0 114 118 + 0.65959 3 5 cbr 210 ------- 1 1.0 5.0 114 118 - 0.65959 3 5 cbr 210 ------- 1 1.0 5.0 114 118 r 0.65961 1 2 cbr 210 ------- 1 1.0 5.0 135 139 + 0.65961 2 3 cbr 210 ------- 1 1.0 5.0 135 139 - 0.65999 2 3 cbr 210 ------- 1 1.0 5.0 130 134 + 0.6625 1 2 cbr 210 ------- 1 1.0 5.0 150 155 - 0.6625 1 2 cbr 210 ------- 1 1.0 5.0 150 155 r 0.66295 2 3 cbr 210 ------- 1 1.0 5.0 115 119 + 0.66295 3 5 cbr 210 ------- 1 1.0 5.0 115 119 - 0.66295 3 5 cbr 210 ------- 1 1.0 5.0 115 119 - 0.66335 2 3 cbr 210 ------- 1 1.0 5.0 131 135 r 0.66336 1 2 cbr 210 ------- 1 1.0 5.0 136 140 + 0.66336 2 3 cbr 210 ------- 1 1.0 5.0 136 140 + 0.66625 1 2 cbr 210 ------- 1 1.0 5.0 151 156 - 0.66625 1 2 cbr 210 ------- 1 1.0 5.0 151 156 r 0.66631 2 3 cbr 210 ------- 1 1.0 5.0 116 120 + 0.66631 3 5 cbr 210 ------- 1 1.0 5.0 116 120 - 0.66631 3 5 cbr 210 ------- 1 1.0 5.0 116 120 - 0.66671 2 3 cbr 210 ------- 1 1.0 5.0 132 136 r 0.66711 1 2 cbr 210 ------- 1 1.0 5.0 137 141 + 0.66711 2 3 cbr 210 ------- 1 1.0 5.0 137 141 r 0.66967 2 3 cbr 210 ------- 1 1.0 5.0 117 121 + 0.66967 3 5 cbr 210 ------- 1 1.0 5.0 117 121 - 0.66967 3 5 cbr 210 ------- 1 1.0 5.0 117 121 + 0.67 1 2 cbr 210 ------- 1 1.0 5.0 152 157 - 0.67 1 2 cbr 210 ------- 1 1.0 5.0 152 157 - 0.67007 2 3 cbr 210 ------- 1 1.0 5.0 133 137 r 0.67086 1 2 cbr 210 ------- 1 1.0 5.0 138 142 + 0.67086 2 3 cbr 210 ------- 1 1.0 5.0 138 142 r 0.67263 3 5 cbr 210 ------- 1 1.0 5.0 102 106 r 0.67303 2 3 cbr 210 ------- 1 1.0 5.0 118 122 + 0.67303 3 5 cbr 210 ------- 1 1.0 5.0 118 122 - 0.67303 3 5 cbr 210 ------- 1 1.0 5.0 118 122 - 0.67343 2 3 cbr 210 ------- 1 1.0 5.0 134 138 + 0.67375 1 2 cbr 210 ------- 1 1.0 5.0 153 158 - 0.67375 1 2 cbr 210 ------- 1 1.0 5.0 153 158 r 0.67461 1 2 cbr 210 ------- 1 1.0 5.0 139 143 + 0.67461 2 3 cbr 210 ------- 1 1.0 5.0 139 143 r 0.67599 3 5 cbr 210 ------- 1 1.0 5.0 103 107 r 0.67639 2 3 cbr 210 ------- 1 1.0 5.0 119 123 + 0.67639 3 5 cbr 210 ------- 1 1.0 5.0 119 123 - 0.67639 3 5 cbr 210 ------- 1 1.0 5.0 119 123 - 0.67679 2 3 cbr 210 ------- 1 1.0 5.0 135 139 + 0.6775 1 2 cbr 210 ------- 1 1.0 5.0 154 159 - 0.6775 1 2 cbr 210 ------- 1 1.0 5.0 154 159 r 0.67836 1 2 cbr 210 ------- 1 1.0 5.0 140 144 + 0.67836 2 3 cbr 210 ------- 1 1.0 5.0 140 144 r 0.67935 3 5 cbr 210 ------- 1 1.0 5.0 104 108 r 0.67975 2 3 cbr 210 ------- 1 1.0 5.0 120 124 + 0.67975 3 5 cbr 210 ------- 1 1.0 5.0 120 124 - 0.67975 3 5 cbr 210 ------- 1 1.0 5.0 120 124 - 0.68015 2 3 cbr 210 ------- 1 1.0 5.0 136 140 + 0.68125 1 2 cbr 210 ------- 1 1.0 5.0 155 160 - 0.68125 1 2 cbr 210 ------- 1 1.0 5.0 155 160 r 0.68191 3 4 tcp 1000 ------- 0 0.0 4.0 2 97 + 0.68191 4 3 ack 40 ------- 0 4.0 0.0 2 161 - 0.68191 4 3 ack 40 ------- 0 4.0 0.0 2 161 r 0.68211 1 2 cbr 210 ------- 1 1.0 5.0 141 145 + 0.68211 2 3 cbr 210 ------- 1 1.0 5.0 141 145 r 0.68271 3 5 cbr 210 ------- 1 1.0 5.0 105 109 r 0.68311 2 3 cbr 210 ------- 1 1.0 5.0 121 125 + 0.68311 3 5 cbr 210 ------- 1 1.0 5.0 121 125 - 0.68311 3 5 cbr 210 ------- 1 1.0 5.0 121 125 - 0.68351 2 3 cbr 210 ------- 1 1.0 5.0 137 141 + 0.685 1 2 cbr 210 ------- 1 1.0 5.0 156 162 - 0.685 1 2 cbr 210 ------- 1 1.0 5.0 156 162 r 0.68586 1 2 cbr 210 ------- 1 1.0 5.0 142 146 + 0.68586 2 3 cbr 210 ------- 1 1.0 5.0 142 146 r 0.68607 3 5 cbr 210 ------- 1 1.0 5.0 106 110 r 0.68647 2 3 cbr 210 ------- 1 1.0 5.0 122 126 + 0.68647 3 5 cbr 210 ------- 1 1.0 5.0 122 126 - 0.68647 3 5 cbr 210 ------- 1 1.0 5.0 122 126 - 0.68687 2 3 cbr 210 ------- 1 1.0 5.0 138 142 + 0.68875 1 2 cbr 210 ------- 1 1.0 5.0 157 163 - 0.68875 1 2 cbr 210 ------- 1 1.0 5.0 157 163 r 0.68943 3 5 cbr 210 ------- 1 1.0 5.0 107 111 r 0.68961 1 2 cbr 210 ------- 1 1.0 5.0 143 147 + 0.68961 2 3 cbr 210 ------- 1 1.0 5.0 143 147 r 0.68983 2 3 cbr 210 ------- 1 1.0 5.0 123 127 + 0.68983 3 5 cbr 210 ------- 1 1.0 5.0 123 127 - 0.68983 3 5 cbr 210 ------- 1 1.0 5.0 123 127 - 0.69023 2 3 cbr 210 ------- 1 1.0 5.0 139 143 + 0.6925 1 2 cbr 210 ------- 1 1.0 5.0 158 164 - 0.6925 1 2 cbr 210 ------- 1 1.0 5.0 158 164 r 0.69279 3 5 cbr 210 ------- 1 1.0 5.0 108 112 r 0.69319 2 3 cbr 210 ------- 1 1.0 5.0 124 128 + 0.69319 3 5 cbr 210 ------- 1 1.0 5.0 124 128 - 0.69319 3 5 cbr 210 ------- 1 1.0 5.0 124 128 r 0.69336 1 2 cbr 210 ------- 1 1.0 5.0 144 148 + 0.69336 2 3 cbr 210 ------- 1 1.0 5.0 144 148 - 0.69359 2 3 cbr 210 ------- 1 1.0 5.0 140 144 r 0.69615 3 5 cbr 210 ------- 1 1.0 5.0 109 113 + 0.69625 1 2 cbr 210 ------- 1 1.0 5.0 159 165 - 0.69625 1 2 cbr 210 ------- 1 1.0 5.0 159 165 r 0.69655 2 3 cbr 210 ------- 1 1.0 5.0 125 129 + 0.69655 3 5 cbr 210 ------- 1 1.0 5.0 125 129 - 0.69655 3 5 cbr 210 ------- 1 1.0 5.0 125 129 - 0.69695 2 3 cbr 210 ------- 1 1.0 5.0 141 145 r 0.69711 1 2 cbr 210 ------- 1 1.0 5.0 145 149 + 0.69711 2 3 cbr 210 ------- 1 1.0 5.0 145 149 r 0.69951 3 5 cbr 210 ------- 1 1.0 5.0 110 114 r 0.69991 2 3 cbr 210 ------- 1 1.0 5.0 126 130 + 0.69991 3 5 cbr 210 ------- 1 1.0 5.0 126 130 - 0.69991 3 5 cbr 210 ------- 1 1.0 5.0 126 130 v 0.69999999999999996 eval {set sim_annotation {Packet_9 is lost}} + 0.7 1 2 cbr 210 ------- 1 1.0 5.0 160 166 - 0.7 1 2 cbr 210 ------- 1 1.0 5.0 160 166 - 0.70031 2 3 cbr 210 ------- 1 1.0 5.0 142 146 r 0.70086 1 2 cbr 210 ------- 1 1.0 5.0 146 150 + 0.70086 2 3 cbr 210 ------- 1 1.0 5.0 146 150 r 0.70287 3 5 cbr 210 ------- 1 1.0 5.0 111 115 r 0.70311 4 3 ack 40 ------- 0 4.0 0.0 1 152 + 0.70311 3 2 ack 40 ------- 0 4.0 0.0 1 152 - 0.70311 3 2 ack 40 ------- 0 4.0 0.0 1 152 r 0.70327 2 3 cbr 210 ------- 1 1.0 5.0 127 131 + 0.70327 3 5 cbr 210 ------- 1 1.0 5.0 127 131 - 0.70327 3 5 cbr 210 ------- 1 1.0 5.0 127 131 - 0.70367 2 3 cbr 210 ------- 1 1.0 5.0 143 147 + 0.70375 1 2 cbr 210 ------- 1 1.0 5.0 161 167 - 0.70375 1 2 cbr 210 ------- 1 1.0 5.0 161 167 r 0.70461 1 2 cbr 210 ------- 1 1.0 5.0 147 151 + 0.70461 2 3 cbr 210 ------- 1 1.0 5.0 147 151 r 0.70623 3 5 cbr 210 ------- 1 1.0 5.0 112 116 r 0.70663 2 3 cbr 210 ------- 1 1.0 5.0 128 132 + 0.70663 3 5 cbr 210 ------- 1 1.0 5.0 128 132 - 0.70663 3 5 cbr 210 ------- 1 1.0 5.0 128 132 - 0.70703 2 3 cbr 210 ------- 1 1.0 5.0 144 148 + 0.7075 1 2 cbr 210 ------- 1 1.0 5.0 162 168 - 0.7075 1 2 cbr 210 ------- 1 1.0 5.0 162 168 r 0.70836 1 2 cbr 210 ------- 1 1.0 5.0 148 153 + 0.70836 2 3 cbr 210 ------- 1 1.0 5.0 148 153 r 0.70959 3 5 cbr 210 ------- 1 1.0 5.0 113 117 r 0.70999 2 3 cbr 210 ------- 1 1.0 5.0 129 133 + 0.70999 3 5 cbr 210 ------- 1 1.0 5.0 129 133 - 0.70999 3 5 cbr 210 ------- 1 1.0 5.0 129 133 - 0.71039 2 3 cbr 210 ------- 1 1.0 5.0 145 149 + 0.71125 1 2 cbr 210 ------- 1 1.0 5.0 163 169 - 0.71125 1 2 cbr 210 ------- 1 1.0 5.0 163 169 r 0.71211 1 2 cbr 210 ------- 1 1.0 5.0 149 154 + 0.71211 2 3 cbr 210 ------- 1 1.0 5.0 149 154 r 0.71295 3 5 cbr 210 ------- 1 1.0 5.0 114 118 r 0.71335 2 3 cbr 210 ------- 1 1.0 5.0 130 134 + 0.71335 3 5 cbr 210 ------- 1 1.0 5.0 130 134 - 0.71335 3 5 cbr 210 ------- 1 1.0 5.0 130 134 - 0.71375 2 3 cbr 210 ------- 1 1.0 5.0 146 150 + 0.715 1 2 cbr 210 ------- 1 1.0 5.0 164 170 - 0.715 1 2 cbr 210 ------- 1 1.0 5.0 164 170 r 0.71586 1 2 cbr 210 ------- 1 1.0 5.0 150 155 + 0.71586 2 3 cbr 210 ------- 1 1.0 5.0 150 155 r 0.71631 3 5 cbr 210 ------- 1 1.0 5.0 115 119 r 0.71671 2 3 cbr 210 ------- 1 1.0 5.0 131 135 + 0.71671 3 5 cbr 210 ------- 1 1.0 5.0 131 135 - 0.71671 3 5 cbr 210 ------- 1 1.0 5.0 131 135 - 0.71711 2 3 cbr 210 ------- 1 1.0 5.0 147 151 + 0.71875 1 2 cbr 210 ------- 1 1.0 5.0 165 171 - 0.71875 1 2 cbr 210 ------- 1 1.0 5.0 165 171 r 0.71961 1 2 cbr 210 ------- 1 1.0 5.0 151 156 + 0.71961 2 3 cbr 210 ------- 1 1.0 5.0 151 156 r 0.71967 3 5 cbr 210 ------- 1 1.0 5.0 116 120 r 0.72007 2 3 cbr 210 ------- 1 1.0 5.0 132 136 + 0.72007 3 5 cbr 210 ------- 1 1.0 5.0 132 136 - 0.72007 3 5 cbr 210 ------- 1 1.0 5.0 132 136 - 0.72047 2 3 cbr 210 ------- 1 1.0 5.0 148 153 + 0.7225 1 2 cbr 210 ------- 1 1.0 5.0 166 172 - 0.7225 1 2 cbr 210 ------- 1 1.0 5.0 166 172 r 0.72303 3 5 cbr 210 ------- 1 1.0 5.0 117 121 r 0.72336 1 2 cbr 210 ------- 1 1.0 5.0 152 157 + 0.72336 2 3 cbr 210 ------- 1 1.0 5.0 152 157 r 0.72343 2 3 cbr 210 ------- 1 1.0 5.0 133 137 + 0.72343 3 5 cbr 210 ------- 1 1.0 5.0 133 137 - 0.72343 3 5 cbr 210 ------- 1 1.0 5.0 133 137 - 0.72383 2 3 cbr 210 ------- 1 1.0 5.0 149 154 + 0.72625 1 2 cbr 210 ------- 1 1.0 5.0 167 173 - 0.72625 1 2 cbr 210 ------- 1 1.0 5.0 167 173 r 0.72639 3 5 cbr 210 ------- 1 1.0 5.0 118 122 r 0.72679 2 3 cbr 210 ------- 1 1.0 5.0 134 138 + 0.72679 3 5 cbr 210 ------- 1 1.0 5.0 134 138 - 0.72679 3 5 cbr 210 ------- 1 1.0 5.0 134 138 r 0.72711 1 2 cbr 210 ------- 1 1.0 5.0 153 158 + 0.72711 2 3 cbr 210 ------- 1 1.0 5.0 153 158 - 0.72719 2 3 cbr 210 ------- 1 1.0 5.0 150 155 r 0.72975 3 5 cbr 210 ------- 1 1.0 5.0 119 123 + 0.73 1 2 cbr 210 ------- 1 1.0 5.0 168 174 - 0.73 1 2 cbr 210 ------- 1 1.0 5.0 168 174 r 0.73015 2 3 cbr 210 ------- 1 1.0 5.0 135 139 + 0.73015 3 5 cbr 210 ------- 1 1.0 5.0 135 139 - 0.73015 3 5 cbr 210 ------- 1 1.0 5.0 135 139 - 0.73055 2 3 cbr 210 ------- 1 1.0 5.0 151 156 r 0.73086 1 2 cbr 210 ------- 1 1.0 5.0 154 159 + 0.73086 2 3 cbr 210 ------- 1 1.0 5.0 154 159 r 0.73255 4 3 ack 40 ------- 0 4.0 0.0 2 161 + 0.73255 3 2 ack 40 ------- 0 4.0 0.0 2 161 - 0.73255 3 2 ack 40 ------- 0 4.0 0.0 2 161 r 0.73311 3 5 cbr 210 ------- 1 1.0 5.0 120 124 r 0.73351 2 3 cbr 210 ------- 1 1.0 5.0 136 140 + 0.73351 3 5 cbr 210 ------- 1 1.0 5.0 136 140 - 0.73351 3 5 cbr 210 ------- 1 1.0 5.0 136 140 + 0.73375 1 2 cbr 210 ------- 1 1.0 5.0 169 175 - 0.73375 1 2 cbr 210 ------- 1 1.0 5.0 169 175 - 0.73391 2 3 cbr 210 ------- 1 1.0 5.0 152 157 r 0.73461 1 2 cbr 210 ------- 1 1.0 5.0 155 160 + 0.73461 2 3 cbr 210 ------- 1 1.0 5.0 155 160 r 0.73647 3 5 cbr 210 ------- 1 1.0 5.0 121 125 r 0.73687 2 3 cbr 210 ------- 1 1.0 5.0 137 141 + 0.73687 3 5 cbr 210 ------- 1 1.0 5.0 137 141 - 0.73687 3 5 cbr 210 ------- 1 1.0 5.0 137 141 - 0.73727 2 3 cbr 210 ------- 1 1.0 5.0 153 158 + 0.7375 1 2 cbr 210 ------- 1 1.0 5.0 170 176 - 0.7375 1 2 cbr 210 ------- 1 1.0 5.0 170 176 r 0.73836 1 2 cbr 210 ------- 1 1.0 5.0 156 162 + 0.73836 2 3 cbr 210 ------- 1 1.0 5.0 156 162 r 0.73983 3 5 cbr 210 ------- 1 1.0 5.0 122 126 r 0.74023 2 3 cbr 210 ------- 1 1.0 5.0 138 142 + 0.74023 3 5 cbr 210 ------- 1 1.0 5.0 138 142 - 0.74023 3 5 cbr 210 ------- 1 1.0 5.0 138 142 - 0.74063 2 3 cbr 210 ------- 1 1.0 5.0 154 159 + 0.74125 1 2 cbr 210 ------- 1 1.0 5.0 171 177 - 0.74125 1 2 cbr 210 ------- 1 1.0 5.0 171 177 r 0.74211 1 2 cbr 210 ------- 1 1.0 5.0 157 163 + 0.74211 2 3 cbr 210 ------- 1 1.0 5.0 157 163 r 0.74319 3 5 cbr 210 ------- 1 1.0 5.0 123 127 r 0.74359 2 3 cbr 210 ------- 1 1.0 5.0 139 143 + 0.74359 3 5 cbr 210 ------- 1 1.0 5.0 139 143 - 0.74359 3 5 cbr 210 ------- 1 1.0 5.0 139 143 - 0.74399 2 3 cbr 210 ------- 1 1.0 5.0 155 160 + 0.745 1 2 cbr 210 ------- 1 1.0 5.0 172 178 - 0.745 1 2 cbr 210 ------- 1 1.0 5.0 172 178 r 0.74586 1 2 cbr 210 ------- 1 1.0 5.0 158 164 + 0.74586 2 3 cbr 210 ------- 1 1.0 5.0 158 164 r 0.74655 3 5 cbr 210 ------- 1 1.0 5.0 124 128 r 0.74695 2 3 cbr 210 ------- 1 1.0 5.0 140 144 + 0.74695 3 5 cbr 210 ------- 1 1.0 5.0 140 144 - 0.74695 3 5 cbr 210 ------- 1 1.0 5.0 140 144 - 0.74735 2 3 cbr 210 ------- 1 1.0 5.0 156 162 + 0.74875 1 2 cbr 210 ------- 1 1.0 5.0 173 179 - 0.74875 1 2 cbr 210 ------- 1 1.0 5.0 173 179 r 0.74961 1 2 cbr 210 ------- 1 1.0 5.0 159 165 + 0.74961 2 3 cbr 210 ------- 1 1.0 5.0 159 165 r 0.74991 3 5 cbr 210 ------- 1 1.0 5.0 125 129 r 0.75031 2 3 cbr 210 ------- 1 1.0 5.0 141 145 + 0.75031 3 5 cbr 210 ------- 1 1.0 5.0 141 145 - 0.75031 3 5 cbr 210 ------- 1 1.0 5.0 141 145 - 0.75071 2 3 cbr 210 ------- 1 1.0 5.0 157 163 + 0.7525 1 2 cbr 210 ------- 1 1.0 5.0 174 180 - 0.7525 1 2 cbr 210 ------- 1 1.0 5.0 174 180 r 0.75327 3 5 cbr 210 ------- 1 1.0 5.0 126 130 r 0.75336 1 2 cbr 210 ------- 1 1.0 5.0 160 166 + 0.75336 2 3 cbr 210 ------- 1 1.0 5.0 160 166 r 0.75367 2 3 cbr 210 ------- 1 1.0 5.0 142 146 + 0.75367 3 5 cbr 210 ------- 1 1.0 5.0 142 146 - 0.75367 3 5 cbr 210 ------- 1 1.0 5.0 142 146 r 0.75375 3 2 ack 40 ------- 0 4.0 0.0 1 152 + 0.75375 2 0 ack 40 ------- 0 4.0 0.0 1 152 - 0.75375 2 0 ack 40 ------- 0 4.0 0.0 1 152 - 0.75407 2 3 cbr 210 ------- 1 1.0 5.0 158 164 + 0.75625 1 2 cbr 210 ------- 1 1.0 5.0 175 181 - 0.75625 1 2 cbr 210 ------- 1 1.0 5.0 175 181 r 0.75663 3 5 cbr 210 ------- 1 1.0 5.0 127 131 r 0.75703 2 3 cbr 210 ------- 1 1.0 5.0 143 147 + 0.75703 3 5 cbr 210 ------- 1 1.0 5.0 143 147 - 0.75703 3 5 cbr 210 ------- 1 1.0 5.0 143 147 r 0.75711 1 2 cbr 210 ------- 1 1.0 5.0 161 167 + 0.75711 2 3 cbr 210 ------- 1 1.0 5.0 161 167 - 0.75743 2 3 cbr 210 ------- 1 1.0 5.0 159 165 r 0.75999 3 5 cbr 210 ------- 1 1.0 5.0 128 132 v 0.76000000000000001 eval {set sim_annotation {3 Ack_4s : 3 acks are coming}} + 0.76 1 2 cbr 210 ------- 1 1.0 5.0 176 182 - 0.76 1 2 cbr 210 ------- 1 1.0 5.0 176 182 r 0.76039 2 3 cbr 210 ------- 1 1.0 5.0 144 148 + 0.76039 3 5 cbr 210 ------- 1 1.0 5.0 144 148 - 0.76039 3 5 cbr 210 ------- 1 1.0 5.0 144 148 - 0.76079 2 3 cbr 210 ------- 1 1.0 5.0 160 166 r 0.76086 1 2 cbr 210 ------- 1 1.0 5.0 162 168 + 0.76086 2 3 cbr 210 ------- 1 1.0 5.0 162 168 r 0.76335 3 5 cbr 210 ------- 1 1.0 5.0 129 133 r 0.76375 2 3 cbr 210 ------- 1 1.0 5.0 145 149 + 0.76375 3 5 cbr 210 ------- 1 1.0 5.0 145 149 - 0.76375 3 5 cbr 210 ------- 1 1.0 5.0 145 149 + 0.76375 1 2 cbr 210 ------- 1 1.0 5.0 177 183 - 0.76375 1 2 cbr 210 ------- 1 1.0 5.0 177 183 - 0.76415 2 3 cbr 210 ------- 1 1.0 5.0 161 167 r 0.76461 1 2 cbr 210 ------- 1 1.0 5.0 163 169 + 0.76461 2 3 cbr 210 ------- 1 1.0 5.0 163 169 r 0.76671 3 5 cbr 210 ------- 1 1.0 5.0 130 134 r 0.76711 2 3 cbr 210 ------- 1 1.0 5.0 146 150 + 0.76711 3 5 cbr 210 ------- 1 1.0 5.0 146 150 - 0.76711 3 5 cbr 210 ------- 1 1.0 5.0 146 150 + 0.7675 1 2 cbr 210 ------- 1 1.0 5.0 178 184 - 0.7675 1 2 cbr 210 ------- 1 1.0 5.0 178 184 - 0.76751 2 3 cbr 210 ------- 1 1.0 5.0 162 168 r 0.76836 1 2 cbr 210 ------- 1 1.0 5.0 164 170 + 0.76836 2 3 cbr 210 ------- 1 1.0 5.0 164 170 r 0.77007 3 5 cbr 210 ------- 1 1.0 5.0 131 135 r 0.77047 2 3 cbr 210 ------- 1 1.0 5.0 147 151 + 0.77047 3 5 cbr 210 ------- 1 1.0 5.0 147 151 - 0.77047 3 5 cbr 210 ------- 1 1.0 5.0 147 151 - 0.77087 2 3 cbr 210 ------- 1 1.0 5.0 163 169 + 0.77125 1 2 cbr 210 ------- 1 1.0 5.0 179 185 - 0.77125 1 2 cbr 210 ------- 1 1.0 5.0 179 185 r 0.77211 1 2 cbr 210 ------- 1 1.0 5.0 165 171 + 0.77211 2 3 cbr 210 ------- 1 1.0 5.0 165 171 r 0.77343 3 5 cbr 210 ------- 1 1.0 5.0 132 136 r 0.77383 2 3 cbr 210 ------- 1 1.0 5.0 148 153 + 0.77383 3 5 cbr 210 ------- 1 1.0 5.0 148 153 - 0.77383 3 5 cbr 210 ------- 1 1.0 5.0 148 153 - 0.77423 2 3 cbr 210 ------- 1 1.0 5.0 164 170 + 0.775 1 2 cbr 210 ------- 1 1.0 5.0 180 186 - 0.775 1 2 cbr 210 ------- 1 1.0 5.0 180 186 r 0.77586 1 2 cbr 210 ------- 1 1.0 5.0 166 172 + 0.77586 2 3 cbr 210 ------- 1 1.0 5.0 166 172 r 0.77679 3 5 cbr 210 ------- 1 1.0 5.0 133 137 r 0.77719 2 3 cbr 210 ------- 1 1.0 5.0 149 154 + 0.77719 3 5 cbr 210 ------- 1 1.0 5.0 149 154 - 0.77719 3 5 cbr 210 ------- 1 1.0 5.0 149 154 - 0.77759 2 3 cbr 210 ------- 1 1.0 5.0 165 171 + 0.77875 1 2 cbr 210 ------- 1 1.0 5.0 181 187 - 0.77875 1 2 cbr 210 ------- 1 1.0 5.0 181 187 r 0.77961 1 2 cbr 210 ------- 1 1.0 5.0 167 173 + 0.77961 2 3 cbr 210 ------- 1 1.0 5.0 167 173 r 0.78015 3 5 cbr 210 ------- 1 1.0 5.0 134 138 r 0.78055 2 3 cbr 210 ------- 1 1.0 5.0 150 155 + 0.78055 3 5 cbr 210 ------- 1 1.0 5.0 150 155 - 0.78055 3 5 cbr 210 ------- 1 1.0 5.0 150 155 - 0.78095 2 3 cbr 210 ------- 1 1.0 5.0 166 172 + 0.7825 1 2 cbr 210 ------- 1 1.0 5.0 182 188 - 0.7825 1 2 cbr 210 ------- 1 1.0 5.0 182 188 r 0.78319 3 2 ack 40 ------- 0 4.0 0.0 2 161 + 0.78319 2 0 ack 40 ------- 0 4.0 0.0 2 161 - 0.78319 2 0 ack 40 ------- 0 4.0 0.0 2 161 r 0.78336 1 2 cbr 210 ------- 1 1.0 5.0 168 174 + 0.78336 2 3 cbr 210 ------- 1 1.0 5.0 168 174 r 0.78351 3 5 cbr 210 ------- 1 1.0 5.0 135 139 r 0.78391 2 3 cbr 210 ------- 1 1.0 5.0 151 156 + 0.78391 3 5 cbr 210 ------- 1 1.0 5.0 151 156 - 0.78391 3 5 cbr 210 ------- 1 1.0 5.0 151 156 - 0.78431 2 3 cbr 210 ------- 1 1.0 5.0 167 173 + 0.78625 1 2 cbr 210 ------- 1 1.0 5.0 183 189 - 0.78625 1 2 cbr 210 ------- 1 1.0 5.0 183 189 r 0.78687 3 5 cbr 210 ------- 1 1.0 5.0 136 140 r 0.78711 1 2 cbr 210 ------- 1 1.0 5.0 169 175 + 0.78711 2 3 cbr 210 ------- 1 1.0 5.0 169 175 r 0.78727 2 3 cbr 210 ------- 1 1.0 5.0 152 157 + 0.78727 3 5 cbr 210 ------- 1 1.0 5.0 152 157 - 0.78727 3 5 cbr 210 ------- 1 1.0 5.0 152 157 - 0.78767 2 3 cbr 210 ------- 1 1.0 5.0 168 174 + 0.79 1 2 cbr 210 ------- 1 1.0 5.0 184 190 - 0.79 1 2 cbr 210 ------- 1 1.0 5.0 184 190 r 0.79023 3 5 cbr 210 ------- 1 1.0 5.0 137 141 r 0.79063 2 3 cbr 210 ------- 1 1.0 5.0 153 158 + 0.79063 3 5 cbr 210 ------- 1 1.0 5.0 153 158 - 0.79063 3 5 cbr 210 ------- 1 1.0 5.0 153 158 r 0.79086 1 2 cbr 210 ------- 1 1.0 5.0 170 176 + 0.79086 2 3 cbr 210 ------- 1 1.0 5.0 170 176 - 0.79103 2 3 cbr 210 ------- 1 1.0 5.0 169 175 r 0.79359 3 5 cbr 210 ------- 1 1.0 5.0 138 142 + 0.79375 1 2 cbr 210 ------- 1 1.0 5.0 185 191 - 0.79375 1 2 cbr 210 ------- 1 1.0 5.0 185 191 r 0.79399 2 3 cbr 210 ------- 1 1.0 5.0 154 159 + 0.79399 3 5 cbr 210 ------- 1 1.0 5.0 154 159 - 0.79399 3 5 cbr 210 ------- 1 1.0 5.0 154 159 - 0.79439 2 3 cbr 210 ------- 1 1.0 5.0 170 176 r 0.79461 1 2 cbr 210 ------- 1 1.0 5.0 171 177 + 0.79461 2 3 cbr 210 ------- 1 1.0 5.0 171 177 r 0.79695 3 5 cbr 210 ------- 1 1.0 5.0 139 143 r 0.79735 2 3 cbr 210 ------- 1 1.0 5.0 155 160 + 0.79735 3 5 cbr 210 ------- 1 1.0 5.0 155 160 - 0.79735 3 5 cbr 210 ------- 1 1.0 5.0 155 160 + 0.7975 1 2 cbr 210 ------- 1 1.0 5.0 186 192 - 0.7975 1 2 cbr 210 ------- 1 1.0 5.0 186 192 - 0.79775 2 3 cbr 210 ------- 1 1.0 5.0 171 177 r 0.79836 1 2 cbr 210 ------- 1 1.0 5.0 172 178 + 0.79836 2 3 cbr 210 ------- 1 1.0 5.0 172 178 r 0.80031 3 5 cbr 210 ------- 1 1.0 5.0 140 144 r 0.80071 2 3 cbr 210 ------- 1 1.0 5.0 156 162 + 0.80071 3 5 cbr 210 ------- 1 1.0 5.0 156 162 - 0.80071 3 5 cbr 210 ------- 1 1.0 5.0 156 162 - 0.80111 2 3 cbr 210 ------- 1 1.0 5.0 172 178 + 0.80125 1 2 cbr 210 ------- 1 1.0 5.0 187 193 - 0.80125 1 2 cbr 210 ------- 1 1.0 5.0 187 193 r 0.80211 1 2 cbr 210 ------- 1 1.0 5.0 173 179 + 0.80211 2 3 cbr 210 ------- 1 1.0 5.0 173 179 r 0.80367 3 5 cbr 210 ------- 1 1.0 5.0 141 145 r 0.80407 2 3 cbr 210 ------- 1 1.0 5.0 157 163 + 0.80407 3 5 cbr 210 ------- 1 1.0 5.0 157 163 - 0.80407 3 5 cbr 210 ------- 1 1.0 5.0 157 163 r 0.80439 2 0 ack 40 ------- 0 4.0 0.0 1 152 + 0.80439 0 2 tcp 1000 ------- 0 0.0 4.0 3 194 - 0.80439 0 2 tcp 1000 ------- 0 0.0 4.0 3 194 + 0.80439 0 2 tcp 1000 ------- 0 0.0 4.0 4 195 - 0.80447 2 3 cbr 210 ------- 1 1.0 5.0 173 179 + 0.805 1 2 cbr 210 ------- 1 1.0 5.0 188 196 - 0.805 1 2 cbr 210 ------- 1 1.0 5.0 188 196 r 0.80586 1 2 cbr 210 ------- 1 1.0 5.0 174 180 + 0.80586 2 3 cbr 210 ------- 1 1.0 5.0 174 180 r 0.80703 3 5 cbr 210 ------- 1 1.0 5.0 142 146 r 0.80743 2 3 cbr 210 ------- 1 1.0 5.0 158 164 + 0.80743 3 5 cbr 210 ------- 1 1.0 5.0 158 164 - 0.80743 3 5 cbr 210 ------- 1 1.0 5.0 158 164 - 0.80783 2 3 cbr 210 ------- 1 1.0 5.0 174 180 + 0.80875 1 2 cbr 210 ------- 1 1.0 5.0 189 197 - 0.80875 1 2 cbr 210 ------- 1 1.0 5.0 189 197 r 0.80961 1 2 cbr 210 ------- 1 1.0 5.0 175 181 + 0.80961 2 3 cbr 210 ------- 1 1.0 5.0 175 181 r 0.81039 3 5 cbr 210 ------- 1 1.0 5.0 143 147 r 0.81079 2 3 cbr 210 ------- 1 1.0 5.0 159 165 + 0.81079 3 5 cbr 210 ------- 1 1.0 5.0 159 165 - 0.81079 3 5 cbr 210 ------- 1 1.0 5.0 159 165 - 0.81119 2 3 cbr 210 ------- 1 1.0 5.0 175 181 + 0.8125 1 2 cbr 210 ------- 1 1.0 5.0 190 198 - 0.8125 1 2 cbr 210 ------- 1 1.0 5.0 190 198 r 0.81336 1 2 cbr 210 ------- 1 1.0 5.0 176 182 + 0.81336 2 3 cbr 210 ------- 1 1.0 5.0 176 182 r 0.81375 3 5 cbr 210 ------- 1 1.0 5.0 144 148 r 0.81415 2 3 cbr 210 ------- 1 1.0 5.0 160 166 + 0.81415 3 5 cbr 210 ------- 1 1.0 5.0 160 166 - 0.81415 3 5 cbr 210 ------- 1 1.0 5.0 160 166 - 0.81455 2 3 cbr 210 ------- 1 1.0 5.0 176 182 + 0.81625 1 2 cbr 210 ------- 1 1.0 5.0 191 199 - 0.81625 1 2 cbr 210 ------- 1 1.0 5.0 191 199 r 0.81711 3 5 cbr 210 ------- 1 1.0 5.0 145 149 r 0.81711 1 2 cbr 210 ------- 1 1.0 5.0 177 183 + 0.81711 2 3 cbr 210 ------- 1 1.0 5.0 177 183 r 0.81751 2 3 cbr 210 ------- 1 1.0 5.0 161 167 + 0.81751 3 5 cbr 210 ------- 1 1.0 5.0 161 167 - 0.81751 3 5 cbr 210 ------- 1 1.0 5.0 161 167 - 0.81791 2 3 cbr 210 ------- 1 1.0 5.0 177 183 + 0.82 1 2 cbr 210 ------- 1 1.0 5.0 192 200 - 0.82 1 2 cbr 210 ------- 1 1.0 5.0 192 200 - 0.82039 0 2 tcp 1000 ------- 0 0.0 4.0 4 195 r 0.82047 3 5 cbr 210 ------- 1 1.0 5.0 146 150 r 0.82086 1 2 cbr 210 ------- 1 1.0 5.0 178 184 + 0.82086 2 3 cbr 210 ------- 1 1.0 5.0 178 184 r 0.82087 2 3 cbr 210 ------- 1 1.0 5.0 162 168 + 0.82087 3 5 cbr 210 ------- 1 1.0 5.0 162 168 - 0.82087 3 5 cbr 210 ------- 1 1.0 5.0 162 168 - 0.82127 2 3 cbr 210 ------- 1 1.0 5.0 178 184 + 0.82375 1 2 cbr 210 ------- 1 1.0 5.0 193 201 - 0.82375 1 2 cbr 210 ------- 1 1.0 5.0 193 201 r 0.82383 3 5 cbr 210 ------- 1 1.0 5.0 147 151 r 0.82423 2 3 cbr 210 ------- 1 1.0 5.0 163 169 + 0.82423 3 5 cbr 210 ------- 1 1.0 5.0 163 169 - 0.82423 3 5 cbr 210 ------- 1 1.0 5.0 163 169 r 0.82461 1 2 cbr 210 ------- 1 1.0 5.0 179 185 + 0.82461 2 3 cbr 210 ------- 1 1.0 5.0 179 185 - 0.82463 2 3 cbr 210 ------- 1 1.0 5.0 179 185 r 0.82719 3 5 cbr 210 ------- 1 1.0 5.0 148 153 + 0.8275 1 2 cbr 210 ------- 1 1.0 5.0 194 202 - 0.8275 1 2 cbr 210 ------- 1 1.0 5.0 194 202 r 0.82759 2 3 cbr 210 ------- 1 1.0 5.0 164 170 + 0.82759 3 5 cbr 210 ------- 1 1.0 5.0 164 170 - 0.82759 3 5 cbr 210 ------- 1 1.0 5.0 164 170 r 0.82836 1 2 cbr 210 ------- 1 1.0 5.0 180 186 + 0.82836 2 3 cbr 210 ------- 1 1.0 5.0 180 186 - 0.82836 2 3 cbr 210 ------- 1 1.0 5.0 180 186 r 0.83055 3 5 cbr 210 ------- 1 1.0 5.0 149 154 r 0.83095 2 3 cbr 210 ------- 1 1.0 5.0 165 171 + 0.83095 3 5 cbr 210 ------- 1 1.0 5.0 165 171 - 0.83095 3 5 cbr 210 ------- 1 1.0 5.0 165 171 + 0.83125 1 2 cbr 210 ------- 1 1.0 5.0 195 203 - 0.83125 1 2 cbr 210 ------- 1 1.0 5.0 195 203 r 0.83211 1 2 cbr 210 ------- 1 1.0 5.0 181 187 + 0.83211 2 3 cbr 210 ------- 1 1.0 5.0 181 187 - 0.83211 2 3 cbr 210 ------- 1 1.0 5.0 181 187 r 0.83383 2 0 ack 40 ------- 0 4.0 0.0 2 161 + 0.83383 0 2 tcp 1000 ------- 0 0.0 4.0 5 204 + 0.83383 0 2 tcp 1000 ------- 0 0.0 4.0 6 205 r 0.83391 3 5 cbr 210 ------- 1 1.0 5.0 150 155 r 0.83431 2 3 cbr 210 ------- 1 1.0 5.0 166 172 + 0.83431 3 5 cbr 210 ------- 1 1.0 5.0 166 172 - 0.83431 3 5 cbr 210 ------- 1 1.0 5.0 166 172 + 0.835 1 2 cbr 210 ------- 1 1.0 5.0 196 206 - 0.835 1 2 cbr 210 ------- 1 1.0 5.0 196 206 r 0.83586 1 2 cbr 210 ------- 1 1.0 5.0 182 188 + 0.83586 2 3 cbr 210 ------- 1 1.0 5.0 182 188 - 0.83586 2 3 cbr 210 ------- 1 1.0 5.0 182 188 - 0.83639 0 2 tcp 1000 ------- 0 0.0 4.0 5 204 r 0.83727 3 5 cbr 210 ------- 1 1.0 5.0 151 156 r 0.83767 2 3 cbr 210 ------- 1 1.0 5.0 167 173 + 0.83767 3 5 cbr 210 ------- 1 1.0 5.0 167 173 - 0.83767 3 5 cbr 210 ------- 1 1.0 5.0 167 173 + 0.83875 1 2 cbr 210 ------- 1 1.0 5.0 197 207 - 0.83875 1 2 cbr 210 ------- 1 1.0 5.0 197 207 r 0.83961 1 2 cbr 210 ------- 1 1.0 5.0 183 189 + 0.83961 2 3 cbr 210 ------- 1 1.0 5.0 183 189 - 0.83961 2 3 cbr 210 ------- 1 1.0 5.0 183 189 r 0.84063 3 5 cbr 210 ------- 1 1.0 5.0 152 157 r 0.84103 2 3 cbr 210 ------- 1 1.0 5.0 168 174 + 0.84103 3 5 cbr 210 ------- 1 1.0 5.0 168 174 - 0.84103 3 5 cbr 210 ------- 1 1.0 5.0 168 174 + 0.8425 1 2 cbr 210 ------- 1 1.0 5.0 198 208 - 0.8425 1 2 cbr 210 ------- 1 1.0 5.0 198 208 r 0.84336 1 2 cbr 210 ------- 1 1.0 5.0 184 190 + 0.84336 2 3 cbr 210 ------- 1 1.0 5.0 184 190 - 0.84336 2 3 cbr 210 ------- 1 1.0 5.0 184 190 r 0.84399 3 5 cbr 210 ------- 1 1.0 5.0 153 158 r 0.84439 2 3 cbr 210 ------- 1 1.0 5.0 169 175 + 0.84439 3 5 cbr 210 ------- 1 1.0 5.0 169 175 - 0.84439 3 5 cbr 210 ------- 1 1.0 5.0 169 175 + 0.84625 1 2 cbr 210 ------- 1 1.0 5.0 199 209 - 0.84625 1 2 cbr 210 ------- 1 1.0 5.0 199 209 r 0.84711 1 2 cbr 210 ------- 1 1.0 5.0 185 191 + 0.84711 2 3 cbr 210 ------- 1 1.0 5.0 185 191 - 0.84711 2 3 cbr 210 ------- 1 1.0 5.0 185 191 r 0.84735 3 5 cbr 210 ------- 1 1.0 5.0 154 159 r 0.84775 2 3 cbr 210 ------- 1 1.0 5.0 170 176 + 0.84775 3 5 cbr 210 ------- 1 1.0 5.0 170 176 - 0.84775 3 5 cbr 210 ------- 1 1.0 5.0 170 176 + 0.85 1 2 cbr 210 ------- 1 1.0 5.0 200 210 - 0.85 1 2 cbr 210 ------- 1 1.0 5.0 200 210 r 0.85071 3 5 cbr 210 ------- 1 1.0 5.0 155 160 r 0.85086 1 2 cbr 210 ------- 1 1.0 5.0 186 192 + 0.85086 2 3 cbr 210 ------- 1 1.0 5.0 186 192 - 0.85086 2 3 cbr 210 ------- 1 1.0 5.0 186 192 r 0.85111 2 3 cbr 210 ------- 1 1.0 5.0 171 177 + 0.85111 3 5 cbr 210 ------- 1 1.0 5.0 171 177 - 0.85111 3 5 cbr 210 ------- 1 1.0 5.0 171 177 - 0.85239 0 2 tcp 1000 ------- 0 0.0 4.0 6 205 + 0.85375 1 2 cbr 210 ------- 1 1.0 5.0 201 211 - 0.85375 1 2 cbr 210 ------- 1 1.0 5.0 201 211 r 0.85407 3 5 cbr 210 ------- 1 1.0 5.0 156 162 r 0.85447 2 3 cbr 210 ------- 1 1.0 5.0 172 178 + 0.85447 3 5 cbr 210 ------- 1 1.0 5.0 172 178 - 0.85447 3 5 cbr 210 ------- 1 1.0 5.0 172 178 r 0.85461 1 2 cbr 210 ------- 1 1.0 5.0 187 193 + 0.85461 2 3 cbr 210 ------- 1 1.0 5.0 187 193 - 0.85461 2 3 cbr 210 ------- 1 1.0 5.0 187 193 r 0.85743 3 5 cbr 210 ------- 1 1.0 5.0 157 163 + 0.8575 1 2 cbr 210 ------- 1 1.0 5.0 202 212 - 0.8575 1 2 cbr 210 ------- 1 1.0 5.0 202 212 r 0.85783 2 3 cbr 210 ------- 1 1.0 5.0 173 179 + 0.85783 3 5 cbr 210 ------- 1 1.0 5.0 173 179 - 0.85783 3 5 cbr 210 ------- 1 1.0 5.0 173 179 r 0.85836 1 2 cbr 210 ------- 1 1.0 5.0 188 196 + 0.85836 2 3 cbr 210 ------- 1 1.0 5.0 188 196 - 0.85836 2 3 cbr 210 ------- 1 1.0 5.0 188 196 r 0.86079 3 5 cbr 210 ------- 1 1.0 5.0 158 164 r 0.86119 2 3 cbr 210 ------- 1 1.0 5.0 174 180 + 0.86119 3 5 cbr 210 ------- 1 1.0 5.0 174 180 - 0.86119 3 5 cbr 210 ------- 1 1.0 5.0 174 180 + 0.86125 1 2 cbr 210 ------- 1 1.0 5.0 203 213 - 0.86125 1 2 cbr 210 ------- 1 1.0 5.0 203 213 r 0.86211 1 2 cbr 210 ------- 1 1.0 5.0 189 197 + 0.86211 2 3 cbr 210 ------- 1 1.0 5.0 189 197 - 0.86211 2 3 cbr 210 ------- 1 1.0 5.0 189 197 r 0.86415 3 5 cbr 210 ------- 1 1.0 5.0 159 165 r 0.86455 2 3 cbr 210 ------- 1 1.0 5.0 175 181 + 0.86455 3 5 cbr 210 ------- 1 1.0 5.0 175 181 - 0.86455 3 5 cbr 210 ------- 1 1.0 5.0 175 181 + 0.865 1 2 cbr 210 ------- 1 1.0 5.0 204 214 - 0.865 1 2 cbr 210 ------- 1 1.0 5.0 204 214 r 0.86586 1 2 cbr 210 ------- 1 1.0 5.0 190 198 + 0.86586 2 3 cbr 210 ------- 1 1.0 5.0 190 198 - 0.86586 2 3 cbr 210 ------- 1 1.0 5.0 190 198 r 0.86751 3 5 cbr 210 ------- 1 1.0 5.0 160 166 r 0.86791 2 3 cbr 210 ------- 1 1.0 5.0 176 182 + 0.86791 3 5 cbr 210 ------- 1 1.0 5.0 176 182 - 0.86791 3 5 cbr 210 ------- 1 1.0 5.0 176 182 + 0.86875 1 2 cbr 210 ------- 1 1.0 5.0 205 215 - 0.86875 1 2 cbr 210 ------- 1 1.0 5.0 205 215 r 0.86961 1 2 cbr 210 ------- 1 1.0 5.0 191 199 + 0.86961 2 3 cbr 210 ------- 1 1.0 5.0 191 199 - 0.86961 2 3 cbr 210 ------- 1 1.0 5.0 191 199 v 0.87 eval {set sim_annotation {TIMEOUT for Packet_5}} r 0.87039 0 2 tcp 1000 ------- 0 0.0 4.0 3 194 + 0.87039 2 3 tcp 1000 ------- 0 0.0 4.0 3 194 r 0.87087 3 5 cbr 210 ------- 1 1.0 5.0 161 167 r 0.87127 2 3 cbr 210 ------- 1 1.0 5.0 177 183 + 0.87127 3 5 cbr 210 ------- 1 1.0 5.0 177 183 - 0.87127 3 5 cbr 210 ------- 1 1.0 5.0 177 183 + 0.8725 1 2 cbr 210 ------- 1 1.0 5.0 206 216 - 0.8725 1 2 cbr 210 ------- 1 1.0 5.0 206 216 - 0.87297 2 3 tcp 1000 ------- 0 0.0 4.0 3 194 r 0.87336 1 2 cbr 210 ------- 1 1.0 5.0 192 200 + 0.87336 2 3 cbr 210 ------- 1 1.0 5.0 192 200 r 0.87423 3 5 cbr 210 ------- 1 1.0 5.0 162 168 r 0.87463 2 3 cbr 210 ------- 1 1.0 5.0 178 184 + 0.87463 3 5 cbr 210 ------- 1 1.0 5.0 178 184 - 0.87463 3 5 cbr 210 ------- 1 1.0 5.0 178 184 + 0.87625 1 2 cbr 210 ------- 1 1.0 5.0 207 217 - 0.87625 1 2 cbr 210 ------- 1 1.0 5.0 207 217 r 0.87711 1 2 cbr 210 ------- 1 1.0 5.0 193 201 + 0.87711 2 3 cbr 210 ------- 1 1.0 5.0 193 201 r 0.87759 3 5 cbr 210 ------- 1 1.0 5.0 163 169 r 0.87799 2 3 cbr 210 ------- 1 1.0 5.0 179 185 + 0.87799 3 5 cbr 210 ------- 1 1.0 5.0 179 185 - 0.87799 3 5 cbr 210 ------- 1 1.0 5.0 179 185 + 0.88 1 2 cbr 210 ------- 1 1.0 5.0 208 218 - 0.88 1 2 cbr 210 ------- 1 1.0 5.0 208 218 r 0.88086 1 2 cbr 210 ------- 1 1.0 5.0 194 202 + 0.88086 2 3 cbr 210 ------- 1 1.0 5.0 194 202 r 0.88095 3 5 cbr 210 ------- 1 1.0 5.0 164 170 r 0.88172 2 3 cbr 210 ------- 1 1.0 5.0 180 186 + 0.88172 3 5 cbr 210 ------- 1 1.0 5.0 180 186 - 0.88172 3 5 cbr 210 ------- 1 1.0 5.0 180 186 + 0.88375 1 2 cbr 210 ------- 1 1.0 5.0 209 219 - 0.88375 1 2 cbr 210 ------- 1 1.0 5.0 209 219 r 0.88431 3 5 cbr 210 ------- 1 1.0 5.0 165 171 r 0.88461 1 2 cbr 210 ------- 1 1.0 5.0 195 203 + 0.88461 2 3 cbr 210 ------- 1 1.0 5.0 195 203 r 0.88547 2 3 cbr 210 ------- 1 1.0 5.0 181 187 + 0.88547 3 5 cbr 210 ------- 1 1.0 5.0 181 187 - 0.88547 3 5 cbr 210 ------- 1 1.0 5.0 181 187 r 0.88639 0 2 tcp 1000 ------- 0 0.0 4.0 4 195 + 0.88639 2 3 tcp 1000 ------- 0 0.0 4.0 4 195 + 0.8875 1 2 cbr 210 ------- 1 1.0 5.0 210 220 - 0.8875 1 2 cbr 210 ------- 1 1.0 5.0 210 220 r 0.88767 3 5 cbr 210 ------- 1 1.0 5.0 166 172 r 0.88836 1 2 cbr 210 ------- 1 1.0 5.0 196 206 + 0.88836 2 3 cbr 210 ------- 1 1.0 5.0 196 206 - 0.88897 2 3 cbr 210 ------- 1 1.0 5.0 192 200 r 0.88922 2 3 cbr 210 ------- 1 1.0 5.0 182 188 + 0.88922 3 5 cbr 210 ------- 1 1.0 5.0 182 188 - 0.88922 3 5 cbr 210 ------- 1 1.0 5.0 182 188 v 0.89000000000000001 eval {set sim_annotation {Send Packet_5}} r 0.89103 3 5 cbr 210 ------- 1 1.0 5.0 167 173 + 0.89125 1 2 cbr 210 ------- 1 1.0 5.0 211 221 - 0.89125 1 2 cbr 210 ------- 1 1.0 5.0 211 221 r 0.89211 1 2 cbr 210 ------- 1 1.0 5.0 197 207 + 0.89211 2 3 cbr 210 ------- 1 1.0 5.0 197 207 - 0.89233 2 3 cbr 210 ------- 1 1.0 5.0 193 201 r 0.89297 2 3 cbr 210 ------- 1 1.0 5.0 183 189 + 0.89297 3 5 cbr 210 ------- 1 1.0 5.0 183 189 - 0.89297 3 5 cbr 210 ------- 1 1.0 5.0 183 189 r 0.89439 3 5 cbr 210 ------- 1 1.0 5.0 168 174 + 0.895 1 2 cbr 210 ------- 1 1.0 5.0 212 222 - 0.895 1 2 cbr 210 ------- 1 1.0 5.0 212 222 - 0.89569 2 3 cbr 210 ------- 1 1.0 5.0 194 202 r 0.89586 1 2 cbr 210 ------- 1 1.0 5.0 198 208 + 0.89586 2 3 cbr 210 ------- 1 1.0 5.0 198 208 r 0.89672 2 3 cbr 210 ------- 1 1.0 5.0 184 190 + 0.89672 3 5 cbr 210 ------- 1 1.0 5.0 184 190 - 0.89672 3 5 cbr 210 ------- 1 1.0 5.0 184 190 r 0.89775 3 5 cbr 210 ------- 1 1.0 5.0 169 175 + 0.89875 1 2 cbr 210 ------- 1 1.0 5.0 213 223 - 0.89875 1 2 cbr 210 ------- 1 1.0 5.0 213 223 - 0.89905 2 3 cbr 210 ------- 1 1.0 5.0 195 203 r 0.89961 1 2 cbr 210 ------- 1 1.0 5.0 199 209 + 0.89961 2 3 cbr 210 ------- 1 1.0 5.0 199 209 r 0.90047 2 3 cbr 210 ------- 1 1.0 5.0 185 191 + 0.90047 3 5 cbr 210 ------- 1 1.0 5.0 185 191 - 0.90047 3 5 cbr 210 ------- 1 1.0 5.0 185 191 r 0.90111 3 5 cbr 210 ------- 1 1.0 5.0 170 176 r 0.90239 0 2 tcp 1000 ------- 0 0.0 4.0 5 204 + 0.90239 2 3 tcp 1000 ------- 0 0.0 4.0 5 204 - 0.90241 2 3 tcp 1000 ------- 0 0.0 4.0 4 195 + 0.9025 1 2 cbr 210 ------- 1 1.0 5.0 214 224 - 0.9025 1 2 cbr 210 ------- 1 1.0 5.0 214 224 r 0.90336 1 2 cbr 210 ------- 1 1.0 5.0 200 210 + 0.90336 2 3 cbr 210 ------- 1 1.0 5.0 200 210 r 0.90422 2 3 cbr 210 ------- 1 1.0 5.0 186 192 + 0.90422 3 5 cbr 210 ------- 1 1.0 5.0 186 192 - 0.90422 3 5 cbr 210 ------- 1 1.0 5.0 186 192 r 0.90447 3 5 cbr 210 ------- 1 1.0 5.0 171 177 + 0.90625 1 2 cbr 210 ------- 1 1.0 5.0 215 225 - 0.90625 1 2 cbr 210 ------- 1 1.0 5.0 215 225 r 0.90711 1 2 cbr 210 ------- 1 1.0 5.0 201 211 + 0.90711 2 3 cbr 210 ------- 1 1.0 5.0 201 211 r 0.90783 3 5 cbr 210 ------- 1 1.0 5.0 172 178 r 0.90797 2 3 cbr 210 ------- 1 1.0 5.0 187 193 + 0.90797 3 5 cbr 210 ------- 1 1.0 5.0 187 193 - 0.90797 3 5 cbr 210 ------- 1 1.0 5.0 187 193 + 0.91 1 2 cbr 210 ------- 1 1.0 5.0 216 226 - 0.91 1 2 cbr 210 ------- 1 1.0 5.0 216 226 r 0.91086 1 2 cbr 210 ------- 1 1.0 5.0 202 212 + 0.91086 2 3 cbr 210 ------- 1 1.0 5.0 202 212 r 0.91119 3 5 cbr 210 ------- 1 1.0 5.0 173 179 r 0.91172 2 3 cbr 210 ------- 1 1.0 5.0 188 196 + 0.91172 3 5 cbr 210 ------- 1 1.0 5.0 188 196 - 0.91172 3 5 cbr 210 ------- 1 1.0 5.0 188 196 + 0.91375 1 2 cbr 210 ------- 1 1.0 5.0 217 227 - 0.91375 1 2 cbr 210 ------- 1 1.0 5.0 217 227 r 0.91455 3 5 cbr 210 ------- 1 1.0 5.0 174 180 r 0.91461 1 2 cbr 210 ------- 1 1.0 5.0 203 213 + 0.91461 2 3 cbr 210 ------- 1 1.0 5.0 203 213 r 0.91547 2 3 cbr 210 ------- 1 1.0 5.0 189 197 + 0.91547 3 5 cbr 210 ------- 1 1.0 5.0 189 197 - 0.91547 3 5 cbr 210 ------- 1 1.0 5.0 189 197 + 0.9175 1 2 cbr 210 ------- 1 1.0 5.0 218 228 - 0.9175 1 2 cbr 210 ------- 1 1.0 5.0 218 228 r 0.91791 3 5 cbr 210 ------- 1 1.0 5.0 175 181 r 0.91836 1 2 cbr 210 ------- 1 1.0 5.0 204 214 + 0.91836 2 3 cbr 210 ------- 1 1.0 5.0 204 214 d 0.91836 2 3 cbr 210 ------- 1 1.0 5.0 204 214 r 0.91839 0 2 tcp 1000 ------- 0 0.0 4.0 6 205 + 0.91839 2 3 tcp 1000 ------- 0 0.0 4.0 6 205 d 0.91839 2 3 tcp 1000 ------- 0 0.0 4.0 6 205 - 0.91841 2 3 cbr 210 ------- 1 1.0 5.0 196 206 r 0.91922 2 3 cbr 210 ------- 1 1.0 5.0 190 198 + 0.91922 3 5 cbr 210 ------- 1 1.0 5.0 190 198 - 0.91922 3 5 cbr 210 ------- 1 1.0 5.0 190 198 + 0.92125 1 2 cbr 210 ------- 1 1.0 5.0 219 229 - 0.92125 1 2 cbr 210 ------- 1 1.0 5.0 219 229 r 0.92127 3 5 cbr 210 ------- 1 1.0 5.0 176 182 - 0.92177 2 3 cbr 210 ------- 1 1.0 5.0 197 207 r 0.92211 1 2 cbr 210 ------- 1 1.0 5.0 205 215 + 0.92211 2 3 cbr 210 ------- 1 1.0 5.0 205 215 r 0.92297 2 3 cbr 210 ------- 1 1.0 5.0 191 199 + 0.92297 3 5 cbr 210 ------- 1 1.0 5.0 191 199 - 0.92297 3 5 cbr 210 ------- 1 1.0 5.0 191 199 r 0.92463 3 5 cbr 210 ------- 1 1.0 5.0 177 183 + 0.925 1 2 cbr 210 ------- 1 1.0 5.0 220 230 - 0.925 1 2 cbr 210 ------- 1 1.0 5.0 220 230 - 0.92513 2 3 cbr 210 ------- 1 1.0 5.0 198 208 r 0.92586 1 2 cbr 210 ------- 1 1.0 5.0 206 216 + 0.92586 2 3 cbr 210 ------- 1 1.0 5.0 206 216 r 0.92799 3 5 cbr 210 ------- 1 1.0 5.0 178 184 - 0.92849 2 3 cbr 210 ------- 1 1.0 5.0 199 209 + 0.92875 1 2 cbr 210 ------- 1 1.0 5.0 221 231 - 0.92875 1 2 cbr 210 ------- 1 1.0 5.0 221 231 r 0.92961 1 2 cbr 210 ------- 1 1.0 5.0 207 217 + 0.92961 2 3 cbr 210 ------- 1 1.0 5.0 207 217 r 0.93135 3 5 cbr 210 ------- 1 1.0 5.0 179 185 - 0.93185 2 3 tcp 1000 ------- 0 0.0 4.0 5 204 + 0.9325 1 2 cbr 210 ------- 1 1.0 5.0 222 232 - 0.9325 1 2 cbr 210 ------- 1 1.0 5.0 222 232 r 0.93336 1 2 cbr 210 ------- 1 1.0 5.0 208 218 + 0.93336 2 3 cbr 210 ------- 1 1.0 5.0 208 218 r 0.93508 3 5 cbr 210 ------- 1 1.0 5.0 180 186 + 0.93625 1 2 cbr 210 ------- 1 1.0 5.0 223 233 - 0.93625 1 2 cbr 210 ------- 1 1.0 5.0 223 233 r 0.93711 1 2 cbr 210 ------- 1 1.0 5.0 209 219 + 0.93711 2 3 cbr 210 ------- 1 1.0 5.0 209 219 r 0.93883 3 5 cbr 210 ------- 1 1.0 5.0 181 187 r 0.93897 2 3 tcp 1000 ------- 0 0.0 4.0 3 194 + 0.93897 3 4 tcp 1000 ------- 0 0.0 4.0 3 194 - 0.93897 3 4 tcp 1000 ------- 0 0.0 4.0 3 194 + 0.94 1 2 cbr 210 ------- 1 1.0 5.0 224 234 - 0.94 1 2 cbr 210 ------- 1 1.0 5.0 224 234 r 0.94086 1 2 cbr 210 ------- 1 1.0 5.0 210 220 + 0.94086 2 3 cbr 210 ------- 1 1.0 5.0 210 220 d 0.94086 2 3 cbr 210 ------- 1 1.0 5.0 210 220 r 0.94233 2 3 cbr 210 ------- 1 1.0 5.0 192 200 + 0.94233 3 5 cbr 210 ------- 1 1.0 5.0 192 200 - 0.94233 3 5 cbr 210 ------- 1 1.0 5.0 192 200 r 0.94258 3 5 cbr 210 ------- 1 1.0 5.0 182 188 + 0.94375 1 2 cbr 210 ------- 1 1.0 5.0 225 235 - 0.94375 1 2 cbr 210 ------- 1 1.0 5.0 225 235 r 0.94461 1 2 cbr 210 ------- 1 1.0 5.0 211 221 + 0.94461 2 3 cbr 210 ------- 1 1.0 5.0 211 221 d 0.94461 2 3 cbr 210 ------- 1 1.0 5.0 211 221 r 0.94569 2 3 cbr 210 ------- 1 1.0 5.0 193 201 + 0.94569 3 5 cbr 210 ------- 1 1.0 5.0 193 201 - 0.94569 3 5 cbr 210 ------- 1 1.0 5.0 193 201 r 0.94633 3 5 cbr 210 ------- 1 1.0 5.0 183 189 + 0.9475 1 2 cbr 210 ------- 1 1.0 5.0 226 236 - 0.9475 1 2 cbr 210 ------- 1 1.0 5.0 226 236 - 0.94785 2 3 cbr 210 ------- 1 1.0 5.0 200 210 r 0.94836 1 2 cbr 210 ------- 1 1.0 5.0 212 222 + 0.94836 2 3 cbr 210 ------- 1 1.0 5.0 212 222 r 0.94905 2 3 cbr 210 ------- 1 1.0 5.0 194 202 + 0.94905 3 5 cbr 210 ------- 1 1.0 5.0 194 202 - 0.94905 3 5 cbr 210 ------- 1 1.0 5.0 194 202 r 0.95008 3 5 cbr 210 ------- 1 1.0 5.0 184 190 - 0.95121 2 3 cbr 210 ------- 1 1.0 5.0 201 211 + 0.95125 1 2 cbr 210 ------- 1 1.0 5.0 227 237 - 0.95125 1 2 cbr 210 ------- 1 1.0 5.0 227 237 r 0.95211 1 2 cbr 210 ------- 1 1.0 5.0 213 223 + 0.95211 2 3 cbr 210 ------- 1 1.0 5.0 213 223 r 0.95241 2 3 cbr 210 ------- 1 1.0 5.0 195 203 + 0.95241 3 5 cbr 210 ------- 1 1.0 5.0 195 203 - 0.95241 3 5 cbr 210 ------- 1 1.0 5.0 195 203 r 0.95383 3 5 cbr 210 ------- 1 1.0 5.0 185 191 - 0.95457 2 3 cbr 210 ------- 1 1.0 5.0 202 212 + 0.955 1 2 cbr 210 ------- 1 1.0 5.0 228 238 - 0.955 1 2 cbr 210 ------- 1 1.0 5.0 228 238 r 0.95586 1 2 cbr 210 ------- 1 1.0 5.0 214 224 + 0.95586 2 3 cbr 210 ------- 1 1.0 5.0 214 224 r 0.95758 3 5 cbr 210 ------- 1 1.0 5.0 186 192 - 0.95793 2 3 cbr 210 ------- 1 1.0 5.0 203 213 + 0.95875 1 2 cbr 210 ------- 1 1.0 5.0 229 239 - 0.95875 1 2 cbr 210 ------- 1 1.0 5.0 229 239 r 0.95961 1 2 cbr 210 ------- 1 1.0 5.0 215 225 + 0.95961 2 3 cbr 210 ------- 1 1.0 5.0 215 225 - 0.96129 2 3 cbr 210 ------- 1 1.0 5.0 205 215 r 0.96133 3 5 cbr 210 ------- 1 1.0 5.0 187 193 + 0.9625 1 2 cbr 210 ------- 1 1.0 5.0 230 240 - 0.9625 1 2 cbr 210 ------- 1 1.0 5.0 230 240 r 0.96336 1 2 cbr 210 ------- 1 1.0 5.0 216 226 + 0.96336 2 3 cbr 210 ------- 1 1.0 5.0 216 226 - 0.96465 2 3 cbr 210 ------- 1 1.0 5.0 206 216 r 0.96508 3 5 cbr 210 ------- 1 1.0 5.0 188 196 + 0.96625 1 2 cbr 210 ------- 1 1.0 5.0 231 241 - 0.96625 1 2 cbr 210 ------- 1 1.0 5.0 231 241 r 0.96711 1 2 cbr 210 ------- 1 1.0 5.0 217 227 + 0.96711 2 3 cbr 210 ------- 1 1.0 5.0 217 227 - 0.96801 2 3 cbr 210 ------- 1 1.0 5.0 207 217 r 0.96841 2 3 tcp 1000 ------- 0 0.0 4.0 4 195 + 0.96841 3 4 tcp 1000 ------- 0 0.0 4.0 4 195 - 0.96841 3 4 tcp 1000 ------- 0 0.0 4.0 4 195 r 0.96883 3 5 cbr 210 ------- 1 1.0 5.0 189 197 + 0.97 1 2 cbr 210 ------- 1 1.0 5.0 232 242 - 0.97 1 2 cbr 210 ------- 1 1.0 5.0 232 242 r 0.97086 1 2 cbr 210 ------- 1 1.0 5.0 218 228 + 0.97086 2 3 cbr 210 ------- 1 1.0 5.0 218 228 - 0.97137 2 3 cbr 210 ------- 1 1.0 5.0 208 218 r 0.97177 2 3 cbr 210 ------- 1 1.0 5.0 196 206 + 0.97177 3 5 cbr 210 ------- 1 1.0 5.0 196 206 - 0.97177 3 5 cbr 210 ------- 1 1.0 5.0 196 206 r 0.97258 3 5 cbr 210 ------- 1 1.0 5.0 190 198 + 0.97375 1 2 cbr 210 ------- 1 1.0 5.0 233 243 - 0.97375 1 2 cbr 210 ------- 1 1.0 5.0 233 243 r 0.97461 1 2 cbr 210 ------- 1 1.0 5.0 219 229 + 0.97461 2 3 cbr 210 ------- 1 1.0 5.0 219 229 - 0.97473 2 3 cbr 210 ------- 1 1.0 5.0 209 219 r 0.97513 2 3 cbr 210 ------- 1 1.0 5.0 197 207 + 0.97513 3 5 cbr 210 ------- 1 1.0 5.0 197 207 - 0.97513 3 5 cbr 210 ------- 1 1.0 5.0 197 207 r 0.97633 3 5 cbr 210 ------- 1 1.0 5.0 191 199 + 0.9775 1 2 cbr 210 ------- 1 1.0 5.0 234 244 - 0.9775 1 2 cbr 210 ------- 1 1.0 5.0 234 244 - 0.97809 2 3 cbr 210 ------- 1 1.0 5.0 212 222 r 0.97836 1 2 cbr 210 ------- 1 1.0 5.0 220 230 + 0.97836 2 3 cbr 210 ------- 1 1.0 5.0 220 230 r 0.97849 2 3 cbr 210 ------- 1 1.0 5.0 198 208 + 0.97849 3 5 cbr 210 ------- 1 1.0 5.0 198 208 - 0.97849 3 5 cbr 210 ------- 1 1.0 5.0 198 208 + 0.98125 1 2 cbr 210 ------- 1 1.0 5.0 235 245 - 0.98125 1 2 cbr 210 ------- 1 1.0 5.0 235 245 - 0.98145 2 3 cbr 210 ------- 1 1.0 5.0 213 223 r 0.98185 2 3 cbr 210 ------- 1 1.0 5.0 199 209 + 0.98185 3 5 cbr 210 ------- 1 1.0 5.0 199 209 - 0.98185 3 5 cbr 210 ------- 1 1.0 5.0 199 209 r 0.98211 1 2 cbr 210 ------- 1 1.0 5.0 221 231 + 0.98211 2 3 cbr 210 ------- 1 1.0 5.0 221 231 - 0.98481 2 3 cbr 210 ------- 1 1.0 5.0 214 224 + 0.985 1 2 cbr 210 ------- 1 1.0 5.0 236 246 - 0.985 1 2 cbr 210 ------- 1 1.0 5.0 236 246 r 0.98586 1 2 cbr 210 ------- 1 1.0 5.0 222 232 + 0.98586 2 3 cbr 210 ------- 1 1.0 5.0 222 232 - 0.98817 2 3 cbr 210 ------- 1 1.0 5.0 215 225 + 0.98875 1 2 cbr 210 ------- 1 1.0 5.0 237 247 - 0.98875 1 2 cbr 210 ------- 1 1.0 5.0 237 247 r 0.98961 1 2 cbr 210 ------- 1 1.0 5.0 223 233 + 0.98961 2 3 cbr 210 ------- 1 1.0 5.0 223 233 - 0.99153 2 3 cbr 210 ------- 1 1.0 5.0 216 226 + 0.9925 1 2 cbr 210 ------- 1 1.0 5.0 238 248 - 0.9925 1 2 cbr 210 ------- 1 1.0 5.0 238 248 r 0.99336 1 2 cbr 210 ------- 1 1.0 5.0 224 234 + 0.99336 2 3 cbr 210 ------- 1 1.0 5.0 224 234 - 0.99489 2 3 cbr 210 ------- 1 1.0 5.0 217 227 r 0.99569 3 5 cbr 210 ------- 1 1.0 5.0 192 200 + 0.99625 1 2 cbr 210 ------- 1 1.0 5.0 239 249 - 0.99625 1 2 cbr 210 ------- 1 1.0 5.0 239 249 r 0.99711 1 2 cbr 210 ------- 1 1.0 5.0 225 235 + 0.99711 2 3 cbr 210 ------- 1 1.0 5.0 225 235 r 0.99785 2 3 tcp 1000 ------- 0 0.0 4.0 5 204 + 0.99785 3 4 tcp 1000 ------- 0 0.0 4.0 5 204 - 0.99785 3 4 tcp 1000 ------- 0 0.0 4.0 5 204 - 0.99825 2 3 cbr 210 ------- 1 1.0 5.0 218 228 r 0.99905 3 5 cbr 210 ------- 1 1.0 5.0 193 201 + 1 1 2 cbr 210 ------- 1 1.0 5.0 240 250 - 1 1 2 cbr 210 ------- 1 1.0 5.0 240 250 r 1.00086 1 2 cbr 210 ------- 1 1.0 5.0 226 236 + 1.00086 2 3 cbr 210 ------- 1 1.0 5.0 226 236 r 1.00121 2 3 cbr 210 ------- 1 1.0 5.0 200 210 + 1.00121 3 5 cbr 210 ------- 1 1.0 5.0 200 210 - 1.00121 3 5 cbr 210 ------- 1 1.0 5.0 200 210 - 1.00161 2 3 cbr 210 ------- 1 1.0 5.0 219 229 r 1.00241 3 5 cbr 210 ------- 1 1.0 5.0 194 202 + 1.00375 1 2 cbr 210 ------- 1 1.0 5.0 241 251 - 1.00375 1 2 cbr 210 ------- 1 1.0 5.0 241 251 r 1.00457 2 3 cbr 210 ------- 1 1.0 5.0 201 211 + 1.00457 3 5 cbr 210 ------- 1 1.0 5.0 201 211 - 1.00457 3 5 cbr 210 ------- 1 1.0 5.0 201 211 r 1.00461 1 2 cbr 210 ------- 1 1.0 5.0 227 237 + 1.00461 2 3 cbr 210 ------- 1 1.0 5.0 227 237 r 1.00497 3 4 tcp 1000 ------- 0 0.0 4.0 3 194 + 1.00497 4 3 ack 40 ------- 0 4.0 0.0 3 252 - 1.00497 4 3 ack 40 ------- 0 4.0 0.0 3 252 - 1.00497 2 3 cbr 210 ------- 1 1.0 5.0 220 230 r 1.00577 3 5 cbr 210 ------- 1 1.0 5.0 195 203 + 1.0075 1 2 cbr 210 ------- 1 1.0 5.0 242 253 - 1.0075 1 2 cbr 210 ------- 1 1.0 5.0 242 253 r 1.00793 2 3 cbr 210 ------- 1 1.0 5.0 202 212 + 1.00793 3 5 cbr 210 ------- 1 1.0 5.0 202 212 - 1.00793 3 5 cbr 210 ------- 1 1.0 5.0 202 212 - 1.00833 2 3 cbr 210 ------- 1 1.0 5.0 221 231 r 1.00836 1 2 cbr 210 ------- 1 1.0 5.0 228 238 + 1.00836 2 3 cbr 210 ------- 1 1.0 5.0 228 238 + 1.01125 1 2 cbr 210 ------- 1 1.0 5.0 243 254 - 1.01125 1 2 cbr 210 ------- 1 1.0 5.0 243 254 r 1.01129 2 3 cbr 210 ------- 1 1.0 5.0 203 213 + 1.01129 3 5 cbr 210 ------- 1 1.0 5.0 203 213 - 1.01129 3 5 cbr 210 ------- 1 1.0 5.0 203 213 - 1.01169 2 3 cbr 210 ------- 1 1.0 5.0 222 232 r 1.01211 1 2 cbr 210 ------- 1 1.0 5.0 229 239 + 1.01211 2 3 cbr 210 ------- 1 1.0 5.0 229 239 r 1.01465 2 3 cbr 210 ------- 1 1.0 5.0 205 215 + 1.01465 3 5 cbr 210 ------- 1 1.0 5.0 205 215 - 1.01465 3 5 cbr 210 ------- 1 1.0 5.0 205 215 + 1.015 1 2 cbr 210 ------- 1 1.0 5.0 244 255 - 1.015 1 2 cbr 210 ------- 1 1.0 5.0 244 255 - 1.01505 2 3 cbr 210 ------- 1 1.0 5.0 223 233 r 1.01586 1 2 cbr 210 ------- 1 1.0 5.0 230 240 + 1.01586 2 3 cbr 210 ------- 1 1.0 5.0 230 240 r 1.01801 2 3 cbr 210 ------- 1 1.0 5.0 206 216 + 1.01801 3 5 cbr 210 ------- 1 1.0 5.0 206 216 - 1.01801 3 5 cbr 210 ------- 1 1.0 5.0 206 216 - 1.01841 2 3 cbr 210 ------- 1 1.0 5.0 224 234 + 1.01875 1 2 cbr 210 ------- 1 1.0 5.0 245 256 - 1.01875 1 2 cbr 210 ------- 1 1.0 5.0 245 256 r 1.01961 1 2 cbr 210 ------- 1 1.0 5.0 231 241 + 1.01961 2 3 cbr 210 ------- 1 1.0 5.0 231 241 v 1.02 eval {set sim_annotation {Ack_5 : 1 ack is coming}} r 1.02137 2 3 cbr 210 ------- 1 1.0 5.0 207 217 + 1.02137 3 5 cbr 210 ------- 1 1.0 5.0 207 217 - 1.02137 3 5 cbr 210 ------- 1 1.0 5.0 207 217 - 1.02177 2 3 cbr 210 ------- 1 1.0 5.0 225 235 + 1.0225 1 2 cbr 210 ------- 1 1.0 5.0 246 257 - 1.0225 1 2 cbr 210 ------- 1 1.0 5.0 246 257 r 1.02336 1 2 cbr 210 ------- 1 1.0 5.0 232 242 + 1.02336 2 3 cbr 210 ------- 1 1.0 5.0 232 242 r 1.02473 2 3 cbr 210 ------- 1 1.0 5.0 208 218 + 1.02473 3 5 cbr 210 ------- 1 1.0 5.0 208 218 - 1.02473 3 5 cbr 210 ------- 1 1.0 5.0 208 218 r 1.02513 3 5 cbr 210 ------- 1 1.0 5.0 196 206 - 1.02513 2 3 cbr 210 ------- 1 1.0 5.0 226 236 + 1.02625 1 2 cbr 210 ------- 1 1.0 5.0 247 258 - 1.02625 1 2 cbr 210 ------- 1 1.0 5.0 247 258 r 1.02711 1 2 cbr 210 ------- 1 1.0 5.0 233 243 + 1.02711 2 3 cbr 210 ------- 1 1.0 5.0 233 243 r 1.02809 2 3 cbr 210 ------- 1 1.0 5.0 209 219 + 1.02809 3 5 cbr 210 ------- 1 1.0 5.0 209 219 - 1.02809 3 5 cbr 210 ------- 1 1.0 5.0 209 219 r 1.02849 3 5 cbr 210 ------- 1 1.0 5.0 197 207 - 1.02849 2 3 cbr 210 ------- 1 1.0 5.0 227 237 + 1.03 1 2 cbr 210 ------- 1 1.0 5.0 248 259 - 1.03 1 2 cbr 210 ------- 1 1.0 5.0 248 259 r 1.03086 1 2 cbr 210 ------- 1 1.0 5.0 234 244 + 1.03086 2 3 cbr 210 ------- 1 1.0 5.0 234 244 r 1.03145 2 3 cbr 210 ------- 1 1.0 5.0 212 222 + 1.03145 3 5 cbr 210 ------- 1 1.0 5.0 212 222 - 1.03145 3 5 cbr 210 ------- 1 1.0 5.0 212 222 r 1.03185 3 5 cbr 210 ------- 1 1.0 5.0 198 208 - 1.03185 2 3 cbr 210 ------- 1 1.0 5.0 228 238 + 1.03375 1 2 cbr 210 ------- 1 1.0 5.0 249 260 - 1.03375 1 2 cbr 210 ------- 1 1.0 5.0 249 260 r 1.03441 3 4 tcp 1000 ------- 0 0.0 4.0 4 195 + 1.03441 4 3 ack 40 ------- 0 4.0 0.0 4 261 - 1.03441 4 3 ack 40 ------- 0 4.0 0.0 4 261 r 1.03461 1 2 cbr 210 ------- 1 1.0 5.0 235 245 + 1.03461 2 3 cbr 210 ------- 1 1.0 5.0 235 245 r 1.03481 2 3 cbr 210 ------- 1 1.0 5.0 213 223 + 1.03481 3 5 cbr 210 ------- 1 1.0 5.0 213 223 - 1.03481 3 5 cbr 210 ------- 1 1.0 5.0 213 223 r 1.03521 3 5 cbr 210 ------- 1 1.0 5.0 199 209 - 1.03521 2 3 cbr 210 ------- 1 1.0 5.0 229 239 + 1.0375 1 2 cbr 210 ------- 1 1.0 5.0 250 262 - 1.0375 1 2 cbr 210 ------- 1 1.0 5.0 250 262 r 1.03817 2 3 cbr 210 ------- 1 1.0 5.0 214 224 + 1.03817 3 5 cbr 210 ------- 1 1.0 5.0 214 224 - 1.03817 3 5 cbr 210 ------- 1 1.0 5.0 214 224 r 1.03836 1 2 cbr 210 ------- 1 1.0 5.0 236 246 + 1.03836 2 3 cbr 210 ------- 1 1.0 5.0 236 246 - 1.03857 2 3 cbr 210 ------- 1 1.0 5.0 230 240 + 1.04125 1 2 cbr 210 ------- 1 1.0 5.0 251 263 - 1.04125 1 2 cbr 210 ------- 1 1.0 5.0 251 263 r 1.04153 2 3 cbr 210 ------- 1 1.0 5.0 215 225 + 1.04153 3 5 cbr 210 ------- 1 1.0 5.0 215 225 - 1.04153 3 5 cbr 210 ------- 1 1.0 5.0 215 225 - 1.04193 2 3 cbr 210 ------- 1 1.0 5.0 231 241 r 1.04211 1 2 cbr 210 ------- 1 1.0 5.0 237 247 + 1.04211 2 3 cbr 210 ------- 1 1.0 5.0 237 247 r 1.04489 2 3 cbr 210 ------- 1 1.0 5.0 216 226 + 1.04489 3 5 cbr 210 ------- 1 1.0 5.0 216 226 - 1.04489 3 5 cbr 210 ------- 1 1.0 5.0 216 226 + 1.045 1 2 cbr 210 ------- 1 1.0 5.0 252 264 - 1.045 1 2 cbr 210 ------- 1 1.0 5.0 252 264 - 1.04529 2 3 cbr 210 ------- 1 1.0 5.0 232 242 r 1.04586 1 2 cbr 210 ------- 1 1.0 5.0 238 248 + 1.04586 2 3 cbr 210 ------- 1 1.0 5.0 238 248 r 1.04825 2 3 cbr 210 ------- 1 1.0 5.0 217 227 + 1.04825 3 5 cbr 210 ------- 1 1.0 5.0 217 227 - 1.04825 3 5 cbr 210 ------- 1 1.0 5.0 217 227 - 1.04865 2 3 cbr 210 ------- 1 1.0 5.0 233 243 + 1.04875 1 2 cbr 210 ------- 1 1.0 5.0 253 265 - 1.04875 1 2 cbr 210 ------- 1 1.0 5.0 253 265 r 1.04961 1 2 cbr 210 ------- 1 1.0 5.0 239 249 + 1.04961 2 3 cbr 210 ------- 1 1.0 5.0 239 249 r 1.05161 2 3 cbr 210 ------- 1 1.0 5.0 218 228 + 1.05161 3 5 cbr 210 ------- 1 1.0 5.0 218 228 - 1.05161 3 5 cbr 210 ------- 1 1.0 5.0 218 228 - 1.05201 2 3 cbr 210 ------- 1 1.0 5.0 234 244 + 1.0525 1 2 cbr 210 ------- 1 1.0 5.0 254 266 - 1.0525 1 2 cbr 210 ------- 1 1.0 5.0 254 266 r 1.05336 1 2 cbr 210 ------- 1 1.0 5.0 240 250 + 1.05336 2 3 cbr 210 ------- 1 1.0 5.0 240 250 r 1.05457 3 5 cbr 210 ------- 1 1.0 5.0 200 210 r 1.05497 2 3 cbr 210 ------- 1 1.0 5.0 219 229 + 1.05497 3 5 cbr 210 ------- 1 1.0 5.0 219 229 - 1.05497 3 5 cbr 210 ------- 1 1.0 5.0 219 229 - 1.05537 2 3 cbr 210 ------- 1 1.0 5.0 235 245 r 1.05561 4 3 ack 40 ------- 0 4.0 0.0 3 252 + 1.05561 3 2 ack 40 ------- 0 4.0 0.0 3 252 - 1.05561 3 2 ack 40 ------- 0 4.0 0.0 3 252 + 1.05625 1 2 cbr 210 ------- 1 1.0 5.0 255 267 - 1.05625 1 2 cbr 210 ------- 1 1.0 5.0 255 267 r 1.05711 1 2 cbr 210 ------- 1 1.0 5.0 241 251 + 1.05711 2 3 cbr 210 ------- 1 1.0 5.0 241 251 r 1.05793 3 5 cbr 210 ------- 1 1.0 5.0 201 211 r 1.05833 2 3 cbr 210 ------- 1 1.0 5.0 220 230 + 1.05833 3 5 cbr 210 ------- 1 1.0 5.0 220 230 - 1.05833 3 5 cbr 210 ------- 1 1.0 5.0 220 230 - 1.05873 2 3 cbr 210 ------- 1 1.0 5.0 236 246 + 1.06 1 2 cbr 210 ------- 1 1.0 5.0 256 268 - 1.06 1 2 cbr 210 ------- 1 1.0 5.0 256 268 r 1.06086 1 2 cbr 210 ------- 1 1.0 5.0 242 253 + 1.06086 2 3 cbr 210 ------- 1 1.0 5.0 242 253 r 1.06129 3 5 cbr 210 ------- 1 1.0 5.0 202 212 r 1.06169 2 3 cbr 210 ------- 1 1.0 5.0 221 231 + 1.06169 3 5 cbr 210 ------- 1 1.0 5.0 221 231 - 1.06169 3 5 cbr 210 ------- 1 1.0 5.0 221 231 - 1.06209 2 3 cbr 210 ------- 1 1.0 5.0 237 247 + 1.06375 1 2 cbr 210 ------- 1 1.0 5.0 257 269 - 1.06375 1 2 cbr 210 ------- 1 1.0 5.0 257 269 r 1.06385 3 4 tcp 1000 ------- 0 0.0 4.0 5 204 + 1.06385 4 3 ack 40 ------- 0 4.0 0.0 5 270 - 1.06385 4 3 ack 40 ------- 0 4.0 0.0 5 270 r 1.06461 1 2 cbr 210 ------- 1 1.0 5.0 243 254 + 1.06461 2 3 cbr 210 ------- 1 1.0 5.0 243 254 r 1.06465 3 5 cbr 210 ------- 1 1.0 5.0 203 213 r 1.06505 2 3 cbr 210 ------- 1 1.0 5.0 222 232 + 1.06505 3 5 cbr 210 ------- 1 1.0 5.0 222 232 - 1.06505 3 5 cbr 210 ------- 1 1.0 5.0 222 232 - 1.06545 2 3 cbr 210 ------- 1 1.0 5.0 238 248 + 1.0675 1 2 cbr 210 ------- 1 1.0 5.0 258 271 - 1.0675 1 2 cbr 210 ------- 1 1.0 5.0 258 271 r 1.06801 3 5 cbr 210 ------- 1 1.0 5.0 205 215 r 1.06836 1 2 cbr 210 ------- 1 1.0 5.0 244 255 + 1.06836 2 3 cbr 210 ------- 1 1.0 5.0 244 255 r 1.06841 2 3 cbr 210 ------- 1 1.0 5.0 223 233 + 1.06841 3 5 cbr 210 ------- 1 1.0 5.0 223 233 - 1.06841 3 5 cbr 210 ------- 1 1.0 5.0 223 233 - 1.06881 2 3 cbr 210 ------- 1 1.0 5.0 239 249 + 1.07125 1 2 cbr 210 ------- 1 1.0 5.0 259 272 - 1.07125 1 2 cbr 210 ------- 1 1.0 5.0 259 272 r 1.07137 3 5 cbr 210 ------- 1 1.0 5.0 206 216 r 1.07177 2 3 cbr 210 ------- 1 1.0 5.0 224 234 + 1.07177 3 5 cbr 210 ------- 1 1.0 5.0 224 234 - 1.07177 3 5 cbr 210 ------- 1 1.0 5.0 224 234 r 1.07211 1 2 cbr 210 ------- 1 1.0 5.0 245 256 + 1.07211 2 3 cbr 210 ------- 1 1.0 5.0 245 256 - 1.07217 2 3 cbr 210 ------- 1 1.0 5.0 240 250 r 1.07473 3 5 cbr 210 ------- 1 1.0 5.0 207 217 + 1.075 1 2 cbr 210 ------- 1 1.0 5.0 260 273 - 1.075 1 2 cbr 210 ------- 1 1.0 5.0 260 273 r 1.07513 2 3 cbr 210 ------- 1 1.0 5.0 225 235 + 1.07513 3 5 cbr 210 ------- 1 1.0 5.0 225 235 - 1.07513 3 5 cbr 210 ------- 1 1.0 5.0 225 235 - 1.07553 2 3 cbr 210 ------- 1 1.0 5.0 241 251 r 1.07586 1 2 cbr 210 ------- 1 1.0 5.0 246 257 + 1.07586 2 3 cbr 210 ------- 1 1.0 5.0 246 257 r 1.07809 3 5 cbr 210 ------- 1 1.0 5.0 208 218 r 1.07849 2 3 cbr 210 ------- 1 1.0 5.0 226 236 + 1.07849 3 5 cbr 210 ------- 1 1.0 5.0 226 236 - 1.07849 3 5 cbr 210 ------- 1 1.0 5.0 226 236 + 1.07875 1 2 cbr 210 ------- 1 1.0 5.0 261 274 - 1.07875 1 2 cbr 210 ------- 1 1.0 5.0 261 274 - 1.07889 2 3 cbr 210 ------- 1 1.0 5.0 242 253 r 1.07961 1 2 cbr 210 ------- 1 1.0 5.0 247 258 + 1.07961 2 3 cbr 210 ------- 1 1.0 5.0 247 258 v 1.0800000000000001 eval {set sim_annotation {Send Packet_6,9}} r 1.08145 3 5 cbr 210 ------- 1 1.0 5.0 209 219 r 1.08185 2 3 cbr 210 ------- 1 1.0 5.0 227 237 + 1.08185 3 5 cbr 210 ------- 1 1.0 5.0 227 237 - 1.08185 3 5 cbr 210 ------- 1 1.0 5.0 227 237 - 1.08225 2 3 cbr 210 ------- 1 1.0 5.0 243 254 + 1.0825 1 2 cbr 210 ------- 1 1.0 5.0 262 275 - 1.0825 1 2 cbr 210 ------- 1 1.0 5.0 262 275 r 1.08336 1 2 cbr 210 ------- 1 1.0 5.0 248 259 + 1.08336 2 3 cbr 210 ------- 1 1.0 5.0 248 259 r 1.08481 3 5 cbr 210 ------- 1 1.0 5.0 212 222 r 1.08505 4 3 ack 40 ------- 0 4.0 0.0 4 261 + 1.08505 3 2 ack 40 ------- 0 4.0 0.0 4 261 - 1.08505 3 2 ack 40 ------- 0 4.0 0.0 4 261 r 1.08521 2 3 cbr 210 ------- 1 1.0 5.0 228 238 + 1.08521 3 5 cbr 210 ------- 1 1.0 5.0 228 238 - 1.08521 3 5 cbr 210 ------- 1 1.0 5.0 228 238 - 1.08561 2 3 cbr 210 ------- 1 1.0 5.0 244 255 + 1.08625 1 2 cbr 210 ------- 1 1.0 5.0 263 276 - 1.08625 1 2 cbr 210 ------- 1 1.0 5.0 263 276 r 1.08711 1 2 cbr 210 ------- 1 1.0 5.0 249 260 + 1.08711 2 3 cbr 210 ------- 1 1.0 5.0 249 260 r 1.08817 3 5 cbr 210 ------- 1 1.0 5.0 213 223 r 1.08857 2 3 cbr 210 ------- 1 1.0 5.0 229 239 + 1.08857 3 5 cbr 210 ------- 1 1.0 5.0 229 239 - 1.08857 3 5 cbr 210 ------- 1 1.0 5.0 229 239 - 1.08897 2 3 cbr 210 ------- 1 1.0 5.0 245 256 + 1.09 1 2 cbr 210 ------- 1 1.0 5.0 264 277 - 1.09 1 2 cbr 210 ------- 1 1.0 5.0 264 277 r 1.09086 1 2 cbr 210 ------- 1 1.0 5.0 250 262 + 1.09086 2 3 cbr 210 ------- 1 1.0 5.0 250 262 r 1.09153 3 5 cbr 210 ------- 1 1.0 5.0 214 224 r 1.09193 2 3 cbr 210 ------- 1 1.0 5.0 230 240 + 1.09193 3 5 cbr 210 ------- 1 1.0 5.0 230 240 - 1.09193 3 5 cbr 210 ------- 1 1.0 5.0 230 240 - 1.09233 2 3 cbr 210 ------- 1 1.0 5.0 246 257 + 1.09375 1 2 cbr 210 ------- 1 1.0 5.0 265 278 - 1.09375 1 2 cbr 210 ------- 1 1.0 5.0 265 278 r 1.09461 1 2 cbr 210 ------- 1 1.0 5.0 251 263 + 1.09461 2 3 cbr 210 ------- 1 1.0 5.0 251 263 r 1.09489 3 5 cbr 210 ------- 1 1.0 5.0 215 225 r 1.09529 2 3 cbr 210 ------- 1 1.0 5.0 231 241 + 1.09529 3 5 cbr 210 ------- 1 1.0 5.0 231 241 - 1.09529 3 5 cbr 210 ------- 1 1.0 5.0 231 241 - 1.09569 2 3 cbr 210 ------- 1 1.0 5.0 247 258 + 1.0975 1 2 cbr 210 ------- 1 1.0 5.0 266 279 - 1.0975 1 2 cbr 210 ------- 1 1.0 5.0 266 279 r 1.09825 3 5 cbr 210 ------- 1 1.0 5.0 216 226 r 1.09836 1 2 cbr 210 ------- 1 1.0 5.0 252 264 + 1.09836 2 3 cbr 210 ------- 1 1.0 5.0 252 264 r 1.09865 2 3 cbr 210 ------- 1 1.0 5.0 232 242 + 1.09865 3 5 cbr 210 ------- 1 1.0 5.0 232 242 - 1.09865 3 5 cbr 210 ------- 1 1.0 5.0 232 242 - 1.09905 2 3 cbr 210 ------- 1 1.0 5.0 248 259 + 1.10125 1 2 cbr 210 ------- 1 1.0 5.0 267 280 - 1.10125 1 2 cbr 210 ------- 1 1.0 5.0 267 280 r 1.10161 3 5 cbr 210 ------- 1 1.0 5.0 217 227 r 1.10201 2 3 cbr 210 ------- 1 1.0 5.0 233 243 + 1.10201 3 5 cbr 210 ------- 1 1.0 5.0 233 243 - 1.10201 3 5 cbr 210 ------- 1 1.0 5.0 233 243 r 1.10211 1 2 cbr 210 ------- 1 1.0 5.0 253 265 + 1.10211 2 3 cbr 210 ------- 1 1.0 5.0 253 265 - 1.10241 2 3 cbr 210 ------- 1 1.0 5.0 249 260 r 1.10497 3 5 cbr 210 ------- 1 1.0 5.0 218 228 + 1.105 1 2 cbr 210 ------- 1 1.0 5.0 268 281 - 1.105 1 2 cbr 210 ------- 1 1.0 5.0 268 281 r 1.10537 2 3 cbr 210 ------- 1 1.0 5.0 234 244 + 1.10537 3 5 cbr 210 ------- 1 1.0 5.0 234 244 - 1.10537 3 5 cbr 210 ------- 1 1.0 5.0 234 244 - 1.10577 2 3 cbr 210 ------- 1 1.0 5.0 250 262 r 1.10586 1 2 cbr 210 ------- 1 1.0 5.0 254 266 + 1.10586 2 3 cbr 210 ------- 1 1.0 5.0 254 266 r 1.10625 3 2 ack 40 ------- 0 4.0 0.0 3 252 + 1.10625 2 0 ack 40 ------- 0 4.0 0.0 3 252 - 1.10625 2 0 ack 40 ------- 0 4.0 0.0 3 252 r 1.10833 3 5 cbr 210 ------- 1 1.0 5.0 219 229 r 1.10873 2 3 cbr 210 ------- 1 1.0 5.0 235 245 + 1.10873 3 5 cbr 210 ------- 1 1.0 5.0 235 245 - 1.10873 3 5 cbr 210 ------- 1 1.0 5.0 235 245 + 1.10875 1 2 cbr 210 ------- 1 1.0 5.0 269 282 - 1.10875 1 2 cbr 210 ------- 1 1.0 5.0 269 282 - 1.10913 2 3 cbr 210 ------- 1 1.0 5.0 251 263 r 1.10961 1 2 cbr 210 ------- 1 1.0 5.0 255 267 + 1.10961 2 3 cbr 210 ------- 1 1.0 5.0 255 267 r 1.11169 3 5 cbr 210 ------- 1 1.0 5.0 220 230 r 1.11209 2 3 cbr 210 ------- 1 1.0 5.0 236 246 + 1.11209 3 5 cbr 210 ------- 1 1.0 5.0 236 246 - 1.11209 3 5 cbr 210 ------- 1 1.0 5.0 236 246 - 1.11249 2 3 cbr 210 ------- 1 1.0 5.0 252 264 + 1.1125 1 2 cbr 210 ------- 1 1.0 5.0 270 283 - 1.1125 1 2 cbr 210 ------- 1 1.0 5.0 270 283 r 1.11336 1 2 cbr 210 ------- 1 1.0 5.0 256 268 + 1.11336 2 3 cbr 210 ------- 1 1.0 5.0 256 268 r 1.11449 4 3 ack 40 ------- 0 4.0 0.0 5 270 + 1.11449 3 2 ack 40 ------- 0 4.0 0.0 5 270 - 1.11449 3 2 ack 40 ------- 0 4.0 0.0 5 270 r 1.11505 3 5 cbr 210 ------- 1 1.0 5.0 221 231 r 1.11545 2 3 cbr 210 ------- 1 1.0 5.0 237 247 + 1.11545 3 5 cbr 210 ------- 1 1.0 5.0 237 247 - 1.11545 3 5 cbr 210 ------- 1 1.0 5.0 237 247 - 1.11585 2 3 cbr 210 ------- 1 1.0 5.0 253 265 + 1.11625 1 2 cbr 210 ------- 1 1.0 5.0 271 284 - 1.11625 1 2 cbr 210 ------- 1 1.0 5.0 271 284 r 1.11711 1 2 cbr 210 ------- 1 1.0 5.0 257 269 + 1.11711 2 3 cbr 210 ------- 1 1.0 5.0 257 269 r 1.11841 3 5 cbr 210 ------- 1 1.0 5.0 222 232 r 1.11881 2 3 cbr 210 ------- 1 1.0 5.0 238 248 + 1.11881 3 5 cbr 210 ------- 1 1.0 5.0 238 248 - 1.11881 3 5 cbr 210 ------- 1 1.0 5.0 238 248 - 1.11921 2 3 cbr 210 ------- 1 1.0 5.0 254 266 + 1.12 1 2 cbr 210 ------- 1 1.0 5.0 272 285 - 1.12 1 2 cbr 210 ------- 1 1.0 5.0 272 285 r 1.12086 1 2 cbr 210 ------- 1 1.0 5.0 258 271 + 1.12086 2 3 cbr 210 ------- 1 1.0 5.0 258 271 r 1.12177 3 5 cbr 210 ------- 1 1.0 5.0 223 233 r 1.12217 2 3 cbr 210 ------- 1 1.0 5.0 239 249 + 1.12217 3 5 cbr 210 ------- 1 1.0 5.0 239 249 - 1.12217 3 5 cbr 210 ------- 1 1.0 5.0 239 249 - 1.12257 2 3 cbr 210 ------- 1 1.0 5.0 255 267 + 1.12375 1 2 cbr 210 ------- 1 1.0 5.0 273 286 - 1.12375 1 2 cbr 210 ------- 1 1.0 5.0 273 286 r 1.12461 1 2 cbr 210 ------- 1 1.0 5.0 259 272 + 1.12461 2 3 cbr 210 ------- 1 1.0 5.0 259 272 r 1.12513 3 5 cbr 210 ------- 1 1.0 5.0 224 234 r 1.12553 2 3 cbr 210 ------- 1 1.0 5.0 240 250 + 1.12553 3 5 cbr 210 ------- 1 1.0 5.0 240 250 - 1.12553 3 5 cbr 210 ------- 1 1.0 5.0 240 250 - 1.12593 2 3 cbr 210 ------- 1 1.0 5.0 256 268 + 1.1275 1 2 cbr 210 ------- 1 1.0 5.0 274 287 - 1.1275 1 2 cbr 210 ------- 1 1.0 5.0 274 287 r 1.12836 1 2 cbr 210 ------- 1 1.0 5.0 260 273 + 1.12836 2 3 cbr 210 ------- 1 1.0 5.0 260 273 r 1.12849 3 5 cbr 210 ------- 1 1.0 5.0 225 235 r 1.12889 2 3 cbr 210 ------- 1 1.0 5.0 241 251 + 1.12889 3 5 cbr 210 ------- 1 1.0 5.0 241 251 - 1.12889 3 5 cbr 210 ------- 1 1.0 5.0 241 251 - 1.12929 2 3 cbr 210 ------- 1 1.0 5.0 257 269 + 1.13125 1 2 cbr 210 ------- 1 1.0 5.0 275 288 - 1.13125 1 2 cbr 210 ------- 1 1.0 5.0 275 288 r 1.13185 3 5 cbr 210 ------- 1 1.0 5.0 226 236 r 1.13211 1 2 cbr 210 ------- 1 1.0 5.0 261 274 + 1.13211 2 3 cbr 210 ------- 1 1.0 5.0 261 274 r 1.13225 2 3 cbr 210 ------- 1 1.0 5.0 242 253 + 1.13225 3 5 cbr 210 ------- 1 1.0 5.0 242 253 - 1.13225 3 5 cbr 210 ------- 1 1.0 5.0 242 253 - 1.13265 2 3 cbr 210 ------- 1 1.0 5.0 258 271 + 1.135 1 2 cbr 210 ------- 1 1.0 5.0 276 289 - 1.135 1 2 cbr 210 ------- 1 1.0 5.0 276 289 r 1.13521 3 5 cbr 210 ------- 1 1.0 5.0 227 237 r 1.13561 2 3 cbr 210 ------- 1 1.0 5.0 243 254 + 1.13561 3 5 cbr 210 ------- 1 1.0 5.0 243 254 - 1.13561 3 5 cbr 210 ------- 1 1.0 5.0 243 254 r 1.13569 3 2 ack 40 ------- 0 4.0 0.0 4 261 + 1.13569 2 0 ack 40 ------- 0 4.0 0.0 4 261 - 1.13569 2 0 ack 40 ------- 0 4.0 0.0 4 261 r 1.13586 1 2 cbr 210 ------- 1 1.0 5.0 262 275 + 1.13586 2 3 cbr 210 ------- 1 1.0 5.0 262 275 - 1.13601 2 3 cbr 210 ------- 1 1.0 5.0 259 272 r 1.13857 3 5 cbr 210 ------- 1 1.0 5.0 228 238 + 1.13875 1 2 cbr 210 ------- 1 1.0 5.0 277 290 - 1.13875 1 2 cbr 210 ------- 1 1.0 5.0 277 290 r 1.13897 2 3 cbr 210 ------- 1 1.0 5.0 244 255 + 1.13897 3 5 cbr 210 ------- 1 1.0 5.0 244 255 - 1.13897 3 5 cbr 210 ------- 1 1.0 5.0 244 255 - 1.13937 2 3 cbr 210 ------- 1 1.0 5.0 260 273 r 1.13961 1 2 cbr 210 ------- 1 1.0 5.0 263 276 + 1.13961 2 3 cbr 210 ------- 1 1.0 5.0 263 276 r 1.14193 3 5 cbr 210 ------- 1 1.0 5.0 229 239 r 1.14233 2 3 cbr 210 ------- 1 1.0 5.0 245 256 + 1.14233 3 5 cbr 210 ------- 1 1.0 5.0 245 256 - 1.14233 3 5 cbr 210 ------- 1 1.0 5.0 245 256 + 1.1425 1 2 cbr 210 ------- 1 1.0 5.0 278 291 - 1.1425 1 2 cbr 210 ------- 1 1.0 5.0 278 291 - 1.14273 2 3 cbr 210 ------- 1 1.0 5.0 261 274 r 1.14336 1 2 cbr 210 ------- 1 1.0 5.0 264 277 + 1.14336 2 3 cbr 210 ------- 1 1.0 5.0 264 277 r 1.14529 3 5 cbr 210 ------- 1 1.0 5.0 230 240 r 1.14569 2 3 cbr 210 ------- 1 1.0 5.0 246 257 + 1.14569 3 5 cbr 210 ------- 1 1.0 5.0 246 257 - 1.14569 3 5 cbr 210 ------- 1 1.0 5.0 246 257 - 1.14609 2 3 cbr 210 ------- 1 1.0 5.0 262 275 + 1.14625 1 2 cbr 210 ------- 1 1.0 5.0 279 292 - 1.14625 1 2 cbr 210 ------- 1 1.0 5.0 279 292 r 1.14711 1 2 cbr 210 ------- 1 1.0 5.0 265 278 + 1.14711 2 3 cbr 210 ------- 1 1.0 5.0 265 278 r 1.14865 3 5 cbr 210 ------- 1 1.0 5.0 231 241 r 1.14905 2 3 cbr 210 ------- 1 1.0 5.0 247 258 + 1.14905 3 5 cbr 210 ------- 1 1.0 5.0 247 258 - 1.14905 3 5 cbr 210 ------- 1 1.0 5.0 247 258 - 1.14945 2 3 cbr 210 ------- 1 1.0 5.0 263 276 + 1.15 1 2 cbr 210 ------- 1 1.0 5.0 280 293 - 1.15 1 2 cbr 210 ------- 1 1.0 5.0 280 293 r 1.15086 1 2 cbr 210 ------- 1 1.0 5.0 266 279 + 1.15086 2 3 cbr 210 ------- 1 1.0 5.0 266 279 r 1.15201 3 5 cbr 210 ------- 1 1.0 5.0 232 242 r 1.15241 2 3 cbr 210 ------- 1 1.0 5.0 248 259 + 1.15241 3 5 cbr 210 ------- 1 1.0 5.0 248 259 - 1.15241 3 5 cbr 210 ------- 1 1.0 5.0 248 259 - 1.15281 2 3 cbr 210 ------- 1 1.0 5.0 264 277 + 1.15375 1 2 cbr 210 ------- 1 1.0 5.0 281 294 - 1.15375 1 2 cbr 210 ------- 1 1.0 5.0 281 294 r 1.15461 1 2 cbr 210 ------- 1 1.0 5.0 267 280 + 1.15461 2 3 cbr 210 ------- 1 1.0 5.0 267 280 r 1.15537 3 5 cbr 210 ------- 1 1.0 5.0 233 243 r 1.15577 2 3 cbr 210 ------- 1 1.0 5.0 249 260 + 1.15577 3 5 cbr 210 ------- 1 1.0 5.0 249 260 - 1.15577 3 5 cbr 210 ------- 1 1.0 5.0 249 260 - 1.15617 2 3 cbr 210 ------- 1 1.0 5.0 265 278 r 1.15689 2 0 ack 40 ------- 0 4.0 0.0 3 252 + 1.15689 0 2 tcp 1000 ------- 0 0.0 4.0 7 295 - 1.15689 0 2 tcp 1000 ------- 0 0.0 4.0 7 295 + 1.15689 0 2 tcp 1000 ------- 0 0.0 4.0 8 296 + 1.1575 1 2 cbr 210 ------- 1 1.0 5.0 282 297 - 1.1575 1 2 cbr 210 ------- 1 1.0 5.0 282 297 r 1.15836 1 2 cbr 210 ------- 1 1.0 5.0 268 281 + 1.15836 2 3 cbr 210 ------- 1 1.0 5.0 268 281 r 1.15873 3 5 cbr 210 ------- 1 1.0 5.0 234 244 r 1.15913 2 3 cbr 210 ------- 1 1.0 5.0 250 262 + 1.15913 3 5 cbr 210 ------- 1 1.0 5.0 250 262 - 1.15913 3 5 cbr 210 ------- 1 1.0 5.0 250 262 - 1.15953 2 3 cbr 210 ------- 1 1.0 5.0 266 279 + 1.16125 1 2 cbr 210 ------- 1 1.0 5.0 283 298 - 1.16125 1 2 cbr 210 ------- 1 1.0 5.0 283 298 r 1.16209 3 5 cbr 210 ------- 1 1.0 5.0 235 245 r 1.16211 1 2 cbr 210 ------- 1 1.0 5.0 269 282 + 1.16211 2 3 cbr 210 ------- 1 1.0 5.0 269 282 r 1.16249 2 3 cbr 210 ------- 1 1.0 5.0 251 263 + 1.16249 3 5 cbr 210 ------- 1 1.0 5.0 251 263 - 1.16249 3 5 cbr 210 ------- 1 1.0 5.0 251 263 - 1.16289 2 3 cbr 210 ------- 1 1.0 5.0 267 280 + 1.165 1 2 cbr 210 ------- 1 1.0 5.0 284 299 - 1.165 1 2 cbr 210 ------- 1 1.0 5.0 284 299 r 1.16513 3 2 ack 40 ------- 0 4.0 0.0 5 270 + 1.16513 2 0 ack 40 ------- 0 4.0 0.0 5 270 - 1.16513 2 0 ack 40 ------- 0 4.0 0.0 5 270 r 1.16545 3 5 cbr 210 ------- 1 1.0 5.0 236 246 r 1.16585 2 3 cbr 210 ------- 1 1.0 5.0 252 264 + 1.16585 3 5 cbr 210 ------- 1 1.0 5.0 252 264 - 1.16585 3 5 cbr 210 ------- 1 1.0 5.0 252 264 r 1.16586 1 2 cbr 210 ------- 1 1.0 5.0 270 283 + 1.16586 2 3 cbr 210 ------- 1 1.0 5.0 270 283 - 1.16625 2 3 cbr 210 ------- 1 1.0 5.0 268 281 + 1.16875 1 2 cbr 210 ------- 1 1.0 5.0 285 300 - 1.16875 1 2 cbr 210 ------- 1 1.0 5.0 285 300 r 1.16881 3 5 cbr 210 ------- 1 1.0 5.0 237 247 r 1.16921 2 3 cbr 210 ------- 1 1.0 5.0 253 265 + 1.16921 3 5 cbr 210 ------- 1 1.0 5.0 253 265 - 1.16921 3 5 cbr 210 ------- 1 1.0 5.0 253 265 r 1.16961 1 2 cbr 210 ------- 1 1.0 5.0 271 284 + 1.16961 2 3 cbr 210 ------- 1 1.0 5.0 271 284 - 1.16961 2 3 cbr 210 ------- 1 1.0 5.0 269 282 r 1.17217 3 5 cbr 210 ------- 1 1.0 5.0 238 248 + 1.1725 1 2 cbr 210 ------- 1 1.0 5.0 286 301 - 1.1725 1 2 cbr 210 ------- 1 1.0 5.0 286 301 r 1.17257 2 3 cbr 210 ------- 1 1.0 5.0 254 266 + 1.17257 3 5 cbr 210 ------- 1 1.0 5.0 254 266 - 1.17257 3 5 cbr 210 ------- 1 1.0 5.0 254 266 - 1.17289 0 2 tcp 1000 ------- 0 0.0 4.0 8 296 - 1.17297 2 3 cbr 210 ------- 1 1.0 5.0 270 283 r 1.17336 1 2 cbr 210 ------- 1 1.0 5.0 272 285 + 1.17336 2 3 cbr 210 ------- 1 1.0 5.0 272 285 r 1.17553 3 5 cbr 210 ------- 1 1.0 5.0 239 249 r 1.17593 2 3 cbr 210 ------- 1 1.0 5.0 255 267 + 1.17593 3 5 cbr 210 ------- 1 1.0 5.0 255 267 - 1.17593 3 5 cbr 210 ------- 1 1.0 5.0 255 267 + 1.17625 1 2 cbr 210 ------- 1 1.0 5.0 287 302 - 1.17625 1 2 cbr 210 ------- 1 1.0 5.0 287 302 - 1.17633 2 3 cbr 210 ------- 1 1.0 5.0 271 284 r 1.17711 1 2 cbr 210 ------- 1 1.0 5.0 273 286 + 1.17711 2 3 cbr 210 ------- 1 1.0 5.0 273 286 r 1.17889 3 5 cbr 210 ------- 1 1.0 5.0 240 250 r 1.17929 2 3 cbr 210 ------- 1 1.0 5.0 256 268 + 1.17929 3 5 cbr 210 ------- 1 1.0 5.0 256 268 - 1.17929 3 5 cbr 210 ------- 1 1.0 5.0 256 268 - 1.17969 2 3 cbr 210 ------- 1 1.0 5.0 272 285 + 1.18 1 2 cbr 210 ------- 1 1.0 5.0 288 303 - 1.18 1 2 cbr 210 ------- 1 1.0 5.0 288 303 r 1.18086 1 2 cbr 210 ------- 1 1.0 5.0 274 287 + 1.18086 2 3 cbr 210 ------- 1 1.0 5.0 274 287 r 1.18225 3 5 cbr 210 ------- 1 1.0 5.0 241 251 r 1.18265 2 3 cbr 210 ------- 1 1.0 5.0 257 269 + 1.18265 3 5 cbr 210 ------- 1 1.0 5.0 257 269 - 1.18265 3 5 cbr 210 ------- 1 1.0 5.0 257 269 - 1.18305 2 3 cbr 210 ------- 1 1.0 5.0 273 286 + 1.18375 1 2 cbr 210 ------- 1 1.0 5.0 289 304 - 1.18375 1 2 cbr 210 ------- 1 1.0 5.0 289 304 r 1.18461 1 2 cbr 210 ------- 1 1.0 5.0 275 288 + 1.18461 2 3 cbr 210 ------- 1 1.0 5.0 275 288 r 1.18561 3 5 cbr 210 ------- 1 1.0 5.0 242 253 r 1.18601 2 3 cbr 210 ------- 1 1.0 5.0 258 271 + 1.18601 3 5 cbr 210 ------- 1 1.0 5.0 258 271 - 1.18601 3 5 cbr 210 ------- 1 1.0 5.0 258 271 r 1.18633 2 0 ack 40 ------- 0 4.0 0.0 4 261 + 1.18633 0 2 tcp 1000 ------- 0 0.0 4.0 9 305 + 1.18633 0 2 tcp 1000 ------- 0 0.0 4.0 10 306 - 1.18641 2 3 cbr 210 ------- 1 1.0 5.0 274 287 + 1.1875 1 2 cbr 210 ------- 1 1.0 5.0 290 307 - 1.1875 1 2 cbr 210 ------- 1 1.0 5.0 290 307 r 1.18836 1 2 cbr 210 ------- 1 1.0 5.0 276 289 + 1.18836 2 3 cbr 210 ------- 1 1.0 5.0 276 289 - 1.18889 0 2 tcp 1000 ------- 0 0.0 4.0 9 305 r 1.18897 3 5 cbr 210 ------- 1 1.0 5.0 243 254 r 1.18937 2 3 cbr 210 ------- 1 1.0 5.0 259 272 + 1.18937 3 5 cbr 210 ------- 1 1.0 5.0 259 272 - 1.18937 3 5 cbr 210 ------- 1 1.0 5.0 259 272 - 1.18977 2 3 cbr 210 ------- 1 1.0 5.0 275 288 + 1.19125 1 2 cbr 210 ------- 1 1.0 5.0 291 308 - 1.19125 1 2 cbr 210 ------- 1 1.0 5.0 291 308 r 1.19211 1 2 cbr 210 ------- 1 1.0 5.0 277 290 + 1.19211 2 3 cbr 210 ------- 1 1.0 5.0 277 290 r 1.19233 3 5 cbr 210 ------- 1 1.0 5.0 244 255 r 1.19273 2 3 cbr 210 ------- 1 1.0 5.0 260 273 + 1.19273 3 5 cbr 210 ------- 1 1.0 5.0 260 273 - 1.19273 3 5 cbr 210 ------- 1 1.0 5.0 260 273 - 1.19313 2 3 cbr 210 ------- 1 1.0 5.0 276 289 + 1.195 1 2 cbr 210 ------- 1 1.0 5.0 292 309 - 1.195 1 2 cbr 210 ------- 1 1.0 5.0 292 309 r 1.19569 3 5 cbr 210 ------- 1 1.0 5.0 245 256 r 1.19586 1 2 cbr 210 ------- 1 1.0 5.0 278 291 + 1.19586 2 3 cbr 210 ------- 1 1.0 5.0 278 291 r 1.19609 2 3 cbr 210 ------- 1 1.0 5.0 261 274 + 1.19609 3 5 cbr 210 ------- 1 1.0 5.0 261 274 - 1.19609 3 5 cbr 210 ------- 1 1.0 5.0 261 274 - 1.19649 2 3 cbr 210 ------- 1 1.0 5.0 277 290 + 1.19875 1 2 cbr 210 ------- 1 1.0 5.0 293 310 - 1.19875 1 2 cbr 210 ------- 1 1.0 5.0 293 310 r 1.19905 3 5 cbr 210 ------- 1 1.0 5.0 246 257 r 1.19945 2 3 cbr 210 ------- 1 1.0 5.0 262 275 + 1.19945 3 5 cbr 210 ------- 1 1.0 5.0 262 275 - 1.19945 3 5 cbr 210 ------- 1 1.0 5.0 262 275 r 1.19961 1 2 cbr 210 ------- 1 1.0 5.0 279 292 + 1.19961 2 3 cbr 210 ------- 1 1.0 5.0 279 292 - 1.19985 2 3 cbr 210 ------- 1 1.0 5.0 278 291 v 1.2 eval {set sim_annotation {Ack_8,10 : 2 acks are coming}} r 1.20241 3 5 cbr 210 ------- 1 1.0 5.0 247 258 + 1.2025 1 2 cbr 210 ------- 1 1.0 5.0 294 311 - 1.2025 1 2 cbr 210 ------- 1 1.0 5.0 294 311 r 1.20281 2 3 cbr 210 ------- 1 1.0 5.0 263 276 + 1.20281 3 5 cbr 210 ------- 1 1.0 5.0 263 276 - 1.20281 3 5 cbr 210 ------- 1 1.0 5.0 263 276 - 1.20321 2 3 cbr 210 ------- 1 1.0 5.0 279 292 r 1.20336 1 2 cbr 210 ------- 1 1.0 5.0 280 293 + 1.20336 2 3 cbr 210 ------- 1 1.0 5.0 280 293 - 1.20489 0 2 tcp 1000 ------- 0 0.0 4.0 10 306 r 1.20577 3 5 cbr 210 ------- 1 1.0 5.0 248 259 r 1.20617 2 3 cbr 210 ------- 1 1.0 5.0 264 277 + 1.20617 3 5 cbr 210 ------- 1 1.0 5.0 264 277 - 1.20617 3 5 cbr 210 ------- 1 1.0 5.0 264 277 + 1.20625 1 2 cbr 210 ------- 1 1.0 5.0 295 312 - 1.20625 1 2 cbr 210 ------- 1 1.0 5.0 295 312 - 1.20657 2 3 cbr 210 ------- 1 1.0 5.0 280 293 r 1.20711 1 2 cbr 210 ------- 1 1.0 5.0 281 294 + 1.20711 2 3 cbr 210 ------- 1 1.0 5.0 281 294 r 1.20913 3 5 cbr 210 ------- 1 1.0 5.0 249 260 r 1.20953 2 3 cbr 210 ------- 1 1.0 5.0 265 278 + 1.20953 3 5 cbr 210 ------- 1 1.0 5.0 265 278 - 1.20953 3 5 cbr 210 ------- 1 1.0 5.0 265 278 - 1.20993 2 3 cbr 210 ------- 1 1.0 5.0 281 294 + 1.21 1 2 cbr 210 ------- 1 1.0 5.0 296 313 - 1.21 1 2 cbr 210 ------- 1 1.0 5.0 296 313 r 1.21086 1 2 cbr 210 ------- 1 1.0 5.0 282 297 + 1.21086 2 3 cbr 210 ------- 1 1.0 5.0 282 297 r 1.21249 3 5 cbr 210 ------- 1 1.0 5.0 250 262 r 1.21289 2 3 cbr 210 ------- 1 1.0 5.0 266 279 + 1.21289 3 5 cbr 210 ------- 1 1.0 5.0 266 279 - 1.21289 3 5 cbr 210 ------- 1 1.0 5.0 266 279 - 1.21329 2 3 cbr 210 ------- 1 1.0 5.0 282 297 + 1.21375 1 2 cbr 210 ------- 1 1.0 5.0 297 314 - 1.21375 1 2 cbr 210 ------- 1 1.0 5.0 297 314 r 1.21461 1 2 cbr 210 ------- 1 1.0 5.0 283 298 + 1.21461 2 3 cbr 210 ------- 1 1.0 5.0 283 298 r 1.21577 2 0 ack 40 ------- 0 4.0 0.0 5 270 + 1.21577 0 2 tcp 1000 ------- 0 0.0 4.0 11 315 + 1.21577 0 2 tcp 1000 ------- 0 0.0 4.0 12 316 r 1.21585 3 5 cbr 210 ------- 1 1.0 5.0 251 263 r 1.21625 2 3 cbr 210 ------- 1 1.0 5.0 267 280 + 1.21625 3 5 cbr 210 ------- 1 1.0 5.0 267 280 - 1.21625 3 5 cbr 210 ------- 1 1.0 5.0 267 280 - 1.21665 2 3 cbr 210 ------- 1 1.0 5.0 283 298 + 1.2175 1 2 cbr 210 ------- 1 1.0 5.0 298 317 - 1.2175 1 2 cbr 210 ------- 1 1.0 5.0 298 317 r 1.21836 1 2 cbr 210 ------- 1 1.0 5.0 284 299 + 1.21836 2 3 cbr 210 ------- 1 1.0 5.0 284 299 r 1.21921 3 5 cbr 210 ------- 1 1.0 5.0 252 264 r 1.21961 2 3 cbr 210 ------- 1 1.0 5.0 268 281 + 1.21961 3 5 cbr 210 ------- 1 1.0 5.0 268 281 - 1.21961 3 5 cbr 210 ------- 1 1.0 5.0 268 281 - 1.22001 2 3 cbr 210 ------- 1 1.0 5.0 284 299 - 1.22089 0 2 tcp 1000 ------- 0 0.0 4.0 11 315 + 1.22125 1 2 cbr 210 ------- 1 1.0 5.0 299 318 - 1.22125 1 2 cbr 210 ------- 1 1.0 5.0 299 318 r 1.22211 1 2 cbr 210 ------- 1 1.0 5.0 285 300 + 1.22211 2 3 cbr 210 ------- 1 1.0 5.0 285 300 r 1.22257 3 5 cbr 210 ------- 1 1.0 5.0 253 265 r 1.22289 0 2 tcp 1000 ------- 0 0.0 4.0 7 295 + 1.22289 2 3 tcp 1000 ------- 0 0.0 4.0 7 295 r 1.22297 2 3 cbr 210 ------- 1 1.0 5.0 269 282 + 1.22297 3 5 cbr 210 ------- 1 1.0 5.0 269 282 - 1.22297 3 5 cbr 210 ------- 1 1.0 5.0 269 282 - 1.22337 2 3 cbr 210 ------- 1 1.0 5.0 285 300 + 1.225 1 2 cbr 210 ------- 1 1.0 5.0 300 319 - 1.225 1 2 cbr 210 ------- 1 1.0 5.0 300 319 r 1.22586 1 2 cbr 210 ------- 1 1.0 5.0 286 301 + 1.22586 2 3 cbr 210 ------- 1 1.0 5.0 286 301 r 1.22593 3 5 cbr 210 ------- 1 1.0 5.0 254 266 r 1.22633 2 3 cbr 210 ------- 1 1.0 5.0 270 283 + 1.22633 3 5 cbr 210 ------- 1 1.0 5.0 270 283 - 1.22633 3 5 cbr 210 ------- 1 1.0 5.0 270 283 - 1.22673 2 3 tcp 1000 ------- 0 0.0 4.0 7 295 + 1.22875 1 2 cbr 210 ------- 1 1.0 5.0 301 320 - 1.22875 1 2 cbr 210 ------- 1 1.0 5.0 301 320 r 1.22929 3 5 cbr 210 ------- 1 1.0 5.0 255 267 r 1.22961 1 2 cbr 210 ------- 1 1.0 5.0 287 302 + 1.22961 2 3 cbr 210 ------- 1 1.0 5.0 287 302 r 1.22969 2 3 cbr 210 ------- 1 1.0 5.0 271 284 + 1.22969 3 5 cbr 210 ------- 1 1.0 5.0 271 284 - 1.22969 3 5 cbr 210 ------- 1 1.0 5.0 271 284 + 1.2325 1 2 cbr 210 ------- 1 1.0 5.0 302 321 - 1.2325 1 2 cbr 210 ------- 1 1.0 5.0 302 321 r 1.23265 3 5 cbr 210 ------- 1 1.0 5.0 256 268 r 1.23305 2 3 cbr 210 ------- 1 1.0 5.0 272 285 + 1.23305 3 5 cbr 210 ------- 1 1.0 5.0 272 285 - 1.23305 3 5 cbr 210 ------- 1 1.0 5.0 272 285 r 1.23336 1 2 cbr 210 ------- 1 1.0 5.0 288 303 + 1.23336 2 3 cbr 210 ------- 1 1.0 5.0 288 303 r 1.23601 3 5 cbr 210 ------- 1 1.0 5.0 257 269 + 1.23625 1 2 cbr 210 ------- 1 1.0 5.0 303 322 - 1.23625 1 2 cbr 210 ------- 1 1.0 5.0 303 322 r 1.23641 2 3 cbr 210 ------- 1 1.0 5.0 273 286 + 1.23641 3 5 cbr 210 ------- 1 1.0 5.0 273 286 - 1.23641 3 5 cbr 210 ------- 1 1.0 5.0 273 286 - 1.23689 0 2 tcp 1000 ------- 0 0.0 4.0 12 316 r 1.23711 1 2 cbr 210 ------- 1 1.0 5.0 289 304 + 1.23711 2 3 cbr 210 ------- 1 1.0 5.0 289 304 r 1.23889 0 2 tcp 1000 ------- 0 0.0 4.0 8 296 + 1.23889 2 3 tcp 1000 ------- 0 0.0 4.0 8 296 r 1.23937 3 5 cbr 210 ------- 1 1.0 5.0 258 271 r 1.23977 2 3 cbr 210 ------- 1 1.0 5.0 274 287 + 1.23977 3 5 cbr 210 ------- 1 1.0 5.0 274 287 - 1.23977 3 5 cbr 210 ------- 1 1.0 5.0 274 287 + 1.24 1 2 cbr 210 ------- 1 1.0 5.0 304 323 - 1.24 1 2 cbr 210 ------- 1 1.0 5.0 304 323 r 1.24086 1 2 cbr 210 ------- 1 1.0 5.0 290 307 + 1.24086 2 3 cbr 210 ------- 1 1.0 5.0 290 307 r 1.24273 3 5 cbr 210 ------- 1 1.0 5.0 259 272 - 1.24273 2 3 cbr 210 ------- 1 1.0 5.0 286 301 r 1.24313 2 3 cbr 210 ------- 1 1.0 5.0 275 288 + 1.24313 3 5 cbr 210 ------- 1 1.0 5.0 275 288 - 1.24313 3 5 cbr 210 ------- 1 1.0 5.0 275 288 + 1.24375 1 2 cbr 210 ------- 1 1.0 5.0 305 324 - 1.24375 1 2 cbr 210 ------- 1 1.0 5.0 305 324 r 1.24461 1 2 cbr 210 ------- 1 1.0 5.0 291 308 + 1.24461 2 3 cbr 210 ------- 1 1.0 5.0 291 308 r 1.24609 3 5 cbr 210 ------- 1 1.0 5.0 260 273 - 1.24609 2 3 cbr 210 ------- 1 1.0 5.0 287 302 r 1.24649 2 3 cbr 210 ------- 1 1.0 5.0 276 289 + 1.24649 3 5 cbr 210 ------- 1 1.0 5.0 276 289 - 1.24649 3 5 cbr 210 ------- 1 1.0 5.0 276 289 + 1.2475 1 2 cbr 210 ------- 1 1.0 5.0 306 325 - 1.2475 1 2 cbr 210 ------- 1 1.0 5.0 306 325 r 1.24836 1 2 cbr 210 ------- 1 1.0 5.0 292 309 + 1.24836 2 3 cbr 210 ------- 1 1.0 5.0 292 309 r 1.24945 3 5 cbr 210 ------- 1 1.0 5.0 261 274 - 1.24945 2 3 cbr 210 ------- 1 1.0 5.0 288 303 r 1.24985 2 3 cbr 210 ------- 1 1.0 5.0 277 290 + 1.24985 3 5 cbr 210 ------- 1 1.0 5.0 277 290 - 1.24985 3 5 cbr 210 ------- 1 1.0 5.0 277 290 + 1.25125 1 2 cbr 210 ------- 1 1.0 5.0 307 326 - 1.25125 1 2 cbr 210 ------- 1 1.0 5.0 307 326 r 1.25211 1 2 cbr 210 ------- 1 1.0 5.0 293 310 + 1.25211 2 3 cbr 210 ------- 1 1.0 5.0 293 310 r 1.25281 3 5 cbr 210 ------- 1 1.0 5.0 262 275 - 1.25281 2 3 cbr 210 ------- 1 1.0 5.0 289 304 r 1.25321 2 3 cbr 210 ------- 1 1.0 5.0 278 291 + 1.25321 3 5 cbr 210 ------- 1 1.0 5.0 278 291 - 1.25321 3 5 cbr 210 ------- 1 1.0 5.0 278 291 r 1.25489 0 2 tcp 1000 ------- 0 0.0 4.0 9 305 + 1.25489 2 3 tcp 1000 ------- 0 0.0 4.0 9 305 + 1.255 1 2 cbr 210 ------- 1 1.0 5.0 308 327 - 1.255 1 2 cbr 210 ------- 1 1.0 5.0 308 327 r 1.25586 1 2 cbr 210 ------- 1 1.0 5.0 294 311 + 1.25586 2 3 cbr 210 ------- 1 1.0 5.0 294 311 r 1.25617 3 5 cbr 210 ------- 1 1.0 5.0 263 276 - 1.25617 2 3 tcp 1000 ------- 0 0.0 4.0 8 296 r 1.25657 2 3 cbr 210 ------- 1 1.0 5.0 279 292 + 1.25657 3 5 cbr 210 ------- 1 1.0 5.0 279 292 - 1.25657 3 5 cbr 210 ------- 1 1.0 5.0 279 292 + 1.25875 1 2 cbr 210 ------- 1 1.0 5.0 309 328 - 1.25875 1 2 cbr 210 ------- 1 1.0 5.0 309 328 r 1.25953 3 5 cbr 210 ------- 1 1.0 5.0 264 277 r 1.25961 1 2 cbr 210 ------- 1 1.0 5.0 295 312 + 1.25961 2 3 cbr 210 ------- 1 1.0 5.0 295 312 r 1.25993 2 3 cbr 210 ------- 1 1.0 5.0 280 293 + 1.25993 3 5 cbr 210 ------- 1 1.0 5.0 280 293 - 1.25993 3 5 cbr 210 ------- 1 1.0 5.0 280 293 v 1.26 eval {set sim_annotation {Send Packet_11,12,13 : Decrease window size to 3}} + 1.2625 1 2 cbr 210 ------- 1 1.0 5.0 310 329 - 1.2625 1 2 cbr 210 ------- 1 1.0 5.0 310 329 r 1.26289 3 5 cbr 210 ------- 1 1.0 5.0 265 278 r 1.26329 2 3 cbr 210 ------- 1 1.0 5.0 281 294 + 1.26329 3 5 cbr 210 ------- 1 1.0 5.0 281 294 - 1.26329 3 5 cbr 210 ------- 1 1.0 5.0 281 294 r 1.26336 1 2 cbr 210 ------- 1 1.0 5.0 296 313 + 1.26336 2 3 cbr 210 ------- 1 1.0 5.0 296 313 + 1.26625 1 2 cbr 210 ------- 1 1.0 5.0 311 330 - 1.26625 1 2 cbr 210 ------- 1 1.0 5.0 311 330 r 1.26625 3 5 cbr 210 ------- 1 1.0 5.0 266 279 r 1.26665 2 3 cbr 210 ------- 1 1.0 5.0 282 297 + 1.26665 3 5 cbr 210 ------- 1 1.0 5.0 282 297 - 1.26665 3 5 cbr 210 ------- 1 1.0 5.0 282 297 r 1.26711 1 2 cbr 210 ------- 1 1.0 5.0 297 314 + 1.26711 2 3 cbr 210 ------- 1 1.0 5.0 297 314 r 1.26961 3 5 cbr 210 ------- 1 1.0 5.0 267 280 + 1.27 1 2 cbr 210 ------- 1 1.0 5.0 312 331 - 1.27 1 2 cbr 210 ------- 1 1.0 5.0 312 331 r 1.27001 2 3 cbr 210 ------- 1 1.0 5.0 283 298 + 1.27001 3 5 cbr 210 ------- 1 1.0 5.0 283 298 - 1.27001 3 5 cbr 210 ------- 1 1.0 5.0 283 298 r 1.27086 1 2 cbr 210 ------- 1 1.0 5.0 298 317 + 1.27086 2 3 cbr 210 ------- 1 1.0 5.0 298 317 d 1.27086 2 3 cbr 210 ------- 1 1.0 5.0 298 317 r 1.27089 0 2 tcp 1000 ------- 0 0.0 4.0 10 306 + 1.27089 2 3 tcp 1000 ------- 0 0.0 4.0 10 306 d 1.27089 2 3 tcp 1000 ------- 0 0.0 4.0 10 306 - 1.27217 2 3 cbr 210 ------- 1 1.0 5.0 290 307 r 1.27297 3 5 cbr 210 ------- 1 1.0 5.0 268 281 r 1.27337 2 3 cbr 210 ------- 1 1.0 5.0 284 299 + 1.27337 3 5 cbr 210 ------- 1 1.0 5.0 284 299 - 1.27337 3 5 cbr 210 ------- 1 1.0 5.0 284 299 + 1.27375 1 2 cbr 210 ------- 1 1.0 5.0 313 332 - 1.27375 1 2 cbr 210 ------- 1 1.0 5.0 313 332 r 1.27461 1 2 cbr 210 ------- 1 1.0 5.0 299 318 + 1.27461 2 3 cbr 210 ------- 1 1.0 5.0 299 318 - 1.27553 2 3 cbr 210 ------- 1 1.0 5.0 291 308 r 1.27633 3 5 cbr 210 ------- 1 1.0 5.0 269 282 r 1.27673 2 3 cbr 210 ------- 1 1.0 5.0 285 300 + 1.27673 3 5 cbr 210 ------- 1 1.0 5.0 285 300 - 1.27673 3 5 cbr 210 ------- 1 1.0 5.0 285 300 + 1.2775 1 2 cbr 210 ------- 1 1.0 5.0 314 333 - 1.2775 1 2 cbr 210 ------- 1 1.0 5.0 314 333 r 1.27836 1 2 cbr 210 ------- 1 1.0 5.0 300 319 + 1.27836 2 3 cbr 210 ------- 1 1.0 5.0 300 319 - 1.27889 2 3 cbr 210 ------- 1 1.0 5.0 292 309 r 1.27969 3 5 cbr 210 ------- 1 1.0 5.0 270 283 + 1.28125 1 2 cbr 210 ------- 1 1.0 5.0 315 334 - 1.28125 1 2 cbr 210 ------- 1 1.0 5.0 315 334 r 1.28211 1 2 cbr 210 ------- 1 1.0 5.0 301 320 + 1.28211 2 3 cbr 210 ------- 1 1.0 5.0 301 320 - 1.28225 2 3 cbr 210 ------- 1 1.0 5.0 293 310 r 1.28305 3 5 cbr 210 ------- 1 1.0 5.0 271 284 + 1.285 1 2 cbr 210 ------- 1 1.0 5.0 316 335 - 1.285 1 2 cbr 210 ------- 1 1.0 5.0 316 335 - 1.28561 2 3 tcp 1000 ------- 0 0.0 4.0 9 305 r 1.28586 1 2 cbr 210 ------- 1 1.0 5.0 302 321 + 1.28586 2 3 cbr 210 ------- 1 1.0 5.0 302 321 r 1.28641 3 5 cbr 210 ------- 1 1.0 5.0 272 285 r 1.28689 0 2 tcp 1000 ------- 0 0.0 4.0 11 315 + 1.28689 2 3 tcp 1000 ------- 0 0.0 4.0 11 315 + 1.28875 1 2 cbr 210 ------- 1 1.0 5.0 317 336 - 1.28875 1 2 cbr 210 ------- 1 1.0 5.0 317 336 r 1.28961 1 2 cbr 210 ------- 1 1.0 5.0 303 322 + 1.28961 2 3 cbr 210 ------- 1 1.0 5.0 303 322 d 1.28961 2 3 cbr 210 ------- 1 1.0 5.0 303 322 r 1.28977 3 5 cbr 210 ------- 1 1.0 5.0 273 286 + 1.2925 1 2 cbr 210 ------- 1 1.0 5.0 318 337 - 1.2925 1 2 cbr 210 ------- 1 1.0 5.0 318 337 r 1.29273 2 3 tcp 1000 ------- 0 0.0 4.0 7 295 + 1.29273 3 4 tcp 1000 ------- 0 0.0 4.0 7 295 - 1.29273 3 4 tcp 1000 ------- 0 0.0 4.0 7 295 r 1.29313 3 5 cbr 210 ------- 1 1.0 5.0 274 287 r 1.29336 1 2 cbr 210 ------- 1 1.0 5.0 304 323 + 1.29336 2 3 cbr 210 ------- 1 1.0 5.0 304 323 d 1.29336 2 3 cbr 210 ------- 1 1.0 5.0 304 323 r 1.29609 2 3 cbr 210 ------- 1 1.0 5.0 286 301 + 1.29609 3 5 cbr 210 ------- 1 1.0 5.0 286 301 - 1.29609 3 5 cbr 210 ------- 1 1.0 5.0 286 301 + 1.29625 1 2 cbr 210 ------- 1 1.0 5.0 319 338 - 1.29625 1 2 cbr 210 ------- 1 1.0 5.0 319 338 r 1.29649 3 5 cbr 210 ------- 1 1.0 5.0 275 288 r 1.29711 1 2 cbr 210 ------- 1 1.0 5.0 305 324 + 1.29711 2 3 cbr 210 ------- 1 1.0 5.0 305 324 d 1.29711 2 3 cbr 210 ------- 1 1.0 5.0 305 324 r 1.29945 2 3 cbr 210 ------- 1 1.0 5.0 287 302 + 1.29945 3 5 cbr 210 ------- 1 1.0 5.0 287 302 - 1.29945 3 5 cbr 210 ------- 1 1.0 5.0 287 302 r 1.29985 3 5 cbr 210 ------- 1 1.0 5.0 276 289 + 1.3 1 2 cbr 210 ------- 1 1.0 5.0 320 339 - 1.3 1 2 cbr 210 ------- 1 1.0 5.0 320 339 r 1.30086 1 2 cbr 210 ------- 1 1.0 5.0 306 325 + 1.30086 2 3 cbr 210 ------- 1 1.0 5.0 306 325 d 1.30086 2 3 cbr 210 ------- 1 1.0 5.0 306 325 - 1.30161 2 3 cbr 210 ------- 1 1.0 5.0 294 311 r 1.30281 2 3 cbr 210 ------- 1 1.0 5.0 288 303 + 1.30281 3 5 cbr 210 ------- 1 1.0 5.0 288 303 - 1.30281 3 5 cbr 210 ------- 1 1.0 5.0 288 303 r 1.30289 0 2 tcp 1000 ------- 0 0.0 4.0 12 316 + 1.30289 2 3 tcp 1000 ------- 0 0.0 4.0 12 316 r 1.30321 3 5 cbr 210 ------- 1 1.0 5.0 277 290 + 1.30375 1 2 cbr 210 ------- 1 1.0 5.0 321 340 - 1.30375 1 2 cbr 210 ------- 1 1.0 5.0 321 340 r 1.30461 1 2 cbr 210 ------- 1 1.0 5.0 307 326 + 1.30461 2 3 cbr 210 ------- 1 1.0 5.0 307 326 d 1.30461 2 3 cbr 210 ------- 1 1.0 5.0 307 326 - 1.30497 2 3 cbr 210 ------- 1 1.0 5.0 295 312 r 1.30617 2 3 cbr 210 ------- 1 1.0 5.0 289 304 + 1.30617 3 5 cbr 210 ------- 1 1.0 5.0 289 304 - 1.30617 3 5 cbr 210 ------- 1 1.0 5.0 289 304 r 1.30657 3 5 cbr 210 ------- 1 1.0 5.0 278 291 + 1.3075 1 2 cbr 210 ------- 1 1.0 5.0 322 341 - 1.3075 1 2 cbr 210 ------- 1 1.0 5.0 322 341 - 1.30833 2 3 cbr 210 ------- 1 1.0 5.0 296 313 r 1.30836 1 2 cbr 210 ------- 1 1.0 5.0 308 327 + 1.30836 2 3 cbr 210 ------- 1 1.0 5.0 308 327 r 1.30993 3 5 cbr 210 ------- 1 1.0 5.0 279 292 + 1.31125 1 2 cbr 210 ------- 1 1.0 5.0 323 342 - 1.31125 1 2 cbr 210 ------- 1 1.0 5.0 323 342 - 1.31169 2 3 cbr 210 ------- 1 1.0 5.0 297 314 r 1.31211 1 2 cbr 210 ------- 1 1.0 5.0 309 328 + 1.31211 2 3 cbr 210 ------- 1 1.0 5.0 309 328 r 1.31329 3 5 cbr 210 ------- 1 1.0 5.0 280 293 + 1.315 1 2 cbr 210 ------- 1 1.0 5.0 324 343 - 1.315 1 2 cbr 210 ------- 1 1.0 5.0 324 343 - 1.31505 2 3 cbr 210 ------- 1 1.0 5.0 299 318 r 1.31586 1 2 cbr 210 ------- 1 1.0 5.0 310 329 + 1.31586 2 3 cbr 210 ------- 1 1.0 5.0 310 329 r 1.31665 3 5 cbr 210 ------- 1 1.0 5.0 281 294 - 1.31841 2 3 cbr 210 ------- 1 1.0 5.0 300 319 + 1.31875 1 2 cbr 210 ------- 1 1.0 5.0 325 344 - 1.31875 1 2 cbr 210 ------- 1 1.0 5.0 325 344 r 1.31961 1 2 cbr 210 ------- 1 1.0 5.0 311 330 + 1.31961 2 3 cbr 210 ------- 1 1.0 5.0 311 330 r 1.32001 3 5 cbr 210 ------- 1 1.0 5.0 282 297 - 1.32177 2 3 cbr 210 ------- 1 1.0 5.0 301 320 r 1.32217 2 3 tcp 1000 ------- 0 0.0 4.0 8 296 + 1.32217 3 4 tcp 1000 ------- 0 0.0 4.0 8 296 - 1.32217 3 4 tcp 1000 ------- 0 0.0 4.0 8 296 + 1.3225 1 2 cbr 210 ------- 1 1.0 5.0 326 345 - 1.3225 1 2 cbr 210 ------- 1 1.0 5.0 326 345 r 1.32336 1 2 cbr 210 ------- 1 1.0 5.0 312 331 + 1.32336 2 3 cbr 210 ------- 1 1.0 5.0 312 331 r 1.32337 3 5 cbr 210 ------- 1 1.0 5.0 283 298 - 1.32513 2 3 cbr 210 ------- 1 1.0 5.0 302 321 r 1.32553 2 3 cbr 210 ------- 1 1.0 5.0 290 307 + 1.32553 3 5 cbr 210 ------- 1 1.0 5.0 290 307 - 1.32553 3 5 cbr 210 ------- 1 1.0 5.0 290 307 + 1.32625 1 2 cbr 210 ------- 1 1.0 5.0 327 346 - 1.32625 1 2 cbr 210 ------- 1 1.0 5.0 327 346 r 1.32673 3 5 cbr 210 ------- 1 1.0 5.0 284 299 r 1.32711 1 2 cbr 210 ------- 1 1.0 5.0 313 332 + 1.32711 2 3 cbr 210 ------- 1 1.0 5.0 313 332 - 1.32849 2 3 tcp 1000 ------- 0 0.0 4.0 11 315 r 1.32889 2 3 cbr 210 ------- 1 1.0 5.0 291 308 + 1.32889 3 5 cbr 210 ------- 1 1.0 5.0 291 308 - 1.32889 3 5 cbr 210 ------- 1 1.0 5.0 291 308 + 1.33 1 2 cbr 210 ------- 1 1.0 5.0 328 347 - 1.33 1 2 cbr 210 ------- 1 1.0 5.0 328 347 v 1.3300000000000001 eval {set sim_annotation {Packet_13 is lost}} r 1.33009 3 5 cbr 210 ------- 1 1.0 5.0 285 300 r 1.33086 1 2 cbr 210 ------- 1 1.0 5.0 314 333 + 1.33086 2 3 cbr 210 ------- 1 1.0 5.0 314 333 r 1.33225 2 3 cbr 210 ------- 1 1.0 5.0 292 309 + 1.33225 3 5 cbr 210 ------- 1 1.0 5.0 292 309 - 1.33225 3 5 cbr 210 ------- 1 1.0 5.0 292 309 + 1.33375 1 2 cbr 210 ------- 1 1.0 5.0 329 348 - 1.33375 1 2 cbr 210 ------- 1 1.0 5.0 329 348 r 1.33461 1 2 cbr 210 ------- 1 1.0 5.0 315 334 + 1.33461 2 3 cbr 210 ------- 1 1.0 5.0 315 334 r 1.33561 2 3 cbr 210 ------- 1 1.0 5.0 293 310 + 1.33561 3 5 cbr 210 ------- 1 1.0 5.0 293 310 - 1.33561 3 5 cbr 210 ------- 1 1.0 5.0 293 310 + 1.3375 1 2 cbr 210 ------- 1 1.0 5.0 330 349 - 1.3375 1 2 cbr 210 ------- 1 1.0 5.0 330 349 r 1.33836 1 2 cbr 210 ------- 1 1.0 5.0 316 335 + 1.33836 2 3 cbr 210 ------- 1 1.0 5.0 316 335 d 1.33836 2 3 cbr 210 ------- 1 1.0 5.0 316 335 + 1.34125 1 2 cbr 210 ------- 1 1.0 5.0 331 350 - 1.34125 1 2 cbr 210 ------- 1 1.0 5.0 331 350 r 1.34211 1 2 cbr 210 ------- 1 1.0 5.0 317 336 + 1.34211 2 3 cbr 210 ------- 1 1.0 5.0 317 336 d 1.34211 2 3 cbr 210 ------- 1 1.0 5.0 317 336 - 1.34449 2 3 tcp 1000 ------- 0 0.0 4.0 12 316 + 1.345 1 2 cbr 210 ------- 1 1.0 5.0 332 351 - 1.345 1 2 cbr 210 ------- 1 1.0 5.0 332 351 r 1.34586 1 2 cbr 210 ------- 1 1.0 5.0 318 337 + 1.34586 2 3 cbr 210 ------- 1 1.0 5.0 318 337 + 1.34875 1 2 cbr 210 ------- 1 1.0 5.0 333 352 - 1.34875 1 2 cbr 210 ------- 1 1.0 5.0 333 352 r 1.34945 3 5 cbr 210 ------- 1 1.0 5.0 286 301 r 1.34961 1 2 cbr 210 ------- 1 1.0 5.0 319 338 + 1.34961 2 3 cbr 210 ------- 1 1.0 5.0 319 338 d 1.34961 2 3 cbr 210 ------- 1 1.0 5.0 319 338 r 1.35161 2 3 tcp 1000 ------- 0 0.0 4.0 9 305 + 1.35161 3 4 tcp 1000 ------- 0 0.0 4.0 9 305 - 1.35161 3 4 tcp 1000 ------- 0 0.0 4.0 9 305 + 1.3525 1 2 cbr 210 ------- 1 1.0 5.0 334 353 - 1.3525 1 2 cbr 210 ------- 1 1.0 5.0 334 353 r 1.35281 3 5 cbr 210 ------- 1 1.0 5.0 287 302 r 1.35336 1 2 cbr 210 ------- 1 1.0 5.0 320 339 + 1.35336 2 3 cbr 210 ------- 1 1.0 5.0 320 339 d 1.35336 2 3 cbr 210 ------- 1 1.0 5.0 320 339 r 1.35497 2 3 cbr 210 ------- 1 1.0 5.0 294 311 + 1.35497 3 5 cbr 210 ------- 1 1.0 5.0 294 311 - 1.35497 3 5 cbr 210 ------- 1 1.0 5.0 294 311 r 1.35617 3 5 cbr 210 ------- 1 1.0 5.0 288 303 + 1.35625 1 2 cbr 210 ------- 1 1.0 5.0 335 354 - 1.35625 1 2 cbr 210 ------- 1 1.0 5.0 335 354 r 1.35711 1 2 cbr 210 ------- 1 1.0 5.0 321 340 + 1.35711 2 3 cbr 210 ------- 1 1.0 5.0 321 340 d 1.35711 2 3 cbr 210 ------- 1 1.0 5.0 321 340 r 1.35833 2 3 cbr 210 ------- 1 1.0 5.0 295 312 + 1.35833 3 5 cbr 210 ------- 1 1.0 5.0 295 312 - 1.35833 3 5 cbr 210 ------- 1 1.0 5.0 295 312 r 1.35873 3 4 tcp 1000 ------- 0 0.0 4.0 7 295 + 1.35873 4 3 ack 48 ------- 0 4.0 0.0 5 355 - 1.35873 4 3 ack 48 ------- 0 4.0 0.0 5 355 r 1.35953 3 5 cbr 210 ------- 1 1.0 5.0 289 304 + 1.36 1 2 cbr 210 ------- 1 1.0 5.0 336 356 - 1.36 1 2 cbr 210 ------- 1 1.0 5.0 336 356 - 1.36049 2 3 cbr 210 ------- 1 1.0 5.0 308 327 r 1.36086 1 2 cbr 210 ------- 1 1.0 5.0 322 341 + 1.36086 2 3 cbr 210 ------- 1 1.0 5.0 322 341 r 1.36169 2 3 cbr 210 ------- 1 1.0 5.0 296 313 + 1.36169 3 5 cbr 210 ------- 1 1.0 5.0 296 313 - 1.36169 3 5 cbr 210 ------- 1 1.0 5.0 296 313 + 1.36375 1 2 cbr 210 ------- 1 1.0 5.0 337 357 - 1.36375 1 2 cbr 210 ------- 1 1.0 5.0 337 357 - 1.36385 2 3 cbr 210 ------- 1 1.0 5.0 309 328 r 1.36461 1 2 cbr 210 ------- 1 1.0 5.0 323 342 + 1.36461 2 3 cbr 210 ------- 1 1.0 5.0 323 342 r 1.36505 2 3 cbr 210 ------- 1 1.0 5.0 297 314 + 1.36505 3 5 cbr 210 ------- 1 1.0 5.0 297 314 - 1.36505 3 5 cbr 210 ------- 1 1.0 5.0 297 314 - 1.36721 2 3 cbr 210 ------- 1 1.0 5.0 310 329 + 1.3675 1 2 cbr 210 ------- 1 1.0 5.0 338 358 - 1.3675 1 2 cbr 210 ------- 1 1.0 5.0 338 358 r 1.36836 1 2 cbr 210 ------- 1 1.0 5.0 324 343 + 1.36836 2 3 cbr 210 ------- 1 1.0 5.0 324 343 r 1.36841 2 3 cbr 210 ------- 1 1.0 5.0 299 318 + 1.36841 3 5 cbr 210 ------- 1 1.0 5.0 299 318 - 1.36841 3 5 cbr 210 ------- 1 1.0 5.0 299 318 - 1.37057 2 3 cbr 210 ------- 1 1.0 5.0 311 330 + 1.37125 1 2 cbr 210 ------- 1 1.0 5.0 339 359 - 1.37125 1 2 cbr 210 ------- 1 1.0 5.0 339 359 r 1.37177 2 3 cbr 210 ------- 1 1.0 5.0 300 319 + 1.37177 3 5 cbr 210 ------- 1 1.0 5.0 300 319 - 1.37177 3 5 cbr 210 ------- 1 1.0 5.0 300 319 r 1.37211 1 2 cbr 210 ------- 1 1.0 5.0 325 344 + 1.37211 2 3 cbr 210 ------- 1 1.0 5.0 325 344 - 1.37393 2 3 cbr 210 ------- 1 1.0 5.0 312 331 + 1.375 1 2 cbr 210 ------- 1 1.0 5.0 340 360 - 1.375 1 2 cbr 210 ------- 1 1.0 5.0 340 360 r 1.37513 2 3 cbr 210 ------- 1 1.0 5.0 301 320 + 1.37513 3 5 cbr 210 ------- 1 1.0 5.0 301 320 - 1.37513 3 5 cbr 210 ------- 1 1.0 5.0 301 320 r 1.37586 1 2 cbr 210 ------- 1 1.0 5.0 326 345 + 1.37586 2 3 cbr 210 ------- 1 1.0 5.0 326 345 - 1.37729 2 3 cbr 210 ------- 1 1.0 5.0 313 332 r 1.37849 2 3 cbr 210 ------- 1 1.0 5.0 302 321 + 1.37849 3 5 cbr 210 ------- 1 1.0 5.0 302 321 - 1.37849 3 5 cbr 210 ------- 1 1.0 5.0 302 321 + 1.37875 1 2 cbr 210 ------- 1 1.0 5.0 341 361 - 1.37875 1 2 cbr 210 ------- 1 1.0 5.0 341 361 r 1.37889 3 5 cbr 210 ------- 1 1.0 5.0 290 307 r 1.37961 1 2 cbr 210 ------- 1 1.0 5.0 327 346 + 1.37961 2 3 cbr 210 ------- 1 1.0 5.0 327 346 - 1.38065 2 3 cbr 210 ------- 1 1.0 5.0 314 333 r 1.38225 3 5 cbr 210 ------- 1 1.0 5.0 291 308 + 1.3825 1 2 cbr 210 ------- 1 1.0 5.0 342 362 - 1.3825 1 2 cbr 210 ------- 1 1.0 5.0 342 362 r 1.38336 1 2 cbr 210 ------- 1 1.0 5.0 328 347 + 1.38336 2 3 cbr 210 ------- 1 1.0 5.0 328 347 - 1.38401 2 3 cbr 210 ------- 1 1.0 5.0 315 334 r 1.38561 3 5 cbr 210 ------- 1 1.0 5.0 292 309 + 1.38625 1 2 cbr 210 ------- 1 1.0 5.0 343 363 - 1.38625 1 2 cbr 210 ------- 1 1.0 5.0 343 363 r 1.38711 1 2 cbr 210 ------- 1 1.0 5.0 329 348 + 1.38711 2 3 cbr 210 ------- 1 1.0 5.0 329 348 - 1.38737 2 3 cbr 210 ------- 1 1.0 5.0 318 337 r 1.38817 3 4 tcp 1000 ------- 0 0.0 4.0 8 296 + 1.38817 4 3 ack 48 ------- 0 4.0 0.0 5 364 - 1.38817 4 3 ack 48 ------- 0 4.0 0.0 5 364 r 1.38897 3 5 cbr 210 ------- 1 1.0 5.0 293 310 + 1.39 1 2 cbr 210 ------- 1 1.0 5.0 344 365 - 1.39 1 2 cbr 210 ------- 1 1.0 5.0 344 365 v 1.3899999999999999 eval {set sim_annotation {Ack_11,12 : 2 acks are coming}} - 1.39073 2 3 cbr 210 ------- 1 1.0 5.0 322 341 r 1.39086 1 2 cbr 210 ------- 1 1.0 5.0 330 349 + 1.39086 2 3 cbr 210 ------- 1 1.0 5.0 330 349 + 1.39375 1 2 cbr 210 ------- 1 1.0 5.0 345 366 - 1.39375 1 2 cbr 210 ------- 1 1.0 5.0 345 366 - 1.39409 2 3 cbr 210 ------- 1 1.0 5.0 323 342 r 1.39449 2 3 tcp 1000 ------- 0 0.0 4.0 11 315 + 1.39449 3 4 tcp 1000 ------- 0 0.0 4.0 11 315 - 1.39449 3 4 tcp 1000 ------- 0 0.0 4.0 11 315 r 1.39461 1 2 cbr 210 ------- 1 1.0 5.0 331 350 + 1.39461 2 3 cbr 210 ------- 1 1.0 5.0 331 350 - 1.39745 2 3 cbr 210 ------- 1 1.0 5.0 324 343 + 1.3975 1 2 cbr 210 ------- 1 1.0 5.0 346 367 - 1.3975 1 2 cbr 210 ------- 1 1.0 5.0 346 367 r 1.39836 1 2 cbr 210 ------- 1 1.0 5.0 332 351 + 1.39836 2 3 cbr 210 ------- 1 1.0 5.0 332 351 - 1.40081 2 3 cbr 210 ------- 1 1.0 5.0 325 344 + 1.40125 1 2 cbr 210 ------- 1 1.0 5.0 347 368 - 1.40125 1 2 cbr 210 ------- 1 1.0 5.0 347 368 r 1.40211 1 2 cbr 210 ------- 1 1.0 5.0 333 352 + 1.40211 2 3 cbr 210 ------- 1 1.0 5.0 333 352 - 1.40417 2 3 cbr 210 ------- 1 1.0 5.0 326 345 + 1.405 1 2 cbr 210 ------- 1 1.0 5.0 348 369 - 1.405 1 2 cbr 210 ------- 1 1.0 5.0 348 369 r 1.40586 1 2 cbr 210 ------- 1 1.0 5.0 334 353 + 1.40586 2 3 cbr 210 ------- 1 1.0 5.0 334 353 - 1.40753 2 3 cbr 210 ------- 1 1.0 5.0 327 346 r 1.40833 3 5 cbr 210 ------- 1 1.0 5.0 294 311 + 1.40875 1 2 cbr 210 ------- 1 1.0 5.0 349 370 - 1.40875 1 2 cbr 210 ------- 1 1.0 5.0 349 370 r 1.4095 4 3 ack 48 ------- 0 4.0 0.0 5 355 + 1.4095 3 2 ack 48 ------- 0 4.0 0.0 5 355 - 1.4095 3 2 ack 48 ------- 0 4.0 0.0 5 355 r 1.40961 1 2 cbr 210 ------- 1 1.0 5.0 335 354 + 1.40961 2 3 cbr 210 ------- 1 1.0 5.0 335 354 r 1.41049 2 3 tcp 1000 ------- 0 0.0 4.0 12 316 + 1.41049 3 4 tcp 1000 ------- 0 0.0 4.0 12 316 - 1.41049 3 4 tcp 1000 ------- 0 0.0 4.0 12 316 - 1.41089 2 3 cbr 210 ------- 1 1.0 5.0 328 347 r 1.41169 3 5 cbr 210 ------- 1 1.0 5.0 295 312 + 1.4125 1 2 cbr 210 ------- 1 1.0 5.0 350 371 - 1.4125 1 2 cbr 210 ------- 1 1.0 5.0 350 371 r 1.41336 1 2 cbr 210 ------- 1 1.0 5.0 336 356 + 1.41336 2 3 cbr 210 ------- 1 1.0 5.0 336 356 r 1.41385 2 3 cbr 210 ------- 1 1.0 5.0 308 327 + 1.41385 3 5 cbr 210 ------- 1 1.0 5.0 308 327 - 1.41385 3 5 cbr 210 ------- 1 1.0 5.0 308 327 - 1.41425 2 3 cbr 210 ------- 1 1.0 5.0 329 348 r 1.41505 3 5 cbr 210 ------- 1 1.0 5.0 296 313 + 1.41625 1 2 cbr 210 ------- 1 1.0 5.0 351 372 - 1.41625 1 2 cbr 210 ------- 1 1.0 5.0 351 372 r 1.41711 1 2 cbr 210 ------- 1 1.0 5.0 337 357 + 1.41711 2 3 cbr 210 ------- 1 1.0 5.0 337 357 r 1.41721 2 3 cbr 210 ------- 1 1.0 5.0 309 328 + 1.41721 3 5 cbr 210 ------- 1 1.0 5.0 309 328 - 1.41721 3 5 cbr 210 ------- 1 1.0 5.0 309 328 r 1.41761 3 4 tcp 1000 ------- 0 0.0 4.0 9 305 + 1.41761 4 3 ack 48 ------- 0 4.0 0.0 5 373 - 1.41761 4 3 ack 48 ------- 0 4.0 0.0 5 373 - 1.41761 2 3 cbr 210 ------- 1 1.0 5.0 330 349 r 1.41841 3 5 cbr 210 ------- 1 1.0 5.0 297 314 + 1.42 1 2 cbr 210 ------- 1 1.0 5.0 352 374 - 1.42 1 2 cbr 210 ------- 1 1.0 5.0 352 374 r 1.42057 2 3 cbr 210 ------- 1 1.0 5.0 310 329 + 1.42057 3 5 cbr 210 ------- 1 1.0 5.0 310 329 - 1.42057 3 5 cbr 210 ------- 1 1.0 5.0 310 329 r 1.42086 1 2 cbr 210 ------- 1 1.0 5.0 338 358 + 1.42086 2 3 cbr 210 ------- 1 1.0 5.0 338 358 - 1.42097 2 3 cbr 210 ------- 1 1.0 5.0 331 350 r 1.42177 3 5 cbr 210 ------- 1 1.0 5.0 299 318 + 1.42375 1 2 cbr 210 ------- 1 1.0 5.0 353 375 - 1.42375 1 2 cbr 210 ------- 1 1.0 5.0 353 375 r 1.42393 2 3 cbr 210 ------- 1 1.0 5.0 311 330 + 1.42393 3 5 cbr 210 ------- 1 1.0 5.0 311 330 - 1.42393 3 5 cbr 210 ------- 1 1.0 5.0 311 330 - 1.42433 2 3 cbr 210 ------- 1 1.0 5.0 332 351 r 1.42461 1 2 cbr 210 ------- 1 1.0 5.0 339 359 + 1.42461 2 3 cbr 210 ------- 1 1.0 5.0 339 359 r 1.42513 3 5 cbr 210 ------- 1 1.0 5.0 300 319 r 1.42729 2 3 cbr 210 ------- 1 1.0 5.0 312 331 + 1.42729 3 5 cbr 210 ------- 1 1.0 5.0 312 331 - 1.42729 3 5 cbr 210 ------- 1 1.0 5.0 312 331 + 1.4275 1 2 cbr 210 ------- 1 1.0 5.0 354 376 - 1.4275 1 2 cbr 210 ------- 1 1.0 5.0 354 376 - 1.42769 2 3 cbr 210 ------- 1 1.0 5.0 333 352 r 1.42836 1 2 cbr 210 ------- 1 1.0 5.0 340 360 + 1.42836 2 3 cbr 210 ------- 1 1.0 5.0 340 360 r 1.42849 3 5 cbr 210 ------- 1 1.0 5.0 301 320 r 1.43065 2 3 cbr 210 ------- 1 1.0 5.0 313 332 + 1.43065 3 5 cbr 210 ------- 1 1.0 5.0 313 332 - 1.43065 3 5 cbr 210 ------- 1 1.0 5.0 313 332 - 1.43105 2 3 cbr 210 ------- 1 1.0 5.0 334 353 + 1.43125 1 2 cbr 210 ------- 1 1.0 5.0 355 377 - 1.43125 1 2 cbr 210 ------- 1 1.0 5.0 355 377 r 1.43185 3 5 cbr 210 ------- 1 1.0 5.0 302 321 r 1.43211 1 2 cbr 210 ------- 1 1.0 5.0 341 361 + 1.43211 2 3 cbr 210 ------- 1 1.0 5.0 341 361 r 1.43401 2 3 cbr 210 ------- 1 1.0 5.0 314 333 + 1.43401 3 5 cbr 210 ------- 1 1.0 5.0 314 333 - 1.43401 3 5 cbr 210 ------- 1 1.0 5.0 314 333 - 1.43441 2 3 cbr 210 ------- 1 1.0 5.0 335 354 + 1.435 1 2 cbr 210 ------- 1 1.0 5.0 356 378 - 1.435 1 2 cbr 210 ------- 1 1.0 5.0 356 378 r 1.43586 1 2 cbr 210 ------- 1 1.0 5.0 342 362 + 1.43586 2 3 cbr 210 ------- 1 1.0 5.0 342 362 r 1.43737 2 3 cbr 210 ------- 1 1.0 5.0 315 334 + 1.43737 3 5 cbr 210 ------- 1 1.0 5.0 315 334 - 1.43737 3 5 cbr 210 ------- 1 1.0 5.0 315 334 - 1.43777 2 3 cbr 210 ------- 1 1.0 5.0 336 356 + 1.43875 1 2 cbr 210 ------- 1 1.0 5.0 357 379 - 1.43875 1 2 cbr 210 ------- 1 1.0 5.0 357 379 r 1.43894 4 3 ack 48 ------- 0 4.0 0.0 5 364 + 1.43894 3 2 ack 48 ------- 0 4.0 0.0 5 364 - 1.43894 3 2 ack 48 ------- 0 4.0 0.0 5 364 r 1.43961 1 2 cbr 210 ------- 1 1.0 5.0 343 363 + 1.43961 2 3 cbr 210 ------- 1 1.0 5.0 343 363 r 1.44073 2 3 cbr 210 ------- 1 1.0 5.0 318 337 + 1.44073 3 5 cbr 210 ------- 1 1.0 5.0 318 337 - 1.44073 3 5 cbr 210 ------- 1 1.0 5.0 318 337 - 1.44113 2 3 cbr 210 ------- 1 1.0 5.0 337 357 + 1.4425 1 2 cbr 210 ------- 1 1.0 5.0 358 380 - 1.4425 1 2 cbr 210 ------- 1 1.0 5.0 358 380 r 1.44336 1 2 cbr 210 ------- 1 1.0 5.0 344 365 + 1.44336 2 3 cbr 210 ------- 1 1.0 5.0 344 365 r 1.44409 2 3 cbr 210 ------- 1 1.0 5.0 322 341 + 1.44409 3 5 cbr 210 ------- 1 1.0 5.0 322 341 - 1.44409 3 5 cbr 210 ------- 1 1.0 5.0 322 341 - 1.44449 2 3 cbr 210 ------- 1 1.0 5.0 338 358 + 1.44625 1 2 cbr 210 ------- 1 1.0 5.0 359 381 - 1.44625 1 2 cbr 210 ------- 1 1.0 5.0 359 381 r 1.44711 1 2 cbr 210 ------- 1 1.0 5.0 345 366 + 1.44711 2 3 cbr 210 ------- 1 1.0 5.0 345 366 r 1.44745 2 3 cbr 210 ------- 1 1.0 5.0 323 342 + 1.44745 3 5 cbr 210 ------- 1 1.0 5.0 323 342 - 1.44745 3 5 cbr 210 ------- 1 1.0 5.0 323 342 - 1.44785 2 3 cbr 210 ------- 1 1.0 5.0 339 359 + 1.45 1 2 cbr 210 ------- 1 1.0 5.0 360 382 - 1.45 1 2 cbr 210 ------- 1 1.0 5.0 360 382 r 1.45081 2 3 cbr 210 ------- 1 1.0 5.0 324 343 + 1.45081 3 5 cbr 210 ------- 1 1.0 5.0 324 343 - 1.45081 3 5 cbr 210 ------- 1 1.0 5.0 324 343 r 1.45086 1 2 cbr 210 ------- 1 1.0 5.0 346 367 + 1.45086 2 3 cbr 210 ------- 1 1.0 5.0 346 367 - 1.45121 2 3 cbr 210 ------- 1 1.0 5.0 340 360 + 1.45375 1 2 cbr 210 ------- 1 1.0 5.0 361 383 - 1.45375 1 2 cbr 210 ------- 1 1.0 5.0 361 383 r 1.45417 2 3 cbr 210 ------- 1 1.0 5.0 325 344 + 1.45417 3 5 cbr 210 ------- 1 1.0 5.0 325 344 - 1.45417 3 5 cbr 210 ------- 1 1.0 5.0 325 344 - 1.45457 2 3 cbr 210 ------- 1 1.0 5.0 341 361 r 1.45461 1 2 cbr 210 ------- 1 1.0 5.0 347 368 + 1.45461 2 3 cbr 210 ------- 1 1.0 5.0 347 368 + 1.4575 1 2 cbr 210 ------- 1 1.0 5.0 362 384 - 1.4575 1 2 cbr 210 ------- 1 1.0 5.0 362 384 r 1.45753 2 3 cbr 210 ------- 1 1.0 5.0 326 345 + 1.45753 3 5 cbr 210 ------- 1 1.0 5.0 326 345 - 1.45753 3 5 cbr 210 ------- 1 1.0 5.0 326 345 - 1.45793 2 3 cbr 210 ------- 1 1.0 5.0 342 362 r 1.45836 1 2 cbr 210 ------- 1 1.0 5.0 348 369 + 1.45836 2 3 cbr 210 ------- 1 1.0 5.0 348 369 v 1.46 eval {set sim_annotation {Send Packet_14,15 : 1 packet per ack}} r 1.46027 3 2 ack 48 ------- 0 4.0 0.0 5 355 + 1.46027 2 0 ack 48 ------- 0 4.0 0.0 5 355 - 1.46027 2 0 ack 48 ------- 0 4.0 0.0 5 355 r 1.46049 3 4 tcp 1000 ------- 0 0.0 4.0 11 315 + 1.46049 4 3 ack 56 ------- 0 4.0 0.0 5 385 - 1.46049 4 3 ack 56 ------- 0 4.0 0.0 5 385 r 1.46089 2 3 cbr 210 ------- 1 1.0 5.0 327 346 + 1.46089 3 5 cbr 210 ------- 1 1.0 5.0 327 346 - 1.46089 3 5 cbr 210 ------- 1 1.0 5.0 327 346 + 1.46125 1 2 cbr 210 ------- 1 1.0 5.0 363 386 - 1.46125 1 2 cbr 210 ------- 1 1.0 5.0 363 386 - 1.46129 2 3 cbr 210 ------- 1 1.0 5.0 343 363 r 1.46211 1 2 cbr 210 ------- 1 1.0 5.0 349 370 + 1.46211 2 3 cbr 210 ------- 1 1.0 5.0 349 370 r 1.46425 2 3 cbr 210 ------- 1 1.0 5.0 328 347 + 1.46425 3 5 cbr 210 ------- 1 1.0 5.0 328 347 - 1.46425 3 5 cbr 210 ------- 1 1.0 5.0 328 347 - 1.46465 2 3 cbr 210 ------- 1 1.0 5.0 344 365 + 1.465 1 2 cbr 210 ------- 1 1.0 5.0 364 387 - 1.465 1 2 cbr 210 ------- 1 1.0 5.0 364 387 r 1.46586 1 2 cbr 210 ------- 1 1.0 5.0 350 371 + 1.46586 2 3 cbr 210 ------- 1 1.0 5.0 350 371 r 1.46721 3 5 cbr 210 ------- 1 1.0 5.0 308 327 r 1.46761 2 3 cbr 210 ------- 1 1.0 5.0 329 348 + 1.46761 3 5 cbr 210 ------- 1 1.0 5.0 329 348 - 1.46761 3 5 cbr 210 ------- 1 1.0 5.0 329 348 - 1.46801 2 3 cbr 210 ------- 1 1.0 5.0 345 366 r 1.46838 4 3 ack 48 ------- 0 4.0 0.0 5 373 + 1.46838 3 2 ack 48 ------- 0 4.0 0.0 5 373 - 1.46838 3 2 ack 48 ------- 0 4.0 0.0 5 373 + 1.46875 1 2 cbr 210 ------- 1 1.0 5.0 365 388 - 1.46875 1 2 cbr 210 ------- 1 1.0 5.0 365 388 r 1.46961 1 2 cbr 210 ------- 1 1.0 5.0 351 372 + 1.46961 2 3 cbr 210 ------- 1 1.0 5.0 351 372 r 1.47057 3 5 cbr 210 ------- 1 1.0 5.0 309 328 r 1.47097 2 3 cbr 210 ------- 1 1.0 5.0 330 349 + 1.47097 3 5 cbr 210 ------- 1 1.0 5.0 330 349 - 1.47097 3 5 cbr 210 ------- 1 1.0 5.0 330 349 - 1.47137 2 3 cbr 210 ------- 1 1.0 5.0 346 367 + 1.4725 1 2 cbr 210 ------- 1 1.0 5.0 366 389 - 1.4725 1 2 cbr 210 ------- 1 1.0 5.0 366 389 r 1.47336 1 2 cbr 210 ------- 1 1.0 5.0 352 374 + 1.47336 2 3 cbr 210 ------- 1 1.0 5.0 352 374 r 1.47393 3 5 cbr 210 ------- 1 1.0 5.0 310 329 r 1.47433 2 3 cbr 210 ------- 1 1.0 5.0 331 350 + 1.47433 3 5 cbr 210 ------- 1 1.0 5.0 331 350 - 1.47433 3 5 cbr 210 ------- 1 1.0 5.0 331 350 - 1.47473 2 3 cbr 210 ------- 1 1.0 5.0 347 368 + 1.47625 1 2 cbr 210 ------- 1 1.0 5.0 367 390 - 1.47625 1 2 cbr 210 ------- 1 1.0 5.0 367 390 r 1.47649 3 4 tcp 1000 ------- 0 0.0 4.0 12 316 + 1.47649 4 3 ack 56 ------- 0 4.0 0.0 5 391 - 1.47649 4 3 ack 56 ------- 0 4.0 0.0 5 391 r 1.47711 1 2 cbr 210 ------- 1 1.0 5.0 353 375 + 1.47711 2 3 cbr 210 ------- 1 1.0 5.0 353 375 r 1.47729 3 5 cbr 210 ------- 1 1.0 5.0 311 330 r 1.47769 2 3 cbr 210 ------- 1 1.0 5.0 332 351 + 1.47769 3 5 cbr 210 ------- 1 1.0 5.0 332 351 - 1.47769 3 5 cbr 210 ------- 1 1.0 5.0 332 351 - 1.47809 2 3 cbr 210 ------- 1 1.0 5.0 348 369 + 1.48 1 2 cbr 210 ------- 1 1.0 5.0 368 392 - 1.48 1 2 cbr 210 ------- 1 1.0 5.0 368 392 r 1.48065 3 5 cbr 210 ------- 1 1.0 5.0 312 331 r 1.48086 1 2 cbr 210 ------- 1 1.0 5.0 354 376 + 1.48086 2 3 cbr 210 ------- 1 1.0 5.0 354 376 r 1.48105 2 3 cbr 210 ------- 1 1.0 5.0 333 352 + 1.48105 3 5 cbr 210 ------- 1 1.0 5.0 333 352 - 1.48105 3 5 cbr 210 ------- 1 1.0 5.0 333 352 - 1.48145 2 3 cbr 210 ------- 1 1.0 5.0 349 370 + 1.48375 1 2 cbr 210 ------- 1 1.0 5.0 369 393 - 1.48375 1 2 cbr 210 ------- 1 1.0 5.0 369 393 r 1.48401 3 5 cbr 210 ------- 1 1.0 5.0 313 332 r 1.48441 2 3 cbr 210 ------- 1 1.0 5.0 334 353 + 1.48441 3 5 cbr 210 ------- 1 1.0 5.0 334 353 - 1.48441 3 5 cbr 210 ------- 1 1.0 5.0 334 353 r 1.48461 1 2 cbr 210 ------- 1 1.0 5.0 355 377 + 1.48461 2 3 cbr 210 ------- 1 1.0 5.0 355 377 - 1.48481 2 3 cbr 210 ------- 1 1.0 5.0 350 371 r 1.48737 3 5 cbr 210 ------- 1 1.0 5.0 314 333 + 1.4875 1 2 cbr 210 ------- 1 1.0 5.0 370 394 - 1.4875 1 2 cbr 210 ------- 1 1.0 5.0 370 394 r 1.48777 2 3 cbr 210 ------- 1 1.0 5.0 335 354 + 1.48777 3 5 cbr 210 ------- 1 1.0 5.0 335 354 - 1.48777 3 5 cbr 210 ------- 1 1.0 5.0 335 354 - 1.48817 2 3 cbr 210 ------- 1 1.0 5.0 351 372 r 1.48836 1 2 cbr 210 ------- 1 1.0 5.0 356 378 + 1.48836 2 3 cbr 210 ------- 1 1.0 5.0 356 378 r 1.48971 3 2 ack 48 ------- 0 4.0 0.0 5 364 + 1.48971 2 0 ack 48 ------- 0 4.0 0.0 5 364 - 1.48971 2 0 ack 48 ------- 0 4.0 0.0 5 364 r 1.49073 3 5 cbr 210 ------- 1 1.0 5.0 315 334 r 1.49113 2 3 cbr 210 ------- 1 1.0 5.0 336 356 + 1.49113 3 5 cbr 210 ------- 1 1.0 5.0 336 356 - 1.49113 3 5 cbr 210 ------- 1 1.0 5.0 336 356 + 1.49125 1 2 cbr 210 ------- 1 1.0 5.0 371 395 - 1.49125 1 2 cbr 210 ------- 1 1.0 5.0 371 395 - 1.49153 2 3 cbr 210 ------- 1 1.0 5.0 352 374 r 1.49211 1 2 cbr 210 ------- 1 1.0 5.0 357 379 + 1.49211 2 3 cbr 210 ------- 1 1.0 5.0 357 379 r 1.49409 3 5 cbr 210 ------- 1 1.0 5.0 318 337 r 1.49449 2 3 cbr 210 ------- 1 1.0 5.0 337 357 + 1.49449 3 5 cbr 210 ------- 1 1.0 5.0 337 357 - 1.49449 3 5 cbr 210 ------- 1 1.0 5.0 337 357 - 1.49489 2 3 cbr 210 ------- 1 1.0 5.0 353 375 + 1.495 1 2 cbr 210 ------- 1 1.0 5.0 372 396 - 1.495 1 2 cbr 210 ------- 1 1.0 5.0 372 396 r 1.49586 1 2 cbr 210 ------- 1 1.0 5.0 358 380 + 1.49586 2 3 cbr 210 ------- 1 1.0 5.0 358 380 r 1.49745 3 5 cbr 210 ------- 1 1.0 5.0 322 341 r 1.49785 2 3 cbr 210 ------- 1 1.0 5.0 338 358 + 1.49785 3 5 cbr 210 ------- 1 1.0 5.0 338 358 - 1.49785 3 5 cbr 210 ------- 1 1.0 5.0 338 358 - 1.49825 2 3 cbr 210 ------- 1 1.0 5.0 354 376 + 1.49875 1 2 cbr 210 ------- 1 1.0 5.0 373 397 - 1.49875 1 2 cbr 210 ------- 1 1.0 5.0 373 397 r 1.49961 1 2 cbr 210 ------- 1 1.0 5.0 359 381 + 1.49961 2 3 cbr 210 ------- 1 1.0 5.0 359 381 r 1.50081 3 5 cbr 210 ------- 1 1.0 5.0 323 342 r 1.50121 2 3 cbr 210 ------- 1 1.0 5.0 339 359 + 1.50121 3 5 cbr 210 ------- 1 1.0 5.0 339 359 - 1.50121 3 5 cbr 210 ------- 1 1.0 5.0 339 359 - 1.50161 2 3 cbr 210 ------- 1 1.0 5.0 355 377 + 1.5025 1 2 cbr 210 ------- 1 1.0 5.0 374 398 - 1.5025 1 2 cbr 210 ------- 1 1.0 5.0 374 398 r 1.50336 1 2 cbr 210 ------- 1 1.0 5.0 360 382 + 1.50336 2 3 cbr 210 ------- 1 1.0 5.0 360 382 r 1.50417 3 5 cbr 210 ------- 1 1.0 5.0 324 343 r 1.50457 2 3 cbr 210 ------- 1 1.0 5.0 340 360 + 1.50457 3 5 cbr 210 ------- 1 1.0 5.0 340 360 - 1.50457 3 5 cbr 210 ------- 1 1.0 5.0 340 360 - 1.50497 2 3 cbr 210 ------- 1 1.0 5.0 356 378 + 1.50625 1 2 cbr 210 ------- 1 1.0 5.0 375 399 - 1.50625 1 2 cbr 210 ------- 1 1.0 5.0 375 399 r 1.50711 1 2 cbr 210 ------- 1 1.0 5.0 361 383 + 1.50711 2 3 cbr 210 ------- 1 1.0 5.0 361 383 r 1.50753 3 5 cbr 210 ------- 1 1.0 5.0 325 344 r 1.50793 2 3 cbr 210 ------- 1 1.0 5.0 341 361 + 1.50793 3 5 cbr 210 ------- 1 1.0 5.0 341 361 - 1.50793 3 5 cbr 210 ------- 1 1.0 5.0 341 361 - 1.50833 2 3 cbr 210 ------- 1 1.0 5.0 357 379 + 1.51 1 2 cbr 210 ------- 1 1.0 5.0 376 400 - 1.51 1 2 cbr 210 ------- 1 1.0 5.0 376 400 r 1.51086 1 2 cbr 210 ------- 1 1.0 5.0 362 384 + 1.51086 2 3 cbr 210 ------- 1 1.0 5.0 362 384 r 1.51089 3 5 cbr 210 ------- 1 1.0 5.0 326 345 r 1.51103 2 0 ack 48 ------- 0 4.0 0.0 5 355 r 1.51129 2 3 cbr 210 ------- 1 1.0 5.0 342 362 + 1.51129 3 5 cbr 210 ------- 1 1.0 5.0 342 362 - 1.51129 3 5 cbr 210 ------- 1 1.0 5.0 342 362 r 1.51139 4 3 ack 56 ------- 0 4.0 0.0 5 385 + 1.51139 3 2 ack 56 ------- 0 4.0 0.0 5 385 - 1.51139 3 2 ack 56 ------- 0 4.0 0.0 5 385 - 1.51169 2 3 cbr 210 ------- 1 1.0 5.0 358 380 + 1.51375 1 2 cbr 210 ------- 1 1.0 5.0 377 401 - 1.51375 1 2 cbr 210 ------- 1 1.0 5.0 377 401 r 1.51425 3 5 cbr 210 ------- 1 1.0 5.0 327 346 r 1.51461 1 2 cbr 210 ------- 1 1.0 5.0 363 386 + 1.51461 2 3 cbr 210 ------- 1 1.0 5.0 363 386 r 1.51465 2 3 cbr 210 ------- 1 1.0 5.0 343 363 + 1.51465 3 5 cbr 210 ------- 1 1.0 5.0 343 363 - 1.51465 3 5 cbr 210 ------- 1 1.0 5.0 343 363 - 1.51505 2 3 cbr 210 ------- 1 1.0 5.0 359 381 + 1.5175 1 2 cbr 210 ------- 1 1.0 5.0 378 402 - 1.5175 1 2 cbr 210 ------- 1 1.0 5.0 378 402 r 1.51761 3 5 cbr 210 ------- 1 1.0 5.0 328 347 r 1.51801 2 3 cbr 210 ------- 1 1.0 5.0 344 365 + 1.51801 3 5 cbr 210 ------- 1 1.0 5.0 344 365 - 1.51801 3 5 cbr 210 ------- 1 1.0 5.0 344 365 r 1.51836 1 2 cbr 210 ------- 1 1.0 5.0 364 387 + 1.51836 2 3 cbr 210 ------- 1 1.0 5.0 364 387 - 1.51841 2 3 cbr 210 ------- 1 1.0 5.0 360 382 r 1.51915 3 2 ack 48 ------- 0 4.0 0.0 5 373 + 1.51915 2 0 ack 48 ------- 0 4.0 0.0 5 373 - 1.51915 2 0 ack 48 ------- 0 4.0 0.0 5 373 r 1.52097 3 5 cbr 210 ------- 1 1.0 5.0 329 348 + 1.52125 1 2 cbr 210 ------- 1 1.0 5.0 379 403 - 1.52125 1 2 cbr 210 ------- 1 1.0 5.0 379 403 r 1.52137 2 3 cbr 210 ------- 1 1.0 5.0 345 366 + 1.52137 3 5 cbr 210 ------- 1 1.0 5.0 345 366 - 1.52137 3 5 cbr 210 ------- 1 1.0 5.0 345 366 - 1.52177 2 3 cbr 210 ------- 1 1.0 5.0 361 383 r 1.52211 1 2 cbr 210 ------- 1 1.0 5.0 365 388 + 1.52211 2 3 cbr 210 ------- 1 1.0 5.0 365 388 r 1.52433 3 5 cbr 210 ------- 1 1.0 5.0 330 349 r 1.52473 2 3 cbr 210 ------- 1 1.0 5.0 346 367 + 1.52473 3 5 cbr 210 ------- 1 1.0 5.0 346 367 - 1.52473 3 5 cbr 210 ------- 1 1.0 5.0 346 367 + 1.525 1 2 cbr 210 ------- 1 1.0 5.0 380 404 - 1.525 1 2 cbr 210 ------- 1 1.0 5.0 380 404 - 1.52513 2 3 cbr 210 ------- 1 1.0 5.0 362 384 r 1.52586 1 2 cbr 210 ------- 1 1.0 5.0 366 389 + 1.52586 2 3 cbr 210 ------- 1 1.0 5.0 366 389 r 1.52739 4 3 ack 56 ------- 0 4.0 0.0 5 391 + 1.52739 3 2 ack 56 ------- 0 4.0 0.0 5 391 - 1.52739 3 2 ack 56 ------- 0 4.0 0.0 5 391 r 1.52769 3 5 cbr 210 ------- 1 1.0 5.0 331 350 r 1.52809 2 3 cbr 210 ------- 1 1.0 5.0 347 368 + 1.52809 3 5 cbr 210 ------- 1 1.0 5.0 347 368 - 1.52809 3 5 cbr 210 ------- 1 1.0 5.0 347 368 - 1.52849 2 3 cbr 210 ------- 1 1.0 5.0 363 386 + 1.52875 1 2 cbr 210 ------- 1 1.0 5.0 381 405 - 1.52875 1 2 cbr 210 ------- 1 1.0 5.0 381 405 r 1.52961 1 2 cbr 210 ------- 1 1.0 5.0 367 390 + 1.52961 2 3 cbr 210 ------- 1 1.0 5.0 367 390 r 1.53105 3 5 cbr 210 ------- 1 1.0 5.0 332 351 r 1.53145 2 3 cbr 210 ------- 1 1.0 5.0 348 369 + 1.53145 3 5 cbr 210 ------- 1 1.0 5.0 348 369 - 1.53145 3 5 cbr 210 ------- 1 1.0 5.0 348 369 - 1.53185 2 3 cbr 210 ------- 1 1.0 5.0 364 387 + 1.5325 1 2 cbr 210 ------- 1 1.0 5.0 382 406 - 1.5325 1 2 cbr 210 ------- 1 1.0 5.0 382 406 r 1.53336 1 2 cbr 210 ------- 1 1.0 5.0 368 392 + 1.53336 2 3 cbr 210 ------- 1 1.0 5.0 368 392 r 1.53441 3 5 cbr 210 ------- 1 1.0 5.0 333 352 r 1.53481 2 3 cbr 210 ------- 1 1.0 5.0 349 370 + 1.53481 3 5 cbr 210 ------- 1 1.0 5.0 349 370 - 1.53481 3 5 cbr 210 ------- 1 1.0 5.0 349 370 - 1.53521 2 3 cbr 210 ------- 1 1.0 5.0 365 388 + 1.53625 1 2 cbr 210 ------- 1 1.0 5.0 383 407 - 1.53625 1 2 cbr 210 ------- 1 1.0 5.0 383 407 r 1.53711 1 2 cbr 210 ------- 1 1.0 5.0 369 393 + 1.53711 2 3 cbr 210 ------- 1 1.0 5.0 369 393 r 1.53777 3 5 cbr 210 ------- 1 1.0 5.0 334 353 r 1.53817 2 3 cbr 210 ------- 1 1.0 5.0 350 371 + 1.53817 3 5 cbr 210 ------- 1 1.0 5.0 350 371 - 1.53817 3 5 cbr 210 ------- 1 1.0 5.0 350 371 - 1.53857 2 3 cbr 210 ------- 1 1.0 5.0 366 389 + 1.54 1 2 cbr 210 ------- 1 1.0 5.0 384 408 - 1.54 1 2 cbr 210 ------- 1 1.0 5.0 384 408 r 1.54047 2 0 ack 48 ------- 0 4.0 0.0 5 364 r 1.54086 1 2 cbr 210 ------- 1 1.0 5.0 370 394 + 1.54086 2 3 cbr 210 ------- 1 1.0 5.0 370 394 r 1.54113 3 5 cbr 210 ------- 1 1.0 5.0 335 354 r 1.54153 2 3 cbr 210 ------- 1 1.0 5.0 351 372 + 1.54153 3 5 cbr 210 ------- 1 1.0 5.0 351 372 - 1.54153 3 5 cbr 210 ------- 1 1.0 5.0 351 372 - 1.54193 2 3 cbr 210 ------- 1 1.0 5.0 367 390 + 1.54375 1 2 cbr 210 ------- 1 1.0 5.0 385 409 - 1.54375 1 2 cbr 210 ------- 1 1.0 5.0 385 409 r 1.54449 3 5 cbr 210 ------- 1 1.0 5.0 336 356 r 1.54461 1 2 cbr 210 ------- 1 1.0 5.0 371 395 + 1.54461 2 3 cbr 210 ------- 1 1.0 5.0 371 395 r 1.54489 2 3 cbr 210 ------- 1 1.0 5.0 352 374 + 1.54489 3 5 cbr 210 ------- 1 1.0 5.0 352 374 - 1.54489 3 5 cbr 210 ------- 1 1.0 5.0 352 374 - 1.54529 2 3 cbr 210 ------- 1 1.0 5.0 368 392 + 1.5475 1 2 cbr 210 ------- 1 1.0 5.0 386 410 - 1.5475 1 2 cbr 210 ------- 1 1.0 5.0 386 410 r 1.54785 3 5 cbr 210 ------- 1 1.0 5.0 337 357 r 1.54825 2 3 cbr 210 ------- 1 1.0 5.0 353 375 + 1.54825 3 5 cbr 210 ------- 1 1.0 5.0 353 375 - 1.54825 3 5 cbr 210 ------- 1 1.0 5.0 353 375 r 1.54836 1 2 cbr 210 ------- 1 1.0 5.0 372 396 + 1.54836 2 3 cbr 210 ------- 1 1.0 5.0 372 396 - 1.54865 2 3 cbr 210 ------- 1 1.0 5.0 369 393 r 1.55121 3 5 cbr 210 ------- 1 1.0 5.0 338 358 + 1.55125 1 2 cbr 210 ------- 1 1.0 5.0 387 411 - 1.55125 1 2 cbr 210 ------- 1 1.0 5.0 387 411 r 1.55161 2 3 cbr 210 ------- 1 1.0 5.0 354 376 + 1.55161 3 5 cbr 210 ------- 1 1.0 5.0 354 376 - 1.55161 3 5 cbr 210 ------- 1 1.0 5.0 354 376 - 1.55201 2 3 cbr 210 ------- 1 1.0 5.0 370 394 r 1.55211 1 2 cbr 210 ------- 1 1.0 5.0 373 397 + 1.55211 2 3 cbr 210 ------- 1 1.0 5.0 373 397 r 1.55457 3 5 cbr 210 ------- 1 1.0 5.0 339 359 r 1.55497 2 3 cbr 210 ------- 1 1.0 5.0 355 377 + 1.55497 3 5 cbr 210 ------- 1 1.0 5.0 355 377 - 1.55497 3 5 cbr 210 ------- 1 1.0 5.0 355 377 + 1.555 1 2 cbr 210 ------- 1 1.0 5.0 388 412 - 1.555 1 2 cbr 210 ------- 1 1.0 5.0 388 412 - 1.55537 2 3 cbr 210 ------- 1 1.0 5.0 371 395 r 1.55586 1 2 cbr 210 ------- 1 1.0 5.0 374 398 + 1.55586 2 3 cbr 210 ------- 1 1.0 5.0 374 398 r 1.55793 3 5 cbr 210 ------- 1 1.0 5.0 340 360 r 1.55833 2 3 cbr 210 ------- 1 1.0 5.0 356 378 + 1.55833 3 5 cbr 210 ------- 1 1.0 5.0 356 378 - 1.55833 3 5 cbr 210 ------- 1 1.0 5.0 356 378 - 1.55873 2 3 cbr 210 ------- 1 1.0 5.0 372 396 + 1.55875 1 2 cbr 210 ------- 1 1.0 5.0 389 413 - 1.55875 1 2 cbr 210 ------- 1 1.0 5.0 389 413 r 1.55961 1 2 cbr 210 ------- 1 1.0 5.0 375 399 + 1.55961 2 3 cbr 210 ------- 1 1.0 5.0 375 399 r 1.56129 3 5 cbr 210 ------- 1 1.0 5.0 341 361 r 1.56169 2 3 cbr 210 ------- 1 1.0 5.0 357 379 + 1.56169 3 5 cbr 210 ------- 1 1.0 5.0 357 379 - 1.56169 3 5 cbr 210 ------- 1 1.0 5.0 357 379 - 1.56209 2 3 cbr 210 ------- 1 1.0 5.0 373 397 r 1.56228 3 2 ack 56 ------- 0 4.0 0.0 5 385 + 1.56228 2 0 ack 56 ------- 0 4.0 0.0 5 385 - 1.56228 2 0 ack 56 ------- 0 4.0 0.0 5 385 + 1.5625 1 2 cbr 210 ------- 1 1.0 5.0 390 414 - 1.5625 1 2 cbr 210 ------- 1 1.0 5.0 390 414 r 1.56336 1 2 cbr 210 ------- 1 1.0 5.0 376 400 + 1.56336 2 3 cbr 210 ------- 1 1.0 5.0 376 400 r 1.56465 3 5 cbr 210 ------- 1 1.0 5.0 342 362 r 1.56505 2 3 cbr 210 ------- 1 1.0 5.0 358 380 + 1.56505 3 5 cbr 210 ------- 1 1.0 5.0 358 380 - 1.56505 3 5 cbr 210 ------- 1 1.0 5.0 358 380 - 1.56545 2 3 cbr 210 ------- 1 1.0 5.0 374 398 + 1.56625 1 2 cbr 210 ------- 1 1.0 5.0 391 415 - 1.56625 1 2 cbr 210 ------- 1 1.0 5.0 391 415 r 1.56711 1 2 cbr 210 ------- 1 1.0 5.0 377 401 + 1.56711 2 3 cbr 210 ------- 1 1.0 5.0 377 401 r 1.56801 3 5 cbr 210 ------- 1 1.0 5.0 343 363 r 1.56841 2 3 cbr 210 ------- 1 1.0 5.0 359 381 + 1.56841 3 5 cbr 210 ------- 1 1.0 5.0 359 381 - 1.56841 3 5 cbr 210 ------- 1 1.0 5.0 359 381 - 1.56881 2 3 cbr 210 ------- 1 1.0 5.0 375 399 r 1.56991 2 0 ack 48 ------- 0 4.0 0.0 5 373 + 1.56991 0 2 tcp 1000 ---A--- 0 0.0 4.0 6 416 - 1.56991 0 2 tcp 1000 ---A--- 0 0.0 4.0 6 416 + 1.57 1 2 cbr 210 ------- 1 1.0 5.0 392 417 - 1.57 1 2 cbr 210 ------- 1 1.0 5.0 392 417 r 1.57086 1 2 cbr 210 ------- 1 1.0 5.0 378 402 + 1.57086 2 3 cbr 210 ------- 1 1.0 5.0 378 402 r 1.57137 3 5 cbr 210 ------- 1 1.0 5.0 344 365 r 1.57177 2 3 cbr 210 ------- 1 1.0 5.0 360 382 + 1.57177 3 5 cbr 210 ------- 1 1.0 5.0 360 382 - 1.57177 3 5 cbr 210 ------- 1 1.0 5.0 360 382 - 1.57217 2 3 cbr 210 ------- 1 1.0 5.0 376 400 + 1.57375 1 2 cbr 210 ------- 1 1.0 5.0 393 418 - 1.57375 1 2 cbr 210 ------- 1 1.0 5.0 393 418 r 1.57461 1 2 cbr 210 ------- 1 1.0 5.0 379 403 + 1.57461 2 3 cbr 210 ------- 1 1.0 5.0 379 403 r 1.57473 3 5 cbr 210 ------- 1 1.0 5.0 345 366 r 1.57513 2 3 cbr 210 ------- 1 1.0 5.0 361 383 + 1.57513 3 5 cbr 210 ------- 1 1.0 5.0 361 383 - 1.57513 3 5 cbr 210 ------- 1 1.0 5.0 361 383 - 1.57553 2 3 cbr 210 ------- 1 1.0 5.0 377 401 + 1.5775 1 2 cbr 210 ------- 1 1.0 5.0 394 419 - 1.5775 1 2 cbr 210 ------- 1 1.0 5.0 394 419 r 1.57809 3 5 cbr 210 ------- 1 1.0 5.0 346 367 r 1.57828 3 2 ack 56 ------- 0 4.0 0.0 5 391 + 1.57828 2 0 ack 56 ------- 0 4.0 0.0 5 391 - 1.57828 2 0 ack 56 ------- 0 4.0 0.0 5 391 r 1.57836 1 2 cbr 210 ------- 1 1.0 5.0 380 404 + 1.57836 2 3 cbr 210 ------- 1 1.0 5.0 380 404 r 1.57849 2 3 cbr 210 ------- 1 1.0 5.0 362 384 + 1.57849 3 5 cbr 210 ------- 1 1.0 5.0 362 384 - 1.57849 3 5 cbr 210 ------- 1 1.0 5.0 362 384 - 1.57889 2 3 cbr 210 ------- 1 1.0 5.0 378 402 v 1.5800000000000001 eval {set sim_annotation {2 Ack_12s : 2 acks are coming}} + 1.58125 1 2 cbr 210 ------- 1 1.0 5.0 395 420 - 1.58125 1 2 cbr 210 ------- 1 1.0 5.0 395 420 r 1.58145 3 5 cbr 210 ------- 1 1.0 5.0 347 368 r 1.58185 2 3 cbr 210 ------- 1 1.0 5.0 363 386 + 1.58185 3 5 cbr 210 ------- 1 1.0 5.0 363 386 - 1.58185 3 5 cbr 210 ------- 1 1.0 5.0 363 386 r 1.58211 1 2 cbr 210 ------- 1 1.0 5.0 381 405 + 1.58211 2 3 cbr 210 ------- 1 1.0 5.0 381 405 - 1.58225 2 3 cbr 210 ------- 1 1.0 5.0 379 403 r 1.58481 3 5 cbr 210 ------- 1 1.0 5.0 348 369 + 1.585 1 2 cbr 210 ------- 1 1.0 5.0 396 421 - 1.585 1 2 cbr 210 ------- 1 1.0 5.0 396 421 r 1.58521 2 3 cbr 210 ------- 1 1.0 5.0 364 387 + 1.58521 3 5 cbr 210 ------- 1 1.0 5.0 364 387 - 1.58521 3 5 cbr 210 ------- 1 1.0 5.0 364 387 - 1.58561 2 3 cbr 210 ------- 1 1.0 5.0 380 404 r 1.58586 1 2 cbr 210 ------- 1 1.0 5.0 382 406 + 1.58586 2 3 cbr 210 ------- 1 1.0 5.0 382 406 r 1.58817 3 5 cbr 210 ------- 1 1.0 5.0 349 370 r 1.58857 2 3 cbr 210 ------- 1 1.0 5.0 365 388 + 1.58857 3 5 cbr 210 ------- 1 1.0 5.0 365 388 - 1.58857 3 5 cbr 210 ------- 1 1.0 5.0 365 388 + 1.58875 1 2 cbr 210 ------- 1 1.0 5.0 397 422 - 1.58875 1 2 cbr 210 ------- 1 1.0 5.0 397 422 - 1.58897 2 3 cbr 210 ------- 1 1.0 5.0 381 405 r 1.58961 1 2 cbr 210 ------- 1 1.0 5.0 383 407 + 1.58961 2 3 cbr 210 ------- 1 1.0 5.0 383 407 r 1.59153 3 5 cbr 210 ------- 1 1.0 5.0 350 371 r 1.59193 2 3 cbr 210 ------- 1 1.0 5.0 366 389 + 1.59193 3 5 cbr 210 ------- 1 1.0 5.0 366 389 - 1.59193 3 5 cbr 210 ------- 1 1.0 5.0 366 389 - 1.59233 2 3 cbr 210 ------- 1 1.0 5.0 382 406 + 1.5925 1 2 cbr 210 ------- 1 1.0 5.0 398 423 - 1.5925 1 2 cbr 210 ------- 1 1.0 5.0 398 423 r 1.59336 1 2 cbr 210 ------- 1 1.0 5.0 384 408 + 1.59336 2 3 cbr 210 ------- 1 1.0 5.0 384 408 r 1.59489 3 5 cbr 210 ------- 1 1.0 5.0 351 372 r 1.59529 2 3 cbr 210 ------- 1 1.0 5.0 367 390 + 1.59529 3 5 cbr 210 ------- 1 1.0 5.0 367 390 - 1.59529 3 5 cbr 210 ------- 1 1.0 5.0 367 390 - 1.59569 2 3 cbr 210 ------- 1 1.0 5.0 383 407 + 1.59625 1 2 cbr 210 ------- 1 1.0 5.0 399 424 - 1.59625 1 2 cbr 210 ------- 1 1.0 5.0 399 424 r 1.59711 1 2 cbr 210 ------- 1 1.0 5.0 385 409 + 1.59711 2 3 cbr 210 ------- 1 1.0 5.0 385 409 r 1.59825 3 5 cbr 210 ------- 1 1.0 5.0 352 374 r 1.59865 2 3 cbr 210 ------- 1 1.0 5.0 368 392 + 1.59865 3 5 cbr 210 ------- 1 1.0 5.0 368 392 - 1.59865 3 5 cbr 210 ------- 1 1.0 5.0 368 392 - 1.59905 2 3 cbr 210 ------- 1 1.0 5.0 384 408 + 1.6 1 2 cbr 210 ------- 1 1.0 5.0 400 425 - 1.6 1 2 cbr 210 ------- 1 1.0 5.0 400 425 r 1.60086 1 2 cbr 210 ------- 1 1.0 5.0 386 410 + 1.60086 2 3 cbr 210 ------- 1 1.0 5.0 386 410 r 1.60161 3 5 cbr 210 ------- 1 1.0 5.0 353 375 r 1.60201 2 3 cbr 210 ------- 1 1.0 5.0 369 393 + 1.60201 3 5 cbr 210 ------- 1 1.0 5.0 369 393 - 1.60201 3 5 cbr 210 ------- 1 1.0 5.0 369 393 - 1.60241 2 3 cbr 210 ------- 1 1.0 5.0 385 409 + 1.60375 1 2 cbr 210 ------- 1 1.0 5.0 401 426 - 1.60375 1 2 cbr 210 ------- 1 1.0 5.0 401 426 r 1.60461 1 2 cbr 210 ------- 1 1.0 5.0 387 411 + 1.60461 2 3 cbr 210 ------- 1 1.0 5.0 387 411 r 1.60497 3 5 cbr 210 ------- 1 1.0 5.0 354 376 r 1.60537 2 3 cbr 210 ------- 1 1.0 5.0 370 394 + 1.60537 3 5 cbr 210 ------- 1 1.0 5.0 370 394 - 1.60537 3 5 cbr 210 ------- 1 1.0 5.0 370 394 - 1.60577 2 3 cbr 210 ------- 1 1.0 5.0 386 410 + 1.6075 1 2 cbr 210 ------- 1 1.0 5.0 402 427 - 1.6075 1 2 cbr 210 ------- 1 1.0 5.0 402 427 r 1.60833 3 5 cbr 210 ------- 1 1.0 5.0 355 377 r 1.60836 1 2 cbr 210 ------- 1 1.0 5.0 388 412 + 1.60836 2 3 cbr 210 ------- 1 1.0 5.0 388 412 r 1.60873 2 3 cbr 210 ------- 1 1.0 5.0 371 395 + 1.60873 3 5 cbr 210 ------- 1 1.0 5.0 371 395 - 1.60873 3 5 cbr 210 ------- 1 1.0 5.0 371 395 - 1.60913 2 3 cbr 210 ------- 1 1.0 5.0 387 411 + 1.61125 1 2 cbr 210 ------- 1 1.0 5.0 403 428 - 1.61125 1 2 cbr 210 ------- 1 1.0 5.0 403 428 r 1.61169 3 5 cbr 210 ------- 1 1.0 5.0 356 378 r 1.61209 2 3 cbr 210 ------- 1 1.0 5.0 372 396 + 1.61209 3 5 cbr 210 ------- 1 1.0 5.0 372 396 - 1.61209 3 5 cbr 210 ------- 1 1.0 5.0 372 396 r 1.61211 1 2 cbr 210 ------- 1 1.0 5.0 389 413 + 1.61211 2 3 cbr 210 ------- 1 1.0 5.0 389 413 - 1.61249 2 3 cbr 210 ------- 1 1.0 5.0 388 412 r 1.61318 2 0 ack 56 ------- 0 4.0 0.0 5 385 + 1.615 1 2 cbr 210 ------- 1 1.0 5.0 404 429 - 1.615 1 2 cbr 210 ------- 1 1.0 5.0 404 429 r 1.61505 3 5 cbr 210 ------- 1 1.0 5.0 357 379 r 1.61545 2 3 cbr 210 ------- 1 1.0 5.0 373 397 + 1.61545 3 5 cbr 210 ------- 1 1.0 5.0 373 397 - 1.61545 3 5 cbr 210 ------- 1 1.0 5.0 373 397 - 1.61585 2 3 cbr 210 ------- 1 1.0 5.0 389 413 r 1.61586 1 2 cbr 210 ------- 1 1.0 5.0 390 414 + 1.61586 2 3 cbr 210 ------- 1 1.0 5.0 390 414 r 1.61841 3 5 cbr 210 ------- 1 1.0 5.0 358 380 + 1.61875 1 2 cbr 210 ------- 1 1.0 5.0 405 430 - 1.61875 1 2 cbr 210 ------- 1 1.0 5.0 405 430 r 1.61881 2 3 cbr 210 ------- 1 1.0 5.0 374 398 + 1.61881 3 5 cbr 210 ------- 1 1.0 5.0 374 398 - 1.61881 3 5 cbr 210 ------- 1 1.0 5.0 374 398 - 1.61921 2 3 cbr 210 ------- 1 1.0 5.0 390 414 r 1.61961 1 2 cbr 210 ------- 1 1.0 5.0 391 415 + 1.61961 2 3 cbr 210 ------- 1 1.0 5.0 391 415 r 1.62177 3 5 cbr 210 ------- 1 1.0 5.0 359 381 r 1.62217 2 3 cbr 210 ------- 1 1.0 5.0 375 399 + 1.62217 3 5 cbr 210 ------- 1 1.0 5.0 375 399 - 1.62217 3 5 cbr 210 ------- 1 1.0 5.0 375 399 + 1.6225 1 2 cbr 210 ------- 1 1.0 5.0 406 431 - 1.6225 1 2 cbr 210 ------- 1 1.0 5.0 406 431 - 1.62257 2 3 cbr 210 ------- 1 1.0 5.0 391 415 r 1.62336 1 2 cbr 210 ------- 1 1.0 5.0 392 417 + 1.62336 2 3 cbr 210 ------- 1 1.0 5.0 392 417 r 1.62513 3 5 cbr 210 ------- 1 1.0 5.0 360 382 r 1.62553 2 3 cbr 210 ------- 1 1.0 5.0 376 400 + 1.62553 3 5 cbr 210 ------- 1 1.0 5.0 376 400 - 1.62553 3 5 cbr 210 ------- 1 1.0 5.0 376 400 - 1.62593 2 3 cbr 210 ------- 1 1.0 5.0 392 417 + 1.62625 1 2 cbr 210 ------- 1 1.0 5.0 407 432 - 1.62625 1 2 cbr 210 ------- 1 1.0 5.0 407 432 r 1.62711 1 2 cbr 210 ------- 1 1.0 5.0 393 418 + 1.62711 2 3 cbr 210 ------- 1 1.0 5.0 393 418 r 1.62849 3 5 cbr 210 ------- 1 1.0 5.0 361 383 r 1.62889 2 3 cbr 210 ------- 1 1.0 5.0 377 401 + 1.62889 3 5 cbr 210 ------- 1 1.0 5.0 377 401 - 1.62889 3 5 cbr 210 ------- 1 1.0 5.0 377 401 r 1.62918 2 0 ack 56 ------- 0 4.0 0.0 5 391 + 1.62918 0 2 tcp 1000 ------- 0 0.0 4.0 10 433 - 1.62918 0 2 tcp 1000 ------- 0 0.0 4.0 10 433 - 1.62929 2 3 cbr 210 ------- 1 1.0 5.0 393 418 + 1.63 1 2 cbr 210 ------- 1 1.0 5.0 408 434 - 1.63 1 2 cbr 210 ------- 1 1.0 5.0 408 434 v 1.6299999999999999 eval {set sim_annotation {Waiting for Ack_13}} r 1.63086 1 2 cbr 210 ------- 1 1.0 5.0 394 419 + 1.63086 2 3 cbr 210 ------- 1 1.0 5.0 394 419 r 1.63185 3 5 cbr 210 ------- 1 1.0 5.0 362 384 r 1.63225 2 3 cbr 210 ------- 1 1.0 5.0 378 402 + 1.63225 3 5 cbr 210 ------- 1 1.0 5.0 378 402 - 1.63225 3 5 cbr 210 ------- 1 1.0 5.0 378 402 - 1.63265 2 3 cbr 210 ------- 1 1.0 5.0 394 419 + 1.63375 1 2 cbr 210 ------- 1 1.0 5.0 409 435 - 1.63375 1 2 cbr 210 ------- 1 1.0 5.0 409 435 r 1.63461 1 2 cbr 210 ------- 1 1.0 5.0 395 420 + 1.63461 2 3 cbr 210 ------- 1 1.0 5.0 395 420 r 1.63521 3 5 cbr 210 ------- 1 1.0 5.0 363 386 r 1.63561 2 3 cbr 210 ------- 1 1.0 5.0 379 403 + 1.63561 3 5 cbr 210 ------- 1 1.0 5.0 379 403 - 1.63561 3 5 cbr 210 ------- 1 1.0 5.0 379 403 r 1.63591 0 2 tcp 1000 ---A--- 0 0.0 4.0 6 416 + 1.63591 2 3 tcp 1000 ---A--- 0 0.0 4.0 6 416 - 1.63601 2 3 cbr 210 ------- 1 1.0 5.0 395 420 + 1.6375 1 2 cbr 210 ------- 1 1.0 5.0 410 436 - 1.6375 1 2 cbr 210 ------- 1 1.0 5.0 410 436 r 1.63836 1 2 cbr 210 ------- 1 1.0 5.0 396 421 + 1.63836 2 3 cbr 210 ------- 1 1.0 5.0 396 421 r 1.63857 3 5 cbr 210 ------- 1 1.0 5.0 364 387 r 1.63897 2 3 cbr 210 ------- 1 1.0 5.0 380 404 + 1.63897 3 5 cbr 210 ------- 1 1.0 5.0 380 404 - 1.63897 3 5 cbr 210 ------- 1 1.0 5.0 380 404 - 1.63937 2 3 tcp 1000 ---A--- 0 0.0 4.0 6 416 + 1.64125 1 2 cbr 210 ------- 1 1.0 5.0 411 437 - 1.64125 1 2 cbr 210 ------- 1 1.0 5.0 411 437 r 1.64193 3 5 cbr 210 ------- 1 1.0 5.0 365 388 r 1.64211 1 2 cbr 210 ------- 1 1.0 5.0 397 422 + 1.64211 2 3 cbr 210 ------- 1 1.0 5.0 397 422 r 1.64233 2 3 cbr 210 ------- 1 1.0 5.0 381 405 + 1.64233 3 5 cbr 210 ------- 1 1.0 5.0 381 405 - 1.64233 3 5 cbr 210 ------- 1 1.0 5.0 381 405 + 1.645 1 2 cbr 210 ------- 1 1.0 5.0 412 438 - 1.645 1 2 cbr 210 ------- 1 1.0 5.0 412 438 r 1.64529 3 5 cbr 210 ------- 1 1.0 5.0 366 389 r 1.64569 2 3 cbr 210 ------- 1 1.0 5.0 382 406 + 1.64569 3 5 cbr 210 ------- 1 1.0 5.0 382 406 - 1.64569 3 5 cbr 210 ------- 1 1.0 5.0 382 406 r 1.64586 1 2 cbr 210 ------- 1 1.0 5.0 398 423 + 1.64586 2 3 cbr 210 ------- 1 1.0 5.0 398 423 r 1.64865 3 5 cbr 210 ------- 1 1.0 5.0 367 390 + 1.64875 1 2 cbr 210 ------- 1 1.0 5.0 413 439 - 1.64875 1 2 cbr 210 ------- 1 1.0 5.0 413 439 r 1.64905 2 3 cbr 210 ------- 1 1.0 5.0 383 407 + 1.64905 3 5 cbr 210 ------- 1 1.0 5.0 383 407 - 1.64905 3 5 cbr 210 ------- 1 1.0 5.0 383 407 r 1.64961 1 2 cbr 210 ------- 1 1.0 5.0 399 424 + 1.64961 2 3 cbr 210 ------- 1 1.0 5.0 399 424 r 1.65201 3 5 cbr 210 ------- 1 1.0 5.0 368 392 r 1.65241 2 3 cbr 210 ------- 1 1.0 5.0 384 408 + 1.65241 3 5 cbr 210 ------- 1 1.0 5.0 384 408 - 1.65241 3 5 cbr 210 ------- 1 1.0 5.0 384 408 + 1.6525 1 2 cbr 210 ------- 1 1.0 5.0 414 440 - 1.6525 1 2 cbr 210 ------- 1 1.0 5.0 414 440 r 1.65336 1 2 cbr 210 ------- 1 1.0 5.0 400 425 + 1.65336 2 3 cbr 210 ------- 1 1.0 5.0 400 425 r 1.65537 3 5 cbr 210 ------- 1 1.0 5.0 369 393 - 1.65537 2 3 cbr 210 ------- 1 1.0 5.0 396 421 r 1.65577 2 3 cbr 210 ------- 1 1.0 5.0 385 409 + 1.65577 3 5 cbr 210 ------- 1 1.0 5.0 385 409 - 1.65577 3 5 cbr 210 ------- 1 1.0 5.0 385 409 + 1.65625 1 2 cbr 210 ------- 1 1.0 5.0 415 441 - 1.65625 1 2 cbr 210 ------- 1 1.0 5.0 415 441 r 1.65711 1 2 cbr 210 ------- 1 1.0 5.0 401 426 + 1.65711 2 3 cbr 210 ------- 1 1.0 5.0 401 426 r 1.65873 3 5 cbr 210 ------- 1 1.0 5.0 370 394 - 1.65873 2 3 cbr 210 ------- 1 1.0 5.0 397 422 r 1.65913 2 3 cbr 210 ------- 1 1.0 5.0 386 410 + 1.65913 3 5 cbr 210 ------- 1 1.0 5.0 386 410 - 1.65913 3 5 cbr 210 ------- 1 1.0 5.0 386 410 + 1.66 1 2 cbr 210 ------- 1 1.0 5.0 416 442 - 1.66 1 2 cbr 210 ------- 1 1.0 5.0 416 442 r 1.66086 1 2 cbr 210 ------- 1 1.0 5.0 402 427 + 1.66086 2 3 cbr 210 ------- 1 1.0 5.0 402 427 r 1.66209 3 5 cbr 210 ------- 1 1.0 5.0 371 395 - 1.66209 2 3 cbr 210 ------- 1 1.0 5.0 398 423 r 1.66249 2 3 cbr 210 ------- 1 1.0 5.0 387 411 + 1.66249 3 5 cbr 210 ------- 1 1.0 5.0 387 411 - 1.66249 3 5 cbr 210 ------- 1 1.0 5.0 387 411 + 1.66375 1 2 cbr 210 ------- 1 1.0 5.0 417 443 - 1.66375 1 2 cbr 210 ------- 1 1.0 5.0 417 443 r 1.66461 1 2 cbr 210 ------- 1 1.0 5.0 403 428 + 1.66461 2 3 cbr 210 ------- 1 1.0 5.0 403 428 r 1.66545 3 5 cbr 210 ------- 1 1.0 5.0 372 396 - 1.66545 2 3 cbr 210 ------- 1 1.0 5.0 399 424 r 1.66585 2 3 cbr 210 ------- 1 1.0 5.0 388 412 + 1.66585 3 5 cbr 210 ------- 1 1.0 5.0 388 412 - 1.66585 3 5 cbr 210 ------- 1 1.0 5.0 388 412 + 1.6675 1 2 cbr 210 ------- 1 1.0 5.0 418 444 - 1.6675 1 2 cbr 210 ------- 1 1.0 5.0 418 444 r 1.66836 1 2 cbr 210 ------- 1 1.0 5.0 404 429 + 1.66836 2 3 cbr 210 ------- 1 1.0 5.0 404 429 r 1.66881 3 5 cbr 210 ------- 1 1.0 5.0 373 397 - 1.66881 2 3 cbr 210 ------- 1 1.0 5.0 400 425 r 1.66921 2 3 cbr 210 ------- 1 1.0 5.0 389 413 + 1.66921 3 5 cbr 210 ------- 1 1.0 5.0 389 413 - 1.66921 3 5 cbr 210 ------- 1 1.0 5.0 389 413 + 1.67125 1 2 cbr 210 ------- 1 1.0 5.0 419 445 - 1.67125 1 2 cbr 210 ------- 1 1.0 5.0 419 445 r 1.67211 1 2 cbr 210 ------- 1 1.0 5.0 405 430 + 1.67211 2 3 cbr 210 ------- 1 1.0 5.0 405 430 r 1.67217 3 5 cbr 210 ------- 1 1.0 5.0 374 398 - 1.67217 2 3 cbr 210 ------- 1 1.0 5.0 401 426 r 1.67257 2 3 cbr 210 ------- 1 1.0 5.0 390 414 + 1.67257 3 5 cbr 210 ------- 1 1.0 5.0 390 414 - 1.67257 3 5 cbr 210 ------- 1 1.0 5.0 390 414 + 1.675 1 2 cbr 210 ------- 1 1.0 5.0 420 446 - 1.675 1 2 cbr 210 ------- 1 1.0 5.0 420 446 r 1.67553 3 5 cbr 210 ------- 1 1.0 5.0 375 399 - 1.67553 2 3 cbr 210 ------- 1 1.0 5.0 402 427 r 1.67586 1 2 cbr 210 ------- 1 1.0 5.0 406 431 + 1.67586 2 3 cbr 210 ------- 1 1.0 5.0 406 431 r 1.67593 2 3 cbr 210 ------- 1 1.0 5.0 391 415 + 1.67593 3 5 cbr 210 ------- 1 1.0 5.0 391 415 - 1.67593 3 5 cbr 210 ------- 1 1.0 5.0 391 415 + 1.67875 1 2 cbr 210 ------- 1 1.0 5.0 421 447 - 1.67875 1 2 cbr 210 ------- 1 1.0 5.0 421 447 r 1.67889 3 5 cbr 210 ------- 1 1.0 5.0 376 400 - 1.67889 2 3 cbr 210 ------- 1 1.0 5.0 403 428 r 1.67929 2 3 cbr 210 ------- 1 1.0 5.0 392 417 + 1.67929 3 5 cbr 210 ------- 1 1.0 5.0 392 417 - 1.67929 3 5 cbr 210 ------- 1 1.0 5.0 392 417 r 1.67961 1 2 cbr 210 ------- 1 1.0 5.0 407 432 + 1.67961 2 3 cbr 210 ------- 1 1.0 5.0 407 432 r 1.68225 3 5 cbr 210 ------- 1 1.0 5.0 377 401 - 1.68225 2 3 cbr 210 ------- 1 1.0 5.0 404 429 + 1.6825 1 2 cbr 210 ------- 1 1.0 5.0 422 448 - 1.6825 1 2 cbr 210 ------- 1 1.0 5.0 422 448 r 1.68265 2 3 cbr 210 ------- 1 1.0 5.0 393 418 + 1.68265 3 5 cbr 210 ------- 1 1.0 5.0 393 418 - 1.68265 3 5 cbr 210 ------- 1 1.0 5.0 393 418 r 1.68336 1 2 cbr 210 ------- 1 1.0 5.0 408 434 + 1.68336 2 3 cbr 210 ------- 1 1.0 5.0 408 434 r 1.68561 3 5 cbr 210 ------- 1 1.0 5.0 378 402 - 1.68561 2 3 cbr 210 ------- 1 1.0 5.0 405 430 r 1.68601 2 3 cbr 210 ------- 1 1.0 5.0 394 419 + 1.68601 3 5 cbr 210 ------- 1 1.0 5.0 394 419 - 1.68601 3 5 cbr 210 ------- 1 1.0 5.0 394 419 + 1.68625 1 2 cbr 210 ------- 1 1.0 5.0 423 449 - 1.68625 1 2 cbr 210 ------- 1 1.0 5.0 423 449 r 1.68711 1 2 cbr 210 ------- 1 1.0 5.0 409 435 + 1.68711 2 3 cbr 210 ------- 1 1.0 5.0 409 435 r 1.68897 3 5 cbr 210 ------- 1 1.0 5.0 379 403 - 1.68897 2 3 cbr 210 ------- 1 1.0 5.0 406 431 r 1.68937 2 3 cbr 210 ------- 1 1.0 5.0 395 420 + 1.68937 3 5 cbr 210 ------- 1 1.0 5.0 395 420 - 1.68937 3 5 cbr 210 ------- 1 1.0 5.0 395 420 + 1.69 1 2 cbr 210 ------- 1 1.0 5.0 424 450 - 1.69 1 2 cbr 210 ------- 1 1.0 5.0 424 450 r 1.69086 1 2 cbr 210 ------- 1 1.0 5.0 410 436 + 1.69086 2 3 cbr 210 ------- 1 1.0 5.0 410 436 r 1.69233 3 5 cbr 210 ------- 1 1.0 5.0 380 404 - 1.69233 2 3 cbr 210 ------- 1 1.0 5.0 407 432 + 1.69375 1 2 cbr 210 ------- 1 1.0 5.0 425 451 - 1.69375 1 2 cbr 210 ------- 1 1.0 5.0 425 451 r 1.69461 1 2 cbr 210 ------- 1 1.0 5.0 411 437 + 1.69461 2 3 cbr 210 ------- 1 1.0 5.0 411 437 r 1.69518 0 2 tcp 1000 ------- 0 0.0 4.0 10 433 + 1.69518 2 3 tcp 1000 ------- 0 0.0 4.0 10 433 r 1.69569 3 5 cbr 210 ------- 1 1.0 5.0 381 405 - 1.69569 2 3 cbr 210 ------- 1 1.0 5.0 408 434 + 1.6975 1 2 cbr 210 ------- 1 1.0 5.0 426 452 - 1.6975 1 2 cbr 210 ------- 1 1.0 5.0 426 452 r 1.69836 1 2 cbr 210 ------- 1 1.0 5.0 412 438 + 1.69836 2 3 cbr 210 ------- 1 1.0 5.0 412 438 r 1.69905 3 5 cbr 210 ------- 1 1.0 5.0 382 406 - 1.69905 2 3 cbr 210 ------- 1 1.0 5.0 409 435 + 1.70125 1 2 cbr 210 ------- 1 1.0 5.0 427 453 - 1.70125 1 2 cbr 210 ------- 1 1.0 5.0 427 453 r 1.70211 1 2 cbr 210 ------- 1 1.0 5.0 413 439 + 1.70211 2 3 cbr 210 ------- 1 1.0 5.0 413 439 r 1.70241 3 5 cbr 210 ------- 1 1.0 5.0 383 407 - 1.70241 2 3 cbr 210 ------- 1 1.0 5.0 410 436 + 1.705 1 2 cbr 210 ------- 1 1.0 5.0 428 454 - 1.705 1 2 cbr 210 ------- 1 1.0 5.0 428 454 r 1.70537 2 3 tcp 1000 ---A--- 0 0.0 4.0 6 416 + 1.70537 3 4 tcp 1000 ---A--- 0 0.0 4.0 6 416 - 1.70537 3 4 tcp 1000 ---A--- 0 0.0 4.0 6 416 r 1.70577 3 5 cbr 210 ------- 1 1.0 5.0 384 408 - 1.70577 2 3 cbr 210 ------- 1 1.0 5.0 411 437 r 1.70586 1 2 cbr 210 ------- 1 1.0 5.0 414 440 + 1.70586 2 3 cbr 210 ------- 1 1.0 5.0 414 440 r 1.70873 2 3 cbr 210 ------- 1 1.0 5.0 396 421 + 1.70873 3 5 cbr 210 ------- 1 1.0 5.0 396 421 - 1.70873 3 5 cbr 210 ------- 1 1.0 5.0 396 421 + 1.70875 1 2 cbr 210 ------- 1 1.0 5.0 429 455 - 1.70875 1 2 cbr 210 ------- 1 1.0 5.0 429 455 r 1.70913 3 5 cbr 210 ------- 1 1.0 5.0 385 409 - 1.70913 2 3 tcp 1000 ------- 0 0.0 4.0 10 433 r 1.70961 1 2 cbr 210 ------- 1 1.0 5.0 415 441 + 1.70961 2 3 cbr 210 ------- 1 1.0 5.0 415 441 r 1.71209 2 3 cbr 210 ------- 1 1.0 5.0 397 422 + 1.71209 3 5 cbr 210 ------- 1 1.0 5.0 397 422 - 1.71209 3 5 cbr 210 ------- 1 1.0 5.0 397 422 r 1.71249 3 5 cbr 210 ------- 1 1.0 5.0 386 410 + 1.7125 1 2 cbr 210 ------- 1 1.0 5.0 430 456 - 1.7125 1 2 cbr 210 ------- 1 1.0 5.0 430 456 r 1.71336 1 2 cbr 210 ------- 1 1.0 5.0 416 442 + 1.71336 2 3 cbr 210 ------- 1 1.0 5.0 416 442 r 1.71545 2 3 cbr 210 ------- 1 1.0 5.0 398 423 + 1.71545 3 5 cbr 210 ------- 1 1.0 5.0 398 423 - 1.71545 3 5 cbr 210 ------- 1 1.0 5.0 398 423 r 1.71585 3 5 cbr 210 ------- 1 1.0 5.0 387 411 + 1.71625 1 2 cbr 210 ------- 1 1.0 5.0 431 457 - 1.71625 1 2 cbr 210 ------- 1 1.0 5.0 431 457 r 1.71711 1 2 cbr 210 ------- 1 1.0 5.0 417 443 + 1.71711 2 3 cbr 210 ------- 1 1.0 5.0 417 443 r 1.71881 2 3 cbr 210 ------- 1 1.0 5.0 399 424 + 1.71881 3 5 cbr 210 ------- 1 1.0 5.0 399 424 - 1.71881 3 5 cbr 210 ------- 1 1.0 5.0 399 424 r 1.71921 3 5 cbr 210 ------- 1 1.0 5.0 388 412 + 1.72 1 2 cbr 210 ------- 1 1.0 5.0 432 458 - 1.72 1 2 cbr 210 ------- 1 1.0 5.0 432 458 r 1.72086 1 2 cbr 210 ------- 1 1.0 5.0 418 444 + 1.72086 2 3 cbr 210 ------- 1 1.0 5.0 418 444 r 1.72217 2 3 cbr 210 ------- 1 1.0 5.0 400 425 + 1.72217 3 5 cbr 210 ------- 1 1.0 5.0 400 425 - 1.72217 3 5 cbr 210 ------- 1 1.0 5.0 400 425 r 1.72257 3 5 cbr 210 ------- 1 1.0 5.0 389 413 + 1.72375 1 2 cbr 210 ------- 1 1.0 5.0 433 459 - 1.72375 1 2 cbr 210 ------- 1 1.0 5.0 433 459 r 1.72461 1 2 cbr 210 ------- 1 1.0 5.0 419 445 + 1.72461 2 3 cbr 210 ------- 1 1.0 5.0 419 445 - 1.72513 2 3 cbr 210 ------- 1 1.0 5.0 412 438 r 1.72553 2 3 cbr 210 ------- 1 1.0 5.0 401 426 + 1.72553 3 5 cbr 210 ------- 1 1.0 5.0 401 426 - 1.72553 3 5 cbr 210 ------- 1 1.0 5.0 401 426 r 1.72593 3 5 cbr 210 ------- 1 1.0 5.0 390 414 + 1.7275 1 2 cbr 210 ------- 1 1.0 5.0 434 460 - 1.7275 1 2 cbr 210 ------- 1 1.0 5.0 434 460 r 1.72836 1 2 cbr 210 ------- 1 1.0 5.0 420 446 + 1.72836 2 3 cbr 210 ------- 1 1.0 5.0 420 446 - 1.72849 2 3 cbr 210 ------- 1 1.0 5.0 413 439 r 1.72889 2 3 cbr 210 ------- 1 1.0 5.0 402 427 + 1.72889 3 5 cbr 210 ------- 1 1.0 5.0 402 427 - 1.72889 3 5 cbr 210 ------- 1 1.0 5.0 402 427 r 1.72929 3 5 cbr 210 ------- 1 1.0 5.0 391 415 + 1.73125 1 2 cbr 210 ------- 1 1.0 5.0 435 461 - 1.73125 1 2 cbr 210 ------- 1 1.0 5.0 435 461 - 1.73185 2 3 cbr 210 ------- 1 1.0 5.0 414 440 r 1.73211 1 2 cbr 210 ------- 1 1.0 5.0 421 447 + 1.73211 2 3 cbr 210 ------- 1 1.0 5.0 421 447 r 1.73225 2 3 cbr 210 ------- 1 1.0 5.0 403 428 + 1.73225 3 5 cbr 210 ------- 1 1.0 5.0 403 428 - 1.73225 3 5 cbr 210 ------- 1 1.0 5.0 403 428 r 1.73265 3 5 cbr 210 ------- 1 1.0 5.0 392 417 + 1.735 1 2 cbr 210 ------- 1 1.0 5.0 436 462 - 1.735 1 2 cbr 210 ------- 1 1.0 5.0 436 462 - 1.73521 2 3 cbr 210 ------- 1 1.0 5.0 415 441 r 1.73561 2 3 cbr 210 ------- 1 1.0 5.0 404 429 + 1.73561 3 5 cbr 210 ------- 1 1.0 5.0 404 429 - 1.73561 3 5 cbr 210 ------- 1 1.0 5.0 404 429 r 1.73586 1 2 cbr 210 ------- 1 1.0 5.0 422 448 + 1.73586 2 3 cbr 210 ------- 1 1.0 5.0 422 448 r 1.73601 3 5 cbr 210 ------- 1 1.0 5.0 393 418 - 1.73857 2 3 cbr 210 ------- 1 1.0 5.0 416 442 + 1.73875 1 2 cbr 210 ------- 1 1.0 5.0 437 463 - 1.73875 1 2 cbr 210 ------- 1 1.0 5.0 437 463 r 1.73897 2 3 cbr 210 ------- 1 1.0 5.0 405 430 + 1.73897 3 5 cbr 210 ------- 1 1.0 5.0 405 430 - 1.73897 3 5 cbr 210 ------- 1 1.0 5.0 405 430 r 1.73937 3 5 cbr 210 ------- 1 1.0 5.0 394 419 r 1.73961 1 2 cbr 210 ------- 1 1.0 5.0 423 449 + 1.73961 2 3 cbr 210 ------- 1 1.0 5.0 423 449 - 1.74193 2 3 cbr 210 ------- 1 1.0 5.0 417 443 r 1.74233 2 3 cbr 210 ------- 1 1.0 5.0 406 431 + 1.74233 3 5 cbr 210 ------- 1 1.0 5.0 406 431 - 1.74233 3 5 cbr 210 ------- 1 1.0 5.0 406 431 + 1.7425 1 2 cbr 210 ------- 1 1.0 5.0 438 464 - 1.7425 1 2 cbr 210 ------- 1 1.0 5.0 438 464 r 1.74273 3 5 cbr 210 ------- 1 1.0 5.0 395 420 r 1.74336 1 2 cbr 210 ------- 1 1.0 5.0 424 450 + 1.74336 2 3 cbr 210 ------- 1 1.0 5.0 424 450 - 1.74529 2 3 cbr 210 ------- 1 1.0 5.0 418 444 r 1.74569 2 3 cbr 210 ------- 1 1.0 5.0 407 432 + 1.74569 3 5 cbr 210 ------- 1 1.0 5.0 407 432 - 1.74569 3 5 cbr 210 ------- 1 1.0 5.0 407 432 + 1.74625 1 2 cbr 210 ------- 1 1.0 5.0 439 465 - 1.74625 1 2 cbr 210 ------- 1 1.0 5.0 439 465 r 1.74711 1 2 cbr 210 ------- 1 1.0 5.0 425 451 + 1.74711 2 3 cbr 210 ------- 1 1.0 5.0 425 451 - 1.74865 2 3 cbr 210 ------- 1 1.0 5.0 419 445 r 1.74905 2 3 cbr 210 ------- 1 1.0 5.0 408 434 + 1.74905 3 5 cbr 210 ------- 1 1.0 5.0 408 434 - 1.74905 3 5 cbr 210 ------- 1 1.0 5.0 408 434 + 1.75 1 2 cbr 210 ------- 1 1.0 5.0 440 466 - 1.75 1 2 cbr 210 ------- 1 1.0 5.0 440 466 r 1.75086 1 2 cbr 210 ------- 1 1.0 5.0 426 452 + 1.75086 2 3 cbr 210 ------- 1 1.0 5.0 426 452 - 1.75201 2 3 cbr 210 ------- 1 1.0 5.0 420 446 r 1.75241 2 3 cbr 210 ------- 1 1.0 5.0 409 435 + 1.75241 3 5 cbr 210 ------- 1 1.0 5.0 409 435 - 1.75241 3 5 cbr 210 ------- 1 1.0 5.0 409 435 + 1.75375 1 2 cbr 210 ------- 1 1.0 5.0 441 467 - 1.75375 1 2 cbr 210 ------- 1 1.0 5.0 441 467 r 1.75461 1 2 cbr 210 ------- 1 1.0 5.0 427 453 + 1.75461 2 3 cbr 210 ------- 1 1.0 5.0 427 453 - 1.75537 2 3 cbr 210 ------- 1 1.0 5.0 421 447 r 1.75577 2 3 cbr 210 ------- 1 1.0 5.0 410 436 + 1.75577 3 5 cbr 210 ------- 1 1.0 5.0 410 436 - 1.75577 3 5 cbr 210 ------- 1 1.0 5.0 410 436 + 1.7575 1 2 cbr 210 ------- 1 1.0 5.0 442 468 - 1.7575 1 2 cbr 210 ------- 1 1.0 5.0 442 468 r 1.75836 1 2 cbr 210 ------- 1 1.0 5.0 428 454 + 1.75836 2 3 cbr 210 ------- 1 1.0 5.0 428 454 - 1.75873 2 3 cbr 210 ------- 1 1.0 5.0 422 448 r 1.75913 2 3 cbr 210 ------- 1 1.0 5.0 411 437 + 1.75913 3 5 cbr 210 ------- 1 1.0 5.0 411 437 - 1.75913 3 5 cbr 210 ------- 1 1.0 5.0 411 437 + 1.76125 1 2 cbr 210 ------- 1 1.0 5.0 443 469 - 1.76125 1 2 cbr 210 ------- 1 1.0 5.0 443 469 r 1.76209 3 5 cbr 210 ------- 1 1.0 5.0 396 421 - 1.76209 2 3 cbr 210 ------- 1 1.0 5.0 423 449 r 1.76211 1 2 cbr 210 ------- 1 1.0 5.0 429 455 + 1.76211 2 3 cbr 210 ------- 1 1.0 5.0 429 455 + 1.765 1 2 cbr 210 ------- 1 1.0 5.0 444 470 - 1.765 1 2 cbr 210 ------- 1 1.0 5.0 444 470 r 1.76545 3 5 cbr 210 ------- 1 1.0 5.0 397 422 - 1.76545 2 3 cbr 210 ------- 1 1.0 5.0 424 450 r 1.76586 1 2 cbr 210 ------- 1 1.0 5.0 430 456 + 1.76586 2 3 cbr 210 ------- 1 1.0 5.0 430 456 + 1.76875 1 2 cbr 210 ------- 1 1.0 5.0 445 471 - 1.76875 1 2 cbr 210 ------- 1 1.0 5.0 445 471 r 1.76881 3 5 cbr 210 ------- 1 1.0 5.0 398 423 - 1.76881 2 3 cbr 210 ------- 1 1.0 5.0 425 451 r 1.76961 1 2 cbr 210 ------- 1 1.0 5.0 431 457 + 1.76961 2 3 cbr 210 ------- 1 1.0 5.0 431 457 r 1.77137 3 4 tcp 1000 ---A--- 0 0.0 4.0 6 416 + 1.77137 4 3 ack 48 ------- 0 4.0 0.0 9 472 - 1.77137 4 3 ack 48 ------- 0 4.0 0.0 9 472 r 1.77217 3 5 cbr 210 ------- 1 1.0 5.0 399 424 - 1.77217 2 3 cbr 210 ------- 1 1.0 5.0 426 452 + 1.7725 1 2 cbr 210 ------- 1 1.0 5.0 446 473 - 1.7725 1 2 cbr 210 ------- 1 1.0 5.0 446 473 r 1.77336 1 2 cbr 210 ------- 1 1.0 5.0 432 458 + 1.77336 2 3 cbr 210 ------- 1 1.0 5.0 432 458 r 1.77513 2 3 tcp 1000 ------- 0 0.0 4.0 10 433 + 1.77513 3 4 tcp 1000 ------- 0 0.0 4.0 10 433 - 1.77513 3 4 tcp 1000 ------- 0 0.0 4.0 10 433 r 1.77553 3 5 cbr 210 ------- 1 1.0 5.0 400 425 - 1.77553 2 3 cbr 210 ------- 1 1.0 5.0 427 453 + 1.77625 1 2 cbr 210 ------- 1 1.0 5.0 447 474 - 1.77625 1 2 cbr 210 ------- 1 1.0 5.0 447 474 r 1.77711 1 2 cbr 210 ------- 1 1.0 5.0 433 459 + 1.77711 2 3 cbr 210 ------- 1 1.0 5.0 433 459 r 1.77849 2 3 cbr 210 ------- 1 1.0 5.0 412 438 + 1.77849 3 5 cbr 210 ------- 1 1.0 5.0 412 438 - 1.77849 3 5 cbr 210 ------- 1 1.0 5.0 412 438 r 1.77889 3 5 cbr 210 ------- 1 1.0 5.0 401 426 - 1.77889 2 3 cbr 210 ------- 1 1.0 5.0 428 454 + 1.78 1 2 cbr 210 ------- 1 1.0 5.0 448 475 - 1.78 1 2 cbr 210 ------- 1 1.0 5.0 448 475 r 1.78086 1 2 cbr 210 ------- 1 1.0 5.0 434 460 + 1.78086 2 3 cbr 210 ------- 1 1.0 5.0 434 460 r 1.78185 2 3 cbr 210 ------- 1 1.0 5.0 413 439 + 1.78185 3 5 cbr 210 ------- 1 1.0 5.0 413 439 - 1.78185 3 5 cbr 210 ------- 1 1.0 5.0 413 439 r 1.78225 3 5 cbr 210 ------- 1 1.0 5.0 402 427 - 1.78225 2 3 cbr 210 ------- 1 1.0 5.0 429 455 + 1.78375 1 2 cbr 210 ------- 1 1.0 5.0 449 476 - 1.78375 1 2 cbr 210 ------- 1 1.0 5.0 449 476 r 1.78461 1 2 cbr 210 ------- 1 1.0 5.0 435 461 + 1.78461 2 3 cbr 210 ------- 1 1.0 5.0 435 461 r 1.78521 2 3 cbr 210 ------- 1 1.0 5.0 414 440 + 1.78521 3 5 cbr 210 ------- 1 1.0 5.0 414 440 - 1.78521 3 5 cbr 210 ------- 1 1.0 5.0 414 440 r 1.78561 3 5 cbr 210 ------- 1 1.0 5.0 403 428 - 1.78561 2 3 cbr 210 ------- 1 1.0 5.0 430 456 + 1.7875 1 2 cbr 210 ------- 1 1.0 5.0 450 477 - 1.7875 1 2 cbr 210 ------- 1 1.0 5.0 450 477 r 1.78836 1 2 cbr 210 ------- 1 1.0 5.0 436 462 + 1.78836 2 3 cbr 210 ------- 1 1.0 5.0 436 462 r 1.78857 2 3 cbr 210 ------- 1 1.0 5.0 415 441 + 1.78857 3 5 cbr 210 ------- 1 1.0 5.0 415 441 - 1.78857 3 5 cbr 210 ------- 1 1.0 5.0 415 441 r 1.78897 3 5 cbr 210 ------- 1 1.0 5.0 404 429 - 1.78897 2 3 cbr 210 ------- 1 1.0 5.0 431 457 + 1.79125 1 2 cbr 210 ------- 1 1.0 5.0 451 478 - 1.79125 1 2 cbr 210 ------- 1 1.0 5.0 451 478 r 1.79193 2 3 cbr 210 ------- 1 1.0 5.0 416 442 + 1.79193 3 5 cbr 210 ------- 1 1.0 5.0 416 442 - 1.79193 3 5 cbr 210 ------- 1 1.0 5.0 416 442 r 1.79211 1 2 cbr 210 ------- 1 1.0 5.0 437 463 + 1.79211 2 3 cbr 210 ------- 1 1.0 5.0 437 463 r 1.79233 3 5 cbr 210 ------- 1 1.0 5.0 405 430 - 1.79233 2 3 cbr 210 ------- 1 1.0 5.0 432 458 + 1.795 1 2 cbr 210 ------- 1 1.0 5.0 452 479 - 1.795 1 2 cbr 210 ------- 1 1.0 5.0 452 479 r 1.79529 2 3 cbr 210 ------- 1 1.0 5.0 417 443 + 1.79529 3 5 cbr 210 ------- 1 1.0 5.0 417 443 - 1.79529 3 5 cbr 210 ------- 1 1.0 5.0 417 443 r 1.79569 3 5 cbr 210 ------- 1 1.0 5.0 406 431 - 1.79569 2 3 cbr 210 ------- 1 1.0 5.0 433 459 r 1.79586 1 2 cbr 210 ------- 1 1.0 5.0 438 464 + 1.79586 2 3 cbr 210 ------- 1 1.0 5.0 438 464 r 1.79865 2 3 cbr 210 ------- 1 1.0 5.0 418 444 + 1.79865 3 5 cbr 210 ------- 1 1.0 5.0 418 444 - 1.79865 3 5 cbr 210 ------- 1 1.0 5.0 418 444 + 1.79875 1 2 cbr 210 ------- 1 1.0 5.0 453 480 - 1.79875 1 2 cbr 210 ------- 1 1.0 5.0 453 480 r 1.79905 3 5 cbr 210 ------- 1 1.0 5.0 407 432 - 1.79905 2 3 cbr 210 ------- 1 1.0 5.0 434 460 r 1.79961 1 2 cbr 210 ------- 1 1.0 5.0 439 465 + 1.79961 2 3 cbr 210 ------- 1 1.0 5.0 439 465 r 1.80201 2 3 cbr 210 ------- 1 1.0 5.0 419 445 + 1.80201 3 5 cbr 210 ------- 1 1.0 5.0 419 445 - 1.80201 3 5 cbr 210 ------- 1 1.0 5.0 419 445 r 1.80241 3 5 cbr 210 ------- 1 1.0 5.0 408 434 - 1.80241 2 3 cbr 210 ------- 1 1.0 5.0 435 461 + 1.8025 1 2 cbr 210 ------- 1 1.0 5.0 454 481 - 1.8025 1 2 cbr 210 ------- 1 1.0 5.0 454 481 r 1.80336 1 2 cbr 210 ------- 1 1.0 5.0 440 466 + 1.80336 2 3 cbr 210 ------- 1 1.0 5.0 440 466 r 1.80537 2 3 cbr 210 ------- 1 1.0 5.0 420 446 + 1.80537 3 5 cbr 210 ------- 1 1.0 5.0 420 446 - 1.80537 3 5 cbr 210 ------- 1 1.0 5.0 420 446 r 1.80577 3 5 cbr 210 ------- 1 1.0 5.0 409 435 - 1.80577 2 3 cbr 210 ------- 1 1.0 5.0 436 462 + 1.80625 1 2 cbr 210 ------- 1 1.0 5.0 455 482 - 1.80625 1 2 cbr 210 ------- 1 1.0 5.0 455 482 r 1.80711 1 2 cbr 210 ------- 1 1.0 5.0 441 467 + 1.80711 2 3 cbr 210 ------- 1 1.0 5.0 441 467 r 1.80873 2 3 cbr 210 ------- 1 1.0 5.0 421 447 + 1.80873 3 5 cbr 210 ------- 1 1.0 5.0 421 447 - 1.80873 3 5 cbr 210 ------- 1 1.0 5.0 421 447 r 1.80913 3 5 cbr 210 ------- 1 1.0 5.0 410 436 - 1.80913 2 3 cbr 210 ------- 1 1.0 5.0 437 463 + 1.81 1 2 cbr 210 ------- 1 1.0 5.0 456 483 - 1.81 1 2 cbr 210 ------- 1 1.0 5.0 456 483 r 1.81086 1 2 cbr 210 ------- 1 1.0 5.0 442 468 + 1.81086 2 3 cbr 210 ------- 1 1.0 5.0 442 468 r 1.81209 2 3 cbr 210 ------- 1 1.0 5.0 422 448 + 1.81209 3 5 cbr 210 ------- 1 1.0 5.0 422 448 - 1.81209 3 5 cbr 210 ------- 1 1.0 5.0 422 448 r 1.81249 3 5 cbr 210 ------- 1 1.0 5.0 411 437 - 1.81249 2 3 cbr 210 ------- 1 1.0 5.0 438 464 + 1.81375 1 2 cbr 210 ------- 1 1.0 5.0 457 484 - 1.81375 1 2 cbr 210 ------- 1 1.0 5.0 457 484 r 1.81461 1 2 cbr 210 ------- 1 1.0 5.0 443 469 + 1.81461 2 3 cbr 210 ------- 1 1.0 5.0 443 469 r 1.81545 2 3 cbr 210 ------- 1 1.0 5.0 423 449 + 1.81545 3 5 cbr 210 ------- 1 1.0 5.0 423 449 - 1.81545 3 5 cbr 210 ------- 1 1.0 5.0 423 449 - 1.81585 2 3 cbr 210 ------- 1 1.0 5.0 439 465 + 1.8175 1 2 cbr 210 ------- 1 1.0 5.0 458 485 - 1.8175 1 2 cbr 210 ------- 1 1.0 5.0 458 485 r 1.81836 1 2 cbr 210 ------- 1 1.0 5.0 444 470 + 1.81836 2 3 cbr 210 ------- 1 1.0 5.0 444 470 r 1.81881 2 3 cbr 210 ------- 1 1.0 5.0 424 450 + 1.81881 3 5 cbr 210 ------- 1 1.0 5.0 424 450 - 1.81881 3 5 cbr 210 ------- 1 1.0 5.0 424 450 - 1.81921 2 3 cbr 210 ------- 1 1.0 5.0 440 466 + 1.82125 1 2 cbr 210 ------- 1 1.0 5.0 459 486 - 1.82125 1 2 cbr 210 ------- 1 1.0 5.0 459 486 r 1.82211 1 2 cbr 210 ------- 1 1.0 5.0 445 471 + 1.82211 2 3 cbr 210 ------- 1 1.0 5.0 445 471 r 1.82214 4 3 ack 48 ------- 0 4.0 0.0 9 472 + 1.82214 3 2 ack 48 ------- 0 4.0 0.0 9 472 - 1.82214 3 2 ack 48 ------- 0 4.0 0.0 9 472 r 1.82217 2 3 cbr 210 ------- 1 1.0 5.0 425 451 + 1.82217 3 5 cbr 210 ------- 1 1.0 5.0 425 451 - 1.82217 3 5 cbr 210 ------- 1 1.0 5.0 425 451 - 1.82257 2 3 cbr 210 ------- 1 1.0 5.0 441 467 + 1.825 1 2 cbr 210 ------- 1 1.0 5.0 460 487 - 1.825 1 2 cbr 210 ------- 1 1.0 5.0 460 487 r 1.82553 2 3 cbr 210 ------- 1 1.0 5.0 426 452 + 1.82553 3 5 cbr 210 ------- 1 1.0 5.0 426 452 - 1.82553 3 5 cbr 210 ------- 1 1.0 5.0 426 452 r 1.82586 1 2 cbr 210 ------- 1 1.0 5.0 446 473 + 1.82586 2 3 cbr 210 ------- 1 1.0 5.0 446 473 - 1.82593 2 3 cbr 210 ------- 1 1.0 5.0 442 468 + 1.82875 1 2 cbr 210 ------- 1 1.0 5.0 461 488 - 1.82875 1 2 cbr 210 ------- 1 1.0 5.0 461 488 r 1.82889 2 3 cbr 210 ------- 1 1.0 5.0 427 453 + 1.82889 3 5 cbr 210 ------- 1 1.0 5.0 427 453 - 1.82889 3 5 cbr 210 ------- 1 1.0 5.0 427 453 - 1.82929 2 3 cbr 210 ------- 1 1.0 5.0 443 469 r 1.82961 1 2 cbr 210 ------- 1 1.0 5.0 447 474 + 1.82961 2 3 cbr 210 ------- 1 1.0 5.0 447 474 r 1.83185 3 5 cbr 210 ------- 1 1.0 5.0 412 438 r 1.83225 2 3 cbr 210 ------- 1 1.0 5.0 428 454 + 1.83225 3 5 cbr 210 ------- 1 1.0 5.0 428 454 - 1.83225 3 5 cbr 210 ------- 1 1.0 5.0 428 454 + 1.8325 1 2 cbr 210 ------- 1 1.0 5.0 462 489 - 1.8325 1 2 cbr 210 ------- 1 1.0 5.0 462 489 - 1.83265 2 3 cbr 210 ------- 1 1.0 5.0 444 470 r 1.83336 1 2 cbr 210 ------- 1 1.0 5.0 448 475 + 1.83336 2 3 cbr 210 ------- 1 1.0 5.0 448 475 r 1.83521 3 5 cbr 210 ------- 1 1.0 5.0 413 439 r 1.83561 2 3 cbr 210 ------- 1 1.0 5.0 429 455 + 1.83561 3 5 cbr 210 ------- 1 1.0 5.0 429 455 - 1.83561 3 5 cbr 210 ------- 1 1.0 5.0 429 455 - 1.83601 2 3 cbr 210 ------- 1 1.0 5.0 445 471 + 1.83625 1 2 cbr 210 ------- 1 1.0 5.0 463 490 - 1.83625 1 2 cbr 210 ------- 1 1.0 5.0 463 490 r 1.83711 1 2 cbr 210 ------- 1 1.0 5.0 449 476 + 1.83711 2 3 cbr 210 ------- 1 1.0 5.0 449 476 r 1.83857 3 5 cbr 210 ------- 1 1.0 5.0 414 440 r 1.83897 2 3 cbr 210 ------- 1 1.0 5.0 430 456 + 1.83897 3 5 cbr 210 ------- 1 1.0 5.0 430 456 - 1.83897 3 5 cbr 210 ------- 1 1.0 5.0 430 456 - 1.83937 2 3 cbr 210 ------- 1 1.0 5.0 446 473 + 1.84 1 2 cbr 210 ------- 1 1.0 5.0 464 491 - 1.84 1 2 cbr 210 ------- 1 1.0 5.0 464 491 r 1.84086 1 2 cbr 210 ------- 1 1.0 5.0 450 477 + 1.84086 2 3 cbr 210 ------- 1 1.0 5.0 450 477 r 1.84113 3 4 tcp 1000 ------- 0 0.0 4.0 10 433 + 1.84113 4 3 ack 40 ------- 0 4.0 0.0 12 492 - 1.84113 4 3 ack 40 ------- 0 4.0 0.0 12 492 r 1.84193 3 5 cbr 210 ------- 1 1.0 5.0 415 441 r 1.84233 2 3 cbr 210 ------- 1 1.0 5.0 431 457 + 1.84233 3 5 cbr 210 ------- 1 1.0 5.0 431 457 - 1.84233 3 5 cbr 210 ------- 1 1.0 5.0 431 457 - 1.84273 2 3 cbr 210 ------- 1 1.0 5.0 447 474 + 1.84375 1 2 cbr 210 ------- 1 1.0 5.0 465 493 - 1.84375 1 2 cbr 210 ------- 1 1.0 5.0 465 493 r 1.84461 1 2 cbr 210 ------- 1 1.0 5.0 451 478 + 1.84461 2 3 cbr 210 ------- 1 1.0 5.0 451 478 r 1.84529 3 5 cbr 210 ------- 1 1.0 5.0 416 442 r 1.84569 2 3 cbr 210 ------- 1 1.0 5.0 432 458 + 1.84569 3 5 cbr 210 ------- 1 1.0 5.0 432 458 - 1.84569 3 5 cbr 210 ------- 1 1.0 5.0 432 458 - 1.84609 2 3 cbr 210 ------- 1 1.0 5.0 448 475 + 1.8475 1 2 cbr 210 ------- 1 1.0 5.0 466 494 - 1.8475 1 2 cbr 210 ------- 1 1.0 5.0 466 494 r 1.84836 1 2 cbr 210 ------- 1 1.0 5.0 452 479 + 1.84836 2 3 cbr 210 ------- 1 1.0 5.0 452 479 r 1.84865 3 5 cbr 210 ------- 1 1.0 5.0 417 443 r 1.84905 2 3 cbr 210 ------- 1 1.0 5.0 433 459 + 1.84905 3 5 cbr 210 ------- 1 1.0 5.0 433 459 - 1.84905 3 5 cbr 210 ------- 1 1.0 5.0 433 459 - 1.84945 2 3 cbr 210 ------- 1 1.0 5.0 449 476 + 1.85125 1 2 cbr 210 ------- 1 1.0 5.0 467 495 - 1.85125 1 2 cbr 210 ------- 1 1.0 5.0 467 495 r 1.85201 3 5 cbr 210 ------- 1 1.0 5.0 418 444 r 1.85211 1 2 cbr 210 ------- 1 1.0 5.0 453 480 + 1.85211 2 3 cbr 210 ------- 1 1.0 5.0 453 480 r 1.85241 2 3 cbr 210 ------- 1 1.0 5.0 434 460 + 1.85241 3 5 cbr 210 ------- 1 1.0 5.0 434 460 - 1.85241 3 5 cbr 210 ------- 1 1.0 5.0 434 460 - 1.85281 2 3 cbr 210 ------- 1 1.0 5.0 450 477 + 1.855 1 2 cbr 210 ------- 1 1.0 5.0 468 496 - 1.855 1 2 cbr 210 ------- 1 1.0 5.0 468 496 r 1.85537 3 5 cbr 210 ------- 1 1.0 5.0 419 445 r 1.85577 2 3 cbr 210 ------- 1 1.0 5.0 435 461 + 1.85577 3 5 cbr 210 ------- 1 1.0 5.0 435 461 - 1.85577 3 5 cbr 210 ------- 1 1.0 5.0 435 461 r 1.85586 1 2 cbr 210 ------- 1 1.0 5.0 454 481 + 1.85586 2 3 cbr 210 ------- 1 1.0 5.0 454 481 - 1.85617 2 3 cbr 210 ------- 1 1.0 5.0 451 478 r 1.85873 3 5 cbr 210 ------- 1 1.0 5.0 420 446 + 1.85875 1 2 cbr 210 ------- 1 1.0 5.0 469 497 - 1.85875 1 2 cbr 210 ------- 1 1.0 5.0 469 497 r 1.85913 2 3 cbr 210 ------- 1 1.0 5.0 436 462 + 1.85913 3 5 cbr 210 ------- 1 1.0 5.0 436 462 - 1.85913 3 5 cbr 210 ------- 1 1.0 5.0 436 462 - 1.85953 2 3 cbr 210 ------- 1 1.0 5.0 452 479 r 1.85961 1 2 cbr 210 ------- 1 1.0 5.0 455 482 + 1.85961 2 3 cbr 210 ------- 1 1.0 5.0 455 482 r 1.86209 3 5 cbr 210 ------- 1 1.0 5.0 421 447 r 1.86249 2 3 cbr 210 ------- 1 1.0 5.0 437 463 + 1.86249 3 5 cbr 210 ------- 1 1.0 5.0 437 463 - 1.86249 3 5 cbr 210 ------- 1 1.0 5.0 437 463 + 1.8625 1 2 cbr 210 ------- 1 1.0 5.0 470 498 - 1.8625 1 2 cbr 210 ------- 1 1.0 5.0 470 498 - 1.86289 2 3 cbr 210 ------- 1 1.0 5.0 453 480 r 1.86336 1 2 cbr 210 ------- 1 1.0 5.0 456 483 + 1.86336 2 3 cbr 210 ------- 1 1.0 5.0 456 483 r 1.86545 3 5 cbr 210 ------- 1 1.0 5.0 422 448 r 1.86585 2 3 cbr 210 ------- 1 1.0 5.0 438 464 + 1.86585 3 5 cbr 210 ------- 1 1.0 5.0 438 464 - 1.86585 3 5 cbr 210 ------- 1 1.0 5.0 438 464 + 1.86625 1 2 cbr 210 ------- 1 1.0 5.0 471 499 - 1.86625 1 2 cbr 210 ------- 1 1.0 5.0 471 499 - 1.86625 2 3 cbr 210 ------- 1 1.0 5.0 454 481 r 1.86711 1 2 cbr 210 ------- 1 1.0 5.0 457 484 + 1.86711 2 3 cbr 210 ------- 1 1.0 5.0 457 484 r 1.86881 3 5 cbr 210 ------- 1 1.0 5.0 423 449 r 1.86921 2 3 cbr 210 ------- 1 1.0 5.0 439 465 + 1.86921 3 5 cbr 210 ------- 1 1.0 5.0 439 465 - 1.86921 3 5 cbr 210 ------- 1 1.0 5.0 439 465 - 1.86961 2 3 cbr 210 ------- 1 1.0 5.0 455 482 + 1.87 1 2 cbr 210 ------- 1 1.0 5.0 472 500 - 1.87 1 2 cbr 210 ------- 1 1.0 5.0 472 500 r 1.87086 1 2 cbr 210 ------- 1 1.0 5.0 458 485 + 1.87086 2 3 cbr 210 ------- 1 1.0 5.0 458 485 r 1.87217 3 5 cbr 210 ------- 1 1.0 5.0 424 450 r 1.87257 2 3 cbr 210 ------- 1 1.0 5.0 440 466 + 1.87257 3 5 cbr 210 ------- 1 1.0 5.0 440 466 - 1.87257 3 5 cbr 210 ------- 1 1.0 5.0 440 466 r 1.87291 3 2 ack 48 ------- 0 4.0 0.0 9 472 + 1.87291 2 0 ack 48 ------- 0 4.0 0.0 9 472 - 1.87291 2 0 ack 48 ------- 0 4.0 0.0 9 472 - 1.87297 2 3 cbr 210 ------- 1 1.0 5.0 456 483 + 1.87375 1 2 cbr 210 ------- 1 1.0 5.0 473 501 - 1.87375 1 2 cbr 210 ------- 1 1.0 5.0 473 501 r 1.87461 1 2 cbr 210 ------- 1 1.0 5.0 459 486 + 1.87461 2 3 cbr 210 ------- 1 1.0 5.0 459 486 r 1.87553 3 5 cbr 210 ------- 1 1.0 5.0 425 451 r 1.87593 2 3 cbr 210 ------- 1 1.0 5.0 441 467 + 1.87593 3 5 cbr 210 ------- 1 1.0 5.0 441 467 - 1.87593 3 5 cbr 210 ------- 1 1.0 5.0 441 467 - 1.87633 2 3 cbr 210 ------- 1 1.0 5.0 457 484 + 1.8775 1 2 cbr 210 ------- 1 1.0 5.0 474 502 - 1.8775 1 2 cbr 210 ------- 1 1.0 5.0 474 502 r 1.87836 1 2 cbr 210 ------- 1 1.0 5.0 460 487 + 1.87836 2 3 cbr 210 ------- 1 1.0 5.0 460 487 r 1.87889 3 5 cbr 210 ------- 1 1.0 5.0 426 452 r 1.87929 2 3 cbr 210 ------- 1 1.0 5.0 442 468 + 1.87929 3 5 cbr 210 ------- 1 1.0 5.0 442 468 - 1.87929 3 5 cbr 210 ------- 1 1.0 5.0 442 468 - 1.87969 2 3 cbr 210 ------- 1 1.0 5.0 458 485 + 1.88125 1 2 cbr 210 ------- 1 1.0 5.0 475 503 - 1.88125 1 2 cbr 210 ------- 1 1.0 5.0 475 503 r 1.88211 1 2 cbr 210 ------- 1 1.0 5.0 461 488 + 1.88211 2 3 cbr 210 ------- 1 1.0 5.0 461 488 r 1.88225 3 5 cbr 210 ------- 1 1.0 5.0 427 453 r 1.88265 2 3 cbr 210 ------- 1 1.0 5.0 443 469 + 1.88265 3 5 cbr 210 ------- 1 1.0 5.0 443 469 - 1.88265 3 5 cbr 210 ------- 1 1.0 5.0 443 469 - 1.88305 2 3 cbr 210 ------- 1 1.0 5.0 459 486 + 1.885 1 2 cbr 210 ------- 1 1.0 5.0 476 504 - 1.885 1 2 cbr 210 ------- 1 1.0 5.0 476 504 r 1.88561 3 5 cbr 210 ------- 1 1.0 5.0 428 454 r 1.88586 1 2 cbr 210 ------- 1 1.0 5.0 462 489 + 1.88586 2 3 cbr 210 ------- 1 1.0 5.0 462 489 r 1.88601 2 3 cbr 210 ------- 1 1.0 5.0 444 470 + 1.88601 3 5 cbr 210 ------- 1 1.0 5.0 444 470 - 1.88601 3 5 cbr 210 ------- 1 1.0 5.0 444 470 - 1.88641 2 3 cbr 210 ------- 1 1.0 5.0 460 487 + 1.88875 1 2 cbr 210 ------- 1 1.0 5.0 477 505 - 1.88875 1 2 cbr 210 ------- 1 1.0 5.0 477 505 r 1.88897 3 5 cbr 210 ------- 1 1.0 5.0 429 455 r 1.88937 2 3 cbr 210 ------- 1 1.0 5.0 445 471 + 1.88937 3 5 cbr 210 ------- 1 1.0 5.0 445 471 - 1.88937 3 5 cbr 210 ------- 1 1.0 5.0 445 471 r 1.88961 1 2 cbr 210 ------- 1 1.0 5.0 463 490 + 1.88961 2 3 cbr 210 ------- 1 1.0 5.0 463 490 - 1.88977 2 3 cbr 210 ------- 1 1.0 5.0 461 488 r 1.89177 4 3 ack 40 ------- 0 4.0 0.0 12 492 + 1.89177 3 2 ack 40 ------- 0 4.0 0.0 12 492 - 1.89177 3 2 ack 40 ------- 0 4.0 0.0 12 492 r 1.89233 3 5 cbr 210 ------- 1 1.0 5.0 430 456 + 1.8925 1 2 cbr 210 ------- 1 1.0 5.0 478 506 - 1.8925 1 2 cbr 210 ------- 1 1.0 5.0 478 506 r 1.89273 2 3 cbr 210 ------- 1 1.0 5.0 446 473 + 1.89273 3 5 cbr 210 ------- 1 1.0 5.0 446 473 - 1.89273 3 5 cbr 210 ------- 1 1.0 5.0 446 473 - 1.89313 2 3 cbr 210 ------- 1 1.0 5.0 462 489 r 1.89336 1 2 cbr 210 ------- 1 1.0 5.0 464 491 + 1.89336 2 3 cbr 210 ------- 1 1.0 5.0 464 491 r 1.89569 3 5 cbr 210 ------- 1 1.0 5.0 431 457 r 1.89609 2 3 cbr 210 ------- 1 1.0 5.0 447 474 + 1.89609 3 5 cbr 210 ------- 1 1.0 5.0 447 474 - 1.89609 3 5 cbr 210 ------- 1 1.0 5.0 447 474 + 1.89625 1 2 cbr 210 ------- 1 1.0 5.0 479 507 - 1.89625 1 2 cbr 210 ------- 1 1.0 5.0 479 507 - 1.89649 2 3 cbr 210 ------- 1 1.0 5.0 463 490 r 1.89711 1 2 cbr 210 ------- 1 1.0 5.0 465 493 + 1.89711 2 3 cbr 210 ------- 1 1.0 5.0 465 493 r 1.89905 3 5 cbr 210 ------- 1 1.0 5.0 432 458 r 1.89945 2 3 cbr 210 ------- 1 1.0 5.0 448 475 + 1.89945 3 5 cbr 210 ------- 1 1.0 5.0 448 475 - 1.89945 3 5 cbr 210 ------- 1 1.0 5.0 448 475 - 1.89985 2 3 cbr 210 ------- 1 1.0 5.0 464 491 + 1.9 1 2 cbr 210 ------- 1 1.0 5.0 480 508 - 1.9 1 2 cbr 210 ------- 1 1.0 5.0 480 508 r 1.90086 1 2 cbr 210 ------- 1 1.0 5.0 466 494 + 1.90086 2 3 cbr 210 ------- 1 1.0 5.0 466 494 r 1.90241 3 5 cbr 210 ------- 1 1.0 5.0 433 459 r 1.90281 2 3 cbr 210 ------- 1 1.0 5.0 449 476 + 1.90281 3 5 cbr 210 ------- 1 1.0 5.0 449 476 - 1.90281 3 5 cbr 210 ------- 1 1.0 5.0 449 476 - 1.90321 2 3 cbr 210 ------- 1 1.0 5.0 465 493 + 1.90375 1 2 cbr 210 ------- 1 1.0 5.0 481 509 - 1.90375 1 2 cbr 210 ------- 1 1.0 5.0 481 509 r 1.90461 1 2 cbr 210 ------- 1 1.0 5.0 467 495 + 1.90461 2 3 cbr 210 ------- 1 1.0 5.0 467 495 r 1.90577 3 5 cbr 210 ------- 1 1.0 5.0 434 460 r 1.90617 2 3 cbr 210 ------- 1 1.0 5.0 450 477 + 1.90617 3 5 cbr 210 ------- 1 1.0 5.0 450 477 - 1.90617 3 5 cbr 210 ------- 1 1.0 5.0 450 477 - 1.90657 2 3 cbr 210 ------- 1 1.0 5.0 466 494 + 1.9075 1 2 cbr 210 ------- 1 1.0 5.0 482 510 - 1.9075 1 2 cbr 210 ------- 1 1.0 5.0 482 510 r 1.90836 1 2 cbr 210 ------- 1 1.0 5.0 468 496 + 1.90836 2 3 cbr 210 ------- 1 1.0 5.0 468 496 r 1.90913 3 5 cbr 210 ------- 1 1.0 5.0 435 461 r 1.90953 2 3 cbr 210 ------- 1 1.0 5.0 451 478 + 1.90953 3 5 cbr 210 ------- 1 1.0 5.0 451 478 - 1.90953 3 5 cbr 210 ------- 1 1.0 5.0 451 478 - 1.90993 2 3 cbr 210 ------- 1 1.0 5.0 467 495 + 1.91125 1 2 cbr 210 ------- 1 1.0 5.0 483 511 - 1.91125 1 2 cbr 210 ------- 1 1.0 5.0 483 511 r 1.91211 1 2 cbr 210 ------- 1 1.0 5.0 469 497 + 1.91211 2 3 cbr 210 ------- 1 1.0 5.0 469 497 r 1.91249 3 5 cbr 210 ------- 1 1.0 5.0 436 462 r 1.91289 2 3 cbr 210 ------- 1 1.0 5.0 452 479 + 1.91289 3 5 cbr 210 ------- 1 1.0 5.0 452 479 - 1.91289 3 5 cbr 210 ------- 1 1.0 5.0 452 479 - 1.91329 2 3 cbr 210 ------- 1 1.0 5.0 468 496 + 1.915 1 2 cbr 210 ------- 1 1.0 5.0 484 512 - 1.915 1 2 cbr 210 ------- 1 1.0 5.0 484 512 r 1.91585 3 5 cbr 210 ------- 1 1.0 5.0 437 463 r 1.91586 1 2 cbr 210 ------- 1 1.0 5.0 470 498 + 1.91586 2 3 cbr 210 ------- 1 1.0 5.0 470 498 r 1.91625 2 3 cbr 210 ------- 1 1.0 5.0 453 480 + 1.91625 3 5 cbr 210 ------- 1 1.0 5.0 453 480 - 1.91625 3 5 cbr 210 ------- 1 1.0 5.0 453 480 - 1.91665 2 3 cbr 210 ------- 1 1.0 5.0 469 497 + 1.91875 1 2 cbr 210 ------- 1 1.0 5.0 485 513 - 1.91875 1 2 cbr 210 ------- 1 1.0 5.0 485 513 r 1.91921 3 5 cbr 210 ------- 1 1.0 5.0 438 464 r 1.91961 1 2 cbr 210 ------- 1 1.0 5.0 471 499 + 1.91961 2 3 cbr 210 ------- 1 1.0 5.0 471 499 r 1.91961 2 3 cbr 210 ------- 1 1.0 5.0 454 481 + 1.91961 3 5 cbr 210 ------- 1 1.0 5.0 454 481 - 1.91961 3 5 cbr 210 ------- 1 1.0 5.0 454 481 - 1.92001 2 3 cbr 210 ------- 1 1.0 5.0 470 498 + 1.9225 1 2 cbr 210 ------- 1 1.0 5.0 486 514 - 1.9225 1 2 cbr 210 ------- 1 1.0 5.0 486 514 r 1.92257 3 5 cbr 210 ------- 1 1.0 5.0 439 465 r 1.92297 2 3 cbr 210 ------- 1 1.0 5.0 455 482 + 1.92297 3 5 cbr 210 ------- 1 1.0 5.0 455 482 - 1.92297 3 5 cbr 210 ------- 1 1.0 5.0 455 482 r 1.92336 1 2 cbr 210 ------- 1 1.0 5.0 472 500 + 1.92336 2 3 cbr 210 ------- 1 1.0 5.0 472 500 - 1.92337 2 3 cbr 210 ------- 1 1.0 5.0 471 499 r 1.92367 2 0 ack 48 ------- 0 4.0 0.0 9 472 + 1.92367 0 2 tcp 1000 ------- 0 0.0 4.0 13 515 - 1.92367 0 2 tcp 1000 ------- 0 0.0 4.0 13 515 + 1.92367 0 2 tcp 1000 ------- 0 0.0 4.0 14 516 r 1.92593 3 5 cbr 210 ------- 1 1.0 5.0 440 466 + 1.92625 1 2 cbr 210 ------- 1 1.0 5.0 487 517 - 1.92625 1 2 cbr 210 ------- 1 1.0 5.0 487 517 r 1.92633 2 3 cbr 210 ------- 1 1.0 5.0 456 483 + 1.92633 3 5 cbr 210 ------- 1 1.0 5.0 456 483 - 1.92633 3 5 cbr 210 ------- 1 1.0 5.0 456 483 - 1.92673 2 3 cbr 210 ------- 1 1.0 5.0 472 500 r 1.92711 1 2 cbr 210 ------- 1 1.0 5.0 473 501 + 1.92711 2 3 cbr 210 ------- 1 1.0 5.0 473 501 r 1.92929 3 5 cbr 210 ------- 1 1.0 5.0 441 467 r 1.92969 2 3 cbr 210 ------- 1 1.0 5.0 457 484 + 1.92969 3 5 cbr 210 ------- 1 1.0 5.0 457 484 - 1.92969 3 5 cbr 210 ------- 1 1.0 5.0 457 484 + 1.93 1 2 cbr 210 ------- 1 1.0 5.0 488 518 - 1.93 1 2 cbr 210 ------- 1 1.0 5.0 488 518 - 1.93009 2 3 cbr 210 ------- 1 1.0 5.0 473 501 r 1.93086 1 2 cbr 210 ------- 1 1.0 5.0 474 502 + 1.93086 2 3 cbr 210 ------- 1 1.0 5.0 474 502 r 1.93265 3 5 cbr 210 ------- 1 1.0 5.0 442 468 r 1.93305 2 3 cbr 210 ------- 1 1.0 5.0 458 485 + 1.93305 3 5 cbr 210 ------- 1 1.0 5.0 458 485 - 1.93305 3 5 cbr 210 ------- 1 1.0 5.0 458 485 - 1.93345 2 3 cbr 210 ------- 1 1.0 5.0 474 502 + 1.93375 1 2 cbr 210 ------- 1 1.0 5.0 489 519 - 1.93375 1 2 cbr 210 ------- 1 1.0 5.0 489 519 r 1.93461 1 2 cbr 210 ------- 1 1.0 5.0 475 503 + 1.93461 2 3 cbr 210 ------- 1 1.0 5.0 475 503 r 1.93601 3 5 cbr 210 ------- 1 1.0 5.0 443 469 r 1.93641 2 3 cbr 210 ------- 1 1.0 5.0 459 486 + 1.93641 3 5 cbr 210 ------- 1 1.0 5.0 459 486 - 1.93641 3 5 cbr 210 ------- 1 1.0 5.0 459 486 - 1.93681 2 3 cbr 210 ------- 1 1.0 5.0 475 503 + 1.9375 1 2 cbr 210 ------- 1 1.0 5.0 490 520 - 1.9375 1 2 cbr 210 ------- 1 1.0 5.0 490 520 r 1.93836 1 2 cbr 210 ------- 1 1.0 5.0 476 504 + 1.93836 2 3 cbr 210 ------- 1 1.0 5.0 476 504 r 1.93937 3 5 cbr 210 ------- 1 1.0 5.0 444 470 - 1.93967 0 2 tcp 1000 ------- 0 0.0 4.0 14 516 r 1.93977 2 3 cbr 210 ------- 1 1.0 5.0 460 487 + 1.93977 3 5 cbr 210 ------- 1 1.0 5.0 460 487 - 1.93977 3 5 cbr 210 ------- 1 1.0 5.0 460 487 - 1.94017 2 3 cbr 210 ------- 1 1.0 5.0 476 504 + 1.94125 1 2 cbr 210 ------- 1 1.0 5.0 491 521 - 1.94125 1 2 cbr 210 ------- 1 1.0 5.0 491 521 r 1.94211 1 2 cbr 210 ------- 1 1.0 5.0 477 505 + 1.94211 2 3 cbr 210 ------- 1 1.0 5.0 477 505 r 1.94241 3 2 ack 40 ------- 0 4.0 0.0 12 492 + 1.94241 2 0 ack 40 ------- 0 4.0 0.0 12 492 - 1.94241 2 0 ack 40 ------- 0 4.0 0.0 12 492 r 1.94273 3 5 cbr 210 ------- 1 1.0 5.0 445 471 r 1.94313 2 3 cbr 210 ------- 1 1.0 5.0 461 488 + 1.94313 3 5 cbr 210 ------- 1 1.0 5.0 461 488 - 1.94313 3 5 cbr 210 ------- 1 1.0 5.0 461 488 - 1.94353 2 3 cbr 210 ------- 1 1.0 5.0 477 505 + 1.945 1 2 cbr 210 ------- 1 1.0 5.0 492 522 - 1.945 1 2 cbr 210 ------- 1 1.0 5.0 492 522 r 1.94586 1 2 cbr 210 ------- 1 1.0 5.0 478 506 + 1.94586 2 3 cbr 210 ------- 1 1.0 5.0 478 506 r 1.94609 3 5 cbr 210 ------- 1 1.0 5.0 446 473 r 1.94649 2 3 cbr 210 ------- 1 1.0 5.0 462 489 + 1.94649 3 5 cbr 210 ------- 1 1.0 5.0 462 489 - 1.94649 3 5 cbr 210 ------- 1 1.0 5.0 462 489 - 1.94689 2 3 cbr 210 ------- 1 1.0 5.0 478 506 + 1.94875 1 2 cbr 210 ------- 1 1.0 5.0 493 523 - 1.94875 1 2 cbr 210 ------- 1 1.0 5.0 493 523 r 1.94945 3 5 cbr 210 ------- 1 1.0 5.0 447 474 r 1.94961 1 2 cbr 210 ------- 1 1.0 5.0 479 507 + 1.94961 2 3 cbr 210 ------- 1 1.0 5.0 479 507 r 1.94985 2 3 cbr 210 ------- 1 1.0 5.0 463 490 + 1.94985 3 5 cbr 210 ------- 1 1.0 5.0 463 490 - 1.94985 3 5 cbr 210 ------- 1 1.0 5.0 463 490 - 1.95025 2 3 cbr 210 ------- 1 1.0 5.0 479 507 + 1.9525 1 2 cbr 210 ------- 1 1.0 5.0 494 524 - 1.9525 1 2 cbr 210 ------- 1 1.0 5.0 494 524 r 1.95281 3 5 cbr 210 ------- 1 1.0 5.0 448 475 r 1.95321 2 3 cbr 210 ------- 1 1.0 5.0 464 491 + 1.95321 3 5 cbr 210 ------- 1 1.0 5.0 464 491 - 1.95321 3 5 cbr 210 ------- 1 1.0 5.0 464 491 r 1.95336 1 2 cbr 210 ------- 1 1.0 5.0 480 508 + 1.95336 2 3 cbr 210 ------- 1 1.0 5.0 480 508 - 1.95361 2 3 cbr 210 ------- 1 1.0 5.0 480 508 r 1.95617 3 5 cbr 210 ------- 1 1.0 5.0 449 476 + 1.95625 1 2 cbr 210 ------- 1 1.0 5.0 495 525 - 1.95625 1 2 cbr 210 ------- 1 1.0 5.0 495 525 r 1.95657 2 3 cbr 210 ------- 1 1.0 5.0 465 493 + 1.95657 3 5 cbr 210 ------- 1 1.0 5.0 465 493 - 1.95657 3 5 cbr 210 ------- 1 1.0 5.0 465 493 r 1.95711 1 2 cbr 210 ------- 1 1.0 5.0 481 509 + 1.95711 2 3 cbr 210 ------- 1 1.0 5.0 481 509 - 1.95711 2 3 cbr 210 ------- 1 1.0 5.0 481 509 r 1.95953 3 5 cbr 210 ------- 1 1.0 5.0 450 477 r 1.95993 2 3 cbr 210 ------- 1 1.0 5.0 466 494 + 1.95993 3 5 cbr 210 ------- 1 1.0 5.0 466 494 - 1.95993 3 5 cbr 210 ------- 1 1.0 5.0 466 494 + 1.96 1 2 cbr 210 ------- 1 1.0 5.0 496 526 - 1.96 1 2 cbr 210 ------- 1 1.0 5.0 496 526 v 1.96 eval {set sim_annotation {TIMEOUT,Send Packet_13 : Initialize window size to 1}} r 1.96086 1 2 cbr 210 ------- 1 1.0 5.0 482 510 + 1.96086 2 3 cbr 210 ------- 1 1.0 5.0 482 510 - 1.96086 2 3 cbr 210 ------- 1 1.0 5.0 482 510 r 1.96289 3 5 cbr 210 ------- 1 1.0 5.0 451 478 r 1.96329 2 3 cbr 210 ------- 1 1.0 5.0 467 495 + 1.96329 3 5 cbr 210 ------- 1 1.0 5.0 467 495 - 1.96329 3 5 cbr 210 ------- 1 1.0 5.0 467 495 + 1.96375 1 2 cbr 210 ------- 1 1.0 5.0 497 527 - 1.96375 1 2 cbr 210 ------- 1 1.0 5.0 497 527 r 1.96461 1 2 cbr 210 ------- 1 1.0 5.0 483 511 + 1.96461 2 3 cbr 210 ------- 1 1.0 5.0 483 511 - 1.96461 2 3 cbr 210 ------- 1 1.0 5.0 483 511 r 1.96625 3 5 cbr 210 ------- 1 1.0 5.0 452 479 r 1.96665 2 3 cbr 210 ------- 1 1.0 5.0 468 496 + 1.96665 3 5 cbr 210 ------- 1 1.0 5.0 468 496 - 1.96665 3 5 cbr 210 ------- 1 1.0 5.0 468 496 + 1.9675 1 2 cbr 210 ------- 1 1.0 5.0 498 528 - 1.9675 1 2 cbr 210 ------- 1 1.0 5.0 498 528 r 1.96836 1 2 cbr 210 ------- 1 1.0 5.0 484 512 + 1.96836 2 3 cbr 210 ------- 1 1.0 5.0 484 512 - 1.96836 2 3 cbr 210 ------- 1 1.0 5.0 484 512 r 1.96961 3 5 cbr 210 ------- 1 1.0 5.0 453 480 r 1.97001 2 3 cbr 210 ------- 1 1.0 5.0 469 497 + 1.97001 3 5 cbr 210 ------- 1 1.0 5.0 469 497 - 1.97001 3 5 cbr 210 ------- 1 1.0 5.0 469 497 + 1.97125 1 2 cbr 210 ------- 1 1.0 5.0 499 529 - 1.97125 1 2 cbr 210 ------- 1 1.0 5.0 499 529 r 1.97211 1 2 cbr 210 ------- 1 1.0 5.0 485 513 + 1.97211 2 3 cbr 210 ------- 1 1.0 5.0 485 513 - 1.97211 2 3 cbr 210 ------- 1 1.0 5.0 485 513 r 1.97297 3 5 cbr 210 ------- 1 1.0 5.0 454 481 r 1.97337 2 3 cbr 210 ------- 1 1.0 5.0 470 498 + 1.97337 3 5 cbr 210 ------- 1 1.0 5.0 470 498 - 1.97337 3 5 cbr 210 ------- 1 1.0 5.0 470 498 + 1.975 1 2 cbr 210 ------- 1 1.0 5.0 500 530 - 1.975 1 2 cbr 210 ------- 1 1.0 5.0 500 530 r 1.97586 1 2 cbr 210 ------- 1 1.0 5.0 486 514 + 1.97586 2 3 cbr 210 ------- 1 1.0 5.0 486 514 - 1.97586 2 3 cbr 210 ------- 1 1.0 5.0 486 514 r 1.97633 3 5 cbr 210 ------- 1 1.0 5.0 455 482 r 1.97673 2 3 cbr 210 ------- 1 1.0 5.0 471 499 + 1.97673 3 5 cbr 210 ------- 1 1.0 5.0 471 499 - 1.97673 3 5 cbr 210 ------- 1 1.0 5.0 471 499 + 1.97875 1 2 cbr 210 ------- 1 1.0 5.0 501 531 - 1.97875 1 2 cbr 210 ------- 1 1.0 5.0 501 531 r 1.97961 1 2 cbr 210 ------- 1 1.0 5.0 487 517 + 1.97961 2 3 cbr 210 ------- 1 1.0 5.0 487 517 - 1.97961 2 3 cbr 210 ------- 1 1.0 5.0 487 517 r 1.97969 3 5 cbr 210 ------- 1 1.0 5.0 456 483 r 1.98009 2 3 cbr 210 ------- 1 1.0 5.0 472 500 + 1.98009 3 5 cbr 210 ------- 1 1.0 5.0 472 500 - 1.98009 3 5 cbr 210 ------- 1 1.0 5.0 472 500 + 1.9825 1 2 cbr 210 ------- 1 1.0 5.0 502 532 - 1.9825 1 2 cbr 210 ------- 1 1.0 5.0 502 532 r 1.98305 3 5 cbr 210 ------- 1 1.0 5.0 457 484 r 1.98336 1 2 cbr 210 ------- 1 1.0 5.0 488 518 + 1.98336 2 3 cbr 210 ------- 1 1.0 5.0 488 518 - 1.98336 2 3 cbr 210 ------- 1 1.0 5.0 488 518 r 1.98345 2 3 cbr 210 ------- 1 1.0 5.0 473 501 + 1.98345 3 5 cbr 210 ------- 1 1.0 5.0 473 501 - 1.98345 3 5 cbr 210 ------- 1 1.0 5.0 473 501 + 1.98625 1 2 cbr 210 ------- 1 1.0 5.0 503 533 - 1.98625 1 2 cbr 210 ------- 1 1.0 5.0 503 533 r 1.98641 3 5 cbr 210 ------- 1 1.0 5.0 458 485 r 1.98681 2 3 cbr 210 ------- 1 1.0 5.0 474 502 + 1.98681 3 5 cbr 210 ------- 1 1.0 5.0 474 502 - 1.98681 3 5 cbr 210 ------- 1 1.0 5.0 474 502 r 1.98711 1 2 cbr 210 ------- 1 1.0 5.0 489 519 + 1.98711 2 3 cbr 210 ------- 1 1.0 5.0 489 519 - 1.98711 2 3 cbr 210 ------- 1 1.0 5.0 489 519 r 1.98967 0 2 tcp 1000 ------- 0 0.0 4.0 13 515 + 1.98967 2 3 tcp 1000 ------- 0 0.0 4.0 13 515 r 1.98977 3 5 cbr 210 ------- 1 1.0 5.0 459 486 + 1.99 1 2 cbr 210 ------- 1 1.0 5.0 504 534 - 1.99 1 2 cbr 210 ------- 1 1.0 5.0 504 534 r 1.99017 2 3 cbr 210 ------- 1 1.0 5.0 475 503 + 1.99017 3 5 cbr 210 ------- 1 1.0 5.0 475 503 - 1.99017 3 5 cbr 210 ------- 1 1.0 5.0 475 503 - 1.99047 2 3 tcp 1000 ------- 0 0.0 4.0 13 515 r 1.99086 1 2 cbr 210 ------- 1 1.0 5.0 490 520 + 1.99086 2 3 cbr 210 ------- 1 1.0 5.0 490 520 r 1.99305 2 0 ack 40 ------- 0 4.0 0.0 12 492 + 1.99305 0 2 tcp 1000 ------- 0 0.0 4.0 15 535 - 1.99305 0 2 tcp 1000 ------- 0 0.0 4.0 15 535 r 1.99313 3 5 cbr 210 ------- 1 1.0 5.0 460 487 r 1.99353 2 3 cbr 210 ------- 1 1.0 5.0 476 504 + 1.99353 3 5 cbr 210 ------- 1 1.0 5.0 476 504 - 1.99353 3 5 cbr 210 ------- 1 1.0 5.0 476 504 + 1.99375 1 2 cbr 210 ------- 1 1.0 5.0 505 536 - 1.99375 1 2 cbr 210 ------- 1 1.0 5.0 505 536 r 1.99461 1 2 cbr 210 ------- 1 1.0 5.0 491 521 + 1.99461 2 3 cbr 210 ------- 1 1.0 5.0 491 521 r 1.99649 3 5 cbr 210 ------- 1 1.0 5.0 461 488 r 1.99689 2 3 cbr 210 ------- 1 1.0 5.0 477 505 + 1.99689 3 5 cbr 210 ------- 1 1.0 5.0 477 505 - 1.99689 3 5 cbr 210 ------- 1 1.0 5.0 477 505 + 1.9975 1 2 cbr 210 ------- 1 1.0 5.0 506 537 - 1.9975 1 2 cbr 210 ------- 1 1.0 5.0 506 537 r 1.99836 1 2 cbr 210 ------- 1 1.0 5.0 492 522 + 1.99836 2 3 cbr 210 ------- 1 1.0 5.0 492 522 r 1.99985 3 5 cbr 210 ------- 1 1.0 5.0 462 489 r 2.00025 2 3 cbr 210 ------- 1 1.0 5.0 478 506 + 2.00025 3 5 cbr 210 ------- 1 1.0 5.0 478 506 - 2.00025 3 5 cbr 210 ------- 1 1.0 5.0 478 506 + 2.00125 1 2 cbr 210 ------- 1 1.0 5.0 507 538 - 2.00125 1 2 cbr 210 ------- 1 1.0 5.0 507 538 r 2.00211 1 2 cbr 210 ------- 1 1.0 5.0 493 523 + 2.00211 2 3 cbr 210 ------- 1 1.0 5.0 493 523 r 2.00321 3 5 cbr 210 ------- 1 1.0 5.0 463 490 r 2.00361 2 3 cbr 210 ------- 1 1.0 5.0 479 507 + 2.00361 3 5 cbr 210 ------- 1 1.0 5.0 479 507 - 2.00361 3 5 cbr 210 ------- 1 1.0 5.0 479 507 + 2.005 1 2 cbr 210 ------- 1 1.0 5.0 508 539 - 2.005 1 2 cbr 210 ------- 1 1.0 5.0 508 539 r 2.00567 0 2 tcp 1000 ------- 0 0.0 4.0 14 516 + 2.00567 2 3 tcp 1000 ------- 0 0.0 4.0 14 516 r 2.00586 1 2 cbr 210 ------- 1 1.0 5.0 494 524 + 2.00586 2 3 cbr 210 ------- 1 1.0 5.0 494 524 - 2.00647 2 3 cbr 210 ------- 1 1.0 5.0 490 520 r 2.00657 3 5 cbr 210 ------- 1 1.0 5.0 464 491 r 2.00697 2 3 cbr 210 ------- 1 1.0 5.0 480 508 + 2.00697 3 5 cbr 210 ------- 1 1.0 5.0 480 508 - 2.00697 3 5 cbr 210 ------- 1 1.0 5.0 480 508 + 2.00875 1 2 cbr 210 ------- 1 1.0 5.0 509 540 - 2.00875 1 2 cbr 210 ------- 1 1.0 5.0 509 540 r 2.00961 1 2 cbr 210 ------- 1 1.0 5.0 495 525 + 2.00961 2 3 cbr 210 ------- 1 1.0 5.0 495 525 - 2.00983 2 3 cbr 210 ------- 1 1.0 5.0 491 521 r 2.00993 3 5 cbr 210 ------- 1 1.0 5.0 465 493 r 2.01047 2 3 cbr 210 ------- 1 1.0 5.0 481 509 + 2.01047 3 5 cbr 210 ------- 1 1.0 5.0 481 509 - 2.01047 3 5 cbr 210 ------- 1 1.0 5.0 481 509 + 2.0125 1 2 cbr 210 ------- 1 1.0 5.0 510 541 - 2.0125 1 2 cbr 210 ------- 1 1.0 5.0 510 541 - 2.01319 2 3 cbr 210 ------- 1 1.0 5.0 492 522 r 2.01329 3 5 cbr 210 ------- 1 1.0 5.0 466 494 r 2.01336 1 2 cbr 210 ------- 1 1.0 5.0 496 526 + 2.01336 2 3 cbr 210 ------- 1 1.0 5.0 496 526 r 2.01422 2 3 cbr 210 ------- 1 1.0 5.0 482 510 + 2.01422 3 5 cbr 210 ------- 1 1.0 5.0 482 510 - 2.01422 3 5 cbr 210 ------- 1 1.0 5.0 482 510 + 2.01625 1 2 cbr 210 ------- 1 1.0 5.0 511 542 - 2.01625 1 2 cbr 210 ------- 1 1.0 5.0 511 542 - 2.01655 2 3 cbr 210 ------- 1 1.0 5.0 493 523 r 2.01665 3 5 cbr 210 ------- 1 1.0 5.0 467 495 r 2.01711 1 2 cbr 210 ------- 1 1.0 5.0 497 527 + 2.01711 2 3 cbr 210 ------- 1 1.0 5.0 497 527 r 2.01797 2 3 cbr 210 ------- 1 1.0 5.0 483 511 + 2.01797 3 5 cbr 210 ------- 1 1.0 5.0 483 511 - 2.01797 3 5 cbr 210 ------- 1 1.0 5.0 483 511 - 2.01991 2 3 tcp 1000 ------- 0 0.0 4.0 14 516 + 2.02 1 2 cbr 210 ------- 1 1.0 5.0 512 543 - 2.02 1 2 cbr 210 ------- 1 1.0 5.0 512 543 r 2.02001 3 5 cbr 210 ------- 1 1.0 5.0 468 496 r 2.02086 1 2 cbr 210 ------- 1 1.0 5.0 498 528 + 2.02086 2 3 cbr 210 ------- 1 1.0 5.0 498 528 r 2.02172 2 3 cbr 210 ------- 1 1.0 5.0 484 512 + 2.02172 3 5 cbr 210 ------- 1 1.0 5.0 484 512 - 2.02172 3 5 cbr 210 ------- 1 1.0 5.0 484 512 r 2.02337 3 5 cbr 210 ------- 1 1.0 5.0 469 497 + 2.02375 1 2 cbr 210 ------- 1 1.0 5.0 513 544 - 2.02375 1 2 cbr 210 ------- 1 1.0 5.0 513 544 r 2.02461 1 2 cbr 210 ------- 1 1.0 5.0 499 529 + 2.02461 2 3 cbr 210 ------- 1 1.0 5.0 499 529 r 2.02547 2 3 cbr 210 ------- 1 1.0 5.0 485 513 + 2.02547 3 5 cbr 210 ------- 1 1.0 5.0 485 513 - 2.02547 3 5 cbr 210 ------- 1 1.0 5.0 485 513 r 2.02673 3 5 cbr 210 ------- 1 1.0 5.0 470 498 + 2.0275 1 2 cbr 210 ------- 1 1.0 5.0 514 545 - 2.0275 1 2 cbr 210 ------- 1 1.0 5.0 514 545 r 2.02836 1 2 cbr 210 ------- 1 1.0 5.0 500 530 + 2.02836 2 3 cbr 210 ------- 1 1.0 5.0 500 530 r 2.02922 2 3 cbr 210 ------- 1 1.0 5.0 486 514 + 2.02922 3 5 cbr 210 ------- 1 1.0 5.0 486 514 - 2.02922 3 5 cbr 210 ------- 1 1.0 5.0 486 514 r 2.03009 3 5 cbr 210 ------- 1 1.0 5.0 471 499 + 2.03125 1 2 cbr 210 ------- 1 1.0 5.0 515 546 - 2.03125 1 2 cbr 210 ------- 1 1.0 5.0 515 546 r 2.03211 1 2 cbr 210 ------- 1 1.0 5.0 501 531 + 2.03211 2 3 cbr 210 ------- 1 1.0 5.0 501 531 r 2.03297 2 3 cbr 210 ------- 1 1.0 5.0 487 517 + 2.03297 3 5 cbr 210 ------- 1 1.0 5.0 487 517 - 2.03297 3 5 cbr 210 ------- 1 1.0 5.0 487 517 r 2.03345 3 5 cbr 210 ------- 1 1.0 5.0 472 500 + 2.035 1 2 cbr 210 ------- 1 1.0 5.0 516 547 - 2.035 1 2 cbr 210 ------- 1 1.0 5.0 516 547 r 2.03586 1 2 cbr 210 ------- 1 1.0 5.0 502 532 + 2.03586 2 3 cbr 210 ------- 1 1.0 5.0 502 532 - 2.03591 2 3 cbr 210 ------- 1 1.0 5.0 494 524 r 2.03672 2 3 cbr 210 ------- 1 1.0 5.0 488 518 + 2.03672 3 5 cbr 210 ------- 1 1.0 5.0 488 518 - 2.03672 3 5 cbr 210 ------- 1 1.0 5.0 488 518 r 2.03681 3 5 cbr 210 ------- 1 1.0 5.0 473 501 + 2.03875 1 2 cbr 210 ------- 1 1.0 5.0 517 548 - 2.03875 1 2 cbr 210 ------- 1 1.0 5.0 517 548 - 2.03927 2 3 cbr 210 ------- 1 1.0 5.0 495 525 r 2.03961 1 2 cbr 210 ------- 1 1.0 5.0 503 533 + 2.03961 2 3 cbr 210 ------- 1 1.0 5.0 503 533 r 2.04017 3 5 cbr 210 ------- 1 1.0 5.0 474 502 r 2.04047 2 3 cbr 210 ------- 1 1.0 5.0 489 519 + 2.04047 3 5 cbr 210 ------- 1 1.0 5.0 489 519 - 2.04047 3 5 cbr 210 ------- 1 1.0 5.0 489 519 + 2.0425 1 2 cbr 210 ------- 1 1.0 5.0 518 549 - 2.0425 1 2 cbr 210 ------- 1 1.0 5.0 518 549 - 2.04263 2 3 cbr 210 ------- 1 1.0 5.0 496 526 r 2.04336 1 2 cbr 210 ------- 1 1.0 5.0 504 534 + 2.04336 2 3 cbr 210 ------- 1 1.0 5.0 504 534 r 2.04353 3 5 cbr 210 ------- 1 1.0 5.0 475 503 - 2.04599 2 3 cbr 210 ------- 1 1.0 5.0 497 527 + 2.04625 1 2 cbr 210 ------- 1 1.0 5.0 519 550 - 2.04625 1 2 cbr 210 ------- 1 1.0 5.0 519 550 r 2.04689 3 5 cbr 210 ------- 1 1.0 5.0 476 504 r 2.04711 1 2 cbr 210 ------- 1 1.0 5.0 505 536 + 2.04711 2 3 cbr 210 ------- 1 1.0 5.0 505 536 - 2.04935 2 3 cbr 210 ------- 1 1.0 5.0 498 528 + 2.05 1 2 cbr 210 ------- 1 1.0 5.0 520 551 - 2.05 1 2 cbr 210 ------- 1 1.0 5.0 520 551 r 2.05025 3 5 cbr 210 ------- 1 1.0 5.0 477 505 r 2.05086 1 2 cbr 210 ------- 1 1.0 5.0 506 537 + 2.05086 2 3 cbr 210 ------- 1 1.0 5.0 506 537 - 2.05271 2 3 cbr 210 ------- 1 1.0 5.0 499 529 r 2.05361 3 5 cbr 210 ------- 1 1.0 5.0 478 506 + 2.05375 1 2 cbr 210 ------- 1 1.0 5.0 521 552 - 2.05375 1 2 cbr 210 ------- 1 1.0 5.0 521 552 r 2.05461 1 2 cbr 210 ------- 1 1.0 5.0 507 538 + 2.05461 2 3 cbr 210 ------- 1 1.0 5.0 507 538 - 2.05607 2 3 cbr 210 ------- 1 1.0 5.0 500 530 r 2.05647 2 3 tcp 1000 ------- 0 0.0 4.0 13 515 + 2.05647 3 4 tcp 1000 ------- 0 0.0 4.0 13 515 - 2.05647 3 4 tcp 1000 ------- 0 0.0 4.0 13 515 r 2.05697 3 5 cbr 210 ------- 1 1.0 5.0 479 507 + 2.0575 1 2 cbr 210 ------- 1 1.0 5.0 522 553 - 2.0575 1 2 cbr 210 ------- 1 1.0 5.0 522 553 r 2.05836 1 2 cbr 210 ------- 1 1.0 5.0 508 539 + 2.05836 2 3 cbr 210 ------- 1 1.0 5.0 508 539 r 2.05905 0 2 tcp 1000 ------- 0 0.0 4.0 15 535 + 2.05905 2 3 tcp 1000 ------- 0 0.0 4.0 15 535 - 2.05943 2 3 cbr 210 ------- 1 1.0 5.0 501 531 r 2.05983 2 3 cbr 210 ------- 1 1.0 5.0 490 520 + 2.05983 3 5 cbr 210 ------- 1 1.0 5.0 490 520 - 2.05983 3 5 cbr 210 ------- 1 1.0 5.0 490 520 r 2.06033 3 5 cbr 210 ------- 1 1.0 5.0 480 508 + 2.06125 1 2 cbr 210 ------- 1 1.0 5.0 523 554 - 2.06125 1 2 cbr 210 ------- 1 1.0 5.0 523 554 r 2.06211 1 2 cbr 210 ------- 1 1.0 5.0 509 540 + 2.06211 2 3 cbr 210 ------- 1 1.0 5.0 509 540 - 2.06279 2 3 cbr 210 ------- 1 1.0 5.0 502 532 r 2.06319 2 3 cbr 210 ------- 1 1.0 5.0 491 521 + 2.06319 3 5 cbr 210 ------- 1 1.0 5.0 491 521 - 2.06319 3 5 cbr 210 ------- 1 1.0 5.0 491 521 r 2.06383 3 5 cbr 210 ------- 1 1.0 5.0 481 509 + 2.065 1 2 cbr 210 ------- 1 1.0 5.0 524 555 - 2.065 1 2 cbr 210 ------- 1 1.0 5.0 524 555 r 2.06586 1 2 cbr 210 ------- 1 1.0 5.0 510 541 + 2.06586 2 3 cbr 210 ------- 1 1.0 5.0 510 541 - 2.06615 2 3 cbr 210 ------- 1 1.0 5.0 503 533 r 2.06655 2 3 cbr 210 ------- 1 1.0 5.0 492 522 + 2.06655 3 5 cbr 210 ------- 1 1.0 5.0 492 522 - 2.06655 3 5 cbr 210 ------- 1 1.0 5.0 492 522 r 2.06758 3 5 cbr 210 ------- 1 1.0 5.0 482 510 + 2.06875 1 2 cbr 210 ------- 1 1.0 5.0 525 556 - 2.06875 1 2 cbr 210 ------- 1 1.0 5.0 525 556 - 2.06951 2 3 cbr 210 ------- 1 1.0 5.0 504 534 r 2.06961 1 2 cbr 210 ------- 1 1.0 5.0 511 542 + 2.06961 2 3 cbr 210 ------- 1 1.0 5.0 511 542 r 2.06991 2 3 cbr 210 ------- 1 1.0 5.0 493 523 + 2.06991 3 5 cbr 210 ------- 1 1.0 5.0 493 523 - 2.06991 3 5 cbr 210 ------- 1 1.0 5.0 493 523 r 2.07133 3 5 cbr 210 ------- 1 1.0 5.0 483 511 + 2.0725 1 2 cbr 210 ------- 1 1.0 5.0 526 557 - 2.0725 1 2 cbr 210 ------- 1 1.0 5.0 526 557 - 2.07287 2 3 cbr 210 ------- 1 1.0 5.0 505 536 r 2.07336 1 2 cbr 210 ------- 1 1.0 5.0 512 543 + 2.07336 2 3 cbr 210 ------- 1 1.0 5.0 512 543 r 2.07508 3 5 cbr 210 ------- 1 1.0 5.0 484 512 - 2.07623 2 3 cbr 210 ------- 1 1.0 5.0 506 537 + 2.07625 1 2 cbr 210 ------- 1 1.0 5.0 527 558 - 2.07625 1 2 cbr 210 ------- 1 1.0 5.0 527 558 r 2.07711 1 2 cbr 210 ------- 1 1.0 5.0 513 544 + 2.07711 2 3 cbr 210 ------- 1 1.0 5.0 513 544 r 2.07883 3 5 cbr 210 ------- 1 1.0 5.0 485 513 - 2.07959 2 3 cbr 210 ------- 1 1.0 5.0 507 538 + 2.08 1 2 cbr 210 ------- 1 1.0 5.0 528 559 - 2.08 1 2 cbr 210 ------- 1 1.0 5.0 528 559 r 2.08086 1 2 cbr 210 ------- 1 1.0 5.0 514 545 + 2.08086 2 3 cbr 210 ------- 1 1.0 5.0 514 545 r 2.08258 3 5 cbr 210 ------- 1 1.0 5.0 486 514 - 2.08295 2 3 cbr 210 ------- 1 1.0 5.0 508 539 + 2.08375 1 2 cbr 210 ------- 1 1.0 5.0 529 560 - 2.08375 1 2 cbr 210 ------- 1 1.0 5.0 529 560 r 2.08461 1 2 cbr 210 ------- 1 1.0 5.0 515 546 + 2.08461 2 3 cbr 210 ------- 1 1.0 5.0 515 546 r 2.08591 2 3 tcp 1000 ------- 0 0.0 4.0 14 516 + 2.08591 3 4 tcp 1000 ------- 0 0.0 4.0 14 516 - 2.08591 3 4 tcp 1000 ------- 0 0.0 4.0 14 516 - 2.08631 2 3 tcp 1000 ------- 0 0.0 4.0 15 535 r 2.08633 3 5 cbr 210 ------- 1 1.0 5.0 487 517 + 2.0875 1 2 cbr 210 ------- 1 1.0 5.0 530 561 - 2.0875 1 2 cbr 210 ------- 1 1.0 5.0 530 561 r 2.08836 1 2 cbr 210 ------- 1 1.0 5.0 516 547 + 2.08836 2 3 cbr 210 ------- 1 1.0 5.0 516 547 r 2.08927 2 3 cbr 210 ------- 1 1.0 5.0 494 524 + 2.08927 3 5 cbr 210 ------- 1 1.0 5.0 494 524 - 2.08927 3 5 cbr 210 ------- 1 1.0 5.0 494 524 v 2.0899999999999999 eval {set sim_annotation {Ack_15 : 1 ack is coming}} r 2.09008 3 5 cbr 210 ------- 1 1.0 5.0 488 518 + 2.09125 1 2 cbr 210 ------- 1 1.0 5.0 531 562 - 2.09125 1 2 cbr 210 ------- 1 1.0 5.0 531 562 r 2.09211 1 2 cbr 210 ------- 1 1.0 5.0 517 548 + 2.09211 2 3 cbr 210 ------- 1 1.0 5.0 517 548 r 2.09263 2 3 cbr 210 ------- 1 1.0 5.0 495 525 + 2.09263 3 5 cbr 210 ------- 1 1.0 5.0 495 525 - 2.09263 3 5 cbr 210 ------- 1 1.0 5.0 495 525 r 2.09383 3 5 cbr 210 ------- 1 1.0 5.0 489 519 + 2.095 1 2 cbr 210 ------- 1 1.0 5.0 532 563 - 2.095 1 2 cbr 210 ------- 1 1.0 5.0 532 563 r 2.09586 1 2 cbr 210 ------- 1 1.0 5.0 518 549 + 2.09586 2 3 cbr 210 ------- 1 1.0 5.0 518 549 d 2.09586 2 3 cbr 210 ------- 1 1.0 5.0 518 549 r 2.09599 2 3 cbr 210 ------- 1 1.0 5.0 496 526 + 2.09599 3 5 cbr 210 ------- 1 1.0 5.0 496 526 - 2.09599 3 5 cbr 210 ------- 1 1.0 5.0 496 526 + 2.09875 1 2 cbr 210 ------- 1 1.0 5.0 533 564 - 2.09875 1 2 cbr 210 ------- 1 1.0 5.0 533 564 r 2.09935 2 3 cbr 210 ------- 1 1.0 5.0 497 527 + 2.09935 3 5 cbr 210 ------- 1 1.0 5.0 497 527 - 2.09935 3 5 cbr 210 ------- 1 1.0 5.0 497 527 r 2.09961 1 2 cbr 210 ------- 1 1.0 5.0 519 550 + 2.09961 2 3 cbr 210 ------- 1 1.0 5.0 519 550 d 2.09961 2 3 cbr 210 ------- 1 1.0 5.0 519 550 - 2.10231 2 3 cbr 210 ------- 1 1.0 5.0 509 540 + 2.1025 1 2 cbr 210 ------- 1 1.0 5.0 534 565 - 2.1025 1 2 cbr 210 ------- 1 1.0 5.0 534 565 r 2.10271 2 3 cbr 210 ------- 1 1.0 5.0 498 528 + 2.10271 3 5 cbr 210 ------- 1 1.0 5.0 498 528 - 2.10271 3 5 cbr 210 ------- 1 1.0 5.0 498 528 r 2.10336 1 2 cbr 210 ------- 1 1.0 5.0 520 551 + 2.10336 2 3 cbr 210 ------- 1 1.0 5.0 520 551 - 2.10567 2 3 cbr 210 ------- 1 1.0 5.0 510 541 r 2.10607 2 3 cbr 210 ------- 1 1.0 5.0 499 529 + 2.10607 3 5 cbr 210 ------- 1 1.0 5.0 499 529 - 2.10607 3 5 cbr 210 ------- 1 1.0 5.0 499 529 + 2.10625 1 2 cbr 210 ------- 1 1.0 5.0 535 566 - 2.10625 1 2 cbr 210 ------- 1 1.0 5.0 535 566 r 2.10711 1 2 cbr 210 ------- 1 1.0 5.0 521 552 + 2.10711 2 3 cbr 210 ------- 1 1.0 5.0 521 552 - 2.10903 2 3 cbr 210 ------- 1 1.0 5.0 511 542 r 2.10943 2 3 cbr 210 ------- 1 1.0 5.0 500 530 + 2.10943 3 5 cbr 210 ------- 1 1.0 5.0 500 530 - 2.10943 3 5 cbr 210 ------- 1 1.0 5.0 500 530 + 2.11 1 2 cbr 210 ------- 1 1.0 5.0 536 567 - 2.11 1 2 cbr 210 ------- 1 1.0 5.0 536 567 r 2.11086 1 2 cbr 210 ------- 1 1.0 5.0 522 553 + 2.11086 2 3 cbr 210 ------- 1 1.0 5.0 522 553 - 2.11239 2 3 cbr 210 ------- 1 1.0 5.0 512 543 r 2.11279 2 3 cbr 210 ------- 1 1.0 5.0 501 531 + 2.11279 3 5 cbr 210 ------- 1 1.0 5.0 501 531 - 2.11279 3 5 cbr 210 ------- 1 1.0 5.0 501 531 r 2.11319 3 5 cbr 210 ------- 1 1.0 5.0 490 520 + 2.11375 1 2 cbr 210 ------- 1 1.0 5.0 537 568 - 2.11375 1 2 cbr 210 ------- 1 1.0 5.0 537 568 r 2.11461 1 2 cbr 210 ------- 1 1.0 5.0 523 554 + 2.11461 2 3 cbr 210 ------- 1 1.0 5.0 523 554 - 2.11575 2 3 cbr 210 ------- 1 1.0 5.0 513 544 r 2.11615 2 3 cbr 210 ------- 1 1.0 5.0 502 532 + 2.11615 3 5 cbr 210 ------- 1 1.0 5.0 502 532 - 2.11615 3 5 cbr 210 ------- 1 1.0 5.0 502 532 r 2.11655 3 5 cbr 210 ------- 1 1.0 5.0 491 521 + 2.1175 1 2 cbr 210 ------- 1 1.0 5.0 538 569 - 2.1175 1 2 cbr 210 ------- 1 1.0 5.0 538 569 r 2.11836 1 2 cbr 210 ------- 1 1.0 5.0 524 555 + 2.11836 2 3 cbr 210 ------- 1 1.0 5.0 524 555 - 2.11911 2 3 cbr 210 ------- 1 1.0 5.0 514 545 r 2.11951 2 3 cbr 210 ------- 1 1.0 5.0 503 533 + 2.11951 3 5 cbr 210 ------- 1 1.0 5.0 503 533 - 2.11951 3 5 cbr 210 ------- 1 1.0 5.0 503 533 r 2.11991 3 5 cbr 210 ------- 1 1.0 5.0 492 522 + 2.12125 1 2 cbr 210 ------- 1 1.0 5.0 539 570 - 2.12125 1 2 cbr 210 ------- 1 1.0 5.0 539 570 r 2.12211 1 2 cbr 210 ------- 1 1.0 5.0 525 556 + 2.12211 2 3 cbr 210 ------- 1 1.0 5.0 525 556 - 2.12247 2 3 cbr 210 ------- 1 1.0 5.0 515 546 r 2.12247 3 4 tcp 1000 ------- 0 0.0 4.0 13 515 + 2.12247 4 3 ack 40 ------- 0 4.0 0.0 13 571 - 2.12247 4 3 ack 40 ------- 0 4.0 0.0 13 571 r 2.12287 2 3 cbr 210 ------- 1 1.0 5.0 504 534 + 2.12287 3 5 cbr 210 ------- 1 1.0 5.0 504 534 - 2.12287 3 5 cbr 210 ------- 1 1.0 5.0 504 534 r 2.12327 3 5 cbr 210 ------- 1 1.0 5.0 493 523 + 2.125 1 2 cbr 210 ------- 1 1.0 5.0 540 572 - 2.125 1 2 cbr 210 ------- 1 1.0 5.0 540 572 - 2.12583 2 3 cbr 210 ------- 1 1.0 5.0 516 547 r 2.12586 1 2 cbr 210 ------- 1 1.0 5.0 526 557 + 2.12586 2 3 cbr 210 ------- 1 1.0 5.0 526 557 r 2.12623 2 3 cbr 210 ------- 1 1.0 5.0 505 536 + 2.12623 3 5 cbr 210 ------- 1 1.0 5.0 505 536 - 2.12623 3 5 cbr 210 ------- 1 1.0 5.0 505 536 + 2.12875 1 2 cbr 210 ------- 1 1.0 5.0 541 573 - 2.12875 1 2 cbr 210 ------- 1 1.0 5.0 541 573 - 2.12919 2 3 cbr 210 ------- 1 1.0 5.0 517 548 r 2.12959 2 3 cbr 210 ------- 1 1.0 5.0 506 537 + 2.12959 3 5 cbr 210 ------- 1 1.0 5.0 506 537 - 2.12959 3 5 cbr 210 ------- 1 1.0 5.0 506 537 r 2.12961 1 2 cbr 210 ------- 1 1.0 5.0 527 558 + 2.12961 2 3 cbr 210 ------- 1 1.0 5.0 527 558 + 2.1325 1 2 cbr 210 ------- 1 1.0 5.0 542 574 - 2.1325 1 2 cbr 210 ------- 1 1.0 5.0 542 574 - 2.13255 2 3 cbr 210 ------- 1 1.0 5.0 520 551 r 2.13295 2 3 cbr 210 ------- 1 1.0 5.0 507 538 + 2.13295 3 5 cbr 210 ------- 1 1.0 5.0 507 538 - 2.13295 3 5 cbr 210 ------- 1 1.0 5.0 507 538 r 2.13336 1 2 cbr 210 ------- 1 1.0 5.0 528 559 + 2.13336 2 3 cbr 210 ------- 1 1.0 5.0 528 559 - 2.13591 2 3 cbr 210 ------- 1 1.0 5.0 521 552 + 2.13625 1 2 cbr 210 ------- 1 1.0 5.0 543 575 - 2.13625 1 2 cbr 210 ------- 1 1.0 5.0 543 575 r 2.13631 2 3 cbr 210 ------- 1 1.0 5.0 508 539 + 2.13631 3 5 cbr 210 ------- 1 1.0 5.0 508 539 - 2.13631 3 5 cbr 210 ------- 1 1.0 5.0 508 539 r 2.13711 1 2 cbr 210 ------- 1 1.0 5.0 529 560 + 2.13711 2 3 cbr 210 ------- 1 1.0 5.0 529 560 - 2.13927 2 3 cbr 210 ------- 1 1.0 5.0 522 553 + 2.14 1 2 cbr 210 ------- 1 1.0 5.0 544 576 - 2.14 1 2 cbr 210 ------- 1 1.0 5.0 544 576 r 2.14086 1 2 cbr 210 ------- 1 1.0 5.0 530 561 + 2.14086 2 3 cbr 210 ------- 1 1.0 5.0 530 561 - 2.14263 2 3 cbr 210 ------- 1 1.0 5.0 523 554 r 2.14263 3 5 cbr 210 ------- 1 1.0 5.0 494 524 + 2.14375 1 2 cbr 210 ------- 1 1.0 5.0 545 577 - 2.14375 1 2 cbr 210 ------- 1 1.0 5.0 545 577 r 2.14461 1 2 cbr 210 ------- 1 1.0 5.0 531 562 + 2.14461 2 3 cbr 210 ------- 1 1.0 5.0 531 562 - 2.14599 2 3 cbr 210 ------- 1 1.0 5.0 524 555 r 2.14599 3 5 cbr 210 ------- 1 1.0 5.0 495 525 + 2.1475 1 2 cbr 210 ------- 1 1.0 5.0 546 578 - 2.1475 1 2 cbr 210 ------- 1 1.0 5.0 546 578 r 2.14836 1 2 cbr 210 ------- 1 1.0 5.0 532 563 + 2.14836 2 3 cbr 210 ------- 1 1.0 5.0 532 563 - 2.14935 2 3 cbr 210 ------- 1 1.0 5.0 525 556 r 2.14935 3 5 cbr 210 ------- 1 1.0 5.0 496 526 v 2.1499999999999999 eval {set sim_annotation {Send Packet_16,17 : Increase window size to 2}} + 2.15125 1 2 cbr 210 ------- 1 1.0 5.0 547 579 - 2.15125 1 2 cbr 210 ------- 1 1.0 5.0 547 579 r 2.15191 3 4 tcp 1000 ------- 0 0.0 4.0 14 516 + 2.15191 4 3 ack 40 ------- 0 4.0 0.0 14 580 - 2.15191 4 3 ack 40 ------- 0 4.0 0.0 14 580 r 2.15211 1 2 cbr 210 ------- 1 1.0 5.0 533 564 + 2.15211 2 3 cbr 210 ------- 1 1.0 5.0 533 564 r 2.15231 2 3 tcp 1000 ------- 0 0.0 4.0 15 535 + 2.15231 3 4 tcp 1000 ------- 0 0.0 4.0 15 535 - 2.15231 3 4 tcp 1000 ------- 0 0.0 4.0 15 535 - 2.15271 2 3 cbr 210 ------- 1 1.0 5.0 526 557 r 2.15271 3 5 cbr 210 ------- 1 1.0 5.0 497 527 + 2.155 1 2 cbr 210 ------- 1 1.0 5.0 548 581 - 2.155 1 2 cbr 210 ------- 1 1.0 5.0 548 581 r 2.15567 2 3 cbr 210 ------- 1 1.0 5.0 509 540 + 2.15567 3 5 cbr 210 ------- 1 1.0 5.0 509 540 - 2.15567 3 5 cbr 210 ------- 1 1.0 5.0 509 540 r 2.15586 1 2 cbr 210 ------- 1 1.0 5.0 534 565 + 2.15586 2 3 cbr 210 ------- 1 1.0 5.0 534 565 - 2.15607 2 3 cbr 210 ------- 1 1.0 5.0 527 558 r 2.15607 3 5 cbr 210 ------- 1 1.0 5.0 498 528 + 2.15875 1 2 cbr 210 ------- 1 1.0 5.0 549 582 - 2.15875 1 2 cbr 210 ------- 1 1.0 5.0 549 582 r 2.15903 2 3 cbr 210 ------- 1 1.0 5.0 510 541 + 2.15903 3 5 cbr 210 ------- 1 1.0 5.0 510 541 - 2.15903 3 5 cbr 210 ------- 1 1.0 5.0 510 541 - 2.15943 2 3 cbr 210 ------- 1 1.0 5.0 528 559 r 2.15943 3 5 cbr 210 ------- 1 1.0 5.0 499 529 r 2.15961 1 2 cbr 210 ------- 1 1.0 5.0 535 566 + 2.15961 2 3 cbr 210 ------- 1 1.0 5.0 535 566 r 2.16239 2 3 cbr 210 ------- 1 1.0 5.0 511 542 + 2.16239 3 5 cbr 210 ------- 1 1.0 5.0 511 542 - 2.16239 3 5 cbr 210 ------- 1 1.0 5.0 511 542 + 2.1625 1 2 cbr 210 ------- 1 1.0 5.0 550 583 - 2.1625 1 2 cbr 210 ------- 1 1.0 5.0 550 583 - 2.16279 2 3 cbr 210 ------- 1 1.0 5.0 529 560 r 2.16279 3 5 cbr 210 ------- 1 1.0 5.0 500 530 r 2.16336 1 2 cbr 210 ------- 1 1.0 5.0 536 567 + 2.16336 2 3 cbr 210 ------- 1 1.0 5.0 536 567 r 2.16575 2 3 cbr 210 ------- 1 1.0 5.0 512 543 + 2.16575 3 5 cbr 210 ------- 1 1.0 5.0 512 543 - 2.16575 3 5 cbr 210 ------- 1 1.0 5.0 512 543 - 2.16615 2 3 cbr 210 ------- 1 1.0 5.0 530 561 r 2.16615 3 5 cbr 210 ------- 1 1.0 5.0 501 531 + 2.16625 1 2 cbr 210 ------- 1 1.0 5.0 551 584 - 2.16625 1 2 cbr 210 ------- 1 1.0 5.0 551 584 r 2.16711 1 2 cbr 210 ------- 1 1.0 5.0 537 568 + 2.16711 2 3 cbr 210 ------- 1 1.0 5.0 537 568 r 2.16911 2 3 cbr 210 ------- 1 1.0 5.0 513 544 + 2.16911 3 5 cbr 210 ------- 1 1.0 5.0 513 544 - 2.16911 3 5 cbr 210 ------- 1 1.0 5.0 513 544 - 2.16951 2 3 cbr 210 ------- 1 1.0 5.0 531 562 r 2.16951 3 5 cbr 210 ------- 1 1.0 5.0 502 532 + 2.17 1 2 cbr 210 ------- 1 1.0 5.0 552 585 - 2.17 1 2 cbr 210 ------- 1 1.0 5.0 552 585 r 2.17086 1 2 cbr 210 ------- 1 1.0 5.0 538 569 + 2.17086 2 3 cbr 210 ------- 1 1.0 5.0 538 569 r 2.17247 2 3 cbr 210 ------- 1 1.0 5.0 514 545 + 2.17247 3 5 cbr 210 ------- 1 1.0 5.0 514 545 - 2.17247 3 5 cbr 210 ------- 1 1.0 5.0 514 545 - 2.17287 2 3 cbr 210 ------- 1 1.0 5.0 532 563 r 2.17287 3 5 cbr 210 ------- 1 1.0 5.0 503 533 r 2.17311 4 3 ack 40 ------- 0 4.0 0.0 13 571 + 2.17311 3 2 ack 40 ------- 0 4.0 0.0 13 571 - 2.17311 3 2 ack 40 ------- 0 4.0 0.0 13 571 + 2.17375 1 2 cbr 210 ------- 1 1.0 5.0 553 586 - 2.17375 1 2 cbr 210 ------- 1 1.0 5.0 553 586 r 2.17461 1 2 cbr 210 ------- 1 1.0 5.0 539 570 + 2.17461 2 3 cbr 210 ------- 1 1.0 5.0 539 570 r 2.17583 2 3 cbr 210 ------- 1 1.0 5.0 515 546 + 2.17583 3 5 cbr 210 ------- 1 1.0 5.0 515 546 - 2.17583 3 5 cbr 210 ------- 1 1.0 5.0 515 546 - 2.17623 2 3 cbr 210 ------- 1 1.0 5.0 533 564 r 2.17623 3 5 cbr 210 ------- 1 1.0 5.0 504 534 + 2.1775 1 2 cbr 210 ------- 1 1.0 5.0 554 587 - 2.1775 1 2 cbr 210 ------- 1 1.0 5.0 554 587 r 2.17836 1 2 cbr 210 ------- 1 1.0 5.0 540 572 + 2.17836 2 3 cbr 210 ------- 1 1.0 5.0 540 572 r 2.17919 2 3 cbr 210 ------- 1 1.0 5.0 516 547 + 2.17919 3 5 cbr 210 ------- 1 1.0 5.0 516 547 - 2.17919 3 5 cbr 210 ------- 1 1.0 5.0 516 547 - 2.17959 2 3 cbr 210 ------- 1 1.0 5.0 534 565 r 2.17959 3 5 cbr 210 ------- 1 1.0 5.0 505 536 + 2.18125 1 2 cbr 210 ------- 1 1.0 5.0 555 588 - 2.18125 1 2 cbr 210 ------- 1 1.0 5.0 555 588 r 2.18211 1 2 cbr 210 ------- 1 1.0 5.0 541 573 + 2.18211 2 3 cbr 210 ------- 1 1.0 5.0 541 573 r 2.18255 2 3 cbr 210 ------- 1 1.0 5.0 517 548 + 2.18255 3 5 cbr 210 ------- 1 1.0 5.0 517 548 - 2.18255 3 5 cbr 210 ------- 1 1.0 5.0 517 548 - 2.18295 2 3 cbr 210 ------- 1 1.0 5.0 535 566 r 2.18295 3 5 cbr 210 ------- 1 1.0 5.0 506 537 + 2.185 1 2 cbr 210 ------- 1 1.0 5.0 556 589 - 2.185 1 2 cbr 210 ------- 1 1.0 5.0 556 589 r 2.18586 1 2 cbr 210 ------- 1 1.0 5.0 542 574 + 2.18586 2 3 cbr 210 ------- 1 1.0 5.0 542 574 r 2.18591 2 3 cbr 210 ------- 1 1.0 5.0 520 551 + 2.18591 3 5 cbr 210 ------- 1 1.0 5.0 520 551 - 2.18591 3 5 cbr 210 ------- 1 1.0 5.0 520 551 - 2.18631 2 3 cbr 210 ------- 1 1.0 5.0 536 567 r 2.18631 3 5 cbr 210 ------- 1 1.0 5.0 507 538 + 2.18875 1 2 cbr 210 ------- 1 1.0 5.0 557 590 - 2.18875 1 2 cbr 210 ------- 1 1.0 5.0 557 590 r 2.18927 2 3 cbr 210 ------- 1 1.0 5.0 521 552 + 2.18927 3 5 cbr 210 ------- 1 1.0 5.0 521 552 - 2.18927 3 5 cbr 210 ------- 1 1.0 5.0 521 552 r 2.18961 1 2 cbr 210 ------- 1 1.0 5.0 543 575 + 2.18961 2 3 cbr 210 ------- 1 1.0 5.0 543 575 - 2.18967 2 3 cbr 210 ------- 1 1.0 5.0 537 568 r 2.18967 3 5 cbr 210 ------- 1 1.0 5.0 508 539 + 2.1925 1 2 cbr 210 ------- 1 1.0 5.0 558 591 - 2.1925 1 2 cbr 210 ------- 1 1.0 5.0 558 591 r 2.19263 2 3 cbr 210 ------- 1 1.0 5.0 522 553 + 2.19263 3 5 cbr 210 ------- 1 1.0 5.0 522 553 - 2.19263 3 5 cbr 210 ------- 1 1.0 5.0 522 553 - 2.19303 2 3 cbr 210 ------- 1 1.0 5.0 538 569 r 2.19336 1 2 cbr 210 ------- 1 1.0 5.0 544 576 + 2.19336 2 3 cbr 210 ------- 1 1.0 5.0 544 576 r 2.19599 2 3 cbr 210 ------- 1 1.0 5.0 523 554 + 2.19599 3 5 cbr 210 ------- 1 1.0 5.0 523 554 - 2.19599 3 5 cbr 210 ------- 1 1.0 5.0 523 554 + 2.19625 1 2 cbr 210 ------- 1 1.0 5.0 559 592 - 2.19625 1 2 cbr 210 ------- 1 1.0 5.0 559 592 - 2.19639 2 3 cbr 210 ------- 1 1.0 5.0 539 570 r 2.19711 1 2 cbr 210 ------- 1 1.0 5.0 545 577 + 2.19711 2 3 cbr 210 ------- 1 1.0 5.0 545 577 r 2.19935 2 3 cbr 210 ------- 1 1.0 5.0 524 555 + 2.19935 3 5 cbr 210 ------- 1 1.0 5.0 524 555 - 2.19935 3 5 cbr 210 ------- 1 1.0 5.0 524 555 - 2.19975 2 3 cbr 210 ------- 1 1.0 5.0 540 572 + 2.2 1 2 cbr 210 ------- 1 1.0 5.0 560 593 - 2.2 1 2 cbr 210 ------- 1 1.0 5.0 560 593 r 2.20086 1 2 cbr 210 ------- 1 1.0 5.0 546 578 + 2.20086 2 3 cbr 210 ------- 1 1.0 5.0 546 578 r 2.20255 4 3 ack 40 ------- 0 4.0 0.0 14 580 + 2.20255 3 2 ack 40 ------- 0 4.0 0.0 14 580 - 2.20255 3 2 ack 40 ------- 0 4.0 0.0 14 580 r 2.20271 2 3 cbr 210 ------- 1 1.0 5.0 525 556 + 2.20271 3 5 cbr 210 ------- 1 1.0 5.0 525 556 - 2.20271 3 5 cbr 210 ------- 1 1.0 5.0 525 556 - 2.20311 2 3 cbr 210 ------- 1 1.0 5.0 541 573 + 2.20375 1 2 cbr 210 ------- 1 1.0 5.0 561 594 - 2.20375 1 2 cbr 210 ------- 1 1.0 5.0 561 594 r 2.20461 1 2 cbr 210 ------- 1 1.0 5.0 547 579 + 2.20461 2 3 cbr 210 ------- 1 1.0 5.0 547 579 r 2.20607 2 3 cbr 210 ------- 1 1.0 5.0 526 557 + 2.20607 3 5 cbr 210 ------- 1 1.0 5.0 526 557 - 2.20607 3 5 cbr 210 ------- 1 1.0 5.0 526 557 - 2.20647 2 3 cbr 210 ------- 1 1.0 5.0 542 574 + 2.2075 1 2 cbr 210 ------- 1 1.0 5.0 562 595 - 2.2075 1 2 cbr 210 ------- 1 1.0 5.0 562 595 r 2.20836 1 2 cbr 210 ------- 1 1.0 5.0 548 581 + 2.20836 2 3 cbr 210 ------- 1 1.0 5.0 548 581 r 2.20903 3 5 cbr 210 ------- 1 1.0 5.0 509 540 r 2.20943 2 3 cbr 210 ------- 1 1.0 5.0 527 558 + 2.20943 3 5 cbr 210 ------- 1 1.0 5.0 527 558 - 2.20943 3 5 cbr 210 ------- 1 1.0 5.0 527 558 - 2.20983 2 3 cbr 210 ------- 1 1.0 5.0 543 575 + 2.21125 1 2 cbr 210 ------- 1 1.0 5.0 563 596 - 2.21125 1 2 cbr 210 ------- 1 1.0 5.0 563 596 r 2.21211 1 2 cbr 210 ------- 1 1.0 5.0 549 582 + 2.21211 2 3 cbr 210 ------- 1 1.0 5.0 549 582 r 2.21239 3 5 cbr 210 ------- 1 1.0 5.0 510 541 r 2.21279 2 3 cbr 210 ------- 1 1.0 5.0 528 559 + 2.21279 3 5 cbr 210 ------- 1 1.0 5.0 528 559 - 2.21279 3 5 cbr 210 ------- 1 1.0 5.0 528 559 - 2.21319 2 3 cbr 210 ------- 1 1.0 5.0 544 576 + 2.215 1 2 cbr 210 ------- 1 1.0 5.0 564 597 - 2.215 1 2 cbr 210 ------- 1 1.0 5.0 564 597 r 2.21575 3 5 cbr 210 ------- 1 1.0 5.0 511 542 r 2.21586 1 2 cbr 210 ------- 1 1.0 5.0 550 583 + 2.21586 2 3 cbr 210 ------- 1 1.0 5.0 550 583 r 2.21615 2 3 cbr 210 ------- 1 1.0 5.0 529 560 + 2.21615 3 5 cbr 210 ------- 1 1.0 5.0 529 560 - 2.21615 3 5 cbr 210 ------- 1 1.0 5.0 529 560 - 2.21655 2 3 cbr 210 ------- 1 1.0 5.0 545 577 r 2.21831 3 4 tcp 1000 ------- 0 0.0 4.0 15 535 + 2.21831 4 3 ack 40 ------- 0 4.0 0.0 15 598 - 2.21831 4 3 ack 40 ------- 0 4.0 0.0 15 598 + 2.21875 1 2 cbr 210 ------- 1 1.0 5.0 565 599 - 2.21875 1 2 cbr 210 ------- 1 1.0 5.0 565 599 r 2.21911 3 5 cbr 210 ------- 1 1.0 5.0 512 543 r 2.21951 2 3 cbr 210 ------- 1 1.0 5.0 530 561 + 2.21951 3 5 cbr 210 ------- 1 1.0 5.0 530 561 - 2.21951 3 5 cbr 210 ------- 1 1.0 5.0 530 561 r 2.21961 1 2 cbr 210 ------- 1 1.0 5.0 551 584 + 2.21961 2 3 cbr 210 ------- 1 1.0 5.0 551 584 - 2.21991 2 3 cbr 210 ------- 1 1.0 5.0 546 578 r 2.22247 3 5 cbr 210 ------- 1 1.0 5.0 513 544 + 2.2225 1 2 cbr 210 ------- 1 1.0 5.0 566 600 - 2.2225 1 2 cbr 210 ------- 1 1.0 5.0 566 600 r 2.22287 2 3 cbr 210 ------- 1 1.0 5.0 531 562 + 2.22287 3 5 cbr 210 ------- 1 1.0 5.0 531 562 - 2.22287 3 5 cbr 210 ------- 1 1.0 5.0 531 562 - 2.22327 2 3 cbr 210 ------- 1 1.0 5.0 547 579 r 2.22336 1 2 cbr 210 ------- 1 1.0 5.0 552 585 + 2.22336 2 3 cbr 210 ------- 1 1.0 5.0 552 585 r 2.22375 3 2 ack 40 ------- 0 4.0 0.0 13 571 + 2.22375 2 0 ack 40 ------- 0 4.0 0.0 13 571 - 2.22375 2 0 ack 40 ------- 0 4.0 0.0 13 571 r 2.22583 3 5 cbr 210 ------- 1 1.0 5.0 514 545 r 2.22623 2 3 cbr 210 ------- 1 1.0 5.0 532 563 + 2.22623 3 5 cbr 210 ------- 1 1.0 5.0 532 563 - 2.22623 3 5 cbr 210 ------- 1 1.0 5.0 532 563 + 2.22625 1 2 cbr 210 ------- 1 1.0 5.0 567 601 - 2.22625 1 2 cbr 210 ------- 1 1.0 5.0 567 601 - 2.22663 2 3 cbr 210 ------- 1 1.0 5.0 548 581 r 2.22711 1 2 cbr 210 ------- 1 1.0 5.0 553 586 + 2.22711 2 3 cbr 210 ------- 1 1.0 5.0 553 586 r 2.22919 3 5 cbr 210 ------- 1 1.0 5.0 515 546 r 2.22959 2 3 cbr 210 ------- 1 1.0 5.0 533 564 + 2.22959 3 5 cbr 210 ------- 1 1.0 5.0 533 564 - 2.22959 3 5 cbr 210 ------- 1 1.0 5.0 533 564 - 2.22999 2 3 cbr 210 ------- 1 1.0 5.0 549 582 + 2.23 1 2 cbr 210 ------- 1 1.0 5.0 568 602 - 2.23 1 2 cbr 210 ------- 1 1.0 5.0 568 602 r 2.23086 1 2 cbr 210 ------- 1 1.0 5.0 554 587 + 2.23086 2 3 cbr 210 ------- 1 1.0 5.0 554 587 r 2.23255 3 5 cbr 210 ------- 1 1.0 5.0 516 547 r 2.23295 2 3 cbr 210 ------- 1 1.0 5.0 534 565 + 2.23295 3 5 cbr 210 ------- 1 1.0 5.0 534 565 - 2.23295 3 5 cbr 210 ------- 1 1.0 5.0 534 565 - 2.23335 2 3 cbr 210 ------- 1 1.0 5.0 550 583 + 2.23375 1 2 cbr 210 ------- 1 1.0 5.0 569 603 - 2.23375 1 2 cbr 210 ------- 1 1.0 5.0 569 603 r 2.23461 1 2 cbr 210 ------- 1 1.0 5.0 555 588 + 2.23461 2 3 cbr 210 ------- 1 1.0 5.0 555 588 r 2.23591 3 5 cbr 210 ------- 1 1.0 5.0 517 548 r 2.23631 2 3 cbr 210 ------- 1 1.0 5.0 535 566 + 2.23631 3 5 cbr 210 ------- 1 1.0 5.0 535 566 - 2.23631 3 5 cbr 210 ------- 1 1.0 5.0 535 566 - 2.23671 2 3 cbr 210 ------- 1 1.0 5.0 551 584 + 2.2375 1 2 cbr 210 ------- 1 1.0 5.0 570 604 - 2.2375 1 2 cbr 210 ------- 1 1.0 5.0 570 604 r 2.23836 1 2 cbr 210 ------- 1 1.0 5.0 556 589 + 2.23836 2 3 cbr 210 ------- 1 1.0 5.0 556 589 r 2.23927 3 5 cbr 210 ------- 1 1.0 5.0 520 551 r 2.23967 2 3 cbr 210 ------- 1 1.0 5.0 536 567 + 2.23967 3 5 cbr 210 ------- 1 1.0 5.0 536 567 - 2.23967 3 5 cbr 210 ------- 1 1.0 5.0 536 567 - 2.24007 2 3 cbr 210 ------- 1 1.0 5.0 552 585 + 2.24125 1 2 cbr 210 ------- 1 1.0 5.0 571 605 - 2.24125 1 2 cbr 210 ------- 1 1.0 5.0 571 605 r 2.24211 1 2 cbr 210 ------- 1 1.0 5.0 557 590 + 2.24211 2 3 cbr 210 ------- 1 1.0 5.0 557 590 r 2.24263 3 5 cbr 210 ------- 1 1.0 5.0 521 552 r 2.24303 2 3 cbr 210 ------- 1 1.0 5.0 537 568 + 2.24303 3 5 cbr 210 ------- 1 1.0 5.0 537 568 - 2.24303 3 5 cbr 210 ------- 1 1.0 5.0 537 568 - 2.24343 2 3 cbr 210 ------- 1 1.0 5.0 553 586 + 2.245 1 2 cbr 210 ------- 1 1.0 5.0 572 606 - 2.245 1 2 cbr 210 ------- 1 1.0 5.0 572 606 r 2.24586 1 2 cbr 210 ------- 1 1.0 5.0 558 591 + 2.24586 2 3 cbr 210 ------- 1 1.0 5.0 558 591 r 2.24599 3 5 cbr 210 ------- 1 1.0 5.0 522 553 r 2.24639 2 3 cbr 210 ------- 1 1.0 5.0 538 569 + 2.24639 3 5 cbr 210 ------- 1 1.0 5.0 538 569 - 2.24639 3 5 cbr 210 ------- 1 1.0 5.0 538 569 - 2.24679 2 3 cbr 210 ------- 1 1.0 5.0 554 587 + 2.24875 1 2 cbr 210 ------- 1 1.0 5.0 573 607 - 2.24875 1 2 cbr 210 ------- 1 1.0 5.0 573 607 r 2.24935 3 5 cbr 210 ------- 1 1.0 5.0 523 554 r 2.24961 1 2 cbr 210 ------- 1 1.0 5.0 559 592 + 2.24961 2 3 cbr 210 ------- 1 1.0 5.0 559 592 r 2.24975 2 3 cbr 210 ------- 1 1.0 5.0 539 570 + 2.24975 3 5 cbr 210 ------- 1 1.0 5.0 539 570 - 2.24975 3 5 cbr 210 ------- 1 1.0 5.0 539 570 - 2.25015 2 3 cbr 210 ------- 1 1.0 5.0 555 588 + 2.2525 1 2 cbr 210 ------- 1 1.0 5.0 574 608 - 2.2525 1 2 cbr 210 ------- 1 1.0 5.0 574 608 r 2.25271 3 5 cbr 210 ------- 1 1.0 5.0 524 555 r 2.25311 2 3 cbr 210 ------- 1 1.0 5.0 540 572 + 2.25311 3 5 cbr 210 ------- 1 1.0 5.0 540 572 - 2.25311 3 5 cbr 210 ------- 1 1.0 5.0 540 572 r 2.25319 3 2 ack 40 ------- 0 4.0 0.0 14 580 + 2.25319 2 0 ack 40 ------- 0 4.0 0.0 14 580 - 2.25319 2 0 ack 40 ------- 0 4.0 0.0 14 580 r 2.25336 1 2 cbr 210 ------- 1 1.0 5.0 560 593 + 2.25336 2 3 cbr 210 ------- 1 1.0 5.0 560 593 - 2.25351 2 3 cbr 210 ------- 1 1.0 5.0 556 589 r 2.25607 3 5 cbr 210 ------- 1 1.0 5.0 525 556 + 2.25625 1 2 cbr 210 ------- 1 1.0 5.0 575 609 - 2.25625 1 2 cbr 210 ------- 1 1.0 5.0 575 609 r 2.25647 2 3 cbr 210 ------- 1 1.0 5.0 541 573 + 2.25647 3 5 cbr 210 ------- 1 1.0 5.0 541 573 - 2.25647 3 5 cbr 210 ------- 1 1.0 5.0 541 573 - 2.25687 2 3 cbr 210 ------- 1 1.0 5.0 557 590 r 2.25711 1 2 cbr 210 ------- 1 1.0 5.0 561 594 + 2.25711 2 3 cbr 210 ------- 1 1.0 5.0 561 594 r 2.25943 3 5 cbr 210 ------- 1 1.0 5.0 526 557 r 2.25983 2 3 cbr 210 ------- 1 1.0 5.0 542 574 + 2.25983 3 5 cbr 210 ------- 1 1.0 5.0 542 574 - 2.25983 3 5 cbr 210 ------- 1 1.0 5.0 542 574 + 2.26 1 2 cbr 210 ------- 1 1.0 5.0 576 610 - 2.26 1 2 cbr 210 ------- 1 1.0 5.0 576 610 - 2.26023 2 3 cbr 210 ------- 1 1.0 5.0 558 591 r 2.26086 1 2 cbr 210 ------- 1 1.0 5.0 562 595 + 2.26086 2 3 cbr 210 ------- 1 1.0 5.0 562 595 r 2.26279 3 5 cbr 210 ------- 1 1.0 5.0 527 558 r 2.26319 2 3 cbr 210 ------- 1 1.0 5.0 543 575 + 2.26319 3 5 cbr 210 ------- 1 1.0 5.0 543 575 - 2.26319 3 5 cbr 210 ------- 1 1.0 5.0 543 575 - 2.26359 2 3 cbr 210 ------- 1 1.0 5.0 559 592 + 2.26375 1 2 cbr 210 ------- 1 1.0 5.0 577 611 - 2.26375 1 2 cbr 210 ------- 1 1.0 5.0 577 611 r 2.26461 1 2 cbr 210 ------- 1 1.0 5.0 563 596 + 2.26461 2 3 cbr 210 ------- 1 1.0 5.0 563 596 r 2.26615 3 5 cbr 210 ------- 1 1.0 5.0 528 559 r 2.26655 2 3 cbr 210 ------- 1 1.0 5.0 544 576 + 2.26655 3 5 cbr 210 ------- 1 1.0 5.0 544 576 - 2.26655 3 5 cbr 210 ------- 1 1.0 5.0 544 576 - 2.26695 2 3 cbr 210 ------- 1 1.0 5.0 560 593 + 2.2675 1 2 cbr 210 ------- 1 1.0 5.0 578 612 - 2.2675 1 2 cbr 210 ------- 1 1.0 5.0 578 612 r 2.26836 1 2 cbr 210 ------- 1 1.0 5.0 564 597 + 2.26836 2 3 cbr 210 ------- 1 1.0 5.0 564 597 r 2.26895 4 3 ack 40 ------- 0 4.0 0.0 15 598 + 2.26895 3 2 ack 40 ------- 0 4.0 0.0 15 598 - 2.26895 3 2 ack 40 ------- 0 4.0 0.0 15 598 r 2.26951 3 5 cbr 210 ------- 1 1.0 5.0 529 560 r 2.26991 2 3 cbr 210 ------- 1 1.0 5.0 545 577 + 2.26991 3 5 cbr 210 ------- 1 1.0 5.0 545 577 - 2.26991 3 5 cbr 210 ------- 1 1.0 5.0 545 577 v 2.27 eval {set sim_annotation {Ack_16,17 : 2 acks are coming}} - 2.27031 2 3 cbr 210 ------- 1 1.0 5.0 561 594 + 2.27125 1 2 cbr 210 ------- 1 1.0 5.0 579 613 - 2.27125 1 2 cbr 210 ------- 1 1.0 5.0 579 613 r 2.27211 1 2 cbr 210 ------- 1 1.0 5.0 565 599 + 2.27211 2 3 cbr 210 ------- 1 1.0 5.0 565 599 r 2.27287 3 5 cbr 210 ------- 1 1.0 5.0 530 561 r 2.27327 2 3 cbr 210 ------- 1 1.0 5.0 546 578 + 2.27327 3 5 cbr 210 ------- 1 1.0 5.0 546 578 - 2.27327 3 5 cbr 210 ------- 1 1.0 5.0 546 578 - 2.27367 2 3 cbr 210 ------- 1 1.0 5.0 562 595 r 2.27439 2 0 ack 40 ------- 0 4.0 0.0 13 571 + 2.27439 0 2 tcp 1000 ------- 0 0.0 4.0 16 614 - 2.27439 0 2 tcp 1000 ------- 0 0.0 4.0 16 614 + 2.275 1 2 cbr 210 ------- 1 1.0 5.0 580 615 - 2.275 1 2 cbr 210 ------- 1 1.0 5.0 580 615 r 2.27586 1 2 cbr 210 ------- 1 1.0 5.0 566 600 + 2.27586 2 3 cbr 210 ------- 1 1.0 5.0 566 600 r 2.27623 3 5 cbr 210 ------- 1 1.0 5.0 531 562 r 2.27663 2 3 cbr 210 ------- 1 1.0 5.0 547 579 + 2.27663 3 5 cbr 210 ------- 1 1.0 5.0 547 579 - 2.27663 3 5 cbr 210 ------- 1 1.0 5.0 547 579 - 2.27703 2 3 cbr 210 ------- 1 1.0 5.0 563 596 + 2.27875 1 2 cbr 210 ------- 1 1.0 5.0 581 616 - 2.27875 1 2 cbr 210 ------- 1 1.0 5.0 581 616 r 2.27959 3 5 cbr 210 ------- 1 1.0 5.0 532 563 r 2.27961 1 2 cbr 210 ------- 1 1.0 5.0 567 601 + 2.27961 2 3 cbr 210 ------- 1 1.0 5.0 567 601 r 2.27999 2 3 cbr 210 ------- 1 1.0 5.0 548 581 + 2.27999 3 5 cbr 210 ------- 1 1.0 5.0 548 581 - 2.27999 3 5 cbr 210 ------- 1 1.0 5.0 548 581 - 2.28039 2 3 cbr 210 ------- 1 1.0 5.0 564 597 + 2.2825 1 2 cbr 210 ------- 1 1.0 5.0 582 617 - 2.2825 1 2 cbr 210 ------- 1 1.0 5.0 582 617 r 2.28295 3 5 cbr 210 ------- 1 1.0 5.0 533 564 r 2.28335 2 3 cbr 210 ------- 1 1.0 5.0 549 582 + 2.28335 3 5 cbr 210 ------- 1 1.0 5.0 549 582 - 2.28335 3 5 cbr 210 ------- 1 1.0 5.0 549 582 r 2.28336 1 2 cbr 210 ------- 1 1.0 5.0 568 602 + 2.28336 2 3 cbr 210 ------- 1 1.0 5.0 568 602 - 2.28375 2 3 cbr 210 ------- 1 1.0 5.0 565 599 + 2.28625 1 2 cbr 210 ------- 1 1.0 5.0 583 618 - 2.28625 1 2 cbr 210 ------- 1 1.0 5.0 583 618 r 2.28631 3 5 cbr 210 ------- 1 1.0 5.0 534 565 r 2.28671 2 3 cbr 210 ------- 1 1.0 5.0 550 583 + 2.28671 3 5 cbr 210 ------- 1 1.0 5.0 550 583 - 2.28671 3 5 cbr 210 ------- 1 1.0 5.0 550 583 - 2.28711 2 3 cbr 210 ------- 1 1.0 5.0 566 600 r 2.28711 1 2 cbr 210 ------- 1 1.0 5.0 569 603 + 2.28711 2 3 cbr 210 ------- 1 1.0 5.0 569 603 r 2.28967 3 5 cbr 210 ------- 1 1.0 5.0 535 566 + 2.29 1 2 cbr 210 ------- 1 1.0 5.0 584 619 - 2.29 1 2 cbr 210 ------- 1 1.0 5.0 584 619 r 2.29007 2 3 cbr 210 ------- 1 1.0 5.0 551 584 + 2.29007 3 5 cbr 210 ------- 1 1.0 5.0 551 584 - 2.29007 3 5 cbr 210 ------- 1 1.0 5.0 551 584 - 2.29047 2 3 cbr 210 ------- 1 1.0 5.0 567 601 r 2.29086 1 2 cbr 210 ------- 1 1.0 5.0 570 604 + 2.29086 2 3 cbr 210 ------- 1 1.0 5.0 570 604 r 2.29303 3 5 cbr 210 ------- 1 1.0 5.0 536 567 r 2.29343 2 3 cbr 210 ------- 1 1.0 5.0 552 585 + 2.29343 3 5 cbr 210 ------- 1 1.0 5.0 552 585 - 2.29343 3 5 cbr 210 ------- 1 1.0 5.0 552 585 + 2.29375 1 2 cbr 210 ------- 1 1.0 5.0 585 620 - 2.29375 1 2 cbr 210 ------- 1 1.0 5.0 585 620 - 2.29383 2 3 cbr 210 ------- 1 1.0 5.0 568 602 r 2.29461 1 2 cbr 210 ------- 1 1.0 5.0 571 605 + 2.29461 2 3 cbr 210 ------- 1 1.0 5.0 571 605 r 2.29639 3 5 cbr 210 ------- 1 1.0 5.0 537 568 r 2.29679 2 3 cbr 210 ------- 1 1.0 5.0 553 586 + 2.29679 3 5 cbr 210 ------- 1 1.0 5.0 553 586 - 2.29679 3 5 cbr 210 ------- 1 1.0 5.0 553 586 - 2.29719 2 3 cbr 210 ------- 1 1.0 5.0 569 603 + 2.2975 1 2 cbr 210 ------- 1 1.0 5.0 586 621 - 2.2975 1 2 cbr 210 ------- 1 1.0 5.0 586 621 r 2.29836 1 2 cbr 210 ------- 1 1.0 5.0 572 606 + 2.29836 2 3 cbr 210 ------- 1 1.0 5.0 572 606 r 2.29975 3 5 cbr 210 ------- 1 1.0 5.0 538 569 r 2.30015 2 3 cbr 210 ------- 1 1.0 5.0 554 587 + 2.30015 3 5 cbr 210 ------- 1 1.0 5.0 554 587 - 2.30015 3 5 cbr 210 ------- 1 1.0 5.0 554 587 - 2.30055 2 3 cbr 210 ------- 1 1.0 5.0 570 604 + 2.30125 1 2 cbr 210 ------- 1 1.0 5.0 587 622 - 2.30125 1 2 cbr 210 ------- 1 1.0 5.0 587 622 r 2.30211 1 2 cbr 210 ------- 1 1.0 5.0 573 607 + 2.30211 2 3 cbr 210 ------- 1 1.0 5.0 573 607 r 2.30311 3 5 cbr 210 ------- 1 1.0 5.0 539 570 r 2.30351 2 3 cbr 210 ------- 1 1.0 5.0 555 588 + 2.30351 3 5 cbr 210 ------- 1 1.0 5.0 555 588 - 2.30351 3 5 cbr 210 ------- 1 1.0 5.0 555 588 r 2.30383 2 0 ack 40 ------- 0 4.0 0.0 14 580 + 2.30383 0 2 tcp 1000 ------- 0 0.0 4.0 17 623 - 2.30383 0 2 tcp 1000 ------- 0 0.0 4.0 17 623 - 2.30391 2 3 cbr 210 ------- 1 1.0 5.0 571 605 + 2.305 1 2 cbr 210 ------- 1 1.0 5.0 588 624 - 2.305 1 2 cbr 210 ------- 1 1.0 5.0 588 624 r 2.30586 1 2 cbr 210 ------- 1 1.0 5.0 574 608 + 2.30586 2 3 cbr 210 ------- 1 1.0 5.0 574 608 r 2.30647 3 5 cbr 210 ------- 1 1.0 5.0 540 572 r 2.30687 2 3 cbr 210 ------- 1 1.0 5.0 556 589 + 2.30687 3 5 cbr 210 ------- 1 1.0 5.0 556 589 - 2.30687 3 5 cbr 210 ------- 1 1.0 5.0 556 589 - 2.30727 2 3 cbr 210 ------- 1 1.0 5.0 572 606 + 2.30875 1 2 cbr 210 ------- 1 1.0 5.0 589 625 - 2.30875 1 2 cbr 210 ------- 1 1.0 5.0 589 625 r 2.30961 1 2 cbr 210 ------- 1 1.0 5.0 575 609 + 2.30961 2 3 cbr 210 ------- 1 1.0 5.0 575 609 r 2.30983 3 5 cbr 210 ------- 1 1.0 5.0 541 573 r 2.31023 2 3 cbr 210 ------- 1 1.0 5.0 557 590 + 2.31023 3 5 cbr 210 ------- 1 1.0 5.0 557 590 - 2.31023 3 5 cbr 210 ------- 1 1.0 5.0 557 590 - 2.31063 2 3 cbr 210 ------- 1 1.0 5.0 573 607 + 2.3125 1 2 cbr 210 ------- 1 1.0 5.0 590 626 - 2.3125 1 2 cbr 210 ------- 1 1.0 5.0 590 626 r 2.31319 3 5 cbr 210 ------- 1 1.0 5.0 542 574 r 2.31336 1 2 cbr 210 ------- 1 1.0 5.0 576 610 + 2.31336 2 3 cbr 210 ------- 1 1.0 5.0 576 610 r 2.31359 2 3 cbr 210 ------- 1 1.0 5.0 558 591 + 2.31359 3 5 cbr 210 ------- 1 1.0 5.0 558 591 - 2.31359 3 5 cbr 210 ------- 1 1.0 5.0 558 591 - 2.31399 2 3 cbr 210 ------- 1 1.0 5.0 574 608 + 2.31625 1 2 cbr 210 ------- 1 1.0 5.0 591 627 - 2.31625 1 2 cbr 210 ------- 1 1.0 5.0 591 627 r 2.31655 3 5 cbr 210 ------- 1 1.0 5.0 543 575 r 2.31695 2 3 cbr 210 ------- 1 1.0 5.0 559 592 + 2.31695 3 5 cbr 210 ------- 1 1.0 5.0 559 592 - 2.31695 3 5 cbr 210 ------- 1 1.0 5.0 559 592 r 2.31711 1 2 cbr 210 ------- 1 1.0 5.0 577 611 + 2.31711 2 3 cbr 210 ------- 1 1.0 5.0 577 611 - 2.31735 2 3 cbr 210 ------- 1 1.0 5.0 575 609 r 2.31959 3 2 ack 40 ------- 0 4.0 0.0 15 598 + 2.31959 2 0 ack 40 ------- 0 4.0 0.0 15 598 - 2.31959 2 0 ack 40 ------- 0 4.0 0.0 15 598 r 2.31991 3 5 cbr 210 ------- 1 1.0 5.0 544 576 + 2.32 1 2 cbr 210 ------- 1 1.0 5.0 592 628 - 2.32 1 2 cbr 210 ------- 1 1.0 5.0 592 628 r 2.32031 2 3 cbr 210 ------- 1 1.0 5.0 560 593 + 2.32031 3 5 cbr 210 ------- 1 1.0 5.0 560 593 - 2.32031 3 5 cbr 210 ------- 1 1.0 5.0 560 593 - 2.32071 2 3 cbr 210 ------- 1 1.0 5.0 576 610 r 2.32086 1 2 cbr 210 ------- 1 1.0 5.0 578 612 + 2.32086 2 3 cbr 210 ------- 1 1.0 5.0 578 612 r 2.32327 3 5 cbr 210 ------- 1 1.0 5.0 545 577 r 2.32367 2 3 cbr 210 ------- 1 1.0 5.0 561 594 + 2.32367 3 5 cbr 210 ------- 1 1.0 5.0 561 594 - 2.32367 3 5 cbr 210 ------- 1 1.0 5.0 561 594 + 2.32375 1 2 cbr 210 ------- 1 1.0 5.0 593 629 - 2.32375 1 2 cbr 210 ------- 1 1.0 5.0 593 629 - 2.32407 2 3 cbr 210 ------- 1 1.0 5.0 577 611 r 2.32461 1 2 cbr 210 ------- 1 1.0 5.0 579 613 + 2.32461 2 3 cbr 210 ------- 1 1.0 5.0 579 613 r 2.32663 3 5 cbr 210 ------- 1 1.0 5.0 546 578 r 2.32703 2 3 cbr 210 ------- 1 1.0 5.0 562 595 + 2.32703 3 5 cbr 210 ------- 1 1.0 5.0 562 595 - 2.32703 3 5 cbr 210 ------- 1 1.0 5.0 562 595 - 2.32743 2 3 cbr 210 ------- 1 1.0 5.0 578 612 + 2.3275 1 2 cbr 210 ------- 1 1.0 5.0 594 630 - 2.3275 1 2 cbr 210 ------- 1 1.0 5.0 594 630 r 2.32836 1 2 cbr 210 ------- 1 1.0 5.0 580 615 + 2.32836 2 3 cbr 210 ------- 1 1.0 5.0 580 615 r 2.32999 3 5 cbr 210 ------- 1 1.0 5.0 547 579 v 2.3300000000000001 eval {set sim_annotation {Send Packet_18}} r 2.33039 2 3 cbr 210 ------- 1 1.0 5.0 563 596 + 2.33039 3 5 cbr 210 ------- 1 1.0 5.0 563 596 - 2.33039 3 5 cbr 210 ------- 1 1.0 5.0 563 596 - 2.33079 2 3 cbr 210 ------- 1 1.0 5.0 579 613 + 2.33125 1 2 cbr 210 ------- 1 1.0 5.0 595 631 - 2.33125 1 2 cbr 210 ------- 1 1.0 5.0 595 631 r 2.33211 1 2 cbr 210 ------- 1 1.0 5.0 581 616 + 2.33211 2 3 cbr 210 ------- 1 1.0 5.0 581 616 r 2.33335 3 5 cbr 210 ------- 1 1.0 5.0 548 581 r 2.33375 2 3 cbr 210 ------- 1 1.0 5.0 564 597 + 2.33375 3 5 cbr 210 ------- 1 1.0 5.0 564 597 - 2.33375 3 5 cbr 210 ------- 1 1.0 5.0 564 597 - 2.33415 2 3 cbr 210 ------- 1 1.0 5.0 580 615 + 2.335 1 2 cbr 210 ------- 1 1.0 5.0 596 632 - 2.335 1 2 cbr 210 ------- 1 1.0 5.0 596 632 r 2.33586 1 2 cbr 210 ------- 1 1.0 5.0 582 617 + 2.33586 2 3 cbr 210 ------- 1 1.0 5.0 582 617 r 2.33671 3 5 cbr 210 ------- 1 1.0 5.0 549 582 r 2.33711 2 3 cbr 210 ------- 1 1.0 5.0 565 599 + 2.33711 3 5 cbr 210 ------- 1 1.0 5.0 565 599 - 2.33711 3 5 cbr 210 ------- 1 1.0 5.0 565 599 - 2.33751 2 3 cbr 210 ------- 1 1.0 5.0 581 616 + 2.33875 1 2 cbr 210 ------- 1 1.0 5.0 597 633 - 2.33875 1 2 cbr 210 ------- 1 1.0 5.0 597 633 r 2.33961 1 2 cbr 210 ------- 1 1.0 5.0 583 618 + 2.33961 2 3 cbr 210 ------- 1 1.0 5.0 583 618 r 2.34007 3 5 cbr 210 ------- 1 1.0 5.0 550 583 r 2.34039 0 2 tcp 1000 ------- 0 0.0 4.0 16 614 + 2.34039 2 3 tcp 1000 ------- 0 0.0 4.0 16 614 r 2.34047 2 3 cbr 210 ------- 1 1.0 5.0 566 600 + 2.34047 3 5 cbr 210 ------- 1 1.0 5.0 566 600 - 2.34047 3 5 cbr 210 ------- 1 1.0 5.0 566 600 - 2.34087 2 3 cbr 210 ------- 1 1.0 5.0 582 617 + 2.3425 1 2 cbr 210 ------- 1 1.0 5.0 598 634 - 2.3425 1 2 cbr 210 ------- 1 1.0 5.0 598 634 r 2.34336 1 2 cbr 210 ------- 1 1.0 5.0 584 619 + 2.34336 2 3 cbr 210 ------- 1 1.0 5.0 584 619 r 2.34343 3 5 cbr 210 ------- 1 1.0 5.0 551 584 r 2.34383 2 3 cbr 210 ------- 1 1.0 5.0 567 601 + 2.34383 3 5 cbr 210 ------- 1 1.0 5.0 567 601 - 2.34383 3 5 cbr 210 ------- 1 1.0 5.0 567 601 - 2.34423 2 3 cbr 210 ------- 1 1.0 5.0 583 618 + 2.34625 1 2 cbr 210 ------- 1 1.0 5.0 599 635 - 2.34625 1 2 cbr 210 ------- 1 1.0 5.0 599 635 r 2.34679 3 5 cbr 210 ------- 1 1.0 5.0 552 585 r 2.34711 1 2 cbr 210 ------- 1 1.0 5.0 585 620 + 2.34711 2 3 cbr 210 ------- 1 1.0 5.0 585 620 r 2.34719 2 3 cbr 210 ------- 1 1.0 5.0 568 602 + 2.34719 3 5 cbr 210 ------- 1 1.0 5.0 568 602 - 2.34719 3 5 cbr 210 ------- 1 1.0 5.0 568 602 - 2.34759 2 3 tcp 1000 ------- 0 0.0 4.0 16 614 + 2.35 1 2 cbr 210 ------- 1 1.0 5.0 600 636 - 2.35 1 2 cbr 210 ------- 1 1.0 5.0 600 636 r 2.35015 3 5 cbr 210 ------- 1 1.0 5.0 553 586 r 2.35055 2 3 cbr 210 ------- 1 1.0 5.0 569 603 + 2.35055 3 5 cbr 210 ------- 1 1.0 5.0 569 603 - 2.35055 3 5 cbr 210 ------- 1 1.0 5.0 569 603 r 2.35086 1 2 cbr 210 ------- 1 1.0 5.0 586 621 + 2.35086 2 3 cbr 210 ------- 1 1.0 5.0 586 621 r 2.35351 3 5 cbr 210 ------- 1 1.0 5.0 554 587 r 2.35391 2 3 cbr 210 ------- 1 1.0 5.0 570 604 + 2.35391 3 5 cbr 210 ------- 1 1.0 5.0 570 604 - 2.35391 3 5 cbr 210 ------- 1 1.0 5.0 570 604 r 2.35461 1 2 cbr 210 ------- 1 1.0 5.0 587 622 + 2.35461 2 3 cbr 210 ------- 1 1.0 5.0 587 622 r 2.35687 3 5 cbr 210 ------- 1 1.0 5.0 555 588 r 2.35727 2 3 cbr 210 ------- 1 1.0 5.0 571 605 + 2.35727 3 5 cbr 210 ------- 1 1.0 5.0 571 605 - 2.35727 3 5 cbr 210 ------- 1 1.0 5.0 571 605 r 2.35836 1 2 cbr 210 ------- 1 1.0 5.0 588 624 + 2.35836 2 3 cbr 210 ------- 1 1.0 5.0 588 624 r 2.36023 3 5 cbr 210 ------- 1 1.0 5.0 556 589 r 2.36063 2 3 cbr 210 ------- 1 1.0 5.0 572 606 + 2.36063 3 5 cbr 210 ------- 1 1.0 5.0 572 606 - 2.36063 3 5 cbr 210 ------- 1 1.0 5.0 572 606 r 2.36211 1 2 cbr 210 ------- 1 1.0 5.0 589 625 + 2.36211 2 3 cbr 210 ------- 1 1.0 5.0 589 625 - 2.36359 2 3 cbr 210 ------- 1 1.0 5.0 584 619 r 2.36359 3 5 cbr 210 ------- 1 1.0 5.0 557 590 r 2.36399 2 3 cbr 210 ------- 1 1.0 5.0 573 607 + 2.36399 3 5 cbr 210 ------- 1 1.0 5.0 573 607 - 2.36399 3 5 cbr 210 ------- 1 1.0 5.0 573 607 r 2.36586 1 2 cbr 210 ------- 1 1.0 5.0 590 626 + 2.36586 2 3 cbr 210 ------- 1 1.0 5.0 590 626 - 2.36695 2 3 cbr 210 ------- 1 1.0 5.0 585 620 r 2.36695 3 5 cbr 210 ------- 1 1.0 5.0 558 591 r 2.36735 2 3 cbr 210 ------- 1 1.0 5.0 574 608 + 2.36735 3 5 cbr 210 ------- 1 1.0 5.0 574 608 - 2.36735 3 5 cbr 210 ------- 1 1.0 5.0 574 608 r 2.36961 1 2 cbr 210 ------- 1 1.0 5.0 591 627 + 2.36961 2 3 cbr 210 ------- 1 1.0 5.0 591 627 r 2.36983 0 2 tcp 1000 ------- 0 0.0 4.0 17 623 + 2.36983 2 3 tcp 1000 ------- 0 0.0 4.0 17 623 r 2.37023 2 0 ack 40 ------- 0 4.0 0.0 15 598 - 2.37031 2 3 cbr 210 ------- 1 1.0 5.0 586 621 r 2.37031 3 5 cbr 210 ------- 1 1.0 5.0 559 592 r 2.37071 2 3 cbr 210 ------- 1 1.0 5.0 575 609 + 2.37071 3 5 cbr 210 ------- 1 1.0 5.0 575 609 - 2.37071 3 5 cbr 210 ------- 1 1.0 5.0 575 609 r 2.37336 1 2 cbr 210 ------- 1 1.0 5.0 592 628 + 2.37336 2 3 cbr 210 ------- 1 1.0 5.0 592 628 - 2.37367 2 3 cbr 210 ------- 1 1.0 5.0 587 622 r 2.37367 3 5 cbr 210 ------- 1 1.0 5.0 560 593 r 2.37407 2 3 cbr 210 ------- 1 1.0 5.0 576 610 + 2.37407 3 5 cbr 210 ------- 1 1.0 5.0 576 610 - 2.37407 3 5 cbr 210 ------- 1 1.0 5.0 576 610 - 2.37703 2 3 cbr 210 ------- 1 1.0 5.0 588 624 r 2.37703 3 5 cbr 210 ------- 1 1.0 5.0 561 594 r 2.37711 1 2 cbr 210 ------- 1 1.0 5.0 593 629 + 2.37711 2 3 cbr 210 ------- 1 1.0 5.0 593 629 r 2.37743 2 3 cbr 210 ------- 1 1.0 5.0 577 611 + 2.37743 3 5 cbr 210 ------- 1 1.0 5.0 577 611 - 2.37743 3 5 cbr 210 ------- 1 1.0 5.0 577 611 - 2.38039 2 3 cbr 210 ------- 1 1.0 5.0 589 625 r 2.38039 3 5 cbr 210 ------- 1 1.0 5.0 562 595 r 2.38079 2 3 cbr 210 ------- 1 1.0 5.0 578 612 + 2.38079 3 5 cbr 210 ------- 1 1.0 5.0 578 612 - 2.38079 3 5 cbr 210 ------- 1 1.0 5.0 578 612 r 2.38086 1 2 cbr 210 ------- 1 1.0 5.0 594 630 + 2.38086 2 3 cbr 210 ------- 1 1.0 5.0 594 630 - 2.38375 2 3 cbr 210 ------- 1 1.0 5.0 590 626 r 2.38375 3 5 cbr 210 ------- 1 1.0 5.0 563 596 r 2.38415 2 3 cbr 210 ------- 1 1.0 5.0 579 613 + 2.38415 3 5 cbr 210 ------- 1 1.0 5.0 579 613 - 2.38415 3 5 cbr 210 ------- 1 1.0 5.0 579 613 r 2.38461 1 2 cbr 210 ------- 1 1.0 5.0 595 631 + 2.38461 2 3 cbr 210 ------- 1 1.0 5.0 595 631 - 2.38711 2 3 cbr 210 ------- 1 1.0 5.0 591 627 r 2.38711 3 5 cbr 210 ------- 1 1.0 5.0 564 597 r 2.38751 2 3 cbr 210 ------- 1 1.0 5.0 580 615 + 2.38751 3 5 cbr 210 ------- 1 1.0 5.0 580 615 - 2.38751 3 5 cbr 210 ------- 1 1.0 5.0 580 615 r 2.38836 1 2 cbr 210 ------- 1 1.0 5.0 596 632 + 2.38836 2 3 cbr 210 ------- 1 1.0 5.0 596 632 - 2.39047 2 3 tcp 1000 ------- 0 0.0 4.0 17 623 r 2.39047 3 5 cbr 210 ------- 1 1.0 5.0 565 599 r 2.39087 2 3 cbr 210 ------- 1 1.0 5.0 581 616 + 2.39087 3 5 cbr 210 ------- 1 1.0 5.0 581 616 - 2.39087 3 5 cbr 210 ------- 1 1.0 5.0 581 616 r 2.39211 1 2 cbr 210 ------- 1 1.0 5.0 597 633 + 2.39211 2 3 cbr 210 ------- 1 1.0 5.0 597 633 r 2.39383 3 5 cbr 210 ------- 1 1.0 5.0 566 600 r 2.39423 2 3 cbr 210 ------- 1 1.0 5.0 582 617 + 2.39423 3 5 cbr 210 ------- 1 1.0 5.0 582 617 - 2.39423 3 5 cbr 210 ------- 1 1.0 5.0 582 617 r 2.39586 1 2 cbr 210 ------- 1 1.0 5.0 598 634 + 2.39586 2 3 cbr 210 ------- 1 1.0 5.0 598 634 r 2.39719 3 5 cbr 210 ------- 1 1.0 5.0 567 601 r 2.39759 2 3 cbr 210 ------- 1 1.0 5.0 583 618 + 2.39759 3 5 cbr 210 ------- 1 1.0 5.0 583 618 - 2.39759 3 5 cbr 210 ------- 1 1.0 5.0 583 618 r 2.39961 1 2 cbr 210 ------- 1 1.0 5.0 599 635 + 2.39961 2 3 cbr 210 ------- 1 1.0 5.0 599 635 r 2.40055 3 5 cbr 210 ------- 1 1.0 5.0 568 602 r 2.40336 1 2 cbr 210 ------- 1 1.0 5.0 600 636 + 2.40336 2 3 cbr 210 ------- 1 1.0 5.0 600 636 r 2.40391 3 5 cbr 210 ------- 1 1.0 5.0 569 603 - 2.40647 2 3 cbr 210 ------- 1 1.0 5.0 592 628 r 2.40727 3 5 cbr 210 ------- 1 1.0 5.0 570 604 - 2.40983 2 3 cbr 210 ------- 1 1.0 5.0 593 629 r 2.41063 3 5 cbr 210 ------- 1 1.0 5.0 571 605 - 2.41319 2 3 cbr 210 ------- 1 1.0 5.0 594 630 r 2.41359 2 3 tcp 1000 ------- 0 0.0 4.0 16 614 + 2.41359 3 4 tcp 1000 ------- 0 0.0 4.0 16 614 - 2.41359 3 4 tcp 1000 ------- 0 0.0 4.0 16 614 r 2.41399 3 5 cbr 210 ------- 1 1.0 5.0 572 606 - 2.41655 2 3 cbr 210 ------- 1 1.0 5.0 595 631 r 2.41695 2 3 cbr 210 ------- 1 1.0 5.0 584 619 + 2.41695 3 5 cbr 210 ------- 1 1.0 5.0 584 619 - 2.41695 3 5 cbr 210 ------- 1 1.0 5.0 584 619 r 2.41735 3 5 cbr 210 ------- 1 1.0 5.0 573 607 - 2.41991 2 3 cbr 210 ------- 1 1.0 5.0 596 632 r 2.42031 2 3 cbr 210 ------- 1 1.0 5.0 585 620 + 2.42031 3 5 cbr 210 ------- 1 1.0 5.0 585 620 - 2.42031 3 5 cbr 210 ------- 1 1.0 5.0 585 620 r 2.42071 3 5 cbr 210 ------- 1 1.0 5.0 574 608 - 2.42327 2 3 cbr 210 ------- 1 1.0 5.0 597 633 r 2.42367 2 3 cbr 210 ------- 1 1.0 5.0 586 621 + 2.42367 3 5 cbr 210 ------- 1 1.0 5.0 586 621 - 2.42367 3 5 cbr 210 ------- 1 1.0 5.0 586 621 r 2.42407 3 5 cbr 210 ------- 1 1.0 5.0 575 609 - 2.42663 2 3 cbr 210 ------- 1 1.0 5.0 598 634 r 2.42703 2 3 cbr 210 ------- 1 1.0 5.0 587 622 + 2.42703 3 5 cbr 210 ------- 1 1.0 5.0 587 622 - 2.42703 3 5 cbr 210 ------- 1 1.0 5.0 587 622 r 2.42743 3 5 cbr 210 ------- 1 1.0 5.0 576 610 - 2.42999 2 3 cbr 210 ------- 1 1.0 5.0 599 635 r 2.43039 2 3 cbr 210 ------- 1 1.0 5.0 588 624 + 2.43039 3 5 cbr 210 ------- 1 1.0 5.0 588 624 - 2.43039 3 5 cbr 210 ------- 1 1.0 5.0 588 624 r 2.43079 3 5 cbr 210 ------- 1 1.0 5.0 577 611 - 2.43335 2 3 cbr 210 ------- 1 1.0 5.0 600 636 r 2.43375 2 3 cbr 210 ------- 1 1.0 5.0 589 625 + 2.43375 3 5 cbr 210 ------- 1 1.0 5.0 589 625 - 2.43375 3 5 cbr 210 ------- 1 1.0 5.0 589 625 r 2.43415 3 5 cbr 210 ------- 1 1.0 5.0 578 612 r 2.43711 2 3 cbr 210 ------- 1 1.0 5.0 590 626 + 2.43711 3 5 cbr 210 ------- 1 1.0 5.0 590 626 - 2.43711 3 5 cbr 210 ------- 1 1.0 5.0 590 626 r 2.43751 3 5 cbr 210 ------- 1 1.0 5.0 579 613 r 2.44047 2 3 cbr 210 ------- 1 1.0 5.0 591 627 + 2.44047 3 5 cbr 210 ------- 1 1.0 5.0 591 627 - 2.44047 3 5 cbr 210 ------- 1 1.0 5.0 591 627 r 2.44087 3 5 cbr 210 ------- 1 1.0 5.0 580 615 r 2.44423 3 5 cbr 210 ------- 1 1.0 5.0 581 616 r 2.44759 3 5 cbr 210 ------- 1 1.0 5.0 582 617 v 2.4500000000000002 eval {set sim_annotation {Ack_18}} r 2.45095 3 5 cbr 210 ------- 1 1.0 5.0 583 618 r 2.45647 2 3 tcp 1000 ------- 0 0.0 4.0 17 623 + 2.45647 3 4 tcp 1000 ------- 0 0.0 4.0 17 623 - 2.45647 3 4 tcp 1000 ------- 0 0.0 4.0 17 623 r 2.45983 2 3 cbr 210 ------- 1 1.0 5.0 592 628 + 2.45983 3 5 cbr 210 ------- 1 1.0 5.0 592 628 - 2.45983 3 5 cbr 210 ------- 1 1.0 5.0 592 628 r 2.46319 2 3 cbr 210 ------- 1 1.0 5.0 593 629 + 2.46319 3 5 cbr 210 ------- 1 1.0 5.0 593 629 - 2.46319 3 5 cbr 210 ------- 1 1.0 5.0 593 629 r 2.46655 2 3 cbr 210 ------- 1 1.0 5.0 594 630 + 2.46655 3 5 cbr 210 ------- 1 1.0 5.0 594 630 - 2.46655 3 5 cbr 210 ------- 1 1.0 5.0 594 630 r 2.46991 2 3 cbr 210 ------- 1 1.0 5.0 595 631 + 2.46991 3 5 cbr 210 ------- 1 1.0 5.0 595 631 - 2.46991 3 5 cbr 210 ------- 1 1.0 5.0 595 631 r 2.47031 3 5 cbr 210 ------- 1 1.0 5.0 584 619 r 2.47327 2 3 cbr 210 ------- 1 1.0 5.0 596 632 + 2.47327 3 5 cbr 210 ------- 1 1.0 5.0 596 632 - 2.47327 3 5 cbr 210 ------- 1 1.0 5.0 596 632 r 2.47367 3 5 cbr 210 ------- 1 1.0 5.0 585 620 r 2.47663 2 3 cbr 210 ------- 1 1.0 5.0 597 633 + 2.47663 3 5 cbr 210 ------- 1 1.0 5.0 597 633 - 2.47663 3 5 cbr 210 ------- 1 1.0 5.0 597 633 r 2.47703 3 5 cbr 210 ------- 1 1.0 5.0 586 621 r 2.47959 3 4 tcp 1000 ------- 0 0.0 4.0 16 614 + 2.47959 4 3 ack 40 ------- 0 4.0 0.0 16 637 - 2.47959 4 3 ack 40 ------- 0 4.0 0.0 16 637 r 2.47999 2 3 cbr 210 ------- 1 1.0 5.0 598 634 + 2.47999 3 5 cbr 210 ------- 1 1.0 5.0 598 634 - 2.47999 3 5 cbr 210 ------- 1 1.0 5.0 598 634 r 2.48039 3 5 cbr 210 ------- 1 1.0 5.0 587 622 r 2.48335 2 3 cbr 210 ------- 1 1.0 5.0 599 635 + 2.48335 3 5 cbr 210 ------- 1 1.0 5.0 599 635 - 2.48335 3 5 cbr 210 ------- 1 1.0 5.0 599 635 r 2.48375 3 5 cbr 210 ------- 1 1.0 5.0 588 624 r 2.48671 2 3 cbr 210 ------- 1 1.0 5.0 600 636 + 2.48671 3 5 cbr 210 ------- 1 1.0 5.0 600 636 - 2.48671 3 5 cbr 210 ------- 1 1.0 5.0 600 636 r 2.48711 3 5 cbr 210 ------- 1 1.0 5.0 589 625 r 2.49047 3 5 cbr 210 ------- 1 1.0 5.0 590 626 r 2.49383 3 5 cbr 210 ------- 1 1.0 5.0 591 627 v 2.5 eval {set sim_annotation {FTP stops}} r 2.51319 3 5 cbr 210 ------- 1 1.0 5.0 592 628 r 2.51655 3 5 cbr 210 ------- 1 1.0 5.0 593 629 r 2.51991 3 5 cbr 210 ------- 1 1.0 5.0 594 630 r 2.52247 3 4 tcp 1000 ------- 0 0.0 4.0 17 623 + 2.52247 4 3 ack 40 ------- 0 4.0 0.0 17 638 - 2.52247 4 3 ack 40 ------- 0 4.0 0.0 17 638 r 2.52327 3 5 cbr 210 ------- 1 1.0 5.0 595 631 r 2.52663 3 5 cbr 210 ------- 1 1.0 5.0 596 632 r 2.52999 3 5 cbr 210 ------- 1 1.0 5.0 597 633 r 2.53023 4 3 ack 40 ------- 0 4.0 0.0 16 637 + 2.53023 3 2 ack 40 ------- 0 4.0 0.0 16 637 - 2.53023 3 2 ack 40 ------- 0 4.0 0.0 16 637 r 2.53335 3 5 cbr 210 ------- 1 1.0 5.0 598 634 r 2.53671 3 5 cbr 210 ------- 1 1.0 5.0 599 635 r 2.54007 3 5 cbr 210 ------- 1 1.0 5.0 600 636 r 2.57311 4 3 ack 40 ------- 0 4.0 0.0 17 638 + 2.57311 3 2 ack 40 ------- 0 4.0 0.0 17 638 - 2.57311 3 2 ack 40 ------- 0 4.0 0.0 17 638 r 2.58087 3 2 ack 40 ------- 0 4.0 0.0 16 637 + 2.58087 2 0 ack 40 ------- 0 4.0 0.0 16 637 - 2.58087 2 0 ack 40 ------- 0 4.0 0.0 16 637 r 2.62375 3 2 ack 40 ------- 0 4.0 0.0 17 638 + 2.62375 2 0 ack 40 ------- 0 4.0 0.0 17 638 - 2.62375 2 0 ack 40 ------- 0 4.0 0.0 17 638 r 2.63151 2 0 ack 40 ------- 0 4.0 0.0 16 637 r 2.67439 2 0 ack 40 ------- 0 4.0 0.0 17 638 nam-1.15/edu/C0-README0000664000076400007660000000474306756707277013030 0ustar tomhnsnam[ August 1999 ] Following tcl files are ns-scripts for Directed Research with Dr.Heidemann. You could see the explanation about those files at http://www-scf.usc.edu/~hyunahpa/D-Research/DR-home.html There are 3 kinds of files per each mechanism, which are xx.tcl, xx.nam, and xx.tr. FILE NAME DESCRIPTION --------------------------------------------------------------------------------------- C0-README This file In C1-slow-start and C2-sliding-window, the network parameters are changing to set the environment where the network bandwidth is not fixed like in the Internet. C1-slow-start It shows how TCP can transmit its data in the Internet environment feature : label, annotation, nam-graph, and cwnd monitor To see nam-graph, click 'Active Sessions' under 'Analysis' in the nam menu, then click 'TCP session' C2-sliding-window It shows how Sliding window acts in the Internet environment feature : label, annotation, nam-graph, and cwnd monitor To see nam-graph, click 'Active Sessions' under 'Analysis' in the nam menu, then click 'TCP session' C2-sliding-color Same as C2-sliding-window but it doesn't provide nam-graph to support coloring. Use "syn" option in nam menu to see both of them simultaneously ---------------------------------------------------------------------------------------- In C3-slow-start and C4-sliding-window, the network parameters are not changing. C3-slow-start It shows how TCP can transmit its data in a fixed environment feature : label, annotation, nam-graph, and cwnd monitor To see nam-graph, click 'Active Sessions' under 'Analysis' in the nam menu, then click 'TCP session' C4-sliding-window It shows how Sliding window acts in a fixed environment feature : label, annotation, nam-graph, and cwnd monitor To see nam-graph, click 'Active Sessions' under 'Analysis' in the nam menu, then click 'TCP session' C4-sliding-color Same as C4-sliding-window but it doesn't provide nam-graph to support coloring. Use "syn" option in nam menu to see both of them simultaneously --------------------------------------------------------------------------------------- written by Hyunah Park ( hyunahpa@usc.edu ) nam-1.15/edu/C1-slow-start.nam0000664000076400007660000112476706751722507014763 0ustar tomhnsnamV -t * -v 1.0a5 -a 1 -c 1 -F 2 -M 3 c -t * -i 0 -n black c -t * -i 1 -n red N -t * -S 0 -n {TCP session between node 0.0 and node 5.0} -p TCP -m {} N -t * -S 0 -h 40 N -t * -F 0 -M 0 -n tcp N -t * -F 1 -M 2 -n tcp_cong N -t * -F 0 -M 1 -n ack A -t * -n 1 -p 0 -o 255 -c 15 -a 1 A -t * -h 1 -m 127 -s 8 n -t * -a 4 -s 4 -S UP -v circle -c black n -t * -a 0 -s 0 -S UP -v circle -c black n -t * -a 5 -s 5 -S UP -v circle -c black n -t * -a 1 -s 1 -S UP -v circle -c black n -t * -a 6 -s 6 -S UP -v circle -c black n -t * -a 2 -s 2 -S UP -v circle -c black n -t * -a 7 -s 7 -S UP -v circle -c black n -t * -a 3 -s 3 -S UP -v circle -c black l -t * -s 0 -d 3 -S UP -r 5000000 -D 0.02 -c black -o right-down l -t * -s 1 -d 3 -S UP -r 1000000 -D 0.02 -c black -o right l -t * -s 2 -d 3 -S UP -r 1000000 -D 0.02 -c black -o right-up l -t * -s 3 -d 4 -S UP -r 1000000 -D 0.050000000000000003 -c black -o right l -t * -s 4 -d 5 -S UP -r 5000000 -D 0.02 -c black -o right-up l -t * -s 4 -d 6 -S UP -r 1000000 -D 0.02 -c black -o right l -t * -s 4 -d 7 -S UP -r 1000000 -D 0.02 -c black -o right-down q -t * -s 3 -d 4 -a 0.5 q -t * -s 4 -d 3 -a 0.5 a -t 0.00000000000000000 -s 0 -d 5 -n tcp f -t 0.00000000000000000 -s 0 -d 5 -n ssthresh_ -a tcp -v 20 -T v f -t 0.00000000000000000 -s 0 -d 5 -n cwnd_ -a tcp -v 1.000000 -T v v -t 0.00000000000000000 monitor_agent 0 tcp n -t 0 -s 0 -S DLABEL -l TCP -L "" n -t 0 -s 5 -S DLABEL -l TCP -L "" n -t 0 -s 1 -S DLABEL -l CBR-1 -L "" n -t 0 -s 2 -S DLABEL -l CBR-2 -L "" n -t 0 -s 6 -S DLABEL -l CBR-1 -L "" n -t 0 -s 7 -S DLABEL -l CBR-2 -L "" v -t 0 sim_annotation 0 1 TCP in a heavely loaded network + -t 0.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 0 -a 1 - -t 0.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 0 -a 1 h -t 0.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 0 -a 1 v -t 0.050000000000000003 sim_annotation 0.050000000000000003 2 CBR-1 starts + -t 0.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 1 -a 1 - -t 0.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 1 -a 1 h -t 0.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 1 -a 1 + -t 0.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 2 -a 1 - -t 0.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 2 -a 1 h -t 0.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 2 -a 1 r -t 0.074 -s 1 -d 3 -p cbr -e 500 -c 1 -i 0 -a 1 + -t 0.074 -s 3 -d 4 -p cbr -e 500 -c 1 -i 0 -a 1 - -t 0.074 -s 3 -d 4 -p cbr -e 500 -c 1 -i 0 -a 1 h -t 0.074 -s 3 -d 4 -p cbr -e 500 -c 1 -i 0 -a 1 + -t 0.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 3 -a 1 - -t 0.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 3 -a 1 h -t 0.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 3 -a 1 r -t 0.084 -s 1 -d 3 -p cbr -e 500 -c 1 -i 1 -a 1 + -t 0.084 -s 3 -d 4 -p cbr -e 500 -c 1 -i 1 -a 1 - -t 0.084 -s 3 -d 4 -p cbr -e 500 -c 1 -i 1 -a 1 h -t 0.084 -s 3 -d 4 -p cbr -e 500 -c 1 -i 1 -a 1 + -t 0.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 4 -a 1 - -t 0.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 4 -a 1 h -t 0.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 4 -a 1 r -t 0.094 -s 1 -d 3 -p cbr -e 500 -c 1 -i 2 -a 1 + -t 0.094 -s 3 -d 4 -p cbr -e 500 -c 1 -i 2 -a 1 - -t 0.094 -s 3 -d 4 -p cbr -e 500 -c 1 -i 2 -a 1 h -t 0.094 -s 3 -d 4 -p cbr -e 500 -c 1 -i 2 -a 1 + -t 0.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 5 -a 1 - -t 0.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 5 -a 1 h -t 0.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 5 -a 1 + -t 0.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 6 -a 1 - -t 0.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 6 -a 1 h -t 0.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 6 -a 1 v -t 0.10000000000000001 sim_annotation 0.10000000000000001 3 CBR-2 starts r -t 0.104 -s 1 -d 3 -p cbr -e 500 -c 1 -i 3 -a 1 + -t 0.104 -s 3 -d 4 -p cbr -e 500 -c 1 -i 3 -a 1 - -t 0.104 -s 3 -d 4 -p cbr -e 500 -c 1 -i 3 -a 1 h -t 0.104 -s 3 -d 4 -p cbr -e 500 -c 1 -i 3 -a 1 + -t 0.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 7 -a 1 - -t 0.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 7 -a 1 h -t 0.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 7 -a 1 + -t 0.11 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 8 -a 1 - -t 0.11 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 8 -a 1 h -t 0.11 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 8 -a 1 r -t 0.114 -s 1 -d 3 -p cbr -e 500 -c 1 -i 4 -a 1 + -t 0.114 -s 3 -d 4 -p cbr -e 500 -c 1 -i 4 -a 1 - -t 0.114 -s 3 -d 4 -p cbr -e 500 -c 1 -i 4 -a 1 h -t 0.114 -s 3 -d 4 -p cbr -e 500 -c 1 -i 4 -a 1 + -t 0.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 9 -a 1 - -t 0.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 9 -a 1 h -t 0.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 9 -a 1 + -t 0.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 10 -a 1 - -t 0.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 10 -a 1 h -t 0.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 10 -a 1 r -t 0.124 -s 1 -d 3 -p cbr -e 500 -c 1 -i 5 -a 1 + -t 0.124 -s 3 -d 4 -p cbr -e 500 -c 1 -i 5 -a 1 - -t 0.124 -s 3 -d 4 -p cbr -e 500 -c 1 -i 5 -a 1 h -t 0.124 -s 3 -d 4 -p cbr -e 500 -c 1 -i 5 -a 1 r -t 0.128 -s 3 -d 4 -p cbr -e 500 -c 1 -i 0 -a 1 + -t 0.128 -s 4 -d 6 -p cbr -e 500 -c 1 -i 0 -a 1 - -t 0.128 -s 4 -d 6 -p cbr -e 500 -c 1 -i 0 -a 1 h -t 0.128 -s 4 -d 6 -p cbr -e 500 -c 1 -i 0 -a 1 r -t 0.128 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 6 -a 1 + -t 0.128 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 6 -a 1 - -t 0.128 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 6 -a 1 h -t 0.128 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 6 -a 1 + -t 0.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 11 -a 1 - -t 0.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 11 -a 1 h -t 0.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 11 -a 1 + -t 0.13 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 12 -a 1 - -t 0.13 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 12 -a 1 h -t 0.13 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 12 -a 1 r -t 0.134 -s 1 -d 3 -p cbr -e 500 -c 1 -i 7 -a 1 + -t 0.134 -s 3 -d 4 -p cbr -e 500 -c 1 -i 7 -a 1 - -t 0.136 -s 3 -d 4 -p cbr -e 500 -c 1 -i 7 -a 1 h -t 0.136 -s 3 -d 4 -p cbr -e 500 -c 1 -i 7 -a 1 r -t 0.138 -s 3 -d 4 -p cbr -e 500 -c 1 -i 1 -a 1 + -t 0.138 -s 4 -d 6 -p cbr -e 500 -c 1 -i 1 -a 1 - -t 0.138 -s 4 -d 6 -p cbr -e 500 -c 1 -i 1 -a 1 h -t 0.138 -s 4 -d 6 -p cbr -e 500 -c 1 -i 1 -a 1 r -t 0.138 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 8 -a 1 + -t 0.138 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 8 -a 1 + -t 0.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 13 -a 1 - -t 0.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 13 -a 1 h -t 0.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 13 -a 1 + -t 0.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 14 -a 1 - -t 0.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 14 -a 1 h -t 0.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 14 -a 1 - -t 0.14 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 8 -a 1 h -t 0.14 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 8 -a 1 r -t 0.144 -s 1 -d 3 -p cbr -e 500 -c 1 -i 9 -a 1 + -t 0.144 -s 3 -d 4 -p cbr -e 500 -c 1 -i 9 -a 1 r -t 0.148 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 10 -a 1 + -t 0.148 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 10 -a 1 r -t 0.148 -s 3 -d 4 -p cbr -e 500 -c 1 -i 2 -a 1 + -t 0.148 -s 4 -d 6 -p cbr -e 500 -c 1 -i 2 -a 1 - -t 0.148 -s 4 -d 6 -p cbr -e 500 -c 1 -i 2 -a 1 h -t 0.148 -s 4 -d 6 -p cbr -e 500 -c 1 -i 2 -a 1 - -t 0.148 -s 3 -d 4 -p cbr -e 500 -c 1 -i 9 -a 1 h -t 0.148 -s 3 -d 4 -p cbr -e 500 -c 1 -i 9 -a 1 + -t 0.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 15 -a 1 - -t 0.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 15 -a 1 h -t 0.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 15 -a 1 + -t 0.15 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 16 -a 1 - -t 0.15 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 16 -a 1 h -t 0.15 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 16 -a 1 r -t 0.152 -s 4 -d 6 -p cbr -e 500 -c 1 -i 0 -a 1 - -t 0.152 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 10 -a 1 h -t 0.152 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 10 -a 1 r -t 0.154 -s 1 -d 3 -p cbr -e 500 -c 1 -i 11 -a 1 + -t 0.154 -s 3 -d 4 -p cbr -e 500 -c 1 -i 11 -a 1 r -t 0.158 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 12 -a 1 + -t 0.158 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 12 -a 1 r -t 0.158 -s 3 -d 4 -p cbr -e 500 -c 1 -i 3 -a 1 + -t 0.158 -s 4 -d 6 -p cbr -e 500 -c 1 -i 3 -a 1 - -t 0.158 -s 4 -d 6 -p cbr -e 500 -c 1 -i 3 -a 1 h -t 0.158 -s 4 -d 6 -p cbr -e 500 -c 1 -i 3 -a 1 + -t 0.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 17 -a 1 - -t 0.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 17 -a 1 h -t 0.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 17 -a 1 + -t 0.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 18 -a 1 - -t 0.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 18 -a 1 h -t 0.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 18 -a 1 - -t 0.16 -s 3 -d 4 -p cbr -e 500 -c 1 -i 11 -a 1 h -t 0.16 -s 3 -d 4 -p cbr -e 500 -c 1 -i 11 -a 1 r -t 0.162 -s 4 -d 6 -p cbr -e 500 -c 1 -i 1 -a 1 r -t 0.164 -s 1 -d 3 -p cbr -e 500 -c 1 -i 13 -a 1 + -t 0.164 -s 3 -d 4 -p cbr -e 500 -c 1 -i 13 -a 1 - -t 0.164 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 12 -a 1 h -t 0.164 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 12 -a 1 r -t 0.168 -s 3 -d 4 -p cbr -e 500 -c 1 -i 4 -a 1 + -t 0.168 -s 4 -d 6 -p cbr -e 500 -c 1 -i 4 -a 1 - -t 0.168 -s 4 -d 6 -p cbr -e 500 -c 1 -i 4 -a 1 h -t 0.168 -s 4 -d 6 -p cbr -e 500 -c 1 -i 4 -a 1 r -t 0.168 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 14 -a 1 + -t 0.168 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 14 -a 1 + -t 0.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 19 -a 1 - -t 0.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 19 -a 1 h -t 0.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 19 -a 1 + -t 0.17 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 20 -a 1 - -t 0.17 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 20 -a 1 h -t 0.17 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 20 -a 1 r -t 0.172 -s 4 -d 6 -p cbr -e 500 -c 1 -i 2 -a 1 - -t 0.172 -s 3 -d 4 -p cbr -e 500 -c 1 -i 13 -a 1 h -t 0.172 -s 3 -d 4 -p cbr -e 500 -c 1 -i 13 -a 1 r -t 0.174 -s 1 -d 3 -p cbr -e 500 -c 1 -i 15 -a 1 + -t 0.174 -s 3 -d 4 -p cbr -e 500 -c 1 -i 15 -a 1 - -t 0.176 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 14 -a 1 h -t 0.176 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 14 -a 1 r -t 0.178 -s 3 -d 4 -p cbr -e 500 -c 1 -i 5 -a 1 + -t 0.178 -s 4 -d 6 -p cbr -e 500 -c 1 -i 5 -a 1 - -t 0.178 -s 4 -d 6 -p cbr -e 500 -c 1 -i 5 -a 1 h -t 0.178 -s 4 -d 6 -p cbr -e 500 -c 1 -i 5 -a 1 r -t 0.178 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 16 -a 1 + -t 0.178 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 16 -a 1 + -t 0.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 21 -a 1 - -t 0.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 21 -a 1 h -t 0.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 21 -a 1 + -t 0.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 22 -a 1 - -t 0.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 22 -a 1 h -t 0.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 22 -a 1 r -t 0.182 -s 4 -d 6 -p cbr -e 500 -c 1 -i 3 -a 1 r -t 0.184 -s 1 -d 3 -p cbr -e 500 -c 1 -i 17 -a 1 + -t 0.184 -s 3 -d 4 -p cbr -e 500 -c 1 -i 17 -a 1 - -t 0.184 -s 3 -d 4 -p cbr -e 500 -c 1 -i 15 -a 1 h -t 0.184 -s 3 -d 4 -p cbr -e 500 -c 1 -i 15 -a 1 r -t 0.186 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 6 -a 1 + -t 0.186 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 6 -a 1 - -t 0.186 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 6 -a 1 h -t 0.186 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 6 -a 1 r -t 0.188 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 18 -a 1 + -t 0.188 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 18 -a 1 - -t 0.188 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 16 -a 1 h -t 0.188 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 16 -a 1 r -t 0.19 -s 3 -d 4 -p cbr -e 500 -c 1 -i 7 -a 1 + -t 0.19 -s 4 -d 6 -p cbr -e 500 -c 1 -i 7 -a 1 - -t 0.19 -s 4 -d 6 -p cbr -e 500 -c 1 -i 7 -a 1 h -t 0.19 -s 4 -d 6 -p cbr -e 500 -c 1 -i 7 -a 1 + -t 0.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 23 -a 1 - -t 0.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 23 -a 1 h -t 0.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 23 -a 1 + -t 0.19 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 24 -a 1 - -t 0.19 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 24 -a 1 h -t 0.19 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 24 -a 1 r -t 0.192 -s 4 -d 6 -p cbr -e 500 -c 1 -i 4 -a 1 r -t 0.194 -s 1 -d 3 -p cbr -e 500 -c 1 -i 19 -a 1 + -t 0.194 -s 3 -d 4 -p cbr -e 500 -c 1 -i 19 -a 1 - -t 0.196 -s 3 -d 4 -p cbr -e 500 -c 1 -i 17 -a 1 h -t 0.196 -s 3 -d 4 -p cbr -e 500 -c 1 -i 17 -a 1 r -t 0.198 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 8 -a 1 + -t 0.198 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 8 -a 1 - -t 0.198 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 8 -a 1 h -t 0.198 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 8 -a 1 r -t 0.198 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 20 -a 1 + -t 0.198 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 20 -a 1 + -t 0.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 25 -a 1 - -t 0.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 25 -a 1 h -t 0.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 25 -a 1 + -t 0.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 26 -a 1 - -t 0.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 26 -a 1 h -t 0.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 26 -a 1 - -t 0.2 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 18 -a 1 h -t 0.2 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 18 -a 1 r -t 0.202 -s 4 -d 6 -p cbr -e 500 -c 1 -i 5 -a 1 r -t 0.202 -s 3 -d 4 -p cbr -e 500 -c 1 -i 9 -a 1 + -t 0.202 -s 4 -d 6 -p cbr -e 500 -c 1 -i 9 -a 1 - -t 0.202 -s 4 -d 6 -p cbr -e 500 -c 1 -i 9 -a 1 h -t 0.202 -s 4 -d 6 -p cbr -e 500 -c 1 -i 9 -a 1 r -t 0.204 -s 1 -d 3 -p cbr -e 500 -c 1 -i 21 -a 1 + -t 0.204 -s 3 -d 4 -p cbr -e 500 -c 1 -i 21 -a 1 r -t 0.208 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 22 -a 1 + -t 0.208 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 22 -a 1 - -t 0.208 -s 3 -d 4 -p cbr -e 500 -c 1 -i 19 -a 1 h -t 0.208 -s 3 -d 4 -p cbr -e 500 -c 1 -i 19 -a 1 r -t 0.21 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 10 -a 1 + -t 0.21 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 10 -a 1 - -t 0.21 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 10 -a 1 h -t 0.21 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 10 -a 1 + -t 0.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 27 -a 1 - -t 0.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 27 -a 1 h -t 0.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 27 -a 1 + -t 0.21 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 28 -a 1 - -t 0.21 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 28 -a 1 h -t 0.21 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 28 -a 1 - -t 0.212 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 20 -a 1 h -t 0.212 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 20 -a 1 r -t 0.214 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 6 -a 1 r -t 0.214 -s 4 -d 6 -p cbr -e 500 -c 1 -i 7 -a 1 r -t 0.214 -s 3 -d 4 -p cbr -e 500 -c 1 -i 11 -a 1 + -t 0.214 -s 4 -d 6 -p cbr -e 500 -c 1 -i 11 -a 1 - -t 0.214 -s 4 -d 6 -p cbr -e 500 -c 1 -i 11 -a 1 h -t 0.214 -s 4 -d 6 -p cbr -e 500 -c 1 -i 11 -a 1 r -t 0.214 -s 1 -d 3 -p cbr -e 500 -c 1 -i 23 -a 1 + -t 0.214 -s 3 -d 4 -p cbr -e 500 -c 1 -i 23 -a 1 r -t 0.218 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 24 -a 1 + -t 0.218 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 24 -a 1 + -t 0.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 29 -a 1 - -t 0.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 29 -a 1 h -t 0.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 29 -a 1 + -t 0.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 30 -a 1 - -t 0.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 30 -a 1 h -t 0.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 30 -a 1 - -t 0.22 -s 3 -d 4 -p cbr -e 500 -c 1 -i 21 -a 1 h -t 0.22 -s 3 -d 4 -p cbr -e 500 -c 1 -i 21 -a 1 r -t 0.222 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 12 -a 1 + -t 0.222 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 12 -a 1 - -t 0.222 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 12 -a 1 h -t 0.222 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 12 -a 1 r -t 0.224 -s 1 -d 3 -p cbr -e 500 -c 1 -i 25 -a 1 + -t 0.224 -s 3 -d 4 -p cbr -e 500 -c 1 -i 25 -a 1 - -t 0.224 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 22 -a 1 h -t 0.224 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 22 -a 1 r -t 0.226 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 8 -a 1 r -t 0.226 -s 4 -d 6 -p cbr -e 500 -c 1 -i 9 -a 1 r -t 0.226 -s 3 -d 4 -p cbr -e 500 -c 1 -i 13 -a 1 + -t 0.226 -s 4 -d 6 -p cbr -e 500 -c 1 -i 13 -a 1 - -t 0.226 -s 4 -d 6 -p cbr -e 500 -c 1 -i 13 -a 1 h -t 0.226 -s 4 -d 6 -p cbr -e 500 -c 1 -i 13 -a 1 r -t 0.228 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 26 -a 1 + -t 0.228 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 26 -a 1 + -t 0.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 31 -a 1 - -t 0.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 31 -a 1 h -t 0.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 31 -a 1 + -t 0.23 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 32 -a 1 - -t 0.23 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 32 -a 1 h -t 0.23 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 32 -a 1 - -t 0.232 -s 3 -d 4 -p cbr -e 500 -c 1 -i 23 -a 1 h -t 0.232 -s 3 -d 4 -p cbr -e 500 -c 1 -i 23 -a 1 r -t 0.234 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 14 -a 1 + -t 0.234 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 14 -a 1 - -t 0.234 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 14 -a 1 h -t 0.234 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 14 -a 1 r -t 0.234 -s 1 -d 3 -p cbr -e 500 -c 1 -i 27 -a 1 + -t 0.234 -s 3 -d 4 -p cbr -e 500 -c 1 -i 27 -a 1 - -t 0.236 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 24 -a 1 h -t 0.236 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 24 -a 1 r -t 0.238 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 10 -a 1 r -t 0.238 -s 4 -d 6 -p cbr -e 500 -c 1 -i 11 -a 1 r -t 0.238 -s 3 -d 4 -p cbr -e 500 -c 1 -i 15 -a 1 + -t 0.238 -s 4 -d 6 -p cbr -e 500 -c 1 -i 15 -a 1 - -t 0.238 -s 4 -d 6 -p cbr -e 500 -c 1 -i 15 -a 1 h -t 0.238 -s 4 -d 6 -p cbr -e 500 -c 1 -i 15 -a 1 r -t 0.238 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 28 -a 1 + -t 0.238 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 28 -a 1 + -t 0.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 33 -a 1 - -t 0.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 33 -a 1 h -t 0.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 33 -a 1 + -t 0.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 34 -a 1 - -t 0.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 34 -a 1 h -t 0.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 34 -a 1 r -t 0.244 -s 1 -d 3 -p cbr -e 500 -c 1 -i 29 -a 1 + -t 0.244 -s 3 -d 4 -p cbr -e 500 -c 1 -i 29 -a 1 - -t 0.244 -s 3 -d 4 -p cbr -e 500 -c 1 -i 25 -a 1 h -t 0.244 -s 3 -d 4 -p cbr -e 500 -c 1 -i 25 -a 1 r -t 0.246 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 16 -a 1 + -t 0.246 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 16 -a 1 - -t 0.246 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 16 -a 1 h -t 0.246 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 16 -a 1 r -t 0.248 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 30 -a 1 + -t 0.248 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 30 -a 1 - -t 0.248 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 26 -a 1 h -t 0.248 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 26 -a 1 r -t 0.25 -s 3 -d 4 -p cbr -e 500 -c 1 -i 17 -a 1 + -t 0.25 -s 4 -d 6 -p cbr -e 500 -c 1 -i 17 -a 1 - -t 0.25 -s 4 -d 6 -p cbr -e 500 -c 1 -i 17 -a 1 h -t 0.25 -s 4 -d 6 -p cbr -e 500 -c 1 -i 17 -a 1 r -t 0.25 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 12 -a 1 r -t 0.25 -s 4 -d 6 -p cbr -e 500 -c 1 -i 13 -a 1 + -t 0.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 35 -a 1 - -t 0.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 35 -a 1 h -t 0.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 35 -a 1 + -t 0.25 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 36 -a 1 - -t 0.25 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 36 -a 1 h -t 0.25 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 36 -a 1 r -t 0.254 -s 1 -d 3 -p cbr -e 500 -c 1 -i 31 -a 1 + -t 0.254 -s 3 -d 4 -p cbr -e 500 -c 1 -i 31 -a 1 - -t 0.256 -s 3 -d 4 -p cbr -e 500 -c 1 -i 27 -a 1 h -t 0.256 -s 3 -d 4 -p cbr -e 500 -c 1 -i 27 -a 1 r -t 0.258 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 18 -a 1 + -t 0.258 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 18 -a 1 - -t 0.258 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 18 -a 1 h -t 0.258 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 18 -a 1 r -t 0.258 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 32 -a 1 + -t 0.258 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 32 -a 1 + -t 0.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 37 -a 1 - -t 0.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 37 -a 1 h -t 0.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 37 -a 1 + -t 0.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 38 -a 1 - -t 0.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 38 -a 1 h -t 0.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 38 -a 1 - -t 0.26 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 28 -a 1 h -t 0.26 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 28 -a 1 r -t 0.262 -s 3 -d 4 -p cbr -e 500 -c 1 -i 19 -a 1 + -t 0.262 -s 4 -d 6 -p cbr -e 500 -c 1 -i 19 -a 1 - -t 0.262 -s 4 -d 6 -p cbr -e 500 -c 1 -i 19 -a 1 h -t 0.262 -s 4 -d 6 -p cbr -e 500 -c 1 -i 19 -a 1 r -t 0.262 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 14 -a 1 r -t 0.262 -s 4 -d 6 -p cbr -e 500 -c 1 -i 15 -a 1 r -t 0.264 -s 1 -d 3 -p cbr -e 500 -c 1 -i 33 -a 1 + -t 0.264 -s 3 -d 4 -p cbr -e 500 -c 1 -i 33 -a 1 r -t 0.268 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 34 -a 1 + -t 0.268 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 34 -a 1 - -t 0.268 -s 3 -d 4 -p cbr -e 500 -c 1 -i 29 -a 1 h -t 0.268 -s 3 -d 4 -p cbr -e 500 -c 1 -i 29 -a 1 r -t 0.27 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 20 -a 1 + -t 0.27 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 20 -a 1 - -t 0.27 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 20 -a 1 h -t 0.27 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 20 -a 1 + -t 0.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 39 -a 1 - -t 0.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 39 -a 1 h -t 0.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 39 -a 1 + -t 0.27 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 40 -a 1 - -t 0.27 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 40 -a 1 h -t 0.27 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 40 -a 1 - -t 0.272 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 30 -a 1 h -t 0.272 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 30 -a 1 r -t 0.274 -s 3 -d 4 -p cbr -e 500 -c 1 -i 21 -a 1 + -t 0.274 -s 4 -d 6 -p cbr -e 500 -c 1 -i 21 -a 1 - -t 0.274 -s 4 -d 6 -p cbr -e 500 -c 1 -i 21 -a 1 h -t 0.274 -s 4 -d 6 -p cbr -e 500 -c 1 -i 21 -a 1 r -t 0.274 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 16 -a 1 r -t 0.274 -s 4 -d 6 -p cbr -e 500 -c 1 -i 17 -a 1 r -t 0.274 -s 1 -d 3 -p cbr -e 500 -c 1 -i 35 -a 1 + -t 0.274 -s 3 -d 4 -p cbr -e 500 -c 1 -i 35 -a 1 r -t 0.278 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 36 -a 1 + -t 0.278 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 36 -a 1 + -t 0.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 41 -a 1 - -t 0.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 41 -a 1 h -t 0.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 41 -a 1 + -t 0.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 42 -a 1 - -t 0.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 42 -a 1 h -t 0.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 42 -a 1 - -t 0.28 -s 3 -d 4 -p cbr -e 500 -c 1 -i 31 -a 1 h -t 0.28 -s 3 -d 4 -p cbr -e 500 -c 1 -i 31 -a 1 r -t 0.282 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 22 -a 1 + -t 0.282 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 22 -a 1 - -t 0.282 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 22 -a 1 h -t 0.282 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 22 -a 1 r -t 0.284 -s 1 -d 3 -p cbr -e 500 -c 1 -i 37 -a 1 + -t 0.284 -s 3 -d 4 -p cbr -e 500 -c 1 -i 37 -a 1 - -t 0.284 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 32 -a 1 h -t 0.284 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 32 -a 1 r -t 0.286 -s 3 -d 4 -p cbr -e 500 -c 1 -i 23 -a 1 + -t 0.286 -s 4 -d 6 -p cbr -e 500 -c 1 -i 23 -a 1 - -t 0.286 -s 4 -d 6 -p cbr -e 500 -c 1 -i 23 -a 1 h -t 0.286 -s 4 -d 6 -p cbr -e 500 -c 1 -i 23 -a 1 r -t 0.286 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 18 -a 1 r -t 0.286 -s 4 -d 6 -p cbr -e 500 -c 1 -i 19 -a 1 r -t 0.288 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 38 -a 1 + -t 0.288 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 38 -a 1 + -t 0.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 43 -a 1 - -t 0.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 43 -a 1 h -t 0.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 43 -a 1 + -t 0.29 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 44 -a 1 - -t 0.29 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 44 -a 1 h -t 0.29 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 44 -a 1 - -t 0.292 -s 3 -d 4 -p cbr -e 500 -c 1 -i 33 -a 1 h -t 0.292 -s 3 -d 4 -p cbr -e 500 -c 1 -i 33 -a 1 r -t 0.294 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 24 -a 1 + -t 0.294 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 24 -a 1 - -t 0.294 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 24 -a 1 h -t 0.294 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 24 -a 1 r -t 0.294 -s 1 -d 3 -p cbr -e 500 -c 1 -i 39 -a 1 + -t 0.294 -s 3 -d 4 -p cbr -e 500 -c 1 -i 39 -a 1 - -t 0.296 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 34 -a 1 h -t 0.296 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 34 -a 1 r -t 0.298 -s 3 -d 4 -p cbr -e 500 -c 1 -i 25 -a 1 + -t 0.298 -s 4 -d 6 -p cbr -e 500 -c 1 -i 25 -a 1 - -t 0.298 -s 4 -d 6 -p cbr -e 500 -c 1 -i 25 -a 1 h -t 0.298 -s 4 -d 6 -p cbr -e 500 -c 1 -i 25 -a 1 r -t 0.298 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 20 -a 1 r -t 0.298 -s 4 -d 6 -p cbr -e 500 -c 1 -i 21 -a 1 r -t 0.298 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 40 -a 1 + -t 0.298 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 40 -a 1 + -t 0.3 -s 1 -d 3 -p cbr -e 500 -c 1 -i 45 -a 1 - -t 0.3 -s 1 -d 3 -p cbr -e 500 -c 1 -i 45 -a 1 h -t 0.3 -s 1 -d 3 -p cbr -e 500 -c 1 -i 45 -a 1 + -t 0.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 46 -a 1 - -t 0.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 46 -a 1 h -t 0.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 46 -a 1 r -t 0.304 -s 1 -d 3 -p cbr -e 500 -c 1 -i 41 -a 1 + -t 0.304 -s 3 -d 4 -p cbr -e 500 -c 1 -i 41 -a 1 - -t 0.304 -s 3 -d 4 -p cbr -e 500 -c 1 -i 35 -a 1 h -t 0.304 -s 3 -d 4 -p cbr -e 500 -c 1 -i 35 -a 1 r -t 0.306 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 26 -a 1 + -t 0.306 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 26 -a 1 - -t 0.306 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 26 -a 1 h -t 0.306 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 26 -a 1 r -t 0.308 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 42 -a 1 + -t 0.308 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 42 -a 1 - -t 0.308 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 36 -a 1 h -t 0.308 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 36 -a 1 r -t 0.31 -s 3 -d 4 -p cbr -e 500 -c 1 -i 27 -a 1 + -t 0.31 -s 4 -d 6 -p cbr -e 500 -c 1 -i 27 -a 1 - -t 0.31 -s 4 -d 6 -p cbr -e 500 -c 1 -i 27 -a 1 h -t 0.31 -s 4 -d 6 -p cbr -e 500 -c 1 -i 27 -a 1 r -t 0.31 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 22 -a 1 r -t 0.31 -s 4 -d 6 -p cbr -e 500 -c 1 -i 23 -a 1 + -t 0.31 -s 1 -d 3 -p cbr -e 500 -c 1 -i 47 -a 1 - -t 0.31 -s 1 -d 3 -p cbr -e 500 -c 1 -i 47 -a 1 h -t 0.31 -s 1 -d 3 -p cbr -e 500 -c 1 -i 47 -a 1 + -t 0.31 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 48 -a 1 - -t 0.31 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 48 -a 1 h -t 0.31 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 48 -a 1 r -t 0.314 -s 1 -d 3 -p cbr -e 500 -c 1 -i 43 -a 1 + -t 0.314 -s 3 -d 4 -p cbr -e 500 -c 1 -i 43 -a 1 - -t 0.316 -s 3 -d 4 -p cbr -e 500 -c 1 -i 37 -a 1 h -t 0.316 -s 3 -d 4 -p cbr -e 500 -c 1 -i 37 -a 1 r -t 0.318 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 28 -a 1 + -t 0.318 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 28 -a 1 - -t 0.318 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 28 -a 1 h -t 0.318 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 28 -a 1 r -t 0.318 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 44 -a 1 + -t 0.318 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 44 -a 1 + -t 0.32 -s 1 -d 3 -p cbr -e 500 -c 1 -i 49 -a 1 - -t 0.32 -s 1 -d 3 -p cbr -e 500 -c 1 -i 49 -a 1 h -t 0.32 -s 1 -d 3 -p cbr -e 500 -c 1 -i 49 -a 1 + -t 0.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 50 -a 1 - -t 0.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 50 -a 1 h -t 0.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 50 -a 1 - -t 0.32 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 38 -a 1 h -t 0.32 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 38 -a 1 r -t 0.322 -s 3 -d 4 -p cbr -e 500 -c 1 -i 29 -a 1 + -t 0.322 -s 4 -d 6 -p cbr -e 500 -c 1 -i 29 -a 1 - -t 0.322 -s 4 -d 6 -p cbr -e 500 -c 1 -i 29 -a 1 h -t 0.322 -s 4 -d 6 -p cbr -e 500 -c 1 -i 29 -a 1 r -t 0.322 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 24 -a 1 r -t 0.322 -s 4 -d 6 -p cbr -e 500 -c 1 -i 25 -a 1 r -t 0.324 -s 1 -d 3 -p cbr -e 500 -c 1 -i 45 -a 1 + -t 0.324 -s 3 -d 4 -p cbr -e 500 -c 1 -i 45 -a 1 r -t 0.328 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 46 -a 1 + -t 0.328 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 46 -a 1 - -t 0.328 -s 3 -d 4 -p cbr -e 500 -c 1 -i 39 -a 1 h -t 0.328 -s 3 -d 4 -p cbr -e 500 -c 1 -i 39 -a 1 r -t 0.33 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 30 -a 1 + -t 0.33 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 30 -a 1 - -t 0.33 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 30 -a 1 h -t 0.33 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 30 -a 1 + -t 0.33 -s 1 -d 3 -p cbr -e 500 -c 1 -i 51 -a 1 - -t 0.33 -s 1 -d 3 -p cbr -e 500 -c 1 -i 51 -a 1 h -t 0.33 -s 1 -d 3 -p cbr -e 500 -c 1 -i 51 -a 1 + -t 0.33 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 52 -a 1 - -t 0.33 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 52 -a 1 h -t 0.33 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 52 -a 1 - -t 0.332 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 40 -a 1 h -t 0.332 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 40 -a 1 r -t 0.334 -s 3 -d 4 -p cbr -e 500 -c 1 -i 31 -a 1 + -t 0.334 -s 4 -d 6 -p cbr -e 500 -c 1 -i 31 -a 1 - -t 0.334 -s 4 -d 6 -p cbr -e 500 -c 1 -i 31 -a 1 h -t 0.334 -s 4 -d 6 -p cbr -e 500 -c 1 -i 31 -a 1 r -t 0.334 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 26 -a 1 r -t 0.334 -s 4 -d 6 -p cbr -e 500 -c 1 -i 27 -a 1 r -t 0.334 -s 1 -d 3 -p cbr -e 500 -c 1 -i 47 -a 1 + -t 0.334 -s 3 -d 4 -p cbr -e 500 -c 1 -i 47 -a 1 r -t 0.338 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 48 -a 1 + -t 0.338 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 48 -a 1 + -t 0.34 -s 1 -d 3 -p cbr -e 500 -c 1 -i 53 -a 1 - -t 0.34 -s 1 -d 3 -p cbr -e 500 -c 1 -i 53 -a 1 h -t 0.34 -s 1 -d 3 -p cbr -e 500 -c 1 -i 53 -a 1 + -t 0.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 54 -a 1 - -t 0.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 54 -a 1 h -t 0.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 54 -a 1 - -t 0.34 -s 3 -d 4 -p cbr -e 500 -c 1 -i 41 -a 1 h -t 0.34 -s 3 -d 4 -p cbr -e 500 -c 1 -i 41 -a 1 r -t 0.342 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 32 -a 1 + -t 0.342 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 32 -a 1 - -t 0.342 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 32 -a 1 h -t 0.342 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 32 -a 1 r -t 0.344 -s 1 -d 3 -p cbr -e 500 -c 1 -i 49 -a 1 + -t 0.344 -s 3 -d 4 -p cbr -e 500 -c 1 -i 49 -a 1 - -t 0.344 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 42 -a 1 h -t 0.344 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 42 -a 1 r -t 0.346 -s 3 -d 4 -p cbr -e 500 -c 1 -i 33 -a 1 + -t 0.346 -s 4 -d 6 -p cbr -e 500 -c 1 -i 33 -a 1 - -t 0.346 -s 4 -d 6 -p cbr -e 500 -c 1 -i 33 -a 1 h -t 0.346 -s 4 -d 6 -p cbr -e 500 -c 1 -i 33 -a 1 r -t 0.346 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 28 -a 1 r -t 0.346 -s 4 -d 6 -p cbr -e 500 -c 1 -i 29 -a 1 r -t 0.348 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 50 -a 1 + -t 0.348 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 50 -a 1 + -t 0.35 -s 1 -d 3 -p cbr -e 500 -c 1 -i 55 -a 1 - -t 0.35 -s 1 -d 3 -p cbr -e 500 -c 1 -i 55 -a 1 h -t 0.35 -s 1 -d 3 -p cbr -e 500 -c 1 -i 55 -a 1 + -t 0.35 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 56 -a 1 - -t 0.35 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 56 -a 1 h -t 0.35 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 56 -a 1 - -t 0.352 -s 3 -d 4 -p cbr -e 500 -c 1 -i 43 -a 1 h -t 0.352 -s 3 -d 4 -p cbr -e 500 -c 1 -i 43 -a 1 r -t 0.354 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 34 -a 1 + -t 0.354 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 34 -a 1 - -t 0.354 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 34 -a 1 h -t 0.354 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 34 -a 1 r -t 0.354 -s 1 -d 3 -p cbr -e 500 -c 1 -i 51 -a 1 + -t 0.354 -s 3 -d 4 -p cbr -e 500 -c 1 -i 51 -a 1 - -t 0.356 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 44 -a 1 h -t 0.356 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 44 -a 1 r -t 0.358 -s 3 -d 4 -p cbr -e 500 -c 1 -i 35 -a 1 + -t 0.358 -s 4 -d 6 -p cbr -e 500 -c 1 -i 35 -a 1 - -t 0.358 -s 4 -d 6 -p cbr -e 500 -c 1 -i 35 -a 1 h -t 0.358 -s 4 -d 6 -p cbr -e 500 -c 1 -i 35 -a 1 r -t 0.358 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 30 -a 1 r -t 0.358 -s 4 -d 6 -p cbr -e 500 -c 1 -i 31 -a 1 r -t 0.358 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 52 -a 1 + -t 0.358 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 52 -a 1 + -t 0.36 -s 1 -d 3 -p cbr -e 500 -c 1 -i 57 -a 1 - -t 0.36 -s 1 -d 3 -p cbr -e 500 -c 1 -i 57 -a 1 h -t 0.36 -s 1 -d 3 -p cbr -e 500 -c 1 -i 57 -a 1 + -t 0.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 58 -a 1 - -t 0.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 58 -a 1 h -t 0.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 58 -a 1 r -t 0.364 -s 1 -d 3 -p cbr -e 500 -c 1 -i 53 -a 1 + -t 0.364 -s 3 -d 4 -p cbr -e 500 -c 1 -i 53 -a 1 - -t 0.364 -s 3 -d 4 -p cbr -e 500 -c 1 -i 45 -a 1 h -t 0.364 -s 3 -d 4 -p cbr -e 500 -c 1 -i 45 -a 1 r -t 0.366 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 36 -a 1 + -t 0.366 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 36 -a 1 - -t 0.366 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 36 -a 1 h -t 0.366 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 36 -a 1 r -t 0.368 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 54 -a 1 + -t 0.368 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 54 -a 1 - -t 0.368 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 46 -a 1 h -t 0.368 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 46 -a 1 r -t 0.37 -s 3 -d 4 -p cbr -e 500 -c 1 -i 37 -a 1 + -t 0.37 -s 4 -d 6 -p cbr -e 500 -c 1 -i 37 -a 1 - -t 0.37 -s 4 -d 6 -p cbr -e 500 -c 1 -i 37 -a 1 h -t 0.37 -s 4 -d 6 -p cbr -e 500 -c 1 -i 37 -a 1 r -t 0.37 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 32 -a 1 r -t 0.37 -s 4 -d 6 -p cbr -e 500 -c 1 -i 33 -a 1 + -t 0.37 -s 1 -d 3 -p cbr -e 500 -c 1 -i 59 -a 1 - -t 0.37 -s 1 -d 3 -p cbr -e 500 -c 1 -i 59 -a 1 h -t 0.37 -s 1 -d 3 -p cbr -e 500 -c 1 -i 59 -a 1 + -t 0.37 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 60 -a 1 - -t 0.37 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 60 -a 1 h -t 0.37 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 60 -a 1 r -t 0.374 -s 1 -d 3 -p cbr -e 500 -c 1 -i 55 -a 1 + -t 0.374 -s 3 -d 4 -p cbr -e 500 -c 1 -i 55 -a 1 - -t 0.376 -s 3 -d 4 -p cbr -e 500 -c 1 -i 47 -a 1 h -t 0.376 -s 3 -d 4 -p cbr -e 500 -c 1 -i 47 -a 1 r -t 0.378 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 38 -a 1 + -t 0.378 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 38 -a 1 - -t 0.378 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 38 -a 1 h -t 0.378 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 38 -a 1 r -t 0.378 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 56 -a 1 + -t 0.378 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 56 -a 1 + -t 0.38 -s 1 -d 3 -p cbr -e 500 -c 1 -i 61 -a 1 - -t 0.38 -s 1 -d 3 -p cbr -e 500 -c 1 -i 61 -a 1 h -t 0.38 -s 1 -d 3 -p cbr -e 500 -c 1 -i 61 -a 1 + -t 0.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 62 -a 1 - -t 0.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 62 -a 1 h -t 0.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 62 -a 1 - -t 0.38 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 48 -a 1 h -t 0.38 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 48 -a 1 r -t 0.382 -s 3 -d 4 -p cbr -e 500 -c 1 -i 39 -a 1 + -t 0.382 -s 4 -d 6 -p cbr -e 500 -c 1 -i 39 -a 1 - -t 0.382 -s 4 -d 6 -p cbr -e 500 -c 1 -i 39 -a 1 h -t 0.382 -s 4 -d 6 -p cbr -e 500 -c 1 -i 39 -a 1 r -t 0.382 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 34 -a 1 r -t 0.382 -s 4 -d 6 -p cbr -e 500 -c 1 -i 35 -a 1 r -t 0.384 -s 1 -d 3 -p cbr -e 500 -c 1 -i 57 -a 1 + -t 0.384 -s 3 -d 4 -p cbr -e 500 -c 1 -i 57 -a 1 r -t 0.388 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 58 -a 1 + -t 0.388 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 58 -a 1 d -t 0.388 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 58 -a 1 - -t 0.388 -s 3 -d 4 -p cbr -e 500 -c 1 -i 49 -a 1 h -t 0.388 -s 3 -d 4 -p cbr -e 500 -c 1 -i 49 -a 1 r -t 0.39 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 40 -a 1 + -t 0.39 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 40 -a 1 - -t 0.39 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 40 -a 1 h -t 0.39 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 40 -a 1 + -t 0.39 -s 1 -d 3 -p cbr -e 500 -c 1 -i 63 -a 1 - -t 0.39 -s 1 -d 3 -p cbr -e 500 -c 1 -i 63 -a 1 h -t 0.39 -s 1 -d 3 -p cbr -e 500 -c 1 -i 63 -a 1 + -t 0.39 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 64 -a 1 - -t 0.39 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 64 -a 1 h -t 0.39 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 64 -a 1 - -t 0.392 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 50 -a 1 h -t 0.392 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 50 -a 1 r -t 0.394 -s 3 -d 4 -p cbr -e 500 -c 1 -i 41 -a 1 + -t 0.394 -s 4 -d 6 -p cbr -e 500 -c 1 -i 41 -a 1 - -t 0.394 -s 4 -d 6 -p cbr -e 500 -c 1 -i 41 -a 1 h -t 0.394 -s 4 -d 6 -p cbr -e 500 -c 1 -i 41 -a 1 r -t 0.394 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 36 -a 1 r -t 0.394 -s 4 -d 6 -p cbr -e 500 -c 1 -i 37 -a 1 r -t 0.394 -s 1 -d 3 -p cbr -e 500 -c 1 -i 59 -a 1 + -t 0.394 -s 3 -d 4 -p cbr -e 500 -c 1 -i 59 -a 1 r -t 0.398 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 60 -a 1 + -t 0.398 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 60 -a 1 + -t 0.4 -s 1 -d 3 -p cbr -e 500 -c 1 -i 65 -a 1 - -t 0.4 -s 1 -d 3 -p cbr -e 500 -c 1 -i 65 -a 1 h -t 0.4 -s 1 -d 3 -p cbr -e 500 -c 1 -i 65 -a 1 + -t 0.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 66 -a 1 - -t 0.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 66 -a 1 h -t 0.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 66 -a 1 - -t 0.4 -s 3 -d 4 -p cbr -e 500 -c 1 -i 51 -a 1 h -t 0.4 -s 3 -d 4 -p cbr -e 500 -c 1 -i 51 -a 1 r -t 0.402 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 42 -a 1 + -t 0.402 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 42 -a 1 - -t 0.402 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 42 -a 1 h -t 0.402 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 42 -a 1 r -t 0.404 -s 1 -d 3 -p cbr -e 500 -c 1 -i 61 -a 1 + -t 0.404 -s 3 -d 4 -p cbr -e 500 -c 1 -i 61 -a 1 - -t 0.404 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 52 -a 1 h -t 0.404 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 52 -a 1 r -t 0.406 -s 3 -d 4 -p cbr -e 500 -c 1 -i 43 -a 1 + -t 0.406 -s 4 -d 6 -p cbr -e 500 -c 1 -i 43 -a 1 - -t 0.406 -s 4 -d 6 -p cbr -e 500 -c 1 -i 43 -a 1 h -t 0.406 -s 4 -d 6 -p cbr -e 500 -c 1 -i 43 -a 1 r -t 0.406 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 38 -a 1 r -t 0.406 -s 4 -d 6 -p cbr -e 500 -c 1 -i 39 -a 1 r -t 0.408 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 62 -a 1 + -t 0.408 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 62 -a 1 + -t 0.41 -s 1 -d 3 -p cbr -e 500 -c 1 -i 67 -a 1 - -t 0.41 -s 1 -d 3 -p cbr -e 500 -c 1 -i 67 -a 1 h -t 0.41 -s 1 -d 3 -p cbr -e 500 -c 1 -i 67 -a 1 + -t 0.41 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 68 -a 1 - -t 0.41 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 68 -a 1 h -t 0.41 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 68 -a 1 - -t 0.412 -s 3 -d 4 -p cbr -e 500 -c 1 -i 53 -a 1 h -t 0.412 -s 3 -d 4 -p cbr -e 500 -c 1 -i 53 -a 1 r -t 0.414 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 44 -a 1 + -t 0.414 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 44 -a 1 - -t 0.414 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 44 -a 1 h -t 0.414 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 44 -a 1 r -t 0.414 -s 1 -d 3 -p cbr -e 500 -c 1 -i 63 -a 1 + -t 0.414 -s 3 -d 4 -p cbr -e 500 -c 1 -i 63 -a 1 - -t 0.416 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 54 -a 1 h -t 0.416 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 54 -a 1 r -t 0.418 -s 3 -d 4 -p cbr -e 500 -c 1 -i 45 -a 1 + -t 0.418 -s 4 -d 6 -p cbr -e 500 -c 1 -i 45 -a 1 - -t 0.418 -s 4 -d 6 -p cbr -e 500 -c 1 -i 45 -a 1 h -t 0.418 -s 4 -d 6 -p cbr -e 500 -c 1 -i 45 -a 1 r -t 0.418 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 40 -a 1 r -t 0.418 -s 4 -d 6 -p cbr -e 500 -c 1 -i 41 -a 1 r -t 0.418 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 64 -a 1 + -t 0.418 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 64 -a 1 + -t 0.42 -s 1 -d 3 -p cbr -e 500 -c 1 -i 69 -a 1 - -t 0.42 -s 1 -d 3 -p cbr -e 500 -c 1 -i 69 -a 1 h -t 0.42 -s 1 -d 3 -p cbr -e 500 -c 1 -i 69 -a 1 + -t 0.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 70 -a 1 - -t 0.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 70 -a 1 h -t 0.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 70 -a 1 r -t 0.424 -s 1 -d 3 -p cbr -e 500 -c 1 -i 65 -a 1 + -t 0.424 -s 3 -d 4 -p cbr -e 500 -c 1 -i 65 -a 1 d -t 0.424 -s 3 -d 4 -p cbr -e 500 -c 1 -i 65 -a 1 - -t 0.424 -s 3 -d 4 -p cbr -e 500 -c 1 -i 55 -a 1 h -t 0.424 -s 3 -d 4 -p cbr -e 500 -c 1 -i 55 -a 1 r -t 0.426 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 46 -a 1 + -t 0.426 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 46 -a 1 - -t 0.426 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 46 -a 1 h -t 0.426 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 46 -a 1 r -t 0.428 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 66 -a 1 + -t 0.428 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 66 -a 1 - -t 0.428 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 56 -a 1 h -t 0.428 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 56 -a 1 r -t 0.43 -s 3 -d 4 -p cbr -e 500 -c 1 -i 47 -a 1 + -t 0.43 -s 4 -d 6 -p cbr -e 500 -c 1 -i 47 -a 1 - -t 0.43 -s 4 -d 6 -p cbr -e 500 -c 1 -i 47 -a 1 h -t 0.43 -s 4 -d 6 -p cbr -e 500 -c 1 -i 47 -a 1 r -t 0.43 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 42 -a 1 r -t 0.43 -s 4 -d 6 -p cbr -e 500 -c 1 -i 43 -a 1 + -t 0.43 -s 1 -d 3 -p cbr -e 500 -c 1 -i 71 -a 1 - -t 0.43 -s 1 -d 3 -p cbr -e 500 -c 1 -i 71 -a 1 h -t 0.43 -s 1 -d 3 -p cbr -e 500 -c 1 -i 71 -a 1 + -t 0.43 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 72 -a 1 - -t 0.43 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 72 -a 1 h -t 0.43 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 72 -a 1 r -t 0.434 -s 1 -d 3 -p cbr -e 500 -c 1 -i 67 -a 1 + -t 0.434 -s 3 -d 4 -p cbr -e 500 -c 1 -i 67 -a 1 - -t 0.436 -s 3 -d 4 -p cbr -e 500 -c 1 -i 57 -a 1 h -t 0.436 -s 3 -d 4 -p cbr -e 500 -c 1 -i 57 -a 1 r -t 0.438 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 48 -a 1 + -t 0.438 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 48 -a 1 - -t 0.438 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 48 -a 1 h -t 0.438 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 48 -a 1 r -t 0.438 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 68 -a 1 + -t 0.438 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 68 -a 1 + -t 0.44 -s 1 -d 3 -p cbr -e 500 -c 1 -i 73 -a 1 - -t 0.44 -s 1 -d 3 -p cbr -e 500 -c 1 -i 73 -a 1 h -t 0.44 -s 1 -d 3 -p cbr -e 500 -c 1 -i 73 -a 1 + -t 0.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 74 -a 1 - -t 0.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 74 -a 1 h -t 0.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 74 -a 1 - -t 0.44 -s 3 -d 4 -p cbr -e 500 -c 1 -i 59 -a 1 h -t 0.44 -s 3 -d 4 -p cbr -e 500 -c 1 -i 59 -a 1 r -t 0.442 -s 3 -d 4 -p cbr -e 500 -c 1 -i 49 -a 1 + -t 0.442 -s 4 -d 6 -p cbr -e 500 -c 1 -i 49 -a 1 - -t 0.442 -s 4 -d 6 -p cbr -e 500 -c 1 -i 49 -a 1 h -t 0.442 -s 4 -d 6 -p cbr -e 500 -c 1 -i 49 -a 1 r -t 0.442 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 44 -a 1 r -t 0.442 -s 4 -d 6 -p cbr -e 500 -c 1 -i 45 -a 1 r -t 0.444 -s 1 -d 3 -p cbr -e 500 -c 1 -i 69 -a 1 + -t 0.444 -s 3 -d 4 -p cbr -e 500 -c 1 -i 69 -a 1 - -t 0.444 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 60 -a 1 h -t 0.444 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 60 -a 1 r -t 0.448 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 70 -a 1 + -t 0.448 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 70 -a 1 r -t 0.45 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 50 -a 1 + -t 0.45 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 50 -a 1 - -t 0.45 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 50 -a 1 h -t 0.45 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 50 -a 1 + -t 0.45 -s 1 -d 3 -p cbr -e 500 -c 1 -i 75 -a 1 - -t 0.45 -s 1 -d 3 -p cbr -e 500 -c 1 -i 75 -a 1 h -t 0.45 -s 1 -d 3 -p cbr -e 500 -c 1 -i 75 -a 1 + -t 0.45 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 76 -a 1 - -t 0.45 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 76 -a 1 h -t 0.45 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 76 -a 1 - -t 0.452 -s 3 -d 4 -p cbr -e 500 -c 1 -i 61 -a 1 h -t 0.452 -s 3 -d 4 -p cbr -e 500 -c 1 -i 61 -a 1 r -t 0.454 -s 3 -d 4 -p cbr -e 500 -c 1 -i 51 -a 1 + -t 0.454 -s 4 -d 6 -p cbr -e 500 -c 1 -i 51 -a 1 - -t 0.454 -s 4 -d 6 -p cbr -e 500 -c 1 -i 51 -a 1 h -t 0.454 -s 4 -d 6 -p cbr -e 500 -c 1 -i 51 -a 1 r -t 0.454 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 46 -a 1 r -t 0.454 -s 4 -d 6 -p cbr -e 500 -c 1 -i 47 -a 1 r -t 0.454 -s 1 -d 3 -p cbr -e 500 -c 1 -i 71 -a 1 + -t 0.454 -s 3 -d 4 -p cbr -e 500 -c 1 -i 71 -a 1 - -t 0.456 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 62 -a 1 h -t 0.456 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 62 -a 1 r -t 0.458 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 72 -a 1 + -t 0.458 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 72 -a 1 + -t 0.46 -s 1 -d 3 -p cbr -e 500 -c 1 -i 77 -a 1 - -t 0.46 -s 1 -d 3 -p cbr -e 500 -c 1 -i 77 -a 1 h -t 0.46 -s 1 -d 3 -p cbr -e 500 -c 1 -i 77 -a 1 + -t 0.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 78 -a 1 - -t 0.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 78 -a 1 h -t 0.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 78 -a 1 r -t 0.462 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 52 -a 1 + -t 0.462 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 52 -a 1 - -t 0.462 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 52 -a 1 h -t 0.462 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 52 -a 1 r -t 0.464 -s 1 -d 3 -p cbr -e 500 -c 1 -i 73 -a 1 + -t 0.464 -s 3 -d 4 -p cbr -e 500 -c 1 -i 73 -a 1 d -t 0.464 -s 3 -d 4 -p cbr -e 500 -c 1 -i 73 -a 1 - -t 0.464 -s 3 -d 4 -p cbr -e 500 -c 1 -i 63 -a 1 h -t 0.464 -s 3 -d 4 -p cbr -e 500 -c 1 -i 63 -a 1 r -t 0.466 -s 3 -d 4 -p cbr -e 500 -c 1 -i 53 -a 1 + -t 0.466 -s 4 -d 6 -p cbr -e 500 -c 1 -i 53 -a 1 - -t 0.466 -s 4 -d 6 -p cbr -e 500 -c 1 -i 53 -a 1 h -t 0.466 -s 4 -d 6 -p cbr -e 500 -c 1 -i 53 -a 1 r -t 0.466 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 48 -a 1 r -t 0.466 -s 4 -d 6 -p cbr -e 500 -c 1 -i 49 -a 1 r -t 0.468 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 74 -a 1 + -t 0.468 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 74 -a 1 - -t 0.468 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 64 -a 1 h -t 0.468 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 64 -a 1 + -t 0.47 -s 1 -d 3 -p cbr -e 500 -c 1 -i 79 -a 1 - -t 0.47 -s 1 -d 3 -p cbr -e 500 -c 1 -i 79 -a 1 h -t 0.47 -s 1 -d 3 -p cbr -e 500 -c 1 -i 79 -a 1 + -t 0.47 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 80 -a 1 - -t 0.47 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 80 -a 1 h -t 0.47 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 80 -a 1 r -t 0.474 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 54 -a 1 + -t 0.474 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 54 -a 1 - -t 0.474 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 54 -a 1 h -t 0.474 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 54 -a 1 r -t 0.474 -s 1 -d 3 -p cbr -e 500 -c 1 -i 75 -a 1 + -t 0.474 -s 3 -d 4 -p cbr -e 500 -c 1 -i 75 -a 1 - -t 0.476 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 66 -a 1 h -t 0.476 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 66 -a 1 r -t 0.478 -s 3 -d 4 -p cbr -e 500 -c 1 -i 55 -a 1 + -t 0.478 -s 4 -d 6 -p cbr -e 500 -c 1 -i 55 -a 1 - -t 0.478 -s 4 -d 6 -p cbr -e 500 -c 1 -i 55 -a 1 h -t 0.478 -s 4 -d 6 -p cbr -e 500 -c 1 -i 55 -a 1 r -t 0.478 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 50 -a 1 r -t 0.478 -s 4 -d 6 -p cbr -e 500 -c 1 -i 51 -a 1 r -t 0.478 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 76 -a 1 + -t 0.478 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 76 -a 1 + -t 0.48 -s 1 -d 3 -p cbr -e 500 -c 1 -i 81 -a 1 - -t 0.48 -s 1 -d 3 -p cbr -e 500 -c 1 -i 81 -a 1 h -t 0.48 -s 1 -d 3 -p cbr -e 500 -c 1 -i 81 -a 1 + -t 0.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 82 -a 1 - -t 0.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 82 -a 1 h -t 0.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 82 -a 1 r -t 0.484 -s 1 -d 3 -p cbr -e 500 -c 1 -i 77 -a 1 + -t 0.484 -s 3 -d 4 -p cbr -e 500 -c 1 -i 77 -a 1 d -t 0.484 -s 3 -d 4 -p cbr -e 500 -c 1 -i 77 -a 1 - -t 0.484 -s 3 -d 4 -p cbr -e 500 -c 1 -i 67 -a 1 h -t 0.484 -s 3 -d 4 -p cbr -e 500 -c 1 -i 67 -a 1 r -t 0.486 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 56 -a 1 + -t 0.486 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 56 -a 1 - -t 0.486 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 56 -a 1 h -t 0.486 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 56 -a 1 r -t 0.488 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 78 -a 1 + -t 0.488 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 78 -a 1 - -t 0.488 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 68 -a 1 h -t 0.488 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 68 -a 1 r -t 0.49 -s 3 -d 4 -p cbr -e 500 -c 1 -i 57 -a 1 + -t 0.49 -s 4 -d 6 -p cbr -e 500 -c 1 -i 57 -a 1 - -t 0.49 -s 4 -d 6 -p cbr -e 500 -c 1 -i 57 -a 1 h -t 0.49 -s 4 -d 6 -p cbr -e 500 -c 1 -i 57 -a 1 r -t 0.49 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 52 -a 1 r -t 0.49 -s 4 -d 6 -p cbr -e 500 -c 1 -i 53 -a 1 + -t 0.49 -s 1 -d 3 -p cbr -e 500 -c 1 -i 83 -a 1 - -t 0.49 -s 1 -d 3 -p cbr -e 500 -c 1 -i 83 -a 1 h -t 0.49 -s 1 -d 3 -p cbr -e 500 -c 1 -i 83 -a 1 + -t 0.49 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 84 -a 1 - -t 0.49 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 84 -a 1 h -t 0.49 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 84 -a 1 r -t 0.494 -s 3 -d 4 -p cbr -e 500 -c 1 -i 59 -a 1 + -t 0.494 -s 4 -d 6 -p cbr -e 500 -c 1 -i 59 -a 1 r -t 0.494 -s 1 -d 3 -p cbr -e 500 -c 1 -i 79 -a 1 + -t 0.494 -s 3 -d 4 -p cbr -e 500 -c 1 -i 79 -a 1 - -t 0.494 -s 4 -d 6 -p cbr -e 500 -c 1 -i 59 -a 1 h -t 0.494 -s 4 -d 6 -p cbr -e 500 -c 1 -i 59 -a 1 - -t 0.496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 69 -a 1 h -t 0.496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 69 -a 1 r -t 0.498 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 80 -a 1 + -t 0.498 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 80 -a 1 + -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 85 -a 0 -S 0 -f 0 -m 0 -y {0 0} - -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 85 -a 0 -S 0 -y {0 0} h -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 85 -a 0 -S 0 -y {-1 -1} v -t 0.5 sim_annotation 0.5 4 TCP starts v -t 0.5 sim_annotation 0.5 5 Send Packet_0 : Initial window size = 1 + -t 0.5 -s 1 -d 3 -p cbr -e 500 -c 1 -i 86 -a 1 - -t 0.5 -s 1 -d 3 -p cbr -e 500 -c 1 -i 86 -a 1 h -t 0.5 -s 1 -d 3 -p cbr -e 500 -c 1 -i 86 -a 1 + -t 0.5 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 87 -a 1 - -t 0.5 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 87 -a 1 h -t 0.5 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 87 -a 1 - -t 0.5 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 70 -a 1 h -t 0.5 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 70 -a 1 r -t 0.502 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 54 -a 1 r -t 0.502 -s 4 -d 6 -p cbr -e 500 -c 1 -i 55 -a 1 r -t 0.502 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 60 -a 1 + -t 0.502 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 60 -a 1 - -t 0.502 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 60 -a 1 h -t 0.502 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 60 -a 1 r -t 0.504 -s 1 -d 3 -p cbr -e 500 -c 1 -i 81 -a 1 + -t 0.504 -s 3 -d 4 -p cbr -e 500 -c 1 -i 81 -a 1 r -t 0.506 -s 3 -d 4 -p cbr -e 500 -c 1 -i 61 -a 1 + -t 0.506 -s 4 -d 6 -p cbr -e 500 -c 1 -i 61 -a 1 - -t 0.506 -s 4 -d 6 -p cbr -e 500 -c 1 -i 61 -a 1 h -t 0.506 -s 4 -d 6 -p cbr -e 500 -c 1 -i 61 -a 1 r -t 0.508 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 82 -a 1 + -t 0.508 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 82 -a 1 d -t 0.508 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 82 -a 1 - -t 0.508 -s 3 -d 4 -p cbr -e 500 -c 1 -i 71 -a 1 h -t 0.508 -s 3 -d 4 -p cbr -e 500 -c 1 -i 71 -a 1 + -t 0.51 -s 1 -d 3 -p cbr -e 500 -c 1 -i 88 -a 1 - -t 0.51 -s 1 -d 3 -p cbr -e 500 -c 1 -i 88 -a 1 h -t 0.51 -s 1 -d 3 -p cbr -e 500 -c 1 -i 88 -a 1 - -t 0.512 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 72 -a 1 h -t 0.512 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 72 -a 1 r -t 0.514 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 56 -a 1 r -t 0.514 -s 4 -d 6 -p cbr -e 500 -c 1 -i 57 -a 1 r -t 0.514 -s 1 -d 3 -p cbr -e 500 -c 1 -i 83 -a 1 + -t 0.514 -s 3 -d 4 -p cbr -e 500 -c 1 -i 83 -a 1 r -t 0.514 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 62 -a 1 + -t 0.514 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 62 -a 1 - -t 0.514 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 62 -a 1 h -t 0.514 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 62 -a 1 r -t 0.518 -s 4 -d 6 -p cbr -e 500 -c 1 -i 59 -a 1 r -t 0.518 -s 3 -d 4 -p cbr -e 500 -c 1 -i 63 -a 1 + -t 0.518 -s 4 -d 6 -p cbr -e 500 -c 1 -i 63 -a 1 - -t 0.518 -s 4 -d 6 -p cbr -e 500 -c 1 -i 63 -a 1 h -t 0.518 -s 4 -d 6 -p cbr -e 500 -c 1 -i 63 -a 1 r -t 0.518 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 84 -a 1 + -t 0.518 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 84 -a 1 + -t 0.52 -s 1 -d 3 -p cbr -e 500 -c 1 -i 89 -a 1 - -t 0.52 -s 1 -d 3 -p cbr -e 500 -c 1 -i 89 -a 1 h -t 0.52 -s 1 -d 3 -p cbr -e 500 -c 1 -i 89 -a 1 + -t 0.52 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 90 -a 1 - -t 0.52 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 90 -a 1 h -t 0.52 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 90 -a 1 - -t 0.52 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 74 -a 1 h -t 0.52 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 74 -a 1 r -t 0.5216 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 85 -a 0 -S 0 -y {0 0} + -t 0.5216 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 85 -a 0 -S 0 -y {0 0} r -t 0.524 -s 1 -d 3 -p cbr -e 500 -c 1 -i 86 -a 1 + -t 0.524 -s 3 -d 4 -p cbr -e 500 -c 1 -i 86 -a 1 d -t 0.524 -s 3 -d 4 -p cbr -e 500 -c 1 -i 86 -a 1 r -t 0.526 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 64 -a 1 + -t 0.526 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 64 -a 1 - -t 0.526 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 64 -a 1 h -t 0.526 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 64 -a 1 r -t 0.528 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 87 -a 1 + -t 0.528 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 87 -a 1 d -t 0.528 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 87 -a 1 - -t 0.528 -s 3 -d 4 -p cbr -e 500 -c 1 -i 75 -a 1 h -t 0.528 -s 3 -d 4 -p cbr -e 500 -c 1 -i 75 -a 1 + -t 0.53 -s 1 -d 3 -p cbr -e 500 -c 1 -i 91 -a 1 - -t 0.53 -s 1 -d 3 -p cbr -e 500 -c 1 -i 91 -a 1 h -t 0.53 -s 1 -d 3 -p cbr -e 500 -c 1 -i 91 -a 1 r -t 0.53 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 60 -a 1 r -t 0.53 -s 4 -d 6 -p cbr -e 500 -c 1 -i 61 -a 1 - -t 0.532 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 76 -a 1 h -t 0.532 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 76 -a 1 r -t 0.534 -s 1 -d 3 -p cbr -e 500 -c 1 -i 88 -a 1 + -t 0.534 -s 3 -d 4 -p cbr -e 500 -c 1 -i 88 -a 1 r -t 0.534 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 66 -a 1 + -t 0.534 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 66 -a 1 - -t 0.534 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 66 -a 1 h -t 0.534 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 66 -a 1 r -t 0.538 -s 3 -d 4 -p cbr -e 500 -c 1 -i 67 -a 1 + -t 0.538 -s 4 -d 6 -p cbr -e 500 -c 1 -i 67 -a 1 - -t 0.538 -s 4 -d 6 -p cbr -e 500 -c 1 -i 67 -a 1 h -t 0.538 -s 4 -d 6 -p cbr -e 500 -c 1 -i 67 -a 1 + -t 0.54 -s 1 -d 3 -p cbr -e 500 -c 1 -i 92 -a 1 - -t 0.54 -s 1 -d 3 -p cbr -e 500 -c 1 -i 92 -a 1 h -t 0.54 -s 1 -d 3 -p cbr -e 500 -c 1 -i 92 -a 1 + -t 0.54 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 93 -a 1 - -t 0.54 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 93 -a 1 h -t 0.54 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 93 -a 1 - -t 0.54 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 78 -a 1 h -t 0.54 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 78 -a 1 r -t 0.542 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 62 -a 1 r -t 0.542 -s 4 -d 6 -p cbr -e 500 -c 1 -i 63 -a 1 r -t 0.544 -s 1 -d 3 -p cbr -e 500 -c 1 -i 89 -a 1 + -t 0.544 -s 3 -d 4 -p cbr -e 500 -c 1 -i 89 -a 1 r -t 0.546 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 68 -a 1 + -t 0.546 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 68 -a 1 - -t 0.546 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 68 -a 1 h -t 0.546 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 68 -a 1 r -t 0.548 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 90 -a 1 + -t 0.548 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 90 -a 1 - -t 0.548 -s 3 -d 4 -p cbr -e 500 -c 1 -i 79 -a 1 h -t 0.548 -s 3 -d 4 -p cbr -e 500 -c 1 -i 79 -a 1 + -t 0.55 -s 1 -d 3 -p cbr -e 500 -c 1 -i 94 -a 1 - -t 0.55 -s 1 -d 3 -p cbr -e 500 -c 1 -i 94 -a 1 h -t 0.55 -s 1 -d 3 -p cbr -e 500 -c 1 -i 94 -a 1 r -t 0.55 -s 3 -d 4 -p cbr -e 500 -c 1 -i 69 -a 1 + -t 0.55 -s 4 -d 6 -p cbr -e 500 -c 1 -i 69 -a 1 - -t 0.55 -s 4 -d 6 -p cbr -e 500 -c 1 -i 69 -a 1 h -t 0.55 -s 4 -d 6 -p cbr -e 500 -c 1 -i 69 -a 1 - -t 0.552 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 80 -a 1 h -t 0.552 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 80 -a 1 r -t 0.554 -s 1 -d 3 -p cbr -e 500 -c 1 -i 91 -a 1 + -t 0.554 -s 3 -d 4 -p cbr -e 500 -c 1 -i 91 -a 1 r -t 0.554 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 64 -a 1 r -t 0.558 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 70 -a 1 + -t 0.558 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 70 -a 1 - -t 0.558 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 70 -a 1 h -t 0.558 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 70 -a 1 + -t 0.56 -s 1 -d 3 -p cbr -e 500 -c 1 -i 95 -a 1 - -t 0.56 -s 1 -d 3 -p cbr -e 500 -c 1 -i 95 -a 1 h -t 0.56 -s 1 -d 3 -p cbr -e 500 -c 1 -i 95 -a 1 + -t 0.56 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 96 -a 1 - -t 0.56 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 96 -a 1 h -t 0.56 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 96 -a 1 - -t 0.56 -s 3 -d 4 -p cbr -e 500 -c 1 -i 81 -a 1 h -t 0.56 -s 3 -d 4 -p cbr -e 500 -c 1 -i 81 -a 1 r -t 0.562 -s 3 -d 4 -p cbr -e 500 -c 1 -i 71 -a 1 + -t 0.562 -s 4 -d 6 -p cbr -e 500 -c 1 -i 71 -a 1 - -t 0.562 -s 4 -d 6 -p cbr -e 500 -c 1 -i 71 -a 1 h -t 0.562 -s 4 -d 6 -p cbr -e 500 -c 1 -i 71 -a 1 r -t 0.562 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 66 -a 1 r -t 0.562 -s 4 -d 6 -p cbr -e 500 -c 1 -i 67 -a 1 r -t 0.564 -s 1 -d 3 -p cbr -e 500 -c 1 -i 92 -a 1 + -t 0.564 -s 3 -d 4 -p cbr -e 500 -c 1 -i 92 -a 1 - -t 0.564 -s 3 -d 4 -p cbr -e 500 -c 1 -i 83 -a 1 h -t 0.564 -s 3 -d 4 -p cbr -e 500 -c 1 -i 83 -a 1 r -t 0.568 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 93 -a 1 + -t 0.568 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 93 -a 1 - -t 0.568 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 84 -a 1 h -t 0.568 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 84 -a 1 + -t 0.57 -s 1 -d 3 -p cbr -e 500 -c 1 -i 97 -a 1 - -t 0.57 -s 1 -d 3 -p cbr -e 500 -c 1 -i 97 -a 1 h -t 0.57 -s 1 -d 3 -p cbr -e 500 -c 1 -i 97 -a 1 r -t 0.57 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 72 -a 1 + -t 0.57 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 72 -a 1 - -t 0.57 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 72 -a 1 h -t 0.57 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 72 -a 1 r -t 0.574 -s 1 -d 3 -p cbr -e 500 -c 1 -i 94 -a 1 + -t 0.574 -s 3 -d 4 -p cbr -e 500 -c 1 -i 94 -a 1 r -t 0.574 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 68 -a 1 r -t 0.574 -s 4 -d 6 -p cbr -e 500 -c 1 -i 69 -a 1 - -t 0.576 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 85 -a 0 -S 0 -y {0 0} h -t 0.576 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 85 -a 0 -S 0 -y {-1 -1} r -t 0.578 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 74 -a 1 + -t 0.578 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 74 -a 1 - -t 0.578 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 74 -a 1 h -t 0.578 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 74 -a 1 + -t 0.58 -s 1 -d 3 -p cbr -e 500 -c 1 -i 98 -a 1 - -t 0.58 -s 1 -d 3 -p cbr -e 500 -c 1 -i 98 -a 1 h -t 0.58 -s 1 -d 3 -p cbr -e 500 -c 1 -i 98 -a 1 + -t 0.58 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 99 -a 1 - -t 0.58 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 99 -a 1 h -t 0.58 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 99 -a 1 r -t 0.582 -s 3 -d 4 -p cbr -e 500 -c 1 -i 75 -a 1 + -t 0.582 -s 4 -d 6 -p cbr -e 500 -c 1 -i 75 -a 1 - -t 0.582 -s 4 -d 6 -p cbr -e 500 -c 1 -i 75 -a 1 h -t 0.582 -s 4 -d 6 -p cbr -e 500 -c 1 -i 75 -a 1 r -t 0.584 -s 1 -d 3 -p cbr -e 500 -c 1 -i 95 -a 1 + -t 0.584 -s 3 -d 4 -p cbr -e 500 -c 1 -i 95 -a 1 - -t 0.584 -s 3 -d 4 -p cbr -e 500 -c 1 -i 88 -a 1 h -t 0.584 -s 3 -d 4 -p cbr -e 500 -c 1 -i 88 -a 1 r -t 0.586 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 70 -a 1 r -t 0.586 -s 4 -d 6 -p cbr -e 500 -c 1 -i 71 -a 1 r -t 0.588 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 96 -a 1 + -t 0.588 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 96 -a 1 - -t 0.588 -s 3 -d 4 -p cbr -e 500 -c 1 -i 89 -a 1 h -t 0.588 -s 3 -d 4 -p cbr -e 500 -c 1 -i 89 -a 1 + -t 0.59 -s 1 -d 3 -p cbr -e 500 -c 1 -i 100 -a 1 - -t 0.59 -s 1 -d 3 -p cbr -e 500 -c 1 -i 100 -a 1 h -t 0.59 -s 1 -d 3 -p cbr -e 500 -c 1 -i 100 -a 1 r -t 0.59 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 76 -a 1 + -t 0.59 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 76 -a 1 - -t 0.59 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 76 -a 1 h -t 0.59 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 76 -a 1 - -t 0.592 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 90 -a 1 h -t 0.592 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 90 -a 1 r -t 0.594 -s 1 -d 3 -p cbr -e 500 -c 1 -i 97 -a 1 + -t 0.594 -s 3 -d 4 -p cbr -e 500 -c 1 -i 97 -a 1 r -t 0.598 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 78 -a 1 + -t 0.598 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 78 -a 1 r -t 0.598 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 72 -a 1 - -t 0.598 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 78 -a 1 h -t 0.598 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 78 -a 1 + -t 0.6 -s 1 -d 3 -p cbr -e 500 -c 1 -i 101 -a 1 - -t 0.6 -s 1 -d 3 -p cbr -e 500 -c 1 -i 101 -a 1 h -t 0.6 -s 1 -d 3 -p cbr -e 500 -c 1 -i 101 -a 1 + -t 0.6 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 102 -a 1 - -t 0.6 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 102 -a 1 h -t 0.6 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 102 -a 1 - -t 0.6 -s 3 -d 4 -p cbr -e 500 -c 1 -i 91 -a 1 h -t 0.6 -s 3 -d 4 -p cbr -e 500 -c 1 -i 91 -a 1 r -t 0.602 -s 3 -d 4 -p cbr -e 500 -c 1 -i 79 -a 1 + -t 0.602 -s 4 -d 6 -p cbr -e 500 -c 1 -i 79 -a 1 - -t 0.602 -s 4 -d 6 -p cbr -e 500 -c 1 -i 79 -a 1 h -t 0.602 -s 4 -d 6 -p cbr -e 500 -c 1 -i 79 -a 1 r -t 0.604 -s 1 -d 3 -p cbr -e 500 -c 1 -i 98 -a 1 + -t 0.604 -s 3 -d 4 -p cbr -e 500 -c 1 -i 98 -a 1 - -t 0.604 -s 3 -d 4 -p cbr -e 500 -c 1 -i 92 -a 1 h -t 0.604 -s 3 -d 4 -p cbr -e 500 -c 1 -i 92 -a 1 r -t 0.606 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 74 -a 1 r -t 0.606 -s 4 -d 6 -p cbr -e 500 -c 1 -i 75 -a 1 r -t 0.608 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 99 -a 1 + -t 0.608 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 99 -a 1 - -t 0.608 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 93 -a 1 h -t 0.608 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 93 -a 1 + -t 0.61 -s 1 -d 3 -p cbr -e 500 -c 1 -i 103 -a 1 - -t 0.61 -s 1 -d 3 -p cbr -e 500 -c 1 -i 103 -a 1 h -t 0.61 -s 1 -d 3 -p cbr -e 500 -c 1 -i 103 -a 1 r -t 0.61 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 80 -a 1 + -t 0.61 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 80 -a 1 - -t 0.61 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 80 -a 1 h -t 0.61 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 80 -a 1 r -t 0.614 -s 1 -d 3 -p cbr -e 500 -c 1 -i 100 -a 1 + -t 0.614 -s 3 -d 4 -p cbr -e 500 -c 1 -i 100 -a 1 r -t 0.614 -s 3 -d 4 -p cbr -e 500 -c 1 -i 81 -a 1 + -t 0.614 -s 4 -d 6 -p cbr -e 500 -c 1 -i 81 -a 1 - -t 0.614 -s 4 -d 6 -p cbr -e 500 -c 1 -i 81 -a 1 h -t 0.614 -s 4 -d 6 -p cbr -e 500 -c 1 -i 81 -a 1 - -t 0.616 -s 3 -d 4 -p cbr -e 500 -c 1 -i 94 -a 1 h -t 0.616 -s 3 -d 4 -p cbr -e 500 -c 1 -i 94 -a 1 r -t 0.618 -s 3 -d 4 -p cbr -e 500 -c 1 -i 83 -a 1 + -t 0.618 -s 4 -d 6 -p cbr -e 500 -c 1 -i 83 -a 1 r -t 0.618 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 76 -a 1 - -t 0.618 -s 4 -d 6 -p cbr -e 500 -c 1 -i 83 -a 1 h -t 0.618 -s 4 -d 6 -p cbr -e 500 -c 1 -i 83 -a 1 + -t 0.62 -s 1 -d 3 -p cbr -e 500 -c 1 -i 104 -a 1 - -t 0.62 -s 1 -d 3 -p cbr -e 500 -c 1 -i 104 -a 1 h -t 0.62 -s 1 -d 3 -p cbr -e 500 -c 1 -i 104 -a 1 + -t 0.62 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 105 -a 1 - -t 0.62 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 105 -a 1 h -t 0.62 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 105 -a 1 - -t 0.62 -s 3 -d 4 -p cbr -e 500 -c 1 -i 95 -a 1 h -t 0.62 -s 3 -d 4 -p cbr -e 500 -c 1 -i 95 -a 1 r -t 0.624 -s 1 -d 3 -p cbr -e 500 -c 1 -i 101 -a 1 + -t 0.624 -s 3 -d 4 -p cbr -e 500 -c 1 -i 101 -a 1 - -t 0.624 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 96 -a 1 h -t 0.624 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 96 -a 1 r -t 0.626 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 84 -a 1 + -t 0.626 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 84 -a 1 - -t 0.626 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 84 -a 1 h -t 0.626 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 84 -a 1 r -t 0.626 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 78 -a 1 r -t 0.626 -s 4 -d 6 -p cbr -e 500 -c 1 -i 79 -a 1 r -t 0.628 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 102 -a 1 + -t 0.628 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 102 -a 1 + -t 0.63 -s 1 -d 3 -p cbr -e 500 -c 1 -i 106 -a 1 - -t 0.63 -s 1 -d 3 -p cbr -e 500 -c 1 -i 106 -a 1 h -t 0.63 -s 1 -d 3 -p cbr -e 500 -c 1 -i 106 -a 1 - -t 0.632 -s 3 -d 4 -p cbr -e 500 -c 1 -i 97 -a 1 h -t 0.632 -s 3 -d 4 -p cbr -e 500 -c 1 -i 97 -a 1 r -t 0.634 -s 1 -d 3 -p cbr -e 500 -c 1 -i 103 -a 1 + -t 0.634 -s 3 -d 4 -p cbr -e 500 -c 1 -i 103 -a 1 r -t 0.634 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 85 -a 0 -S 0 -y {0 0} + -t 0.634 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 85 -a 0 -S 0 -y {0 0} - -t 0.634 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 85 -a 0 -S 0 -y {0 0} h -t 0.634 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 85 -a 0 -S 0 -y {-1 -1} - -t 0.636 -s 3 -d 4 -p cbr -e 500 -c 1 -i 98 -a 1 h -t 0.636 -s 3 -d 4 -p cbr -e 500 -c 1 -i 98 -a 1 r -t 0.638 -s 3 -d 4 -p cbr -e 500 -c 1 -i 88 -a 1 + -t 0.638 -s 4 -d 6 -p cbr -e 500 -c 1 -i 88 -a 1 - -t 0.638 -s 4 -d 6 -p cbr -e 500 -c 1 -i 88 -a 1 h -t 0.638 -s 4 -d 6 -p cbr -e 500 -c 1 -i 88 -a 1 r -t 0.638 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 80 -a 1 r -t 0.638 -s 4 -d 6 -p cbr -e 500 -c 1 -i 81 -a 1 + -t 0.64 -s 1 -d 3 -p cbr -e 500 -c 1 -i 107 -a 1 - -t 0.64 -s 1 -d 3 -p cbr -e 500 -c 1 -i 107 -a 1 h -t 0.64 -s 1 -d 3 -p cbr -e 500 -c 1 -i 107 -a 1 + -t 0.64 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 108 -a 1 - -t 0.64 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 108 -a 1 h -t 0.64 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 108 -a 1 - -t 0.64 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 99 -a 1 h -t 0.64 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 99 -a 1 r -t 0.642 -s 3 -d 4 -p cbr -e 500 -c 1 -i 89 -a 1 + -t 0.642 -s 4 -d 6 -p cbr -e 500 -c 1 -i 89 -a 1 r -t 0.642 -s 4 -d 6 -p cbr -e 500 -c 1 -i 83 -a 1 - -t 0.642 -s 4 -d 6 -p cbr -e 500 -c 1 -i 89 -a 1 h -t 0.642 -s 4 -d 6 -p cbr -e 500 -c 1 -i 89 -a 1 r -t 0.644 -s 1 -d 3 -p cbr -e 500 -c 1 -i 104 -a 1 + -t 0.644 -s 3 -d 4 -p cbr -e 500 -c 1 -i 104 -a 1 r -t 0.648 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 105 -a 1 + -t 0.648 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 105 -a 1 - -t 0.648 -s 3 -d 4 -p cbr -e 500 -c 1 -i 100 -a 1 h -t 0.648 -s 3 -d 4 -p cbr -e 500 -c 1 -i 100 -a 1 + -t 0.65 -s 1 -d 3 -p cbr -e 500 -c 1 -i 109 -a 1 - -t 0.65 -s 1 -d 3 -p cbr -e 500 -c 1 -i 109 -a 1 h -t 0.65 -s 1 -d 3 -p cbr -e 500 -c 1 -i 109 -a 1 r -t 0.65 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 90 -a 1 + -t 0.65 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 90 -a 1 - -t 0.65 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 90 -a 1 h -t 0.65 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 90 -a 1 - -t 0.652 -s 3 -d 4 -p cbr -e 500 -c 1 -i 101 -a 1 h -t 0.652 -s 3 -d 4 -p cbr -e 500 -c 1 -i 101 -a 1 r -t 0.654 -s 1 -d 3 -p cbr -e 500 -c 1 -i 106 -a 1 + -t 0.654 -s 3 -d 4 -p cbr -e 500 -c 1 -i 106 -a 1 r -t 0.654 -s 3 -d 4 -p cbr -e 500 -c 1 -i 91 -a 1 + -t 0.654 -s 4 -d 6 -p cbr -e 500 -c 1 -i 91 -a 1 - -t 0.654 -s 4 -d 6 -p cbr -e 500 -c 1 -i 91 -a 1 h -t 0.654 -s 4 -d 6 -p cbr -e 500 -c 1 -i 91 -a 1 r -t 0.654 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 84 -a 1 r -t 0.6556 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 85 -a 0 -S 0 -y {0 0} + -t 0.6556 -s 5 -d 4 -p ack -e 40 -c 0 -i 110 -a 0 -S 0 -y {0 0} - -t 0.6556 -s 5 -d 4 -p ack -e 40 -c 0 -i 110 -a 0 -S 0 -y {0 0} h -t 0.6556 -s 5 -d 4 -p ack -e 40 -c 0 -i 110 -a 0 -S 0 -y {-1 -1} - -t 0.656 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 102 -a 1 h -t 0.656 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 102 -a 1 r -t 0.658 -s 3 -d 4 -p cbr -e 500 -c 1 -i 92 -a 1 + -t 0.658 -s 4 -d 6 -p cbr -e 500 -c 1 -i 92 -a 1 - -t 0.658 -s 4 -d 6 -p cbr -e 500 -c 1 -i 92 -a 1 h -t 0.658 -s 4 -d 6 -p cbr -e 500 -c 1 -i 92 -a 1 v -t 0.66000000000000003 sim_annotation 0.66000000000000003 6 Ack_0 + -t 0.66 -s 1 -d 3 -p cbr -e 500 -c 1 -i 111 -a 1 - -t 0.66 -s 1 -d 3 -p cbr -e 500 -c 1 -i 111 -a 1 h -t 0.66 -s 1 -d 3 -p cbr -e 500 -c 1 -i 111 -a 1 + -t 0.66 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 112 -a 1 - -t 0.66 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 112 -a 1 h -t 0.66 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 112 -a 1 r -t 0.662 -s 4 -d 6 -p cbr -e 500 -c 1 -i 88 -a 1 r -t 0.664 -s 1 -d 3 -p cbr -e 500 -c 1 -i 107 -a 1 + -t 0.664 -s 3 -d 4 -p cbr -e 500 -c 1 -i 107 -a 1 - -t 0.664 -s 3 -d 4 -p cbr -e 500 -c 1 -i 103 -a 1 h -t 0.664 -s 3 -d 4 -p cbr -e 500 -c 1 -i 103 -a 1 r -t 0.666 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 93 -a 1 + -t 0.666 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 93 -a 1 - -t 0.666 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 93 -a 1 h -t 0.666 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 93 -a 1 r -t 0.666 -s 4 -d 6 -p cbr -e 500 -c 1 -i 89 -a 1 r -t 0.668 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 108 -a 1 + -t 0.668 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 108 -a 1 - -t 0.668 -s 3 -d 4 -p cbr -e 500 -c 1 -i 104 -a 1 h -t 0.668 -s 3 -d 4 -p cbr -e 500 -c 1 -i 104 -a 1 + -t 0.67 -s 1 -d 3 -p cbr -e 500 -c 1 -i 113 -a 1 - -t 0.67 -s 1 -d 3 -p cbr -e 500 -c 1 -i 113 -a 1 h -t 0.67 -s 1 -d 3 -p cbr -e 500 -c 1 -i 113 -a 1 r -t 0.67 -s 3 -d 4 -p cbr -e 500 -c 1 -i 94 -a 1 + -t 0.67 -s 4 -d 6 -p cbr -e 500 -c 1 -i 94 -a 1 - -t 0.67 -s 4 -d 6 -p cbr -e 500 -c 1 -i 94 -a 1 h -t 0.67 -s 4 -d 6 -p cbr -e 500 -c 1 -i 94 -a 1 - -t 0.672 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 105 -a 1 h -t 0.672 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 105 -a 1 r -t 0.674 -s 1 -d 3 -p cbr -e 500 -c 1 -i 109 -a 1 + -t 0.674 -s 3 -d 4 -p cbr -e 500 -c 1 -i 109 -a 1 r -t 0.674 -s 3 -d 4 -p cbr -e 500 -c 1 -i 95 -a 1 + -t 0.674 -s 4 -d 6 -p cbr -e 500 -c 1 -i 95 -a 1 - -t 0.674 -s 4 -d 6 -p cbr -e 500 -c 1 -i 95 -a 1 h -t 0.674 -s 4 -d 6 -p cbr -e 500 -c 1 -i 95 -a 1 r -t 0.675664 -s 5 -d 4 -p ack -e 40 -c 0 -i 110 -a 0 -S 0 -y {0 0} + -t 0.675664 -s 4 -d 3 -p ack -e 40 -c 0 -i 110 -a 0 -S 0 -y {0 0} - -t 0.675664 -s 4 -d 3 -p ack -e 40 -c 0 -i 110 -a 0 -S 0 -y {0 0} h -t 0.675664 -s 4 -d 3 -p ack -e 40 -c 0 -i 110 -a 0 -S 0 -y {-1 -1} r -t 0.678 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 90 -a 1 r -t 0.678 -s 4 -d 6 -p cbr -e 500 -c 1 -i 91 -a 1 + -t 0.68 -s 1 -d 3 -p cbr -e 500 -c 1 -i 114 -a 1 - -t 0.68 -s 1 -d 3 -p cbr -e 500 -c 1 -i 114 -a 1 h -t 0.68 -s 1 -d 3 -p cbr -e 500 -c 1 -i 114 -a 1 + -t 0.68 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 115 -a 1 - -t 0.68 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 115 -a 1 h -t 0.68 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 115 -a 1 - -t 0.68 -s 3 -d 4 -p cbr -e 500 -c 1 -i 106 -a 1 h -t 0.68 -s 3 -d 4 -p cbr -e 500 -c 1 -i 106 -a 1 r -t 0.682 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 96 -a 1 + -t 0.682 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 96 -a 1 - -t 0.682 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 96 -a 1 h -t 0.682 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 96 -a 1 r -t 0.682 -s 4 -d 6 -p cbr -e 500 -c 1 -i 92 -a 1 r -t 0.684 -s 1 -d 3 -p cbr -e 500 -c 1 -i 111 -a 1 + -t 0.684 -s 3 -d 4 -p cbr -e 500 -c 1 -i 111 -a 1 - -t 0.684 -s 3 -d 4 -p cbr -e 500 -c 1 -i 107 -a 1 h -t 0.684 -s 3 -d 4 -p cbr -e 500 -c 1 -i 107 -a 1 r -t 0.686 -s 3 -d 4 -p cbr -e 500 -c 1 -i 97 -a 1 + -t 0.686 -s 4 -d 6 -p cbr -e 500 -c 1 -i 97 -a 1 - -t 0.686 -s 4 -d 6 -p cbr -e 500 -c 1 -i 97 -a 1 h -t 0.686 -s 4 -d 6 -p cbr -e 500 -c 1 -i 97 -a 1 r -t 0.688 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 112 -a 1 + -t 0.688 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 112 -a 1 - -t 0.688 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 108 -a 1 h -t 0.688 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 108 -a 1 + -t 0.69 -s 1 -d 3 -p cbr -e 500 -c 1 -i 116 -a 1 - -t 0.69 -s 1 -d 3 -p cbr -e 500 -c 1 -i 116 -a 1 h -t 0.69 -s 1 -d 3 -p cbr -e 500 -c 1 -i 116 -a 1 r -t 0.69 -s 3 -d 4 -p cbr -e 500 -c 1 -i 98 -a 1 + -t 0.69 -s 4 -d 6 -p cbr -e 500 -c 1 -i 98 -a 1 - -t 0.69 -s 4 -d 6 -p cbr -e 500 -c 1 -i 98 -a 1 h -t 0.69 -s 4 -d 6 -p cbr -e 500 -c 1 -i 98 -a 1 r -t 0.694 -s 1 -d 3 -p cbr -e 500 -c 1 -i 113 -a 1 + -t 0.694 -s 3 -d 4 -p cbr -e 500 -c 1 -i 113 -a 1 r -t 0.694 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 93 -a 1 r -t 0.694 -s 4 -d 6 -p cbr -e 500 -c 1 -i 94 -a 1 - -t 0.696 -s 3 -d 4 -p cbr -e 500 -c 1 -i 109 -a 1 h -t 0.696 -s 3 -d 4 -p cbr -e 500 -c 1 -i 109 -a 1 r -t 0.698 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 99 -a 1 + -t 0.698 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 99 -a 1 - -t 0.698 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 99 -a 1 h -t 0.698 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 99 -a 1 r -t 0.698 -s 4 -d 6 -p cbr -e 500 -c 1 -i 95 -a 1 + -t 0.7 -s 1 -d 3 -p cbr -e 500 -c 1 -i 117 -a 1 - -t 0.7 -s 1 -d 3 -p cbr -e 500 -c 1 -i 117 -a 1 h -t 0.7 -s 1 -d 3 -p cbr -e 500 -c 1 -i 117 -a 1 + -t 0.7 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 118 -a 1 - -t 0.7 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 118 -a 1 h -t 0.7 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 118 -a 1 - -t 0.7 -s 3 -d 4 -p cbr -e 500 -c 1 -i 111 -a 1 h -t 0.7 -s 3 -d 4 -p cbr -e 500 -c 1 -i 111 -a 1 r -t 0.702 -s 3 -d 4 -p cbr -e 500 -c 1 -i 100 -a 1 + -t 0.702 -s 4 -d 6 -p cbr -e 500 -c 1 -i 100 -a 1 - -t 0.702 -s 4 -d 6 -p cbr -e 500 -c 1 -i 100 -a 1 h -t 0.702 -s 4 -d 6 -p cbr -e 500 -c 1 -i 100 -a 1 r -t 0.704 -s 1 -d 3 -p cbr -e 500 -c 1 -i 114 -a 1 + -t 0.704 -s 3 -d 4 -p cbr -e 500 -c 1 -i 114 -a 1 - -t 0.704 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 112 -a 1 h -t 0.704 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 112 -a 1 r -t 0.706 -s 3 -d 4 -p cbr -e 500 -c 1 -i 101 -a 1 + -t 0.706 -s 4 -d 6 -p cbr -e 500 -c 1 -i 101 -a 1 - -t 0.706 -s 4 -d 6 -p cbr -e 500 -c 1 -i 101 -a 1 h -t 0.706 -s 4 -d 6 -p cbr -e 500 -c 1 -i 101 -a 1 r -t 0.708 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 115 -a 1 + -t 0.708 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 115 -a 1 + -t 0.71 -s 1 -d 3 -p cbr -e 500 -c 1 -i 119 -a 1 - -t 0.71 -s 1 -d 3 -p cbr -e 500 -c 1 -i 119 -a 1 h -t 0.71 -s 1 -d 3 -p cbr -e 500 -c 1 -i 119 -a 1 r -t 0.71 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 96 -a 1 r -t 0.71 -s 4 -d 6 -p cbr -e 500 -c 1 -i 97 -a 1 - -t 0.712 -s 3 -d 4 -p cbr -e 500 -c 1 -i 113 -a 1 h -t 0.712 -s 3 -d 4 -p cbr -e 500 -c 1 -i 113 -a 1 r -t 0.714 -s 1 -d 3 -p cbr -e 500 -c 1 -i 116 -a 1 + -t 0.714 -s 3 -d 4 -p cbr -e 500 -c 1 -i 116 -a 1 r -t 0.714 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 102 -a 1 + -t 0.714 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 102 -a 1 - -t 0.714 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 102 -a 1 h -t 0.714 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 102 -a 1 r -t 0.714 -s 4 -d 6 -p cbr -e 500 -c 1 -i 98 -a 1 - -t 0.716 -s 3 -d 4 -p cbr -e 500 -c 1 -i 114 -a 1 h -t 0.716 -s 3 -d 4 -p cbr -e 500 -c 1 -i 114 -a 1 r -t 0.718 -s 3 -d 4 -p cbr -e 500 -c 1 -i 103 -a 1 + -t 0.718 -s 4 -d 6 -p cbr -e 500 -c 1 -i 103 -a 1 - -t 0.718 -s 4 -d 6 -p cbr -e 500 -c 1 -i 103 -a 1 h -t 0.718 -s 4 -d 6 -p cbr -e 500 -c 1 -i 103 -a 1 + -t 0.72 -s 1 -d 3 -p cbr -e 500 -c 1 -i 120 -a 1 - -t 0.72 -s 1 -d 3 -p cbr -e 500 -c 1 -i 120 -a 1 h -t 0.72 -s 1 -d 3 -p cbr -e 500 -c 1 -i 120 -a 1 + -t 0.72 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 121 -a 1 - -t 0.72 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 121 -a 1 h -t 0.72 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 121 -a 1 - -t 0.72 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 115 -a 1 h -t 0.72 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 115 -a 1 r -t 0.722 -s 3 -d 4 -p cbr -e 500 -c 1 -i 104 -a 1 + -t 0.722 -s 4 -d 6 -p cbr -e 500 -c 1 -i 104 -a 1 - -t 0.722 -s 4 -d 6 -p cbr -e 500 -c 1 -i 104 -a 1 h -t 0.722 -s 4 -d 6 -p cbr -e 500 -c 1 -i 104 -a 1 r -t 0.724 -s 1 -d 3 -p cbr -e 500 -c 1 -i 117 -a 1 + -t 0.724 -s 3 -d 4 -p cbr -e 500 -c 1 -i 117 -a 1 r -t 0.725984 -s 4 -d 3 -p ack -e 40 -c 0 -i 110 -a 0 -S 0 -y {0 0} + -t 0.725984 -s 3 -d 0 -p ack -e 40 -c 0 -i 110 -a 0 -S 0 -y {0 0} - -t 0.725984 -s 3 -d 0 -p ack -e 40 -c 0 -i 110 -a 0 -S 0 -f 0 -m 1 -y {0 0} h -t 0.725984 -s 3 -d 0 -p ack -e 40 -c 0 -i 110 -a 0 -S 0 -y {-1 -1} r -t 0.726 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 99 -a 1 r -t 0.726 -s 4 -d 6 -p cbr -e 500 -c 1 -i 100 -a 1 r -t 0.728 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 118 -a 1 + -t 0.728 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 118 -a 1 - -t 0.728 -s 3 -d 4 -p cbr -e 500 -c 1 -i 116 -a 1 h -t 0.728 -s 3 -d 4 -p cbr -e 500 -c 1 -i 116 -a 1 + -t 0.73 -s 1 -d 3 -p cbr -e 500 -c 1 -i 122 -a 1 - -t 0.73 -s 1 -d 3 -p cbr -e 500 -c 1 -i 122 -a 1 h -t 0.73 -s 1 -d 3 -p cbr -e 500 -c 1 -i 122 -a 1 r -t 0.73 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 105 -a 1 + -t 0.73 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 105 -a 1 - -t 0.73 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 105 -a 1 h -t 0.73 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 105 -a 1 r -t 0.73 -s 4 -d 6 -p cbr -e 500 -c 1 -i 101 -a 1 - -t 0.732 -s 3 -d 4 -p cbr -e 500 -c 1 -i 117 -a 1 h -t 0.732 -s 3 -d 4 -p cbr -e 500 -c 1 -i 117 -a 1 r -t 0.734 -s 1 -d 3 -p cbr -e 500 -c 1 -i 119 -a 1 + -t 0.734 -s 3 -d 4 -p cbr -e 500 -c 1 -i 119 -a 1 r -t 0.734 -s 3 -d 4 -p cbr -e 500 -c 1 -i 106 -a 1 + -t 0.734 -s 4 -d 6 -p cbr -e 500 -c 1 -i 106 -a 1 - -t 0.734 -s 4 -d 6 -p cbr -e 500 -c 1 -i 106 -a 1 h -t 0.734 -s 4 -d 6 -p cbr -e 500 -c 1 -i 106 -a 1 - -t 0.736 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 118 -a 1 h -t 0.736 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 118 -a 1 r -t 0.738 -s 3 -d 4 -p cbr -e 500 -c 1 -i 107 -a 1 + -t 0.738 -s 4 -d 6 -p cbr -e 500 -c 1 -i 107 -a 1 - -t 0.738 -s 4 -d 6 -p cbr -e 500 -c 1 -i 107 -a 1 h -t 0.738 -s 4 -d 6 -p cbr -e 500 -c 1 -i 107 -a 1 + -t 0.74 -s 1 -d 3 -p cbr -e 500 -c 1 -i 123 -a 1 - -t 0.74 -s 1 -d 3 -p cbr -e 500 -c 1 -i 123 -a 1 h -t 0.74 -s 1 -d 3 -p cbr -e 500 -c 1 -i 123 -a 1 + -t 0.74 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 124 -a 1 - -t 0.74 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 124 -a 1 h -t 0.74 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 124 -a 1 r -t 0.742 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 102 -a 1 r -t 0.742 -s 4 -d 6 -p cbr -e 500 -c 1 -i 103 -a 1 r -t 0.744 -s 1 -d 3 -p cbr -e 500 -c 1 -i 120 -a 1 + -t 0.744 -s 3 -d 4 -p cbr -e 500 -c 1 -i 120 -a 1 - -t 0.744 -s 3 -d 4 -p cbr -e 500 -c 1 -i 119 -a 1 h -t 0.744 -s 3 -d 4 -p cbr -e 500 -c 1 -i 119 -a 1 r -t 0.746 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 108 -a 1 + -t 0.746 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 108 -a 1 - -t 0.746 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 108 -a 1 h -t 0.746 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 108 -a 1 r -t 0.746 -s 4 -d 6 -p cbr -e 500 -c 1 -i 104 -a 1 r -t 0.746048 -s 3 -d 0 -p ack -e 40 -c 0 -i 110 -a 0 -S 0 -y {0 0} f -t 0.74604800000000038 -s 0 -d 5 -n cwnd_ -a tcp -v 2.000000 -o 1.000000 -T v + -t 0.746048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 125 -a 0 -S 0 -f 0 -m 0 -y {1 1} - -t 0.746048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 125 -a 0 -S 0 -y {1 1} h -t 0.746048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 125 -a 0 -S 0 -y {-1 -1} + -t 0.746048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 126 -a 0 -S 0 -f 0 -m 0 -y {2 2} - -t 0.747648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 126 -a 0 -S 0 -y {2 2} h -t 0.747648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 126 -a 0 -S 0 -y {-1 -1} r -t 0.748 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 121 -a 1 + -t 0.748 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 121 -a 1 - -t 0.748 -s 3 -d 4 -p cbr -e 500 -c 1 -i 120 -a 1 h -t 0.748 -s 3 -d 4 -p cbr -e 500 -c 1 -i 120 -a 1 v -t 0.75 sim_annotation 0.75 7 Send Packet_1,2 : Increase window size to 2 + -t 0.75 -s 1 -d 3 -p cbr -e 500 -c 1 -i 127 -a 1 - -t 0.75 -s 1 -d 3 -p cbr -e 500 -c 1 -i 127 -a 1 h -t 0.75 -s 1 -d 3 -p cbr -e 500 -c 1 -i 127 -a 1 r -t 0.75 -s 3 -d 4 -p cbr -e 500 -c 1 -i 109 -a 1 + -t 0.75 -s 4 -d 6 -p cbr -e 500 -c 1 -i 109 -a 1 - -t 0.75 -s 4 -d 6 -p cbr -e 500 -c 1 -i 109 -a 1 h -t 0.75 -s 4 -d 6 -p cbr -e 500 -c 1 -i 109 -a 1 - -t 0.752 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 121 -a 1 h -t 0.752 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 121 -a 1 r -t 0.754 -s 1 -d 3 -p cbr -e 500 -c 1 -i 122 -a 1 + -t 0.754 -s 3 -d 4 -p cbr -e 500 -c 1 -i 122 -a 1 r -t 0.754 -s 3 -d 4 -p cbr -e 500 -c 1 -i 111 -a 1 + -t 0.754 -s 4 -d 6 -p cbr -e 500 -c 1 -i 111 -a 1 - -t 0.754 -s 4 -d 6 -p cbr -e 500 -c 1 -i 111 -a 1 h -t 0.754 -s 4 -d 6 -p cbr -e 500 -c 1 -i 111 -a 1 r -t 0.758 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 105 -a 1 r -t 0.758 -s 4 -d 6 -p cbr -e 500 -c 1 -i 106 -a 1 + -t 0.76 -s 1 -d 3 -p cbr -e 500 -c 1 -i 128 -a 1 - -t 0.76 -s 1 -d 3 -p cbr -e 500 -c 1 -i 128 -a 1 h -t 0.76 -s 1 -d 3 -p cbr -e 500 -c 1 -i 128 -a 1 + -t 0.76 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 129 -a 1 - -t 0.76 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 129 -a 1 h -t 0.76 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 129 -a 1 - -t 0.76 -s 3 -d 4 -p cbr -e 500 -c 1 -i 122 -a 1 h -t 0.76 -s 3 -d 4 -p cbr -e 500 -c 1 -i 122 -a 1 r -t 0.762 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 112 -a 1 + -t 0.762 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 112 -a 1 - -t 0.762 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 112 -a 1 h -t 0.762 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 112 -a 1 r -t 0.762 -s 4 -d 6 -p cbr -e 500 -c 1 -i 107 -a 1 r -t 0.764 -s 1 -d 3 -p cbr -e 500 -c 1 -i 123 -a 1 + -t 0.764 -s 3 -d 4 -p cbr -e 500 -c 1 -i 123 -a 1 - -t 0.764 -s 3 -d 4 -p cbr -e 500 -c 1 -i 123 -a 1 h -t 0.764 -s 3 -d 4 -p cbr -e 500 -c 1 -i 123 -a 1 r -t 0.766 -s 3 -d 4 -p cbr -e 500 -c 1 -i 113 -a 1 + -t 0.766 -s 4 -d 6 -p cbr -e 500 -c 1 -i 113 -a 1 - -t 0.766 -s 4 -d 6 -p cbr -e 500 -c 1 -i 113 -a 1 h -t 0.766 -s 4 -d 6 -p cbr -e 500 -c 1 -i 113 -a 1 r -t 0.767648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 125 -a 0 -S 0 -y {1 1} + -t 0.767648 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 125 -a 0 -S 0 -y {1 1} r -t 0.768 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 124 -a 1 + -t 0.768 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 124 -a 1 - -t 0.768 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 125 -a 0 -S 0 -y {1 1} h -t 0.768 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 125 -a 0 -S 0 -y {-1 -1} r -t 0.769248 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 126 -a 0 -S 0 -y {2 2} + -t 0.769248 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 126 -a 0 -S 0 -y {2 2} + -t 0.77 -s 1 -d 3 -p cbr -e 500 -c 1 -i 130 -a 1 - -t 0.77 -s 1 -d 3 -p cbr -e 500 -c 1 -i 130 -a 1 h -t 0.77 -s 1 -d 3 -p cbr -e 500 -c 1 -i 130 -a 1 r -t 0.77 -s 3 -d 4 -p cbr -e 500 -c 1 -i 114 -a 1 + -t 0.77 -s 4 -d 6 -p cbr -e 500 -c 1 -i 114 -a 1 - -t 0.77 -s 4 -d 6 -p cbr -e 500 -c 1 -i 114 -a 1 h -t 0.77 -s 4 -d 6 -p cbr -e 500 -c 1 -i 114 -a 1 r -t 0.774 -s 1 -d 3 -p cbr -e 500 -c 1 -i 127 -a 1 + -t 0.774 -s 3 -d 4 -p cbr -e 500 -c 1 -i 127 -a 1 r -t 0.774 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 108 -a 1 r -t 0.774 -s 4 -d 6 -p cbr -e 500 -c 1 -i 109 -a 1 - -t 0.776 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 124 -a 1 h -t 0.776 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 124 -a 1 r -t 0.778 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 115 -a 1 + -t 0.778 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 115 -a 1 - -t 0.778 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 115 -a 1 h -t 0.778 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 115 -a 1 r -t 0.778 -s 4 -d 6 -p cbr -e 500 -c 1 -i 111 -a 1 + -t 0.78 -s 1 -d 3 -p cbr -e 500 -c 1 -i 131 -a 1 - -t 0.78 -s 1 -d 3 -p cbr -e 500 -c 1 -i 131 -a 1 h -t 0.78 -s 1 -d 3 -p cbr -e 500 -c 1 -i 131 -a 1 + -t 0.78 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 132 -a 1 - -t 0.78 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 132 -a 1 h -t 0.78 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 132 -a 1 r -t 0.782 -s 3 -d 4 -p cbr -e 500 -c 1 -i 116 -a 1 + -t 0.782 -s 4 -d 6 -p cbr -e 500 -c 1 -i 116 -a 1 - -t 0.782 -s 4 -d 6 -p cbr -e 500 -c 1 -i 116 -a 1 h -t 0.782 -s 4 -d 6 -p cbr -e 500 -c 1 -i 116 -a 1 r -t 0.784 -s 1 -d 3 -p cbr -e 500 -c 1 -i 128 -a 1 + -t 0.784 -s 3 -d 4 -p cbr -e 500 -c 1 -i 128 -a 1 - -t 0.784 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 126 -a 0 -S 0 -y {2 2} h -t 0.784 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 126 -a 0 -S 0 -y {-1 -1} r -t 0.786 -s 3 -d 4 -p cbr -e 500 -c 1 -i 117 -a 1 + -t 0.786 -s 4 -d 6 -p cbr -e 500 -c 1 -i 117 -a 1 - -t 0.786 -s 4 -d 6 -p cbr -e 500 -c 1 -i 117 -a 1 h -t 0.786 -s 4 -d 6 -p cbr -e 500 -c 1 -i 117 -a 1 r -t 0.788 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 129 -a 1 + -t 0.788 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 129 -a 1 + -t 0.79 -s 1 -d 3 -p cbr -e 500 -c 1 -i 133 -a 1 - -t 0.79 -s 1 -d 3 -p cbr -e 500 -c 1 -i 133 -a 1 h -t 0.79 -s 1 -d 3 -p cbr -e 500 -c 1 -i 133 -a 1 r -t 0.79 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 112 -a 1 r -t 0.79 -s 4 -d 6 -p cbr -e 500 -c 1 -i 113 -a 1 - -t 0.792 -s 3 -d 4 -p cbr -e 500 -c 1 -i 127 -a 1 h -t 0.792 -s 3 -d 4 -p cbr -e 500 -c 1 -i 127 -a 1 r -t 0.794 -s 1 -d 3 -p cbr -e 500 -c 1 -i 130 -a 1 + -t 0.794 -s 3 -d 4 -p cbr -e 500 -c 1 -i 130 -a 1 r -t 0.794 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 118 -a 1 + -t 0.794 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 118 -a 1 - -t 0.794 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 118 -a 1 h -t 0.794 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 118 -a 1 r -t 0.794 -s 4 -d 6 -p cbr -e 500 -c 1 -i 114 -a 1 - -t 0.796 -s 3 -d 4 -p cbr -e 500 -c 1 -i 128 -a 1 h -t 0.796 -s 3 -d 4 -p cbr -e 500 -c 1 -i 128 -a 1 r -t 0.798 -s 3 -d 4 -p cbr -e 500 -c 1 -i 119 -a 1 + -t 0.798 -s 4 -d 6 -p cbr -e 500 -c 1 -i 119 -a 1 - -t 0.798 -s 4 -d 6 -p cbr -e 500 -c 1 -i 119 -a 1 h -t 0.798 -s 4 -d 6 -p cbr -e 500 -c 1 -i 119 -a 1 + -t 0.8 -s 1 -d 3 -p cbr -e 500 -c 1 -i 134 -a 1 - -t 0.8 -s 1 -d 3 -p cbr -e 500 -c 1 -i 134 -a 1 h -t 0.8 -s 1 -d 3 -p cbr -e 500 -c 1 -i 134 -a 1 + -t 0.8 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 135 -a 1 - -t 0.8 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 135 -a 1 h -t 0.8 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 135 -a 1 - -t 0.8 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 129 -a 1 h -t 0.8 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 129 -a 1 r -t 0.802 -s 3 -d 4 -p cbr -e 500 -c 1 -i 120 -a 1 + -t 0.802 -s 4 -d 6 -p cbr -e 500 -c 1 -i 120 -a 1 - -t 0.802 -s 4 -d 6 -p cbr -e 500 -c 1 -i 120 -a 1 h -t 0.802 -s 4 -d 6 -p cbr -e 500 -c 1 -i 120 -a 1 r -t 0.804 -s 1 -d 3 -p cbr -e 500 -c 1 -i 131 -a 1 + -t 0.804 -s 3 -d 4 -p cbr -e 500 -c 1 -i 131 -a 1 r -t 0.806 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 115 -a 1 r -t 0.806 -s 4 -d 6 -p cbr -e 500 -c 1 -i 116 -a 1 r -t 0.808 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 132 -a 1 + -t 0.808 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 132 -a 1 - -t 0.808 -s 3 -d 4 -p cbr -e 500 -c 1 -i 130 -a 1 h -t 0.808 -s 3 -d 4 -p cbr -e 500 -c 1 -i 130 -a 1 + -t 0.81 -s 1 -d 3 -p cbr -e 500 -c 1 -i 136 -a 1 - -t 0.81 -s 1 -d 3 -p cbr -e 500 -c 1 -i 136 -a 1 h -t 0.81 -s 1 -d 3 -p cbr -e 500 -c 1 -i 136 -a 1 r -t 0.81 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 121 -a 1 + -t 0.81 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 121 -a 1 - -t 0.81 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 121 -a 1 h -t 0.81 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 121 -a 1 r -t 0.81 -s 4 -d 6 -p cbr -e 500 -c 1 -i 117 -a 1 - -t 0.812 -s 3 -d 4 -p cbr -e 500 -c 1 -i 131 -a 1 h -t 0.812 -s 3 -d 4 -p cbr -e 500 -c 1 -i 131 -a 1 r -t 0.814 -s 1 -d 3 -p cbr -e 500 -c 1 -i 133 -a 1 + -t 0.814 -s 3 -d 4 -p cbr -e 500 -c 1 -i 133 -a 1 r -t 0.814 -s 3 -d 4 -p cbr -e 500 -c 1 -i 122 -a 1 + -t 0.814 -s 4 -d 6 -p cbr -e 500 -c 1 -i 122 -a 1 - -t 0.814 -s 4 -d 6 -p cbr -e 500 -c 1 -i 122 -a 1 h -t 0.814 -s 4 -d 6 -p cbr -e 500 -c 1 -i 122 -a 1 - -t 0.816 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 132 -a 1 h -t 0.816 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 132 -a 1 r -t 0.818 -s 3 -d 4 -p cbr -e 500 -c 1 -i 123 -a 1 + -t 0.818 -s 4 -d 6 -p cbr -e 500 -c 1 -i 123 -a 1 - -t 0.818 -s 4 -d 6 -p cbr -e 500 -c 1 -i 123 -a 1 h -t 0.818 -s 4 -d 6 -p cbr -e 500 -c 1 -i 123 -a 1 + -t 0.82 -s 1 -d 3 -p cbr -e 500 -c 1 -i 137 -a 1 - -t 0.82 -s 1 -d 3 -p cbr -e 500 -c 1 -i 137 -a 1 h -t 0.82 -s 1 -d 3 -p cbr -e 500 -c 1 -i 137 -a 1 + -t 0.82 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 138 -a 1 - -t 0.82 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 138 -a 1 h -t 0.82 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 138 -a 1 r -t 0.822 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 118 -a 1 r -t 0.822 -s 4 -d 6 -p cbr -e 500 -c 1 -i 119 -a 1 r -t 0.824 -s 1 -d 3 -p cbr -e 500 -c 1 -i 134 -a 1 + -t 0.824 -s 3 -d 4 -p cbr -e 500 -c 1 -i 134 -a 1 - -t 0.824 -s 3 -d 4 -p cbr -e 500 -c 1 -i 133 -a 1 h -t 0.824 -s 3 -d 4 -p cbr -e 500 -c 1 -i 133 -a 1 r -t 0.826 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 125 -a 0 -S 0 -y {1 1} + -t 0.826 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 125 -a 0 -S 0 -y {1 1} - -t 0.826 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 125 -a 0 -S 0 -y {1 1} h -t 0.826 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 125 -a 0 -S 0 -y {-1 -1} r -t 0.826 -s 4 -d 6 -p cbr -e 500 -c 1 -i 120 -a 1 r -t 0.828 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 135 -a 1 + -t 0.828 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 135 -a 1 - -t 0.828 -s 3 -d 4 -p cbr -e 500 -c 1 -i 134 -a 1 h -t 0.828 -s 3 -d 4 -p cbr -e 500 -c 1 -i 134 -a 1 + -t 0.83 -s 1 -d 3 -p cbr -e 500 -c 1 -i 139 -a 1 - -t 0.83 -s 1 -d 3 -p cbr -e 500 -c 1 -i 139 -a 1 h -t 0.83 -s 1 -d 3 -p cbr -e 500 -c 1 -i 139 -a 1 - -t 0.832 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 135 -a 1 h -t 0.832 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 135 -a 1 r -t 0.834 -s 1 -d 3 -p cbr -e 500 -c 1 -i 136 -a 1 + -t 0.834 -s 3 -d 4 -p cbr -e 500 -c 1 -i 136 -a 1 r -t 0.834 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 124 -a 1 + -t 0.834 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 124 -a 1 - -t 0.834 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 124 -a 1 h -t 0.834 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 124 -a 1 r -t 0.838 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 121 -a 1 r -t 0.838 -s 4 -d 6 -p cbr -e 500 -c 1 -i 122 -a 1 + -t 0.84 -s 1 -d 3 -p cbr -e 500 -c 1 -i 140 -a 1 - -t 0.84 -s 1 -d 3 -p cbr -e 500 -c 1 -i 140 -a 1 h -t 0.84 -s 1 -d 3 -p cbr -e 500 -c 1 -i 140 -a 1 + -t 0.84 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 141 -a 1 - -t 0.84 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 141 -a 1 h -t 0.84 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 141 -a 1 - -t 0.84 -s 3 -d 4 -p cbr -e 500 -c 1 -i 136 -a 1 h -t 0.84 -s 3 -d 4 -p cbr -e 500 -c 1 -i 136 -a 1 r -t 0.842 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 126 -a 0 -S 0 -y {2 2} + -t 0.842 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 126 -a 0 -S 0 -y {2 2} - -t 0.842 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 126 -a 0 -S 0 -y {2 2} h -t 0.842 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 126 -a 0 -S 0 -y {-1 -1} r -t 0.842 -s 4 -d 6 -p cbr -e 500 -c 1 -i 123 -a 1 r -t 0.844 -s 1 -d 3 -p cbr -e 500 -c 1 -i 137 -a 1 + -t 0.844 -s 3 -d 4 -p cbr -e 500 -c 1 -i 137 -a 1 - -t 0.844 -s 3 -d 4 -p cbr -e 500 -c 1 -i 137 -a 1 h -t 0.844 -s 3 -d 4 -p cbr -e 500 -c 1 -i 137 -a 1 r -t 0.846 -s 3 -d 4 -p cbr -e 500 -c 1 -i 127 -a 1 + -t 0.846 -s 4 -d 6 -p cbr -e 500 -c 1 -i 127 -a 1 - -t 0.846 -s 4 -d 6 -p cbr -e 500 -c 1 -i 127 -a 1 h -t 0.846 -s 4 -d 6 -p cbr -e 500 -c 1 -i 127 -a 1 r -t 0.8476 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 125 -a 0 -S 0 -y {1 1} + -t 0.8476 -s 5 -d 4 -p ack -e 40 -c 0 -i 142 -a 0 -S 0 -y {1 1} - -t 0.8476 -s 5 -d 4 -p ack -e 40 -c 0 -i 142 -a 0 -S 0 -y {1 1} h -t 0.8476 -s 5 -d 4 -p ack -e 40 -c 0 -i 142 -a 0 -S 0 -y {-1 -1} r -t 0.848 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 138 -a 1 + -t 0.848 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 138 -a 1 - -t 0.848 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 138 -a 1 h -t 0.848 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 138 -a 1 + -t 0.85 -s 1 -d 3 -p cbr -e 500 -c 1 -i 143 -a 1 - -t 0.85 -s 1 -d 3 -p cbr -e 500 -c 1 -i 143 -a 1 h -t 0.85 -s 1 -d 3 -p cbr -e 500 -c 1 -i 143 -a 1 r -t 0.85 -s 3 -d 4 -p cbr -e 500 -c 1 -i 128 -a 1 + -t 0.85 -s 4 -d 6 -p cbr -e 500 -c 1 -i 128 -a 1 - -t 0.85 -s 4 -d 6 -p cbr -e 500 -c 1 -i 128 -a 1 h -t 0.85 -s 4 -d 6 -p cbr -e 500 -c 1 -i 128 -a 1 r -t 0.854 -s 1 -d 3 -p cbr -e 500 -c 1 -i 139 -a 1 + -t 0.854 -s 3 -d 4 -p cbr -e 500 -c 1 -i 139 -a 1 - -t 0.856 -s 3 -d 4 -p cbr -e 500 -c 1 -i 139 -a 1 h -t 0.856 -s 3 -d 4 -p cbr -e 500 -c 1 -i 139 -a 1 r -t 0.858 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 129 -a 1 + -t 0.858 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 129 -a 1 - -t 0.858 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 129 -a 1 h -t 0.858 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 129 -a 1 v -t 0.85999999999999999 sim_annotation 0.85999999999999999 8 Ack_1,2 + -t 0.86 -s 1 -d 3 -p cbr -e 500 -c 1 -i 144 -a 1 - -t 0.86 -s 1 -d 3 -p cbr -e 500 -c 1 -i 144 -a 1 h -t 0.86 -s 1 -d 3 -p cbr -e 500 -c 1 -i 144 -a 1 + -t 0.86 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 145 -a 1 - -t 0.86 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 145 -a 1 h -t 0.86 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 145 -a 1 r -t 0.862 -s 3 -d 4 -p cbr -e 500 -c 1 -i 130 -a 1 + -t 0.862 -s 4 -d 6 -p cbr -e 500 -c 1 -i 130 -a 1 - -t 0.862 -s 4 -d 6 -p cbr -e 500 -c 1 -i 130 -a 1 h -t 0.862 -s 4 -d 6 -p cbr -e 500 -c 1 -i 130 -a 1 r -t 0.862 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 124 -a 1 r -t 0.8636 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 126 -a 0 -S 0 -y {2 2} + -t 0.8636 -s 5 -d 4 -p ack -e 40 -c 0 -i 146 -a 0 -S 0 -y {2 2} - -t 0.8636 -s 5 -d 4 -p ack -e 40 -c 0 -i 146 -a 0 -S 0 -y {2 2} h -t 0.8636 -s 5 -d 4 -p ack -e 40 -c 0 -i 146 -a 0 -S 0 -y {-1 -1} r -t 0.864 -s 1 -d 3 -p cbr -e 500 -c 1 -i 140 -a 1 + -t 0.864 -s 3 -d 4 -p cbr -e 500 -c 1 -i 140 -a 1 - -t 0.864 -s 3 -d 4 -p cbr -e 500 -c 1 -i 140 -a 1 h -t 0.864 -s 3 -d 4 -p cbr -e 500 -c 1 -i 140 -a 1 r -t 0.866 -s 3 -d 4 -p cbr -e 500 -c 1 -i 131 -a 1 + -t 0.866 -s 4 -d 6 -p cbr -e 500 -c 1 -i 131 -a 1 - -t 0.866 -s 4 -d 6 -p cbr -e 500 -c 1 -i 131 -a 1 h -t 0.866 -s 4 -d 6 -p cbr -e 500 -c 1 -i 131 -a 1 r -t 0.867664 -s 5 -d 4 -p ack -e 40 -c 0 -i 142 -a 0 -S 0 -y {1 1} + -t 0.867664 -s 4 -d 3 -p ack -e 40 -c 0 -i 142 -a 0 -S 0 -y {1 1} - -t 0.867664 -s 4 -d 3 -p ack -e 40 -c 0 -i 142 -a 0 -S 0 -y {1 1} h -t 0.867664 -s 4 -d 3 -p ack -e 40 -c 0 -i 142 -a 0 -S 0 -y {-1 -1} r -t 0.868 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 141 -a 1 + -t 0.868 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 141 -a 1 - -t 0.868 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 141 -a 1 h -t 0.868 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 141 -a 1 + -t 0.87 -s 1 -d 3 -p cbr -e 500 -c 1 -i 147 -a 1 - -t 0.87 -s 1 -d 3 -p cbr -e 500 -c 1 -i 147 -a 1 h -t 0.87 -s 1 -d 3 -p cbr -e 500 -c 1 -i 147 -a 1 r -t 0.87 -s 4 -d 6 -p cbr -e 500 -c 1 -i 127 -a 1 r -t 0.874 -s 1 -d 3 -p cbr -e 500 -c 1 -i 143 -a 1 + -t 0.874 -s 3 -d 4 -p cbr -e 500 -c 1 -i 143 -a 1 r -t 0.874 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 132 -a 1 + -t 0.874 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 132 -a 1 - -t 0.874 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 132 -a 1 h -t 0.874 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 132 -a 1 r -t 0.874 -s 4 -d 6 -p cbr -e 500 -c 1 -i 128 -a 1 - -t 0.876 -s 3 -d 4 -p cbr -e 500 -c 1 -i 143 -a 1 h -t 0.876 -s 3 -d 4 -p cbr -e 500 -c 1 -i 143 -a 1 r -t 0.878 -s 3 -d 4 -p cbr -e 500 -c 1 -i 133 -a 1 + -t 0.878 -s 4 -d 6 -p cbr -e 500 -c 1 -i 133 -a 1 - -t 0.878 -s 4 -d 6 -p cbr -e 500 -c 1 -i 133 -a 1 h -t 0.878 -s 4 -d 6 -p cbr -e 500 -c 1 -i 133 -a 1 + -t 0.88 -s 1 -d 3 -p cbr -e 500 -c 1 -i 148 -a 1 - -t 0.88 -s 1 -d 3 -p cbr -e 500 -c 1 -i 148 -a 1 h -t 0.88 -s 1 -d 3 -p cbr -e 500 -c 1 -i 148 -a 1 + -t 0.88 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 149 -a 1 - -t 0.88 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 149 -a 1 h -t 0.88 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 149 -a 1 r -t 0.882 -s 3 -d 4 -p cbr -e 500 -c 1 -i 134 -a 1 + -t 0.882 -s 4 -d 6 -p cbr -e 500 -c 1 -i 134 -a 1 - -t 0.882 -s 4 -d 6 -p cbr -e 500 -c 1 -i 134 -a 1 h -t 0.882 -s 4 -d 6 -p cbr -e 500 -c 1 -i 134 -a 1 r -t 0.883664 -s 5 -d 4 -p ack -e 40 -c 0 -i 146 -a 0 -S 0 -y {2 2} + -t 0.883664 -s 4 -d 3 -p ack -e 40 -c 0 -i 146 -a 0 -S 0 -y {2 2} - -t 0.883664 -s 4 -d 3 -p ack -e 40 -c 0 -i 146 -a 0 -S 0 -y {2 2} h -t 0.883664 -s 4 -d 3 -p ack -e 40 -c 0 -i 146 -a 0 -S 0 -y {-1 -1} r -t 0.884 -s 1 -d 3 -p cbr -e 500 -c 1 -i 144 -a 1 + -t 0.884 -s 3 -d 4 -p cbr -e 500 -c 1 -i 144 -a 1 - -t 0.884 -s 3 -d 4 -p cbr -e 500 -c 1 -i 144 -a 1 h -t 0.884 -s 3 -d 4 -p cbr -e 500 -c 1 -i 144 -a 1 r -t 0.886 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 129 -a 1 r -t 0.886 -s 4 -d 6 -p cbr -e 500 -c 1 -i 130 -a 1 r -t 0.888 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 145 -a 1 + -t 0.888 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 145 -a 1 - -t 0.888 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 145 -a 1 h -t 0.888 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 145 -a 1 + -t 0.89 -s 1 -d 3 -p cbr -e 500 -c 1 -i 150 -a 1 - -t 0.89 -s 1 -d 3 -p cbr -e 500 -c 1 -i 150 -a 1 h -t 0.89 -s 1 -d 3 -p cbr -e 500 -c 1 -i 150 -a 1 r -t 0.89 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 135 -a 1 + -t 0.89 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 135 -a 1 - -t 0.89 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 135 -a 1 h -t 0.89 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 135 -a 1 r -t 0.89 -s 4 -d 6 -p cbr -e 500 -c 1 -i 131 -a 1 r -t 0.894 -s 1 -d 3 -p cbr -e 500 -c 1 -i 147 -a 1 + -t 0.894 -s 3 -d 4 -p cbr -e 500 -c 1 -i 147 -a 1 r -t 0.894 -s 3 -d 4 -p cbr -e 500 -c 1 -i 136 -a 1 + -t 0.894 -s 4 -d 6 -p cbr -e 500 -c 1 -i 136 -a 1 - -t 0.894 -s 4 -d 6 -p cbr -e 500 -c 1 -i 136 -a 1 h -t 0.894 -s 4 -d 6 -p cbr -e 500 -c 1 -i 136 -a 1 - -t 0.896 -s 3 -d 4 -p cbr -e 500 -c 1 -i 147 -a 1 h -t 0.896 -s 3 -d 4 -p cbr -e 500 -c 1 -i 147 -a 1 r -t 0.898 -s 3 -d 4 -p cbr -e 500 -c 1 -i 137 -a 1 + -t 0.898 -s 4 -d 6 -p cbr -e 500 -c 1 -i 137 -a 1 - -t 0.898 -s 4 -d 6 -p cbr -e 500 -c 1 -i 137 -a 1 h -t 0.898 -s 4 -d 6 -p cbr -e 500 -c 1 -i 137 -a 1 + -t 0.9 -s 1 -d 3 -p cbr -e 500 -c 1 -i 151 -a 1 - -t 0.9 -s 1 -d 3 -p cbr -e 500 -c 1 -i 151 -a 1 h -t 0.9 -s 1 -d 3 -p cbr -e 500 -c 1 -i 151 -a 1 + -t 0.9 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 152 -a 1 - -t 0.9 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 152 -a 1 h -t 0.9 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 152 -a 1 r -t 0.902 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 132 -a 1 r -t 0.902 -s 4 -d 6 -p cbr -e 500 -c 1 -i 133 -a 1 r -t 0.904 -s 1 -d 3 -p cbr -e 500 -c 1 -i 148 -a 1 + -t 0.904 -s 3 -d 4 -p cbr -e 500 -c 1 -i 148 -a 1 - -t 0.904 -s 3 -d 4 -p cbr -e 500 -c 1 -i 148 -a 1 h -t 0.904 -s 3 -d 4 -p cbr -e 500 -c 1 -i 148 -a 1 r -t 0.906 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 138 -a 1 + -t 0.906 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 138 -a 1 - -t 0.906 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 138 -a 1 h -t 0.906 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 138 -a 1 r -t 0.906 -s 4 -d 6 -p cbr -e 500 -c 1 -i 134 -a 1 r -t 0.908 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 149 -a 1 + -t 0.908 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 149 -a 1 - -t 0.908 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 149 -a 1 h -t 0.908 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 149 -a 1 + -t 0.91 -s 1 -d 3 -p cbr -e 500 -c 1 -i 153 -a 1 - -t 0.91 -s 1 -d 3 -p cbr -e 500 -c 1 -i 153 -a 1 h -t 0.91 -s 1 -d 3 -p cbr -e 500 -c 1 -i 153 -a 1 r -t 0.91 -s 3 -d 4 -p cbr -e 500 -c 1 -i 139 -a 1 + -t 0.91 -s 4 -d 6 -p cbr -e 500 -c 1 -i 139 -a 1 - -t 0.91 -s 4 -d 6 -p cbr -e 500 -c 1 -i 139 -a 1 h -t 0.91 -s 4 -d 6 -p cbr -e 500 -c 1 -i 139 -a 1 r -t 0.914 -s 1 -d 3 -p cbr -e 500 -c 1 -i 150 -a 1 + -t 0.914 -s 3 -d 4 -p cbr -e 500 -c 1 -i 150 -a 1 - -t 0.916 -s 3 -d 4 -p cbr -e 500 -c 1 -i 150 -a 1 h -t 0.916 -s 3 -d 4 -p cbr -e 500 -c 1 -i 150 -a 1 r -t 0.917984 -s 4 -d 3 -p ack -e 40 -c 0 -i 142 -a 0 -S 0 -y {1 1} + -t 0.917984 -s 3 -d 0 -p ack -e 40 -c 0 -i 142 -a 0 -S 0 -y {1 1} - -t 0.917984 -s 3 -d 0 -p ack -e 40 -c 0 -i 142 -a 0 -S 0 -f 0 -m 1 -y {1 1} h -t 0.917984 -s 3 -d 0 -p ack -e 40 -c 0 -i 142 -a 0 -S 0 -y {-1 -1} r -t 0.918 -s 3 -d 4 -p cbr -e 500 -c 1 -i 140 -a 1 + -t 0.918 -s 4 -d 6 -p cbr -e 500 -c 1 -i 140 -a 1 - -t 0.918 -s 4 -d 6 -p cbr -e 500 -c 1 -i 140 -a 1 h -t 0.918 -s 4 -d 6 -p cbr -e 500 -c 1 -i 140 -a 1 r -t 0.918 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 135 -a 1 r -t 0.918 -s 4 -d 6 -p cbr -e 500 -c 1 -i 136 -a 1 + -t 0.92 -s 1 -d 3 -p cbr -e 500 -c 1 -i 154 -a 1 - -t 0.92 -s 1 -d 3 -p cbr -e 500 -c 1 -i 154 -a 1 h -t 0.92 -s 1 -d 3 -p cbr -e 500 -c 1 -i 154 -a 1 + -t 0.92 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 155 -a 1 - -t 0.92 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 155 -a 1 h -t 0.92 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 155 -a 1 r -t 0.922 -s 4 -d 6 -p cbr -e 500 -c 1 -i 137 -a 1 r -t 0.924 -s 1 -d 3 -p cbr -e 500 -c 1 -i 151 -a 1 + -t 0.924 -s 3 -d 4 -p cbr -e 500 -c 1 -i 151 -a 1 - -t 0.924 -s 3 -d 4 -p cbr -e 500 -c 1 -i 151 -a 1 h -t 0.924 -s 3 -d 4 -p cbr -e 500 -c 1 -i 151 -a 1 r -t 0.926 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 141 -a 1 + -t 0.926 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 141 -a 1 - -t 0.926 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 141 -a 1 h -t 0.926 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 141 -a 1 r -t 0.928 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 152 -a 1 + -t 0.928 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 152 -a 1 - -t 0.928 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 152 -a 1 h -t 0.928 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 152 -a 1 + -t 0.93 -s 1 -d 3 -p cbr -e 500 -c 1 -i 156 -a 1 - -t 0.93 -s 1 -d 3 -p cbr -e 500 -c 1 -i 156 -a 1 h -t 0.93 -s 1 -d 3 -p cbr -e 500 -c 1 -i 156 -a 1 r -t 0.93 -s 3 -d 4 -p cbr -e 500 -c 1 -i 143 -a 1 + -t 0.93 -s 4 -d 6 -p cbr -e 500 -c 1 -i 143 -a 1 - -t 0.93 -s 4 -d 6 -p cbr -e 500 -c 1 -i 143 -a 1 h -t 0.93 -s 4 -d 6 -p cbr -e 500 -c 1 -i 143 -a 1 r -t 0.933984 -s 4 -d 3 -p ack -e 40 -c 0 -i 146 -a 0 -S 0 -y {2 2} + -t 0.933984 -s 3 -d 0 -p ack -e 40 -c 0 -i 146 -a 0 -S 0 -y {2 2} - -t 0.933984 -s 3 -d 0 -p ack -e 40 -c 0 -i 146 -a 0 -S 0 -f 0 -m 1 -y {2 2} h -t 0.933984 -s 3 -d 0 -p ack -e 40 -c 0 -i 146 -a 0 -S 0 -y {-1 -1} r -t 0.934 -s 1 -d 3 -p cbr -e 500 -c 1 -i 153 -a 1 + -t 0.934 -s 3 -d 4 -p cbr -e 500 -c 1 -i 153 -a 1 r -t 0.934 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 138 -a 1 r -t 0.934 -s 4 -d 6 -p cbr -e 500 -c 1 -i 139 -a 1 - -t 0.936 -s 3 -d 4 -p cbr -e 500 -c 1 -i 153 -a 1 h -t 0.936 -s 3 -d 4 -p cbr -e 500 -c 1 -i 153 -a 1 r -t 0.938 -s 3 -d 4 -p cbr -e 500 -c 1 -i 144 -a 1 + -t 0.938 -s 4 -d 6 -p cbr -e 500 -c 1 -i 144 -a 1 - -t 0.938 -s 4 -d 6 -p cbr -e 500 -c 1 -i 144 -a 1 h -t 0.938 -s 4 -d 6 -p cbr -e 500 -c 1 -i 144 -a 1 r -t 0.938048 -s 3 -d 0 -p ack -e 40 -c 0 -i 142 -a 0 -S 0 -y {1 1} f -t 0.93804800000000055 -s 0 -d 5 -n cwnd_ -a tcp -v 3.000000 -o 2.000000 -T v + -t 0.938048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 157 -a 0 -S 0 -f 0 -m 0 -y {3 3} - -t 0.938048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 157 -a 0 -S 0 -y {3 3} h -t 0.938048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 157 -a 0 -S 0 -y {-1 -1} + -t 0.938048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 158 -a 0 -S 0 -f 0 -m 0 -y {4 4} - -t 0.939648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 158 -a 0 -S 0 -y {4 4} h -t 0.939648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 158 -a 0 -S 0 -y {-1 -1} + -t 0.94 -s 1 -d 3 -p cbr -e 500 -c 1 -i 159 -a 1 - -t 0.94 -s 1 -d 3 -p cbr -e 500 -c 1 -i 159 -a 1 h -t 0.94 -s 1 -d 3 -p cbr -e 500 -c 1 -i 159 -a 1 + -t 0.94 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 160 -a 1 - -t 0.94 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 160 -a 1 h -t 0.94 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 160 -a 1 r -t 0.942 -s 4 -d 6 -p cbr -e 500 -c 1 -i 140 -a 1 r -t 0.944 -s 1 -d 3 -p cbr -e 500 -c 1 -i 154 -a 1 + -t 0.944 -s 3 -d 4 -p cbr -e 500 -c 1 -i 154 -a 1 - -t 0.944 -s 3 -d 4 -p cbr -e 500 -c 1 -i 154 -a 1 h -t 0.944 -s 3 -d 4 -p cbr -e 500 -c 1 -i 154 -a 1 r -t 0.946 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 145 -a 1 + -t 0.946 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 145 -a 1 - -t 0.946 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 145 -a 1 h -t 0.946 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 145 -a 1 r -t 0.948 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 155 -a 1 + -t 0.948 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 155 -a 1 - -t 0.948 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 155 -a 1 h -t 0.948 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 155 -a 1 v -t 0.94999999999999996 sim_annotation 0.94999999999999996 9 Send Packet_3,4,5,6 : Increase window size to 4 + -t 0.95 -s 1 -d 3 -p cbr -e 500 -c 1 -i 161 -a 1 - -t 0.95 -s 1 -d 3 -p cbr -e 500 -c 1 -i 161 -a 1 h -t 0.95 -s 1 -d 3 -p cbr -e 500 -c 1 -i 161 -a 1 r -t 0.95 -s 3 -d 4 -p cbr -e 500 -c 1 -i 147 -a 1 + -t 0.95 -s 4 -d 6 -p cbr -e 500 -c 1 -i 147 -a 1 - -t 0.95 -s 4 -d 6 -p cbr -e 500 -c 1 -i 147 -a 1 h -t 0.95 -s 4 -d 6 -p cbr -e 500 -c 1 -i 147 -a 1 r -t 0.954 -s 1 -d 3 -p cbr -e 500 -c 1 -i 156 -a 1 + -t 0.954 -s 3 -d 4 -p cbr -e 500 -c 1 -i 156 -a 1 r -t 0.954 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 141 -a 1 r -t 0.954 -s 4 -d 6 -p cbr -e 500 -c 1 -i 143 -a 1 r -t 0.954048 -s 3 -d 0 -p ack -e 40 -c 0 -i 146 -a 0 -S 0 -y {2 2} f -t 0.95404800000000056 -s 0 -d 5 -n cwnd_ -a tcp -v 4.000000 -o 3.000000 -T v + -t 0.954048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 162 -a 0 -S 0 -f 0 -m 0 -y {5 5} - -t 0.954048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 162 -a 0 -S 0 -y {5 5} h -t 0.954048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 162 -a 0 -S 0 -y {-1 -1} + -t 0.954048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 163 -a 0 -S 0 -f 0 -m 0 -y {6 6} - -t 0.955648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 163 -a 0 -S 0 -y {6 6} h -t 0.955648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 163 -a 0 -S 0 -y {-1 -1} - -t 0.956 -s 3 -d 4 -p cbr -e 500 -c 1 -i 156 -a 1 h -t 0.956 -s 3 -d 4 -p cbr -e 500 -c 1 -i 156 -a 1 r -t 0.958 -s 3 -d 4 -p cbr -e 500 -c 1 -i 148 -a 1 + -t 0.958 -s 4 -d 6 -p cbr -e 500 -c 1 -i 148 -a 1 - -t 0.958 -s 4 -d 6 -p cbr -e 500 -c 1 -i 148 -a 1 h -t 0.958 -s 4 -d 6 -p cbr -e 500 -c 1 -i 148 -a 1 r -t 0.959648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 157 -a 0 -S 0 -y {3 3} + -t 0.959648 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 157 -a 0 -S 0 -y {3 3} + -t 0.96 -s 1 -d 3 -p cbr -e 500 -c 1 -i 164 -a 1 - -t 0.96 -s 1 -d 3 -p cbr -e 500 -c 1 -i 164 -a 1 h -t 0.96 -s 1 -d 3 -p cbr -e 500 -c 1 -i 164 -a 1 + -t 0.96 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 165 -a 1 - -t 0.96 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 165 -a 1 h -t 0.96 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 165 -a 1 - -t 0.96 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 157 -a 0 -S 0 -y {3 3} h -t 0.96 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 157 -a 0 -S 0 -y {-1 -1} r -t 0.961248 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 158 -a 0 -S 0 -y {4 4} + -t 0.961248 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 158 -a 0 -S 0 -y {4 4} r -t 0.962 -s 4 -d 6 -p cbr -e 500 -c 1 -i 144 -a 1 r -t 0.964 -s 1 -d 3 -p cbr -e 500 -c 1 -i 159 -a 1 + -t 0.964 -s 3 -d 4 -p cbr -e 500 -c 1 -i 159 -a 1 r -t 0.966 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 149 -a 1 + -t 0.966 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 149 -a 1 - -t 0.966 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 149 -a 1 h -t 0.966 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 149 -a 1 r -t 0.968 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 160 -a 1 + -t 0.968 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 160 -a 1 - -t 0.968 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 158 -a 0 -S 0 -y {4 4} h -t 0.968 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 158 -a 0 -S 0 -y {-1 -1} + -t 0.97 -s 1 -d 3 -p cbr -e 500 -c 1 -i 166 -a 1 - -t 0.97 -s 1 -d 3 -p cbr -e 500 -c 1 -i 166 -a 1 h -t 0.97 -s 1 -d 3 -p cbr -e 500 -c 1 -i 166 -a 1 r -t 0.97 -s 3 -d 4 -p cbr -e 500 -c 1 -i 150 -a 1 + -t 0.97 -s 4 -d 6 -p cbr -e 500 -c 1 -i 150 -a 1 - -t 0.97 -s 4 -d 6 -p cbr -e 500 -c 1 -i 150 -a 1 h -t 0.97 -s 4 -d 6 -p cbr -e 500 -c 1 -i 150 -a 1 r -t 0.974 -s 1 -d 3 -p cbr -e 500 -c 1 -i 161 -a 1 + -t 0.974 -s 3 -d 4 -p cbr -e 500 -c 1 -i 161 -a 1 r -t 0.974 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 145 -a 1 r -t 0.974 -s 4 -d 6 -p cbr -e 500 -c 1 -i 147 -a 1 r -t 0.975648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 162 -a 0 -S 0 -y {5 5} + -t 0.975648 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 162 -a 0 -S 0 -y {5 5} - -t 0.976 -s 3 -d 4 -p cbr -e 500 -c 1 -i 159 -a 1 h -t 0.976 -s 3 -d 4 -p cbr -e 500 -c 1 -i 159 -a 1 r -t 0.977248 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 163 -a 0 -S 0 -y {6 6} + -t 0.977248 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 163 -a 0 -S 0 -y {6 6} r -t 0.978 -s 3 -d 4 -p cbr -e 500 -c 1 -i 151 -a 1 + -t 0.978 -s 4 -d 6 -p cbr -e 500 -c 1 -i 151 -a 1 - -t 0.978 -s 4 -d 6 -p cbr -e 500 -c 1 -i 151 -a 1 h -t 0.978 -s 4 -d 6 -p cbr -e 500 -c 1 -i 151 -a 1 + -t 0.98 -s 1 -d 3 -p cbr -e 500 -c 1 -i 167 -a 1 - -t 0.98 -s 1 -d 3 -p cbr -e 500 -c 1 -i 167 -a 1 h -t 0.98 -s 1 -d 3 -p cbr -e 500 -c 1 -i 167 -a 1 + -t 0.98 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 168 -a 1 - -t 0.98 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 168 -a 1 h -t 0.98 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 168 -a 1 - -t 0.98 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 160 -a 1 h -t 0.98 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 160 -a 1 r -t 0.982 -s 4 -d 6 -p cbr -e 500 -c 1 -i 148 -a 1 r -t 0.984 -s 1 -d 3 -p cbr -e 500 -c 1 -i 164 -a 1 + -t 0.984 -s 3 -d 4 -p cbr -e 500 -c 1 -i 164 -a 1 r -t 0.986 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 152 -a 1 + -t 0.986 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 152 -a 1 - -t 0.986 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 152 -a 1 h -t 0.986 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 152 -a 1 r -t 0.988 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 165 -a 1 + -t 0.988 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 165 -a 1 - -t 0.988 -s 3 -d 4 -p cbr -e 500 -c 1 -i 161 -a 1 h -t 0.988 -s 3 -d 4 -p cbr -e 500 -c 1 -i 161 -a 1 + -t 0.99 -s 1 -d 3 -p cbr -e 500 -c 1 -i 169 -a 1 - -t 0.99 -s 1 -d 3 -p cbr -e 500 -c 1 -i 169 -a 1 h -t 0.99 -s 1 -d 3 -p cbr -e 500 -c 1 -i 169 -a 1 r -t 0.99 -s 3 -d 4 -p cbr -e 500 -c 1 -i 153 -a 1 + -t 0.99 -s 4 -d 6 -p cbr -e 500 -c 1 -i 153 -a 1 - -t 0.99 -s 4 -d 6 -p cbr -e 500 -c 1 -i 153 -a 1 h -t 0.99 -s 4 -d 6 -p cbr -e 500 -c 1 -i 153 -a 1 - -t 0.992 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 162 -a 0 -S 0 -y {5 5} h -t 0.992 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 162 -a 0 -S 0 -y {-1 -1} r -t 0.994 -s 1 -d 3 -p cbr -e 500 -c 1 -i 166 -a 1 + -t 0.994 -s 3 -d 4 -p cbr -e 500 -c 1 -i 166 -a 1 r -t 0.994 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 149 -a 1 r -t 0.994 -s 4 -d 6 -p cbr -e 500 -c 1 -i 150 -a 1 r -t 0.998 -s 3 -d 4 -p cbr -e 500 -c 1 -i 154 -a 1 + -t 0.998 -s 4 -d 6 -p cbr -e 500 -c 1 -i 154 -a 1 - -t 0.998 -s 4 -d 6 -p cbr -e 500 -c 1 -i 154 -a 1 h -t 0.998 -s 4 -d 6 -p cbr -e 500 -c 1 -i 154 -a 1 + -t 1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 170 -a 1 - -t 1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 170 -a 1 h -t 1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 170 -a 1 + -t 1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 171 -a 1 - -t 1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 171 -a 1 h -t 1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 171 -a 1 - -t 1 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 163 -a 0 -S 0 -y {6 6} h -t 1 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 163 -a 0 -S 0 -y {-1 -1} r -t 1.002 -s 4 -d 6 -p cbr -e 500 -c 1 -i 151 -a 1 r -t 1.004 -s 1 -d 3 -p cbr -e 500 -c 1 -i 167 -a 1 + -t 1.004 -s 3 -d 4 -p cbr -e 500 -c 1 -i 167 -a 1 r -t 1.006 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 155 -a 1 + -t 1.006 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 155 -a 1 - -t 1.006 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 155 -a 1 h -t 1.006 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 155 -a 1 r -t 1.008 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 168 -a 1 + -t 1.008 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 168 -a 1 - -t 1.008 -s 3 -d 4 -p cbr -e 500 -c 1 -i 164 -a 1 h -t 1.008 -s 3 -d 4 -p cbr -e 500 -c 1 -i 164 -a 1 r -t 1.01 -s 3 -d 4 -p cbr -e 500 -c 1 -i 156 -a 1 + -t 1.01 -s 4 -d 6 -p cbr -e 500 -c 1 -i 156 -a 1 - -t 1.01 -s 4 -d 6 -p cbr -e 500 -c 1 -i 156 -a 1 h -t 1.01 -s 4 -d 6 -p cbr -e 500 -c 1 -i 156 -a 1 + -t 1.01 -s 1 -d 3 -p cbr -e 500 -c 1 -i 172 -a 1 - -t 1.01 -s 1 -d 3 -p cbr -e 500 -c 1 -i 172 -a 1 h -t 1.01 -s 1 -d 3 -p cbr -e 500 -c 1 -i 172 -a 1 - -t 1.012 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 165 -a 1 h -t 1.012 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 165 -a 1 r -t 1.014 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 152 -a 1 r -t 1.014 -s 1 -d 3 -p cbr -e 500 -c 1 -i 169 -a 1 + -t 1.014 -s 3 -d 4 -p cbr -e 500 -c 1 -i 169 -a 1 r -t 1.014 -s 4 -d 6 -p cbr -e 500 -c 1 -i 153 -a 1 r -t 1.018 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 157 -a 0 -S 0 -y {3 3} + -t 1.018 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 157 -a 0 -S 0 -y {3 3} - -t 1.018 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 157 -a 0 -S 0 -y {3 3} h -t 1.018 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 157 -a 0 -S 0 -y {-1 -1} + -t 1.02 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 173 -a 1 - -t 1.02 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 173 -a 1 h -t 1.02 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 173 -a 1 + -t 1.02 -s 1 -d 3 -p cbr -e 500 -c 1 -i 174 -a 1 - -t 1.02 -s 1 -d 3 -p cbr -e 500 -c 1 -i 174 -a 1 h -t 1.02 -s 1 -d 3 -p cbr -e 500 -c 1 -i 174 -a 1 - -t 1.02 -s 3 -d 4 -p cbr -e 500 -c 1 -i 166 -a 1 h -t 1.02 -s 3 -d 4 -p cbr -e 500 -c 1 -i 166 -a 1 r -t 1.022 -s 4 -d 6 -p cbr -e 500 -c 1 -i 154 -a 1 r -t 1.024 -s 1 -d 3 -p cbr -e 500 -c 1 -i 171 -a 1 + -t 1.024 -s 3 -d 4 -p cbr -e 500 -c 1 -i 171 -a 1 - -t 1.024 -s 3 -d 4 -p cbr -e 500 -c 1 -i 167 -a 1 h -t 1.024 -s 3 -d 4 -p cbr -e 500 -c 1 -i 167 -a 1 r -t 1.026 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 158 -a 0 -S 0 -y {4 4} + -t 1.026 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 158 -a 0 -S 0 -y {4 4} - -t 1.026 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 158 -a 0 -S 0 -y {4 4} h -t 1.026 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 158 -a 0 -S 0 -y {-1 -1} r -t 1.028 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 170 -a 1 + -t 1.028 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 170 -a 1 - -t 1.028 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 168 -a 1 h -t 1.028 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 168 -a 1 r -t 1.03 -s 3 -d 4 -p cbr -e 500 -c 1 -i 159 -a 1 + -t 1.03 -s 4 -d 6 -p cbr -e 500 -c 1 -i 159 -a 1 - -t 1.03 -s 4 -d 6 -p cbr -e 500 -c 1 -i 159 -a 1 h -t 1.03 -s 4 -d 6 -p cbr -e 500 -c 1 -i 159 -a 1 + -t 1.03 -s 1 -d 3 -p cbr -e 500 -c 1 -i 175 -a 1 - -t 1.03 -s 1 -d 3 -p cbr -e 500 -c 1 -i 175 -a 1 h -t 1.03 -s 1 -d 3 -p cbr -e 500 -c 1 -i 175 -a 1 r -t 1.034 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 155 -a 1 r -t 1.034 -s 4 -d 6 -p cbr -e 500 -c 1 -i 156 -a 1 r -t 1.034 -s 1 -d 3 -p cbr -e 500 -c 1 -i 172 -a 1 + -t 1.034 -s 3 -d 4 -p cbr -e 500 -c 1 -i 172 -a 1 - -t 1.036 -s 3 -d 4 -p cbr -e 500 -c 1 -i 169 -a 1 h -t 1.036 -s 3 -d 4 -p cbr -e 500 -c 1 -i 169 -a 1 r -t 1.038 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 160 -a 1 + -t 1.038 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 160 -a 1 - -t 1.038 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 160 -a 1 h -t 1.038 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 160 -a 1 r -t 1.0396 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 157 -a 0 -S 0 -y {3 3} + -t 1.0396 -s 5 -d 4 -p ack -e 40 -c 0 -i 176 -a 0 -S 0 -y {3 3} - -t 1.0396 -s 5 -d 4 -p ack -e 40 -c 0 -i 176 -a 0 -S 0 -y {3 3} h -t 1.0396 -s 5 -d 4 -p ack -e 40 -c 0 -i 176 -a 0 -S 0 -y {-1 -1} + -t 1.04 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 177 -a 1 - -t 1.04 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 177 -a 1 h -t 1.04 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 177 -a 1 + -t 1.04 -s 1 -d 3 -p cbr -e 500 -c 1 -i 178 -a 1 - -t 1.04 -s 1 -d 3 -p cbr -e 500 -c 1 -i 178 -a 1 h -t 1.04 -s 1 -d 3 -p cbr -e 500 -c 1 -i 178 -a 1 - -t 1.04 -s 3 -d 4 -p cbr -e 500 -c 1 -i 171 -a 1 h -t 1.04 -s 3 -d 4 -p cbr -e 500 -c 1 -i 171 -a 1 r -t 1.042 -s 3 -d 4 -p cbr -e 500 -c 1 -i 161 -a 1 + -t 1.042 -s 4 -d 6 -p cbr -e 500 -c 1 -i 161 -a 1 - -t 1.042 -s 4 -d 6 -p cbr -e 500 -c 1 -i 161 -a 1 h -t 1.042 -s 4 -d 6 -p cbr -e 500 -c 1 -i 161 -a 1 r -t 1.044 -s 1 -d 3 -p cbr -e 500 -c 1 -i 174 -a 1 + -t 1.044 -s 3 -d 4 -p cbr -e 500 -c 1 -i 174 -a 1 - -t 1.044 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 170 -a 1 h -t 1.044 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 170 -a 1 r -t 1.0476 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 158 -a 0 -S 0 -y {4 4} + -t 1.0476 -s 5 -d 4 -p ack -e 40 -c 0 -i 179 -a 0 -S 0 -y {4 4} - -t 1.0476 -s 5 -d 4 -p ack -e 40 -c 0 -i 179 -a 0 -S 0 -y {4 4} h -t 1.0476 -s 5 -d 4 -p ack -e 40 -c 0 -i 179 -a 0 -S 0 -y {-1 -1} r -t 1.048 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 173 -a 1 + -t 1.048 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 173 -a 1 v -t 1.05 sim_annotation 1.05 10 Ack_3,4,5,6 r -t 1.05 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 162 -a 0 -S 0 -y {5 5} + -t 1.05 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 162 -a 0 -S 0 -y {5 5} - -t 1.05 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 162 -a 0 -S 0 -y {5 5} h -t 1.05 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 162 -a 0 -S 0 -y {-1 -1} + -t 1.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 180 -a 1 - -t 1.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 180 -a 1 h -t 1.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 180 -a 1 - -t 1.052 -s 3 -d 4 -p cbr -e 500 -c 1 -i 172 -a 1 h -t 1.052 -s 3 -d 4 -p cbr -e 500 -c 1 -i 172 -a 1 r -t 1.054 -s 4 -d 6 -p cbr -e 500 -c 1 -i 159 -a 1 r -t 1.054 -s 1 -d 3 -p cbr -e 500 -c 1 -i 175 -a 1 + -t 1.054 -s 3 -d 4 -p cbr -e 500 -c 1 -i 175 -a 1 - -t 1.056 -s 3 -d 4 -p cbr -e 500 -c 1 -i 174 -a 1 h -t 1.056 -s 3 -d 4 -p cbr -e 500 -c 1 -i 174 -a 1 r -t 1.058 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 163 -a 0 -S 0 -y {6 6} + -t 1.058 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 163 -a 0 -S 0 -y {6 6} - -t 1.058 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 163 -a 0 -S 0 -y {6 6} h -t 1.058 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 163 -a 0 -S 0 -y {-1 -1} r -t 1.05966 -s 5 -d 4 -p ack -e 40 -c 0 -i 176 -a 0 -S 0 -y {3 3} + -t 1.05966 -s 4 -d 3 -p ack -e 40 -c 0 -i 176 -a 0 -S 0 -y {3 3} - -t 1.05966 -s 4 -d 3 -p ack -e 40 -c 0 -i 176 -a 0 -S 0 -y {3 3} h -t 1.05966 -s 4 -d 3 -p ack -e 40 -c 0 -i 176 -a 0 -S 0 -y {-1 -1} + -t 1.06 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 181 -a 1 - -t 1.06 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 181 -a 1 h -t 1.06 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 181 -a 1 + -t 1.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 182 -a 1 - -t 1.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 182 -a 1 h -t 1.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 182 -a 1 - -t 1.06 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 173 -a 1 h -t 1.06 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 173 -a 1 r -t 1.062 -s 3 -d 4 -p cbr -e 500 -c 1 -i 164 -a 1 + -t 1.062 -s 4 -d 6 -p cbr -e 500 -c 1 -i 164 -a 1 - -t 1.062 -s 4 -d 6 -p cbr -e 500 -c 1 -i 164 -a 1 h -t 1.062 -s 4 -d 6 -p cbr -e 500 -c 1 -i 164 -a 1 r -t 1.064 -s 1 -d 3 -p cbr -e 500 -c 1 -i 178 -a 1 + -t 1.064 -s 3 -d 4 -p cbr -e 500 -c 1 -i 178 -a 1 r -t 1.066 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 160 -a 1 r -t 1.066 -s 4 -d 6 -p cbr -e 500 -c 1 -i 161 -a 1 r -t 1.06766 -s 5 -d 4 -p ack -e 40 -c 0 -i 179 -a 0 -S 0 -y {4 4} + -t 1.06766 -s 4 -d 3 -p ack -e 40 -c 0 -i 179 -a 0 -S 0 -y {4 4} - -t 1.06766 -s 4 -d 3 -p ack -e 40 -c 0 -i 179 -a 0 -S 0 -y {4 4} h -t 1.06766 -s 4 -d 3 -p ack -e 40 -c 0 -i 179 -a 0 -S 0 -y {-1 -1} r -t 1.068 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 177 -a 1 + -t 1.068 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 177 -a 1 - -t 1.068 -s 3 -d 4 -p cbr -e 500 -c 1 -i 175 -a 1 h -t 1.068 -s 3 -d 4 -p cbr -e 500 -c 1 -i 175 -a 1 r -t 1.07 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 165 -a 1 + -t 1.07 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 165 -a 1 - -t 1.07 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 165 -a 1 h -t 1.07 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 165 -a 1 + -t 1.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 183 -a 1 - -t 1.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 183 -a 1 h -t 1.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 183 -a 1 r -t 1.0716 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 162 -a 0 -S 0 -y {5 5} + -t 1.0716 -s 5 -d 4 -p ack -e 40 -c 0 -i 184 -a 0 -S 0 -y {5 5} - -t 1.0716 -s 5 -d 4 -p ack -e 40 -c 0 -i 184 -a 0 -S 0 -y {5 5} h -t 1.0716 -s 5 -d 4 -p ack -e 40 -c 0 -i 184 -a 0 -S 0 -y {-1 -1} - -t 1.072 -s 3 -d 4 -p cbr -e 500 -c 1 -i 178 -a 1 h -t 1.072 -s 3 -d 4 -p cbr -e 500 -c 1 -i 178 -a 1 r -t 1.074 -s 3 -d 4 -p cbr -e 500 -c 1 -i 166 -a 1 + -t 1.074 -s 4 -d 6 -p cbr -e 500 -c 1 -i 166 -a 1 - -t 1.074 -s 4 -d 6 -p cbr -e 500 -c 1 -i 166 -a 1 h -t 1.074 -s 4 -d 6 -p cbr -e 500 -c 1 -i 166 -a 1 r -t 1.074 -s 1 -d 3 -p cbr -e 500 -c 1 -i 180 -a 1 + -t 1.074 -s 3 -d 4 -p cbr -e 500 -c 1 -i 180 -a 1 - -t 1.076 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 177 -a 1 h -t 1.076 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 177 -a 1 r -t 1.078 -s 3 -d 4 -p cbr -e 500 -c 1 -i 167 -a 1 + -t 1.078 -s 4 -d 6 -p cbr -e 500 -c 1 -i 167 -a 1 - -t 1.078 -s 4 -d 6 -p cbr -e 500 -c 1 -i 167 -a 1 h -t 1.078 -s 4 -d 6 -p cbr -e 500 -c 1 -i 167 -a 1 r -t 1.0796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 163 -a 0 -S 0 -y {6 6} + -t 1.0796 -s 5 -d 4 -p ack -e 40 -c 0 -i 185 -a 0 -S 0 -y {6 6} - -t 1.0796 -s 5 -d 4 -p ack -e 40 -c 0 -i 185 -a 0 -S 0 -y {6 6} h -t 1.0796 -s 5 -d 4 -p ack -e 40 -c 0 -i 185 -a 0 -S 0 -y {-1 -1} + -t 1.08 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 186 -a 1 - -t 1.08 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 186 -a 1 h -t 1.08 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 186 -a 1 + -t 1.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 187 -a 1 - -t 1.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 187 -a 1 h -t 1.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 187 -a 1 r -t 1.084 -s 1 -d 3 -p cbr -e 500 -c 1 -i 182 -a 1 + -t 1.084 -s 3 -d 4 -p cbr -e 500 -c 1 -i 182 -a 1 - -t 1.084 -s 3 -d 4 -p cbr -e 500 -c 1 -i 180 -a 1 h -t 1.084 -s 3 -d 4 -p cbr -e 500 -c 1 -i 180 -a 1 r -t 1.086 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 168 -a 1 + -t 1.086 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 168 -a 1 - -t 1.086 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 168 -a 1 h -t 1.086 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 168 -a 1 r -t 1.086 -s 4 -d 6 -p cbr -e 500 -c 1 -i 164 -a 1 r -t 1.088 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 181 -a 1 + -t 1.088 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 181 -a 1 - -t 1.088 -s 3 -d 4 -p cbr -e 500 -c 1 -i 182 -a 1 h -t 1.088 -s 3 -d 4 -p cbr -e 500 -c 1 -i 182 -a 1 r -t 1.09 -s 3 -d 4 -p cbr -e 500 -c 1 -i 169 -a 1 + -t 1.09 -s 4 -d 6 -p cbr -e 500 -c 1 -i 169 -a 1 - -t 1.09 -s 4 -d 6 -p cbr -e 500 -c 1 -i 169 -a 1 h -t 1.09 -s 4 -d 6 -p cbr -e 500 -c 1 -i 169 -a 1 + -t 1.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 188 -a 1 - -t 1.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 188 -a 1 h -t 1.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 188 -a 1 r -t 1.09166 -s 5 -d 4 -p ack -e 40 -c 0 -i 184 -a 0 -S 0 -y {5 5} + -t 1.09166 -s 4 -d 3 -p ack -e 40 -c 0 -i 184 -a 0 -S 0 -y {5 5} - -t 1.09166 -s 4 -d 3 -p ack -e 40 -c 0 -i 184 -a 0 -S 0 -y {5 5} h -t 1.09166 -s 4 -d 3 -p ack -e 40 -c 0 -i 184 -a 0 -S 0 -y {-1 -1} - -t 1.092 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 181 -a 1 h -t 1.092 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 181 -a 1 r -t 1.094 -s 3 -d 4 -p cbr -e 500 -c 1 -i 171 -a 1 + -t 1.094 -s 4 -d 6 -p cbr -e 500 -c 1 -i 171 -a 1 r -t 1.094 -s 1 -d 3 -p cbr -e 500 -c 1 -i 183 -a 1 + -t 1.094 -s 3 -d 4 -p cbr -e 500 -c 1 -i 183 -a 1 - -t 1.094 -s 4 -d 6 -p cbr -e 500 -c 1 -i 171 -a 1 h -t 1.094 -s 4 -d 6 -p cbr -e 500 -c 1 -i 171 -a 1 r -t 1.098 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 165 -a 1 r -t 1.098 -s 4 -d 6 -p cbr -e 500 -c 1 -i 166 -a 1 r -t 1.09966 -s 5 -d 4 -p ack -e 40 -c 0 -i 185 -a 0 -S 0 -y {6 6} + -t 1.09966 -s 4 -d 3 -p ack -e 40 -c 0 -i 185 -a 0 -S 0 -y {6 6} - -t 1.09966 -s 4 -d 3 -p ack -e 40 -c 0 -i 185 -a 0 -S 0 -y {6 6} h -t 1.09966 -s 4 -d 3 -p ack -e 40 -c 0 -i 185 -a 0 -S 0 -y {-1 -1} + -t 1.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 189 -a 1 - -t 1.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 189 -a 1 h -t 1.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 189 -a 1 + -t 1.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 190 -a 1 - -t 1.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 190 -a 1 h -t 1.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 190 -a 1 - -t 1.1 -s 3 -d 4 -p cbr -e 500 -c 1 -i 183 -a 1 h -t 1.1 -s 3 -d 4 -p cbr -e 500 -c 1 -i 183 -a 1 r -t 1.102 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 170 -a 1 + -t 1.102 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 170 -a 1 - -t 1.102 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 170 -a 1 h -t 1.102 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 170 -a 1 r -t 1.102 -s 4 -d 6 -p cbr -e 500 -c 1 -i 167 -a 1 r -t 1.104 -s 1 -d 3 -p cbr -e 500 -c 1 -i 187 -a 1 + -t 1.104 -s 3 -d 4 -p cbr -e 500 -c 1 -i 187 -a 1 - -t 1.104 -s 3 -d 4 -p cbr -e 500 -c 1 -i 187 -a 1 h -t 1.104 -s 3 -d 4 -p cbr -e 500 -c 1 -i 187 -a 1 r -t 1.106 -s 3 -d 4 -p cbr -e 500 -c 1 -i 172 -a 1 + -t 1.106 -s 4 -d 6 -p cbr -e 500 -c 1 -i 172 -a 1 - -t 1.106 -s 4 -d 6 -p cbr -e 500 -c 1 -i 172 -a 1 h -t 1.106 -s 4 -d 6 -p cbr -e 500 -c 1 -i 172 -a 1 r -t 1.108 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 186 -a 1 + -t 1.108 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 186 -a 1 - -t 1.108 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 186 -a 1 h -t 1.108 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 186 -a 1 r -t 1.10998 -s 4 -d 3 -p ack -e 40 -c 0 -i 176 -a 0 -S 0 -y {3 3} + -t 1.10998 -s 3 -d 0 -p ack -e 40 -c 0 -i 176 -a 0 -S 0 -y {3 3} - -t 1.10998 -s 3 -d 0 -p ack -e 40 -c 0 -i 176 -a 0 -S 0 -f 0 -m 1 -y {3 3} h -t 1.10998 -s 3 -d 0 -p ack -e 40 -c 0 -i 176 -a 0 -S 0 -y {-1 -1} r -t 1.11 -s 3 -d 4 -p cbr -e 500 -c 1 -i 174 -a 1 + -t 1.11 -s 4 -d 6 -p cbr -e 500 -c 1 -i 174 -a 1 + -t 1.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 191 -a 1 - -t 1.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 191 -a 1 h -t 1.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 191 -a 1 - -t 1.11 -s 4 -d 6 -p cbr -e 500 -c 1 -i 174 -a 1 h -t 1.11 -s 4 -d 6 -p cbr -e 500 -c 1 -i 174 -a 1 r -t 1.114 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 168 -a 1 r -t 1.114 -s 4 -d 6 -p cbr -e 500 -c 1 -i 169 -a 1 r -t 1.114 -s 1 -d 3 -p cbr -e 500 -c 1 -i 188 -a 1 + -t 1.114 -s 3 -d 4 -p cbr -e 500 -c 1 -i 188 -a 1 - -t 1.116 -s 3 -d 4 -p cbr -e 500 -c 1 -i 188 -a 1 h -t 1.116 -s 3 -d 4 -p cbr -e 500 -c 1 -i 188 -a 1 r -t 1.11798 -s 4 -d 3 -p ack -e 40 -c 0 -i 179 -a 0 -S 0 -y {4 4} + -t 1.11798 -s 3 -d 0 -p ack -e 40 -c 0 -i 179 -a 0 -S 0 -y {4 4} - -t 1.11798 -s 3 -d 0 -p ack -e 40 -c 0 -i 179 -a 0 -S 0 -f 0 -m 1 -y {4 4} h -t 1.11798 -s 3 -d 0 -p ack -e 40 -c 0 -i 179 -a 0 -S 0 -y {-1 -1} r -t 1.118 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 173 -a 1 + -t 1.118 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 173 -a 1 - -t 1.118 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 173 -a 1 h -t 1.118 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 173 -a 1 r -t 1.118 -s 4 -d 6 -p cbr -e 500 -c 1 -i 171 -a 1 + -t 1.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 192 -a 1 - -t 1.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 192 -a 1 h -t 1.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 192 -a 1 + -t 1.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 193 -a 1 - -t 1.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 193 -a 1 h -t 1.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 193 -a 1 r -t 1.122 -s 3 -d 4 -p cbr -e 500 -c 1 -i 175 -a 1 + -t 1.122 -s 4 -d 6 -p cbr -e 500 -c 1 -i 175 -a 1 - -t 1.122 -s 4 -d 6 -p cbr -e 500 -c 1 -i 175 -a 1 h -t 1.122 -s 4 -d 6 -p cbr -e 500 -c 1 -i 175 -a 1 r -t 1.124 -s 1 -d 3 -p cbr -e 500 -c 1 -i 190 -a 1 + -t 1.124 -s 3 -d 4 -p cbr -e 500 -c 1 -i 190 -a 1 - -t 1.124 -s 3 -d 4 -p cbr -e 500 -c 1 -i 190 -a 1 h -t 1.124 -s 3 -d 4 -p cbr -e 500 -c 1 -i 190 -a 1 r -t 1.126 -s 3 -d 4 -p cbr -e 500 -c 1 -i 178 -a 1 + -t 1.126 -s 4 -d 6 -p cbr -e 500 -c 1 -i 178 -a 1 - -t 1.126 -s 4 -d 6 -p cbr -e 500 -c 1 -i 178 -a 1 h -t 1.126 -s 4 -d 6 -p cbr -e 500 -c 1 -i 178 -a 1 r -t 1.128 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 189 -a 1 + -t 1.128 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 189 -a 1 - -t 1.128 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 189 -a 1 h -t 1.128 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 189 -a 1 v -t 1.1299999999999999 sim_annotation 1.1299999999999999 11 Send Packet_7 to 14 : Increase window size to 8 r -t 1.13 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 170 -a 1 r -t 1.13 -s 4 -d 6 -p cbr -e 500 -c 1 -i 172 -a 1 + -t 1.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 194 -a 1 - -t 1.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 194 -a 1 h -t 1.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 194 -a 1 r -t 1.13005 -s 3 -d 0 -p ack -e 40 -c 0 -i 176 -a 0 -S 0 -y {3 3} f -t 1.13004800000000083 -s 0 -d 5 -n cwnd_ -a tcp -v 5.000000 -o 4.000000 -T v + -t 1.13005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 195 -a 0 -S 0 -f 0 -m 0 -y {7 7} - -t 1.13005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 195 -a 0 -S 0 -y {7 7} h -t 1.13005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 195 -a 0 -S 0 -y {-1 -1} + -t 1.13005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 196 -a 0 -S 0 -f 0 -m 0 -y {8 8} - -t 1.13165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 196 -a 0 -S 0 -y {8 8} h -t 1.13165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 196 -a 0 -S 0 -y {-1 -1} r -t 1.134 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 177 -a 1 + -t 1.134 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 177 -a 1 - -t 1.134 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 177 -a 1 h -t 1.134 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 177 -a 1 r -t 1.134 -s 1 -d 3 -p cbr -e 500 -c 1 -i 191 -a 1 + -t 1.134 -s 3 -d 4 -p cbr -e 500 -c 1 -i 191 -a 1 r -t 1.134 -s 4 -d 6 -p cbr -e 500 -c 1 -i 174 -a 1 - -t 1.136 -s 3 -d 4 -p cbr -e 500 -c 1 -i 191 -a 1 h -t 1.136 -s 3 -d 4 -p cbr -e 500 -c 1 -i 191 -a 1 r -t 1.138 -s 3 -d 4 -p cbr -e 500 -c 1 -i 180 -a 1 + -t 1.138 -s 4 -d 6 -p cbr -e 500 -c 1 -i 180 -a 1 - -t 1.138 -s 4 -d 6 -p cbr -e 500 -c 1 -i 180 -a 1 h -t 1.138 -s 4 -d 6 -p cbr -e 500 -c 1 -i 180 -a 1 r -t 1.13805 -s 3 -d 0 -p ack -e 40 -c 0 -i 179 -a 0 -S 0 -y {4 4} f -t 1.13804800000000084 -s 0 -d 5 -n cwnd_ -a tcp -v 6.000000 -o 5.000000 -T v + -t 1.13805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 197 -a 0 -S 0 -f 0 -m 0 -y {9 9} - -t 1.13805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 197 -a 0 -S 0 -y {9 9} h -t 1.13805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 197 -a 0 -S 0 -y {-1 -1} + -t 1.13805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 198 -a 0 -S 0 -f 0 -m 0 -y {10 10} - -t 1.13965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 198 -a 0 -S 0 -y {10 10} h -t 1.13965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 198 -a 0 -S 0 -y {-1 -1} + -t 1.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 199 -a 1 - -t 1.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 199 -a 1 h -t 1.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 199 -a 1 + -t 1.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 200 -a 1 - -t 1.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 200 -a 1 h -t 1.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 200 -a 1 r -t 1.14198 -s 4 -d 3 -p ack -e 40 -c 0 -i 184 -a 0 -S 0 -y {5 5} + -t 1.14198 -s 3 -d 0 -p ack -e 40 -c 0 -i 184 -a 0 -S 0 -y {5 5} - -t 1.14198 -s 3 -d 0 -p ack -e 40 -c 0 -i 184 -a 0 -S 0 -f 0 -m 1 -y {5 5} h -t 1.14198 -s 3 -d 0 -p ack -e 40 -c 0 -i 184 -a 0 -S 0 -y {-1 -1} r -t 1.142 -s 3 -d 4 -p cbr -e 500 -c 1 -i 182 -a 1 + -t 1.142 -s 4 -d 6 -p cbr -e 500 -c 1 -i 182 -a 1 - -t 1.142 -s 4 -d 6 -p cbr -e 500 -c 1 -i 182 -a 1 h -t 1.142 -s 4 -d 6 -p cbr -e 500 -c 1 -i 182 -a 1 r -t 1.144 -s 1 -d 3 -p cbr -e 500 -c 1 -i 193 -a 1 + -t 1.144 -s 3 -d 4 -p cbr -e 500 -c 1 -i 193 -a 1 - -t 1.144 -s 3 -d 4 -p cbr -e 500 -c 1 -i 193 -a 1 h -t 1.144 -s 3 -d 4 -p cbr -e 500 -c 1 -i 193 -a 1 r -t 1.146 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 173 -a 1 r -t 1.146 -s 4 -d 6 -p cbr -e 500 -c 1 -i 175 -a 1 r -t 1.148 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 192 -a 1 + -t 1.148 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 192 -a 1 - -t 1.148 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 192 -a 1 h -t 1.148 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 192 -a 1 r -t 1.14998 -s 4 -d 3 -p ack -e 40 -c 0 -i 185 -a 0 -S 0 -y {6 6} + -t 1.14998 -s 3 -d 0 -p ack -e 40 -c 0 -i 185 -a 0 -S 0 -y {6 6} - -t 1.14998 -s 3 -d 0 -p ack -e 40 -c 0 -i 185 -a 0 -S 0 -f 0 -m 1 -y {6 6} h -t 1.14998 -s 3 -d 0 -p ack -e 40 -c 0 -i 185 -a 0 -S 0 -y {-1 -1} r -t 1.15 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 181 -a 1 + -t 1.15 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 181 -a 1 - -t 1.15 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 181 -a 1 h -t 1.15 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 181 -a 1 r -t 1.15 -s 4 -d 6 -p cbr -e 500 -c 1 -i 178 -a 1 + -t 1.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 201 -a 1 - -t 1.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 201 -a 1 h -t 1.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 201 -a 1 r -t 1.15165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 195 -a 0 -S 0 -y {7 7} + -t 1.15165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 195 -a 0 -S 0 -y {7 7} r -t 1.15325 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 196 -a 0 -S 0 -y {8 8} + -t 1.15325 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 196 -a 0 -S 0 -y {8 8} r -t 1.154 -s 3 -d 4 -p cbr -e 500 -c 1 -i 183 -a 1 + -t 1.154 -s 4 -d 6 -p cbr -e 500 -c 1 -i 183 -a 1 - -t 1.154 -s 4 -d 6 -p cbr -e 500 -c 1 -i 183 -a 1 h -t 1.154 -s 4 -d 6 -p cbr -e 500 -c 1 -i 183 -a 1 r -t 1.154 -s 1 -d 3 -p cbr -e 500 -c 1 -i 194 -a 1 + -t 1.154 -s 3 -d 4 -p cbr -e 500 -c 1 -i 194 -a 1 - -t 1.156 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 195 -a 0 -S 0 -y {7 7} h -t 1.156 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 195 -a 0 -S 0 -y {-1 -1} r -t 1.158 -s 3 -d 4 -p cbr -e 500 -c 1 -i 187 -a 1 + -t 1.158 -s 4 -d 6 -p cbr -e 500 -c 1 -i 187 -a 1 - -t 1.158 -s 4 -d 6 -p cbr -e 500 -c 1 -i 187 -a 1 h -t 1.158 -s 4 -d 6 -p cbr -e 500 -c 1 -i 187 -a 1 r -t 1.15965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 197 -a 0 -S 0 -y {9 9} + -t 1.15965 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 197 -a 0 -S 0 -y {9 9} + -t 1.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 202 -a 1 - -t 1.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 202 -a 1 h -t 1.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 202 -a 1 + -t 1.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 203 -a 1 - -t 1.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 203 -a 1 h -t 1.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 203 -a 1 r -t 1.16125 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 198 -a 0 -S 0 -y {10 10} + -t 1.16125 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 198 -a 0 -S 0 -y {10 10} r -t 1.162 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 177 -a 1 r -t 1.162 -s 4 -d 6 -p cbr -e 500 -c 1 -i 180 -a 1 r -t 1.16205 -s 3 -d 0 -p ack -e 40 -c 0 -i 184 -a 0 -S 0 -y {5 5} f -t 1.16204800000000086 -s 0 -d 5 -n cwnd_ -a tcp -v 7.000000 -o 6.000000 -T v + -t 1.16205 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 204 -a 0 -S 0 -f 0 -m 0 -y {11 11} - -t 1.16205 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 204 -a 0 -S 0 -y {11 11} h -t 1.16205 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 204 -a 0 -S 0 -y {-1 -1} + -t 1.16205 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 205 -a 0 -S 0 -f 0 -m 0 -y {12 12} - -t 1.16365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 205 -a 0 -S 0 -y {12 12} h -t 1.16365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 205 -a 0 -S 0 -y {-1 -1} r -t 1.164 -s 1 -d 3 -p cbr -e 500 -c 1 -i 200 -a 1 + -t 1.164 -s 3 -d 4 -p cbr -e 500 -c 1 -i 200 -a 1 - -t 1.164 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 196 -a 0 -S 0 -y {8 8} h -t 1.164 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 196 -a 0 -S 0 -y {-1 -1} r -t 1.166 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 186 -a 1 + -t 1.166 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 186 -a 1 - -t 1.166 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 186 -a 1 h -t 1.166 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 186 -a 1 r -t 1.166 -s 4 -d 6 -p cbr -e 500 -c 1 -i 182 -a 1 r -t 1.168 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 199 -a 1 + -t 1.168 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 199 -a 1 r -t 1.17 -s 3 -d 4 -p cbr -e 500 -c 1 -i 188 -a 1 + -t 1.17 -s 4 -d 6 -p cbr -e 500 -c 1 -i 188 -a 1 - -t 1.17 -s 4 -d 6 -p cbr -e 500 -c 1 -i 188 -a 1 h -t 1.17 -s 4 -d 6 -p cbr -e 500 -c 1 -i 188 -a 1 + -t 1.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 206 -a 1 - -t 1.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 206 -a 1 h -t 1.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 206 -a 1 r -t 1.17005 -s 3 -d 0 -p ack -e 40 -c 0 -i 185 -a 0 -S 0 -y {6 6} f -t 1.17004800000000087 -s 0 -d 5 -n cwnd_ -a tcp -v 8.000000 -o 7.000000 -T v + -t 1.17005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 207 -a 0 -S 0 -f 0 -m 0 -y {13 13} - -t 1.17005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 207 -a 0 -S 0 -y {13 13} h -t 1.17005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 207 -a 0 -S 0 -y {-1 -1} + -t 1.17005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 208 -a 0 -S 0 -f 0 -m 0 -y {14 14} - -t 1.17165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 208 -a 0 -S 0 -y {14 14} h -t 1.17165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 208 -a 0 -S 0 -y {-1 -1} - -t 1.172 -s 3 -d 4 -p cbr -e 500 -c 1 -i 194 -a 1 h -t 1.172 -s 3 -d 4 -p cbr -e 500 -c 1 -i 194 -a 1 r -t 1.174 -s 1 -d 3 -p cbr -e 500 -c 1 -i 201 -a 1 + -t 1.174 -s 3 -d 4 -p cbr -e 500 -c 1 -i 201 -a 1 - -t 1.176 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 197 -a 0 -S 0 -y {9 9} h -t 1.176 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 197 -a 0 -S 0 -y {-1 -1} r -t 1.178 -s 3 -d 4 -p cbr -e 500 -c 1 -i 190 -a 1 + -t 1.178 -s 4 -d 6 -p cbr -e 500 -c 1 -i 190 -a 1 - -t 1.178 -s 4 -d 6 -p cbr -e 500 -c 1 -i 190 -a 1 h -t 1.178 -s 4 -d 6 -p cbr -e 500 -c 1 -i 190 -a 1 r -t 1.178 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 181 -a 1 r -t 1.178 -s 4 -d 6 -p cbr -e 500 -c 1 -i 183 -a 1 + -t 1.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 209 -a 1 - -t 1.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 209 -a 1 h -t 1.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 209 -a 1 + -t 1.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 210 -a 1 - -t 1.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 210 -a 1 h -t 1.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 210 -a 1 r -t 1.182 -s 4 -d 6 -p cbr -e 500 -c 1 -i 187 -a 1 r -t 1.18365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 204 -a 0 -S 0 -y {11 11} + -t 1.18365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 204 -a 0 -S 0 -y {11 11} r -t 1.184 -s 1 -d 3 -p cbr -e 500 -c 1 -i 203 -a 1 + -t 1.184 -s 3 -d 4 -p cbr -e 500 -c 1 -i 203 -a 1 - -t 1.184 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 198 -a 0 -S 0 -y {10 10} h -t 1.184 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 198 -a 0 -S 0 -y {-1 -1} r -t 1.18525 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 205 -a 0 -S 0 -y {12 12} + -t 1.18525 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 205 -a 0 -S 0 -y {12 12} r -t 1.186 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 189 -a 1 + -t 1.186 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 189 -a 1 - -t 1.186 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 189 -a 1 h -t 1.186 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 189 -a 1 r -t 1.188 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 202 -a 1 + -t 1.188 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 202 -a 1 r -t 1.19 -s 3 -d 4 -p cbr -e 500 -c 1 -i 191 -a 1 + -t 1.19 -s 4 -d 6 -p cbr -e 500 -c 1 -i 191 -a 1 - -t 1.19 -s 4 -d 6 -p cbr -e 500 -c 1 -i 191 -a 1 h -t 1.19 -s 4 -d 6 -p cbr -e 500 -c 1 -i 191 -a 1 + -t 1.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 211 -a 1 - -t 1.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 211 -a 1 h -t 1.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 211 -a 1 r -t 1.19165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 207 -a 0 -S 0 -y {13 13} + -t 1.19165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 207 -a 0 -S 0 -y {13 13} - -t 1.192 -s 3 -d 4 -p cbr -e 500 -c 1 -i 200 -a 1 h -t 1.192 -s 3 -d 4 -p cbr -e 500 -c 1 -i 200 -a 1 r -t 1.19325 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 208 -a 0 -S 0 -y {14 14} + -t 1.19325 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 208 -a 0 -S 0 -y {14 14} r -t 1.194 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 186 -a 1 r -t 1.194 -s 4 -d 6 -p cbr -e 500 -c 1 -i 188 -a 1 r -t 1.194 -s 1 -d 3 -p cbr -e 500 -c 1 -i 206 -a 1 + -t 1.194 -s 3 -d 4 -p cbr -e 500 -c 1 -i 206 -a 1 - -t 1.196 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 199 -a 1 h -t 1.196 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 199 -a 1 r -t 1.198 -s 3 -d 4 -p cbr -e 500 -c 1 -i 193 -a 1 + -t 1.198 -s 4 -d 6 -p cbr -e 500 -c 1 -i 193 -a 1 - -t 1.198 -s 4 -d 6 -p cbr -e 500 -c 1 -i 193 -a 1 h -t 1.198 -s 4 -d 6 -p cbr -e 500 -c 1 -i 193 -a 1 + -t 1.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 212 -a 1 - -t 1.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 212 -a 1 h -t 1.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 212 -a 1 + -t 1.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 213 -a 1 - -t 1.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 213 -a 1 h -t 1.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 213 -a 1 r -t 1.202 -s 4 -d 6 -p cbr -e 500 -c 1 -i 190 -a 1 r -t 1.204 -s 1 -d 3 -p cbr -e 500 -c 1 -i 210 -a 1 + -t 1.204 -s 3 -d 4 -p cbr -e 500 -c 1 -i 210 -a 1 - -t 1.204 -s 3 -d 4 -p cbr -e 500 -c 1 -i 201 -a 1 h -t 1.204 -s 3 -d 4 -p cbr -e 500 -c 1 -i 201 -a 1 r -t 1.206 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 192 -a 1 + -t 1.206 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 192 -a 1 - -t 1.206 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 192 -a 1 h -t 1.206 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 192 -a 1 r -t 1.208 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 209 -a 1 + -t 1.208 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 209 -a 1 - -t 1.208 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 204 -a 0 -S 0 -y {11 11} h -t 1.208 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 204 -a 0 -S 0 -y {-1 -1} + -t 1.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 214 -a 1 - -t 1.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 214 -a 1 h -t 1.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 214 -a 1 r -t 1.214 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 195 -a 0 -S 0 -y {7 7} + -t 1.214 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 195 -a 0 -S 0 -y {7 7} - -t 1.214 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 195 -a 0 -S 0 -y {7 7} h -t 1.214 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 195 -a 0 -S 0 -y {-1 -1} r -t 1.214 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 189 -a 1 r -t 1.214 -s 4 -d 6 -p cbr -e 500 -c 1 -i 191 -a 1 r -t 1.214 -s 1 -d 3 -p cbr -e 500 -c 1 -i 211 -a 1 + -t 1.214 -s 3 -d 4 -p cbr -e 500 -c 1 -i 211 -a 1 - -t 1.216 -s 3 -d 4 -p cbr -e 500 -c 1 -i 203 -a 1 h -t 1.216 -s 3 -d 4 -p cbr -e 500 -c 1 -i 203 -a 1 + -t 1.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 215 -a 1 - -t 1.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 215 -a 1 h -t 1.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 215 -a 1 + -t 1.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 216 -a 1 - -t 1.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 216 -a 1 h -t 1.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 216 -a 1 - -t 1.22 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 205 -a 0 -S 0 -y {12 12} h -t 1.22 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 205 -a 0 -S 0 -y {-1 -1} r -t 1.222 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 196 -a 0 -S 0 -y {8 8} + -t 1.222 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 196 -a 0 -S 0 -y {8 8} - -t 1.222 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 196 -a 0 -S 0 -y {8 8} h -t 1.222 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 196 -a 0 -S 0 -y {-1 -1} r -t 1.222 -s 4 -d 6 -p cbr -e 500 -c 1 -i 193 -a 1 r -t 1.224 -s 1 -d 3 -p cbr -e 500 -c 1 -i 213 -a 1 + -t 1.224 -s 3 -d 4 -p cbr -e 500 -c 1 -i 213 -a 1 r -t 1.226 -s 3 -d 4 -p cbr -e 500 -c 1 -i 194 -a 1 + -t 1.226 -s 4 -d 6 -p cbr -e 500 -c 1 -i 194 -a 1 - -t 1.226 -s 4 -d 6 -p cbr -e 500 -c 1 -i 194 -a 1 h -t 1.226 -s 4 -d 6 -p cbr -e 500 -c 1 -i 194 -a 1 r -t 1.228 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 212 -a 1 + -t 1.228 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 212 -a 1 - -t 1.228 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 202 -a 1 h -t 1.228 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 202 -a 1 + -t 1.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 217 -a 1 - -t 1.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 217 -a 1 h -t 1.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 217 -a 1 r -t 1.234 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 197 -a 0 -S 0 -y {9 9} + -t 1.234 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 197 -a 0 -S 0 -y {9 9} - -t 1.234 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 197 -a 0 -S 0 -y {9 9} h -t 1.234 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 197 -a 0 -S 0 -y {-1 -1} r -t 1.234 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 192 -a 1 r -t 1.234 -s 1 -d 3 -p cbr -e 500 -c 1 -i 214 -a 1 + -t 1.234 -s 3 -d 4 -p cbr -e 500 -c 1 -i 214 -a 1 r -t 1.2356 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 195 -a 0 -S 0 -y {7 7} + -t 1.2356 -s 5 -d 4 -p ack -e 40 -c 0 -i 218 -a 0 -S 0 -y {7 7} - -t 1.2356 -s 5 -d 4 -p ack -e 40 -c 0 -i 218 -a 0 -S 0 -y {7 7} h -t 1.2356 -s 5 -d 4 -p ack -e 40 -c 0 -i 218 -a 0 -S 0 -y {-1 -1} - -t 1.236 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 207 -a 0 -S 0 -y {13 13} h -t 1.236 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 207 -a 0 -S 0 -y {-1 -1} v -t 1.24 sim_annotation 1.24 12 Ack_7 to 14 + -t 1.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 219 -a 1 - -t 1.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 219 -a 1 h -t 1.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 219 -a 1 + -t 1.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 220 -a 1 - -t 1.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 220 -a 1 h -t 1.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 220 -a 1 r -t 1.242 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 198 -a 0 -S 0 -y {10 10} + -t 1.242 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 198 -a 0 -S 0 -y {10 10} - -t 1.242 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 198 -a 0 -S 0 -y {10 10} h -t 1.242 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 198 -a 0 -S 0 -y {-1 -1} r -t 1.2436 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 196 -a 0 -S 0 -y {8 8} + -t 1.2436 -s 5 -d 4 -p ack -e 40 -c 0 -i 221 -a 0 -S 0 -y {8 8} - -t 1.2436 -s 5 -d 4 -p ack -e 40 -c 0 -i 221 -a 0 -S 0 -y {8 8} h -t 1.2436 -s 5 -d 4 -p ack -e 40 -c 0 -i 221 -a 0 -S 0 -y {-1 -1} r -t 1.244 -s 1 -d 3 -p cbr -e 500 -c 1 -i 216 -a 1 + -t 1.244 -s 3 -d 4 -p cbr -e 500 -c 1 -i 216 -a 1 - -t 1.244 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 208 -a 0 -S 0 -y {14 14} h -t 1.244 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 208 -a 0 -S 0 -y {-1 -1} r -t 1.246 -s 3 -d 4 -p cbr -e 500 -c 1 -i 200 -a 1 + -t 1.246 -s 4 -d 6 -p cbr -e 500 -c 1 -i 200 -a 1 - -t 1.246 -s 4 -d 6 -p cbr -e 500 -c 1 -i 200 -a 1 h -t 1.246 -s 4 -d 6 -p cbr -e 500 -c 1 -i 200 -a 1 r -t 1.248 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 215 -a 1 + -t 1.248 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 215 -a 1 r -t 1.25 -s 4 -d 6 -p cbr -e 500 -c 1 -i 194 -a 1 + -t 1.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 222 -a 1 - -t 1.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 222 -a 1 h -t 1.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 222 -a 1 - -t 1.252 -s 3 -d 4 -p cbr -e 500 -c 1 -i 206 -a 1 h -t 1.252 -s 3 -d 4 -p cbr -e 500 -c 1 -i 206 -a 1 r -t 1.254 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 199 -a 1 + -t 1.254 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 199 -a 1 - -t 1.254 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 199 -a 1 h -t 1.254 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 199 -a 1 r -t 1.254 -s 1 -d 3 -p cbr -e 500 -c 1 -i 217 -a 1 + -t 1.254 -s 3 -d 4 -p cbr -e 500 -c 1 -i 217 -a 1 r -t 1.2556 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 197 -a 0 -S 0 -y {9 9} + -t 1.2556 -s 5 -d 4 -p ack -e 40 -c 0 -i 223 -a 0 -S 0 -y {9 9} - -t 1.2556 -s 5 -d 4 -p ack -e 40 -c 0 -i 223 -a 0 -S 0 -y {9 9} h -t 1.2556 -s 5 -d 4 -p ack -e 40 -c 0 -i 223 -a 0 -S 0 -y {-1 -1} r -t 1.25566 -s 5 -d 4 -p ack -e 40 -c 0 -i 218 -a 0 -S 0 -y {7 7} + -t 1.25566 -s 4 -d 3 -p ack -e 40 -c 0 -i 218 -a 0 -S 0 -y {7 7} - -t 1.25566 -s 4 -d 3 -p ack -e 40 -c 0 -i 218 -a 0 -S 0 -y {7 7} h -t 1.25566 -s 4 -d 3 -p ack -e 40 -c 0 -i 218 -a 0 -S 0 -y {-1 -1} - -t 1.256 -s 3 -d 4 -p cbr -e 500 -c 1 -i 210 -a 1 h -t 1.256 -s 3 -d 4 -p cbr -e 500 -c 1 -i 210 -a 1 r -t 1.258 -s 3 -d 4 -p cbr -e 500 -c 1 -i 201 -a 1 + -t 1.258 -s 4 -d 6 -p cbr -e 500 -c 1 -i 201 -a 1 - -t 1.258 -s 4 -d 6 -p cbr -e 500 -c 1 -i 201 -a 1 h -t 1.258 -s 4 -d 6 -p cbr -e 500 -c 1 -i 201 -a 1 + -t 1.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 224 -a 1 - -t 1.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 224 -a 1 h -t 1.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 224 -a 1 + -t 1.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 225 -a 1 - -t 1.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 225 -a 1 h -t 1.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 225 -a 1 - -t 1.26 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 209 -a 1 h -t 1.26 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 209 -a 1 r -t 1.2636 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 198 -a 0 -S 0 -y {10 10} + -t 1.2636 -s 5 -d 4 -p ack -e 40 -c 0 -i 226 -a 0 -S 0 -y {10 10} - -t 1.2636 -s 5 -d 4 -p ack -e 40 -c 0 -i 226 -a 0 -S 0 -y {10 10} h -t 1.2636 -s 5 -d 4 -p ack -e 40 -c 0 -i 226 -a 0 -S 0 -y {-1 -1} r -t 1.26366 -s 5 -d 4 -p ack -e 40 -c 0 -i 221 -a 0 -S 0 -y {8 8} + -t 1.26366 -s 4 -d 3 -p ack -e 40 -c 0 -i 221 -a 0 -S 0 -y {8 8} - -t 1.26366 -s 4 -d 3 -p ack -e 40 -c 0 -i 221 -a 0 -S 0 -y {8 8} h -t 1.26366 -s 4 -d 3 -p ack -e 40 -c 0 -i 221 -a 0 -S 0 -y {-1 -1} r -t 1.264 -s 1 -d 3 -p cbr -e 500 -c 1 -i 220 -a 1 + -t 1.264 -s 3 -d 4 -p cbr -e 500 -c 1 -i 220 -a 1 r -t 1.266 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 204 -a 0 -S 0 -y {11 11} + -t 1.266 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 204 -a 0 -S 0 -y {11 11} - -t 1.266 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 204 -a 0 -S 0 -y {11 11} h -t 1.266 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 204 -a 0 -S 0 -y {-1 -1} r -t 1.268 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 219 -a 1 + -t 1.268 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 219 -a 1 - -t 1.268 -s 3 -d 4 -p cbr -e 500 -c 1 -i 211 -a 1 h -t 1.268 -s 3 -d 4 -p cbr -e 500 -c 1 -i 211 -a 1 r -t 1.27 -s 3 -d 4 -p cbr -e 500 -c 1 -i 203 -a 1 + -t 1.27 -s 4 -d 6 -p cbr -e 500 -c 1 -i 203 -a 1 - -t 1.27 -s 4 -d 6 -p cbr -e 500 -c 1 -i 203 -a 1 h -t 1.27 -s 4 -d 6 -p cbr -e 500 -c 1 -i 203 -a 1 r -t 1.27 -s 4 -d 6 -p cbr -e 500 -c 1 -i 200 -a 1 + -t 1.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 227 -a 1 - -t 1.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 227 -a 1 h -t 1.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 227 -a 1 - -t 1.272 -s 3 -d 4 -p cbr -e 500 -c 1 -i 213 -a 1 h -t 1.272 -s 3 -d 4 -p cbr -e 500 -c 1 -i 213 -a 1 r -t 1.274 -s 1 -d 3 -p cbr -e 500 -c 1 -i 222 -a 1 + -t 1.274 -s 3 -d 4 -p cbr -e 500 -c 1 -i 222 -a 1 r -t 1.27566 -s 5 -d 4 -p ack -e 40 -c 0 -i 223 -a 0 -S 0 -y {9 9} + -t 1.27566 -s 4 -d 3 -p ack -e 40 -c 0 -i 223 -a 0 -S 0 -y {9 9} - -t 1.27566 -s 4 -d 3 -p ack -e 40 -c 0 -i 223 -a 0 -S 0 -y {9 9} h -t 1.27566 -s 4 -d 3 -p ack -e 40 -c 0 -i 223 -a 0 -S 0 -y {-1 -1} - -t 1.276 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 212 -a 1 h -t 1.276 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 212 -a 1 r -t 1.278 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 205 -a 0 -S 0 -y {12 12} + -t 1.278 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 205 -a 0 -S 0 -y {12 12} - -t 1.278 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 205 -a 0 -S 0 -y {12 12} h -t 1.278 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 205 -a 0 -S 0 -y {-1 -1} + -t 1.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 228 -a 1 - -t 1.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 228 -a 1 h -t 1.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 228 -a 1 + -t 1.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 229 -a 1 - -t 1.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 229 -a 1 h -t 1.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 229 -a 1 r -t 1.282 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 199 -a 1 r -t 1.282 -s 4 -d 6 -p cbr -e 500 -c 1 -i 201 -a 1 r -t 1.28366 -s 5 -d 4 -p ack -e 40 -c 0 -i 226 -a 0 -S 0 -y {10 10} + -t 1.28366 -s 4 -d 3 -p ack -e 40 -c 0 -i 226 -a 0 -S 0 -y {10 10} - -t 1.28366 -s 4 -d 3 -p ack -e 40 -c 0 -i 226 -a 0 -S 0 -y {10 10} h -t 1.28366 -s 4 -d 3 -p ack -e 40 -c 0 -i 226 -a 0 -S 0 -y {-1 -1} r -t 1.284 -s 1 -d 3 -p cbr -e 500 -c 1 -i 225 -a 1 + -t 1.284 -s 3 -d 4 -p cbr -e 500 -c 1 -i 225 -a 1 - -t 1.284 -s 3 -d 4 -p cbr -e 500 -c 1 -i 214 -a 1 h -t 1.284 -s 3 -d 4 -p cbr -e 500 -c 1 -i 214 -a 1 r -t 1.286 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 202 -a 1 + -t 1.286 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 202 -a 1 - -t 1.286 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 202 -a 1 h -t 1.286 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 202 -a 1 r -t 1.2876 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 204 -a 0 -S 0 -y {11 11} + -t 1.2876 -s 5 -d 4 -p ack -e 40 -c 0 -i 230 -a 0 -S 0 -y {11 11} - -t 1.2876 -s 5 -d 4 -p ack -e 40 -c 0 -i 230 -a 0 -S 0 -y {11 11} h -t 1.2876 -s 5 -d 4 -p ack -e 40 -c 0 -i 230 -a 0 -S 0 -y {-1 -1} r -t 1.288 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 224 -a 1 + -t 1.288 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 224 -a 1 - -t 1.288 -s 3 -d 4 -p cbr -e 500 -c 1 -i 216 -a 1 h -t 1.288 -s 3 -d 4 -p cbr -e 500 -c 1 -i 216 -a 1 + -t 1.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 231 -a 1 - -t 1.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 231 -a 1 h -t 1.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 231 -a 1 - -t 1.292 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 215 -a 1 h -t 1.292 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 215 -a 1 r -t 1.294 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 207 -a 0 -S 0 -y {13 13} + -t 1.294 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 207 -a 0 -S 0 -y {13 13} - -t 1.294 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 207 -a 0 -S 0 -y {13 13} h -t 1.294 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 207 -a 0 -S 0 -y {-1 -1} r -t 1.294 -s 4 -d 6 -p cbr -e 500 -c 1 -i 203 -a 1 r -t 1.294 -s 1 -d 3 -p cbr -e 500 -c 1 -i 227 -a 1 + -t 1.294 -s 3 -d 4 -p cbr -e 500 -c 1 -i 227 -a 1 r -t 1.2996 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 205 -a 0 -S 0 -y {12 12} + -t 1.2996 -s 5 -d 4 -p ack -e 40 -c 0 -i 232 -a 0 -S 0 -y {12 12} - -t 1.2996 -s 5 -d 4 -p ack -e 40 -c 0 -i 232 -a 0 -S 0 -y {12 12} h -t 1.2996 -s 5 -d 4 -p ack -e 40 -c 0 -i 232 -a 0 -S 0 -y {-1 -1} + -t 1.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 233 -a 1 - -t 1.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 233 -a 1 h -t 1.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 233 -a 1 + -t 1.3 -s 1 -d 3 -p cbr -e 500 -c 1 -i 234 -a 1 - -t 1.3 -s 1 -d 3 -p cbr -e 500 -c 1 -i 234 -a 1 h -t 1.3 -s 1 -d 3 -p cbr -e 500 -c 1 -i 234 -a 1 - -t 1.3 -s 3 -d 4 -p cbr -e 500 -c 1 -i 217 -a 1 h -t 1.3 -s 3 -d 4 -p cbr -e 500 -c 1 -i 217 -a 1 r -t 1.302 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 208 -a 0 -S 0 -y {14 14} + -t 1.302 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 208 -a 0 -S 0 -y {14 14} - -t 1.302 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 208 -a 0 -S 0 -y {14 14} h -t 1.302 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 208 -a 0 -S 0 -y {-1 -1} r -t 1.304 -s 1 -d 3 -p cbr -e 500 -c 1 -i 229 -a 1 + -t 1.304 -s 3 -d 4 -p cbr -e 500 -c 1 -i 229 -a 1 - -t 1.304 -s 3 -d 4 -p cbr -e 500 -c 1 -i 220 -a 1 h -t 1.304 -s 3 -d 4 -p cbr -e 500 -c 1 -i 220 -a 1 r -t 1.30598 -s 4 -d 3 -p ack -e 40 -c 0 -i 218 -a 0 -S 0 -y {7 7} + -t 1.30598 -s 3 -d 0 -p ack -e 40 -c 0 -i 218 -a 0 -S 0 -y {7 7} - -t 1.30598 -s 3 -d 0 -p ack -e 40 -c 0 -i 218 -a 0 -S 0 -f 0 -m 1 -y {7 7} h -t 1.30598 -s 3 -d 0 -p ack -e 40 -c 0 -i 218 -a 0 -S 0 -y {-1 -1} r -t 1.306 -s 3 -d 4 -p cbr -e 500 -c 1 -i 206 -a 1 + -t 1.306 -s 4 -d 6 -p cbr -e 500 -c 1 -i 206 -a 1 - -t 1.306 -s 4 -d 6 -p cbr -e 500 -c 1 -i 206 -a 1 h -t 1.306 -s 4 -d 6 -p cbr -e 500 -c 1 -i 206 -a 1 r -t 1.30766 -s 5 -d 4 -p ack -e 40 -c 0 -i 230 -a 0 -S 0 -y {11 11} + -t 1.30766 -s 4 -d 3 -p ack -e 40 -c 0 -i 230 -a 0 -S 0 -y {11 11} - -t 1.30766 -s 4 -d 3 -p ack -e 40 -c 0 -i 230 -a 0 -S 0 -y {11 11} h -t 1.30766 -s 4 -d 3 -p ack -e 40 -c 0 -i 230 -a 0 -S 0 -y {-1 -1} r -t 1.308 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 228 -a 1 + -t 1.308 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 228 -a 1 - -t 1.308 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 219 -a 1 h -t 1.308 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 219 -a 1 r -t 1.31 -s 3 -d 4 -p cbr -e 500 -c 1 -i 210 -a 1 + -t 1.31 -s 4 -d 6 -p cbr -e 500 -c 1 -i 210 -a 1 + -t 1.31 -s 1 -d 3 -p cbr -e 500 -c 1 -i 235 -a 1 - -t 1.31 -s 1 -d 3 -p cbr -e 500 -c 1 -i 235 -a 1 h -t 1.31 -s 1 -d 3 -p cbr -e 500 -c 1 -i 235 -a 1 - -t 1.31 -s 4 -d 6 -p cbr -e 500 -c 1 -i 210 -a 1 h -t 1.31 -s 4 -d 6 -p cbr -e 500 -c 1 -i 210 -a 1 r -t 1.31398 -s 4 -d 3 -p ack -e 40 -c 0 -i 221 -a 0 -S 0 -y {8 8} + -t 1.31398 -s 3 -d 0 -p ack -e 40 -c 0 -i 221 -a 0 -S 0 -y {8 8} - -t 1.31398 -s 3 -d 0 -p ack -e 40 -c 0 -i 221 -a 0 -S 0 -f 0 -m 1 -y {8 8} h -t 1.31398 -s 3 -d 0 -p ack -e 40 -c 0 -i 221 -a 0 -S 0 -y {-1 -1} r -t 1.314 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 202 -a 1 r -t 1.314 -s 1 -d 3 -p cbr -e 500 -c 1 -i 231 -a 1 + -t 1.314 -s 3 -d 4 -p cbr -e 500 -c 1 -i 231 -a 1 r -t 1.3156 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 207 -a 0 -S 0 -y {13 13} + -t 1.3156 -s 5 -d 4 -p ack -e 40 -c 0 -i 236 -a 0 -S 0 -y {13 13} - -t 1.3156 -s 5 -d 4 -p ack -e 40 -c 0 -i 236 -a 0 -S 0 -y {13 13} h -t 1.3156 -s 5 -d 4 -p ack -e 40 -c 0 -i 236 -a 0 -S 0 -y {-1 -1} - -t 1.316 -s 3 -d 4 -p cbr -e 500 -c 1 -i 222 -a 1 h -t 1.316 -s 3 -d 4 -p cbr -e 500 -c 1 -i 222 -a 1 r -t 1.318 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 209 -a 1 + -t 1.318 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 209 -a 1 - -t 1.318 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 209 -a 1 h -t 1.318 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 209 -a 1 r -t 1.31966 -s 5 -d 4 -p ack -e 40 -c 0 -i 232 -a 0 -S 0 -y {12 12} + -t 1.31966 -s 4 -d 3 -p ack -e 40 -c 0 -i 232 -a 0 -S 0 -y {12 12} - -t 1.31966 -s 4 -d 3 -p ack -e 40 -c 0 -i 232 -a 0 -S 0 -y {12 12} h -t 1.31966 -s 4 -d 3 -p ack -e 40 -c 0 -i 232 -a 0 -S 0 -y {-1 -1} v -t 1.3200000000000001 sim_annotation 1.3200000000000001 13 Send Packet_15 to 30 : Increase window size to 16 + -t 1.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 237 -a 1 - -t 1.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 237 -a 1 h -t 1.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 237 -a 1 + -t 1.32 -s 1 -d 3 -p cbr -e 500 -c 1 -i 238 -a 1 - -t 1.32 -s 1 -d 3 -p cbr -e 500 -c 1 -i 238 -a 1 h -t 1.32 -s 1 -d 3 -p cbr -e 500 -c 1 -i 238 -a 1 - -t 1.32 -s 3 -d 4 -p cbr -e 500 -c 1 -i 225 -a 1 h -t 1.32 -s 3 -d 4 -p cbr -e 500 -c 1 -i 225 -a 1 r -t 1.322 -s 3 -d 4 -p cbr -e 500 -c 1 -i 211 -a 1 + -t 1.322 -s 4 -d 6 -p cbr -e 500 -c 1 -i 211 -a 1 - -t 1.322 -s 4 -d 6 -p cbr -e 500 -c 1 -i 211 -a 1 h -t 1.322 -s 4 -d 6 -p cbr -e 500 -c 1 -i 211 -a 1 r -t 1.3236 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 208 -a 0 -S 0 -y {14 14} + -t 1.3236 -s 5 -d 4 -p ack -e 40 -c 0 -i 239 -a 0 -S 0 -y {14 14} - -t 1.3236 -s 5 -d 4 -p ack -e 40 -c 0 -i 239 -a 0 -S 0 -y {14 14} h -t 1.3236 -s 5 -d 4 -p ack -e 40 -c 0 -i 239 -a 0 -S 0 -y {-1 -1} r -t 1.324 -s 1 -d 3 -p cbr -e 500 -c 1 -i 234 -a 1 + -t 1.324 -s 3 -d 4 -p cbr -e 500 -c 1 -i 234 -a 1 - -t 1.324 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 224 -a 1 h -t 1.324 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 224 -a 1 r -t 1.32598 -s 4 -d 3 -p ack -e 40 -c 0 -i 223 -a 0 -S 0 -y {9 9} + -t 1.32598 -s 3 -d 0 -p ack -e 40 -c 0 -i 223 -a 0 -S 0 -y {9 9} - -t 1.32598 -s 3 -d 0 -p ack -e 40 -c 0 -i 223 -a 0 -S 0 -f 0 -m 1 -y {9 9} h -t 1.32598 -s 3 -d 0 -p ack -e 40 -c 0 -i 223 -a 0 -S 0 -y {-1 -1} r -t 1.326 -s 3 -d 4 -p cbr -e 500 -c 1 -i 213 -a 1 + -t 1.326 -s 4 -d 6 -p cbr -e 500 -c 1 -i 213 -a 1 - -t 1.326 -s 4 -d 6 -p cbr -e 500 -c 1 -i 213 -a 1 h -t 1.326 -s 4 -d 6 -p cbr -e 500 -c 1 -i 213 -a 1 r -t 1.32605 -s 3 -d 0 -p ack -e 40 -c 0 -i 218 -a 0 -S 0 -y {7 7} f -t 1.32604800000000100 -s 0 -d 5 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v + -t 1.32605 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 240 -a 0 -S 0 -f 0 -m 0 -y {15 15} - -t 1.32605 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 240 -a 0 -S 0 -y {15 15} h -t 1.32605 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 240 -a 0 -S 0 -y {-1 -1} + -t 1.32605 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 241 -a 0 -S 0 -f 0 -m 0 -y {16 16} - -t 1.32765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 241 -a 0 -S 0 -y {16 16} h -t 1.32765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 241 -a 0 -S 0 -y {-1 -1} r -t 1.328 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 233 -a 1 + -t 1.328 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 233 -a 1 r -t 1.33 -s 4 -d 6 -p cbr -e 500 -c 1 -i 206 -a 1 + -t 1.33 -s 1 -d 3 -p cbr -e 500 -c 1 -i 242 -a 1 - -t 1.33 -s 1 -d 3 -p cbr -e 500 -c 1 -i 242 -a 1 h -t 1.33 -s 1 -d 3 -p cbr -e 500 -c 1 -i 242 -a 1 - -t 1.332 -s 3 -d 4 -p cbr -e 500 -c 1 -i 227 -a 1 h -t 1.332 -s 3 -d 4 -p cbr -e 500 -c 1 -i 227 -a 1 r -t 1.33398 -s 4 -d 3 -p ack -e 40 -c 0 -i 226 -a 0 -S 0 -y {10 10} + -t 1.33398 -s 3 -d 0 -p ack -e 40 -c 0 -i 226 -a 0 -S 0 -y {10 10} - -t 1.33398 -s 3 -d 0 -p ack -e 40 -c 0 -i 226 -a 0 -S 0 -f 0 -m 1 -y {10 10} h -t 1.33398 -s 3 -d 0 -p ack -e 40 -c 0 -i 226 -a 0 -S 0 -y {-1 -1} r -t 1.334 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 212 -a 1 + -t 1.334 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 212 -a 1 - -t 1.334 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 212 -a 1 h -t 1.334 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 212 -a 1 r -t 1.334 -s 1 -d 3 -p cbr -e 500 -c 1 -i 235 -a 1 + -t 1.334 -s 3 -d 4 -p cbr -e 500 -c 1 -i 235 -a 1 r -t 1.334 -s 4 -d 6 -p cbr -e 500 -c 1 -i 210 -a 1 r -t 1.33405 -s 3 -d 0 -p ack -e 40 -c 0 -i 221 -a 0 -S 0 -y {8 8} f -t 1.33404800000000101 -s 0 -d 5 -n cwnd_ -a tcp -v 10.000000 -o 9.000000 -T v + -t 1.33405 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 243 -a 0 -S 0 -f 0 -m 0 -y {17 17} - -t 1.33405 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 243 -a 0 -S 0 -y {17 17} h -t 1.33405 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 243 -a 0 -S 0 -y {-1 -1} + -t 1.33405 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 244 -a 0 -S 0 -f 0 -m 0 -y {18 18} - -t 1.33565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 244 -a 0 -S 0 -y {18 18} h -t 1.33565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 244 -a 0 -S 0 -y {-1 -1} r -t 1.33566 -s 5 -d 4 -p ack -e 40 -c 0 -i 236 -a 0 -S 0 -y {13 13} + -t 1.33566 -s 4 -d 3 -p ack -e 40 -c 0 -i 236 -a 0 -S 0 -y {13 13} - -t 1.33566 -s 4 -d 3 -p ack -e 40 -c 0 -i 236 -a 0 -S 0 -y {13 13} h -t 1.33566 -s 4 -d 3 -p ack -e 40 -c 0 -i 236 -a 0 -S 0 -y {-1 -1} - -t 1.336 -s 3 -d 4 -p cbr -e 500 -c 1 -i 229 -a 1 h -t 1.336 -s 3 -d 4 -p cbr -e 500 -c 1 -i 229 -a 1 r -t 1.338 -s 3 -d 4 -p cbr -e 500 -c 1 -i 214 -a 1 + -t 1.338 -s 4 -d 6 -p cbr -e 500 -c 1 -i 214 -a 1 - -t 1.338 -s 4 -d 6 -p cbr -e 500 -c 1 -i 214 -a 1 h -t 1.338 -s 4 -d 6 -p cbr -e 500 -c 1 -i 214 -a 1 + -t 1.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 245 -a 1 - -t 1.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 245 -a 1 h -t 1.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 245 -a 1 + -t 1.34 -s 1 -d 3 -p cbr -e 500 -c 1 -i 246 -a 1 - -t 1.34 -s 1 -d 3 -p cbr -e 500 -c 1 -i 246 -a 1 h -t 1.34 -s 1 -d 3 -p cbr -e 500 -c 1 -i 246 -a 1 - -t 1.34 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 228 -a 1 h -t 1.34 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 228 -a 1 r -t 1.342 -s 3 -d 4 -p cbr -e 500 -c 1 -i 216 -a 1 + -t 1.342 -s 4 -d 6 -p cbr -e 500 -c 1 -i 216 -a 1 - -t 1.342 -s 4 -d 6 -p cbr -e 500 -c 1 -i 216 -a 1 h -t 1.342 -s 4 -d 6 -p cbr -e 500 -c 1 -i 216 -a 1 r -t 1.34366 -s 5 -d 4 -p ack -e 40 -c 0 -i 239 -a 0 -S 0 -y {14 14} + -t 1.34366 -s 4 -d 3 -p ack -e 40 -c 0 -i 239 -a 0 -S 0 -y {14 14} - -t 1.34366 -s 4 -d 3 -p ack -e 40 -c 0 -i 239 -a 0 -S 0 -y {14 14} h -t 1.34366 -s 4 -d 3 -p ack -e 40 -c 0 -i 239 -a 0 -S 0 -y {-1 -1} r -t 1.344 -s 1 -d 3 -p cbr -e 500 -c 1 -i 238 -a 1 + -t 1.344 -s 3 -d 4 -p cbr -e 500 -c 1 -i 238 -a 1 r -t 1.346 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 209 -a 1 r -t 1.346 -s 4 -d 6 -p cbr -e 500 -c 1 -i 211 -a 1 r -t 1.34605 -s 3 -d 0 -p ack -e 40 -c 0 -i 223 -a 0 -S 0 -y {9 9} f -t 1.34604800000000102 -s 0 -d 5 -n cwnd_ -a tcp -v 11.000000 -o 10.000000 -T v + -t 1.34605 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 247 -a 0 -S 0 -f 0 -m 0 -y {19 19} - -t 1.34605 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 247 -a 0 -S 0 -y {19 19} h -t 1.34605 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 247 -a 0 -S 0 -y {-1 -1} + -t 1.34605 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 248 -a 0 -S 0 -f 0 -m 0 -y {20 20} r -t 1.34765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 240 -a 0 -S 0 -y {15 15} + -t 1.34765 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 240 -a 0 -S 0 -y {15 15} - -t 1.34765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 248 -a 0 -S 0 -y {20 20} h -t 1.34765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 248 -a 0 -S 0 -y {-1 -1} r -t 1.348 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 237 -a 1 + -t 1.348 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 237 -a 1 - -t 1.348 -s 3 -d 4 -p cbr -e 500 -c 1 -i 231 -a 1 h -t 1.348 -s 3 -d 4 -p cbr -e 500 -c 1 -i 231 -a 1 r -t 1.34925 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 241 -a 0 -S 0 -y {16 16} + -t 1.34925 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 241 -a 0 -S 0 -y {16 16} r -t 1.35 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 215 -a 1 + -t 1.35 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 215 -a 1 - -t 1.35 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 215 -a 1 h -t 1.35 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 215 -a 1 r -t 1.35 -s 4 -d 6 -p cbr -e 500 -c 1 -i 213 -a 1 + -t 1.35 -s 1 -d 3 -p cbr -e 500 -c 1 -i 249 -a 1 - -t 1.35 -s 1 -d 3 -p cbr -e 500 -c 1 -i 249 -a 1 h -t 1.35 -s 1 -d 3 -p cbr -e 500 -c 1 -i 249 -a 1 - -t 1.352 -s 3 -d 4 -p cbr -e 500 -c 1 -i 234 -a 1 h -t 1.352 -s 3 -d 4 -p cbr -e 500 -c 1 -i 234 -a 1 r -t 1.354 -s 3 -d 4 -p cbr -e 500 -c 1 -i 217 -a 1 + -t 1.354 -s 4 -d 6 -p cbr -e 500 -c 1 -i 217 -a 1 - -t 1.354 -s 4 -d 6 -p cbr -e 500 -c 1 -i 217 -a 1 h -t 1.354 -s 4 -d 6 -p cbr -e 500 -c 1 -i 217 -a 1 r -t 1.354 -s 1 -d 3 -p cbr -e 500 -c 1 -i 242 -a 1 + -t 1.354 -s 3 -d 4 -p cbr -e 500 -c 1 -i 242 -a 1 r -t 1.35405 -s 3 -d 0 -p ack -e 40 -c 0 -i 226 -a 0 -S 0 -y {10 10} f -t 1.35404800000000103 -s 0 -d 5 -n cwnd_ -a tcp -v 12.000000 -o 11.000000 -T v + -t 1.35405 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 250 -a 0 -S 0 -f 0 -m 0 -y {21 21} - -t 1.35405 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 250 -a 0 -S 0 -y {21 21} h -t 1.35405 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 250 -a 0 -S 0 -y {-1 -1} + -t 1.35405 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 251 -a 0 -S 0 -f 0 -m 0 -y {22 22} r -t 1.35565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 243 -a 0 -S 0 -y {17 17} + -t 1.35565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 243 -a 0 -S 0 -y {17 17} - -t 1.35565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 251 -a 0 -S 0 -y {22 22} h -t 1.35565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 251 -a 0 -S 0 -y {-1 -1} - -t 1.356 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 233 -a 1 h -t 1.356 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 233 -a 1 r -t 1.35725 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 244 -a 0 -S 0 -y {18 18} + -t 1.35725 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 244 -a 0 -S 0 -y {18 18} r -t 1.35798 -s 4 -d 3 -p ack -e 40 -c 0 -i 230 -a 0 -S 0 -y {11 11} + -t 1.35798 -s 3 -d 0 -p ack -e 40 -c 0 -i 230 -a 0 -S 0 -y {11 11} - -t 1.35798 -s 3 -d 0 -p ack -e 40 -c 0 -i 230 -a 0 -S 0 -f 0 -m 1 -y {11 11} h -t 1.35798 -s 3 -d 0 -p ack -e 40 -c 0 -i 230 -a 0 -S 0 -y {-1 -1} r -t 1.358 -s 3 -d 4 -p cbr -e 500 -c 1 -i 220 -a 1 + -t 1.358 -s 4 -d 6 -p cbr -e 500 -c 1 -i 220 -a 1 - -t 1.358 -s 4 -d 6 -p cbr -e 500 -c 1 -i 220 -a 1 h -t 1.358 -s 4 -d 6 -p cbr -e 500 -c 1 -i 220 -a 1 + -t 1.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 252 -a 1 - -t 1.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 252 -a 1 h -t 1.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 252 -a 1 + -t 1.36 -s 1 -d 3 -p cbr -e 500 -c 1 -i 253 -a 1 - -t 1.36 -s 1 -d 3 -p cbr -e 500 -c 1 -i 253 -a 1 h -t 1.36 -s 1 -d 3 -p cbr -e 500 -c 1 -i 253 -a 1 r -t 1.362 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 212 -a 1 r -t 1.362 -s 4 -d 6 -p cbr -e 500 -c 1 -i 214 -a 1 r -t 1.364 -s 1 -d 3 -p cbr -e 500 -c 1 -i 246 -a 1 + -t 1.364 -s 3 -d 4 -p cbr -e 500 -c 1 -i 246 -a 1 - -t 1.364 -s 3 -d 4 -p cbr -e 500 -c 1 -i 235 -a 1 h -t 1.364 -s 3 -d 4 -p cbr -e 500 -c 1 -i 235 -a 1 r -t 1.366 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 219 -a 1 + -t 1.366 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 219 -a 1 - -t 1.366 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 219 -a 1 h -t 1.366 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 219 -a 1 r -t 1.366 -s 4 -d 6 -p cbr -e 500 -c 1 -i 216 -a 1 r -t 1.36765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 247 -a 0 -S 0 -y {19 19} + -t 1.36765 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 247 -a 0 -S 0 -y {19 19} r -t 1.368 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 245 -a 1 + -t 1.368 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 245 -a 1 d -t 1.368 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 245 -a 1 - -t 1.368 -s 3 -d 4 -p cbr -e 500 -c 1 -i 238 -a 1 h -t 1.368 -s 3 -d 4 -p cbr -e 500 -c 1 -i 238 -a 1 r -t 1.36925 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 248 -a 0 -S 0 -y {20 20} + -t 1.36925 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 248 -a 0 -S 0 -y {20 20} r -t 1.36998 -s 4 -d 3 -p ack -e 40 -c 0 -i 232 -a 0 -S 0 -y {12 12} + -t 1.36998 -s 3 -d 0 -p ack -e 40 -c 0 -i 232 -a 0 -S 0 -y {12 12} - -t 1.36998 -s 3 -d 0 -p ack -e 40 -c 0 -i 232 -a 0 -S 0 -f 0 -m 1 -y {12 12} h -t 1.36998 -s 3 -d 0 -p ack -e 40 -c 0 -i 232 -a 0 -S 0 -y {-1 -1} r -t 1.37 -s 3 -d 4 -p cbr -e 500 -c 1 -i 222 -a 1 + -t 1.37 -s 4 -d 6 -p cbr -e 500 -c 1 -i 222 -a 1 - -t 1.37 -s 4 -d 6 -p cbr -e 500 -c 1 -i 222 -a 1 h -t 1.37 -s 4 -d 6 -p cbr -e 500 -c 1 -i 222 -a 1 + -t 1.37 -s 1 -d 3 -p cbr -e 500 -c 1 -i 254 -a 1 - -t 1.37 -s 1 -d 3 -p cbr -e 500 -c 1 -i 254 -a 1 h -t 1.37 -s 1 -d 3 -p cbr -e 500 -c 1 -i 254 -a 1 - -t 1.372 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 240 -a 0 -S 0 -y {15 15} h -t 1.372 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 240 -a 0 -S 0 -y {-1 -1} r -t 1.374 -s 3 -d 4 -p cbr -e 500 -c 1 -i 225 -a 1 + -t 1.374 -s 4 -d 6 -p cbr -e 500 -c 1 -i 225 -a 1 r -t 1.374 -s 1 -d 3 -p cbr -e 500 -c 1 -i 249 -a 1 + -t 1.374 -s 3 -d 4 -p cbr -e 500 -c 1 -i 249 -a 1 - -t 1.374 -s 4 -d 6 -p cbr -e 500 -c 1 -i 225 -a 1 h -t 1.374 -s 4 -d 6 -p cbr -e 500 -c 1 -i 225 -a 1 r -t 1.37565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 250 -a 0 -S 0 -y {21 21} + -t 1.37565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 250 -a 0 -S 0 -y {21 21} d -t 1.37565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 250 -a 0 -S 0 -y {21 21} r -t 1.37725 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 251 -a 0 -S 0 -y {22 22} + -t 1.37725 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 251 -a 0 -S 0 -y {22 22} d -t 1.37725 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 251 -a 0 -S 0 -y {22 22} r -t 1.378 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 215 -a 1 r -t 1.378 -s 4 -d 6 -p cbr -e 500 -c 1 -i 217 -a 1 r -t 1.37805 -s 3 -d 0 -p ack -e 40 -c 0 -i 230 -a 0 -S 0 -y {11 11} f -t 1.37804800000000105 -s 0 -d 5 -n cwnd_ -a tcp -v 13.000000 -o 12.000000 -T v + -t 1.37805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 255 -a 0 -S 0 -f 0 -m 0 -y {23 23} - -t 1.37805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 255 -a 0 -S 0 -y {23 23} h -t 1.37805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 255 -a 0 -S 0 -y {-1 -1} + -t 1.37805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 256 -a 0 -S 0 -f 0 -m 0 -y {24 24} - -t 1.37965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 256 -a 0 -S 0 -y {24 24} h -t 1.37965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 256 -a 0 -S 0 -y {-1 -1} + -t 1.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 257 -a 1 - -t 1.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 257 -a 1 h -t 1.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 257 -a 1 + -t 1.38 -s 1 -d 3 -p cbr -e 500 -c 1 -i 258 -a 1 - -t 1.38 -s 1 -d 3 -p cbr -e 500 -c 1 -i 258 -a 1 h -t 1.38 -s 1 -d 3 -p cbr -e 500 -c 1 -i 258 -a 1 - -t 1.38 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 237 -a 1 h -t 1.38 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 237 -a 1 r -t 1.382 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 224 -a 1 + -t 1.382 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 224 -a 1 - -t 1.382 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 224 -a 1 h -t 1.382 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 224 -a 1 r -t 1.382 -s 4 -d 6 -p cbr -e 500 -c 1 -i 220 -a 1 r -t 1.384 -s 1 -d 3 -p cbr -e 500 -c 1 -i 253 -a 1 + -t 1.384 -s 3 -d 4 -p cbr -e 500 -c 1 -i 253 -a 1 r -t 1.38598 -s 4 -d 3 -p ack -e 40 -c 0 -i 236 -a 0 -S 0 -y {13 13} + -t 1.38598 -s 3 -d 0 -p ack -e 40 -c 0 -i 236 -a 0 -S 0 -y {13 13} - -t 1.38598 -s 3 -d 0 -p ack -e 40 -c 0 -i 236 -a 0 -S 0 -f 0 -m 1 -y {13 13} h -t 1.38598 -s 3 -d 0 -p ack -e 40 -c 0 -i 236 -a 0 -S 0 -y {-1 -1} r -t 1.386 -s 3 -d 4 -p cbr -e 500 -c 1 -i 227 -a 1 + -t 1.386 -s 4 -d 6 -p cbr -e 500 -c 1 -i 227 -a 1 - -t 1.386 -s 4 -d 6 -p cbr -e 500 -c 1 -i 227 -a 1 h -t 1.386 -s 4 -d 6 -p cbr -e 500 -c 1 -i 227 -a 1 r -t 1.388 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 252 -a 1 + -t 1.388 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 252 -a 1 d -t 1.388 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 252 -a 1 - -t 1.388 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 241 -a 0 -S 0 -y {16 16} h -t 1.388 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 241 -a 0 -S 0 -y {-1 -1} r -t 1.39 -s 3 -d 4 -p cbr -e 500 -c 1 -i 229 -a 1 + -t 1.39 -s 4 -d 6 -p cbr -e 500 -c 1 -i 229 -a 1 + -t 1.39 -s 1 -d 3 -p cbr -e 500 -c 1 -i 259 -a 1 - -t 1.39 -s 1 -d 3 -p cbr -e 500 -c 1 -i 259 -a 1 h -t 1.39 -s 1 -d 3 -p cbr -e 500 -c 1 -i 259 -a 1 - -t 1.39 -s 4 -d 6 -p cbr -e 500 -c 1 -i 229 -a 1 h -t 1.39 -s 4 -d 6 -p cbr -e 500 -c 1 -i 229 -a 1 r -t 1.39005 -s 3 -d 0 -p ack -e 40 -c 0 -i 232 -a 0 -S 0 -y {12 12} f -t 1.39004800000000106 -s 0 -d 5 -n cwnd_ -a tcp -v 14.000000 -o 13.000000 -T v + -t 1.39005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 260 -a 0 -S 0 -f 0 -m 0 -y {25 25} - -t 1.39005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 260 -a 0 -S 0 -y {25 25} h -t 1.39005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 260 -a 0 -S 0 -y {-1 -1} + -t 1.39005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 261 -a 0 -S 0 -f 0 -m 0 -y {26 26} - -t 1.39165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 261 -a 0 -S 0 -y {26 26} h -t 1.39165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 261 -a 0 -S 0 -y {-1 -1} r -t 1.39398 -s 4 -d 3 -p ack -e 40 -c 0 -i 239 -a 0 -S 0 -y {14 14} + -t 1.39398 -s 3 -d 0 -p ack -e 40 -c 0 -i 239 -a 0 -S 0 -y {14 14} - -t 1.39398 -s 3 -d 0 -p ack -e 40 -c 0 -i 239 -a 0 -S 0 -f 0 -m 1 -y {14 14} h -t 1.39398 -s 3 -d 0 -p ack -e 40 -c 0 -i 239 -a 0 -S 0 -y {-1 -1} r -t 1.394 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 219 -a 1 r -t 1.394 -s 4 -d 6 -p cbr -e 500 -c 1 -i 222 -a 1 r -t 1.394 -s 1 -d 3 -p cbr -e 500 -c 1 -i 254 -a 1 + -t 1.394 -s 3 -d 4 -p cbr -e 500 -c 1 -i 254 -a 1 - -t 1.396 -s 3 -d 4 -p cbr -e 500 -c 1 -i 242 -a 1 h -t 1.396 -s 3 -d 4 -p cbr -e 500 -c 1 -i 242 -a 1 r -t 1.398 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 228 -a 1 + -t 1.398 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 228 -a 1 - -t 1.398 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 228 -a 1 h -t 1.398 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 228 -a 1 r -t 1.398 -s 4 -d 6 -p cbr -e 500 -c 1 -i 225 -a 1 r -t 1.39965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 255 -a 0 -S 0 -y {23 23} + -t 1.39965 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 255 -a 0 -S 0 -y {23 23} + -t 1.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 262 -a 1 - -t 1.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 262 -a 1 h -t 1.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 262 -a 1 + -t 1.4 -s 1 -d 3 -p cbr -e 500 -c 1 -i 263 -a 1 - -t 1.4 -s 1 -d 3 -p cbr -e 500 -c 1 -i 263 -a 1 h -t 1.4 -s 1 -d 3 -p cbr -e 500 -c 1 -i 263 -a 1 - -t 1.4 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 243 -a 0 -S 0 -y {17 17} h -t 1.4 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 243 -a 0 -S 0 -y {-1 -1} r -t 1.40125 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 256 -a 0 -S 0 -y {24 24} + -t 1.40125 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 256 -a 0 -S 0 -y {24 24} r -t 1.402 -s 3 -d 4 -p cbr -e 500 -c 1 -i 231 -a 1 + -t 1.402 -s 4 -d 6 -p cbr -e 500 -c 1 -i 231 -a 1 - -t 1.402 -s 4 -d 6 -p cbr -e 500 -c 1 -i 231 -a 1 h -t 1.402 -s 4 -d 6 -p cbr -e 500 -c 1 -i 231 -a 1 r -t 1.404 -s 1 -d 3 -p cbr -e 500 -c 1 -i 258 -a 1 + -t 1.404 -s 3 -d 4 -p cbr -e 500 -c 1 -i 258 -a 1 d -t 1.404 -s 3 -d 4 -p cbr -e 500 -c 1 -i 258 -a 1 r -t 1.406 -s 3 -d 4 -p cbr -e 500 -c 1 -i 234 -a 1 + -t 1.406 -s 4 -d 6 -p cbr -e 500 -c 1 -i 234 -a 1 - -t 1.406 -s 4 -d 6 -p cbr -e 500 -c 1 -i 234 -a 1 h -t 1.406 -s 4 -d 6 -p cbr -e 500 -c 1 -i 234 -a 1 r -t 1.40605 -s 3 -d 0 -p ack -e 40 -c 0 -i 236 -a 0 -S 0 -y {13 13} f -t 1.40604800000000107 -s 0 -d 5 -n cwnd_ -a tcp -v 15.000000 -o 14.000000 -T v + -t 1.40605 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 264 -a 0 -S 0 -f 0 -m 0 -y {27 27} - -t 1.40605 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 264 -a 0 -S 0 -y {27 27} h -t 1.40605 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 264 -a 0 -S 0 -y {-1 -1} + -t 1.40605 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 265 -a 0 -S 0 -f 0 -m 0 -y {28 28} - -t 1.40765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 265 -a 0 -S 0 -y {28 28} h -t 1.40765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 265 -a 0 -S 0 -y {-1 -1} r -t 1.408 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 257 -a 1 + -t 1.408 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 257 -a 1 d -t 1.408 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 257 -a 1 - -t 1.408 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 244 -a 0 -S 0 -y {18 18} h -t 1.408 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 244 -a 0 -S 0 -y {-1 -1} v -t 1.4099999999999999 sim_annotation 1.4099999999999999 14 Lost Packet_21,22,23,26,27,28,29,30 ! r -t 1.41 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 224 -a 1 r -t 1.41 -s 4 -d 6 -p cbr -e 500 -c 1 -i 227 -a 1 + -t 1.41 -s 1 -d 3 -p cbr -e 500 -c 1 -i 266 -a 1 - -t 1.41 -s 1 -d 3 -p cbr -e 500 -c 1 -i 266 -a 1 h -t 1.41 -s 1 -d 3 -p cbr -e 500 -c 1 -i 266 -a 1 r -t 1.41165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 260 -a 0 -S 0 -y {25 25} + -t 1.41165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 260 -a 0 -S 0 -y {25 25} r -t 1.41325 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 261 -a 0 -S 0 -y {26 26} + -t 1.41325 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 261 -a 0 -S 0 -y {26 26} d -t 1.41325 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 261 -a 0 -S 0 -y {26 26} r -t 1.414 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 233 -a 1 + -t 1.414 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 233 -a 1 - -t 1.414 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 233 -a 1 h -t 1.414 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 233 -a 1 r -t 1.414 -s 1 -d 3 -p cbr -e 500 -c 1 -i 259 -a 1 + -t 1.414 -s 3 -d 4 -p cbr -e 500 -c 1 -i 259 -a 1 d -t 1.414 -s 3 -d 4 -p cbr -e 500 -c 1 -i 259 -a 1 r -t 1.414 -s 4 -d 6 -p cbr -e 500 -c 1 -i 229 -a 1 r -t 1.41405 -s 3 -d 0 -p ack -e 40 -c 0 -i 239 -a 0 -S 0 -y {14 14} f -t 1.41404800000000108 -s 0 -d 5 -n cwnd_ -a tcp -v 16.000000 -o 15.000000 -T v + -t 1.41405 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 267 -a 0 -S 0 -f 0 -m 0 -y {29 29} - -t 1.41405 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 267 -a 0 -S 0 -y {29 29} h -t 1.41405 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 267 -a 0 -S 0 -y {-1 -1} + -t 1.41405 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 268 -a 0 -S 0 -f 0 -m 0 -y {30 30} - -t 1.41565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 268 -a 0 -S 0 -y {30 30} h -t 1.41565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 268 -a 0 -S 0 -y {-1 -1} - -t 1.416 -s 3 -d 4 -p cbr -e 500 -c 1 -i 246 -a 1 h -t 1.416 -s 3 -d 4 -p cbr -e 500 -c 1 -i 246 -a 1 r -t 1.418 -s 3 -d 4 -p cbr -e 500 -c 1 -i 235 -a 1 + -t 1.418 -s 4 -d 6 -p cbr -e 500 -c 1 -i 235 -a 1 - -t 1.418 -s 4 -d 6 -p cbr -e 500 -c 1 -i 235 -a 1 h -t 1.418 -s 4 -d 6 -p cbr -e 500 -c 1 -i 235 -a 1 + -t 1.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 269 -a 1 - -t 1.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 269 -a 1 h -t 1.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 269 -a 1 + -t 1.42 -s 1 -d 3 -p cbr -e 500 -c 1 -i 270 -a 1 - -t 1.42 -s 1 -d 3 -p cbr -e 500 -c 1 -i 270 -a 1 h -t 1.42 -s 1 -d 3 -p cbr -e 500 -c 1 -i 270 -a 1 - -t 1.42 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 247 -a 0 -S 0 -y {19 19} h -t 1.42 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 247 -a 0 -S 0 -y {-1 -1} r -t 1.422 -s 3 -d 4 -p cbr -e 500 -c 1 -i 238 -a 1 + -t 1.422 -s 4 -d 6 -p cbr -e 500 -c 1 -i 238 -a 1 - -t 1.422 -s 4 -d 6 -p cbr -e 500 -c 1 -i 238 -a 1 h -t 1.422 -s 4 -d 6 -p cbr -e 500 -c 1 -i 238 -a 1 r -t 1.424 -s 1 -d 3 -p cbr -e 500 -c 1 -i 263 -a 1 + -t 1.424 -s 3 -d 4 -p cbr -e 500 -c 1 -i 263 -a 1 r -t 1.426 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 228 -a 1 r -t 1.426 -s 4 -d 6 -p cbr -e 500 -c 1 -i 231 -a 1 r -t 1.42765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 264 -a 0 -S 0 -y {27 27} + -t 1.42765 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 264 -a 0 -S 0 -y {27 27} r -t 1.428 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 262 -a 1 + -t 1.428 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 262 -a 1 d -t 1.428 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 262 -a 1 - -t 1.428 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 248 -a 0 -S 0 -y {20 20} h -t 1.428 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 248 -a 0 -S 0 -y {-1 -1} r -t 1.42925 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 265 -a 0 -S 0 -y {28 28} + -t 1.42925 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 265 -a 0 -S 0 -y {28 28} r -t 1.43 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 240 -a 0 -S 0 -y {15 15} + -t 1.43 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 240 -a 0 -S 0 -y {15 15} - -t 1.43 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 240 -a 0 -S 0 -y {15 15} h -t 1.43 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 240 -a 0 -S 0 -y {-1 -1} r -t 1.43 -s 4 -d 6 -p cbr -e 500 -c 1 -i 234 -a 1 + -t 1.43 -s 1 -d 3 -p cbr -e 500 -c 1 -i 271 -a 1 - -t 1.43 -s 1 -d 3 -p cbr -e 500 -c 1 -i 271 -a 1 h -t 1.43 -s 1 -d 3 -p cbr -e 500 -c 1 -i 271 -a 1 r -t 1.434 -s 1 -d 3 -p cbr -e 500 -c 1 -i 266 -a 1 + -t 1.434 -s 3 -d 4 -p cbr -e 500 -c 1 -i 266 -a 1 d -t 1.434 -s 3 -d 4 -p cbr -e 500 -c 1 -i 266 -a 1 r -t 1.43565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 267 -a 0 -S 0 -y {29 29} + -t 1.43565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 267 -a 0 -S 0 -y {29 29} d -t 1.43565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 267 -a 0 -S 0 -y {29 29} - -t 1.436 -s 3 -d 4 -p cbr -e 500 -c 1 -i 249 -a 1 h -t 1.436 -s 3 -d 4 -p cbr -e 500 -c 1 -i 249 -a 1 r -t 1.43725 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 268 -a 0 -S 0 -y {30 30} + -t 1.43725 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 268 -a 0 -S 0 -y {30 30} r -t 1.438 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 237 -a 1 + -t 1.438 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 237 -a 1 - -t 1.438 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 237 -a 1 h -t 1.438 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 237 -a 1 + -t 1.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 272 -a 1 - -t 1.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 272 -a 1 h -t 1.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 272 -a 1 + -t 1.44 -s 1 -d 3 -p cbr -e 500 -c 1 -i 273 -a 1 - -t 1.44 -s 1 -d 3 -p cbr -e 500 -c 1 -i 273 -a 1 h -t 1.44 -s 1 -d 3 -p cbr -e 500 -c 1 -i 273 -a 1 - -t 1.44 -s 3 -d 4 -p cbr -e 500 -c 1 -i 253 -a 1 h -t 1.44 -s 3 -d 4 -p cbr -e 500 -c 1 -i 253 -a 1 r -t 1.442 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 233 -a 1 r -t 1.442 -s 4 -d 6 -p cbr -e 500 -c 1 -i 235 -a 1 r -t 1.444 -s 1 -d 3 -p cbr -e 500 -c 1 -i 270 -a 1 + -t 1.444 -s 3 -d 4 -p cbr -e 500 -c 1 -i 270 -a 1 - -t 1.444 -s 3 -d 4 -p cbr -e 500 -c 1 -i 254 -a 1 h -t 1.444 -s 3 -d 4 -p cbr -e 500 -c 1 -i 254 -a 1 r -t 1.446 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 241 -a 0 -S 0 -y {16 16} + -t 1.446 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 241 -a 0 -S 0 -y {16 16} - -t 1.446 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 241 -a 0 -S 0 -y {16 16} h -t 1.446 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 241 -a 0 -S 0 -y {-1 -1} r -t 1.446 -s 4 -d 6 -p cbr -e 500 -c 1 -i 238 -a 1 r -t 1.448 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 269 -a 1 + -t 1.448 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 269 -a 1 - -t 1.448 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 255 -a 0 -S 0 -y {23 23} h -t 1.448 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 255 -a 0 -S 0 -y {-1 -1} r -t 1.45 -s 3 -d 4 -p cbr -e 500 -c 1 -i 242 -a 1 + -t 1.45 -s 4 -d 6 -p cbr -e 500 -c 1 -i 242 -a 1 - -t 1.45 -s 4 -d 6 -p cbr -e 500 -c 1 -i 242 -a 1 h -t 1.45 -s 4 -d 6 -p cbr -e 500 -c 1 -i 242 -a 1 + -t 1.45 -s 1 -d 3 -p cbr -e 500 -c 1 -i 274 -a 1 - -t 1.45 -s 1 -d 3 -p cbr -e 500 -c 1 -i 274 -a 1 h -t 1.45 -s 1 -d 3 -p cbr -e 500 -c 1 -i 274 -a 1 r -t 1.4516 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 240 -a 0 -S 0 -y {15 15} + -t 1.4516 -s 5 -d 4 -p ack -e 40 -c 0 -i 275 -a 0 -S 0 -y {15 15} - -t 1.4516 -s 5 -d 4 -p ack -e 40 -c 0 -i 275 -a 0 -S 0 -y {15 15} h -t 1.4516 -s 5 -d 4 -p ack -e 40 -c 0 -i 275 -a 0 -S 0 -y {-1 -1} r -t 1.454 -s 1 -d 3 -p cbr -e 500 -c 1 -i 271 -a 1 + -t 1.454 -s 3 -d 4 -p cbr -e 500 -c 1 -i 271 -a 1 - -t 1.456 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 256 -a 0 -S 0 -y {24 24} h -t 1.456 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 256 -a 0 -S 0 -y {-1 -1} r -t 1.458 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 243 -a 0 -S 0 -y {17 17} + -t 1.458 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 243 -a 0 -S 0 -y {17 17} - -t 1.458 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 243 -a 0 -S 0 -y {17 17} h -t 1.458 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 243 -a 0 -S 0 -y {-1 -1} v -t 1.46 sim_annotation 1.46 15 8 Ack_20s + -t 1.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 276 -a 1 - -t 1.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 276 -a 1 h -t 1.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 276 -a 1 + -t 1.46 -s 1 -d 3 -p cbr -e 500 -c 1 -i 277 -a 1 - -t 1.46 -s 1 -d 3 -p cbr -e 500 -c 1 -i 277 -a 1 h -t 1.46 -s 1 -d 3 -p cbr -e 500 -c 1 -i 277 -a 1 r -t 1.464 -s 1 -d 3 -p cbr -e 500 -c 1 -i 273 -a 1 + -t 1.464 -s 3 -d 4 -p cbr -e 500 -c 1 -i 273 -a 1 - -t 1.464 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 260 -a 0 -S 0 -y {25 25} h -t 1.464 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 260 -a 0 -S 0 -y {-1 -1} r -t 1.466 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 244 -a 0 -S 0 -y {18 18} + -t 1.466 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 244 -a 0 -S 0 -y {18 18} - -t 1.466 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 244 -a 0 -S 0 -y {18 18} h -t 1.466 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 244 -a 0 -S 0 -y {-1 -1} r -t 1.466 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 237 -a 1 r -t 1.4676 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 241 -a 0 -S 0 -y {16 16} + -t 1.4676 -s 5 -d 4 -p ack -e 40 -c 0 -i 278 -a 0 -S 0 -y {16 16} - -t 1.4676 -s 5 -d 4 -p ack -e 40 -c 0 -i 278 -a 0 -S 0 -y {16 16} h -t 1.4676 -s 5 -d 4 -p ack -e 40 -c 0 -i 278 -a 0 -S 0 -y {-1 -1} r -t 1.468 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 272 -a 1 + -t 1.468 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 272 -a 1 r -t 1.47 -s 3 -d 4 -p cbr -e 500 -c 1 -i 246 -a 1 + -t 1.47 -s 4 -d 6 -p cbr -e 500 -c 1 -i 246 -a 1 - -t 1.47 -s 4 -d 6 -p cbr -e 500 -c 1 -i 246 -a 1 h -t 1.47 -s 4 -d 6 -p cbr -e 500 -c 1 -i 246 -a 1 + -t 1.47 -s 1 -d 3 -p cbr -e 500 -c 1 -i 279 -a 1 - -t 1.47 -s 1 -d 3 -p cbr -e 500 -c 1 -i 279 -a 1 h -t 1.47 -s 1 -d 3 -p cbr -e 500 -c 1 -i 279 -a 1 r -t 1.47166 -s 5 -d 4 -p ack -e 40 -c 0 -i 275 -a 0 -S 0 -y {15 15} + -t 1.47166 -s 4 -d 3 -p ack -e 40 -c 0 -i 275 -a 0 -S 0 -y {15 15} - -t 1.47166 -s 4 -d 3 -p ack -e 40 -c 0 -i 275 -a 0 -S 0 -y {15 15} h -t 1.47166 -s 4 -d 3 -p ack -e 40 -c 0 -i 275 -a 0 -S 0 -y {-1 -1} - -t 1.472 -s 3 -d 4 -p cbr -e 500 -c 1 -i 263 -a 1 h -t 1.472 -s 3 -d 4 -p cbr -e 500 -c 1 -i 263 -a 1 r -t 1.474 -s 4 -d 6 -p cbr -e 500 -c 1 -i 242 -a 1 r -t 1.474 -s 1 -d 3 -p cbr -e 500 -c 1 -i 274 -a 1 + -t 1.474 -s 3 -d 4 -p cbr -e 500 -c 1 -i 274 -a 1 - -t 1.476 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 264 -a 0 -S 0 -y {27 27} h -t 1.476 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 264 -a 0 -S 0 -y {-1 -1} r -t 1.478 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 247 -a 0 -S 0 -y {19 19} + -t 1.478 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 247 -a 0 -S 0 -y {19 19} - -t 1.478 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 247 -a 0 -S 0 -y {19 19} h -t 1.478 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 247 -a 0 -S 0 -y {-1 -1} r -t 1.4796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 243 -a 0 -S 0 -y {17 17} + -t 1.4796 -s 5 -d 4 -p ack -e 40 -c 0 -i 280 -a 0 -S 0 -y {17 17} - -t 1.4796 -s 5 -d 4 -p ack -e 40 -c 0 -i 280 -a 0 -S 0 -y {17 17} h -t 1.4796 -s 5 -d 4 -p ack -e 40 -c 0 -i 280 -a 0 -S 0 -y {-1 -1} + -t 1.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 281 -a 1 - -t 1.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 281 -a 1 h -t 1.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 281 -a 1 + -t 1.48 -s 1 -d 3 -p cbr -e 500 -c 1 -i 282 -a 1 - -t 1.48 -s 1 -d 3 -p cbr -e 500 -c 1 -i 282 -a 1 h -t 1.48 -s 1 -d 3 -p cbr -e 500 -c 1 -i 282 -a 1 r -t 1.484 -s 1 -d 3 -p cbr -e 500 -c 1 -i 277 -a 1 + -t 1.484 -s 3 -d 4 -p cbr -e 500 -c 1 -i 277 -a 1 - -t 1.484 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 265 -a 0 -S 0 -y {28 28} h -t 1.484 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 265 -a 0 -S 0 -y {-1 -1} r -t 1.486 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 248 -a 0 -S 0 -y {20 20} + -t 1.486 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 248 -a 0 -S 0 -y {20 20} - -t 1.486 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 248 -a 0 -S 0 -y {20 20} h -t 1.486 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 248 -a 0 -S 0 -y {-1 -1} r -t 1.4876 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 244 -a 0 -S 0 -y {18 18} + -t 1.4876 -s 5 -d 4 -p ack -e 40 -c 0 -i 283 -a 0 -S 0 -y {18 18} - -t 1.4876 -s 5 -d 4 -p ack -e 40 -c 0 -i 283 -a 0 -S 0 -y {18 18} h -t 1.4876 -s 5 -d 4 -p ack -e 40 -c 0 -i 283 -a 0 -S 0 -y {-1 -1} r -t 1.48766 -s 5 -d 4 -p ack -e 40 -c 0 -i 278 -a 0 -S 0 -y {16 16} + -t 1.48766 -s 4 -d 3 -p ack -e 40 -c 0 -i 278 -a 0 -S 0 -y {16 16} - -t 1.48766 -s 4 -d 3 -p ack -e 40 -c 0 -i 278 -a 0 -S 0 -y {16 16} h -t 1.48766 -s 4 -d 3 -p ack -e 40 -c 0 -i 278 -a 0 -S 0 -y {-1 -1} r -t 1.488 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 276 -a 1 + -t 1.488 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 276 -a 1 r -t 1.49 -s 3 -d 4 -p cbr -e 500 -c 1 -i 249 -a 1 + -t 1.49 -s 4 -d 6 -p cbr -e 500 -c 1 -i 249 -a 1 - -t 1.49 -s 4 -d 6 -p cbr -e 500 -c 1 -i 249 -a 1 h -t 1.49 -s 4 -d 6 -p cbr -e 500 -c 1 -i 249 -a 1 + -t 1.49 -s 1 -d 3 -p cbr -e 500 -c 1 -i 284 -a 1 - -t 1.49 -s 1 -d 3 -p cbr -e 500 -c 1 -i 284 -a 1 h -t 1.49 -s 1 -d 3 -p cbr -e 500 -c 1 -i 284 -a 1 - -t 1.492 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 268 -a 0 -S 0 -y {30 30} h -t 1.492 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 268 -a 0 -S 0 -y {-1 -1} r -t 1.494 -s 3 -d 4 -p cbr -e 500 -c 1 -i 253 -a 1 + -t 1.494 -s 4 -d 6 -p cbr -e 500 -c 1 -i 253 -a 1 r -t 1.494 -s 4 -d 6 -p cbr -e 500 -c 1 -i 246 -a 1 r -t 1.494 -s 1 -d 3 -p cbr -e 500 -c 1 -i 279 -a 1 + -t 1.494 -s 3 -d 4 -p cbr -e 500 -c 1 -i 279 -a 1 - -t 1.494 -s 4 -d 6 -p cbr -e 500 -c 1 -i 253 -a 1 h -t 1.494 -s 4 -d 6 -p cbr -e 500 -c 1 -i 253 -a 1 r -t 1.498 -s 3 -d 4 -p cbr -e 500 -c 1 -i 254 -a 1 + -t 1.498 -s 4 -d 6 -p cbr -e 500 -c 1 -i 254 -a 1 - -t 1.498 -s 4 -d 6 -p cbr -e 500 -c 1 -i 254 -a 1 h -t 1.498 -s 4 -d 6 -p cbr -e 500 -c 1 -i 254 -a 1 r -t 1.4996 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 247 -a 0 -S 0 -y {19 19} + -t 1.4996 -s 5 -d 4 -p ack -e 40 -c 0 -i 285 -a 0 -S 0 -y {19 19} - -t 1.4996 -s 5 -d 4 -p ack -e 40 -c 0 -i 285 -a 0 -S 0 -y {19 19} h -t 1.4996 -s 5 -d 4 -p ack -e 40 -c 0 -i 285 -a 0 -S 0 -y {-1 -1} r -t 1.49966 -s 5 -d 4 -p ack -e 40 -c 0 -i 280 -a 0 -S 0 -y {17 17} + -t 1.49966 -s 4 -d 3 -p ack -e 40 -c 0 -i 280 -a 0 -S 0 -y {17 17} - -t 1.49966 -s 4 -d 3 -p ack -e 40 -c 0 -i 280 -a 0 -S 0 -y {17 17} h -t 1.49966 -s 4 -d 3 -p ack -e 40 -c 0 -i 280 -a 0 -S 0 -y {-1 -1} + -t 1.5 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 286 -a 1 - -t 1.5 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 286 -a 1 h -t 1.5 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 286 -a 1 + -t 1.5 -s 1 -d 3 -p cbr -e 500 -c 1 -i 287 -a 1 - -t 1.5 -s 1 -d 3 -p cbr -e 500 -c 1 -i 287 -a 1 h -t 1.5 -s 1 -d 3 -p cbr -e 500 -c 1 -i 287 -a 1 - -t 1.5 -s 3 -d 4 -p cbr -e 500 -c 1 -i 270 -a 1 h -t 1.5 -s 3 -d 4 -p cbr -e 500 -c 1 -i 270 -a 1 r -t 1.504 -s 1 -d 3 -p cbr -e 500 -c 1 -i 282 -a 1 + -t 1.504 -s 3 -d 4 -p cbr -e 500 -c 1 -i 282 -a 1 - -t 1.504 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 269 -a 1 h -t 1.504 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 269 -a 1 r -t 1.506 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 255 -a 0 -S 0 -y {23 23} + -t 1.506 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 255 -a 0 -S 0 -y {23 23} - -t 1.506 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 255 -a 0 -S 0 -y {23 23} h -t 1.506 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 255 -a 0 -S 0 -y {-1 -1} r -t 1.5076 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 248 -a 0 -S 0 -y {20 20} + -t 1.5076 -s 5 -d 4 -p ack -e 40 -c 0 -i 288 -a 0 -S 0 -y {20 20} - -t 1.5076 -s 5 -d 4 -p ack -e 40 -c 0 -i 288 -a 0 -S 0 -y {20 20} h -t 1.5076 -s 5 -d 4 -p ack -e 40 -c 0 -i 288 -a 0 -S 0 -y {-1 -1} r -t 1.50766 -s 5 -d 4 -p ack -e 40 -c 0 -i 283 -a 0 -S 0 -y {18 18} + -t 1.50766 -s 4 -d 3 -p ack -e 40 -c 0 -i 283 -a 0 -S 0 -y {18 18} - -t 1.50766 -s 4 -d 3 -p ack -e 40 -c 0 -i 283 -a 0 -S 0 -y {18 18} h -t 1.50766 -s 4 -d 3 -p ack -e 40 -c 0 -i 283 -a 0 -S 0 -y {-1 -1} r -t 1.508 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 281 -a 1 + -t 1.508 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 281 -a 1 - -t 1.512 -s 3 -d 4 -p cbr -e 500 -c 1 -i 271 -a 1 h -t 1.512 -s 3 -d 4 -p cbr -e 500 -c 1 -i 271 -a 1 r -t 1.514 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 256 -a 0 -S 0 -y {24 24} + -t 1.514 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 256 -a 0 -S 0 -y {24 24} - -t 1.514 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 256 -a 0 -S 0 -y {24 24} h -t 1.514 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 256 -a 0 -S 0 -y {-1 -1} r -t 1.514 -s 4 -d 6 -p cbr -e 500 -c 1 -i 249 -a 1 r -t 1.514 -s 1 -d 3 -p cbr -e 500 -c 1 -i 284 -a 1 + -t 1.514 -s 3 -d 4 -p cbr -e 500 -c 1 -i 284 -a 1 - -t 1.516 -s 3 -d 4 -p cbr -e 500 -c 1 -i 273 -a 1 h -t 1.516 -s 3 -d 4 -p cbr -e 500 -c 1 -i 273 -a 1 r -t 1.518 -s 4 -d 6 -p cbr -e 500 -c 1 -i 253 -a 1 r -t 1.51966 -s 5 -d 4 -p ack -e 40 -c 0 -i 285 -a 0 -S 0 -y {19 19} + -t 1.51966 -s 4 -d 3 -p ack -e 40 -c 0 -i 285 -a 0 -S 0 -y {19 19} - -t 1.51966 -s 4 -d 3 -p ack -e 40 -c 0 -i 285 -a 0 -S 0 -y {19 19} h -t 1.51966 -s 4 -d 3 -p ack -e 40 -c 0 -i 285 -a 0 -S 0 -y {-1 -1} + -t 1.52 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 289 -a 1 - -t 1.52 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 289 -a 1 h -t 1.52 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 289 -a 1 + -t 1.52 -s 1 -d 3 -p cbr -e 500 -c 1 -i 290 -a 1 - -t 1.52 -s 1 -d 3 -p cbr -e 500 -c 1 -i 290 -a 1 h -t 1.52 -s 1 -d 3 -p cbr -e 500 -c 1 -i 290 -a 1 - -t 1.52 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 272 -a 1 h -t 1.52 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 272 -a 1 r -t 1.52198 -s 4 -d 3 -p ack -e 40 -c 0 -i 275 -a 0 -S 0 -y {15 15} + -t 1.52198 -s 3 -d 0 -p ack -e 40 -c 0 -i 275 -a 0 -S 0 -y {15 15} - -t 1.52198 -s 3 -d 0 -p ack -e 40 -c 0 -i 275 -a 0 -S 0 -f 0 -m 1 -y {15 15} h -t 1.52198 -s 3 -d 0 -p ack -e 40 -c 0 -i 275 -a 0 -S 0 -y {-1 -1} r -t 1.522 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 260 -a 0 -S 0 -y {25 25} + -t 1.522 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 260 -a 0 -S 0 -y {25 25} - -t 1.522 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 260 -a 0 -S 0 -y {25 25} h -t 1.522 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 260 -a 0 -S 0 -y {-1 -1} r -t 1.522 -s 4 -d 6 -p cbr -e 500 -c 1 -i 254 -a 1 r -t 1.524 -s 1 -d 3 -p cbr -e 500 -c 1 -i 287 -a 1 + -t 1.524 -s 3 -d 4 -p cbr -e 500 -c 1 -i 287 -a 1 r -t 1.526 -s 3 -d 4 -p cbr -e 500 -c 1 -i 263 -a 1 + -t 1.526 -s 4 -d 6 -p cbr -e 500 -c 1 -i 263 -a 1 - -t 1.526 -s 4 -d 6 -p cbr -e 500 -c 1 -i 263 -a 1 h -t 1.526 -s 4 -d 6 -p cbr -e 500 -c 1 -i 263 -a 1 r -t 1.5276 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 255 -a 0 -S 0 -y {23 23} + -t 1.5276 -s 5 -d 4 -p ack -e 40 -c 0 -i 291 -a 0 -S 0 -y {20 20} - -t 1.5276 -s 5 -d 4 -p ack -e 40 -c 0 -i 291 -a 0 -S 0 -y {20 20} h -t 1.5276 -s 5 -d 4 -p ack -e 40 -c 0 -i 291 -a 0 -S 0 -y {-1 -1} r -t 1.52766 -s 5 -d 4 -p ack -e 40 -c 0 -i 288 -a 0 -S 0 -y {20 20} + -t 1.52766 -s 4 -d 3 -p ack -e 40 -c 0 -i 288 -a 0 -S 0 -y {20 20} - -t 1.52766 -s 4 -d 3 -p ack -e 40 -c 0 -i 288 -a 0 -S 0 -y {20 20} h -t 1.52766 -s 4 -d 3 -p ack -e 40 -c 0 -i 288 -a 0 -S 0 -y {-1 -1} r -t 1.528 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 286 -a 1 + -t 1.528 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 286 -a 1 - -t 1.528 -s 3 -d 4 -p cbr -e 500 -c 1 -i 274 -a 1 h -t 1.528 -s 3 -d 4 -p cbr -e 500 -c 1 -i 274 -a 1 - -t 1.532 -s 3 -d 4 -p cbr -e 500 -c 1 -i 277 -a 1 h -t 1.532 -s 3 -d 4 -p cbr -e 500 -c 1 -i 277 -a 1 r -t 1.534 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 264 -a 0 -S 0 -y {27 27} + -t 1.534 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 264 -a 0 -S 0 -y {27 27} - -t 1.534 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 264 -a 0 -S 0 -y {27 27} h -t 1.534 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 264 -a 0 -S 0 -y {-1 -1} r -t 1.5356 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 256 -a 0 -S 0 -y {24 24} + -t 1.5356 -s 5 -d 4 -p ack -e 40 -c 0 -i 292 -a 0 -S 0 -y {20 20} - -t 1.5356 -s 5 -d 4 -p ack -e 40 -c 0 -i 292 -a 0 -S 0 -y {20 20} h -t 1.5356 -s 5 -d 4 -p ack -e 40 -c 0 -i 292 -a 0 -S 0 -y {-1 -1} - -t 1.536 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 276 -a 1 h -t 1.536 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 276 -a 1 r -t 1.53798 -s 4 -d 3 -p ack -e 40 -c 0 -i 278 -a 0 -S 0 -y {16 16} + -t 1.53798 -s 3 -d 0 -p ack -e 40 -c 0 -i 278 -a 0 -S 0 -y {16 16} - -t 1.53798 -s 3 -d 0 -p ack -e 40 -c 0 -i 278 -a 0 -S 0 -f 0 -m 1 -y {16 16} h -t 1.53798 -s 3 -d 0 -p ack -e 40 -c 0 -i 278 -a 0 -S 0 -y {-1 -1} + -t 1.54 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 293 -a 1 - -t 1.54 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 293 -a 1 h -t 1.54 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 293 -a 1 + -t 1.54 -s 1 -d 3 -p cbr -e 500 -c 1 -i 294 -a 1 - -t 1.54 -s 1 -d 3 -p cbr -e 500 -c 1 -i 294 -a 1 h -t 1.54 -s 1 -d 3 -p cbr -e 500 -c 1 -i 294 -a 1 r -t 1.542 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 265 -a 0 -S 0 -y {28 28} + -t 1.542 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 265 -a 0 -S 0 -y {28 28} - -t 1.542 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 265 -a 0 -S 0 -y {28 28} h -t 1.542 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 265 -a 0 -S 0 -y {-1 -1} r -t 1.54205 -s 3 -d 0 -p ack -e 40 -c 0 -i 275 -a 0 -S 0 -y {15 15} f -t 1.54204800000000120 -s 0 -d 5 -n cwnd_ -a tcp -v 17.000000 -o 16.000000 -T v + -t 1.54205 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 295 -a 0 -S 0 -f 0 -m 0 -y {31 31} - -t 1.54205 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 295 -a 0 -S 0 -y {31 31} h -t 1.54205 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 295 -a 0 -S 0 -y {-1 -1} + -t 1.54205 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 296 -a 0 -S 0 -f 0 -m 0 -y {32 32} r -t 1.5436 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 260 -a 0 -S 0 -y {25 25} + -t 1.5436 -s 5 -d 4 -p ack -e 40 -c 0 -i 297 -a 0 -S 0 -y {20 20} - -t 1.5436 -s 5 -d 4 -p ack -e 40 -c 0 -i 297 -a 0 -S 0 -y {20 20} h -t 1.5436 -s 5 -d 4 -p ack -e 40 -c 0 -i 297 -a 0 -S 0 -y {-1 -1} - -t 1.54365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 296 -a 0 -S 0 -y {32 32} h -t 1.54365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 296 -a 0 -S 0 -y {-1 -1} r -t 1.544 -s 1 -d 3 -p cbr -e 500 -c 1 -i 290 -a 1 + -t 1.544 -s 3 -d 4 -p cbr -e 500 -c 1 -i 290 -a 1 - -t 1.544 -s 3 -d 4 -p cbr -e 500 -c 1 -i 279 -a 1 h -t 1.544 -s 3 -d 4 -p cbr -e 500 -c 1 -i 279 -a 1 r -t 1.54766 -s 5 -d 4 -p ack -e 40 -c 0 -i 291 -a 0 -S 0 -y {20 20} + -t 1.54766 -s 4 -d 3 -p ack -e 40 -c 0 -i 291 -a 0 -S 0 -y {20 20} - -t 1.54766 -s 4 -d 3 -p ack -e 40 -c 0 -i 291 -a 0 -S 0 -y {20 20} h -t 1.54766 -s 4 -d 3 -p ack -e 40 -c 0 -i 291 -a 0 -S 0 -y {-1 -1} r -t 1.548 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 289 -a 1 + -t 1.548 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 289 -a 1 - -t 1.548 -s 3 -d 4 -p cbr -e 500 -c 1 -i 282 -a 1 h -t 1.548 -s 3 -d 4 -p cbr -e 500 -c 1 -i 282 -a 1 r -t 1.54998 -s 4 -d 3 -p ack -e 40 -c 0 -i 280 -a 0 -S 0 -y {17 17} + -t 1.54998 -s 3 -d 0 -p ack -e 40 -c 0 -i 280 -a 0 -S 0 -y {17 17} - -t 1.54998 -s 3 -d 0 -p ack -e 40 -c 0 -i 280 -a 0 -S 0 -f 0 -m 1 -y {17 17} h -t 1.54998 -s 3 -d 0 -p ack -e 40 -c 0 -i 280 -a 0 -S 0 -y {-1 -1} v -t 1.55 sim_annotation 1.55 16 Send Packet_31 to 39 r -t 1.55 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 268 -a 0 -S 0 -y {30 30} + -t 1.55 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 268 -a 0 -S 0 -y {30 30} - -t 1.55 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 268 -a 0 -S 0 -y {30 30} h -t 1.55 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 268 -a 0 -S 0 -y {-1 -1} r -t 1.55 -s 4 -d 6 -p cbr -e 500 -c 1 -i 263 -a 1 - -t 1.552 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 281 -a 1 h -t 1.552 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 281 -a 1 r -t 1.554 -s 3 -d 4 -p cbr -e 500 -c 1 -i 270 -a 1 + -t 1.554 -s 4 -d 6 -p cbr -e 500 -c 1 -i 270 -a 1 - -t 1.554 -s 4 -d 6 -p cbr -e 500 -c 1 -i 270 -a 1 h -t 1.554 -s 4 -d 6 -p cbr -e 500 -c 1 -i 270 -a 1 r -t 1.5556 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 264 -a 0 -S 0 -y {27 27} + -t 1.5556 -s 5 -d 4 -p ack -e 40 -c 0 -i 298 -a 0 -S 0 -y {20 20} - -t 1.5556 -s 5 -d 4 -p ack -e 40 -c 0 -i 298 -a 0 -S 0 -y {20 20} h -t 1.5556 -s 5 -d 4 -p ack -e 40 -c 0 -i 298 -a 0 -S 0 -y {-1 -1} r -t 1.55566 -s 5 -d 4 -p ack -e 40 -c 0 -i 292 -a 0 -S 0 -y {20 20} + -t 1.55566 -s 4 -d 3 -p ack -e 40 -c 0 -i 292 -a 0 -S 0 -y {20 20} - -t 1.55566 -s 4 -d 3 -p ack -e 40 -c 0 -i 292 -a 0 -S 0 -y {20 20} h -t 1.55566 -s 4 -d 3 -p ack -e 40 -c 0 -i 292 -a 0 -S 0 -y {-1 -1} r -t 1.55798 -s 4 -d 3 -p ack -e 40 -c 0 -i 283 -a 0 -S 0 -y {18 18} + -t 1.55798 -s 3 -d 0 -p ack -e 40 -c 0 -i 283 -a 0 -S 0 -y {18 18} - -t 1.55798 -s 3 -d 0 -p ack -e 40 -c 0 -i 283 -a 0 -S 0 -f 0 -m 1 -y {18 18} h -t 1.55798 -s 3 -d 0 -p ack -e 40 -c 0 -i 283 -a 0 -S 0 -y {-1 -1} r -t 1.55805 -s 3 -d 0 -p ack -e 40 -c 0 -i 278 -a 0 -S 0 -y {16 16} f -t 1.55804800000000121 -s 0 -d 5 -n cwnd_ -a tcp -v 18.000000 -o 17.000000 -T v + -t 1.55805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 299 -a 0 -S 0 -f 0 -m 0 -y {33 33} - -t 1.55805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 299 -a 0 -S 0 -y {33 33} h -t 1.55805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 299 -a 0 -S 0 -y {-1 -1} + -t 1.55805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 300 -a 0 -S 0 -f 0 -m 0 -y {34 34} - -t 1.55965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 300 -a 0 -S 0 -y {34 34} h -t 1.55965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 300 -a 0 -S 0 -y {-1 -1} + -t 1.56 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 301 -a 1 - -t 1.56 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 301 -a 1 h -t 1.56 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 301 -a 1 + -t 1.56 -s 1 -d 3 -p cbr -e 500 -c 1 -i 302 -a 1 - -t 1.56 -s 1 -d 3 -p cbr -e 500 -c 1 -i 302 -a 1 h -t 1.56 -s 1 -d 3 -p cbr -e 500 -c 1 -i 302 -a 1 - -t 1.56 -s 3 -d 4 -p cbr -e 500 -c 1 -i 284 -a 1 h -t 1.56 -s 3 -d 4 -p cbr -e 500 -c 1 -i 284 -a 1 r -t 1.562 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 269 -a 1 + -t 1.562 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 269 -a 1 - -t 1.562 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 269 -a 1 h -t 1.562 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 269 -a 1 r -t 1.5636 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 265 -a 0 -S 0 -y {28 28} + -t 1.5636 -s 5 -d 4 -p ack -e 40 -c 0 -i 303 -a 0 -S 0 -y {20 20} - -t 1.5636 -s 5 -d 4 -p ack -e 40 -c 0 -i 303 -a 0 -S 0 -y {20 20} h -t 1.5636 -s 5 -d 4 -p ack -e 40 -c 0 -i 303 -a 0 -S 0 -y {-1 -1} r -t 1.56365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 295 -a 0 -S 0 -y {31 31} + -t 1.56365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 295 -a 0 -S 0 -y {31 31} r -t 1.56366 -s 5 -d 4 -p ack -e 40 -c 0 -i 297 -a 0 -S 0 -y {20 20} + -t 1.56366 -s 4 -d 3 -p ack -e 40 -c 0 -i 297 -a 0 -S 0 -y {20 20} - -t 1.56366 -s 4 -d 3 -p ack -e 40 -c 0 -i 297 -a 0 -S 0 -y {20 20} h -t 1.56366 -s 4 -d 3 -p ack -e 40 -c 0 -i 297 -a 0 -S 0 -y {-1 -1} r -t 1.564 -s 1 -d 3 -p cbr -e 500 -c 1 -i 294 -a 1 + -t 1.564 -s 3 -d 4 -p cbr -e 500 -c 1 -i 294 -a 1 - -t 1.564 -s 3 -d 4 -p cbr -e 500 -c 1 -i 287 -a 1 h -t 1.564 -s 3 -d 4 -p cbr -e 500 -c 1 -i 287 -a 1 r -t 1.56525 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 296 -a 0 -S 0 -y {32 32} + -t 1.56525 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 296 -a 0 -S 0 -y {32 32} r -t 1.566 -s 3 -d 4 -p cbr -e 500 -c 1 -i 271 -a 1 + -t 1.566 -s 4 -d 6 -p cbr -e 500 -c 1 -i 271 -a 1 - -t 1.566 -s 4 -d 6 -p cbr -e 500 -c 1 -i 271 -a 1 h -t 1.566 -s 4 -d 6 -p cbr -e 500 -c 1 -i 271 -a 1 r -t 1.568 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 293 -a 1 + -t 1.568 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 293 -a 1 - -t 1.568 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 286 -a 1 h -t 1.568 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 286 -a 1 r -t 1.56998 -s 4 -d 3 -p ack -e 40 -c 0 -i 285 -a 0 -S 0 -y {19 19} + -t 1.56998 -s 3 -d 0 -p ack -e 40 -c 0 -i 285 -a 0 -S 0 -y {19 19} - -t 1.56998 -s 3 -d 0 -p ack -e 40 -c 0 -i 285 -a 0 -S 0 -f 0 -m 1 -y {19 19} h -t 1.56998 -s 3 -d 0 -p ack -e 40 -c 0 -i 285 -a 0 -S 0 -y {-1 -1} r -t 1.57 -s 3 -d 4 -p cbr -e 500 -c 1 -i 273 -a 1 + -t 1.57 -s 4 -d 6 -p cbr -e 500 -c 1 -i 273 -a 1 - -t 1.57 -s 4 -d 6 -p cbr -e 500 -c 1 -i 273 -a 1 h -t 1.57 -s 4 -d 6 -p cbr -e 500 -c 1 -i 273 -a 1 r -t 1.57005 -s 3 -d 0 -p ack -e 40 -c 0 -i 280 -a 0 -S 0 -y {17 17} f -t 1.57004800000000122 -s 0 -d 5 -n cwnd_ -a tcp -v 19.000000 -o 18.000000 -T v + -t 1.57005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 304 -a 0 -S 0 -f 0 -m 0 -y {35 35} - -t 1.57005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 304 -a 0 -S 0 -y {35 35} h -t 1.57005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 304 -a 0 -S 0 -y {-1 -1} + -t 1.57005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 305 -a 0 -S 0 -f 0 -m 0 -y {36 36} r -t 1.5716 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 268 -a 0 -S 0 -y {30 30} + -t 1.5716 -s 5 -d 4 -p ack -e 40 -c 0 -i 306 -a 0 -S 0 -y {20 20} - -t 1.5716 -s 5 -d 4 -p ack -e 40 -c 0 -i 306 -a 0 -S 0 -y {20 20} h -t 1.5716 -s 5 -d 4 -p ack -e 40 -c 0 -i 306 -a 0 -S 0 -y {-1 -1} - -t 1.57165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 305 -a 0 -S 0 -y {36 36} h -t 1.57165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 305 -a 0 -S 0 -y {-1 -1} r -t 1.57566 -s 5 -d 4 -p ack -e 40 -c 0 -i 298 -a 0 -S 0 -y {20 20} + -t 1.57566 -s 4 -d 3 -p ack -e 40 -c 0 -i 298 -a 0 -S 0 -y {20 20} - -t 1.57566 -s 4 -d 3 -p ack -e 40 -c 0 -i 298 -a 0 -S 0 -y {20 20} h -t 1.57566 -s 4 -d 3 -p ack -e 40 -c 0 -i 298 -a 0 -S 0 -y {-1 -1} - -t 1.576 -s 3 -d 4 -p cbr -e 500 -c 1 -i 290 -a 1 h -t 1.576 -s 3 -d 4 -p cbr -e 500 -c 1 -i 290 -a 1 r -t 1.57798 -s 4 -d 3 -p ack -e 40 -c 0 -i 288 -a 0 -S 0 -y {20 20} + -t 1.57798 -s 3 -d 0 -p ack -e 40 -c 0 -i 288 -a 0 -S 0 -y {20 20} - -t 1.57798 -s 3 -d 0 -p ack -e 40 -c 0 -i 288 -a 0 -S 0 -f 0 -m 1 -y {20 20} h -t 1.57798 -s 3 -d 0 -p ack -e 40 -c 0 -i 288 -a 0 -S 0 -y {-1 -1} r -t 1.578 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 272 -a 1 + -t 1.578 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 272 -a 1 - -t 1.578 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 272 -a 1 h -t 1.578 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 272 -a 1 r -t 1.578 -s 4 -d 6 -p cbr -e 500 -c 1 -i 270 -a 1 r -t 1.57805 -s 3 -d 0 -p ack -e 40 -c 0 -i 283 -a 0 -S 0 -y {18 18} f -t 1.57804800000000123 -s 0 -d 5 -n cwnd_ -a tcp -v 20.000000 -o 19.000000 -T v + -t 1.57805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 307 -a 0 -S 0 -f 0 -m 0 -y {37 37} - -t 1.57805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 307 -a 0 -S 0 -y {37 37} h -t 1.57805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 307 -a 0 -S 0 -y {-1 -1} + -t 1.57805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 308 -a 0 -S 0 -f 0 -m 0 -y {38 38} r -t 1.57965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 299 -a 0 -S 0 -y {33 33} + -t 1.57965 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 299 -a 0 -S 0 -y {33 33} - -t 1.57965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 308 -a 0 -S 0 -y {38 38} h -t 1.57965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 308 -a 0 -S 0 -y {-1 -1} + -t 1.58 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 309 -a 1 - -t 1.58 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 309 -a 1 h -t 1.58 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 309 -a 1 + -t 1.58 -s 1 -d 3 -p cbr -e 500 -c 1 -i 310 -a 1 - -t 1.58 -s 1 -d 3 -p cbr -e 500 -c 1 -i 310 -a 1 h -t 1.58 -s 1 -d 3 -p cbr -e 500 -c 1 -i 310 -a 1 - -t 1.58 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 289 -a 1 h -t 1.58 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 289 -a 1 r -t 1.58125 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 300 -a 0 -S 0 -y {34 34} + -t 1.58125 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 300 -a 0 -S 0 -y {34 34} r -t 1.582 -s 3 -d 4 -p cbr -e 500 -c 1 -i 274 -a 1 + -t 1.582 -s 4 -d 6 -p cbr -e 500 -c 1 -i 274 -a 1 - -t 1.582 -s 4 -d 6 -p cbr -e 500 -c 1 -i 274 -a 1 h -t 1.582 -s 4 -d 6 -p cbr -e 500 -c 1 -i 274 -a 1 r -t 1.58366 -s 5 -d 4 -p ack -e 40 -c 0 -i 303 -a 0 -S 0 -y {20 20} + -t 1.58366 -s 4 -d 3 -p ack -e 40 -c 0 -i 303 -a 0 -S 0 -y {20 20} - -t 1.58366 -s 4 -d 3 -p ack -e 40 -c 0 -i 303 -a 0 -S 0 -y {20 20} h -t 1.58366 -s 4 -d 3 -p ack -e 40 -c 0 -i 303 -a 0 -S 0 -y {-1 -1} r -t 1.584 -s 1 -d 3 -p cbr -e 500 -c 1 -i 302 -a 1 + -t 1.584 -s 3 -d 4 -p cbr -e 500 -c 1 -i 302 -a 1 r -t 1.586 -s 3 -d 4 -p cbr -e 500 -c 1 -i 277 -a 1 + -t 1.586 -s 4 -d 6 -p cbr -e 500 -c 1 -i 277 -a 1 - -t 1.586 -s 4 -d 6 -p cbr -e 500 -c 1 -i 277 -a 1 h -t 1.586 -s 4 -d 6 -p cbr -e 500 -c 1 -i 277 -a 1 r -t 1.588 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 301 -a 1 + -t 1.588 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 301 -a 1 - -t 1.588 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 295 -a 0 -S 0 -y {31 31} h -t 1.588 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 295 -a 0 -S 0 -y {-1 -1} r -t 1.59 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 269 -a 1 r -t 1.59 -s 4 -d 6 -p cbr -e 500 -c 1 -i 271 -a 1 r -t 1.59005 -s 3 -d 0 -p ack -e 40 -c 0 -i 285 -a 0 -S 0 -y {19 19} f -t 1.59004800000000124 -s 0 -d 5 -n cwnd_ -a tcp -v 20.050000 -o 20.000000 -T v + -t 1.59005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 311 -a 0 -S 0 -f 0 -m 0 -y {39 39} - -t 1.59005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 311 -a 0 -S 0 -y {39 39} h -t 1.59005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 311 -a 0 -S 0 -y {-1 -1} r -t 1.59165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 304 -a 0 -S 0 -y {35 35} + -t 1.59165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 304 -a 0 -S 0 -y {35 35} r -t 1.59166 -s 5 -d 4 -p ack -e 40 -c 0 -i 306 -a 0 -S 0 -y {20 20} + -t 1.59166 -s 4 -d 3 -p ack -e 40 -c 0 -i 306 -a 0 -S 0 -y {20 20} - -t 1.59166 -s 4 -d 3 -p ack -e 40 -c 0 -i 306 -a 0 -S 0 -y {20 20} h -t 1.59166 -s 4 -d 3 -p ack -e 40 -c 0 -i 306 -a 0 -S 0 -y {-1 -1} r -t 1.59325 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 305 -a 0 -S 0 -y {36 36} + -t 1.59325 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 305 -a 0 -S 0 -y {36 36} r -t 1.594 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 276 -a 1 + -t 1.594 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 276 -a 1 - -t 1.594 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 276 -a 1 h -t 1.594 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 276 -a 1 r -t 1.594 -s 4 -d 6 -p cbr -e 500 -c 1 -i 273 -a 1 - -t 1.596 -s 3 -d 4 -p cbr -e 500 -c 1 -i 294 -a 1 h -t 1.596 -s 3 -d 4 -p cbr -e 500 -c 1 -i 294 -a 1 r -t 1.59798 -s 4 -d 3 -p ack -e 40 -c 0 -i 291 -a 0 -S 0 -y {20 20} + -t 1.59798 -s 3 -d 0 -p ack -e 40 -c 0 -i 291 -a 0 -S 0 -y {20 20} - -t 1.59798 -s 3 -d 0 -p ack -e 40 -c 0 -i 291 -a 0 -S 0 -f 0 -m 1 -y {20 20} h -t 1.59798 -s 3 -d 0 -p ack -e 40 -c 0 -i 291 -a 0 -S 0 -y {-1 -1} r -t 1.598 -s 3 -d 4 -p cbr -e 500 -c 1 -i 279 -a 1 + -t 1.598 -s 4 -d 6 -p cbr -e 500 -c 1 -i 279 -a 1 - -t 1.598 -s 4 -d 6 -p cbr -e 500 -c 1 -i 279 -a 1 h -t 1.598 -s 4 -d 6 -p cbr -e 500 -c 1 -i 279 -a 1 r -t 1.59805 -s 3 -d 0 -p ack -e 40 -c 0 -i 288 -a 0 -S 0 -y {20 20} f -t 1.59804800000000125 -s 0 -d 5 -n cwnd_ -a tcp -v 20.099875 -o 20.050000 -T v + -t 1.59805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 312 -a 0 -S 0 -f 0 -m 0 -y {40 40} - -t 1.59805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 312 -a 0 -S 0 -y {40 40} h -t 1.59805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 312 -a 0 -S 0 -y {-1 -1} r -t 1.59965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 307 -a 0 -S 0 -y {37 37} + -t 1.59965 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 307 -a 0 -S 0 -y {37 37} + -t 1.6 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 313 -a 1 - -t 1.6 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 313 -a 1 h -t 1.6 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 313 -a 1 + -t 1.6 -s 1 -d 3 -p cbr -e 500 -c 1 -i 314 -a 1 - -t 1.6 -s 1 -d 3 -p cbr -e 500 -c 1 -i 314 -a 1 h -t 1.6 -s 1 -d 3 -p cbr -e 500 -c 1 -i 314 -a 1 - -t 1.6 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 296 -a 0 -S 0 -y {32 32} h -t 1.6 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 296 -a 0 -S 0 -y {-1 -1} r -t 1.60125 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 308 -a 0 -S 0 -y {38 38} + -t 1.60125 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 308 -a 0 -S 0 -y {38 38} r -t 1.602 -s 3 -d 4 -p cbr -e 500 -c 1 -i 282 -a 1 + -t 1.602 -s 4 -d 6 -p cbr -e 500 -c 1 -i 282 -a 1 - -t 1.602 -s 4 -d 6 -p cbr -e 500 -c 1 -i 282 -a 1 h -t 1.602 -s 4 -d 6 -p cbr -e 500 -c 1 -i 282 -a 1 r -t 1.604 -s 1 -d 3 -p cbr -e 500 -c 1 -i 310 -a 1 + -t 1.604 -s 3 -d 4 -p cbr -e 500 -c 1 -i 310 -a 1 d -t 1.604 -s 3 -d 4 -p cbr -e 500 -c 1 -i 310 -a 1 r -t 1.60598 -s 4 -d 3 -p ack -e 40 -c 0 -i 292 -a 0 -S 0 -y {20 20} + -t 1.60598 -s 3 -d 0 -p ack -e 40 -c 0 -i 292 -a 0 -S 0 -y {20 20} - -t 1.60598 -s 3 -d 0 -p ack -e 40 -c 0 -i 292 -a 0 -S 0 -f 0 -m 1 -y {20 20} h -t 1.60598 -s 3 -d 0 -p ack -e 40 -c 0 -i 292 -a 0 -S 0 -y {-1 -1} r -t 1.606 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 272 -a 1 r -t 1.606 -s 4 -d 6 -p cbr -e 500 -c 1 -i 274 -a 1 r -t 1.608 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 309 -a 1 + -t 1.608 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 309 -a 1 d -t 1.608 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 309 -a 1 - -t 1.608 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 293 -a 1 h -t 1.608 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 293 -a 1 r -t 1.61 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 281 -a 1 + -t 1.61 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 281 -a 1 - -t 1.61 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 281 -a 1 h -t 1.61 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 281 -a 1 r -t 1.61 -s 4 -d 6 -p cbr -e 500 -c 1 -i 277 -a 1 r -t 1.61165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 311 -a 0 -S 0 -y {39 39} + -t 1.61165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 311 -a 0 -S 0 -y {39 39} r -t 1.61398 -s 4 -d 3 -p ack -e 40 -c 0 -i 297 -a 0 -S 0 -y {20 20} + -t 1.61398 -s 3 -d 0 -p ack -e 40 -c 0 -i 297 -a 0 -S 0 -y {20 20} - -t 1.61398 -s 3 -d 0 -p ack -e 40 -c 0 -i 297 -a 0 -S 0 -f 0 -m 1 -y {20 20} h -t 1.61398 -s 3 -d 0 -p ack -e 40 -c 0 -i 297 -a 0 -S 0 -y {-1 -1} r -t 1.614 -s 3 -d 4 -p cbr -e 500 -c 1 -i 284 -a 1 + -t 1.614 -s 4 -d 6 -p cbr -e 500 -c 1 -i 284 -a 1 - -t 1.614 -s 4 -d 6 -p cbr -e 500 -c 1 -i 284 -a 1 h -t 1.614 -s 4 -d 6 -p cbr -e 500 -c 1 -i 284 -a 1 - -t 1.616 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 299 -a 0 -S 0 -y {33 33} h -t 1.616 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 299 -a 0 -S 0 -y {-1 -1} r -t 1.618 -s 3 -d 4 -p cbr -e 500 -c 1 -i 287 -a 1 + -t 1.618 -s 4 -d 6 -p cbr -e 500 -c 1 -i 287 -a 1 - -t 1.618 -s 4 -d 6 -p cbr -e 500 -c 1 -i 287 -a 1 h -t 1.618 -s 4 -d 6 -p cbr -e 500 -c 1 -i 287 -a 1 r -t 1.61805 -s 3 -d 0 -p ack -e 40 -c 0 -i 291 -a 0 -S 0 -y {20 20} r -t 1.61965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 312 -a 0 -S 0 -y {40 40} + -t 1.61965 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 312 -a 0 -S 0 -y {40 40} + -t 1.62 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 315 -a 1 - -t 1.62 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 315 -a 1 h -t 1.62 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 315 -a 1 + -t 1.62 -s 1 -d 3 -p cbr -e 500 -c 1 -i 316 -a 1 - -t 1.62 -s 1 -d 3 -p cbr -e 500 -c 1 -i 316 -a 1 h -t 1.62 -s 1 -d 3 -p cbr -e 500 -c 1 -i 316 -a 1 r -t 1.622 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 276 -a 1 r -t 1.622 -s 4 -d 6 -p cbr -e 500 -c 1 -i 279 -a 1 r -t 1.624 -s 1 -d 3 -p cbr -e 500 -c 1 -i 314 -a 1 + -t 1.624 -s 3 -d 4 -p cbr -e 500 -c 1 -i 314 -a 1 d -t 1.624 -s 3 -d 4 -p cbr -e 500 -c 1 -i 314 -a 1 - -t 1.624 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 300 -a 0 -S 0 -y {34 34} h -t 1.624 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 300 -a 0 -S 0 -y {-1 -1} r -t 1.62598 -s 4 -d 3 -p ack -e 40 -c 0 -i 298 -a 0 -S 0 -y {20 20} + -t 1.62598 -s 3 -d 0 -p ack -e 40 -c 0 -i 298 -a 0 -S 0 -y {20 20} - -t 1.62598 -s 3 -d 0 -p ack -e 40 -c 0 -i 298 -a 0 -S 0 -f 0 -m 1 -y {20 20} h -t 1.62598 -s 3 -d 0 -p ack -e 40 -c 0 -i 298 -a 0 -S 0 -y {-1 -1} r -t 1.626 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 286 -a 1 + -t 1.626 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 286 -a 1 - -t 1.626 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 286 -a 1 h -t 1.626 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 286 -a 1 r -t 1.626 -s 4 -d 6 -p cbr -e 500 -c 1 -i 282 -a 1 r -t 1.62605 -s 3 -d 0 -p ack -e 40 -c 0 -i 292 -a 0 -S 0 -y {20 20} r -t 1.628 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 313 -a 1 + -t 1.628 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 313 -a 1 v -t 1.6299999999999999 sim_annotation 1.6299999999999999 17 Retransmit Packet_21 : SLOW START ! r -t 1.63 -s 3 -d 4 -p cbr -e 500 -c 1 -i 290 -a 1 + -t 1.63 -s 4 -d 6 -p cbr -e 500 -c 1 -i 290 -a 1 - -t 1.63 -s 4 -d 6 -p cbr -e 500 -c 1 -i 290 -a 1 h -t 1.63 -s 4 -d 6 -p cbr -e 500 -c 1 -i 290 -a 1 - -t 1.632 -s 3 -d 4 -p cbr -e 500 -c 1 -i 302 -a 1 h -t 1.632 -s 3 -d 4 -p cbr -e 500 -c 1 -i 302 -a 1 r -t 1.63398 -s 4 -d 3 -p ack -e 40 -c 0 -i 303 -a 0 -S 0 -y {20 20} + -t 1.63398 -s 3 -d 0 -p ack -e 40 -c 0 -i 303 -a 0 -S 0 -y {20 20} - -t 1.63398 -s 3 -d 0 -p ack -e 40 -c 0 -i 303 -a 0 -S 0 -f 0 -m 1 -y {20 20} h -t 1.63398 -s 3 -d 0 -p ack -e 40 -c 0 -i 303 -a 0 -S 0 -y {-1 -1} r -t 1.63405 -s 3 -d 0 -p ack -e 40 -c 0 -i 297 -a 0 -S 0 -y {20 20} f -t 1.63404800000000128 -s 0 -d 5 -n ssthresh_ -a tcp -v 10 -o 20 -T v f -t 1.63404800000000128 -s 0 -d 5 -n cwnd_ -a tcp -v 1.000000 -o 20.099875 -T v + -t 1.63405 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 317 -a 0 -S 0 -f 1 -m 2 -y {21 21} - -t 1.63405 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 317 -a 0 -S 0 -f 1 -y {21 21} h -t 1.63405 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 317 -a 0 -S 0 -f 1 -y {-1 -1} - -t 1.636 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 301 -a 1 h -t 1.636 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 301 -a 1 r -t 1.638 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 289 -a 1 + -t 1.638 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 289 -a 1 - -t 1.638 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 289 -a 1 h -t 1.638 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 289 -a 1 r -t 1.638 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 281 -a 1 r -t 1.638 -s 4 -d 6 -p cbr -e 500 -c 1 -i 284 -a 1 + -t 1.64 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 318 -a 1 - -t 1.64 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 318 -a 1 h -t 1.64 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 318 -a 1 + -t 1.64 -s 1 -d 3 -p cbr -e 500 -c 1 -i 319 -a 1 - -t 1.64 -s 1 -d 3 -p cbr -e 500 -c 1 -i 319 -a 1 h -t 1.64 -s 1 -d 3 -p cbr -e 500 -c 1 -i 319 -a 1 r -t 1.64198 -s 4 -d 3 -p ack -e 40 -c 0 -i 306 -a 0 -S 0 -y {20 20} + -t 1.64198 -s 3 -d 0 -p ack -e 40 -c 0 -i 306 -a 0 -S 0 -y {20 20} - -t 1.64198 -s 3 -d 0 -p ack -e 40 -c 0 -i 306 -a 0 -S 0 -f 0 -m 1 -y {20 20} h -t 1.64198 -s 3 -d 0 -p ack -e 40 -c 0 -i 306 -a 0 -S 0 -y {-1 -1} r -t 1.642 -s 4 -d 6 -p cbr -e 500 -c 1 -i 287 -a 1 r -t 1.644 -s 1 -d 3 -p cbr -e 500 -c 1 -i 316 -a 1 + -t 1.644 -s 3 -d 4 -p cbr -e 500 -c 1 -i 316 -a 1 - -t 1.644 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 304 -a 0 -S 0 -y {35 35} h -t 1.644 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 304 -a 0 -S 0 -y {-1 -1} r -t 1.646 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 295 -a 0 -S 0 -y {31 31} + -t 1.646 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 295 -a 0 -S 0 -y {31 31} - -t 1.646 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 295 -a 0 -S 0 -y {31 31} h -t 1.646 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 295 -a 0 -S 0 -y {-1 -1} r -t 1.64605 -s 3 -d 0 -p ack -e 40 -c 0 -i 298 -a 0 -S 0 -y {20 20} r -t 1.648 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 315 -a 1 + -t 1.648 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 315 -a 1 r -t 1.65 -s 3 -d 4 -p cbr -e 500 -c 1 -i 294 -a 1 + -t 1.65 -s 4 -d 6 -p cbr -e 500 -c 1 -i 294 -a 1 - -t 1.65 -s 4 -d 6 -p cbr -e 500 -c 1 -i 294 -a 1 h -t 1.65 -s 4 -d 6 -p cbr -e 500 -c 1 -i 294 -a 1 - -t 1.652 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 305 -a 0 -S 0 -y {36 36} h -t 1.652 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 305 -a 0 -S 0 -y {-1 -1} r -t 1.654 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 286 -a 1 r -t 1.654 -s 4 -d 6 -p cbr -e 500 -c 1 -i 290 -a 1 r -t 1.65405 -s 3 -d 0 -p ack -e 40 -c 0 -i 303 -a 0 -S 0 -y {20 20} r -t 1.65565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 317 -a 0 -S 0 -f 1 -y {21 21} + -t 1.65565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 317 -a 0 -S 0 -f 1 -y {21 21} r -t 1.658 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 296 -a 0 -S 0 -y {32 32} + -t 1.658 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 296 -a 0 -S 0 -y {32 32} - -t 1.658 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 296 -a 0 -S 0 -y {32 32} h -t 1.658 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 296 -a 0 -S 0 -y {-1 -1} + -t 1.66 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 320 -a 1 - -t 1.66 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 320 -a 1 h -t 1.66 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 320 -a 1 + -t 1.66 -s 1 -d 3 -p cbr -e 500 -c 1 -i 321 -a 1 - -t 1.66 -s 1 -d 3 -p cbr -e 500 -c 1 -i 321 -a 1 h -t 1.66 -s 1 -d 3 -p cbr -e 500 -c 1 -i 321 -a 1 - -t 1.66 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 307 -a 0 -S 0 -y {37 37} h -t 1.66 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 307 -a 0 -S 0 -y {-1 -1} r -t 1.66205 -s 3 -d 0 -p ack -e 40 -c 0 -i 306 -a 0 -S 0 -y {20 20} r -t 1.664 -s 1 -d 3 -p cbr -e 500 -c 1 -i 319 -a 1 + -t 1.664 -s 3 -d 4 -p cbr -e 500 -c 1 -i 319 -a 1 r -t 1.666 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 293 -a 1 + -t 1.666 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 293 -a 1 - -t 1.666 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 293 -a 1 h -t 1.666 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 293 -a 1 r -t 1.666 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 289 -a 1 r -t 1.6676 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 295 -a 0 -S 0 -y {31 31} + -t 1.6676 -s 5 -d 4 -p ack -e 40 -c 0 -i 322 -a 0 -S 0 -y {20 20} - -t 1.6676 -s 5 -d 4 -p ack -e 40 -c 0 -i 322 -a 0 -S 0 -y {20 20} h -t 1.6676 -s 5 -d 4 -p ack -e 40 -c 0 -i 322 -a 0 -S 0 -y {-1 -1} r -t 1.668 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 318 -a 1 + -t 1.668 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 318 -a 1 - -t 1.668 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 308 -a 0 -S 0 -y {38 38} h -t 1.668 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 308 -a 0 -S 0 -y {-1 -1} v -t 1.6699999999999999 sim_annotation 1.6699999999999999 18 8 Ack_20s r -t 1.674 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 299 -a 0 -S 0 -y {33 33} + -t 1.674 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 299 -a 0 -S 0 -y {33 33} - -t 1.674 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 299 -a 0 -S 0 -y {33 33} h -t 1.674 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 299 -a 0 -S 0 -y {-1 -1} r -t 1.674 -s 4 -d 6 -p cbr -e 500 -c 1 -i 294 -a 1 - -t 1.676 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 311 -a 0 -S 0 -y {39 39} h -t 1.676 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 311 -a 0 -S 0 -y {-1 -1} r -t 1.6796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 296 -a 0 -S 0 -y {32 32} + -t 1.6796 -s 5 -d 4 -p ack -e 40 -c 0 -i 323 -a 0 -S 0 -y {20 20} - -t 1.6796 -s 5 -d 4 -p ack -e 40 -c 0 -i 323 -a 0 -S 0 -y {20 20} h -t 1.6796 -s 5 -d 4 -p ack -e 40 -c 0 -i 323 -a 0 -S 0 -y {-1 -1} + -t 1.68 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 324 -a 1 - -t 1.68 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 324 -a 1 h -t 1.68 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 324 -a 1 + -t 1.68 -s 1 -d 3 -p cbr -e 500 -c 1 -i 325 -a 1 - -t 1.68 -s 1 -d 3 -p cbr -e 500 -c 1 -i 325 -a 1 h -t 1.68 -s 1 -d 3 -p cbr -e 500 -c 1 -i 325 -a 1 r -t 1.682 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 300 -a 0 -S 0 -y {34 34} + -t 1.682 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 300 -a 0 -S 0 -y {34 34} - -t 1.682 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 300 -a 0 -S 0 -y {34 34} h -t 1.682 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 300 -a 0 -S 0 -y {-1 -1} r -t 1.684 -s 1 -d 3 -p cbr -e 500 -c 1 -i 321 -a 1 + -t 1.684 -s 3 -d 4 -p cbr -e 500 -c 1 -i 321 -a 1 - -t 1.684 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 312 -a 0 -S 0 -y {40 40} h -t 1.684 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 312 -a 0 -S 0 -y {-1 -1} r -t 1.686 -s 3 -d 4 -p cbr -e 500 -c 1 -i 302 -a 1 + -t 1.686 -s 4 -d 6 -p cbr -e 500 -c 1 -i 302 -a 1 - -t 1.686 -s 4 -d 6 -p cbr -e 500 -c 1 -i 302 -a 1 h -t 1.686 -s 4 -d 6 -p cbr -e 500 -c 1 -i 302 -a 1 r -t 1.68766 -s 5 -d 4 -p ack -e 40 -c 0 -i 322 -a 0 -S 0 -y {20 20} + -t 1.68766 -s 4 -d 3 -p ack -e 40 -c 0 -i 322 -a 0 -S 0 -y {20 20} - -t 1.68766 -s 4 -d 3 -p ack -e 40 -c 0 -i 322 -a 0 -S 0 -y {20 20} h -t 1.68766 -s 4 -d 3 -p ack -e 40 -c 0 -i 322 -a 0 -S 0 -y {-1 -1} r -t 1.688 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 320 -a 1 + -t 1.688 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 320 -a 1 - -t 1.692 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 313 -a 1 h -t 1.692 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 313 -a 1 r -t 1.694 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 301 -a 1 + -t 1.694 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 301 -a 1 - -t 1.694 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 301 -a 1 h -t 1.694 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 301 -a 1 r -t 1.694 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 293 -a 1 r -t 1.6956 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 299 -a 0 -S 0 -y {33 33} + -t 1.6956 -s 5 -d 4 -p ack -e 40 -c 0 -i 326 -a 0 -S 0 -y {20 20} - -t 1.6956 -s 5 -d 4 -p ack -e 40 -c 0 -i 326 -a 0 -S 0 -y {20 20} h -t 1.6956 -s 5 -d 4 -p ack -e 40 -c 0 -i 326 -a 0 -S 0 -y {-1 -1} r -t 1.69966 -s 5 -d 4 -p ack -e 40 -c 0 -i 323 -a 0 -S 0 -y {20 20} + -t 1.69966 -s 4 -d 3 -p ack -e 40 -c 0 -i 323 -a 0 -S 0 -y {20 20} - -t 1.69966 -s 4 -d 3 -p ack -e 40 -c 0 -i 323 -a 0 -S 0 -y {20 20} h -t 1.69966 -s 4 -d 3 -p ack -e 40 -c 0 -i 323 -a 0 -S 0 -y {-1 -1} + -t 1.7 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 327 -a 1 - -t 1.7 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 327 -a 1 h -t 1.7 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 327 -a 1 + -t 1.7 -s 1 -d 3 -p cbr -e 500 -c 1 -i 328 -a 1 - -t 1.7 -s 1 -d 3 -p cbr -e 500 -c 1 -i 328 -a 1 h -t 1.7 -s 1 -d 3 -p cbr -e 500 -c 1 -i 328 -a 1 - -t 1.7 -s 3 -d 4 -p cbr -e 500 -c 1 -i 316 -a 1 h -t 1.7 -s 3 -d 4 -p cbr -e 500 -c 1 -i 316 -a 1 r -t 1.702 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 304 -a 0 -S 0 -y {35 35} + -t 1.702 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 304 -a 0 -S 0 -y {35 35} - -t 1.702 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 304 -a 0 -S 0 -y {35 35} h -t 1.702 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 304 -a 0 -S 0 -y {-1 -1} r -t 1.7036 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 300 -a 0 -S 0 -y {34 34} + -t 1.7036 -s 5 -d 4 -p ack -e 40 -c 0 -i 329 -a 0 -S 0 -y {20 20} - -t 1.7036 -s 5 -d 4 -p ack -e 40 -c 0 -i 329 -a 0 -S 0 -y {20 20} h -t 1.7036 -s 5 -d 4 -p ack -e 40 -c 0 -i 329 -a 0 -S 0 -y {-1 -1} r -t 1.704 -s 1 -d 3 -p cbr -e 500 -c 1 -i 325 -a 1 + -t 1.704 -s 3 -d 4 -p cbr -e 500 -c 1 -i 325 -a 1 - -t 1.704 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 315 -a 1 h -t 1.704 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 315 -a 1 r -t 1.708 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 324 -a 1 + -t 1.708 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 324 -a 1 r -t 1.71 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 305 -a 0 -S 0 -y {36 36} + -t 1.71 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 305 -a 0 -S 0 -y {36 36} - -t 1.71 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 305 -a 0 -S 0 -y {36 36} h -t 1.71 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 305 -a 0 -S 0 -y {-1 -1} r -t 1.71 -s 4 -d 6 -p cbr -e 500 -c 1 -i 302 -a 1 + -t 1.71 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 330 -a 1 - -t 1.71 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 330 -a 1 h -t 1.71 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 330 -a 1 - -t 1.712 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 317 -a 0 -S 0 -f 1 -y {21 21} h -t 1.712 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 317 -a 0 -S 0 -f 1 -y {-1 -1} r -t 1.71566 -s 5 -d 4 -p ack -e 40 -c 0 -i 326 -a 0 -S 0 -y {20 20} + -t 1.71566 -s 4 -d 3 -p ack -e 40 -c 0 -i 326 -a 0 -S 0 -y {20 20} - -t 1.71566 -s 4 -d 3 -p ack -e 40 -c 0 -i 326 -a 0 -S 0 -y {20 20} h -t 1.71566 -s 4 -d 3 -p ack -e 40 -c 0 -i 326 -a 0 -S 0 -y {-1 -1} r -t 1.718 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 307 -a 0 -S 0 -y {37 37} + -t 1.718 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 307 -a 0 -S 0 -y {37 37} - -t 1.718 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 307 -a 0 -S 0 -y {37 37} h -t 1.718 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 307 -a 0 -S 0 -y {-1 -1} + -t 1.72 -s 1 -d 3 -p cbr -e 500 -c 1 -i 331 -a 1 - -t 1.72 -s 1 -d 3 -p cbr -e 500 -c 1 -i 331 -a 1 h -t 1.72 -s 1 -d 3 -p cbr -e 500 -c 1 -i 331 -a 1 + -t 1.72 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 332 -a 1 - -t 1.72 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 332 -a 1 h -t 1.72 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 332 -a 1 - -t 1.72 -s 3 -d 4 -p cbr -e 500 -c 1 -i 319 -a 1 h -t 1.72 -s 3 -d 4 -p cbr -e 500 -c 1 -i 319 -a 1 r -t 1.722 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 301 -a 1 r -t 1.7236 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 304 -a 0 -S 0 -y {35 35} + -t 1.7236 -s 5 -d 4 -p ack -e 40 -c 0 -i 333 -a 0 -S 0 -y {20 20} - -t 1.7236 -s 5 -d 4 -p ack -e 40 -c 0 -i 333 -a 0 -S 0 -y {20 20} h -t 1.7236 -s 5 -d 4 -p ack -e 40 -c 0 -i 333 -a 0 -S 0 -y {-1 -1} r -t 1.72366 -s 5 -d 4 -p ack -e 40 -c 0 -i 329 -a 0 -S 0 -y {20 20} + -t 1.72366 -s 4 -d 3 -p ack -e 40 -c 0 -i 329 -a 0 -S 0 -y {20 20} - -t 1.72366 -s 4 -d 3 -p ack -e 40 -c 0 -i 329 -a 0 -S 0 -y {20 20} h -t 1.72366 -s 4 -d 3 -p ack -e 40 -c 0 -i 329 -a 0 -S 0 -y {-1 -1} r -t 1.724 -s 1 -d 3 -p cbr -e 500 -c 1 -i 328 -a 1 + -t 1.724 -s 3 -d 4 -p cbr -e 500 -c 1 -i 328 -a 1 - -t 1.724 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 318 -a 1 h -t 1.724 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 318 -a 1 r -t 1.726 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 308 -a 0 -S 0 -y {38 38} + -t 1.726 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 308 -a 0 -S 0 -y {38 38} - -t 1.726 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 308 -a 0 -S 0 -y {38 38} h -t 1.726 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 308 -a 0 -S 0 -y {-1 -1} r -t 1.728 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 327 -a 1 + -t 1.728 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 327 -a 1 + -t 1.73 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 334 -a 1 - -t 1.73 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 334 -a 1 h -t 1.73 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 334 -a 1 r -t 1.7316 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 305 -a 0 -S 0 -y {36 36} + -t 1.7316 -s 5 -d 4 -p ack -e 40 -c 0 -i 335 -a 0 -S 0 -y {20 20} - -t 1.7316 -s 5 -d 4 -p ack -e 40 -c 0 -i 335 -a 0 -S 0 -y {20 20} h -t 1.7316 -s 5 -d 4 -p ack -e 40 -c 0 -i 335 -a 0 -S 0 -y {-1 -1} - -t 1.732 -s 3 -d 4 -p cbr -e 500 -c 1 -i 321 -a 1 h -t 1.732 -s 3 -d 4 -p cbr -e 500 -c 1 -i 321 -a 1 r -t 1.734 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 311 -a 0 -S 0 -y {39 39} + -t 1.734 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 311 -a 0 -S 0 -y {39 39} - -t 1.734 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 311 -a 0 -S 0 -y {39 39} h -t 1.734 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 311 -a 0 -S 0 -y {-1 -1} - -t 1.736 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 320 -a 1 h -t 1.736 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 320 -a 1 r -t 1.73798 -s 4 -d 3 -p ack -e 40 -c 0 -i 322 -a 0 -S 0 -y {20 20} + -t 1.73798 -s 3 -d 0 -p ack -e 40 -c 0 -i 322 -a 0 -S 0 -y {20 20} - -t 1.73798 -s 3 -d 0 -p ack -e 40 -c 0 -i 322 -a 0 -S 0 -f 0 -m 1 -y {20 20} h -t 1.73798 -s 3 -d 0 -p ack -e 40 -c 0 -i 322 -a 0 -S 0 -y {-1 -1} r -t 1.738 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 330 -a 1 + -t 1.738 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 330 -a 1 r -t 1.7396 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 307 -a 0 -S 0 -y {37 37} + -t 1.7396 -s 5 -d 4 -p ack -e 40 -c 0 -i 336 -a 0 -S 0 -y {20 20} - -t 1.7396 -s 5 -d 4 -p ack -e 40 -c 0 -i 336 -a 0 -S 0 -y {20 20} h -t 1.7396 -s 5 -d 4 -p ack -e 40 -c 0 -i 336 -a 0 -S 0 -y {-1 -1} + -t 1.74 -s 1 -d 3 -p cbr -e 500 -c 1 -i 337 -a 1 - -t 1.74 -s 1 -d 3 -p cbr -e 500 -c 1 -i 337 -a 1 h -t 1.74 -s 1 -d 3 -p cbr -e 500 -c 1 -i 337 -a 1 + -t 1.74 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 338 -a 1 - -t 1.74 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 338 -a 1 h -t 1.74 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 338 -a 1 r -t 1.742 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 312 -a 0 -S 0 -y {40 40} + -t 1.742 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 312 -a 0 -S 0 -y {40 40} - -t 1.742 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 312 -a 0 -S 0 -y {40 40} h -t 1.742 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 312 -a 0 -S 0 -y {-1 -1} r -t 1.74366 -s 5 -d 4 -p ack -e 40 -c 0 -i 333 -a 0 -S 0 -y {20 20} + -t 1.74366 -s 4 -d 3 -p ack -e 40 -c 0 -i 333 -a 0 -S 0 -y {20 20} - -t 1.74366 -s 4 -d 3 -p ack -e 40 -c 0 -i 333 -a 0 -S 0 -y {20 20} h -t 1.74366 -s 4 -d 3 -p ack -e 40 -c 0 -i 333 -a 0 -S 0 -y {-1 -1} r -t 1.744 -s 1 -d 3 -p cbr -e 500 -c 1 -i 331 -a 1 + -t 1.744 -s 3 -d 4 -p cbr -e 500 -c 1 -i 331 -a 1 - -t 1.744 -s 3 -d 4 -p cbr -e 500 -c 1 -i 325 -a 1 h -t 1.744 -s 3 -d 4 -p cbr -e 500 -c 1 -i 325 -a 1 r -t 1.7476 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 308 -a 0 -S 0 -y {38 38} + -t 1.7476 -s 5 -d 4 -p ack -e 40 -c 0 -i 339 -a 0 -S 0 -y {20 20} - -t 1.7476 -s 5 -d 4 -p ack -e 40 -c 0 -i 339 -a 0 -S 0 -y {20 20} h -t 1.7476 -s 5 -d 4 -p ack -e 40 -c 0 -i 339 -a 0 -S 0 -y {-1 -1} r -t 1.748 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 332 -a 1 + -t 1.748 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 332 -a 1 - -t 1.748 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 324 -a 1 h -t 1.748 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 324 -a 1 r -t 1.74998 -s 4 -d 3 -p ack -e 40 -c 0 -i 323 -a 0 -S 0 -y {20 20} + -t 1.74998 -s 3 -d 0 -p ack -e 40 -c 0 -i 323 -a 0 -S 0 -y {20 20} - -t 1.74998 -s 3 -d 0 -p ack -e 40 -c 0 -i 323 -a 0 -S 0 -f 0 -m 1 -y {20 20} h -t 1.74998 -s 3 -d 0 -p ack -e 40 -c 0 -i 323 -a 0 -S 0 -y {-1 -1} r -t 1.75 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 313 -a 1 + -t 1.75 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 313 -a 1 - -t 1.75 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 313 -a 1 h -t 1.75 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 313 -a 1 + -t 1.75 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 340 -a 1 - -t 1.75 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 340 -a 1 h -t 1.75 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 340 -a 1 r -t 1.75166 -s 5 -d 4 -p ack -e 40 -c 0 -i 335 -a 0 -S 0 -y {20 20} + -t 1.75166 -s 4 -d 3 -p ack -e 40 -c 0 -i 335 -a 0 -S 0 -y {20 20} - -t 1.75166 -s 4 -d 3 -p ack -e 40 -c 0 -i 335 -a 0 -S 0 -y {20 20} h -t 1.75166 -s 4 -d 3 -p ack -e 40 -c 0 -i 335 -a 0 -S 0 -y {-1 -1} r -t 1.754 -s 3 -d 4 -p cbr -e 500 -c 1 -i 316 -a 1 + -t 1.754 -s 4 -d 6 -p cbr -e 500 -c 1 -i 316 -a 1 - -t 1.754 -s 4 -d 6 -p cbr -e 500 -c 1 -i 316 -a 1 h -t 1.754 -s 4 -d 6 -p cbr -e 500 -c 1 -i 316 -a 1 r -t 1.7556 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 311 -a 0 -S 0 -y {39 39} + -t 1.7556 -s 5 -d 4 -p ack -e 40 -c 0 -i 341 -a 0 -S 0 -y {20 20} - -t 1.7556 -s 5 -d 4 -p ack -e 40 -c 0 -i 341 -a 0 -S 0 -y {20 20} h -t 1.7556 -s 5 -d 4 -p ack -e 40 -c 0 -i 341 -a 0 -S 0 -y {-1 -1} - -t 1.756 -s 3 -d 4 -p cbr -e 500 -c 1 -i 328 -a 1 h -t 1.756 -s 3 -d 4 -p cbr -e 500 -c 1 -i 328 -a 1 r -t 1.758 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 334 -a 1 + -t 1.758 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 334 -a 1 r -t 1.75805 -s 3 -d 0 -p ack -e 40 -c 0 -i 322 -a 0 -S 0 -y {20 20} r -t 1.75966 -s 5 -d 4 -p ack -e 40 -c 0 -i 336 -a 0 -S 0 -y {20 20} + -t 1.75966 -s 4 -d 3 -p ack -e 40 -c 0 -i 336 -a 0 -S 0 -y {20 20} - -t 1.75966 -s 4 -d 3 -p ack -e 40 -c 0 -i 336 -a 0 -S 0 -y {20 20} h -t 1.75966 -s 4 -d 3 -p ack -e 40 -c 0 -i 336 -a 0 -S 0 -y {-1 -1} + -t 1.76 -s 1 -d 3 -p cbr -e 500 -c 1 -i 342 -a 1 - -t 1.76 -s 1 -d 3 -p cbr -e 500 -c 1 -i 342 -a 1 h -t 1.76 -s 1 -d 3 -p cbr -e 500 -c 1 -i 342 -a 1 + -t 1.76 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 343 -a 1 - -t 1.76 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 343 -a 1 h -t 1.76 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 343 -a 1 - -t 1.76 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 327 -a 1 h -t 1.76 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 327 -a 1 r -t 1.762 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 315 -a 1 + -t 1.762 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 315 -a 1 - -t 1.762 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 315 -a 1 h -t 1.762 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 315 -a 1 r -t 1.7636 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 312 -a 0 -S 0 -y {40 40} + -t 1.7636 -s 5 -d 4 -p ack -e 40 -c 0 -i 344 -a 0 -S 0 -y {20 20} - -t 1.7636 -s 5 -d 4 -p ack -e 40 -c 0 -i 344 -a 0 -S 0 -y {20 20} h -t 1.7636 -s 5 -d 4 -p ack -e 40 -c 0 -i 344 -a 0 -S 0 -y {-1 -1} r -t 1.764 -s 1 -d 3 -p cbr -e 500 -c 1 -i 337 -a 1 + -t 1.764 -s 3 -d 4 -p cbr -e 500 -c 1 -i 337 -a 1 r -t 1.76598 -s 4 -d 3 -p ack -e 40 -c 0 -i 326 -a 0 -S 0 -y {20 20} + -t 1.76598 -s 3 -d 0 -p ack -e 40 -c 0 -i 326 -a 0 -S 0 -y {20 20} - -t 1.76598 -s 3 -d 0 -p ack -e 40 -c 0 -i 326 -a 0 -S 0 -f 0 -m 1 -y {20 20} h -t 1.76598 -s 3 -d 0 -p ack -e 40 -c 0 -i 326 -a 0 -S 0 -y {-1 -1} r -t 1.76766 -s 5 -d 4 -p ack -e 40 -c 0 -i 339 -a 0 -S 0 -y {20 20} + -t 1.76766 -s 4 -d 3 -p ack -e 40 -c 0 -i 339 -a 0 -S 0 -y {20 20} - -t 1.76766 -s 4 -d 3 -p ack -e 40 -c 0 -i 339 -a 0 -S 0 -y {20 20} h -t 1.76766 -s 4 -d 3 -p ack -e 40 -c 0 -i 339 -a 0 -S 0 -y {-1 -1} r -t 1.768 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 338 -a 1 + -t 1.768 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 338 -a 1 - -t 1.768 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 330 -a 1 h -t 1.768 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 330 -a 1 r -t 1.77 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 317 -a 0 -S 0 -f 1 -y {21 21} + -t 1.77 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 317 -a 0 -S 0 -f 1 -y {21 21} - -t 1.77 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 317 -a 0 -S 0 -f 1 -y {21 21} h -t 1.77 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 317 -a 0 -S 0 -f 1 -y {-1 -1} + -t 1.77 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 345 -a 1 - -t 1.77 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 345 -a 1 h -t 1.77 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 345 -a 1 r -t 1.77005 -s 3 -d 0 -p ack -e 40 -c 0 -i 323 -a 0 -S 0 -y {20 20} r -t 1.77398 -s 4 -d 3 -p ack -e 40 -c 0 -i 329 -a 0 -S 0 -y {20 20} + -t 1.77398 -s 3 -d 0 -p ack -e 40 -c 0 -i 329 -a 0 -S 0 -y {20 20} - -t 1.77398 -s 3 -d 0 -p ack -e 40 -c 0 -i 329 -a 0 -S 0 -f 0 -m 1 -y {20 20} h -t 1.77398 -s 3 -d 0 -p ack -e 40 -c 0 -i 329 -a 0 -S 0 -y {-1 -1} r -t 1.774 -s 3 -d 4 -p cbr -e 500 -c 1 -i 319 -a 1 + -t 1.774 -s 4 -d 6 -p cbr -e 500 -c 1 -i 319 -a 1 - -t 1.774 -s 4 -d 6 -p cbr -e 500 -c 1 -i 319 -a 1 h -t 1.774 -s 4 -d 6 -p cbr -e 500 -c 1 -i 319 -a 1 r -t 1.77566 -s 5 -d 4 -p ack -e 40 -c 0 -i 341 -a 0 -S 0 -y {20 20} + -t 1.77566 -s 4 -d 3 -p ack -e 40 -c 0 -i 341 -a 0 -S 0 -y {20 20} - -t 1.77566 -s 4 -d 3 -p ack -e 40 -c 0 -i 341 -a 0 -S 0 -y {20 20} h -t 1.77566 -s 4 -d 3 -p ack -e 40 -c 0 -i 341 -a 0 -S 0 -y {-1 -1} - -t 1.776 -s 3 -d 4 -p cbr -e 500 -c 1 -i 331 -a 1 h -t 1.776 -s 3 -d 4 -p cbr -e 500 -c 1 -i 331 -a 1 r -t 1.778 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 313 -a 1 r -t 1.778 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 340 -a 1 + -t 1.778 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 340 -a 1 r -t 1.778 -s 4 -d 6 -p cbr -e 500 -c 1 -i 316 -a 1 + -t 1.78 -s 1 -d 3 -p cbr -e 500 -c 1 -i 346 -a 1 - -t 1.78 -s 1 -d 3 -p cbr -e 500 -c 1 -i 346 -a 1 h -t 1.78 -s 1 -d 3 -p cbr -e 500 -c 1 -i 346 -a 1 + -t 1.78 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 347 -a 1 - -t 1.78 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 347 -a 1 h -t 1.78 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 347 -a 1 - -t 1.78 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 332 -a 1 h -t 1.78 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 332 -a 1 r -t 1.782 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 318 -a 1 + -t 1.782 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 318 -a 1 - -t 1.782 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 318 -a 1 h -t 1.782 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 318 -a 1 r -t 1.78366 -s 5 -d 4 -p ack -e 40 -c 0 -i 344 -a 0 -S 0 -y {20 20} + -t 1.78366 -s 4 -d 3 -p ack -e 40 -c 0 -i 344 -a 0 -S 0 -y {20 20} - -t 1.78366 -s 4 -d 3 -p ack -e 40 -c 0 -i 344 -a 0 -S 0 -y {20 20} h -t 1.78366 -s 4 -d 3 -p ack -e 40 -c 0 -i 344 -a 0 -S 0 -y {-1 -1} r -t 1.784 -s 1 -d 3 -p cbr -e 500 -c 1 -i 342 -a 1 + -t 1.784 -s 3 -d 4 -p cbr -e 500 -c 1 -i 342 -a 1 r -t 1.786 -s 3 -d 4 -p cbr -e 500 -c 1 -i 321 -a 1 + -t 1.786 -s 4 -d 6 -p cbr -e 500 -c 1 -i 321 -a 1 - -t 1.786 -s 4 -d 6 -p cbr -e 500 -c 1 -i 321 -a 1 h -t 1.786 -s 4 -d 6 -p cbr -e 500 -c 1 -i 321 -a 1 r -t 1.78605 -s 3 -d 0 -p ack -e 40 -c 0 -i 326 -a 0 -S 0 -y {20 20} r -t 1.788 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 343 -a 1 + -t 1.788 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 343 -a 1 - -t 1.788 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 334 -a 1 h -t 1.788 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 334 -a 1 r -t 1.79 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 315 -a 1 + -t 1.79 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 348 -a 1 - -t 1.79 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 348 -a 1 h -t 1.79 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 348 -a 1 r -t 1.7916 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 317 -a 0 -S 0 -f 1 -y {21 21} + -t 1.7916 -s 5 -d 4 -p ack -e 40 -c 0 -i 349 -a 0 -S 0 -y {21 21} - -t 1.7916 -s 5 -d 4 -p ack -e 40 -c 0 -i 349 -a 0 -S 0 -y {21 21} h -t 1.7916 -s 5 -d 4 -p ack -e 40 -c 0 -i 349 -a 0 -S 0 -y {-1 -1} r -t 1.79398 -s 4 -d 3 -p ack -e 40 -c 0 -i 333 -a 0 -S 0 -y {20 20} + -t 1.79398 -s 3 -d 0 -p ack -e 40 -c 0 -i 333 -a 0 -S 0 -y {20 20} - -t 1.79398 -s 3 -d 0 -p ack -e 40 -c 0 -i 333 -a 0 -S 0 -f 0 -m 1 -y {20 20} h -t 1.79398 -s 3 -d 0 -p ack -e 40 -c 0 -i 333 -a 0 -S 0 -y {-1 -1} r -t 1.794 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 320 -a 1 + -t 1.794 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 320 -a 1 - -t 1.794 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 320 -a 1 h -t 1.794 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 320 -a 1 r -t 1.79405 -s 3 -d 0 -p ack -e 40 -c 0 -i 329 -a 0 -S 0 -y {20 20} - -t 1.796 -s 3 -d 4 -p cbr -e 500 -c 1 -i 337 -a 1 h -t 1.796 -s 3 -d 4 -p cbr -e 500 -c 1 -i 337 -a 1 r -t 1.798 -s 3 -d 4 -p cbr -e 500 -c 1 -i 325 -a 1 + -t 1.798 -s 4 -d 6 -p cbr -e 500 -c 1 -i 325 -a 1 - -t 1.798 -s 4 -d 6 -p cbr -e 500 -c 1 -i 325 -a 1 h -t 1.798 -s 4 -d 6 -p cbr -e 500 -c 1 -i 325 -a 1 r -t 1.798 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 345 -a 1 + -t 1.798 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 345 -a 1 r -t 1.798 -s 4 -d 6 -p cbr -e 500 -c 1 -i 319 -a 1 v -t 1.8 sim_annotation 1.8 19 Ack_21 + -t 1.8 -s 1 -d 3 -p cbr -e 500 -c 1 -i 350 -a 1 - -t 1.8 -s 1 -d 3 -p cbr -e 500 -c 1 -i 350 -a 1 h -t 1.8 -s 1 -d 3 -p cbr -e 500 -c 1 -i 350 -a 1 + -t 1.8 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 351 -a 1 - -t 1.8 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 351 -a 1 h -t 1.8 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 351 -a 1 - -t 1.8 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 338 -a 1 h -t 1.8 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 338 -a 1 r -t 1.80198 -s 4 -d 3 -p ack -e 40 -c 0 -i 335 -a 0 -S 0 -y {20 20} + -t 1.80198 -s 3 -d 0 -p ack -e 40 -c 0 -i 335 -a 0 -S 0 -y {20 20} - -t 1.80198 -s 3 -d 0 -p ack -e 40 -c 0 -i 335 -a 0 -S 0 -f 0 -m 1 -y {20 20} h -t 1.80198 -s 3 -d 0 -p ack -e 40 -c 0 -i 335 -a 0 -S 0 -y {-1 -1} r -t 1.804 -s 1 -d 3 -p cbr -e 500 -c 1 -i 346 -a 1 + -t 1.804 -s 3 -d 4 -p cbr -e 500 -c 1 -i 346 -a 1 r -t 1.806 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 324 -a 1 + -t 1.806 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 324 -a 1 - -t 1.806 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 324 -a 1 h -t 1.806 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 324 -a 1 r -t 1.808 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 347 -a 1 + -t 1.808 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 347 -a 1 - -t 1.808 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 340 -a 1 h -t 1.808 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 340 -a 1 r -t 1.80998 -s 4 -d 3 -p ack -e 40 -c 0 -i 336 -a 0 -S 0 -y {20 20} + -t 1.80998 -s 3 -d 0 -p ack -e 40 -c 0 -i 336 -a 0 -S 0 -y {20 20} - -t 1.80998 -s 3 -d 0 -p ack -e 40 -c 0 -i 336 -a 0 -S 0 -f 0 -m 1 -y {20 20} h -t 1.80998 -s 3 -d 0 -p ack -e 40 -c 0 -i 336 -a 0 -S 0 -y {-1 -1} r -t 1.81 -s 3 -d 4 -p cbr -e 500 -c 1 -i 328 -a 1 + -t 1.81 -s 4 -d 6 -p cbr -e 500 -c 1 -i 328 -a 1 - -t 1.81 -s 4 -d 6 -p cbr -e 500 -c 1 -i 328 -a 1 h -t 1.81 -s 4 -d 6 -p cbr -e 500 -c 1 -i 328 -a 1 r -t 1.81 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 318 -a 1 r -t 1.81 -s 4 -d 6 -p cbr -e 500 -c 1 -i 321 -a 1 + -t 1.81 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 352 -a 1 - -t 1.81 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 352 -a 1 h -t 1.81 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 352 -a 1 r -t 1.81166 -s 5 -d 4 -p ack -e 40 -c 0 -i 349 -a 0 -S 0 -y {21 21} + -t 1.81166 -s 4 -d 3 -p ack -e 40 -c 0 -i 349 -a 0 -S 0 -y {21 21} - -t 1.81166 -s 4 -d 3 -p ack -e 40 -c 0 -i 349 -a 0 -S 0 -y {21 21} h -t 1.81166 -s 4 -d 3 -p ack -e 40 -c 0 -i 349 -a 0 -S 0 -y {-1 -1} r -t 1.81405 -s 3 -d 0 -p ack -e 40 -c 0 -i 333 -a 0 -S 0 -y {20 20} - -t 1.816 -s 3 -d 4 -p cbr -e 500 -c 1 -i 342 -a 1 h -t 1.816 -s 3 -d 4 -p cbr -e 500 -c 1 -i 342 -a 1 r -t 1.81798 -s 4 -d 3 -p ack -e 40 -c 0 -i 339 -a 0 -S 0 -y {20 20} + -t 1.81798 -s 3 -d 0 -p ack -e 40 -c 0 -i 339 -a 0 -S 0 -y {20 20} - -t 1.81798 -s 3 -d 0 -p ack -e 40 -c 0 -i 339 -a 0 -S 0 -f 0 -m 1 -y {20 20} h -t 1.81798 -s 3 -d 0 -p ack -e 40 -c 0 -i 339 -a 0 -S 0 -y {-1 -1} r -t 1.818 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 327 -a 1 + -t 1.818 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 327 -a 1 - -t 1.818 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 327 -a 1 h -t 1.818 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 327 -a 1 r -t 1.818 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 348 -a 1 + -t 1.818 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 348 -a 1 + -t 1.82 -s 1 -d 3 -p cbr -e 500 -c 1 -i 353 -a 1 - -t 1.82 -s 1 -d 3 -p cbr -e 500 -c 1 -i 353 -a 1 h -t 1.82 -s 1 -d 3 -p cbr -e 500 -c 1 -i 353 -a 1 + -t 1.82 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 354 -a 1 - -t 1.82 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 354 -a 1 h -t 1.82 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 354 -a 1 - -t 1.82 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 343 -a 1 h -t 1.82 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 343 -a 1 r -t 1.822 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 320 -a 1 r -t 1.822 -s 4 -d 6 -p cbr -e 500 -c 1 -i 325 -a 1 r -t 1.82205 -s 3 -d 0 -p ack -e 40 -c 0 -i 335 -a 0 -S 0 -y {20 20} r -t 1.824 -s 1 -d 3 -p cbr -e 500 -c 1 -i 350 -a 1 + -t 1.824 -s 3 -d 4 -p cbr -e 500 -c 1 -i 350 -a 1 r -t 1.82598 -s 4 -d 3 -p ack -e 40 -c 0 -i 341 -a 0 -S 0 -y {20 20} + -t 1.82598 -s 3 -d 0 -p ack -e 40 -c 0 -i 341 -a 0 -S 0 -y {20 20} - -t 1.82598 -s 3 -d 0 -p ack -e 40 -c 0 -i 341 -a 0 -S 0 -f 0 -m 1 -y {20 20} h -t 1.82598 -s 3 -d 0 -p ack -e 40 -c 0 -i 341 -a 0 -S 0 -y {-1 -1} r -t 1.826 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 330 -a 1 + -t 1.826 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 330 -a 1 - -t 1.826 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 330 -a 1 h -t 1.826 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 330 -a 1 r -t 1.828 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 351 -a 1 + -t 1.828 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 351 -a 1 - -t 1.828 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 345 -a 1 h -t 1.828 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 345 -a 1 r -t 1.83 -s 3 -d 4 -p cbr -e 500 -c 1 -i 331 -a 1 + -t 1.83 -s 4 -d 6 -p cbr -e 500 -c 1 -i 331 -a 1 - -t 1.83 -s 4 -d 6 -p cbr -e 500 -c 1 -i 331 -a 1 h -t 1.83 -s 4 -d 6 -p cbr -e 500 -c 1 -i 331 -a 1 + -t 1.83 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 355 -a 1 - -t 1.83 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 355 -a 1 h -t 1.83 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 355 -a 1 r -t 1.83005 -s 3 -d 0 -p ack -e 40 -c 0 -i 336 -a 0 -S 0 -y {20 20} r -t 1.83398 -s 4 -d 3 -p ack -e 40 -c 0 -i 344 -a 0 -S 0 -y {20 20} + -t 1.83398 -s 3 -d 0 -p ack -e 40 -c 0 -i 344 -a 0 -S 0 -y {20 20} - -t 1.83398 -s 3 -d 0 -p ack -e 40 -c 0 -i 344 -a 0 -S 0 -f 0 -m 1 -y {20 20} h -t 1.83398 -s 3 -d 0 -p ack -e 40 -c 0 -i 344 -a 0 -S 0 -y {-1 -1} r -t 1.834 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 324 -a 1 r -t 1.834 -s 4 -d 6 -p cbr -e 500 -c 1 -i 328 -a 1 - -t 1.836 -s 3 -d 4 -p cbr -e 500 -c 1 -i 346 -a 1 h -t 1.836 -s 3 -d 4 -p cbr -e 500 -c 1 -i 346 -a 1 r -t 1.838 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 332 -a 1 + -t 1.838 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 332 -a 1 - -t 1.838 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 332 -a 1 h -t 1.838 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 332 -a 1 r -t 1.838 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 352 -a 1 + -t 1.838 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 352 -a 1 r -t 1.83805 -s 3 -d 0 -p ack -e 40 -c 0 -i 339 -a 0 -S 0 -y {20 20} + -t 1.84 -s 1 -d 3 -p cbr -e 500 -c 1 -i 356 -a 1 - -t 1.84 -s 1 -d 3 -p cbr -e 500 -c 1 -i 356 -a 1 h -t 1.84 -s 1 -d 3 -p cbr -e 500 -c 1 -i 356 -a 1 + -t 1.84 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 357 -a 1 - -t 1.84 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 357 -a 1 h -t 1.84 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 357 -a 1 - -t 1.84 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 347 -a 1 h -t 1.84 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 347 -a 1 r -t 1.844 -s 1 -d 3 -p cbr -e 500 -c 1 -i 353 -a 1 + -t 1.844 -s 3 -d 4 -p cbr -e 500 -c 1 -i 353 -a 1 r -t 1.846 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 334 -a 1 + -t 1.846 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 334 -a 1 r -t 1.846 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 327 -a 1 - -t 1.846 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 334 -a 1 h -t 1.846 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 334 -a 1 r -t 1.84605 -s 3 -d 0 -p ack -e 40 -c 0 -i 341 -a 0 -S 0 -y {20 20} r -t 1.848 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 354 -a 1 + -t 1.848 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 354 -a 1 - -t 1.848 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 348 -a 1 h -t 1.848 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 348 -a 1 r -t 1.85 -s 3 -d 4 -p cbr -e 500 -c 1 -i 337 -a 1 + -t 1.85 -s 4 -d 6 -p cbr -e 500 -c 1 -i 337 -a 1 - -t 1.85 -s 4 -d 6 -p cbr -e 500 -c 1 -i 337 -a 1 h -t 1.85 -s 4 -d 6 -p cbr -e 500 -c 1 -i 337 -a 1 + -t 1.85 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 358 -a 1 - -t 1.85 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 358 -a 1 h -t 1.85 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 358 -a 1 r -t 1.854 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 330 -a 1 r -t 1.854 -s 4 -d 6 -p cbr -e 500 -c 1 -i 331 -a 1 r -t 1.85405 -s 3 -d 0 -p ack -e 40 -c 0 -i 344 -a 0 -S 0 -y {20 20} - -t 1.856 -s 3 -d 4 -p cbr -e 500 -c 1 -i 350 -a 1 h -t 1.856 -s 3 -d 4 -p cbr -e 500 -c 1 -i 350 -a 1 r -t 1.858 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 338 -a 1 + -t 1.858 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 338 -a 1 - -t 1.858 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 338 -a 1 h -t 1.858 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 338 -a 1 r -t 1.858 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 355 -a 1 + -t 1.858 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 355 -a 1 + -t 1.86 -s 1 -d 3 -p cbr -e 500 -c 1 -i 359 -a 1 - -t 1.86 -s 1 -d 3 -p cbr -e 500 -c 1 -i 359 -a 1 h -t 1.86 -s 1 -d 3 -p cbr -e 500 -c 1 -i 359 -a 1 + -t 1.86 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 360 -a 1 - -t 1.86 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 360 -a 1 h -t 1.86 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 360 -a 1 - -t 1.86 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 351 -a 1 h -t 1.86 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 351 -a 1 r -t 1.86198 -s 4 -d 3 -p ack -e 40 -c 0 -i 349 -a 0 -S 0 -y {21 21} + -t 1.86198 -s 3 -d 0 -p ack -e 40 -c 0 -i 349 -a 0 -S 0 -y {21 21} - -t 1.86198 -s 3 -d 0 -p ack -e 40 -c 0 -i 349 -a 0 -S 0 -f 0 -m 1 -y {21 21} h -t 1.86198 -s 3 -d 0 -p ack -e 40 -c 0 -i 349 -a 0 -S 0 -y {-1 -1} r -t 1.864 -s 1 -d 3 -p cbr -e 500 -c 1 -i 356 -a 1 + -t 1.864 -s 3 -d 4 -p cbr -e 500 -c 1 -i 356 -a 1 r -t 1.866 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 340 -a 1 + -t 1.866 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 340 -a 1 r -t 1.866 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 332 -a 1 - -t 1.866 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 340 -a 1 h -t 1.866 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 340 -a 1 r -t 1.868 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 357 -a 1 + -t 1.868 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 357 -a 1 - -t 1.868 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 352 -a 1 h -t 1.868 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 352 -a 1 r -t 1.87 -s 3 -d 4 -p cbr -e 500 -c 1 -i 342 -a 1 + -t 1.87 -s 4 -d 6 -p cbr -e 500 -c 1 -i 342 -a 1 - -t 1.87 -s 4 -d 6 -p cbr -e 500 -c 1 -i 342 -a 1 h -t 1.87 -s 4 -d 6 -p cbr -e 500 -c 1 -i 342 -a 1 + -t 1.87 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 361 -a 1 - -t 1.87 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 361 -a 1 h -t 1.87 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 361 -a 1 r -t 1.874 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 334 -a 1 r -t 1.874 -s 4 -d 6 -p cbr -e 500 -c 1 -i 337 -a 1 - -t 1.876 -s 3 -d 4 -p cbr -e 500 -c 1 -i 353 -a 1 h -t 1.876 -s 3 -d 4 -p cbr -e 500 -c 1 -i 353 -a 1 r -t 1.878 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 343 -a 1 + -t 1.878 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 343 -a 1 - -t 1.878 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 343 -a 1 h -t 1.878 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 343 -a 1 r -t 1.878 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 358 -a 1 + -t 1.878 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 358 -a 1 + -t 1.88 -s 1 -d 3 -p cbr -e 500 -c 1 -i 362 -a 1 - -t 1.88 -s 1 -d 3 -p cbr -e 500 -c 1 -i 362 -a 1 h -t 1.88 -s 1 -d 3 -p cbr -e 500 -c 1 -i 362 -a 1 + -t 1.88 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 363 -a 1 - -t 1.88 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 363 -a 1 h -t 1.88 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 363 -a 1 - -t 1.88 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 354 -a 1 h -t 1.88 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 354 -a 1 r -t 1.88205 -s 3 -d 0 -p ack -e 40 -c 0 -i 349 -a 0 -S 0 -y {21 21} f -t 1.88204800000000150 -s 0 -d 5 -n cwnd_ -a tcp -v 2.000000 -o 1.000000 -T v + -t 1.88205 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 364 -a 0 -S 0 -f 0 -m 0 -y {22 22} - -t 1.88205 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 364 -a 0 -S 0 -y {22 22} h -t 1.88205 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 364 -a 0 -S 0 -y {-1 -1} + -t 1.88205 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 365 -a 0 -S 0 -f 0 -m 0 -y {23 23} - -t 1.88365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 365 -a 0 -S 0 -y {23 23} h -t 1.88365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 365 -a 0 -S 0 -y {-1 -1} r -t 1.884 -s 1 -d 3 -p cbr -e 500 -c 1 -i 359 -a 1 + -t 1.884 -s 3 -d 4 -p cbr -e 500 -c 1 -i 359 -a 1 r -t 1.886 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 345 -a 1 + -t 1.886 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 345 -a 1 r -t 1.886 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 338 -a 1 - -t 1.886 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 345 -a 1 h -t 1.886 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 345 -a 1 r -t 1.888 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 360 -a 1 + -t 1.888 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 360 -a 1 - -t 1.888 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 355 -a 1 h -t 1.888 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 355 -a 1 v -t 1.8899999999999999 sim_annotation 1.8899999999999999 20 Send Packet_22,23 : window size 2 r -t 1.89 -s 3 -d 4 -p cbr -e 500 -c 1 -i 346 -a 1 + -t 1.89 -s 4 -d 6 -p cbr -e 500 -c 1 -i 346 -a 1 - -t 1.89 -s 4 -d 6 -p cbr -e 500 -c 1 -i 346 -a 1 h -t 1.89 -s 4 -d 6 -p cbr -e 500 -c 1 -i 346 -a 1 + -t 1.89 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 366 -a 1 - -t 1.89 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 366 -a 1 h -t 1.89 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 366 -a 1 r -t 1.894 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 340 -a 1 r -t 1.894 -s 4 -d 6 -p cbr -e 500 -c 1 -i 342 -a 1 - -t 1.896 -s 3 -d 4 -p cbr -e 500 -c 1 -i 356 -a 1 h -t 1.896 -s 3 -d 4 -p cbr -e 500 -c 1 -i 356 -a 1 r -t 1.898 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 347 -a 1 + -t 1.898 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 347 -a 1 - -t 1.898 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 347 -a 1 h -t 1.898 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 347 -a 1 r -t 1.898 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 361 -a 1 + -t 1.898 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 361 -a 1 + -t 1.9 -s 1 -d 3 -p cbr -e 500 -c 1 -i 367 -a 1 - -t 1.9 -s 1 -d 3 -p cbr -e 500 -c 1 -i 367 -a 1 h -t 1.9 -s 1 -d 3 -p cbr -e 500 -c 1 -i 367 -a 1 + -t 1.9 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 368 -a 1 - -t 1.9 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 368 -a 1 h -t 1.9 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 368 -a 1 - -t 1.9 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 357 -a 1 h -t 1.9 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 357 -a 1 r -t 1.90365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 364 -a 0 -S 0 -y {22 22} + -t 1.90365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 364 -a 0 -S 0 -y {22 22} r -t 1.904 -s 1 -d 3 -p cbr -e 500 -c 1 -i 362 -a 1 + -t 1.904 -s 3 -d 4 -p cbr -e 500 -c 1 -i 362 -a 1 r -t 1.90525 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 365 -a 0 -S 0 -y {23 23} + -t 1.90525 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 365 -a 0 -S 0 -y {23 23} r -t 1.906 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 348 -a 1 + -t 1.906 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 348 -a 1 r -t 1.906 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 343 -a 1 - -t 1.906 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 348 -a 1 h -t 1.906 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 348 -a 1 r -t 1.908 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 363 -a 1 + -t 1.908 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 363 -a 1 - -t 1.908 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 358 -a 1 h -t 1.908 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 358 -a 1 r -t 1.91 -s 3 -d 4 -p cbr -e 500 -c 1 -i 350 -a 1 + -t 1.91 -s 4 -d 6 -p cbr -e 500 -c 1 -i 350 -a 1 - -t 1.91 -s 4 -d 6 -p cbr -e 500 -c 1 -i 350 -a 1 h -t 1.91 -s 4 -d 6 -p cbr -e 500 -c 1 -i 350 -a 1 + -t 1.91 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 369 -a 1 - -t 1.91 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 369 -a 1 h -t 1.91 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 369 -a 1 r -t 1.914 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 345 -a 1 r -t 1.914 -s 4 -d 6 -p cbr -e 500 -c 1 -i 346 -a 1 - -t 1.916 -s 3 -d 4 -p cbr -e 500 -c 1 -i 359 -a 1 h -t 1.916 -s 3 -d 4 -p cbr -e 500 -c 1 -i 359 -a 1 r -t 1.918 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 351 -a 1 + -t 1.918 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 351 -a 1 - -t 1.918 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 351 -a 1 h -t 1.918 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 351 -a 1 r -t 1.918 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 366 -a 1 + -t 1.918 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 366 -a 1 + -t 1.92 -s 1 -d 3 -p cbr -e 500 -c 1 -i 370 -a 1 - -t 1.92 -s 1 -d 3 -p cbr -e 500 -c 1 -i 370 -a 1 h -t 1.92 -s 1 -d 3 -p cbr -e 500 -c 1 -i 370 -a 1 + -t 1.92 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 371 -a 1 - -t 1.92 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 371 -a 1 h -t 1.92 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 371 -a 1 - -t 1.92 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 360 -a 1 h -t 1.92 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 360 -a 1 r -t 1.924 -s 1 -d 3 -p cbr -e 500 -c 1 -i 367 -a 1 + -t 1.924 -s 3 -d 4 -p cbr -e 500 -c 1 -i 367 -a 1 r -t 1.926 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 352 -a 1 + -t 1.926 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 352 -a 1 r -t 1.926 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 347 -a 1 - -t 1.926 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 352 -a 1 h -t 1.926 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 352 -a 1 r -t 1.928 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 368 -a 1 + -t 1.928 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 368 -a 1 - -t 1.928 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 361 -a 1 h -t 1.928 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 361 -a 1 r -t 1.93 -s 3 -d 4 -p cbr -e 500 -c 1 -i 353 -a 1 + -t 1.93 -s 4 -d 6 -p cbr -e 500 -c 1 -i 353 -a 1 - -t 1.93 -s 4 -d 6 -p cbr -e 500 -c 1 -i 353 -a 1 h -t 1.93 -s 4 -d 6 -p cbr -e 500 -c 1 -i 353 -a 1 + -t 1.93 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 372 -a 1 - -t 1.93 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 372 -a 1 h -t 1.93 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 372 -a 1 r -t 1.934 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 348 -a 1 r -t 1.934 -s 4 -d 6 -p cbr -e 500 -c 1 -i 350 -a 1 - -t 1.936 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 364 -a 0 -S 0 -y {22 22} h -t 1.936 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 364 -a 0 -S 0 -y {-1 -1} r -t 1.938 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 354 -a 1 + -t 1.938 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 354 -a 1 - -t 1.938 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 354 -a 1 h -t 1.938 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 354 -a 1 r -t 1.938 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 369 -a 1 + -t 1.938 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 369 -a 1 + -t 1.94 -s 1 -d 3 -p cbr -e 500 -c 1 -i 373 -a 1 - -t 1.94 -s 1 -d 3 -p cbr -e 500 -c 1 -i 373 -a 1 h -t 1.94 -s 1 -d 3 -p cbr -e 500 -c 1 -i 373 -a 1 + -t 1.94 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 374 -a 1 - -t 1.94 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 374 -a 1 h -t 1.94 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 374 -a 1 r -t 1.944 -s 1 -d 3 -p cbr -e 500 -c 1 -i 370 -a 1 + -t 1.944 -s 3 -d 4 -p cbr -e 500 -c 1 -i 370 -a 1 - -t 1.944 -s 3 -d 4 -p cbr -e 500 -c 1 -i 362 -a 1 h -t 1.944 -s 3 -d 4 -p cbr -e 500 -c 1 -i 362 -a 1 r -t 1.946 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 355 -a 1 + -t 1.946 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 355 -a 1 r -t 1.946 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 351 -a 1 - -t 1.946 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 355 -a 1 h -t 1.946 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 355 -a 1 r -t 1.948 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 371 -a 1 + -t 1.948 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 371 -a 1 - -t 1.948 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 365 -a 0 -S 0 -y {23 23} h -t 1.948 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 365 -a 0 -S 0 -y {-1 -1} r -t 1.95 -s 3 -d 4 -p cbr -e 500 -c 1 -i 356 -a 1 + -t 1.95 -s 4 -d 6 -p cbr -e 500 -c 1 -i 356 -a 1 - -t 1.95 -s 4 -d 6 -p cbr -e 500 -c 1 -i 356 -a 1 h -t 1.95 -s 4 -d 6 -p cbr -e 500 -c 1 -i 356 -a 1 + -t 1.95 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 375 -a 1 - -t 1.95 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 375 -a 1 h -t 1.95 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 375 -a 1 r -t 1.954 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 352 -a 1 r -t 1.954 -s 4 -d 6 -p cbr -e 500 -c 1 -i 353 -a 1 - -t 1.956 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 363 -a 1 h -t 1.956 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 363 -a 1 r -t 1.958 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 357 -a 1 + -t 1.958 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 357 -a 1 - -t 1.958 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 357 -a 1 h -t 1.958 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 357 -a 1 r -t 1.958 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 372 -a 1 + -t 1.958 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 372 -a 1 + -t 1.96 -s 1 -d 3 -p cbr -e 500 -c 1 -i 376 -a 1 - -t 1.96 -s 1 -d 3 -p cbr -e 500 -c 1 -i 376 -a 1 h -t 1.96 -s 1 -d 3 -p cbr -e 500 -c 1 -i 376 -a 1 + -t 1.96 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 377 -a 1 - -t 1.96 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 377 -a 1 h -t 1.96 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 377 -a 1 r -t 1.964 -s 1 -d 3 -p cbr -e 500 -c 1 -i 373 -a 1 + -t 1.964 -s 3 -d 4 -p cbr -e 500 -c 1 -i 373 -a 1 - -t 1.964 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 366 -a 1 h -t 1.964 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 366 -a 1 r -t 1.966 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 358 -a 1 + -t 1.966 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 358 -a 1 r -t 1.966 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 354 -a 1 - -t 1.966 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 358 -a 1 h -t 1.966 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 358 -a 1 r -t 1.968 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 374 -a 1 + -t 1.968 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 374 -a 1 r -t 1.97 -s 3 -d 4 -p cbr -e 500 -c 1 -i 359 -a 1 + -t 1.97 -s 4 -d 6 -p cbr -e 500 -c 1 -i 359 -a 1 - -t 1.97 -s 4 -d 6 -p cbr -e 500 -c 1 -i 359 -a 1 h -t 1.97 -s 4 -d 6 -p cbr -e 500 -c 1 -i 359 -a 1 + -t 1.97 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 378 -a 1 - -t 1.97 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 378 -a 1 h -t 1.97 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 378 -a 1 - -t 1.972 -s 3 -d 4 -p cbr -e 500 -c 1 -i 367 -a 1 h -t 1.972 -s 3 -d 4 -p cbr -e 500 -c 1 -i 367 -a 1 r -t 1.974 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 355 -a 1 r -t 1.974 -s 4 -d 6 -p cbr -e 500 -c 1 -i 356 -a 1 - -t 1.976 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 368 -a 1 h -t 1.976 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 368 -a 1 r -t 1.978 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 360 -a 1 + -t 1.978 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 360 -a 1 - -t 1.978 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 360 -a 1 h -t 1.978 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 360 -a 1 r -t 1.978 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 375 -a 1 + -t 1.978 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 375 -a 1 + -t 1.98 -s 1 -d 3 -p cbr -e 500 -c 1 -i 379 -a 1 - -t 1.98 -s 1 -d 3 -p cbr -e 500 -c 1 -i 379 -a 1 h -t 1.98 -s 1 -d 3 -p cbr -e 500 -c 1 -i 379 -a 1 + -t 1.98 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 380 -a 1 - -t 1.98 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 380 -a 1 h -t 1.98 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 380 -a 1 r -t 1.984 -s 1 -d 3 -p cbr -e 500 -c 1 -i 376 -a 1 + -t 1.984 -s 3 -d 4 -p cbr -e 500 -c 1 -i 376 -a 1 - -t 1.984 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 369 -a 1 h -t 1.984 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 369 -a 1 r -t 1.986 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 361 -a 1 + -t 1.986 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 361 -a 1 r -t 1.986 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 357 -a 1 - -t 1.986 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 361 -a 1 h -t 1.986 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 361 -a 1 r -t 1.988 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 377 -a 1 + -t 1.988 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 377 -a 1 + -t 1.99 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 381 -a 1 - -t 1.99 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 381 -a 1 h -t 1.99 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 381 -a 1 - -t 1.992 -s 3 -d 4 -p cbr -e 500 -c 1 -i 370 -a 1 h -t 1.992 -s 3 -d 4 -p cbr -e 500 -c 1 -i 370 -a 1 r -t 1.994 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 364 -a 0 -S 0 -y {22 22} + -t 1.994 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 364 -a 0 -S 0 -y {22 22} - -t 1.994 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 364 -a 0 -S 0 -y {22 22} h -t 1.994 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 364 -a 0 -S 0 -y {-1 -1} r -t 1.994 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 358 -a 1 r -t 1.994 -s 4 -d 6 -p cbr -e 500 -c 1 -i 359 -a 1 - -t 1.996 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 371 -a 1 h -t 1.996 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 371 -a 1 r -t 1.998 -s 3 -d 4 -p cbr -e 500 -c 1 -i 362 -a 1 + -t 1.998 -s 4 -d 6 -p cbr -e 500 -c 1 -i 362 -a 1 - -t 1.998 -s 4 -d 6 -p cbr -e 500 -c 1 -i 362 -a 1 h -t 1.998 -s 4 -d 6 -p cbr -e 500 -c 1 -i 362 -a 1 r -t 1.998 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 378 -a 1 + -t 1.998 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 378 -a 1 + -t 2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 382 -a 1 - -t 2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 382 -a 1 h -t 2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 382 -a 1 + -t 2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 383 -a 1 - -t 2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 383 -a 1 h -t 2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 383 -a 1 r -t 2.004 -s 1 -d 3 -p cbr -e 500 -c 1 -i 379 -a 1 + -t 2.004 -s 3 -d 4 -p cbr -e 500 -c 1 -i 379 -a 1 - -t 2.004 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 372 -a 1 h -t 2.004 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 372 -a 1 r -t 2.006 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 365 -a 0 -S 0 -y {23 23} + -t 2.006 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 365 -a 0 -S 0 -y {23 23} - -t 2.006 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 365 -a 0 -S 0 -y {23 23} h -t 2.006 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 365 -a 0 -S 0 -y {-1 -1} r -t 2.006 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 360 -a 1 r -t 2.008 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 380 -a 1 + -t 2.008 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 380 -a 1 v -t 2.0099999999999998 sim_annotation 2.0099999999999998 21 2 Ack_25s + -t 2.01 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 384 -a 1 - -t 2.01 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 384 -a 1 h -t 2.01 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 384 -a 1 - -t 2.012 -s 3 -d 4 -p cbr -e 500 -c 1 -i 373 -a 1 h -t 2.012 -s 3 -d 4 -p cbr -e 500 -c 1 -i 373 -a 1 r -t 2.014 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 363 -a 1 + -t 2.014 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 363 -a 1 - -t 2.014 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 363 -a 1 h -t 2.014 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 363 -a 1 r -t 2.014 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 361 -a 1 r -t 2.0156 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 364 -a 0 -S 0 -y {22 22} + -t 2.0156 -s 5 -d 4 -p ack -e 40 -c 0 -i 385 -a 0 -S 0 -y {25 25} - -t 2.0156 -s 5 -d 4 -p ack -e 40 -c 0 -i 385 -a 0 -S 0 -y {25 25} h -t 2.0156 -s 5 -d 4 -p ack -e 40 -c 0 -i 385 -a 0 -S 0 -y {-1 -1} - -t 2.016 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 374 -a 1 h -t 2.016 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 374 -a 1 r -t 2.018 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 381 -a 1 + -t 2.018 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 381 -a 1 + -t 2.02 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 386 -a 1 - -t 2.02 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 386 -a 1 h -t 2.02 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 386 -a 1 + -t 2.02 -s 1 -d 3 -p cbr -e 500 -c 1 -i 387 -a 1 - -t 2.02 -s 1 -d 3 -p cbr -e 500 -c 1 -i 387 -a 1 h -t 2.02 -s 1 -d 3 -p cbr -e 500 -c 1 -i 387 -a 1 r -t 2.022 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 366 -a 1 + -t 2.022 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 366 -a 1 r -t 2.022 -s 4 -d 6 -p cbr -e 500 -c 1 -i 362 -a 1 - -t 2.022 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 366 -a 1 h -t 2.022 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 366 -a 1 r -t 2.024 -s 1 -d 3 -p cbr -e 500 -c 1 -i 382 -a 1 + -t 2.024 -s 3 -d 4 -p cbr -e 500 -c 1 -i 382 -a 1 - -t 2.024 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 375 -a 1 h -t 2.024 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 375 -a 1 r -t 2.026 -s 3 -d 4 -p cbr -e 500 -c 1 -i 367 -a 1 + -t 2.026 -s 4 -d 6 -p cbr -e 500 -c 1 -i 367 -a 1 - -t 2.026 -s 4 -d 6 -p cbr -e 500 -c 1 -i 367 -a 1 h -t 2.026 -s 4 -d 6 -p cbr -e 500 -c 1 -i 367 -a 1 r -t 2.0276 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 365 -a 0 -S 0 -y {23 23} + -t 2.0276 -s 5 -d 4 -p ack -e 40 -c 0 -i 388 -a 0 -S 0 -y {25 25} - -t 2.0276 -s 5 -d 4 -p ack -e 40 -c 0 -i 388 -a 0 -S 0 -y {25 25} h -t 2.0276 -s 5 -d 4 -p ack -e 40 -c 0 -i 388 -a 0 -S 0 -y {-1 -1} r -t 2.028 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 383 -a 1 + -t 2.028 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 383 -a 1 + -t 2.03 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 389 -a 1 - -t 2.03 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 389 -a 1 h -t 2.03 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 389 -a 1 - -t 2.032 -s 3 -d 4 -p cbr -e 500 -c 1 -i 376 -a 1 h -t 2.032 -s 3 -d 4 -p cbr -e 500 -c 1 -i 376 -a 1 r -t 2.034 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 368 -a 1 + -t 2.034 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 368 -a 1 - -t 2.034 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 368 -a 1 h -t 2.034 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 368 -a 1 r -t 2.03566 -s 5 -d 4 -p ack -e 40 -c 0 -i 385 -a 0 -S 0 -y {25 25} + -t 2.03566 -s 4 -d 3 -p ack -e 40 -c 0 -i 385 -a 0 -S 0 -y {25 25} - -t 2.03566 -s 4 -d 3 -p ack -e 40 -c 0 -i 385 -a 0 -S 0 -y {25 25} h -t 2.03566 -s 4 -d 3 -p ack -e 40 -c 0 -i 385 -a 0 -S 0 -y {-1 -1} - -t 2.036 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 377 -a 1 h -t 2.036 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 377 -a 1 r -t 2.038 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 384 -a 1 + -t 2.038 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 384 -a 1 + -t 2.04 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 390 -a 1 - -t 2.04 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 390 -a 1 h -t 2.04 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 390 -a 1 + -t 2.04 -s 1 -d 3 -p cbr -e 500 -c 1 -i 391 -a 1 - -t 2.04 -s 1 -d 3 -p cbr -e 500 -c 1 -i 391 -a 1 h -t 2.04 -s 1 -d 3 -p cbr -e 500 -c 1 -i 391 -a 1 r -t 2.042 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 369 -a 1 + -t 2.042 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 369 -a 1 r -t 2.042 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 363 -a 1 - -t 2.042 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 369 -a 1 h -t 2.042 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 369 -a 1 r -t 2.044 -s 1 -d 3 -p cbr -e 500 -c 1 -i 387 -a 1 + -t 2.044 -s 3 -d 4 -p cbr -e 500 -c 1 -i 387 -a 1 - -t 2.044 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 378 -a 1 h -t 2.044 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 378 -a 1 r -t 2.046 -s 3 -d 4 -p cbr -e 500 -c 1 -i 370 -a 1 + -t 2.046 -s 4 -d 6 -p cbr -e 500 -c 1 -i 370 -a 1 - -t 2.046 -s 4 -d 6 -p cbr -e 500 -c 1 -i 370 -a 1 h -t 2.046 -s 4 -d 6 -p cbr -e 500 -c 1 -i 370 -a 1 r -t 2.04766 -s 5 -d 4 -p ack -e 40 -c 0 -i 388 -a 0 -S 0 -y {25 25} + -t 2.04766 -s 4 -d 3 -p ack -e 40 -c 0 -i 388 -a 0 -S 0 -y {25 25} - -t 2.04766 -s 4 -d 3 -p ack -e 40 -c 0 -i 388 -a 0 -S 0 -y {25 25} h -t 2.04766 -s 4 -d 3 -p ack -e 40 -c 0 -i 388 -a 0 -S 0 -y {-1 -1} r -t 2.048 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 386 -a 1 + -t 2.048 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 386 -a 1 + -t 2.05 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 392 -a 1 - -t 2.05 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 392 -a 1 h -t 2.05 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 392 -a 1 r -t 2.05 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 366 -a 1 r -t 2.05 -s 4 -d 6 -p cbr -e 500 -c 1 -i 367 -a 1 - -t 2.052 -s 3 -d 4 -p cbr -e 500 -c 1 -i 379 -a 1 h -t 2.052 -s 3 -d 4 -p cbr -e 500 -c 1 -i 379 -a 1 r -t 2.054 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 371 -a 1 + -t 2.054 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 371 -a 1 - -t 2.054 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 371 -a 1 h -t 2.054 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 371 -a 1 - -t 2.056 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 380 -a 1 h -t 2.056 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 380 -a 1 r -t 2.058 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 389 -a 1 + -t 2.058 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 389 -a 1 + -t 2.06 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 393 -a 1 - -t 2.06 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 393 -a 1 h -t 2.06 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 393 -a 1 + -t 2.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 394 -a 1 - -t 2.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 394 -a 1 h -t 2.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 394 -a 1 r -t 2.062 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 372 -a 1 + -t 2.062 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 372 -a 1 r -t 2.062 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 368 -a 1 - -t 2.062 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 372 -a 1 h -t 2.062 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 372 -a 1 r -t 2.064 -s 1 -d 3 -p cbr -e 500 -c 1 -i 391 -a 1 + -t 2.064 -s 3 -d 4 -p cbr -e 500 -c 1 -i 391 -a 1 - -t 2.064 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 381 -a 1 h -t 2.064 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 381 -a 1 r -t 2.066 -s 3 -d 4 -p cbr -e 500 -c 1 -i 373 -a 1 + -t 2.066 -s 4 -d 6 -p cbr -e 500 -c 1 -i 373 -a 1 - -t 2.066 -s 4 -d 6 -p cbr -e 500 -c 1 -i 373 -a 1 h -t 2.066 -s 4 -d 6 -p cbr -e 500 -c 1 -i 373 -a 1 r -t 2.068 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 390 -a 1 + -t 2.068 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 390 -a 1 + -t 2.07 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 395 -a 1 - -t 2.07 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 395 -a 1 h -t 2.07 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 395 -a 1 r -t 2.07 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 369 -a 1 r -t 2.07 -s 4 -d 6 -p cbr -e 500 -c 1 -i 370 -a 1 - -t 2.072 -s 3 -d 4 -p cbr -e 500 -c 1 -i 382 -a 1 h -t 2.072 -s 3 -d 4 -p cbr -e 500 -c 1 -i 382 -a 1 r -t 2.074 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 374 -a 1 + -t 2.074 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 374 -a 1 - -t 2.074 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 374 -a 1 h -t 2.074 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 374 -a 1 - -t 2.076 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 383 -a 1 h -t 2.076 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 383 -a 1 r -t 2.078 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 392 -a 1 + -t 2.078 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 392 -a 1 + -t 2.08 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 396 -a 1 - -t 2.08 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 396 -a 1 h -t 2.08 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 396 -a 1 + -t 2.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 397 -a 1 - -t 2.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 397 -a 1 h -t 2.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 397 -a 1 r -t 2.082 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 375 -a 1 + -t 2.082 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 375 -a 1 - -t 2.082 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 375 -a 1 h -t 2.082 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 375 -a 1 r -t 2.082 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 371 -a 1 r -t 2.084 -s 1 -d 3 -p cbr -e 500 -c 1 -i 394 -a 1 + -t 2.084 -s 3 -d 4 -p cbr -e 500 -c 1 -i 394 -a 1 - -t 2.084 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 384 -a 1 h -t 2.084 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 384 -a 1 r -t 2.08598 -s 4 -d 3 -p ack -e 40 -c 0 -i 385 -a 0 -S 0 -y {25 25} + -t 2.08598 -s 3 -d 0 -p ack -e 40 -c 0 -i 385 -a 0 -S 0 -y {25 25} - -t 2.08598 -s 3 -d 0 -p ack -e 40 -c 0 -i 385 -a 0 -S 0 -f 0 -m 1 -y {25 25} h -t 2.08598 -s 3 -d 0 -p ack -e 40 -c 0 -i 385 -a 0 -S 0 -y {-1 -1} r -t 2.086 -s 3 -d 4 -p cbr -e 500 -c 1 -i 376 -a 1 + -t 2.086 -s 4 -d 6 -p cbr -e 500 -c 1 -i 376 -a 1 - -t 2.086 -s 4 -d 6 -p cbr -e 500 -c 1 -i 376 -a 1 h -t 2.086 -s 4 -d 6 -p cbr -e 500 -c 1 -i 376 -a 1 r -t 2.088 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 393 -a 1 + -t 2.088 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 393 -a 1 + -t 2.09 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 398 -a 1 - -t 2.09 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 398 -a 1 h -t 2.09 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 398 -a 1 r -t 2.09 -s 4 -d 6 -p cbr -e 500 -c 1 -i 373 -a 1 r -t 2.09 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 372 -a 1 - -t 2.092 -s 3 -d 4 -p cbr -e 500 -c 1 -i 387 -a 1 h -t 2.092 -s 3 -d 4 -p cbr -e 500 -c 1 -i 387 -a 1 r -t 2.094 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 377 -a 1 + -t 2.094 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 377 -a 1 - -t 2.094 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 377 -a 1 h -t 2.094 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 377 -a 1 - -t 2.096 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 386 -a 1 h -t 2.096 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 386 -a 1 r -t 2.09798 -s 4 -d 3 -p ack -e 40 -c 0 -i 388 -a 0 -S 0 -y {25 25} + -t 2.09798 -s 3 -d 0 -p ack -e 40 -c 0 -i 388 -a 0 -S 0 -y {25 25} - -t 2.09798 -s 3 -d 0 -p ack -e 40 -c 0 -i 388 -a 0 -S 0 -f 0 -m 1 -y {25 25} h -t 2.09798 -s 3 -d 0 -p ack -e 40 -c 0 -i 388 -a 0 -S 0 -y {-1 -1} r -t 2.098 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 395 -a 1 + -t 2.098 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 395 -a 1 + -t 2.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 399 -a 1 - -t 2.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 399 -a 1 h -t 2.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 399 -a 1 + -t 2.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 400 -a 1 - -t 2.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 400 -a 1 h -t 2.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 400 -a 1 r -t 2.102 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 378 -a 1 + -t 2.102 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 378 -a 1 r -t 2.102 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 374 -a 1 - -t 2.102 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 378 -a 1 h -t 2.102 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 378 -a 1 r -t 2.104 -s 1 -d 3 -p cbr -e 500 -c 1 -i 397 -a 1 + -t 2.104 -s 3 -d 4 -p cbr -e 500 -c 1 -i 397 -a 1 - -t 2.104 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 389 -a 1 h -t 2.104 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 389 -a 1 r -t 2.106 -s 3 -d 4 -p cbr -e 500 -c 1 -i 379 -a 1 + -t 2.106 -s 4 -d 6 -p cbr -e 500 -c 1 -i 379 -a 1 - -t 2.106 -s 4 -d 6 -p cbr -e 500 -c 1 -i 379 -a 1 h -t 2.106 -s 4 -d 6 -p cbr -e 500 -c 1 -i 379 -a 1 r -t 2.10605 -s 3 -d 0 -p ack -e 40 -c 0 -i 385 -a 0 -S 0 -y {25 25} f -t 2.10604800000000170 -s 0 -d 5 -n cwnd_ -a tcp -v 3.000000 -o 2.000000 -T v + -t 2.10605 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 401 -a 0 -S 0 -f 0 -m 0 -y {26 26} - -t 2.10605 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 401 -a 0 -S 0 -y {26 26} h -t 2.10605 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 401 -a 0 -S 0 -y {-1 -1} + -t 2.10605 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 402 -a 0 -S 0 -f 0 -m 0 -y {27 27} + -t 2.10605 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 403 -a 0 -S 0 -f 0 -m 0 -y {28 28} - -t 2.10765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 402 -a 0 -S 0 -y {27 27} h -t 2.10765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 402 -a 0 -S 0 -y {-1 -1} r -t 2.108 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 396 -a 1 + -t 2.108 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 396 -a 1 - -t 2.10925 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 403 -a 0 -S 0 -y {28 28} h -t 2.10925 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 403 -a 0 -S 0 -y {-1 -1} + -t 2.11 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 404 -a 1 - -t 2.11 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 404 -a 1 h -t 2.11 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 404 -a 1 v -t 2.1099999999999999 sim_annotation 2.1099999999999999 22 Send Packet_26,27,28 : window size 3 r -t 2.11 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 375 -a 1 r -t 2.11 -s 4 -d 6 -p cbr -e 500 -c 1 -i 376 -a 1 - -t 2.112 -s 3 -d 4 -p cbr -e 500 -c 1 -i 391 -a 1 h -t 2.112 -s 3 -d 4 -p cbr -e 500 -c 1 -i 391 -a 1 r -t 2.114 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 380 -a 1 + -t 2.114 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 380 -a 1 - -t 2.114 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 380 -a 1 h -t 2.114 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 380 -a 1 - -t 2.116 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 390 -a 1 h -t 2.116 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 390 -a 1 r -t 2.118 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 398 -a 1 + -t 2.118 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 398 -a 1 r -t 2.11805 -s 3 -d 0 -p ack -e 40 -c 0 -i 388 -a 0 -S 0 -y {25 25} + -t 2.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 405 -a 1 - -t 2.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 405 -a 1 h -t 2.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 405 -a 1 + -t 2.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 406 -a 1 - -t 2.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 406 -a 1 h -t 2.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 406 -a 1 r -t 2.122 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 381 -a 1 + -t 2.122 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 381 -a 1 r -t 2.122 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 377 -a 1 - -t 2.122 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 381 -a 1 h -t 2.122 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 381 -a 1 r -t 2.124 -s 1 -d 3 -p cbr -e 500 -c 1 -i 400 -a 1 + -t 2.124 -s 3 -d 4 -p cbr -e 500 -c 1 -i 400 -a 1 - -t 2.124 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 392 -a 1 h -t 2.124 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 392 -a 1 r -t 2.126 -s 3 -d 4 -p cbr -e 500 -c 1 -i 382 -a 1 + -t 2.126 -s 4 -d 6 -p cbr -e 500 -c 1 -i 382 -a 1 - -t 2.126 -s 4 -d 6 -p cbr -e 500 -c 1 -i 382 -a 1 h -t 2.126 -s 4 -d 6 -p cbr -e 500 -c 1 -i 382 -a 1 r -t 2.12765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 401 -a 0 -S 0 -y {26 26} + -t 2.12765 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 401 -a 0 -S 0 -y {26 26} r -t 2.128 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 399 -a 1 + -t 2.128 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 399 -a 1 r -t 2.12925 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 402 -a 0 -S 0 -y {27 27} + -t 2.12925 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 402 -a 0 -S 0 -y {27 27} d -t 2.12925 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 402 -a 0 -S 0 -y {27 27} + -t 2.13 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 407 -a 1 - -t 2.13 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 407 -a 1 h -t 2.13 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 407 -a 1 v -t 2.1299999999999999 sim_annotation 2.1299999999999999 23 Lost Packet_27,28 ! r -t 2.13 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 378 -a 1 r -t 2.13 -s 4 -d 6 -p cbr -e 500 -c 1 -i 379 -a 1 r -t 2.13085 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 403 -a 0 -S 0 -y {28 28} + -t 2.13085 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 403 -a 0 -S 0 -y {28 28} d -t 2.13085 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 403 -a 0 -S 0 -y {28 28} - -t 2.132 -s 3 -d 4 -p cbr -e 500 -c 1 -i 394 -a 1 h -t 2.132 -s 3 -d 4 -p cbr -e 500 -c 1 -i 394 -a 1 r -t 2.134 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 383 -a 1 + -t 2.134 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 383 -a 1 - -t 2.134 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 383 -a 1 h -t 2.134 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 383 -a 1 - -t 2.136 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 393 -a 1 h -t 2.136 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 393 -a 1 r -t 2.138 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 404 -a 1 + -t 2.138 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 404 -a 1 + -t 2.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 408 -a 1 - -t 2.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 408 -a 1 h -t 2.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 408 -a 1 + -t 2.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 409 -a 1 - -t 2.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 409 -a 1 h -t 2.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 409 -a 1 r -t 2.142 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 384 -a 1 + -t 2.142 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 384 -a 1 r -t 2.142 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 380 -a 1 - -t 2.142 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 384 -a 1 h -t 2.142 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 384 -a 1 r -t 2.144 -s 1 -d 3 -p cbr -e 500 -c 1 -i 406 -a 1 + -t 2.144 -s 3 -d 4 -p cbr -e 500 -c 1 -i 406 -a 1 - -t 2.144 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 395 -a 1 h -t 2.144 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 395 -a 1 r -t 2.146 -s 3 -d 4 -p cbr -e 500 -c 1 -i 387 -a 1 + -t 2.146 -s 4 -d 6 -p cbr -e 500 -c 1 -i 387 -a 1 - -t 2.146 -s 4 -d 6 -p cbr -e 500 -c 1 -i 387 -a 1 h -t 2.146 -s 4 -d 6 -p cbr -e 500 -c 1 -i 387 -a 1 r -t 2.148 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 405 -a 1 + -t 2.148 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 405 -a 1 + -t 2.15 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 410 -a 1 - -t 2.15 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 410 -a 1 h -t 2.15 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 410 -a 1 r -t 2.15 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 381 -a 1 r -t 2.15 -s 4 -d 6 -p cbr -e 500 -c 1 -i 382 -a 1 - -t 2.152 -s 3 -d 4 -p cbr -e 500 -c 1 -i 397 -a 1 h -t 2.152 -s 3 -d 4 -p cbr -e 500 -c 1 -i 397 -a 1 r -t 2.154 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 386 -a 1 + -t 2.154 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 386 -a 1 - -t 2.154 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 386 -a 1 h -t 2.154 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 386 -a 1 - -t 2.156 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 396 -a 1 h -t 2.156 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 396 -a 1 r -t 2.158 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 407 -a 1 + -t 2.158 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 407 -a 1 + -t 2.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 411 -a 1 - -t 2.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 411 -a 1 h -t 2.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 411 -a 1 + -t 2.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 412 -a 1 - -t 2.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 412 -a 1 h -t 2.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 412 -a 1 r -t 2.162 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 389 -a 1 + -t 2.162 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 389 -a 1 r -t 2.162 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 383 -a 1 - -t 2.162 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 389 -a 1 h -t 2.162 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 389 -a 1 r -t 2.164 -s 1 -d 3 -p cbr -e 500 -c 1 -i 409 -a 1 + -t 2.164 -s 3 -d 4 -p cbr -e 500 -c 1 -i 409 -a 1 - -t 2.164 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 398 -a 1 h -t 2.164 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 398 -a 1 r -t 2.166 -s 3 -d 4 -p cbr -e 500 -c 1 -i 391 -a 1 + -t 2.166 -s 4 -d 6 -p cbr -e 500 -c 1 -i 391 -a 1 - -t 2.166 -s 4 -d 6 -p cbr -e 500 -c 1 -i 391 -a 1 h -t 2.166 -s 4 -d 6 -p cbr -e 500 -c 1 -i 391 -a 1 r -t 2.168 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 408 -a 1 + -t 2.168 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 408 -a 1 + -t 2.17 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 413 -a 1 - -t 2.17 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 413 -a 1 h -t 2.17 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 413 -a 1 r -t 2.17 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 384 -a 1 r -t 2.17 -s 4 -d 6 -p cbr -e 500 -c 1 -i 387 -a 1 - -t 2.172 -s 3 -d 4 -p cbr -e 500 -c 1 -i 400 -a 1 h -t 2.172 -s 3 -d 4 -p cbr -e 500 -c 1 -i 400 -a 1 r -t 2.174 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 390 -a 1 + -t 2.174 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 390 -a 1 - -t 2.174 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 390 -a 1 h -t 2.174 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 390 -a 1 - -t 2.176 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 401 -a 0 -S 0 -y {26 26} h -t 2.176 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 401 -a 0 -S 0 -y {-1 -1} r -t 2.178 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 410 -a 1 + -t 2.178 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 410 -a 1 + -t 2.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 414 -a 1 - -t 2.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 414 -a 1 h -t 2.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 414 -a 1 + -t 2.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 415 -a 1 - -t 2.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 415 -a 1 h -t 2.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 415 -a 1 r -t 2.182 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 392 -a 1 + -t 2.182 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 392 -a 1 r -t 2.182 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 386 -a 1 - -t 2.182 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 392 -a 1 h -t 2.182 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 392 -a 1 r -t 2.184 -s 1 -d 3 -p cbr -e 500 -c 1 -i 412 -a 1 + -t 2.184 -s 3 -d 4 -p cbr -e 500 -c 1 -i 412 -a 1 - -t 2.184 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 399 -a 1 h -t 2.184 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 399 -a 1 r -t 2.186 -s 3 -d 4 -p cbr -e 500 -c 1 -i 394 -a 1 + -t 2.186 -s 4 -d 6 -p cbr -e 500 -c 1 -i 394 -a 1 - -t 2.186 -s 4 -d 6 -p cbr -e 500 -c 1 -i 394 -a 1 h -t 2.186 -s 4 -d 6 -p cbr -e 500 -c 1 -i 394 -a 1 r -t 2.188 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 411 -a 1 + -t 2.188 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 411 -a 1 + -t 2.19 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 416 -a 1 - -t 2.19 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 416 -a 1 h -t 2.19 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 416 -a 1 r -t 2.19 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 389 -a 1 r -t 2.19 -s 4 -d 6 -p cbr -e 500 -c 1 -i 391 -a 1 - -t 2.192 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 404 -a 1 h -t 2.192 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 404 -a 1 r -t 2.194 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 393 -a 1 + -t 2.194 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 393 -a 1 - -t 2.194 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 393 -a 1 h -t 2.194 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 393 -a 1 r -t 2.198 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 413 -a 1 + -t 2.198 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 413 -a 1 + -t 2.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 417 -a 1 - -t 2.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 417 -a 1 h -t 2.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 417 -a 1 + -t 2.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 418 -a 1 - -t 2.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 418 -a 1 h -t 2.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 418 -a 1 - -t 2.2 -s 3 -d 4 -p cbr -e 500 -c 1 -i 406 -a 1 h -t 2.2 -s 3 -d 4 -p cbr -e 500 -c 1 -i 406 -a 1 r -t 2.202 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 395 -a 1 + -t 2.202 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 395 -a 1 r -t 2.202 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 390 -a 1 - -t 2.202 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 395 -a 1 h -t 2.202 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 395 -a 1 r -t 2.204 -s 1 -d 3 -p cbr -e 500 -c 1 -i 415 -a 1 + -t 2.204 -s 3 -d 4 -p cbr -e 500 -c 1 -i 415 -a 1 - -t 2.204 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 405 -a 1 h -t 2.204 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 405 -a 1 r -t 2.206 -s 3 -d 4 -p cbr -e 500 -c 1 -i 397 -a 1 + -t 2.206 -s 4 -d 6 -p cbr -e 500 -c 1 -i 397 -a 1 - -t 2.206 -s 4 -d 6 -p cbr -e 500 -c 1 -i 397 -a 1 h -t 2.206 -s 4 -d 6 -p cbr -e 500 -c 1 -i 397 -a 1 r -t 2.208 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 414 -a 1 + -t 2.208 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 414 -a 1 + -t 2.21 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 419 -a 1 - -t 2.21 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 419 -a 1 h -t 2.21 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 419 -a 1 r -t 2.21 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 392 -a 1 r -t 2.21 -s 4 -d 6 -p cbr -e 500 -c 1 -i 394 -a 1 - -t 2.212 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 407 -a 1 h -t 2.212 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 407 -a 1 r -t 2.214 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 396 -a 1 + -t 2.214 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 396 -a 1 - -t 2.214 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 396 -a 1 h -t 2.214 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 396 -a 1 r -t 2.218 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 416 -a 1 + -t 2.218 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 416 -a 1 + -t 2.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 420 -a 1 - -t 2.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 420 -a 1 h -t 2.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 420 -a 1 + -t 2.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 421 -a 1 - -t 2.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 421 -a 1 h -t 2.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 421 -a 1 - -t 2.22 -s 3 -d 4 -p cbr -e 500 -c 1 -i 409 -a 1 h -t 2.22 -s 3 -d 4 -p cbr -e 500 -c 1 -i 409 -a 1 r -t 2.222 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 398 -a 1 + -t 2.222 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 398 -a 1 r -t 2.222 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 393 -a 1 - -t 2.222 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 398 -a 1 h -t 2.222 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 398 -a 1 r -t 2.224 -s 1 -d 3 -p cbr -e 500 -c 1 -i 418 -a 1 + -t 2.224 -s 3 -d 4 -p cbr -e 500 -c 1 -i 418 -a 1 - -t 2.224 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 408 -a 1 h -t 2.224 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 408 -a 1 r -t 2.226 -s 3 -d 4 -p cbr -e 500 -c 1 -i 400 -a 1 + -t 2.226 -s 4 -d 6 -p cbr -e 500 -c 1 -i 400 -a 1 - -t 2.226 -s 4 -d 6 -p cbr -e 500 -c 1 -i 400 -a 1 h -t 2.226 -s 4 -d 6 -p cbr -e 500 -c 1 -i 400 -a 1 r -t 2.228 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 417 -a 1 + -t 2.228 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 417 -a 1 + -t 2.23 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 422 -a 1 - -t 2.23 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 422 -a 1 h -t 2.23 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 422 -a 1 r -t 2.23 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 395 -a 1 r -t 2.23 -s 4 -d 6 -p cbr -e 500 -c 1 -i 397 -a 1 - -t 2.232 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 410 -a 1 h -t 2.232 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 410 -a 1 r -t 2.234 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 401 -a 0 -S 0 -y {26 26} + -t 2.234 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 401 -a 0 -S 0 -y {26 26} - -t 2.234 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 401 -a 0 -S 0 -y {26 26} h -t 2.234 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 401 -a 0 -S 0 -y {-1 -1} r -t 2.238 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 419 -a 1 + -t 2.238 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 419 -a 1 + -t 2.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 423 -a 1 - -t 2.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 423 -a 1 h -t 2.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 423 -a 1 + -t 2.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 424 -a 1 - -t 2.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 424 -a 1 h -t 2.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 424 -a 1 - -t 2.24 -s 3 -d 4 -p cbr -e 500 -c 1 -i 412 -a 1 h -t 2.24 -s 3 -d 4 -p cbr -e 500 -c 1 -i 412 -a 1 r -t 2.242 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 399 -a 1 + -t 2.242 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 399 -a 1 - -t 2.242 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 399 -a 1 h -t 2.242 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 399 -a 1 r -t 2.242 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 396 -a 1 r -t 2.244 -s 1 -d 3 -p cbr -e 500 -c 1 -i 421 -a 1 + -t 2.244 -s 3 -d 4 -p cbr -e 500 -c 1 -i 421 -a 1 - -t 2.244 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 411 -a 1 h -t 2.244 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 411 -a 1 r -t 2.248 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 420 -a 1 + -t 2.248 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 420 -a 1 + -t 2.25 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 425 -a 1 - -t 2.25 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 425 -a 1 h -t 2.25 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 425 -a 1 r -t 2.25 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 404 -a 1 + -t 2.25 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 404 -a 1 r -t 2.25 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 398 -a 1 r -t 2.25 -s 4 -d 6 -p cbr -e 500 -c 1 -i 400 -a 1 - -t 2.25 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 404 -a 1 h -t 2.25 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 404 -a 1 - -t 2.252 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 413 -a 1 h -t 2.252 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 413 -a 1 r -t 2.254 -s 3 -d 4 -p cbr -e 500 -c 1 -i 406 -a 1 + -t 2.254 -s 4 -d 6 -p cbr -e 500 -c 1 -i 406 -a 1 - -t 2.254 -s 4 -d 6 -p cbr -e 500 -c 1 -i 406 -a 1 h -t 2.254 -s 4 -d 6 -p cbr -e 500 -c 1 -i 406 -a 1 r -t 2.2556 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 401 -a 0 -S 0 -y {26 26} + -t 2.2556 -s 5 -d 4 -p ack -e 40 -c 0 -i 426 -a 0 -S 0 -y {28 28} - -t 2.2556 -s 5 -d 4 -p ack -e 40 -c 0 -i 426 -a 0 -S 0 -y {28 28} h -t 2.2556 -s 5 -d 4 -p ack -e 40 -c 0 -i 426 -a 0 -S 0 -y {-1 -1} r -t 2.258 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 422 -a 1 + -t 2.258 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 422 -a 1 + -t 2.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 427 -a 1 - -t 2.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 427 -a 1 h -t 2.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 427 -a 1 v -t 2.2599999999999998 sim_annotation 2.2599999999999998 24 Ack_26 + -t 2.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 428 -a 1 - -t 2.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 428 -a 1 h -t 2.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 428 -a 1 - -t 2.26 -s 3 -d 4 -p cbr -e 500 -c 1 -i 415 -a 1 h -t 2.26 -s 3 -d 4 -p cbr -e 500 -c 1 -i 415 -a 1 r -t 2.262 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 405 -a 1 + -t 2.262 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 405 -a 1 - -t 2.262 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 405 -a 1 h -t 2.262 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 405 -a 1 r -t 2.264 -s 1 -d 3 -p cbr -e 500 -c 1 -i 424 -a 1 + -t 2.264 -s 3 -d 4 -p cbr -e 500 -c 1 -i 424 -a 1 - -t 2.264 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 414 -a 1 h -t 2.264 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 414 -a 1 r -t 2.268 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 423 -a 1 + -t 2.268 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 423 -a 1 + -t 2.27 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 429 -a 1 - -t 2.27 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 429 -a 1 h -t 2.27 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 429 -a 1 r -t 2.27 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 407 -a 1 + -t 2.27 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 407 -a 1 r -t 2.27 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 399 -a 1 - -t 2.27 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 407 -a 1 h -t 2.27 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 407 -a 1 - -t 2.272 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 416 -a 1 h -t 2.272 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 416 -a 1 r -t 2.274 -s 3 -d 4 -p cbr -e 500 -c 1 -i 409 -a 1 + -t 2.274 -s 4 -d 6 -p cbr -e 500 -c 1 -i 409 -a 1 - -t 2.274 -s 4 -d 6 -p cbr -e 500 -c 1 -i 409 -a 1 h -t 2.274 -s 4 -d 6 -p cbr -e 500 -c 1 -i 409 -a 1 r -t 2.27566 -s 5 -d 4 -p ack -e 40 -c 0 -i 426 -a 0 -S 0 -y {28 28} + -t 2.27566 -s 4 -d 3 -p ack -e 40 -c 0 -i 426 -a 0 -S 0 -y {28 28} - -t 2.27566 -s 4 -d 3 -p ack -e 40 -c 0 -i 426 -a 0 -S 0 -y {28 28} h -t 2.27566 -s 4 -d 3 -p ack -e 40 -c 0 -i 426 -a 0 -S 0 -y {-1 -1} r -t 2.278 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 425 -a 1 + -t 2.278 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 425 -a 1 r -t 2.278 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 404 -a 1 r -t 2.278 -s 4 -d 6 -p cbr -e 500 -c 1 -i 406 -a 1 + -t 2.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 430 -a 1 - -t 2.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 430 -a 1 h -t 2.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 430 -a 1 + -t 2.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 431 -a 1 - -t 2.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 431 -a 1 h -t 2.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 431 -a 1 - -t 2.28 -s 3 -d 4 -p cbr -e 500 -c 1 -i 418 -a 1 h -t 2.28 -s 3 -d 4 -p cbr -e 500 -c 1 -i 418 -a 1 r -t 2.282 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 408 -a 1 + -t 2.282 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 408 -a 1 - -t 2.282 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 408 -a 1 h -t 2.282 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 408 -a 1 r -t 2.284 -s 1 -d 3 -p cbr -e 500 -c 1 -i 428 -a 1 + -t 2.284 -s 3 -d 4 -p cbr -e 500 -c 1 -i 428 -a 1 - -t 2.284 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 417 -a 1 h -t 2.284 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 417 -a 1 r -t 2.288 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 427 -a 1 + -t 2.288 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 427 -a 1 + -t 2.29 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 432 -a 1 - -t 2.29 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 432 -a 1 h -t 2.29 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 432 -a 1 r -t 2.29 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 410 -a 1 + -t 2.29 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 410 -a 1 r -t 2.29 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 405 -a 1 - -t 2.29 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 410 -a 1 h -t 2.29 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 410 -a 1 - -t 2.292 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 419 -a 1 h -t 2.292 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 419 -a 1 r -t 2.294 -s 3 -d 4 -p cbr -e 500 -c 1 -i 412 -a 1 + -t 2.294 -s 4 -d 6 -p cbr -e 500 -c 1 -i 412 -a 1 - -t 2.294 -s 4 -d 6 -p cbr -e 500 -c 1 -i 412 -a 1 h -t 2.294 -s 4 -d 6 -p cbr -e 500 -c 1 -i 412 -a 1 r -t 2.298 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 429 -a 1 + -t 2.298 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 429 -a 1 r -t 2.298 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 407 -a 1 r -t 2.298 -s 4 -d 6 -p cbr -e 500 -c 1 -i 409 -a 1 + -t 2.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 433 -a 1 - -t 2.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 433 -a 1 h -t 2.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 433 -a 1 - -t 2.3 -s 3 -d 4 -p cbr -e 500 -c 1 -i 421 -a 1 h -t 2.3 -s 3 -d 4 -p cbr -e 500 -c 1 -i 421 -a 1 r -t 2.302 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 411 -a 1 + -t 2.302 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 411 -a 1 - -t 2.302 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 411 -a 1 h -t 2.302 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 411 -a 1 r -t 2.304 -s 1 -d 3 -p cbr -e 500 -c 1 -i 431 -a 1 + -t 2.304 -s 3 -d 4 -p cbr -e 500 -c 1 -i 431 -a 1 - -t 2.304 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 420 -a 1 h -t 2.304 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 420 -a 1 r -t 2.308 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 430 -a 1 + -t 2.308 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 430 -a 1 + -t 2.31 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 434 -a 1 - -t 2.31 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 434 -a 1 h -t 2.31 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 434 -a 1 r -t 2.31 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 413 -a 1 + -t 2.31 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 413 -a 1 r -t 2.31 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 408 -a 1 - -t 2.31 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 413 -a 1 h -t 2.31 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 413 -a 1 - -t 2.312 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 422 -a 1 h -t 2.312 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 422 -a 1 r -t 2.314 -s 3 -d 4 -p cbr -e 500 -c 1 -i 415 -a 1 + -t 2.314 -s 4 -d 6 -p cbr -e 500 -c 1 -i 415 -a 1 - -t 2.314 -s 4 -d 6 -p cbr -e 500 -c 1 -i 415 -a 1 h -t 2.314 -s 4 -d 6 -p cbr -e 500 -c 1 -i 415 -a 1 r -t 2.318 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 432 -a 1 + -t 2.318 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 432 -a 1 r -t 2.318 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 410 -a 1 r -t 2.318 -s 4 -d 6 -p cbr -e 500 -c 1 -i 412 -a 1 + -t 2.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 435 -a 1 - -t 2.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 435 -a 1 h -t 2.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 435 -a 1 - -t 2.32 -s 3 -d 4 -p cbr -e 500 -c 1 -i 424 -a 1 h -t 2.32 -s 3 -d 4 -p cbr -e 500 -c 1 -i 424 -a 1 r -t 2.322 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 414 -a 1 + -t 2.322 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 414 -a 1 - -t 2.322 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 414 -a 1 h -t 2.322 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 414 -a 1 - -t 2.324 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 423 -a 1 h -t 2.324 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 423 -a 1 r -t 2.32598 -s 4 -d 3 -p ack -e 40 -c 0 -i 426 -a 0 -S 0 -y {28 28} + -t 2.32598 -s 3 -d 0 -p ack -e 40 -c 0 -i 426 -a 0 -S 0 -y {28 28} - -t 2.32598 -s 3 -d 0 -p ack -e 40 -c 0 -i 426 -a 0 -S 0 -f 0 -m 1 -y {28 28} h -t 2.32598 -s 3 -d 0 -p ack -e 40 -c 0 -i 426 -a 0 -S 0 -y {-1 -1} r -t 2.328 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 433 -a 1 + -t 2.328 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 433 -a 1 + -t 2.33 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 436 -a 1 - -t 2.33 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 436 -a 1 h -t 2.33 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 436 -a 1 r -t 2.33 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 416 -a 1 + -t 2.33 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 416 -a 1 r -t 2.33 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 411 -a 1 - -t 2.33 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 416 -a 1 h -t 2.33 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 416 -a 1 - -t 2.332 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 425 -a 1 h -t 2.332 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 425 -a 1 r -t 2.334 -s 3 -d 4 -p cbr -e 500 -c 1 -i 418 -a 1 + -t 2.334 -s 4 -d 6 -p cbr -e 500 -c 1 -i 418 -a 1 - -t 2.334 -s 4 -d 6 -p cbr -e 500 -c 1 -i 418 -a 1 h -t 2.334 -s 4 -d 6 -p cbr -e 500 -c 1 -i 418 -a 1 r -t 2.338 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 434 -a 1 + -t 2.338 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 434 -a 1 r -t 2.338 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 413 -a 1 r -t 2.338 -s 4 -d 6 -p cbr -e 500 -c 1 -i 415 -a 1 + -t 2.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 437 -a 1 - -t 2.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 437 -a 1 h -t 2.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 437 -a 1 - -t 2.34 -s 3 -d 4 -p cbr -e 500 -c 1 -i 428 -a 1 h -t 2.34 -s 3 -d 4 -p cbr -e 500 -c 1 -i 428 -a 1 r -t 2.342 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 417 -a 1 + -t 2.342 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 417 -a 1 - -t 2.342 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 417 -a 1 h -t 2.342 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 417 -a 1 - -t 2.344 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 427 -a 1 h -t 2.344 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 427 -a 1 r -t 2.34605 -s 3 -d 0 -p ack -e 40 -c 0 -i 426 -a 0 -S 0 -y {28 28} f -t 2.34604800000000147 -s 0 -d 5 -n cwnd_ -a tcp -v 4.000000 -o 3.000000 -T v + -t 2.34605 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 438 -a 0 -S 0 -f 0 -m 0 -y {29 29} - -t 2.34605 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 438 -a 0 -S 0 -y {29 29} h -t 2.34605 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 438 -a 0 -S 0 -y {-1 -1} + -t 2.34605 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 439 -a 0 -S 0 -f 0 -m 0 -y {30 30} + -t 2.34605 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 440 -a 0 -S 0 -f 0 -m 0 -y {31 31} + -t 2.34605 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 441 -a 0 -S 0 -f 0 -m 0 -y {32 32} - -t 2.34765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 439 -a 0 -S 0 -y {30 30} h -t 2.34765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 439 -a 0 -S 0 -y {-1 -1} r -t 2.348 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 435 -a 1 + -t 2.348 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 435 -a 1 - -t 2.34925 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 440 -a 0 -S 0 -y {31 31} h -t 2.34925 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 440 -a 0 -S 0 -y {-1 -1} + -t 2.35 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 442 -a 1 - -t 2.35 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 442 -a 1 h -t 2.35 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 442 -a 1 v -t 2.3500000000000001 sim_annotation 2.3500000000000001 25 Send Packet_27,28,29,30 : window size 4 r -t 2.35 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 419 -a 1 + -t 2.35 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 419 -a 1 r -t 2.35 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 414 -a 1 - -t 2.35 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 419 -a 1 h -t 2.35 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 419 -a 1 - -t 2.35085 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 441 -a 0 -S 0 -y {32 32} h -t 2.35085 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 441 -a 0 -S 0 -y {-1 -1} - -t 2.352 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 429 -a 1 h -t 2.352 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 429 -a 1 r -t 2.354 -s 3 -d 4 -p cbr -e 500 -c 1 -i 421 -a 1 + -t 2.354 -s 4 -d 6 -p cbr -e 500 -c 1 -i 421 -a 1 - -t 2.354 -s 4 -d 6 -p cbr -e 500 -c 1 -i 421 -a 1 h -t 2.354 -s 4 -d 6 -p cbr -e 500 -c 1 -i 421 -a 1 r -t 2.358 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 436 -a 1 + -t 2.358 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 436 -a 1 r -t 2.358 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 416 -a 1 r -t 2.358 -s 4 -d 6 -p cbr -e 500 -c 1 -i 418 -a 1 + -t 2.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 443 -a 1 - -t 2.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 443 -a 1 h -t 2.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 443 -a 1 - -t 2.36 -s 3 -d 4 -p cbr -e 500 -c 1 -i 431 -a 1 h -t 2.36 -s 3 -d 4 -p cbr -e 500 -c 1 -i 431 -a 1 r -t 2.362 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 420 -a 1 + -t 2.362 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 420 -a 1 - -t 2.362 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 420 -a 1 h -t 2.362 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 420 -a 1 - -t 2.364 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 430 -a 1 h -t 2.364 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 430 -a 1 r -t 2.36765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 438 -a 0 -S 0 -y {29 29} + -t 2.36765 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 438 -a 0 -S 0 -y {29 29} r -t 2.368 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 437 -a 1 + -t 2.368 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 437 -a 1 r -t 2.36925 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 439 -a 0 -S 0 -y {30 30} + -t 2.36925 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 439 -a 0 -S 0 -y {30 30} + -t 2.37 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 444 -a 1 - -t 2.37 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 444 -a 1 h -t 2.37 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 444 -a 1 r -t 2.37 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 422 -a 1 + -t 2.37 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 422 -a 1 r -t 2.37 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 417 -a 1 - -t 2.37 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 422 -a 1 h -t 2.37 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 422 -a 1 r -t 2.37085 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 440 -a 0 -S 0 -y {31 31} + -t 2.37085 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 440 -a 0 -S 0 -y {31 31} - -t 2.372 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 432 -a 1 h -t 2.372 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 432 -a 1 r -t 2.37245 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 441 -a 0 -S 0 -y {32 32} + -t 2.37245 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 441 -a 0 -S 0 -y {32 32} r -t 2.374 -s 3 -d 4 -p cbr -e 500 -c 1 -i 424 -a 1 + -t 2.374 -s 4 -d 6 -p cbr -e 500 -c 1 -i 424 -a 1 - -t 2.374 -s 4 -d 6 -p cbr -e 500 -c 1 -i 424 -a 1 h -t 2.374 -s 4 -d 6 -p cbr -e 500 -c 1 -i 424 -a 1 r -t 2.378 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 442 -a 1 + -t 2.378 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 442 -a 1 d -t 2.378 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 442 -a 1 r -t 2.378 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 419 -a 1 r -t 2.378 -s 4 -d 6 -p cbr -e 500 -c 1 -i 421 -a 1 + -t 2.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 445 -a 1 - -t 2.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 445 -a 1 h -t 2.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 445 -a 1 - -t 2.38 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 433 -a 1 h -t 2.38 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 433 -a 1 r -t 2.382 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 423 -a 1 + -t 2.382 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 423 -a 1 - -t 2.382 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 423 -a 1 h -t 2.382 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 423 -a 1 r -t 2.388 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 443 -a 1 + -t 2.388 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 443 -a 1 - -t 2.388 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 434 -a 1 h -t 2.388 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 434 -a 1 + -t 2.39 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 446 -a 1 - -t 2.39 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 446 -a 1 h -t 2.39 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 446 -a 1 r -t 2.39 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 425 -a 1 + -t 2.39 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 425 -a 1 r -t 2.39 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 420 -a 1 - -t 2.39 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 425 -a 1 h -t 2.39 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 425 -a 1 r -t 2.394 -s 3 -d 4 -p cbr -e 500 -c 1 -i 428 -a 1 + -t 2.394 -s 4 -d 6 -p cbr -e 500 -c 1 -i 428 -a 1 - -t 2.394 -s 4 -d 6 -p cbr -e 500 -c 1 -i 428 -a 1 h -t 2.394 -s 4 -d 6 -p cbr -e 500 -c 1 -i 428 -a 1 - -t 2.396 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 435 -a 1 h -t 2.396 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 435 -a 1 r -t 2.398 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 444 -a 1 + -t 2.398 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 444 -a 1 r -t 2.398 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 422 -a 1 r -t 2.398 -s 4 -d 6 -p cbr -e 500 -c 1 -i 424 -a 1 + -t 2.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 447 -a 1 - -t 2.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 447 -a 1 h -t 2.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 447 -a 1 r -t 2.402 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 427 -a 1 + -t 2.402 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 427 -a 1 - -t 2.402 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 427 -a 1 h -t 2.402 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 427 -a 1 - -t 2.404 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 436 -a 1 h -t 2.404 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 436 -a 1 r -t 2.408 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 445 -a 1 + -t 2.408 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 445 -a 1 + -t 2.41 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 448 -a 1 - -t 2.41 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 448 -a 1 h -t 2.41 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 448 -a 1 r -t 2.41 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 429 -a 1 + -t 2.41 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 429 -a 1 r -t 2.41 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 423 -a 1 - -t 2.41 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 429 -a 1 h -t 2.41 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 429 -a 1 - -t 2.412 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 438 -a 0 -S 0 -y {29 29} h -t 2.412 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 438 -a 0 -S 0 -y {-1 -1} r -t 2.414 -s 3 -d 4 -p cbr -e 500 -c 1 -i 431 -a 1 + -t 2.414 -s 4 -d 6 -p cbr -e 500 -c 1 -i 431 -a 1 - -t 2.414 -s 4 -d 6 -p cbr -e 500 -c 1 -i 431 -a 1 h -t 2.414 -s 4 -d 6 -p cbr -e 500 -c 1 -i 431 -a 1 r -t 2.418 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 446 -a 1 + -t 2.418 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 446 -a 1 r -t 2.418 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 425 -a 1 r -t 2.418 -s 4 -d 6 -p cbr -e 500 -c 1 -i 428 -a 1 + -t 2.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 449 -a 1 - -t 2.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 449 -a 1 h -t 2.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 449 -a 1 - -t 2.42 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 437 -a 1 h -t 2.42 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 437 -a 1 r -t 2.422 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 430 -a 1 + -t 2.422 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 430 -a 1 - -t 2.422 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 430 -a 1 h -t 2.422 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 430 -a 1 r -t 2.428 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 447 -a 1 + -t 2.428 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 447 -a 1 - -t 2.428 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 439 -a 0 -S 0 -y {30 30} h -t 2.428 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 439 -a 0 -S 0 -y {-1 -1} + -t 2.43 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 450 -a 1 - -t 2.43 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 450 -a 1 h -t 2.43 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 450 -a 1 r -t 2.43 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 432 -a 1 + -t 2.43 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 432 -a 1 r -t 2.43 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 427 -a 1 - -t 2.43 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 432 -a 1 h -t 2.43 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 432 -a 1 - -t 2.436 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 440 -a 0 -S 0 -y {31 31} h -t 2.436 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 440 -a 0 -S 0 -y {-1 -1} r -t 2.438 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 448 -a 1 + -t 2.438 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 448 -a 1 r -t 2.438 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 433 -a 1 + -t 2.438 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 433 -a 1 r -t 2.438 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 429 -a 1 r -t 2.438 -s 4 -d 6 -p cbr -e 500 -c 1 -i 431 -a 1 - -t 2.438 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 433 -a 1 h -t 2.438 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 433 -a 1 + -t 2.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 451 -a 1 - -t 2.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 451 -a 1 h -t 2.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 451 -a 1 - -t 2.444 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 441 -a 0 -S 0 -y {32 32} h -t 2.444 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 441 -a 0 -S 0 -y {-1 -1} r -t 2.446 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 434 -a 1 + -t 2.446 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 434 -a 1 - -t 2.446 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 434 -a 1 h -t 2.446 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 434 -a 1 r -t 2.448 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 449 -a 1 + -t 2.448 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 449 -a 1 + -t 2.45 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 452 -a 1 - -t 2.45 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 452 -a 1 h -t 2.45 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 452 -a 1 r -t 2.45 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 430 -a 1 - -t 2.452 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 443 -a 1 h -t 2.452 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 443 -a 1 r -t 2.454 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 435 -a 1 + -t 2.454 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 435 -a 1 - -t 2.454 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 435 -a 1 h -t 2.454 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 435 -a 1 r -t 2.458 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 450 -a 1 + -t 2.458 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 450 -a 1 r -t 2.458 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 432 -a 1 + -t 2.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 453 -a 1 - -t 2.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 453 -a 1 h -t 2.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 453 -a 1 - -t 2.46 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 444 -a 1 h -t 2.46 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 444 -a 1 r -t 2.462 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 436 -a 1 + -t 2.462 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 436 -a 1 - -t 2.462 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 436 -a 1 h -t 2.462 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 436 -a 1 r -t 2.466 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 433 -a 1 r -t 2.468 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 451 -a 1 + -t 2.468 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 451 -a 1 - -t 2.468 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 445 -a 1 h -t 2.468 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 445 -a 1 + -t 2.47 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 454 -a 1 - -t 2.47 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 454 -a 1 h -t 2.47 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 454 -a 1 r -t 2.47 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 438 -a 0 -S 0 -y {29 29} + -t 2.47 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 438 -a 0 -S 0 -y {29 29} - -t 2.47 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 438 -a 0 -S 0 -y {29 29} h -t 2.47 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 438 -a 0 -S 0 -y {-1 -1} r -t 2.474 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 434 -a 1 - -t 2.476 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 446 -a 1 h -t 2.476 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 446 -a 1 r -t 2.478 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 452 -a 1 + -t 2.478 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 452 -a 1 r -t 2.478 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 437 -a 1 + -t 2.478 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 437 -a 1 - -t 2.478 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 437 -a 1 h -t 2.478 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 437 -a 1 + -t 2.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 455 -a 1 - -t 2.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 455 -a 1 h -t 2.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 455 -a 1 r -t 2.482 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 435 -a 1 - -t 2.484 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 447 -a 1 h -t 2.484 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 447 -a 1 r -t 2.486 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 439 -a 0 -S 0 -y {30 30} + -t 2.486 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 439 -a 0 -S 0 -y {30 30} - -t 2.486 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 439 -a 0 -S 0 -y {30 30} h -t 2.486 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 439 -a 0 -S 0 -y {-1 -1} r -t 2.488 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 453 -a 1 + -t 2.488 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 453 -a 1 + -t 2.49 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 456 -a 1 - -t 2.49 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 456 -a 1 h -t 2.49 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 456 -a 1 r -t 2.49 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 436 -a 1 r -t 2.4916 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 438 -a 0 -S 0 -y {29 29} + -t 2.4916 -s 5 -d 4 -p ack -e 40 -c 0 -i 457 -a 0 -S 0 -y {40 40} - -t 2.4916 -s 5 -d 4 -p ack -e 40 -c 0 -i 457 -a 0 -S 0 -y {40 40} h -t 2.4916 -s 5 -d 4 -p ack -e 40 -c 0 -i 457 -a 0 -S 0 -y {-1 -1} - -t 2.492 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 448 -a 1 h -t 2.492 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 448 -a 1 r -t 2.494 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 440 -a 0 -S 0 -y {31 31} + -t 2.494 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 440 -a 0 -S 0 -y {31 31} - -t 2.494 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 440 -a 0 -S 0 -y {31 31} h -t 2.494 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 440 -a 0 -S 0 -y {-1 -1} r -t 2.498 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 454 -a 1 + -t 2.498 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 454 -a 1 + -t 2.5 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 458 -a 1 - -t 2.5 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 458 -a 1 h -t 2.5 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 458 -a 1 v -t 2.5 sim_annotation 2.5 26 Ack_40 - -t 2.5 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 449 -a 1 h -t 2.5 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 449 -a 1 r -t 2.502 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 441 -a 0 -S 0 -y {32 32} + -t 2.502 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 441 -a 0 -S 0 -y {32 32} - -t 2.502 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 441 -a 0 -S 0 -y {32 32} h -t 2.502 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 441 -a 0 -S 0 -y {-1 -1} r -t 2.506 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 437 -a 1 r -t 2.5076 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 439 -a 0 -S 0 -y {30 30} + -t 2.5076 -s 5 -d 4 -p ack -e 40 -c 0 -i 459 -a 0 -S 0 -y {40 40} - -t 2.5076 -s 5 -d 4 -p ack -e 40 -c 0 -i 459 -a 0 -S 0 -y {40 40} h -t 2.5076 -s 5 -d 4 -p ack -e 40 -c 0 -i 459 -a 0 -S 0 -y {-1 -1} r -t 2.508 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 455 -a 1 + -t 2.508 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 455 -a 1 - -t 2.508 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 450 -a 1 h -t 2.508 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 450 -a 1 r -t 2.51 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 443 -a 1 + -t 2.51 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 443 -a 1 - -t 2.51 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 443 -a 1 h -t 2.51 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 443 -a 1 r -t 2.51166 -s 5 -d 4 -p ack -e 40 -c 0 -i 457 -a 0 -S 0 -y {40 40} + -t 2.51166 -s 4 -d 3 -p ack -e 40 -c 0 -i 457 -a 0 -S 0 -y {40 40} - -t 2.51166 -s 4 -d 3 -p ack -e 40 -c 0 -i 457 -a 0 -S 0 -y {40 40} h -t 2.51166 -s 4 -d 3 -p ack -e 40 -c 0 -i 457 -a 0 -S 0 -y {-1 -1} r -t 2.5156 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 440 -a 0 -S 0 -y {31 31} + -t 2.5156 -s 5 -d 4 -p ack -e 40 -c 0 -i 460 -a 0 -S 0 -y {40 40} - -t 2.5156 -s 5 -d 4 -p ack -e 40 -c 0 -i 460 -a 0 -S 0 -y {40 40} h -t 2.5156 -s 5 -d 4 -p ack -e 40 -c 0 -i 460 -a 0 -S 0 -y {-1 -1} - -t 2.516 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 451 -a 1 h -t 2.516 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 451 -a 1 r -t 2.518 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 456 -a 1 + -t 2.518 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 456 -a 1 r -t 2.518 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 444 -a 1 + -t 2.518 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 444 -a 1 - -t 2.518 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 444 -a 1 h -t 2.518 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 444 -a 1 r -t 2.5236 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 441 -a 0 -S 0 -y {32 32} + -t 2.5236 -s 5 -d 4 -p ack -e 40 -c 0 -i 461 -a 0 -S 0 -y {40 40} - -t 2.5236 -s 5 -d 4 -p ack -e 40 -c 0 -i 461 -a 0 -S 0 -y {40 40} h -t 2.5236 -s 5 -d 4 -p ack -e 40 -c 0 -i 461 -a 0 -S 0 -y {-1 -1} - -t 2.524 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 452 -a 1 h -t 2.524 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 452 -a 1 r -t 2.526 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 445 -a 1 + -t 2.526 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 445 -a 1 - -t 2.526 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 445 -a 1 h -t 2.526 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 445 -a 1 r -t 2.52766 -s 5 -d 4 -p ack -e 40 -c 0 -i 459 -a 0 -S 0 -y {40 40} + -t 2.52766 -s 4 -d 3 -p ack -e 40 -c 0 -i 459 -a 0 -S 0 -y {40 40} - -t 2.52766 -s 4 -d 3 -p ack -e 40 -c 0 -i 459 -a 0 -S 0 -y {40 40} h -t 2.52766 -s 4 -d 3 -p ack -e 40 -c 0 -i 459 -a 0 -S 0 -y {-1 -1} r -t 2.528 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 458 -a 1 + -t 2.528 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 458 -a 1 - -t 2.532 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 453 -a 1 h -t 2.532 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 453 -a 1 r -t 2.534 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 446 -a 1 + -t 2.534 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 446 -a 1 - -t 2.534 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 446 -a 1 h -t 2.534 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 446 -a 1 r -t 2.53566 -s 5 -d 4 -p ack -e 40 -c 0 -i 460 -a 0 -S 0 -y {40 40} + -t 2.53566 -s 4 -d 3 -p ack -e 40 -c 0 -i 460 -a 0 -S 0 -y {40 40} - -t 2.53566 -s 4 -d 3 -p ack -e 40 -c 0 -i 460 -a 0 -S 0 -y {40 40} h -t 2.53566 -s 4 -d 3 -p ack -e 40 -c 0 -i 460 -a 0 -S 0 -y {-1 -1} r -t 2.538 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 443 -a 1 - -t 2.54 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 454 -a 1 h -t 2.54 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 454 -a 1 r -t 2.542 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 447 -a 1 + -t 2.542 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 447 -a 1 - -t 2.542 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 447 -a 1 h -t 2.542 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 447 -a 1 r -t 2.54366 -s 5 -d 4 -p ack -e 40 -c 0 -i 461 -a 0 -S 0 -y {40 40} + -t 2.54366 -s 4 -d 3 -p ack -e 40 -c 0 -i 461 -a 0 -S 0 -y {40 40} - -t 2.54366 -s 4 -d 3 -p ack -e 40 -c 0 -i 461 -a 0 -S 0 -y {40 40} h -t 2.54366 -s 4 -d 3 -p ack -e 40 -c 0 -i 461 -a 0 -S 0 -y {-1 -1} r -t 2.546 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 444 -a 1 - -t 2.548 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 455 -a 1 h -t 2.548 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 455 -a 1 v -t 2.5499999999999998 sim_annotation 2.5499999999999998 27 FTP stops r -t 2.55 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 448 -a 1 + -t 2.55 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 448 -a 1 - -t 2.55 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 448 -a 1 h -t 2.55 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 448 -a 1 r -t 2.554 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 445 -a 1 - -t 2.556 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 456 -a 1 h -t 2.556 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 456 -a 1 r -t 2.558 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 449 -a 1 + -t 2.558 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 449 -a 1 - -t 2.558 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 449 -a 1 h -t 2.558 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 449 -a 1 r -t 2.56198 -s 4 -d 3 -p ack -e 40 -c 0 -i 457 -a 0 -S 0 -y {40 40} + -t 2.56198 -s 3 -d 0 -p ack -e 40 -c 0 -i 457 -a 0 -S 0 -y {40 40} - -t 2.56198 -s 3 -d 0 -p ack -e 40 -c 0 -i 457 -a 0 -S 0 -f 0 -m 1 -y {40 40} h -t 2.56198 -s 3 -d 0 -p ack -e 40 -c 0 -i 457 -a 0 -S 0 -y {-1 -1} r -t 2.562 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 446 -a 1 - -t 2.564 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 458 -a 1 h -t 2.564 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 458 -a 1 r -t 2.566 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 450 -a 1 + -t 2.566 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 450 -a 1 - -t 2.566 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 450 -a 1 h -t 2.566 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 450 -a 1 r -t 2.57 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 447 -a 1 r -t 2.574 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 451 -a 1 + -t 2.574 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 451 -a 1 - -t 2.574 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 451 -a 1 h -t 2.574 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 451 -a 1 r -t 2.57798 -s 4 -d 3 -p ack -e 40 -c 0 -i 459 -a 0 -S 0 -y {40 40} + -t 2.57798 -s 3 -d 0 -p ack -e 40 -c 0 -i 459 -a 0 -S 0 -y {40 40} - -t 2.57798 -s 3 -d 0 -p ack -e 40 -c 0 -i 459 -a 0 -S 0 -f 0 -m 1 -y {40 40} h -t 2.57798 -s 3 -d 0 -p ack -e 40 -c 0 -i 459 -a 0 -S 0 -y {-1 -1} r -t 2.578 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 448 -a 1 r -t 2.582 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 452 -a 1 + -t 2.582 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 452 -a 1 - -t 2.582 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 452 -a 1 h -t 2.582 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 452 -a 1 r -t 2.58205 -s 3 -d 0 -p ack -e 40 -c 0 -i 457 -a 0 -S 0 -y {40 40} f -t 2.58204800000000168 -s 0 -d 5 -n cwnd_ -a tcp -v 5.000000 -o 4.000000 -T v r -t 2.58598 -s 4 -d 3 -p ack -e 40 -c 0 -i 460 -a 0 -S 0 -y {40 40} + -t 2.58598 -s 3 -d 0 -p ack -e 40 -c 0 -i 460 -a 0 -S 0 -y {40 40} - -t 2.58598 -s 3 -d 0 -p ack -e 40 -c 0 -i 460 -a 0 -S 0 -f 0 -m 1 -y {40 40} h -t 2.58598 -s 3 -d 0 -p ack -e 40 -c 0 -i 460 -a 0 -S 0 -y {-1 -1} r -t 2.586 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 449 -a 1 r -t 2.59 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 453 -a 1 + -t 2.59 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 453 -a 1 - -t 2.59 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 453 -a 1 h -t 2.59 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 453 -a 1 r -t 2.59398 -s 4 -d 3 -p ack -e 40 -c 0 -i 461 -a 0 -S 0 -y {40 40} + -t 2.59398 -s 3 -d 0 -p ack -e 40 -c 0 -i 461 -a 0 -S 0 -y {40 40} - -t 2.59398 -s 3 -d 0 -p ack -e 40 -c 0 -i 461 -a 0 -S 0 -f 0 -m 1 -y {40 40} h -t 2.59398 -s 3 -d 0 -p ack -e 40 -c 0 -i 461 -a 0 -S 0 -y {-1 -1} r -t 2.594 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 450 -a 1 r -t 2.598 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 454 -a 1 + -t 2.598 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 454 -a 1 - -t 2.598 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 454 -a 1 h -t 2.598 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 454 -a 1 r -t 2.59805 -s 3 -d 0 -p ack -e 40 -c 0 -i 459 -a 0 -S 0 -y {40 40} r -t 2.602 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 451 -a 1 r -t 2.606 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 455 -a 1 + -t 2.606 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 455 -a 1 - -t 2.606 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 455 -a 1 h -t 2.606 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 455 -a 1 r -t 2.60605 -s 3 -d 0 -p ack -e 40 -c 0 -i 460 -a 0 -S 0 -y {40 40} r -t 2.61 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 452 -a 1 r -t 2.614 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 456 -a 1 + -t 2.614 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 456 -a 1 - -t 2.614 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 456 -a 1 h -t 2.614 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 456 -a 1 r -t 2.61405 -s 3 -d 0 -p ack -e 40 -c 0 -i 461 -a 0 -S 0 -y {40 40} r -t 2.618 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 453 -a 1 r -t 2.622 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 458 -a 1 + -t 2.622 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 458 -a 1 - -t 2.622 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 458 -a 1 h -t 2.622 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 458 -a 1 r -t 2.626 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 454 -a 1 r -t 2.634 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 455 -a 1 r -t 2.642 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 456 -a 1 r -t 2.65 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 458 -a 1 nam-1.15/edu/C1-slow-start.tcl0000664000076400007660000001074407024407024014742 0ustar tomhnsnam# Slow start protocol in a heavily loaded network. # features : labeling, annotation, nam-graph, and window size monitoring # # n0 n5 # \ / # n1 -- n3 ---------- n4 -- n6 # / \ # n2 n7 set ns [new Simulator] $ns color 0 black $ns color 1 red $ns trace-all [open C1-slow-start.tr w] $ns namtrace-all [open C1-slow-start.nam w] ### build topology with 8 nodes foreach i " 0 1 2 3 4 5 6 7" { set n$i [$ns node] } $ns at 0.0 "$n0 label TCP" $ns at 0.0 "$n5 label TCP" $ns at 0.0 "$n1 label CBR-1" $ns at 0.0 "$n2 label CBR-2" $ns at 0.0 "$n6 label CBR-1" $ns at 0.0 "$n7 label CBR-2" $ns duplex-link $n0 $n3 5Mb 20ms DropTail $ns duplex-link $n1 $n3 1Mb 20ms DropTail $ns duplex-link $n2 $n3 1Mb 20ms DropTail $ns duplex-link $n3 $n4 1Mb 50ms DropTail $ns duplex-link $n4 $n5 5Mb 20ms DropTail $ns duplex-link $n4 $n6 1Mb 20ms DropTail $ns duplex-link $n4 $n7 1Mb 20ms DropTail $ns queue-limit $n3 $n4 10 $ns duplex-link-op $n0 $n3 orient right-down $ns duplex-link-op $n1 $n3 orient right $ns duplex-link-op $n2 $n3 orient right-up $ns duplex-link-op $n3 $n4 orient right $ns duplex-link-op $n4 $n5 orient right-up $ns duplex-link-op $n4 $n6 orient right $ns duplex-link-op $n4 $n7 orient right-down $ns duplex-link-op $n3 $n4 queuePos 0.5 Agent/TCP set nam_tracevar_ true Agent/TCP set window_ 20 ### TCP between n0 and n5 (Black) set tcp [new Agent/TCP] $tcp set fid_ 0 $ns attach-agent $n0 $tcp set sink [new Agent/TCPSink] $ns attach-agent $n5 $sink $ns connect $tcp $sink set ftp [new Application/FTP] $ftp attach-agent $tcp $ns add-agent-trace $tcp tcp $ns monitor-agent-trace $tcp $tcp tracevar cwnd_ $tcp tracevar ssthresh_ ### CBR traffic between (n1 & n6) and (n2 & n7) set cbr0 [new Agent/CBR] $ns attach-agent $n1 $cbr0 $cbr0 set fid_ 1 $cbr0 set packetSize_ 500 $cbr0 set interval_ 0.01 set null0 [new Agent/CBR] $ns attach-agent $n6 $null0 $ns connect $cbr0 $null0 set cbr1 [new Agent/CBR] $ns attach-agent $n2 $cbr1 $cbr1 set fid_ 1 $cbr1 set packetSize_ 1000 $cbr1 set interval_ 0.01 set null1 [new Agent/CBR] $ns attach-agent $n7 $null1 $ns connect $cbr1 $null1 proc finish {} { global ns $ns flush-trace puts "filtering..." exec tclsh ../bin/namfilter.tcl C1-slow-start.nam puts "running nam..." exec nam C1-slow-start.nam & exit 0 } ### set operations $ns at 0.05 "$cbr0 start" $ns at 2.3 "$cbr0 stop" $ns at 0.1 "$cbr1 start" $ns at 2.5 "$cbr1 stop" $ns at 0.5 "$ftp start" $ns at 2.5 "$ftp stop" $ns at 2.7 "finish" $ns at 0.50 "$cbr1 set interval_ 0.02" $ns at 1.50 "$cbr0 set interval_ 0.02" $ns at 1.70 "$cbr1 set interval_ 0.01" $ns at 1.70 "$cbr1 set interval_ 0.01" ### add annotations $ns at 0.0 "$ns trace-annotate \"TCP in a heavely loaded network\"" $ns at 0.05 "$ns trace-annotate \"CBR-1 starts\"" $ns at 0.1 "$ns trace-annotate \"CBR-2 starts\"" $ns at 0.5 "$ns trace-annotate \"TCP starts\"" $ns at 0.5 "$ns trace-annotate \"Send Packet_0 : Initial window size = 1\"" $ns at 0.66 "$ns trace-annotate \"Ack_0\"" $ns at 0.75 "$ns trace-annotate \"Send Packet_1,2 : Increase window size to 2\"" $ns at 0.86 "$ns trace-annotate \"Ack_1,2\"" $ns at 0.95 "$ns trace-annotate \"Send Packet_3,4,5,6 : Increase window size to 4\"" $ns at 1.05 "$ns trace-annotate \"Ack_3,4,5,6\"" $ns at 1.13 "$ns trace-annotate \"Send Packet_7 to 14 : Increase window size to 8\"" $ns at 1.24 "$ns trace-annotate \"Ack_7 to 14 \"" $ns at 1.32 "$ns trace-annotate \"Send Packet_15 to 30 : Increase window size to 16\"" $ns at 1.41 "$ns trace-annotate \"Lost Packet_21,22,23,26,27,28,29,30 !\"" $ns at 1.46 "$ns trace-annotate \"8 Ack_20s \"" $ns at 1.55 "$ns trace-annotate \"Send Packet_31 to 39\"" $ns at 1.67 "$ns trace-annotate \"8 Ack_20s \"" $ns at 1.63 "$ns trace-annotate \"Retransmit Packet_21 : SLOW START !\"" $ns at 1.80 "$ns trace-annotate \"Ack_21 \"" $ns at 1.89 "$ns trace-annotate \"Send Packet_22,23 : window size 2\"" $ns at 2.01 "$ns trace-annotate \"2 Ack_25s \"" $ns at 2.11 "$ns trace-annotate \"Send Packet_26,27,28 : window size 3\"" $ns at 2.13 "$ns trace-annotate \"Lost Packet_27,28 !\"" $ns at 2.26 "$ns trace-annotate \"Ack_26 \"" $ns at 2.35 "$ns trace-annotate \"Send Packet_27,28,29,30 : window size 4\"" $ns at 2.50 "$ns trace-annotate \"Ack_40 \"" $ns at 2.55 "$ns trace-annotate \"FTP stops\"" $ns run nam-1.15/edu/C1-slow-start.tr0000664000076400007660000055376106751722511014627 0ustar tomhnsnamv 0 eval {set sim_annotation {TCP in a heavely loaded network}} + 0.05 1 3 cbr 500 ------- 1 1.0 6.0 0 0 - 0.05 1 3 cbr 500 ------- 1 1.0 6.0 0 0 v 0.050000000000000003 eval {set sim_annotation {CBR-1 starts}} + 0.06 1 3 cbr 500 ------- 1 1.0 6.0 1 1 - 0.06 1 3 cbr 500 ------- 1 1.0 6.0 1 1 + 0.07 1 3 cbr 500 ------- 1 1.0 6.0 2 2 - 0.07 1 3 cbr 500 ------- 1 1.0 6.0 2 2 r 0.074 1 3 cbr 500 ------- 1 1.0 6.0 0 0 + 0.074 3 4 cbr 500 ------- 1 1.0 6.0 0 0 - 0.074 3 4 cbr 500 ------- 1 1.0 6.0 0 0 + 0.08 1 3 cbr 500 ------- 1 1.0 6.0 3 3 - 0.08 1 3 cbr 500 ------- 1 1.0 6.0 3 3 r 0.084 1 3 cbr 500 ------- 1 1.0 6.0 1 1 + 0.084 3 4 cbr 500 ------- 1 1.0 6.0 1 1 - 0.084 3 4 cbr 500 ------- 1 1.0 6.0 1 1 + 0.09 1 3 cbr 500 ------- 1 1.0 6.0 4 4 - 0.09 1 3 cbr 500 ------- 1 1.0 6.0 4 4 r 0.094 1 3 cbr 500 ------- 1 1.0 6.0 2 2 + 0.094 3 4 cbr 500 ------- 1 1.0 6.0 2 2 - 0.094 3 4 cbr 500 ------- 1 1.0 6.0 2 2 + 0.1 1 3 cbr 500 ------- 1 1.0 6.0 5 5 - 0.1 1 3 cbr 500 ------- 1 1.0 6.0 5 5 + 0.1 2 3 cbr 1000 ------- 1 2.0 7.0 0 6 - 0.1 2 3 cbr 1000 ------- 1 2.0 7.0 0 6 v 0.10000000000000001 eval {set sim_annotation {CBR-2 starts}} r 0.104 1 3 cbr 500 ------- 1 1.0 6.0 3 3 + 0.104 3 4 cbr 500 ------- 1 1.0 6.0 3 3 - 0.104 3 4 cbr 500 ------- 1 1.0 6.0 3 3 + 0.11 1 3 cbr 500 ------- 1 1.0 6.0 6 7 - 0.11 1 3 cbr 500 ------- 1 1.0 6.0 6 7 + 0.11 2 3 cbr 1000 ------- 1 2.0 7.0 1 8 - 0.11 2 3 cbr 1000 ------- 1 2.0 7.0 1 8 r 0.114 1 3 cbr 500 ------- 1 1.0 6.0 4 4 + 0.114 3 4 cbr 500 ------- 1 1.0 6.0 4 4 - 0.114 3 4 cbr 500 ------- 1 1.0 6.0 4 4 + 0.12 1 3 cbr 500 ------- 1 1.0 6.0 7 9 - 0.12 1 3 cbr 500 ------- 1 1.0 6.0 7 9 + 0.12 2 3 cbr 1000 ------- 1 2.0 7.0 2 10 - 0.12 2 3 cbr 1000 ------- 1 2.0 7.0 2 10 r 0.124 1 3 cbr 500 ------- 1 1.0 6.0 5 5 + 0.124 3 4 cbr 500 ------- 1 1.0 6.0 5 5 - 0.124 3 4 cbr 500 ------- 1 1.0 6.0 5 5 r 0.128 3 4 cbr 500 ------- 1 1.0 6.0 0 0 + 0.128 4 6 cbr 500 ------- 1 1.0 6.0 0 0 - 0.128 4 6 cbr 500 ------- 1 1.0 6.0 0 0 r 0.128 2 3 cbr 1000 ------- 1 2.0 7.0 0 6 + 0.128 3 4 cbr 1000 ------- 1 2.0 7.0 0 6 - 0.128 3 4 cbr 1000 ------- 1 2.0 7.0 0 6 + 0.13 1 3 cbr 500 ------- 1 1.0 6.0 8 11 - 0.13 1 3 cbr 500 ------- 1 1.0 6.0 8 11 + 0.13 2 3 cbr 1000 ------- 1 2.0 7.0 3 12 - 0.13 2 3 cbr 1000 ------- 1 2.0 7.0 3 12 r 0.134 1 3 cbr 500 ------- 1 1.0 6.0 6 7 + 0.134 3 4 cbr 500 ------- 1 1.0 6.0 6 7 - 0.136 3 4 cbr 500 ------- 1 1.0 6.0 6 7 r 0.138 3 4 cbr 500 ------- 1 1.0 6.0 1 1 + 0.138 4 6 cbr 500 ------- 1 1.0 6.0 1 1 - 0.138 4 6 cbr 500 ------- 1 1.0 6.0 1 1 r 0.138 2 3 cbr 1000 ------- 1 2.0 7.0 1 8 + 0.138 3 4 cbr 1000 ------- 1 2.0 7.0 1 8 + 0.14 1 3 cbr 500 ------- 1 1.0 6.0 9 13 - 0.14 1 3 cbr 500 ------- 1 1.0 6.0 9 13 + 0.14 2 3 cbr 1000 ------- 1 2.0 7.0 4 14 - 0.14 2 3 cbr 1000 ------- 1 2.0 7.0 4 14 - 0.14 3 4 cbr 1000 ------- 1 2.0 7.0 1 8 r 0.144 1 3 cbr 500 ------- 1 1.0 6.0 7 9 + 0.144 3 4 cbr 500 ------- 1 1.0 6.0 7 9 r 0.148 2 3 cbr 1000 ------- 1 2.0 7.0 2 10 + 0.148 3 4 cbr 1000 ------- 1 2.0 7.0 2 10 r 0.148 3 4 cbr 500 ------- 1 1.0 6.0 2 2 + 0.148 4 6 cbr 500 ------- 1 1.0 6.0 2 2 - 0.148 4 6 cbr 500 ------- 1 1.0 6.0 2 2 - 0.148 3 4 cbr 500 ------- 1 1.0 6.0 7 9 + 0.15 1 3 cbr 500 ------- 1 1.0 6.0 10 15 - 0.15 1 3 cbr 500 ------- 1 1.0 6.0 10 15 + 0.15 2 3 cbr 1000 ------- 1 2.0 7.0 5 16 - 0.15 2 3 cbr 1000 ------- 1 2.0 7.0 5 16 r 0.152 4 6 cbr 500 ------- 1 1.0 6.0 0 0 - 0.152 3 4 cbr 1000 ------- 1 2.0 7.0 2 10 r 0.154 1 3 cbr 500 ------- 1 1.0 6.0 8 11 + 0.154 3 4 cbr 500 ------- 1 1.0 6.0 8 11 r 0.158 2 3 cbr 1000 ------- 1 2.0 7.0 3 12 + 0.158 3 4 cbr 1000 ------- 1 2.0 7.0 3 12 r 0.158 3 4 cbr 500 ------- 1 1.0 6.0 3 3 + 0.158 4 6 cbr 500 ------- 1 1.0 6.0 3 3 - 0.158 4 6 cbr 500 ------- 1 1.0 6.0 3 3 + 0.16 1 3 cbr 500 ------- 1 1.0 6.0 11 17 - 0.16 1 3 cbr 500 ------- 1 1.0 6.0 11 17 + 0.16 2 3 cbr 1000 ------- 1 2.0 7.0 6 18 - 0.16 2 3 cbr 1000 ------- 1 2.0 7.0 6 18 - 0.16 3 4 cbr 500 ------- 1 1.0 6.0 8 11 r 0.162 4 6 cbr 500 ------- 1 1.0 6.0 1 1 r 0.164 1 3 cbr 500 ------- 1 1.0 6.0 9 13 + 0.164 3 4 cbr 500 ------- 1 1.0 6.0 9 13 - 0.164 3 4 cbr 1000 ------- 1 2.0 7.0 3 12 r 0.168 3 4 cbr 500 ------- 1 1.0 6.0 4 4 + 0.168 4 6 cbr 500 ------- 1 1.0 6.0 4 4 - 0.168 4 6 cbr 500 ------- 1 1.0 6.0 4 4 r 0.168 2 3 cbr 1000 ------- 1 2.0 7.0 4 14 + 0.168 3 4 cbr 1000 ------- 1 2.0 7.0 4 14 + 0.17 1 3 cbr 500 ------- 1 1.0 6.0 12 19 - 0.17 1 3 cbr 500 ------- 1 1.0 6.0 12 19 + 0.17 2 3 cbr 1000 ------- 1 2.0 7.0 7 20 - 0.17 2 3 cbr 1000 ------- 1 2.0 7.0 7 20 r 0.172 4 6 cbr 500 ------- 1 1.0 6.0 2 2 - 0.172 3 4 cbr 500 ------- 1 1.0 6.0 9 13 r 0.174 1 3 cbr 500 ------- 1 1.0 6.0 10 15 + 0.174 3 4 cbr 500 ------- 1 1.0 6.0 10 15 - 0.176 3 4 cbr 1000 ------- 1 2.0 7.0 4 14 r 0.178 3 4 cbr 500 ------- 1 1.0 6.0 5 5 + 0.178 4 6 cbr 500 ------- 1 1.0 6.0 5 5 - 0.178 4 6 cbr 500 ------- 1 1.0 6.0 5 5 r 0.178 2 3 cbr 1000 ------- 1 2.0 7.0 5 16 + 0.178 3 4 cbr 1000 ------- 1 2.0 7.0 5 16 + 0.18 1 3 cbr 500 ------- 1 1.0 6.0 13 21 - 0.18 1 3 cbr 500 ------- 1 1.0 6.0 13 21 + 0.18 2 3 cbr 1000 ------- 1 2.0 7.0 8 22 - 0.18 2 3 cbr 1000 ------- 1 2.0 7.0 8 22 r 0.182 4 6 cbr 500 ------- 1 1.0 6.0 3 3 r 0.184 1 3 cbr 500 ------- 1 1.0 6.0 11 17 + 0.184 3 4 cbr 500 ------- 1 1.0 6.0 11 17 - 0.184 3 4 cbr 500 ------- 1 1.0 6.0 10 15 r 0.186 3 4 cbr 1000 ------- 1 2.0 7.0 0 6 + 0.186 4 7 cbr 1000 ------- 1 2.0 7.0 0 6 - 0.186 4 7 cbr 1000 ------- 1 2.0 7.0 0 6 r 0.188 2 3 cbr 1000 ------- 1 2.0 7.0 6 18 + 0.188 3 4 cbr 1000 ------- 1 2.0 7.0 6 18 - 0.188 3 4 cbr 1000 ------- 1 2.0 7.0 5 16 r 0.19 3 4 cbr 500 ------- 1 1.0 6.0 6 7 + 0.19 4 6 cbr 500 ------- 1 1.0 6.0 6 7 - 0.19 4 6 cbr 500 ------- 1 1.0 6.0 6 7 + 0.19 1 3 cbr 500 ------- 1 1.0 6.0 14 23 - 0.19 1 3 cbr 500 ------- 1 1.0 6.0 14 23 + 0.19 2 3 cbr 1000 ------- 1 2.0 7.0 9 24 - 0.19 2 3 cbr 1000 ------- 1 2.0 7.0 9 24 r 0.192 4 6 cbr 500 ------- 1 1.0 6.0 4 4 r 0.194 1 3 cbr 500 ------- 1 1.0 6.0 12 19 + 0.194 3 4 cbr 500 ------- 1 1.0 6.0 12 19 - 0.196 3 4 cbr 500 ------- 1 1.0 6.0 11 17 r 0.198 3 4 cbr 1000 ------- 1 2.0 7.0 1 8 + 0.198 4 7 cbr 1000 ------- 1 2.0 7.0 1 8 - 0.198 4 7 cbr 1000 ------- 1 2.0 7.0 1 8 r 0.198 2 3 cbr 1000 ------- 1 2.0 7.0 7 20 + 0.198 3 4 cbr 1000 ------- 1 2.0 7.0 7 20 + 0.2 1 3 cbr 500 ------- 1 1.0 6.0 15 25 - 0.2 1 3 cbr 500 ------- 1 1.0 6.0 15 25 + 0.2 2 3 cbr 1000 ------- 1 2.0 7.0 10 26 - 0.2 2 3 cbr 1000 ------- 1 2.0 7.0 10 26 - 0.2 3 4 cbr 1000 ------- 1 2.0 7.0 6 18 r 0.202 4 6 cbr 500 ------- 1 1.0 6.0 5 5 r 0.202 3 4 cbr 500 ------- 1 1.0 6.0 7 9 + 0.202 4 6 cbr 500 ------- 1 1.0 6.0 7 9 - 0.202 4 6 cbr 500 ------- 1 1.0 6.0 7 9 r 0.204 1 3 cbr 500 ------- 1 1.0 6.0 13 21 + 0.204 3 4 cbr 500 ------- 1 1.0 6.0 13 21 r 0.208 2 3 cbr 1000 ------- 1 2.0 7.0 8 22 + 0.208 3 4 cbr 1000 ------- 1 2.0 7.0 8 22 - 0.208 3 4 cbr 500 ------- 1 1.0 6.0 12 19 r 0.21 3 4 cbr 1000 ------- 1 2.0 7.0 2 10 + 0.21 4 7 cbr 1000 ------- 1 2.0 7.0 2 10 - 0.21 4 7 cbr 1000 ------- 1 2.0 7.0 2 10 + 0.21 1 3 cbr 500 ------- 1 1.0 6.0 16 27 - 0.21 1 3 cbr 500 ------- 1 1.0 6.0 16 27 + 0.21 2 3 cbr 1000 ------- 1 2.0 7.0 11 28 - 0.21 2 3 cbr 1000 ------- 1 2.0 7.0 11 28 - 0.212 3 4 cbr 1000 ------- 1 2.0 7.0 7 20 r 0.214 4 7 cbr 1000 ------- 1 2.0 7.0 0 6 r 0.214 4 6 cbr 500 ------- 1 1.0 6.0 6 7 r 0.214 3 4 cbr 500 ------- 1 1.0 6.0 8 11 + 0.214 4 6 cbr 500 ------- 1 1.0 6.0 8 11 - 0.214 4 6 cbr 500 ------- 1 1.0 6.0 8 11 r 0.214 1 3 cbr 500 ------- 1 1.0 6.0 14 23 + 0.214 3 4 cbr 500 ------- 1 1.0 6.0 14 23 r 0.218 2 3 cbr 1000 ------- 1 2.0 7.0 9 24 + 0.218 3 4 cbr 1000 ------- 1 2.0 7.0 9 24 + 0.22 1 3 cbr 500 ------- 1 1.0 6.0 17 29 - 0.22 1 3 cbr 500 ------- 1 1.0 6.0 17 29 + 0.22 2 3 cbr 1000 ------- 1 2.0 7.0 12 30 - 0.22 2 3 cbr 1000 ------- 1 2.0 7.0 12 30 - 0.22 3 4 cbr 500 ------- 1 1.0 6.0 13 21 r 0.222 3 4 cbr 1000 ------- 1 2.0 7.0 3 12 + 0.222 4 7 cbr 1000 ------- 1 2.0 7.0 3 12 - 0.222 4 7 cbr 1000 ------- 1 2.0 7.0 3 12 r 0.224 1 3 cbr 500 ------- 1 1.0 6.0 15 25 + 0.224 3 4 cbr 500 ------- 1 1.0 6.0 15 25 - 0.224 3 4 cbr 1000 ------- 1 2.0 7.0 8 22 r 0.226 4 7 cbr 1000 ------- 1 2.0 7.0 1 8 r 0.226 4 6 cbr 500 ------- 1 1.0 6.0 7 9 r 0.226 3 4 cbr 500 ------- 1 1.0 6.0 9 13 + 0.226 4 6 cbr 500 ------- 1 1.0 6.0 9 13 - 0.226 4 6 cbr 500 ------- 1 1.0 6.0 9 13 r 0.228 2 3 cbr 1000 ------- 1 2.0 7.0 10 26 + 0.228 3 4 cbr 1000 ------- 1 2.0 7.0 10 26 + 0.23 1 3 cbr 500 ------- 1 1.0 6.0 18 31 - 0.23 1 3 cbr 500 ------- 1 1.0 6.0 18 31 + 0.23 2 3 cbr 1000 ------- 1 2.0 7.0 13 32 - 0.23 2 3 cbr 1000 ------- 1 2.0 7.0 13 32 - 0.232 3 4 cbr 500 ------- 1 1.0 6.0 14 23 r 0.234 3 4 cbr 1000 ------- 1 2.0 7.0 4 14 + 0.234 4 7 cbr 1000 ------- 1 2.0 7.0 4 14 - 0.234 4 7 cbr 1000 ------- 1 2.0 7.0 4 14 r 0.234 1 3 cbr 500 ------- 1 1.0 6.0 16 27 + 0.234 3 4 cbr 500 ------- 1 1.0 6.0 16 27 - 0.236 3 4 cbr 1000 ------- 1 2.0 7.0 9 24 r 0.238 4 7 cbr 1000 ------- 1 2.0 7.0 2 10 r 0.238 4 6 cbr 500 ------- 1 1.0 6.0 8 11 r 0.238 3 4 cbr 500 ------- 1 1.0 6.0 10 15 + 0.238 4 6 cbr 500 ------- 1 1.0 6.0 10 15 - 0.238 4 6 cbr 500 ------- 1 1.0 6.0 10 15 r 0.238 2 3 cbr 1000 ------- 1 2.0 7.0 11 28 + 0.238 3 4 cbr 1000 ------- 1 2.0 7.0 11 28 + 0.24 1 3 cbr 500 ------- 1 1.0 6.0 19 33 - 0.24 1 3 cbr 500 ------- 1 1.0 6.0 19 33 + 0.24 2 3 cbr 1000 ------- 1 2.0 7.0 14 34 - 0.24 2 3 cbr 1000 ------- 1 2.0 7.0 14 34 r 0.244 1 3 cbr 500 ------- 1 1.0 6.0 17 29 + 0.244 3 4 cbr 500 ------- 1 1.0 6.0 17 29 - 0.244 3 4 cbr 500 ------- 1 1.0 6.0 15 25 r 0.246 3 4 cbr 1000 ------- 1 2.0 7.0 5 16 + 0.246 4 7 cbr 1000 ------- 1 2.0 7.0 5 16 - 0.246 4 7 cbr 1000 ------- 1 2.0 7.0 5 16 r 0.248 2 3 cbr 1000 ------- 1 2.0 7.0 12 30 + 0.248 3 4 cbr 1000 ------- 1 2.0 7.0 12 30 - 0.248 3 4 cbr 1000 ------- 1 2.0 7.0 10 26 r 0.25 3 4 cbr 500 ------- 1 1.0 6.0 11 17 + 0.25 4 6 cbr 500 ------- 1 1.0 6.0 11 17 - 0.25 4 6 cbr 500 ------- 1 1.0 6.0 11 17 r 0.25 4 7 cbr 1000 ------- 1 2.0 7.0 3 12 r 0.25 4 6 cbr 500 ------- 1 1.0 6.0 9 13 + 0.25 1 3 cbr 500 ------- 1 1.0 6.0 20 35 - 0.25 1 3 cbr 500 ------- 1 1.0 6.0 20 35 + 0.25 2 3 cbr 1000 ------- 1 2.0 7.0 15 36 - 0.25 2 3 cbr 1000 ------- 1 2.0 7.0 15 36 r 0.254 1 3 cbr 500 ------- 1 1.0 6.0 18 31 + 0.254 3 4 cbr 500 ------- 1 1.0 6.0 18 31 - 0.256 3 4 cbr 500 ------- 1 1.0 6.0 16 27 r 0.258 3 4 cbr 1000 ------- 1 2.0 7.0 6 18 + 0.258 4 7 cbr 1000 ------- 1 2.0 7.0 6 18 - 0.258 4 7 cbr 1000 ------- 1 2.0 7.0 6 18 r 0.258 2 3 cbr 1000 ------- 1 2.0 7.0 13 32 + 0.258 3 4 cbr 1000 ------- 1 2.0 7.0 13 32 + 0.26 1 3 cbr 500 ------- 1 1.0 6.0 21 37 - 0.26 1 3 cbr 500 ------- 1 1.0 6.0 21 37 + 0.26 2 3 cbr 1000 ------- 1 2.0 7.0 16 38 - 0.26 2 3 cbr 1000 ------- 1 2.0 7.0 16 38 - 0.26 3 4 cbr 1000 ------- 1 2.0 7.0 11 28 r 0.262 3 4 cbr 500 ------- 1 1.0 6.0 12 19 + 0.262 4 6 cbr 500 ------- 1 1.0 6.0 12 19 - 0.262 4 6 cbr 500 ------- 1 1.0 6.0 12 19 r 0.262 4 7 cbr 1000 ------- 1 2.0 7.0 4 14 r 0.262 4 6 cbr 500 ------- 1 1.0 6.0 10 15 r 0.264 1 3 cbr 500 ------- 1 1.0 6.0 19 33 + 0.264 3 4 cbr 500 ------- 1 1.0 6.0 19 33 r 0.268 2 3 cbr 1000 ------- 1 2.0 7.0 14 34 + 0.268 3 4 cbr 1000 ------- 1 2.0 7.0 14 34 - 0.268 3 4 cbr 500 ------- 1 1.0 6.0 17 29 r 0.27 3 4 cbr 1000 ------- 1 2.0 7.0 7 20 + 0.27 4 7 cbr 1000 ------- 1 2.0 7.0 7 20 - 0.27 4 7 cbr 1000 ------- 1 2.0 7.0 7 20 + 0.27 1 3 cbr 500 ------- 1 1.0 6.0 22 39 - 0.27 1 3 cbr 500 ------- 1 1.0 6.0 22 39 + 0.27 2 3 cbr 1000 ------- 1 2.0 7.0 17 40 - 0.27 2 3 cbr 1000 ------- 1 2.0 7.0 17 40 - 0.272 3 4 cbr 1000 ------- 1 2.0 7.0 12 30 r 0.274 3 4 cbr 500 ------- 1 1.0 6.0 13 21 + 0.274 4 6 cbr 500 ------- 1 1.0 6.0 13 21 - 0.274 4 6 cbr 500 ------- 1 1.0 6.0 13 21 r 0.274 4 7 cbr 1000 ------- 1 2.0 7.0 5 16 r 0.274 4 6 cbr 500 ------- 1 1.0 6.0 11 17 r 0.274 1 3 cbr 500 ------- 1 1.0 6.0 20 35 + 0.274 3 4 cbr 500 ------- 1 1.0 6.0 20 35 r 0.278 2 3 cbr 1000 ------- 1 2.0 7.0 15 36 + 0.278 3 4 cbr 1000 ------- 1 2.0 7.0 15 36 + 0.28 1 3 cbr 500 ------- 1 1.0 6.0 23 41 - 0.28 1 3 cbr 500 ------- 1 1.0 6.0 23 41 + 0.28 2 3 cbr 1000 ------- 1 2.0 7.0 18 42 - 0.28 2 3 cbr 1000 ------- 1 2.0 7.0 18 42 - 0.28 3 4 cbr 500 ------- 1 1.0 6.0 18 31 r 0.282 3 4 cbr 1000 ------- 1 2.0 7.0 8 22 + 0.282 4 7 cbr 1000 ------- 1 2.0 7.0 8 22 - 0.282 4 7 cbr 1000 ------- 1 2.0 7.0 8 22 r 0.284 1 3 cbr 500 ------- 1 1.0 6.0 21 37 + 0.284 3 4 cbr 500 ------- 1 1.0 6.0 21 37 - 0.284 3 4 cbr 1000 ------- 1 2.0 7.0 13 32 r 0.286 3 4 cbr 500 ------- 1 1.0 6.0 14 23 + 0.286 4 6 cbr 500 ------- 1 1.0 6.0 14 23 - 0.286 4 6 cbr 500 ------- 1 1.0 6.0 14 23 r 0.286 4 7 cbr 1000 ------- 1 2.0 7.0 6 18 r 0.286 4 6 cbr 500 ------- 1 1.0 6.0 12 19 r 0.288 2 3 cbr 1000 ------- 1 2.0 7.0 16 38 + 0.288 3 4 cbr 1000 ------- 1 2.0 7.0 16 38 + 0.29 1 3 cbr 500 ------- 1 1.0 6.0 24 43 - 0.29 1 3 cbr 500 ------- 1 1.0 6.0 24 43 + 0.29 2 3 cbr 1000 ------- 1 2.0 7.0 19 44 - 0.29 2 3 cbr 1000 ------- 1 2.0 7.0 19 44 - 0.292 3 4 cbr 500 ------- 1 1.0 6.0 19 33 r 0.294 3 4 cbr 1000 ------- 1 2.0 7.0 9 24 + 0.294 4 7 cbr 1000 ------- 1 2.0 7.0 9 24 - 0.294 4 7 cbr 1000 ------- 1 2.0 7.0 9 24 r 0.294 1 3 cbr 500 ------- 1 1.0 6.0 22 39 + 0.294 3 4 cbr 500 ------- 1 1.0 6.0 22 39 - 0.296 3 4 cbr 1000 ------- 1 2.0 7.0 14 34 r 0.298 3 4 cbr 500 ------- 1 1.0 6.0 15 25 + 0.298 4 6 cbr 500 ------- 1 1.0 6.0 15 25 - 0.298 4 6 cbr 500 ------- 1 1.0 6.0 15 25 r 0.298 4 7 cbr 1000 ------- 1 2.0 7.0 7 20 r 0.298 4 6 cbr 500 ------- 1 1.0 6.0 13 21 r 0.298 2 3 cbr 1000 ------- 1 2.0 7.0 17 40 + 0.298 3 4 cbr 1000 ------- 1 2.0 7.0 17 40 + 0.3 1 3 cbr 500 ------- 1 1.0 6.0 25 45 - 0.3 1 3 cbr 500 ------- 1 1.0 6.0 25 45 + 0.3 2 3 cbr 1000 ------- 1 2.0 7.0 20 46 - 0.3 2 3 cbr 1000 ------- 1 2.0 7.0 20 46 r 0.304 1 3 cbr 500 ------- 1 1.0 6.0 23 41 + 0.304 3 4 cbr 500 ------- 1 1.0 6.0 23 41 - 0.304 3 4 cbr 500 ------- 1 1.0 6.0 20 35 r 0.306 3 4 cbr 1000 ------- 1 2.0 7.0 10 26 + 0.306 4 7 cbr 1000 ------- 1 2.0 7.0 10 26 - 0.306 4 7 cbr 1000 ------- 1 2.0 7.0 10 26 r 0.308 2 3 cbr 1000 ------- 1 2.0 7.0 18 42 + 0.308 3 4 cbr 1000 ------- 1 2.0 7.0 18 42 - 0.308 3 4 cbr 1000 ------- 1 2.0 7.0 15 36 r 0.31 3 4 cbr 500 ------- 1 1.0 6.0 16 27 + 0.31 4 6 cbr 500 ------- 1 1.0 6.0 16 27 - 0.31 4 6 cbr 500 ------- 1 1.0 6.0 16 27 r 0.31 4 7 cbr 1000 ------- 1 2.0 7.0 8 22 r 0.31 4 6 cbr 500 ------- 1 1.0 6.0 14 23 + 0.31 1 3 cbr 500 ------- 1 1.0 6.0 26 47 - 0.31 1 3 cbr 500 ------- 1 1.0 6.0 26 47 + 0.31 2 3 cbr 1000 ------- 1 2.0 7.0 21 48 - 0.31 2 3 cbr 1000 ------- 1 2.0 7.0 21 48 r 0.314 1 3 cbr 500 ------- 1 1.0 6.0 24 43 + 0.314 3 4 cbr 500 ------- 1 1.0 6.0 24 43 - 0.316 3 4 cbr 500 ------- 1 1.0 6.0 21 37 r 0.318 3 4 cbr 1000 ------- 1 2.0 7.0 11 28 + 0.318 4 7 cbr 1000 ------- 1 2.0 7.0 11 28 - 0.318 4 7 cbr 1000 ------- 1 2.0 7.0 11 28 r 0.318 2 3 cbr 1000 ------- 1 2.0 7.0 19 44 + 0.318 3 4 cbr 1000 ------- 1 2.0 7.0 19 44 + 0.32 1 3 cbr 500 ------- 1 1.0 6.0 27 49 - 0.32 1 3 cbr 500 ------- 1 1.0 6.0 27 49 + 0.32 2 3 cbr 1000 ------- 1 2.0 7.0 22 50 - 0.32 2 3 cbr 1000 ------- 1 2.0 7.0 22 50 - 0.32 3 4 cbr 1000 ------- 1 2.0 7.0 16 38 r 0.322 3 4 cbr 500 ------- 1 1.0 6.0 17 29 + 0.322 4 6 cbr 500 ------- 1 1.0 6.0 17 29 - 0.322 4 6 cbr 500 ------- 1 1.0 6.0 17 29 r 0.322 4 7 cbr 1000 ------- 1 2.0 7.0 9 24 r 0.322 4 6 cbr 500 ------- 1 1.0 6.0 15 25 r 0.324 1 3 cbr 500 ------- 1 1.0 6.0 25 45 + 0.324 3 4 cbr 500 ------- 1 1.0 6.0 25 45 r 0.328 2 3 cbr 1000 ------- 1 2.0 7.0 20 46 + 0.328 3 4 cbr 1000 ------- 1 2.0 7.0 20 46 - 0.328 3 4 cbr 500 ------- 1 1.0 6.0 22 39 r 0.33 3 4 cbr 1000 ------- 1 2.0 7.0 12 30 + 0.33 4 7 cbr 1000 ------- 1 2.0 7.0 12 30 - 0.33 4 7 cbr 1000 ------- 1 2.0 7.0 12 30 + 0.33 1 3 cbr 500 ------- 1 1.0 6.0 28 51 - 0.33 1 3 cbr 500 ------- 1 1.0 6.0 28 51 + 0.33 2 3 cbr 1000 ------- 1 2.0 7.0 23 52 - 0.33 2 3 cbr 1000 ------- 1 2.0 7.0 23 52 - 0.332 3 4 cbr 1000 ------- 1 2.0 7.0 17 40 r 0.334 3 4 cbr 500 ------- 1 1.0 6.0 18 31 + 0.334 4 6 cbr 500 ------- 1 1.0 6.0 18 31 - 0.334 4 6 cbr 500 ------- 1 1.0 6.0 18 31 r 0.334 4 7 cbr 1000 ------- 1 2.0 7.0 10 26 r 0.334 4 6 cbr 500 ------- 1 1.0 6.0 16 27 r 0.334 1 3 cbr 500 ------- 1 1.0 6.0 26 47 + 0.334 3 4 cbr 500 ------- 1 1.0 6.0 26 47 r 0.338 2 3 cbr 1000 ------- 1 2.0 7.0 21 48 + 0.338 3 4 cbr 1000 ------- 1 2.0 7.0 21 48 + 0.34 1 3 cbr 500 ------- 1 1.0 6.0 29 53 - 0.34 1 3 cbr 500 ------- 1 1.0 6.0 29 53 + 0.34 2 3 cbr 1000 ------- 1 2.0 7.0 24 54 - 0.34 2 3 cbr 1000 ------- 1 2.0 7.0 24 54 - 0.34 3 4 cbr 500 ------- 1 1.0 6.0 23 41 r 0.342 3 4 cbr 1000 ------- 1 2.0 7.0 13 32 + 0.342 4 7 cbr 1000 ------- 1 2.0 7.0 13 32 - 0.342 4 7 cbr 1000 ------- 1 2.0 7.0 13 32 r 0.344 1 3 cbr 500 ------- 1 1.0 6.0 27 49 + 0.344 3 4 cbr 500 ------- 1 1.0 6.0 27 49 - 0.344 3 4 cbr 1000 ------- 1 2.0 7.0 18 42 r 0.346 3 4 cbr 500 ------- 1 1.0 6.0 19 33 + 0.346 4 6 cbr 500 ------- 1 1.0 6.0 19 33 - 0.346 4 6 cbr 500 ------- 1 1.0 6.0 19 33 r 0.346 4 7 cbr 1000 ------- 1 2.0 7.0 11 28 r 0.346 4 6 cbr 500 ------- 1 1.0 6.0 17 29 r 0.348 2 3 cbr 1000 ------- 1 2.0 7.0 22 50 + 0.348 3 4 cbr 1000 ------- 1 2.0 7.0 22 50 + 0.35 1 3 cbr 500 ------- 1 1.0 6.0 30 55 - 0.35 1 3 cbr 500 ------- 1 1.0 6.0 30 55 + 0.35 2 3 cbr 1000 ------- 1 2.0 7.0 25 56 - 0.35 2 3 cbr 1000 ------- 1 2.0 7.0 25 56 - 0.352 3 4 cbr 500 ------- 1 1.0 6.0 24 43 r 0.354 3 4 cbr 1000 ------- 1 2.0 7.0 14 34 + 0.354 4 7 cbr 1000 ------- 1 2.0 7.0 14 34 - 0.354 4 7 cbr 1000 ------- 1 2.0 7.0 14 34 r 0.354 1 3 cbr 500 ------- 1 1.0 6.0 28 51 + 0.354 3 4 cbr 500 ------- 1 1.0 6.0 28 51 - 0.356 3 4 cbr 1000 ------- 1 2.0 7.0 19 44 r 0.358 3 4 cbr 500 ------- 1 1.0 6.0 20 35 + 0.358 4 6 cbr 500 ------- 1 1.0 6.0 20 35 - 0.358 4 6 cbr 500 ------- 1 1.0 6.0 20 35 r 0.358 4 7 cbr 1000 ------- 1 2.0 7.0 12 30 r 0.358 4 6 cbr 500 ------- 1 1.0 6.0 18 31 r 0.358 2 3 cbr 1000 ------- 1 2.0 7.0 23 52 + 0.358 3 4 cbr 1000 ------- 1 2.0 7.0 23 52 + 0.36 1 3 cbr 500 ------- 1 1.0 6.0 31 57 - 0.36 1 3 cbr 500 ------- 1 1.0 6.0 31 57 + 0.36 2 3 cbr 1000 ------- 1 2.0 7.0 26 58 - 0.36 2 3 cbr 1000 ------- 1 2.0 7.0 26 58 r 0.364 1 3 cbr 500 ------- 1 1.0 6.0 29 53 + 0.364 3 4 cbr 500 ------- 1 1.0 6.0 29 53 - 0.364 3 4 cbr 500 ------- 1 1.0 6.0 25 45 r 0.366 3 4 cbr 1000 ------- 1 2.0 7.0 15 36 + 0.366 4 7 cbr 1000 ------- 1 2.0 7.0 15 36 - 0.366 4 7 cbr 1000 ------- 1 2.0 7.0 15 36 r 0.368 2 3 cbr 1000 ------- 1 2.0 7.0 24 54 + 0.368 3 4 cbr 1000 ------- 1 2.0 7.0 24 54 - 0.368 3 4 cbr 1000 ------- 1 2.0 7.0 20 46 r 0.37 3 4 cbr 500 ------- 1 1.0 6.0 21 37 + 0.37 4 6 cbr 500 ------- 1 1.0 6.0 21 37 - 0.37 4 6 cbr 500 ------- 1 1.0 6.0 21 37 r 0.37 4 7 cbr 1000 ------- 1 2.0 7.0 13 32 r 0.37 4 6 cbr 500 ------- 1 1.0 6.0 19 33 + 0.37 1 3 cbr 500 ------- 1 1.0 6.0 32 59 - 0.37 1 3 cbr 500 ------- 1 1.0 6.0 32 59 + 0.37 2 3 cbr 1000 ------- 1 2.0 7.0 27 60 - 0.37 2 3 cbr 1000 ------- 1 2.0 7.0 27 60 r 0.374 1 3 cbr 500 ------- 1 1.0 6.0 30 55 + 0.374 3 4 cbr 500 ------- 1 1.0 6.0 30 55 - 0.376 3 4 cbr 500 ------- 1 1.0 6.0 26 47 r 0.378 3 4 cbr 1000 ------- 1 2.0 7.0 16 38 + 0.378 4 7 cbr 1000 ------- 1 2.0 7.0 16 38 - 0.378 4 7 cbr 1000 ------- 1 2.0 7.0 16 38 r 0.378 2 3 cbr 1000 ------- 1 2.0 7.0 25 56 + 0.378 3 4 cbr 1000 ------- 1 2.0 7.0 25 56 + 0.38 1 3 cbr 500 ------- 1 1.0 6.0 33 61 - 0.38 1 3 cbr 500 ------- 1 1.0 6.0 33 61 + 0.38 2 3 cbr 1000 ------- 1 2.0 7.0 28 62 - 0.38 2 3 cbr 1000 ------- 1 2.0 7.0 28 62 - 0.38 3 4 cbr 1000 ------- 1 2.0 7.0 21 48 r 0.382 3 4 cbr 500 ------- 1 1.0 6.0 22 39 + 0.382 4 6 cbr 500 ------- 1 1.0 6.0 22 39 - 0.382 4 6 cbr 500 ------- 1 1.0 6.0 22 39 r 0.382 4 7 cbr 1000 ------- 1 2.0 7.0 14 34 r 0.382 4 6 cbr 500 ------- 1 1.0 6.0 20 35 r 0.384 1 3 cbr 500 ------- 1 1.0 6.0 31 57 + 0.384 3 4 cbr 500 ------- 1 1.0 6.0 31 57 r 0.388 2 3 cbr 1000 ------- 1 2.0 7.0 26 58 + 0.388 3 4 cbr 1000 ------- 1 2.0 7.0 26 58 d 0.388 3 4 cbr 1000 ------- 1 2.0 7.0 26 58 - 0.388 3 4 cbr 500 ------- 1 1.0 6.0 27 49 r 0.39 3 4 cbr 1000 ------- 1 2.0 7.0 17 40 + 0.39 4 7 cbr 1000 ------- 1 2.0 7.0 17 40 - 0.39 4 7 cbr 1000 ------- 1 2.0 7.0 17 40 + 0.39 1 3 cbr 500 ------- 1 1.0 6.0 34 63 - 0.39 1 3 cbr 500 ------- 1 1.0 6.0 34 63 + 0.39 2 3 cbr 1000 ------- 1 2.0 7.0 29 64 - 0.39 2 3 cbr 1000 ------- 1 2.0 7.0 29 64 - 0.392 3 4 cbr 1000 ------- 1 2.0 7.0 22 50 r 0.394 3 4 cbr 500 ------- 1 1.0 6.0 23 41 + 0.394 4 6 cbr 500 ------- 1 1.0 6.0 23 41 - 0.394 4 6 cbr 500 ------- 1 1.0 6.0 23 41 r 0.394 4 7 cbr 1000 ------- 1 2.0 7.0 15 36 r 0.394 4 6 cbr 500 ------- 1 1.0 6.0 21 37 r 0.394 1 3 cbr 500 ------- 1 1.0 6.0 32 59 + 0.394 3 4 cbr 500 ------- 1 1.0 6.0 32 59 r 0.398 2 3 cbr 1000 ------- 1 2.0 7.0 27 60 + 0.398 3 4 cbr 1000 ------- 1 2.0 7.0 27 60 + 0.4 1 3 cbr 500 ------- 1 1.0 6.0 35 65 - 0.4 1 3 cbr 500 ------- 1 1.0 6.0 35 65 + 0.4 2 3 cbr 1000 ------- 1 2.0 7.0 30 66 - 0.4 2 3 cbr 1000 ------- 1 2.0 7.0 30 66 - 0.4 3 4 cbr 500 ------- 1 1.0 6.0 28 51 r 0.402 3 4 cbr 1000 ------- 1 2.0 7.0 18 42 + 0.402 4 7 cbr 1000 ------- 1 2.0 7.0 18 42 - 0.402 4 7 cbr 1000 ------- 1 2.0 7.0 18 42 r 0.404 1 3 cbr 500 ------- 1 1.0 6.0 33 61 + 0.404 3 4 cbr 500 ------- 1 1.0 6.0 33 61 - 0.404 3 4 cbr 1000 ------- 1 2.0 7.0 23 52 r 0.406 3 4 cbr 500 ------- 1 1.0 6.0 24 43 + 0.406 4 6 cbr 500 ------- 1 1.0 6.0 24 43 - 0.406 4 6 cbr 500 ------- 1 1.0 6.0 24 43 r 0.406 4 7 cbr 1000 ------- 1 2.0 7.0 16 38 r 0.406 4 6 cbr 500 ------- 1 1.0 6.0 22 39 r 0.408 2 3 cbr 1000 ------- 1 2.0 7.0 28 62 + 0.408 3 4 cbr 1000 ------- 1 2.0 7.0 28 62 + 0.41 1 3 cbr 500 ------- 1 1.0 6.0 36 67 - 0.41 1 3 cbr 500 ------- 1 1.0 6.0 36 67 + 0.41 2 3 cbr 1000 ------- 1 2.0 7.0 31 68 - 0.41 2 3 cbr 1000 ------- 1 2.0 7.0 31 68 - 0.412 3 4 cbr 500 ------- 1 1.0 6.0 29 53 r 0.414 3 4 cbr 1000 ------- 1 2.0 7.0 19 44 + 0.414 4 7 cbr 1000 ------- 1 2.0 7.0 19 44 - 0.414 4 7 cbr 1000 ------- 1 2.0 7.0 19 44 r 0.414 1 3 cbr 500 ------- 1 1.0 6.0 34 63 + 0.414 3 4 cbr 500 ------- 1 1.0 6.0 34 63 - 0.416 3 4 cbr 1000 ------- 1 2.0 7.0 24 54 r 0.418 3 4 cbr 500 ------- 1 1.0 6.0 25 45 + 0.418 4 6 cbr 500 ------- 1 1.0 6.0 25 45 - 0.418 4 6 cbr 500 ------- 1 1.0 6.0 25 45 r 0.418 4 7 cbr 1000 ------- 1 2.0 7.0 17 40 r 0.418 4 6 cbr 500 ------- 1 1.0 6.0 23 41 r 0.418 2 3 cbr 1000 ------- 1 2.0 7.0 29 64 + 0.418 3 4 cbr 1000 ------- 1 2.0 7.0 29 64 + 0.42 1 3 cbr 500 ------- 1 1.0 6.0 37 69 - 0.42 1 3 cbr 500 ------- 1 1.0 6.0 37 69 + 0.42 2 3 cbr 1000 ------- 1 2.0 7.0 32 70 - 0.42 2 3 cbr 1000 ------- 1 2.0 7.0 32 70 r 0.424 1 3 cbr 500 ------- 1 1.0 6.0 35 65 + 0.424 3 4 cbr 500 ------- 1 1.0 6.0 35 65 d 0.424 3 4 cbr 500 ------- 1 1.0 6.0 35 65 - 0.424 3 4 cbr 500 ------- 1 1.0 6.0 30 55 r 0.426 3 4 cbr 1000 ------- 1 2.0 7.0 20 46 + 0.426 4 7 cbr 1000 ------- 1 2.0 7.0 20 46 - 0.426 4 7 cbr 1000 ------- 1 2.0 7.0 20 46 r 0.428 2 3 cbr 1000 ------- 1 2.0 7.0 30 66 + 0.428 3 4 cbr 1000 ------- 1 2.0 7.0 30 66 - 0.428 3 4 cbr 1000 ------- 1 2.0 7.0 25 56 r 0.43 3 4 cbr 500 ------- 1 1.0 6.0 26 47 + 0.43 4 6 cbr 500 ------- 1 1.0 6.0 26 47 - 0.43 4 6 cbr 500 ------- 1 1.0 6.0 26 47 r 0.43 4 7 cbr 1000 ------- 1 2.0 7.0 18 42 r 0.43 4 6 cbr 500 ------- 1 1.0 6.0 24 43 + 0.43 1 3 cbr 500 ------- 1 1.0 6.0 38 71 - 0.43 1 3 cbr 500 ------- 1 1.0 6.0 38 71 + 0.43 2 3 cbr 1000 ------- 1 2.0 7.0 33 72 - 0.43 2 3 cbr 1000 ------- 1 2.0 7.0 33 72 r 0.434 1 3 cbr 500 ------- 1 1.0 6.0 36 67 + 0.434 3 4 cbr 500 ------- 1 1.0 6.0 36 67 - 0.436 3 4 cbr 500 ------- 1 1.0 6.0 31 57 r 0.438 3 4 cbr 1000 ------- 1 2.0 7.0 21 48 + 0.438 4 7 cbr 1000 ------- 1 2.0 7.0 21 48 - 0.438 4 7 cbr 1000 ------- 1 2.0 7.0 21 48 r 0.438 2 3 cbr 1000 ------- 1 2.0 7.0 31 68 + 0.438 3 4 cbr 1000 ------- 1 2.0 7.0 31 68 + 0.44 1 3 cbr 500 ------- 1 1.0 6.0 39 73 - 0.44 1 3 cbr 500 ------- 1 1.0 6.0 39 73 + 0.44 2 3 cbr 1000 ------- 1 2.0 7.0 34 74 - 0.44 2 3 cbr 1000 ------- 1 2.0 7.0 34 74 - 0.44 3 4 cbr 500 ------- 1 1.0 6.0 32 59 r 0.442 3 4 cbr 500 ------- 1 1.0 6.0 27 49 + 0.442 4 6 cbr 500 ------- 1 1.0 6.0 27 49 - 0.442 4 6 cbr 500 ------- 1 1.0 6.0 27 49 r 0.442 4 7 cbr 1000 ------- 1 2.0 7.0 19 44 r 0.442 4 6 cbr 500 ------- 1 1.0 6.0 25 45 r 0.444 1 3 cbr 500 ------- 1 1.0 6.0 37 69 + 0.444 3 4 cbr 500 ------- 1 1.0 6.0 37 69 - 0.444 3 4 cbr 1000 ------- 1 2.0 7.0 27 60 r 0.448 2 3 cbr 1000 ------- 1 2.0 7.0 32 70 + 0.448 3 4 cbr 1000 ------- 1 2.0 7.0 32 70 r 0.45 3 4 cbr 1000 ------- 1 2.0 7.0 22 50 + 0.45 4 7 cbr 1000 ------- 1 2.0 7.0 22 50 - 0.45 4 7 cbr 1000 ------- 1 2.0 7.0 22 50 + 0.45 1 3 cbr 500 ------- 1 1.0 6.0 40 75 - 0.45 1 3 cbr 500 ------- 1 1.0 6.0 40 75 + 0.45 2 3 cbr 1000 ------- 1 2.0 7.0 35 76 - 0.45 2 3 cbr 1000 ------- 1 2.0 7.0 35 76 - 0.452 3 4 cbr 500 ------- 1 1.0 6.0 33 61 r 0.454 3 4 cbr 500 ------- 1 1.0 6.0 28 51 + 0.454 4 6 cbr 500 ------- 1 1.0 6.0 28 51 - 0.454 4 6 cbr 500 ------- 1 1.0 6.0 28 51 r 0.454 4 7 cbr 1000 ------- 1 2.0 7.0 20 46 r 0.454 4 6 cbr 500 ------- 1 1.0 6.0 26 47 r 0.454 1 3 cbr 500 ------- 1 1.0 6.0 38 71 + 0.454 3 4 cbr 500 ------- 1 1.0 6.0 38 71 - 0.456 3 4 cbr 1000 ------- 1 2.0 7.0 28 62 r 0.458 2 3 cbr 1000 ------- 1 2.0 7.0 33 72 + 0.458 3 4 cbr 1000 ------- 1 2.0 7.0 33 72 + 0.46 1 3 cbr 500 ------- 1 1.0 6.0 41 77 - 0.46 1 3 cbr 500 ------- 1 1.0 6.0 41 77 + 0.46 2 3 cbr 1000 ------- 1 2.0 7.0 36 78 - 0.46 2 3 cbr 1000 ------- 1 2.0 7.0 36 78 r 0.462 3 4 cbr 1000 ------- 1 2.0 7.0 23 52 + 0.462 4 7 cbr 1000 ------- 1 2.0 7.0 23 52 - 0.462 4 7 cbr 1000 ------- 1 2.0 7.0 23 52 r 0.464 1 3 cbr 500 ------- 1 1.0 6.0 39 73 + 0.464 3 4 cbr 500 ------- 1 1.0 6.0 39 73 d 0.464 3 4 cbr 500 ------- 1 1.0 6.0 39 73 - 0.464 3 4 cbr 500 ------- 1 1.0 6.0 34 63 r 0.466 3 4 cbr 500 ------- 1 1.0 6.0 29 53 + 0.466 4 6 cbr 500 ------- 1 1.0 6.0 29 53 - 0.466 4 6 cbr 500 ------- 1 1.0 6.0 29 53 r 0.466 4 7 cbr 1000 ------- 1 2.0 7.0 21 48 r 0.466 4 6 cbr 500 ------- 1 1.0 6.0 27 49 r 0.468 2 3 cbr 1000 ------- 1 2.0 7.0 34 74 + 0.468 3 4 cbr 1000 ------- 1 2.0 7.0 34 74 - 0.468 3 4 cbr 1000 ------- 1 2.0 7.0 29 64 + 0.47 1 3 cbr 500 ------- 1 1.0 6.0 42 79 - 0.47 1 3 cbr 500 ------- 1 1.0 6.0 42 79 + 0.47 2 3 cbr 1000 ------- 1 2.0 7.0 37 80 - 0.47 2 3 cbr 1000 ------- 1 2.0 7.0 37 80 r 0.474 3 4 cbr 1000 ------- 1 2.0 7.0 24 54 + 0.474 4 7 cbr 1000 ------- 1 2.0 7.0 24 54 - 0.474 4 7 cbr 1000 ------- 1 2.0 7.0 24 54 r 0.474 1 3 cbr 500 ------- 1 1.0 6.0 40 75 + 0.474 3 4 cbr 500 ------- 1 1.0 6.0 40 75 - 0.476 3 4 cbr 1000 ------- 1 2.0 7.0 30 66 r 0.478 3 4 cbr 500 ------- 1 1.0 6.0 30 55 + 0.478 4 6 cbr 500 ------- 1 1.0 6.0 30 55 - 0.478 4 6 cbr 500 ------- 1 1.0 6.0 30 55 r 0.478 4 7 cbr 1000 ------- 1 2.0 7.0 22 50 r 0.478 4 6 cbr 500 ------- 1 1.0 6.0 28 51 r 0.478 2 3 cbr 1000 ------- 1 2.0 7.0 35 76 + 0.478 3 4 cbr 1000 ------- 1 2.0 7.0 35 76 + 0.48 1 3 cbr 500 ------- 1 1.0 6.0 43 81 - 0.48 1 3 cbr 500 ------- 1 1.0 6.0 43 81 + 0.48 2 3 cbr 1000 ------- 1 2.0 7.0 38 82 - 0.48 2 3 cbr 1000 ------- 1 2.0 7.0 38 82 r 0.484 1 3 cbr 500 ------- 1 1.0 6.0 41 77 + 0.484 3 4 cbr 500 ------- 1 1.0 6.0 41 77 d 0.484 3 4 cbr 500 ------- 1 1.0 6.0 41 77 - 0.484 3 4 cbr 500 ------- 1 1.0 6.0 36 67 r 0.486 3 4 cbr 1000 ------- 1 2.0 7.0 25 56 + 0.486 4 7 cbr 1000 ------- 1 2.0 7.0 25 56 - 0.486 4 7 cbr 1000 ------- 1 2.0 7.0 25 56 r 0.488 2 3 cbr 1000 ------- 1 2.0 7.0 36 78 + 0.488 3 4 cbr 1000 ------- 1 2.0 7.0 36 78 - 0.488 3 4 cbr 1000 ------- 1 2.0 7.0 31 68 r 0.49 3 4 cbr 500 ------- 1 1.0 6.0 31 57 + 0.49 4 6 cbr 500 ------- 1 1.0 6.0 31 57 - 0.49 4 6 cbr 500 ------- 1 1.0 6.0 31 57 r 0.49 4 7 cbr 1000 ------- 1 2.0 7.0 23 52 r 0.49 4 6 cbr 500 ------- 1 1.0 6.0 29 53 + 0.49 1 3 cbr 500 ------- 1 1.0 6.0 44 83 - 0.49 1 3 cbr 500 ------- 1 1.0 6.0 44 83 + 0.49 2 3 cbr 1000 ------- 1 2.0 7.0 39 84 - 0.49 2 3 cbr 1000 ------- 1 2.0 7.0 39 84 r 0.494 3 4 cbr 500 ------- 1 1.0 6.0 32 59 + 0.494 4 6 cbr 500 ------- 1 1.0 6.0 32 59 r 0.494 1 3 cbr 500 ------- 1 1.0 6.0 42 79 + 0.494 3 4 cbr 500 ------- 1 1.0 6.0 42 79 - 0.494 4 6 cbr 500 ------- 1 1.0 6.0 32 59 - 0.496 3 4 cbr 500 ------- 1 1.0 6.0 37 69 r 0.498 2 3 cbr 1000 ------- 1 2.0 7.0 37 80 + 0.498 3 4 cbr 1000 ------- 1 2.0 7.0 37 80 + 0.5 0 3 tcp 1000 ------- 0 0.0 5.0 0 85 - 0.5 0 3 tcp 1000 ------- 0 0.0 5.0 0 85 v 0.5 eval {set sim_annotation {TCP starts}} v 0.5 eval {set sim_annotation {Send Packet_0 : Initial window size = 1}} + 0.5 1 3 cbr 500 ------- 1 1.0 6.0 45 86 - 0.5 1 3 cbr 500 ------- 1 1.0 6.0 45 86 + 0.5 2 3 cbr 1000 ------- 1 2.0 7.0 40 87 - 0.5 2 3 cbr 1000 ------- 1 2.0 7.0 40 87 - 0.5 3 4 cbr 1000 ------- 1 2.0 7.0 32 70 r 0.502 4 7 cbr 1000 ------- 1 2.0 7.0 24 54 r 0.502 4 6 cbr 500 ------- 1 1.0 6.0 30 55 r 0.502 3 4 cbr 1000 ------- 1 2.0 7.0 27 60 + 0.502 4 7 cbr 1000 ------- 1 2.0 7.0 27 60 - 0.502 4 7 cbr 1000 ------- 1 2.0 7.0 27 60 r 0.504 1 3 cbr 500 ------- 1 1.0 6.0 43 81 + 0.504 3 4 cbr 500 ------- 1 1.0 6.0 43 81 r 0.506 3 4 cbr 500 ------- 1 1.0 6.0 33 61 + 0.506 4 6 cbr 500 ------- 1 1.0 6.0 33 61 - 0.506 4 6 cbr 500 ------- 1 1.0 6.0 33 61 r 0.508 2 3 cbr 1000 ------- 1 2.0 7.0 38 82 + 0.508 3 4 cbr 1000 ------- 1 2.0 7.0 38 82 d 0.508 3 4 cbr 1000 ------- 1 2.0 7.0 38 82 - 0.508 3 4 cbr 500 ------- 1 1.0 6.0 38 71 + 0.51 1 3 cbr 500 ------- 1 1.0 6.0 46 88 - 0.51 1 3 cbr 500 ------- 1 1.0 6.0 46 88 - 0.512 3 4 cbr 1000 ------- 1 2.0 7.0 33 72 r 0.514 4 7 cbr 1000 ------- 1 2.0 7.0 25 56 r 0.514 4 6 cbr 500 ------- 1 1.0 6.0 31 57 r 0.514 1 3 cbr 500 ------- 1 1.0 6.0 44 83 + 0.514 3 4 cbr 500 ------- 1 1.0 6.0 44 83 r 0.514 3 4 cbr 1000 ------- 1 2.0 7.0 28 62 + 0.514 4 7 cbr 1000 ------- 1 2.0 7.0 28 62 - 0.514 4 7 cbr 1000 ------- 1 2.0 7.0 28 62 r 0.518 4 6 cbr 500 ------- 1 1.0 6.0 32 59 r 0.518 3 4 cbr 500 ------- 1 1.0 6.0 34 63 + 0.518 4 6 cbr 500 ------- 1 1.0 6.0 34 63 - 0.518 4 6 cbr 500 ------- 1 1.0 6.0 34 63 r 0.518 2 3 cbr 1000 ------- 1 2.0 7.0 39 84 + 0.518 3 4 cbr 1000 ------- 1 2.0 7.0 39 84 + 0.52 1 3 cbr 500 ------- 1 1.0 6.0 47 89 - 0.52 1 3 cbr 500 ------- 1 1.0 6.0 47 89 + 0.52 2 3 cbr 1000 ------- 1 2.0 7.0 41 90 - 0.52 2 3 cbr 1000 ------- 1 2.0 7.0 41 90 - 0.52 3 4 cbr 1000 ------- 1 2.0 7.0 34 74 r 0.5216 0 3 tcp 1000 ------- 0 0.0 5.0 0 85 + 0.5216 3 4 tcp 1000 ------- 0 0.0 5.0 0 85 r 0.524 1 3 cbr 500 ------- 1 1.0 6.0 45 86 + 0.524 3 4 cbr 500 ------- 1 1.0 6.0 45 86 d 0.524 3 4 cbr 500 ------- 1 1.0 6.0 45 86 r 0.526 3 4 cbr 1000 ------- 1 2.0 7.0 29 64 + 0.526 4 7 cbr 1000 ------- 1 2.0 7.0 29 64 - 0.526 4 7 cbr 1000 ------- 1 2.0 7.0 29 64 r 0.528 2 3 cbr 1000 ------- 1 2.0 7.0 40 87 + 0.528 3 4 cbr 1000 ------- 1 2.0 7.0 40 87 d 0.528 3 4 cbr 1000 ------- 1 2.0 7.0 40 87 - 0.528 3 4 cbr 500 ------- 1 1.0 6.0 40 75 + 0.53 1 3 cbr 500 ------- 1 1.0 6.0 48 91 - 0.53 1 3 cbr 500 ------- 1 1.0 6.0 48 91 r 0.53 4 7 cbr 1000 ------- 1 2.0 7.0 27 60 r 0.53 4 6 cbr 500 ------- 1 1.0 6.0 33 61 - 0.532 3 4 cbr 1000 ------- 1 2.0 7.0 35 76 r 0.534 1 3 cbr 500 ------- 1 1.0 6.0 46 88 + 0.534 3 4 cbr 500 ------- 1 1.0 6.0 46 88 r 0.534 3 4 cbr 1000 ------- 1 2.0 7.0 30 66 + 0.534 4 7 cbr 1000 ------- 1 2.0 7.0 30 66 - 0.534 4 7 cbr 1000 ------- 1 2.0 7.0 30 66 r 0.538 3 4 cbr 500 ------- 1 1.0 6.0 36 67 + 0.538 4 6 cbr 500 ------- 1 1.0 6.0 36 67 - 0.538 4 6 cbr 500 ------- 1 1.0 6.0 36 67 + 0.54 1 3 cbr 500 ------- 1 1.0 6.0 49 92 - 0.54 1 3 cbr 500 ------- 1 1.0 6.0 49 92 + 0.54 2 3 cbr 1000 ------- 1 2.0 7.0 42 93 - 0.54 2 3 cbr 1000 ------- 1 2.0 7.0 42 93 - 0.54 3 4 cbr 1000 ------- 1 2.0 7.0 36 78 r 0.542 4 7 cbr 1000 ------- 1 2.0 7.0 28 62 r 0.542 4 6 cbr 500 ------- 1 1.0 6.0 34 63 r 0.544 1 3 cbr 500 ------- 1 1.0 6.0 47 89 + 0.544 3 4 cbr 500 ------- 1 1.0 6.0 47 89 r 0.546 3 4 cbr 1000 ------- 1 2.0 7.0 31 68 + 0.546 4 7 cbr 1000 ------- 1 2.0 7.0 31 68 - 0.546 4 7 cbr 1000 ------- 1 2.0 7.0 31 68 r 0.548 2 3 cbr 1000 ------- 1 2.0 7.0 41 90 + 0.548 3 4 cbr 1000 ------- 1 2.0 7.0 41 90 - 0.548 3 4 cbr 500 ------- 1 1.0 6.0 42 79 + 0.55 1 3 cbr 500 ------- 1 1.0 6.0 50 94 - 0.55 1 3 cbr 500 ------- 1 1.0 6.0 50 94 r 0.55 3 4 cbr 500 ------- 1 1.0 6.0 37 69 + 0.55 4 6 cbr 500 ------- 1 1.0 6.0 37 69 - 0.55 4 6 cbr 500 ------- 1 1.0 6.0 37 69 - 0.552 3 4 cbr 1000 ------- 1 2.0 7.0 37 80 r 0.554 1 3 cbr 500 ------- 1 1.0 6.0 48 91 + 0.554 3 4 cbr 500 ------- 1 1.0 6.0 48 91 r 0.554 4 7 cbr 1000 ------- 1 2.0 7.0 29 64 r 0.558 3 4 cbr 1000 ------- 1 2.0 7.0 32 70 + 0.558 4 7 cbr 1000 ------- 1 2.0 7.0 32 70 - 0.558 4 7 cbr 1000 ------- 1 2.0 7.0 32 70 + 0.56 1 3 cbr 500 ------- 1 1.0 6.0 51 95 - 0.56 1 3 cbr 500 ------- 1 1.0 6.0 51 95 + 0.56 2 3 cbr 1000 ------- 1 2.0 7.0 43 96 - 0.56 2 3 cbr 1000 ------- 1 2.0 7.0 43 96 - 0.56 3 4 cbr 500 ------- 1 1.0 6.0 43 81 r 0.562 3 4 cbr 500 ------- 1 1.0 6.0 38 71 + 0.562 4 6 cbr 500 ------- 1 1.0 6.0 38 71 - 0.562 4 6 cbr 500 ------- 1 1.0 6.0 38 71 r 0.562 4 7 cbr 1000 ------- 1 2.0 7.0 30 66 r 0.562 4 6 cbr 500 ------- 1 1.0 6.0 36 67 r 0.564 1 3 cbr 500 ------- 1 1.0 6.0 49 92 + 0.564 3 4 cbr 500 ------- 1 1.0 6.0 49 92 - 0.564 3 4 cbr 500 ------- 1 1.0 6.0 44 83 r 0.568 2 3 cbr 1000 ------- 1 2.0 7.0 42 93 + 0.568 3 4 cbr 1000 ------- 1 2.0 7.0 42 93 - 0.568 3 4 cbr 1000 ------- 1 2.0 7.0 39 84 + 0.57 1 3 cbr 500 ------- 1 1.0 6.0 52 97 - 0.57 1 3 cbr 500 ------- 1 1.0 6.0 52 97 r 0.57 3 4 cbr 1000 ------- 1 2.0 7.0 33 72 + 0.57 4 7 cbr 1000 ------- 1 2.0 7.0 33 72 - 0.57 4 7 cbr 1000 ------- 1 2.0 7.0 33 72 r 0.574 1 3 cbr 500 ------- 1 1.0 6.0 50 94 + 0.574 3 4 cbr 500 ------- 1 1.0 6.0 50 94 r 0.574 4 7 cbr 1000 ------- 1 2.0 7.0 31 68 r 0.574 4 6 cbr 500 ------- 1 1.0 6.0 37 69 - 0.576 3 4 tcp 1000 ------- 0 0.0 5.0 0 85 r 0.578 3 4 cbr 1000 ------- 1 2.0 7.0 34 74 + 0.578 4 7 cbr 1000 ------- 1 2.0 7.0 34 74 - 0.578 4 7 cbr 1000 ------- 1 2.0 7.0 34 74 + 0.58 1 3 cbr 500 ------- 1 1.0 6.0 53 98 - 0.58 1 3 cbr 500 ------- 1 1.0 6.0 53 98 + 0.58 2 3 cbr 1000 ------- 1 2.0 7.0 44 99 - 0.58 2 3 cbr 1000 ------- 1 2.0 7.0 44 99 r 0.582 3 4 cbr 500 ------- 1 1.0 6.0 40 75 + 0.582 4 6 cbr 500 ------- 1 1.0 6.0 40 75 - 0.582 4 6 cbr 500 ------- 1 1.0 6.0 40 75 r 0.584 1 3 cbr 500 ------- 1 1.0 6.0 51 95 + 0.584 3 4 cbr 500 ------- 1 1.0 6.0 51 95 - 0.584 3 4 cbr 500 ------- 1 1.0 6.0 46 88 r 0.586 4 7 cbr 1000 ------- 1 2.0 7.0 32 70 r 0.586 4 6 cbr 500 ------- 1 1.0 6.0 38 71 r 0.588 2 3 cbr 1000 ------- 1 2.0 7.0 43 96 + 0.588 3 4 cbr 1000 ------- 1 2.0 7.0 43 96 - 0.588 3 4 cbr 500 ------- 1 1.0 6.0 47 89 + 0.59 1 3 cbr 500 ------- 1 1.0 6.0 54 100 - 0.59 1 3 cbr 500 ------- 1 1.0 6.0 54 100 r 0.59 3 4 cbr 1000 ------- 1 2.0 7.0 35 76 + 0.59 4 7 cbr 1000 ------- 1 2.0 7.0 35 76 - 0.59 4 7 cbr 1000 ------- 1 2.0 7.0 35 76 - 0.592 3 4 cbr 1000 ------- 1 2.0 7.0 41 90 r 0.594 1 3 cbr 500 ------- 1 1.0 6.0 52 97 + 0.594 3 4 cbr 500 ------- 1 1.0 6.0 52 97 r 0.598 3 4 cbr 1000 ------- 1 2.0 7.0 36 78 + 0.598 4 7 cbr 1000 ------- 1 2.0 7.0 36 78 r 0.598 4 7 cbr 1000 ------- 1 2.0 7.0 33 72 - 0.598 4 7 cbr 1000 ------- 1 2.0 7.0 36 78 + 0.6 1 3 cbr 500 ------- 1 1.0 6.0 55 101 - 0.6 1 3 cbr 500 ------- 1 1.0 6.0 55 101 + 0.6 2 3 cbr 1000 ------- 1 2.0 7.0 45 102 - 0.6 2 3 cbr 1000 ------- 1 2.0 7.0 45 102 - 0.6 3 4 cbr 500 ------- 1 1.0 6.0 48 91 r 0.602 3 4 cbr 500 ------- 1 1.0 6.0 42 79 + 0.602 4 6 cbr 500 ------- 1 1.0 6.0 42 79 - 0.602 4 6 cbr 500 ------- 1 1.0 6.0 42 79 r 0.604 1 3 cbr 500 ------- 1 1.0 6.0 53 98 + 0.604 3 4 cbr 500 ------- 1 1.0 6.0 53 98 - 0.604 3 4 cbr 500 ------- 1 1.0 6.0 49 92 r 0.606 4 7 cbr 1000 ------- 1 2.0 7.0 34 74 r 0.606 4 6 cbr 500 ------- 1 1.0 6.0 40 75 r 0.608 2 3 cbr 1000 ------- 1 2.0 7.0 44 99 + 0.608 3 4 cbr 1000 ------- 1 2.0 7.0 44 99 - 0.608 3 4 cbr 1000 ------- 1 2.0 7.0 42 93 + 0.61 1 3 cbr 500 ------- 1 1.0 6.0 56 103 - 0.61 1 3 cbr 500 ------- 1 1.0 6.0 56 103 r 0.61 3 4 cbr 1000 ------- 1 2.0 7.0 37 80 + 0.61 4 7 cbr 1000 ------- 1 2.0 7.0 37 80 - 0.61 4 7 cbr 1000 ------- 1 2.0 7.0 37 80 r 0.614 1 3 cbr 500 ------- 1 1.0 6.0 54 100 + 0.614 3 4 cbr 500 ------- 1 1.0 6.0 54 100 r 0.614 3 4 cbr 500 ------- 1 1.0 6.0 43 81 + 0.614 4 6 cbr 500 ------- 1 1.0 6.0 43 81 - 0.614 4 6 cbr 500 ------- 1 1.0 6.0 43 81 - 0.616 3 4 cbr 500 ------- 1 1.0 6.0 50 94 r 0.618 3 4 cbr 500 ------- 1 1.0 6.0 44 83 + 0.618 4 6 cbr 500 ------- 1 1.0 6.0 44 83 r 0.618 4 7 cbr 1000 ------- 1 2.0 7.0 35 76 - 0.618 4 6 cbr 500 ------- 1 1.0 6.0 44 83 + 0.62 1 3 cbr 500 ------- 1 1.0 6.0 57 104 - 0.62 1 3 cbr 500 ------- 1 1.0 6.0 57 104 + 0.62 2 3 cbr 1000 ------- 1 2.0 7.0 46 105 - 0.62 2 3 cbr 1000 ------- 1 2.0 7.0 46 105 - 0.62 3 4 cbr 500 ------- 1 1.0 6.0 51 95 r 0.624 1 3 cbr 500 ------- 1 1.0 6.0 55 101 + 0.624 3 4 cbr 500 ------- 1 1.0 6.0 55 101 - 0.624 3 4 cbr 1000 ------- 1 2.0 7.0 43 96 r 0.626 3 4 cbr 1000 ------- 1 2.0 7.0 39 84 + 0.626 4 7 cbr 1000 ------- 1 2.0 7.0 39 84 - 0.626 4 7 cbr 1000 ------- 1 2.0 7.0 39 84 r 0.626 4 7 cbr 1000 ------- 1 2.0 7.0 36 78 r 0.626 4 6 cbr 500 ------- 1 1.0 6.0 42 79 r 0.628 2 3 cbr 1000 ------- 1 2.0 7.0 45 102 + 0.628 3 4 cbr 1000 ------- 1 2.0 7.0 45 102 + 0.63 1 3 cbr 500 ------- 1 1.0 6.0 58 106 - 0.63 1 3 cbr 500 ------- 1 1.0 6.0 58 106 - 0.632 3 4 cbr 500 ------- 1 1.0 6.0 52 97 r 0.634 1 3 cbr 500 ------- 1 1.0 6.0 56 103 + 0.634 3 4 cbr 500 ------- 1 1.0 6.0 56 103 r 0.634 3 4 tcp 1000 ------- 0 0.0 5.0 0 85 + 0.634 4 5 tcp 1000 ------- 0 0.0 5.0 0 85 - 0.634 4 5 tcp 1000 ------- 0 0.0 5.0 0 85 - 0.636 3 4 cbr 500 ------- 1 1.0 6.0 53 98 r 0.638 3 4 cbr 500 ------- 1 1.0 6.0 46 88 + 0.638 4 6 cbr 500 ------- 1 1.0 6.0 46 88 - 0.638 4 6 cbr 500 ------- 1 1.0 6.0 46 88 r 0.638 4 7 cbr 1000 ------- 1 2.0 7.0 37 80 r 0.638 4 6 cbr 500 ------- 1 1.0 6.0 43 81 + 0.64 1 3 cbr 500 ------- 1 1.0 6.0 59 107 - 0.64 1 3 cbr 500 ------- 1 1.0 6.0 59 107 + 0.64 2 3 cbr 1000 ------- 1 2.0 7.0 47 108 - 0.64 2 3 cbr 1000 ------- 1 2.0 7.0 47 108 - 0.64 3 4 cbr 1000 ------- 1 2.0 7.0 44 99 r 0.642 3 4 cbr 500 ------- 1 1.0 6.0 47 89 + 0.642 4 6 cbr 500 ------- 1 1.0 6.0 47 89 r 0.642 4 6 cbr 500 ------- 1 1.0 6.0 44 83 - 0.642 4 6 cbr 500 ------- 1 1.0 6.0 47 89 r 0.644 1 3 cbr 500 ------- 1 1.0 6.0 57 104 + 0.644 3 4 cbr 500 ------- 1 1.0 6.0 57 104 r 0.648 2 3 cbr 1000 ------- 1 2.0 7.0 46 105 + 0.648 3 4 cbr 1000 ------- 1 2.0 7.0 46 105 - 0.648 3 4 cbr 500 ------- 1 1.0 6.0 54 100 + 0.65 1 3 cbr 500 ------- 1 1.0 6.0 60 109 - 0.65 1 3 cbr 500 ------- 1 1.0 6.0 60 109 r 0.65 3 4 cbr 1000 ------- 1 2.0 7.0 41 90 + 0.65 4 7 cbr 1000 ------- 1 2.0 7.0 41 90 - 0.65 4 7 cbr 1000 ------- 1 2.0 7.0 41 90 - 0.652 3 4 cbr 500 ------- 1 1.0 6.0 55 101 r 0.654 1 3 cbr 500 ------- 1 1.0 6.0 58 106 + 0.654 3 4 cbr 500 ------- 1 1.0 6.0 58 106 r 0.654 3 4 cbr 500 ------- 1 1.0 6.0 48 91 + 0.654 4 6 cbr 500 ------- 1 1.0 6.0 48 91 - 0.654 4 6 cbr 500 ------- 1 1.0 6.0 48 91 r 0.654 4 7 cbr 1000 ------- 1 2.0 7.0 39 84 r 0.6556 4 5 tcp 1000 ------- 0 0.0 5.0 0 85 + 0.6556 5 4 ack 40 ------- 0 5.0 0.0 0 110 - 0.6556 5 4 ack 40 ------- 0 5.0 0.0 0 110 - 0.656 3 4 cbr 1000 ------- 1 2.0 7.0 45 102 r 0.658 3 4 cbr 500 ------- 1 1.0 6.0 49 92 + 0.658 4 6 cbr 500 ------- 1 1.0 6.0 49 92 - 0.658 4 6 cbr 500 ------- 1 1.0 6.0 49 92 v 0.66000000000000003 eval {set sim_annotation {Ack_0}} + 0.66 1 3 cbr 500 ------- 1 1.0 6.0 61 111 - 0.66 1 3 cbr 500 ------- 1 1.0 6.0 61 111 + 0.66 2 3 cbr 1000 ------- 1 2.0 7.0 48 112 - 0.66 2 3 cbr 1000 ------- 1 2.0 7.0 48 112 r 0.662 4 6 cbr 500 ------- 1 1.0 6.0 46 88 r 0.664 1 3 cbr 500 ------- 1 1.0 6.0 59 107 + 0.664 3 4 cbr 500 ------- 1 1.0 6.0 59 107 - 0.664 3 4 cbr 500 ------- 1 1.0 6.0 56 103 r 0.666 3 4 cbr 1000 ------- 1 2.0 7.0 42 93 + 0.666 4 7 cbr 1000 ------- 1 2.0 7.0 42 93 - 0.666 4 7 cbr 1000 ------- 1 2.0 7.0 42 93 r 0.666 4 6 cbr 500 ------- 1 1.0 6.0 47 89 r 0.668 2 3 cbr 1000 ------- 1 2.0 7.0 47 108 + 0.668 3 4 cbr 1000 ------- 1 2.0 7.0 47 108 - 0.668 3 4 cbr 500 ------- 1 1.0 6.0 57 104 + 0.67 1 3 cbr 500 ------- 1 1.0 6.0 62 113 - 0.67 1 3 cbr 500 ------- 1 1.0 6.0 62 113 r 0.67 3 4 cbr 500 ------- 1 1.0 6.0 50 94 + 0.67 4 6 cbr 500 ------- 1 1.0 6.0 50 94 - 0.67 4 6 cbr 500 ------- 1 1.0 6.0 50 94 - 0.672 3 4 cbr 1000 ------- 1 2.0 7.0 46 105 r 0.674 1 3 cbr 500 ------- 1 1.0 6.0 60 109 + 0.674 3 4 cbr 500 ------- 1 1.0 6.0 60 109 r 0.674 3 4 cbr 500 ------- 1 1.0 6.0 51 95 + 0.674 4 6 cbr 500 ------- 1 1.0 6.0 51 95 - 0.674 4 6 cbr 500 ------- 1 1.0 6.0 51 95 r 0.675664 5 4 ack 40 ------- 0 5.0 0.0 0 110 + 0.675664 4 3 ack 40 ------- 0 5.0 0.0 0 110 - 0.675664 4 3 ack 40 ------- 0 5.0 0.0 0 110 r 0.678 4 7 cbr 1000 ------- 1 2.0 7.0 41 90 r 0.678 4 6 cbr 500 ------- 1 1.0 6.0 48 91 + 0.68 1 3 cbr 500 ------- 1 1.0 6.0 63 114 - 0.68 1 3 cbr 500 ------- 1 1.0 6.0 63 114 + 0.68 2 3 cbr 1000 ------- 1 2.0 7.0 49 115 - 0.68 2 3 cbr 1000 ------- 1 2.0 7.0 49 115 - 0.68 3 4 cbr 500 ------- 1 1.0 6.0 58 106 r 0.682 3 4 cbr 1000 ------- 1 2.0 7.0 43 96 + 0.682 4 7 cbr 1000 ------- 1 2.0 7.0 43 96 - 0.682 4 7 cbr 1000 ------- 1 2.0 7.0 43 96 r 0.682 4 6 cbr 500 ------- 1 1.0 6.0 49 92 r 0.684 1 3 cbr 500 ------- 1 1.0 6.0 61 111 + 0.684 3 4 cbr 500 ------- 1 1.0 6.0 61 111 - 0.684 3 4 cbr 500 ------- 1 1.0 6.0 59 107 r 0.686 3 4 cbr 500 ------- 1 1.0 6.0 52 97 + 0.686 4 6 cbr 500 ------- 1 1.0 6.0 52 97 - 0.686 4 6 cbr 500 ------- 1 1.0 6.0 52 97 r 0.688 2 3 cbr 1000 ------- 1 2.0 7.0 48 112 + 0.688 3 4 cbr 1000 ------- 1 2.0 7.0 48 112 - 0.688 3 4 cbr 1000 ------- 1 2.0 7.0 47 108 + 0.69 1 3 cbr 500 ------- 1 1.0 6.0 64 116 - 0.69 1 3 cbr 500 ------- 1 1.0 6.0 64 116 r 0.69 3 4 cbr 500 ------- 1 1.0 6.0 53 98 + 0.69 4 6 cbr 500 ------- 1 1.0 6.0 53 98 - 0.69 4 6 cbr 500 ------- 1 1.0 6.0 53 98 r 0.694 1 3 cbr 500 ------- 1 1.0 6.0 62 113 + 0.694 3 4 cbr 500 ------- 1 1.0 6.0 62 113 r 0.694 4 7 cbr 1000 ------- 1 2.0 7.0 42 93 r 0.694 4 6 cbr 500 ------- 1 1.0 6.0 50 94 - 0.696 3 4 cbr 500 ------- 1 1.0 6.0 60 109 r 0.698 3 4 cbr 1000 ------- 1 2.0 7.0 44 99 + 0.698 4 7 cbr 1000 ------- 1 2.0 7.0 44 99 - 0.698 4 7 cbr 1000 ------- 1 2.0 7.0 44 99 r 0.698 4 6 cbr 500 ------- 1 1.0 6.0 51 95 + 0.7 1 3 cbr 500 ------- 1 1.0 6.0 65 117 - 0.7 1 3 cbr 500 ------- 1 1.0 6.0 65 117 + 0.7 2 3 cbr 1000 ------- 1 2.0 7.0 50 118 - 0.7 2 3 cbr 1000 ------- 1 2.0 7.0 50 118 - 0.7 3 4 cbr 500 ------- 1 1.0 6.0 61 111 r 0.702 3 4 cbr 500 ------- 1 1.0 6.0 54 100 + 0.702 4 6 cbr 500 ------- 1 1.0 6.0 54 100 - 0.702 4 6 cbr 500 ------- 1 1.0 6.0 54 100 r 0.704 1 3 cbr 500 ------- 1 1.0 6.0 63 114 + 0.704 3 4 cbr 500 ------- 1 1.0 6.0 63 114 - 0.704 3 4 cbr 1000 ------- 1 2.0 7.0 48 112 r 0.706 3 4 cbr 500 ------- 1 1.0 6.0 55 101 + 0.706 4 6 cbr 500 ------- 1 1.0 6.0 55 101 - 0.706 4 6 cbr 500 ------- 1 1.0 6.0 55 101 r 0.708 2 3 cbr 1000 ------- 1 2.0 7.0 49 115 + 0.708 3 4 cbr 1000 ------- 1 2.0 7.0 49 115 + 0.71 1 3 cbr 500 ------- 1 1.0 6.0 66 119 - 0.71 1 3 cbr 500 ------- 1 1.0 6.0 66 119 r 0.71 4 7 cbr 1000 ------- 1 2.0 7.0 43 96 r 0.71 4 6 cbr 500 ------- 1 1.0 6.0 52 97 - 0.712 3 4 cbr 500 ------- 1 1.0 6.0 62 113 r 0.714 1 3 cbr 500 ------- 1 1.0 6.0 64 116 + 0.714 3 4 cbr 500 ------- 1 1.0 6.0 64 116 r 0.714 3 4 cbr 1000 ------- 1 2.0 7.0 45 102 + 0.714 4 7 cbr 1000 ------- 1 2.0 7.0 45 102 - 0.714 4 7 cbr 1000 ------- 1 2.0 7.0 45 102 r 0.714 4 6 cbr 500 ------- 1 1.0 6.0 53 98 - 0.716 3 4 cbr 500 ------- 1 1.0 6.0 63 114 r 0.718 3 4 cbr 500 ------- 1 1.0 6.0 56 103 + 0.718 4 6 cbr 500 ------- 1 1.0 6.0 56 103 - 0.718 4 6 cbr 500 ------- 1 1.0 6.0 56 103 + 0.72 1 3 cbr 500 ------- 1 1.0 6.0 67 120 - 0.72 1 3 cbr 500 ------- 1 1.0 6.0 67 120 + 0.72 2 3 cbr 1000 ------- 1 2.0 7.0 51 121 - 0.72 2 3 cbr 1000 ------- 1 2.0 7.0 51 121 - 0.72 3 4 cbr 1000 ------- 1 2.0 7.0 49 115 r 0.722 3 4 cbr 500 ------- 1 1.0 6.0 57 104 + 0.722 4 6 cbr 500 ------- 1 1.0 6.0 57 104 - 0.722 4 6 cbr 500 ------- 1 1.0 6.0 57 104 r 0.724 1 3 cbr 500 ------- 1 1.0 6.0 65 117 + 0.724 3 4 cbr 500 ------- 1 1.0 6.0 65 117 r 0.725984 4 3 ack 40 ------- 0 5.0 0.0 0 110 + 0.725984 3 0 ack 40 ------- 0 5.0 0.0 0 110 - 0.725984 3 0 ack 40 ------- 0 5.0 0.0 0 110 r 0.726 4 7 cbr 1000 ------- 1 2.0 7.0 44 99 r 0.726 4 6 cbr 500 ------- 1 1.0 6.0 54 100 r 0.728 2 3 cbr 1000 ------- 1 2.0 7.0 50 118 + 0.728 3 4 cbr 1000 ------- 1 2.0 7.0 50 118 - 0.728 3 4 cbr 500 ------- 1 1.0 6.0 64 116 + 0.73 1 3 cbr 500 ------- 1 1.0 6.0 68 122 - 0.73 1 3 cbr 500 ------- 1 1.0 6.0 68 122 r 0.73 3 4 cbr 1000 ------- 1 2.0 7.0 46 105 + 0.73 4 7 cbr 1000 ------- 1 2.0 7.0 46 105 - 0.73 4 7 cbr 1000 ------- 1 2.0 7.0 46 105 r 0.73 4 6 cbr 500 ------- 1 1.0 6.0 55 101 - 0.732 3 4 cbr 500 ------- 1 1.0 6.0 65 117 r 0.734 1 3 cbr 500 ------- 1 1.0 6.0 66 119 + 0.734 3 4 cbr 500 ------- 1 1.0 6.0 66 119 r 0.734 3 4 cbr 500 ------- 1 1.0 6.0 58 106 + 0.734 4 6 cbr 500 ------- 1 1.0 6.0 58 106 - 0.734 4 6 cbr 500 ------- 1 1.0 6.0 58 106 - 0.736 3 4 cbr 1000 ------- 1 2.0 7.0 50 118 r 0.738 3 4 cbr 500 ------- 1 1.0 6.0 59 107 + 0.738 4 6 cbr 500 ------- 1 1.0 6.0 59 107 - 0.738 4 6 cbr 500 ------- 1 1.0 6.0 59 107 + 0.74 1 3 cbr 500 ------- 1 1.0 6.0 69 123 - 0.74 1 3 cbr 500 ------- 1 1.0 6.0 69 123 + 0.74 2 3 cbr 1000 ------- 1 2.0 7.0 52 124 - 0.74 2 3 cbr 1000 ------- 1 2.0 7.0 52 124 r 0.742 4 7 cbr 1000 ------- 1 2.0 7.0 45 102 r 0.742 4 6 cbr 500 ------- 1 1.0 6.0 56 103 r 0.744 1 3 cbr 500 ------- 1 1.0 6.0 67 120 + 0.744 3 4 cbr 500 ------- 1 1.0 6.0 67 120 - 0.744 3 4 cbr 500 ------- 1 1.0 6.0 66 119 r 0.746 3 4 cbr 1000 ------- 1 2.0 7.0 47 108 + 0.746 4 7 cbr 1000 ------- 1 2.0 7.0 47 108 - 0.746 4 7 cbr 1000 ------- 1 2.0 7.0 47 108 r 0.746 4 6 cbr 500 ------- 1 1.0 6.0 57 104 r 0.746048 3 0 ack 40 ------- 0 5.0 0.0 0 110 + 0.746048 0 3 tcp 1000 ------- 0 0.0 5.0 1 125 - 0.746048 0 3 tcp 1000 ------- 0 0.0 5.0 1 125 + 0.746048 0 3 tcp 1000 ------- 0 0.0 5.0 2 126 - 0.747648 0 3 tcp 1000 ------- 0 0.0 5.0 2 126 r 0.748 2 3 cbr 1000 ------- 1 2.0 7.0 51 121 + 0.748 3 4 cbr 1000 ------- 1 2.0 7.0 51 121 - 0.748 3 4 cbr 500 ------- 1 1.0 6.0 67 120 v 0.75 eval {set sim_annotation {Send Packet_1,2 : Increase window size to 2}} + 0.75 1 3 cbr 500 ------- 1 1.0 6.0 70 127 - 0.75 1 3 cbr 500 ------- 1 1.0 6.0 70 127 r 0.75 3 4 cbr 500 ------- 1 1.0 6.0 60 109 + 0.75 4 6 cbr 500 ------- 1 1.0 6.0 60 109 - 0.75 4 6 cbr 500 ------- 1 1.0 6.0 60 109 - 0.752 3 4 cbr 1000 ------- 1 2.0 7.0 51 121 r 0.754 1 3 cbr 500 ------- 1 1.0 6.0 68 122 + 0.754 3 4 cbr 500 ------- 1 1.0 6.0 68 122 r 0.754 3 4 cbr 500 ------- 1 1.0 6.0 61 111 + 0.754 4 6 cbr 500 ------- 1 1.0 6.0 61 111 - 0.754 4 6 cbr 500 ------- 1 1.0 6.0 61 111 r 0.758 4 7 cbr 1000 ------- 1 2.0 7.0 46 105 r 0.758 4 6 cbr 500 ------- 1 1.0 6.0 58 106 + 0.76 1 3 cbr 500 ------- 1 1.0 6.0 71 128 - 0.76 1 3 cbr 500 ------- 1 1.0 6.0 71 128 + 0.76 2 3 cbr 1000 ------- 1 2.0 7.0 53 129 - 0.76 2 3 cbr 1000 ------- 1 2.0 7.0 53 129 - 0.76 3 4 cbr 500 ------- 1 1.0 6.0 68 122 r 0.762 3 4 cbr 1000 ------- 1 2.0 7.0 48 112 + 0.762 4 7 cbr 1000 ------- 1 2.0 7.0 48 112 - 0.762 4 7 cbr 1000 ------- 1 2.0 7.0 48 112 r 0.762 4 6 cbr 500 ------- 1 1.0 6.0 59 107 r 0.764 1 3 cbr 500 ------- 1 1.0 6.0 69 123 + 0.764 3 4 cbr 500 ------- 1 1.0 6.0 69 123 - 0.764 3 4 cbr 500 ------- 1 1.0 6.0 69 123 r 0.766 3 4 cbr 500 ------- 1 1.0 6.0 62 113 + 0.766 4 6 cbr 500 ------- 1 1.0 6.0 62 113 - 0.766 4 6 cbr 500 ------- 1 1.0 6.0 62 113 r 0.767648 0 3 tcp 1000 ------- 0 0.0 5.0 1 125 + 0.767648 3 4 tcp 1000 ------- 0 0.0 5.0 1 125 r 0.768 2 3 cbr 1000 ------- 1 2.0 7.0 52 124 + 0.768 3 4 cbr 1000 ------- 1 2.0 7.0 52 124 - 0.768 3 4 tcp 1000 ------- 0 0.0 5.0 1 125 r 0.769248 0 3 tcp 1000 ------- 0 0.0 5.0 2 126 + 0.769248 3 4 tcp 1000 ------- 0 0.0 5.0 2 126 + 0.77 1 3 cbr 500 ------- 1 1.0 6.0 72 130 - 0.77 1 3 cbr 500 ------- 1 1.0 6.0 72 130 r 0.77 3 4 cbr 500 ------- 1 1.0 6.0 63 114 + 0.77 4 6 cbr 500 ------- 1 1.0 6.0 63 114 - 0.77 4 6 cbr 500 ------- 1 1.0 6.0 63 114 r 0.774 1 3 cbr 500 ------- 1 1.0 6.0 70 127 + 0.774 3 4 cbr 500 ------- 1 1.0 6.0 70 127 r 0.774 4 7 cbr 1000 ------- 1 2.0 7.0 47 108 r 0.774 4 6 cbr 500 ------- 1 1.0 6.0 60 109 - 0.776 3 4 cbr 1000 ------- 1 2.0 7.0 52 124 r 0.778 3 4 cbr 1000 ------- 1 2.0 7.0 49 115 + 0.778 4 7 cbr 1000 ------- 1 2.0 7.0 49 115 - 0.778 4 7 cbr 1000 ------- 1 2.0 7.0 49 115 r 0.778 4 6 cbr 500 ------- 1 1.0 6.0 61 111 + 0.78 1 3 cbr 500 ------- 1 1.0 6.0 73 131 - 0.78 1 3 cbr 500 ------- 1 1.0 6.0 73 131 + 0.78 2 3 cbr 1000 ------- 1 2.0 7.0 54 132 - 0.78 2 3 cbr 1000 ------- 1 2.0 7.0 54 132 r 0.782 3 4 cbr 500 ------- 1 1.0 6.0 64 116 + 0.782 4 6 cbr 500 ------- 1 1.0 6.0 64 116 - 0.782 4 6 cbr 500 ------- 1 1.0 6.0 64 116 r 0.784 1 3 cbr 500 ------- 1 1.0 6.0 71 128 + 0.784 3 4 cbr 500 ------- 1 1.0 6.0 71 128 - 0.784 3 4 tcp 1000 ------- 0 0.0 5.0 2 126 r 0.786 3 4 cbr 500 ------- 1 1.0 6.0 65 117 + 0.786 4 6 cbr 500 ------- 1 1.0 6.0 65 117 - 0.786 4 6 cbr 500 ------- 1 1.0 6.0 65 117 r 0.788 2 3 cbr 1000 ------- 1 2.0 7.0 53 129 + 0.788 3 4 cbr 1000 ------- 1 2.0 7.0 53 129 + 0.79 1 3 cbr 500 ------- 1 1.0 6.0 74 133 - 0.79 1 3 cbr 500 ------- 1 1.0 6.0 74 133 r 0.79 4 7 cbr 1000 ------- 1 2.0 7.0 48 112 r 0.79 4 6 cbr 500 ------- 1 1.0 6.0 62 113 - 0.792 3 4 cbr 500 ------- 1 1.0 6.0 70 127 r 0.794 1 3 cbr 500 ------- 1 1.0 6.0 72 130 + 0.794 3 4 cbr 500 ------- 1 1.0 6.0 72 130 r 0.794 3 4 cbr 1000 ------- 1 2.0 7.0 50 118 + 0.794 4 7 cbr 1000 ------- 1 2.0 7.0 50 118 - 0.794 4 7 cbr 1000 ------- 1 2.0 7.0 50 118 r 0.794 4 6 cbr 500 ------- 1 1.0 6.0 63 114 - 0.796 3 4 cbr 500 ------- 1 1.0 6.0 71 128 r 0.798 3 4 cbr 500 ------- 1 1.0 6.0 66 119 + 0.798 4 6 cbr 500 ------- 1 1.0 6.0 66 119 - 0.798 4 6 cbr 500 ------- 1 1.0 6.0 66 119 + 0.8 1 3 cbr 500 ------- 1 1.0 6.0 75 134 - 0.8 1 3 cbr 500 ------- 1 1.0 6.0 75 134 + 0.8 2 3 cbr 1000 ------- 1 2.0 7.0 55 135 - 0.8 2 3 cbr 1000 ------- 1 2.0 7.0 55 135 - 0.8 3 4 cbr 1000 ------- 1 2.0 7.0 53 129 r 0.802 3 4 cbr 500 ------- 1 1.0 6.0 67 120 + 0.802 4 6 cbr 500 ------- 1 1.0 6.0 67 120 - 0.802 4 6 cbr 500 ------- 1 1.0 6.0 67 120 r 0.804 1 3 cbr 500 ------- 1 1.0 6.0 73 131 + 0.804 3 4 cbr 500 ------- 1 1.0 6.0 73 131 r 0.806 4 7 cbr 1000 ------- 1 2.0 7.0 49 115 r 0.806 4 6 cbr 500 ------- 1 1.0 6.0 64 116 r 0.808 2 3 cbr 1000 ------- 1 2.0 7.0 54 132 + 0.808 3 4 cbr 1000 ------- 1 2.0 7.0 54 132 - 0.808 3 4 cbr 500 ------- 1 1.0 6.0 72 130 + 0.81 1 3 cbr 500 ------- 1 1.0 6.0 76 136 - 0.81 1 3 cbr 500 ------- 1 1.0 6.0 76 136 r 0.81 3 4 cbr 1000 ------- 1 2.0 7.0 51 121 + 0.81 4 7 cbr 1000 ------- 1 2.0 7.0 51 121 - 0.81 4 7 cbr 1000 ------- 1 2.0 7.0 51 121 r 0.81 4 6 cbr 500 ------- 1 1.0 6.0 65 117 - 0.812 3 4 cbr 500 ------- 1 1.0 6.0 73 131 r 0.814 1 3 cbr 500 ------- 1 1.0 6.0 74 133 + 0.814 3 4 cbr 500 ------- 1 1.0 6.0 74 133 r 0.814 3 4 cbr 500 ------- 1 1.0 6.0 68 122 + 0.814 4 6 cbr 500 ------- 1 1.0 6.0 68 122 - 0.814 4 6 cbr 500 ------- 1 1.0 6.0 68 122 - 0.816 3 4 cbr 1000 ------- 1 2.0 7.0 54 132 r 0.818 3 4 cbr 500 ------- 1 1.0 6.0 69 123 + 0.818 4 6 cbr 500 ------- 1 1.0 6.0 69 123 - 0.818 4 6 cbr 500 ------- 1 1.0 6.0 69 123 + 0.82 1 3 cbr 500 ------- 1 1.0 6.0 77 137 - 0.82 1 3 cbr 500 ------- 1 1.0 6.0 77 137 + 0.82 2 3 cbr 1000 ------- 1 2.0 7.0 56 138 - 0.82 2 3 cbr 1000 ------- 1 2.0 7.0 56 138 r 0.822 4 7 cbr 1000 ------- 1 2.0 7.0 50 118 r 0.822 4 6 cbr 500 ------- 1 1.0 6.0 66 119 r 0.824 1 3 cbr 500 ------- 1 1.0 6.0 75 134 + 0.824 3 4 cbr 500 ------- 1 1.0 6.0 75 134 - 0.824 3 4 cbr 500 ------- 1 1.0 6.0 74 133 r 0.826 3 4 tcp 1000 ------- 0 0.0 5.0 1 125 + 0.826 4 5 tcp 1000 ------- 0 0.0 5.0 1 125 - 0.826 4 5 tcp 1000 ------- 0 0.0 5.0 1 125 r 0.826 4 6 cbr 500 ------- 1 1.0 6.0 67 120 r 0.828 2 3 cbr 1000 ------- 1 2.0 7.0 55 135 + 0.828 3 4 cbr 1000 ------- 1 2.0 7.0 55 135 - 0.828 3 4 cbr 500 ------- 1 1.0 6.0 75 134 + 0.83 1 3 cbr 500 ------- 1 1.0 6.0 78 139 - 0.83 1 3 cbr 500 ------- 1 1.0 6.0 78 139 - 0.832 3 4 cbr 1000 ------- 1 2.0 7.0 55 135 r 0.834 1 3 cbr 500 ------- 1 1.0 6.0 76 136 + 0.834 3 4 cbr 500 ------- 1 1.0 6.0 76 136 r 0.834 3 4 cbr 1000 ------- 1 2.0 7.0 52 124 + 0.834 4 7 cbr 1000 ------- 1 2.0 7.0 52 124 - 0.834 4 7 cbr 1000 ------- 1 2.0 7.0 52 124 r 0.838 4 7 cbr 1000 ------- 1 2.0 7.0 51 121 r 0.838 4 6 cbr 500 ------- 1 1.0 6.0 68 122 + 0.84 1 3 cbr 500 ------- 1 1.0 6.0 79 140 - 0.84 1 3 cbr 500 ------- 1 1.0 6.0 79 140 + 0.84 2 3 cbr 1000 ------- 1 2.0 7.0 57 141 - 0.84 2 3 cbr 1000 ------- 1 2.0 7.0 57 141 - 0.84 3 4 cbr 500 ------- 1 1.0 6.0 76 136 r 0.842 3 4 tcp 1000 ------- 0 0.0 5.0 2 126 + 0.842 4 5 tcp 1000 ------- 0 0.0 5.0 2 126 - 0.842 4 5 tcp 1000 ------- 0 0.0 5.0 2 126 r 0.842 4 6 cbr 500 ------- 1 1.0 6.0 69 123 r 0.844 1 3 cbr 500 ------- 1 1.0 6.0 77 137 + 0.844 3 4 cbr 500 ------- 1 1.0 6.0 77 137 - 0.844 3 4 cbr 500 ------- 1 1.0 6.0 77 137 r 0.846 3 4 cbr 500 ------- 1 1.0 6.0 70 127 + 0.846 4 6 cbr 500 ------- 1 1.0 6.0 70 127 - 0.846 4 6 cbr 500 ------- 1 1.0 6.0 70 127 r 0.8476 4 5 tcp 1000 ------- 0 0.0 5.0 1 125 + 0.8476 5 4 ack 40 ------- 0 5.0 0.0 1 142 - 0.8476 5 4 ack 40 ------- 0 5.0 0.0 1 142 r 0.848 2 3 cbr 1000 ------- 1 2.0 7.0 56 138 + 0.848 3 4 cbr 1000 ------- 1 2.0 7.0 56 138 - 0.848 3 4 cbr 1000 ------- 1 2.0 7.0 56 138 + 0.85 1 3 cbr 500 ------- 1 1.0 6.0 80 143 - 0.85 1 3 cbr 500 ------- 1 1.0 6.0 80 143 r 0.85 3 4 cbr 500 ------- 1 1.0 6.0 71 128 + 0.85 4 6 cbr 500 ------- 1 1.0 6.0 71 128 - 0.85 4 6 cbr 500 ------- 1 1.0 6.0 71 128 r 0.854 1 3 cbr 500 ------- 1 1.0 6.0 78 139 + 0.854 3 4 cbr 500 ------- 1 1.0 6.0 78 139 - 0.856 3 4 cbr 500 ------- 1 1.0 6.0 78 139 r 0.858 3 4 cbr 1000 ------- 1 2.0 7.0 53 129 + 0.858 4 7 cbr 1000 ------- 1 2.0 7.0 53 129 - 0.858 4 7 cbr 1000 ------- 1 2.0 7.0 53 129 v 0.85999999999999999 eval {set sim_annotation {Ack_1,2}} + 0.86 1 3 cbr 500 ------- 1 1.0 6.0 81 144 - 0.86 1 3 cbr 500 ------- 1 1.0 6.0 81 144 + 0.86 2 3 cbr 1000 ------- 1 2.0 7.0 58 145 - 0.86 2 3 cbr 1000 ------- 1 2.0 7.0 58 145 r 0.862 3 4 cbr 500 ------- 1 1.0 6.0 72 130 + 0.862 4 6 cbr 500 ------- 1 1.0 6.0 72 130 - 0.862 4 6 cbr 500 ------- 1 1.0 6.0 72 130 r 0.862 4 7 cbr 1000 ------- 1 2.0 7.0 52 124 r 0.8636 4 5 tcp 1000 ------- 0 0.0 5.0 2 126 + 0.8636 5 4 ack 40 ------- 0 5.0 0.0 2 146 - 0.8636 5 4 ack 40 ------- 0 5.0 0.0 2 146 r 0.864 1 3 cbr 500 ------- 1 1.0 6.0 79 140 + 0.864 3 4 cbr 500 ------- 1 1.0 6.0 79 140 - 0.864 3 4 cbr 500 ------- 1 1.0 6.0 79 140 r 0.866 3 4 cbr 500 ------- 1 1.0 6.0 73 131 + 0.866 4 6 cbr 500 ------- 1 1.0 6.0 73 131 - 0.866 4 6 cbr 500 ------- 1 1.0 6.0 73 131 r 0.867664 5 4 ack 40 ------- 0 5.0 0.0 1 142 + 0.867664 4 3 ack 40 ------- 0 5.0 0.0 1 142 - 0.867664 4 3 ack 40 ------- 0 5.0 0.0 1 142 r 0.868 2 3 cbr 1000 ------- 1 2.0 7.0 57 141 + 0.868 3 4 cbr 1000 ------- 1 2.0 7.0 57 141 - 0.868 3 4 cbr 1000 ------- 1 2.0 7.0 57 141 + 0.87 1 3 cbr 500 ------- 1 1.0 6.0 82 147 - 0.87 1 3 cbr 500 ------- 1 1.0 6.0 82 147 r 0.87 4 6 cbr 500 ------- 1 1.0 6.0 70 127 r 0.874 1 3 cbr 500 ------- 1 1.0 6.0 80 143 + 0.874 3 4 cbr 500 ------- 1 1.0 6.0 80 143 r 0.874 3 4 cbr 1000 ------- 1 2.0 7.0 54 132 + 0.874 4 7 cbr 1000 ------- 1 2.0 7.0 54 132 - 0.874 4 7 cbr 1000 ------- 1 2.0 7.0 54 132 r 0.874 4 6 cbr 500 ------- 1 1.0 6.0 71 128 - 0.876 3 4 cbr 500 ------- 1 1.0 6.0 80 143 r 0.878 3 4 cbr 500 ------- 1 1.0 6.0 74 133 + 0.878 4 6 cbr 500 ------- 1 1.0 6.0 74 133 - 0.878 4 6 cbr 500 ------- 1 1.0 6.0 74 133 + 0.88 1 3 cbr 500 ------- 1 1.0 6.0 83 148 - 0.88 1 3 cbr 500 ------- 1 1.0 6.0 83 148 + 0.88 2 3 cbr 1000 ------- 1 2.0 7.0 59 149 - 0.88 2 3 cbr 1000 ------- 1 2.0 7.0 59 149 r 0.882 3 4 cbr 500 ------- 1 1.0 6.0 75 134 + 0.882 4 6 cbr 500 ------- 1 1.0 6.0 75 134 - 0.882 4 6 cbr 500 ------- 1 1.0 6.0 75 134 r 0.883664 5 4 ack 40 ------- 0 5.0 0.0 2 146 + 0.883664 4 3 ack 40 ------- 0 5.0 0.0 2 146 - 0.883664 4 3 ack 40 ------- 0 5.0 0.0 2 146 r 0.884 1 3 cbr 500 ------- 1 1.0 6.0 81 144 + 0.884 3 4 cbr 500 ------- 1 1.0 6.0 81 144 - 0.884 3 4 cbr 500 ------- 1 1.0 6.0 81 144 r 0.886 4 7 cbr 1000 ------- 1 2.0 7.0 53 129 r 0.886 4 6 cbr 500 ------- 1 1.0 6.0 72 130 r 0.888 2 3 cbr 1000 ------- 1 2.0 7.0 58 145 + 0.888 3 4 cbr 1000 ------- 1 2.0 7.0 58 145 - 0.888 3 4 cbr 1000 ------- 1 2.0 7.0 58 145 + 0.89 1 3 cbr 500 ------- 1 1.0 6.0 84 150 - 0.89 1 3 cbr 500 ------- 1 1.0 6.0 84 150 r 0.89 3 4 cbr 1000 ------- 1 2.0 7.0 55 135 + 0.89 4 7 cbr 1000 ------- 1 2.0 7.0 55 135 - 0.89 4 7 cbr 1000 ------- 1 2.0 7.0 55 135 r 0.89 4 6 cbr 500 ------- 1 1.0 6.0 73 131 r 0.894 1 3 cbr 500 ------- 1 1.0 6.0 82 147 + 0.894 3 4 cbr 500 ------- 1 1.0 6.0 82 147 r 0.894 3 4 cbr 500 ------- 1 1.0 6.0 76 136 + 0.894 4 6 cbr 500 ------- 1 1.0 6.0 76 136 - 0.894 4 6 cbr 500 ------- 1 1.0 6.0 76 136 - 0.896 3 4 cbr 500 ------- 1 1.0 6.0 82 147 r 0.898 3 4 cbr 500 ------- 1 1.0 6.0 77 137 + 0.898 4 6 cbr 500 ------- 1 1.0 6.0 77 137 - 0.898 4 6 cbr 500 ------- 1 1.0 6.0 77 137 + 0.9 1 3 cbr 500 ------- 1 1.0 6.0 85 151 - 0.9 1 3 cbr 500 ------- 1 1.0 6.0 85 151 + 0.9 2 3 cbr 1000 ------- 1 2.0 7.0 60 152 - 0.9 2 3 cbr 1000 ------- 1 2.0 7.0 60 152 r 0.902 4 7 cbr 1000 ------- 1 2.0 7.0 54 132 r 0.902 4 6 cbr 500 ------- 1 1.0 6.0 74 133 r 0.904 1 3 cbr 500 ------- 1 1.0 6.0 83 148 + 0.904 3 4 cbr 500 ------- 1 1.0 6.0 83 148 - 0.904 3 4 cbr 500 ------- 1 1.0 6.0 83 148 r 0.906 3 4 cbr 1000 ------- 1 2.0 7.0 56 138 + 0.906 4 7 cbr 1000 ------- 1 2.0 7.0 56 138 - 0.906 4 7 cbr 1000 ------- 1 2.0 7.0 56 138 r 0.906 4 6 cbr 500 ------- 1 1.0 6.0 75 134 r 0.908 2 3 cbr 1000 ------- 1 2.0 7.0 59 149 + 0.908 3 4 cbr 1000 ------- 1 2.0 7.0 59 149 - 0.908 3 4 cbr 1000 ------- 1 2.0 7.0 59 149 + 0.91 1 3 cbr 500 ------- 1 1.0 6.0 86 153 - 0.91 1 3 cbr 500 ------- 1 1.0 6.0 86 153 r 0.91 3 4 cbr 500 ------- 1 1.0 6.0 78 139 + 0.91 4 6 cbr 500 ------- 1 1.0 6.0 78 139 - 0.91 4 6 cbr 500 ------- 1 1.0 6.0 78 139 r 0.914 1 3 cbr 500 ------- 1 1.0 6.0 84 150 + 0.914 3 4 cbr 500 ------- 1 1.0 6.0 84 150 - 0.916 3 4 cbr 500 ------- 1 1.0 6.0 84 150 r 0.917984 4 3 ack 40 ------- 0 5.0 0.0 1 142 + 0.917984 3 0 ack 40 ------- 0 5.0 0.0 1 142 - 0.917984 3 0 ack 40 ------- 0 5.0 0.0 1 142 r 0.918 3 4 cbr 500 ------- 1 1.0 6.0 79 140 + 0.918 4 6 cbr 500 ------- 1 1.0 6.0 79 140 - 0.918 4 6 cbr 500 ------- 1 1.0 6.0 79 140 r 0.918 4 7 cbr 1000 ------- 1 2.0 7.0 55 135 r 0.918 4 6 cbr 500 ------- 1 1.0 6.0 76 136 + 0.92 1 3 cbr 500 ------- 1 1.0 6.0 87 154 - 0.92 1 3 cbr 500 ------- 1 1.0 6.0 87 154 + 0.92 2 3 cbr 1000 ------- 1 2.0 7.0 61 155 - 0.92 2 3 cbr 1000 ------- 1 2.0 7.0 61 155 r 0.922 4 6 cbr 500 ------- 1 1.0 6.0 77 137 r 0.924 1 3 cbr 500 ------- 1 1.0 6.0 85 151 + 0.924 3 4 cbr 500 ------- 1 1.0 6.0 85 151 - 0.924 3 4 cbr 500 ------- 1 1.0 6.0 85 151 r 0.926 3 4 cbr 1000 ------- 1 2.0 7.0 57 141 + 0.926 4 7 cbr 1000 ------- 1 2.0 7.0 57 141 - 0.926 4 7 cbr 1000 ------- 1 2.0 7.0 57 141 r 0.928 2 3 cbr 1000 ------- 1 2.0 7.0 60 152 + 0.928 3 4 cbr 1000 ------- 1 2.0 7.0 60 152 - 0.928 3 4 cbr 1000 ------- 1 2.0 7.0 60 152 + 0.93 1 3 cbr 500 ------- 1 1.0 6.0 88 156 - 0.93 1 3 cbr 500 ------- 1 1.0 6.0 88 156 r 0.93 3 4 cbr 500 ------- 1 1.0 6.0 80 143 + 0.93 4 6 cbr 500 ------- 1 1.0 6.0 80 143 - 0.93 4 6 cbr 500 ------- 1 1.0 6.0 80 143 r 0.933984 4 3 ack 40 ------- 0 5.0 0.0 2 146 + 0.933984 3 0 ack 40 ------- 0 5.0 0.0 2 146 - 0.933984 3 0 ack 40 ------- 0 5.0 0.0 2 146 r 0.934 1 3 cbr 500 ------- 1 1.0 6.0 86 153 + 0.934 3 4 cbr 500 ------- 1 1.0 6.0 86 153 r 0.934 4 7 cbr 1000 ------- 1 2.0 7.0 56 138 r 0.934 4 6 cbr 500 ------- 1 1.0 6.0 78 139 - 0.936 3 4 cbr 500 ------- 1 1.0 6.0 86 153 r 0.938 3 4 cbr 500 ------- 1 1.0 6.0 81 144 + 0.938 4 6 cbr 500 ------- 1 1.0 6.0 81 144 - 0.938 4 6 cbr 500 ------- 1 1.0 6.0 81 144 r 0.938048 3 0 ack 40 ------- 0 5.0 0.0 1 142 + 0.938048 0 3 tcp 1000 ------- 0 0.0 5.0 3 157 - 0.938048 0 3 tcp 1000 ------- 0 0.0 5.0 3 157 + 0.938048 0 3 tcp 1000 ------- 0 0.0 5.0 4 158 - 0.939648 0 3 tcp 1000 ------- 0 0.0 5.0 4 158 + 0.94 1 3 cbr 500 ------- 1 1.0 6.0 89 159 - 0.94 1 3 cbr 500 ------- 1 1.0 6.0 89 159 + 0.94 2 3 cbr 1000 ------- 1 2.0 7.0 62 160 - 0.94 2 3 cbr 1000 ------- 1 2.0 7.0 62 160 r 0.942 4 6 cbr 500 ------- 1 1.0 6.0 79 140 r 0.944 1 3 cbr 500 ------- 1 1.0 6.0 87 154 + 0.944 3 4 cbr 500 ------- 1 1.0 6.0 87 154 - 0.944 3 4 cbr 500 ------- 1 1.0 6.0 87 154 r 0.946 3 4 cbr 1000 ------- 1 2.0 7.0 58 145 + 0.946 4 7 cbr 1000 ------- 1 2.0 7.0 58 145 - 0.946 4 7 cbr 1000 ------- 1 2.0 7.0 58 145 r 0.948 2 3 cbr 1000 ------- 1 2.0 7.0 61 155 + 0.948 3 4 cbr 1000 ------- 1 2.0 7.0 61 155 - 0.948 3 4 cbr 1000 ------- 1 2.0 7.0 61 155 v 0.94999999999999996 eval {set sim_annotation {Send Packet_3,4,5,6 : Increase window size to 4}} + 0.95 1 3 cbr 500 ------- 1 1.0 6.0 90 161 - 0.95 1 3 cbr 500 ------- 1 1.0 6.0 90 161 r 0.95 3 4 cbr 500 ------- 1 1.0 6.0 82 147 + 0.95 4 6 cbr 500 ------- 1 1.0 6.0 82 147 - 0.95 4 6 cbr 500 ------- 1 1.0 6.0 82 147 r 0.954 1 3 cbr 500 ------- 1 1.0 6.0 88 156 + 0.954 3 4 cbr 500 ------- 1 1.0 6.0 88 156 r 0.954 4 7 cbr 1000 ------- 1 2.0 7.0 57 141 r 0.954 4 6 cbr 500 ------- 1 1.0 6.0 80 143 r 0.954048 3 0 ack 40 ------- 0 5.0 0.0 2 146 + 0.954048 0 3 tcp 1000 ------- 0 0.0 5.0 5 162 - 0.954048 0 3 tcp 1000 ------- 0 0.0 5.0 5 162 + 0.954048 0 3 tcp 1000 ------- 0 0.0 5.0 6 163 - 0.955648 0 3 tcp 1000 ------- 0 0.0 5.0 6 163 - 0.956 3 4 cbr 500 ------- 1 1.0 6.0 88 156 r 0.958 3 4 cbr 500 ------- 1 1.0 6.0 83 148 + 0.958 4 6 cbr 500 ------- 1 1.0 6.0 83 148 - 0.958 4 6 cbr 500 ------- 1 1.0 6.0 83 148 r 0.959648 0 3 tcp 1000 ------- 0 0.0 5.0 3 157 + 0.959648 3 4 tcp 1000 ------- 0 0.0 5.0 3 157 + 0.96 1 3 cbr 500 ------- 1 1.0 6.0 91 164 - 0.96 1 3 cbr 500 ------- 1 1.0 6.0 91 164 + 0.96 2 3 cbr 1000 ------- 1 2.0 7.0 63 165 - 0.96 2 3 cbr 1000 ------- 1 2.0 7.0 63 165 - 0.96 3 4 tcp 1000 ------- 0 0.0 5.0 3 157 r 0.961248 0 3 tcp 1000 ------- 0 0.0 5.0 4 158 + 0.961248 3 4 tcp 1000 ------- 0 0.0 5.0 4 158 r 0.962 4 6 cbr 500 ------- 1 1.0 6.0 81 144 r 0.964 1 3 cbr 500 ------- 1 1.0 6.0 89 159 + 0.964 3 4 cbr 500 ------- 1 1.0 6.0 89 159 r 0.966 3 4 cbr 1000 ------- 1 2.0 7.0 59 149 + 0.966 4 7 cbr 1000 ------- 1 2.0 7.0 59 149 - 0.966 4 7 cbr 1000 ------- 1 2.0 7.0 59 149 r 0.968 2 3 cbr 1000 ------- 1 2.0 7.0 62 160 + 0.968 3 4 cbr 1000 ------- 1 2.0 7.0 62 160 - 0.968 3 4 tcp 1000 ------- 0 0.0 5.0 4 158 + 0.97 1 3 cbr 500 ------- 1 1.0 6.0 92 166 - 0.97 1 3 cbr 500 ------- 1 1.0 6.0 92 166 r 0.97 3 4 cbr 500 ------- 1 1.0 6.0 84 150 + 0.97 4 6 cbr 500 ------- 1 1.0 6.0 84 150 - 0.97 4 6 cbr 500 ------- 1 1.0 6.0 84 150 r 0.974 1 3 cbr 500 ------- 1 1.0 6.0 90 161 + 0.974 3 4 cbr 500 ------- 1 1.0 6.0 90 161 r 0.974 4 7 cbr 1000 ------- 1 2.0 7.0 58 145 r 0.974 4 6 cbr 500 ------- 1 1.0 6.0 82 147 r 0.975648 0 3 tcp 1000 ------- 0 0.0 5.0 5 162 + 0.975648 3 4 tcp 1000 ------- 0 0.0 5.0 5 162 - 0.976 3 4 cbr 500 ------- 1 1.0 6.0 89 159 r 0.977248 0 3 tcp 1000 ------- 0 0.0 5.0 6 163 + 0.977248 3 4 tcp 1000 ------- 0 0.0 5.0 6 163 r 0.978 3 4 cbr 500 ------- 1 1.0 6.0 85 151 + 0.978 4 6 cbr 500 ------- 1 1.0 6.0 85 151 - 0.978 4 6 cbr 500 ------- 1 1.0 6.0 85 151 + 0.98 1 3 cbr 500 ------- 1 1.0 6.0 93 167 - 0.98 1 3 cbr 500 ------- 1 1.0 6.0 93 167 + 0.98 2 3 cbr 1000 ------- 1 2.0 7.0 64 168 - 0.98 2 3 cbr 1000 ------- 1 2.0 7.0 64 168 - 0.98 3 4 cbr 1000 ------- 1 2.0 7.0 62 160 r 0.982 4 6 cbr 500 ------- 1 1.0 6.0 83 148 r 0.984 1 3 cbr 500 ------- 1 1.0 6.0 91 164 + 0.984 3 4 cbr 500 ------- 1 1.0 6.0 91 164 r 0.986 3 4 cbr 1000 ------- 1 2.0 7.0 60 152 + 0.986 4 7 cbr 1000 ------- 1 2.0 7.0 60 152 - 0.986 4 7 cbr 1000 ------- 1 2.0 7.0 60 152 r 0.988 2 3 cbr 1000 ------- 1 2.0 7.0 63 165 + 0.988 3 4 cbr 1000 ------- 1 2.0 7.0 63 165 - 0.988 3 4 cbr 500 ------- 1 1.0 6.0 90 161 + 0.99 1 3 cbr 500 ------- 1 1.0 6.0 94 169 - 0.99 1 3 cbr 500 ------- 1 1.0 6.0 94 169 r 0.99 3 4 cbr 500 ------- 1 1.0 6.0 86 153 + 0.99 4 6 cbr 500 ------- 1 1.0 6.0 86 153 - 0.99 4 6 cbr 500 ------- 1 1.0 6.0 86 153 - 0.992 3 4 tcp 1000 ------- 0 0.0 5.0 5 162 r 0.994 1 3 cbr 500 ------- 1 1.0 6.0 92 166 + 0.994 3 4 cbr 500 ------- 1 1.0 6.0 92 166 r 0.994 4 7 cbr 1000 ------- 1 2.0 7.0 59 149 r 0.994 4 6 cbr 500 ------- 1 1.0 6.0 84 150 r 0.998 3 4 cbr 500 ------- 1 1.0 6.0 87 154 + 0.998 4 6 cbr 500 ------- 1 1.0 6.0 87 154 - 0.998 4 6 cbr 500 ------- 1 1.0 6.0 87 154 + 1 2 3 cbr 1000 ------- 1 2.0 7.0 65 170 - 1 2 3 cbr 1000 ------- 1 2.0 7.0 65 170 + 1 1 3 cbr 500 ------- 1 1.0 6.0 95 171 - 1 1 3 cbr 500 ------- 1 1.0 6.0 95 171 - 1 3 4 tcp 1000 ------- 0 0.0 5.0 6 163 r 1.002 4 6 cbr 500 ------- 1 1.0 6.0 85 151 r 1.004 1 3 cbr 500 ------- 1 1.0 6.0 93 167 + 1.004 3 4 cbr 500 ------- 1 1.0 6.0 93 167 r 1.006 3 4 cbr 1000 ------- 1 2.0 7.0 61 155 + 1.006 4 7 cbr 1000 ------- 1 2.0 7.0 61 155 - 1.006 4 7 cbr 1000 ------- 1 2.0 7.0 61 155 r 1.008 2 3 cbr 1000 ------- 1 2.0 7.0 64 168 + 1.008 3 4 cbr 1000 ------- 1 2.0 7.0 64 168 - 1.008 3 4 cbr 500 ------- 1 1.0 6.0 91 164 r 1.01 3 4 cbr 500 ------- 1 1.0 6.0 88 156 + 1.01 4 6 cbr 500 ------- 1 1.0 6.0 88 156 - 1.01 4 6 cbr 500 ------- 1 1.0 6.0 88 156 + 1.01 1 3 cbr 500 ------- 1 1.0 6.0 96 172 - 1.01 1 3 cbr 500 ------- 1 1.0 6.0 96 172 - 1.012 3 4 cbr 1000 ------- 1 2.0 7.0 63 165 r 1.014 4 7 cbr 1000 ------- 1 2.0 7.0 60 152 r 1.014 1 3 cbr 500 ------- 1 1.0 6.0 94 169 + 1.014 3 4 cbr 500 ------- 1 1.0 6.0 94 169 r 1.014 4 6 cbr 500 ------- 1 1.0 6.0 86 153 r 1.018 3 4 tcp 1000 ------- 0 0.0 5.0 3 157 + 1.018 4 5 tcp 1000 ------- 0 0.0 5.0 3 157 - 1.018 4 5 tcp 1000 ------- 0 0.0 5.0 3 157 + 1.02 2 3 cbr 1000 ------- 1 2.0 7.0 66 173 - 1.02 2 3 cbr 1000 ------- 1 2.0 7.0 66 173 + 1.02 1 3 cbr 500 ------- 1 1.0 6.0 97 174 - 1.02 1 3 cbr 500 ------- 1 1.0 6.0 97 174 - 1.02 3 4 cbr 500 ------- 1 1.0 6.0 92 166 r 1.022 4 6 cbr 500 ------- 1 1.0 6.0 87 154 r 1.024 1 3 cbr 500 ------- 1 1.0 6.0 95 171 + 1.024 3 4 cbr 500 ------- 1 1.0 6.0 95 171 - 1.024 3 4 cbr 500 ------- 1 1.0 6.0 93 167 r 1.026 3 4 tcp 1000 ------- 0 0.0 5.0 4 158 + 1.026 4 5 tcp 1000 ------- 0 0.0 5.0 4 158 - 1.026 4 5 tcp 1000 ------- 0 0.0 5.0 4 158 r 1.028 2 3 cbr 1000 ------- 1 2.0 7.0 65 170 + 1.028 3 4 cbr 1000 ------- 1 2.0 7.0 65 170 - 1.028 3 4 cbr 1000 ------- 1 2.0 7.0 64 168 r 1.03 3 4 cbr 500 ------- 1 1.0 6.0 89 159 + 1.03 4 6 cbr 500 ------- 1 1.0 6.0 89 159 - 1.03 4 6 cbr 500 ------- 1 1.0 6.0 89 159 + 1.03 1 3 cbr 500 ------- 1 1.0 6.0 98 175 - 1.03 1 3 cbr 500 ------- 1 1.0 6.0 98 175 r 1.034 4 7 cbr 1000 ------- 1 2.0 7.0 61 155 r 1.034 4 6 cbr 500 ------- 1 1.0 6.0 88 156 r 1.034 1 3 cbr 500 ------- 1 1.0 6.0 96 172 + 1.034 3 4 cbr 500 ------- 1 1.0 6.0 96 172 - 1.036 3 4 cbr 500 ------- 1 1.0 6.0 94 169 r 1.038 3 4 cbr 1000 ------- 1 2.0 7.0 62 160 + 1.038 4 7 cbr 1000 ------- 1 2.0 7.0 62 160 - 1.038 4 7 cbr 1000 ------- 1 2.0 7.0 62 160 r 1.0396 4 5 tcp 1000 ------- 0 0.0 5.0 3 157 + 1.0396 5 4 ack 40 ------- 0 5.0 0.0 3 176 - 1.0396 5 4 ack 40 ------- 0 5.0 0.0 3 176 + 1.04 2 3 cbr 1000 ------- 1 2.0 7.0 67 177 - 1.04 2 3 cbr 1000 ------- 1 2.0 7.0 67 177 + 1.04 1 3 cbr 500 ------- 1 1.0 6.0 99 178 - 1.04 1 3 cbr 500 ------- 1 1.0 6.0 99 178 - 1.04 3 4 cbr 500 ------- 1 1.0 6.0 95 171 r 1.042 3 4 cbr 500 ------- 1 1.0 6.0 90 161 + 1.042 4 6 cbr 500 ------- 1 1.0 6.0 90 161 - 1.042 4 6 cbr 500 ------- 1 1.0 6.0 90 161 r 1.044 1 3 cbr 500 ------- 1 1.0 6.0 97 174 + 1.044 3 4 cbr 500 ------- 1 1.0 6.0 97 174 - 1.044 3 4 cbr 1000 ------- 1 2.0 7.0 65 170 r 1.0476 4 5 tcp 1000 ------- 0 0.0 5.0 4 158 + 1.0476 5 4 ack 40 ------- 0 5.0 0.0 4 179 - 1.0476 5 4 ack 40 ------- 0 5.0 0.0 4 179 r 1.048 2 3 cbr 1000 ------- 1 2.0 7.0 66 173 + 1.048 3 4 cbr 1000 ------- 1 2.0 7.0 66 173 v 1.05 eval {set sim_annotation {Ack_3,4,5,6}} r 1.05 3 4 tcp 1000 ------- 0 0.0 5.0 5 162 + 1.05 4 5 tcp 1000 ------- 0 0.0 5.0 5 162 - 1.05 4 5 tcp 1000 ------- 0 0.0 5.0 5 162 + 1.05 1 3 cbr 500 ------- 1 1.0 6.0 100 180 - 1.05 1 3 cbr 500 ------- 1 1.0 6.0 100 180 - 1.052 3 4 cbr 500 ------- 1 1.0 6.0 96 172 r 1.054 4 6 cbr 500 ------- 1 1.0 6.0 89 159 r 1.054 1 3 cbr 500 ------- 1 1.0 6.0 98 175 + 1.054 3 4 cbr 500 ------- 1 1.0 6.0 98 175 - 1.056 3 4 cbr 500 ------- 1 1.0 6.0 97 174 r 1.058 3 4 tcp 1000 ------- 0 0.0 5.0 6 163 + 1.058 4 5 tcp 1000 ------- 0 0.0 5.0 6 163 - 1.058 4 5 tcp 1000 ------- 0 0.0 5.0 6 163 r 1.05966 5 4 ack 40 ------- 0 5.0 0.0 3 176 + 1.05966 4 3 ack 40 ------- 0 5.0 0.0 3 176 - 1.05966 4 3 ack 40 ------- 0 5.0 0.0 3 176 + 1.06 2 3 cbr 1000 ------- 1 2.0 7.0 68 181 - 1.06 2 3 cbr 1000 ------- 1 2.0 7.0 68 181 + 1.06 1 3 cbr 500 ------- 1 1.0 6.0 101 182 - 1.06 1 3 cbr 500 ------- 1 1.0 6.0 101 182 - 1.06 3 4 cbr 1000 ------- 1 2.0 7.0 66 173 r 1.062 3 4 cbr 500 ------- 1 1.0 6.0 91 164 + 1.062 4 6 cbr 500 ------- 1 1.0 6.0 91 164 - 1.062 4 6 cbr 500 ------- 1 1.0 6.0 91 164 r 1.064 1 3 cbr 500 ------- 1 1.0 6.0 99 178 + 1.064 3 4 cbr 500 ------- 1 1.0 6.0 99 178 r 1.066 4 7 cbr 1000 ------- 1 2.0 7.0 62 160 r 1.066 4 6 cbr 500 ------- 1 1.0 6.0 90 161 r 1.06766 5 4 ack 40 ------- 0 5.0 0.0 4 179 + 1.06766 4 3 ack 40 ------- 0 5.0 0.0 4 179 - 1.06766 4 3 ack 40 ------- 0 5.0 0.0 4 179 r 1.068 2 3 cbr 1000 ------- 1 2.0 7.0 67 177 + 1.068 3 4 cbr 1000 ------- 1 2.0 7.0 67 177 - 1.068 3 4 cbr 500 ------- 1 1.0 6.0 98 175 r 1.07 3 4 cbr 1000 ------- 1 2.0 7.0 63 165 + 1.07 4 7 cbr 1000 ------- 1 2.0 7.0 63 165 - 1.07 4 7 cbr 1000 ------- 1 2.0 7.0 63 165 + 1.07 1 3 cbr 500 ------- 1 1.0 6.0 102 183 - 1.07 1 3 cbr 500 ------- 1 1.0 6.0 102 183 r 1.0716 4 5 tcp 1000 ------- 0 0.0 5.0 5 162 + 1.0716 5 4 ack 40 ------- 0 5.0 0.0 5 184 - 1.0716 5 4 ack 40 ------- 0 5.0 0.0 5 184 - 1.072 3 4 cbr 500 ------- 1 1.0 6.0 99 178 r 1.074 3 4 cbr 500 ------- 1 1.0 6.0 92 166 + 1.074 4 6 cbr 500 ------- 1 1.0 6.0 92 166 - 1.074 4 6 cbr 500 ------- 1 1.0 6.0 92 166 r 1.074 1 3 cbr 500 ------- 1 1.0 6.0 100 180 + 1.074 3 4 cbr 500 ------- 1 1.0 6.0 100 180 - 1.076 3 4 cbr 1000 ------- 1 2.0 7.0 67 177 r 1.078 3 4 cbr 500 ------- 1 1.0 6.0 93 167 + 1.078 4 6 cbr 500 ------- 1 1.0 6.0 93 167 - 1.078 4 6 cbr 500 ------- 1 1.0 6.0 93 167 r 1.0796 4 5 tcp 1000 ------- 0 0.0 5.0 6 163 + 1.0796 5 4 ack 40 ------- 0 5.0 0.0 6 185 - 1.0796 5 4 ack 40 ------- 0 5.0 0.0 6 185 + 1.08 2 3 cbr 1000 ------- 1 2.0 7.0 69 186 - 1.08 2 3 cbr 1000 ------- 1 2.0 7.0 69 186 + 1.08 1 3 cbr 500 ------- 1 1.0 6.0 103 187 - 1.08 1 3 cbr 500 ------- 1 1.0 6.0 103 187 r 1.084 1 3 cbr 500 ------- 1 1.0 6.0 101 182 + 1.084 3 4 cbr 500 ------- 1 1.0 6.0 101 182 - 1.084 3 4 cbr 500 ------- 1 1.0 6.0 100 180 r 1.086 3 4 cbr 1000 ------- 1 2.0 7.0 64 168 + 1.086 4 7 cbr 1000 ------- 1 2.0 7.0 64 168 - 1.086 4 7 cbr 1000 ------- 1 2.0 7.0 64 168 r 1.086 4 6 cbr 500 ------- 1 1.0 6.0 91 164 r 1.088 2 3 cbr 1000 ------- 1 2.0 7.0 68 181 + 1.088 3 4 cbr 1000 ------- 1 2.0 7.0 68 181 - 1.088 3 4 cbr 500 ------- 1 1.0 6.0 101 182 r 1.09 3 4 cbr 500 ------- 1 1.0 6.0 94 169 + 1.09 4 6 cbr 500 ------- 1 1.0 6.0 94 169 - 1.09 4 6 cbr 500 ------- 1 1.0 6.0 94 169 + 1.09 1 3 cbr 500 ------- 1 1.0 6.0 104 188 - 1.09 1 3 cbr 500 ------- 1 1.0 6.0 104 188 r 1.09166 5 4 ack 40 ------- 0 5.0 0.0 5 184 + 1.09166 4 3 ack 40 ------- 0 5.0 0.0 5 184 - 1.09166 4 3 ack 40 ------- 0 5.0 0.0 5 184 - 1.092 3 4 cbr 1000 ------- 1 2.0 7.0 68 181 r 1.094 3 4 cbr 500 ------- 1 1.0 6.0 95 171 + 1.094 4 6 cbr 500 ------- 1 1.0 6.0 95 171 r 1.094 1 3 cbr 500 ------- 1 1.0 6.0 102 183 + 1.094 3 4 cbr 500 ------- 1 1.0 6.0 102 183 - 1.094 4 6 cbr 500 ------- 1 1.0 6.0 95 171 r 1.098 4 7 cbr 1000 ------- 1 2.0 7.0 63 165 r 1.098 4 6 cbr 500 ------- 1 1.0 6.0 92 166 r 1.09966 5 4 ack 40 ------- 0 5.0 0.0 6 185 + 1.09966 4 3 ack 40 ------- 0 5.0 0.0 6 185 - 1.09966 4 3 ack 40 ------- 0 5.0 0.0 6 185 + 1.1 2 3 cbr 1000 ------- 1 2.0 7.0 70 189 - 1.1 2 3 cbr 1000 ------- 1 2.0 7.0 70 189 + 1.1 1 3 cbr 500 ------- 1 1.0 6.0 105 190 - 1.1 1 3 cbr 500 ------- 1 1.0 6.0 105 190 - 1.1 3 4 cbr 500 ------- 1 1.0 6.0 102 183 r 1.102 3 4 cbr 1000 ------- 1 2.0 7.0 65 170 + 1.102 4 7 cbr 1000 ------- 1 2.0 7.0 65 170 - 1.102 4 7 cbr 1000 ------- 1 2.0 7.0 65 170 r 1.102 4 6 cbr 500 ------- 1 1.0 6.0 93 167 r 1.104 1 3 cbr 500 ------- 1 1.0 6.0 103 187 + 1.104 3 4 cbr 500 ------- 1 1.0 6.0 103 187 - 1.104 3 4 cbr 500 ------- 1 1.0 6.0 103 187 r 1.106 3 4 cbr 500 ------- 1 1.0 6.0 96 172 + 1.106 4 6 cbr 500 ------- 1 1.0 6.0 96 172 - 1.106 4 6 cbr 500 ------- 1 1.0 6.0 96 172 r 1.108 2 3 cbr 1000 ------- 1 2.0 7.0 69 186 + 1.108 3 4 cbr 1000 ------- 1 2.0 7.0 69 186 - 1.108 3 4 cbr 1000 ------- 1 2.0 7.0 69 186 r 1.10998 4 3 ack 40 ------- 0 5.0 0.0 3 176 + 1.10998 3 0 ack 40 ------- 0 5.0 0.0 3 176 - 1.10998 3 0 ack 40 ------- 0 5.0 0.0 3 176 r 1.11 3 4 cbr 500 ------- 1 1.0 6.0 97 174 + 1.11 4 6 cbr 500 ------- 1 1.0 6.0 97 174 + 1.11 1 3 cbr 500 ------- 1 1.0 6.0 106 191 - 1.11 1 3 cbr 500 ------- 1 1.0 6.0 106 191 - 1.11 4 6 cbr 500 ------- 1 1.0 6.0 97 174 r 1.114 4 7 cbr 1000 ------- 1 2.0 7.0 64 168 r 1.114 4 6 cbr 500 ------- 1 1.0 6.0 94 169 r 1.114 1 3 cbr 500 ------- 1 1.0 6.0 104 188 + 1.114 3 4 cbr 500 ------- 1 1.0 6.0 104 188 - 1.116 3 4 cbr 500 ------- 1 1.0 6.0 104 188 r 1.11798 4 3 ack 40 ------- 0 5.0 0.0 4 179 + 1.11798 3 0 ack 40 ------- 0 5.0 0.0 4 179 - 1.11798 3 0 ack 40 ------- 0 5.0 0.0 4 179 r 1.118 3 4 cbr 1000 ------- 1 2.0 7.0 66 173 + 1.118 4 7 cbr 1000 ------- 1 2.0 7.0 66 173 - 1.118 4 7 cbr 1000 ------- 1 2.0 7.0 66 173 r 1.118 4 6 cbr 500 ------- 1 1.0 6.0 95 171 + 1.12 2 3 cbr 1000 ------- 1 2.0 7.0 71 192 - 1.12 2 3 cbr 1000 ------- 1 2.0 7.0 71 192 + 1.12 1 3 cbr 500 ------- 1 1.0 6.0 107 193 - 1.12 1 3 cbr 500 ------- 1 1.0 6.0 107 193 r 1.122 3 4 cbr 500 ------- 1 1.0 6.0 98 175 + 1.122 4 6 cbr 500 ------- 1 1.0 6.0 98 175 - 1.122 4 6 cbr 500 ------- 1 1.0 6.0 98 175 r 1.124 1 3 cbr 500 ------- 1 1.0 6.0 105 190 + 1.124 3 4 cbr 500 ------- 1 1.0 6.0 105 190 - 1.124 3 4 cbr 500 ------- 1 1.0 6.0 105 190 r 1.126 3 4 cbr 500 ------- 1 1.0 6.0 99 178 + 1.126 4 6 cbr 500 ------- 1 1.0 6.0 99 178 - 1.126 4 6 cbr 500 ------- 1 1.0 6.0 99 178 r 1.128 2 3 cbr 1000 ------- 1 2.0 7.0 70 189 + 1.128 3 4 cbr 1000 ------- 1 2.0 7.0 70 189 - 1.128 3 4 cbr 1000 ------- 1 2.0 7.0 70 189 v 1.1299999999999999 eval {set sim_annotation {Send Packet_7 to 14 : Increase window size to 8}} r 1.13 4 7 cbr 1000 ------- 1 2.0 7.0 65 170 r 1.13 4 6 cbr 500 ------- 1 1.0 6.0 96 172 + 1.13 1 3 cbr 500 ------- 1 1.0 6.0 108 194 - 1.13 1 3 cbr 500 ------- 1 1.0 6.0 108 194 r 1.13005 3 0 ack 40 ------- 0 5.0 0.0 3 176 + 1.13005 0 3 tcp 1000 ------- 0 0.0 5.0 7 195 - 1.13005 0 3 tcp 1000 ------- 0 0.0 5.0 7 195 + 1.13005 0 3 tcp 1000 ------- 0 0.0 5.0 8 196 - 1.13165 0 3 tcp 1000 ------- 0 0.0 5.0 8 196 r 1.134 3 4 cbr 1000 ------- 1 2.0 7.0 67 177 + 1.134 4 7 cbr 1000 ------- 1 2.0 7.0 67 177 - 1.134 4 7 cbr 1000 ------- 1 2.0 7.0 67 177 r 1.134 1 3 cbr 500 ------- 1 1.0 6.0 106 191 + 1.134 3 4 cbr 500 ------- 1 1.0 6.0 106 191 r 1.134 4 6 cbr 500 ------- 1 1.0 6.0 97 174 - 1.136 3 4 cbr 500 ------- 1 1.0 6.0 106 191 r 1.138 3 4 cbr 500 ------- 1 1.0 6.0 100 180 + 1.138 4 6 cbr 500 ------- 1 1.0 6.0 100 180 - 1.138 4 6 cbr 500 ------- 1 1.0 6.0 100 180 r 1.13805 3 0 ack 40 ------- 0 5.0 0.0 4 179 + 1.13805 0 3 tcp 1000 ------- 0 0.0 5.0 9 197 - 1.13805 0 3 tcp 1000 ------- 0 0.0 5.0 9 197 + 1.13805 0 3 tcp 1000 ------- 0 0.0 5.0 10 198 - 1.13965 0 3 tcp 1000 ------- 0 0.0 5.0 10 198 + 1.14 2 3 cbr 1000 ------- 1 2.0 7.0 72 199 - 1.14 2 3 cbr 1000 ------- 1 2.0 7.0 72 199 + 1.14 1 3 cbr 500 ------- 1 1.0 6.0 109 200 - 1.14 1 3 cbr 500 ------- 1 1.0 6.0 109 200 r 1.14198 4 3 ack 40 ------- 0 5.0 0.0 5 184 + 1.14198 3 0 ack 40 ------- 0 5.0 0.0 5 184 - 1.14198 3 0 ack 40 ------- 0 5.0 0.0 5 184 r 1.142 3 4 cbr 500 ------- 1 1.0 6.0 101 182 + 1.142 4 6 cbr 500 ------- 1 1.0 6.0 101 182 - 1.142 4 6 cbr 500 ------- 1 1.0 6.0 101 182 r 1.144 1 3 cbr 500 ------- 1 1.0 6.0 107 193 + 1.144 3 4 cbr 500 ------- 1 1.0 6.0 107 193 - 1.144 3 4 cbr 500 ------- 1 1.0 6.0 107 193 r 1.146 4 7 cbr 1000 ------- 1 2.0 7.0 66 173 r 1.146 4 6 cbr 500 ------- 1 1.0 6.0 98 175 r 1.148 2 3 cbr 1000 ------- 1 2.0 7.0 71 192 + 1.148 3 4 cbr 1000 ------- 1 2.0 7.0 71 192 - 1.148 3 4 cbr 1000 ------- 1 2.0 7.0 71 192 r 1.14998 4 3 ack 40 ------- 0 5.0 0.0 6 185 + 1.14998 3 0 ack 40 ------- 0 5.0 0.0 6 185 - 1.14998 3 0 ack 40 ------- 0 5.0 0.0 6 185 r 1.15 3 4 cbr 1000 ------- 1 2.0 7.0 68 181 + 1.15 4 7 cbr 1000 ------- 1 2.0 7.0 68 181 - 1.15 4 7 cbr 1000 ------- 1 2.0 7.0 68 181 r 1.15 4 6 cbr 500 ------- 1 1.0 6.0 99 178 + 1.15 1 3 cbr 500 ------- 1 1.0 6.0 110 201 - 1.15 1 3 cbr 500 ------- 1 1.0 6.0 110 201 r 1.15165 0 3 tcp 1000 ------- 0 0.0 5.0 7 195 + 1.15165 3 4 tcp 1000 ------- 0 0.0 5.0 7 195 r 1.15325 0 3 tcp 1000 ------- 0 0.0 5.0 8 196 + 1.15325 3 4 tcp 1000 ------- 0 0.0 5.0 8 196 r 1.154 3 4 cbr 500 ------- 1 1.0 6.0 102 183 + 1.154 4 6 cbr 500 ------- 1 1.0 6.0 102 183 - 1.154 4 6 cbr 500 ------- 1 1.0 6.0 102 183 r 1.154 1 3 cbr 500 ------- 1 1.0 6.0 108 194 + 1.154 3 4 cbr 500 ------- 1 1.0 6.0 108 194 - 1.156 3 4 tcp 1000 ------- 0 0.0 5.0 7 195 r 1.158 3 4 cbr 500 ------- 1 1.0 6.0 103 187 + 1.158 4 6 cbr 500 ------- 1 1.0 6.0 103 187 - 1.158 4 6 cbr 500 ------- 1 1.0 6.0 103 187 r 1.15965 0 3 tcp 1000 ------- 0 0.0 5.0 9 197 + 1.15965 3 4 tcp 1000 ------- 0 0.0 5.0 9 197 + 1.16 2 3 cbr 1000 ------- 1 2.0 7.0 73 202 - 1.16 2 3 cbr 1000 ------- 1 2.0 7.0 73 202 + 1.16 1 3 cbr 500 ------- 1 1.0 6.0 111 203 - 1.16 1 3 cbr 500 ------- 1 1.0 6.0 111 203 r 1.16125 0 3 tcp 1000 ------- 0 0.0 5.0 10 198 + 1.16125 3 4 tcp 1000 ------- 0 0.0 5.0 10 198 r 1.162 4 7 cbr 1000 ------- 1 2.0 7.0 67 177 r 1.162 4 6 cbr 500 ------- 1 1.0 6.0 100 180 r 1.16205 3 0 ack 40 ------- 0 5.0 0.0 5 184 + 1.16205 0 3 tcp 1000 ------- 0 0.0 5.0 11 204 - 1.16205 0 3 tcp 1000 ------- 0 0.0 5.0 11 204 + 1.16205 0 3 tcp 1000 ------- 0 0.0 5.0 12 205 - 1.16365 0 3 tcp 1000 ------- 0 0.0 5.0 12 205 r 1.164 1 3 cbr 500 ------- 1 1.0 6.0 109 200 + 1.164 3 4 cbr 500 ------- 1 1.0 6.0 109 200 - 1.164 3 4 tcp 1000 ------- 0 0.0 5.0 8 196 r 1.166 3 4 cbr 1000 ------- 1 2.0 7.0 69 186 + 1.166 4 7 cbr 1000 ------- 1 2.0 7.0 69 186 - 1.166 4 7 cbr 1000 ------- 1 2.0 7.0 69 186 r 1.166 4 6 cbr 500 ------- 1 1.0 6.0 101 182 r 1.168 2 3 cbr 1000 ------- 1 2.0 7.0 72 199 + 1.168 3 4 cbr 1000 ------- 1 2.0 7.0 72 199 r 1.17 3 4 cbr 500 ------- 1 1.0 6.0 104 188 + 1.17 4 6 cbr 500 ------- 1 1.0 6.0 104 188 - 1.17 4 6 cbr 500 ------- 1 1.0 6.0 104 188 + 1.17 1 3 cbr 500 ------- 1 1.0 6.0 112 206 - 1.17 1 3 cbr 500 ------- 1 1.0 6.0 112 206 r 1.17005 3 0 ack 40 ------- 0 5.0 0.0 6 185 + 1.17005 0 3 tcp 1000 ------- 0 0.0 5.0 13 207 - 1.17005 0 3 tcp 1000 ------- 0 0.0 5.0 13 207 + 1.17005 0 3 tcp 1000 ------- 0 0.0 5.0 14 208 - 1.17165 0 3 tcp 1000 ------- 0 0.0 5.0 14 208 - 1.172 3 4 cbr 500 ------- 1 1.0 6.0 108 194 r 1.174 1 3 cbr 500 ------- 1 1.0 6.0 110 201 + 1.174 3 4 cbr 500 ------- 1 1.0 6.0 110 201 - 1.176 3 4 tcp 1000 ------- 0 0.0 5.0 9 197 r 1.178 3 4 cbr 500 ------- 1 1.0 6.0 105 190 + 1.178 4 6 cbr 500 ------- 1 1.0 6.0 105 190 - 1.178 4 6 cbr 500 ------- 1 1.0 6.0 105 190 r 1.178 4 7 cbr 1000 ------- 1 2.0 7.0 68 181 r 1.178 4 6 cbr 500 ------- 1 1.0 6.0 102 183 + 1.18 2 3 cbr 1000 ------- 1 2.0 7.0 74 209 - 1.18 2 3 cbr 1000 ------- 1 2.0 7.0 74 209 + 1.18 1 3 cbr 500 ------- 1 1.0 6.0 113 210 - 1.18 1 3 cbr 500 ------- 1 1.0 6.0 113 210 r 1.182 4 6 cbr 500 ------- 1 1.0 6.0 103 187 r 1.18365 0 3 tcp 1000 ------- 0 0.0 5.0 11 204 + 1.18365 3 4 tcp 1000 ------- 0 0.0 5.0 11 204 r 1.184 1 3 cbr 500 ------- 1 1.0 6.0 111 203 + 1.184 3 4 cbr 500 ------- 1 1.0 6.0 111 203 - 1.184 3 4 tcp 1000 ------- 0 0.0 5.0 10 198 r 1.18525 0 3 tcp 1000 ------- 0 0.0 5.0 12 205 + 1.18525 3 4 tcp 1000 ------- 0 0.0 5.0 12 205 r 1.186 3 4 cbr 1000 ------- 1 2.0 7.0 70 189 + 1.186 4 7 cbr 1000 ------- 1 2.0 7.0 70 189 - 1.186 4 7 cbr 1000 ------- 1 2.0 7.0 70 189 r 1.188 2 3 cbr 1000 ------- 1 2.0 7.0 73 202 + 1.188 3 4 cbr 1000 ------- 1 2.0 7.0 73 202 r 1.19 3 4 cbr 500 ------- 1 1.0 6.0 106 191 + 1.19 4 6 cbr 500 ------- 1 1.0 6.0 106 191 - 1.19 4 6 cbr 500 ------- 1 1.0 6.0 106 191 + 1.19 1 3 cbr 500 ------- 1 1.0 6.0 114 211 - 1.19 1 3 cbr 500 ------- 1 1.0 6.0 114 211 r 1.19165 0 3 tcp 1000 ------- 0 0.0 5.0 13 207 + 1.19165 3 4 tcp 1000 ------- 0 0.0 5.0 13 207 - 1.192 3 4 cbr 500 ------- 1 1.0 6.0 109 200 r 1.19325 0 3 tcp 1000 ------- 0 0.0 5.0 14 208 + 1.19325 3 4 tcp 1000 ------- 0 0.0 5.0 14 208 r 1.194 4 7 cbr 1000 ------- 1 2.0 7.0 69 186 r 1.194 4 6 cbr 500 ------- 1 1.0 6.0 104 188 r 1.194 1 3 cbr 500 ------- 1 1.0 6.0 112 206 + 1.194 3 4 cbr 500 ------- 1 1.0 6.0 112 206 - 1.196 3 4 cbr 1000 ------- 1 2.0 7.0 72 199 r 1.198 3 4 cbr 500 ------- 1 1.0 6.0 107 193 + 1.198 4 6 cbr 500 ------- 1 1.0 6.0 107 193 - 1.198 4 6 cbr 500 ------- 1 1.0 6.0 107 193 + 1.2 2 3 cbr 1000 ------- 1 2.0 7.0 75 212 - 1.2 2 3 cbr 1000 ------- 1 2.0 7.0 75 212 + 1.2 1 3 cbr 500 ------- 1 1.0 6.0 115 213 - 1.2 1 3 cbr 500 ------- 1 1.0 6.0 115 213 r 1.202 4 6 cbr 500 ------- 1 1.0 6.0 105 190 r 1.204 1 3 cbr 500 ------- 1 1.0 6.0 113 210 + 1.204 3 4 cbr 500 ------- 1 1.0 6.0 113 210 - 1.204 3 4 cbr 500 ------- 1 1.0 6.0 110 201 r 1.206 3 4 cbr 1000 ------- 1 2.0 7.0 71 192 + 1.206 4 7 cbr 1000 ------- 1 2.0 7.0 71 192 - 1.206 4 7 cbr 1000 ------- 1 2.0 7.0 71 192 r 1.208 2 3 cbr 1000 ------- 1 2.0 7.0 74 209 + 1.208 3 4 cbr 1000 ------- 1 2.0 7.0 74 209 - 1.208 3 4 tcp 1000 ------- 0 0.0 5.0 11 204 + 1.21 1 3 cbr 500 ------- 1 1.0 6.0 116 214 - 1.21 1 3 cbr 500 ------- 1 1.0 6.0 116 214 r 1.214 3 4 tcp 1000 ------- 0 0.0 5.0 7 195 + 1.214 4 5 tcp 1000 ------- 0 0.0 5.0 7 195 - 1.214 4 5 tcp 1000 ------- 0 0.0 5.0 7 195 r 1.214 4 7 cbr 1000 ------- 1 2.0 7.0 70 189 r 1.214 4 6 cbr 500 ------- 1 1.0 6.0 106 191 r 1.214 1 3 cbr 500 ------- 1 1.0 6.0 114 211 + 1.214 3 4 cbr 500 ------- 1 1.0 6.0 114 211 - 1.216 3 4 cbr 500 ------- 1 1.0 6.0 111 203 + 1.22 2 3 cbr 1000 ------- 1 2.0 7.0 76 215 - 1.22 2 3 cbr 1000 ------- 1 2.0 7.0 76 215 + 1.22 1 3 cbr 500 ------- 1 1.0 6.0 117 216 - 1.22 1 3 cbr 500 ------- 1 1.0 6.0 117 216 - 1.22 3 4 tcp 1000 ------- 0 0.0 5.0 12 205 r 1.222 3 4 tcp 1000 ------- 0 0.0 5.0 8 196 + 1.222 4 5 tcp 1000 ------- 0 0.0 5.0 8 196 - 1.222 4 5 tcp 1000 ------- 0 0.0 5.0 8 196 r 1.222 4 6 cbr 500 ------- 1 1.0 6.0 107 193 r 1.224 1 3 cbr 500 ------- 1 1.0 6.0 115 213 + 1.224 3 4 cbr 500 ------- 1 1.0 6.0 115 213 r 1.226 3 4 cbr 500 ------- 1 1.0 6.0 108 194 + 1.226 4 6 cbr 500 ------- 1 1.0 6.0 108 194 - 1.226 4 6 cbr 500 ------- 1 1.0 6.0 108 194 r 1.228 2 3 cbr 1000 ------- 1 2.0 7.0 75 212 + 1.228 3 4 cbr 1000 ------- 1 2.0 7.0 75 212 - 1.228 3 4 cbr 1000 ------- 1 2.0 7.0 73 202 + 1.23 1 3 cbr 500 ------- 1 1.0 6.0 118 217 - 1.23 1 3 cbr 500 ------- 1 1.0 6.0 118 217 r 1.234 3 4 tcp 1000 ------- 0 0.0 5.0 9 197 + 1.234 4 5 tcp 1000 ------- 0 0.0 5.0 9 197 - 1.234 4 5 tcp 1000 ------- 0 0.0 5.0 9 197 r 1.234 4 7 cbr 1000 ------- 1 2.0 7.0 71 192 r 1.234 1 3 cbr 500 ------- 1 1.0 6.0 116 214 + 1.234 3 4 cbr 500 ------- 1 1.0 6.0 116 214 r 1.2356 4 5 tcp 1000 ------- 0 0.0 5.0 7 195 + 1.2356 5 4 ack 40 ------- 0 5.0 0.0 7 218 - 1.2356 5 4 ack 40 ------- 0 5.0 0.0 7 218 - 1.236 3 4 tcp 1000 ------- 0 0.0 5.0 13 207 v 1.24 eval {set sim_annotation {Ack_7 to 14 }} + 1.24 2 3 cbr 1000 ------- 1 2.0 7.0 77 219 - 1.24 2 3 cbr 1000 ------- 1 2.0 7.0 77 219 + 1.24 1 3 cbr 500 ------- 1 1.0 6.0 119 220 - 1.24 1 3 cbr 500 ------- 1 1.0 6.0 119 220 r 1.242 3 4 tcp 1000 ------- 0 0.0 5.0 10 198 + 1.242 4 5 tcp 1000 ------- 0 0.0 5.0 10 198 - 1.242 4 5 tcp 1000 ------- 0 0.0 5.0 10 198 r 1.2436 4 5 tcp 1000 ------- 0 0.0 5.0 8 196 + 1.2436 5 4 ack 40 ------- 0 5.0 0.0 8 221 - 1.2436 5 4 ack 40 ------- 0 5.0 0.0 8 221 r 1.244 1 3 cbr 500 ------- 1 1.0 6.0 117 216 + 1.244 3 4 cbr 500 ------- 1 1.0 6.0 117 216 - 1.244 3 4 tcp 1000 ------- 0 0.0 5.0 14 208 r 1.246 3 4 cbr 500 ------- 1 1.0 6.0 109 200 + 1.246 4 6 cbr 500 ------- 1 1.0 6.0 109 200 - 1.246 4 6 cbr 500 ------- 1 1.0 6.0 109 200 r 1.248 2 3 cbr 1000 ------- 1 2.0 7.0 76 215 + 1.248 3 4 cbr 1000 ------- 1 2.0 7.0 76 215 r 1.25 4 6 cbr 500 ------- 1 1.0 6.0 108 194 + 1.25 1 3 cbr 500 ------- 1 1.0 6.0 120 222 - 1.25 1 3 cbr 500 ------- 1 1.0 6.0 120 222 - 1.252 3 4 cbr 500 ------- 1 1.0 6.0 112 206 r 1.254 3 4 cbr 1000 ------- 1 2.0 7.0 72 199 + 1.254 4 7 cbr 1000 ------- 1 2.0 7.0 72 199 - 1.254 4 7 cbr 1000 ------- 1 2.0 7.0 72 199 r 1.254 1 3 cbr 500 ------- 1 1.0 6.0 118 217 + 1.254 3 4 cbr 500 ------- 1 1.0 6.0 118 217 r 1.2556 4 5 tcp 1000 ------- 0 0.0 5.0 9 197 + 1.2556 5 4 ack 40 ------- 0 5.0 0.0 9 223 - 1.2556 5 4 ack 40 ------- 0 5.0 0.0 9 223 r 1.25566 5 4 ack 40 ------- 0 5.0 0.0 7 218 + 1.25566 4 3 ack 40 ------- 0 5.0 0.0 7 218 - 1.25566 4 3 ack 40 ------- 0 5.0 0.0 7 218 - 1.256 3 4 cbr 500 ------- 1 1.0 6.0 113 210 r 1.258 3 4 cbr 500 ------- 1 1.0 6.0 110 201 + 1.258 4 6 cbr 500 ------- 1 1.0 6.0 110 201 - 1.258 4 6 cbr 500 ------- 1 1.0 6.0 110 201 + 1.26 2 3 cbr 1000 ------- 1 2.0 7.0 78 224 - 1.26 2 3 cbr 1000 ------- 1 2.0 7.0 78 224 + 1.26 1 3 cbr 500 ------- 1 1.0 6.0 121 225 - 1.26 1 3 cbr 500 ------- 1 1.0 6.0 121 225 - 1.26 3 4 cbr 1000 ------- 1 2.0 7.0 74 209 r 1.2636 4 5 tcp 1000 ------- 0 0.0 5.0 10 198 + 1.2636 5 4 ack 40 ------- 0 5.0 0.0 10 226 - 1.2636 5 4 ack 40 ------- 0 5.0 0.0 10 226 r 1.26366 5 4 ack 40 ------- 0 5.0 0.0 8 221 + 1.26366 4 3 ack 40 ------- 0 5.0 0.0 8 221 - 1.26366 4 3 ack 40 ------- 0 5.0 0.0 8 221 r 1.264 1 3 cbr 500 ------- 1 1.0 6.0 119 220 + 1.264 3 4 cbr 500 ------- 1 1.0 6.0 119 220 r 1.266 3 4 tcp 1000 ------- 0 0.0 5.0 11 204 + 1.266 4 5 tcp 1000 ------- 0 0.0 5.0 11 204 - 1.266 4 5 tcp 1000 ------- 0 0.0 5.0 11 204 r 1.268 2 3 cbr 1000 ------- 1 2.0 7.0 77 219 + 1.268 3 4 cbr 1000 ------- 1 2.0 7.0 77 219 - 1.268 3 4 cbr 500 ------- 1 1.0 6.0 114 211 r 1.27 3 4 cbr 500 ------- 1 1.0 6.0 111 203 + 1.27 4 6 cbr 500 ------- 1 1.0 6.0 111 203 - 1.27 4 6 cbr 500 ------- 1 1.0 6.0 111 203 r 1.27 4 6 cbr 500 ------- 1 1.0 6.0 109 200 + 1.27 1 3 cbr 500 ------- 1 1.0 6.0 122 227 - 1.27 1 3 cbr 500 ------- 1 1.0 6.0 122 227 - 1.272 3 4 cbr 500 ------- 1 1.0 6.0 115 213 r 1.274 1 3 cbr 500 ------- 1 1.0 6.0 120 222 + 1.274 3 4 cbr 500 ------- 1 1.0 6.0 120 222 r 1.27566 5 4 ack 40 ------- 0 5.0 0.0 9 223 + 1.27566 4 3 ack 40 ------- 0 5.0 0.0 9 223 - 1.27566 4 3 ack 40 ------- 0 5.0 0.0 9 223 - 1.276 3 4 cbr 1000 ------- 1 2.0 7.0 75 212 r 1.278 3 4 tcp 1000 ------- 0 0.0 5.0 12 205 + 1.278 4 5 tcp 1000 ------- 0 0.0 5.0 12 205 - 1.278 4 5 tcp 1000 ------- 0 0.0 5.0 12 205 + 1.28 2 3 cbr 1000 ------- 1 2.0 7.0 79 228 - 1.28 2 3 cbr 1000 ------- 1 2.0 7.0 79 228 + 1.28 1 3 cbr 500 ------- 1 1.0 6.0 123 229 - 1.28 1 3 cbr 500 ------- 1 1.0 6.0 123 229 r 1.282 4 7 cbr 1000 ------- 1 2.0 7.0 72 199 r 1.282 4 6 cbr 500 ------- 1 1.0 6.0 110 201 r 1.28366 5 4 ack 40 ------- 0 5.0 0.0 10 226 + 1.28366 4 3 ack 40 ------- 0 5.0 0.0 10 226 - 1.28366 4 3 ack 40 ------- 0 5.0 0.0 10 226 r 1.284 1 3 cbr 500 ------- 1 1.0 6.0 121 225 + 1.284 3 4 cbr 500 ------- 1 1.0 6.0 121 225 - 1.284 3 4 cbr 500 ------- 1 1.0 6.0 116 214 r 1.286 3 4 cbr 1000 ------- 1 2.0 7.0 73 202 + 1.286 4 7 cbr 1000 ------- 1 2.0 7.0 73 202 - 1.286 4 7 cbr 1000 ------- 1 2.0 7.0 73 202 r 1.2876 4 5 tcp 1000 ------- 0 0.0 5.0 11 204 + 1.2876 5 4 ack 40 ------- 0 5.0 0.0 11 230 - 1.2876 5 4 ack 40 ------- 0 5.0 0.0 11 230 r 1.288 2 3 cbr 1000 ------- 1 2.0 7.0 78 224 + 1.288 3 4 cbr 1000 ------- 1 2.0 7.0 78 224 - 1.288 3 4 cbr 500 ------- 1 1.0 6.0 117 216 + 1.29 1 3 cbr 500 ------- 1 1.0 6.0 124 231 - 1.29 1 3 cbr 500 ------- 1 1.0 6.0 124 231 - 1.292 3 4 cbr 1000 ------- 1 2.0 7.0 76 215 r 1.294 3 4 tcp 1000 ------- 0 0.0 5.0 13 207 + 1.294 4 5 tcp 1000 ------- 0 0.0 5.0 13 207 - 1.294 4 5 tcp 1000 ------- 0 0.0 5.0 13 207 r 1.294 4 6 cbr 500 ------- 1 1.0 6.0 111 203 r 1.294 1 3 cbr 500 ------- 1 1.0 6.0 122 227 + 1.294 3 4 cbr 500 ------- 1 1.0 6.0 122 227 r 1.2996 4 5 tcp 1000 ------- 0 0.0 5.0 12 205 + 1.2996 5 4 ack 40 ------- 0 5.0 0.0 12 232 - 1.2996 5 4 ack 40 ------- 0 5.0 0.0 12 232 + 1.3 2 3 cbr 1000 ------- 1 2.0 7.0 80 233 - 1.3 2 3 cbr 1000 ------- 1 2.0 7.0 80 233 + 1.3 1 3 cbr 500 ------- 1 1.0 6.0 125 234 - 1.3 1 3 cbr 500 ------- 1 1.0 6.0 125 234 - 1.3 3 4 cbr 500 ------- 1 1.0 6.0 118 217 r 1.302 3 4 tcp 1000 ------- 0 0.0 5.0 14 208 + 1.302 4 5 tcp 1000 ------- 0 0.0 5.0 14 208 - 1.302 4 5 tcp 1000 ------- 0 0.0 5.0 14 208 r 1.304 1 3 cbr 500 ------- 1 1.0 6.0 123 229 + 1.304 3 4 cbr 500 ------- 1 1.0 6.0 123 229 - 1.304 3 4 cbr 500 ------- 1 1.0 6.0 119 220 r 1.30598 4 3 ack 40 ------- 0 5.0 0.0 7 218 + 1.30598 3 0 ack 40 ------- 0 5.0 0.0 7 218 - 1.30598 3 0 ack 40 ------- 0 5.0 0.0 7 218 r 1.306 3 4 cbr 500 ------- 1 1.0 6.0 112 206 + 1.306 4 6 cbr 500 ------- 1 1.0 6.0 112 206 - 1.306 4 6 cbr 500 ------- 1 1.0 6.0 112 206 r 1.30766 5 4 ack 40 ------- 0 5.0 0.0 11 230 + 1.30766 4 3 ack 40 ------- 0 5.0 0.0 11 230 - 1.30766 4 3 ack 40 ------- 0 5.0 0.0 11 230 r 1.308 2 3 cbr 1000 ------- 1 2.0 7.0 79 228 + 1.308 3 4 cbr 1000 ------- 1 2.0 7.0 79 228 - 1.308 3 4 cbr 1000 ------- 1 2.0 7.0 77 219 r 1.31 3 4 cbr 500 ------- 1 1.0 6.0 113 210 + 1.31 4 6 cbr 500 ------- 1 1.0 6.0 113 210 + 1.31 1 3 cbr 500 ------- 1 1.0 6.0 126 235 - 1.31 1 3 cbr 500 ------- 1 1.0 6.0 126 235 - 1.31 4 6 cbr 500 ------- 1 1.0 6.0 113 210 r 1.31398 4 3 ack 40 ------- 0 5.0 0.0 8 221 + 1.31398 3 0 ack 40 ------- 0 5.0 0.0 8 221 - 1.31398 3 0 ack 40 ------- 0 5.0 0.0 8 221 r 1.314 4 7 cbr 1000 ------- 1 2.0 7.0 73 202 r 1.314 1 3 cbr 500 ------- 1 1.0 6.0 124 231 + 1.314 3 4 cbr 500 ------- 1 1.0 6.0 124 231 r 1.3156 4 5 tcp 1000 ------- 0 0.0 5.0 13 207 + 1.3156 5 4 ack 40 ------- 0 5.0 0.0 13 236 - 1.3156 5 4 ack 40 ------- 0 5.0 0.0 13 236 - 1.316 3 4 cbr 500 ------- 1 1.0 6.0 120 222 r 1.318 3 4 cbr 1000 ------- 1 2.0 7.0 74 209 + 1.318 4 7 cbr 1000 ------- 1 2.0 7.0 74 209 - 1.318 4 7 cbr 1000 ------- 1 2.0 7.0 74 209 r 1.31966 5 4 ack 40 ------- 0 5.0 0.0 12 232 + 1.31966 4 3 ack 40 ------- 0 5.0 0.0 12 232 - 1.31966 4 3 ack 40 ------- 0 5.0 0.0 12 232 v 1.3200000000000001 eval {set sim_annotation {Send Packet_15 to 30 : Increase window size to 16}} + 1.32 2 3 cbr 1000 ------- 1 2.0 7.0 81 237 - 1.32 2 3 cbr 1000 ------- 1 2.0 7.0 81 237 + 1.32 1 3 cbr 500 ------- 1 1.0 6.0 127 238 - 1.32 1 3 cbr 500 ------- 1 1.0 6.0 127 238 - 1.32 3 4 cbr 500 ------- 1 1.0 6.0 121 225 r 1.322 3 4 cbr 500 ------- 1 1.0 6.0 114 211 + 1.322 4 6 cbr 500 ------- 1 1.0 6.0 114 211 - 1.322 4 6 cbr 500 ------- 1 1.0 6.0 114 211 r 1.3236 4 5 tcp 1000 ------- 0 0.0 5.0 14 208 + 1.3236 5 4 ack 40 ------- 0 5.0 0.0 14 239 - 1.3236 5 4 ack 40 ------- 0 5.0 0.0 14 239 r 1.324 1 3 cbr 500 ------- 1 1.0 6.0 125 234 + 1.324 3 4 cbr 500 ------- 1 1.0 6.0 125 234 - 1.324 3 4 cbr 1000 ------- 1 2.0 7.0 78 224 r 1.32598 4 3 ack 40 ------- 0 5.0 0.0 9 223 + 1.32598 3 0 ack 40 ------- 0 5.0 0.0 9 223 - 1.32598 3 0 ack 40 ------- 0 5.0 0.0 9 223 r 1.326 3 4 cbr 500 ------- 1 1.0 6.0 115 213 + 1.326 4 6 cbr 500 ------- 1 1.0 6.0 115 213 - 1.326 4 6 cbr 500 ------- 1 1.0 6.0 115 213 r 1.32605 3 0 ack 40 ------- 0 5.0 0.0 7 218 + 1.32605 0 3 tcp 1000 ------- 0 0.0 5.0 15 240 - 1.32605 0 3 tcp 1000 ------- 0 0.0 5.0 15 240 + 1.32605 0 3 tcp 1000 ------- 0 0.0 5.0 16 241 - 1.32765 0 3 tcp 1000 ------- 0 0.0 5.0 16 241 r 1.328 2 3 cbr 1000 ------- 1 2.0 7.0 80 233 + 1.328 3 4 cbr 1000 ------- 1 2.0 7.0 80 233 r 1.33 4 6 cbr 500 ------- 1 1.0 6.0 112 206 + 1.33 1 3 cbr 500 ------- 1 1.0 6.0 128 242 - 1.33 1 3 cbr 500 ------- 1 1.0 6.0 128 242 - 1.332 3 4 cbr 500 ------- 1 1.0 6.0 122 227 r 1.33398 4 3 ack 40 ------- 0 5.0 0.0 10 226 + 1.33398 3 0 ack 40 ------- 0 5.0 0.0 10 226 - 1.33398 3 0 ack 40 ------- 0 5.0 0.0 10 226 r 1.334 3 4 cbr 1000 ------- 1 2.0 7.0 75 212 + 1.334 4 7 cbr 1000 ------- 1 2.0 7.0 75 212 - 1.334 4 7 cbr 1000 ------- 1 2.0 7.0 75 212 r 1.334 1 3 cbr 500 ------- 1 1.0 6.0 126 235 + 1.334 3 4 cbr 500 ------- 1 1.0 6.0 126 235 r 1.334 4 6 cbr 500 ------- 1 1.0 6.0 113 210 r 1.33405 3 0 ack 40 ------- 0 5.0 0.0 8 221 + 1.33405 0 3 tcp 1000 ------- 0 0.0 5.0 17 243 - 1.33405 0 3 tcp 1000 ------- 0 0.0 5.0 17 243 + 1.33405 0 3 tcp 1000 ------- 0 0.0 5.0 18 244 - 1.33565 0 3 tcp 1000 ------- 0 0.0 5.0 18 244 r 1.33566 5 4 ack 40 ------- 0 5.0 0.0 13 236 + 1.33566 4 3 ack 40 ------- 0 5.0 0.0 13 236 - 1.33566 4 3 ack 40 ------- 0 5.0 0.0 13 236 - 1.336 3 4 cbr 500 ------- 1 1.0 6.0 123 229 r 1.338 3 4 cbr 500 ------- 1 1.0 6.0 116 214 + 1.338 4 6 cbr 500 ------- 1 1.0 6.0 116 214 - 1.338 4 6 cbr 500 ------- 1 1.0 6.0 116 214 + 1.34 2 3 cbr 1000 ------- 1 2.0 7.0 82 245 - 1.34 2 3 cbr 1000 ------- 1 2.0 7.0 82 245 + 1.34 1 3 cbr 500 ------- 1 1.0 6.0 129 246 - 1.34 1 3 cbr 500 ------- 1 1.0 6.0 129 246 - 1.34 3 4 cbr 1000 ------- 1 2.0 7.0 79 228 r 1.342 3 4 cbr 500 ------- 1 1.0 6.0 117 216 + 1.342 4 6 cbr 500 ------- 1 1.0 6.0 117 216 - 1.342 4 6 cbr 500 ------- 1 1.0 6.0 117 216 r 1.34366 5 4 ack 40 ------- 0 5.0 0.0 14 239 + 1.34366 4 3 ack 40 ------- 0 5.0 0.0 14 239 - 1.34366 4 3 ack 40 ------- 0 5.0 0.0 14 239 r 1.344 1 3 cbr 500 ------- 1 1.0 6.0 127 238 + 1.344 3 4 cbr 500 ------- 1 1.0 6.0 127 238 r 1.346 4 7 cbr 1000 ------- 1 2.0 7.0 74 209 r 1.346 4 6 cbr 500 ------- 1 1.0 6.0 114 211 r 1.34605 3 0 ack 40 ------- 0 5.0 0.0 9 223 + 1.34605 0 3 tcp 1000 ------- 0 0.0 5.0 19 247 - 1.34605 0 3 tcp 1000 ------- 0 0.0 5.0 19 247 + 1.34605 0 3 tcp 1000 ------- 0 0.0 5.0 20 248 r 1.34765 0 3 tcp 1000 ------- 0 0.0 5.0 15 240 + 1.34765 3 4 tcp 1000 ------- 0 0.0 5.0 15 240 - 1.34765 0 3 tcp 1000 ------- 0 0.0 5.0 20 248 r 1.348 2 3 cbr 1000 ------- 1 2.0 7.0 81 237 + 1.348 3 4 cbr 1000 ------- 1 2.0 7.0 81 237 - 1.348 3 4 cbr 500 ------- 1 1.0 6.0 124 231 r 1.34925 0 3 tcp 1000 ------- 0 0.0 5.0 16 241 + 1.34925 3 4 tcp 1000 ------- 0 0.0 5.0 16 241 r 1.35 3 4 cbr 1000 ------- 1 2.0 7.0 76 215 + 1.35 4 7 cbr 1000 ------- 1 2.0 7.0 76 215 - 1.35 4 7 cbr 1000 ------- 1 2.0 7.0 76 215 r 1.35 4 6 cbr 500 ------- 1 1.0 6.0 115 213 + 1.35 1 3 cbr 500 ------- 1 1.0 6.0 130 249 - 1.35 1 3 cbr 500 ------- 1 1.0 6.0 130 249 - 1.352 3 4 cbr 500 ------- 1 1.0 6.0 125 234 r 1.354 3 4 cbr 500 ------- 1 1.0 6.0 118 217 + 1.354 4 6 cbr 500 ------- 1 1.0 6.0 118 217 - 1.354 4 6 cbr 500 ------- 1 1.0 6.0 118 217 r 1.354 1 3 cbr 500 ------- 1 1.0 6.0 128 242 + 1.354 3 4 cbr 500 ------- 1 1.0 6.0 128 242 r 1.35405 3 0 ack 40 ------- 0 5.0 0.0 10 226 + 1.35405 0 3 tcp 1000 ------- 0 0.0 5.0 21 250 - 1.35405 0 3 tcp 1000 ------- 0 0.0 5.0 21 250 + 1.35405 0 3 tcp 1000 ------- 0 0.0 5.0 22 251 r 1.35565 0 3 tcp 1000 ------- 0 0.0 5.0 17 243 + 1.35565 3 4 tcp 1000 ------- 0 0.0 5.0 17 243 - 1.35565 0 3 tcp 1000 ------- 0 0.0 5.0 22 251 - 1.356 3 4 cbr 1000 ------- 1 2.0 7.0 80 233 r 1.35725 0 3 tcp 1000 ------- 0 0.0 5.0 18 244 + 1.35725 3 4 tcp 1000 ------- 0 0.0 5.0 18 244 r 1.35798 4 3 ack 40 ------- 0 5.0 0.0 11 230 + 1.35798 3 0 ack 40 ------- 0 5.0 0.0 11 230 - 1.35798 3 0 ack 40 ------- 0 5.0 0.0 11 230 r 1.358 3 4 cbr 500 ------- 1 1.0 6.0 119 220 + 1.358 4 6 cbr 500 ------- 1 1.0 6.0 119 220 - 1.358 4 6 cbr 500 ------- 1 1.0 6.0 119 220 + 1.36 2 3 cbr 1000 ------- 1 2.0 7.0 83 252 - 1.36 2 3 cbr 1000 ------- 1 2.0 7.0 83 252 + 1.36 1 3 cbr 500 ------- 1 1.0 6.0 131 253 - 1.36 1 3 cbr 500 ------- 1 1.0 6.0 131 253 r 1.362 4 7 cbr 1000 ------- 1 2.0 7.0 75 212 r 1.362 4 6 cbr 500 ------- 1 1.0 6.0 116 214 r 1.364 1 3 cbr 500 ------- 1 1.0 6.0 129 246 + 1.364 3 4 cbr 500 ------- 1 1.0 6.0 129 246 - 1.364 3 4 cbr 500 ------- 1 1.0 6.0 126 235 r 1.366 3 4 cbr 1000 ------- 1 2.0 7.0 77 219 + 1.366 4 7 cbr 1000 ------- 1 2.0 7.0 77 219 - 1.366 4 7 cbr 1000 ------- 1 2.0 7.0 77 219 r 1.366 4 6 cbr 500 ------- 1 1.0 6.0 117 216 r 1.36765 0 3 tcp 1000 ------- 0 0.0 5.0 19 247 + 1.36765 3 4 tcp 1000 ------- 0 0.0 5.0 19 247 r 1.368 2 3 cbr 1000 ------- 1 2.0 7.0 82 245 + 1.368 3 4 cbr 1000 ------- 1 2.0 7.0 82 245 d 1.368 3 4 cbr 1000 ------- 1 2.0 7.0 82 245 - 1.368 3 4 cbr 500 ------- 1 1.0 6.0 127 238 r 1.36925 0 3 tcp 1000 ------- 0 0.0 5.0 20 248 + 1.36925 3 4 tcp 1000 ------- 0 0.0 5.0 20 248 r 1.36998 4 3 ack 40 ------- 0 5.0 0.0 12 232 + 1.36998 3 0 ack 40 ------- 0 5.0 0.0 12 232 - 1.36998 3 0 ack 40 ------- 0 5.0 0.0 12 232 r 1.37 3 4 cbr 500 ------- 1 1.0 6.0 120 222 + 1.37 4 6 cbr 500 ------- 1 1.0 6.0 120 222 - 1.37 4 6 cbr 500 ------- 1 1.0 6.0 120 222 + 1.37 1 3 cbr 500 ------- 1 1.0 6.0 132 254 - 1.37 1 3 cbr 500 ------- 1 1.0 6.0 132 254 - 1.372 3 4 tcp 1000 ------- 0 0.0 5.0 15 240 r 1.374 3 4 cbr 500 ------- 1 1.0 6.0 121 225 + 1.374 4 6 cbr 500 ------- 1 1.0 6.0 121 225 r 1.374 1 3 cbr 500 ------- 1 1.0 6.0 130 249 + 1.374 3 4 cbr 500 ------- 1 1.0 6.0 130 249 - 1.374 4 6 cbr 500 ------- 1 1.0 6.0 121 225 r 1.37565 0 3 tcp 1000 ------- 0 0.0 5.0 21 250 + 1.37565 3 4 tcp 1000 ------- 0 0.0 5.0 21 250 d 1.37565 3 4 tcp 1000 ------- 0 0.0 5.0 21 250 r 1.37725 0 3 tcp 1000 ------- 0 0.0 5.0 22 251 + 1.37725 3 4 tcp 1000 ------- 0 0.0 5.0 22 251 d 1.37725 3 4 tcp 1000 ------- 0 0.0 5.0 22 251 r 1.378 4 7 cbr 1000 ------- 1 2.0 7.0 76 215 r 1.378 4 6 cbr 500 ------- 1 1.0 6.0 118 217 r 1.37805 3 0 ack 40 ------- 0 5.0 0.0 11 230 + 1.37805 0 3 tcp 1000 ------- 0 0.0 5.0 23 255 - 1.37805 0 3 tcp 1000 ------- 0 0.0 5.0 23 255 + 1.37805 0 3 tcp 1000 ------- 0 0.0 5.0 24 256 - 1.37965 0 3 tcp 1000 ------- 0 0.0 5.0 24 256 + 1.38 2 3 cbr 1000 ------- 1 2.0 7.0 84 257 - 1.38 2 3 cbr 1000 ------- 1 2.0 7.0 84 257 + 1.38 1 3 cbr 500 ------- 1 1.0 6.0 133 258 - 1.38 1 3 cbr 500 ------- 1 1.0 6.0 133 258 - 1.38 3 4 cbr 1000 ------- 1 2.0 7.0 81 237 r 1.382 3 4 cbr 1000 ------- 1 2.0 7.0 78 224 + 1.382 4 7 cbr 1000 ------- 1 2.0 7.0 78 224 - 1.382 4 7 cbr 1000 ------- 1 2.0 7.0 78 224 r 1.382 4 6 cbr 500 ------- 1 1.0 6.0 119 220 r 1.384 1 3 cbr 500 ------- 1 1.0 6.0 131 253 + 1.384 3 4 cbr 500 ------- 1 1.0 6.0 131 253 r 1.38598 4 3 ack 40 ------- 0 5.0 0.0 13 236 + 1.38598 3 0 ack 40 ------- 0 5.0 0.0 13 236 - 1.38598 3 0 ack 40 ------- 0 5.0 0.0 13 236 r 1.386 3 4 cbr 500 ------- 1 1.0 6.0 122 227 + 1.386 4 6 cbr 500 ------- 1 1.0 6.0 122 227 - 1.386 4 6 cbr 500 ------- 1 1.0 6.0 122 227 r 1.388 2 3 cbr 1000 ------- 1 2.0 7.0 83 252 + 1.388 3 4 cbr 1000 ------- 1 2.0 7.0 83 252 d 1.388 3 4 cbr 1000 ------- 1 2.0 7.0 83 252 - 1.388 3 4 tcp 1000 ------- 0 0.0 5.0 16 241 r 1.39 3 4 cbr 500 ------- 1 1.0 6.0 123 229 + 1.39 4 6 cbr 500 ------- 1 1.0 6.0 123 229 + 1.39 1 3 cbr 500 ------- 1 1.0 6.0 134 259 - 1.39 1 3 cbr 500 ------- 1 1.0 6.0 134 259 - 1.39 4 6 cbr 500 ------- 1 1.0 6.0 123 229 r 1.39005 3 0 ack 40 ------- 0 5.0 0.0 12 232 + 1.39005 0 3 tcp 1000 ------- 0 0.0 5.0 25 260 - 1.39005 0 3 tcp 1000 ------- 0 0.0 5.0 25 260 + 1.39005 0 3 tcp 1000 ------- 0 0.0 5.0 26 261 - 1.39165 0 3 tcp 1000 ------- 0 0.0 5.0 26 261 r 1.39398 4 3 ack 40 ------- 0 5.0 0.0 14 239 + 1.39398 3 0 ack 40 ------- 0 5.0 0.0 14 239 - 1.39398 3 0 ack 40 ------- 0 5.0 0.0 14 239 r 1.394 4 7 cbr 1000 ------- 1 2.0 7.0 77 219 r 1.394 4 6 cbr 500 ------- 1 1.0 6.0 120 222 r 1.394 1 3 cbr 500 ------- 1 1.0 6.0 132 254 + 1.394 3 4 cbr 500 ------- 1 1.0 6.0 132 254 - 1.396 3 4 cbr 500 ------- 1 1.0 6.0 128 242 r 1.398 3 4 cbr 1000 ------- 1 2.0 7.0 79 228 + 1.398 4 7 cbr 1000 ------- 1 2.0 7.0 79 228 - 1.398 4 7 cbr 1000 ------- 1 2.0 7.0 79 228 r 1.398 4 6 cbr 500 ------- 1 1.0 6.0 121 225 r 1.39965 0 3 tcp 1000 ------- 0 0.0 5.0 23 255 + 1.39965 3 4 tcp 1000 ------- 0 0.0 5.0 23 255 + 1.4 2 3 cbr 1000 ------- 1 2.0 7.0 85 262 - 1.4 2 3 cbr 1000 ------- 1 2.0 7.0 85 262 + 1.4 1 3 cbr 500 ------- 1 1.0 6.0 135 263 - 1.4 1 3 cbr 500 ------- 1 1.0 6.0 135 263 - 1.4 3 4 tcp 1000 ------- 0 0.0 5.0 17 243 r 1.40125 0 3 tcp 1000 ------- 0 0.0 5.0 24 256 + 1.40125 3 4 tcp 1000 ------- 0 0.0 5.0 24 256 r 1.402 3 4 cbr 500 ------- 1 1.0 6.0 124 231 + 1.402 4 6 cbr 500 ------- 1 1.0 6.0 124 231 - 1.402 4 6 cbr 500 ------- 1 1.0 6.0 124 231 r 1.404 1 3 cbr 500 ------- 1 1.0 6.0 133 258 + 1.404 3 4 cbr 500 ------- 1 1.0 6.0 133 258 d 1.404 3 4 cbr 500 ------- 1 1.0 6.0 133 258 r 1.406 3 4 cbr 500 ------- 1 1.0 6.0 125 234 + 1.406 4 6 cbr 500 ------- 1 1.0 6.0 125 234 - 1.406 4 6 cbr 500 ------- 1 1.0 6.0 125 234 r 1.40605 3 0 ack 40 ------- 0 5.0 0.0 13 236 + 1.40605 0 3 tcp 1000 ------- 0 0.0 5.0 27 264 - 1.40605 0 3 tcp 1000 ------- 0 0.0 5.0 27 264 + 1.40605 0 3 tcp 1000 ------- 0 0.0 5.0 28 265 - 1.40765 0 3 tcp 1000 ------- 0 0.0 5.0 28 265 r 1.408 2 3 cbr 1000 ------- 1 2.0 7.0 84 257 + 1.408 3 4 cbr 1000 ------- 1 2.0 7.0 84 257 d 1.408 3 4 cbr 1000 ------- 1 2.0 7.0 84 257 - 1.408 3 4 tcp 1000 ------- 0 0.0 5.0 18 244 v 1.4099999999999999 eval {set sim_annotation {Lost Packet_21,22,23,26,27,28,29,30 !}} r 1.41 4 7 cbr 1000 ------- 1 2.0 7.0 78 224 r 1.41 4 6 cbr 500 ------- 1 1.0 6.0 122 227 + 1.41 1 3 cbr 500 ------- 1 1.0 6.0 136 266 - 1.41 1 3 cbr 500 ------- 1 1.0 6.0 136 266 r 1.41165 0 3 tcp 1000 ------- 0 0.0 5.0 25 260 + 1.41165 3 4 tcp 1000 ------- 0 0.0 5.0 25 260 r 1.41325 0 3 tcp 1000 ------- 0 0.0 5.0 26 261 + 1.41325 3 4 tcp 1000 ------- 0 0.0 5.0 26 261 d 1.41325 3 4 tcp 1000 ------- 0 0.0 5.0 26 261 r 1.414 3 4 cbr 1000 ------- 1 2.0 7.0 80 233 + 1.414 4 7 cbr 1000 ------- 1 2.0 7.0 80 233 - 1.414 4 7 cbr 1000 ------- 1 2.0 7.0 80 233 r 1.414 1 3 cbr 500 ------- 1 1.0 6.0 134 259 + 1.414 3 4 cbr 500 ------- 1 1.0 6.0 134 259 d 1.414 3 4 cbr 500 ------- 1 1.0 6.0 134 259 r 1.414 4 6 cbr 500 ------- 1 1.0 6.0 123 229 r 1.41405 3 0 ack 40 ------- 0 5.0 0.0 14 239 + 1.41405 0 3 tcp 1000 ------- 0 0.0 5.0 29 267 - 1.41405 0 3 tcp 1000 ------- 0 0.0 5.0 29 267 + 1.41405 0 3 tcp 1000 ------- 0 0.0 5.0 30 268 - 1.41565 0 3 tcp 1000 ------- 0 0.0 5.0 30 268 - 1.416 3 4 cbr 500 ------- 1 1.0 6.0 129 246 r 1.418 3 4 cbr 500 ------- 1 1.0 6.0 126 235 + 1.418 4 6 cbr 500 ------- 1 1.0 6.0 126 235 - 1.418 4 6 cbr 500 ------- 1 1.0 6.0 126 235 + 1.42 2 3 cbr 1000 ------- 1 2.0 7.0 86 269 - 1.42 2 3 cbr 1000 ------- 1 2.0 7.0 86 269 + 1.42 1 3 cbr 500 ------- 1 1.0 6.0 137 270 - 1.42 1 3 cbr 500 ------- 1 1.0 6.0 137 270 - 1.42 3 4 tcp 1000 ------- 0 0.0 5.0 19 247 r 1.422 3 4 cbr 500 ------- 1 1.0 6.0 127 238 + 1.422 4 6 cbr 500 ------- 1 1.0 6.0 127 238 - 1.422 4 6 cbr 500 ------- 1 1.0 6.0 127 238 r 1.424 1 3 cbr 500 ------- 1 1.0 6.0 135 263 + 1.424 3 4 cbr 500 ------- 1 1.0 6.0 135 263 r 1.426 4 7 cbr 1000 ------- 1 2.0 7.0 79 228 r 1.426 4 6 cbr 500 ------- 1 1.0 6.0 124 231 r 1.42765 0 3 tcp 1000 ------- 0 0.0 5.0 27 264 + 1.42765 3 4 tcp 1000 ------- 0 0.0 5.0 27 264 r 1.428 2 3 cbr 1000 ------- 1 2.0 7.0 85 262 + 1.428 3 4 cbr 1000 ------- 1 2.0 7.0 85 262 d 1.428 3 4 cbr 1000 ------- 1 2.0 7.0 85 262 - 1.428 3 4 tcp 1000 ------- 0 0.0 5.0 20 248 r 1.42925 0 3 tcp 1000 ------- 0 0.0 5.0 28 265 + 1.42925 3 4 tcp 1000 ------- 0 0.0 5.0 28 265 r 1.43 3 4 tcp 1000 ------- 0 0.0 5.0 15 240 + 1.43 4 5 tcp 1000 ------- 0 0.0 5.0 15 240 - 1.43 4 5 tcp 1000 ------- 0 0.0 5.0 15 240 r 1.43 4 6 cbr 500 ------- 1 1.0 6.0 125 234 + 1.43 1 3 cbr 500 ------- 1 1.0 6.0 138 271 - 1.43 1 3 cbr 500 ------- 1 1.0 6.0 138 271 r 1.434 1 3 cbr 500 ------- 1 1.0 6.0 136 266 + 1.434 3 4 cbr 500 ------- 1 1.0 6.0 136 266 d 1.434 3 4 cbr 500 ------- 1 1.0 6.0 136 266 r 1.43565 0 3 tcp 1000 ------- 0 0.0 5.0 29 267 + 1.43565 3 4 tcp 1000 ------- 0 0.0 5.0 29 267 d 1.43565 3 4 tcp 1000 ------- 0 0.0 5.0 29 267 - 1.436 3 4 cbr 500 ------- 1 1.0 6.0 130 249 r 1.43725 0 3 tcp 1000 ------- 0 0.0 5.0 30 268 + 1.43725 3 4 tcp 1000 ------- 0 0.0 5.0 30 268 r 1.438 3 4 cbr 1000 ------- 1 2.0 7.0 81 237 + 1.438 4 7 cbr 1000 ------- 1 2.0 7.0 81 237 - 1.438 4 7 cbr 1000 ------- 1 2.0 7.0 81 237 + 1.44 2 3 cbr 1000 ------- 1 2.0 7.0 87 272 - 1.44 2 3 cbr 1000 ------- 1 2.0 7.0 87 272 + 1.44 1 3 cbr 500 ------- 1 1.0 6.0 139 273 - 1.44 1 3 cbr 500 ------- 1 1.0 6.0 139 273 - 1.44 3 4 cbr 500 ------- 1 1.0 6.0 131 253 r 1.442 4 7 cbr 1000 ------- 1 2.0 7.0 80 233 r 1.442 4 6 cbr 500 ------- 1 1.0 6.0 126 235 r 1.444 1 3 cbr 500 ------- 1 1.0 6.0 137 270 + 1.444 3 4 cbr 500 ------- 1 1.0 6.0 137 270 - 1.444 3 4 cbr 500 ------- 1 1.0 6.0 132 254 r 1.446 3 4 tcp 1000 ------- 0 0.0 5.0 16 241 + 1.446 4 5 tcp 1000 ------- 0 0.0 5.0 16 241 - 1.446 4 5 tcp 1000 ------- 0 0.0 5.0 16 241 r 1.446 4 6 cbr 500 ------- 1 1.0 6.0 127 238 r 1.448 2 3 cbr 1000 ------- 1 2.0 7.0 86 269 + 1.448 3 4 cbr 1000 ------- 1 2.0 7.0 86 269 - 1.448 3 4 tcp 1000 ------- 0 0.0 5.0 23 255 r 1.45 3 4 cbr 500 ------- 1 1.0 6.0 128 242 + 1.45 4 6 cbr 500 ------- 1 1.0 6.0 128 242 - 1.45 4 6 cbr 500 ------- 1 1.0 6.0 128 242 + 1.45 1 3 cbr 500 ------- 1 1.0 6.0 140 274 - 1.45 1 3 cbr 500 ------- 1 1.0 6.0 140 274 r 1.4516 4 5 tcp 1000 ------- 0 0.0 5.0 15 240 + 1.4516 5 4 ack 40 ------- 0 5.0 0.0 15 275 - 1.4516 5 4 ack 40 ------- 0 5.0 0.0 15 275 r 1.454 1 3 cbr 500 ------- 1 1.0 6.0 138 271 + 1.454 3 4 cbr 500 ------- 1 1.0 6.0 138 271 - 1.456 3 4 tcp 1000 ------- 0 0.0 5.0 24 256 r 1.458 3 4 tcp 1000 ------- 0 0.0 5.0 17 243 + 1.458 4 5 tcp 1000 ------- 0 0.0 5.0 17 243 - 1.458 4 5 tcp 1000 ------- 0 0.0 5.0 17 243 v 1.46 eval {set sim_annotation {8 Ack_20s }} + 1.46 2 3 cbr 1000 ------- 1 2.0 7.0 88 276 - 1.46 2 3 cbr 1000 ------- 1 2.0 7.0 88 276 + 1.46 1 3 cbr 500 ------- 1 1.0 6.0 141 277 - 1.46 1 3 cbr 500 ------- 1 1.0 6.0 141 277 r 1.464 1 3 cbr 500 ------- 1 1.0 6.0 139 273 + 1.464 3 4 cbr 500 ------- 1 1.0 6.0 139 273 - 1.464 3 4 tcp 1000 ------- 0 0.0 5.0 25 260 r 1.466 3 4 tcp 1000 ------- 0 0.0 5.0 18 244 + 1.466 4 5 tcp 1000 ------- 0 0.0 5.0 18 244 - 1.466 4 5 tcp 1000 ------- 0 0.0 5.0 18 244 r 1.466 4 7 cbr 1000 ------- 1 2.0 7.0 81 237 r 1.4676 4 5 tcp 1000 ------- 0 0.0 5.0 16 241 + 1.4676 5 4 ack 40 ------- 0 5.0 0.0 16 278 - 1.4676 5 4 ack 40 ------- 0 5.0 0.0 16 278 r 1.468 2 3 cbr 1000 ------- 1 2.0 7.0 87 272 + 1.468 3 4 cbr 1000 ------- 1 2.0 7.0 87 272 r 1.47 3 4 cbr 500 ------- 1 1.0 6.0 129 246 + 1.47 4 6 cbr 500 ------- 1 1.0 6.0 129 246 - 1.47 4 6 cbr 500 ------- 1 1.0 6.0 129 246 + 1.47 1 3 cbr 500 ------- 1 1.0 6.0 142 279 - 1.47 1 3 cbr 500 ------- 1 1.0 6.0 142 279 r 1.47166 5 4 ack 40 ------- 0 5.0 0.0 15 275 + 1.47166 4 3 ack 40 ------- 0 5.0 0.0 15 275 - 1.47166 4 3 ack 40 ------- 0 5.0 0.0 15 275 - 1.472 3 4 cbr 500 ------- 1 1.0 6.0 135 263 r 1.474 4 6 cbr 500 ------- 1 1.0 6.0 128 242 r 1.474 1 3 cbr 500 ------- 1 1.0 6.0 140 274 + 1.474 3 4 cbr 500 ------- 1 1.0 6.0 140 274 - 1.476 3 4 tcp 1000 ------- 0 0.0 5.0 27 264 r 1.478 3 4 tcp 1000 ------- 0 0.0 5.0 19 247 + 1.478 4 5 tcp 1000 ------- 0 0.0 5.0 19 247 - 1.478 4 5 tcp 1000 ------- 0 0.0 5.0 19 247 r 1.4796 4 5 tcp 1000 ------- 0 0.0 5.0 17 243 + 1.4796 5 4 ack 40 ------- 0 5.0 0.0 17 280 - 1.4796 5 4 ack 40 ------- 0 5.0 0.0 17 280 + 1.48 2 3 cbr 1000 ------- 1 2.0 7.0 89 281 - 1.48 2 3 cbr 1000 ------- 1 2.0 7.0 89 281 + 1.48 1 3 cbr 500 ------- 1 1.0 6.0 143 282 - 1.48 1 3 cbr 500 ------- 1 1.0 6.0 143 282 r 1.484 1 3 cbr 500 ------- 1 1.0 6.0 141 277 + 1.484 3 4 cbr 500 ------- 1 1.0 6.0 141 277 - 1.484 3 4 tcp 1000 ------- 0 0.0 5.0 28 265 r 1.486 3 4 tcp 1000 ------- 0 0.0 5.0 20 248 + 1.486 4 5 tcp 1000 ------- 0 0.0 5.0 20 248 - 1.486 4 5 tcp 1000 ------- 0 0.0 5.0 20 248 r 1.4876 4 5 tcp 1000 ------- 0 0.0 5.0 18 244 + 1.4876 5 4 ack 40 ------- 0 5.0 0.0 18 283 - 1.4876 5 4 ack 40 ------- 0 5.0 0.0 18 283 r 1.48766 5 4 ack 40 ------- 0 5.0 0.0 16 278 + 1.48766 4 3 ack 40 ------- 0 5.0 0.0 16 278 - 1.48766 4 3 ack 40 ------- 0 5.0 0.0 16 278 r 1.488 2 3 cbr 1000 ------- 1 2.0 7.0 88 276 + 1.488 3 4 cbr 1000 ------- 1 2.0 7.0 88 276 r 1.49 3 4 cbr 500 ------- 1 1.0 6.0 130 249 + 1.49 4 6 cbr 500 ------- 1 1.0 6.0 130 249 - 1.49 4 6 cbr 500 ------- 1 1.0 6.0 130 249 + 1.49 1 3 cbr 500 ------- 1 1.0 6.0 144 284 - 1.49 1 3 cbr 500 ------- 1 1.0 6.0 144 284 - 1.492 3 4 tcp 1000 ------- 0 0.0 5.0 30 268 r 1.494 3 4 cbr 500 ------- 1 1.0 6.0 131 253 + 1.494 4 6 cbr 500 ------- 1 1.0 6.0 131 253 r 1.494 4 6 cbr 500 ------- 1 1.0 6.0 129 246 r 1.494 1 3 cbr 500 ------- 1 1.0 6.0 142 279 + 1.494 3 4 cbr 500 ------- 1 1.0 6.0 142 279 - 1.494 4 6 cbr 500 ------- 1 1.0 6.0 131 253 r 1.498 3 4 cbr 500 ------- 1 1.0 6.0 132 254 + 1.498 4 6 cbr 500 ------- 1 1.0 6.0 132 254 - 1.498 4 6 cbr 500 ------- 1 1.0 6.0 132 254 r 1.4996 4 5 tcp 1000 ------- 0 0.0 5.0 19 247 + 1.4996 5 4 ack 40 ------- 0 5.0 0.0 19 285 - 1.4996 5 4 ack 40 ------- 0 5.0 0.0 19 285 r 1.49966 5 4 ack 40 ------- 0 5.0 0.0 17 280 + 1.49966 4 3 ack 40 ------- 0 5.0 0.0 17 280 - 1.49966 4 3 ack 40 ------- 0 5.0 0.0 17 280 + 1.5 2 3 cbr 1000 ------- 1 2.0 7.0 90 286 - 1.5 2 3 cbr 1000 ------- 1 2.0 7.0 90 286 + 1.5 1 3 cbr 500 ------- 1 1.0 6.0 145 287 - 1.5 1 3 cbr 500 ------- 1 1.0 6.0 145 287 - 1.5 3 4 cbr 500 ------- 1 1.0 6.0 137 270 r 1.504 1 3 cbr 500 ------- 1 1.0 6.0 143 282 + 1.504 3 4 cbr 500 ------- 1 1.0 6.0 143 282 - 1.504 3 4 cbr 1000 ------- 1 2.0 7.0 86 269 r 1.506 3 4 tcp 1000 ------- 0 0.0 5.0 23 255 + 1.506 4 5 tcp 1000 ------- 0 0.0 5.0 23 255 - 1.506 4 5 tcp 1000 ------- 0 0.0 5.0 23 255 r 1.5076 4 5 tcp 1000 ------- 0 0.0 5.0 20 248 + 1.5076 5 4 ack 40 ------- 0 5.0 0.0 20 288 - 1.5076 5 4 ack 40 ------- 0 5.0 0.0 20 288 r 1.50766 5 4 ack 40 ------- 0 5.0 0.0 18 283 + 1.50766 4 3 ack 40 ------- 0 5.0 0.0 18 283 - 1.50766 4 3 ack 40 ------- 0 5.0 0.0 18 283 r 1.508 2 3 cbr 1000 ------- 1 2.0 7.0 89 281 + 1.508 3 4 cbr 1000 ------- 1 2.0 7.0 89 281 - 1.512 3 4 cbr 500 ------- 1 1.0 6.0 138 271 r 1.514 3 4 tcp 1000 ------- 0 0.0 5.0 24 256 + 1.514 4 5 tcp 1000 ------- 0 0.0 5.0 24 256 - 1.514 4 5 tcp 1000 ------- 0 0.0 5.0 24 256 r 1.514 4 6 cbr 500 ------- 1 1.0 6.0 130 249 r 1.514 1 3 cbr 500 ------- 1 1.0 6.0 144 284 + 1.514 3 4 cbr 500 ------- 1 1.0 6.0 144 284 - 1.516 3 4 cbr 500 ------- 1 1.0 6.0 139 273 r 1.518 4 6 cbr 500 ------- 1 1.0 6.0 131 253 r 1.51966 5 4 ack 40 ------- 0 5.0 0.0 19 285 + 1.51966 4 3 ack 40 ------- 0 5.0 0.0 19 285 - 1.51966 4 3 ack 40 ------- 0 5.0 0.0 19 285 + 1.52 2 3 cbr 1000 ------- 1 2.0 7.0 91 289 - 1.52 2 3 cbr 1000 ------- 1 2.0 7.0 91 289 + 1.52 1 3 cbr 500 ------- 1 1.0 6.0 146 290 - 1.52 1 3 cbr 500 ------- 1 1.0 6.0 146 290 - 1.52 3 4 cbr 1000 ------- 1 2.0 7.0 87 272 r 1.52198 4 3 ack 40 ------- 0 5.0 0.0 15 275 + 1.52198 3 0 ack 40 ------- 0 5.0 0.0 15 275 - 1.52198 3 0 ack 40 ------- 0 5.0 0.0 15 275 r 1.522 3 4 tcp 1000 ------- 0 0.0 5.0 25 260 + 1.522 4 5 tcp 1000 ------- 0 0.0 5.0 25 260 - 1.522 4 5 tcp 1000 ------- 0 0.0 5.0 25 260 r 1.522 4 6 cbr 500 ------- 1 1.0 6.0 132 254 r 1.524 1 3 cbr 500 ------- 1 1.0 6.0 145 287 + 1.524 3 4 cbr 500 ------- 1 1.0 6.0 145 287 r 1.526 3 4 cbr 500 ------- 1 1.0 6.0 135 263 + 1.526 4 6 cbr 500 ------- 1 1.0 6.0 135 263 - 1.526 4 6 cbr 500 ------- 1 1.0 6.0 135 263 r 1.5276 4 5 tcp 1000 ------- 0 0.0 5.0 23 255 + 1.5276 5 4 ack 40 ------- 0 5.0 0.0 20 291 - 1.5276 5 4 ack 40 ------- 0 5.0 0.0 20 291 r 1.52766 5 4 ack 40 ------- 0 5.0 0.0 20 288 + 1.52766 4 3 ack 40 ------- 0 5.0 0.0 20 288 - 1.52766 4 3 ack 40 ------- 0 5.0 0.0 20 288 r 1.528 2 3 cbr 1000 ------- 1 2.0 7.0 90 286 + 1.528 3 4 cbr 1000 ------- 1 2.0 7.0 90 286 - 1.528 3 4 cbr 500 ------- 1 1.0 6.0 140 274 - 1.532 3 4 cbr 500 ------- 1 1.0 6.0 141 277 r 1.534 3 4 tcp 1000 ------- 0 0.0 5.0 27 264 + 1.534 4 5 tcp 1000 ------- 0 0.0 5.0 27 264 - 1.534 4 5 tcp 1000 ------- 0 0.0 5.0 27 264 r 1.5356 4 5 tcp 1000 ------- 0 0.0 5.0 24 256 + 1.5356 5 4 ack 40 ------- 0 5.0 0.0 20 292 - 1.5356 5 4 ack 40 ------- 0 5.0 0.0 20 292 - 1.536 3 4 cbr 1000 ------- 1 2.0 7.0 88 276 r 1.53798 4 3 ack 40 ------- 0 5.0 0.0 16 278 + 1.53798 3 0 ack 40 ------- 0 5.0 0.0 16 278 - 1.53798 3 0 ack 40 ------- 0 5.0 0.0 16 278 + 1.54 2 3 cbr 1000 ------- 1 2.0 7.0 92 293 - 1.54 2 3 cbr 1000 ------- 1 2.0 7.0 92 293 + 1.54 1 3 cbr 500 ------- 1 1.0 6.0 147 294 - 1.54 1 3 cbr 500 ------- 1 1.0 6.0 147 294 r 1.542 3 4 tcp 1000 ------- 0 0.0 5.0 28 265 + 1.542 4 5 tcp 1000 ------- 0 0.0 5.0 28 265 - 1.542 4 5 tcp 1000 ------- 0 0.0 5.0 28 265 r 1.54205 3 0 ack 40 ------- 0 5.0 0.0 15 275 + 1.54205 0 3 tcp 1000 ------- 0 0.0 5.0 31 295 - 1.54205 0 3 tcp 1000 ------- 0 0.0 5.0 31 295 + 1.54205 0 3 tcp 1000 ------- 0 0.0 5.0 32 296 r 1.5436 4 5 tcp 1000 ------- 0 0.0 5.0 25 260 + 1.5436 5 4 ack 40 ------- 0 5.0 0.0 20 297 - 1.5436 5 4 ack 40 ------- 0 5.0 0.0 20 297 - 1.54365 0 3 tcp 1000 ------- 0 0.0 5.0 32 296 r 1.544 1 3 cbr 500 ------- 1 1.0 6.0 146 290 + 1.544 3 4 cbr 500 ------- 1 1.0 6.0 146 290 - 1.544 3 4 cbr 500 ------- 1 1.0 6.0 142 279 r 1.54766 5 4 ack 40 ------- 0 5.0 0.0 20 291 + 1.54766 4 3 ack 40 ------- 0 5.0 0.0 20 291 - 1.54766 4 3 ack 40 ------- 0 5.0 0.0 20 291 r 1.548 2 3 cbr 1000 ------- 1 2.0 7.0 91 289 + 1.548 3 4 cbr 1000 ------- 1 2.0 7.0 91 289 - 1.548 3 4 cbr 500 ------- 1 1.0 6.0 143 282 r 1.54998 4 3 ack 40 ------- 0 5.0 0.0 17 280 + 1.54998 3 0 ack 40 ------- 0 5.0 0.0 17 280 - 1.54998 3 0 ack 40 ------- 0 5.0 0.0 17 280 v 1.55 eval {set sim_annotation {Send Packet_31 to 39}} r 1.55 3 4 tcp 1000 ------- 0 0.0 5.0 30 268 + 1.55 4 5 tcp 1000 ------- 0 0.0 5.0 30 268 - 1.55 4 5 tcp 1000 ------- 0 0.0 5.0 30 268 r 1.55 4 6 cbr 500 ------- 1 1.0 6.0 135 263 - 1.552 3 4 cbr 1000 ------- 1 2.0 7.0 89 281 r 1.554 3 4 cbr 500 ------- 1 1.0 6.0 137 270 + 1.554 4 6 cbr 500 ------- 1 1.0 6.0 137 270 - 1.554 4 6 cbr 500 ------- 1 1.0 6.0 137 270 r 1.5556 4 5 tcp 1000 ------- 0 0.0 5.0 27 264 + 1.5556 5 4 ack 40 ------- 0 5.0 0.0 20 298 - 1.5556 5 4 ack 40 ------- 0 5.0 0.0 20 298 r 1.55566 5 4 ack 40 ------- 0 5.0 0.0 20 292 + 1.55566 4 3 ack 40 ------- 0 5.0 0.0 20 292 - 1.55566 4 3 ack 40 ------- 0 5.0 0.0 20 292 r 1.55798 4 3 ack 40 ------- 0 5.0 0.0 18 283 + 1.55798 3 0 ack 40 ------- 0 5.0 0.0 18 283 - 1.55798 3 0 ack 40 ------- 0 5.0 0.0 18 283 r 1.55805 3 0 ack 40 ------- 0 5.0 0.0 16 278 + 1.55805 0 3 tcp 1000 ------- 0 0.0 5.0 33 299 - 1.55805 0 3 tcp 1000 ------- 0 0.0 5.0 33 299 + 1.55805 0 3 tcp 1000 ------- 0 0.0 5.0 34 300 - 1.55965 0 3 tcp 1000 ------- 0 0.0 5.0 34 300 + 1.56 2 3 cbr 1000 ------- 1 2.0 7.0 93 301 - 1.56 2 3 cbr 1000 ------- 1 2.0 7.0 93 301 + 1.56 1 3 cbr 500 ------- 1 1.0 6.0 148 302 - 1.56 1 3 cbr 500 ------- 1 1.0 6.0 148 302 - 1.56 3 4 cbr 500 ------- 1 1.0 6.0 144 284 r 1.562 3 4 cbr 1000 ------- 1 2.0 7.0 86 269 + 1.562 4 7 cbr 1000 ------- 1 2.0 7.0 86 269 - 1.562 4 7 cbr 1000 ------- 1 2.0 7.0 86 269 r 1.5636 4 5 tcp 1000 ------- 0 0.0 5.0 28 265 + 1.5636 5 4 ack 40 ------- 0 5.0 0.0 20 303 - 1.5636 5 4 ack 40 ------- 0 5.0 0.0 20 303 r 1.56365 0 3 tcp 1000 ------- 0 0.0 5.0 31 295 + 1.56365 3 4 tcp 1000 ------- 0 0.0 5.0 31 295 r 1.56366 5 4 ack 40 ------- 0 5.0 0.0 20 297 + 1.56366 4 3 ack 40 ------- 0 5.0 0.0 20 297 - 1.56366 4 3 ack 40 ------- 0 5.0 0.0 20 297 r 1.564 1 3 cbr 500 ------- 1 1.0 6.0 147 294 + 1.564 3 4 cbr 500 ------- 1 1.0 6.0 147 294 - 1.564 3 4 cbr 500 ------- 1 1.0 6.0 145 287 r 1.56525 0 3 tcp 1000 ------- 0 0.0 5.0 32 296 + 1.56525 3 4 tcp 1000 ------- 0 0.0 5.0 32 296 r 1.566 3 4 cbr 500 ------- 1 1.0 6.0 138 271 + 1.566 4 6 cbr 500 ------- 1 1.0 6.0 138 271 - 1.566 4 6 cbr 500 ------- 1 1.0 6.0 138 271 r 1.568 2 3 cbr 1000 ------- 1 2.0 7.0 92 293 + 1.568 3 4 cbr 1000 ------- 1 2.0 7.0 92 293 - 1.568 3 4 cbr 1000 ------- 1 2.0 7.0 90 286 r 1.56998 4 3 ack 40 ------- 0 5.0 0.0 19 285 + 1.56998 3 0 ack 40 ------- 0 5.0 0.0 19 285 - 1.56998 3 0 ack 40 ------- 0 5.0 0.0 19 285 r 1.57 3 4 cbr 500 ------- 1 1.0 6.0 139 273 + 1.57 4 6 cbr 500 ------- 1 1.0 6.0 139 273 - 1.57 4 6 cbr 500 ------- 1 1.0 6.0 139 273 r 1.57005 3 0 ack 40 ------- 0 5.0 0.0 17 280 + 1.57005 0 3 tcp 1000 ------- 0 0.0 5.0 35 304 - 1.57005 0 3 tcp 1000 ------- 0 0.0 5.0 35 304 + 1.57005 0 3 tcp 1000 ------- 0 0.0 5.0 36 305 r 1.5716 4 5 tcp 1000 ------- 0 0.0 5.0 30 268 + 1.5716 5 4 ack 40 ------- 0 5.0 0.0 20 306 - 1.5716 5 4 ack 40 ------- 0 5.0 0.0 20 306 - 1.57165 0 3 tcp 1000 ------- 0 0.0 5.0 36 305 r 1.57566 5 4 ack 40 ------- 0 5.0 0.0 20 298 + 1.57566 4 3 ack 40 ------- 0 5.0 0.0 20 298 - 1.57566 4 3 ack 40 ------- 0 5.0 0.0 20 298 - 1.576 3 4 cbr 500 ------- 1 1.0 6.0 146 290 r 1.57798 4 3 ack 40 ------- 0 5.0 0.0 20 288 + 1.57798 3 0 ack 40 ------- 0 5.0 0.0 20 288 - 1.57798 3 0 ack 40 ------- 0 5.0 0.0 20 288 r 1.578 3 4 cbr 1000 ------- 1 2.0 7.0 87 272 + 1.578 4 7 cbr 1000 ------- 1 2.0 7.0 87 272 - 1.578 4 7 cbr 1000 ------- 1 2.0 7.0 87 272 r 1.578 4 6 cbr 500 ------- 1 1.0 6.0 137 270 r 1.57805 3 0 ack 40 ------- 0 5.0 0.0 18 283 + 1.57805 0 3 tcp 1000 ------- 0 0.0 5.0 37 307 - 1.57805 0 3 tcp 1000 ------- 0 0.0 5.0 37 307 + 1.57805 0 3 tcp 1000 ------- 0 0.0 5.0 38 308 r 1.57965 0 3 tcp 1000 ------- 0 0.0 5.0 33 299 + 1.57965 3 4 tcp 1000 ------- 0 0.0 5.0 33 299 - 1.57965 0 3 tcp 1000 ------- 0 0.0 5.0 38 308 + 1.58 2 3 cbr 1000 ------- 1 2.0 7.0 94 309 - 1.58 2 3 cbr 1000 ------- 1 2.0 7.0 94 309 + 1.58 1 3 cbr 500 ------- 1 1.0 6.0 149 310 - 1.58 1 3 cbr 500 ------- 1 1.0 6.0 149 310 - 1.58 3 4 cbr 1000 ------- 1 2.0 7.0 91 289 r 1.58125 0 3 tcp 1000 ------- 0 0.0 5.0 34 300 + 1.58125 3 4 tcp 1000 ------- 0 0.0 5.0 34 300 r 1.582 3 4 cbr 500 ------- 1 1.0 6.0 140 274 + 1.582 4 6 cbr 500 ------- 1 1.0 6.0 140 274 - 1.582 4 6 cbr 500 ------- 1 1.0 6.0 140 274 r 1.58366 5 4 ack 40 ------- 0 5.0 0.0 20 303 + 1.58366 4 3 ack 40 ------- 0 5.0 0.0 20 303 - 1.58366 4 3 ack 40 ------- 0 5.0 0.0 20 303 r 1.584 1 3 cbr 500 ------- 1 1.0 6.0 148 302 + 1.584 3 4 cbr 500 ------- 1 1.0 6.0 148 302 r 1.586 3 4 cbr 500 ------- 1 1.0 6.0 141 277 + 1.586 4 6 cbr 500 ------- 1 1.0 6.0 141 277 - 1.586 4 6 cbr 500 ------- 1 1.0 6.0 141 277 r 1.588 2 3 cbr 1000 ------- 1 2.0 7.0 93 301 + 1.588 3 4 cbr 1000 ------- 1 2.0 7.0 93 301 - 1.588 3 4 tcp 1000 ------- 0 0.0 5.0 31 295 r 1.59 4 7 cbr 1000 ------- 1 2.0 7.0 86 269 r 1.59 4 6 cbr 500 ------- 1 1.0 6.0 138 271 r 1.59005 3 0 ack 40 ------- 0 5.0 0.0 19 285 + 1.59005 0 3 tcp 1000 ------- 0 0.0 5.0 39 311 - 1.59005 0 3 tcp 1000 ------- 0 0.0 5.0 39 311 r 1.59165 0 3 tcp 1000 ------- 0 0.0 5.0 35 304 + 1.59165 3 4 tcp 1000 ------- 0 0.0 5.0 35 304 r 1.59166 5 4 ack 40 ------- 0 5.0 0.0 20 306 + 1.59166 4 3 ack 40 ------- 0 5.0 0.0 20 306 - 1.59166 4 3 ack 40 ------- 0 5.0 0.0 20 306 r 1.59325 0 3 tcp 1000 ------- 0 0.0 5.0 36 305 + 1.59325 3 4 tcp 1000 ------- 0 0.0 5.0 36 305 r 1.594 3 4 cbr 1000 ------- 1 2.0 7.0 88 276 + 1.594 4 7 cbr 1000 ------- 1 2.0 7.0 88 276 - 1.594 4 7 cbr 1000 ------- 1 2.0 7.0 88 276 r 1.594 4 6 cbr 500 ------- 1 1.0 6.0 139 273 - 1.596 3 4 cbr 500 ------- 1 1.0 6.0 147 294 r 1.59798 4 3 ack 40 ------- 0 5.0 0.0 20 291 + 1.59798 3 0 ack 40 ------- 0 5.0 0.0 20 291 - 1.59798 3 0 ack 40 ------- 0 5.0 0.0 20 291 r 1.598 3 4 cbr 500 ------- 1 1.0 6.0 142 279 + 1.598 4 6 cbr 500 ------- 1 1.0 6.0 142 279 - 1.598 4 6 cbr 500 ------- 1 1.0 6.0 142 279 r 1.59805 3 0 ack 40 ------- 0 5.0 0.0 20 288 + 1.59805 0 3 tcp 1000 ------- 0 0.0 5.0 40 312 - 1.59805 0 3 tcp 1000 ------- 0 0.0 5.0 40 312 r 1.59965 0 3 tcp 1000 ------- 0 0.0 5.0 37 307 + 1.59965 3 4 tcp 1000 ------- 0 0.0 5.0 37 307 + 1.6 2 3 cbr 1000 ------- 1 2.0 7.0 95 313 - 1.6 2 3 cbr 1000 ------- 1 2.0 7.0 95 313 + 1.6 1 3 cbr 500 ------- 1 1.0 6.0 150 314 - 1.6 1 3 cbr 500 ------- 1 1.0 6.0 150 314 - 1.6 3 4 tcp 1000 ------- 0 0.0 5.0 32 296 r 1.60125 0 3 tcp 1000 ------- 0 0.0 5.0 38 308 + 1.60125 3 4 tcp 1000 ------- 0 0.0 5.0 38 308 r 1.602 3 4 cbr 500 ------- 1 1.0 6.0 143 282 + 1.602 4 6 cbr 500 ------- 1 1.0 6.0 143 282 - 1.602 4 6 cbr 500 ------- 1 1.0 6.0 143 282 r 1.604 1 3 cbr 500 ------- 1 1.0 6.0 149 310 + 1.604 3 4 cbr 500 ------- 1 1.0 6.0 149 310 d 1.604 3 4 cbr 500 ------- 1 1.0 6.0 149 310 r 1.60598 4 3 ack 40 ------- 0 5.0 0.0 20 292 + 1.60598 3 0 ack 40 ------- 0 5.0 0.0 20 292 - 1.60598 3 0 ack 40 ------- 0 5.0 0.0 20 292 r 1.606 4 7 cbr 1000 ------- 1 2.0 7.0 87 272 r 1.606 4 6 cbr 500 ------- 1 1.0 6.0 140 274 r 1.608 2 3 cbr 1000 ------- 1 2.0 7.0 94 309 + 1.608 3 4 cbr 1000 ------- 1 2.0 7.0 94 309 d 1.608 3 4 cbr 1000 ------- 1 2.0 7.0 94 309 - 1.608 3 4 cbr 1000 ------- 1 2.0 7.0 92 293 r 1.61 3 4 cbr 1000 ------- 1 2.0 7.0 89 281 + 1.61 4 7 cbr 1000 ------- 1 2.0 7.0 89 281 - 1.61 4 7 cbr 1000 ------- 1 2.0 7.0 89 281 r 1.61 4 6 cbr 500 ------- 1 1.0 6.0 141 277 r 1.61165 0 3 tcp 1000 ------- 0 0.0 5.0 39 311 + 1.61165 3 4 tcp 1000 ------- 0 0.0 5.0 39 311 r 1.61398 4 3 ack 40 ------- 0 5.0 0.0 20 297 + 1.61398 3 0 ack 40 ------- 0 5.0 0.0 20 297 - 1.61398 3 0 ack 40 ------- 0 5.0 0.0 20 297 r 1.614 3 4 cbr 500 ------- 1 1.0 6.0 144 284 + 1.614 4 6 cbr 500 ------- 1 1.0 6.0 144 284 - 1.614 4 6 cbr 500 ------- 1 1.0 6.0 144 284 - 1.616 3 4 tcp 1000 ------- 0 0.0 5.0 33 299 r 1.618 3 4 cbr 500 ------- 1 1.0 6.0 145 287 + 1.618 4 6 cbr 500 ------- 1 1.0 6.0 145 287 - 1.618 4 6 cbr 500 ------- 1 1.0 6.0 145 287 r 1.61805 3 0 ack 40 ------- 0 5.0 0.0 20 291 r 1.61965 0 3 tcp 1000 ------- 0 0.0 5.0 40 312 + 1.61965 3 4 tcp 1000 ------- 0 0.0 5.0 40 312 + 1.62 2 3 cbr 1000 ------- 1 2.0 7.0 96 315 - 1.62 2 3 cbr 1000 ------- 1 2.0 7.0 96 315 + 1.62 1 3 cbr 500 ------- 1 1.0 6.0 151 316 - 1.62 1 3 cbr 500 ------- 1 1.0 6.0 151 316 r 1.622 4 7 cbr 1000 ------- 1 2.0 7.0 88 276 r 1.622 4 6 cbr 500 ------- 1 1.0 6.0 142 279 r 1.624 1 3 cbr 500 ------- 1 1.0 6.0 150 314 + 1.624 3 4 cbr 500 ------- 1 1.0 6.0 150 314 d 1.624 3 4 cbr 500 ------- 1 1.0 6.0 150 314 - 1.624 3 4 tcp 1000 ------- 0 0.0 5.0 34 300 r 1.62598 4 3 ack 40 ------- 0 5.0 0.0 20 298 + 1.62598 3 0 ack 40 ------- 0 5.0 0.0 20 298 - 1.62598 3 0 ack 40 ------- 0 5.0 0.0 20 298 r 1.626 3 4 cbr 1000 ------- 1 2.0 7.0 90 286 + 1.626 4 7 cbr 1000 ------- 1 2.0 7.0 90 286 - 1.626 4 7 cbr 1000 ------- 1 2.0 7.0 90 286 r 1.626 4 6 cbr 500 ------- 1 1.0 6.0 143 282 r 1.62605 3 0 ack 40 ------- 0 5.0 0.0 20 292 r 1.628 2 3 cbr 1000 ------- 1 2.0 7.0 95 313 + 1.628 3 4 cbr 1000 ------- 1 2.0 7.0 95 313 v 1.6299999999999999 eval {set sim_annotation {Retransmit Packet_21 : SLOW START !}} r 1.63 3 4 cbr 500 ------- 1 1.0 6.0 146 290 + 1.63 4 6 cbr 500 ------- 1 1.0 6.0 146 290 - 1.63 4 6 cbr 500 ------- 1 1.0 6.0 146 290 - 1.632 3 4 cbr 500 ------- 1 1.0 6.0 148 302 r 1.63398 4 3 ack 40 ------- 0 5.0 0.0 20 303 + 1.63398 3 0 ack 40 ------- 0 5.0 0.0 20 303 - 1.63398 3 0 ack 40 ------- 0 5.0 0.0 20 303 r 1.63405 3 0 ack 40 ------- 0 5.0 0.0 20 297 + 1.63405 0 3 tcp 1000 ---A--- 0 0.0 5.0 21 317 - 1.63405 0 3 tcp 1000 ---A--- 0 0.0 5.0 21 317 - 1.636 3 4 cbr 1000 ------- 1 2.0 7.0 93 301 r 1.638 3 4 cbr 1000 ------- 1 2.0 7.0 91 289 + 1.638 4 7 cbr 1000 ------- 1 2.0 7.0 91 289 - 1.638 4 7 cbr 1000 ------- 1 2.0 7.0 91 289 r 1.638 4 7 cbr 1000 ------- 1 2.0 7.0 89 281 r 1.638 4 6 cbr 500 ------- 1 1.0 6.0 144 284 + 1.64 2 3 cbr 1000 ------- 1 2.0 7.0 97 318 - 1.64 2 3 cbr 1000 ------- 1 2.0 7.0 97 318 + 1.64 1 3 cbr 500 ------- 1 1.0 6.0 152 319 - 1.64 1 3 cbr 500 ------- 1 1.0 6.0 152 319 r 1.64198 4 3 ack 40 ------- 0 5.0 0.0 20 306 + 1.64198 3 0 ack 40 ------- 0 5.0 0.0 20 306 - 1.64198 3 0 ack 40 ------- 0 5.0 0.0 20 306 r 1.642 4 6 cbr 500 ------- 1 1.0 6.0 145 287 r 1.644 1 3 cbr 500 ------- 1 1.0 6.0 151 316 + 1.644 3 4 cbr 500 ------- 1 1.0 6.0 151 316 - 1.644 3 4 tcp 1000 ------- 0 0.0 5.0 35 304 r 1.646 3 4 tcp 1000 ------- 0 0.0 5.0 31 295 + 1.646 4 5 tcp 1000 ------- 0 0.0 5.0 31 295 - 1.646 4 5 tcp 1000 ------- 0 0.0 5.0 31 295 r 1.64605 3 0 ack 40 ------- 0 5.0 0.0 20 298 r 1.648 2 3 cbr 1000 ------- 1 2.0 7.0 96 315 + 1.648 3 4 cbr 1000 ------- 1 2.0 7.0 96 315 r 1.65 3 4 cbr 500 ------- 1 1.0 6.0 147 294 + 1.65 4 6 cbr 500 ------- 1 1.0 6.0 147 294 - 1.65 4 6 cbr 500 ------- 1 1.0 6.0 147 294 - 1.652 3 4 tcp 1000 ------- 0 0.0 5.0 36 305 r 1.654 4 7 cbr 1000 ------- 1 2.0 7.0 90 286 r 1.654 4 6 cbr 500 ------- 1 1.0 6.0 146 290 r 1.65405 3 0 ack 40 ------- 0 5.0 0.0 20 303 r 1.65565 0 3 tcp 1000 ---A--- 0 0.0 5.0 21 317 + 1.65565 3 4 tcp 1000 ---A--- 0 0.0 5.0 21 317 r 1.658 3 4 tcp 1000 ------- 0 0.0 5.0 32 296 + 1.658 4 5 tcp 1000 ------- 0 0.0 5.0 32 296 - 1.658 4 5 tcp 1000 ------- 0 0.0 5.0 32 296 + 1.66 2 3 cbr 1000 ------- 1 2.0 7.0 98 320 - 1.66 2 3 cbr 1000 ------- 1 2.0 7.0 98 320 + 1.66 1 3 cbr 500 ------- 1 1.0 6.0 153 321 - 1.66 1 3 cbr 500 ------- 1 1.0 6.0 153 321 - 1.66 3 4 tcp 1000 ------- 0 0.0 5.0 37 307 r 1.66205 3 0 ack 40 ------- 0 5.0 0.0 20 306 r 1.664 1 3 cbr 500 ------- 1 1.0 6.0 152 319 + 1.664 3 4 cbr 500 ------- 1 1.0 6.0 152 319 r 1.666 3 4 cbr 1000 ------- 1 2.0 7.0 92 293 + 1.666 4 7 cbr 1000 ------- 1 2.0 7.0 92 293 - 1.666 4 7 cbr 1000 ------- 1 2.0 7.0 92 293 r 1.666 4 7 cbr 1000 ------- 1 2.0 7.0 91 289 r 1.6676 4 5 tcp 1000 ------- 0 0.0 5.0 31 295 + 1.6676 5 4 ack 40 ------- 0 5.0 0.0 20 322 - 1.6676 5 4 ack 40 ------- 0 5.0 0.0 20 322 r 1.668 2 3 cbr 1000 ------- 1 2.0 7.0 97 318 + 1.668 3 4 cbr 1000 ------- 1 2.0 7.0 97 318 - 1.668 3 4 tcp 1000 ------- 0 0.0 5.0 38 308 v 1.6699999999999999 eval {set sim_annotation {8 Ack_20s }} r 1.674 3 4 tcp 1000 ------- 0 0.0 5.0 33 299 + 1.674 4 5 tcp 1000 ------- 0 0.0 5.0 33 299 - 1.674 4 5 tcp 1000 ------- 0 0.0 5.0 33 299 r 1.674 4 6 cbr 500 ------- 1 1.0 6.0 147 294 - 1.676 3 4 tcp 1000 ------- 0 0.0 5.0 39 311 r 1.6796 4 5 tcp 1000 ------- 0 0.0 5.0 32 296 + 1.6796 5 4 ack 40 ------- 0 5.0 0.0 20 323 - 1.6796 5 4 ack 40 ------- 0 5.0 0.0 20 323 + 1.68 2 3 cbr 1000 ------- 1 2.0 7.0 99 324 - 1.68 2 3 cbr 1000 ------- 1 2.0 7.0 99 324 + 1.68 1 3 cbr 500 ------- 1 1.0 6.0 154 325 - 1.68 1 3 cbr 500 ------- 1 1.0 6.0 154 325 r 1.682 3 4 tcp 1000 ------- 0 0.0 5.0 34 300 + 1.682 4 5 tcp 1000 ------- 0 0.0 5.0 34 300 - 1.682 4 5 tcp 1000 ------- 0 0.0 5.0 34 300 r 1.684 1 3 cbr 500 ------- 1 1.0 6.0 153 321 + 1.684 3 4 cbr 500 ------- 1 1.0 6.0 153 321 - 1.684 3 4 tcp 1000 ------- 0 0.0 5.0 40 312 r 1.686 3 4 cbr 500 ------- 1 1.0 6.0 148 302 + 1.686 4 6 cbr 500 ------- 1 1.0 6.0 148 302 - 1.686 4 6 cbr 500 ------- 1 1.0 6.0 148 302 r 1.68766 5 4 ack 40 ------- 0 5.0 0.0 20 322 + 1.68766 4 3 ack 40 ------- 0 5.0 0.0 20 322 - 1.68766 4 3 ack 40 ------- 0 5.0 0.0 20 322 r 1.688 2 3 cbr 1000 ------- 1 2.0 7.0 98 320 + 1.688 3 4 cbr 1000 ------- 1 2.0 7.0 98 320 - 1.692 3 4 cbr 1000 ------- 1 2.0 7.0 95 313 r 1.694 3 4 cbr 1000 ------- 1 2.0 7.0 93 301 + 1.694 4 7 cbr 1000 ------- 1 2.0 7.0 93 301 - 1.694 4 7 cbr 1000 ------- 1 2.0 7.0 93 301 r 1.694 4 7 cbr 1000 ------- 1 2.0 7.0 92 293 r 1.6956 4 5 tcp 1000 ------- 0 0.0 5.0 33 299 + 1.6956 5 4 ack 40 ------- 0 5.0 0.0 20 326 - 1.6956 5 4 ack 40 ------- 0 5.0 0.0 20 326 r 1.69966 5 4 ack 40 ------- 0 5.0 0.0 20 323 + 1.69966 4 3 ack 40 ------- 0 5.0 0.0 20 323 - 1.69966 4 3 ack 40 ------- 0 5.0 0.0 20 323 + 1.7 2 3 cbr 1000 ------- 1 2.0 7.0 100 327 - 1.7 2 3 cbr 1000 ------- 1 2.0 7.0 100 327 + 1.7 1 3 cbr 500 ------- 1 1.0 6.0 155 328 - 1.7 1 3 cbr 500 ------- 1 1.0 6.0 155 328 - 1.7 3 4 cbr 500 ------- 1 1.0 6.0 151 316 r 1.702 3 4 tcp 1000 ------- 0 0.0 5.0 35 304 + 1.702 4 5 tcp 1000 ------- 0 0.0 5.0 35 304 - 1.702 4 5 tcp 1000 ------- 0 0.0 5.0 35 304 r 1.7036 4 5 tcp 1000 ------- 0 0.0 5.0 34 300 + 1.7036 5 4 ack 40 ------- 0 5.0 0.0 20 329 - 1.7036 5 4 ack 40 ------- 0 5.0 0.0 20 329 r 1.704 1 3 cbr 500 ------- 1 1.0 6.0 154 325 + 1.704 3 4 cbr 500 ------- 1 1.0 6.0 154 325 - 1.704 3 4 cbr 1000 ------- 1 2.0 7.0 96 315 r 1.708 2 3 cbr 1000 ------- 1 2.0 7.0 99 324 + 1.708 3 4 cbr 1000 ------- 1 2.0 7.0 99 324 r 1.71 3 4 tcp 1000 ------- 0 0.0 5.0 36 305 + 1.71 4 5 tcp 1000 ------- 0 0.0 5.0 36 305 - 1.71 4 5 tcp 1000 ------- 0 0.0 5.0 36 305 r 1.71 4 6 cbr 500 ------- 1 1.0 6.0 148 302 + 1.71 2 3 cbr 1000 ------- 1 2.0 7.0 101 330 - 1.71 2 3 cbr 1000 ------- 1 2.0 7.0 101 330 - 1.712 3 4 tcp 1000 ---A--- 0 0.0 5.0 21 317 r 1.71566 5 4 ack 40 ------- 0 5.0 0.0 20 326 + 1.71566 4 3 ack 40 ------- 0 5.0 0.0 20 326 - 1.71566 4 3 ack 40 ------- 0 5.0 0.0 20 326 r 1.718 3 4 tcp 1000 ------- 0 0.0 5.0 37 307 + 1.718 4 5 tcp 1000 ------- 0 0.0 5.0 37 307 - 1.718 4 5 tcp 1000 ------- 0 0.0 5.0 37 307 + 1.72 1 3 cbr 500 ------- 1 1.0 6.0 156 331 - 1.72 1 3 cbr 500 ------- 1 1.0 6.0 156 331 + 1.72 2 3 cbr 1000 ------- 1 2.0 7.0 102 332 - 1.72 2 3 cbr 1000 ------- 1 2.0 7.0 102 332 - 1.72 3 4 cbr 500 ------- 1 1.0 6.0 152 319 r 1.722 4 7 cbr 1000 ------- 1 2.0 7.0 93 301 r 1.7236 4 5 tcp 1000 ------- 0 0.0 5.0 35 304 + 1.7236 5 4 ack 40 ------- 0 5.0 0.0 20 333 - 1.7236 5 4 ack 40 ------- 0 5.0 0.0 20 333 r 1.72366 5 4 ack 40 ------- 0 5.0 0.0 20 329 + 1.72366 4 3 ack 40 ------- 0 5.0 0.0 20 329 - 1.72366 4 3 ack 40 ------- 0 5.0 0.0 20 329 r 1.724 1 3 cbr 500 ------- 1 1.0 6.0 155 328 + 1.724 3 4 cbr 500 ------- 1 1.0 6.0 155 328 - 1.724 3 4 cbr 1000 ------- 1 2.0 7.0 97 318 r 1.726 3 4 tcp 1000 ------- 0 0.0 5.0 38 308 + 1.726 4 5 tcp 1000 ------- 0 0.0 5.0 38 308 - 1.726 4 5 tcp 1000 ------- 0 0.0 5.0 38 308 r 1.728 2 3 cbr 1000 ------- 1 2.0 7.0 100 327 + 1.728 3 4 cbr 1000 ------- 1 2.0 7.0 100 327 + 1.73 2 3 cbr 1000 ------- 1 2.0 7.0 103 334 - 1.73 2 3 cbr 1000 ------- 1 2.0 7.0 103 334 r 1.7316 4 5 tcp 1000 ------- 0 0.0 5.0 36 305 + 1.7316 5 4 ack 40 ------- 0 5.0 0.0 20 335 - 1.7316 5 4 ack 40 ------- 0 5.0 0.0 20 335 - 1.732 3 4 cbr 500 ------- 1 1.0 6.0 153 321 r 1.734 3 4 tcp 1000 ------- 0 0.0 5.0 39 311 + 1.734 4 5 tcp 1000 ------- 0 0.0 5.0 39 311 - 1.734 4 5 tcp 1000 ------- 0 0.0 5.0 39 311 - 1.736 3 4 cbr 1000 ------- 1 2.0 7.0 98 320 r 1.73798 4 3 ack 40 ------- 0 5.0 0.0 20 322 + 1.73798 3 0 ack 40 ------- 0 5.0 0.0 20 322 - 1.73798 3 0 ack 40 ------- 0 5.0 0.0 20 322 r 1.738 2 3 cbr 1000 ------- 1 2.0 7.0 101 330 + 1.738 3 4 cbr 1000 ------- 1 2.0 7.0 101 330 r 1.7396 4 5 tcp 1000 ------- 0 0.0 5.0 37 307 + 1.7396 5 4 ack 40 ------- 0 5.0 0.0 20 336 - 1.7396 5 4 ack 40 ------- 0 5.0 0.0 20 336 + 1.74 1 3 cbr 500 ------- 1 1.0 6.0 157 337 - 1.74 1 3 cbr 500 ------- 1 1.0 6.0 157 337 + 1.74 2 3 cbr 1000 ------- 1 2.0 7.0 104 338 - 1.74 2 3 cbr 1000 ------- 1 2.0 7.0 104 338 r 1.742 3 4 tcp 1000 ------- 0 0.0 5.0 40 312 + 1.742 4 5 tcp 1000 ------- 0 0.0 5.0 40 312 - 1.742 4 5 tcp 1000 ------- 0 0.0 5.0 40 312 r 1.74366 5 4 ack 40 ------- 0 5.0 0.0 20 333 + 1.74366 4 3 ack 40 ------- 0 5.0 0.0 20 333 - 1.74366 4 3 ack 40 ------- 0 5.0 0.0 20 333 r 1.744 1 3 cbr 500 ------- 1 1.0 6.0 156 331 + 1.744 3 4 cbr 500 ------- 1 1.0 6.0 156 331 - 1.744 3 4 cbr 500 ------- 1 1.0 6.0 154 325 r 1.7476 4 5 tcp 1000 ------- 0 0.0 5.0 38 308 + 1.7476 5 4 ack 40 ------- 0 5.0 0.0 20 339 - 1.7476 5 4 ack 40 ------- 0 5.0 0.0 20 339 r 1.748 2 3 cbr 1000 ------- 1 2.0 7.0 102 332 + 1.748 3 4 cbr 1000 ------- 1 2.0 7.0 102 332 - 1.748 3 4 cbr 1000 ------- 1 2.0 7.0 99 324 r 1.74998 4 3 ack 40 ------- 0 5.0 0.0 20 323 + 1.74998 3 0 ack 40 ------- 0 5.0 0.0 20 323 - 1.74998 3 0 ack 40 ------- 0 5.0 0.0 20 323 r 1.75 3 4 cbr 1000 ------- 1 2.0 7.0 95 313 + 1.75 4 7 cbr 1000 ------- 1 2.0 7.0 95 313 - 1.75 4 7 cbr 1000 ------- 1 2.0 7.0 95 313 + 1.75 2 3 cbr 1000 ------- 1 2.0 7.0 105 340 - 1.75 2 3 cbr 1000 ------- 1 2.0 7.0 105 340 r 1.75166 5 4 ack 40 ------- 0 5.0 0.0 20 335 + 1.75166 4 3 ack 40 ------- 0 5.0 0.0 20 335 - 1.75166 4 3 ack 40 ------- 0 5.0 0.0 20 335 r 1.754 3 4 cbr 500 ------- 1 1.0 6.0 151 316 + 1.754 4 6 cbr 500 ------- 1 1.0 6.0 151 316 - 1.754 4 6 cbr 500 ------- 1 1.0 6.0 151 316 r 1.7556 4 5 tcp 1000 ------- 0 0.0 5.0 39 311 + 1.7556 5 4 ack 40 ------- 0 5.0 0.0 20 341 - 1.7556 5 4 ack 40 ------- 0 5.0 0.0 20 341 - 1.756 3 4 cbr 500 ------- 1 1.0 6.0 155 328 r 1.758 2 3 cbr 1000 ------- 1 2.0 7.0 103 334 + 1.758 3 4 cbr 1000 ------- 1 2.0 7.0 103 334 r 1.75805 3 0 ack 40 ------- 0 5.0 0.0 20 322 r 1.75966 5 4 ack 40 ------- 0 5.0 0.0 20 336 + 1.75966 4 3 ack 40 ------- 0 5.0 0.0 20 336 - 1.75966 4 3 ack 40 ------- 0 5.0 0.0 20 336 + 1.76 1 3 cbr 500 ------- 1 1.0 6.0 158 342 - 1.76 1 3 cbr 500 ------- 1 1.0 6.0 158 342 + 1.76 2 3 cbr 1000 ------- 1 2.0 7.0 106 343 - 1.76 2 3 cbr 1000 ------- 1 2.0 7.0 106 343 - 1.76 3 4 cbr 1000 ------- 1 2.0 7.0 100 327 r 1.762 3 4 cbr 1000 ------- 1 2.0 7.0 96 315 + 1.762 4 7 cbr 1000 ------- 1 2.0 7.0 96 315 - 1.762 4 7 cbr 1000 ------- 1 2.0 7.0 96 315 r 1.7636 4 5 tcp 1000 ------- 0 0.0 5.0 40 312 + 1.7636 5 4 ack 40 ------- 0 5.0 0.0 20 344 - 1.7636 5 4 ack 40 ------- 0 5.0 0.0 20 344 r 1.764 1 3 cbr 500 ------- 1 1.0 6.0 157 337 + 1.764 3 4 cbr 500 ------- 1 1.0 6.0 157 337 r 1.76598 4 3 ack 40 ------- 0 5.0 0.0 20 326 + 1.76598 3 0 ack 40 ------- 0 5.0 0.0 20 326 - 1.76598 3 0 ack 40 ------- 0 5.0 0.0 20 326 r 1.76766 5 4 ack 40 ------- 0 5.0 0.0 20 339 + 1.76766 4 3 ack 40 ------- 0 5.0 0.0 20 339 - 1.76766 4 3 ack 40 ------- 0 5.0 0.0 20 339 r 1.768 2 3 cbr 1000 ------- 1 2.0 7.0 104 338 + 1.768 3 4 cbr 1000 ------- 1 2.0 7.0 104 338 - 1.768 3 4 cbr 1000 ------- 1 2.0 7.0 101 330 r 1.77 3 4 tcp 1000 ---A--- 0 0.0 5.0 21 317 + 1.77 4 5 tcp 1000 ---A--- 0 0.0 5.0 21 317 - 1.77 4 5 tcp 1000 ---A--- 0 0.0 5.0 21 317 + 1.77 2 3 cbr 1000 ------- 1 2.0 7.0 107 345 - 1.77 2 3 cbr 1000 ------- 1 2.0 7.0 107 345 r 1.77005 3 0 ack 40 ------- 0 5.0 0.0 20 323 r 1.77398 4 3 ack 40 ------- 0 5.0 0.0 20 329 + 1.77398 3 0 ack 40 ------- 0 5.0 0.0 20 329 - 1.77398 3 0 ack 40 ------- 0 5.0 0.0 20 329 r 1.774 3 4 cbr 500 ------- 1 1.0 6.0 152 319 + 1.774 4 6 cbr 500 ------- 1 1.0 6.0 152 319 - 1.774 4 6 cbr 500 ------- 1 1.0 6.0 152 319 r 1.77566 5 4 ack 40 ------- 0 5.0 0.0 20 341 + 1.77566 4 3 ack 40 ------- 0 5.0 0.0 20 341 - 1.77566 4 3 ack 40 ------- 0 5.0 0.0 20 341 - 1.776 3 4 cbr 500 ------- 1 1.0 6.0 156 331 r 1.778 4 7 cbr 1000 ------- 1 2.0 7.0 95 313 r 1.778 2 3 cbr 1000 ------- 1 2.0 7.0 105 340 + 1.778 3 4 cbr 1000 ------- 1 2.0 7.0 105 340 r 1.778 4 6 cbr 500 ------- 1 1.0 6.0 151 316 + 1.78 1 3 cbr 500 ------- 1 1.0 6.0 159 346 - 1.78 1 3 cbr 500 ------- 1 1.0 6.0 159 346 + 1.78 2 3 cbr 1000 ------- 1 2.0 7.0 108 347 - 1.78 2 3 cbr 1000 ------- 1 2.0 7.0 108 347 - 1.78 3 4 cbr 1000 ------- 1 2.0 7.0 102 332 r 1.782 3 4 cbr 1000 ------- 1 2.0 7.0 97 318 + 1.782 4 7 cbr 1000 ------- 1 2.0 7.0 97 318 - 1.782 4 7 cbr 1000 ------- 1 2.0 7.0 97 318 r 1.78366 5 4 ack 40 ------- 0 5.0 0.0 20 344 + 1.78366 4 3 ack 40 ------- 0 5.0 0.0 20 344 - 1.78366 4 3 ack 40 ------- 0 5.0 0.0 20 344 r 1.784 1 3 cbr 500 ------- 1 1.0 6.0 158 342 + 1.784 3 4 cbr 500 ------- 1 1.0 6.0 158 342 r 1.786 3 4 cbr 500 ------- 1 1.0 6.0 153 321 + 1.786 4 6 cbr 500 ------- 1 1.0 6.0 153 321 - 1.786 4 6 cbr 500 ------- 1 1.0 6.0 153 321 r 1.78605 3 0 ack 40 ------- 0 5.0 0.0 20 326 r 1.788 2 3 cbr 1000 ------- 1 2.0 7.0 106 343 + 1.788 3 4 cbr 1000 ------- 1 2.0 7.0 106 343 - 1.788 3 4 cbr 1000 ------- 1 2.0 7.0 103 334 r 1.79 4 7 cbr 1000 ------- 1 2.0 7.0 96 315 + 1.79 2 3 cbr 1000 ------- 1 2.0 7.0 109 348 - 1.79 2 3 cbr 1000 ------- 1 2.0 7.0 109 348 r 1.7916 4 5 tcp 1000 ---A--- 0 0.0 5.0 21 317 + 1.7916 5 4 ack 40 ------- 0 5.0 0.0 21 349 - 1.7916 5 4 ack 40 ------- 0 5.0 0.0 21 349 r 1.79398 4 3 ack 40 ------- 0 5.0 0.0 20 333 + 1.79398 3 0 ack 40 ------- 0 5.0 0.0 20 333 - 1.79398 3 0 ack 40 ------- 0 5.0 0.0 20 333 r 1.794 3 4 cbr 1000 ------- 1 2.0 7.0 98 320 + 1.794 4 7 cbr 1000 ------- 1 2.0 7.0 98 320 - 1.794 4 7 cbr 1000 ------- 1 2.0 7.0 98 320 r 1.79405 3 0 ack 40 ------- 0 5.0 0.0 20 329 - 1.796 3 4 cbr 500 ------- 1 1.0 6.0 157 337 r 1.798 3 4 cbr 500 ------- 1 1.0 6.0 154 325 + 1.798 4 6 cbr 500 ------- 1 1.0 6.0 154 325 - 1.798 4 6 cbr 500 ------- 1 1.0 6.0 154 325 r 1.798 2 3 cbr 1000 ------- 1 2.0 7.0 107 345 + 1.798 3 4 cbr 1000 ------- 1 2.0 7.0 107 345 r 1.798 4 6 cbr 500 ------- 1 1.0 6.0 152 319 v 1.8 eval {set sim_annotation {Ack_21 }} + 1.8 1 3 cbr 500 ------- 1 1.0 6.0 160 350 - 1.8 1 3 cbr 500 ------- 1 1.0 6.0 160 350 + 1.8 2 3 cbr 1000 ------- 1 2.0 7.0 110 351 - 1.8 2 3 cbr 1000 ------- 1 2.0 7.0 110 351 - 1.8 3 4 cbr 1000 ------- 1 2.0 7.0 104 338 r 1.80198 4 3 ack 40 ------- 0 5.0 0.0 20 335 + 1.80198 3 0 ack 40 ------- 0 5.0 0.0 20 335 - 1.80198 3 0 ack 40 ------- 0 5.0 0.0 20 335 r 1.804 1 3 cbr 500 ------- 1 1.0 6.0 159 346 + 1.804 3 4 cbr 500 ------- 1 1.0 6.0 159 346 r 1.806 3 4 cbr 1000 ------- 1 2.0 7.0 99 324 + 1.806 4 7 cbr 1000 ------- 1 2.0 7.0 99 324 - 1.806 4 7 cbr 1000 ------- 1 2.0 7.0 99 324 r 1.808 2 3 cbr 1000 ------- 1 2.0 7.0 108 347 + 1.808 3 4 cbr 1000 ------- 1 2.0 7.0 108 347 - 1.808 3 4 cbr 1000 ------- 1 2.0 7.0 105 340 r 1.80998 4 3 ack 40 ------- 0 5.0 0.0 20 336 + 1.80998 3 0 ack 40 ------- 0 5.0 0.0 20 336 - 1.80998 3 0 ack 40 ------- 0 5.0 0.0 20 336 r 1.81 3 4 cbr 500 ------- 1 1.0 6.0 155 328 + 1.81 4 6 cbr 500 ------- 1 1.0 6.0 155 328 - 1.81 4 6 cbr 500 ------- 1 1.0 6.0 155 328 r 1.81 4 7 cbr 1000 ------- 1 2.0 7.0 97 318 r 1.81 4 6 cbr 500 ------- 1 1.0 6.0 153 321 + 1.81 2 3 cbr 1000 ------- 1 2.0 7.0 111 352 - 1.81 2 3 cbr 1000 ------- 1 2.0 7.0 111 352 r 1.81166 5 4 ack 40 ------- 0 5.0 0.0 21 349 + 1.81166 4 3 ack 40 ------- 0 5.0 0.0 21 349 - 1.81166 4 3 ack 40 ------- 0 5.0 0.0 21 349 r 1.81405 3 0 ack 40 ------- 0 5.0 0.0 20 333 - 1.816 3 4 cbr 500 ------- 1 1.0 6.0 158 342 r 1.81798 4 3 ack 40 ------- 0 5.0 0.0 20 339 + 1.81798 3 0 ack 40 ------- 0 5.0 0.0 20 339 - 1.81798 3 0 ack 40 ------- 0 5.0 0.0 20 339 r 1.818 3 4 cbr 1000 ------- 1 2.0 7.0 100 327 + 1.818 4 7 cbr 1000 ------- 1 2.0 7.0 100 327 - 1.818 4 7 cbr 1000 ------- 1 2.0 7.0 100 327 r 1.818 2 3 cbr 1000 ------- 1 2.0 7.0 109 348 + 1.818 3 4 cbr 1000 ------- 1 2.0 7.0 109 348 + 1.82 1 3 cbr 500 ------- 1 1.0 6.0 161 353 - 1.82 1 3 cbr 500 ------- 1 1.0 6.0 161 353 + 1.82 2 3 cbr 1000 ------- 1 2.0 7.0 112 354 - 1.82 2 3 cbr 1000 ------- 1 2.0 7.0 112 354 - 1.82 3 4 cbr 1000 ------- 1 2.0 7.0 106 343 r 1.822 4 7 cbr 1000 ------- 1 2.0 7.0 98 320 r 1.822 4 6 cbr 500 ------- 1 1.0 6.0 154 325 r 1.82205 3 0 ack 40 ------- 0 5.0 0.0 20 335 r 1.824 1 3 cbr 500 ------- 1 1.0 6.0 160 350 + 1.824 3 4 cbr 500 ------- 1 1.0 6.0 160 350 r 1.82598 4 3 ack 40 ------- 0 5.0 0.0 20 341 + 1.82598 3 0 ack 40 ------- 0 5.0 0.0 20 341 - 1.82598 3 0 ack 40 ------- 0 5.0 0.0 20 341 r 1.826 3 4 cbr 1000 ------- 1 2.0 7.0 101 330 + 1.826 4 7 cbr 1000 ------- 1 2.0 7.0 101 330 - 1.826 4 7 cbr 1000 ------- 1 2.0 7.0 101 330 r 1.828 2 3 cbr 1000 ------- 1 2.0 7.0 110 351 + 1.828 3 4 cbr 1000 ------- 1 2.0 7.0 110 351 - 1.828 3 4 cbr 1000 ------- 1 2.0 7.0 107 345 r 1.83 3 4 cbr 500 ------- 1 1.0 6.0 156 331 + 1.83 4 6 cbr 500 ------- 1 1.0 6.0 156 331 - 1.83 4 6 cbr 500 ------- 1 1.0 6.0 156 331 + 1.83 2 3 cbr 1000 ------- 1 2.0 7.0 113 355 - 1.83 2 3 cbr 1000 ------- 1 2.0 7.0 113 355 r 1.83005 3 0 ack 40 ------- 0 5.0 0.0 20 336 r 1.83398 4 3 ack 40 ------- 0 5.0 0.0 20 344 + 1.83398 3 0 ack 40 ------- 0 5.0 0.0 20 344 - 1.83398 3 0 ack 40 ------- 0 5.0 0.0 20 344 r 1.834 4 7 cbr 1000 ------- 1 2.0 7.0 99 324 r 1.834 4 6 cbr 500 ------- 1 1.0 6.0 155 328 - 1.836 3 4 cbr 500 ------- 1 1.0 6.0 159 346 r 1.838 3 4 cbr 1000 ------- 1 2.0 7.0 102 332 + 1.838 4 7 cbr 1000 ------- 1 2.0 7.0 102 332 - 1.838 4 7 cbr 1000 ------- 1 2.0 7.0 102 332 r 1.838 2 3 cbr 1000 ------- 1 2.0 7.0 111 352 + 1.838 3 4 cbr 1000 ------- 1 2.0 7.0 111 352 r 1.83805 3 0 ack 40 ------- 0 5.0 0.0 20 339 + 1.84 1 3 cbr 500 ------- 1 1.0 6.0 162 356 - 1.84 1 3 cbr 500 ------- 1 1.0 6.0 162 356 + 1.84 2 3 cbr 1000 ------- 1 2.0 7.0 114 357 - 1.84 2 3 cbr 1000 ------- 1 2.0 7.0 114 357 - 1.84 3 4 cbr 1000 ------- 1 2.0 7.0 108 347 r 1.844 1 3 cbr 500 ------- 1 1.0 6.0 161 353 + 1.844 3 4 cbr 500 ------- 1 1.0 6.0 161 353 r 1.846 3 4 cbr 1000 ------- 1 2.0 7.0 103 334 + 1.846 4 7 cbr 1000 ------- 1 2.0 7.0 103 334 r 1.846 4 7 cbr 1000 ------- 1 2.0 7.0 100 327 - 1.846 4 7 cbr 1000 ------- 1 2.0 7.0 103 334 r 1.84605 3 0 ack 40 ------- 0 5.0 0.0 20 341 r 1.848 2 3 cbr 1000 ------- 1 2.0 7.0 112 354 + 1.848 3 4 cbr 1000 ------- 1 2.0 7.0 112 354 - 1.848 3 4 cbr 1000 ------- 1 2.0 7.0 109 348 r 1.85 3 4 cbr 500 ------- 1 1.0 6.0 157 337 + 1.85 4 6 cbr 500 ------- 1 1.0 6.0 157 337 - 1.85 4 6 cbr 500 ------- 1 1.0 6.0 157 337 + 1.85 2 3 cbr 1000 ------- 1 2.0 7.0 115 358 - 1.85 2 3 cbr 1000 ------- 1 2.0 7.0 115 358 r 1.854 4 7 cbr 1000 ------- 1 2.0 7.0 101 330 r 1.854 4 6 cbr 500 ------- 1 1.0 6.0 156 331 r 1.85405 3 0 ack 40 ------- 0 5.0 0.0 20 344 - 1.856 3 4 cbr 500 ------- 1 1.0 6.0 160 350 r 1.858 3 4 cbr 1000 ------- 1 2.0 7.0 104 338 + 1.858 4 7 cbr 1000 ------- 1 2.0 7.0 104 338 - 1.858 4 7 cbr 1000 ------- 1 2.0 7.0 104 338 r 1.858 2 3 cbr 1000 ------- 1 2.0 7.0 113 355 + 1.858 3 4 cbr 1000 ------- 1 2.0 7.0 113 355 + 1.86 1 3 cbr 500 ------- 1 1.0 6.0 163 359 - 1.86 1 3 cbr 500 ------- 1 1.0 6.0 163 359 + 1.86 2 3 cbr 1000 ------- 1 2.0 7.0 116 360 - 1.86 2 3 cbr 1000 ------- 1 2.0 7.0 116 360 - 1.86 3 4 cbr 1000 ------- 1 2.0 7.0 110 351 r 1.86198 4 3 ack 40 ------- 0 5.0 0.0 21 349 + 1.86198 3 0 ack 40 ------- 0 5.0 0.0 21 349 - 1.86198 3 0 ack 40 ------- 0 5.0 0.0 21 349 r 1.864 1 3 cbr 500 ------- 1 1.0 6.0 162 356 + 1.864 3 4 cbr 500 ------- 1 1.0 6.0 162 356 r 1.866 3 4 cbr 1000 ------- 1 2.0 7.0 105 340 + 1.866 4 7 cbr 1000 ------- 1 2.0 7.0 105 340 r 1.866 4 7 cbr 1000 ------- 1 2.0 7.0 102 332 - 1.866 4 7 cbr 1000 ------- 1 2.0 7.0 105 340 r 1.868 2 3 cbr 1000 ------- 1 2.0 7.0 114 357 + 1.868 3 4 cbr 1000 ------- 1 2.0 7.0 114 357 - 1.868 3 4 cbr 1000 ------- 1 2.0 7.0 111 352 r 1.87 3 4 cbr 500 ------- 1 1.0 6.0 158 342 + 1.87 4 6 cbr 500 ------- 1 1.0 6.0 158 342 - 1.87 4 6 cbr 500 ------- 1 1.0 6.0 158 342 + 1.87 2 3 cbr 1000 ------- 1 2.0 7.0 117 361 - 1.87 2 3 cbr 1000 ------- 1 2.0 7.0 117 361 r 1.874 4 7 cbr 1000 ------- 1 2.0 7.0 103 334 r 1.874 4 6 cbr 500 ------- 1 1.0 6.0 157 337 - 1.876 3 4 cbr 500 ------- 1 1.0 6.0 161 353 r 1.878 3 4 cbr 1000 ------- 1 2.0 7.0 106 343 + 1.878 4 7 cbr 1000 ------- 1 2.0 7.0 106 343 - 1.878 4 7 cbr 1000 ------- 1 2.0 7.0 106 343 r 1.878 2 3 cbr 1000 ------- 1 2.0 7.0 115 358 + 1.878 3 4 cbr 1000 ------- 1 2.0 7.0 115 358 + 1.88 1 3 cbr 500 ------- 1 1.0 6.0 164 362 - 1.88 1 3 cbr 500 ------- 1 1.0 6.0 164 362 + 1.88 2 3 cbr 1000 ------- 1 2.0 7.0 118 363 - 1.88 2 3 cbr 1000 ------- 1 2.0 7.0 118 363 - 1.88 3 4 cbr 1000 ------- 1 2.0 7.0 112 354 r 1.88205 3 0 ack 40 ------- 0 5.0 0.0 21 349 + 1.88205 0 3 tcp 1000 ------- 0 0.0 5.0 22 364 - 1.88205 0 3 tcp 1000 ------- 0 0.0 5.0 22 364 + 1.88205 0 3 tcp 1000 ------- 0 0.0 5.0 23 365 - 1.88365 0 3 tcp 1000 ------- 0 0.0 5.0 23 365 r 1.884 1 3 cbr 500 ------- 1 1.0 6.0 163 359 + 1.884 3 4 cbr 500 ------- 1 1.0 6.0 163 359 r 1.886 3 4 cbr 1000 ------- 1 2.0 7.0 107 345 + 1.886 4 7 cbr 1000 ------- 1 2.0 7.0 107 345 r 1.886 4 7 cbr 1000 ------- 1 2.0 7.0 104 338 - 1.886 4 7 cbr 1000 ------- 1 2.0 7.0 107 345 r 1.888 2 3 cbr 1000 ------- 1 2.0 7.0 116 360 + 1.888 3 4 cbr 1000 ------- 1 2.0 7.0 116 360 - 1.888 3 4 cbr 1000 ------- 1 2.0 7.0 113 355 v 1.8899999999999999 eval {set sim_annotation {Send Packet_22,23 : window size 2}} r 1.89 3 4 cbr 500 ------- 1 1.0 6.0 159 346 + 1.89 4 6 cbr 500 ------- 1 1.0 6.0 159 346 - 1.89 4 6 cbr 500 ------- 1 1.0 6.0 159 346 + 1.89 2 3 cbr 1000 ------- 1 2.0 7.0 119 366 - 1.89 2 3 cbr 1000 ------- 1 2.0 7.0 119 366 r 1.894 4 7 cbr 1000 ------- 1 2.0 7.0 105 340 r 1.894 4 6 cbr 500 ------- 1 1.0 6.0 158 342 - 1.896 3 4 cbr 500 ------- 1 1.0 6.0 162 356 r 1.898 3 4 cbr 1000 ------- 1 2.0 7.0 108 347 + 1.898 4 7 cbr 1000 ------- 1 2.0 7.0 108 347 - 1.898 4 7 cbr 1000 ------- 1 2.0 7.0 108 347 r 1.898 2 3 cbr 1000 ------- 1 2.0 7.0 117 361 + 1.898 3 4 cbr 1000 ------- 1 2.0 7.0 117 361 + 1.9 1 3 cbr 500 ------- 1 1.0 6.0 165 367 - 1.9 1 3 cbr 500 ------- 1 1.0 6.0 165 367 + 1.9 2 3 cbr 1000 ------- 1 2.0 7.0 120 368 - 1.9 2 3 cbr 1000 ------- 1 2.0 7.0 120 368 - 1.9 3 4 cbr 1000 ------- 1 2.0 7.0 114 357 r 1.90365 0 3 tcp 1000 ------- 0 0.0 5.0 22 364 + 1.90365 3 4 tcp 1000 ------- 0 0.0 5.0 22 364 r 1.904 1 3 cbr 500 ------- 1 1.0 6.0 164 362 + 1.904 3 4 cbr 500 ------- 1 1.0 6.0 164 362 r 1.90525 0 3 tcp 1000 ------- 0 0.0 5.0 23 365 + 1.90525 3 4 tcp 1000 ------- 0 0.0 5.0 23 365 r 1.906 3 4 cbr 1000 ------- 1 2.0 7.0 109 348 + 1.906 4 7 cbr 1000 ------- 1 2.0 7.0 109 348 r 1.906 4 7 cbr 1000 ------- 1 2.0 7.0 106 343 - 1.906 4 7 cbr 1000 ------- 1 2.0 7.0 109 348 r 1.908 2 3 cbr 1000 ------- 1 2.0 7.0 118 363 + 1.908 3 4 cbr 1000 ------- 1 2.0 7.0 118 363 - 1.908 3 4 cbr 1000 ------- 1 2.0 7.0 115 358 r 1.91 3 4 cbr 500 ------- 1 1.0 6.0 160 350 + 1.91 4 6 cbr 500 ------- 1 1.0 6.0 160 350 - 1.91 4 6 cbr 500 ------- 1 1.0 6.0 160 350 + 1.91 2 3 cbr 1000 ------- 1 2.0 7.0 121 369 - 1.91 2 3 cbr 1000 ------- 1 2.0 7.0 121 369 r 1.914 4 7 cbr 1000 ------- 1 2.0 7.0 107 345 r 1.914 4 6 cbr 500 ------- 1 1.0 6.0 159 346 - 1.916 3 4 cbr 500 ------- 1 1.0 6.0 163 359 r 1.918 3 4 cbr 1000 ------- 1 2.0 7.0 110 351 + 1.918 4 7 cbr 1000 ------- 1 2.0 7.0 110 351 - 1.918 4 7 cbr 1000 ------- 1 2.0 7.0 110 351 r 1.918 2 3 cbr 1000 ------- 1 2.0 7.0 119 366 + 1.918 3 4 cbr 1000 ------- 1 2.0 7.0 119 366 + 1.92 1 3 cbr 500 ------- 1 1.0 6.0 166 370 - 1.92 1 3 cbr 500 ------- 1 1.0 6.0 166 370 + 1.92 2 3 cbr 1000 ------- 1 2.0 7.0 122 371 - 1.92 2 3 cbr 1000 ------- 1 2.0 7.0 122 371 - 1.92 3 4 cbr 1000 ------- 1 2.0 7.0 116 360 r 1.924 1 3 cbr 500 ------- 1 1.0 6.0 165 367 + 1.924 3 4 cbr 500 ------- 1 1.0 6.0 165 367 r 1.926 3 4 cbr 1000 ------- 1 2.0 7.0 111 352 + 1.926 4 7 cbr 1000 ------- 1 2.0 7.0 111 352 r 1.926 4 7 cbr 1000 ------- 1 2.0 7.0 108 347 - 1.926 4 7 cbr 1000 ------- 1 2.0 7.0 111 352 r 1.928 2 3 cbr 1000 ------- 1 2.0 7.0 120 368 + 1.928 3 4 cbr 1000 ------- 1 2.0 7.0 120 368 - 1.928 3 4 cbr 1000 ------- 1 2.0 7.0 117 361 r 1.93 3 4 cbr 500 ------- 1 1.0 6.0 161 353 + 1.93 4 6 cbr 500 ------- 1 1.0 6.0 161 353 - 1.93 4 6 cbr 500 ------- 1 1.0 6.0 161 353 + 1.93 2 3 cbr 1000 ------- 1 2.0 7.0 123 372 - 1.93 2 3 cbr 1000 ------- 1 2.0 7.0 123 372 r 1.934 4 7 cbr 1000 ------- 1 2.0 7.0 109 348 r 1.934 4 6 cbr 500 ------- 1 1.0 6.0 160 350 - 1.936 3 4 tcp 1000 ------- 0 0.0 5.0 22 364 r 1.938 3 4 cbr 1000 ------- 1 2.0 7.0 112 354 + 1.938 4 7 cbr 1000 ------- 1 2.0 7.0 112 354 - 1.938 4 7 cbr 1000 ------- 1 2.0 7.0 112 354 r 1.938 2 3 cbr 1000 ------- 1 2.0 7.0 121 369 + 1.938 3 4 cbr 1000 ------- 1 2.0 7.0 121 369 + 1.94 1 3 cbr 500 ------- 1 1.0 6.0 167 373 - 1.94 1 3 cbr 500 ------- 1 1.0 6.0 167 373 + 1.94 2 3 cbr 1000 ------- 1 2.0 7.0 124 374 - 1.94 2 3 cbr 1000 ------- 1 2.0 7.0 124 374 r 1.944 1 3 cbr 500 ------- 1 1.0 6.0 166 370 + 1.944 3 4 cbr 500 ------- 1 1.0 6.0 166 370 - 1.944 3 4 cbr 500 ------- 1 1.0 6.0 164 362 r 1.946 3 4 cbr 1000 ------- 1 2.0 7.0 113 355 + 1.946 4 7 cbr 1000 ------- 1 2.0 7.0 113 355 r 1.946 4 7 cbr 1000 ------- 1 2.0 7.0 110 351 - 1.946 4 7 cbr 1000 ------- 1 2.0 7.0 113 355 r 1.948 2 3 cbr 1000 ------- 1 2.0 7.0 122 371 + 1.948 3 4 cbr 1000 ------- 1 2.0 7.0 122 371 - 1.948 3 4 tcp 1000 ------- 0 0.0 5.0 23 365 r 1.95 3 4 cbr 500 ------- 1 1.0 6.0 162 356 + 1.95 4 6 cbr 500 ------- 1 1.0 6.0 162 356 - 1.95 4 6 cbr 500 ------- 1 1.0 6.0 162 356 + 1.95 2 3 cbr 1000 ------- 1 2.0 7.0 125 375 - 1.95 2 3 cbr 1000 ------- 1 2.0 7.0 125 375 r 1.954 4 7 cbr 1000 ------- 1 2.0 7.0 111 352 r 1.954 4 6 cbr 500 ------- 1 1.0 6.0 161 353 - 1.956 3 4 cbr 1000 ------- 1 2.0 7.0 118 363 r 1.958 3 4 cbr 1000 ------- 1 2.0 7.0 114 357 + 1.958 4 7 cbr 1000 ------- 1 2.0 7.0 114 357 - 1.958 4 7 cbr 1000 ------- 1 2.0 7.0 114 357 r 1.958 2 3 cbr 1000 ------- 1 2.0 7.0 123 372 + 1.958 3 4 cbr 1000 ------- 1 2.0 7.0 123 372 + 1.96 1 3 cbr 500 ------- 1 1.0 6.0 168 376 - 1.96 1 3 cbr 500 ------- 1 1.0 6.0 168 376 + 1.96 2 3 cbr 1000 ------- 1 2.0 7.0 126 377 - 1.96 2 3 cbr 1000 ------- 1 2.0 7.0 126 377 r 1.964 1 3 cbr 500 ------- 1 1.0 6.0 167 373 + 1.964 3 4 cbr 500 ------- 1 1.0 6.0 167 373 - 1.964 3 4 cbr 1000 ------- 1 2.0 7.0 119 366 r 1.966 3 4 cbr 1000 ------- 1 2.0 7.0 115 358 + 1.966 4 7 cbr 1000 ------- 1 2.0 7.0 115 358 r 1.966 4 7 cbr 1000 ------- 1 2.0 7.0 112 354 - 1.966 4 7 cbr 1000 ------- 1 2.0 7.0 115 358 r 1.968 2 3 cbr 1000 ------- 1 2.0 7.0 124 374 + 1.968 3 4 cbr 1000 ------- 1 2.0 7.0 124 374 r 1.97 3 4 cbr 500 ------- 1 1.0 6.0 163 359 + 1.97 4 6 cbr 500 ------- 1 1.0 6.0 163 359 - 1.97 4 6 cbr 500 ------- 1 1.0 6.0 163 359 + 1.97 2 3 cbr 1000 ------- 1 2.0 7.0 127 378 - 1.97 2 3 cbr 1000 ------- 1 2.0 7.0 127 378 - 1.972 3 4 cbr 500 ------- 1 1.0 6.0 165 367 r 1.974 4 7 cbr 1000 ------- 1 2.0 7.0 113 355 r 1.974 4 6 cbr 500 ------- 1 1.0 6.0 162 356 - 1.976 3 4 cbr 1000 ------- 1 2.0 7.0 120 368 r 1.978 3 4 cbr 1000 ------- 1 2.0 7.0 116 360 + 1.978 4 7 cbr 1000 ------- 1 2.0 7.0 116 360 - 1.978 4 7 cbr 1000 ------- 1 2.0 7.0 116 360 r 1.978 2 3 cbr 1000 ------- 1 2.0 7.0 125 375 + 1.978 3 4 cbr 1000 ------- 1 2.0 7.0 125 375 + 1.98 1 3 cbr 500 ------- 1 1.0 6.0 169 379 - 1.98 1 3 cbr 500 ------- 1 1.0 6.0 169 379 + 1.98 2 3 cbr 1000 ------- 1 2.0 7.0 128 380 - 1.98 2 3 cbr 1000 ------- 1 2.0 7.0 128 380 r 1.984 1 3 cbr 500 ------- 1 1.0 6.0 168 376 + 1.984 3 4 cbr 500 ------- 1 1.0 6.0 168 376 - 1.984 3 4 cbr 1000 ------- 1 2.0 7.0 121 369 r 1.986 3 4 cbr 1000 ------- 1 2.0 7.0 117 361 + 1.986 4 7 cbr 1000 ------- 1 2.0 7.0 117 361 r 1.986 4 7 cbr 1000 ------- 1 2.0 7.0 114 357 - 1.986 4 7 cbr 1000 ------- 1 2.0 7.0 117 361 r 1.988 2 3 cbr 1000 ------- 1 2.0 7.0 126 377 + 1.988 3 4 cbr 1000 ------- 1 2.0 7.0 126 377 + 1.99 2 3 cbr 1000 ------- 1 2.0 7.0 129 381 - 1.99 2 3 cbr 1000 ------- 1 2.0 7.0 129 381 - 1.992 3 4 cbr 500 ------- 1 1.0 6.0 166 370 r 1.994 3 4 tcp 1000 ------- 0 0.0 5.0 22 364 + 1.994 4 5 tcp 1000 ------- 0 0.0 5.0 22 364 - 1.994 4 5 tcp 1000 ------- 0 0.0 5.0 22 364 r 1.994 4 7 cbr 1000 ------- 1 2.0 7.0 115 358 r 1.994 4 6 cbr 500 ------- 1 1.0 6.0 163 359 - 1.996 3 4 cbr 1000 ------- 1 2.0 7.0 122 371 r 1.998 3 4 cbr 500 ------- 1 1.0 6.0 164 362 + 1.998 4 6 cbr 500 ------- 1 1.0 6.0 164 362 - 1.998 4 6 cbr 500 ------- 1 1.0 6.0 164 362 r 1.998 2 3 cbr 1000 ------- 1 2.0 7.0 127 378 + 1.998 3 4 cbr 1000 ------- 1 2.0 7.0 127 378 + 2 1 3 cbr 500 ------- 1 1.0 6.0 170 382 - 2 1 3 cbr 500 ------- 1 1.0 6.0 170 382 + 2 2 3 cbr 1000 ------- 1 2.0 7.0 130 383 - 2 2 3 cbr 1000 ------- 1 2.0 7.0 130 383 r 2.004 1 3 cbr 500 ------- 1 1.0 6.0 169 379 + 2.004 3 4 cbr 500 ------- 1 1.0 6.0 169 379 - 2.004 3 4 cbr 1000 ------- 1 2.0 7.0 123 372 r 2.006 3 4 tcp 1000 ------- 0 0.0 5.0 23 365 + 2.006 4 5 tcp 1000 ------- 0 0.0 5.0 23 365 - 2.006 4 5 tcp 1000 ------- 0 0.0 5.0 23 365 r 2.006 4 7 cbr 1000 ------- 1 2.0 7.0 116 360 r 2.008 2 3 cbr 1000 ------- 1 2.0 7.0 128 380 + 2.008 3 4 cbr 1000 ------- 1 2.0 7.0 128 380 v 2.0099999999999998 eval {set sim_annotation {2 Ack_25s }} + 2.01 2 3 cbr 1000 ------- 1 2.0 7.0 131 384 - 2.01 2 3 cbr 1000 ------- 1 2.0 7.0 131 384 - 2.012 3 4 cbr 500 ------- 1 1.0 6.0 167 373 r 2.014 3 4 cbr 1000 ------- 1 2.0 7.0 118 363 + 2.014 4 7 cbr 1000 ------- 1 2.0 7.0 118 363 - 2.014 4 7 cbr 1000 ------- 1 2.0 7.0 118 363 r 2.014 4 7 cbr 1000 ------- 1 2.0 7.0 117 361 r 2.0156 4 5 tcp 1000 ------- 0 0.0 5.0 22 364 + 2.0156 5 4 ack 40 ------- 0 5.0 0.0 25 385 - 2.0156 5 4 ack 40 ------- 0 5.0 0.0 25 385 - 2.016 3 4 cbr 1000 ------- 1 2.0 7.0 124 374 r 2.018 2 3 cbr 1000 ------- 1 2.0 7.0 129 381 + 2.018 3 4 cbr 1000 ------- 1 2.0 7.0 129 381 + 2.02 2 3 cbr 1000 ------- 1 2.0 7.0 132 386 - 2.02 2 3 cbr 1000 ------- 1 2.0 7.0 132 386 + 2.02 1 3 cbr 500 ------- 1 1.0 6.0 171 387 - 2.02 1 3 cbr 500 ------- 1 1.0 6.0 171 387 r 2.022 3 4 cbr 1000 ------- 1 2.0 7.0 119 366 + 2.022 4 7 cbr 1000 ------- 1 2.0 7.0 119 366 r 2.022 4 6 cbr 500 ------- 1 1.0 6.0 164 362 - 2.022 4 7 cbr 1000 ------- 1 2.0 7.0 119 366 r 2.024 1 3 cbr 500 ------- 1 1.0 6.0 170 382 + 2.024 3 4 cbr 500 ------- 1 1.0 6.0 170 382 - 2.024 3 4 cbr 1000 ------- 1 2.0 7.0 125 375 r 2.026 3 4 cbr 500 ------- 1 1.0 6.0 165 367 + 2.026 4 6 cbr 500 ------- 1 1.0 6.0 165 367 - 2.026 4 6 cbr 500 ------- 1 1.0 6.0 165 367 r 2.0276 4 5 tcp 1000 ------- 0 0.0 5.0 23 365 + 2.0276 5 4 ack 40 ------- 0 5.0 0.0 25 388 - 2.0276 5 4 ack 40 ------- 0 5.0 0.0 25 388 r 2.028 2 3 cbr 1000 ------- 1 2.0 7.0 130 383 + 2.028 3 4 cbr 1000 ------- 1 2.0 7.0 130 383 + 2.03 2 3 cbr 1000 ------- 1 2.0 7.0 133 389 - 2.03 2 3 cbr 1000 ------- 1 2.0 7.0 133 389 - 2.032 3 4 cbr 500 ------- 1 1.0 6.0 168 376 r 2.034 3 4 cbr 1000 ------- 1 2.0 7.0 120 368 + 2.034 4 7 cbr 1000 ------- 1 2.0 7.0 120 368 - 2.034 4 7 cbr 1000 ------- 1 2.0 7.0 120 368 r 2.03566 5 4 ack 40 ------- 0 5.0 0.0 25 385 + 2.03566 4 3 ack 40 ------- 0 5.0 0.0 25 385 - 2.03566 4 3 ack 40 ------- 0 5.0 0.0 25 385 - 2.036 3 4 cbr 1000 ------- 1 2.0 7.0 126 377 r 2.038 2 3 cbr 1000 ------- 1 2.0 7.0 131 384 + 2.038 3 4 cbr 1000 ------- 1 2.0 7.0 131 384 + 2.04 2 3 cbr 1000 ------- 1 2.0 7.0 134 390 - 2.04 2 3 cbr 1000 ------- 1 2.0 7.0 134 390 + 2.04 1 3 cbr 500 ------- 1 1.0 6.0 172 391 - 2.04 1 3 cbr 500 ------- 1 1.0 6.0 172 391 r 2.042 3 4 cbr 1000 ------- 1 2.0 7.0 121 369 + 2.042 4 7 cbr 1000 ------- 1 2.0 7.0 121 369 r 2.042 4 7 cbr 1000 ------- 1 2.0 7.0 118 363 - 2.042 4 7 cbr 1000 ------- 1 2.0 7.0 121 369 r 2.044 1 3 cbr 500 ------- 1 1.0 6.0 171 387 + 2.044 3 4 cbr 500 ------- 1 1.0 6.0 171 387 - 2.044 3 4 cbr 1000 ------- 1 2.0 7.0 127 378 r 2.046 3 4 cbr 500 ------- 1 1.0 6.0 166 370 + 2.046 4 6 cbr 500 ------- 1 1.0 6.0 166 370 - 2.046 4 6 cbr 500 ------- 1 1.0 6.0 166 370 r 2.04766 5 4 ack 40 ------- 0 5.0 0.0 25 388 + 2.04766 4 3 ack 40 ------- 0 5.0 0.0 25 388 - 2.04766 4 3 ack 40 ------- 0 5.0 0.0 25 388 r 2.048 2 3 cbr 1000 ------- 1 2.0 7.0 132 386 + 2.048 3 4 cbr 1000 ------- 1 2.0 7.0 132 386 + 2.05 2 3 cbr 1000 ------- 1 2.0 7.0 135 392 - 2.05 2 3 cbr 1000 ------- 1 2.0 7.0 135 392 r 2.05 4 7 cbr 1000 ------- 1 2.0 7.0 119 366 r 2.05 4 6 cbr 500 ------- 1 1.0 6.0 165 367 - 2.052 3 4 cbr 500 ------- 1 1.0 6.0 169 379 r 2.054 3 4 cbr 1000 ------- 1 2.0 7.0 122 371 + 2.054 4 7 cbr 1000 ------- 1 2.0 7.0 122 371 - 2.054 4 7 cbr 1000 ------- 1 2.0 7.0 122 371 - 2.056 3 4 cbr 1000 ------- 1 2.0 7.0 128 380 r 2.058 2 3 cbr 1000 ------- 1 2.0 7.0 133 389 + 2.058 3 4 cbr 1000 ------- 1 2.0 7.0 133 389 + 2.06 2 3 cbr 1000 ------- 1 2.0 7.0 136 393 - 2.06 2 3 cbr 1000 ------- 1 2.0 7.0 136 393 + 2.06 1 3 cbr 500 ------- 1 1.0 6.0 173 394 - 2.06 1 3 cbr 500 ------- 1 1.0 6.0 173 394 r 2.062 3 4 cbr 1000 ------- 1 2.0 7.0 123 372 + 2.062 4 7 cbr 1000 ------- 1 2.0 7.0 123 372 r 2.062 4 7 cbr 1000 ------- 1 2.0 7.0 120 368 - 2.062 4 7 cbr 1000 ------- 1 2.0 7.0 123 372 r 2.064 1 3 cbr 500 ------- 1 1.0 6.0 172 391 + 2.064 3 4 cbr 500 ------- 1 1.0 6.0 172 391 - 2.064 3 4 cbr 1000 ------- 1 2.0 7.0 129 381 r 2.066 3 4 cbr 500 ------- 1 1.0 6.0 167 373 + 2.066 4 6 cbr 500 ------- 1 1.0 6.0 167 373 - 2.066 4 6 cbr 500 ------- 1 1.0 6.0 167 373 r 2.068 2 3 cbr 1000 ------- 1 2.0 7.0 134 390 + 2.068 3 4 cbr 1000 ------- 1 2.0 7.0 134 390 + 2.07 2 3 cbr 1000 ------- 1 2.0 7.0 137 395 - 2.07 2 3 cbr 1000 ------- 1 2.0 7.0 137 395 r 2.07 4 7 cbr 1000 ------- 1 2.0 7.0 121 369 r 2.07 4 6 cbr 500 ------- 1 1.0 6.0 166 370 - 2.072 3 4 cbr 500 ------- 1 1.0 6.0 170 382 r 2.074 3 4 cbr 1000 ------- 1 2.0 7.0 124 374 + 2.074 4 7 cbr 1000 ------- 1 2.0 7.0 124 374 - 2.074 4 7 cbr 1000 ------- 1 2.0 7.0 124 374 - 2.076 3 4 cbr 1000 ------- 1 2.0 7.0 130 383 r 2.078 2 3 cbr 1000 ------- 1 2.0 7.0 135 392 + 2.078 3 4 cbr 1000 ------- 1 2.0 7.0 135 392 + 2.08 2 3 cbr 1000 ------- 1 2.0 7.0 138 396 - 2.08 2 3 cbr 1000 ------- 1 2.0 7.0 138 396 + 2.08 1 3 cbr 500 ------- 1 1.0 6.0 174 397 - 2.08 1 3 cbr 500 ------- 1 1.0 6.0 174 397 r 2.082 3 4 cbr 1000 ------- 1 2.0 7.0 125 375 + 2.082 4 7 cbr 1000 ------- 1 2.0 7.0 125 375 - 2.082 4 7 cbr 1000 ------- 1 2.0 7.0 125 375 r 2.082 4 7 cbr 1000 ------- 1 2.0 7.0 122 371 r 2.084 1 3 cbr 500 ------- 1 1.0 6.0 173 394 + 2.084 3 4 cbr 500 ------- 1 1.0 6.0 173 394 - 2.084 3 4 cbr 1000 ------- 1 2.0 7.0 131 384 r 2.08598 4 3 ack 40 ------- 0 5.0 0.0 25 385 + 2.08598 3 0 ack 40 ------- 0 5.0 0.0 25 385 - 2.08598 3 0 ack 40 ------- 0 5.0 0.0 25 385 r 2.086 3 4 cbr 500 ------- 1 1.0 6.0 168 376 + 2.086 4 6 cbr 500 ------- 1 1.0 6.0 168 376 - 2.086 4 6 cbr 500 ------- 1 1.0 6.0 168 376 r 2.088 2 3 cbr 1000 ------- 1 2.0 7.0 136 393 + 2.088 3 4 cbr 1000 ------- 1 2.0 7.0 136 393 + 2.09 2 3 cbr 1000 ------- 1 2.0 7.0 139 398 - 2.09 2 3 cbr 1000 ------- 1 2.0 7.0 139 398 r 2.09 4 6 cbr 500 ------- 1 1.0 6.0 167 373 r 2.09 4 7 cbr 1000 ------- 1 2.0 7.0 123 372 - 2.092 3 4 cbr 500 ------- 1 1.0 6.0 171 387 r 2.094 3 4 cbr 1000 ------- 1 2.0 7.0 126 377 + 2.094 4 7 cbr 1000 ------- 1 2.0 7.0 126 377 - 2.094 4 7 cbr 1000 ------- 1 2.0 7.0 126 377 - 2.096 3 4 cbr 1000 ------- 1 2.0 7.0 132 386 r 2.09798 4 3 ack 40 ------- 0 5.0 0.0 25 388 + 2.09798 3 0 ack 40 ------- 0 5.0 0.0 25 388 - 2.09798 3 0 ack 40 ------- 0 5.0 0.0 25 388 r 2.098 2 3 cbr 1000 ------- 1 2.0 7.0 137 395 + 2.098 3 4 cbr 1000 ------- 1 2.0 7.0 137 395 + 2.1 2 3 cbr 1000 ------- 1 2.0 7.0 140 399 - 2.1 2 3 cbr 1000 ------- 1 2.0 7.0 140 399 + 2.1 1 3 cbr 500 ------- 1 1.0 6.0 175 400 - 2.1 1 3 cbr 500 ------- 1 1.0 6.0 175 400 r 2.102 3 4 cbr 1000 ------- 1 2.0 7.0 127 378 + 2.102 4 7 cbr 1000 ------- 1 2.0 7.0 127 378 r 2.102 4 7 cbr 1000 ------- 1 2.0 7.0 124 374 - 2.102 4 7 cbr 1000 ------- 1 2.0 7.0 127 378 r 2.104 1 3 cbr 500 ------- 1 1.0 6.0 174 397 + 2.104 3 4 cbr 500 ------- 1 1.0 6.0 174 397 - 2.104 3 4 cbr 1000 ------- 1 2.0 7.0 133 389 r 2.106 3 4 cbr 500 ------- 1 1.0 6.0 169 379 + 2.106 4 6 cbr 500 ------- 1 1.0 6.0 169 379 - 2.106 4 6 cbr 500 ------- 1 1.0 6.0 169 379 r 2.10605 3 0 ack 40 ------- 0 5.0 0.0 25 385 + 2.10605 0 3 tcp 1000 ------- 0 0.0 5.0 26 401 - 2.10605 0 3 tcp 1000 ------- 0 0.0 5.0 26 401 + 2.10605 0 3 tcp 1000 ------- 0 0.0 5.0 27 402 + 2.10605 0 3 tcp 1000 ------- 0 0.0 5.0 28 403 - 2.10765 0 3 tcp 1000 ------- 0 0.0 5.0 27 402 r 2.108 2 3 cbr 1000 ------- 1 2.0 7.0 138 396 + 2.108 3 4 cbr 1000 ------- 1 2.0 7.0 138 396 - 2.10925 0 3 tcp 1000 ------- 0 0.0 5.0 28 403 + 2.11 2 3 cbr 1000 ------- 1 2.0 7.0 141 404 - 2.11 2 3 cbr 1000 ------- 1 2.0 7.0 141 404 v 2.1099999999999999 eval {set sim_annotation {Send Packet_26,27,28 : window size 3}} r 2.11 4 7 cbr 1000 ------- 1 2.0 7.0 125 375 r 2.11 4 6 cbr 500 ------- 1 1.0 6.0 168 376 - 2.112 3 4 cbr 500 ------- 1 1.0 6.0 172 391 r 2.114 3 4 cbr 1000 ------- 1 2.0 7.0 128 380 + 2.114 4 7 cbr 1000 ------- 1 2.0 7.0 128 380 - 2.114 4 7 cbr 1000 ------- 1 2.0 7.0 128 380 - 2.116 3 4 cbr 1000 ------- 1 2.0 7.0 134 390 r 2.118 2 3 cbr 1000 ------- 1 2.0 7.0 139 398 + 2.118 3 4 cbr 1000 ------- 1 2.0 7.0 139 398 r 2.11805 3 0 ack 40 ------- 0 5.0 0.0 25 388 + 2.12 2 3 cbr 1000 ------- 1 2.0 7.0 142 405 - 2.12 2 3 cbr 1000 ------- 1 2.0 7.0 142 405 + 2.12 1 3 cbr 500 ------- 1 1.0 6.0 176 406 - 2.12 1 3 cbr 500 ------- 1 1.0 6.0 176 406 r 2.122 3 4 cbr 1000 ------- 1 2.0 7.0 129 381 + 2.122 4 7 cbr 1000 ------- 1 2.0 7.0 129 381 r 2.122 4 7 cbr 1000 ------- 1 2.0 7.0 126 377 - 2.122 4 7 cbr 1000 ------- 1 2.0 7.0 129 381 r 2.124 1 3 cbr 500 ------- 1 1.0 6.0 175 400 + 2.124 3 4 cbr 500 ------- 1 1.0 6.0 175 400 - 2.124 3 4 cbr 1000 ------- 1 2.0 7.0 135 392 r 2.126 3 4 cbr 500 ------- 1 1.0 6.0 170 382 + 2.126 4 6 cbr 500 ------- 1 1.0 6.0 170 382 - 2.126 4 6 cbr 500 ------- 1 1.0 6.0 170 382 r 2.12765 0 3 tcp 1000 ------- 0 0.0 5.0 26 401 + 2.12765 3 4 tcp 1000 ------- 0 0.0 5.0 26 401 r 2.128 2 3 cbr 1000 ------- 1 2.0 7.0 140 399 + 2.128 3 4 cbr 1000 ------- 1 2.0 7.0 140 399 r 2.12925 0 3 tcp 1000 ------- 0 0.0 5.0 27 402 + 2.12925 3 4 tcp 1000 ------- 0 0.0 5.0 27 402 d 2.12925 3 4 tcp 1000 ------- 0 0.0 5.0 27 402 + 2.13 2 3 cbr 1000 ------- 1 2.0 7.0 143 407 - 2.13 2 3 cbr 1000 ------- 1 2.0 7.0 143 407 v 2.1299999999999999 eval {set sim_annotation {Lost Packet_27,28 !}} r 2.13 4 7 cbr 1000 ------- 1 2.0 7.0 127 378 r 2.13 4 6 cbr 500 ------- 1 1.0 6.0 169 379 r 2.13085 0 3 tcp 1000 ------- 0 0.0 5.0 28 403 + 2.13085 3 4 tcp 1000 ------- 0 0.0 5.0 28 403 d 2.13085 3 4 tcp 1000 ------- 0 0.0 5.0 28 403 - 2.132 3 4 cbr 500 ------- 1 1.0 6.0 173 394 r 2.134 3 4 cbr 1000 ------- 1 2.0 7.0 130 383 + 2.134 4 7 cbr 1000 ------- 1 2.0 7.0 130 383 - 2.134 4 7 cbr 1000 ------- 1 2.0 7.0 130 383 - 2.136 3 4 cbr 1000 ------- 1 2.0 7.0 136 393 r 2.138 2 3 cbr 1000 ------- 1 2.0 7.0 141 404 + 2.138 3 4 cbr 1000 ------- 1 2.0 7.0 141 404 + 2.14 2 3 cbr 1000 ------- 1 2.0 7.0 144 408 - 2.14 2 3 cbr 1000 ------- 1 2.0 7.0 144 408 + 2.14 1 3 cbr 500 ------- 1 1.0 6.0 177 409 - 2.14 1 3 cbr 500 ------- 1 1.0 6.0 177 409 r 2.142 3 4 cbr 1000 ------- 1 2.0 7.0 131 384 + 2.142 4 7 cbr 1000 ------- 1 2.0 7.0 131 384 r 2.142 4 7 cbr 1000 ------- 1 2.0 7.0 128 380 - 2.142 4 7 cbr 1000 ------- 1 2.0 7.0 131 384 r 2.144 1 3 cbr 500 ------- 1 1.0 6.0 176 406 + 2.144 3 4 cbr 500 ------- 1 1.0 6.0 176 406 - 2.144 3 4 cbr 1000 ------- 1 2.0 7.0 137 395 r 2.146 3 4 cbr 500 ------- 1 1.0 6.0 171 387 + 2.146 4 6 cbr 500 ------- 1 1.0 6.0 171 387 - 2.146 4 6 cbr 500 ------- 1 1.0 6.0 171 387 r 2.148 2 3 cbr 1000 ------- 1 2.0 7.0 142 405 + 2.148 3 4 cbr 1000 ------- 1 2.0 7.0 142 405 + 2.15 2 3 cbr 1000 ------- 1 2.0 7.0 145 410 - 2.15 2 3 cbr 1000 ------- 1 2.0 7.0 145 410 r 2.15 4 7 cbr 1000 ------- 1 2.0 7.0 129 381 r 2.15 4 6 cbr 500 ------- 1 1.0 6.0 170 382 - 2.152 3 4 cbr 500 ------- 1 1.0 6.0 174 397 r 2.154 3 4 cbr 1000 ------- 1 2.0 7.0 132 386 + 2.154 4 7 cbr 1000 ------- 1 2.0 7.0 132 386 - 2.154 4 7 cbr 1000 ------- 1 2.0 7.0 132 386 - 2.156 3 4 cbr 1000 ------- 1 2.0 7.0 138 396 r 2.158 2 3 cbr 1000 ------- 1 2.0 7.0 143 407 + 2.158 3 4 cbr 1000 ------- 1 2.0 7.0 143 407 + 2.16 2 3 cbr 1000 ------- 1 2.0 7.0 146 411 - 2.16 2 3 cbr 1000 ------- 1 2.0 7.0 146 411 + 2.16 1 3 cbr 500 ------- 1 1.0 6.0 178 412 - 2.16 1 3 cbr 500 ------- 1 1.0 6.0 178 412 r 2.162 3 4 cbr 1000 ------- 1 2.0 7.0 133 389 + 2.162 4 7 cbr 1000 ------- 1 2.0 7.0 133 389 r 2.162 4 7 cbr 1000 ------- 1 2.0 7.0 130 383 - 2.162 4 7 cbr 1000 ------- 1 2.0 7.0 133 389 r 2.164 1 3 cbr 500 ------- 1 1.0 6.0 177 409 + 2.164 3 4 cbr 500 ------- 1 1.0 6.0 177 409 - 2.164 3 4 cbr 1000 ------- 1 2.0 7.0 139 398 r 2.166 3 4 cbr 500 ------- 1 1.0 6.0 172 391 + 2.166 4 6 cbr 500 ------- 1 1.0 6.0 172 391 - 2.166 4 6 cbr 500 ------- 1 1.0 6.0 172 391 r 2.168 2 3 cbr 1000 ------- 1 2.0 7.0 144 408 + 2.168 3 4 cbr 1000 ------- 1 2.0 7.0 144 408 + 2.17 2 3 cbr 1000 ------- 1 2.0 7.0 147 413 - 2.17 2 3 cbr 1000 ------- 1 2.0 7.0 147 413 r 2.17 4 7 cbr 1000 ------- 1 2.0 7.0 131 384 r 2.17 4 6 cbr 500 ------- 1 1.0 6.0 171 387 - 2.172 3 4 cbr 500 ------- 1 1.0 6.0 175 400 r 2.174 3 4 cbr 1000 ------- 1 2.0 7.0 134 390 + 2.174 4 7 cbr 1000 ------- 1 2.0 7.0 134 390 - 2.174 4 7 cbr 1000 ------- 1 2.0 7.0 134 390 - 2.176 3 4 tcp 1000 ------- 0 0.0 5.0 26 401 r 2.178 2 3 cbr 1000 ------- 1 2.0 7.0 145 410 + 2.178 3 4 cbr 1000 ------- 1 2.0 7.0 145 410 + 2.18 2 3 cbr 1000 ------- 1 2.0 7.0 148 414 - 2.18 2 3 cbr 1000 ------- 1 2.0 7.0 148 414 + 2.18 1 3 cbr 500 ------- 1 1.0 6.0 179 415 - 2.18 1 3 cbr 500 ------- 1 1.0 6.0 179 415 r 2.182 3 4 cbr 1000 ------- 1 2.0 7.0 135 392 + 2.182 4 7 cbr 1000 ------- 1 2.0 7.0 135 392 r 2.182 4 7 cbr 1000 ------- 1 2.0 7.0 132 386 - 2.182 4 7 cbr 1000 ------- 1 2.0 7.0 135 392 r 2.184 1 3 cbr 500 ------- 1 1.0 6.0 178 412 + 2.184 3 4 cbr 500 ------- 1 1.0 6.0 178 412 - 2.184 3 4 cbr 1000 ------- 1 2.0 7.0 140 399 r 2.186 3 4 cbr 500 ------- 1 1.0 6.0 173 394 + 2.186 4 6 cbr 500 ------- 1 1.0 6.0 173 394 - 2.186 4 6 cbr 500 ------- 1 1.0 6.0 173 394 r 2.188 2 3 cbr 1000 ------- 1 2.0 7.0 146 411 + 2.188 3 4 cbr 1000 ------- 1 2.0 7.0 146 411 + 2.19 2 3 cbr 1000 ------- 1 2.0 7.0 149 416 - 2.19 2 3 cbr 1000 ------- 1 2.0 7.0 149 416 r 2.19 4 7 cbr 1000 ------- 1 2.0 7.0 133 389 r 2.19 4 6 cbr 500 ------- 1 1.0 6.0 172 391 - 2.192 3 4 cbr 1000 ------- 1 2.0 7.0 141 404 r 2.194 3 4 cbr 1000 ------- 1 2.0 7.0 136 393 + 2.194 4 7 cbr 1000 ------- 1 2.0 7.0 136 393 - 2.194 4 7 cbr 1000 ------- 1 2.0 7.0 136 393 r 2.198 2 3 cbr 1000 ------- 1 2.0 7.0 147 413 + 2.198 3 4 cbr 1000 ------- 1 2.0 7.0 147 413 + 2.2 2 3 cbr 1000 ------- 1 2.0 7.0 150 417 - 2.2 2 3 cbr 1000 ------- 1 2.0 7.0 150 417 + 2.2 1 3 cbr 500 ------- 1 1.0 6.0 180 418 - 2.2 1 3 cbr 500 ------- 1 1.0 6.0 180 418 - 2.2 3 4 cbr 500 ------- 1 1.0 6.0 176 406 r 2.202 3 4 cbr 1000 ------- 1 2.0 7.0 137 395 + 2.202 4 7 cbr 1000 ------- 1 2.0 7.0 137 395 r 2.202 4 7 cbr 1000 ------- 1 2.0 7.0 134 390 - 2.202 4 7 cbr 1000 ------- 1 2.0 7.0 137 395 r 2.204 1 3 cbr 500 ------- 1 1.0 6.0 179 415 + 2.204 3 4 cbr 500 ------- 1 1.0 6.0 179 415 - 2.204 3 4 cbr 1000 ------- 1 2.0 7.0 142 405 r 2.206 3 4 cbr 500 ------- 1 1.0 6.0 174 397 + 2.206 4 6 cbr 500 ------- 1 1.0 6.0 174 397 - 2.206 4 6 cbr 500 ------- 1 1.0 6.0 174 397 r 2.208 2 3 cbr 1000 ------- 1 2.0 7.0 148 414 + 2.208 3 4 cbr 1000 ------- 1 2.0 7.0 148 414 + 2.21 2 3 cbr 1000 ------- 1 2.0 7.0 151 419 - 2.21 2 3 cbr 1000 ------- 1 2.0 7.0 151 419 r 2.21 4 7 cbr 1000 ------- 1 2.0 7.0 135 392 r 2.21 4 6 cbr 500 ------- 1 1.0 6.0 173 394 - 2.212 3 4 cbr 1000 ------- 1 2.0 7.0 143 407 r 2.214 3 4 cbr 1000 ------- 1 2.0 7.0 138 396 + 2.214 4 7 cbr 1000 ------- 1 2.0 7.0 138 396 - 2.214 4 7 cbr 1000 ------- 1 2.0 7.0 138 396 r 2.218 2 3 cbr 1000 ------- 1 2.0 7.0 149 416 + 2.218 3 4 cbr 1000 ------- 1 2.0 7.0 149 416 + 2.22 2 3 cbr 1000 ------- 1 2.0 7.0 152 420 - 2.22 2 3 cbr 1000 ------- 1 2.0 7.0 152 420 + 2.22 1 3 cbr 500 ------- 1 1.0 6.0 181 421 - 2.22 1 3 cbr 500 ------- 1 1.0 6.0 181 421 - 2.22 3 4 cbr 500 ------- 1 1.0 6.0 177 409 r 2.222 3 4 cbr 1000 ------- 1 2.0 7.0 139 398 + 2.222 4 7 cbr 1000 ------- 1 2.0 7.0 139 398 r 2.222 4 7 cbr 1000 ------- 1 2.0 7.0 136 393 - 2.222 4 7 cbr 1000 ------- 1 2.0 7.0 139 398 r 2.224 1 3 cbr 500 ------- 1 1.0 6.0 180 418 + 2.224 3 4 cbr 500 ------- 1 1.0 6.0 180 418 - 2.224 3 4 cbr 1000 ------- 1 2.0 7.0 144 408 r 2.226 3 4 cbr 500 ------- 1 1.0 6.0 175 400 + 2.226 4 6 cbr 500 ------- 1 1.0 6.0 175 400 - 2.226 4 6 cbr 500 ------- 1 1.0 6.0 175 400 r 2.228 2 3 cbr 1000 ------- 1 2.0 7.0 150 417 + 2.228 3 4 cbr 1000 ------- 1 2.0 7.0 150 417 + 2.23 2 3 cbr 1000 ------- 1 2.0 7.0 153 422 - 2.23 2 3 cbr 1000 ------- 1 2.0 7.0 153 422 r 2.23 4 7 cbr 1000 ------- 1 2.0 7.0 137 395 r 2.23 4 6 cbr 500 ------- 1 1.0 6.0 174 397 - 2.232 3 4 cbr 1000 ------- 1 2.0 7.0 145 410 r 2.234 3 4 tcp 1000 ------- 0 0.0 5.0 26 401 + 2.234 4 5 tcp 1000 ------- 0 0.0 5.0 26 401 - 2.234 4 5 tcp 1000 ------- 0 0.0 5.0 26 401 r 2.238 2 3 cbr 1000 ------- 1 2.0 7.0 151 419 + 2.238 3 4 cbr 1000 ------- 1 2.0 7.0 151 419 + 2.24 2 3 cbr 1000 ------- 1 2.0 7.0 154 423 - 2.24 2 3 cbr 1000 ------- 1 2.0 7.0 154 423 + 2.24 1 3 cbr 500 ------- 1 1.0 6.0 182 424 - 2.24 1 3 cbr 500 ------- 1 1.0 6.0 182 424 - 2.24 3 4 cbr 500 ------- 1 1.0 6.0 178 412 r 2.242 3 4 cbr 1000 ------- 1 2.0 7.0 140 399 + 2.242 4 7 cbr 1000 ------- 1 2.0 7.0 140 399 - 2.242 4 7 cbr 1000 ------- 1 2.0 7.0 140 399 r 2.242 4 7 cbr 1000 ------- 1 2.0 7.0 138 396 r 2.244 1 3 cbr 500 ------- 1 1.0 6.0 181 421 + 2.244 3 4 cbr 500 ------- 1 1.0 6.0 181 421 - 2.244 3 4 cbr 1000 ------- 1 2.0 7.0 146 411 r 2.248 2 3 cbr 1000 ------- 1 2.0 7.0 152 420 + 2.248 3 4 cbr 1000 ------- 1 2.0 7.0 152 420 + 2.25 2 3 cbr 1000 ------- 1 2.0 7.0 155 425 - 2.25 2 3 cbr 1000 ------- 1 2.0 7.0 155 425 r 2.25 3 4 cbr 1000 ------- 1 2.0 7.0 141 404 + 2.25 4 7 cbr 1000 ------- 1 2.0 7.0 141 404 r 2.25 4 7 cbr 1000 ------- 1 2.0 7.0 139 398 r 2.25 4 6 cbr 500 ------- 1 1.0 6.0 175 400 - 2.25 4 7 cbr 1000 ------- 1 2.0 7.0 141 404 - 2.252 3 4 cbr 1000 ------- 1 2.0 7.0 147 413 r 2.254 3 4 cbr 500 ------- 1 1.0 6.0 176 406 + 2.254 4 6 cbr 500 ------- 1 1.0 6.0 176 406 - 2.254 4 6 cbr 500 ------- 1 1.0 6.0 176 406 r 2.2556 4 5 tcp 1000 ------- 0 0.0 5.0 26 401 + 2.2556 5 4 ack 40 ------- 0 5.0 0.0 28 426 - 2.2556 5 4 ack 40 ------- 0 5.0 0.0 28 426 r 2.258 2 3 cbr 1000 ------- 1 2.0 7.0 153 422 + 2.258 3 4 cbr 1000 ------- 1 2.0 7.0 153 422 + 2.26 2 3 cbr 1000 ------- 1 2.0 7.0 156 427 - 2.26 2 3 cbr 1000 ------- 1 2.0 7.0 156 427 v 2.2599999999999998 eval {set sim_annotation {Ack_26 }} + 2.26 1 3 cbr 500 ------- 1 1.0 6.0 183 428 - 2.26 1 3 cbr 500 ------- 1 1.0 6.0 183 428 - 2.26 3 4 cbr 500 ------- 1 1.0 6.0 179 415 r 2.262 3 4 cbr 1000 ------- 1 2.0 7.0 142 405 + 2.262 4 7 cbr 1000 ------- 1 2.0 7.0 142 405 - 2.262 4 7 cbr 1000 ------- 1 2.0 7.0 142 405 r 2.264 1 3 cbr 500 ------- 1 1.0 6.0 182 424 + 2.264 3 4 cbr 500 ------- 1 1.0 6.0 182 424 - 2.264 3 4 cbr 1000 ------- 1 2.0 7.0 148 414 r 2.268 2 3 cbr 1000 ------- 1 2.0 7.0 154 423 + 2.268 3 4 cbr 1000 ------- 1 2.0 7.0 154 423 + 2.27 2 3 cbr 1000 ------- 1 2.0 7.0 157 429 - 2.27 2 3 cbr 1000 ------- 1 2.0 7.0 157 429 r 2.27 3 4 cbr 1000 ------- 1 2.0 7.0 143 407 + 2.27 4 7 cbr 1000 ------- 1 2.0 7.0 143 407 r 2.27 4 7 cbr 1000 ------- 1 2.0 7.0 140 399 - 2.27 4 7 cbr 1000 ------- 1 2.0 7.0 143 407 - 2.272 3 4 cbr 1000 ------- 1 2.0 7.0 149 416 r 2.274 3 4 cbr 500 ------- 1 1.0 6.0 177 409 + 2.274 4 6 cbr 500 ------- 1 1.0 6.0 177 409 - 2.274 4 6 cbr 500 ------- 1 1.0 6.0 177 409 r 2.27566 5 4 ack 40 ------- 0 5.0 0.0 28 426 + 2.27566 4 3 ack 40 ------- 0 5.0 0.0 28 426 - 2.27566 4 3 ack 40 ------- 0 5.0 0.0 28 426 r 2.278 2 3 cbr 1000 ------- 1 2.0 7.0 155 425 + 2.278 3 4 cbr 1000 ------- 1 2.0 7.0 155 425 r 2.278 4 7 cbr 1000 ------- 1 2.0 7.0 141 404 r 2.278 4 6 cbr 500 ------- 1 1.0 6.0 176 406 + 2.28 2 3 cbr 1000 ------- 1 2.0 7.0 158 430 - 2.28 2 3 cbr 1000 ------- 1 2.0 7.0 158 430 + 2.28 1 3 cbr 500 ------- 1 1.0 6.0 184 431 - 2.28 1 3 cbr 500 ------- 1 1.0 6.0 184 431 - 2.28 3 4 cbr 500 ------- 1 1.0 6.0 180 418 r 2.282 3 4 cbr 1000 ------- 1 2.0 7.0 144 408 + 2.282 4 7 cbr 1000 ------- 1 2.0 7.0 144 408 - 2.282 4 7 cbr 1000 ------- 1 2.0 7.0 144 408 r 2.284 1 3 cbr 500 ------- 1 1.0 6.0 183 428 + 2.284 3 4 cbr 500 ------- 1 1.0 6.0 183 428 - 2.284 3 4 cbr 1000 ------- 1 2.0 7.0 150 417 r 2.288 2 3 cbr 1000 ------- 1 2.0 7.0 156 427 + 2.288 3 4 cbr 1000 ------- 1 2.0 7.0 156 427 + 2.29 2 3 cbr 1000 ------- 1 2.0 7.0 159 432 - 2.29 2 3 cbr 1000 ------- 1 2.0 7.0 159 432 r 2.29 3 4 cbr 1000 ------- 1 2.0 7.0 145 410 + 2.29 4 7 cbr 1000 ------- 1 2.0 7.0 145 410 r 2.29 4 7 cbr 1000 ------- 1 2.0 7.0 142 405 - 2.29 4 7 cbr 1000 ------- 1 2.0 7.0 145 410 - 2.292 3 4 cbr 1000 ------- 1 2.0 7.0 151 419 r 2.294 3 4 cbr 500 ------- 1 1.0 6.0 178 412 + 2.294 4 6 cbr 500 ------- 1 1.0 6.0 178 412 - 2.294 4 6 cbr 500 ------- 1 1.0 6.0 178 412 r 2.298 2 3 cbr 1000 ------- 1 2.0 7.0 157 429 + 2.298 3 4 cbr 1000 ------- 1 2.0 7.0 157 429 r 2.298 4 7 cbr 1000 ------- 1 2.0 7.0 143 407 r 2.298 4 6 cbr 500 ------- 1 1.0 6.0 177 409 + 2.3 2 3 cbr 1000 ------- 1 2.0 7.0 160 433 - 2.3 2 3 cbr 1000 ------- 1 2.0 7.0 160 433 - 2.3 3 4 cbr 500 ------- 1 1.0 6.0 181 421 r 2.302 3 4 cbr 1000 ------- 1 2.0 7.0 146 411 + 2.302 4 7 cbr 1000 ------- 1 2.0 7.0 146 411 - 2.302 4 7 cbr 1000 ------- 1 2.0 7.0 146 411 r 2.304 1 3 cbr 500 ------- 1 1.0 6.0 184 431 + 2.304 3 4 cbr 500 ------- 1 1.0 6.0 184 431 - 2.304 3 4 cbr 1000 ------- 1 2.0 7.0 152 420 r 2.308 2 3 cbr 1000 ------- 1 2.0 7.0 158 430 + 2.308 3 4 cbr 1000 ------- 1 2.0 7.0 158 430 + 2.31 2 3 cbr 1000 ------- 1 2.0 7.0 161 434 - 2.31 2 3 cbr 1000 ------- 1 2.0 7.0 161 434 r 2.31 3 4 cbr 1000 ------- 1 2.0 7.0 147 413 + 2.31 4 7 cbr 1000 ------- 1 2.0 7.0 147 413 r 2.31 4 7 cbr 1000 ------- 1 2.0 7.0 144 408 - 2.31 4 7 cbr 1000 ------- 1 2.0 7.0 147 413 - 2.312 3 4 cbr 1000 ------- 1 2.0 7.0 153 422 r 2.314 3 4 cbr 500 ------- 1 1.0 6.0 179 415 + 2.314 4 6 cbr 500 ------- 1 1.0 6.0 179 415 - 2.314 4 6 cbr 500 ------- 1 1.0 6.0 179 415 r 2.318 2 3 cbr 1000 ------- 1 2.0 7.0 159 432 + 2.318 3 4 cbr 1000 ------- 1 2.0 7.0 159 432 r 2.318 4 7 cbr 1000 ------- 1 2.0 7.0 145 410 r 2.318 4 6 cbr 500 ------- 1 1.0 6.0 178 412 + 2.32 2 3 cbr 1000 ------- 1 2.0 7.0 162 435 - 2.32 2 3 cbr 1000 ------- 1 2.0 7.0 162 435 - 2.32 3 4 cbr 500 ------- 1 1.0 6.0 182 424 r 2.322 3 4 cbr 1000 ------- 1 2.0 7.0 148 414 + 2.322 4 7 cbr 1000 ------- 1 2.0 7.0 148 414 - 2.322 4 7 cbr 1000 ------- 1 2.0 7.0 148 414 - 2.324 3 4 cbr 1000 ------- 1 2.0 7.0 154 423 r 2.32598 4 3 ack 40 ------- 0 5.0 0.0 28 426 + 2.32598 3 0 ack 40 ------- 0 5.0 0.0 28 426 - 2.32598 3 0 ack 40 ------- 0 5.0 0.0 28 426 r 2.328 2 3 cbr 1000 ------- 1 2.0 7.0 160 433 + 2.328 3 4 cbr 1000 ------- 1 2.0 7.0 160 433 + 2.33 2 3 cbr 1000 ------- 1 2.0 7.0 163 436 - 2.33 2 3 cbr 1000 ------- 1 2.0 7.0 163 436 r 2.33 3 4 cbr 1000 ------- 1 2.0 7.0 149 416 + 2.33 4 7 cbr 1000 ------- 1 2.0 7.0 149 416 r 2.33 4 7 cbr 1000 ------- 1 2.0 7.0 146 411 - 2.33 4 7 cbr 1000 ------- 1 2.0 7.0 149 416 - 2.332 3 4 cbr 1000 ------- 1 2.0 7.0 155 425 r 2.334 3 4 cbr 500 ------- 1 1.0 6.0 180 418 + 2.334 4 6 cbr 500 ------- 1 1.0 6.0 180 418 - 2.334 4 6 cbr 500 ------- 1 1.0 6.0 180 418 r 2.338 2 3 cbr 1000 ------- 1 2.0 7.0 161 434 + 2.338 3 4 cbr 1000 ------- 1 2.0 7.0 161 434 r 2.338 4 7 cbr 1000 ------- 1 2.0 7.0 147 413 r 2.338 4 6 cbr 500 ------- 1 1.0 6.0 179 415 + 2.34 2 3 cbr 1000 ------- 1 2.0 7.0 164 437 - 2.34 2 3 cbr 1000 ------- 1 2.0 7.0 164 437 - 2.34 3 4 cbr 500 ------- 1 1.0 6.0 183 428 r 2.342 3 4 cbr 1000 ------- 1 2.0 7.0 150 417 + 2.342 4 7 cbr 1000 ------- 1 2.0 7.0 150 417 - 2.342 4 7 cbr 1000 ------- 1 2.0 7.0 150 417 - 2.344 3 4 cbr 1000 ------- 1 2.0 7.0 156 427 r 2.34605 3 0 ack 40 ------- 0 5.0 0.0 28 426 + 2.34605 0 3 tcp 1000 ------- 0 0.0 5.0 29 438 - 2.34605 0 3 tcp 1000 ------- 0 0.0 5.0 29 438 + 2.34605 0 3 tcp 1000 ------- 0 0.0 5.0 30 439 + 2.34605 0 3 tcp 1000 ------- 0 0.0 5.0 31 440 + 2.34605 0 3 tcp 1000 ------- 0 0.0 5.0 32 441 - 2.34765 0 3 tcp 1000 ------- 0 0.0 5.0 30 439 r 2.348 2 3 cbr 1000 ------- 1 2.0 7.0 162 435 + 2.348 3 4 cbr 1000 ------- 1 2.0 7.0 162 435 - 2.34925 0 3 tcp 1000 ------- 0 0.0 5.0 31 440 + 2.35 2 3 cbr 1000 ------- 1 2.0 7.0 165 442 - 2.35 2 3 cbr 1000 ------- 1 2.0 7.0 165 442 v 2.3500000000000001 eval {set sim_annotation {Send Packet_27,28,29,30 : window size 4}} r 2.35 3 4 cbr 1000 ------- 1 2.0 7.0 151 419 + 2.35 4 7 cbr 1000 ------- 1 2.0 7.0 151 419 r 2.35 4 7 cbr 1000 ------- 1 2.0 7.0 148 414 - 2.35 4 7 cbr 1000 ------- 1 2.0 7.0 151 419 - 2.35085 0 3 tcp 1000 ------- 0 0.0 5.0 32 441 - 2.352 3 4 cbr 1000 ------- 1 2.0 7.0 157 429 r 2.354 3 4 cbr 500 ------- 1 1.0 6.0 181 421 + 2.354 4 6 cbr 500 ------- 1 1.0 6.0 181 421 - 2.354 4 6 cbr 500 ------- 1 1.0 6.0 181 421 r 2.358 2 3 cbr 1000 ------- 1 2.0 7.0 163 436 + 2.358 3 4 cbr 1000 ------- 1 2.0 7.0 163 436 r 2.358 4 7 cbr 1000 ------- 1 2.0 7.0 149 416 r 2.358 4 6 cbr 500 ------- 1 1.0 6.0 180 418 + 2.36 2 3 cbr 1000 ------- 1 2.0 7.0 166 443 - 2.36 2 3 cbr 1000 ------- 1 2.0 7.0 166 443 - 2.36 3 4 cbr 500 ------- 1 1.0 6.0 184 431 r 2.362 3 4 cbr 1000 ------- 1 2.0 7.0 152 420 + 2.362 4 7 cbr 1000 ------- 1 2.0 7.0 152 420 - 2.362 4 7 cbr 1000 ------- 1 2.0 7.0 152 420 - 2.364 3 4 cbr 1000 ------- 1 2.0 7.0 158 430 r 2.36765 0 3 tcp 1000 ------- 0 0.0 5.0 29 438 + 2.36765 3 4 tcp 1000 ------- 0 0.0 5.0 29 438 r 2.368 2 3 cbr 1000 ------- 1 2.0 7.0 164 437 + 2.368 3 4 cbr 1000 ------- 1 2.0 7.0 164 437 r 2.36925 0 3 tcp 1000 ------- 0 0.0 5.0 30 439 + 2.36925 3 4 tcp 1000 ------- 0 0.0 5.0 30 439 + 2.37 2 3 cbr 1000 ------- 1 2.0 7.0 167 444 - 2.37 2 3 cbr 1000 ------- 1 2.0 7.0 167 444 r 2.37 3 4 cbr 1000 ------- 1 2.0 7.0 153 422 + 2.37 4 7 cbr 1000 ------- 1 2.0 7.0 153 422 r 2.37 4 7 cbr 1000 ------- 1 2.0 7.0 150 417 - 2.37 4 7 cbr 1000 ------- 1 2.0 7.0 153 422 r 2.37085 0 3 tcp 1000 ------- 0 0.0 5.0 31 440 + 2.37085 3 4 tcp 1000 ------- 0 0.0 5.0 31 440 - 2.372 3 4 cbr 1000 ------- 1 2.0 7.0 159 432 r 2.37245 0 3 tcp 1000 ------- 0 0.0 5.0 32 441 + 2.37245 3 4 tcp 1000 ------- 0 0.0 5.0 32 441 r 2.374 3 4 cbr 500 ------- 1 1.0 6.0 182 424 + 2.374 4 6 cbr 500 ------- 1 1.0 6.0 182 424 - 2.374 4 6 cbr 500 ------- 1 1.0 6.0 182 424 r 2.378 2 3 cbr 1000 ------- 1 2.0 7.0 165 442 + 2.378 3 4 cbr 1000 ------- 1 2.0 7.0 165 442 d 2.378 3 4 cbr 1000 ------- 1 2.0 7.0 165 442 r 2.378 4 7 cbr 1000 ------- 1 2.0 7.0 151 419 r 2.378 4 6 cbr 500 ------- 1 1.0 6.0 181 421 + 2.38 2 3 cbr 1000 ------- 1 2.0 7.0 168 445 - 2.38 2 3 cbr 1000 ------- 1 2.0 7.0 168 445 - 2.38 3 4 cbr 1000 ------- 1 2.0 7.0 160 433 r 2.382 3 4 cbr 1000 ------- 1 2.0 7.0 154 423 + 2.382 4 7 cbr 1000 ------- 1 2.0 7.0 154 423 - 2.382 4 7 cbr 1000 ------- 1 2.0 7.0 154 423 r 2.388 2 3 cbr 1000 ------- 1 2.0 7.0 166 443 + 2.388 3 4 cbr 1000 ------- 1 2.0 7.0 166 443 - 2.388 3 4 cbr 1000 ------- 1 2.0 7.0 161 434 + 2.39 2 3 cbr 1000 ------- 1 2.0 7.0 169 446 - 2.39 2 3 cbr 1000 ------- 1 2.0 7.0 169 446 r 2.39 3 4 cbr 1000 ------- 1 2.0 7.0 155 425 + 2.39 4 7 cbr 1000 ------- 1 2.0 7.0 155 425 r 2.39 4 7 cbr 1000 ------- 1 2.0 7.0 152 420 - 2.39 4 7 cbr 1000 ------- 1 2.0 7.0 155 425 r 2.394 3 4 cbr 500 ------- 1 1.0 6.0 183 428 + 2.394 4 6 cbr 500 ------- 1 1.0 6.0 183 428 - 2.394 4 6 cbr 500 ------- 1 1.0 6.0 183 428 - 2.396 3 4 cbr 1000 ------- 1 2.0 7.0 162 435 r 2.398 2 3 cbr 1000 ------- 1 2.0 7.0 167 444 + 2.398 3 4 cbr 1000 ------- 1 2.0 7.0 167 444 r 2.398 4 7 cbr 1000 ------- 1 2.0 7.0 153 422 r 2.398 4 6 cbr 500 ------- 1 1.0 6.0 182 424 + 2.4 2 3 cbr 1000 ------- 1 2.0 7.0 170 447 - 2.4 2 3 cbr 1000 ------- 1 2.0 7.0 170 447 r 2.402 3 4 cbr 1000 ------- 1 2.0 7.0 156 427 + 2.402 4 7 cbr 1000 ------- 1 2.0 7.0 156 427 - 2.402 4 7 cbr 1000 ------- 1 2.0 7.0 156 427 - 2.404 3 4 cbr 1000 ------- 1 2.0 7.0 163 436 r 2.408 2 3 cbr 1000 ------- 1 2.0 7.0 168 445 + 2.408 3 4 cbr 1000 ------- 1 2.0 7.0 168 445 + 2.41 2 3 cbr 1000 ------- 1 2.0 7.0 171 448 - 2.41 2 3 cbr 1000 ------- 1 2.0 7.0 171 448 r 2.41 3 4 cbr 1000 ------- 1 2.0 7.0 157 429 + 2.41 4 7 cbr 1000 ------- 1 2.0 7.0 157 429 r 2.41 4 7 cbr 1000 ------- 1 2.0 7.0 154 423 - 2.41 4 7 cbr 1000 ------- 1 2.0 7.0 157 429 - 2.412 3 4 tcp 1000 ------- 0 0.0 5.0 29 438 r 2.414 3 4 cbr 500 ------- 1 1.0 6.0 184 431 + 2.414 4 6 cbr 500 ------- 1 1.0 6.0 184 431 - 2.414 4 6 cbr 500 ------- 1 1.0 6.0 184 431 r 2.418 2 3 cbr 1000 ------- 1 2.0 7.0 169 446 + 2.418 3 4 cbr 1000 ------- 1 2.0 7.0 169 446 r 2.418 4 7 cbr 1000 ------- 1 2.0 7.0 155 425 r 2.418 4 6 cbr 500 ------- 1 1.0 6.0 183 428 + 2.42 2 3 cbr 1000 ------- 1 2.0 7.0 172 449 - 2.42 2 3 cbr 1000 ------- 1 2.0 7.0 172 449 - 2.42 3 4 cbr 1000 ------- 1 2.0 7.0 164 437 r 2.422 3 4 cbr 1000 ------- 1 2.0 7.0 158 430 + 2.422 4 7 cbr 1000 ------- 1 2.0 7.0 158 430 - 2.422 4 7 cbr 1000 ------- 1 2.0 7.0 158 430 r 2.428 2 3 cbr 1000 ------- 1 2.0 7.0 170 447 + 2.428 3 4 cbr 1000 ------- 1 2.0 7.0 170 447 - 2.428 3 4 tcp 1000 ------- 0 0.0 5.0 30 439 + 2.43 2 3 cbr 1000 ------- 1 2.0 7.0 173 450 - 2.43 2 3 cbr 1000 ------- 1 2.0 7.0 173 450 r 2.43 3 4 cbr 1000 ------- 1 2.0 7.0 159 432 + 2.43 4 7 cbr 1000 ------- 1 2.0 7.0 159 432 r 2.43 4 7 cbr 1000 ------- 1 2.0 7.0 156 427 - 2.43 4 7 cbr 1000 ------- 1 2.0 7.0 159 432 - 2.436 3 4 tcp 1000 ------- 0 0.0 5.0 31 440 r 2.438 2 3 cbr 1000 ------- 1 2.0 7.0 171 448 + 2.438 3 4 cbr 1000 ------- 1 2.0 7.0 171 448 r 2.438 3 4 cbr 1000 ------- 1 2.0 7.0 160 433 + 2.438 4 7 cbr 1000 ------- 1 2.0 7.0 160 433 r 2.438 4 7 cbr 1000 ------- 1 2.0 7.0 157 429 r 2.438 4 6 cbr 500 ------- 1 1.0 6.0 184 431 - 2.438 4 7 cbr 1000 ------- 1 2.0 7.0 160 433 + 2.44 2 3 cbr 1000 ------- 1 2.0 7.0 174 451 - 2.44 2 3 cbr 1000 ------- 1 2.0 7.0 174 451 - 2.444 3 4 tcp 1000 ------- 0 0.0 5.0 32 441 r 2.446 3 4 cbr 1000 ------- 1 2.0 7.0 161 434 + 2.446 4 7 cbr 1000 ------- 1 2.0 7.0 161 434 - 2.446 4 7 cbr 1000 ------- 1 2.0 7.0 161 434 r 2.448 2 3 cbr 1000 ------- 1 2.0 7.0 172 449 + 2.448 3 4 cbr 1000 ------- 1 2.0 7.0 172 449 + 2.45 2 3 cbr 1000 ------- 1 2.0 7.0 175 452 - 2.45 2 3 cbr 1000 ------- 1 2.0 7.0 175 452 r 2.45 4 7 cbr 1000 ------- 1 2.0 7.0 158 430 - 2.452 3 4 cbr 1000 ------- 1 2.0 7.0 166 443 r 2.454 3 4 cbr 1000 ------- 1 2.0 7.0 162 435 + 2.454 4 7 cbr 1000 ------- 1 2.0 7.0 162 435 - 2.454 4 7 cbr 1000 ------- 1 2.0 7.0 162 435 r 2.458 2 3 cbr 1000 ------- 1 2.0 7.0 173 450 + 2.458 3 4 cbr 1000 ------- 1 2.0 7.0 173 450 r 2.458 4 7 cbr 1000 ------- 1 2.0 7.0 159 432 + 2.46 2 3 cbr 1000 ------- 1 2.0 7.0 176 453 - 2.46 2 3 cbr 1000 ------- 1 2.0 7.0 176 453 - 2.46 3 4 cbr 1000 ------- 1 2.0 7.0 167 444 r 2.462 3 4 cbr 1000 ------- 1 2.0 7.0 163 436 + 2.462 4 7 cbr 1000 ------- 1 2.0 7.0 163 436 - 2.462 4 7 cbr 1000 ------- 1 2.0 7.0 163 436 r 2.466 4 7 cbr 1000 ------- 1 2.0 7.0 160 433 r 2.468 2 3 cbr 1000 ------- 1 2.0 7.0 174 451 + 2.468 3 4 cbr 1000 ------- 1 2.0 7.0 174 451 - 2.468 3 4 cbr 1000 ------- 1 2.0 7.0 168 445 + 2.47 2 3 cbr 1000 ------- 1 2.0 7.0 177 454 - 2.47 2 3 cbr 1000 ------- 1 2.0 7.0 177 454 r 2.47 3 4 tcp 1000 ------- 0 0.0 5.0 29 438 + 2.47 4 5 tcp 1000 ------- 0 0.0 5.0 29 438 - 2.47 4 5 tcp 1000 ------- 0 0.0 5.0 29 438 r 2.474 4 7 cbr 1000 ------- 1 2.0 7.0 161 434 - 2.476 3 4 cbr 1000 ------- 1 2.0 7.0 169 446 r 2.478 2 3 cbr 1000 ------- 1 2.0 7.0 175 452 + 2.478 3 4 cbr 1000 ------- 1 2.0 7.0 175 452 r 2.478 3 4 cbr 1000 ------- 1 2.0 7.0 164 437 + 2.478 4 7 cbr 1000 ------- 1 2.0 7.0 164 437 - 2.478 4 7 cbr 1000 ------- 1 2.0 7.0 164 437 + 2.48 2 3 cbr 1000 ------- 1 2.0 7.0 178 455 - 2.48 2 3 cbr 1000 ------- 1 2.0 7.0 178 455 r 2.482 4 7 cbr 1000 ------- 1 2.0 7.0 162 435 - 2.484 3 4 cbr 1000 ------- 1 2.0 7.0 170 447 r 2.486 3 4 tcp 1000 ------- 0 0.0 5.0 30 439 + 2.486 4 5 tcp 1000 ------- 0 0.0 5.0 30 439 - 2.486 4 5 tcp 1000 ------- 0 0.0 5.0 30 439 r 2.488 2 3 cbr 1000 ------- 1 2.0 7.0 176 453 + 2.488 3 4 cbr 1000 ------- 1 2.0 7.0 176 453 + 2.49 2 3 cbr 1000 ------- 1 2.0 7.0 179 456 - 2.49 2 3 cbr 1000 ------- 1 2.0 7.0 179 456 r 2.49 4 7 cbr 1000 ------- 1 2.0 7.0 163 436 r 2.4916 4 5 tcp 1000 ------- 0 0.0 5.0 29 438 + 2.4916 5 4 ack 40 ------- 0 5.0 0.0 40 457 - 2.4916 5 4 ack 40 ------- 0 5.0 0.0 40 457 - 2.492 3 4 cbr 1000 ------- 1 2.0 7.0 171 448 r 2.494 3 4 tcp 1000 ------- 0 0.0 5.0 31 440 + 2.494 4 5 tcp 1000 ------- 0 0.0 5.0 31 440 - 2.494 4 5 tcp 1000 ------- 0 0.0 5.0 31 440 r 2.498 2 3 cbr 1000 ------- 1 2.0 7.0 177 454 + 2.498 3 4 cbr 1000 ------- 1 2.0 7.0 177 454 + 2.5 2 3 cbr 1000 ------- 1 2.0 7.0 180 458 - 2.5 2 3 cbr 1000 ------- 1 2.0 7.0 180 458 v 2.5 eval {set sim_annotation {Ack_40 }} - 2.5 3 4 cbr 1000 ------- 1 2.0 7.0 172 449 r 2.502 3 4 tcp 1000 ------- 0 0.0 5.0 32 441 + 2.502 4 5 tcp 1000 ------- 0 0.0 5.0 32 441 - 2.502 4 5 tcp 1000 ------- 0 0.0 5.0 32 441 r 2.506 4 7 cbr 1000 ------- 1 2.0 7.0 164 437 r 2.5076 4 5 tcp 1000 ------- 0 0.0 5.0 30 439 + 2.5076 5 4 ack 40 ------- 0 5.0 0.0 40 459 - 2.5076 5 4 ack 40 ------- 0 5.0 0.0 40 459 r 2.508 2 3 cbr 1000 ------- 1 2.0 7.0 178 455 + 2.508 3 4 cbr 1000 ------- 1 2.0 7.0 178 455 - 2.508 3 4 cbr 1000 ------- 1 2.0 7.0 173 450 r 2.51 3 4 cbr 1000 ------- 1 2.0 7.0 166 443 + 2.51 4 7 cbr 1000 ------- 1 2.0 7.0 166 443 - 2.51 4 7 cbr 1000 ------- 1 2.0 7.0 166 443 r 2.51166 5 4 ack 40 ------- 0 5.0 0.0 40 457 + 2.51166 4 3 ack 40 ------- 0 5.0 0.0 40 457 - 2.51166 4 3 ack 40 ------- 0 5.0 0.0 40 457 r 2.5156 4 5 tcp 1000 ------- 0 0.0 5.0 31 440 + 2.5156 5 4 ack 40 ------- 0 5.0 0.0 40 460 - 2.5156 5 4 ack 40 ------- 0 5.0 0.0 40 460 - 2.516 3 4 cbr 1000 ------- 1 2.0 7.0 174 451 r 2.518 2 3 cbr 1000 ------- 1 2.0 7.0 179 456 + 2.518 3 4 cbr 1000 ------- 1 2.0 7.0 179 456 r 2.518 3 4 cbr 1000 ------- 1 2.0 7.0 167 444 + 2.518 4 7 cbr 1000 ------- 1 2.0 7.0 167 444 - 2.518 4 7 cbr 1000 ------- 1 2.0 7.0 167 444 r 2.5236 4 5 tcp 1000 ------- 0 0.0 5.0 32 441 + 2.5236 5 4 ack 40 ------- 0 5.0 0.0 40 461 - 2.5236 5 4 ack 40 ------- 0 5.0 0.0 40 461 - 2.524 3 4 cbr 1000 ------- 1 2.0 7.0 175 452 r 2.526 3 4 cbr 1000 ------- 1 2.0 7.0 168 445 + 2.526 4 7 cbr 1000 ------- 1 2.0 7.0 168 445 - 2.526 4 7 cbr 1000 ------- 1 2.0 7.0 168 445 r 2.52766 5 4 ack 40 ------- 0 5.0 0.0 40 459 + 2.52766 4 3 ack 40 ------- 0 5.0 0.0 40 459 - 2.52766 4 3 ack 40 ------- 0 5.0 0.0 40 459 r 2.528 2 3 cbr 1000 ------- 1 2.0 7.0 180 458 + 2.528 3 4 cbr 1000 ------- 1 2.0 7.0 180 458 - 2.532 3 4 cbr 1000 ------- 1 2.0 7.0 176 453 r 2.534 3 4 cbr 1000 ------- 1 2.0 7.0 169 446 + 2.534 4 7 cbr 1000 ------- 1 2.0 7.0 169 446 - 2.534 4 7 cbr 1000 ------- 1 2.0 7.0 169 446 r 2.53566 5 4 ack 40 ------- 0 5.0 0.0 40 460 + 2.53566 4 3 ack 40 ------- 0 5.0 0.0 40 460 - 2.53566 4 3 ack 40 ------- 0 5.0 0.0 40 460 r 2.538 4 7 cbr 1000 ------- 1 2.0 7.0 166 443 - 2.54 3 4 cbr 1000 ------- 1 2.0 7.0 177 454 r 2.542 3 4 cbr 1000 ------- 1 2.0 7.0 170 447 + 2.542 4 7 cbr 1000 ------- 1 2.0 7.0 170 447 - 2.542 4 7 cbr 1000 ------- 1 2.0 7.0 170 447 r 2.54366 5 4 ack 40 ------- 0 5.0 0.0 40 461 + 2.54366 4 3 ack 40 ------- 0 5.0 0.0 40 461 - 2.54366 4 3 ack 40 ------- 0 5.0 0.0 40 461 r 2.546 4 7 cbr 1000 ------- 1 2.0 7.0 167 444 - 2.548 3 4 cbr 1000 ------- 1 2.0 7.0 178 455 v 2.5499999999999998 eval {set sim_annotation {FTP stops}} r 2.55 3 4 cbr 1000 ------- 1 2.0 7.0 171 448 + 2.55 4 7 cbr 1000 ------- 1 2.0 7.0 171 448 - 2.55 4 7 cbr 1000 ------- 1 2.0 7.0 171 448 r 2.554 4 7 cbr 1000 ------- 1 2.0 7.0 168 445 - 2.556 3 4 cbr 1000 ------- 1 2.0 7.0 179 456 r 2.558 3 4 cbr 1000 ------- 1 2.0 7.0 172 449 + 2.558 4 7 cbr 1000 ------- 1 2.0 7.0 172 449 - 2.558 4 7 cbr 1000 ------- 1 2.0 7.0 172 449 r 2.56198 4 3 ack 40 ------- 0 5.0 0.0 40 457 + 2.56198 3 0 ack 40 ------- 0 5.0 0.0 40 457 - 2.56198 3 0 ack 40 ------- 0 5.0 0.0 40 457 r 2.562 4 7 cbr 1000 ------- 1 2.0 7.0 169 446 - 2.564 3 4 cbr 1000 ------- 1 2.0 7.0 180 458 r 2.566 3 4 cbr 1000 ------- 1 2.0 7.0 173 450 + 2.566 4 7 cbr 1000 ------- 1 2.0 7.0 173 450 - 2.566 4 7 cbr 1000 ------- 1 2.0 7.0 173 450 r 2.57 4 7 cbr 1000 ------- 1 2.0 7.0 170 447 r 2.574 3 4 cbr 1000 ------- 1 2.0 7.0 174 451 + 2.574 4 7 cbr 1000 ------- 1 2.0 7.0 174 451 - 2.574 4 7 cbr 1000 ------- 1 2.0 7.0 174 451 r 2.57798 4 3 ack 40 ------- 0 5.0 0.0 40 459 + 2.57798 3 0 ack 40 ------- 0 5.0 0.0 40 459 - 2.57798 3 0 ack 40 ------- 0 5.0 0.0 40 459 r 2.578 4 7 cbr 1000 ------- 1 2.0 7.0 171 448 r 2.582 3 4 cbr 1000 ------- 1 2.0 7.0 175 452 + 2.582 4 7 cbr 1000 ------- 1 2.0 7.0 175 452 - 2.582 4 7 cbr 1000 ------- 1 2.0 7.0 175 452 r 2.58205 3 0 ack 40 ------- 0 5.0 0.0 40 457 r 2.58598 4 3 ack 40 ------- 0 5.0 0.0 40 460 + 2.58598 3 0 ack 40 ------- 0 5.0 0.0 40 460 - 2.58598 3 0 ack 40 ------- 0 5.0 0.0 40 460 r 2.586 4 7 cbr 1000 ------- 1 2.0 7.0 172 449 r 2.59 3 4 cbr 1000 ------- 1 2.0 7.0 176 453 + 2.59 4 7 cbr 1000 ------- 1 2.0 7.0 176 453 - 2.59 4 7 cbr 1000 ------- 1 2.0 7.0 176 453 r 2.59398 4 3 ack 40 ------- 0 5.0 0.0 40 461 + 2.59398 3 0 ack 40 ------- 0 5.0 0.0 40 461 - 2.59398 3 0 ack 40 ------- 0 5.0 0.0 40 461 r 2.594 4 7 cbr 1000 ------- 1 2.0 7.0 173 450 r 2.598 3 4 cbr 1000 ------- 1 2.0 7.0 177 454 + 2.598 4 7 cbr 1000 ------- 1 2.0 7.0 177 454 - 2.598 4 7 cbr 1000 ------- 1 2.0 7.0 177 454 r 2.59805 3 0 ack 40 ------- 0 5.0 0.0 40 459 r 2.602 4 7 cbr 1000 ------- 1 2.0 7.0 174 451 r 2.606 3 4 cbr 1000 ------- 1 2.0 7.0 178 455 + 2.606 4 7 cbr 1000 ------- 1 2.0 7.0 178 455 - 2.606 4 7 cbr 1000 ------- 1 2.0 7.0 178 455 r 2.60605 3 0 ack 40 ------- 0 5.0 0.0 40 460 r 2.61 4 7 cbr 1000 ------- 1 2.0 7.0 175 452 r 2.614 3 4 cbr 1000 ------- 1 2.0 7.0 179 456 + 2.614 4 7 cbr 1000 ------- 1 2.0 7.0 179 456 - 2.614 4 7 cbr 1000 ------- 1 2.0 7.0 179 456 r 2.61405 3 0 ack 40 ------- 0 5.0 0.0 40 461 r 2.618 4 7 cbr 1000 ------- 1 2.0 7.0 176 453 r 2.622 3 4 cbr 1000 ------- 1 2.0 7.0 180 458 + 2.622 4 7 cbr 1000 ------- 1 2.0 7.0 180 458 - 2.622 4 7 cbr 1000 ------- 1 2.0 7.0 180 458 r 2.626 4 7 cbr 1000 ------- 1 2.0 7.0 177 454 r 2.634 4 7 cbr 1000 ------- 1 2.0 7.0 178 455 r 2.642 4 7 cbr 1000 ------- 1 2.0 7.0 179 456 r 2.65 4 7 cbr 1000 ------- 1 2.0 7.0 180 458 nam-1.15/edu/C2-sliding-color.nam0000664000076400007660000153217106756704447015412 0ustar tomhnsnamV -t * -v 1.0a5 -a 0 A -t * -n 1 -p 0 -o 255 -c 15 -a 1 A -t * -h 1 -m 127 -s 8 c -t * -i 0 -n black c -t * -i 1 -n red n -t * -a 4 -s 4 -S UP -v circle -c black n -t * -a 0 -s 0 -S UP -v circle -c black n -t * -a 5 -s 5 -S UP -v circle -c black n -t * -a 1 -s 1 -S UP -v circle -c black n -t * -a 6 -s 6 -S UP -v circle -c black n -t * -a 2 -s 2 -S UP -v circle -c black n -t * -a 7 -s 7 -S UP -v circle -c black n -t * -a 3 -s 3 -S UP -v circle -c black l -t * -s 0 -d 3 -S UP -r 5000000 -D 0.02 -c black -o right-down l -t * -s 1 -d 3 -S UP -r 1000000 -D 0.02 -c black -o right l -t * -s 2 -d 3 -S UP -r 1000000 -D 0.02 -c black -o right-up l -t * -s 3 -d 4 -S UP -r 1000000 -D 0.050000000000000003 -c black -o right l -t * -s 4 -d 5 -S UP -r 5000000 -D 0.02 -c black -o right-up l -t * -s 4 -d 6 -S UP -r 1000000 -D 0.02 -c black -o right l -t * -s 4 -d 7 -S UP -r 1000000 -D 0.02 -c black -o right-down q -t * -s 3 -d 4 -a 0.5 q -t * -s 4 -d 3 -a 0.5 a -t 0.00000000000000000 -s 0 -d 5 -n tcp f -t 0.00000000000000000 -s 0 -d 5 -n cwnd_ -a tcp -v 8.000000 -T v f -t 0.00000000000000000 -s 0 -d 5 -n cwnd_ -a tcp -v 8.000000 -o 8.000000 -T v v -t 0.00000000000000000 monitor_agent 0 tcp n -t 0 -s 0 -S DLABEL -l TCP -L "" n -t 0 -s 5 -S DLABEL -l TCP -L "" n -t 0 -s 1 -S DLABEL -l CBR-1 -L "" n -t 0 -s 2 -S DLABEL -l CBR-2 -L "" n -t 0 -s 6 -S DLABEL -l CBR-1 -L "" n -t 0 -s 7 -S DLABEL -l CBR-2 -L "" v -t 0 sim_annotation 0 1 Sliding Window (window size=8) in a heavely loaded network + -t 0.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 0 -a 1 -x {1.0 6.0 0 ------- null} - -t 0.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 0 -a 1 -x {1.0 6.0 0 ------- null} h -t 0.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 0 -a 1 -x {1.0 6.0 -1 ------- null} v -t 0.050000000000000003 sim_annotation 0.050000000000000003 2 CBR-1 starts + -t 0.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 1 -a 1 -x {1.0 6.0 1 ------- null} - -t 0.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 1 -a 1 -x {1.0 6.0 1 ------- null} h -t 0.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 1 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 2 -a 1 -x {1.0 6.0 2 ------- null} - -t 0.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 2 -a 1 -x {1.0 6.0 2 ------- null} h -t 0.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 2 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.074 -s 1 -d 3 -p cbr -e 500 -c 1 -i 0 -a 1 -x {1.0 6.0 0 ------- null} + -t 0.074 -s 3 -d 4 -p cbr -e 500 -c 1 -i 0 -a 1 -x {1.0 6.0 0 ------- null} - -t 0.074 -s 3 -d 4 -p cbr -e 500 -c 1 -i 0 -a 1 -x {1.0 6.0 0 ------- null} h -t 0.074 -s 3 -d 4 -p cbr -e 500 -c 1 -i 0 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 3 -a 1 -x {1.0 6.0 3 ------- null} - -t 0.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 3 -a 1 -x {1.0 6.0 3 ------- null} h -t 0.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 3 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.084 -s 1 -d 3 -p cbr -e 500 -c 1 -i 1 -a 1 -x {1.0 6.0 1 ------- null} + -t 0.084 -s 3 -d 4 -p cbr -e 500 -c 1 -i 1 -a 1 -x {1.0 6.0 1 ------- null} - -t 0.084 -s 3 -d 4 -p cbr -e 500 -c 1 -i 1 -a 1 -x {1.0 6.0 1 ------- null} h -t 0.084 -s 3 -d 4 -p cbr -e 500 -c 1 -i 1 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 4 -a 1 -x {1.0 6.0 4 ------- null} - -t 0.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 4 -a 1 -x {1.0 6.0 4 ------- null} h -t 0.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 4 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.094 -s 1 -d 3 -p cbr -e 500 -c 1 -i 2 -a 1 -x {1.0 6.0 2 ------- null} + -t 0.094 -s 3 -d 4 -p cbr -e 500 -c 1 -i 2 -a 1 -x {1.0 6.0 2 ------- null} - -t 0.094 -s 3 -d 4 -p cbr -e 500 -c 1 -i 2 -a 1 -x {1.0 6.0 2 ------- null} h -t 0.094 -s 3 -d 4 -p cbr -e 500 -c 1 -i 2 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 5 -a 1 -x {1.0 6.0 5 ------- null} - -t 0.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 5 -a 1 -x {1.0 6.0 5 ------- null} h -t 0.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 5 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 6 -a 1 -x {2.0 7.0 0 ------- null} - -t 0.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 6 -a 1 -x {2.0 7.0 0 ------- null} h -t 0.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 6 -a 1 -x {2.0 7.0 -1 ------- null} v -t 0.10000000000000001 sim_annotation 0.10000000000000001 3 CBR-2 starts r -t 0.104 -s 1 -d 3 -p cbr -e 500 -c 1 -i 3 -a 1 -x {1.0 6.0 3 ------- null} + -t 0.104 -s 3 -d 4 -p cbr -e 500 -c 1 -i 3 -a 1 -x {1.0 6.0 3 ------- null} - -t 0.104 -s 3 -d 4 -p cbr -e 500 -c 1 -i 3 -a 1 -x {1.0 6.0 3 ------- null} h -t 0.104 -s 3 -d 4 -p cbr -e 500 -c 1 -i 3 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 7 -a 1 -x {1.0 6.0 6 ------- null} - -t 0.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 7 -a 1 -x {1.0 6.0 6 ------- null} h -t 0.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 7 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.11 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 8 -a 1 -x {2.0 7.0 1 ------- null} - -t 0.11 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 8 -a 1 -x {2.0 7.0 1 ------- null} h -t 0.11 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 8 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.114 -s 1 -d 3 -p cbr -e 500 -c 1 -i 4 -a 1 -x {1.0 6.0 4 ------- null} + -t 0.114 -s 3 -d 4 -p cbr -e 500 -c 1 -i 4 -a 1 -x {1.0 6.0 4 ------- null} - -t 0.114 -s 3 -d 4 -p cbr -e 500 -c 1 -i 4 -a 1 -x {1.0 6.0 4 ------- null} h -t 0.114 -s 3 -d 4 -p cbr -e 500 -c 1 -i 4 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 9 -a 1 -x {1.0 6.0 7 ------- null} - -t 0.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 9 -a 1 -x {1.0 6.0 7 ------- null} h -t 0.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 9 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 10 -a 1 -x {2.0 7.0 2 ------- null} - -t 0.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 10 -a 1 -x {2.0 7.0 2 ------- null} h -t 0.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 10 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.124 -s 1 -d 3 -p cbr -e 500 -c 1 -i 5 -a 1 -x {1.0 6.0 5 ------- null} + -t 0.124 -s 3 -d 4 -p cbr -e 500 -c 1 -i 5 -a 1 -x {1.0 6.0 5 ------- null} - -t 0.124 -s 3 -d 4 -p cbr -e 500 -c 1 -i 5 -a 1 -x {1.0 6.0 5 ------- null} h -t 0.124 -s 3 -d 4 -p cbr -e 500 -c 1 -i 5 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.128 -s 3 -d 4 -p cbr -e 500 -c 1 -i 0 -a 1 -x {1.0 6.0 0 ------- null} + -t 0.128 -s 4 -d 6 -p cbr -e 500 -c 1 -i 0 -a 1 -x {1.0 6.0 0 ------- null} - -t 0.128 -s 4 -d 6 -p cbr -e 500 -c 1 -i 0 -a 1 -x {1.0 6.0 0 ------- null} h -t 0.128 -s 4 -d 6 -p cbr -e 500 -c 1 -i 0 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.128 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 6 -a 1 -x {2.0 7.0 0 ------- null} + -t 0.128 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 6 -a 1 -x {2.0 7.0 0 ------- null} - -t 0.128 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 6 -a 1 -x {2.0 7.0 0 ------- null} h -t 0.128 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 6 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 11 -a 1 -x {1.0 6.0 8 ------- null} - -t 0.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 11 -a 1 -x {1.0 6.0 8 ------- null} h -t 0.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 11 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.13 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 12 -a 1 -x {2.0 7.0 3 ------- null} - -t 0.13 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 12 -a 1 -x {2.0 7.0 3 ------- null} h -t 0.13 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 12 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.134 -s 1 -d 3 -p cbr -e 500 -c 1 -i 7 -a 1 -x {1.0 6.0 6 ------- null} + -t 0.134 -s 3 -d 4 -p cbr -e 500 -c 1 -i 7 -a 1 -x {1.0 6.0 6 ------- null} - -t 0.136 -s 3 -d 4 -p cbr -e 500 -c 1 -i 7 -a 1 -x {1.0 6.0 6 ------- null} h -t 0.136 -s 3 -d 4 -p cbr -e 500 -c 1 -i 7 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.138 -s 3 -d 4 -p cbr -e 500 -c 1 -i 1 -a 1 -x {1.0 6.0 1 ------- null} + -t 0.138 -s 4 -d 6 -p cbr -e 500 -c 1 -i 1 -a 1 -x {1.0 6.0 1 ------- null} - -t 0.138 -s 4 -d 6 -p cbr -e 500 -c 1 -i 1 -a 1 -x {1.0 6.0 1 ------- null} h -t 0.138 -s 4 -d 6 -p cbr -e 500 -c 1 -i 1 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.138 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 8 -a 1 -x {2.0 7.0 1 ------- null} + -t 0.138 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 8 -a 1 -x {2.0 7.0 1 ------- null} + -t 0.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 13 -a 1 -x {1.0 6.0 9 ------- null} - -t 0.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 13 -a 1 -x {1.0 6.0 9 ------- null} h -t 0.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 13 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 14 -a 1 -x {2.0 7.0 4 ------- null} - -t 0.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 14 -a 1 -x {2.0 7.0 4 ------- null} h -t 0.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 14 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.14 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 8 -a 1 -x {2.0 7.0 1 ------- null} h -t 0.14 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 8 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.144 -s 1 -d 3 -p cbr -e 500 -c 1 -i 9 -a 1 -x {1.0 6.0 7 ------- null} + -t 0.144 -s 3 -d 4 -p cbr -e 500 -c 1 -i 9 -a 1 -x {1.0 6.0 7 ------- null} r -t 0.148 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 10 -a 1 -x {2.0 7.0 2 ------- null} + -t 0.148 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 10 -a 1 -x {2.0 7.0 2 ------- null} r -t 0.148 -s 3 -d 4 -p cbr -e 500 -c 1 -i 2 -a 1 -x {1.0 6.0 2 ------- null} + -t 0.148 -s 4 -d 6 -p cbr -e 500 -c 1 -i 2 -a 1 -x {1.0 6.0 2 ------- null} - -t 0.148 -s 4 -d 6 -p cbr -e 500 -c 1 -i 2 -a 1 -x {1.0 6.0 2 ------- null} h -t 0.148 -s 4 -d 6 -p cbr -e 500 -c 1 -i 2 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.148 -s 3 -d 4 -p cbr -e 500 -c 1 -i 9 -a 1 -x {1.0 6.0 7 ------- null} h -t 0.148 -s 3 -d 4 -p cbr -e 500 -c 1 -i 9 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 15 -a 1 -x {1.0 6.0 10 ------- null} - -t 0.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 15 -a 1 -x {1.0 6.0 10 ------- null} h -t 0.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 15 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.15 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 16 -a 1 -x {2.0 7.0 5 ------- null} - -t 0.15 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 16 -a 1 -x {2.0 7.0 5 ------- null} h -t 0.15 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 16 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.152 -s 4 -d 6 -p cbr -e 500 -c 1 -i 0 -a 1 -x {1.0 6.0 0 ------- null} - -t 0.152 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 10 -a 1 -x {2.0 7.0 2 ------- null} h -t 0.152 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 10 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.154 -s 1 -d 3 -p cbr -e 500 -c 1 -i 11 -a 1 -x {1.0 6.0 8 ------- null} + -t 0.154 -s 3 -d 4 -p cbr -e 500 -c 1 -i 11 -a 1 -x {1.0 6.0 8 ------- null} r -t 0.158 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 12 -a 1 -x {2.0 7.0 3 ------- null} + -t 0.158 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 12 -a 1 -x {2.0 7.0 3 ------- null} r -t 0.158 -s 3 -d 4 -p cbr -e 500 -c 1 -i 3 -a 1 -x {1.0 6.0 3 ------- null} + -t 0.158 -s 4 -d 6 -p cbr -e 500 -c 1 -i 3 -a 1 -x {1.0 6.0 3 ------- null} - -t 0.158 -s 4 -d 6 -p cbr -e 500 -c 1 -i 3 -a 1 -x {1.0 6.0 3 ------- null} h -t 0.158 -s 4 -d 6 -p cbr -e 500 -c 1 -i 3 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 17 -a 1 -x {1.0 6.0 11 ------- null} - -t 0.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 17 -a 1 -x {1.0 6.0 11 ------- null} h -t 0.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 17 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 18 -a 1 -x {2.0 7.0 6 ------- null} - -t 0.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 18 -a 1 -x {2.0 7.0 6 ------- null} h -t 0.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 18 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.16 -s 3 -d 4 -p cbr -e 500 -c 1 -i 11 -a 1 -x {1.0 6.0 8 ------- null} h -t 0.16 -s 3 -d 4 -p cbr -e 500 -c 1 -i 11 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.162 -s 4 -d 6 -p cbr -e 500 -c 1 -i 1 -a 1 -x {1.0 6.0 1 ------- null} r -t 0.164 -s 1 -d 3 -p cbr -e 500 -c 1 -i 13 -a 1 -x {1.0 6.0 9 ------- null} + -t 0.164 -s 3 -d 4 -p cbr -e 500 -c 1 -i 13 -a 1 -x {1.0 6.0 9 ------- null} - -t 0.164 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 12 -a 1 -x {2.0 7.0 3 ------- null} h -t 0.164 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 12 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.168 -s 3 -d 4 -p cbr -e 500 -c 1 -i 4 -a 1 -x {1.0 6.0 4 ------- null} + -t 0.168 -s 4 -d 6 -p cbr -e 500 -c 1 -i 4 -a 1 -x {1.0 6.0 4 ------- null} - -t 0.168 -s 4 -d 6 -p cbr -e 500 -c 1 -i 4 -a 1 -x {1.0 6.0 4 ------- null} h -t 0.168 -s 4 -d 6 -p cbr -e 500 -c 1 -i 4 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.168 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 14 -a 1 -x {2.0 7.0 4 ------- null} + -t 0.168 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 14 -a 1 -x {2.0 7.0 4 ------- null} + -t 0.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 19 -a 1 -x {1.0 6.0 12 ------- null} - -t 0.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 19 -a 1 -x {1.0 6.0 12 ------- null} h -t 0.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 19 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.17 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 20 -a 1 -x {2.0 7.0 7 ------- null} - -t 0.17 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 20 -a 1 -x {2.0 7.0 7 ------- null} h -t 0.17 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 20 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.172 -s 4 -d 6 -p cbr -e 500 -c 1 -i 2 -a 1 -x {1.0 6.0 2 ------- null} - -t 0.172 -s 3 -d 4 -p cbr -e 500 -c 1 -i 13 -a 1 -x {1.0 6.0 9 ------- null} h -t 0.172 -s 3 -d 4 -p cbr -e 500 -c 1 -i 13 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.174 -s 1 -d 3 -p cbr -e 500 -c 1 -i 15 -a 1 -x {1.0 6.0 10 ------- null} + -t 0.174 -s 3 -d 4 -p cbr -e 500 -c 1 -i 15 -a 1 -x {1.0 6.0 10 ------- null} - -t 0.176 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 14 -a 1 -x {2.0 7.0 4 ------- null} h -t 0.176 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 14 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.178 -s 3 -d 4 -p cbr -e 500 -c 1 -i 5 -a 1 -x {1.0 6.0 5 ------- null} + -t 0.178 -s 4 -d 6 -p cbr -e 500 -c 1 -i 5 -a 1 -x {1.0 6.0 5 ------- null} - -t 0.178 -s 4 -d 6 -p cbr -e 500 -c 1 -i 5 -a 1 -x {1.0 6.0 5 ------- null} h -t 0.178 -s 4 -d 6 -p cbr -e 500 -c 1 -i 5 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.178 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 16 -a 1 -x {2.0 7.0 5 ------- null} + -t 0.178 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 16 -a 1 -x {2.0 7.0 5 ------- null} + -t 0.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 21 -a 1 -x {1.0 6.0 13 ------- null} - -t 0.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 21 -a 1 -x {1.0 6.0 13 ------- null} h -t 0.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 21 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 22 -a 1 -x {2.0 7.0 8 ------- null} - -t 0.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 22 -a 1 -x {2.0 7.0 8 ------- null} h -t 0.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 22 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.182 -s 4 -d 6 -p cbr -e 500 -c 1 -i 3 -a 1 -x {1.0 6.0 3 ------- null} r -t 0.184 -s 1 -d 3 -p cbr -e 500 -c 1 -i 17 -a 1 -x {1.0 6.0 11 ------- null} + -t 0.184 -s 3 -d 4 -p cbr -e 500 -c 1 -i 17 -a 1 -x {1.0 6.0 11 ------- null} - -t 0.184 -s 3 -d 4 -p cbr -e 500 -c 1 -i 15 -a 1 -x {1.0 6.0 10 ------- null} h -t 0.184 -s 3 -d 4 -p cbr -e 500 -c 1 -i 15 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.186 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 6 -a 1 -x {2.0 7.0 0 ------- null} + -t 0.186 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 6 -a 1 -x {2.0 7.0 0 ------- null} - -t 0.186 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 6 -a 1 -x {2.0 7.0 0 ------- null} h -t 0.186 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 6 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.188 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 18 -a 1 -x {2.0 7.0 6 ------- null} + -t 0.188 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 18 -a 1 -x {2.0 7.0 6 ------- null} - -t 0.188 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 16 -a 1 -x {2.0 7.0 5 ------- null} h -t 0.188 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 16 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.19 -s 3 -d 4 -p cbr -e 500 -c 1 -i 7 -a 1 -x {1.0 6.0 6 ------- null} + -t 0.19 -s 4 -d 6 -p cbr -e 500 -c 1 -i 7 -a 1 -x {1.0 6.0 6 ------- null} - -t 0.19 -s 4 -d 6 -p cbr -e 500 -c 1 -i 7 -a 1 -x {1.0 6.0 6 ------- null} h -t 0.19 -s 4 -d 6 -p cbr -e 500 -c 1 -i 7 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 23 -a 1 -x {1.0 6.0 14 ------- null} - -t 0.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 23 -a 1 -x {1.0 6.0 14 ------- null} h -t 0.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 23 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.19 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 24 -a 1 -x {2.0 7.0 9 ------- null} - -t 0.19 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 24 -a 1 -x {2.0 7.0 9 ------- null} h -t 0.19 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 24 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.192 -s 4 -d 6 -p cbr -e 500 -c 1 -i 4 -a 1 -x {1.0 6.0 4 ------- null} r -t 0.194 -s 1 -d 3 -p cbr -e 500 -c 1 -i 19 -a 1 -x {1.0 6.0 12 ------- null} + -t 0.194 -s 3 -d 4 -p cbr -e 500 -c 1 -i 19 -a 1 -x {1.0 6.0 12 ------- null} - -t 0.196 -s 3 -d 4 -p cbr -e 500 -c 1 -i 17 -a 1 -x {1.0 6.0 11 ------- null} h -t 0.196 -s 3 -d 4 -p cbr -e 500 -c 1 -i 17 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.198 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 8 -a 1 -x {2.0 7.0 1 ------- null} + -t 0.198 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 8 -a 1 -x {2.0 7.0 1 ------- null} - -t 0.198 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 8 -a 1 -x {2.0 7.0 1 ------- null} h -t 0.198 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 8 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.198 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 20 -a 1 -x {2.0 7.0 7 ------- null} + -t 0.198 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 20 -a 1 -x {2.0 7.0 7 ------- null} + -t 0.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 25 -a 1 -x {1.0 6.0 15 ------- null} - -t 0.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 25 -a 1 -x {1.0 6.0 15 ------- null} h -t 0.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 25 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 26 -a 1 -x {2.0 7.0 10 ------- null} - -t 0.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 26 -a 1 -x {2.0 7.0 10 ------- null} h -t 0.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 26 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.2 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 18 -a 1 -x {2.0 7.0 6 ------- null} h -t 0.2 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 18 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.202 -s 4 -d 6 -p cbr -e 500 -c 1 -i 5 -a 1 -x {1.0 6.0 5 ------- null} r -t 0.202 -s 3 -d 4 -p cbr -e 500 -c 1 -i 9 -a 1 -x {1.0 6.0 7 ------- null} + -t 0.202 -s 4 -d 6 -p cbr -e 500 -c 1 -i 9 -a 1 -x {1.0 6.0 7 ------- null} - -t 0.202 -s 4 -d 6 -p cbr -e 500 -c 1 -i 9 -a 1 -x {1.0 6.0 7 ------- null} h -t 0.202 -s 4 -d 6 -p cbr -e 500 -c 1 -i 9 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.204 -s 1 -d 3 -p cbr -e 500 -c 1 -i 21 -a 1 -x {1.0 6.0 13 ------- null} + -t 0.204 -s 3 -d 4 -p cbr -e 500 -c 1 -i 21 -a 1 -x {1.0 6.0 13 ------- null} r -t 0.208 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 22 -a 1 -x {2.0 7.0 8 ------- null} + -t 0.208 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 22 -a 1 -x {2.0 7.0 8 ------- null} - -t 0.208 -s 3 -d 4 -p cbr -e 500 -c 1 -i 19 -a 1 -x {1.0 6.0 12 ------- null} h -t 0.208 -s 3 -d 4 -p cbr -e 500 -c 1 -i 19 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.21 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 10 -a 1 -x {2.0 7.0 2 ------- null} + -t 0.21 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 10 -a 1 -x {2.0 7.0 2 ------- null} - -t 0.21 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 10 -a 1 -x {2.0 7.0 2 ------- null} h -t 0.21 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 10 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 27 -a 1 -x {1.0 6.0 16 ------- null} - -t 0.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 27 -a 1 -x {1.0 6.0 16 ------- null} h -t 0.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 27 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.21 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 28 -a 1 -x {2.0 7.0 11 ------- null} - -t 0.21 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 28 -a 1 -x {2.0 7.0 11 ------- null} h -t 0.21 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 28 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.212 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 20 -a 1 -x {2.0 7.0 7 ------- null} h -t 0.212 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 20 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.214 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 6 -a 1 -x {2.0 7.0 0 ------- null} r -t 0.214 -s 4 -d 6 -p cbr -e 500 -c 1 -i 7 -a 1 -x {1.0 6.0 6 ------- null} r -t 0.214 -s 3 -d 4 -p cbr -e 500 -c 1 -i 11 -a 1 -x {1.0 6.0 8 ------- null} + -t 0.214 -s 4 -d 6 -p cbr -e 500 -c 1 -i 11 -a 1 -x {1.0 6.0 8 ------- null} - -t 0.214 -s 4 -d 6 -p cbr -e 500 -c 1 -i 11 -a 1 -x {1.0 6.0 8 ------- null} h -t 0.214 -s 4 -d 6 -p cbr -e 500 -c 1 -i 11 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.214 -s 1 -d 3 -p cbr -e 500 -c 1 -i 23 -a 1 -x {1.0 6.0 14 ------- null} + -t 0.214 -s 3 -d 4 -p cbr -e 500 -c 1 -i 23 -a 1 -x {1.0 6.0 14 ------- null} r -t 0.218 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 24 -a 1 -x {2.0 7.0 9 ------- null} + -t 0.218 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 24 -a 1 -x {2.0 7.0 9 ------- null} + -t 0.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 29 -a 1 -x {1.0 6.0 17 ------- null} - -t 0.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 29 -a 1 -x {1.0 6.0 17 ------- null} h -t 0.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 29 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 30 -a 1 -x {2.0 7.0 12 ------- null} - -t 0.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 30 -a 1 -x {2.0 7.0 12 ------- null} h -t 0.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 30 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.22 -s 3 -d 4 -p cbr -e 500 -c 1 -i 21 -a 1 -x {1.0 6.0 13 ------- null} h -t 0.22 -s 3 -d 4 -p cbr -e 500 -c 1 -i 21 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.222 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 12 -a 1 -x {2.0 7.0 3 ------- null} + -t 0.222 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 12 -a 1 -x {2.0 7.0 3 ------- null} - -t 0.222 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 12 -a 1 -x {2.0 7.0 3 ------- null} h -t 0.222 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 12 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.224 -s 1 -d 3 -p cbr -e 500 -c 1 -i 25 -a 1 -x {1.0 6.0 15 ------- null} + -t 0.224 -s 3 -d 4 -p cbr -e 500 -c 1 -i 25 -a 1 -x {1.0 6.0 15 ------- null} - -t 0.224 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 22 -a 1 -x {2.0 7.0 8 ------- null} h -t 0.224 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 22 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.226 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 8 -a 1 -x {2.0 7.0 1 ------- null} r -t 0.226 -s 4 -d 6 -p cbr -e 500 -c 1 -i 9 -a 1 -x {1.0 6.0 7 ------- null} r -t 0.226 -s 3 -d 4 -p cbr -e 500 -c 1 -i 13 -a 1 -x {1.0 6.0 9 ------- null} + -t 0.226 -s 4 -d 6 -p cbr -e 500 -c 1 -i 13 -a 1 -x {1.0 6.0 9 ------- null} - -t 0.226 -s 4 -d 6 -p cbr -e 500 -c 1 -i 13 -a 1 -x {1.0 6.0 9 ------- null} h -t 0.226 -s 4 -d 6 -p cbr -e 500 -c 1 -i 13 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.228 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 26 -a 1 -x {2.0 7.0 10 ------- null} + -t 0.228 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 26 -a 1 -x {2.0 7.0 10 ------- null} + -t 0.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 31 -a 1 -x {1.0 6.0 18 ------- null} - -t 0.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 31 -a 1 -x {1.0 6.0 18 ------- null} h -t 0.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 31 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.23 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 32 -a 1 -x {2.0 7.0 13 ------- null} - -t 0.23 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 32 -a 1 -x {2.0 7.0 13 ------- null} h -t 0.23 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 32 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.232 -s 3 -d 4 -p cbr -e 500 -c 1 -i 23 -a 1 -x {1.0 6.0 14 ------- null} h -t 0.232 -s 3 -d 4 -p cbr -e 500 -c 1 -i 23 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.234 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 14 -a 1 -x {2.0 7.0 4 ------- null} + -t 0.234 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 14 -a 1 -x {2.0 7.0 4 ------- null} - -t 0.234 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 14 -a 1 -x {2.0 7.0 4 ------- null} h -t 0.234 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 14 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.234 -s 1 -d 3 -p cbr -e 500 -c 1 -i 27 -a 1 -x {1.0 6.0 16 ------- null} + -t 0.234 -s 3 -d 4 -p cbr -e 500 -c 1 -i 27 -a 1 -x {1.0 6.0 16 ------- null} - -t 0.236 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 24 -a 1 -x {2.0 7.0 9 ------- null} h -t 0.236 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 24 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.238 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 10 -a 1 -x {2.0 7.0 2 ------- null} r -t 0.238 -s 4 -d 6 -p cbr -e 500 -c 1 -i 11 -a 1 -x {1.0 6.0 8 ------- null} r -t 0.238 -s 3 -d 4 -p cbr -e 500 -c 1 -i 15 -a 1 -x {1.0 6.0 10 ------- null} + -t 0.238 -s 4 -d 6 -p cbr -e 500 -c 1 -i 15 -a 1 -x {1.0 6.0 10 ------- null} - -t 0.238 -s 4 -d 6 -p cbr -e 500 -c 1 -i 15 -a 1 -x {1.0 6.0 10 ------- null} h -t 0.238 -s 4 -d 6 -p cbr -e 500 -c 1 -i 15 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.238 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 28 -a 1 -x {2.0 7.0 11 ------- null} + -t 0.238 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 28 -a 1 -x {2.0 7.0 11 ------- null} + -t 0.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 33 -a 1 -x {1.0 6.0 19 ------- null} - -t 0.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 33 -a 1 -x {1.0 6.0 19 ------- null} h -t 0.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 33 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 34 -a 1 -x {2.0 7.0 14 ------- null} - -t 0.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 34 -a 1 -x {2.0 7.0 14 ------- null} h -t 0.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 34 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.244 -s 1 -d 3 -p cbr -e 500 -c 1 -i 29 -a 1 -x {1.0 6.0 17 ------- null} + -t 0.244 -s 3 -d 4 -p cbr -e 500 -c 1 -i 29 -a 1 -x {1.0 6.0 17 ------- null} - -t 0.244 -s 3 -d 4 -p cbr -e 500 -c 1 -i 25 -a 1 -x {1.0 6.0 15 ------- null} h -t 0.244 -s 3 -d 4 -p cbr -e 500 -c 1 -i 25 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.246 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 16 -a 1 -x {2.0 7.0 5 ------- null} + -t 0.246 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 16 -a 1 -x {2.0 7.0 5 ------- null} - -t 0.246 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 16 -a 1 -x {2.0 7.0 5 ------- null} h -t 0.246 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 16 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.248 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 30 -a 1 -x {2.0 7.0 12 ------- null} + -t 0.248 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 30 -a 1 -x {2.0 7.0 12 ------- null} - -t 0.248 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 26 -a 1 -x {2.0 7.0 10 ------- null} h -t 0.248 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 26 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.25 -s 3 -d 4 -p cbr -e 500 -c 1 -i 17 -a 1 -x {1.0 6.0 11 ------- null} + -t 0.25 -s 4 -d 6 -p cbr -e 500 -c 1 -i 17 -a 1 -x {1.0 6.0 11 ------- null} - -t 0.25 -s 4 -d 6 -p cbr -e 500 -c 1 -i 17 -a 1 -x {1.0 6.0 11 ------- null} h -t 0.25 -s 4 -d 6 -p cbr -e 500 -c 1 -i 17 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.25 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 12 -a 1 -x {2.0 7.0 3 ------- null} r -t 0.25 -s 4 -d 6 -p cbr -e 500 -c 1 -i 13 -a 1 -x {1.0 6.0 9 ------- null} + -t 0.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 35 -a 1 -x {1.0 6.0 20 ------- null} - -t 0.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 35 -a 1 -x {1.0 6.0 20 ------- null} h -t 0.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 35 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.25 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 36 -a 1 -x {2.0 7.0 15 ------- null} - -t 0.25 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 36 -a 1 -x {2.0 7.0 15 ------- null} h -t 0.25 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 36 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.254 -s 1 -d 3 -p cbr -e 500 -c 1 -i 31 -a 1 -x {1.0 6.0 18 ------- null} + -t 0.254 -s 3 -d 4 -p cbr -e 500 -c 1 -i 31 -a 1 -x {1.0 6.0 18 ------- null} - -t 0.256 -s 3 -d 4 -p cbr -e 500 -c 1 -i 27 -a 1 -x {1.0 6.0 16 ------- null} h -t 0.256 -s 3 -d 4 -p cbr -e 500 -c 1 -i 27 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.258 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 18 -a 1 -x {2.0 7.0 6 ------- null} + -t 0.258 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 18 -a 1 -x {2.0 7.0 6 ------- null} - -t 0.258 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 18 -a 1 -x {2.0 7.0 6 ------- null} h -t 0.258 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 18 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.258 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 32 -a 1 -x {2.0 7.0 13 ------- null} + -t 0.258 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 32 -a 1 -x {2.0 7.0 13 ------- null} + -t 0.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 37 -a 1 -x {1.0 6.0 21 ------- null} - -t 0.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 37 -a 1 -x {1.0 6.0 21 ------- null} h -t 0.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 37 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 38 -a 1 -x {2.0 7.0 16 ------- null} - -t 0.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 38 -a 1 -x {2.0 7.0 16 ------- null} h -t 0.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 38 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.26 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 28 -a 1 -x {2.0 7.0 11 ------- null} h -t 0.26 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 28 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.262 -s 3 -d 4 -p cbr -e 500 -c 1 -i 19 -a 1 -x {1.0 6.0 12 ------- null} + -t 0.262 -s 4 -d 6 -p cbr -e 500 -c 1 -i 19 -a 1 -x {1.0 6.0 12 ------- null} - -t 0.262 -s 4 -d 6 -p cbr -e 500 -c 1 -i 19 -a 1 -x {1.0 6.0 12 ------- null} h -t 0.262 -s 4 -d 6 -p cbr -e 500 -c 1 -i 19 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.262 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 14 -a 1 -x {2.0 7.0 4 ------- null} r -t 0.262 -s 4 -d 6 -p cbr -e 500 -c 1 -i 15 -a 1 -x {1.0 6.0 10 ------- null} r -t 0.264 -s 1 -d 3 -p cbr -e 500 -c 1 -i 33 -a 1 -x {1.0 6.0 19 ------- null} + -t 0.264 -s 3 -d 4 -p cbr -e 500 -c 1 -i 33 -a 1 -x {1.0 6.0 19 ------- null} r -t 0.268 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 34 -a 1 -x {2.0 7.0 14 ------- null} + -t 0.268 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 34 -a 1 -x {2.0 7.0 14 ------- null} - -t 0.268 -s 3 -d 4 -p cbr -e 500 -c 1 -i 29 -a 1 -x {1.0 6.0 17 ------- null} h -t 0.268 -s 3 -d 4 -p cbr -e 500 -c 1 -i 29 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.27 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 20 -a 1 -x {2.0 7.0 7 ------- null} + -t 0.27 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 20 -a 1 -x {2.0 7.0 7 ------- null} - -t 0.27 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 20 -a 1 -x {2.0 7.0 7 ------- null} h -t 0.27 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 20 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 39 -a 1 -x {1.0 6.0 22 ------- null} - -t 0.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 39 -a 1 -x {1.0 6.0 22 ------- null} h -t 0.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 39 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.27 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 40 -a 1 -x {2.0 7.0 17 ------- null} - -t 0.27 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 40 -a 1 -x {2.0 7.0 17 ------- null} h -t 0.27 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 40 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.272 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 30 -a 1 -x {2.0 7.0 12 ------- null} h -t 0.272 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 30 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.274 -s 3 -d 4 -p cbr -e 500 -c 1 -i 21 -a 1 -x {1.0 6.0 13 ------- null} + -t 0.274 -s 4 -d 6 -p cbr -e 500 -c 1 -i 21 -a 1 -x {1.0 6.0 13 ------- null} - -t 0.274 -s 4 -d 6 -p cbr -e 500 -c 1 -i 21 -a 1 -x {1.0 6.0 13 ------- null} h -t 0.274 -s 4 -d 6 -p cbr -e 500 -c 1 -i 21 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.274 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 16 -a 1 -x {2.0 7.0 5 ------- null} r -t 0.274 -s 4 -d 6 -p cbr -e 500 -c 1 -i 17 -a 1 -x {1.0 6.0 11 ------- null} r -t 0.274 -s 1 -d 3 -p cbr -e 500 -c 1 -i 35 -a 1 -x {1.0 6.0 20 ------- null} + -t 0.274 -s 3 -d 4 -p cbr -e 500 -c 1 -i 35 -a 1 -x {1.0 6.0 20 ------- null} r -t 0.278 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 36 -a 1 -x {2.0 7.0 15 ------- null} + -t 0.278 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 36 -a 1 -x {2.0 7.0 15 ------- null} + -t 0.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 41 -a 1 -x {1.0 6.0 23 ------- null} - -t 0.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 41 -a 1 -x {1.0 6.0 23 ------- null} h -t 0.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 41 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 42 -a 1 -x {2.0 7.0 18 ------- null} - -t 0.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 42 -a 1 -x {2.0 7.0 18 ------- null} h -t 0.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 42 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.28 -s 3 -d 4 -p cbr -e 500 -c 1 -i 31 -a 1 -x {1.0 6.0 18 ------- null} h -t 0.28 -s 3 -d 4 -p cbr -e 500 -c 1 -i 31 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.282 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 22 -a 1 -x {2.0 7.0 8 ------- null} + -t 0.282 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 22 -a 1 -x {2.0 7.0 8 ------- null} - -t 0.282 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 22 -a 1 -x {2.0 7.0 8 ------- null} h -t 0.282 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 22 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.284 -s 1 -d 3 -p cbr -e 500 -c 1 -i 37 -a 1 -x {1.0 6.0 21 ------- null} + -t 0.284 -s 3 -d 4 -p cbr -e 500 -c 1 -i 37 -a 1 -x {1.0 6.0 21 ------- null} - -t 0.284 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 32 -a 1 -x {2.0 7.0 13 ------- null} h -t 0.284 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 32 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.286 -s 3 -d 4 -p cbr -e 500 -c 1 -i 23 -a 1 -x {1.0 6.0 14 ------- null} + -t 0.286 -s 4 -d 6 -p cbr -e 500 -c 1 -i 23 -a 1 -x {1.0 6.0 14 ------- null} - -t 0.286 -s 4 -d 6 -p cbr -e 500 -c 1 -i 23 -a 1 -x {1.0 6.0 14 ------- null} h -t 0.286 -s 4 -d 6 -p cbr -e 500 -c 1 -i 23 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.286 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 18 -a 1 -x {2.0 7.0 6 ------- null} r -t 0.286 -s 4 -d 6 -p cbr -e 500 -c 1 -i 19 -a 1 -x {1.0 6.0 12 ------- null} r -t 0.288 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 38 -a 1 -x {2.0 7.0 16 ------- null} + -t 0.288 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 38 -a 1 -x {2.0 7.0 16 ------- null} + -t 0.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 43 -a 1 -x {1.0 6.0 24 ------- null} - -t 0.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 43 -a 1 -x {1.0 6.0 24 ------- null} h -t 0.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 43 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.29 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 44 -a 1 -x {2.0 7.0 19 ------- null} - -t 0.29 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 44 -a 1 -x {2.0 7.0 19 ------- null} h -t 0.29 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 44 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.292 -s 3 -d 4 -p cbr -e 500 -c 1 -i 33 -a 1 -x {1.0 6.0 19 ------- null} h -t 0.292 -s 3 -d 4 -p cbr -e 500 -c 1 -i 33 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.294 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 24 -a 1 -x {2.0 7.0 9 ------- null} + -t 0.294 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 24 -a 1 -x {2.0 7.0 9 ------- null} - -t 0.294 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 24 -a 1 -x {2.0 7.0 9 ------- null} h -t 0.294 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 24 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.294 -s 1 -d 3 -p cbr -e 500 -c 1 -i 39 -a 1 -x {1.0 6.0 22 ------- null} + -t 0.294 -s 3 -d 4 -p cbr -e 500 -c 1 -i 39 -a 1 -x {1.0 6.0 22 ------- null} - -t 0.296 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 34 -a 1 -x {2.0 7.0 14 ------- null} h -t 0.296 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 34 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.298 -s 3 -d 4 -p cbr -e 500 -c 1 -i 25 -a 1 -x {1.0 6.0 15 ------- null} + -t 0.298 -s 4 -d 6 -p cbr -e 500 -c 1 -i 25 -a 1 -x {1.0 6.0 15 ------- null} - -t 0.298 -s 4 -d 6 -p cbr -e 500 -c 1 -i 25 -a 1 -x {1.0 6.0 15 ------- null} h -t 0.298 -s 4 -d 6 -p cbr -e 500 -c 1 -i 25 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.298 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 20 -a 1 -x {2.0 7.0 7 ------- null} r -t 0.298 -s 4 -d 6 -p cbr -e 500 -c 1 -i 21 -a 1 -x {1.0 6.0 13 ------- null} r -t 0.298 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 40 -a 1 -x {2.0 7.0 17 ------- null} + -t 0.298 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 40 -a 1 -x {2.0 7.0 17 ------- null} + -t 0.3 -s 1 -d 3 -p cbr -e 500 -c 1 -i 45 -a 1 -x {1.0 6.0 25 ------- null} - -t 0.3 -s 1 -d 3 -p cbr -e 500 -c 1 -i 45 -a 1 -x {1.0 6.0 25 ------- null} h -t 0.3 -s 1 -d 3 -p cbr -e 500 -c 1 -i 45 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 46 -a 1 -x {2.0 7.0 20 ------- null} - -t 0.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 46 -a 1 -x {2.0 7.0 20 ------- null} h -t 0.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 46 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.304 -s 1 -d 3 -p cbr -e 500 -c 1 -i 41 -a 1 -x {1.0 6.0 23 ------- null} + -t 0.304 -s 3 -d 4 -p cbr -e 500 -c 1 -i 41 -a 1 -x {1.0 6.0 23 ------- null} - -t 0.304 -s 3 -d 4 -p cbr -e 500 -c 1 -i 35 -a 1 -x {1.0 6.0 20 ------- null} h -t 0.304 -s 3 -d 4 -p cbr -e 500 -c 1 -i 35 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.306 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 26 -a 1 -x {2.0 7.0 10 ------- null} + -t 0.306 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 26 -a 1 -x {2.0 7.0 10 ------- null} - -t 0.306 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 26 -a 1 -x {2.0 7.0 10 ------- null} h -t 0.306 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 26 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.308 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 42 -a 1 -x {2.0 7.0 18 ------- null} + -t 0.308 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 42 -a 1 -x {2.0 7.0 18 ------- null} - -t 0.308 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 36 -a 1 -x {2.0 7.0 15 ------- null} h -t 0.308 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 36 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.31 -s 3 -d 4 -p cbr -e 500 -c 1 -i 27 -a 1 -x {1.0 6.0 16 ------- null} + -t 0.31 -s 4 -d 6 -p cbr -e 500 -c 1 -i 27 -a 1 -x {1.0 6.0 16 ------- null} - -t 0.31 -s 4 -d 6 -p cbr -e 500 -c 1 -i 27 -a 1 -x {1.0 6.0 16 ------- null} h -t 0.31 -s 4 -d 6 -p cbr -e 500 -c 1 -i 27 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.31 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 22 -a 1 -x {2.0 7.0 8 ------- null} r -t 0.31 -s 4 -d 6 -p cbr -e 500 -c 1 -i 23 -a 1 -x {1.0 6.0 14 ------- null} + -t 0.31 -s 1 -d 3 -p cbr -e 500 -c 1 -i 47 -a 1 -x {1.0 6.0 26 ------- null} - -t 0.31 -s 1 -d 3 -p cbr -e 500 -c 1 -i 47 -a 1 -x {1.0 6.0 26 ------- null} h -t 0.31 -s 1 -d 3 -p cbr -e 500 -c 1 -i 47 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.31 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 48 -a 1 -x {2.0 7.0 21 ------- null} - -t 0.31 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 48 -a 1 -x {2.0 7.0 21 ------- null} h -t 0.31 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 48 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.314 -s 1 -d 3 -p cbr -e 500 -c 1 -i 43 -a 1 -x {1.0 6.0 24 ------- null} + -t 0.314 -s 3 -d 4 -p cbr -e 500 -c 1 -i 43 -a 1 -x {1.0 6.0 24 ------- null} - -t 0.316 -s 3 -d 4 -p cbr -e 500 -c 1 -i 37 -a 1 -x {1.0 6.0 21 ------- null} h -t 0.316 -s 3 -d 4 -p cbr -e 500 -c 1 -i 37 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.318 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 28 -a 1 -x {2.0 7.0 11 ------- null} + -t 0.318 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 28 -a 1 -x {2.0 7.0 11 ------- null} - -t 0.318 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 28 -a 1 -x {2.0 7.0 11 ------- null} h -t 0.318 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 28 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.318 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 44 -a 1 -x {2.0 7.0 19 ------- null} + -t 0.318 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 44 -a 1 -x {2.0 7.0 19 ------- null} + -t 0.32 -s 1 -d 3 -p cbr -e 500 -c 1 -i 49 -a 1 -x {1.0 6.0 27 ------- null} - -t 0.32 -s 1 -d 3 -p cbr -e 500 -c 1 -i 49 -a 1 -x {1.0 6.0 27 ------- null} h -t 0.32 -s 1 -d 3 -p cbr -e 500 -c 1 -i 49 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 50 -a 1 -x {2.0 7.0 22 ------- null} - -t 0.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 50 -a 1 -x {2.0 7.0 22 ------- null} h -t 0.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 50 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.32 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 38 -a 1 -x {2.0 7.0 16 ------- null} h -t 0.32 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 38 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.322 -s 3 -d 4 -p cbr -e 500 -c 1 -i 29 -a 1 -x {1.0 6.0 17 ------- null} + -t 0.322 -s 4 -d 6 -p cbr -e 500 -c 1 -i 29 -a 1 -x {1.0 6.0 17 ------- null} - -t 0.322 -s 4 -d 6 -p cbr -e 500 -c 1 -i 29 -a 1 -x {1.0 6.0 17 ------- null} h -t 0.322 -s 4 -d 6 -p cbr -e 500 -c 1 -i 29 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.322 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 24 -a 1 -x {2.0 7.0 9 ------- null} r -t 0.322 -s 4 -d 6 -p cbr -e 500 -c 1 -i 25 -a 1 -x {1.0 6.0 15 ------- null} r -t 0.324 -s 1 -d 3 -p cbr -e 500 -c 1 -i 45 -a 1 -x {1.0 6.0 25 ------- null} + -t 0.324 -s 3 -d 4 -p cbr -e 500 -c 1 -i 45 -a 1 -x {1.0 6.0 25 ------- null} r -t 0.328 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 46 -a 1 -x {2.0 7.0 20 ------- null} + -t 0.328 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 46 -a 1 -x {2.0 7.0 20 ------- null} - -t 0.328 -s 3 -d 4 -p cbr -e 500 -c 1 -i 39 -a 1 -x {1.0 6.0 22 ------- null} h -t 0.328 -s 3 -d 4 -p cbr -e 500 -c 1 -i 39 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.33 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 30 -a 1 -x {2.0 7.0 12 ------- null} + -t 0.33 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 30 -a 1 -x {2.0 7.0 12 ------- null} - -t 0.33 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 30 -a 1 -x {2.0 7.0 12 ------- null} h -t 0.33 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 30 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.33 -s 1 -d 3 -p cbr -e 500 -c 1 -i 51 -a 1 -x {1.0 6.0 28 ------- null} - -t 0.33 -s 1 -d 3 -p cbr -e 500 -c 1 -i 51 -a 1 -x {1.0 6.0 28 ------- null} h -t 0.33 -s 1 -d 3 -p cbr -e 500 -c 1 -i 51 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.33 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 52 -a 1 -x {2.0 7.0 23 ------- null} - -t 0.33 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 52 -a 1 -x {2.0 7.0 23 ------- null} h -t 0.33 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 52 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.332 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 40 -a 1 -x {2.0 7.0 17 ------- null} h -t 0.332 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 40 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.334 -s 3 -d 4 -p cbr -e 500 -c 1 -i 31 -a 1 -x {1.0 6.0 18 ------- null} + -t 0.334 -s 4 -d 6 -p cbr -e 500 -c 1 -i 31 -a 1 -x {1.0 6.0 18 ------- null} - -t 0.334 -s 4 -d 6 -p cbr -e 500 -c 1 -i 31 -a 1 -x {1.0 6.0 18 ------- null} h -t 0.334 -s 4 -d 6 -p cbr -e 500 -c 1 -i 31 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.334 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 26 -a 1 -x {2.0 7.0 10 ------- null} r -t 0.334 -s 4 -d 6 -p cbr -e 500 -c 1 -i 27 -a 1 -x {1.0 6.0 16 ------- null} r -t 0.334 -s 1 -d 3 -p cbr -e 500 -c 1 -i 47 -a 1 -x {1.0 6.0 26 ------- null} + -t 0.334 -s 3 -d 4 -p cbr -e 500 -c 1 -i 47 -a 1 -x {1.0 6.0 26 ------- null} r -t 0.338 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 48 -a 1 -x {2.0 7.0 21 ------- null} + -t 0.338 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 48 -a 1 -x {2.0 7.0 21 ------- null} + -t 0.34 -s 1 -d 3 -p cbr -e 500 -c 1 -i 53 -a 1 -x {1.0 6.0 29 ------- null} - -t 0.34 -s 1 -d 3 -p cbr -e 500 -c 1 -i 53 -a 1 -x {1.0 6.0 29 ------- null} h -t 0.34 -s 1 -d 3 -p cbr -e 500 -c 1 -i 53 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 54 -a 1 -x {2.0 7.0 24 ------- null} - -t 0.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 54 -a 1 -x {2.0 7.0 24 ------- null} h -t 0.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 54 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.34 -s 3 -d 4 -p cbr -e 500 -c 1 -i 41 -a 1 -x {1.0 6.0 23 ------- null} h -t 0.34 -s 3 -d 4 -p cbr -e 500 -c 1 -i 41 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.342 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 32 -a 1 -x {2.0 7.0 13 ------- null} + -t 0.342 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 32 -a 1 -x {2.0 7.0 13 ------- null} - -t 0.342 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 32 -a 1 -x {2.0 7.0 13 ------- null} h -t 0.342 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 32 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.344 -s 1 -d 3 -p cbr -e 500 -c 1 -i 49 -a 1 -x {1.0 6.0 27 ------- null} + -t 0.344 -s 3 -d 4 -p cbr -e 500 -c 1 -i 49 -a 1 -x {1.0 6.0 27 ------- null} - -t 0.344 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 42 -a 1 -x {2.0 7.0 18 ------- null} h -t 0.344 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 42 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.346 -s 3 -d 4 -p cbr -e 500 -c 1 -i 33 -a 1 -x {1.0 6.0 19 ------- null} + -t 0.346 -s 4 -d 6 -p cbr -e 500 -c 1 -i 33 -a 1 -x {1.0 6.0 19 ------- null} - -t 0.346 -s 4 -d 6 -p cbr -e 500 -c 1 -i 33 -a 1 -x {1.0 6.0 19 ------- null} h -t 0.346 -s 4 -d 6 -p cbr -e 500 -c 1 -i 33 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.346 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 28 -a 1 -x {2.0 7.0 11 ------- null} r -t 0.346 -s 4 -d 6 -p cbr -e 500 -c 1 -i 29 -a 1 -x {1.0 6.0 17 ------- null} r -t 0.348 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 50 -a 1 -x {2.0 7.0 22 ------- null} + -t 0.348 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 50 -a 1 -x {2.0 7.0 22 ------- null} + -t 0.35 -s 1 -d 3 -p cbr -e 500 -c 1 -i 55 -a 1 -x {1.0 6.0 30 ------- null} - -t 0.35 -s 1 -d 3 -p cbr -e 500 -c 1 -i 55 -a 1 -x {1.0 6.0 30 ------- null} h -t 0.35 -s 1 -d 3 -p cbr -e 500 -c 1 -i 55 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.35 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 56 -a 1 -x {2.0 7.0 25 ------- null} - -t 0.35 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 56 -a 1 -x {2.0 7.0 25 ------- null} h -t 0.35 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 56 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.352 -s 3 -d 4 -p cbr -e 500 -c 1 -i 43 -a 1 -x {1.0 6.0 24 ------- null} h -t 0.352 -s 3 -d 4 -p cbr -e 500 -c 1 -i 43 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.354 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 34 -a 1 -x {2.0 7.0 14 ------- null} + -t 0.354 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 34 -a 1 -x {2.0 7.0 14 ------- null} - -t 0.354 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 34 -a 1 -x {2.0 7.0 14 ------- null} h -t 0.354 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 34 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.354 -s 1 -d 3 -p cbr -e 500 -c 1 -i 51 -a 1 -x {1.0 6.0 28 ------- null} + -t 0.354 -s 3 -d 4 -p cbr -e 500 -c 1 -i 51 -a 1 -x {1.0 6.0 28 ------- null} - -t 0.356 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 44 -a 1 -x {2.0 7.0 19 ------- null} h -t 0.356 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 44 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.358 -s 3 -d 4 -p cbr -e 500 -c 1 -i 35 -a 1 -x {1.0 6.0 20 ------- null} + -t 0.358 -s 4 -d 6 -p cbr -e 500 -c 1 -i 35 -a 1 -x {1.0 6.0 20 ------- null} - -t 0.358 -s 4 -d 6 -p cbr -e 500 -c 1 -i 35 -a 1 -x {1.0 6.0 20 ------- null} h -t 0.358 -s 4 -d 6 -p cbr -e 500 -c 1 -i 35 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.358 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 30 -a 1 -x {2.0 7.0 12 ------- null} r -t 0.358 -s 4 -d 6 -p cbr -e 500 -c 1 -i 31 -a 1 -x {1.0 6.0 18 ------- null} r -t 0.358 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 52 -a 1 -x {2.0 7.0 23 ------- null} + -t 0.358 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 52 -a 1 -x {2.0 7.0 23 ------- null} + -t 0.36 -s 1 -d 3 -p cbr -e 500 -c 1 -i 57 -a 1 -x {1.0 6.0 31 ------- null} - -t 0.36 -s 1 -d 3 -p cbr -e 500 -c 1 -i 57 -a 1 -x {1.0 6.0 31 ------- null} h -t 0.36 -s 1 -d 3 -p cbr -e 500 -c 1 -i 57 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 58 -a 1 -x {2.0 7.0 26 ------- null} - -t 0.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 58 -a 1 -x {2.0 7.0 26 ------- null} h -t 0.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 58 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.364 -s 1 -d 3 -p cbr -e 500 -c 1 -i 53 -a 1 -x {1.0 6.0 29 ------- null} + -t 0.364 -s 3 -d 4 -p cbr -e 500 -c 1 -i 53 -a 1 -x {1.0 6.0 29 ------- null} - -t 0.364 -s 3 -d 4 -p cbr -e 500 -c 1 -i 45 -a 1 -x {1.0 6.0 25 ------- null} h -t 0.364 -s 3 -d 4 -p cbr -e 500 -c 1 -i 45 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.366 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 36 -a 1 -x {2.0 7.0 15 ------- null} + -t 0.366 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 36 -a 1 -x {2.0 7.0 15 ------- null} - -t 0.366 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 36 -a 1 -x {2.0 7.0 15 ------- null} h -t 0.366 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 36 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.368 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 54 -a 1 -x {2.0 7.0 24 ------- null} + -t 0.368 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 54 -a 1 -x {2.0 7.0 24 ------- null} - -t 0.368 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 46 -a 1 -x {2.0 7.0 20 ------- null} h -t 0.368 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 46 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.37 -s 3 -d 4 -p cbr -e 500 -c 1 -i 37 -a 1 -x {1.0 6.0 21 ------- null} + -t 0.37 -s 4 -d 6 -p cbr -e 500 -c 1 -i 37 -a 1 -x {1.0 6.0 21 ------- null} - -t 0.37 -s 4 -d 6 -p cbr -e 500 -c 1 -i 37 -a 1 -x {1.0 6.0 21 ------- null} h -t 0.37 -s 4 -d 6 -p cbr -e 500 -c 1 -i 37 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.37 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 32 -a 1 -x {2.0 7.0 13 ------- null} r -t 0.37 -s 4 -d 6 -p cbr -e 500 -c 1 -i 33 -a 1 -x {1.0 6.0 19 ------- null} + -t 0.37 -s 1 -d 3 -p cbr -e 500 -c 1 -i 59 -a 1 -x {1.0 6.0 32 ------- null} - -t 0.37 -s 1 -d 3 -p cbr -e 500 -c 1 -i 59 -a 1 -x {1.0 6.0 32 ------- null} h -t 0.37 -s 1 -d 3 -p cbr -e 500 -c 1 -i 59 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.37 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 60 -a 1 -x {2.0 7.0 27 ------- null} - -t 0.37 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 60 -a 1 -x {2.0 7.0 27 ------- null} h -t 0.37 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 60 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.374 -s 1 -d 3 -p cbr -e 500 -c 1 -i 55 -a 1 -x {1.0 6.0 30 ------- null} + -t 0.374 -s 3 -d 4 -p cbr -e 500 -c 1 -i 55 -a 1 -x {1.0 6.0 30 ------- null} - -t 0.376 -s 3 -d 4 -p cbr -e 500 -c 1 -i 47 -a 1 -x {1.0 6.0 26 ------- null} h -t 0.376 -s 3 -d 4 -p cbr -e 500 -c 1 -i 47 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.378 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 38 -a 1 -x {2.0 7.0 16 ------- null} + -t 0.378 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 38 -a 1 -x {2.0 7.0 16 ------- null} - -t 0.378 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 38 -a 1 -x {2.0 7.0 16 ------- null} h -t 0.378 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 38 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.378 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 56 -a 1 -x {2.0 7.0 25 ------- null} + -t 0.378 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 56 -a 1 -x {2.0 7.0 25 ------- null} + -t 0.38 -s 1 -d 3 -p cbr -e 500 -c 1 -i 61 -a 1 -x {1.0 6.0 33 ------- null} - -t 0.38 -s 1 -d 3 -p cbr -e 500 -c 1 -i 61 -a 1 -x {1.0 6.0 33 ------- null} h -t 0.38 -s 1 -d 3 -p cbr -e 500 -c 1 -i 61 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 62 -a 1 -x {2.0 7.0 28 ------- null} - -t 0.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 62 -a 1 -x {2.0 7.0 28 ------- null} h -t 0.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 62 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.38 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 48 -a 1 -x {2.0 7.0 21 ------- null} h -t 0.38 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 48 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.382 -s 3 -d 4 -p cbr -e 500 -c 1 -i 39 -a 1 -x {1.0 6.0 22 ------- null} + -t 0.382 -s 4 -d 6 -p cbr -e 500 -c 1 -i 39 -a 1 -x {1.0 6.0 22 ------- null} - -t 0.382 -s 4 -d 6 -p cbr -e 500 -c 1 -i 39 -a 1 -x {1.0 6.0 22 ------- null} h -t 0.382 -s 4 -d 6 -p cbr -e 500 -c 1 -i 39 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.382 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 34 -a 1 -x {2.0 7.0 14 ------- null} r -t 0.382 -s 4 -d 6 -p cbr -e 500 -c 1 -i 35 -a 1 -x {1.0 6.0 20 ------- null} r -t 0.384 -s 1 -d 3 -p cbr -e 500 -c 1 -i 57 -a 1 -x {1.0 6.0 31 ------- null} + -t 0.384 -s 3 -d 4 -p cbr -e 500 -c 1 -i 57 -a 1 -x {1.0 6.0 31 ------- null} r -t 0.388 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 58 -a 1 -x {2.0 7.0 26 ------- null} + -t 0.388 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 58 -a 1 -x {2.0 7.0 26 ------- null} d -t 0.388 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 58 -a 1 -x {2.0 7.0 26 ------- null} - -t 0.388 -s 3 -d 4 -p cbr -e 500 -c 1 -i 49 -a 1 -x {1.0 6.0 27 ------- null} h -t 0.388 -s 3 -d 4 -p cbr -e 500 -c 1 -i 49 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.39 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 40 -a 1 -x {2.0 7.0 17 ------- null} + -t 0.39 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 40 -a 1 -x {2.0 7.0 17 ------- null} - -t 0.39 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 40 -a 1 -x {2.0 7.0 17 ------- null} h -t 0.39 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 40 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.39 -s 1 -d 3 -p cbr -e 500 -c 1 -i 63 -a 1 -x {1.0 6.0 34 ------- null} - -t 0.39 -s 1 -d 3 -p cbr -e 500 -c 1 -i 63 -a 1 -x {1.0 6.0 34 ------- null} h -t 0.39 -s 1 -d 3 -p cbr -e 500 -c 1 -i 63 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.39 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 64 -a 1 -x {2.0 7.0 29 ------- null} - -t 0.39 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 64 -a 1 -x {2.0 7.0 29 ------- null} h -t 0.39 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 64 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.392 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 50 -a 1 -x {2.0 7.0 22 ------- null} h -t 0.392 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 50 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.394 -s 3 -d 4 -p cbr -e 500 -c 1 -i 41 -a 1 -x {1.0 6.0 23 ------- null} + -t 0.394 -s 4 -d 6 -p cbr -e 500 -c 1 -i 41 -a 1 -x {1.0 6.0 23 ------- null} - -t 0.394 -s 4 -d 6 -p cbr -e 500 -c 1 -i 41 -a 1 -x {1.0 6.0 23 ------- null} h -t 0.394 -s 4 -d 6 -p cbr -e 500 -c 1 -i 41 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.394 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 36 -a 1 -x {2.0 7.0 15 ------- null} r -t 0.394 -s 4 -d 6 -p cbr -e 500 -c 1 -i 37 -a 1 -x {1.0 6.0 21 ------- null} r -t 0.394 -s 1 -d 3 -p cbr -e 500 -c 1 -i 59 -a 1 -x {1.0 6.0 32 ------- null} + -t 0.394 -s 3 -d 4 -p cbr -e 500 -c 1 -i 59 -a 1 -x {1.0 6.0 32 ------- null} r -t 0.398 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 60 -a 1 -x {2.0 7.0 27 ------- null} + -t 0.398 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 60 -a 1 -x {2.0 7.0 27 ------- null} + -t 0.4 -s 1 -d 3 -p cbr -e 500 -c 1 -i 65 -a 1 -x {1.0 6.0 35 ------- null} - -t 0.4 -s 1 -d 3 -p cbr -e 500 -c 1 -i 65 -a 1 -x {1.0 6.0 35 ------- null} h -t 0.4 -s 1 -d 3 -p cbr -e 500 -c 1 -i 65 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 66 -a 1 -x {2.0 7.0 30 ------- null} - -t 0.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 66 -a 1 -x {2.0 7.0 30 ------- null} h -t 0.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 66 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.4 -s 3 -d 4 -p cbr -e 500 -c 1 -i 51 -a 1 -x {1.0 6.0 28 ------- null} h -t 0.4 -s 3 -d 4 -p cbr -e 500 -c 1 -i 51 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.402 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 42 -a 1 -x {2.0 7.0 18 ------- null} + -t 0.402 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 42 -a 1 -x {2.0 7.0 18 ------- null} - -t 0.402 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 42 -a 1 -x {2.0 7.0 18 ------- null} h -t 0.402 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 42 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.404 -s 1 -d 3 -p cbr -e 500 -c 1 -i 61 -a 1 -x {1.0 6.0 33 ------- null} + -t 0.404 -s 3 -d 4 -p cbr -e 500 -c 1 -i 61 -a 1 -x {1.0 6.0 33 ------- null} - -t 0.404 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 52 -a 1 -x {2.0 7.0 23 ------- null} h -t 0.404 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 52 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.406 -s 3 -d 4 -p cbr -e 500 -c 1 -i 43 -a 1 -x {1.0 6.0 24 ------- null} + -t 0.406 -s 4 -d 6 -p cbr -e 500 -c 1 -i 43 -a 1 -x {1.0 6.0 24 ------- null} - -t 0.406 -s 4 -d 6 -p cbr -e 500 -c 1 -i 43 -a 1 -x {1.0 6.0 24 ------- null} h -t 0.406 -s 4 -d 6 -p cbr -e 500 -c 1 -i 43 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.406 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 38 -a 1 -x {2.0 7.0 16 ------- null} r -t 0.406 -s 4 -d 6 -p cbr -e 500 -c 1 -i 39 -a 1 -x {1.0 6.0 22 ------- null} r -t 0.408 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 62 -a 1 -x {2.0 7.0 28 ------- null} + -t 0.408 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 62 -a 1 -x {2.0 7.0 28 ------- null} + -t 0.41 -s 1 -d 3 -p cbr -e 500 -c 1 -i 67 -a 1 -x {1.0 6.0 36 ------- null} - -t 0.41 -s 1 -d 3 -p cbr -e 500 -c 1 -i 67 -a 1 -x {1.0 6.0 36 ------- null} h -t 0.41 -s 1 -d 3 -p cbr -e 500 -c 1 -i 67 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.41 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 68 -a 1 -x {2.0 7.0 31 ------- null} - -t 0.41 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 68 -a 1 -x {2.0 7.0 31 ------- null} h -t 0.41 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 68 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.412 -s 3 -d 4 -p cbr -e 500 -c 1 -i 53 -a 1 -x {1.0 6.0 29 ------- null} h -t 0.412 -s 3 -d 4 -p cbr -e 500 -c 1 -i 53 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.414 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 44 -a 1 -x {2.0 7.0 19 ------- null} + -t 0.414 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 44 -a 1 -x {2.0 7.0 19 ------- null} - -t 0.414 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 44 -a 1 -x {2.0 7.0 19 ------- null} h -t 0.414 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 44 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.414 -s 1 -d 3 -p cbr -e 500 -c 1 -i 63 -a 1 -x {1.0 6.0 34 ------- null} + -t 0.414 -s 3 -d 4 -p cbr -e 500 -c 1 -i 63 -a 1 -x {1.0 6.0 34 ------- null} - -t 0.416 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 54 -a 1 -x {2.0 7.0 24 ------- null} h -t 0.416 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 54 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.418 -s 3 -d 4 -p cbr -e 500 -c 1 -i 45 -a 1 -x {1.0 6.0 25 ------- null} + -t 0.418 -s 4 -d 6 -p cbr -e 500 -c 1 -i 45 -a 1 -x {1.0 6.0 25 ------- null} - -t 0.418 -s 4 -d 6 -p cbr -e 500 -c 1 -i 45 -a 1 -x {1.0 6.0 25 ------- null} h -t 0.418 -s 4 -d 6 -p cbr -e 500 -c 1 -i 45 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.418 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 40 -a 1 -x {2.0 7.0 17 ------- null} r -t 0.418 -s 4 -d 6 -p cbr -e 500 -c 1 -i 41 -a 1 -x {1.0 6.0 23 ------- null} r -t 0.418 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 64 -a 1 -x {2.0 7.0 29 ------- null} + -t 0.418 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 64 -a 1 -x {2.0 7.0 29 ------- null} + -t 0.42 -s 1 -d 3 -p cbr -e 500 -c 1 -i 69 -a 1 -x {1.0 6.0 37 ------- null} - -t 0.42 -s 1 -d 3 -p cbr -e 500 -c 1 -i 69 -a 1 -x {1.0 6.0 37 ------- null} h -t 0.42 -s 1 -d 3 -p cbr -e 500 -c 1 -i 69 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 70 -a 1 -x {2.0 7.0 32 ------- null} - -t 0.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 70 -a 1 -x {2.0 7.0 32 ------- null} h -t 0.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 70 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.424 -s 1 -d 3 -p cbr -e 500 -c 1 -i 65 -a 1 -x {1.0 6.0 35 ------- null} + -t 0.424 -s 3 -d 4 -p cbr -e 500 -c 1 -i 65 -a 1 -x {1.0 6.0 35 ------- null} d -t 0.424 -s 3 -d 4 -p cbr -e 500 -c 1 -i 65 -a 1 -x {1.0 6.0 35 ------- null} - -t 0.424 -s 3 -d 4 -p cbr -e 500 -c 1 -i 55 -a 1 -x {1.0 6.0 30 ------- null} h -t 0.424 -s 3 -d 4 -p cbr -e 500 -c 1 -i 55 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.426 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 46 -a 1 -x {2.0 7.0 20 ------- null} + -t 0.426 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 46 -a 1 -x {2.0 7.0 20 ------- null} - -t 0.426 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 46 -a 1 -x {2.0 7.0 20 ------- null} h -t 0.426 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 46 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.428 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 66 -a 1 -x {2.0 7.0 30 ------- null} + -t 0.428 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 66 -a 1 -x {2.0 7.0 30 ------- null} - -t 0.428 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 56 -a 1 -x {2.0 7.0 25 ------- null} h -t 0.428 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 56 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.43 -s 3 -d 4 -p cbr -e 500 -c 1 -i 47 -a 1 -x {1.0 6.0 26 ------- null} + -t 0.43 -s 4 -d 6 -p cbr -e 500 -c 1 -i 47 -a 1 -x {1.0 6.0 26 ------- null} - -t 0.43 -s 4 -d 6 -p cbr -e 500 -c 1 -i 47 -a 1 -x {1.0 6.0 26 ------- null} h -t 0.43 -s 4 -d 6 -p cbr -e 500 -c 1 -i 47 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.43 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 42 -a 1 -x {2.0 7.0 18 ------- null} r -t 0.43 -s 4 -d 6 -p cbr -e 500 -c 1 -i 43 -a 1 -x {1.0 6.0 24 ------- null} + -t 0.43 -s 1 -d 3 -p cbr -e 500 -c 1 -i 71 -a 1 -x {1.0 6.0 38 ------- null} - -t 0.43 -s 1 -d 3 -p cbr -e 500 -c 1 -i 71 -a 1 -x {1.0 6.0 38 ------- null} h -t 0.43 -s 1 -d 3 -p cbr -e 500 -c 1 -i 71 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.43 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 72 -a 1 -x {2.0 7.0 33 ------- null} - -t 0.43 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 72 -a 1 -x {2.0 7.0 33 ------- null} h -t 0.43 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 72 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.434 -s 1 -d 3 -p cbr -e 500 -c 1 -i 67 -a 1 -x {1.0 6.0 36 ------- null} + -t 0.434 -s 3 -d 4 -p cbr -e 500 -c 1 -i 67 -a 1 -x {1.0 6.0 36 ------- null} - -t 0.436 -s 3 -d 4 -p cbr -e 500 -c 1 -i 57 -a 1 -x {1.0 6.0 31 ------- null} h -t 0.436 -s 3 -d 4 -p cbr -e 500 -c 1 -i 57 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.438 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 48 -a 1 -x {2.0 7.0 21 ------- null} + -t 0.438 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 48 -a 1 -x {2.0 7.0 21 ------- null} - -t 0.438 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 48 -a 1 -x {2.0 7.0 21 ------- null} h -t 0.438 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 48 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.438 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 68 -a 1 -x {2.0 7.0 31 ------- null} + -t 0.438 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 68 -a 1 -x {2.0 7.0 31 ------- null} + -t 0.44 -s 1 -d 3 -p cbr -e 500 -c 1 -i 73 -a 1 -x {1.0 6.0 39 ------- null} - -t 0.44 -s 1 -d 3 -p cbr -e 500 -c 1 -i 73 -a 1 -x {1.0 6.0 39 ------- null} h -t 0.44 -s 1 -d 3 -p cbr -e 500 -c 1 -i 73 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 74 -a 1 -x {2.0 7.0 34 ------- null} - -t 0.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 74 -a 1 -x {2.0 7.0 34 ------- null} h -t 0.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 74 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.44 -s 3 -d 4 -p cbr -e 500 -c 1 -i 59 -a 1 -x {1.0 6.0 32 ------- null} h -t 0.44 -s 3 -d 4 -p cbr -e 500 -c 1 -i 59 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.442 -s 3 -d 4 -p cbr -e 500 -c 1 -i 49 -a 1 -x {1.0 6.0 27 ------- null} + -t 0.442 -s 4 -d 6 -p cbr -e 500 -c 1 -i 49 -a 1 -x {1.0 6.0 27 ------- null} - -t 0.442 -s 4 -d 6 -p cbr -e 500 -c 1 -i 49 -a 1 -x {1.0 6.0 27 ------- null} h -t 0.442 -s 4 -d 6 -p cbr -e 500 -c 1 -i 49 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.442 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 44 -a 1 -x {2.0 7.0 19 ------- null} r -t 0.442 -s 4 -d 6 -p cbr -e 500 -c 1 -i 45 -a 1 -x {1.0 6.0 25 ------- null} r -t 0.444 -s 1 -d 3 -p cbr -e 500 -c 1 -i 69 -a 1 -x {1.0 6.0 37 ------- null} + -t 0.444 -s 3 -d 4 -p cbr -e 500 -c 1 -i 69 -a 1 -x {1.0 6.0 37 ------- null} - -t 0.444 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 60 -a 1 -x {2.0 7.0 27 ------- null} h -t 0.444 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 60 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.448 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 70 -a 1 -x {2.0 7.0 32 ------- null} + -t 0.448 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 70 -a 1 -x {2.0 7.0 32 ------- null} r -t 0.45 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 50 -a 1 -x {2.0 7.0 22 ------- null} + -t 0.45 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 50 -a 1 -x {2.0 7.0 22 ------- null} - -t 0.45 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 50 -a 1 -x {2.0 7.0 22 ------- null} h -t 0.45 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 50 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.45 -s 1 -d 3 -p cbr -e 500 -c 1 -i 75 -a 1 -x {1.0 6.0 40 ------- null} - -t 0.45 -s 1 -d 3 -p cbr -e 500 -c 1 -i 75 -a 1 -x {1.0 6.0 40 ------- null} h -t 0.45 -s 1 -d 3 -p cbr -e 500 -c 1 -i 75 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.45 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 76 -a 1 -x {2.0 7.0 35 ------- null} - -t 0.45 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 76 -a 1 -x {2.0 7.0 35 ------- null} h -t 0.45 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 76 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.452 -s 3 -d 4 -p cbr -e 500 -c 1 -i 61 -a 1 -x {1.0 6.0 33 ------- null} h -t 0.452 -s 3 -d 4 -p cbr -e 500 -c 1 -i 61 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.454 -s 3 -d 4 -p cbr -e 500 -c 1 -i 51 -a 1 -x {1.0 6.0 28 ------- null} + -t 0.454 -s 4 -d 6 -p cbr -e 500 -c 1 -i 51 -a 1 -x {1.0 6.0 28 ------- null} - -t 0.454 -s 4 -d 6 -p cbr -e 500 -c 1 -i 51 -a 1 -x {1.0 6.0 28 ------- null} h -t 0.454 -s 4 -d 6 -p cbr -e 500 -c 1 -i 51 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.454 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 46 -a 1 -x {2.0 7.0 20 ------- null} r -t 0.454 -s 4 -d 6 -p cbr -e 500 -c 1 -i 47 -a 1 -x {1.0 6.0 26 ------- null} r -t 0.454 -s 1 -d 3 -p cbr -e 500 -c 1 -i 71 -a 1 -x {1.0 6.0 38 ------- null} + -t 0.454 -s 3 -d 4 -p cbr -e 500 -c 1 -i 71 -a 1 -x {1.0 6.0 38 ------- null} - -t 0.456 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 62 -a 1 -x {2.0 7.0 28 ------- null} h -t 0.456 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 62 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.458 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 72 -a 1 -x {2.0 7.0 33 ------- null} + -t 0.458 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 72 -a 1 -x {2.0 7.0 33 ------- null} + -t 0.46 -s 1 -d 3 -p cbr -e 500 -c 1 -i 77 -a 1 -x {1.0 6.0 41 ------- null} - -t 0.46 -s 1 -d 3 -p cbr -e 500 -c 1 -i 77 -a 1 -x {1.0 6.0 41 ------- null} h -t 0.46 -s 1 -d 3 -p cbr -e 500 -c 1 -i 77 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 78 -a 1 -x {2.0 7.0 36 ------- null} - -t 0.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 78 -a 1 -x {2.0 7.0 36 ------- null} h -t 0.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 78 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.462 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 52 -a 1 -x {2.0 7.0 23 ------- null} + -t 0.462 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 52 -a 1 -x {2.0 7.0 23 ------- null} - -t 0.462 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 52 -a 1 -x {2.0 7.0 23 ------- null} h -t 0.462 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 52 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.464 -s 1 -d 3 -p cbr -e 500 -c 1 -i 73 -a 1 -x {1.0 6.0 39 ------- null} + -t 0.464 -s 3 -d 4 -p cbr -e 500 -c 1 -i 73 -a 1 -x {1.0 6.0 39 ------- null} d -t 0.464 -s 3 -d 4 -p cbr -e 500 -c 1 -i 73 -a 1 -x {1.0 6.0 39 ------- null} - -t 0.464 -s 3 -d 4 -p cbr -e 500 -c 1 -i 63 -a 1 -x {1.0 6.0 34 ------- null} h -t 0.464 -s 3 -d 4 -p cbr -e 500 -c 1 -i 63 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.466 -s 3 -d 4 -p cbr -e 500 -c 1 -i 53 -a 1 -x {1.0 6.0 29 ------- null} + -t 0.466 -s 4 -d 6 -p cbr -e 500 -c 1 -i 53 -a 1 -x {1.0 6.0 29 ------- null} - -t 0.466 -s 4 -d 6 -p cbr -e 500 -c 1 -i 53 -a 1 -x {1.0 6.0 29 ------- null} h -t 0.466 -s 4 -d 6 -p cbr -e 500 -c 1 -i 53 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.466 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 48 -a 1 -x {2.0 7.0 21 ------- null} r -t 0.466 -s 4 -d 6 -p cbr -e 500 -c 1 -i 49 -a 1 -x {1.0 6.0 27 ------- null} r -t 0.468 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 74 -a 1 -x {2.0 7.0 34 ------- null} + -t 0.468 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 74 -a 1 -x {2.0 7.0 34 ------- null} - -t 0.468 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 64 -a 1 -x {2.0 7.0 29 ------- null} h -t 0.468 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 64 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.47 -s 1 -d 3 -p cbr -e 500 -c 1 -i 79 -a 1 -x {1.0 6.0 42 ------- null} - -t 0.47 -s 1 -d 3 -p cbr -e 500 -c 1 -i 79 -a 1 -x {1.0 6.0 42 ------- null} h -t 0.47 -s 1 -d 3 -p cbr -e 500 -c 1 -i 79 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.47 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 80 -a 1 -x {2.0 7.0 37 ------- null} - -t 0.47 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 80 -a 1 -x {2.0 7.0 37 ------- null} h -t 0.47 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 80 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.474 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 54 -a 1 -x {2.0 7.0 24 ------- null} + -t 0.474 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 54 -a 1 -x {2.0 7.0 24 ------- null} - -t 0.474 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 54 -a 1 -x {2.0 7.0 24 ------- null} h -t 0.474 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 54 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.474 -s 1 -d 3 -p cbr -e 500 -c 1 -i 75 -a 1 -x {1.0 6.0 40 ------- null} + -t 0.474 -s 3 -d 4 -p cbr -e 500 -c 1 -i 75 -a 1 -x {1.0 6.0 40 ------- null} - -t 0.476 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 66 -a 1 -x {2.0 7.0 30 ------- null} h -t 0.476 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 66 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.478 -s 3 -d 4 -p cbr -e 500 -c 1 -i 55 -a 1 -x {1.0 6.0 30 ------- null} + -t 0.478 -s 4 -d 6 -p cbr -e 500 -c 1 -i 55 -a 1 -x {1.0 6.0 30 ------- null} - -t 0.478 -s 4 -d 6 -p cbr -e 500 -c 1 -i 55 -a 1 -x {1.0 6.0 30 ------- null} h -t 0.478 -s 4 -d 6 -p cbr -e 500 -c 1 -i 55 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.478 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 50 -a 1 -x {2.0 7.0 22 ------- null} r -t 0.478 -s 4 -d 6 -p cbr -e 500 -c 1 -i 51 -a 1 -x {1.0 6.0 28 ------- null} r -t 0.478 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 76 -a 1 -x {2.0 7.0 35 ------- null} + -t 0.478 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 76 -a 1 -x {2.0 7.0 35 ------- null} v -t 0.47999999999999998 sim_annotation 0.47999999999999998 4 Sliding-Window Traffic starts + -t 0.48 -s 1 -d 3 -p cbr -e 500 -c 1 -i 81 -a 1 -x {1.0 6.0 43 ------- null} - -t 0.48 -s 1 -d 3 -p cbr -e 500 -c 1 -i 81 -a 1 -x {1.0 6.0 43 ------- null} h -t 0.48 -s 1 -d 3 -p cbr -e 500 -c 1 -i 81 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 82 -a 1 -x {2.0 7.0 38 ------- null} - -t 0.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 82 -a 1 -x {2.0 7.0 38 ------- null} h -t 0.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 82 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.484 -s 1 -d 3 -p cbr -e 500 -c 1 -i 77 -a 1 -x {1.0 6.0 41 ------- null} + -t 0.484 -s 3 -d 4 -p cbr -e 500 -c 1 -i 77 -a 1 -x {1.0 6.0 41 ------- null} d -t 0.484 -s 3 -d 4 -p cbr -e 500 -c 1 -i 77 -a 1 -x {1.0 6.0 41 ------- null} - -t 0.484 -s 3 -d 4 -p cbr -e 500 -c 1 -i 67 -a 1 -x {1.0 6.0 36 ------- null} h -t 0.484 -s 3 -d 4 -p cbr -e 500 -c 1 -i 67 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.486 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 56 -a 1 -x {2.0 7.0 25 ------- null} + -t 0.486 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 56 -a 1 -x {2.0 7.0 25 ------- null} - -t 0.486 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 56 -a 1 -x {2.0 7.0 25 ------- null} h -t 0.486 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 56 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.488 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 78 -a 1 -x {2.0 7.0 36 ------- null} + -t 0.488 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 78 -a 1 -x {2.0 7.0 36 ------- null} - -t 0.488 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 68 -a 1 -x {2.0 7.0 31 ------- null} h -t 0.488 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 68 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.49 -s 3 -d 4 -p cbr -e 500 -c 1 -i 57 -a 1 -x {1.0 6.0 31 ------- null} + -t 0.49 -s 4 -d 6 -p cbr -e 500 -c 1 -i 57 -a 1 -x {1.0 6.0 31 ------- null} - -t 0.49 -s 4 -d 6 -p cbr -e 500 -c 1 -i 57 -a 1 -x {1.0 6.0 31 ------- null} h -t 0.49 -s 4 -d 6 -p cbr -e 500 -c 1 -i 57 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.49 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 52 -a 1 -x {2.0 7.0 23 ------- null} r -t 0.49 -s 4 -d 6 -p cbr -e 500 -c 1 -i 53 -a 1 -x {1.0 6.0 29 ------- null} + -t 0.49 -s 1 -d 3 -p cbr -e 500 -c 1 -i 83 -a 1 -x {1.0 6.0 44 ------- null} - -t 0.49 -s 1 -d 3 -p cbr -e 500 -c 1 -i 83 -a 1 -x {1.0 6.0 44 ------- null} h -t 0.49 -s 1 -d 3 -p cbr -e 500 -c 1 -i 83 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.49 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 84 -a 1 -x {2.0 7.0 39 ------- null} - -t 0.49 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 84 -a 1 -x {2.0 7.0 39 ------- null} h -t 0.49 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 84 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.494 -s 3 -d 4 -p cbr -e 500 -c 1 -i 59 -a 1 -x {1.0 6.0 32 ------- null} + -t 0.494 -s 4 -d 6 -p cbr -e 500 -c 1 -i 59 -a 1 -x {1.0 6.0 32 ------- null} r -t 0.494 -s 1 -d 3 -p cbr -e 500 -c 1 -i 79 -a 1 -x {1.0 6.0 42 ------- null} + -t 0.494 -s 3 -d 4 -p cbr -e 500 -c 1 -i 79 -a 1 -x {1.0 6.0 42 ------- null} - -t 0.494 -s 4 -d 6 -p cbr -e 500 -c 1 -i 59 -a 1 -x {1.0 6.0 32 ------- null} h -t 0.494 -s 4 -d 6 -p cbr -e 500 -c 1 -i 59 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 69 -a 1 -x {1.0 6.0 37 ------- null} h -t 0.496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 69 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.498 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 80 -a 1 -x {2.0 7.0 37 ------- null} + -t 0.498 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 80 -a 1 -x {2.0 7.0 37 ------- null} + -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 85 -a 0 -x {0.0 5.0 0 ------- null} - -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 85 -a 0 -x {0.0 5.0 0 ------- null} h -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 85 -a 0 -x {0.0 5.0 -1 ------- null} + -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 86 -a 0 -x {0.0 5.0 1 ------- null} + -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 87 -a 0 -x {0.0 5.0 2 ------- null} + -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 88 -a 0 -x {0.0 5.0 3 ------- null} + -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 89 -a 0 -x {0.0 5.0 4 ------- null} + -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 90 -a 0 -x {0.0 5.0 5 ------- null} + -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 91 -a 0 -x {0.0 5.0 6 ------- null} + -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 92 -a 0 -x {0.0 5.0 7 ------- null} + -t 0.5 -s 1 -d 3 -p cbr -e 500 -c 1 -i 93 -a 1 -x {1.0 6.0 45 ------- null} - -t 0.5 -s 1 -d 3 -p cbr -e 500 -c 1 -i 93 -a 1 -x {1.0 6.0 45 ------- null} h -t 0.5 -s 1 -d 3 -p cbr -e 500 -c 1 -i 93 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.5 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 94 -a 1 -x {2.0 7.0 40 ------- null} - -t 0.5 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 94 -a 1 -x {2.0 7.0 40 ------- null} h -t 0.5 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 94 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.5 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 70 -a 1 -x {2.0 7.0 32 ------- null} h -t 0.5 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 70 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.5016 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 86 -a 0 -x {0.0 5.0 1 ------- null} h -t 0.5016 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 86 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.502 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 54 -a 1 -x {2.0 7.0 24 ------- null} r -t 0.502 -s 4 -d 6 -p cbr -e 500 -c 1 -i 55 -a 1 -x {1.0 6.0 30 ------- null} r -t 0.502 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 60 -a 1 -x {2.0 7.0 27 ------- null} + -t 0.502 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 60 -a 1 -x {2.0 7.0 27 ------- null} - -t 0.502 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 60 -a 1 -x {2.0 7.0 27 ------- null} h -t 0.502 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 60 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.5032 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 87 -a 0 -x {0.0 5.0 2 ------- null} h -t 0.5032 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 87 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.504 -s 1 -d 3 -p cbr -e 500 -c 1 -i 81 -a 1 -x {1.0 6.0 43 ------- null} + -t 0.504 -s 3 -d 4 -p cbr -e 500 -c 1 -i 81 -a 1 -x {1.0 6.0 43 ------- null} - -t 0.5048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 88 -a 0 -x {0.0 5.0 3 ------- null} h -t 0.5048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 88 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.506 -s 3 -d 4 -p cbr -e 500 -c 1 -i 61 -a 1 -x {1.0 6.0 33 ------- null} + -t 0.506 -s 4 -d 6 -p cbr -e 500 -c 1 -i 61 -a 1 -x {1.0 6.0 33 ------- null} - -t 0.506 -s 4 -d 6 -p cbr -e 500 -c 1 -i 61 -a 1 -x {1.0 6.0 33 ------- null} h -t 0.506 -s 4 -d 6 -p cbr -e 500 -c 1 -i 61 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.5064 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 89 -a 0 -x {0.0 5.0 4 ------- null} h -t 0.5064 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 89 -a 0 -x {0.0 5.0 -1 ------- null} - -t 0.508 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 90 -a 0 -x {0.0 5.0 5 ------- null} h -t 0.508 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 90 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.508 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 82 -a 1 -x {2.0 7.0 38 ------- null} + -t 0.508 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 82 -a 1 -x {2.0 7.0 38 ------- null} d -t 0.508 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 82 -a 1 -x {2.0 7.0 38 ------- null} - -t 0.508 -s 3 -d 4 -p cbr -e 500 -c 1 -i 71 -a 1 -x {1.0 6.0 38 ------- null} h -t 0.508 -s 3 -d 4 -p cbr -e 500 -c 1 -i 71 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.5096 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 91 -a 0 -x {0.0 5.0 6 ------- null} h -t 0.5096 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 91 -a 0 -x {0.0 5.0 -1 ------- null} v -t 0.51000000000000001 sim_annotation 0.51000000000000001 5 Send Packet_0 to 7 + -t 0.51 -s 1 -d 3 -p cbr -e 500 -c 1 -i 95 -a 1 -x {1.0 6.0 46 ------- null} - -t 0.51 -s 1 -d 3 -p cbr -e 500 -c 1 -i 95 -a 1 -x {1.0 6.0 46 ------- null} h -t 0.51 -s 1 -d 3 -p cbr -e 500 -c 1 -i 95 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.5112 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 92 -a 0 -x {0.0 5.0 7 ------- null} h -t 0.5112 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 92 -a 0 -x {0.0 5.0 -1 ------- null} - -t 0.512 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 72 -a 1 -x {2.0 7.0 33 ------- null} h -t 0.512 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 72 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.514 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 56 -a 1 -x {2.0 7.0 25 ------- null} r -t 0.514 -s 4 -d 6 -p cbr -e 500 -c 1 -i 57 -a 1 -x {1.0 6.0 31 ------- null} r -t 0.514 -s 1 -d 3 -p cbr -e 500 -c 1 -i 83 -a 1 -x {1.0 6.0 44 ------- null} + -t 0.514 -s 3 -d 4 -p cbr -e 500 -c 1 -i 83 -a 1 -x {1.0 6.0 44 ------- null} r -t 0.514 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 62 -a 1 -x {2.0 7.0 28 ------- null} + -t 0.514 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 62 -a 1 -x {2.0 7.0 28 ------- null} - -t 0.514 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 62 -a 1 -x {2.0 7.0 28 ------- null} h -t 0.514 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 62 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.518 -s 4 -d 6 -p cbr -e 500 -c 1 -i 59 -a 1 -x {1.0 6.0 32 ------- null} r -t 0.518 -s 3 -d 4 -p cbr -e 500 -c 1 -i 63 -a 1 -x {1.0 6.0 34 ------- null} + -t 0.518 -s 4 -d 6 -p cbr -e 500 -c 1 -i 63 -a 1 -x {1.0 6.0 34 ------- null} - -t 0.518 -s 4 -d 6 -p cbr -e 500 -c 1 -i 63 -a 1 -x {1.0 6.0 34 ------- null} h -t 0.518 -s 4 -d 6 -p cbr -e 500 -c 1 -i 63 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.518 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 84 -a 1 -x {2.0 7.0 39 ------- null} + -t 0.518 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 84 -a 1 -x {2.0 7.0 39 ------- null} + -t 0.52 -s 1 -d 3 -p cbr -e 500 -c 1 -i 96 -a 1 -x {1.0 6.0 47 ------- null} - -t 0.52 -s 1 -d 3 -p cbr -e 500 -c 1 -i 96 -a 1 -x {1.0 6.0 47 ------- null} h -t 0.52 -s 1 -d 3 -p cbr -e 500 -c 1 -i 96 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.52 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 97 -a 1 -x {2.0 7.0 41 ------- null} - -t 0.52 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 97 -a 1 -x {2.0 7.0 41 ------- null} h -t 0.52 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 97 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.52 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 74 -a 1 -x {2.0 7.0 34 ------- null} h -t 0.52 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 74 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.5216 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 85 -a 0 -x {0.0 5.0 0 ------- null} + -t 0.5216 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 85 -a 0 -x {0.0 5.0 0 ------- null} r -t 0.5232 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 86 -a 0 -x {0.0 5.0 1 ------- null} + -t 0.5232 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 86 -a 0 -x {0.0 5.0 1 ------- null} d -t 0.5232 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 86 -a 0 -x {0.0 5.0 1 ------- null} r -t 0.524 -s 1 -d 3 -p cbr -e 500 -c 1 -i 93 -a 1 -x {1.0 6.0 45 ------- null} + -t 0.524 -s 3 -d 4 -p cbr -e 500 -c 1 -i 93 -a 1 -x {1.0 6.0 45 ------- null} d -t 0.524 -s 3 -d 4 -p cbr -e 500 -c 1 -i 93 -a 1 -x {1.0 6.0 45 ------- null} r -t 0.5248 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 87 -a 0 -x {0.0 5.0 2 ------- null} + -t 0.5248 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 87 -a 0 -x {0.0 5.0 2 ------- null} d -t 0.5248 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 87 -a 0 -x {0.0 5.0 2 ------- null} r -t 0.526 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 64 -a 1 -x {2.0 7.0 29 ------- null} + -t 0.526 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 64 -a 1 -x {2.0 7.0 29 ------- null} - -t 0.526 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 64 -a 1 -x {2.0 7.0 29 ------- null} h -t 0.526 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 64 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.5264 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 88 -a 0 -x {0.0 5.0 3 ------- null} + -t 0.5264 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 88 -a 0 -x {0.0 5.0 3 ------- null} d -t 0.5264 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 88 -a 0 -x {0.0 5.0 3 ------- null} r -t 0.528 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 89 -a 0 -x {0.0 5.0 4 ------- null} + -t 0.528 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 89 -a 0 -x {0.0 5.0 4 ------- null} d -t 0.528 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 89 -a 0 -x {0.0 5.0 4 ------- null} r -t 0.528 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 94 -a 1 -x {2.0 7.0 40 ------- null} + -t 0.528 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 94 -a 1 -x {2.0 7.0 40 ------- null} d -t 0.528 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 94 -a 1 -x {2.0 7.0 40 ------- null} - -t 0.528 -s 3 -d 4 -p cbr -e 500 -c 1 -i 75 -a 1 -x {1.0 6.0 40 ------- null} h -t 0.528 -s 3 -d 4 -p cbr -e 500 -c 1 -i 75 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.5296 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 90 -a 0 -x {0.0 5.0 5 ------- null} + -t 0.5296 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 90 -a 0 -x {0.0 5.0 5 ------- null} + -t 0.53 -s 1 -d 3 -p cbr -e 500 -c 1 -i 98 -a 1 -x {1.0 6.0 48 ------- null} - -t 0.53 -s 1 -d 3 -p cbr -e 500 -c 1 -i 98 -a 1 -x {1.0 6.0 48 ------- null} h -t 0.53 -s 1 -d 3 -p cbr -e 500 -c 1 -i 98 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.53 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 60 -a 1 -x {2.0 7.0 27 ------- null} r -t 0.53 -s 4 -d 6 -p cbr -e 500 -c 1 -i 61 -a 1 -x {1.0 6.0 33 ------- null} r -t 0.5312 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 91 -a 0 -x {0.0 5.0 6 ------- null} + -t 0.5312 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 91 -a 0 -x {0.0 5.0 6 ------- null} d -t 0.5312 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 91 -a 0 -x {0.0 5.0 6 ------- null} - -t 0.532 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 76 -a 1 -x {2.0 7.0 35 ------- null} h -t 0.532 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 76 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.5328 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 92 -a 0 -x {0.0 5.0 7 ------- null} + -t 0.5328 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 92 -a 0 -x {0.0 5.0 7 ------- null} r -t 0.534 -s 1 -d 3 -p cbr -e 500 -c 1 -i 95 -a 1 -x {1.0 6.0 46 ------- null} + -t 0.534 -s 3 -d 4 -p cbr -e 500 -c 1 -i 95 -a 1 -x {1.0 6.0 46 ------- null} d -t 0.534 -s 3 -d 4 -p cbr -e 500 -c 1 -i 95 -a 1 -x {1.0 6.0 46 ------- null} r -t 0.534 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 66 -a 1 -x {2.0 7.0 30 ------- null} + -t 0.534 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 66 -a 1 -x {2.0 7.0 30 ------- null} - -t 0.534 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 66 -a 1 -x {2.0 7.0 30 ------- null} h -t 0.534 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 66 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.538 -s 3 -d 4 -p cbr -e 500 -c 1 -i 67 -a 1 -x {1.0 6.0 36 ------- null} + -t 0.538 -s 4 -d 6 -p cbr -e 500 -c 1 -i 67 -a 1 -x {1.0 6.0 36 ------- null} - -t 0.538 -s 4 -d 6 -p cbr -e 500 -c 1 -i 67 -a 1 -x {1.0 6.0 36 ------- null} h -t 0.538 -s 4 -d 6 -p cbr -e 500 -c 1 -i 67 -a 1 -x {1.0 6.0 -1 ------- null} v -t 0.54000000000000004 sim_annotation 0.54000000000000004 6 Lost Packet (5 of them) + -t 0.54 -s 1 -d 3 -p cbr -e 500 -c 1 -i 99 -a 1 -x {1.0 6.0 49 ------- null} - -t 0.54 -s 1 -d 3 -p cbr -e 500 -c 1 -i 99 -a 1 -x {1.0 6.0 49 ------- null} h -t 0.54 -s 1 -d 3 -p cbr -e 500 -c 1 -i 99 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.54 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 100 -a 1 -x {2.0 7.0 42 ------- null} - -t 0.54 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 100 -a 1 -x {2.0 7.0 42 ------- null} h -t 0.54 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 100 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.54 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 78 -a 1 -x {2.0 7.0 36 ------- null} h -t 0.54 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 78 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.542 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 62 -a 1 -x {2.0 7.0 28 ------- null} r -t 0.542 -s 4 -d 6 -p cbr -e 500 -c 1 -i 63 -a 1 -x {1.0 6.0 34 ------- null} r -t 0.544 -s 1 -d 3 -p cbr -e 500 -c 1 -i 96 -a 1 -x {1.0 6.0 47 ------- null} + -t 0.544 -s 3 -d 4 -p cbr -e 500 -c 1 -i 96 -a 1 -x {1.0 6.0 47 ------- null} r -t 0.546 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 68 -a 1 -x {2.0 7.0 31 ------- null} + -t 0.546 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 68 -a 1 -x {2.0 7.0 31 ------- null} - -t 0.546 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 68 -a 1 -x {2.0 7.0 31 ------- null} h -t 0.546 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 68 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.548 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 97 -a 1 -x {2.0 7.0 41 ------- null} + -t 0.548 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 97 -a 1 -x {2.0 7.0 41 ------- null} d -t 0.548 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 97 -a 1 -x {2.0 7.0 41 ------- null} - -t 0.548 -s 3 -d 4 -p cbr -e 500 -c 1 -i 79 -a 1 -x {1.0 6.0 42 ------- null} h -t 0.548 -s 3 -d 4 -p cbr -e 500 -c 1 -i 79 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.55 -s 1 -d 3 -p cbr -e 500 -c 1 -i 101 -a 1 -x {1.0 6.0 50 ------- null} - -t 0.55 -s 1 -d 3 -p cbr -e 500 -c 1 -i 101 -a 1 -x {1.0 6.0 50 ------- null} h -t 0.55 -s 1 -d 3 -p cbr -e 500 -c 1 -i 101 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.55 -s 3 -d 4 -p cbr -e 500 -c 1 -i 69 -a 1 -x {1.0 6.0 37 ------- null} + -t 0.55 -s 4 -d 6 -p cbr -e 500 -c 1 -i 69 -a 1 -x {1.0 6.0 37 ------- null} - -t 0.55 -s 4 -d 6 -p cbr -e 500 -c 1 -i 69 -a 1 -x {1.0 6.0 37 ------- null} h -t 0.55 -s 4 -d 6 -p cbr -e 500 -c 1 -i 69 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.552 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 80 -a 1 -x {2.0 7.0 37 ------- null} h -t 0.552 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 80 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.554 -s 1 -d 3 -p cbr -e 500 -c 1 -i 98 -a 1 -x {1.0 6.0 48 ------- null} + -t 0.554 -s 3 -d 4 -p cbr -e 500 -c 1 -i 98 -a 1 -x {1.0 6.0 48 ------- null} r -t 0.554 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 64 -a 1 -x {2.0 7.0 29 ------- null} r -t 0.558 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 70 -a 1 -x {2.0 7.0 32 ------- null} + -t 0.558 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 70 -a 1 -x {2.0 7.0 32 ------- null} - -t 0.558 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 70 -a 1 -x {2.0 7.0 32 ------- null} h -t 0.558 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 70 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.56 -s 1 -d 3 -p cbr -e 500 -c 1 -i 102 -a 1 -x {1.0 6.0 51 ------- null} - -t 0.56 -s 1 -d 3 -p cbr -e 500 -c 1 -i 102 -a 1 -x {1.0 6.0 51 ------- null} h -t 0.56 -s 1 -d 3 -p cbr -e 500 -c 1 -i 102 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.56 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 103 -a 1 -x {2.0 7.0 43 ------- null} - -t 0.56 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 103 -a 1 -x {2.0 7.0 43 ------- null} h -t 0.56 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 103 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.56 -s 3 -d 4 -p cbr -e 500 -c 1 -i 81 -a 1 -x {1.0 6.0 43 ------- null} h -t 0.56 -s 3 -d 4 -p cbr -e 500 -c 1 -i 81 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.562 -s 3 -d 4 -p cbr -e 500 -c 1 -i 71 -a 1 -x {1.0 6.0 38 ------- null} + -t 0.562 -s 4 -d 6 -p cbr -e 500 -c 1 -i 71 -a 1 -x {1.0 6.0 38 ------- null} - -t 0.562 -s 4 -d 6 -p cbr -e 500 -c 1 -i 71 -a 1 -x {1.0 6.0 38 ------- null} h -t 0.562 -s 4 -d 6 -p cbr -e 500 -c 1 -i 71 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.562 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 66 -a 1 -x {2.0 7.0 30 ------- null} r -t 0.562 -s 4 -d 6 -p cbr -e 500 -c 1 -i 67 -a 1 -x {1.0 6.0 36 ------- null} r -t 0.564 -s 1 -d 3 -p cbr -e 500 -c 1 -i 99 -a 1 -x {1.0 6.0 49 ------- null} + -t 0.564 -s 3 -d 4 -p cbr -e 500 -c 1 -i 99 -a 1 -x {1.0 6.0 49 ------- null} - -t 0.564 -s 3 -d 4 -p cbr -e 500 -c 1 -i 83 -a 1 -x {1.0 6.0 44 ------- null} h -t 0.564 -s 3 -d 4 -p cbr -e 500 -c 1 -i 83 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.568 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 100 -a 1 -x {2.0 7.0 42 ------- null} + -t 0.568 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 100 -a 1 -x {2.0 7.0 42 ------- null} - -t 0.568 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 84 -a 1 -x {2.0 7.0 39 ------- null} h -t 0.568 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 84 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.57 -s 1 -d 3 -p cbr -e 500 -c 1 -i 104 -a 1 -x {1.0 6.0 52 ------- null} - -t 0.57 -s 1 -d 3 -p cbr -e 500 -c 1 -i 104 -a 1 -x {1.0 6.0 52 ------- null} h -t 0.57 -s 1 -d 3 -p cbr -e 500 -c 1 -i 104 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.57 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 72 -a 1 -x {2.0 7.0 33 ------- null} + -t 0.57 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 72 -a 1 -x {2.0 7.0 33 ------- null} - -t 0.57 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 72 -a 1 -x {2.0 7.0 33 ------- null} h -t 0.57 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 72 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.574 -s 1 -d 3 -p cbr -e 500 -c 1 -i 101 -a 1 -x {1.0 6.0 50 ------- null} + -t 0.574 -s 3 -d 4 -p cbr -e 500 -c 1 -i 101 -a 1 -x {1.0 6.0 50 ------- null} r -t 0.574 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 68 -a 1 -x {2.0 7.0 31 ------- null} r -t 0.574 -s 4 -d 6 -p cbr -e 500 -c 1 -i 69 -a 1 -x {1.0 6.0 37 ------- null} - -t 0.576 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 85 -a 0 -x {0.0 5.0 0 ------- null} h -t 0.576 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 85 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.578 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 74 -a 1 -x {2.0 7.0 34 ------- null} + -t 0.578 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 74 -a 1 -x {2.0 7.0 34 ------- null} - -t 0.578 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 74 -a 1 -x {2.0 7.0 34 ------- null} h -t 0.578 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 74 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.58 -s 1 -d 3 -p cbr -e 500 -c 1 -i 105 -a 1 -x {1.0 6.0 53 ------- null} - -t 0.58 -s 1 -d 3 -p cbr -e 500 -c 1 -i 105 -a 1 -x {1.0 6.0 53 ------- null} h -t 0.58 -s 1 -d 3 -p cbr -e 500 -c 1 -i 105 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.58 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 106 -a 1 -x {2.0 7.0 44 ------- null} - -t 0.58 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 106 -a 1 -x {2.0 7.0 44 ------- null} h -t 0.58 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 106 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.582 -s 3 -d 4 -p cbr -e 500 -c 1 -i 75 -a 1 -x {1.0 6.0 40 ------- null} + -t 0.582 -s 4 -d 6 -p cbr -e 500 -c 1 -i 75 -a 1 -x {1.0 6.0 40 ------- null} - -t 0.582 -s 4 -d 6 -p cbr -e 500 -c 1 -i 75 -a 1 -x {1.0 6.0 40 ------- null} h -t 0.582 -s 4 -d 6 -p cbr -e 500 -c 1 -i 75 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.584 -s 1 -d 3 -p cbr -e 500 -c 1 -i 102 -a 1 -x {1.0 6.0 51 ------- null} + -t 0.584 -s 3 -d 4 -p cbr -e 500 -c 1 -i 102 -a 1 -x {1.0 6.0 51 ------- null} - -t 0.584 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 90 -a 0 -x {0.0 5.0 5 ------- null} h -t 0.584 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 90 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.586 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 70 -a 1 -x {2.0 7.0 32 ------- null} r -t 0.586 -s 4 -d 6 -p cbr -e 500 -c 1 -i 71 -a 1 -x {1.0 6.0 38 ------- null} r -t 0.588 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 103 -a 1 -x {2.0 7.0 43 ------- null} + -t 0.588 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 103 -a 1 -x {2.0 7.0 43 ------- null} + -t 0.59 -s 1 -d 3 -p cbr -e 500 -c 1 -i 107 -a 1 -x {1.0 6.0 54 ------- null} - -t 0.59 -s 1 -d 3 -p cbr -e 500 -c 1 -i 107 -a 1 -x {1.0 6.0 54 ------- null} h -t 0.59 -s 1 -d 3 -p cbr -e 500 -c 1 -i 107 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.59 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 76 -a 1 -x {2.0 7.0 35 ------- null} + -t 0.59 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 76 -a 1 -x {2.0 7.0 35 ------- null} - -t 0.59 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 76 -a 1 -x {2.0 7.0 35 ------- null} h -t 0.59 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 76 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.592 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 92 -a 0 -x {0.0 5.0 7 ------- null} h -t 0.592 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 92 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.594 -s 1 -d 3 -p cbr -e 500 -c 1 -i 104 -a 1 -x {1.0 6.0 52 ------- null} + -t 0.594 -s 3 -d 4 -p cbr -e 500 -c 1 -i 104 -a 1 -x {1.0 6.0 52 ------- null} r -t 0.598 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 78 -a 1 -x {2.0 7.0 36 ------- null} + -t 0.598 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 78 -a 1 -x {2.0 7.0 36 ------- null} r -t 0.598 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 72 -a 1 -x {2.0 7.0 33 ------- null} - -t 0.598 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 78 -a 1 -x {2.0 7.0 36 ------- null} h -t 0.598 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 78 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.6 -s 1 -d 3 -p cbr -e 500 -c 1 -i 108 -a 1 -x {1.0 6.0 55 ------- null} - -t 0.6 -s 1 -d 3 -p cbr -e 500 -c 1 -i 108 -a 1 -x {1.0 6.0 55 ------- null} h -t 0.6 -s 1 -d 3 -p cbr -e 500 -c 1 -i 108 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.6 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 109 -a 1 -x {2.0 7.0 45 ------- null} - -t 0.6 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 109 -a 1 -x {2.0 7.0 45 ------- null} h -t 0.6 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 109 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.6 -s 3 -d 4 -p cbr -e 500 -c 1 -i 96 -a 1 -x {1.0 6.0 47 ------- null} h -t 0.6 -s 3 -d 4 -p cbr -e 500 -c 1 -i 96 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.602 -s 3 -d 4 -p cbr -e 500 -c 1 -i 79 -a 1 -x {1.0 6.0 42 ------- null} + -t 0.602 -s 4 -d 6 -p cbr -e 500 -c 1 -i 79 -a 1 -x {1.0 6.0 42 ------- null} - -t 0.602 -s 4 -d 6 -p cbr -e 500 -c 1 -i 79 -a 1 -x {1.0 6.0 42 ------- null} h -t 0.602 -s 4 -d 6 -p cbr -e 500 -c 1 -i 79 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.604 -s 1 -d 3 -p cbr -e 500 -c 1 -i 105 -a 1 -x {1.0 6.0 53 ------- null} + -t 0.604 -s 3 -d 4 -p cbr -e 500 -c 1 -i 105 -a 1 -x {1.0 6.0 53 ------- null} - -t 0.604 -s 3 -d 4 -p cbr -e 500 -c 1 -i 98 -a 1 -x {1.0 6.0 48 ------- null} h -t 0.604 -s 3 -d 4 -p cbr -e 500 -c 1 -i 98 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.606 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 74 -a 1 -x {2.0 7.0 34 ------- null} r -t 0.606 -s 4 -d 6 -p cbr -e 500 -c 1 -i 75 -a 1 -x {1.0 6.0 40 ------- null} r -t 0.608 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 106 -a 1 -x {2.0 7.0 44 ------- null} + -t 0.608 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 106 -a 1 -x {2.0 7.0 44 ------- null} - -t 0.608 -s 3 -d 4 -p cbr -e 500 -c 1 -i 99 -a 1 -x {1.0 6.0 49 ------- null} h -t 0.608 -s 3 -d 4 -p cbr -e 500 -c 1 -i 99 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.61 -s 1 -d 3 -p cbr -e 500 -c 1 -i 110 -a 1 -x {1.0 6.0 56 ------- null} - -t 0.61 -s 1 -d 3 -p cbr -e 500 -c 1 -i 110 -a 1 -x {1.0 6.0 56 ------- null} h -t 0.61 -s 1 -d 3 -p cbr -e 500 -c 1 -i 110 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.61 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 80 -a 1 -x {2.0 7.0 37 ------- null} + -t 0.61 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 80 -a 1 -x {2.0 7.0 37 ------- null} - -t 0.61 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 80 -a 1 -x {2.0 7.0 37 ------- null} h -t 0.61 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 80 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.612 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 100 -a 1 -x {2.0 7.0 42 ------- null} h -t 0.612 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 100 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.614 -s 1 -d 3 -p cbr -e 500 -c 1 -i 107 -a 1 -x {1.0 6.0 54 ------- null} + -t 0.614 -s 3 -d 4 -p cbr -e 500 -c 1 -i 107 -a 1 -x {1.0 6.0 54 ------- null} r -t 0.614 -s 3 -d 4 -p cbr -e 500 -c 1 -i 81 -a 1 -x {1.0 6.0 43 ------- null} + -t 0.614 -s 4 -d 6 -p cbr -e 500 -c 1 -i 81 -a 1 -x {1.0 6.0 43 ------- null} - -t 0.614 -s 4 -d 6 -p cbr -e 500 -c 1 -i 81 -a 1 -x {1.0 6.0 43 ------- null} h -t 0.614 -s 4 -d 6 -p cbr -e 500 -c 1 -i 81 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.618 -s 3 -d 4 -p cbr -e 500 -c 1 -i 83 -a 1 -x {1.0 6.0 44 ------- null} + -t 0.618 -s 4 -d 6 -p cbr -e 500 -c 1 -i 83 -a 1 -x {1.0 6.0 44 ------- null} r -t 0.618 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 76 -a 1 -x {2.0 7.0 35 ------- null} - -t 0.618 -s 4 -d 6 -p cbr -e 500 -c 1 -i 83 -a 1 -x {1.0 6.0 44 ------- null} h -t 0.618 -s 4 -d 6 -p cbr -e 500 -c 1 -i 83 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.62 -s 1 -d 3 -p cbr -e 500 -c 1 -i 111 -a 1 -x {1.0 6.0 57 ------- null} - -t 0.62 -s 1 -d 3 -p cbr -e 500 -c 1 -i 111 -a 1 -x {1.0 6.0 57 ------- null} h -t 0.62 -s 1 -d 3 -p cbr -e 500 -c 1 -i 111 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.62 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 112 -a 1 -x {2.0 7.0 46 ------- null} - -t 0.62 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 112 -a 1 -x {2.0 7.0 46 ------- null} h -t 0.62 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 112 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.62 -s 3 -d 4 -p cbr -e 500 -c 1 -i 101 -a 1 -x {1.0 6.0 50 ------- null} h -t 0.62 -s 3 -d 4 -p cbr -e 500 -c 1 -i 101 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.624 -s 1 -d 3 -p cbr -e 500 -c 1 -i 108 -a 1 -x {1.0 6.0 55 ------- null} + -t 0.624 -s 3 -d 4 -p cbr -e 500 -c 1 -i 108 -a 1 -x {1.0 6.0 55 ------- null} - -t 0.624 -s 3 -d 4 -p cbr -e 500 -c 1 -i 102 -a 1 -x {1.0 6.0 51 ------- null} h -t 0.624 -s 3 -d 4 -p cbr -e 500 -c 1 -i 102 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.626 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 84 -a 1 -x {2.0 7.0 39 ------- null} + -t 0.626 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 84 -a 1 -x {2.0 7.0 39 ------- null} - -t 0.626 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 84 -a 1 -x {2.0 7.0 39 ------- null} h -t 0.626 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 84 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.626 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 78 -a 1 -x {2.0 7.0 36 ------- null} r -t 0.626 -s 4 -d 6 -p cbr -e 500 -c 1 -i 79 -a 1 -x {1.0 6.0 42 ------- null} r -t 0.628 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 109 -a 1 -x {2.0 7.0 45 ------- null} + -t 0.628 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 109 -a 1 -x {2.0 7.0 45 ------- null} - -t 0.628 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 103 -a 1 -x {2.0 7.0 43 ------- null} h -t 0.628 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 103 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.63 -s 1 -d 3 -p cbr -e 500 -c 1 -i 113 -a 1 -x {1.0 6.0 58 ------- null} - -t 0.63 -s 1 -d 3 -p cbr -e 500 -c 1 -i 113 -a 1 -x {1.0 6.0 58 ------- null} h -t 0.63 -s 1 -d 3 -p cbr -e 500 -c 1 -i 113 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.634 -s 1 -d 3 -p cbr -e 500 -c 1 -i 110 -a 1 -x {1.0 6.0 56 ------- null} + -t 0.634 -s 3 -d 4 -p cbr -e 500 -c 1 -i 110 -a 1 -x {1.0 6.0 56 ------- null} r -t 0.634 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 85 -a 0 -x {0.0 5.0 0 ------- null} + -t 0.634 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 85 -a 0 -x {0.0 5.0 0 ------- null} - -t 0.634 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 85 -a 0 -x {0.0 5.0 0 ------- null} h -t 0.634 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 85 -a 0 -x {0.0 5.0 -1 ------- null} - -t 0.636 -s 3 -d 4 -p cbr -e 500 -c 1 -i 104 -a 1 -x {1.0 6.0 52 ------- null} h -t 0.636 -s 3 -d 4 -p cbr -e 500 -c 1 -i 104 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.638 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 80 -a 1 -x {2.0 7.0 37 ------- null} r -t 0.638 -s 4 -d 6 -p cbr -e 500 -c 1 -i 81 -a 1 -x {1.0 6.0 43 ------- null} + -t 0.64 -s 1 -d 3 -p cbr -e 500 -c 1 -i 114 -a 1 -x {1.0 6.0 59 ------- null} - -t 0.64 -s 1 -d 3 -p cbr -e 500 -c 1 -i 114 -a 1 -x {1.0 6.0 59 ------- null} h -t 0.64 -s 1 -d 3 -p cbr -e 500 -c 1 -i 114 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.64 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 115 -a 1 -x {2.0 7.0 47 ------- null} - -t 0.64 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 115 -a 1 -x {2.0 7.0 47 ------- null} h -t 0.64 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 115 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.64 -s 3 -d 4 -p cbr -e 500 -c 1 -i 105 -a 1 -x {1.0 6.0 53 ------- null} h -t 0.64 -s 3 -d 4 -p cbr -e 500 -c 1 -i 105 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.642 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 90 -a 0 -x {0.0 5.0 5 ------- null} + -t 0.642 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 90 -a 0 -x {0.0 5.0 5 ------- null} - -t 0.642 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 90 -a 0 -x {0.0 5.0 5 ------- null} h -t 0.642 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 90 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.642 -s 4 -d 6 -p cbr -e 500 -c 1 -i 83 -a 1 -x {1.0 6.0 44 ------- null} r -t 0.644 -s 1 -d 3 -p cbr -e 500 -c 1 -i 111 -a 1 -x {1.0 6.0 57 ------- null} + -t 0.644 -s 3 -d 4 -p cbr -e 500 -c 1 -i 111 -a 1 -x {1.0 6.0 57 ------- null} - -t 0.644 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 106 -a 1 -x {2.0 7.0 44 ------- null} h -t 0.644 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 106 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.648 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 112 -a 1 -x {2.0 7.0 46 ------- null} + -t 0.648 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 112 -a 1 -x {2.0 7.0 46 ------- null} + -t 0.65 -s 1 -d 3 -p cbr -e 500 -c 1 -i 116 -a 1 -x {1.0 6.0 60 ------- null} - -t 0.65 -s 1 -d 3 -p cbr -e 500 -c 1 -i 116 -a 1 -x {1.0 6.0 60 ------- null} h -t 0.65 -s 1 -d 3 -p cbr -e 500 -c 1 -i 116 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.65 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 92 -a 0 -x {0.0 5.0 7 ------- null} + -t 0.65 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 92 -a 0 -x {0.0 5.0 7 ------- null} - -t 0.65 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 92 -a 0 -x {0.0 5.0 7 ------- null} h -t 0.65 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 92 -a 0 -x {0.0 5.0 -1 ------- null} - -t 0.652 -s 3 -d 4 -p cbr -e 500 -c 1 -i 107 -a 1 -x {1.0 6.0 54 ------- null} h -t 0.652 -s 3 -d 4 -p cbr -e 500 -c 1 -i 107 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.654 -s 1 -d 3 -p cbr -e 500 -c 1 -i 113 -a 1 -x {1.0 6.0 58 ------- null} + -t 0.654 -s 3 -d 4 -p cbr -e 500 -c 1 -i 113 -a 1 -x {1.0 6.0 58 ------- null} r -t 0.654 -s 3 -d 4 -p cbr -e 500 -c 1 -i 96 -a 1 -x {1.0 6.0 47 ------- null} + -t 0.654 -s 4 -d 6 -p cbr -e 500 -c 1 -i 96 -a 1 -x {1.0 6.0 47 ------- null} - -t 0.654 -s 4 -d 6 -p cbr -e 500 -c 1 -i 96 -a 1 -x {1.0 6.0 47 ------- null} h -t 0.654 -s 4 -d 6 -p cbr -e 500 -c 1 -i 96 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.654 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 84 -a 1 -x {2.0 7.0 39 ------- null} r -t 0.6556 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 85 -a 0 -x {0.0 5.0 0 ------- null} + -t 0.6556 -s 5 -d 4 -p ack -e 40 -c 0 -i 117 -a 0 -x {5.0 0.0 0 ------- null} - -t 0.6556 -s 5 -d 4 -p ack -e 40 -c 0 -i 117 -a 0 -x {5.0 0.0 0 ------- null} h -t 0.6556 -s 5 -d 4 -p ack -e 40 -c 0 -i 117 -a 0 -x {5.0 0.0 -1 ------- null} - -t 0.656 -s 3 -d 4 -p cbr -e 500 -c 1 -i 108 -a 1 -x {1.0 6.0 55 ------- null} h -t 0.656 -s 3 -d 4 -p cbr -e 500 -c 1 -i 108 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.658 -s 3 -d 4 -p cbr -e 500 -c 1 -i 98 -a 1 -x {1.0 6.0 48 ------- null} + -t 0.658 -s 4 -d 6 -p cbr -e 500 -c 1 -i 98 -a 1 -x {1.0 6.0 48 ------- null} - -t 0.658 -s 4 -d 6 -p cbr -e 500 -c 1 -i 98 -a 1 -x {1.0 6.0 48 ------- null} h -t 0.658 -s 4 -d 6 -p cbr -e 500 -c 1 -i 98 -a 1 -x {1.0 6.0 -1 ------- null} v -t 0.66000000000000003 sim_annotation 0.66000000000000003 7 3 Ack_0s + -t 0.66 -s 1 -d 3 -p cbr -e 500 -c 1 -i 118 -a 1 -x {1.0 6.0 61 ------- null} - -t 0.66 -s 1 -d 3 -p cbr -e 500 -c 1 -i 118 -a 1 -x {1.0 6.0 61 ------- null} h -t 0.66 -s 1 -d 3 -p cbr -e 500 -c 1 -i 118 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.66 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 119 -a 1 -x {2.0 7.0 48 ------- null} - -t 0.66 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 119 -a 1 -x {2.0 7.0 48 ------- null} h -t 0.66 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 119 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.66 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 109 -a 1 -x {2.0 7.0 45 ------- null} h -t 0.66 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 109 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.662 -s 3 -d 4 -p cbr -e 500 -c 1 -i 99 -a 1 -x {1.0 6.0 49 ------- null} + -t 0.662 -s 4 -d 6 -p cbr -e 500 -c 1 -i 99 -a 1 -x {1.0 6.0 49 ------- null} - -t 0.662 -s 4 -d 6 -p cbr -e 500 -c 1 -i 99 -a 1 -x {1.0 6.0 49 ------- null} h -t 0.662 -s 4 -d 6 -p cbr -e 500 -c 1 -i 99 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.6636 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 90 -a 0 -x {0.0 5.0 5 ------- null} + -t 0.6636 -s 5 -d 4 -p ack -e 40 -c 0 -i 120 -a 0 -x {5.0 0.0 0 ------- null} - -t 0.6636 -s 5 -d 4 -p ack -e 40 -c 0 -i 120 -a 0 -x {5.0 0.0 0 ------- null} h -t 0.6636 -s 5 -d 4 -p ack -e 40 -c 0 -i 120 -a 0 -x {5.0 0.0 -1 ------- null} r -t 0.664 -s 1 -d 3 -p cbr -e 500 -c 1 -i 114 -a 1 -x {1.0 6.0 59 ------- null} + -t 0.664 -s 3 -d 4 -p cbr -e 500 -c 1 -i 114 -a 1 -x {1.0 6.0 59 ------- null} r -t 0.668 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 115 -a 1 -x {2.0 7.0 47 ------- null} + -t 0.668 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 115 -a 1 -x {2.0 7.0 47 ------- null} - -t 0.668 -s 3 -d 4 -p cbr -e 500 -c 1 -i 110 -a 1 -x {1.0 6.0 56 ------- null} h -t 0.668 -s 3 -d 4 -p cbr -e 500 -c 1 -i 110 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.67 -s 1 -d 3 -p cbr -e 500 -c 1 -i 121 -a 1 -x {1.0 6.0 62 ------- null} - -t 0.67 -s 1 -d 3 -p cbr -e 500 -c 1 -i 121 -a 1 -x {1.0 6.0 62 ------- null} h -t 0.67 -s 1 -d 3 -p cbr -e 500 -c 1 -i 121 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.67 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 100 -a 1 -x {2.0 7.0 42 ------- null} + -t 0.67 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 100 -a 1 -x {2.0 7.0 42 ------- null} - -t 0.67 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 100 -a 1 -x {2.0 7.0 42 ------- null} h -t 0.67 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 100 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.6716 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 92 -a 0 -x {0.0 5.0 7 ------- null} + -t 0.6716 -s 5 -d 4 -p ack -e 40 -c 0 -i 122 -a 0 -x {5.0 0.0 0 ------- null} - -t 0.6716 -s 5 -d 4 -p ack -e 40 -c 0 -i 122 -a 0 -x {5.0 0.0 0 ------- null} h -t 0.6716 -s 5 -d 4 -p ack -e 40 -c 0 -i 122 -a 0 -x {5.0 0.0 -1 ------- null} - -t 0.672 -s 3 -d 4 -p cbr -e 500 -c 1 -i 111 -a 1 -x {1.0 6.0 57 ------- null} h -t 0.672 -s 3 -d 4 -p cbr -e 500 -c 1 -i 111 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.674 -s 1 -d 3 -p cbr -e 500 -c 1 -i 116 -a 1 -x {1.0 6.0 60 ------- null} + -t 0.674 -s 3 -d 4 -p cbr -e 500 -c 1 -i 116 -a 1 -x {1.0 6.0 60 ------- null} r -t 0.674 -s 3 -d 4 -p cbr -e 500 -c 1 -i 101 -a 1 -x {1.0 6.0 50 ------- null} + -t 0.674 -s 4 -d 6 -p cbr -e 500 -c 1 -i 101 -a 1 -x {1.0 6.0 50 ------- null} - -t 0.674 -s 4 -d 6 -p cbr -e 500 -c 1 -i 101 -a 1 -x {1.0 6.0 50 ------- null} h -t 0.674 -s 4 -d 6 -p cbr -e 500 -c 1 -i 101 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.675664 -s 5 -d 4 -p ack -e 40 -c 0 -i 117 -a 0 -x {5.0 0.0 0 ------- null} + -t 0.675664 -s 4 -d 3 -p ack -e 40 -c 0 -i 117 -a 0 -x {5.0 0.0 0 ------- null} - -t 0.675664 -s 4 -d 3 -p ack -e 40 -c 0 -i 117 -a 0 -x {5.0 0.0 0 ------- null} h -t 0.675664 -s 4 -d 3 -p ack -e 40 -c 0 -i 117 -a 0 -x {5.0 0.0 -1 ------- null} - -t 0.676 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 112 -a 1 -x {2.0 7.0 46 ------- null} h -t 0.676 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 112 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.678 -s 3 -d 4 -p cbr -e 500 -c 1 -i 102 -a 1 -x {1.0 6.0 51 ------- null} + -t 0.678 -s 4 -d 6 -p cbr -e 500 -c 1 -i 102 -a 1 -x {1.0 6.0 51 ------- null} r -t 0.678 -s 4 -d 6 -p cbr -e 500 -c 1 -i 96 -a 1 -x {1.0 6.0 47 ------- null} - -t 0.678 -s 4 -d 6 -p cbr -e 500 -c 1 -i 102 -a 1 -x {1.0 6.0 51 ------- null} h -t 0.678 -s 4 -d 6 -p cbr -e 500 -c 1 -i 102 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.68 -s 1 -d 3 -p cbr -e 500 -c 1 -i 123 -a 1 -x {1.0 6.0 63 ------- null} - -t 0.68 -s 1 -d 3 -p cbr -e 500 -c 1 -i 123 -a 1 -x {1.0 6.0 63 ------- null} h -t 0.68 -s 1 -d 3 -p cbr -e 500 -c 1 -i 123 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.68 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 124 -a 1 -x {2.0 7.0 49 ------- null} - -t 0.68 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 124 -a 1 -x {2.0 7.0 49 ------- null} h -t 0.68 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 124 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.682 -s 4 -d 6 -p cbr -e 500 -c 1 -i 98 -a 1 -x {1.0 6.0 48 ------- null} r -t 0.683664 -s 5 -d 4 -p ack -e 40 -c 0 -i 120 -a 0 -x {5.0 0.0 0 ------- null} + -t 0.683664 -s 4 -d 3 -p ack -e 40 -c 0 -i 120 -a 0 -x {5.0 0.0 0 ------- null} - -t 0.683664 -s 4 -d 3 -p ack -e 40 -c 0 -i 120 -a 0 -x {5.0 0.0 0 ------- null} h -t 0.683664 -s 4 -d 3 -p ack -e 40 -c 0 -i 120 -a 0 -x {5.0 0.0 -1 ------- null} r -t 0.684 -s 1 -d 3 -p cbr -e 500 -c 1 -i 118 -a 1 -x {1.0 6.0 61 ------- null} + -t 0.684 -s 3 -d 4 -p cbr -e 500 -c 1 -i 118 -a 1 -x {1.0 6.0 61 ------- null} - -t 0.684 -s 3 -d 4 -p cbr -e 500 -c 1 -i 113 -a 1 -x {1.0 6.0 58 ------- null} h -t 0.684 -s 3 -d 4 -p cbr -e 500 -c 1 -i 113 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.686 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 103 -a 1 -x {2.0 7.0 43 ------- null} + -t 0.686 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 103 -a 1 -x {2.0 7.0 43 ------- null} - -t 0.686 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 103 -a 1 -x {2.0 7.0 43 ------- null} h -t 0.686 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 103 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.686 -s 4 -d 6 -p cbr -e 500 -c 1 -i 99 -a 1 -x {1.0 6.0 49 ------- null} r -t 0.688 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 119 -a 1 -x {2.0 7.0 48 ------- null} + -t 0.688 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 119 -a 1 -x {2.0 7.0 48 ------- null} - -t 0.688 -s 3 -d 4 -p cbr -e 500 -c 1 -i 114 -a 1 -x {1.0 6.0 59 ------- null} h -t 0.688 -s 3 -d 4 -p cbr -e 500 -c 1 -i 114 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.69 -s 1 -d 3 -p cbr -e 500 -c 1 -i 125 -a 1 -x {1.0 6.0 64 ------- null} - -t 0.69 -s 1 -d 3 -p cbr -e 500 -c 1 -i 125 -a 1 -x {1.0 6.0 64 ------- null} h -t 0.69 -s 1 -d 3 -p cbr -e 500 -c 1 -i 125 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.69 -s 3 -d 4 -p cbr -e 500 -c 1 -i 104 -a 1 -x {1.0 6.0 52 ------- null} + -t 0.69 -s 4 -d 6 -p cbr -e 500 -c 1 -i 104 -a 1 -x {1.0 6.0 52 ------- null} - -t 0.69 -s 4 -d 6 -p cbr -e 500 -c 1 -i 104 -a 1 -x {1.0 6.0 52 ------- null} h -t 0.69 -s 4 -d 6 -p cbr -e 500 -c 1 -i 104 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.691664 -s 5 -d 4 -p ack -e 40 -c 0 -i 122 -a 0 -x {5.0 0.0 0 ------- null} + -t 0.691664 -s 4 -d 3 -p ack -e 40 -c 0 -i 122 -a 0 -x {5.0 0.0 0 ------- null} - -t 0.691664 -s 4 -d 3 -p ack -e 40 -c 0 -i 122 -a 0 -x {5.0 0.0 0 ------- null} h -t 0.691664 -s 4 -d 3 -p ack -e 40 -c 0 -i 122 -a 0 -x {5.0 0.0 -1 ------- null} - -t 0.692 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 115 -a 1 -x {2.0 7.0 47 ------- null} h -t 0.692 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 115 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.694 -s 1 -d 3 -p cbr -e 500 -c 1 -i 121 -a 1 -x {1.0 6.0 62 ------- null} + -t 0.694 -s 3 -d 4 -p cbr -e 500 -c 1 -i 121 -a 1 -x {1.0 6.0 62 ------- null} r -t 0.694 -s 3 -d 4 -p cbr -e 500 -c 1 -i 105 -a 1 -x {1.0 6.0 53 ------- null} + -t 0.694 -s 4 -d 6 -p cbr -e 500 -c 1 -i 105 -a 1 -x {1.0 6.0 53 ------- null} - -t 0.694 -s 4 -d 6 -p cbr -e 500 -c 1 -i 105 -a 1 -x {1.0 6.0 53 ------- null} h -t 0.694 -s 4 -d 6 -p cbr -e 500 -c 1 -i 105 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.698 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 100 -a 1 -x {2.0 7.0 42 ------- null} r -t 0.698 -s 4 -d 6 -p cbr -e 500 -c 1 -i 101 -a 1 -x {1.0 6.0 50 ------- null} + -t 0.7 -s 1 -d 3 -p cbr -e 500 -c 1 -i 126 -a 1 -x {1.0 6.0 65 ------- null} - -t 0.7 -s 1 -d 3 -p cbr -e 500 -c 1 -i 126 -a 1 -x {1.0 6.0 65 ------- null} h -t 0.7 -s 1 -d 3 -p cbr -e 500 -c 1 -i 126 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.7 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 127 -a 1 -x {2.0 7.0 50 ------- null} - -t 0.7 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 127 -a 1 -x {2.0 7.0 50 ------- null} h -t 0.7 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 127 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.7 -s 3 -d 4 -p cbr -e 500 -c 1 -i 116 -a 1 -x {1.0 6.0 60 ------- null} h -t 0.7 -s 3 -d 4 -p cbr -e 500 -c 1 -i 116 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.702 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 106 -a 1 -x {2.0 7.0 44 ------- null} + -t 0.702 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 106 -a 1 -x {2.0 7.0 44 ------- null} - -t 0.702 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 106 -a 1 -x {2.0 7.0 44 ------- null} h -t 0.702 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 106 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.702 -s 4 -d 6 -p cbr -e 500 -c 1 -i 102 -a 1 -x {1.0 6.0 51 ------- null} r -t 0.704 -s 1 -d 3 -p cbr -e 500 -c 1 -i 123 -a 1 -x {1.0 6.0 63 ------- null} + -t 0.704 -s 3 -d 4 -p cbr -e 500 -c 1 -i 123 -a 1 -x {1.0 6.0 63 ------- null} - -t 0.704 -s 3 -d 4 -p cbr -e 500 -c 1 -i 118 -a 1 -x {1.0 6.0 61 ------- null} h -t 0.704 -s 3 -d 4 -p cbr -e 500 -c 1 -i 118 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.706 -s 3 -d 4 -p cbr -e 500 -c 1 -i 107 -a 1 -x {1.0 6.0 54 ------- null} + -t 0.706 -s 4 -d 6 -p cbr -e 500 -c 1 -i 107 -a 1 -x {1.0 6.0 54 ------- null} - -t 0.706 -s 4 -d 6 -p cbr -e 500 -c 1 -i 107 -a 1 -x {1.0 6.0 54 ------- null} h -t 0.706 -s 4 -d 6 -p cbr -e 500 -c 1 -i 107 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.708 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 124 -a 1 -x {2.0 7.0 49 ------- null} + -t 0.708 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 124 -a 1 -x {2.0 7.0 49 ------- null} - -t 0.708 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 119 -a 1 -x {2.0 7.0 48 ------- null} h -t 0.708 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 119 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.71 -s 1 -d 3 -p cbr -e 500 -c 1 -i 128 -a 1 -x {1.0 6.0 66 ------- null} - -t 0.71 -s 1 -d 3 -p cbr -e 500 -c 1 -i 128 -a 1 -x {1.0 6.0 66 ------- null} h -t 0.71 -s 1 -d 3 -p cbr -e 500 -c 1 -i 128 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.71 -s 3 -d 4 -p cbr -e 500 -c 1 -i 108 -a 1 -x {1.0 6.0 55 ------- null} + -t 0.71 -s 4 -d 6 -p cbr -e 500 -c 1 -i 108 -a 1 -x {1.0 6.0 55 ------- null} - -t 0.71 -s 4 -d 6 -p cbr -e 500 -c 1 -i 108 -a 1 -x {1.0 6.0 55 ------- null} h -t 0.71 -s 4 -d 6 -p cbr -e 500 -c 1 -i 108 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.714 -s 1 -d 3 -p cbr -e 500 -c 1 -i 125 -a 1 -x {1.0 6.0 64 ------- null} + -t 0.714 -s 3 -d 4 -p cbr -e 500 -c 1 -i 125 -a 1 -x {1.0 6.0 64 ------- null} r -t 0.714 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 103 -a 1 -x {2.0 7.0 43 ------- null} r -t 0.714 -s 4 -d 6 -p cbr -e 500 -c 1 -i 104 -a 1 -x {1.0 6.0 52 ------- null} - -t 0.716 -s 3 -d 4 -p cbr -e 500 -c 1 -i 121 -a 1 -x {1.0 6.0 62 ------- null} h -t 0.716 -s 3 -d 4 -p cbr -e 500 -c 1 -i 121 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.718 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 109 -a 1 -x {2.0 7.0 45 ------- null} + -t 0.718 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 109 -a 1 -x {2.0 7.0 45 ------- null} - -t 0.718 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 109 -a 1 -x {2.0 7.0 45 ------- null} h -t 0.718 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 109 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.718 -s 4 -d 6 -p cbr -e 500 -c 1 -i 105 -a 1 -x {1.0 6.0 53 ------- null} + -t 0.72 -s 1 -d 3 -p cbr -e 500 -c 1 -i 129 -a 1 -x {1.0 6.0 67 ------- null} - -t 0.72 -s 1 -d 3 -p cbr -e 500 -c 1 -i 129 -a 1 -x {1.0 6.0 67 ------- null} h -t 0.72 -s 1 -d 3 -p cbr -e 500 -c 1 -i 129 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.72 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 130 -a 1 -x {2.0 7.0 51 ------- null} - -t 0.72 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 130 -a 1 -x {2.0 7.0 51 ------- null} h -t 0.72 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 130 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.72 -s 3 -d 4 -p cbr -e 500 -c 1 -i 123 -a 1 -x {1.0 6.0 63 ------- null} h -t 0.72 -s 3 -d 4 -p cbr -e 500 -c 1 -i 123 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.722 -s 3 -d 4 -p cbr -e 500 -c 1 -i 110 -a 1 -x {1.0 6.0 56 ------- null} + -t 0.722 -s 4 -d 6 -p cbr -e 500 -c 1 -i 110 -a 1 -x {1.0 6.0 56 ------- null} - -t 0.722 -s 4 -d 6 -p cbr -e 500 -c 1 -i 110 -a 1 -x {1.0 6.0 56 ------- null} h -t 0.722 -s 4 -d 6 -p cbr -e 500 -c 1 -i 110 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.724 -s 1 -d 3 -p cbr -e 500 -c 1 -i 126 -a 1 -x {1.0 6.0 65 ------- null} + -t 0.724 -s 3 -d 4 -p cbr -e 500 -c 1 -i 126 -a 1 -x {1.0 6.0 65 ------- null} - -t 0.724 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 124 -a 1 -x {2.0 7.0 49 ------- null} h -t 0.724 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 124 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.725984 -s 4 -d 3 -p ack -e 40 -c 0 -i 117 -a 0 -x {5.0 0.0 0 ------- null} + -t 0.725984 -s 3 -d 0 -p ack -e 40 -c 0 -i 117 -a 0 -x {5.0 0.0 0 ------- null} - -t 0.725984 -s 3 -d 0 -p ack -e 40 -c 0 -i 117 -a 0 -x {5.0 0.0 0 ------- null} h -t 0.725984 -s 3 -d 0 -p ack -e 40 -c 0 -i 117 -a 0 -x {5.0 0.0 -1 ------- null} r -t 0.726 -s 3 -d 4 -p cbr -e 500 -c 1 -i 111 -a 1 -x {1.0 6.0 57 ------- null} + -t 0.726 -s 4 -d 6 -p cbr -e 500 -c 1 -i 111 -a 1 -x {1.0 6.0 57 ------- null} - -t 0.726 -s 4 -d 6 -p cbr -e 500 -c 1 -i 111 -a 1 -x {1.0 6.0 57 ------- null} h -t 0.726 -s 4 -d 6 -p cbr -e 500 -c 1 -i 111 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.728 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 127 -a 1 -x {2.0 7.0 50 ------- null} + -t 0.728 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 127 -a 1 -x {2.0 7.0 50 ------- null} + -t 0.73 -s 1 -d 3 -p cbr -e 500 -c 1 -i 131 -a 1 -x {1.0 6.0 68 ------- null} - -t 0.73 -s 1 -d 3 -p cbr -e 500 -c 1 -i 131 -a 1 -x {1.0 6.0 68 ------- null} h -t 0.73 -s 1 -d 3 -p cbr -e 500 -c 1 -i 131 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.73 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 106 -a 1 -x {2.0 7.0 44 ------- null} r -t 0.73 -s 4 -d 6 -p cbr -e 500 -c 1 -i 107 -a 1 -x {1.0 6.0 54 ------- null} - -t 0.732 -s 3 -d 4 -p cbr -e 500 -c 1 -i 125 -a 1 -x {1.0 6.0 64 ------- null} h -t 0.732 -s 3 -d 4 -p cbr -e 500 -c 1 -i 125 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.733984 -s 4 -d 3 -p ack -e 40 -c 0 -i 120 -a 0 -x {5.0 0.0 0 ------- null} + -t 0.733984 -s 3 -d 0 -p ack -e 40 -c 0 -i 120 -a 0 -x {5.0 0.0 0 ------- null} - -t 0.733984 -s 3 -d 0 -p ack -e 40 -c 0 -i 120 -a 0 -x {5.0 0.0 0 ------- null} h -t 0.733984 -s 3 -d 0 -p ack -e 40 -c 0 -i 120 -a 0 -x {5.0 0.0 -1 ------- null} r -t 0.734 -s 1 -d 3 -p cbr -e 500 -c 1 -i 128 -a 1 -x {1.0 6.0 66 ------- null} + -t 0.734 -s 3 -d 4 -p cbr -e 500 -c 1 -i 128 -a 1 -x {1.0 6.0 66 ------- null} r -t 0.734 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 112 -a 1 -x {2.0 7.0 46 ------- null} + -t 0.734 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 112 -a 1 -x {2.0 7.0 46 ------- null} - -t 0.734 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 112 -a 1 -x {2.0 7.0 46 ------- null} h -t 0.734 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 112 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.734 -s 4 -d 6 -p cbr -e 500 -c 1 -i 108 -a 1 -x {1.0 6.0 55 ------- null} - -t 0.736 -s 3 -d 4 -p cbr -e 500 -c 1 -i 126 -a 1 -x {1.0 6.0 65 ------- null} h -t 0.736 -s 3 -d 4 -p cbr -e 500 -c 1 -i 126 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.738 -s 3 -d 4 -p cbr -e 500 -c 1 -i 113 -a 1 -x {1.0 6.0 58 ------- null} + -t 0.738 -s 4 -d 6 -p cbr -e 500 -c 1 -i 113 -a 1 -x {1.0 6.0 58 ------- null} - -t 0.738 -s 4 -d 6 -p cbr -e 500 -c 1 -i 113 -a 1 -x {1.0 6.0 58 ------- null} h -t 0.738 -s 4 -d 6 -p cbr -e 500 -c 1 -i 113 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.74 -s 1 -d 3 -p cbr -e 500 -c 1 -i 132 -a 1 -x {1.0 6.0 69 ------- null} - -t 0.74 -s 1 -d 3 -p cbr -e 500 -c 1 -i 132 -a 1 -x {1.0 6.0 69 ------- null} h -t 0.74 -s 1 -d 3 -p cbr -e 500 -c 1 -i 132 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.74 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 133 -a 1 -x {2.0 7.0 52 ------- null} - -t 0.74 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 133 -a 1 -x {2.0 7.0 52 ------- null} h -t 0.74 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 133 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.74 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 127 -a 1 -x {2.0 7.0 50 ------- null} h -t 0.74 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 127 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.741984 -s 4 -d 3 -p ack -e 40 -c 0 -i 122 -a 0 -x {5.0 0.0 0 ------- null} + -t 0.741984 -s 3 -d 0 -p ack -e 40 -c 0 -i 122 -a 0 -x {5.0 0.0 0 ------- null} - -t 0.741984 -s 3 -d 0 -p ack -e 40 -c 0 -i 122 -a 0 -x {5.0 0.0 0 ------- null} h -t 0.741984 -s 3 -d 0 -p ack -e 40 -c 0 -i 122 -a 0 -x {5.0 0.0 -1 ------- null} r -t 0.742 -s 3 -d 4 -p cbr -e 500 -c 1 -i 114 -a 1 -x {1.0 6.0 59 ------- null} + -t 0.742 -s 4 -d 6 -p cbr -e 500 -c 1 -i 114 -a 1 -x {1.0 6.0 59 ------- null} - -t 0.742 -s 4 -d 6 -p cbr -e 500 -c 1 -i 114 -a 1 -x {1.0 6.0 59 ------- null} h -t 0.742 -s 4 -d 6 -p cbr -e 500 -c 1 -i 114 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.744 -s 1 -d 3 -p cbr -e 500 -c 1 -i 129 -a 1 -x {1.0 6.0 67 ------- null} + -t 0.744 -s 3 -d 4 -p cbr -e 500 -c 1 -i 129 -a 1 -x {1.0 6.0 67 ------- null} r -t 0.746 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 109 -a 1 -x {2.0 7.0 45 ------- null} r -t 0.746 -s 4 -d 6 -p cbr -e 500 -c 1 -i 110 -a 1 -x {1.0 6.0 56 ------- null} r -t 0.746048 -s 3 -d 0 -p ack -e 40 -c 0 -i 117 -a 0 -x {5.0 0.0 0 ------- null} + -t 0.746048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 134 -a 0 -x {0.0 5.0 8 ------- null} - -t 0.746048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 134 -a 0 -x {0.0 5.0 8 ------- null} h -t 0.746048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 134 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.748 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 130 -a 1 -x {2.0 7.0 51 ------- null} + -t 0.748 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 130 -a 1 -x {2.0 7.0 51 ------- null} - -t 0.748 -s 3 -d 4 -p cbr -e 500 -c 1 -i 128 -a 1 -x {1.0 6.0 66 ------- null} h -t 0.748 -s 3 -d 4 -p cbr -e 500 -c 1 -i 128 -a 1 -x {1.0 6.0 -1 ------- null} v -t 0.75 sim_annotation 0.75 8 Send Packet_8 + -t 0.75 -s 1 -d 3 -p cbr -e 500 -c 1 -i 135 -a 1 -x {1.0 6.0 70 ------- null} - -t 0.75 -s 1 -d 3 -p cbr -e 500 -c 1 -i 135 -a 1 -x {1.0 6.0 70 ------- null} h -t 0.75 -s 1 -d 3 -p cbr -e 500 -c 1 -i 135 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.75 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 115 -a 1 -x {2.0 7.0 47 ------- null} + -t 0.75 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 115 -a 1 -x {2.0 7.0 47 ------- null} - -t 0.75 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 115 -a 1 -x {2.0 7.0 47 ------- null} h -t 0.75 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 115 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.75 -s 4 -d 6 -p cbr -e 500 -c 1 -i 111 -a 1 -x {1.0 6.0 57 ------- null} - -t 0.752 -s 3 -d 4 -p cbr -e 500 -c 1 -i 129 -a 1 -x {1.0 6.0 67 ------- null} h -t 0.752 -s 3 -d 4 -p cbr -e 500 -c 1 -i 129 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.754 -s 1 -d 3 -p cbr -e 500 -c 1 -i 131 -a 1 -x {1.0 6.0 68 ------- null} + -t 0.754 -s 3 -d 4 -p cbr -e 500 -c 1 -i 131 -a 1 -x {1.0 6.0 68 ------- null} r -t 0.754 -s 3 -d 4 -p cbr -e 500 -c 1 -i 116 -a 1 -x {1.0 6.0 60 ------- null} + -t 0.754 -s 4 -d 6 -p cbr -e 500 -c 1 -i 116 -a 1 -x {1.0 6.0 60 ------- null} - -t 0.754 -s 4 -d 6 -p cbr -e 500 -c 1 -i 116 -a 1 -x {1.0 6.0 60 ------- null} h -t 0.754 -s 4 -d 6 -p cbr -e 500 -c 1 -i 116 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.754048 -s 3 -d 0 -p ack -e 40 -c 0 -i 120 -a 0 -x {5.0 0.0 0 ------- null} - -t 0.756 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 130 -a 1 -x {2.0 7.0 51 ------- null} h -t 0.756 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 130 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.758 -s 3 -d 4 -p cbr -e 500 -c 1 -i 118 -a 1 -x {1.0 6.0 61 ------- null} + -t 0.758 -s 4 -d 6 -p cbr -e 500 -c 1 -i 118 -a 1 -x {1.0 6.0 61 ------- null} - -t 0.758 -s 4 -d 6 -p cbr -e 500 -c 1 -i 118 -a 1 -x {1.0 6.0 61 ------- null} h -t 0.758 -s 4 -d 6 -p cbr -e 500 -c 1 -i 118 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.76 -s 1 -d 3 -p cbr -e 500 -c 1 -i 136 -a 1 -x {1.0 6.0 71 ------- null} - -t 0.76 -s 1 -d 3 -p cbr -e 500 -c 1 -i 136 -a 1 -x {1.0 6.0 71 ------- null} h -t 0.76 -s 1 -d 3 -p cbr -e 500 -c 1 -i 136 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.76 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 137 -a 1 -x {2.0 7.0 53 ------- null} - -t 0.76 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 137 -a 1 -x {2.0 7.0 53 ------- null} h -t 0.76 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 137 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.762 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 112 -a 1 -x {2.0 7.0 46 ------- null} r -t 0.762 -s 4 -d 6 -p cbr -e 500 -c 1 -i 113 -a 1 -x {1.0 6.0 58 ------- null} r -t 0.762048 -s 3 -d 0 -p ack -e 40 -c 0 -i 122 -a 0 -x {5.0 0.0 0 ------- null} r -t 0.764 -s 1 -d 3 -p cbr -e 500 -c 1 -i 132 -a 1 -x {1.0 6.0 69 ------- null} + -t 0.764 -s 3 -d 4 -p cbr -e 500 -c 1 -i 132 -a 1 -x {1.0 6.0 69 ------- null} - -t 0.764 -s 3 -d 4 -p cbr -e 500 -c 1 -i 131 -a 1 -x {1.0 6.0 68 ------- null} h -t 0.764 -s 3 -d 4 -p cbr -e 500 -c 1 -i 131 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.766 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 119 -a 1 -x {2.0 7.0 48 ------- null} + -t 0.766 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 119 -a 1 -x {2.0 7.0 48 ------- null} - -t 0.766 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 119 -a 1 -x {2.0 7.0 48 ------- null} h -t 0.766 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 119 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.766 -s 4 -d 6 -p cbr -e 500 -c 1 -i 114 -a 1 -x {1.0 6.0 59 ------- null} r -t 0.767648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 134 -a 0 -x {0.0 5.0 8 ------- null} + -t 0.767648 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 134 -a 0 -x {0.0 5.0 8 ------- null} r -t 0.768 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 133 -a 1 -x {2.0 7.0 52 ------- null} + -t 0.768 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 133 -a 1 -x {2.0 7.0 52 ------- null} - -t 0.768 -s 3 -d 4 -p cbr -e 500 -c 1 -i 132 -a 1 -x {1.0 6.0 69 ------- null} h -t 0.768 -s 3 -d 4 -p cbr -e 500 -c 1 -i 132 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.77 -s 1 -d 3 -p cbr -e 500 -c 1 -i 138 -a 1 -x {1.0 6.0 72 ------- null} - -t 0.77 -s 1 -d 3 -p cbr -e 500 -c 1 -i 138 -a 1 -x {1.0 6.0 72 ------- null} h -t 0.77 -s 1 -d 3 -p cbr -e 500 -c 1 -i 138 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.77 -s 3 -d 4 -p cbr -e 500 -c 1 -i 121 -a 1 -x {1.0 6.0 62 ------- null} + -t 0.77 -s 4 -d 6 -p cbr -e 500 -c 1 -i 121 -a 1 -x {1.0 6.0 62 ------- null} - -t 0.77 -s 4 -d 6 -p cbr -e 500 -c 1 -i 121 -a 1 -x {1.0 6.0 62 ------- null} h -t 0.77 -s 4 -d 6 -p cbr -e 500 -c 1 -i 121 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.772 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 134 -a 0 -x {0.0 5.0 8 ------- null} h -t 0.772 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 134 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.774 -s 1 -d 3 -p cbr -e 500 -c 1 -i 135 -a 1 -x {1.0 6.0 70 ------- null} + -t 0.774 -s 3 -d 4 -p cbr -e 500 -c 1 -i 135 -a 1 -x {1.0 6.0 70 ------- null} r -t 0.774 -s 3 -d 4 -p cbr -e 500 -c 1 -i 123 -a 1 -x {1.0 6.0 63 ------- null} + -t 0.774 -s 4 -d 6 -p cbr -e 500 -c 1 -i 123 -a 1 -x {1.0 6.0 63 ------- null} - -t 0.774 -s 4 -d 6 -p cbr -e 500 -c 1 -i 123 -a 1 -x {1.0 6.0 63 ------- null} h -t 0.774 -s 4 -d 6 -p cbr -e 500 -c 1 -i 123 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.778 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 115 -a 1 -x {2.0 7.0 47 ------- null} r -t 0.778 -s 4 -d 6 -p cbr -e 500 -c 1 -i 116 -a 1 -x {1.0 6.0 60 ------- null} + -t 0.78 -s 1 -d 3 -p cbr -e 500 -c 1 -i 139 -a 1 -x {1.0 6.0 73 ------- null} - -t 0.78 -s 1 -d 3 -p cbr -e 500 -c 1 -i 139 -a 1 -x {1.0 6.0 73 ------- null} h -t 0.78 -s 1 -d 3 -p cbr -e 500 -c 1 -i 139 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.78 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 140 -a 1 -x {2.0 7.0 54 ------- null} - -t 0.78 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 140 -a 1 -x {2.0 7.0 54 ------- null} h -t 0.78 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 140 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.78 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 133 -a 1 -x {2.0 7.0 52 ------- null} h -t 0.78 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 133 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.782 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 124 -a 1 -x {2.0 7.0 49 ------- null} + -t 0.782 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 124 -a 1 -x {2.0 7.0 49 ------- null} - -t 0.782 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 124 -a 1 -x {2.0 7.0 49 ------- null} h -t 0.782 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 124 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.782 -s 4 -d 6 -p cbr -e 500 -c 1 -i 118 -a 1 -x {1.0 6.0 61 ------- null} r -t 0.784 -s 1 -d 3 -p cbr -e 500 -c 1 -i 136 -a 1 -x {1.0 6.0 71 ------- null} + -t 0.784 -s 3 -d 4 -p cbr -e 500 -c 1 -i 136 -a 1 -x {1.0 6.0 71 ------- null} r -t 0.786 -s 3 -d 4 -p cbr -e 500 -c 1 -i 125 -a 1 -x {1.0 6.0 64 ------- null} + -t 0.786 -s 4 -d 6 -p cbr -e 500 -c 1 -i 125 -a 1 -x {1.0 6.0 64 ------- null} - -t 0.786 -s 4 -d 6 -p cbr -e 500 -c 1 -i 125 -a 1 -x {1.0 6.0 64 ------- null} h -t 0.786 -s 4 -d 6 -p cbr -e 500 -c 1 -i 125 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.788 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 137 -a 1 -x {2.0 7.0 53 ------- null} + -t 0.788 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 137 -a 1 -x {2.0 7.0 53 ------- null} - -t 0.788 -s 3 -d 4 -p cbr -e 500 -c 1 -i 135 -a 1 -x {1.0 6.0 70 ------- null} h -t 0.788 -s 3 -d 4 -p cbr -e 500 -c 1 -i 135 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.79 -s 1 -d 3 -p cbr -e 500 -c 1 -i 141 -a 1 -x {1.0 6.0 74 ------- null} - -t 0.79 -s 1 -d 3 -p cbr -e 500 -c 1 -i 141 -a 1 -x {1.0 6.0 74 ------- null} h -t 0.79 -s 1 -d 3 -p cbr -e 500 -c 1 -i 141 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.79 -s 3 -d 4 -p cbr -e 500 -c 1 -i 126 -a 1 -x {1.0 6.0 65 ------- null} + -t 0.79 -s 4 -d 6 -p cbr -e 500 -c 1 -i 126 -a 1 -x {1.0 6.0 65 ------- null} - -t 0.79 -s 4 -d 6 -p cbr -e 500 -c 1 -i 126 -a 1 -x {1.0 6.0 65 ------- null} h -t 0.79 -s 4 -d 6 -p cbr -e 500 -c 1 -i 126 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.792 -s 3 -d 4 -p cbr -e 500 -c 1 -i 136 -a 1 -x {1.0 6.0 71 ------- null} h -t 0.792 -s 3 -d 4 -p cbr -e 500 -c 1 -i 136 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.794 -s 1 -d 3 -p cbr -e 500 -c 1 -i 138 -a 1 -x {1.0 6.0 72 ------- null} + -t 0.794 -s 3 -d 4 -p cbr -e 500 -c 1 -i 138 -a 1 -x {1.0 6.0 72 ------- null} r -t 0.794 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 119 -a 1 -x {2.0 7.0 48 ------- null} r -t 0.794 -s 4 -d 6 -p cbr -e 500 -c 1 -i 121 -a 1 -x {1.0 6.0 62 ------- null} - -t 0.796 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 137 -a 1 -x {2.0 7.0 53 ------- null} h -t 0.796 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 137 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.798 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 127 -a 1 -x {2.0 7.0 50 ------- null} + -t 0.798 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 127 -a 1 -x {2.0 7.0 50 ------- null} - -t 0.798 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 127 -a 1 -x {2.0 7.0 50 ------- null} h -t 0.798 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 127 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.798 -s 4 -d 6 -p cbr -e 500 -c 1 -i 123 -a 1 -x {1.0 6.0 63 ------- null} + -t 0.8 -s 1 -d 3 -p cbr -e 500 -c 1 -i 142 -a 1 -x {1.0 6.0 75 ------- null} - -t 0.8 -s 1 -d 3 -p cbr -e 500 -c 1 -i 142 -a 1 -x {1.0 6.0 75 ------- null} h -t 0.8 -s 1 -d 3 -p cbr -e 500 -c 1 -i 142 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.8 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 143 -a 1 -x {2.0 7.0 55 ------- null} - -t 0.8 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 143 -a 1 -x {2.0 7.0 55 ------- null} h -t 0.8 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 143 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.802 -s 3 -d 4 -p cbr -e 500 -c 1 -i 128 -a 1 -x {1.0 6.0 66 ------- null} + -t 0.802 -s 4 -d 6 -p cbr -e 500 -c 1 -i 128 -a 1 -x {1.0 6.0 66 ------- null} - -t 0.802 -s 4 -d 6 -p cbr -e 500 -c 1 -i 128 -a 1 -x {1.0 6.0 66 ------- null} h -t 0.802 -s 4 -d 6 -p cbr -e 500 -c 1 -i 128 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.804 -s 1 -d 3 -p cbr -e 500 -c 1 -i 139 -a 1 -x {1.0 6.0 73 ------- null} + -t 0.804 -s 3 -d 4 -p cbr -e 500 -c 1 -i 139 -a 1 -x {1.0 6.0 73 ------- null} - -t 0.804 -s 3 -d 4 -p cbr -e 500 -c 1 -i 138 -a 1 -x {1.0 6.0 72 ------- null} h -t 0.804 -s 3 -d 4 -p cbr -e 500 -c 1 -i 138 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.806 -s 3 -d 4 -p cbr -e 500 -c 1 -i 129 -a 1 -x {1.0 6.0 67 ------- null} + -t 0.806 -s 4 -d 6 -p cbr -e 500 -c 1 -i 129 -a 1 -x {1.0 6.0 67 ------- null} - -t 0.806 -s 4 -d 6 -p cbr -e 500 -c 1 -i 129 -a 1 -x {1.0 6.0 67 ------- null} h -t 0.806 -s 4 -d 6 -p cbr -e 500 -c 1 -i 129 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.808 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 140 -a 1 -x {2.0 7.0 54 ------- null} + -t 0.808 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 140 -a 1 -x {2.0 7.0 54 ------- null} - -t 0.808 -s 3 -d 4 -p cbr -e 500 -c 1 -i 139 -a 1 -x {1.0 6.0 73 ------- null} h -t 0.808 -s 3 -d 4 -p cbr -e 500 -c 1 -i 139 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.81 -s 1 -d 3 -p cbr -e 500 -c 1 -i 144 -a 1 -x {1.0 6.0 76 ------- null} - -t 0.81 -s 1 -d 3 -p cbr -e 500 -c 1 -i 144 -a 1 -x {1.0 6.0 76 ------- null} h -t 0.81 -s 1 -d 3 -p cbr -e 500 -c 1 -i 144 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.81 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 124 -a 1 -x {2.0 7.0 49 ------- null} r -t 0.81 -s 4 -d 6 -p cbr -e 500 -c 1 -i 125 -a 1 -x {1.0 6.0 64 ------- null} - -t 0.812 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 140 -a 1 -x {2.0 7.0 54 ------- null} h -t 0.812 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 140 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.814 -s 1 -d 3 -p cbr -e 500 -c 1 -i 141 -a 1 -x {1.0 6.0 74 ------- null} + -t 0.814 -s 3 -d 4 -p cbr -e 500 -c 1 -i 141 -a 1 -x {1.0 6.0 74 ------- null} r -t 0.814 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 130 -a 1 -x {2.0 7.0 51 ------- null} + -t 0.814 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 130 -a 1 -x {2.0 7.0 51 ------- null} - -t 0.814 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 130 -a 1 -x {2.0 7.0 51 ------- null} h -t 0.814 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 130 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.814 -s 4 -d 6 -p cbr -e 500 -c 1 -i 126 -a 1 -x {1.0 6.0 65 ------- null} r -t 0.818 -s 3 -d 4 -p cbr -e 500 -c 1 -i 131 -a 1 -x {1.0 6.0 68 ------- null} + -t 0.818 -s 4 -d 6 -p cbr -e 500 -c 1 -i 131 -a 1 -x {1.0 6.0 68 ------- null} - -t 0.818 -s 4 -d 6 -p cbr -e 500 -c 1 -i 131 -a 1 -x {1.0 6.0 68 ------- null} h -t 0.818 -s 4 -d 6 -p cbr -e 500 -c 1 -i 131 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.82 -s 1 -d 3 -p cbr -e 500 -c 1 -i 145 -a 1 -x {1.0 6.0 77 ------- null} - -t 0.82 -s 1 -d 3 -p cbr -e 500 -c 1 -i 145 -a 1 -x {1.0 6.0 77 ------- null} h -t 0.82 -s 1 -d 3 -p cbr -e 500 -c 1 -i 145 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.82 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 146 -a 1 -x {2.0 7.0 56 ------- null} - -t 0.82 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 146 -a 1 -x {2.0 7.0 56 ------- null} h -t 0.82 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 146 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.82 -s 3 -d 4 -p cbr -e 500 -c 1 -i 141 -a 1 -x {1.0 6.0 74 ------- null} h -t 0.82 -s 3 -d 4 -p cbr -e 500 -c 1 -i 141 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.822 -s 3 -d 4 -p cbr -e 500 -c 1 -i 132 -a 1 -x {1.0 6.0 69 ------- null} + -t 0.822 -s 4 -d 6 -p cbr -e 500 -c 1 -i 132 -a 1 -x {1.0 6.0 69 ------- null} - -t 0.822 -s 4 -d 6 -p cbr -e 500 -c 1 -i 132 -a 1 -x {1.0 6.0 69 ------- null} h -t 0.822 -s 4 -d 6 -p cbr -e 500 -c 1 -i 132 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.824 -s 1 -d 3 -p cbr -e 500 -c 1 -i 142 -a 1 -x {1.0 6.0 75 ------- null} + -t 0.824 -s 3 -d 4 -p cbr -e 500 -c 1 -i 142 -a 1 -x {1.0 6.0 75 ------- null} - -t 0.824 -s 3 -d 4 -p cbr -e 500 -c 1 -i 142 -a 1 -x {1.0 6.0 75 ------- null} h -t 0.824 -s 3 -d 4 -p cbr -e 500 -c 1 -i 142 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.826 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 127 -a 1 -x {2.0 7.0 50 ------- null} r -t 0.826 -s 4 -d 6 -p cbr -e 500 -c 1 -i 128 -a 1 -x {1.0 6.0 66 ------- null} r -t 0.828 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 143 -a 1 -x {2.0 7.0 55 ------- null} + -t 0.828 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 143 -a 1 -x {2.0 7.0 55 ------- null} - -t 0.828 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 143 -a 1 -x {2.0 7.0 55 ------- null} h -t 0.828 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 143 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.83 -s 1 -d 3 -p cbr -e 500 -c 1 -i 147 -a 1 -x {1.0 6.0 78 ------- null} - -t 0.83 -s 1 -d 3 -p cbr -e 500 -c 1 -i 147 -a 1 -x {1.0 6.0 78 ------- null} h -t 0.83 -s 1 -d 3 -p cbr -e 500 -c 1 -i 147 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.83 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 134 -a 0 -x {0.0 5.0 8 ------- null} + -t 0.83 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 134 -a 0 -x {0.0 5.0 8 ------- null} - -t 0.83 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 134 -a 0 -x {0.0 5.0 8 ------- null} h -t 0.83 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 134 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.83 -s 4 -d 6 -p cbr -e 500 -c 1 -i 129 -a 1 -x {1.0 6.0 67 ------- null} r -t 0.834 -s 1 -d 3 -p cbr -e 500 -c 1 -i 144 -a 1 -x {1.0 6.0 76 ------- null} + -t 0.834 -s 3 -d 4 -p cbr -e 500 -c 1 -i 144 -a 1 -x {1.0 6.0 76 ------- null} - -t 0.836 -s 3 -d 4 -p cbr -e 500 -c 1 -i 144 -a 1 -x {1.0 6.0 76 ------- null} h -t 0.836 -s 3 -d 4 -p cbr -e 500 -c 1 -i 144 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.838 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 133 -a 1 -x {2.0 7.0 52 ------- null} + -t 0.838 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 133 -a 1 -x {2.0 7.0 52 ------- null} - -t 0.838 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 133 -a 1 -x {2.0 7.0 52 ------- null} h -t 0.838 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 133 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.84 -s 1 -d 3 -p cbr -e 500 -c 1 -i 148 -a 1 -x {1.0 6.0 79 ------- null} - -t 0.84 -s 1 -d 3 -p cbr -e 500 -c 1 -i 148 -a 1 -x {1.0 6.0 79 ------- null} h -t 0.84 -s 1 -d 3 -p cbr -e 500 -c 1 -i 148 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.84 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 149 -a 1 -x {2.0 7.0 57 ------- null} - -t 0.84 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 149 -a 1 -x {2.0 7.0 57 ------- null} h -t 0.84 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 149 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.842 -s 3 -d 4 -p cbr -e 500 -c 1 -i 135 -a 1 -x {1.0 6.0 70 ------- null} + -t 0.842 -s 4 -d 6 -p cbr -e 500 -c 1 -i 135 -a 1 -x {1.0 6.0 70 ------- null} - -t 0.842 -s 4 -d 6 -p cbr -e 500 -c 1 -i 135 -a 1 -x {1.0 6.0 70 ------- null} h -t 0.842 -s 4 -d 6 -p cbr -e 500 -c 1 -i 135 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.842 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 130 -a 1 -x {2.0 7.0 51 ------- null} r -t 0.842 -s 4 -d 6 -p cbr -e 500 -c 1 -i 131 -a 1 -x {1.0 6.0 68 ------- null} r -t 0.844 -s 1 -d 3 -p cbr -e 500 -c 1 -i 145 -a 1 -x {1.0 6.0 77 ------- null} + -t 0.844 -s 3 -d 4 -p cbr -e 500 -c 1 -i 145 -a 1 -x {1.0 6.0 77 ------- null} - -t 0.844 -s 3 -d 4 -p cbr -e 500 -c 1 -i 145 -a 1 -x {1.0 6.0 77 ------- null} h -t 0.844 -s 3 -d 4 -p cbr -e 500 -c 1 -i 145 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.846 -s 3 -d 4 -p cbr -e 500 -c 1 -i 136 -a 1 -x {1.0 6.0 71 ------- null} + -t 0.846 -s 4 -d 6 -p cbr -e 500 -c 1 -i 136 -a 1 -x {1.0 6.0 71 ------- null} r -t 0.846 -s 4 -d 6 -p cbr -e 500 -c 1 -i 132 -a 1 -x {1.0 6.0 69 ------- null} - -t 0.846 -s 4 -d 6 -p cbr -e 500 -c 1 -i 136 -a 1 -x {1.0 6.0 71 ------- null} h -t 0.846 -s 4 -d 6 -p cbr -e 500 -c 1 -i 136 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.848 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 146 -a 1 -x {2.0 7.0 56 ------- null} + -t 0.848 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 146 -a 1 -x {2.0 7.0 56 ------- null} - -t 0.848 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 146 -a 1 -x {2.0 7.0 56 ------- null} h -t 0.848 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 146 -a 1 -x {2.0 7.0 -1 ------- null} v -t 0.84999999999999998 sim_annotation 0.84999999999999998 9 Ack_0 + -t 0.85 -s 1 -d 3 -p cbr -e 500 -c 1 -i 150 -a 1 -x {1.0 6.0 80 ------- null} - -t 0.85 -s 1 -d 3 -p cbr -e 500 -c 1 -i 150 -a 1 -x {1.0 6.0 80 ------- null} h -t 0.85 -s 1 -d 3 -p cbr -e 500 -c 1 -i 150 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.8516 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 134 -a 0 -x {0.0 5.0 8 ------- null} + -t 0.8516 -s 5 -d 4 -p ack -e 40 -c 0 -i 151 -a 0 -x {5.0 0.0 0 ------- null} - -t 0.8516 -s 5 -d 4 -p ack -e 40 -c 0 -i 151 -a 0 -x {5.0 0.0 0 ------- null} h -t 0.8516 -s 5 -d 4 -p ack -e 40 -c 0 -i 151 -a 0 -x {5.0 0.0 -1 ------- null} r -t 0.854 -s 1 -d 3 -p cbr -e 500 -c 1 -i 147 -a 1 -x {1.0 6.0 78 ------- null} + -t 0.854 -s 3 -d 4 -p cbr -e 500 -c 1 -i 147 -a 1 -x {1.0 6.0 78 ------- null} r -t 0.854 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 137 -a 1 -x {2.0 7.0 53 ------- null} + -t 0.854 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 137 -a 1 -x {2.0 7.0 53 ------- null} - -t 0.854 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 137 -a 1 -x {2.0 7.0 53 ------- null} h -t 0.854 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 137 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.856 -s 3 -d 4 -p cbr -e 500 -c 1 -i 147 -a 1 -x {1.0 6.0 78 ------- null} h -t 0.856 -s 3 -d 4 -p cbr -e 500 -c 1 -i 147 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.858 -s 3 -d 4 -p cbr -e 500 -c 1 -i 138 -a 1 -x {1.0 6.0 72 ------- null} + -t 0.858 -s 4 -d 6 -p cbr -e 500 -c 1 -i 138 -a 1 -x {1.0 6.0 72 ------- null} - -t 0.858 -s 4 -d 6 -p cbr -e 500 -c 1 -i 138 -a 1 -x {1.0 6.0 72 ------- null} h -t 0.858 -s 4 -d 6 -p cbr -e 500 -c 1 -i 138 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.86 -s 1 -d 3 -p cbr -e 500 -c 1 -i 152 -a 1 -x {1.0 6.0 81 ------- null} - -t 0.86 -s 1 -d 3 -p cbr -e 500 -c 1 -i 152 -a 1 -x {1.0 6.0 81 ------- null} h -t 0.86 -s 1 -d 3 -p cbr -e 500 -c 1 -i 152 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.86 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 153 -a 1 -x {2.0 7.0 58 ------- null} - -t 0.86 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 153 -a 1 -x {2.0 7.0 58 ------- null} h -t 0.86 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 153 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.862 -s 3 -d 4 -p cbr -e 500 -c 1 -i 139 -a 1 -x {1.0 6.0 73 ------- null} + -t 0.862 -s 4 -d 6 -p cbr -e 500 -c 1 -i 139 -a 1 -x {1.0 6.0 73 ------- null} - -t 0.862 -s 4 -d 6 -p cbr -e 500 -c 1 -i 139 -a 1 -x {1.0 6.0 73 ------- null} h -t 0.862 -s 4 -d 6 -p cbr -e 500 -c 1 -i 139 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.864 -s 1 -d 3 -p cbr -e 500 -c 1 -i 148 -a 1 -x {1.0 6.0 79 ------- null} + -t 0.864 -s 3 -d 4 -p cbr -e 500 -c 1 -i 148 -a 1 -x {1.0 6.0 79 ------- null} - -t 0.864 -s 3 -d 4 -p cbr -e 500 -c 1 -i 148 -a 1 -x {1.0 6.0 79 ------- null} h -t 0.864 -s 3 -d 4 -p cbr -e 500 -c 1 -i 148 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.866 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 133 -a 1 -x {2.0 7.0 52 ------- null} r -t 0.866 -s 4 -d 6 -p cbr -e 500 -c 1 -i 135 -a 1 -x {1.0 6.0 70 ------- null} r -t 0.868 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 149 -a 1 -x {2.0 7.0 57 ------- null} + -t 0.868 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 149 -a 1 -x {2.0 7.0 57 ------- null} - -t 0.868 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 149 -a 1 -x {2.0 7.0 57 ------- null} h -t 0.868 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 149 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.87 -s 1 -d 3 -p cbr -e 500 -c 1 -i 154 -a 1 -x {1.0 6.0 82 ------- null} - -t 0.87 -s 1 -d 3 -p cbr -e 500 -c 1 -i 154 -a 1 -x {1.0 6.0 82 ------- null} h -t 0.87 -s 1 -d 3 -p cbr -e 500 -c 1 -i 154 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.87 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 140 -a 1 -x {2.0 7.0 54 ------- null} + -t 0.87 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 140 -a 1 -x {2.0 7.0 54 ------- null} - -t 0.87 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 140 -a 1 -x {2.0 7.0 54 ------- null} h -t 0.87 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 140 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.87 -s 4 -d 6 -p cbr -e 500 -c 1 -i 136 -a 1 -x {1.0 6.0 71 ------- null} r -t 0.871664 -s 5 -d 4 -p ack -e 40 -c 0 -i 151 -a 0 -x {5.0 0.0 0 ------- null} + -t 0.871664 -s 4 -d 3 -p ack -e 40 -c 0 -i 151 -a 0 -x {5.0 0.0 0 ------- null} - -t 0.871664 -s 4 -d 3 -p ack -e 40 -c 0 -i 151 -a 0 -x {5.0 0.0 0 ------- null} h -t 0.871664 -s 4 -d 3 -p ack -e 40 -c 0 -i 151 -a 0 -x {5.0 0.0 -1 ------- null} r -t 0.874 -s 1 -d 3 -p cbr -e 500 -c 1 -i 150 -a 1 -x {1.0 6.0 80 ------- null} + -t 0.874 -s 3 -d 4 -p cbr -e 500 -c 1 -i 150 -a 1 -x {1.0 6.0 80 ------- null} r -t 0.874 -s 3 -d 4 -p cbr -e 500 -c 1 -i 141 -a 1 -x {1.0 6.0 74 ------- null} + -t 0.874 -s 4 -d 6 -p cbr -e 500 -c 1 -i 141 -a 1 -x {1.0 6.0 74 ------- null} - -t 0.874 -s 4 -d 6 -p cbr -e 500 -c 1 -i 141 -a 1 -x {1.0 6.0 74 ------- null} h -t 0.874 -s 4 -d 6 -p cbr -e 500 -c 1 -i 141 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.876 -s 3 -d 4 -p cbr -e 500 -c 1 -i 150 -a 1 -x {1.0 6.0 80 ------- null} h -t 0.876 -s 3 -d 4 -p cbr -e 500 -c 1 -i 150 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.878 -s 3 -d 4 -p cbr -e 500 -c 1 -i 142 -a 1 -x {1.0 6.0 75 ------- null} + -t 0.878 -s 4 -d 6 -p cbr -e 500 -c 1 -i 142 -a 1 -x {1.0 6.0 75 ------- null} - -t 0.878 -s 4 -d 6 -p cbr -e 500 -c 1 -i 142 -a 1 -x {1.0 6.0 75 ------- null} h -t 0.878 -s 4 -d 6 -p cbr -e 500 -c 1 -i 142 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.88 -s 1 -d 3 -p cbr -e 500 -c 1 -i 155 -a 1 -x {1.0 6.0 83 ------- null} - -t 0.88 -s 1 -d 3 -p cbr -e 500 -c 1 -i 155 -a 1 -x {1.0 6.0 83 ------- null} h -t 0.88 -s 1 -d 3 -p cbr -e 500 -c 1 -i 155 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.88 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 156 -a 1 -x {2.0 7.0 59 ------- null} - -t 0.88 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 156 -a 1 -x {2.0 7.0 59 ------- null} h -t 0.88 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 156 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.882 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 137 -a 1 -x {2.0 7.0 53 ------- null} r -t 0.882 -s 4 -d 6 -p cbr -e 500 -c 1 -i 138 -a 1 -x {1.0 6.0 72 ------- null} r -t 0.884 -s 1 -d 3 -p cbr -e 500 -c 1 -i 152 -a 1 -x {1.0 6.0 81 ------- null} + -t 0.884 -s 3 -d 4 -p cbr -e 500 -c 1 -i 152 -a 1 -x {1.0 6.0 81 ------- null} - -t 0.884 -s 3 -d 4 -p cbr -e 500 -c 1 -i 152 -a 1 -x {1.0 6.0 81 ------- null} h -t 0.884 -s 3 -d 4 -p cbr -e 500 -c 1 -i 152 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.886 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 143 -a 1 -x {2.0 7.0 55 ------- null} + -t 0.886 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 143 -a 1 -x {2.0 7.0 55 ------- null} - -t 0.886 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 143 -a 1 -x {2.0 7.0 55 ------- null} h -t 0.886 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 143 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.886 -s 4 -d 6 -p cbr -e 500 -c 1 -i 139 -a 1 -x {1.0 6.0 73 ------- null} r -t 0.888 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 153 -a 1 -x {2.0 7.0 58 ------- null} + -t 0.888 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 153 -a 1 -x {2.0 7.0 58 ------- null} - -t 0.888 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 153 -a 1 -x {2.0 7.0 58 ------- null} h -t 0.888 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 153 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.89 -s 1 -d 3 -p cbr -e 500 -c 1 -i 157 -a 1 -x {1.0 6.0 84 ------- null} - -t 0.89 -s 1 -d 3 -p cbr -e 500 -c 1 -i 157 -a 1 -x {1.0 6.0 84 ------- null} h -t 0.89 -s 1 -d 3 -p cbr -e 500 -c 1 -i 157 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.89 -s 3 -d 4 -p cbr -e 500 -c 1 -i 144 -a 1 -x {1.0 6.0 76 ------- null} + -t 0.89 -s 4 -d 6 -p cbr -e 500 -c 1 -i 144 -a 1 -x {1.0 6.0 76 ------- null} - -t 0.89 -s 4 -d 6 -p cbr -e 500 -c 1 -i 144 -a 1 -x {1.0 6.0 76 ------- null} h -t 0.89 -s 4 -d 6 -p cbr -e 500 -c 1 -i 144 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.894 -s 1 -d 3 -p cbr -e 500 -c 1 -i 154 -a 1 -x {1.0 6.0 82 ------- null} + -t 0.894 -s 3 -d 4 -p cbr -e 500 -c 1 -i 154 -a 1 -x {1.0 6.0 82 ------- null} - -t 0.896 -s 3 -d 4 -p cbr -e 500 -c 1 -i 154 -a 1 -x {1.0 6.0 82 ------- null} h -t 0.896 -s 3 -d 4 -p cbr -e 500 -c 1 -i 154 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.898 -s 3 -d 4 -p cbr -e 500 -c 1 -i 145 -a 1 -x {1.0 6.0 77 ------- null} + -t 0.898 -s 4 -d 6 -p cbr -e 500 -c 1 -i 145 -a 1 -x {1.0 6.0 77 ------- null} - -t 0.898 -s 4 -d 6 -p cbr -e 500 -c 1 -i 145 -a 1 -x {1.0 6.0 77 ------- null} h -t 0.898 -s 4 -d 6 -p cbr -e 500 -c 1 -i 145 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.898 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 140 -a 1 -x {2.0 7.0 54 ------- null} r -t 0.898 -s 4 -d 6 -p cbr -e 500 -c 1 -i 141 -a 1 -x {1.0 6.0 74 ------- null} + -t 0.9 -s 1 -d 3 -p cbr -e 500 -c 1 -i 158 -a 1 -x {1.0 6.0 85 ------- null} - -t 0.9 -s 1 -d 3 -p cbr -e 500 -c 1 -i 158 -a 1 -x {1.0 6.0 85 ------- null} h -t 0.9 -s 1 -d 3 -p cbr -e 500 -c 1 -i 158 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.9 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 159 -a 1 -x {2.0 7.0 60 ------- null} - -t 0.9 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 159 -a 1 -x {2.0 7.0 60 ------- null} h -t 0.9 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 159 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.902 -s 4 -d 6 -p cbr -e 500 -c 1 -i 142 -a 1 -x {1.0 6.0 75 ------- null} r -t 0.904 -s 1 -d 3 -p cbr -e 500 -c 1 -i 155 -a 1 -x {1.0 6.0 83 ------- null} + -t 0.904 -s 3 -d 4 -p cbr -e 500 -c 1 -i 155 -a 1 -x {1.0 6.0 83 ------- null} - -t 0.904 -s 3 -d 4 -p cbr -e 500 -c 1 -i 155 -a 1 -x {1.0 6.0 83 ------- null} h -t 0.904 -s 3 -d 4 -p cbr -e 500 -c 1 -i 155 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.906 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 146 -a 1 -x {2.0 7.0 56 ------- null} + -t 0.906 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 146 -a 1 -x {2.0 7.0 56 ------- null} - -t 0.906 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 146 -a 1 -x {2.0 7.0 56 ------- null} h -t 0.906 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 146 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.908 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 156 -a 1 -x {2.0 7.0 59 ------- null} + -t 0.908 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 156 -a 1 -x {2.0 7.0 59 ------- null} - -t 0.908 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 156 -a 1 -x {2.0 7.0 59 ------- null} h -t 0.908 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 156 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.91 -s 1 -d 3 -p cbr -e 500 -c 1 -i 160 -a 1 -x {1.0 6.0 86 ------- null} - -t 0.91 -s 1 -d 3 -p cbr -e 500 -c 1 -i 160 -a 1 -x {1.0 6.0 86 ------- null} h -t 0.91 -s 1 -d 3 -p cbr -e 500 -c 1 -i 160 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.91 -s 3 -d 4 -p cbr -e 500 -c 1 -i 147 -a 1 -x {1.0 6.0 78 ------- null} + -t 0.91 -s 4 -d 6 -p cbr -e 500 -c 1 -i 147 -a 1 -x {1.0 6.0 78 ------- null} - -t 0.91 -s 4 -d 6 -p cbr -e 500 -c 1 -i 147 -a 1 -x {1.0 6.0 78 ------- null} h -t 0.91 -s 4 -d 6 -p cbr -e 500 -c 1 -i 147 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.914 -s 1 -d 3 -p cbr -e 500 -c 1 -i 157 -a 1 -x {1.0 6.0 84 ------- null} + -t 0.914 -s 3 -d 4 -p cbr -e 500 -c 1 -i 157 -a 1 -x {1.0 6.0 84 ------- null} r -t 0.914 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 143 -a 1 -x {2.0 7.0 55 ------- null} r -t 0.914 -s 4 -d 6 -p cbr -e 500 -c 1 -i 144 -a 1 -x {1.0 6.0 76 ------- null} - -t 0.916 -s 3 -d 4 -p cbr -e 500 -c 1 -i 157 -a 1 -x {1.0 6.0 84 ------- null} h -t 0.916 -s 3 -d 4 -p cbr -e 500 -c 1 -i 157 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.918 -s 3 -d 4 -p cbr -e 500 -c 1 -i 148 -a 1 -x {1.0 6.0 79 ------- null} + -t 0.918 -s 4 -d 6 -p cbr -e 500 -c 1 -i 148 -a 1 -x {1.0 6.0 79 ------- null} - -t 0.918 -s 4 -d 6 -p cbr -e 500 -c 1 -i 148 -a 1 -x {1.0 6.0 79 ------- null} h -t 0.918 -s 4 -d 6 -p cbr -e 500 -c 1 -i 148 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.92 -s 1 -d 3 -p cbr -e 500 -c 1 -i 161 -a 1 -x {1.0 6.0 87 ------- null} - -t 0.92 -s 1 -d 3 -p cbr -e 500 -c 1 -i 161 -a 1 -x {1.0 6.0 87 ------- null} h -t 0.92 -s 1 -d 3 -p cbr -e 500 -c 1 -i 161 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.92 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 162 -a 1 -x {2.0 7.0 61 ------- null} - -t 0.92 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 162 -a 1 -x {2.0 7.0 61 ------- null} h -t 0.92 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 162 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.921984 -s 4 -d 3 -p ack -e 40 -c 0 -i 151 -a 0 -x {5.0 0.0 0 ------- null} + -t 0.921984 -s 3 -d 0 -p ack -e 40 -c 0 -i 151 -a 0 -x {5.0 0.0 0 ------- null} - -t 0.921984 -s 3 -d 0 -p ack -e 40 -c 0 -i 151 -a 0 -x {5.0 0.0 0 ------- null} h -t 0.921984 -s 3 -d 0 -p ack -e 40 -c 0 -i 151 -a 0 -x {5.0 0.0 -1 ------- null} r -t 0.922 -s 4 -d 6 -p cbr -e 500 -c 1 -i 145 -a 1 -x {1.0 6.0 77 ------- null} r -t 0.924 -s 1 -d 3 -p cbr -e 500 -c 1 -i 158 -a 1 -x {1.0 6.0 85 ------- null} + -t 0.924 -s 3 -d 4 -p cbr -e 500 -c 1 -i 158 -a 1 -x {1.0 6.0 85 ------- null} - -t 0.924 -s 3 -d 4 -p cbr -e 500 -c 1 -i 158 -a 1 -x {1.0 6.0 85 ------- null} h -t 0.924 -s 3 -d 4 -p cbr -e 500 -c 1 -i 158 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.926 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 149 -a 1 -x {2.0 7.0 57 ------- null} + -t 0.926 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 149 -a 1 -x {2.0 7.0 57 ------- null} - -t 0.926 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 149 -a 1 -x {2.0 7.0 57 ------- null} h -t 0.926 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 149 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.928 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 159 -a 1 -x {2.0 7.0 60 ------- null} + -t 0.928 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 159 -a 1 -x {2.0 7.0 60 ------- null} - -t 0.928 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 159 -a 1 -x {2.0 7.0 60 ------- null} h -t 0.928 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 159 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.93 -s 1 -d 3 -p cbr -e 500 -c 1 -i 163 -a 1 -x {1.0 6.0 88 ------- null} - -t 0.93 -s 1 -d 3 -p cbr -e 500 -c 1 -i 163 -a 1 -x {1.0 6.0 88 ------- null} h -t 0.93 -s 1 -d 3 -p cbr -e 500 -c 1 -i 163 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.93 -s 3 -d 4 -p cbr -e 500 -c 1 -i 150 -a 1 -x {1.0 6.0 80 ------- null} + -t 0.93 -s 4 -d 6 -p cbr -e 500 -c 1 -i 150 -a 1 -x {1.0 6.0 80 ------- null} - -t 0.93 -s 4 -d 6 -p cbr -e 500 -c 1 -i 150 -a 1 -x {1.0 6.0 80 ------- null} h -t 0.93 -s 4 -d 6 -p cbr -e 500 -c 1 -i 150 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.934 -s 1 -d 3 -p cbr -e 500 -c 1 -i 160 -a 1 -x {1.0 6.0 86 ------- null} + -t 0.934 -s 3 -d 4 -p cbr -e 500 -c 1 -i 160 -a 1 -x {1.0 6.0 86 ------- null} r -t 0.934 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 146 -a 1 -x {2.0 7.0 56 ------- null} r -t 0.934 -s 4 -d 6 -p cbr -e 500 -c 1 -i 147 -a 1 -x {1.0 6.0 78 ------- null} - -t 0.936 -s 3 -d 4 -p cbr -e 500 -c 1 -i 160 -a 1 -x {1.0 6.0 86 ------- null} h -t 0.936 -s 3 -d 4 -p cbr -e 500 -c 1 -i 160 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.938 -s 3 -d 4 -p cbr -e 500 -c 1 -i 152 -a 1 -x {1.0 6.0 81 ------- null} + -t 0.938 -s 4 -d 6 -p cbr -e 500 -c 1 -i 152 -a 1 -x {1.0 6.0 81 ------- null} - -t 0.938 -s 4 -d 6 -p cbr -e 500 -c 1 -i 152 -a 1 -x {1.0 6.0 81 ------- null} h -t 0.938 -s 4 -d 6 -p cbr -e 500 -c 1 -i 152 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.94 -s 1 -d 3 -p cbr -e 500 -c 1 -i 164 -a 1 -x {1.0 6.0 89 ------- null} - -t 0.94 -s 1 -d 3 -p cbr -e 500 -c 1 -i 164 -a 1 -x {1.0 6.0 89 ------- null} h -t 0.94 -s 1 -d 3 -p cbr -e 500 -c 1 -i 164 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.94 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 165 -a 1 -x {2.0 7.0 62 ------- null} - -t 0.94 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 165 -a 1 -x {2.0 7.0 62 ------- null} h -t 0.94 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 165 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.942 -s 4 -d 6 -p cbr -e 500 -c 1 -i 148 -a 1 -x {1.0 6.0 79 ------- null} r -t 0.942048 -s 3 -d 0 -p ack -e 40 -c 0 -i 151 -a 0 -x {5.0 0.0 0 ------- null} + -t 0.942048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 166 -a 0 -x {0.0 5.0 1 ------- null} - -t 0.942048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 166 -a 0 -x {0.0 5.0 1 ------- null} h -t 0.942048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 166 -a 0 -x {0.0 5.0 -1 ------- null} + -t 0.942048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 167 -a 0 -x {0.0 5.0 2 ------- null} + -t 0.942048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 168 -a 0 -x {0.0 5.0 3 ------- null} + -t 0.942048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 169 -a 0 -x {0.0 5.0 4 ------- null} + -t 0.942048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 170 -a 0 -x {0.0 5.0 5 ------- null} + -t 0.942048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 171 -a 0 -x {0.0 5.0 6 ------- null} + -t 0.942048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 172 -a 0 -x {0.0 5.0 7 ------- null} + -t 0.942048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 173 -a 0 -x {0.0 5.0 8 ------- null} - -t 0.943648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 167 -a 0 -x {0.0 5.0 2 ------- null} h -t 0.943648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 167 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.944 -s 1 -d 3 -p cbr -e 500 -c 1 -i 161 -a 1 -x {1.0 6.0 87 ------- null} + -t 0.944 -s 3 -d 4 -p cbr -e 500 -c 1 -i 161 -a 1 -x {1.0 6.0 87 ------- null} - -t 0.944 -s 3 -d 4 -p cbr -e 500 -c 1 -i 161 -a 1 -x {1.0 6.0 87 ------- null} h -t 0.944 -s 3 -d 4 -p cbr -e 500 -c 1 -i 161 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.945248 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 168 -a 0 -x {0.0 5.0 3 ------- null} h -t 0.945248 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 168 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.946 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 153 -a 1 -x {2.0 7.0 58 ------- null} + -t 0.946 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 153 -a 1 -x {2.0 7.0 58 ------- null} - -t 0.946 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 153 -a 1 -x {2.0 7.0 58 ------- null} h -t 0.946 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 153 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.946848 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 169 -a 0 -x {0.0 5.0 4 ------- null} h -t 0.946848 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 169 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.948 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 162 -a 1 -x {2.0 7.0 61 ------- null} + -t 0.948 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 162 -a 1 -x {2.0 7.0 61 ------- null} - -t 0.948 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 162 -a 1 -x {2.0 7.0 61 ------- null} h -t 0.948 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 162 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.948448 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 170 -a 0 -x {0.0 5.0 5 ------- null} h -t 0.948448 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 170 -a 0 -x {0.0 5.0 -1 ------- null} v -t 0.94999999999999996 sim_annotation 0.94999999999999996 10 Send Packet_1 to 8 + -t 0.95 -s 1 -d 3 -p cbr -e 500 -c 1 -i 174 -a 1 -x {1.0 6.0 90 ------- null} - -t 0.95 -s 1 -d 3 -p cbr -e 500 -c 1 -i 174 -a 1 -x {1.0 6.0 90 ------- null} h -t 0.95 -s 1 -d 3 -p cbr -e 500 -c 1 -i 174 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.95 -s 3 -d 4 -p cbr -e 500 -c 1 -i 154 -a 1 -x {1.0 6.0 82 ------- null} + -t 0.95 -s 4 -d 6 -p cbr -e 500 -c 1 -i 154 -a 1 -x {1.0 6.0 82 ------- null} - -t 0.95 -s 4 -d 6 -p cbr -e 500 -c 1 -i 154 -a 1 -x {1.0 6.0 82 ------- null} h -t 0.95 -s 4 -d 6 -p cbr -e 500 -c 1 -i 154 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.950048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 171 -a 0 -x {0.0 5.0 6 ------- null} h -t 0.950048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 171 -a 0 -x {0.0 5.0 -1 ------- null} - -t 0.951648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 172 -a 0 -x {0.0 5.0 7 ------- null} h -t 0.951648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 172 -a 0 -x {0.0 5.0 -1 ------- null} - -t 0.953248 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 173 -a 0 -x {0.0 5.0 8 ------- null} h -t 0.953248 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 173 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.954 -s 1 -d 3 -p cbr -e 500 -c 1 -i 163 -a 1 -x {1.0 6.0 88 ------- null} + -t 0.954 -s 3 -d 4 -p cbr -e 500 -c 1 -i 163 -a 1 -x {1.0 6.0 88 ------- null} r -t 0.954 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 149 -a 1 -x {2.0 7.0 57 ------- null} r -t 0.954 -s 4 -d 6 -p cbr -e 500 -c 1 -i 150 -a 1 -x {1.0 6.0 80 ------- null} - -t 0.956 -s 3 -d 4 -p cbr -e 500 -c 1 -i 163 -a 1 -x {1.0 6.0 88 ------- null} h -t 0.956 -s 3 -d 4 -p cbr -e 500 -c 1 -i 163 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.958 -s 3 -d 4 -p cbr -e 500 -c 1 -i 155 -a 1 -x {1.0 6.0 83 ------- null} + -t 0.958 -s 4 -d 6 -p cbr -e 500 -c 1 -i 155 -a 1 -x {1.0 6.0 83 ------- null} - -t 0.958 -s 4 -d 6 -p cbr -e 500 -c 1 -i 155 -a 1 -x {1.0 6.0 83 ------- null} h -t 0.958 -s 4 -d 6 -p cbr -e 500 -c 1 -i 155 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.96 -s 1 -d 3 -p cbr -e 500 -c 1 -i 175 -a 1 -x {1.0 6.0 91 ------- null} - -t 0.96 -s 1 -d 3 -p cbr -e 500 -c 1 -i 175 -a 1 -x {1.0 6.0 91 ------- null} h -t 0.96 -s 1 -d 3 -p cbr -e 500 -c 1 -i 175 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.96 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 176 -a 1 -x {2.0 7.0 63 ------- null} - -t 0.96 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 176 -a 1 -x {2.0 7.0 63 ------- null} h -t 0.96 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 176 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.962 -s 4 -d 6 -p cbr -e 500 -c 1 -i 152 -a 1 -x {1.0 6.0 81 ------- null} r -t 0.963648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 166 -a 0 -x {0.0 5.0 1 ------- null} + -t 0.963648 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 166 -a 0 -x {0.0 5.0 1 ------- null} - -t 0.963648 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 166 -a 0 -x {0.0 5.0 1 ------- null} h -t 0.963648 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 166 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.964 -s 1 -d 3 -p cbr -e 500 -c 1 -i 164 -a 1 -x {1.0 6.0 89 ------- null} + -t 0.964 -s 3 -d 4 -p cbr -e 500 -c 1 -i 164 -a 1 -x {1.0 6.0 89 ------- null} r -t 0.965248 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 167 -a 0 -x {0.0 5.0 2 ------- null} + -t 0.965248 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 167 -a 0 -x {0.0 5.0 2 ------- null} r -t 0.966 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 156 -a 1 -x {2.0 7.0 59 ------- null} + -t 0.966 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 156 -a 1 -x {2.0 7.0 59 ------- null} - -t 0.966 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 156 -a 1 -x {2.0 7.0 59 ------- null} h -t 0.966 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 156 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.966848 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 168 -a 0 -x {0.0 5.0 3 ------- null} + -t 0.966848 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 168 -a 0 -x {0.0 5.0 3 ------- null} r -t 0.968 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 165 -a 1 -x {2.0 7.0 62 ------- null} + -t 0.968 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 165 -a 1 -x {2.0 7.0 62 ------- null} r -t 0.968448 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 169 -a 0 -x {0.0 5.0 4 ------- null} + -t 0.968448 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 169 -a 0 -x {0.0 5.0 4 ------- null} + -t 0.97 -s 1 -d 3 -p cbr -e 500 -c 1 -i 177 -a 1 -x {1.0 6.0 92 ------- null} - -t 0.97 -s 1 -d 3 -p cbr -e 500 -c 1 -i 177 -a 1 -x {1.0 6.0 92 ------- null} h -t 0.97 -s 1 -d 3 -p cbr -e 500 -c 1 -i 177 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.97 -s 3 -d 4 -p cbr -e 500 -c 1 -i 157 -a 1 -x {1.0 6.0 84 ------- null} + -t 0.97 -s 4 -d 6 -p cbr -e 500 -c 1 -i 157 -a 1 -x {1.0 6.0 84 ------- null} - -t 0.97 -s 4 -d 6 -p cbr -e 500 -c 1 -i 157 -a 1 -x {1.0 6.0 84 ------- null} h -t 0.97 -s 4 -d 6 -p cbr -e 500 -c 1 -i 157 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.970048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 170 -a 0 -x {0.0 5.0 5 ------- null} + -t 0.970048 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 170 -a 0 -x {0.0 5.0 5 ------- null} - -t 0.971648 -s 3 -d 4 -p cbr -e 500 -c 1 -i 164 -a 1 -x {1.0 6.0 89 ------- null} h -t 0.971648 -s 3 -d 4 -p cbr -e 500 -c 1 -i 164 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.971648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 171 -a 0 -x {0.0 5.0 6 ------- null} + -t 0.971648 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 171 -a 0 -x {0.0 5.0 6 ------- null} r -t 0.973248 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 172 -a 0 -x {0.0 5.0 7 ------- null} + -t 0.973248 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 172 -a 0 -x {0.0 5.0 7 ------- null} r -t 0.974 -s 1 -d 3 -p cbr -e 500 -c 1 -i 174 -a 1 -x {1.0 6.0 90 ------- null} + -t 0.974 -s 3 -d 4 -p cbr -e 500 -c 1 -i 174 -a 1 -x {1.0 6.0 90 ------- null} r -t 0.974 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 153 -a 1 -x {2.0 7.0 58 ------- null} r -t 0.974 -s 4 -d 6 -p cbr -e 500 -c 1 -i 154 -a 1 -x {1.0 6.0 82 ------- null} r -t 0.974848 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 173 -a 0 -x {0.0 5.0 8 ------- null} + -t 0.974848 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 173 -a 0 -x {0.0 5.0 8 ------- null} - -t 0.975648 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 167 -a 0 -x {0.0 5.0 2 ------- null} h -t 0.975648 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 167 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.978 -s 3 -d 4 -p cbr -e 500 -c 1 -i 158 -a 1 -x {1.0 6.0 85 ------- null} + -t 0.978 -s 4 -d 6 -p cbr -e 500 -c 1 -i 158 -a 1 -x {1.0 6.0 85 ------- null} - -t 0.978 -s 4 -d 6 -p cbr -e 500 -c 1 -i 158 -a 1 -x {1.0 6.0 85 ------- null} h -t 0.978 -s 4 -d 6 -p cbr -e 500 -c 1 -i 158 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.98 -s 1 -d 3 -p cbr -e 500 -c 1 -i 178 -a 1 -x {1.0 6.0 93 ------- null} - -t 0.98 -s 1 -d 3 -p cbr -e 500 -c 1 -i 178 -a 1 -x {1.0 6.0 93 ------- null} h -t 0.98 -s 1 -d 3 -p cbr -e 500 -c 1 -i 178 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.98 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 179 -a 1 -x {2.0 7.0 64 ------- null} - -t 0.98 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 179 -a 1 -x {2.0 7.0 64 ------- null} h -t 0.98 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 179 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.982 -s 4 -d 6 -p cbr -e 500 -c 1 -i 155 -a 1 -x {1.0 6.0 83 ------- null} - -t 0.983648 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 168 -a 0 -x {0.0 5.0 3 ------- null} h -t 0.983648 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 168 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.984 -s 1 -d 3 -p cbr -e 500 -c 1 -i 175 -a 1 -x {1.0 6.0 91 ------- null} + -t 0.984 -s 3 -d 4 -p cbr -e 500 -c 1 -i 175 -a 1 -x {1.0 6.0 91 ------- null} r -t 0.986 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 159 -a 1 -x {2.0 7.0 60 ------- null} + -t 0.986 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 159 -a 1 -x {2.0 7.0 60 ------- null} - -t 0.986 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 159 -a 1 -x {2.0 7.0 60 ------- null} h -t 0.986 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 159 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.988 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 176 -a 1 -x {2.0 7.0 63 ------- null} + -t 0.988 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 176 -a 1 -x {2.0 7.0 63 ------- null} + -t 0.99 -s 1 -d 3 -p cbr -e 500 -c 1 -i 180 -a 1 -x {1.0 6.0 94 ------- null} - -t 0.99 -s 1 -d 3 -p cbr -e 500 -c 1 -i 180 -a 1 -x {1.0 6.0 94 ------- null} h -t 0.99 -s 1 -d 3 -p cbr -e 500 -c 1 -i 180 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.99 -s 3 -d 4 -p cbr -e 500 -c 1 -i 160 -a 1 -x {1.0 6.0 86 ------- null} + -t 0.99 -s 4 -d 6 -p cbr -e 500 -c 1 -i 160 -a 1 -x {1.0 6.0 86 ------- null} - -t 0.99 -s 4 -d 6 -p cbr -e 500 -c 1 -i 160 -a 1 -x {1.0 6.0 86 ------- null} h -t 0.99 -s 4 -d 6 -p cbr -e 500 -c 1 -i 160 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.991648 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 165 -a 1 -x {2.0 7.0 62 ------- null} h -t 0.991648 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 165 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.994 -s 1 -d 3 -p cbr -e 500 -c 1 -i 177 -a 1 -x {1.0 6.0 92 ------- null} + -t 0.994 -s 3 -d 4 -p cbr -e 500 -c 1 -i 177 -a 1 -x {1.0 6.0 92 ------- null} r -t 0.994 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 156 -a 1 -x {2.0 7.0 59 ------- null} r -t 0.994 -s 4 -d 6 -p cbr -e 500 -c 1 -i 157 -a 1 -x {1.0 6.0 84 ------- null} r -t 0.998 -s 3 -d 4 -p cbr -e 500 -c 1 -i 161 -a 1 -x {1.0 6.0 87 ------- null} + -t 0.998 -s 4 -d 6 -p cbr -e 500 -c 1 -i 161 -a 1 -x {1.0 6.0 87 ------- null} - -t 0.998 -s 4 -d 6 -p cbr -e 500 -c 1 -i 161 -a 1 -x {1.0 6.0 87 ------- null} h -t 0.998 -s 4 -d 6 -p cbr -e 500 -c 1 -i 161 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.999648 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 169 -a 0 -x {0.0 5.0 4 ------- null} h -t 0.999648 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 169 -a 0 -x {0.0 5.0 -1 ------- null} + -t 1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 181 -a 1 -x {2.0 7.0 65 ------- null} - -t 1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 181 -a 1 -x {2.0 7.0 65 ------- null} h -t 1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 181 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 182 -a 1 -x {1.0 6.0 95 ------- null} - -t 1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 182 -a 1 -x {1.0 6.0 95 ------- null} h -t 1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 182 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.002 -s 4 -d 6 -p cbr -e 500 -c 1 -i 158 -a 1 -x {1.0 6.0 85 ------- null} r -t 1.004 -s 1 -d 3 -p cbr -e 500 -c 1 -i 178 -a 1 -x {1.0 6.0 93 ------- null} + -t 1.004 -s 3 -d 4 -p cbr -e 500 -c 1 -i 178 -a 1 -x {1.0 6.0 93 ------- null} r -t 1.006 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 162 -a 1 -x {2.0 7.0 61 ------- null} + -t 1.006 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 162 -a 1 -x {2.0 7.0 61 ------- null} - -t 1.006 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 162 -a 1 -x {2.0 7.0 61 ------- null} h -t 1.006 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 162 -a 1 -x {2.0 7.0 -1 ------- null} - -t 1.00765 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 170 -a 0 -x {0.0 5.0 5 ------- null} h -t 1.00765 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 170 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.008 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 179 -a 1 -x {2.0 7.0 64 ------- null} + -t 1.008 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 179 -a 1 -x {2.0 7.0 64 ------- null} r -t 1.01 -s 3 -d 4 -p cbr -e 500 -c 1 -i 163 -a 1 -x {1.0 6.0 88 ------- null} + -t 1.01 -s 4 -d 6 -p cbr -e 500 -c 1 -i 163 -a 1 -x {1.0 6.0 88 ------- null} - -t 1.01 -s 4 -d 6 -p cbr -e 500 -c 1 -i 163 -a 1 -x {1.0 6.0 88 ------- null} h -t 1.01 -s 4 -d 6 -p cbr -e 500 -c 1 -i 163 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.01 -s 1 -d 3 -p cbr -e 500 -c 1 -i 183 -a 1 -x {1.0 6.0 96 ------- null} - -t 1.01 -s 1 -d 3 -p cbr -e 500 -c 1 -i 183 -a 1 -x {1.0 6.0 96 ------- null} h -t 1.01 -s 1 -d 3 -p cbr -e 500 -c 1 -i 183 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.014 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 159 -a 1 -x {2.0 7.0 60 ------- null} r -t 1.014 -s 1 -d 3 -p cbr -e 500 -c 1 -i 180 -a 1 -x {1.0 6.0 94 ------- null} + -t 1.014 -s 3 -d 4 -p cbr -e 500 -c 1 -i 180 -a 1 -x {1.0 6.0 94 ------- null} d -t 1.014 -s 3 -d 4 -p cbr -e 500 -c 1 -i 180 -a 1 -x {1.0 6.0 94 ------- null} r -t 1.014 -s 4 -d 6 -p cbr -e 500 -c 1 -i 160 -a 1 -x {1.0 6.0 86 ------- null} - -t 1.01565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 171 -a 0 -x {0.0 5.0 6 ------- null} h -t 1.01565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 171 -a 0 -x {0.0 5.0 -1 ------- null} + -t 1.02 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 184 -a 1 -x {2.0 7.0 66 ------- null} - -t 1.02 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 184 -a 1 -x {2.0 7.0 66 ------- null} h -t 1.02 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 184 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.02 -s 1 -d 3 -p cbr -e 500 -c 1 -i 185 -a 1 -x {1.0 6.0 97 ------- null} - -t 1.02 -s 1 -d 3 -p cbr -e 500 -c 1 -i 185 -a 1 -x {1.0 6.0 97 ------- null} h -t 1.02 -s 1 -d 3 -p cbr -e 500 -c 1 -i 185 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.02165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 166 -a 0 -x {0.0 5.0 1 ------- null} + -t 1.02165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 166 -a 0 -x {0.0 5.0 1 ------- null} - -t 1.02165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 166 -a 0 -x {0.0 5.0 1 ------- null} h -t 1.02165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 166 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.022 -s 4 -d 6 -p cbr -e 500 -c 1 -i 161 -a 1 -x {1.0 6.0 87 ------- null} - -t 1.02365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 172 -a 0 -x {0.0 5.0 7 ------- null} h -t 1.02365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 172 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.024 -s 1 -d 3 -p cbr -e 500 -c 1 -i 182 -a 1 -x {1.0 6.0 95 ------- null} + -t 1.024 -s 3 -d 4 -p cbr -e 500 -c 1 -i 182 -a 1 -x {1.0 6.0 95 ------- null} r -t 1.02565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 164 -a 1 -x {1.0 6.0 89 ------- null} + -t 1.02565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 164 -a 1 -x {1.0 6.0 89 ------- null} - -t 1.02565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 164 -a 1 -x {1.0 6.0 89 ------- null} h -t 1.02565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 164 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.028 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 181 -a 1 -x {2.0 7.0 65 ------- null} + -t 1.028 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 181 -a 1 -x {2.0 7.0 65 ------- null} + -t 1.03 -s 1 -d 3 -p cbr -e 500 -c 1 -i 186 -a 1 -x {1.0 6.0 98 ------- null} - -t 1.03 -s 1 -d 3 -p cbr -e 500 -c 1 -i 186 -a 1 -x {1.0 6.0 98 ------- null} h -t 1.03 -s 1 -d 3 -p cbr -e 500 -c 1 -i 186 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.03165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 174 -a 1 -x {1.0 6.0 90 ------- null} h -t 1.03165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 174 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.03365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 167 -a 0 -x {0.0 5.0 2 ------- null} + -t 1.03365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 167 -a 0 -x {0.0 5.0 2 ------- null} - -t 1.03365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 167 -a 0 -x {0.0 5.0 2 ------- null} h -t 1.03365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 167 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.034 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 162 -a 1 -x {2.0 7.0 61 ------- null} r -t 1.034 -s 4 -d 6 -p cbr -e 500 -c 1 -i 163 -a 1 -x {1.0 6.0 88 ------- null} r -t 1.034 -s 1 -d 3 -p cbr -e 500 -c 1 -i 183 -a 1 -x {1.0 6.0 96 ------- null} + -t 1.034 -s 3 -d 4 -p cbr -e 500 -c 1 -i 183 -a 1 -x {1.0 6.0 96 ------- null} - -t 1.03565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 173 -a 0 -x {0.0 5.0 8 ------- null} h -t 1.03565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 173 -a 0 -x {0.0 5.0 -1 ------- null} v -t 1.04 sim_annotation 1.04 11 Ack_1 to 8 + -t 1.04 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 187 -a 1 -x {2.0 7.0 67 ------- null} - -t 1.04 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 187 -a 1 -x {2.0 7.0 67 ------- null} h -t 1.04 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 187 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.04 -s 1 -d 3 -p cbr -e 500 -c 1 -i 188 -a 1 -x {1.0 6.0 99 ------- null} - -t 1.04 -s 1 -d 3 -p cbr -e 500 -c 1 -i 188 -a 1 -x {1.0 6.0 99 ------- null} h -t 1.04 -s 1 -d 3 -p cbr -e 500 -c 1 -i 188 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.04165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 168 -a 0 -x {0.0 5.0 3 ------- null} + -t 1.04165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 168 -a 0 -x {0.0 5.0 3 ------- null} - -t 1.04165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 168 -a 0 -x {0.0 5.0 3 ------- null} h -t 1.04165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 168 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.04325 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 166 -a 0 -x {0.0 5.0 1 ------- null} + -t 1.04325 -s 5 -d 4 -p ack -e 40 -c 0 -i 189 -a 0 -x {5.0 0.0 1 ------- null} - -t 1.04325 -s 5 -d 4 -p ack -e 40 -c 0 -i 189 -a 0 -x {5.0 0.0 1 ------- null} h -t 1.04325 -s 5 -d 4 -p ack -e 40 -c 0 -i 189 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.04365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 175 -a 1 -x {1.0 6.0 91 ------- null} h -t 1.04365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 175 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.044 -s 1 -d 3 -p cbr -e 500 -c 1 -i 185 -a 1 -x {1.0 6.0 97 ------- null} + -t 1.044 -s 3 -d 4 -p cbr -e 500 -c 1 -i 185 -a 1 -x {1.0 6.0 97 ------- null} - -t 1.04765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 176 -a 1 -x {2.0 7.0 63 ------- null} h -t 1.04765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 176 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.048 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 184 -a 1 -x {2.0 7.0 66 ------- null} + -t 1.048 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 184 -a 1 -x {2.0 7.0 66 ------- null} r -t 1.04965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 165 -a 1 -x {2.0 7.0 62 ------- null} + -t 1.04965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 165 -a 1 -x {2.0 7.0 62 ------- null} - -t 1.04965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 165 -a 1 -x {2.0 7.0 62 ------- null} h -t 1.04965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 165 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.04965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 164 -a 1 -x {1.0 6.0 89 ------- null} + -t 1.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 190 -a 1 -x {1.0 6.0 100 ------- null} - -t 1.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 190 -a 1 -x {1.0 6.0 100 ------- null} h -t 1.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 190 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.054 -s 1 -d 3 -p cbr -e 500 -c 1 -i 186 -a 1 -x {1.0 6.0 98 ------- null} + -t 1.054 -s 3 -d 4 -p cbr -e 500 -c 1 -i 186 -a 1 -x {1.0 6.0 98 ------- null} r -t 1.05525 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 167 -a 0 -x {0.0 5.0 2 ------- null} + -t 1.05525 -s 5 -d 4 -p ack -e 40 -c 0 -i 191 -a 0 -x {5.0 0.0 2 ------- null} - -t 1.05525 -s 5 -d 4 -p ack -e 40 -c 0 -i 191 -a 0 -x {5.0 0.0 2 ------- null} h -t 1.05525 -s 5 -d 4 -p ack -e 40 -c 0 -i 191 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.05565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 177 -a 1 -x {1.0 6.0 92 ------- null} h -t 1.05565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 177 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.05765 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 169 -a 0 -x {0.0 5.0 4 ------- null} + -t 1.05765 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 169 -a 0 -x {0.0 5.0 4 ------- null} - -t 1.05765 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 169 -a 0 -x {0.0 5.0 4 ------- null} h -t 1.05765 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 169 -a 0 -x {0.0 5.0 -1 ------- null} - -t 1.05965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 178 -a 1 -x {1.0 6.0 93 ------- null} h -t 1.05965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 178 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.06 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 192 -a 1 -x {2.0 7.0 68 ------- null} - -t 1.06 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 192 -a 1 -x {2.0 7.0 68 ------- null} h -t 1.06 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 192 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 193 -a 1 -x {1.0 6.0 101 ------- null} - -t 1.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 193 -a 1 -x {1.0 6.0 101 ------- null} h -t 1.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 193 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.06325 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 168 -a 0 -x {0.0 5.0 3 ------- null} + -t 1.06325 -s 5 -d 4 -p ack -e 40 -c 0 -i 194 -a 0 -x {5.0 0.0 3 ------- null} - -t 1.06325 -s 5 -d 4 -p ack -e 40 -c 0 -i 194 -a 0 -x {5.0 0.0 3 ------- null} h -t 1.06325 -s 5 -d 4 -p ack -e 40 -c 0 -i 194 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.06331 -s 5 -d 4 -p ack -e 40 -c 0 -i 189 -a 0 -x {5.0 0.0 1 ------- null} + -t 1.06331 -s 4 -d 3 -p ack -e 40 -c 0 -i 189 -a 0 -x {5.0 0.0 1 ------- null} - -t 1.06331 -s 4 -d 3 -p ack -e 40 -c 0 -i 189 -a 0 -x {5.0 0.0 1 ------- null} h -t 1.06331 -s 4 -d 3 -p ack -e 40 -c 0 -i 189 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.06365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 179 -a 1 -x {2.0 7.0 64 ------- null} h -t 1.06365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 179 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.064 -s 1 -d 3 -p cbr -e 500 -c 1 -i 188 -a 1 -x {1.0 6.0 99 ------- null} + -t 1.064 -s 3 -d 4 -p cbr -e 500 -c 1 -i 188 -a 1 -x {1.0 6.0 99 ------- null} r -t 1.06565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 170 -a 0 -x {0.0 5.0 5 ------- null} + -t 1.06565 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 170 -a 0 -x {0.0 5.0 5 ------- null} - -t 1.06565 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 170 -a 0 -x {0.0 5.0 5 ------- null} h -t 1.06565 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 170 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.068 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 187 -a 1 -x {2.0 7.0 67 ------- null} + -t 1.068 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 187 -a 1 -x {2.0 7.0 67 ------- null} + -t 1.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 195 -a 1 -x {1.0 6.0 102 ------- null} - -t 1.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 195 -a 1 -x {1.0 6.0 102 ------- null} h -t 1.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 195 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.07165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 182 -a 1 -x {1.0 6.0 95 ------- null} h -t 1.07165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 182 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.07365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 171 -a 0 -x {0.0 5.0 6 ------- null} + -t 1.07365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 171 -a 0 -x {0.0 5.0 6 ------- null} - -t 1.07365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 171 -a 0 -x {0.0 5.0 6 ------- null} h -t 1.07365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 171 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.074 -s 1 -d 3 -p cbr -e 500 -c 1 -i 190 -a 1 -x {1.0 6.0 100 ------- null} + -t 1.074 -s 3 -d 4 -p cbr -e 500 -c 1 -i 190 -a 1 -x {1.0 6.0 100 ------- null} r -t 1.07531 -s 5 -d 4 -p ack -e 40 -c 0 -i 191 -a 0 -x {5.0 0.0 2 ------- null} + -t 1.07531 -s 4 -d 3 -p ack -e 40 -c 0 -i 191 -a 0 -x {5.0 0.0 2 ------- null} - -t 1.07531 -s 4 -d 3 -p ack -e 40 -c 0 -i 191 -a 0 -x {5.0 0.0 2 ------- null} h -t 1.07531 -s 4 -d 3 -p ack -e 40 -c 0 -i 191 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.07565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 181 -a 1 -x {2.0 7.0 65 ------- null} h -t 1.07565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 181 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.07765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 165 -a 1 -x {2.0 7.0 62 ------- null} r -t 1.07925 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 169 -a 0 -x {0.0 5.0 4 ------- null} + -t 1.07925 -s 5 -d 4 -p ack -e 40 -c 0 -i 196 -a 0 -x {5.0 0.0 4 ------- null} - -t 1.07925 -s 5 -d 4 -p ack -e 40 -c 0 -i 196 -a 0 -x {5.0 0.0 4 ------- null} h -t 1.07925 -s 5 -d 4 -p ack -e 40 -c 0 -i 196 -a 0 -x {5.0 0.0 -1 ------- null} + -t 1.08 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 197 -a 1 -x {2.0 7.0 69 ------- null} - -t 1.08 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 197 -a 1 -x {2.0 7.0 69 ------- null} h -t 1.08 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 197 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 198 -a 1 -x {1.0 6.0 103 ------- null} - -t 1.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 198 -a 1 -x {1.0 6.0 103 ------- null} h -t 1.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 198 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.08165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 172 -a 0 -x {0.0 5.0 7 ------- null} + -t 1.08165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 172 -a 0 -x {0.0 5.0 7 ------- null} - -t 1.08165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 172 -a 0 -x {0.0 5.0 7 ------- null} h -t 1.08165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 172 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.08331 -s 5 -d 4 -p ack -e 40 -c 0 -i 194 -a 0 -x {5.0 0.0 3 ------- null} + -t 1.08331 -s 4 -d 3 -p ack -e 40 -c 0 -i 194 -a 0 -x {5.0 0.0 3 ------- null} - -t 1.08331 -s 4 -d 3 -p ack -e 40 -c 0 -i 194 -a 0 -x {5.0 0.0 3 ------- null} h -t 1.08331 -s 4 -d 3 -p ack -e 40 -c 0 -i 194 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.08365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 183 -a 1 -x {1.0 6.0 96 ------- null} h -t 1.08365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 183 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.084 -s 1 -d 3 -p cbr -e 500 -c 1 -i 193 -a 1 -x {1.0 6.0 101 ------- null} + -t 1.084 -s 3 -d 4 -p cbr -e 500 -c 1 -i 193 -a 1 -x {1.0 6.0 101 ------- null} r -t 1.08565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 174 -a 1 -x {1.0 6.0 90 ------- null} + -t 1.08565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 174 -a 1 -x {1.0 6.0 90 ------- null} - -t 1.08565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 174 -a 1 -x {1.0 6.0 90 ------- null} h -t 1.08565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 174 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.08725 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 170 -a 0 -x {0.0 5.0 5 ------- null} + -t 1.08725 -s 5 -d 4 -p ack -e 40 -c 0 -i 199 -a 0 -x {5.0 0.0 5 ------- null} - -t 1.08725 -s 5 -d 4 -p ack -e 40 -c 0 -i 199 -a 0 -x {5.0 0.0 5 ------- null} h -t 1.08725 -s 5 -d 4 -p ack -e 40 -c 0 -i 199 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.08765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 185 -a 1 -x {1.0 6.0 97 ------- null} h -t 1.08765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 185 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.088 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 192 -a 1 -x {2.0 7.0 68 ------- null} + -t 1.088 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 192 -a 1 -x {2.0 7.0 68 ------- null} + -t 1.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 200 -a 1 -x {1.0 6.0 104 ------- null} - -t 1.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 200 -a 1 -x {1.0 6.0 104 ------- null} h -t 1.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 200 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.09165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 184 -a 1 -x {2.0 7.0 66 ------- null} h -t 1.09165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 184 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.09365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 173 -a 0 -x {0.0 5.0 8 ------- null} + -t 1.09365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 173 -a 0 -x {0.0 5.0 8 ------- null} - -t 1.09365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 173 -a 0 -x {0.0 5.0 8 ------- null} h -t 1.09365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 173 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.094 -s 1 -d 3 -p cbr -e 500 -c 1 -i 195 -a 1 -x {1.0 6.0 102 ------- null} + -t 1.094 -s 3 -d 4 -p cbr -e 500 -c 1 -i 195 -a 1 -x {1.0 6.0 102 ------- null} r -t 1.09525 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 171 -a 0 -x {0.0 5.0 6 ------- null} + -t 1.09525 -s 5 -d 4 -p ack -e 40 -c 0 -i 201 -a 0 -x {5.0 0.0 6 ------- null} - -t 1.09525 -s 5 -d 4 -p ack -e 40 -c 0 -i 201 -a 0 -x {5.0 0.0 6 ------- null} h -t 1.09525 -s 5 -d 4 -p ack -e 40 -c 0 -i 201 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.09765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 175 -a 1 -x {1.0 6.0 91 ------- null} + -t 1.09765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 175 -a 1 -x {1.0 6.0 91 ------- null} - -t 1.09765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 175 -a 1 -x {1.0 6.0 91 ------- null} h -t 1.09765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 175 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.09931 -s 5 -d 4 -p ack -e 40 -c 0 -i 196 -a 0 -x {5.0 0.0 4 ------- null} + -t 1.09931 -s 4 -d 3 -p ack -e 40 -c 0 -i 196 -a 0 -x {5.0 0.0 4 ------- null} - -t 1.09931 -s 4 -d 3 -p ack -e 40 -c 0 -i 196 -a 0 -x {5.0 0.0 4 ------- null} h -t 1.09931 -s 4 -d 3 -p ack -e 40 -c 0 -i 196 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.09965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 186 -a 1 -x {1.0 6.0 98 ------- null} h -t 1.09965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 186 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 202 -a 1 -x {2.0 7.0 70 ------- null} - -t 1.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 202 -a 1 -x {2.0 7.0 70 ------- null} h -t 1.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 202 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 203 -a 1 -x {1.0 6.0 105 ------- null} - -t 1.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 203 -a 1 -x {1.0 6.0 105 ------- null} h -t 1.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 203 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.10325 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 172 -a 0 -x {0.0 5.0 7 ------- null} + -t 1.10325 -s 5 -d 4 -p ack -e 40 -c 0 -i 204 -a 0 -x {5.0 0.0 7 ------- null} - -t 1.10325 -s 5 -d 4 -p ack -e 40 -c 0 -i 204 -a 0 -x {5.0 0.0 7 ------- null} h -t 1.10325 -s 5 -d 4 -p ack -e 40 -c 0 -i 204 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.10365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 188 -a 1 -x {1.0 6.0 99 ------- null} h -t 1.10365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 188 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.104 -s 1 -d 3 -p cbr -e 500 -c 1 -i 198 -a 1 -x {1.0 6.0 103 ------- null} + -t 1.104 -s 3 -d 4 -p cbr -e 500 -c 1 -i 198 -a 1 -x {1.0 6.0 103 ------- null} r -t 1.10565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 176 -a 1 -x {2.0 7.0 63 ------- null} + -t 1.10565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 176 -a 1 -x {2.0 7.0 63 ------- null} - -t 1.10565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 176 -a 1 -x {2.0 7.0 63 ------- null} h -t 1.10565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 176 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.10731 -s 5 -d 4 -p ack -e 40 -c 0 -i 199 -a 0 -x {5.0 0.0 5 ------- null} + -t 1.10731 -s 4 -d 3 -p ack -e 40 -c 0 -i 199 -a 0 -x {5.0 0.0 5 ------- null} - -t 1.10731 -s 4 -d 3 -p ack -e 40 -c 0 -i 199 -a 0 -x {5.0 0.0 5 ------- null} h -t 1.10731 -s 4 -d 3 -p ack -e 40 -c 0 -i 199 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.10765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 187 -a 1 -x {2.0 7.0 67 ------- null} h -t 1.10765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 187 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.108 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 197 -a 1 -x {2.0 7.0 69 ------- null} + -t 1.108 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 197 -a 1 -x {2.0 7.0 69 ------- null} r -t 1.10965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 177 -a 1 -x {1.0 6.0 92 ------- null} + -t 1.10965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 177 -a 1 -x {1.0 6.0 92 ------- null} - -t 1.10965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 177 -a 1 -x {1.0 6.0 92 ------- null} h -t 1.10965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 177 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.10965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 174 -a 1 -x {1.0 6.0 90 ------- null} + -t 1.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 205 -a 1 -x {1.0 6.0 106 ------- null} - -t 1.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 205 -a 1 -x {1.0 6.0 106 ------- null} h -t 1.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 205 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.11363 -s 4 -d 3 -p ack -e 40 -c 0 -i 189 -a 0 -x {5.0 0.0 1 ------- null} + -t 1.11363 -s 3 -d 0 -p ack -e 40 -c 0 -i 189 -a 0 -x {5.0 0.0 1 ------- null} - -t 1.11363 -s 3 -d 0 -p ack -e 40 -c 0 -i 189 -a 0 -x {5.0 0.0 1 ------- null} h -t 1.11363 -s 3 -d 0 -p ack -e 40 -c 0 -i 189 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.11365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 178 -a 1 -x {1.0 6.0 93 ------- null} + -t 1.11365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 178 -a 1 -x {1.0 6.0 93 ------- null} - -t 1.11365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 178 -a 1 -x {1.0 6.0 93 ------- null} h -t 1.11365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 178 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.114 -s 1 -d 3 -p cbr -e 500 -c 1 -i 200 -a 1 -x {1.0 6.0 104 ------- null} + -t 1.114 -s 3 -d 4 -p cbr -e 500 -c 1 -i 200 -a 1 -x {1.0 6.0 104 ------- null} r -t 1.11525 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 173 -a 0 -x {0.0 5.0 8 ------- null} + -t 1.11525 -s 5 -d 4 -p ack -e 40 -c 0 -i 206 -a 0 -x {5.0 0.0 8 ------- null} - -t 1.11525 -s 5 -d 4 -p ack -e 40 -c 0 -i 206 -a 0 -x {5.0 0.0 8 ------- null} h -t 1.11525 -s 5 -d 4 -p ack -e 40 -c 0 -i 206 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.11531 -s 5 -d 4 -p ack -e 40 -c 0 -i 201 -a 0 -x {5.0 0.0 6 ------- null} + -t 1.11531 -s 4 -d 3 -p ack -e 40 -c 0 -i 201 -a 0 -x {5.0 0.0 6 ------- null} - -t 1.11531 -s 4 -d 3 -p ack -e 40 -c 0 -i 201 -a 0 -x {5.0 0.0 6 ------- null} h -t 1.11531 -s 4 -d 3 -p ack -e 40 -c 0 -i 201 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.11565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 190 -a 1 -x {1.0 6.0 100 ------- null} h -t 1.11565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 190 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.11965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 193 -a 1 -x {1.0 6.0 101 ------- null} h -t 1.11965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 193 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 207 -a 1 -x {2.0 7.0 71 ------- null} - -t 1.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 207 -a 1 -x {2.0 7.0 71 ------- null} h -t 1.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 207 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 208 -a 1 -x {1.0 6.0 107 ------- null} - -t 1.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 208 -a 1 -x {1.0 6.0 107 ------- null} h -t 1.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 208 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.12165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 179 -a 1 -x {2.0 7.0 64 ------- null} + -t 1.12165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 179 -a 1 -x {2.0 7.0 64 ------- null} - -t 1.12165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 179 -a 1 -x {2.0 7.0 64 ------- null} h -t 1.12165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 179 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.12165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 175 -a 1 -x {1.0 6.0 91 ------- null} r -t 1.12331 -s 5 -d 4 -p ack -e 40 -c 0 -i 204 -a 0 -x {5.0 0.0 7 ------- null} + -t 1.12331 -s 4 -d 3 -p ack -e 40 -c 0 -i 204 -a 0 -x {5.0 0.0 7 ------- null} - -t 1.12331 -s 4 -d 3 -p ack -e 40 -c 0 -i 204 -a 0 -x {5.0 0.0 7 ------- null} h -t 1.12331 -s 4 -d 3 -p ack -e 40 -c 0 -i 204 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.12365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 192 -a 1 -x {2.0 7.0 68 ------- null} h -t 1.12365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 192 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.124 -s 1 -d 3 -p cbr -e 500 -c 1 -i 203 -a 1 -x {1.0 6.0 105 ------- null} + -t 1.124 -s 3 -d 4 -p cbr -e 500 -c 1 -i 203 -a 1 -x {1.0 6.0 105 ------- null} r -t 1.12563 -s 4 -d 3 -p ack -e 40 -c 0 -i 191 -a 0 -x {5.0 0.0 2 ------- null} + -t 1.12563 -s 3 -d 0 -p ack -e 40 -c 0 -i 191 -a 0 -x {5.0 0.0 2 ------- null} - -t 1.12563 -s 3 -d 0 -p ack -e 40 -c 0 -i 191 -a 0 -x {5.0 0.0 2 ------- null} h -t 1.12563 -s 3 -d 0 -p ack -e 40 -c 0 -i 191 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.12565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 182 -a 1 -x {1.0 6.0 95 ------- null} + -t 1.12565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 182 -a 1 -x {1.0 6.0 95 ------- null} - -t 1.12565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 182 -a 1 -x {1.0 6.0 95 ------- null} h -t 1.12565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 182 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.128 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 202 -a 1 -x {2.0 7.0 70 ------- null} + -t 1.128 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 202 -a 1 -x {2.0 7.0 70 ------- null} + -t 1.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 209 -a 1 -x {1.0 6.0 108 ------- null} - -t 1.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 209 -a 1 -x {1.0 6.0 108 ------- null} h -t 1.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 209 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.13165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 195 -a 1 -x {1.0 6.0 102 ------- null} h -t 1.13165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 195 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.13363 -s 4 -d 3 -p ack -e 40 -c 0 -i 194 -a 0 -x {5.0 0.0 3 ------- null} + -t 1.13363 -s 3 -d 0 -p ack -e 40 -c 0 -i 194 -a 0 -x {5.0 0.0 3 ------- null} - -t 1.13363 -s 3 -d 0 -p ack -e 40 -c 0 -i 194 -a 0 -x {5.0 0.0 3 ------- null} h -t 1.13363 -s 3 -d 0 -p ack -e 40 -c 0 -i 194 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.13365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 181 -a 1 -x {2.0 7.0 65 ------- null} + -t 1.13365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 181 -a 1 -x {2.0 7.0 65 ------- null} - -t 1.13365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 181 -a 1 -x {2.0 7.0 65 ------- null} h -t 1.13365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 181 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.13365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 176 -a 1 -x {2.0 7.0 63 ------- null} r -t 1.13365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 177 -a 1 -x {1.0 6.0 92 ------- null} r -t 1.1337 -s 3 -d 0 -p ack -e 40 -c 0 -i 189 -a 0 -x {5.0 0.0 1 ------- null} + -t 1.1337 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 210 -a 0 -x {0.0 5.0 9 ------- null} - -t 1.1337 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 210 -a 0 -x {0.0 5.0 9 ------- null} h -t 1.1337 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 210 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.134 -s 1 -d 3 -p cbr -e 500 -c 1 -i 205 -a 1 -x {1.0 6.0 106 ------- null} + -t 1.134 -s 3 -d 4 -p cbr -e 500 -c 1 -i 205 -a 1 -x {1.0 6.0 106 ------- null} r -t 1.13531 -s 5 -d 4 -p ack -e 40 -c 0 -i 206 -a 0 -x {5.0 0.0 8 ------- null} + -t 1.13531 -s 4 -d 3 -p ack -e 40 -c 0 -i 206 -a 0 -x {5.0 0.0 8 ------- null} - -t 1.13531 -s 4 -d 3 -p ack -e 40 -c 0 -i 206 -a 0 -x {5.0 0.0 8 ------- null} h -t 1.13531 -s 4 -d 3 -p ack -e 40 -c 0 -i 206 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.13565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 198 -a 1 -x {1.0 6.0 103 ------- null} h -t 1.13565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 198 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.13765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 183 -a 1 -x {1.0 6.0 96 ------- null} + -t 1.13765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 183 -a 1 -x {1.0 6.0 96 ------- null} - -t 1.13765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 183 -a 1 -x {1.0 6.0 96 ------- null} h -t 1.13765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 183 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.13765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 178 -a 1 -x {1.0 6.0 93 ------- null} - -t 1.13965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 197 -a 1 -x {2.0 7.0 69 ------- null} h -t 1.13965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 197 -a 1 -x {2.0 7.0 -1 ------- null} v -t 1.1399999999999999 sim_annotation 1.1399999999999999 12 Send Packet_9 to 16 + -t 1.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 211 -a 1 -x {2.0 7.0 72 ------- null} - -t 1.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 211 -a 1 -x {2.0 7.0 72 ------- null} h -t 1.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 211 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 212 -a 1 -x {1.0 6.0 109 ------- null} - -t 1.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 212 -a 1 -x {1.0 6.0 109 ------- null} h -t 1.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 212 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.14165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 185 -a 1 -x {1.0 6.0 97 ------- null} + -t 1.14165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 185 -a 1 -x {1.0 6.0 97 ------- null} - -t 1.14165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 185 -a 1 -x {1.0 6.0 97 ------- null} h -t 1.14165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 185 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.144 -s 1 -d 3 -p cbr -e 500 -c 1 -i 208 -a 1 -x {1.0 6.0 107 ------- null} + -t 1.144 -s 3 -d 4 -p cbr -e 500 -c 1 -i 208 -a 1 -x {1.0 6.0 107 ------- null} r -t 1.1457 -s 3 -d 0 -p ack -e 40 -c 0 -i 191 -a 0 -x {5.0 0.0 2 ------- null} + -t 1.1457 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 213 -a 0 -x {0.0 5.0 10 ------- null} - -t 1.1457 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 213 -a 0 -x {0.0 5.0 10 ------- null} h -t 1.1457 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 213 -a 0 -x {0.0 5.0 -1 ------- null} - -t 1.14765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 200 -a 1 -x {1.0 6.0 104 ------- null} h -t 1.14765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 200 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.148 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 207 -a 1 -x {2.0 7.0 71 ------- null} + -t 1.148 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 207 -a 1 -x {2.0 7.0 71 ------- null} r -t 1.14963 -s 4 -d 3 -p ack -e 40 -c 0 -i 196 -a 0 -x {5.0 0.0 4 ------- null} + -t 1.14963 -s 3 -d 0 -p ack -e 40 -c 0 -i 196 -a 0 -x {5.0 0.0 4 ------- null} - -t 1.14963 -s 3 -d 0 -p ack -e 40 -c 0 -i 196 -a 0 -x {5.0 0.0 4 ------- null} h -t 1.14963 -s 3 -d 0 -p ack -e 40 -c 0 -i 196 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.14965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 184 -a 1 -x {2.0 7.0 66 ------- null} + -t 1.14965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 184 -a 1 -x {2.0 7.0 66 ------- null} - -t 1.14965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 184 -a 1 -x {2.0 7.0 66 ------- null} h -t 1.14965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 184 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.14965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 179 -a 1 -x {2.0 7.0 64 ------- null} r -t 1.14965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 182 -a 1 -x {1.0 6.0 95 ------- null} + -t 1.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 214 -a 1 -x {1.0 6.0 110 ------- null} - -t 1.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 214 -a 1 -x {1.0 6.0 110 ------- null} h -t 1.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 214 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.15165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 203 -a 1 -x {1.0 6.0 105 ------- null} h -t 1.15165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 203 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.15365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 186 -a 1 -x {1.0 6.0 98 ------- null} + -t 1.15365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 186 -a 1 -x {1.0 6.0 98 ------- null} - -t 1.15365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 186 -a 1 -x {1.0 6.0 98 ------- null} h -t 1.15365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 186 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.1537 -s 3 -d 0 -p ack -e 40 -c 0 -i 194 -a 0 -x {5.0 0.0 3 ------- null} + -t 1.1537 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 215 -a 0 -x {0.0 5.0 11 ------- null} - -t 1.1537 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 215 -a 0 -x {0.0 5.0 11 ------- null} h -t 1.1537 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 215 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.154 -s 1 -d 3 -p cbr -e 500 -c 1 -i 209 -a 1 -x {1.0 6.0 108 ------- null} + -t 1.154 -s 3 -d 4 -p cbr -e 500 -c 1 -i 209 -a 1 -x {1.0 6.0 108 ------- null} r -t 1.1553 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 210 -a 0 -x {0.0 5.0 9 ------- null} + -t 1.1553 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 210 -a 0 -x {0.0 5.0 9 ------- null} - -t 1.15565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 202 -a 1 -x {2.0 7.0 70 ------- null} h -t 1.15565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 202 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.15763 -s 4 -d 3 -p ack -e 40 -c 0 -i 199 -a 0 -x {5.0 0.0 5 ------- null} + -t 1.15763 -s 3 -d 0 -p ack -e 40 -c 0 -i 199 -a 0 -x {5.0 0.0 5 ------- null} - -t 1.15763 -s 3 -d 0 -p ack -e 40 -c 0 -i 199 -a 0 -x {5.0 0.0 5 ------- null} h -t 1.15763 -s 3 -d 0 -p ack -e 40 -c 0 -i 199 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.15765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 188 -a 1 -x {1.0 6.0 99 ------- null} + -t 1.15765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 188 -a 1 -x {1.0 6.0 99 ------- null} - -t 1.15765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 188 -a 1 -x {1.0 6.0 99 ------- null} h -t 1.15765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 188 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 216 -a 1 -x {2.0 7.0 73 ------- null} - -t 1.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 216 -a 1 -x {2.0 7.0 73 ------- null} h -t 1.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 216 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 217 -a 1 -x {1.0 6.0 111 ------- null} - -t 1.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 217 -a 1 -x {1.0 6.0 111 ------- null} h -t 1.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 217 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.16165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 181 -a 1 -x {2.0 7.0 65 ------- null} r -t 1.16165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 183 -a 1 -x {1.0 6.0 96 ------- null} - -t 1.16365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 205 -a 1 -x {1.0 6.0 106 ------- null} h -t 1.16365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 205 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.164 -s 1 -d 3 -p cbr -e 500 -c 1 -i 212 -a 1 -x {1.0 6.0 109 ------- null} + -t 1.164 -s 3 -d 4 -p cbr -e 500 -c 1 -i 212 -a 1 -x {1.0 6.0 109 ------- null} r -t 1.16563 -s 4 -d 3 -p ack -e 40 -c 0 -i 201 -a 0 -x {5.0 0.0 6 ------- null} + -t 1.16563 -s 3 -d 0 -p ack -e 40 -c 0 -i 201 -a 0 -x {5.0 0.0 6 ------- null} - -t 1.16563 -s 3 -d 0 -p ack -e 40 -c 0 -i 201 -a 0 -x {5.0 0.0 6 ------- null} h -t 1.16563 -s 3 -d 0 -p ack -e 40 -c 0 -i 201 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.16565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 187 -a 1 -x {2.0 7.0 67 ------- null} + -t 1.16565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 187 -a 1 -x {2.0 7.0 67 ------- null} - -t 1.16565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 187 -a 1 -x {2.0 7.0 67 ------- null} h -t 1.16565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 187 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.16565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 185 -a 1 -x {1.0 6.0 97 ------- null} r -t 1.1673 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 213 -a 0 -x {0.0 5.0 10 ------- null} + -t 1.1673 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 213 -a 0 -x {0.0 5.0 10 ------- null} - -t 1.16765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 208 -a 1 -x {1.0 6.0 107 ------- null} h -t 1.16765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 208 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.168 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 211 -a 1 -x {2.0 7.0 72 ------- null} + -t 1.168 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 211 -a 1 -x {2.0 7.0 72 ------- null} r -t 1.16965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 190 -a 1 -x {1.0 6.0 100 ------- null} + -t 1.16965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 190 -a 1 -x {1.0 6.0 100 ------- null} - -t 1.16965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 190 -a 1 -x {1.0 6.0 100 ------- null} h -t 1.16965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 190 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.1697 -s 3 -d 0 -p ack -e 40 -c 0 -i 196 -a 0 -x {5.0 0.0 4 ------- null} + -t 1.1697 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 218 -a 0 -x {0.0 5.0 12 ------- null} - -t 1.1697 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 218 -a 0 -x {0.0 5.0 12 ------- null} h -t 1.1697 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 218 -a 0 -x {0.0 5.0 -1 ------- null} + -t 1.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 219 -a 1 -x {1.0 6.0 112 ------- null} - -t 1.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 219 -a 1 -x {1.0 6.0 112 ------- null} h -t 1.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 219 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.17165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 207 -a 1 -x {2.0 7.0 71 ------- null} h -t 1.17165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 207 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.17363 -s 4 -d 3 -p ack -e 40 -c 0 -i 204 -a 0 -x {5.0 0.0 7 ------- null} + -t 1.17363 -s 3 -d 0 -p ack -e 40 -c 0 -i 204 -a 0 -x {5.0 0.0 7 ------- null} - -t 1.17363 -s 3 -d 0 -p ack -e 40 -c 0 -i 204 -a 0 -x {5.0 0.0 7 ------- null} h -t 1.17363 -s 3 -d 0 -p ack -e 40 -c 0 -i 204 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.17365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 193 -a 1 -x {1.0 6.0 101 ------- null} + -t 1.17365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 193 -a 1 -x {1.0 6.0 101 ------- null} - -t 1.17365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 193 -a 1 -x {1.0 6.0 101 ------- null} h -t 1.17365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 193 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.174 -s 1 -d 3 -p cbr -e 500 -c 1 -i 214 -a 1 -x {1.0 6.0 110 ------- null} + -t 1.174 -s 3 -d 4 -p cbr -e 500 -c 1 -i 214 -a 1 -x {1.0 6.0 110 ------- null} r -t 1.1753 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 215 -a 0 -x {0.0 5.0 11 ------- null} + -t 1.1753 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 215 -a 0 -x {0.0 5.0 11 ------- null} r -t 1.17765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 184 -a 1 -x {2.0 7.0 66 ------- null} r -t 1.17765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 186 -a 1 -x {1.0 6.0 98 ------- null} r -t 1.1777 -s 3 -d 0 -p ack -e 40 -c 0 -i 199 -a 0 -x {5.0 0.0 5 ------- null} + -t 1.1777 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 220 -a 0 -x {0.0 5.0 13 ------- null} - -t 1.1777 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 220 -a 0 -x {0.0 5.0 13 ------- null} h -t 1.1777 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 220 -a 0 -x {0.0 5.0 -1 ------- null} - -t 1.17965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 209 -a 1 -x {1.0 6.0 108 ------- null} h -t 1.17965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 209 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 221 -a 1 -x {2.0 7.0 74 ------- null} - -t 1.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 221 -a 1 -x {2.0 7.0 74 ------- null} h -t 1.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 221 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 222 -a 1 -x {1.0 6.0 113 ------- null} - -t 1.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 222 -a 1 -x {1.0 6.0 113 ------- null} h -t 1.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 222 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.18165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 192 -a 1 -x {2.0 7.0 68 ------- null} + -t 1.18165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 192 -a 1 -x {2.0 7.0 68 ------- null} - -t 1.18165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 192 -a 1 -x {2.0 7.0 68 ------- null} h -t 1.18165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 192 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.18165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 188 -a 1 -x {1.0 6.0 99 ------- null} - -t 1.18365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 210 -a 0 -x {0.0 5.0 9 ------- null} h -t 1.18365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 210 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.184 -s 1 -d 3 -p cbr -e 500 -c 1 -i 217 -a 1 -x {1.0 6.0 111 ------- null} + -t 1.184 -s 3 -d 4 -p cbr -e 500 -c 1 -i 217 -a 1 -x {1.0 6.0 111 ------- null} r -t 1.18563 -s 4 -d 3 -p ack -e 40 -c 0 -i 206 -a 0 -x {5.0 0.0 8 ------- null} + -t 1.18563 -s 3 -d 0 -p ack -e 40 -c 0 -i 206 -a 0 -x {5.0 0.0 8 ------- null} - -t 1.18563 -s 3 -d 0 -p ack -e 40 -c 0 -i 206 -a 0 -x {5.0 0.0 8 ------- null} h -t 1.18563 -s 3 -d 0 -p ack -e 40 -c 0 -i 206 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.18565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 195 -a 1 -x {1.0 6.0 102 ------- null} + -t 1.18565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 195 -a 1 -x {1.0 6.0 102 ------- null} - -t 1.18565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 195 -a 1 -x {1.0 6.0 102 ------- null} h -t 1.18565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 195 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.1857 -s 3 -d 0 -p ack -e 40 -c 0 -i 201 -a 0 -x {5.0 0.0 6 ------- null} + -t 1.1857 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {0.0 5.0 14 ------- null} - -t 1.1857 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {0.0 5.0 14 ------- null} h -t 1.1857 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.188 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 216 -a 1 -x {2.0 7.0 73 ------- null} + -t 1.188 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 216 -a 1 -x {2.0 7.0 73 ------- null} r -t 1.18965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 198 -a 1 -x {1.0 6.0 103 ------- null} + -t 1.18965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 198 -a 1 -x {1.0 6.0 103 ------- null} - -t 1.18965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 198 -a 1 -x {1.0 6.0 103 ------- null} h -t 1.18965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 198 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 224 -a 1 -x {1.0 6.0 114 ------- null} - -t 1.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 224 -a 1 -x {1.0 6.0 114 ------- null} h -t 1.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 224 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.1913 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 218 -a 0 -x {0.0 5.0 12 ------- null} + -t 1.1913 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 218 -a 0 -x {0.0 5.0 12 ------- null} - -t 1.19165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 212 -a 1 -x {1.0 6.0 109 ------- null} h -t 1.19165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 212 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.19365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 187 -a 1 -x {2.0 7.0 67 ------- null} r -t 1.19365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 190 -a 1 -x {1.0 6.0 100 ------- null} r -t 1.1937 -s 3 -d 0 -p ack -e 40 -c 0 -i 204 -a 0 -x {5.0 0.0 7 ------- null} + -t 1.1937 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {0.0 5.0 15 ------- null} - -t 1.1937 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {0.0 5.0 15 ------- null} h -t 1.1937 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.194 -s 1 -d 3 -p cbr -e 500 -c 1 -i 219 -a 1 -x {1.0 6.0 112 ------- null} + -t 1.194 -s 3 -d 4 -p cbr -e 500 -c 1 -i 219 -a 1 -x {1.0 6.0 112 ------- null} - -t 1.19565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 213 -a 0 -x {0.0 5.0 10 ------- null} h -t 1.19565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 213 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.19765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 197 -a 1 -x {2.0 7.0 69 ------- null} + -t 1.19765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 197 -a 1 -x {2.0 7.0 69 ------- null} - -t 1.19765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 197 -a 1 -x {2.0 7.0 69 ------- null} h -t 1.19765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 197 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.19765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 193 -a 1 -x {1.0 6.0 101 ------- null} r -t 1.1993 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 220 -a 0 -x {0.0 5.0 13 ------- null} + -t 1.1993 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 220 -a 0 -x {0.0 5.0 13 ------- null} + -t 1.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 226 -a 1 -x {2.0 7.0 75 ------- null} - -t 1.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 226 -a 1 -x {2.0 7.0 75 ------- null} h -t 1.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 226 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 227 -a 1 -x {1.0 6.0 115 ------- null} - -t 1.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 227 -a 1 -x {1.0 6.0 115 ------- null} h -t 1.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 227 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.20165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 200 -a 1 -x {1.0 6.0 104 ------- null} + -t 1.20165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 200 -a 1 -x {1.0 6.0 104 ------- null} - -t 1.20165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 200 -a 1 -x {1.0 6.0 104 ------- null} h -t 1.20165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 200 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.20365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 211 -a 1 -x {2.0 7.0 72 ------- null} h -t 1.20365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 211 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.204 -s 1 -d 3 -p cbr -e 500 -c 1 -i 222 -a 1 -x {1.0 6.0 113 ------- null} + -t 1.204 -s 3 -d 4 -p cbr -e 500 -c 1 -i 222 -a 1 -x {1.0 6.0 113 ------- null} r -t 1.20565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 203 -a 1 -x {1.0 6.0 105 ------- null} + -t 1.20565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 203 -a 1 -x {1.0 6.0 105 ------- null} - -t 1.20565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 203 -a 1 -x {1.0 6.0 105 ------- null} h -t 1.20565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 203 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.2057 -s 3 -d 0 -p ack -e 40 -c 0 -i 206 -a 0 -x {5.0 0.0 8 ------- null} + -t 1.2057 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0 5.0 16 ------- null} - -t 1.2057 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0 5.0 16 ------- null} h -t 1.2057 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.2073 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {0.0 5.0 14 ------- null} + -t 1.2073 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {0.0 5.0 14 ------- null} r -t 1.208 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 221 -a 1 -x {2.0 7.0 74 ------- null} + -t 1.208 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 221 -a 1 -x {2.0 7.0 74 ------- null} d -t 1.208 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 221 -a 1 -x {2.0 7.0 74 ------- null} r -t 1.20965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 192 -a 1 -x {2.0 7.0 68 ------- null} r -t 1.20965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 195 -a 1 -x {1.0 6.0 102 ------- null} + -t 1.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 229 -a 1 -x {1.0 6.0 116 ------- null} - -t 1.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 229 -a 1 -x {1.0 6.0 116 ------- null} h -t 1.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 229 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.21165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 214 -a 1 -x {1.0 6.0 110 ------- null} h -t 1.21165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 214 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.21365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 202 -a 1 -x {2.0 7.0 70 ------- null} + -t 1.21365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 202 -a 1 -x {2.0 7.0 70 ------- null} - -t 1.21365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 202 -a 1 -x {2.0 7.0 70 ------- null} h -t 1.21365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 202 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.21365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 198 -a 1 -x {1.0 6.0 103 ------- null} r -t 1.214 -s 1 -d 3 -p cbr -e 500 -c 1 -i 224 -a 1 -x {1.0 6.0 114 ------- null} + -t 1.214 -s 3 -d 4 -p cbr -e 500 -c 1 -i 224 -a 1 -x {1.0 6.0 114 ------- null} r -t 1.2153 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {0.0 5.0 15 ------- null} + -t 1.2153 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {0.0 5.0 15 ------- null} d -t 1.2153 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {0.0 5.0 15 ------- null} - -t 1.21565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 215 -a 0 -x {0.0 5.0 11 ------- null} h -t 1.21565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 215 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.21765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 205 -a 1 -x {1.0 6.0 106 ------- null} + -t 1.21765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 205 -a 1 -x {1.0 6.0 106 ------- null} - -t 1.21765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 205 -a 1 -x {1.0 6.0 106 ------- null} h -t 1.21765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 205 -a 1 -x {1.0 6.0 -1 ------- null} v -t 1.22 sim_annotation 1.22 13 Lost Packet (2 of them) + -t 1.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 230 -a 1 -x {2.0 7.0 76 ------- null} - -t 1.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 230 -a 1 -x {2.0 7.0 76 ------- null} h -t 1.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 230 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 231 -a 1 -x {1.0 6.0 117 ------- null} - -t 1.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 231 -a 1 -x {1.0 6.0 117 ------- null} h -t 1.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 231 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.22165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 208 -a 1 -x {1.0 6.0 107 ------- null} + -t 1.22165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 208 -a 1 -x {1.0 6.0 107 ------- null} - -t 1.22165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 208 -a 1 -x {1.0 6.0 107 ------- null} h -t 1.22165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 208 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.22365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 217 -a 1 -x {1.0 6.0 111 ------- null} h -t 1.22365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 217 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.224 -s 1 -d 3 -p cbr -e 500 -c 1 -i 227 -a 1 -x {1.0 6.0 115 ------- null} + -t 1.224 -s 3 -d 4 -p cbr -e 500 -c 1 -i 227 -a 1 -x {1.0 6.0 115 ------- null} r -t 1.22565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 197 -a 1 -x {2.0 7.0 69 ------- null} r -t 1.22565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 200 -a 1 -x {1.0 6.0 104 ------- null} r -t 1.2273 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0 5.0 16 ------- null} + -t 1.2273 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0 5.0 16 ------- null} - -t 1.22765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 216 -a 1 -x {2.0 7.0 73 ------- null} h -t 1.22765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 216 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.228 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 226 -a 1 -x {2.0 7.0 75 ------- null} + -t 1.228 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 226 -a 1 -x {2.0 7.0 75 ------- null} r -t 1.22965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 207 -a 1 -x {2.0 7.0 71 ------- null} + -t 1.22965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 207 -a 1 -x {2.0 7.0 71 ------- null} - -t 1.22965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 207 -a 1 -x {2.0 7.0 71 ------- null} h -t 1.22965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 207 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.22965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 203 -a 1 -x {1.0 6.0 105 ------- null} + -t 1.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 232 -a 1 -x {1.0 6.0 118 ------- null} - -t 1.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 232 -a 1 -x {1.0 6.0 118 ------- null} h -t 1.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 232 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.23365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 209 -a 1 -x {1.0 6.0 108 ------- null} + -t 1.23365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 209 -a 1 -x {1.0 6.0 108 ------- null} - -t 1.23365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 209 -a 1 -x {1.0 6.0 108 ------- null} h -t 1.23365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 209 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.234 -s 1 -d 3 -p cbr -e 500 -c 1 -i 229 -a 1 -x {1.0 6.0 116 ------- null} + -t 1.234 -s 3 -d 4 -p cbr -e 500 -c 1 -i 229 -a 1 -x {1.0 6.0 116 ------- null} d -t 1.234 -s 3 -d 4 -p cbr -e 500 -c 1 -i 229 -a 1 -x {1.0 6.0 116 ------- null} - -t 1.23565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 218 -a 0 -x {0.0 5.0 12 ------- null} h -t 1.23565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 218 -a 0 -x {0.0 5.0 -1 ------- null} + -t 1.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 233 -a 1 -x {2.0 7.0 77 ------- null} - -t 1.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 233 -a 1 -x {2.0 7.0 77 ------- null} h -t 1.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 233 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 234 -a 1 -x {1.0 6.0 119 ------- null} - -t 1.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 234 -a 1 -x {1.0 6.0 119 ------- null} h -t 1.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 234 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.24165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 210 -a 0 -x {0.0 5.0 9 ------- null} + -t 1.24165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 210 -a 0 -x {0.0 5.0 9 ------- null} - -t 1.24165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 210 -a 0 -x {0.0 5.0 9 ------- null} h -t 1.24165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 210 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.24165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 202 -a 1 -x {2.0 7.0 70 ------- null} r -t 1.24165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 205 -a 1 -x {1.0 6.0 106 ------- null} - -t 1.24365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 219 -a 1 -x {1.0 6.0 112 ------- null} h -t 1.24365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 219 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.244 -s 1 -d 3 -p cbr -e 500 -c 1 -i 231 -a 1 -x {1.0 6.0 117 ------- null} + -t 1.244 -s 3 -d 4 -p cbr -e 500 -c 1 -i 231 -a 1 -x {1.0 6.0 117 ------- null} r -t 1.24565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 212 -a 1 -x {1.0 6.0 109 ------- null} + -t 1.24565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 212 -a 1 -x {1.0 6.0 109 ------- null} - -t 1.24565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 212 -a 1 -x {1.0 6.0 109 ------- null} h -t 1.24565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 212 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.24565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 208 -a 1 -x {1.0 6.0 107 ------- null} - -t 1.24765 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 220 -a 0 -x {0.0 5.0 13 ------- null} h -t 1.24765 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 220 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.248 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 230 -a 1 -x {2.0 7.0 76 ------- null} + -t 1.248 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 230 -a 1 -x {2.0 7.0 76 ------- null} + -t 1.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 235 -a 1 -x {1.0 6.0 120 ------- null} - -t 1.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 235 -a 1 -x {1.0 6.0 120 ------- null} h -t 1.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 235 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.25365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 213 -a 0 -x {0.0 5.0 10 ------- null} + -t 1.25365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 213 -a 0 -x {0.0 5.0 10 ------- null} - -t 1.25365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 213 -a 0 -x {0.0 5.0 10 ------- null} h -t 1.25365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 213 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.254 -s 1 -d 3 -p cbr -e 500 -c 1 -i 232 -a 1 -x {1.0 6.0 118 ------- null} + -t 1.254 -s 3 -d 4 -p cbr -e 500 -c 1 -i 232 -a 1 -x {1.0 6.0 118 ------- null} - -t 1.25565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 222 -a 1 -x {1.0 6.0 113 ------- null} h -t 1.25565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 222 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.25765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 207 -a 1 -x {2.0 7.0 71 ------- null} r -t 1.25765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 209 -a 1 -x {1.0 6.0 108 ------- null} - -t 1.25965 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {0.0 5.0 14 ------- null} h -t 1.25965 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {0.0 5.0 -1 ------- null} + -t 1.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 236 -a 1 -x {2.0 7.0 78 ------- null} - -t 1.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 236 -a 1 -x {2.0 7.0 78 ------- null} h -t 1.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 236 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 237 -a 1 -x {1.0 6.0 121 ------- null} - -t 1.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 237 -a 1 -x {1.0 6.0 121 ------- null} h -t 1.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 237 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.26165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 211 -a 1 -x {2.0 7.0 72 ------- null} + -t 1.26165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 211 -a 1 -x {2.0 7.0 72 ------- null} - -t 1.26165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 211 -a 1 -x {2.0 7.0 72 ------- null} h -t 1.26165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 211 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.26325 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 210 -a 0 -x {0.0 5.0 9 ------- null} + -t 1.26325 -s 5 -d 4 -p ack -e 40 -c 0 -i 238 -a 0 -x {5.0 0.0 9 ------- null} - -t 1.26325 -s 5 -d 4 -p ack -e 40 -c 0 -i 238 -a 0 -x {5.0 0.0 9 ------- null} h -t 1.26325 -s 5 -d 4 -p ack -e 40 -c 0 -i 238 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.264 -s 1 -d 3 -p cbr -e 500 -c 1 -i 234 -a 1 -x {1.0 6.0 119 ------- null} + -t 1.264 -s 3 -d 4 -p cbr -e 500 -c 1 -i 234 -a 1 -x {1.0 6.0 119 ------- null} r -t 1.26565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 214 -a 1 -x {1.0 6.0 110 ------- null} + -t 1.26565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 214 -a 1 -x {1.0 6.0 110 ------- null} - -t 1.26565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 214 -a 1 -x {1.0 6.0 110 ------- null} h -t 1.26565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 214 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.26765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 224 -a 1 -x {1.0 6.0 114 ------- null} h -t 1.26765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 224 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.268 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 233 -a 1 -x {2.0 7.0 77 ------- null} + -t 1.268 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 233 -a 1 -x {2.0 7.0 77 ------- null} r -t 1.26965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 212 -a 1 -x {1.0 6.0 109 ------- null} v -t 1.27 sim_annotation 1.27 14 Ack_7 to 14 + -t 1.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 239 -a 1 -x {1.0 6.0 122 ------- null} - -t 1.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 239 -a 1 -x {1.0 6.0 122 ------- null} h -t 1.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 239 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.27165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 227 -a 1 -x {1.0 6.0 115 ------- null} h -t 1.27165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 227 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.27365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 215 -a 0 -x {0.0 5.0 11 ------- null} + -t 1.27365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 215 -a 0 -x {0.0 5.0 11 ------- null} - -t 1.27365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 215 -a 0 -x {0.0 5.0 11 ------- null} h -t 1.27365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 215 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.274 -s 1 -d 3 -p cbr -e 500 -c 1 -i 235 -a 1 -x {1.0 6.0 120 ------- null} + -t 1.274 -s 3 -d 4 -p cbr -e 500 -c 1 -i 235 -a 1 -x {1.0 6.0 120 ------- null} r -t 1.27525 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 213 -a 0 -x {0.0 5.0 10 ------- null} + -t 1.27525 -s 5 -d 4 -p ack -e 40 -c 0 -i 240 -a 0 -x {5.0 0.0 10 ------- null} - -t 1.27525 -s 5 -d 4 -p ack -e 40 -c 0 -i 240 -a 0 -x {5.0 0.0 10 ------- null} h -t 1.27525 -s 5 -d 4 -p ack -e 40 -c 0 -i 240 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.27565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0 5.0 16 ------- null} h -t 1.27565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.27765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 217 -a 1 -x {1.0 6.0 111 ------- null} + -t 1.27765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 217 -a 1 -x {1.0 6.0 111 ------- null} - -t 1.27765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 217 -a 1 -x {1.0 6.0 111 ------- null} h -t 1.27765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 217 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 241 -a 1 -x {2.0 7.0 79 ------- null} - -t 1.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 241 -a 1 -x {2.0 7.0 79 ------- null} h -t 1.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 241 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 242 -a 1 -x {1.0 6.0 123 ------- null} - -t 1.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 242 -a 1 -x {1.0 6.0 123 ------- null} h -t 1.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 242 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.28331 -s 5 -d 4 -p ack -e 40 -c 0 -i 238 -a 0 -x {5.0 0.0 9 ------- null} + -t 1.28331 -s 4 -d 3 -p ack -e 40 -c 0 -i 238 -a 0 -x {5.0 0.0 9 ------- null} - -t 1.28331 -s 4 -d 3 -p ack -e 40 -c 0 -i 238 -a 0 -x {5.0 0.0 9 ------- null} h -t 1.28331 -s 4 -d 3 -p ack -e 40 -c 0 -i 238 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.28365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 226 -a 1 -x {2.0 7.0 75 ------- null} h -t 1.28365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 226 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.284 -s 1 -d 3 -p cbr -e 500 -c 1 -i 237 -a 1 -x {1.0 6.0 121 ------- null} + -t 1.284 -s 3 -d 4 -p cbr -e 500 -c 1 -i 237 -a 1 -x {1.0 6.0 121 ------- null} r -t 1.28565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 216 -a 1 -x {2.0 7.0 73 ------- null} + -t 1.28565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 216 -a 1 -x {2.0 7.0 73 ------- null} - -t 1.28565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 216 -a 1 -x {2.0 7.0 73 ------- null} h -t 1.28565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 216 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.288 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 236 -a 1 -x {2.0 7.0 78 ------- null} + -t 1.288 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 236 -a 1 -x {2.0 7.0 78 ------- null} r -t 1.28965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 211 -a 1 -x {2.0 7.0 72 ------- null} r -t 1.28965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 214 -a 1 -x {1.0 6.0 110 ------- null} + -t 1.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 243 -a 1 -x {1.0 6.0 124 ------- null} - -t 1.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 243 -a 1 -x {1.0 6.0 124 ------- null} h -t 1.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 243 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.29165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 231 -a 1 -x {1.0 6.0 117 ------- null} h -t 1.29165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 231 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.29365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 218 -a 0 -x {0.0 5.0 12 ------- null} + -t 1.29365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 218 -a 0 -x {0.0 5.0 12 ------- null} - -t 1.29365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 218 -a 0 -x {0.0 5.0 12 ------- null} h -t 1.29365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 218 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.294 -s 1 -d 3 -p cbr -e 500 -c 1 -i 239 -a 1 -x {1.0 6.0 122 ------- null} + -t 1.294 -s 3 -d 4 -p cbr -e 500 -c 1 -i 239 -a 1 -x {1.0 6.0 122 ------- null} r -t 1.29525 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 215 -a 0 -x {0.0 5.0 11 ------- null} + -t 1.29525 -s 5 -d 4 -p ack -e 40 -c 0 -i 244 -a 0 -x {5.0 0.0 11 ------- null} - -t 1.29525 -s 5 -d 4 -p ack -e 40 -c 0 -i 244 -a 0 -x {5.0 0.0 11 ------- null} h -t 1.29525 -s 5 -d 4 -p ack -e 40 -c 0 -i 244 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.29531 -s 5 -d 4 -p ack -e 40 -c 0 -i 240 -a 0 -x {5.0 0.0 10 ------- null} + -t 1.29531 -s 4 -d 3 -p ack -e 40 -c 0 -i 240 -a 0 -x {5.0 0.0 10 ------- null} - -t 1.29531 -s 4 -d 3 -p ack -e 40 -c 0 -i 240 -a 0 -x {5.0 0.0 10 ------- null} h -t 1.29531 -s 4 -d 3 -p ack -e 40 -c 0 -i 240 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.29565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 230 -a 1 -x {2.0 7.0 76 ------- null} h -t 1.29565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 230 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.29765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 219 -a 1 -x {1.0 6.0 112 ------- null} + -t 1.29765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 219 -a 1 -x {1.0 6.0 112 ------- null} - -t 1.29765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 219 -a 1 -x {1.0 6.0 112 ------- null} h -t 1.29765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 219 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 245 -a 1 -x {2.0 7.0 80 ------- null} - -t 1.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 245 -a 1 -x {2.0 7.0 80 ------- null} h -t 1.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 245 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.3 -s 1 -d 3 -p cbr -e 500 -c 1 -i 246 -a 1 -x {1.0 6.0 125 ------- null} - -t 1.3 -s 1 -d 3 -p cbr -e 500 -c 1 -i 246 -a 1 -x {1.0 6.0 125 ------- null} h -t 1.3 -s 1 -d 3 -p cbr -e 500 -c 1 -i 246 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.30165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 217 -a 1 -x {1.0 6.0 111 ------- null} - -t 1.30365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 232 -a 1 -x {1.0 6.0 118 ------- null} h -t 1.30365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 232 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.304 -s 1 -d 3 -p cbr -e 500 -c 1 -i 242 -a 1 -x {1.0 6.0 123 ------- null} + -t 1.304 -s 3 -d 4 -p cbr -e 500 -c 1 -i 242 -a 1 -x {1.0 6.0 123 ------- null} r -t 1.30565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 220 -a 0 -x {0.0 5.0 13 ------- null} + -t 1.30565 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 220 -a 0 -x {0.0 5.0 13 ------- null} - -t 1.30565 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 220 -a 0 -x {0.0 5.0 13 ------- null} h -t 1.30565 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 220 -a 0 -x {0.0 5.0 -1 ------- null} - -t 1.30765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 234 -a 1 -x {1.0 6.0 119 ------- null} h -t 1.30765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 234 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.308 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 241 -a 1 -x {2.0 7.0 79 ------- null} + -t 1.308 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 241 -a 1 -x {2.0 7.0 79 ------- null} r -t 1.30965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 222 -a 1 -x {1.0 6.0 113 ------- null} + -t 1.30965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 222 -a 1 -x {1.0 6.0 113 ------- null} - -t 1.30965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 222 -a 1 -x {1.0 6.0 113 ------- null} h -t 1.30965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 222 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.31 -s 1 -d 3 -p cbr -e 500 -c 1 -i 247 -a 1 -x {1.0 6.0 126 ------- null} - -t 1.31 -s 1 -d 3 -p cbr -e 500 -c 1 -i 247 -a 1 -x {1.0 6.0 126 ------- null} h -t 1.31 -s 1 -d 3 -p cbr -e 500 -c 1 -i 247 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.31165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 233 -a 1 -x {2.0 7.0 77 ------- null} h -t 1.31165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 233 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.31365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 216 -a 1 -x {2.0 7.0 73 ------- null} r -t 1.314 -s 1 -d 3 -p cbr -e 500 -c 1 -i 243 -a 1 -x {1.0 6.0 124 ------- null} + -t 1.314 -s 3 -d 4 -p cbr -e 500 -c 1 -i 243 -a 1 -x {1.0 6.0 124 ------- null} r -t 1.31525 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 218 -a 0 -x {0.0 5.0 12 ------- null} + -t 1.31525 -s 5 -d 4 -p ack -e 40 -c 0 -i 248 -a 0 -x {5.0 0.0 12 ------- null} - -t 1.31525 -s 5 -d 4 -p ack -e 40 -c 0 -i 248 -a 0 -x {5.0 0.0 12 ------- null} h -t 1.31525 -s 5 -d 4 -p ack -e 40 -c 0 -i 248 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.31531 -s 5 -d 4 -p ack -e 40 -c 0 -i 244 -a 0 -x {5.0 0.0 11 ------- null} + -t 1.31531 -s 4 -d 3 -p ack -e 40 -c 0 -i 244 -a 0 -x {5.0 0.0 11 ------- null} - -t 1.31531 -s 4 -d 3 -p ack -e 40 -c 0 -i 244 -a 0 -x {5.0 0.0 11 ------- null} h -t 1.31531 -s 4 -d 3 -p ack -e 40 -c 0 -i 244 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.31765 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {0.0 5.0 14 ------- null} + -t 1.31765 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {0.0 5.0 14 ------- null} - -t 1.31765 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {0.0 5.0 14 ------- null} h -t 1.31765 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {0.0 5.0 -1 ------- null} - -t 1.31965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 235 -a 1 -x {1.0 6.0 120 ------- null} h -t 1.31965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 235 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 249 -a 1 -x {2.0 7.0 81 ------- null} - -t 1.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 249 -a 1 -x {2.0 7.0 81 ------- null} h -t 1.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 249 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.32 -s 1 -d 3 -p cbr -e 500 -c 1 -i 250 -a 1 -x {1.0 6.0 127 ------- null} - -t 1.32 -s 1 -d 3 -p cbr -e 500 -c 1 -i 250 -a 1 -x {1.0 6.0 127 ------- null} h -t 1.32 -s 1 -d 3 -p cbr -e 500 -c 1 -i 250 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.32165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 224 -a 1 -x {1.0 6.0 114 ------- null} + -t 1.32165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 224 -a 1 -x {1.0 6.0 114 ------- null} - -t 1.32165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 224 -a 1 -x {1.0 6.0 114 ------- null} h -t 1.32165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 224 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.32165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 219 -a 1 -x {1.0 6.0 112 ------- null} - -t 1.32365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 237 -a 1 -x {1.0 6.0 121 ------- null} h -t 1.32365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 237 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.324 -s 1 -d 3 -p cbr -e 500 -c 1 -i 246 -a 1 -x {1.0 6.0 125 ------- null} + -t 1.324 -s 3 -d 4 -p cbr -e 500 -c 1 -i 246 -a 1 -x {1.0 6.0 125 ------- null} r -t 1.32565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 227 -a 1 -x {1.0 6.0 115 ------- null} + -t 1.32565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 227 -a 1 -x {1.0 6.0 115 ------- null} - -t 1.32565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 227 -a 1 -x {1.0 6.0 115 ------- null} h -t 1.32565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 227 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.32725 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 220 -a 0 -x {0.0 5.0 13 ------- null} + -t 1.32725 -s 5 -d 4 -p ack -e 40 -c 0 -i 251 -a 0 -x {5.0 0.0 13 ------- null} - -t 1.32725 -s 5 -d 4 -p ack -e 40 -c 0 -i 251 -a 0 -x {5.0 0.0 13 ------- null} h -t 1.32725 -s 5 -d 4 -p ack -e 40 -c 0 -i 251 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.32765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 236 -a 1 -x {2.0 7.0 78 ------- null} h -t 1.32765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 236 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.328 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 245 -a 1 -x {2.0 7.0 80 ------- null} + -t 1.328 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 245 -a 1 -x {2.0 7.0 80 ------- null} + -t 1.33 -s 1 -d 3 -p cbr -e 500 -c 1 -i 252 -a 1 -x {1.0 6.0 128 ------- null} - -t 1.33 -s 1 -d 3 -p cbr -e 500 -c 1 -i 252 -a 1 -x {1.0 6.0 128 ------- null} h -t 1.33 -s 1 -d 3 -p cbr -e 500 -c 1 -i 252 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.33363 -s 4 -d 3 -p ack -e 40 -c 0 -i 238 -a 0 -x {5.0 0.0 9 ------- null} + -t 1.33363 -s 3 -d 0 -p ack -e 40 -c 0 -i 238 -a 0 -x {5.0 0.0 9 ------- null} - -t 1.33363 -s 3 -d 0 -p ack -e 40 -c 0 -i 238 -a 0 -x {5.0 0.0 9 ------- null} h -t 1.33363 -s 3 -d 0 -p ack -e 40 -c 0 -i 238 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.33365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0 5.0 16 ------- null} + -t 1.33365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0 5.0 16 ------- null} - -t 1.33365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0 5.0 16 ------- null} h -t 1.33365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.33365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 222 -a 1 -x {1.0 6.0 113 ------- null} r -t 1.334 -s 1 -d 3 -p cbr -e 500 -c 1 -i 247 -a 1 -x {1.0 6.0 126 ------- null} + -t 1.334 -s 3 -d 4 -p cbr -e 500 -c 1 -i 247 -a 1 -x {1.0 6.0 126 ------- null} r -t 1.33531 -s 5 -d 4 -p ack -e 40 -c 0 -i 248 -a 0 -x {5.0 0.0 12 ------- null} + -t 1.33531 -s 4 -d 3 -p ack -e 40 -c 0 -i 248 -a 0 -x {5.0 0.0 12 ------- null} - -t 1.33531 -s 4 -d 3 -p ack -e 40 -c 0 -i 248 -a 0 -x {5.0 0.0 12 ------- null} h -t 1.33531 -s 4 -d 3 -p ack -e 40 -c 0 -i 248 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.33565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 239 -a 1 -x {1.0 6.0 122 ------- null} h -t 1.33565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 239 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.33925 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {0.0 5.0 14 ------- null} + -t 1.33925 -s 5 -d 4 -p ack -e 40 -c 0 -i 253 -a 0 -x {5.0 0.0 14 ------- null} - -t 1.33925 -s 5 -d 4 -p ack -e 40 -c 0 -i 253 -a 0 -x {5.0 0.0 14 ------- null} h -t 1.33925 -s 5 -d 4 -p ack -e 40 -c 0 -i 253 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.33965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 242 -a 1 -x {1.0 6.0 123 ------- null} h -t 1.33965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 242 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 254 -a 1 -x {2.0 7.0 82 ------- null} - -t 1.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 254 -a 1 -x {2.0 7.0 82 ------- null} h -t 1.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 254 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.34 -s 1 -d 3 -p cbr -e 500 -c 1 -i 255 -a 1 -x {1.0 6.0 129 ------- null} - -t 1.34 -s 1 -d 3 -p cbr -e 500 -c 1 -i 255 -a 1 -x {1.0 6.0 129 ------- null} h -t 1.34 -s 1 -d 3 -p cbr -e 500 -c 1 -i 255 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.34165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 226 -a 1 -x {2.0 7.0 75 ------- null} + -t 1.34165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 226 -a 1 -x {2.0 7.0 75 ------- null} - -t 1.34165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 226 -a 1 -x {2.0 7.0 75 ------- null} h -t 1.34165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 226 -a 1 -x {2.0 7.0 -1 ------- null} - -t 1.34365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 241 -a 1 -x {2.0 7.0 79 ------- null} h -t 1.34365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 241 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.344 -s 1 -d 3 -p cbr -e 500 -c 1 -i 250 -a 1 -x {1.0 6.0 127 ------- null} + -t 1.344 -s 3 -d 4 -p cbr -e 500 -c 1 -i 250 -a 1 -x {1.0 6.0 127 ------- null} r -t 1.34563 -s 4 -d 3 -p ack -e 40 -c 0 -i 240 -a 0 -x {5.0 0.0 10 ------- null} + -t 1.34563 -s 3 -d 0 -p ack -e 40 -c 0 -i 240 -a 0 -x {5.0 0.0 10 ------- null} - -t 1.34563 -s 3 -d 0 -p ack -e 40 -c 0 -i 240 -a 0 -x {5.0 0.0 10 ------- null} h -t 1.34563 -s 3 -d 0 -p ack -e 40 -c 0 -i 240 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.34565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 231 -a 1 -x {1.0 6.0 117 ------- null} + -t 1.34565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 231 -a 1 -x {1.0 6.0 117 ------- null} - -t 1.34565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 231 -a 1 -x {1.0 6.0 117 ------- null} h -t 1.34565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 231 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.34565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 224 -a 1 -x {1.0 6.0 114 ------- null} r -t 1.34731 -s 5 -d 4 -p ack -e 40 -c 0 -i 251 -a 0 -x {5.0 0.0 13 ------- null} + -t 1.34731 -s 4 -d 3 -p ack -e 40 -c 0 -i 251 -a 0 -x {5.0 0.0 13 ------- null} - -t 1.34731 -s 4 -d 3 -p ack -e 40 -c 0 -i 251 -a 0 -x {5.0 0.0 13 ------- null} h -t 1.34731 -s 4 -d 3 -p ack -e 40 -c 0 -i 251 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.348 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 249 -a 1 -x {2.0 7.0 81 ------- null} + -t 1.348 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 249 -a 1 -x {2.0 7.0 81 ------- null} r -t 1.34965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 227 -a 1 -x {1.0 6.0 115 ------- null} v -t 1.3500000000000001 sim_annotation 1.3500000000000001 15 Send Packet_17 to 22 + -t 1.35 -s 1 -d 3 -p cbr -e 500 -c 1 -i 256 -a 1 -x {1.0 6.0 130 ------- null} - -t 1.35 -s 1 -d 3 -p cbr -e 500 -c 1 -i 256 -a 1 -x {1.0 6.0 130 ------- null} h -t 1.35 -s 1 -d 3 -p cbr -e 500 -c 1 -i 256 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.35165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 243 -a 1 -x {1.0 6.0 124 ------- null} h -t 1.35165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 243 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.35365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 230 -a 1 -x {2.0 7.0 76 ------- null} + -t 1.35365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 230 -a 1 -x {2.0 7.0 76 ------- null} - -t 1.35365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 230 -a 1 -x {2.0 7.0 76 ------- null} h -t 1.35365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 230 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.3537 -s 3 -d 0 -p ack -e 40 -c 0 -i 238 -a 0 -x {5.0 0.0 9 ------- null} + -t 1.3537 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 257 -a 0 -x {0.0 5.0 17 ------- null} - -t 1.3537 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 257 -a 0 -x {0.0 5.0 17 ------- null} h -t 1.3537 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 257 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.354 -s 1 -d 3 -p cbr -e 500 -c 1 -i 252 -a 1 -x {1.0 6.0 128 ------- null} + -t 1.354 -s 3 -d 4 -p cbr -e 500 -c 1 -i 252 -a 1 -x {1.0 6.0 128 ------- null} r -t 1.35525 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0 5.0 16 ------- null} + -t 1.35525 -s 5 -d 4 -p ack -e 40 -c 0 -i 258 -a 0 -x {5.0 0.0 14 ------- null} - -t 1.35525 -s 5 -d 4 -p ack -e 40 -c 0 -i 258 -a 0 -x {5.0 0.0 14 ------- null} h -t 1.35525 -s 5 -d 4 -p ack -e 40 -c 0 -i 258 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.35565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 246 -a 1 -x {1.0 6.0 125 ------- null} h -t 1.35565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 246 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.35765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 232 -a 1 -x {1.0 6.0 118 ------- null} + -t 1.35765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 232 -a 1 -x {1.0 6.0 118 ------- null} - -t 1.35765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 232 -a 1 -x {1.0 6.0 118 ------- null} h -t 1.35765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 232 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.35931 -s 5 -d 4 -p ack -e 40 -c 0 -i 253 -a 0 -x {5.0 0.0 14 ------- null} + -t 1.35931 -s 4 -d 3 -p ack -e 40 -c 0 -i 253 -a 0 -x {5.0 0.0 14 ------- null} - -t 1.35931 -s 4 -d 3 -p ack -e 40 -c 0 -i 253 -a 0 -x {5.0 0.0 14 ------- null} h -t 1.35931 -s 4 -d 3 -p ack -e 40 -c 0 -i 253 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.35965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 245 -a 1 -x {2.0 7.0 80 ------- null} h -t 1.35965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 245 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 259 -a 1 -x {2.0 7.0 83 ------- null} - -t 1.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 259 -a 1 -x {2.0 7.0 83 ------- null} h -t 1.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 259 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.36 -s 1 -d 3 -p cbr -e 500 -c 1 -i 260 -a 1 -x {1.0 6.0 131 ------- null} - -t 1.36 -s 1 -d 3 -p cbr -e 500 -c 1 -i 260 -a 1 -x {1.0 6.0 131 ------- null} h -t 1.36 -s 1 -d 3 -p cbr -e 500 -c 1 -i 260 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.36165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 234 -a 1 -x {1.0 6.0 119 ------- null} + -t 1.36165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 234 -a 1 -x {1.0 6.0 119 ------- null} - -t 1.36165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 234 -a 1 -x {1.0 6.0 119 ------- null} h -t 1.36165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 234 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.364 -s 1 -d 3 -p cbr -e 500 -c 1 -i 255 -a 1 -x {1.0 6.0 129 ------- null} + -t 1.364 -s 3 -d 4 -p cbr -e 500 -c 1 -i 255 -a 1 -x {1.0 6.0 129 ------- null} r -t 1.36563 -s 4 -d 3 -p ack -e 40 -c 0 -i 244 -a 0 -x {5.0 0.0 11 ------- null} + -t 1.36563 -s 3 -d 0 -p ack -e 40 -c 0 -i 244 -a 0 -x {5.0 0.0 11 ------- null} - -t 1.36563 -s 3 -d 0 -p ack -e 40 -c 0 -i 244 -a 0 -x {5.0 0.0 11 ------- null} h -t 1.36563 -s 3 -d 0 -p ack -e 40 -c 0 -i 244 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.3657 -s 3 -d 0 -p ack -e 40 -c 0 -i 240 -a 0 -x {5.0 0.0 10 ------- null} + -t 1.3657 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 261 -a 0 -x {0.0 5.0 18 ------- null} - -t 1.3657 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 261 -a 0 -x {0.0 5.0 18 ------- null} h -t 1.3657 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 261 -a 0 -x {0.0 5.0 -1 ------- null} - -t 1.36765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 247 -a 1 -x {1.0 6.0 126 ------- null} h -t 1.36765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 247 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.368 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 254 -a 1 -x {2.0 7.0 82 ------- null} + -t 1.368 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 254 -a 1 -x {2.0 7.0 82 ------- null} r -t 1.36965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 233 -a 1 -x {2.0 7.0 77 ------- null} + -t 1.36965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 233 -a 1 -x {2.0 7.0 77 ------- null} - -t 1.36965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 233 -a 1 -x {2.0 7.0 77 ------- null} h -t 1.36965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 233 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.36965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 226 -a 1 -x {2.0 7.0 75 ------- null} r -t 1.36965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 231 -a 1 -x {1.0 6.0 117 ------- null} + -t 1.37 -s 1 -d 3 -p cbr -e 500 -c 1 -i 262 -a 1 -x {1.0 6.0 132 ------- null} - -t 1.37 -s 1 -d 3 -p cbr -e 500 -c 1 -i 262 -a 1 -x {1.0 6.0 132 ------- null} h -t 1.37 -s 1 -d 3 -p cbr -e 500 -c 1 -i 262 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.37165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 250 -a 1 -x {1.0 6.0 127 ------- null} h -t 1.37165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 250 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.37365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 235 -a 1 -x {1.0 6.0 120 ------- null} + -t 1.37365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 235 -a 1 -x {1.0 6.0 120 ------- null} - -t 1.37365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 235 -a 1 -x {1.0 6.0 120 ------- null} h -t 1.37365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 235 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.374 -s 1 -d 3 -p cbr -e 500 -c 1 -i 256 -a 1 -x {1.0 6.0 130 ------- null} + -t 1.374 -s 3 -d 4 -p cbr -e 500 -c 1 -i 256 -a 1 -x {1.0 6.0 130 ------- null} r -t 1.3753 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 257 -a 0 -x {0.0 5.0 17 ------- null} + -t 1.3753 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 257 -a 0 -x {0.0 5.0 17 ------- null} r -t 1.37531 -s 5 -d 4 -p ack -e 40 -c 0 -i 258 -a 0 -x {5.0 0.0 14 ------- null} + -t 1.37531 -s 4 -d 3 -p ack -e 40 -c 0 -i 258 -a 0 -x {5.0 0.0 14 ------- null} - -t 1.37531 -s 4 -d 3 -p ack -e 40 -c 0 -i 258 -a 0 -x {5.0 0.0 14 ------- null} h -t 1.37531 -s 4 -d 3 -p ack -e 40 -c 0 -i 258 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.37565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 249 -a 1 -x {2.0 7.0 81 ------- null} h -t 1.37565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 249 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.37765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 237 -a 1 -x {1.0 6.0 121 ------- null} + -t 1.37765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 237 -a 1 -x {1.0 6.0 121 ------- null} - -t 1.37765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 237 -a 1 -x {1.0 6.0 121 ------- null} h -t 1.37765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 237 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 263 -a 1 -x {2.0 7.0 84 ------- null} - -t 1.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 263 -a 1 -x {2.0 7.0 84 ------- null} h -t 1.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 263 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.38 -s 1 -d 3 -p cbr -e 500 -c 1 -i 264 -a 1 -x {1.0 6.0 133 ------- null} - -t 1.38 -s 1 -d 3 -p cbr -e 500 -c 1 -i 264 -a 1 -x {1.0 6.0 133 ------- null} h -t 1.38 -s 1 -d 3 -p cbr -e 500 -c 1 -i 264 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.38165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 230 -a 1 -x {2.0 7.0 76 ------- null} r -t 1.38165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 232 -a 1 -x {1.0 6.0 118 ------- null} - -t 1.38365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 252 -a 1 -x {1.0 6.0 128 ------- null} h -t 1.38365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 252 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.384 -s 1 -d 3 -p cbr -e 500 -c 1 -i 260 -a 1 -x {1.0 6.0 131 ------- null} + -t 1.384 -s 3 -d 4 -p cbr -e 500 -c 1 -i 260 -a 1 -x {1.0 6.0 131 ------- null} r -t 1.38563 -s 4 -d 3 -p ack -e 40 -c 0 -i 248 -a 0 -x {5.0 0.0 12 ------- null} + -t 1.38563 -s 3 -d 0 -p ack -e 40 -c 0 -i 248 -a 0 -x {5.0 0.0 12 ------- null} - -t 1.38563 -s 3 -d 0 -p ack -e 40 -c 0 -i 248 -a 0 -x {5.0 0.0 12 ------- null} h -t 1.38563 -s 3 -d 0 -p ack -e 40 -c 0 -i 248 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.38565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 236 -a 1 -x {2.0 7.0 78 ------- null} + -t 1.38565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 236 -a 1 -x {2.0 7.0 78 ------- null} - -t 1.38565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 236 -a 1 -x {2.0 7.0 78 ------- null} h -t 1.38565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 236 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.38565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 234 -a 1 -x {1.0 6.0 119 ------- null} r -t 1.3857 -s 3 -d 0 -p ack -e 40 -c 0 -i 244 -a 0 -x {5.0 0.0 11 ------- null} + -t 1.3857 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {0.0 5.0 19 ------- null} - -t 1.3857 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {0.0 5.0 19 ------- null} h -t 1.3857 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.3873 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 261 -a 0 -x {0.0 5.0 18 ------- null} + -t 1.3873 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 261 -a 0 -x {0.0 5.0 18 ------- null} - -t 1.38765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 255 -a 1 -x {1.0 6.0 129 ------- null} h -t 1.38765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 255 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.388 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 259 -a 1 -x {2.0 7.0 83 ------- null} + -t 1.388 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 259 -a 1 -x {2.0 7.0 83 ------- null} r -t 1.38965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 239 -a 1 -x {1.0 6.0 122 ------- null} + -t 1.38965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 239 -a 1 -x {1.0 6.0 122 ------- null} - -t 1.38965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 239 -a 1 -x {1.0 6.0 122 ------- null} h -t 1.38965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 239 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.39 -s 1 -d 3 -p cbr -e 500 -c 1 -i 266 -a 1 -x {1.0 6.0 134 ------- null} - -t 1.39 -s 1 -d 3 -p cbr -e 500 -c 1 -i 266 -a 1 -x {1.0 6.0 134 ------- null} h -t 1.39 -s 1 -d 3 -p cbr -e 500 -c 1 -i 266 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.39165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 254 -a 1 -x {2.0 7.0 82 ------- null} h -t 1.39165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 254 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.39365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 242 -a 1 -x {1.0 6.0 123 ------- null} + -t 1.39365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 242 -a 1 -x {1.0 6.0 123 ------- null} - -t 1.39365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 242 -a 1 -x {1.0 6.0 123 ------- null} h -t 1.39365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 242 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.394 -s 1 -d 3 -p cbr -e 500 -c 1 -i 262 -a 1 -x {1.0 6.0 132 ------- null} + -t 1.394 -s 3 -d 4 -p cbr -e 500 -c 1 -i 262 -a 1 -x {1.0 6.0 132 ------- null} r -t 1.39763 -s 4 -d 3 -p ack -e 40 -c 0 -i 251 -a 0 -x {5.0 0.0 13 ------- null} + -t 1.39763 -s 3 -d 0 -p ack -e 40 -c 0 -i 251 -a 0 -x {5.0 0.0 13 ------- null} - -t 1.39763 -s 3 -d 0 -p ack -e 40 -c 0 -i 251 -a 0 -x {5.0 0.0 13 ------- null} h -t 1.39763 -s 3 -d 0 -p ack -e 40 -c 0 -i 251 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.39765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 233 -a 1 -x {2.0 7.0 77 ------- null} r -t 1.39765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 235 -a 1 -x {1.0 6.0 120 ------- null} - -t 1.39965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 256 -a 1 -x {1.0 6.0 130 ------- null} h -t 1.39965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 256 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 267 -a 1 -x {2.0 7.0 85 ------- null} - -t 1.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 267 -a 1 -x {2.0 7.0 85 ------- null} h -t 1.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 267 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.4 -s 1 -d 3 -p cbr -e 500 -c 1 -i 268 -a 1 -x {1.0 6.0 135 ------- null} - -t 1.4 -s 1 -d 3 -p cbr -e 500 -c 1 -i 268 -a 1 -x {1.0 6.0 135 ------- null} h -t 1.4 -s 1 -d 3 -p cbr -e 500 -c 1 -i 268 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.40165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 241 -a 1 -x {2.0 7.0 79 ------- null} + -t 1.40165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 241 -a 1 -x {2.0 7.0 79 ------- null} - -t 1.40165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 241 -a 1 -x {2.0 7.0 79 ------- null} h -t 1.40165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 241 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.40165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 237 -a 1 -x {1.0 6.0 121 ------- null} - -t 1.40365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 257 -a 0 -x {0.0 5.0 17 ------- null} h -t 1.40365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 257 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.404 -s 1 -d 3 -p cbr -e 500 -c 1 -i 264 -a 1 -x {1.0 6.0 133 ------- null} + -t 1.404 -s 3 -d 4 -p cbr -e 500 -c 1 -i 264 -a 1 -x {1.0 6.0 133 ------- null} r -t 1.40565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 243 -a 1 -x {1.0 6.0 124 ------- null} + -t 1.40565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 243 -a 1 -x {1.0 6.0 124 ------- null} - -t 1.40565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 243 -a 1 -x {1.0 6.0 124 ------- null} h -t 1.40565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 243 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.4057 -s 3 -d 0 -p ack -e 40 -c 0 -i 248 -a 0 -x {5.0 0.0 12 ------- null} + -t 1.4057 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {0.0 5.0 20 ------- null} - -t 1.4057 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {0.0 5.0 20 ------- null} h -t 1.4057 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.4073 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {0.0 5.0 19 ------- null} + -t 1.4073 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {0.0 5.0 19 ------- null} r -t 1.408 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 263 -a 1 -x {2.0 7.0 84 ------- null} + -t 1.408 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 263 -a 1 -x {2.0 7.0 84 ------- null} r -t 1.40963 -s 4 -d 3 -p ack -e 40 -c 0 -i 253 -a 0 -x {5.0 0.0 14 ------- null} + -t 1.40963 -s 3 -d 0 -p ack -e 40 -c 0 -i 253 -a 0 -x {5.0 0.0 14 ------- null} - -t 1.40963 -s 3 -d 0 -p ack -e 40 -c 0 -i 253 -a 0 -x {5.0 0.0 14 ------- null} h -t 1.40963 -s 3 -d 0 -p ack -e 40 -c 0 -i 253 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.40965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 246 -a 1 -x {1.0 6.0 125 ------- null} + -t 1.40965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 246 -a 1 -x {1.0 6.0 125 ------- null} - -t 1.40965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 246 -a 1 -x {1.0 6.0 125 ------- null} h -t 1.40965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 246 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.41 -s 1 -d 3 -p cbr -e 500 -c 1 -i 270 -a 1 -x {1.0 6.0 136 ------- null} - -t 1.41 -s 1 -d 3 -p cbr -e 500 -c 1 -i 270 -a 1 -x {1.0 6.0 136 ------- null} h -t 1.41 -s 1 -d 3 -p cbr -e 500 -c 1 -i 270 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.41165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 260 -a 1 -x {1.0 6.0 131 ------- null} h -t 1.41165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 260 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.41365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 236 -a 1 -x {2.0 7.0 78 ------- null} r -t 1.41365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 239 -a 1 -x {1.0 6.0 122 ------- null} r -t 1.414 -s 1 -d 3 -p cbr -e 500 -c 1 -i 266 -a 1 -x {1.0 6.0 134 ------- null} + -t 1.414 -s 3 -d 4 -p cbr -e 500 -c 1 -i 266 -a 1 -x {1.0 6.0 134 ------- null} - -t 1.41565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 261 -a 0 -x {0.0 5.0 18 ------- null} h -t 1.41565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 261 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.41765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 245 -a 1 -x {2.0 7.0 80 ------- null} + -t 1.41765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 245 -a 1 -x {2.0 7.0 80 ------- null} - -t 1.41765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 245 -a 1 -x {2.0 7.0 80 ------- null} h -t 1.41765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 245 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.41765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 242 -a 1 -x {1.0 6.0 123 ------- null} r -t 1.4177 -s 3 -d 0 -p ack -e 40 -c 0 -i 251 -a 0 -x {5.0 0.0 13 ------- null} + -t 1.4177 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {0.0 5.0 21 ------- null} - -t 1.4177 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {0.0 5.0 21 ------- null} h -t 1.4177 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {0.0 5.0 -1 ------- null} + -t 1.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 272 -a 1 -x {2.0 7.0 86 ------- null} - -t 1.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 272 -a 1 -x {2.0 7.0 86 ------- null} h -t 1.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 272 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.42 -s 1 -d 3 -p cbr -e 500 -c 1 -i 273 -a 1 -x {1.0 6.0 137 ------- null} - -t 1.42 -s 1 -d 3 -p cbr -e 500 -c 1 -i 273 -a 1 -x {1.0 6.0 137 ------- null} h -t 1.42 -s 1 -d 3 -p cbr -e 500 -c 1 -i 273 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.42165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 247 -a 1 -x {1.0 6.0 126 ------- null} + -t 1.42165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 247 -a 1 -x {1.0 6.0 126 ------- null} - -t 1.42165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 247 -a 1 -x {1.0 6.0 126 ------- null} h -t 1.42165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 247 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.42365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 259 -a 1 -x {2.0 7.0 83 ------- null} h -t 1.42365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 259 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.424 -s 1 -d 3 -p cbr -e 500 -c 1 -i 268 -a 1 -x {1.0 6.0 135 ------- null} + -t 1.424 -s 3 -d 4 -p cbr -e 500 -c 1 -i 268 -a 1 -x {1.0 6.0 135 ------- null} r -t 1.42563 -s 4 -d 3 -p ack -e 40 -c 0 -i 258 -a 0 -x {5.0 0.0 14 ------- null} + -t 1.42563 -s 3 -d 0 -p ack -e 40 -c 0 -i 258 -a 0 -x {5.0 0.0 14 ------- null} - -t 1.42563 -s 3 -d 0 -p ack -e 40 -c 0 -i 258 -a 0 -x {5.0 0.0 14 ------- null} h -t 1.42563 -s 3 -d 0 -p ack -e 40 -c 0 -i 258 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.42565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 250 -a 1 -x {1.0 6.0 127 ------- null} + -t 1.42565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 250 -a 1 -x {1.0 6.0 127 ------- null} - -t 1.42565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 250 -a 1 -x {1.0 6.0 127 ------- null} h -t 1.42565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 250 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.4273 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {0.0 5.0 20 ------- null} + -t 1.4273 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {0.0 5.0 20 ------- null} r -t 1.428 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 267 -a 1 -x {2.0 7.0 85 ------- null} + -t 1.428 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 267 -a 1 -x {2.0 7.0 85 ------- null} r -t 1.42965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 241 -a 1 -x {2.0 7.0 79 ------- null} r -t 1.42965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 243 -a 1 -x {1.0 6.0 124 ------- null} r -t 1.4297 -s 3 -d 0 -p ack -e 40 -c 0 -i 253 -a 0 -x {5.0 0.0 14 ------- null} + -t 1.4297 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {0.0 5.0 22 ------- null} - -t 1.4297 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {0.0 5.0 22 ------- null} h -t 1.4297 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {0.0 5.0 -1 ------- null} + -t 1.43 -s 1 -d 3 -p cbr -e 500 -c 1 -i 275 -a 1 -x {1.0 6.0 138 ------- null} - -t 1.43 -s 1 -d 3 -p cbr -e 500 -c 1 -i 275 -a 1 -x {1.0 6.0 138 ------- null} h -t 1.43 -s 1 -d 3 -p cbr -e 500 -c 1 -i 275 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.43165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 262 -a 1 -x {1.0 6.0 132 ------- null} h -t 1.43165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 262 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.43365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 249 -a 1 -x {2.0 7.0 81 ------- null} + -t 1.43365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 249 -a 1 -x {2.0 7.0 81 ------- null} - -t 1.43365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 249 -a 1 -x {2.0 7.0 81 ------- null} h -t 1.43365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 249 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.43365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 246 -a 1 -x {1.0 6.0 125 ------- null} r -t 1.434 -s 1 -d 3 -p cbr -e 500 -c 1 -i 270 -a 1 -x {1.0 6.0 136 ------- null} + -t 1.434 -s 3 -d 4 -p cbr -e 500 -c 1 -i 270 -a 1 -x {1.0 6.0 136 ------- null} - -t 1.43565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 264 -a 1 -x {1.0 6.0 133 ------- null} h -t 1.43565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 264 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.43765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 252 -a 1 -x {1.0 6.0 128 ------- null} + -t 1.43765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 252 -a 1 -x {1.0 6.0 128 ------- null} - -t 1.43765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 252 -a 1 -x {1.0 6.0 128 ------- null} h -t 1.43765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 252 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.4393 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {0.0 5.0 21 ------- null} + -t 1.4393 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {0.0 5.0 21 ------- null} - -t 1.43965 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {0.0 5.0 19 ------- null} h -t 1.43965 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {0.0 5.0 -1 ------- null} + -t 1.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 276 -a 1 -x {2.0 7.0 87 ------- null} - -t 1.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 276 -a 1 -x {2.0 7.0 87 ------- null} h -t 1.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 276 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.44 -s 1 -d 3 -p cbr -e 500 -c 1 -i 277 -a 1 -x {1.0 6.0 139 ------- null} - -t 1.44 -s 1 -d 3 -p cbr -e 500 -c 1 -i 277 -a 1 -x {1.0 6.0 139 ------- null} h -t 1.44 -s 1 -d 3 -p cbr -e 500 -c 1 -i 277 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.44165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 255 -a 1 -x {1.0 6.0 129 ------- null} + -t 1.44165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 255 -a 1 -x {1.0 6.0 129 ------- null} - -t 1.44165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 255 -a 1 -x {1.0 6.0 129 ------- null} h -t 1.44165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 255 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.444 -s 1 -d 3 -p cbr -e 500 -c 1 -i 273 -a 1 -x {1.0 6.0 137 ------- null} + -t 1.444 -s 3 -d 4 -p cbr -e 500 -c 1 -i 273 -a 1 -x {1.0 6.0 137 ------- null} r -t 1.44565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 245 -a 1 -x {2.0 7.0 80 ------- null} r -t 1.44565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 247 -a 1 -x {1.0 6.0 126 ------- null} r -t 1.4457 -s 3 -d 0 -p ack -e 40 -c 0 -i 258 -a 0 -x {5.0 0.0 14 ------- null} - -t 1.44765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 263 -a 1 -x {2.0 7.0 84 ------- null} h -t 1.44765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 263 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.448 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 272 -a 1 -x {2.0 7.0 86 ------- null} + -t 1.448 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 272 -a 1 -x {2.0 7.0 86 ------- null} r -t 1.44965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 254 -a 1 -x {2.0 7.0 82 ------- null} + -t 1.44965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 254 -a 1 -x {2.0 7.0 82 ------- null} - -t 1.44965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 254 -a 1 -x {2.0 7.0 82 ------- null} h -t 1.44965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 254 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.44965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 250 -a 1 -x {1.0 6.0 127 ------- null} + -t 1.45 -s 1 -d 3 -p cbr -e 500 -c 1 -i 278 -a 1 -x {1.0 6.0 140 ------- null} - -t 1.45 -s 1 -d 3 -p cbr -e 500 -c 1 -i 278 -a 1 -x {1.0 6.0 140 ------- null} h -t 1.45 -s 1 -d 3 -p cbr -e 500 -c 1 -i 278 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.4513 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {0.0 5.0 22 ------- null} + -t 1.4513 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {0.0 5.0 22 ------- null} r -t 1.45365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 256 -a 1 -x {1.0 6.0 130 ------- null} + -t 1.45365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 256 -a 1 -x {1.0 6.0 130 ------- null} - -t 1.45365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 256 -a 1 -x {1.0 6.0 130 ------- null} h -t 1.45365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 256 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.454 -s 1 -d 3 -p cbr -e 500 -c 1 -i 275 -a 1 -x {1.0 6.0 138 ------- null} + -t 1.454 -s 3 -d 4 -p cbr -e 500 -c 1 -i 275 -a 1 -x {1.0 6.0 138 ------- null} d -t 1.454 -s 3 -d 4 -p cbr -e 500 -c 1 -i 275 -a 1 -x {1.0 6.0 138 ------- null} - -t 1.45565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 266 -a 1 -x {1.0 6.0 134 ------- null} h -t 1.45565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 266 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.45965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 268 -a 1 -x {1.0 6.0 135 ------- null} h -t 1.45965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 268 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 279 -a 1 -x {2.0 7.0 88 ------- null} - -t 1.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 279 -a 1 -x {2.0 7.0 88 ------- null} h -t 1.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 279 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.46 -s 1 -d 3 -p cbr -e 500 -c 1 -i 280 -a 1 -x {1.0 6.0 141 ------- null} - -t 1.46 -s 1 -d 3 -p cbr -e 500 -c 1 -i 280 -a 1 -x {1.0 6.0 141 ------- null} h -t 1.46 -s 1 -d 3 -p cbr -e 500 -c 1 -i 280 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.46165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 257 -a 0 -x {0.0 5.0 17 ------- null} + -t 1.46165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 257 -a 0 -x {0.0 5.0 17 ------- null} - -t 1.46165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 257 -a 0 -x {0.0 5.0 17 ------- null} h -t 1.46165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 257 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.46165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 249 -a 1 -x {2.0 7.0 81 ------- null} r -t 1.46165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 252 -a 1 -x {1.0 6.0 128 ------- null} - -t 1.46365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {0.0 5.0 20 ------- null} h -t 1.46365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.464 -s 1 -d 3 -p cbr -e 500 -c 1 -i 277 -a 1 -x {1.0 6.0 139 ------- null} + -t 1.464 -s 3 -d 4 -p cbr -e 500 -c 1 -i 277 -a 1 -x {1.0 6.0 139 ------- null} r -t 1.46565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 260 -a 1 -x {1.0 6.0 131 ------- null} + -t 1.46565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 260 -a 1 -x {1.0 6.0 131 ------- null} - -t 1.46565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 260 -a 1 -x {1.0 6.0 131 ------- null} h -t 1.46565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 260 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.46565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 255 -a 1 -x {1.0 6.0 129 ------- null} r -t 1.468 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 276 -a 1 -x {2.0 7.0 87 ------- null} + -t 1.468 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 276 -a 1 -x {2.0 7.0 87 ------- null} + -t 1.47 -s 1 -d 3 -p cbr -e 500 -c 1 -i 281 -a 1 -x {1.0 6.0 142 ------- null} - -t 1.47 -s 1 -d 3 -p cbr -e 500 -c 1 -i 281 -a 1 -x {1.0 6.0 142 ------- null} h -t 1.47 -s 1 -d 3 -p cbr -e 500 -c 1 -i 281 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.47165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 267 -a 1 -x {2.0 7.0 85 ------- null} h -t 1.47165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 267 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.47365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 261 -a 0 -x {0.0 5.0 18 ------- null} + -t 1.47365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 261 -a 0 -x {0.0 5.0 18 ------- null} - -t 1.47365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 261 -a 0 -x {0.0 5.0 18 ------- null} h -t 1.47365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 261 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.474 -s 1 -d 3 -p cbr -e 500 -c 1 -i 278 -a 1 -x {1.0 6.0 140 ------- null} + -t 1.474 -s 3 -d 4 -p cbr -e 500 -c 1 -i 278 -a 1 -x {1.0 6.0 140 ------- null} r -t 1.47765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 254 -a 1 -x {2.0 7.0 82 ------- null} r -t 1.47765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 256 -a 1 -x {1.0 6.0 130 ------- null} - -t 1.47965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 270 -a 1 -x {1.0 6.0 136 ------- null} h -t 1.47965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 270 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 282 -a 1 -x {2.0 7.0 89 ------- null} - -t 1.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 282 -a 1 -x {2.0 7.0 89 ------- null} h -t 1.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 282 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.48 -s 1 -d 3 -p cbr -e 500 -c 1 -i 283 -a 1 -x {1.0 6.0 143 ------- null} - -t 1.48 -s 1 -d 3 -p cbr -e 500 -c 1 -i 283 -a 1 -x {1.0 6.0 143 ------- null} h -t 1.48 -s 1 -d 3 -p cbr -e 500 -c 1 -i 283 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.48165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 259 -a 1 -x {2.0 7.0 83 ------- null} + -t 1.48165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 259 -a 1 -x {2.0 7.0 83 ------- null} - -t 1.48165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 259 -a 1 -x {2.0 7.0 83 ------- null} h -t 1.48165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 259 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.48325 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 257 -a 0 -x {0.0 5.0 17 ------- null} + -t 1.48325 -s 5 -d 4 -p ack -e 40 -c 0 -i 284 -a 0 -x {5.0 0.0 14 ------- null} - -t 1.48325 -s 5 -d 4 -p ack -e 40 -c 0 -i 284 -a 0 -x {5.0 0.0 14 ------- null} h -t 1.48325 -s 5 -d 4 -p ack -e 40 -c 0 -i 284 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.48365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {0.0 5.0 21 ------- null} h -t 1.48365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.484 -s 1 -d 3 -p cbr -e 500 -c 1 -i 280 -a 1 -x {1.0 6.0 141 ------- null} + -t 1.484 -s 3 -d 4 -p cbr -e 500 -c 1 -i 280 -a 1 -x {1.0 6.0 141 ------- null} r -t 1.48565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 262 -a 1 -x {1.0 6.0 132 ------- null} + -t 1.48565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 262 -a 1 -x {1.0 6.0 132 ------- null} - -t 1.48565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 262 -a 1 -x {1.0 6.0 132 ------- null} h -t 1.48565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 262 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.488 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 279 -a 1 -x {2.0 7.0 88 ------- null} + -t 1.488 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 279 -a 1 -x {2.0 7.0 88 ------- null} r -t 1.48965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 264 -a 1 -x {1.0 6.0 133 ------- null} + -t 1.48965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 264 -a 1 -x {1.0 6.0 133 ------- null} r -t 1.48965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 260 -a 1 -x {1.0 6.0 131 ------- null} - -t 1.48965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 264 -a 1 -x {1.0 6.0 133 ------- null} h -t 1.48965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 264 -a 1 -x {1.0 6.0 -1 ------- null} v -t 1.49 sim_annotation 1.49 16 6 Ack_14s + -t 1.49 -s 1 -d 3 -p cbr -e 500 -c 1 -i 285 -a 1 -x {1.0 6.0 144 ------- null} - -t 1.49 -s 1 -d 3 -p cbr -e 500 -c 1 -i 285 -a 1 -x {1.0 6.0 144 ------- null} h -t 1.49 -s 1 -d 3 -p cbr -e 500 -c 1 -i 285 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.49165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 273 -a 1 -x {1.0 6.0 137 ------- null} h -t 1.49165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 273 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.494 -s 1 -d 3 -p cbr -e 500 -c 1 -i 281 -a 1 -x {1.0 6.0 142 ------- null} + -t 1.494 -s 3 -d 4 -p cbr -e 500 -c 1 -i 281 -a 1 -x {1.0 6.0 142 ------- null} r -t 1.49525 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 261 -a 0 -x {0.0 5.0 18 ------- null} + -t 1.49525 -s 5 -d 4 -p ack -e 40 -c 0 -i 286 -a 0 -x {5.0 0.0 14 ------- null} - -t 1.49525 -s 5 -d 4 -p ack -e 40 -c 0 -i 286 -a 0 -x {5.0 0.0 14 ------- null} h -t 1.49525 -s 5 -d 4 -p ack -e 40 -c 0 -i 286 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.49565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 272 -a 1 -x {2.0 7.0 86 ------- null} h -t 1.49565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 272 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.49765 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {0.0 5.0 19 ------- null} + -t 1.49765 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {0.0 5.0 19 ------- null} - -t 1.49765 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {0.0 5.0 19 ------- null} h -t 1.49765 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {0.0 5.0 -1 ------- null} + -t 1.5 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 287 -a 1 -x {2.0 7.0 90 ------- null} - -t 1.5 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 287 -a 1 -x {2.0 7.0 90 ------- null} h -t 1.5 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 287 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.5 -s 1 -d 3 -p cbr -e 500 -c 1 -i 288 -a 1 -x {1.0 6.0 145 ------- null} - -t 1.5 -s 1 -d 3 -p cbr -e 500 -c 1 -i 288 -a 1 -x {1.0 6.0 145 ------- null} h -t 1.5 -s 1 -d 3 -p cbr -e 500 -c 1 -i 288 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.50331 -s 5 -d 4 -p ack -e 40 -c 0 -i 284 -a 0 -x {5.0 0.0 14 ------- null} + -t 1.50331 -s 4 -d 3 -p ack -e 40 -c 0 -i 284 -a 0 -x {5.0 0.0 14 ------- null} - -t 1.50331 -s 4 -d 3 -p ack -e 40 -c 0 -i 284 -a 0 -x {5.0 0.0 14 ------- null} h -t 1.50331 -s 4 -d 3 -p ack -e 40 -c 0 -i 284 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.50365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {0.0 5.0 22 ------- null} h -t 1.50365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.504 -s 1 -d 3 -p cbr -e 500 -c 1 -i 283 -a 1 -x {1.0 6.0 143 ------- null} + -t 1.504 -s 3 -d 4 -p cbr -e 500 -c 1 -i 283 -a 1 -x {1.0 6.0 143 ------- null} r -t 1.50565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 263 -a 1 -x {2.0 7.0 84 ------- null} + -t 1.50565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 263 -a 1 -x {2.0 7.0 84 ------- null} - -t 1.50565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 263 -a 1 -x {2.0 7.0 84 ------- null} h -t 1.50565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 263 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.508 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 282 -a 1 -x {2.0 7.0 89 ------- null} + -t 1.508 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 282 -a 1 -x {2.0 7.0 89 ------- null} r -t 1.50965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 266 -a 1 -x {1.0 6.0 134 ------- null} + -t 1.50965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 266 -a 1 -x {1.0 6.0 134 ------- null} - -t 1.50965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 266 -a 1 -x {1.0 6.0 134 ------- null} h -t 1.50965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 266 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.50965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 259 -a 1 -x {2.0 7.0 83 ------- null} r -t 1.50965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 262 -a 1 -x {1.0 6.0 132 ------- null} - -t 1.51165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 277 -a 1 -x {1.0 6.0 139 ------- null} h -t 1.51165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 277 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.51365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 268 -a 1 -x {1.0 6.0 135 ------- null} + -t 1.51365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 268 -a 1 -x {1.0 6.0 135 ------- null} r -t 1.51365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 264 -a 1 -x {1.0 6.0 133 ------- null} - -t 1.51365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 268 -a 1 -x {1.0 6.0 135 ------- null} h -t 1.51365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 268 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.514 -s 1 -d 3 -p cbr -e 500 -c 1 -i 285 -a 1 -x {1.0 6.0 144 ------- null} + -t 1.514 -s 3 -d 4 -p cbr -e 500 -c 1 -i 285 -a 1 -x {1.0 6.0 144 ------- null} r -t 1.51531 -s 5 -d 4 -p ack -e 40 -c 0 -i 286 -a 0 -x {5.0 0.0 14 ------- null} + -t 1.51531 -s 4 -d 3 -p ack -e 40 -c 0 -i 286 -a 0 -x {5.0 0.0 14 ------- null} - -t 1.51531 -s 4 -d 3 -p ack -e 40 -c 0 -i 286 -a 0 -x {5.0 0.0 14 ------- null} h -t 1.51531 -s 4 -d 3 -p ack -e 40 -c 0 -i 286 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.51565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 276 -a 1 -x {2.0 7.0 87 ------- null} h -t 1.51565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 276 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.51925 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {0.0 5.0 19 ------- null} + -t 1.51925 -s 5 -d 4 -p ack -e 40 -c 0 -i 289 -a 0 -x {5.0 0.0 14 ------- null} - -t 1.51925 -s 5 -d 4 -p ack -e 40 -c 0 -i 289 -a 0 -x {5.0 0.0 14 ------- null} h -t 1.51925 -s 5 -d 4 -p ack -e 40 -c 0 -i 289 -a 0 -x {5.0 0.0 -1 ------- null} + -t 1.52 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 290 -a 1 -x {2.0 7.0 91 ------- null} - -t 1.52 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 290 -a 1 -x {2.0 7.0 91 ------- null} h -t 1.52 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 290 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.52 -s 1 -d 3 -p cbr -e 500 -c 1 -i 291 -a 1 -x {1.0 6.0 146 ------- null} - -t 1.52 -s 1 -d 3 -p cbr -e 500 -c 1 -i 291 -a 1 -x {1.0 6.0 146 ------- null} h -t 1.52 -s 1 -d 3 -p cbr -e 500 -c 1 -i 291 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.52165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {0.0 5.0 20 ------- null} + -t 1.52165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {0.0 5.0 20 ------- null} - -t 1.52165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {0.0 5.0 20 ------- null} h -t 1.52165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {0.0 5.0 -1 ------- null} - -t 1.52365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 278 -a 1 -x {1.0 6.0 140 ------- null} h -t 1.52365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 278 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.524 -s 1 -d 3 -p cbr -e 500 -c 1 -i 288 -a 1 -x {1.0 6.0 145 ------- null} + -t 1.524 -s 3 -d 4 -p cbr -e 500 -c 1 -i 288 -a 1 -x {1.0 6.0 145 ------- null} - -t 1.52765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 280 -a 1 -x {1.0 6.0 141 ------- null} h -t 1.52765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 280 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.528 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 287 -a 1 -x {2.0 7.0 90 ------- null} + -t 1.528 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 287 -a 1 -x {2.0 7.0 90 ------- null} r -t 1.52965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 267 -a 1 -x {2.0 7.0 85 ------- null} + -t 1.52965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 267 -a 1 -x {2.0 7.0 85 ------- null} - -t 1.52965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 267 -a 1 -x {2.0 7.0 85 ------- null} h -t 1.52965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 267 -a 1 -x {2.0 7.0 -1 ------- null} - -t 1.53165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 279 -a 1 -x {2.0 7.0 88 ------- null} h -t 1.53165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 279 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.53365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 270 -a 1 -x {1.0 6.0 136 ------- null} + -t 1.53365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 270 -a 1 -x {1.0 6.0 136 ------- null} - -t 1.53365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 270 -a 1 -x {1.0 6.0 136 ------- null} h -t 1.53365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 270 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.53365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 263 -a 1 -x {2.0 7.0 84 ------- null} r -t 1.53365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 266 -a 1 -x {1.0 6.0 134 ------- null} r -t 1.53765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 268 -a 1 -x {1.0 6.0 135 ------- null} r -t 1.53931 -s 5 -d 4 -p ack -e 40 -c 0 -i 289 -a 0 -x {5.0 0.0 14 ------- null} + -t 1.53931 -s 4 -d 3 -p ack -e 40 -c 0 -i 289 -a 0 -x {5.0 0.0 14 ------- null} - -t 1.53931 -s 4 -d 3 -p ack -e 40 -c 0 -i 289 -a 0 -x {5.0 0.0 14 ------- null} h -t 1.53931 -s 4 -d 3 -p ack -e 40 -c 0 -i 289 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.53965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 281 -a 1 -x {1.0 6.0 142 ------- null} h -t 1.53965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 281 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.54 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 292 -a 1 -x {2.0 7.0 92 ------- null} - -t 1.54 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 292 -a 1 -x {2.0 7.0 92 ------- null} h -t 1.54 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 292 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.54 -s 1 -d 3 -p cbr -e 500 -c 1 -i 293 -a 1 -x {1.0 6.0 147 ------- null} - -t 1.54 -s 1 -d 3 -p cbr -e 500 -c 1 -i 293 -a 1 -x {1.0 6.0 147 ------- null} h -t 1.54 -s 1 -d 3 -p cbr -e 500 -c 1 -i 293 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.54165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {0.0 5.0 21 ------- null} + -t 1.54165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {0.0 5.0 21 ------- null} - -t 1.54165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {0.0 5.0 21 ------- null} h -t 1.54165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.54325 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {0.0 5.0 20 ------- null} + -t 1.54325 -s 5 -d 4 -p ack -e 40 -c 0 -i 294 -a 0 -x {5.0 0.0 14 ------- null} - -t 1.54325 -s 5 -d 4 -p ack -e 40 -c 0 -i 294 -a 0 -x {5.0 0.0 14 ------- null} h -t 1.54325 -s 5 -d 4 -p ack -e 40 -c 0 -i 294 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.54365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 283 -a 1 -x {1.0 6.0 143 ------- null} h -t 1.54365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 283 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.544 -s 1 -d 3 -p cbr -e 500 -c 1 -i 291 -a 1 -x {1.0 6.0 146 ------- null} + -t 1.544 -s 3 -d 4 -p cbr -e 500 -c 1 -i 291 -a 1 -x {1.0 6.0 146 ------- null} r -t 1.54565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 273 -a 1 -x {1.0 6.0 137 ------- null} + -t 1.54565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 273 -a 1 -x {1.0 6.0 137 ------- null} - -t 1.54565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 273 -a 1 -x {1.0 6.0 137 ------- null} h -t 1.54565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 273 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.54765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 282 -a 1 -x {2.0 7.0 89 ------- null} h -t 1.54765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 282 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.548 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 290 -a 1 -x {2.0 7.0 91 ------- null} + -t 1.548 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 290 -a 1 -x {2.0 7.0 91 ------- null} r -t 1.55363 -s 4 -d 3 -p ack -e 40 -c 0 -i 284 -a 0 -x {5.0 0.0 14 ------- null} + -t 1.55363 -s 3 -d 0 -p ack -e 40 -c 0 -i 284 -a 0 -x {5.0 0.0 14 ------- null} - -t 1.55363 -s 3 -d 0 -p ack -e 40 -c 0 -i 284 -a 0 -x {5.0 0.0 14 ------- null} h -t 1.55363 -s 3 -d 0 -p ack -e 40 -c 0 -i 284 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.55365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 272 -a 1 -x {2.0 7.0 86 ------- null} + -t 1.55365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 272 -a 1 -x {2.0 7.0 86 ------- null} - -t 1.55365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 272 -a 1 -x {2.0 7.0 86 ------- null} h -t 1.55365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 272 -a 1 -x {2.0 7.0 -1 ------- null} - -t 1.55565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 285 -a 1 -x {1.0 6.0 144 ------- null} h -t 1.55565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 285 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.55765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 267 -a 1 -x {2.0 7.0 85 ------- null} r -t 1.55765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 270 -a 1 -x {1.0 6.0 136 ------- null} - -t 1.55965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 288 -a 1 -x {1.0 6.0 145 ------- null} h -t 1.55965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 288 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.56 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 295 -a 1 -x {2.0 7.0 93 ------- null} - -t 1.56 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 295 -a 1 -x {2.0 7.0 93 ------- null} h -t 1.56 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 295 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.56 -s 1 -d 3 -p cbr -e 500 -c 1 -i 296 -a 1 -x {1.0 6.0 148 ------- null} - -t 1.56 -s 1 -d 3 -p cbr -e 500 -c 1 -i 296 -a 1 -x {1.0 6.0 148 ------- null} h -t 1.56 -s 1 -d 3 -p cbr -e 500 -c 1 -i 296 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.56165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {0.0 5.0 22 ------- null} + -t 1.56165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {0.0 5.0 22 ------- null} - -t 1.56165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {0.0 5.0 22 ------- null} h -t 1.56165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.56325 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {0.0 5.0 21 ------- null} + -t 1.56325 -s 5 -d 4 -p ack -e 40 -c 0 -i 297 -a 0 -x {5.0 0.0 14 ------- null} - -t 1.56325 -s 5 -d 4 -p ack -e 40 -c 0 -i 297 -a 0 -x {5.0 0.0 14 ------- null} h -t 1.56325 -s 5 -d 4 -p ack -e 40 -c 0 -i 297 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.56331 -s 5 -d 4 -p ack -e 40 -c 0 -i 294 -a 0 -x {5.0 0.0 14 ------- null} + -t 1.56331 -s 4 -d 3 -p ack -e 40 -c 0 -i 294 -a 0 -x {5.0 0.0 14 ------- null} - -t 1.56331 -s 4 -d 3 -p ack -e 40 -c 0 -i 294 -a 0 -x {5.0 0.0 14 ------- null} h -t 1.56331 -s 4 -d 3 -p ack -e 40 -c 0 -i 294 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.56365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 287 -a 1 -x {2.0 7.0 90 ------- null} h -t 1.56365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 287 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.564 -s 1 -d 3 -p cbr -e 500 -c 1 -i 293 -a 1 -x {1.0 6.0 147 ------- null} + -t 1.564 -s 3 -d 4 -p cbr -e 500 -c 1 -i 293 -a 1 -x {1.0 6.0 147 ------- null} r -t 1.56563 -s 4 -d 3 -p ack -e 40 -c 0 -i 286 -a 0 -x {5.0 0.0 14 ------- null} + -t 1.56563 -s 3 -d 0 -p ack -e 40 -c 0 -i 286 -a 0 -x {5.0 0.0 14 ------- null} - -t 1.56563 -s 3 -d 0 -p ack -e 40 -c 0 -i 286 -a 0 -x {5.0 0.0 14 ------- null} h -t 1.56563 -s 3 -d 0 -p ack -e 40 -c 0 -i 286 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.56565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 277 -a 1 -x {1.0 6.0 139 ------- null} + -t 1.56565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 277 -a 1 -x {1.0 6.0 139 ------- null} - -t 1.56565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 277 -a 1 -x {1.0 6.0 139 ------- null} h -t 1.56565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 277 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.568 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 292 -a 1 -x {2.0 7.0 92 ------- null} + -t 1.568 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 292 -a 1 -x {2.0 7.0 92 ------- null} r -t 1.56965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 273 -a 1 -x {1.0 6.0 137 ------- null} - -t 1.57165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 291 -a 1 -x {1.0 6.0 146 ------- null} h -t 1.57165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 291 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.57365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 276 -a 1 -x {2.0 7.0 87 ------- null} + -t 1.57365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 276 -a 1 -x {2.0 7.0 87 ------- null} - -t 1.57365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 276 -a 1 -x {2.0 7.0 87 ------- null} h -t 1.57365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 276 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.5737 -s 3 -d 0 -p ack -e 40 -c 0 -i 284 -a 0 -x {5.0 0.0 14 ------- null} - -t 1.57565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 290 -a 1 -x {2.0 7.0 91 ------- null} h -t 1.57565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 290 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.57765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 278 -a 1 -x {1.0 6.0 140 ------- null} + -t 1.57765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 278 -a 1 -x {1.0 6.0 140 ------- null} - -t 1.57765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 278 -a 1 -x {1.0 6.0 140 ------- null} h -t 1.57765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 278 -a 1 -x {1.0 6.0 -1 ------- null} v -t 1.5800000000000001 sim_annotation 1.5800000000000001 17 Send Packet_15 to 22 + -t 1.58 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 298 -a 1 -x {2.0 7.0 94 ------- null} - -t 1.58 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 298 -a 1 -x {2.0 7.0 94 ------- null} h -t 1.58 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 298 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.58 -s 1 -d 3 -p cbr -e 500 -c 1 -i 299 -a 1 -x {1.0 6.0 149 ------- null} - -t 1.58 -s 1 -d 3 -p cbr -e 500 -c 1 -i 299 -a 1 -x {1.0 6.0 149 ------- null} h -t 1.58 -s 1 -d 3 -p cbr -e 500 -c 1 -i 299 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.58165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 280 -a 1 -x {1.0 6.0 141 ------- null} + -t 1.58165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 280 -a 1 -x {1.0 6.0 141 ------- null} r -t 1.58165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 272 -a 1 -x {2.0 7.0 86 ------- null} - -t 1.58165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 280 -a 1 -x {1.0 6.0 141 ------- null} h -t 1.58165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 280 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.58325 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {0.0 5.0 22 ------- null} + -t 1.58325 -s 5 -d 4 -p ack -e 40 -c 0 -i 300 -a 0 -x {5.0 0.0 14 ------- null} - -t 1.58325 -s 5 -d 4 -p ack -e 40 -c 0 -i 300 -a 0 -x {5.0 0.0 14 ------- null} h -t 1.58325 -s 5 -d 4 -p ack -e 40 -c 0 -i 300 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.58331 -s 5 -d 4 -p ack -e 40 -c 0 -i 297 -a 0 -x {5.0 0.0 14 ------- null} + -t 1.58331 -s 4 -d 3 -p ack -e 40 -c 0 -i 297 -a 0 -x {5.0 0.0 14 ------- null} - -t 1.58331 -s 4 -d 3 -p ack -e 40 -c 0 -i 297 -a 0 -x {5.0 0.0 14 ------- null} h -t 1.58331 -s 4 -d 3 -p ack -e 40 -c 0 -i 297 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.58365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 293 -a 1 -x {1.0 6.0 147 ------- null} h -t 1.58365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 293 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.584 -s 1 -d 3 -p cbr -e 500 -c 1 -i 296 -a 1 -x {1.0 6.0 148 ------- null} + -t 1.584 -s 3 -d 4 -p cbr -e 500 -c 1 -i 296 -a 1 -x {1.0 6.0 148 ------- null} r -t 1.5857 -s 3 -d 0 -p ack -e 40 -c 0 -i 286 -a 0 -x {5.0 0.0 14 ------- null} + -t 1.5857 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 301 -a 0 -x {0.0 5.0 15 ------- null} - -t 1.5857 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 301 -a 0 -x {0.0 5.0 15 ------- null} h -t 1.5857 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 301 -a 0 -x {0.0 5.0 -1 ------- null} + -t 1.5857 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {0.0 5.0 16 ------- null} + -t 1.5857 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {0.0 5.0 17 ------- null} + -t 1.5857 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {0.0 5.0 18 ------- null} + -t 1.5857 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {0.0 5.0 19 ------- null} + -t 1.5857 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {0.0 5.0 20 ------- null} + -t 1.5857 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {0.0 5.0 21 ------- null} + -t 1.5857 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {0.0 5.0 22 ------- null} - -t 1.5873 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {0.0 5.0 16 ------- null} h -t 1.5873 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {0.0 5.0 -1 ------- null} - -t 1.58765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 292 -a 1 -x {2.0 7.0 92 ------- null} h -t 1.58765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 292 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.588 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 295 -a 1 -x {2.0 7.0 93 ------- null} + -t 1.588 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 295 -a 1 -x {2.0 7.0 93 ------- null} - -t 1.5889 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {0.0 5.0 17 ------- null} h -t 1.5889 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.58963 -s 4 -d 3 -p ack -e 40 -c 0 -i 289 -a 0 -x {5.0 0.0 14 ------- null} + -t 1.58963 -s 3 -d 0 -p ack -e 40 -c 0 -i 289 -a 0 -x {5.0 0.0 14 ------- null} - -t 1.58963 -s 3 -d 0 -p ack -e 40 -c 0 -i 289 -a 0 -x {5.0 0.0 14 ------- null} h -t 1.58963 -s 3 -d 0 -p ack -e 40 -c 0 -i 289 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.58965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 279 -a 1 -x {2.0 7.0 88 ------- null} + -t 1.58965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 279 -a 1 -x {2.0 7.0 88 ------- null} - -t 1.58965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 279 -a 1 -x {2.0 7.0 88 ------- null} h -t 1.58965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 279 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.58965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 277 -a 1 -x {1.0 6.0 139 ------- null} - -t 1.5905 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {0.0 5.0 18 ------- null} h -t 1.5905 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {0.0 5.0 -1 ------- null} - -t 1.5921 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {0.0 5.0 19 ------- null} h -t 1.5921 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.59365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 281 -a 1 -x {1.0 6.0 142 ------- null} + -t 1.59365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 281 -a 1 -x {1.0 6.0 142 ------- null} - -t 1.59365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 281 -a 1 -x {1.0 6.0 142 ------- null} h -t 1.59365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 281 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.5937 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {0.0 5.0 20 ------- null} h -t 1.5937 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {0.0 5.0 -1 ------- null} - -t 1.5953 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {0.0 5.0 21 ------- null} h -t 1.5953 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {0.0 5.0 -1 ------- null} - -t 1.59565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 296 -a 1 -x {1.0 6.0 148 ------- null} h -t 1.59565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 296 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.5969 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {0.0 5.0 22 ------- null} h -t 1.5969 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.59765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 283 -a 1 -x {1.0 6.0 143 ------- null} + -t 1.59765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 283 -a 1 -x {1.0 6.0 143 ------- null} - -t 1.59765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 283 -a 1 -x {1.0 6.0 143 ------- null} h -t 1.59765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 283 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.59965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 295 -a 1 -x {2.0 7.0 93 ------- null} h -t 1.59965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 295 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.6 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 309 -a 1 -x {2.0 7.0 95 ------- null} - -t 1.6 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 309 -a 1 -x {2.0 7.0 95 ------- null} h -t 1.6 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 309 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.6 -s 1 -d 3 -p cbr -e 500 -c 1 -i 310 -a 1 -x {1.0 6.0 150 ------- null} - -t 1.6 -s 1 -d 3 -p cbr -e 500 -c 1 -i 310 -a 1 -x {1.0 6.0 150 ------- null} h -t 1.6 -s 1 -d 3 -p cbr -e 500 -c 1 -i 310 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.60165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 276 -a 1 -x {2.0 7.0 87 ------- null} r -t 1.60165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 278 -a 1 -x {1.0 6.0 140 ------- null} r -t 1.60331 -s 5 -d 4 -p ack -e 40 -c 0 -i 300 -a 0 -x {5.0 0.0 14 ------- null} + -t 1.60331 -s 4 -d 3 -p ack -e 40 -c 0 -i 300 -a 0 -x {5.0 0.0 14 ------- null} - -t 1.60331 -s 4 -d 3 -p ack -e 40 -c 0 -i 300 -a 0 -x {5.0 0.0 14 ------- null} h -t 1.60331 -s 4 -d 3 -p ack -e 40 -c 0 -i 300 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.604 -s 1 -d 3 -p cbr -e 500 -c 1 -i 299 -a 1 -x {1.0 6.0 149 ------- null} + -t 1.604 -s 3 -d 4 -p cbr -e 500 -c 1 -i 299 -a 1 -x {1.0 6.0 149 ------- null} r -t 1.60565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 282 -a 1 -x {2.0 7.0 89 ------- null} + -t 1.60565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 282 -a 1 -x {2.0 7.0 89 ------- null} - -t 1.60565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 282 -a 1 -x {2.0 7.0 89 ------- null} h -t 1.60565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 282 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.60565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 280 -a 1 -x {1.0 6.0 141 ------- null} r -t 1.6073 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 301 -a 0 -x {0.0 5.0 15 ------- null} + -t 1.6073 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 301 -a 0 -x {0.0 5.0 15 ------- null} - -t 1.60765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 299 -a 1 -x {1.0 6.0 149 ------- null} h -t 1.60765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 299 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.608 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 298 -a 1 -x {2.0 7.0 94 ------- null} + -t 1.608 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 298 -a 1 -x {2.0 7.0 94 ------- null} r -t 1.6089 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {0.0 5.0 16 ------- null} + -t 1.6089 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {0.0 5.0 16 ------- null} r -t 1.60965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 285 -a 1 -x {1.0 6.0 144 ------- null} + -t 1.60965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 285 -a 1 -x {1.0 6.0 144 ------- null} - -t 1.60965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 285 -a 1 -x {1.0 6.0 144 ------- null} h -t 1.60965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 285 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.6097 -s 3 -d 0 -p ack -e 40 -c 0 -i 289 -a 0 -x {5.0 0.0 14 ------- null} r -t 1.6105 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {0.0 5.0 17 ------- null} + -t 1.6105 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {0.0 5.0 17 ------- null} - -t 1.61165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 301 -a 0 -x {0.0 5.0 15 ------- null} h -t 1.61165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 301 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.6121 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {0.0 5.0 18 ------- null} + -t 1.6121 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {0.0 5.0 18 ------- null} r -t 1.61363 -s 4 -d 3 -p ack -e 40 -c 0 -i 294 -a 0 -x {5.0 0.0 14 ------- null} + -t 1.61363 -s 3 -d 0 -p ack -e 40 -c 0 -i 294 -a 0 -x {5.0 0.0 14 ------- null} - -t 1.61363 -s 3 -d 0 -p ack -e 40 -c 0 -i 294 -a 0 -x {5.0 0.0 14 ------- null} h -t 1.61363 -s 3 -d 0 -p ack -e 40 -c 0 -i 294 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.61365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 288 -a 1 -x {1.0 6.0 145 ------- null} + -t 1.61365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 288 -a 1 -x {1.0 6.0 145 ------- null} - -t 1.61365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 288 -a 1 -x {1.0 6.0 145 ------- null} h -t 1.61365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 288 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.6137 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {0.0 5.0 19 ------- null} + -t 1.6137 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {0.0 5.0 19 ------- null} r -t 1.6153 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {0.0 5.0 20 ------- null} + -t 1.6153 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {0.0 5.0 20 ------- null} r -t 1.6169 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {0.0 5.0 21 ------- null} + -t 1.6169 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {0.0 5.0 21 ------- null} r -t 1.61765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 279 -a 1 -x {2.0 7.0 88 ------- null} r -t 1.61765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 281 -a 1 -x {1.0 6.0 142 ------- null} r -t 1.6185 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {0.0 5.0 22 ------- null} + -t 1.6185 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {0.0 5.0 22 ------- null} - -t 1.61965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 298 -a 1 -x {2.0 7.0 94 ------- null} h -t 1.61965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 298 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.62 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 311 -a 1 -x {2.0 7.0 96 ------- null} - -t 1.62 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 311 -a 1 -x {2.0 7.0 96 ------- null} h -t 1.62 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 311 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.62 -s 1 -d 3 -p cbr -e 500 -c 1 -i 312 -a 1 -x {1.0 6.0 151 ------- null} - -t 1.62 -s 1 -d 3 -p cbr -e 500 -c 1 -i 312 -a 1 -x {1.0 6.0 151 ------- null} h -t 1.62 -s 1 -d 3 -p cbr -e 500 -c 1 -i 312 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.62165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 287 -a 1 -x {2.0 7.0 90 ------- null} + -t 1.62165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 287 -a 1 -x {2.0 7.0 90 ------- null} - -t 1.62165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 287 -a 1 -x {2.0 7.0 90 ------- null} h -t 1.62165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 287 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.62165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 283 -a 1 -x {1.0 6.0 143 ------- null} r -t 1.624 -s 1 -d 3 -p cbr -e 500 -c 1 -i 310 -a 1 -x {1.0 6.0 150 ------- null} + -t 1.624 -s 3 -d 4 -p cbr -e 500 -c 1 -i 310 -a 1 -x {1.0 6.0 150 ------- null} r -t 1.62565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 291 -a 1 -x {1.0 6.0 146 ------- null} + -t 1.62565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 291 -a 1 -x {1.0 6.0 146 ------- null} - -t 1.62565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 291 -a 1 -x {1.0 6.0 146 ------- null} h -t 1.62565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 291 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.62765 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {0.0 5.0 16 ------- null} h -t 1.62765 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.628 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 309 -a 1 -x {2.0 7.0 95 ------- null} + -t 1.628 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 309 -a 1 -x {2.0 7.0 95 ------- null} r -t 1.63363 -s 4 -d 3 -p ack -e 40 -c 0 -i 297 -a 0 -x {5.0 0.0 14 ------- null} + -t 1.63363 -s 3 -d 0 -p ack -e 40 -c 0 -i 297 -a 0 -x {5.0 0.0 14 ------- null} - -t 1.63363 -s 3 -d 0 -p ack -e 40 -c 0 -i 297 -a 0 -x {5.0 0.0 14 ------- null} h -t 1.63363 -s 3 -d 0 -p ack -e 40 -c 0 -i 297 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.63365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 290 -a 1 -x {2.0 7.0 91 ------- null} + -t 1.63365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 290 -a 1 -x {2.0 7.0 91 ------- null} - -t 1.63365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 290 -a 1 -x {2.0 7.0 91 ------- null} h -t 1.63365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 290 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.63365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 282 -a 1 -x {2.0 7.0 89 ------- null} r -t 1.63365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 285 -a 1 -x {1.0 6.0 144 ------- null} r -t 1.6337 -s 3 -d 0 -p ack -e 40 -c 0 -i 294 -a 0 -x {5.0 0.0 14 ------- null} - -t 1.63565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {0.0 5.0 17 ------- null} h -t 1.63565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.63765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 293 -a 1 -x {1.0 6.0 147 ------- null} + -t 1.63765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 293 -a 1 -x {1.0 6.0 147 ------- null} - -t 1.63765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 293 -a 1 -x {1.0 6.0 147 ------- null} h -t 1.63765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 293 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.63765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 288 -a 1 -x {1.0 6.0 145 ------- null} + -t 1.64 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 313 -a 1 -x {2.0 7.0 97 ------- null} - -t 1.64 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 313 -a 1 -x {2.0 7.0 97 ------- null} h -t 1.64 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 313 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.64 -s 1 -d 3 -p cbr -e 500 -c 1 -i 314 -a 1 -x {1.0 6.0 152 ------- null} - -t 1.64 -s 1 -d 3 -p cbr -e 500 -c 1 -i 314 -a 1 -x {1.0 6.0 152 ------- null} h -t 1.64 -s 1 -d 3 -p cbr -e 500 -c 1 -i 314 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.64365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {0.0 5.0 18 ------- null} h -t 1.64365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.644 -s 1 -d 3 -p cbr -e 500 -c 1 -i 312 -a 1 -x {1.0 6.0 151 ------- null} + -t 1.644 -s 3 -d 4 -p cbr -e 500 -c 1 -i 312 -a 1 -x {1.0 6.0 151 ------- null} r -t 1.64565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 292 -a 1 -x {2.0 7.0 92 ------- null} + -t 1.64565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 292 -a 1 -x {2.0 7.0 92 ------- null} - -t 1.64565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 292 -a 1 -x {2.0 7.0 92 ------- null} h -t 1.64565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 292 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.648 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 311 -a 1 -x {2.0 7.0 96 ------- null} + -t 1.648 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 311 -a 1 -x {2.0 7.0 96 ------- null} r -t 1.64965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 296 -a 1 -x {1.0 6.0 148 ------- null} + -t 1.64965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 296 -a 1 -x {1.0 6.0 148 ------- null} - -t 1.64965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 296 -a 1 -x {1.0 6.0 148 ------- null} h -t 1.64965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 296 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.64965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 287 -a 1 -x {2.0 7.0 90 ------- null} r -t 1.64965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 291 -a 1 -x {1.0 6.0 146 ------- null} - -t 1.65165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {0.0 5.0 19 ------- null} h -t 1.65165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.65363 -s 4 -d 3 -p ack -e 40 -c 0 -i 300 -a 0 -x {5.0 0.0 14 ------- null} + -t 1.65363 -s 3 -d 0 -p ack -e 40 -c 0 -i 300 -a 0 -x {5.0 0.0 14 ------- null} - -t 1.65363 -s 3 -d 0 -p ack -e 40 -c 0 -i 300 -a 0 -x {5.0 0.0 14 ------- null} h -t 1.65363 -s 3 -d 0 -p ack -e 40 -c 0 -i 300 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.6537 -s 3 -d 0 -p ack -e 40 -c 0 -i 297 -a 0 -x {5.0 0.0 14 ------- null} r -t 1.65765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 295 -a 1 -x {2.0 7.0 93 ------- null} + -t 1.65765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 295 -a 1 -x {2.0 7.0 93 ------- null} - -t 1.65765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 295 -a 1 -x {2.0 7.0 93 ------- null} h -t 1.65765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 295 -a 1 -x {2.0 7.0 -1 ------- null} - -t 1.65965 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {0.0 5.0 20 ------- null} h -t 1.65965 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {0.0 5.0 -1 ------- null} + -t 1.66 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 315 -a 1 -x {2.0 7.0 98 ------- null} - -t 1.66 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 315 -a 1 -x {2.0 7.0 98 ------- null} h -t 1.66 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 315 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.66 -s 1 -d 3 -p cbr -e 500 -c 1 -i 316 -a 1 -x {1.0 6.0 153 ------- null} - -t 1.66 -s 1 -d 3 -p cbr -e 500 -c 1 -i 316 -a 1 -x {1.0 6.0 153 ------- null} h -t 1.66 -s 1 -d 3 -p cbr -e 500 -c 1 -i 316 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.66165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 299 -a 1 -x {1.0 6.0 149 ------- null} + -t 1.66165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 299 -a 1 -x {1.0 6.0 149 ------- null} - -t 1.66165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 299 -a 1 -x {1.0 6.0 149 ------- null} h -t 1.66165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 299 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.66165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 290 -a 1 -x {2.0 7.0 91 ------- null} r -t 1.66165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 293 -a 1 -x {1.0 6.0 147 ------- null} r -t 1.664 -s 1 -d 3 -p cbr -e 500 -c 1 -i 314 -a 1 -x {1.0 6.0 152 ------- null} + -t 1.664 -s 3 -d 4 -p cbr -e 500 -c 1 -i 314 -a 1 -x {1.0 6.0 152 ------- null} - -t 1.66765 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {0.0 5.0 21 ------- null} h -t 1.66765 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.668 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 313 -a 1 -x {2.0 7.0 97 ------- null} + -t 1.668 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 313 -a 1 -x {2.0 7.0 97 ------- null} r -t 1.66965 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 301 -a 0 -x {0.0 5.0 15 ------- null} + -t 1.66965 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 301 -a 0 -x {0.0 5.0 15 ------- null} - -t 1.66965 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 301 -a 0 -x {0.0 5.0 15 ------- null} h -t 1.66965 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 301 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.67365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 292 -a 1 -x {2.0 7.0 92 ------- null} r -t 1.67365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 296 -a 1 -x {1.0 6.0 148 ------- null} r -t 1.6737 -s 3 -d 0 -p ack -e 40 -c 0 -i 300 -a 0 -x {5.0 0.0 14 ------- null} - -t 1.67565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {0.0 5.0 22 ------- null} h -t 1.67565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.67765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 298 -a 1 -x {2.0 7.0 94 ------- null} + -t 1.67765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 298 -a 1 -x {2.0 7.0 94 ------- null} - -t 1.67765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 298 -a 1 -x {2.0 7.0 94 ------- null} h -t 1.67765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 298 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.68 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 317 -a 1 -x {2.0 7.0 99 ------- null} - -t 1.68 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 317 -a 1 -x {2.0 7.0 99 ------- null} h -t 1.68 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 317 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.68 -s 1 -d 3 -p cbr -e 500 -c 1 -i 318 -a 1 -x {1.0 6.0 154 ------- null} - -t 1.68 -s 1 -d 3 -p cbr -e 500 -c 1 -i 318 -a 1 -x {1.0 6.0 154 ------- null} h -t 1.68 -s 1 -d 3 -p cbr -e 500 -c 1 -i 318 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.68365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 310 -a 1 -x {1.0 6.0 150 ------- null} h -t 1.68365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 310 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.684 -s 1 -d 3 -p cbr -e 500 -c 1 -i 316 -a 1 -x {1.0 6.0 153 ------- null} + -t 1.684 -s 3 -d 4 -p cbr -e 500 -c 1 -i 316 -a 1 -x {1.0 6.0 153 ------- null} r -t 1.68565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {0.0 5.0 16 ------- null} + -t 1.68565 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {0.0 5.0 16 ------- null} - -t 1.68565 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {0.0 5.0 16 ------- null} h -t 1.68565 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.68565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 295 -a 1 -x {2.0 7.0 93 ------- null} r -t 1.68565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 299 -a 1 -x {1.0 6.0 149 ------- null} - -t 1.68765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 309 -a 1 -x {2.0 7.0 95 ------- null} h -t 1.68765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 309 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.688 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 315 -a 1 -x {2.0 7.0 98 ------- null} + -t 1.688 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 315 -a 1 -x {2.0 7.0 98 ------- null} r -t 1.69125 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 301 -a 0 -x {0.0 5.0 15 ------- null} + -t 1.69125 -s 5 -d 4 -p ack -e 40 -c 0 -i 319 -a 0 -x {5.0 0.0 15 ------- null} - -t 1.69125 -s 5 -d 4 -p ack -e 40 -c 0 -i 319 -a 0 -x {5.0 0.0 15 ------- null} h -t 1.69125 -s 5 -d 4 -p ack -e 40 -c 0 -i 319 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.69365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {0.0 5.0 17 ------- null} + -t 1.69365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {0.0 5.0 17 ------- null} - -t 1.69365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {0.0 5.0 17 ------- null} h -t 1.69365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {0.0 5.0 -1 ------- null} - -t 1.69565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 312 -a 1 -x {1.0 6.0 151 ------- null} h -t 1.69565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 312 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.69965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 311 -a 1 -x {2.0 7.0 96 ------- null} h -t 1.69965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 311 -a 1 -x {2.0 7.0 -1 ------- null} v -t 1.7 sim_annotation 1.7 18 Ack_15 to 22 + -t 1.7 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 320 -a 1 -x {2.0 7.0 100 ------- null} - -t 1.7 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 320 -a 1 -x {2.0 7.0 100 ------- null} h -t 1.7 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 320 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.7 -s 1 -d 3 -p cbr -e 500 -c 1 -i 321 -a 1 -x {1.0 6.0 155 ------- null} - -t 1.7 -s 1 -d 3 -p cbr -e 500 -c 1 -i 321 -a 1 -x {1.0 6.0 155 ------- null} h -t 1.7 -s 1 -d 3 -p cbr -e 500 -c 1 -i 321 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.70165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {0.0 5.0 18 ------- null} + -t 1.70165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {0.0 5.0 18 ------- null} - -t 1.70165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {0.0 5.0 18 ------- null} h -t 1.70165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.704 -s 1 -d 3 -p cbr -e 500 -c 1 -i 318 -a 1 -x {1.0 6.0 154 ------- null} + -t 1.704 -s 3 -d 4 -p cbr -e 500 -c 1 -i 318 -a 1 -x {1.0 6.0 154 ------- null} r -t 1.70565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 298 -a 1 -x {2.0 7.0 94 ------- null} r -t 1.70725 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {0.0 5.0 16 ------- null} + -t 1.70725 -s 5 -d 4 -p ack -e 40 -c 0 -i 322 -a 0 -x {5.0 0.0 16 ------- null} - -t 1.70725 -s 5 -d 4 -p ack -e 40 -c 0 -i 322 -a 0 -x {5.0 0.0 16 ------- null} h -t 1.70725 -s 5 -d 4 -p ack -e 40 -c 0 -i 322 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.70765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 314 -a 1 -x {1.0 6.0 152 ------- null} h -t 1.70765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 314 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.708 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 317 -a 1 -x {2.0 7.0 99 ------- null} + -t 1.708 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 317 -a 1 -x {2.0 7.0 99 ------- null} r -t 1.70965 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {0.0 5.0 19 ------- null} + -t 1.70965 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {0.0 5.0 19 ------- null} - -t 1.70965 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {0.0 5.0 19 ------- null} h -t 1.70965 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {0.0 5.0 -1 ------- null} + -t 1.71 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 323 -a 1 -x {2.0 7.0 101 ------- null} - -t 1.71 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 323 -a 1 -x {2.0 7.0 101 ------- null} h -t 1.71 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 323 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.71131 -s 5 -d 4 -p ack -e 40 -c 0 -i 319 -a 0 -x {5.0 0.0 15 ------- null} + -t 1.71131 -s 4 -d 3 -p ack -e 40 -c 0 -i 319 -a 0 -x {5.0 0.0 15 ------- null} - -t 1.71131 -s 4 -d 3 -p ack -e 40 -c 0 -i 319 -a 0 -x {5.0 0.0 15 ------- null} h -t 1.71131 -s 4 -d 3 -p ack -e 40 -c 0 -i 319 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.71165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 313 -a 1 -x {2.0 7.0 97 ------- null} h -t 1.71165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 313 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.71525 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {0.0 5.0 17 ------- null} + -t 1.71525 -s 5 -d 4 -p ack -e 40 -c 0 -i 324 -a 0 -x {5.0 0.0 17 ------- null} - -t 1.71525 -s 5 -d 4 -p ack -e 40 -c 0 -i 324 -a 0 -x {5.0 0.0 17 ------- null} h -t 1.71525 -s 5 -d 4 -p ack -e 40 -c 0 -i 324 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.71765 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {0.0 5.0 20 ------- null} + -t 1.71765 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {0.0 5.0 20 ------- null} - -t 1.71765 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {0.0 5.0 20 ------- null} h -t 1.71765 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {0.0 5.0 -1 ------- null} - -t 1.71965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 316 -a 1 -x {1.0 6.0 153 ------- null} h -t 1.71965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 316 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.72 -s 1 -d 3 -p cbr -e 500 -c 1 -i 325 -a 1 -x {1.0 6.0 156 ------- null} - -t 1.72 -s 1 -d 3 -p cbr -e 500 -c 1 -i 325 -a 1 -x {1.0 6.0 156 ------- null} h -t 1.72 -s 1 -d 3 -p cbr -e 500 -c 1 -i 325 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.72 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 326 -a 1 -x {2.0 7.0 102 ------- null} - -t 1.72 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 326 -a 1 -x {2.0 7.0 102 ------- null} h -t 1.72 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 326 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.72325 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {0.0 5.0 18 ------- null} + -t 1.72325 -s 5 -d 4 -p ack -e 40 -c 0 -i 327 -a 0 -x {5.0 0.0 18 ------- null} - -t 1.72325 -s 5 -d 4 -p ack -e 40 -c 0 -i 327 -a 0 -x {5.0 0.0 18 ------- null} h -t 1.72325 -s 5 -d 4 -p ack -e 40 -c 0 -i 327 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.72365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 315 -a 1 -x {2.0 7.0 98 ------- null} h -t 1.72365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 315 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.724 -s 1 -d 3 -p cbr -e 500 -c 1 -i 321 -a 1 -x {1.0 6.0 155 ------- null} + -t 1.724 -s 3 -d 4 -p cbr -e 500 -c 1 -i 321 -a 1 -x {1.0 6.0 155 ------- null} r -t 1.72565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {0.0 5.0 21 ------- null} + -t 1.72565 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {0.0 5.0 21 ------- null} - -t 1.72565 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {0.0 5.0 21 ------- null} h -t 1.72565 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.72731 -s 5 -d 4 -p ack -e 40 -c 0 -i 322 -a 0 -x {5.0 0.0 16 ------- null} + -t 1.72731 -s 4 -d 3 -p ack -e 40 -c 0 -i 322 -a 0 -x {5.0 0.0 16 ------- null} - -t 1.72731 -s 4 -d 3 -p ack -e 40 -c 0 -i 322 -a 0 -x {5.0 0.0 16 ------- null} h -t 1.72731 -s 4 -d 3 -p ack -e 40 -c 0 -i 322 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.728 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 320 -a 1 -x {2.0 7.0 100 ------- null} + -t 1.728 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 320 -a 1 -x {2.0 7.0 100 ------- null} + -t 1.73 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 328 -a 1 -x {2.0 7.0 103 ------- null} - -t 1.73 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 328 -a 1 -x {2.0 7.0 103 ------- null} h -t 1.73 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 328 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.73125 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {0.0 5.0 19 ------- null} + -t 1.73125 -s 5 -d 4 -p ack -e 40 -c 0 -i 329 -a 0 -x {5.0 0.0 19 ------- null} - -t 1.73125 -s 5 -d 4 -p ack -e 40 -c 0 -i 329 -a 0 -x {5.0 0.0 19 ------- null} h -t 1.73125 -s 5 -d 4 -p ack -e 40 -c 0 -i 329 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.73165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 318 -a 1 -x {1.0 6.0 154 ------- null} h -t 1.73165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 318 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.73365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {0.0 5.0 22 ------- null} + -t 1.73365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {0.0 5.0 22 ------- null} - -t 1.73365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {0.0 5.0 22 ------- null} h -t 1.73365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.73531 -s 5 -d 4 -p ack -e 40 -c 0 -i 324 -a 0 -x {5.0 0.0 17 ------- null} + -t 1.73531 -s 4 -d 3 -p ack -e 40 -c 0 -i 324 -a 0 -x {5.0 0.0 17 ------- null} - -t 1.73531 -s 4 -d 3 -p ack -e 40 -c 0 -i 324 -a 0 -x {5.0 0.0 17 ------- null} h -t 1.73531 -s 4 -d 3 -p ack -e 40 -c 0 -i 324 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.73565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 317 -a 1 -x {2.0 7.0 99 ------- null} h -t 1.73565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 317 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.73765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 310 -a 1 -x {1.0 6.0 150 ------- null} + -t 1.73765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 310 -a 1 -x {1.0 6.0 150 ------- null} - -t 1.73765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 310 -a 1 -x {1.0 6.0 150 ------- null} h -t 1.73765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 310 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.738 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 323 -a 1 -x {2.0 7.0 101 ------- null} + -t 1.738 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 323 -a 1 -x {2.0 7.0 101 ------- null} r -t 1.73925 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {0.0 5.0 20 ------- null} + -t 1.73925 -s 5 -d 4 -p ack -e 40 -c 0 -i 330 -a 0 -x {5.0 0.0 20 ------- null} - -t 1.73925 -s 5 -d 4 -p ack -e 40 -c 0 -i 330 -a 0 -x {5.0 0.0 20 ------- null} h -t 1.73925 -s 5 -d 4 -p ack -e 40 -c 0 -i 330 -a 0 -x {5.0 0.0 -1 ------- null} + -t 1.74 -s 1 -d 3 -p cbr -e 500 -c 1 -i 331 -a 1 -x {1.0 6.0 157 ------- null} - -t 1.74 -s 1 -d 3 -p cbr -e 500 -c 1 -i 331 -a 1 -x {1.0 6.0 157 ------- null} h -t 1.74 -s 1 -d 3 -p cbr -e 500 -c 1 -i 331 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.74 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 332 -a 1 -x {2.0 7.0 104 ------- null} - -t 1.74 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 332 -a 1 -x {2.0 7.0 104 ------- null} h -t 1.74 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 332 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.74331 -s 5 -d 4 -p ack -e 40 -c 0 -i 327 -a 0 -x {5.0 0.0 18 ------- null} + -t 1.74331 -s 4 -d 3 -p ack -e 40 -c 0 -i 327 -a 0 -x {5.0 0.0 18 ------- null} - -t 1.74331 -s 4 -d 3 -p ack -e 40 -c 0 -i 327 -a 0 -x {5.0 0.0 18 ------- null} h -t 1.74331 -s 4 -d 3 -p ack -e 40 -c 0 -i 327 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.74365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 321 -a 1 -x {1.0 6.0 155 ------- null} h -t 1.74365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 321 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.744 -s 1 -d 3 -p cbr -e 500 -c 1 -i 325 -a 1 -x {1.0 6.0 156 ------- null} + -t 1.744 -s 3 -d 4 -p cbr -e 500 -c 1 -i 325 -a 1 -x {1.0 6.0 156 ------- null} r -t 1.74565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 309 -a 1 -x {2.0 7.0 95 ------- null} + -t 1.74565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 309 -a 1 -x {2.0 7.0 95 ------- null} - -t 1.74565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 309 -a 1 -x {2.0 7.0 95 ------- null} h -t 1.74565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 309 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.74725 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {0.0 5.0 21 ------- null} + -t 1.74725 -s 5 -d 4 -p ack -e 40 -c 0 -i 333 -a 0 -x {5.0 0.0 21 ------- null} - -t 1.74725 -s 5 -d 4 -p ack -e 40 -c 0 -i 333 -a 0 -x {5.0 0.0 21 ------- null} h -t 1.74725 -s 5 -d 4 -p ack -e 40 -c 0 -i 333 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.74765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 320 -a 1 -x {2.0 7.0 100 ------- null} h -t 1.74765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 320 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.748 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 326 -a 1 -x {2.0 7.0 102 ------- null} + -t 1.748 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 326 -a 1 -x {2.0 7.0 102 ------- null} r -t 1.74965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 312 -a 1 -x {1.0 6.0 151 ------- null} + -t 1.74965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 312 -a 1 -x {1.0 6.0 151 ------- null} - -t 1.74965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 312 -a 1 -x {1.0 6.0 151 ------- null} h -t 1.74965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 312 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.75 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 334 -a 1 -x {2.0 7.0 105 ------- null} - -t 1.75 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 334 -a 1 -x {2.0 7.0 105 ------- null} h -t 1.75 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 334 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.75131 -s 5 -d 4 -p ack -e 40 -c 0 -i 329 -a 0 -x {5.0 0.0 19 ------- null} + -t 1.75131 -s 4 -d 3 -p ack -e 40 -c 0 -i 329 -a 0 -x {5.0 0.0 19 ------- null} - -t 1.75131 -s 4 -d 3 -p ack -e 40 -c 0 -i 329 -a 0 -x {5.0 0.0 19 ------- null} h -t 1.75131 -s 4 -d 3 -p ack -e 40 -c 0 -i 329 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.75525 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {0.0 5.0 22 ------- null} + -t 1.75525 -s 5 -d 4 -p ack -e 40 -c 0 -i 335 -a 0 -x {5.0 0.0 22 ------- null} - -t 1.75525 -s 5 -d 4 -p ack -e 40 -c 0 -i 335 -a 0 -x {5.0 0.0 22 ------- null} h -t 1.75525 -s 5 -d 4 -p ack -e 40 -c 0 -i 335 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.75565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 323 -a 1 -x {2.0 7.0 101 ------- null} h -t 1.75565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 323 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.75765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 311 -a 1 -x {2.0 7.0 96 ------- null} + -t 1.75765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 311 -a 1 -x {2.0 7.0 96 ------- null} - -t 1.75765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 311 -a 1 -x {2.0 7.0 96 ------- null} h -t 1.75765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 311 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.758 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 328 -a 1 -x {2.0 7.0 103 ------- null} + -t 1.758 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 328 -a 1 -x {2.0 7.0 103 ------- null} r -t 1.75931 -s 5 -d 4 -p ack -e 40 -c 0 -i 330 -a 0 -x {5.0 0.0 20 ------- null} + -t 1.75931 -s 4 -d 3 -p ack -e 40 -c 0 -i 330 -a 0 -x {5.0 0.0 20 ------- null} - -t 1.75931 -s 4 -d 3 -p ack -e 40 -c 0 -i 330 -a 0 -x {5.0 0.0 20 ------- null} h -t 1.75931 -s 4 -d 3 -p ack -e 40 -c 0 -i 330 -a 0 -x {5.0 0.0 -1 ------- null} + -t 1.76 -s 1 -d 3 -p cbr -e 500 -c 1 -i 336 -a 1 -x {1.0 6.0 158 ------- null} - -t 1.76 -s 1 -d 3 -p cbr -e 500 -c 1 -i 336 -a 1 -x {1.0 6.0 158 ------- null} h -t 1.76 -s 1 -d 3 -p cbr -e 500 -c 1 -i 336 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.76 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 337 -a 1 -x {2.0 7.0 106 ------- null} - -t 1.76 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 337 -a 1 -x {2.0 7.0 106 ------- null} h -t 1.76 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 337 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.76163 -s 4 -d 3 -p ack -e 40 -c 0 -i 319 -a 0 -x {5.0 0.0 15 ------- null} + -t 1.76163 -s 3 -d 0 -p ack -e 40 -c 0 -i 319 -a 0 -x {5.0 0.0 15 ------- null} - -t 1.76163 -s 3 -d 0 -p ack -e 40 -c 0 -i 319 -a 0 -x {5.0 0.0 15 ------- null} h -t 1.76163 -s 3 -d 0 -p ack -e 40 -c 0 -i 319 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.76165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 314 -a 1 -x {1.0 6.0 152 ------- null} + -t 1.76165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 314 -a 1 -x {1.0 6.0 152 ------- null} - -t 1.76165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 314 -a 1 -x {1.0 6.0 152 ------- null} h -t 1.76165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 314 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.76165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 310 -a 1 -x {1.0 6.0 150 ------- null} - -t 1.76365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 325 -a 1 -x {1.0 6.0 156 ------- null} h -t 1.76365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 325 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.764 -s 1 -d 3 -p cbr -e 500 -c 1 -i 331 -a 1 -x {1.0 6.0 157 ------- null} + -t 1.764 -s 3 -d 4 -p cbr -e 500 -c 1 -i 331 -a 1 -x {1.0 6.0 157 ------- null} r -t 1.76731 -s 5 -d 4 -p ack -e 40 -c 0 -i 333 -a 0 -x {5.0 0.0 21 ------- null} + -t 1.76731 -s 4 -d 3 -p ack -e 40 -c 0 -i 333 -a 0 -x {5.0 0.0 21 ------- null} - -t 1.76731 -s 4 -d 3 -p ack -e 40 -c 0 -i 333 -a 0 -x {5.0 0.0 21 ------- null} h -t 1.76731 -s 4 -d 3 -p ack -e 40 -c 0 -i 333 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.76765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 326 -a 1 -x {2.0 7.0 102 ------- null} h -t 1.76765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 326 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.768 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 332 -a 1 -x {2.0 7.0 104 ------- null} + -t 1.768 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 332 -a 1 -x {2.0 7.0 104 ------- null} r -t 1.76965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 313 -a 1 -x {2.0 7.0 97 ------- null} + -t 1.76965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 313 -a 1 -x {2.0 7.0 97 ------- null} - -t 1.76965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 313 -a 1 -x {2.0 7.0 97 ------- null} h -t 1.76965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 313 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.77 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 338 -a 1 -x {2.0 7.0 107 ------- null} - -t 1.77 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 338 -a 1 -x {2.0 7.0 107 ------- null} h -t 1.77 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 338 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.77365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 316 -a 1 -x {1.0 6.0 153 ------- null} + -t 1.77365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 316 -a 1 -x {1.0 6.0 153 ------- null} - -t 1.77365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 316 -a 1 -x {1.0 6.0 153 ------- null} h -t 1.77365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 316 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.77365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 309 -a 1 -x {2.0 7.0 95 ------- null} r -t 1.77365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 312 -a 1 -x {1.0 6.0 151 ------- null} r -t 1.77531 -s 5 -d 4 -p ack -e 40 -c 0 -i 335 -a 0 -x {5.0 0.0 22 ------- null} + -t 1.77531 -s 4 -d 3 -p ack -e 40 -c 0 -i 335 -a 0 -x {5.0 0.0 22 ------- null} - -t 1.77531 -s 4 -d 3 -p ack -e 40 -c 0 -i 335 -a 0 -x {5.0 0.0 22 ------- null} h -t 1.77531 -s 4 -d 3 -p ack -e 40 -c 0 -i 335 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.77565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 328 -a 1 -x {2.0 7.0 103 ------- null} h -t 1.77565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 328 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.77763 -s 4 -d 3 -p ack -e 40 -c 0 -i 322 -a 0 -x {5.0 0.0 16 ------- null} + -t 1.77763 -s 3 -d 0 -p ack -e 40 -c 0 -i 322 -a 0 -x {5.0 0.0 16 ------- null} - -t 1.77763 -s 3 -d 0 -p ack -e 40 -c 0 -i 322 -a 0 -x {5.0 0.0 16 ------- null} h -t 1.77763 -s 3 -d 0 -p ack -e 40 -c 0 -i 322 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.778 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 334 -a 1 -x {2.0 7.0 105 ------- null} + -t 1.778 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 334 -a 1 -x {2.0 7.0 105 ------- null} v -t 1.78 sim_annotation 1.78 19 Send Packet_23 to 30 + -t 1.78 -s 1 -d 3 -p cbr -e 500 -c 1 -i 339 -a 1 -x {1.0 6.0 159 ------- null} - -t 1.78 -s 1 -d 3 -p cbr -e 500 -c 1 -i 339 -a 1 -x {1.0 6.0 159 ------- null} h -t 1.78 -s 1 -d 3 -p cbr -e 500 -c 1 -i 339 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.78 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 340 -a 1 -x {2.0 7.0 108 ------- null} - -t 1.78 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 340 -a 1 -x {2.0 7.0 108 ------- null} h -t 1.78 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 340 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.78165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 315 -a 1 -x {2.0 7.0 98 ------- null} + -t 1.78165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 315 -a 1 -x {2.0 7.0 98 ------- null} - -t 1.78165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 315 -a 1 -x {2.0 7.0 98 ------- null} h -t 1.78165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 315 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.7817 -s 3 -d 0 -p ack -e 40 -c 0 -i 319 -a 0 -x {5.0 0.0 15 ------- null} + -t 1.7817 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 341 -a 0 -x {0.0 5.0 23 ------- null} - -t 1.7817 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 341 -a 0 -x {0.0 5.0 23 ------- null} h -t 1.7817 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 341 -a 0 -x {0.0 5.0 -1 ------- null} - -t 1.78365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 331 -a 1 -x {1.0 6.0 157 ------- null} h -t 1.78365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 331 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.784 -s 1 -d 3 -p cbr -e 500 -c 1 -i 336 -a 1 -x {1.0 6.0 158 ------- null} + -t 1.784 -s 3 -d 4 -p cbr -e 500 -c 1 -i 336 -a 1 -x {1.0 6.0 158 ------- null} r -t 1.78563 -s 4 -d 3 -p ack -e 40 -c 0 -i 324 -a 0 -x {5.0 0.0 17 ------- null} + -t 1.78563 -s 3 -d 0 -p ack -e 40 -c 0 -i 324 -a 0 -x {5.0 0.0 17 ------- null} - -t 1.78563 -s 3 -d 0 -p ack -e 40 -c 0 -i 324 -a 0 -x {5.0 0.0 17 ------- null} h -t 1.78563 -s 3 -d 0 -p ack -e 40 -c 0 -i 324 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.78565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 318 -a 1 -x {1.0 6.0 154 ------- null} + -t 1.78565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 318 -a 1 -x {1.0 6.0 154 ------- null} - -t 1.78565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 318 -a 1 -x {1.0 6.0 154 ------- null} h -t 1.78565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 318 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.78565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 311 -a 1 -x {2.0 7.0 96 ------- null} r -t 1.78565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 314 -a 1 -x {1.0 6.0 152 ------- null} - -t 1.78765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 332 -a 1 -x {2.0 7.0 104 ------- null} h -t 1.78765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 332 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.788 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 337 -a 1 -x {2.0 7.0 106 ------- null} + -t 1.788 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 337 -a 1 -x {2.0 7.0 106 ------- null} + -t 1.79 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 342 -a 1 -x {2.0 7.0 109 ------- null} - -t 1.79 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 342 -a 1 -x {2.0 7.0 109 ------- null} h -t 1.79 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 342 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.79363 -s 4 -d 3 -p ack -e 40 -c 0 -i 327 -a 0 -x {5.0 0.0 18 ------- null} + -t 1.79363 -s 3 -d 0 -p ack -e 40 -c 0 -i 327 -a 0 -x {5.0 0.0 18 ------- null} - -t 1.79363 -s 3 -d 0 -p ack -e 40 -c 0 -i 327 -a 0 -x {5.0 0.0 18 ------- null} h -t 1.79363 -s 3 -d 0 -p ack -e 40 -c 0 -i 327 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.79365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 317 -a 1 -x {2.0 7.0 99 ------- null} + -t 1.79365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 317 -a 1 -x {2.0 7.0 99 ------- null} - -t 1.79365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 317 -a 1 -x {2.0 7.0 99 ------- null} h -t 1.79365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 317 -a 1 -x {2.0 7.0 -1 ------- null} - -t 1.79565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 334 -a 1 -x {2.0 7.0 105 ------- null} h -t 1.79565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 334 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.79765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 321 -a 1 -x {1.0 6.0 155 ------- null} + -t 1.79765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 321 -a 1 -x {1.0 6.0 155 ------- null} - -t 1.79765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 321 -a 1 -x {1.0 6.0 155 ------- null} h -t 1.79765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 321 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.79765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 313 -a 1 -x {2.0 7.0 97 ------- null} r -t 1.79765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 316 -a 1 -x {1.0 6.0 153 ------- null} r -t 1.7977 -s 3 -d 0 -p ack -e 40 -c 0 -i 322 -a 0 -x {5.0 0.0 16 ------- null} + -t 1.7977 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {0.0 5.0 24 ------- null} - -t 1.7977 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {0.0 5.0 24 ------- null} h -t 1.7977 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.798 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 338 -a 1 -x {2.0 7.0 107 ------- null} + -t 1.798 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 338 -a 1 -x {2.0 7.0 107 ------- null} + -t 1.8 -s 1 -d 3 -p cbr -e 500 -c 1 -i 344 -a 1 -x {1.0 6.0 160 ------- null} - -t 1.8 -s 1 -d 3 -p cbr -e 500 -c 1 -i 344 -a 1 -x {1.0 6.0 160 ------- null} h -t 1.8 -s 1 -d 3 -p cbr -e 500 -c 1 -i 344 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.8 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 345 -a 1 -x {2.0 7.0 110 ------- null} - -t 1.8 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 345 -a 1 -x {2.0 7.0 110 ------- null} h -t 1.8 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 345 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.80163 -s 4 -d 3 -p ack -e 40 -c 0 -i 329 -a 0 -x {5.0 0.0 19 ------- null} + -t 1.80163 -s 3 -d 0 -p ack -e 40 -c 0 -i 329 -a 0 -x {5.0 0.0 19 ------- null} - -t 1.80163 -s 3 -d 0 -p ack -e 40 -c 0 -i 329 -a 0 -x {5.0 0.0 19 ------- null} h -t 1.80163 -s 3 -d 0 -p ack -e 40 -c 0 -i 329 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.8033 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 341 -a 0 -x {0.0 5.0 23 ------- null} + -t 1.8033 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 341 -a 0 -x {0.0 5.0 23 ------- null} - -t 1.80365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 336 -a 1 -x {1.0 6.0 158 ------- null} h -t 1.80365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 336 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.804 -s 1 -d 3 -p cbr -e 500 -c 1 -i 339 -a 1 -x {1.0 6.0 159 ------- null} + -t 1.804 -s 3 -d 4 -p cbr -e 500 -c 1 -i 339 -a 1 -x {1.0 6.0 159 ------- null} r -t 1.80565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 320 -a 1 -x {2.0 7.0 100 ------- null} + -t 1.80565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 320 -a 1 -x {2.0 7.0 100 ------- null} - -t 1.80565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 320 -a 1 -x {2.0 7.0 100 ------- null} h -t 1.80565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 320 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.8057 -s 3 -d 0 -p ack -e 40 -c 0 -i 324 -a 0 -x {5.0 0.0 17 ------- null} + -t 1.8057 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {0.0 5.0 25 ------- null} - -t 1.8057 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {0.0 5.0 25 ------- null} h -t 1.8057 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {0.0 5.0 -1 ------- null} - -t 1.80765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 337 -a 1 -x {2.0 7.0 106 ------- null} h -t 1.80765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 337 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.808 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 340 -a 1 -x {2.0 7.0 108 ------- null} + -t 1.808 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 340 -a 1 -x {2.0 7.0 108 ------- null} r -t 1.80963 -s 4 -d 3 -p ack -e 40 -c 0 -i 330 -a 0 -x {5.0 0.0 20 ------- null} + -t 1.80963 -s 3 -d 0 -p ack -e 40 -c 0 -i 330 -a 0 -x {5.0 0.0 20 ------- null} - -t 1.80963 -s 3 -d 0 -p ack -e 40 -c 0 -i 330 -a 0 -x {5.0 0.0 20 ------- null} h -t 1.80963 -s 3 -d 0 -p ack -e 40 -c 0 -i 330 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.80965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 315 -a 1 -x {2.0 7.0 98 ------- null} r -t 1.80965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 318 -a 1 -x {1.0 6.0 154 ------- null} + -t 1.81 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 347 -a 1 -x {2.0 7.0 111 ------- null} - -t 1.81 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 347 -a 1 -x {2.0 7.0 111 ------- null} h -t 1.81 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 347 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.81365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 323 -a 1 -x {2.0 7.0 101 ------- null} + -t 1.81365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 323 -a 1 -x {2.0 7.0 101 ------- null} - -t 1.81365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 323 -a 1 -x {2.0 7.0 101 ------- null} h -t 1.81365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 323 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.8137 -s 3 -d 0 -p ack -e 40 -c 0 -i 327 -a 0 -x {5.0 0.0 18 ------- null} + -t 1.8137 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {0.0 5.0 26 ------- null} - -t 1.8137 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {0.0 5.0 26 ------- null} h -t 1.8137 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {0.0 5.0 -1 ------- null} - -t 1.81565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 338 -a 1 -x {2.0 7.0 107 ------- null} h -t 1.81565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 338 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.81763 -s 4 -d 3 -p ack -e 40 -c 0 -i 333 -a 0 -x {5.0 0.0 21 ------- null} + -t 1.81763 -s 3 -d 0 -p ack -e 40 -c 0 -i 333 -a 0 -x {5.0 0.0 21 ------- null} - -t 1.81763 -s 3 -d 0 -p ack -e 40 -c 0 -i 333 -a 0 -x {5.0 0.0 21 ------- null} h -t 1.81763 -s 3 -d 0 -p ack -e 40 -c 0 -i 333 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.81765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 325 -a 1 -x {1.0 6.0 156 ------- null} + -t 1.81765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 325 -a 1 -x {1.0 6.0 156 ------- null} - -t 1.81765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 325 -a 1 -x {1.0 6.0 156 ------- null} h -t 1.81765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 325 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.818 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 342 -a 1 -x {2.0 7.0 109 ------- null} + -t 1.818 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 342 -a 1 -x {2.0 7.0 109 ------- null} r -t 1.8193 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {0.0 5.0 24 ------- null} + -t 1.8193 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {0.0 5.0 24 ------- null} + -t 1.82 -s 1 -d 3 -p cbr -e 500 -c 1 -i 349 -a 1 -x {1.0 6.0 161 ------- null} - -t 1.82 -s 1 -d 3 -p cbr -e 500 -c 1 -i 349 -a 1 -x {1.0 6.0 161 ------- null} h -t 1.82 -s 1 -d 3 -p cbr -e 500 -c 1 -i 349 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.82 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 350 -a 1 -x {2.0 7.0 112 ------- null} - -t 1.82 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 350 -a 1 -x {2.0 7.0 112 ------- null} h -t 1.82 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 350 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.82165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 317 -a 1 -x {2.0 7.0 99 ------- null} r -t 1.82165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 321 -a 1 -x {1.0 6.0 155 ------- null} r -t 1.8217 -s 3 -d 0 -p ack -e 40 -c 0 -i 329 -a 0 -x {5.0 0.0 19 ------- null} + -t 1.8217 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {0.0 5.0 27 ------- null} - -t 1.8217 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {0.0 5.0 27 ------- null} h -t 1.8217 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {0.0 5.0 -1 ------- null} - -t 1.82365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 341 -a 0 -x {0.0 5.0 23 ------- null} h -t 1.82365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 341 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.824 -s 1 -d 3 -p cbr -e 500 -c 1 -i 344 -a 1 -x {1.0 6.0 160 ------- null} + -t 1.824 -s 3 -d 4 -p cbr -e 500 -c 1 -i 344 -a 1 -x {1.0 6.0 160 ------- null} r -t 1.82563 -s 4 -d 3 -p ack -e 40 -c 0 -i 335 -a 0 -x {5.0 0.0 22 ------- null} + -t 1.82563 -s 3 -d 0 -p ack -e 40 -c 0 -i 335 -a 0 -x {5.0 0.0 22 ------- null} - -t 1.82563 -s 3 -d 0 -p ack -e 40 -c 0 -i 335 -a 0 -x {5.0 0.0 22 ------- null} h -t 1.82563 -s 3 -d 0 -p ack -e 40 -c 0 -i 335 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.82565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 326 -a 1 -x {2.0 7.0 102 ------- null} + -t 1.82565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 326 -a 1 -x {2.0 7.0 102 ------- null} - -t 1.82565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 326 -a 1 -x {2.0 7.0 102 ------- null} h -t 1.82565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 326 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.8273 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {0.0 5.0 25 ------- null} + -t 1.8273 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {0.0 5.0 25 ------- null} r -t 1.828 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 345 -a 1 -x {2.0 7.0 110 ------- null} + -t 1.828 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 345 -a 1 -x {2.0 7.0 110 ------- null} r -t 1.8297 -s 3 -d 0 -p ack -e 40 -c 0 -i 330 -a 0 -x {5.0 0.0 20 ------- null} + -t 1.8297 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {0.0 5.0 28 ------- null} - -t 1.8297 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {0.0 5.0 28 ------- null} h -t 1.8297 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {0.0 5.0 -1 ------- null} + -t 1.83 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 353 -a 1 -x {2.0 7.0 113 ------- null} - -t 1.83 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 353 -a 1 -x {2.0 7.0 113 ------- null} h -t 1.83 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 353 -a 1 -x {2.0 7.0 -1 ------- null} - -t 1.83165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 339 -a 1 -x {1.0 6.0 159 ------- null} h -t 1.83165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 339 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.83365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 328 -a 1 -x {2.0 7.0 103 ------- null} + -t 1.83365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 328 -a 1 -x {2.0 7.0 103 ------- null} r -t 1.83365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 320 -a 1 -x {2.0 7.0 100 ------- null} - -t 1.83365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 328 -a 1 -x {2.0 7.0 103 ------- null} h -t 1.83365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 328 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.8353 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {0.0 5.0 26 ------- null} + -t 1.8353 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {0.0 5.0 26 ------- null} - -t 1.83565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 340 -a 1 -x {2.0 7.0 108 ------- null} h -t 1.83565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 340 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.83765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 331 -a 1 -x {1.0 6.0 157 ------- null} + -t 1.83765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 331 -a 1 -x {1.0 6.0 157 ------- null} - -t 1.83765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 331 -a 1 -x {1.0 6.0 157 ------- null} h -t 1.83765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 331 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.8377 -s 3 -d 0 -p ack -e 40 -c 0 -i 333 -a 0 -x {5.0 0.0 21 ------- null} + -t 1.8377 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {0.0 5.0 29 ------- null} - -t 1.8377 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {0.0 5.0 29 ------- null} h -t 1.8377 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.838 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 347 -a 1 -x {2.0 7.0 111 ------- null} + -t 1.838 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 347 -a 1 -x {2.0 7.0 111 ------- null} + -t 1.84 -s 1 -d 3 -p cbr -e 500 -c 1 -i 355 -a 1 -x {1.0 6.0 162 ------- null} - -t 1.84 -s 1 -d 3 -p cbr -e 500 -c 1 -i 355 -a 1 -x {1.0 6.0 162 ------- null} h -t 1.84 -s 1 -d 3 -p cbr -e 500 -c 1 -i 355 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.84 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 356 -a 1 -x {2.0 7.0 114 ------- null} - -t 1.84 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 356 -a 1 -x {2.0 7.0 114 ------- null} h -t 1.84 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 356 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.84165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 323 -a 1 -x {2.0 7.0 101 ------- null} r -t 1.84165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 325 -a 1 -x {1.0 6.0 156 ------- null} r -t 1.8433 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {0.0 5.0 27 ------- null} + -t 1.8433 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {0.0 5.0 27 ------- null} - -t 1.84365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 342 -a 1 -x {2.0 7.0 109 ------- null} h -t 1.84365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 342 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.844 -s 1 -d 3 -p cbr -e 500 -c 1 -i 349 -a 1 -x {1.0 6.0 161 ------- null} + -t 1.844 -s 3 -d 4 -p cbr -e 500 -c 1 -i 349 -a 1 -x {1.0 6.0 161 ------- null} r -t 1.84565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 332 -a 1 -x {2.0 7.0 104 ------- null} + -t 1.84565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 332 -a 1 -x {2.0 7.0 104 ------- null} - -t 1.84565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 332 -a 1 -x {2.0 7.0 104 ------- null} h -t 1.84565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 332 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.8457 -s 3 -d 0 -p ack -e 40 -c 0 -i 335 -a 0 -x {5.0 0.0 22 ------- null} + -t 1.8457 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {0.0 5.0 30 ------- null} - -t 1.8457 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {0.0 5.0 30 ------- null} h -t 1.8457 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.848 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 350 -a 1 -x {2.0 7.0 112 ------- null} + -t 1.848 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 350 -a 1 -x {2.0 7.0 112 ------- null} v -t 1.8500000000000001 sim_annotation 1.8500000000000001 20 Lost Packet (2 of them) + -t 1.85 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 358 -a 1 -x {2.0 7.0 115 ------- null} - -t 1.85 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 358 -a 1 -x {2.0 7.0 115 ------- null} h -t 1.85 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 358 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.8513 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {0.0 5.0 28 ------- null} + -t 1.8513 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {0.0 5.0 28 ------- null} d -t 1.8513 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {0.0 5.0 28 ------- null} - -t 1.85165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {0.0 5.0 24 ------- null} h -t 1.85165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.85365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 334 -a 1 -x {2.0 7.0 105 ------- null} + -t 1.85365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 334 -a 1 -x {2.0 7.0 105 ------- null} r -t 1.85365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 326 -a 1 -x {2.0 7.0 102 ------- null} - -t 1.85365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 334 -a 1 -x {2.0 7.0 105 ------- null} h -t 1.85365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 334 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.85765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 336 -a 1 -x {1.0 6.0 158 ------- null} + -t 1.85765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 336 -a 1 -x {1.0 6.0 158 ------- null} - -t 1.85765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 336 -a 1 -x {1.0 6.0 158 ------- null} h -t 1.85765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 336 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.858 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 353 -a 1 -x {2.0 7.0 113 ------- null} + -t 1.858 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 353 -a 1 -x {2.0 7.0 113 ------- null} r -t 1.8593 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {0.0 5.0 29 ------- null} + -t 1.8593 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {0.0 5.0 29 ------- null} d -t 1.8593 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {0.0 5.0 29 ------- null} - -t 1.85965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 344 -a 1 -x {1.0 6.0 160 ------- null} h -t 1.85965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 344 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.86 -s 1 -d 3 -p cbr -e 500 -c 1 -i 359 -a 1 -x {1.0 6.0 163 ------- null} - -t 1.86 -s 1 -d 3 -p cbr -e 500 -c 1 -i 359 -a 1 -x {1.0 6.0 163 ------- null} h -t 1.86 -s 1 -d 3 -p cbr -e 500 -c 1 -i 359 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.86 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 360 -a 1 -x {2.0 7.0 116 ------- null} - -t 1.86 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 360 -a 1 -x {2.0 7.0 116 ------- null} h -t 1.86 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 360 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.86165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 328 -a 1 -x {2.0 7.0 103 ------- null} r -t 1.86165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 331 -a 1 -x {1.0 6.0 157 ------- null} - -t 1.86365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {0.0 5.0 25 ------- null} h -t 1.86365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.864 -s 1 -d 3 -p cbr -e 500 -c 1 -i 355 -a 1 -x {1.0 6.0 162 ------- null} + -t 1.864 -s 3 -d 4 -p cbr -e 500 -c 1 -i 355 -a 1 -x {1.0 6.0 162 ------- null} r -t 1.86565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 337 -a 1 -x {2.0 7.0 106 ------- null} + -t 1.86565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 337 -a 1 -x {2.0 7.0 106 ------- null} - -t 1.86565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 337 -a 1 -x {2.0 7.0 106 ------- null} h -t 1.86565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 337 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.8673 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {0.0 5.0 30 ------- null} + -t 1.8673 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {0.0 5.0 30 ------- null} r -t 1.868 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 356 -a 1 -x {2.0 7.0 114 ------- null} + -t 1.868 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 356 -a 1 -x {2.0 7.0 114 ------- null} d -t 1.868 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 356 -a 1 -x {2.0 7.0 114 ------- null} + -t 1.87 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 361 -a 1 -x {2.0 7.0 117 ------- null} - -t 1.87 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 361 -a 1 -x {2.0 7.0 117 ------- null} h -t 1.87 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 361 -a 1 -x {2.0 7.0 -1 ------- null} - -t 1.87165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 345 -a 1 -x {2.0 7.0 110 ------- null} h -t 1.87165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 345 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.87365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 338 -a 1 -x {2.0 7.0 107 ------- null} + -t 1.87365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 338 -a 1 -x {2.0 7.0 107 ------- null} r -t 1.87365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 332 -a 1 -x {2.0 7.0 104 ------- null} - -t 1.87365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 338 -a 1 -x {2.0 7.0 107 ------- null} h -t 1.87365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 338 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.878 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 358 -a 1 -x {2.0 7.0 115 ------- null} + -t 1.878 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 358 -a 1 -x {2.0 7.0 115 ------- null} - -t 1.87965 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {0.0 5.0 26 ------- null} h -t 1.87965 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {0.0 5.0 -1 ------- null} + -t 1.88 -s 1 -d 3 -p cbr -e 500 -c 1 -i 362 -a 1 -x {1.0 6.0 164 ------- null} - -t 1.88 -s 1 -d 3 -p cbr -e 500 -c 1 -i 362 -a 1 -x {1.0 6.0 164 ------- null} h -t 1.88 -s 1 -d 3 -p cbr -e 500 -c 1 -i 362 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.88 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 363 -a 1 -x {2.0 7.0 118 ------- null} - -t 1.88 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 363 -a 1 -x {2.0 7.0 118 ------- null} h -t 1.88 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 363 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.88165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 341 -a 0 -x {0.0 5.0 23 ------- null} + -t 1.88165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 341 -a 0 -x {0.0 5.0 23 ------- null} - -t 1.88165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 341 -a 0 -x {0.0 5.0 23 ------- null} h -t 1.88165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 341 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.88165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 334 -a 1 -x {2.0 7.0 105 ------- null} r -t 1.88165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 336 -a 1 -x {1.0 6.0 158 ------- null} r -t 1.884 -s 1 -d 3 -p cbr -e 500 -c 1 -i 359 -a 1 -x {1.0 6.0 163 ------- null} + -t 1.884 -s 3 -d 4 -p cbr -e 500 -c 1 -i 359 -a 1 -x {1.0 6.0 163 ------- null} r -t 1.88565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 339 -a 1 -x {1.0 6.0 159 ------- null} + -t 1.88565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 339 -a 1 -x {1.0 6.0 159 ------- null} - -t 1.88565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 339 -a 1 -x {1.0 6.0 159 ------- null} h -t 1.88565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 339 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.88765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 347 -a 1 -x {2.0 7.0 111 ------- null} h -t 1.88765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 347 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.888 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 360 -a 1 -x {2.0 7.0 116 ------- null} + -t 1.888 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 360 -a 1 -x {2.0 7.0 116 ------- null} + -t 1.89 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 364 -a 1 -x {2.0 7.0 119 ------- null} - -t 1.89 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 364 -a 1 -x {2.0 7.0 119 ------- null} h -t 1.89 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 364 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.89365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 340 -a 1 -x {2.0 7.0 108 ------- null} + -t 1.89365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 340 -a 1 -x {2.0 7.0 108 ------- null} - -t 1.89365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 340 -a 1 -x {2.0 7.0 108 ------- null} h -t 1.89365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 340 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.89365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 337 -a 1 -x {2.0 7.0 106 ------- null} - -t 1.89565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {0.0 5.0 27 ------- null} h -t 1.89565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.898 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 361 -a 1 -x {2.0 7.0 117 ------- null} + -t 1.898 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 361 -a 1 -x {2.0 7.0 117 ------- null} v -t 1.8999999999999999 sim_annotation 1.8999999999999999 21 Ack_23 to 27 + -t 1.9 -s 1 -d 3 -p cbr -e 500 -c 1 -i 365 -a 1 -x {1.0 6.0 165 ------- null} - -t 1.9 -s 1 -d 3 -p cbr -e 500 -c 1 -i 365 -a 1 -x {1.0 6.0 165 ------- null} h -t 1.9 -s 1 -d 3 -p cbr -e 500 -c 1 -i 365 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.9 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 366 -a 1 -x {2.0 7.0 120 ------- null} - -t 1.9 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 366 -a 1 -x {2.0 7.0 120 ------- null} h -t 1.9 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 366 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.90165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 342 -a 1 -x {2.0 7.0 109 ------- null} + -t 1.90165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 342 -a 1 -x {2.0 7.0 109 ------- null} r -t 1.90165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 338 -a 1 -x {2.0 7.0 107 ------- null} - -t 1.90165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 342 -a 1 -x {2.0 7.0 109 ------- null} h -t 1.90165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 342 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.90325 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 341 -a 0 -x {0.0 5.0 23 ------- null} + -t 1.90325 -s 5 -d 4 -p ack -e 40 -c 0 -i 367 -a 0 -x {5.0 0.0 23 ------- null} - -t 1.90325 -s 5 -d 4 -p ack -e 40 -c 0 -i 367 -a 0 -x {5.0 0.0 23 ------- null} h -t 1.90325 -s 5 -d 4 -p ack -e 40 -c 0 -i 367 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.90365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 349 -a 1 -x {1.0 6.0 161 ------- null} h -t 1.90365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 349 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.904 -s 1 -d 3 -p cbr -e 500 -c 1 -i 362 -a 1 -x {1.0 6.0 164 ------- null} + -t 1.904 -s 3 -d 4 -p cbr -e 500 -c 1 -i 362 -a 1 -x {1.0 6.0 164 ------- null} - -t 1.90765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 350 -a 1 -x {2.0 7.0 112 ------- null} h -t 1.90765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 350 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.908 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 363 -a 1 -x {2.0 7.0 118 ------- null} + -t 1.908 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 363 -a 1 -x {2.0 7.0 118 ------- null} r -t 1.90965 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {0.0 5.0 24 ------- null} + -t 1.90965 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {0.0 5.0 24 ------- null} - -t 1.90965 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {0.0 5.0 24 ------- null} h -t 1.90965 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.90965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 339 -a 1 -x {1.0 6.0 159 ------- null} + -t 1.91 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 368 -a 1 -x {2.0 7.0 121 ------- null} - -t 1.91 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 368 -a 1 -x {2.0 7.0 121 ------- null} h -t 1.91 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 368 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.91365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 344 -a 1 -x {1.0 6.0 160 ------- null} + -t 1.91365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 344 -a 1 -x {1.0 6.0 160 ------- null} - -t 1.91365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 344 -a 1 -x {1.0 6.0 160 ------- null} h -t 1.91365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 344 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.91565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 353 -a 1 -x {2.0 7.0 113 ------- null} h -t 1.91565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 353 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.918 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 364 -a 1 -x {2.0 7.0 119 ------- null} + -t 1.918 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 364 -a 1 -x {2.0 7.0 119 ------- null} + -t 1.92 -s 1 -d 3 -p cbr -e 500 -c 1 -i 369 -a 1 -x {1.0 6.0 166 ------- null} - -t 1.92 -s 1 -d 3 -p cbr -e 500 -c 1 -i 369 -a 1 -x {1.0 6.0 166 ------- null} h -t 1.92 -s 1 -d 3 -p cbr -e 500 -c 1 -i 369 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.92 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 370 -a 1 -x {2.0 7.0 122 ------- null} - -t 1.92 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 370 -a 1 -x {2.0 7.0 122 ------- null} h -t 1.92 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 370 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.92165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {0.0 5.0 25 ------- null} + -t 1.92165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {0.0 5.0 25 ------- null} - -t 1.92165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {0.0 5.0 25 ------- null} h -t 1.92165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.92165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 340 -a 1 -x {2.0 7.0 108 ------- null} r -t 1.92331 -s 5 -d 4 -p ack -e 40 -c 0 -i 367 -a 0 -x {5.0 0.0 23 ------- null} + -t 1.92331 -s 4 -d 3 -p ack -e 40 -c 0 -i 367 -a 0 -x {5.0 0.0 23 ------- null} - -t 1.92331 -s 4 -d 3 -p ack -e 40 -c 0 -i 367 -a 0 -x {5.0 0.0 23 ------- null} h -t 1.92331 -s 4 -d 3 -p ack -e 40 -c 0 -i 367 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.92365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 355 -a 1 -x {1.0 6.0 162 ------- null} h -t 1.92365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 355 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.924 -s 1 -d 3 -p cbr -e 500 -c 1 -i 365 -a 1 -x {1.0 6.0 165 ------- null} + -t 1.924 -s 3 -d 4 -p cbr -e 500 -c 1 -i 365 -a 1 -x {1.0 6.0 165 ------- null} - -t 1.92765 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {0.0 5.0 30 ------- null} h -t 1.92765 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.928 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 366 -a 1 -x {2.0 7.0 120 ------- null} + -t 1.928 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 366 -a 1 -x {2.0 7.0 120 ------- null} r -t 1.92965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 345 -a 1 -x {2.0 7.0 110 ------- null} + -t 1.92965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 345 -a 1 -x {2.0 7.0 110 ------- null} - -t 1.92965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 345 -a 1 -x {2.0 7.0 110 ------- null} h -t 1.92965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 345 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.92965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 342 -a 1 -x {2.0 7.0 109 ------- null} + -t 1.93 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 371 -a 1 -x {2.0 7.0 123 ------- null} - -t 1.93 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 371 -a 1 -x {2.0 7.0 123 ------- null} h -t 1.93 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 371 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.93125 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {0.0 5.0 24 ------- null} + -t 1.93125 -s 5 -d 4 -p ack -e 40 -c 0 -i 372 -a 0 -x {5.0 0.0 24 ------- null} - -t 1.93125 -s 5 -d 4 -p ack -e 40 -c 0 -i 372 -a 0 -x {5.0 0.0 24 ------- null} h -t 1.93125 -s 5 -d 4 -p ack -e 40 -c 0 -i 372 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.93565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 358 -a 1 -x {2.0 7.0 115 ------- null} h -t 1.93565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 358 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.93765 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {0.0 5.0 26 ------- null} + -t 1.93765 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {0.0 5.0 26 ------- null} - -t 1.93765 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {0.0 5.0 26 ------- null} h -t 1.93765 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.93765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 344 -a 1 -x {1.0 6.0 160 ------- null} r -t 1.938 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 368 -a 1 -x {2.0 7.0 121 ------- null} + -t 1.938 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 368 -a 1 -x {2.0 7.0 121 ------- null} + -t 1.94 -s 1 -d 3 -p cbr -e 500 -c 1 -i 373 -a 1 -x {1.0 6.0 167 ------- null} - -t 1.94 -s 1 -d 3 -p cbr -e 500 -c 1 -i 373 -a 1 -x {1.0 6.0 167 ------- null} h -t 1.94 -s 1 -d 3 -p cbr -e 500 -c 1 -i 373 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.94 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 374 -a 1 -x {2.0 7.0 124 ------- null} - -t 1.94 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 374 -a 1 -x {2.0 7.0 124 ------- null} h -t 1.94 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 374 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.94325 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {0.0 5.0 25 ------- null} + -t 1.94325 -s 5 -d 4 -p ack -e 40 -c 0 -i 375 -a 0 -x {5.0 0.0 25 ------- null} - -t 1.94325 -s 5 -d 4 -p ack -e 40 -c 0 -i 375 -a 0 -x {5.0 0.0 25 ------- null} h -t 1.94325 -s 5 -d 4 -p ack -e 40 -c 0 -i 375 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.94365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 359 -a 1 -x {1.0 6.0 163 ------- null} h -t 1.94365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 359 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.944 -s 1 -d 3 -p cbr -e 500 -c 1 -i 369 -a 1 -x {1.0 6.0 166 ------- null} + -t 1.944 -s 3 -d 4 -p cbr -e 500 -c 1 -i 369 -a 1 -x {1.0 6.0 166 ------- null} r -t 1.94565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 347 -a 1 -x {2.0 7.0 111 ------- null} + -t 1.94565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 347 -a 1 -x {2.0 7.0 111 ------- null} - -t 1.94565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 347 -a 1 -x {2.0 7.0 111 ------- null} h -t 1.94565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 347 -a 1 -x {2.0 7.0 -1 ------- null} - -t 1.94765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 360 -a 1 -x {2.0 7.0 116 ------- null} h -t 1.94765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 360 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.948 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 370 -a 1 -x {2.0 7.0 122 ------- null} + -t 1.948 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 370 -a 1 -x {2.0 7.0 122 ------- null} + -t 1.95 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 376 -a 1 -x {2.0 7.0 125 ------- null} - -t 1.95 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 376 -a 1 -x {2.0 7.0 125 ------- null} h -t 1.95 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 376 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.95131 -s 5 -d 4 -p ack -e 40 -c 0 -i 372 -a 0 -x {5.0 0.0 24 ------- null} + -t 1.95131 -s 4 -d 3 -p ack -e 40 -c 0 -i 372 -a 0 -x {5.0 0.0 24 ------- null} - -t 1.95131 -s 4 -d 3 -p ack -e 40 -c 0 -i 372 -a 0 -x {5.0 0.0 24 ------- null} h -t 1.95131 -s 4 -d 3 -p ack -e 40 -c 0 -i 372 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.95365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {0.0 5.0 27 ------- null} + -t 1.95365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {0.0 5.0 27 ------- null} - -t 1.95365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {0.0 5.0 27 ------- null} h -t 1.95365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {0.0 5.0 -1 ------- null} - -t 1.95565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 361 -a 1 -x {2.0 7.0 117 ------- null} h -t 1.95565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 361 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.95765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 349 -a 1 -x {1.0 6.0 161 ------- null} + -t 1.95765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 349 -a 1 -x {1.0 6.0 161 ------- null} - -t 1.95765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 349 -a 1 -x {1.0 6.0 161 ------- null} h -t 1.95765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 349 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.95765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 345 -a 1 -x {2.0 7.0 110 ------- null} r -t 1.958 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 371 -a 1 -x {2.0 7.0 123 ------- null} + -t 1.958 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 371 -a 1 -x {2.0 7.0 123 ------- null} r -t 1.95925 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {0.0 5.0 26 ------- null} + -t 1.95925 -s 5 -d 4 -p ack -e 40 -c 0 -i 377 -a 0 -x {5.0 0.0 26 ------- null} - -t 1.95925 -s 5 -d 4 -p ack -e 40 -c 0 -i 377 -a 0 -x {5.0 0.0 26 ------- null} h -t 1.95925 -s 5 -d 4 -p ack -e 40 -c 0 -i 377 -a 0 -x {5.0 0.0 -1 ------- null} + -t 1.96 -s 1 -d 3 -p cbr -e 500 -c 1 -i 378 -a 1 -x {1.0 6.0 168 ------- null} - -t 1.96 -s 1 -d 3 -p cbr -e 500 -c 1 -i 378 -a 1 -x {1.0 6.0 168 ------- null} h -t 1.96 -s 1 -d 3 -p cbr -e 500 -c 1 -i 378 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.96 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 379 -a 1 -x {2.0 7.0 126 ------- null} - -t 1.96 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 379 -a 1 -x {2.0 7.0 126 ------- null} h -t 1.96 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 379 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.96331 -s 5 -d 4 -p ack -e 40 -c 0 -i 375 -a 0 -x {5.0 0.0 25 ------- null} + -t 1.96331 -s 4 -d 3 -p ack -e 40 -c 0 -i 375 -a 0 -x {5.0 0.0 25 ------- null} - -t 1.96331 -s 4 -d 3 -p ack -e 40 -c 0 -i 375 -a 0 -x {5.0 0.0 25 ------- null} h -t 1.96331 -s 4 -d 3 -p ack -e 40 -c 0 -i 375 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.96365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 362 -a 1 -x {1.0 6.0 164 ------- null} h -t 1.96365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 362 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.964 -s 1 -d 3 -p cbr -e 500 -c 1 -i 373 -a 1 -x {1.0 6.0 167 ------- null} + -t 1.964 -s 3 -d 4 -p cbr -e 500 -c 1 -i 373 -a 1 -x {1.0 6.0 167 ------- null} r -t 1.96565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 350 -a 1 -x {2.0 7.0 112 ------- null} + -t 1.96565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 350 -a 1 -x {2.0 7.0 112 ------- null} - -t 1.96565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 350 -a 1 -x {2.0 7.0 112 ------- null} h -t 1.96565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 350 -a 1 -x {2.0 7.0 -1 ------- null} - -t 1.96765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 363 -a 1 -x {2.0 7.0 118 ------- null} h -t 1.96765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 363 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.968 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 374 -a 1 -x {2.0 7.0 124 ------- null} + -t 1.968 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 374 -a 1 -x {2.0 7.0 124 ------- null} + -t 1.97 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 380 -a 1 -x {2.0 7.0 127 ------- null} - -t 1.97 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 380 -a 1 -x {2.0 7.0 127 ------- null} h -t 1.97 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 380 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.97363 -s 4 -d 3 -p ack -e 40 -c 0 -i 367 -a 0 -x {5.0 0.0 23 ------- null} + -t 1.97363 -s 3 -d 0 -p ack -e 40 -c 0 -i 367 -a 0 -x {5.0 0.0 23 ------- null} - -t 1.97363 -s 3 -d 0 -p ack -e 40 -c 0 -i 367 -a 0 -x {5.0 0.0 23 ------- null} h -t 1.97363 -s 3 -d 0 -p ack -e 40 -c 0 -i 367 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.97365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 353 -a 1 -x {2.0 7.0 113 ------- null} + -t 1.97365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 353 -a 1 -x {2.0 7.0 113 ------- null} r -t 1.97365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 347 -a 1 -x {2.0 7.0 111 ------- null} - -t 1.97365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 353 -a 1 -x {2.0 7.0 113 ------- null} h -t 1.97365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 353 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.97525 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {0.0 5.0 27 ------- null} + -t 1.97525 -s 5 -d 4 -p ack -e 40 -c 0 -i 381 -a 0 -x {5.0 0.0 27 ------- null} - -t 1.97525 -s 5 -d 4 -p ack -e 40 -c 0 -i 381 -a 0 -x {5.0 0.0 27 ------- null} h -t 1.97525 -s 5 -d 4 -p ack -e 40 -c 0 -i 381 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.97565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 364 -a 1 -x {2.0 7.0 119 ------- null} h -t 1.97565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 364 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.97765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 355 -a 1 -x {1.0 6.0 162 ------- null} + -t 1.97765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 355 -a 1 -x {1.0 6.0 162 ------- null} - -t 1.97765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 355 -a 1 -x {1.0 6.0 162 ------- null} h -t 1.97765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 355 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.978 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 376 -a 1 -x {2.0 7.0 125 ------- null} + -t 1.978 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 376 -a 1 -x {2.0 7.0 125 ------- null} r -t 1.97931 -s 5 -d 4 -p ack -e 40 -c 0 -i 377 -a 0 -x {5.0 0.0 26 ------- null} + -t 1.97931 -s 4 -d 3 -p ack -e 40 -c 0 -i 377 -a 0 -x {5.0 0.0 26 ------- null} - -t 1.97931 -s 4 -d 3 -p ack -e 40 -c 0 -i 377 -a 0 -x {5.0 0.0 26 ------- null} h -t 1.97931 -s 4 -d 3 -p ack -e 40 -c 0 -i 377 -a 0 -x {5.0 0.0 -1 ------- null} + -t 1.98 -s 1 -d 3 -p cbr -e 500 -c 1 -i 382 -a 1 -x {1.0 6.0 169 ------- null} - -t 1.98 -s 1 -d 3 -p cbr -e 500 -c 1 -i 382 -a 1 -x {1.0 6.0 169 ------- null} h -t 1.98 -s 1 -d 3 -p cbr -e 500 -c 1 -i 382 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.98 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 383 -a 1 -x {2.0 7.0 128 ------- null} - -t 1.98 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 383 -a 1 -x {2.0 7.0 128 ------- null} h -t 1.98 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 383 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.98165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 349 -a 1 -x {1.0 6.0 161 ------- null} - -t 1.98365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 365 -a 1 -x {1.0 6.0 165 ------- null} h -t 1.98365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 365 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.984 -s 1 -d 3 -p cbr -e 500 -c 1 -i 378 -a 1 -x {1.0 6.0 168 ------- null} + -t 1.984 -s 3 -d 4 -p cbr -e 500 -c 1 -i 378 -a 1 -x {1.0 6.0 168 ------- null} r -t 1.98565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {0.0 5.0 30 ------- null} + -t 1.98565 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {0.0 5.0 30 ------- null} - -t 1.98565 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {0.0 5.0 30 ------- null} h -t 1.98565 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {0.0 5.0 -1 ------- null} - -t 1.98765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 366 -a 1 -x {2.0 7.0 120 ------- null} h -t 1.98765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 366 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.988 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 379 -a 1 -x {2.0 7.0 126 ------- null} + -t 1.988 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 379 -a 1 -x {2.0 7.0 126 ------- null} + -t 1.99 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 384 -a 1 -x {2.0 7.0 129 ------- null} - -t 1.99 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 384 -a 1 -x {2.0 7.0 129 ------- null} h -t 1.99 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 384 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.99365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 358 -a 1 -x {2.0 7.0 115 ------- null} + -t 1.99365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 358 -a 1 -x {2.0 7.0 115 ------- null} - -t 1.99365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 358 -a 1 -x {2.0 7.0 115 ------- null} h -t 1.99365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 358 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.99365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 350 -a 1 -x {2.0 7.0 112 ------- null} r -t 1.9937 -s 3 -d 0 -p ack -e 40 -c 0 -i 367 -a 0 -x {5.0 0.0 23 ------- null} + -t 1.9937 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {0.0 5.0 31 ------- null} - -t 1.9937 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {0.0 5.0 31 ------- null} h -t 1.9937 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.99531 -s 5 -d 4 -p ack -e 40 -c 0 -i 381 -a 0 -x {5.0 0.0 27 ------- null} + -t 1.99531 -s 4 -d 3 -p ack -e 40 -c 0 -i 381 -a 0 -x {5.0 0.0 27 ------- null} - -t 1.99531 -s 4 -d 3 -p ack -e 40 -c 0 -i 381 -a 0 -x {5.0 0.0 27 ------- null} h -t 1.99531 -s 4 -d 3 -p ack -e 40 -c 0 -i 381 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.99565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 368 -a 1 -x {2.0 7.0 121 ------- null} h -t 1.99565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 368 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.99765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 359 -a 1 -x {1.0 6.0 163 ------- null} + -t 1.99765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 359 -a 1 -x {1.0 6.0 163 ------- null} - -t 1.99765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 359 -a 1 -x {1.0 6.0 163 ------- null} h -t 1.99765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 359 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.998 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 380 -a 1 -x {2.0 7.0 127 ------- null} + -t 1.998 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 380 -a 1 -x {2.0 7.0 127 ------- null} v -t 2 sim_annotation 2 22 Send Packet_31 to 35 + -t 2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 386 -a 1 -x {1.0 6.0 170 ------- null} - -t 2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 386 -a 1 -x {1.0 6.0 170 ------- null} h -t 2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 386 -a 1 -x {1.0 6.0 -1 ------- null} + -t 2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 387 -a 1 -x {2.0 7.0 130 ------- null} - -t 2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 387 -a 1 -x {2.0 7.0 130 ------- null} h -t 2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 387 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.00163 -s 4 -d 3 -p ack -e 40 -c 0 -i 372 -a 0 -x {5.0 0.0 24 ------- null} + -t 2.00163 -s 3 -d 0 -p ack -e 40 -c 0 -i 372 -a 0 -x {5.0 0.0 24 ------- null} - -t 2.00163 -s 3 -d 0 -p ack -e 40 -c 0 -i 372 -a 0 -x {5.0 0.0 24 ------- null} h -t 2.00163 -s 3 -d 0 -p ack -e 40 -c 0 -i 372 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.00165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 353 -a 1 -x {2.0 7.0 113 ------- null} r -t 2.00165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 355 -a 1 -x {1.0 6.0 162 ------- null} - -t 2.00365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 369 -a 1 -x {1.0 6.0 166 ------- null} h -t 2.00365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 369 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.004 -s 1 -d 3 -p cbr -e 500 -c 1 -i 382 -a 1 -x {1.0 6.0 169 ------- null} + -t 2.004 -s 3 -d 4 -p cbr -e 500 -c 1 -i 382 -a 1 -x {1.0 6.0 169 ------- null} r -t 2.00565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 360 -a 1 -x {2.0 7.0 116 ------- null} + -t 2.00565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 360 -a 1 -x {2.0 7.0 116 ------- null} - -t 2.00565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 360 -a 1 -x {2.0 7.0 116 ------- null} h -t 2.00565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 360 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.00725 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {0.0 5.0 30 ------- null} + -t 2.00725 -s 5 -d 4 -p ack -e 40 -c 0 -i 388 -a 0 -x {5.0 0.0 27 ------- null} - -t 2.00725 -s 5 -d 4 -p ack -e 40 -c 0 -i 388 -a 0 -x {5.0 0.0 27 ------- null} h -t 2.00725 -s 5 -d 4 -p ack -e 40 -c 0 -i 388 -a 0 -x {5.0 0.0 -1 ------- null} - -t 2.00765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 370 -a 1 -x {2.0 7.0 122 ------- null} h -t 2.00765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 370 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.008 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 383 -a 1 -x {2.0 7.0 128 ------- null} + -t 2.008 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 383 -a 1 -x {2.0 7.0 128 ------- null} + -t 2.01 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 389 -a 1 -x {2.0 7.0 131 ------- null} - -t 2.01 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 389 -a 1 -x {2.0 7.0 131 ------- null} h -t 2.01 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 389 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.01363 -s 4 -d 3 -p ack -e 40 -c 0 -i 375 -a 0 -x {5.0 0.0 25 ------- null} + -t 2.01363 -s 3 -d 0 -p ack -e 40 -c 0 -i 375 -a 0 -x {5.0 0.0 25 ------- null} - -t 2.01363 -s 3 -d 0 -p ack -e 40 -c 0 -i 375 -a 0 -x {5.0 0.0 25 ------- null} h -t 2.01363 -s 3 -d 0 -p ack -e 40 -c 0 -i 375 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.01365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 361 -a 1 -x {2.0 7.0 117 ------- null} + -t 2.01365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 361 -a 1 -x {2.0 7.0 117 ------- null} - -t 2.01365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 361 -a 1 -x {2.0 7.0 117 ------- null} h -t 2.01365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 361 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.0153 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {0.0 5.0 31 ------- null} + -t 2.0153 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {0.0 5.0 31 ------- null} d -t 2.0153 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {0.0 5.0 31 ------- null} - -t 2.01565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 371 -a 1 -x {2.0 7.0 123 ------- null} h -t 2.01565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 371 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.01765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 362 -a 1 -x {1.0 6.0 164 ------- null} + -t 2.01765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 362 -a 1 -x {1.0 6.0 164 ------- null} - -t 2.01765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 362 -a 1 -x {1.0 6.0 164 ------- null} h -t 2.01765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 362 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.018 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 384 -a 1 -x {2.0 7.0 129 ------- null} + -t 2.018 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 384 -a 1 -x {2.0 7.0 129 ------- null} + -t 2.02 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 390 -a 1 -x {2.0 7.0 132 ------- null} - -t 2.02 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 390 -a 1 -x {2.0 7.0 132 ------- null} h -t 2.02 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 390 -a 1 -x {2.0 7.0 -1 ------- null} + -t 2.02 -s 1 -d 3 -p cbr -e 500 -c 1 -i 391 -a 1 -x {1.0 6.0 171 ------- null} - -t 2.02 -s 1 -d 3 -p cbr -e 500 -c 1 -i 391 -a 1 -x {1.0 6.0 171 ------- null} h -t 2.02 -s 1 -d 3 -p cbr -e 500 -c 1 -i 391 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.02165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 358 -a 1 -x {2.0 7.0 115 ------- null} r -t 2.02165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 359 -a 1 -x {1.0 6.0 163 ------- null} r -t 2.0217 -s 3 -d 0 -p ack -e 40 -c 0 -i 372 -a 0 -x {5.0 0.0 24 ------- null} + -t 2.0217 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {0.0 5.0 32 ------- null} - -t 2.0217 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {0.0 5.0 32 ------- null} h -t 2.0217 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {0.0 5.0 -1 ------- null} - -t 2.02365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 373 -a 1 -x {1.0 6.0 167 ------- null} h -t 2.02365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 373 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.024 -s 1 -d 3 -p cbr -e 500 -c 1 -i 386 -a 1 -x {1.0 6.0 170 ------- null} + -t 2.024 -s 3 -d 4 -p cbr -e 500 -c 1 -i 386 -a 1 -x {1.0 6.0 170 ------- null} r -t 2.02565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 363 -a 1 -x {2.0 7.0 118 ------- null} + -t 2.02565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 363 -a 1 -x {2.0 7.0 118 ------- null} - -t 2.02565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 363 -a 1 -x {2.0 7.0 118 ------- null} h -t 2.02565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 363 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.02731 -s 5 -d 4 -p ack -e 40 -c 0 -i 388 -a 0 -x {5.0 0.0 27 ------- null} + -t 2.02731 -s 4 -d 3 -p ack -e 40 -c 0 -i 388 -a 0 -x {5.0 0.0 27 ------- null} - -t 2.02731 -s 4 -d 3 -p ack -e 40 -c 0 -i 388 -a 0 -x {5.0 0.0 27 ------- null} h -t 2.02731 -s 4 -d 3 -p ack -e 40 -c 0 -i 388 -a 0 -x {5.0 0.0 -1 ------- null} - -t 2.02765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 374 -a 1 -x {2.0 7.0 124 ------- null} h -t 2.02765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 374 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.028 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 387 -a 1 -x {2.0 7.0 130 ------- null} + -t 2.028 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 387 -a 1 -x {2.0 7.0 130 ------- null} r -t 2.02963 -s 4 -d 3 -p ack -e 40 -c 0 -i 377 -a 0 -x {5.0 0.0 26 ------- null} + -t 2.02963 -s 3 -d 0 -p ack -e 40 -c 0 -i 377 -a 0 -x {5.0 0.0 26 ------- null} - -t 2.02963 -s 3 -d 0 -p ack -e 40 -c 0 -i 377 -a 0 -x {5.0 0.0 26 ------- null} h -t 2.02963 -s 3 -d 0 -p ack -e 40 -c 0 -i 377 -a 0 -x {5.0 0.0 -1 ------- null} + -t 2.03 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 393 -a 1 -x {2.0 7.0 133 ------- null} - -t 2.03 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 393 -a 1 -x {2.0 7.0 133 ------- null} h -t 2.03 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 393 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.03365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 364 -a 1 -x {2.0 7.0 119 ------- null} + -t 2.03365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 364 -a 1 -x {2.0 7.0 119 ------- null} r -t 2.03365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 360 -a 1 -x {2.0 7.0 116 ------- null} - -t 2.03365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 364 -a 1 -x {2.0 7.0 119 ------- null} h -t 2.03365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 364 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.0337 -s 3 -d 0 -p ack -e 40 -c 0 -i 375 -a 0 -x {5.0 0.0 25 ------- null} + -t 2.0337 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {0.0 5.0 33 ------- null} - -t 2.0337 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {0.0 5.0 33 ------- null} h -t 2.0337 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {0.0 5.0 -1 ------- null} - -t 2.03565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 376 -a 1 -x {2.0 7.0 125 ------- null} h -t 2.03565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 376 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.03765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 365 -a 1 -x {1.0 6.0 165 ------- null} + -t 2.03765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 365 -a 1 -x {1.0 6.0 165 ------- null} - -t 2.03765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 365 -a 1 -x {1.0 6.0 165 ------- null} h -t 2.03765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 365 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.038 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 389 -a 1 -x {2.0 7.0 131 ------- null} + -t 2.038 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 389 -a 1 -x {2.0 7.0 131 ------- null} + -t 2.04 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 395 -a 1 -x {2.0 7.0 134 ------- null} - -t 2.04 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 395 -a 1 -x {2.0 7.0 134 ------- null} h -t 2.04 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 395 -a 1 -x {2.0 7.0 -1 ------- null} + -t 2.04 -s 1 -d 3 -p cbr -e 500 -c 1 -i 396 -a 1 -x {1.0 6.0 172 ------- null} - -t 2.04 -s 1 -d 3 -p cbr -e 500 -c 1 -i 396 -a 1 -x {1.0 6.0 172 ------- null} h -t 2.04 -s 1 -d 3 -p cbr -e 500 -c 1 -i 396 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.04165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 361 -a 1 -x {2.0 7.0 117 ------- null} r -t 2.04165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 362 -a 1 -x {1.0 6.0 164 ------- null} r -t 2.0433 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {0.0 5.0 32 ------- null} + -t 2.0433 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {0.0 5.0 32 ------- null} d -t 2.0433 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {0.0 5.0 32 ------- null} - -t 2.04365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 378 -a 1 -x {1.0 6.0 168 ------- null} h -t 2.04365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 378 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.044 -s 1 -d 3 -p cbr -e 500 -c 1 -i 391 -a 1 -x {1.0 6.0 171 ------- null} + -t 2.044 -s 3 -d 4 -p cbr -e 500 -c 1 -i 391 -a 1 -x {1.0 6.0 171 ------- null} r -t 2.04563 -s 4 -d 3 -p ack -e 40 -c 0 -i 381 -a 0 -x {5.0 0.0 27 ------- null} + -t 2.04563 -s 3 -d 0 -p ack -e 40 -c 0 -i 381 -a 0 -x {5.0 0.0 27 ------- null} - -t 2.04563 -s 3 -d 0 -p ack -e 40 -c 0 -i 381 -a 0 -x {5.0 0.0 27 ------- null} h -t 2.04563 -s 3 -d 0 -p ack -e 40 -c 0 -i 381 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.04565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 366 -a 1 -x {2.0 7.0 120 ------- null} + -t 2.04565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 366 -a 1 -x {2.0 7.0 120 ------- null} - -t 2.04565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 366 -a 1 -x {2.0 7.0 120 ------- null} h -t 2.04565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 366 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.04765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 379 -a 1 -x {2.0 7.0 126 ------- null} h -t 2.04765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 379 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.048 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 390 -a 1 -x {2.0 7.0 132 ------- null} + -t 2.048 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 390 -a 1 -x {2.0 7.0 132 ------- null} r -t 2.0497 -s 3 -d 0 -p ack -e 40 -c 0 -i 377 -a 0 -x {5.0 0.0 26 ------- null} + -t 2.0497 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {0.0 5.0 34 ------- null} - -t 2.0497 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {0.0 5.0 34 ------- null} h -t 2.0497 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {0.0 5.0 -1 ------- null} + -t 2.05 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 398 -a 1 -x {2.0 7.0 135 ------- null} - -t 2.05 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 398 -a 1 -x {2.0 7.0 135 ------- null} h -t 2.05 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 398 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.05365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 368 -a 1 -x {2.0 7.0 121 ------- null} + -t 2.05365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 368 -a 1 -x {2.0 7.0 121 ------- null} r -t 2.05365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 363 -a 1 -x {2.0 7.0 118 ------- null} - -t 2.05365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 368 -a 1 -x {2.0 7.0 121 ------- null} h -t 2.05365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 368 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.0553 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {0.0 5.0 33 ------- null} + -t 2.0553 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {0.0 5.0 33 ------- null} d -t 2.0553 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {0.0 5.0 33 ------- null} - -t 2.05565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 380 -a 1 -x {2.0 7.0 127 ------- null} h -t 2.05565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 380 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.05765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 369 -a 1 -x {1.0 6.0 166 ------- null} + -t 2.05765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 369 -a 1 -x {1.0 6.0 166 ------- null} - -t 2.05765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 369 -a 1 -x {1.0 6.0 166 ------- null} h -t 2.05765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 369 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.058 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 393 -a 1 -x {2.0 7.0 133 ------- null} + -t 2.058 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 393 -a 1 -x {2.0 7.0 133 ------- null} + -t 2.06 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 399 -a 1 -x {2.0 7.0 136 ------- null} - -t 2.06 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 399 -a 1 -x {2.0 7.0 136 ------- null} h -t 2.06 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 399 -a 1 -x {2.0 7.0 -1 ------- null} + -t 2.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 400 -a 1 -x {1.0 6.0 173 ------- null} - -t 2.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 400 -a 1 -x {1.0 6.0 173 ------- null} h -t 2.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 400 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.06165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 364 -a 1 -x {2.0 7.0 119 ------- null} r -t 2.06165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 365 -a 1 -x {1.0 6.0 165 ------- null} - -t 2.06365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 382 -a 1 -x {1.0 6.0 169 ------- null} h -t 2.06365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 382 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.064 -s 1 -d 3 -p cbr -e 500 -c 1 -i 396 -a 1 -x {1.0 6.0 172 ------- null} + -t 2.064 -s 3 -d 4 -p cbr -e 500 -c 1 -i 396 -a 1 -x {1.0 6.0 172 ------- null} r -t 2.06565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 370 -a 1 -x {2.0 7.0 122 ------- null} + -t 2.06565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 370 -a 1 -x {2.0 7.0 122 ------- null} - -t 2.06565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 370 -a 1 -x {2.0 7.0 122 ------- null} h -t 2.06565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 370 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.0657 -s 3 -d 0 -p ack -e 40 -c 0 -i 381 -a 0 -x {5.0 0.0 27 ------- null} + -t 2.0657 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {0.0 5.0 35 ------- null} - -t 2.0657 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {0.0 5.0 35 ------- null} h -t 2.0657 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {0.0 5.0 -1 ------- null} - -t 2.06765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 383 -a 1 -x {2.0 7.0 128 ------- null} h -t 2.06765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 383 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.068 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 395 -a 1 -x {2.0 7.0 134 ------- null} + -t 2.068 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 395 -a 1 -x {2.0 7.0 134 ------- null} + -t 2.07 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 402 -a 1 -x {2.0 7.0 137 ------- null} - -t 2.07 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 402 -a 1 -x {2.0 7.0 137 ------- null} h -t 2.07 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 402 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.0713 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {0.0 5.0 34 ------- null} + -t 2.0713 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {0.0 5.0 34 ------- null} d -t 2.0713 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {0.0 5.0 34 ------- null} r -t 2.07365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 371 -a 1 -x {2.0 7.0 123 ------- null} + -t 2.07365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 371 -a 1 -x {2.0 7.0 123 ------- null} r -t 2.07365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 366 -a 1 -x {2.0 7.0 120 ------- null} - -t 2.07365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 371 -a 1 -x {2.0 7.0 123 ------- null} h -t 2.07365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 371 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.07565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 384 -a 1 -x {2.0 7.0 129 ------- null} h -t 2.07565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 384 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.07763 -s 4 -d 3 -p ack -e 40 -c 0 -i 388 -a 0 -x {5.0 0.0 27 ------- null} + -t 2.07763 -s 3 -d 0 -p ack -e 40 -c 0 -i 388 -a 0 -x {5.0 0.0 27 ------- null} - -t 2.07763 -s 3 -d 0 -p ack -e 40 -c 0 -i 388 -a 0 -x {5.0 0.0 27 ------- null} h -t 2.07763 -s 3 -d 0 -p ack -e 40 -c 0 -i 388 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.07765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 373 -a 1 -x {1.0 6.0 167 ------- null} + -t 2.07765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 373 -a 1 -x {1.0 6.0 167 ------- null} - -t 2.07765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 373 -a 1 -x {1.0 6.0 167 ------- null} h -t 2.07765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 373 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.078 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 398 -a 1 -x {2.0 7.0 135 ------- null} + -t 2.078 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 398 -a 1 -x {2.0 7.0 135 ------- null} + -t 2.08 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 403 -a 1 -x {2.0 7.0 138 ------- null} - -t 2.08 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 403 -a 1 -x {2.0 7.0 138 ------- null} h -t 2.08 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 403 -a 1 -x {2.0 7.0 -1 ------- null} v -t 2.0800000000000001 sim_annotation 2.0800000000000001 23 Lost Packet (all of them) + -t 2.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 404 -a 1 -x {1.0 6.0 174 ------- null} - -t 2.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 404 -a 1 -x {1.0 6.0 174 ------- null} h -t 2.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 404 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.08165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 368 -a 1 -x {2.0 7.0 121 ------- null} r -t 2.08165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 369 -a 1 -x {1.0 6.0 166 ------- null} - -t 2.08365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 386 -a 1 -x {1.0 6.0 170 ------- null} h -t 2.08365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 386 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.084 -s 1 -d 3 -p cbr -e 500 -c 1 -i 400 -a 1 -x {1.0 6.0 173 ------- null} + -t 2.084 -s 3 -d 4 -p cbr -e 500 -c 1 -i 400 -a 1 -x {1.0 6.0 173 ------- null} r -t 2.08565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 374 -a 1 -x {2.0 7.0 124 ------- null} + -t 2.08565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 374 -a 1 -x {2.0 7.0 124 ------- null} - -t 2.08565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 374 -a 1 -x {2.0 7.0 124 ------- null} h -t 2.08565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 374 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.0873 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {0.0 5.0 35 ------- null} + -t 2.0873 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {0.0 5.0 35 ------- null} d -t 2.0873 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {0.0 5.0 35 ------- null} - -t 2.08765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 387 -a 1 -x {2.0 7.0 130 ------- null} h -t 2.08765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 387 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.088 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 399 -a 1 -x {2.0 7.0 136 ------- null} + -t 2.088 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 399 -a 1 -x {2.0 7.0 136 ------- null} + -t 2.09 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 405 -a 1 -x {2.0 7.0 139 ------- null} - -t 2.09 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 405 -a 1 -x {2.0 7.0 139 ------- null} h -t 2.09 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 405 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.09365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 376 -a 1 -x {2.0 7.0 125 ------- null} + -t 2.09365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 376 -a 1 -x {2.0 7.0 125 ------- null} r -t 2.09365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 370 -a 1 -x {2.0 7.0 122 ------- null} - -t 2.09365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 376 -a 1 -x {2.0 7.0 125 ------- null} h -t 2.09365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 376 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.09565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 389 -a 1 -x {2.0 7.0 131 ------- null} h -t 2.09565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 389 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.09765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 378 -a 1 -x {1.0 6.0 168 ------- null} + -t 2.09765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 378 -a 1 -x {1.0 6.0 168 ------- null} - -t 2.09765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 378 -a 1 -x {1.0 6.0 168 ------- null} h -t 2.09765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 378 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.0977 -s 3 -d 0 -p ack -e 40 -c 0 -i 388 -a 0 -x {5.0 0.0 27 ------- null} r -t 2.098 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 402 -a 1 -x {2.0 7.0 137 ------- null} + -t 2.098 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 402 -a 1 -x {2.0 7.0 137 ------- null} + -t 2.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 406 -a 1 -x {2.0 7.0 140 ------- null} - -t 2.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 406 -a 1 -x {2.0 7.0 140 ------- null} h -t 2.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 406 -a 1 -x {2.0 7.0 -1 ------- null} + -t 2.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 407 -a 1 -x {1.0 6.0 175 ------- null} - -t 2.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 407 -a 1 -x {1.0 6.0 175 ------- null} h -t 2.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 407 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.10165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 371 -a 1 -x {2.0 7.0 123 ------- null} r -t 2.10165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 373 -a 1 -x {1.0 6.0 167 ------- null} - -t 2.10365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 391 -a 1 -x {1.0 6.0 171 ------- null} h -t 2.10365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 391 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.104 -s 1 -d 3 -p cbr -e 500 -c 1 -i 404 -a 1 -x {1.0 6.0 174 ------- null} + -t 2.104 -s 3 -d 4 -p cbr -e 500 -c 1 -i 404 -a 1 -x {1.0 6.0 174 ------- null} r -t 2.10565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 379 -a 1 -x {2.0 7.0 126 ------- null} + -t 2.10565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 379 -a 1 -x {2.0 7.0 126 ------- null} - -t 2.10565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 379 -a 1 -x {2.0 7.0 126 ------- null} h -t 2.10565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 379 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.10765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 390 -a 1 -x {2.0 7.0 132 ------- null} h -t 2.10765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 390 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.108 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 403 -a 1 -x {2.0 7.0 138 ------- null} + -t 2.108 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 403 -a 1 -x {2.0 7.0 138 ------- null} + -t 2.11 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 408 -a 1 -x {2.0 7.0 141 ------- null} - -t 2.11 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 408 -a 1 -x {2.0 7.0 141 ------- null} h -t 2.11 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 408 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.11365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 380 -a 1 -x {2.0 7.0 127 ------- null} + -t 2.11365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 380 -a 1 -x {2.0 7.0 127 ------- null} r -t 2.11365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 374 -a 1 -x {2.0 7.0 124 ------- null} - -t 2.11365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 380 -a 1 -x {2.0 7.0 127 ------- null} h -t 2.11365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 380 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.11565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 393 -a 1 -x {2.0 7.0 133 ------- null} h -t 2.11565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 393 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.11765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 382 -a 1 -x {1.0 6.0 169 ------- null} + -t 2.11765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 382 -a 1 -x {1.0 6.0 169 ------- null} - -t 2.11765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 382 -a 1 -x {1.0 6.0 169 ------- null} h -t 2.11765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 382 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.118 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 405 -a 1 -x {2.0 7.0 139 ------- null} + -t 2.118 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 405 -a 1 -x {2.0 7.0 139 ------- null} + -t 2.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 409 -a 1 -x {2.0 7.0 142 ------- null} - -t 2.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 409 -a 1 -x {2.0 7.0 142 ------- null} h -t 2.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 409 -a 1 -x {2.0 7.0 -1 ------- null} + -t 2.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 410 -a 1 -x {1.0 6.0 176 ------- null} - -t 2.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 410 -a 1 -x {1.0 6.0 176 ------- null} h -t 2.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 410 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.12165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 376 -a 1 -x {2.0 7.0 125 ------- null} r -t 2.12165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 378 -a 1 -x {1.0 6.0 168 ------- null} - -t 2.12365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 396 -a 1 -x {1.0 6.0 172 ------- null} h -t 2.12365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 396 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.124 -s 1 -d 3 -p cbr -e 500 -c 1 -i 407 -a 1 -x {1.0 6.0 175 ------- null} + -t 2.124 -s 3 -d 4 -p cbr -e 500 -c 1 -i 407 -a 1 -x {1.0 6.0 175 ------- null} r -t 2.12565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 383 -a 1 -x {2.0 7.0 128 ------- null} + -t 2.12565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 383 -a 1 -x {2.0 7.0 128 ------- null} - -t 2.12565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 383 -a 1 -x {2.0 7.0 128 ------- null} h -t 2.12565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 383 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.12765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 395 -a 1 -x {2.0 7.0 134 ------- null} h -t 2.12765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 395 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.128 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 406 -a 1 -x {2.0 7.0 140 ------- null} + -t 2.128 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 406 -a 1 -x {2.0 7.0 140 ------- null} + -t 2.13 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 411 -a 1 -x {2.0 7.0 143 ------- null} - -t 2.13 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 411 -a 1 -x {2.0 7.0 143 ------- null} h -t 2.13 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 411 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.13365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 384 -a 1 -x {2.0 7.0 129 ------- null} + -t 2.13365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 384 -a 1 -x {2.0 7.0 129 ------- null} r -t 2.13365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 379 -a 1 -x {2.0 7.0 126 ------- null} - -t 2.13365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 384 -a 1 -x {2.0 7.0 129 ------- null} h -t 2.13365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 384 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.13565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 398 -a 1 -x {2.0 7.0 135 ------- null} h -t 2.13565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 398 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.13765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 386 -a 1 -x {1.0 6.0 170 ------- null} + -t 2.13765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 386 -a 1 -x {1.0 6.0 170 ------- null} - -t 2.13765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 386 -a 1 -x {1.0 6.0 170 ------- null} h -t 2.13765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 386 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.138 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 408 -a 1 -x {2.0 7.0 141 ------- null} + -t 2.138 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 408 -a 1 -x {2.0 7.0 141 ------- null} + -t 2.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 412 -a 1 -x {2.0 7.0 144 ------- null} - -t 2.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 412 -a 1 -x {2.0 7.0 144 ------- null} h -t 2.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 412 -a 1 -x {2.0 7.0 -1 ------- null} + -t 2.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 413 -a 1 -x {1.0 6.0 177 ------- null} - -t 2.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 413 -a 1 -x {1.0 6.0 177 ------- null} h -t 2.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 413 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.14165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 380 -a 1 -x {2.0 7.0 127 ------- null} r -t 2.14165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 382 -a 1 -x {1.0 6.0 169 ------- null} - -t 2.14365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 400 -a 1 -x {1.0 6.0 173 ------- null} h -t 2.14365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 400 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.144 -s 1 -d 3 -p cbr -e 500 -c 1 -i 410 -a 1 -x {1.0 6.0 176 ------- null} + -t 2.144 -s 3 -d 4 -p cbr -e 500 -c 1 -i 410 -a 1 -x {1.0 6.0 176 ------- null} r -t 2.14565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 387 -a 1 -x {2.0 7.0 130 ------- null} + -t 2.14565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 387 -a 1 -x {2.0 7.0 130 ------- null} - -t 2.14565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 387 -a 1 -x {2.0 7.0 130 ------- null} h -t 2.14565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 387 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.14765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 399 -a 1 -x {2.0 7.0 136 ------- null} h -t 2.14765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 399 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.148 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 409 -a 1 -x {2.0 7.0 142 ------- null} + -t 2.148 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 409 -a 1 -x {2.0 7.0 142 ------- null} + -t 2.15 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 414 -a 1 -x {2.0 7.0 145 ------- null} - -t 2.15 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 414 -a 1 -x {2.0 7.0 145 ------- null} h -t 2.15 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 414 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.15365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 389 -a 1 -x {2.0 7.0 131 ------- null} + -t 2.15365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 389 -a 1 -x {2.0 7.0 131 ------- null} r -t 2.15365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 383 -a 1 -x {2.0 7.0 128 ------- null} - -t 2.15365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 389 -a 1 -x {2.0 7.0 131 ------- null} h -t 2.15365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 389 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.15565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 402 -a 1 -x {2.0 7.0 137 ------- null} h -t 2.15565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 402 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.15765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 391 -a 1 -x {1.0 6.0 171 ------- null} + -t 2.15765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 391 -a 1 -x {1.0 6.0 171 ------- null} - -t 2.15765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 391 -a 1 -x {1.0 6.0 171 ------- null} h -t 2.15765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 391 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.158 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 411 -a 1 -x {2.0 7.0 143 ------- null} + -t 2.158 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 411 -a 1 -x {2.0 7.0 143 ------- null} + -t 2.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 415 -a 1 -x {2.0 7.0 146 ------- null} - -t 2.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 415 -a 1 -x {2.0 7.0 146 ------- null} h -t 2.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 415 -a 1 -x {2.0 7.0 -1 ------- null} + -t 2.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 416 -a 1 -x {1.0 6.0 178 ------- null} - -t 2.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 416 -a 1 -x {1.0 6.0 178 ------- null} h -t 2.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 416 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.16165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 384 -a 1 -x {2.0 7.0 129 ------- null} r -t 2.16165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 386 -a 1 -x {1.0 6.0 170 ------- null} - -t 2.16365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 404 -a 1 -x {1.0 6.0 174 ------- null} h -t 2.16365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 404 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.164 -s 1 -d 3 -p cbr -e 500 -c 1 -i 413 -a 1 -x {1.0 6.0 177 ------- null} + -t 2.164 -s 3 -d 4 -p cbr -e 500 -c 1 -i 413 -a 1 -x {1.0 6.0 177 ------- null} r -t 2.16565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 390 -a 1 -x {2.0 7.0 132 ------- null} + -t 2.16565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 390 -a 1 -x {2.0 7.0 132 ------- null} - -t 2.16565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 390 -a 1 -x {2.0 7.0 132 ------- null} h -t 2.16565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 390 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.16765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 403 -a 1 -x {2.0 7.0 138 ------- null} h -t 2.16765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 403 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.168 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 412 -a 1 -x {2.0 7.0 144 ------- null} + -t 2.168 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 412 -a 1 -x {2.0 7.0 144 ------- null} + -t 2.17 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 417 -a 1 -x {2.0 7.0 147 ------- null} - -t 2.17 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 417 -a 1 -x {2.0 7.0 147 ------- null} h -t 2.17 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 417 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.17365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 393 -a 1 -x {2.0 7.0 133 ------- null} + -t 2.17365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 393 -a 1 -x {2.0 7.0 133 ------- null} r -t 2.17365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 387 -a 1 -x {2.0 7.0 130 ------- null} - -t 2.17365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 393 -a 1 -x {2.0 7.0 133 ------- null} h -t 2.17365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 393 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.17565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 405 -a 1 -x {2.0 7.0 139 ------- null} h -t 2.17565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 405 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.17765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 396 -a 1 -x {1.0 6.0 172 ------- null} + -t 2.17765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 396 -a 1 -x {1.0 6.0 172 ------- null} - -t 2.17765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 396 -a 1 -x {1.0 6.0 172 ------- null} h -t 2.17765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 396 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.178 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 414 -a 1 -x {2.0 7.0 145 ------- null} + -t 2.178 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 414 -a 1 -x {2.0 7.0 145 ------- null} + -t 2.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 418 -a 1 -x {2.0 7.0 148 ------- null} - -t 2.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 418 -a 1 -x {2.0 7.0 148 ------- null} h -t 2.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 418 -a 1 -x {2.0 7.0 -1 ------- null} + -t 2.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 419 -a 1 -x {1.0 6.0 179 ------- null} - -t 2.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 419 -a 1 -x {1.0 6.0 179 ------- null} h -t 2.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 419 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.18165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 389 -a 1 -x {2.0 7.0 131 ------- null} r -t 2.18165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 391 -a 1 -x {1.0 6.0 171 ------- null} - -t 2.18365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 407 -a 1 -x {1.0 6.0 175 ------- null} h -t 2.18365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 407 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.184 -s 1 -d 3 -p cbr -e 500 -c 1 -i 416 -a 1 -x {1.0 6.0 178 ------- null} + -t 2.184 -s 3 -d 4 -p cbr -e 500 -c 1 -i 416 -a 1 -x {1.0 6.0 178 ------- null} r -t 2.18565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 395 -a 1 -x {2.0 7.0 134 ------- null} + -t 2.18565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 395 -a 1 -x {2.0 7.0 134 ------- null} - -t 2.18565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 395 -a 1 -x {2.0 7.0 134 ------- null} h -t 2.18565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 395 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.18765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 406 -a 1 -x {2.0 7.0 140 ------- null} h -t 2.18765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 406 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.188 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 415 -a 1 -x {2.0 7.0 146 ------- null} + -t 2.188 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 415 -a 1 -x {2.0 7.0 146 ------- null} + -t 2.19 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 420 -a 1 -x {2.0 7.0 149 ------- null} - -t 2.19 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 420 -a 1 -x {2.0 7.0 149 ------- null} h -t 2.19 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 420 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.19365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 398 -a 1 -x {2.0 7.0 135 ------- null} + -t 2.19365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 398 -a 1 -x {2.0 7.0 135 ------- null} r -t 2.19365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 390 -a 1 -x {2.0 7.0 132 ------- null} - -t 2.19365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 398 -a 1 -x {2.0 7.0 135 ------- null} h -t 2.19365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 398 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.19565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 408 -a 1 -x {2.0 7.0 141 ------- null} h -t 2.19565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 408 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.19765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 400 -a 1 -x {1.0 6.0 173 ------- null} + -t 2.19765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 400 -a 1 -x {1.0 6.0 173 ------- null} - -t 2.19765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 400 -a 1 -x {1.0 6.0 173 ------- null} h -t 2.19765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 400 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.198 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 417 -a 1 -x {2.0 7.0 147 ------- null} + -t 2.198 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 417 -a 1 -x {2.0 7.0 147 ------- null} + -t 2.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 421 -a 1 -x {2.0 7.0 150 ------- null} - -t 2.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 421 -a 1 -x {2.0 7.0 150 ------- null} h -t 2.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 421 -a 1 -x {2.0 7.0 -1 ------- null} + -t 2.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 422 -a 1 -x {1.0 6.0 180 ------- null} - -t 2.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 422 -a 1 -x {1.0 6.0 180 ------- null} h -t 2.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 422 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.20165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 393 -a 1 -x {2.0 7.0 133 ------- null} r -t 2.20165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 396 -a 1 -x {1.0 6.0 172 ------- null} - -t 2.20365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 410 -a 1 -x {1.0 6.0 176 ------- null} h -t 2.20365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 410 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.204 -s 1 -d 3 -p cbr -e 500 -c 1 -i 419 -a 1 -x {1.0 6.0 179 ------- null} + -t 2.204 -s 3 -d 4 -p cbr -e 500 -c 1 -i 419 -a 1 -x {1.0 6.0 179 ------- null} r -t 2.20565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 399 -a 1 -x {2.0 7.0 136 ------- null} + -t 2.20565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 399 -a 1 -x {2.0 7.0 136 ------- null} - -t 2.20565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 399 -a 1 -x {2.0 7.0 136 ------- null} h -t 2.20565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 399 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.20765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 409 -a 1 -x {2.0 7.0 142 ------- null} h -t 2.20765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 409 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.208 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 418 -a 1 -x {2.0 7.0 148 ------- null} + -t 2.208 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 418 -a 1 -x {2.0 7.0 148 ------- null} + -t 2.21 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 423 -a 1 -x {2.0 7.0 151 ------- null} - -t 2.21 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 423 -a 1 -x {2.0 7.0 151 ------- null} h -t 2.21 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 423 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.21365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 402 -a 1 -x {2.0 7.0 137 ------- null} + -t 2.21365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 402 -a 1 -x {2.0 7.0 137 ------- null} r -t 2.21365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 395 -a 1 -x {2.0 7.0 134 ------- null} - -t 2.21365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 402 -a 1 -x {2.0 7.0 137 ------- null} h -t 2.21365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 402 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.21565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 411 -a 1 -x {2.0 7.0 143 ------- null} h -t 2.21565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 411 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.21765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 404 -a 1 -x {1.0 6.0 174 ------- null} + -t 2.21765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 404 -a 1 -x {1.0 6.0 174 ------- null} - -t 2.21765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 404 -a 1 -x {1.0 6.0 174 ------- null} h -t 2.21765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 404 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.218 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 420 -a 1 -x {2.0 7.0 149 ------- null} + -t 2.218 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 420 -a 1 -x {2.0 7.0 149 ------- null} + -t 2.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 424 -a 1 -x {2.0 7.0 152 ------- null} - -t 2.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 424 -a 1 -x {2.0 7.0 152 ------- null} h -t 2.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 424 -a 1 -x {2.0 7.0 -1 ------- null} + -t 2.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 425 -a 1 -x {1.0 6.0 181 ------- null} - -t 2.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 425 -a 1 -x {1.0 6.0 181 ------- null} h -t 2.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 425 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.22165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 398 -a 1 -x {2.0 7.0 135 ------- null} r -t 2.22165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 400 -a 1 -x {1.0 6.0 173 ------- null} - -t 2.22365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 413 -a 1 -x {1.0 6.0 177 ------- null} h -t 2.22365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 413 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.224 -s 1 -d 3 -p cbr -e 500 -c 1 -i 422 -a 1 -x {1.0 6.0 180 ------- null} + -t 2.224 -s 3 -d 4 -p cbr -e 500 -c 1 -i 422 -a 1 -x {1.0 6.0 180 ------- null} r -t 2.22565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 403 -a 1 -x {2.0 7.0 138 ------- null} + -t 2.22565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 403 -a 1 -x {2.0 7.0 138 ------- null} - -t 2.22565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 403 -a 1 -x {2.0 7.0 138 ------- null} h -t 2.22565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 403 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.22765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 412 -a 1 -x {2.0 7.0 144 ------- null} h -t 2.22765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 412 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.228 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 421 -a 1 -x {2.0 7.0 150 ------- null} + -t 2.228 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 421 -a 1 -x {2.0 7.0 150 ------- null} + -t 2.23 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 426 -a 1 -x {2.0 7.0 153 ------- null} - -t 2.23 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 426 -a 1 -x {2.0 7.0 153 ------- null} h -t 2.23 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 426 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.23365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 405 -a 1 -x {2.0 7.0 139 ------- null} + -t 2.23365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 405 -a 1 -x {2.0 7.0 139 ------- null} r -t 2.23365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 399 -a 1 -x {2.0 7.0 136 ------- null} - -t 2.23365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 405 -a 1 -x {2.0 7.0 139 ------- null} h -t 2.23365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 405 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.23565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 414 -a 1 -x {2.0 7.0 145 ------- null} h -t 2.23565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 414 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.23765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 407 -a 1 -x {1.0 6.0 175 ------- null} + -t 2.23765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 407 -a 1 -x {1.0 6.0 175 ------- null} - -t 2.23765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 407 -a 1 -x {1.0 6.0 175 ------- null} h -t 2.23765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 407 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.238 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 423 -a 1 -x {2.0 7.0 151 ------- null} + -t 2.238 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 423 -a 1 -x {2.0 7.0 151 ------- null} + -t 2.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 427 -a 1 -x {2.0 7.0 154 ------- null} - -t 2.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 427 -a 1 -x {2.0 7.0 154 ------- null} h -t 2.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 427 -a 1 -x {2.0 7.0 -1 ------- null} + -t 2.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 428 -a 1 -x {1.0 6.0 182 ------- null} - -t 2.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 428 -a 1 -x {1.0 6.0 182 ------- null} h -t 2.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 428 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.24165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 402 -a 1 -x {2.0 7.0 137 ------- null} r -t 2.24165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 404 -a 1 -x {1.0 6.0 174 ------- null} - -t 2.24365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 416 -a 1 -x {1.0 6.0 178 ------- null} h -t 2.24365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 416 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.244 -s 1 -d 3 -p cbr -e 500 -c 1 -i 425 -a 1 -x {1.0 6.0 181 ------- null} + -t 2.244 -s 3 -d 4 -p cbr -e 500 -c 1 -i 425 -a 1 -x {1.0 6.0 181 ------- null} r -t 2.24565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 406 -a 1 -x {2.0 7.0 140 ------- null} + -t 2.24565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 406 -a 1 -x {2.0 7.0 140 ------- null} - -t 2.24565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 406 -a 1 -x {2.0 7.0 140 ------- null} h -t 2.24565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 406 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.24765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 415 -a 1 -x {2.0 7.0 146 ------- null} h -t 2.24765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 415 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.248 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 424 -a 1 -x {2.0 7.0 152 ------- null} + -t 2.248 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 424 -a 1 -x {2.0 7.0 152 ------- null} + -t 2.25 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 429 -a 1 -x {2.0 7.0 155 ------- null} - -t 2.25 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 429 -a 1 -x {2.0 7.0 155 ------- null} h -t 2.25 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 429 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.25365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 408 -a 1 -x {2.0 7.0 141 ------- null} + -t 2.25365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 408 -a 1 -x {2.0 7.0 141 ------- null} r -t 2.25365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 403 -a 1 -x {2.0 7.0 138 ------- null} - -t 2.25365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 408 -a 1 -x {2.0 7.0 141 ------- null} h -t 2.25365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 408 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.25565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 417 -a 1 -x {2.0 7.0 147 ------- null} h -t 2.25565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 417 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.25765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 410 -a 1 -x {1.0 6.0 176 ------- null} + -t 2.25765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 410 -a 1 -x {1.0 6.0 176 ------- null} - -t 2.25765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 410 -a 1 -x {1.0 6.0 176 ------- null} h -t 2.25765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 410 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.258 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 426 -a 1 -x {2.0 7.0 153 ------- null} + -t 2.258 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 426 -a 1 -x {2.0 7.0 153 ------- null} + -t 2.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 430 -a 1 -x {2.0 7.0 156 ------- null} - -t 2.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 430 -a 1 -x {2.0 7.0 156 ------- null} h -t 2.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 430 -a 1 -x {2.0 7.0 -1 ------- null} + -t 2.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 431 -a 1 -x {1.0 6.0 183 ------- null} - -t 2.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 431 -a 1 -x {1.0 6.0 183 ------- null} h -t 2.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 431 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.26165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 405 -a 1 -x {2.0 7.0 139 ------- null} r -t 2.26165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 407 -a 1 -x {1.0 6.0 175 ------- null} - -t 2.26365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 419 -a 1 -x {1.0 6.0 179 ------- null} h -t 2.26365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 419 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.264 -s 1 -d 3 -p cbr -e 500 -c 1 -i 428 -a 1 -x {1.0 6.0 182 ------- null} + -t 2.264 -s 3 -d 4 -p cbr -e 500 -c 1 -i 428 -a 1 -x {1.0 6.0 182 ------- null} r -t 2.26565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 409 -a 1 -x {2.0 7.0 142 ------- null} + -t 2.26565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 409 -a 1 -x {2.0 7.0 142 ------- null} - -t 2.26565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 409 -a 1 -x {2.0 7.0 142 ------- null} h -t 2.26565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 409 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.26765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 418 -a 1 -x {2.0 7.0 148 ------- null} h -t 2.26765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 418 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.268 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 427 -a 1 -x {2.0 7.0 154 ------- null} + -t 2.268 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 427 -a 1 -x {2.0 7.0 154 ------- null} + -t 2.27 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 432 -a 1 -x {2.0 7.0 157 ------- null} - -t 2.27 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 432 -a 1 -x {2.0 7.0 157 ------- null} h -t 2.27 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 432 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.27365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 411 -a 1 -x {2.0 7.0 143 ------- null} + -t 2.27365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 411 -a 1 -x {2.0 7.0 143 ------- null} r -t 2.27365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 406 -a 1 -x {2.0 7.0 140 ------- null} - -t 2.27365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 411 -a 1 -x {2.0 7.0 143 ------- null} h -t 2.27365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 411 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.27565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 420 -a 1 -x {2.0 7.0 149 ------- null} h -t 2.27565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 420 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.27765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 413 -a 1 -x {1.0 6.0 177 ------- null} + -t 2.27765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 413 -a 1 -x {1.0 6.0 177 ------- null} - -t 2.27765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 413 -a 1 -x {1.0 6.0 177 ------- null} h -t 2.27765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 413 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.278 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 429 -a 1 -x {2.0 7.0 155 ------- null} + -t 2.278 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 429 -a 1 -x {2.0 7.0 155 ------- null} + -t 2.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 433 -a 1 -x {2.0 7.0 158 ------- null} - -t 2.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 433 -a 1 -x {2.0 7.0 158 ------- null} h -t 2.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 433 -a 1 -x {2.0 7.0 -1 ------- null} + -t 2.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 434 -a 1 -x {1.0 6.0 184 ------- null} - -t 2.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 434 -a 1 -x {1.0 6.0 184 ------- null} h -t 2.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 434 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.28165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 408 -a 1 -x {2.0 7.0 141 ------- null} r -t 2.28165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 410 -a 1 -x {1.0 6.0 176 ------- null} - -t 2.28365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 422 -a 1 -x {1.0 6.0 180 ------- null} h -t 2.28365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 422 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.284 -s 1 -d 3 -p cbr -e 500 -c 1 -i 431 -a 1 -x {1.0 6.0 183 ------- null} + -t 2.284 -s 3 -d 4 -p cbr -e 500 -c 1 -i 431 -a 1 -x {1.0 6.0 183 ------- null} r -t 2.28565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 412 -a 1 -x {2.0 7.0 144 ------- null} + -t 2.28565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 412 -a 1 -x {2.0 7.0 144 ------- null} - -t 2.28565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 412 -a 1 -x {2.0 7.0 144 ------- null} h -t 2.28565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 412 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.28765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 421 -a 1 -x {2.0 7.0 150 ------- null} h -t 2.28765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 421 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.288 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 430 -a 1 -x {2.0 7.0 156 ------- null} + -t 2.288 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 430 -a 1 -x {2.0 7.0 156 ------- null} + -t 2.29 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 435 -a 1 -x {2.0 7.0 159 ------- null} - -t 2.29 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 435 -a 1 -x {2.0 7.0 159 ------- null} h -t 2.29 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 435 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.29365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 414 -a 1 -x {2.0 7.0 145 ------- null} + -t 2.29365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 414 -a 1 -x {2.0 7.0 145 ------- null} r -t 2.29365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 409 -a 1 -x {2.0 7.0 142 ------- null} - -t 2.29365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 414 -a 1 -x {2.0 7.0 145 ------- null} h -t 2.29365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 414 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.29565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 423 -a 1 -x {2.0 7.0 151 ------- null} h -t 2.29565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 423 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.29765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 416 -a 1 -x {1.0 6.0 178 ------- null} + -t 2.29765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 416 -a 1 -x {1.0 6.0 178 ------- null} - -t 2.29765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 416 -a 1 -x {1.0 6.0 178 ------- null} h -t 2.29765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 416 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.298 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 432 -a 1 -x {2.0 7.0 157 ------- null} + -t 2.298 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 432 -a 1 -x {2.0 7.0 157 ------- null} + -t 2.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 436 -a 1 -x {2.0 7.0 160 ------- null} - -t 2.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 436 -a 1 -x {2.0 7.0 160 ------- null} h -t 2.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 436 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.30165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 411 -a 1 -x {2.0 7.0 143 ------- null} r -t 2.30165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 413 -a 1 -x {1.0 6.0 177 ------- null} - -t 2.30365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 425 -a 1 -x {1.0 6.0 181 ------- null} h -t 2.30365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 425 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.304 -s 1 -d 3 -p cbr -e 500 -c 1 -i 434 -a 1 -x {1.0 6.0 184 ------- null} + -t 2.304 -s 3 -d 4 -p cbr -e 500 -c 1 -i 434 -a 1 -x {1.0 6.0 184 ------- null} r -t 2.30565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 415 -a 1 -x {2.0 7.0 146 ------- null} + -t 2.30565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 415 -a 1 -x {2.0 7.0 146 ------- null} - -t 2.30565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 415 -a 1 -x {2.0 7.0 146 ------- null} h -t 2.30565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 415 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.30765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 424 -a 1 -x {2.0 7.0 152 ------- null} h -t 2.30765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 424 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.308 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 433 -a 1 -x {2.0 7.0 158 ------- null} + -t 2.308 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 433 -a 1 -x {2.0 7.0 158 ------- null} + -t 2.31 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 437 -a 1 -x {2.0 7.0 161 ------- null} - -t 2.31 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 437 -a 1 -x {2.0 7.0 161 ------- null} h -t 2.31 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 437 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.31365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 417 -a 1 -x {2.0 7.0 147 ------- null} + -t 2.31365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 417 -a 1 -x {2.0 7.0 147 ------- null} r -t 2.31365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 412 -a 1 -x {2.0 7.0 144 ------- null} - -t 2.31365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 417 -a 1 -x {2.0 7.0 147 ------- null} h -t 2.31365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 417 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.31565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 426 -a 1 -x {2.0 7.0 153 ------- null} h -t 2.31565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 426 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.31765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 419 -a 1 -x {1.0 6.0 179 ------- null} + -t 2.31765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 419 -a 1 -x {1.0 6.0 179 ------- null} - -t 2.31765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 419 -a 1 -x {1.0 6.0 179 ------- null} h -t 2.31765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 419 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.318 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 435 -a 1 -x {2.0 7.0 159 ------- null} + -t 2.318 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 435 -a 1 -x {2.0 7.0 159 ------- null} + -t 2.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 438 -a 1 -x {2.0 7.0 162 ------- null} - -t 2.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 438 -a 1 -x {2.0 7.0 162 ------- null} h -t 2.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 438 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.32165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 414 -a 1 -x {2.0 7.0 145 ------- null} r -t 2.32165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 416 -a 1 -x {1.0 6.0 178 ------- null} - -t 2.32365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 428 -a 1 -x {1.0 6.0 182 ------- null} h -t 2.32365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 428 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.32565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 418 -a 1 -x {2.0 7.0 148 ------- null} + -t 2.32565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 418 -a 1 -x {2.0 7.0 148 ------- null} - -t 2.32565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 418 -a 1 -x {2.0 7.0 148 ------- null} h -t 2.32565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 418 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.32765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 427 -a 1 -x {2.0 7.0 154 ------- null} h -t 2.32765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 427 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.328 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 436 -a 1 -x {2.0 7.0 160 ------- null} + -t 2.328 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 436 -a 1 -x {2.0 7.0 160 ------- null} + -t 2.33 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 439 -a 1 -x {2.0 7.0 163 ------- null} - -t 2.33 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 439 -a 1 -x {2.0 7.0 163 ------- null} h -t 2.33 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 439 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.33365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 420 -a 1 -x {2.0 7.0 149 ------- null} + -t 2.33365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 420 -a 1 -x {2.0 7.0 149 ------- null} r -t 2.33365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 415 -a 1 -x {2.0 7.0 146 ------- null} - -t 2.33365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 420 -a 1 -x {2.0 7.0 149 ------- null} h -t 2.33365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 420 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.33565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 429 -a 1 -x {2.0 7.0 155 ------- null} h -t 2.33565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 429 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.33765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 422 -a 1 -x {1.0 6.0 180 ------- null} + -t 2.33765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 422 -a 1 -x {1.0 6.0 180 ------- null} - -t 2.33765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 422 -a 1 -x {1.0 6.0 180 ------- null} h -t 2.33765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 422 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.338 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 437 -a 1 -x {2.0 7.0 161 ------- null} + -t 2.338 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 437 -a 1 -x {2.0 7.0 161 ------- null} + -t 2.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 440 -a 1 -x {2.0 7.0 164 ------- null} - -t 2.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 440 -a 1 -x {2.0 7.0 164 ------- null} h -t 2.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 440 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.34165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 417 -a 1 -x {2.0 7.0 147 ------- null} r -t 2.34165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 419 -a 1 -x {1.0 6.0 179 ------- null} - -t 2.34365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 431 -a 1 -x {1.0 6.0 183 ------- null} h -t 2.34365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 431 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.34565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 421 -a 1 -x {2.0 7.0 150 ------- null} + -t 2.34565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 421 -a 1 -x {2.0 7.0 150 ------- null} - -t 2.34565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 421 -a 1 -x {2.0 7.0 150 ------- null} h -t 2.34565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 421 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.34765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 430 -a 1 -x {2.0 7.0 156 ------- null} h -t 2.34765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 430 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.348 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 438 -a 1 -x {2.0 7.0 162 ------- null} + -t 2.348 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 438 -a 1 -x {2.0 7.0 162 ------- null} + -t 2.35 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 441 -a 1 -x {2.0 7.0 165 ------- null} - -t 2.35 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 441 -a 1 -x {2.0 7.0 165 ------- null} h -t 2.35 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 441 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.35365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 423 -a 1 -x {2.0 7.0 151 ------- null} + -t 2.35365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 423 -a 1 -x {2.0 7.0 151 ------- null} r -t 2.35365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 418 -a 1 -x {2.0 7.0 148 ------- null} - -t 2.35365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 423 -a 1 -x {2.0 7.0 151 ------- null} h -t 2.35365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 423 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.35565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 432 -a 1 -x {2.0 7.0 157 ------- null} h -t 2.35565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 432 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.35765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 425 -a 1 -x {1.0 6.0 181 ------- null} + -t 2.35765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 425 -a 1 -x {1.0 6.0 181 ------- null} - -t 2.35765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 425 -a 1 -x {1.0 6.0 181 ------- null} h -t 2.35765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 425 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.358 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 439 -a 1 -x {2.0 7.0 163 ------- null} + -t 2.358 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 439 -a 1 -x {2.0 7.0 163 ------- null} + -t 2.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 442 -a 1 -x {2.0 7.0 166 ------- null} - -t 2.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 442 -a 1 -x {2.0 7.0 166 ------- null} h -t 2.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 442 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.36165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 420 -a 1 -x {2.0 7.0 149 ------- null} r -t 2.36165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 422 -a 1 -x {1.0 6.0 180 ------- null} - -t 2.36365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 434 -a 1 -x {1.0 6.0 184 ------- null} h -t 2.36365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 434 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.36565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 424 -a 1 -x {2.0 7.0 152 ------- null} + -t 2.36565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 424 -a 1 -x {2.0 7.0 152 ------- null} - -t 2.36565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 424 -a 1 -x {2.0 7.0 152 ------- null} h -t 2.36565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 424 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.36765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 433 -a 1 -x {2.0 7.0 158 ------- null} h -t 2.36765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 433 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.368 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 440 -a 1 -x {2.0 7.0 164 ------- null} + -t 2.368 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 440 -a 1 -x {2.0 7.0 164 ------- null} + -t 2.37 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 443 -a 1 -x {2.0 7.0 167 ------- null} - -t 2.37 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 443 -a 1 -x {2.0 7.0 167 ------- null} h -t 2.37 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 443 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.37365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 426 -a 1 -x {2.0 7.0 153 ------- null} + -t 2.37365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 426 -a 1 -x {2.0 7.0 153 ------- null} r -t 2.37365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 421 -a 1 -x {2.0 7.0 150 ------- null} - -t 2.37365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 426 -a 1 -x {2.0 7.0 153 ------- null} h -t 2.37365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 426 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.37565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 435 -a 1 -x {2.0 7.0 159 ------- null} h -t 2.37565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 435 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.37765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 428 -a 1 -x {1.0 6.0 182 ------- null} + -t 2.37765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 428 -a 1 -x {1.0 6.0 182 ------- null} - -t 2.37765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 428 -a 1 -x {1.0 6.0 182 ------- null} h -t 2.37765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 428 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.378 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 441 -a 1 -x {2.0 7.0 165 ------- null} + -t 2.378 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 441 -a 1 -x {2.0 7.0 165 ------- null} + -t 2.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 444 -a 1 -x {2.0 7.0 168 ------- null} - -t 2.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 444 -a 1 -x {2.0 7.0 168 ------- null} h -t 2.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 444 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.38165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 423 -a 1 -x {2.0 7.0 151 ------- null} r -t 2.38165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 425 -a 1 -x {1.0 6.0 181 ------- null} - -t 2.38365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 436 -a 1 -x {2.0 7.0 160 ------- null} h -t 2.38365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 436 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.38565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 427 -a 1 -x {2.0 7.0 154 ------- null} + -t 2.38565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 427 -a 1 -x {2.0 7.0 154 ------- null} - -t 2.38565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 427 -a 1 -x {2.0 7.0 154 ------- null} h -t 2.38565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 427 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.388 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 442 -a 1 -x {2.0 7.0 166 ------- null} + -t 2.388 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 442 -a 1 -x {2.0 7.0 166 ------- null} + -t 2.39 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 445 -a 1 -x {2.0 7.0 169 ------- null} - -t 2.39 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 445 -a 1 -x {2.0 7.0 169 ------- null} h -t 2.39 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 445 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.39165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 437 -a 1 -x {2.0 7.0 161 ------- null} h -t 2.39165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 437 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.39365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 429 -a 1 -x {2.0 7.0 155 ------- null} + -t 2.39365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 429 -a 1 -x {2.0 7.0 155 ------- null} r -t 2.39365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 424 -a 1 -x {2.0 7.0 152 ------- null} - -t 2.39365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 429 -a 1 -x {2.0 7.0 155 ------- null} h -t 2.39365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 429 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.39765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 431 -a 1 -x {1.0 6.0 183 ------- null} + -t 2.39765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 431 -a 1 -x {1.0 6.0 183 ------- null} - -t 2.39765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 431 -a 1 -x {1.0 6.0 183 ------- null} h -t 2.39765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 431 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.398 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 443 -a 1 -x {2.0 7.0 167 ------- null} + -t 2.398 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 443 -a 1 -x {2.0 7.0 167 ------- null} - -t 2.39965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 438 -a 1 -x {2.0 7.0 162 ------- null} h -t 2.39965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 438 -a 1 -x {2.0 7.0 -1 ------- null} + -t 2.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 446 -a 1 -x {2.0 7.0 170 ------- null} - -t 2.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 446 -a 1 -x {2.0 7.0 170 ------- null} h -t 2.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 446 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.40165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 426 -a 1 -x {2.0 7.0 153 ------- null} r -t 2.40165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 428 -a 1 -x {1.0 6.0 182 ------- null} r -t 2.40565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 430 -a 1 -x {2.0 7.0 156 ------- null} + -t 2.40565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 430 -a 1 -x {2.0 7.0 156 ------- null} - -t 2.40565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 430 -a 1 -x {2.0 7.0 156 ------- null} h -t 2.40565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 430 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.40765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 439 -a 1 -x {2.0 7.0 163 ------- null} h -t 2.40765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 439 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.408 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 444 -a 1 -x {2.0 7.0 168 ------- null} + -t 2.408 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 444 -a 1 -x {2.0 7.0 168 ------- null} + -t 2.41 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 447 -a 1 -x {2.0 7.0 171 ------- null} - -t 2.41 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 447 -a 1 -x {2.0 7.0 171 ------- null} h -t 2.41 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 447 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.41365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 432 -a 1 -x {2.0 7.0 157 ------- null} + -t 2.41365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 432 -a 1 -x {2.0 7.0 157 ------- null} r -t 2.41365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 427 -a 1 -x {2.0 7.0 154 ------- null} - -t 2.41365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 432 -a 1 -x {2.0 7.0 157 ------- null} h -t 2.41365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 432 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.41565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 440 -a 1 -x {2.0 7.0 164 ------- null} h -t 2.41565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 440 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.41765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 434 -a 1 -x {1.0 6.0 184 ------- null} + -t 2.41765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 434 -a 1 -x {1.0 6.0 184 ------- null} - -t 2.41765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 434 -a 1 -x {1.0 6.0 184 ------- null} h -t 2.41765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 434 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.418 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 445 -a 1 -x {2.0 7.0 169 ------- null} + -t 2.418 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 445 -a 1 -x {2.0 7.0 169 ------- null} + -t 2.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 448 -a 1 -x {2.0 7.0 172 ------- null} - -t 2.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 448 -a 1 -x {2.0 7.0 172 ------- null} h -t 2.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 448 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.42165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 429 -a 1 -x {2.0 7.0 155 ------- null} r -t 2.42165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 431 -a 1 -x {1.0 6.0 183 ------- null} - -t 2.42365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 441 -a 1 -x {2.0 7.0 165 ------- null} h -t 2.42365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 441 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.42565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 433 -a 1 -x {2.0 7.0 158 ------- null} + -t 2.42565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 433 -a 1 -x {2.0 7.0 158 ------- null} - -t 2.42565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 433 -a 1 -x {2.0 7.0 158 ------- null} h -t 2.42565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 433 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.428 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 446 -a 1 -x {2.0 7.0 170 ------- null} + -t 2.428 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 446 -a 1 -x {2.0 7.0 170 ------- null} + -t 2.43 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 449 -a 1 -x {2.0 7.0 173 ------- null} - -t 2.43 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 449 -a 1 -x {2.0 7.0 173 ------- null} h -t 2.43 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 449 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.43165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 442 -a 1 -x {2.0 7.0 166 ------- null} h -t 2.43165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 442 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.43365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 435 -a 1 -x {2.0 7.0 159 ------- null} + -t 2.43365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 435 -a 1 -x {2.0 7.0 159 ------- null} r -t 2.43365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 430 -a 1 -x {2.0 7.0 156 ------- null} - -t 2.43365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 435 -a 1 -x {2.0 7.0 159 ------- null} h -t 2.43365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 435 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.438 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 447 -a 1 -x {2.0 7.0 171 ------- null} + -t 2.438 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 447 -a 1 -x {2.0 7.0 171 ------- null} - -t 2.43965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 443 -a 1 -x {2.0 7.0 167 ------- null} h -t 2.43965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 443 -a 1 -x {2.0 7.0 -1 ------- null} + -t 2.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 450 -a 1 -x {2.0 7.0 174 ------- null} - -t 2.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 450 -a 1 -x {2.0 7.0 174 ------- null} h -t 2.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 450 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.44165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 436 -a 1 -x {2.0 7.0 160 ------- null} + -t 2.44165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 436 -a 1 -x {2.0 7.0 160 ------- null} r -t 2.44165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 432 -a 1 -x {2.0 7.0 157 ------- null} r -t 2.44165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 434 -a 1 -x {1.0 6.0 184 ------- null} - -t 2.44165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 436 -a 1 -x {2.0 7.0 160 ------- null} h -t 2.44165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 436 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.44765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 444 -a 1 -x {2.0 7.0 168 ------- null} h -t 2.44765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 444 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.448 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 448 -a 1 -x {2.0 7.0 172 ------- null} + -t 2.448 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 448 -a 1 -x {2.0 7.0 172 ------- null} r -t 2.44965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 437 -a 1 -x {2.0 7.0 161 ------- null} + -t 2.44965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 437 -a 1 -x {2.0 7.0 161 ------- null} - -t 2.44965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 437 -a 1 -x {2.0 7.0 161 ------- null} h -t 2.44965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 437 -a 1 -x {2.0 7.0 -1 ------- null} + -t 2.45 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 451 -a 1 -x {2.0 7.0 175 ------- null} - -t 2.45 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 451 -a 1 -x {2.0 7.0 175 ------- null} h -t 2.45 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 451 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.45365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 433 -a 1 -x {2.0 7.0 158 ------- null} - -t 2.45565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 445 -a 1 -x {2.0 7.0 169 ------- null} h -t 2.45565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 445 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.45765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 438 -a 1 -x {2.0 7.0 162 ------- null} + -t 2.45765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 438 -a 1 -x {2.0 7.0 162 ------- null} - -t 2.45765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 438 -a 1 -x {2.0 7.0 162 ------- null} h -t 2.45765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 438 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.458 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 449 -a 1 -x {2.0 7.0 173 ------- null} + -t 2.458 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 449 -a 1 -x {2.0 7.0 173 ------- null} + -t 2.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 452 -a 1 -x {2.0 7.0 176 ------- null} - -t 2.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 452 -a 1 -x {2.0 7.0 176 ------- null} h -t 2.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 452 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.46165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 435 -a 1 -x {2.0 7.0 159 ------- null} - -t 2.46365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 446 -a 1 -x {2.0 7.0 170 ------- null} h -t 2.46365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 446 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.46565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 439 -a 1 -x {2.0 7.0 163 ------- null} + -t 2.46565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 439 -a 1 -x {2.0 7.0 163 ------- null} - -t 2.46565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 439 -a 1 -x {2.0 7.0 163 ------- null} h -t 2.46565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 439 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.468 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 450 -a 1 -x {2.0 7.0 174 ------- null} + -t 2.468 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 450 -a 1 -x {2.0 7.0 174 ------- null} r -t 2.46965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 436 -a 1 -x {2.0 7.0 160 ------- null} + -t 2.47 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 453 -a 1 -x {2.0 7.0 177 ------- null} - -t 2.47 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 453 -a 1 -x {2.0 7.0 177 ------- null} h -t 2.47 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 453 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.47165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 447 -a 1 -x {2.0 7.0 171 ------- null} h -t 2.47165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 447 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.47365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 440 -a 1 -x {2.0 7.0 164 ------- null} + -t 2.47365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 440 -a 1 -x {2.0 7.0 164 ------- null} - -t 2.47365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 440 -a 1 -x {2.0 7.0 164 ------- null} h -t 2.47365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 440 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.47765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 437 -a 1 -x {2.0 7.0 161 ------- null} r -t 2.478 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 451 -a 1 -x {2.0 7.0 175 ------- null} + -t 2.478 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 451 -a 1 -x {2.0 7.0 175 ------- null} - -t 2.47965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 448 -a 1 -x {2.0 7.0 172 ------- null} h -t 2.47965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 448 -a 1 -x {2.0 7.0 -1 ------- null} + -t 2.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 454 -a 1 -x {2.0 7.0 178 ------- null} - -t 2.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 454 -a 1 -x {2.0 7.0 178 ------- null} h -t 2.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 454 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.48165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 441 -a 1 -x {2.0 7.0 165 ------- null} + -t 2.48165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 441 -a 1 -x {2.0 7.0 165 ------- null} - -t 2.48165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 441 -a 1 -x {2.0 7.0 165 ------- null} h -t 2.48165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 441 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.48565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 438 -a 1 -x {2.0 7.0 162 ------- null} - -t 2.48765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 449 -a 1 -x {2.0 7.0 173 ------- null} h -t 2.48765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 449 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.488 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 452 -a 1 -x {2.0 7.0 176 ------- null} + -t 2.488 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 452 -a 1 -x {2.0 7.0 176 ------- null} r -t 2.48965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 442 -a 1 -x {2.0 7.0 166 ------- null} + -t 2.48965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 442 -a 1 -x {2.0 7.0 166 ------- null} - -t 2.48965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 442 -a 1 -x {2.0 7.0 166 ------- null} h -t 2.48965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 442 -a 1 -x {2.0 7.0 -1 ------- null} + -t 2.49 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 455 -a 1 -x {2.0 7.0 179 ------- null} - -t 2.49 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 455 -a 1 -x {2.0 7.0 179 ------- null} h -t 2.49 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 455 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.49365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 439 -a 1 -x {2.0 7.0 163 ------- null} - -t 2.49565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 450 -a 1 -x {2.0 7.0 174 ------- null} h -t 2.49565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 450 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.49765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 443 -a 1 -x {2.0 7.0 167 ------- null} + -t 2.49765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 443 -a 1 -x {2.0 7.0 167 ------- null} - -t 2.49765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 443 -a 1 -x {2.0 7.0 167 ------- null} h -t 2.49765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 443 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.498 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 453 -a 1 -x {2.0 7.0 177 ------- null} + -t 2.498 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 453 -a 1 -x {2.0 7.0 177 ------- null} + -t 2.5 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 456 -a 1 -x {2.0 7.0 180 ------- null} - -t 2.5 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 456 -a 1 -x {2.0 7.0 180 ------- null} h -t 2.5 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 456 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.50165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 440 -a 1 -x {2.0 7.0 164 ------- null} - -t 2.50365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 451 -a 1 -x {2.0 7.0 175 ------- null} h -t 2.50365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 451 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.50565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 444 -a 1 -x {2.0 7.0 168 ------- null} + -t 2.50565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 444 -a 1 -x {2.0 7.0 168 ------- null} - -t 2.50565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 444 -a 1 -x {2.0 7.0 168 ------- null} h -t 2.50565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 444 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.508 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 454 -a 1 -x {2.0 7.0 178 ------- null} + -t 2.508 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 454 -a 1 -x {2.0 7.0 178 ------- null} r -t 2.50965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 441 -a 1 -x {2.0 7.0 165 ------- null} - -t 2.51165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 452 -a 1 -x {2.0 7.0 176 ------- null} h -t 2.51165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 452 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.51365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 445 -a 1 -x {2.0 7.0 169 ------- null} + -t 2.51365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 445 -a 1 -x {2.0 7.0 169 ------- null} - -t 2.51365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 445 -a 1 -x {2.0 7.0 169 ------- null} h -t 2.51365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 445 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.51765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 442 -a 1 -x {2.0 7.0 166 ------- null} r -t 2.518 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 455 -a 1 -x {2.0 7.0 179 ------- null} + -t 2.518 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 455 -a 1 -x {2.0 7.0 179 ------- null} - -t 2.51965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 453 -a 1 -x {2.0 7.0 177 ------- null} h -t 2.51965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 453 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.52165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 446 -a 1 -x {2.0 7.0 170 ------- null} + -t 2.52165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 446 -a 1 -x {2.0 7.0 170 ------- null} - -t 2.52165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 446 -a 1 -x {2.0 7.0 170 ------- null} h -t 2.52165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 446 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.52565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 443 -a 1 -x {2.0 7.0 167 ------- null} - -t 2.52765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 454 -a 1 -x {2.0 7.0 178 ------- null} h -t 2.52765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 454 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.528 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 456 -a 1 -x {2.0 7.0 180 ------- null} + -t 2.528 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 456 -a 1 -x {2.0 7.0 180 ------- null} r -t 2.52965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 447 -a 1 -x {2.0 7.0 171 ------- null} + -t 2.52965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 447 -a 1 -x {2.0 7.0 171 ------- null} - -t 2.52965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 447 -a 1 -x {2.0 7.0 171 ------- null} h -t 2.52965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 447 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.53365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 444 -a 1 -x {2.0 7.0 168 ------- null} - -t 2.53565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 455 -a 1 -x {2.0 7.0 179 ------- null} h -t 2.53565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 455 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.53765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 448 -a 1 -x {2.0 7.0 172 ------- null} + -t 2.53765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 448 -a 1 -x {2.0 7.0 172 ------- null} - -t 2.53765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 448 -a 1 -x {2.0 7.0 172 ------- null} h -t 2.53765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 448 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.54165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 445 -a 1 -x {2.0 7.0 169 ------- null} - -t 2.54365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 456 -a 1 -x {2.0 7.0 180 ------- null} h -t 2.54365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 456 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.54565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 449 -a 1 -x {2.0 7.0 173 ------- null} + -t 2.54565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 449 -a 1 -x {2.0 7.0 173 ------- null} - -t 2.54565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 449 -a 1 -x {2.0 7.0 173 ------- null} h -t 2.54565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 449 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.54965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 446 -a 1 -x {2.0 7.0 170 ------- null} v -t 2.5499999999999998 sim_annotation 2.5499999999999998 24 FTP stops r -t 2.55365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 450 -a 1 -x {2.0 7.0 174 ------- null} + -t 2.55365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 450 -a 1 -x {2.0 7.0 174 ------- null} - -t 2.55365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 450 -a 1 -x {2.0 7.0 174 ------- null} h -t 2.55365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 450 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.55765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 447 -a 1 -x {2.0 7.0 171 ------- null} r -t 2.56165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 451 -a 1 -x {2.0 7.0 175 ------- null} + -t 2.56165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 451 -a 1 -x {2.0 7.0 175 ------- null} - -t 2.56165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 451 -a 1 -x {2.0 7.0 175 ------- null} h -t 2.56165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 451 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.56565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 448 -a 1 -x {2.0 7.0 172 ------- null} r -t 2.56965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 452 -a 1 -x {2.0 7.0 176 ------- null} + -t 2.56965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 452 -a 1 -x {2.0 7.0 176 ------- null} - -t 2.56965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 452 -a 1 -x {2.0 7.0 176 ------- null} h -t 2.56965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 452 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.57365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 449 -a 1 -x {2.0 7.0 173 ------- null} r -t 2.57765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 453 -a 1 -x {2.0 7.0 177 ------- null} + -t 2.57765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 453 -a 1 -x {2.0 7.0 177 ------- null} - -t 2.57765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 453 -a 1 -x {2.0 7.0 177 ------- null} h -t 2.57765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 453 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.58165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 450 -a 1 -x {2.0 7.0 174 ------- null} r -t 2.58565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 454 -a 1 -x {2.0 7.0 178 ------- null} + -t 2.58565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 454 -a 1 -x {2.0 7.0 178 ------- null} - -t 2.58565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 454 -a 1 -x {2.0 7.0 178 ------- null} h -t 2.58565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 454 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.58965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 451 -a 1 -x {2.0 7.0 175 ------- null} r -t 2.59365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 455 -a 1 -x {2.0 7.0 179 ------- null} + -t 2.59365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 455 -a 1 -x {2.0 7.0 179 ------- null} - -t 2.59365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 455 -a 1 -x {2.0 7.0 179 ------- null} h -t 2.59365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 455 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.59765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 452 -a 1 -x {2.0 7.0 176 ------- null} r -t 2.60165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 456 -a 1 -x {2.0 7.0 180 ------- null} + -t 2.60165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 456 -a 1 -x {2.0 7.0 180 ------- null} - -t 2.60165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 456 -a 1 -x {2.0 7.0 180 ------- null} h -t 2.60165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 456 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.60565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 453 -a 1 -x {2.0 7.0 177 ------- null} r -t 2.61365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 454 -a 1 -x {2.0 7.0 178 ------- null} r -t 2.62165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 455 -a 1 -x {2.0 7.0 179 ------- null} r -t 2.62965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 456 -a 1 -x {2.0 7.0 180 ------- null} nam-1.15/edu/C2-sliding-color.tcl0000664000076400007660000001042307024407024015363 0ustar tomhnsnam# Sliding window protocol in a heavily loaded network. # features : labeling, annotation, and window size monitoring # for nam-graph, refer to 'C2-sliding-window.nam' # # n0 n5 # \ / # n1 -- n3 ---------- n4 -- n6 # / \ # n2 n7 set ns [new Simulator] $ns color 0 black $ns color 1 red #$ns trace-all [open C2-sliding-color.tr w] #$ns namtrace-all [open C2-sliding-color.nam w] ### build topology with 8 nodes foreach i " 0 1 2 3 4 5 6 7" { set n$i [$ns node] } $ns at 0.0 "$n0 label TCP" $ns at 0.0 "$n5 label TCP" $ns at 0.0 "$n1 label CBR-1" $ns at 0.0 "$n2 label CBR-2" $ns at 0.0 "$n6 label CBR-1" $ns at 0.0 "$n7 label CBR-2" $ns duplex-link $n0 $n3 5Mb 20ms DropTail $ns duplex-link $n1 $n3 1Mb 20ms DropTail $ns duplex-link $n2 $n3 1Mb 20ms DropTail $ns duplex-link $n3 $n4 1Mb 50ms DropTail $ns duplex-link $n4 $n5 5Mb 20ms DropTail $ns duplex-link $n4 $n6 1Mb 20ms DropTail $ns duplex-link $n4 $n7 1Mb 20ms DropTail $ns queue-limit $n3 $n4 10 $ns duplex-link-op $n0 $n3 orient right-down $ns duplex-link-op $n1 $n3 orient right $ns duplex-link-op $n2 $n3 orient right-up $ns duplex-link-op $n3 $n4 orient right $ns duplex-link-op $n4 $n5 orient right-up $ns duplex-link-op $n4 $n6 orient right $ns duplex-link-op $n4 $n7 orient right-down $ns duplex-link-op $n3 $n4 queuePos 0.5 Agent/TCP set nam_tracevar_ true Agent/TCP set maxcwnd_ 8 ### TCP between n0 and n5 (Black) #set sliding [new Agent/TCP/SlidingWindow] set sliding [new Agent/TCP] $sliding set fid_ 0 $ns attach-agent $n0 $sliding #set sink [new Agent/TCPSink/SlidingWindowSink] set sink [new Agent/TCPSink] $ns attach-agent $n5 $sink $ns connect $sliding $sink set ftp [new Application/FTP] $ftp attach-agent $sliding $ns add-agent-trace $sliding tcp $ns monitor-agent-trace $sliding $sliding tracevar cwnd_ ### CBR traffic between (n1 & n6) and (n2 & n7) set cbr0 [new Agent/CBR] $ns attach-agent $n1 $cbr0 $cbr0 set fid_ 1 $cbr0 set packetSize_ 500 $cbr0 set interval_ 0.01 set null0 [new Agent/CBR] $ns attach-agent $n6 $null0 $ns connect $cbr0 $null0 set cbr1 [new Agent/CBR] $ns attach-agent $n2 $cbr1 $cbr1 set fid_ 1 $cbr1 set packetSize_ 1000 $cbr1 set interval_ 0.01 set null1 [new Agent/CBR] $ns attach-agent $n7 $null1 $ns connect $cbr1 $null1 proc finish {} { global ns $ns flush-trace puts "running nam..." exec nam C2-sliding-color.nam & exit 0 } ### set operations $ns at 0.05 "$cbr0 start" $ns at 2.3 "$cbr0 stop" $ns at 0.1 "$cbr1 start" $ns at 2.5 "$cbr1 stop" $ns at 0.5 "$ftp start" $ns at 2.5 "$ftp stop" $ns at 2.7 "finish" $ns at 0.50 "$cbr1 set interval_ 0.02" $ns at 1.50 "$cbr0 set interval_ 0.02" $ns at 1.70 "$cbr1 set interval_ 0.01" $ns at 1.70 "$cbr1 set interval_ 0.01" ### add annotations $ns at 0.0 "$ns trace-annotate \"Sliding Window (window size=8) in a heavely loaded network\"" $ns at 0.05 "$ns trace-annotate \"CBR-1 starts\"" $ns at 0.1 "$ns trace-annotate \"CBR-2 starts\"" $ns at 0.48 "$ns trace-annotate \"Sliding-Window Traffic starts\"" $ns at 0.51 "$ns trace-annotate \"Send Packet_0 to 7 \"" $ns at 0.54 "$ns trace-annotate \"Lost Packet (5 of them) \"" $ns at 0.66 "$ns trace-annotate \"3 Ack_0s\"" $ns at 0.75 "$ns trace-annotate \"Send Packet_8\"" $ns at 0.85 "$ns trace-annotate \"Ack_0\"" $ns at 0.95 "$ns trace-annotate \"Send Packet_1 to 8\"" $ns at 1.04 "$ns trace-annotate \"Ack_1 to 8\"" $ns at 1.14 "$ns trace-annotate \"Send Packet_9 to 16\"" $ns at 1.22 "$ns trace-annotate \"Lost Packet (2 of them) \"" $ns at 1.27 "$ns trace-annotate \"Ack_7 to 14 \"" $ns at 1.35 "$ns trace-annotate \"Send Packet_17 to 22\"" $ns at 1.49 "$ns trace-annotate \"6 Ack_14s \"" $ns at 1.58 "$ns trace-annotate \"Send Packet_15 to 22\"" $ns at 1.70 "$ns trace-annotate \"Ack_15 to 22 \"" $ns at 1.78 "$ns trace-annotate \"Send Packet_23 to 30\"" $ns at 1.85 "$ns trace-annotate \"Lost Packet (2 of them) \"" $ns at 1.90 "$ns trace-annotate \"Ack_23 to 27 \"" $ns at 2.00 "$ns trace-annotate \"Send Packet_31 to 35\"" $ns at 2.08 "$ns trace-annotate \"Lost Packet (all of them) \"" $ns at 2.55 "$ns trace-annotate \"FTP stops\"" $ns run nam-1.15/edu/C2-sliding-color.tr0000664000076400007660000055313106756704452015256 0ustar tomhnsnamv 0 eval {set sim_annotation {Sliding Window (window size=8) in a heavely loaded network}} + 0.05 1 3 cbr 500 ------- 1 1.0 6.0 0 0 - 0.05 1 3 cbr 500 ------- 1 1.0 6.0 0 0 v 0.050000000000000003 eval {set sim_annotation {CBR-1 starts}} + 0.06 1 3 cbr 500 ------- 1 1.0 6.0 1 1 - 0.06 1 3 cbr 500 ------- 1 1.0 6.0 1 1 + 0.07 1 3 cbr 500 ------- 1 1.0 6.0 2 2 - 0.07 1 3 cbr 500 ------- 1 1.0 6.0 2 2 r 0.074 1 3 cbr 500 ------- 1 1.0 6.0 0 0 + 0.074 3 4 cbr 500 ------- 1 1.0 6.0 0 0 - 0.074 3 4 cbr 500 ------- 1 1.0 6.0 0 0 + 0.08 1 3 cbr 500 ------- 1 1.0 6.0 3 3 - 0.08 1 3 cbr 500 ------- 1 1.0 6.0 3 3 r 0.084 1 3 cbr 500 ------- 1 1.0 6.0 1 1 + 0.084 3 4 cbr 500 ------- 1 1.0 6.0 1 1 - 0.084 3 4 cbr 500 ------- 1 1.0 6.0 1 1 + 0.09 1 3 cbr 500 ------- 1 1.0 6.0 4 4 - 0.09 1 3 cbr 500 ------- 1 1.0 6.0 4 4 r 0.094 1 3 cbr 500 ------- 1 1.0 6.0 2 2 + 0.094 3 4 cbr 500 ------- 1 1.0 6.0 2 2 - 0.094 3 4 cbr 500 ------- 1 1.0 6.0 2 2 + 0.1 1 3 cbr 500 ------- 1 1.0 6.0 5 5 - 0.1 1 3 cbr 500 ------- 1 1.0 6.0 5 5 + 0.1 2 3 cbr 1000 ------- 1 2.0 7.0 0 6 - 0.1 2 3 cbr 1000 ------- 1 2.0 7.0 0 6 v 0.10000000000000001 eval {set sim_annotation {CBR-2 starts}} r 0.104 1 3 cbr 500 ------- 1 1.0 6.0 3 3 + 0.104 3 4 cbr 500 ------- 1 1.0 6.0 3 3 - 0.104 3 4 cbr 500 ------- 1 1.0 6.0 3 3 + 0.11 1 3 cbr 500 ------- 1 1.0 6.0 6 7 - 0.11 1 3 cbr 500 ------- 1 1.0 6.0 6 7 + 0.11 2 3 cbr 1000 ------- 1 2.0 7.0 1 8 - 0.11 2 3 cbr 1000 ------- 1 2.0 7.0 1 8 r 0.114 1 3 cbr 500 ------- 1 1.0 6.0 4 4 + 0.114 3 4 cbr 500 ------- 1 1.0 6.0 4 4 - 0.114 3 4 cbr 500 ------- 1 1.0 6.0 4 4 + 0.12 1 3 cbr 500 ------- 1 1.0 6.0 7 9 - 0.12 1 3 cbr 500 ------- 1 1.0 6.0 7 9 + 0.12 2 3 cbr 1000 ------- 1 2.0 7.0 2 10 - 0.12 2 3 cbr 1000 ------- 1 2.0 7.0 2 10 r 0.124 1 3 cbr 500 ------- 1 1.0 6.0 5 5 + 0.124 3 4 cbr 500 ------- 1 1.0 6.0 5 5 - 0.124 3 4 cbr 500 ------- 1 1.0 6.0 5 5 r 0.128 3 4 cbr 500 ------- 1 1.0 6.0 0 0 + 0.128 4 6 cbr 500 ------- 1 1.0 6.0 0 0 - 0.128 4 6 cbr 500 ------- 1 1.0 6.0 0 0 r 0.128 2 3 cbr 1000 ------- 1 2.0 7.0 0 6 + 0.128 3 4 cbr 1000 ------- 1 2.0 7.0 0 6 - 0.128 3 4 cbr 1000 ------- 1 2.0 7.0 0 6 + 0.13 1 3 cbr 500 ------- 1 1.0 6.0 8 11 - 0.13 1 3 cbr 500 ------- 1 1.0 6.0 8 11 + 0.13 2 3 cbr 1000 ------- 1 2.0 7.0 3 12 - 0.13 2 3 cbr 1000 ------- 1 2.0 7.0 3 12 r 0.134 1 3 cbr 500 ------- 1 1.0 6.0 6 7 + 0.134 3 4 cbr 500 ------- 1 1.0 6.0 6 7 - 0.136 3 4 cbr 500 ------- 1 1.0 6.0 6 7 r 0.138 3 4 cbr 500 ------- 1 1.0 6.0 1 1 + 0.138 4 6 cbr 500 ------- 1 1.0 6.0 1 1 - 0.138 4 6 cbr 500 ------- 1 1.0 6.0 1 1 r 0.138 2 3 cbr 1000 ------- 1 2.0 7.0 1 8 + 0.138 3 4 cbr 1000 ------- 1 2.0 7.0 1 8 + 0.14 1 3 cbr 500 ------- 1 1.0 6.0 9 13 - 0.14 1 3 cbr 500 ------- 1 1.0 6.0 9 13 + 0.14 2 3 cbr 1000 ------- 1 2.0 7.0 4 14 - 0.14 2 3 cbr 1000 ------- 1 2.0 7.0 4 14 - 0.14 3 4 cbr 1000 ------- 1 2.0 7.0 1 8 r 0.144 1 3 cbr 500 ------- 1 1.0 6.0 7 9 + 0.144 3 4 cbr 500 ------- 1 1.0 6.0 7 9 r 0.148 2 3 cbr 1000 ------- 1 2.0 7.0 2 10 + 0.148 3 4 cbr 1000 ------- 1 2.0 7.0 2 10 r 0.148 3 4 cbr 500 ------- 1 1.0 6.0 2 2 + 0.148 4 6 cbr 500 ------- 1 1.0 6.0 2 2 - 0.148 4 6 cbr 500 ------- 1 1.0 6.0 2 2 - 0.148 3 4 cbr 500 ------- 1 1.0 6.0 7 9 + 0.15 1 3 cbr 500 ------- 1 1.0 6.0 10 15 - 0.15 1 3 cbr 500 ------- 1 1.0 6.0 10 15 + 0.15 2 3 cbr 1000 ------- 1 2.0 7.0 5 16 - 0.15 2 3 cbr 1000 ------- 1 2.0 7.0 5 16 r 0.152 4 6 cbr 500 ------- 1 1.0 6.0 0 0 - 0.152 3 4 cbr 1000 ------- 1 2.0 7.0 2 10 r 0.154 1 3 cbr 500 ------- 1 1.0 6.0 8 11 + 0.154 3 4 cbr 500 ------- 1 1.0 6.0 8 11 r 0.158 2 3 cbr 1000 ------- 1 2.0 7.0 3 12 + 0.158 3 4 cbr 1000 ------- 1 2.0 7.0 3 12 r 0.158 3 4 cbr 500 ------- 1 1.0 6.0 3 3 + 0.158 4 6 cbr 500 ------- 1 1.0 6.0 3 3 - 0.158 4 6 cbr 500 ------- 1 1.0 6.0 3 3 + 0.16 1 3 cbr 500 ------- 1 1.0 6.0 11 17 - 0.16 1 3 cbr 500 ------- 1 1.0 6.0 11 17 + 0.16 2 3 cbr 1000 ------- 1 2.0 7.0 6 18 - 0.16 2 3 cbr 1000 ------- 1 2.0 7.0 6 18 - 0.16 3 4 cbr 500 ------- 1 1.0 6.0 8 11 r 0.162 4 6 cbr 500 ------- 1 1.0 6.0 1 1 r 0.164 1 3 cbr 500 ------- 1 1.0 6.0 9 13 + 0.164 3 4 cbr 500 ------- 1 1.0 6.0 9 13 - 0.164 3 4 cbr 1000 ------- 1 2.0 7.0 3 12 r 0.168 3 4 cbr 500 ------- 1 1.0 6.0 4 4 + 0.168 4 6 cbr 500 ------- 1 1.0 6.0 4 4 - 0.168 4 6 cbr 500 ------- 1 1.0 6.0 4 4 r 0.168 2 3 cbr 1000 ------- 1 2.0 7.0 4 14 + 0.168 3 4 cbr 1000 ------- 1 2.0 7.0 4 14 + 0.17 1 3 cbr 500 ------- 1 1.0 6.0 12 19 - 0.17 1 3 cbr 500 ------- 1 1.0 6.0 12 19 + 0.17 2 3 cbr 1000 ------- 1 2.0 7.0 7 20 - 0.17 2 3 cbr 1000 ------- 1 2.0 7.0 7 20 r 0.172 4 6 cbr 500 ------- 1 1.0 6.0 2 2 - 0.172 3 4 cbr 500 ------- 1 1.0 6.0 9 13 r 0.174 1 3 cbr 500 ------- 1 1.0 6.0 10 15 + 0.174 3 4 cbr 500 ------- 1 1.0 6.0 10 15 - 0.176 3 4 cbr 1000 ------- 1 2.0 7.0 4 14 r 0.178 3 4 cbr 500 ------- 1 1.0 6.0 5 5 + 0.178 4 6 cbr 500 ------- 1 1.0 6.0 5 5 - 0.178 4 6 cbr 500 ------- 1 1.0 6.0 5 5 r 0.178 2 3 cbr 1000 ------- 1 2.0 7.0 5 16 + 0.178 3 4 cbr 1000 ------- 1 2.0 7.0 5 16 + 0.18 1 3 cbr 500 ------- 1 1.0 6.0 13 21 - 0.18 1 3 cbr 500 ------- 1 1.0 6.0 13 21 + 0.18 2 3 cbr 1000 ------- 1 2.0 7.0 8 22 - 0.18 2 3 cbr 1000 ------- 1 2.0 7.0 8 22 r 0.182 4 6 cbr 500 ------- 1 1.0 6.0 3 3 r 0.184 1 3 cbr 500 ------- 1 1.0 6.0 11 17 + 0.184 3 4 cbr 500 ------- 1 1.0 6.0 11 17 - 0.184 3 4 cbr 500 ------- 1 1.0 6.0 10 15 r 0.186 3 4 cbr 1000 ------- 1 2.0 7.0 0 6 + 0.186 4 7 cbr 1000 ------- 1 2.0 7.0 0 6 - 0.186 4 7 cbr 1000 ------- 1 2.0 7.0 0 6 r 0.188 2 3 cbr 1000 ------- 1 2.0 7.0 6 18 + 0.188 3 4 cbr 1000 ------- 1 2.0 7.0 6 18 - 0.188 3 4 cbr 1000 ------- 1 2.0 7.0 5 16 r 0.19 3 4 cbr 500 ------- 1 1.0 6.0 6 7 + 0.19 4 6 cbr 500 ------- 1 1.0 6.0 6 7 - 0.19 4 6 cbr 500 ------- 1 1.0 6.0 6 7 + 0.19 1 3 cbr 500 ------- 1 1.0 6.0 14 23 - 0.19 1 3 cbr 500 ------- 1 1.0 6.0 14 23 + 0.19 2 3 cbr 1000 ------- 1 2.0 7.0 9 24 - 0.19 2 3 cbr 1000 ------- 1 2.0 7.0 9 24 r 0.192 4 6 cbr 500 ------- 1 1.0 6.0 4 4 r 0.194 1 3 cbr 500 ------- 1 1.0 6.0 12 19 + 0.194 3 4 cbr 500 ------- 1 1.0 6.0 12 19 - 0.196 3 4 cbr 500 ------- 1 1.0 6.0 11 17 r 0.198 3 4 cbr 1000 ------- 1 2.0 7.0 1 8 + 0.198 4 7 cbr 1000 ------- 1 2.0 7.0 1 8 - 0.198 4 7 cbr 1000 ------- 1 2.0 7.0 1 8 r 0.198 2 3 cbr 1000 ------- 1 2.0 7.0 7 20 + 0.198 3 4 cbr 1000 ------- 1 2.0 7.0 7 20 + 0.2 1 3 cbr 500 ------- 1 1.0 6.0 15 25 - 0.2 1 3 cbr 500 ------- 1 1.0 6.0 15 25 + 0.2 2 3 cbr 1000 ------- 1 2.0 7.0 10 26 - 0.2 2 3 cbr 1000 ------- 1 2.0 7.0 10 26 - 0.2 3 4 cbr 1000 ------- 1 2.0 7.0 6 18 r 0.202 4 6 cbr 500 ------- 1 1.0 6.0 5 5 r 0.202 3 4 cbr 500 ------- 1 1.0 6.0 7 9 + 0.202 4 6 cbr 500 ------- 1 1.0 6.0 7 9 - 0.202 4 6 cbr 500 ------- 1 1.0 6.0 7 9 r 0.204 1 3 cbr 500 ------- 1 1.0 6.0 13 21 + 0.204 3 4 cbr 500 ------- 1 1.0 6.0 13 21 r 0.208 2 3 cbr 1000 ------- 1 2.0 7.0 8 22 + 0.208 3 4 cbr 1000 ------- 1 2.0 7.0 8 22 - 0.208 3 4 cbr 500 ------- 1 1.0 6.0 12 19 r 0.21 3 4 cbr 1000 ------- 1 2.0 7.0 2 10 + 0.21 4 7 cbr 1000 ------- 1 2.0 7.0 2 10 - 0.21 4 7 cbr 1000 ------- 1 2.0 7.0 2 10 + 0.21 1 3 cbr 500 ------- 1 1.0 6.0 16 27 - 0.21 1 3 cbr 500 ------- 1 1.0 6.0 16 27 + 0.21 2 3 cbr 1000 ------- 1 2.0 7.0 11 28 - 0.21 2 3 cbr 1000 ------- 1 2.0 7.0 11 28 - 0.212 3 4 cbr 1000 ------- 1 2.0 7.0 7 20 r 0.214 4 7 cbr 1000 ------- 1 2.0 7.0 0 6 r 0.214 4 6 cbr 500 ------- 1 1.0 6.0 6 7 r 0.214 3 4 cbr 500 ------- 1 1.0 6.0 8 11 + 0.214 4 6 cbr 500 ------- 1 1.0 6.0 8 11 - 0.214 4 6 cbr 500 ------- 1 1.0 6.0 8 11 r 0.214 1 3 cbr 500 ------- 1 1.0 6.0 14 23 + 0.214 3 4 cbr 500 ------- 1 1.0 6.0 14 23 r 0.218 2 3 cbr 1000 ------- 1 2.0 7.0 9 24 + 0.218 3 4 cbr 1000 ------- 1 2.0 7.0 9 24 + 0.22 1 3 cbr 500 ------- 1 1.0 6.0 17 29 - 0.22 1 3 cbr 500 ------- 1 1.0 6.0 17 29 + 0.22 2 3 cbr 1000 ------- 1 2.0 7.0 12 30 - 0.22 2 3 cbr 1000 ------- 1 2.0 7.0 12 30 - 0.22 3 4 cbr 500 ------- 1 1.0 6.0 13 21 r 0.222 3 4 cbr 1000 ------- 1 2.0 7.0 3 12 + 0.222 4 7 cbr 1000 ------- 1 2.0 7.0 3 12 - 0.222 4 7 cbr 1000 ------- 1 2.0 7.0 3 12 r 0.224 1 3 cbr 500 ------- 1 1.0 6.0 15 25 + 0.224 3 4 cbr 500 ------- 1 1.0 6.0 15 25 - 0.224 3 4 cbr 1000 ------- 1 2.0 7.0 8 22 r 0.226 4 7 cbr 1000 ------- 1 2.0 7.0 1 8 r 0.226 4 6 cbr 500 ------- 1 1.0 6.0 7 9 r 0.226 3 4 cbr 500 ------- 1 1.0 6.0 9 13 + 0.226 4 6 cbr 500 ------- 1 1.0 6.0 9 13 - 0.226 4 6 cbr 500 ------- 1 1.0 6.0 9 13 r 0.228 2 3 cbr 1000 ------- 1 2.0 7.0 10 26 + 0.228 3 4 cbr 1000 ------- 1 2.0 7.0 10 26 + 0.23 1 3 cbr 500 ------- 1 1.0 6.0 18 31 - 0.23 1 3 cbr 500 ------- 1 1.0 6.0 18 31 + 0.23 2 3 cbr 1000 ------- 1 2.0 7.0 13 32 - 0.23 2 3 cbr 1000 ------- 1 2.0 7.0 13 32 - 0.232 3 4 cbr 500 ------- 1 1.0 6.0 14 23 r 0.234 3 4 cbr 1000 ------- 1 2.0 7.0 4 14 + 0.234 4 7 cbr 1000 ------- 1 2.0 7.0 4 14 - 0.234 4 7 cbr 1000 ------- 1 2.0 7.0 4 14 r 0.234 1 3 cbr 500 ------- 1 1.0 6.0 16 27 + 0.234 3 4 cbr 500 ------- 1 1.0 6.0 16 27 - 0.236 3 4 cbr 1000 ------- 1 2.0 7.0 9 24 r 0.238 4 7 cbr 1000 ------- 1 2.0 7.0 2 10 r 0.238 4 6 cbr 500 ------- 1 1.0 6.0 8 11 r 0.238 3 4 cbr 500 ------- 1 1.0 6.0 10 15 + 0.238 4 6 cbr 500 ------- 1 1.0 6.0 10 15 - 0.238 4 6 cbr 500 ------- 1 1.0 6.0 10 15 r 0.238 2 3 cbr 1000 ------- 1 2.0 7.0 11 28 + 0.238 3 4 cbr 1000 ------- 1 2.0 7.0 11 28 + 0.24 1 3 cbr 500 ------- 1 1.0 6.0 19 33 - 0.24 1 3 cbr 500 ------- 1 1.0 6.0 19 33 + 0.24 2 3 cbr 1000 ------- 1 2.0 7.0 14 34 - 0.24 2 3 cbr 1000 ------- 1 2.0 7.0 14 34 r 0.244 1 3 cbr 500 ------- 1 1.0 6.0 17 29 + 0.244 3 4 cbr 500 ------- 1 1.0 6.0 17 29 - 0.244 3 4 cbr 500 ------- 1 1.0 6.0 15 25 r 0.246 3 4 cbr 1000 ------- 1 2.0 7.0 5 16 + 0.246 4 7 cbr 1000 ------- 1 2.0 7.0 5 16 - 0.246 4 7 cbr 1000 ------- 1 2.0 7.0 5 16 r 0.248 2 3 cbr 1000 ------- 1 2.0 7.0 12 30 + 0.248 3 4 cbr 1000 ------- 1 2.0 7.0 12 30 - 0.248 3 4 cbr 1000 ------- 1 2.0 7.0 10 26 r 0.25 3 4 cbr 500 ------- 1 1.0 6.0 11 17 + 0.25 4 6 cbr 500 ------- 1 1.0 6.0 11 17 - 0.25 4 6 cbr 500 ------- 1 1.0 6.0 11 17 r 0.25 4 7 cbr 1000 ------- 1 2.0 7.0 3 12 r 0.25 4 6 cbr 500 ------- 1 1.0 6.0 9 13 + 0.25 1 3 cbr 500 ------- 1 1.0 6.0 20 35 - 0.25 1 3 cbr 500 ------- 1 1.0 6.0 20 35 + 0.25 2 3 cbr 1000 ------- 1 2.0 7.0 15 36 - 0.25 2 3 cbr 1000 ------- 1 2.0 7.0 15 36 r 0.254 1 3 cbr 500 ------- 1 1.0 6.0 18 31 + 0.254 3 4 cbr 500 ------- 1 1.0 6.0 18 31 - 0.256 3 4 cbr 500 ------- 1 1.0 6.0 16 27 r 0.258 3 4 cbr 1000 ------- 1 2.0 7.0 6 18 + 0.258 4 7 cbr 1000 ------- 1 2.0 7.0 6 18 - 0.258 4 7 cbr 1000 ------- 1 2.0 7.0 6 18 r 0.258 2 3 cbr 1000 ------- 1 2.0 7.0 13 32 + 0.258 3 4 cbr 1000 ------- 1 2.0 7.0 13 32 + 0.26 1 3 cbr 500 ------- 1 1.0 6.0 21 37 - 0.26 1 3 cbr 500 ------- 1 1.0 6.0 21 37 + 0.26 2 3 cbr 1000 ------- 1 2.0 7.0 16 38 - 0.26 2 3 cbr 1000 ------- 1 2.0 7.0 16 38 - 0.26 3 4 cbr 1000 ------- 1 2.0 7.0 11 28 r 0.262 3 4 cbr 500 ------- 1 1.0 6.0 12 19 + 0.262 4 6 cbr 500 ------- 1 1.0 6.0 12 19 - 0.262 4 6 cbr 500 ------- 1 1.0 6.0 12 19 r 0.262 4 7 cbr 1000 ------- 1 2.0 7.0 4 14 r 0.262 4 6 cbr 500 ------- 1 1.0 6.0 10 15 r 0.264 1 3 cbr 500 ------- 1 1.0 6.0 19 33 + 0.264 3 4 cbr 500 ------- 1 1.0 6.0 19 33 r 0.268 2 3 cbr 1000 ------- 1 2.0 7.0 14 34 + 0.268 3 4 cbr 1000 ------- 1 2.0 7.0 14 34 - 0.268 3 4 cbr 500 ------- 1 1.0 6.0 17 29 r 0.27 3 4 cbr 1000 ------- 1 2.0 7.0 7 20 + 0.27 4 7 cbr 1000 ------- 1 2.0 7.0 7 20 - 0.27 4 7 cbr 1000 ------- 1 2.0 7.0 7 20 + 0.27 1 3 cbr 500 ------- 1 1.0 6.0 22 39 - 0.27 1 3 cbr 500 ------- 1 1.0 6.0 22 39 + 0.27 2 3 cbr 1000 ------- 1 2.0 7.0 17 40 - 0.27 2 3 cbr 1000 ------- 1 2.0 7.0 17 40 - 0.272 3 4 cbr 1000 ------- 1 2.0 7.0 12 30 r 0.274 3 4 cbr 500 ------- 1 1.0 6.0 13 21 + 0.274 4 6 cbr 500 ------- 1 1.0 6.0 13 21 - 0.274 4 6 cbr 500 ------- 1 1.0 6.0 13 21 r 0.274 4 7 cbr 1000 ------- 1 2.0 7.0 5 16 r 0.274 4 6 cbr 500 ------- 1 1.0 6.0 11 17 r 0.274 1 3 cbr 500 ------- 1 1.0 6.0 20 35 + 0.274 3 4 cbr 500 ------- 1 1.0 6.0 20 35 r 0.278 2 3 cbr 1000 ------- 1 2.0 7.0 15 36 + 0.278 3 4 cbr 1000 ------- 1 2.0 7.0 15 36 + 0.28 1 3 cbr 500 ------- 1 1.0 6.0 23 41 - 0.28 1 3 cbr 500 ------- 1 1.0 6.0 23 41 + 0.28 2 3 cbr 1000 ------- 1 2.0 7.0 18 42 - 0.28 2 3 cbr 1000 ------- 1 2.0 7.0 18 42 - 0.28 3 4 cbr 500 ------- 1 1.0 6.0 18 31 r 0.282 3 4 cbr 1000 ------- 1 2.0 7.0 8 22 + 0.282 4 7 cbr 1000 ------- 1 2.0 7.0 8 22 - 0.282 4 7 cbr 1000 ------- 1 2.0 7.0 8 22 r 0.284 1 3 cbr 500 ------- 1 1.0 6.0 21 37 + 0.284 3 4 cbr 500 ------- 1 1.0 6.0 21 37 - 0.284 3 4 cbr 1000 ------- 1 2.0 7.0 13 32 r 0.286 3 4 cbr 500 ------- 1 1.0 6.0 14 23 + 0.286 4 6 cbr 500 ------- 1 1.0 6.0 14 23 - 0.286 4 6 cbr 500 ------- 1 1.0 6.0 14 23 r 0.286 4 7 cbr 1000 ------- 1 2.0 7.0 6 18 r 0.286 4 6 cbr 500 ------- 1 1.0 6.0 12 19 r 0.288 2 3 cbr 1000 ------- 1 2.0 7.0 16 38 + 0.288 3 4 cbr 1000 ------- 1 2.0 7.0 16 38 + 0.29 1 3 cbr 500 ------- 1 1.0 6.0 24 43 - 0.29 1 3 cbr 500 ------- 1 1.0 6.0 24 43 + 0.29 2 3 cbr 1000 ------- 1 2.0 7.0 19 44 - 0.29 2 3 cbr 1000 ------- 1 2.0 7.0 19 44 - 0.292 3 4 cbr 500 ------- 1 1.0 6.0 19 33 r 0.294 3 4 cbr 1000 ------- 1 2.0 7.0 9 24 + 0.294 4 7 cbr 1000 ------- 1 2.0 7.0 9 24 - 0.294 4 7 cbr 1000 ------- 1 2.0 7.0 9 24 r 0.294 1 3 cbr 500 ------- 1 1.0 6.0 22 39 + 0.294 3 4 cbr 500 ------- 1 1.0 6.0 22 39 - 0.296 3 4 cbr 1000 ------- 1 2.0 7.0 14 34 r 0.298 3 4 cbr 500 ------- 1 1.0 6.0 15 25 + 0.298 4 6 cbr 500 ------- 1 1.0 6.0 15 25 - 0.298 4 6 cbr 500 ------- 1 1.0 6.0 15 25 r 0.298 4 7 cbr 1000 ------- 1 2.0 7.0 7 20 r 0.298 4 6 cbr 500 ------- 1 1.0 6.0 13 21 r 0.298 2 3 cbr 1000 ------- 1 2.0 7.0 17 40 + 0.298 3 4 cbr 1000 ------- 1 2.0 7.0 17 40 + 0.3 1 3 cbr 500 ------- 1 1.0 6.0 25 45 - 0.3 1 3 cbr 500 ------- 1 1.0 6.0 25 45 + 0.3 2 3 cbr 1000 ------- 1 2.0 7.0 20 46 - 0.3 2 3 cbr 1000 ------- 1 2.0 7.0 20 46 r 0.304 1 3 cbr 500 ------- 1 1.0 6.0 23 41 + 0.304 3 4 cbr 500 ------- 1 1.0 6.0 23 41 - 0.304 3 4 cbr 500 ------- 1 1.0 6.0 20 35 r 0.306 3 4 cbr 1000 ------- 1 2.0 7.0 10 26 + 0.306 4 7 cbr 1000 ------- 1 2.0 7.0 10 26 - 0.306 4 7 cbr 1000 ------- 1 2.0 7.0 10 26 r 0.308 2 3 cbr 1000 ------- 1 2.0 7.0 18 42 + 0.308 3 4 cbr 1000 ------- 1 2.0 7.0 18 42 - 0.308 3 4 cbr 1000 ------- 1 2.0 7.0 15 36 r 0.31 3 4 cbr 500 ------- 1 1.0 6.0 16 27 + 0.31 4 6 cbr 500 ------- 1 1.0 6.0 16 27 - 0.31 4 6 cbr 500 ------- 1 1.0 6.0 16 27 r 0.31 4 7 cbr 1000 ------- 1 2.0 7.0 8 22 r 0.31 4 6 cbr 500 ------- 1 1.0 6.0 14 23 + 0.31 1 3 cbr 500 ------- 1 1.0 6.0 26 47 - 0.31 1 3 cbr 500 ------- 1 1.0 6.0 26 47 + 0.31 2 3 cbr 1000 ------- 1 2.0 7.0 21 48 - 0.31 2 3 cbr 1000 ------- 1 2.0 7.0 21 48 r 0.314 1 3 cbr 500 ------- 1 1.0 6.0 24 43 + 0.314 3 4 cbr 500 ------- 1 1.0 6.0 24 43 - 0.316 3 4 cbr 500 ------- 1 1.0 6.0 21 37 r 0.318 3 4 cbr 1000 ------- 1 2.0 7.0 11 28 + 0.318 4 7 cbr 1000 ------- 1 2.0 7.0 11 28 - 0.318 4 7 cbr 1000 ------- 1 2.0 7.0 11 28 r 0.318 2 3 cbr 1000 ------- 1 2.0 7.0 19 44 + 0.318 3 4 cbr 1000 ------- 1 2.0 7.0 19 44 + 0.32 1 3 cbr 500 ------- 1 1.0 6.0 27 49 - 0.32 1 3 cbr 500 ------- 1 1.0 6.0 27 49 + 0.32 2 3 cbr 1000 ------- 1 2.0 7.0 22 50 - 0.32 2 3 cbr 1000 ------- 1 2.0 7.0 22 50 - 0.32 3 4 cbr 1000 ------- 1 2.0 7.0 16 38 r 0.322 3 4 cbr 500 ------- 1 1.0 6.0 17 29 + 0.322 4 6 cbr 500 ------- 1 1.0 6.0 17 29 - 0.322 4 6 cbr 500 ------- 1 1.0 6.0 17 29 r 0.322 4 7 cbr 1000 ------- 1 2.0 7.0 9 24 r 0.322 4 6 cbr 500 ------- 1 1.0 6.0 15 25 r 0.324 1 3 cbr 500 ------- 1 1.0 6.0 25 45 + 0.324 3 4 cbr 500 ------- 1 1.0 6.0 25 45 r 0.328 2 3 cbr 1000 ------- 1 2.0 7.0 20 46 + 0.328 3 4 cbr 1000 ------- 1 2.0 7.0 20 46 - 0.328 3 4 cbr 500 ------- 1 1.0 6.0 22 39 r 0.33 3 4 cbr 1000 ------- 1 2.0 7.0 12 30 + 0.33 4 7 cbr 1000 ------- 1 2.0 7.0 12 30 - 0.33 4 7 cbr 1000 ------- 1 2.0 7.0 12 30 + 0.33 1 3 cbr 500 ------- 1 1.0 6.0 28 51 - 0.33 1 3 cbr 500 ------- 1 1.0 6.0 28 51 + 0.33 2 3 cbr 1000 ------- 1 2.0 7.0 23 52 - 0.33 2 3 cbr 1000 ------- 1 2.0 7.0 23 52 - 0.332 3 4 cbr 1000 ------- 1 2.0 7.0 17 40 r 0.334 3 4 cbr 500 ------- 1 1.0 6.0 18 31 + 0.334 4 6 cbr 500 ------- 1 1.0 6.0 18 31 - 0.334 4 6 cbr 500 ------- 1 1.0 6.0 18 31 r 0.334 4 7 cbr 1000 ------- 1 2.0 7.0 10 26 r 0.334 4 6 cbr 500 ------- 1 1.0 6.0 16 27 r 0.334 1 3 cbr 500 ------- 1 1.0 6.0 26 47 + 0.334 3 4 cbr 500 ------- 1 1.0 6.0 26 47 r 0.338 2 3 cbr 1000 ------- 1 2.0 7.0 21 48 + 0.338 3 4 cbr 1000 ------- 1 2.0 7.0 21 48 + 0.34 1 3 cbr 500 ------- 1 1.0 6.0 29 53 - 0.34 1 3 cbr 500 ------- 1 1.0 6.0 29 53 + 0.34 2 3 cbr 1000 ------- 1 2.0 7.0 24 54 - 0.34 2 3 cbr 1000 ------- 1 2.0 7.0 24 54 - 0.34 3 4 cbr 500 ------- 1 1.0 6.0 23 41 r 0.342 3 4 cbr 1000 ------- 1 2.0 7.0 13 32 + 0.342 4 7 cbr 1000 ------- 1 2.0 7.0 13 32 - 0.342 4 7 cbr 1000 ------- 1 2.0 7.0 13 32 r 0.344 1 3 cbr 500 ------- 1 1.0 6.0 27 49 + 0.344 3 4 cbr 500 ------- 1 1.0 6.0 27 49 - 0.344 3 4 cbr 1000 ------- 1 2.0 7.0 18 42 r 0.346 3 4 cbr 500 ------- 1 1.0 6.0 19 33 + 0.346 4 6 cbr 500 ------- 1 1.0 6.0 19 33 - 0.346 4 6 cbr 500 ------- 1 1.0 6.0 19 33 r 0.346 4 7 cbr 1000 ------- 1 2.0 7.0 11 28 r 0.346 4 6 cbr 500 ------- 1 1.0 6.0 17 29 r 0.348 2 3 cbr 1000 ------- 1 2.0 7.0 22 50 + 0.348 3 4 cbr 1000 ------- 1 2.0 7.0 22 50 + 0.35 1 3 cbr 500 ------- 1 1.0 6.0 30 55 - 0.35 1 3 cbr 500 ------- 1 1.0 6.0 30 55 + 0.35 2 3 cbr 1000 ------- 1 2.0 7.0 25 56 - 0.35 2 3 cbr 1000 ------- 1 2.0 7.0 25 56 - 0.352 3 4 cbr 500 ------- 1 1.0 6.0 24 43 r 0.354 3 4 cbr 1000 ------- 1 2.0 7.0 14 34 + 0.354 4 7 cbr 1000 ------- 1 2.0 7.0 14 34 - 0.354 4 7 cbr 1000 ------- 1 2.0 7.0 14 34 r 0.354 1 3 cbr 500 ------- 1 1.0 6.0 28 51 + 0.354 3 4 cbr 500 ------- 1 1.0 6.0 28 51 - 0.356 3 4 cbr 1000 ------- 1 2.0 7.0 19 44 r 0.358 3 4 cbr 500 ------- 1 1.0 6.0 20 35 + 0.358 4 6 cbr 500 ------- 1 1.0 6.0 20 35 - 0.358 4 6 cbr 500 ------- 1 1.0 6.0 20 35 r 0.358 4 7 cbr 1000 ------- 1 2.0 7.0 12 30 r 0.358 4 6 cbr 500 ------- 1 1.0 6.0 18 31 r 0.358 2 3 cbr 1000 ------- 1 2.0 7.0 23 52 + 0.358 3 4 cbr 1000 ------- 1 2.0 7.0 23 52 + 0.36 1 3 cbr 500 ------- 1 1.0 6.0 31 57 - 0.36 1 3 cbr 500 ------- 1 1.0 6.0 31 57 + 0.36 2 3 cbr 1000 ------- 1 2.0 7.0 26 58 - 0.36 2 3 cbr 1000 ------- 1 2.0 7.0 26 58 r 0.364 1 3 cbr 500 ------- 1 1.0 6.0 29 53 + 0.364 3 4 cbr 500 ------- 1 1.0 6.0 29 53 - 0.364 3 4 cbr 500 ------- 1 1.0 6.0 25 45 r 0.366 3 4 cbr 1000 ------- 1 2.0 7.0 15 36 + 0.366 4 7 cbr 1000 ------- 1 2.0 7.0 15 36 - 0.366 4 7 cbr 1000 ------- 1 2.0 7.0 15 36 r 0.368 2 3 cbr 1000 ------- 1 2.0 7.0 24 54 + 0.368 3 4 cbr 1000 ------- 1 2.0 7.0 24 54 - 0.368 3 4 cbr 1000 ------- 1 2.0 7.0 20 46 r 0.37 3 4 cbr 500 ------- 1 1.0 6.0 21 37 + 0.37 4 6 cbr 500 ------- 1 1.0 6.0 21 37 - 0.37 4 6 cbr 500 ------- 1 1.0 6.0 21 37 r 0.37 4 7 cbr 1000 ------- 1 2.0 7.0 13 32 r 0.37 4 6 cbr 500 ------- 1 1.0 6.0 19 33 + 0.37 1 3 cbr 500 ------- 1 1.0 6.0 32 59 - 0.37 1 3 cbr 500 ------- 1 1.0 6.0 32 59 + 0.37 2 3 cbr 1000 ------- 1 2.0 7.0 27 60 - 0.37 2 3 cbr 1000 ------- 1 2.0 7.0 27 60 r 0.374 1 3 cbr 500 ------- 1 1.0 6.0 30 55 + 0.374 3 4 cbr 500 ------- 1 1.0 6.0 30 55 - 0.376 3 4 cbr 500 ------- 1 1.0 6.0 26 47 r 0.378 3 4 cbr 1000 ------- 1 2.0 7.0 16 38 + 0.378 4 7 cbr 1000 ------- 1 2.0 7.0 16 38 - 0.378 4 7 cbr 1000 ------- 1 2.0 7.0 16 38 r 0.378 2 3 cbr 1000 ------- 1 2.0 7.0 25 56 + 0.378 3 4 cbr 1000 ------- 1 2.0 7.0 25 56 + 0.38 1 3 cbr 500 ------- 1 1.0 6.0 33 61 - 0.38 1 3 cbr 500 ------- 1 1.0 6.0 33 61 + 0.38 2 3 cbr 1000 ------- 1 2.0 7.0 28 62 - 0.38 2 3 cbr 1000 ------- 1 2.0 7.0 28 62 - 0.38 3 4 cbr 1000 ------- 1 2.0 7.0 21 48 r 0.382 3 4 cbr 500 ------- 1 1.0 6.0 22 39 + 0.382 4 6 cbr 500 ------- 1 1.0 6.0 22 39 - 0.382 4 6 cbr 500 ------- 1 1.0 6.0 22 39 r 0.382 4 7 cbr 1000 ------- 1 2.0 7.0 14 34 r 0.382 4 6 cbr 500 ------- 1 1.0 6.0 20 35 r 0.384 1 3 cbr 500 ------- 1 1.0 6.0 31 57 + 0.384 3 4 cbr 500 ------- 1 1.0 6.0 31 57 r 0.388 2 3 cbr 1000 ------- 1 2.0 7.0 26 58 + 0.388 3 4 cbr 1000 ------- 1 2.0 7.0 26 58 d 0.388 3 4 cbr 1000 ------- 1 2.0 7.0 26 58 - 0.388 3 4 cbr 500 ------- 1 1.0 6.0 27 49 r 0.39 3 4 cbr 1000 ------- 1 2.0 7.0 17 40 + 0.39 4 7 cbr 1000 ------- 1 2.0 7.0 17 40 - 0.39 4 7 cbr 1000 ------- 1 2.0 7.0 17 40 + 0.39 1 3 cbr 500 ------- 1 1.0 6.0 34 63 - 0.39 1 3 cbr 500 ------- 1 1.0 6.0 34 63 + 0.39 2 3 cbr 1000 ------- 1 2.0 7.0 29 64 - 0.39 2 3 cbr 1000 ------- 1 2.0 7.0 29 64 - 0.392 3 4 cbr 1000 ------- 1 2.0 7.0 22 50 r 0.394 3 4 cbr 500 ------- 1 1.0 6.0 23 41 + 0.394 4 6 cbr 500 ------- 1 1.0 6.0 23 41 - 0.394 4 6 cbr 500 ------- 1 1.0 6.0 23 41 r 0.394 4 7 cbr 1000 ------- 1 2.0 7.0 15 36 r 0.394 4 6 cbr 500 ------- 1 1.0 6.0 21 37 r 0.394 1 3 cbr 500 ------- 1 1.0 6.0 32 59 + 0.394 3 4 cbr 500 ------- 1 1.0 6.0 32 59 r 0.398 2 3 cbr 1000 ------- 1 2.0 7.0 27 60 + 0.398 3 4 cbr 1000 ------- 1 2.0 7.0 27 60 + 0.4 1 3 cbr 500 ------- 1 1.0 6.0 35 65 - 0.4 1 3 cbr 500 ------- 1 1.0 6.0 35 65 + 0.4 2 3 cbr 1000 ------- 1 2.0 7.0 30 66 - 0.4 2 3 cbr 1000 ------- 1 2.0 7.0 30 66 - 0.4 3 4 cbr 500 ------- 1 1.0 6.0 28 51 r 0.402 3 4 cbr 1000 ------- 1 2.0 7.0 18 42 + 0.402 4 7 cbr 1000 ------- 1 2.0 7.0 18 42 - 0.402 4 7 cbr 1000 ------- 1 2.0 7.0 18 42 r 0.404 1 3 cbr 500 ------- 1 1.0 6.0 33 61 + 0.404 3 4 cbr 500 ------- 1 1.0 6.0 33 61 - 0.404 3 4 cbr 1000 ------- 1 2.0 7.0 23 52 r 0.406 3 4 cbr 500 ------- 1 1.0 6.0 24 43 + 0.406 4 6 cbr 500 ------- 1 1.0 6.0 24 43 - 0.406 4 6 cbr 500 ------- 1 1.0 6.0 24 43 r 0.406 4 7 cbr 1000 ------- 1 2.0 7.0 16 38 r 0.406 4 6 cbr 500 ------- 1 1.0 6.0 22 39 r 0.408 2 3 cbr 1000 ------- 1 2.0 7.0 28 62 + 0.408 3 4 cbr 1000 ------- 1 2.0 7.0 28 62 + 0.41 1 3 cbr 500 ------- 1 1.0 6.0 36 67 - 0.41 1 3 cbr 500 ------- 1 1.0 6.0 36 67 + 0.41 2 3 cbr 1000 ------- 1 2.0 7.0 31 68 - 0.41 2 3 cbr 1000 ------- 1 2.0 7.0 31 68 - 0.412 3 4 cbr 500 ------- 1 1.0 6.0 29 53 r 0.414 3 4 cbr 1000 ------- 1 2.0 7.0 19 44 + 0.414 4 7 cbr 1000 ------- 1 2.0 7.0 19 44 - 0.414 4 7 cbr 1000 ------- 1 2.0 7.0 19 44 r 0.414 1 3 cbr 500 ------- 1 1.0 6.0 34 63 + 0.414 3 4 cbr 500 ------- 1 1.0 6.0 34 63 - 0.416 3 4 cbr 1000 ------- 1 2.0 7.0 24 54 r 0.418 3 4 cbr 500 ------- 1 1.0 6.0 25 45 + 0.418 4 6 cbr 500 ------- 1 1.0 6.0 25 45 - 0.418 4 6 cbr 500 ------- 1 1.0 6.0 25 45 r 0.418 4 7 cbr 1000 ------- 1 2.0 7.0 17 40 r 0.418 4 6 cbr 500 ------- 1 1.0 6.0 23 41 r 0.418 2 3 cbr 1000 ------- 1 2.0 7.0 29 64 + 0.418 3 4 cbr 1000 ------- 1 2.0 7.0 29 64 + 0.42 1 3 cbr 500 ------- 1 1.0 6.0 37 69 - 0.42 1 3 cbr 500 ------- 1 1.0 6.0 37 69 + 0.42 2 3 cbr 1000 ------- 1 2.0 7.0 32 70 - 0.42 2 3 cbr 1000 ------- 1 2.0 7.0 32 70 r 0.424 1 3 cbr 500 ------- 1 1.0 6.0 35 65 + 0.424 3 4 cbr 500 ------- 1 1.0 6.0 35 65 d 0.424 3 4 cbr 500 ------- 1 1.0 6.0 35 65 - 0.424 3 4 cbr 500 ------- 1 1.0 6.0 30 55 r 0.426 3 4 cbr 1000 ------- 1 2.0 7.0 20 46 + 0.426 4 7 cbr 1000 ------- 1 2.0 7.0 20 46 - 0.426 4 7 cbr 1000 ------- 1 2.0 7.0 20 46 r 0.428 2 3 cbr 1000 ------- 1 2.0 7.0 30 66 + 0.428 3 4 cbr 1000 ------- 1 2.0 7.0 30 66 - 0.428 3 4 cbr 1000 ------- 1 2.0 7.0 25 56 r 0.43 3 4 cbr 500 ------- 1 1.0 6.0 26 47 + 0.43 4 6 cbr 500 ------- 1 1.0 6.0 26 47 - 0.43 4 6 cbr 500 ------- 1 1.0 6.0 26 47 r 0.43 4 7 cbr 1000 ------- 1 2.0 7.0 18 42 r 0.43 4 6 cbr 500 ------- 1 1.0 6.0 24 43 + 0.43 1 3 cbr 500 ------- 1 1.0 6.0 38 71 - 0.43 1 3 cbr 500 ------- 1 1.0 6.0 38 71 + 0.43 2 3 cbr 1000 ------- 1 2.0 7.0 33 72 - 0.43 2 3 cbr 1000 ------- 1 2.0 7.0 33 72 r 0.434 1 3 cbr 500 ------- 1 1.0 6.0 36 67 + 0.434 3 4 cbr 500 ------- 1 1.0 6.0 36 67 - 0.436 3 4 cbr 500 ------- 1 1.0 6.0 31 57 r 0.438 3 4 cbr 1000 ------- 1 2.0 7.0 21 48 + 0.438 4 7 cbr 1000 ------- 1 2.0 7.0 21 48 - 0.438 4 7 cbr 1000 ------- 1 2.0 7.0 21 48 r 0.438 2 3 cbr 1000 ------- 1 2.0 7.0 31 68 + 0.438 3 4 cbr 1000 ------- 1 2.0 7.0 31 68 + 0.44 1 3 cbr 500 ------- 1 1.0 6.0 39 73 - 0.44 1 3 cbr 500 ------- 1 1.0 6.0 39 73 + 0.44 2 3 cbr 1000 ------- 1 2.0 7.0 34 74 - 0.44 2 3 cbr 1000 ------- 1 2.0 7.0 34 74 - 0.44 3 4 cbr 500 ------- 1 1.0 6.0 32 59 r 0.442 3 4 cbr 500 ------- 1 1.0 6.0 27 49 + 0.442 4 6 cbr 500 ------- 1 1.0 6.0 27 49 - 0.442 4 6 cbr 500 ------- 1 1.0 6.0 27 49 r 0.442 4 7 cbr 1000 ------- 1 2.0 7.0 19 44 r 0.442 4 6 cbr 500 ------- 1 1.0 6.0 25 45 r 0.444 1 3 cbr 500 ------- 1 1.0 6.0 37 69 + 0.444 3 4 cbr 500 ------- 1 1.0 6.0 37 69 - 0.444 3 4 cbr 1000 ------- 1 2.0 7.0 27 60 r 0.448 2 3 cbr 1000 ------- 1 2.0 7.0 32 70 + 0.448 3 4 cbr 1000 ------- 1 2.0 7.0 32 70 r 0.45 3 4 cbr 1000 ------- 1 2.0 7.0 22 50 + 0.45 4 7 cbr 1000 ------- 1 2.0 7.0 22 50 - 0.45 4 7 cbr 1000 ------- 1 2.0 7.0 22 50 + 0.45 1 3 cbr 500 ------- 1 1.0 6.0 40 75 - 0.45 1 3 cbr 500 ------- 1 1.0 6.0 40 75 + 0.45 2 3 cbr 1000 ------- 1 2.0 7.0 35 76 - 0.45 2 3 cbr 1000 ------- 1 2.0 7.0 35 76 - 0.452 3 4 cbr 500 ------- 1 1.0 6.0 33 61 r 0.454 3 4 cbr 500 ------- 1 1.0 6.0 28 51 + 0.454 4 6 cbr 500 ------- 1 1.0 6.0 28 51 - 0.454 4 6 cbr 500 ------- 1 1.0 6.0 28 51 r 0.454 4 7 cbr 1000 ------- 1 2.0 7.0 20 46 r 0.454 4 6 cbr 500 ------- 1 1.0 6.0 26 47 r 0.454 1 3 cbr 500 ------- 1 1.0 6.0 38 71 + 0.454 3 4 cbr 500 ------- 1 1.0 6.0 38 71 - 0.456 3 4 cbr 1000 ------- 1 2.0 7.0 28 62 r 0.458 2 3 cbr 1000 ------- 1 2.0 7.0 33 72 + 0.458 3 4 cbr 1000 ------- 1 2.0 7.0 33 72 + 0.46 1 3 cbr 500 ------- 1 1.0 6.0 41 77 - 0.46 1 3 cbr 500 ------- 1 1.0 6.0 41 77 + 0.46 2 3 cbr 1000 ------- 1 2.0 7.0 36 78 - 0.46 2 3 cbr 1000 ------- 1 2.0 7.0 36 78 r 0.462 3 4 cbr 1000 ------- 1 2.0 7.0 23 52 + 0.462 4 7 cbr 1000 ------- 1 2.0 7.0 23 52 - 0.462 4 7 cbr 1000 ------- 1 2.0 7.0 23 52 r 0.464 1 3 cbr 500 ------- 1 1.0 6.0 39 73 + 0.464 3 4 cbr 500 ------- 1 1.0 6.0 39 73 d 0.464 3 4 cbr 500 ------- 1 1.0 6.0 39 73 - 0.464 3 4 cbr 500 ------- 1 1.0 6.0 34 63 r 0.466 3 4 cbr 500 ------- 1 1.0 6.0 29 53 + 0.466 4 6 cbr 500 ------- 1 1.0 6.0 29 53 - 0.466 4 6 cbr 500 ------- 1 1.0 6.0 29 53 r 0.466 4 7 cbr 1000 ------- 1 2.0 7.0 21 48 r 0.466 4 6 cbr 500 ------- 1 1.0 6.0 27 49 r 0.468 2 3 cbr 1000 ------- 1 2.0 7.0 34 74 + 0.468 3 4 cbr 1000 ------- 1 2.0 7.0 34 74 - 0.468 3 4 cbr 1000 ------- 1 2.0 7.0 29 64 + 0.47 1 3 cbr 500 ------- 1 1.0 6.0 42 79 - 0.47 1 3 cbr 500 ------- 1 1.0 6.0 42 79 + 0.47 2 3 cbr 1000 ------- 1 2.0 7.0 37 80 - 0.47 2 3 cbr 1000 ------- 1 2.0 7.0 37 80 r 0.474 3 4 cbr 1000 ------- 1 2.0 7.0 24 54 + 0.474 4 7 cbr 1000 ------- 1 2.0 7.0 24 54 - 0.474 4 7 cbr 1000 ------- 1 2.0 7.0 24 54 r 0.474 1 3 cbr 500 ------- 1 1.0 6.0 40 75 + 0.474 3 4 cbr 500 ------- 1 1.0 6.0 40 75 - 0.476 3 4 cbr 1000 ------- 1 2.0 7.0 30 66 r 0.478 3 4 cbr 500 ------- 1 1.0 6.0 30 55 + 0.478 4 6 cbr 500 ------- 1 1.0 6.0 30 55 - 0.478 4 6 cbr 500 ------- 1 1.0 6.0 30 55 r 0.478 4 7 cbr 1000 ------- 1 2.0 7.0 22 50 r 0.478 4 6 cbr 500 ------- 1 1.0 6.0 28 51 r 0.478 2 3 cbr 1000 ------- 1 2.0 7.0 35 76 + 0.478 3 4 cbr 1000 ------- 1 2.0 7.0 35 76 v 0.47999999999999998 eval {set sim_annotation {Sliding-Window Traffic starts}} + 0.48 1 3 cbr 500 ------- 1 1.0 6.0 43 81 - 0.48 1 3 cbr 500 ------- 1 1.0 6.0 43 81 + 0.48 2 3 cbr 1000 ------- 1 2.0 7.0 38 82 - 0.48 2 3 cbr 1000 ------- 1 2.0 7.0 38 82 r 0.484 1 3 cbr 500 ------- 1 1.0 6.0 41 77 + 0.484 3 4 cbr 500 ------- 1 1.0 6.0 41 77 d 0.484 3 4 cbr 500 ------- 1 1.0 6.0 41 77 - 0.484 3 4 cbr 500 ------- 1 1.0 6.0 36 67 r 0.486 3 4 cbr 1000 ------- 1 2.0 7.0 25 56 + 0.486 4 7 cbr 1000 ------- 1 2.0 7.0 25 56 - 0.486 4 7 cbr 1000 ------- 1 2.0 7.0 25 56 r 0.488 2 3 cbr 1000 ------- 1 2.0 7.0 36 78 + 0.488 3 4 cbr 1000 ------- 1 2.0 7.0 36 78 - 0.488 3 4 cbr 1000 ------- 1 2.0 7.0 31 68 r 0.49 3 4 cbr 500 ------- 1 1.0 6.0 31 57 + 0.49 4 6 cbr 500 ------- 1 1.0 6.0 31 57 - 0.49 4 6 cbr 500 ------- 1 1.0 6.0 31 57 r 0.49 4 7 cbr 1000 ------- 1 2.0 7.0 23 52 r 0.49 4 6 cbr 500 ------- 1 1.0 6.0 29 53 + 0.49 1 3 cbr 500 ------- 1 1.0 6.0 44 83 - 0.49 1 3 cbr 500 ------- 1 1.0 6.0 44 83 + 0.49 2 3 cbr 1000 ------- 1 2.0 7.0 39 84 - 0.49 2 3 cbr 1000 ------- 1 2.0 7.0 39 84 r 0.494 3 4 cbr 500 ------- 1 1.0 6.0 32 59 + 0.494 4 6 cbr 500 ------- 1 1.0 6.0 32 59 r 0.494 1 3 cbr 500 ------- 1 1.0 6.0 42 79 + 0.494 3 4 cbr 500 ------- 1 1.0 6.0 42 79 - 0.494 4 6 cbr 500 ------- 1 1.0 6.0 32 59 - 0.496 3 4 cbr 500 ------- 1 1.0 6.0 37 69 r 0.498 2 3 cbr 1000 ------- 1 2.0 7.0 37 80 + 0.498 3 4 cbr 1000 ------- 1 2.0 7.0 37 80 + 0.5 0 3 tcp 1000 ------- 0 0.0 5.0 0 85 - 0.5 0 3 tcp 1000 ------- 0 0.0 5.0 0 85 + 0.5 0 3 tcp 1000 ------- 0 0.0 5.0 1 86 + 0.5 0 3 tcp 1000 ------- 0 0.0 5.0 2 87 + 0.5 0 3 tcp 1000 ------- 0 0.0 5.0 3 88 + 0.5 0 3 tcp 1000 ------- 0 0.0 5.0 4 89 + 0.5 0 3 tcp 1000 ------- 0 0.0 5.0 5 90 + 0.5 0 3 tcp 1000 ------- 0 0.0 5.0 6 91 + 0.5 0 3 tcp 1000 ------- 0 0.0 5.0 7 92 + 0.5 1 3 cbr 500 ------- 1 1.0 6.0 45 93 - 0.5 1 3 cbr 500 ------- 1 1.0 6.0 45 93 + 0.5 2 3 cbr 1000 ------- 1 2.0 7.0 40 94 - 0.5 2 3 cbr 1000 ------- 1 2.0 7.0 40 94 - 0.5 3 4 cbr 1000 ------- 1 2.0 7.0 32 70 - 0.5016 0 3 tcp 1000 ------- 0 0.0 5.0 1 86 r 0.502 4 7 cbr 1000 ------- 1 2.0 7.0 24 54 r 0.502 4 6 cbr 500 ------- 1 1.0 6.0 30 55 r 0.502 3 4 cbr 1000 ------- 1 2.0 7.0 27 60 + 0.502 4 7 cbr 1000 ------- 1 2.0 7.0 27 60 - 0.502 4 7 cbr 1000 ------- 1 2.0 7.0 27 60 - 0.5032 0 3 tcp 1000 ------- 0 0.0 5.0 2 87 r 0.504 1 3 cbr 500 ------- 1 1.0 6.0 43 81 + 0.504 3 4 cbr 500 ------- 1 1.0 6.0 43 81 - 0.5048 0 3 tcp 1000 ------- 0 0.0 5.0 3 88 r 0.506 3 4 cbr 500 ------- 1 1.0 6.0 33 61 + 0.506 4 6 cbr 500 ------- 1 1.0 6.0 33 61 - 0.506 4 6 cbr 500 ------- 1 1.0 6.0 33 61 - 0.5064 0 3 tcp 1000 ------- 0 0.0 5.0 4 89 - 0.508 0 3 tcp 1000 ------- 0 0.0 5.0 5 90 r 0.508 2 3 cbr 1000 ------- 1 2.0 7.0 38 82 + 0.508 3 4 cbr 1000 ------- 1 2.0 7.0 38 82 d 0.508 3 4 cbr 1000 ------- 1 2.0 7.0 38 82 - 0.508 3 4 cbr 500 ------- 1 1.0 6.0 38 71 - 0.5096 0 3 tcp 1000 ------- 0 0.0 5.0 6 91 v 0.51000000000000001 eval {set sim_annotation {Send Packet_0 to 7 }} + 0.51 1 3 cbr 500 ------- 1 1.0 6.0 46 95 - 0.51 1 3 cbr 500 ------- 1 1.0 6.0 46 95 - 0.5112 0 3 tcp 1000 ------- 0 0.0 5.0 7 92 - 0.512 3 4 cbr 1000 ------- 1 2.0 7.0 33 72 r 0.514 4 7 cbr 1000 ------- 1 2.0 7.0 25 56 r 0.514 4 6 cbr 500 ------- 1 1.0 6.0 31 57 r 0.514 1 3 cbr 500 ------- 1 1.0 6.0 44 83 + 0.514 3 4 cbr 500 ------- 1 1.0 6.0 44 83 r 0.514 3 4 cbr 1000 ------- 1 2.0 7.0 28 62 + 0.514 4 7 cbr 1000 ------- 1 2.0 7.0 28 62 - 0.514 4 7 cbr 1000 ------- 1 2.0 7.0 28 62 r 0.518 4 6 cbr 500 ------- 1 1.0 6.0 32 59 r 0.518 3 4 cbr 500 ------- 1 1.0 6.0 34 63 + 0.518 4 6 cbr 500 ------- 1 1.0 6.0 34 63 - 0.518 4 6 cbr 500 ------- 1 1.0 6.0 34 63 r 0.518 2 3 cbr 1000 ------- 1 2.0 7.0 39 84 + 0.518 3 4 cbr 1000 ------- 1 2.0 7.0 39 84 + 0.52 1 3 cbr 500 ------- 1 1.0 6.0 47 96 - 0.52 1 3 cbr 500 ------- 1 1.0 6.0 47 96 + 0.52 2 3 cbr 1000 ------- 1 2.0 7.0 41 97 - 0.52 2 3 cbr 1000 ------- 1 2.0 7.0 41 97 - 0.52 3 4 cbr 1000 ------- 1 2.0 7.0 34 74 r 0.5216 0 3 tcp 1000 ------- 0 0.0 5.0 0 85 + 0.5216 3 4 tcp 1000 ------- 0 0.0 5.0 0 85 r 0.5232 0 3 tcp 1000 ------- 0 0.0 5.0 1 86 + 0.5232 3 4 tcp 1000 ------- 0 0.0 5.0 1 86 d 0.5232 3 4 tcp 1000 ------- 0 0.0 5.0 1 86 r 0.524 1 3 cbr 500 ------- 1 1.0 6.0 45 93 + 0.524 3 4 cbr 500 ------- 1 1.0 6.0 45 93 d 0.524 3 4 cbr 500 ------- 1 1.0 6.0 45 93 r 0.5248 0 3 tcp 1000 ------- 0 0.0 5.0 2 87 + 0.5248 3 4 tcp 1000 ------- 0 0.0 5.0 2 87 d 0.5248 3 4 tcp 1000 ------- 0 0.0 5.0 2 87 r 0.526 3 4 cbr 1000 ------- 1 2.0 7.0 29 64 + 0.526 4 7 cbr 1000 ------- 1 2.0 7.0 29 64 - 0.526 4 7 cbr 1000 ------- 1 2.0 7.0 29 64 r 0.5264 0 3 tcp 1000 ------- 0 0.0 5.0 3 88 + 0.5264 3 4 tcp 1000 ------- 0 0.0 5.0 3 88 d 0.5264 3 4 tcp 1000 ------- 0 0.0 5.0 3 88 r 0.528 0 3 tcp 1000 ------- 0 0.0 5.0 4 89 + 0.528 3 4 tcp 1000 ------- 0 0.0 5.0 4 89 d 0.528 3 4 tcp 1000 ------- 0 0.0 5.0 4 89 r 0.528 2 3 cbr 1000 ------- 1 2.0 7.0 40 94 + 0.528 3 4 cbr 1000 ------- 1 2.0 7.0 40 94 d 0.528 3 4 cbr 1000 ------- 1 2.0 7.0 40 94 - 0.528 3 4 cbr 500 ------- 1 1.0 6.0 40 75 r 0.5296 0 3 tcp 1000 ------- 0 0.0 5.0 5 90 + 0.5296 3 4 tcp 1000 ------- 0 0.0 5.0 5 90 + 0.53 1 3 cbr 500 ------- 1 1.0 6.0 48 98 - 0.53 1 3 cbr 500 ------- 1 1.0 6.0 48 98 r 0.53 4 7 cbr 1000 ------- 1 2.0 7.0 27 60 r 0.53 4 6 cbr 500 ------- 1 1.0 6.0 33 61 r 0.5312 0 3 tcp 1000 ------- 0 0.0 5.0 6 91 + 0.5312 3 4 tcp 1000 ------- 0 0.0 5.0 6 91 d 0.5312 3 4 tcp 1000 ------- 0 0.0 5.0 6 91 - 0.532 3 4 cbr 1000 ------- 1 2.0 7.0 35 76 r 0.5328 0 3 tcp 1000 ------- 0 0.0 5.0 7 92 + 0.5328 3 4 tcp 1000 ------- 0 0.0 5.0 7 92 r 0.534 1 3 cbr 500 ------- 1 1.0 6.0 46 95 + 0.534 3 4 cbr 500 ------- 1 1.0 6.0 46 95 d 0.534 3 4 cbr 500 ------- 1 1.0 6.0 46 95 r 0.534 3 4 cbr 1000 ------- 1 2.0 7.0 30 66 + 0.534 4 7 cbr 1000 ------- 1 2.0 7.0 30 66 - 0.534 4 7 cbr 1000 ------- 1 2.0 7.0 30 66 r 0.538 3 4 cbr 500 ------- 1 1.0 6.0 36 67 + 0.538 4 6 cbr 500 ------- 1 1.0 6.0 36 67 - 0.538 4 6 cbr 500 ------- 1 1.0 6.0 36 67 v 0.54000000000000004 eval {set sim_annotation {Lost Packet (5 of them) }} + 0.54 1 3 cbr 500 ------- 1 1.0 6.0 49 99 - 0.54 1 3 cbr 500 ------- 1 1.0 6.0 49 99 + 0.54 2 3 cbr 1000 ------- 1 2.0 7.0 42 100 - 0.54 2 3 cbr 1000 ------- 1 2.0 7.0 42 100 - 0.54 3 4 cbr 1000 ------- 1 2.0 7.0 36 78 r 0.542 4 7 cbr 1000 ------- 1 2.0 7.0 28 62 r 0.542 4 6 cbr 500 ------- 1 1.0 6.0 34 63 r 0.544 1 3 cbr 500 ------- 1 1.0 6.0 47 96 + 0.544 3 4 cbr 500 ------- 1 1.0 6.0 47 96 r 0.546 3 4 cbr 1000 ------- 1 2.0 7.0 31 68 + 0.546 4 7 cbr 1000 ------- 1 2.0 7.0 31 68 - 0.546 4 7 cbr 1000 ------- 1 2.0 7.0 31 68 r 0.548 2 3 cbr 1000 ------- 1 2.0 7.0 41 97 + 0.548 3 4 cbr 1000 ------- 1 2.0 7.0 41 97 d 0.548 3 4 cbr 1000 ------- 1 2.0 7.0 41 97 - 0.548 3 4 cbr 500 ------- 1 1.0 6.0 42 79 + 0.55 1 3 cbr 500 ------- 1 1.0 6.0 50 101 - 0.55 1 3 cbr 500 ------- 1 1.0 6.0 50 101 r 0.55 3 4 cbr 500 ------- 1 1.0 6.0 37 69 + 0.55 4 6 cbr 500 ------- 1 1.0 6.0 37 69 - 0.55 4 6 cbr 500 ------- 1 1.0 6.0 37 69 - 0.552 3 4 cbr 1000 ------- 1 2.0 7.0 37 80 r 0.554 1 3 cbr 500 ------- 1 1.0 6.0 48 98 + 0.554 3 4 cbr 500 ------- 1 1.0 6.0 48 98 r 0.554 4 7 cbr 1000 ------- 1 2.0 7.0 29 64 r 0.558 3 4 cbr 1000 ------- 1 2.0 7.0 32 70 + 0.558 4 7 cbr 1000 ------- 1 2.0 7.0 32 70 - 0.558 4 7 cbr 1000 ------- 1 2.0 7.0 32 70 + 0.56 1 3 cbr 500 ------- 1 1.0 6.0 51 102 - 0.56 1 3 cbr 500 ------- 1 1.0 6.0 51 102 + 0.56 2 3 cbr 1000 ------- 1 2.0 7.0 43 103 - 0.56 2 3 cbr 1000 ------- 1 2.0 7.0 43 103 - 0.56 3 4 cbr 500 ------- 1 1.0 6.0 43 81 r 0.562 3 4 cbr 500 ------- 1 1.0 6.0 38 71 + 0.562 4 6 cbr 500 ------- 1 1.0 6.0 38 71 - 0.562 4 6 cbr 500 ------- 1 1.0 6.0 38 71 r 0.562 4 7 cbr 1000 ------- 1 2.0 7.0 30 66 r 0.562 4 6 cbr 500 ------- 1 1.0 6.0 36 67 r 0.564 1 3 cbr 500 ------- 1 1.0 6.0 49 99 + 0.564 3 4 cbr 500 ------- 1 1.0 6.0 49 99 - 0.564 3 4 cbr 500 ------- 1 1.0 6.0 44 83 r 0.568 2 3 cbr 1000 ------- 1 2.0 7.0 42 100 + 0.568 3 4 cbr 1000 ------- 1 2.0 7.0 42 100 - 0.568 3 4 cbr 1000 ------- 1 2.0 7.0 39 84 + 0.57 1 3 cbr 500 ------- 1 1.0 6.0 52 104 - 0.57 1 3 cbr 500 ------- 1 1.0 6.0 52 104 r 0.57 3 4 cbr 1000 ------- 1 2.0 7.0 33 72 + 0.57 4 7 cbr 1000 ------- 1 2.0 7.0 33 72 - 0.57 4 7 cbr 1000 ------- 1 2.0 7.0 33 72 r 0.574 1 3 cbr 500 ------- 1 1.0 6.0 50 101 + 0.574 3 4 cbr 500 ------- 1 1.0 6.0 50 101 r 0.574 4 7 cbr 1000 ------- 1 2.0 7.0 31 68 r 0.574 4 6 cbr 500 ------- 1 1.0 6.0 37 69 - 0.576 3 4 tcp 1000 ------- 0 0.0 5.0 0 85 r 0.578 3 4 cbr 1000 ------- 1 2.0 7.0 34 74 + 0.578 4 7 cbr 1000 ------- 1 2.0 7.0 34 74 - 0.578 4 7 cbr 1000 ------- 1 2.0 7.0 34 74 + 0.58 1 3 cbr 500 ------- 1 1.0 6.0 53 105 - 0.58 1 3 cbr 500 ------- 1 1.0 6.0 53 105 + 0.58 2 3 cbr 1000 ------- 1 2.0 7.0 44 106 - 0.58 2 3 cbr 1000 ------- 1 2.0 7.0 44 106 r 0.582 3 4 cbr 500 ------- 1 1.0 6.0 40 75 + 0.582 4 6 cbr 500 ------- 1 1.0 6.0 40 75 - 0.582 4 6 cbr 500 ------- 1 1.0 6.0 40 75 r 0.584 1 3 cbr 500 ------- 1 1.0 6.0 51 102 + 0.584 3 4 cbr 500 ------- 1 1.0 6.0 51 102 - 0.584 3 4 tcp 1000 ------- 0 0.0 5.0 5 90 r 0.586 4 7 cbr 1000 ------- 1 2.0 7.0 32 70 r 0.586 4 6 cbr 500 ------- 1 1.0 6.0 38 71 r 0.588 2 3 cbr 1000 ------- 1 2.0 7.0 43 103 + 0.588 3 4 cbr 1000 ------- 1 2.0 7.0 43 103 + 0.59 1 3 cbr 500 ------- 1 1.0 6.0 54 107 - 0.59 1 3 cbr 500 ------- 1 1.0 6.0 54 107 r 0.59 3 4 cbr 1000 ------- 1 2.0 7.0 35 76 + 0.59 4 7 cbr 1000 ------- 1 2.0 7.0 35 76 - 0.59 4 7 cbr 1000 ------- 1 2.0 7.0 35 76 - 0.592 3 4 tcp 1000 ------- 0 0.0 5.0 7 92 r 0.594 1 3 cbr 500 ------- 1 1.0 6.0 52 104 + 0.594 3 4 cbr 500 ------- 1 1.0 6.0 52 104 r 0.598 3 4 cbr 1000 ------- 1 2.0 7.0 36 78 + 0.598 4 7 cbr 1000 ------- 1 2.0 7.0 36 78 r 0.598 4 7 cbr 1000 ------- 1 2.0 7.0 33 72 - 0.598 4 7 cbr 1000 ------- 1 2.0 7.0 36 78 + 0.6 1 3 cbr 500 ------- 1 1.0 6.0 55 108 - 0.6 1 3 cbr 500 ------- 1 1.0 6.0 55 108 + 0.6 2 3 cbr 1000 ------- 1 2.0 7.0 45 109 - 0.6 2 3 cbr 1000 ------- 1 2.0 7.0 45 109 - 0.6 3 4 cbr 500 ------- 1 1.0 6.0 47 96 r 0.602 3 4 cbr 500 ------- 1 1.0 6.0 42 79 + 0.602 4 6 cbr 500 ------- 1 1.0 6.0 42 79 - 0.602 4 6 cbr 500 ------- 1 1.0 6.0 42 79 r 0.604 1 3 cbr 500 ------- 1 1.0 6.0 53 105 + 0.604 3 4 cbr 500 ------- 1 1.0 6.0 53 105 - 0.604 3 4 cbr 500 ------- 1 1.0 6.0 48 98 r 0.606 4 7 cbr 1000 ------- 1 2.0 7.0 34 74 r 0.606 4 6 cbr 500 ------- 1 1.0 6.0 40 75 r 0.608 2 3 cbr 1000 ------- 1 2.0 7.0 44 106 + 0.608 3 4 cbr 1000 ------- 1 2.0 7.0 44 106 - 0.608 3 4 cbr 500 ------- 1 1.0 6.0 49 99 + 0.61 1 3 cbr 500 ------- 1 1.0 6.0 56 110 - 0.61 1 3 cbr 500 ------- 1 1.0 6.0 56 110 r 0.61 3 4 cbr 1000 ------- 1 2.0 7.0 37 80 + 0.61 4 7 cbr 1000 ------- 1 2.0 7.0 37 80 - 0.61 4 7 cbr 1000 ------- 1 2.0 7.0 37 80 - 0.612 3 4 cbr 1000 ------- 1 2.0 7.0 42 100 r 0.614 1 3 cbr 500 ------- 1 1.0 6.0 54 107 + 0.614 3 4 cbr 500 ------- 1 1.0 6.0 54 107 r 0.614 3 4 cbr 500 ------- 1 1.0 6.0 43 81 + 0.614 4 6 cbr 500 ------- 1 1.0 6.0 43 81 - 0.614 4 6 cbr 500 ------- 1 1.0 6.0 43 81 r 0.618 3 4 cbr 500 ------- 1 1.0 6.0 44 83 + 0.618 4 6 cbr 500 ------- 1 1.0 6.0 44 83 r 0.618 4 7 cbr 1000 ------- 1 2.0 7.0 35 76 - 0.618 4 6 cbr 500 ------- 1 1.0 6.0 44 83 + 0.62 1 3 cbr 500 ------- 1 1.0 6.0 57 111 - 0.62 1 3 cbr 500 ------- 1 1.0 6.0 57 111 + 0.62 2 3 cbr 1000 ------- 1 2.0 7.0 46 112 - 0.62 2 3 cbr 1000 ------- 1 2.0 7.0 46 112 - 0.62 3 4 cbr 500 ------- 1 1.0 6.0 50 101 r 0.624 1 3 cbr 500 ------- 1 1.0 6.0 55 108 + 0.624 3 4 cbr 500 ------- 1 1.0 6.0 55 108 - 0.624 3 4 cbr 500 ------- 1 1.0 6.0 51 102 r 0.626 3 4 cbr 1000 ------- 1 2.0 7.0 39 84 + 0.626 4 7 cbr 1000 ------- 1 2.0 7.0 39 84 - 0.626 4 7 cbr 1000 ------- 1 2.0 7.0 39 84 r 0.626 4 7 cbr 1000 ------- 1 2.0 7.0 36 78 r 0.626 4 6 cbr 500 ------- 1 1.0 6.0 42 79 r 0.628 2 3 cbr 1000 ------- 1 2.0 7.0 45 109 + 0.628 3 4 cbr 1000 ------- 1 2.0 7.0 45 109 - 0.628 3 4 cbr 1000 ------- 1 2.0 7.0 43 103 + 0.63 1 3 cbr 500 ------- 1 1.0 6.0 58 113 - 0.63 1 3 cbr 500 ------- 1 1.0 6.0 58 113 r 0.634 1 3 cbr 500 ------- 1 1.0 6.0 56 110 + 0.634 3 4 cbr 500 ------- 1 1.0 6.0 56 110 r 0.634 3 4 tcp 1000 ------- 0 0.0 5.0 0 85 + 0.634 4 5 tcp 1000 ------- 0 0.0 5.0 0 85 - 0.634 4 5 tcp 1000 ------- 0 0.0 5.0 0 85 - 0.636 3 4 cbr 500 ------- 1 1.0 6.0 52 104 r 0.638 4 7 cbr 1000 ------- 1 2.0 7.0 37 80 r 0.638 4 6 cbr 500 ------- 1 1.0 6.0 43 81 + 0.64 1 3 cbr 500 ------- 1 1.0 6.0 59 114 - 0.64 1 3 cbr 500 ------- 1 1.0 6.0 59 114 + 0.64 2 3 cbr 1000 ------- 1 2.0 7.0 47 115 - 0.64 2 3 cbr 1000 ------- 1 2.0 7.0 47 115 - 0.64 3 4 cbr 500 ------- 1 1.0 6.0 53 105 r 0.642 3 4 tcp 1000 ------- 0 0.0 5.0 5 90 + 0.642 4 5 tcp 1000 ------- 0 0.0 5.0 5 90 - 0.642 4 5 tcp 1000 ------- 0 0.0 5.0 5 90 r 0.642 4 6 cbr 500 ------- 1 1.0 6.0 44 83 r 0.644 1 3 cbr 500 ------- 1 1.0 6.0 57 111 + 0.644 3 4 cbr 500 ------- 1 1.0 6.0 57 111 - 0.644 3 4 cbr 1000 ------- 1 2.0 7.0 44 106 r 0.648 2 3 cbr 1000 ------- 1 2.0 7.0 46 112 + 0.648 3 4 cbr 1000 ------- 1 2.0 7.0 46 112 + 0.65 1 3 cbr 500 ------- 1 1.0 6.0 60 116 - 0.65 1 3 cbr 500 ------- 1 1.0 6.0 60 116 r 0.65 3 4 tcp 1000 ------- 0 0.0 5.0 7 92 + 0.65 4 5 tcp 1000 ------- 0 0.0 5.0 7 92 - 0.65 4 5 tcp 1000 ------- 0 0.0 5.0 7 92 - 0.652 3 4 cbr 500 ------- 1 1.0 6.0 54 107 r 0.654 1 3 cbr 500 ------- 1 1.0 6.0 58 113 + 0.654 3 4 cbr 500 ------- 1 1.0 6.0 58 113 r 0.654 3 4 cbr 500 ------- 1 1.0 6.0 47 96 + 0.654 4 6 cbr 500 ------- 1 1.0 6.0 47 96 - 0.654 4 6 cbr 500 ------- 1 1.0 6.0 47 96 r 0.654 4 7 cbr 1000 ------- 1 2.0 7.0 39 84 r 0.6556 4 5 tcp 1000 ------- 0 0.0 5.0 0 85 + 0.6556 5 4 ack 40 ------- 0 5.0 0.0 0 117 - 0.6556 5 4 ack 40 ------- 0 5.0 0.0 0 117 - 0.656 3 4 cbr 500 ------- 1 1.0 6.0 55 108 r 0.658 3 4 cbr 500 ------- 1 1.0 6.0 48 98 + 0.658 4 6 cbr 500 ------- 1 1.0 6.0 48 98 - 0.658 4 6 cbr 500 ------- 1 1.0 6.0 48 98 v 0.66000000000000003 eval {set sim_annotation {3 Ack_0s}} + 0.66 1 3 cbr 500 ------- 1 1.0 6.0 61 118 - 0.66 1 3 cbr 500 ------- 1 1.0 6.0 61 118 + 0.66 2 3 cbr 1000 ------- 1 2.0 7.0 48 119 - 0.66 2 3 cbr 1000 ------- 1 2.0 7.0 48 119 - 0.66 3 4 cbr 1000 ------- 1 2.0 7.0 45 109 r 0.662 3 4 cbr 500 ------- 1 1.0 6.0 49 99 + 0.662 4 6 cbr 500 ------- 1 1.0 6.0 49 99 - 0.662 4 6 cbr 500 ------- 1 1.0 6.0 49 99 r 0.6636 4 5 tcp 1000 ------- 0 0.0 5.0 5 90 + 0.6636 5 4 ack 40 ------- 0 5.0 0.0 0 120 - 0.6636 5 4 ack 40 ------- 0 5.0 0.0 0 120 r 0.664 1 3 cbr 500 ------- 1 1.0 6.0 59 114 + 0.664 3 4 cbr 500 ------- 1 1.0 6.0 59 114 r 0.668 2 3 cbr 1000 ------- 1 2.0 7.0 47 115 + 0.668 3 4 cbr 1000 ------- 1 2.0 7.0 47 115 - 0.668 3 4 cbr 500 ------- 1 1.0 6.0 56 110 + 0.67 1 3 cbr 500 ------- 1 1.0 6.0 62 121 - 0.67 1 3 cbr 500 ------- 1 1.0 6.0 62 121 r 0.67 3 4 cbr 1000 ------- 1 2.0 7.0 42 100 + 0.67 4 7 cbr 1000 ------- 1 2.0 7.0 42 100 - 0.67 4 7 cbr 1000 ------- 1 2.0 7.0 42 100 r 0.6716 4 5 tcp 1000 ------- 0 0.0 5.0 7 92 + 0.6716 5 4 ack 40 ------- 0 5.0 0.0 0 122 - 0.6716 5 4 ack 40 ------- 0 5.0 0.0 0 122 - 0.672 3 4 cbr 500 ------- 1 1.0 6.0 57 111 r 0.674 1 3 cbr 500 ------- 1 1.0 6.0 60 116 + 0.674 3 4 cbr 500 ------- 1 1.0 6.0 60 116 r 0.674 3 4 cbr 500 ------- 1 1.0 6.0 50 101 + 0.674 4 6 cbr 500 ------- 1 1.0 6.0 50 101 - 0.674 4 6 cbr 500 ------- 1 1.0 6.0 50 101 r 0.675664 5 4 ack 40 ------- 0 5.0 0.0 0 117 + 0.675664 4 3 ack 40 ------- 0 5.0 0.0 0 117 - 0.675664 4 3 ack 40 ------- 0 5.0 0.0 0 117 - 0.676 3 4 cbr 1000 ------- 1 2.0 7.0 46 112 r 0.678 3 4 cbr 500 ------- 1 1.0 6.0 51 102 + 0.678 4 6 cbr 500 ------- 1 1.0 6.0 51 102 r 0.678 4 6 cbr 500 ------- 1 1.0 6.0 47 96 - 0.678 4 6 cbr 500 ------- 1 1.0 6.0 51 102 + 0.68 1 3 cbr 500 ------- 1 1.0 6.0 63 123 - 0.68 1 3 cbr 500 ------- 1 1.0 6.0 63 123 + 0.68 2 3 cbr 1000 ------- 1 2.0 7.0 49 124 - 0.68 2 3 cbr 1000 ------- 1 2.0 7.0 49 124 r 0.682 4 6 cbr 500 ------- 1 1.0 6.0 48 98 r 0.683664 5 4 ack 40 ------- 0 5.0 0.0 0 120 + 0.683664 4 3 ack 40 ------- 0 5.0 0.0 0 120 - 0.683664 4 3 ack 40 ------- 0 5.0 0.0 0 120 r 0.684 1 3 cbr 500 ------- 1 1.0 6.0 61 118 + 0.684 3 4 cbr 500 ------- 1 1.0 6.0 61 118 - 0.684 3 4 cbr 500 ------- 1 1.0 6.0 58 113 r 0.686 3 4 cbr 1000 ------- 1 2.0 7.0 43 103 + 0.686 4 7 cbr 1000 ------- 1 2.0 7.0 43 103 - 0.686 4 7 cbr 1000 ------- 1 2.0 7.0 43 103 r 0.686 4 6 cbr 500 ------- 1 1.0 6.0 49 99 r 0.688 2 3 cbr 1000 ------- 1 2.0 7.0 48 119 + 0.688 3 4 cbr 1000 ------- 1 2.0 7.0 48 119 - 0.688 3 4 cbr 500 ------- 1 1.0 6.0 59 114 + 0.69 1 3 cbr 500 ------- 1 1.0 6.0 64 125 - 0.69 1 3 cbr 500 ------- 1 1.0 6.0 64 125 r 0.69 3 4 cbr 500 ------- 1 1.0 6.0 52 104 + 0.69 4 6 cbr 500 ------- 1 1.0 6.0 52 104 - 0.69 4 6 cbr 500 ------- 1 1.0 6.0 52 104 r 0.691664 5 4 ack 40 ------- 0 5.0 0.0 0 122 + 0.691664 4 3 ack 40 ------- 0 5.0 0.0 0 122 - 0.691664 4 3 ack 40 ------- 0 5.0 0.0 0 122 - 0.692 3 4 cbr 1000 ------- 1 2.0 7.0 47 115 r 0.694 1 3 cbr 500 ------- 1 1.0 6.0 62 121 + 0.694 3 4 cbr 500 ------- 1 1.0 6.0 62 121 r 0.694 3 4 cbr 500 ------- 1 1.0 6.0 53 105 + 0.694 4 6 cbr 500 ------- 1 1.0 6.0 53 105 - 0.694 4 6 cbr 500 ------- 1 1.0 6.0 53 105 r 0.698 4 7 cbr 1000 ------- 1 2.0 7.0 42 100 r 0.698 4 6 cbr 500 ------- 1 1.0 6.0 50 101 + 0.7 1 3 cbr 500 ------- 1 1.0 6.0 65 126 - 0.7 1 3 cbr 500 ------- 1 1.0 6.0 65 126 + 0.7 2 3 cbr 1000 ------- 1 2.0 7.0 50 127 - 0.7 2 3 cbr 1000 ------- 1 2.0 7.0 50 127 - 0.7 3 4 cbr 500 ------- 1 1.0 6.0 60 116 r 0.702 3 4 cbr 1000 ------- 1 2.0 7.0 44 106 + 0.702 4 7 cbr 1000 ------- 1 2.0 7.0 44 106 - 0.702 4 7 cbr 1000 ------- 1 2.0 7.0 44 106 r 0.702 4 6 cbr 500 ------- 1 1.0 6.0 51 102 r 0.704 1 3 cbr 500 ------- 1 1.0 6.0 63 123 + 0.704 3 4 cbr 500 ------- 1 1.0 6.0 63 123 - 0.704 3 4 cbr 500 ------- 1 1.0 6.0 61 118 r 0.706 3 4 cbr 500 ------- 1 1.0 6.0 54 107 + 0.706 4 6 cbr 500 ------- 1 1.0 6.0 54 107 - 0.706 4 6 cbr 500 ------- 1 1.0 6.0 54 107 r 0.708 2 3 cbr 1000 ------- 1 2.0 7.0 49 124 + 0.708 3 4 cbr 1000 ------- 1 2.0 7.0 49 124 - 0.708 3 4 cbr 1000 ------- 1 2.0 7.0 48 119 + 0.71 1 3 cbr 500 ------- 1 1.0 6.0 66 128 - 0.71 1 3 cbr 500 ------- 1 1.0 6.0 66 128 r 0.71 3 4 cbr 500 ------- 1 1.0 6.0 55 108 + 0.71 4 6 cbr 500 ------- 1 1.0 6.0 55 108 - 0.71 4 6 cbr 500 ------- 1 1.0 6.0 55 108 r 0.714 1 3 cbr 500 ------- 1 1.0 6.0 64 125 + 0.714 3 4 cbr 500 ------- 1 1.0 6.0 64 125 r 0.714 4 7 cbr 1000 ------- 1 2.0 7.0 43 103 r 0.714 4 6 cbr 500 ------- 1 1.0 6.0 52 104 - 0.716 3 4 cbr 500 ------- 1 1.0 6.0 62 121 r 0.718 3 4 cbr 1000 ------- 1 2.0 7.0 45 109 + 0.718 4 7 cbr 1000 ------- 1 2.0 7.0 45 109 - 0.718 4 7 cbr 1000 ------- 1 2.0 7.0 45 109 r 0.718 4 6 cbr 500 ------- 1 1.0 6.0 53 105 + 0.72 1 3 cbr 500 ------- 1 1.0 6.0 67 129 - 0.72 1 3 cbr 500 ------- 1 1.0 6.0 67 129 + 0.72 2 3 cbr 1000 ------- 1 2.0 7.0 51 130 - 0.72 2 3 cbr 1000 ------- 1 2.0 7.0 51 130 - 0.72 3 4 cbr 500 ------- 1 1.0 6.0 63 123 r 0.722 3 4 cbr 500 ------- 1 1.0 6.0 56 110 + 0.722 4 6 cbr 500 ------- 1 1.0 6.0 56 110 - 0.722 4 6 cbr 500 ------- 1 1.0 6.0 56 110 r 0.724 1 3 cbr 500 ------- 1 1.0 6.0 65 126 + 0.724 3 4 cbr 500 ------- 1 1.0 6.0 65 126 - 0.724 3 4 cbr 1000 ------- 1 2.0 7.0 49 124 r 0.725984 4 3 ack 40 ------- 0 5.0 0.0 0 117 + 0.725984 3 0 ack 40 ------- 0 5.0 0.0 0 117 - 0.725984 3 0 ack 40 ------- 0 5.0 0.0 0 117 r 0.726 3 4 cbr 500 ------- 1 1.0 6.0 57 111 + 0.726 4 6 cbr 500 ------- 1 1.0 6.0 57 111 - 0.726 4 6 cbr 500 ------- 1 1.0 6.0 57 111 r 0.728 2 3 cbr 1000 ------- 1 2.0 7.0 50 127 + 0.728 3 4 cbr 1000 ------- 1 2.0 7.0 50 127 + 0.73 1 3 cbr 500 ------- 1 1.0 6.0 68 131 - 0.73 1 3 cbr 500 ------- 1 1.0 6.0 68 131 r 0.73 4 7 cbr 1000 ------- 1 2.0 7.0 44 106 r 0.73 4 6 cbr 500 ------- 1 1.0 6.0 54 107 - 0.732 3 4 cbr 500 ------- 1 1.0 6.0 64 125 r 0.733984 4 3 ack 40 ------- 0 5.0 0.0 0 120 + 0.733984 3 0 ack 40 ------- 0 5.0 0.0 0 120 - 0.733984 3 0 ack 40 ------- 0 5.0 0.0 0 120 r 0.734 1 3 cbr 500 ------- 1 1.0 6.0 66 128 + 0.734 3 4 cbr 500 ------- 1 1.0 6.0 66 128 r 0.734 3 4 cbr 1000 ------- 1 2.0 7.0 46 112 + 0.734 4 7 cbr 1000 ------- 1 2.0 7.0 46 112 - 0.734 4 7 cbr 1000 ------- 1 2.0 7.0 46 112 r 0.734 4 6 cbr 500 ------- 1 1.0 6.0 55 108 - 0.736 3 4 cbr 500 ------- 1 1.0 6.0 65 126 r 0.738 3 4 cbr 500 ------- 1 1.0 6.0 58 113 + 0.738 4 6 cbr 500 ------- 1 1.0 6.0 58 113 - 0.738 4 6 cbr 500 ------- 1 1.0 6.0 58 113 + 0.74 1 3 cbr 500 ------- 1 1.0 6.0 69 132 - 0.74 1 3 cbr 500 ------- 1 1.0 6.0 69 132 + 0.74 2 3 cbr 1000 ------- 1 2.0 7.0 52 133 - 0.74 2 3 cbr 1000 ------- 1 2.0 7.0 52 133 - 0.74 3 4 cbr 1000 ------- 1 2.0 7.0 50 127 r 0.741984 4 3 ack 40 ------- 0 5.0 0.0 0 122 + 0.741984 3 0 ack 40 ------- 0 5.0 0.0 0 122 - 0.741984 3 0 ack 40 ------- 0 5.0 0.0 0 122 r 0.742 3 4 cbr 500 ------- 1 1.0 6.0 59 114 + 0.742 4 6 cbr 500 ------- 1 1.0 6.0 59 114 - 0.742 4 6 cbr 500 ------- 1 1.0 6.0 59 114 r 0.744 1 3 cbr 500 ------- 1 1.0 6.0 67 129 + 0.744 3 4 cbr 500 ------- 1 1.0 6.0 67 129 r 0.746 4 7 cbr 1000 ------- 1 2.0 7.0 45 109 r 0.746 4 6 cbr 500 ------- 1 1.0 6.0 56 110 r 0.746048 3 0 ack 40 ------- 0 5.0 0.0 0 117 + 0.746048 0 3 tcp 1000 ------- 0 0.0 5.0 8 134 - 0.746048 0 3 tcp 1000 ------- 0 0.0 5.0 8 134 r 0.748 2 3 cbr 1000 ------- 1 2.0 7.0 51 130 + 0.748 3 4 cbr 1000 ------- 1 2.0 7.0 51 130 - 0.748 3 4 cbr 500 ------- 1 1.0 6.0 66 128 v 0.75 eval {set sim_annotation {Send Packet_8}} + 0.75 1 3 cbr 500 ------- 1 1.0 6.0 70 135 - 0.75 1 3 cbr 500 ------- 1 1.0 6.0 70 135 r 0.75 3 4 cbr 1000 ------- 1 2.0 7.0 47 115 + 0.75 4 7 cbr 1000 ------- 1 2.0 7.0 47 115 - 0.75 4 7 cbr 1000 ------- 1 2.0 7.0 47 115 r 0.75 4 6 cbr 500 ------- 1 1.0 6.0 57 111 - 0.752 3 4 cbr 500 ------- 1 1.0 6.0 67 129 r 0.754 1 3 cbr 500 ------- 1 1.0 6.0 68 131 + 0.754 3 4 cbr 500 ------- 1 1.0 6.0 68 131 r 0.754 3 4 cbr 500 ------- 1 1.0 6.0 60 116 + 0.754 4 6 cbr 500 ------- 1 1.0 6.0 60 116 - 0.754 4 6 cbr 500 ------- 1 1.0 6.0 60 116 r 0.754048 3 0 ack 40 ------- 0 5.0 0.0 0 120 - 0.756 3 4 cbr 1000 ------- 1 2.0 7.0 51 130 r 0.758 3 4 cbr 500 ------- 1 1.0 6.0 61 118 + 0.758 4 6 cbr 500 ------- 1 1.0 6.0 61 118 - 0.758 4 6 cbr 500 ------- 1 1.0 6.0 61 118 + 0.76 1 3 cbr 500 ------- 1 1.0 6.0 71 136 - 0.76 1 3 cbr 500 ------- 1 1.0 6.0 71 136 + 0.76 2 3 cbr 1000 ------- 1 2.0 7.0 53 137 - 0.76 2 3 cbr 1000 ------- 1 2.0 7.0 53 137 r 0.762 4 7 cbr 1000 ------- 1 2.0 7.0 46 112 r 0.762 4 6 cbr 500 ------- 1 1.0 6.0 58 113 r 0.762048 3 0 ack 40 ------- 0 5.0 0.0 0 122 r 0.764 1 3 cbr 500 ------- 1 1.0 6.0 69 132 + 0.764 3 4 cbr 500 ------- 1 1.0 6.0 69 132 - 0.764 3 4 cbr 500 ------- 1 1.0 6.0 68 131 r 0.766 3 4 cbr 1000 ------- 1 2.0 7.0 48 119 + 0.766 4 7 cbr 1000 ------- 1 2.0 7.0 48 119 - 0.766 4 7 cbr 1000 ------- 1 2.0 7.0 48 119 r 0.766 4 6 cbr 500 ------- 1 1.0 6.0 59 114 r 0.767648 0 3 tcp 1000 ------- 0 0.0 5.0 8 134 + 0.767648 3 4 tcp 1000 ------- 0 0.0 5.0 8 134 r 0.768 2 3 cbr 1000 ------- 1 2.0 7.0 52 133 + 0.768 3 4 cbr 1000 ------- 1 2.0 7.0 52 133 - 0.768 3 4 cbr 500 ------- 1 1.0 6.0 69 132 + 0.77 1 3 cbr 500 ------- 1 1.0 6.0 72 138 - 0.77 1 3 cbr 500 ------- 1 1.0 6.0 72 138 r 0.77 3 4 cbr 500 ------- 1 1.0 6.0 62 121 + 0.77 4 6 cbr 500 ------- 1 1.0 6.0 62 121 - 0.77 4 6 cbr 500 ------- 1 1.0 6.0 62 121 - 0.772 3 4 tcp 1000 ------- 0 0.0 5.0 8 134 r 0.774 1 3 cbr 500 ------- 1 1.0 6.0 70 135 + 0.774 3 4 cbr 500 ------- 1 1.0 6.0 70 135 r 0.774 3 4 cbr 500 ------- 1 1.0 6.0 63 123 + 0.774 4 6 cbr 500 ------- 1 1.0 6.0 63 123 - 0.774 4 6 cbr 500 ------- 1 1.0 6.0 63 123 r 0.778 4 7 cbr 1000 ------- 1 2.0 7.0 47 115 r 0.778 4 6 cbr 500 ------- 1 1.0 6.0 60 116 + 0.78 1 3 cbr 500 ------- 1 1.0 6.0 73 139 - 0.78 1 3 cbr 500 ------- 1 1.0 6.0 73 139 + 0.78 2 3 cbr 1000 ------- 1 2.0 7.0 54 140 - 0.78 2 3 cbr 1000 ------- 1 2.0 7.0 54 140 - 0.78 3 4 cbr 1000 ------- 1 2.0 7.0 52 133 r 0.782 3 4 cbr 1000 ------- 1 2.0 7.0 49 124 + 0.782 4 7 cbr 1000 ------- 1 2.0 7.0 49 124 - 0.782 4 7 cbr 1000 ------- 1 2.0 7.0 49 124 r 0.782 4 6 cbr 500 ------- 1 1.0 6.0 61 118 r 0.784 1 3 cbr 500 ------- 1 1.0 6.0 71 136 + 0.784 3 4 cbr 500 ------- 1 1.0 6.0 71 136 r 0.786 3 4 cbr 500 ------- 1 1.0 6.0 64 125 + 0.786 4 6 cbr 500 ------- 1 1.0 6.0 64 125 - 0.786 4 6 cbr 500 ------- 1 1.0 6.0 64 125 r 0.788 2 3 cbr 1000 ------- 1 2.0 7.0 53 137 + 0.788 3 4 cbr 1000 ------- 1 2.0 7.0 53 137 - 0.788 3 4 cbr 500 ------- 1 1.0 6.0 70 135 + 0.79 1 3 cbr 500 ------- 1 1.0 6.0 74 141 - 0.79 1 3 cbr 500 ------- 1 1.0 6.0 74 141 r 0.79 3 4 cbr 500 ------- 1 1.0 6.0 65 126 + 0.79 4 6 cbr 500 ------- 1 1.0 6.0 65 126 - 0.79 4 6 cbr 500 ------- 1 1.0 6.0 65 126 - 0.792 3 4 cbr 500 ------- 1 1.0 6.0 71 136 r 0.794 1 3 cbr 500 ------- 1 1.0 6.0 72 138 + 0.794 3 4 cbr 500 ------- 1 1.0 6.0 72 138 r 0.794 4 7 cbr 1000 ------- 1 2.0 7.0 48 119 r 0.794 4 6 cbr 500 ------- 1 1.0 6.0 62 121 - 0.796 3 4 cbr 1000 ------- 1 2.0 7.0 53 137 r 0.798 3 4 cbr 1000 ------- 1 2.0 7.0 50 127 + 0.798 4 7 cbr 1000 ------- 1 2.0 7.0 50 127 - 0.798 4 7 cbr 1000 ------- 1 2.0 7.0 50 127 r 0.798 4 6 cbr 500 ------- 1 1.0 6.0 63 123 + 0.8 1 3 cbr 500 ------- 1 1.0 6.0 75 142 - 0.8 1 3 cbr 500 ------- 1 1.0 6.0 75 142 + 0.8 2 3 cbr 1000 ------- 1 2.0 7.0 55 143 - 0.8 2 3 cbr 1000 ------- 1 2.0 7.0 55 143 r 0.802 3 4 cbr 500 ------- 1 1.0 6.0 66 128 + 0.802 4 6 cbr 500 ------- 1 1.0 6.0 66 128 - 0.802 4 6 cbr 500 ------- 1 1.0 6.0 66 128 r 0.804 1 3 cbr 500 ------- 1 1.0 6.0 73 139 + 0.804 3 4 cbr 500 ------- 1 1.0 6.0 73 139 - 0.804 3 4 cbr 500 ------- 1 1.0 6.0 72 138 r 0.806 3 4 cbr 500 ------- 1 1.0 6.0 67 129 + 0.806 4 6 cbr 500 ------- 1 1.0 6.0 67 129 - 0.806 4 6 cbr 500 ------- 1 1.0 6.0 67 129 r 0.808 2 3 cbr 1000 ------- 1 2.0 7.0 54 140 + 0.808 3 4 cbr 1000 ------- 1 2.0 7.0 54 140 - 0.808 3 4 cbr 500 ------- 1 1.0 6.0 73 139 + 0.81 1 3 cbr 500 ------- 1 1.0 6.0 76 144 - 0.81 1 3 cbr 500 ------- 1 1.0 6.0 76 144 r 0.81 4 7 cbr 1000 ------- 1 2.0 7.0 49 124 r 0.81 4 6 cbr 500 ------- 1 1.0 6.0 64 125 - 0.812 3 4 cbr 1000 ------- 1 2.0 7.0 54 140 r 0.814 1 3 cbr 500 ------- 1 1.0 6.0 74 141 + 0.814 3 4 cbr 500 ------- 1 1.0 6.0 74 141 r 0.814 3 4 cbr 1000 ------- 1 2.0 7.0 51 130 + 0.814 4 7 cbr 1000 ------- 1 2.0 7.0 51 130 - 0.814 4 7 cbr 1000 ------- 1 2.0 7.0 51 130 r 0.814 4 6 cbr 500 ------- 1 1.0 6.0 65 126 r 0.818 3 4 cbr 500 ------- 1 1.0 6.0 68 131 + 0.818 4 6 cbr 500 ------- 1 1.0 6.0 68 131 - 0.818 4 6 cbr 500 ------- 1 1.0 6.0 68 131 + 0.82 1 3 cbr 500 ------- 1 1.0 6.0 77 145 - 0.82 1 3 cbr 500 ------- 1 1.0 6.0 77 145 + 0.82 2 3 cbr 1000 ------- 1 2.0 7.0 56 146 - 0.82 2 3 cbr 1000 ------- 1 2.0 7.0 56 146 - 0.82 3 4 cbr 500 ------- 1 1.0 6.0 74 141 r 0.822 3 4 cbr 500 ------- 1 1.0 6.0 69 132 + 0.822 4 6 cbr 500 ------- 1 1.0 6.0 69 132 - 0.822 4 6 cbr 500 ------- 1 1.0 6.0 69 132 r 0.824 1 3 cbr 500 ------- 1 1.0 6.0 75 142 + 0.824 3 4 cbr 500 ------- 1 1.0 6.0 75 142 - 0.824 3 4 cbr 500 ------- 1 1.0 6.0 75 142 r 0.826 4 7 cbr 1000 ------- 1 2.0 7.0 50 127 r 0.826 4 6 cbr 500 ------- 1 1.0 6.0 66 128 r 0.828 2 3 cbr 1000 ------- 1 2.0 7.0 55 143 + 0.828 3 4 cbr 1000 ------- 1 2.0 7.0 55 143 - 0.828 3 4 cbr 1000 ------- 1 2.0 7.0 55 143 + 0.83 1 3 cbr 500 ------- 1 1.0 6.0 78 147 - 0.83 1 3 cbr 500 ------- 1 1.0 6.0 78 147 r 0.83 3 4 tcp 1000 ------- 0 0.0 5.0 8 134 + 0.83 4 5 tcp 1000 ------- 0 0.0 5.0 8 134 - 0.83 4 5 tcp 1000 ------- 0 0.0 5.0 8 134 r 0.83 4 6 cbr 500 ------- 1 1.0 6.0 67 129 r 0.834 1 3 cbr 500 ------- 1 1.0 6.0 76 144 + 0.834 3 4 cbr 500 ------- 1 1.0 6.0 76 144 - 0.836 3 4 cbr 500 ------- 1 1.0 6.0 76 144 r 0.838 3 4 cbr 1000 ------- 1 2.0 7.0 52 133 + 0.838 4 7 cbr 1000 ------- 1 2.0 7.0 52 133 - 0.838 4 7 cbr 1000 ------- 1 2.0 7.0 52 133 + 0.84 1 3 cbr 500 ------- 1 1.0 6.0 79 148 - 0.84 1 3 cbr 500 ------- 1 1.0 6.0 79 148 + 0.84 2 3 cbr 1000 ------- 1 2.0 7.0 57 149 - 0.84 2 3 cbr 1000 ------- 1 2.0 7.0 57 149 r 0.842 3 4 cbr 500 ------- 1 1.0 6.0 70 135 + 0.842 4 6 cbr 500 ------- 1 1.0 6.0 70 135 - 0.842 4 6 cbr 500 ------- 1 1.0 6.0 70 135 r 0.842 4 7 cbr 1000 ------- 1 2.0 7.0 51 130 r 0.842 4 6 cbr 500 ------- 1 1.0 6.0 68 131 r 0.844 1 3 cbr 500 ------- 1 1.0 6.0 77 145 + 0.844 3 4 cbr 500 ------- 1 1.0 6.0 77 145 - 0.844 3 4 cbr 500 ------- 1 1.0 6.0 77 145 r 0.846 3 4 cbr 500 ------- 1 1.0 6.0 71 136 + 0.846 4 6 cbr 500 ------- 1 1.0 6.0 71 136 r 0.846 4 6 cbr 500 ------- 1 1.0 6.0 69 132 - 0.846 4 6 cbr 500 ------- 1 1.0 6.0 71 136 r 0.848 2 3 cbr 1000 ------- 1 2.0 7.0 56 146 + 0.848 3 4 cbr 1000 ------- 1 2.0 7.0 56 146 - 0.848 3 4 cbr 1000 ------- 1 2.0 7.0 56 146 v 0.84999999999999998 eval {set sim_annotation {Ack_0}} + 0.85 1 3 cbr 500 ------- 1 1.0 6.0 80 150 - 0.85 1 3 cbr 500 ------- 1 1.0 6.0 80 150 r 0.8516 4 5 tcp 1000 ------- 0 0.0 5.0 8 134 + 0.8516 5 4 ack 40 ------- 0 5.0 0.0 0 151 - 0.8516 5 4 ack 40 ------- 0 5.0 0.0 0 151 r 0.854 1 3 cbr 500 ------- 1 1.0 6.0 78 147 + 0.854 3 4 cbr 500 ------- 1 1.0 6.0 78 147 r 0.854 3 4 cbr 1000 ------- 1 2.0 7.0 53 137 + 0.854 4 7 cbr 1000 ------- 1 2.0 7.0 53 137 - 0.854 4 7 cbr 1000 ------- 1 2.0 7.0 53 137 - 0.856 3 4 cbr 500 ------- 1 1.0 6.0 78 147 r 0.858 3 4 cbr 500 ------- 1 1.0 6.0 72 138 + 0.858 4 6 cbr 500 ------- 1 1.0 6.0 72 138 - 0.858 4 6 cbr 500 ------- 1 1.0 6.0 72 138 + 0.86 1 3 cbr 500 ------- 1 1.0 6.0 81 152 - 0.86 1 3 cbr 500 ------- 1 1.0 6.0 81 152 + 0.86 2 3 cbr 1000 ------- 1 2.0 7.0 58 153 - 0.86 2 3 cbr 1000 ------- 1 2.0 7.0 58 153 r 0.862 3 4 cbr 500 ------- 1 1.0 6.0 73 139 + 0.862 4 6 cbr 500 ------- 1 1.0 6.0 73 139 - 0.862 4 6 cbr 500 ------- 1 1.0 6.0 73 139 r 0.864 1 3 cbr 500 ------- 1 1.0 6.0 79 148 + 0.864 3 4 cbr 500 ------- 1 1.0 6.0 79 148 - 0.864 3 4 cbr 500 ------- 1 1.0 6.0 79 148 r 0.866 4 7 cbr 1000 ------- 1 2.0 7.0 52 133 r 0.866 4 6 cbr 500 ------- 1 1.0 6.0 70 135 r 0.868 2 3 cbr 1000 ------- 1 2.0 7.0 57 149 + 0.868 3 4 cbr 1000 ------- 1 2.0 7.0 57 149 - 0.868 3 4 cbr 1000 ------- 1 2.0 7.0 57 149 + 0.87 1 3 cbr 500 ------- 1 1.0 6.0 82 154 - 0.87 1 3 cbr 500 ------- 1 1.0 6.0 82 154 r 0.87 3 4 cbr 1000 ------- 1 2.0 7.0 54 140 + 0.87 4 7 cbr 1000 ------- 1 2.0 7.0 54 140 - 0.87 4 7 cbr 1000 ------- 1 2.0 7.0 54 140 r 0.87 4 6 cbr 500 ------- 1 1.0 6.0 71 136 r 0.871664 5 4 ack 40 ------- 0 5.0 0.0 0 151 + 0.871664 4 3 ack 40 ------- 0 5.0 0.0 0 151 - 0.871664 4 3 ack 40 ------- 0 5.0 0.0 0 151 r 0.874 1 3 cbr 500 ------- 1 1.0 6.0 80 150 + 0.874 3 4 cbr 500 ------- 1 1.0 6.0 80 150 r 0.874 3 4 cbr 500 ------- 1 1.0 6.0 74 141 + 0.874 4 6 cbr 500 ------- 1 1.0 6.0 74 141 - 0.874 4 6 cbr 500 ------- 1 1.0 6.0 74 141 - 0.876 3 4 cbr 500 ------- 1 1.0 6.0 80 150 r 0.878 3 4 cbr 500 ------- 1 1.0 6.0 75 142 + 0.878 4 6 cbr 500 ------- 1 1.0 6.0 75 142 - 0.878 4 6 cbr 500 ------- 1 1.0 6.0 75 142 + 0.88 1 3 cbr 500 ------- 1 1.0 6.0 83 155 - 0.88 1 3 cbr 500 ------- 1 1.0 6.0 83 155 + 0.88 2 3 cbr 1000 ------- 1 2.0 7.0 59 156 - 0.88 2 3 cbr 1000 ------- 1 2.0 7.0 59 156 r 0.882 4 7 cbr 1000 ------- 1 2.0 7.0 53 137 r 0.882 4 6 cbr 500 ------- 1 1.0 6.0 72 138 r 0.884 1 3 cbr 500 ------- 1 1.0 6.0 81 152 + 0.884 3 4 cbr 500 ------- 1 1.0 6.0 81 152 - 0.884 3 4 cbr 500 ------- 1 1.0 6.0 81 152 r 0.886 3 4 cbr 1000 ------- 1 2.0 7.0 55 143 + 0.886 4 7 cbr 1000 ------- 1 2.0 7.0 55 143 - 0.886 4 7 cbr 1000 ------- 1 2.0 7.0 55 143 r 0.886 4 6 cbr 500 ------- 1 1.0 6.0 73 139 r 0.888 2 3 cbr 1000 ------- 1 2.0 7.0 58 153 + 0.888 3 4 cbr 1000 ------- 1 2.0 7.0 58 153 - 0.888 3 4 cbr 1000 ------- 1 2.0 7.0 58 153 + 0.89 1 3 cbr 500 ------- 1 1.0 6.0 84 157 - 0.89 1 3 cbr 500 ------- 1 1.0 6.0 84 157 r 0.89 3 4 cbr 500 ------- 1 1.0 6.0 76 144 + 0.89 4 6 cbr 500 ------- 1 1.0 6.0 76 144 - 0.89 4 6 cbr 500 ------- 1 1.0 6.0 76 144 r 0.894 1 3 cbr 500 ------- 1 1.0 6.0 82 154 + 0.894 3 4 cbr 500 ------- 1 1.0 6.0 82 154 - 0.896 3 4 cbr 500 ------- 1 1.0 6.0 82 154 r 0.898 3 4 cbr 500 ------- 1 1.0 6.0 77 145 + 0.898 4 6 cbr 500 ------- 1 1.0 6.0 77 145 - 0.898 4 6 cbr 500 ------- 1 1.0 6.0 77 145 r 0.898 4 7 cbr 1000 ------- 1 2.0 7.0 54 140 r 0.898 4 6 cbr 500 ------- 1 1.0 6.0 74 141 + 0.9 1 3 cbr 500 ------- 1 1.0 6.0 85 158 - 0.9 1 3 cbr 500 ------- 1 1.0 6.0 85 158 + 0.9 2 3 cbr 1000 ------- 1 2.0 7.0 60 159 - 0.9 2 3 cbr 1000 ------- 1 2.0 7.0 60 159 r 0.902 4 6 cbr 500 ------- 1 1.0 6.0 75 142 r 0.904 1 3 cbr 500 ------- 1 1.0 6.0 83 155 + 0.904 3 4 cbr 500 ------- 1 1.0 6.0 83 155 - 0.904 3 4 cbr 500 ------- 1 1.0 6.0 83 155 r 0.906 3 4 cbr 1000 ------- 1 2.0 7.0 56 146 + 0.906 4 7 cbr 1000 ------- 1 2.0 7.0 56 146 - 0.906 4 7 cbr 1000 ------- 1 2.0 7.0 56 146 r 0.908 2 3 cbr 1000 ------- 1 2.0 7.0 59 156 + 0.908 3 4 cbr 1000 ------- 1 2.0 7.0 59 156 - 0.908 3 4 cbr 1000 ------- 1 2.0 7.0 59 156 + 0.91 1 3 cbr 500 ------- 1 1.0 6.0 86 160 - 0.91 1 3 cbr 500 ------- 1 1.0 6.0 86 160 r 0.91 3 4 cbr 500 ------- 1 1.0 6.0 78 147 + 0.91 4 6 cbr 500 ------- 1 1.0 6.0 78 147 - 0.91 4 6 cbr 500 ------- 1 1.0 6.0 78 147 r 0.914 1 3 cbr 500 ------- 1 1.0 6.0 84 157 + 0.914 3 4 cbr 500 ------- 1 1.0 6.0 84 157 r 0.914 4 7 cbr 1000 ------- 1 2.0 7.0 55 143 r 0.914 4 6 cbr 500 ------- 1 1.0 6.0 76 144 - 0.916 3 4 cbr 500 ------- 1 1.0 6.0 84 157 r 0.918 3 4 cbr 500 ------- 1 1.0 6.0 79 148 + 0.918 4 6 cbr 500 ------- 1 1.0 6.0 79 148 - 0.918 4 6 cbr 500 ------- 1 1.0 6.0 79 148 + 0.92 1 3 cbr 500 ------- 1 1.0 6.0 87 161 - 0.92 1 3 cbr 500 ------- 1 1.0 6.0 87 161 + 0.92 2 3 cbr 1000 ------- 1 2.0 7.0 61 162 - 0.92 2 3 cbr 1000 ------- 1 2.0 7.0 61 162 r 0.921984 4 3 ack 40 ------- 0 5.0 0.0 0 151 + 0.921984 3 0 ack 40 ------- 0 5.0 0.0 0 151 - 0.921984 3 0 ack 40 ------- 0 5.0 0.0 0 151 r 0.922 4 6 cbr 500 ------- 1 1.0 6.0 77 145 r 0.924 1 3 cbr 500 ------- 1 1.0 6.0 85 158 + 0.924 3 4 cbr 500 ------- 1 1.0 6.0 85 158 - 0.924 3 4 cbr 500 ------- 1 1.0 6.0 85 158 r 0.926 3 4 cbr 1000 ------- 1 2.0 7.0 57 149 + 0.926 4 7 cbr 1000 ------- 1 2.0 7.0 57 149 - 0.926 4 7 cbr 1000 ------- 1 2.0 7.0 57 149 r 0.928 2 3 cbr 1000 ------- 1 2.0 7.0 60 159 + 0.928 3 4 cbr 1000 ------- 1 2.0 7.0 60 159 - 0.928 3 4 cbr 1000 ------- 1 2.0 7.0 60 159 + 0.93 1 3 cbr 500 ------- 1 1.0 6.0 88 163 - 0.93 1 3 cbr 500 ------- 1 1.0 6.0 88 163 r 0.93 3 4 cbr 500 ------- 1 1.0 6.0 80 150 + 0.93 4 6 cbr 500 ------- 1 1.0 6.0 80 150 - 0.93 4 6 cbr 500 ------- 1 1.0 6.0 80 150 r 0.934 1 3 cbr 500 ------- 1 1.0 6.0 86 160 + 0.934 3 4 cbr 500 ------- 1 1.0 6.0 86 160 r 0.934 4 7 cbr 1000 ------- 1 2.0 7.0 56 146 r 0.934 4 6 cbr 500 ------- 1 1.0 6.0 78 147 - 0.936 3 4 cbr 500 ------- 1 1.0 6.0 86 160 r 0.938 3 4 cbr 500 ------- 1 1.0 6.0 81 152 + 0.938 4 6 cbr 500 ------- 1 1.0 6.0 81 152 - 0.938 4 6 cbr 500 ------- 1 1.0 6.0 81 152 + 0.94 1 3 cbr 500 ------- 1 1.0 6.0 89 164 - 0.94 1 3 cbr 500 ------- 1 1.0 6.0 89 164 + 0.94 2 3 cbr 1000 ------- 1 2.0 7.0 62 165 - 0.94 2 3 cbr 1000 ------- 1 2.0 7.0 62 165 r 0.942 4 6 cbr 500 ------- 1 1.0 6.0 79 148 r 0.942048 3 0 ack 40 ------- 0 5.0 0.0 0 151 + 0.942048 0 3 tcp 1000 ------- 0 0.0 5.0 1 166 - 0.942048 0 3 tcp 1000 ------- 0 0.0 5.0 1 166 + 0.942048 0 3 tcp 1000 ------- 0 0.0 5.0 2 167 + 0.942048 0 3 tcp 1000 ------- 0 0.0 5.0 3 168 + 0.942048 0 3 tcp 1000 ------- 0 0.0 5.0 4 169 + 0.942048 0 3 tcp 1000 ------- 0 0.0 5.0 5 170 + 0.942048 0 3 tcp 1000 ------- 0 0.0 5.0 6 171 + 0.942048 0 3 tcp 1000 ------- 0 0.0 5.0 7 172 + 0.942048 0 3 tcp 1000 ------- 0 0.0 5.0 8 173 - 0.943648 0 3 tcp 1000 ------- 0 0.0 5.0 2 167 r 0.944 1 3 cbr 500 ------- 1 1.0 6.0 87 161 + 0.944 3 4 cbr 500 ------- 1 1.0 6.0 87 161 - 0.944 3 4 cbr 500 ------- 1 1.0 6.0 87 161 - 0.945248 0 3 tcp 1000 ------- 0 0.0 5.0 3 168 r 0.946 3 4 cbr 1000 ------- 1 2.0 7.0 58 153 + 0.946 4 7 cbr 1000 ------- 1 2.0 7.0 58 153 - 0.946 4 7 cbr 1000 ------- 1 2.0 7.0 58 153 - 0.946848 0 3 tcp 1000 ------- 0 0.0 5.0 4 169 r 0.948 2 3 cbr 1000 ------- 1 2.0 7.0 61 162 + 0.948 3 4 cbr 1000 ------- 1 2.0 7.0 61 162 - 0.948 3 4 cbr 1000 ------- 1 2.0 7.0 61 162 - 0.948448 0 3 tcp 1000 ------- 0 0.0 5.0 5 170 v 0.94999999999999996 eval {set sim_annotation {Send Packet_1 to 8}} + 0.95 1 3 cbr 500 ------- 1 1.0 6.0 90 174 - 0.95 1 3 cbr 500 ------- 1 1.0 6.0 90 174 r 0.95 3 4 cbr 500 ------- 1 1.0 6.0 82 154 + 0.95 4 6 cbr 500 ------- 1 1.0 6.0 82 154 - 0.95 4 6 cbr 500 ------- 1 1.0 6.0 82 154 - 0.950048 0 3 tcp 1000 ------- 0 0.0 5.0 6 171 - 0.951648 0 3 tcp 1000 ------- 0 0.0 5.0 7 172 - 0.953248 0 3 tcp 1000 ------- 0 0.0 5.0 8 173 r 0.954 1 3 cbr 500 ------- 1 1.0 6.0 88 163 + 0.954 3 4 cbr 500 ------- 1 1.0 6.0 88 163 r 0.954 4 7 cbr 1000 ------- 1 2.0 7.0 57 149 r 0.954 4 6 cbr 500 ------- 1 1.0 6.0 80 150 - 0.956 3 4 cbr 500 ------- 1 1.0 6.0 88 163 r 0.958 3 4 cbr 500 ------- 1 1.0 6.0 83 155 + 0.958 4 6 cbr 500 ------- 1 1.0 6.0 83 155 - 0.958 4 6 cbr 500 ------- 1 1.0 6.0 83 155 + 0.96 1 3 cbr 500 ------- 1 1.0 6.0 91 175 - 0.96 1 3 cbr 500 ------- 1 1.0 6.0 91 175 + 0.96 2 3 cbr 1000 ------- 1 2.0 7.0 63 176 - 0.96 2 3 cbr 1000 ------- 1 2.0 7.0 63 176 r 0.962 4 6 cbr 500 ------- 1 1.0 6.0 81 152 r 0.963648 0 3 tcp 1000 ------- 0 0.0 5.0 1 166 + 0.963648 3 4 tcp 1000 ------- 0 0.0 5.0 1 166 - 0.963648 3 4 tcp 1000 ------- 0 0.0 5.0 1 166 r 0.964 1 3 cbr 500 ------- 1 1.0 6.0 89 164 + 0.964 3 4 cbr 500 ------- 1 1.0 6.0 89 164 r 0.965248 0 3 tcp 1000 ------- 0 0.0 5.0 2 167 + 0.965248 3 4 tcp 1000 ------- 0 0.0 5.0 2 167 r 0.966 3 4 cbr 1000 ------- 1 2.0 7.0 59 156 + 0.966 4 7 cbr 1000 ------- 1 2.0 7.0 59 156 - 0.966 4 7 cbr 1000 ------- 1 2.0 7.0 59 156 r 0.966848 0 3 tcp 1000 ------- 0 0.0 5.0 3 168 + 0.966848 3 4 tcp 1000 ------- 0 0.0 5.0 3 168 r 0.968 2 3 cbr 1000 ------- 1 2.0 7.0 62 165 + 0.968 3 4 cbr 1000 ------- 1 2.0 7.0 62 165 r 0.968448 0 3 tcp 1000 ------- 0 0.0 5.0 4 169 + 0.968448 3 4 tcp 1000 ------- 0 0.0 5.0 4 169 + 0.97 1 3 cbr 500 ------- 1 1.0 6.0 92 177 - 0.97 1 3 cbr 500 ------- 1 1.0 6.0 92 177 r 0.97 3 4 cbr 500 ------- 1 1.0 6.0 84 157 + 0.97 4 6 cbr 500 ------- 1 1.0 6.0 84 157 - 0.97 4 6 cbr 500 ------- 1 1.0 6.0 84 157 r 0.970048 0 3 tcp 1000 ------- 0 0.0 5.0 5 170 + 0.970048 3 4 tcp 1000 ------- 0 0.0 5.0 5 170 - 0.971648 3 4 cbr 500 ------- 1 1.0 6.0 89 164 r 0.971648 0 3 tcp 1000 ------- 0 0.0 5.0 6 171 + 0.971648 3 4 tcp 1000 ------- 0 0.0 5.0 6 171 r 0.973248 0 3 tcp 1000 ------- 0 0.0 5.0 7 172 + 0.973248 3 4 tcp 1000 ------- 0 0.0 5.0 7 172 r 0.974 1 3 cbr 500 ------- 1 1.0 6.0 90 174 + 0.974 3 4 cbr 500 ------- 1 1.0 6.0 90 174 r 0.974 4 7 cbr 1000 ------- 1 2.0 7.0 58 153 r 0.974 4 6 cbr 500 ------- 1 1.0 6.0 82 154 r 0.974848 0 3 tcp 1000 ------- 0 0.0 5.0 8 173 + 0.974848 3 4 tcp 1000 ------- 0 0.0 5.0 8 173 - 0.975648 3 4 tcp 1000 ------- 0 0.0 5.0 2 167 r 0.978 3 4 cbr 500 ------- 1 1.0 6.0 85 158 + 0.978 4 6 cbr 500 ------- 1 1.0 6.0 85 158 - 0.978 4 6 cbr 500 ------- 1 1.0 6.0 85 158 + 0.98 1 3 cbr 500 ------- 1 1.0 6.0 93 178 - 0.98 1 3 cbr 500 ------- 1 1.0 6.0 93 178 + 0.98 2 3 cbr 1000 ------- 1 2.0 7.0 64 179 - 0.98 2 3 cbr 1000 ------- 1 2.0 7.0 64 179 r 0.982 4 6 cbr 500 ------- 1 1.0 6.0 83 155 - 0.983648 3 4 tcp 1000 ------- 0 0.0 5.0 3 168 r 0.984 1 3 cbr 500 ------- 1 1.0 6.0 91 175 + 0.984 3 4 cbr 500 ------- 1 1.0 6.0 91 175 r 0.986 3 4 cbr 1000 ------- 1 2.0 7.0 60 159 + 0.986 4 7 cbr 1000 ------- 1 2.0 7.0 60 159 - 0.986 4 7 cbr 1000 ------- 1 2.0 7.0 60 159 r 0.988 2 3 cbr 1000 ------- 1 2.0 7.0 63 176 + 0.988 3 4 cbr 1000 ------- 1 2.0 7.0 63 176 + 0.99 1 3 cbr 500 ------- 1 1.0 6.0 94 180 - 0.99 1 3 cbr 500 ------- 1 1.0 6.0 94 180 r 0.99 3 4 cbr 500 ------- 1 1.0 6.0 86 160 + 0.99 4 6 cbr 500 ------- 1 1.0 6.0 86 160 - 0.99 4 6 cbr 500 ------- 1 1.0 6.0 86 160 - 0.991648 3 4 cbr 1000 ------- 1 2.0 7.0 62 165 r 0.994 1 3 cbr 500 ------- 1 1.0 6.0 92 177 + 0.994 3 4 cbr 500 ------- 1 1.0 6.0 92 177 r 0.994 4 7 cbr 1000 ------- 1 2.0 7.0 59 156 r 0.994 4 6 cbr 500 ------- 1 1.0 6.0 84 157 r 0.998 3 4 cbr 500 ------- 1 1.0 6.0 87 161 + 0.998 4 6 cbr 500 ------- 1 1.0 6.0 87 161 - 0.998 4 6 cbr 500 ------- 1 1.0 6.0 87 161 - 0.999648 3 4 tcp 1000 ------- 0 0.0 5.0 4 169 + 1 2 3 cbr 1000 ------- 1 2.0 7.0 65 181 - 1 2 3 cbr 1000 ------- 1 2.0 7.0 65 181 + 1 1 3 cbr 500 ------- 1 1.0 6.0 95 182 - 1 1 3 cbr 500 ------- 1 1.0 6.0 95 182 r 1.002 4 6 cbr 500 ------- 1 1.0 6.0 85 158 r 1.004 1 3 cbr 500 ------- 1 1.0 6.0 93 178 + 1.004 3 4 cbr 500 ------- 1 1.0 6.0 93 178 r 1.006 3 4 cbr 1000 ------- 1 2.0 7.0 61 162 + 1.006 4 7 cbr 1000 ------- 1 2.0 7.0 61 162 - 1.006 4 7 cbr 1000 ------- 1 2.0 7.0 61 162 - 1.00765 3 4 tcp 1000 ------- 0 0.0 5.0 5 170 r 1.008 2 3 cbr 1000 ------- 1 2.0 7.0 64 179 + 1.008 3 4 cbr 1000 ------- 1 2.0 7.0 64 179 r 1.01 3 4 cbr 500 ------- 1 1.0 6.0 88 163 + 1.01 4 6 cbr 500 ------- 1 1.0 6.0 88 163 - 1.01 4 6 cbr 500 ------- 1 1.0 6.0 88 163 + 1.01 1 3 cbr 500 ------- 1 1.0 6.0 96 183 - 1.01 1 3 cbr 500 ------- 1 1.0 6.0 96 183 r 1.014 4 7 cbr 1000 ------- 1 2.0 7.0 60 159 r 1.014 1 3 cbr 500 ------- 1 1.0 6.0 94 180 + 1.014 3 4 cbr 500 ------- 1 1.0 6.0 94 180 d 1.014 3 4 cbr 500 ------- 1 1.0 6.0 94 180 r 1.014 4 6 cbr 500 ------- 1 1.0 6.0 86 160 - 1.01565 3 4 tcp 1000 ------- 0 0.0 5.0 6 171 + 1.02 2 3 cbr 1000 ------- 1 2.0 7.0 66 184 - 1.02 2 3 cbr 1000 ------- 1 2.0 7.0 66 184 + 1.02 1 3 cbr 500 ------- 1 1.0 6.0 97 185 - 1.02 1 3 cbr 500 ------- 1 1.0 6.0 97 185 r 1.02165 3 4 tcp 1000 ------- 0 0.0 5.0 1 166 + 1.02165 4 5 tcp 1000 ------- 0 0.0 5.0 1 166 - 1.02165 4 5 tcp 1000 ------- 0 0.0 5.0 1 166 r 1.022 4 6 cbr 500 ------- 1 1.0 6.0 87 161 - 1.02365 3 4 tcp 1000 ------- 0 0.0 5.0 7 172 r 1.024 1 3 cbr 500 ------- 1 1.0 6.0 95 182 + 1.024 3 4 cbr 500 ------- 1 1.0 6.0 95 182 r 1.02565 3 4 cbr 500 ------- 1 1.0 6.0 89 164 + 1.02565 4 6 cbr 500 ------- 1 1.0 6.0 89 164 - 1.02565 4 6 cbr 500 ------- 1 1.0 6.0 89 164 r 1.028 2 3 cbr 1000 ------- 1 2.0 7.0 65 181 + 1.028 3 4 cbr 1000 ------- 1 2.0 7.0 65 181 + 1.03 1 3 cbr 500 ------- 1 1.0 6.0 98 186 - 1.03 1 3 cbr 500 ------- 1 1.0 6.0 98 186 - 1.03165 3 4 cbr 500 ------- 1 1.0 6.0 90 174 r 1.03365 3 4 tcp 1000 ------- 0 0.0 5.0 2 167 + 1.03365 4 5 tcp 1000 ------- 0 0.0 5.0 2 167 - 1.03365 4 5 tcp 1000 ------- 0 0.0 5.0 2 167 r 1.034 4 7 cbr 1000 ------- 1 2.0 7.0 61 162 r 1.034 4 6 cbr 500 ------- 1 1.0 6.0 88 163 r 1.034 1 3 cbr 500 ------- 1 1.0 6.0 96 183 + 1.034 3 4 cbr 500 ------- 1 1.0 6.0 96 183 - 1.03565 3 4 tcp 1000 ------- 0 0.0 5.0 8 173 v 1.04 eval {set sim_annotation {Ack_1 to 8}} + 1.04 2 3 cbr 1000 ------- 1 2.0 7.0 67 187 - 1.04 2 3 cbr 1000 ------- 1 2.0 7.0 67 187 + 1.04 1 3 cbr 500 ------- 1 1.0 6.0 99 188 - 1.04 1 3 cbr 500 ------- 1 1.0 6.0 99 188 r 1.04165 3 4 tcp 1000 ------- 0 0.0 5.0 3 168 + 1.04165 4 5 tcp 1000 ------- 0 0.0 5.0 3 168 - 1.04165 4 5 tcp 1000 ------- 0 0.0 5.0 3 168 r 1.04325 4 5 tcp 1000 ------- 0 0.0 5.0 1 166 + 1.04325 5 4 ack 40 ------- 0 5.0 0.0 1 189 - 1.04325 5 4 ack 40 ------- 0 5.0 0.0 1 189 - 1.04365 3 4 cbr 500 ------- 1 1.0 6.0 91 175 r 1.044 1 3 cbr 500 ------- 1 1.0 6.0 97 185 + 1.044 3 4 cbr 500 ------- 1 1.0 6.0 97 185 - 1.04765 3 4 cbr 1000 ------- 1 2.0 7.0 63 176 r 1.048 2 3 cbr 1000 ------- 1 2.0 7.0 66 184 + 1.048 3 4 cbr 1000 ------- 1 2.0 7.0 66 184 r 1.04965 3 4 cbr 1000 ------- 1 2.0 7.0 62 165 + 1.04965 4 7 cbr 1000 ------- 1 2.0 7.0 62 165 - 1.04965 4 7 cbr 1000 ------- 1 2.0 7.0 62 165 r 1.04965 4 6 cbr 500 ------- 1 1.0 6.0 89 164 + 1.05 1 3 cbr 500 ------- 1 1.0 6.0 100 190 - 1.05 1 3 cbr 500 ------- 1 1.0 6.0 100 190 r 1.054 1 3 cbr 500 ------- 1 1.0 6.0 98 186 + 1.054 3 4 cbr 500 ------- 1 1.0 6.0 98 186 r 1.05525 4 5 tcp 1000 ------- 0 0.0 5.0 2 167 + 1.05525 5 4 ack 40 ------- 0 5.0 0.0 2 191 - 1.05525 5 4 ack 40 ------- 0 5.0 0.0 2 191 - 1.05565 3 4 cbr 500 ------- 1 1.0 6.0 92 177 r 1.05765 3 4 tcp 1000 ------- 0 0.0 5.0 4 169 + 1.05765 4 5 tcp 1000 ------- 0 0.0 5.0 4 169 - 1.05765 4 5 tcp 1000 ------- 0 0.0 5.0 4 169 - 1.05965 3 4 cbr 500 ------- 1 1.0 6.0 93 178 + 1.06 2 3 cbr 1000 ------- 1 2.0 7.0 68 192 - 1.06 2 3 cbr 1000 ------- 1 2.0 7.0 68 192 + 1.06 1 3 cbr 500 ------- 1 1.0 6.0 101 193 - 1.06 1 3 cbr 500 ------- 1 1.0 6.0 101 193 r 1.06325 4 5 tcp 1000 ------- 0 0.0 5.0 3 168 + 1.06325 5 4 ack 40 ------- 0 5.0 0.0 3 194 - 1.06325 5 4 ack 40 ------- 0 5.0 0.0 3 194 r 1.06331 5 4 ack 40 ------- 0 5.0 0.0 1 189 + 1.06331 4 3 ack 40 ------- 0 5.0 0.0 1 189 - 1.06331 4 3 ack 40 ------- 0 5.0 0.0 1 189 - 1.06365 3 4 cbr 1000 ------- 1 2.0 7.0 64 179 r 1.064 1 3 cbr 500 ------- 1 1.0 6.0 99 188 + 1.064 3 4 cbr 500 ------- 1 1.0 6.0 99 188 r 1.06565 3 4 tcp 1000 ------- 0 0.0 5.0 5 170 + 1.06565 4 5 tcp 1000 ------- 0 0.0 5.0 5 170 - 1.06565 4 5 tcp 1000 ------- 0 0.0 5.0 5 170 r 1.068 2 3 cbr 1000 ------- 1 2.0 7.0 67 187 + 1.068 3 4 cbr 1000 ------- 1 2.0 7.0 67 187 + 1.07 1 3 cbr 500 ------- 1 1.0 6.0 102 195 - 1.07 1 3 cbr 500 ------- 1 1.0 6.0 102 195 - 1.07165 3 4 cbr 500 ------- 1 1.0 6.0 95 182 r 1.07365 3 4 tcp 1000 ------- 0 0.0 5.0 6 171 + 1.07365 4 5 tcp 1000 ------- 0 0.0 5.0 6 171 - 1.07365 4 5 tcp 1000 ------- 0 0.0 5.0 6 171 r 1.074 1 3 cbr 500 ------- 1 1.0 6.0 100 190 + 1.074 3 4 cbr 500 ------- 1 1.0 6.0 100 190 r 1.07531 5 4 ack 40 ------- 0 5.0 0.0 2 191 + 1.07531 4 3 ack 40 ------- 0 5.0 0.0 2 191 - 1.07531 4 3 ack 40 ------- 0 5.0 0.0 2 191 - 1.07565 3 4 cbr 1000 ------- 1 2.0 7.0 65 181 r 1.07765 4 7 cbr 1000 ------- 1 2.0 7.0 62 165 r 1.07925 4 5 tcp 1000 ------- 0 0.0 5.0 4 169 + 1.07925 5 4 ack 40 ------- 0 5.0 0.0 4 196 - 1.07925 5 4 ack 40 ------- 0 5.0 0.0 4 196 + 1.08 2 3 cbr 1000 ------- 1 2.0 7.0 69 197 - 1.08 2 3 cbr 1000 ------- 1 2.0 7.0 69 197 + 1.08 1 3 cbr 500 ------- 1 1.0 6.0 103 198 - 1.08 1 3 cbr 500 ------- 1 1.0 6.0 103 198 r 1.08165 3 4 tcp 1000 ------- 0 0.0 5.0 7 172 + 1.08165 4 5 tcp 1000 ------- 0 0.0 5.0 7 172 - 1.08165 4 5 tcp 1000 ------- 0 0.0 5.0 7 172 r 1.08331 5 4 ack 40 ------- 0 5.0 0.0 3 194 + 1.08331 4 3 ack 40 ------- 0 5.0 0.0 3 194 - 1.08331 4 3 ack 40 ------- 0 5.0 0.0 3 194 - 1.08365 3 4 cbr 500 ------- 1 1.0 6.0 96 183 r 1.084 1 3 cbr 500 ------- 1 1.0 6.0 101 193 + 1.084 3 4 cbr 500 ------- 1 1.0 6.0 101 193 r 1.08565 3 4 cbr 500 ------- 1 1.0 6.0 90 174 + 1.08565 4 6 cbr 500 ------- 1 1.0 6.0 90 174 - 1.08565 4 6 cbr 500 ------- 1 1.0 6.0 90 174 r 1.08725 4 5 tcp 1000 ------- 0 0.0 5.0 5 170 + 1.08725 5 4 ack 40 ------- 0 5.0 0.0 5 199 - 1.08725 5 4 ack 40 ------- 0 5.0 0.0 5 199 - 1.08765 3 4 cbr 500 ------- 1 1.0 6.0 97 185 r 1.088 2 3 cbr 1000 ------- 1 2.0 7.0 68 192 + 1.088 3 4 cbr 1000 ------- 1 2.0 7.0 68 192 + 1.09 1 3 cbr 500 ------- 1 1.0 6.0 104 200 - 1.09 1 3 cbr 500 ------- 1 1.0 6.0 104 200 - 1.09165 3 4 cbr 1000 ------- 1 2.0 7.0 66 184 r 1.09365 3 4 tcp 1000 ------- 0 0.0 5.0 8 173 + 1.09365 4 5 tcp 1000 ------- 0 0.0 5.0 8 173 - 1.09365 4 5 tcp 1000 ------- 0 0.0 5.0 8 173 r 1.094 1 3 cbr 500 ------- 1 1.0 6.0 102 195 + 1.094 3 4 cbr 500 ------- 1 1.0 6.0 102 195 r 1.09525 4 5 tcp 1000 ------- 0 0.0 5.0 6 171 + 1.09525 5 4 ack 40 ------- 0 5.0 0.0 6 201 - 1.09525 5 4 ack 40 ------- 0 5.0 0.0 6 201 r 1.09765 3 4 cbr 500 ------- 1 1.0 6.0 91 175 + 1.09765 4 6 cbr 500 ------- 1 1.0 6.0 91 175 - 1.09765 4 6 cbr 500 ------- 1 1.0 6.0 91 175 r 1.09931 5 4 ack 40 ------- 0 5.0 0.0 4 196 + 1.09931 4 3 ack 40 ------- 0 5.0 0.0 4 196 - 1.09931 4 3 ack 40 ------- 0 5.0 0.0 4 196 - 1.09965 3 4 cbr 500 ------- 1 1.0 6.0 98 186 + 1.1 2 3 cbr 1000 ------- 1 2.0 7.0 70 202 - 1.1 2 3 cbr 1000 ------- 1 2.0 7.0 70 202 + 1.1 1 3 cbr 500 ------- 1 1.0 6.0 105 203 - 1.1 1 3 cbr 500 ------- 1 1.0 6.0 105 203 r 1.10325 4 5 tcp 1000 ------- 0 0.0 5.0 7 172 + 1.10325 5 4 ack 40 ------- 0 5.0 0.0 7 204 - 1.10325 5 4 ack 40 ------- 0 5.0 0.0 7 204 - 1.10365 3 4 cbr 500 ------- 1 1.0 6.0 99 188 r 1.104 1 3 cbr 500 ------- 1 1.0 6.0 103 198 + 1.104 3 4 cbr 500 ------- 1 1.0 6.0 103 198 r 1.10565 3 4 cbr 1000 ------- 1 2.0 7.0 63 176 + 1.10565 4 7 cbr 1000 ------- 1 2.0 7.0 63 176 - 1.10565 4 7 cbr 1000 ------- 1 2.0 7.0 63 176 r 1.10731 5 4 ack 40 ------- 0 5.0 0.0 5 199 + 1.10731 4 3 ack 40 ------- 0 5.0 0.0 5 199 - 1.10731 4 3 ack 40 ------- 0 5.0 0.0 5 199 - 1.10765 3 4 cbr 1000 ------- 1 2.0 7.0 67 187 r 1.108 2 3 cbr 1000 ------- 1 2.0 7.0 69 197 + 1.108 3 4 cbr 1000 ------- 1 2.0 7.0 69 197 r 1.10965 3 4 cbr 500 ------- 1 1.0 6.0 92 177 + 1.10965 4 6 cbr 500 ------- 1 1.0 6.0 92 177 - 1.10965 4 6 cbr 500 ------- 1 1.0 6.0 92 177 r 1.10965 4 6 cbr 500 ------- 1 1.0 6.0 90 174 + 1.11 1 3 cbr 500 ------- 1 1.0 6.0 106 205 - 1.11 1 3 cbr 500 ------- 1 1.0 6.0 106 205 r 1.11363 4 3 ack 40 ------- 0 5.0 0.0 1 189 + 1.11363 3 0 ack 40 ------- 0 5.0 0.0 1 189 - 1.11363 3 0 ack 40 ------- 0 5.0 0.0 1 189 r 1.11365 3 4 cbr 500 ------- 1 1.0 6.0 93 178 + 1.11365 4 6 cbr 500 ------- 1 1.0 6.0 93 178 - 1.11365 4 6 cbr 500 ------- 1 1.0 6.0 93 178 r 1.114 1 3 cbr 500 ------- 1 1.0 6.0 104 200 + 1.114 3 4 cbr 500 ------- 1 1.0 6.0 104 200 r 1.11525 4 5 tcp 1000 ------- 0 0.0 5.0 8 173 + 1.11525 5 4 ack 40 ------- 0 5.0 0.0 8 206 - 1.11525 5 4 ack 40 ------- 0 5.0 0.0 8 206 r 1.11531 5 4 ack 40 ------- 0 5.0 0.0 6 201 + 1.11531 4 3 ack 40 ------- 0 5.0 0.0 6 201 - 1.11531 4 3 ack 40 ------- 0 5.0 0.0 6 201 - 1.11565 3 4 cbr 500 ------- 1 1.0 6.0 100 190 - 1.11965 3 4 cbr 500 ------- 1 1.0 6.0 101 193 + 1.12 2 3 cbr 1000 ------- 1 2.0 7.0 71 207 - 1.12 2 3 cbr 1000 ------- 1 2.0 7.0 71 207 + 1.12 1 3 cbr 500 ------- 1 1.0 6.0 107 208 - 1.12 1 3 cbr 500 ------- 1 1.0 6.0 107 208 r 1.12165 3 4 cbr 1000 ------- 1 2.0 7.0 64 179 + 1.12165 4 7 cbr 1000 ------- 1 2.0 7.0 64 179 - 1.12165 4 7 cbr 1000 ------- 1 2.0 7.0 64 179 r 1.12165 4 6 cbr 500 ------- 1 1.0 6.0 91 175 r 1.12331 5 4 ack 40 ------- 0 5.0 0.0 7 204 + 1.12331 4 3 ack 40 ------- 0 5.0 0.0 7 204 - 1.12331 4 3 ack 40 ------- 0 5.0 0.0 7 204 - 1.12365 3 4 cbr 1000 ------- 1 2.0 7.0 68 192 r 1.124 1 3 cbr 500 ------- 1 1.0 6.0 105 203 + 1.124 3 4 cbr 500 ------- 1 1.0 6.0 105 203 r 1.12563 4 3 ack 40 ------- 0 5.0 0.0 2 191 + 1.12563 3 0 ack 40 ------- 0 5.0 0.0 2 191 - 1.12563 3 0 ack 40 ------- 0 5.0 0.0 2 191 r 1.12565 3 4 cbr 500 ------- 1 1.0 6.0 95 182 + 1.12565 4 6 cbr 500 ------- 1 1.0 6.0 95 182 - 1.12565 4 6 cbr 500 ------- 1 1.0 6.0 95 182 r 1.128 2 3 cbr 1000 ------- 1 2.0 7.0 70 202 + 1.128 3 4 cbr 1000 ------- 1 2.0 7.0 70 202 + 1.13 1 3 cbr 500 ------- 1 1.0 6.0 108 209 - 1.13 1 3 cbr 500 ------- 1 1.0 6.0 108 209 - 1.13165 3 4 cbr 500 ------- 1 1.0 6.0 102 195 r 1.13363 4 3 ack 40 ------- 0 5.0 0.0 3 194 + 1.13363 3 0 ack 40 ------- 0 5.0 0.0 3 194 - 1.13363 3 0 ack 40 ------- 0 5.0 0.0 3 194 r 1.13365 3 4 cbr 1000 ------- 1 2.0 7.0 65 181 + 1.13365 4 7 cbr 1000 ------- 1 2.0 7.0 65 181 - 1.13365 4 7 cbr 1000 ------- 1 2.0 7.0 65 181 r 1.13365 4 7 cbr 1000 ------- 1 2.0 7.0 63 176 r 1.13365 4 6 cbr 500 ------- 1 1.0 6.0 92 177 r 1.1337 3 0 ack 40 ------- 0 5.0 0.0 1 189 + 1.1337 0 3 tcp 1000 ------- 0 0.0 5.0 9 210 - 1.1337 0 3 tcp 1000 ------- 0 0.0 5.0 9 210 r 1.134 1 3 cbr 500 ------- 1 1.0 6.0 106 205 + 1.134 3 4 cbr 500 ------- 1 1.0 6.0 106 205 r 1.13531 5 4 ack 40 ------- 0 5.0 0.0 8 206 + 1.13531 4 3 ack 40 ------- 0 5.0 0.0 8 206 - 1.13531 4 3 ack 40 ------- 0 5.0 0.0 8 206 - 1.13565 3 4 cbr 500 ------- 1 1.0 6.0 103 198 r 1.13765 3 4 cbr 500 ------- 1 1.0 6.0 96 183 + 1.13765 4 6 cbr 500 ------- 1 1.0 6.0 96 183 - 1.13765 4 6 cbr 500 ------- 1 1.0 6.0 96 183 r 1.13765 4 6 cbr 500 ------- 1 1.0 6.0 93 178 - 1.13965 3 4 cbr 1000 ------- 1 2.0 7.0 69 197 v 1.1399999999999999 eval {set sim_annotation {Send Packet_9 to 16}} + 1.14 2 3 cbr 1000 ------- 1 2.0 7.0 72 211 - 1.14 2 3 cbr 1000 ------- 1 2.0 7.0 72 211 + 1.14 1 3 cbr 500 ------- 1 1.0 6.0 109 212 - 1.14 1 3 cbr 500 ------- 1 1.0 6.0 109 212 r 1.14165 3 4 cbr 500 ------- 1 1.0 6.0 97 185 + 1.14165 4 6 cbr 500 ------- 1 1.0 6.0 97 185 - 1.14165 4 6 cbr 500 ------- 1 1.0 6.0 97 185 r 1.144 1 3 cbr 500 ------- 1 1.0 6.0 107 208 + 1.144 3 4 cbr 500 ------- 1 1.0 6.0 107 208 r 1.1457 3 0 ack 40 ------- 0 5.0 0.0 2 191 + 1.1457 0 3 tcp 1000 ------- 0 0.0 5.0 10 213 - 1.1457 0 3 tcp 1000 ------- 0 0.0 5.0 10 213 - 1.14765 3 4 cbr 500 ------- 1 1.0 6.0 104 200 r 1.148 2 3 cbr 1000 ------- 1 2.0 7.0 71 207 + 1.148 3 4 cbr 1000 ------- 1 2.0 7.0 71 207 r 1.14963 4 3 ack 40 ------- 0 5.0 0.0 4 196 + 1.14963 3 0 ack 40 ------- 0 5.0 0.0 4 196 - 1.14963 3 0 ack 40 ------- 0 5.0 0.0 4 196 r 1.14965 3 4 cbr 1000 ------- 1 2.0 7.0 66 184 + 1.14965 4 7 cbr 1000 ------- 1 2.0 7.0 66 184 - 1.14965 4 7 cbr 1000 ------- 1 2.0 7.0 66 184 r 1.14965 4 7 cbr 1000 ------- 1 2.0 7.0 64 179 r 1.14965 4 6 cbr 500 ------- 1 1.0 6.0 95 182 + 1.15 1 3 cbr 500 ------- 1 1.0 6.0 110 214 - 1.15 1 3 cbr 500 ------- 1 1.0 6.0 110 214 - 1.15165 3 4 cbr 500 ------- 1 1.0 6.0 105 203 r 1.15365 3 4 cbr 500 ------- 1 1.0 6.0 98 186 + 1.15365 4 6 cbr 500 ------- 1 1.0 6.0 98 186 - 1.15365 4 6 cbr 500 ------- 1 1.0 6.0 98 186 r 1.1537 3 0 ack 40 ------- 0 5.0 0.0 3 194 + 1.1537 0 3 tcp 1000 ------- 0 0.0 5.0 11 215 - 1.1537 0 3 tcp 1000 ------- 0 0.0 5.0 11 215 r 1.154 1 3 cbr 500 ------- 1 1.0 6.0 108 209 + 1.154 3 4 cbr 500 ------- 1 1.0 6.0 108 209 r 1.1553 0 3 tcp 1000 ------- 0 0.0 5.0 9 210 + 1.1553 3 4 tcp 1000 ------- 0 0.0 5.0 9 210 - 1.15565 3 4 cbr 1000 ------- 1 2.0 7.0 70 202 r 1.15763 4 3 ack 40 ------- 0 5.0 0.0 5 199 + 1.15763 3 0 ack 40 ------- 0 5.0 0.0 5 199 - 1.15763 3 0 ack 40 ------- 0 5.0 0.0 5 199 r 1.15765 3 4 cbr 500 ------- 1 1.0 6.0 99 188 + 1.15765 4 6 cbr 500 ------- 1 1.0 6.0 99 188 - 1.15765 4 6 cbr 500 ------- 1 1.0 6.0 99 188 + 1.16 2 3 cbr 1000 ------- 1 2.0 7.0 73 216 - 1.16 2 3 cbr 1000 ------- 1 2.0 7.0 73 216 + 1.16 1 3 cbr 500 ------- 1 1.0 6.0 111 217 - 1.16 1 3 cbr 500 ------- 1 1.0 6.0 111 217 r 1.16165 4 7 cbr 1000 ------- 1 2.0 7.0 65 181 r 1.16165 4 6 cbr 500 ------- 1 1.0 6.0 96 183 - 1.16365 3 4 cbr 500 ------- 1 1.0 6.0 106 205 r 1.164 1 3 cbr 500 ------- 1 1.0 6.0 109 212 + 1.164 3 4 cbr 500 ------- 1 1.0 6.0 109 212 r 1.16563 4 3 ack 40 ------- 0 5.0 0.0 6 201 + 1.16563 3 0 ack 40 ------- 0 5.0 0.0 6 201 - 1.16563 3 0 ack 40 ------- 0 5.0 0.0 6 201 r 1.16565 3 4 cbr 1000 ------- 1 2.0 7.0 67 187 + 1.16565 4 7 cbr 1000 ------- 1 2.0 7.0 67 187 - 1.16565 4 7 cbr 1000 ------- 1 2.0 7.0 67 187 r 1.16565 4 6 cbr 500 ------- 1 1.0 6.0 97 185 r 1.1673 0 3 tcp 1000 ------- 0 0.0 5.0 10 213 + 1.1673 3 4 tcp 1000 ------- 0 0.0 5.0 10 213 - 1.16765 3 4 cbr 500 ------- 1 1.0 6.0 107 208 r 1.168 2 3 cbr 1000 ------- 1 2.0 7.0 72 211 + 1.168 3 4 cbr 1000 ------- 1 2.0 7.0 72 211 r 1.16965 3 4 cbr 500 ------- 1 1.0 6.0 100 190 + 1.16965 4 6 cbr 500 ------- 1 1.0 6.0 100 190 - 1.16965 4 6 cbr 500 ------- 1 1.0 6.0 100 190 r 1.1697 3 0 ack 40 ------- 0 5.0 0.0 4 196 + 1.1697 0 3 tcp 1000 ------- 0 0.0 5.0 12 218 - 1.1697 0 3 tcp 1000 ------- 0 0.0 5.0 12 218 + 1.17 1 3 cbr 500 ------- 1 1.0 6.0 112 219 - 1.17 1 3 cbr 500 ------- 1 1.0 6.0 112 219 - 1.17165 3 4 cbr 1000 ------- 1 2.0 7.0 71 207 r 1.17363 4 3 ack 40 ------- 0 5.0 0.0 7 204 + 1.17363 3 0 ack 40 ------- 0 5.0 0.0 7 204 - 1.17363 3 0 ack 40 ------- 0 5.0 0.0 7 204 r 1.17365 3 4 cbr 500 ------- 1 1.0 6.0 101 193 + 1.17365 4 6 cbr 500 ------- 1 1.0 6.0 101 193 - 1.17365 4 6 cbr 500 ------- 1 1.0 6.0 101 193 r 1.174 1 3 cbr 500 ------- 1 1.0 6.0 110 214 + 1.174 3 4 cbr 500 ------- 1 1.0 6.0 110 214 r 1.1753 0 3 tcp 1000 ------- 0 0.0 5.0 11 215 + 1.1753 3 4 tcp 1000 ------- 0 0.0 5.0 11 215 r 1.17765 4 7 cbr 1000 ------- 1 2.0 7.0 66 184 r 1.17765 4 6 cbr 500 ------- 1 1.0 6.0 98 186 r 1.1777 3 0 ack 40 ------- 0 5.0 0.0 5 199 + 1.1777 0 3 tcp 1000 ------- 0 0.0 5.0 13 220 - 1.1777 0 3 tcp 1000 ------- 0 0.0 5.0 13 220 - 1.17965 3 4 cbr 500 ------- 1 1.0 6.0 108 209 + 1.18 2 3 cbr 1000 ------- 1 2.0 7.0 74 221 - 1.18 2 3 cbr 1000 ------- 1 2.0 7.0 74 221 + 1.18 1 3 cbr 500 ------- 1 1.0 6.0 113 222 - 1.18 1 3 cbr 500 ------- 1 1.0 6.0 113 222 r 1.18165 3 4 cbr 1000 ------- 1 2.0 7.0 68 192 + 1.18165 4 7 cbr 1000 ------- 1 2.0 7.0 68 192 - 1.18165 4 7 cbr 1000 ------- 1 2.0 7.0 68 192 r 1.18165 4 6 cbr 500 ------- 1 1.0 6.0 99 188 - 1.18365 3 4 tcp 1000 ------- 0 0.0 5.0 9 210 r 1.184 1 3 cbr 500 ------- 1 1.0 6.0 111 217 + 1.184 3 4 cbr 500 ------- 1 1.0 6.0 111 217 r 1.18563 4 3 ack 40 ------- 0 5.0 0.0 8 206 + 1.18563 3 0 ack 40 ------- 0 5.0 0.0 8 206 - 1.18563 3 0 ack 40 ------- 0 5.0 0.0 8 206 r 1.18565 3 4 cbr 500 ------- 1 1.0 6.0 102 195 + 1.18565 4 6 cbr 500 ------- 1 1.0 6.0 102 195 - 1.18565 4 6 cbr 500 ------- 1 1.0 6.0 102 195 r 1.1857 3 0 ack 40 ------- 0 5.0 0.0 6 201 + 1.1857 0 3 tcp 1000 ------- 0 0.0 5.0 14 223 - 1.1857 0 3 tcp 1000 ------- 0 0.0 5.0 14 223 r 1.188 2 3 cbr 1000 ------- 1 2.0 7.0 73 216 + 1.188 3 4 cbr 1000 ------- 1 2.0 7.0 73 216 r 1.18965 3 4 cbr 500 ------- 1 1.0 6.0 103 198 + 1.18965 4 6 cbr 500 ------- 1 1.0 6.0 103 198 - 1.18965 4 6 cbr 500 ------- 1 1.0 6.0 103 198 + 1.19 1 3 cbr 500 ------- 1 1.0 6.0 114 224 - 1.19 1 3 cbr 500 ------- 1 1.0 6.0 114 224 r 1.1913 0 3 tcp 1000 ------- 0 0.0 5.0 12 218 + 1.1913 3 4 tcp 1000 ------- 0 0.0 5.0 12 218 - 1.19165 3 4 cbr 500 ------- 1 1.0 6.0 109 212 r 1.19365 4 7 cbr 1000 ------- 1 2.0 7.0 67 187 r 1.19365 4 6 cbr 500 ------- 1 1.0 6.0 100 190 r 1.1937 3 0 ack 40 ------- 0 5.0 0.0 7 204 + 1.1937 0 3 tcp 1000 ------- 0 0.0 5.0 15 225 - 1.1937 0 3 tcp 1000 ------- 0 0.0 5.0 15 225 r 1.194 1 3 cbr 500 ------- 1 1.0 6.0 112 219 + 1.194 3 4 cbr 500 ------- 1 1.0 6.0 112 219 - 1.19565 3 4 tcp 1000 ------- 0 0.0 5.0 10 213 r 1.19765 3 4 cbr 1000 ------- 1 2.0 7.0 69 197 + 1.19765 4 7 cbr 1000 ------- 1 2.0 7.0 69 197 - 1.19765 4 7 cbr 1000 ------- 1 2.0 7.0 69 197 r 1.19765 4 6 cbr 500 ------- 1 1.0 6.0 101 193 r 1.1993 0 3 tcp 1000 ------- 0 0.0 5.0 13 220 + 1.1993 3 4 tcp 1000 ------- 0 0.0 5.0 13 220 + 1.2 2 3 cbr 1000 ------- 1 2.0 7.0 75 226 - 1.2 2 3 cbr 1000 ------- 1 2.0 7.0 75 226 + 1.2 1 3 cbr 500 ------- 1 1.0 6.0 115 227 - 1.2 1 3 cbr 500 ------- 1 1.0 6.0 115 227 r 1.20165 3 4 cbr 500 ------- 1 1.0 6.0 104 200 + 1.20165 4 6 cbr 500 ------- 1 1.0 6.0 104 200 - 1.20165 4 6 cbr 500 ------- 1 1.0 6.0 104 200 - 1.20365 3 4 cbr 1000 ------- 1 2.0 7.0 72 211 r 1.204 1 3 cbr 500 ------- 1 1.0 6.0 113 222 + 1.204 3 4 cbr 500 ------- 1 1.0 6.0 113 222 r 1.20565 3 4 cbr 500 ------- 1 1.0 6.0 105 203 + 1.20565 4 6 cbr 500 ------- 1 1.0 6.0 105 203 - 1.20565 4 6 cbr 500 ------- 1 1.0 6.0 105 203 r 1.2057 3 0 ack 40 ------- 0 5.0 0.0 8 206 + 1.2057 0 3 tcp 1000 ------- 0 0.0 5.0 16 228 - 1.2057 0 3 tcp 1000 ------- 0 0.0 5.0 16 228 r 1.2073 0 3 tcp 1000 ------- 0 0.0 5.0 14 223 + 1.2073 3 4 tcp 1000 ------- 0 0.0 5.0 14 223 r 1.208 2 3 cbr 1000 ------- 1 2.0 7.0 74 221 + 1.208 3 4 cbr 1000 ------- 1 2.0 7.0 74 221 d 1.208 3 4 cbr 1000 ------- 1 2.0 7.0 74 221 r 1.20965 4 7 cbr 1000 ------- 1 2.0 7.0 68 192 r 1.20965 4 6 cbr 500 ------- 1 1.0 6.0 102 195 + 1.21 1 3 cbr 500 ------- 1 1.0 6.0 116 229 - 1.21 1 3 cbr 500 ------- 1 1.0 6.0 116 229 - 1.21165 3 4 cbr 500 ------- 1 1.0 6.0 110 214 r 1.21365 3 4 cbr 1000 ------- 1 2.0 7.0 70 202 + 1.21365 4 7 cbr 1000 ------- 1 2.0 7.0 70 202 - 1.21365 4 7 cbr 1000 ------- 1 2.0 7.0 70 202 r 1.21365 4 6 cbr 500 ------- 1 1.0 6.0 103 198 r 1.214 1 3 cbr 500 ------- 1 1.0 6.0 114 224 + 1.214 3 4 cbr 500 ------- 1 1.0 6.0 114 224 r 1.2153 0 3 tcp 1000 ------- 0 0.0 5.0 15 225 + 1.2153 3 4 tcp 1000 ------- 0 0.0 5.0 15 225 d 1.2153 3 4 tcp 1000 ------- 0 0.0 5.0 15 225 - 1.21565 3 4 tcp 1000 ------- 0 0.0 5.0 11 215 r 1.21765 3 4 cbr 500 ------- 1 1.0 6.0 106 205 + 1.21765 4 6 cbr 500 ------- 1 1.0 6.0 106 205 - 1.21765 4 6 cbr 500 ------- 1 1.0 6.0 106 205 v 1.22 eval {set sim_annotation {Lost Packet (2 of them) }} + 1.22 2 3 cbr 1000 ------- 1 2.0 7.0 76 230 - 1.22 2 3 cbr 1000 ------- 1 2.0 7.0 76 230 + 1.22 1 3 cbr 500 ------- 1 1.0 6.0 117 231 - 1.22 1 3 cbr 500 ------- 1 1.0 6.0 117 231 r 1.22165 3 4 cbr 500 ------- 1 1.0 6.0 107 208 + 1.22165 4 6 cbr 500 ------- 1 1.0 6.0 107 208 - 1.22165 4 6 cbr 500 ------- 1 1.0 6.0 107 208 - 1.22365 3 4 cbr 500 ------- 1 1.0 6.0 111 217 r 1.224 1 3 cbr 500 ------- 1 1.0 6.0 115 227 + 1.224 3 4 cbr 500 ------- 1 1.0 6.0 115 227 r 1.22565 4 7 cbr 1000 ------- 1 2.0 7.0 69 197 r 1.22565 4 6 cbr 500 ------- 1 1.0 6.0 104 200 r 1.2273 0 3 tcp 1000 ------- 0 0.0 5.0 16 228 + 1.2273 3 4 tcp 1000 ------- 0 0.0 5.0 16 228 - 1.22765 3 4 cbr 1000 ------- 1 2.0 7.0 73 216 r 1.228 2 3 cbr 1000 ------- 1 2.0 7.0 75 226 + 1.228 3 4 cbr 1000 ------- 1 2.0 7.0 75 226 r 1.22965 3 4 cbr 1000 ------- 1 2.0 7.0 71 207 + 1.22965 4 7 cbr 1000 ------- 1 2.0 7.0 71 207 - 1.22965 4 7 cbr 1000 ------- 1 2.0 7.0 71 207 r 1.22965 4 6 cbr 500 ------- 1 1.0 6.0 105 203 + 1.23 1 3 cbr 500 ------- 1 1.0 6.0 118 232 - 1.23 1 3 cbr 500 ------- 1 1.0 6.0 118 232 r 1.23365 3 4 cbr 500 ------- 1 1.0 6.0 108 209 + 1.23365 4 6 cbr 500 ------- 1 1.0 6.0 108 209 - 1.23365 4 6 cbr 500 ------- 1 1.0 6.0 108 209 r 1.234 1 3 cbr 500 ------- 1 1.0 6.0 116 229 + 1.234 3 4 cbr 500 ------- 1 1.0 6.0 116 229 d 1.234 3 4 cbr 500 ------- 1 1.0 6.0 116 229 - 1.23565 3 4 tcp 1000 ------- 0 0.0 5.0 12 218 + 1.24 2 3 cbr 1000 ------- 1 2.0 7.0 77 233 - 1.24 2 3 cbr 1000 ------- 1 2.0 7.0 77 233 + 1.24 1 3 cbr 500 ------- 1 1.0 6.0 119 234 - 1.24 1 3 cbr 500 ------- 1 1.0 6.0 119 234 r 1.24165 3 4 tcp 1000 ------- 0 0.0 5.0 9 210 + 1.24165 4 5 tcp 1000 ------- 0 0.0 5.0 9 210 - 1.24165 4 5 tcp 1000 ------- 0 0.0 5.0 9 210 r 1.24165 4 7 cbr 1000 ------- 1 2.0 7.0 70 202 r 1.24165 4 6 cbr 500 ------- 1 1.0 6.0 106 205 - 1.24365 3 4 cbr 500 ------- 1 1.0 6.0 112 219 r 1.244 1 3 cbr 500 ------- 1 1.0 6.0 117 231 + 1.244 3 4 cbr 500 ------- 1 1.0 6.0 117 231 r 1.24565 3 4 cbr 500 ------- 1 1.0 6.0 109 212 + 1.24565 4 6 cbr 500 ------- 1 1.0 6.0 109 212 - 1.24565 4 6 cbr 500 ------- 1 1.0 6.0 109 212 r 1.24565 4 6 cbr 500 ------- 1 1.0 6.0 107 208 - 1.24765 3 4 tcp 1000 ------- 0 0.0 5.0 13 220 r 1.248 2 3 cbr 1000 ------- 1 2.0 7.0 76 230 + 1.248 3 4 cbr 1000 ------- 1 2.0 7.0 76 230 + 1.25 1 3 cbr 500 ------- 1 1.0 6.0 120 235 - 1.25 1 3 cbr 500 ------- 1 1.0 6.0 120 235 r 1.25365 3 4 tcp 1000 ------- 0 0.0 5.0 10 213 + 1.25365 4 5 tcp 1000 ------- 0 0.0 5.0 10 213 - 1.25365 4 5 tcp 1000 ------- 0 0.0 5.0 10 213 r 1.254 1 3 cbr 500 ------- 1 1.0 6.0 118 232 + 1.254 3 4 cbr 500 ------- 1 1.0 6.0 118 232 - 1.25565 3 4 cbr 500 ------- 1 1.0 6.0 113 222 r 1.25765 4 7 cbr 1000 ------- 1 2.0 7.0 71 207 r 1.25765 4 6 cbr 500 ------- 1 1.0 6.0 108 209 - 1.25965 3 4 tcp 1000 ------- 0 0.0 5.0 14 223 + 1.26 2 3 cbr 1000 ------- 1 2.0 7.0 78 236 - 1.26 2 3 cbr 1000 ------- 1 2.0 7.0 78 236 + 1.26 1 3 cbr 500 ------- 1 1.0 6.0 121 237 - 1.26 1 3 cbr 500 ------- 1 1.0 6.0 121 237 r 1.26165 3 4 cbr 1000 ------- 1 2.0 7.0 72 211 + 1.26165 4 7 cbr 1000 ------- 1 2.0 7.0 72 211 - 1.26165 4 7 cbr 1000 ------- 1 2.0 7.0 72 211 r 1.26325 4 5 tcp 1000 ------- 0 0.0 5.0 9 210 + 1.26325 5 4 ack 40 ------- 0 5.0 0.0 9 238 - 1.26325 5 4 ack 40 ------- 0 5.0 0.0 9 238 r 1.264 1 3 cbr 500 ------- 1 1.0 6.0 119 234 + 1.264 3 4 cbr 500 ------- 1 1.0 6.0 119 234 r 1.26565 3 4 cbr 500 ------- 1 1.0 6.0 110 214 + 1.26565 4 6 cbr 500 ------- 1 1.0 6.0 110 214 - 1.26565 4 6 cbr 500 ------- 1 1.0 6.0 110 214 - 1.26765 3 4 cbr 500 ------- 1 1.0 6.0 114 224 r 1.268 2 3 cbr 1000 ------- 1 2.0 7.0 77 233 + 1.268 3 4 cbr 1000 ------- 1 2.0 7.0 77 233 r 1.26965 4 6 cbr 500 ------- 1 1.0 6.0 109 212 v 1.27 eval {set sim_annotation {Ack_7 to 14 }} + 1.27 1 3 cbr 500 ------- 1 1.0 6.0 122 239 - 1.27 1 3 cbr 500 ------- 1 1.0 6.0 122 239 - 1.27165 3 4 cbr 500 ------- 1 1.0 6.0 115 227 r 1.27365 3 4 tcp 1000 ------- 0 0.0 5.0 11 215 + 1.27365 4 5 tcp 1000 ------- 0 0.0 5.0 11 215 - 1.27365 4 5 tcp 1000 ------- 0 0.0 5.0 11 215 r 1.274 1 3 cbr 500 ------- 1 1.0 6.0 120 235 + 1.274 3 4 cbr 500 ------- 1 1.0 6.0 120 235 r 1.27525 4 5 tcp 1000 ------- 0 0.0 5.0 10 213 + 1.27525 5 4 ack 40 ------- 0 5.0 0.0 10 240 - 1.27525 5 4 ack 40 ------- 0 5.0 0.0 10 240 - 1.27565 3 4 tcp 1000 ------- 0 0.0 5.0 16 228 r 1.27765 3 4 cbr 500 ------- 1 1.0 6.0 111 217 + 1.27765 4 6 cbr 500 ------- 1 1.0 6.0 111 217 - 1.27765 4 6 cbr 500 ------- 1 1.0 6.0 111 217 + 1.28 2 3 cbr 1000 ------- 1 2.0 7.0 79 241 - 1.28 2 3 cbr 1000 ------- 1 2.0 7.0 79 241 + 1.28 1 3 cbr 500 ------- 1 1.0 6.0 123 242 - 1.28 1 3 cbr 500 ------- 1 1.0 6.0 123 242 r 1.28331 5 4 ack 40 ------- 0 5.0 0.0 9 238 + 1.28331 4 3 ack 40 ------- 0 5.0 0.0 9 238 - 1.28331 4 3 ack 40 ------- 0 5.0 0.0 9 238 - 1.28365 3 4 cbr 1000 ------- 1 2.0 7.0 75 226 r 1.284 1 3 cbr 500 ------- 1 1.0 6.0 121 237 + 1.284 3 4 cbr 500 ------- 1 1.0 6.0 121 237 r 1.28565 3 4 cbr 1000 ------- 1 2.0 7.0 73 216 + 1.28565 4 7 cbr 1000 ------- 1 2.0 7.0 73 216 - 1.28565 4 7 cbr 1000 ------- 1 2.0 7.0 73 216 r 1.288 2 3 cbr 1000 ------- 1 2.0 7.0 78 236 + 1.288 3 4 cbr 1000 ------- 1 2.0 7.0 78 236 r 1.28965 4 7 cbr 1000 ------- 1 2.0 7.0 72 211 r 1.28965 4 6 cbr 500 ------- 1 1.0 6.0 110 214 + 1.29 1 3 cbr 500 ------- 1 1.0 6.0 124 243 - 1.29 1 3 cbr 500 ------- 1 1.0 6.0 124 243 - 1.29165 3 4 cbr 500 ------- 1 1.0 6.0 117 231 r 1.29365 3 4 tcp 1000 ------- 0 0.0 5.0 12 218 + 1.29365 4 5 tcp 1000 ------- 0 0.0 5.0 12 218 - 1.29365 4 5 tcp 1000 ------- 0 0.0 5.0 12 218 r 1.294 1 3 cbr 500 ------- 1 1.0 6.0 122 239 + 1.294 3 4 cbr 500 ------- 1 1.0 6.0 122 239 r 1.29525 4 5 tcp 1000 ------- 0 0.0 5.0 11 215 + 1.29525 5 4 ack 40 ------- 0 5.0 0.0 11 244 - 1.29525 5 4 ack 40 ------- 0 5.0 0.0 11 244 r 1.29531 5 4 ack 40 ------- 0 5.0 0.0 10 240 + 1.29531 4 3 ack 40 ------- 0 5.0 0.0 10 240 - 1.29531 4 3 ack 40 ------- 0 5.0 0.0 10 240 - 1.29565 3 4 cbr 1000 ------- 1 2.0 7.0 76 230 r 1.29765 3 4 cbr 500 ------- 1 1.0 6.0 112 219 + 1.29765 4 6 cbr 500 ------- 1 1.0 6.0 112 219 - 1.29765 4 6 cbr 500 ------- 1 1.0 6.0 112 219 + 1.3 2 3 cbr 1000 ------- 1 2.0 7.0 80 245 - 1.3 2 3 cbr 1000 ------- 1 2.0 7.0 80 245 + 1.3 1 3 cbr 500 ------- 1 1.0 6.0 125 246 - 1.3 1 3 cbr 500 ------- 1 1.0 6.0 125 246 r 1.30165 4 6 cbr 500 ------- 1 1.0 6.0 111 217 - 1.30365 3 4 cbr 500 ------- 1 1.0 6.0 118 232 r 1.304 1 3 cbr 500 ------- 1 1.0 6.0 123 242 + 1.304 3 4 cbr 500 ------- 1 1.0 6.0 123 242 r 1.30565 3 4 tcp 1000 ------- 0 0.0 5.0 13 220 + 1.30565 4 5 tcp 1000 ------- 0 0.0 5.0 13 220 - 1.30565 4 5 tcp 1000 ------- 0 0.0 5.0 13 220 - 1.30765 3 4 cbr 500 ------- 1 1.0 6.0 119 234 r 1.308 2 3 cbr 1000 ------- 1 2.0 7.0 79 241 + 1.308 3 4 cbr 1000 ------- 1 2.0 7.0 79 241 r 1.30965 3 4 cbr 500 ------- 1 1.0 6.0 113 222 + 1.30965 4 6 cbr 500 ------- 1 1.0 6.0 113 222 - 1.30965 4 6 cbr 500 ------- 1 1.0 6.0 113 222 + 1.31 1 3 cbr 500 ------- 1 1.0 6.0 126 247 - 1.31 1 3 cbr 500 ------- 1 1.0 6.0 126 247 - 1.31165 3 4 cbr 1000 ------- 1 2.0 7.0 77 233 r 1.31365 4 7 cbr 1000 ------- 1 2.0 7.0 73 216 r 1.314 1 3 cbr 500 ------- 1 1.0 6.0 124 243 + 1.314 3 4 cbr 500 ------- 1 1.0 6.0 124 243 r 1.31525 4 5 tcp 1000 ------- 0 0.0 5.0 12 218 + 1.31525 5 4 ack 40 ------- 0 5.0 0.0 12 248 - 1.31525 5 4 ack 40 ------- 0 5.0 0.0 12 248 r 1.31531 5 4 ack 40 ------- 0 5.0 0.0 11 244 + 1.31531 4 3 ack 40 ------- 0 5.0 0.0 11 244 - 1.31531 4 3 ack 40 ------- 0 5.0 0.0 11 244 r 1.31765 3 4 tcp 1000 ------- 0 0.0 5.0 14 223 + 1.31765 4 5 tcp 1000 ------- 0 0.0 5.0 14 223 - 1.31765 4 5 tcp 1000 ------- 0 0.0 5.0 14 223 - 1.31965 3 4 cbr 500 ------- 1 1.0 6.0 120 235 + 1.32 2 3 cbr 1000 ------- 1 2.0 7.0 81 249 - 1.32 2 3 cbr 1000 ------- 1 2.0 7.0 81 249 + 1.32 1 3 cbr 500 ------- 1 1.0 6.0 127 250 - 1.32 1 3 cbr 500 ------- 1 1.0 6.0 127 250 r 1.32165 3 4 cbr 500 ------- 1 1.0 6.0 114 224 + 1.32165 4 6 cbr 500 ------- 1 1.0 6.0 114 224 - 1.32165 4 6 cbr 500 ------- 1 1.0 6.0 114 224 r 1.32165 4 6 cbr 500 ------- 1 1.0 6.0 112 219 - 1.32365 3 4 cbr 500 ------- 1 1.0 6.0 121 237 r 1.324 1 3 cbr 500 ------- 1 1.0 6.0 125 246 + 1.324 3 4 cbr 500 ------- 1 1.0 6.0 125 246 r 1.32565 3 4 cbr 500 ------- 1 1.0 6.0 115 227 + 1.32565 4 6 cbr 500 ------- 1 1.0 6.0 115 227 - 1.32565 4 6 cbr 500 ------- 1 1.0 6.0 115 227 r 1.32725 4 5 tcp 1000 ------- 0 0.0 5.0 13 220 + 1.32725 5 4 ack 40 ------- 0 5.0 0.0 13 251 - 1.32725 5 4 ack 40 ------- 0 5.0 0.0 13 251 - 1.32765 3 4 cbr 1000 ------- 1 2.0 7.0 78 236 r 1.328 2 3 cbr 1000 ------- 1 2.0 7.0 80 245 + 1.328 3 4 cbr 1000 ------- 1 2.0 7.0 80 245 + 1.33 1 3 cbr 500 ------- 1 1.0 6.0 128 252 - 1.33 1 3 cbr 500 ------- 1 1.0 6.0 128 252 r 1.33363 4 3 ack 40 ------- 0 5.0 0.0 9 238 + 1.33363 3 0 ack 40 ------- 0 5.0 0.0 9 238 - 1.33363 3 0 ack 40 ------- 0 5.0 0.0 9 238 r 1.33365 3 4 tcp 1000 ------- 0 0.0 5.0 16 228 + 1.33365 4 5 tcp 1000 ------- 0 0.0 5.0 16 228 - 1.33365 4 5 tcp 1000 ------- 0 0.0 5.0 16 228 r 1.33365 4 6 cbr 500 ------- 1 1.0 6.0 113 222 r 1.334 1 3 cbr 500 ------- 1 1.0 6.0 126 247 + 1.334 3 4 cbr 500 ------- 1 1.0 6.0 126 247 r 1.33531 5 4 ack 40 ------- 0 5.0 0.0 12 248 + 1.33531 4 3 ack 40 ------- 0 5.0 0.0 12 248 - 1.33531 4 3 ack 40 ------- 0 5.0 0.0 12 248 - 1.33565 3 4 cbr 500 ------- 1 1.0 6.0 122 239 r 1.33925 4 5 tcp 1000 ------- 0 0.0 5.0 14 223 + 1.33925 5 4 ack 40 ------- 0 5.0 0.0 14 253 - 1.33925 5 4 ack 40 ------- 0 5.0 0.0 14 253 - 1.33965 3 4 cbr 500 ------- 1 1.0 6.0 123 242 + 1.34 2 3 cbr 1000 ------- 1 2.0 7.0 82 254 - 1.34 2 3 cbr 1000 ------- 1 2.0 7.0 82 254 + 1.34 1 3 cbr 500 ------- 1 1.0 6.0 129 255 - 1.34 1 3 cbr 500 ------- 1 1.0 6.0 129 255 r 1.34165 3 4 cbr 1000 ------- 1 2.0 7.0 75 226 + 1.34165 4 7 cbr 1000 ------- 1 2.0 7.0 75 226 - 1.34165 4 7 cbr 1000 ------- 1 2.0 7.0 75 226 - 1.34365 3 4 cbr 1000 ------- 1 2.0 7.0 79 241 r 1.344 1 3 cbr 500 ------- 1 1.0 6.0 127 250 + 1.344 3 4 cbr 500 ------- 1 1.0 6.0 127 250 r 1.34563 4 3 ack 40 ------- 0 5.0 0.0 10 240 + 1.34563 3 0 ack 40 ------- 0 5.0 0.0 10 240 - 1.34563 3 0 ack 40 ------- 0 5.0 0.0 10 240 r 1.34565 3 4 cbr 500 ------- 1 1.0 6.0 117 231 + 1.34565 4 6 cbr 500 ------- 1 1.0 6.0 117 231 - 1.34565 4 6 cbr 500 ------- 1 1.0 6.0 117 231 r 1.34565 4 6 cbr 500 ------- 1 1.0 6.0 114 224 r 1.34731 5 4 ack 40 ------- 0 5.0 0.0 13 251 + 1.34731 4 3 ack 40 ------- 0 5.0 0.0 13 251 - 1.34731 4 3 ack 40 ------- 0 5.0 0.0 13 251 r 1.348 2 3 cbr 1000 ------- 1 2.0 7.0 81 249 + 1.348 3 4 cbr 1000 ------- 1 2.0 7.0 81 249 r 1.34965 4 6 cbr 500 ------- 1 1.0 6.0 115 227 v 1.3500000000000001 eval {set sim_annotation {Send Packet_17 to 22}} + 1.35 1 3 cbr 500 ------- 1 1.0 6.0 130 256 - 1.35 1 3 cbr 500 ------- 1 1.0 6.0 130 256 - 1.35165 3 4 cbr 500 ------- 1 1.0 6.0 124 243 r 1.35365 3 4 cbr 1000 ------- 1 2.0 7.0 76 230 + 1.35365 4 7 cbr 1000 ------- 1 2.0 7.0 76 230 - 1.35365 4 7 cbr 1000 ------- 1 2.0 7.0 76 230 r 1.3537 3 0 ack 40 ------- 0 5.0 0.0 9 238 + 1.3537 0 3 tcp 1000 ------- 0 0.0 5.0 17 257 - 1.3537 0 3 tcp 1000 ------- 0 0.0 5.0 17 257 r 1.354 1 3 cbr 500 ------- 1 1.0 6.0 128 252 + 1.354 3 4 cbr 500 ------- 1 1.0 6.0 128 252 r 1.35525 4 5 tcp 1000 ------- 0 0.0 5.0 16 228 + 1.35525 5 4 ack 40 ------- 0 5.0 0.0 14 258 - 1.35525 5 4 ack 40 ------- 0 5.0 0.0 14 258 - 1.35565 3 4 cbr 500 ------- 1 1.0 6.0 125 246 r 1.35765 3 4 cbr 500 ------- 1 1.0 6.0 118 232 + 1.35765 4 6 cbr 500 ------- 1 1.0 6.0 118 232 - 1.35765 4 6 cbr 500 ------- 1 1.0 6.0 118 232 r 1.35931 5 4 ack 40 ------- 0 5.0 0.0 14 253 + 1.35931 4 3 ack 40 ------- 0 5.0 0.0 14 253 - 1.35931 4 3 ack 40 ------- 0 5.0 0.0 14 253 - 1.35965 3 4 cbr 1000 ------- 1 2.0 7.0 80 245 + 1.36 2 3 cbr 1000 ------- 1 2.0 7.0 83 259 - 1.36 2 3 cbr 1000 ------- 1 2.0 7.0 83 259 + 1.36 1 3 cbr 500 ------- 1 1.0 6.0 131 260 - 1.36 1 3 cbr 500 ------- 1 1.0 6.0 131 260 r 1.36165 3 4 cbr 500 ------- 1 1.0 6.0 119 234 + 1.36165 4 6 cbr 500 ------- 1 1.0 6.0 119 234 - 1.36165 4 6 cbr 500 ------- 1 1.0 6.0 119 234 r 1.364 1 3 cbr 500 ------- 1 1.0 6.0 129 255 + 1.364 3 4 cbr 500 ------- 1 1.0 6.0 129 255 r 1.36563 4 3 ack 40 ------- 0 5.0 0.0 11 244 + 1.36563 3 0 ack 40 ------- 0 5.0 0.0 11 244 - 1.36563 3 0 ack 40 ------- 0 5.0 0.0 11 244 r 1.3657 3 0 ack 40 ------- 0 5.0 0.0 10 240 + 1.3657 0 3 tcp 1000 ------- 0 0.0 5.0 18 261 - 1.3657 0 3 tcp 1000 ------- 0 0.0 5.0 18 261 - 1.36765 3 4 cbr 500 ------- 1 1.0 6.0 126 247 r 1.368 2 3 cbr 1000 ------- 1 2.0 7.0 82 254 + 1.368 3 4 cbr 1000 ------- 1 2.0 7.0 82 254 r 1.36965 3 4 cbr 1000 ------- 1 2.0 7.0 77 233 + 1.36965 4 7 cbr 1000 ------- 1 2.0 7.0 77 233 - 1.36965 4 7 cbr 1000 ------- 1 2.0 7.0 77 233 r 1.36965 4 7 cbr 1000 ------- 1 2.0 7.0 75 226 r 1.36965 4 6 cbr 500 ------- 1 1.0 6.0 117 231 + 1.37 1 3 cbr 500 ------- 1 1.0 6.0 132 262 - 1.37 1 3 cbr 500 ------- 1 1.0 6.0 132 262 - 1.37165 3 4 cbr 500 ------- 1 1.0 6.0 127 250 r 1.37365 3 4 cbr 500 ------- 1 1.0 6.0 120 235 + 1.37365 4 6 cbr 500 ------- 1 1.0 6.0 120 235 - 1.37365 4 6 cbr 500 ------- 1 1.0 6.0 120 235 r 1.374 1 3 cbr 500 ------- 1 1.0 6.0 130 256 + 1.374 3 4 cbr 500 ------- 1 1.0 6.0 130 256 r 1.3753 0 3 tcp 1000 ------- 0 0.0 5.0 17 257 + 1.3753 3 4 tcp 1000 ------- 0 0.0 5.0 17 257 r 1.37531 5 4 ack 40 ------- 0 5.0 0.0 14 258 + 1.37531 4 3 ack 40 ------- 0 5.0 0.0 14 258 - 1.37531 4 3 ack 40 ------- 0 5.0 0.0 14 258 - 1.37565 3 4 cbr 1000 ------- 1 2.0 7.0 81 249 r 1.37765 3 4 cbr 500 ------- 1 1.0 6.0 121 237 + 1.37765 4 6 cbr 500 ------- 1 1.0 6.0 121 237 - 1.37765 4 6 cbr 500 ------- 1 1.0 6.0 121 237 + 1.38 2 3 cbr 1000 ------- 1 2.0 7.0 84 263 - 1.38 2 3 cbr 1000 ------- 1 2.0 7.0 84 263 + 1.38 1 3 cbr 500 ------- 1 1.0 6.0 133 264 - 1.38 1 3 cbr 500 ------- 1 1.0 6.0 133 264 r 1.38165 4 7 cbr 1000 ------- 1 2.0 7.0 76 230 r 1.38165 4 6 cbr 500 ------- 1 1.0 6.0 118 232 - 1.38365 3 4 cbr 500 ------- 1 1.0 6.0 128 252 r 1.384 1 3 cbr 500 ------- 1 1.0 6.0 131 260 + 1.384 3 4 cbr 500 ------- 1 1.0 6.0 131 260 r 1.38563 4 3 ack 40 ------- 0 5.0 0.0 12 248 + 1.38563 3 0 ack 40 ------- 0 5.0 0.0 12 248 - 1.38563 3 0 ack 40 ------- 0 5.0 0.0 12 248 r 1.38565 3 4 cbr 1000 ------- 1 2.0 7.0 78 236 + 1.38565 4 7 cbr 1000 ------- 1 2.0 7.0 78 236 - 1.38565 4 7 cbr 1000 ------- 1 2.0 7.0 78 236 r 1.38565 4 6 cbr 500 ------- 1 1.0 6.0 119 234 r 1.3857 3 0 ack 40 ------- 0 5.0 0.0 11 244 + 1.3857 0 3 tcp 1000 ------- 0 0.0 5.0 19 265 - 1.3857 0 3 tcp 1000 ------- 0 0.0 5.0 19 265 r 1.3873 0 3 tcp 1000 ------- 0 0.0 5.0 18 261 + 1.3873 3 4 tcp 1000 ------- 0 0.0 5.0 18 261 - 1.38765 3 4 cbr 500 ------- 1 1.0 6.0 129 255 r 1.388 2 3 cbr 1000 ------- 1 2.0 7.0 83 259 + 1.388 3 4 cbr 1000 ------- 1 2.0 7.0 83 259 r 1.38965 3 4 cbr 500 ------- 1 1.0 6.0 122 239 + 1.38965 4 6 cbr 500 ------- 1 1.0 6.0 122 239 - 1.38965 4 6 cbr 500 ------- 1 1.0 6.0 122 239 + 1.39 1 3 cbr 500 ------- 1 1.0 6.0 134 266 - 1.39 1 3 cbr 500 ------- 1 1.0 6.0 134 266 - 1.39165 3 4 cbr 1000 ------- 1 2.0 7.0 82 254 r 1.39365 3 4 cbr 500 ------- 1 1.0 6.0 123 242 + 1.39365 4 6 cbr 500 ------- 1 1.0 6.0 123 242 - 1.39365 4 6 cbr 500 ------- 1 1.0 6.0 123 242 r 1.394 1 3 cbr 500 ------- 1 1.0 6.0 132 262 + 1.394 3 4 cbr 500 ------- 1 1.0 6.0 132 262 r 1.39763 4 3 ack 40 ------- 0 5.0 0.0 13 251 + 1.39763 3 0 ack 40 ------- 0 5.0 0.0 13 251 - 1.39763 3 0 ack 40 ------- 0 5.0 0.0 13 251 r 1.39765 4 7 cbr 1000 ------- 1 2.0 7.0 77 233 r 1.39765 4 6 cbr 500 ------- 1 1.0 6.0 120 235 - 1.39965 3 4 cbr 500 ------- 1 1.0 6.0 130 256 + 1.4 2 3 cbr 1000 ------- 1 2.0 7.0 85 267 - 1.4 2 3 cbr 1000 ------- 1 2.0 7.0 85 267 + 1.4 1 3 cbr 500 ------- 1 1.0 6.0 135 268 - 1.4 1 3 cbr 500 ------- 1 1.0 6.0 135 268 r 1.40165 3 4 cbr 1000 ------- 1 2.0 7.0 79 241 + 1.40165 4 7 cbr 1000 ------- 1 2.0 7.0 79 241 - 1.40165 4 7 cbr 1000 ------- 1 2.0 7.0 79 241 r 1.40165 4 6 cbr 500 ------- 1 1.0 6.0 121 237 - 1.40365 3 4 tcp 1000 ------- 0 0.0 5.0 17 257 r 1.404 1 3 cbr 500 ------- 1 1.0 6.0 133 264 + 1.404 3 4 cbr 500 ------- 1 1.0 6.0 133 264 r 1.40565 3 4 cbr 500 ------- 1 1.0 6.0 124 243 + 1.40565 4 6 cbr 500 ------- 1 1.0 6.0 124 243 - 1.40565 4 6 cbr 500 ------- 1 1.0 6.0 124 243 r 1.4057 3 0 ack 40 ------- 0 5.0 0.0 12 248 + 1.4057 0 3 tcp 1000 ------- 0 0.0 5.0 20 269 - 1.4057 0 3 tcp 1000 ------- 0 0.0 5.0 20 269 r 1.4073 0 3 tcp 1000 ------- 0 0.0 5.0 19 265 + 1.4073 3 4 tcp 1000 ------- 0 0.0 5.0 19 265 r 1.408 2 3 cbr 1000 ------- 1 2.0 7.0 84 263 + 1.408 3 4 cbr 1000 ------- 1 2.0 7.0 84 263 r 1.40963 4 3 ack 40 ------- 0 5.0 0.0 14 253 + 1.40963 3 0 ack 40 ------- 0 5.0 0.0 14 253 - 1.40963 3 0 ack 40 ------- 0 5.0 0.0 14 253 r 1.40965 3 4 cbr 500 ------- 1 1.0 6.0 125 246 + 1.40965 4 6 cbr 500 ------- 1 1.0 6.0 125 246 - 1.40965 4 6 cbr 500 ------- 1 1.0 6.0 125 246 + 1.41 1 3 cbr 500 ------- 1 1.0 6.0 136 270 - 1.41 1 3 cbr 500 ------- 1 1.0 6.0 136 270 - 1.41165 3 4 cbr 500 ------- 1 1.0 6.0 131 260 r 1.41365 4 7 cbr 1000 ------- 1 2.0 7.0 78 236 r 1.41365 4 6 cbr 500 ------- 1 1.0 6.0 122 239 r 1.414 1 3 cbr 500 ------- 1 1.0 6.0 134 266 + 1.414 3 4 cbr 500 ------- 1 1.0 6.0 134 266 - 1.41565 3 4 tcp 1000 ------- 0 0.0 5.0 18 261 r 1.41765 3 4 cbr 1000 ------- 1 2.0 7.0 80 245 + 1.41765 4 7 cbr 1000 ------- 1 2.0 7.0 80 245 - 1.41765 4 7 cbr 1000 ------- 1 2.0 7.0 80 245 r 1.41765 4 6 cbr 500 ------- 1 1.0 6.0 123 242 r 1.4177 3 0 ack 40 ------- 0 5.0 0.0 13 251 + 1.4177 0 3 tcp 1000 ------- 0 0.0 5.0 21 271 - 1.4177 0 3 tcp 1000 ------- 0 0.0 5.0 21 271 + 1.42 2 3 cbr 1000 ------- 1 2.0 7.0 86 272 - 1.42 2 3 cbr 1000 ------- 1 2.0 7.0 86 272 + 1.42 1 3 cbr 500 ------- 1 1.0 6.0 137 273 - 1.42 1 3 cbr 500 ------- 1 1.0 6.0 137 273 r 1.42165 3 4 cbr 500 ------- 1 1.0 6.0 126 247 + 1.42165 4 6 cbr 500 ------- 1 1.0 6.0 126 247 - 1.42165 4 6 cbr 500 ------- 1 1.0 6.0 126 247 - 1.42365 3 4 cbr 1000 ------- 1 2.0 7.0 83 259 r 1.424 1 3 cbr 500 ------- 1 1.0 6.0 135 268 + 1.424 3 4 cbr 500 ------- 1 1.0 6.0 135 268 r 1.42563 4 3 ack 40 ------- 0 5.0 0.0 14 258 + 1.42563 3 0 ack 40 ------- 0 5.0 0.0 14 258 - 1.42563 3 0 ack 40 ------- 0 5.0 0.0 14 258 r 1.42565 3 4 cbr 500 ------- 1 1.0 6.0 127 250 + 1.42565 4 6 cbr 500 ------- 1 1.0 6.0 127 250 - 1.42565 4 6 cbr 500 ------- 1 1.0 6.0 127 250 r 1.4273 0 3 tcp 1000 ------- 0 0.0 5.0 20 269 + 1.4273 3 4 tcp 1000 ------- 0 0.0 5.0 20 269 r 1.428 2 3 cbr 1000 ------- 1 2.0 7.0 85 267 + 1.428 3 4 cbr 1000 ------- 1 2.0 7.0 85 267 r 1.42965 4 7 cbr 1000 ------- 1 2.0 7.0 79 241 r 1.42965 4 6 cbr 500 ------- 1 1.0 6.0 124 243 r 1.4297 3 0 ack 40 ------- 0 5.0 0.0 14 253 + 1.4297 0 3 tcp 1000 ------- 0 0.0 5.0 22 274 - 1.4297 0 3 tcp 1000 ------- 0 0.0 5.0 22 274 + 1.43 1 3 cbr 500 ------- 1 1.0 6.0 138 275 - 1.43 1 3 cbr 500 ------- 1 1.0 6.0 138 275 - 1.43165 3 4 cbr 500 ------- 1 1.0 6.0 132 262 r 1.43365 3 4 cbr 1000 ------- 1 2.0 7.0 81 249 + 1.43365 4 7 cbr 1000 ------- 1 2.0 7.0 81 249 - 1.43365 4 7 cbr 1000 ------- 1 2.0 7.0 81 249 r 1.43365 4 6 cbr 500 ------- 1 1.0 6.0 125 246 r 1.434 1 3 cbr 500 ------- 1 1.0 6.0 136 270 + 1.434 3 4 cbr 500 ------- 1 1.0 6.0 136 270 - 1.43565 3 4 cbr 500 ------- 1 1.0 6.0 133 264 r 1.43765 3 4 cbr 500 ------- 1 1.0 6.0 128 252 + 1.43765 4 6 cbr 500 ------- 1 1.0 6.0 128 252 - 1.43765 4 6 cbr 500 ------- 1 1.0 6.0 128 252 r 1.4393 0 3 tcp 1000 ------- 0 0.0 5.0 21 271 + 1.4393 3 4 tcp 1000 ------- 0 0.0 5.0 21 271 - 1.43965 3 4 tcp 1000 ------- 0 0.0 5.0 19 265 + 1.44 2 3 cbr 1000 ------- 1 2.0 7.0 87 276 - 1.44 2 3 cbr 1000 ------- 1 2.0 7.0 87 276 + 1.44 1 3 cbr 500 ------- 1 1.0 6.0 139 277 - 1.44 1 3 cbr 500 ------- 1 1.0 6.0 139 277 r 1.44165 3 4 cbr 500 ------- 1 1.0 6.0 129 255 + 1.44165 4 6 cbr 500 ------- 1 1.0 6.0 129 255 - 1.44165 4 6 cbr 500 ------- 1 1.0 6.0 129 255 r 1.444 1 3 cbr 500 ------- 1 1.0 6.0 137 273 + 1.444 3 4 cbr 500 ------- 1 1.0 6.0 137 273 r 1.44565 4 7 cbr 1000 ------- 1 2.0 7.0 80 245 r 1.44565 4 6 cbr 500 ------- 1 1.0 6.0 126 247 r 1.4457 3 0 ack 40 ------- 0 5.0 0.0 14 258 - 1.44765 3 4 cbr 1000 ------- 1 2.0 7.0 84 263 r 1.448 2 3 cbr 1000 ------- 1 2.0 7.0 86 272 + 1.448 3 4 cbr 1000 ------- 1 2.0 7.0 86 272 r 1.44965 3 4 cbr 1000 ------- 1 2.0 7.0 82 254 + 1.44965 4 7 cbr 1000 ------- 1 2.0 7.0 82 254 - 1.44965 4 7 cbr 1000 ------- 1 2.0 7.0 82 254 r 1.44965 4 6 cbr 500 ------- 1 1.0 6.0 127 250 + 1.45 1 3 cbr 500 ------- 1 1.0 6.0 140 278 - 1.45 1 3 cbr 500 ------- 1 1.0 6.0 140 278 r 1.4513 0 3 tcp 1000 ------- 0 0.0 5.0 22 274 + 1.4513 3 4 tcp 1000 ------- 0 0.0 5.0 22 274 r 1.45365 3 4 cbr 500 ------- 1 1.0 6.0 130 256 + 1.45365 4 6 cbr 500 ------- 1 1.0 6.0 130 256 - 1.45365 4 6 cbr 500 ------- 1 1.0 6.0 130 256 r 1.454 1 3 cbr 500 ------- 1 1.0 6.0 138 275 + 1.454 3 4 cbr 500 ------- 1 1.0 6.0 138 275 d 1.454 3 4 cbr 500 ------- 1 1.0 6.0 138 275 - 1.45565 3 4 cbr 500 ------- 1 1.0 6.0 134 266 - 1.45965 3 4 cbr 500 ------- 1 1.0 6.0 135 268 + 1.46 2 3 cbr 1000 ------- 1 2.0 7.0 88 279 - 1.46 2 3 cbr 1000 ------- 1 2.0 7.0 88 279 + 1.46 1 3 cbr 500 ------- 1 1.0 6.0 141 280 - 1.46 1 3 cbr 500 ------- 1 1.0 6.0 141 280 r 1.46165 3 4 tcp 1000 ------- 0 0.0 5.0 17 257 + 1.46165 4 5 tcp 1000 ------- 0 0.0 5.0 17 257 - 1.46165 4 5 tcp 1000 ------- 0 0.0 5.0 17 257 r 1.46165 4 7 cbr 1000 ------- 1 2.0 7.0 81 249 r 1.46165 4 6 cbr 500 ------- 1 1.0 6.0 128 252 - 1.46365 3 4 tcp 1000 ------- 0 0.0 5.0 20 269 r 1.464 1 3 cbr 500 ------- 1 1.0 6.0 139 277 + 1.464 3 4 cbr 500 ------- 1 1.0 6.0 139 277 r 1.46565 3 4 cbr 500 ------- 1 1.0 6.0 131 260 + 1.46565 4 6 cbr 500 ------- 1 1.0 6.0 131 260 - 1.46565 4 6 cbr 500 ------- 1 1.0 6.0 131 260 r 1.46565 4 6 cbr 500 ------- 1 1.0 6.0 129 255 r 1.468 2 3 cbr 1000 ------- 1 2.0 7.0 87 276 + 1.468 3 4 cbr 1000 ------- 1 2.0 7.0 87 276 + 1.47 1 3 cbr 500 ------- 1 1.0 6.0 142 281 - 1.47 1 3 cbr 500 ------- 1 1.0 6.0 142 281 - 1.47165 3 4 cbr 1000 ------- 1 2.0 7.0 85 267 r 1.47365 3 4 tcp 1000 ------- 0 0.0 5.0 18 261 + 1.47365 4 5 tcp 1000 ------- 0 0.0 5.0 18 261 - 1.47365 4 5 tcp 1000 ------- 0 0.0 5.0 18 261 r 1.474 1 3 cbr 500 ------- 1 1.0 6.0 140 278 + 1.474 3 4 cbr 500 ------- 1 1.0 6.0 140 278 r 1.47765 4 7 cbr 1000 ------- 1 2.0 7.0 82 254 r 1.47765 4 6 cbr 500 ------- 1 1.0 6.0 130 256 - 1.47965 3 4 cbr 500 ------- 1 1.0 6.0 136 270 + 1.48 2 3 cbr 1000 ------- 1 2.0 7.0 89 282 - 1.48 2 3 cbr 1000 ------- 1 2.0 7.0 89 282 + 1.48 1 3 cbr 500 ------- 1 1.0 6.0 143 283 - 1.48 1 3 cbr 500 ------- 1 1.0 6.0 143 283 r 1.48165 3 4 cbr 1000 ------- 1 2.0 7.0 83 259 + 1.48165 4 7 cbr 1000 ------- 1 2.0 7.0 83 259 - 1.48165 4 7 cbr 1000 ------- 1 2.0 7.0 83 259 r 1.48325 4 5 tcp 1000 ------- 0 0.0 5.0 17 257 + 1.48325 5 4 ack 40 ------- 0 5.0 0.0 14 284 - 1.48325 5 4 ack 40 ------- 0 5.0 0.0 14 284 - 1.48365 3 4 tcp 1000 ------- 0 0.0 5.0 21 271 r 1.484 1 3 cbr 500 ------- 1 1.0 6.0 141 280 + 1.484 3 4 cbr 500 ------- 1 1.0 6.0 141 280 r 1.48565 3 4 cbr 500 ------- 1 1.0 6.0 132 262 + 1.48565 4 6 cbr 500 ------- 1 1.0 6.0 132 262 - 1.48565 4 6 cbr 500 ------- 1 1.0 6.0 132 262 r 1.488 2 3 cbr 1000 ------- 1 2.0 7.0 88 279 + 1.488 3 4 cbr 1000 ------- 1 2.0 7.0 88 279 r 1.48965 3 4 cbr 500 ------- 1 1.0 6.0 133 264 + 1.48965 4 6 cbr 500 ------- 1 1.0 6.0 133 264 r 1.48965 4 6 cbr 500 ------- 1 1.0 6.0 131 260 - 1.48965 4 6 cbr 500 ------- 1 1.0 6.0 133 264 v 1.49 eval {set sim_annotation {6 Ack_14s }} + 1.49 1 3 cbr 500 ------- 1 1.0 6.0 144 285 - 1.49 1 3 cbr 500 ------- 1 1.0 6.0 144 285 - 1.49165 3 4 cbr 500 ------- 1 1.0 6.0 137 273 r 1.494 1 3 cbr 500 ------- 1 1.0 6.0 142 281 + 1.494 3 4 cbr 500 ------- 1 1.0 6.0 142 281 r 1.49525 4 5 tcp 1000 ------- 0 0.0 5.0 18 261 + 1.49525 5 4 ack 40 ------- 0 5.0 0.0 14 286 - 1.49525 5 4 ack 40 ------- 0 5.0 0.0 14 286 - 1.49565 3 4 cbr 1000 ------- 1 2.0 7.0 86 272 r 1.49765 3 4 tcp 1000 ------- 0 0.0 5.0 19 265 + 1.49765 4 5 tcp 1000 ------- 0 0.0 5.0 19 265 - 1.49765 4 5 tcp 1000 ------- 0 0.0 5.0 19 265 + 1.5 2 3 cbr 1000 ------- 1 2.0 7.0 90 287 - 1.5 2 3 cbr 1000 ------- 1 2.0 7.0 90 287 + 1.5 1 3 cbr 500 ------- 1 1.0 6.0 145 288 - 1.5 1 3 cbr 500 ------- 1 1.0 6.0 145 288 r 1.50331 5 4 ack 40 ------- 0 5.0 0.0 14 284 + 1.50331 4 3 ack 40 ------- 0 5.0 0.0 14 284 - 1.50331 4 3 ack 40 ------- 0 5.0 0.0 14 284 - 1.50365 3 4 tcp 1000 ------- 0 0.0 5.0 22 274 r 1.504 1 3 cbr 500 ------- 1 1.0 6.0 143 283 + 1.504 3 4 cbr 500 ------- 1 1.0 6.0 143 283 r 1.50565 3 4 cbr 1000 ------- 1 2.0 7.0 84 263 + 1.50565 4 7 cbr 1000 ------- 1 2.0 7.0 84 263 - 1.50565 4 7 cbr 1000 ------- 1 2.0 7.0 84 263 r 1.508 2 3 cbr 1000 ------- 1 2.0 7.0 89 282 + 1.508 3 4 cbr 1000 ------- 1 2.0 7.0 89 282 r 1.50965 3 4 cbr 500 ------- 1 1.0 6.0 134 266 + 1.50965 4 6 cbr 500 ------- 1 1.0 6.0 134 266 - 1.50965 4 6 cbr 500 ------- 1 1.0 6.0 134 266 r 1.50965 4 7 cbr 1000 ------- 1 2.0 7.0 83 259 r 1.50965 4 6 cbr 500 ------- 1 1.0 6.0 132 262 - 1.51165 3 4 cbr 500 ------- 1 1.0 6.0 139 277 r 1.51365 3 4 cbr 500 ------- 1 1.0 6.0 135 268 + 1.51365 4 6 cbr 500 ------- 1 1.0 6.0 135 268 r 1.51365 4 6 cbr 500 ------- 1 1.0 6.0 133 264 - 1.51365 4 6 cbr 500 ------- 1 1.0 6.0 135 268 r 1.514 1 3 cbr 500 ------- 1 1.0 6.0 144 285 + 1.514 3 4 cbr 500 ------- 1 1.0 6.0 144 285 r 1.51531 5 4 ack 40 ------- 0 5.0 0.0 14 286 + 1.51531 4 3 ack 40 ------- 0 5.0 0.0 14 286 - 1.51531 4 3 ack 40 ------- 0 5.0 0.0 14 286 - 1.51565 3 4 cbr 1000 ------- 1 2.0 7.0 87 276 r 1.51925 4 5 tcp 1000 ------- 0 0.0 5.0 19 265 + 1.51925 5 4 ack 40 ------- 0 5.0 0.0 14 289 - 1.51925 5 4 ack 40 ------- 0 5.0 0.0 14 289 + 1.52 2 3 cbr 1000 ------- 1 2.0 7.0 91 290 - 1.52 2 3 cbr 1000 ------- 1 2.0 7.0 91 290 + 1.52 1 3 cbr 500 ------- 1 1.0 6.0 146 291 - 1.52 1 3 cbr 500 ------- 1 1.0 6.0 146 291 r 1.52165 3 4 tcp 1000 ------- 0 0.0 5.0 20 269 + 1.52165 4 5 tcp 1000 ------- 0 0.0 5.0 20 269 - 1.52165 4 5 tcp 1000 ------- 0 0.0 5.0 20 269 - 1.52365 3 4 cbr 500 ------- 1 1.0 6.0 140 278 r 1.524 1 3 cbr 500 ------- 1 1.0 6.0 145 288 + 1.524 3 4 cbr 500 ------- 1 1.0 6.0 145 288 - 1.52765 3 4 cbr 500 ------- 1 1.0 6.0 141 280 r 1.528 2 3 cbr 1000 ------- 1 2.0 7.0 90 287 + 1.528 3 4 cbr 1000 ------- 1 2.0 7.0 90 287 r 1.52965 3 4 cbr 1000 ------- 1 2.0 7.0 85 267 + 1.52965 4 7 cbr 1000 ------- 1 2.0 7.0 85 267 - 1.52965 4 7 cbr 1000 ------- 1 2.0 7.0 85 267 - 1.53165 3 4 cbr 1000 ------- 1 2.0 7.0 88 279 r 1.53365 3 4 cbr 500 ------- 1 1.0 6.0 136 270 + 1.53365 4 6 cbr 500 ------- 1 1.0 6.0 136 270 - 1.53365 4 6 cbr 500 ------- 1 1.0 6.0 136 270 r 1.53365 4 7 cbr 1000 ------- 1 2.0 7.0 84 263 r 1.53365 4 6 cbr 500 ------- 1 1.0 6.0 134 266 r 1.53765 4 6 cbr 500 ------- 1 1.0 6.0 135 268 r 1.53931 5 4 ack 40 ------- 0 5.0 0.0 14 289 + 1.53931 4 3 ack 40 ------- 0 5.0 0.0 14 289 - 1.53931 4 3 ack 40 ------- 0 5.0 0.0 14 289 - 1.53965 3 4 cbr 500 ------- 1 1.0 6.0 142 281 + 1.54 2 3 cbr 1000 ------- 1 2.0 7.0 92 292 - 1.54 2 3 cbr 1000 ------- 1 2.0 7.0 92 292 + 1.54 1 3 cbr 500 ------- 1 1.0 6.0 147 293 - 1.54 1 3 cbr 500 ------- 1 1.0 6.0 147 293 r 1.54165 3 4 tcp 1000 ------- 0 0.0 5.0 21 271 + 1.54165 4 5 tcp 1000 ------- 0 0.0 5.0 21 271 - 1.54165 4 5 tcp 1000 ------- 0 0.0 5.0 21 271 r 1.54325 4 5 tcp 1000 ------- 0 0.0 5.0 20 269 + 1.54325 5 4 ack 40 ------- 0 5.0 0.0 14 294 - 1.54325 5 4 ack 40 ------- 0 5.0 0.0 14 294 - 1.54365 3 4 cbr 500 ------- 1 1.0 6.0 143 283 r 1.544 1 3 cbr 500 ------- 1 1.0 6.0 146 291 + 1.544 3 4 cbr 500 ------- 1 1.0 6.0 146 291 r 1.54565 3 4 cbr 500 ------- 1 1.0 6.0 137 273 + 1.54565 4 6 cbr 500 ------- 1 1.0 6.0 137 273 - 1.54565 4 6 cbr 500 ------- 1 1.0 6.0 137 273 - 1.54765 3 4 cbr 1000 ------- 1 2.0 7.0 89 282 r 1.548 2 3 cbr 1000 ------- 1 2.0 7.0 91 290 + 1.548 3 4 cbr 1000 ------- 1 2.0 7.0 91 290 r 1.55363 4 3 ack 40 ------- 0 5.0 0.0 14 284 + 1.55363 3 0 ack 40 ------- 0 5.0 0.0 14 284 - 1.55363 3 0 ack 40 ------- 0 5.0 0.0 14 284 r 1.55365 3 4 cbr 1000 ------- 1 2.0 7.0 86 272 + 1.55365 4 7 cbr 1000 ------- 1 2.0 7.0 86 272 - 1.55365 4 7 cbr 1000 ------- 1 2.0 7.0 86 272 - 1.55565 3 4 cbr 500 ------- 1 1.0 6.0 144 285 r 1.55765 4 7 cbr 1000 ------- 1 2.0 7.0 85 267 r 1.55765 4 6 cbr 500 ------- 1 1.0 6.0 136 270 - 1.55965 3 4 cbr 500 ------- 1 1.0 6.0 145 288 + 1.56 2 3 cbr 1000 ------- 1 2.0 7.0 93 295 - 1.56 2 3 cbr 1000 ------- 1 2.0 7.0 93 295 + 1.56 1 3 cbr 500 ------- 1 1.0 6.0 148 296 - 1.56 1 3 cbr 500 ------- 1 1.0 6.0 148 296 r 1.56165 3 4 tcp 1000 ------- 0 0.0 5.0 22 274 + 1.56165 4 5 tcp 1000 ------- 0 0.0 5.0 22 274 - 1.56165 4 5 tcp 1000 ------- 0 0.0 5.0 22 274 r 1.56325 4 5 tcp 1000 ------- 0 0.0 5.0 21 271 + 1.56325 5 4 ack 40 ------- 0 5.0 0.0 14 297 - 1.56325 5 4 ack 40 ------- 0 5.0 0.0 14 297 r 1.56331 5 4 ack 40 ------- 0 5.0 0.0 14 294 + 1.56331 4 3 ack 40 ------- 0 5.0 0.0 14 294 - 1.56331 4 3 ack 40 ------- 0 5.0 0.0 14 294 - 1.56365 3 4 cbr 1000 ------- 1 2.0 7.0 90 287 r 1.564 1 3 cbr 500 ------- 1 1.0 6.0 147 293 + 1.564 3 4 cbr 500 ------- 1 1.0 6.0 147 293 r 1.56563 4 3 ack 40 ------- 0 5.0 0.0 14 286 + 1.56563 3 0 ack 40 ------- 0 5.0 0.0 14 286 - 1.56563 3 0 ack 40 ------- 0 5.0 0.0 14 286 r 1.56565 3 4 cbr 500 ------- 1 1.0 6.0 139 277 + 1.56565 4 6 cbr 500 ------- 1 1.0 6.0 139 277 - 1.56565 4 6 cbr 500 ------- 1 1.0 6.0 139 277 r 1.568 2 3 cbr 1000 ------- 1 2.0 7.0 92 292 + 1.568 3 4 cbr 1000 ------- 1 2.0 7.0 92 292 r 1.56965 4 6 cbr 500 ------- 1 1.0 6.0 137 273 - 1.57165 3 4 cbr 500 ------- 1 1.0 6.0 146 291 r 1.57365 3 4 cbr 1000 ------- 1 2.0 7.0 87 276 + 1.57365 4 7 cbr 1000 ------- 1 2.0 7.0 87 276 - 1.57365 4 7 cbr 1000 ------- 1 2.0 7.0 87 276 r 1.5737 3 0 ack 40 ------- 0 5.0 0.0 14 284 - 1.57565 3 4 cbr 1000 ------- 1 2.0 7.0 91 290 r 1.57765 3 4 cbr 500 ------- 1 1.0 6.0 140 278 + 1.57765 4 6 cbr 500 ------- 1 1.0 6.0 140 278 - 1.57765 4 6 cbr 500 ------- 1 1.0 6.0 140 278 v 1.5800000000000001 eval {set sim_annotation {Send Packet_15 to 22}} + 1.58 2 3 cbr 1000 ------- 1 2.0 7.0 94 298 - 1.58 2 3 cbr 1000 ------- 1 2.0 7.0 94 298 + 1.58 1 3 cbr 500 ------- 1 1.0 6.0 149 299 - 1.58 1 3 cbr 500 ------- 1 1.0 6.0 149 299 r 1.58165 3 4 cbr 500 ------- 1 1.0 6.0 141 280 + 1.58165 4 6 cbr 500 ------- 1 1.0 6.0 141 280 r 1.58165 4 7 cbr 1000 ------- 1 2.0 7.0 86 272 - 1.58165 4 6 cbr 500 ------- 1 1.0 6.0 141 280 r 1.58325 4 5 tcp 1000 ------- 0 0.0 5.0 22 274 + 1.58325 5 4 ack 40 ------- 0 5.0 0.0 14 300 - 1.58325 5 4 ack 40 ------- 0 5.0 0.0 14 300 r 1.58331 5 4 ack 40 ------- 0 5.0 0.0 14 297 + 1.58331 4 3 ack 40 ------- 0 5.0 0.0 14 297 - 1.58331 4 3 ack 40 ------- 0 5.0 0.0 14 297 - 1.58365 3 4 cbr 500 ------- 1 1.0 6.0 147 293 r 1.584 1 3 cbr 500 ------- 1 1.0 6.0 148 296 + 1.584 3 4 cbr 500 ------- 1 1.0 6.0 148 296 r 1.5857 3 0 ack 40 ------- 0 5.0 0.0 14 286 + 1.5857 0 3 tcp 1000 ------- 0 0.0 5.0 15 301 - 1.5857 0 3 tcp 1000 ------- 0 0.0 5.0 15 301 + 1.5857 0 3 tcp 1000 ------- 0 0.0 5.0 16 302 + 1.5857 0 3 tcp 1000 ------- 0 0.0 5.0 17 303 + 1.5857 0 3 tcp 1000 ------- 0 0.0 5.0 18 304 + 1.5857 0 3 tcp 1000 ------- 0 0.0 5.0 19 305 + 1.5857 0 3 tcp 1000 ------- 0 0.0 5.0 20 306 + 1.5857 0 3 tcp 1000 ------- 0 0.0 5.0 21 307 + 1.5857 0 3 tcp 1000 ------- 0 0.0 5.0 22 308 - 1.5873 0 3 tcp 1000 ------- 0 0.0 5.0 16 302 - 1.58765 3 4 cbr 1000 ------- 1 2.0 7.0 92 292 r 1.588 2 3 cbr 1000 ------- 1 2.0 7.0 93 295 + 1.588 3 4 cbr 1000 ------- 1 2.0 7.0 93 295 - 1.5889 0 3 tcp 1000 ------- 0 0.0 5.0 17 303 r 1.58963 4 3 ack 40 ------- 0 5.0 0.0 14 289 + 1.58963 3 0 ack 40 ------- 0 5.0 0.0 14 289 - 1.58963 3 0 ack 40 ------- 0 5.0 0.0 14 289 r 1.58965 3 4 cbr 1000 ------- 1 2.0 7.0 88 279 + 1.58965 4 7 cbr 1000 ------- 1 2.0 7.0 88 279 - 1.58965 4 7 cbr 1000 ------- 1 2.0 7.0 88 279 r 1.58965 4 6 cbr 500 ------- 1 1.0 6.0 139 277 - 1.5905 0 3 tcp 1000 ------- 0 0.0 5.0 18 304 - 1.5921 0 3 tcp 1000 ------- 0 0.0 5.0 19 305 r 1.59365 3 4 cbr 500 ------- 1 1.0 6.0 142 281 + 1.59365 4 6 cbr 500 ------- 1 1.0 6.0 142 281 - 1.59365 4 6 cbr 500 ------- 1 1.0 6.0 142 281 - 1.5937 0 3 tcp 1000 ------- 0 0.0 5.0 20 306 - 1.5953 0 3 tcp 1000 ------- 0 0.0 5.0 21 307 - 1.59565 3 4 cbr 500 ------- 1 1.0 6.0 148 296 - 1.5969 0 3 tcp 1000 ------- 0 0.0 5.0 22 308 r 1.59765 3 4 cbr 500 ------- 1 1.0 6.0 143 283 + 1.59765 4 6 cbr 500 ------- 1 1.0 6.0 143 283 - 1.59765 4 6 cbr 500 ------- 1 1.0 6.0 143 283 - 1.59965 3 4 cbr 1000 ------- 1 2.0 7.0 93 295 + 1.6 2 3 cbr 1000 ------- 1 2.0 7.0 95 309 - 1.6 2 3 cbr 1000 ------- 1 2.0 7.0 95 309 + 1.6 1 3 cbr 500 ------- 1 1.0 6.0 150 310 - 1.6 1 3 cbr 500 ------- 1 1.0 6.0 150 310 r 1.60165 4 7 cbr 1000 ------- 1 2.0 7.0 87 276 r 1.60165 4 6 cbr 500 ------- 1 1.0 6.0 140 278 r 1.60331 5 4 ack 40 ------- 0 5.0 0.0 14 300 + 1.60331 4 3 ack 40 ------- 0 5.0 0.0 14 300 - 1.60331 4 3 ack 40 ------- 0 5.0 0.0 14 300 r 1.604 1 3 cbr 500 ------- 1 1.0 6.0 149 299 + 1.604 3 4 cbr 500 ------- 1 1.0 6.0 149 299 r 1.60565 3 4 cbr 1000 ------- 1 2.0 7.0 89 282 + 1.60565 4 7 cbr 1000 ------- 1 2.0 7.0 89 282 - 1.60565 4 7 cbr 1000 ------- 1 2.0 7.0 89 282 r 1.60565 4 6 cbr 500 ------- 1 1.0 6.0 141 280 r 1.6073 0 3 tcp 1000 ------- 0 0.0 5.0 15 301 + 1.6073 3 4 tcp 1000 ------- 0 0.0 5.0 15 301 - 1.60765 3 4 cbr 500 ------- 1 1.0 6.0 149 299 r 1.608 2 3 cbr 1000 ------- 1 2.0 7.0 94 298 + 1.608 3 4 cbr 1000 ------- 1 2.0 7.0 94 298 r 1.6089 0 3 tcp 1000 ------- 0 0.0 5.0 16 302 + 1.6089 3 4 tcp 1000 ------- 0 0.0 5.0 16 302 r 1.60965 3 4 cbr 500 ------- 1 1.0 6.0 144 285 + 1.60965 4 6 cbr 500 ------- 1 1.0 6.0 144 285 - 1.60965 4 6 cbr 500 ------- 1 1.0 6.0 144 285 r 1.6097 3 0 ack 40 ------- 0 5.0 0.0 14 289 r 1.6105 0 3 tcp 1000 ------- 0 0.0 5.0 17 303 + 1.6105 3 4 tcp 1000 ------- 0 0.0 5.0 17 303 - 1.61165 3 4 tcp 1000 ------- 0 0.0 5.0 15 301 r 1.6121 0 3 tcp 1000 ------- 0 0.0 5.0 18 304 + 1.6121 3 4 tcp 1000 ------- 0 0.0 5.0 18 304 r 1.61363 4 3 ack 40 ------- 0 5.0 0.0 14 294 + 1.61363 3 0 ack 40 ------- 0 5.0 0.0 14 294 - 1.61363 3 0 ack 40 ------- 0 5.0 0.0 14 294 r 1.61365 3 4 cbr 500 ------- 1 1.0 6.0 145 288 + 1.61365 4 6 cbr 500 ------- 1 1.0 6.0 145 288 - 1.61365 4 6 cbr 500 ------- 1 1.0 6.0 145 288 r 1.6137 0 3 tcp 1000 ------- 0 0.0 5.0 19 305 + 1.6137 3 4 tcp 1000 ------- 0 0.0 5.0 19 305 r 1.6153 0 3 tcp 1000 ------- 0 0.0 5.0 20 306 + 1.6153 3 4 tcp 1000 ------- 0 0.0 5.0 20 306 r 1.6169 0 3 tcp 1000 ------- 0 0.0 5.0 21 307 + 1.6169 3 4 tcp 1000 ------- 0 0.0 5.0 21 307 r 1.61765 4 7 cbr 1000 ------- 1 2.0 7.0 88 279 r 1.61765 4 6 cbr 500 ------- 1 1.0 6.0 142 281 r 1.6185 0 3 tcp 1000 ------- 0 0.0 5.0 22 308 + 1.6185 3 4 tcp 1000 ------- 0 0.0 5.0 22 308 - 1.61965 3 4 cbr 1000 ------- 1 2.0 7.0 94 298 + 1.62 2 3 cbr 1000 ------- 1 2.0 7.0 96 311 - 1.62 2 3 cbr 1000 ------- 1 2.0 7.0 96 311 + 1.62 1 3 cbr 500 ------- 1 1.0 6.0 151 312 - 1.62 1 3 cbr 500 ------- 1 1.0 6.0 151 312 r 1.62165 3 4 cbr 1000 ------- 1 2.0 7.0 90 287 + 1.62165 4 7 cbr 1000 ------- 1 2.0 7.0 90 287 - 1.62165 4 7 cbr 1000 ------- 1 2.0 7.0 90 287 r 1.62165 4 6 cbr 500 ------- 1 1.0 6.0 143 283 r 1.624 1 3 cbr 500 ------- 1 1.0 6.0 150 310 + 1.624 3 4 cbr 500 ------- 1 1.0 6.0 150 310 r 1.62565 3 4 cbr 500 ------- 1 1.0 6.0 146 291 + 1.62565 4 6 cbr 500 ------- 1 1.0 6.0 146 291 - 1.62565 4 6 cbr 500 ------- 1 1.0 6.0 146 291 - 1.62765 3 4 tcp 1000 ------- 0 0.0 5.0 16 302 r 1.628 2 3 cbr 1000 ------- 1 2.0 7.0 95 309 + 1.628 3 4 cbr 1000 ------- 1 2.0 7.0 95 309 r 1.63363 4 3 ack 40 ------- 0 5.0 0.0 14 297 + 1.63363 3 0 ack 40 ------- 0 5.0 0.0 14 297 - 1.63363 3 0 ack 40 ------- 0 5.0 0.0 14 297 r 1.63365 3 4 cbr 1000 ------- 1 2.0 7.0 91 290 + 1.63365 4 7 cbr 1000 ------- 1 2.0 7.0 91 290 - 1.63365 4 7 cbr 1000 ------- 1 2.0 7.0 91 290 r 1.63365 4 7 cbr 1000 ------- 1 2.0 7.0 89 282 r 1.63365 4 6 cbr 500 ------- 1 1.0 6.0 144 285 r 1.6337 3 0 ack 40 ------- 0 5.0 0.0 14 294 - 1.63565 3 4 tcp 1000 ------- 0 0.0 5.0 17 303 r 1.63765 3 4 cbr 500 ------- 1 1.0 6.0 147 293 + 1.63765 4 6 cbr 500 ------- 1 1.0 6.0 147 293 - 1.63765 4 6 cbr 500 ------- 1 1.0 6.0 147 293 r 1.63765 4 6 cbr 500 ------- 1 1.0 6.0 145 288 + 1.64 2 3 cbr 1000 ------- 1 2.0 7.0 97 313 - 1.64 2 3 cbr 1000 ------- 1 2.0 7.0 97 313 + 1.64 1 3 cbr 500 ------- 1 1.0 6.0 152 314 - 1.64 1 3 cbr 500 ------- 1 1.0 6.0 152 314 - 1.64365 3 4 tcp 1000 ------- 0 0.0 5.0 18 304 r 1.644 1 3 cbr 500 ------- 1 1.0 6.0 151 312 + 1.644 3 4 cbr 500 ------- 1 1.0 6.0 151 312 r 1.64565 3 4 cbr 1000 ------- 1 2.0 7.0 92 292 + 1.64565 4 7 cbr 1000 ------- 1 2.0 7.0 92 292 - 1.64565 4 7 cbr 1000 ------- 1 2.0 7.0 92 292 r 1.648 2 3 cbr 1000 ------- 1 2.0 7.0 96 311 + 1.648 3 4 cbr 1000 ------- 1 2.0 7.0 96 311 r 1.64965 3 4 cbr 500 ------- 1 1.0 6.0 148 296 + 1.64965 4 6 cbr 500 ------- 1 1.0 6.0 148 296 - 1.64965 4 6 cbr 500 ------- 1 1.0 6.0 148 296 r 1.64965 4 7 cbr 1000 ------- 1 2.0 7.0 90 287 r 1.64965 4 6 cbr 500 ------- 1 1.0 6.0 146 291 - 1.65165 3 4 tcp 1000 ------- 0 0.0 5.0 19 305 r 1.65363 4 3 ack 40 ------- 0 5.0 0.0 14 300 + 1.65363 3 0 ack 40 ------- 0 5.0 0.0 14 300 - 1.65363 3 0 ack 40 ------- 0 5.0 0.0 14 300 r 1.6537 3 0 ack 40 ------- 0 5.0 0.0 14 297 r 1.65765 3 4 cbr 1000 ------- 1 2.0 7.0 93 295 + 1.65765 4 7 cbr 1000 ------- 1 2.0 7.0 93 295 - 1.65765 4 7 cbr 1000 ------- 1 2.0 7.0 93 295 - 1.65965 3 4 tcp 1000 ------- 0 0.0 5.0 20 306 + 1.66 2 3 cbr 1000 ------- 1 2.0 7.0 98 315 - 1.66 2 3 cbr 1000 ------- 1 2.0 7.0 98 315 + 1.66 1 3 cbr 500 ------- 1 1.0 6.0 153 316 - 1.66 1 3 cbr 500 ------- 1 1.0 6.0 153 316 r 1.66165 3 4 cbr 500 ------- 1 1.0 6.0 149 299 + 1.66165 4 6 cbr 500 ------- 1 1.0 6.0 149 299 - 1.66165 4 6 cbr 500 ------- 1 1.0 6.0 149 299 r 1.66165 4 7 cbr 1000 ------- 1 2.0 7.0 91 290 r 1.66165 4 6 cbr 500 ------- 1 1.0 6.0 147 293 r 1.664 1 3 cbr 500 ------- 1 1.0 6.0 152 314 + 1.664 3 4 cbr 500 ------- 1 1.0 6.0 152 314 - 1.66765 3 4 tcp 1000 ------- 0 0.0 5.0 21 307 r 1.668 2 3 cbr 1000 ------- 1 2.0 7.0 97 313 + 1.668 3 4 cbr 1000 ------- 1 2.0 7.0 97 313 r 1.66965 3 4 tcp 1000 ------- 0 0.0 5.0 15 301 + 1.66965 4 5 tcp 1000 ------- 0 0.0 5.0 15 301 - 1.66965 4 5 tcp 1000 ------- 0 0.0 5.0 15 301 r 1.67365 4 7 cbr 1000 ------- 1 2.0 7.0 92 292 r 1.67365 4 6 cbr 500 ------- 1 1.0 6.0 148 296 r 1.6737 3 0 ack 40 ------- 0 5.0 0.0 14 300 - 1.67565 3 4 tcp 1000 ------- 0 0.0 5.0 22 308 r 1.67765 3 4 cbr 1000 ------- 1 2.0 7.0 94 298 + 1.67765 4 7 cbr 1000 ------- 1 2.0 7.0 94 298 - 1.67765 4 7 cbr 1000 ------- 1 2.0 7.0 94 298 + 1.68 2 3 cbr 1000 ------- 1 2.0 7.0 99 317 - 1.68 2 3 cbr 1000 ------- 1 2.0 7.0 99 317 + 1.68 1 3 cbr 500 ------- 1 1.0 6.0 154 318 - 1.68 1 3 cbr 500 ------- 1 1.0 6.0 154 318 - 1.68365 3 4 cbr 500 ------- 1 1.0 6.0 150 310 r 1.684 1 3 cbr 500 ------- 1 1.0 6.0 153 316 + 1.684 3 4 cbr 500 ------- 1 1.0 6.0 153 316 r 1.68565 3 4 tcp 1000 ------- 0 0.0 5.0 16 302 + 1.68565 4 5 tcp 1000 ------- 0 0.0 5.0 16 302 - 1.68565 4 5 tcp 1000 ------- 0 0.0 5.0 16 302 r 1.68565 4 7 cbr 1000 ------- 1 2.0 7.0 93 295 r 1.68565 4 6 cbr 500 ------- 1 1.0 6.0 149 299 - 1.68765 3 4 cbr 1000 ------- 1 2.0 7.0 95 309 r 1.688 2 3 cbr 1000 ------- 1 2.0 7.0 98 315 + 1.688 3 4 cbr 1000 ------- 1 2.0 7.0 98 315 r 1.69125 4 5 tcp 1000 ------- 0 0.0 5.0 15 301 + 1.69125 5 4 ack 40 ------- 0 5.0 0.0 15 319 - 1.69125 5 4 ack 40 ------- 0 5.0 0.0 15 319 r 1.69365 3 4 tcp 1000 ------- 0 0.0 5.0 17 303 + 1.69365 4 5 tcp 1000 ------- 0 0.0 5.0 17 303 - 1.69365 4 5 tcp 1000 ------- 0 0.0 5.0 17 303 - 1.69565 3 4 cbr 500 ------- 1 1.0 6.0 151 312 - 1.69965 3 4 cbr 1000 ------- 1 2.0 7.0 96 311 v 1.7 eval {set sim_annotation {Ack_15 to 22 }} + 1.7 2 3 cbr 1000 ------- 1 2.0 7.0 100 320 - 1.7 2 3 cbr 1000 ------- 1 2.0 7.0 100 320 + 1.7 1 3 cbr 500 ------- 1 1.0 6.0 155 321 - 1.7 1 3 cbr 500 ------- 1 1.0 6.0 155 321 r 1.70165 3 4 tcp 1000 ------- 0 0.0 5.0 18 304 + 1.70165 4 5 tcp 1000 ------- 0 0.0 5.0 18 304 - 1.70165 4 5 tcp 1000 ------- 0 0.0 5.0 18 304 r 1.704 1 3 cbr 500 ------- 1 1.0 6.0 154 318 + 1.704 3 4 cbr 500 ------- 1 1.0 6.0 154 318 r 1.70565 4 7 cbr 1000 ------- 1 2.0 7.0 94 298 r 1.70725 4 5 tcp 1000 ------- 0 0.0 5.0 16 302 + 1.70725 5 4 ack 40 ------- 0 5.0 0.0 16 322 - 1.70725 5 4 ack 40 ------- 0 5.0 0.0 16 322 - 1.70765 3 4 cbr 500 ------- 1 1.0 6.0 152 314 r 1.708 2 3 cbr 1000 ------- 1 2.0 7.0 99 317 + 1.708 3 4 cbr 1000 ------- 1 2.0 7.0 99 317 r 1.70965 3 4 tcp 1000 ------- 0 0.0 5.0 19 305 + 1.70965 4 5 tcp 1000 ------- 0 0.0 5.0 19 305 - 1.70965 4 5 tcp 1000 ------- 0 0.0 5.0 19 305 + 1.71 2 3 cbr 1000 ------- 1 2.0 7.0 101 323 - 1.71 2 3 cbr 1000 ------- 1 2.0 7.0 101 323 r 1.71131 5 4 ack 40 ------- 0 5.0 0.0 15 319 + 1.71131 4 3 ack 40 ------- 0 5.0 0.0 15 319 - 1.71131 4 3 ack 40 ------- 0 5.0 0.0 15 319 - 1.71165 3 4 cbr 1000 ------- 1 2.0 7.0 97 313 r 1.71525 4 5 tcp 1000 ------- 0 0.0 5.0 17 303 + 1.71525 5 4 ack 40 ------- 0 5.0 0.0 17 324 - 1.71525 5 4 ack 40 ------- 0 5.0 0.0 17 324 r 1.71765 3 4 tcp 1000 ------- 0 0.0 5.0 20 306 + 1.71765 4 5 tcp 1000 ------- 0 0.0 5.0 20 306 - 1.71765 4 5 tcp 1000 ------- 0 0.0 5.0 20 306 - 1.71965 3 4 cbr 500 ------- 1 1.0 6.0 153 316 + 1.72 1 3 cbr 500 ------- 1 1.0 6.0 156 325 - 1.72 1 3 cbr 500 ------- 1 1.0 6.0 156 325 + 1.72 2 3 cbr 1000 ------- 1 2.0 7.0 102 326 - 1.72 2 3 cbr 1000 ------- 1 2.0 7.0 102 326 r 1.72325 4 5 tcp 1000 ------- 0 0.0 5.0 18 304 + 1.72325 5 4 ack 40 ------- 0 5.0 0.0 18 327 - 1.72325 5 4 ack 40 ------- 0 5.0 0.0 18 327 - 1.72365 3 4 cbr 1000 ------- 1 2.0 7.0 98 315 r 1.724 1 3 cbr 500 ------- 1 1.0 6.0 155 321 + 1.724 3 4 cbr 500 ------- 1 1.0 6.0 155 321 r 1.72565 3 4 tcp 1000 ------- 0 0.0 5.0 21 307 + 1.72565 4 5 tcp 1000 ------- 0 0.0 5.0 21 307 - 1.72565 4 5 tcp 1000 ------- 0 0.0 5.0 21 307 r 1.72731 5 4 ack 40 ------- 0 5.0 0.0 16 322 + 1.72731 4 3 ack 40 ------- 0 5.0 0.0 16 322 - 1.72731 4 3 ack 40 ------- 0 5.0 0.0 16 322 r 1.728 2 3 cbr 1000 ------- 1 2.0 7.0 100 320 + 1.728 3 4 cbr 1000 ------- 1 2.0 7.0 100 320 + 1.73 2 3 cbr 1000 ------- 1 2.0 7.0 103 328 - 1.73 2 3 cbr 1000 ------- 1 2.0 7.0 103 328 r 1.73125 4 5 tcp 1000 ------- 0 0.0 5.0 19 305 + 1.73125 5 4 ack 40 ------- 0 5.0 0.0 19 329 - 1.73125 5 4 ack 40 ------- 0 5.0 0.0 19 329 - 1.73165 3 4 cbr 500 ------- 1 1.0 6.0 154 318 r 1.73365 3 4 tcp 1000 ------- 0 0.0 5.0 22 308 + 1.73365 4 5 tcp 1000 ------- 0 0.0 5.0 22 308 - 1.73365 4 5 tcp 1000 ------- 0 0.0 5.0 22 308 r 1.73531 5 4 ack 40 ------- 0 5.0 0.0 17 324 + 1.73531 4 3 ack 40 ------- 0 5.0 0.0 17 324 - 1.73531 4 3 ack 40 ------- 0 5.0 0.0 17 324 - 1.73565 3 4 cbr 1000 ------- 1 2.0 7.0 99 317 r 1.73765 3 4 cbr 500 ------- 1 1.0 6.0 150 310 + 1.73765 4 6 cbr 500 ------- 1 1.0 6.0 150 310 - 1.73765 4 6 cbr 500 ------- 1 1.0 6.0 150 310 r 1.738 2 3 cbr 1000 ------- 1 2.0 7.0 101 323 + 1.738 3 4 cbr 1000 ------- 1 2.0 7.0 101 323 r 1.73925 4 5 tcp 1000 ------- 0 0.0 5.0 20 306 + 1.73925 5 4 ack 40 ------- 0 5.0 0.0 20 330 - 1.73925 5 4 ack 40 ------- 0 5.0 0.0 20 330 + 1.74 1 3 cbr 500 ------- 1 1.0 6.0 157 331 - 1.74 1 3 cbr 500 ------- 1 1.0 6.0 157 331 + 1.74 2 3 cbr 1000 ------- 1 2.0 7.0 104 332 - 1.74 2 3 cbr 1000 ------- 1 2.0 7.0 104 332 r 1.74331 5 4 ack 40 ------- 0 5.0 0.0 18 327 + 1.74331 4 3 ack 40 ------- 0 5.0 0.0 18 327 - 1.74331 4 3 ack 40 ------- 0 5.0 0.0 18 327 - 1.74365 3 4 cbr 500 ------- 1 1.0 6.0 155 321 r 1.744 1 3 cbr 500 ------- 1 1.0 6.0 156 325 + 1.744 3 4 cbr 500 ------- 1 1.0 6.0 156 325 r 1.74565 3 4 cbr 1000 ------- 1 2.0 7.0 95 309 + 1.74565 4 7 cbr 1000 ------- 1 2.0 7.0 95 309 - 1.74565 4 7 cbr 1000 ------- 1 2.0 7.0 95 309 r 1.74725 4 5 tcp 1000 ------- 0 0.0 5.0 21 307 + 1.74725 5 4 ack 40 ------- 0 5.0 0.0 21 333 - 1.74725 5 4 ack 40 ------- 0 5.0 0.0 21 333 - 1.74765 3 4 cbr 1000 ------- 1 2.0 7.0 100 320 r 1.748 2 3 cbr 1000 ------- 1 2.0 7.0 102 326 + 1.748 3 4 cbr 1000 ------- 1 2.0 7.0 102 326 r 1.74965 3 4 cbr 500 ------- 1 1.0 6.0 151 312 + 1.74965 4 6 cbr 500 ------- 1 1.0 6.0 151 312 - 1.74965 4 6 cbr 500 ------- 1 1.0 6.0 151 312 + 1.75 2 3 cbr 1000 ------- 1 2.0 7.0 105 334 - 1.75 2 3 cbr 1000 ------- 1 2.0 7.0 105 334 r 1.75131 5 4 ack 40 ------- 0 5.0 0.0 19 329 + 1.75131 4 3 ack 40 ------- 0 5.0 0.0 19 329 - 1.75131 4 3 ack 40 ------- 0 5.0 0.0 19 329 r 1.75525 4 5 tcp 1000 ------- 0 0.0 5.0 22 308 + 1.75525 5 4 ack 40 ------- 0 5.0 0.0 22 335 - 1.75525 5 4 ack 40 ------- 0 5.0 0.0 22 335 - 1.75565 3 4 cbr 1000 ------- 1 2.0 7.0 101 323 r 1.75765 3 4 cbr 1000 ------- 1 2.0 7.0 96 311 + 1.75765 4 7 cbr 1000 ------- 1 2.0 7.0 96 311 - 1.75765 4 7 cbr 1000 ------- 1 2.0 7.0 96 311 r 1.758 2 3 cbr 1000 ------- 1 2.0 7.0 103 328 + 1.758 3 4 cbr 1000 ------- 1 2.0 7.0 103 328 r 1.75931 5 4 ack 40 ------- 0 5.0 0.0 20 330 + 1.75931 4 3 ack 40 ------- 0 5.0 0.0 20 330 - 1.75931 4 3 ack 40 ------- 0 5.0 0.0 20 330 + 1.76 1 3 cbr 500 ------- 1 1.0 6.0 158 336 - 1.76 1 3 cbr 500 ------- 1 1.0 6.0 158 336 + 1.76 2 3 cbr 1000 ------- 1 2.0 7.0 106 337 - 1.76 2 3 cbr 1000 ------- 1 2.0 7.0 106 337 r 1.76163 4 3 ack 40 ------- 0 5.0 0.0 15 319 + 1.76163 3 0 ack 40 ------- 0 5.0 0.0 15 319 - 1.76163 3 0 ack 40 ------- 0 5.0 0.0 15 319 r 1.76165 3 4 cbr 500 ------- 1 1.0 6.0 152 314 + 1.76165 4 6 cbr 500 ------- 1 1.0 6.0 152 314 - 1.76165 4 6 cbr 500 ------- 1 1.0 6.0 152 314 r 1.76165 4 6 cbr 500 ------- 1 1.0 6.0 150 310 - 1.76365 3 4 cbr 500 ------- 1 1.0 6.0 156 325 r 1.764 1 3 cbr 500 ------- 1 1.0 6.0 157 331 + 1.764 3 4 cbr 500 ------- 1 1.0 6.0 157 331 r 1.76731 5 4 ack 40 ------- 0 5.0 0.0 21 333 + 1.76731 4 3 ack 40 ------- 0 5.0 0.0 21 333 - 1.76731 4 3 ack 40 ------- 0 5.0 0.0 21 333 - 1.76765 3 4 cbr 1000 ------- 1 2.0 7.0 102 326 r 1.768 2 3 cbr 1000 ------- 1 2.0 7.0 104 332 + 1.768 3 4 cbr 1000 ------- 1 2.0 7.0 104 332 r 1.76965 3 4 cbr 1000 ------- 1 2.0 7.0 97 313 + 1.76965 4 7 cbr 1000 ------- 1 2.0 7.0 97 313 - 1.76965 4 7 cbr 1000 ------- 1 2.0 7.0 97 313 + 1.77 2 3 cbr 1000 ------- 1 2.0 7.0 107 338 - 1.77 2 3 cbr 1000 ------- 1 2.0 7.0 107 338 r 1.77365 3 4 cbr 500 ------- 1 1.0 6.0 153 316 + 1.77365 4 6 cbr 500 ------- 1 1.0 6.0 153 316 - 1.77365 4 6 cbr 500 ------- 1 1.0 6.0 153 316 r 1.77365 4 7 cbr 1000 ------- 1 2.0 7.0 95 309 r 1.77365 4 6 cbr 500 ------- 1 1.0 6.0 151 312 r 1.77531 5 4 ack 40 ------- 0 5.0 0.0 22 335 + 1.77531 4 3 ack 40 ------- 0 5.0 0.0 22 335 - 1.77531 4 3 ack 40 ------- 0 5.0 0.0 22 335 - 1.77565 3 4 cbr 1000 ------- 1 2.0 7.0 103 328 r 1.77763 4 3 ack 40 ------- 0 5.0 0.0 16 322 + 1.77763 3 0 ack 40 ------- 0 5.0 0.0 16 322 - 1.77763 3 0 ack 40 ------- 0 5.0 0.0 16 322 r 1.778 2 3 cbr 1000 ------- 1 2.0 7.0 105 334 + 1.778 3 4 cbr 1000 ------- 1 2.0 7.0 105 334 v 1.78 eval {set sim_annotation {Send Packet_23 to 30}} + 1.78 1 3 cbr 500 ------- 1 1.0 6.0 159 339 - 1.78 1 3 cbr 500 ------- 1 1.0 6.0 159 339 + 1.78 2 3 cbr 1000 ------- 1 2.0 7.0 108 340 - 1.78 2 3 cbr 1000 ------- 1 2.0 7.0 108 340 r 1.78165 3 4 cbr 1000 ------- 1 2.0 7.0 98 315 + 1.78165 4 7 cbr 1000 ------- 1 2.0 7.0 98 315 - 1.78165 4 7 cbr 1000 ------- 1 2.0 7.0 98 315 r 1.7817 3 0 ack 40 ------- 0 5.0 0.0 15 319 + 1.7817 0 3 tcp 1000 ------- 0 0.0 5.0 23 341 - 1.7817 0 3 tcp 1000 ------- 0 0.0 5.0 23 341 - 1.78365 3 4 cbr 500 ------- 1 1.0 6.0 157 331 r 1.784 1 3 cbr 500 ------- 1 1.0 6.0 158 336 + 1.784 3 4 cbr 500 ------- 1 1.0 6.0 158 336 r 1.78563 4 3 ack 40 ------- 0 5.0 0.0 17 324 + 1.78563 3 0 ack 40 ------- 0 5.0 0.0 17 324 - 1.78563 3 0 ack 40 ------- 0 5.0 0.0 17 324 r 1.78565 3 4 cbr 500 ------- 1 1.0 6.0 154 318 + 1.78565 4 6 cbr 500 ------- 1 1.0 6.0 154 318 - 1.78565 4 6 cbr 500 ------- 1 1.0 6.0 154 318 r 1.78565 4 7 cbr 1000 ------- 1 2.0 7.0 96 311 r 1.78565 4 6 cbr 500 ------- 1 1.0 6.0 152 314 - 1.78765 3 4 cbr 1000 ------- 1 2.0 7.0 104 332 r 1.788 2 3 cbr 1000 ------- 1 2.0 7.0 106 337 + 1.788 3 4 cbr 1000 ------- 1 2.0 7.0 106 337 + 1.79 2 3 cbr 1000 ------- 1 2.0 7.0 109 342 - 1.79 2 3 cbr 1000 ------- 1 2.0 7.0 109 342 r 1.79363 4 3 ack 40 ------- 0 5.0 0.0 18 327 + 1.79363 3 0 ack 40 ------- 0 5.0 0.0 18 327 - 1.79363 3 0 ack 40 ------- 0 5.0 0.0 18 327 r 1.79365 3 4 cbr 1000 ------- 1 2.0 7.0 99 317 + 1.79365 4 7 cbr 1000 ------- 1 2.0 7.0 99 317 - 1.79365 4 7 cbr 1000 ------- 1 2.0 7.0 99 317 - 1.79565 3 4 cbr 1000 ------- 1 2.0 7.0 105 334 r 1.79765 3 4 cbr 500 ------- 1 1.0 6.0 155 321 + 1.79765 4 6 cbr 500 ------- 1 1.0 6.0 155 321 - 1.79765 4 6 cbr 500 ------- 1 1.0 6.0 155 321 r 1.79765 4 7 cbr 1000 ------- 1 2.0 7.0 97 313 r 1.79765 4 6 cbr 500 ------- 1 1.0 6.0 153 316 r 1.7977 3 0 ack 40 ------- 0 5.0 0.0 16 322 + 1.7977 0 3 tcp 1000 ------- 0 0.0 5.0 24 343 - 1.7977 0 3 tcp 1000 ------- 0 0.0 5.0 24 343 r 1.798 2 3 cbr 1000 ------- 1 2.0 7.0 107 338 + 1.798 3 4 cbr 1000 ------- 1 2.0 7.0 107 338 + 1.8 1 3 cbr 500 ------- 1 1.0 6.0 160 344 - 1.8 1 3 cbr 500 ------- 1 1.0 6.0 160 344 + 1.8 2 3 cbr 1000 ------- 1 2.0 7.0 110 345 - 1.8 2 3 cbr 1000 ------- 1 2.0 7.0 110 345 r 1.80163 4 3 ack 40 ------- 0 5.0 0.0 19 329 + 1.80163 3 0 ack 40 ------- 0 5.0 0.0 19 329 - 1.80163 3 0 ack 40 ------- 0 5.0 0.0 19 329 r 1.8033 0 3 tcp 1000 ------- 0 0.0 5.0 23 341 + 1.8033 3 4 tcp 1000 ------- 0 0.0 5.0 23 341 - 1.80365 3 4 cbr 500 ------- 1 1.0 6.0 158 336 r 1.804 1 3 cbr 500 ------- 1 1.0 6.0 159 339 + 1.804 3 4 cbr 500 ------- 1 1.0 6.0 159 339 r 1.80565 3 4 cbr 1000 ------- 1 2.0 7.0 100 320 + 1.80565 4 7 cbr 1000 ------- 1 2.0 7.0 100 320 - 1.80565 4 7 cbr 1000 ------- 1 2.0 7.0 100 320 r 1.8057 3 0 ack 40 ------- 0 5.0 0.0 17 324 + 1.8057 0 3 tcp 1000 ------- 0 0.0 5.0 25 346 - 1.8057 0 3 tcp 1000 ------- 0 0.0 5.0 25 346 - 1.80765 3 4 cbr 1000 ------- 1 2.0 7.0 106 337 r 1.808 2 3 cbr 1000 ------- 1 2.0 7.0 108 340 + 1.808 3 4 cbr 1000 ------- 1 2.0 7.0 108 340 r 1.80963 4 3 ack 40 ------- 0 5.0 0.0 20 330 + 1.80963 3 0 ack 40 ------- 0 5.0 0.0 20 330 - 1.80963 3 0 ack 40 ------- 0 5.0 0.0 20 330 r 1.80965 4 7 cbr 1000 ------- 1 2.0 7.0 98 315 r 1.80965 4 6 cbr 500 ------- 1 1.0 6.0 154 318 + 1.81 2 3 cbr 1000 ------- 1 2.0 7.0 111 347 - 1.81 2 3 cbr 1000 ------- 1 2.0 7.0 111 347 r 1.81365 3 4 cbr 1000 ------- 1 2.0 7.0 101 323 + 1.81365 4 7 cbr 1000 ------- 1 2.0 7.0 101 323 - 1.81365 4 7 cbr 1000 ------- 1 2.0 7.0 101 323 r 1.8137 3 0 ack 40 ------- 0 5.0 0.0 18 327 + 1.8137 0 3 tcp 1000 ------- 0 0.0 5.0 26 348 - 1.8137 0 3 tcp 1000 ------- 0 0.0 5.0 26 348 - 1.81565 3 4 cbr 1000 ------- 1 2.0 7.0 107 338 r 1.81763 4 3 ack 40 ------- 0 5.0 0.0 21 333 + 1.81763 3 0 ack 40 ------- 0 5.0 0.0 21 333 - 1.81763 3 0 ack 40 ------- 0 5.0 0.0 21 333 r 1.81765 3 4 cbr 500 ------- 1 1.0 6.0 156 325 + 1.81765 4 6 cbr 500 ------- 1 1.0 6.0 156 325 - 1.81765 4 6 cbr 500 ------- 1 1.0 6.0 156 325 r 1.818 2 3 cbr 1000 ------- 1 2.0 7.0 109 342 + 1.818 3 4 cbr 1000 ------- 1 2.0 7.0 109 342 r 1.8193 0 3 tcp 1000 ------- 0 0.0 5.0 24 343 + 1.8193 3 4 tcp 1000 ------- 0 0.0 5.0 24 343 + 1.82 1 3 cbr 500 ------- 1 1.0 6.0 161 349 - 1.82 1 3 cbr 500 ------- 1 1.0 6.0 161 349 + 1.82 2 3 cbr 1000 ------- 1 2.0 7.0 112 350 - 1.82 2 3 cbr 1000 ------- 1 2.0 7.0 112 350 r 1.82165 4 7 cbr 1000 ------- 1 2.0 7.0 99 317 r 1.82165 4 6 cbr 500 ------- 1 1.0 6.0 155 321 r 1.8217 3 0 ack 40 ------- 0 5.0 0.0 19 329 + 1.8217 0 3 tcp 1000 ------- 0 0.0 5.0 27 351 - 1.8217 0 3 tcp 1000 ------- 0 0.0 5.0 27 351 - 1.82365 3 4 tcp 1000 ------- 0 0.0 5.0 23 341 r 1.824 1 3 cbr 500 ------- 1 1.0 6.0 160 344 + 1.824 3 4 cbr 500 ------- 1 1.0 6.0 160 344 r 1.82563 4 3 ack 40 ------- 0 5.0 0.0 22 335 + 1.82563 3 0 ack 40 ------- 0 5.0 0.0 22 335 - 1.82563 3 0 ack 40 ------- 0 5.0 0.0 22 335 r 1.82565 3 4 cbr 1000 ------- 1 2.0 7.0 102 326 + 1.82565 4 7 cbr 1000 ------- 1 2.0 7.0 102 326 - 1.82565 4 7 cbr 1000 ------- 1 2.0 7.0 102 326 r 1.8273 0 3 tcp 1000 ------- 0 0.0 5.0 25 346 + 1.8273 3 4 tcp 1000 ------- 0 0.0 5.0 25 346 r 1.828 2 3 cbr 1000 ------- 1 2.0 7.0 110 345 + 1.828 3 4 cbr 1000 ------- 1 2.0 7.0 110 345 r 1.8297 3 0 ack 40 ------- 0 5.0 0.0 20 330 + 1.8297 0 3 tcp 1000 ------- 0 0.0 5.0 28 352 - 1.8297 0 3 tcp 1000 ------- 0 0.0 5.0 28 352 + 1.83 2 3 cbr 1000 ------- 1 2.0 7.0 113 353 - 1.83 2 3 cbr 1000 ------- 1 2.0 7.0 113 353 - 1.83165 3 4 cbr 500 ------- 1 1.0 6.0 159 339 r 1.83365 3 4 cbr 1000 ------- 1 2.0 7.0 103 328 + 1.83365 4 7 cbr 1000 ------- 1 2.0 7.0 103 328 r 1.83365 4 7 cbr 1000 ------- 1 2.0 7.0 100 320 - 1.83365 4 7 cbr 1000 ------- 1 2.0 7.0 103 328 r 1.8353 0 3 tcp 1000 ------- 0 0.0 5.0 26 348 + 1.8353 3 4 tcp 1000 ------- 0 0.0 5.0 26 348 - 1.83565 3 4 cbr 1000 ------- 1 2.0 7.0 108 340 r 1.83765 3 4 cbr 500 ------- 1 1.0 6.0 157 331 + 1.83765 4 6 cbr 500 ------- 1 1.0 6.0 157 331 - 1.83765 4 6 cbr 500 ------- 1 1.0 6.0 157 331 r 1.8377 3 0 ack 40 ------- 0 5.0 0.0 21 333 + 1.8377 0 3 tcp 1000 ------- 0 0.0 5.0 29 354 - 1.8377 0 3 tcp 1000 ------- 0 0.0 5.0 29 354 r 1.838 2 3 cbr 1000 ------- 1 2.0 7.0 111 347 + 1.838 3 4 cbr 1000 ------- 1 2.0 7.0 111 347 + 1.84 1 3 cbr 500 ------- 1 1.0 6.0 162 355 - 1.84 1 3 cbr 500 ------- 1 1.0 6.0 162 355 + 1.84 2 3 cbr 1000 ------- 1 2.0 7.0 114 356 - 1.84 2 3 cbr 1000 ------- 1 2.0 7.0 114 356 r 1.84165 4 7 cbr 1000 ------- 1 2.0 7.0 101 323 r 1.84165 4 6 cbr 500 ------- 1 1.0 6.0 156 325 r 1.8433 0 3 tcp 1000 ------- 0 0.0 5.0 27 351 + 1.8433 3 4 tcp 1000 ------- 0 0.0 5.0 27 351 - 1.84365 3 4 cbr 1000 ------- 1 2.0 7.0 109 342 r 1.844 1 3 cbr 500 ------- 1 1.0 6.0 161 349 + 1.844 3 4 cbr 500 ------- 1 1.0 6.0 161 349 r 1.84565 3 4 cbr 1000 ------- 1 2.0 7.0 104 332 + 1.84565 4 7 cbr 1000 ------- 1 2.0 7.0 104 332 - 1.84565 4 7 cbr 1000 ------- 1 2.0 7.0 104 332 r 1.8457 3 0 ack 40 ------- 0 5.0 0.0 22 335 + 1.8457 0 3 tcp 1000 ------- 0 0.0 5.0 30 357 - 1.8457 0 3 tcp 1000 ------- 0 0.0 5.0 30 357 r 1.848 2 3 cbr 1000 ------- 1 2.0 7.0 112 350 + 1.848 3 4 cbr 1000 ------- 1 2.0 7.0 112 350 v 1.8500000000000001 eval {set sim_annotation {Lost Packet (2 of them) }} + 1.85 2 3 cbr 1000 ------- 1 2.0 7.0 115 358 - 1.85 2 3 cbr 1000 ------- 1 2.0 7.0 115 358 r 1.8513 0 3 tcp 1000 ------- 0 0.0 5.0 28 352 + 1.8513 3 4 tcp 1000 ------- 0 0.0 5.0 28 352 d 1.8513 3 4 tcp 1000 ------- 0 0.0 5.0 28 352 - 1.85165 3 4 tcp 1000 ------- 0 0.0 5.0 24 343 r 1.85365 3 4 cbr 1000 ------- 1 2.0 7.0 105 334 + 1.85365 4 7 cbr 1000 ------- 1 2.0 7.0 105 334 r 1.85365 4 7 cbr 1000 ------- 1 2.0 7.0 102 326 - 1.85365 4 7 cbr 1000 ------- 1 2.0 7.0 105 334 r 1.85765 3 4 cbr 500 ------- 1 1.0 6.0 158 336 + 1.85765 4 6 cbr 500 ------- 1 1.0 6.0 158 336 - 1.85765 4 6 cbr 500 ------- 1 1.0 6.0 158 336 r 1.858 2 3 cbr 1000 ------- 1 2.0 7.0 113 353 + 1.858 3 4 cbr 1000 ------- 1 2.0 7.0 113 353 r 1.8593 0 3 tcp 1000 ------- 0 0.0 5.0 29 354 + 1.8593 3 4 tcp 1000 ------- 0 0.0 5.0 29 354 d 1.8593 3 4 tcp 1000 ------- 0 0.0 5.0 29 354 - 1.85965 3 4 cbr 500 ------- 1 1.0 6.0 160 344 + 1.86 1 3 cbr 500 ------- 1 1.0 6.0 163 359 - 1.86 1 3 cbr 500 ------- 1 1.0 6.0 163 359 + 1.86 2 3 cbr 1000 ------- 1 2.0 7.0 116 360 - 1.86 2 3 cbr 1000 ------- 1 2.0 7.0 116 360 r 1.86165 4 7 cbr 1000 ------- 1 2.0 7.0 103 328 r 1.86165 4 6 cbr 500 ------- 1 1.0 6.0 157 331 - 1.86365 3 4 tcp 1000 ------- 0 0.0 5.0 25 346 r 1.864 1 3 cbr 500 ------- 1 1.0 6.0 162 355 + 1.864 3 4 cbr 500 ------- 1 1.0 6.0 162 355 r 1.86565 3 4 cbr 1000 ------- 1 2.0 7.0 106 337 + 1.86565 4 7 cbr 1000 ------- 1 2.0 7.0 106 337 - 1.86565 4 7 cbr 1000 ------- 1 2.0 7.0 106 337 r 1.8673 0 3 tcp 1000 ------- 0 0.0 5.0 30 357 + 1.8673 3 4 tcp 1000 ------- 0 0.0 5.0 30 357 r 1.868 2 3 cbr 1000 ------- 1 2.0 7.0 114 356 + 1.868 3 4 cbr 1000 ------- 1 2.0 7.0 114 356 d 1.868 3 4 cbr 1000 ------- 1 2.0 7.0 114 356 + 1.87 2 3 cbr 1000 ------- 1 2.0 7.0 117 361 - 1.87 2 3 cbr 1000 ------- 1 2.0 7.0 117 361 - 1.87165 3 4 cbr 1000 ------- 1 2.0 7.0 110 345 r 1.87365 3 4 cbr 1000 ------- 1 2.0 7.0 107 338 + 1.87365 4 7 cbr 1000 ------- 1 2.0 7.0 107 338 r 1.87365 4 7 cbr 1000 ------- 1 2.0 7.0 104 332 - 1.87365 4 7 cbr 1000 ------- 1 2.0 7.0 107 338 r 1.878 2 3 cbr 1000 ------- 1 2.0 7.0 115 358 + 1.878 3 4 cbr 1000 ------- 1 2.0 7.0 115 358 - 1.87965 3 4 tcp 1000 ------- 0 0.0 5.0 26 348 + 1.88 1 3 cbr 500 ------- 1 1.0 6.0 164 362 - 1.88 1 3 cbr 500 ------- 1 1.0 6.0 164 362 + 1.88 2 3 cbr 1000 ------- 1 2.0 7.0 118 363 - 1.88 2 3 cbr 1000 ------- 1 2.0 7.0 118 363 r 1.88165 3 4 tcp 1000 ------- 0 0.0 5.0 23 341 + 1.88165 4 5 tcp 1000 ------- 0 0.0 5.0 23 341 - 1.88165 4 5 tcp 1000 ------- 0 0.0 5.0 23 341 r 1.88165 4 7 cbr 1000 ------- 1 2.0 7.0 105 334 r 1.88165 4 6 cbr 500 ------- 1 1.0 6.0 158 336 r 1.884 1 3 cbr 500 ------- 1 1.0 6.0 163 359 + 1.884 3 4 cbr 500 ------- 1 1.0 6.0 163 359 r 1.88565 3 4 cbr 500 ------- 1 1.0 6.0 159 339 + 1.88565 4 6 cbr 500 ------- 1 1.0 6.0 159 339 - 1.88565 4 6 cbr 500 ------- 1 1.0 6.0 159 339 - 1.88765 3 4 cbr 1000 ------- 1 2.0 7.0 111 347 r 1.888 2 3 cbr 1000 ------- 1 2.0 7.0 116 360 + 1.888 3 4 cbr 1000 ------- 1 2.0 7.0 116 360 + 1.89 2 3 cbr 1000 ------- 1 2.0 7.0 119 364 - 1.89 2 3 cbr 1000 ------- 1 2.0 7.0 119 364 r 1.89365 3 4 cbr 1000 ------- 1 2.0 7.0 108 340 + 1.89365 4 7 cbr 1000 ------- 1 2.0 7.0 108 340 - 1.89365 4 7 cbr 1000 ------- 1 2.0 7.0 108 340 r 1.89365 4 7 cbr 1000 ------- 1 2.0 7.0 106 337 - 1.89565 3 4 tcp 1000 ------- 0 0.0 5.0 27 351 r 1.898 2 3 cbr 1000 ------- 1 2.0 7.0 117 361 + 1.898 3 4 cbr 1000 ------- 1 2.0 7.0 117 361 v 1.8999999999999999 eval {set sim_annotation {Ack_23 to 27 }} + 1.9 1 3 cbr 500 ------- 1 1.0 6.0 165 365 - 1.9 1 3 cbr 500 ------- 1 1.0 6.0 165 365 + 1.9 2 3 cbr 1000 ------- 1 2.0 7.0 120 366 - 1.9 2 3 cbr 1000 ------- 1 2.0 7.0 120 366 r 1.90165 3 4 cbr 1000 ------- 1 2.0 7.0 109 342 + 1.90165 4 7 cbr 1000 ------- 1 2.0 7.0 109 342 r 1.90165 4 7 cbr 1000 ------- 1 2.0 7.0 107 338 - 1.90165 4 7 cbr 1000 ------- 1 2.0 7.0 109 342 r 1.90325 4 5 tcp 1000 ------- 0 0.0 5.0 23 341 + 1.90325 5 4 ack 40 ------- 0 5.0 0.0 23 367 - 1.90325 5 4 ack 40 ------- 0 5.0 0.0 23 367 - 1.90365 3 4 cbr 500 ------- 1 1.0 6.0 161 349 r 1.904 1 3 cbr 500 ------- 1 1.0 6.0 164 362 + 1.904 3 4 cbr 500 ------- 1 1.0 6.0 164 362 - 1.90765 3 4 cbr 1000 ------- 1 2.0 7.0 112 350 r 1.908 2 3 cbr 1000 ------- 1 2.0 7.0 118 363 + 1.908 3 4 cbr 1000 ------- 1 2.0 7.0 118 363 r 1.90965 3 4 tcp 1000 ------- 0 0.0 5.0 24 343 + 1.90965 4 5 tcp 1000 ------- 0 0.0 5.0 24 343 - 1.90965 4 5 tcp 1000 ------- 0 0.0 5.0 24 343 r 1.90965 4 6 cbr 500 ------- 1 1.0 6.0 159 339 + 1.91 2 3 cbr 1000 ------- 1 2.0 7.0 121 368 - 1.91 2 3 cbr 1000 ------- 1 2.0 7.0 121 368 r 1.91365 3 4 cbr 500 ------- 1 1.0 6.0 160 344 + 1.91365 4 6 cbr 500 ------- 1 1.0 6.0 160 344 - 1.91365 4 6 cbr 500 ------- 1 1.0 6.0 160 344 - 1.91565 3 4 cbr 1000 ------- 1 2.0 7.0 113 353 r 1.918 2 3 cbr 1000 ------- 1 2.0 7.0 119 364 + 1.918 3 4 cbr 1000 ------- 1 2.0 7.0 119 364 + 1.92 1 3 cbr 500 ------- 1 1.0 6.0 166 369 - 1.92 1 3 cbr 500 ------- 1 1.0 6.0 166 369 + 1.92 2 3 cbr 1000 ------- 1 2.0 7.0 122 370 - 1.92 2 3 cbr 1000 ------- 1 2.0 7.0 122 370 r 1.92165 3 4 tcp 1000 ------- 0 0.0 5.0 25 346 + 1.92165 4 5 tcp 1000 ------- 0 0.0 5.0 25 346 - 1.92165 4 5 tcp 1000 ------- 0 0.0 5.0 25 346 r 1.92165 4 7 cbr 1000 ------- 1 2.0 7.0 108 340 r 1.92331 5 4 ack 40 ------- 0 5.0 0.0 23 367 + 1.92331 4 3 ack 40 ------- 0 5.0 0.0 23 367 - 1.92331 4 3 ack 40 ------- 0 5.0 0.0 23 367 - 1.92365 3 4 cbr 500 ------- 1 1.0 6.0 162 355 r 1.924 1 3 cbr 500 ------- 1 1.0 6.0 165 365 + 1.924 3 4 cbr 500 ------- 1 1.0 6.0 165 365 - 1.92765 3 4 tcp 1000 ------- 0 0.0 5.0 30 357 r 1.928 2 3 cbr 1000 ------- 1 2.0 7.0 120 366 + 1.928 3 4 cbr 1000 ------- 1 2.0 7.0 120 366 r 1.92965 3 4 cbr 1000 ------- 1 2.0 7.0 110 345 + 1.92965 4 7 cbr 1000 ------- 1 2.0 7.0 110 345 - 1.92965 4 7 cbr 1000 ------- 1 2.0 7.0 110 345 r 1.92965 4 7 cbr 1000 ------- 1 2.0 7.0 109 342 + 1.93 2 3 cbr 1000 ------- 1 2.0 7.0 123 371 - 1.93 2 3 cbr 1000 ------- 1 2.0 7.0 123 371 r 1.93125 4 5 tcp 1000 ------- 0 0.0 5.0 24 343 + 1.93125 5 4 ack 40 ------- 0 5.0 0.0 24 372 - 1.93125 5 4 ack 40 ------- 0 5.0 0.0 24 372 - 1.93565 3 4 cbr 1000 ------- 1 2.0 7.0 115 358 r 1.93765 3 4 tcp 1000 ------- 0 0.0 5.0 26 348 + 1.93765 4 5 tcp 1000 ------- 0 0.0 5.0 26 348 - 1.93765 4 5 tcp 1000 ------- 0 0.0 5.0 26 348 r 1.93765 4 6 cbr 500 ------- 1 1.0 6.0 160 344 r 1.938 2 3 cbr 1000 ------- 1 2.0 7.0 121 368 + 1.938 3 4 cbr 1000 ------- 1 2.0 7.0 121 368 + 1.94 1 3 cbr 500 ------- 1 1.0 6.0 167 373 - 1.94 1 3 cbr 500 ------- 1 1.0 6.0 167 373 + 1.94 2 3 cbr 1000 ------- 1 2.0 7.0 124 374 - 1.94 2 3 cbr 1000 ------- 1 2.0 7.0 124 374 r 1.94325 4 5 tcp 1000 ------- 0 0.0 5.0 25 346 + 1.94325 5 4 ack 40 ------- 0 5.0 0.0 25 375 - 1.94325 5 4 ack 40 ------- 0 5.0 0.0 25 375 - 1.94365 3 4 cbr 500 ------- 1 1.0 6.0 163 359 r 1.944 1 3 cbr 500 ------- 1 1.0 6.0 166 369 + 1.944 3 4 cbr 500 ------- 1 1.0 6.0 166 369 r 1.94565 3 4 cbr 1000 ------- 1 2.0 7.0 111 347 + 1.94565 4 7 cbr 1000 ------- 1 2.0 7.0 111 347 - 1.94565 4 7 cbr 1000 ------- 1 2.0 7.0 111 347 - 1.94765 3 4 cbr 1000 ------- 1 2.0 7.0 116 360 r 1.948 2 3 cbr 1000 ------- 1 2.0 7.0 122 370 + 1.948 3 4 cbr 1000 ------- 1 2.0 7.0 122 370 + 1.95 2 3 cbr 1000 ------- 1 2.0 7.0 125 376 - 1.95 2 3 cbr 1000 ------- 1 2.0 7.0 125 376 r 1.95131 5 4 ack 40 ------- 0 5.0 0.0 24 372 + 1.95131 4 3 ack 40 ------- 0 5.0 0.0 24 372 - 1.95131 4 3 ack 40 ------- 0 5.0 0.0 24 372 r 1.95365 3 4 tcp 1000 ------- 0 0.0 5.0 27 351 + 1.95365 4 5 tcp 1000 ------- 0 0.0 5.0 27 351 - 1.95365 4 5 tcp 1000 ------- 0 0.0 5.0 27 351 - 1.95565 3 4 cbr 1000 ------- 1 2.0 7.0 117 361 r 1.95765 3 4 cbr 500 ------- 1 1.0 6.0 161 349 + 1.95765 4 6 cbr 500 ------- 1 1.0 6.0 161 349 - 1.95765 4 6 cbr 500 ------- 1 1.0 6.0 161 349 r 1.95765 4 7 cbr 1000 ------- 1 2.0 7.0 110 345 r 1.958 2 3 cbr 1000 ------- 1 2.0 7.0 123 371 + 1.958 3 4 cbr 1000 ------- 1 2.0 7.0 123 371 r 1.95925 4 5 tcp 1000 ------- 0 0.0 5.0 26 348 + 1.95925 5 4 ack 40 ------- 0 5.0 0.0 26 377 - 1.95925 5 4 ack 40 ------- 0 5.0 0.0 26 377 + 1.96 1 3 cbr 500 ------- 1 1.0 6.0 168 378 - 1.96 1 3 cbr 500 ------- 1 1.0 6.0 168 378 + 1.96 2 3 cbr 1000 ------- 1 2.0 7.0 126 379 - 1.96 2 3 cbr 1000 ------- 1 2.0 7.0 126 379 r 1.96331 5 4 ack 40 ------- 0 5.0 0.0 25 375 + 1.96331 4 3 ack 40 ------- 0 5.0 0.0 25 375 - 1.96331 4 3 ack 40 ------- 0 5.0 0.0 25 375 - 1.96365 3 4 cbr 500 ------- 1 1.0 6.0 164 362 r 1.964 1 3 cbr 500 ------- 1 1.0 6.0 167 373 + 1.964 3 4 cbr 500 ------- 1 1.0 6.0 167 373 r 1.96565 3 4 cbr 1000 ------- 1 2.0 7.0 112 350 + 1.96565 4 7 cbr 1000 ------- 1 2.0 7.0 112 350 - 1.96565 4 7 cbr 1000 ------- 1 2.0 7.0 112 350 - 1.96765 3 4 cbr 1000 ------- 1 2.0 7.0 118 363 r 1.968 2 3 cbr 1000 ------- 1 2.0 7.0 124 374 + 1.968 3 4 cbr 1000 ------- 1 2.0 7.0 124 374 + 1.97 2 3 cbr 1000 ------- 1 2.0 7.0 127 380 - 1.97 2 3 cbr 1000 ------- 1 2.0 7.0 127 380 r 1.97363 4 3 ack 40 ------- 0 5.0 0.0 23 367 + 1.97363 3 0 ack 40 ------- 0 5.0 0.0 23 367 - 1.97363 3 0 ack 40 ------- 0 5.0 0.0 23 367 r 1.97365 3 4 cbr 1000 ------- 1 2.0 7.0 113 353 + 1.97365 4 7 cbr 1000 ------- 1 2.0 7.0 113 353 r 1.97365 4 7 cbr 1000 ------- 1 2.0 7.0 111 347 - 1.97365 4 7 cbr 1000 ------- 1 2.0 7.0 113 353 r 1.97525 4 5 tcp 1000 ------- 0 0.0 5.0 27 351 + 1.97525 5 4 ack 40 ------- 0 5.0 0.0 27 381 - 1.97525 5 4 ack 40 ------- 0 5.0 0.0 27 381 - 1.97565 3 4 cbr 1000 ------- 1 2.0 7.0 119 364 r 1.97765 3 4 cbr 500 ------- 1 1.0 6.0 162 355 + 1.97765 4 6 cbr 500 ------- 1 1.0 6.0 162 355 - 1.97765 4 6 cbr 500 ------- 1 1.0 6.0 162 355 r 1.978 2 3 cbr 1000 ------- 1 2.0 7.0 125 376 + 1.978 3 4 cbr 1000 ------- 1 2.0 7.0 125 376 r 1.97931 5 4 ack 40 ------- 0 5.0 0.0 26 377 + 1.97931 4 3 ack 40 ------- 0 5.0 0.0 26 377 - 1.97931 4 3 ack 40 ------- 0 5.0 0.0 26 377 + 1.98 1 3 cbr 500 ------- 1 1.0 6.0 169 382 - 1.98 1 3 cbr 500 ------- 1 1.0 6.0 169 382 + 1.98 2 3 cbr 1000 ------- 1 2.0 7.0 128 383 - 1.98 2 3 cbr 1000 ------- 1 2.0 7.0 128 383 r 1.98165 4 6 cbr 500 ------- 1 1.0 6.0 161 349 - 1.98365 3 4 cbr 500 ------- 1 1.0 6.0 165 365 r 1.984 1 3 cbr 500 ------- 1 1.0 6.0 168 378 + 1.984 3 4 cbr 500 ------- 1 1.0 6.0 168 378 r 1.98565 3 4 tcp 1000 ------- 0 0.0 5.0 30 357 + 1.98565 4 5 tcp 1000 ------- 0 0.0 5.0 30 357 - 1.98565 4 5 tcp 1000 ------- 0 0.0 5.0 30 357 - 1.98765 3 4 cbr 1000 ------- 1 2.0 7.0 120 366 r 1.988 2 3 cbr 1000 ------- 1 2.0 7.0 126 379 + 1.988 3 4 cbr 1000 ------- 1 2.0 7.0 126 379 + 1.99 2 3 cbr 1000 ------- 1 2.0 7.0 129 384 - 1.99 2 3 cbr 1000 ------- 1 2.0 7.0 129 384 r 1.99365 3 4 cbr 1000 ------- 1 2.0 7.0 115 358 + 1.99365 4 7 cbr 1000 ------- 1 2.0 7.0 115 358 - 1.99365 4 7 cbr 1000 ------- 1 2.0 7.0 115 358 r 1.99365 4 7 cbr 1000 ------- 1 2.0 7.0 112 350 r 1.9937 3 0 ack 40 ------- 0 5.0 0.0 23 367 + 1.9937 0 3 tcp 1000 ------- 0 0.0 5.0 31 385 - 1.9937 0 3 tcp 1000 ------- 0 0.0 5.0 31 385 r 1.99531 5 4 ack 40 ------- 0 5.0 0.0 27 381 + 1.99531 4 3 ack 40 ------- 0 5.0 0.0 27 381 - 1.99531 4 3 ack 40 ------- 0 5.0 0.0 27 381 - 1.99565 3 4 cbr 1000 ------- 1 2.0 7.0 121 368 r 1.99765 3 4 cbr 500 ------- 1 1.0 6.0 163 359 + 1.99765 4 6 cbr 500 ------- 1 1.0 6.0 163 359 - 1.99765 4 6 cbr 500 ------- 1 1.0 6.0 163 359 r 1.998 2 3 cbr 1000 ------- 1 2.0 7.0 127 380 + 1.998 3 4 cbr 1000 ------- 1 2.0 7.0 127 380 v 2 eval {set sim_annotation {Send Packet_31 to 35}} + 2 1 3 cbr 500 ------- 1 1.0 6.0 170 386 - 2 1 3 cbr 500 ------- 1 1.0 6.0 170 386 + 2 2 3 cbr 1000 ------- 1 2.0 7.0 130 387 - 2 2 3 cbr 1000 ------- 1 2.0 7.0 130 387 r 2.00163 4 3 ack 40 ------- 0 5.0 0.0 24 372 + 2.00163 3 0 ack 40 ------- 0 5.0 0.0 24 372 - 2.00163 3 0 ack 40 ------- 0 5.0 0.0 24 372 r 2.00165 4 7 cbr 1000 ------- 1 2.0 7.0 113 353 r 2.00165 4 6 cbr 500 ------- 1 1.0 6.0 162 355 - 2.00365 3 4 cbr 500 ------- 1 1.0 6.0 166 369 r 2.004 1 3 cbr 500 ------- 1 1.0 6.0 169 382 + 2.004 3 4 cbr 500 ------- 1 1.0 6.0 169 382 r 2.00565 3 4 cbr 1000 ------- 1 2.0 7.0 116 360 + 2.00565 4 7 cbr 1000 ------- 1 2.0 7.0 116 360 - 2.00565 4 7 cbr 1000 ------- 1 2.0 7.0 116 360 r 2.00725 4 5 tcp 1000 ------- 0 0.0 5.0 30 357 + 2.00725 5 4 ack 40 ------- 0 5.0 0.0 27 388 - 2.00725 5 4 ack 40 ------- 0 5.0 0.0 27 388 - 2.00765 3 4 cbr 1000 ------- 1 2.0 7.0 122 370 r 2.008 2 3 cbr 1000 ------- 1 2.0 7.0 128 383 + 2.008 3 4 cbr 1000 ------- 1 2.0 7.0 128 383 + 2.01 2 3 cbr 1000 ------- 1 2.0 7.0 131 389 - 2.01 2 3 cbr 1000 ------- 1 2.0 7.0 131 389 r 2.01363 4 3 ack 40 ------- 0 5.0 0.0 25 375 + 2.01363 3 0 ack 40 ------- 0 5.0 0.0 25 375 - 2.01363 3 0 ack 40 ------- 0 5.0 0.0 25 375 r 2.01365 3 4 cbr 1000 ------- 1 2.0 7.0 117 361 + 2.01365 4 7 cbr 1000 ------- 1 2.0 7.0 117 361 - 2.01365 4 7 cbr 1000 ------- 1 2.0 7.0 117 361 r 2.0153 0 3 tcp 1000 ------- 0 0.0 5.0 31 385 + 2.0153 3 4 tcp 1000 ------- 0 0.0 5.0 31 385 d 2.0153 3 4 tcp 1000 ------- 0 0.0 5.0 31 385 - 2.01565 3 4 cbr 1000 ------- 1 2.0 7.0 123 371 r 2.01765 3 4 cbr 500 ------- 1 1.0 6.0 164 362 + 2.01765 4 6 cbr 500 ------- 1 1.0 6.0 164 362 - 2.01765 4 6 cbr 500 ------- 1 1.0 6.0 164 362 r 2.018 2 3 cbr 1000 ------- 1 2.0 7.0 129 384 + 2.018 3 4 cbr 1000 ------- 1 2.0 7.0 129 384 + 2.02 2 3 cbr 1000 ------- 1 2.0 7.0 132 390 - 2.02 2 3 cbr 1000 ------- 1 2.0 7.0 132 390 + 2.02 1 3 cbr 500 ------- 1 1.0 6.0 171 391 - 2.02 1 3 cbr 500 ------- 1 1.0 6.0 171 391 r 2.02165 4 7 cbr 1000 ------- 1 2.0 7.0 115 358 r 2.02165 4 6 cbr 500 ------- 1 1.0 6.0 163 359 r 2.0217 3 0 ack 40 ------- 0 5.0 0.0 24 372 + 2.0217 0 3 tcp 1000 ------- 0 0.0 5.0 32 392 - 2.0217 0 3 tcp 1000 ------- 0 0.0 5.0 32 392 - 2.02365 3 4 cbr 500 ------- 1 1.0 6.0 167 373 r 2.024 1 3 cbr 500 ------- 1 1.0 6.0 170 386 + 2.024 3 4 cbr 500 ------- 1 1.0 6.0 170 386 r 2.02565 3 4 cbr 1000 ------- 1 2.0 7.0 118 363 + 2.02565 4 7 cbr 1000 ------- 1 2.0 7.0 118 363 - 2.02565 4 7 cbr 1000 ------- 1 2.0 7.0 118 363 r 2.02731 5 4 ack 40 ------- 0 5.0 0.0 27 388 + 2.02731 4 3 ack 40 ------- 0 5.0 0.0 27 388 - 2.02731 4 3 ack 40 ------- 0 5.0 0.0 27 388 - 2.02765 3 4 cbr 1000 ------- 1 2.0 7.0 124 374 r 2.028 2 3 cbr 1000 ------- 1 2.0 7.0 130 387 + 2.028 3 4 cbr 1000 ------- 1 2.0 7.0 130 387 r 2.02963 4 3 ack 40 ------- 0 5.0 0.0 26 377 + 2.02963 3 0 ack 40 ------- 0 5.0 0.0 26 377 - 2.02963 3 0 ack 40 ------- 0 5.0 0.0 26 377 + 2.03 2 3 cbr 1000 ------- 1 2.0 7.0 133 393 - 2.03 2 3 cbr 1000 ------- 1 2.0 7.0 133 393 r 2.03365 3 4 cbr 1000 ------- 1 2.0 7.0 119 364 + 2.03365 4 7 cbr 1000 ------- 1 2.0 7.0 119 364 r 2.03365 4 7 cbr 1000 ------- 1 2.0 7.0 116 360 - 2.03365 4 7 cbr 1000 ------- 1 2.0 7.0 119 364 r 2.0337 3 0 ack 40 ------- 0 5.0 0.0 25 375 + 2.0337 0 3 tcp 1000 ------- 0 0.0 5.0 33 394 - 2.0337 0 3 tcp 1000 ------- 0 0.0 5.0 33 394 - 2.03565 3 4 cbr 1000 ------- 1 2.0 7.0 125 376 r 2.03765 3 4 cbr 500 ------- 1 1.0 6.0 165 365 + 2.03765 4 6 cbr 500 ------- 1 1.0 6.0 165 365 - 2.03765 4 6 cbr 500 ------- 1 1.0 6.0 165 365 r 2.038 2 3 cbr 1000 ------- 1 2.0 7.0 131 389 + 2.038 3 4 cbr 1000 ------- 1 2.0 7.0 131 389 + 2.04 2 3 cbr 1000 ------- 1 2.0 7.0 134 395 - 2.04 2 3 cbr 1000 ------- 1 2.0 7.0 134 395 + 2.04 1 3 cbr 500 ------- 1 1.0 6.0 172 396 - 2.04 1 3 cbr 500 ------- 1 1.0 6.0 172 396 r 2.04165 4 7 cbr 1000 ------- 1 2.0 7.0 117 361 r 2.04165 4 6 cbr 500 ------- 1 1.0 6.0 164 362 r 2.0433 0 3 tcp 1000 ------- 0 0.0 5.0 32 392 + 2.0433 3 4 tcp 1000 ------- 0 0.0 5.0 32 392 d 2.0433 3 4 tcp 1000 ------- 0 0.0 5.0 32 392 - 2.04365 3 4 cbr 500 ------- 1 1.0 6.0 168 378 r 2.044 1 3 cbr 500 ------- 1 1.0 6.0 171 391 + 2.044 3 4 cbr 500 ------- 1 1.0 6.0 171 391 r 2.04563 4 3 ack 40 ------- 0 5.0 0.0 27 381 + 2.04563 3 0 ack 40 ------- 0 5.0 0.0 27 381 - 2.04563 3 0 ack 40 ------- 0 5.0 0.0 27 381 r 2.04565 3 4 cbr 1000 ------- 1 2.0 7.0 120 366 + 2.04565 4 7 cbr 1000 ------- 1 2.0 7.0 120 366 - 2.04565 4 7 cbr 1000 ------- 1 2.0 7.0 120 366 - 2.04765 3 4 cbr 1000 ------- 1 2.0 7.0 126 379 r 2.048 2 3 cbr 1000 ------- 1 2.0 7.0 132 390 + 2.048 3 4 cbr 1000 ------- 1 2.0 7.0 132 390 r 2.0497 3 0 ack 40 ------- 0 5.0 0.0 26 377 + 2.0497 0 3 tcp 1000 ------- 0 0.0 5.0 34 397 - 2.0497 0 3 tcp 1000 ------- 0 0.0 5.0 34 397 + 2.05 2 3 cbr 1000 ------- 1 2.0 7.0 135 398 - 2.05 2 3 cbr 1000 ------- 1 2.0 7.0 135 398 r 2.05365 3 4 cbr 1000 ------- 1 2.0 7.0 121 368 + 2.05365 4 7 cbr 1000 ------- 1 2.0 7.0 121 368 r 2.05365 4 7 cbr 1000 ------- 1 2.0 7.0 118 363 - 2.05365 4 7 cbr 1000 ------- 1 2.0 7.0 121 368 r 2.0553 0 3 tcp 1000 ------- 0 0.0 5.0 33 394 + 2.0553 3 4 tcp 1000 ------- 0 0.0 5.0 33 394 d 2.0553 3 4 tcp 1000 ------- 0 0.0 5.0 33 394 - 2.05565 3 4 cbr 1000 ------- 1 2.0 7.0 127 380 r 2.05765 3 4 cbr 500 ------- 1 1.0 6.0 166 369 + 2.05765 4 6 cbr 500 ------- 1 1.0 6.0 166 369 - 2.05765 4 6 cbr 500 ------- 1 1.0 6.0 166 369 r 2.058 2 3 cbr 1000 ------- 1 2.0 7.0 133 393 + 2.058 3 4 cbr 1000 ------- 1 2.0 7.0 133 393 + 2.06 2 3 cbr 1000 ------- 1 2.0 7.0 136 399 - 2.06 2 3 cbr 1000 ------- 1 2.0 7.0 136 399 + 2.06 1 3 cbr 500 ------- 1 1.0 6.0 173 400 - 2.06 1 3 cbr 500 ------- 1 1.0 6.0 173 400 r 2.06165 4 7 cbr 1000 ------- 1 2.0 7.0 119 364 r 2.06165 4 6 cbr 500 ------- 1 1.0 6.0 165 365 - 2.06365 3 4 cbr 500 ------- 1 1.0 6.0 169 382 r 2.064 1 3 cbr 500 ------- 1 1.0 6.0 172 396 + 2.064 3 4 cbr 500 ------- 1 1.0 6.0 172 396 r 2.06565 3 4 cbr 1000 ------- 1 2.0 7.0 122 370 + 2.06565 4 7 cbr 1000 ------- 1 2.0 7.0 122 370 - 2.06565 4 7 cbr 1000 ------- 1 2.0 7.0 122 370 r 2.0657 3 0 ack 40 ------- 0 5.0 0.0 27 381 + 2.0657 0 3 tcp 1000 ------- 0 0.0 5.0 35 401 - 2.0657 0 3 tcp 1000 ------- 0 0.0 5.0 35 401 - 2.06765 3 4 cbr 1000 ------- 1 2.0 7.0 128 383 r 2.068 2 3 cbr 1000 ------- 1 2.0 7.0 134 395 + 2.068 3 4 cbr 1000 ------- 1 2.0 7.0 134 395 + 2.07 2 3 cbr 1000 ------- 1 2.0 7.0 137 402 - 2.07 2 3 cbr 1000 ------- 1 2.0 7.0 137 402 r 2.0713 0 3 tcp 1000 ------- 0 0.0 5.0 34 397 + 2.0713 3 4 tcp 1000 ------- 0 0.0 5.0 34 397 d 2.0713 3 4 tcp 1000 ------- 0 0.0 5.0 34 397 r 2.07365 3 4 cbr 1000 ------- 1 2.0 7.0 123 371 + 2.07365 4 7 cbr 1000 ------- 1 2.0 7.0 123 371 r 2.07365 4 7 cbr 1000 ------- 1 2.0 7.0 120 366 - 2.07365 4 7 cbr 1000 ------- 1 2.0 7.0 123 371 - 2.07565 3 4 cbr 1000 ------- 1 2.0 7.0 129 384 r 2.07763 4 3 ack 40 ------- 0 5.0 0.0 27 388 + 2.07763 3 0 ack 40 ------- 0 5.0 0.0 27 388 - 2.07763 3 0 ack 40 ------- 0 5.0 0.0 27 388 r 2.07765 3 4 cbr 500 ------- 1 1.0 6.0 167 373 + 2.07765 4 6 cbr 500 ------- 1 1.0 6.0 167 373 - 2.07765 4 6 cbr 500 ------- 1 1.0 6.0 167 373 r 2.078 2 3 cbr 1000 ------- 1 2.0 7.0 135 398 + 2.078 3 4 cbr 1000 ------- 1 2.0 7.0 135 398 + 2.08 2 3 cbr 1000 ------- 1 2.0 7.0 138 403 - 2.08 2 3 cbr 1000 ------- 1 2.0 7.0 138 403 v 2.0800000000000001 eval {set sim_annotation {Lost Packet (all of them) }} + 2.08 1 3 cbr 500 ------- 1 1.0 6.0 174 404 - 2.08 1 3 cbr 500 ------- 1 1.0 6.0 174 404 r 2.08165 4 7 cbr 1000 ------- 1 2.0 7.0 121 368 r 2.08165 4 6 cbr 500 ------- 1 1.0 6.0 166 369 - 2.08365 3 4 cbr 500 ------- 1 1.0 6.0 170 386 r 2.084 1 3 cbr 500 ------- 1 1.0 6.0 173 400 + 2.084 3 4 cbr 500 ------- 1 1.0 6.0 173 400 r 2.08565 3 4 cbr 1000 ------- 1 2.0 7.0 124 374 + 2.08565 4 7 cbr 1000 ------- 1 2.0 7.0 124 374 - 2.08565 4 7 cbr 1000 ------- 1 2.0 7.0 124 374 r 2.0873 0 3 tcp 1000 ------- 0 0.0 5.0 35 401 + 2.0873 3 4 tcp 1000 ------- 0 0.0 5.0 35 401 d 2.0873 3 4 tcp 1000 ------- 0 0.0 5.0 35 401 - 2.08765 3 4 cbr 1000 ------- 1 2.0 7.0 130 387 r 2.088 2 3 cbr 1000 ------- 1 2.0 7.0 136 399 + 2.088 3 4 cbr 1000 ------- 1 2.0 7.0 136 399 + 2.09 2 3 cbr 1000 ------- 1 2.0 7.0 139 405 - 2.09 2 3 cbr 1000 ------- 1 2.0 7.0 139 405 r 2.09365 3 4 cbr 1000 ------- 1 2.0 7.0 125 376 + 2.09365 4 7 cbr 1000 ------- 1 2.0 7.0 125 376 r 2.09365 4 7 cbr 1000 ------- 1 2.0 7.0 122 370 - 2.09365 4 7 cbr 1000 ------- 1 2.0 7.0 125 376 - 2.09565 3 4 cbr 1000 ------- 1 2.0 7.0 131 389 r 2.09765 3 4 cbr 500 ------- 1 1.0 6.0 168 378 + 2.09765 4 6 cbr 500 ------- 1 1.0 6.0 168 378 - 2.09765 4 6 cbr 500 ------- 1 1.0 6.0 168 378 r 2.0977 3 0 ack 40 ------- 0 5.0 0.0 27 388 r 2.098 2 3 cbr 1000 ------- 1 2.0 7.0 137 402 + 2.098 3 4 cbr 1000 ------- 1 2.0 7.0 137 402 + 2.1 2 3 cbr 1000 ------- 1 2.0 7.0 140 406 - 2.1 2 3 cbr 1000 ------- 1 2.0 7.0 140 406 + 2.1 1 3 cbr 500 ------- 1 1.0 6.0 175 407 - 2.1 1 3 cbr 500 ------- 1 1.0 6.0 175 407 r 2.10165 4 7 cbr 1000 ------- 1 2.0 7.0 123 371 r 2.10165 4 6 cbr 500 ------- 1 1.0 6.0 167 373 - 2.10365 3 4 cbr 500 ------- 1 1.0 6.0 171 391 r 2.104 1 3 cbr 500 ------- 1 1.0 6.0 174 404 + 2.104 3 4 cbr 500 ------- 1 1.0 6.0 174 404 r 2.10565 3 4 cbr 1000 ------- 1 2.0 7.0 126 379 + 2.10565 4 7 cbr 1000 ------- 1 2.0 7.0 126 379 - 2.10565 4 7 cbr 1000 ------- 1 2.0 7.0 126 379 - 2.10765 3 4 cbr 1000 ------- 1 2.0 7.0 132 390 r 2.108 2 3 cbr 1000 ------- 1 2.0 7.0 138 403 + 2.108 3 4 cbr 1000 ------- 1 2.0 7.0 138 403 + 2.11 2 3 cbr 1000 ------- 1 2.0 7.0 141 408 - 2.11 2 3 cbr 1000 ------- 1 2.0 7.0 141 408 r 2.11365 3 4 cbr 1000 ------- 1 2.0 7.0 127 380 + 2.11365 4 7 cbr 1000 ------- 1 2.0 7.0 127 380 r 2.11365 4 7 cbr 1000 ------- 1 2.0 7.0 124 374 - 2.11365 4 7 cbr 1000 ------- 1 2.0 7.0 127 380 - 2.11565 3 4 cbr 1000 ------- 1 2.0 7.0 133 393 r 2.11765 3 4 cbr 500 ------- 1 1.0 6.0 169 382 + 2.11765 4 6 cbr 500 ------- 1 1.0 6.0 169 382 - 2.11765 4 6 cbr 500 ------- 1 1.0 6.0 169 382 r 2.118 2 3 cbr 1000 ------- 1 2.0 7.0 139 405 + 2.118 3 4 cbr 1000 ------- 1 2.0 7.0 139 405 + 2.12 2 3 cbr 1000 ------- 1 2.0 7.0 142 409 - 2.12 2 3 cbr 1000 ------- 1 2.0 7.0 142 409 + 2.12 1 3 cbr 500 ------- 1 1.0 6.0 176 410 - 2.12 1 3 cbr 500 ------- 1 1.0 6.0 176 410 r 2.12165 4 7 cbr 1000 ------- 1 2.0 7.0 125 376 r 2.12165 4 6 cbr 500 ------- 1 1.0 6.0 168 378 - 2.12365 3 4 cbr 500 ------- 1 1.0 6.0 172 396 r 2.124 1 3 cbr 500 ------- 1 1.0 6.0 175 407 + 2.124 3 4 cbr 500 ------- 1 1.0 6.0 175 407 r 2.12565 3 4 cbr 1000 ------- 1 2.0 7.0 128 383 + 2.12565 4 7 cbr 1000 ------- 1 2.0 7.0 128 383 - 2.12565 4 7 cbr 1000 ------- 1 2.0 7.0 128 383 - 2.12765 3 4 cbr 1000 ------- 1 2.0 7.0 134 395 r 2.128 2 3 cbr 1000 ------- 1 2.0 7.0 140 406 + 2.128 3 4 cbr 1000 ------- 1 2.0 7.0 140 406 + 2.13 2 3 cbr 1000 ------- 1 2.0 7.0 143 411 - 2.13 2 3 cbr 1000 ------- 1 2.0 7.0 143 411 r 2.13365 3 4 cbr 1000 ------- 1 2.0 7.0 129 384 + 2.13365 4 7 cbr 1000 ------- 1 2.0 7.0 129 384 r 2.13365 4 7 cbr 1000 ------- 1 2.0 7.0 126 379 - 2.13365 4 7 cbr 1000 ------- 1 2.0 7.0 129 384 - 2.13565 3 4 cbr 1000 ------- 1 2.0 7.0 135 398 r 2.13765 3 4 cbr 500 ------- 1 1.0 6.0 170 386 + 2.13765 4 6 cbr 500 ------- 1 1.0 6.0 170 386 - 2.13765 4 6 cbr 500 ------- 1 1.0 6.0 170 386 r 2.138 2 3 cbr 1000 ------- 1 2.0 7.0 141 408 + 2.138 3 4 cbr 1000 ------- 1 2.0 7.0 141 408 + 2.14 2 3 cbr 1000 ------- 1 2.0 7.0 144 412 - 2.14 2 3 cbr 1000 ------- 1 2.0 7.0 144 412 + 2.14 1 3 cbr 500 ------- 1 1.0 6.0 177 413 - 2.14 1 3 cbr 500 ------- 1 1.0 6.0 177 413 r 2.14165 4 7 cbr 1000 ------- 1 2.0 7.0 127 380 r 2.14165 4 6 cbr 500 ------- 1 1.0 6.0 169 382 - 2.14365 3 4 cbr 500 ------- 1 1.0 6.0 173 400 r 2.144 1 3 cbr 500 ------- 1 1.0 6.0 176 410 + 2.144 3 4 cbr 500 ------- 1 1.0 6.0 176 410 r 2.14565 3 4 cbr 1000 ------- 1 2.0 7.0 130 387 + 2.14565 4 7 cbr 1000 ------- 1 2.0 7.0 130 387 - 2.14565 4 7 cbr 1000 ------- 1 2.0 7.0 130 387 - 2.14765 3 4 cbr 1000 ------- 1 2.0 7.0 136 399 r 2.148 2 3 cbr 1000 ------- 1 2.0 7.0 142 409 + 2.148 3 4 cbr 1000 ------- 1 2.0 7.0 142 409 + 2.15 2 3 cbr 1000 ------- 1 2.0 7.0 145 414 - 2.15 2 3 cbr 1000 ------- 1 2.0 7.0 145 414 r 2.15365 3 4 cbr 1000 ------- 1 2.0 7.0 131 389 + 2.15365 4 7 cbr 1000 ------- 1 2.0 7.0 131 389 r 2.15365 4 7 cbr 1000 ------- 1 2.0 7.0 128 383 - 2.15365 4 7 cbr 1000 ------- 1 2.0 7.0 131 389 - 2.15565 3 4 cbr 1000 ------- 1 2.0 7.0 137 402 r 2.15765 3 4 cbr 500 ------- 1 1.0 6.0 171 391 + 2.15765 4 6 cbr 500 ------- 1 1.0 6.0 171 391 - 2.15765 4 6 cbr 500 ------- 1 1.0 6.0 171 391 r 2.158 2 3 cbr 1000 ------- 1 2.0 7.0 143 411 + 2.158 3 4 cbr 1000 ------- 1 2.0 7.0 143 411 + 2.16 2 3 cbr 1000 ------- 1 2.0 7.0 146 415 - 2.16 2 3 cbr 1000 ------- 1 2.0 7.0 146 415 + 2.16 1 3 cbr 500 ------- 1 1.0 6.0 178 416 - 2.16 1 3 cbr 500 ------- 1 1.0 6.0 178 416 r 2.16165 4 7 cbr 1000 ------- 1 2.0 7.0 129 384 r 2.16165 4 6 cbr 500 ------- 1 1.0 6.0 170 386 - 2.16365 3 4 cbr 500 ------- 1 1.0 6.0 174 404 r 2.164 1 3 cbr 500 ------- 1 1.0 6.0 177 413 + 2.164 3 4 cbr 500 ------- 1 1.0 6.0 177 413 r 2.16565 3 4 cbr 1000 ------- 1 2.0 7.0 132 390 + 2.16565 4 7 cbr 1000 ------- 1 2.0 7.0 132 390 - 2.16565 4 7 cbr 1000 ------- 1 2.0 7.0 132 390 - 2.16765 3 4 cbr 1000 ------- 1 2.0 7.0 138 403 r 2.168 2 3 cbr 1000 ------- 1 2.0 7.0 144 412 + 2.168 3 4 cbr 1000 ------- 1 2.0 7.0 144 412 + 2.17 2 3 cbr 1000 ------- 1 2.0 7.0 147 417 - 2.17 2 3 cbr 1000 ------- 1 2.0 7.0 147 417 r 2.17365 3 4 cbr 1000 ------- 1 2.0 7.0 133 393 + 2.17365 4 7 cbr 1000 ------- 1 2.0 7.0 133 393 r 2.17365 4 7 cbr 1000 ------- 1 2.0 7.0 130 387 - 2.17365 4 7 cbr 1000 ------- 1 2.0 7.0 133 393 - 2.17565 3 4 cbr 1000 ------- 1 2.0 7.0 139 405 r 2.17765 3 4 cbr 500 ------- 1 1.0 6.0 172 396 + 2.17765 4 6 cbr 500 ------- 1 1.0 6.0 172 396 - 2.17765 4 6 cbr 500 ------- 1 1.0 6.0 172 396 r 2.178 2 3 cbr 1000 ------- 1 2.0 7.0 145 414 + 2.178 3 4 cbr 1000 ------- 1 2.0 7.0 145 414 + 2.18 2 3 cbr 1000 ------- 1 2.0 7.0 148 418 - 2.18 2 3 cbr 1000 ------- 1 2.0 7.0 148 418 + 2.18 1 3 cbr 500 ------- 1 1.0 6.0 179 419 - 2.18 1 3 cbr 500 ------- 1 1.0 6.0 179 419 r 2.18165 4 7 cbr 1000 ------- 1 2.0 7.0 131 389 r 2.18165 4 6 cbr 500 ------- 1 1.0 6.0 171 391 - 2.18365 3 4 cbr 500 ------- 1 1.0 6.0 175 407 r 2.184 1 3 cbr 500 ------- 1 1.0 6.0 178 416 + 2.184 3 4 cbr 500 ------- 1 1.0 6.0 178 416 r 2.18565 3 4 cbr 1000 ------- 1 2.0 7.0 134 395 + 2.18565 4 7 cbr 1000 ------- 1 2.0 7.0 134 395 - 2.18565 4 7 cbr 1000 ------- 1 2.0 7.0 134 395 - 2.18765 3 4 cbr 1000 ------- 1 2.0 7.0 140 406 r 2.188 2 3 cbr 1000 ------- 1 2.0 7.0 146 415 + 2.188 3 4 cbr 1000 ------- 1 2.0 7.0 146 415 + 2.19 2 3 cbr 1000 ------- 1 2.0 7.0 149 420 - 2.19 2 3 cbr 1000 ------- 1 2.0 7.0 149 420 r 2.19365 3 4 cbr 1000 ------- 1 2.0 7.0 135 398 + 2.19365 4 7 cbr 1000 ------- 1 2.0 7.0 135 398 r 2.19365 4 7 cbr 1000 ------- 1 2.0 7.0 132 390 - 2.19365 4 7 cbr 1000 ------- 1 2.0 7.0 135 398 - 2.19565 3 4 cbr 1000 ------- 1 2.0 7.0 141 408 r 2.19765 3 4 cbr 500 ------- 1 1.0 6.0 173 400 + 2.19765 4 6 cbr 500 ------- 1 1.0 6.0 173 400 - 2.19765 4 6 cbr 500 ------- 1 1.0 6.0 173 400 r 2.198 2 3 cbr 1000 ------- 1 2.0 7.0 147 417 + 2.198 3 4 cbr 1000 ------- 1 2.0 7.0 147 417 + 2.2 2 3 cbr 1000 ------- 1 2.0 7.0 150 421 - 2.2 2 3 cbr 1000 ------- 1 2.0 7.0 150 421 + 2.2 1 3 cbr 500 ------- 1 1.0 6.0 180 422 - 2.2 1 3 cbr 500 ------- 1 1.0 6.0 180 422 r 2.20165 4 7 cbr 1000 ------- 1 2.0 7.0 133 393 r 2.20165 4 6 cbr 500 ------- 1 1.0 6.0 172 396 - 2.20365 3 4 cbr 500 ------- 1 1.0 6.0 176 410 r 2.204 1 3 cbr 500 ------- 1 1.0 6.0 179 419 + 2.204 3 4 cbr 500 ------- 1 1.0 6.0 179 419 r 2.20565 3 4 cbr 1000 ------- 1 2.0 7.0 136 399 + 2.20565 4 7 cbr 1000 ------- 1 2.0 7.0 136 399 - 2.20565 4 7 cbr 1000 ------- 1 2.0 7.0 136 399 - 2.20765 3 4 cbr 1000 ------- 1 2.0 7.0 142 409 r 2.208 2 3 cbr 1000 ------- 1 2.0 7.0 148 418 + 2.208 3 4 cbr 1000 ------- 1 2.0 7.0 148 418 + 2.21 2 3 cbr 1000 ------- 1 2.0 7.0 151 423 - 2.21 2 3 cbr 1000 ------- 1 2.0 7.0 151 423 r 2.21365 3 4 cbr 1000 ------- 1 2.0 7.0 137 402 + 2.21365 4 7 cbr 1000 ------- 1 2.0 7.0 137 402 r 2.21365 4 7 cbr 1000 ------- 1 2.0 7.0 134 395 - 2.21365 4 7 cbr 1000 ------- 1 2.0 7.0 137 402 - 2.21565 3 4 cbr 1000 ------- 1 2.0 7.0 143 411 r 2.21765 3 4 cbr 500 ------- 1 1.0 6.0 174 404 + 2.21765 4 6 cbr 500 ------- 1 1.0 6.0 174 404 - 2.21765 4 6 cbr 500 ------- 1 1.0 6.0 174 404 r 2.218 2 3 cbr 1000 ------- 1 2.0 7.0 149 420 + 2.218 3 4 cbr 1000 ------- 1 2.0 7.0 149 420 + 2.22 2 3 cbr 1000 ------- 1 2.0 7.0 152 424 - 2.22 2 3 cbr 1000 ------- 1 2.0 7.0 152 424 + 2.22 1 3 cbr 500 ------- 1 1.0 6.0 181 425 - 2.22 1 3 cbr 500 ------- 1 1.0 6.0 181 425 r 2.22165 4 7 cbr 1000 ------- 1 2.0 7.0 135 398 r 2.22165 4 6 cbr 500 ------- 1 1.0 6.0 173 400 - 2.22365 3 4 cbr 500 ------- 1 1.0 6.0 177 413 r 2.224 1 3 cbr 500 ------- 1 1.0 6.0 180 422 + 2.224 3 4 cbr 500 ------- 1 1.0 6.0 180 422 r 2.22565 3 4 cbr 1000 ------- 1 2.0 7.0 138 403 + 2.22565 4 7 cbr 1000 ------- 1 2.0 7.0 138 403 - 2.22565 4 7 cbr 1000 ------- 1 2.0 7.0 138 403 - 2.22765 3 4 cbr 1000 ------- 1 2.0 7.0 144 412 r 2.228 2 3 cbr 1000 ------- 1 2.0 7.0 150 421 + 2.228 3 4 cbr 1000 ------- 1 2.0 7.0 150 421 + 2.23 2 3 cbr 1000 ------- 1 2.0 7.0 153 426 - 2.23 2 3 cbr 1000 ------- 1 2.0 7.0 153 426 r 2.23365 3 4 cbr 1000 ------- 1 2.0 7.0 139 405 + 2.23365 4 7 cbr 1000 ------- 1 2.0 7.0 139 405 r 2.23365 4 7 cbr 1000 ------- 1 2.0 7.0 136 399 - 2.23365 4 7 cbr 1000 ------- 1 2.0 7.0 139 405 - 2.23565 3 4 cbr 1000 ------- 1 2.0 7.0 145 414 r 2.23765 3 4 cbr 500 ------- 1 1.0 6.0 175 407 + 2.23765 4 6 cbr 500 ------- 1 1.0 6.0 175 407 - 2.23765 4 6 cbr 500 ------- 1 1.0 6.0 175 407 r 2.238 2 3 cbr 1000 ------- 1 2.0 7.0 151 423 + 2.238 3 4 cbr 1000 ------- 1 2.0 7.0 151 423 + 2.24 2 3 cbr 1000 ------- 1 2.0 7.0 154 427 - 2.24 2 3 cbr 1000 ------- 1 2.0 7.0 154 427 + 2.24 1 3 cbr 500 ------- 1 1.0 6.0 182 428 - 2.24 1 3 cbr 500 ------- 1 1.0 6.0 182 428 r 2.24165 4 7 cbr 1000 ------- 1 2.0 7.0 137 402 r 2.24165 4 6 cbr 500 ------- 1 1.0 6.0 174 404 - 2.24365 3 4 cbr 500 ------- 1 1.0 6.0 178 416 r 2.244 1 3 cbr 500 ------- 1 1.0 6.0 181 425 + 2.244 3 4 cbr 500 ------- 1 1.0 6.0 181 425 r 2.24565 3 4 cbr 1000 ------- 1 2.0 7.0 140 406 + 2.24565 4 7 cbr 1000 ------- 1 2.0 7.0 140 406 - 2.24565 4 7 cbr 1000 ------- 1 2.0 7.0 140 406 - 2.24765 3 4 cbr 1000 ------- 1 2.0 7.0 146 415 r 2.248 2 3 cbr 1000 ------- 1 2.0 7.0 152 424 + 2.248 3 4 cbr 1000 ------- 1 2.0 7.0 152 424 + 2.25 2 3 cbr 1000 ------- 1 2.0 7.0 155 429 - 2.25 2 3 cbr 1000 ------- 1 2.0 7.0 155 429 r 2.25365 3 4 cbr 1000 ------- 1 2.0 7.0 141 408 + 2.25365 4 7 cbr 1000 ------- 1 2.0 7.0 141 408 r 2.25365 4 7 cbr 1000 ------- 1 2.0 7.0 138 403 - 2.25365 4 7 cbr 1000 ------- 1 2.0 7.0 141 408 - 2.25565 3 4 cbr 1000 ------- 1 2.0 7.0 147 417 r 2.25765 3 4 cbr 500 ------- 1 1.0 6.0 176 410 + 2.25765 4 6 cbr 500 ------- 1 1.0 6.0 176 410 - 2.25765 4 6 cbr 500 ------- 1 1.0 6.0 176 410 r 2.258 2 3 cbr 1000 ------- 1 2.0 7.0 153 426 + 2.258 3 4 cbr 1000 ------- 1 2.0 7.0 153 426 + 2.26 2 3 cbr 1000 ------- 1 2.0 7.0 156 430 - 2.26 2 3 cbr 1000 ------- 1 2.0 7.0 156 430 + 2.26 1 3 cbr 500 ------- 1 1.0 6.0 183 431 - 2.26 1 3 cbr 500 ------- 1 1.0 6.0 183 431 r 2.26165 4 7 cbr 1000 ------- 1 2.0 7.0 139 405 r 2.26165 4 6 cbr 500 ------- 1 1.0 6.0 175 407 - 2.26365 3 4 cbr 500 ------- 1 1.0 6.0 179 419 r 2.264 1 3 cbr 500 ------- 1 1.0 6.0 182 428 + 2.264 3 4 cbr 500 ------- 1 1.0 6.0 182 428 r 2.26565 3 4 cbr 1000 ------- 1 2.0 7.0 142 409 + 2.26565 4 7 cbr 1000 ------- 1 2.0 7.0 142 409 - 2.26565 4 7 cbr 1000 ------- 1 2.0 7.0 142 409 - 2.26765 3 4 cbr 1000 ------- 1 2.0 7.0 148 418 r 2.268 2 3 cbr 1000 ------- 1 2.0 7.0 154 427 + 2.268 3 4 cbr 1000 ------- 1 2.0 7.0 154 427 + 2.27 2 3 cbr 1000 ------- 1 2.0 7.0 157 432 - 2.27 2 3 cbr 1000 ------- 1 2.0 7.0 157 432 r 2.27365 3 4 cbr 1000 ------- 1 2.0 7.0 143 411 + 2.27365 4 7 cbr 1000 ------- 1 2.0 7.0 143 411 r 2.27365 4 7 cbr 1000 ------- 1 2.0 7.0 140 406 - 2.27365 4 7 cbr 1000 ------- 1 2.0 7.0 143 411 - 2.27565 3 4 cbr 1000 ------- 1 2.0 7.0 149 420 r 2.27765 3 4 cbr 500 ------- 1 1.0 6.0 177 413 + 2.27765 4 6 cbr 500 ------- 1 1.0 6.0 177 413 - 2.27765 4 6 cbr 500 ------- 1 1.0 6.0 177 413 r 2.278 2 3 cbr 1000 ------- 1 2.0 7.0 155 429 + 2.278 3 4 cbr 1000 ------- 1 2.0 7.0 155 429 + 2.28 2 3 cbr 1000 ------- 1 2.0 7.0 158 433 - 2.28 2 3 cbr 1000 ------- 1 2.0 7.0 158 433 + 2.28 1 3 cbr 500 ------- 1 1.0 6.0 184 434 - 2.28 1 3 cbr 500 ------- 1 1.0 6.0 184 434 r 2.28165 4 7 cbr 1000 ------- 1 2.0 7.0 141 408 r 2.28165 4 6 cbr 500 ------- 1 1.0 6.0 176 410 - 2.28365 3 4 cbr 500 ------- 1 1.0 6.0 180 422 r 2.284 1 3 cbr 500 ------- 1 1.0 6.0 183 431 + 2.284 3 4 cbr 500 ------- 1 1.0 6.0 183 431 r 2.28565 3 4 cbr 1000 ------- 1 2.0 7.0 144 412 + 2.28565 4 7 cbr 1000 ------- 1 2.0 7.0 144 412 - 2.28565 4 7 cbr 1000 ------- 1 2.0 7.0 144 412 - 2.28765 3 4 cbr 1000 ------- 1 2.0 7.0 150 421 r 2.288 2 3 cbr 1000 ------- 1 2.0 7.0 156 430 + 2.288 3 4 cbr 1000 ------- 1 2.0 7.0 156 430 + 2.29 2 3 cbr 1000 ------- 1 2.0 7.0 159 435 - 2.29 2 3 cbr 1000 ------- 1 2.0 7.0 159 435 r 2.29365 3 4 cbr 1000 ------- 1 2.0 7.0 145 414 + 2.29365 4 7 cbr 1000 ------- 1 2.0 7.0 145 414 r 2.29365 4 7 cbr 1000 ------- 1 2.0 7.0 142 409 - 2.29365 4 7 cbr 1000 ------- 1 2.0 7.0 145 414 - 2.29565 3 4 cbr 1000 ------- 1 2.0 7.0 151 423 r 2.29765 3 4 cbr 500 ------- 1 1.0 6.0 178 416 + 2.29765 4 6 cbr 500 ------- 1 1.0 6.0 178 416 - 2.29765 4 6 cbr 500 ------- 1 1.0 6.0 178 416 r 2.298 2 3 cbr 1000 ------- 1 2.0 7.0 157 432 + 2.298 3 4 cbr 1000 ------- 1 2.0 7.0 157 432 + 2.3 2 3 cbr 1000 ------- 1 2.0 7.0 160 436 - 2.3 2 3 cbr 1000 ------- 1 2.0 7.0 160 436 r 2.30165 4 7 cbr 1000 ------- 1 2.0 7.0 143 411 r 2.30165 4 6 cbr 500 ------- 1 1.0 6.0 177 413 - 2.30365 3 4 cbr 500 ------- 1 1.0 6.0 181 425 r 2.304 1 3 cbr 500 ------- 1 1.0 6.0 184 434 + 2.304 3 4 cbr 500 ------- 1 1.0 6.0 184 434 r 2.30565 3 4 cbr 1000 ------- 1 2.0 7.0 146 415 + 2.30565 4 7 cbr 1000 ------- 1 2.0 7.0 146 415 - 2.30565 4 7 cbr 1000 ------- 1 2.0 7.0 146 415 - 2.30765 3 4 cbr 1000 ------- 1 2.0 7.0 152 424 r 2.308 2 3 cbr 1000 ------- 1 2.0 7.0 158 433 + 2.308 3 4 cbr 1000 ------- 1 2.0 7.0 158 433 + 2.31 2 3 cbr 1000 ------- 1 2.0 7.0 161 437 - 2.31 2 3 cbr 1000 ------- 1 2.0 7.0 161 437 r 2.31365 3 4 cbr 1000 ------- 1 2.0 7.0 147 417 + 2.31365 4 7 cbr 1000 ------- 1 2.0 7.0 147 417 r 2.31365 4 7 cbr 1000 ------- 1 2.0 7.0 144 412 - 2.31365 4 7 cbr 1000 ------- 1 2.0 7.0 147 417 - 2.31565 3 4 cbr 1000 ------- 1 2.0 7.0 153 426 r 2.31765 3 4 cbr 500 ------- 1 1.0 6.0 179 419 + 2.31765 4 6 cbr 500 ------- 1 1.0 6.0 179 419 - 2.31765 4 6 cbr 500 ------- 1 1.0 6.0 179 419 r 2.318 2 3 cbr 1000 ------- 1 2.0 7.0 159 435 + 2.318 3 4 cbr 1000 ------- 1 2.0 7.0 159 435 + 2.32 2 3 cbr 1000 ------- 1 2.0 7.0 162 438 - 2.32 2 3 cbr 1000 ------- 1 2.0 7.0 162 438 r 2.32165 4 7 cbr 1000 ------- 1 2.0 7.0 145 414 r 2.32165 4 6 cbr 500 ------- 1 1.0 6.0 178 416 - 2.32365 3 4 cbr 500 ------- 1 1.0 6.0 182 428 r 2.32565 3 4 cbr 1000 ------- 1 2.0 7.0 148 418 + 2.32565 4 7 cbr 1000 ------- 1 2.0 7.0 148 418 - 2.32565 4 7 cbr 1000 ------- 1 2.0 7.0 148 418 - 2.32765 3 4 cbr 1000 ------- 1 2.0 7.0 154 427 r 2.328 2 3 cbr 1000 ------- 1 2.0 7.0 160 436 + 2.328 3 4 cbr 1000 ------- 1 2.0 7.0 160 436 + 2.33 2 3 cbr 1000 ------- 1 2.0 7.0 163 439 - 2.33 2 3 cbr 1000 ------- 1 2.0 7.0 163 439 r 2.33365 3 4 cbr 1000 ------- 1 2.0 7.0 149 420 + 2.33365 4 7 cbr 1000 ------- 1 2.0 7.0 149 420 r 2.33365 4 7 cbr 1000 ------- 1 2.0 7.0 146 415 - 2.33365 4 7 cbr 1000 ------- 1 2.0 7.0 149 420 - 2.33565 3 4 cbr 1000 ------- 1 2.0 7.0 155 429 r 2.33765 3 4 cbr 500 ------- 1 1.0 6.0 180 422 + 2.33765 4 6 cbr 500 ------- 1 1.0 6.0 180 422 - 2.33765 4 6 cbr 500 ------- 1 1.0 6.0 180 422 r 2.338 2 3 cbr 1000 ------- 1 2.0 7.0 161 437 + 2.338 3 4 cbr 1000 ------- 1 2.0 7.0 161 437 + 2.34 2 3 cbr 1000 ------- 1 2.0 7.0 164 440 - 2.34 2 3 cbr 1000 ------- 1 2.0 7.0 164 440 r 2.34165 4 7 cbr 1000 ------- 1 2.0 7.0 147 417 r 2.34165 4 6 cbr 500 ------- 1 1.0 6.0 179 419 - 2.34365 3 4 cbr 500 ------- 1 1.0 6.0 183 431 r 2.34565 3 4 cbr 1000 ------- 1 2.0 7.0 150 421 + 2.34565 4 7 cbr 1000 ------- 1 2.0 7.0 150 421 - 2.34565 4 7 cbr 1000 ------- 1 2.0 7.0 150 421 - 2.34765 3 4 cbr 1000 ------- 1 2.0 7.0 156 430 r 2.348 2 3 cbr 1000 ------- 1 2.0 7.0 162 438 + 2.348 3 4 cbr 1000 ------- 1 2.0 7.0 162 438 + 2.35 2 3 cbr 1000 ------- 1 2.0 7.0 165 441 - 2.35 2 3 cbr 1000 ------- 1 2.0 7.0 165 441 r 2.35365 3 4 cbr 1000 ------- 1 2.0 7.0 151 423 + 2.35365 4 7 cbr 1000 ------- 1 2.0 7.0 151 423 r 2.35365 4 7 cbr 1000 ------- 1 2.0 7.0 148 418 - 2.35365 4 7 cbr 1000 ------- 1 2.0 7.0 151 423 - 2.35565 3 4 cbr 1000 ------- 1 2.0 7.0 157 432 r 2.35765 3 4 cbr 500 ------- 1 1.0 6.0 181 425 + 2.35765 4 6 cbr 500 ------- 1 1.0 6.0 181 425 - 2.35765 4 6 cbr 500 ------- 1 1.0 6.0 181 425 r 2.358 2 3 cbr 1000 ------- 1 2.0 7.0 163 439 + 2.358 3 4 cbr 1000 ------- 1 2.0 7.0 163 439 + 2.36 2 3 cbr 1000 ------- 1 2.0 7.0 166 442 - 2.36 2 3 cbr 1000 ------- 1 2.0 7.0 166 442 r 2.36165 4 7 cbr 1000 ------- 1 2.0 7.0 149 420 r 2.36165 4 6 cbr 500 ------- 1 1.0 6.0 180 422 - 2.36365 3 4 cbr 500 ------- 1 1.0 6.0 184 434 r 2.36565 3 4 cbr 1000 ------- 1 2.0 7.0 152 424 + 2.36565 4 7 cbr 1000 ------- 1 2.0 7.0 152 424 - 2.36565 4 7 cbr 1000 ------- 1 2.0 7.0 152 424 - 2.36765 3 4 cbr 1000 ------- 1 2.0 7.0 158 433 r 2.368 2 3 cbr 1000 ------- 1 2.0 7.0 164 440 + 2.368 3 4 cbr 1000 ------- 1 2.0 7.0 164 440 + 2.37 2 3 cbr 1000 ------- 1 2.0 7.0 167 443 - 2.37 2 3 cbr 1000 ------- 1 2.0 7.0 167 443 r 2.37365 3 4 cbr 1000 ------- 1 2.0 7.0 153 426 + 2.37365 4 7 cbr 1000 ------- 1 2.0 7.0 153 426 r 2.37365 4 7 cbr 1000 ------- 1 2.0 7.0 150 421 - 2.37365 4 7 cbr 1000 ------- 1 2.0 7.0 153 426 - 2.37565 3 4 cbr 1000 ------- 1 2.0 7.0 159 435 r 2.37765 3 4 cbr 500 ------- 1 1.0 6.0 182 428 + 2.37765 4 6 cbr 500 ------- 1 1.0 6.0 182 428 - 2.37765 4 6 cbr 500 ------- 1 1.0 6.0 182 428 r 2.378 2 3 cbr 1000 ------- 1 2.0 7.0 165 441 + 2.378 3 4 cbr 1000 ------- 1 2.0 7.0 165 441 + 2.38 2 3 cbr 1000 ------- 1 2.0 7.0 168 444 - 2.38 2 3 cbr 1000 ------- 1 2.0 7.0 168 444 r 2.38165 4 7 cbr 1000 ------- 1 2.0 7.0 151 423 r 2.38165 4 6 cbr 500 ------- 1 1.0 6.0 181 425 - 2.38365 3 4 cbr 1000 ------- 1 2.0 7.0 160 436 r 2.38565 3 4 cbr 1000 ------- 1 2.0 7.0 154 427 + 2.38565 4 7 cbr 1000 ------- 1 2.0 7.0 154 427 - 2.38565 4 7 cbr 1000 ------- 1 2.0 7.0 154 427 r 2.388 2 3 cbr 1000 ------- 1 2.0 7.0 166 442 + 2.388 3 4 cbr 1000 ------- 1 2.0 7.0 166 442 + 2.39 2 3 cbr 1000 ------- 1 2.0 7.0 169 445 - 2.39 2 3 cbr 1000 ------- 1 2.0 7.0 169 445 - 2.39165 3 4 cbr 1000 ------- 1 2.0 7.0 161 437 r 2.39365 3 4 cbr 1000 ------- 1 2.0 7.0 155 429 + 2.39365 4 7 cbr 1000 ------- 1 2.0 7.0 155 429 r 2.39365 4 7 cbr 1000 ------- 1 2.0 7.0 152 424 - 2.39365 4 7 cbr 1000 ------- 1 2.0 7.0 155 429 r 2.39765 3 4 cbr 500 ------- 1 1.0 6.0 183 431 + 2.39765 4 6 cbr 500 ------- 1 1.0 6.0 183 431 - 2.39765 4 6 cbr 500 ------- 1 1.0 6.0 183 431 r 2.398 2 3 cbr 1000 ------- 1 2.0 7.0 167 443 + 2.398 3 4 cbr 1000 ------- 1 2.0 7.0 167 443 - 2.39965 3 4 cbr 1000 ------- 1 2.0 7.0 162 438 + 2.4 2 3 cbr 1000 ------- 1 2.0 7.0 170 446 - 2.4 2 3 cbr 1000 ------- 1 2.0 7.0 170 446 r 2.40165 4 7 cbr 1000 ------- 1 2.0 7.0 153 426 r 2.40165 4 6 cbr 500 ------- 1 1.0 6.0 182 428 r 2.40565 3 4 cbr 1000 ------- 1 2.0 7.0 156 430 + 2.40565 4 7 cbr 1000 ------- 1 2.0 7.0 156 430 - 2.40565 4 7 cbr 1000 ------- 1 2.0 7.0 156 430 - 2.40765 3 4 cbr 1000 ------- 1 2.0 7.0 163 439 r 2.408 2 3 cbr 1000 ------- 1 2.0 7.0 168 444 + 2.408 3 4 cbr 1000 ------- 1 2.0 7.0 168 444 + 2.41 2 3 cbr 1000 ------- 1 2.0 7.0 171 447 - 2.41 2 3 cbr 1000 ------- 1 2.0 7.0 171 447 r 2.41365 3 4 cbr 1000 ------- 1 2.0 7.0 157 432 + 2.41365 4 7 cbr 1000 ------- 1 2.0 7.0 157 432 r 2.41365 4 7 cbr 1000 ------- 1 2.0 7.0 154 427 - 2.41365 4 7 cbr 1000 ------- 1 2.0 7.0 157 432 - 2.41565 3 4 cbr 1000 ------- 1 2.0 7.0 164 440 r 2.41765 3 4 cbr 500 ------- 1 1.0 6.0 184 434 + 2.41765 4 6 cbr 500 ------- 1 1.0 6.0 184 434 - 2.41765 4 6 cbr 500 ------- 1 1.0 6.0 184 434 r 2.418 2 3 cbr 1000 ------- 1 2.0 7.0 169 445 + 2.418 3 4 cbr 1000 ------- 1 2.0 7.0 169 445 + 2.42 2 3 cbr 1000 ------- 1 2.0 7.0 172 448 - 2.42 2 3 cbr 1000 ------- 1 2.0 7.0 172 448 r 2.42165 4 7 cbr 1000 ------- 1 2.0 7.0 155 429 r 2.42165 4 6 cbr 500 ------- 1 1.0 6.0 183 431 - 2.42365 3 4 cbr 1000 ------- 1 2.0 7.0 165 441 r 2.42565 3 4 cbr 1000 ------- 1 2.0 7.0 158 433 + 2.42565 4 7 cbr 1000 ------- 1 2.0 7.0 158 433 - 2.42565 4 7 cbr 1000 ------- 1 2.0 7.0 158 433 r 2.428 2 3 cbr 1000 ------- 1 2.0 7.0 170 446 + 2.428 3 4 cbr 1000 ------- 1 2.0 7.0 170 446 + 2.43 2 3 cbr 1000 ------- 1 2.0 7.0 173 449 - 2.43 2 3 cbr 1000 ------- 1 2.0 7.0 173 449 - 2.43165 3 4 cbr 1000 ------- 1 2.0 7.0 166 442 r 2.43365 3 4 cbr 1000 ------- 1 2.0 7.0 159 435 + 2.43365 4 7 cbr 1000 ------- 1 2.0 7.0 159 435 r 2.43365 4 7 cbr 1000 ------- 1 2.0 7.0 156 430 - 2.43365 4 7 cbr 1000 ------- 1 2.0 7.0 159 435 r 2.438 2 3 cbr 1000 ------- 1 2.0 7.0 171 447 + 2.438 3 4 cbr 1000 ------- 1 2.0 7.0 171 447 - 2.43965 3 4 cbr 1000 ------- 1 2.0 7.0 167 443 + 2.44 2 3 cbr 1000 ------- 1 2.0 7.0 174 450 - 2.44 2 3 cbr 1000 ------- 1 2.0 7.0 174 450 r 2.44165 3 4 cbr 1000 ------- 1 2.0 7.0 160 436 + 2.44165 4 7 cbr 1000 ------- 1 2.0 7.0 160 436 r 2.44165 4 7 cbr 1000 ------- 1 2.0 7.0 157 432 r 2.44165 4 6 cbr 500 ------- 1 1.0 6.0 184 434 - 2.44165 4 7 cbr 1000 ------- 1 2.0 7.0 160 436 - 2.44765 3 4 cbr 1000 ------- 1 2.0 7.0 168 444 r 2.448 2 3 cbr 1000 ------- 1 2.0 7.0 172 448 + 2.448 3 4 cbr 1000 ------- 1 2.0 7.0 172 448 r 2.44965 3 4 cbr 1000 ------- 1 2.0 7.0 161 437 + 2.44965 4 7 cbr 1000 ------- 1 2.0 7.0 161 437 - 2.44965 4 7 cbr 1000 ------- 1 2.0 7.0 161 437 + 2.45 2 3 cbr 1000 ------- 1 2.0 7.0 175 451 - 2.45 2 3 cbr 1000 ------- 1 2.0 7.0 175 451 r 2.45365 4 7 cbr 1000 ------- 1 2.0 7.0 158 433 - 2.45565 3 4 cbr 1000 ------- 1 2.0 7.0 169 445 r 2.45765 3 4 cbr 1000 ------- 1 2.0 7.0 162 438 + 2.45765 4 7 cbr 1000 ------- 1 2.0 7.0 162 438 - 2.45765 4 7 cbr 1000 ------- 1 2.0 7.0 162 438 r 2.458 2 3 cbr 1000 ------- 1 2.0 7.0 173 449 + 2.458 3 4 cbr 1000 ------- 1 2.0 7.0 173 449 + 2.46 2 3 cbr 1000 ------- 1 2.0 7.0 176 452 - 2.46 2 3 cbr 1000 ------- 1 2.0 7.0 176 452 r 2.46165 4 7 cbr 1000 ------- 1 2.0 7.0 159 435 - 2.46365 3 4 cbr 1000 ------- 1 2.0 7.0 170 446 r 2.46565 3 4 cbr 1000 ------- 1 2.0 7.0 163 439 + 2.46565 4 7 cbr 1000 ------- 1 2.0 7.0 163 439 - 2.46565 4 7 cbr 1000 ------- 1 2.0 7.0 163 439 r 2.468 2 3 cbr 1000 ------- 1 2.0 7.0 174 450 + 2.468 3 4 cbr 1000 ------- 1 2.0 7.0 174 450 r 2.46965 4 7 cbr 1000 ------- 1 2.0 7.0 160 436 + 2.47 2 3 cbr 1000 ------- 1 2.0 7.0 177 453 - 2.47 2 3 cbr 1000 ------- 1 2.0 7.0 177 453 - 2.47165 3 4 cbr 1000 ------- 1 2.0 7.0 171 447 r 2.47365 3 4 cbr 1000 ------- 1 2.0 7.0 164 440 + 2.47365 4 7 cbr 1000 ------- 1 2.0 7.0 164 440 - 2.47365 4 7 cbr 1000 ------- 1 2.0 7.0 164 440 r 2.47765 4 7 cbr 1000 ------- 1 2.0 7.0 161 437 r 2.478 2 3 cbr 1000 ------- 1 2.0 7.0 175 451 + 2.478 3 4 cbr 1000 ------- 1 2.0 7.0 175 451 - 2.47965 3 4 cbr 1000 ------- 1 2.0 7.0 172 448 + 2.48 2 3 cbr 1000 ------- 1 2.0 7.0 178 454 - 2.48 2 3 cbr 1000 ------- 1 2.0 7.0 178 454 r 2.48165 3 4 cbr 1000 ------- 1 2.0 7.0 165 441 + 2.48165 4 7 cbr 1000 ------- 1 2.0 7.0 165 441 - 2.48165 4 7 cbr 1000 ------- 1 2.0 7.0 165 441 r 2.48565 4 7 cbr 1000 ------- 1 2.0 7.0 162 438 - 2.48765 3 4 cbr 1000 ------- 1 2.0 7.0 173 449 r 2.488 2 3 cbr 1000 ------- 1 2.0 7.0 176 452 + 2.488 3 4 cbr 1000 ------- 1 2.0 7.0 176 452 r 2.48965 3 4 cbr 1000 ------- 1 2.0 7.0 166 442 + 2.48965 4 7 cbr 1000 ------- 1 2.0 7.0 166 442 - 2.48965 4 7 cbr 1000 ------- 1 2.0 7.0 166 442 + 2.49 2 3 cbr 1000 ------- 1 2.0 7.0 179 455 - 2.49 2 3 cbr 1000 ------- 1 2.0 7.0 179 455 r 2.49365 4 7 cbr 1000 ------- 1 2.0 7.0 163 439 - 2.49565 3 4 cbr 1000 ------- 1 2.0 7.0 174 450 r 2.49765 3 4 cbr 1000 ------- 1 2.0 7.0 167 443 + 2.49765 4 7 cbr 1000 ------- 1 2.0 7.0 167 443 - 2.49765 4 7 cbr 1000 ------- 1 2.0 7.0 167 443 r 2.498 2 3 cbr 1000 ------- 1 2.0 7.0 177 453 + 2.498 3 4 cbr 1000 ------- 1 2.0 7.0 177 453 + 2.5 2 3 cbr 1000 ------- 1 2.0 7.0 180 456 - 2.5 2 3 cbr 1000 ------- 1 2.0 7.0 180 456 r 2.50165 4 7 cbr 1000 ------- 1 2.0 7.0 164 440 - 2.50365 3 4 cbr 1000 ------- 1 2.0 7.0 175 451 r 2.50565 3 4 cbr 1000 ------- 1 2.0 7.0 168 444 + 2.50565 4 7 cbr 1000 ------- 1 2.0 7.0 168 444 - 2.50565 4 7 cbr 1000 ------- 1 2.0 7.0 168 444 r 2.508 2 3 cbr 1000 ------- 1 2.0 7.0 178 454 + 2.508 3 4 cbr 1000 ------- 1 2.0 7.0 178 454 r 2.50965 4 7 cbr 1000 ------- 1 2.0 7.0 165 441 - 2.51165 3 4 cbr 1000 ------- 1 2.0 7.0 176 452 r 2.51365 3 4 cbr 1000 ------- 1 2.0 7.0 169 445 + 2.51365 4 7 cbr 1000 ------- 1 2.0 7.0 169 445 - 2.51365 4 7 cbr 1000 ------- 1 2.0 7.0 169 445 r 2.51765 4 7 cbr 1000 ------- 1 2.0 7.0 166 442 r 2.518 2 3 cbr 1000 ------- 1 2.0 7.0 179 455 + 2.518 3 4 cbr 1000 ------- 1 2.0 7.0 179 455 - 2.51965 3 4 cbr 1000 ------- 1 2.0 7.0 177 453 r 2.52165 3 4 cbr 1000 ------- 1 2.0 7.0 170 446 + 2.52165 4 7 cbr 1000 ------- 1 2.0 7.0 170 446 - 2.52165 4 7 cbr 1000 ------- 1 2.0 7.0 170 446 r 2.52565 4 7 cbr 1000 ------- 1 2.0 7.0 167 443 - 2.52765 3 4 cbr 1000 ------- 1 2.0 7.0 178 454 r 2.528 2 3 cbr 1000 ------- 1 2.0 7.0 180 456 + 2.528 3 4 cbr 1000 ------- 1 2.0 7.0 180 456 r 2.52965 3 4 cbr 1000 ------- 1 2.0 7.0 171 447 + 2.52965 4 7 cbr 1000 ------- 1 2.0 7.0 171 447 - 2.52965 4 7 cbr 1000 ------- 1 2.0 7.0 171 447 r 2.53365 4 7 cbr 1000 ------- 1 2.0 7.0 168 444 - 2.53565 3 4 cbr 1000 ------- 1 2.0 7.0 179 455 r 2.53765 3 4 cbr 1000 ------- 1 2.0 7.0 172 448 + 2.53765 4 7 cbr 1000 ------- 1 2.0 7.0 172 448 - 2.53765 4 7 cbr 1000 ------- 1 2.0 7.0 172 448 r 2.54165 4 7 cbr 1000 ------- 1 2.0 7.0 169 445 - 2.54365 3 4 cbr 1000 ------- 1 2.0 7.0 180 456 r 2.54565 3 4 cbr 1000 ------- 1 2.0 7.0 173 449 + 2.54565 4 7 cbr 1000 ------- 1 2.0 7.0 173 449 - 2.54565 4 7 cbr 1000 ------- 1 2.0 7.0 173 449 r 2.54965 4 7 cbr 1000 ------- 1 2.0 7.0 170 446 v 2.5499999999999998 eval {set sim_annotation {FTP stops}} r 2.55365 3 4 cbr 1000 ------- 1 2.0 7.0 174 450 + 2.55365 4 7 cbr 1000 ------- 1 2.0 7.0 174 450 - 2.55365 4 7 cbr 1000 ------- 1 2.0 7.0 174 450 r 2.55765 4 7 cbr 1000 ------- 1 2.0 7.0 171 447 r 2.56165 3 4 cbr 1000 ------- 1 2.0 7.0 175 451 + 2.56165 4 7 cbr 1000 ------- 1 2.0 7.0 175 451 - 2.56165 4 7 cbr 1000 ------- 1 2.0 7.0 175 451 r 2.56565 4 7 cbr 1000 ------- 1 2.0 7.0 172 448 r 2.56965 3 4 cbr 1000 ------- 1 2.0 7.0 176 452 + 2.56965 4 7 cbr 1000 ------- 1 2.0 7.0 176 452 - 2.56965 4 7 cbr 1000 ------- 1 2.0 7.0 176 452 r 2.57365 4 7 cbr 1000 ------- 1 2.0 7.0 173 449 r 2.57765 3 4 cbr 1000 ------- 1 2.0 7.0 177 453 + 2.57765 4 7 cbr 1000 ------- 1 2.0 7.0 177 453 - 2.57765 4 7 cbr 1000 ------- 1 2.0 7.0 177 453 r 2.58165 4 7 cbr 1000 ------- 1 2.0 7.0 174 450 r 2.58565 3 4 cbr 1000 ------- 1 2.0 7.0 178 454 + 2.58565 4 7 cbr 1000 ------- 1 2.0 7.0 178 454 - 2.58565 4 7 cbr 1000 ------- 1 2.0 7.0 178 454 r 2.58965 4 7 cbr 1000 ------- 1 2.0 7.0 175 451 r 2.59365 3 4 cbr 1000 ------- 1 2.0 7.0 179 455 + 2.59365 4 7 cbr 1000 ------- 1 2.0 7.0 179 455 - 2.59365 4 7 cbr 1000 ------- 1 2.0 7.0 179 455 r 2.59765 4 7 cbr 1000 ------- 1 2.0 7.0 176 452 r 2.60165 3 4 cbr 1000 ------- 1 2.0 7.0 180 456 + 2.60165 4 7 cbr 1000 ------- 1 2.0 7.0 180 456 - 2.60165 4 7 cbr 1000 ------- 1 2.0 7.0 180 456 r 2.60565 4 7 cbr 1000 ------- 1 2.0 7.0 177 453 r 2.61365 4 7 cbr 1000 ------- 1 2.0 7.0 178 454 r 2.62165 4 7 cbr 1000 ------- 1 2.0 7.0 179 455 r 2.62965 4 7 cbr 1000 ------- 1 2.0 7.0 180 456 nam-1.15/edu/C2-sliding-window.nam0000664000076400007660000111336406756704454015600 0ustar tomhnsnamV -t * -v 1.0a5 -a 1 -c 1 -F 1 -M 2 c -t * -i 0 -n black N -t * -S 0 -n {TCP session between node 0.0 and node 5.0} -p TCP -m {} N -t * -S 0 -h 35 N -t * -F 0 -M 0 -n tcp N -t * -F 0 -M 1 -n ack A -t * -n 1 -p 0 -o 255 -c 15 -a 1 A -t * -h 1 -m 127 -s 8 n -t * -a 4 -s 4 -S UP -v circle -c black n -t * -a 0 -s 0 -S UP -v circle -c black n -t * -a 5 -s 5 -S UP -v circle -c black n -t * -a 1 -s 1 -S UP -v circle -c black n -t * -a 6 -s 6 -S UP -v circle -c black n -t * -a 2 -s 2 -S UP -v circle -c black n -t * -a 7 -s 7 -S UP -v circle -c black n -t * -a 3 -s 3 -S UP -v circle -c black l -t * -s 0 -d 3 -S UP -r 5000000 -D 0.02 -c black -o right-down l -t * -s 1 -d 3 -S UP -r 1000000 -D 0.02 -c black -o right l -t * -s 2 -d 3 -S UP -r 1000000 -D 0.02 -c black -o right-up l -t * -s 3 -d 4 -S UP -r 1000000 -D 0.050000000000000003 -c black -o right l -t * -s 4 -d 5 -S UP -r 5000000 -D 0.02 -c black -o right-up l -t * -s 4 -d 6 -S UP -r 1000000 -D 0.02 -c black -o right l -t * -s 4 -d 7 -S UP -r 1000000 -D 0.02 -c black -o right-down q -t * -s 3 -d 4 -a 0.5 q -t * -s 4 -d 3 -a 0.5 a -t 0.00000000000000000 -s 0 -d 5 -n tcp f -t 0.00000000000000000 -s 0 -d 5 -n cwnd_ -a tcp -v 8.000000 -T v f -t 0.00000000000000000 -s 0 -d 5 -n cwnd_ -a tcp -v 8.000000 -o 8.000000 -T v v -t 0.00000000000000000 monitor_agent 0 tcp n -t 0 -s 0 -S DLABEL -l TCP -L "" n -t 0 -s 5 -S DLABEL -l TCP -L "" n -t 0 -s 1 -S DLABEL -l CBR-1 -L "" n -t 0 -s 2 -S DLABEL -l CBR-2 -L "" n -t 0 -s 6 -S DLABEL -l CBR-1 -L "" n -t 0 -s 7 -S DLABEL -l CBR-2 -L "" v -t 0 sim_annotation 0 1 Sliding Window (window size=8) in a heavely loaded network + -t 0.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 0 -a 1 - -t 0.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 0 -a 1 h -t 0.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 0 -a 1 v -t 0.050000000000000003 sim_annotation 0.050000000000000003 2 CBR-1 starts + -t 0.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 1 -a 1 - -t 0.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 1 -a 1 h -t 0.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 1 -a 1 + -t 0.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 2 -a 1 - -t 0.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 2 -a 1 h -t 0.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 2 -a 1 r -t 0.074 -s 1 -d 3 -p cbr -e 500 -c 1 -i 0 -a 1 + -t 0.074 -s 3 -d 4 -p cbr -e 500 -c 1 -i 0 -a 1 - -t 0.074 -s 3 -d 4 -p cbr -e 500 -c 1 -i 0 -a 1 h -t 0.074 -s 3 -d 4 -p cbr -e 500 -c 1 -i 0 -a 1 + -t 0.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 3 -a 1 - -t 0.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 3 -a 1 h -t 0.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 3 -a 1 r -t 0.084 -s 1 -d 3 -p cbr -e 500 -c 1 -i 1 -a 1 + -t 0.084 -s 3 -d 4 -p cbr -e 500 -c 1 -i 1 -a 1 - -t 0.084 -s 3 -d 4 -p cbr -e 500 -c 1 -i 1 -a 1 h -t 0.084 -s 3 -d 4 -p cbr -e 500 -c 1 -i 1 -a 1 + -t 0.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 4 -a 1 - -t 0.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 4 -a 1 h -t 0.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 4 -a 1 r -t 0.094 -s 1 -d 3 -p cbr -e 500 -c 1 -i 2 -a 1 + -t 0.094 -s 3 -d 4 -p cbr -e 500 -c 1 -i 2 -a 1 - -t 0.094 -s 3 -d 4 -p cbr -e 500 -c 1 -i 2 -a 1 h -t 0.094 -s 3 -d 4 -p cbr -e 500 -c 1 -i 2 -a 1 + -t 0.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 5 -a 1 - -t 0.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 5 -a 1 h -t 0.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 5 -a 1 + -t 0.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 6 -a 1 - -t 0.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 6 -a 1 h -t 0.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 6 -a 1 v -t 0.10000000000000001 sim_annotation 0.10000000000000001 3 CBR-2 starts r -t 0.104 -s 1 -d 3 -p cbr -e 500 -c 1 -i 3 -a 1 + -t 0.104 -s 3 -d 4 -p cbr -e 500 -c 1 -i 3 -a 1 - -t 0.104 -s 3 -d 4 -p cbr -e 500 -c 1 -i 3 -a 1 h -t 0.104 -s 3 -d 4 -p cbr -e 500 -c 1 -i 3 -a 1 + -t 0.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 7 -a 1 - -t 0.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 7 -a 1 h -t 0.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 7 -a 1 + -t 0.11 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 8 -a 1 - -t 0.11 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 8 -a 1 h -t 0.11 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 8 -a 1 r -t 0.114 -s 1 -d 3 -p cbr -e 500 -c 1 -i 4 -a 1 + -t 0.114 -s 3 -d 4 -p cbr -e 500 -c 1 -i 4 -a 1 - -t 0.114 -s 3 -d 4 -p cbr -e 500 -c 1 -i 4 -a 1 h -t 0.114 -s 3 -d 4 -p cbr -e 500 -c 1 -i 4 -a 1 + -t 0.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 9 -a 1 - -t 0.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 9 -a 1 h -t 0.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 9 -a 1 + -t 0.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 10 -a 1 - -t 0.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 10 -a 1 h -t 0.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 10 -a 1 r -t 0.124 -s 1 -d 3 -p cbr -e 500 -c 1 -i 5 -a 1 + -t 0.124 -s 3 -d 4 -p cbr -e 500 -c 1 -i 5 -a 1 - -t 0.124 -s 3 -d 4 -p cbr -e 500 -c 1 -i 5 -a 1 h -t 0.124 -s 3 -d 4 -p cbr -e 500 -c 1 -i 5 -a 1 r -t 0.128 -s 3 -d 4 -p cbr -e 500 -c 1 -i 0 -a 1 + -t 0.128 -s 4 -d 6 -p cbr -e 500 -c 1 -i 0 -a 1 - -t 0.128 -s 4 -d 6 -p cbr -e 500 -c 1 -i 0 -a 1 h -t 0.128 -s 4 -d 6 -p cbr -e 500 -c 1 -i 0 -a 1 r -t 0.128 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 6 -a 1 + -t 0.128 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 6 -a 1 - -t 0.128 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 6 -a 1 h -t 0.128 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 6 -a 1 + -t 0.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 11 -a 1 - -t 0.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 11 -a 1 h -t 0.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 11 -a 1 + -t 0.13 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 12 -a 1 - -t 0.13 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 12 -a 1 h -t 0.13 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 12 -a 1 r -t 0.134 -s 1 -d 3 -p cbr -e 500 -c 1 -i 7 -a 1 + -t 0.134 -s 3 -d 4 -p cbr -e 500 -c 1 -i 7 -a 1 - -t 0.136 -s 3 -d 4 -p cbr -e 500 -c 1 -i 7 -a 1 h -t 0.136 -s 3 -d 4 -p cbr -e 500 -c 1 -i 7 -a 1 r -t 0.138 -s 3 -d 4 -p cbr -e 500 -c 1 -i 1 -a 1 + -t 0.138 -s 4 -d 6 -p cbr -e 500 -c 1 -i 1 -a 1 - -t 0.138 -s 4 -d 6 -p cbr -e 500 -c 1 -i 1 -a 1 h -t 0.138 -s 4 -d 6 -p cbr -e 500 -c 1 -i 1 -a 1 r -t 0.138 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 8 -a 1 + -t 0.138 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 8 -a 1 + -t 0.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 13 -a 1 - -t 0.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 13 -a 1 h -t 0.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 13 -a 1 + -t 0.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 14 -a 1 - -t 0.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 14 -a 1 h -t 0.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 14 -a 1 - -t 0.14 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 8 -a 1 h -t 0.14 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 8 -a 1 r -t 0.144 -s 1 -d 3 -p cbr -e 500 -c 1 -i 9 -a 1 + -t 0.144 -s 3 -d 4 -p cbr -e 500 -c 1 -i 9 -a 1 r -t 0.148 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 10 -a 1 + -t 0.148 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 10 -a 1 r -t 0.148 -s 3 -d 4 -p cbr -e 500 -c 1 -i 2 -a 1 + -t 0.148 -s 4 -d 6 -p cbr -e 500 -c 1 -i 2 -a 1 - -t 0.148 -s 4 -d 6 -p cbr -e 500 -c 1 -i 2 -a 1 h -t 0.148 -s 4 -d 6 -p cbr -e 500 -c 1 -i 2 -a 1 - -t 0.148 -s 3 -d 4 -p cbr -e 500 -c 1 -i 9 -a 1 h -t 0.148 -s 3 -d 4 -p cbr -e 500 -c 1 -i 9 -a 1 + -t 0.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 15 -a 1 - -t 0.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 15 -a 1 h -t 0.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 15 -a 1 + -t 0.15 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 16 -a 1 - -t 0.15 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 16 -a 1 h -t 0.15 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 16 -a 1 r -t 0.152 -s 4 -d 6 -p cbr -e 500 -c 1 -i 0 -a 1 - -t 0.152 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 10 -a 1 h -t 0.152 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 10 -a 1 r -t 0.154 -s 1 -d 3 -p cbr -e 500 -c 1 -i 11 -a 1 + -t 0.154 -s 3 -d 4 -p cbr -e 500 -c 1 -i 11 -a 1 r -t 0.158 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 12 -a 1 + -t 0.158 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 12 -a 1 r -t 0.158 -s 3 -d 4 -p cbr -e 500 -c 1 -i 3 -a 1 + -t 0.158 -s 4 -d 6 -p cbr -e 500 -c 1 -i 3 -a 1 - -t 0.158 -s 4 -d 6 -p cbr -e 500 -c 1 -i 3 -a 1 h -t 0.158 -s 4 -d 6 -p cbr -e 500 -c 1 -i 3 -a 1 + -t 0.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 17 -a 1 - -t 0.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 17 -a 1 h -t 0.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 17 -a 1 + -t 0.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 18 -a 1 - -t 0.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 18 -a 1 h -t 0.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 18 -a 1 - -t 0.16 -s 3 -d 4 -p cbr -e 500 -c 1 -i 11 -a 1 h -t 0.16 -s 3 -d 4 -p cbr -e 500 -c 1 -i 11 -a 1 r -t 0.162 -s 4 -d 6 -p cbr -e 500 -c 1 -i 1 -a 1 r -t 0.164 -s 1 -d 3 -p cbr -e 500 -c 1 -i 13 -a 1 + -t 0.164 -s 3 -d 4 -p cbr -e 500 -c 1 -i 13 -a 1 - -t 0.164 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 12 -a 1 h -t 0.164 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 12 -a 1 r -t 0.168 -s 3 -d 4 -p cbr -e 500 -c 1 -i 4 -a 1 + -t 0.168 -s 4 -d 6 -p cbr -e 500 -c 1 -i 4 -a 1 - -t 0.168 -s 4 -d 6 -p cbr -e 500 -c 1 -i 4 -a 1 h -t 0.168 -s 4 -d 6 -p cbr -e 500 -c 1 -i 4 -a 1 r -t 0.168 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 14 -a 1 + -t 0.168 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 14 -a 1 + -t 0.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 19 -a 1 - -t 0.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 19 -a 1 h -t 0.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 19 -a 1 + -t 0.17 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 20 -a 1 - -t 0.17 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 20 -a 1 h -t 0.17 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 20 -a 1 r -t 0.172 -s 4 -d 6 -p cbr -e 500 -c 1 -i 2 -a 1 - -t 0.172 -s 3 -d 4 -p cbr -e 500 -c 1 -i 13 -a 1 h -t 0.172 -s 3 -d 4 -p cbr -e 500 -c 1 -i 13 -a 1 r -t 0.174 -s 1 -d 3 -p cbr -e 500 -c 1 -i 15 -a 1 + -t 0.174 -s 3 -d 4 -p cbr -e 500 -c 1 -i 15 -a 1 - -t 0.176 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 14 -a 1 h -t 0.176 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 14 -a 1 r -t 0.178 -s 3 -d 4 -p cbr -e 500 -c 1 -i 5 -a 1 + -t 0.178 -s 4 -d 6 -p cbr -e 500 -c 1 -i 5 -a 1 - -t 0.178 -s 4 -d 6 -p cbr -e 500 -c 1 -i 5 -a 1 h -t 0.178 -s 4 -d 6 -p cbr -e 500 -c 1 -i 5 -a 1 r -t 0.178 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 16 -a 1 + -t 0.178 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 16 -a 1 + -t 0.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 21 -a 1 - -t 0.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 21 -a 1 h -t 0.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 21 -a 1 + -t 0.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 22 -a 1 - -t 0.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 22 -a 1 h -t 0.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 22 -a 1 r -t 0.182 -s 4 -d 6 -p cbr -e 500 -c 1 -i 3 -a 1 r -t 0.184 -s 1 -d 3 -p cbr -e 500 -c 1 -i 17 -a 1 + -t 0.184 -s 3 -d 4 -p cbr -e 500 -c 1 -i 17 -a 1 - -t 0.184 -s 3 -d 4 -p cbr -e 500 -c 1 -i 15 -a 1 h -t 0.184 -s 3 -d 4 -p cbr -e 500 -c 1 -i 15 -a 1 r -t 0.186 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 6 -a 1 + -t 0.186 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 6 -a 1 - -t 0.186 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 6 -a 1 h -t 0.186 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 6 -a 1 r -t 0.188 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 18 -a 1 + -t 0.188 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 18 -a 1 - -t 0.188 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 16 -a 1 h -t 0.188 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 16 -a 1 r -t 0.19 -s 3 -d 4 -p cbr -e 500 -c 1 -i 7 -a 1 + -t 0.19 -s 4 -d 6 -p cbr -e 500 -c 1 -i 7 -a 1 - -t 0.19 -s 4 -d 6 -p cbr -e 500 -c 1 -i 7 -a 1 h -t 0.19 -s 4 -d 6 -p cbr -e 500 -c 1 -i 7 -a 1 + -t 0.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 23 -a 1 - -t 0.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 23 -a 1 h -t 0.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 23 -a 1 + -t 0.19 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 24 -a 1 - -t 0.19 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 24 -a 1 h -t 0.19 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 24 -a 1 r -t 0.192 -s 4 -d 6 -p cbr -e 500 -c 1 -i 4 -a 1 r -t 0.194 -s 1 -d 3 -p cbr -e 500 -c 1 -i 19 -a 1 + -t 0.194 -s 3 -d 4 -p cbr -e 500 -c 1 -i 19 -a 1 - -t 0.196 -s 3 -d 4 -p cbr -e 500 -c 1 -i 17 -a 1 h -t 0.196 -s 3 -d 4 -p cbr -e 500 -c 1 -i 17 -a 1 r -t 0.198 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 8 -a 1 + -t 0.198 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 8 -a 1 - -t 0.198 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 8 -a 1 h -t 0.198 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 8 -a 1 r -t 0.198 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 20 -a 1 + -t 0.198 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 20 -a 1 + -t 0.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 25 -a 1 - -t 0.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 25 -a 1 h -t 0.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 25 -a 1 + -t 0.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 26 -a 1 - -t 0.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 26 -a 1 h -t 0.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 26 -a 1 - -t 0.2 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 18 -a 1 h -t 0.2 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 18 -a 1 r -t 0.202 -s 4 -d 6 -p cbr -e 500 -c 1 -i 5 -a 1 r -t 0.202 -s 3 -d 4 -p cbr -e 500 -c 1 -i 9 -a 1 + -t 0.202 -s 4 -d 6 -p cbr -e 500 -c 1 -i 9 -a 1 - -t 0.202 -s 4 -d 6 -p cbr -e 500 -c 1 -i 9 -a 1 h -t 0.202 -s 4 -d 6 -p cbr -e 500 -c 1 -i 9 -a 1 r -t 0.204 -s 1 -d 3 -p cbr -e 500 -c 1 -i 21 -a 1 + -t 0.204 -s 3 -d 4 -p cbr -e 500 -c 1 -i 21 -a 1 r -t 0.208 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 22 -a 1 + -t 0.208 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 22 -a 1 - -t 0.208 -s 3 -d 4 -p cbr -e 500 -c 1 -i 19 -a 1 h -t 0.208 -s 3 -d 4 -p cbr -e 500 -c 1 -i 19 -a 1 r -t 0.21 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 10 -a 1 + -t 0.21 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 10 -a 1 - -t 0.21 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 10 -a 1 h -t 0.21 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 10 -a 1 + -t 0.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 27 -a 1 - -t 0.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 27 -a 1 h -t 0.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 27 -a 1 + -t 0.21 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 28 -a 1 - -t 0.21 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 28 -a 1 h -t 0.21 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 28 -a 1 - -t 0.212 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 20 -a 1 h -t 0.212 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 20 -a 1 r -t 0.214 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 6 -a 1 r -t 0.214 -s 4 -d 6 -p cbr -e 500 -c 1 -i 7 -a 1 r -t 0.214 -s 3 -d 4 -p cbr -e 500 -c 1 -i 11 -a 1 + -t 0.214 -s 4 -d 6 -p cbr -e 500 -c 1 -i 11 -a 1 - -t 0.214 -s 4 -d 6 -p cbr -e 500 -c 1 -i 11 -a 1 h -t 0.214 -s 4 -d 6 -p cbr -e 500 -c 1 -i 11 -a 1 r -t 0.214 -s 1 -d 3 -p cbr -e 500 -c 1 -i 23 -a 1 + -t 0.214 -s 3 -d 4 -p cbr -e 500 -c 1 -i 23 -a 1 r -t 0.218 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 24 -a 1 + -t 0.218 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 24 -a 1 + -t 0.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 29 -a 1 - -t 0.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 29 -a 1 h -t 0.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 29 -a 1 + -t 0.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 30 -a 1 - -t 0.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 30 -a 1 h -t 0.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 30 -a 1 - -t 0.22 -s 3 -d 4 -p cbr -e 500 -c 1 -i 21 -a 1 h -t 0.22 -s 3 -d 4 -p cbr -e 500 -c 1 -i 21 -a 1 r -t 0.222 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 12 -a 1 + -t 0.222 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 12 -a 1 - -t 0.222 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 12 -a 1 h -t 0.222 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 12 -a 1 r -t 0.224 -s 1 -d 3 -p cbr -e 500 -c 1 -i 25 -a 1 + -t 0.224 -s 3 -d 4 -p cbr -e 500 -c 1 -i 25 -a 1 - -t 0.224 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 22 -a 1 h -t 0.224 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 22 -a 1 r -t 0.226 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 8 -a 1 r -t 0.226 -s 4 -d 6 -p cbr -e 500 -c 1 -i 9 -a 1 r -t 0.226 -s 3 -d 4 -p cbr -e 500 -c 1 -i 13 -a 1 + -t 0.226 -s 4 -d 6 -p cbr -e 500 -c 1 -i 13 -a 1 - -t 0.226 -s 4 -d 6 -p cbr -e 500 -c 1 -i 13 -a 1 h -t 0.226 -s 4 -d 6 -p cbr -e 500 -c 1 -i 13 -a 1 r -t 0.228 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 26 -a 1 + -t 0.228 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 26 -a 1 + -t 0.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 31 -a 1 - -t 0.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 31 -a 1 h -t 0.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 31 -a 1 + -t 0.23 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 32 -a 1 - -t 0.23 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 32 -a 1 h -t 0.23 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 32 -a 1 - -t 0.232 -s 3 -d 4 -p cbr -e 500 -c 1 -i 23 -a 1 h -t 0.232 -s 3 -d 4 -p cbr -e 500 -c 1 -i 23 -a 1 r -t 0.234 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 14 -a 1 + -t 0.234 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 14 -a 1 - -t 0.234 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 14 -a 1 h -t 0.234 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 14 -a 1 r -t 0.234 -s 1 -d 3 -p cbr -e 500 -c 1 -i 27 -a 1 + -t 0.234 -s 3 -d 4 -p cbr -e 500 -c 1 -i 27 -a 1 - -t 0.236 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 24 -a 1 h -t 0.236 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 24 -a 1 r -t 0.238 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 10 -a 1 r -t 0.238 -s 4 -d 6 -p cbr -e 500 -c 1 -i 11 -a 1 r -t 0.238 -s 3 -d 4 -p cbr -e 500 -c 1 -i 15 -a 1 + -t 0.238 -s 4 -d 6 -p cbr -e 500 -c 1 -i 15 -a 1 - -t 0.238 -s 4 -d 6 -p cbr -e 500 -c 1 -i 15 -a 1 h -t 0.238 -s 4 -d 6 -p cbr -e 500 -c 1 -i 15 -a 1 r -t 0.238 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 28 -a 1 + -t 0.238 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 28 -a 1 + -t 0.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 33 -a 1 - -t 0.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 33 -a 1 h -t 0.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 33 -a 1 + -t 0.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 34 -a 1 - -t 0.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 34 -a 1 h -t 0.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 34 -a 1 r -t 0.244 -s 1 -d 3 -p cbr -e 500 -c 1 -i 29 -a 1 + -t 0.244 -s 3 -d 4 -p cbr -e 500 -c 1 -i 29 -a 1 - -t 0.244 -s 3 -d 4 -p cbr -e 500 -c 1 -i 25 -a 1 h -t 0.244 -s 3 -d 4 -p cbr -e 500 -c 1 -i 25 -a 1 r -t 0.246 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 16 -a 1 + -t 0.246 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 16 -a 1 - -t 0.246 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 16 -a 1 h -t 0.246 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 16 -a 1 r -t 0.248 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 30 -a 1 + -t 0.248 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 30 -a 1 - -t 0.248 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 26 -a 1 h -t 0.248 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 26 -a 1 r -t 0.25 -s 3 -d 4 -p cbr -e 500 -c 1 -i 17 -a 1 + -t 0.25 -s 4 -d 6 -p cbr -e 500 -c 1 -i 17 -a 1 - -t 0.25 -s 4 -d 6 -p cbr -e 500 -c 1 -i 17 -a 1 h -t 0.25 -s 4 -d 6 -p cbr -e 500 -c 1 -i 17 -a 1 r -t 0.25 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 12 -a 1 r -t 0.25 -s 4 -d 6 -p cbr -e 500 -c 1 -i 13 -a 1 + -t 0.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 35 -a 1 - -t 0.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 35 -a 1 h -t 0.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 35 -a 1 + -t 0.25 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 36 -a 1 - -t 0.25 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 36 -a 1 h -t 0.25 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 36 -a 1 r -t 0.254 -s 1 -d 3 -p cbr -e 500 -c 1 -i 31 -a 1 + -t 0.254 -s 3 -d 4 -p cbr -e 500 -c 1 -i 31 -a 1 - -t 0.256 -s 3 -d 4 -p cbr -e 500 -c 1 -i 27 -a 1 h -t 0.256 -s 3 -d 4 -p cbr -e 500 -c 1 -i 27 -a 1 r -t 0.258 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 18 -a 1 + -t 0.258 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 18 -a 1 - -t 0.258 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 18 -a 1 h -t 0.258 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 18 -a 1 r -t 0.258 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 32 -a 1 + -t 0.258 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 32 -a 1 + -t 0.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 37 -a 1 - -t 0.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 37 -a 1 h -t 0.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 37 -a 1 + -t 0.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 38 -a 1 - -t 0.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 38 -a 1 h -t 0.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 38 -a 1 - -t 0.26 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 28 -a 1 h -t 0.26 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 28 -a 1 r -t 0.262 -s 3 -d 4 -p cbr -e 500 -c 1 -i 19 -a 1 + -t 0.262 -s 4 -d 6 -p cbr -e 500 -c 1 -i 19 -a 1 - -t 0.262 -s 4 -d 6 -p cbr -e 500 -c 1 -i 19 -a 1 h -t 0.262 -s 4 -d 6 -p cbr -e 500 -c 1 -i 19 -a 1 r -t 0.262 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 14 -a 1 r -t 0.262 -s 4 -d 6 -p cbr -e 500 -c 1 -i 15 -a 1 r -t 0.264 -s 1 -d 3 -p cbr -e 500 -c 1 -i 33 -a 1 + -t 0.264 -s 3 -d 4 -p cbr -e 500 -c 1 -i 33 -a 1 r -t 0.268 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 34 -a 1 + -t 0.268 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 34 -a 1 - -t 0.268 -s 3 -d 4 -p cbr -e 500 -c 1 -i 29 -a 1 h -t 0.268 -s 3 -d 4 -p cbr -e 500 -c 1 -i 29 -a 1 r -t 0.27 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 20 -a 1 + -t 0.27 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 20 -a 1 - -t 0.27 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 20 -a 1 h -t 0.27 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 20 -a 1 + -t 0.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 39 -a 1 - -t 0.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 39 -a 1 h -t 0.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 39 -a 1 + -t 0.27 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 40 -a 1 - -t 0.27 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 40 -a 1 h -t 0.27 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 40 -a 1 - -t 0.272 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 30 -a 1 h -t 0.272 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 30 -a 1 r -t 0.274 -s 3 -d 4 -p cbr -e 500 -c 1 -i 21 -a 1 + -t 0.274 -s 4 -d 6 -p cbr -e 500 -c 1 -i 21 -a 1 - -t 0.274 -s 4 -d 6 -p cbr -e 500 -c 1 -i 21 -a 1 h -t 0.274 -s 4 -d 6 -p cbr -e 500 -c 1 -i 21 -a 1 r -t 0.274 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 16 -a 1 r -t 0.274 -s 4 -d 6 -p cbr -e 500 -c 1 -i 17 -a 1 r -t 0.274 -s 1 -d 3 -p cbr -e 500 -c 1 -i 35 -a 1 + -t 0.274 -s 3 -d 4 -p cbr -e 500 -c 1 -i 35 -a 1 r -t 0.278 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 36 -a 1 + -t 0.278 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 36 -a 1 + -t 0.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 41 -a 1 - -t 0.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 41 -a 1 h -t 0.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 41 -a 1 + -t 0.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 42 -a 1 - -t 0.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 42 -a 1 h -t 0.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 42 -a 1 - -t 0.28 -s 3 -d 4 -p cbr -e 500 -c 1 -i 31 -a 1 h -t 0.28 -s 3 -d 4 -p cbr -e 500 -c 1 -i 31 -a 1 r -t 0.282 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 22 -a 1 + -t 0.282 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 22 -a 1 - -t 0.282 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 22 -a 1 h -t 0.282 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 22 -a 1 r -t 0.284 -s 1 -d 3 -p cbr -e 500 -c 1 -i 37 -a 1 + -t 0.284 -s 3 -d 4 -p cbr -e 500 -c 1 -i 37 -a 1 - -t 0.284 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 32 -a 1 h -t 0.284 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 32 -a 1 r -t 0.286 -s 3 -d 4 -p cbr -e 500 -c 1 -i 23 -a 1 + -t 0.286 -s 4 -d 6 -p cbr -e 500 -c 1 -i 23 -a 1 - -t 0.286 -s 4 -d 6 -p cbr -e 500 -c 1 -i 23 -a 1 h -t 0.286 -s 4 -d 6 -p cbr -e 500 -c 1 -i 23 -a 1 r -t 0.286 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 18 -a 1 r -t 0.286 -s 4 -d 6 -p cbr -e 500 -c 1 -i 19 -a 1 r -t 0.288 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 38 -a 1 + -t 0.288 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 38 -a 1 + -t 0.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 43 -a 1 - -t 0.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 43 -a 1 h -t 0.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 43 -a 1 + -t 0.29 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 44 -a 1 - -t 0.29 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 44 -a 1 h -t 0.29 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 44 -a 1 - -t 0.292 -s 3 -d 4 -p cbr -e 500 -c 1 -i 33 -a 1 h -t 0.292 -s 3 -d 4 -p cbr -e 500 -c 1 -i 33 -a 1 r -t 0.294 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 24 -a 1 + -t 0.294 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 24 -a 1 - -t 0.294 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 24 -a 1 h -t 0.294 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 24 -a 1 r -t 0.294 -s 1 -d 3 -p cbr -e 500 -c 1 -i 39 -a 1 + -t 0.294 -s 3 -d 4 -p cbr -e 500 -c 1 -i 39 -a 1 - -t 0.296 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 34 -a 1 h -t 0.296 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 34 -a 1 r -t 0.298 -s 3 -d 4 -p cbr -e 500 -c 1 -i 25 -a 1 + -t 0.298 -s 4 -d 6 -p cbr -e 500 -c 1 -i 25 -a 1 - -t 0.298 -s 4 -d 6 -p cbr -e 500 -c 1 -i 25 -a 1 h -t 0.298 -s 4 -d 6 -p cbr -e 500 -c 1 -i 25 -a 1 r -t 0.298 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 20 -a 1 r -t 0.298 -s 4 -d 6 -p cbr -e 500 -c 1 -i 21 -a 1 r -t 0.298 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 40 -a 1 + -t 0.298 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 40 -a 1 + -t 0.3 -s 1 -d 3 -p cbr -e 500 -c 1 -i 45 -a 1 - -t 0.3 -s 1 -d 3 -p cbr -e 500 -c 1 -i 45 -a 1 h -t 0.3 -s 1 -d 3 -p cbr -e 500 -c 1 -i 45 -a 1 + -t 0.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 46 -a 1 - -t 0.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 46 -a 1 h -t 0.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 46 -a 1 r -t 0.304 -s 1 -d 3 -p cbr -e 500 -c 1 -i 41 -a 1 + -t 0.304 -s 3 -d 4 -p cbr -e 500 -c 1 -i 41 -a 1 - -t 0.304 -s 3 -d 4 -p cbr -e 500 -c 1 -i 35 -a 1 h -t 0.304 -s 3 -d 4 -p cbr -e 500 -c 1 -i 35 -a 1 r -t 0.306 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 26 -a 1 + -t 0.306 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 26 -a 1 - -t 0.306 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 26 -a 1 h -t 0.306 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 26 -a 1 r -t 0.308 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 42 -a 1 + -t 0.308 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 42 -a 1 - -t 0.308 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 36 -a 1 h -t 0.308 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 36 -a 1 r -t 0.31 -s 3 -d 4 -p cbr -e 500 -c 1 -i 27 -a 1 + -t 0.31 -s 4 -d 6 -p cbr -e 500 -c 1 -i 27 -a 1 - -t 0.31 -s 4 -d 6 -p cbr -e 500 -c 1 -i 27 -a 1 h -t 0.31 -s 4 -d 6 -p cbr -e 500 -c 1 -i 27 -a 1 r -t 0.31 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 22 -a 1 r -t 0.31 -s 4 -d 6 -p cbr -e 500 -c 1 -i 23 -a 1 + -t 0.31 -s 1 -d 3 -p cbr -e 500 -c 1 -i 47 -a 1 - -t 0.31 -s 1 -d 3 -p cbr -e 500 -c 1 -i 47 -a 1 h -t 0.31 -s 1 -d 3 -p cbr -e 500 -c 1 -i 47 -a 1 + -t 0.31 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 48 -a 1 - -t 0.31 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 48 -a 1 h -t 0.31 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 48 -a 1 r -t 0.314 -s 1 -d 3 -p cbr -e 500 -c 1 -i 43 -a 1 + -t 0.314 -s 3 -d 4 -p cbr -e 500 -c 1 -i 43 -a 1 - -t 0.316 -s 3 -d 4 -p cbr -e 500 -c 1 -i 37 -a 1 h -t 0.316 -s 3 -d 4 -p cbr -e 500 -c 1 -i 37 -a 1 r -t 0.318 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 28 -a 1 + -t 0.318 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 28 -a 1 - -t 0.318 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 28 -a 1 h -t 0.318 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 28 -a 1 r -t 0.318 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 44 -a 1 + -t 0.318 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 44 -a 1 + -t 0.32 -s 1 -d 3 -p cbr -e 500 -c 1 -i 49 -a 1 - -t 0.32 -s 1 -d 3 -p cbr -e 500 -c 1 -i 49 -a 1 h -t 0.32 -s 1 -d 3 -p cbr -e 500 -c 1 -i 49 -a 1 + -t 0.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 50 -a 1 - -t 0.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 50 -a 1 h -t 0.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 50 -a 1 - -t 0.32 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 38 -a 1 h -t 0.32 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 38 -a 1 r -t 0.322 -s 3 -d 4 -p cbr -e 500 -c 1 -i 29 -a 1 + -t 0.322 -s 4 -d 6 -p cbr -e 500 -c 1 -i 29 -a 1 - -t 0.322 -s 4 -d 6 -p cbr -e 500 -c 1 -i 29 -a 1 h -t 0.322 -s 4 -d 6 -p cbr -e 500 -c 1 -i 29 -a 1 r -t 0.322 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 24 -a 1 r -t 0.322 -s 4 -d 6 -p cbr -e 500 -c 1 -i 25 -a 1 r -t 0.324 -s 1 -d 3 -p cbr -e 500 -c 1 -i 45 -a 1 + -t 0.324 -s 3 -d 4 -p cbr -e 500 -c 1 -i 45 -a 1 r -t 0.328 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 46 -a 1 + -t 0.328 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 46 -a 1 - -t 0.328 -s 3 -d 4 -p cbr -e 500 -c 1 -i 39 -a 1 h -t 0.328 -s 3 -d 4 -p cbr -e 500 -c 1 -i 39 -a 1 r -t 0.33 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 30 -a 1 + -t 0.33 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 30 -a 1 - -t 0.33 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 30 -a 1 h -t 0.33 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 30 -a 1 + -t 0.33 -s 1 -d 3 -p cbr -e 500 -c 1 -i 51 -a 1 - -t 0.33 -s 1 -d 3 -p cbr -e 500 -c 1 -i 51 -a 1 h -t 0.33 -s 1 -d 3 -p cbr -e 500 -c 1 -i 51 -a 1 + -t 0.33 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 52 -a 1 - -t 0.33 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 52 -a 1 h -t 0.33 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 52 -a 1 - -t 0.332 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 40 -a 1 h -t 0.332 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 40 -a 1 r -t 0.334 -s 3 -d 4 -p cbr -e 500 -c 1 -i 31 -a 1 + -t 0.334 -s 4 -d 6 -p cbr -e 500 -c 1 -i 31 -a 1 - -t 0.334 -s 4 -d 6 -p cbr -e 500 -c 1 -i 31 -a 1 h -t 0.334 -s 4 -d 6 -p cbr -e 500 -c 1 -i 31 -a 1 r -t 0.334 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 26 -a 1 r -t 0.334 -s 4 -d 6 -p cbr -e 500 -c 1 -i 27 -a 1 r -t 0.334 -s 1 -d 3 -p cbr -e 500 -c 1 -i 47 -a 1 + -t 0.334 -s 3 -d 4 -p cbr -e 500 -c 1 -i 47 -a 1 r -t 0.338 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 48 -a 1 + -t 0.338 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 48 -a 1 + -t 0.34 -s 1 -d 3 -p cbr -e 500 -c 1 -i 53 -a 1 - -t 0.34 -s 1 -d 3 -p cbr -e 500 -c 1 -i 53 -a 1 h -t 0.34 -s 1 -d 3 -p cbr -e 500 -c 1 -i 53 -a 1 + -t 0.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 54 -a 1 - -t 0.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 54 -a 1 h -t 0.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 54 -a 1 - -t 0.34 -s 3 -d 4 -p cbr -e 500 -c 1 -i 41 -a 1 h -t 0.34 -s 3 -d 4 -p cbr -e 500 -c 1 -i 41 -a 1 r -t 0.342 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 32 -a 1 + -t 0.342 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 32 -a 1 - -t 0.342 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 32 -a 1 h -t 0.342 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 32 -a 1 r -t 0.344 -s 1 -d 3 -p cbr -e 500 -c 1 -i 49 -a 1 + -t 0.344 -s 3 -d 4 -p cbr -e 500 -c 1 -i 49 -a 1 - -t 0.344 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 42 -a 1 h -t 0.344 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 42 -a 1 r -t 0.346 -s 3 -d 4 -p cbr -e 500 -c 1 -i 33 -a 1 + -t 0.346 -s 4 -d 6 -p cbr -e 500 -c 1 -i 33 -a 1 - -t 0.346 -s 4 -d 6 -p cbr -e 500 -c 1 -i 33 -a 1 h -t 0.346 -s 4 -d 6 -p cbr -e 500 -c 1 -i 33 -a 1 r -t 0.346 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 28 -a 1 r -t 0.346 -s 4 -d 6 -p cbr -e 500 -c 1 -i 29 -a 1 r -t 0.348 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 50 -a 1 + -t 0.348 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 50 -a 1 + -t 0.35 -s 1 -d 3 -p cbr -e 500 -c 1 -i 55 -a 1 - -t 0.35 -s 1 -d 3 -p cbr -e 500 -c 1 -i 55 -a 1 h -t 0.35 -s 1 -d 3 -p cbr -e 500 -c 1 -i 55 -a 1 + -t 0.35 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 56 -a 1 - -t 0.35 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 56 -a 1 h -t 0.35 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 56 -a 1 - -t 0.352 -s 3 -d 4 -p cbr -e 500 -c 1 -i 43 -a 1 h -t 0.352 -s 3 -d 4 -p cbr -e 500 -c 1 -i 43 -a 1 r -t 0.354 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 34 -a 1 + -t 0.354 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 34 -a 1 - -t 0.354 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 34 -a 1 h -t 0.354 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 34 -a 1 r -t 0.354 -s 1 -d 3 -p cbr -e 500 -c 1 -i 51 -a 1 + -t 0.354 -s 3 -d 4 -p cbr -e 500 -c 1 -i 51 -a 1 - -t 0.356 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 44 -a 1 h -t 0.356 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 44 -a 1 r -t 0.358 -s 3 -d 4 -p cbr -e 500 -c 1 -i 35 -a 1 + -t 0.358 -s 4 -d 6 -p cbr -e 500 -c 1 -i 35 -a 1 - -t 0.358 -s 4 -d 6 -p cbr -e 500 -c 1 -i 35 -a 1 h -t 0.358 -s 4 -d 6 -p cbr -e 500 -c 1 -i 35 -a 1 r -t 0.358 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 30 -a 1 r -t 0.358 -s 4 -d 6 -p cbr -e 500 -c 1 -i 31 -a 1 r -t 0.358 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 52 -a 1 + -t 0.358 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 52 -a 1 + -t 0.36 -s 1 -d 3 -p cbr -e 500 -c 1 -i 57 -a 1 - -t 0.36 -s 1 -d 3 -p cbr -e 500 -c 1 -i 57 -a 1 h -t 0.36 -s 1 -d 3 -p cbr -e 500 -c 1 -i 57 -a 1 + -t 0.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 58 -a 1 - -t 0.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 58 -a 1 h -t 0.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 58 -a 1 r -t 0.364 -s 1 -d 3 -p cbr -e 500 -c 1 -i 53 -a 1 + -t 0.364 -s 3 -d 4 -p cbr -e 500 -c 1 -i 53 -a 1 - -t 0.364 -s 3 -d 4 -p cbr -e 500 -c 1 -i 45 -a 1 h -t 0.364 -s 3 -d 4 -p cbr -e 500 -c 1 -i 45 -a 1 r -t 0.366 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 36 -a 1 + -t 0.366 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 36 -a 1 - -t 0.366 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 36 -a 1 h -t 0.366 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 36 -a 1 r -t 0.368 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 54 -a 1 + -t 0.368 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 54 -a 1 - -t 0.368 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 46 -a 1 h -t 0.368 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 46 -a 1 r -t 0.37 -s 3 -d 4 -p cbr -e 500 -c 1 -i 37 -a 1 + -t 0.37 -s 4 -d 6 -p cbr -e 500 -c 1 -i 37 -a 1 - -t 0.37 -s 4 -d 6 -p cbr -e 500 -c 1 -i 37 -a 1 h -t 0.37 -s 4 -d 6 -p cbr -e 500 -c 1 -i 37 -a 1 r -t 0.37 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 32 -a 1 r -t 0.37 -s 4 -d 6 -p cbr -e 500 -c 1 -i 33 -a 1 + -t 0.37 -s 1 -d 3 -p cbr -e 500 -c 1 -i 59 -a 1 - -t 0.37 -s 1 -d 3 -p cbr -e 500 -c 1 -i 59 -a 1 h -t 0.37 -s 1 -d 3 -p cbr -e 500 -c 1 -i 59 -a 1 + -t 0.37 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 60 -a 1 - -t 0.37 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 60 -a 1 h -t 0.37 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 60 -a 1 r -t 0.374 -s 1 -d 3 -p cbr -e 500 -c 1 -i 55 -a 1 + -t 0.374 -s 3 -d 4 -p cbr -e 500 -c 1 -i 55 -a 1 - -t 0.376 -s 3 -d 4 -p cbr -e 500 -c 1 -i 47 -a 1 h -t 0.376 -s 3 -d 4 -p cbr -e 500 -c 1 -i 47 -a 1 r -t 0.378 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 38 -a 1 + -t 0.378 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 38 -a 1 - -t 0.378 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 38 -a 1 h -t 0.378 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 38 -a 1 r -t 0.378 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 56 -a 1 + -t 0.378 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 56 -a 1 + -t 0.38 -s 1 -d 3 -p cbr -e 500 -c 1 -i 61 -a 1 - -t 0.38 -s 1 -d 3 -p cbr -e 500 -c 1 -i 61 -a 1 h -t 0.38 -s 1 -d 3 -p cbr -e 500 -c 1 -i 61 -a 1 + -t 0.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 62 -a 1 - -t 0.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 62 -a 1 h -t 0.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 62 -a 1 - -t 0.38 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 48 -a 1 h -t 0.38 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 48 -a 1 r -t 0.382 -s 3 -d 4 -p cbr -e 500 -c 1 -i 39 -a 1 + -t 0.382 -s 4 -d 6 -p cbr -e 500 -c 1 -i 39 -a 1 - -t 0.382 -s 4 -d 6 -p cbr -e 500 -c 1 -i 39 -a 1 h -t 0.382 -s 4 -d 6 -p cbr -e 500 -c 1 -i 39 -a 1 r -t 0.382 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 34 -a 1 r -t 0.382 -s 4 -d 6 -p cbr -e 500 -c 1 -i 35 -a 1 r -t 0.384 -s 1 -d 3 -p cbr -e 500 -c 1 -i 57 -a 1 + -t 0.384 -s 3 -d 4 -p cbr -e 500 -c 1 -i 57 -a 1 r -t 0.388 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 58 -a 1 + -t 0.388 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 58 -a 1 d -t 0.388 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 58 -a 1 - -t 0.388 -s 3 -d 4 -p cbr -e 500 -c 1 -i 49 -a 1 h -t 0.388 -s 3 -d 4 -p cbr -e 500 -c 1 -i 49 -a 1 r -t 0.39 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 40 -a 1 + -t 0.39 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 40 -a 1 - -t 0.39 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 40 -a 1 h -t 0.39 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 40 -a 1 + -t 0.39 -s 1 -d 3 -p cbr -e 500 -c 1 -i 63 -a 1 - -t 0.39 -s 1 -d 3 -p cbr -e 500 -c 1 -i 63 -a 1 h -t 0.39 -s 1 -d 3 -p cbr -e 500 -c 1 -i 63 -a 1 + -t 0.39 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 64 -a 1 - -t 0.39 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 64 -a 1 h -t 0.39 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 64 -a 1 - -t 0.392 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 50 -a 1 h -t 0.392 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 50 -a 1 r -t 0.394 -s 3 -d 4 -p cbr -e 500 -c 1 -i 41 -a 1 + -t 0.394 -s 4 -d 6 -p cbr -e 500 -c 1 -i 41 -a 1 - -t 0.394 -s 4 -d 6 -p cbr -e 500 -c 1 -i 41 -a 1 h -t 0.394 -s 4 -d 6 -p cbr -e 500 -c 1 -i 41 -a 1 r -t 0.394 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 36 -a 1 r -t 0.394 -s 4 -d 6 -p cbr -e 500 -c 1 -i 37 -a 1 r -t 0.394 -s 1 -d 3 -p cbr -e 500 -c 1 -i 59 -a 1 + -t 0.394 -s 3 -d 4 -p cbr -e 500 -c 1 -i 59 -a 1 r -t 0.398 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 60 -a 1 + -t 0.398 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 60 -a 1 + -t 0.4 -s 1 -d 3 -p cbr -e 500 -c 1 -i 65 -a 1 - -t 0.4 -s 1 -d 3 -p cbr -e 500 -c 1 -i 65 -a 1 h -t 0.4 -s 1 -d 3 -p cbr -e 500 -c 1 -i 65 -a 1 + -t 0.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 66 -a 1 - -t 0.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 66 -a 1 h -t 0.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 66 -a 1 - -t 0.4 -s 3 -d 4 -p cbr -e 500 -c 1 -i 51 -a 1 h -t 0.4 -s 3 -d 4 -p cbr -e 500 -c 1 -i 51 -a 1 r -t 0.402 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 42 -a 1 + -t 0.402 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 42 -a 1 - -t 0.402 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 42 -a 1 h -t 0.402 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 42 -a 1 r -t 0.404 -s 1 -d 3 -p cbr -e 500 -c 1 -i 61 -a 1 + -t 0.404 -s 3 -d 4 -p cbr -e 500 -c 1 -i 61 -a 1 - -t 0.404 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 52 -a 1 h -t 0.404 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 52 -a 1 r -t 0.406 -s 3 -d 4 -p cbr -e 500 -c 1 -i 43 -a 1 + -t 0.406 -s 4 -d 6 -p cbr -e 500 -c 1 -i 43 -a 1 - -t 0.406 -s 4 -d 6 -p cbr -e 500 -c 1 -i 43 -a 1 h -t 0.406 -s 4 -d 6 -p cbr -e 500 -c 1 -i 43 -a 1 r -t 0.406 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 38 -a 1 r -t 0.406 -s 4 -d 6 -p cbr -e 500 -c 1 -i 39 -a 1 r -t 0.408 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 62 -a 1 + -t 0.408 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 62 -a 1 + -t 0.41 -s 1 -d 3 -p cbr -e 500 -c 1 -i 67 -a 1 - -t 0.41 -s 1 -d 3 -p cbr -e 500 -c 1 -i 67 -a 1 h -t 0.41 -s 1 -d 3 -p cbr -e 500 -c 1 -i 67 -a 1 + -t 0.41 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 68 -a 1 - -t 0.41 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 68 -a 1 h -t 0.41 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 68 -a 1 - -t 0.412 -s 3 -d 4 -p cbr -e 500 -c 1 -i 53 -a 1 h -t 0.412 -s 3 -d 4 -p cbr -e 500 -c 1 -i 53 -a 1 r -t 0.414 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 44 -a 1 + -t 0.414 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 44 -a 1 - -t 0.414 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 44 -a 1 h -t 0.414 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 44 -a 1 r -t 0.414 -s 1 -d 3 -p cbr -e 500 -c 1 -i 63 -a 1 + -t 0.414 -s 3 -d 4 -p cbr -e 500 -c 1 -i 63 -a 1 - -t 0.416 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 54 -a 1 h -t 0.416 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 54 -a 1 r -t 0.418 -s 3 -d 4 -p cbr -e 500 -c 1 -i 45 -a 1 + -t 0.418 -s 4 -d 6 -p cbr -e 500 -c 1 -i 45 -a 1 - -t 0.418 -s 4 -d 6 -p cbr -e 500 -c 1 -i 45 -a 1 h -t 0.418 -s 4 -d 6 -p cbr -e 500 -c 1 -i 45 -a 1 r -t 0.418 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 40 -a 1 r -t 0.418 -s 4 -d 6 -p cbr -e 500 -c 1 -i 41 -a 1 r -t 0.418 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 64 -a 1 + -t 0.418 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 64 -a 1 + -t 0.42 -s 1 -d 3 -p cbr -e 500 -c 1 -i 69 -a 1 - -t 0.42 -s 1 -d 3 -p cbr -e 500 -c 1 -i 69 -a 1 h -t 0.42 -s 1 -d 3 -p cbr -e 500 -c 1 -i 69 -a 1 + -t 0.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 70 -a 1 - -t 0.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 70 -a 1 h -t 0.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 70 -a 1 r -t 0.424 -s 1 -d 3 -p cbr -e 500 -c 1 -i 65 -a 1 + -t 0.424 -s 3 -d 4 -p cbr -e 500 -c 1 -i 65 -a 1 d -t 0.424 -s 3 -d 4 -p cbr -e 500 -c 1 -i 65 -a 1 - -t 0.424 -s 3 -d 4 -p cbr -e 500 -c 1 -i 55 -a 1 h -t 0.424 -s 3 -d 4 -p cbr -e 500 -c 1 -i 55 -a 1 r -t 0.426 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 46 -a 1 + -t 0.426 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 46 -a 1 - -t 0.426 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 46 -a 1 h -t 0.426 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 46 -a 1 r -t 0.428 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 66 -a 1 + -t 0.428 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 66 -a 1 - -t 0.428 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 56 -a 1 h -t 0.428 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 56 -a 1 r -t 0.43 -s 3 -d 4 -p cbr -e 500 -c 1 -i 47 -a 1 + -t 0.43 -s 4 -d 6 -p cbr -e 500 -c 1 -i 47 -a 1 - -t 0.43 -s 4 -d 6 -p cbr -e 500 -c 1 -i 47 -a 1 h -t 0.43 -s 4 -d 6 -p cbr -e 500 -c 1 -i 47 -a 1 r -t 0.43 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 42 -a 1 r -t 0.43 -s 4 -d 6 -p cbr -e 500 -c 1 -i 43 -a 1 + -t 0.43 -s 1 -d 3 -p cbr -e 500 -c 1 -i 71 -a 1 - -t 0.43 -s 1 -d 3 -p cbr -e 500 -c 1 -i 71 -a 1 h -t 0.43 -s 1 -d 3 -p cbr -e 500 -c 1 -i 71 -a 1 + -t 0.43 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 72 -a 1 - -t 0.43 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 72 -a 1 h -t 0.43 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 72 -a 1 r -t 0.434 -s 1 -d 3 -p cbr -e 500 -c 1 -i 67 -a 1 + -t 0.434 -s 3 -d 4 -p cbr -e 500 -c 1 -i 67 -a 1 - -t 0.436 -s 3 -d 4 -p cbr -e 500 -c 1 -i 57 -a 1 h -t 0.436 -s 3 -d 4 -p cbr -e 500 -c 1 -i 57 -a 1 r -t 0.438 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 48 -a 1 + -t 0.438 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 48 -a 1 - -t 0.438 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 48 -a 1 h -t 0.438 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 48 -a 1 r -t 0.438 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 68 -a 1 + -t 0.438 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 68 -a 1 + -t 0.44 -s 1 -d 3 -p cbr -e 500 -c 1 -i 73 -a 1 - -t 0.44 -s 1 -d 3 -p cbr -e 500 -c 1 -i 73 -a 1 h -t 0.44 -s 1 -d 3 -p cbr -e 500 -c 1 -i 73 -a 1 + -t 0.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 74 -a 1 - -t 0.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 74 -a 1 h -t 0.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 74 -a 1 - -t 0.44 -s 3 -d 4 -p cbr -e 500 -c 1 -i 59 -a 1 h -t 0.44 -s 3 -d 4 -p cbr -e 500 -c 1 -i 59 -a 1 r -t 0.442 -s 3 -d 4 -p cbr -e 500 -c 1 -i 49 -a 1 + -t 0.442 -s 4 -d 6 -p cbr -e 500 -c 1 -i 49 -a 1 - -t 0.442 -s 4 -d 6 -p cbr -e 500 -c 1 -i 49 -a 1 h -t 0.442 -s 4 -d 6 -p cbr -e 500 -c 1 -i 49 -a 1 r -t 0.442 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 44 -a 1 r -t 0.442 -s 4 -d 6 -p cbr -e 500 -c 1 -i 45 -a 1 r -t 0.444 -s 1 -d 3 -p cbr -e 500 -c 1 -i 69 -a 1 + -t 0.444 -s 3 -d 4 -p cbr -e 500 -c 1 -i 69 -a 1 - -t 0.444 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 60 -a 1 h -t 0.444 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 60 -a 1 r -t 0.448 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 70 -a 1 + -t 0.448 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 70 -a 1 r -t 0.45 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 50 -a 1 + -t 0.45 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 50 -a 1 - -t 0.45 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 50 -a 1 h -t 0.45 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 50 -a 1 + -t 0.45 -s 1 -d 3 -p cbr -e 500 -c 1 -i 75 -a 1 - -t 0.45 -s 1 -d 3 -p cbr -e 500 -c 1 -i 75 -a 1 h -t 0.45 -s 1 -d 3 -p cbr -e 500 -c 1 -i 75 -a 1 + -t 0.45 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 76 -a 1 - -t 0.45 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 76 -a 1 h -t 0.45 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 76 -a 1 - -t 0.452 -s 3 -d 4 -p cbr -e 500 -c 1 -i 61 -a 1 h -t 0.452 -s 3 -d 4 -p cbr -e 500 -c 1 -i 61 -a 1 r -t 0.454 -s 3 -d 4 -p cbr -e 500 -c 1 -i 51 -a 1 + -t 0.454 -s 4 -d 6 -p cbr -e 500 -c 1 -i 51 -a 1 - -t 0.454 -s 4 -d 6 -p cbr -e 500 -c 1 -i 51 -a 1 h -t 0.454 -s 4 -d 6 -p cbr -e 500 -c 1 -i 51 -a 1 r -t 0.454 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 46 -a 1 r -t 0.454 -s 4 -d 6 -p cbr -e 500 -c 1 -i 47 -a 1 r -t 0.454 -s 1 -d 3 -p cbr -e 500 -c 1 -i 71 -a 1 + -t 0.454 -s 3 -d 4 -p cbr -e 500 -c 1 -i 71 -a 1 - -t 0.456 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 62 -a 1 h -t 0.456 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 62 -a 1 r -t 0.458 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 72 -a 1 + -t 0.458 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 72 -a 1 + -t 0.46 -s 1 -d 3 -p cbr -e 500 -c 1 -i 77 -a 1 - -t 0.46 -s 1 -d 3 -p cbr -e 500 -c 1 -i 77 -a 1 h -t 0.46 -s 1 -d 3 -p cbr -e 500 -c 1 -i 77 -a 1 + -t 0.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 78 -a 1 - -t 0.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 78 -a 1 h -t 0.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 78 -a 1 r -t 0.462 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 52 -a 1 + -t 0.462 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 52 -a 1 - -t 0.462 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 52 -a 1 h -t 0.462 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 52 -a 1 r -t 0.464 -s 1 -d 3 -p cbr -e 500 -c 1 -i 73 -a 1 + -t 0.464 -s 3 -d 4 -p cbr -e 500 -c 1 -i 73 -a 1 d -t 0.464 -s 3 -d 4 -p cbr -e 500 -c 1 -i 73 -a 1 - -t 0.464 -s 3 -d 4 -p cbr -e 500 -c 1 -i 63 -a 1 h -t 0.464 -s 3 -d 4 -p cbr -e 500 -c 1 -i 63 -a 1 r -t 0.466 -s 3 -d 4 -p cbr -e 500 -c 1 -i 53 -a 1 + -t 0.466 -s 4 -d 6 -p cbr -e 500 -c 1 -i 53 -a 1 - -t 0.466 -s 4 -d 6 -p cbr -e 500 -c 1 -i 53 -a 1 h -t 0.466 -s 4 -d 6 -p cbr -e 500 -c 1 -i 53 -a 1 r -t 0.466 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 48 -a 1 r -t 0.466 -s 4 -d 6 -p cbr -e 500 -c 1 -i 49 -a 1 r -t 0.468 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 74 -a 1 + -t 0.468 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 74 -a 1 - -t 0.468 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 64 -a 1 h -t 0.468 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 64 -a 1 + -t 0.47 -s 1 -d 3 -p cbr -e 500 -c 1 -i 79 -a 1 - -t 0.47 -s 1 -d 3 -p cbr -e 500 -c 1 -i 79 -a 1 h -t 0.47 -s 1 -d 3 -p cbr -e 500 -c 1 -i 79 -a 1 + -t 0.47 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 80 -a 1 - -t 0.47 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 80 -a 1 h -t 0.47 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 80 -a 1 r -t 0.474 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 54 -a 1 + -t 0.474 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 54 -a 1 - -t 0.474 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 54 -a 1 h -t 0.474 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 54 -a 1 r -t 0.474 -s 1 -d 3 -p cbr -e 500 -c 1 -i 75 -a 1 + -t 0.474 -s 3 -d 4 -p cbr -e 500 -c 1 -i 75 -a 1 - -t 0.476 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 66 -a 1 h -t 0.476 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 66 -a 1 r -t 0.478 -s 3 -d 4 -p cbr -e 500 -c 1 -i 55 -a 1 + -t 0.478 -s 4 -d 6 -p cbr -e 500 -c 1 -i 55 -a 1 - -t 0.478 -s 4 -d 6 -p cbr -e 500 -c 1 -i 55 -a 1 h -t 0.478 -s 4 -d 6 -p cbr -e 500 -c 1 -i 55 -a 1 r -t 0.478 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 50 -a 1 r -t 0.478 -s 4 -d 6 -p cbr -e 500 -c 1 -i 51 -a 1 r -t 0.478 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 76 -a 1 + -t 0.478 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 76 -a 1 v -t 0.47999999999999998 sim_annotation 0.47999999999999998 4 Sliding-Window Traffic starts + -t 0.48 -s 1 -d 3 -p cbr -e 500 -c 1 -i 81 -a 1 - -t 0.48 -s 1 -d 3 -p cbr -e 500 -c 1 -i 81 -a 1 h -t 0.48 -s 1 -d 3 -p cbr -e 500 -c 1 -i 81 -a 1 + -t 0.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 82 -a 1 - -t 0.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 82 -a 1 h -t 0.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 82 -a 1 r -t 0.484 -s 1 -d 3 -p cbr -e 500 -c 1 -i 77 -a 1 + -t 0.484 -s 3 -d 4 -p cbr -e 500 -c 1 -i 77 -a 1 d -t 0.484 -s 3 -d 4 -p cbr -e 500 -c 1 -i 77 -a 1 - -t 0.484 -s 3 -d 4 -p cbr -e 500 -c 1 -i 67 -a 1 h -t 0.484 -s 3 -d 4 -p cbr -e 500 -c 1 -i 67 -a 1 r -t 0.486 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 56 -a 1 + -t 0.486 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 56 -a 1 - -t 0.486 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 56 -a 1 h -t 0.486 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 56 -a 1 r -t 0.488 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 78 -a 1 + -t 0.488 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 78 -a 1 - -t 0.488 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 68 -a 1 h -t 0.488 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 68 -a 1 r -t 0.49 -s 3 -d 4 -p cbr -e 500 -c 1 -i 57 -a 1 + -t 0.49 -s 4 -d 6 -p cbr -e 500 -c 1 -i 57 -a 1 - -t 0.49 -s 4 -d 6 -p cbr -e 500 -c 1 -i 57 -a 1 h -t 0.49 -s 4 -d 6 -p cbr -e 500 -c 1 -i 57 -a 1 r -t 0.49 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 52 -a 1 r -t 0.49 -s 4 -d 6 -p cbr -e 500 -c 1 -i 53 -a 1 + -t 0.49 -s 1 -d 3 -p cbr -e 500 -c 1 -i 83 -a 1 - -t 0.49 -s 1 -d 3 -p cbr -e 500 -c 1 -i 83 -a 1 h -t 0.49 -s 1 -d 3 -p cbr -e 500 -c 1 -i 83 -a 1 + -t 0.49 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 84 -a 1 - -t 0.49 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 84 -a 1 h -t 0.49 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 84 -a 1 r -t 0.494 -s 3 -d 4 -p cbr -e 500 -c 1 -i 59 -a 1 + -t 0.494 -s 4 -d 6 -p cbr -e 500 -c 1 -i 59 -a 1 r -t 0.494 -s 1 -d 3 -p cbr -e 500 -c 1 -i 79 -a 1 + -t 0.494 -s 3 -d 4 -p cbr -e 500 -c 1 -i 79 -a 1 - -t 0.494 -s 4 -d 6 -p cbr -e 500 -c 1 -i 59 -a 1 h -t 0.494 -s 4 -d 6 -p cbr -e 500 -c 1 -i 59 -a 1 - -t 0.496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 69 -a 1 h -t 0.496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 69 -a 1 r -t 0.498 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 80 -a 1 + -t 0.498 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 80 -a 1 + -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 85 -a 0 -S 0 -f 0 -m 0 -y {0 0} - -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 85 -a 0 -S 0 -y {0 0} h -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 85 -a 0 -S 0 -y {-1 -1} + -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 86 -a 0 -S 0 -f 0 -m 0 -y {1 1} + -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 87 -a 0 -S 0 -f 0 -m 0 -y {2 2} + -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 88 -a 0 -S 0 -f 0 -m 0 -y {3 3} + -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 89 -a 0 -S 0 -f 0 -m 0 -y {4 4} + -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 90 -a 0 -S 0 -f 0 -m 0 -y {5 5} + -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 91 -a 0 -S 0 -f 0 -m 0 -y {6 6} + -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 92 -a 0 -S 0 -f 0 -m 0 -y {7 7} + -t 0.5 -s 1 -d 3 -p cbr -e 500 -c 1 -i 93 -a 1 - -t 0.5 -s 1 -d 3 -p cbr -e 500 -c 1 -i 93 -a 1 h -t 0.5 -s 1 -d 3 -p cbr -e 500 -c 1 -i 93 -a 1 + -t 0.5 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 94 -a 1 - -t 0.5 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 94 -a 1 h -t 0.5 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 94 -a 1 - -t 0.5 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 70 -a 1 h -t 0.5 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 70 -a 1 - -t 0.5016 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 86 -a 0 -S 0 -y {1 1} h -t 0.5016 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 86 -a 0 -S 0 -y {-1 -1} r -t 0.502 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 54 -a 1 r -t 0.502 -s 4 -d 6 -p cbr -e 500 -c 1 -i 55 -a 1 r -t 0.502 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 60 -a 1 + -t 0.502 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 60 -a 1 - -t 0.502 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 60 -a 1 h -t 0.502 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 60 -a 1 - -t 0.5032 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 87 -a 0 -S 0 -y {2 2} h -t 0.5032 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 87 -a 0 -S 0 -y {-1 -1} r -t 0.504 -s 1 -d 3 -p cbr -e 500 -c 1 -i 81 -a 1 + -t 0.504 -s 3 -d 4 -p cbr -e 500 -c 1 -i 81 -a 1 - -t 0.5048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 88 -a 0 -S 0 -y {3 3} h -t 0.5048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 88 -a 0 -S 0 -y {-1 -1} r -t 0.506 -s 3 -d 4 -p cbr -e 500 -c 1 -i 61 -a 1 + -t 0.506 -s 4 -d 6 -p cbr -e 500 -c 1 -i 61 -a 1 - -t 0.506 -s 4 -d 6 -p cbr -e 500 -c 1 -i 61 -a 1 h -t 0.506 -s 4 -d 6 -p cbr -e 500 -c 1 -i 61 -a 1 - -t 0.5064 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 89 -a 0 -S 0 -y {4 4} h -t 0.5064 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 89 -a 0 -S 0 -y {-1 -1} - -t 0.508 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 90 -a 0 -S 0 -y {5 5} h -t 0.508 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 90 -a 0 -S 0 -y {-1 -1} r -t 0.508 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 82 -a 1 + -t 0.508 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 82 -a 1 d -t 0.508 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 82 -a 1 - -t 0.508 -s 3 -d 4 -p cbr -e 500 -c 1 -i 71 -a 1 h -t 0.508 -s 3 -d 4 -p cbr -e 500 -c 1 -i 71 -a 1 - -t 0.5096 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 91 -a 0 -S 0 -y {6 6} h -t 0.5096 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 91 -a 0 -S 0 -y {-1 -1} v -t 0.51000000000000001 sim_annotation 0.51000000000000001 5 Send Packet_0 to 7 + -t 0.51 -s 1 -d 3 -p cbr -e 500 -c 1 -i 95 -a 1 - -t 0.51 -s 1 -d 3 -p cbr -e 500 -c 1 -i 95 -a 1 h -t 0.51 -s 1 -d 3 -p cbr -e 500 -c 1 -i 95 -a 1 - -t 0.5112 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 92 -a 0 -S 0 -y {7 7} h -t 0.5112 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 92 -a 0 -S 0 -y {-1 -1} - -t 0.512 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 72 -a 1 h -t 0.512 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 72 -a 1 r -t 0.514 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 56 -a 1 r -t 0.514 -s 4 -d 6 -p cbr -e 500 -c 1 -i 57 -a 1 r -t 0.514 -s 1 -d 3 -p cbr -e 500 -c 1 -i 83 -a 1 + -t 0.514 -s 3 -d 4 -p cbr -e 500 -c 1 -i 83 -a 1 r -t 0.514 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 62 -a 1 + -t 0.514 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 62 -a 1 - -t 0.514 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 62 -a 1 h -t 0.514 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 62 -a 1 r -t 0.518 -s 4 -d 6 -p cbr -e 500 -c 1 -i 59 -a 1 r -t 0.518 -s 3 -d 4 -p cbr -e 500 -c 1 -i 63 -a 1 + -t 0.518 -s 4 -d 6 -p cbr -e 500 -c 1 -i 63 -a 1 - -t 0.518 -s 4 -d 6 -p cbr -e 500 -c 1 -i 63 -a 1 h -t 0.518 -s 4 -d 6 -p cbr -e 500 -c 1 -i 63 -a 1 r -t 0.518 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 84 -a 1 + -t 0.518 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 84 -a 1 + -t 0.52 -s 1 -d 3 -p cbr -e 500 -c 1 -i 96 -a 1 - -t 0.52 -s 1 -d 3 -p cbr -e 500 -c 1 -i 96 -a 1 h -t 0.52 -s 1 -d 3 -p cbr -e 500 -c 1 -i 96 -a 1 + -t 0.52 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 97 -a 1 - -t 0.52 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 97 -a 1 h -t 0.52 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 97 -a 1 - -t 0.52 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 74 -a 1 h -t 0.52 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 74 -a 1 r -t 0.5216 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 85 -a 0 -S 0 -y {0 0} + -t 0.5216 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 85 -a 0 -S 0 -y {0 0} r -t 0.5232 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 86 -a 0 -S 0 -y {1 1} + -t 0.5232 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 86 -a 0 -S 0 -y {1 1} d -t 0.5232 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 86 -a 0 -S 0 -y {1 1} r -t 0.524 -s 1 -d 3 -p cbr -e 500 -c 1 -i 93 -a 1 + -t 0.524 -s 3 -d 4 -p cbr -e 500 -c 1 -i 93 -a 1 d -t 0.524 -s 3 -d 4 -p cbr -e 500 -c 1 -i 93 -a 1 r -t 0.5248 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 87 -a 0 -S 0 -y {2 2} + -t 0.5248 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 87 -a 0 -S 0 -y {2 2} d -t 0.5248 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 87 -a 0 -S 0 -y {2 2} r -t 0.526 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 64 -a 1 + -t 0.526 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 64 -a 1 - -t 0.526 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 64 -a 1 h -t 0.526 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 64 -a 1 r -t 0.5264 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 88 -a 0 -S 0 -y {3 3} + -t 0.5264 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 88 -a 0 -S 0 -y {3 3} d -t 0.5264 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 88 -a 0 -S 0 -y {3 3} r -t 0.528 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 89 -a 0 -S 0 -y {4 4} + -t 0.528 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 89 -a 0 -S 0 -y {4 4} d -t 0.528 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 89 -a 0 -S 0 -y {4 4} r -t 0.528 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 94 -a 1 + -t 0.528 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 94 -a 1 d -t 0.528 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 94 -a 1 - -t 0.528 -s 3 -d 4 -p cbr -e 500 -c 1 -i 75 -a 1 h -t 0.528 -s 3 -d 4 -p cbr -e 500 -c 1 -i 75 -a 1 r -t 0.5296 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 90 -a 0 -S 0 -y {5 5} + -t 0.5296 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 90 -a 0 -S 0 -y {5 5} + -t 0.53 -s 1 -d 3 -p cbr -e 500 -c 1 -i 98 -a 1 - -t 0.53 -s 1 -d 3 -p cbr -e 500 -c 1 -i 98 -a 1 h -t 0.53 -s 1 -d 3 -p cbr -e 500 -c 1 -i 98 -a 1 r -t 0.53 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 60 -a 1 r -t 0.53 -s 4 -d 6 -p cbr -e 500 -c 1 -i 61 -a 1 r -t 0.5312 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 91 -a 0 -S 0 -y {6 6} + -t 0.5312 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 91 -a 0 -S 0 -y {6 6} d -t 0.5312 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 91 -a 0 -S 0 -y {6 6} - -t 0.532 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 76 -a 1 h -t 0.532 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 76 -a 1 r -t 0.5328 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 92 -a 0 -S 0 -y {7 7} + -t 0.5328 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 92 -a 0 -S 0 -y {7 7} r -t 0.534 -s 1 -d 3 -p cbr -e 500 -c 1 -i 95 -a 1 + -t 0.534 -s 3 -d 4 -p cbr -e 500 -c 1 -i 95 -a 1 d -t 0.534 -s 3 -d 4 -p cbr -e 500 -c 1 -i 95 -a 1 r -t 0.534 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 66 -a 1 + -t 0.534 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 66 -a 1 - -t 0.534 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 66 -a 1 h -t 0.534 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 66 -a 1 r -t 0.538 -s 3 -d 4 -p cbr -e 500 -c 1 -i 67 -a 1 + -t 0.538 -s 4 -d 6 -p cbr -e 500 -c 1 -i 67 -a 1 - -t 0.538 -s 4 -d 6 -p cbr -e 500 -c 1 -i 67 -a 1 h -t 0.538 -s 4 -d 6 -p cbr -e 500 -c 1 -i 67 -a 1 v -t 0.54000000000000004 sim_annotation 0.54000000000000004 6 Lost Packet (5 of them) + -t 0.54 -s 1 -d 3 -p cbr -e 500 -c 1 -i 99 -a 1 - -t 0.54 -s 1 -d 3 -p cbr -e 500 -c 1 -i 99 -a 1 h -t 0.54 -s 1 -d 3 -p cbr -e 500 -c 1 -i 99 -a 1 + -t 0.54 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 100 -a 1 - -t 0.54 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 100 -a 1 h -t 0.54 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 100 -a 1 - -t 0.54 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 78 -a 1 h -t 0.54 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 78 -a 1 r -t 0.542 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 62 -a 1 r -t 0.542 -s 4 -d 6 -p cbr -e 500 -c 1 -i 63 -a 1 r -t 0.544 -s 1 -d 3 -p cbr -e 500 -c 1 -i 96 -a 1 + -t 0.544 -s 3 -d 4 -p cbr -e 500 -c 1 -i 96 -a 1 r -t 0.546 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 68 -a 1 + -t 0.546 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 68 -a 1 - -t 0.546 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 68 -a 1 h -t 0.546 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 68 -a 1 r -t 0.548 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 97 -a 1 + -t 0.548 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 97 -a 1 d -t 0.548 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 97 -a 1 - -t 0.548 -s 3 -d 4 -p cbr -e 500 -c 1 -i 79 -a 1 h -t 0.548 -s 3 -d 4 -p cbr -e 500 -c 1 -i 79 -a 1 + -t 0.55 -s 1 -d 3 -p cbr -e 500 -c 1 -i 101 -a 1 - -t 0.55 -s 1 -d 3 -p cbr -e 500 -c 1 -i 101 -a 1 h -t 0.55 -s 1 -d 3 -p cbr -e 500 -c 1 -i 101 -a 1 r -t 0.55 -s 3 -d 4 -p cbr -e 500 -c 1 -i 69 -a 1 + -t 0.55 -s 4 -d 6 -p cbr -e 500 -c 1 -i 69 -a 1 - -t 0.55 -s 4 -d 6 -p cbr -e 500 -c 1 -i 69 -a 1 h -t 0.55 -s 4 -d 6 -p cbr -e 500 -c 1 -i 69 -a 1 - -t 0.552 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 80 -a 1 h -t 0.552 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 80 -a 1 r -t 0.554 -s 1 -d 3 -p cbr -e 500 -c 1 -i 98 -a 1 + -t 0.554 -s 3 -d 4 -p cbr -e 500 -c 1 -i 98 -a 1 r -t 0.554 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 64 -a 1 r -t 0.558 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 70 -a 1 + -t 0.558 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 70 -a 1 - -t 0.558 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 70 -a 1 h -t 0.558 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 70 -a 1 + -t 0.56 -s 1 -d 3 -p cbr -e 500 -c 1 -i 102 -a 1 - -t 0.56 -s 1 -d 3 -p cbr -e 500 -c 1 -i 102 -a 1 h -t 0.56 -s 1 -d 3 -p cbr -e 500 -c 1 -i 102 -a 1 + -t 0.56 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 103 -a 1 - -t 0.56 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 103 -a 1 h -t 0.56 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 103 -a 1 - -t 0.56 -s 3 -d 4 -p cbr -e 500 -c 1 -i 81 -a 1 h -t 0.56 -s 3 -d 4 -p cbr -e 500 -c 1 -i 81 -a 1 r -t 0.562 -s 3 -d 4 -p cbr -e 500 -c 1 -i 71 -a 1 + -t 0.562 -s 4 -d 6 -p cbr -e 500 -c 1 -i 71 -a 1 - -t 0.562 -s 4 -d 6 -p cbr -e 500 -c 1 -i 71 -a 1 h -t 0.562 -s 4 -d 6 -p cbr -e 500 -c 1 -i 71 -a 1 r -t 0.562 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 66 -a 1 r -t 0.562 -s 4 -d 6 -p cbr -e 500 -c 1 -i 67 -a 1 r -t 0.564 -s 1 -d 3 -p cbr -e 500 -c 1 -i 99 -a 1 + -t 0.564 -s 3 -d 4 -p cbr -e 500 -c 1 -i 99 -a 1 - -t 0.564 -s 3 -d 4 -p cbr -e 500 -c 1 -i 83 -a 1 h -t 0.564 -s 3 -d 4 -p cbr -e 500 -c 1 -i 83 -a 1 r -t 0.568 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 100 -a 1 + -t 0.568 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 100 -a 1 - -t 0.568 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 84 -a 1 h -t 0.568 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 84 -a 1 + -t 0.57 -s 1 -d 3 -p cbr -e 500 -c 1 -i 104 -a 1 - -t 0.57 -s 1 -d 3 -p cbr -e 500 -c 1 -i 104 -a 1 h -t 0.57 -s 1 -d 3 -p cbr -e 500 -c 1 -i 104 -a 1 r -t 0.57 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 72 -a 1 + -t 0.57 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 72 -a 1 - -t 0.57 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 72 -a 1 h -t 0.57 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 72 -a 1 r -t 0.574 -s 1 -d 3 -p cbr -e 500 -c 1 -i 101 -a 1 + -t 0.574 -s 3 -d 4 -p cbr -e 500 -c 1 -i 101 -a 1 r -t 0.574 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 68 -a 1 r -t 0.574 -s 4 -d 6 -p cbr -e 500 -c 1 -i 69 -a 1 - -t 0.576 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 85 -a 0 -S 0 -y {0 0} h -t 0.576 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 85 -a 0 -S 0 -y {-1 -1} r -t 0.578 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 74 -a 1 + -t 0.578 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 74 -a 1 - -t 0.578 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 74 -a 1 h -t 0.578 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 74 -a 1 + -t 0.58 -s 1 -d 3 -p cbr -e 500 -c 1 -i 105 -a 1 - -t 0.58 -s 1 -d 3 -p cbr -e 500 -c 1 -i 105 -a 1 h -t 0.58 -s 1 -d 3 -p cbr -e 500 -c 1 -i 105 -a 1 + -t 0.58 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 106 -a 1 - -t 0.58 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 106 -a 1 h -t 0.58 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 106 -a 1 r -t 0.582 -s 3 -d 4 -p cbr -e 500 -c 1 -i 75 -a 1 + -t 0.582 -s 4 -d 6 -p cbr -e 500 -c 1 -i 75 -a 1 - -t 0.582 -s 4 -d 6 -p cbr -e 500 -c 1 -i 75 -a 1 h -t 0.582 -s 4 -d 6 -p cbr -e 500 -c 1 -i 75 -a 1 r -t 0.584 -s 1 -d 3 -p cbr -e 500 -c 1 -i 102 -a 1 + -t 0.584 -s 3 -d 4 -p cbr -e 500 -c 1 -i 102 -a 1 - -t 0.584 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 90 -a 0 -S 0 -y {5 5} h -t 0.584 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 90 -a 0 -S 0 -y {-1 -1} r -t 0.586 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 70 -a 1 r -t 0.586 -s 4 -d 6 -p cbr -e 500 -c 1 -i 71 -a 1 r -t 0.588 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 103 -a 1 + -t 0.588 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 103 -a 1 + -t 0.59 -s 1 -d 3 -p cbr -e 500 -c 1 -i 107 -a 1 - -t 0.59 -s 1 -d 3 -p cbr -e 500 -c 1 -i 107 -a 1 h -t 0.59 -s 1 -d 3 -p cbr -e 500 -c 1 -i 107 -a 1 r -t 0.59 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 76 -a 1 + -t 0.59 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 76 -a 1 - -t 0.59 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 76 -a 1 h -t 0.59 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 76 -a 1 - -t 0.592 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 92 -a 0 -S 0 -y {7 7} h -t 0.592 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 92 -a 0 -S 0 -y {-1 -1} r -t 0.594 -s 1 -d 3 -p cbr -e 500 -c 1 -i 104 -a 1 + -t 0.594 -s 3 -d 4 -p cbr -e 500 -c 1 -i 104 -a 1 r -t 0.598 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 78 -a 1 + -t 0.598 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 78 -a 1 r -t 0.598 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 72 -a 1 - -t 0.598 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 78 -a 1 h -t 0.598 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 78 -a 1 + -t 0.6 -s 1 -d 3 -p cbr -e 500 -c 1 -i 108 -a 1 - -t 0.6 -s 1 -d 3 -p cbr -e 500 -c 1 -i 108 -a 1 h -t 0.6 -s 1 -d 3 -p cbr -e 500 -c 1 -i 108 -a 1 + -t 0.6 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 109 -a 1 - -t 0.6 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 109 -a 1 h -t 0.6 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 109 -a 1 - -t 0.6 -s 3 -d 4 -p cbr -e 500 -c 1 -i 96 -a 1 h -t 0.6 -s 3 -d 4 -p cbr -e 500 -c 1 -i 96 -a 1 r -t 0.602 -s 3 -d 4 -p cbr -e 500 -c 1 -i 79 -a 1 + -t 0.602 -s 4 -d 6 -p cbr -e 500 -c 1 -i 79 -a 1 - -t 0.602 -s 4 -d 6 -p cbr -e 500 -c 1 -i 79 -a 1 h -t 0.602 -s 4 -d 6 -p cbr -e 500 -c 1 -i 79 -a 1 r -t 0.604 -s 1 -d 3 -p cbr -e 500 -c 1 -i 105 -a 1 + -t 0.604 -s 3 -d 4 -p cbr -e 500 -c 1 -i 105 -a 1 - -t 0.604 -s 3 -d 4 -p cbr -e 500 -c 1 -i 98 -a 1 h -t 0.604 -s 3 -d 4 -p cbr -e 500 -c 1 -i 98 -a 1 r -t 0.606 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 74 -a 1 r -t 0.606 -s 4 -d 6 -p cbr -e 500 -c 1 -i 75 -a 1 r -t 0.608 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 106 -a 1 + -t 0.608 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 106 -a 1 - -t 0.608 -s 3 -d 4 -p cbr -e 500 -c 1 -i 99 -a 1 h -t 0.608 -s 3 -d 4 -p cbr -e 500 -c 1 -i 99 -a 1 + -t 0.61 -s 1 -d 3 -p cbr -e 500 -c 1 -i 110 -a 1 - -t 0.61 -s 1 -d 3 -p cbr -e 500 -c 1 -i 110 -a 1 h -t 0.61 -s 1 -d 3 -p cbr -e 500 -c 1 -i 110 -a 1 r -t 0.61 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 80 -a 1 + -t 0.61 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 80 -a 1 - -t 0.61 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 80 -a 1 h -t 0.61 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 80 -a 1 - -t 0.612 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 100 -a 1 h -t 0.612 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 100 -a 1 r -t 0.614 -s 1 -d 3 -p cbr -e 500 -c 1 -i 107 -a 1 + -t 0.614 -s 3 -d 4 -p cbr -e 500 -c 1 -i 107 -a 1 r -t 0.614 -s 3 -d 4 -p cbr -e 500 -c 1 -i 81 -a 1 + -t 0.614 -s 4 -d 6 -p cbr -e 500 -c 1 -i 81 -a 1 - -t 0.614 -s 4 -d 6 -p cbr -e 500 -c 1 -i 81 -a 1 h -t 0.614 -s 4 -d 6 -p cbr -e 500 -c 1 -i 81 -a 1 r -t 0.618 -s 3 -d 4 -p cbr -e 500 -c 1 -i 83 -a 1 + -t 0.618 -s 4 -d 6 -p cbr -e 500 -c 1 -i 83 -a 1 r -t 0.618 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 76 -a 1 - -t 0.618 -s 4 -d 6 -p cbr -e 500 -c 1 -i 83 -a 1 h -t 0.618 -s 4 -d 6 -p cbr -e 500 -c 1 -i 83 -a 1 + -t 0.62 -s 1 -d 3 -p cbr -e 500 -c 1 -i 111 -a 1 - -t 0.62 -s 1 -d 3 -p cbr -e 500 -c 1 -i 111 -a 1 h -t 0.62 -s 1 -d 3 -p cbr -e 500 -c 1 -i 111 -a 1 + -t 0.62 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 112 -a 1 - -t 0.62 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 112 -a 1 h -t 0.62 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 112 -a 1 - -t 0.62 -s 3 -d 4 -p cbr -e 500 -c 1 -i 101 -a 1 h -t 0.62 -s 3 -d 4 -p cbr -e 500 -c 1 -i 101 -a 1 r -t 0.624 -s 1 -d 3 -p cbr -e 500 -c 1 -i 108 -a 1 + -t 0.624 -s 3 -d 4 -p cbr -e 500 -c 1 -i 108 -a 1 - -t 0.624 -s 3 -d 4 -p cbr -e 500 -c 1 -i 102 -a 1 h -t 0.624 -s 3 -d 4 -p cbr -e 500 -c 1 -i 102 -a 1 r -t 0.626 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 84 -a 1 + -t 0.626 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 84 -a 1 - -t 0.626 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 84 -a 1 h -t 0.626 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 84 -a 1 r -t 0.626 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 78 -a 1 r -t 0.626 -s 4 -d 6 -p cbr -e 500 -c 1 -i 79 -a 1 r -t 0.628 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 109 -a 1 + -t 0.628 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 109 -a 1 - -t 0.628 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 103 -a 1 h -t 0.628 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 103 -a 1 + -t 0.63 -s 1 -d 3 -p cbr -e 500 -c 1 -i 113 -a 1 - -t 0.63 -s 1 -d 3 -p cbr -e 500 -c 1 -i 113 -a 1 h -t 0.63 -s 1 -d 3 -p cbr -e 500 -c 1 -i 113 -a 1 r -t 0.634 -s 1 -d 3 -p cbr -e 500 -c 1 -i 110 -a 1 + -t 0.634 -s 3 -d 4 -p cbr -e 500 -c 1 -i 110 -a 1 r -t 0.634 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 85 -a 0 -S 0 -y {0 0} + -t 0.634 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 85 -a 0 -S 0 -y {0 0} - -t 0.634 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 85 -a 0 -S 0 -y {0 0} h -t 0.634 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 85 -a 0 -S 0 -y {-1 -1} - -t 0.636 -s 3 -d 4 -p cbr -e 500 -c 1 -i 104 -a 1 h -t 0.636 -s 3 -d 4 -p cbr -e 500 -c 1 -i 104 -a 1 r -t 0.638 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 80 -a 1 r -t 0.638 -s 4 -d 6 -p cbr -e 500 -c 1 -i 81 -a 1 + -t 0.64 -s 1 -d 3 -p cbr -e 500 -c 1 -i 114 -a 1 - -t 0.64 -s 1 -d 3 -p cbr -e 500 -c 1 -i 114 -a 1 h -t 0.64 -s 1 -d 3 -p cbr -e 500 -c 1 -i 114 -a 1 + -t 0.64 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 115 -a 1 - -t 0.64 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 115 -a 1 h -t 0.64 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 115 -a 1 - -t 0.64 -s 3 -d 4 -p cbr -e 500 -c 1 -i 105 -a 1 h -t 0.64 -s 3 -d 4 -p cbr -e 500 -c 1 -i 105 -a 1 r -t 0.642 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 90 -a 0 -S 0 -y {5 5} + -t 0.642 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 90 -a 0 -S 0 -y {5 5} - -t 0.642 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 90 -a 0 -S 0 -y {5 5} h -t 0.642 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 90 -a 0 -S 0 -y {-1 -1} r -t 0.642 -s 4 -d 6 -p cbr -e 500 -c 1 -i 83 -a 1 r -t 0.644 -s 1 -d 3 -p cbr -e 500 -c 1 -i 111 -a 1 + -t 0.644 -s 3 -d 4 -p cbr -e 500 -c 1 -i 111 -a 1 - -t 0.644 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 106 -a 1 h -t 0.644 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 106 -a 1 r -t 0.648 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 112 -a 1 + -t 0.648 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 112 -a 1 + -t 0.65 -s 1 -d 3 -p cbr -e 500 -c 1 -i 116 -a 1 - -t 0.65 -s 1 -d 3 -p cbr -e 500 -c 1 -i 116 -a 1 h -t 0.65 -s 1 -d 3 -p cbr -e 500 -c 1 -i 116 -a 1 r -t 0.65 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 92 -a 0 -S 0 -y {7 7} + -t 0.65 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 92 -a 0 -S 0 -y {7 7} - -t 0.65 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 92 -a 0 -S 0 -y {7 7} h -t 0.65 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 92 -a 0 -S 0 -y {-1 -1} - -t 0.652 -s 3 -d 4 -p cbr -e 500 -c 1 -i 107 -a 1 h -t 0.652 -s 3 -d 4 -p cbr -e 500 -c 1 -i 107 -a 1 r -t 0.654 -s 1 -d 3 -p cbr -e 500 -c 1 -i 113 -a 1 + -t 0.654 -s 3 -d 4 -p cbr -e 500 -c 1 -i 113 -a 1 r -t 0.654 -s 3 -d 4 -p cbr -e 500 -c 1 -i 96 -a 1 + -t 0.654 -s 4 -d 6 -p cbr -e 500 -c 1 -i 96 -a 1 - -t 0.654 -s 4 -d 6 -p cbr -e 500 -c 1 -i 96 -a 1 h -t 0.654 -s 4 -d 6 -p cbr -e 500 -c 1 -i 96 -a 1 r -t 0.654 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 84 -a 1 r -t 0.6556 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 85 -a 0 -S 0 -y {0 0} + -t 0.6556 -s 5 -d 4 -p ack -e 40 -c 0 -i 117 -a 0 -S 0 -y {0 0} - -t 0.6556 -s 5 -d 4 -p ack -e 40 -c 0 -i 117 -a 0 -S 0 -y {0 0} h -t 0.6556 -s 5 -d 4 -p ack -e 40 -c 0 -i 117 -a 0 -S 0 -y {-1 -1} - -t 0.656 -s 3 -d 4 -p cbr -e 500 -c 1 -i 108 -a 1 h -t 0.656 -s 3 -d 4 -p cbr -e 500 -c 1 -i 108 -a 1 r -t 0.658 -s 3 -d 4 -p cbr -e 500 -c 1 -i 98 -a 1 + -t 0.658 -s 4 -d 6 -p cbr -e 500 -c 1 -i 98 -a 1 - -t 0.658 -s 4 -d 6 -p cbr -e 500 -c 1 -i 98 -a 1 h -t 0.658 -s 4 -d 6 -p cbr -e 500 -c 1 -i 98 -a 1 v -t 0.66000000000000003 sim_annotation 0.66000000000000003 7 3 Ack_0s + -t 0.66 -s 1 -d 3 -p cbr -e 500 -c 1 -i 118 -a 1 - -t 0.66 -s 1 -d 3 -p cbr -e 500 -c 1 -i 118 -a 1 h -t 0.66 -s 1 -d 3 -p cbr -e 500 -c 1 -i 118 -a 1 + -t 0.66 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 119 -a 1 - -t 0.66 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 119 -a 1 h -t 0.66 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 119 -a 1 - -t 0.66 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 109 -a 1 h -t 0.66 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 109 -a 1 r -t 0.662 -s 3 -d 4 -p cbr -e 500 -c 1 -i 99 -a 1 + -t 0.662 -s 4 -d 6 -p cbr -e 500 -c 1 -i 99 -a 1 - -t 0.662 -s 4 -d 6 -p cbr -e 500 -c 1 -i 99 -a 1 h -t 0.662 -s 4 -d 6 -p cbr -e 500 -c 1 -i 99 -a 1 r -t 0.6636 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 90 -a 0 -S 0 -y {5 5} + -t 0.6636 -s 5 -d 4 -p ack -e 40 -c 0 -i 120 -a 0 -S 0 -y {0 0} - -t 0.6636 -s 5 -d 4 -p ack -e 40 -c 0 -i 120 -a 0 -S 0 -y {0 0} h -t 0.6636 -s 5 -d 4 -p ack -e 40 -c 0 -i 120 -a 0 -S 0 -y {-1 -1} r -t 0.664 -s 1 -d 3 -p cbr -e 500 -c 1 -i 114 -a 1 + -t 0.664 -s 3 -d 4 -p cbr -e 500 -c 1 -i 114 -a 1 r -t 0.668 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 115 -a 1 + -t 0.668 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 115 -a 1 - -t 0.668 -s 3 -d 4 -p cbr -e 500 -c 1 -i 110 -a 1 h -t 0.668 -s 3 -d 4 -p cbr -e 500 -c 1 -i 110 -a 1 + -t 0.67 -s 1 -d 3 -p cbr -e 500 -c 1 -i 121 -a 1 - -t 0.67 -s 1 -d 3 -p cbr -e 500 -c 1 -i 121 -a 1 h -t 0.67 -s 1 -d 3 -p cbr -e 500 -c 1 -i 121 -a 1 r -t 0.67 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 100 -a 1 + -t 0.67 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 100 -a 1 - -t 0.67 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 100 -a 1 h -t 0.67 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 100 -a 1 r -t 0.6716 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 92 -a 0 -S 0 -y {7 7} + -t 0.6716 -s 5 -d 4 -p ack -e 40 -c 0 -i 122 -a 0 -S 0 -y {0 0} - -t 0.6716 -s 5 -d 4 -p ack -e 40 -c 0 -i 122 -a 0 -S 0 -y {0 0} h -t 0.6716 -s 5 -d 4 -p ack -e 40 -c 0 -i 122 -a 0 -S 0 -y {-1 -1} - -t 0.672 -s 3 -d 4 -p cbr -e 500 -c 1 -i 111 -a 1 h -t 0.672 -s 3 -d 4 -p cbr -e 500 -c 1 -i 111 -a 1 r -t 0.674 -s 1 -d 3 -p cbr -e 500 -c 1 -i 116 -a 1 + -t 0.674 -s 3 -d 4 -p cbr -e 500 -c 1 -i 116 -a 1 r -t 0.674 -s 3 -d 4 -p cbr -e 500 -c 1 -i 101 -a 1 + -t 0.674 -s 4 -d 6 -p cbr -e 500 -c 1 -i 101 -a 1 - -t 0.674 -s 4 -d 6 -p cbr -e 500 -c 1 -i 101 -a 1 h -t 0.674 -s 4 -d 6 -p cbr -e 500 -c 1 -i 101 -a 1 r -t 0.675664 -s 5 -d 4 -p ack -e 40 -c 0 -i 117 -a 0 -S 0 -y {0 0} + -t 0.675664 -s 4 -d 3 -p ack -e 40 -c 0 -i 117 -a 0 -S 0 -y {0 0} - -t 0.675664 -s 4 -d 3 -p ack -e 40 -c 0 -i 117 -a 0 -S 0 -y {0 0} h -t 0.675664 -s 4 -d 3 -p ack -e 40 -c 0 -i 117 -a 0 -S 0 -y {-1 -1} - -t 0.676 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 112 -a 1 h -t 0.676 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 112 -a 1 r -t 0.678 -s 3 -d 4 -p cbr -e 500 -c 1 -i 102 -a 1 + -t 0.678 -s 4 -d 6 -p cbr -e 500 -c 1 -i 102 -a 1 r -t 0.678 -s 4 -d 6 -p cbr -e 500 -c 1 -i 96 -a 1 - -t 0.678 -s 4 -d 6 -p cbr -e 500 -c 1 -i 102 -a 1 h -t 0.678 -s 4 -d 6 -p cbr -e 500 -c 1 -i 102 -a 1 + -t 0.68 -s 1 -d 3 -p cbr -e 500 -c 1 -i 123 -a 1 - -t 0.68 -s 1 -d 3 -p cbr -e 500 -c 1 -i 123 -a 1 h -t 0.68 -s 1 -d 3 -p cbr -e 500 -c 1 -i 123 -a 1 + -t 0.68 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 124 -a 1 - -t 0.68 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 124 -a 1 h -t 0.68 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 124 -a 1 r -t 0.682 -s 4 -d 6 -p cbr -e 500 -c 1 -i 98 -a 1 r -t 0.683664 -s 5 -d 4 -p ack -e 40 -c 0 -i 120 -a 0 -S 0 -y {0 0} + -t 0.683664 -s 4 -d 3 -p ack -e 40 -c 0 -i 120 -a 0 -S 0 -y {0 0} - -t 0.683664 -s 4 -d 3 -p ack -e 40 -c 0 -i 120 -a 0 -S 0 -y {0 0} h -t 0.683664 -s 4 -d 3 -p ack -e 40 -c 0 -i 120 -a 0 -S 0 -y {-1 -1} r -t 0.684 -s 1 -d 3 -p cbr -e 500 -c 1 -i 118 -a 1 + -t 0.684 -s 3 -d 4 -p cbr -e 500 -c 1 -i 118 -a 1 - -t 0.684 -s 3 -d 4 -p cbr -e 500 -c 1 -i 113 -a 1 h -t 0.684 -s 3 -d 4 -p cbr -e 500 -c 1 -i 113 -a 1 r -t 0.686 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 103 -a 1 + -t 0.686 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 103 -a 1 - -t 0.686 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 103 -a 1 h -t 0.686 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 103 -a 1 r -t 0.686 -s 4 -d 6 -p cbr -e 500 -c 1 -i 99 -a 1 r -t 0.688 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 119 -a 1 + -t 0.688 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 119 -a 1 - -t 0.688 -s 3 -d 4 -p cbr -e 500 -c 1 -i 114 -a 1 h -t 0.688 -s 3 -d 4 -p cbr -e 500 -c 1 -i 114 -a 1 + -t 0.69 -s 1 -d 3 -p cbr -e 500 -c 1 -i 125 -a 1 - -t 0.69 -s 1 -d 3 -p cbr -e 500 -c 1 -i 125 -a 1 h -t 0.69 -s 1 -d 3 -p cbr -e 500 -c 1 -i 125 -a 1 r -t 0.69 -s 3 -d 4 -p cbr -e 500 -c 1 -i 104 -a 1 + -t 0.69 -s 4 -d 6 -p cbr -e 500 -c 1 -i 104 -a 1 - -t 0.69 -s 4 -d 6 -p cbr -e 500 -c 1 -i 104 -a 1 h -t 0.69 -s 4 -d 6 -p cbr -e 500 -c 1 -i 104 -a 1 r -t 0.691664 -s 5 -d 4 -p ack -e 40 -c 0 -i 122 -a 0 -S 0 -y {0 0} + -t 0.691664 -s 4 -d 3 -p ack -e 40 -c 0 -i 122 -a 0 -S 0 -y {0 0} - -t 0.691664 -s 4 -d 3 -p ack -e 40 -c 0 -i 122 -a 0 -S 0 -y {0 0} h -t 0.691664 -s 4 -d 3 -p ack -e 40 -c 0 -i 122 -a 0 -S 0 -y {-1 -1} - -t 0.692 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 115 -a 1 h -t 0.692 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 115 -a 1 r -t 0.694 -s 1 -d 3 -p cbr -e 500 -c 1 -i 121 -a 1 + -t 0.694 -s 3 -d 4 -p cbr -e 500 -c 1 -i 121 -a 1 r -t 0.694 -s 3 -d 4 -p cbr -e 500 -c 1 -i 105 -a 1 + -t 0.694 -s 4 -d 6 -p cbr -e 500 -c 1 -i 105 -a 1 - -t 0.694 -s 4 -d 6 -p cbr -e 500 -c 1 -i 105 -a 1 h -t 0.694 -s 4 -d 6 -p cbr -e 500 -c 1 -i 105 -a 1 r -t 0.698 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 100 -a 1 r -t 0.698 -s 4 -d 6 -p cbr -e 500 -c 1 -i 101 -a 1 + -t 0.7 -s 1 -d 3 -p cbr -e 500 -c 1 -i 126 -a 1 - -t 0.7 -s 1 -d 3 -p cbr -e 500 -c 1 -i 126 -a 1 h -t 0.7 -s 1 -d 3 -p cbr -e 500 -c 1 -i 126 -a 1 + -t 0.7 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 127 -a 1 - -t 0.7 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 127 -a 1 h -t 0.7 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 127 -a 1 - -t 0.7 -s 3 -d 4 -p cbr -e 500 -c 1 -i 116 -a 1 h -t 0.7 -s 3 -d 4 -p cbr -e 500 -c 1 -i 116 -a 1 r -t 0.702 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 106 -a 1 + -t 0.702 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 106 -a 1 - -t 0.702 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 106 -a 1 h -t 0.702 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 106 -a 1 r -t 0.702 -s 4 -d 6 -p cbr -e 500 -c 1 -i 102 -a 1 r -t 0.704 -s 1 -d 3 -p cbr -e 500 -c 1 -i 123 -a 1 + -t 0.704 -s 3 -d 4 -p cbr -e 500 -c 1 -i 123 -a 1 - -t 0.704 -s 3 -d 4 -p cbr -e 500 -c 1 -i 118 -a 1 h -t 0.704 -s 3 -d 4 -p cbr -e 500 -c 1 -i 118 -a 1 r -t 0.706 -s 3 -d 4 -p cbr -e 500 -c 1 -i 107 -a 1 + -t 0.706 -s 4 -d 6 -p cbr -e 500 -c 1 -i 107 -a 1 - -t 0.706 -s 4 -d 6 -p cbr -e 500 -c 1 -i 107 -a 1 h -t 0.706 -s 4 -d 6 -p cbr -e 500 -c 1 -i 107 -a 1 r -t 0.708 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 124 -a 1 + -t 0.708 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 124 -a 1 - -t 0.708 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 119 -a 1 h -t 0.708 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 119 -a 1 + -t 0.71 -s 1 -d 3 -p cbr -e 500 -c 1 -i 128 -a 1 - -t 0.71 -s 1 -d 3 -p cbr -e 500 -c 1 -i 128 -a 1 h -t 0.71 -s 1 -d 3 -p cbr -e 500 -c 1 -i 128 -a 1 r -t 0.71 -s 3 -d 4 -p cbr -e 500 -c 1 -i 108 -a 1 + -t 0.71 -s 4 -d 6 -p cbr -e 500 -c 1 -i 108 -a 1 - -t 0.71 -s 4 -d 6 -p cbr -e 500 -c 1 -i 108 -a 1 h -t 0.71 -s 4 -d 6 -p cbr -e 500 -c 1 -i 108 -a 1 r -t 0.714 -s 1 -d 3 -p cbr -e 500 -c 1 -i 125 -a 1 + -t 0.714 -s 3 -d 4 -p cbr -e 500 -c 1 -i 125 -a 1 r -t 0.714 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 103 -a 1 r -t 0.714 -s 4 -d 6 -p cbr -e 500 -c 1 -i 104 -a 1 - -t 0.716 -s 3 -d 4 -p cbr -e 500 -c 1 -i 121 -a 1 h -t 0.716 -s 3 -d 4 -p cbr -e 500 -c 1 -i 121 -a 1 r -t 0.718 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 109 -a 1 + -t 0.718 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 109 -a 1 - -t 0.718 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 109 -a 1 h -t 0.718 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 109 -a 1 r -t 0.718 -s 4 -d 6 -p cbr -e 500 -c 1 -i 105 -a 1 + -t 0.72 -s 1 -d 3 -p cbr -e 500 -c 1 -i 129 -a 1 - -t 0.72 -s 1 -d 3 -p cbr -e 500 -c 1 -i 129 -a 1 h -t 0.72 -s 1 -d 3 -p cbr -e 500 -c 1 -i 129 -a 1 + -t 0.72 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 130 -a 1 - -t 0.72 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 130 -a 1 h -t 0.72 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 130 -a 1 - -t 0.72 -s 3 -d 4 -p cbr -e 500 -c 1 -i 123 -a 1 h -t 0.72 -s 3 -d 4 -p cbr -e 500 -c 1 -i 123 -a 1 r -t 0.722 -s 3 -d 4 -p cbr -e 500 -c 1 -i 110 -a 1 + -t 0.722 -s 4 -d 6 -p cbr -e 500 -c 1 -i 110 -a 1 - -t 0.722 -s 4 -d 6 -p cbr -e 500 -c 1 -i 110 -a 1 h -t 0.722 -s 4 -d 6 -p cbr -e 500 -c 1 -i 110 -a 1 r -t 0.724 -s 1 -d 3 -p cbr -e 500 -c 1 -i 126 -a 1 + -t 0.724 -s 3 -d 4 -p cbr -e 500 -c 1 -i 126 -a 1 - -t 0.724 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 124 -a 1 h -t 0.724 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 124 -a 1 r -t 0.725984 -s 4 -d 3 -p ack -e 40 -c 0 -i 117 -a 0 -S 0 -y {0 0} + -t 0.725984 -s 3 -d 0 -p ack -e 40 -c 0 -i 117 -a 0 -S 0 -y {0 0} - -t 0.725984 -s 3 -d 0 -p ack -e 40 -c 0 -i 117 -a 0 -S 0 -f 0 -m 1 -y {0 0} h -t 0.725984 -s 3 -d 0 -p ack -e 40 -c 0 -i 117 -a 0 -S 0 -y {-1 -1} r -t 0.726 -s 3 -d 4 -p cbr -e 500 -c 1 -i 111 -a 1 + -t 0.726 -s 4 -d 6 -p cbr -e 500 -c 1 -i 111 -a 1 - -t 0.726 -s 4 -d 6 -p cbr -e 500 -c 1 -i 111 -a 1 h -t 0.726 -s 4 -d 6 -p cbr -e 500 -c 1 -i 111 -a 1 r -t 0.728 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 127 -a 1 + -t 0.728 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 127 -a 1 + -t 0.73 -s 1 -d 3 -p cbr -e 500 -c 1 -i 131 -a 1 - -t 0.73 -s 1 -d 3 -p cbr -e 500 -c 1 -i 131 -a 1 h -t 0.73 -s 1 -d 3 -p cbr -e 500 -c 1 -i 131 -a 1 r -t 0.73 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 106 -a 1 r -t 0.73 -s 4 -d 6 -p cbr -e 500 -c 1 -i 107 -a 1 - -t 0.732 -s 3 -d 4 -p cbr -e 500 -c 1 -i 125 -a 1 h -t 0.732 -s 3 -d 4 -p cbr -e 500 -c 1 -i 125 -a 1 r -t 0.733984 -s 4 -d 3 -p ack -e 40 -c 0 -i 120 -a 0 -S 0 -y {0 0} + -t 0.733984 -s 3 -d 0 -p ack -e 40 -c 0 -i 120 -a 0 -S 0 -y {0 0} - -t 0.733984 -s 3 -d 0 -p ack -e 40 -c 0 -i 120 -a 0 -S 0 -f 0 -m 1 -y {0 0} h -t 0.733984 -s 3 -d 0 -p ack -e 40 -c 0 -i 120 -a 0 -S 0 -y {-1 -1} r -t 0.734 -s 1 -d 3 -p cbr -e 500 -c 1 -i 128 -a 1 + -t 0.734 -s 3 -d 4 -p cbr -e 500 -c 1 -i 128 -a 1 r -t 0.734 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 112 -a 1 + -t 0.734 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 112 -a 1 - -t 0.734 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 112 -a 1 h -t 0.734 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 112 -a 1 r -t 0.734 -s 4 -d 6 -p cbr -e 500 -c 1 -i 108 -a 1 - -t 0.736 -s 3 -d 4 -p cbr -e 500 -c 1 -i 126 -a 1 h -t 0.736 -s 3 -d 4 -p cbr -e 500 -c 1 -i 126 -a 1 r -t 0.738 -s 3 -d 4 -p cbr -e 500 -c 1 -i 113 -a 1 + -t 0.738 -s 4 -d 6 -p cbr -e 500 -c 1 -i 113 -a 1 - -t 0.738 -s 4 -d 6 -p cbr -e 500 -c 1 -i 113 -a 1 h -t 0.738 -s 4 -d 6 -p cbr -e 500 -c 1 -i 113 -a 1 + -t 0.74 -s 1 -d 3 -p cbr -e 500 -c 1 -i 132 -a 1 - -t 0.74 -s 1 -d 3 -p cbr -e 500 -c 1 -i 132 -a 1 h -t 0.74 -s 1 -d 3 -p cbr -e 500 -c 1 -i 132 -a 1 + -t 0.74 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 133 -a 1 - -t 0.74 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 133 -a 1 h -t 0.74 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 133 -a 1 - -t 0.74 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 127 -a 1 h -t 0.74 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 127 -a 1 r -t 0.741984 -s 4 -d 3 -p ack -e 40 -c 0 -i 122 -a 0 -S 0 -y {0 0} + -t 0.741984 -s 3 -d 0 -p ack -e 40 -c 0 -i 122 -a 0 -S 0 -y {0 0} - -t 0.741984 -s 3 -d 0 -p ack -e 40 -c 0 -i 122 -a 0 -S 0 -f 0 -m 1 -y {0 0} h -t 0.741984 -s 3 -d 0 -p ack -e 40 -c 0 -i 122 -a 0 -S 0 -y {-1 -1} r -t 0.742 -s 3 -d 4 -p cbr -e 500 -c 1 -i 114 -a 1 + -t 0.742 -s 4 -d 6 -p cbr -e 500 -c 1 -i 114 -a 1 - -t 0.742 -s 4 -d 6 -p cbr -e 500 -c 1 -i 114 -a 1 h -t 0.742 -s 4 -d 6 -p cbr -e 500 -c 1 -i 114 -a 1 r -t 0.744 -s 1 -d 3 -p cbr -e 500 -c 1 -i 129 -a 1 + -t 0.744 -s 3 -d 4 -p cbr -e 500 -c 1 -i 129 -a 1 r -t 0.746 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 109 -a 1 r -t 0.746 -s 4 -d 6 -p cbr -e 500 -c 1 -i 110 -a 1 r -t 0.746048 -s 3 -d 0 -p ack -e 40 -c 0 -i 117 -a 0 -S 0 -y {0 0} + -t 0.746048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 134 -a 0 -S 0 -f 0 -m 0 -y {8 8} - -t 0.746048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 134 -a 0 -S 0 -y {8 8} h -t 0.746048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 134 -a 0 -S 0 -y {-1 -1} r -t 0.748 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 130 -a 1 + -t 0.748 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 130 -a 1 - -t 0.748 -s 3 -d 4 -p cbr -e 500 -c 1 -i 128 -a 1 h -t 0.748 -s 3 -d 4 -p cbr -e 500 -c 1 -i 128 -a 1 v -t 0.75 sim_annotation 0.75 8 Send Packet_8 + -t 0.75 -s 1 -d 3 -p cbr -e 500 -c 1 -i 135 -a 1 - -t 0.75 -s 1 -d 3 -p cbr -e 500 -c 1 -i 135 -a 1 h -t 0.75 -s 1 -d 3 -p cbr -e 500 -c 1 -i 135 -a 1 r -t 0.75 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 115 -a 1 + -t 0.75 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 115 -a 1 - -t 0.75 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 115 -a 1 h -t 0.75 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 115 -a 1 r -t 0.75 -s 4 -d 6 -p cbr -e 500 -c 1 -i 111 -a 1 - -t 0.752 -s 3 -d 4 -p cbr -e 500 -c 1 -i 129 -a 1 h -t 0.752 -s 3 -d 4 -p cbr -e 500 -c 1 -i 129 -a 1 r -t 0.754 -s 1 -d 3 -p cbr -e 500 -c 1 -i 131 -a 1 + -t 0.754 -s 3 -d 4 -p cbr -e 500 -c 1 -i 131 -a 1 r -t 0.754 -s 3 -d 4 -p cbr -e 500 -c 1 -i 116 -a 1 + -t 0.754 -s 4 -d 6 -p cbr -e 500 -c 1 -i 116 -a 1 - -t 0.754 -s 4 -d 6 -p cbr -e 500 -c 1 -i 116 -a 1 h -t 0.754 -s 4 -d 6 -p cbr -e 500 -c 1 -i 116 -a 1 r -t 0.754048 -s 3 -d 0 -p ack -e 40 -c 0 -i 120 -a 0 -S 0 -y {0 0} - -t 0.756 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 130 -a 1 h -t 0.756 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 130 -a 1 r -t 0.758 -s 3 -d 4 -p cbr -e 500 -c 1 -i 118 -a 1 + -t 0.758 -s 4 -d 6 -p cbr -e 500 -c 1 -i 118 -a 1 - -t 0.758 -s 4 -d 6 -p cbr -e 500 -c 1 -i 118 -a 1 h -t 0.758 -s 4 -d 6 -p cbr -e 500 -c 1 -i 118 -a 1 + -t 0.76 -s 1 -d 3 -p cbr -e 500 -c 1 -i 136 -a 1 - -t 0.76 -s 1 -d 3 -p cbr -e 500 -c 1 -i 136 -a 1 h -t 0.76 -s 1 -d 3 -p cbr -e 500 -c 1 -i 136 -a 1 + -t 0.76 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 137 -a 1 - -t 0.76 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 137 -a 1 h -t 0.76 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 137 -a 1 r -t 0.762 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 112 -a 1 r -t 0.762 -s 4 -d 6 -p cbr -e 500 -c 1 -i 113 -a 1 r -t 0.762048 -s 3 -d 0 -p ack -e 40 -c 0 -i 122 -a 0 -S 0 -y {0 0} r -t 0.764 -s 1 -d 3 -p cbr -e 500 -c 1 -i 132 -a 1 + -t 0.764 -s 3 -d 4 -p cbr -e 500 -c 1 -i 132 -a 1 - -t 0.764 -s 3 -d 4 -p cbr -e 500 -c 1 -i 131 -a 1 h -t 0.764 -s 3 -d 4 -p cbr -e 500 -c 1 -i 131 -a 1 r -t 0.766 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 119 -a 1 + -t 0.766 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 119 -a 1 - -t 0.766 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 119 -a 1 h -t 0.766 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 119 -a 1 r -t 0.766 -s 4 -d 6 -p cbr -e 500 -c 1 -i 114 -a 1 r -t 0.767648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 134 -a 0 -S 0 -y {8 8} + -t 0.767648 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 134 -a 0 -S 0 -y {8 8} r -t 0.768 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 133 -a 1 + -t 0.768 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 133 -a 1 - -t 0.768 -s 3 -d 4 -p cbr -e 500 -c 1 -i 132 -a 1 h -t 0.768 -s 3 -d 4 -p cbr -e 500 -c 1 -i 132 -a 1 + -t 0.77 -s 1 -d 3 -p cbr -e 500 -c 1 -i 138 -a 1 - -t 0.77 -s 1 -d 3 -p cbr -e 500 -c 1 -i 138 -a 1 h -t 0.77 -s 1 -d 3 -p cbr -e 500 -c 1 -i 138 -a 1 r -t 0.77 -s 3 -d 4 -p cbr -e 500 -c 1 -i 121 -a 1 + -t 0.77 -s 4 -d 6 -p cbr -e 500 -c 1 -i 121 -a 1 - -t 0.77 -s 4 -d 6 -p cbr -e 500 -c 1 -i 121 -a 1 h -t 0.77 -s 4 -d 6 -p cbr -e 500 -c 1 -i 121 -a 1 - -t 0.772 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 134 -a 0 -S 0 -y {8 8} h -t 0.772 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 134 -a 0 -S 0 -y {-1 -1} r -t 0.774 -s 1 -d 3 -p cbr -e 500 -c 1 -i 135 -a 1 + -t 0.774 -s 3 -d 4 -p cbr -e 500 -c 1 -i 135 -a 1 r -t 0.774 -s 3 -d 4 -p cbr -e 500 -c 1 -i 123 -a 1 + -t 0.774 -s 4 -d 6 -p cbr -e 500 -c 1 -i 123 -a 1 - -t 0.774 -s 4 -d 6 -p cbr -e 500 -c 1 -i 123 -a 1 h -t 0.774 -s 4 -d 6 -p cbr -e 500 -c 1 -i 123 -a 1 r -t 0.778 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 115 -a 1 r -t 0.778 -s 4 -d 6 -p cbr -e 500 -c 1 -i 116 -a 1 + -t 0.78 -s 1 -d 3 -p cbr -e 500 -c 1 -i 139 -a 1 - -t 0.78 -s 1 -d 3 -p cbr -e 500 -c 1 -i 139 -a 1 h -t 0.78 -s 1 -d 3 -p cbr -e 500 -c 1 -i 139 -a 1 + -t 0.78 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 140 -a 1 - -t 0.78 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 140 -a 1 h -t 0.78 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 140 -a 1 - -t 0.78 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 133 -a 1 h -t 0.78 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 133 -a 1 r -t 0.782 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 124 -a 1 + -t 0.782 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 124 -a 1 - -t 0.782 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 124 -a 1 h -t 0.782 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 124 -a 1 r -t 0.782 -s 4 -d 6 -p cbr -e 500 -c 1 -i 118 -a 1 r -t 0.784 -s 1 -d 3 -p cbr -e 500 -c 1 -i 136 -a 1 + -t 0.784 -s 3 -d 4 -p cbr -e 500 -c 1 -i 136 -a 1 r -t 0.786 -s 3 -d 4 -p cbr -e 500 -c 1 -i 125 -a 1 + -t 0.786 -s 4 -d 6 -p cbr -e 500 -c 1 -i 125 -a 1 - -t 0.786 -s 4 -d 6 -p cbr -e 500 -c 1 -i 125 -a 1 h -t 0.786 -s 4 -d 6 -p cbr -e 500 -c 1 -i 125 -a 1 r -t 0.788 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 137 -a 1 + -t 0.788 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 137 -a 1 - -t 0.788 -s 3 -d 4 -p cbr -e 500 -c 1 -i 135 -a 1 h -t 0.788 -s 3 -d 4 -p cbr -e 500 -c 1 -i 135 -a 1 + -t 0.79 -s 1 -d 3 -p cbr -e 500 -c 1 -i 141 -a 1 - -t 0.79 -s 1 -d 3 -p cbr -e 500 -c 1 -i 141 -a 1 h -t 0.79 -s 1 -d 3 -p cbr -e 500 -c 1 -i 141 -a 1 r -t 0.79 -s 3 -d 4 -p cbr -e 500 -c 1 -i 126 -a 1 + -t 0.79 -s 4 -d 6 -p cbr -e 500 -c 1 -i 126 -a 1 - -t 0.79 -s 4 -d 6 -p cbr -e 500 -c 1 -i 126 -a 1 h -t 0.79 -s 4 -d 6 -p cbr -e 500 -c 1 -i 126 -a 1 - -t 0.792 -s 3 -d 4 -p cbr -e 500 -c 1 -i 136 -a 1 h -t 0.792 -s 3 -d 4 -p cbr -e 500 -c 1 -i 136 -a 1 r -t 0.794 -s 1 -d 3 -p cbr -e 500 -c 1 -i 138 -a 1 + -t 0.794 -s 3 -d 4 -p cbr -e 500 -c 1 -i 138 -a 1 r -t 0.794 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 119 -a 1 r -t 0.794 -s 4 -d 6 -p cbr -e 500 -c 1 -i 121 -a 1 - -t 0.796 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 137 -a 1 h -t 0.796 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 137 -a 1 r -t 0.798 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 127 -a 1 + -t 0.798 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 127 -a 1 - -t 0.798 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 127 -a 1 h -t 0.798 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 127 -a 1 r -t 0.798 -s 4 -d 6 -p cbr -e 500 -c 1 -i 123 -a 1 + -t 0.8 -s 1 -d 3 -p cbr -e 500 -c 1 -i 142 -a 1 - -t 0.8 -s 1 -d 3 -p cbr -e 500 -c 1 -i 142 -a 1 h -t 0.8 -s 1 -d 3 -p cbr -e 500 -c 1 -i 142 -a 1 + -t 0.8 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 143 -a 1 - -t 0.8 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 143 -a 1 h -t 0.8 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 143 -a 1 r -t 0.802 -s 3 -d 4 -p cbr -e 500 -c 1 -i 128 -a 1 + -t 0.802 -s 4 -d 6 -p cbr -e 500 -c 1 -i 128 -a 1 - -t 0.802 -s 4 -d 6 -p cbr -e 500 -c 1 -i 128 -a 1 h -t 0.802 -s 4 -d 6 -p cbr -e 500 -c 1 -i 128 -a 1 r -t 0.804 -s 1 -d 3 -p cbr -e 500 -c 1 -i 139 -a 1 + -t 0.804 -s 3 -d 4 -p cbr -e 500 -c 1 -i 139 -a 1 - -t 0.804 -s 3 -d 4 -p cbr -e 500 -c 1 -i 138 -a 1 h -t 0.804 -s 3 -d 4 -p cbr -e 500 -c 1 -i 138 -a 1 r -t 0.806 -s 3 -d 4 -p cbr -e 500 -c 1 -i 129 -a 1 + -t 0.806 -s 4 -d 6 -p cbr -e 500 -c 1 -i 129 -a 1 - -t 0.806 -s 4 -d 6 -p cbr -e 500 -c 1 -i 129 -a 1 h -t 0.806 -s 4 -d 6 -p cbr -e 500 -c 1 -i 129 -a 1 r -t 0.808 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 140 -a 1 + -t 0.808 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 140 -a 1 - -t 0.808 -s 3 -d 4 -p cbr -e 500 -c 1 -i 139 -a 1 h -t 0.808 -s 3 -d 4 -p cbr -e 500 -c 1 -i 139 -a 1 + -t 0.81 -s 1 -d 3 -p cbr -e 500 -c 1 -i 144 -a 1 - -t 0.81 -s 1 -d 3 -p cbr -e 500 -c 1 -i 144 -a 1 h -t 0.81 -s 1 -d 3 -p cbr -e 500 -c 1 -i 144 -a 1 r -t 0.81 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 124 -a 1 r -t 0.81 -s 4 -d 6 -p cbr -e 500 -c 1 -i 125 -a 1 - -t 0.812 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 140 -a 1 h -t 0.812 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 140 -a 1 r -t 0.814 -s 1 -d 3 -p cbr -e 500 -c 1 -i 141 -a 1 + -t 0.814 -s 3 -d 4 -p cbr -e 500 -c 1 -i 141 -a 1 r -t 0.814 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 130 -a 1 + -t 0.814 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 130 -a 1 - -t 0.814 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 130 -a 1 h -t 0.814 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 130 -a 1 r -t 0.814 -s 4 -d 6 -p cbr -e 500 -c 1 -i 126 -a 1 r -t 0.818 -s 3 -d 4 -p cbr -e 500 -c 1 -i 131 -a 1 + -t 0.818 -s 4 -d 6 -p cbr -e 500 -c 1 -i 131 -a 1 - -t 0.818 -s 4 -d 6 -p cbr -e 500 -c 1 -i 131 -a 1 h -t 0.818 -s 4 -d 6 -p cbr -e 500 -c 1 -i 131 -a 1 + -t 0.82 -s 1 -d 3 -p cbr -e 500 -c 1 -i 145 -a 1 - -t 0.82 -s 1 -d 3 -p cbr -e 500 -c 1 -i 145 -a 1 h -t 0.82 -s 1 -d 3 -p cbr -e 500 -c 1 -i 145 -a 1 + -t 0.82 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 146 -a 1 - -t 0.82 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 146 -a 1 h -t 0.82 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 146 -a 1 - -t 0.82 -s 3 -d 4 -p cbr -e 500 -c 1 -i 141 -a 1 h -t 0.82 -s 3 -d 4 -p cbr -e 500 -c 1 -i 141 -a 1 r -t 0.822 -s 3 -d 4 -p cbr -e 500 -c 1 -i 132 -a 1 + -t 0.822 -s 4 -d 6 -p cbr -e 500 -c 1 -i 132 -a 1 - -t 0.822 -s 4 -d 6 -p cbr -e 500 -c 1 -i 132 -a 1 h -t 0.822 -s 4 -d 6 -p cbr -e 500 -c 1 -i 132 -a 1 r -t 0.824 -s 1 -d 3 -p cbr -e 500 -c 1 -i 142 -a 1 + -t 0.824 -s 3 -d 4 -p cbr -e 500 -c 1 -i 142 -a 1 - -t 0.824 -s 3 -d 4 -p cbr -e 500 -c 1 -i 142 -a 1 h -t 0.824 -s 3 -d 4 -p cbr -e 500 -c 1 -i 142 -a 1 r -t 0.826 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 127 -a 1 r -t 0.826 -s 4 -d 6 -p cbr -e 500 -c 1 -i 128 -a 1 r -t 0.828 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 143 -a 1 + -t 0.828 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 143 -a 1 - -t 0.828 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 143 -a 1 h -t 0.828 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 143 -a 1 + -t 0.83 -s 1 -d 3 -p cbr -e 500 -c 1 -i 147 -a 1 - -t 0.83 -s 1 -d 3 -p cbr -e 500 -c 1 -i 147 -a 1 h -t 0.83 -s 1 -d 3 -p cbr -e 500 -c 1 -i 147 -a 1 r -t 0.83 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 134 -a 0 -S 0 -y {8 8} + -t 0.83 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 134 -a 0 -S 0 -y {8 8} - -t 0.83 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 134 -a 0 -S 0 -y {8 8} h -t 0.83 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 134 -a 0 -S 0 -y {-1 -1} r -t 0.83 -s 4 -d 6 -p cbr -e 500 -c 1 -i 129 -a 1 r -t 0.834 -s 1 -d 3 -p cbr -e 500 -c 1 -i 144 -a 1 + -t 0.834 -s 3 -d 4 -p cbr -e 500 -c 1 -i 144 -a 1 - -t 0.836 -s 3 -d 4 -p cbr -e 500 -c 1 -i 144 -a 1 h -t 0.836 -s 3 -d 4 -p cbr -e 500 -c 1 -i 144 -a 1 r -t 0.838 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 133 -a 1 + -t 0.838 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 133 -a 1 - -t 0.838 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 133 -a 1 h -t 0.838 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 133 -a 1 + -t 0.84 -s 1 -d 3 -p cbr -e 500 -c 1 -i 148 -a 1 - -t 0.84 -s 1 -d 3 -p cbr -e 500 -c 1 -i 148 -a 1 h -t 0.84 -s 1 -d 3 -p cbr -e 500 -c 1 -i 148 -a 1 + -t 0.84 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 149 -a 1 - -t 0.84 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 149 -a 1 h -t 0.84 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 149 -a 1 r -t 0.842 -s 3 -d 4 -p cbr -e 500 -c 1 -i 135 -a 1 + -t 0.842 -s 4 -d 6 -p cbr -e 500 -c 1 -i 135 -a 1 - -t 0.842 -s 4 -d 6 -p cbr -e 500 -c 1 -i 135 -a 1 h -t 0.842 -s 4 -d 6 -p cbr -e 500 -c 1 -i 135 -a 1 r -t 0.842 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 130 -a 1 r -t 0.842 -s 4 -d 6 -p cbr -e 500 -c 1 -i 131 -a 1 r -t 0.844 -s 1 -d 3 -p cbr -e 500 -c 1 -i 145 -a 1 + -t 0.844 -s 3 -d 4 -p cbr -e 500 -c 1 -i 145 -a 1 - -t 0.844 -s 3 -d 4 -p cbr -e 500 -c 1 -i 145 -a 1 h -t 0.844 -s 3 -d 4 -p cbr -e 500 -c 1 -i 145 -a 1 r -t 0.846 -s 3 -d 4 -p cbr -e 500 -c 1 -i 136 -a 1 + -t 0.846 -s 4 -d 6 -p cbr -e 500 -c 1 -i 136 -a 1 r -t 0.846 -s 4 -d 6 -p cbr -e 500 -c 1 -i 132 -a 1 - -t 0.846 -s 4 -d 6 -p cbr -e 500 -c 1 -i 136 -a 1 h -t 0.846 -s 4 -d 6 -p cbr -e 500 -c 1 -i 136 -a 1 r -t 0.848 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 146 -a 1 + -t 0.848 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 146 -a 1 - -t 0.848 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 146 -a 1 h -t 0.848 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 146 -a 1 v -t 0.84999999999999998 sim_annotation 0.84999999999999998 9 Ack_0 + -t 0.85 -s 1 -d 3 -p cbr -e 500 -c 1 -i 150 -a 1 - -t 0.85 -s 1 -d 3 -p cbr -e 500 -c 1 -i 150 -a 1 h -t 0.85 -s 1 -d 3 -p cbr -e 500 -c 1 -i 150 -a 1 r -t 0.8516 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 134 -a 0 -S 0 -y {8 8} + -t 0.8516 -s 5 -d 4 -p ack -e 40 -c 0 -i 151 -a 0 -S 0 -y {0 0} - -t 0.8516 -s 5 -d 4 -p ack -e 40 -c 0 -i 151 -a 0 -S 0 -y {0 0} h -t 0.8516 -s 5 -d 4 -p ack -e 40 -c 0 -i 151 -a 0 -S 0 -y {-1 -1} r -t 0.854 -s 1 -d 3 -p cbr -e 500 -c 1 -i 147 -a 1 + -t 0.854 -s 3 -d 4 -p cbr -e 500 -c 1 -i 147 -a 1 r -t 0.854 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 137 -a 1 + -t 0.854 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 137 -a 1 - -t 0.854 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 137 -a 1 h -t 0.854 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 137 -a 1 - -t 0.856 -s 3 -d 4 -p cbr -e 500 -c 1 -i 147 -a 1 h -t 0.856 -s 3 -d 4 -p cbr -e 500 -c 1 -i 147 -a 1 r -t 0.858 -s 3 -d 4 -p cbr -e 500 -c 1 -i 138 -a 1 + -t 0.858 -s 4 -d 6 -p cbr -e 500 -c 1 -i 138 -a 1 - -t 0.858 -s 4 -d 6 -p cbr -e 500 -c 1 -i 138 -a 1 h -t 0.858 -s 4 -d 6 -p cbr -e 500 -c 1 -i 138 -a 1 + -t 0.86 -s 1 -d 3 -p cbr -e 500 -c 1 -i 152 -a 1 - -t 0.86 -s 1 -d 3 -p cbr -e 500 -c 1 -i 152 -a 1 h -t 0.86 -s 1 -d 3 -p cbr -e 500 -c 1 -i 152 -a 1 + -t 0.86 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 153 -a 1 - -t 0.86 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 153 -a 1 h -t 0.86 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 153 -a 1 r -t 0.862 -s 3 -d 4 -p cbr -e 500 -c 1 -i 139 -a 1 + -t 0.862 -s 4 -d 6 -p cbr -e 500 -c 1 -i 139 -a 1 - -t 0.862 -s 4 -d 6 -p cbr -e 500 -c 1 -i 139 -a 1 h -t 0.862 -s 4 -d 6 -p cbr -e 500 -c 1 -i 139 -a 1 r -t 0.864 -s 1 -d 3 -p cbr -e 500 -c 1 -i 148 -a 1 + -t 0.864 -s 3 -d 4 -p cbr -e 500 -c 1 -i 148 -a 1 - -t 0.864 -s 3 -d 4 -p cbr -e 500 -c 1 -i 148 -a 1 h -t 0.864 -s 3 -d 4 -p cbr -e 500 -c 1 -i 148 -a 1 r -t 0.866 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 133 -a 1 r -t 0.866 -s 4 -d 6 -p cbr -e 500 -c 1 -i 135 -a 1 r -t 0.868 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 149 -a 1 + -t 0.868 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 149 -a 1 - -t 0.868 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 149 -a 1 h -t 0.868 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 149 -a 1 + -t 0.87 -s 1 -d 3 -p cbr -e 500 -c 1 -i 154 -a 1 - -t 0.87 -s 1 -d 3 -p cbr -e 500 -c 1 -i 154 -a 1 h -t 0.87 -s 1 -d 3 -p cbr -e 500 -c 1 -i 154 -a 1 r -t 0.87 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 140 -a 1 + -t 0.87 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 140 -a 1 - -t 0.87 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 140 -a 1 h -t 0.87 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 140 -a 1 r -t 0.87 -s 4 -d 6 -p cbr -e 500 -c 1 -i 136 -a 1 r -t 0.871664 -s 5 -d 4 -p ack -e 40 -c 0 -i 151 -a 0 -S 0 -y {0 0} + -t 0.871664 -s 4 -d 3 -p ack -e 40 -c 0 -i 151 -a 0 -S 0 -y {0 0} - -t 0.871664 -s 4 -d 3 -p ack -e 40 -c 0 -i 151 -a 0 -S 0 -y {0 0} h -t 0.871664 -s 4 -d 3 -p ack -e 40 -c 0 -i 151 -a 0 -S 0 -y {-1 -1} r -t 0.874 -s 1 -d 3 -p cbr -e 500 -c 1 -i 150 -a 1 + -t 0.874 -s 3 -d 4 -p cbr -e 500 -c 1 -i 150 -a 1 r -t 0.874 -s 3 -d 4 -p cbr -e 500 -c 1 -i 141 -a 1 + -t 0.874 -s 4 -d 6 -p cbr -e 500 -c 1 -i 141 -a 1 - -t 0.874 -s 4 -d 6 -p cbr -e 500 -c 1 -i 141 -a 1 h -t 0.874 -s 4 -d 6 -p cbr -e 500 -c 1 -i 141 -a 1 - -t 0.876 -s 3 -d 4 -p cbr -e 500 -c 1 -i 150 -a 1 h -t 0.876 -s 3 -d 4 -p cbr -e 500 -c 1 -i 150 -a 1 r -t 0.878 -s 3 -d 4 -p cbr -e 500 -c 1 -i 142 -a 1 + -t 0.878 -s 4 -d 6 -p cbr -e 500 -c 1 -i 142 -a 1 - -t 0.878 -s 4 -d 6 -p cbr -e 500 -c 1 -i 142 -a 1 h -t 0.878 -s 4 -d 6 -p cbr -e 500 -c 1 -i 142 -a 1 + -t 0.88 -s 1 -d 3 -p cbr -e 500 -c 1 -i 155 -a 1 - -t 0.88 -s 1 -d 3 -p cbr -e 500 -c 1 -i 155 -a 1 h -t 0.88 -s 1 -d 3 -p cbr -e 500 -c 1 -i 155 -a 1 + -t 0.88 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 156 -a 1 - -t 0.88 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 156 -a 1 h -t 0.88 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 156 -a 1 r -t 0.882 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 137 -a 1 r -t 0.882 -s 4 -d 6 -p cbr -e 500 -c 1 -i 138 -a 1 r -t 0.884 -s 1 -d 3 -p cbr -e 500 -c 1 -i 152 -a 1 + -t 0.884 -s 3 -d 4 -p cbr -e 500 -c 1 -i 152 -a 1 - -t 0.884 -s 3 -d 4 -p cbr -e 500 -c 1 -i 152 -a 1 h -t 0.884 -s 3 -d 4 -p cbr -e 500 -c 1 -i 152 -a 1 r -t 0.886 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 143 -a 1 + -t 0.886 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 143 -a 1 - -t 0.886 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 143 -a 1 h -t 0.886 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 143 -a 1 r -t 0.886 -s 4 -d 6 -p cbr -e 500 -c 1 -i 139 -a 1 r -t 0.888 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 153 -a 1 + -t 0.888 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 153 -a 1 - -t 0.888 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 153 -a 1 h -t 0.888 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 153 -a 1 + -t 0.89 -s 1 -d 3 -p cbr -e 500 -c 1 -i 157 -a 1 - -t 0.89 -s 1 -d 3 -p cbr -e 500 -c 1 -i 157 -a 1 h -t 0.89 -s 1 -d 3 -p cbr -e 500 -c 1 -i 157 -a 1 r -t 0.89 -s 3 -d 4 -p cbr -e 500 -c 1 -i 144 -a 1 + -t 0.89 -s 4 -d 6 -p cbr -e 500 -c 1 -i 144 -a 1 - -t 0.89 -s 4 -d 6 -p cbr -e 500 -c 1 -i 144 -a 1 h -t 0.89 -s 4 -d 6 -p cbr -e 500 -c 1 -i 144 -a 1 r -t 0.894 -s 1 -d 3 -p cbr -e 500 -c 1 -i 154 -a 1 + -t 0.894 -s 3 -d 4 -p cbr -e 500 -c 1 -i 154 -a 1 - -t 0.896 -s 3 -d 4 -p cbr -e 500 -c 1 -i 154 -a 1 h -t 0.896 -s 3 -d 4 -p cbr -e 500 -c 1 -i 154 -a 1 r -t 0.898 -s 3 -d 4 -p cbr -e 500 -c 1 -i 145 -a 1 + -t 0.898 -s 4 -d 6 -p cbr -e 500 -c 1 -i 145 -a 1 - -t 0.898 -s 4 -d 6 -p cbr -e 500 -c 1 -i 145 -a 1 h -t 0.898 -s 4 -d 6 -p cbr -e 500 -c 1 -i 145 -a 1 r -t 0.898 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 140 -a 1 r -t 0.898 -s 4 -d 6 -p cbr -e 500 -c 1 -i 141 -a 1 + -t 0.9 -s 1 -d 3 -p cbr -e 500 -c 1 -i 158 -a 1 - -t 0.9 -s 1 -d 3 -p cbr -e 500 -c 1 -i 158 -a 1 h -t 0.9 -s 1 -d 3 -p cbr -e 500 -c 1 -i 158 -a 1 + -t 0.9 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 159 -a 1 - -t 0.9 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 159 -a 1 h -t 0.9 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 159 -a 1 r -t 0.902 -s 4 -d 6 -p cbr -e 500 -c 1 -i 142 -a 1 r -t 0.904 -s 1 -d 3 -p cbr -e 500 -c 1 -i 155 -a 1 + -t 0.904 -s 3 -d 4 -p cbr -e 500 -c 1 -i 155 -a 1 - -t 0.904 -s 3 -d 4 -p cbr -e 500 -c 1 -i 155 -a 1 h -t 0.904 -s 3 -d 4 -p cbr -e 500 -c 1 -i 155 -a 1 r -t 0.906 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 146 -a 1 + -t 0.906 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 146 -a 1 - -t 0.906 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 146 -a 1 h -t 0.906 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 146 -a 1 r -t 0.908 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 156 -a 1 + -t 0.908 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 156 -a 1 - -t 0.908 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 156 -a 1 h -t 0.908 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 156 -a 1 + -t 0.91 -s 1 -d 3 -p cbr -e 500 -c 1 -i 160 -a 1 - -t 0.91 -s 1 -d 3 -p cbr -e 500 -c 1 -i 160 -a 1 h -t 0.91 -s 1 -d 3 -p cbr -e 500 -c 1 -i 160 -a 1 r -t 0.91 -s 3 -d 4 -p cbr -e 500 -c 1 -i 147 -a 1 + -t 0.91 -s 4 -d 6 -p cbr -e 500 -c 1 -i 147 -a 1 - -t 0.91 -s 4 -d 6 -p cbr -e 500 -c 1 -i 147 -a 1 h -t 0.91 -s 4 -d 6 -p cbr -e 500 -c 1 -i 147 -a 1 r -t 0.914 -s 1 -d 3 -p cbr -e 500 -c 1 -i 157 -a 1 + -t 0.914 -s 3 -d 4 -p cbr -e 500 -c 1 -i 157 -a 1 r -t 0.914 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 143 -a 1 r -t 0.914 -s 4 -d 6 -p cbr -e 500 -c 1 -i 144 -a 1 - -t 0.916 -s 3 -d 4 -p cbr -e 500 -c 1 -i 157 -a 1 h -t 0.916 -s 3 -d 4 -p cbr -e 500 -c 1 -i 157 -a 1 r -t 0.918 -s 3 -d 4 -p cbr -e 500 -c 1 -i 148 -a 1 + -t 0.918 -s 4 -d 6 -p cbr -e 500 -c 1 -i 148 -a 1 - -t 0.918 -s 4 -d 6 -p cbr -e 500 -c 1 -i 148 -a 1 h -t 0.918 -s 4 -d 6 -p cbr -e 500 -c 1 -i 148 -a 1 + -t 0.92 -s 1 -d 3 -p cbr -e 500 -c 1 -i 161 -a 1 - -t 0.92 -s 1 -d 3 -p cbr -e 500 -c 1 -i 161 -a 1 h -t 0.92 -s 1 -d 3 -p cbr -e 500 -c 1 -i 161 -a 1 + -t 0.92 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 162 -a 1 - -t 0.92 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 162 -a 1 h -t 0.92 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 162 -a 1 r -t 0.921984 -s 4 -d 3 -p ack -e 40 -c 0 -i 151 -a 0 -S 0 -y {0 0} + -t 0.921984 -s 3 -d 0 -p ack -e 40 -c 0 -i 151 -a 0 -S 0 -y {0 0} - -t 0.921984 -s 3 -d 0 -p ack -e 40 -c 0 -i 151 -a 0 -S 0 -f 0 -m 1 -y {0 0} h -t 0.921984 -s 3 -d 0 -p ack -e 40 -c 0 -i 151 -a 0 -S 0 -y {-1 -1} r -t 0.922 -s 4 -d 6 -p cbr -e 500 -c 1 -i 145 -a 1 r -t 0.924 -s 1 -d 3 -p cbr -e 500 -c 1 -i 158 -a 1 + -t 0.924 -s 3 -d 4 -p cbr -e 500 -c 1 -i 158 -a 1 - -t 0.924 -s 3 -d 4 -p cbr -e 500 -c 1 -i 158 -a 1 h -t 0.924 -s 3 -d 4 -p cbr -e 500 -c 1 -i 158 -a 1 r -t 0.926 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 149 -a 1 + -t 0.926 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 149 -a 1 - -t 0.926 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 149 -a 1 h -t 0.926 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 149 -a 1 r -t 0.928 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 159 -a 1 + -t 0.928 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 159 -a 1 - -t 0.928 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 159 -a 1 h -t 0.928 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 159 -a 1 + -t 0.93 -s 1 -d 3 -p cbr -e 500 -c 1 -i 163 -a 1 - -t 0.93 -s 1 -d 3 -p cbr -e 500 -c 1 -i 163 -a 1 h -t 0.93 -s 1 -d 3 -p cbr -e 500 -c 1 -i 163 -a 1 r -t 0.93 -s 3 -d 4 -p cbr -e 500 -c 1 -i 150 -a 1 + -t 0.93 -s 4 -d 6 -p cbr -e 500 -c 1 -i 150 -a 1 - -t 0.93 -s 4 -d 6 -p cbr -e 500 -c 1 -i 150 -a 1 h -t 0.93 -s 4 -d 6 -p cbr -e 500 -c 1 -i 150 -a 1 r -t 0.934 -s 1 -d 3 -p cbr -e 500 -c 1 -i 160 -a 1 + -t 0.934 -s 3 -d 4 -p cbr -e 500 -c 1 -i 160 -a 1 r -t 0.934 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 146 -a 1 r -t 0.934 -s 4 -d 6 -p cbr -e 500 -c 1 -i 147 -a 1 - -t 0.936 -s 3 -d 4 -p cbr -e 500 -c 1 -i 160 -a 1 h -t 0.936 -s 3 -d 4 -p cbr -e 500 -c 1 -i 160 -a 1 r -t 0.938 -s 3 -d 4 -p cbr -e 500 -c 1 -i 152 -a 1 + -t 0.938 -s 4 -d 6 -p cbr -e 500 -c 1 -i 152 -a 1 - -t 0.938 -s 4 -d 6 -p cbr -e 500 -c 1 -i 152 -a 1 h -t 0.938 -s 4 -d 6 -p cbr -e 500 -c 1 -i 152 -a 1 + -t 0.94 -s 1 -d 3 -p cbr -e 500 -c 1 -i 164 -a 1 - -t 0.94 -s 1 -d 3 -p cbr -e 500 -c 1 -i 164 -a 1 h -t 0.94 -s 1 -d 3 -p cbr -e 500 -c 1 -i 164 -a 1 + -t 0.94 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 165 -a 1 - -t 0.94 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 165 -a 1 h -t 0.94 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 165 -a 1 r -t 0.942 -s 4 -d 6 -p cbr -e 500 -c 1 -i 148 -a 1 r -t 0.942048 -s 3 -d 0 -p ack -e 40 -c 0 -i 151 -a 0 -S 0 -y {0 0} + -t 0.942048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 166 -a 0 -S 0 -f 0 -m 0 -y {1 1} - -t 0.942048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 166 -a 0 -S 0 -y {1 1} h -t 0.942048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 166 -a 0 -S 0 -y {-1 -1} + -t 0.942048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 167 -a 0 -S 0 -f 0 -m 0 -y {2 2} + -t 0.942048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 168 -a 0 -S 0 -f 0 -m 0 -y {3 3} + -t 0.942048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 169 -a 0 -S 0 -f 0 -m 0 -y {4 4} + -t 0.942048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 170 -a 0 -S 0 -f 0 -m 0 -y {5 5} + -t 0.942048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 171 -a 0 -S 0 -f 0 -m 0 -y {6 6} + -t 0.942048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 172 -a 0 -S 0 -f 0 -m 0 -y {7 7} + -t 0.942048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 173 -a 0 -S 0 -f 0 -m 0 -y {8 8} - -t 0.943648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 167 -a 0 -S 0 -y {2 2} h -t 0.943648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 167 -a 0 -S 0 -y {-1 -1} r -t 0.944 -s 1 -d 3 -p cbr -e 500 -c 1 -i 161 -a 1 + -t 0.944 -s 3 -d 4 -p cbr -e 500 -c 1 -i 161 -a 1 - -t 0.944 -s 3 -d 4 -p cbr -e 500 -c 1 -i 161 -a 1 h -t 0.944 -s 3 -d 4 -p cbr -e 500 -c 1 -i 161 -a 1 - -t 0.945248 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 168 -a 0 -S 0 -y {3 3} h -t 0.945248 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 168 -a 0 -S 0 -y {-1 -1} r -t 0.946 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 153 -a 1 + -t 0.946 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 153 -a 1 - -t 0.946 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 153 -a 1 h -t 0.946 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 153 -a 1 - -t 0.946848 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 169 -a 0 -S 0 -y {4 4} h -t 0.946848 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 169 -a 0 -S 0 -y {-1 -1} r -t 0.948 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 162 -a 1 + -t 0.948 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 162 -a 1 - -t 0.948 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 162 -a 1 h -t 0.948 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 162 -a 1 - -t 0.948448 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 170 -a 0 -S 0 -y {5 5} h -t 0.948448 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 170 -a 0 -S 0 -y {-1 -1} v -t 0.94999999999999996 sim_annotation 0.94999999999999996 10 Send Packet_1 to 8 + -t 0.95 -s 1 -d 3 -p cbr -e 500 -c 1 -i 174 -a 1 - -t 0.95 -s 1 -d 3 -p cbr -e 500 -c 1 -i 174 -a 1 h -t 0.95 -s 1 -d 3 -p cbr -e 500 -c 1 -i 174 -a 1 r -t 0.95 -s 3 -d 4 -p cbr -e 500 -c 1 -i 154 -a 1 + -t 0.95 -s 4 -d 6 -p cbr -e 500 -c 1 -i 154 -a 1 - -t 0.95 -s 4 -d 6 -p cbr -e 500 -c 1 -i 154 -a 1 h -t 0.95 -s 4 -d 6 -p cbr -e 500 -c 1 -i 154 -a 1 - -t 0.950048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 171 -a 0 -S 0 -y {6 6} h -t 0.950048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 171 -a 0 -S 0 -y {-1 -1} - -t 0.951648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 172 -a 0 -S 0 -y {7 7} h -t 0.951648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 172 -a 0 -S 0 -y {-1 -1} - -t 0.953248 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 173 -a 0 -S 0 -y {8 8} h -t 0.953248 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 173 -a 0 -S 0 -y {-1 -1} r -t 0.954 -s 1 -d 3 -p cbr -e 500 -c 1 -i 163 -a 1 + -t 0.954 -s 3 -d 4 -p cbr -e 500 -c 1 -i 163 -a 1 r -t 0.954 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 149 -a 1 r -t 0.954 -s 4 -d 6 -p cbr -e 500 -c 1 -i 150 -a 1 - -t 0.956 -s 3 -d 4 -p cbr -e 500 -c 1 -i 163 -a 1 h -t 0.956 -s 3 -d 4 -p cbr -e 500 -c 1 -i 163 -a 1 r -t 0.958 -s 3 -d 4 -p cbr -e 500 -c 1 -i 155 -a 1 + -t 0.958 -s 4 -d 6 -p cbr -e 500 -c 1 -i 155 -a 1 - -t 0.958 -s 4 -d 6 -p cbr -e 500 -c 1 -i 155 -a 1 h -t 0.958 -s 4 -d 6 -p cbr -e 500 -c 1 -i 155 -a 1 + -t 0.96 -s 1 -d 3 -p cbr -e 500 -c 1 -i 175 -a 1 - -t 0.96 -s 1 -d 3 -p cbr -e 500 -c 1 -i 175 -a 1 h -t 0.96 -s 1 -d 3 -p cbr -e 500 -c 1 -i 175 -a 1 + -t 0.96 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 176 -a 1 - -t 0.96 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 176 -a 1 h -t 0.96 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 176 -a 1 r -t 0.962 -s 4 -d 6 -p cbr -e 500 -c 1 -i 152 -a 1 r -t 0.963648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 166 -a 0 -S 0 -y {1 1} + -t 0.963648 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 166 -a 0 -S 0 -y {1 1} - -t 0.963648 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 166 -a 0 -S 0 -y {1 1} h -t 0.963648 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 166 -a 0 -S 0 -y {-1 -1} r -t 0.964 -s 1 -d 3 -p cbr -e 500 -c 1 -i 164 -a 1 + -t 0.964 -s 3 -d 4 -p cbr -e 500 -c 1 -i 164 -a 1 r -t 0.965248 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 167 -a 0 -S 0 -y {2 2} + -t 0.965248 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 167 -a 0 -S 0 -y {2 2} r -t 0.966 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 156 -a 1 + -t 0.966 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 156 -a 1 - -t 0.966 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 156 -a 1 h -t 0.966 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 156 -a 1 r -t 0.966848 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 168 -a 0 -S 0 -y {3 3} + -t 0.966848 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 168 -a 0 -S 0 -y {3 3} r -t 0.968 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 165 -a 1 + -t 0.968 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 165 -a 1 r -t 0.968448 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 169 -a 0 -S 0 -y {4 4} + -t 0.968448 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 169 -a 0 -S 0 -y {4 4} + -t 0.97 -s 1 -d 3 -p cbr -e 500 -c 1 -i 177 -a 1 - -t 0.97 -s 1 -d 3 -p cbr -e 500 -c 1 -i 177 -a 1 h -t 0.97 -s 1 -d 3 -p cbr -e 500 -c 1 -i 177 -a 1 r -t 0.97 -s 3 -d 4 -p cbr -e 500 -c 1 -i 157 -a 1 + -t 0.97 -s 4 -d 6 -p cbr -e 500 -c 1 -i 157 -a 1 - -t 0.97 -s 4 -d 6 -p cbr -e 500 -c 1 -i 157 -a 1 h -t 0.97 -s 4 -d 6 -p cbr -e 500 -c 1 -i 157 -a 1 r -t 0.970048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 170 -a 0 -S 0 -y {5 5} + -t 0.970048 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 170 -a 0 -S 0 -y {5 5} - -t 0.971648 -s 3 -d 4 -p cbr -e 500 -c 1 -i 164 -a 1 h -t 0.971648 -s 3 -d 4 -p cbr -e 500 -c 1 -i 164 -a 1 r -t 0.971648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 171 -a 0 -S 0 -y {6 6} + -t 0.971648 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 171 -a 0 -S 0 -y {6 6} r -t 0.973248 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 172 -a 0 -S 0 -y {7 7} + -t 0.973248 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 172 -a 0 -S 0 -y {7 7} r -t 0.974 -s 1 -d 3 -p cbr -e 500 -c 1 -i 174 -a 1 + -t 0.974 -s 3 -d 4 -p cbr -e 500 -c 1 -i 174 -a 1 r -t 0.974 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 153 -a 1 r -t 0.974 -s 4 -d 6 -p cbr -e 500 -c 1 -i 154 -a 1 r -t 0.974848 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 173 -a 0 -S 0 -y {8 8} + -t 0.974848 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 173 -a 0 -S 0 -y {8 8} - -t 0.975648 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 167 -a 0 -S 0 -y {2 2} h -t 0.975648 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 167 -a 0 -S 0 -y {-1 -1} r -t 0.978 -s 3 -d 4 -p cbr -e 500 -c 1 -i 158 -a 1 + -t 0.978 -s 4 -d 6 -p cbr -e 500 -c 1 -i 158 -a 1 - -t 0.978 -s 4 -d 6 -p cbr -e 500 -c 1 -i 158 -a 1 h -t 0.978 -s 4 -d 6 -p cbr -e 500 -c 1 -i 158 -a 1 + -t 0.98 -s 1 -d 3 -p cbr -e 500 -c 1 -i 178 -a 1 - -t 0.98 -s 1 -d 3 -p cbr -e 500 -c 1 -i 178 -a 1 h -t 0.98 -s 1 -d 3 -p cbr -e 500 -c 1 -i 178 -a 1 + -t 0.98 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 179 -a 1 - -t 0.98 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 179 -a 1 h -t 0.98 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 179 -a 1 r -t 0.982 -s 4 -d 6 -p cbr -e 500 -c 1 -i 155 -a 1 - -t 0.983648 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 168 -a 0 -S 0 -y {3 3} h -t 0.983648 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 168 -a 0 -S 0 -y {-1 -1} r -t 0.984 -s 1 -d 3 -p cbr -e 500 -c 1 -i 175 -a 1 + -t 0.984 -s 3 -d 4 -p cbr -e 500 -c 1 -i 175 -a 1 r -t 0.986 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 159 -a 1 + -t 0.986 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 159 -a 1 - -t 0.986 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 159 -a 1 h -t 0.986 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 159 -a 1 r -t 0.988 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 176 -a 1 + -t 0.988 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 176 -a 1 + -t 0.99 -s 1 -d 3 -p cbr -e 500 -c 1 -i 180 -a 1 - -t 0.99 -s 1 -d 3 -p cbr -e 500 -c 1 -i 180 -a 1 h -t 0.99 -s 1 -d 3 -p cbr -e 500 -c 1 -i 180 -a 1 r -t 0.99 -s 3 -d 4 -p cbr -e 500 -c 1 -i 160 -a 1 + -t 0.99 -s 4 -d 6 -p cbr -e 500 -c 1 -i 160 -a 1 - -t 0.99 -s 4 -d 6 -p cbr -e 500 -c 1 -i 160 -a 1 h -t 0.99 -s 4 -d 6 -p cbr -e 500 -c 1 -i 160 -a 1 - -t 0.991648 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 165 -a 1 h -t 0.991648 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 165 -a 1 r -t 0.994 -s 1 -d 3 -p cbr -e 500 -c 1 -i 177 -a 1 + -t 0.994 -s 3 -d 4 -p cbr -e 500 -c 1 -i 177 -a 1 r -t 0.994 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 156 -a 1 r -t 0.994 -s 4 -d 6 -p cbr -e 500 -c 1 -i 157 -a 1 r -t 0.998 -s 3 -d 4 -p cbr -e 500 -c 1 -i 161 -a 1 + -t 0.998 -s 4 -d 6 -p cbr -e 500 -c 1 -i 161 -a 1 - -t 0.998 -s 4 -d 6 -p cbr -e 500 -c 1 -i 161 -a 1 h -t 0.998 -s 4 -d 6 -p cbr -e 500 -c 1 -i 161 -a 1 - -t 0.999648 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 169 -a 0 -S 0 -y {4 4} h -t 0.999648 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 169 -a 0 -S 0 -y {-1 -1} + -t 1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 181 -a 1 - -t 1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 181 -a 1 h -t 1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 181 -a 1 + -t 1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 182 -a 1 - -t 1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 182 -a 1 h -t 1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 182 -a 1 r -t 1.002 -s 4 -d 6 -p cbr -e 500 -c 1 -i 158 -a 1 r -t 1.004 -s 1 -d 3 -p cbr -e 500 -c 1 -i 178 -a 1 + -t 1.004 -s 3 -d 4 -p cbr -e 500 -c 1 -i 178 -a 1 r -t 1.006 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 162 -a 1 + -t 1.006 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 162 -a 1 - -t 1.006 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 162 -a 1 h -t 1.006 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 162 -a 1 - -t 1.00765 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 170 -a 0 -S 0 -y {5 5} h -t 1.00765 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 170 -a 0 -S 0 -y {-1 -1} r -t 1.008 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 179 -a 1 + -t 1.008 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 179 -a 1 r -t 1.01 -s 3 -d 4 -p cbr -e 500 -c 1 -i 163 -a 1 + -t 1.01 -s 4 -d 6 -p cbr -e 500 -c 1 -i 163 -a 1 - -t 1.01 -s 4 -d 6 -p cbr -e 500 -c 1 -i 163 -a 1 h -t 1.01 -s 4 -d 6 -p cbr -e 500 -c 1 -i 163 -a 1 + -t 1.01 -s 1 -d 3 -p cbr -e 500 -c 1 -i 183 -a 1 - -t 1.01 -s 1 -d 3 -p cbr -e 500 -c 1 -i 183 -a 1 h -t 1.01 -s 1 -d 3 -p cbr -e 500 -c 1 -i 183 -a 1 r -t 1.014 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 159 -a 1 r -t 1.014 -s 1 -d 3 -p cbr -e 500 -c 1 -i 180 -a 1 + -t 1.014 -s 3 -d 4 -p cbr -e 500 -c 1 -i 180 -a 1 d -t 1.014 -s 3 -d 4 -p cbr -e 500 -c 1 -i 180 -a 1 r -t 1.014 -s 4 -d 6 -p cbr -e 500 -c 1 -i 160 -a 1 - -t 1.01565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 171 -a 0 -S 0 -y {6 6} h -t 1.01565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 171 -a 0 -S 0 -y {-1 -1} + -t 1.02 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 184 -a 1 - -t 1.02 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 184 -a 1 h -t 1.02 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 184 -a 1 + -t 1.02 -s 1 -d 3 -p cbr -e 500 -c 1 -i 185 -a 1 - -t 1.02 -s 1 -d 3 -p cbr -e 500 -c 1 -i 185 -a 1 h -t 1.02 -s 1 -d 3 -p cbr -e 500 -c 1 -i 185 -a 1 r -t 1.02165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 166 -a 0 -S 0 -y {1 1} + -t 1.02165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 166 -a 0 -S 0 -y {1 1} - -t 1.02165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 166 -a 0 -S 0 -y {1 1} h -t 1.02165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 166 -a 0 -S 0 -y {-1 -1} r -t 1.022 -s 4 -d 6 -p cbr -e 500 -c 1 -i 161 -a 1 - -t 1.02365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 172 -a 0 -S 0 -y {7 7} h -t 1.02365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 172 -a 0 -S 0 -y {-1 -1} r -t 1.024 -s 1 -d 3 -p cbr -e 500 -c 1 -i 182 -a 1 + -t 1.024 -s 3 -d 4 -p cbr -e 500 -c 1 -i 182 -a 1 r -t 1.02565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 164 -a 1 + -t 1.02565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 164 -a 1 - -t 1.02565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 164 -a 1 h -t 1.02565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 164 -a 1 r -t 1.028 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 181 -a 1 + -t 1.028 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 181 -a 1 + -t 1.03 -s 1 -d 3 -p cbr -e 500 -c 1 -i 186 -a 1 - -t 1.03 -s 1 -d 3 -p cbr -e 500 -c 1 -i 186 -a 1 h -t 1.03 -s 1 -d 3 -p cbr -e 500 -c 1 -i 186 -a 1 - -t 1.03165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 174 -a 1 h -t 1.03165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 174 -a 1 r -t 1.03365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 167 -a 0 -S 0 -y {2 2} + -t 1.03365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 167 -a 0 -S 0 -y {2 2} - -t 1.03365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 167 -a 0 -S 0 -y {2 2} h -t 1.03365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 167 -a 0 -S 0 -y {-1 -1} r -t 1.034 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 162 -a 1 r -t 1.034 -s 4 -d 6 -p cbr -e 500 -c 1 -i 163 -a 1 r -t 1.034 -s 1 -d 3 -p cbr -e 500 -c 1 -i 183 -a 1 + -t 1.034 -s 3 -d 4 -p cbr -e 500 -c 1 -i 183 -a 1 - -t 1.03565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 173 -a 0 -S 0 -y {8 8} h -t 1.03565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 173 -a 0 -S 0 -y {-1 -1} v -t 1.04 sim_annotation 1.04 11 Ack_1 to 8 + -t 1.04 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 187 -a 1 - -t 1.04 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 187 -a 1 h -t 1.04 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 187 -a 1 + -t 1.04 -s 1 -d 3 -p cbr -e 500 -c 1 -i 188 -a 1 - -t 1.04 -s 1 -d 3 -p cbr -e 500 -c 1 -i 188 -a 1 h -t 1.04 -s 1 -d 3 -p cbr -e 500 -c 1 -i 188 -a 1 r -t 1.04165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 168 -a 0 -S 0 -y {3 3} + -t 1.04165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 168 -a 0 -S 0 -y {3 3} - -t 1.04165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 168 -a 0 -S 0 -y {3 3} h -t 1.04165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 168 -a 0 -S 0 -y {-1 -1} r -t 1.04325 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 166 -a 0 -S 0 -y {1 1} + -t 1.04325 -s 5 -d 4 -p ack -e 40 -c 0 -i 189 -a 0 -S 0 -y {1 1} - -t 1.04325 -s 5 -d 4 -p ack -e 40 -c 0 -i 189 -a 0 -S 0 -y {1 1} h -t 1.04325 -s 5 -d 4 -p ack -e 40 -c 0 -i 189 -a 0 -S 0 -y {-1 -1} - -t 1.04365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 175 -a 1 h -t 1.04365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 175 -a 1 r -t 1.044 -s 1 -d 3 -p cbr -e 500 -c 1 -i 185 -a 1 + -t 1.044 -s 3 -d 4 -p cbr -e 500 -c 1 -i 185 -a 1 - -t 1.04765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 176 -a 1 h -t 1.04765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 176 -a 1 r -t 1.048 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 184 -a 1 + -t 1.048 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 184 -a 1 r -t 1.04965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 165 -a 1 + -t 1.04965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 165 -a 1 - -t 1.04965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 165 -a 1 h -t 1.04965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 165 -a 1 r -t 1.04965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 164 -a 1 + -t 1.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 190 -a 1 - -t 1.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 190 -a 1 h -t 1.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 190 -a 1 r -t 1.054 -s 1 -d 3 -p cbr -e 500 -c 1 -i 186 -a 1 + -t 1.054 -s 3 -d 4 -p cbr -e 500 -c 1 -i 186 -a 1 r -t 1.05525 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 167 -a 0 -S 0 -y {2 2} + -t 1.05525 -s 5 -d 4 -p ack -e 40 -c 0 -i 191 -a 0 -S 0 -y {2 2} - -t 1.05525 -s 5 -d 4 -p ack -e 40 -c 0 -i 191 -a 0 -S 0 -y {2 2} h -t 1.05525 -s 5 -d 4 -p ack -e 40 -c 0 -i 191 -a 0 -S 0 -y {-1 -1} - -t 1.05565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 177 -a 1 h -t 1.05565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 177 -a 1 r -t 1.05765 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 169 -a 0 -S 0 -y {4 4} + -t 1.05765 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 169 -a 0 -S 0 -y {4 4} - -t 1.05765 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 169 -a 0 -S 0 -y {4 4} h -t 1.05765 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 169 -a 0 -S 0 -y {-1 -1} - -t 1.05965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 178 -a 1 h -t 1.05965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 178 -a 1 + -t 1.06 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 192 -a 1 - -t 1.06 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 192 -a 1 h -t 1.06 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 192 -a 1 + -t 1.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 193 -a 1 - -t 1.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 193 -a 1 h -t 1.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 193 -a 1 r -t 1.06325 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 168 -a 0 -S 0 -y {3 3} + -t 1.06325 -s 5 -d 4 -p ack -e 40 -c 0 -i 194 -a 0 -S 0 -y {3 3} - -t 1.06325 -s 5 -d 4 -p ack -e 40 -c 0 -i 194 -a 0 -S 0 -y {3 3} h -t 1.06325 -s 5 -d 4 -p ack -e 40 -c 0 -i 194 -a 0 -S 0 -y {-1 -1} r -t 1.06331 -s 5 -d 4 -p ack -e 40 -c 0 -i 189 -a 0 -S 0 -y {1 1} + -t 1.06331 -s 4 -d 3 -p ack -e 40 -c 0 -i 189 -a 0 -S 0 -y {1 1} - -t 1.06331 -s 4 -d 3 -p ack -e 40 -c 0 -i 189 -a 0 -S 0 -y {1 1} h -t 1.06331 -s 4 -d 3 -p ack -e 40 -c 0 -i 189 -a 0 -S 0 -y {-1 -1} - -t 1.06365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 179 -a 1 h -t 1.06365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 179 -a 1 r -t 1.064 -s 1 -d 3 -p cbr -e 500 -c 1 -i 188 -a 1 + -t 1.064 -s 3 -d 4 -p cbr -e 500 -c 1 -i 188 -a 1 r -t 1.06565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 170 -a 0 -S 0 -y {5 5} + -t 1.06565 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 170 -a 0 -S 0 -y {5 5} - -t 1.06565 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 170 -a 0 -S 0 -y {5 5} h -t 1.06565 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 170 -a 0 -S 0 -y {-1 -1} r -t 1.068 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 187 -a 1 + -t 1.068 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 187 -a 1 + -t 1.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 195 -a 1 - -t 1.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 195 -a 1 h -t 1.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 195 -a 1 - -t 1.07165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 182 -a 1 h -t 1.07165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 182 -a 1 r -t 1.07365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 171 -a 0 -S 0 -y {6 6} + -t 1.07365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 171 -a 0 -S 0 -y {6 6} - -t 1.07365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 171 -a 0 -S 0 -y {6 6} h -t 1.07365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 171 -a 0 -S 0 -y {-1 -1} r -t 1.074 -s 1 -d 3 -p cbr -e 500 -c 1 -i 190 -a 1 + -t 1.074 -s 3 -d 4 -p cbr -e 500 -c 1 -i 190 -a 1 r -t 1.07531 -s 5 -d 4 -p ack -e 40 -c 0 -i 191 -a 0 -S 0 -y {2 2} + -t 1.07531 -s 4 -d 3 -p ack -e 40 -c 0 -i 191 -a 0 -S 0 -y {2 2} - -t 1.07531 -s 4 -d 3 -p ack -e 40 -c 0 -i 191 -a 0 -S 0 -y {2 2} h -t 1.07531 -s 4 -d 3 -p ack -e 40 -c 0 -i 191 -a 0 -S 0 -y {-1 -1} - -t 1.07565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 181 -a 1 h -t 1.07565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 181 -a 1 r -t 1.07765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 165 -a 1 r -t 1.07925 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 169 -a 0 -S 0 -y {4 4} + -t 1.07925 -s 5 -d 4 -p ack -e 40 -c 0 -i 196 -a 0 -S 0 -y {4 4} - -t 1.07925 -s 5 -d 4 -p ack -e 40 -c 0 -i 196 -a 0 -S 0 -y {4 4} h -t 1.07925 -s 5 -d 4 -p ack -e 40 -c 0 -i 196 -a 0 -S 0 -y {-1 -1} + -t 1.08 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 197 -a 1 - -t 1.08 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 197 -a 1 h -t 1.08 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 197 -a 1 + -t 1.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 198 -a 1 - -t 1.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 198 -a 1 h -t 1.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 198 -a 1 r -t 1.08165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 172 -a 0 -S 0 -y {7 7} + -t 1.08165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 172 -a 0 -S 0 -y {7 7} - -t 1.08165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 172 -a 0 -S 0 -y {7 7} h -t 1.08165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 172 -a 0 -S 0 -y {-1 -1} r -t 1.08331 -s 5 -d 4 -p ack -e 40 -c 0 -i 194 -a 0 -S 0 -y {3 3} + -t 1.08331 -s 4 -d 3 -p ack -e 40 -c 0 -i 194 -a 0 -S 0 -y {3 3} - -t 1.08331 -s 4 -d 3 -p ack -e 40 -c 0 -i 194 -a 0 -S 0 -y {3 3} h -t 1.08331 -s 4 -d 3 -p ack -e 40 -c 0 -i 194 -a 0 -S 0 -y {-1 -1} - -t 1.08365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 183 -a 1 h -t 1.08365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 183 -a 1 r -t 1.084 -s 1 -d 3 -p cbr -e 500 -c 1 -i 193 -a 1 + -t 1.084 -s 3 -d 4 -p cbr -e 500 -c 1 -i 193 -a 1 r -t 1.08565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 174 -a 1 + -t 1.08565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 174 -a 1 - -t 1.08565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 174 -a 1 h -t 1.08565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 174 -a 1 r -t 1.08725 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 170 -a 0 -S 0 -y {5 5} + -t 1.08725 -s 5 -d 4 -p ack -e 40 -c 0 -i 199 -a 0 -S 0 -y {5 5} - -t 1.08725 -s 5 -d 4 -p ack -e 40 -c 0 -i 199 -a 0 -S 0 -y {5 5} h -t 1.08725 -s 5 -d 4 -p ack -e 40 -c 0 -i 199 -a 0 -S 0 -y {-1 -1} - -t 1.08765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 185 -a 1 h -t 1.08765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 185 -a 1 r -t 1.088 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 192 -a 1 + -t 1.088 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 192 -a 1 + -t 1.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 200 -a 1 - -t 1.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 200 -a 1 h -t 1.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 200 -a 1 - -t 1.09165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 184 -a 1 h -t 1.09165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 184 -a 1 r -t 1.09365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 173 -a 0 -S 0 -y {8 8} + -t 1.09365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 173 -a 0 -S 0 -y {8 8} - -t 1.09365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 173 -a 0 -S 0 -y {8 8} h -t 1.09365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 173 -a 0 -S 0 -y {-1 -1} r -t 1.094 -s 1 -d 3 -p cbr -e 500 -c 1 -i 195 -a 1 + -t 1.094 -s 3 -d 4 -p cbr -e 500 -c 1 -i 195 -a 1 r -t 1.09525 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 171 -a 0 -S 0 -y {6 6} + -t 1.09525 -s 5 -d 4 -p ack -e 40 -c 0 -i 201 -a 0 -S 0 -y {6 6} - -t 1.09525 -s 5 -d 4 -p ack -e 40 -c 0 -i 201 -a 0 -S 0 -y {6 6} h -t 1.09525 -s 5 -d 4 -p ack -e 40 -c 0 -i 201 -a 0 -S 0 -y {-1 -1} r -t 1.09765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 175 -a 1 + -t 1.09765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 175 -a 1 - -t 1.09765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 175 -a 1 h -t 1.09765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 175 -a 1 r -t 1.09931 -s 5 -d 4 -p ack -e 40 -c 0 -i 196 -a 0 -S 0 -y {4 4} + -t 1.09931 -s 4 -d 3 -p ack -e 40 -c 0 -i 196 -a 0 -S 0 -y {4 4} - -t 1.09931 -s 4 -d 3 -p ack -e 40 -c 0 -i 196 -a 0 -S 0 -y {4 4} h -t 1.09931 -s 4 -d 3 -p ack -e 40 -c 0 -i 196 -a 0 -S 0 -y {-1 -1} - -t 1.09965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 186 -a 1 h -t 1.09965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 186 -a 1 + -t 1.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 202 -a 1 - -t 1.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 202 -a 1 h -t 1.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 202 -a 1 + -t 1.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 203 -a 1 - -t 1.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 203 -a 1 h -t 1.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 203 -a 1 r -t 1.10325 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 172 -a 0 -S 0 -y {7 7} + -t 1.10325 -s 5 -d 4 -p ack -e 40 -c 0 -i 204 -a 0 -S 0 -y {7 7} - -t 1.10325 -s 5 -d 4 -p ack -e 40 -c 0 -i 204 -a 0 -S 0 -y {7 7} h -t 1.10325 -s 5 -d 4 -p ack -e 40 -c 0 -i 204 -a 0 -S 0 -y {-1 -1} - -t 1.10365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 188 -a 1 h -t 1.10365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 188 -a 1 r -t 1.104 -s 1 -d 3 -p cbr -e 500 -c 1 -i 198 -a 1 + -t 1.104 -s 3 -d 4 -p cbr -e 500 -c 1 -i 198 -a 1 r -t 1.10565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 176 -a 1 + -t 1.10565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 176 -a 1 - -t 1.10565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 176 -a 1 h -t 1.10565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 176 -a 1 r -t 1.10731 -s 5 -d 4 -p ack -e 40 -c 0 -i 199 -a 0 -S 0 -y {5 5} + -t 1.10731 -s 4 -d 3 -p ack -e 40 -c 0 -i 199 -a 0 -S 0 -y {5 5} - -t 1.10731 -s 4 -d 3 -p ack -e 40 -c 0 -i 199 -a 0 -S 0 -y {5 5} h -t 1.10731 -s 4 -d 3 -p ack -e 40 -c 0 -i 199 -a 0 -S 0 -y {-1 -1} - -t 1.10765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 187 -a 1 h -t 1.10765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 187 -a 1 r -t 1.108 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 197 -a 1 + -t 1.108 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 197 -a 1 r -t 1.10965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 177 -a 1 + -t 1.10965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 177 -a 1 - -t 1.10965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 177 -a 1 h -t 1.10965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 177 -a 1 r -t 1.10965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 174 -a 1 + -t 1.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 205 -a 1 - -t 1.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 205 -a 1 h -t 1.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 205 -a 1 r -t 1.11363 -s 4 -d 3 -p ack -e 40 -c 0 -i 189 -a 0 -S 0 -y {1 1} + -t 1.11363 -s 3 -d 0 -p ack -e 40 -c 0 -i 189 -a 0 -S 0 -y {1 1} - -t 1.11363 -s 3 -d 0 -p ack -e 40 -c 0 -i 189 -a 0 -S 0 -f 0 -m 1 -y {1 1} h -t 1.11363 -s 3 -d 0 -p ack -e 40 -c 0 -i 189 -a 0 -S 0 -y {-1 -1} r -t 1.11365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 178 -a 1 + -t 1.11365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 178 -a 1 - -t 1.11365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 178 -a 1 h -t 1.11365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 178 -a 1 r -t 1.114 -s 1 -d 3 -p cbr -e 500 -c 1 -i 200 -a 1 + -t 1.114 -s 3 -d 4 -p cbr -e 500 -c 1 -i 200 -a 1 r -t 1.11525 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 173 -a 0 -S 0 -y {8 8} + -t 1.11525 -s 5 -d 4 -p ack -e 40 -c 0 -i 206 -a 0 -S 0 -y {8 8} - -t 1.11525 -s 5 -d 4 -p ack -e 40 -c 0 -i 206 -a 0 -S 0 -y {8 8} h -t 1.11525 -s 5 -d 4 -p ack -e 40 -c 0 -i 206 -a 0 -S 0 -y {-1 -1} r -t 1.11531 -s 5 -d 4 -p ack -e 40 -c 0 -i 201 -a 0 -S 0 -y {6 6} + -t 1.11531 -s 4 -d 3 -p ack -e 40 -c 0 -i 201 -a 0 -S 0 -y {6 6} - -t 1.11531 -s 4 -d 3 -p ack -e 40 -c 0 -i 201 -a 0 -S 0 -y {6 6} h -t 1.11531 -s 4 -d 3 -p ack -e 40 -c 0 -i 201 -a 0 -S 0 -y {-1 -1} - -t 1.11565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 190 -a 1 h -t 1.11565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 190 -a 1 - -t 1.11965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 193 -a 1 h -t 1.11965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 193 -a 1 + -t 1.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 207 -a 1 - -t 1.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 207 -a 1 h -t 1.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 207 -a 1 + -t 1.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 208 -a 1 - -t 1.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 208 -a 1 h -t 1.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 208 -a 1 r -t 1.12165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 179 -a 1 + -t 1.12165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 179 -a 1 - -t 1.12165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 179 -a 1 h -t 1.12165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 179 -a 1 r -t 1.12165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 175 -a 1 r -t 1.12331 -s 5 -d 4 -p ack -e 40 -c 0 -i 204 -a 0 -S 0 -y {7 7} + -t 1.12331 -s 4 -d 3 -p ack -e 40 -c 0 -i 204 -a 0 -S 0 -y {7 7} - -t 1.12331 -s 4 -d 3 -p ack -e 40 -c 0 -i 204 -a 0 -S 0 -y {7 7} h -t 1.12331 -s 4 -d 3 -p ack -e 40 -c 0 -i 204 -a 0 -S 0 -y {-1 -1} - -t 1.12365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 192 -a 1 h -t 1.12365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 192 -a 1 r -t 1.124 -s 1 -d 3 -p cbr -e 500 -c 1 -i 203 -a 1 + -t 1.124 -s 3 -d 4 -p cbr -e 500 -c 1 -i 203 -a 1 r -t 1.12563 -s 4 -d 3 -p ack -e 40 -c 0 -i 191 -a 0 -S 0 -y {2 2} + -t 1.12563 -s 3 -d 0 -p ack -e 40 -c 0 -i 191 -a 0 -S 0 -y {2 2} - -t 1.12563 -s 3 -d 0 -p ack -e 40 -c 0 -i 191 -a 0 -S 0 -f 0 -m 1 -y {2 2} h -t 1.12563 -s 3 -d 0 -p ack -e 40 -c 0 -i 191 -a 0 -S 0 -y {-1 -1} r -t 1.12565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 182 -a 1 + -t 1.12565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 182 -a 1 - -t 1.12565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 182 -a 1 h -t 1.12565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 182 -a 1 r -t 1.128 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 202 -a 1 + -t 1.128 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 202 -a 1 + -t 1.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 209 -a 1 - -t 1.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 209 -a 1 h -t 1.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 209 -a 1 - -t 1.13165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 195 -a 1 h -t 1.13165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 195 -a 1 r -t 1.13363 -s 4 -d 3 -p ack -e 40 -c 0 -i 194 -a 0 -S 0 -y {3 3} + -t 1.13363 -s 3 -d 0 -p ack -e 40 -c 0 -i 194 -a 0 -S 0 -y {3 3} - -t 1.13363 -s 3 -d 0 -p ack -e 40 -c 0 -i 194 -a 0 -S 0 -f 0 -m 1 -y {3 3} h -t 1.13363 -s 3 -d 0 -p ack -e 40 -c 0 -i 194 -a 0 -S 0 -y {-1 -1} r -t 1.13365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 181 -a 1 + -t 1.13365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 181 -a 1 - -t 1.13365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 181 -a 1 h -t 1.13365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 181 -a 1 r -t 1.13365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 176 -a 1 r -t 1.13365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 177 -a 1 r -t 1.1337 -s 3 -d 0 -p ack -e 40 -c 0 -i 189 -a 0 -S 0 -y {1 1} + -t 1.1337 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 210 -a 0 -S 0 -f 0 -m 0 -y {9 9} - -t 1.1337 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 210 -a 0 -S 0 -y {9 9} h -t 1.1337 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 210 -a 0 -S 0 -y {-1 -1} r -t 1.134 -s 1 -d 3 -p cbr -e 500 -c 1 -i 205 -a 1 + -t 1.134 -s 3 -d 4 -p cbr -e 500 -c 1 -i 205 -a 1 r -t 1.13531 -s 5 -d 4 -p ack -e 40 -c 0 -i 206 -a 0 -S 0 -y {8 8} + -t 1.13531 -s 4 -d 3 -p ack -e 40 -c 0 -i 206 -a 0 -S 0 -y {8 8} - -t 1.13531 -s 4 -d 3 -p ack -e 40 -c 0 -i 206 -a 0 -S 0 -y {8 8} h -t 1.13531 -s 4 -d 3 -p ack -e 40 -c 0 -i 206 -a 0 -S 0 -y {-1 -1} - -t 1.13565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 198 -a 1 h -t 1.13565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 198 -a 1 r -t 1.13765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 183 -a 1 + -t 1.13765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 183 -a 1 - -t 1.13765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 183 -a 1 h -t 1.13765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 183 -a 1 r -t 1.13765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 178 -a 1 - -t 1.13965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 197 -a 1 h -t 1.13965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 197 -a 1 v -t 1.1399999999999999 sim_annotation 1.1399999999999999 12 Send Packet_9 to 16 + -t 1.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 211 -a 1 - -t 1.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 211 -a 1 h -t 1.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 211 -a 1 + -t 1.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 212 -a 1 - -t 1.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 212 -a 1 h -t 1.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 212 -a 1 r -t 1.14165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 185 -a 1 + -t 1.14165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 185 -a 1 - -t 1.14165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 185 -a 1 h -t 1.14165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 185 -a 1 r -t 1.144 -s 1 -d 3 -p cbr -e 500 -c 1 -i 208 -a 1 + -t 1.144 -s 3 -d 4 -p cbr -e 500 -c 1 -i 208 -a 1 r -t 1.1457 -s 3 -d 0 -p ack -e 40 -c 0 -i 191 -a 0 -S 0 -y {2 2} + -t 1.1457 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 213 -a 0 -S 0 -f 0 -m 0 -y {10 10} - -t 1.1457 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 213 -a 0 -S 0 -y {10 10} h -t 1.1457 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 213 -a 0 -S 0 -y {-1 -1} - -t 1.14765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 200 -a 1 h -t 1.14765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 200 -a 1 r -t 1.148 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 207 -a 1 + -t 1.148 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 207 -a 1 r -t 1.14963 -s 4 -d 3 -p ack -e 40 -c 0 -i 196 -a 0 -S 0 -y {4 4} + -t 1.14963 -s 3 -d 0 -p ack -e 40 -c 0 -i 196 -a 0 -S 0 -y {4 4} - -t 1.14963 -s 3 -d 0 -p ack -e 40 -c 0 -i 196 -a 0 -S 0 -f 0 -m 1 -y {4 4} h -t 1.14963 -s 3 -d 0 -p ack -e 40 -c 0 -i 196 -a 0 -S 0 -y {-1 -1} r -t 1.14965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 184 -a 1 + -t 1.14965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 184 -a 1 - -t 1.14965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 184 -a 1 h -t 1.14965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 184 -a 1 r -t 1.14965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 179 -a 1 r -t 1.14965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 182 -a 1 + -t 1.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 214 -a 1 - -t 1.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 214 -a 1 h -t 1.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 214 -a 1 - -t 1.15165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 203 -a 1 h -t 1.15165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 203 -a 1 r -t 1.15365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 186 -a 1 + -t 1.15365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 186 -a 1 - -t 1.15365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 186 -a 1 h -t 1.15365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 186 -a 1 r -t 1.1537 -s 3 -d 0 -p ack -e 40 -c 0 -i 194 -a 0 -S 0 -y {3 3} + -t 1.1537 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 215 -a 0 -S 0 -f 0 -m 0 -y {11 11} - -t 1.1537 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 215 -a 0 -S 0 -y {11 11} h -t 1.1537 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 215 -a 0 -S 0 -y {-1 -1} r -t 1.154 -s 1 -d 3 -p cbr -e 500 -c 1 -i 209 -a 1 + -t 1.154 -s 3 -d 4 -p cbr -e 500 -c 1 -i 209 -a 1 r -t 1.1553 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 210 -a 0 -S 0 -y {9 9} + -t 1.1553 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 210 -a 0 -S 0 -y {9 9} - -t 1.15565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 202 -a 1 h -t 1.15565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 202 -a 1 r -t 1.15763 -s 4 -d 3 -p ack -e 40 -c 0 -i 199 -a 0 -S 0 -y {5 5} + -t 1.15763 -s 3 -d 0 -p ack -e 40 -c 0 -i 199 -a 0 -S 0 -y {5 5} - -t 1.15763 -s 3 -d 0 -p ack -e 40 -c 0 -i 199 -a 0 -S 0 -f 0 -m 1 -y {5 5} h -t 1.15763 -s 3 -d 0 -p ack -e 40 -c 0 -i 199 -a 0 -S 0 -y {-1 -1} r -t 1.15765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 188 -a 1 + -t 1.15765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 188 -a 1 - -t 1.15765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 188 -a 1 h -t 1.15765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 188 -a 1 + -t 1.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 216 -a 1 - -t 1.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 216 -a 1 h -t 1.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 216 -a 1 + -t 1.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 217 -a 1 - -t 1.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 217 -a 1 h -t 1.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 217 -a 1 r -t 1.16165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 181 -a 1 r -t 1.16165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 183 -a 1 - -t 1.16365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 205 -a 1 h -t 1.16365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 205 -a 1 r -t 1.164 -s 1 -d 3 -p cbr -e 500 -c 1 -i 212 -a 1 + -t 1.164 -s 3 -d 4 -p cbr -e 500 -c 1 -i 212 -a 1 r -t 1.16563 -s 4 -d 3 -p ack -e 40 -c 0 -i 201 -a 0 -S 0 -y {6 6} + -t 1.16563 -s 3 -d 0 -p ack -e 40 -c 0 -i 201 -a 0 -S 0 -y {6 6} - -t 1.16563 -s 3 -d 0 -p ack -e 40 -c 0 -i 201 -a 0 -S 0 -f 0 -m 1 -y {6 6} h -t 1.16563 -s 3 -d 0 -p ack -e 40 -c 0 -i 201 -a 0 -S 0 -y {-1 -1} r -t 1.16565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 187 -a 1 + -t 1.16565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 187 -a 1 - -t 1.16565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 187 -a 1 h -t 1.16565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 187 -a 1 r -t 1.16565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 185 -a 1 r -t 1.1673 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 213 -a 0 -S 0 -y {10 10} + -t 1.1673 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 213 -a 0 -S 0 -y {10 10} - -t 1.16765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 208 -a 1 h -t 1.16765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 208 -a 1 r -t 1.168 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 211 -a 1 + -t 1.168 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 211 -a 1 r -t 1.16965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 190 -a 1 + -t 1.16965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 190 -a 1 - -t 1.16965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 190 -a 1 h -t 1.16965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 190 -a 1 r -t 1.1697 -s 3 -d 0 -p ack -e 40 -c 0 -i 196 -a 0 -S 0 -y {4 4} + -t 1.1697 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 218 -a 0 -S 0 -f 0 -m 0 -y {12 12} - -t 1.1697 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 218 -a 0 -S 0 -y {12 12} h -t 1.1697 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 218 -a 0 -S 0 -y {-1 -1} + -t 1.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 219 -a 1 - -t 1.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 219 -a 1 h -t 1.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 219 -a 1 - -t 1.17165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 207 -a 1 h -t 1.17165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 207 -a 1 r -t 1.17363 -s 4 -d 3 -p ack -e 40 -c 0 -i 204 -a 0 -S 0 -y {7 7} + -t 1.17363 -s 3 -d 0 -p ack -e 40 -c 0 -i 204 -a 0 -S 0 -y {7 7} - -t 1.17363 -s 3 -d 0 -p ack -e 40 -c 0 -i 204 -a 0 -S 0 -f 0 -m 1 -y {7 7} h -t 1.17363 -s 3 -d 0 -p ack -e 40 -c 0 -i 204 -a 0 -S 0 -y {-1 -1} r -t 1.17365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 193 -a 1 + -t 1.17365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 193 -a 1 - -t 1.17365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 193 -a 1 h -t 1.17365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 193 -a 1 r -t 1.174 -s 1 -d 3 -p cbr -e 500 -c 1 -i 214 -a 1 + -t 1.174 -s 3 -d 4 -p cbr -e 500 -c 1 -i 214 -a 1 r -t 1.1753 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 215 -a 0 -S 0 -y {11 11} + -t 1.1753 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 215 -a 0 -S 0 -y {11 11} r -t 1.17765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 184 -a 1 r -t 1.17765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 186 -a 1 r -t 1.1777 -s 3 -d 0 -p ack -e 40 -c 0 -i 199 -a 0 -S 0 -y {5 5} + -t 1.1777 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 220 -a 0 -S 0 -f 0 -m 0 -y {13 13} - -t 1.1777 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 220 -a 0 -S 0 -y {13 13} h -t 1.1777 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 220 -a 0 -S 0 -y {-1 -1} - -t 1.17965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 209 -a 1 h -t 1.17965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 209 -a 1 + -t 1.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 221 -a 1 - -t 1.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 221 -a 1 h -t 1.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 221 -a 1 + -t 1.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 222 -a 1 - -t 1.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 222 -a 1 h -t 1.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 222 -a 1 r -t 1.18165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 192 -a 1 + -t 1.18165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 192 -a 1 - -t 1.18165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 192 -a 1 h -t 1.18165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 192 -a 1 r -t 1.18165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 188 -a 1 - -t 1.18365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 210 -a 0 -S 0 -y {9 9} h -t 1.18365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 210 -a 0 -S 0 -y {-1 -1} r -t 1.184 -s 1 -d 3 -p cbr -e 500 -c 1 -i 217 -a 1 + -t 1.184 -s 3 -d 4 -p cbr -e 500 -c 1 -i 217 -a 1 r -t 1.18563 -s 4 -d 3 -p ack -e 40 -c 0 -i 206 -a 0 -S 0 -y {8 8} + -t 1.18563 -s 3 -d 0 -p ack -e 40 -c 0 -i 206 -a 0 -S 0 -y {8 8} - -t 1.18563 -s 3 -d 0 -p ack -e 40 -c 0 -i 206 -a 0 -S 0 -f 0 -m 1 -y {8 8} h -t 1.18563 -s 3 -d 0 -p ack -e 40 -c 0 -i 206 -a 0 -S 0 -y {-1 -1} r -t 1.18565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 195 -a 1 + -t 1.18565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 195 -a 1 - -t 1.18565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 195 -a 1 h -t 1.18565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 195 -a 1 r -t 1.1857 -s 3 -d 0 -p ack -e 40 -c 0 -i 201 -a 0 -S 0 -y {6 6} + -t 1.1857 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 223 -a 0 -S 0 -f 0 -m 0 -y {14 14} - -t 1.1857 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 223 -a 0 -S 0 -y {14 14} h -t 1.1857 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 223 -a 0 -S 0 -y {-1 -1} r -t 1.188 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 216 -a 1 + -t 1.188 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 216 -a 1 r -t 1.18965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 198 -a 1 + -t 1.18965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 198 -a 1 - -t 1.18965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 198 -a 1 h -t 1.18965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 198 -a 1 + -t 1.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 224 -a 1 - -t 1.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 224 -a 1 h -t 1.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 224 -a 1 r -t 1.1913 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 218 -a 0 -S 0 -y {12 12} + -t 1.1913 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 218 -a 0 -S 0 -y {12 12} - -t 1.19165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 212 -a 1 h -t 1.19165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 212 -a 1 r -t 1.19365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 187 -a 1 r -t 1.19365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 190 -a 1 r -t 1.1937 -s 3 -d 0 -p ack -e 40 -c 0 -i 204 -a 0 -S 0 -y {7 7} + -t 1.1937 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 225 -a 0 -S 0 -f 0 -m 0 -y {15 15} - -t 1.1937 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 225 -a 0 -S 0 -y {15 15} h -t 1.1937 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 225 -a 0 -S 0 -y {-1 -1} r -t 1.194 -s 1 -d 3 -p cbr -e 500 -c 1 -i 219 -a 1 + -t 1.194 -s 3 -d 4 -p cbr -e 500 -c 1 -i 219 -a 1 - -t 1.19565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 213 -a 0 -S 0 -y {10 10} h -t 1.19565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 213 -a 0 -S 0 -y {-1 -1} r -t 1.19765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 197 -a 1 + -t 1.19765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 197 -a 1 - -t 1.19765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 197 -a 1 h -t 1.19765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 197 -a 1 r -t 1.19765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 193 -a 1 r -t 1.1993 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 220 -a 0 -S 0 -y {13 13} + -t 1.1993 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 220 -a 0 -S 0 -y {13 13} + -t 1.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 226 -a 1 - -t 1.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 226 -a 1 h -t 1.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 226 -a 1 + -t 1.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 227 -a 1 - -t 1.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 227 -a 1 h -t 1.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 227 -a 1 r -t 1.20165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 200 -a 1 + -t 1.20165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 200 -a 1 - -t 1.20165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 200 -a 1 h -t 1.20165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 200 -a 1 - -t 1.20365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 211 -a 1 h -t 1.20365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 211 -a 1 r -t 1.204 -s 1 -d 3 -p cbr -e 500 -c 1 -i 222 -a 1 + -t 1.204 -s 3 -d 4 -p cbr -e 500 -c 1 -i 222 -a 1 r -t 1.20565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 203 -a 1 + -t 1.20565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 203 -a 1 - -t 1.20565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 203 -a 1 h -t 1.20565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 203 -a 1 r -t 1.2057 -s 3 -d 0 -p ack -e 40 -c 0 -i 206 -a 0 -S 0 -y {8 8} + -t 1.2057 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 228 -a 0 -S 0 -f 0 -m 0 -y {16 16} - -t 1.2057 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 228 -a 0 -S 0 -y {16 16} h -t 1.2057 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 228 -a 0 -S 0 -y {-1 -1} r -t 1.2073 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 223 -a 0 -S 0 -y {14 14} + -t 1.2073 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 223 -a 0 -S 0 -y {14 14} r -t 1.208 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 221 -a 1 + -t 1.208 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 221 -a 1 d -t 1.208 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 221 -a 1 r -t 1.20965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 192 -a 1 r -t 1.20965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 195 -a 1 + -t 1.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 229 -a 1 - -t 1.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 229 -a 1 h -t 1.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 229 -a 1 - -t 1.21165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 214 -a 1 h -t 1.21165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 214 -a 1 r -t 1.21365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 202 -a 1 + -t 1.21365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 202 -a 1 - -t 1.21365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 202 -a 1 h -t 1.21365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 202 -a 1 r -t 1.21365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 198 -a 1 r -t 1.214 -s 1 -d 3 -p cbr -e 500 -c 1 -i 224 -a 1 + -t 1.214 -s 3 -d 4 -p cbr -e 500 -c 1 -i 224 -a 1 r -t 1.2153 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 225 -a 0 -S 0 -y {15 15} + -t 1.2153 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 225 -a 0 -S 0 -y {15 15} d -t 1.2153 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 225 -a 0 -S 0 -y {15 15} - -t 1.21565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 215 -a 0 -S 0 -y {11 11} h -t 1.21565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 215 -a 0 -S 0 -y {-1 -1} r -t 1.21765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 205 -a 1 + -t 1.21765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 205 -a 1 - -t 1.21765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 205 -a 1 h -t 1.21765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 205 -a 1 v -t 1.22 sim_annotation 1.22 13 Lost Packet (2 of them) + -t 1.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 230 -a 1 - -t 1.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 230 -a 1 h -t 1.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 230 -a 1 + -t 1.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 231 -a 1 - -t 1.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 231 -a 1 h -t 1.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 231 -a 1 r -t 1.22165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 208 -a 1 + -t 1.22165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 208 -a 1 - -t 1.22165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 208 -a 1 h -t 1.22165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 208 -a 1 - -t 1.22365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 217 -a 1 h -t 1.22365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 217 -a 1 r -t 1.224 -s 1 -d 3 -p cbr -e 500 -c 1 -i 227 -a 1 + -t 1.224 -s 3 -d 4 -p cbr -e 500 -c 1 -i 227 -a 1 r -t 1.22565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 197 -a 1 r -t 1.22565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 200 -a 1 r -t 1.2273 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 228 -a 0 -S 0 -y {16 16} + -t 1.2273 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 228 -a 0 -S 0 -y {16 16} - -t 1.22765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 216 -a 1 h -t 1.22765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 216 -a 1 r -t 1.228 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 226 -a 1 + -t 1.228 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 226 -a 1 r -t 1.22965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 207 -a 1 + -t 1.22965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 207 -a 1 - -t 1.22965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 207 -a 1 h -t 1.22965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 207 -a 1 r -t 1.22965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 203 -a 1 + -t 1.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 232 -a 1 - -t 1.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 232 -a 1 h -t 1.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 232 -a 1 r -t 1.23365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 209 -a 1 + -t 1.23365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 209 -a 1 - -t 1.23365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 209 -a 1 h -t 1.23365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 209 -a 1 r -t 1.234 -s 1 -d 3 -p cbr -e 500 -c 1 -i 229 -a 1 + -t 1.234 -s 3 -d 4 -p cbr -e 500 -c 1 -i 229 -a 1 d -t 1.234 -s 3 -d 4 -p cbr -e 500 -c 1 -i 229 -a 1 - -t 1.23565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 218 -a 0 -S 0 -y {12 12} h -t 1.23565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 218 -a 0 -S 0 -y {-1 -1} + -t 1.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 233 -a 1 - -t 1.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 233 -a 1 h -t 1.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 233 -a 1 + -t 1.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 234 -a 1 - -t 1.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 234 -a 1 h -t 1.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 234 -a 1 r -t 1.24165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 210 -a 0 -S 0 -y {9 9} + -t 1.24165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 210 -a 0 -S 0 -y {9 9} - -t 1.24165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 210 -a 0 -S 0 -y {9 9} h -t 1.24165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 210 -a 0 -S 0 -y {-1 -1} r -t 1.24165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 202 -a 1 r -t 1.24165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 205 -a 1 - -t 1.24365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 219 -a 1 h -t 1.24365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 219 -a 1 r -t 1.244 -s 1 -d 3 -p cbr -e 500 -c 1 -i 231 -a 1 + -t 1.244 -s 3 -d 4 -p cbr -e 500 -c 1 -i 231 -a 1 r -t 1.24565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 212 -a 1 + -t 1.24565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 212 -a 1 - -t 1.24565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 212 -a 1 h -t 1.24565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 212 -a 1 r -t 1.24565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 208 -a 1 - -t 1.24765 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 220 -a 0 -S 0 -y {13 13} h -t 1.24765 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 220 -a 0 -S 0 -y {-1 -1} r -t 1.248 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 230 -a 1 + -t 1.248 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 230 -a 1 + -t 1.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 235 -a 1 - -t 1.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 235 -a 1 h -t 1.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 235 -a 1 r -t 1.25365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 213 -a 0 -S 0 -y {10 10} + -t 1.25365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 213 -a 0 -S 0 -y {10 10} - -t 1.25365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 213 -a 0 -S 0 -y {10 10} h -t 1.25365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 213 -a 0 -S 0 -y {-1 -1} r -t 1.254 -s 1 -d 3 -p cbr -e 500 -c 1 -i 232 -a 1 + -t 1.254 -s 3 -d 4 -p cbr -e 500 -c 1 -i 232 -a 1 - -t 1.25565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 222 -a 1 h -t 1.25565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 222 -a 1 r -t 1.25765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 207 -a 1 r -t 1.25765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 209 -a 1 - -t 1.25965 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 223 -a 0 -S 0 -y {14 14} h -t 1.25965 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 223 -a 0 -S 0 -y {-1 -1} + -t 1.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 236 -a 1 - -t 1.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 236 -a 1 h -t 1.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 236 -a 1 + -t 1.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 237 -a 1 - -t 1.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 237 -a 1 h -t 1.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 237 -a 1 r -t 1.26165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 211 -a 1 + -t 1.26165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 211 -a 1 - -t 1.26165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 211 -a 1 h -t 1.26165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 211 -a 1 r -t 1.26325 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 210 -a 0 -S 0 -y {9 9} + -t 1.26325 -s 5 -d 4 -p ack -e 40 -c 0 -i 238 -a 0 -S 0 -y {9 9} - -t 1.26325 -s 5 -d 4 -p ack -e 40 -c 0 -i 238 -a 0 -S 0 -y {9 9} h -t 1.26325 -s 5 -d 4 -p ack -e 40 -c 0 -i 238 -a 0 -S 0 -y {-1 -1} r -t 1.264 -s 1 -d 3 -p cbr -e 500 -c 1 -i 234 -a 1 + -t 1.264 -s 3 -d 4 -p cbr -e 500 -c 1 -i 234 -a 1 r -t 1.26565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 214 -a 1 + -t 1.26565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 214 -a 1 - -t 1.26565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 214 -a 1 h -t 1.26565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 214 -a 1 - -t 1.26765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 224 -a 1 h -t 1.26765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 224 -a 1 r -t 1.268 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 233 -a 1 + -t 1.268 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 233 -a 1 r -t 1.26965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 212 -a 1 v -t 1.27 sim_annotation 1.27 14 Ack_7 to 14 + -t 1.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 239 -a 1 - -t 1.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 239 -a 1 h -t 1.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 239 -a 1 - -t 1.27165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 227 -a 1 h -t 1.27165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 227 -a 1 r -t 1.27365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 215 -a 0 -S 0 -y {11 11} + -t 1.27365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 215 -a 0 -S 0 -y {11 11} - -t 1.27365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 215 -a 0 -S 0 -y {11 11} h -t 1.27365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 215 -a 0 -S 0 -y {-1 -1} r -t 1.274 -s 1 -d 3 -p cbr -e 500 -c 1 -i 235 -a 1 + -t 1.274 -s 3 -d 4 -p cbr -e 500 -c 1 -i 235 -a 1 r -t 1.27525 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 213 -a 0 -S 0 -y {10 10} + -t 1.27525 -s 5 -d 4 -p ack -e 40 -c 0 -i 240 -a 0 -S 0 -y {10 10} - -t 1.27525 -s 5 -d 4 -p ack -e 40 -c 0 -i 240 -a 0 -S 0 -y {10 10} h -t 1.27525 -s 5 -d 4 -p ack -e 40 -c 0 -i 240 -a 0 -S 0 -y {-1 -1} - -t 1.27565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 228 -a 0 -S 0 -y {16 16} h -t 1.27565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 228 -a 0 -S 0 -y {-1 -1} r -t 1.27765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 217 -a 1 + -t 1.27765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 217 -a 1 - -t 1.27765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 217 -a 1 h -t 1.27765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 217 -a 1 + -t 1.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 241 -a 1 - -t 1.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 241 -a 1 h -t 1.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 241 -a 1 + -t 1.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 242 -a 1 - -t 1.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 242 -a 1 h -t 1.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 242 -a 1 r -t 1.28331 -s 5 -d 4 -p ack -e 40 -c 0 -i 238 -a 0 -S 0 -y {9 9} + -t 1.28331 -s 4 -d 3 -p ack -e 40 -c 0 -i 238 -a 0 -S 0 -y {9 9} - -t 1.28331 -s 4 -d 3 -p ack -e 40 -c 0 -i 238 -a 0 -S 0 -y {9 9} h -t 1.28331 -s 4 -d 3 -p ack -e 40 -c 0 -i 238 -a 0 -S 0 -y {-1 -1} - -t 1.28365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 226 -a 1 h -t 1.28365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 226 -a 1 r -t 1.284 -s 1 -d 3 -p cbr -e 500 -c 1 -i 237 -a 1 + -t 1.284 -s 3 -d 4 -p cbr -e 500 -c 1 -i 237 -a 1 r -t 1.28565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 216 -a 1 + -t 1.28565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 216 -a 1 - -t 1.28565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 216 -a 1 h -t 1.28565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 216 -a 1 r -t 1.288 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 236 -a 1 + -t 1.288 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 236 -a 1 r -t 1.28965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 211 -a 1 r -t 1.28965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 214 -a 1 + -t 1.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 243 -a 1 - -t 1.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 243 -a 1 h -t 1.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 243 -a 1 - -t 1.29165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 231 -a 1 h -t 1.29165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 231 -a 1 r -t 1.29365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 218 -a 0 -S 0 -y {12 12} + -t 1.29365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 218 -a 0 -S 0 -y {12 12} - -t 1.29365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 218 -a 0 -S 0 -y {12 12} h -t 1.29365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 218 -a 0 -S 0 -y {-1 -1} r -t 1.294 -s 1 -d 3 -p cbr -e 500 -c 1 -i 239 -a 1 + -t 1.294 -s 3 -d 4 -p cbr -e 500 -c 1 -i 239 -a 1 r -t 1.29525 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 215 -a 0 -S 0 -y {11 11} + -t 1.29525 -s 5 -d 4 -p ack -e 40 -c 0 -i 244 -a 0 -S 0 -y {11 11} - -t 1.29525 -s 5 -d 4 -p ack -e 40 -c 0 -i 244 -a 0 -S 0 -y {11 11} h -t 1.29525 -s 5 -d 4 -p ack -e 40 -c 0 -i 244 -a 0 -S 0 -y {-1 -1} r -t 1.29531 -s 5 -d 4 -p ack -e 40 -c 0 -i 240 -a 0 -S 0 -y {10 10} + -t 1.29531 -s 4 -d 3 -p ack -e 40 -c 0 -i 240 -a 0 -S 0 -y {10 10} - -t 1.29531 -s 4 -d 3 -p ack -e 40 -c 0 -i 240 -a 0 -S 0 -y {10 10} h -t 1.29531 -s 4 -d 3 -p ack -e 40 -c 0 -i 240 -a 0 -S 0 -y {-1 -1} - -t 1.29565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 230 -a 1 h -t 1.29565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 230 -a 1 r -t 1.29765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 219 -a 1 + -t 1.29765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 219 -a 1 - -t 1.29765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 219 -a 1 h -t 1.29765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 219 -a 1 + -t 1.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 245 -a 1 - -t 1.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 245 -a 1 h -t 1.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 245 -a 1 + -t 1.3 -s 1 -d 3 -p cbr -e 500 -c 1 -i 246 -a 1 - -t 1.3 -s 1 -d 3 -p cbr -e 500 -c 1 -i 246 -a 1 h -t 1.3 -s 1 -d 3 -p cbr -e 500 -c 1 -i 246 -a 1 r -t 1.30165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 217 -a 1 - -t 1.30365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 232 -a 1 h -t 1.30365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 232 -a 1 r -t 1.304 -s 1 -d 3 -p cbr -e 500 -c 1 -i 242 -a 1 + -t 1.304 -s 3 -d 4 -p cbr -e 500 -c 1 -i 242 -a 1 r -t 1.30565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 220 -a 0 -S 0 -y {13 13} + -t 1.30565 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 220 -a 0 -S 0 -y {13 13} - -t 1.30565 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 220 -a 0 -S 0 -y {13 13} h -t 1.30565 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 220 -a 0 -S 0 -y {-1 -1} - -t 1.30765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 234 -a 1 h -t 1.30765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 234 -a 1 r -t 1.308 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 241 -a 1 + -t 1.308 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 241 -a 1 r -t 1.30965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 222 -a 1 + -t 1.30965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 222 -a 1 - -t 1.30965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 222 -a 1 h -t 1.30965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 222 -a 1 + -t 1.31 -s 1 -d 3 -p cbr -e 500 -c 1 -i 247 -a 1 - -t 1.31 -s 1 -d 3 -p cbr -e 500 -c 1 -i 247 -a 1 h -t 1.31 -s 1 -d 3 -p cbr -e 500 -c 1 -i 247 -a 1 - -t 1.31165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 233 -a 1 h -t 1.31165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 233 -a 1 r -t 1.31365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 216 -a 1 r -t 1.314 -s 1 -d 3 -p cbr -e 500 -c 1 -i 243 -a 1 + -t 1.314 -s 3 -d 4 -p cbr -e 500 -c 1 -i 243 -a 1 r -t 1.31525 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 218 -a 0 -S 0 -y {12 12} + -t 1.31525 -s 5 -d 4 -p ack -e 40 -c 0 -i 248 -a 0 -S 0 -y {12 12} - -t 1.31525 -s 5 -d 4 -p ack -e 40 -c 0 -i 248 -a 0 -S 0 -y {12 12} h -t 1.31525 -s 5 -d 4 -p ack -e 40 -c 0 -i 248 -a 0 -S 0 -y {-1 -1} r -t 1.31531 -s 5 -d 4 -p ack -e 40 -c 0 -i 244 -a 0 -S 0 -y {11 11} + -t 1.31531 -s 4 -d 3 -p ack -e 40 -c 0 -i 244 -a 0 -S 0 -y {11 11} - -t 1.31531 -s 4 -d 3 -p ack -e 40 -c 0 -i 244 -a 0 -S 0 -y {11 11} h -t 1.31531 -s 4 -d 3 -p ack -e 40 -c 0 -i 244 -a 0 -S 0 -y {-1 -1} r -t 1.31765 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 223 -a 0 -S 0 -y {14 14} + -t 1.31765 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 223 -a 0 -S 0 -y {14 14} - -t 1.31765 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 223 -a 0 -S 0 -y {14 14} h -t 1.31765 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 223 -a 0 -S 0 -y {-1 -1} - -t 1.31965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 235 -a 1 h -t 1.31965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 235 -a 1 + -t 1.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 249 -a 1 - -t 1.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 249 -a 1 h -t 1.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 249 -a 1 + -t 1.32 -s 1 -d 3 -p cbr -e 500 -c 1 -i 250 -a 1 - -t 1.32 -s 1 -d 3 -p cbr -e 500 -c 1 -i 250 -a 1 h -t 1.32 -s 1 -d 3 -p cbr -e 500 -c 1 -i 250 -a 1 r -t 1.32165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 224 -a 1 + -t 1.32165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 224 -a 1 - -t 1.32165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 224 -a 1 h -t 1.32165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 224 -a 1 r -t 1.32165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 219 -a 1 - -t 1.32365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 237 -a 1 h -t 1.32365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 237 -a 1 r -t 1.324 -s 1 -d 3 -p cbr -e 500 -c 1 -i 246 -a 1 + -t 1.324 -s 3 -d 4 -p cbr -e 500 -c 1 -i 246 -a 1 r -t 1.32565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 227 -a 1 + -t 1.32565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 227 -a 1 - -t 1.32565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 227 -a 1 h -t 1.32565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 227 -a 1 r -t 1.32725 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 220 -a 0 -S 0 -y {13 13} + -t 1.32725 -s 5 -d 4 -p ack -e 40 -c 0 -i 251 -a 0 -S 0 -y {13 13} - -t 1.32725 -s 5 -d 4 -p ack -e 40 -c 0 -i 251 -a 0 -S 0 -y {13 13} h -t 1.32725 -s 5 -d 4 -p ack -e 40 -c 0 -i 251 -a 0 -S 0 -y {-1 -1} - -t 1.32765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 236 -a 1 h -t 1.32765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 236 -a 1 r -t 1.328 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 245 -a 1 + -t 1.328 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 245 -a 1 + -t 1.33 -s 1 -d 3 -p cbr -e 500 -c 1 -i 252 -a 1 - -t 1.33 -s 1 -d 3 -p cbr -e 500 -c 1 -i 252 -a 1 h -t 1.33 -s 1 -d 3 -p cbr -e 500 -c 1 -i 252 -a 1 r -t 1.33363 -s 4 -d 3 -p ack -e 40 -c 0 -i 238 -a 0 -S 0 -y {9 9} + -t 1.33363 -s 3 -d 0 -p ack -e 40 -c 0 -i 238 -a 0 -S 0 -y {9 9} - -t 1.33363 -s 3 -d 0 -p ack -e 40 -c 0 -i 238 -a 0 -S 0 -f 0 -m 1 -y {9 9} h -t 1.33363 -s 3 -d 0 -p ack -e 40 -c 0 -i 238 -a 0 -S 0 -y {-1 -1} r -t 1.33365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 228 -a 0 -S 0 -y {16 16} + -t 1.33365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 228 -a 0 -S 0 -y {16 16} - -t 1.33365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 228 -a 0 -S 0 -y {16 16} h -t 1.33365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 228 -a 0 -S 0 -y {-1 -1} r -t 1.33365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 222 -a 1 r -t 1.334 -s 1 -d 3 -p cbr -e 500 -c 1 -i 247 -a 1 + -t 1.334 -s 3 -d 4 -p cbr -e 500 -c 1 -i 247 -a 1 r -t 1.33531 -s 5 -d 4 -p ack -e 40 -c 0 -i 248 -a 0 -S 0 -y {12 12} + -t 1.33531 -s 4 -d 3 -p ack -e 40 -c 0 -i 248 -a 0 -S 0 -y {12 12} - -t 1.33531 -s 4 -d 3 -p ack -e 40 -c 0 -i 248 -a 0 -S 0 -y {12 12} h -t 1.33531 -s 4 -d 3 -p ack -e 40 -c 0 -i 248 -a 0 -S 0 -y {-1 -1} - -t 1.33565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 239 -a 1 h -t 1.33565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 239 -a 1 r -t 1.33925 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 223 -a 0 -S 0 -y {14 14} + -t 1.33925 -s 5 -d 4 -p ack -e 40 -c 0 -i 253 -a 0 -S 0 -y {14 14} - -t 1.33925 -s 5 -d 4 -p ack -e 40 -c 0 -i 253 -a 0 -S 0 -y {14 14} h -t 1.33925 -s 5 -d 4 -p ack -e 40 -c 0 -i 253 -a 0 -S 0 -y {-1 -1} - -t 1.33965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 242 -a 1 h -t 1.33965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 242 -a 1 + -t 1.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 254 -a 1 - -t 1.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 254 -a 1 h -t 1.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 254 -a 1 + -t 1.34 -s 1 -d 3 -p cbr -e 500 -c 1 -i 255 -a 1 - -t 1.34 -s 1 -d 3 -p cbr -e 500 -c 1 -i 255 -a 1 h -t 1.34 -s 1 -d 3 -p cbr -e 500 -c 1 -i 255 -a 1 r -t 1.34165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 226 -a 1 + -t 1.34165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 226 -a 1 - -t 1.34165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 226 -a 1 h -t 1.34165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 226 -a 1 - -t 1.34365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 241 -a 1 h -t 1.34365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 241 -a 1 r -t 1.344 -s 1 -d 3 -p cbr -e 500 -c 1 -i 250 -a 1 + -t 1.344 -s 3 -d 4 -p cbr -e 500 -c 1 -i 250 -a 1 r -t 1.34563 -s 4 -d 3 -p ack -e 40 -c 0 -i 240 -a 0 -S 0 -y {10 10} + -t 1.34563 -s 3 -d 0 -p ack -e 40 -c 0 -i 240 -a 0 -S 0 -y {10 10} - -t 1.34563 -s 3 -d 0 -p ack -e 40 -c 0 -i 240 -a 0 -S 0 -f 0 -m 1 -y {10 10} h -t 1.34563 -s 3 -d 0 -p ack -e 40 -c 0 -i 240 -a 0 -S 0 -y {-1 -1} r -t 1.34565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 231 -a 1 + -t 1.34565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 231 -a 1 - -t 1.34565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 231 -a 1 h -t 1.34565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 231 -a 1 r -t 1.34565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 224 -a 1 r -t 1.34731 -s 5 -d 4 -p ack -e 40 -c 0 -i 251 -a 0 -S 0 -y {13 13} + -t 1.34731 -s 4 -d 3 -p ack -e 40 -c 0 -i 251 -a 0 -S 0 -y {13 13} - -t 1.34731 -s 4 -d 3 -p ack -e 40 -c 0 -i 251 -a 0 -S 0 -y {13 13} h -t 1.34731 -s 4 -d 3 -p ack -e 40 -c 0 -i 251 -a 0 -S 0 -y {-1 -1} r -t 1.348 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 249 -a 1 + -t 1.348 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 249 -a 1 r -t 1.34965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 227 -a 1 v -t 1.3500000000000001 sim_annotation 1.3500000000000001 15 Send Packet_17 to 22 + -t 1.35 -s 1 -d 3 -p cbr -e 500 -c 1 -i 256 -a 1 - -t 1.35 -s 1 -d 3 -p cbr -e 500 -c 1 -i 256 -a 1 h -t 1.35 -s 1 -d 3 -p cbr -e 500 -c 1 -i 256 -a 1 - -t 1.35165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 243 -a 1 h -t 1.35165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 243 -a 1 r -t 1.35365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 230 -a 1 + -t 1.35365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 230 -a 1 - -t 1.35365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 230 -a 1 h -t 1.35365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 230 -a 1 r -t 1.3537 -s 3 -d 0 -p ack -e 40 -c 0 -i 238 -a 0 -S 0 -y {9 9} + -t 1.3537 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 257 -a 0 -S 0 -f 0 -m 0 -y {17 17} - -t 1.3537 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 257 -a 0 -S 0 -y {17 17} h -t 1.3537 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 257 -a 0 -S 0 -y {-1 -1} r -t 1.354 -s 1 -d 3 -p cbr -e 500 -c 1 -i 252 -a 1 + -t 1.354 -s 3 -d 4 -p cbr -e 500 -c 1 -i 252 -a 1 r -t 1.35525 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 228 -a 0 -S 0 -y {16 16} + -t 1.35525 -s 5 -d 4 -p ack -e 40 -c 0 -i 258 -a 0 -S 0 -y {14 14} - -t 1.35525 -s 5 -d 4 -p ack -e 40 -c 0 -i 258 -a 0 -S 0 -y {14 14} h -t 1.35525 -s 5 -d 4 -p ack -e 40 -c 0 -i 258 -a 0 -S 0 -y {-1 -1} - -t 1.35565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 246 -a 1 h -t 1.35565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 246 -a 1 r -t 1.35765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 232 -a 1 + -t 1.35765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 232 -a 1 - -t 1.35765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 232 -a 1 h -t 1.35765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 232 -a 1 r -t 1.35931 -s 5 -d 4 -p ack -e 40 -c 0 -i 253 -a 0 -S 0 -y {14 14} + -t 1.35931 -s 4 -d 3 -p ack -e 40 -c 0 -i 253 -a 0 -S 0 -y {14 14} - -t 1.35931 -s 4 -d 3 -p ack -e 40 -c 0 -i 253 -a 0 -S 0 -y {14 14} h -t 1.35931 -s 4 -d 3 -p ack -e 40 -c 0 -i 253 -a 0 -S 0 -y {-1 -1} - -t 1.35965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 245 -a 1 h -t 1.35965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 245 -a 1 + -t 1.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 259 -a 1 - -t 1.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 259 -a 1 h -t 1.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 259 -a 1 + -t 1.36 -s 1 -d 3 -p cbr -e 500 -c 1 -i 260 -a 1 - -t 1.36 -s 1 -d 3 -p cbr -e 500 -c 1 -i 260 -a 1 h -t 1.36 -s 1 -d 3 -p cbr -e 500 -c 1 -i 260 -a 1 r -t 1.36165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 234 -a 1 + -t 1.36165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 234 -a 1 - -t 1.36165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 234 -a 1 h -t 1.36165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 234 -a 1 r -t 1.364 -s 1 -d 3 -p cbr -e 500 -c 1 -i 255 -a 1 + -t 1.364 -s 3 -d 4 -p cbr -e 500 -c 1 -i 255 -a 1 r -t 1.36563 -s 4 -d 3 -p ack -e 40 -c 0 -i 244 -a 0 -S 0 -y {11 11} + -t 1.36563 -s 3 -d 0 -p ack -e 40 -c 0 -i 244 -a 0 -S 0 -y {11 11} - -t 1.36563 -s 3 -d 0 -p ack -e 40 -c 0 -i 244 -a 0 -S 0 -f 0 -m 1 -y {11 11} h -t 1.36563 -s 3 -d 0 -p ack -e 40 -c 0 -i 244 -a 0 -S 0 -y {-1 -1} r -t 1.3657 -s 3 -d 0 -p ack -e 40 -c 0 -i 240 -a 0 -S 0 -y {10 10} + -t 1.3657 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 261 -a 0 -S 0 -f 0 -m 0 -y {18 18} - -t 1.3657 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 261 -a 0 -S 0 -y {18 18} h -t 1.3657 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 261 -a 0 -S 0 -y {-1 -1} - -t 1.36765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 247 -a 1 h -t 1.36765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 247 -a 1 r -t 1.368 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 254 -a 1 + -t 1.368 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 254 -a 1 r -t 1.36965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 233 -a 1 + -t 1.36965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 233 -a 1 - -t 1.36965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 233 -a 1 h -t 1.36965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 233 -a 1 r -t 1.36965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 226 -a 1 r -t 1.36965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 231 -a 1 + -t 1.37 -s 1 -d 3 -p cbr -e 500 -c 1 -i 262 -a 1 - -t 1.37 -s 1 -d 3 -p cbr -e 500 -c 1 -i 262 -a 1 h -t 1.37 -s 1 -d 3 -p cbr -e 500 -c 1 -i 262 -a 1 - -t 1.37165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 250 -a 1 h -t 1.37165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 250 -a 1 r -t 1.37365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 235 -a 1 + -t 1.37365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 235 -a 1 - -t 1.37365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 235 -a 1 h -t 1.37365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 235 -a 1 r -t 1.374 -s 1 -d 3 -p cbr -e 500 -c 1 -i 256 -a 1 + -t 1.374 -s 3 -d 4 -p cbr -e 500 -c 1 -i 256 -a 1 r -t 1.3753 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 257 -a 0 -S 0 -y {17 17} + -t 1.3753 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 257 -a 0 -S 0 -y {17 17} r -t 1.37531 -s 5 -d 4 -p ack -e 40 -c 0 -i 258 -a 0 -S 0 -y {14 14} + -t 1.37531 -s 4 -d 3 -p ack -e 40 -c 0 -i 258 -a 0 -S 0 -y {14 14} - -t 1.37531 -s 4 -d 3 -p ack -e 40 -c 0 -i 258 -a 0 -S 0 -y {14 14} h -t 1.37531 -s 4 -d 3 -p ack -e 40 -c 0 -i 258 -a 0 -S 0 -y {-1 -1} - -t 1.37565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 249 -a 1 h -t 1.37565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 249 -a 1 r -t 1.37765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 237 -a 1 + -t 1.37765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 237 -a 1 - -t 1.37765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 237 -a 1 h -t 1.37765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 237 -a 1 + -t 1.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 263 -a 1 - -t 1.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 263 -a 1 h -t 1.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 263 -a 1 + -t 1.38 -s 1 -d 3 -p cbr -e 500 -c 1 -i 264 -a 1 - -t 1.38 -s 1 -d 3 -p cbr -e 500 -c 1 -i 264 -a 1 h -t 1.38 -s 1 -d 3 -p cbr -e 500 -c 1 -i 264 -a 1 r -t 1.38165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 230 -a 1 r -t 1.38165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 232 -a 1 - -t 1.38365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 252 -a 1 h -t 1.38365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 252 -a 1 r -t 1.384 -s 1 -d 3 -p cbr -e 500 -c 1 -i 260 -a 1 + -t 1.384 -s 3 -d 4 -p cbr -e 500 -c 1 -i 260 -a 1 r -t 1.38563 -s 4 -d 3 -p ack -e 40 -c 0 -i 248 -a 0 -S 0 -y {12 12} + -t 1.38563 -s 3 -d 0 -p ack -e 40 -c 0 -i 248 -a 0 -S 0 -y {12 12} - -t 1.38563 -s 3 -d 0 -p ack -e 40 -c 0 -i 248 -a 0 -S 0 -f 0 -m 1 -y {12 12} h -t 1.38563 -s 3 -d 0 -p ack -e 40 -c 0 -i 248 -a 0 -S 0 -y {-1 -1} r -t 1.38565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 236 -a 1 + -t 1.38565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 236 -a 1 - -t 1.38565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 236 -a 1 h -t 1.38565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 236 -a 1 r -t 1.38565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 234 -a 1 r -t 1.3857 -s 3 -d 0 -p ack -e 40 -c 0 -i 244 -a 0 -S 0 -y {11 11} + -t 1.3857 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 265 -a 0 -S 0 -f 0 -m 0 -y {19 19} - -t 1.3857 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 265 -a 0 -S 0 -y {19 19} h -t 1.3857 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 265 -a 0 -S 0 -y {-1 -1} r -t 1.3873 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 261 -a 0 -S 0 -y {18 18} + -t 1.3873 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 261 -a 0 -S 0 -y {18 18} - -t 1.38765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 255 -a 1 h -t 1.38765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 255 -a 1 r -t 1.388 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 259 -a 1 + -t 1.388 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 259 -a 1 r -t 1.38965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 239 -a 1 + -t 1.38965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 239 -a 1 - -t 1.38965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 239 -a 1 h -t 1.38965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 239 -a 1 + -t 1.39 -s 1 -d 3 -p cbr -e 500 -c 1 -i 266 -a 1 - -t 1.39 -s 1 -d 3 -p cbr -e 500 -c 1 -i 266 -a 1 h -t 1.39 -s 1 -d 3 -p cbr -e 500 -c 1 -i 266 -a 1 - -t 1.39165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 254 -a 1 h -t 1.39165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 254 -a 1 r -t 1.39365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 242 -a 1 + -t 1.39365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 242 -a 1 - -t 1.39365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 242 -a 1 h -t 1.39365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 242 -a 1 r -t 1.394 -s 1 -d 3 -p cbr -e 500 -c 1 -i 262 -a 1 + -t 1.394 -s 3 -d 4 -p cbr -e 500 -c 1 -i 262 -a 1 r -t 1.39763 -s 4 -d 3 -p ack -e 40 -c 0 -i 251 -a 0 -S 0 -y {13 13} + -t 1.39763 -s 3 -d 0 -p ack -e 40 -c 0 -i 251 -a 0 -S 0 -y {13 13} - -t 1.39763 -s 3 -d 0 -p ack -e 40 -c 0 -i 251 -a 0 -S 0 -f 0 -m 1 -y {13 13} h -t 1.39763 -s 3 -d 0 -p ack -e 40 -c 0 -i 251 -a 0 -S 0 -y {-1 -1} r -t 1.39765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 233 -a 1 r -t 1.39765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 235 -a 1 - -t 1.39965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 256 -a 1 h -t 1.39965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 256 -a 1 + -t 1.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 267 -a 1 - -t 1.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 267 -a 1 h -t 1.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 267 -a 1 + -t 1.4 -s 1 -d 3 -p cbr -e 500 -c 1 -i 268 -a 1 - -t 1.4 -s 1 -d 3 -p cbr -e 500 -c 1 -i 268 -a 1 h -t 1.4 -s 1 -d 3 -p cbr -e 500 -c 1 -i 268 -a 1 r -t 1.40165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 241 -a 1 + -t 1.40165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 241 -a 1 - -t 1.40165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 241 -a 1 h -t 1.40165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 241 -a 1 r -t 1.40165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 237 -a 1 - -t 1.40365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 257 -a 0 -S 0 -y {17 17} h -t 1.40365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 257 -a 0 -S 0 -y {-1 -1} r -t 1.404 -s 1 -d 3 -p cbr -e 500 -c 1 -i 264 -a 1 + -t 1.404 -s 3 -d 4 -p cbr -e 500 -c 1 -i 264 -a 1 r -t 1.40565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 243 -a 1 + -t 1.40565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 243 -a 1 - -t 1.40565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 243 -a 1 h -t 1.40565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 243 -a 1 r -t 1.4057 -s 3 -d 0 -p ack -e 40 -c 0 -i 248 -a 0 -S 0 -y {12 12} + -t 1.4057 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 269 -a 0 -S 0 -f 0 -m 0 -y {20 20} - -t 1.4057 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 269 -a 0 -S 0 -y {20 20} h -t 1.4057 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 269 -a 0 -S 0 -y {-1 -1} r -t 1.4073 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 265 -a 0 -S 0 -y {19 19} + -t 1.4073 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 265 -a 0 -S 0 -y {19 19} r -t 1.408 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 263 -a 1 + -t 1.408 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 263 -a 1 r -t 1.40963 -s 4 -d 3 -p ack -e 40 -c 0 -i 253 -a 0 -S 0 -y {14 14} + -t 1.40963 -s 3 -d 0 -p ack -e 40 -c 0 -i 253 -a 0 -S 0 -y {14 14} - -t 1.40963 -s 3 -d 0 -p ack -e 40 -c 0 -i 253 -a 0 -S 0 -f 0 -m 1 -y {14 14} h -t 1.40963 -s 3 -d 0 -p ack -e 40 -c 0 -i 253 -a 0 -S 0 -y {-1 -1} r -t 1.40965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 246 -a 1 + -t 1.40965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 246 -a 1 - -t 1.40965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 246 -a 1 h -t 1.40965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 246 -a 1 + -t 1.41 -s 1 -d 3 -p cbr -e 500 -c 1 -i 270 -a 1 - -t 1.41 -s 1 -d 3 -p cbr -e 500 -c 1 -i 270 -a 1 h -t 1.41 -s 1 -d 3 -p cbr -e 500 -c 1 -i 270 -a 1 - -t 1.41165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 260 -a 1 h -t 1.41165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 260 -a 1 r -t 1.41365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 236 -a 1 r -t 1.41365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 239 -a 1 r -t 1.414 -s 1 -d 3 -p cbr -e 500 -c 1 -i 266 -a 1 + -t 1.414 -s 3 -d 4 -p cbr -e 500 -c 1 -i 266 -a 1 - -t 1.41565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 261 -a 0 -S 0 -y {18 18} h -t 1.41565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 261 -a 0 -S 0 -y {-1 -1} r -t 1.41765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 245 -a 1 + -t 1.41765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 245 -a 1 - -t 1.41765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 245 -a 1 h -t 1.41765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 245 -a 1 r -t 1.41765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 242 -a 1 r -t 1.4177 -s 3 -d 0 -p ack -e 40 -c 0 -i 251 -a 0 -S 0 -y {13 13} + -t 1.4177 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 271 -a 0 -S 0 -f 0 -m 0 -y {21 21} - -t 1.4177 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 271 -a 0 -S 0 -y {21 21} h -t 1.4177 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 271 -a 0 -S 0 -y {-1 -1} + -t 1.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 272 -a 1 - -t 1.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 272 -a 1 h -t 1.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 272 -a 1 + -t 1.42 -s 1 -d 3 -p cbr -e 500 -c 1 -i 273 -a 1 - -t 1.42 -s 1 -d 3 -p cbr -e 500 -c 1 -i 273 -a 1 h -t 1.42 -s 1 -d 3 -p cbr -e 500 -c 1 -i 273 -a 1 r -t 1.42165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 247 -a 1 + -t 1.42165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 247 -a 1 - -t 1.42165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 247 -a 1 h -t 1.42165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 247 -a 1 - -t 1.42365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 259 -a 1 h -t 1.42365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 259 -a 1 r -t 1.424 -s 1 -d 3 -p cbr -e 500 -c 1 -i 268 -a 1 + -t 1.424 -s 3 -d 4 -p cbr -e 500 -c 1 -i 268 -a 1 r -t 1.42563 -s 4 -d 3 -p ack -e 40 -c 0 -i 258 -a 0 -S 0 -y {14 14} + -t 1.42563 -s 3 -d 0 -p ack -e 40 -c 0 -i 258 -a 0 -S 0 -y {14 14} - -t 1.42563 -s 3 -d 0 -p ack -e 40 -c 0 -i 258 -a 0 -S 0 -f 0 -m 1 -y {14 14} h -t 1.42563 -s 3 -d 0 -p ack -e 40 -c 0 -i 258 -a 0 -S 0 -y {-1 -1} r -t 1.42565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 250 -a 1 + -t 1.42565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 250 -a 1 - -t 1.42565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 250 -a 1 h -t 1.42565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 250 -a 1 r -t 1.4273 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 269 -a 0 -S 0 -y {20 20} + -t 1.4273 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 269 -a 0 -S 0 -y {20 20} r -t 1.428 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 267 -a 1 + -t 1.428 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 267 -a 1 r -t 1.42965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 241 -a 1 r -t 1.42965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 243 -a 1 r -t 1.4297 -s 3 -d 0 -p ack -e 40 -c 0 -i 253 -a 0 -S 0 -y {14 14} + -t 1.4297 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 274 -a 0 -S 0 -f 0 -m 0 -y {22 22} - -t 1.4297 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 274 -a 0 -S 0 -y {22 22} h -t 1.4297 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 274 -a 0 -S 0 -y {-1 -1} + -t 1.43 -s 1 -d 3 -p cbr -e 500 -c 1 -i 275 -a 1 - -t 1.43 -s 1 -d 3 -p cbr -e 500 -c 1 -i 275 -a 1 h -t 1.43 -s 1 -d 3 -p cbr -e 500 -c 1 -i 275 -a 1 - -t 1.43165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 262 -a 1 h -t 1.43165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 262 -a 1 r -t 1.43365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 249 -a 1 + -t 1.43365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 249 -a 1 - -t 1.43365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 249 -a 1 h -t 1.43365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 249 -a 1 r -t 1.43365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 246 -a 1 r -t 1.434 -s 1 -d 3 -p cbr -e 500 -c 1 -i 270 -a 1 + -t 1.434 -s 3 -d 4 -p cbr -e 500 -c 1 -i 270 -a 1 - -t 1.43565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 264 -a 1 h -t 1.43565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 264 -a 1 r -t 1.43765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 252 -a 1 + -t 1.43765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 252 -a 1 - -t 1.43765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 252 -a 1 h -t 1.43765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 252 -a 1 r -t 1.4393 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 271 -a 0 -S 0 -y {21 21} + -t 1.4393 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 271 -a 0 -S 0 -y {21 21} - -t 1.43965 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 265 -a 0 -S 0 -y {19 19} h -t 1.43965 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 265 -a 0 -S 0 -y {-1 -1} + -t 1.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 276 -a 1 - -t 1.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 276 -a 1 h -t 1.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 276 -a 1 + -t 1.44 -s 1 -d 3 -p cbr -e 500 -c 1 -i 277 -a 1 - -t 1.44 -s 1 -d 3 -p cbr -e 500 -c 1 -i 277 -a 1 h -t 1.44 -s 1 -d 3 -p cbr -e 500 -c 1 -i 277 -a 1 r -t 1.44165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 255 -a 1 + -t 1.44165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 255 -a 1 - -t 1.44165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 255 -a 1 h -t 1.44165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 255 -a 1 r -t 1.444 -s 1 -d 3 -p cbr -e 500 -c 1 -i 273 -a 1 + -t 1.444 -s 3 -d 4 -p cbr -e 500 -c 1 -i 273 -a 1 r -t 1.44565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 245 -a 1 r -t 1.44565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 247 -a 1 r -t 1.4457 -s 3 -d 0 -p ack -e 40 -c 0 -i 258 -a 0 -S 0 -y {14 14} - -t 1.44765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 263 -a 1 h -t 1.44765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 263 -a 1 r -t 1.448 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 272 -a 1 + -t 1.448 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 272 -a 1 r -t 1.44965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 254 -a 1 + -t 1.44965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 254 -a 1 - -t 1.44965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 254 -a 1 h -t 1.44965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 254 -a 1 r -t 1.44965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 250 -a 1 + -t 1.45 -s 1 -d 3 -p cbr -e 500 -c 1 -i 278 -a 1 - -t 1.45 -s 1 -d 3 -p cbr -e 500 -c 1 -i 278 -a 1 h -t 1.45 -s 1 -d 3 -p cbr -e 500 -c 1 -i 278 -a 1 r -t 1.4513 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 274 -a 0 -S 0 -y {22 22} + -t 1.4513 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 274 -a 0 -S 0 -y {22 22} r -t 1.45365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 256 -a 1 + -t 1.45365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 256 -a 1 - -t 1.45365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 256 -a 1 h -t 1.45365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 256 -a 1 r -t 1.454 -s 1 -d 3 -p cbr -e 500 -c 1 -i 275 -a 1 + -t 1.454 -s 3 -d 4 -p cbr -e 500 -c 1 -i 275 -a 1 d -t 1.454 -s 3 -d 4 -p cbr -e 500 -c 1 -i 275 -a 1 - -t 1.45565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 266 -a 1 h -t 1.45565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 266 -a 1 - -t 1.45965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 268 -a 1 h -t 1.45965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 268 -a 1 + -t 1.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 279 -a 1 - -t 1.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 279 -a 1 h -t 1.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 279 -a 1 + -t 1.46 -s 1 -d 3 -p cbr -e 500 -c 1 -i 280 -a 1 - -t 1.46 -s 1 -d 3 -p cbr -e 500 -c 1 -i 280 -a 1 h -t 1.46 -s 1 -d 3 -p cbr -e 500 -c 1 -i 280 -a 1 r -t 1.46165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 257 -a 0 -S 0 -y {17 17} + -t 1.46165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 257 -a 0 -S 0 -y {17 17} - -t 1.46165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 257 -a 0 -S 0 -y {17 17} h -t 1.46165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 257 -a 0 -S 0 -y {-1 -1} r -t 1.46165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 249 -a 1 r -t 1.46165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 252 -a 1 - -t 1.46365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 269 -a 0 -S 0 -y {20 20} h -t 1.46365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 269 -a 0 -S 0 -y {-1 -1} r -t 1.464 -s 1 -d 3 -p cbr -e 500 -c 1 -i 277 -a 1 + -t 1.464 -s 3 -d 4 -p cbr -e 500 -c 1 -i 277 -a 1 r -t 1.46565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 260 -a 1 + -t 1.46565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 260 -a 1 - -t 1.46565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 260 -a 1 h -t 1.46565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 260 -a 1 r -t 1.46565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 255 -a 1 r -t 1.468 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 276 -a 1 + -t 1.468 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 276 -a 1 + -t 1.47 -s 1 -d 3 -p cbr -e 500 -c 1 -i 281 -a 1 - -t 1.47 -s 1 -d 3 -p cbr -e 500 -c 1 -i 281 -a 1 h -t 1.47 -s 1 -d 3 -p cbr -e 500 -c 1 -i 281 -a 1 - -t 1.47165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 267 -a 1 h -t 1.47165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 267 -a 1 r -t 1.47365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 261 -a 0 -S 0 -y {18 18} + -t 1.47365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 261 -a 0 -S 0 -y {18 18} - -t 1.47365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 261 -a 0 -S 0 -y {18 18} h -t 1.47365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 261 -a 0 -S 0 -y {-1 -1} r -t 1.474 -s 1 -d 3 -p cbr -e 500 -c 1 -i 278 -a 1 + -t 1.474 -s 3 -d 4 -p cbr -e 500 -c 1 -i 278 -a 1 r -t 1.47765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 254 -a 1 r -t 1.47765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 256 -a 1 - -t 1.47965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 270 -a 1 h -t 1.47965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 270 -a 1 + -t 1.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 282 -a 1 - -t 1.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 282 -a 1 h -t 1.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 282 -a 1 + -t 1.48 -s 1 -d 3 -p cbr -e 500 -c 1 -i 283 -a 1 - -t 1.48 -s 1 -d 3 -p cbr -e 500 -c 1 -i 283 -a 1 h -t 1.48 -s 1 -d 3 -p cbr -e 500 -c 1 -i 283 -a 1 r -t 1.48165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 259 -a 1 + -t 1.48165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 259 -a 1 - -t 1.48165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 259 -a 1 h -t 1.48165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 259 -a 1 r -t 1.48325 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 257 -a 0 -S 0 -y {17 17} + -t 1.48325 -s 5 -d 4 -p ack -e 40 -c 0 -i 284 -a 0 -S 0 -y {14 14} - -t 1.48325 -s 5 -d 4 -p ack -e 40 -c 0 -i 284 -a 0 -S 0 -y {14 14} h -t 1.48325 -s 5 -d 4 -p ack -e 40 -c 0 -i 284 -a 0 -S 0 -y {-1 -1} - -t 1.48365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 271 -a 0 -S 0 -y {21 21} h -t 1.48365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 271 -a 0 -S 0 -y {-1 -1} r -t 1.484 -s 1 -d 3 -p cbr -e 500 -c 1 -i 280 -a 1 + -t 1.484 -s 3 -d 4 -p cbr -e 500 -c 1 -i 280 -a 1 r -t 1.48565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 262 -a 1 + -t 1.48565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 262 -a 1 - -t 1.48565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 262 -a 1 h -t 1.48565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 262 -a 1 r -t 1.488 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 279 -a 1 + -t 1.488 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 279 -a 1 r -t 1.48965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 264 -a 1 + -t 1.48965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 264 -a 1 r -t 1.48965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 260 -a 1 - -t 1.48965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 264 -a 1 h -t 1.48965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 264 -a 1 v -t 1.49 sim_annotation 1.49 16 6 Ack_14s + -t 1.49 -s 1 -d 3 -p cbr -e 500 -c 1 -i 285 -a 1 - -t 1.49 -s 1 -d 3 -p cbr -e 500 -c 1 -i 285 -a 1 h -t 1.49 -s 1 -d 3 -p cbr -e 500 -c 1 -i 285 -a 1 - -t 1.49165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 273 -a 1 h -t 1.49165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 273 -a 1 r -t 1.494 -s 1 -d 3 -p cbr -e 500 -c 1 -i 281 -a 1 + -t 1.494 -s 3 -d 4 -p cbr -e 500 -c 1 -i 281 -a 1 r -t 1.49525 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 261 -a 0 -S 0 -y {18 18} + -t 1.49525 -s 5 -d 4 -p ack -e 40 -c 0 -i 286 -a 0 -S 0 -y {14 14} - -t 1.49525 -s 5 -d 4 -p ack -e 40 -c 0 -i 286 -a 0 -S 0 -y {14 14} h -t 1.49525 -s 5 -d 4 -p ack -e 40 -c 0 -i 286 -a 0 -S 0 -y {-1 -1} - -t 1.49565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 272 -a 1 h -t 1.49565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 272 -a 1 r -t 1.49765 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 265 -a 0 -S 0 -y {19 19} + -t 1.49765 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 265 -a 0 -S 0 -y {19 19} - -t 1.49765 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 265 -a 0 -S 0 -y {19 19} h -t 1.49765 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 265 -a 0 -S 0 -y {-1 -1} + -t 1.5 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 287 -a 1 - -t 1.5 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 287 -a 1 h -t 1.5 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 287 -a 1 + -t 1.5 -s 1 -d 3 -p cbr -e 500 -c 1 -i 288 -a 1 - -t 1.5 -s 1 -d 3 -p cbr -e 500 -c 1 -i 288 -a 1 h -t 1.5 -s 1 -d 3 -p cbr -e 500 -c 1 -i 288 -a 1 r -t 1.50331 -s 5 -d 4 -p ack -e 40 -c 0 -i 284 -a 0 -S 0 -y {14 14} + -t 1.50331 -s 4 -d 3 -p ack -e 40 -c 0 -i 284 -a 0 -S 0 -y {14 14} - -t 1.50331 -s 4 -d 3 -p ack -e 40 -c 0 -i 284 -a 0 -S 0 -y {14 14} h -t 1.50331 -s 4 -d 3 -p ack -e 40 -c 0 -i 284 -a 0 -S 0 -y {-1 -1} - -t 1.50365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 274 -a 0 -S 0 -y {22 22} h -t 1.50365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 274 -a 0 -S 0 -y {-1 -1} r -t 1.504 -s 1 -d 3 -p cbr -e 500 -c 1 -i 283 -a 1 + -t 1.504 -s 3 -d 4 -p cbr -e 500 -c 1 -i 283 -a 1 r -t 1.50565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 263 -a 1 + -t 1.50565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 263 -a 1 - -t 1.50565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 263 -a 1 h -t 1.50565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 263 -a 1 r -t 1.508 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 282 -a 1 + -t 1.508 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 282 -a 1 r -t 1.50965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 266 -a 1 + -t 1.50965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 266 -a 1 - -t 1.50965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 266 -a 1 h -t 1.50965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 266 -a 1 r -t 1.50965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 259 -a 1 r -t 1.50965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 262 -a 1 - -t 1.51165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 277 -a 1 h -t 1.51165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 277 -a 1 r -t 1.51365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 268 -a 1 + -t 1.51365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 268 -a 1 r -t 1.51365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 264 -a 1 - -t 1.51365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 268 -a 1 h -t 1.51365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 268 -a 1 r -t 1.514 -s 1 -d 3 -p cbr -e 500 -c 1 -i 285 -a 1 + -t 1.514 -s 3 -d 4 -p cbr -e 500 -c 1 -i 285 -a 1 r -t 1.51531 -s 5 -d 4 -p ack -e 40 -c 0 -i 286 -a 0 -S 0 -y {14 14} + -t 1.51531 -s 4 -d 3 -p ack -e 40 -c 0 -i 286 -a 0 -S 0 -y {14 14} - -t 1.51531 -s 4 -d 3 -p ack -e 40 -c 0 -i 286 -a 0 -S 0 -y {14 14} h -t 1.51531 -s 4 -d 3 -p ack -e 40 -c 0 -i 286 -a 0 -S 0 -y {-1 -1} - -t 1.51565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 276 -a 1 h -t 1.51565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 276 -a 1 r -t 1.51925 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 265 -a 0 -S 0 -y {19 19} + -t 1.51925 -s 5 -d 4 -p ack -e 40 -c 0 -i 289 -a 0 -S 0 -y {14 14} - -t 1.51925 -s 5 -d 4 -p ack -e 40 -c 0 -i 289 -a 0 -S 0 -y {14 14} h -t 1.51925 -s 5 -d 4 -p ack -e 40 -c 0 -i 289 -a 0 -S 0 -y {-1 -1} + -t 1.52 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 290 -a 1 - -t 1.52 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 290 -a 1 h -t 1.52 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 290 -a 1 + -t 1.52 -s 1 -d 3 -p cbr -e 500 -c 1 -i 291 -a 1 - -t 1.52 -s 1 -d 3 -p cbr -e 500 -c 1 -i 291 -a 1 h -t 1.52 -s 1 -d 3 -p cbr -e 500 -c 1 -i 291 -a 1 r -t 1.52165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 269 -a 0 -S 0 -y {20 20} + -t 1.52165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 269 -a 0 -S 0 -y {20 20} - -t 1.52165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 269 -a 0 -S 0 -y {20 20} h -t 1.52165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 269 -a 0 -S 0 -y {-1 -1} - -t 1.52365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 278 -a 1 h -t 1.52365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 278 -a 1 r -t 1.524 -s 1 -d 3 -p cbr -e 500 -c 1 -i 288 -a 1 + -t 1.524 -s 3 -d 4 -p cbr -e 500 -c 1 -i 288 -a 1 - -t 1.52765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 280 -a 1 h -t 1.52765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 280 -a 1 r -t 1.528 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 287 -a 1 + -t 1.528 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 287 -a 1 r -t 1.52965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 267 -a 1 + -t 1.52965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 267 -a 1 - -t 1.52965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 267 -a 1 h -t 1.52965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 267 -a 1 - -t 1.53165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 279 -a 1 h -t 1.53165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 279 -a 1 r -t 1.53365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 270 -a 1 + -t 1.53365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 270 -a 1 - -t 1.53365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 270 -a 1 h -t 1.53365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 270 -a 1 r -t 1.53365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 263 -a 1 r -t 1.53365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 266 -a 1 r -t 1.53765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 268 -a 1 r -t 1.53931 -s 5 -d 4 -p ack -e 40 -c 0 -i 289 -a 0 -S 0 -y {14 14} + -t 1.53931 -s 4 -d 3 -p ack -e 40 -c 0 -i 289 -a 0 -S 0 -y {14 14} - -t 1.53931 -s 4 -d 3 -p ack -e 40 -c 0 -i 289 -a 0 -S 0 -y {14 14} h -t 1.53931 -s 4 -d 3 -p ack -e 40 -c 0 -i 289 -a 0 -S 0 -y {-1 -1} - -t 1.53965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 281 -a 1 h -t 1.53965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 281 -a 1 + -t 1.54 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 292 -a 1 - -t 1.54 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 292 -a 1 h -t 1.54 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 292 -a 1 + -t 1.54 -s 1 -d 3 -p cbr -e 500 -c 1 -i 293 -a 1 - -t 1.54 -s 1 -d 3 -p cbr -e 500 -c 1 -i 293 -a 1 h -t 1.54 -s 1 -d 3 -p cbr -e 500 -c 1 -i 293 -a 1 r -t 1.54165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 271 -a 0 -S 0 -y {21 21} + -t 1.54165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 271 -a 0 -S 0 -y {21 21} - -t 1.54165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 271 -a 0 -S 0 -y {21 21} h -t 1.54165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 271 -a 0 -S 0 -y {-1 -1} r -t 1.54325 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 269 -a 0 -S 0 -y {20 20} + -t 1.54325 -s 5 -d 4 -p ack -e 40 -c 0 -i 294 -a 0 -S 0 -y {14 14} - -t 1.54325 -s 5 -d 4 -p ack -e 40 -c 0 -i 294 -a 0 -S 0 -y {14 14} h -t 1.54325 -s 5 -d 4 -p ack -e 40 -c 0 -i 294 -a 0 -S 0 -y {-1 -1} - -t 1.54365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 283 -a 1 h -t 1.54365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 283 -a 1 r -t 1.544 -s 1 -d 3 -p cbr -e 500 -c 1 -i 291 -a 1 + -t 1.544 -s 3 -d 4 -p cbr -e 500 -c 1 -i 291 -a 1 r -t 1.54565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 273 -a 1 + -t 1.54565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 273 -a 1 - -t 1.54565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 273 -a 1 h -t 1.54565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 273 -a 1 - -t 1.54765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 282 -a 1 h -t 1.54765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 282 -a 1 r -t 1.548 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 290 -a 1 + -t 1.548 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 290 -a 1 r -t 1.55363 -s 4 -d 3 -p ack -e 40 -c 0 -i 284 -a 0 -S 0 -y {14 14} + -t 1.55363 -s 3 -d 0 -p ack -e 40 -c 0 -i 284 -a 0 -S 0 -y {14 14} - -t 1.55363 -s 3 -d 0 -p ack -e 40 -c 0 -i 284 -a 0 -S 0 -f 0 -m 1 -y {14 14} h -t 1.55363 -s 3 -d 0 -p ack -e 40 -c 0 -i 284 -a 0 -S 0 -y {-1 -1} r -t 1.55365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 272 -a 1 + -t 1.55365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 272 -a 1 - -t 1.55365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 272 -a 1 h -t 1.55365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 272 -a 1 - -t 1.55565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 285 -a 1 h -t 1.55565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 285 -a 1 r -t 1.55765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 267 -a 1 r -t 1.55765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 270 -a 1 - -t 1.55965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 288 -a 1 h -t 1.55965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 288 -a 1 + -t 1.56 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 295 -a 1 - -t 1.56 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 295 -a 1 h -t 1.56 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 295 -a 1 + -t 1.56 -s 1 -d 3 -p cbr -e 500 -c 1 -i 296 -a 1 - -t 1.56 -s 1 -d 3 -p cbr -e 500 -c 1 -i 296 -a 1 h -t 1.56 -s 1 -d 3 -p cbr -e 500 -c 1 -i 296 -a 1 r -t 1.56165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 274 -a 0 -S 0 -y {22 22} + -t 1.56165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 274 -a 0 -S 0 -y {22 22} - -t 1.56165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 274 -a 0 -S 0 -y {22 22} h -t 1.56165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 274 -a 0 -S 0 -y {-1 -1} r -t 1.56325 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 271 -a 0 -S 0 -y {21 21} + -t 1.56325 -s 5 -d 4 -p ack -e 40 -c 0 -i 297 -a 0 -S 0 -y {14 14} - -t 1.56325 -s 5 -d 4 -p ack -e 40 -c 0 -i 297 -a 0 -S 0 -y {14 14} h -t 1.56325 -s 5 -d 4 -p ack -e 40 -c 0 -i 297 -a 0 -S 0 -y {-1 -1} r -t 1.56331 -s 5 -d 4 -p ack -e 40 -c 0 -i 294 -a 0 -S 0 -y {14 14} + -t 1.56331 -s 4 -d 3 -p ack -e 40 -c 0 -i 294 -a 0 -S 0 -y {14 14} - -t 1.56331 -s 4 -d 3 -p ack -e 40 -c 0 -i 294 -a 0 -S 0 -y {14 14} h -t 1.56331 -s 4 -d 3 -p ack -e 40 -c 0 -i 294 -a 0 -S 0 -y {-1 -1} - -t 1.56365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 287 -a 1 h -t 1.56365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 287 -a 1 r -t 1.564 -s 1 -d 3 -p cbr -e 500 -c 1 -i 293 -a 1 + -t 1.564 -s 3 -d 4 -p cbr -e 500 -c 1 -i 293 -a 1 r -t 1.56563 -s 4 -d 3 -p ack -e 40 -c 0 -i 286 -a 0 -S 0 -y {14 14} + -t 1.56563 -s 3 -d 0 -p ack -e 40 -c 0 -i 286 -a 0 -S 0 -y {14 14} - -t 1.56563 -s 3 -d 0 -p ack -e 40 -c 0 -i 286 -a 0 -S 0 -f 0 -m 1 -y {14 14} h -t 1.56563 -s 3 -d 0 -p ack -e 40 -c 0 -i 286 -a 0 -S 0 -y {-1 -1} r -t 1.56565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 277 -a 1 + -t 1.56565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 277 -a 1 - -t 1.56565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 277 -a 1 h -t 1.56565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 277 -a 1 r -t 1.568 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 292 -a 1 + -t 1.568 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 292 -a 1 r -t 1.56965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 273 -a 1 - -t 1.57165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 291 -a 1 h -t 1.57165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 291 -a 1 r -t 1.57365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 276 -a 1 + -t 1.57365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 276 -a 1 - -t 1.57365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 276 -a 1 h -t 1.57365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 276 -a 1 r -t 1.5737 -s 3 -d 0 -p ack -e 40 -c 0 -i 284 -a 0 -S 0 -y {14 14} - -t 1.57565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 290 -a 1 h -t 1.57565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 290 -a 1 r -t 1.57765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 278 -a 1 + -t 1.57765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 278 -a 1 - -t 1.57765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 278 -a 1 h -t 1.57765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 278 -a 1 v -t 1.5800000000000001 sim_annotation 1.5800000000000001 17 Send Packet_15 to 22 + -t 1.58 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 298 -a 1 - -t 1.58 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 298 -a 1 h -t 1.58 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 298 -a 1 + -t 1.58 -s 1 -d 3 -p cbr -e 500 -c 1 -i 299 -a 1 - -t 1.58 -s 1 -d 3 -p cbr -e 500 -c 1 -i 299 -a 1 h -t 1.58 -s 1 -d 3 -p cbr -e 500 -c 1 -i 299 -a 1 r -t 1.58165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 280 -a 1 + -t 1.58165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 280 -a 1 r -t 1.58165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 272 -a 1 - -t 1.58165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 280 -a 1 h -t 1.58165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 280 -a 1 r -t 1.58325 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 274 -a 0 -S 0 -y {22 22} + -t 1.58325 -s 5 -d 4 -p ack -e 40 -c 0 -i 300 -a 0 -S 0 -y {14 14} - -t 1.58325 -s 5 -d 4 -p ack -e 40 -c 0 -i 300 -a 0 -S 0 -y {14 14} h -t 1.58325 -s 5 -d 4 -p ack -e 40 -c 0 -i 300 -a 0 -S 0 -y {-1 -1} r -t 1.58331 -s 5 -d 4 -p ack -e 40 -c 0 -i 297 -a 0 -S 0 -y {14 14} + -t 1.58331 -s 4 -d 3 -p ack -e 40 -c 0 -i 297 -a 0 -S 0 -y {14 14} - -t 1.58331 -s 4 -d 3 -p ack -e 40 -c 0 -i 297 -a 0 -S 0 -y {14 14} h -t 1.58331 -s 4 -d 3 -p ack -e 40 -c 0 -i 297 -a 0 -S 0 -y {-1 -1} - -t 1.58365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 293 -a 1 h -t 1.58365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 293 -a 1 r -t 1.584 -s 1 -d 3 -p cbr -e 500 -c 1 -i 296 -a 1 + -t 1.584 -s 3 -d 4 -p cbr -e 500 -c 1 -i 296 -a 1 r -t 1.5857 -s 3 -d 0 -p ack -e 40 -c 0 -i 286 -a 0 -S 0 -y {14 14} + -t 1.5857 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 301 -a 0 -S 0 -f 0 -m 0 -y {15 15} - -t 1.5857 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 301 -a 0 -S 0 -y {15 15} h -t 1.5857 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 301 -a 0 -S 0 -y {-1 -1} + -t 1.5857 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 302 -a 0 -S 0 -f 0 -m 0 -y {16 16} + -t 1.5857 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 303 -a 0 -S 0 -f 0 -m 0 -y {17 17} + -t 1.5857 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 304 -a 0 -S 0 -f 0 -m 0 -y {18 18} + -t 1.5857 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 305 -a 0 -S 0 -f 0 -m 0 -y {19 19} + -t 1.5857 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 306 -a 0 -S 0 -f 0 -m 0 -y {20 20} + -t 1.5857 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 307 -a 0 -S 0 -f 0 -m 0 -y {21 21} + -t 1.5857 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 308 -a 0 -S 0 -f 0 -m 0 -y {22 22} - -t 1.5873 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 302 -a 0 -S 0 -y {16 16} h -t 1.5873 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 302 -a 0 -S 0 -y {-1 -1} - -t 1.58765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 292 -a 1 h -t 1.58765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 292 -a 1 r -t 1.588 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 295 -a 1 + -t 1.588 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 295 -a 1 - -t 1.5889 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 303 -a 0 -S 0 -y {17 17} h -t 1.5889 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 303 -a 0 -S 0 -y {-1 -1} r -t 1.58963 -s 4 -d 3 -p ack -e 40 -c 0 -i 289 -a 0 -S 0 -y {14 14} + -t 1.58963 -s 3 -d 0 -p ack -e 40 -c 0 -i 289 -a 0 -S 0 -y {14 14} - -t 1.58963 -s 3 -d 0 -p ack -e 40 -c 0 -i 289 -a 0 -S 0 -f 0 -m 1 -y {14 14} h -t 1.58963 -s 3 -d 0 -p ack -e 40 -c 0 -i 289 -a 0 -S 0 -y {-1 -1} r -t 1.58965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 279 -a 1 + -t 1.58965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 279 -a 1 - -t 1.58965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 279 -a 1 h -t 1.58965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 279 -a 1 r -t 1.58965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 277 -a 1 - -t 1.5905 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 304 -a 0 -S 0 -y {18 18} h -t 1.5905 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 304 -a 0 -S 0 -y {-1 -1} - -t 1.5921 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 305 -a 0 -S 0 -y {19 19} h -t 1.5921 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 305 -a 0 -S 0 -y {-1 -1} r -t 1.59365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 281 -a 1 + -t 1.59365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 281 -a 1 - -t 1.59365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 281 -a 1 h -t 1.59365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 281 -a 1 - -t 1.5937 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 306 -a 0 -S 0 -y {20 20} h -t 1.5937 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 306 -a 0 -S 0 -y {-1 -1} - -t 1.5953 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 307 -a 0 -S 0 -y {21 21} h -t 1.5953 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 307 -a 0 -S 0 -y {-1 -1} - -t 1.59565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 296 -a 1 h -t 1.59565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 296 -a 1 - -t 1.5969 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 308 -a 0 -S 0 -y {22 22} h -t 1.5969 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 308 -a 0 -S 0 -y {-1 -1} r -t 1.59765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 283 -a 1 + -t 1.59765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 283 -a 1 - -t 1.59765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 283 -a 1 h -t 1.59765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 283 -a 1 - -t 1.59965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 295 -a 1 h -t 1.59965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 295 -a 1 + -t 1.6 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 309 -a 1 - -t 1.6 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 309 -a 1 h -t 1.6 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 309 -a 1 + -t 1.6 -s 1 -d 3 -p cbr -e 500 -c 1 -i 310 -a 1 - -t 1.6 -s 1 -d 3 -p cbr -e 500 -c 1 -i 310 -a 1 h -t 1.6 -s 1 -d 3 -p cbr -e 500 -c 1 -i 310 -a 1 r -t 1.60165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 276 -a 1 r -t 1.60165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 278 -a 1 r -t 1.60331 -s 5 -d 4 -p ack -e 40 -c 0 -i 300 -a 0 -S 0 -y {14 14} + -t 1.60331 -s 4 -d 3 -p ack -e 40 -c 0 -i 300 -a 0 -S 0 -y {14 14} - -t 1.60331 -s 4 -d 3 -p ack -e 40 -c 0 -i 300 -a 0 -S 0 -y {14 14} h -t 1.60331 -s 4 -d 3 -p ack -e 40 -c 0 -i 300 -a 0 -S 0 -y {-1 -1} r -t 1.604 -s 1 -d 3 -p cbr -e 500 -c 1 -i 299 -a 1 + -t 1.604 -s 3 -d 4 -p cbr -e 500 -c 1 -i 299 -a 1 r -t 1.60565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 282 -a 1 + -t 1.60565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 282 -a 1 - -t 1.60565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 282 -a 1 h -t 1.60565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 282 -a 1 r -t 1.60565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 280 -a 1 r -t 1.6073 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 301 -a 0 -S 0 -y {15 15} + -t 1.6073 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 301 -a 0 -S 0 -y {15 15} - -t 1.60765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 299 -a 1 h -t 1.60765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 299 -a 1 r -t 1.608 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 298 -a 1 + -t 1.608 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 298 -a 1 r -t 1.6089 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 302 -a 0 -S 0 -y {16 16} + -t 1.6089 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 302 -a 0 -S 0 -y {16 16} r -t 1.60965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 285 -a 1 + -t 1.60965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 285 -a 1 - -t 1.60965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 285 -a 1 h -t 1.60965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 285 -a 1 r -t 1.6097 -s 3 -d 0 -p ack -e 40 -c 0 -i 289 -a 0 -S 0 -y {14 14} r -t 1.6105 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 303 -a 0 -S 0 -y {17 17} + -t 1.6105 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 303 -a 0 -S 0 -y {17 17} - -t 1.61165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 301 -a 0 -S 0 -y {15 15} h -t 1.61165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 301 -a 0 -S 0 -y {-1 -1} r -t 1.6121 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 304 -a 0 -S 0 -y {18 18} + -t 1.6121 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 304 -a 0 -S 0 -y {18 18} r -t 1.61363 -s 4 -d 3 -p ack -e 40 -c 0 -i 294 -a 0 -S 0 -y {14 14} + -t 1.61363 -s 3 -d 0 -p ack -e 40 -c 0 -i 294 -a 0 -S 0 -y {14 14} - -t 1.61363 -s 3 -d 0 -p ack -e 40 -c 0 -i 294 -a 0 -S 0 -f 0 -m 1 -y {14 14} h -t 1.61363 -s 3 -d 0 -p ack -e 40 -c 0 -i 294 -a 0 -S 0 -y {-1 -1} r -t 1.61365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 288 -a 1 + -t 1.61365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 288 -a 1 - -t 1.61365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 288 -a 1 h -t 1.61365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 288 -a 1 r -t 1.6137 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 305 -a 0 -S 0 -y {19 19} + -t 1.6137 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 305 -a 0 -S 0 -y {19 19} r -t 1.6153 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 306 -a 0 -S 0 -y {20 20} + -t 1.6153 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 306 -a 0 -S 0 -y {20 20} r -t 1.6169 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 307 -a 0 -S 0 -y {21 21} + -t 1.6169 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 307 -a 0 -S 0 -y {21 21} r -t 1.61765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 279 -a 1 r -t 1.61765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 281 -a 1 r -t 1.6185 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 308 -a 0 -S 0 -y {22 22} + -t 1.6185 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 308 -a 0 -S 0 -y {22 22} - -t 1.61965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 298 -a 1 h -t 1.61965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 298 -a 1 + -t 1.62 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 311 -a 1 - -t 1.62 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 311 -a 1 h -t 1.62 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 311 -a 1 + -t 1.62 -s 1 -d 3 -p cbr -e 500 -c 1 -i 312 -a 1 - -t 1.62 -s 1 -d 3 -p cbr -e 500 -c 1 -i 312 -a 1 h -t 1.62 -s 1 -d 3 -p cbr -e 500 -c 1 -i 312 -a 1 r -t 1.62165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 287 -a 1 + -t 1.62165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 287 -a 1 - -t 1.62165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 287 -a 1 h -t 1.62165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 287 -a 1 r -t 1.62165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 283 -a 1 r -t 1.624 -s 1 -d 3 -p cbr -e 500 -c 1 -i 310 -a 1 + -t 1.624 -s 3 -d 4 -p cbr -e 500 -c 1 -i 310 -a 1 r -t 1.62565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 291 -a 1 + -t 1.62565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 291 -a 1 - -t 1.62565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 291 -a 1 h -t 1.62565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 291 -a 1 - -t 1.62765 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 302 -a 0 -S 0 -y {16 16} h -t 1.62765 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 302 -a 0 -S 0 -y {-1 -1} r -t 1.628 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 309 -a 1 + -t 1.628 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 309 -a 1 r -t 1.63363 -s 4 -d 3 -p ack -e 40 -c 0 -i 297 -a 0 -S 0 -y {14 14} + -t 1.63363 -s 3 -d 0 -p ack -e 40 -c 0 -i 297 -a 0 -S 0 -y {14 14} - -t 1.63363 -s 3 -d 0 -p ack -e 40 -c 0 -i 297 -a 0 -S 0 -f 0 -m 1 -y {14 14} h -t 1.63363 -s 3 -d 0 -p ack -e 40 -c 0 -i 297 -a 0 -S 0 -y {-1 -1} r -t 1.63365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 290 -a 1 + -t 1.63365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 290 -a 1 - -t 1.63365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 290 -a 1 h -t 1.63365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 290 -a 1 r -t 1.63365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 282 -a 1 r -t 1.63365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 285 -a 1 r -t 1.6337 -s 3 -d 0 -p ack -e 40 -c 0 -i 294 -a 0 -S 0 -y {14 14} - -t 1.63565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 303 -a 0 -S 0 -y {17 17} h -t 1.63565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 303 -a 0 -S 0 -y {-1 -1} r -t 1.63765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 293 -a 1 + -t 1.63765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 293 -a 1 - -t 1.63765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 293 -a 1 h -t 1.63765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 293 -a 1 r -t 1.63765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 288 -a 1 + -t 1.64 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 313 -a 1 - -t 1.64 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 313 -a 1 h -t 1.64 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 313 -a 1 + -t 1.64 -s 1 -d 3 -p cbr -e 500 -c 1 -i 314 -a 1 - -t 1.64 -s 1 -d 3 -p cbr -e 500 -c 1 -i 314 -a 1 h -t 1.64 -s 1 -d 3 -p cbr -e 500 -c 1 -i 314 -a 1 - -t 1.64365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 304 -a 0 -S 0 -y {18 18} h -t 1.64365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 304 -a 0 -S 0 -y {-1 -1} r -t 1.644 -s 1 -d 3 -p cbr -e 500 -c 1 -i 312 -a 1 + -t 1.644 -s 3 -d 4 -p cbr -e 500 -c 1 -i 312 -a 1 r -t 1.64565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 292 -a 1 + -t 1.64565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 292 -a 1 - -t 1.64565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 292 -a 1 h -t 1.64565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 292 -a 1 r -t 1.648 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 311 -a 1 + -t 1.648 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 311 -a 1 r -t 1.64965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 296 -a 1 + -t 1.64965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 296 -a 1 - -t 1.64965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 296 -a 1 h -t 1.64965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 296 -a 1 r -t 1.64965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 287 -a 1 r -t 1.64965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 291 -a 1 - -t 1.65165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 305 -a 0 -S 0 -y {19 19} h -t 1.65165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 305 -a 0 -S 0 -y {-1 -1} r -t 1.65363 -s 4 -d 3 -p ack -e 40 -c 0 -i 300 -a 0 -S 0 -y {14 14} + -t 1.65363 -s 3 -d 0 -p ack -e 40 -c 0 -i 300 -a 0 -S 0 -y {14 14} - -t 1.65363 -s 3 -d 0 -p ack -e 40 -c 0 -i 300 -a 0 -S 0 -f 0 -m 1 -y {14 14} h -t 1.65363 -s 3 -d 0 -p ack -e 40 -c 0 -i 300 -a 0 -S 0 -y {-1 -1} r -t 1.6537 -s 3 -d 0 -p ack -e 40 -c 0 -i 297 -a 0 -S 0 -y {14 14} r -t 1.65765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 295 -a 1 + -t 1.65765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 295 -a 1 - -t 1.65765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 295 -a 1 h -t 1.65765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 295 -a 1 - -t 1.65965 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 306 -a 0 -S 0 -y {20 20} h -t 1.65965 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 306 -a 0 -S 0 -y {-1 -1} + -t 1.66 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 315 -a 1 - -t 1.66 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 315 -a 1 h -t 1.66 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 315 -a 1 + -t 1.66 -s 1 -d 3 -p cbr -e 500 -c 1 -i 316 -a 1 - -t 1.66 -s 1 -d 3 -p cbr -e 500 -c 1 -i 316 -a 1 h -t 1.66 -s 1 -d 3 -p cbr -e 500 -c 1 -i 316 -a 1 r -t 1.66165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 299 -a 1 + -t 1.66165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 299 -a 1 - -t 1.66165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 299 -a 1 h -t 1.66165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 299 -a 1 r -t 1.66165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 290 -a 1 r -t 1.66165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 293 -a 1 r -t 1.664 -s 1 -d 3 -p cbr -e 500 -c 1 -i 314 -a 1 + -t 1.664 -s 3 -d 4 -p cbr -e 500 -c 1 -i 314 -a 1 - -t 1.66765 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 307 -a 0 -S 0 -y {21 21} h -t 1.66765 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 307 -a 0 -S 0 -y {-1 -1} r -t 1.668 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 313 -a 1 + -t 1.668 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 313 -a 1 r -t 1.66965 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 301 -a 0 -S 0 -y {15 15} + -t 1.66965 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 301 -a 0 -S 0 -y {15 15} - -t 1.66965 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 301 -a 0 -S 0 -y {15 15} h -t 1.66965 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 301 -a 0 -S 0 -y {-1 -1} r -t 1.67365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 292 -a 1 r -t 1.67365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 296 -a 1 r -t 1.6737 -s 3 -d 0 -p ack -e 40 -c 0 -i 300 -a 0 -S 0 -y {14 14} - -t 1.67565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 308 -a 0 -S 0 -y {22 22} h -t 1.67565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 308 -a 0 -S 0 -y {-1 -1} r -t 1.67765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 298 -a 1 + -t 1.67765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 298 -a 1 - -t 1.67765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 298 -a 1 h -t 1.67765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 298 -a 1 + -t 1.68 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 317 -a 1 - -t 1.68 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 317 -a 1 h -t 1.68 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 317 -a 1 + -t 1.68 -s 1 -d 3 -p cbr -e 500 -c 1 -i 318 -a 1 - -t 1.68 -s 1 -d 3 -p cbr -e 500 -c 1 -i 318 -a 1 h -t 1.68 -s 1 -d 3 -p cbr -e 500 -c 1 -i 318 -a 1 - -t 1.68365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 310 -a 1 h -t 1.68365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 310 -a 1 r -t 1.684 -s 1 -d 3 -p cbr -e 500 -c 1 -i 316 -a 1 + -t 1.684 -s 3 -d 4 -p cbr -e 500 -c 1 -i 316 -a 1 r -t 1.68565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 302 -a 0 -S 0 -y {16 16} + -t 1.68565 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 302 -a 0 -S 0 -y {16 16} - -t 1.68565 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 302 -a 0 -S 0 -y {16 16} h -t 1.68565 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 302 -a 0 -S 0 -y {-1 -1} r -t 1.68565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 295 -a 1 r -t 1.68565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 299 -a 1 - -t 1.68765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 309 -a 1 h -t 1.68765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 309 -a 1 r -t 1.688 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 315 -a 1 + -t 1.688 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 315 -a 1 r -t 1.69125 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 301 -a 0 -S 0 -y {15 15} + -t 1.69125 -s 5 -d 4 -p ack -e 40 -c 0 -i 319 -a 0 -S 0 -y {15 15} - -t 1.69125 -s 5 -d 4 -p ack -e 40 -c 0 -i 319 -a 0 -S 0 -y {15 15} h -t 1.69125 -s 5 -d 4 -p ack -e 40 -c 0 -i 319 -a 0 -S 0 -y {-1 -1} r -t 1.69365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 303 -a 0 -S 0 -y {17 17} + -t 1.69365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 303 -a 0 -S 0 -y {17 17} - -t 1.69365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 303 -a 0 -S 0 -y {17 17} h -t 1.69365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 303 -a 0 -S 0 -y {-1 -1} - -t 1.69565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 312 -a 1 h -t 1.69565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 312 -a 1 - -t 1.69965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 311 -a 1 h -t 1.69965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 311 -a 1 v -t 1.7 sim_annotation 1.7 18 Ack_15 to 22 + -t 1.7 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 320 -a 1 - -t 1.7 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 320 -a 1 h -t 1.7 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 320 -a 1 + -t 1.7 -s 1 -d 3 -p cbr -e 500 -c 1 -i 321 -a 1 - -t 1.7 -s 1 -d 3 -p cbr -e 500 -c 1 -i 321 -a 1 h -t 1.7 -s 1 -d 3 -p cbr -e 500 -c 1 -i 321 -a 1 r -t 1.70165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 304 -a 0 -S 0 -y {18 18} + -t 1.70165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 304 -a 0 -S 0 -y {18 18} - -t 1.70165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 304 -a 0 -S 0 -y {18 18} h -t 1.70165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 304 -a 0 -S 0 -y {-1 -1} r -t 1.704 -s 1 -d 3 -p cbr -e 500 -c 1 -i 318 -a 1 + -t 1.704 -s 3 -d 4 -p cbr -e 500 -c 1 -i 318 -a 1 r -t 1.70565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 298 -a 1 r -t 1.70725 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 302 -a 0 -S 0 -y {16 16} + -t 1.70725 -s 5 -d 4 -p ack -e 40 -c 0 -i 322 -a 0 -S 0 -y {16 16} - -t 1.70725 -s 5 -d 4 -p ack -e 40 -c 0 -i 322 -a 0 -S 0 -y {16 16} h -t 1.70725 -s 5 -d 4 -p ack -e 40 -c 0 -i 322 -a 0 -S 0 -y {-1 -1} - -t 1.70765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 314 -a 1 h -t 1.70765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 314 -a 1 r -t 1.708 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 317 -a 1 + -t 1.708 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 317 -a 1 r -t 1.70965 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 305 -a 0 -S 0 -y {19 19} + -t 1.70965 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 305 -a 0 -S 0 -y {19 19} - -t 1.70965 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 305 -a 0 -S 0 -y {19 19} h -t 1.70965 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 305 -a 0 -S 0 -y {-1 -1} + -t 1.71 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 323 -a 1 - -t 1.71 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 323 -a 1 h -t 1.71 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 323 -a 1 r -t 1.71131 -s 5 -d 4 -p ack -e 40 -c 0 -i 319 -a 0 -S 0 -y {15 15} + -t 1.71131 -s 4 -d 3 -p ack -e 40 -c 0 -i 319 -a 0 -S 0 -y {15 15} - -t 1.71131 -s 4 -d 3 -p ack -e 40 -c 0 -i 319 -a 0 -S 0 -y {15 15} h -t 1.71131 -s 4 -d 3 -p ack -e 40 -c 0 -i 319 -a 0 -S 0 -y {-1 -1} - -t 1.71165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 313 -a 1 h -t 1.71165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 313 -a 1 r -t 1.71525 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 303 -a 0 -S 0 -y {17 17} + -t 1.71525 -s 5 -d 4 -p ack -e 40 -c 0 -i 324 -a 0 -S 0 -y {17 17} - -t 1.71525 -s 5 -d 4 -p ack -e 40 -c 0 -i 324 -a 0 -S 0 -y {17 17} h -t 1.71525 -s 5 -d 4 -p ack -e 40 -c 0 -i 324 -a 0 -S 0 -y {-1 -1} r -t 1.71765 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 306 -a 0 -S 0 -y {20 20} + -t 1.71765 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 306 -a 0 -S 0 -y {20 20} - -t 1.71765 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 306 -a 0 -S 0 -y {20 20} h -t 1.71765 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 306 -a 0 -S 0 -y {-1 -1} - -t 1.71965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 316 -a 1 h -t 1.71965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 316 -a 1 + -t 1.72 -s 1 -d 3 -p cbr -e 500 -c 1 -i 325 -a 1 - -t 1.72 -s 1 -d 3 -p cbr -e 500 -c 1 -i 325 -a 1 h -t 1.72 -s 1 -d 3 -p cbr -e 500 -c 1 -i 325 -a 1 + -t 1.72 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 326 -a 1 - -t 1.72 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 326 -a 1 h -t 1.72 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 326 -a 1 r -t 1.72325 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 304 -a 0 -S 0 -y {18 18} + -t 1.72325 -s 5 -d 4 -p ack -e 40 -c 0 -i 327 -a 0 -S 0 -y {18 18} - -t 1.72325 -s 5 -d 4 -p ack -e 40 -c 0 -i 327 -a 0 -S 0 -y {18 18} h -t 1.72325 -s 5 -d 4 -p ack -e 40 -c 0 -i 327 -a 0 -S 0 -y {-1 -1} - -t 1.72365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 315 -a 1 h -t 1.72365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 315 -a 1 r -t 1.724 -s 1 -d 3 -p cbr -e 500 -c 1 -i 321 -a 1 + -t 1.724 -s 3 -d 4 -p cbr -e 500 -c 1 -i 321 -a 1 r -t 1.72565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 307 -a 0 -S 0 -y {21 21} + -t 1.72565 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 307 -a 0 -S 0 -y {21 21} - -t 1.72565 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 307 -a 0 -S 0 -y {21 21} h -t 1.72565 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 307 -a 0 -S 0 -y {-1 -1} r -t 1.72731 -s 5 -d 4 -p ack -e 40 -c 0 -i 322 -a 0 -S 0 -y {16 16} + -t 1.72731 -s 4 -d 3 -p ack -e 40 -c 0 -i 322 -a 0 -S 0 -y {16 16} - -t 1.72731 -s 4 -d 3 -p ack -e 40 -c 0 -i 322 -a 0 -S 0 -y {16 16} h -t 1.72731 -s 4 -d 3 -p ack -e 40 -c 0 -i 322 -a 0 -S 0 -y {-1 -1} r -t 1.728 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 320 -a 1 + -t 1.728 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 320 -a 1 + -t 1.73 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 328 -a 1 - -t 1.73 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 328 -a 1 h -t 1.73 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 328 -a 1 r -t 1.73125 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 305 -a 0 -S 0 -y {19 19} + -t 1.73125 -s 5 -d 4 -p ack -e 40 -c 0 -i 329 -a 0 -S 0 -y {19 19} - -t 1.73125 -s 5 -d 4 -p ack -e 40 -c 0 -i 329 -a 0 -S 0 -y {19 19} h -t 1.73125 -s 5 -d 4 -p ack -e 40 -c 0 -i 329 -a 0 -S 0 -y {-1 -1} - -t 1.73165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 318 -a 1 h -t 1.73165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 318 -a 1 r -t 1.73365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 308 -a 0 -S 0 -y {22 22} + -t 1.73365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 308 -a 0 -S 0 -y {22 22} - -t 1.73365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 308 -a 0 -S 0 -y {22 22} h -t 1.73365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 308 -a 0 -S 0 -y {-1 -1} r -t 1.73531 -s 5 -d 4 -p ack -e 40 -c 0 -i 324 -a 0 -S 0 -y {17 17} + -t 1.73531 -s 4 -d 3 -p ack -e 40 -c 0 -i 324 -a 0 -S 0 -y {17 17} - -t 1.73531 -s 4 -d 3 -p ack -e 40 -c 0 -i 324 -a 0 -S 0 -y {17 17} h -t 1.73531 -s 4 -d 3 -p ack -e 40 -c 0 -i 324 -a 0 -S 0 -y {-1 -1} - -t 1.73565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 317 -a 1 h -t 1.73565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 317 -a 1 r -t 1.73765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 310 -a 1 + -t 1.73765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 310 -a 1 - -t 1.73765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 310 -a 1 h -t 1.73765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 310 -a 1 r -t 1.738 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 323 -a 1 + -t 1.738 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 323 -a 1 r -t 1.73925 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 306 -a 0 -S 0 -y {20 20} + -t 1.73925 -s 5 -d 4 -p ack -e 40 -c 0 -i 330 -a 0 -S 0 -y {20 20} - -t 1.73925 -s 5 -d 4 -p ack -e 40 -c 0 -i 330 -a 0 -S 0 -y {20 20} h -t 1.73925 -s 5 -d 4 -p ack -e 40 -c 0 -i 330 -a 0 -S 0 -y {-1 -1} + -t 1.74 -s 1 -d 3 -p cbr -e 500 -c 1 -i 331 -a 1 - -t 1.74 -s 1 -d 3 -p cbr -e 500 -c 1 -i 331 -a 1 h -t 1.74 -s 1 -d 3 -p cbr -e 500 -c 1 -i 331 -a 1 + -t 1.74 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 332 -a 1 - -t 1.74 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 332 -a 1 h -t 1.74 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 332 -a 1 r -t 1.74331 -s 5 -d 4 -p ack -e 40 -c 0 -i 327 -a 0 -S 0 -y {18 18} + -t 1.74331 -s 4 -d 3 -p ack -e 40 -c 0 -i 327 -a 0 -S 0 -y {18 18} - -t 1.74331 -s 4 -d 3 -p ack -e 40 -c 0 -i 327 -a 0 -S 0 -y {18 18} h -t 1.74331 -s 4 -d 3 -p ack -e 40 -c 0 -i 327 -a 0 -S 0 -y {-1 -1} - -t 1.74365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 321 -a 1 h -t 1.74365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 321 -a 1 r -t 1.744 -s 1 -d 3 -p cbr -e 500 -c 1 -i 325 -a 1 + -t 1.744 -s 3 -d 4 -p cbr -e 500 -c 1 -i 325 -a 1 r -t 1.74565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 309 -a 1 + -t 1.74565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 309 -a 1 - -t 1.74565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 309 -a 1 h -t 1.74565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 309 -a 1 r -t 1.74725 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 307 -a 0 -S 0 -y {21 21} + -t 1.74725 -s 5 -d 4 -p ack -e 40 -c 0 -i 333 -a 0 -S 0 -y {21 21} - -t 1.74725 -s 5 -d 4 -p ack -e 40 -c 0 -i 333 -a 0 -S 0 -y {21 21} h -t 1.74725 -s 5 -d 4 -p ack -e 40 -c 0 -i 333 -a 0 -S 0 -y {-1 -1} - -t 1.74765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 320 -a 1 h -t 1.74765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 320 -a 1 r -t 1.748 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 326 -a 1 + -t 1.748 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 326 -a 1 r -t 1.74965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 312 -a 1 + -t 1.74965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 312 -a 1 - -t 1.74965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 312 -a 1 h -t 1.74965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 312 -a 1 + -t 1.75 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 334 -a 1 - -t 1.75 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 334 -a 1 h -t 1.75 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 334 -a 1 r -t 1.75131 -s 5 -d 4 -p ack -e 40 -c 0 -i 329 -a 0 -S 0 -y {19 19} + -t 1.75131 -s 4 -d 3 -p ack -e 40 -c 0 -i 329 -a 0 -S 0 -y {19 19} - -t 1.75131 -s 4 -d 3 -p ack -e 40 -c 0 -i 329 -a 0 -S 0 -y {19 19} h -t 1.75131 -s 4 -d 3 -p ack -e 40 -c 0 -i 329 -a 0 -S 0 -y {-1 -1} r -t 1.75525 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 308 -a 0 -S 0 -y {22 22} + -t 1.75525 -s 5 -d 4 -p ack -e 40 -c 0 -i 335 -a 0 -S 0 -y {22 22} - -t 1.75525 -s 5 -d 4 -p ack -e 40 -c 0 -i 335 -a 0 -S 0 -y {22 22} h -t 1.75525 -s 5 -d 4 -p ack -e 40 -c 0 -i 335 -a 0 -S 0 -y {-1 -1} - -t 1.75565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 323 -a 1 h -t 1.75565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 323 -a 1 r -t 1.75765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 311 -a 1 + -t 1.75765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 311 -a 1 - -t 1.75765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 311 -a 1 h -t 1.75765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 311 -a 1 r -t 1.758 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 328 -a 1 + -t 1.758 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 328 -a 1 r -t 1.75931 -s 5 -d 4 -p ack -e 40 -c 0 -i 330 -a 0 -S 0 -y {20 20} + -t 1.75931 -s 4 -d 3 -p ack -e 40 -c 0 -i 330 -a 0 -S 0 -y {20 20} - -t 1.75931 -s 4 -d 3 -p ack -e 40 -c 0 -i 330 -a 0 -S 0 -y {20 20} h -t 1.75931 -s 4 -d 3 -p ack -e 40 -c 0 -i 330 -a 0 -S 0 -y {-1 -1} + -t 1.76 -s 1 -d 3 -p cbr -e 500 -c 1 -i 336 -a 1 - -t 1.76 -s 1 -d 3 -p cbr -e 500 -c 1 -i 336 -a 1 h -t 1.76 -s 1 -d 3 -p cbr -e 500 -c 1 -i 336 -a 1 + -t 1.76 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 337 -a 1 - -t 1.76 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 337 -a 1 h -t 1.76 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 337 -a 1 r -t 1.76163 -s 4 -d 3 -p ack -e 40 -c 0 -i 319 -a 0 -S 0 -y {15 15} + -t 1.76163 -s 3 -d 0 -p ack -e 40 -c 0 -i 319 -a 0 -S 0 -y {15 15} - -t 1.76163 -s 3 -d 0 -p ack -e 40 -c 0 -i 319 -a 0 -S 0 -f 0 -m 1 -y {15 15} h -t 1.76163 -s 3 -d 0 -p ack -e 40 -c 0 -i 319 -a 0 -S 0 -y {-1 -1} r -t 1.76165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 314 -a 1 + -t 1.76165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 314 -a 1 - -t 1.76165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 314 -a 1 h -t 1.76165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 314 -a 1 r -t 1.76165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 310 -a 1 - -t 1.76365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 325 -a 1 h -t 1.76365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 325 -a 1 r -t 1.764 -s 1 -d 3 -p cbr -e 500 -c 1 -i 331 -a 1 + -t 1.764 -s 3 -d 4 -p cbr -e 500 -c 1 -i 331 -a 1 r -t 1.76731 -s 5 -d 4 -p ack -e 40 -c 0 -i 333 -a 0 -S 0 -y {21 21} + -t 1.76731 -s 4 -d 3 -p ack -e 40 -c 0 -i 333 -a 0 -S 0 -y {21 21} - -t 1.76731 -s 4 -d 3 -p ack -e 40 -c 0 -i 333 -a 0 -S 0 -y {21 21} h -t 1.76731 -s 4 -d 3 -p ack -e 40 -c 0 -i 333 -a 0 -S 0 -y {-1 -1} - -t 1.76765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 326 -a 1 h -t 1.76765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 326 -a 1 r -t 1.768 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 332 -a 1 + -t 1.768 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 332 -a 1 r -t 1.76965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 313 -a 1 + -t 1.76965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 313 -a 1 - -t 1.76965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 313 -a 1 h -t 1.76965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 313 -a 1 + -t 1.77 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 338 -a 1 - -t 1.77 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 338 -a 1 h -t 1.77 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 338 -a 1 r -t 1.77365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 316 -a 1 + -t 1.77365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 316 -a 1 - -t 1.77365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 316 -a 1 h -t 1.77365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 316 -a 1 r -t 1.77365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 309 -a 1 r -t 1.77365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 312 -a 1 r -t 1.77531 -s 5 -d 4 -p ack -e 40 -c 0 -i 335 -a 0 -S 0 -y {22 22} + -t 1.77531 -s 4 -d 3 -p ack -e 40 -c 0 -i 335 -a 0 -S 0 -y {22 22} - -t 1.77531 -s 4 -d 3 -p ack -e 40 -c 0 -i 335 -a 0 -S 0 -y {22 22} h -t 1.77531 -s 4 -d 3 -p ack -e 40 -c 0 -i 335 -a 0 -S 0 -y {-1 -1} - -t 1.77565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 328 -a 1 h -t 1.77565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 328 -a 1 r -t 1.77763 -s 4 -d 3 -p ack -e 40 -c 0 -i 322 -a 0 -S 0 -y {16 16} + -t 1.77763 -s 3 -d 0 -p ack -e 40 -c 0 -i 322 -a 0 -S 0 -y {16 16} - -t 1.77763 -s 3 -d 0 -p ack -e 40 -c 0 -i 322 -a 0 -S 0 -f 0 -m 1 -y {16 16} h -t 1.77763 -s 3 -d 0 -p ack -e 40 -c 0 -i 322 -a 0 -S 0 -y {-1 -1} r -t 1.778 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 334 -a 1 + -t 1.778 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 334 -a 1 v -t 1.78 sim_annotation 1.78 19 Send Packet_23 to 30 + -t 1.78 -s 1 -d 3 -p cbr -e 500 -c 1 -i 339 -a 1 - -t 1.78 -s 1 -d 3 -p cbr -e 500 -c 1 -i 339 -a 1 h -t 1.78 -s 1 -d 3 -p cbr -e 500 -c 1 -i 339 -a 1 + -t 1.78 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 340 -a 1 - -t 1.78 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 340 -a 1 h -t 1.78 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 340 -a 1 r -t 1.78165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 315 -a 1 + -t 1.78165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 315 -a 1 - -t 1.78165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 315 -a 1 h -t 1.78165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 315 -a 1 r -t 1.7817 -s 3 -d 0 -p ack -e 40 -c 0 -i 319 -a 0 -S 0 -y {15 15} + -t 1.7817 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 341 -a 0 -S 0 -f 0 -m 0 -y {23 23} - -t 1.7817 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 341 -a 0 -S 0 -y {23 23} h -t 1.7817 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 341 -a 0 -S 0 -y {-1 -1} - -t 1.78365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 331 -a 1 h -t 1.78365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 331 -a 1 r -t 1.784 -s 1 -d 3 -p cbr -e 500 -c 1 -i 336 -a 1 + -t 1.784 -s 3 -d 4 -p cbr -e 500 -c 1 -i 336 -a 1 r -t 1.78563 -s 4 -d 3 -p ack -e 40 -c 0 -i 324 -a 0 -S 0 -y {17 17} + -t 1.78563 -s 3 -d 0 -p ack -e 40 -c 0 -i 324 -a 0 -S 0 -y {17 17} - -t 1.78563 -s 3 -d 0 -p ack -e 40 -c 0 -i 324 -a 0 -S 0 -f 0 -m 1 -y {17 17} h -t 1.78563 -s 3 -d 0 -p ack -e 40 -c 0 -i 324 -a 0 -S 0 -y {-1 -1} r -t 1.78565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 318 -a 1 + -t 1.78565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 318 -a 1 - -t 1.78565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 318 -a 1 h -t 1.78565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 318 -a 1 r -t 1.78565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 311 -a 1 r -t 1.78565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 314 -a 1 - -t 1.78765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 332 -a 1 h -t 1.78765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 332 -a 1 r -t 1.788 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 337 -a 1 + -t 1.788 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 337 -a 1 + -t 1.79 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 342 -a 1 - -t 1.79 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 342 -a 1 h -t 1.79 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 342 -a 1 r -t 1.79363 -s 4 -d 3 -p ack -e 40 -c 0 -i 327 -a 0 -S 0 -y {18 18} + -t 1.79363 -s 3 -d 0 -p ack -e 40 -c 0 -i 327 -a 0 -S 0 -y {18 18} - -t 1.79363 -s 3 -d 0 -p ack -e 40 -c 0 -i 327 -a 0 -S 0 -f 0 -m 1 -y {18 18} h -t 1.79363 -s 3 -d 0 -p ack -e 40 -c 0 -i 327 -a 0 -S 0 -y {-1 -1} r -t 1.79365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 317 -a 1 + -t 1.79365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 317 -a 1 - -t 1.79365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 317 -a 1 h -t 1.79365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 317 -a 1 - -t 1.79565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 334 -a 1 h -t 1.79565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 334 -a 1 r -t 1.79765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 321 -a 1 + -t 1.79765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 321 -a 1 - -t 1.79765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 321 -a 1 h -t 1.79765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 321 -a 1 r -t 1.79765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 313 -a 1 r -t 1.79765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 316 -a 1 r -t 1.7977 -s 3 -d 0 -p ack -e 40 -c 0 -i 322 -a 0 -S 0 -y {16 16} + -t 1.7977 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 343 -a 0 -S 0 -f 0 -m 0 -y {24 24} - -t 1.7977 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 343 -a 0 -S 0 -y {24 24} h -t 1.7977 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 343 -a 0 -S 0 -y {-1 -1} r -t 1.798 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 338 -a 1 + -t 1.798 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 338 -a 1 + -t 1.8 -s 1 -d 3 -p cbr -e 500 -c 1 -i 344 -a 1 - -t 1.8 -s 1 -d 3 -p cbr -e 500 -c 1 -i 344 -a 1 h -t 1.8 -s 1 -d 3 -p cbr -e 500 -c 1 -i 344 -a 1 + -t 1.8 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 345 -a 1 - -t 1.8 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 345 -a 1 h -t 1.8 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 345 -a 1 r -t 1.80163 -s 4 -d 3 -p ack -e 40 -c 0 -i 329 -a 0 -S 0 -y {19 19} + -t 1.80163 -s 3 -d 0 -p ack -e 40 -c 0 -i 329 -a 0 -S 0 -y {19 19} - -t 1.80163 -s 3 -d 0 -p ack -e 40 -c 0 -i 329 -a 0 -S 0 -f 0 -m 1 -y {19 19} h -t 1.80163 -s 3 -d 0 -p ack -e 40 -c 0 -i 329 -a 0 -S 0 -y {-1 -1} r -t 1.8033 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 341 -a 0 -S 0 -y {23 23} + -t 1.8033 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 341 -a 0 -S 0 -y {23 23} - -t 1.80365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 336 -a 1 h -t 1.80365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 336 -a 1 r -t 1.804 -s 1 -d 3 -p cbr -e 500 -c 1 -i 339 -a 1 + -t 1.804 -s 3 -d 4 -p cbr -e 500 -c 1 -i 339 -a 1 r -t 1.80565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 320 -a 1 + -t 1.80565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 320 -a 1 - -t 1.80565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 320 -a 1 h -t 1.80565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 320 -a 1 r -t 1.8057 -s 3 -d 0 -p ack -e 40 -c 0 -i 324 -a 0 -S 0 -y {17 17} + -t 1.8057 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 346 -a 0 -S 0 -f 0 -m 0 -y {25 25} - -t 1.8057 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 346 -a 0 -S 0 -y {25 25} h -t 1.8057 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 346 -a 0 -S 0 -y {-1 -1} - -t 1.80765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 337 -a 1 h -t 1.80765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 337 -a 1 r -t 1.808 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 340 -a 1 + -t 1.808 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 340 -a 1 r -t 1.80963 -s 4 -d 3 -p ack -e 40 -c 0 -i 330 -a 0 -S 0 -y {20 20} + -t 1.80963 -s 3 -d 0 -p ack -e 40 -c 0 -i 330 -a 0 -S 0 -y {20 20} - -t 1.80963 -s 3 -d 0 -p ack -e 40 -c 0 -i 330 -a 0 -S 0 -f 0 -m 1 -y {20 20} h -t 1.80963 -s 3 -d 0 -p ack -e 40 -c 0 -i 330 -a 0 -S 0 -y {-1 -1} r -t 1.80965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 315 -a 1 r -t 1.80965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 318 -a 1 + -t 1.81 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 347 -a 1 - -t 1.81 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 347 -a 1 h -t 1.81 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 347 -a 1 r -t 1.81365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 323 -a 1 + -t 1.81365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 323 -a 1 - -t 1.81365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 323 -a 1 h -t 1.81365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 323 -a 1 r -t 1.8137 -s 3 -d 0 -p ack -e 40 -c 0 -i 327 -a 0 -S 0 -y {18 18} + -t 1.8137 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 348 -a 0 -S 0 -f 0 -m 0 -y {26 26} - -t 1.8137 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 348 -a 0 -S 0 -y {26 26} h -t 1.8137 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 348 -a 0 -S 0 -y {-1 -1} - -t 1.81565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 338 -a 1 h -t 1.81565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 338 -a 1 r -t 1.81763 -s 4 -d 3 -p ack -e 40 -c 0 -i 333 -a 0 -S 0 -y {21 21} + -t 1.81763 -s 3 -d 0 -p ack -e 40 -c 0 -i 333 -a 0 -S 0 -y {21 21} - -t 1.81763 -s 3 -d 0 -p ack -e 40 -c 0 -i 333 -a 0 -S 0 -f 0 -m 1 -y {21 21} h -t 1.81763 -s 3 -d 0 -p ack -e 40 -c 0 -i 333 -a 0 -S 0 -y {-1 -1} r -t 1.81765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 325 -a 1 + -t 1.81765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 325 -a 1 - -t 1.81765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 325 -a 1 h -t 1.81765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 325 -a 1 r -t 1.818 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 342 -a 1 + -t 1.818 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 342 -a 1 r -t 1.8193 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 343 -a 0 -S 0 -y {24 24} + -t 1.8193 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 343 -a 0 -S 0 -y {24 24} + -t 1.82 -s 1 -d 3 -p cbr -e 500 -c 1 -i 349 -a 1 - -t 1.82 -s 1 -d 3 -p cbr -e 500 -c 1 -i 349 -a 1 h -t 1.82 -s 1 -d 3 -p cbr -e 500 -c 1 -i 349 -a 1 + -t 1.82 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 350 -a 1 - -t 1.82 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 350 -a 1 h -t 1.82 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 350 -a 1 r -t 1.82165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 317 -a 1 r -t 1.82165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 321 -a 1 r -t 1.8217 -s 3 -d 0 -p ack -e 40 -c 0 -i 329 -a 0 -S 0 -y {19 19} + -t 1.8217 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 351 -a 0 -S 0 -f 0 -m 0 -y {27 27} - -t 1.8217 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 351 -a 0 -S 0 -y {27 27} h -t 1.8217 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 351 -a 0 -S 0 -y {-1 -1} - -t 1.82365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 341 -a 0 -S 0 -y {23 23} h -t 1.82365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 341 -a 0 -S 0 -y {-1 -1} r -t 1.824 -s 1 -d 3 -p cbr -e 500 -c 1 -i 344 -a 1 + -t 1.824 -s 3 -d 4 -p cbr -e 500 -c 1 -i 344 -a 1 r -t 1.82563 -s 4 -d 3 -p ack -e 40 -c 0 -i 335 -a 0 -S 0 -y {22 22} + -t 1.82563 -s 3 -d 0 -p ack -e 40 -c 0 -i 335 -a 0 -S 0 -y {22 22} - -t 1.82563 -s 3 -d 0 -p ack -e 40 -c 0 -i 335 -a 0 -S 0 -f 0 -m 1 -y {22 22} h -t 1.82563 -s 3 -d 0 -p ack -e 40 -c 0 -i 335 -a 0 -S 0 -y {-1 -1} r -t 1.82565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 326 -a 1 + -t 1.82565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 326 -a 1 - -t 1.82565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 326 -a 1 h -t 1.82565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 326 -a 1 r -t 1.8273 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 346 -a 0 -S 0 -y {25 25} + -t 1.8273 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 346 -a 0 -S 0 -y {25 25} r -t 1.828 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 345 -a 1 + -t 1.828 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 345 -a 1 r -t 1.8297 -s 3 -d 0 -p ack -e 40 -c 0 -i 330 -a 0 -S 0 -y {20 20} + -t 1.8297 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 352 -a 0 -S 0 -f 0 -m 0 -y {28 28} - -t 1.8297 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 352 -a 0 -S 0 -y {28 28} h -t 1.8297 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 352 -a 0 -S 0 -y {-1 -1} + -t 1.83 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 353 -a 1 - -t 1.83 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 353 -a 1 h -t 1.83 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 353 -a 1 - -t 1.83165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 339 -a 1 h -t 1.83165 -s 3 -d 4 -p cbr -e 500 -c 1 -i 339 -a 1 r -t 1.83365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 328 -a 1 + -t 1.83365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 328 -a 1 r -t 1.83365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 320 -a 1 - -t 1.83365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 328 -a 1 h -t 1.83365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 328 -a 1 r -t 1.8353 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 348 -a 0 -S 0 -y {26 26} + -t 1.8353 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 348 -a 0 -S 0 -y {26 26} - -t 1.83565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 340 -a 1 h -t 1.83565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 340 -a 1 r -t 1.83765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 331 -a 1 + -t 1.83765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 331 -a 1 - -t 1.83765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 331 -a 1 h -t 1.83765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 331 -a 1 r -t 1.8377 -s 3 -d 0 -p ack -e 40 -c 0 -i 333 -a 0 -S 0 -y {21 21} + -t 1.8377 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 354 -a 0 -S 0 -f 0 -m 0 -y {29 29} - -t 1.8377 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 354 -a 0 -S 0 -y {29 29} h -t 1.8377 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 354 -a 0 -S 0 -y {-1 -1} r -t 1.838 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 347 -a 1 + -t 1.838 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 347 -a 1 + -t 1.84 -s 1 -d 3 -p cbr -e 500 -c 1 -i 355 -a 1 - -t 1.84 -s 1 -d 3 -p cbr -e 500 -c 1 -i 355 -a 1 h -t 1.84 -s 1 -d 3 -p cbr -e 500 -c 1 -i 355 -a 1 + -t 1.84 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 356 -a 1 - -t 1.84 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 356 -a 1 h -t 1.84 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 356 -a 1 r -t 1.84165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 323 -a 1 r -t 1.84165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 325 -a 1 r -t 1.8433 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 351 -a 0 -S 0 -y {27 27} + -t 1.8433 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 351 -a 0 -S 0 -y {27 27} - -t 1.84365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 342 -a 1 h -t 1.84365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 342 -a 1 r -t 1.844 -s 1 -d 3 -p cbr -e 500 -c 1 -i 349 -a 1 + -t 1.844 -s 3 -d 4 -p cbr -e 500 -c 1 -i 349 -a 1 r -t 1.84565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 332 -a 1 + -t 1.84565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 332 -a 1 - -t 1.84565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 332 -a 1 h -t 1.84565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 332 -a 1 r -t 1.8457 -s 3 -d 0 -p ack -e 40 -c 0 -i 335 -a 0 -S 0 -y {22 22} + -t 1.8457 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 357 -a 0 -S 0 -f 0 -m 0 -y {30 30} - -t 1.8457 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 357 -a 0 -S 0 -y {30 30} h -t 1.8457 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 357 -a 0 -S 0 -y {-1 -1} r -t 1.848 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 350 -a 1 + -t 1.848 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 350 -a 1 v -t 1.8500000000000001 sim_annotation 1.8500000000000001 20 Lost Packet (2 of them) + -t 1.85 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 358 -a 1 - -t 1.85 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 358 -a 1 h -t 1.85 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 358 -a 1 r -t 1.8513 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 352 -a 0 -S 0 -y {28 28} + -t 1.8513 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 352 -a 0 -S 0 -y {28 28} d -t 1.8513 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 352 -a 0 -S 0 -y {28 28} - -t 1.85165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 343 -a 0 -S 0 -y {24 24} h -t 1.85165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 343 -a 0 -S 0 -y {-1 -1} r -t 1.85365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 334 -a 1 + -t 1.85365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 334 -a 1 r -t 1.85365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 326 -a 1 - -t 1.85365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 334 -a 1 h -t 1.85365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 334 -a 1 r -t 1.85765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 336 -a 1 + -t 1.85765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 336 -a 1 - -t 1.85765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 336 -a 1 h -t 1.85765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 336 -a 1 r -t 1.858 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 353 -a 1 + -t 1.858 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 353 -a 1 r -t 1.8593 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 354 -a 0 -S 0 -y {29 29} + -t 1.8593 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 354 -a 0 -S 0 -y {29 29} d -t 1.8593 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 354 -a 0 -S 0 -y {29 29} - -t 1.85965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 344 -a 1 h -t 1.85965 -s 3 -d 4 -p cbr -e 500 -c 1 -i 344 -a 1 + -t 1.86 -s 1 -d 3 -p cbr -e 500 -c 1 -i 359 -a 1 - -t 1.86 -s 1 -d 3 -p cbr -e 500 -c 1 -i 359 -a 1 h -t 1.86 -s 1 -d 3 -p cbr -e 500 -c 1 -i 359 -a 1 + -t 1.86 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 360 -a 1 - -t 1.86 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 360 -a 1 h -t 1.86 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 360 -a 1 r -t 1.86165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 328 -a 1 r -t 1.86165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 331 -a 1 - -t 1.86365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 346 -a 0 -S 0 -y {25 25} h -t 1.86365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 346 -a 0 -S 0 -y {-1 -1} r -t 1.864 -s 1 -d 3 -p cbr -e 500 -c 1 -i 355 -a 1 + -t 1.864 -s 3 -d 4 -p cbr -e 500 -c 1 -i 355 -a 1 r -t 1.86565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 337 -a 1 + -t 1.86565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 337 -a 1 - -t 1.86565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 337 -a 1 h -t 1.86565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 337 -a 1 r -t 1.8673 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 357 -a 0 -S 0 -y {30 30} + -t 1.8673 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 357 -a 0 -S 0 -y {30 30} r -t 1.868 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 356 -a 1 + -t 1.868 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 356 -a 1 d -t 1.868 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 356 -a 1 + -t 1.87 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 361 -a 1 - -t 1.87 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 361 -a 1 h -t 1.87 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 361 -a 1 - -t 1.87165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 345 -a 1 h -t 1.87165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 345 -a 1 r -t 1.87365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 338 -a 1 + -t 1.87365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 338 -a 1 r -t 1.87365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 332 -a 1 - -t 1.87365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 338 -a 1 h -t 1.87365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 338 -a 1 r -t 1.878 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 358 -a 1 + -t 1.878 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 358 -a 1 - -t 1.87965 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 348 -a 0 -S 0 -y {26 26} h -t 1.87965 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 348 -a 0 -S 0 -y {-1 -1} + -t 1.88 -s 1 -d 3 -p cbr -e 500 -c 1 -i 362 -a 1 - -t 1.88 -s 1 -d 3 -p cbr -e 500 -c 1 -i 362 -a 1 h -t 1.88 -s 1 -d 3 -p cbr -e 500 -c 1 -i 362 -a 1 + -t 1.88 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 363 -a 1 - -t 1.88 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 363 -a 1 h -t 1.88 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 363 -a 1 r -t 1.88165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 341 -a 0 -S 0 -y {23 23} + -t 1.88165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 341 -a 0 -S 0 -y {23 23} - -t 1.88165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 341 -a 0 -S 0 -y {23 23} h -t 1.88165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 341 -a 0 -S 0 -y {-1 -1} r -t 1.88165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 334 -a 1 r -t 1.88165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 336 -a 1 r -t 1.884 -s 1 -d 3 -p cbr -e 500 -c 1 -i 359 -a 1 + -t 1.884 -s 3 -d 4 -p cbr -e 500 -c 1 -i 359 -a 1 r -t 1.88565 -s 3 -d 4 -p cbr -e 500 -c 1 -i 339 -a 1 + -t 1.88565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 339 -a 1 - -t 1.88565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 339 -a 1 h -t 1.88565 -s 4 -d 6 -p cbr -e 500 -c 1 -i 339 -a 1 - -t 1.88765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 347 -a 1 h -t 1.88765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 347 -a 1 r -t 1.888 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 360 -a 1 + -t 1.888 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 360 -a 1 + -t 1.89 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 364 -a 1 - -t 1.89 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 364 -a 1 h -t 1.89 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 364 -a 1 r -t 1.89365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 340 -a 1 + -t 1.89365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 340 -a 1 - -t 1.89365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 340 -a 1 h -t 1.89365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 340 -a 1 r -t 1.89365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 337 -a 1 - -t 1.89565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 351 -a 0 -S 0 -y {27 27} h -t 1.89565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 351 -a 0 -S 0 -y {-1 -1} r -t 1.898 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 361 -a 1 + -t 1.898 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 361 -a 1 v -t 1.8999999999999999 sim_annotation 1.8999999999999999 21 Ack_23 to 27 + -t 1.9 -s 1 -d 3 -p cbr -e 500 -c 1 -i 365 -a 1 - -t 1.9 -s 1 -d 3 -p cbr -e 500 -c 1 -i 365 -a 1 h -t 1.9 -s 1 -d 3 -p cbr -e 500 -c 1 -i 365 -a 1 + -t 1.9 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 366 -a 1 - -t 1.9 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 366 -a 1 h -t 1.9 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 366 -a 1 r -t 1.90165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 342 -a 1 + -t 1.90165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 342 -a 1 r -t 1.90165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 338 -a 1 - -t 1.90165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 342 -a 1 h -t 1.90165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 342 -a 1 r -t 1.90325 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 341 -a 0 -S 0 -y {23 23} + -t 1.90325 -s 5 -d 4 -p ack -e 40 -c 0 -i 367 -a 0 -S 0 -y {23 23} - -t 1.90325 -s 5 -d 4 -p ack -e 40 -c 0 -i 367 -a 0 -S 0 -y {23 23} h -t 1.90325 -s 5 -d 4 -p ack -e 40 -c 0 -i 367 -a 0 -S 0 -y {-1 -1} - -t 1.90365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 349 -a 1 h -t 1.90365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 349 -a 1 r -t 1.904 -s 1 -d 3 -p cbr -e 500 -c 1 -i 362 -a 1 + -t 1.904 -s 3 -d 4 -p cbr -e 500 -c 1 -i 362 -a 1 - -t 1.90765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 350 -a 1 h -t 1.90765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 350 -a 1 r -t 1.908 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 363 -a 1 + -t 1.908 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 363 -a 1 r -t 1.90965 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 343 -a 0 -S 0 -y {24 24} + -t 1.90965 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 343 -a 0 -S 0 -y {24 24} - -t 1.90965 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 343 -a 0 -S 0 -y {24 24} h -t 1.90965 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 343 -a 0 -S 0 -y {-1 -1} r -t 1.90965 -s 4 -d 6 -p cbr -e 500 -c 1 -i 339 -a 1 + -t 1.91 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 368 -a 1 - -t 1.91 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 368 -a 1 h -t 1.91 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 368 -a 1 r -t 1.91365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 344 -a 1 + -t 1.91365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 344 -a 1 - -t 1.91365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 344 -a 1 h -t 1.91365 -s 4 -d 6 -p cbr -e 500 -c 1 -i 344 -a 1 - -t 1.91565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 353 -a 1 h -t 1.91565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 353 -a 1 r -t 1.918 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 364 -a 1 + -t 1.918 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 364 -a 1 + -t 1.92 -s 1 -d 3 -p cbr -e 500 -c 1 -i 369 -a 1 - -t 1.92 -s 1 -d 3 -p cbr -e 500 -c 1 -i 369 -a 1 h -t 1.92 -s 1 -d 3 -p cbr -e 500 -c 1 -i 369 -a 1 + -t 1.92 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 370 -a 1 - -t 1.92 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 370 -a 1 h -t 1.92 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 370 -a 1 r -t 1.92165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 346 -a 0 -S 0 -y {25 25} + -t 1.92165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 346 -a 0 -S 0 -y {25 25} - -t 1.92165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 346 -a 0 -S 0 -y {25 25} h -t 1.92165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 346 -a 0 -S 0 -y {-1 -1} r -t 1.92165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 340 -a 1 r -t 1.92331 -s 5 -d 4 -p ack -e 40 -c 0 -i 367 -a 0 -S 0 -y {23 23} + -t 1.92331 -s 4 -d 3 -p ack -e 40 -c 0 -i 367 -a 0 -S 0 -y {23 23} - -t 1.92331 -s 4 -d 3 -p ack -e 40 -c 0 -i 367 -a 0 -S 0 -y {23 23} h -t 1.92331 -s 4 -d 3 -p ack -e 40 -c 0 -i 367 -a 0 -S 0 -y {-1 -1} - -t 1.92365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 355 -a 1 h -t 1.92365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 355 -a 1 r -t 1.924 -s 1 -d 3 -p cbr -e 500 -c 1 -i 365 -a 1 + -t 1.924 -s 3 -d 4 -p cbr -e 500 -c 1 -i 365 -a 1 - -t 1.92765 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 357 -a 0 -S 0 -y {30 30} h -t 1.92765 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 357 -a 0 -S 0 -y {-1 -1} r -t 1.928 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 366 -a 1 + -t 1.928 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 366 -a 1 r -t 1.92965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 345 -a 1 + -t 1.92965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 345 -a 1 - -t 1.92965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 345 -a 1 h -t 1.92965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 345 -a 1 r -t 1.92965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 342 -a 1 + -t 1.93 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 371 -a 1 - -t 1.93 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 371 -a 1 h -t 1.93 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 371 -a 1 r -t 1.93125 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 343 -a 0 -S 0 -y {24 24} + -t 1.93125 -s 5 -d 4 -p ack -e 40 -c 0 -i 372 -a 0 -S 0 -y {24 24} - -t 1.93125 -s 5 -d 4 -p ack -e 40 -c 0 -i 372 -a 0 -S 0 -y {24 24} h -t 1.93125 -s 5 -d 4 -p ack -e 40 -c 0 -i 372 -a 0 -S 0 -y {-1 -1} - -t 1.93565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 358 -a 1 h -t 1.93565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 358 -a 1 r -t 1.93765 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 348 -a 0 -S 0 -y {26 26} + -t 1.93765 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 348 -a 0 -S 0 -y {26 26} - -t 1.93765 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 348 -a 0 -S 0 -y {26 26} h -t 1.93765 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 348 -a 0 -S 0 -y {-1 -1} r -t 1.93765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 344 -a 1 r -t 1.938 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 368 -a 1 + -t 1.938 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 368 -a 1 + -t 1.94 -s 1 -d 3 -p cbr -e 500 -c 1 -i 373 -a 1 - -t 1.94 -s 1 -d 3 -p cbr -e 500 -c 1 -i 373 -a 1 h -t 1.94 -s 1 -d 3 -p cbr -e 500 -c 1 -i 373 -a 1 + -t 1.94 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 374 -a 1 - -t 1.94 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 374 -a 1 h -t 1.94 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 374 -a 1 r -t 1.94325 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 346 -a 0 -S 0 -y {25 25} + -t 1.94325 -s 5 -d 4 -p ack -e 40 -c 0 -i 375 -a 0 -S 0 -y {25 25} - -t 1.94325 -s 5 -d 4 -p ack -e 40 -c 0 -i 375 -a 0 -S 0 -y {25 25} h -t 1.94325 -s 5 -d 4 -p ack -e 40 -c 0 -i 375 -a 0 -S 0 -y {-1 -1} - -t 1.94365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 359 -a 1 h -t 1.94365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 359 -a 1 r -t 1.944 -s 1 -d 3 -p cbr -e 500 -c 1 -i 369 -a 1 + -t 1.944 -s 3 -d 4 -p cbr -e 500 -c 1 -i 369 -a 1 r -t 1.94565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 347 -a 1 + -t 1.94565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 347 -a 1 - -t 1.94565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 347 -a 1 h -t 1.94565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 347 -a 1 - -t 1.94765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 360 -a 1 h -t 1.94765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 360 -a 1 r -t 1.948 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 370 -a 1 + -t 1.948 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 370 -a 1 + -t 1.95 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 376 -a 1 - -t 1.95 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 376 -a 1 h -t 1.95 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 376 -a 1 r -t 1.95131 -s 5 -d 4 -p ack -e 40 -c 0 -i 372 -a 0 -S 0 -y {24 24} + -t 1.95131 -s 4 -d 3 -p ack -e 40 -c 0 -i 372 -a 0 -S 0 -y {24 24} - -t 1.95131 -s 4 -d 3 -p ack -e 40 -c 0 -i 372 -a 0 -S 0 -y {24 24} h -t 1.95131 -s 4 -d 3 -p ack -e 40 -c 0 -i 372 -a 0 -S 0 -y {-1 -1} r -t 1.95365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 351 -a 0 -S 0 -y {27 27} + -t 1.95365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 351 -a 0 -S 0 -y {27 27} - -t 1.95365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 351 -a 0 -S 0 -y {27 27} h -t 1.95365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 351 -a 0 -S 0 -y {-1 -1} - -t 1.95565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 361 -a 1 h -t 1.95565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 361 -a 1 r -t 1.95765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 349 -a 1 + -t 1.95765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 349 -a 1 - -t 1.95765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 349 -a 1 h -t 1.95765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 349 -a 1 r -t 1.95765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 345 -a 1 r -t 1.958 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 371 -a 1 + -t 1.958 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 371 -a 1 r -t 1.95925 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 348 -a 0 -S 0 -y {26 26} + -t 1.95925 -s 5 -d 4 -p ack -e 40 -c 0 -i 377 -a 0 -S 0 -y {26 26} - -t 1.95925 -s 5 -d 4 -p ack -e 40 -c 0 -i 377 -a 0 -S 0 -y {26 26} h -t 1.95925 -s 5 -d 4 -p ack -e 40 -c 0 -i 377 -a 0 -S 0 -y {-1 -1} + -t 1.96 -s 1 -d 3 -p cbr -e 500 -c 1 -i 378 -a 1 - -t 1.96 -s 1 -d 3 -p cbr -e 500 -c 1 -i 378 -a 1 h -t 1.96 -s 1 -d 3 -p cbr -e 500 -c 1 -i 378 -a 1 + -t 1.96 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 379 -a 1 - -t 1.96 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 379 -a 1 h -t 1.96 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 379 -a 1 r -t 1.96331 -s 5 -d 4 -p ack -e 40 -c 0 -i 375 -a 0 -S 0 -y {25 25} + -t 1.96331 -s 4 -d 3 -p ack -e 40 -c 0 -i 375 -a 0 -S 0 -y {25 25} - -t 1.96331 -s 4 -d 3 -p ack -e 40 -c 0 -i 375 -a 0 -S 0 -y {25 25} h -t 1.96331 -s 4 -d 3 -p ack -e 40 -c 0 -i 375 -a 0 -S 0 -y {-1 -1} - -t 1.96365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 362 -a 1 h -t 1.96365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 362 -a 1 r -t 1.964 -s 1 -d 3 -p cbr -e 500 -c 1 -i 373 -a 1 + -t 1.964 -s 3 -d 4 -p cbr -e 500 -c 1 -i 373 -a 1 r -t 1.96565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 350 -a 1 + -t 1.96565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 350 -a 1 - -t 1.96565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 350 -a 1 h -t 1.96565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 350 -a 1 - -t 1.96765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 363 -a 1 h -t 1.96765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 363 -a 1 r -t 1.968 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 374 -a 1 + -t 1.968 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 374 -a 1 + -t 1.97 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 380 -a 1 - -t 1.97 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 380 -a 1 h -t 1.97 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 380 -a 1 r -t 1.97363 -s 4 -d 3 -p ack -e 40 -c 0 -i 367 -a 0 -S 0 -y {23 23} + -t 1.97363 -s 3 -d 0 -p ack -e 40 -c 0 -i 367 -a 0 -S 0 -y {23 23} - -t 1.97363 -s 3 -d 0 -p ack -e 40 -c 0 -i 367 -a 0 -S 0 -f 0 -m 1 -y {23 23} h -t 1.97363 -s 3 -d 0 -p ack -e 40 -c 0 -i 367 -a 0 -S 0 -y {-1 -1} r -t 1.97365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 353 -a 1 + -t 1.97365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 353 -a 1 r -t 1.97365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 347 -a 1 - -t 1.97365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 353 -a 1 h -t 1.97365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 353 -a 1 r -t 1.97525 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 351 -a 0 -S 0 -y {27 27} + -t 1.97525 -s 5 -d 4 -p ack -e 40 -c 0 -i 381 -a 0 -S 0 -y {27 27} - -t 1.97525 -s 5 -d 4 -p ack -e 40 -c 0 -i 381 -a 0 -S 0 -y {27 27} h -t 1.97525 -s 5 -d 4 -p ack -e 40 -c 0 -i 381 -a 0 -S 0 -y {-1 -1} - -t 1.97565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 364 -a 1 h -t 1.97565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 364 -a 1 r -t 1.97765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 355 -a 1 + -t 1.97765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 355 -a 1 - -t 1.97765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 355 -a 1 h -t 1.97765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 355 -a 1 r -t 1.978 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 376 -a 1 + -t 1.978 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 376 -a 1 r -t 1.97931 -s 5 -d 4 -p ack -e 40 -c 0 -i 377 -a 0 -S 0 -y {26 26} + -t 1.97931 -s 4 -d 3 -p ack -e 40 -c 0 -i 377 -a 0 -S 0 -y {26 26} - -t 1.97931 -s 4 -d 3 -p ack -e 40 -c 0 -i 377 -a 0 -S 0 -y {26 26} h -t 1.97931 -s 4 -d 3 -p ack -e 40 -c 0 -i 377 -a 0 -S 0 -y {-1 -1} + -t 1.98 -s 1 -d 3 -p cbr -e 500 -c 1 -i 382 -a 1 - -t 1.98 -s 1 -d 3 -p cbr -e 500 -c 1 -i 382 -a 1 h -t 1.98 -s 1 -d 3 -p cbr -e 500 -c 1 -i 382 -a 1 + -t 1.98 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 383 -a 1 - -t 1.98 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 383 -a 1 h -t 1.98 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 383 -a 1 r -t 1.98165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 349 -a 1 - -t 1.98365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 365 -a 1 h -t 1.98365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 365 -a 1 r -t 1.984 -s 1 -d 3 -p cbr -e 500 -c 1 -i 378 -a 1 + -t 1.984 -s 3 -d 4 -p cbr -e 500 -c 1 -i 378 -a 1 r -t 1.98565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 357 -a 0 -S 0 -y {30 30} + -t 1.98565 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 357 -a 0 -S 0 -y {30 30} - -t 1.98565 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 357 -a 0 -S 0 -y {30 30} h -t 1.98565 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 357 -a 0 -S 0 -y {-1 -1} - -t 1.98765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 366 -a 1 h -t 1.98765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 366 -a 1 r -t 1.988 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 379 -a 1 + -t 1.988 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 379 -a 1 + -t 1.99 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 384 -a 1 - -t 1.99 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 384 -a 1 h -t 1.99 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 384 -a 1 r -t 1.99365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 358 -a 1 + -t 1.99365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 358 -a 1 - -t 1.99365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 358 -a 1 h -t 1.99365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 358 -a 1 r -t 1.99365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 350 -a 1 r -t 1.9937 -s 3 -d 0 -p ack -e 40 -c 0 -i 367 -a 0 -S 0 -y {23 23} + -t 1.9937 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 385 -a 0 -S 0 -f 0 -m 0 -y {31 31} - -t 1.9937 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 385 -a 0 -S 0 -y {31 31} h -t 1.9937 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 385 -a 0 -S 0 -y {-1 -1} r -t 1.99531 -s 5 -d 4 -p ack -e 40 -c 0 -i 381 -a 0 -S 0 -y {27 27} + -t 1.99531 -s 4 -d 3 -p ack -e 40 -c 0 -i 381 -a 0 -S 0 -y {27 27} - -t 1.99531 -s 4 -d 3 -p ack -e 40 -c 0 -i 381 -a 0 -S 0 -y {27 27} h -t 1.99531 -s 4 -d 3 -p ack -e 40 -c 0 -i 381 -a 0 -S 0 -y {-1 -1} - -t 1.99565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 368 -a 1 h -t 1.99565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 368 -a 1 r -t 1.99765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 359 -a 1 + -t 1.99765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 359 -a 1 - -t 1.99765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 359 -a 1 h -t 1.99765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 359 -a 1 r -t 1.998 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 380 -a 1 + -t 1.998 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 380 -a 1 v -t 2 sim_annotation 2 22 Send Packet_31 to 35 + -t 2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 386 -a 1 - -t 2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 386 -a 1 h -t 2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 386 -a 1 + -t 2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 387 -a 1 - -t 2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 387 -a 1 h -t 2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 387 -a 1 r -t 2.00163 -s 4 -d 3 -p ack -e 40 -c 0 -i 372 -a 0 -S 0 -y {24 24} + -t 2.00163 -s 3 -d 0 -p ack -e 40 -c 0 -i 372 -a 0 -S 0 -y {24 24} - -t 2.00163 -s 3 -d 0 -p ack -e 40 -c 0 -i 372 -a 0 -S 0 -f 0 -m 1 -y {24 24} h -t 2.00163 -s 3 -d 0 -p ack -e 40 -c 0 -i 372 -a 0 -S 0 -y {-1 -1} r -t 2.00165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 353 -a 1 r -t 2.00165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 355 -a 1 - -t 2.00365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 369 -a 1 h -t 2.00365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 369 -a 1 r -t 2.004 -s 1 -d 3 -p cbr -e 500 -c 1 -i 382 -a 1 + -t 2.004 -s 3 -d 4 -p cbr -e 500 -c 1 -i 382 -a 1 r -t 2.00565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 360 -a 1 + -t 2.00565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 360 -a 1 - -t 2.00565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 360 -a 1 h -t 2.00565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 360 -a 1 r -t 2.00725 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 357 -a 0 -S 0 -y {30 30} + -t 2.00725 -s 5 -d 4 -p ack -e 40 -c 0 -i 388 -a 0 -S 0 -y {27 27} - -t 2.00725 -s 5 -d 4 -p ack -e 40 -c 0 -i 388 -a 0 -S 0 -y {27 27} h -t 2.00725 -s 5 -d 4 -p ack -e 40 -c 0 -i 388 -a 0 -S 0 -y {-1 -1} - -t 2.00765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 370 -a 1 h -t 2.00765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 370 -a 1 r -t 2.008 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 383 -a 1 + -t 2.008 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 383 -a 1 + -t 2.01 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 389 -a 1 - -t 2.01 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 389 -a 1 h -t 2.01 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 389 -a 1 r -t 2.01363 -s 4 -d 3 -p ack -e 40 -c 0 -i 375 -a 0 -S 0 -y {25 25} + -t 2.01363 -s 3 -d 0 -p ack -e 40 -c 0 -i 375 -a 0 -S 0 -y {25 25} - -t 2.01363 -s 3 -d 0 -p ack -e 40 -c 0 -i 375 -a 0 -S 0 -f 0 -m 1 -y {25 25} h -t 2.01363 -s 3 -d 0 -p ack -e 40 -c 0 -i 375 -a 0 -S 0 -y {-1 -1} r -t 2.01365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 361 -a 1 + -t 2.01365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 361 -a 1 - -t 2.01365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 361 -a 1 h -t 2.01365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 361 -a 1 r -t 2.0153 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 385 -a 0 -S 0 -y {31 31} + -t 2.0153 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 385 -a 0 -S 0 -y {31 31} d -t 2.0153 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 385 -a 0 -S 0 -y {31 31} - -t 2.01565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 371 -a 1 h -t 2.01565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 371 -a 1 r -t 2.01765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 362 -a 1 + -t 2.01765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 362 -a 1 - -t 2.01765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 362 -a 1 h -t 2.01765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 362 -a 1 r -t 2.018 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 384 -a 1 + -t 2.018 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 384 -a 1 + -t 2.02 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 390 -a 1 - -t 2.02 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 390 -a 1 h -t 2.02 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 390 -a 1 + -t 2.02 -s 1 -d 3 -p cbr -e 500 -c 1 -i 391 -a 1 - -t 2.02 -s 1 -d 3 -p cbr -e 500 -c 1 -i 391 -a 1 h -t 2.02 -s 1 -d 3 -p cbr -e 500 -c 1 -i 391 -a 1 r -t 2.02165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 358 -a 1 r -t 2.02165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 359 -a 1 r -t 2.0217 -s 3 -d 0 -p ack -e 40 -c 0 -i 372 -a 0 -S 0 -y {24 24} + -t 2.0217 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 392 -a 0 -S 0 -f 0 -m 0 -y {32 32} - -t 2.0217 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 392 -a 0 -S 0 -y {32 32} h -t 2.0217 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 392 -a 0 -S 0 -y {-1 -1} - -t 2.02365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 373 -a 1 h -t 2.02365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 373 -a 1 r -t 2.024 -s 1 -d 3 -p cbr -e 500 -c 1 -i 386 -a 1 + -t 2.024 -s 3 -d 4 -p cbr -e 500 -c 1 -i 386 -a 1 r -t 2.02565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 363 -a 1 + -t 2.02565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 363 -a 1 - -t 2.02565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 363 -a 1 h -t 2.02565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 363 -a 1 r -t 2.02731 -s 5 -d 4 -p ack -e 40 -c 0 -i 388 -a 0 -S 0 -y {27 27} + -t 2.02731 -s 4 -d 3 -p ack -e 40 -c 0 -i 388 -a 0 -S 0 -y {27 27} - -t 2.02731 -s 4 -d 3 -p ack -e 40 -c 0 -i 388 -a 0 -S 0 -y {27 27} h -t 2.02731 -s 4 -d 3 -p ack -e 40 -c 0 -i 388 -a 0 -S 0 -y {-1 -1} - -t 2.02765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 374 -a 1 h -t 2.02765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 374 -a 1 r -t 2.028 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 387 -a 1 + -t 2.028 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 387 -a 1 r -t 2.02963 -s 4 -d 3 -p ack -e 40 -c 0 -i 377 -a 0 -S 0 -y {26 26} + -t 2.02963 -s 3 -d 0 -p ack -e 40 -c 0 -i 377 -a 0 -S 0 -y {26 26} - -t 2.02963 -s 3 -d 0 -p ack -e 40 -c 0 -i 377 -a 0 -S 0 -f 0 -m 1 -y {26 26} h -t 2.02963 -s 3 -d 0 -p ack -e 40 -c 0 -i 377 -a 0 -S 0 -y {-1 -1} + -t 2.03 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 393 -a 1 - -t 2.03 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 393 -a 1 h -t 2.03 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 393 -a 1 r -t 2.03365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 364 -a 1 + -t 2.03365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 364 -a 1 r -t 2.03365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 360 -a 1 - -t 2.03365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 364 -a 1 h -t 2.03365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 364 -a 1 r -t 2.0337 -s 3 -d 0 -p ack -e 40 -c 0 -i 375 -a 0 -S 0 -y {25 25} + -t 2.0337 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 394 -a 0 -S 0 -f 0 -m 0 -y {33 33} - -t 2.0337 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 394 -a 0 -S 0 -y {33 33} h -t 2.0337 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 394 -a 0 -S 0 -y {-1 -1} - -t 2.03565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 376 -a 1 h -t 2.03565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 376 -a 1 r -t 2.03765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 365 -a 1 + -t 2.03765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 365 -a 1 - -t 2.03765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 365 -a 1 h -t 2.03765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 365 -a 1 r -t 2.038 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 389 -a 1 + -t 2.038 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 389 -a 1 + -t 2.04 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 395 -a 1 - -t 2.04 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 395 -a 1 h -t 2.04 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 395 -a 1 + -t 2.04 -s 1 -d 3 -p cbr -e 500 -c 1 -i 396 -a 1 - -t 2.04 -s 1 -d 3 -p cbr -e 500 -c 1 -i 396 -a 1 h -t 2.04 -s 1 -d 3 -p cbr -e 500 -c 1 -i 396 -a 1 r -t 2.04165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 361 -a 1 r -t 2.04165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 362 -a 1 r -t 2.0433 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 392 -a 0 -S 0 -y {32 32} + -t 2.0433 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 392 -a 0 -S 0 -y {32 32} d -t 2.0433 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 392 -a 0 -S 0 -y {32 32} - -t 2.04365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 378 -a 1 h -t 2.04365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 378 -a 1 r -t 2.044 -s 1 -d 3 -p cbr -e 500 -c 1 -i 391 -a 1 + -t 2.044 -s 3 -d 4 -p cbr -e 500 -c 1 -i 391 -a 1 r -t 2.04563 -s 4 -d 3 -p ack -e 40 -c 0 -i 381 -a 0 -S 0 -y {27 27} + -t 2.04563 -s 3 -d 0 -p ack -e 40 -c 0 -i 381 -a 0 -S 0 -y {27 27} - -t 2.04563 -s 3 -d 0 -p ack -e 40 -c 0 -i 381 -a 0 -S 0 -f 0 -m 1 -y {27 27} h -t 2.04563 -s 3 -d 0 -p ack -e 40 -c 0 -i 381 -a 0 -S 0 -y {-1 -1} r -t 2.04565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 366 -a 1 + -t 2.04565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 366 -a 1 - -t 2.04565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 366 -a 1 h -t 2.04565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 366 -a 1 - -t 2.04765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 379 -a 1 h -t 2.04765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 379 -a 1 r -t 2.048 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 390 -a 1 + -t 2.048 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 390 -a 1 r -t 2.0497 -s 3 -d 0 -p ack -e 40 -c 0 -i 377 -a 0 -S 0 -y {26 26} + -t 2.0497 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 397 -a 0 -S 0 -f 0 -m 0 -y {34 34} - -t 2.0497 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 397 -a 0 -S 0 -y {34 34} h -t 2.0497 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 397 -a 0 -S 0 -y {-1 -1} + -t 2.05 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 398 -a 1 - -t 2.05 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 398 -a 1 h -t 2.05 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 398 -a 1 r -t 2.05365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 368 -a 1 + -t 2.05365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 368 -a 1 r -t 2.05365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 363 -a 1 - -t 2.05365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 368 -a 1 h -t 2.05365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 368 -a 1 r -t 2.0553 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 394 -a 0 -S 0 -y {33 33} + -t 2.0553 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 394 -a 0 -S 0 -y {33 33} d -t 2.0553 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 394 -a 0 -S 0 -y {33 33} - -t 2.05565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 380 -a 1 h -t 2.05565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 380 -a 1 r -t 2.05765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 369 -a 1 + -t 2.05765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 369 -a 1 - -t 2.05765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 369 -a 1 h -t 2.05765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 369 -a 1 r -t 2.058 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 393 -a 1 + -t 2.058 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 393 -a 1 + -t 2.06 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 399 -a 1 - -t 2.06 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 399 -a 1 h -t 2.06 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 399 -a 1 + -t 2.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 400 -a 1 - -t 2.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 400 -a 1 h -t 2.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 400 -a 1 r -t 2.06165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 364 -a 1 r -t 2.06165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 365 -a 1 - -t 2.06365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 382 -a 1 h -t 2.06365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 382 -a 1 r -t 2.064 -s 1 -d 3 -p cbr -e 500 -c 1 -i 396 -a 1 + -t 2.064 -s 3 -d 4 -p cbr -e 500 -c 1 -i 396 -a 1 r -t 2.06565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 370 -a 1 + -t 2.06565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 370 -a 1 - -t 2.06565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 370 -a 1 h -t 2.06565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 370 -a 1 r -t 2.0657 -s 3 -d 0 -p ack -e 40 -c 0 -i 381 -a 0 -S 0 -y {27 27} + -t 2.0657 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 401 -a 0 -S 0 -f 0 -m 0 -y {35 35} - -t 2.0657 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 401 -a 0 -S 0 -y {35 35} h -t 2.0657 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 401 -a 0 -S 0 -y {-1 -1} - -t 2.06765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 383 -a 1 h -t 2.06765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 383 -a 1 r -t 2.068 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 395 -a 1 + -t 2.068 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 395 -a 1 + -t 2.07 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 402 -a 1 - -t 2.07 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 402 -a 1 h -t 2.07 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 402 -a 1 r -t 2.0713 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 397 -a 0 -S 0 -y {34 34} + -t 2.0713 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 397 -a 0 -S 0 -y {34 34} d -t 2.0713 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 397 -a 0 -S 0 -y {34 34} r -t 2.07365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 371 -a 1 + -t 2.07365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 371 -a 1 r -t 2.07365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 366 -a 1 - -t 2.07365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 371 -a 1 h -t 2.07365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 371 -a 1 - -t 2.07565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 384 -a 1 h -t 2.07565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 384 -a 1 r -t 2.07763 -s 4 -d 3 -p ack -e 40 -c 0 -i 388 -a 0 -S 0 -y {27 27} + -t 2.07763 -s 3 -d 0 -p ack -e 40 -c 0 -i 388 -a 0 -S 0 -y {27 27} - -t 2.07763 -s 3 -d 0 -p ack -e 40 -c 0 -i 388 -a 0 -S 0 -f 0 -m 1 -y {27 27} h -t 2.07763 -s 3 -d 0 -p ack -e 40 -c 0 -i 388 -a 0 -S 0 -y {-1 -1} r -t 2.07765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 373 -a 1 + -t 2.07765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 373 -a 1 - -t 2.07765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 373 -a 1 h -t 2.07765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 373 -a 1 r -t 2.078 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 398 -a 1 + -t 2.078 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 398 -a 1 + -t 2.08 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 403 -a 1 - -t 2.08 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 403 -a 1 h -t 2.08 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 403 -a 1 v -t 2.0800000000000001 sim_annotation 2.0800000000000001 23 Lost Packet (all of them) + -t 2.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 404 -a 1 - -t 2.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 404 -a 1 h -t 2.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 404 -a 1 r -t 2.08165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 368 -a 1 r -t 2.08165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 369 -a 1 - -t 2.08365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 386 -a 1 h -t 2.08365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 386 -a 1 r -t 2.084 -s 1 -d 3 -p cbr -e 500 -c 1 -i 400 -a 1 + -t 2.084 -s 3 -d 4 -p cbr -e 500 -c 1 -i 400 -a 1 r -t 2.08565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 374 -a 1 + -t 2.08565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 374 -a 1 - -t 2.08565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 374 -a 1 h -t 2.08565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 374 -a 1 r -t 2.0873 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 401 -a 0 -S 0 -y {35 35} + -t 2.0873 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 401 -a 0 -S 0 -y {35 35} d -t 2.0873 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 401 -a 0 -S 0 -y {35 35} - -t 2.08765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 387 -a 1 h -t 2.08765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 387 -a 1 r -t 2.088 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 399 -a 1 + -t 2.088 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 399 -a 1 + -t 2.09 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 405 -a 1 - -t 2.09 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 405 -a 1 h -t 2.09 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 405 -a 1 r -t 2.09365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 376 -a 1 + -t 2.09365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 376 -a 1 r -t 2.09365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 370 -a 1 - -t 2.09365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 376 -a 1 h -t 2.09365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 376 -a 1 - -t 2.09565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 389 -a 1 h -t 2.09565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 389 -a 1 r -t 2.09765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 378 -a 1 + -t 2.09765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 378 -a 1 - -t 2.09765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 378 -a 1 h -t 2.09765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 378 -a 1 r -t 2.0977 -s 3 -d 0 -p ack -e 40 -c 0 -i 388 -a 0 -S 0 -y {27 27} r -t 2.098 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 402 -a 1 + -t 2.098 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 402 -a 1 + -t 2.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 406 -a 1 - -t 2.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 406 -a 1 h -t 2.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 406 -a 1 + -t 2.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 407 -a 1 - -t 2.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 407 -a 1 h -t 2.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 407 -a 1 r -t 2.10165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 371 -a 1 r -t 2.10165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 373 -a 1 - -t 2.10365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 391 -a 1 h -t 2.10365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 391 -a 1 r -t 2.104 -s 1 -d 3 -p cbr -e 500 -c 1 -i 404 -a 1 + -t 2.104 -s 3 -d 4 -p cbr -e 500 -c 1 -i 404 -a 1 r -t 2.10565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 379 -a 1 + -t 2.10565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 379 -a 1 - -t 2.10565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 379 -a 1 h -t 2.10565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 379 -a 1 - -t 2.10765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 390 -a 1 h -t 2.10765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 390 -a 1 r -t 2.108 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 403 -a 1 + -t 2.108 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 403 -a 1 + -t 2.11 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 408 -a 1 - -t 2.11 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 408 -a 1 h -t 2.11 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 408 -a 1 r -t 2.11365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 380 -a 1 + -t 2.11365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 380 -a 1 r -t 2.11365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 374 -a 1 - -t 2.11365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 380 -a 1 h -t 2.11365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 380 -a 1 - -t 2.11565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 393 -a 1 h -t 2.11565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 393 -a 1 r -t 2.11765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 382 -a 1 + -t 2.11765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 382 -a 1 - -t 2.11765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 382 -a 1 h -t 2.11765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 382 -a 1 r -t 2.118 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 405 -a 1 + -t 2.118 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 405 -a 1 + -t 2.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 409 -a 1 - -t 2.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 409 -a 1 h -t 2.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 409 -a 1 + -t 2.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 410 -a 1 - -t 2.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 410 -a 1 h -t 2.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 410 -a 1 r -t 2.12165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 376 -a 1 r -t 2.12165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 378 -a 1 - -t 2.12365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 396 -a 1 h -t 2.12365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 396 -a 1 r -t 2.124 -s 1 -d 3 -p cbr -e 500 -c 1 -i 407 -a 1 + -t 2.124 -s 3 -d 4 -p cbr -e 500 -c 1 -i 407 -a 1 r -t 2.12565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 383 -a 1 + -t 2.12565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 383 -a 1 - -t 2.12565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 383 -a 1 h -t 2.12565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 383 -a 1 - -t 2.12765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 395 -a 1 h -t 2.12765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 395 -a 1 r -t 2.128 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 406 -a 1 + -t 2.128 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 406 -a 1 + -t 2.13 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 411 -a 1 - -t 2.13 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 411 -a 1 h -t 2.13 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 411 -a 1 r -t 2.13365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 384 -a 1 + -t 2.13365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 384 -a 1 r -t 2.13365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 379 -a 1 - -t 2.13365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 384 -a 1 h -t 2.13365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 384 -a 1 - -t 2.13565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 398 -a 1 h -t 2.13565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 398 -a 1 r -t 2.13765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 386 -a 1 + -t 2.13765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 386 -a 1 - -t 2.13765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 386 -a 1 h -t 2.13765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 386 -a 1 r -t 2.138 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 408 -a 1 + -t 2.138 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 408 -a 1 + -t 2.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 412 -a 1 - -t 2.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 412 -a 1 h -t 2.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 412 -a 1 + -t 2.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 413 -a 1 - -t 2.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 413 -a 1 h -t 2.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 413 -a 1 r -t 2.14165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 380 -a 1 r -t 2.14165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 382 -a 1 - -t 2.14365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 400 -a 1 h -t 2.14365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 400 -a 1 r -t 2.144 -s 1 -d 3 -p cbr -e 500 -c 1 -i 410 -a 1 + -t 2.144 -s 3 -d 4 -p cbr -e 500 -c 1 -i 410 -a 1 r -t 2.14565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 387 -a 1 + -t 2.14565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 387 -a 1 - -t 2.14565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 387 -a 1 h -t 2.14565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 387 -a 1 - -t 2.14765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 399 -a 1 h -t 2.14765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 399 -a 1 r -t 2.148 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 409 -a 1 + -t 2.148 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 409 -a 1 + -t 2.15 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 414 -a 1 - -t 2.15 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 414 -a 1 h -t 2.15 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 414 -a 1 r -t 2.15365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 389 -a 1 + -t 2.15365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 389 -a 1 r -t 2.15365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 383 -a 1 - -t 2.15365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 389 -a 1 h -t 2.15365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 389 -a 1 - -t 2.15565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 402 -a 1 h -t 2.15565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 402 -a 1 r -t 2.15765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 391 -a 1 + -t 2.15765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 391 -a 1 - -t 2.15765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 391 -a 1 h -t 2.15765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 391 -a 1 r -t 2.158 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 411 -a 1 + -t 2.158 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 411 -a 1 + -t 2.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 415 -a 1 - -t 2.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 415 -a 1 h -t 2.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 415 -a 1 + -t 2.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 416 -a 1 - -t 2.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 416 -a 1 h -t 2.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 416 -a 1 r -t 2.16165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 384 -a 1 r -t 2.16165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 386 -a 1 - -t 2.16365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 404 -a 1 h -t 2.16365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 404 -a 1 r -t 2.164 -s 1 -d 3 -p cbr -e 500 -c 1 -i 413 -a 1 + -t 2.164 -s 3 -d 4 -p cbr -e 500 -c 1 -i 413 -a 1 r -t 2.16565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 390 -a 1 + -t 2.16565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 390 -a 1 - -t 2.16565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 390 -a 1 h -t 2.16565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 390 -a 1 - -t 2.16765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 403 -a 1 h -t 2.16765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 403 -a 1 r -t 2.168 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 412 -a 1 + -t 2.168 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 412 -a 1 + -t 2.17 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 417 -a 1 - -t 2.17 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 417 -a 1 h -t 2.17 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 417 -a 1 r -t 2.17365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 393 -a 1 + -t 2.17365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 393 -a 1 r -t 2.17365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 387 -a 1 - -t 2.17365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 393 -a 1 h -t 2.17365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 393 -a 1 - -t 2.17565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 405 -a 1 h -t 2.17565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 405 -a 1 r -t 2.17765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 396 -a 1 + -t 2.17765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 396 -a 1 - -t 2.17765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 396 -a 1 h -t 2.17765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 396 -a 1 r -t 2.178 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 414 -a 1 + -t 2.178 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 414 -a 1 + -t 2.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 418 -a 1 - -t 2.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 418 -a 1 h -t 2.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 418 -a 1 + -t 2.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 419 -a 1 - -t 2.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 419 -a 1 h -t 2.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 419 -a 1 r -t 2.18165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 389 -a 1 r -t 2.18165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 391 -a 1 - -t 2.18365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 407 -a 1 h -t 2.18365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 407 -a 1 r -t 2.184 -s 1 -d 3 -p cbr -e 500 -c 1 -i 416 -a 1 + -t 2.184 -s 3 -d 4 -p cbr -e 500 -c 1 -i 416 -a 1 r -t 2.18565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 395 -a 1 + -t 2.18565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 395 -a 1 - -t 2.18565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 395 -a 1 h -t 2.18565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 395 -a 1 - -t 2.18765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 406 -a 1 h -t 2.18765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 406 -a 1 r -t 2.188 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 415 -a 1 + -t 2.188 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 415 -a 1 + -t 2.19 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 420 -a 1 - -t 2.19 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 420 -a 1 h -t 2.19 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 420 -a 1 r -t 2.19365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 398 -a 1 + -t 2.19365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 398 -a 1 r -t 2.19365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 390 -a 1 - -t 2.19365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 398 -a 1 h -t 2.19365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 398 -a 1 - -t 2.19565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 408 -a 1 h -t 2.19565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 408 -a 1 r -t 2.19765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 400 -a 1 + -t 2.19765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 400 -a 1 - -t 2.19765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 400 -a 1 h -t 2.19765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 400 -a 1 r -t 2.198 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 417 -a 1 + -t 2.198 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 417 -a 1 + -t 2.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 421 -a 1 - -t 2.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 421 -a 1 h -t 2.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 421 -a 1 + -t 2.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 422 -a 1 - -t 2.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 422 -a 1 h -t 2.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 422 -a 1 r -t 2.20165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 393 -a 1 r -t 2.20165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 396 -a 1 - -t 2.20365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 410 -a 1 h -t 2.20365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 410 -a 1 r -t 2.204 -s 1 -d 3 -p cbr -e 500 -c 1 -i 419 -a 1 + -t 2.204 -s 3 -d 4 -p cbr -e 500 -c 1 -i 419 -a 1 r -t 2.20565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 399 -a 1 + -t 2.20565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 399 -a 1 - -t 2.20565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 399 -a 1 h -t 2.20565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 399 -a 1 - -t 2.20765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 409 -a 1 h -t 2.20765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 409 -a 1 r -t 2.208 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 418 -a 1 + -t 2.208 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 418 -a 1 + -t 2.21 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 423 -a 1 - -t 2.21 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 423 -a 1 h -t 2.21 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 423 -a 1 r -t 2.21365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 402 -a 1 + -t 2.21365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 402 -a 1 r -t 2.21365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 395 -a 1 - -t 2.21365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 402 -a 1 h -t 2.21365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 402 -a 1 - -t 2.21565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 411 -a 1 h -t 2.21565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 411 -a 1 r -t 2.21765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 404 -a 1 + -t 2.21765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 404 -a 1 - -t 2.21765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 404 -a 1 h -t 2.21765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 404 -a 1 r -t 2.218 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 420 -a 1 + -t 2.218 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 420 -a 1 + -t 2.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 424 -a 1 - -t 2.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 424 -a 1 h -t 2.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 424 -a 1 + -t 2.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 425 -a 1 - -t 2.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 425 -a 1 h -t 2.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 425 -a 1 r -t 2.22165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 398 -a 1 r -t 2.22165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 400 -a 1 - -t 2.22365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 413 -a 1 h -t 2.22365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 413 -a 1 r -t 2.224 -s 1 -d 3 -p cbr -e 500 -c 1 -i 422 -a 1 + -t 2.224 -s 3 -d 4 -p cbr -e 500 -c 1 -i 422 -a 1 r -t 2.22565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 403 -a 1 + -t 2.22565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 403 -a 1 - -t 2.22565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 403 -a 1 h -t 2.22565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 403 -a 1 - -t 2.22765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 412 -a 1 h -t 2.22765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 412 -a 1 r -t 2.228 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 421 -a 1 + -t 2.228 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 421 -a 1 + -t 2.23 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 426 -a 1 - -t 2.23 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 426 -a 1 h -t 2.23 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 426 -a 1 r -t 2.23365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 405 -a 1 + -t 2.23365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 405 -a 1 r -t 2.23365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 399 -a 1 - -t 2.23365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 405 -a 1 h -t 2.23365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 405 -a 1 - -t 2.23565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 414 -a 1 h -t 2.23565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 414 -a 1 r -t 2.23765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 407 -a 1 + -t 2.23765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 407 -a 1 - -t 2.23765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 407 -a 1 h -t 2.23765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 407 -a 1 r -t 2.238 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 423 -a 1 + -t 2.238 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 423 -a 1 + -t 2.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 427 -a 1 - -t 2.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 427 -a 1 h -t 2.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 427 -a 1 + -t 2.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 428 -a 1 - -t 2.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 428 -a 1 h -t 2.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 428 -a 1 r -t 2.24165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 402 -a 1 r -t 2.24165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 404 -a 1 - -t 2.24365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 416 -a 1 h -t 2.24365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 416 -a 1 r -t 2.244 -s 1 -d 3 -p cbr -e 500 -c 1 -i 425 -a 1 + -t 2.244 -s 3 -d 4 -p cbr -e 500 -c 1 -i 425 -a 1 r -t 2.24565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 406 -a 1 + -t 2.24565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 406 -a 1 - -t 2.24565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 406 -a 1 h -t 2.24565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 406 -a 1 - -t 2.24765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 415 -a 1 h -t 2.24765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 415 -a 1 r -t 2.248 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 424 -a 1 + -t 2.248 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 424 -a 1 + -t 2.25 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 429 -a 1 - -t 2.25 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 429 -a 1 h -t 2.25 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 429 -a 1 r -t 2.25365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 408 -a 1 + -t 2.25365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 408 -a 1 r -t 2.25365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 403 -a 1 - -t 2.25365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 408 -a 1 h -t 2.25365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 408 -a 1 - -t 2.25565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 417 -a 1 h -t 2.25565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 417 -a 1 r -t 2.25765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 410 -a 1 + -t 2.25765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 410 -a 1 - -t 2.25765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 410 -a 1 h -t 2.25765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 410 -a 1 r -t 2.258 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 426 -a 1 + -t 2.258 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 426 -a 1 + -t 2.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 430 -a 1 - -t 2.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 430 -a 1 h -t 2.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 430 -a 1 + -t 2.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 431 -a 1 - -t 2.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 431 -a 1 h -t 2.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 431 -a 1 r -t 2.26165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 405 -a 1 r -t 2.26165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 407 -a 1 - -t 2.26365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 419 -a 1 h -t 2.26365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 419 -a 1 r -t 2.264 -s 1 -d 3 -p cbr -e 500 -c 1 -i 428 -a 1 + -t 2.264 -s 3 -d 4 -p cbr -e 500 -c 1 -i 428 -a 1 r -t 2.26565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 409 -a 1 + -t 2.26565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 409 -a 1 - -t 2.26565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 409 -a 1 h -t 2.26565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 409 -a 1 - -t 2.26765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 418 -a 1 h -t 2.26765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 418 -a 1 r -t 2.268 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 427 -a 1 + -t 2.268 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 427 -a 1 + -t 2.27 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 432 -a 1 - -t 2.27 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 432 -a 1 h -t 2.27 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 432 -a 1 r -t 2.27365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 411 -a 1 + -t 2.27365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 411 -a 1 r -t 2.27365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 406 -a 1 - -t 2.27365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 411 -a 1 h -t 2.27365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 411 -a 1 - -t 2.27565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 420 -a 1 h -t 2.27565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 420 -a 1 r -t 2.27765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 413 -a 1 + -t 2.27765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 413 -a 1 - -t 2.27765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 413 -a 1 h -t 2.27765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 413 -a 1 r -t 2.278 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 429 -a 1 + -t 2.278 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 429 -a 1 + -t 2.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 433 -a 1 - -t 2.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 433 -a 1 h -t 2.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 433 -a 1 + -t 2.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 434 -a 1 - -t 2.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 434 -a 1 h -t 2.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 434 -a 1 r -t 2.28165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 408 -a 1 r -t 2.28165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 410 -a 1 - -t 2.28365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 422 -a 1 h -t 2.28365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 422 -a 1 r -t 2.284 -s 1 -d 3 -p cbr -e 500 -c 1 -i 431 -a 1 + -t 2.284 -s 3 -d 4 -p cbr -e 500 -c 1 -i 431 -a 1 r -t 2.28565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 412 -a 1 + -t 2.28565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 412 -a 1 - -t 2.28565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 412 -a 1 h -t 2.28565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 412 -a 1 - -t 2.28765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 421 -a 1 h -t 2.28765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 421 -a 1 r -t 2.288 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 430 -a 1 + -t 2.288 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 430 -a 1 + -t 2.29 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 435 -a 1 - -t 2.29 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 435 -a 1 h -t 2.29 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 435 -a 1 r -t 2.29365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 414 -a 1 + -t 2.29365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 414 -a 1 r -t 2.29365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 409 -a 1 - -t 2.29365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 414 -a 1 h -t 2.29365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 414 -a 1 - -t 2.29565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 423 -a 1 h -t 2.29565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 423 -a 1 r -t 2.29765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 416 -a 1 + -t 2.29765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 416 -a 1 - -t 2.29765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 416 -a 1 h -t 2.29765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 416 -a 1 r -t 2.298 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 432 -a 1 + -t 2.298 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 432 -a 1 + -t 2.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 436 -a 1 - -t 2.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 436 -a 1 h -t 2.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 436 -a 1 r -t 2.30165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 411 -a 1 r -t 2.30165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 413 -a 1 - -t 2.30365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 425 -a 1 h -t 2.30365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 425 -a 1 r -t 2.304 -s 1 -d 3 -p cbr -e 500 -c 1 -i 434 -a 1 + -t 2.304 -s 3 -d 4 -p cbr -e 500 -c 1 -i 434 -a 1 r -t 2.30565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 415 -a 1 + -t 2.30565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 415 -a 1 - -t 2.30565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 415 -a 1 h -t 2.30565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 415 -a 1 - -t 2.30765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 424 -a 1 h -t 2.30765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 424 -a 1 r -t 2.308 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 433 -a 1 + -t 2.308 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 433 -a 1 + -t 2.31 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 437 -a 1 - -t 2.31 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 437 -a 1 h -t 2.31 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 437 -a 1 r -t 2.31365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 417 -a 1 + -t 2.31365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 417 -a 1 r -t 2.31365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 412 -a 1 - -t 2.31365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 417 -a 1 h -t 2.31365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 417 -a 1 - -t 2.31565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 426 -a 1 h -t 2.31565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 426 -a 1 r -t 2.31765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 419 -a 1 + -t 2.31765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 419 -a 1 - -t 2.31765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 419 -a 1 h -t 2.31765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 419 -a 1 r -t 2.318 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 435 -a 1 + -t 2.318 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 435 -a 1 + -t 2.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 438 -a 1 - -t 2.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 438 -a 1 h -t 2.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 438 -a 1 r -t 2.32165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 414 -a 1 r -t 2.32165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 416 -a 1 - -t 2.32365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 428 -a 1 h -t 2.32365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 428 -a 1 r -t 2.32565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 418 -a 1 + -t 2.32565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 418 -a 1 - -t 2.32565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 418 -a 1 h -t 2.32565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 418 -a 1 - -t 2.32765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 427 -a 1 h -t 2.32765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 427 -a 1 r -t 2.328 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 436 -a 1 + -t 2.328 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 436 -a 1 + -t 2.33 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 439 -a 1 - -t 2.33 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 439 -a 1 h -t 2.33 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 439 -a 1 r -t 2.33365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 420 -a 1 + -t 2.33365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 420 -a 1 r -t 2.33365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 415 -a 1 - -t 2.33365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 420 -a 1 h -t 2.33365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 420 -a 1 - -t 2.33565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 429 -a 1 h -t 2.33565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 429 -a 1 r -t 2.33765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 422 -a 1 + -t 2.33765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 422 -a 1 - -t 2.33765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 422 -a 1 h -t 2.33765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 422 -a 1 r -t 2.338 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 437 -a 1 + -t 2.338 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 437 -a 1 + -t 2.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 440 -a 1 - -t 2.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 440 -a 1 h -t 2.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 440 -a 1 r -t 2.34165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 417 -a 1 r -t 2.34165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 419 -a 1 - -t 2.34365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 431 -a 1 h -t 2.34365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 431 -a 1 r -t 2.34565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 421 -a 1 + -t 2.34565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 421 -a 1 - -t 2.34565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 421 -a 1 h -t 2.34565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 421 -a 1 - -t 2.34765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 430 -a 1 h -t 2.34765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 430 -a 1 r -t 2.348 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 438 -a 1 + -t 2.348 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 438 -a 1 + -t 2.35 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 441 -a 1 - -t 2.35 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 441 -a 1 h -t 2.35 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 441 -a 1 r -t 2.35365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 423 -a 1 + -t 2.35365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 423 -a 1 r -t 2.35365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 418 -a 1 - -t 2.35365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 423 -a 1 h -t 2.35365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 423 -a 1 - -t 2.35565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 432 -a 1 h -t 2.35565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 432 -a 1 r -t 2.35765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 425 -a 1 + -t 2.35765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 425 -a 1 - -t 2.35765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 425 -a 1 h -t 2.35765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 425 -a 1 r -t 2.358 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 439 -a 1 + -t 2.358 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 439 -a 1 + -t 2.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 442 -a 1 - -t 2.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 442 -a 1 h -t 2.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 442 -a 1 r -t 2.36165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 420 -a 1 r -t 2.36165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 422 -a 1 - -t 2.36365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 434 -a 1 h -t 2.36365 -s 3 -d 4 -p cbr -e 500 -c 1 -i 434 -a 1 r -t 2.36565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 424 -a 1 + -t 2.36565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 424 -a 1 - -t 2.36565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 424 -a 1 h -t 2.36565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 424 -a 1 - -t 2.36765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 433 -a 1 h -t 2.36765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 433 -a 1 r -t 2.368 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 440 -a 1 + -t 2.368 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 440 -a 1 + -t 2.37 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 443 -a 1 - -t 2.37 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 443 -a 1 h -t 2.37 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 443 -a 1 r -t 2.37365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 426 -a 1 + -t 2.37365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 426 -a 1 r -t 2.37365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 421 -a 1 - -t 2.37365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 426 -a 1 h -t 2.37365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 426 -a 1 - -t 2.37565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 435 -a 1 h -t 2.37565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 435 -a 1 r -t 2.37765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 428 -a 1 + -t 2.37765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 428 -a 1 - -t 2.37765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 428 -a 1 h -t 2.37765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 428 -a 1 r -t 2.378 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 441 -a 1 + -t 2.378 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 441 -a 1 + -t 2.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 444 -a 1 - -t 2.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 444 -a 1 h -t 2.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 444 -a 1 r -t 2.38165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 423 -a 1 r -t 2.38165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 425 -a 1 - -t 2.38365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 436 -a 1 h -t 2.38365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 436 -a 1 r -t 2.38565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 427 -a 1 + -t 2.38565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 427 -a 1 - -t 2.38565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 427 -a 1 h -t 2.38565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 427 -a 1 r -t 2.388 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 442 -a 1 + -t 2.388 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 442 -a 1 + -t 2.39 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 445 -a 1 - -t 2.39 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 445 -a 1 h -t 2.39 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 445 -a 1 - -t 2.39165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 437 -a 1 h -t 2.39165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 437 -a 1 r -t 2.39365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 429 -a 1 + -t 2.39365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 429 -a 1 r -t 2.39365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 424 -a 1 - -t 2.39365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 429 -a 1 h -t 2.39365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 429 -a 1 r -t 2.39765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 431 -a 1 + -t 2.39765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 431 -a 1 - -t 2.39765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 431 -a 1 h -t 2.39765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 431 -a 1 r -t 2.398 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 443 -a 1 + -t 2.398 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 443 -a 1 - -t 2.39965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 438 -a 1 h -t 2.39965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 438 -a 1 + -t 2.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 446 -a 1 - -t 2.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 446 -a 1 h -t 2.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 446 -a 1 r -t 2.40165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 426 -a 1 r -t 2.40165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 428 -a 1 r -t 2.40565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 430 -a 1 + -t 2.40565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 430 -a 1 - -t 2.40565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 430 -a 1 h -t 2.40565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 430 -a 1 - -t 2.40765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 439 -a 1 h -t 2.40765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 439 -a 1 r -t 2.408 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 444 -a 1 + -t 2.408 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 444 -a 1 + -t 2.41 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 447 -a 1 - -t 2.41 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 447 -a 1 h -t 2.41 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 447 -a 1 r -t 2.41365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 432 -a 1 + -t 2.41365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 432 -a 1 r -t 2.41365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 427 -a 1 - -t 2.41365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 432 -a 1 h -t 2.41365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 432 -a 1 - -t 2.41565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 440 -a 1 h -t 2.41565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 440 -a 1 r -t 2.41765 -s 3 -d 4 -p cbr -e 500 -c 1 -i 434 -a 1 + -t 2.41765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 434 -a 1 - -t 2.41765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 434 -a 1 h -t 2.41765 -s 4 -d 6 -p cbr -e 500 -c 1 -i 434 -a 1 r -t 2.418 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 445 -a 1 + -t 2.418 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 445 -a 1 + -t 2.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 448 -a 1 - -t 2.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 448 -a 1 h -t 2.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 448 -a 1 r -t 2.42165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 429 -a 1 r -t 2.42165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 431 -a 1 - -t 2.42365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 441 -a 1 h -t 2.42365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 441 -a 1 r -t 2.42565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 433 -a 1 + -t 2.42565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 433 -a 1 - -t 2.42565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 433 -a 1 h -t 2.42565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 433 -a 1 r -t 2.428 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 446 -a 1 + -t 2.428 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 446 -a 1 + -t 2.43 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 449 -a 1 - -t 2.43 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 449 -a 1 h -t 2.43 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 449 -a 1 - -t 2.43165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 442 -a 1 h -t 2.43165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 442 -a 1 r -t 2.43365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 435 -a 1 + -t 2.43365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 435 -a 1 r -t 2.43365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 430 -a 1 - -t 2.43365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 435 -a 1 h -t 2.43365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 435 -a 1 r -t 2.438 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 447 -a 1 + -t 2.438 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 447 -a 1 - -t 2.43965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 443 -a 1 h -t 2.43965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 443 -a 1 + -t 2.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 450 -a 1 - -t 2.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 450 -a 1 h -t 2.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 450 -a 1 r -t 2.44165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 436 -a 1 + -t 2.44165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 436 -a 1 r -t 2.44165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 432 -a 1 r -t 2.44165 -s 4 -d 6 -p cbr -e 500 -c 1 -i 434 -a 1 - -t 2.44165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 436 -a 1 h -t 2.44165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 436 -a 1 - -t 2.44765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 444 -a 1 h -t 2.44765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 444 -a 1 r -t 2.448 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 448 -a 1 + -t 2.448 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 448 -a 1 r -t 2.44965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 437 -a 1 + -t 2.44965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 437 -a 1 - -t 2.44965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 437 -a 1 h -t 2.44965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 437 -a 1 + -t 2.45 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 451 -a 1 - -t 2.45 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 451 -a 1 h -t 2.45 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 451 -a 1 r -t 2.45365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 433 -a 1 - -t 2.45565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 445 -a 1 h -t 2.45565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 445 -a 1 r -t 2.45765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 438 -a 1 + -t 2.45765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 438 -a 1 - -t 2.45765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 438 -a 1 h -t 2.45765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 438 -a 1 r -t 2.458 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 449 -a 1 + -t 2.458 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 449 -a 1 + -t 2.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 452 -a 1 - -t 2.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 452 -a 1 h -t 2.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 452 -a 1 r -t 2.46165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 435 -a 1 - -t 2.46365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 446 -a 1 h -t 2.46365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 446 -a 1 r -t 2.46565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 439 -a 1 + -t 2.46565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 439 -a 1 - -t 2.46565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 439 -a 1 h -t 2.46565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 439 -a 1 r -t 2.468 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 450 -a 1 + -t 2.468 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 450 -a 1 r -t 2.46965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 436 -a 1 + -t 2.47 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 453 -a 1 - -t 2.47 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 453 -a 1 h -t 2.47 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 453 -a 1 - -t 2.47165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 447 -a 1 h -t 2.47165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 447 -a 1 r -t 2.47365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 440 -a 1 + -t 2.47365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 440 -a 1 - -t 2.47365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 440 -a 1 h -t 2.47365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 440 -a 1 r -t 2.47765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 437 -a 1 r -t 2.478 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 451 -a 1 + -t 2.478 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 451 -a 1 - -t 2.47965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 448 -a 1 h -t 2.47965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 448 -a 1 + -t 2.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 454 -a 1 - -t 2.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 454 -a 1 h -t 2.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 454 -a 1 r -t 2.48165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 441 -a 1 + -t 2.48165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 441 -a 1 - -t 2.48165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 441 -a 1 h -t 2.48165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 441 -a 1 r -t 2.48565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 438 -a 1 - -t 2.48765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 449 -a 1 h -t 2.48765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 449 -a 1 r -t 2.488 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 452 -a 1 + -t 2.488 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 452 -a 1 r -t 2.48965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 442 -a 1 + -t 2.48965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 442 -a 1 - -t 2.48965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 442 -a 1 h -t 2.48965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 442 -a 1 + -t 2.49 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 455 -a 1 - -t 2.49 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 455 -a 1 h -t 2.49 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 455 -a 1 r -t 2.49365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 439 -a 1 - -t 2.49565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 450 -a 1 h -t 2.49565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 450 -a 1 r -t 2.49765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 443 -a 1 + -t 2.49765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 443 -a 1 - -t 2.49765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 443 -a 1 h -t 2.49765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 443 -a 1 r -t 2.498 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 453 -a 1 + -t 2.498 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 453 -a 1 + -t 2.5 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 456 -a 1 - -t 2.5 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 456 -a 1 h -t 2.5 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 456 -a 1 r -t 2.50165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 440 -a 1 - -t 2.50365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 451 -a 1 h -t 2.50365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 451 -a 1 r -t 2.50565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 444 -a 1 + -t 2.50565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 444 -a 1 - -t 2.50565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 444 -a 1 h -t 2.50565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 444 -a 1 r -t 2.508 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 454 -a 1 + -t 2.508 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 454 -a 1 r -t 2.50965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 441 -a 1 - -t 2.51165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 452 -a 1 h -t 2.51165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 452 -a 1 r -t 2.51365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 445 -a 1 + -t 2.51365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 445 -a 1 - -t 2.51365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 445 -a 1 h -t 2.51365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 445 -a 1 r -t 2.51765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 442 -a 1 r -t 2.518 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 455 -a 1 + -t 2.518 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 455 -a 1 - -t 2.51965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 453 -a 1 h -t 2.51965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 453 -a 1 r -t 2.52165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 446 -a 1 + -t 2.52165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 446 -a 1 - -t 2.52165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 446 -a 1 h -t 2.52165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 446 -a 1 r -t 2.52565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 443 -a 1 - -t 2.52765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 454 -a 1 h -t 2.52765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 454 -a 1 r -t 2.528 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 456 -a 1 + -t 2.528 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 456 -a 1 r -t 2.52965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 447 -a 1 + -t 2.52965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 447 -a 1 - -t 2.52965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 447 -a 1 h -t 2.52965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 447 -a 1 r -t 2.53365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 444 -a 1 - -t 2.53565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 455 -a 1 h -t 2.53565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 455 -a 1 r -t 2.53765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 448 -a 1 + -t 2.53765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 448 -a 1 - -t 2.53765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 448 -a 1 h -t 2.53765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 448 -a 1 r -t 2.54165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 445 -a 1 - -t 2.54365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 456 -a 1 h -t 2.54365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 456 -a 1 r -t 2.54565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 449 -a 1 + -t 2.54565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 449 -a 1 - -t 2.54565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 449 -a 1 h -t 2.54565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 449 -a 1 r -t 2.54965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 446 -a 1 v -t 2.5499999999999998 sim_annotation 2.5499999999999998 24 FTP stops r -t 2.55365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 450 -a 1 + -t 2.55365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 450 -a 1 - -t 2.55365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 450 -a 1 h -t 2.55365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 450 -a 1 r -t 2.55765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 447 -a 1 r -t 2.56165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 451 -a 1 + -t 2.56165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 451 -a 1 - -t 2.56165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 451 -a 1 h -t 2.56165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 451 -a 1 r -t 2.56565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 448 -a 1 r -t 2.56965 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 452 -a 1 + -t 2.56965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 452 -a 1 - -t 2.56965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 452 -a 1 h -t 2.56965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 452 -a 1 r -t 2.57365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 449 -a 1 r -t 2.57765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 453 -a 1 + -t 2.57765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 453 -a 1 - -t 2.57765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 453 -a 1 h -t 2.57765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 453 -a 1 r -t 2.58165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 450 -a 1 r -t 2.58565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 454 -a 1 + -t 2.58565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 454 -a 1 - -t 2.58565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 454 -a 1 h -t 2.58565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 454 -a 1 r -t 2.58965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 451 -a 1 r -t 2.59365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 455 -a 1 + -t 2.59365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 455 -a 1 - -t 2.59365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 455 -a 1 h -t 2.59365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 455 -a 1 r -t 2.59765 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 452 -a 1 r -t 2.60165 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 456 -a 1 + -t 2.60165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 456 -a 1 - -t 2.60165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 456 -a 1 h -t 2.60165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 456 -a 1 r -t 2.60565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 453 -a 1 r -t 2.61365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 454 -a 1 r -t 2.62165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 455 -a 1 r -t 2.62965 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 456 -a 1 nam-1.15/edu/C2-sliding-window.tcl0000664000076400007660000001065107024407025015560 0ustar tomhnsnam# Sliding window protocol in a heavily loaded network. # features : labeling, annotation, nam-graph, and window size monitoring # all packets look black cause of supporting nam-graph # you could run 'C2-sliding-color.nam' to see the colors of each traffic # # n0 n5 # \ / # n1 -- n3 ---------- n4 -- n6 # / \ # n2 n7 set ns [new Simulator] $ns color 0 black $ns color 1 red #$ns trace-all [open C2-sliding-window.tr w] #$ns namtrace-all [open C2-sliding-window.nam w] foreach i " 0 1 2 3 4 5 6 7" { set n$i [$ns node] } $ns at 0.0 "$n0 label TCP" $ns at 0.0 "$n5 label TCP" $ns at 0.0 "$n1 label CBR-1" $ns at 0.0 "$n2 label CBR-2" $ns at 0.0 "$n6 label CBR-1" $ns at 0.0 "$n7 label CBR-2" $ns duplex-link $n0 $n3 5Mb 20ms DropTail $ns duplex-link $n1 $n3 1Mb 20ms DropTail $ns duplex-link $n2 $n3 1Mb 20ms DropTail $ns duplex-link $n3 $n4 1Mb 50ms DropTail $ns duplex-link $n4 $n5 5Mb 20ms DropTail $ns duplex-link $n4 $n6 1Mb 20ms DropTail $ns duplex-link $n4 $n7 1Mb 20ms DropTail $ns queue-limit $n3 $n4 10 $ns duplex-link-op $n0 $n3 orient right-down $ns duplex-link-op $n1 $n3 orient right $ns duplex-link-op $n2 $n3 orient right-up $ns duplex-link-op $n3 $n4 orient right $ns duplex-link-op $n4 $n5 orient right-up $ns duplex-link-op $n4 $n6 orient right $ns duplex-link-op $n4 $n7 orient right-down $ns duplex-link-op $n3 $n4 queuePos 0.5 Agent/TCP set nam_tracevar_ true Agent/TCP set maxcwnd_ 8 ### TCP between n0 and n5 (Black) #set sliding [new Agent/TCP/SlidingWindow] set sliding [new Agent/TCP] $sliding set fid_ 0 $ns attach-agent $n0 $sliding #set sink [new Agent/TCPSink/SlidingWindowSink] set sink [new Agent/TCPSink] $ns attach-agent $n5 $sink $ns connect $sliding $sink set ftp [new Application/FTP] $ftp attach-agent $sliding $ns add-agent-trace $sliding tcp $ns monitor-agent-trace $sliding $sliding tracevar cwnd_ ### CBR traffic between (n1 & n6) and (n2 & n7) set cbr0 [new Agent/CBR] $ns attach-agent $n1 $cbr0 $cbr0 set fid_ 1 $cbr0 set packetSize_ 500 $cbr0 set interval_ 0.01 set null0 [new Agent/CBR] $ns attach-agent $n6 $null0 $ns connect $cbr0 $null0 set cbr1 [new Agent/CBR] $ns attach-agent $n2 $cbr1 $cbr1 set fid_ 1 $cbr1 set packetSize_ 1000 $cbr1 set interval_ 0.01 set null1 [new Agent/CBR] $ns attach-agent $n7 $null1 $ns connect $cbr1 $null1 proc finish {} { global ns $ns flush-trace # puts "filtering..." # exec tclsh ../bin/namfilter.tcl C2-sliding-window.nam puts "running nam..." exec nam C2-sliding-window.nam & exit 0 } ### set operations $ns at 0.05 "$cbr0 start" $ns at 2.3 "$cbr0 stop" $ns at 0.1 "$cbr1 start" $ns at 2.5 "$cbr1 stop" $ns at 0.5 "$ftp start" $ns at 2.5 "$ftp stop" $ns at 2.7 "finish" $ns at 0.50 "$cbr1 set interval_ 0.02" $ns at 1.50 "$cbr0 set interval_ 0.02" $ns at 1.70 "$cbr1 set interval_ 0.01" $ns at 1.70 "$cbr1 set interval_ 0.01" ### add annotations $ns at 0.0 "$ns trace-annotate \"Sliding Window (window size=8) in a heavely loaded network\"" $ns at 0.05 "$ns trace-annotate \"CBR-1 starts\"" $ns at 0.1 "$ns trace-annotate \"CBR-2 starts\"" $ns at 0.48 "$ns trace-annotate \"Sliding-Window Traffic starts\"" $ns at 0.51 "$ns trace-annotate \"Send Packet_0 to 7 \"" $ns at 0.54 "$ns trace-annotate \"Lost Packet (5 of them) \"" $ns at 0.66 "$ns trace-annotate \"3 Ack_0s\"" $ns at 0.75 "$ns trace-annotate \"Send Packet_8\"" $ns at 0.85 "$ns trace-annotate \"Ack_0\"" $ns at 0.95 "$ns trace-annotate \"Send Packet_1 to 8\"" $ns at 1.04 "$ns trace-annotate \"Ack_1 to 8\"" $ns at 1.14 "$ns trace-annotate \"Send Packet_9 to 16\"" $ns at 1.22 "$ns trace-annotate \"Lost Packet (2 of them) \"" $ns at 1.27 "$ns trace-annotate \"Ack_7 to 14 \"" $ns at 1.35 "$ns trace-annotate \"Send Packet_17 to 22\"" $ns at 1.49 "$ns trace-annotate \"6 Ack_14s \"" $ns at 1.58 "$ns trace-annotate \"Send Packet_15 to 22\"" $ns at 1.70 "$ns trace-annotate \"Ack_15 to 22 \"" $ns at 1.78 "$ns trace-annotate \"Send Packet_23 to 30\"" $ns at 1.85 "$ns trace-annotate \"Lost Packet (2 of them) \"" $ns at 1.90 "$ns trace-annotate \"Ack_23 to 27 \"" $ns at 2.00 "$ns trace-annotate \"Send Packet_31 to 35\"" $ns at 2.08 "$ns trace-annotate \"Lost Packet (all of them) \"" $ns at 2.55 "$ns trace-annotate \"FTP stops\"" $ns run nam-1.15/edu/C2-sliding-window.tr0000664000076400007660000055313106756704457015454 0ustar tomhnsnamv 0 eval {set sim_annotation {Sliding Window (window size=8) in a heavely loaded network}} + 0.05 1 3 cbr 500 ------- 1 1.0 6.0 0 0 - 0.05 1 3 cbr 500 ------- 1 1.0 6.0 0 0 v 0.050000000000000003 eval {set sim_annotation {CBR-1 starts}} + 0.06 1 3 cbr 500 ------- 1 1.0 6.0 1 1 - 0.06 1 3 cbr 500 ------- 1 1.0 6.0 1 1 + 0.07 1 3 cbr 500 ------- 1 1.0 6.0 2 2 - 0.07 1 3 cbr 500 ------- 1 1.0 6.0 2 2 r 0.074 1 3 cbr 500 ------- 1 1.0 6.0 0 0 + 0.074 3 4 cbr 500 ------- 1 1.0 6.0 0 0 - 0.074 3 4 cbr 500 ------- 1 1.0 6.0 0 0 + 0.08 1 3 cbr 500 ------- 1 1.0 6.0 3 3 - 0.08 1 3 cbr 500 ------- 1 1.0 6.0 3 3 r 0.084 1 3 cbr 500 ------- 1 1.0 6.0 1 1 + 0.084 3 4 cbr 500 ------- 1 1.0 6.0 1 1 - 0.084 3 4 cbr 500 ------- 1 1.0 6.0 1 1 + 0.09 1 3 cbr 500 ------- 1 1.0 6.0 4 4 - 0.09 1 3 cbr 500 ------- 1 1.0 6.0 4 4 r 0.094 1 3 cbr 500 ------- 1 1.0 6.0 2 2 + 0.094 3 4 cbr 500 ------- 1 1.0 6.0 2 2 - 0.094 3 4 cbr 500 ------- 1 1.0 6.0 2 2 + 0.1 1 3 cbr 500 ------- 1 1.0 6.0 5 5 - 0.1 1 3 cbr 500 ------- 1 1.0 6.0 5 5 + 0.1 2 3 cbr 1000 ------- 1 2.0 7.0 0 6 - 0.1 2 3 cbr 1000 ------- 1 2.0 7.0 0 6 v 0.10000000000000001 eval {set sim_annotation {CBR-2 starts}} r 0.104 1 3 cbr 500 ------- 1 1.0 6.0 3 3 + 0.104 3 4 cbr 500 ------- 1 1.0 6.0 3 3 - 0.104 3 4 cbr 500 ------- 1 1.0 6.0 3 3 + 0.11 1 3 cbr 500 ------- 1 1.0 6.0 6 7 - 0.11 1 3 cbr 500 ------- 1 1.0 6.0 6 7 + 0.11 2 3 cbr 1000 ------- 1 2.0 7.0 1 8 - 0.11 2 3 cbr 1000 ------- 1 2.0 7.0 1 8 r 0.114 1 3 cbr 500 ------- 1 1.0 6.0 4 4 + 0.114 3 4 cbr 500 ------- 1 1.0 6.0 4 4 - 0.114 3 4 cbr 500 ------- 1 1.0 6.0 4 4 + 0.12 1 3 cbr 500 ------- 1 1.0 6.0 7 9 - 0.12 1 3 cbr 500 ------- 1 1.0 6.0 7 9 + 0.12 2 3 cbr 1000 ------- 1 2.0 7.0 2 10 - 0.12 2 3 cbr 1000 ------- 1 2.0 7.0 2 10 r 0.124 1 3 cbr 500 ------- 1 1.0 6.0 5 5 + 0.124 3 4 cbr 500 ------- 1 1.0 6.0 5 5 - 0.124 3 4 cbr 500 ------- 1 1.0 6.0 5 5 r 0.128 3 4 cbr 500 ------- 1 1.0 6.0 0 0 + 0.128 4 6 cbr 500 ------- 1 1.0 6.0 0 0 - 0.128 4 6 cbr 500 ------- 1 1.0 6.0 0 0 r 0.128 2 3 cbr 1000 ------- 1 2.0 7.0 0 6 + 0.128 3 4 cbr 1000 ------- 1 2.0 7.0 0 6 - 0.128 3 4 cbr 1000 ------- 1 2.0 7.0 0 6 + 0.13 1 3 cbr 500 ------- 1 1.0 6.0 8 11 - 0.13 1 3 cbr 500 ------- 1 1.0 6.0 8 11 + 0.13 2 3 cbr 1000 ------- 1 2.0 7.0 3 12 - 0.13 2 3 cbr 1000 ------- 1 2.0 7.0 3 12 r 0.134 1 3 cbr 500 ------- 1 1.0 6.0 6 7 + 0.134 3 4 cbr 500 ------- 1 1.0 6.0 6 7 - 0.136 3 4 cbr 500 ------- 1 1.0 6.0 6 7 r 0.138 3 4 cbr 500 ------- 1 1.0 6.0 1 1 + 0.138 4 6 cbr 500 ------- 1 1.0 6.0 1 1 - 0.138 4 6 cbr 500 ------- 1 1.0 6.0 1 1 r 0.138 2 3 cbr 1000 ------- 1 2.0 7.0 1 8 + 0.138 3 4 cbr 1000 ------- 1 2.0 7.0 1 8 + 0.14 1 3 cbr 500 ------- 1 1.0 6.0 9 13 - 0.14 1 3 cbr 500 ------- 1 1.0 6.0 9 13 + 0.14 2 3 cbr 1000 ------- 1 2.0 7.0 4 14 - 0.14 2 3 cbr 1000 ------- 1 2.0 7.0 4 14 - 0.14 3 4 cbr 1000 ------- 1 2.0 7.0 1 8 r 0.144 1 3 cbr 500 ------- 1 1.0 6.0 7 9 + 0.144 3 4 cbr 500 ------- 1 1.0 6.0 7 9 r 0.148 2 3 cbr 1000 ------- 1 2.0 7.0 2 10 + 0.148 3 4 cbr 1000 ------- 1 2.0 7.0 2 10 r 0.148 3 4 cbr 500 ------- 1 1.0 6.0 2 2 + 0.148 4 6 cbr 500 ------- 1 1.0 6.0 2 2 - 0.148 4 6 cbr 500 ------- 1 1.0 6.0 2 2 - 0.148 3 4 cbr 500 ------- 1 1.0 6.0 7 9 + 0.15 1 3 cbr 500 ------- 1 1.0 6.0 10 15 - 0.15 1 3 cbr 500 ------- 1 1.0 6.0 10 15 + 0.15 2 3 cbr 1000 ------- 1 2.0 7.0 5 16 - 0.15 2 3 cbr 1000 ------- 1 2.0 7.0 5 16 r 0.152 4 6 cbr 500 ------- 1 1.0 6.0 0 0 - 0.152 3 4 cbr 1000 ------- 1 2.0 7.0 2 10 r 0.154 1 3 cbr 500 ------- 1 1.0 6.0 8 11 + 0.154 3 4 cbr 500 ------- 1 1.0 6.0 8 11 r 0.158 2 3 cbr 1000 ------- 1 2.0 7.0 3 12 + 0.158 3 4 cbr 1000 ------- 1 2.0 7.0 3 12 r 0.158 3 4 cbr 500 ------- 1 1.0 6.0 3 3 + 0.158 4 6 cbr 500 ------- 1 1.0 6.0 3 3 - 0.158 4 6 cbr 500 ------- 1 1.0 6.0 3 3 + 0.16 1 3 cbr 500 ------- 1 1.0 6.0 11 17 - 0.16 1 3 cbr 500 ------- 1 1.0 6.0 11 17 + 0.16 2 3 cbr 1000 ------- 1 2.0 7.0 6 18 - 0.16 2 3 cbr 1000 ------- 1 2.0 7.0 6 18 - 0.16 3 4 cbr 500 ------- 1 1.0 6.0 8 11 r 0.162 4 6 cbr 500 ------- 1 1.0 6.0 1 1 r 0.164 1 3 cbr 500 ------- 1 1.0 6.0 9 13 + 0.164 3 4 cbr 500 ------- 1 1.0 6.0 9 13 - 0.164 3 4 cbr 1000 ------- 1 2.0 7.0 3 12 r 0.168 3 4 cbr 500 ------- 1 1.0 6.0 4 4 + 0.168 4 6 cbr 500 ------- 1 1.0 6.0 4 4 - 0.168 4 6 cbr 500 ------- 1 1.0 6.0 4 4 r 0.168 2 3 cbr 1000 ------- 1 2.0 7.0 4 14 + 0.168 3 4 cbr 1000 ------- 1 2.0 7.0 4 14 + 0.17 1 3 cbr 500 ------- 1 1.0 6.0 12 19 - 0.17 1 3 cbr 500 ------- 1 1.0 6.0 12 19 + 0.17 2 3 cbr 1000 ------- 1 2.0 7.0 7 20 - 0.17 2 3 cbr 1000 ------- 1 2.0 7.0 7 20 r 0.172 4 6 cbr 500 ------- 1 1.0 6.0 2 2 - 0.172 3 4 cbr 500 ------- 1 1.0 6.0 9 13 r 0.174 1 3 cbr 500 ------- 1 1.0 6.0 10 15 + 0.174 3 4 cbr 500 ------- 1 1.0 6.0 10 15 - 0.176 3 4 cbr 1000 ------- 1 2.0 7.0 4 14 r 0.178 3 4 cbr 500 ------- 1 1.0 6.0 5 5 + 0.178 4 6 cbr 500 ------- 1 1.0 6.0 5 5 - 0.178 4 6 cbr 500 ------- 1 1.0 6.0 5 5 r 0.178 2 3 cbr 1000 ------- 1 2.0 7.0 5 16 + 0.178 3 4 cbr 1000 ------- 1 2.0 7.0 5 16 + 0.18 1 3 cbr 500 ------- 1 1.0 6.0 13 21 - 0.18 1 3 cbr 500 ------- 1 1.0 6.0 13 21 + 0.18 2 3 cbr 1000 ------- 1 2.0 7.0 8 22 - 0.18 2 3 cbr 1000 ------- 1 2.0 7.0 8 22 r 0.182 4 6 cbr 500 ------- 1 1.0 6.0 3 3 r 0.184 1 3 cbr 500 ------- 1 1.0 6.0 11 17 + 0.184 3 4 cbr 500 ------- 1 1.0 6.0 11 17 - 0.184 3 4 cbr 500 ------- 1 1.0 6.0 10 15 r 0.186 3 4 cbr 1000 ------- 1 2.0 7.0 0 6 + 0.186 4 7 cbr 1000 ------- 1 2.0 7.0 0 6 - 0.186 4 7 cbr 1000 ------- 1 2.0 7.0 0 6 r 0.188 2 3 cbr 1000 ------- 1 2.0 7.0 6 18 + 0.188 3 4 cbr 1000 ------- 1 2.0 7.0 6 18 - 0.188 3 4 cbr 1000 ------- 1 2.0 7.0 5 16 r 0.19 3 4 cbr 500 ------- 1 1.0 6.0 6 7 + 0.19 4 6 cbr 500 ------- 1 1.0 6.0 6 7 - 0.19 4 6 cbr 500 ------- 1 1.0 6.0 6 7 + 0.19 1 3 cbr 500 ------- 1 1.0 6.0 14 23 - 0.19 1 3 cbr 500 ------- 1 1.0 6.0 14 23 + 0.19 2 3 cbr 1000 ------- 1 2.0 7.0 9 24 - 0.19 2 3 cbr 1000 ------- 1 2.0 7.0 9 24 r 0.192 4 6 cbr 500 ------- 1 1.0 6.0 4 4 r 0.194 1 3 cbr 500 ------- 1 1.0 6.0 12 19 + 0.194 3 4 cbr 500 ------- 1 1.0 6.0 12 19 - 0.196 3 4 cbr 500 ------- 1 1.0 6.0 11 17 r 0.198 3 4 cbr 1000 ------- 1 2.0 7.0 1 8 + 0.198 4 7 cbr 1000 ------- 1 2.0 7.0 1 8 - 0.198 4 7 cbr 1000 ------- 1 2.0 7.0 1 8 r 0.198 2 3 cbr 1000 ------- 1 2.0 7.0 7 20 + 0.198 3 4 cbr 1000 ------- 1 2.0 7.0 7 20 + 0.2 1 3 cbr 500 ------- 1 1.0 6.0 15 25 - 0.2 1 3 cbr 500 ------- 1 1.0 6.0 15 25 + 0.2 2 3 cbr 1000 ------- 1 2.0 7.0 10 26 - 0.2 2 3 cbr 1000 ------- 1 2.0 7.0 10 26 - 0.2 3 4 cbr 1000 ------- 1 2.0 7.0 6 18 r 0.202 4 6 cbr 500 ------- 1 1.0 6.0 5 5 r 0.202 3 4 cbr 500 ------- 1 1.0 6.0 7 9 + 0.202 4 6 cbr 500 ------- 1 1.0 6.0 7 9 - 0.202 4 6 cbr 500 ------- 1 1.0 6.0 7 9 r 0.204 1 3 cbr 500 ------- 1 1.0 6.0 13 21 + 0.204 3 4 cbr 500 ------- 1 1.0 6.0 13 21 r 0.208 2 3 cbr 1000 ------- 1 2.0 7.0 8 22 + 0.208 3 4 cbr 1000 ------- 1 2.0 7.0 8 22 - 0.208 3 4 cbr 500 ------- 1 1.0 6.0 12 19 r 0.21 3 4 cbr 1000 ------- 1 2.0 7.0 2 10 + 0.21 4 7 cbr 1000 ------- 1 2.0 7.0 2 10 - 0.21 4 7 cbr 1000 ------- 1 2.0 7.0 2 10 + 0.21 1 3 cbr 500 ------- 1 1.0 6.0 16 27 - 0.21 1 3 cbr 500 ------- 1 1.0 6.0 16 27 + 0.21 2 3 cbr 1000 ------- 1 2.0 7.0 11 28 - 0.21 2 3 cbr 1000 ------- 1 2.0 7.0 11 28 - 0.212 3 4 cbr 1000 ------- 1 2.0 7.0 7 20 r 0.214 4 7 cbr 1000 ------- 1 2.0 7.0 0 6 r 0.214 4 6 cbr 500 ------- 1 1.0 6.0 6 7 r 0.214 3 4 cbr 500 ------- 1 1.0 6.0 8 11 + 0.214 4 6 cbr 500 ------- 1 1.0 6.0 8 11 - 0.214 4 6 cbr 500 ------- 1 1.0 6.0 8 11 r 0.214 1 3 cbr 500 ------- 1 1.0 6.0 14 23 + 0.214 3 4 cbr 500 ------- 1 1.0 6.0 14 23 r 0.218 2 3 cbr 1000 ------- 1 2.0 7.0 9 24 + 0.218 3 4 cbr 1000 ------- 1 2.0 7.0 9 24 + 0.22 1 3 cbr 500 ------- 1 1.0 6.0 17 29 - 0.22 1 3 cbr 500 ------- 1 1.0 6.0 17 29 + 0.22 2 3 cbr 1000 ------- 1 2.0 7.0 12 30 - 0.22 2 3 cbr 1000 ------- 1 2.0 7.0 12 30 - 0.22 3 4 cbr 500 ------- 1 1.0 6.0 13 21 r 0.222 3 4 cbr 1000 ------- 1 2.0 7.0 3 12 + 0.222 4 7 cbr 1000 ------- 1 2.0 7.0 3 12 - 0.222 4 7 cbr 1000 ------- 1 2.0 7.0 3 12 r 0.224 1 3 cbr 500 ------- 1 1.0 6.0 15 25 + 0.224 3 4 cbr 500 ------- 1 1.0 6.0 15 25 - 0.224 3 4 cbr 1000 ------- 1 2.0 7.0 8 22 r 0.226 4 7 cbr 1000 ------- 1 2.0 7.0 1 8 r 0.226 4 6 cbr 500 ------- 1 1.0 6.0 7 9 r 0.226 3 4 cbr 500 ------- 1 1.0 6.0 9 13 + 0.226 4 6 cbr 500 ------- 1 1.0 6.0 9 13 - 0.226 4 6 cbr 500 ------- 1 1.0 6.0 9 13 r 0.228 2 3 cbr 1000 ------- 1 2.0 7.0 10 26 + 0.228 3 4 cbr 1000 ------- 1 2.0 7.0 10 26 + 0.23 1 3 cbr 500 ------- 1 1.0 6.0 18 31 - 0.23 1 3 cbr 500 ------- 1 1.0 6.0 18 31 + 0.23 2 3 cbr 1000 ------- 1 2.0 7.0 13 32 - 0.23 2 3 cbr 1000 ------- 1 2.0 7.0 13 32 - 0.232 3 4 cbr 500 ------- 1 1.0 6.0 14 23 r 0.234 3 4 cbr 1000 ------- 1 2.0 7.0 4 14 + 0.234 4 7 cbr 1000 ------- 1 2.0 7.0 4 14 - 0.234 4 7 cbr 1000 ------- 1 2.0 7.0 4 14 r 0.234 1 3 cbr 500 ------- 1 1.0 6.0 16 27 + 0.234 3 4 cbr 500 ------- 1 1.0 6.0 16 27 - 0.236 3 4 cbr 1000 ------- 1 2.0 7.0 9 24 r 0.238 4 7 cbr 1000 ------- 1 2.0 7.0 2 10 r 0.238 4 6 cbr 500 ------- 1 1.0 6.0 8 11 r 0.238 3 4 cbr 500 ------- 1 1.0 6.0 10 15 + 0.238 4 6 cbr 500 ------- 1 1.0 6.0 10 15 - 0.238 4 6 cbr 500 ------- 1 1.0 6.0 10 15 r 0.238 2 3 cbr 1000 ------- 1 2.0 7.0 11 28 + 0.238 3 4 cbr 1000 ------- 1 2.0 7.0 11 28 + 0.24 1 3 cbr 500 ------- 1 1.0 6.0 19 33 - 0.24 1 3 cbr 500 ------- 1 1.0 6.0 19 33 + 0.24 2 3 cbr 1000 ------- 1 2.0 7.0 14 34 - 0.24 2 3 cbr 1000 ------- 1 2.0 7.0 14 34 r 0.244 1 3 cbr 500 ------- 1 1.0 6.0 17 29 + 0.244 3 4 cbr 500 ------- 1 1.0 6.0 17 29 - 0.244 3 4 cbr 500 ------- 1 1.0 6.0 15 25 r 0.246 3 4 cbr 1000 ------- 1 2.0 7.0 5 16 + 0.246 4 7 cbr 1000 ------- 1 2.0 7.0 5 16 - 0.246 4 7 cbr 1000 ------- 1 2.0 7.0 5 16 r 0.248 2 3 cbr 1000 ------- 1 2.0 7.0 12 30 + 0.248 3 4 cbr 1000 ------- 1 2.0 7.0 12 30 - 0.248 3 4 cbr 1000 ------- 1 2.0 7.0 10 26 r 0.25 3 4 cbr 500 ------- 1 1.0 6.0 11 17 + 0.25 4 6 cbr 500 ------- 1 1.0 6.0 11 17 - 0.25 4 6 cbr 500 ------- 1 1.0 6.0 11 17 r 0.25 4 7 cbr 1000 ------- 1 2.0 7.0 3 12 r 0.25 4 6 cbr 500 ------- 1 1.0 6.0 9 13 + 0.25 1 3 cbr 500 ------- 1 1.0 6.0 20 35 - 0.25 1 3 cbr 500 ------- 1 1.0 6.0 20 35 + 0.25 2 3 cbr 1000 ------- 1 2.0 7.0 15 36 - 0.25 2 3 cbr 1000 ------- 1 2.0 7.0 15 36 r 0.254 1 3 cbr 500 ------- 1 1.0 6.0 18 31 + 0.254 3 4 cbr 500 ------- 1 1.0 6.0 18 31 - 0.256 3 4 cbr 500 ------- 1 1.0 6.0 16 27 r 0.258 3 4 cbr 1000 ------- 1 2.0 7.0 6 18 + 0.258 4 7 cbr 1000 ------- 1 2.0 7.0 6 18 - 0.258 4 7 cbr 1000 ------- 1 2.0 7.0 6 18 r 0.258 2 3 cbr 1000 ------- 1 2.0 7.0 13 32 + 0.258 3 4 cbr 1000 ------- 1 2.0 7.0 13 32 + 0.26 1 3 cbr 500 ------- 1 1.0 6.0 21 37 - 0.26 1 3 cbr 500 ------- 1 1.0 6.0 21 37 + 0.26 2 3 cbr 1000 ------- 1 2.0 7.0 16 38 - 0.26 2 3 cbr 1000 ------- 1 2.0 7.0 16 38 - 0.26 3 4 cbr 1000 ------- 1 2.0 7.0 11 28 r 0.262 3 4 cbr 500 ------- 1 1.0 6.0 12 19 + 0.262 4 6 cbr 500 ------- 1 1.0 6.0 12 19 - 0.262 4 6 cbr 500 ------- 1 1.0 6.0 12 19 r 0.262 4 7 cbr 1000 ------- 1 2.0 7.0 4 14 r 0.262 4 6 cbr 500 ------- 1 1.0 6.0 10 15 r 0.264 1 3 cbr 500 ------- 1 1.0 6.0 19 33 + 0.264 3 4 cbr 500 ------- 1 1.0 6.0 19 33 r 0.268 2 3 cbr 1000 ------- 1 2.0 7.0 14 34 + 0.268 3 4 cbr 1000 ------- 1 2.0 7.0 14 34 - 0.268 3 4 cbr 500 ------- 1 1.0 6.0 17 29 r 0.27 3 4 cbr 1000 ------- 1 2.0 7.0 7 20 + 0.27 4 7 cbr 1000 ------- 1 2.0 7.0 7 20 - 0.27 4 7 cbr 1000 ------- 1 2.0 7.0 7 20 + 0.27 1 3 cbr 500 ------- 1 1.0 6.0 22 39 - 0.27 1 3 cbr 500 ------- 1 1.0 6.0 22 39 + 0.27 2 3 cbr 1000 ------- 1 2.0 7.0 17 40 - 0.27 2 3 cbr 1000 ------- 1 2.0 7.0 17 40 - 0.272 3 4 cbr 1000 ------- 1 2.0 7.0 12 30 r 0.274 3 4 cbr 500 ------- 1 1.0 6.0 13 21 + 0.274 4 6 cbr 500 ------- 1 1.0 6.0 13 21 - 0.274 4 6 cbr 500 ------- 1 1.0 6.0 13 21 r 0.274 4 7 cbr 1000 ------- 1 2.0 7.0 5 16 r 0.274 4 6 cbr 500 ------- 1 1.0 6.0 11 17 r 0.274 1 3 cbr 500 ------- 1 1.0 6.0 20 35 + 0.274 3 4 cbr 500 ------- 1 1.0 6.0 20 35 r 0.278 2 3 cbr 1000 ------- 1 2.0 7.0 15 36 + 0.278 3 4 cbr 1000 ------- 1 2.0 7.0 15 36 + 0.28 1 3 cbr 500 ------- 1 1.0 6.0 23 41 - 0.28 1 3 cbr 500 ------- 1 1.0 6.0 23 41 + 0.28 2 3 cbr 1000 ------- 1 2.0 7.0 18 42 - 0.28 2 3 cbr 1000 ------- 1 2.0 7.0 18 42 - 0.28 3 4 cbr 500 ------- 1 1.0 6.0 18 31 r 0.282 3 4 cbr 1000 ------- 1 2.0 7.0 8 22 + 0.282 4 7 cbr 1000 ------- 1 2.0 7.0 8 22 - 0.282 4 7 cbr 1000 ------- 1 2.0 7.0 8 22 r 0.284 1 3 cbr 500 ------- 1 1.0 6.0 21 37 + 0.284 3 4 cbr 500 ------- 1 1.0 6.0 21 37 - 0.284 3 4 cbr 1000 ------- 1 2.0 7.0 13 32 r 0.286 3 4 cbr 500 ------- 1 1.0 6.0 14 23 + 0.286 4 6 cbr 500 ------- 1 1.0 6.0 14 23 - 0.286 4 6 cbr 500 ------- 1 1.0 6.0 14 23 r 0.286 4 7 cbr 1000 ------- 1 2.0 7.0 6 18 r 0.286 4 6 cbr 500 ------- 1 1.0 6.0 12 19 r 0.288 2 3 cbr 1000 ------- 1 2.0 7.0 16 38 + 0.288 3 4 cbr 1000 ------- 1 2.0 7.0 16 38 + 0.29 1 3 cbr 500 ------- 1 1.0 6.0 24 43 - 0.29 1 3 cbr 500 ------- 1 1.0 6.0 24 43 + 0.29 2 3 cbr 1000 ------- 1 2.0 7.0 19 44 - 0.29 2 3 cbr 1000 ------- 1 2.0 7.0 19 44 - 0.292 3 4 cbr 500 ------- 1 1.0 6.0 19 33 r 0.294 3 4 cbr 1000 ------- 1 2.0 7.0 9 24 + 0.294 4 7 cbr 1000 ------- 1 2.0 7.0 9 24 - 0.294 4 7 cbr 1000 ------- 1 2.0 7.0 9 24 r 0.294 1 3 cbr 500 ------- 1 1.0 6.0 22 39 + 0.294 3 4 cbr 500 ------- 1 1.0 6.0 22 39 - 0.296 3 4 cbr 1000 ------- 1 2.0 7.0 14 34 r 0.298 3 4 cbr 500 ------- 1 1.0 6.0 15 25 + 0.298 4 6 cbr 500 ------- 1 1.0 6.0 15 25 - 0.298 4 6 cbr 500 ------- 1 1.0 6.0 15 25 r 0.298 4 7 cbr 1000 ------- 1 2.0 7.0 7 20 r 0.298 4 6 cbr 500 ------- 1 1.0 6.0 13 21 r 0.298 2 3 cbr 1000 ------- 1 2.0 7.0 17 40 + 0.298 3 4 cbr 1000 ------- 1 2.0 7.0 17 40 + 0.3 1 3 cbr 500 ------- 1 1.0 6.0 25 45 - 0.3 1 3 cbr 500 ------- 1 1.0 6.0 25 45 + 0.3 2 3 cbr 1000 ------- 1 2.0 7.0 20 46 - 0.3 2 3 cbr 1000 ------- 1 2.0 7.0 20 46 r 0.304 1 3 cbr 500 ------- 1 1.0 6.0 23 41 + 0.304 3 4 cbr 500 ------- 1 1.0 6.0 23 41 - 0.304 3 4 cbr 500 ------- 1 1.0 6.0 20 35 r 0.306 3 4 cbr 1000 ------- 1 2.0 7.0 10 26 + 0.306 4 7 cbr 1000 ------- 1 2.0 7.0 10 26 - 0.306 4 7 cbr 1000 ------- 1 2.0 7.0 10 26 r 0.308 2 3 cbr 1000 ------- 1 2.0 7.0 18 42 + 0.308 3 4 cbr 1000 ------- 1 2.0 7.0 18 42 - 0.308 3 4 cbr 1000 ------- 1 2.0 7.0 15 36 r 0.31 3 4 cbr 500 ------- 1 1.0 6.0 16 27 + 0.31 4 6 cbr 500 ------- 1 1.0 6.0 16 27 - 0.31 4 6 cbr 500 ------- 1 1.0 6.0 16 27 r 0.31 4 7 cbr 1000 ------- 1 2.0 7.0 8 22 r 0.31 4 6 cbr 500 ------- 1 1.0 6.0 14 23 + 0.31 1 3 cbr 500 ------- 1 1.0 6.0 26 47 - 0.31 1 3 cbr 500 ------- 1 1.0 6.0 26 47 + 0.31 2 3 cbr 1000 ------- 1 2.0 7.0 21 48 - 0.31 2 3 cbr 1000 ------- 1 2.0 7.0 21 48 r 0.314 1 3 cbr 500 ------- 1 1.0 6.0 24 43 + 0.314 3 4 cbr 500 ------- 1 1.0 6.0 24 43 - 0.316 3 4 cbr 500 ------- 1 1.0 6.0 21 37 r 0.318 3 4 cbr 1000 ------- 1 2.0 7.0 11 28 + 0.318 4 7 cbr 1000 ------- 1 2.0 7.0 11 28 - 0.318 4 7 cbr 1000 ------- 1 2.0 7.0 11 28 r 0.318 2 3 cbr 1000 ------- 1 2.0 7.0 19 44 + 0.318 3 4 cbr 1000 ------- 1 2.0 7.0 19 44 + 0.32 1 3 cbr 500 ------- 1 1.0 6.0 27 49 - 0.32 1 3 cbr 500 ------- 1 1.0 6.0 27 49 + 0.32 2 3 cbr 1000 ------- 1 2.0 7.0 22 50 - 0.32 2 3 cbr 1000 ------- 1 2.0 7.0 22 50 - 0.32 3 4 cbr 1000 ------- 1 2.0 7.0 16 38 r 0.322 3 4 cbr 500 ------- 1 1.0 6.0 17 29 + 0.322 4 6 cbr 500 ------- 1 1.0 6.0 17 29 - 0.322 4 6 cbr 500 ------- 1 1.0 6.0 17 29 r 0.322 4 7 cbr 1000 ------- 1 2.0 7.0 9 24 r 0.322 4 6 cbr 500 ------- 1 1.0 6.0 15 25 r 0.324 1 3 cbr 500 ------- 1 1.0 6.0 25 45 + 0.324 3 4 cbr 500 ------- 1 1.0 6.0 25 45 r 0.328 2 3 cbr 1000 ------- 1 2.0 7.0 20 46 + 0.328 3 4 cbr 1000 ------- 1 2.0 7.0 20 46 - 0.328 3 4 cbr 500 ------- 1 1.0 6.0 22 39 r 0.33 3 4 cbr 1000 ------- 1 2.0 7.0 12 30 + 0.33 4 7 cbr 1000 ------- 1 2.0 7.0 12 30 - 0.33 4 7 cbr 1000 ------- 1 2.0 7.0 12 30 + 0.33 1 3 cbr 500 ------- 1 1.0 6.0 28 51 - 0.33 1 3 cbr 500 ------- 1 1.0 6.0 28 51 + 0.33 2 3 cbr 1000 ------- 1 2.0 7.0 23 52 - 0.33 2 3 cbr 1000 ------- 1 2.0 7.0 23 52 - 0.332 3 4 cbr 1000 ------- 1 2.0 7.0 17 40 r 0.334 3 4 cbr 500 ------- 1 1.0 6.0 18 31 + 0.334 4 6 cbr 500 ------- 1 1.0 6.0 18 31 - 0.334 4 6 cbr 500 ------- 1 1.0 6.0 18 31 r 0.334 4 7 cbr 1000 ------- 1 2.0 7.0 10 26 r 0.334 4 6 cbr 500 ------- 1 1.0 6.0 16 27 r 0.334 1 3 cbr 500 ------- 1 1.0 6.0 26 47 + 0.334 3 4 cbr 500 ------- 1 1.0 6.0 26 47 r 0.338 2 3 cbr 1000 ------- 1 2.0 7.0 21 48 + 0.338 3 4 cbr 1000 ------- 1 2.0 7.0 21 48 + 0.34 1 3 cbr 500 ------- 1 1.0 6.0 29 53 - 0.34 1 3 cbr 500 ------- 1 1.0 6.0 29 53 + 0.34 2 3 cbr 1000 ------- 1 2.0 7.0 24 54 - 0.34 2 3 cbr 1000 ------- 1 2.0 7.0 24 54 - 0.34 3 4 cbr 500 ------- 1 1.0 6.0 23 41 r 0.342 3 4 cbr 1000 ------- 1 2.0 7.0 13 32 + 0.342 4 7 cbr 1000 ------- 1 2.0 7.0 13 32 - 0.342 4 7 cbr 1000 ------- 1 2.0 7.0 13 32 r 0.344 1 3 cbr 500 ------- 1 1.0 6.0 27 49 + 0.344 3 4 cbr 500 ------- 1 1.0 6.0 27 49 - 0.344 3 4 cbr 1000 ------- 1 2.0 7.0 18 42 r 0.346 3 4 cbr 500 ------- 1 1.0 6.0 19 33 + 0.346 4 6 cbr 500 ------- 1 1.0 6.0 19 33 - 0.346 4 6 cbr 500 ------- 1 1.0 6.0 19 33 r 0.346 4 7 cbr 1000 ------- 1 2.0 7.0 11 28 r 0.346 4 6 cbr 500 ------- 1 1.0 6.0 17 29 r 0.348 2 3 cbr 1000 ------- 1 2.0 7.0 22 50 + 0.348 3 4 cbr 1000 ------- 1 2.0 7.0 22 50 + 0.35 1 3 cbr 500 ------- 1 1.0 6.0 30 55 - 0.35 1 3 cbr 500 ------- 1 1.0 6.0 30 55 + 0.35 2 3 cbr 1000 ------- 1 2.0 7.0 25 56 - 0.35 2 3 cbr 1000 ------- 1 2.0 7.0 25 56 - 0.352 3 4 cbr 500 ------- 1 1.0 6.0 24 43 r 0.354 3 4 cbr 1000 ------- 1 2.0 7.0 14 34 + 0.354 4 7 cbr 1000 ------- 1 2.0 7.0 14 34 - 0.354 4 7 cbr 1000 ------- 1 2.0 7.0 14 34 r 0.354 1 3 cbr 500 ------- 1 1.0 6.0 28 51 + 0.354 3 4 cbr 500 ------- 1 1.0 6.0 28 51 - 0.356 3 4 cbr 1000 ------- 1 2.0 7.0 19 44 r 0.358 3 4 cbr 500 ------- 1 1.0 6.0 20 35 + 0.358 4 6 cbr 500 ------- 1 1.0 6.0 20 35 - 0.358 4 6 cbr 500 ------- 1 1.0 6.0 20 35 r 0.358 4 7 cbr 1000 ------- 1 2.0 7.0 12 30 r 0.358 4 6 cbr 500 ------- 1 1.0 6.0 18 31 r 0.358 2 3 cbr 1000 ------- 1 2.0 7.0 23 52 + 0.358 3 4 cbr 1000 ------- 1 2.0 7.0 23 52 + 0.36 1 3 cbr 500 ------- 1 1.0 6.0 31 57 - 0.36 1 3 cbr 500 ------- 1 1.0 6.0 31 57 + 0.36 2 3 cbr 1000 ------- 1 2.0 7.0 26 58 - 0.36 2 3 cbr 1000 ------- 1 2.0 7.0 26 58 r 0.364 1 3 cbr 500 ------- 1 1.0 6.0 29 53 + 0.364 3 4 cbr 500 ------- 1 1.0 6.0 29 53 - 0.364 3 4 cbr 500 ------- 1 1.0 6.0 25 45 r 0.366 3 4 cbr 1000 ------- 1 2.0 7.0 15 36 + 0.366 4 7 cbr 1000 ------- 1 2.0 7.0 15 36 - 0.366 4 7 cbr 1000 ------- 1 2.0 7.0 15 36 r 0.368 2 3 cbr 1000 ------- 1 2.0 7.0 24 54 + 0.368 3 4 cbr 1000 ------- 1 2.0 7.0 24 54 - 0.368 3 4 cbr 1000 ------- 1 2.0 7.0 20 46 r 0.37 3 4 cbr 500 ------- 1 1.0 6.0 21 37 + 0.37 4 6 cbr 500 ------- 1 1.0 6.0 21 37 - 0.37 4 6 cbr 500 ------- 1 1.0 6.0 21 37 r 0.37 4 7 cbr 1000 ------- 1 2.0 7.0 13 32 r 0.37 4 6 cbr 500 ------- 1 1.0 6.0 19 33 + 0.37 1 3 cbr 500 ------- 1 1.0 6.0 32 59 - 0.37 1 3 cbr 500 ------- 1 1.0 6.0 32 59 + 0.37 2 3 cbr 1000 ------- 1 2.0 7.0 27 60 - 0.37 2 3 cbr 1000 ------- 1 2.0 7.0 27 60 r 0.374 1 3 cbr 500 ------- 1 1.0 6.0 30 55 + 0.374 3 4 cbr 500 ------- 1 1.0 6.0 30 55 - 0.376 3 4 cbr 500 ------- 1 1.0 6.0 26 47 r 0.378 3 4 cbr 1000 ------- 1 2.0 7.0 16 38 + 0.378 4 7 cbr 1000 ------- 1 2.0 7.0 16 38 - 0.378 4 7 cbr 1000 ------- 1 2.0 7.0 16 38 r 0.378 2 3 cbr 1000 ------- 1 2.0 7.0 25 56 + 0.378 3 4 cbr 1000 ------- 1 2.0 7.0 25 56 + 0.38 1 3 cbr 500 ------- 1 1.0 6.0 33 61 - 0.38 1 3 cbr 500 ------- 1 1.0 6.0 33 61 + 0.38 2 3 cbr 1000 ------- 1 2.0 7.0 28 62 - 0.38 2 3 cbr 1000 ------- 1 2.0 7.0 28 62 - 0.38 3 4 cbr 1000 ------- 1 2.0 7.0 21 48 r 0.382 3 4 cbr 500 ------- 1 1.0 6.0 22 39 + 0.382 4 6 cbr 500 ------- 1 1.0 6.0 22 39 - 0.382 4 6 cbr 500 ------- 1 1.0 6.0 22 39 r 0.382 4 7 cbr 1000 ------- 1 2.0 7.0 14 34 r 0.382 4 6 cbr 500 ------- 1 1.0 6.0 20 35 r 0.384 1 3 cbr 500 ------- 1 1.0 6.0 31 57 + 0.384 3 4 cbr 500 ------- 1 1.0 6.0 31 57 r 0.388 2 3 cbr 1000 ------- 1 2.0 7.0 26 58 + 0.388 3 4 cbr 1000 ------- 1 2.0 7.0 26 58 d 0.388 3 4 cbr 1000 ------- 1 2.0 7.0 26 58 - 0.388 3 4 cbr 500 ------- 1 1.0 6.0 27 49 r 0.39 3 4 cbr 1000 ------- 1 2.0 7.0 17 40 + 0.39 4 7 cbr 1000 ------- 1 2.0 7.0 17 40 - 0.39 4 7 cbr 1000 ------- 1 2.0 7.0 17 40 + 0.39 1 3 cbr 500 ------- 1 1.0 6.0 34 63 - 0.39 1 3 cbr 500 ------- 1 1.0 6.0 34 63 + 0.39 2 3 cbr 1000 ------- 1 2.0 7.0 29 64 - 0.39 2 3 cbr 1000 ------- 1 2.0 7.0 29 64 - 0.392 3 4 cbr 1000 ------- 1 2.0 7.0 22 50 r 0.394 3 4 cbr 500 ------- 1 1.0 6.0 23 41 + 0.394 4 6 cbr 500 ------- 1 1.0 6.0 23 41 - 0.394 4 6 cbr 500 ------- 1 1.0 6.0 23 41 r 0.394 4 7 cbr 1000 ------- 1 2.0 7.0 15 36 r 0.394 4 6 cbr 500 ------- 1 1.0 6.0 21 37 r 0.394 1 3 cbr 500 ------- 1 1.0 6.0 32 59 + 0.394 3 4 cbr 500 ------- 1 1.0 6.0 32 59 r 0.398 2 3 cbr 1000 ------- 1 2.0 7.0 27 60 + 0.398 3 4 cbr 1000 ------- 1 2.0 7.0 27 60 + 0.4 1 3 cbr 500 ------- 1 1.0 6.0 35 65 - 0.4 1 3 cbr 500 ------- 1 1.0 6.0 35 65 + 0.4 2 3 cbr 1000 ------- 1 2.0 7.0 30 66 - 0.4 2 3 cbr 1000 ------- 1 2.0 7.0 30 66 - 0.4 3 4 cbr 500 ------- 1 1.0 6.0 28 51 r 0.402 3 4 cbr 1000 ------- 1 2.0 7.0 18 42 + 0.402 4 7 cbr 1000 ------- 1 2.0 7.0 18 42 - 0.402 4 7 cbr 1000 ------- 1 2.0 7.0 18 42 r 0.404 1 3 cbr 500 ------- 1 1.0 6.0 33 61 + 0.404 3 4 cbr 500 ------- 1 1.0 6.0 33 61 - 0.404 3 4 cbr 1000 ------- 1 2.0 7.0 23 52 r 0.406 3 4 cbr 500 ------- 1 1.0 6.0 24 43 + 0.406 4 6 cbr 500 ------- 1 1.0 6.0 24 43 - 0.406 4 6 cbr 500 ------- 1 1.0 6.0 24 43 r 0.406 4 7 cbr 1000 ------- 1 2.0 7.0 16 38 r 0.406 4 6 cbr 500 ------- 1 1.0 6.0 22 39 r 0.408 2 3 cbr 1000 ------- 1 2.0 7.0 28 62 + 0.408 3 4 cbr 1000 ------- 1 2.0 7.0 28 62 + 0.41 1 3 cbr 500 ------- 1 1.0 6.0 36 67 - 0.41 1 3 cbr 500 ------- 1 1.0 6.0 36 67 + 0.41 2 3 cbr 1000 ------- 1 2.0 7.0 31 68 - 0.41 2 3 cbr 1000 ------- 1 2.0 7.0 31 68 - 0.412 3 4 cbr 500 ------- 1 1.0 6.0 29 53 r 0.414 3 4 cbr 1000 ------- 1 2.0 7.0 19 44 + 0.414 4 7 cbr 1000 ------- 1 2.0 7.0 19 44 - 0.414 4 7 cbr 1000 ------- 1 2.0 7.0 19 44 r 0.414 1 3 cbr 500 ------- 1 1.0 6.0 34 63 + 0.414 3 4 cbr 500 ------- 1 1.0 6.0 34 63 - 0.416 3 4 cbr 1000 ------- 1 2.0 7.0 24 54 r 0.418 3 4 cbr 500 ------- 1 1.0 6.0 25 45 + 0.418 4 6 cbr 500 ------- 1 1.0 6.0 25 45 - 0.418 4 6 cbr 500 ------- 1 1.0 6.0 25 45 r 0.418 4 7 cbr 1000 ------- 1 2.0 7.0 17 40 r 0.418 4 6 cbr 500 ------- 1 1.0 6.0 23 41 r 0.418 2 3 cbr 1000 ------- 1 2.0 7.0 29 64 + 0.418 3 4 cbr 1000 ------- 1 2.0 7.0 29 64 + 0.42 1 3 cbr 500 ------- 1 1.0 6.0 37 69 - 0.42 1 3 cbr 500 ------- 1 1.0 6.0 37 69 + 0.42 2 3 cbr 1000 ------- 1 2.0 7.0 32 70 - 0.42 2 3 cbr 1000 ------- 1 2.0 7.0 32 70 r 0.424 1 3 cbr 500 ------- 1 1.0 6.0 35 65 + 0.424 3 4 cbr 500 ------- 1 1.0 6.0 35 65 d 0.424 3 4 cbr 500 ------- 1 1.0 6.0 35 65 - 0.424 3 4 cbr 500 ------- 1 1.0 6.0 30 55 r 0.426 3 4 cbr 1000 ------- 1 2.0 7.0 20 46 + 0.426 4 7 cbr 1000 ------- 1 2.0 7.0 20 46 - 0.426 4 7 cbr 1000 ------- 1 2.0 7.0 20 46 r 0.428 2 3 cbr 1000 ------- 1 2.0 7.0 30 66 + 0.428 3 4 cbr 1000 ------- 1 2.0 7.0 30 66 - 0.428 3 4 cbr 1000 ------- 1 2.0 7.0 25 56 r 0.43 3 4 cbr 500 ------- 1 1.0 6.0 26 47 + 0.43 4 6 cbr 500 ------- 1 1.0 6.0 26 47 - 0.43 4 6 cbr 500 ------- 1 1.0 6.0 26 47 r 0.43 4 7 cbr 1000 ------- 1 2.0 7.0 18 42 r 0.43 4 6 cbr 500 ------- 1 1.0 6.0 24 43 + 0.43 1 3 cbr 500 ------- 1 1.0 6.0 38 71 - 0.43 1 3 cbr 500 ------- 1 1.0 6.0 38 71 + 0.43 2 3 cbr 1000 ------- 1 2.0 7.0 33 72 - 0.43 2 3 cbr 1000 ------- 1 2.0 7.0 33 72 r 0.434 1 3 cbr 500 ------- 1 1.0 6.0 36 67 + 0.434 3 4 cbr 500 ------- 1 1.0 6.0 36 67 - 0.436 3 4 cbr 500 ------- 1 1.0 6.0 31 57 r 0.438 3 4 cbr 1000 ------- 1 2.0 7.0 21 48 + 0.438 4 7 cbr 1000 ------- 1 2.0 7.0 21 48 - 0.438 4 7 cbr 1000 ------- 1 2.0 7.0 21 48 r 0.438 2 3 cbr 1000 ------- 1 2.0 7.0 31 68 + 0.438 3 4 cbr 1000 ------- 1 2.0 7.0 31 68 + 0.44 1 3 cbr 500 ------- 1 1.0 6.0 39 73 - 0.44 1 3 cbr 500 ------- 1 1.0 6.0 39 73 + 0.44 2 3 cbr 1000 ------- 1 2.0 7.0 34 74 - 0.44 2 3 cbr 1000 ------- 1 2.0 7.0 34 74 - 0.44 3 4 cbr 500 ------- 1 1.0 6.0 32 59 r 0.442 3 4 cbr 500 ------- 1 1.0 6.0 27 49 + 0.442 4 6 cbr 500 ------- 1 1.0 6.0 27 49 - 0.442 4 6 cbr 500 ------- 1 1.0 6.0 27 49 r 0.442 4 7 cbr 1000 ------- 1 2.0 7.0 19 44 r 0.442 4 6 cbr 500 ------- 1 1.0 6.0 25 45 r 0.444 1 3 cbr 500 ------- 1 1.0 6.0 37 69 + 0.444 3 4 cbr 500 ------- 1 1.0 6.0 37 69 - 0.444 3 4 cbr 1000 ------- 1 2.0 7.0 27 60 r 0.448 2 3 cbr 1000 ------- 1 2.0 7.0 32 70 + 0.448 3 4 cbr 1000 ------- 1 2.0 7.0 32 70 r 0.45 3 4 cbr 1000 ------- 1 2.0 7.0 22 50 + 0.45 4 7 cbr 1000 ------- 1 2.0 7.0 22 50 - 0.45 4 7 cbr 1000 ------- 1 2.0 7.0 22 50 + 0.45 1 3 cbr 500 ------- 1 1.0 6.0 40 75 - 0.45 1 3 cbr 500 ------- 1 1.0 6.0 40 75 + 0.45 2 3 cbr 1000 ------- 1 2.0 7.0 35 76 - 0.45 2 3 cbr 1000 ------- 1 2.0 7.0 35 76 - 0.452 3 4 cbr 500 ------- 1 1.0 6.0 33 61 r 0.454 3 4 cbr 500 ------- 1 1.0 6.0 28 51 + 0.454 4 6 cbr 500 ------- 1 1.0 6.0 28 51 - 0.454 4 6 cbr 500 ------- 1 1.0 6.0 28 51 r 0.454 4 7 cbr 1000 ------- 1 2.0 7.0 20 46 r 0.454 4 6 cbr 500 ------- 1 1.0 6.0 26 47 r 0.454 1 3 cbr 500 ------- 1 1.0 6.0 38 71 + 0.454 3 4 cbr 500 ------- 1 1.0 6.0 38 71 - 0.456 3 4 cbr 1000 ------- 1 2.0 7.0 28 62 r 0.458 2 3 cbr 1000 ------- 1 2.0 7.0 33 72 + 0.458 3 4 cbr 1000 ------- 1 2.0 7.0 33 72 + 0.46 1 3 cbr 500 ------- 1 1.0 6.0 41 77 - 0.46 1 3 cbr 500 ------- 1 1.0 6.0 41 77 + 0.46 2 3 cbr 1000 ------- 1 2.0 7.0 36 78 - 0.46 2 3 cbr 1000 ------- 1 2.0 7.0 36 78 r 0.462 3 4 cbr 1000 ------- 1 2.0 7.0 23 52 + 0.462 4 7 cbr 1000 ------- 1 2.0 7.0 23 52 - 0.462 4 7 cbr 1000 ------- 1 2.0 7.0 23 52 r 0.464 1 3 cbr 500 ------- 1 1.0 6.0 39 73 + 0.464 3 4 cbr 500 ------- 1 1.0 6.0 39 73 d 0.464 3 4 cbr 500 ------- 1 1.0 6.0 39 73 - 0.464 3 4 cbr 500 ------- 1 1.0 6.0 34 63 r 0.466 3 4 cbr 500 ------- 1 1.0 6.0 29 53 + 0.466 4 6 cbr 500 ------- 1 1.0 6.0 29 53 - 0.466 4 6 cbr 500 ------- 1 1.0 6.0 29 53 r 0.466 4 7 cbr 1000 ------- 1 2.0 7.0 21 48 r 0.466 4 6 cbr 500 ------- 1 1.0 6.0 27 49 r 0.468 2 3 cbr 1000 ------- 1 2.0 7.0 34 74 + 0.468 3 4 cbr 1000 ------- 1 2.0 7.0 34 74 - 0.468 3 4 cbr 1000 ------- 1 2.0 7.0 29 64 + 0.47 1 3 cbr 500 ------- 1 1.0 6.0 42 79 - 0.47 1 3 cbr 500 ------- 1 1.0 6.0 42 79 + 0.47 2 3 cbr 1000 ------- 1 2.0 7.0 37 80 - 0.47 2 3 cbr 1000 ------- 1 2.0 7.0 37 80 r 0.474 3 4 cbr 1000 ------- 1 2.0 7.0 24 54 + 0.474 4 7 cbr 1000 ------- 1 2.0 7.0 24 54 - 0.474 4 7 cbr 1000 ------- 1 2.0 7.0 24 54 r 0.474 1 3 cbr 500 ------- 1 1.0 6.0 40 75 + 0.474 3 4 cbr 500 ------- 1 1.0 6.0 40 75 - 0.476 3 4 cbr 1000 ------- 1 2.0 7.0 30 66 r 0.478 3 4 cbr 500 ------- 1 1.0 6.0 30 55 + 0.478 4 6 cbr 500 ------- 1 1.0 6.0 30 55 - 0.478 4 6 cbr 500 ------- 1 1.0 6.0 30 55 r 0.478 4 7 cbr 1000 ------- 1 2.0 7.0 22 50 r 0.478 4 6 cbr 500 ------- 1 1.0 6.0 28 51 r 0.478 2 3 cbr 1000 ------- 1 2.0 7.0 35 76 + 0.478 3 4 cbr 1000 ------- 1 2.0 7.0 35 76 v 0.47999999999999998 eval {set sim_annotation {Sliding-Window Traffic starts}} + 0.48 1 3 cbr 500 ------- 1 1.0 6.0 43 81 - 0.48 1 3 cbr 500 ------- 1 1.0 6.0 43 81 + 0.48 2 3 cbr 1000 ------- 1 2.0 7.0 38 82 - 0.48 2 3 cbr 1000 ------- 1 2.0 7.0 38 82 r 0.484 1 3 cbr 500 ------- 1 1.0 6.0 41 77 + 0.484 3 4 cbr 500 ------- 1 1.0 6.0 41 77 d 0.484 3 4 cbr 500 ------- 1 1.0 6.0 41 77 - 0.484 3 4 cbr 500 ------- 1 1.0 6.0 36 67 r 0.486 3 4 cbr 1000 ------- 1 2.0 7.0 25 56 + 0.486 4 7 cbr 1000 ------- 1 2.0 7.0 25 56 - 0.486 4 7 cbr 1000 ------- 1 2.0 7.0 25 56 r 0.488 2 3 cbr 1000 ------- 1 2.0 7.0 36 78 + 0.488 3 4 cbr 1000 ------- 1 2.0 7.0 36 78 - 0.488 3 4 cbr 1000 ------- 1 2.0 7.0 31 68 r 0.49 3 4 cbr 500 ------- 1 1.0 6.0 31 57 + 0.49 4 6 cbr 500 ------- 1 1.0 6.0 31 57 - 0.49 4 6 cbr 500 ------- 1 1.0 6.0 31 57 r 0.49 4 7 cbr 1000 ------- 1 2.0 7.0 23 52 r 0.49 4 6 cbr 500 ------- 1 1.0 6.0 29 53 + 0.49 1 3 cbr 500 ------- 1 1.0 6.0 44 83 - 0.49 1 3 cbr 500 ------- 1 1.0 6.0 44 83 + 0.49 2 3 cbr 1000 ------- 1 2.0 7.0 39 84 - 0.49 2 3 cbr 1000 ------- 1 2.0 7.0 39 84 r 0.494 3 4 cbr 500 ------- 1 1.0 6.0 32 59 + 0.494 4 6 cbr 500 ------- 1 1.0 6.0 32 59 r 0.494 1 3 cbr 500 ------- 1 1.0 6.0 42 79 + 0.494 3 4 cbr 500 ------- 1 1.0 6.0 42 79 - 0.494 4 6 cbr 500 ------- 1 1.0 6.0 32 59 - 0.496 3 4 cbr 500 ------- 1 1.0 6.0 37 69 r 0.498 2 3 cbr 1000 ------- 1 2.0 7.0 37 80 + 0.498 3 4 cbr 1000 ------- 1 2.0 7.0 37 80 + 0.5 0 3 tcp 1000 ------- 0 0.0 5.0 0 85 - 0.5 0 3 tcp 1000 ------- 0 0.0 5.0 0 85 + 0.5 0 3 tcp 1000 ------- 0 0.0 5.0 1 86 + 0.5 0 3 tcp 1000 ------- 0 0.0 5.0 2 87 + 0.5 0 3 tcp 1000 ------- 0 0.0 5.0 3 88 + 0.5 0 3 tcp 1000 ------- 0 0.0 5.0 4 89 + 0.5 0 3 tcp 1000 ------- 0 0.0 5.0 5 90 + 0.5 0 3 tcp 1000 ------- 0 0.0 5.0 6 91 + 0.5 0 3 tcp 1000 ------- 0 0.0 5.0 7 92 + 0.5 1 3 cbr 500 ------- 1 1.0 6.0 45 93 - 0.5 1 3 cbr 500 ------- 1 1.0 6.0 45 93 + 0.5 2 3 cbr 1000 ------- 1 2.0 7.0 40 94 - 0.5 2 3 cbr 1000 ------- 1 2.0 7.0 40 94 - 0.5 3 4 cbr 1000 ------- 1 2.0 7.0 32 70 - 0.5016 0 3 tcp 1000 ------- 0 0.0 5.0 1 86 r 0.502 4 7 cbr 1000 ------- 1 2.0 7.0 24 54 r 0.502 4 6 cbr 500 ------- 1 1.0 6.0 30 55 r 0.502 3 4 cbr 1000 ------- 1 2.0 7.0 27 60 + 0.502 4 7 cbr 1000 ------- 1 2.0 7.0 27 60 - 0.502 4 7 cbr 1000 ------- 1 2.0 7.0 27 60 - 0.5032 0 3 tcp 1000 ------- 0 0.0 5.0 2 87 r 0.504 1 3 cbr 500 ------- 1 1.0 6.0 43 81 + 0.504 3 4 cbr 500 ------- 1 1.0 6.0 43 81 - 0.5048 0 3 tcp 1000 ------- 0 0.0 5.0 3 88 r 0.506 3 4 cbr 500 ------- 1 1.0 6.0 33 61 + 0.506 4 6 cbr 500 ------- 1 1.0 6.0 33 61 - 0.506 4 6 cbr 500 ------- 1 1.0 6.0 33 61 - 0.5064 0 3 tcp 1000 ------- 0 0.0 5.0 4 89 - 0.508 0 3 tcp 1000 ------- 0 0.0 5.0 5 90 r 0.508 2 3 cbr 1000 ------- 1 2.0 7.0 38 82 + 0.508 3 4 cbr 1000 ------- 1 2.0 7.0 38 82 d 0.508 3 4 cbr 1000 ------- 1 2.0 7.0 38 82 - 0.508 3 4 cbr 500 ------- 1 1.0 6.0 38 71 - 0.5096 0 3 tcp 1000 ------- 0 0.0 5.0 6 91 v 0.51000000000000001 eval {set sim_annotation {Send Packet_0 to 7 }} + 0.51 1 3 cbr 500 ------- 1 1.0 6.0 46 95 - 0.51 1 3 cbr 500 ------- 1 1.0 6.0 46 95 - 0.5112 0 3 tcp 1000 ------- 0 0.0 5.0 7 92 - 0.512 3 4 cbr 1000 ------- 1 2.0 7.0 33 72 r 0.514 4 7 cbr 1000 ------- 1 2.0 7.0 25 56 r 0.514 4 6 cbr 500 ------- 1 1.0 6.0 31 57 r 0.514 1 3 cbr 500 ------- 1 1.0 6.0 44 83 + 0.514 3 4 cbr 500 ------- 1 1.0 6.0 44 83 r 0.514 3 4 cbr 1000 ------- 1 2.0 7.0 28 62 + 0.514 4 7 cbr 1000 ------- 1 2.0 7.0 28 62 - 0.514 4 7 cbr 1000 ------- 1 2.0 7.0 28 62 r 0.518 4 6 cbr 500 ------- 1 1.0 6.0 32 59 r 0.518 3 4 cbr 500 ------- 1 1.0 6.0 34 63 + 0.518 4 6 cbr 500 ------- 1 1.0 6.0 34 63 - 0.518 4 6 cbr 500 ------- 1 1.0 6.0 34 63 r 0.518 2 3 cbr 1000 ------- 1 2.0 7.0 39 84 + 0.518 3 4 cbr 1000 ------- 1 2.0 7.0 39 84 + 0.52 1 3 cbr 500 ------- 1 1.0 6.0 47 96 - 0.52 1 3 cbr 500 ------- 1 1.0 6.0 47 96 + 0.52 2 3 cbr 1000 ------- 1 2.0 7.0 41 97 - 0.52 2 3 cbr 1000 ------- 1 2.0 7.0 41 97 - 0.52 3 4 cbr 1000 ------- 1 2.0 7.0 34 74 r 0.5216 0 3 tcp 1000 ------- 0 0.0 5.0 0 85 + 0.5216 3 4 tcp 1000 ------- 0 0.0 5.0 0 85 r 0.5232 0 3 tcp 1000 ------- 0 0.0 5.0 1 86 + 0.5232 3 4 tcp 1000 ------- 0 0.0 5.0 1 86 d 0.5232 3 4 tcp 1000 ------- 0 0.0 5.0 1 86 r 0.524 1 3 cbr 500 ------- 1 1.0 6.0 45 93 + 0.524 3 4 cbr 500 ------- 1 1.0 6.0 45 93 d 0.524 3 4 cbr 500 ------- 1 1.0 6.0 45 93 r 0.5248 0 3 tcp 1000 ------- 0 0.0 5.0 2 87 + 0.5248 3 4 tcp 1000 ------- 0 0.0 5.0 2 87 d 0.5248 3 4 tcp 1000 ------- 0 0.0 5.0 2 87 r 0.526 3 4 cbr 1000 ------- 1 2.0 7.0 29 64 + 0.526 4 7 cbr 1000 ------- 1 2.0 7.0 29 64 - 0.526 4 7 cbr 1000 ------- 1 2.0 7.0 29 64 r 0.5264 0 3 tcp 1000 ------- 0 0.0 5.0 3 88 + 0.5264 3 4 tcp 1000 ------- 0 0.0 5.0 3 88 d 0.5264 3 4 tcp 1000 ------- 0 0.0 5.0 3 88 r 0.528 0 3 tcp 1000 ------- 0 0.0 5.0 4 89 + 0.528 3 4 tcp 1000 ------- 0 0.0 5.0 4 89 d 0.528 3 4 tcp 1000 ------- 0 0.0 5.0 4 89 r 0.528 2 3 cbr 1000 ------- 1 2.0 7.0 40 94 + 0.528 3 4 cbr 1000 ------- 1 2.0 7.0 40 94 d 0.528 3 4 cbr 1000 ------- 1 2.0 7.0 40 94 - 0.528 3 4 cbr 500 ------- 1 1.0 6.0 40 75 r 0.5296 0 3 tcp 1000 ------- 0 0.0 5.0 5 90 + 0.5296 3 4 tcp 1000 ------- 0 0.0 5.0 5 90 + 0.53 1 3 cbr 500 ------- 1 1.0 6.0 48 98 - 0.53 1 3 cbr 500 ------- 1 1.0 6.0 48 98 r 0.53 4 7 cbr 1000 ------- 1 2.0 7.0 27 60 r 0.53 4 6 cbr 500 ------- 1 1.0 6.0 33 61 r 0.5312 0 3 tcp 1000 ------- 0 0.0 5.0 6 91 + 0.5312 3 4 tcp 1000 ------- 0 0.0 5.0 6 91 d 0.5312 3 4 tcp 1000 ------- 0 0.0 5.0 6 91 - 0.532 3 4 cbr 1000 ------- 1 2.0 7.0 35 76 r 0.5328 0 3 tcp 1000 ------- 0 0.0 5.0 7 92 + 0.5328 3 4 tcp 1000 ------- 0 0.0 5.0 7 92 r 0.534 1 3 cbr 500 ------- 1 1.0 6.0 46 95 + 0.534 3 4 cbr 500 ------- 1 1.0 6.0 46 95 d 0.534 3 4 cbr 500 ------- 1 1.0 6.0 46 95 r 0.534 3 4 cbr 1000 ------- 1 2.0 7.0 30 66 + 0.534 4 7 cbr 1000 ------- 1 2.0 7.0 30 66 - 0.534 4 7 cbr 1000 ------- 1 2.0 7.0 30 66 r 0.538 3 4 cbr 500 ------- 1 1.0 6.0 36 67 + 0.538 4 6 cbr 500 ------- 1 1.0 6.0 36 67 - 0.538 4 6 cbr 500 ------- 1 1.0 6.0 36 67 v 0.54000000000000004 eval {set sim_annotation {Lost Packet (5 of them) }} + 0.54 1 3 cbr 500 ------- 1 1.0 6.0 49 99 - 0.54 1 3 cbr 500 ------- 1 1.0 6.0 49 99 + 0.54 2 3 cbr 1000 ------- 1 2.0 7.0 42 100 - 0.54 2 3 cbr 1000 ------- 1 2.0 7.0 42 100 - 0.54 3 4 cbr 1000 ------- 1 2.0 7.0 36 78 r 0.542 4 7 cbr 1000 ------- 1 2.0 7.0 28 62 r 0.542 4 6 cbr 500 ------- 1 1.0 6.0 34 63 r 0.544 1 3 cbr 500 ------- 1 1.0 6.0 47 96 + 0.544 3 4 cbr 500 ------- 1 1.0 6.0 47 96 r 0.546 3 4 cbr 1000 ------- 1 2.0 7.0 31 68 + 0.546 4 7 cbr 1000 ------- 1 2.0 7.0 31 68 - 0.546 4 7 cbr 1000 ------- 1 2.0 7.0 31 68 r 0.548 2 3 cbr 1000 ------- 1 2.0 7.0 41 97 + 0.548 3 4 cbr 1000 ------- 1 2.0 7.0 41 97 d 0.548 3 4 cbr 1000 ------- 1 2.0 7.0 41 97 - 0.548 3 4 cbr 500 ------- 1 1.0 6.0 42 79 + 0.55 1 3 cbr 500 ------- 1 1.0 6.0 50 101 - 0.55 1 3 cbr 500 ------- 1 1.0 6.0 50 101 r 0.55 3 4 cbr 500 ------- 1 1.0 6.0 37 69 + 0.55 4 6 cbr 500 ------- 1 1.0 6.0 37 69 - 0.55 4 6 cbr 500 ------- 1 1.0 6.0 37 69 - 0.552 3 4 cbr 1000 ------- 1 2.0 7.0 37 80 r 0.554 1 3 cbr 500 ------- 1 1.0 6.0 48 98 + 0.554 3 4 cbr 500 ------- 1 1.0 6.0 48 98 r 0.554 4 7 cbr 1000 ------- 1 2.0 7.0 29 64 r 0.558 3 4 cbr 1000 ------- 1 2.0 7.0 32 70 + 0.558 4 7 cbr 1000 ------- 1 2.0 7.0 32 70 - 0.558 4 7 cbr 1000 ------- 1 2.0 7.0 32 70 + 0.56 1 3 cbr 500 ------- 1 1.0 6.0 51 102 - 0.56 1 3 cbr 500 ------- 1 1.0 6.0 51 102 + 0.56 2 3 cbr 1000 ------- 1 2.0 7.0 43 103 - 0.56 2 3 cbr 1000 ------- 1 2.0 7.0 43 103 - 0.56 3 4 cbr 500 ------- 1 1.0 6.0 43 81 r 0.562 3 4 cbr 500 ------- 1 1.0 6.0 38 71 + 0.562 4 6 cbr 500 ------- 1 1.0 6.0 38 71 - 0.562 4 6 cbr 500 ------- 1 1.0 6.0 38 71 r 0.562 4 7 cbr 1000 ------- 1 2.0 7.0 30 66 r 0.562 4 6 cbr 500 ------- 1 1.0 6.0 36 67 r 0.564 1 3 cbr 500 ------- 1 1.0 6.0 49 99 + 0.564 3 4 cbr 500 ------- 1 1.0 6.0 49 99 - 0.564 3 4 cbr 500 ------- 1 1.0 6.0 44 83 r 0.568 2 3 cbr 1000 ------- 1 2.0 7.0 42 100 + 0.568 3 4 cbr 1000 ------- 1 2.0 7.0 42 100 - 0.568 3 4 cbr 1000 ------- 1 2.0 7.0 39 84 + 0.57 1 3 cbr 500 ------- 1 1.0 6.0 52 104 - 0.57 1 3 cbr 500 ------- 1 1.0 6.0 52 104 r 0.57 3 4 cbr 1000 ------- 1 2.0 7.0 33 72 + 0.57 4 7 cbr 1000 ------- 1 2.0 7.0 33 72 - 0.57 4 7 cbr 1000 ------- 1 2.0 7.0 33 72 r 0.574 1 3 cbr 500 ------- 1 1.0 6.0 50 101 + 0.574 3 4 cbr 500 ------- 1 1.0 6.0 50 101 r 0.574 4 7 cbr 1000 ------- 1 2.0 7.0 31 68 r 0.574 4 6 cbr 500 ------- 1 1.0 6.0 37 69 - 0.576 3 4 tcp 1000 ------- 0 0.0 5.0 0 85 r 0.578 3 4 cbr 1000 ------- 1 2.0 7.0 34 74 + 0.578 4 7 cbr 1000 ------- 1 2.0 7.0 34 74 - 0.578 4 7 cbr 1000 ------- 1 2.0 7.0 34 74 + 0.58 1 3 cbr 500 ------- 1 1.0 6.0 53 105 - 0.58 1 3 cbr 500 ------- 1 1.0 6.0 53 105 + 0.58 2 3 cbr 1000 ------- 1 2.0 7.0 44 106 - 0.58 2 3 cbr 1000 ------- 1 2.0 7.0 44 106 r 0.582 3 4 cbr 500 ------- 1 1.0 6.0 40 75 + 0.582 4 6 cbr 500 ------- 1 1.0 6.0 40 75 - 0.582 4 6 cbr 500 ------- 1 1.0 6.0 40 75 r 0.584 1 3 cbr 500 ------- 1 1.0 6.0 51 102 + 0.584 3 4 cbr 500 ------- 1 1.0 6.0 51 102 - 0.584 3 4 tcp 1000 ------- 0 0.0 5.0 5 90 r 0.586 4 7 cbr 1000 ------- 1 2.0 7.0 32 70 r 0.586 4 6 cbr 500 ------- 1 1.0 6.0 38 71 r 0.588 2 3 cbr 1000 ------- 1 2.0 7.0 43 103 + 0.588 3 4 cbr 1000 ------- 1 2.0 7.0 43 103 + 0.59 1 3 cbr 500 ------- 1 1.0 6.0 54 107 - 0.59 1 3 cbr 500 ------- 1 1.0 6.0 54 107 r 0.59 3 4 cbr 1000 ------- 1 2.0 7.0 35 76 + 0.59 4 7 cbr 1000 ------- 1 2.0 7.0 35 76 - 0.59 4 7 cbr 1000 ------- 1 2.0 7.0 35 76 - 0.592 3 4 tcp 1000 ------- 0 0.0 5.0 7 92 r 0.594 1 3 cbr 500 ------- 1 1.0 6.0 52 104 + 0.594 3 4 cbr 500 ------- 1 1.0 6.0 52 104 r 0.598 3 4 cbr 1000 ------- 1 2.0 7.0 36 78 + 0.598 4 7 cbr 1000 ------- 1 2.0 7.0 36 78 r 0.598 4 7 cbr 1000 ------- 1 2.0 7.0 33 72 - 0.598 4 7 cbr 1000 ------- 1 2.0 7.0 36 78 + 0.6 1 3 cbr 500 ------- 1 1.0 6.0 55 108 - 0.6 1 3 cbr 500 ------- 1 1.0 6.0 55 108 + 0.6 2 3 cbr 1000 ------- 1 2.0 7.0 45 109 - 0.6 2 3 cbr 1000 ------- 1 2.0 7.0 45 109 - 0.6 3 4 cbr 500 ------- 1 1.0 6.0 47 96 r 0.602 3 4 cbr 500 ------- 1 1.0 6.0 42 79 + 0.602 4 6 cbr 500 ------- 1 1.0 6.0 42 79 - 0.602 4 6 cbr 500 ------- 1 1.0 6.0 42 79 r 0.604 1 3 cbr 500 ------- 1 1.0 6.0 53 105 + 0.604 3 4 cbr 500 ------- 1 1.0 6.0 53 105 - 0.604 3 4 cbr 500 ------- 1 1.0 6.0 48 98 r 0.606 4 7 cbr 1000 ------- 1 2.0 7.0 34 74 r 0.606 4 6 cbr 500 ------- 1 1.0 6.0 40 75 r 0.608 2 3 cbr 1000 ------- 1 2.0 7.0 44 106 + 0.608 3 4 cbr 1000 ------- 1 2.0 7.0 44 106 - 0.608 3 4 cbr 500 ------- 1 1.0 6.0 49 99 + 0.61 1 3 cbr 500 ------- 1 1.0 6.0 56 110 - 0.61 1 3 cbr 500 ------- 1 1.0 6.0 56 110 r 0.61 3 4 cbr 1000 ------- 1 2.0 7.0 37 80 + 0.61 4 7 cbr 1000 ------- 1 2.0 7.0 37 80 - 0.61 4 7 cbr 1000 ------- 1 2.0 7.0 37 80 - 0.612 3 4 cbr 1000 ------- 1 2.0 7.0 42 100 r 0.614 1 3 cbr 500 ------- 1 1.0 6.0 54 107 + 0.614 3 4 cbr 500 ------- 1 1.0 6.0 54 107 r 0.614 3 4 cbr 500 ------- 1 1.0 6.0 43 81 + 0.614 4 6 cbr 500 ------- 1 1.0 6.0 43 81 - 0.614 4 6 cbr 500 ------- 1 1.0 6.0 43 81 r 0.618 3 4 cbr 500 ------- 1 1.0 6.0 44 83 + 0.618 4 6 cbr 500 ------- 1 1.0 6.0 44 83 r 0.618 4 7 cbr 1000 ------- 1 2.0 7.0 35 76 - 0.618 4 6 cbr 500 ------- 1 1.0 6.0 44 83 + 0.62 1 3 cbr 500 ------- 1 1.0 6.0 57 111 - 0.62 1 3 cbr 500 ------- 1 1.0 6.0 57 111 + 0.62 2 3 cbr 1000 ------- 1 2.0 7.0 46 112 - 0.62 2 3 cbr 1000 ------- 1 2.0 7.0 46 112 - 0.62 3 4 cbr 500 ------- 1 1.0 6.0 50 101 r 0.624 1 3 cbr 500 ------- 1 1.0 6.0 55 108 + 0.624 3 4 cbr 500 ------- 1 1.0 6.0 55 108 - 0.624 3 4 cbr 500 ------- 1 1.0 6.0 51 102 r 0.626 3 4 cbr 1000 ------- 1 2.0 7.0 39 84 + 0.626 4 7 cbr 1000 ------- 1 2.0 7.0 39 84 - 0.626 4 7 cbr 1000 ------- 1 2.0 7.0 39 84 r 0.626 4 7 cbr 1000 ------- 1 2.0 7.0 36 78 r 0.626 4 6 cbr 500 ------- 1 1.0 6.0 42 79 r 0.628 2 3 cbr 1000 ------- 1 2.0 7.0 45 109 + 0.628 3 4 cbr 1000 ------- 1 2.0 7.0 45 109 - 0.628 3 4 cbr 1000 ------- 1 2.0 7.0 43 103 + 0.63 1 3 cbr 500 ------- 1 1.0 6.0 58 113 - 0.63 1 3 cbr 500 ------- 1 1.0 6.0 58 113 r 0.634 1 3 cbr 500 ------- 1 1.0 6.0 56 110 + 0.634 3 4 cbr 500 ------- 1 1.0 6.0 56 110 r 0.634 3 4 tcp 1000 ------- 0 0.0 5.0 0 85 + 0.634 4 5 tcp 1000 ------- 0 0.0 5.0 0 85 - 0.634 4 5 tcp 1000 ------- 0 0.0 5.0 0 85 - 0.636 3 4 cbr 500 ------- 1 1.0 6.0 52 104 r 0.638 4 7 cbr 1000 ------- 1 2.0 7.0 37 80 r 0.638 4 6 cbr 500 ------- 1 1.0 6.0 43 81 + 0.64 1 3 cbr 500 ------- 1 1.0 6.0 59 114 - 0.64 1 3 cbr 500 ------- 1 1.0 6.0 59 114 + 0.64 2 3 cbr 1000 ------- 1 2.0 7.0 47 115 - 0.64 2 3 cbr 1000 ------- 1 2.0 7.0 47 115 - 0.64 3 4 cbr 500 ------- 1 1.0 6.0 53 105 r 0.642 3 4 tcp 1000 ------- 0 0.0 5.0 5 90 + 0.642 4 5 tcp 1000 ------- 0 0.0 5.0 5 90 - 0.642 4 5 tcp 1000 ------- 0 0.0 5.0 5 90 r 0.642 4 6 cbr 500 ------- 1 1.0 6.0 44 83 r 0.644 1 3 cbr 500 ------- 1 1.0 6.0 57 111 + 0.644 3 4 cbr 500 ------- 1 1.0 6.0 57 111 - 0.644 3 4 cbr 1000 ------- 1 2.0 7.0 44 106 r 0.648 2 3 cbr 1000 ------- 1 2.0 7.0 46 112 + 0.648 3 4 cbr 1000 ------- 1 2.0 7.0 46 112 + 0.65 1 3 cbr 500 ------- 1 1.0 6.0 60 116 - 0.65 1 3 cbr 500 ------- 1 1.0 6.0 60 116 r 0.65 3 4 tcp 1000 ------- 0 0.0 5.0 7 92 + 0.65 4 5 tcp 1000 ------- 0 0.0 5.0 7 92 - 0.65 4 5 tcp 1000 ------- 0 0.0 5.0 7 92 - 0.652 3 4 cbr 500 ------- 1 1.0 6.0 54 107 r 0.654 1 3 cbr 500 ------- 1 1.0 6.0 58 113 + 0.654 3 4 cbr 500 ------- 1 1.0 6.0 58 113 r 0.654 3 4 cbr 500 ------- 1 1.0 6.0 47 96 + 0.654 4 6 cbr 500 ------- 1 1.0 6.0 47 96 - 0.654 4 6 cbr 500 ------- 1 1.0 6.0 47 96 r 0.654 4 7 cbr 1000 ------- 1 2.0 7.0 39 84 r 0.6556 4 5 tcp 1000 ------- 0 0.0 5.0 0 85 + 0.6556 5 4 ack 40 ------- 0 5.0 0.0 0 117 - 0.6556 5 4 ack 40 ------- 0 5.0 0.0 0 117 - 0.656 3 4 cbr 500 ------- 1 1.0 6.0 55 108 r 0.658 3 4 cbr 500 ------- 1 1.0 6.0 48 98 + 0.658 4 6 cbr 500 ------- 1 1.0 6.0 48 98 - 0.658 4 6 cbr 500 ------- 1 1.0 6.0 48 98 v 0.66000000000000003 eval {set sim_annotation {3 Ack_0s}} + 0.66 1 3 cbr 500 ------- 1 1.0 6.0 61 118 - 0.66 1 3 cbr 500 ------- 1 1.0 6.0 61 118 + 0.66 2 3 cbr 1000 ------- 1 2.0 7.0 48 119 - 0.66 2 3 cbr 1000 ------- 1 2.0 7.0 48 119 - 0.66 3 4 cbr 1000 ------- 1 2.0 7.0 45 109 r 0.662 3 4 cbr 500 ------- 1 1.0 6.0 49 99 + 0.662 4 6 cbr 500 ------- 1 1.0 6.0 49 99 - 0.662 4 6 cbr 500 ------- 1 1.0 6.0 49 99 r 0.6636 4 5 tcp 1000 ------- 0 0.0 5.0 5 90 + 0.6636 5 4 ack 40 ------- 0 5.0 0.0 0 120 - 0.6636 5 4 ack 40 ------- 0 5.0 0.0 0 120 r 0.664 1 3 cbr 500 ------- 1 1.0 6.0 59 114 + 0.664 3 4 cbr 500 ------- 1 1.0 6.0 59 114 r 0.668 2 3 cbr 1000 ------- 1 2.0 7.0 47 115 + 0.668 3 4 cbr 1000 ------- 1 2.0 7.0 47 115 - 0.668 3 4 cbr 500 ------- 1 1.0 6.0 56 110 + 0.67 1 3 cbr 500 ------- 1 1.0 6.0 62 121 - 0.67 1 3 cbr 500 ------- 1 1.0 6.0 62 121 r 0.67 3 4 cbr 1000 ------- 1 2.0 7.0 42 100 + 0.67 4 7 cbr 1000 ------- 1 2.0 7.0 42 100 - 0.67 4 7 cbr 1000 ------- 1 2.0 7.0 42 100 r 0.6716 4 5 tcp 1000 ------- 0 0.0 5.0 7 92 + 0.6716 5 4 ack 40 ------- 0 5.0 0.0 0 122 - 0.6716 5 4 ack 40 ------- 0 5.0 0.0 0 122 - 0.672 3 4 cbr 500 ------- 1 1.0 6.0 57 111 r 0.674 1 3 cbr 500 ------- 1 1.0 6.0 60 116 + 0.674 3 4 cbr 500 ------- 1 1.0 6.0 60 116 r 0.674 3 4 cbr 500 ------- 1 1.0 6.0 50 101 + 0.674 4 6 cbr 500 ------- 1 1.0 6.0 50 101 - 0.674 4 6 cbr 500 ------- 1 1.0 6.0 50 101 r 0.675664 5 4 ack 40 ------- 0 5.0 0.0 0 117 + 0.675664 4 3 ack 40 ------- 0 5.0 0.0 0 117 - 0.675664 4 3 ack 40 ------- 0 5.0 0.0 0 117 - 0.676 3 4 cbr 1000 ------- 1 2.0 7.0 46 112 r 0.678 3 4 cbr 500 ------- 1 1.0 6.0 51 102 + 0.678 4 6 cbr 500 ------- 1 1.0 6.0 51 102 r 0.678 4 6 cbr 500 ------- 1 1.0 6.0 47 96 - 0.678 4 6 cbr 500 ------- 1 1.0 6.0 51 102 + 0.68 1 3 cbr 500 ------- 1 1.0 6.0 63 123 - 0.68 1 3 cbr 500 ------- 1 1.0 6.0 63 123 + 0.68 2 3 cbr 1000 ------- 1 2.0 7.0 49 124 - 0.68 2 3 cbr 1000 ------- 1 2.0 7.0 49 124 r 0.682 4 6 cbr 500 ------- 1 1.0 6.0 48 98 r 0.683664 5 4 ack 40 ------- 0 5.0 0.0 0 120 + 0.683664 4 3 ack 40 ------- 0 5.0 0.0 0 120 - 0.683664 4 3 ack 40 ------- 0 5.0 0.0 0 120 r 0.684 1 3 cbr 500 ------- 1 1.0 6.0 61 118 + 0.684 3 4 cbr 500 ------- 1 1.0 6.0 61 118 - 0.684 3 4 cbr 500 ------- 1 1.0 6.0 58 113 r 0.686 3 4 cbr 1000 ------- 1 2.0 7.0 43 103 + 0.686 4 7 cbr 1000 ------- 1 2.0 7.0 43 103 - 0.686 4 7 cbr 1000 ------- 1 2.0 7.0 43 103 r 0.686 4 6 cbr 500 ------- 1 1.0 6.0 49 99 r 0.688 2 3 cbr 1000 ------- 1 2.0 7.0 48 119 + 0.688 3 4 cbr 1000 ------- 1 2.0 7.0 48 119 - 0.688 3 4 cbr 500 ------- 1 1.0 6.0 59 114 + 0.69 1 3 cbr 500 ------- 1 1.0 6.0 64 125 - 0.69 1 3 cbr 500 ------- 1 1.0 6.0 64 125 r 0.69 3 4 cbr 500 ------- 1 1.0 6.0 52 104 + 0.69 4 6 cbr 500 ------- 1 1.0 6.0 52 104 - 0.69 4 6 cbr 500 ------- 1 1.0 6.0 52 104 r 0.691664 5 4 ack 40 ------- 0 5.0 0.0 0 122 + 0.691664 4 3 ack 40 ------- 0 5.0 0.0 0 122 - 0.691664 4 3 ack 40 ------- 0 5.0 0.0 0 122 - 0.692 3 4 cbr 1000 ------- 1 2.0 7.0 47 115 r 0.694 1 3 cbr 500 ------- 1 1.0 6.0 62 121 + 0.694 3 4 cbr 500 ------- 1 1.0 6.0 62 121 r 0.694 3 4 cbr 500 ------- 1 1.0 6.0 53 105 + 0.694 4 6 cbr 500 ------- 1 1.0 6.0 53 105 - 0.694 4 6 cbr 500 ------- 1 1.0 6.0 53 105 r 0.698 4 7 cbr 1000 ------- 1 2.0 7.0 42 100 r 0.698 4 6 cbr 500 ------- 1 1.0 6.0 50 101 + 0.7 1 3 cbr 500 ------- 1 1.0 6.0 65 126 - 0.7 1 3 cbr 500 ------- 1 1.0 6.0 65 126 + 0.7 2 3 cbr 1000 ------- 1 2.0 7.0 50 127 - 0.7 2 3 cbr 1000 ------- 1 2.0 7.0 50 127 - 0.7 3 4 cbr 500 ------- 1 1.0 6.0 60 116 r 0.702 3 4 cbr 1000 ------- 1 2.0 7.0 44 106 + 0.702 4 7 cbr 1000 ------- 1 2.0 7.0 44 106 - 0.702 4 7 cbr 1000 ------- 1 2.0 7.0 44 106 r 0.702 4 6 cbr 500 ------- 1 1.0 6.0 51 102 r 0.704 1 3 cbr 500 ------- 1 1.0 6.0 63 123 + 0.704 3 4 cbr 500 ------- 1 1.0 6.0 63 123 - 0.704 3 4 cbr 500 ------- 1 1.0 6.0 61 118 r 0.706 3 4 cbr 500 ------- 1 1.0 6.0 54 107 + 0.706 4 6 cbr 500 ------- 1 1.0 6.0 54 107 - 0.706 4 6 cbr 500 ------- 1 1.0 6.0 54 107 r 0.708 2 3 cbr 1000 ------- 1 2.0 7.0 49 124 + 0.708 3 4 cbr 1000 ------- 1 2.0 7.0 49 124 - 0.708 3 4 cbr 1000 ------- 1 2.0 7.0 48 119 + 0.71 1 3 cbr 500 ------- 1 1.0 6.0 66 128 - 0.71 1 3 cbr 500 ------- 1 1.0 6.0 66 128 r 0.71 3 4 cbr 500 ------- 1 1.0 6.0 55 108 + 0.71 4 6 cbr 500 ------- 1 1.0 6.0 55 108 - 0.71 4 6 cbr 500 ------- 1 1.0 6.0 55 108 r 0.714 1 3 cbr 500 ------- 1 1.0 6.0 64 125 + 0.714 3 4 cbr 500 ------- 1 1.0 6.0 64 125 r 0.714 4 7 cbr 1000 ------- 1 2.0 7.0 43 103 r 0.714 4 6 cbr 500 ------- 1 1.0 6.0 52 104 - 0.716 3 4 cbr 500 ------- 1 1.0 6.0 62 121 r 0.718 3 4 cbr 1000 ------- 1 2.0 7.0 45 109 + 0.718 4 7 cbr 1000 ------- 1 2.0 7.0 45 109 - 0.718 4 7 cbr 1000 ------- 1 2.0 7.0 45 109 r 0.718 4 6 cbr 500 ------- 1 1.0 6.0 53 105 + 0.72 1 3 cbr 500 ------- 1 1.0 6.0 67 129 - 0.72 1 3 cbr 500 ------- 1 1.0 6.0 67 129 + 0.72 2 3 cbr 1000 ------- 1 2.0 7.0 51 130 - 0.72 2 3 cbr 1000 ------- 1 2.0 7.0 51 130 - 0.72 3 4 cbr 500 ------- 1 1.0 6.0 63 123 r 0.722 3 4 cbr 500 ------- 1 1.0 6.0 56 110 + 0.722 4 6 cbr 500 ------- 1 1.0 6.0 56 110 - 0.722 4 6 cbr 500 ------- 1 1.0 6.0 56 110 r 0.724 1 3 cbr 500 ------- 1 1.0 6.0 65 126 + 0.724 3 4 cbr 500 ------- 1 1.0 6.0 65 126 - 0.724 3 4 cbr 1000 ------- 1 2.0 7.0 49 124 r 0.725984 4 3 ack 40 ------- 0 5.0 0.0 0 117 + 0.725984 3 0 ack 40 ------- 0 5.0 0.0 0 117 - 0.725984 3 0 ack 40 ------- 0 5.0 0.0 0 117 r 0.726 3 4 cbr 500 ------- 1 1.0 6.0 57 111 + 0.726 4 6 cbr 500 ------- 1 1.0 6.0 57 111 - 0.726 4 6 cbr 500 ------- 1 1.0 6.0 57 111 r 0.728 2 3 cbr 1000 ------- 1 2.0 7.0 50 127 + 0.728 3 4 cbr 1000 ------- 1 2.0 7.0 50 127 + 0.73 1 3 cbr 500 ------- 1 1.0 6.0 68 131 - 0.73 1 3 cbr 500 ------- 1 1.0 6.0 68 131 r 0.73 4 7 cbr 1000 ------- 1 2.0 7.0 44 106 r 0.73 4 6 cbr 500 ------- 1 1.0 6.0 54 107 - 0.732 3 4 cbr 500 ------- 1 1.0 6.0 64 125 r 0.733984 4 3 ack 40 ------- 0 5.0 0.0 0 120 + 0.733984 3 0 ack 40 ------- 0 5.0 0.0 0 120 - 0.733984 3 0 ack 40 ------- 0 5.0 0.0 0 120 r 0.734 1 3 cbr 500 ------- 1 1.0 6.0 66 128 + 0.734 3 4 cbr 500 ------- 1 1.0 6.0 66 128 r 0.734 3 4 cbr 1000 ------- 1 2.0 7.0 46 112 + 0.734 4 7 cbr 1000 ------- 1 2.0 7.0 46 112 - 0.734 4 7 cbr 1000 ------- 1 2.0 7.0 46 112 r 0.734 4 6 cbr 500 ------- 1 1.0 6.0 55 108 - 0.736 3 4 cbr 500 ------- 1 1.0 6.0 65 126 r 0.738 3 4 cbr 500 ------- 1 1.0 6.0 58 113 + 0.738 4 6 cbr 500 ------- 1 1.0 6.0 58 113 - 0.738 4 6 cbr 500 ------- 1 1.0 6.0 58 113 + 0.74 1 3 cbr 500 ------- 1 1.0 6.0 69 132 - 0.74 1 3 cbr 500 ------- 1 1.0 6.0 69 132 + 0.74 2 3 cbr 1000 ------- 1 2.0 7.0 52 133 - 0.74 2 3 cbr 1000 ------- 1 2.0 7.0 52 133 - 0.74 3 4 cbr 1000 ------- 1 2.0 7.0 50 127 r 0.741984 4 3 ack 40 ------- 0 5.0 0.0 0 122 + 0.741984 3 0 ack 40 ------- 0 5.0 0.0 0 122 - 0.741984 3 0 ack 40 ------- 0 5.0 0.0 0 122 r 0.742 3 4 cbr 500 ------- 1 1.0 6.0 59 114 + 0.742 4 6 cbr 500 ------- 1 1.0 6.0 59 114 - 0.742 4 6 cbr 500 ------- 1 1.0 6.0 59 114 r 0.744 1 3 cbr 500 ------- 1 1.0 6.0 67 129 + 0.744 3 4 cbr 500 ------- 1 1.0 6.0 67 129 r 0.746 4 7 cbr 1000 ------- 1 2.0 7.0 45 109 r 0.746 4 6 cbr 500 ------- 1 1.0 6.0 56 110 r 0.746048 3 0 ack 40 ------- 0 5.0 0.0 0 117 + 0.746048 0 3 tcp 1000 ------- 0 0.0 5.0 8 134 - 0.746048 0 3 tcp 1000 ------- 0 0.0 5.0 8 134 r 0.748 2 3 cbr 1000 ------- 1 2.0 7.0 51 130 + 0.748 3 4 cbr 1000 ------- 1 2.0 7.0 51 130 - 0.748 3 4 cbr 500 ------- 1 1.0 6.0 66 128 v 0.75 eval {set sim_annotation {Send Packet_8}} + 0.75 1 3 cbr 500 ------- 1 1.0 6.0 70 135 - 0.75 1 3 cbr 500 ------- 1 1.0 6.0 70 135 r 0.75 3 4 cbr 1000 ------- 1 2.0 7.0 47 115 + 0.75 4 7 cbr 1000 ------- 1 2.0 7.0 47 115 - 0.75 4 7 cbr 1000 ------- 1 2.0 7.0 47 115 r 0.75 4 6 cbr 500 ------- 1 1.0 6.0 57 111 - 0.752 3 4 cbr 500 ------- 1 1.0 6.0 67 129 r 0.754 1 3 cbr 500 ------- 1 1.0 6.0 68 131 + 0.754 3 4 cbr 500 ------- 1 1.0 6.0 68 131 r 0.754 3 4 cbr 500 ------- 1 1.0 6.0 60 116 + 0.754 4 6 cbr 500 ------- 1 1.0 6.0 60 116 - 0.754 4 6 cbr 500 ------- 1 1.0 6.0 60 116 r 0.754048 3 0 ack 40 ------- 0 5.0 0.0 0 120 - 0.756 3 4 cbr 1000 ------- 1 2.0 7.0 51 130 r 0.758 3 4 cbr 500 ------- 1 1.0 6.0 61 118 + 0.758 4 6 cbr 500 ------- 1 1.0 6.0 61 118 - 0.758 4 6 cbr 500 ------- 1 1.0 6.0 61 118 + 0.76 1 3 cbr 500 ------- 1 1.0 6.0 71 136 - 0.76 1 3 cbr 500 ------- 1 1.0 6.0 71 136 + 0.76 2 3 cbr 1000 ------- 1 2.0 7.0 53 137 - 0.76 2 3 cbr 1000 ------- 1 2.0 7.0 53 137 r 0.762 4 7 cbr 1000 ------- 1 2.0 7.0 46 112 r 0.762 4 6 cbr 500 ------- 1 1.0 6.0 58 113 r 0.762048 3 0 ack 40 ------- 0 5.0 0.0 0 122 r 0.764 1 3 cbr 500 ------- 1 1.0 6.0 69 132 + 0.764 3 4 cbr 500 ------- 1 1.0 6.0 69 132 - 0.764 3 4 cbr 500 ------- 1 1.0 6.0 68 131 r 0.766 3 4 cbr 1000 ------- 1 2.0 7.0 48 119 + 0.766 4 7 cbr 1000 ------- 1 2.0 7.0 48 119 - 0.766 4 7 cbr 1000 ------- 1 2.0 7.0 48 119 r 0.766 4 6 cbr 500 ------- 1 1.0 6.0 59 114 r 0.767648 0 3 tcp 1000 ------- 0 0.0 5.0 8 134 + 0.767648 3 4 tcp 1000 ------- 0 0.0 5.0 8 134 r 0.768 2 3 cbr 1000 ------- 1 2.0 7.0 52 133 + 0.768 3 4 cbr 1000 ------- 1 2.0 7.0 52 133 - 0.768 3 4 cbr 500 ------- 1 1.0 6.0 69 132 + 0.77 1 3 cbr 500 ------- 1 1.0 6.0 72 138 - 0.77 1 3 cbr 500 ------- 1 1.0 6.0 72 138 r 0.77 3 4 cbr 500 ------- 1 1.0 6.0 62 121 + 0.77 4 6 cbr 500 ------- 1 1.0 6.0 62 121 - 0.77 4 6 cbr 500 ------- 1 1.0 6.0 62 121 - 0.772 3 4 tcp 1000 ------- 0 0.0 5.0 8 134 r 0.774 1 3 cbr 500 ------- 1 1.0 6.0 70 135 + 0.774 3 4 cbr 500 ------- 1 1.0 6.0 70 135 r 0.774 3 4 cbr 500 ------- 1 1.0 6.0 63 123 + 0.774 4 6 cbr 500 ------- 1 1.0 6.0 63 123 - 0.774 4 6 cbr 500 ------- 1 1.0 6.0 63 123 r 0.778 4 7 cbr 1000 ------- 1 2.0 7.0 47 115 r 0.778 4 6 cbr 500 ------- 1 1.0 6.0 60 116 + 0.78 1 3 cbr 500 ------- 1 1.0 6.0 73 139 - 0.78 1 3 cbr 500 ------- 1 1.0 6.0 73 139 + 0.78 2 3 cbr 1000 ------- 1 2.0 7.0 54 140 - 0.78 2 3 cbr 1000 ------- 1 2.0 7.0 54 140 - 0.78 3 4 cbr 1000 ------- 1 2.0 7.0 52 133 r 0.782 3 4 cbr 1000 ------- 1 2.0 7.0 49 124 + 0.782 4 7 cbr 1000 ------- 1 2.0 7.0 49 124 - 0.782 4 7 cbr 1000 ------- 1 2.0 7.0 49 124 r 0.782 4 6 cbr 500 ------- 1 1.0 6.0 61 118 r 0.784 1 3 cbr 500 ------- 1 1.0 6.0 71 136 + 0.784 3 4 cbr 500 ------- 1 1.0 6.0 71 136 r 0.786 3 4 cbr 500 ------- 1 1.0 6.0 64 125 + 0.786 4 6 cbr 500 ------- 1 1.0 6.0 64 125 - 0.786 4 6 cbr 500 ------- 1 1.0 6.0 64 125 r 0.788 2 3 cbr 1000 ------- 1 2.0 7.0 53 137 + 0.788 3 4 cbr 1000 ------- 1 2.0 7.0 53 137 - 0.788 3 4 cbr 500 ------- 1 1.0 6.0 70 135 + 0.79 1 3 cbr 500 ------- 1 1.0 6.0 74 141 - 0.79 1 3 cbr 500 ------- 1 1.0 6.0 74 141 r 0.79 3 4 cbr 500 ------- 1 1.0 6.0 65 126 + 0.79 4 6 cbr 500 ------- 1 1.0 6.0 65 126 - 0.79 4 6 cbr 500 ------- 1 1.0 6.0 65 126 - 0.792 3 4 cbr 500 ------- 1 1.0 6.0 71 136 r 0.794 1 3 cbr 500 ------- 1 1.0 6.0 72 138 + 0.794 3 4 cbr 500 ------- 1 1.0 6.0 72 138 r 0.794 4 7 cbr 1000 ------- 1 2.0 7.0 48 119 r 0.794 4 6 cbr 500 ------- 1 1.0 6.0 62 121 - 0.796 3 4 cbr 1000 ------- 1 2.0 7.0 53 137 r 0.798 3 4 cbr 1000 ------- 1 2.0 7.0 50 127 + 0.798 4 7 cbr 1000 ------- 1 2.0 7.0 50 127 - 0.798 4 7 cbr 1000 ------- 1 2.0 7.0 50 127 r 0.798 4 6 cbr 500 ------- 1 1.0 6.0 63 123 + 0.8 1 3 cbr 500 ------- 1 1.0 6.0 75 142 - 0.8 1 3 cbr 500 ------- 1 1.0 6.0 75 142 + 0.8 2 3 cbr 1000 ------- 1 2.0 7.0 55 143 - 0.8 2 3 cbr 1000 ------- 1 2.0 7.0 55 143 r 0.802 3 4 cbr 500 ------- 1 1.0 6.0 66 128 + 0.802 4 6 cbr 500 ------- 1 1.0 6.0 66 128 - 0.802 4 6 cbr 500 ------- 1 1.0 6.0 66 128 r 0.804 1 3 cbr 500 ------- 1 1.0 6.0 73 139 + 0.804 3 4 cbr 500 ------- 1 1.0 6.0 73 139 - 0.804 3 4 cbr 500 ------- 1 1.0 6.0 72 138 r 0.806 3 4 cbr 500 ------- 1 1.0 6.0 67 129 + 0.806 4 6 cbr 500 ------- 1 1.0 6.0 67 129 - 0.806 4 6 cbr 500 ------- 1 1.0 6.0 67 129 r 0.808 2 3 cbr 1000 ------- 1 2.0 7.0 54 140 + 0.808 3 4 cbr 1000 ------- 1 2.0 7.0 54 140 - 0.808 3 4 cbr 500 ------- 1 1.0 6.0 73 139 + 0.81 1 3 cbr 500 ------- 1 1.0 6.0 76 144 - 0.81 1 3 cbr 500 ------- 1 1.0 6.0 76 144 r 0.81 4 7 cbr 1000 ------- 1 2.0 7.0 49 124 r 0.81 4 6 cbr 500 ------- 1 1.0 6.0 64 125 - 0.812 3 4 cbr 1000 ------- 1 2.0 7.0 54 140 r 0.814 1 3 cbr 500 ------- 1 1.0 6.0 74 141 + 0.814 3 4 cbr 500 ------- 1 1.0 6.0 74 141 r 0.814 3 4 cbr 1000 ------- 1 2.0 7.0 51 130 + 0.814 4 7 cbr 1000 ------- 1 2.0 7.0 51 130 - 0.814 4 7 cbr 1000 ------- 1 2.0 7.0 51 130 r 0.814 4 6 cbr 500 ------- 1 1.0 6.0 65 126 r 0.818 3 4 cbr 500 ------- 1 1.0 6.0 68 131 + 0.818 4 6 cbr 500 ------- 1 1.0 6.0 68 131 - 0.818 4 6 cbr 500 ------- 1 1.0 6.0 68 131 + 0.82 1 3 cbr 500 ------- 1 1.0 6.0 77 145 - 0.82 1 3 cbr 500 ------- 1 1.0 6.0 77 145 + 0.82 2 3 cbr 1000 ------- 1 2.0 7.0 56 146 - 0.82 2 3 cbr 1000 ------- 1 2.0 7.0 56 146 - 0.82 3 4 cbr 500 ------- 1 1.0 6.0 74 141 r 0.822 3 4 cbr 500 ------- 1 1.0 6.0 69 132 + 0.822 4 6 cbr 500 ------- 1 1.0 6.0 69 132 - 0.822 4 6 cbr 500 ------- 1 1.0 6.0 69 132 r 0.824 1 3 cbr 500 ------- 1 1.0 6.0 75 142 + 0.824 3 4 cbr 500 ------- 1 1.0 6.0 75 142 - 0.824 3 4 cbr 500 ------- 1 1.0 6.0 75 142 r 0.826 4 7 cbr 1000 ------- 1 2.0 7.0 50 127 r 0.826 4 6 cbr 500 ------- 1 1.0 6.0 66 128 r 0.828 2 3 cbr 1000 ------- 1 2.0 7.0 55 143 + 0.828 3 4 cbr 1000 ------- 1 2.0 7.0 55 143 - 0.828 3 4 cbr 1000 ------- 1 2.0 7.0 55 143 + 0.83 1 3 cbr 500 ------- 1 1.0 6.0 78 147 - 0.83 1 3 cbr 500 ------- 1 1.0 6.0 78 147 r 0.83 3 4 tcp 1000 ------- 0 0.0 5.0 8 134 + 0.83 4 5 tcp 1000 ------- 0 0.0 5.0 8 134 - 0.83 4 5 tcp 1000 ------- 0 0.0 5.0 8 134 r 0.83 4 6 cbr 500 ------- 1 1.0 6.0 67 129 r 0.834 1 3 cbr 500 ------- 1 1.0 6.0 76 144 + 0.834 3 4 cbr 500 ------- 1 1.0 6.0 76 144 - 0.836 3 4 cbr 500 ------- 1 1.0 6.0 76 144 r 0.838 3 4 cbr 1000 ------- 1 2.0 7.0 52 133 + 0.838 4 7 cbr 1000 ------- 1 2.0 7.0 52 133 - 0.838 4 7 cbr 1000 ------- 1 2.0 7.0 52 133 + 0.84 1 3 cbr 500 ------- 1 1.0 6.0 79 148 - 0.84 1 3 cbr 500 ------- 1 1.0 6.0 79 148 + 0.84 2 3 cbr 1000 ------- 1 2.0 7.0 57 149 - 0.84 2 3 cbr 1000 ------- 1 2.0 7.0 57 149 r 0.842 3 4 cbr 500 ------- 1 1.0 6.0 70 135 + 0.842 4 6 cbr 500 ------- 1 1.0 6.0 70 135 - 0.842 4 6 cbr 500 ------- 1 1.0 6.0 70 135 r 0.842 4 7 cbr 1000 ------- 1 2.0 7.0 51 130 r 0.842 4 6 cbr 500 ------- 1 1.0 6.0 68 131 r 0.844 1 3 cbr 500 ------- 1 1.0 6.0 77 145 + 0.844 3 4 cbr 500 ------- 1 1.0 6.0 77 145 - 0.844 3 4 cbr 500 ------- 1 1.0 6.0 77 145 r 0.846 3 4 cbr 500 ------- 1 1.0 6.0 71 136 + 0.846 4 6 cbr 500 ------- 1 1.0 6.0 71 136 r 0.846 4 6 cbr 500 ------- 1 1.0 6.0 69 132 - 0.846 4 6 cbr 500 ------- 1 1.0 6.0 71 136 r 0.848 2 3 cbr 1000 ------- 1 2.0 7.0 56 146 + 0.848 3 4 cbr 1000 ------- 1 2.0 7.0 56 146 - 0.848 3 4 cbr 1000 ------- 1 2.0 7.0 56 146 v 0.84999999999999998 eval {set sim_annotation {Ack_0}} + 0.85 1 3 cbr 500 ------- 1 1.0 6.0 80 150 - 0.85 1 3 cbr 500 ------- 1 1.0 6.0 80 150 r 0.8516 4 5 tcp 1000 ------- 0 0.0 5.0 8 134 + 0.8516 5 4 ack 40 ------- 0 5.0 0.0 0 151 - 0.8516 5 4 ack 40 ------- 0 5.0 0.0 0 151 r 0.854 1 3 cbr 500 ------- 1 1.0 6.0 78 147 + 0.854 3 4 cbr 500 ------- 1 1.0 6.0 78 147 r 0.854 3 4 cbr 1000 ------- 1 2.0 7.0 53 137 + 0.854 4 7 cbr 1000 ------- 1 2.0 7.0 53 137 - 0.854 4 7 cbr 1000 ------- 1 2.0 7.0 53 137 - 0.856 3 4 cbr 500 ------- 1 1.0 6.0 78 147 r 0.858 3 4 cbr 500 ------- 1 1.0 6.0 72 138 + 0.858 4 6 cbr 500 ------- 1 1.0 6.0 72 138 - 0.858 4 6 cbr 500 ------- 1 1.0 6.0 72 138 + 0.86 1 3 cbr 500 ------- 1 1.0 6.0 81 152 - 0.86 1 3 cbr 500 ------- 1 1.0 6.0 81 152 + 0.86 2 3 cbr 1000 ------- 1 2.0 7.0 58 153 - 0.86 2 3 cbr 1000 ------- 1 2.0 7.0 58 153 r 0.862 3 4 cbr 500 ------- 1 1.0 6.0 73 139 + 0.862 4 6 cbr 500 ------- 1 1.0 6.0 73 139 - 0.862 4 6 cbr 500 ------- 1 1.0 6.0 73 139 r 0.864 1 3 cbr 500 ------- 1 1.0 6.0 79 148 + 0.864 3 4 cbr 500 ------- 1 1.0 6.0 79 148 - 0.864 3 4 cbr 500 ------- 1 1.0 6.0 79 148 r 0.866 4 7 cbr 1000 ------- 1 2.0 7.0 52 133 r 0.866 4 6 cbr 500 ------- 1 1.0 6.0 70 135 r 0.868 2 3 cbr 1000 ------- 1 2.0 7.0 57 149 + 0.868 3 4 cbr 1000 ------- 1 2.0 7.0 57 149 - 0.868 3 4 cbr 1000 ------- 1 2.0 7.0 57 149 + 0.87 1 3 cbr 500 ------- 1 1.0 6.0 82 154 - 0.87 1 3 cbr 500 ------- 1 1.0 6.0 82 154 r 0.87 3 4 cbr 1000 ------- 1 2.0 7.0 54 140 + 0.87 4 7 cbr 1000 ------- 1 2.0 7.0 54 140 - 0.87 4 7 cbr 1000 ------- 1 2.0 7.0 54 140 r 0.87 4 6 cbr 500 ------- 1 1.0 6.0 71 136 r 0.871664 5 4 ack 40 ------- 0 5.0 0.0 0 151 + 0.871664 4 3 ack 40 ------- 0 5.0 0.0 0 151 - 0.871664 4 3 ack 40 ------- 0 5.0 0.0 0 151 r 0.874 1 3 cbr 500 ------- 1 1.0 6.0 80 150 + 0.874 3 4 cbr 500 ------- 1 1.0 6.0 80 150 r 0.874 3 4 cbr 500 ------- 1 1.0 6.0 74 141 + 0.874 4 6 cbr 500 ------- 1 1.0 6.0 74 141 - 0.874 4 6 cbr 500 ------- 1 1.0 6.0 74 141 - 0.876 3 4 cbr 500 ------- 1 1.0 6.0 80 150 r 0.878 3 4 cbr 500 ------- 1 1.0 6.0 75 142 + 0.878 4 6 cbr 500 ------- 1 1.0 6.0 75 142 - 0.878 4 6 cbr 500 ------- 1 1.0 6.0 75 142 + 0.88 1 3 cbr 500 ------- 1 1.0 6.0 83 155 - 0.88 1 3 cbr 500 ------- 1 1.0 6.0 83 155 + 0.88 2 3 cbr 1000 ------- 1 2.0 7.0 59 156 - 0.88 2 3 cbr 1000 ------- 1 2.0 7.0 59 156 r 0.882 4 7 cbr 1000 ------- 1 2.0 7.0 53 137 r 0.882 4 6 cbr 500 ------- 1 1.0 6.0 72 138 r 0.884 1 3 cbr 500 ------- 1 1.0 6.0 81 152 + 0.884 3 4 cbr 500 ------- 1 1.0 6.0 81 152 - 0.884 3 4 cbr 500 ------- 1 1.0 6.0 81 152 r 0.886 3 4 cbr 1000 ------- 1 2.0 7.0 55 143 + 0.886 4 7 cbr 1000 ------- 1 2.0 7.0 55 143 - 0.886 4 7 cbr 1000 ------- 1 2.0 7.0 55 143 r 0.886 4 6 cbr 500 ------- 1 1.0 6.0 73 139 r 0.888 2 3 cbr 1000 ------- 1 2.0 7.0 58 153 + 0.888 3 4 cbr 1000 ------- 1 2.0 7.0 58 153 - 0.888 3 4 cbr 1000 ------- 1 2.0 7.0 58 153 + 0.89 1 3 cbr 500 ------- 1 1.0 6.0 84 157 - 0.89 1 3 cbr 500 ------- 1 1.0 6.0 84 157 r 0.89 3 4 cbr 500 ------- 1 1.0 6.0 76 144 + 0.89 4 6 cbr 500 ------- 1 1.0 6.0 76 144 - 0.89 4 6 cbr 500 ------- 1 1.0 6.0 76 144 r 0.894 1 3 cbr 500 ------- 1 1.0 6.0 82 154 + 0.894 3 4 cbr 500 ------- 1 1.0 6.0 82 154 - 0.896 3 4 cbr 500 ------- 1 1.0 6.0 82 154 r 0.898 3 4 cbr 500 ------- 1 1.0 6.0 77 145 + 0.898 4 6 cbr 500 ------- 1 1.0 6.0 77 145 - 0.898 4 6 cbr 500 ------- 1 1.0 6.0 77 145 r 0.898 4 7 cbr 1000 ------- 1 2.0 7.0 54 140 r 0.898 4 6 cbr 500 ------- 1 1.0 6.0 74 141 + 0.9 1 3 cbr 500 ------- 1 1.0 6.0 85 158 - 0.9 1 3 cbr 500 ------- 1 1.0 6.0 85 158 + 0.9 2 3 cbr 1000 ------- 1 2.0 7.0 60 159 - 0.9 2 3 cbr 1000 ------- 1 2.0 7.0 60 159 r 0.902 4 6 cbr 500 ------- 1 1.0 6.0 75 142 r 0.904 1 3 cbr 500 ------- 1 1.0 6.0 83 155 + 0.904 3 4 cbr 500 ------- 1 1.0 6.0 83 155 - 0.904 3 4 cbr 500 ------- 1 1.0 6.0 83 155 r 0.906 3 4 cbr 1000 ------- 1 2.0 7.0 56 146 + 0.906 4 7 cbr 1000 ------- 1 2.0 7.0 56 146 - 0.906 4 7 cbr 1000 ------- 1 2.0 7.0 56 146 r 0.908 2 3 cbr 1000 ------- 1 2.0 7.0 59 156 + 0.908 3 4 cbr 1000 ------- 1 2.0 7.0 59 156 - 0.908 3 4 cbr 1000 ------- 1 2.0 7.0 59 156 + 0.91 1 3 cbr 500 ------- 1 1.0 6.0 86 160 - 0.91 1 3 cbr 500 ------- 1 1.0 6.0 86 160 r 0.91 3 4 cbr 500 ------- 1 1.0 6.0 78 147 + 0.91 4 6 cbr 500 ------- 1 1.0 6.0 78 147 - 0.91 4 6 cbr 500 ------- 1 1.0 6.0 78 147 r 0.914 1 3 cbr 500 ------- 1 1.0 6.0 84 157 + 0.914 3 4 cbr 500 ------- 1 1.0 6.0 84 157 r 0.914 4 7 cbr 1000 ------- 1 2.0 7.0 55 143 r 0.914 4 6 cbr 500 ------- 1 1.0 6.0 76 144 - 0.916 3 4 cbr 500 ------- 1 1.0 6.0 84 157 r 0.918 3 4 cbr 500 ------- 1 1.0 6.0 79 148 + 0.918 4 6 cbr 500 ------- 1 1.0 6.0 79 148 - 0.918 4 6 cbr 500 ------- 1 1.0 6.0 79 148 + 0.92 1 3 cbr 500 ------- 1 1.0 6.0 87 161 - 0.92 1 3 cbr 500 ------- 1 1.0 6.0 87 161 + 0.92 2 3 cbr 1000 ------- 1 2.0 7.0 61 162 - 0.92 2 3 cbr 1000 ------- 1 2.0 7.0 61 162 r 0.921984 4 3 ack 40 ------- 0 5.0 0.0 0 151 + 0.921984 3 0 ack 40 ------- 0 5.0 0.0 0 151 - 0.921984 3 0 ack 40 ------- 0 5.0 0.0 0 151 r 0.922 4 6 cbr 500 ------- 1 1.0 6.0 77 145 r 0.924 1 3 cbr 500 ------- 1 1.0 6.0 85 158 + 0.924 3 4 cbr 500 ------- 1 1.0 6.0 85 158 - 0.924 3 4 cbr 500 ------- 1 1.0 6.0 85 158 r 0.926 3 4 cbr 1000 ------- 1 2.0 7.0 57 149 + 0.926 4 7 cbr 1000 ------- 1 2.0 7.0 57 149 - 0.926 4 7 cbr 1000 ------- 1 2.0 7.0 57 149 r 0.928 2 3 cbr 1000 ------- 1 2.0 7.0 60 159 + 0.928 3 4 cbr 1000 ------- 1 2.0 7.0 60 159 - 0.928 3 4 cbr 1000 ------- 1 2.0 7.0 60 159 + 0.93 1 3 cbr 500 ------- 1 1.0 6.0 88 163 - 0.93 1 3 cbr 500 ------- 1 1.0 6.0 88 163 r 0.93 3 4 cbr 500 ------- 1 1.0 6.0 80 150 + 0.93 4 6 cbr 500 ------- 1 1.0 6.0 80 150 - 0.93 4 6 cbr 500 ------- 1 1.0 6.0 80 150 r 0.934 1 3 cbr 500 ------- 1 1.0 6.0 86 160 + 0.934 3 4 cbr 500 ------- 1 1.0 6.0 86 160 r 0.934 4 7 cbr 1000 ------- 1 2.0 7.0 56 146 r 0.934 4 6 cbr 500 ------- 1 1.0 6.0 78 147 - 0.936 3 4 cbr 500 ------- 1 1.0 6.0 86 160 r 0.938 3 4 cbr 500 ------- 1 1.0 6.0 81 152 + 0.938 4 6 cbr 500 ------- 1 1.0 6.0 81 152 - 0.938 4 6 cbr 500 ------- 1 1.0 6.0 81 152 + 0.94 1 3 cbr 500 ------- 1 1.0 6.0 89 164 - 0.94 1 3 cbr 500 ------- 1 1.0 6.0 89 164 + 0.94 2 3 cbr 1000 ------- 1 2.0 7.0 62 165 - 0.94 2 3 cbr 1000 ------- 1 2.0 7.0 62 165 r 0.942 4 6 cbr 500 ------- 1 1.0 6.0 79 148 r 0.942048 3 0 ack 40 ------- 0 5.0 0.0 0 151 + 0.942048 0 3 tcp 1000 ------- 0 0.0 5.0 1 166 - 0.942048 0 3 tcp 1000 ------- 0 0.0 5.0 1 166 + 0.942048 0 3 tcp 1000 ------- 0 0.0 5.0 2 167 + 0.942048 0 3 tcp 1000 ------- 0 0.0 5.0 3 168 + 0.942048 0 3 tcp 1000 ------- 0 0.0 5.0 4 169 + 0.942048 0 3 tcp 1000 ------- 0 0.0 5.0 5 170 + 0.942048 0 3 tcp 1000 ------- 0 0.0 5.0 6 171 + 0.942048 0 3 tcp 1000 ------- 0 0.0 5.0 7 172 + 0.942048 0 3 tcp 1000 ------- 0 0.0 5.0 8 173 - 0.943648 0 3 tcp 1000 ------- 0 0.0 5.0 2 167 r 0.944 1 3 cbr 500 ------- 1 1.0 6.0 87 161 + 0.944 3 4 cbr 500 ------- 1 1.0 6.0 87 161 - 0.944 3 4 cbr 500 ------- 1 1.0 6.0 87 161 - 0.945248 0 3 tcp 1000 ------- 0 0.0 5.0 3 168 r 0.946 3 4 cbr 1000 ------- 1 2.0 7.0 58 153 + 0.946 4 7 cbr 1000 ------- 1 2.0 7.0 58 153 - 0.946 4 7 cbr 1000 ------- 1 2.0 7.0 58 153 - 0.946848 0 3 tcp 1000 ------- 0 0.0 5.0 4 169 r 0.948 2 3 cbr 1000 ------- 1 2.0 7.0 61 162 + 0.948 3 4 cbr 1000 ------- 1 2.0 7.0 61 162 - 0.948 3 4 cbr 1000 ------- 1 2.0 7.0 61 162 - 0.948448 0 3 tcp 1000 ------- 0 0.0 5.0 5 170 v 0.94999999999999996 eval {set sim_annotation {Send Packet_1 to 8}} + 0.95 1 3 cbr 500 ------- 1 1.0 6.0 90 174 - 0.95 1 3 cbr 500 ------- 1 1.0 6.0 90 174 r 0.95 3 4 cbr 500 ------- 1 1.0 6.0 82 154 + 0.95 4 6 cbr 500 ------- 1 1.0 6.0 82 154 - 0.95 4 6 cbr 500 ------- 1 1.0 6.0 82 154 - 0.950048 0 3 tcp 1000 ------- 0 0.0 5.0 6 171 - 0.951648 0 3 tcp 1000 ------- 0 0.0 5.0 7 172 - 0.953248 0 3 tcp 1000 ------- 0 0.0 5.0 8 173 r 0.954 1 3 cbr 500 ------- 1 1.0 6.0 88 163 + 0.954 3 4 cbr 500 ------- 1 1.0 6.0 88 163 r 0.954 4 7 cbr 1000 ------- 1 2.0 7.0 57 149 r 0.954 4 6 cbr 500 ------- 1 1.0 6.0 80 150 - 0.956 3 4 cbr 500 ------- 1 1.0 6.0 88 163 r 0.958 3 4 cbr 500 ------- 1 1.0 6.0 83 155 + 0.958 4 6 cbr 500 ------- 1 1.0 6.0 83 155 - 0.958 4 6 cbr 500 ------- 1 1.0 6.0 83 155 + 0.96 1 3 cbr 500 ------- 1 1.0 6.0 91 175 - 0.96 1 3 cbr 500 ------- 1 1.0 6.0 91 175 + 0.96 2 3 cbr 1000 ------- 1 2.0 7.0 63 176 - 0.96 2 3 cbr 1000 ------- 1 2.0 7.0 63 176 r 0.962 4 6 cbr 500 ------- 1 1.0 6.0 81 152 r 0.963648 0 3 tcp 1000 ------- 0 0.0 5.0 1 166 + 0.963648 3 4 tcp 1000 ------- 0 0.0 5.0 1 166 - 0.963648 3 4 tcp 1000 ------- 0 0.0 5.0 1 166 r 0.964 1 3 cbr 500 ------- 1 1.0 6.0 89 164 + 0.964 3 4 cbr 500 ------- 1 1.0 6.0 89 164 r 0.965248 0 3 tcp 1000 ------- 0 0.0 5.0 2 167 + 0.965248 3 4 tcp 1000 ------- 0 0.0 5.0 2 167 r 0.966 3 4 cbr 1000 ------- 1 2.0 7.0 59 156 + 0.966 4 7 cbr 1000 ------- 1 2.0 7.0 59 156 - 0.966 4 7 cbr 1000 ------- 1 2.0 7.0 59 156 r 0.966848 0 3 tcp 1000 ------- 0 0.0 5.0 3 168 + 0.966848 3 4 tcp 1000 ------- 0 0.0 5.0 3 168 r 0.968 2 3 cbr 1000 ------- 1 2.0 7.0 62 165 + 0.968 3 4 cbr 1000 ------- 1 2.0 7.0 62 165 r 0.968448 0 3 tcp 1000 ------- 0 0.0 5.0 4 169 + 0.968448 3 4 tcp 1000 ------- 0 0.0 5.0 4 169 + 0.97 1 3 cbr 500 ------- 1 1.0 6.0 92 177 - 0.97 1 3 cbr 500 ------- 1 1.0 6.0 92 177 r 0.97 3 4 cbr 500 ------- 1 1.0 6.0 84 157 + 0.97 4 6 cbr 500 ------- 1 1.0 6.0 84 157 - 0.97 4 6 cbr 500 ------- 1 1.0 6.0 84 157 r 0.970048 0 3 tcp 1000 ------- 0 0.0 5.0 5 170 + 0.970048 3 4 tcp 1000 ------- 0 0.0 5.0 5 170 - 0.971648 3 4 cbr 500 ------- 1 1.0 6.0 89 164 r 0.971648 0 3 tcp 1000 ------- 0 0.0 5.0 6 171 + 0.971648 3 4 tcp 1000 ------- 0 0.0 5.0 6 171 r 0.973248 0 3 tcp 1000 ------- 0 0.0 5.0 7 172 + 0.973248 3 4 tcp 1000 ------- 0 0.0 5.0 7 172 r 0.974 1 3 cbr 500 ------- 1 1.0 6.0 90 174 + 0.974 3 4 cbr 500 ------- 1 1.0 6.0 90 174 r 0.974 4 7 cbr 1000 ------- 1 2.0 7.0 58 153 r 0.974 4 6 cbr 500 ------- 1 1.0 6.0 82 154 r 0.974848 0 3 tcp 1000 ------- 0 0.0 5.0 8 173 + 0.974848 3 4 tcp 1000 ------- 0 0.0 5.0 8 173 - 0.975648 3 4 tcp 1000 ------- 0 0.0 5.0 2 167 r 0.978 3 4 cbr 500 ------- 1 1.0 6.0 85 158 + 0.978 4 6 cbr 500 ------- 1 1.0 6.0 85 158 - 0.978 4 6 cbr 500 ------- 1 1.0 6.0 85 158 + 0.98 1 3 cbr 500 ------- 1 1.0 6.0 93 178 - 0.98 1 3 cbr 500 ------- 1 1.0 6.0 93 178 + 0.98 2 3 cbr 1000 ------- 1 2.0 7.0 64 179 - 0.98 2 3 cbr 1000 ------- 1 2.0 7.0 64 179 r 0.982 4 6 cbr 500 ------- 1 1.0 6.0 83 155 - 0.983648 3 4 tcp 1000 ------- 0 0.0 5.0 3 168 r 0.984 1 3 cbr 500 ------- 1 1.0 6.0 91 175 + 0.984 3 4 cbr 500 ------- 1 1.0 6.0 91 175 r 0.986 3 4 cbr 1000 ------- 1 2.0 7.0 60 159 + 0.986 4 7 cbr 1000 ------- 1 2.0 7.0 60 159 - 0.986 4 7 cbr 1000 ------- 1 2.0 7.0 60 159 r 0.988 2 3 cbr 1000 ------- 1 2.0 7.0 63 176 + 0.988 3 4 cbr 1000 ------- 1 2.0 7.0 63 176 + 0.99 1 3 cbr 500 ------- 1 1.0 6.0 94 180 - 0.99 1 3 cbr 500 ------- 1 1.0 6.0 94 180 r 0.99 3 4 cbr 500 ------- 1 1.0 6.0 86 160 + 0.99 4 6 cbr 500 ------- 1 1.0 6.0 86 160 - 0.99 4 6 cbr 500 ------- 1 1.0 6.0 86 160 - 0.991648 3 4 cbr 1000 ------- 1 2.0 7.0 62 165 r 0.994 1 3 cbr 500 ------- 1 1.0 6.0 92 177 + 0.994 3 4 cbr 500 ------- 1 1.0 6.0 92 177 r 0.994 4 7 cbr 1000 ------- 1 2.0 7.0 59 156 r 0.994 4 6 cbr 500 ------- 1 1.0 6.0 84 157 r 0.998 3 4 cbr 500 ------- 1 1.0 6.0 87 161 + 0.998 4 6 cbr 500 ------- 1 1.0 6.0 87 161 - 0.998 4 6 cbr 500 ------- 1 1.0 6.0 87 161 - 0.999648 3 4 tcp 1000 ------- 0 0.0 5.0 4 169 + 1 2 3 cbr 1000 ------- 1 2.0 7.0 65 181 - 1 2 3 cbr 1000 ------- 1 2.0 7.0 65 181 + 1 1 3 cbr 500 ------- 1 1.0 6.0 95 182 - 1 1 3 cbr 500 ------- 1 1.0 6.0 95 182 r 1.002 4 6 cbr 500 ------- 1 1.0 6.0 85 158 r 1.004 1 3 cbr 500 ------- 1 1.0 6.0 93 178 + 1.004 3 4 cbr 500 ------- 1 1.0 6.0 93 178 r 1.006 3 4 cbr 1000 ------- 1 2.0 7.0 61 162 + 1.006 4 7 cbr 1000 ------- 1 2.0 7.0 61 162 - 1.006 4 7 cbr 1000 ------- 1 2.0 7.0 61 162 - 1.00765 3 4 tcp 1000 ------- 0 0.0 5.0 5 170 r 1.008 2 3 cbr 1000 ------- 1 2.0 7.0 64 179 + 1.008 3 4 cbr 1000 ------- 1 2.0 7.0 64 179 r 1.01 3 4 cbr 500 ------- 1 1.0 6.0 88 163 + 1.01 4 6 cbr 500 ------- 1 1.0 6.0 88 163 - 1.01 4 6 cbr 500 ------- 1 1.0 6.0 88 163 + 1.01 1 3 cbr 500 ------- 1 1.0 6.0 96 183 - 1.01 1 3 cbr 500 ------- 1 1.0 6.0 96 183 r 1.014 4 7 cbr 1000 ------- 1 2.0 7.0 60 159 r 1.014 1 3 cbr 500 ------- 1 1.0 6.0 94 180 + 1.014 3 4 cbr 500 ------- 1 1.0 6.0 94 180 d 1.014 3 4 cbr 500 ------- 1 1.0 6.0 94 180 r 1.014 4 6 cbr 500 ------- 1 1.0 6.0 86 160 - 1.01565 3 4 tcp 1000 ------- 0 0.0 5.0 6 171 + 1.02 2 3 cbr 1000 ------- 1 2.0 7.0 66 184 - 1.02 2 3 cbr 1000 ------- 1 2.0 7.0 66 184 + 1.02 1 3 cbr 500 ------- 1 1.0 6.0 97 185 - 1.02 1 3 cbr 500 ------- 1 1.0 6.0 97 185 r 1.02165 3 4 tcp 1000 ------- 0 0.0 5.0 1 166 + 1.02165 4 5 tcp 1000 ------- 0 0.0 5.0 1 166 - 1.02165 4 5 tcp 1000 ------- 0 0.0 5.0 1 166 r 1.022 4 6 cbr 500 ------- 1 1.0 6.0 87 161 - 1.02365 3 4 tcp 1000 ------- 0 0.0 5.0 7 172 r 1.024 1 3 cbr 500 ------- 1 1.0 6.0 95 182 + 1.024 3 4 cbr 500 ------- 1 1.0 6.0 95 182 r 1.02565 3 4 cbr 500 ------- 1 1.0 6.0 89 164 + 1.02565 4 6 cbr 500 ------- 1 1.0 6.0 89 164 - 1.02565 4 6 cbr 500 ------- 1 1.0 6.0 89 164 r 1.028 2 3 cbr 1000 ------- 1 2.0 7.0 65 181 + 1.028 3 4 cbr 1000 ------- 1 2.0 7.0 65 181 + 1.03 1 3 cbr 500 ------- 1 1.0 6.0 98 186 - 1.03 1 3 cbr 500 ------- 1 1.0 6.0 98 186 - 1.03165 3 4 cbr 500 ------- 1 1.0 6.0 90 174 r 1.03365 3 4 tcp 1000 ------- 0 0.0 5.0 2 167 + 1.03365 4 5 tcp 1000 ------- 0 0.0 5.0 2 167 - 1.03365 4 5 tcp 1000 ------- 0 0.0 5.0 2 167 r 1.034 4 7 cbr 1000 ------- 1 2.0 7.0 61 162 r 1.034 4 6 cbr 500 ------- 1 1.0 6.0 88 163 r 1.034 1 3 cbr 500 ------- 1 1.0 6.0 96 183 + 1.034 3 4 cbr 500 ------- 1 1.0 6.0 96 183 - 1.03565 3 4 tcp 1000 ------- 0 0.0 5.0 8 173 v 1.04 eval {set sim_annotation {Ack_1 to 8}} + 1.04 2 3 cbr 1000 ------- 1 2.0 7.0 67 187 - 1.04 2 3 cbr 1000 ------- 1 2.0 7.0 67 187 + 1.04 1 3 cbr 500 ------- 1 1.0 6.0 99 188 - 1.04 1 3 cbr 500 ------- 1 1.0 6.0 99 188 r 1.04165 3 4 tcp 1000 ------- 0 0.0 5.0 3 168 + 1.04165 4 5 tcp 1000 ------- 0 0.0 5.0 3 168 - 1.04165 4 5 tcp 1000 ------- 0 0.0 5.0 3 168 r 1.04325 4 5 tcp 1000 ------- 0 0.0 5.0 1 166 + 1.04325 5 4 ack 40 ------- 0 5.0 0.0 1 189 - 1.04325 5 4 ack 40 ------- 0 5.0 0.0 1 189 - 1.04365 3 4 cbr 500 ------- 1 1.0 6.0 91 175 r 1.044 1 3 cbr 500 ------- 1 1.0 6.0 97 185 + 1.044 3 4 cbr 500 ------- 1 1.0 6.0 97 185 - 1.04765 3 4 cbr 1000 ------- 1 2.0 7.0 63 176 r 1.048 2 3 cbr 1000 ------- 1 2.0 7.0 66 184 + 1.048 3 4 cbr 1000 ------- 1 2.0 7.0 66 184 r 1.04965 3 4 cbr 1000 ------- 1 2.0 7.0 62 165 + 1.04965 4 7 cbr 1000 ------- 1 2.0 7.0 62 165 - 1.04965 4 7 cbr 1000 ------- 1 2.0 7.0 62 165 r 1.04965 4 6 cbr 500 ------- 1 1.0 6.0 89 164 + 1.05 1 3 cbr 500 ------- 1 1.0 6.0 100 190 - 1.05 1 3 cbr 500 ------- 1 1.0 6.0 100 190 r 1.054 1 3 cbr 500 ------- 1 1.0 6.0 98 186 + 1.054 3 4 cbr 500 ------- 1 1.0 6.0 98 186 r 1.05525 4 5 tcp 1000 ------- 0 0.0 5.0 2 167 + 1.05525 5 4 ack 40 ------- 0 5.0 0.0 2 191 - 1.05525 5 4 ack 40 ------- 0 5.0 0.0 2 191 - 1.05565 3 4 cbr 500 ------- 1 1.0 6.0 92 177 r 1.05765 3 4 tcp 1000 ------- 0 0.0 5.0 4 169 + 1.05765 4 5 tcp 1000 ------- 0 0.0 5.0 4 169 - 1.05765 4 5 tcp 1000 ------- 0 0.0 5.0 4 169 - 1.05965 3 4 cbr 500 ------- 1 1.0 6.0 93 178 + 1.06 2 3 cbr 1000 ------- 1 2.0 7.0 68 192 - 1.06 2 3 cbr 1000 ------- 1 2.0 7.0 68 192 + 1.06 1 3 cbr 500 ------- 1 1.0 6.0 101 193 - 1.06 1 3 cbr 500 ------- 1 1.0 6.0 101 193 r 1.06325 4 5 tcp 1000 ------- 0 0.0 5.0 3 168 + 1.06325 5 4 ack 40 ------- 0 5.0 0.0 3 194 - 1.06325 5 4 ack 40 ------- 0 5.0 0.0 3 194 r 1.06331 5 4 ack 40 ------- 0 5.0 0.0 1 189 + 1.06331 4 3 ack 40 ------- 0 5.0 0.0 1 189 - 1.06331 4 3 ack 40 ------- 0 5.0 0.0 1 189 - 1.06365 3 4 cbr 1000 ------- 1 2.0 7.0 64 179 r 1.064 1 3 cbr 500 ------- 1 1.0 6.0 99 188 + 1.064 3 4 cbr 500 ------- 1 1.0 6.0 99 188 r 1.06565 3 4 tcp 1000 ------- 0 0.0 5.0 5 170 + 1.06565 4 5 tcp 1000 ------- 0 0.0 5.0 5 170 - 1.06565 4 5 tcp 1000 ------- 0 0.0 5.0 5 170 r 1.068 2 3 cbr 1000 ------- 1 2.0 7.0 67 187 + 1.068 3 4 cbr 1000 ------- 1 2.0 7.0 67 187 + 1.07 1 3 cbr 500 ------- 1 1.0 6.0 102 195 - 1.07 1 3 cbr 500 ------- 1 1.0 6.0 102 195 - 1.07165 3 4 cbr 500 ------- 1 1.0 6.0 95 182 r 1.07365 3 4 tcp 1000 ------- 0 0.0 5.0 6 171 + 1.07365 4 5 tcp 1000 ------- 0 0.0 5.0 6 171 - 1.07365 4 5 tcp 1000 ------- 0 0.0 5.0 6 171 r 1.074 1 3 cbr 500 ------- 1 1.0 6.0 100 190 + 1.074 3 4 cbr 500 ------- 1 1.0 6.0 100 190 r 1.07531 5 4 ack 40 ------- 0 5.0 0.0 2 191 + 1.07531 4 3 ack 40 ------- 0 5.0 0.0 2 191 - 1.07531 4 3 ack 40 ------- 0 5.0 0.0 2 191 - 1.07565 3 4 cbr 1000 ------- 1 2.0 7.0 65 181 r 1.07765 4 7 cbr 1000 ------- 1 2.0 7.0 62 165 r 1.07925 4 5 tcp 1000 ------- 0 0.0 5.0 4 169 + 1.07925 5 4 ack 40 ------- 0 5.0 0.0 4 196 - 1.07925 5 4 ack 40 ------- 0 5.0 0.0 4 196 + 1.08 2 3 cbr 1000 ------- 1 2.0 7.0 69 197 - 1.08 2 3 cbr 1000 ------- 1 2.0 7.0 69 197 + 1.08 1 3 cbr 500 ------- 1 1.0 6.0 103 198 - 1.08 1 3 cbr 500 ------- 1 1.0 6.0 103 198 r 1.08165 3 4 tcp 1000 ------- 0 0.0 5.0 7 172 + 1.08165 4 5 tcp 1000 ------- 0 0.0 5.0 7 172 - 1.08165 4 5 tcp 1000 ------- 0 0.0 5.0 7 172 r 1.08331 5 4 ack 40 ------- 0 5.0 0.0 3 194 + 1.08331 4 3 ack 40 ------- 0 5.0 0.0 3 194 - 1.08331 4 3 ack 40 ------- 0 5.0 0.0 3 194 - 1.08365 3 4 cbr 500 ------- 1 1.0 6.0 96 183 r 1.084 1 3 cbr 500 ------- 1 1.0 6.0 101 193 + 1.084 3 4 cbr 500 ------- 1 1.0 6.0 101 193 r 1.08565 3 4 cbr 500 ------- 1 1.0 6.0 90 174 + 1.08565 4 6 cbr 500 ------- 1 1.0 6.0 90 174 - 1.08565 4 6 cbr 500 ------- 1 1.0 6.0 90 174 r 1.08725 4 5 tcp 1000 ------- 0 0.0 5.0 5 170 + 1.08725 5 4 ack 40 ------- 0 5.0 0.0 5 199 - 1.08725 5 4 ack 40 ------- 0 5.0 0.0 5 199 - 1.08765 3 4 cbr 500 ------- 1 1.0 6.0 97 185 r 1.088 2 3 cbr 1000 ------- 1 2.0 7.0 68 192 + 1.088 3 4 cbr 1000 ------- 1 2.0 7.0 68 192 + 1.09 1 3 cbr 500 ------- 1 1.0 6.0 104 200 - 1.09 1 3 cbr 500 ------- 1 1.0 6.0 104 200 - 1.09165 3 4 cbr 1000 ------- 1 2.0 7.0 66 184 r 1.09365 3 4 tcp 1000 ------- 0 0.0 5.0 8 173 + 1.09365 4 5 tcp 1000 ------- 0 0.0 5.0 8 173 - 1.09365 4 5 tcp 1000 ------- 0 0.0 5.0 8 173 r 1.094 1 3 cbr 500 ------- 1 1.0 6.0 102 195 + 1.094 3 4 cbr 500 ------- 1 1.0 6.0 102 195 r 1.09525 4 5 tcp 1000 ------- 0 0.0 5.0 6 171 + 1.09525 5 4 ack 40 ------- 0 5.0 0.0 6 201 - 1.09525 5 4 ack 40 ------- 0 5.0 0.0 6 201 r 1.09765 3 4 cbr 500 ------- 1 1.0 6.0 91 175 + 1.09765 4 6 cbr 500 ------- 1 1.0 6.0 91 175 - 1.09765 4 6 cbr 500 ------- 1 1.0 6.0 91 175 r 1.09931 5 4 ack 40 ------- 0 5.0 0.0 4 196 + 1.09931 4 3 ack 40 ------- 0 5.0 0.0 4 196 - 1.09931 4 3 ack 40 ------- 0 5.0 0.0 4 196 - 1.09965 3 4 cbr 500 ------- 1 1.0 6.0 98 186 + 1.1 2 3 cbr 1000 ------- 1 2.0 7.0 70 202 - 1.1 2 3 cbr 1000 ------- 1 2.0 7.0 70 202 + 1.1 1 3 cbr 500 ------- 1 1.0 6.0 105 203 - 1.1 1 3 cbr 500 ------- 1 1.0 6.0 105 203 r 1.10325 4 5 tcp 1000 ------- 0 0.0 5.0 7 172 + 1.10325 5 4 ack 40 ------- 0 5.0 0.0 7 204 - 1.10325 5 4 ack 40 ------- 0 5.0 0.0 7 204 - 1.10365 3 4 cbr 500 ------- 1 1.0 6.0 99 188 r 1.104 1 3 cbr 500 ------- 1 1.0 6.0 103 198 + 1.104 3 4 cbr 500 ------- 1 1.0 6.0 103 198 r 1.10565 3 4 cbr 1000 ------- 1 2.0 7.0 63 176 + 1.10565 4 7 cbr 1000 ------- 1 2.0 7.0 63 176 - 1.10565 4 7 cbr 1000 ------- 1 2.0 7.0 63 176 r 1.10731 5 4 ack 40 ------- 0 5.0 0.0 5 199 + 1.10731 4 3 ack 40 ------- 0 5.0 0.0 5 199 - 1.10731 4 3 ack 40 ------- 0 5.0 0.0 5 199 - 1.10765 3 4 cbr 1000 ------- 1 2.0 7.0 67 187 r 1.108 2 3 cbr 1000 ------- 1 2.0 7.0 69 197 + 1.108 3 4 cbr 1000 ------- 1 2.0 7.0 69 197 r 1.10965 3 4 cbr 500 ------- 1 1.0 6.0 92 177 + 1.10965 4 6 cbr 500 ------- 1 1.0 6.0 92 177 - 1.10965 4 6 cbr 500 ------- 1 1.0 6.0 92 177 r 1.10965 4 6 cbr 500 ------- 1 1.0 6.0 90 174 + 1.11 1 3 cbr 500 ------- 1 1.0 6.0 106 205 - 1.11 1 3 cbr 500 ------- 1 1.0 6.0 106 205 r 1.11363 4 3 ack 40 ------- 0 5.0 0.0 1 189 + 1.11363 3 0 ack 40 ------- 0 5.0 0.0 1 189 - 1.11363 3 0 ack 40 ------- 0 5.0 0.0 1 189 r 1.11365 3 4 cbr 500 ------- 1 1.0 6.0 93 178 + 1.11365 4 6 cbr 500 ------- 1 1.0 6.0 93 178 - 1.11365 4 6 cbr 500 ------- 1 1.0 6.0 93 178 r 1.114 1 3 cbr 500 ------- 1 1.0 6.0 104 200 + 1.114 3 4 cbr 500 ------- 1 1.0 6.0 104 200 r 1.11525 4 5 tcp 1000 ------- 0 0.0 5.0 8 173 + 1.11525 5 4 ack 40 ------- 0 5.0 0.0 8 206 - 1.11525 5 4 ack 40 ------- 0 5.0 0.0 8 206 r 1.11531 5 4 ack 40 ------- 0 5.0 0.0 6 201 + 1.11531 4 3 ack 40 ------- 0 5.0 0.0 6 201 - 1.11531 4 3 ack 40 ------- 0 5.0 0.0 6 201 - 1.11565 3 4 cbr 500 ------- 1 1.0 6.0 100 190 - 1.11965 3 4 cbr 500 ------- 1 1.0 6.0 101 193 + 1.12 2 3 cbr 1000 ------- 1 2.0 7.0 71 207 - 1.12 2 3 cbr 1000 ------- 1 2.0 7.0 71 207 + 1.12 1 3 cbr 500 ------- 1 1.0 6.0 107 208 - 1.12 1 3 cbr 500 ------- 1 1.0 6.0 107 208 r 1.12165 3 4 cbr 1000 ------- 1 2.0 7.0 64 179 + 1.12165 4 7 cbr 1000 ------- 1 2.0 7.0 64 179 - 1.12165 4 7 cbr 1000 ------- 1 2.0 7.0 64 179 r 1.12165 4 6 cbr 500 ------- 1 1.0 6.0 91 175 r 1.12331 5 4 ack 40 ------- 0 5.0 0.0 7 204 + 1.12331 4 3 ack 40 ------- 0 5.0 0.0 7 204 - 1.12331 4 3 ack 40 ------- 0 5.0 0.0 7 204 - 1.12365 3 4 cbr 1000 ------- 1 2.0 7.0 68 192 r 1.124 1 3 cbr 500 ------- 1 1.0 6.0 105 203 + 1.124 3 4 cbr 500 ------- 1 1.0 6.0 105 203 r 1.12563 4 3 ack 40 ------- 0 5.0 0.0 2 191 + 1.12563 3 0 ack 40 ------- 0 5.0 0.0 2 191 - 1.12563 3 0 ack 40 ------- 0 5.0 0.0 2 191 r 1.12565 3 4 cbr 500 ------- 1 1.0 6.0 95 182 + 1.12565 4 6 cbr 500 ------- 1 1.0 6.0 95 182 - 1.12565 4 6 cbr 500 ------- 1 1.0 6.0 95 182 r 1.128 2 3 cbr 1000 ------- 1 2.0 7.0 70 202 + 1.128 3 4 cbr 1000 ------- 1 2.0 7.0 70 202 + 1.13 1 3 cbr 500 ------- 1 1.0 6.0 108 209 - 1.13 1 3 cbr 500 ------- 1 1.0 6.0 108 209 - 1.13165 3 4 cbr 500 ------- 1 1.0 6.0 102 195 r 1.13363 4 3 ack 40 ------- 0 5.0 0.0 3 194 + 1.13363 3 0 ack 40 ------- 0 5.0 0.0 3 194 - 1.13363 3 0 ack 40 ------- 0 5.0 0.0 3 194 r 1.13365 3 4 cbr 1000 ------- 1 2.0 7.0 65 181 + 1.13365 4 7 cbr 1000 ------- 1 2.0 7.0 65 181 - 1.13365 4 7 cbr 1000 ------- 1 2.0 7.0 65 181 r 1.13365 4 7 cbr 1000 ------- 1 2.0 7.0 63 176 r 1.13365 4 6 cbr 500 ------- 1 1.0 6.0 92 177 r 1.1337 3 0 ack 40 ------- 0 5.0 0.0 1 189 + 1.1337 0 3 tcp 1000 ------- 0 0.0 5.0 9 210 - 1.1337 0 3 tcp 1000 ------- 0 0.0 5.0 9 210 r 1.134 1 3 cbr 500 ------- 1 1.0 6.0 106 205 + 1.134 3 4 cbr 500 ------- 1 1.0 6.0 106 205 r 1.13531 5 4 ack 40 ------- 0 5.0 0.0 8 206 + 1.13531 4 3 ack 40 ------- 0 5.0 0.0 8 206 - 1.13531 4 3 ack 40 ------- 0 5.0 0.0 8 206 - 1.13565 3 4 cbr 500 ------- 1 1.0 6.0 103 198 r 1.13765 3 4 cbr 500 ------- 1 1.0 6.0 96 183 + 1.13765 4 6 cbr 500 ------- 1 1.0 6.0 96 183 - 1.13765 4 6 cbr 500 ------- 1 1.0 6.0 96 183 r 1.13765 4 6 cbr 500 ------- 1 1.0 6.0 93 178 - 1.13965 3 4 cbr 1000 ------- 1 2.0 7.0 69 197 v 1.1399999999999999 eval {set sim_annotation {Send Packet_9 to 16}} + 1.14 2 3 cbr 1000 ------- 1 2.0 7.0 72 211 - 1.14 2 3 cbr 1000 ------- 1 2.0 7.0 72 211 + 1.14 1 3 cbr 500 ------- 1 1.0 6.0 109 212 - 1.14 1 3 cbr 500 ------- 1 1.0 6.0 109 212 r 1.14165 3 4 cbr 500 ------- 1 1.0 6.0 97 185 + 1.14165 4 6 cbr 500 ------- 1 1.0 6.0 97 185 - 1.14165 4 6 cbr 500 ------- 1 1.0 6.0 97 185 r 1.144 1 3 cbr 500 ------- 1 1.0 6.0 107 208 + 1.144 3 4 cbr 500 ------- 1 1.0 6.0 107 208 r 1.1457 3 0 ack 40 ------- 0 5.0 0.0 2 191 + 1.1457 0 3 tcp 1000 ------- 0 0.0 5.0 10 213 - 1.1457 0 3 tcp 1000 ------- 0 0.0 5.0 10 213 - 1.14765 3 4 cbr 500 ------- 1 1.0 6.0 104 200 r 1.148 2 3 cbr 1000 ------- 1 2.0 7.0 71 207 + 1.148 3 4 cbr 1000 ------- 1 2.0 7.0 71 207 r 1.14963 4 3 ack 40 ------- 0 5.0 0.0 4 196 + 1.14963 3 0 ack 40 ------- 0 5.0 0.0 4 196 - 1.14963 3 0 ack 40 ------- 0 5.0 0.0 4 196 r 1.14965 3 4 cbr 1000 ------- 1 2.0 7.0 66 184 + 1.14965 4 7 cbr 1000 ------- 1 2.0 7.0 66 184 - 1.14965 4 7 cbr 1000 ------- 1 2.0 7.0 66 184 r 1.14965 4 7 cbr 1000 ------- 1 2.0 7.0 64 179 r 1.14965 4 6 cbr 500 ------- 1 1.0 6.0 95 182 + 1.15 1 3 cbr 500 ------- 1 1.0 6.0 110 214 - 1.15 1 3 cbr 500 ------- 1 1.0 6.0 110 214 - 1.15165 3 4 cbr 500 ------- 1 1.0 6.0 105 203 r 1.15365 3 4 cbr 500 ------- 1 1.0 6.0 98 186 + 1.15365 4 6 cbr 500 ------- 1 1.0 6.0 98 186 - 1.15365 4 6 cbr 500 ------- 1 1.0 6.0 98 186 r 1.1537 3 0 ack 40 ------- 0 5.0 0.0 3 194 + 1.1537 0 3 tcp 1000 ------- 0 0.0 5.0 11 215 - 1.1537 0 3 tcp 1000 ------- 0 0.0 5.0 11 215 r 1.154 1 3 cbr 500 ------- 1 1.0 6.0 108 209 + 1.154 3 4 cbr 500 ------- 1 1.0 6.0 108 209 r 1.1553 0 3 tcp 1000 ------- 0 0.0 5.0 9 210 + 1.1553 3 4 tcp 1000 ------- 0 0.0 5.0 9 210 - 1.15565 3 4 cbr 1000 ------- 1 2.0 7.0 70 202 r 1.15763 4 3 ack 40 ------- 0 5.0 0.0 5 199 + 1.15763 3 0 ack 40 ------- 0 5.0 0.0 5 199 - 1.15763 3 0 ack 40 ------- 0 5.0 0.0 5 199 r 1.15765 3 4 cbr 500 ------- 1 1.0 6.0 99 188 + 1.15765 4 6 cbr 500 ------- 1 1.0 6.0 99 188 - 1.15765 4 6 cbr 500 ------- 1 1.0 6.0 99 188 + 1.16 2 3 cbr 1000 ------- 1 2.0 7.0 73 216 - 1.16 2 3 cbr 1000 ------- 1 2.0 7.0 73 216 + 1.16 1 3 cbr 500 ------- 1 1.0 6.0 111 217 - 1.16 1 3 cbr 500 ------- 1 1.0 6.0 111 217 r 1.16165 4 7 cbr 1000 ------- 1 2.0 7.0 65 181 r 1.16165 4 6 cbr 500 ------- 1 1.0 6.0 96 183 - 1.16365 3 4 cbr 500 ------- 1 1.0 6.0 106 205 r 1.164 1 3 cbr 500 ------- 1 1.0 6.0 109 212 + 1.164 3 4 cbr 500 ------- 1 1.0 6.0 109 212 r 1.16563 4 3 ack 40 ------- 0 5.0 0.0 6 201 + 1.16563 3 0 ack 40 ------- 0 5.0 0.0 6 201 - 1.16563 3 0 ack 40 ------- 0 5.0 0.0 6 201 r 1.16565 3 4 cbr 1000 ------- 1 2.0 7.0 67 187 + 1.16565 4 7 cbr 1000 ------- 1 2.0 7.0 67 187 - 1.16565 4 7 cbr 1000 ------- 1 2.0 7.0 67 187 r 1.16565 4 6 cbr 500 ------- 1 1.0 6.0 97 185 r 1.1673 0 3 tcp 1000 ------- 0 0.0 5.0 10 213 + 1.1673 3 4 tcp 1000 ------- 0 0.0 5.0 10 213 - 1.16765 3 4 cbr 500 ------- 1 1.0 6.0 107 208 r 1.168 2 3 cbr 1000 ------- 1 2.0 7.0 72 211 + 1.168 3 4 cbr 1000 ------- 1 2.0 7.0 72 211 r 1.16965 3 4 cbr 500 ------- 1 1.0 6.0 100 190 + 1.16965 4 6 cbr 500 ------- 1 1.0 6.0 100 190 - 1.16965 4 6 cbr 500 ------- 1 1.0 6.0 100 190 r 1.1697 3 0 ack 40 ------- 0 5.0 0.0 4 196 + 1.1697 0 3 tcp 1000 ------- 0 0.0 5.0 12 218 - 1.1697 0 3 tcp 1000 ------- 0 0.0 5.0 12 218 + 1.17 1 3 cbr 500 ------- 1 1.0 6.0 112 219 - 1.17 1 3 cbr 500 ------- 1 1.0 6.0 112 219 - 1.17165 3 4 cbr 1000 ------- 1 2.0 7.0 71 207 r 1.17363 4 3 ack 40 ------- 0 5.0 0.0 7 204 + 1.17363 3 0 ack 40 ------- 0 5.0 0.0 7 204 - 1.17363 3 0 ack 40 ------- 0 5.0 0.0 7 204 r 1.17365 3 4 cbr 500 ------- 1 1.0 6.0 101 193 + 1.17365 4 6 cbr 500 ------- 1 1.0 6.0 101 193 - 1.17365 4 6 cbr 500 ------- 1 1.0 6.0 101 193 r 1.174 1 3 cbr 500 ------- 1 1.0 6.0 110 214 + 1.174 3 4 cbr 500 ------- 1 1.0 6.0 110 214 r 1.1753 0 3 tcp 1000 ------- 0 0.0 5.0 11 215 + 1.1753 3 4 tcp 1000 ------- 0 0.0 5.0 11 215 r 1.17765 4 7 cbr 1000 ------- 1 2.0 7.0 66 184 r 1.17765 4 6 cbr 500 ------- 1 1.0 6.0 98 186 r 1.1777 3 0 ack 40 ------- 0 5.0 0.0 5 199 + 1.1777 0 3 tcp 1000 ------- 0 0.0 5.0 13 220 - 1.1777 0 3 tcp 1000 ------- 0 0.0 5.0 13 220 - 1.17965 3 4 cbr 500 ------- 1 1.0 6.0 108 209 + 1.18 2 3 cbr 1000 ------- 1 2.0 7.0 74 221 - 1.18 2 3 cbr 1000 ------- 1 2.0 7.0 74 221 + 1.18 1 3 cbr 500 ------- 1 1.0 6.0 113 222 - 1.18 1 3 cbr 500 ------- 1 1.0 6.0 113 222 r 1.18165 3 4 cbr 1000 ------- 1 2.0 7.0 68 192 + 1.18165 4 7 cbr 1000 ------- 1 2.0 7.0 68 192 - 1.18165 4 7 cbr 1000 ------- 1 2.0 7.0 68 192 r 1.18165 4 6 cbr 500 ------- 1 1.0 6.0 99 188 - 1.18365 3 4 tcp 1000 ------- 0 0.0 5.0 9 210 r 1.184 1 3 cbr 500 ------- 1 1.0 6.0 111 217 + 1.184 3 4 cbr 500 ------- 1 1.0 6.0 111 217 r 1.18563 4 3 ack 40 ------- 0 5.0 0.0 8 206 + 1.18563 3 0 ack 40 ------- 0 5.0 0.0 8 206 - 1.18563 3 0 ack 40 ------- 0 5.0 0.0 8 206 r 1.18565 3 4 cbr 500 ------- 1 1.0 6.0 102 195 + 1.18565 4 6 cbr 500 ------- 1 1.0 6.0 102 195 - 1.18565 4 6 cbr 500 ------- 1 1.0 6.0 102 195 r 1.1857 3 0 ack 40 ------- 0 5.0 0.0 6 201 + 1.1857 0 3 tcp 1000 ------- 0 0.0 5.0 14 223 - 1.1857 0 3 tcp 1000 ------- 0 0.0 5.0 14 223 r 1.188 2 3 cbr 1000 ------- 1 2.0 7.0 73 216 + 1.188 3 4 cbr 1000 ------- 1 2.0 7.0 73 216 r 1.18965 3 4 cbr 500 ------- 1 1.0 6.0 103 198 + 1.18965 4 6 cbr 500 ------- 1 1.0 6.0 103 198 - 1.18965 4 6 cbr 500 ------- 1 1.0 6.0 103 198 + 1.19 1 3 cbr 500 ------- 1 1.0 6.0 114 224 - 1.19 1 3 cbr 500 ------- 1 1.0 6.0 114 224 r 1.1913 0 3 tcp 1000 ------- 0 0.0 5.0 12 218 + 1.1913 3 4 tcp 1000 ------- 0 0.0 5.0 12 218 - 1.19165 3 4 cbr 500 ------- 1 1.0 6.0 109 212 r 1.19365 4 7 cbr 1000 ------- 1 2.0 7.0 67 187 r 1.19365 4 6 cbr 500 ------- 1 1.0 6.0 100 190 r 1.1937 3 0 ack 40 ------- 0 5.0 0.0 7 204 + 1.1937 0 3 tcp 1000 ------- 0 0.0 5.0 15 225 - 1.1937 0 3 tcp 1000 ------- 0 0.0 5.0 15 225 r 1.194 1 3 cbr 500 ------- 1 1.0 6.0 112 219 + 1.194 3 4 cbr 500 ------- 1 1.0 6.0 112 219 - 1.19565 3 4 tcp 1000 ------- 0 0.0 5.0 10 213 r 1.19765 3 4 cbr 1000 ------- 1 2.0 7.0 69 197 + 1.19765 4 7 cbr 1000 ------- 1 2.0 7.0 69 197 - 1.19765 4 7 cbr 1000 ------- 1 2.0 7.0 69 197 r 1.19765 4 6 cbr 500 ------- 1 1.0 6.0 101 193 r 1.1993 0 3 tcp 1000 ------- 0 0.0 5.0 13 220 + 1.1993 3 4 tcp 1000 ------- 0 0.0 5.0 13 220 + 1.2 2 3 cbr 1000 ------- 1 2.0 7.0 75 226 - 1.2 2 3 cbr 1000 ------- 1 2.0 7.0 75 226 + 1.2 1 3 cbr 500 ------- 1 1.0 6.0 115 227 - 1.2 1 3 cbr 500 ------- 1 1.0 6.0 115 227 r 1.20165 3 4 cbr 500 ------- 1 1.0 6.0 104 200 + 1.20165 4 6 cbr 500 ------- 1 1.0 6.0 104 200 - 1.20165 4 6 cbr 500 ------- 1 1.0 6.0 104 200 - 1.20365 3 4 cbr 1000 ------- 1 2.0 7.0 72 211 r 1.204 1 3 cbr 500 ------- 1 1.0 6.0 113 222 + 1.204 3 4 cbr 500 ------- 1 1.0 6.0 113 222 r 1.20565 3 4 cbr 500 ------- 1 1.0 6.0 105 203 + 1.20565 4 6 cbr 500 ------- 1 1.0 6.0 105 203 - 1.20565 4 6 cbr 500 ------- 1 1.0 6.0 105 203 r 1.2057 3 0 ack 40 ------- 0 5.0 0.0 8 206 + 1.2057 0 3 tcp 1000 ------- 0 0.0 5.0 16 228 - 1.2057 0 3 tcp 1000 ------- 0 0.0 5.0 16 228 r 1.2073 0 3 tcp 1000 ------- 0 0.0 5.0 14 223 + 1.2073 3 4 tcp 1000 ------- 0 0.0 5.0 14 223 r 1.208 2 3 cbr 1000 ------- 1 2.0 7.0 74 221 + 1.208 3 4 cbr 1000 ------- 1 2.0 7.0 74 221 d 1.208 3 4 cbr 1000 ------- 1 2.0 7.0 74 221 r 1.20965 4 7 cbr 1000 ------- 1 2.0 7.0 68 192 r 1.20965 4 6 cbr 500 ------- 1 1.0 6.0 102 195 + 1.21 1 3 cbr 500 ------- 1 1.0 6.0 116 229 - 1.21 1 3 cbr 500 ------- 1 1.0 6.0 116 229 - 1.21165 3 4 cbr 500 ------- 1 1.0 6.0 110 214 r 1.21365 3 4 cbr 1000 ------- 1 2.0 7.0 70 202 + 1.21365 4 7 cbr 1000 ------- 1 2.0 7.0 70 202 - 1.21365 4 7 cbr 1000 ------- 1 2.0 7.0 70 202 r 1.21365 4 6 cbr 500 ------- 1 1.0 6.0 103 198 r 1.214 1 3 cbr 500 ------- 1 1.0 6.0 114 224 + 1.214 3 4 cbr 500 ------- 1 1.0 6.0 114 224 r 1.2153 0 3 tcp 1000 ------- 0 0.0 5.0 15 225 + 1.2153 3 4 tcp 1000 ------- 0 0.0 5.0 15 225 d 1.2153 3 4 tcp 1000 ------- 0 0.0 5.0 15 225 - 1.21565 3 4 tcp 1000 ------- 0 0.0 5.0 11 215 r 1.21765 3 4 cbr 500 ------- 1 1.0 6.0 106 205 + 1.21765 4 6 cbr 500 ------- 1 1.0 6.0 106 205 - 1.21765 4 6 cbr 500 ------- 1 1.0 6.0 106 205 v 1.22 eval {set sim_annotation {Lost Packet (2 of them) }} + 1.22 2 3 cbr 1000 ------- 1 2.0 7.0 76 230 - 1.22 2 3 cbr 1000 ------- 1 2.0 7.0 76 230 + 1.22 1 3 cbr 500 ------- 1 1.0 6.0 117 231 - 1.22 1 3 cbr 500 ------- 1 1.0 6.0 117 231 r 1.22165 3 4 cbr 500 ------- 1 1.0 6.0 107 208 + 1.22165 4 6 cbr 500 ------- 1 1.0 6.0 107 208 - 1.22165 4 6 cbr 500 ------- 1 1.0 6.0 107 208 - 1.22365 3 4 cbr 500 ------- 1 1.0 6.0 111 217 r 1.224 1 3 cbr 500 ------- 1 1.0 6.0 115 227 + 1.224 3 4 cbr 500 ------- 1 1.0 6.0 115 227 r 1.22565 4 7 cbr 1000 ------- 1 2.0 7.0 69 197 r 1.22565 4 6 cbr 500 ------- 1 1.0 6.0 104 200 r 1.2273 0 3 tcp 1000 ------- 0 0.0 5.0 16 228 + 1.2273 3 4 tcp 1000 ------- 0 0.0 5.0 16 228 - 1.22765 3 4 cbr 1000 ------- 1 2.0 7.0 73 216 r 1.228 2 3 cbr 1000 ------- 1 2.0 7.0 75 226 + 1.228 3 4 cbr 1000 ------- 1 2.0 7.0 75 226 r 1.22965 3 4 cbr 1000 ------- 1 2.0 7.0 71 207 + 1.22965 4 7 cbr 1000 ------- 1 2.0 7.0 71 207 - 1.22965 4 7 cbr 1000 ------- 1 2.0 7.0 71 207 r 1.22965 4 6 cbr 500 ------- 1 1.0 6.0 105 203 + 1.23 1 3 cbr 500 ------- 1 1.0 6.0 118 232 - 1.23 1 3 cbr 500 ------- 1 1.0 6.0 118 232 r 1.23365 3 4 cbr 500 ------- 1 1.0 6.0 108 209 + 1.23365 4 6 cbr 500 ------- 1 1.0 6.0 108 209 - 1.23365 4 6 cbr 500 ------- 1 1.0 6.0 108 209 r 1.234 1 3 cbr 500 ------- 1 1.0 6.0 116 229 + 1.234 3 4 cbr 500 ------- 1 1.0 6.0 116 229 d 1.234 3 4 cbr 500 ------- 1 1.0 6.0 116 229 - 1.23565 3 4 tcp 1000 ------- 0 0.0 5.0 12 218 + 1.24 2 3 cbr 1000 ------- 1 2.0 7.0 77 233 - 1.24 2 3 cbr 1000 ------- 1 2.0 7.0 77 233 + 1.24 1 3 cbr 500 ------- 1 1.0 6.0 119 234 - 1.24 1 3 cbr 500 ------- 1 1.0 6.0 119 234 r 1.24165 3 4 tcp 1000 ------- 0 0.0 5.0 9 210 + 1.24165 4 5 tcp 1000 ------- 0 0.0 5.0 9 210 - 1.24165 4 5 tcp 1000 ------- 0 0.0 5.0 9 210 r 1.24165 4 7 cbr 1000 ------- 1 2.0 7.0 70 202 r 1.24165 4 6 cbr 500 ------- 1 1.0 6.0 106 205 - 1.24365 3 4 cbr 500 ------- 1 1.0 6.0 112 219 r 1.244 1 3 cbr 500 ------- 1 1.0 6.0 117 231 + 1.244 3 4 cbr 500 ------- 1 1.0 6.0 117 231 r 1.24565 3 4 cbr 500 ------- 1 1.0 6.0 109 212 + 1.24565 4 6 cbr 500 ------- 1 1.0 6.0 109 212 - 1.24565 4 6 cbr 500 ------- 1 1.0 6.0 109 212 r 1.24565 4 6 cbr 500 ------- 1 1.0 6.0 107 208 - 1.24765 3 4 tcp 1000 ------- 0 0.0 5.0 13 220 r 1.248 2 3 cbr 1000 ------- 1 2.0 7.0 76 230 + 1.248 3 4 cbr 1000 ------- 1 2.0 7.0 76 230 + 1.25 1 3 cbr 500 ------- 1 1.0 6.0 120 235 - 1.25 1 3 cbr 500 ------- 1 1.0 6.0 120 235 r 1.25365 3 4 tcp 1000 ------- 0 0.0 5.0 10 213 + 1.25365 4 5 tcp 1000 ------- 0 0.0 5.0 10 213 - 1.25365 4 5 tcp 1000 ------- 0 0.0 5.0 10 213 r 1.254 1 3 cbr 500 ------- 1 1.0 6.0 118 232 + 1.254 3 4 cbr 500 ------- 1 1.0 6.0 118 232 - 1.25565 3 4 cbr 500 ------- 1 1.0 6.0 113 222 r 1.25765 4 7 cbr 1000 ------- 1 2.0 7.0 71 207 r 1.25765 4 6 cbr 500 ------- 1 1.0 6.0 108 209 - 1.25965 3 4 tcp 1000 ------- 0 0.0 5.0 14 223 + 1.26 2 3 cbr 1000 ------- 1 2.0 7.0 78 236 - 1.26 2 3 cbr 1000 ------- 1 2.0 7.0 78 236 + 1.26 1 3 cbr 500 ------- 1 1.0 6.0 121 237 - 1.26 1 3 cbr 500 ------- 1 1.0 6.0 121 237 r 1.26165 3 4 cbr 1000 ------- 1 2.0 7.0 72 211 + 1.26165 4 7 cbr 1000 ------- 1 2.0 7.0 72 211 - 1.26165 4 7 cbr 1000 ------- 1 2.0 7.0 72 211 r 1.26325 4 5 tcp 1000 ------- 0 0.0 5.0 9 210 + 1.26325 5 4 ack 40 ------- 0 5.0 0.0 9 238 - 1.26325 5 4 ack 40 ------- 0 5.0 0.0 9 238 r 1.264 1 3 cbr 500 ------- 1 1.0 6.0 119 234 + 1.264 3 4 cbr 500 ------- 1 1.0 6.0 119 234 r 1.26565 3 4 cbr 500 ------- 1 1.0 6.0 110 214 + 1.26565 4 6 cbr 500 ------- 1 1.0 6.0 110 214 - 1.26565 4 6 cbr 500 ------- 1 1.0 6.0 110 214 - 1.26765 3 4 cbr 500 ------- 1 1.0 6.0 114 224 r 1.268 2 3 cbr 1000 ------- 1 2.0 7.0 77 233 + 1.268 3 4 cbr 1000 ------- 1 2.0 7.0 77 233 r 1.26965 4 6 cbr 500 ------- 1 1.0 6.0 109 212 v 1.27 eval {set sim_annotation {Ack_7 to 14 }} + 1.27 1 3 cbr 500 ------- 1 1.0 6.0 122 239 - 1.27 1 3 cbr 500 ------- 1 1.0 6.0 122 239 - 1.27165 3 4 cbr 500 ------- 1 1.0 6.0 115 227 r 1.27365 3 4 tcp 1000 ------- 0 0.0 5.0 11 215 + 1.27365 4 5 tcp 1000 ------- 0 0.0 5.0 11 215 - 1.27365 4 5 tcp 1000 ------- 0 0.0 5.0 11 215 r 1.274 1 3 cbr 500 ------- 1 1.0 6.0 120 235 + 1.274 3 4 cbr 500 ------- 1 1.0 6.0 120 235 r 1.27525 4 5 tcp 1000 ------- 0 0.0 5.0 10 213 + 1.27525 5 4 ack 40 ------- 0 5.0 0.0 10 240 - 1.27525 5 4 ack 40 ------- 0 5.0 0.0 10 240 - 1.27565 3 4 tcp 1000 ------- 0 0.0 5.0 16 228 r 1.27765 3 4 cbr 500 ------- 1 1.0 6.0 111 217 + 1.27765 4 6 cbr 500 ------- 1 1.0 6.0 111 217 - 1.27765 4 6 cbr 500 ------- 1 1.0 6.0 111 217 + 1.28 2 3 cbr 1000 ------- 1 2.0 7.0 79 241 - 1.28 2 3 cbr 1000 ------- 1 2.0 7.0 79 241 + 1.28 1 3 cbr 500 ------- 1 1.0 6.0 123 242 - 1.28 1 3 cbr 500 ------- 1 1.0 6.0 123 242 r 1.28331 5 4 ack 40 ------- 0 5.0 0.0 9 238 + 1.28331 4 3 ack 40 ------- 0 5.0 0.0 9 238 - 1.28331 4 3 ack 40 ------- 0 5.0 0.0 9 238 - 1.28365 3 4 cbr 1000 ------- 1 2.0 7.0 75 226 r 1.284 1 3 cbr 500 ------- 1 1.0 6.0 121 237 + 1.284 3 4 cbr 500 ------- 1 1.0 6.0 121 237 r 1.28565 3 4 cbr 1000 ------- 1 2.0 7.0 73 216 + 1.28565 4 7 cbr 1000 ------- 1 2.0 7.0 73 216 - 1.28565 4 7 cbr 1000 ------- 1 2.0 7.0 73 216 r 1.288 2 3 cbr 1000 ------- 1 2.0 7.0 78 236 + 1.288 3 4 cbr 1000 ------- 1 2.0 7.0 78 236 r 1.28965 4 7 cbr 1000 ------- 1 2.0 7.0 72 211 r 1.28965 4 6 cbr 500 ------- 1 1.0 6.0 110 214 + 1.29 1 3 cbr 500 ------- 1 1.0 6.0 124 243 - 1.29 1 3 cbr 500 ------- 1 1.0 6.0 124 243 - 1.29165 3 4 cbr 500 ------- 1 1.0 6.0 117 231 r 1.29365 3 4 tcp 1000 ------- 0 0.0 5.0 12 218 + 1.29365 4 5 tcp 1000 ------- 0 0.0 5.0 12 218 - 1.29365 4 5 tcp 1000 ------- 0 0.0 5.0 12 218 r 1.294 1 3 cbr 500 ------- 1 1.0 6.0 122 239 + 1.294 3 4 cbr 500 ------- 1 1.0 6.0 122 239 r 1.29525 4 5 tcp 1000 ------- 0 0.0 5.0 11 215 + 1.29525 5 4 ack 40 ------- 0 5.0 0.0 11 244 - 1.29525 5 4 ack 40 ------- 0 5.0 0.0 11 244 r 1.29531 5 4 ack 40 ------- 0 5.0 0.0 10 240 + 1.29531 4 3 ack 40 ------- 0 5.0 0.0 10 240 - 1.29531 4 3 ack 40 ------- 0 5.0 0.0 10 240 - 1.29565 3 4 cbr 1000 ------- 1 2.0 7.0 76 230 r 1.29765 3 4 cbr 500 ------- 1 1.0 6.0 112 219 + 1.29765 4 6 cbr 500 ------- 1 1.0 6.0 112 219 - 1.29765 4 6 cbr 500 ------- 1 1.0 6.0 112 219 + 1.3 2 3 cbr 1000 ------- 1 2.0 7.0 80 245 - 1.3 2 3 cbr 1000 ------- 1 2.0 7.0 80 245 + 1.3 1 3 cbr 500 ------- 1 1.0 6.0 125 246 - 1.3 1 3 cbr 500 ------- 1 1.0 6.0 125 246 r 1.30165 4 6 cbr 500 ------- 1 1.0 6.0 111 217 - 1.30365 3 4 cbr 500 ------- 1 1.0 6.0 118 232 r 1.304 1 3 cbr 500 ------- 1 1.0 6.0 123 242 + 1.304 3 4 cbr 500 ------- 1 1.0 6.0 123 242 r 1.30565 3 4 tcp 1000 ------- 0 0.0 5.0 13 220 + 1.30565 4 5 tcp 1000 ------- 0 0.0 5.0 13 220 - 1.30565 4 5 tcp 1000 ------- 0 0.0 5.0 13 220 - 1.30765 3 4 cbr 500 ------- 1 1.0 6.0 119 234 r 1.308 2 3 cbr 1000 ------- 1 2.0 7.0 79 241 + 1.308 3 4 cbr 1000 ------- 1 2.0 7.0 79 241 r 1.30965 3 4 cbr 500 ------- 1 1.0 6.0 113 222 + 1.30965 4 6 cbr 500 ------- 1 1.0 6.0 113 222 - 1.30965 4 6 cbr 500 ------- 1 1.0 6.0 113 222 + 1.31 1 3 cbr 500 ------- 1 1.0 6.0 126 247 - 1.31 1 3 cbr 500 ------- 1 1.0 6.0 126 247 - 1.31165 3 4 cbr 1000 ------- 1 2.0 7.0 77 233 r 1.31365 4 7 cbr 1000 ------- 1 2.0 7.0 73 216 r 1.314 1 3 cbr 500 ------- 1 1.0 6.0 124 243 + 1.314 3 4 cbr 500 ------- 1 1.0 6.0 124 243 r 1.31525 4 5 tcp 1000 ------- 0 0.0 5.0 12 218 + 1.31525 5 4 ack 40 ------- 0 5.0 0.0 12 248 - 1.31525 5 4 ack 40 ------- 0 5.0 0.0 12 248 r 1.31531 5 4 ack 40 ------- 0 5.0 0.0 11 244 + 1.31531 4 3 ack 40 ------- 0 5.0 0.0 11 244 - 1.31531 4 3 ack 40 ------- 0 5.0 0.0 11 244 r 1.31765 3 4 tcp 1000 ------- 0 0.0 5.0 14 223 + 1.31765 4 5 tcp 1000 ------- 0 0.0 5.0 14 223 - 1.31765 4 5 tcp 1000 ------- 0 0.0 5.0 14 223 - 1.31965 3 4 cbr 500 ------- 1 1.0 6.0 120 235 + 1.32 2 3 cbr 1000 ------- 1 2.0 7.0 81 249 - 1.32 2 3 cbr 1000 ------- 1 2.0 7.0 81 249 + 1.32 1 3 cbr 500 ------- 1 1.0 6.0 127 250 - 1.32 1 3 cbr 500 ------- 1 1.0 6.0 127 250 r 1.32165 3 4 cbr 500 ------- 1 1.0 6.0 114 224 + 1.32165 4 6 cbr 500 ------- 1 1.0 6.0 114 224 - 1.32165 4 6 cbr 500 ------- 1 1.0 6.0 114 224 r 1.32165 4 6 cbr 500 ------- 1 1.0 6.0 112 219 - 1.32365 3 4 cbr 500 ------- 1 1.0 6.0 121 237 r 1.324 1 3 cbr 500 ------- 1 1.0 6.0 125 246 + 1.324 3 4 cbr 500 ------- 1 1.0 6.0 125 246 r 1.32565 3 4 cbr 500 ------- 1 1.0 6.0 115 227 + 1.32565 4 6 cbr 500 ------- 1 1.0 6.0 115 227 - 1.32565 4 6 cbr 500 ------- 1 1.0 6.0 115 227 r 1.32725 4 5 tcp 1000 ------- 0 0.0 5.0 13 220 + 1.32725 5 4 ack 40 ------- 0 5.0 0.0 13 251 - 1.32725 5 4 ack 40 ------- 0 5.0 0.0 13 251 - 1.32765 3 4 cbr 1000 ------- 1 2.0 7.0 78 236 r 1.328 2 3 cbr 1000 ------- 1 2.0 7.0 80 245 + 1.328 3 4 cbr 1000 ------- 1 2.0 7.0 80 245 + 1.33 1 3 cbr 500 ------- 1 1.0 6.0 128 252 - 1.33 1 3 cbr 500 ------- 1 1.0 6.0 128 252 r 1.33363 4 3 ack 40 ------- 0 5.0 0.0 9 238 + 1.33363 3 0 ack 40 ------- 0 5.0 0.0 9 238 - 1.33363 3 0 ack 40 ------- 0 5.0 0.0 9 238 r 1.33365 3 4 tcp 1000 ------- 0 0.0 5.0 16 228 + 1.33365 4 5 tcp 1000 ------- 0 0.0 5.0 16 228 - 1.33365 4 5 tcp 1000 ------- 0 0.0 5.0 16 228 r 1.33365 4 6 cbr 500 ------- 1 1.0 6.0 113 222 r 1.334 1 3 cbr 500 ------- 1 1.0 6.0 126 247 + 1.334 3 4 cbr 500 ------- 1 1.0 6.0 126 247 r 1.33531 5 4 ack 40 ------- 0 5.0 0.0 12 248 + 1.33531 4 3 ack 40 ------- 0 5.0 0.0 12 248 - 1.33531 4 3 ack 40 ------- 0 5.0 0.0 12 248 - 1.33565 3 4 cbr 500 ------- 1 1.0 6.0 122 239 r 1.33925 4 5 tcp 1000 ------- 0 0.0 5.0 14 223 + 1.33925 5 4 ack 40 ------- 0 5.0 0.0 14 253 - 1.33925 5 4 ack 40 ------- 0 5.0 0.0 14 253 - 1.33965 3 4 cbr 500 ------- 1 1.0 6.0 123 242 + 1.34 2 3 cbr 1000 ------- 1 2.0 7.0 82 254 - 1.34 2 3 cbr 1000 ------- 1 2.0 7.0 82 254 + 1.34 1 3 cbr 500 ------- 1 1.0 6.0 129 255 - 1.34 1 3 cbr 500 ------- 1 1.0 6.0 129 255 r 1.34165 3 4 cbr 1000 ------- 1 2.0 7.0 75 226 + 1.34165 4 7 cbr 1000 ------- 1 2.0 7.0 75 226 - 1.34165 4 7 cbr 1000 ------- 1 2.0 7.0 75 226 - 1.34365 3 4 cbr 1000 ------- 1 2.0 7.0 79 241 r 1.344 1 3 cbr 500 ------- 1 1.0 6.0 127 250 + 1.344 3 4 cbr 500 ------- 1 1.0 6.0 127 250 r 1.34563 4 3 ack 40 ------- 0 5.0 0.0 10 240 + 1.34563 3 0 ack 40 ------- 0 5.0 0.0 10 240 - 1.34563 3 0 ack 40 ------- 0 5.0 0.0 10 240 r 1.34565 3 4 cbr 500 ------- 1 1.0 6.0 117 231 + 1.34565 4 6 cbr 500 ------- 1 1.0 6.0 117 231 - 1.34565 4 6 cbr 500 ------- 1 1.0 6.0 117 231 r 1.34565 4 6 cbr 500 ------- 1 1.0 6.0 114 224 r 1.34731 5 4 ack 40 ------- 0 5.0 0.0 13 251 + 1.34731 4 3 ack 40 ------- 0 5.0 0.0 13 251 - 1.34731 4 3 ack 40 ------- 0 5.0 0.0 13 251 r 1.348 2 3 cbr 1000 ------- 1 2.0 7.0 81 249 + 1.348 3 4 cbr 1000 ------- 1 2.0 7.0 81 249 r 1.34965 4 6 cbr 500 ------- 1 1.0 6.0 115 227 v 1.3500000000000001 eval {set sim_annotation {Send Packet_17 to 22}} + 1.35 1 3 cbr 500 ------- 1 1.0 6.0 130 256 - 1.35 1 3 cbr 500 ------- 1 1.0 6.0 130 256 - 1.35165 3 4 cbr 500 ------- 1 1.0 6.0 124 243 r 1.35365 3 4 cbr 1000 ------- 1 2.0 7.0 76 230 + 1.35365 4 7 cbr 1000 ------- 1 2.0 7.0 76 230 - 1.35365 4 7 cbr 1000 ------- 1 2.0 7.0 76 230 r 1.3537 3 0 ack 40 ------- 0 5.0 0.0 9 238 + 1.3537 0 3 tcp 1000 ------- 0 0.0 5.0 17 257 - 1.3537 0 3 tcp 1000 ------- 0 0.0 5.0 17 257 r 1.354 1 3 cbr 500 ------- 1 1.0 6.0 128 252 + 1.354 3 4 cbr 500 ------- 1 1.0 6.0 128 252 r 1.35525 4 5 tcp 1000 ------- 0 0.0 5.0 16 228 + 1.35525 5 4 ack 40 ------- 0 5.0 0.0 14 258 - 1.35525 5 4 ack 40 ------- 0 5.0 0.0 14 258 - 1.35565 3 4 cbr 500 ------- 1 1.0 6.0 125 246 r 1.35765 3 4 cbr 500 ------- 1 1.0 6.0 118 232 + 1.35765 4 6 cbr 500 ------- 1 1.0 6.0 118 232 - 1.35765 4 6 cbr 500 ------- 1 1.0 6.0 118 232 r 1.35931 5 4 ack 40 ------- 0 5.0 0.0 14 253 + 1.35931 4 3 ack 40 ------- 0 5.0 0.0 14 253 - 1.35931 4 3 ack 40 ------- 0 5.0 0.0 14 253 - 1.35965 3 4 cbr 1000 ------- 1 2.0 7.0 80 245 + 1.36 2 3 cbr 1000 ------- 1 2.0 7.0 83 259 - 1.36 2 3 cbr 1000 ------- 1 2.0 7.0 83 259 + 1.36 1 3 cbr 500 ------- 1 1.0 6.0 131 260 - 1.36 1 3 cbr 500 ------- 1 1.0 6.0 131 260 r 1.36165 3 4 cbr 500 ------- 1 1.0 6.0 119 234 + 1.36165 4 6 cbr 500 ------- 1 1.0 6.0 119 234 - 1.36165 4 6 cbr 500 ------- 1 1.0 6.0 119 234 r 1.364 1 3 cbr 500 ------- 1 1.0 6.0 129 255 + 1.364 3 4 cbr 500 ------- 1 1.0 6.0 129 255 r 1.36563 4 3 ack 40 ------- 0 5.0 0.0 11 244 + 1.36563 3 0 ack 40 ------- 0 5.0 0.0 11 244 - 1.36563 3 0 ack 40 ------- 0 5.0 0.0 11 244 r 1.3657 3 0 ack 40 ------- 0 5.0 0.0 10 240 + 1.3657 0 3 tcp 1000 ------- 0 0.0 5.0 18 261 - 1.3657 0 3 tcp 1000 ------- 0 0.0 5.0 18 261 - 1.36765 3 4 cbr 500 ------- 1 1.0 6.0 126 247 r 1.368 2 3 cbr 1000 ------- 1 2.0 7.0 82 254 + 1.368 3 4 cbr 1000 ------- 1 2.0 7.0 82 254 r 1.36965 3 4 cbr 1000 ------- 1 2.0 7.0 77 233 + 1.36965 4 7 cbr 1000 ------- 1 2.0 7.0 77 233 - 1.36965 4 7 cbr 1000 ------- 1 2.0 7.0 77 233 r 1.36965 4 7 cbr 1000 ------- 1 2.0 7.0 75 226 r 1.36965 4 6 cbr 500 ------- 1 1.0 6.0 117 231 + 1.37 1 3 cbr 500 ------- 1 1.0 6.0 132 262 - 1.37 1 3 cbr 500 ------- 1 1.0 6.0 132 262 - 1.37165 3 4 cbr 500 ------- 1 1.0 6.0 127 250 r 1.37365 3 4 cbr 500 ------- 1 1.0 6.0 120 235 + 1.37365 4 6 cbr 500 ------- 1 1.0 6.0 120 235 - 1.37365 4 6 cbr 500 ------- 1 1.0 6.0 120 235 r 1.374 1 3 cbr 500 ------- 1 1.0 6.0 130 256 + 1.374 3 4 cbr 500 ------- 1 1.0 6.0 130 256 r 1.3753 0 3 tcp 1000 ------- 0 0.0 5.0 17 257 + 1.3753 3 4 tcp 1000 ------- 0 0.0 5.0 17 257 r 1.37531 5 4 ack 40 ------- 0 5.0 0.0 14 258 + 1.37531 4 3 ack 40 ------- 0 5.0 0.0 14 258 - 1.37531 4 3 ack 40 ------- 0 5.0 0.0 14 258 - 1.37565 3 4 cbr 1000 ------- 1 2.0 7.0 81 249 r 1.37765 3 4 cbr 500 ------- 1 1.0 6.0 121 237 + 1.37765 4 6 cbr 500 ------- 1 1.0 6.0 121 237 - 1.37765 4 6 cbr 500 ------- 1 1.0 6.0 121 237 + 1.38 2 3 cbr 1000 ------- 1 2.0 7.0 84 263 - 1.38 2 3 cbr 1000 ------- 1 2.0 7.0 84 263 + 1.38 1 3 cbr 500 ------- 1 1.0 6.0 133 264 - 1.38 1 3 cbr 500 ------- 1 1.0 6.0 133 264 r 1.38165 4 7 cbr 1000 ------- 1 2.0 7.0 76 230 r 1.38165 4 6 cbr 500 ------- 1 1.0 6.0 118 232 - 1.38365 3 4 cbr 500 ------- 1 1.0 6.0 128 252 r 1.384 1 3 cbr 500 ------- 1 1.0 6.0 131 260 + 1.384 3 4 cbr 500 ------- 1 1.0 6.0 131 260 r 1.38563 4 3 ack 40 ------- 0 5.0 0.0 12 248 + 1.38563 3 0 ack 40 ------- 0 5.0 0.0 12 248 - 1.38563 3 0 ack 40 ------- 0 5.0 0.0 12 248 r 1.38565 3 4 cbr 1000 ------- 1 2.0 7.0 78 236 + 1.38565 4 7 cbr 1000 ------- 1 2.0 7.0 78 236 - 1.38565 4 7 cbr 1000 ------- 1 2.0 7.0 78 236 r 1.38565 4 6 cbr 500 ------- 1 1.0 6.0 119 234 r 1.3857 3 0 ack 40 ------- 0 5.0 0.0 11 244 + 1.3857 0 3 tcp 1000 ------- 0 0.0 5.0 19 265 - 1.3857 0 3 tcp 1000 ------- 0 0.0 5.0 19 265 r 1.3873 0 3 tcp 1000 ------- 0 0.0 5.0 18 261 + 1.3873 3 4 tcp 1000 ------- 0 0.0 5.0 18 261 - 1.38765 3 4 cbr 500 ------- 1 1.0 6.0 129 255 r 1.388 2 3 cbr 1000 ------- 1 2.0 7.0 83 259 + 1.388 3 4 cbr 1000 ------- 1 2.0 7.0 83 259 r 1.38965 3 4 cbr 500 ------- 1 1.0 6.0 122 239 + 1.38965 4 6 cbr 500 ------- 1 1.0 6.0 122 239 - 1.38965 4 6 cbr 500 ------- 1 1.0 6.0 122 239 + 1.39 1 3 cbr 500 ------- 1 1.0 6.0 134 266 - 1.39 1 3 cbr 500 ------- 1 1.0 6.0 134 266 - 1.39165 3 4 cbr 1000 ------- 1 2.0 7.0 82 254 r 1.39365 3 4 cbr 500 ------- 1 1.0 6.0 123 242 + 1.39365 4 6 cbr 500 ------- 1 1.0 6.0 123 242 - 1.39365 4 6 cbr 500 ------- 1 1.0 6.0 123 242 r 1.394 1 3 cbr 500 ------- 1 1.0 6.0 132 262 + 1.394 3 4 cbr 500 ------- 1 1.0 6.0 132 262 r 1.39763 4 3 ack 40 ------- 0 5.0 0.0 13 251 + 1.39763 3 0 ack 40 ------- 0 5.0 0.0 13 251 - 1.39763 3 0 ack 40 ------- 0 5.0 0.0 13 251 r 1.39765 4 7 cbr 1000 ------- 1 2.0 7.0 77 233 r 1.39765 4 6 cbr 500 ------- 1 1.0 6.0 120 235 - 1.39965 3 4 cbr 500 ------- 1 1.0 6.0 130 256 + 1.4 2 3 cbr 1000 ------- 1 2.0 7.0 85 267 - 1.4 2 3 cbr 1000 ------- 1 2.0 7.0 85 267 + 1.4 1 3 cbr 500 ------- 1 1.0 6.0 135 268 - 1.4 1 3 cbr 500 ------- 1 1.0 6.0 135 268 r 1.40165 3 4 cbr 1000 ------- 1 2.0 7.0 79 241 + 1.40165 4 7 cbr 1000 ------- 1 2.0 7.0 79 241 - 1.40165 4 7 cbr 1000 ------- 1 2.0 7.0 79 241 r 1.40165 4 6 cbr 500 ------- 1 1.0 6.0 121 237 - 1.40365 3 4 tcp 1000 ------- 0 0.0 5.0 17 257 r 1.404 1 3 cbr 500 ------- 1 1.0 6.0 133 264 + 1.404 3 4 cbr 500 ------- 1 1.0 6.0 133 264 r 1.40565 3 4 cbr 500 ------- 1 1.0 6.0 124 243 + 1.40565 4 6 cbr 500 ------- 1 1.0 6.0 124 243 - 1.40565 4 6 cbr 500 ------- 1 1.0 6.0 124 243 r 1.4057 3 0 ack 40 ------- 0 5.0 0.0 12 248 + 1.4057 0 3 tcp 1000 ------- 0 0.0 5.0 20 269 - 1.4057 0 3 tcp 1000 ------- 0 0.0 5.0 20 269 r 1.4073 0 3 tcp 1000 ------- 0 0.0 5.0 19 265 + 1.4073 3 4 tcp 1000 ------- 0 0.0 5.0 19 265 r 1.408 2 3 cbr 1000 ------- 1 2.0 7.0 84 263 + 1.408 3 4 cbr 1000 ------- 1 2.0 7.0 84 263 r 1.40963 4 3 ack 40 ------- 0 5.0 0.0 14 253 + 1.40963 3 0 ack 40 ------- 0 5.0 0.0 14 253 - 1.40963 3 0 ack 40 ------- 0 5.0 0.0 14 253 r 1.40965 3 4 cbr 500 ------- 1 1.0 6.0 125 246 + 1.40965 4 6 cbr 500 ------- 1 1.0 6.0 125 246 - 1.40965 4 6 cbr 500 ------- 1 1.0 6.0 125 246 + 1.41 1 3 cbr 500 ------- 1 1.0 6.0 136 270 - 1.41 1 3 cbr 500 ------- 1 1.0 6.0 136 270 - 1.41165 3 4 cbr 500 ------- 1 1.0 6.0 131 260 r 1.41365 4 7 cbr 1000 ------- 1 2.0 7.0 78 236 r 1.41365 4 6 cbr 500 ------- 1 1.0 6.0 122 239 r 1.414 1 3 cbr 500 ------- 1 1.0 6.0 134 266 + 1.414 3 4 cbr 500 ------- 1 1.0 6.0 134 266 - 1.41565 3 4 tcp 1000 ------- 0 0.0 5.0 18 261 r 1.41765 3 4 cbr 1000 ------- 1 2.0 7.0 80 245 + 1.41765 4 7 cbr 1000 ------- 1 2.0 7.0 80 245 - 1.41765 4 7 cbr 1000 ------- 1 2.0 7.0 80 245 r 1.41765 4 6 cbr 500 ------- 1 1.0 6.0 123 242 r 1.4177 3 0 ack 40 ------- 0 5.0 0.0 13 251 + 1.4177 0 3 tcp 1000 ------- 0 0.0 5.0 21 271 - 1.4177 0 3 tcp 1000 ------- 0 0.0 5.0 21 271 + 1.42 2 3 cbr 1000 ------- 1 2.0 7.0 86 272 - 1.42 2 3 cbr 1000 ------- 1 2.0 7.0 86 272 + 1.42 1 3 cbr 500 ------- 1 1.0 6.0 137 273 - 1.42 1 3 cbr 500 ------- 1 1.0 6.0 137 273 r 1.42165 3 4 cbr 500 ------- 1 1.0 6.0 126 247 + 1.42165 4 6 cbr 500 ------- 1 1.0 6.0 126 247 - 1.42165 4 6 cbr 500 ------- 1 1.0 6.0 126 247 - 1.42365 3 4 cbr 1000 ------- 1 2.0 7.0 83 259 r 1.424 1 3 cbr 500 ------- 1 1.0 6.0 135 268 + 1.424 3 4 cbr 500 ------- 1 1.0 6.0 135 268 r 1.42563 4 3 ack 40 ------- 0 5.0 0.0 14 258 + 1.42563 3 0 ack 40 ------- 0 5.0 0.0 14 258 - 1.42563 3 0 ack 40 ------- 0 5.0 0.0 14 258 r 1.42565 3 4 cbr 500 ------- 1 1.0 6.0 127 250 + 1.42565 4 6 cbr 500 ------- 1 1.0 6.0 127 250 - 1.42565 4 6 cbr 500 ------- 1 1.0 6.0 127 250 r 1.4273 0 3 tcp 1000 ------- 0 0.0 5.0 20 269 + 1.4273 3 4 tcp 1000 ------- 0 0.0 5.0 20 269 r 1.428 2 3 cbr 1000 ------- 1 2.0 7.0 85 267 + 1.428 3 4 cbr 1000 ------- 1 2.0 7.0 85 267 r 1.42965 4 7 cbr 1000 ------- 1 2.0 7.0 79 241 r 1.42965 4 6 cbr 500 ------- 1 1.0 6.0 124 243 r 1.4297 3 0 ack 40 ------- 0 5.0 0.0 14 253 + 1.4297 0 3 tcp 1000 ------- 0 0.0 5.0 22 274 - 1.4297 0 3 tcp 1000 ------- 0 0.0 5.0 22 274 + 1.43 1 3 cbr 500 ------- 1 1.0 6.0 138 275 - 1.43 1 3 cbr 500 ------- 1 1.0 6.0 138 275 - 1.43165 3 4 cbr 500 ------- 1 1.0 6.0 132 262 r 1.43365 3 4 cbr 1000 ------- 1 2.0 7.0 81 249 + 1.43365 4 7 cbr 1000 ------- 1 2.0 7.0 81 249 - 1.43365 4 7 cbr 1000 ------- 1 2.0 7.0 81 249 r 1.43365 4 6 cbr 500 ------- 1 1.0 6.0 125 246 r 1.434 1 3 cbr 500 ------- 1 1.0 6.0 136 270 + 1.434 3 4 cbr 500 ------- 1 1.0 6.0 136 270 - 1.43565 3 4 cbr 500 ------- 1 1.0 6.0 133 264 r 1.43765 3 4 cbr 500 ------- 1 1.0 6.0 128 252 + 1.43765 4 6 cbr 500 ------- 1 1.0 6.0 128 252 - 1.43765 4 6 cbr 500 ------- 1 1.0 6.0 128 252 r 1.4393 0 3 tcp 1000 ------- 0 0.0 5.0 21 271 + 1.4393 3 4 tcp 1000 ------- 0 0.0 5.0 21 271 - 1.43965 3 4 tcp 1000 ------- 0 0.0 5.0 19 265 + 1.44 2 3 cbr 1000 ------- 1 2.0 7.0 87 276 - 1.44 2 3 cbr 1000 ------- 1 2.0 7.0 87 276 + 1.44 1 3 cbr 500 ------- 1 1.0 6.0 139 277 - 1.44 1 3 cbr 500 ------- 1 1.0 6.0 139 277 r 1.44165 3 4 cbr 500 ------- 1 1.0 6.0 129 255 + 1.44165 4 6 cbr 500 ------- 1 1.0 6.0 129 255 - 1.44165 4 6 cbr 500 ------- 1 1.0 6.0 129 255 r 1.444 1 3 cbr 500 ------- 1 1.0 6.0 137 273 + 1.444 3 4 cbr 500 ------- 1 1.0 6.0 137 273 r 1.44565 4 7 cbr 1000 ------- 1 2.0 7.0 80 245 r 1.44565 4 6 cbr 500 ------- 1 1.0 6.0 126 247 r 1.4457 3 0 ack 40 ------- 0 5.0 0.0 14 258 - 1.44765 3 4 cbr 1000 ------- 1 2.0 7.0 84 263 r 1.448 2 3 cbr 1000 ------- 1 2.0 7.0 86 272 + 1.448 3 4 cbr 1000 ------- 1 2.0 7.0 86 272 r 1.44965 3 4 cbr 1000 ------- 1 2.0 7.0 82 254 + 1.44965 4 7 cbr 1000 ------- 1 2.0 7.0 82 254 - 1.44965 4 7 cbr 1000 ------- 1 2.0 7.0 82 254 r 1.44965 4 6 cbr 500 ------- 1 1.0 6.0 127 250 + 1.45 1 3 cbr 500 ------- 1 1.0 6.0 140 278 - 1.45 1 3 cbr 500 ------- 1 1.0 6.0 140 278 r 1.4513 0 3 tcp 1000 ------- 0 0.0 5.0 22 274 + 1.4513 3 4 tcp 1000 ------- 0 0.0 5.0 22 274 r 1.45365 3 4 cbr 500 ------- 1 1.0 6.0 130 256 + 1.45365 4 6 cbr 500 ------- 1 1.0 6.0 130 256 - 1.45365 4 6 cbr 500 ------- 1 1.0 6.0 130 256 r 1.454 1 3 cbr 500 ------- 1 1.0 6.0 138 275 + 1.454 3 4 cbr 500 ------- 1 1.0 6.0 138 275 d 1.454 3 4 cbr 500 ------- 1 1.0 6.0 138 275 - 1.45565 3 4 cbr 500 ------- 1 1.0 6.0 134 266 - 1.45965 3 4 cbr 500 ------- 1 1.0 6.0 135 268 + 1.46 2 3 cbr 1000 ------- 1 2.0 7.0 88 279 - 1.46 2 3 cbr 1000 ------- 1 2.0 7.0 88 279 + 1.46 1 3 cbr 500 ------- 1 1.0 6.0 141 280 - 1.46 1 3 cbr 500 ------- 1 1.0 6.0 141 280 r 1.46165 3 4 tcp 1000 ------- 0 0.0 5.0 17 257 + 1.46165 4 5 tcp 1000 ------- 0 0.0 5.0 17 257 - 1.46165 4 5 tcp 1000 ------- 0 0.0 5.0 17 257 r 1.46165 4 7 cbr 1000 ------- 1 2.0 7.0 81 249 r 1.46165 4 6 cbr 500 ------- 1 1.0 6.0 128 252 - 1.46365 3 4 tcp 1000 ------- 0 0.0 5.0 20 269 r 1.464 1 3 cbr 500 ------- 1 1.0 6.0 139 277 + 1.464 3 4 cbr 500 ------- 1 1.0 6.0 139 277 r 1.46565 3 4 cbr 500 ------- 1 1.0 6.0 131 260 + 1.46565 4 6 cbr 500 ------- 1 1.0 6.0 131 260 - 1.46565 4 6 cbr 500 ------- 1 1.0 6.0 131 260 r 1.46565 4 6 cbr 500 ------- 1 1.0 6.0 129 255 r 1.468 2 3 cbr 1000 ------- 1 2.0 7.0 87 276 + 1.468 3 4 cbr 1000 ------- 1 2.0 7.0 87 276 + 1.47 1 3 cbr 500 ------- 1 1.0 6.0 142 281 - 1.47 1 3 cbr 500 ------- 1 1.0 6.0 142 281 - 1.47165 3 4 cbr 1000 ------- 1 2.0 7.0 85 267 r 1.47365 3 4 tcp 1000 ------- 0 0.0 5.0 18 261 + 1.47365 4 5 tcp 1000 ------- 0 0.0 5.0 18 261 - 1.47365 4 5 tcp 1000 ------- 0 0.0 5.0 18 261 r 1.474 1 3 cbr 500 ------- 1 1.0 6.0 140 278 + 1.474 3 4 cbr 500 ------- 1 1.0 6.0 140 278 r 1.47765 4 7 cbr 1000 ------- 1 2.0 7.0 82 254 r 1.47765 4 6 cbr 500 ------- 1 1.0 6.0 130 256 - 1.47965 3 4 cbr 500 ------- 1 1.0 6.0 136 270 + 1.48 2 3 cbr 1000 ------- 1 2.0 7.0 89 282 - 1.48 2 3 cbr 1000 ------- 1 2.0 7.0 89 282 + 1.48 1 3 cbr 500 ------- 1 1.0 6.0 143 283 - 1.48 1 3 cbr 500 ------- 1 1.0 6.0 143 283 r 1.48165 3 4 cbr 1000 ------- 1 2.0 7.0 83 259 + 1.48165 4 7 cbr 1000 ------- 1 2.0 7.0 83 259 - 1.48165 4 7 cbr 1000 ------- 1 2.0 7.0 83 259 r 1.48325 4 5 tcp 1000 ------- 0 0.0 5.0 17 257 + 1.48325 5 4 ack 40 ------- 0 5.0 0.0 14 284 - 1.48325 5 4 ack 40 ------- 0 5.0 0.0 14 284 - 1.48365 3 4 tcp 1000 ------- 0 0.0 5.0 21 271 r 1.484 1 3 cbr 500 ------- 1 1.0 6.0 141 280 + 1.484 3 4 cbr 500 ------- 1 1.0 6.0 141 280 r 1.48565 3 4 cbr 500 ------- 1 1.0 6.0 132 262 + 1.48565 4 6 cbr 500 ------- 1 1.0 6.0 132 262 - 1.48565 4 6 cbr 500 ------- 1 1.0 6.0 132 262 r 1.488 2 3 cbr 1000 ------- 1 2.0 7.0 88 279 + 1.488 3 4 cbr 1000 ------- 1 2.0 7.0 88 279 r 1.48965 3 4 cbr 500 ------- 1 1.0 6.0 133 264 + 1.48965 4 6 cbr 500 ------- 1 1.0 6.0 133 264 r 1.48965 4 6 cbr 500 ------- 1 1.0 6.0 131 260 - 1.48965 4 6 cbr 500 ------- 1 1.0 6.0 133 264 v 1.49 eval {set sim_annotation {6 Ack_14s }} + 1.49 1 3 cbr 500 ------- 1 1.0 6.0 144 285 - 1.49 1 3 cbr 500 ------- 1 1.0 6.0 144 285 - 1.49165 3 4 cbr 500 ------- 1 1.0 6.0 137 273 r 1.494 1 3 cbr 500 ------- 1 1.0 6.0 142 281 + 1.494 3 4 cbr 500 ------- 1 1.0 6.0 142 281 r 1.49525 4 5 tcp 1000 ------- 0 0.0 5.0 18 261 + 1.49525 5 4 ack 40 ------- 0 5.0 0.0 14 286 - 1.49525 5 4 ack 40 ------- 0 5.0 0.0 14 286 - 1.49565 3 4 cbr 1000 ------- 1 2.0 7.0 86 272 r 1.49765 3 4 tcp 1000 ------- 0 0.0 5.0 19 265 + 1.49765 4 5 tcp 1000 ------- 0 0.0 5.0 19 265 - 1.49765 4 5 tcp 1000 ------- 0 0.0 5.0 19 265 + 1.5 2 3 cbr 1000 ------- 1 2.0 7.0 90 287 - 1.5 2 3 cbr 1000 ------- 1 2.0 7.0 90 287 + 1.5 1 3 cbr 500 ------- 1 1.0 6.0 145 288 - 1.5 1 3 cbr 500 ------- 1 1.0 6.0 145 288 r 1.50331 5 4 ack 40 ------- 0 5.0 0.0 14 284 + 1.50331 4 3 ack 40 ------- 0 5.0 0.0 14 284 - 1.50331 4 3 ack 40 ------- 0 5.0 0.0 14 284 - 1.50365 3 4 tcp 1000 ------- 0 0.0 5.0 22 274 r 1.504 1 3 cbr 500 ------- 1 1.0 6.0 143 283 + 1.504 3 4 cbr 500 ------- 1 1.0 6.0 143 283 r 1.50565 3 4 cbr 1000 ------- 1 2.0 7.0 84 263 + 1.50565 4 7 cbr 1000 ------- 1 2.0 7.0 84 263 - 1.50565 4 7 cbr 1000 ------- 1 2.0 7.0 84 263 r 1.508 2 3 cbr 1000 ------- 1 2.0 7.0 89 282 + 1.508 3 4 cbr 1000 ------- 1 2.0 7.0 89 282 r 1.50965 3 4 cbr 500 ------- 1 1.0 6.0 134 266 + 1.50965 4 6 cbr 500 ------- 1 1.0 6.0 134 266 - 1.50965 4 6 cbr 500 ------- 1 1.0 6.0 134 266 r 1.50965 4 7 cbr 1000 ------- 1 2.0 7.0 83 259 r 1.50965 4 6 cbr 500 ------- 1 1.0 6.0 132 262 - 1.51165 3 4 cbr 500 ------- 1 1.0 6.0 139 277 r 1.51365 3 4 cbr 500 ------- 1 1.0 6.0 135 268 + 1.51365 4 6 cbr 500 ------- 1 1.0 6.0 135 268 r 1.51365 4 6 cbr 500 ------- 1 1.0 6.0 133 264 - 1.51365 4 6 cbr 500 ------- 1 1.0 6.0 135 268 r 1.514 1 3 cbr 500 ------- 1 1.0 6.0 144 285 + 1.514 3 4 cbr 500 ------- 1 1.0 6.0 144 285 r 1.51531 5 4 ack 40 ------- 0 5.0 0.0 14 286 + 1.51531 4 3 ack 40 ------- 0 5.0 0.0 14 286 - 1.51531 4 3 ack 40 ------- 0 5.0 0.0 14 286 - 1.51565 3 4 cbr 1000 ------- 1 2.0 7.0 87 276 r 1.51925 4 5 tcp 1000 ------- 0 0.0 5.0 19 265 + 1.51925 5 4 ack 40 ------- 0 5.0 0.0 14 289 - 1.51925 5 4 ack 40 ------- 0 5.0 0.0 14 289 + 1.52 2 3 cbr 1000 ------- 1 2.0 7.0 91 290 - 1.52 2 3 cbr 1000 ------- 1 2.0 7.0 91 290 + 1.52 1 3 cbr 500 ------- 1 1.0 6.0 146 291 - 1.52 1 3 cbr 500 ------- 1 1.0 6.0 146 291 r 1.52165 3 4 tcp 1000 ------- 0 0.0 5.0 20 269 + 1.52165 4 5 tcp 1000 ------- 0 0.0 5.0 20 269 - 1.52165 4 5 tcp 1000 ------- 0 0.0 5.0 20 269 - 1.52365 3 4 cbr 500 ------- 1 1.0 6.0 140 278 r 1.524 1 3 cbr 500 ------- 1 1.0 6.0 145 288 + 1.524 3 4 cbr 500 ------- 1 1.0 6.0 145 288 - 1.52765 3 4 cbr 500 ------- 1 1.0 6.0 141 280 r 1.528 2 3 cbr 1000 ------- 1 2.0 7.0 90 287 + 1.528 3 4 cbr 1000 ------- 1 2.0 7.0 90 287 r 1.52965 3 4 cbr 1000 ------- 1 2.0 7.0 85 267 + 1.52965 4 7 cbr 1000 ------- 1 2.0 7.0 85 267 - 1.52965 4 7 cbr 1000 ------- 1 2.0 7.0 85 267 - 1.53165 3 4 cbr 1000 ------- 1 2.0 7.0 88 279 r 1.53365 3 4 cbr 500 ------- 1 1.0 6.0 136 270 + 1.53365 4 6 cbr 500 ------- 1 1.0 6.0 136 270 - 1.53365 4 6 cbr 500 ------- 1 1.0 6.0 136 270 r 1.53365 4 7 cbr 1000 ------- 1 2.0 7.0 84 263 r 1.53365 4 6 cbr 500 ------- 1 1.0 6.0 134 266 r 1.53765 4 6 cbr 500 ------- 1 1.0 6.0 135 268 r 1.53931 5 4 ack 40 ------- 0 5.0 0.0 14 289 + 1.53931 4 3 ack 40 ------- 0 5.0 0.0 14 289 - 1.53931 4 3 ack 40 ------- 0 5.0 0.0 14 289 - 1.53965 3 4 cbr 500 ------- 1 1.0 6.0 142 281 + 1.54 2 3 cbr 1000 ------- 1 2.0 7.0 92 292 - 1.54 2 3 cbr 1000 ------- 1 2.0 7.0 92 292 + 1.54 1 3 cbr 500 ------- 1 1.0 6.0 147 293 - 1.54 1 3 cbr 500 ------- 1 1.0 6.0 147 293 r 1.54165 3 4 tcp 1000 ------- 0 0.0 5.0 21 271 + 1.54165 4 5 tcp 1000 ------- 0 0.0 5.0 21 271 - 1.54165 4 5 tcp 1000 ------- 0 0.0 5.0 21 271 r 1.54325 4 5 tcp 1000 ------- 0 0.0 5.0 20 269 + 1.54325 5 4 ack 40 ------- 0 5.0 0.0 14 294 - 1.54325 5 4 ack 40 ------- 0 5.0 0.0 14 294 - 1.54365 3 4 cbr 500 ------- 1 1.0 6.0 143 283 r 1.544 1 3 cbr 500 ------- 1 1.0 6.0 146 291 + 1.544 3 4 cbr 500 ------- 1 1.0 6.0 146 291 r 1.54565 3 4 cbr 500 ------- 1 1.0 6.0 137 273 + 1.54565 4 6 cbr 500 ------- 1 1.0 6.0 137 273 - 1.54565 4 6 cbr 500 ------- 1 1.0 6.0 137 273 - 1.54765 3 4 cbr 1000 ------- 1 2.0 7.0 89 282 r 1.548 2 3 cbr 1000 ------- 1 2.0 7.0 91 290 + 1.548 3 4 cbr 1000 ------- 1 2.0 7.0 91 290 r 1.55363 4 3 ack 40 ------- 0 5.0 0.0 14 284 + 1.55363 3 0 ack 40 ------- 0 5.0 0.0 14 284 - 1.55363 3 0 ack 40 ------- 0 5.0 0.0 14 284 r 1.55365 3 4 cbr 1000 ------- 1 2.0 7.0 86 272 + 1.55365 4 7 cbr 1000 ------- 1 2.0 7.0 86 272 - 1.55365 4 7 cbr 1000 ------- 1 2.0 7.0 86 272 - 1.55565 3 4 cbr 500 ------- 1 1.0 6.0 144 285 r 1.55765 4 7 cbr 1000 ------- 1 2.0 7.0 85 267 r 1.55765 4 6 cbr 500 ------- 1 1.0 6.0 136 270 - 1.55965 3 4 cbr 500 ------- 1 1.0 6.0 145 288 + 1.56 2 3 cbr 1000 ------- 1 2.0 7.0 93 295 - 1.56 2 3 cbr 1000 ------- 1 2.0 7.0 93 295 + 1.56 1 3 cbr 500 ------- 1 1.0 6.0 148 296 - 1.56 1 3 cbr 500 ------- 1 1.0 6.0 148 296 r 1.56165 3 4 tcp 1000 ------- 0 0.0 5.0 22 274 + 1.56165 4 5 tcp 1000 ------- 0 0.0 5.0 22 274 - 1.56165 4 5 tcp 1000 ------- 0 0.0 5.0 22 274 r 1.56325 4 5 tcp 1000 ------- 0 0.0 5.0 21 271 + 1.56325 5 4 ack 40 ------- 0 5.0 0.0 14 297 - 1.56325 5 4 ack 40 ------- 0 5.0 0.0 14 297 r 1.56331 5 4 ack 40 ------- 0 5.0 0.0 14 294 + 1.56331 4 3 ack 40 ------- 0 5.0 0.0 14 294 - 1.56331 4 3 ack 40 ------- 0 5.0 0.0 14 294 - 1.56365 3 4 cbr 1000 ------- 1 2.0 7.0 90 287 r 1.564 1 3 cbr 500 ------- 1 1.0 6.0 147 293 + 1.564 3 4 cbr 500 ------- 1 1.0 6.0 147 293 r 1.56563 4 3 ack 40 ------- 0 5.0 0.0 14 286 + 1.56563 3 0 ack 40 ------- 0 5.0 0.0 14 286 - 1.56563 3 0 ack 40 ------- 0 5.0 0.0 14 286 r 1.56565 3 4 cbr 500 ------- 1 1.0 6.0 139 277 + 1.56565 4 6 cbr 500 ------- 1 1.0 6.0 139 277 - 1.56565 4 6 cbr 500 ------- 1 1.0 6.0 139 277 r 1.568 2 3 cbr 1000 ------- 1 2.0 7.0 92 292 + 1.568 3 4 cbr 1000 ------- 1 2.0 7.0 92 292 r 1.56965 4 6 cbr 500 ------- 1 1.0 6.0 137 273 - 1.57165 3 4 cbr 500 ------- 1 1.0 6.0 146 291 r 1.57365 3 4 cbr 1000 ------- 1 2.0 7.0 87 276 + 1.57365 4 7 cbr 1000 ------- 1 2.0 7.0 87 276 - 1.57365 4 7 cbr 1000 ------- 1 2.0 7.0 87 276 r 1.5737 3 0 ack 40 ------- 0 5.0 0.0 14 284 - 1.57565 3 4 cbr 1000 ------- 1 2.0 7.0 91 290 r 1.57765 3 4 cbr 500 ------- 1 1.0 6.0 140 278 + 1.57765 4 6 cbr 500 ------- 1 1.0 6.0 140 278 - 1.57765 4 6 cbr 500 ------- 1 1.0 6.0 140 278 v 1.5800000000000001 eval {set sim_annotation {Send Packet_15 to 22}} + 1.58 2 3 cbr 1000 ------- 1 2.0 7.0 94 298 - 1.58 2 3 cbr 1000 ------- 1 2.0 7.0 94 298 + 1.58 1 3 cbr 500 ------- 1 1.0 6.0 149 299 - 1.58 1 3 cbr 500 ------- 1 1.0 6.0 149 299 r 1.58165 3 4 cbr 500 ------- 1 1.0 6.0 141 280 + 1.58165 4 6 cbr 500 ------- 1 1.0 6.0 141 280 r 1.58165 4 7 cbr 1000 ------- 1 2.0 7.0 86 272 - 1.58165 4 6 cbr 500 ------- 1 1.0 6.0 141 280 r 1.58325 4 5 tcp 1000 ------- 0 0.0 5.0 22 274 + 1.58325 5 4 ack 40 ------- 0 5.0 0.0 14 300 - 1.58325 5 4 ack 40 ------- 0 5.0 0.0 14 300 r 1.58331 5 4 ack 40 ------- 0 5.0 0.0 14 297 + 1.58331 4 3 ack 40 ------- 0 5.0 0.0 14 297 - 1.58331 4 3 ack 40 ------- 0 5.0 0.0 14 297 - 1.58365 3 4 cbr 500 ------- 1 1.0 6.0 147 293 r 1.584 1 3 cbr 500 ------- 1 1.0 6.0 148 296 + 1.584 3 4 cbr 500 ------- 1 1.0 6.0 148 296 r 1.5857 3 0 ack 40 ------- 0 5.0 0.0 14 286 + 1.5857 0 3 tcp 1000 ------- 0 0.0 5.0 15 301 - 1.5857 0 3 tcp 1000 ------- 0 0.0 5.0 15 301 + 1.5857 0 3 tcp 1000 ------- 0 0.0 5.0 16 302 + 1.5857 0 3 tcp 1000 ------- 0 0.0 5.0 17 303 + 1.5857 0 3 tcp 1000 ------- 0 0.0 5.0 18 304 + 1.5857 0 3 tcp 1000 ------- 0 0.0 5.0 19 305 + 1.5857 0 3 tcp 1000 ------- 0 0.0 5.0 20 306 + 1.5857 0 3 tcp 1000 ------- 0 0.0 5.0 21 307 + 1.5857 0 3 tcp 1000 ------- 0 0.0 5.0 22 308 - 1.5873 0 3 tcp 1000 ------- 0 0.0 5.0 16 302 - 1.58765 3 4 cbr 1000 ------- 1 2.0 7.0 92 292 r 1.588 2 3 cbr 1000 ------- 1 2.0 7.0 93 295 + 1.588 3 4 cbr 1000 ------- 1 2.0 7.0 93 295 - 1.5889 0 3 tcp 1000 ------- 0 0.0 5.0 17 303 r 1.58963 4 3 ack 40 ------- 0 5.0 0.0 14 289 + 1.58963 3 0 ack 40 ------- 0 5.0 0.0 14 289 - 1.58963 3 0 ack 40 ------- 0 5.0 0.0 14 289 r 1.58965 3 4 cbr 1000 ------- 1 2.0 7.0 88 279 + 1.58965 4 7 cbr 1000 ------- 1 2.0 7.0 88 279 - 1.58965 4 7 cbr 1000 ------- 1 2.0 7.0 88 279 r 1.58965 4 6 cbr 500 ------- 1 1.0 6.0 139 277 - 1.5905 0 3 tcp 1000 ------- 0 0.0 5.0 18 304 - 1.5921 0 3 tcp 1000 ------- 0 0.0 5.0 19 305 r 1.59365 3 4 cbr 500 ------- 1 1.0 6.0 142 281 + 1.59365 4 6 cbr 500 ------- 1 1.0 6.0 142 281 - 1.59365 4 6 cbr 500 ------- 1 1.0 6.0 142 281 - 1.5937 0 3 tcp 1000 ------- 0 0.0 5.0 20 306 - 1.5953 0 3 tcp 1000 ------- 0 0.0 5.0 21 307 - 1.59565 3 4 cbr 500 ------- 1 1.0 6.0 148 296 - 1.5969 0 3 tcp 1000 ------- 0 0.0 5.0 22 308 r 1.59765 3 4 cbr 500 ------- 1 1.0 6.0 143 283 + 1.59765 4 6 cbr 500 ------- 1 1.0 6.0 143 283 - 1.59765 4 6 cbr 500 ------- 1 1.0 6.0 143 283 - 1.59965 3 4 cbr 1000 ------- 1 2.0 7.0 93 295 + 1.6 2 3 cbr 1000 ------- 1 2.0 7.0 95 309 - 1.6 2 3 cbr 1000 ------- 1 2.0 7.0 95 309 + 1.6 1 3 cbr 500 ------- 1 1.0 6.0 150 310 - 1.6 1 3 cbr 500 ------- 1 1.0 6.0 150 310 r 1.60165 4 7 cbr 1000 ------- 1 2.0 7.0 87 276 r 1.60165 4 6 cbr 500 ------- 1 1.0 6.0 140 278 r 1.60331 5 4 ack 40 ------- 0 5.0 0.0 14 300 + 1.60331 4 3 ack 40 ------- 0 5.0 0.0 14 300 - 1.60331 4 3 ack 40 ------- 0 5.0 0.0 14 300 r 1.604 1 3 cbr 500 ------- 1 1.0 6.0 149 299 + 1.604 3 4 cbr 500 ------- 1 1.0 6.0 149 299 r 1.60565 3 4 cbr 1000 ------- 1 2.0 7.0 89 282 + 1.60565 4 7 cbr 1000 ------- 1 2.0 7.0 89 282 - 1.60565 4 7 cbr 1000 ------- 1 2.0 7.0 89 282 r 1.60565 4 6 cbr 500 ------- 1 1.0 6.0 141 280 r 1.6073 0 3 tcp 1000 ------- 0 0.0 5.0 15 301 + 1.6073 3 4 tcp 1000 ------- 0 0.0 5.0 15 301 - 1.60765 3 4 cbr 500 ------- 1 1.0 6.0 149 299 r 1.608 2 3 cbr 1000 ------- 1 2.0 7.0 94 298 + 1.608 3 4 cbr 1000 ------- 1 2.0 7.0 94 298 r 1.6089 0 3 tcp 1000 ------- 0 0.0 5.0 16 302 + 1.6089 3 4 tcp 1000 ------- 0 0.0 5.0 16 302 r 1.60965 3 4 cbr 500 ------- 1 1.0 6.0 144 285 + 1.60965 4 6 cbr 500 ------- 1 1.0 6.0 144 285 - 1.60965 4 6 cbr 500 ------- 1 1.0 6.0 144 285 r 1.6097 3 0 ack 40 ------- 0 5.0 0.0 14 289 r 1.6105 0 3 tcp 1000 ------- 0 0.0 5.0 17 303 + 1.6105 3 4 tcp 1000 ------- 0 0.0 5.0 17 303 - 1.61165 3 4 tcp 1000 ------- 0 0.0 5.0 15 301 r 1.6121 0 3 tcp 1000 ------- 0 0.0 5.0 18 304 + 1.6121 3 4 tcp 1000 ------- 0 0.0 5.0 18 304 r 1.61363 4 3 ack 40 ------- 0 5.0 0.0 14 294 + 1.61363 3 0 ack 40 ------- 0 5.0 0.0 14 294 - 1.61363 3 0 ack 40 ------- 0 5.0 0.0 14 294 r 1.61365 3 4 cbr 500 ------- 1 1.0 6.0 145 288 + 1.61365 4 6 cbr 500 ------- 1 1.0 6.0 145 288 - 1.61365 4 6 cbr 500 ------- 1 1.0 6.0 145 288 r 1.6137 0 3 tcp 1000 ------- 0 0.0 5.0 19 305 + 1.6137 3 4 tcp 1000 ------- 0 0.0 5.0 19 305 r 1.6153 0 3 tcp 1000 ------- 0 0.0 5.0 20 306 + 1.6153 3 4 tcp 1000 ------- 0 0.0 5.0 20 306 r 1.6169 0 3 tcp 1000 ------- 0 0.0 5.0 21 307 + 1.6169 3 4 tcp 1000 ------- 0 0.0 5.0 21 307 r 1.61765 4 7 cbr 1000 ------- 1 2.0 7.0 88 279 r 1.61765 4 6 cbr 500 ------- 1 1.0 6.0 142 281 r 1.6185 0 3 tcp 1000 ------- 0 0.0 5.0 22 308 + 1.6185 3 4 tcp 1000 ------- 0 0.0 5.0 22 308 - 1.61965 3 4 cbr 1000 ------- 1 2.0 7.0 94 298 + 1.62 2 3 cbr 1000 ------- 1 2.0 7.0 96 311 - 1.62 2 3 cbr 1000 ------- 1 2.0 7.0 96 311 + 1.62 1 3 cbr 500 ------- 1 1.0 6.0 151 312 - 1.62 1 3 cbr 500 ------- 1 1.0 6.0 151 312 r 1.62165 3 4 cbr 1000 ------- 1 2.0 7.0 90 287 + 1.62165 4 7 cbr 1000 ------- 1 2.0 7.0 90 287 - 1.62165 4 7 cbr 1000 ------- 1 2.0 7.0 90 287 r 1.62165 4 6 cbr 500 ------- 1 1.0 6.0 143 283 r 1.624 1 3 cbr 500 ------- 1 1.0 6.0 150 310 + 1.624 3 4 cbr 500 ------- 1 1.0 6.0 150 310 r 1.62565 3 4 cbr 500 ------- 1 1.0 6.0 146 291 + 1.62565 4 6 cbr 500 ------- 1 1.0 6.0 146 291 - 1.62565 4 6 cbr 500 ------- 1 1.0 6.0 146 291 - 1.62765 3 4 tcp 1000 ------- 0 0.0 5.0 16 302 r 1.628 2 3 cbr 1000 ------- 1 2.0 7.0 95 309 + 1.628 3 4 cbr 1000 ------- 1 2.0 7.0 95 309 r 1.63363 4 3 ack 40 ------- 0 5.0 0.0 14 297 + 1.63363 3 0 ack 40 ------- 0 5.0 0.0 14 297 - 1.63363 3 0 ack 40 ------- 0 5.0 0.0 14 297 r 1.63365 3 4 cbr 1000 ------- 1 2.0 7.0 91 290 + 1.63365 4 7 cbr 1000 ------- 1 2.0 7.0 91 290 - 1.63365 4 7 cbr 1000 ------- 1 2.0 7.0 91 290 r 1.63365 4 7 cbr 1000 ------- 1 2.0 7.0 89 282 r 1.63365 4 6 cbr 500 ------- 1 1.0 6.0 144 285 r 1.6337 3 0 ack 40 ------- 0 5.0 0.0 14 294 - 1.63565 3 4 tcp 1000 ------- 0 0.0 5.0 17 303 r 1.63765 3 4 cbr 500 ------- 1 1.0 6.0 147 293 + 1.63765 4 6 cbr 500 ------- 1 1.0 6.0 147 293 - 1.63765 4 6 cbr 500 ------- 1 1.0 6.0 147 293 r 1.63765 4 6 cbr 500 ------- 1 1.0 6.0 145 288 + 1.64 2 3 cbr 1000 ------- 1 2.0 7.0 97 313 - 1.64 2 3 cbr 1000 ------- 1 2.0 7.0 97 313 + 1.64 1 3 cbr 500 ------- 1 1.0 6.0 152 314 - 1.64 1 3 cbr 500 ------- 1 1.0 6.0 152 314 - 1.64365 3 4 tcp 1000 ------- 0 0.0 5.0 18 304 r 1.644 1 3 cbr 500 ------- 1 1.0 6.0 151 312 + 1.644 3 4 cbr 500 ------- 1 1.0 6.0 151 312 r 1.64565 3 4 cbr 1000 ------- 1 2.0 7.0 92 292 + 1.64565 4 7 cbr 1000 ------- 1 2.0 7.0 92 292 - 1.64565 4 7 cbr 1000 ------- 1 2.0 7.0 92 292 r 1.648 2 3 cbr 1000 ------- 1 2.0 7.0 96 311 + 1.648 3 4 cbr 1000 ------- 1 2.0 7.0 96 311 r 1.64965 3 4 cbr 500 ------- 1 1.0 6.0 148 296 + 1.64965 4 6 cbr 500 ------- 1 1.0 6.0 148 296 - 1.64965 4 6 cbr 500 ------- 1 1.0 6.0 148 296 r 1.64965 4 7 cbr 1000 ------- 1 2.0 7.0 90 287 r 1.64965 4 6 cbr 500 ------- 1 1.0 6.0 146 291 - 1.65165 3 4 tcp 1000 ------- 0 0.0 5.0 19 305 r 1.65363 4 3 ack 40 ------- 0 5.0 0.0 14 300 + 1.65363 3 0 ack 40 ------- 0 5.0 0.0 14 300 - 1.65363 3 0 ack 40 ------- 0 5.0 0.0 14 300 r 1.6537 3 0 ack 40 ------- 0 5.0 0.0 14 297 r 1.65765 3 4 cbr 1000 ------- 1 2.0 7.0 93 295 + 1.65765 4 7 cbr 1000 ------- 1 2.0 7.0 93 295 - 1.65765 4 7 cbr 1000 ------- 1 2.0 7.0 93 295 - 1.65965 3 4 tcp 1000 ------- 0 0.0 5.0 20 306 + 1.66 2 3 cbr 1000 ------- 1 2.0 7.0 98 315 - 1.66 2 3 cbr 1000 ------- 1 2.0 7.0 98 315 + 1.66 1 3 cbr 500 ------- 1 1.0 6.0 153 316 - 1.66 1 3 cbr 500 ------- 1 1.0 6.0 153 316 r 1.66165 3 4 cbr 500 ------- 1 1.0 6.0 149 299 + 1.66165 4 6 cbr 500 ------- 1 1.0 6.0 149 299 - 1.66165 4 6 cbr 500 ------- 1 1.0 6.0 149 299 r 1.66165 4 7 cbr 1000 ------- 1 2.0 7.0 91 290 r 1.66165 4 6 cbr 500 ------- 1 1.0 6.0 147 293 r 1.664 1 3 cbr 500 ------- 1 1.0 6.0 152 314 + 1.664 3 4 cbr 500 ------- 1 1.0 6.0 152 314 - 1.66765 3 4 tcp 1000 ------- 0 0.0 5.0 21 307 r 1.668 2 3 cbr 1000 ------- 1 2.0 7.0 97 313 + 1.668 3 4 cbr 1000 ------- 1 2.0 7.0 97 313 r 1.66965 3 4 tcp 1000 ------- 0 0.0 5.0 15 301 + 1.66965 4 5 tcp 1000 ------- 0 0.0 5.0 15 301 - 1.66965 4 5 tcp 1000 ------- 0 0.0 5.0 15 301 r 1.67365 4 7 cbr 1000 ------- 1 2.0 7.0 92 292 r 1.67365 4 6 cbr 500 ------- 1 1.0 6.0 148 296 r 1.6737 3 0 ack 40 ------- 0 5.0 0.0 14 300 - 1.67565 3 4 tcp 1000 ------- 0 0.0 5.0 22 308 r 1.67765 3 4 cbr 1000 ------- 1 2.0 7.0 94 298 + 1.67765 4 7 cbr 1000 ------- 1 2.0 7.0 94 298 - 1.67765 4 7 cbr 1000 ------- 1 2.0 7.0 94 298 + 1.68 2 3 cbr 1000 ------- 1 2.0 7.0 99 317 - 1.68 2 3 cbr 1000 ------- 1 2.0 7.0 99 317 + 1.68 1 3 cbr 500 ------- 1 1.0 6.0 154 318 - 1.68 1 3 cbr 500 ------- 1 1.0 6.0 154 318 - 1.68365 3 4 cbr 500 ------- 1 1.0 6.0 150 310 r 1.684 1 3 cbr 500 ------- 1 1.0 6.0 153 316 + 1.684 3 4 cbr 500 ------- 1 1.0 6.0 153 316 r 1.68565 3 4 tcp 1000 ------- 0 0.0 5.0 16 302 + 1.68565 4 5 tcp 1000 ------- 0 0.0 5.0 16 302 - 1.68565 4 5 tcp 1000 ------- 0 0.0 5.0 16 302 r 1.68565 4 7 cbr 1000 ------- 1 2.0 7.0 93 295 r 1.68565 4 6 cbr 500 ------- 1 1.0 6.0 149 299 - 1.68765 3 4 cbr 1000 ------- 1 2.0 7.0 95 309 r 1.688 2 3 cbr 1000 ------- 1 2.0 7.0 98 315 + 1.688 3 4 cbr 1000 ------- 1 2.0 7.0 98 315 r 1.69125 4 5 tcp 1000 ------- 0 0.0 5.0 15 301 + 1.69125 5 4 ack 40 ------- 0 5.0 0.0 15 319 - 1.69125 5 4 ack 40 ------- 0 5.0 0.0 15 319 r 1.69365 3 4 tcp 1000 ------- 0 0.0 5.0 17 303 + 1.69365 4 5 tcp 1000 ------- 0 0.0 5.0 17 303 - 1.69365 4 5 tcp 1000 ------- 0 0.0 5.0 17 303 - 1.69565 3 4 cbr 500 ------- 1 1.0 6.0 151 312 - 1.69965 3 4 cbr 1000 ------- 1 2.0 7.0 96 311 v 1.7 eval {set sim_annotation {Ack_15 to 22 }} + 1.7 2 3 cbr 1000 ------- 1 2.0 7.0 100 320 - 1.7 2 3 cbr 1000 ------- 1 2.0 7.0 100 320 + 1.7 1 3 cbr 500 ------- 1 1.0 6.0 155 321 - 1.7 1 3 cbr 500 ------- 1 1.0 6.0 155 321 r 1.70165 3 4 tcp 1000 ------- 0 0.0 5.0 18 304 + 1.70165 4 5 tcp 1000 ------- 0 0.0 5.0 18 304 - 1.70165 4 5 tcp 1000 ------- 0 0.0 5.0 18 304 r 1.704 1 3 cbr 500 ------- 1 1.0 6.0 154 318 + 1.704 3 4 cbr 500 ------- 1 1.0 6.0 154 318 r 1.70565 4 7 cbr 1000 ------- 1 2.0 7.0 94 298 r 1.70725 4 5 tcp 1000 ------- 0 0.0 5.0 16 302 + 1.70725 5 4 ack 40 ------- 0 5.0 0.0 16 322 - 1.70725 5 4 ack 40 ------- 0 5.0 0.0 16 322 - 1.70765 3 4 cbr 500 ------- 1 1.0 6.0 152 314 r 1.708 2 3 cbr 1000 ------- 1 2.0 7.0 99 317 + 1.708 3 4 cbr 1000 ------- 1 2.0 7.0 99 317 r 1.70965 3 4 tcp 1000 ------- 0 0.0 5.0 19 305 + 1.70965 4 5 tcp 1000 ------- 0 0.0 5.0 19 305 - 1.70965 4 5 tcp 1000 ------- 0 0.0 5.0 19 305 + 1.71 2 3 cbr 1000 ------- 1 2.0 7.0 101 323 - 1.71 2 3 cbr 1000 ------- 1 2.0 7.0 101 323 r 1.71131 5 4 ack 40 ------- 0 5.0 0.0 15 319 + 1.71131 4 3 ack 40 ------- 0 5.0 0.0 15 319 - 1.71131 4 3 ack 40 ------- 0 5.0 0.0 15 319 - 1.71165 3 4 cbr 1000 ------- 1 2.0 7.0 97 313 r 1.71525 4 5 tcp 1000 ------- 0 0.0 5.0 17 303 + 1.71525 5 4 ack 40 ------- 0 5.0 0.0 17 324 - 1.71525 5 4 ack 40 ------- 0 5.0 0.0 17 324 r 1.71765 3 4 tcp 1000 ------- 0 0.0 5.0 20 306 + 1.71765 4 5 tcp 1000 ------- 0 0.0 5.0 20 306 - 1.71765 4 5 tcp 1000 ------- 0 0.0 5.0 20 306 - 1.71965 3 4 cbr 500 ------- 1 1.0 6.0 153 316 + 1.72 1 3 cbr 500 ------- 1 1.0 6.0 156 325 - 1.72 1 3 cbr 500 ------- 1 1.0 6.0 156 325 + 1.72 2 3 cbr 1000 ------- 1 2.0 7.0 102 326 - 1.72 2 3 cbr 1000 ------- 1 2.0 7.0 102 326 r 1.72325 4 5 tcp 1000 ------- 0 0.0 5.0 18 304 + 1.72325 5 4 ack 40 ------- 0 5.0 0.0 18 327 - 1.72325 5 4 ack 40 ------- 0 5.0 0.0 18 327 - 1.72365 3 4 cbr 1000 ------- 1 2.0 7.0 98 315 r 1.724 1 3 cbr 500 ------- 1 1.0 6.0 155 321 + 1.724 3 4 cbr 500 ------- 1 1.0 6.0 155 321 r 1.72565 3 4 tcp 1000 ------- 0 0.0 5.0 21 307 + 1.72565 4 5 tcp 1000 ------- 0 0.0 5.0 21 307 - 1.72565 4 5 tcp 1000 ------- 0 0.0 5.0 21 307 r 1.72731 5 4 ack 40 ------- 0 5.0 0.0 16 322 + 1.72731 4 3 ack 40 ------- 0 5.0 0.0 16 322 - 1.72731 4 3 ack 40 ------- 0 5.0 0.0 16 322 r 1.728 2 3 cbr 1000 ------- 1 2.0 7.0 100 320 + 1.728 3 4 cbr 1000 ------- 1 2.0 7.0 100 320 + 1.73 2 3 cbr 1000 ------- 1 2.0 7.0 103 328 - 1.73 2 3 cbr 1000 ------- 1 2.0 7.0 103 328 r 1.73125 4 5 tcp 1000 ------- 0 0.0 5.0 19 305 + 1.73125 5 4 ack 40 ------- 0 5.0 0.0 19 329 - 1.73125 5 4 ack 40 ------- 0 5.0 0.0 19 329 - 1.73165 3 4 cbr 500 ------- 1 1.0 6.0 154 318 r 1.73365 3 4 tcp 1000 ------- 0 0.0 5.0 22 308 + 1.73365 4 5 tcp 1000 ------- 0 0.0 5.0 22 308 - 1.73365 4 5 tcp 1000 ------- 0 0.0 5.0 22 308 r 1.73531 5 4 ack 40 ------- 0 5.0 0.0 17 324 + 1.73531 4 3 ack 40 ------- 0 5.0 0.0 17 324 - 1.73531 4 3 ack 40 ------- 0 5.0 0.0 17 324 - 1.73565 3 4 cbr 1000 ------- 1 2.0 7.0 99 317 r 1.73765 3 4 cbr 500 ------- 1 1.0 6.0 150 310 + 1.73765 4 6 cbr 500 ------- 1 1.0 6.0 150 310 - 1.73765 4 6 cbr 500 ------- 1 1.0 6.0 150 310 r 1.738 2 3 cbr 1000 ------- 1 2.0 7.0 101 323 + 1.738 3 4 cbr 1000 ------- 1 2.0 7.0 101 323 r 1.73925 4 5 tcp 1000 ------- 0 0.0 5.0 20 306 + 1.73925 5 4 ack 40 ------- 0 5.0 0.0 20 330 - 1.73925 5 4 ack 40 ------- 0 5.0 0.0 20 330 + 1.74 1 3 cbr 500 ------- 1 1.0 6.0 157 331 - 1.74 1 3 cbr 500 ------- 1 1.0 6.0 157 331 + 1.74 2 3 cbr 1000 ------- 1 2.0 7.0 104 332 - 1.74 2 3 cbr 1000 ------- 1 2.0 7.0 104 332 r 1.74331 5 4 ack 40 ------- 0 5.0 0.0 18 327 + 1.74331 4 3 ack 40 ------- 0 5.0 0.0 18 327 - 1.74331 4 3 ack 40 ------- 0 5.0 0.0 18 327 - 1.74365 3 4 cbr 500 ------- 1 1.0 6.0 155 321 r 1.744 1 3 cbr 500 ------- 1 1.0 6.0 156 325 + 1.744 3 4 cbr 500 ------- 1 1.0 6.0 156 325 r 1.74565 3 4 cbr 1000 ------- 1 2.0 7.0 95 309 + 1.74565 4 7 cbr 1000 ------- 1 2.0 7.0 95 309 - 1.74565 4 7 cbr 1000 ------- 1 2.0 7.0 95 309 r 1.74725 4 5 tcp 1000 ------- 0 0.0 5.0 21 307 + 1.74725 5 4 ack 40 ------- 0 5.0 0.0 21 333 - 1.74725 5 4 ack 40 ------- 0 5.0 0.0 21 333 - 1.74765 3 4 cbr 1000 ------- 1 2.0 7.0 100 320 r 1.748 2 3 cbr 1000 ------- 1 2.0 7.0 102 326 + 1.748 3 4 cbr 1000 ------- 1 2.0 7.0 102 326 r 1.74965 3 4 cbr 500 ------- 1 1.0 6.0 151 312 + 1.74965 4 6 cbr 500 ------- 1 1.0 6.0 151 312 - 1.74965 4 6 cbr 500 ------- 1 1.0 6.0 151 312 + 1.75 2 3 cbr 1000 ------- 1 2.0 7.0 105 334 - 1.75 2 3 cbr 1000 ------- 1 2.0 7.0 105 334 r 1.75131 5 4 ack 40 ------- 0 5.0 0.0 19 329 + 1.75131 4 3 ack 40 ------- 0 5.0 0.0 19 329 - 1.75131 4 3 ack 40 ------- 0 5.0 0.0 19 329 r 1.75525 4 5 tcp 1000 ------- 0 0.0 5.0 22 308 + 1.75525 5 4 ack 40 ------- 0 5.0 0.0 22 335 - 1.75525 5 4 ack 40 ------- 0 5.0 0.0 22 335 - 1.75565 3 4 cbr 1000 ------- 1 2.0 7.0 101 323 r 1.75765 3 4 cbr 1000 ------- 1 2.0 7.0 96 311 + 1.75765 4 7 cbr 1000 ------- 1 2.0 7.0 96 311 - 1.75765 4 7 cbr 1000 ------- 1 2.0 7.0 96 311 r 1.758 2 3 cbr 1000 ------- 1 2.0 7.0 103 328 + 1.758 3 4 cbr 1000 ------- 1 2.0 7.0 103 328 r 1.75931 5 4 ack 40 ------- 0 5.0 0.0 20 330 + 1.75931 4 3 ack 40 ------- 0 5.0 0.0 20 330 - 1.75931 4 3 ack 40 ------- 0 5.0 0.0 20 330 + 1.76 1 3 cbr 500 ------- 1 1.0 6.0 158 336 - 1.76 1 3 cbr 500 ------- 1 1.0 6.0 158 336 + 1.76 2 3 cbr 1000 ------- 1 2.0 7.0 106 337 - 1.76 2 3 cbr 1000 ------- 1 2.0 7.0 106 337 r 1.76163 4 3 ack 40 ------- 0 5.0 0.0 15 319 + 1.76163 3 0 ack 40 ------- 0 5.0 0.0 15 319 - 1.76163 3 0 ack 40 ------- 0 5.0 0.0 15 319 r 1.76165 3 4 cbr 500 ------- 1 1.0 6.0 152 314 + 1.76165 4 6 cbr 500 ------- 1 1.0 6.0 152 314 - 1.76165 4 6 cbr 500 ------- 1 1.0 6.0 152 314 r 1.76165 4 6 cbr 500 ------- 1 1.0 6.0 150 310 - 1.76365 3 4 cbr 500 ------- 1 1.0 6.0 156 325 r 1.764 1 3 cbr 500 ------- 1 1.0 6.0 157 331 + 1.764 3 4 cbr 500 ------- 1 1.0 6.0 157 331 r 1.76731 5 4 ack 40 ------- 0 5.0 0.0 21 333 + 1.76731 4 3 ack 40 ------- 0 5.0 0.0 21 333 - 1.76731 4 3 ack 40 ------- 0 5.0 0.0 21 333 - 1.76765 3 4 cbr 1000 ------- 1 2.0 7.0 102 326 r 1.768 2 3 cbr 1000 ------- 1 2.0 7.0 104 332 + 1.768 3 4 cbr 1000 ------- 1 2.0 7.0 104 332 r 1.76965 3 4 cbr 1000 ------- 1 2.0 7.0 97 313 + 1.76965 4 7 cbr 1000 ------- 1 2.0 7.0 97 313 - 1.76965 4 7 cbr 1000 ------- 1 2.0 7.0 97 313 + 1.77 2 3 cbr 1000 ------- 1 2.0 7.0 107 338 - 1.77 2 3 cbr 1000 ------- 1 2.0 7.0 107 338 r 1.77365 3 4 cbr 500 ------- 1 1.0 6.0 153 316 + 1.77365 4 6 cbr 500 ------- 1 1.0 6.0 153 316 - 1.77365 4 6 cbr 500 ------- 1 1.0 6.0 153 316 r 1.77365 4 7 cbr 1000 ------- 1 2.0 7.0 95 309 r 1.77365 4 6 cbr 500 ------- 1 1.0 6.0 151 312 r 1.77531 5 4 ack 40 ------- 0 5.0 0.0 22 335 + 1.77531 4 3 ack 40 ------- 0 5.0 0.0 22 335 - 1.77531 4 3 ack 40 ------- 0 5.0 0.0 22 335 - 1.77565 3 4 cbr 1000 ------- 1 2.0 7.0 103 328 r 1.77763 4 3 ack 40 ------- 0 5.0 0.0 16 322 + 1.77763 3 0 ack 40 ------- 0 5.0 0.0 16 322 - 1.77763 3 0 ack 40 ------- 0 5.0 0.0 16 322 r 1.778 2 3 cbr 1000 ------- 1 2.0 7.0 105 334 + 1.778 3 4 cbr 1000 ------- 1 2.0 7.0 105 334 v 1.78 eval {set sim_annotation {Send Packet_23 to 30}} + 1.78 1 3 cbr 500 ------- 1 1.0 6.0 159 339 - 1.78 1 3 cbr 500 ------- 1 1.0 6.0 159 339 + 1.78 2 3 cbr 1000 ------- 1 2.0 7.0 108 340 - 1.78 2 3 cbr 1000 ------- 1 2.0 7.0 108 340 r 1.78165 3 4 cbr 1000 ------- 1 2.0 7.0 98 315 + 1.78165 4 7 cbr 1000 ------- 1 2.0 7.0 98 315 - 1.78165 4 7 cbr 1000 ------- 1 2.0 7.0 98 315 r 1.7817 3 0 ack 40 ------- 0 5.0 0.0 15 319 + 1.7817 0 3 tcp 1000 ------- 0 0.0 5.0 23 341 - 1.7817 0 3 tcp 1000 ------- 0 0.0 5.0 23 341 - 1.78365 3 4 cbr 500 ------- 1 1.0 6.0 157 331 r 1.784 1 3 cbr 500 ------- 1 1.0 6.0 158 336 + 1.784 3 4 cbr 500 ------- 1 1.0 6.0 158 336 r 1.78563 4 3 ack 40 ------- 0 5.0 0.0 17 324 + 1.78563 3 0 ack 40 ------- 0 5.0 0.0 17 324 - 1.78563 3 0 ack 40 ------- 0 5.0 0.0 17 324 r 1.78565 3 4 cbr 500 ------- 1 1.0 6.0 154 318 + 1.78565 4 6 cbr 500 ------- 1 1.0 6.0 154 318 - 1.78565 4 6 cbr 500 ------- 1 1.0 6.0 154 318 r 1.78565 4 7 cbr 1000 ------- 1 2.0 7.0 96 311 r 1.78565 4 6 cbr 500 ------- 1 1.0 6.0 152 314 - 1.78765 3 4 cbr 1000 ------- 1 2.0 7.0 104 332 r 1.788 2 3 cbr 1000 ------- 1 2.0 7.0 106 337 + 1.788 3 4 cbr 1000 ------- 1 2.0 7.0 106 337 + 1.79 2 3 cbr 1000 ------- 1 2.0 7.0 109 342 - 1.79 2 3 cbr 1000 ------- 1 2.0 7.0 109 342 r 1.79363 4 3 ack 40 ------- 0 5.0 0.0 18 327 + 1.79363 3 0 ack 40 ------- 0 5.0 0.0 18 327 - 1.79363 3 0 ack 40 ------- 0 5.0 0.0 18 327 r 1.79365 3 4 cbr 1000 ------- 1 2.0 7.0 99 317 + 1.79365 4 7 cbr 1000 ------- 1 2.0 7.0 99 317 - 1.79365 4 7 cbr 1000 ------- 1 2.0 7.0 99 317 - 1.79565 3 4 cbr 1000 ------- 1 2.0 7.0 105 334 r 1.79765 3 4 cbr 500 ------- 1 1.0 6.0 155 321 + 1.79765 4 6 cbr 500 ------- 1 1.0 6.0 155 321 - 1.79765 4 6 cbr 500 ------- 1 1.0 6.0 155 321 r 1.79765 4 7 cbr 1000 ------- 1 2.0 7.0 97 313 r 1.79765 4 6 cbr 500 ------- 1 1.0 6.0 153 316 r 1.7977 3 0 ack 40 ------- 0 5.0 0.0 16 322 + 1.7977 0 3 tcp 1000 ------- 0 0.0 5.0 24 343 - 1.7977 0 3 tcp 1000 ------- 0 0.0 5.0 24 343 r 1.798 2 3 cbr 1000 ------- 1 2.0 7.0 107 338 + 1.798 3 4 cbr 1000 ------- 1 2.0 7.0 107 338 + 1.8 1 3 cbr 500 ------- 1 1.0 6.0 160 344 - 1.8 1 3 cbr 500 ------- 1 1.0 6.0 160 344 + 1.8 2 3 cbr 1000 ------- 1 2.0 7.0 110 345 - 1.8 2 3 cbr 1000 ------- 1 2.0 7.0 110 345 r 1.80163 4 3 ack 40 ------- 0 5.0 0.0 19 329 + 1.80163 3 0 ack 40 ------- 0 5.0 0.0 19 329 - 1.80163 3 0 ack 40 ------- 0 5.0 0.0 19 329 r 1.8033 0 3 tcp 1000 ------- 0 0.0 5.0 23 341 + 1.8033 3 4 tcp 1000 ------- 0 0.0 5.0 23 341 - 1.80365 3 4 cbr 500 ------- 1 1.0 6.0 158 336 r 1.804 1 3 cbr 500 ------- 1 1.0 6.0 159 339 + 1.804 3 4 cbr 500 ------- 1 1.0 6.0 159 339 r 1.80565 3 4 cbr 1000 ------- 1 2.0 7.0 100 320 + 1.80565 4 7 cbr 1000 ------- 1 2.0 7.0 100 320 - 1.80565 4 7 cbr 1000 ------- 1 2.0 7.0 100 320 r 1.8057 3 0 ack 40 ------- 0 5.0 0.0 17 324 + 1.8057 0 3 tcp 1000 ------- 0 0.0 5.0 25 346 - 1.8057 0 3 tcp 1000 ------- 0 0.0 5.0 25 346 - 1.80765 3 4 cbr 1000 ------- 1 2.0 7.0 106 337 r 1.808 2 3 cbr 1000 ------- 1 2.0 7.0 108 340 + 1.808 3 4 cbr 1000 ------- 1 2.0 7.0 108 340 r 1.80963 4 3 ack 40 ------- 0 5.0 0.0 20 330 + 1.80963 3 0 ack 40 ------- 0 5.0 0.0 20 330 - 1.80963 3 0 ack 40 ------- 0 5.0 0.0 20 330 r 1.80965 4 7 cbr 1000 ------- 1 2.0 7.0 98 315 r 1.80965 4 6 cbr 500 ------- 1 1.0 6.0 154 318 + 1.81 2 3 cbr 1000 ------- 1 2.0 7.0 111 347 - 1.81 2 3 cbr 1000 ------- 1 2.0 7.0 111 347 r 1.81365 3 4 cbr 1000 ------- 1 2.0 7.0 101 323 + 1.81365 4 7 cbr 1000 ------- 1 2.0 7.0 101 323 - 1.81365 4 7 cbr 1000 ------- 1 2.0 7.0 101 323 r 1.8137 3 0 ack 40 ------- 0 5.0 0.0 18 327 + 1.8137 0 3 tcp 1000 ------- 0 0.0 5.0 26 348 - 1.8137 0 3 tcp 1000 ------- 0 0.0 5.0 26 348 - 1.81565 3 4 cbr 1000 ------- 1 2.0 7.0 107 338 r 1.81763 4 3 ack 40 ------- 0 5.0 0.0 21 333 + 1.81763 3 0 ack 40 ------- 0 5.0 0.0 21 333 - 1.81763 3 0 ack 40 ------- 0 5.0 0.0 21 333 r 1.81765 3 4 cbr 500 ------- 1 1.0 6.0 156 325 + 1.81765 4 6 cbr 500 ------- 1 1.0 6.0 156 325 - 1.81765 4 6 cbr 500 ------- 1 1.0 6.0 156 325 r 1.818 2 3 cbr 1000 ------- 1 2.0 7.0 109 342 + 1.818 3 4 cbr 1000 ------- 1 2.0 7.0 109 342 r 1.8193 0 3 tcp 1000 ------- 0 0.0 5.0 24 343 + 1.8193 3 4 tcp 1000 ------- 0 0.0 5.0 24 343 + 1.82 1 3 cbr 500 ------- 1 1.0 6.0 161 349 - 1.82 1 3 cbr 500 ------- 1 1.0 6.0 161 349 + 1.82 2 3 cbr 1000 ------- 1 2.0 7.0 112 350 - 1.82 2 3 cbr 1000 ------- 1 2.0 7.0 112 350 r 1.82165 4 7 cbr 1000 ------- 1 2.0 7.0 99 317 r 1.82165 4 6 cbr 500 ------- 1 1.0 6.0 155 321 r 1.8217 3 0 ack 40 ------- 0 5.0 0.0 19 329 + 1.8217 0 3 tcp 1000 ------- 0 0.0 5.0 27 351 - 1.8217 0 3 tcp 1000 ------- 0 0.0 5.0 27 351 - 1.82365 3 4 tcp 1000 ------- 0 0.0 5.0 23 341 r 1.824 1 3 cbr 500 ------- 1 1.0 6.0 160 344 + 1.824 3 4 cbr 500 ------- 1 1.0 6.0 160 344 r 1.82563 4 3 ack 40 ------- 0 5.0 0.0 22 335 + 1.82563 3 0 ack 40 ------- 0 5.0 0.0 22 335 - 1.82563 3 0 ack 40 ------- 0 5.0 0.0 22 335 r 1.82565 3 4 cbr 1000 ------- 1 2.0 7.0 102 326 + 1.82565 4 7 cbr 1000 ------- 1 2.0 7.0 102 326 - 1.82565 4 7 cbr 1000 ------- 1 2.0 7.0 102 326 r 1.8273 0 3 tcp 1000 ------- 0 0.0 5.0 25 346 + 1.8273 3 4 tcp 1000 ------- 0 0.0 5.0 25 346 r 1.828 2 3 cbr 1000 ------- 1 2.0 7.0 110 345 + 1.828 3 4 cbr 1000 ------- 1 2.0 7.0 110 345 r 1.8297 3 0 ack 40 ------- 0 5.0 0.0 20 330 + 1.8297 0 3 tcp 1000 ------- 0 0.0 5.0 28 352 - 1.8297 0 3 tcp 1000 ------- 0 0.0 5.0 28 352 + 1.83 2 3 cbr 1000 ------- 1 2.0 7.0 113 353 - 1.83 2 3 cbr 1000 ------- 1 2.0 7.0 113 353 - 1.83165 3 4 cbr 500 ------- 1 1.0 6.0 159 339 r 1.83365 3 4 cbr 1000 ------- 1 2.0 7.0 103 328 + 1.83365 4 7 cbr 1000 ------- 1 2.0 7.0 103 328 r 1.83365 4 7 cbr 1000 ------- 1 2.0 7.0 100 320 - 1.83365 4 7 cbr 1000 ------- 1 2.0 7.0 103 328 r 1.8353 0 3 tcp 1000 ------- 0 0.0 5.0 26 348 + 1.8353 3 4 tcp 1000 ------- 0 0.0 5.0 26 348 - 1.83565 3 4 cbr 1000 ------- 1 2.0 7.0 108 340 r 1.83765 3 4 cbr 500 ------- 1 1.0 6.0 157 331 + 1.83765 4 6 cbr 500 ------- 1 1.0 6.0 157 331 - 1.83765 4 6 cbr 500 ------- 1 1.0 6.0 157 331 r 1.8377 3 0 ack 40 ------- 0 5.0 0.0 21 333 + 1.8377 0 3 tcp 1000 ------- 0 0.0 5.0 29 354 - 1.8377 0 3 tcp 1000 ------- 0 0.0 5.0 29 354 r 1.838 2 3 cbr 1000 ------- 1 2.0 7.0 111 347 + 1.838 3 4 cbr 1000 ------- 1 2.0 7.0 111 347 + 1.84 1 3 cbr 500 ------- 1 1.0 6.0 162 355 - 1.84 1 3 cbr 500 ------- 1 1.0 6.0 162 355 + 1.84 2 3 cbr 1000 ------- 1 2.0 7.0 114 356 - 1.84 2 3 cbr 1000 ------- 1 2.0 7.0 114 356 r 1.84165 4 7 cbr 1000 ------- 1 2.0 7.0 101 323 r 1.84165 4 6 cbr 500 ------- 1 1.0 6.0 156 325 r 1.8433 0 3 tcp 1000 ------- 0 0.0 5.0 27 351 + 1.8433 3 4 tcp 1000 ------- 0 0.0 5.0 27 351 - 1.84365 3 4 cbr 1000 ------- 1 2.0 7.0 109 342 r 1.844 1 3 cbr 500 ------- 1 1.0 6.0 161 349 + 1.844 3 4 cbr 500 ------- 1 1.0 6.0 161 349 r 1.84565 3 4 cbr 1000 ------- 1 2.0 7.0 104 332 + 1.84565 4 7 cbr 1000 ------- 1 2.0 7.0 104 332 - 1.84565 4 7 cbr 1000 ------- 1 2.0 7.0 104 332 r 1.8457 3 0 ack 40 ------- 0 5.0 0.0 22 335 + 1.8457 0 3 tcp 1000 ------- 0 0.0 5.0 30 357 - 1.8457 0 3 tcp 1000 ------- 0 0.0 5.0 30 357 r 1.848 2 3 cbr 1000 ------- 1 2.0 7.0 112 350 + 1.848 3 4 cbr 1000 ------- 1 2.0 7.0 112 350 v 1.8500000000000001 eval {set sim_annotation {Lost Packet (2 of them) }} + 1.85 2 3 cbr 1000 ------- 1 2.0 7.0 115 358 - 1.85 2 3 cbr 1000 ------- 1 2.0 7.0 115 358 r 1.8513 0 3 tcp 1000 ------- 0 0.0 5.0 28 352 + 1.8513 3 4 tcp 1000 ------- 0 0.0 5.0 28 352 d 1.8513 3 4 tcp 1000 ------- 0 0.0 5.0 28 352 - 1.85165 3 4 tcp 1000 ------- 0 0.0 5.0 24 343 r 1.85365 3 4 cbr 1000 ------- 1 2.0 7.0 105 334 + 1.85365 4 7 cbr 1000 ------- 1 2.0 7.0 105 334 r 1.85365 4 7 cbr 1000 ------- 1 2.0 7.0 102 326 - 1.85365 4 7 cbr 1000 ------- 1 2.0 7.0 105 334 r 1.85765 3 4 cbr 500 ------- 1 1.0 6.0 158 336 + 1.85765 4 6 cbr 500 ------- 1 1.0 6.0 158 336 - 1.85765 4 6 cbr 500 ------- 1 1.0 6.0 158 336 r 1.858 2 3 cbr 1000 ------- 1 2.0 7.0 113 353 + 1.858 3 4 cbr 1000 ------- 1 2.0 7.0 113 353 r 1.8593 0 3 tcp 1000 ------- 0 0.0 5.0 29 354 + 1.8593 3 4 tcp 1000 ------- 0 0.0 5.0 29 354 d 1.8593 3 4 tcp 1000 ------- 0 0.0 5.0 29 354 - 1.85965 3 4 cbr 500 ------- 1 1.0 6.0 160 344 + 1.86 1 3 cbr 500 ------- 1 1.0 6.0 163 359 - 1.86 1 3 cbr 500 ------- 1 1.0 6.0 163 359 + 1.86 2 3 cbr 1000 ------- 1 2.0 7.0 116 360 - 1.86 2 3 cbr 1000 ------- 1 2.0 7.0 116 360 r 1.86165 4 7 cbr 1000 ------- 1 2.0 7.0 103 328 r 1.86165 4 6 cbr 500 ------- 1 1.0 6.0 157 331 - 1.86365 3 4 tcp 1000 ------- 0 0.0 5.0 25 346 r 1.864 1 3 cbr 500 ------- 1 1.0 6.0 162 355 + 1.864 3 4 cbr 500 ------- 1 1.0 6.0 162 355 r 1.86565 3 4 cbr 1000 ------- 1 2.0 7.0 106 337 + 1.86565 4 7 cbr 1000 ------- 1 2.0 7.0 106 337 - 1.86565 4 7 cbr 1000 ------- 1 2.0 7.0 106 337 r 1.8673 0 3 tcp 1000 ------- 0 0.0 5.0 30 357 + 1.8673 3 4 tcp 1000 ------- 0 0.0 5.0 30 357 r 1.868 2 3 cbr 1000 ------- 1 2.0 7.0 114 356 + 1.868 3 4 cbr 1000 ------- 1 2.0 7.0 114 356 d 1.868 3 4 cbr 1000 ------- 1 2.0 7.0 114 356 + 1.87 2 3 cbr 1000 ------- 1 2.0 7.0 117 361 - 1.87 2 3 cbr 1000 ------- 1 2.0 7.0 117 361 - 1.87165 3 4 cbr 1000 ------- 1 2.0 7.0 110 345 r 1.87365 3 4 cbr 1000 ------- 1 2.0 7.0 107 338 + 1.87365 4 7 cbr 1000 ------- 1 2.0 7.0 107 338 r 1.87365 4 7 cbr 1000 ------- 1 2.0 7.0 104 332 - 1.87365 4 7 cbr 1000 ------- 1 2.0 7.0 107 338 r 1.878 2 3 cbr 1000 ------- 1 2.0 7.0 115 358 + 1.878 3 4 cbr 1000 ------- 1 2.0 7.0 115 358 - 1.87965 3 4 tcp 1000 ------- 0 0.0 5.0 26 348 + 1.88 1 3 cbr 500 ------- 1 1.0 6.0 164 362 - 1.88 1 3 cbr 500 ------- 1 1.0 6.0 164 362 + 1.88 2 3 cbr 1000 ------- 1 2.0 7.0 118 363 - 1.88 2 3 cbr 1000 ------- 1 2.0 7.0 118 363 r 1.88165 3 4 tcp 1000 ------- 0 0.0 5.0 23 341 + 1.88165 4 5 tcp 1000 ------- 0 0.0 5.0 23 341 - 1.88165 4 5 tcp 1000 ------- 0 0.0 5.0 23 341 r 1.88165 4 7 cbr 1000 ------- 1 2.0 7.0 105 334 r 1.88165 4 6 cbr 500 ------- 1 1.0 6.0 158 336 r 1.884 1 3 cbr 500 ------- 1 1.0 6.0 163 359 + 1.884 3 4 cbr 500 ------- 1 1.0 6.0 163 359 r 1.88565 3 4 cbr 500 ------- 1 1.0 6.0 159 339 + 1.88565 4 6 cbr 500 ------- 1 1.0 6.0 159 339 - 1.88565 4 6 cbr 500 ------- 1 1.0 6.0 159 339 - 1.88765 3 4 cbr 1000 ------- 1 2.0 7.0 111 347 r 1.888 2 3 cbr 1000 ------- 1 2.0 7.0 116 360 + 1.888 3 4 cbr 1000 ------- 1 2.0 7.0 116 360 + 1.89 2 3 cbr 1000 ------- 1 2.0 7.0 119 364 - 1.89 2 3 cbr 1000 ------- 1 2.0 7.0 119 364 r 1.89365 3 4 cbr 1000 ------- 1 2.0 7.0 108 340 + 1.89365 4 7 cbr 1000 ------- 1 2.0 7.0 108 340 - 1.89365 4 7 cbr 1000 ------- 1 2.0 7.0 108 340 r 1.89365 4 7 cbr 1000 ------- 1 2.0 7.0 106 337 - 1.89565 3 4 tcp 1000 ------- 0 0.0 5.0 27 351 r 1.898 2 3 cbr 1000 ------- 1 2.0 7.0 117 361 + 1.898 3 4 cbr 1000 ------- 1 2.0 7.0 117 361 v 1.8999999999999999 eval {set sim_annotation {Ack_23 to 27 }} + 1.9 1 3 cbr 500 ------- 1 1.0 6.0 165 365 - 1.9 1 3 cbr 500 ------- 1 1.0 6.0 165 365 + 1.9 2 3 cbr 1000 ------- 1 2.0 7.0 120 366 - 1.9 2 3 cbr 1000 ------- 1 2.0 7.0 120 366 r 1.90165 3 4 cbr 1000 ------- 1 2.0 7.0 109 342 + 1.90165 4 7 cbr 1000 ------- 1 2.0 7.0 109 342 r 1.90165 4 7 cbr 1000 ------- 1 2.0 7.0 107 338 - 1.90165 4 7 cbr 1000 ------- 1 2.0 7.0 109 342 r 1.90325 4 5 tcp 1000 ------- 0 0.0 5.0 23 341 + 1.90325 5 4 ack 40 ------- 0 5.0 0.0 23 367 - 1.90325 5 4 ack 40 ------- 0 5.0 0.0 23 367 - 1.90365 3 4 cbr 500 ------- 1 1.0 6.0 161 349 r 1.904 1 3 cbr 500 ------- 1 1.0 6.0 164 362 + 1.904 3 4 cbr 500 ------- 1 1.0 6.0 164 362 - 1.90765 3 4 cbr 1000 ------- 1 2.0 7.0 112 350 r 1.908 2 3 cbr 1000 ------- 1 2.0 7.0 118 363 + 1.908 3 4 cbr 1000 ------- 1 2.0 7.0 118 363 r 1.90965 3 4 tcp 1000 ------- 0 0.0 5.0 24 343 + 1.90965 4 5 tcp 1000 ------- 0 0.0 5.0 24 343 - 1.90965 4 5 tcp 1000 ------- 0 0.0 5.0 24 343 r 1.90965 4 6 cbr 500 ------- 1 1.0 6.0 159 339 + 1.91 2 3 cbr 1000 ------- 1 2.0 7.0 121 368 - 1.91 2 3 cbr 1000 ------- 1 2.0 7.0 121 368 r 1.91365 3 4 cbr 500 ------- 1 1.0 6.0 160 344 + 1.91365 4 6 cbr 500 ------- 1 1.0 6.0 160 344 - 1.91365 4 6 cbr 500 ------- 1 1.0 6.0 160 344 - 1.91565 3 4 cbr 1000 ------- 1 2.0 7.0 113 353 r 1.918 2 3 cbr 1000 ------- 1 2.0 7.0 119 364 + 1.918 3 4 cbr 1000 ------- 1 2.0 7.0 119 364 + 1.92 1 3 cbr 500 ------- 1 1.0 6.0 166 369 - 1.92 1 3 cbr 500 ------- 1 1.0 6.0 166 369 + 1.92 2 3 cbr 1000 ------- 1 2.0 7.0 122 370 - 1.92 2 3 cbr 1000 ------- 1 2.0 7.0 122 370 r 1.92165 3 4 tcp 1000 ------- 0 0.0 5.0 25 346 + 1.92165 4 5 tcp 1000 ------- 0 0.0 5.0 25 346 - 1.92165 4 5 tcp 1000 ------- 0 0.0 5.0 25 346 r 1.92165 4 7 cbr 1000 ------- 1 2.0 7.0 108 340 r 1.92331 5 4 ack 40 ------- 0 5.0 0.0 23 367 + 1.92331 4 3 ack 40 ------- 0 5.0 0.0 23 367 - 1.92331 4 3 ack 40 ------- 0 5.0 0.0 23 367 - 1.92365 3 4 cbr 500 ------- 1 1.0 6.0 162 355 r 1.924 1 3 cbr 500 ------- 1 1.0 6.0 165 365 + 1.924 3 4 cbr 500 ------- 1 1.0 6.0 165 365 - 1.92765 3 4 tcp 1000 ------- 0 0.0 5.0 30 357 r 1.928 2 3 cbr 1000 ------- 1 2.0 7.0 120 366 + 1.928 3 4 cbr 1000 ------- 1 2.0 7.0 120 366 r 1.92965 3 4 cbr 1000 ------- 1 2.0 7.0 110 345 + 1.92965 4 7 cbr 1000 ------- 1 2.0 7.0 110 345 - 1.92965 4 7 cbr 1000 ------- 1 2.0 7.0 110 345 r 1.92965 4 7 cbr 1000 ------- 1 2.0 7.0 109 342 + 1.93 2 3 cbr 1000 ------- 1 2.0 7.0 123 371 - 1.93 2 3 cbr 1000 ------- 1 2.0 7.0 123 371 r 1.93125 4 5 tcp 1000 ------- 0 0.0 5.0 24 343 + 1.93125 5 4 ack 40 ------- 0 5.0 0.0 24 372 - 1.93125 5 4 ack 40 ------- 0 5.0 0.0 24 372 - 1.93565 3 4 cbr 1000 ------- 1 2.0 7.0 115 358 r 1.93765 3 4 tcp 1000 ------- 0 0.0 5.0 26 348 + 1.93765 4 5 tcp 1000 ------- 0 0.0 5.0 26 348 - 1.93765 4 5 tcp 1000 ------- 0 0.0 5.0 26 348 r 1.93765 4 6 cbr 500 ------- 1 1.0 6.0 160 344 r 1.938 2 3 cbr 1000 ------- 1 2.0 7.0 121 368 + 1.938 3 4 cbr 1000 ------- 1 2.0 7.0 121 368 + 1.94 1 3 cbr 500 ------- 1 1.0 6.0 167 373 - 1.94 1 3 cbr 500 ------- 1 1.0 6.0 167 373 + 1.94 2 3 cbr 1000 ------- 1 2.0 7.0 124 374 - 1.94 2 3 cbr 1000 ------- 1 2.0 7.0 124 374 r 1.94325 4 5 tcp 1000 ------- 0 0.0 5.0 25 346 + 1.94325 5 4 ack 40 ------- 0 5.0 0.0 25 375 - 1.94325 5 4 ack 40 ------- 0 5.0 0.0 25 375 - 1.94365 3 4 cbr 500 ------- 1 1.0 6.0 163 359 r 1.944 1 3 cbr 500 ------- 1 1.0 6.0 166 369 + 1.944 3 4 cbr 500 ------- 1 1.0 6.0 166 369 r 1.94565 3 4 cbr 1000 ------- 1 2.0 7.0 111 347 + 1.94565 4 7 cbr 1000 ------- 1 2.0 7.0 111 347 - 1.94565 4 7 cbr 1000 ------- 1 2.0 7.0 111 347 - 1.94765 3 4 cbr 1000 ------- 1 2.0 7.0 116 360 r 1.948 2 3 cbr 1000 ------- 1 2.0 7.0 122 370 + 1.948 3 4 cbr 1000 ------- 1 2.0 7.0 122 370 + 1.95 2 3 cbr 1000 ------- 1 2.0 7.0 125 376 - 1.95 2 3 cbr 1000 ------- 1 2.0 7.0 125 376 r 1.95131 5 4 ack 40 ------- 0 5.0 0.0 24 372 + 1.95131 4 3 ack 40 ------- 0 5.0 0.0 24 372 - 1.95131 4 3 ack 40 ------- 0 5.0 0.0 24 372 r 1.95365 3 4 tcp 1000 ------- 0 0.0 5.0 27 351 + 1.95365 4 5 tcp 1000 ------- 0 0.0 5.0 27 351 - 1.95365 4 5 tcp 1000 ------- 0 0.0 5.0 27 351 - 1.95565 3 4 cbr 1000 ------- 1 2.0 7.0 117 361 r 1.95765 3 4 cbr 500 ------- 1 1.0 6.0 161 349 + 1.95765 4 6 cbr 500 ------- 1 1.0 6.0 161 349 - 1.95765 4 6 cbr 500 ------- 1 1.0 6.0 161 349 r 1.95765 4 7 cbr 1000 ------- 1 2.0 7.0 110 345 r 1.958 2 3 cbr 1000 ------- 1 2.0 7.0 123 371 + 1.958 3 4 cbr 1000 ------- 1 2.0 7.0 123 371 r 1.95925 4 5 tcp 1000 ------- 0 0.0 5.0 26 348 + 1.95925 5 4 ack 40 ------- 0 5.0 0.0 26 377 - 1.95925 5 4 ack 40 ------- 0 5.0 0.0 26 377 + 1.96 1 3 cbr 500 ------- 1 1.0 6.0 168 378 - 1.96 1 3 cbr 500 ------- 1 1.0 6.0 168 378 + 1.96 2 3 cbr 1000 ------- 1 2.0 7.0 126 379 - 1.96 2 3 cbr 1000 ------- 1 2.0 7.0 126 379 r 1.96331 5 4 ack 40 ------- 0 5.0 0.0 25 375 + 1.96331 4 3 ack 40 ------- 0 5.0 0.0 25 375 - 1.96331 4 3 ack 40 ------- 0 5.0 0.0 25 375 - 1.96365 3 4 cbr 500 ------- 1 1.0 6.0 164 362 r 1.964 1 3 cbr 500 ------- 1 1.0 6.0 167 373 + 1.964 3 4 cbr 500 ------- 1 1.0 6.0 167 373 r 1.96565 3 4 cbr 1000 ------- 1 2.0 7.0 112 350 + 1.96565 4 7 cbr 1000 ------- 1 2.0 7.0 112 350 - 1.96565 4 7 cbr 1000 ------- 1 2.0 7.0 112 350 - 1.96765 3 4 cbr 1000 ------- 1 2.0 7.0 118 363 r 1.968 2 3 cbr 1000 ------- 1 2.0 7.0 124 374 + 1.968 3 4 cbr 1000 ------- 1 2.0 7.0 124 374 + 1.97 2 3 cbr 1000 ------- 1 2.0 7.0 127 380 - 1.97 2 3 cbr 1000 ------- 1 2.0 7.0 127 380 r 1.97363 4 3 ack 40 ------- 0 5.0 0.0 23 367 + 1.97363 3 0 ack 40 ------- 0 5.0 0.0 23 367 - 1.97363 3 0 ack 40 ------- 0 5.0 0.0 23 367 r 1.97365 3 4 cbr 1000 ------- 1 2.0 7.0 113 353 + 1.97365 4 7 cbr 1000 ------- 1 2.0 7.0 113 353 r 1.97365 4 7 cbr 1000 ------- 1 2.0 7.0 111 347 - 1.97365 4 7 cbr 1000 ------- 1 2.0 7.0 113 353 r 1.97525 4 5 tcp 1000 ------- 0 0.0 5.0 27 351 + 1.97525 5 4 ack 40 ------- 0 5.0 0.0 27 381 - 1.97525 5 4 ack 40 ------- 0 5.0 0.0 27 381 - 1.97565 3 4 cbr 1000 ------- 1 2.0 7.0 119 364 r 1.97765 3 4 cbr 500 ------- 1 1.0 6.0 162 355 + 1.97765 4 6 cbr 500 ------- 1 1.0 6.0 162 355 - 1.97765 4 6 cbr 500 ------- 1 1.0 6.0 162 355 r 1.978 2 3 cbr 1000 ------- 1 2.0 7.0 125 376 + 1.978 3 4 cbr 1000 ------- 1 2.0 7.0 125 376 r 1.97931 5 4 ack 40 ------- 0 5.0 0.0 26 377 + 1.97931 4 3 ack 40 ------- 0 5.0 0.0 26 377 - 1.97931 4 3 ack 40 ------- 0 5.0 0.0 26 377 + 1.98 1 3 cbr 500 ------- 1 1.0 6.0 169 382 - 1.98 1 3 cbr 500 ------- 1 1.0 6.0 169 382 + 1.98 2 3 cbr 1000 ------- 1 2.0 7.0 128 383 - 1.98 2 3 cbr 1000 ------- 1 2.0 7.0 128 383 r 1.98165 4 6 cbr 500 ------- 1 1.0 6.0 161 349 - 1.98365 3 4 cbr 500 ------- 1 1.0 6.0 165 365 r 1.984 1 3 cbr 500 ------- 1 1.0 6.0 168 378 + 1.984 3 4 cbr 500 ------- 1 1.0 6.0 168 378 r 1.98565 3 4 tcp 1000 ------- 0 0.0 5.0 30 357 + 1.98565 4 5 tcp 1000 ------- 0 0.0 5.0 30 357 - 1.98565 4 5 tcp 1000 ------- 0 0.0 5.0 30 357 - 1.98765 3 4 cbr 1000 ------- 1 2.0 7.0 120 366 r 1.988 2 3 cbr 1000 ------- 1 2.0 7.0 126 379 + 1.988 3 4 cbr 1000 ------- 1 2.0 7.0 126 379 + 1.99 2 3 cbr 1000 ------- 1 2.0 7.0 129 384 - 1.99 2 3 cbr 1000 ------- 1 2.0 7.0 129 384 r 1.99365 3 4 cbr 1000 ------- 1 2.0 7.0 115 358 + 1.99365 4 7 cbr 1000 ------- 1 2.0 7.0 115 358 - 1.99365 4 7 cbr 1000 ------- 1 2.0 7.0 115 358 r 1.99365 4 7 cbr 1000 ------- 1 2.0 7.0 112 350 r 1.9937 3 0 ack 40 ------- 0 5.0 0.0 23 367 + 1.9937 0 3 tcp 1000 ------- 0 0.0 5.0 31 385 - 1.9937 0 3 tcp 1000 ------- 0 0.0 5.0 31 385 r 1.99531 5 4 ack 40 ------- 0 5.0 0.0 27 381 + 1.99531 4 3 ack 40 ------- 0 5.0 0.0 27 381 - 1.99531 4 3 ack 40 ------- 0 5.0 0.0 27 381 - 1.99565 3 4 cbr 1000 ------- 1 2.0 7.0 121 368 r 1.99765 3 4 cbr 500 ------- 1 1.0 6.0 163 359 + 1.99765 4 6 cbr 500 ------- 1 1.0 6.0 163 359 - 1.99765 4 6 cbr 500 ------- 1 1.0 6.0 163 359 r 1.998 2 3 cbr 1000 ------- 1 2.0 7.0 127 380 + 1.998 3 4 cbr 1000 ------- 1 2.0 7.0 127 380 v 2 eval {set sim_annotation {Send Packet_31 to 35}} + 2 1 3 cbr 500 ------- 1 1.0 6.0 170 386 - 2 1 3 cbr 500 ------- 1 1.0 6.0 170 386 + 2 2 3 cbr 1000 ------- 1 2.0 7.0 130 387 - 2 2 3 cbr 1000 ------- 1 2.0 7.0 130 387 r 2.00163 4 3 ack 40 ------- 0 5.0 0.0 24 372 + 2.00163 3 0 ack 40 ------- 0 5.0 0.0 24 372 - 2.00163 3 0 ack 40 ------- 0 5.0 0.0 24 372 r 2.00165 4 7 cbr 1000 ------- 1 2.0 7.0 113 353 r 2.00165 4 6 cbr 500 ------- 1 1.0 6.0 162 355 - 2.00365 3 4 cbr 500 ------- 1 1.0 6.0 166 369 r 2.004 1 3 cbr 500 ------- 1 1.0 6.0 169 382 + 2.004 3 4 cbr 500 ------- 1 1.0 6.0 169 382 r 2.00565 3 4 cbr 1000 ------- 1 2.0 7.0 116 360 + 2.00565 4 7 cbr 1000 ------- 1 2.0 7.0 116 360 - 2.00565 4 7 cbr 1000 ------- 1 2.0 7.0 116 360 r 2.00725 4 5 tcp 1000 ------- 0 0.0 5.0 30 357 + 2.00725 5 4 ack 40 ------- 0 5.0 0.0 27 388 - 2.00725 5 4 ack 40 ------- 0 5.0 0.0 27 388 - 2.00765 3 4 cbr 1000 ------- 1 2.0 7.0 122 370 r 2.008 2 3 cbr 1000 ------- 1 2.0 7.0 128 383 + 2.008 3 4 cbr 1000 ------- 1 2.0 7.0 128 383 + 2.01 2 3 cbr 1000 ------- 1 2.0 7.0 131 389 - 2.01 2 3 cbr 1000 ------- 1 2.0 7.0 131 389 r 2.01363 4 3 ack 40 ------- 0 5.0 0.0 25 375 + 2.01363 3 0 ack 40 ------- 0 5.0 0.0 25 375 - 2.01363 3 0 ack 40 ------- 0 5.0 0.0 25 375 r 2.01365 3 4 cbr 1000 ------- 1 2.0 7.0 117 361 + 2.01365 4 7 cbr 1000 ------- 1 2.0 7.0 117 361 - 2.01365 4 7 cbr 1000 ------- 1 2.0 7.0 117 361 r 2.0153 0 3 tcp 1000 ------- 0 0.0 5.0 31 385 + 2.0153 3 4 tcp 1000 ------- 0 0.0 5.0 31 385 d 2.0153 3 4 tcp 1000 ------- 0 0.0 5.0 31 385 - 2.01565 3 4 cbr 1000 ------- 1 2.0 7.0 123 371 r 2.01765 3 4 cbr 500 ------- 1 1.0 6.0 164 362 + 2.01765 4 6 cbr 500 ------- 1 1.0 6.0 164 362 - 2.01765 4 6 cbr 500 ------- 1 1.0 6.0 164 362 r 2.018 2 3 cbr 1000 ------- 1 2.0 7.0 129 384 + 2.018 3 4 cbr 1000 ------- 1 2.0 7.0 129 384 + 2.02 2 3 cbr 1000 ------- 1 2.0 7.0 132 390 - 2.02 2 3 cbr 1000 ------- 1 2.0 7.0 132 390 + 2.02 1 3 cbr 500 ------- 1 1.0 6.0 171 391 - 2.02 1 3 cbr 500 ------- 1 1.0 6.0 171 391 r 2.02165 4 7 cbr 1000 ------- 1 2.0 7.0 115 358 r 2.02165 4 6 cbr 500 ------- 1 1.0 6.0 163 359 r 2.0217 3 0 ack 40 ------- 0 5.0 0.0 24 372 + 2.0217 0 3 tcp 1000 ------- 0 0.0 5.0 32 392 - 2.0217 0 3 tcp 1000 ------- 0 0.0 5.0 32 392 - 2.02365 3 4 cbr 500 ------- 1 1.0 6.0 167 373 r 2.024 1 3 cbr 500 ------- 1 1.0 6.0 170 386 + 2.024 3 4 cbr 500 ------- 1 1.0 6.0 170 386 r 2.02565 3 4 cbr 1000 ------- 1 2.0 7.0 118 363 + 2.02565 4 7 cbr 1000 ------- 1 2.0 7.0 118 363 - 2.02565 4 7 cbr 1000 ------- 1 2.0 7.0 118 363 r 2.02731 5 4 ack 40 ------- 0 5.0 0.0 27 388 + 2.02731 4 3 ack 40 ------- 0 5.0 0.0 27 388 - 2.02731 4 3 ack 40 ------- 0 5.0 0.0 27 388 - 2.02765 3 4 cbr 1000 ------- 1 2.0 7.0 124 374 r 2.028 2 3 cbr 1000 ------- 1 2.0 7.0 130 387 + 2.028 3 4 cbr 1000 ------- 1 2.0 7.0 130 387 r 2.02963 4 3 ack 40 ------- 0 5.0 0.0 26 377 + 2.02963 3 0 ack 40 ------- 0 5.0 0.0 26 377 - 2.02963 3 0 ack 40 ------- 0 5.0 0.0 26 377 + 2.03 2 3 cbr 1000 ------- 1 2.0 7.0 133 393 - 2.03 2 3 cbr 1000 ------- 1 2.0 7.0 133 393 r 2.03365 3 4 cbr 1000 ------- 1 2.0 7.0 119 364 + 2.03365 4 7 cbr 1000 ------- 1 2.0 7.0 119 364 r 2.03365 4 7 cbr 1000 ------- 1 2.0 7.0 116 360 - 2.03365 4 7 cbr 1000 ------- 1 2.0 7.0 119 364 r 2.0337 3 0 ack 40 ------- 0 5.0 0.0 25 375 + 2.0337 0 3 tcp 1000 ------- 0 0.0 5.0 33 394 - 2.0337 0 3 tcp 1000 ------- 0 0.0 5.0 33 394 - 2.03565 3 4 cbr 1000 ------- 1 2.0 7.0 125 376 r 2.03765 3 4 cbr 500 ------- 1 1.0 6.0 165 365 + 2.03765 4 6 cbr 500 ------- 1 1.0 6.0 165 365 - 2.03765 4 6 cbr 500 ------- 1 1.0 6.0 165 365 r 2.038 2 3 cbr 1000 ------- 1 2.0 7.0 131 389 + 2.038 3 4 cbr 1000 ------- 1 2.0 7.0 131 389 + 2.04 2 3 cbr 1000 ------- 1 2.0 7.0 134 395 - 2.04 2 3 cbr 1000 ------- 1 2.0 7.0 134 395 + 2.04 1 3 cbr 500 ------- 1 1.0 6.0 172 396 - 2.04 1 3 cbr 500 ------- 1 1.0 6.0 172 396 r 2.04165 4 7 cbr 1000 ------- 1 2.0 7.0 117 361 r 2.04165 4 6 cbr 500 ------- 1 1.0 6.0 164 362 r 2.0433 0 3 tcp 1000 ------- 0 0.0 5.0 32 392 + 2.0433 3 4 tcp 1000 ------- 0 0.0 5.0 32 392 d 2.0433 3 4 tcp 1000 ------- 0 0.0 5.0 32 392 - 2.04365 3 4 cbr 500 ------- 1 1.0 6.0 168 378 r 2.044 1 3 cbr 500 ------- 1 1.0 6.0 171 391 + 2.044 3 4 cbr 500 ------- 1 1.0 6.0 171 391 r 2.04563 4 3 ack 40 ------- 0 5.0 0.0 27 381 + 2.04563 3 0 ack 40 ------- 0 5.0 0.0 27 381 - 2.04563 3 0 ack 40 ------- 0 5.0 0.0 27 381 r 2.04565 3 4 cbr 1000 ------- 1 2.0 7.0 120 366 + 2.04565 4 7 cbr 1000 ------- 1 2.0 7.0 120 366 - 2.04565 4 7 cbr 1000 ------- 1 2.0 7.0 120 366 - 2.04765 3 4 cbr 1000 ------- 1 2.0 7.0 126 379 r 2.048 2 3 cbr 1000 ------- 1 2.0 7.0 132 390 + 2.048 3 4 cbr 1000 ------- 1 2.0 7.0 132 390 r 2.0497 3 0 ack 40 ------- 0 5.0 0.0 26 377 + 2.0497 0 3 tcp 1000 ------- 0 0.0 5.0 34 397 - 2.0497 0 3 tcp 1000 ------- 0 0.0 5.0 34 397 + 2.05 2 3 cbr 1000 ------- 1 2.0 7.0 135 398 - 2.05 2 3 cbr 1000 ------- 1 2.0 7.0 135 398 r 2.05365 3 4 cbr 1000 ------- 1 2.0 7.0 121 368 + 2.05365 4 7 cbr 1000 ------- 1 2.0 7.0 121 368 r 2.05365 4 7 cbr 1000 ------- 1 2.0 7.0 118 363 - 2.05365 4 7 cbr 1000 ------- 1 2.0 7.0 121 368 r 2.0553 0 3 tcp 1000 ------- 0 0.0 5.0 33 394 + 2.0553 3 4 tcp 1000 ------- 0 0.0 5.0 33 394 d 2.0553 3 4 tcp 1000 ------- 0 0.0 5.0 33 394 - 2.05565 3 4 cbr 1000 ------- 1 2.0 7.0 127 380 r 2.05765 3 4 cbr 500 ------- 1 1.0 6.0 166 369 + 2.05765 4 6 cbr 500 ------- 1 1.0 6.0 166 369 - 2.05765 4 6 cbr 500 ------- 1 1.0 6.0 166 369 r 2.058 2 3 cbr 1000 ------- 1 2.0 7.0 133 393 + 2.058 3 4 cbr 1000 ------- 1 2.0 7.0 133 393 + 2.06 2 3 cbr 1000 ------- 1 2.0 7.0 136 399 - 2.06 2 3 cbr 1000 ------- 1 2.0 7.0 136 399 + 2.06 1 3 cbr 500 ------- 1 1.0 6.0 173 400 - 2.06 1 3 cbr 500 ------- 1 1.0 6.0 173 400 r 2.06165 4 7 cbr 1000 ------- 1 2.0 7.0 119 364 r 2.06165 4 6 cbr 500 ------- 1 1.0 6.0 165 365 - 2.06365 3 4 cbr 500 ------- 1 1.0 6.0 169 382 r 2.064 1 3 cbr 500 ------- 1 1.0 6.0 172 396 + 2.064 3 4 cbr 500 ------- 1 1.0 6.0 172 396 r 2.06565 3 4 cbr 1000 ------- 1 2.0 7.0 122 370 + 2.06565 4 7 cbr 1000 ------- 1 2.0 7.0 122 370 - 2.06565 4 7 cbr 1000 ------- 1 2.0 7.0 122 370 r 2.0657 3 0 ack 40 ------- 0 5.0 0.0 27 381 + 2.0657 0 3 tcp 1000 ------- 0 0.0 5.0 35 401 - 2.0657 0 3 tcp 1000 ------- 0 0.0 5.0 35 401 - 2.06765 3 4 cbr 1000 ------- 1 2.0 7.0 128 383 r 2.068 2 3 cbr 1000 ------- 1 2.0 7.0 134 395 + 2.068 3 4 cbr 1000 ------- 1 2.0 7.0 134 395 + 2.07 2 3 cbr 1000 ------- 1 2.0 7.0 137 402 - 2.07 2 3 cbr 1000 ------- 1 2.0 7.0 137 402 r 2.0713 0 3 tcp 1000 ------- 0 0.0 5.0 34 397 + 2.0713 3 4 tcp 1000 ------- 0 0.0 5.0 34 397 d 2.0713 3 4 tcp 1000 ------- 0 0.0 5.0 34 397 r 2.07365 3 4 cbr 1000 ------- 1 2.0 7.0 123 371 + 2.07365 4 7 cbr 1000 ------- 1 2.0 7.0 123 371 r 2.07365 4 7 cbr 1000 ------- 1 2.0 7.0 120 366 - 2.07365 4 7 cbr 1000 ------- 1 2.0 7.0 123 371 - 2.07565 3 4 cbr 1000 ------- 1 2.0 7.0 129 384 r 2.07763 4 3 ack 40 ------- 0 5.0 0.0 27 388 + 2.07763 3 0 ack 40 ------- 0 5.0 0.0 27 388 - 2.07763 3 0 ack 40 ------- 0 5.0 0.0 27 388 r 2.07765 3 4 cbr 500 ------- 1 1.0 6.0 167 373 + 2.07765 4 6 cbr 500 ------- 1 1.0 6.0 167 373 - 2.07765 4 6 cbr 500 ------- 1 1.0 6.0 167 373 r 2.078 2 3 cbr 1000 ------- 1 2.0 7.0 135 398 + 2.078 3 4 cbr 1000 ------- 1 2.0 7.0 135 398 + 2.08 2 3 cbr 1000 ------- 1 2.0 7.0 138 403 - 2.08 2 3 cbr 1000 ------- 1 2.0 7.0 138 403 v 2.0800000000000001 eval {set sim_annotation {Lost Packet (all of them) }} + 2.08 1 3 cbr 500 ------- 1 1.0 6.0 174 404 - 2.08 1 3 cbr 500 ------- 1 1.0 6.0 174 404 r 2.08165 4 7 cbr 1000 ------- 1 2.0 7.0 121 368 r 2.08165 4 6 cbr 500 ------- 1 1.0 6.0 166 369 - 2.08365 3 4 cbr 500 ------- 1 1.0 6.0 170 386 r 2.084 1 3 cbr 500 ------- 1 1.0 6.0 173 400 + 2.084 3 4 cbr 500 ------- 1 1.0 6.0 173 400 r 2.08565 3 4 cbr 1000 ------- 1 2.0 7.0 124 374 + 2.08565 4 7 cbr 1000 ------- 1 2.0 7.0 124 374 - 2.08565 4 7 cbr 1000 ------- 1 2.0 7.0 124 374 r 2.0873 0 3 tcp 1000 ------- 0 0.0 5.0 35 401 + 2.0873 3 4 tcp 1000 ------- 0 0.0 5.0 35 401 d 2.0873 3 4 tcp 1000 ------- 0 0.0 5.0 35 401 - 2.08765 3 4 cbr 1000 ------- 1 2.0 7.0 130 387 r 2.088 2 3 cbr 1000 ------- 1 2.0 7.0 136 399 + 2.088 3 4 cbr 1000 ------- 1 2.0 7.0 136 399 + 2.09 2 3 cbr 1000 ------- 1 2.0 7.0 139 405 - 2.09 2 3 cbr 1000 ------- 1 2.0 7.0 139 405 r 2.09365 3 4 cbr 1000 ------- 1 2.0 7.0 125 376 + 2.09365 4 7 cbr 1000 ------- 1 2.0 7.0 125 376 r 2.09365 4 7 cbr 1000 ------- 1 2.0 7.0 122 370 - 2.09365 4 7 cbr 1000 ------- 1 2.0 7.0 125 376 - 2.09565 3 4 cbr 1000 ------- 1 2.0 7.0 131 389 r 2.09765 3 4 cbr 500 ------- 1 1.0 6.0 168 378 + 2.09765 4 6 cbr 500 ------- 1 1.0 6.0 168 378 - 2.09765 4 6 cbr 500 ------- 1 1.0 6.0 168 378 r 2.0977 3 0 ack 40 ------- 0 5.0 0.0 27 388 r 2.098 2 3 cbr 1000 ------- 1 2.0 7.0 137 402 + 2.098 3 4 cbr 1000 ------- 1 2.0 7.0 137 402 + 2.1 2 3 cbr 1000 ------- 1 2.0 7.0 140 406 - 2.1 2 3 cbr 1000 ------- 1 2.0 7.0 140 406 + 2.1 1 3 cbr 500 ------- 1 1.0 6.0 175 407 - 2.1 1 3 cbr 500 ------- 1 1.0 6.0 175 407 r 2.10165 4 7 cbr 1000 ------- 1 2.0 7.0 123 371 r 2.10165 4 6 cbr 500 ------- 1 1.0 6.0 167 373 - 2.10365 3 4 cbr 500 ------- 1 1.0 6.0 171 391 r 2.104 1 3 cbr 500 ------- 1 1.0 6.0 174 404 + 2.104 3 4 cbr 500 ------- 1 1.0 6.0 174 404 r 2.10565 3 4 cbr 1000 ------- 1 2.0 7.0 126 379 + 2.10565 4 7 cbr 1000 ------- 1 2.0 7.0 126 379 - 2.10565 4 7 cbr 1000 ------- 1 2.0 7.0 126 379 - 2.10765 3 4 cbr 1000 ------- 1 2.0 7.0 132 390 r 2.108 2 3 cbr 1000 ------- 1 2.0 7.0 138 403 + 2.108 3 4 cbr 1000 ------- 1 2.0 7.0 138 403 + 2.11 2 3 cbr 1000 ------- 1 2.0 7.0 141 408 - 2.11 2 3 cbr 1000 ------- 1 2.0 7.0 141 408 r 2.11365 3 4 cbr 1000 ------- 1 2.0 7.0 127 380 + 2.11365 4 7 cbr 1000 ------- 1 2.0 7.0 127 380 r 2.11365 4 7 cbr 1000 ------- 1 2.0 7.0 124 374 - 2.11365 4 7 cbr 1000 ------- 1 2.0 7.0 127 380 - 2.11565 3 4 cbr 1000 ------- 1 2.0 7.0 133 393 r 2.11765 3 4 cbr 500 ------- 1 1.0 6.0 169 382 + 2.11765 4 6 cbr 500 ------- 1 1.0 6.0 169 382 - 2.11765 4 6 cbr 500 ------- 1 1.0 6.0 169 382 r 2.118 2 3 cbr 1000 ------- 1 2.0 7.0 139 405 + 2.118 3 4 cbr 1000 ------- 1 2.0 7.0 139 405 + 2.12 2 3 cbr 1000 ------- 1 2.0 7.0 142 409 - 2.12 2 3 cbr 1000 ------- 1 2.0 7.0 142 409 + 2.12 1 3 cbr 500 ------- 1 1.0 6.0 176 410 - 2.12 1 3 cbr 500 ------- 1 1.0 6.0 176 410 r 2.12165 4 7 cbr 1000 ------- 1 2.0 7.0 125 376 r 2.12165 4 6 cbr 500 ------- 1 1.0 6.0 168 378 - 2.12365 3 4 cbr 500 ------- 1 1.0 6.0 172 396 r 2.124 1 3 cbr 500 ------- 1 1.0 6.0 175 407 + 2.124 3 4 cbr 500 ------- 1 1.0 6.0 175 407 r 2.12565 3 4 cbr 1000 ------- 1 2.0 7.0 128 383 + 2.12565 4 7 cbr 1000 ------- 1 2.0 7.0 128 383 - 2.12565 4 7 cbr 1000 ------- 1 2.0 7.0 128 383 - 2.12765 3 4 cbr 1000 ------- 1 2.0 7.0 134 395 r 2.128 2 3 cbr 1000 ------- 1 2.0 7.0 140 406 + 2.128 3 4 cbr 1000 ------- 1 2.0 7.0 140 406 + 2.13 2 3 cbr 1000 ------- 1 2.0 7.0 143 411 - 2.13 2 3 cbr 1000 ------- 1 2.0 7.0 143 411 r 2.13365 3 4 cbr 1000 ------- 1 2.0 7.0 129 384 + 2.13365 4 7 cbr 1000 ------- 1 2.0 7.0 129 384 r 2.13365 4 7 cbr 1000 ------- 1 2.0 7.0 126 379 - 2.13365 4 7 cbr 1000 ------- 1 2.0 7.0 129 384 - 2.13565 3 4 cbr 1000 ------- 1 2.0 7.0 135 398 r 2.13765 3 4 cbr 500 ------- 1 1.0 6.0 170 386 + 2.13765 4 6 cbr 500 ------- 1 1.0 6.0 170 386 - 2.13765 4 6 cbr 500 ------- 1 1.0 6.0 170 386 r 2.138 2 3 cbr 1000 ------- 1 2.0 7.0 141 408 + 2.138 3 4 cbr 1000 ------- 1 2.0 7.0 141 408 + 2.14 2 3 cbr 1000 ------- 1 2.0 7.0 144 412 - 2.14 2 3 cbr 1000 ------- 1 2.0 7.0 144 412 + 2.14 1 3 cbr 500 ------- 1 1.0 6.0 177 413 - 2.14 1 3 cbr 500 ------- 1 1.0 6.0 177 413 r 2.14165 4 7 cbr 1000 ------- 1 2.0 7.0 127 380 r 2.14165 4 6 cbr 500 ------- 1 1.0 6.0 169 382 - 2.14365 3 4 cbr 500 ------- 1 1.0 6.0 173 400 r 2.144 1 3 cbr 500 ------- 1 1.0 6.0 176 410 + 2.144 3 4 cbr 500 ------- 1 1.0 6.0 176 410 r 2.14565 3 4 cbr 1000 ------- 1 2.0 7.0 130 387 + 2.14565 4 7 cbr 1000 ------- 1 2.0 7.0 130 387 - 2.14565 4 7 cbr 1000 ------- 1 2.0 7.0 130 387 - 2.14765 3 4 cbr 1000 ------- 1 2.0 7.0 136 399 r 2.148 2 3 cbr 1000 ------- 1 2.0 7.0 142 409 + 2.148 3 4 cbr 1000 ------- 1 2.0 7.0 142 409 + 2.15 2 3 cbr 1000 ------- 1 2.0 7.0 145 414 - 2.15 2 3 cbr 1000 ------- 1 2.0 7.0 145 414 r 2.15365 3 4 cbr 1000 ------- 1 2.0 7.0 131 389 + 2.15365 4 7 cbr 1000 ------- 1 2.0 7.0 131 389 r 2.15365 4 7 cbr 1000 ------- 1 2.0 7.0 128 383 - 2.15365 4 7 cbr 1000 ------- 1 2.0 7.0 131 389 - 2.15565 3 4 cbr 1000 ------- 1 2.0 7.0 137 402 r 2.15765 3 4 cbr 500 ------- 1 1.0 6.0 171 391 + 2.15765 4 6 cbr 500 ------- 1 1.0 6.0 171 391 - 2.15765 4 6 cbr 500 ------- 1 1.0 6.0 171 391 r 2.158 2 3 cbr 1000 ------- 1 2.0 7.0 143 411 + 2.158 3 4 cbr 1000 ------- 1 2.0 7.0 143 411 + 2.16 2 3 cbr 1000 ------- 1 2.0 7.0 146 415 - 2.16 2 3 cbr 1000 ------- 1 2.0 7.0 146 415 + 2.16 1 3 cbr 500 ------- 1 1.0 6.0 178 416 - 2.16 1 3 cbr 500 ------- 1 1.0 6.0 178 416 r 2.16165 4 7 cbr 1000 ------- 1 2.0 7.0 129 384 r 2.16165 4 6 cbr 500 ------- 1 1.0 6.0 170 386 - 2.16365 3 4 cbr 500 ------- 1 1.0 6.0 174 404 r 2.164 1 3 cbr 500 ------- 1 1.0 6.0 177 413 + 2.164 3 4 cbr 500 ------- 1 1.0 6.0 177 413 r 2.16565 3 4 cbr 1000 ------- 1 2.0 7.0 132 390 + 2.16565 4 7 cbr 1000 ------- 1 2.0 7.0 132 390 - 2.16565 4 7 cbr 1000 ------- 1 2.0 7.0 132 390 - 2.16765 3 4 cbr 1000 ------- 1 2.0 7.0 138 403 r 2.168 2 3 cbr 1000 ------- 1 2.0 7.0 144 412 + 2.168 3 4 cbr 1000 ------- 1 2.0 7.0 144 412 + 2.17 2 3 cbr 1000 ------- 1 2.0 7.0 147 417 - 2.17 2 3 cbr 1000 ------- 1 2.0 7.0 147 417 r 2.17365 3 4 cbr 1000 ------- 1 2.0 7.0 133 393 + 2.17365 4 7 cbr 1000 ------- 1 2.0 7.0 133 393 r 2.17365 4 7 cbr 1000 ------- 1 2.0 7.0 130 387 - 2.17365 4 7 cbr 1000 ------- 1 2.0 7.0 133 393 - 2.17565 3 4 cbr 1000 ------- 1 2.0 7.0 139 405 r 2.17765 3 4 cbr 500 ------- 1 1.0 6.0 172 396 + 2.17765 4 6 cbr 500 ------- 1 1.0 6.0 172 396 - 2.17765 4 6 cbr 500 ------- 1 1.0 6.0 172 396 r 2.178 2 3 cbr 1000 ------- 1 2.0 7.0 145 414 + 2.178 3 4 cbr 1000 ------- 1 2.0 7.0 145 414 + 2.18 2 3 cbr 1000 ------- 1 2.0 7.0 148 418 - 2.18 2 3 cbr 1000 ------- 1 2.0 7.0 148 418 + 2.18 1 3 cbr 500 ------- 1 1.0 6.0 179 419 - 2.18 1 3 cbr 500 ------- 1 1.0 6.0 179 419 r 2.18165 4 7 cbr 1000 ------- 1 2.0 7.0 131 389 r 2.18165 4 6 cbr 500 ------- 1 1.0 6.0 171 391 - 2.18365 3 4 cbr 500 ------- 1 1.0 6.0 175 407 r 2.184 1 3 cbr 500 ------- 1 1.0 6.0 178 416 + 2.184 3 4 cbr 500 ------- 1 1.0 6.0 178 416 r 2.18565 3 4 cbr 1000 ------- 1 2.0 7.0 134 395 + 2.18565 4 7 cbr 1000 ------- 1 2.0 7.0 134 395 - 2.18565 4 7 cbr 1000 ------- 1 2.0 7.0 134 395 - 2.18765 3 4 cbr 1000 ------- 1 2.0 7.0 140 406 r 2.188 2 3 cbr 1000 ------- 1 2.0 7.0 146 415 + 2.188 3 4 cbr 1000 ------- 1 2.0 7.0 146 415 + 2.19 2 3 cbr 1000 ------- 1 2.0 7.0 149 420 - 2.19 2 3 cbr 1000 ------- 1 2.0 7.0 149 420 r 2.19365 3 4 cbr 1000 ------- 1 2.0 7.0 135 398 + 2.19365 4 7 cbr 1000 ------- 1 2.0 7.0 135 398 r 2.19365 4 7 cbr 1000 ------- 1 2.0 7.0 132 390 - 2.19365 4 7 cbr 1000 ------- 1 2.0 7.0 135 398 - 2.19565 3 4 cbr 1000 ------- 1 2.0 7.0 141 408 r 2.19765 3 4 cbr 500 ------- 1 1.0 6.0 173 400 + 2.19765 4 6 cbr 500 ------- 1 1.0 6.0 173 400 - 2.19765 4 6 cbr 500 ------- 1 1.0 6.0 173 400 r 2.198 2 3 cbr 1000 ------- 1 2.0 7.0 147 417 + 2.198 3 4 cbr 1000 ------- 1 2.0 7.0 147 417 + 2.2 2 3 cbr 1000 ------- 1 2.0 7.0 150 421 - 2.2 2 3 cbr 1000 ------- 1 2.0 7.0 150 421 + 2.2 1 3 cbr 500 ------- 1 1.0 6.0 180 422 - 2.2 1 3 cbr 500 ------- 1 1.0 6.0 180 422 r 2.20165 4 7 cbr 1000 ------- 1 2.0 7.0 133 393 r 2.20165 4 6 cbr 500 ------- 1 1.0 6.0 172 396 - 2.20365 3 4 cbr 500 ------- 1 1.0 6.0 176 410 r 2.204 1 3 cbr 500 ------- 1 1.0 6.0 179 419 + 2.204 3 4 cbr 500 ------- 1 1.0 6.0 179 419 r 2.20565 3 4 cbr 1000 ------- 1 2.0 7.0 136 399 + 2.20565 4 7 cbr 1000 ------- 1 2.0 7.0 136 399 - 2.20565 4 7 cbr 1000 ------- 1 2.0 7.0 136 399 - 2.20765 3 4 cbr 1000 ------- 1 2.0 7.0 142 409 r 2.208 2 3 cbr 1000 ------- 1 2.0 7.0 148 418 + 2.208 3 4 cbr 1000 ------- 1 2.0 7.0 148 418 + 2.21 2 3 cbr 1000 ------- 1 2.0 7.0 151 423 - 2.21 2 3 cbr 1000 ------- 1 2.0 7.0 151 423 r 2.21365 3 4 cbr 1000 ------- 1 2.0 7.0 137 402 + 2.21365 4 7 cbr 1000 ------- 1 2.0 7.0 137 402 r 2.21365 4 7 cbr 1000 ------- 1 2.0 7.0 134 395 - 2.21365 4 7 cbr 1000 ------- 1 2.0 7.0 137 402 - 2.21565 3 4 cbr 1000 ------- 1 2.0 7.0 143 411 r 2.21765 3 4 cbr 500 ------- 1 1.0 6.0 174 404 + 2.21765 4 6 cbr 500 ------- 1 1.0 6.0 174 404 - 2.21765 4 6 cbr 500 ------- 1 1.0 6.0 174 404 r 2.218 2 3 cbr 1000 ------- 1 2.0 7.0 149 420 + 2.218 3 4 cbr 1000 ------- 1 2.0 7.0 149 420 + 2.22 2 3 cbr 1000 ------- 1 2.0 7.0 152 424 - 2.22 2 3 cbr 1000 ------- 1 2.0 7.0 152 424 + 2.22 1 3 cbr 500 ------- 1 1.0 6.0 181 425 - 2.22 1 3 cbr 500 ------- 1 1.0 6.0 181 425 r 2.22165 4 7 cbr 1000 ------- 1 2.0 7.0 135 398 r 2.22165 4 6 cbr 500 ------- 1 1.0 6.0 173 400 - 2.22365 3 4 cbr 500 ------- 1 1.0 6.0 177 413 r 2.224 1 3 cbr 500 ------- 1 1.0 6.0 180 422 + 2.224 3 4 cbr 500 ------- 1 1.0 6.0 180 422 r 2.22565 3 4 cbr 1000 ------- 1 2.0 7.0 138 403 + 2.22565 4 7 cbr 1000 ------- 1 2.0 7.0 138 403 - 2.22565 4 7 cbr 1000 ------- 1 2.0 7.0 138 403 - 2.22765 3 4 cbr 1000 ------- 1 2.0 7.0 144 412 r 2.228 2 3 cbr 1000 ------- 1 2.0 7.0 150 421 + 2.228 3 4 cbr 1000 ------- 1 2.0 7.0 150 421 + 2.23 2 3 cbr 1000 ------- 1 2.0 7.0 153 426 - 2.23 2 3 cbr 1000 ------- 1 2.0 7.0 153 426 r 2.23365 3 4 cbr 1000 ------- 1 2.0 7.0 139 405 + 2.23365 4 7 cbr 1000 ------- 1 2.0 7.0 139 405 r 2.23365 4 7 cbr 1000 ------- 1 2.0 7.0 136 399 - 2.23365 4 7 cbr 1000 ------- 1 2.0 7.0 139 405 - 2.23565 3 4 cbr 1000 ------- 1 2.0 7.0 145 414 r 2.23765 3 4 cbr 500 ------- 1 1.0 6.0 175 407 + 2.23765 4 6 cbr 500 ------- 1 1.0 6.0 175 407 - 2.23765 4 6 cbr 500 ------- 1 1.0 6.0 175 407 r 2.238 2 3 cbr 1000 ------- 1 2.0 7.0 151 423 + 2.238 3 4 cbr 1000 ------- 1 2.0 7.0 151 423 + 2.24 2 3 cbr 1000 ------- 1 2.0 7.0 154 427 - 2.24 2 3 cbr 1000 ------- 1 2.0 7.0 154 427 + 2.24 1 3 cbr 500 ------- 1 1.0 6.0 182 428 - 2.24 1 3 cbr 500 ------- 1 1.0 6.0 182 428 r 2.24165 4 7 cbr 1000 ------- 1 2.0 7.0 137 402 r 2.24165 4 6 cbr 500 ------- 1 1.0 6.0 174 404 - 2.24365 3 4 cbr 500 ------- 1 1.0 6.0 178 416 r 2.244 1 3 cbr 500 ------- 1 1.0 6.0 181 425 + 2.244 3 4 cbr 500 ------- 1 1.0 6.0 181 425 r 2.24565 3 4 cbr 1000 ------- 1 2.0 7.0 140 406 + 2.24565 4 7 cbr 1000 ------- 1 2.0 7.0 140 406 - 2.24565 4 7 cbr 1000 ------- 1 2.0 7.0 140 406 - 2.24765 3 4 cbr 1000 ------- 1 2.0 7.0 146 415 r 2.248 2 3 cbr 1000 ------- 1 2.0 7.0 152 424 + 2.248 3 4 cbr 1000 ------- 1 2.0 7.0 152 424 + 2.25 2 3 cbr 1000 ------- 1 2.0 7.0 155 429 - 2.25 2 3 cbr 1000 ------- 1 2.0 7.0 155 429 r 2.25365 3 4 cbr 1000 ------- 1 2.0 7.0 141 408 + 2.25365 4 7 cbr 1000 ------- 1 2.0 7.0 141 408 r 2.25365 4 7 cbr 1000 ------- 1 2.0 7.0 138 403 - 2.25365 4 7 cbr 1000 ------- 1 2.0 7.0 141 408 - 2.25565 3 4 cbr 1000 ------- 1 2.0 7.0 147 417 r 2.25765 3 4 cbr 500 ------- 1 1.0 6.0 176 410 + 2.25765 4 6 cbr 500 ------- 1 1.0 6.0 176 410 - 2.25765 4 6 cbr 500 ------- 1 1.0 6.0 176 410 r 2.258 2 3 cbr 1000 ------- 1 2.0 7.0 153 426 + 2.258 3 4 cbr 1000 ------- 1 2.0 7.0 153 426 + 2.26 2 3 cbr 1000 ------- 1 2.0 7.0 156 430 - 2.26 2 3 cbr 1000 ------- 1 2.0 7.0 156 430 + 2.26 1 3 cbr 500 ------- 1 1.0 6.0 183 431 - 2.26 1 3 cbr 500 ------- 1 1.0 6.0 183 431 r 2.26165 4 7 cbr 1000 ------- 1 2.0 7.0 139 405 r 2.26165 4 6 cbr 500 ------- 1 1.0 6.0 175 407 - 2.26365 3 4 cbr 500 ------- 1 1.0 6.0 179 419 r 2.264 1 3 cbr 500 ------- 1 1.0 6.0 182 428 + 2.264 3 4 cbr 500 ------- 1 1.0 6.0 182 428 r 2.26565 3 4 cbr 1000 ------- 1 2.0 7.0 142 409 + 2.26565 4 7 cbr 1000 ------- 1 2.0 7.0 142 409 - 2.26565 4 7 cbr 1000 ------- 1 2.0 7.0 142 409 - 2.26765 3 4 cbr 1000 ------- 1 2.0 7.0 148 418 r 2.268 2 3 cbr 1000 ------- 1 2.0 7.0 154 427 + 2.268 3 4 cbr 1000 ------- 1 2.0 7.0 154 427 + 2.27 2 3 cbr 1000 ------- 1 2.0 7.0 157 432 - 2.27 2 3 cbr 1000 ------- 1 2.0 7.0 157 432 r 2.27365 3 4 cbr 1000 ------- 1 2.0 7.0 143 411 + 2.27365 4 7 cbr 1000 ------- 1 2.0 7.0 143 411 r 2.27365 4 7 cbr 1000 ------- 1 2.0 7.0 140 406 - 2.27365 4 7 cbr 1000 ------- 1 2.0 7.0 143 411 - 2.27565 3 4 cbr 1000 ------- 1 2.0 7.0 149 420 r 2.27765 3 4 cbr 500 ------- 1 1.0 6.0 177 413 + 2.27765 4 6 cbr 500 ------- 1 1.0 6.0 177 413 - 2.27765 4 6 cbr 500 ------- 1 1.0 6.0 177 413 r 2.278 2 3 cbr 1000 ------- 1 2.0 7.0 155 429 + 2.278 3 4 cbr 1000 ------- 1 2.0 7.0 155 429 + 2.28 2 3 cbr 1000 ------- 1 2.0 7.0 158 433 - 2.28 2 3 cbr 1000 ------- 1 2.0 7.0 158 433 + 2.28 1 3 cbr 500 ------- 1 1.0 6.0 184 434 - 2.28 1 3 cbr 500 ------- 1 1.0 6.0 184 434 r 2.28165 4 7 cbr 1000 ------- 1 2.0 7.0 141 408 r 2.28165 4 6 cbr 500 ------- 1 1.0 6.0 176 410 - 2.28365 3 4 cbr 500 ------- 1 1.0 6.0 180 422 r 2.284 1 3 cbr 500 ------- 1 1.0 6.0 183 431 + 2.284 3 4 cbr 500 ------- 1 1.0 6.0 183 431 r 2.28565 3 4 cbr 1000 ------- 1 2.0 7.0 144 412 + 2.28565 4 7 cbr 1000 ------- 1 2.0 7.0 144 412 - 2.28565 4 7 cbr 1000 ------- 1 2.0 7.0 144 412 - 2.28765 3 4 cbr 1000 ------- 1 2.0 7.0 150 421 r 2.288 2 3 cbr 1000 ------- 1 2.0 7.0 156 430 + 2.288 3 4 cbr 1000 ------- 1 2.0 7.0 156 430 + 2.29 2 3 cbr 1000 ------- 1 2.0 7.0 159 435 - 2.29 2 3 cbr 1000 ------- 1 2.0 7.0 159 435 r 2.29365 3 4 cbr 1000 ------- 1 2.0 7.0 145 414 + 2.29365 4 7 cbr 1000 ------- 1 2.0 7.0 145 414 r 2.29365 4 7 cbr 1000 ------- 1 2.0 7.0 142 409 - 2.29365 4 7 cbr 1000 ------- 1 2.0 7.0 145 414 - 2.29565 3 4 cbr 1000 ------- 1 2.0 7.0 151 423 r 2.29765 3 4 cbr 500 ------- 1 1.0 6.0 178 416 + 2.29765 4 6 cbr 500 ------- 1 1.0 6.0 178 416 - 2.29765 4 6 cbr 500 ------- 1 1.0 6.0 178 416 r 2.298 2 3 cbr 1000 ------- 1 2.0 7.0 157 432 + 2.298 3 4 cbr 1000 ------- 1 2.0 7.0 157 432 + 2.3 2 3 cbr 1000 ------- 1 2.0 7.0 160 436 - 2.3 2 3 cbr 1000 ------- 1 2.0 7.0 160 436 r 2.30165 4 7 cbr 1000 ------- 1 2.0 7.0 143 411 r 2.30165 4 6 cbr 500 ------- 1 1.0 6.0 177 413 - 2.30365 3 4 cbr 500 ------- 1 1.0 6.0 181 425 r 2.304 1 3 cbr 500 ------- 1 1.0 6.0 184 434 + 2.304 3 4 cbr 500 ------- 1 1.0 6.0 184 434 r 2.30565 3 4 cbr 1000 ------- 1 2.0 7.0 146 415 + 2.30565 4 7 cbr 1000 ------- 1 2.0 7.0 146 415 - 2.30565 4 7 cbr 1000 ------- 1 2.0 7.0 146 415 - 2.30765 3 4 cbr 1000 ------- 1 2.0 7.0 152 424 r 2.308 2 3 cbr 1000 ------- 1 2.0 7.0 158 433 + 2.308 3 4 cbr 1000 ------- 1 2.0 7.0 158 433 + 2.31 2 3 cbr 1000 ------- 1 2.0 7.0 161 437 - 2.31 2 3 cbr 1000 ------- 1 2.0 7.0 161 437 r 2.31365 3 4 cbr 1000 ------- 1 2.0 7.0 147 417 + 2.31365 4 7 cbr 1000 ------- 1 2.0 7.0 147 417 r 2.31365 4 7 cbr 1000 ------- 1 2.0 7.0 144 412 - 2.31365 4 7 cbr 1000 ------- 1 2.0 7.0 147 417 - 2.31565 3 4 cbr 1000 ------- 1 2.0 7.0 153 426 r 2.31765 3 4 cbr 500 ------- 1 1.0 6.0 179 419 + 2.31765 4 6 cbr 500 ------- 1 1.0 6.0 179 419 - 2.31765 4 6 cbr 500 ------- 1 1.0 6.0 179 419 r 2.318 2 3 cbr 1000 ------- 1 2.0 7.0 159 435 + 2.318 3 4 cbr 1000 ------- 1 2.0 7.0 159 435 + 2.32 2 3 cbr 1000 ------- 1 2.0 7.0 162 438 - 2.32 2 3 cbr 1000 ------- 1 2.0 7.0 162 438 r 2.32165 4 7 cbr 1000 ------- 1 2.0 7.0 145 414 r 2.32165 4 6 cbr 500 ------- 1 1.0 6.0 178 416 - 2.32365 3 4 cbr 500 ------- 1 1.0 6.0 182 428 r 2.32565 3 4 cbr 1000 ------- 1 2.0 7.0 148 418 + 2.32565 4 7 cbr 1000 ------- 1 2.0 7.0 148 418 - 2.32565 4 7 cbr 1000 ------- 1 2.0 7.0 148 418 - 2.32765 3 4 cbr 1000 ------- 1 2.0 7.0 154 427 r 2.328 2 3 cbr 1000 ------- 1 2.0 7.0 160 436 + 2.328 3 4 cbr 1000 ------- 1 2.0 7.0 160 436 + 2.33 2 3 cbr 1000 ------- 1 2.0 7.0 163 439 - 2.33 2 3 cbr 1000 ------- 1 2.0 7.0 163 439 r 2.33365 3 4 cbr 1000 ------- 1 2.0 7.0 149 420 + 2.33365 4 7 cbr 1000 ------- 1 2.0 7.0 149 420 r 2.33365 4 7 cbr 1000 ------- 1 2.0 7.0 146 415 - 2.33365 4 7 cbr 1000 ------- 1 2.0 7.0 149 420 - 2.33565 3 4 cbr 1000 ------- 1 2.0 7.0 155 429 r 2.33765 3 4 cbr 500 ------- 1 1.0 6.0 180 422 + 2.33765 4 6 cbr 500 ------- 1 1.0 6.0 180 422 - 2.33765 4 6 cbr 500 ------- 1 1.0 6.0 180 422 r 2.338 2 3 cbr 1000 ------- 1 2.0 7.0 161 437 + 2.338 3 4 cbr 1000 ------- 1 2.0 7.0 161 437 + 2.34 2 3 cbr 1000 ------- 1 2.0 7.0 164 440 - 2.34 2 3 cbr 1000 ------- 1 2.0 7.0 164 440 r 2.34165 4 7 cbr 1000 ------- 1 2.0 7.0 147 417 r 2.34165 4 6 cbr 500 ------- 1 1.0 6.0 179 419 - 2.34365 3 4 cbr 500 ------- 1 1.0 6.0 183 431 r 2.34565 3 4 cbr 1000 ------- 1 2.0 7.0 150 421 + 2.34565 4 7 cbr 1000 ------- 1 2.0 7.0 150 421 - 2.34565 4 7 cbr 1000 ------- 1 2.0 7.0 150 421 - 2.34765 3 4 cbr 1000 ------- 1 2.0 7.0 156 430 r 2.348 2 3 cbr 1000 ------- 1 2.0 7.0 162 438 + 2.348 3 4 cbr 1000 ------- 1 2.0 7.0 162 438 + 2.35 2 3 cbr 1000 ------- 1 2.0 7.0 165 441 - 2.35 2 3 cbr 1000 ------- 1 2.0 7.0 165 441 r 2.35365 3 4 cbr 1000 ------- 1 2.0 7.0 151 423 + 2.35365 4 7 cbr 1000 ------- 1 2.0 7.0 151 423 r 2.35365 4 7 cbr 1000 ------- 1 2.0 7.0 148 418 - 2.35365 4 7 cbr 1000 ------- 1 2.0 7.0 151 423 - 2.35565 3 4 cbr 1000 ------- 1 2.0 7.0 157 432 r 2.35765 3 4 cbr 500 ------- 1 1.0 6.0 181 425 + 2.35765 4 6 cbr 500 ------- 1 1.0 6.0 181 425 - 2.35765 4 6 cbr 500 ------- 1 1.0 6.0 181 425 r 2.358 2 3 cbr 1000 ------- 1 2.0 7.0 163 439 + 2.358 3 4 cbr 1000 ------- 1 2.0 7.0 163 439 + 2.36 2 3 cbr 1000 ------- 1 2.0 7.0 166 442 - 2.36 2 3 cbr 1000 ------- 1 2.0 7.0 166 442 r 2.36165 4 7 cbr 1000 ------- 1 2.0 7.0 149 420 r 2.36165 4 6 cbr 500 ------- 1 1.0 6.0 180 422 - 2.36365 3 4 cbr 500 ------- 1 1.0 6.0 184 434 r 2.36565 3 4 cbr 1000 ------- 1 2.0 7.0 152 424 + 2.36565 4 7 cbr 1000 ------- 1 2.0 7.0 152 424 - 2.36565 4 7 cbr 1000 ------- 1 2.0 7.0 152 424 - 2.36765 3 4 cbr 1000 ------- 1 2.0 7.0 158 433 r 2.368 2 3 cbr 1000 ------- 1 2.0 7.0 164 440 + 2.368 3 4 cbr 1000 ------- 1 2.0 7.0 164 440 + 2.37 2 3 cbr 1000 ------- 1 2.0 7.0 167 443 - 2.37 2 3 cbr 1000 ------- 1 2.0 7.0 167 443 r 2.37365 3 4 cbr 1000 ------- 1 2.0 7.0 153 426 + 2.37365 4 7 cbr 1000 ------- 1 2.0 7.0 153 426 r 2.37365 4 7 cbr 1000 ------- 1 2.0 7.0 150 421 - 2.37365 4 7 cbr 1000 ------- 1 2.0 7.0 153 426 - 2.37565 3 4 cbr 1000 ------- 1 2.0 7.0 159 435 r 2.37765 3 4 cbr 500 ------- 1 1.0 6.0 182 428 + 2.37765 4 6 cbr 500 ------- 1 1.0 6.0 182 428 - 2.37765 4 6 cbr 500 ------- 1 1.0 6.0 182 428 r 2.378 2 3 cbr 1000 ------- 1 2.0 7.0 165 441 + 2.378 3 4 cbr 1000 ------- 1 2.0 7.0 165 441 + 2.38 2 3 cbr 1000 ------- 1 2.0 7.0 168 444 - 2.38 2 3 cbr 1000 ------- 1 2.0 7.0 168 444 r 2.38165 4 7 cbr 1000 ------- 1 2.0 7.0 151 423 r 2.38165 4 6 cbr 500 ------- 1 1.0 6.0 181 425 - 2.38365 3 4 cbr 1000 ------- 1 2.0 7.0 160 436 r 2.38565 3 4 cbr 1000 ------- 1 2.0 7.0 154 427 + 2.38565 4 7 cbr 1000 ------- 1 2.0 7.0 154 427 - 2.38565 4 7 cbr 1000 ------- 1 2.0 7.0 154 427 r 2.388 2 3 cbr 1000 ------- 1 2.0 7.0 166 442 + 2.388 3 4 cbr 1000 ------- 1 2.0 7.0 166 442 + 2.39 2 3 cbr 1000 ------- 1 2.0 7.0 169 445 - 2.39 2 3 cbr 1000 ------- 1 2.0 7.0 169 445 - 2.39165 3 4 cbr 1000 ------- 1 2.0 7.0 161 437 r 2.39365 3 4 cbr 1000 ------- 1 2.0 7.0 155 429 + 2.39365 4 7 cbr 1000 ------- 1 2.0 7.0 155 429 r 2.39365 4 7 cbr 1000 ------- 1 2.0 7.0 152 424 - 2.39365 4 7 cbr 1000 ------- 1 2.0 7.0 155 429 r 2.39765 3 4 cbr 500 ------- 1 1.0 6.0 183 431 + 2.39765 4 6 cbr 500 ------- 1 1.0 6.0 183 431 - 2.39765 4 6 cbr 500 ------- 1 1.0 6.0 183 431 r 2.398 2 3 cbr 1000 ------- 1 2.0 7.0 167 443 + 2.398 3 4 cbr 1000 ------- 1 2.0 7.0 167 443 - 2.39965 3 4 cbr 1000 ------- 1 2.0 7.0 162 438 + 2.4 2 3 cbr 1000 ------- 1 2.0 7.0 170 446 - 2.4 2 3 cbr 1000 ------- 1 2.0 7.0 170 446 r 2.40165 4 7 cbr 1000 ------- 1 2.0 7.0 153 426 r 2.40165 4 6 cbr 500 ------- 1 1.0 6.0 182 428 r 2.40565 3 4 cbr 1000 ------- 1 2.0 7.0 156 430 + 2.40565 4 7 cbr 1000 ------- 1 2.0 7.0 156 430 - 2.40565 4 7 cbr 1000 ------- 1 2.0 7.0 156 430 - 2.40765 3 4 cbr 1000 ------- 1 2.0 7.0 163 439 r 2.408 2 3 cbr 1000 ------- 1 2.0 7.0 168 444 + 2.408 3 4 cbr 1000 ------- 1 2.0 7.0 168 444 + 2.41 2 3 cbr 1000 ------- 1 2.0 7.0 171 447 - 2.41 2 3 cbr 1000 ------- 1 2.0 7.0 171 447 r 2.41365 3 4 cbr 1000 ------- 1 2.0 7.0 157 432 + 2.41365 4 7 cbr 1000 ------- 1 2.0 7.0 157 432 r 2.41365 4 7 cbr 1000 ------- 1 2.0 7.0 154 427 - 2.41365 4 7 cbr 1000 ------- 1 2.0 7.0 157 432 - 2.41565 3 4 cbr 1000 ------- 1 2.0 7.0 164 440 r 2.41765 3 4 cbr 500 ------- 1 1.0 6.0 184 434 + 2.41765 4 6 cbr 500 ------- 1 1.0 6.0 184 434 - 2.41765 4 6 cbr 500 ------- 1 1.0 6.0 184 434 r 2.418 2 3 cbr 1000 ------- 1 2.0 7.0 169 445 + 2.418 3 4 cbr 1000 ------- 1 2.0 7.0 169 445 + 2.42 2 3 cbr 1000 ------- 1 2.0 7.0 172 448 - 2.42 2 3 cbr 1000 ------- 1 2.0 7.0 172 448 r 2.42165 4 7 cbr 1000 ------- 1 2.0 7.0 155 429 r 2.42165 4 6 cbr 500 ------- 1 1.0 6.0 183 431 - 2.42365 3 4 cbr 1000 ------- 1 2.0 7.0 165 441 r 2.42565 3 4 cbr 1000 ------- 1 2.0 7.0 158 433 + 2.42565 4 7 cbr 1000 ------- 1 2.0 7.0 158 433 - 2.42565 4 7 cbr 1000 ------- 1 2.0 7.0 158 433 r 2.428 2 3 cbr 1000 ------- 1 2.0 7.0 170 446 + 2.428 3 4 cbr 1000 ------- 1 2.0 7.0 170 446 + 2.43 2 3 cbr 1000 ------- 1 2.0 7.0 173 449 - 2.43 2 3 cbr 1000 ------- 1 2.0 7.0 173 449 - 2.43165 3 4 cbr 1000 ------- 1 2.0 7.0 166 442 r 2.43365 3 4 cbr 1000 ------- 1 2.0 7.0 159 435 + 2.43365 4 7 cbr 1000 ------- 1 2.0 7.0 159 435 r 2.43365 4 7 cbr 1000 ------- 1 2.0 7.0 156 430 - 2.43365 4 7 cbr 1000 ------- 1 2.0 7.0 159 435 r 2.438 2 3 cbr 1000 ------- 1 2.0 7.0 171 447 + 2.438 3 4 cbr 1000 ------- 1 2.0 7.0 171 447 - 2.43965 3 4 cbr 1000 ------- 1 2.0 7.0 167 443 + 2.44 2 3 cbr 1000 ------- 1 2.0 7.0 174 450 - 2.44 2 3 cbr 1000 ------- 1 2.0 7.0 174 450 r 2.44165 3 4 cbr 1000 ------- 1 2.0 7.0 160 436 + 2.44165 4 7 cbr 1000 ------- 1 2.0 7.0 160 436 r 2.44165 4 7 cbr 1000 ------- 1 2.0 7.0 157 432 r 2.44165 4 6 cbr 500 ------- 1 1.0 6.0 184 434 - 2.44165 4 7 cbr 1000 ------- 1 2.0 7.0 160 436 - 2.44765 3 4 cbr 1000 ------- 1 2.0 7.0 168 444 r 2.448 2 3 cbr 1000 ------- 1 2.0 7.0 172 448 + 2.448 3 4 cbr 1000 ------- 1 2.0 7.0 172 448 r 2.44965 3 4 cbr 1000 ------- 1 2.0 7.0 161 437 + 2.44965 4 7 cbr 1000 ------- 1 2.0 7.0 161 437 - 2.44965 4 7 cbr 1000 ------- 1 2.0 7.0 161 437 + 2.45 2 3 cbr 1000 ------- 1 2.0 7.0 175 451 - 2.45 2 3 cbr 1000 ------- 1 2.0 7.0 175 451 r 2.45365 4 7 cbr 1000 ------- 1 2.0 7.0 158 433 - 2.45565 3 4 cbr 1000 ------- 1 2.0 7.0 169 445 r 2.45765 3 4 cbr 1000 ------- 1 2.0 7.0 162 438 + 2.45765 4 7 cbr 1000 ------- 1 2.0 7.0 162 438 - 2.45765 4 7 cbr 1000 ------- 1 2.0 7.0 162 438 r 2.458 2 3 cbr 1000 ------- 1 2.0 7.0 173 449 + 2.458 3 4 cbr 1000 ------- 1 2.0 7.0 173 449 + 2.46 2 3 cbr 1000 ------- 1 2.0 7.0 176 452 - 2.46 2 3 cbr 1000 ------- 1 2.0 7.0 176 452 r 2.46165 4 7 cbr 1000 ------- 1 2.0 7.0 159 435 - 2.46365 3 4 cbr 1000 ------- 1 2.0 7.0 170 446 r 2.46565 3 4 cbr 1000 ------- 1 2.0 7.0 163 439 + 2.46565 4 7 cbr 1000 ------- 1 2.0 7.0 163 439 - 2.46565 4 7 cbr 1000 ------- 1 2.0 7.0 163 439 r 2.468 2 3 cbr 1000 ------- 1 2.0 7.0 174 450 + 2.468 3 4 cbr 1000 ------- 1 2.0 7.0 174 450 r 2.46965 4 7 cbr 1000 ------- 1 2.0 7.0 160 436 + 2.47 2 3 cbr 1000 ------- 1 2.0 7.0 177 453 - 2.47 2 3 cbr 1000 ------- 1 2.0 7.0 177 453 - 2.47165 3 4 cbr 1000 ------- 1 2.0 7.0 171 447 r 2.47365 3 4 cbr 1000 ------- 1 2.0 7.0 164 440 + 2.47365 4 7 cbr 1000 ------- 1 2.0 7.0 164 440 - 2.47365 4 7 cbr 1000 ------- 1 2.0 7.0 164 440 r 2.47765 4 7 cbr 1000 ------- 1 2.0 7.0 161 437 r 2.478 2 3 cbr 1000 ------- 1 2.0 7.0 175 451 + 2.478 3 4 cbr 1000 ------- 1 2.0 7.0 175 451 - 2.47965 3 4 cbr 1000 ------- 1 2.0 7.0 172 448 + 2.48 2 3 cbr 1000 ------- 1 2.0 7.0 178 454 - 2.48 2 3 cbr 1000 ------- 1 2.0 7.0 178 454 r 2.48165 3 4 cbr 1000 ------- 1 2.0 7.0 165 441 + 2.48165 4 7 cbr 1000 ------- 1 2.0 7.0 165 441 - 2.48165 4 7 cbr 1000 ------- 1 2.0 7.0 165 441 r 2.48565 4 7 cbr 1000 ------- 1 2.0 7.0 162 438 - 2.48765 3 4 cbr 1000 ------- 1 2.0 7.0 173 449 r 2.488 2 3 cbr 1000 ------- 1 2.0 7.0 176 452 + 2.488 3 4 cbr 1000 ------- 1 2.0 7.0 176 452 r 2.48965 3 4 cbr 1000 ------- 1 2.0 7.0 166 442 + 2.48965 4 7 cbr 1000 ------- 1 2.0 7.0 166 442 - 2.48965 4 7 cbr 1000 ------- 1 2.0 7.0 166 442 + 2.49 2 3 cbr 1000 ------- 1 2.0 7.0 179 455 - 2.49 2 3 cbr 1000 ------- 1 2.0 7.0 179 455 r 2.49365 4 7 cbr 1000 ------- 1 2.0 7.0 163 439 - 2.49565 3 4 cbr 1000 ------- 1 2.0 7.0 174 450 r 2.49765 3 4 cbr 1000 ------- 1 2.0 7.0 167 443 + 2.49765 4 7 cbr 1000 ------- 1 2.0 7.0 167 443 - 2.49765 4 7 cbr 1000 ------- 1 2.0 7.0 167 443 r 2.498 2 3 cbr 1000 ------- 1 2.0 7.0 177 453 + 2.498 3 4 cbr 1000 ------- 1 2.0 7.0 177 453 + 2.5 2 3 cbr 1000 ------- 1 2.0 7.0 180 456 - 2.5 2 3 cbr 1000 ------- 1 2.0 7.0 180 456 r 2.50165 4 7 cbr 1000 ------- 1 2.0 7.0 164 440 - 2.50365 3 4 cbr 1000 ------- 1 2.0 7.0 175 451 r 2.50565 3 4 cbr 1000 ------- 1 2.0 7.0 168 444 + 2.50565 4 7 cbr 1000 ------- 1 2.0 7.0 168 444 - 2.50565 4 7 cbr 1000 ------- 1 2.0 7.0 168 444 r 2.508 2 3 cbr 1000 ------- 1 2.0 7.0 178 454 + 2.508 3 4 cbr 1000 ------- 1 2.0 7.0 178 454 r 2.50965 4 7 cbr 1000 ------- 1 2.0 7.0 165 441 - 2.51165 3 4 cbr 1000 ------- 1 2.0 7.0 176 452 r 2.51365 3 4 cbr 1000 ------- 1 2.0 7.0 169 445 + 2.51365 4 7 cbr 1000 ------- 1 2.0 7.0 169 445 - 2.51365 4 7 cbr 1000 ------- 1 2.0 7.0 169 445 r 2.51765 4 7 cbr 1000 ------- 1 2.0 7.0 166 442 r 2.518 2 3 cbr 1000 ------- 1 2.0 7.0 179 455 + 2.518 3 4 cbr 1000 ------- 1 2.0 7.0 179 455 - 2.51965 3 4 cbr 1000 ------- 1 2.0 7.0 177 453 r 2.52165 3 4 cbr 1000 ------- 1 2.0 7.0 170 446 + 2.52165 4 7 cbr 1000 ------- 1 2.0 7.0 170 446 - 2.52165 4 7 cbr 1000 ------- 1 2.0 7.0 170 446 r 2.52565 4 7 cbr 1000 ------- 1 2.0 7.0 167 443 - 2.52765 3 4 cbr 1000 ------- 1 2.0 7.0 178 454 r 2.528 2 3 cbr 1000 ------- 1 2.0 7.0 180 456 + 2.528 3 4 cbr 1000 ------- 1 2.0 7.0 180 456 r 2.52965 3 4 cbr 1000 ------- 1 2.0 7.0 171 447 + 2.52965 4 7 cbr 1000 ------- 1 2.0 7.0 171 447 - 2.52965 4 7 cbr 1000 ------- 1 2.0 7.0 171 447 r 2.53365 4 7 cbr 1000 ------- 1 2.0 7.0 168 444 - 2.53565 3 4 cbr 1000 ------- 1 2.0 7.0 179 455 r 2.53765 3 4 cbr 1000 ------- 1 2.0 7.0 172 448 + 2.53765 4 7 cbr 1000 ------- 1 2.0 7.0 172 448 - 2.53765 4 7 cbr 1000 ------- 1 2.0 7.0 172 448 r 2.54165 4 7 cbr 1000 ------- 1 2.0 7.0 169 445 - 2.54365 3 4 cbr 1000 ------- 1 2.0 7.0 180 456 r 2.54565 3 4 cbr 1000 ------- 1 2.0 7.0 173 449 + 2.54565 4 7 cbr 1000 ------- 1 2.0 7.0 173 449 - 2.54565 4 7 cbr 1000 ------- 1 2.0 7.0 173 449 r 2.54965 4 7 cbr 1000 ------- 1 2.0 7.0 170 446 v 2.5499999999999998 eval {set sim_annotation {FTP stops}} r 2.55365 3 4 cbr 1000 ------- 1 2.0 7.0 174 450 + 2.55365 4 7 cbr 1000 ------- 1 2.0 7.0 174 450 - 2.55365 4 7 cbr 1000 ------- 1 2.0 7.0 174 450 r 2.55765 4 7 cbr 1000 ------- 1 2.0 7.0 171 447 r 2.56165 3 4 cbr 1000 ------- 1 2.0 7.0 175 451 + 2.56165 4 7 cbr 1000 ------- 1 2.0 7.0 175 451 - 2.56165 4 7 cbr 1000 ------- 1 2.0 7.0 175 451 r 2.56565 4 7 cbr 1000 ------- 1 2.0 7.0 172 448 r 2.56965 3 4 cbr 1000 ------- 1 2.0 7.0 176 452 + 2.56965 4 7 cbr 1000 ------- 1 2.0 7.0 176 452 - 2.56965 4 7 cbr 1000 ------- 1 2.0 7.0 176 452 r 2.57365 4 7 cbr 1000 ------- 1 2.0 7.0 173 449 r 2.57765 3 4 cbr 1000 ------- 1 2.0 7.0 177 453 + 2.57765 4 7 cbr 1000 ------- 1 2.0 7.0 177 453 - 2.57765 4 7 cbr 1000 ------- 1 2.0 7.0 177 453 r 2.58165 4 7 cbr 1000 ------- 1 2.0 7.0 174 450 r 2.58565 3 4 cbr 1000 ------- 1 2.0 7.0 178 454 + 2.58565 4 7 cbr 1000 ------- 1 2.0 7.0 178 454 - 2.58565 4 7 cbr 1000 ------- 1 2.0 7.0 178 454 r 2.58965 4 7 cbr 1000 ------- 1 2.0 7.0 175 451 r 2.59365 3 4 cbr 1000 ------- 1 2.0 7.0 179 455 + 2.59365 4 7 cbr 1000 ------- 1 2.0 7.0 179 455 - 2.59365 4 7 cbr 1000 ------- 1 2.0 7.0 179 455 r 2.59765 4 7 cbr 1000 ------- 1 2.0 7.0 176 452 r 2.60165 3 4 cbr 1000 ------- 1 2.0 7.0 180 456 + 2.60165 4 7 cbr 1000 ------- 1 2.0 7.0 180 456 - 2.60165 4 7 cbr 1000 ------- 1 2.0 7.0 180 456 r 2.60565 4 7 cbr 1000 ------- 1 2.0 7.0 177 453 r 2.61365 4 7 cbr 1000 ------- 1 2.0 7.0 178 454 r 2.62165 4 7 cbr 1000 ------- 1 2.0 7.0 179 455 r 2.62965 4 7 cbr 1000 ------- 1 2.0 7.0 180 456 nam-1.15/edu/C3-slow-start.nam0000664000076400007660000114614706756704600014760 0ustar tomhnsnamV -t * -v 1.0a5 -a 1 -c 1 -F 2 -M 3 c -t * -i 0 -n black c -t * -i 1 -n red N -t * -S 0 -n {TCP session between node 0.0 and node 5.0} -p TCP -m {} N -t * -S 0 -h 53 N -t * -F 0 -M 0 -n tcp N -t * -F 1 -M 2 -n tcp_cong N -t * -F 0 -M 1 -n ack A -t * -n 1 -p 0 -o 255 -c 15 -a 1 A -t * -h 1 -m 127 -s 8 n -t * -a 4 -s 4 -S UP -v circle -c black n -t * -a 0 -s 0 -S UP -v circle -c black n -t * -a 5 -s 5 -S UP -v circle -c black n -t * -a 1 -s 1 -S UP -v circle -c black n -t * -a 6 -s 6 -S UP -v circle -c black n -t * -a 2 -s 2 -S UP -v circle -c black n -t * -a 7 -s 7 -S UP -v circle -c black n -t * -a 3 -s 3 -S UP -v circle -c black l -t * -s 0 -d 3 -S UP -r 5000000 -D 0.02 -c black -o right-down l -t * -s 1 -d 3 -S UP -r 1000000 -D 0.02 -c black -o right l -t * -s 2 -d 3 -S UP -r 1000000 -D 0.02 -c black -o right-up l -t * -s 3 -d 4 -S UP -r 1000000 -D 0.050000000000000003 -c black -o right l -t * -s 4 -d 5 -S UP -r 5000000 -D 0.02 -c black -o right-up l -t * -s 4 -d 6 -S UP -r 1000000 -D 0.02 -c black -o right l -t * -s 4 -d 7 -S UP -r 1000000 -D 0.02 -c black -o right-down q -t * -s 3 -d 4 -a 0.5 q -t * -s 4 -d 3 -a 0.5 a -t 0.00000000000000000 -s 0 -d 5 -n tcp f -t 0.00000000000000000 -s 0 -d 5 -n ssthresh_ -a tcp -v 20 -T v f -t 0.00000000000000000 -s 0 -d 5 -n cwnd_ -a tcp -v 1.000000 -T v v -t 0.00000000000000000 monitor_agent 0 tcp n -t 0 -s 0 -S DLABEL -l TCP -L "" n -t 0 -s 5 -S DLABEL -l TCP -L "" n -t 0 -s 1 -S DLABEL -l CBR-1 -L "" n -t 0 -s 2 -S DLABEL -l CBR-2 -L "" n -t 0 -s 6 -S DLABEL -l CBR-1 -L "" n -t 0 -s 7 -S DLABEL -l CBR-2 -L "" + -t 0.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 0 -a 1 - -t 0.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 0 -a 1 h -t 0.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 0 -a 1 v -t 0.050000000000000003 sim_annotation 0.050000000000000003 1 CBR-1 starts + -t 0.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 1 -a 1 - -t 0.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 1 -a 1 h -t 0.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 1 -a 1 + -t 0.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 2 -a 1 - -t 0.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 2 -a 1 h -t 0.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 2 -a 1 r -t 0.074 -s 1 -d 3 -p cbr -e 500 -c 1 -i 0 -a 1 + -t 0.074 -s 3 -d 4 -p cbr -e 500 -c 1 -i 0 -a 1 - -t 0.074 -s 3 -d 4 -p cbr -e 500 -c 1 -i 0 -a 1 h -t 0.074 -s 3 -d 4 -p cbr -e 500 -c 1 -i 0 -a 1 + -t 0.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 3 -a 1 - -t 0.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 3 -a 1 h -t 0.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 3 -a 1 r -t 0.084 -s 1 -d 3 -p cbr -e 500 -c 1 -i 1 -a 1 + -t 0.084 -s 3 -d 4 -p cbr -e 500 -c 1 -i 1 -a 1 - -t 0.084 -s 3 -d 4 -p cbr -e 500 -c 1 -i 1 -a 1 h -t 0.084 -s 3 -d 4 -p cbr -e 500 -c 1 -i 1 -a 1 + -t 0.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 4 -a 1 - -t 0.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 4 -a 1 h -t 0.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 4 -a 1 r -t 0.094 -s 1 -d 3 -p cbr -e 500 -c 1 -i 2 -a 1 + -t 0.094 -s 3 -d 4 -p cbr -e 500 -c 1 -i 2 -a 1 - -t 0.094 -s 3 -d 4 -p cbr -e 500 -c 1 -i 2 -a 1 h -t 0.094 -s 3 -d 4 -p cbr -e 500 -c 1 -i 2 -a 1 + -t 0.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 5 -a 1 - -t 0.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 5 -a 1 h -t 0.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 5 -a 1 + -t 0.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 6 -a 1 - -t 0.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 6 -a 1 h -t 0.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 6 -a 1 v -t 0.10000000000000001 sim_annotation 0.10000000000000001 2 CBR-2 starts r -t 0.104 -s 1 -d 3 -p cbr -e 500 -c 1 -i 3 -a 1 + -t 0.104 -s 3 -d 4 -p cbr -e 500 -c 1 -i 3 -a 1 - -t 0.104 -s 3 -d 4 -p cbr -e 500 -c 1 -i 3 -a 1 h -t 0.104 -s 3 -d 4 -p cbr -e 500 -c 1 -i 3 -a 1 + -t 0.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 7 -a 1 - -t 0.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 7 -a 1 h -t 0.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 7 -a 1 r -t 0.114 -s 1 -d 3 -p cbr -e 500 -c 1 -i 4 -a 1 + -t 0.114 -s 3 -d 4 -p cbr -e 500 -c 1 -i 4 -a 1 - -t 0.114 -s 3 -d 4 -p cbr -e 500 -c 1 -i 4 -a 1 h -t 0.114 -s 3 -d 4 -p cbr -e 500 -c 1 -i 4 -a 1 + -t 0.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 8 -a 1 - -t 0.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 8 -a 1 h -t 0.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 8 -a 1 + -t 0.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 9 -a 1 - -t 0.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 9 -a 1 h -t 0.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 9 -a 1 r -t 0.124 -s 1 -d 3 -p cbr -e 500 -c 1 -i 5 -a 1 + -t 0.124 -s 3 -d 4 -p cbr -e 500 -c 1 -i 5 -a 1 - -t 0.124 -s 3 -d 4 -p cbr -e 500 -c 1 -i 5 -a 1 h -t 0.124 -s 3 -d 4 -p cbr -e 500 -c 1 -i 5 -a 1 r -t 0.128 -s 3 -d 4 -p cbr -e 500 -c 1 -i 0 -a 1 + -t 0.128 -s 4 -d 6 -p cbr -e 500 -c 1 -i 0 -a 1 - -t 0.128 -s 4 -d 6 -p cbr -e 500 -c 1 -i 0 -a 1 h -t 0.128 -s 4 -d 6 -p cbr -e 500 -c 1 -i 0 -a 1 r -t 0.128 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 6 -a 1 + -t 0.128 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 6 -a 1 - -t 0.128 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 6 -a 1 h -t 0.128 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 6 -a 1 + -t 0.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 10 -a 1 - -t 0.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 10 -a 1 h -t 0.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 10 -a 1 r -t 0.134 -s 1 -d 3 -p cbr -e 500 -c 1 -i 7 -a 1 + -t 0.134 -s 3 -d 4 -p cbr -e 500 -c 1 -i 7 -a 1 - -t 0.136 -s 3 -d 4 -p cbr -e 500 -c 1 -i 7 -a 1 h -t 0.136 -s 3 -d 4 -p cbr -e 500 -c 1 -i 7 -a 1 r -t 0.138 -s 3 -d 4 -p cbr -e 500 -c 1 -i 1 -a 1 + -t 0.138 -s 4 -d 6 -p cbr -e 500 -c 1 -i 1 -a 1 - -t 0.138 -s 4 -d 6 -p cbr -e 500 -c 1 -i 1 -a 1 h -t 0.138 -s 4 -d 6 -p cbr -e 500 -c 1 -i 1 -a 1 + -t 0.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 11 -a 1 - -t 0.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 11 -a 1 h -t 0.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 11 -a 1 + -t 0.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 12 -a 1 - -t 0.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 12 -a 1 h -t 0.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 12 -a 1 r -t 0.144 -s 1 -d 3 -p cbr -e 500 -c 1 -i 8 -a 1 + -t 0.144 -s 3 -d 4 -p cbr -e 500 -c 1 -i 8 -a 1 - -t 0.144 -s 3 -d 4 -p cbr -e 500 -c 1 -i 8 -a 1 h -t 0.144 -s 3 -d 4 -p cbr -e 500 -c 1 -i 8 -a 1 r -t 0.148 -s 3 -d 4 -p cbr -e 500 -c 1 -i 2 -a 1 + -t 0.148 -s 4 -d 6 -p cbr -e 500 -c 1 -i 2 -a 1 - -t 0.148 -s 4 -d 6 -p cbr -e 500 -c 1 -i 2 -a 1 h -t 0.148 -s 4 -d 6 -p cbr -e 500 -c 1 -i 2 -a 1 r -t 0.148 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 9 -a 1 + -t 0.148 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 9 -a 1 - -t 0.148 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 9 -a 1 h -t 0.148 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 9 -a 1 + -t 0.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 13 -a 1 - -t 0.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 13 -a 1 h -t 0.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 13 -a 1 r -t 0.152 -s 4 -d 6 -p cbr -e 500 -c 1 -i 0 -a 1 r -t 0.154 -s 1 -d 3 -p cbr -e 500 -c 1 -i 10 -a 1 + -t 0.154 -s 3 -d 4 -p cbr -e 500 -c 1 -i 10 -a 1 - -t 0.156 -s 3 -d 4 -p cbr -e 500 -c 1 -i 10 -a 1 h -t 0.156 -s 3 -d 4 -p cbr -e 500 -c 1 -i 10 -a 1 r -t 0.158 -s 3 -d 4 -p cbr -e 500 -c 1 -i 3 -a 1 + -t 0.158 -s 4 -d 6 -p cbr -e 500 -c 1 -i 3 -a 1 - -t 0.158 -s 4 -d 6 -p cbr -e 500 -c 1 -i 3 -a 1 h -t 0.158 -s 4 -d 6 -p cbr -e 500 -c 1 -i 3 -a 1 + -t 0.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 14 -a 1 - -t 0.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 14 -a 1 h -t 0.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 14 -a 1 + -t 0.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 15 -a 1 - -t 0.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 15 -a 1 h -t 0.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 15 -a 1 r -t 0.162 -s 4 -d 6 -p cbr -e 500 -c 1 -i 1 -a 1 r -t 0.164 -s 1 -d 3 -p cbr -e 500 -c 1 -i 11 -a 1 + -t 0.164 -s 3 -d 4 -p cbr -e 500 -c 1 -i 11 -a 1 - -t 0.164 -s 3 -d 4 -p cbr -e 500 -c 1 -i 11 -a 1 h -t 0.164 -s 3 -d 4 -p cbr -e 500 -c 1 -i 11 -a 1 r -t 0.168 -s 3 -d 4 -p cbr -e 500 -c 1 -i 4 -a 1 + -t 0.168 -s 4 -d 6 -p cbr -e 500 -c 1 -i 4 -a 1 - -t 0.168 -s 4 -d 6 -p cbr -e 500 -c 1 -i 4 -a 1 h -t 0.168 -s 4 -d 6 -p cbr -e 500 -c 1 -i 4 -a 1 r -t 0.168 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 12 -a 1 + -t 0.168 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 12 -a 1 - -t 0.168 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 12 -a 1 h -t 0.168 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 12 -a 1 + -t 0.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 16 -a 1 - -t 0.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 16 -a 1 h -t 0.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 16 -a 1 r -t 0.172 -s 4 -d 6 -p cbr -e 500 -c 1 -i 2 -a 1 r -t 0.174 -s 1 -d 3 -p cbr -e 500 -c 1 -i 13 -a 1 + -t 0.174 -s 3 -d 4 -p cbr -e 500 -c 1 -i 13 -a 1 - -t 0.176 -s 3 -d 4 -p cbr -e 500 -c 1 -i 13 -a 1 h -t 0.176 -s 3 -d 4 -p cbr -e 500 -c 1 -i 13 -a 1 r -t 0.178 -s 3 -d 4 -p cbr -e 500 -c 1 -i 5 -a 1 + -t 0.178 -s 4 -d 6 -p cbr -e 500 -c 1 -i 5 -a 1 - -t 0.178 -s 4 -d 6 -p cbr -e 500 -c 1 -i 5 -a 1 h -t 0.178 -s 4 -d 6 -p cbr -e 500 -c 1 -i 5 -a 1 + -t 0.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 17 -a 1 - -t 0.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 17 -a 1 h -t 0.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 17 -a 1 + -t 0.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 18 -a 1 - -t 0.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 18 -a 1 h -t 0.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 18 -a 1 r -t 0.182 -s 4 -d 6 -p cbr -e 500 -c 1 -i 3 -a 1 r -t 0.184 -s 1 -d 3 -p cbr -e 500 -c 1 -i 15 -a 1 + -t 0.184 -s 3 -d 4 -p cbr -e 500 -c 1 -i 15 -a 1 - -t 0.184 -s 3 -d 4 -p cbr -e 500 -c 1 -i 15 -a 1 h -t 0.184 -s 3 -d 4 -p cbr -e 500 -c 1 -i 15 -a 1 r -t 0.186 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 6 -a 1 + -t 0.186 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 6 -a 1 - -t 0.186 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 6 -a 1 h -t 0.186 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 6 -a 1 r -t 0.188 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 14 -a 1 + -t 0.188 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 14 -a 1 - -t 0.188 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 14 -a 1 h -t 0.188 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 14 -a 1 r -t 0.19 -s 3 -d 4 -p cbr -e 500 -c 1 -i 7 -a 1 + -t 0.19 -s 4 -d 6 -p cbr -e 500 -c 1 -i 7 -a 1 - -t 0.19 -s 4 -d 6 -p cbr -e 500 -c 1 -i 7 -a 1 h -t 0.19 -s 4 -d 6 -p cbr -e 500 -c 1 -i 7 -a 1 + -t 0.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 19 -a 1 - -t 0.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 19 -a 1 h -t 0.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 19 -a 1 r -t 0.192 -s 4 -d 6 -p cbr -e 500 -c 1 -i 4 -a 1 r -t 0.194 -s 1 -d 3 -p cbr -e 500 -c 1 -i 16 -a 1 + -t 0.194 -s 3 -d 4 -p cbr -e 500 -c 1 -i 16 -a 1 - -t 0.196 -s 3 -d 4 -p cbr -e 500 -c 1 -i 16 -a 1 h -t 0.196 -s 3 -d 4 -p cbr -e 500 -c 1 -i 16 -a 1 r -t 0.198 -s 3 -d 4 -p cbr -e 500 -c 1 -i 8 -a 1 + -t 0.198 -s 4 -d 6 -p cbr -e 500 -c 1 -i 8 -a 1 - -t 0.198 -s 4 -d 6 -p cbr -e 500 -c 1 -i 8 -a 1 h -t 0.198 -s 4 -d 6 -p cbr -e 500 -c 1 -i 8 -a 1 + -t 0.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 20 -a 1 - -t 0.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 20 -a 1 h -t 0.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 20 -a 1 + -t 0.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 21 -a 1 - -t 0.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 21 -a 1 h -t 0.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 21 -a 1 r -t 0.202 -s 4 -d 6 -p cbr -e 500 -c 1 -i 5 -a 1 r -t 0.204 -s 1 -d 3 -p cbr -e 500 -c 1 -i 18 -a 1 + -t 0.204 -s 3 -d 4 -p cbr -e 500 -c 1 -i 18 -a 1 - -t 0.204 -s 3 -d 4 -p cbr -e 500 -c 1 -i 18 -a 1 h -t 0.204 -s 3 -d 4 -p cbr -e 500 -c 1 -i 18 -a 1 r -t 0.206 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 9 -a 1 + -t 0.206 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 9 -a 1 - -t 0.206 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 9 -a 1 h -t 0.206 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 9 -a 1 r -t 0.208 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 17 -a 1 + -t 0.208 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 17 -a 1 - -t 0.208 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 17 -a 1 h -t 0.208 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 17 -a 1 r -t 0.21 -s 3 -d 4 -p cbr -e 500 -c 1 -i 10 -a 1 + -t 0.21 -s 4 -d 6 -p cbr -e 500 -c 1 -i 10 -a 1 - -t 0.21 -s 4 -d 6 -p cbr -e 500 -c 1 -i 10 -a 1 h -t 0.21 -s 4 -d 6 -p cbr -e 500 -c 1 -i 10 -a 1 + -t 0.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 22 -a 1 - -t 0.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 22 -a 1 h -t 0.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 22 -a 1 r -t 0.214 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 6 -a 1 r -t 0.214 -s 4 -d 6 -p cbr -e 500 -c 1 -i 7 -a 1 r -t 0.214 -s 1 -d 3 -p cbr -e 500 -c 1 -i 19 -a 1 + -t 0.214 -s 3 -d 4 -p cbr -e 500 -c 1 -i 19 -a 1 - -t 0.216 -s 3 -d 4 -p cbr -e 500 -c 1 -i 19 -a 1 h -t 0.216 -s 3 -d 4 -p cbr -e 500 -c 1 -i 19 -a 1 r -t 0.218 -s 3 -d 4 -p cbr -e 500 -c 1 -i 11 -a 1 + -t 0.218 -s 4 -d 6 -p cbr -e 500 -c 1 -i 11 -a 1 - -t 0.218 -s 4 -d 6 -p cbr -e 500 -c 1 -i 11 -a 1 h -t 0.218 -s 4 -d 6 -p cbr -e 500 -c 1 -i 11 -a 1 + -t 0.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 23 -a 1 - -t 0.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 23 -a 1 h -t 0.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 23 -a 1 + -t 0.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 24 -a 1 - -t 0.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 24 -a 1 h -t 0.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 24 -a 1 r -t 0.222 -s 4 -d 6 -p cbr -e 500 -c 1 -i 8 -a 1 r -t 0.224 -s 1 -d 3 -p cbr -e 500 -c 1 -i 21 -a 1 + -t 0.224 -s 3 -d 4 -p cbr -e 500 -c 1 -i 21 -a 1 - -t 0.224 -s 3 -d 4 -p cbr -e 500 -c 1 -i 21 -a 1 h -t 0.224 -s 3 -d 4 -p cbr -e 500 -c 1 -i 21 -a 1 r -t 0.226 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 12 -a 1 + -t 0.226 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 12 -a 1 - -t 0.226 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 12 -a 1 h -t 0.226 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 12 -a 1 r -t 0.228 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 20 -a 1 + -t 0.228 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 20 -a 1 - -t 0.228 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 20 -a 1 h -t 0.228 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 20 -a 1 r -t 0.23 -s 3 -d 4 -p cbr -e 500 -c 1 -i 13 -a 1 + -t 0.23 -s 4 -d 6 -p cbr -e 500 -c 1 -i 13 -a 1 - -t 0.23 -s 4 -d 6 -p cbr -e 500 -c 1 -i 13 -a 1 h -t 0.23 -s 4 -d 6 -p cbr -e 500 -c 1 -i 13 -a 1 + -t 0.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 25 -a 1 - -t 0.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 25 -a 1 h -t 0.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 25 -a 1 r -t 0.234 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 9 -a 1 r -t 0.234 -s 4 -d 6 -p cbr -e 500 -c 1 -i 10 -a 1 r -t 0.234 -s 1 -d 3 -p cbr -e 500 -c 1 -i 22 -a 1 + -t 0.234 -s 3 -d 4 -p cbr -e 500 -c 1 -i 22 -a 1 - -t 0.236 -s 3 -d 4 -p cbr -e 500 -c 1 -i 22 -a 1 h -t 0.236 -s 3 -d 4 -p cbr -e 500 -c 1 -i 22 -a 1 r -t 0.238 -s 3 -d 4 -p cbr -e 500 -c 1 -i 15 -a 1 + -t 0.238 -s 4 -d 6 -p cbr -e 500 -c 1 -i 15 -a 1 - -t 0.238 -s 4 -d 6 -p cbr -e 500 -c 1 -i 15 -a 1 h -t 0.238 -s 4 -d 6 -p cbr -e 500 -c 1 -i 15 -a 1 + -t 0.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 26 -a 1 - -t 0.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 26 -a 1 h -t 0.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 26 -a 1 + -t 0.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 27 -a 1 - -t 0.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 27 -a 1 h -t 0.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 27 -a 1 r -t 0.242 -s 4 -d 6 -p cbr -e 500 -c 1 -i 11 -a 1 r -t 0.244 -s 1 -d 3 -p cbr -e 500 -c 1 -i 24 -a 1 + -t 0.244 -s 3 -d 4 -p cbr -e 500 -c 1 -i 24 -a 1 - -t 0.244 -s 3 -d 4 -p cbr -e 500 -c 1 -i 24 -a 1 h -t 0.244 -s 3 -d 4 -p cbr -e 500 -c 1 -i 24 -a 1 r -t 0.246 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 14 -a 1 + -t 0.246 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 14 -a 1 - -t 0.246 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 14 -a 1 h -t 0.246 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 14 -a 1 r -t 0.248 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 23 -a 1 + -t 0.248 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 23 -a 1 - -t 0.248 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 23 -a 1 h -t 0.248 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 23 -a 1 r -t 0.25 -s 3 -d 4 -p cbr -e 500 -c 1 -i 16 -a 1 + -t 0.25 -s 4 -d 6 -p cbr -e 500 -c 1 -i 16 -a 1 - -t 0.25 -s 4 -d 6 -p cbr -e 500 -c 1 -i 16 -a 1 h -t 0.25 -s 4 -d 6 -p cbr -e 500 -c 1 -i 16 -a 1 + -t 0.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 28 -a 1 - -t 0.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 28 -a 1 h -t 0.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 28 -a 1 r -t 0.254 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 12 -a 1 r -t 0.254 -s 4 -d 6 -p cbr -e 500 -c 1 -i 13 -a 1 r -t 0.254 -s 1 -d 3 -p cbr -e 500 -c 1 -i 25 -a 1 + -t 0.254 -s 3 -d 4 -p cbr -e 500 -c 1 -i 25 -a 1 - -t 0.256 -s 3 -d 4 -p cbr -e 500 -c 1 -i 25 -a 1 h -t 0.256 -s 3 -d 4 -p cbr -e 500 -c 1 -i 25 -a 1 r -t 0.258 -s 3 -d 4 -p cbr -e 500 -c 1 -i 18 -a 1 + -t 0.258 -s 4 -d 6 -p cbr -e 500 -c 1 -i 18 -a 1 - -t 0.258 -s 4 -d 6 -p cbr -e 500 -c 1 -i 18 -a 1 h -t 0.258 -s 4 -d 6 -p cbr -e 500 -c 1 -i 18 -a 1 + -t 0.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 29 -a 1 - -t 0.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 29 -a 1 h -t 0.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 29 -a 1 + -t 0.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 30 -a 1 - -t 0.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 30 -a 1 h -t 0.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 30 -a 1 r -t 0.262 -s 4 -d 6 -p cbr -e 500 -c 1 -i 15 -a 1 r -t 0.264 -s 1 -d 3 -p cbr -e 500 -c 1 -i 27 -a 1 + -t 0.264 -s 3 -d 4 -p cbr -e 500 -c 1 -i 27 -a 1 - -t 0.264 -s 3 -d 4 -p cbr -e 500 -c 1 -i 27 -a 1 h -t 0.264 -s 3 -d 4 -p cbr -e 500 -c 1 -i 27 -a 1 r -t 0.266 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 17 -a 1 + -t 0.266 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 17 -a 1 - -t 0.266 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 17 -a 1 h -t 0.266 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 17 -a 1 r -t 0.268 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 26 -a 1 + -t 0.268 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 26 -a 1 - -t 0.268 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 26 -a 1 h -t 0.268 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 26 -a 1 r -t 0.27 -s 3 -d 4 -p cbr -e 500 -c 1 -i 19 -a 1 + -t 0.27 -s 4 -d 6 -p cbr -e 500 -c 1 -i 19 -a 1 - -t 0.27 -s 4 -d 6 -p cbr -e 500 -c 1 -i 19 -a 1 h -t 0.27 -s 4 -d 6 -p cbr -e 500 -c 1 -i 19 -a 1 + -t 0.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 31 -a 1 - -t 0.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 31 -a 1 h -t 0.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 31 -a 1 r -t 0.274 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 14 -a 1 r -t 0.274 -s 4 -d 6 -p cbr -e 500 -c 1 -i 16 -a 1 r -t 0.274 -s 1 -d 3 -p cbr -e 500 -c 1 -i 28 -a 1 + -t 0.274 -s 3 -d 4 -p cbr -e 500 -c 1 -i 28 -a 1 - -t 0.276 -s 3 -d 4 -p cbr -e 500 -c 1 -i 28 -a 1 h -t 0.276 -s 3 -d 4 -p cbr -e 500 -c 1 -i 28 -a 1 r -t 0.278 -s 3 -d 4 -p cbr -e 500 -c 1 -i 21 -a 1 + -t 0.278 -s 4 -d 6 -p cbr -e 500 -c 1 -i 21 -a 1 - -t 0.278 -s 4 -d 6 -p cbr -e 500 -c 1 -i 21 -a 1 h -t 0.278 -s 4 -d 6 -p cbr -e 500 -c 1 -i 21 -a 1 + -t 0.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 32 -a 1 - -t 0.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 32 -a 1 h -t 0.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 32 -a 1 + -t 0.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 33 -a 1 - -t 0.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 33 -a 1 h -t 0.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 33 -a 1 r -t 0.282 -s 4 -d 6 -p cbr -e 500 -c 1 -i 18 -a 1 r -t 0.284 -s 1 -d 3 -p cbr -e 500 -c 1 -i 30 -a 1 + -t 0.284 -s 3 -d 4 -p cbr -e 500 -c 1 -i 30 -a 1 - -t 0.284 -s 3 -d 4 -p cbr -e 500 -c 1 -i 30 -a 1 h -t 0.284 -s 3 -d 4 -p cbr -e 500 -c 1 -i 30 -a 1 r -t 0.286 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 20 -a 1 + -t 0.286 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 20 -a 1 - -t 0.286 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 20 -a 1 h -t 0.286 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 20 -a 1 r -t 0.288 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 29 -a 1 + -t 0.288 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 29 -a 1 - -t 0.288 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 29 -a 1 h -t 0.288 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 29 -a 1 r -t 0.29 -s 3 -d 4 -p cbr -e 500 -c 1 -i 22 -a 1 + -t 0.29 -s 4 -d 6 -p cbr -e 500 -c 1 -i 22 -a 1 - -t 0.29 -s 4 -d 6 -p cbr -e 500 -c 1 -i 22 -a 1 h -t 0.29 -s 4 -d 6 -p cbr -e 500 -c 1 -i 22 -a 1 + -t 0.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 34 -a 1 - -t 0.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 34 -a 1 h -t 0.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 34 -a 1 r -t 0.294 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 17 -a 1 r -t 0.294 -s 4 -d 6 -p cbr -e 500 -c 1 -i 19 -a 1 r -t 0.294 -s 1 -d 3 -p cbr -e 500 -c 1 -i 31 -a 1 + -t 0.294 -s 3 -d 4 -p cbr -e 500 -c 1 -i 31 -a 1 - -t 0.296 -s 3 -d 4 -p cbr -e 500 -c 1 -i 31 -a 1 h -t 0.296 -s 3 -d 4 -p cbr -e 500 -c 1 -i 31 -a 1 r -t 0.298 -s 3 -d 4 -p cbr -e 500 -c 1 -i 24 -a 1 + -t 0.298 -s 4 -d 6 -p cbr -e 500 -c 1 -i 24 -a 1 - -t 0.298 -s 4 -d 6 -p cbr -e 500 -c 1 -i 24 -a 1 h -t 0.298 -s 4 -d 6 -p cbr -e 500 -c 1 -i 24 -a 1 + -t 0.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 35 -a 1 - -t 0.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 35 -a 1 h -t 0.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 35 -a 1 + -t 0.3 -s 1 -d 3 -p cbr -e 500 -c 1 -i 36 -a 1 - -t 0.3 -s 1 -d 3 -p cbr -e 500 -c 1 -i 36 -a 1 h -t 0.3 -s 1 -d 3 -p cbr -e 500 -c 1 -i 36 -a 1 r -t 0.302 -s 4 -d 6 -p cbr -e 500 -c 1 -i 21 -a 1 r -t 0.304 -s 1 -d 3 -p cbr -e 500 -c 1 -i 33 -a 1 + -t 0.304 -s 3 -d 4 -p cbr -e 500 -c 1 -i 33 -a 1 - -t 0.304 -s 3 -d 4 -p cbr -e 500 -c 1 -i 33 -a 1 h -t 0.304 -s 3 -d 4 -p cbr -e 500 -c 1 -i 33 -a 1 r -t 0.306 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 23 -a 1 + -t 0.306 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 23 -a 1 - -t 0.306 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 23 -a 1 h -t 0.306 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 23 -a 1 r -t 0.308 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 32 -a 1 + -t 0.308 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 32 -a 1 - -t 0.308 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 32 -a 1 h -t 0.308 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 32 -a 1 r -t 0.31 -s 3 -d 4 -p cbr -e 500 -c 1 -i 25 -a 1 + -t 0.31 -s 4 -d 6 -p cbr -e 500 -c 1 -i 25 -a 1 - -t 0.31 -s 4 -d 6 -p cbr -e 500 -c 1 -i 25 -a 1 h -t 0.31 -s 4 -d 6 -p cbr -e 500 -c 1 -i 25 -a 1 + -t 0.31 -s 1 -d 3 -p cbr -e 500 -c 1 -i 37 -a 1 - -t 0.31 -s 1 -d 3 -p cbr -e 500 -c 1 -i 37 -a 1 h -t 0.31 -s 1 -d 3 -p cbr -e 500 -c 1 -i 37 -a 1 r -t 0.314 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 20 -a 1 r -t 0.314 -s 4 -d 6 -p cbr -e 500 -c 1 -i 22 -a 1 r -t 0.314 -s 1 -d 3 -p cbr -e 500 -c 1 -i 34 -a 1 + -t 0.314 -s 3 -d 4 -p cbr -e 500 -c 1 -i 34 -a 1 - -t 0.316 -s 3 -d 4 -p cbr -e 500 -c 1 -i 34 -a 1 h -t 0.316 -s 3 -d 4 -p cbr -e 500 -c 1 -i 34 -a 1 r -t 0.318 -s 3 -d 4 -p cbr -e 500 -c 1 -i 27 -a 1 + -t 0.318 -s 4 -d 6 -p cbr -e 500 -c 1 -i 27 -a 1 - -t 0.318 -s 4 -d 6 -p cbr -e 500 -c 1 -i 27 -a 1 h -t 0.318 -s 4 -d 6 -p cbr -e 500 -c 1 -i 27 -a 1 + -t 0.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 38 -a 1 - -t 0.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 38 -a 1 h -t 0.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 38 -a 1 + -t 0.32 -s 1 -d 3 -p cbr -e 500 -c 1 -i 39 -a 1 - -t 0.32 -s 1 -d 3 -p cbr -e 500 -c 1 -i 39 -a 1 h -t 0.32 -s 1 -d 3 -p cbr -e 500 -c 1 -i 39 -a 1 r -t 0.322 -s 4 -d 6 -p cbr -e 500 -c 1 -i 24 -a 1 r -t 0.324 -s 1 -d 3 -p cbr -e 500 -c 1 -i 36 -a 1 + -t 0.324 -s 3 -d 4 -p cbr -e 500 -c 1 -i 36 -a 1 - -t 0.324 -s 3 -d 4 -p cbr -e 500 -c 1 -i 36 -a 1 h -t 0.324 -s 3 -d 4 -p cbr -e 500 -c 1 -i 36 -a 1 r -t 0.326 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 26 -a 1 + -t 0.326 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 26 -a 1 - -t 0.326 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 26 -a 1 h -t 0.326 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 26 -a 1 r -t 0.328 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 35 -a 1 + -t 0.328 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 35 -a 1 - -t 0.328 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 35 -a 1 h -t 0.328 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 35 -a 1 r -t 0.33 -s 3 -d 4 -p cbr -e 500 -c 1 -i 28 -a 1 + -t 0.33 -s 4 -d 6 -p cbr -e 500 -c 1 -i 28 -a 1 - -t 0.33 -s 4 -d 6 -p cbr -e 500 -c 1 -i 28 -a 1 h -t 0.33 -s 4 -d 6 -p cbr -e 500 -c 1 -i 28 -a 1 + -t 0.33 -s 1 -d 3 -p cbr -e 500 -c 1 -i 40 -a 1 - -t 0.33 -s 1 -d 3 -p cbr -e 500 -c 1 -i 40 -a 1 h -t 0.33 -s 1 -d 3 -p cbr -e 500 -c 1 -i 40 -a 1 r -t 0.334 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 23 -a 1 r -t 0.334 -s 4 -d 6 -p cbr -e 500 -c 1 -i 25 -a 1 r -t 0.334 -s 1 -d 3 -p cbr -e 500 -c 1 -i 37 -a 1 + -t 0.334 -s 3 -d 4 -p cbr -e 500 -c 1 -i 37 -a 1 - -t 0.336 -s 3 -d 4 -p cbr -e 500 -c 1 -i 37 -a 1 h -t 0.336 -s 3 -d 4 -p cbr -e 500 -c 1 -i 37 -a 1 r -t 0.338 -s 3 -d 4 -p cbr -e 500 -c 1 -i 30 -a 1 + -t 0.338 -s 4 -d 6 -p cbr -e 500 -c 1 -i 30 -a 1 - -t 0.338 -s 4 -d 6 -p cbr -e 500 -c 1 -i 30 -a 1 h -t 0.338 -s 4 -d 6 -p cbr -e 500 -c 1 -i 30 -a 1 + -t 0.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 41 -a 1 - -t 0.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 41 -a 1 h -t 0.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 41 -a 1 + -t 0.34 -s 1 -d 3 -p cbr -e 500 -c 1 -i 42 -a 1 - -t 0.34 -s 1 -d 3 -p cbr -e 500 -c 1 -i 42 -a 1 h -t 0.34 -s 1 -d 3 -p cbr -e 500 -c 1 -i 42 -a 1 r -t 0.342 -s 4 -d 6 -p cbr -e 500 -c 1 -i 27 -a 1 r -t 0.344 -s 1 -d 3 -p cbr -e 500 -c 1 -i 39 -a 1 + -t 0.344 -s 3 -d 4 -p cbr -e 500 -c 1 -i 39 -a 1 - -t 0.344 -s 3 -d 4 -p cbr -e 500 -c 1 -i 39 -a 1 h -t 0.344 -s 3 -d 4 -p cbr -e 500 -c 1 -i 39 -a 1 r -t 0.346 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 29 -a 1 + -t 0.346 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 29 -a 1 - -t 0.346 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 29 -a 1 h -t 0.346 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 29 -a 1 r -t 0.348 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 38 -a 1 + -t 0.348 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 38 -a 1 - -t 0.348 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 38 -a 1 h -t 0.348 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 38 -a 1 r -t 0.35 -s 3 -d 4 -p cbr -e 500 -c 1 -i 31 -a 1 + -t 0.35 -s 4 -d 6 -p cbr -e 500 -c 1 -i 31 -a 1 - -t 0.35 -s 4 -d 6 -p cbr -e 500 -c 1 -i 31 -a 1 h -t 0.35 -s 4 -d 6 -p cbr -e 500 -c 1 -i 31 -a 1 + -t 0.35 -s 1 -d 3 -p cbr -e 500 -c 1 -i 43 -a 1 - -t 0.35 -s 1 -d 3 -p cbr -e 500 -c 1 -i 43 -a 1 h -t 0.35 -s 1 -d 3 -p cbr -e 500 -c 1 -i 43 -a 1 r -t 0.354 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 26 -a 1 r -t 0.354 -s 4 -d 6 -p cbr -e 500 -c 1 -i 28 -a 1 r -t 0.354 -s 1 -d 3 -p cbr -e 500 -c 1 -i 40 -a 1 + -t 0.354 -s 3 -d 4 -p cbr -e 500 -c 1 -i 40 -a 1 - -t 0.356 -s 3 -d 4 -p cbr -e 500 -c 1 -i 40 -a 1 h -t 0.356 -s 3 -d 4 -p cbr -e 500 -c 1 -i 40 -a 1 r -t 0.358 -s 3 -d 4 -p cbr -e 500 -c 1 -i 33 -a 1 + -t 0.358 -s 4 -d 6 -p cbr -e 500 -c 1 -i 33 -a 1 - -t 0.358 -s 4 -d 6 -p cbr -e 500 -c 1 -i 33 -a 1 h -t 0.358 -s 4 -d 6 -p cbr -e 500 -c 1 -i 33 -a 1 + -t 0.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 44 -a 1 - -t 0.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 44 -a 1 h -t 0.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 44 -a 1 + -t 0.36 -s 1 -d 3 -p cbr -e 500 -c 1 -i 45 -a 1 - -t 0.36 -s 1 -d 3 -p cbr -e 500 -c 1 -i 45 -a 1 h -t 0.36 -s 1 -d 3 -p cbr -e 500 -c 1 -i 45 -a 1 r -t 0.362 -s 4 -d 6 -p cbr -e 500 -c 1 -i 30 -a 1 r -t 0.364 -s 1 -d 3 -p cbr -e 500 -c 1 -i 42 -a 1 + -t 0.364 -s 3 -d 4 -p cbr -e 500 -c 1 -i 42 -a 1 - -t 0.364 -s 3 -d 4 -p cbr -e 500 -c 1 -i 42 -a 1 h -t 0.364 -s 3 -d 4 -p cbr -e 500 -c 1 -i 42 -a 1 r -t 0.366 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 32 -a 1 + -t 0.366 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 32 -a 1 - -t 0.366 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 32 -a 1 h -t 0.366 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 32 -a 1 r -t 0.368 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 41 -a 1 + -t 0.368 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 41 -a 1 - -t 0.368 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 41 -a 1 h -t 0.368 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 41 -a 1 r -t 0.37 -s 3 -d 4 -p cbr -e 500 -c 1 -i 34 -a 1 + -t 0.37 -s 4 -d 6 -p cbr -e 500 -c 1 -i 34 -a 1 - -t 0.37 -s 4 -d 6 -p cbr -e 500 -c 1 -i 34 -a 1 h -t 0.37 -s 4 -d 6 -p cbr -e 500 -c 1 -i 34 -a 1 + -t 0.37 -s 1 -d 3 -p cbr -e 500 -c 1 -i 46 -a 1 - -t 0.37 -s 1 -d 3 -p cbr -e 500 -c 1 -i 46 -a 1 h -t 0.37 -s 1 -d 3 -p cbr -e 500 -c 1 -i 46 -a 1 r -t 0.374 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 29 -a 1 r -t 0.374 -s 4 -d 6 -p cbr -e 500 -c 1 -i 31 -a 1 r -t 0.374 -s 1 -d 3 -p cbr -e 500 -c 1 -i 43 -a 1 + -t 0.374 -s 3 -d 4 -p cbr -e 500 -c 1 -i 43 -a 1 - -t 0.376 -s 3 -d 4 -p cbr -e 500 -c 1 -i 43 -a 1 h -t 0.376 -s 3 -d 4 -p cbr -e 500 -c 1 -i 43 -a 1 r -t 0.378 -s 3 -d 4 -p cbr -e 500 -c 1 -i 36 -a 1 + -t 0.378 -s 4 -d 6 -p cbr -e 500 -c 1 -i 36 -a 1 - -t 0.378 -s 4 -d 6 -p cbr -e 500 -c 1 -i 36 -a 1 h -t 0.378 -s 4 -d 6 -p cbr -e 500 -c 1 -i 36 -a 1 + -t 0.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 47 -a 1 - -t 0.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 47 -a 1 h -t 0.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 47 -a 1 + -t 0.38 -s 1 -d 3 -p cbr -e 500 -c 1 -i 48 -a 1 - -t 0.38 -s 1 -d 3 -p cbr -e 500 -c 1 -i 48 -a 1 h -t 0.38 -s 1 -d 3 -p cbr -e 500 -c 1 -i 48 -a 1 r -t 0.382 -s 4 -d 6 -p cbr -e 500 -c 1 -i 33 -a 1 r -t 0.384 -s 1 -d 3 -p cbr -e 500 -c 1 -i 45 -a 1 + -t 0.384 -s 3 -d 4 -p cbr -e 500 -c 1 -i 45 -a 1 - -t 0.384 -s 3 -d 4 -p cbr -e 500 -c 1 -i 45 -a 1 h -t 0.384 -s 3 -d 4 -p cbr -e 500 -c 1 -i 45 -a 1 r -t 0.386 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 35 -a 1 + -t 0.386 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 35 -a 1 - -t 0.386 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 35 -a 1 h -t 0.386 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 35 -a 1 r -t 0.388 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 44 -a 1 + -t 0.388 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 44 -a 1 - -t 0.388 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 44 -a 1 h -t 0.388 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 44 -a 1 r -t 0.39 -s 3 -d 4 -p cbr -e 500 -c 1 -i 37 -a 1 + -t 0.39 -s 4 -d 6 -p cbr -e 500 -c 1 -i 37 -a 1 - -t 0.39 -s 4 -d 6 -p cbr -e 500 -c 1 -i 37 -a 1 h -t 0.39 -s 4 -d 6 -p cbr -e 500 -c 1 -i 37 -a 1 + -t 0.39 -s 1 -d 3 -p cbr -e 500 -c 1 -i 49 -a 1 - -t 0.39 -s 1 -d 3 -p cbr -e 500 -c 1 -i 49 -a 1 h -t 0.39 -s 1 -d 3 -p cbr -e 500 -c 1 -i 49 -a 1 r -t 0.394 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 32 -a 1 r -t 0.394 -s 4 -d 6 -p cbr -e 500 -c 1 -i 34 -a 1 r -t 0.394 -s 1 -d 3 -p cbr -e 500 -c 1 -i 46 -a 1 + -t 0.394 -s 3 -d 4 -p cbr -e 500 -c 1 -i 46 -a 1 - -t 0.396 -s 3 -d 4 -p cbr -e 500 -c 1 -i 46 -a 1 h -t 0.396 -s 3 -d 4 -p cbr -e 500 -c 1 -i 46 -a 1 r -t 0.398 -s 3 -d 4 -p cbr -e 500 -c 1 -i 39 -a 1 + -t 0.398 -s 4 -d 6 -p cbr -e 500 -c 1 -i 39 -a 1 - -t 0.398 -s 4 -d 6 -p cbr -e 500 -c 1 -i 39 -a 1 h -t 0.398 -s 4 -d 6 -p cbr -e 500 -c 1 -i 39 -a 1 + -t 0.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 50 -a 1 - -t 0.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 50 -a 1 h -t 0.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 50 -a 1 + -t 0.4 -s 1 -d 3 -p cbr -e 500 -c 1 -i 51 -a 1 - -t 0.4 -s 1 -d 3 -p cbr -e 500 -c 1 -i 51 -a 1 h -t 0.4 -s 1 -d 3 -p cbr -e 500 -c 1 -i 51 -a 1 r -t 0.402 -s 4 -d 6 -p cbr -e 500 -c 1 -i 36 -a 1 r -t 0.404 -s 1 -d 3 -p cbr -e 500 -c 1 -i 48 -a 1 + -t 0.404 -s 3 -d 4 -p cbr -e 500 -c 1 -i 48 -a 1 - -t 0.404 -s 3 -d 4 -p cbr -e 500 -c 1 -i 48 -a 1 h -t 0.404 -s 3 -d 4 -p cbr -e 500 -c 1 -i 48 -a 1 r -t 0.406 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 38 -a 1 + -t 0.406 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 38 -a 1 - -t 0.406 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 38 -a 1 h -t 0.406 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 38 -a 1 r -t 0.408 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 47 -a 1 + -t 0.408 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 47 -a 1 - -t 0.408 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 47 -a 1 h -t 0.408 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 47 -a 1 r -t 0.41 -s 3 -d 4 -p cbr -e 500 -c 1 -i 40 -a 1 + -t 0.41 -s 4 -d 6 -p cbr -e 500 -c 1 -i 40 -a 1 - -t 0.41 -s 4 -d 6 -p cbr -e 500 -c 1 -i 40 -a 1 h -t 0.41 -s 4 -d 6 -p cbr -e 500 -c 1 -i 40 -a 1 + -t 0.41 -s 1 -d 3 -p cbr -e 500 -c 1 -i 52 -a 1 - -t 0.41 -s 1 -d 3 -p cbr -e 500 -c 1 -i 52 -a 1 h -t 0.41 -s 1 -d 3 -p cbr -e 500 -c 1 -i 52 -a 1 r -t 0.414 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 35 -a 1 r -t 0.414 -s 4 -d 6 -p cbr -e 500 -c 1 -i 37 -a 1 r -t 0.414 -s 1 -d 3 -p cbr -e 500 -c 1 -i 49 -a 1 + -t 0.414 -s 3 -d 4 -p cbr -e 500 -c 1 -i 49 -a 1 - -t 0.416 -s 3 -d 4 -p cbr -e 500 -c 1 -i 49 -a 1 h -t 0.416 -s 3 -d 4 -p cbr -e 500 -c 1 -i 49 -a 1 r -t 0.418 -s 3 -d 4 -p cbr -e 500 -c 1 -i 42 -a 1 + -t 0.418 -s 4 -d 6 -p cbr -e 500 -c 1 -i 42 -a 1 - -t 0.418 -s 4 -d 6 -p cbr -e 500 -c 1 -i 42 -a 1 h -t 0.418 -s 4 -d 6 -p cbr -e 500 -c 1 -i 42 -a 1 + -t 0.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 53 -a 1 - -t 0.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 53 -a 1 h -t 0.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 53 -a 1 + -t 0.42 -s 1 -d 3 -p cbr -e 500 -c 1 -i 54 -a 1 - -t 0.42 -s 1 -d 3 -p cbr -e 500 -c 1 -i 54 -a 1 h -t 0.42 -s 1 -d 3 -p cbr -e 500 -c 1 -i 54 -a 1 r -t 0.422 -s 4 -d 6 -p cbr -e 500 -c 1 -i 39 -a 1 r -t 0.424 -s 1 -d 3 -p cbr -e 500 -c 1 -i 51 -a 1 + -t 0.424 -s 3 -d 4 -p cbr -e 500 -c 1 -i 51 -a 1 - -t 0.424 -s 3 -d 4 -p cbr -e 500 -c 1 -i 51 -a 1 h -t 0.424 -s 3 -d 4 -p cbr -e 500 -c 1 -i 51 -a 1 r -t 0.426 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 41 -a 1 + -t 0.426 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 41 -a 1 - -t 0.426 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 41 -a 1 h -t 0.426 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 41 -a 1 r -t 0.428 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 50 -a 1 + -t 0.428 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 50 -a 1 - -t 0.428 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 50 -a 1 h -t 0.428 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 50 -a 1 r -t 0.43 -s 3 -d 4 -p cbr -e 500 -c 1 -i 43 -a 1 + -t 0.43 -s 4 -d 6 -p cbr -e 500 -c 1 -i 43 -a 1 - -t 0.43 -s 4 -d 6 -p cbr -e 500 -c 1 -i 43 -a 1 h -t 0.43 -s 4 -d 6 -p cbr -e 500 -c 1 -i 43 -a 1 + -t 0.43 -s 1 -d 3 -p cbr -e 500 -c 1 -i 55 -a 1 - -t 0.43 -s 1 -d 3 -p cbr -e 500 -c 1 -i 55 -a 1 h -t 0.43 -s 1 -d 3 -p cbr -e 500 -c 1 -i 55 -a 1 r -t 0.434 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 38 -a 1 r -t 0.434 -s 4 -d 6 -p cbr -e 500 -c 1 -i 40 -a 1 r -t 0.434 -s 1 -d 3 -p cbr -e 500 -c 1 -i 52 -a 1 + -t 0.434 -s 3 -d 4 -p cbr -e 500 -c 1 -i 52 -a 1 - -t 0.436 -s 3 -d 4 -p cbr -e 500 -c 1 -i 52 -a 1 h -t 0.436 -s 3 -d 4 -p cbr -e 500 -c 1 -i 52 -a 1 r -t 0.438 -s 3 -d 4 -p cbr -e 500 -c 1 -i 45 -a 1 + -t 0.438 -s 4 -d 6 -p cbr -e 500 -c 1 -i 45 -a 1 - -t 0.438 -s 4 -d 6 -p cbr -e 500 -c 1 -i 45 -a 1 h -t 0.438 -s 4 -d 6 -p cbr -e 500 -c 1 -i 45 -a 1 + -t 0.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 56 -a 1 - -t 0.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 56 -a 1 h -t 0.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 56 -a 1 + -t 0.44 -s 1 -d 3 -p cbr -e 500 -c 1 -i 57 -a 1 - -t 0.44 -s 1 -d 3 -p cbr -e 500 -c 1 -i 57 -a 1 h -t 0.44 -s 1 -d 3 -p cbr -e 500 -c 1 -i 57 -a 1 r -t 0.442 -s 4 -d 6 -p cbr -e 500 -c 1 -i 42 -a 1 r -t 0.444 -s 1 -d 3 -p cbr -e 500 -c 1 -i 54 -a 1 + -t 0.444 -s 3 -d 4 -p cbr -e 500 -c 1 -i 54 -a 1 - -t 0.444 -s 3 -d 4 -p cbr -e 500 -c 1 -i 54 -a 1 h -t 0.444 -s 3 -d 4 -p cbr -e 500 -c 1 -i 54 -a 1 r -t 0.446 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 44 -a 1 + -t 0.446 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 44 -a 1 - -t 0.446 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 44 -a 1 h -t 0.446 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 44 -a 1 r -t 0.448 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 53 -a 1 + -t 0.448 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 53 -a 1 - -t 0.448 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 53 -a 1 h -t 0.448 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 53 -a 1 r -t 0.45 -s 3 -d 4 -p cbr -e 500 -c 1 -i 46 -a 1 + -t 0.45 -s 4 -d 6 -p cbr -e 500 -c 1 -i 46 -a 1 - -t 0.45 -s 4 -d 6 -p cbr -e 500 -c 1 -i 46 -a 1 h -t 0.45 -s 4 -d 6 -p cbr -e 500 -c 1 -i 46 -a 1 + -t 0.45 -s 1 -d 3 -p cbr -e 500 -c 1 -i 58 -a 1 - -t 0.45 -s 1 -d 3 -p cbr -e 500 -c 1 -i 58 -a 1 h -t 0.45 -s 1 -d 3 -p cbr -e 500 -c 1 -i 58 -a 1 r -t 0.454 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 41 -a 1 r -t 0.454 -s 4 -d 6 -p cbr -e 500 -c 1 -i 43 -a 1 r -t 0.454 -s 1 -d 3 -p cbr -e 500 -c 1 -i 55 -a 1 + -t 0.454 -s 3 -d 4 -p cbr -e 500 -c 1 -i 55 -a 1 - -t 0.456 -s 3 -d 4 -p cbr -e 500 -c 1 -i 55 -a 1 h -t 0.456 -s 3 -d 4 -p cbr -e 500 -c 1 -i 55 -a 1 r -t 0.458 -s 3 -d 4 -p cbr -e 500 -c 1 -i 48 -a 1 + -t 0.458 -s 4 -d 6 -p cbr -e 500 -c 1 -i 48 -a 1 - -t 0.458 -s 4 -d 6 -p cbr -e 500 -c 1 -i 48 -a 1 h -t 0.458 -s 4 -d 6 -p cbr -e 500 -c 1 -i 48 -a 1 + -t 0.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 59 -a 1 - -t 0.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 59 -a 1 h -t 0.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 59 -a 1 + -t 0.46 -s 1 -d 3 -p cbr -e 500 -c 1 -i 60 -a 1 - -t 0.46 -s 1 -d 3 -p cbr -e 500 -c 1 -i 60 -a 1 h -t 0.46 -s 1 -d 3 -p cbr -e 500 -c 1 -i 60 -a 1 r -t 0.462 -s 4 -d 6 -p cbr -e 500 -c 1 -i 45 -a 1 r -t 0.464 -s 1 -d 3 -p cbr -e 500 -c 1 -i 57 -a 1 + -t 0.464 -s 3 -d 4 -p cbr -e 500 -c 1 -i 57 -a 1 - -t 0.464 -s 3 -d 4 -p cbr -e 500 -c 1 -i 57 -a 1 h -t 0.464 -s 3 -d 4 -p cbr -e 500 -c 1 -i 57 -a 1 r -t 0.466 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 47 -a 1 + -t 0.466 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 47 -a 1 - -t 0.466 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 47 -a 1 h -t 0.466 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 47 -a 1 r -t 0.468 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 56 -a 1 + -t 0.468 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 56 -a 1 - -t 0.468 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 56 -a 1 h -t 0.468 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 56 -a 1 r -t 0.47 -s 3 -d 4 -p cbr -e 500 -c 1 -i 49 -a 1 + -t 0.47 -s 4 -d 6 -p cbr -e 500 -c 1 -i 49 -a 1 - -t 0.47 -s 4 -d 6 -p cbr -e 500 -c 1 -i 49 -a 1 h -t 0.47 -s 4 -d 6 -p cbr -e 500 -c 1 -i 49 -a 1 + -t 0.47 -s 1 -d 3 -p cbr -e 500 -c 1 -i 61 -a 1 - -t 0.47 -s 1 -d 3 -p cbr -e 500 -c 1 -i 61 -a 1 h -t 0.47 -s 1 -d 3 -p cbr -e 500 -c 1 -i 61 -a 1 r -t 0.474 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 44 -a 1 r -t 0.474 -s 4 -d 6 -p cbr -e 500 -c 1 -i 46 -a 1 r -t 0.474 -s 1 -d 3 -p cbr -e 500 -c 1 -i 58 -a 1 + -t 0.474 -s 3 -d 4 -p cbr -e 500 -c 1 -i 58 -a 1 - -t 0.476 -s 3 -d 4 -p cbr -e 500 -c 1 -i 58 -a 1 h -t 0.476 -s 3 -d 4 -p cbr -e 500 -c 1 -i 58 -a 1 r -t 0.478 -s 3 -d 4 -p cbr -e 500 -c 1 -i 51 -a 1 + -t 0.478 -s 4 -d 6 -p cbr -e 500 -c 1 -i 51 -a 1 - -t 0.478 -s 4 -d 6 -p cbr -e 500 -c 1 -i 51 -a 1 h -t 0.478 -s 4 -d 6 -p cbr -e 500 -c 1 -i 51 -a 1 + -t 0.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 62 -a 1 - -t 0.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 62 -a 1 h -t 0.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 62 -a 1 + -t 0.48 -s 1 -d 3 -p cbr -e 500 -c 1 -i 63 -a 1 - -t 0.48 -s 1 -d 3 -p cbr -e 500 -c 1 -i 63 -a 1 h -t 0.48 -s 1 -d 3 -p cbr -e 500 -c 1 -i 63 -a 1 r -t 0.482 -s 4 -d 6 -p cbr -e 500 -c 1 -i 48 -a 1 r -t 0.484 -s 1 -d 3 -p cbr -e 500 -c 1 -i 60 -a 1 + -t 0.484 -s 3 -d 4 -p cbr -e 500 -c 1 -i 60 -a 1 - -t 0.484 -s 3 -d 4 -p cbr -e 500 -c 1 -i 60 -a 1 h -t 0.484 -s 3 -d 4 -p cbr -e 500 -c 1 -i 60 -a 1 r -t 0.486 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 50 -a 1 + -t 0.486 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 50 -a 1 - -t 0.486 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 50 -a 1 h -t 0.486 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 50 -a 1 r -t 0.488 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 59 -a 1 + -t 0.488 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 59 -a 1 - -t 0.488 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 59 -a 1 h -t 0.488 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 59 -a 1 r -t 0.49 -s 3 -d 4 -p cbr -e 500 -c 1 -i 52 -a 1 + -t 0.49 -s 4 -d 6 -p cbr -e 500 -c 1 -i 52 -a 1 - -t 0.49 -s 4 -d 6 -p cbr -e 500 -c 1 -i 52 -a 1 h -t 0.49 -s 4 -d 6 -p cbr -e 500 -c 1 -i 52 -a 1 + -t 0.49 -s 1 -d 3 -p cbr -e 500 -c 1 -i 64 -a 1 - -t 0.49 -s 1 -d 3 -p cbr -e 500 -c 1 -i 64 -a 1 h -t 0.49 -s 1 -d 3 -p cbr -e 500 -c 1 -i 64 -a 1 r -t 0.494 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 47 -a 1 r -t 0.494 -s 4 -d 6 -p cbr -e 500 -c 1 -i 49 -a 1 r -t 0.494 -s 1 -d 3 -p cbr -e 500 -c 1 -i 61 -a 1 + -t 0.494 -s 3 -d 4 -p cbr -e 500 -c 1 -i 61 -a 1 - -t 0.496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 61 -a 1 h -t 0.496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 61 -a 1 r -t 0.498 -s 3 -d 4 -p cbr -e 500 -c 1 -i 54 -a 1 + -t 0.498 -s 4 -d 6 -p cbr -e 500 -c 1 -i 54 -a 1 - -t 0.498 -s 4 -d 6 -p cbr -e 500 -c 1 -i 54 -a 1 h -t 0.498 -s 4 -d 6 -p cbr -e 500 -c 1 -i 54 -a 1 + -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -f 0 -m 0 -y {0 0} - -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {0 0} h -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {-1 -1} v -t 0.5 sim_annotation 0.5 3 TCP starts + -t 0.5 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 66 -a 1 - -t 0.5 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 66 -a 1 h -t 0.5 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 66 -a 1 + -t 0.5 -s 1 -d 3 -p cbr -e 500 -c 1 -i 67 -a 1 - -t 0.5 -s 1 -d 3 -p cbr -e 500 -c 1 -i 67 -a 1 h -t 0.5 -s 1 -d 3 -p cbr -e 500 -c 1 -i 67 -a 1 r -t 0.502 -s 4 -d 6 -p cbr -e 500 -c 1 -i 51 -a 1 r -t 0.504 -s 1 -d 3 -p cbr -e 500 -c 1 -i 63 -a 1 + -t 0.504 -s 3 -d 4 -p cbr -e 500 -c 1 -i 63 -a 1 - -t 0.504 -s 3 -d 4 -p cbr -e 500 -c 1 -i 63 -a 1 h -t 0.504 -s 3 -d 4 -p cbr -e 500 -c 1 -i 63 -a 1 r -t 0.506 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 53 -a 1 + -t 0.506 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 53 -a 1 - -t 0.506 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 53 -a 1 h -t 0.506 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 53 -a 1 r -t 0.508 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 62 -a 1 + -t 0.508 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 62 -a 1 - -t 0.508 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 62 -a 1 h -t 0.508 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 62 -a 1 r -t 0.51 -s 3 -d 4 -p cbr -e 500 -c 1 -i 55 -a 1 + -t 0.51 -s 4 -d 6 -p cbr -e 500 -c 1 -i 55 -a 1 - -t 0.51 -s 4 -d 6 -p cbr -e 500 -c 1 -i 55 -a 1 h -t 0.51 -s 4 -d 6 -p cbr -e 500 -c 1 -i 55 -a 1 + -t 0.51 -s 1 -d 3 -p cbr -e 500 -c 1 -i 68 -a 1 - -t 0.51 -s 1 -d 3 -p cbr -e 500 -c 1 -i 68 -a 1 h -t 0.51 -s 1 -d 3 -p cbr -e 500 -c 1 -i 68 -a 1 r -t 0.514 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 50 -a 1 r -t 0.514 -s 4 -d 6 -p cbr -e 500 -c 1 -i 52 -a 1 r -t 0.514 -s 1 -d 3 -p cbr -e 500 -c 1 -i 64 -a 1 + -t 0.514 -s 3 -d 4 -p cbr -e 500 -c 1 -i 64 -a 1 - -t 0.516 -s 3 -d 4 -p cbr -e 500 -c 1 -i 64 -a 1 h -t 0.516 -s 3 -d 4 -p cbr -e 500 -c 1 -i 64 -a 1 r -t 0.518 -s 3 -d 4 -p cbr -e 500 -c 1 -i 57 -a 1 + -t 0.518 -s 4 -d 6 -p cbr -e 500 -c 1 -i 57 -a 1 - -t 0.518 -s 4 -d 6 -p cbr -e 500 -c 1 -i 57 -a 1 h -t 0.518 -s 4 -d 6 -p cbr -e 500 -c 1 -i 57 -a 1 + -t 0.52 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 69 -a 1 - -t 0.52 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 69 -a 1 h -t 0.52 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 69 -a 1 + -t 0.52 -s 1 -d 3 -p cbr -e 500 -c 1 -i 70 -a 1 - -t 0.52 -s 1 -d 3 -p cbr -e 500 -c 1 -i 70 -a 1 h -t 0.52 -s 1 -d 3 -p cbr -e 500 -c 1 -i 70 -a 1 r -t 0.5216 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {0 0} + -t 0.5216 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {0 0} - -t 0.5216 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {0 0} h -t 0.5216 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {-1 -1} r -t 0.522 -s 4 -d 6 -p cbr -e 500 -c 1 -i 54 -a 1 r -t 0.524 -s 1 -d 3 -p cbr -e 500 -c 1 -i 67 -a 1 + -t 0.524 -s 3 -d 4 -p cbr -e 500 -c 1 -i 67 -a 1 r -t 0.526 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 56 -a 1 + -t 0.526 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 56 -a 1 - -t 0.526 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 56 -a 1 h -t 0.526 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 56 -a 1 r -t 0.528 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 66 -a 1 + -t 0.528 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 66 -a 1 - -t 0.5296 -s 3 -d 4 -p cbr -e 500 -c 1 -i 67 -a 1 h -t 0.5296 -s 3 -d 4 -p cbr -e 500 -c 1 -i 67 -a 1 r -t 0.53 -s 3 -d 4 -p cbr -e 500 -c 1 -i 58 -a 1 + -t 0.53 -s 4 -d 6 -p cbr -e 500 -c 1 -i 58 -a 1 - -t 0.53 -s 4 -d 6 -p cbr -e 500 -c 1 -i 58 -a 1 h -t 0.53 -s 4 -d 6 -p cbr -e 500 -c 1 -i 58 -a 1 + -t 0.53 -s 1 -d 3 -p cbr -e 500 -c 1 -i 71 -a 1 - -t 0.53 -s 1 -d 3 -p cbr -e 500 -c 1 -i 71 -a 1 h -t 0.53 -s 1 -d 3 -p cbr -e 500 -c 1 -i 71 -a 1 - -t 0.5336 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 66 -a 1 h -t 0.5336 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 66 -a 1 r -t 0.534 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 53 -a 1 r -t 0.534 -s 4 -d 6 -p cbr -e 500 -c 1 -i 55 -a 1 r -t 0.534 -s 1 -d 3 -p cbr -e 500 -c 1 -i 68 -a 1 + -t 0.534 -s 3 -d 4 -p cbr -e 500 -c 1 -i 68 -a 1 r -t 0.538 -s 3 -d 4 -p cbr -e 500 -c 1 -i 60 -a 1 + -t 0.538 -s 4 -d 6 -p cbr -e 500 -c 1 -i 60 -a 1 - -t 0.538 -s 4 -d 6 -p cbr -e 500 -c 1 -i 60 -a 1 h -t 0.538 -s 4 -d 6 -p cbr -e 500 -c 1 -i 60 -a 1 + -t 0.54 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 72 -a 1 - -t 0.54 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 72 -a 1 h -t 0.54 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 72 -a 1 + -t 0.54 -s 1 -d 3 -p cbr -e 500 -c 1 -i 73 -a 1 - -t 0.54 -s 1 -d 3 -p cbr -e 500 -c 1 -i 73 -a 1 h -t 0.54 -s 1 -d 3 -p cbr -e 500 -c 1 -i 73 -a 1 - -t 0.5416 -s 3 -d 4 -p cbr -e 500 -c 1 -i 68 -a 1 h -t 0.5416 -s 3 -d 4 -p cbr -e 500 -c 1 -i 68 -a 1 r -t 0.542 -s 4 -d 6 -p cbr -e 500 -c 1 -i 57 -a 1 r -t 0.544 -s 1 -d 3 -p cbr -e 500 -c 1 -i 70 -a 1 + -t 0.544 -s 3 -d 4 -p cbr -e 500 -c 1 -i 70 -a 1 - -t 0.5456 -s 3 -d 4 -p cbr -e 500 -c 1 -i 70 -a 1 h -t 0.5456 -s 3 -d 4 -p cbr -e 500 -c 1 -i 70 -a 1 r -t 0.546 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 59 -a 1 + -t 0.546 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 59 -a 1 - -t 0.546 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 59 -a 1 h -t 0.546 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 59 -a 1 r -t 0.548 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 69 -a 1 + -t 0.548 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 69 -a 1 - -t 0.5496 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 69 -a 1 h -t 0.5496 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 69 -a 1 r -t 0.55 -s 3 -d 4 -p cbr -e 500 -c 1 -i 61 -a 1 + -t 0.55 -s 4 -d 6 -p cbr -e 500 -c 1 -i 61 -a 1 - -t 0.55 -s 4 -d 6 -p cbr -e 500 -c 1 -i 61 -a 1 h -t 0.55 -s 4 -d 6 -p cbr -e 500 -c 1 -i 61 -a 1 + -t 0.55 -s 1 -d 3 -p cbr -e 500 -c 1 -i 74 -a 1 - -t 0.55 -s 1 -d 3 -p cbr -e 500 -c 1 -i 74 -a 1 h -t 0.55 -s 1 -d 3 -p cbr -e 500 -c 1 -i 74 -a 1 r -t 0.554 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 56 -a 1 r -t 0.554 -s 4 -d 6 -p cbr -e 500 -c 1 -i 58 -a 1 r -t 0.554 -s 1 -d 3 -p cbr -e 500 -c 1 -i 71 -a 1 + -t 0.554 -s 3 -d 4 -p cbr -e 500 -c 1 -i 71 -a 1 - -t 0.5576 -s 3 -d 4 -p cbr -e 500 -c 1 -i 71 -a 1 h -t 0.5576 -s 3 -d 4 -p cbr -e 500 -c 1 -i 71 -a 1 r -t 0.558 -s 3 -d 4 -p cbr -e 500 -c 1 -i 63 -a 1 + -t 0.558 -s 4 -d 6 -p cbr -e 500 -c 1 -i 63 -a 1 - -t 0.558 -s 4 -d 6 -p cbr -e 500 -c 1 -i 63 -a 1 h -t 0.558 -s 4 -d 6 -p cbr -e 500 -c 1 -i 63 -a 1 + -t 0.56 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 75 -a 1 - -t 0.56 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 75 -a 1 h -t 0.56 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 75 -a 1 + -t 0.56 -s 1 -d 3 -p cbr -e 500 -c 1 -i 76 -a 1 - -t 0.56 -s 1 -d 3 -p cbr -e 500 -c 1 -i 76 -a 1 h -t 0.56 -s 1 -d 3 -p cbr -e 500 -c 1 -i 76 -a 1 r -t 0.562 -s 4 -d 6 -p cbr -e 500 -c 1 -i 60 -a 1 r -t 0.564 -s 1 -d 3 -p cbr -e 500 -c 1 -i 73 -a 1 + -t 0.564 -s 3 -d 4 -p cbr -e 500 -c 1 -i 73 -a 1 - -t 0.564 -s 3 -d 4 -p cbr -e 500 -c 1 -i 73 -a 1 h -t 0.564 -s 3 -d 4 -p cbr -e 500 -c 1 -i 73 -a 1 r -t 0.566 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 62 -a 1 + -t 0.566 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 62 -a 1 - -t 0.566 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 62 -a 1 h -t 0.566 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 62 -a 1 r -t 0.568 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 72 -a 1 + -t 0.568 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 72 -a 1 - -t 0.568 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 72 -a 1 h -t 0.568 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 72 -a 1 r -t 0.57 -s 3 -d 4 -p cbr -e 500 -c 1 -i 64 -a 1 + -t 0.57 -s 4 -d 6 -p cbr -e 500 -c 1 -i 64 -a 1 - -t 0.57 -s 4 -d 6 -p cbr -e 500 -c 1 -i 64 -a 1 h -t 0.57 -s 4 -d 6 -p cbr -e 500 -c 1 -i 64 -a 1 + -t 0.57 -s 1 -d 3 -p cbr -e 500 -c 1 -i 77 -a 1 - -t 0.57 -s 1 -d 3 -p cbr -e 500 -c 1 -i 77 -a 1 h -t 0.57 -s 1 -d 3 -p cbr -e 500 -c 1 -i 77 -a 1 r -t 0.574 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 59 -a 1 r -t 0.574 -s 4 -d 6 -p cbr -e 500 -c 1 -i 61 -a 1 r -t 0.574 -s 1 -d 3 -p cbr -e 500 -c 1 -i 74 -a 1 + -t 0.574 -s 3 -d 4 -p cbr -e 500 -c 1 -i 74 -a 1 - -t 0.576 -s 3 -d 4 -p cbr -e 500 -c 1 -i 74 -a 1 h -t 0.576 -s 3 -d 4 -p cbr -e 500 -c 1 -i 74 -a 1 r -t 0.5796 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {0 0} + -t 0.5796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {0 0} - -t 0.5796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {0 0} h -t 0.5796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {-1 -1} + -t 0.58 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 78 -a 1 - -t 0.58 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 78 -a 1 h -t 0.58 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 78 -a 1 + -t 0.58 -s 1 -d 3 -p cbr -e 500 -c 1 -i 79 -a 1 - -t 0.58 -s 1 -d 3 -p cbr -e 500 -c 1 -i 79 -a 1 h -t 0.58 -s 1 -d 3 -p cbr -e 500 -c 1 -i 79 -a 1 r -t 0.582 -s 4 -d 6 -p cbr -e 500 -c 1 -i 63 -a 1 r -t 0.5836 -s 3 -d 4 -p cbr -e 500 -c 1 -i 67 -a 1 + -t 0.5836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 67 -a 1 - -t 0.5836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 67 -a 1 h -t 0.5836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 67 -a 1 r -t 0.584 -s 1 -d 3 -p cbr -e 500 -c 1 -i 76 -a 1 + -t 0.584 -s 3 -d 4 -p cbr -e 500 -c 1 -i 76 -a 1 - -t 0.584 -s 3 -d 4 -p cbr -e 500 -c 1 -i 76 -a 1 h -t 0.584 -s 3 -d 4 -p cbr -e 500 -c 1 -i 76 -a 1 r -t 0.588 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 75 -a 1 + -t 0.588 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 75 -a 1 - -t 0.588 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 75 -a 1 h -t 0.588 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 75 -a 1 + -t 0.59 -s 1 -d 3 -p cbr -e 500 -c 1 -i 80 -a 1 - -t 0.59 -s 1 -d 3 -p cbr -e 500 -c 1 -i 80 -a 1 h -t 0.59 -s 1 -d 3 -p cbr -e 500 -c 1 -i 80 -a 1 r -t 0.5916 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 66 -a 1 + -t 0.5916 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 66 -a 1 - -t 0.5916 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 66 -a 1 h -t 0.5916 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 66 -a 1 r -t 0.594 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 62 -a 1 r -t 0.594 -s 4 -d 6 -p cbr -e 500 -c 1 -i 64 -a 1 r -t 0.594 -s 1 -d 3 -p cbr -e 500 -c 1 -i 77 -a 1 + -t 0.594 -s 3 -d 4 -p cbr -e 500 -c 1 -i 77 -a 1 r -t 0.5956 -s 3 -d 4 -p cbr -e 500 -c 1 -i 68 -a 1 + -t 0.5956 -s 4 -d 6 -p cbr -e 500 -c 1 -i 68 -a 1 - -t 0.5956 -s 4 -d 6 -p cbr -e 500 -c 1 -i 68 -a 1 h -t 0.5956 -s 4 -d 6 -p cbr -e 500 -c 1 -i 68 -a 1 - -t 0.596 -s 3 -d 4 -p cbr -e 500 -c 1 -i 77 -a 1 h -t 0.596 -s 3 -d 4 -p cbr -e 500 -c 1 -i 77 -a 1 r -t 0.5996 -s 3 -d 4 -p cbr -e 500 -c 1 -i 70 -a 1 + -t 0.5996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 70 -a 1 - -t 0.5996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 70 -a 1 h -t 0.5996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 70 -a 1 + -t 0.6 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 81 -a 1 - -t 0.6 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 81 -a 1 h -t 0.6 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 81 -a 1 + -t 0.6 -s 1 -d 3 -p cbr -e 500 -c 1 -i 82 -a 1 - -t 0.6 -s 1 -d 3 -p cbr -e 500 -c 1 -i 82 -a 1 h -t 0.6 -s 1 -d 3 -p cbr -e 500 -c 1 -i 82 -a 1 r -t 0.6012 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {0 0} + -t 0.6012 -s 5 -d 4 -p ack -e 40 -c 0 -i 83 -a 0 -S 0 -y {0 0} - -t 0.6012 -s 5 -d 4 -p ack -e 40 -c 0 -i 83 -a 0 -S 0 -y {0 0} h -t 0.6012 -s 5 -d 4 -p ack -e 40 -c 0 -i 83 -a 0 -S 0 -y {-1 -1} r -t 0.604 -s 1 -d 3 -p cbr -e 500 -c 1 -i 79 -a 1 + -t 0.604 -s 3 -d 4 -p cbr -e 500 -c 1 -i 79 -a 1 - -t 0.604 -s 3 -d 4 -p cbr -e 500 -c 1 -i 79 -a 1 h -t 0.604 -s 3 -d 4 -p cbr -e 500 -c 1 -i 79 -a 1 r -t 0.6076 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 69 -a 1 + -t 0.6076 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 69 -a 1 - -t 0.6076 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 69 -a 1 h -t 0.6076 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 69 -a 1 r -t 0.6076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 67 -a 1 r -t 0.608 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 78 -a 1 + -t 0.608 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 78 -a 1 - -t 0.608 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 78 -a 1 h -t 0.608 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 78 -a 1 + -t 0.61 -s 1 -d 3 -p cbr -e 500 -c 1 -i 84 -a 1 - -t 0.61 -s 1 -d 3 -p cbr -e 500 -c 1 -i 84 -a 1 h -t 0.61 -s 1 -d 3 -p cbr -e 500 -c 1 -i 84 -a 1 r -t 0.6116 -s 3 -d 4 -p cbr -e 500 -c 1 -i 71 -a 1 + -t 0.6116 -s 4 -d 6 -p cbr -e 500 -c 1 -i 71 -a 1 - -t 0.6116 -s 4 -d 6 -p cbr -e 500 -c 1 -i 71 -a 1 h -t 0.6116 -s 4 -d 6 -p cbr -e 500 -c 1 -i 71 -a 1 r -t 0.614 -s 1 -d 3 -p cbr -e 500 -c 1 -i 80 -a 1 + -t 0.614 -s 3 -d 4 -p cbr -e 500 -c 1 -i 80 -a 1 - -t 0.616 -s 3 -d 4 -p cbr -e 500 -c 1 -i 80 -a 1 h -t 0.616 -s 3 -d 4 -p cbr -e 500 -c 1 -i 80 -a 1 r -t 0.618 -s 3 -d 4 -p cbr -e 500 -c 1 -i 73 -a 1 + -t 0.618 -s 4 -d 6 -p cbr -e 500 -c 1 -i 73 -a 1 - -t 0.618 -s 4 -d 6 -p cbr -e 500 -c 1 -i 73 -a 1 h -t 0.618 -s 4 -d 6 -p cbr -e 500 -c 1 -i 73 -a 1 r -t 0.6196 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 66 -a 1 r -t 0.6196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 68 -a 1 + -t 0.62 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 85 -a 1 - -t 0.62 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 85 -a 1 h -t 0.62 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 85 -a 1 + -t 0.62 -s 1 -d 3 -p cbr -e 500 -c 1 -i 86 -a 1 - -t 0.62 -s 1 -d 3 -p cbr -e 500 -c 1 -i 86 -a 1 h -t 0.62 -s 1 -d 3 -p cbr -e 500 -c 1 -i 86 -a 1 r -t 0.621264 -s 5 -d 4 -p ack -e 40 -c 0 -i 83 -a 0 -S 0 -y {0 0} + -t 0.621264 -s 4 -d 3 -p ack -e 40 -c 0 -i 83 -a 0 -S 0 -y {0 0} - -t 0.621264 -s 4 -d 3 -p ack -e 40 -c 0 -i 83 -a 0 -S 0 -y {0 0} h -t 0.621264 -s 4 -d 3 -p ack -e 40 -c 0 -i 83 -a 0 -S 0 -y {-1 -1} r -t 0.6236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 70 -a 1 r -t 0.624 -s 1 -d 3 -p cbr -e 500 -c 1 -i 82 -a 1 + -t 0.624 -s 3 -d 4 -p cbr -e 500 -c 1 -i 82 -a 1 - -t 0.624 -s 3 -d 4 -p cbr -e 500 -c 1 -i 82 -a 1 h -t 0.624 -s 3 -d 4 -p cbr -e 500 -c 1 -i 82 -a 1 r -t 0.626 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 72 -a 1 + -t 0.626 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 72 -a 1 - -t 0.626 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 72 -a 1 h -t 0.626 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 72 -a 1 r -t 0.628 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 81 -a 1 + -t 0.628 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 81 -a 1 - -t 0.628 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 81 -a 1 h -t 0.628 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 81 -a 1 r -t 0.63 -s 3 -d 4 -p cbr -e 500 -c 1 -i 74 -a 1 + -t 0.63 -s 4 -d 6 -p cbr -e 500 -c 1 -i 74 -a 1 - -t 0.63 -s 4 -d 6 -p cbr -e 500 -c 1 -i 74 -a 1 h -t 0.63 -s 4 -d 6 -p cbr -e 500 -c 1 -i 74 -a 1 + -t 0.63 -s 1 -d 3 -p cbr -e 500 -c 1 -i 87 -a 1 - -t 0.63 -s 1 -d 3 -p cbr -e 500 -c 1 -i 87 -a 1 h -t 0.63 -s 1 -d 3 -p cbr -e 500 -c 1 -i 87 -a 1 r -t 0.634 -s 1 -d 3 -p cbr -e 500 -c 1 -i 84 -a 1 + -t 0.634 -s 3 -d 4 -p cbr -e 500 -c 1 -i 84 -a 1 r -t 0.6356 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 69 -a 1 r -t 0.6356 -s 4 -d 6 -p cbr -e 500 -c 1 -i 71 -a 1 - -t 0.636 -s 3 -d 4 -p cbr -e 500 -c 1 -i 84 -a 1 h -t 0.636 -s 3 -d 4 -p cbr -e 500 -c 1 -i 84 -a 1 r -t 0.638 -s 3 -d 4 -p cbr -e 500 -c 1 -i 76 -a 1 + -t 0.638 -s 4 -d 6 -p cbr -e 500 -c 1 -i 76 -a 1 - -t 0.638 -s 4 -d 6 -p cbr -e 500 -c 1 -i 76 -a 1 h -t 0.638 -s 4 -d 6 -p cbr -e 500 -c 1 -i 76 -a 1 + -t 0.64 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 88 -a 1 - -t 0.64 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 88 -a 1 h -t 0.64 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 88 -a 1 + -t 0.64 -s 1 -d 3 -p cbr -e 500 -c 1 -i 89 -a 1 - -t 0.64 -s 1 -d 3 -p cbr -e 500 -c 1 -i 89 -a 1 h -t 0.64 -s 1 -d 3 -p cbr -e 500 -c 1 -i 89 -a 1 r -t 0.642 -s 4 -d 6 -p cbr -e 500 -c 1 -i 73 -a 1 r -t 0.644 -s 1 -d 3 -p cbr -e 500 -c 1 -i 86 -a 1 + -t 0.644 -s 3 -d 4 -p cbr -e 500 -c 1 -i 86 -a 1 - -t 0.644 -s 3 -d 4 -p cbr -e 500 -c 1 -i 86 -a 1 h -t 0.644 -s 3 -d 4 -p cbr -e 500 -c 1 -i 86 -a 1 r -t 0.646 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 75 -a 1 + -t 0.646 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 75 -a 1 - -t 0.646 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 75 -a 1 h -t 0.646 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 75 -a 1 r -t 0.648 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 85 -a 1 + -t 0.648 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 85 -a 1 - -t 0.648 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 85 -a 1 h -t 0.648 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 85 -a 1 r -t 0.65 -s 3 -d 4 -p cbr -e 500 -c 1 -i 77 -a 1 + -t 0.65 -s 4 -d 6 -p cbr -e 500 -c 1 -i 77 -a 1 - -t 0.65 -s 4 -d 6 -p cbr -e 500 -c 1 -i 77 -a 1 h -t 0.65 -s 4 -d 6 -p cbr -e 500 -c 1 -i 77 -a 1 + -t 0.65 -s 1 -d 3 -p cbr -e 500 -c 1 -i 90 -a 1 - -t 0.65 -s 1 -d 3 -p cbr -e 500 -c 1 -i 90 -a 1 h -t 0.65 -s 1 -d 3 -p cbr -e 500 -c 1 -i 90 -a 1 r -t 0.654 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 72 -a 1 r -t 0.654 -s 4 -d 6 -p cbr -e 500 -c 1 -i 74 -a 1 r -t 0.654 -s 1 -d 3 -p cbr -e 500 -c 1 -i 87 -a 1 + -t 0.654 -s 3 -d 4 -p cbr -e 500 -c 1 -i 87 -a 1 - -t 0.656 -s 3 -d 4 -p cbr -e 500 -c 1 -i 87 -a 1 h -t 0.656 -s 3 -d 4 -p cbr -e 500 -c 1 -i 87 -a 1 r -t 0.658 -s 3 -d 4 -p cbr -e 500 -c 1 -i 79 -a 1 + -t 0.658 -s 4 -d 6 -p cbr -e 500 -c 1 -i 79 -a 1 - -t 0.658 -s 4 -d 6 -p cbr -e 500 -c 1 -i 79 -a 1 h -t 0.658 -s 4 -d 6 -p cbr -e 500 -c 1 -i 79 -a 1 + -t 0.66 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 91 -a 1 - -t 0.66 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 91 -a 1 h -t 0.66 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 91 -a 1 + -t 0.66 -s 1 -d 3 -p cbr -e 500 -c 1 -i 92 -a 1 - -t 0.66 -s 1 -d 3 -p cbr -e 500 -c 1 -i 92 -a 1 h -t 0.66 -s 1 -d 3 -p cbr -e 500 -c 1 -i 92 -a 1 r -t 0.662 -s 4 -d 6 -p cbr -e 500 -c 1 -i 76 -a 1 r -t 0.664 -s 1 -d 3 -p cbr -e 500 -c 1 -i 89 -a 1 + -t 0.664 -s 3 -d 4 -p cbr -e 500 -c 1 -i 89 -a 1 - -t 0.664 -s 3 -d 4 -p cbr -e 500 -c 1 -i 89 -a 1 h -t 0.664 -s 3 -d 4 -p cbr -e 500 -c 1 -i 89 -a 1 r -t 0.666 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 78 -a 1 + -t 0.666 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 78 -a 1 - -t 0.666 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 78 -a 1 h -t 0.666 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 78 -a 1 r -t 0.668 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 88 -a 1 + -t 0.668 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 88 -a 1 - -t 0.668 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 88 -a 1 h -t 0.668 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 88 -a 1 r -t 0.67 -s 3 -d 4 -p cbr -e 500 -c 1 -i 80 -a 1 + -t 0.67 -s 4 -d 6 -p cbr -e 500 -c 1 -i 80 -a 1 - -t 0.67 -s 4 -d 6 -p cbr -e 500 -c 1 -i 80 -a 1 h -t 0.67 -s 4 -d 6 -p cbr -e 500 -c 1 -i 80 -a 1 + -t 0.67 -s 1 -d 3 -p cbr -e 500 -c 1 -i 93 -a 1 - -t 0.67 -s 1 -d 3 -p cbr -e 500 -c 1 -i 93 -a 1 h -t 0.67 -s 1 -d 3 -p cbr -e 500 -c 1 -i 93 -a 1 r -t 0.671584 -s 4 -d 3 -p ack -e 40 -c 0 -i 83 -a 0 -S 0 -y {0 0} + -t 0.671584 -s 3 -d 0 -p ack -e 40 -c 0 -i 83 -a 0 -S 0 -y {0 0} - -t 0.671584 -s 3 -d 0 -p ack -e 40 -c 0 -i 83 -a 0 -S 0 -f 0 -m 1 -y {0 0} h -t 0.671584 -s 3 -d 0 -p ack -e 40 -c 0 -i 83 -a 0 -S 0 -y {-1 -1} r -t 0.674 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 75 -a 1 r -t 0.674 -s 4 -d 6 -p cbr -e 500 -c 1 -i 77 -a 1 r -t 0.674 -s 1 -d 3 -p cbr -e 500 -c 1 -i 90 -a 1 + -t 0.674 -s 3 -d 4 -p cbr -e 500 -c 1 -i 90 -a 1 - -t 0.676 -s 3 -d 4 -p cbr -e 500 -c 1 -i 90 -a 1 h -t 0.676 -s 3 -d 4 -p cbr -e 500 -c 1 -i 90 -a 1 r -t 0.678 -s 3 -d 4 -p cbr -e 500 -c 1 -i 82 -a 1 + -t 0.678 -s 4 -d 6 -p cbr -e 500 -c 1 -i 82 -a 1 - -t 0.678 -s 4 -d 6 -p cbr -e 500 -c 1 -i 82 -a 1 h -t 0.678 -s 4 -d 6 -p cbr -e 500 -c 1 -i 82 -a 1 + -t 0.68 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 94 -a 1 - -t 0.68 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 94 -a 1 h -t 0.68 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 94 -a 1 + -t 0.68 -s 1 -d 3 -p cbr -e 500 -c 1 -i 95 -a 1 - -t 0.68 -s 1 -d 3 -p cbr -e 500 -c 1 -i 95 -a 1 h -t 0.68 -s 1 -d 3 -p cbr -e 500 -c 1 -i 95 -a 1 r -t 0.682 -s 4 -d 6 -p cbr -e 500 -c 1 -i 79 -a 1 r -t 0.684 -s 1 -d 3 -p cbr -e 500 -c 1 -i 92 -a 1 + -t 0.684 -s 3 -d 4 -p cbr -e 500 -c 1 -i 92 -a 1 - -t 0.684 -s 3 -d 4 -p cbr -e 500 -c 1 -i 92 -a 1 h -t 0.684 -s 3 -d 4 -p cbr -e 500 -c 1 -i 92 -a 1 r -t 0.686 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 81 -a 1 + -t 0.686 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 81 -a 1 - -t 0.686 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 81 -a 1 h -t 0.686 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 81 -a 1 r -t 0.688 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 91 -a 1 + -t 0.688 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 91 -a 1 - -t 0.688 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 91 -a 1 h -t 0.688 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 91 -a 1 r -t 0.69 -s 3 -d 4 -p cbr -e 500 -c 1 -i 84 -a 1 + -t 0.69 -s 4 -d 6 -p cbr -e 500 -c 1 -i 84 -a 1 - -t 0.69 -s 4 -d 6 -p cbr -e 500 -c 1 -i 84 -a 1 h -t 0.69 -s 4 -d 6 -p cbr -e 500 -c 1 -i 84 -a 1 + -t 0.69 -s 1 -d 3 -p cbr -e 500 -c 1 -i 96 -a 1 - -t 0.69 -s 1 -d 3 -p cbr -e 500 -c 1 -i 96 -a 1 h -t 0.69 -s 1 -d 3 -p cbr -e 500 -c 1 -i 96 -a 1 r -t 0.691648 -s 3 -d 0 -p ack -e 40 -c 0 -i 83 -a 0 -S 0 -y {0 0} f -t 0.69164799999999993 -s 0 -d 5 -n cwnd_ -a tcp -v 2.000000 -o 1.000000 -T v + -t 0.691648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 97 -a 0 -S 0 -f 0 -m 0 -y {1 1} - -t 0.691648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 97 -a 0 -S 0 -y {1 1} h -t 0.691648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 97 -a 0 -S 0 -y {-1 -1} + -t 0.691648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 98 -a 0 -S 0 -f 0 -m 0 -y {2 2} - -t 0.693248 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 98 -a 0 -S 0 -y {2 2} h -t 0.693248 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 98 -a 0 -S 0 -y {-1 -1} r -t 0.694 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 78 -a 1 r -t 0.694 -s 4 -d 6 -p cbr -e 500 -c 1 -i 80 -a 1 r -t 0.694 -s 1 -d 3 -p cbr -e 500 -c 1 -i 93 -a 1 + -t 0.694 -s 3 -d 4 -p cbr -e 500 -c 1 -i 93 -a 1 - -t 0.696 -s 3 -d 4 -p cbr -e 500 -c 1 -i 93 -a 1 h -t 0.696 -s 3 -d 4 -p cbr -e 500 -c 1 -i 93 -a 1 r -t 0.698 -s 3 -d 4 -p cbr -e 500 -c 1 -i 86 -a 1 + -t 0.698 -s 4 -d 6 -p cbr -e 500 -c 1 -i 86 -a 1 - -t 0.698 -s 4 -d 6 -p cbr -e 500 -c 1 -i 86 -a 1 h -t 0.698 -s 4 -d 6 -p cbr -e 500 -c 1 -i 86 -a 1 + -t 0.7 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 99 -a 1 - -t 0.7 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 99 -a 1 h -t 0.7 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 99 -a 1 + -t 0.7 -s 1 -d 3 -p cbr -e 500 -c 1 -i 100 -a 1 - -t 0.7 -s 1 -d 3 -p cbr -e 500 -c 1 -i 100 -a 1 h -t 0.7 -s 1 -d 3 -p cbr -e 500 -c 1 -i 100 -a 1 r -t 0.702 -s 4 -d 6 -p cbr -e 500 -c 1 -i 82 -a 1 r -t 0.704 -s 1 -d 3 -p cbr -e 500 -c 1 -i 95 -a 1 + -t 0.704 -s 3 -d 4 -p cbr -e 500 -c 1 -i 95 -a 1 - -t 0.704 -s 3 -d 4 -p cbr -e 500 -c 1 -i 95 -a 1 h -t 0.704 -s 3 -d 4 -p cbr -e 500 -c 1 -i 95 -a 1 r -t 0.706 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 85 -a 1 + -t 0.706 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 85 -a 1 - -t 0.706 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 85 -a 1 h -t 0.706 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 85 -a 1 r -t 0.708 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 94 -a 1 + -t 0.708 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 94 -a 1 - -t 0.708 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 94 -a 1 h -t 0.708 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 94 -a 1 r -t 0.71 -s 3 -d 4 -p cbr -e 500 -c 1 -i 87 -a 1 + -t 0.71 -s 4 -d 6 -p cbr -e 500 -c 1 -i 87 -a 1 - -t 0.71 -s 4 -d 6 -p cbr -e 500 -c 1 -i 87 -a 1 h -t 0.71 -s 4 -d 6 -p cbr -e 500 -c 1 -i 87 -a 1 + -t 0.71 -s 1 -d 3 -p cbr -e 500 -c 1 -i 101 -a 1 - -t 0.71 -s 1 -d 3 -p cbr -e 500 -c 1 -i 101 -a 1 h -t 0.71 -s 1 -d 3 -p cbr -e 500 -c 1 -i 101 -a 1 r -t 0.713248 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 97 -a 0 -S 0 -y {1 1} + -t 0.713248 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 97 -a 0 -S 0 -y {1 1} r -t 0.714 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 81 -a 1 r -t 0.714 -s 4 -d 6 -p cbr -e 500 -c 1 -i 84 -a 1 r -t 0.714 -s 1 -d 3 -p cbr -e 500 -c 1 -i 96 -a 1 + -t 0.714 -s 3 -d 4 -p cbr -e 500 -c 1 -i 96 -a 1 r -t 0.714848 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 98 -a 0 -S 0 -y {2 2} + -t 0.714848 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 98 -a 0 -S 0 -y {2 2} - -t 0.716 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 97 -a 0 -S 0 -y {1 1} h -t 0.716 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 97 -a 0 -S 0 -y {-1 -1} r -t 0.718 -s 3 -d 4 -p cbr -e 500 -c 1 -i 89 -a 1 + -t 0.718 -s 4 -d 6 -p cbr -e 500 -c 1 -i 89 -a 1 - -t 0.718 -s 4 -d 6 -p cbr -e 500 -c 1 -i 89 -a 1 h -t 0.718 -s 4 -d 6 -p cbr -e 500 -c 1 -i 89 -a 1 + -t 0.72 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 102 -a 1 - -t 0.72 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 102 -a 1 h -t 0.72 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 102 -a 1 + -t 0.72 -s 1 -d 3 -p cbr -e 500 -c 1 -i 103 -a 1 - -t 0.72 -s 1 -d 3 -p cbr -e 500 -c 1 -i 103 -a 1 h -t 0.72 -s 1 -d 3 -p cbr -e 500 -c 1 -i 103 -a 1 r -t 0.722 -s 4 -d 6 -p cbr -e 500 -c 1 -i 86 -a 1 r -t 0.724 -s 1 -d 3 -p cbr -e 500 -c 1 -i 100 -a 1 + -t 0.724 -s 3 -d 4 -p cbr -e 500 -c 1 -i 100 -a 1 - -t 0.724 -s 3 -d 4 -p cbr -e 500 -c 1 -i 96 -a 1 h -t 0.724 -s 3 -d 4 -p cbr -e 500 -c 1 -i 96 -a 1 r -t 0.726 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 88 -a 1 + -t 0.726 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 88 -a 1 - -t 0.726 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 88 -a 1 h -t 0.726 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 88 -a 1 r -t 0.728 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 99 -a 1 + -t 0.728 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 99 -a 1 - -t 0.728 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 98 -a 0 -S 0 -y {2 2} h -t 0.728 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 98 -a 0 -S 0 -y {-1 -1} r -t 0.73 -s 3 -d 4 -p cbr -e 500 -c 1 -i 90 -a 1 + -t 0.73 -s 4 -d 6 -p cbr -e 500 -c 1 -i 90 -a 1 - -t 0.73 -s 4 -d 6 -p cbr -e 500 -c 1 -i 90 -a 1 h -t 0.73 -s 4 -d 6 -p cbr -e 500 -c 1 -i 90 -a 1 + -t 0.73 -s 1 -d 3 -p cbr -e 500 -c 1 -i 104 -a 1 - -t 0.73 -s 1 -d 3 -p cbr -e 500 -c 1 -i 104 -a 1 h -t 0.73 -s 1 -d 3 -p cbr -e 500 -c 1 -i 104 -a 1 r -t 0.734 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 85 -a 1 r -t 0.734 -s 4 -d 6 -p cbr -e 500 -c 1 -i 87 -a 1 r -t 0.734 -s 1 -d 3 -p cbr -e 500 -c 1 -i 101 -a 1 + -t 0.734 -s 3 -d 4 -p cbr -e 500 -c 1 -i 101 -a 1 - -t 0.736 -s 3 -d 4 -p cbr -e 500 -c 1 -i 100 -a 1 h -t 0.736 -s 3 -d 4 -p cbr -e 500 -c 1 -i 100 -a 1 r -t 0.738 -s 3 -d 4 -p cbr -e 500 -c 1 -i 92 -a 1 + -t 0.738 -s 4 -d 6 -p cbr -e 500 -c 1 -i 92 -a 1 - -t 0.738 -s 4 -d 6 -p cbr -e 500 -c 1 -i 92 -a 1 h -t 0.738 -s 4 -d 6 -p cbr -e 500 -c 1 -i 92 -a 1 + -t 0.74 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 105 -a 1 - -t 0.74 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 105 -a 1 h -t 0.74 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 105 -a 1 + -t 0.74 -s 1 -d 3 -p cbr -e 500 -c 1 -i 106 -a 1 - -t 0.74 -s 1 -d 3 -p cbr -e 500 -c 1 -i 106 -a 1 h -t 0.74 -s 1 -d 3 -p cbr -e 500 -c 1 -i 106 -a 1 - -t 0.74 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 99 -a 1 h -t 0.74 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 99 -a 1 r -t 0.742 -s 4 -d 6 -p cbr -e 500 -c 1 -i 89 -a 1 r -t 0.744 -s 1 -d 3 -p cbr -e 500 -c 1 -i 103 -a 1 + -t 0.744 -s 3 -d 4 -p cbr -e 500 -c 1 -i 103 -a 1 r -t 0.746 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 91 -a 1 + -t 0.746 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 91 -a 1 - -t 0.746 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 91 -a 1 h -t 0.746 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 91 -a 1 r -t 0.748 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 102 -a 1 + -t 0.748 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 102 -a 1 - -t 0.748 -s 3 -d 4 -p cbr -e 500 -c 1 -i 101 -a 1 h -t 0.748 -s 3 -d 4 -p cbr -e 500 -c 1 -i 101 -a 1 r -t 0.75 -s 3 -d 4 -p cbr -e 500 -c 1 -i 93 -a 1 + -t 0.75 -s 4 -d 6 -p cbr -e 500 -c 1 -i 93 -a 1 - -t 0.75 -s 4 -d 6 -p cbr -e 500 -c 1 -i 93 -a 1 h -t 0.75 -s 4 -d 6 -p cbr -e 500 -c 1 -i 93 -a 1 + -t 0.75 -s 1 -d 3 -p cbr -e 500 -c 1 -i 107 -a 1 - -t 0.75 -s 1 -d 3 -p cbr -e 500 -c 1 -i 107 -a 1 h -t 0.75 -s 1 -d 3 -p cbr -e 500 -c 1 -i 107 -a 1 - -t 0.752 -s 3 -d 4 -p cbr -e 500 -c 1 -i 103 -a 1 h -t 0.752 -s 3 -d 4 -p cbr -e 500 -c 1 -i 103 -a 1 r -t 0.754 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 88 -a 1 r -t 0.754 -s 4 -d 6 -p cbr -e 500 -c 1 -i 90 -a 1 r -t 0.754 -s 1 -d 3 -p cbr -e 500 -c 1 -i 104 -a 1 + -t 0.754 -s 3 -d 4 -p cbr -e 500 -c 1 -i 104 -a 1 - -t 0.756 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 102 -a 1 h -t 0.756 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 102 -a 1 r -t 0.758 -s 3 -d 4 -p cbr -e 500 -c 1 -i 95 -a 1 + -t 0.758 -s 4 -d 6 -p cbr -e 500 -c 1 -i 95 -a 1 - -t 0.758 -s 4 -d 6 -p cbr -e 500 -c 1 -i 95 -a 1 h -t 0.758 -s 4 -d 6 -p cbr -e 500 -c 1 -i 95 -a 1 + -t 0.76 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 108 -a 1 - -t 0.76 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 108 -a 1 h -t 0.76 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 108 -a 1 + -t 0.76 -s 1 -d 3 -p cbr -e 500 -c 1 -i 109 -a 1 - -t 0.76 -s 1 -d 3 -p cbr -e 500 -c 1 -i 109 -a 1 h -t 0.76 -s 1 -d 3 -p cbr -e 500 -c 1 -i 109 -a 1 r -t 0.762 -s 4 -d 6 -p cbr -e 500 -c 1 -i 92 -a 1 r -t 0.764 -s 1 -d 3 -p cbr -e 500 -c 1 -i 106 -a 1 + -t 0.764 -s 3 -d 4 -p cbr -e 500 -c 1 -i 106 -a 1 - -t 0.764 -s 3 -d 4 -p cbr -e 500 -c 1 -i 104 -a 1 h -t 0.764 -s 3 -d 4 -p cbr -e 500 -c 1 -i 104 -a 1 r -t 0.766 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 94 -a 1 + -t 0.766 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 94 -a 1 - -t 0.766 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 94 -a 1 h -t 0.766 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 94 -a 1 r -t 0.768 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 105 -a 1 + -t 0.768 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 105 -a 1 - -t 0.768 -s 3 -d 4 -p cbr -e 500 -c 1 -i 106 -a 1 h -t 0.768 -s 3 -d 4 -p cbr -e 500 -c 1 -i 106 -a 1 + -t 0.77 -s 1 -d 3 -p cbr -e 500 -c 1 -i 110 -a 1 - -t 0.77 -s 1 -d 3 -p cbr -e 500 -c 1 -i 110 -a 1 h -t 0.77 -s 1 -d 3 -p cbr -e 500 -c 1 -i 110 -a 1 - -t 0.772 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 105 -a 1 h -t 0.772 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 105 -a 1 r -t 0.774 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 97 -a 0 -S 0 -y {1 1} + -t 0.774 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 97 -a 0 -S 0 -y {1 1} - -t 0.774 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 97 -a 0 -S 0 -y {1 1} h -t 0.774 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 97 -a 0 -S 0 -y {-1 -1} r -t 0.774 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 91 -a 1 r -t 0.774 -s 4 -d 6 -p cbr -e 500 -c 1 -i 93 -a 1 r -t 0.774 -s 1 -d 3 -p cbr -e 500 -c 1 -i 107 -a 1 + -t 0.774 -s 3 -d 4 -p cbr -e 500 -c 1 -i 107 -a 1 r -t 0.778 -s 3 -d 4 -p cbr -e 500 -c 1 -i 96 -a 1 + -t 0.778 -s 4 -d 6 -p cbr -e 500 -c 1 -i 96 -a 1 - -t 0.778 -s 4 -d 6 -p cbr -e 500 -c 1 -i 96 -a 1 h -t 0.778 -s 4 -d 6 -p cbr -e 500 -c 1 -i 96 -a 1 + -t 0.78 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 111 -a 1 - -t 0.78 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 111 -a 1 h -t 0.78 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 111 -a 1 + -t 0.78 -s 1 -d 3 -p cbr -e 500 -c 1 -i 112 -a 1 - -t 0.78 -s 1 -d 3 -p cbr -e 500 -c 1 -i 112 -a 1 h -t 0.78 -s 1 -d 3 -p cbr -e 500 -c 1 -i 112 -a 1 - -t 0.78 -s 3 -d 4 -p cbr -e 500 -c 1 -i 107 -a 1 h -t 0.78 -s 3 -d 4 -p cbr -e 500 -c 1 -i 107 -a 1 r -t 0.782 -s 4 -d 6 -p cbr -e 500 -c 1 -i 95 -a 1 r -t 0.784 -s 1 -d 3 -p cbr -e 500 -c 1 -i 109 -a 1 + -t 0.784 -s 3 -d 4 -p cbr -e 500 -c 1 -i 109 -a 1 - -t 0.784 -s 3 -d 4 -p cbr -e 500 -c 1 -i 109 -a 1 h -t 0.784 -s 3 -d 4 -p cbr -e 500 -c 1 -i 109 -a 1 r -t 0.786 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 98 -a 0 -S 0 -y {2 2} + -t 0.786 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 98 -a 0 -S 0 -y {2 2} - -t 0.786 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 98 -a 0 -S 0 -y {2 2} h -t 0.786 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 98 -a 0 -S 0 -y {-1 -1} r -t 0.788 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 108 -a 1 + -t 0.788 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 108 -a 1 - -t 0.788 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 108 -a 1 h -t 0.788 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 108 -a 1 r -t 0.79 -s 3 -d 4 -p cbr -e 500 -c 1 -i 100 -a 1 + -t 0.79 -s 4 -d 6 -p cbr -e 500 -c 1 -i 100 -a 1 - -t 0.79 -s 4 -d 6 -p cbr -e 500 -c 1 -i 100 -a 1 h -t 0.79 -s 4 -d 6 -p cbr -e 500 -c 1 -i 100 -a 1 + -t 0.79 -s 1 -d 3 -p cbr -e 500 -c 1 -i 113 -a 1 - -t 0.79 -s 1 -d 3 -p cbr -e 500 -c 1 -i 113 -a 1 h -t 0.79 -s 1 -d 3 -p cbr -e 500 -c 1 -i 113 -a 1 r -t 0.794 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 94 -a 1 r -t 0.794 -s 1 -d 3 -p cbr -e 500 -c 1 -i 110 -a 1 + -t 0.794 -s 3 -d 4 -p cbr -e 500 -c 1 -i 110 -a 1 r -t 0.7956 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 97 -a 0 -S 0 -y {1 1} + -t 0.7956 -s 5 -d 4 -p ack -e 40 -c 0 -i 114 -a 0 -S 0 -y {1 1} - -t 0.7956 -s 5 -d 4 -p ack -e 40 -c 0 -i 114 -a 0 -S 0 -y {1 1} h -t 0.7956 -s 5 -d 4 -p ack -e 40 -c 0 -i 114 -a 0 -S 0 -y {-1 -1} - -t 0.796 -s 3 -d 4 -p cbr -e 500 -c 1 -i 110 -a 1 h -t 0.796 -s 3 -d 4 -p cbr -e 500 -c 1 -i 110 -a 1 r -t 0.798 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 99 -a 1 + -t 0.798 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 99 -a 1 - -t 0.798 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 99 -a 1 h -t 0.798 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 99 -a 1 + -t 0.8 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 115 -a 1 - -t 0.8 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 115 -a 1 h -t 0.8 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 115 -a 1 + -t 0.8 -s 1 -d 3 -p cbr -e 500 -c 1 -i 116 -a 1 - -t 0.8 -s 1 -d 3 -p cbr -e 500 -c 1 -i 116 -a 1 h -t 0.8 -s 1 -d 3 -p cbr -e 500 -c 1 -i 116 -a 1 r -t 0.802 -s 3 -d 4 -p cbr -e 500 -c 1 -i 101 -a 1 + -t 0.802 -s 4 -d 6 -p cbr -e 500 -c 1 -i 101 -a 1 - -t 0.802 -s 4 -d 6 -p cbr -e 500 -c 1 -i 101 -a 1 h -t 0.802 -s 4 -d 6 -p cbr -e 500 -c 1 -i 101 -a 1 r -t 0.802 -s 4 -d 6 -p cbr -e 500 -c 1 -i 96 -a 1 r -t 0.804 -s 1 -d 3 -p cbr -e 500 -c 1 -i 112 -a 1 + -t 0.804 -s 3 -d 4 -p cbr -e 500 -c 1 -i 112 -a 1 - -t 0.804 -s 3 -d 4 -p cbr -e 500 -c 1 -i 112 -a 1 h -t 0.804 -s 3 -d 4 -p cbr -e 500 -c 1 -i 112 -a 1 r -t 0.806 -s 3 -d 4 -p cbr -e 500 -c 1 -i 103 -a 1 + -t 0.806 -s 4 -d 6 -p cbr -e 500 -c 1 -i 103 -a 1 - -t 0.806 -s 4 -d 6 -p cbr -e 500 -c 1 -i 103 -a 1 h -t 0.806 -s 4 -d 6 -p cbr -e 500 -c 1 -i 103 -a 1 r -t 0.8076 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 98 -a 0 -S 0 -y {2 2} + -t 0.8076 -s 5 -d 4 -p ack -e 40 -c 0 -i 117 -a 0 -S 0 -y {2 2} - -t 0.8076 -s 5 -d 4 -p ack -e 40 -c 0 -i 117 -a 0 -S 0 -y {2 2} h -t 0.8076 -s 5 -d 4 -p ack -e 40 -c 0 -i 117 -a 0 -S 0 -y {-1 -1} r -t 0.808 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 111 -a 1 + -t 0.808 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 111 -a 1 - -t 0.808 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 111 -a 1 h -t 0.808 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 111 -a 1 + -t 0.81 -s 1 -d 3 -p cbr -e 500 -c 1 -i 118 -a 1 - -t 0.81 -s 1 -d 3 -p cbr -e 500 -c 1 -i 118 -a 1 h -t 0.81 -s 1 -d 3 -p cbr -e 500 -c 1 -i 118 -a 1 r -t 0.814 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 102 -a 1 + -t 0.814 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 102 -a 1 - -t 0.814 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 102 -a 1 h -t 0.814 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 102 -a 1 r -t 0.814 -s 4 -d 6 -p cbr -e 500 -c 1 -i 100 -a 1 r -t 0.814 -s 1 -d 3 -p cbr -e 500 -c 1 -i 113 -a 1 + -t 0.814 -s 3 -d 4 -p cbr -e 500 -c 1 -i 113 -a 1 r -t 0.815664 -s 5 -d 4 -p ack -e 40 -c 0 -i 114 -a 0 -S 0 -y {1 1} + -t 0.815664 -s 4 -d 3 -p ack -e 40 -c 0 -i 114 -a 0 -S 0 -y {1 1} - -t 0.815664 -s 4 -d 3 -p ack -e 40 -c 0 -i 114 -a 0 -S 0 -y {1 1} h -t 0.815664 -s 4 -d 3 -p ack -e 40 -c 0 -i 114 -a 0 -S 0 -y {-1 -1} - -t 0.816 -s 3 -d 4 -p cbr -e 500 -c 1 -i 113 -a 1 h -t 0.816 -s 3 -d 4 -p cbr -e 500 -c 1 -i 113 -a 1 r -t 0.818 -s 3 -d 4 -p cbr -e 500 -c 1 -i 104 -a 1 + -t 0.818 -s 4 -d 6 -p cbr -e 500 -c 1 -i 104 -a 1 - -t 0.818 -s 4 -d 6 -p cbr -e 500 -c 1 -i 104 -a 1 h -t 0.818 -s 4 -d 6 -p cbr -e 500 -c 1 -i 104 -a 1 + -t 0.82 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 119 -a 1 - -t 0.82 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 119 -a 1 h -t 0.82 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 119 -a 1 + -t 0.82 -s 1 -d 3 -p cbr -e 500 -c 1 -i 120 -a 1 - -t 0.82 -s 1 -d 3 -p cbr -e 500 -c 1 -i 120 -a 1 h -t 0.82 -s 1 -d 3 -p cbr -e 500 -c 1 -i 120 -a 1 r -t 0.822 -s 3 -d 4 -p cbr -e 500 -c 1 -i 106 -a 1 + -t 0.822 -s 4 -d 6 -p cbr -e 500 -c 1 -i 106 -a 1 - -t 0.822 -s 4 -d 6 -p cbr -e 500 -c 1 -i 106 -a 1 h -t 0.822 -s 4 -d 6 -p cbr -e 500 -c 1 -i 106 -a 1 r -t 0.824 -s 1 -d 3 -p cbr -e 500 -c 1 -i 116 -a 1 + -t 0.824 -s 3 -d 4 -p cbr -e 500 -c 1 -i 116 -a 1 - -t 0.824 -s 3 -d 4 -p cbr -e 500 -c 1 -i 116 -a 1 h -t 0.824 -s 3 -d 4 -p cbr -e 500 -c 1 -i 116 -a 1 r -t 0.826 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 99 -a 1 r -t 0.826 -s 4 -d 6 -p cbr -e 500 -c 1 -i 101 -a 1 r -t 0.827664 -s 5 -d 4 -p ack -e 40 -c 0 -i 117 -a 0 -S 0 -y {2 2} + -t 0.827664 -s 4 -d 3 -p ack -e 40 -c 0 -i 117 -a 0 -S 0 -y {2 2} - -t 0.827664 -s 4 -d 3 -p ack -e 40 -c 0 -i 117 -a 0 -S 0 -y {2 2} h -t 0.827664 -s 4 -d 3 -p ack -e 40 -c 0 -i 117 -a 0 -S 0 -y {-1 -1} r -t 0.828 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 115 -a 1 + -t 0.828 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 115 -a 1 - -t 0.828 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 115 -a 1 h -t 0.828 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 115 -a 1 r -t 0.83 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 105 -a 1 + -t 0.83 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 105 -a 1 - -t 0.83 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 105 -a 1 h -t 0.83 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 105 -a 1 r -t 0.83 -s 4 -d 6 -p cbr -e 500 -c 1 -i 103 -a 1 + -t 0.83 -s 1 -d 3 -p cbr -e 500 -c 1 -i 121 -a 1 - -t 0.83 -s 1 -d 3 -p cbr -e 500 -c 1 -i 121 -a 1 h -t 0.83 -s 1 -d 3 -p cbr -e 500 -c 1 -i 121 -a 1 r -t 0.834 -s 3 -d 4 -p cbr -e 500 -c 1 -i 107 -a 1 + -t 0.834 -s 4 -d 6 -p cbr -e 500 -c 1 -i 107 -a 1 - -t 0.834 -s 4 -d 6 -p cbr -e 500 -c 1 -i 107 -a 1 h -t 0.834 -s 4 -d 6 -p cbr -e 500 -c 1 -i 107 -a 1 r -t 0.834 -s 1 -d 3 -p cbr -e 500 -c 1 -i 118 -a 1 + -t 0.834 -s 3 -d 4 -p cbr -e 500 -c 1 -i 118 -a 1 - -t 0.836 -s 3 -d 4 -p cbr -e 500 -c 1 -i 118 -a 1 h -t 0.836 -s 3 -d 4 -p cbr -e 500 -c 1 -i 118 -a 1 r -t 0.838 -s 3 -d 4 -p cbr -e 500 -c 1 -i 109 -a 1 + -t 0.838 -s 4 -d 6 -p cbr -e 500 -c 1 -i 109 -a 1 - -t 0.838 -s 4 -d 6 -p cbr -e 500 -c 1 -i 109 -a 1 h -t 0.838 -s 4 -d 6 -p cbr -e 500 -c 1 -i 109 -a 1 + -t 0.84 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 122 -a 1 - -t 0.84 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 122 -a 1 h -t 0.84 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 122 -a 1 + -t 0.84 -s 1 -d 3 -p cbr -e 500 -c 1 -i 123 -a 1 - -t 0.84 -s 1 -d 3 -p cbr -e 500 -c 1 -i 123 -a 1 h -t 0.84 -s 1 -d 3 -p cbr -e 500 -c 1 -i 123 -a 1 r -t 0.842 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 102 -a 1 r -t 0.842 -s 4 -d 6 -p cbr -e 500 -c 1 -i 104 -a 1 r -t 0.844 -s 1 -d 3 -p cbr -e 500 -c 1 -i 120 -a 1 + -t 0.844 -s 3 -d 4 -p cbr -e 500 -c 1 -i 120 -a 1 - -t 0.844 -s 3 -d 4 -p cbr -e 500 -c 1 -i 120 -a 1 h -t 0.844 -s 3 -d 4 -p cbr -e 500 -c 1 -i 120 -a 1 r -t 0.846 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 108 -a 1 + -t 0.846 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 108 -a 1 - -t 0.846 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 108 -a 1 h -t 0.846 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 108 -a 1 r -t 0.846 -s 4 -d 6 -p cbr -e 500 -c 1 -i 106 -a 1 r -t 0.848 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 119 -a 1 + -t 0.848 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 119 -a 1 - -t 0.848 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 119 -a 1 h -t 0.848 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 119 -a 1 r -t 0.85 -s 3 -d 4 -p cbr -e 500 -c 1 -i 110 -a 1 + -t 0.85 -s 4 -d 6 -p cbr -e 500 -c 1 -i 110 -a 1 - -t 0.85 -s 4 -d 6 -p cbr -e 500 -c 1 -i 110 -a 1 h -t 0.85 -s 4 -d 6 -p cbr -e 500 -c 1 -i 110 -a 1 + -t 0.85 -s 1 -d 3 -p cbr -e 500 -c 1 -i 124 -a 1 - -t 0.85 -s 1 -d 3 -p cbr -e 500 -c 1 -i 124 -a 1 h -t 0.85 -s 1 -d 3 -p cbr -e 500 -c 1 -i 124 -a 1 r -t 0.854 -s 1 -d 3 -p cbr -e 500 -c 1 -i 121 -a 1 + -t 0.854 -s 3 -d 4 -p cbr -e 500 -c 1 -i 121 -a 1 - -t 0.856 -s 3 -d 4 -p cbr -e 500 -c 1 -i 121 -a 1 h -t 0.856 -s 3 -d 4 -p cbr -e 500 -c 1 -i 121 -a 1 r -t 0.858 -s 3 -d 4 -p cbr -e 500 -c 1 -i 112 -a 1 + -t 0.858 -s 4 -d 6 -p cbr -e 500 -c 1 -i 112 -a 1 - -t 0.858 -s 4 -d 6 -p cbr -e 500 -c 1 -i 112 -a 1 h -t 0.858 -s 4 -d 6 -p cbr -e 500 -c 1 -i 112 -a 1 r -t 0.858 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 105 -a 1 r -t 0.858 -s 4 -d 6 -p cbr -e 500 -c 1 -i 107 -a 1 + -t 0.86 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 125 -a 1 - -t 0.86 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 125 -a 1 h -t 0.86 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 125 -a 1 + -t 0.86 -s 1 -d 3 -p cbr -e 500 -c 1 -i 126 -a 1 - -t 0.86 -s 1 -d 3 -p cbr -e 500 -c 1 -i 126 -a 1 h -t 0.86 -s 1 -d 3 -p cbr -e 500 -c 1 -i 126 -a 1 r -t 0.862 -s 4 -d 6 -p cbr -e 500 -c 1 -i 109 -a 1 r -t 0.864 -s 1 -d 3 -p cbr -e 500 -c 1 -i 123 -a 1 + -t 0.864 -s 3 -d 4 -p cbr -e 500 -c 1 -i 123 -a 1 - -t 0.864 -s 3 -d 4 -p cbr -e 500 -c 1 -i 123 -a 1 h -t 0.864 -s 3 -d 4 -p cbr -e 500 -c 1 -i 123 -a 1 r -t 0.865984 -s 4 -d 3 -p ack -e 40 -c 0 -i 114 -a 0 -S 0 -y {1 1} + -t 0.865984 -s 3 -d 0 -p ack -e 40 -c 0 -i 114 -a 0 -S 0 -y {1 1} - -t 0.865984 -s 3 -d 0 -p ack -e 40 -c 0 -i 114 -a 0 -S 0 -f 0 -m 1 -y {1 1} h -t 0.865984 -s 3 -d 0 -p ack -e 40 -c 0 -i 114 -a 0 -S 0 -y {-1 -1} r -t 0.866 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 111 -a 1 + -t 0.866 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 111 -a 1 - -t 0.866 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 111 -a 1 h -t 0.866 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 111 -a 1 r -t 0.868 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 122 -a 1 + -t 0.868 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 122 -a 1 - -t 0.868 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 122 -a 1 h -t 0.868 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 122 -a 1 r -t 0.87 -s 3 -d 4 -p cbr -e 500 -c 1 -i 113 -a 1 + -t 0.87 -s 4 -d 6 -p cbr -e 500 -c 1 -i 113 -a 1 - -t 0.87 -s 4 -d 6 -p cbr -e 500 -c 1 -i 113 -a 1 h -t 0.87 -s 4 -d 6 -p cbr -e 500 -c 1 -i 113 -a 1 + -t 0.87 -s 1 -d 3 -p cbr -e 500 -c 1 -i 127 -a 1 - -t 0.87 -s 1 -d 3 -p cbr -e 500 -c 1 -i 127 -a 1 h -t 0.87 -s 1 -d 3 -p cbr -e 500 -c 1 -i 127 -a 1 r -t 0.874 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 108 -a 1 r -t 0.874 -s 4 -d 6 -p cbr -e 500 -c 1 -i 110 -a 1 r -t 0.874 -s 1 -d 3 -p cbr -e 500 -c 1 -i 124 -a 1 + -t 0.874 -s 3 -d 4 -p cbr -e 500 -c 1 -i 124 -a 1 - -t 0.876 -s 3 -d 4 -p cbr -e 500 -c 1 -i 124 -a 1 h -t 0.876 -s 3 -d 4 -p cbr -e 500 -c 1 -i 124 -a 1 r -t 0.877984 -s 4 -d 3 -p ack -e 40 -c 0 -i 117 -a 0 -S 0 -y {2 2} + -t 0.877984 -s 3 -d 0 -p ack -e 40 -c 0 -i 117 -a 0 -S 0 -y {2 2} - -t 0.877984 -s 3 -d 0 -p ack -e 40 -c 0 -i 117 -a 0 -S 0 -f 0 -m 1 -y {2 2} h -t 0.877984 -s 3 -d 0 -p ack -e 40 -c 0 -i 117 -a 0 -S 0 -y {-1 -1} r -t 0.878 -s 3 -d 4 -p cbr -e 500 -c 1 -i 116 -a 1 + -t 0.878 -s 4 -d 6 -p cbr -e 500 -c 1 -i 116 -a 1 - -t 0.878 -s 4 -d 6 -p cbr -e 500 -c 1 -i 116 -a 1 h -t 0.878 -s 4 -d 6 -p cbr -e 500 -c 1 -i 116 -a 1 + -t 0.88 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 128 -a 1 - -t 0.88 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 128 -a 1 h -t 0.88 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 128 -a 1 + -t 0.88 -s 1 -d 3 -p cbr -e 500 -c 1 -i 129 -a 1 - -t 0.88 -s 1 -d 3 -p cbr -e 500 -c 1 -i 129 -a 1 h -t 0.88 -s 1 -d 3 -p cbr -e 500 -c 1 -i 129 -a 1 r -t 0.882 -s 4 -d 6 -p cbr -e 500 -c 1 -i 112 -a 1 r -t 0.884 -s 1 -d 3 -p cbr -e 500 -c 1 -i 126 -a 1 + -t 0.884 -s 3 -d 4 -p cbr -e 500 -c 1 -i 126 -a 1 - -t 0.884 -s 3 -d 4 -p cbr -e 500 -c 1 -i 126 -a 1 h -t 0.884 -s 3 -d 4 -p cbr -e 500 -c 1 -i 126 -a 1 r -t 0.886 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 115 -a 1 + -t 0.886 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 115 -a 1 - -t 0.886 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 115 -a 1 h -t 0.886 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 115 -a 1 r -t 0.886048 -s 3 -d 0 -p ack -e 40 -c 0 -i 114 -a 0 -S 0 -y {1 1} f -t 0.88604800000000039 -s 0 -d 5 -n cwnd_ -a tcp -v 3.000000 -o 2.000000 -T v + -t 0.886048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 130 -a 0 -S 0 -f 0 -m 0 -y {3 3} - -t 0.886048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 130 -a 0 -S 0 -y {3 3} h -t 0.886048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 130 -a 0 -S 0 -y {-1 -1} + -t 0.886048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 131 -a 0 -S 0 -f 0 -m 0 -y {4 4} - -t 0.887648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 131 -a 0 -S 0 -y {4 4} h -t 0.887648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 131 -a 0 -S 0 -y {-1 -1} r -t 0.888 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 125 -a 1 + -t 0.888 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 125 -a 1 - -t 0.888 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 125 -a 1 h -t 0.888 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 125 -a 1 r -t 0.89 -s 3 -d 4 -p cbr -e 500 -c 1 -i 118 -a 1 + -t 0.89 -s 4 -d 6 -p cbr -e 500 -c 1 -i 118 -a 1 - -t 0.89 -s 4 -d 6 -p cbr -e 500 -c 1 -i 118 -a 1 h -t 0.89 -s 4 -d 6 -p cbr -e 500 -c 1 -i 118 -a 1 + -t 0.89 -s 1 -d 3 -p cbr -e 500 -c 1 -i 132 -a 1 - -t 0.89 -s 1 -d 3 -p cbr -e 500 -c 1 -i 132 -a 1 h -t 0.89 -s 1 -d 3 -p cbr -e 500 -c 1 -i 132 -a 1 r -t 0.894 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 111 -a 1 r -t 0.894 -s 4 -d 6 -p cbr -e 500 -c 1 -i 113 -a 1 r -t 0.894 -s 1 -d 3 -p cbr -e 500 -c 1 -i 127 -a 1 + -t 0.894 -s 3 -d 4 -p cbr -e 500 -c 1 -i 127 -a 1 - -t 0.896 -s 3 -d 4 -p cbr -e 500 -c 1 -i 127 -a 1 h -t 0.896 -s 3 -d 4 -p cbr -e 500 -c 1 -i 127 -a 1 r -t 0.898 -s 3 -d 4 -p cbr -e 500 -c 1 -i 120 -a 1 + -t 0.898 -s 4 -d 6 -p cbr -e 500 -c 1 -i 120 -a 1 - -t 0.898 -s 4 -d 6 -p cbr -e 500 -c 1 -i 120 -a 1 h -t 0.898 -s 4 -d 6 -p cbr -e 500 -c 1 -i 120 -a 1 r -t 0.898048 -s 3 -d 0 -p ack -e 40 -c 0 -i 117 -a 0 -S 0 -y {2 2} f -t 0.89804800000000040 -s 0 -d 5 -n cwnd_ -a tcp -v 4.000000 -o 3.000000 -T v + -t 0.898048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 133 -a 0 -S 0 -f 0 -m 0 -y {5 5} - -t 0.898048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 133 -a 0 -S 0 -y {5 5} h -t 0.898048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 133 -a 0 -S 0 -y {-1 -1} + -t 0.898048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 134 -a 0 -S 0 -f 0 -m 0 -y {6 6} - -t 0.899648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 134 -a 0 -S 0 -y {6 6} h -t 0.899648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 134 -a 0 -S 0 -y {-1 -1} + -t 0.9 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 135 -a 1 - -t 0.9 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 135 -a 1 h -t 0.9 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 135 -a 1 + -t 0.9 -s 1 -d 3 -p cbr -e 500 -c 1 -i 136 -a 1 - -t 0.9 -s 1 -d 3 -p cbr -e 500 -c 1 -i 136 -a 1 h -t 0.9 -s 1 -d 3 -p cbr -e 500 -c 1 -i 136 -a 1 r -t 0.902 -s 4 -d 6 -p cbr -e 500 -c 1 -i 116 -a 1 r -t 0.904 -s 1 -d 3 -p cbr -e 500 -c 1 -i 129 -a 1 + -t 0.904 -s 3 -d 4 -p cbr -e 500 -c 1 -i 129 -a 1 - -t 0.904 -s 3 -d 4 -p cbr -e 500 -c 1 -i 129 -a 1 h -t 0.904 -s 3 -d 4 -p cbr -e 500 -c 1 -i 129 -a 1 r -t 0.906 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 119 -a 1 + -t 0.906 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 119 -a 1 - -t 0.906 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 119 -a 1 h -t 0.906 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 119 -a 1 r -t 0.907648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 130 -a 0 -S 0 -y {3 3} + -t 0.907648 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 130 -a 0 -S 0 -y {3 3} r -t 0.908 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 128 -a 1 + -t 0.908 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 128 -a 1 - -t 0.908 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 130 -a 0 -S 0 -y {3 3} h -t 0.908 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 130 -a 0 -S 0 -y {-1 -1} r -t 0.909248 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 131 -a 0 -S 0 -y {4 4} + -t 0.909248 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 131 -a 0 -S 0 -y {4 4} r -t 0.91 -s 3 -d 4 -p cbr -e 500 -c 1 -i 121 -a 1 + -t 0.91 -s 4 -d 6 -p cbr -e 500 -c 1 -i 121 -a 1 - -t 0.91 -s 4 -d 6 -p cbr -e 500 -c 1 -i 121 -a 1 h -t 0.91 -s 4 -d 6 -p cbr -e 500 -c 1 -i 121 -a 1 + -t 0.91 -s 1 -d 3 -p cbr -e 500 -c 1 -i 137 -a 1 - -t 0.91 -s 1 -d 3 -p cbr -e 500 -c 1 -i 137 -a 1 h -t 0.91 -s 1 -d 3 -p cbr -e 500 -c 1 -i 137 -a 1 r -t 0.914 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 115 -a 1 r -t 0.914 -s 4 -d 6 -p cbr -e 500 -c 1 -i 118 -a 1 r -t 0.914 -s 1 -d 3 -p cbr -e 500 -c 1 -i 132 -a 1 + -t 0.914 -s 3 -d 4 -p cbr -e 500 -c 1 -i 132 -a 1 - -t 0.916 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 128 -a 1 h -t 0.916 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 128 -a 1 r -t 0.918 -s 3 -d 4 -p cbr -e 500 -c 1 -i 123 -a 1 + -t 0.918 -s 4 -d 6 -p cbr -e 500 -c 1 -i 123 -a 1 - -t 0.918 -s 4 -d 6 -p cbr -e 500 -c 1 -i 123 -a 1 h -t 0.918 -s 4 -d 6 -p cbr -e 500 -c 1 -i 123 -a 1 r -t 0.919648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 133 -a 0 -S 0 -y {5 5} + -t 0.919648 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 133 -a 0 -S 0 -y {5 5} + -t 0.92 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 138 -a 1 - -t 0.92 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 138 -a 1 h -t 0.92 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 138 -a 1 + -t 0.92 -s 1 -d 3 -p cbr -e 500 -c 1 -i 139 -a 1 - -t 0.92 -s 1 -d 3 -p cbr -e 500 -c 1 -i 139 -a 1 h -t 0.92 -s 1 -d 3 -p cbr -e 500 -c 1 -i 139 -a 1 r -t 0.921248 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 134 -a 0 -S 0 -y {6 6} + -t 0.921248 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 134 -a 0 -S 0 -y {6 6} r -t 0.922 -s 4 -d 6 -p cbr -e 500 -c 1 -i 120 -a 1 r -t 0.924 -s 1 -d 3 -p cbr -e 500 -c 1 -i 136 -a 1 + -t 0.924 -s 3 -d 4 -p cbr -e 500 -c 1 -i 136 -a 1 - -t 0.924 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 131 -a 0 -S 0 -y {4 4} h -t 0.924 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 131 -a 0 -S 0 -y {-1 -1} r -t 0.926 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 122 -a 1 + -t 0.926 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 122 -a 1 - -t 0.926 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 122 -a 1 h -t 0.926 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 122 -a 1 r -t 0.928 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 135 -a 1 + -t 0.928 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 135 -a 1 r -t 0.93 -s 3 -d 4 -p cbr -e 500 -c 1 -i 124 -a 1 + -t 0.93 -s 4 -d 6 -p cbr -e 500 -c 1 -i 124 -a 1 - -t 0.93 -s 4 -d 6 -p cbr -e 500 -c 1 -i 124 -a 1 h -t 0.93 -s 4 -d 6 -p cbr -e 500 -c 1 -i 124 -a 1 + -t 0.93 -s 1 -d 3 -p cbr -e 500 -c 1 -i 140 -a 1 - -t 0.93 -s 1 -d 3 -p cbr -e 500 -c 1 -i 140 -a 1 h -t 0.93 -s 1 -d 3 -p cbr -e 500 -c 1 -i 140 -a 1 - -t 0.932 -s 3 -d 4 -p cbr -e 500 -c 1 -i 132 -a 1 h -t 0.932 -s 3 -d 4 -p cbr -e 500 -c 1 -i 132 -a 1 r -t 0.934 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 119 -a 1 r -t 0.934 -s 4 -d 6 -p cbr -e 500 -c 1 -i 121 -a 1 r -t 0.934 -s 1 -d 3 -p cbr -e 500 -c 1 -i 137 -a 1 + -t 0.934 -s 3 -d 4 -p cbr -e 500 -c 1 -i 137 -a 1 - -t 0.936 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 133 -a 0 -S 0 -y {5 5} h -t 0.936 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 133 -a 0 -S 0 -y {-1 -1} r -t 0.938 -s 3 -d 4 -p cbr -e 500 -c 1 -i 126 -a 1 + -t 0.938 -s 4 -d 6 -p cbr -e 500 -c 1 -i 126 -a 1 - -t 0.938 -s 4 -d 6 -p cbr -e 500 -c 1 -i 126 -a 1 h -t 0.938 -s 4 -d 6 -p cbr -e 500 -c 1 -i 126 -a 1 + -t 0.94 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 141 -a 1 - -t 0.94 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 141 -a 1 h -t 0.94 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 141 -a 1 + -t 0.94 -s 1 -d 3 -p cbr -e 500 -c 1 -i 142 -a 1 - -t 0.94 -s 1 -d 3 -p cbr -e 500 -c 1 -i 142 -a 1 h -t 0.94 -s 1 -d 3 -p cbr -e 500 -c 1 -i 142 -a 1 r -t 0.942 -s 4 -d 6 -p cbr -e 500 -c 1 -i 123 -a 1 r -t 0.944 -s 1 -d 3 -p cbr -e 500 -c 1 -i 139 -a 1 + -t 0.944 -s 3 -d 4 -p cbr -e 500 -c 1 -i 139 -a 1 - -t 0.944 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 134 -a 0 -S 0 -y {6 6} h -t 0.944 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 134 -a 0 -S 0 -y {-1 -1} r -t 0.946 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 125 -a 1 + -t 0.946 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 125 -a 1 - -t 0.946 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 125 -a 1 h -t 0.946 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 125 -a 1 r -t 0.948 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 138 -a 1 + -t 0.948 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 138 -a 1 r -t 0.95 -s 3 -d 4 -p cbr -e 500 -c 1 -i 127 -a 1 + -t 0.95 -s 4 -d 6 -p cbr -e 500 -c 1 -i 127 -a 1 - -t 0.95 -s 4 -d 6 -p cbr -e 500 -c 1 -i 127 -a 1 h -t 0.95 -s 4 -d 6 -p cbr -e 500 -c 1 -i 127 -a 1 + -t 0.95 -s 1 -d 3 -p cbr -e 500 -c 1 -i 143 -a 1 - -t 0.95 -s 1 -d 3 -p cbr -e 500 -c 1 -i 143 -a 1 h -t 0.95 -s 1 -d 3 -p cbr -e 500 -c 1 -i 143 -a 1 - -t 0.952 -s 3 -d 4 -p cbr -e 500 -c 1 -i 136 -a 1 h -t 0.952 -s 3 -d 4 -p cbr -e 500 -c 1 -i 136 -a 1 r -t 0.954 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 122 -a 1 r -t 0.954 -s 4 -d 6 -p cbr -e 500 -c 1 -i 124 -a 1 r -t 0.954 -s 1 -d 3 -p cbr -e 500 -c 1 -i 140 -a 1 + -t 0.954 -s 3 -d 4 -p cbr -e 500 -c 1 -i 140 -a 1 - -t 0.956 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 135 -a 1 h -t 0.956 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 135 -a 1 r -t 0.958 -s 3 -d 4 -p cbr -e 500 -c 1 -i 129 -a 1 + -t 0.958 -s 4 -d 6 -p cbr -e 500 -c 1 -i 129 -a 1 - -t 0.958 -s 4 -d 6 -p cbr -e 500 -c 1 -i 129 -a 1 h -t 0.958 -s 4 -d 6 -p cbr -e 500 -c 1 -i 129 -a 1 + -t 0.96 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 144 -a 1 - -t 0.96 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 144 -a 1 h -t 0.96 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 144 -a 1 + -t 0.96 -s 1 -d 3 -p cbr -e 500 -c 1 -i 145 -a 1 - -t 0.96 -s 1 -d 3 -p cbr -e 500 -c 1 -i 145 -a 1 h -t 0.96 -s 1 -d 3 -p cbr -e 500 -c 1 -i 145 -a 1 r -t 0.962 -s 4 -d 6 -p cbr -e 500 -c 1 -i 126 -a 1 r -t 0.964 -s 1 -d 3 -p cbr -e 500 -c 1 -i 142 -a 1 + -t 0.964 -s 3 -d 4 -p cbr -e 500 -c 1 -i 142 -a 1 - -t 0.964 -s 3 -d 4 -p cbr -e 500 -c 1 -i 137 -a 1 h -t 0.964 -s 3 -d 4 -p cbr -e 500 -c 1 -i 137 -a 1 r -t 0.966 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 130 -a 0 -S 0 -y {3 3} + -t 0.966 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 130 -a 0 -S 0 -y {3 3} - -t 0.966 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 130 -a 0 -S 0 -y {3 3} h -t 0.966 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 130 -a 0 -S 0 -y {-1 -1} r -t 0.968 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 141 -a 1 + -t 0.968 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 141 -a 1 - -t 0.968 -s 3 -d 4 -p cbr -e 500 -c 1 -i 139 -a 1 h -t 0.968 -s 3 -d 4 -p cbr -e 500 -c 1 -i 139 -a 1 + -t 0.97 -s 1 -d 3 -p cbr -e 500 -c 1 -i 146 -a 1 - -t 0.97 -s 1 -d 3 -p cbr -e 500 -c 1 -i 146 -a 1 h -t 0.97 -s 1 -d 3 -p cbr -e 500 -c 1 -i 146 -a 1 - -t 0.972 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 138 -a 1 h -t 0.972 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 138 -a 1 r -t 0.974 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 128 -a 1 + -t 0.974 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 128 -a 1 - -t 0.974 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 128 -a 1 h -t 0.974 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 128 -a 1 r -t 0.974 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 125 -a 1 r -t 0.974 -s 4 -d 6 -p cbr -e 500 -c 1 -i 127 -a 1 r -t 0.974 -s 1 -d 3 -p cbr -e 500 -c 1 -i 143 -a 1 + -t 0.974 -s 3 -d 4 -p cbr -e 500 -c 1 -i 143 -a 1 + -t 0.98 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 147 -a 1 - -t 0.98 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 147 -a 1 h -t 0.98 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 147 -a 1 + -t 0.98 -s 1 -d 3 -p cbr -e 500 -c 1 -i 148 -a 1 - -t 0.98 -s 1 -d 3 -p cbr -e 500 -c 1 -i 148 -a 1 h -t 0.98 -s 1 -d 3 -p cbr -e 500 -c 1 -i 148 -a 1 - -t 0.98 -s 3 -d 4 -p cbr -e 500 -c 1 -i 140 -a 1 h -t 0.98 -s 3 -d 4 -p cbr -e 500 -c 1 -i 140 -a 1 r -t 0.982 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 131 -a 0 -S 0 -y {4 4} + -t 0.982 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 131 -a 0 -S 0 -y {4 4} - -t 0.982 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 131 -a 0 -S 0 -y {4 4} h -t 0.982 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 131 -a 0 -S 0 -y {-1 -1} r -t 0.982 -s 4 -d 6 -p cbr -e 500 -c 1 -i 129 -a 1 r -t 0.984 -s 1 -d 3 -p cbr -e 500 -c 1 -i 145 -a 1 + -t 0.984 -s 3 -d 4 -p cbr -e 500 -c 1 -i 145 -a 1 - -t 0.984 -s 3 -d 4 -p cbr -e 500 -c 1 -i 142 -a 1 h -t 0.984 -s 3 -d 4 -p cbr -e 500 -c 1 -i 142 -a 1 r -t 0.986 -s 3 -d 4 -p cbr -e 500 -c 1 -i 132 -a 1 + -t 0.986 -s 4 -d 6 -p cbr -e 500 -c 1 -i 132 -a 1 - -t 0.986 -s 4 -d 6 -p cbr -e 500 -c 1 -i 132 -a 1 h -t 0.986 -s 4 -d 6 -p cbr -e 500 -c 1 -i 132 -a 1 r -t 0.9876 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 130 -a 0 -S 0 -y {3 3} + -t 0.9876 -s 5 -d 4 -p ack -e 40 -c 0 -i 149 -a 0 -S 0 -y {3 3} - -t 0.9876 -s 5 -d 4 -p ack -e 40 -c 0 -i 149 -a 0 -S 0 -y {3 3} h -t 0.9876 -s 5 -d 4 -p ack -e 40 -c 0 -i 149 -a 0 -S 0 -y {-1 -1} r -t 0.988 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 144 -a 1 + -t 0.988 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 144 -a 1 - -t 0.988 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 141 -a 1 h -t 0.988 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 141 -a 1 + -t 0.99 -s 1 -d 3 -p cbr -e 500 -c 1 -i 150 -a 1 - -t 0.99 -s 1 -d 3 -p cbr -e 500 -c 1 -i 150 -a 1 h -t 0.99 -s 1 -d 3 -p cbr -e 500 -c 1 -i 150 -a 1 r -t 0.994 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 133 -a 0 -S 0 -y {5 5} + -t 0.994 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 133 -a 0 -S 0 -y {5 5} - -t 0.994 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 133 -a 0 -S 0 -y {5 5} h -t 0.994 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 133 -a 0 -S 0 -y {-1 -1} r -t 0.994 -s 1 -d 3 -p cbr -e 500 -c 1 -i 146 -a 1 + -t 0.994 -s 3 -d 4 -p cbr -e 500 -c 1 -i 146 -a 1 - -t 0.996 -s 3 -d 4 -p cbr -e 500 -c 1 -i 143 -a 1 h -t 0.996 -s 3 -d 4 -p cbr -e 500 -c 1 -i 143 -a 1 + -t 1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 151 -a 1 - -t 1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 151 -a 1 h -t 1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 151 -a 1 + -t 1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 152 -a 1 - -t 1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 152 -a 1 h -t 1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 152 -a 1 - -t 1 -s 3 -d 4 -p cbr -e 500 -c 1 -i 145 -a 1 h -t 1 -s 3 -d 4 -p cbr -e 500 -c 1 -i 145 -a 1 r -t 1.002 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 134 -a 0 -S 0 -y {6 6} + -t 1.002 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 134 -a 0 -S 0 -y {6 6} - -t 1.002 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 134 -a 0 -S 0 -y {6 6} h -t 1.002 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 134 -a 0 -S 0 -y {-1 -1} r -t 1.002 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 128 -a 1 r -t 1.0036 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 131 -a 0 -S 0 -y {4 4} + -t 1.0036 -s 5 -d 4 -p ack -e 40 -c 0 -i 153 -a 0 -S 0 -y {4 4} - -t 1.0036 -s 5 -d 4 -p ack -e 40 -c 0 -i 153 -a 0 -S 0 -y {4 4} h -t 1.0036 -s 5 -d 4 -p ack -e 40 -c 0 -i 153 -a 0 -S 0 -y {-1 -1} r -t 1.004 -s 1 -d 3 -p cbr -e 500 -c 1 -i 148 -a 1 + -t 1.004 -s 3 -d 4 -p cbr -e 500 -c 1 -i 148 -a 1 - -t 1.004 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 144 -a 1 h -t 1.004 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 144 -a 1 r -t 1.006 -s 3 -d 4 -p cbr -e 500 -c 1 -i 136 -a 1 + -t 1.006 -s 4 -d 6 -p cbr -e 500 -c 1 -i 136 -a 1 - -t 1.006 -s 4 -d 6 -p cbr -e 500 -c 1 -i 136 -a 1 h -t 1.006 -s 4 -d 6 -p cbr -e 500 -c 1 -i 136 -a 1 r -t 1.00766 -s 5 -d 4 -p ack -e 40 -c 0 -i 149 -a 0 -S 0 -y {3 3} + -t 1.00766 -s 4 -d 3 -p ack -e 40 -c 0 -i 149 -a 0 -S 0 -y {3 3} - -t 1.00766 -s 4 -d 3 -p ack -e 40 -c 0 -i 149 -a 0 -S 0 -y {3 3} h -t 1.00766 -s 4 -d 3 -p ack -e 40 -c 0 -i 149 -a 0 -S 0 -y {-1 -1} r -t 1.008 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 147 -a 1 + -t 1.008 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 147 -a 1 r -t 1.01 -s 4 -d 6 -p cbr -e 500 -c 1 -i 132 -a 1 + -t 1.01 -s 1 -d 3 -p cbr -e 500 -c 1 -i 154 -a 1 - -t 1.01 -s 1 -d 3 -p cbr -e 500 -c 1 -i 154 -a 1 h -t 1.01 -s 1 -d 3 -p cbr -e 500 -c 1 -i 154 -a 1 - -t 1.012 -s 3 -d 4 -p cbr -e 500 -c 1 -i 146 -a 1 h -t 1.012 -s 3 -d 4 -p cbr -e 500 -c 1 -i 146 -a 1 r -t 1.014 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 135 -a 1 + -t 1.014 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 135 -a 1 - -t 1.014 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 135 -a 1 h -t 1.014 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 135 -a 1 r -t 1.014 -s 1 -d 3 -p cbr -e 500 -c 1 -i 150 -a 1 + -t 1.014 -s 3 -d 4 -p cbr -e 500 -c 1 -i 150 -a 1 r -t 1.0156 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 133 -a 0 -S 0 -y {5 5} + -t 1.0156 -s 5 -d 4 -p ack -e 40 -c 0 -i 155 -a 0 -S 0 -y {5 5} - -t 1.0156 -s 5 -d 4 -p ack -e 40 -c 0 -i 155 -a 0 -S 0 -y {5 5} h -t 1.0156 -s 5 -d 4 -p ack -e 40 -c 0 -i 155 -a 0 -S 0 -y {-1 -1} - -t 1.016 -s 3 -d 4 -p cbr -e 500 -c 1 -i 148 -a 1 h -t 1.016 -s 3 -d 4 -p cbr -e 500 -c 1 -i 148 -a 1 r -t 1.018 -s 3 -d 4 -p cbr -e 500 -c 1 -i 137 -a 1 + -t 1.018 -s 4 -d 6 -p cbr -e 500 -c 1 -i 137 -a 1 - -t 1.018 -s 4 -d 6 -p cbr -e 500 -c 1 -i 137 -a 1 h -t 1.018 -s 4 -d 6 -p cbr -e 500 -c 1 -i 137 -a 1 + -t 1.02 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 156 -a 1 - -t 1.02 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 156 -a 1 h -t 1.02 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 156 -a 1 + -t 1.02 -s 1 -d 3 -p cbr -e 500 -c 1 -i 157 -a 1 - -t 1.02 -s 1 -d 3 -p cbr -e 500 -c 1 -i 157 -a 1 h -t 1.02 -s 1 -d 3 -p cbr -e 500 -c 1 -i 157 -a 1 - -t 1.02 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 147 -a 1 h -t 1.02 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 147 -a 1 r -t 1.022 -s 3 -d 4 -p cbr -e 500 -c 1 -i 139 -a 1 + -t 1.022 -s 4 -d 6 -p cbr -e 500 -c 1 -i 139 -a 1 - -t 1.022 -s 4 -d 6 -p cbr -e 500 -c 1 -i 139 -a 1 h -t 1.022 -s 4 -d 6 -p cbr -e 500 -c 1 -i 139 -a 1 r -t 1.0236 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 134 -a 0 -S 0 -y {6 6} + -t 1.0236 -s 5 -d 4 -p ack -e 40 -c 0 -i 158 -a 0 -S 0 -y {6 6} - -t 1.0236 -s 5 -d 4 -p ack -e 40 -c 0 -i 158 -a 0 -S 0 -y {6 6} h -t 1.0236 -s 5 -d 4 -p ack -e 40 -c 0 -i 158 -a 0 -S 0 -y {-1 -1} r -t 1.02366 -s 5 -d 4 -p ack -e 40 -c 0 -i 153 -a 0 -S 0 -y {4 4} + -t 1.02366 -s 4 -d 3 -p ack -e 40 -c 0 -i 153 -a 0 -S 0 -y {4 4} - -t 1.02366 -s 4 -d 3 -p ack -e 40 -c 0 -i 153 -a 0 -S 0 -y {4 4} h -t 1.02366 -s 4 -d 3 -p ack -e 40 -c 0 -i 153 -a 0 -S 0 -y {-1 -1} r -t 1.024 -s 1 -d 3 -p cbr -e 500 -c 1 -i 152 -a 1 + -t 1.024 -s 3 -d 4 -p cbr -e 500 -c 1 -i 152 -a 1 r -t 1.028 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 151 -a 1 + -t 1.028 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 151 -a 1 - -t 1.028 -s 3 -d 4 -p cbr -e 500 -c 1 -i 150 -a 1 h -t 1.028 -s 3 -d 4 -p cbr -e 500 -c 1 -i 150 -a 1 r -t 1.03 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 138 -a 1 + -t 1.03 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 138 -a 1 - -t 1.03 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 138 -a 1 h -t 1.03 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 138 -a 1 r -t 1.03 -s 4 -d 6 -p cbr -e 500 -c 1 -i 136 -a 1 + -t 1.03 -s 1 -d 3 -p cbr -e 500 -c 1 -i 159 -a 1 - -t 1.03 -s 1 -d 3 -p cbr -e 500 -c 1 -i 159 -a 1 h -t 1.03 -s 1 -d 3 -p cbr -e 500 -c 1 -i 159 -a 1 - -t 1.032 -s 3 -d 4 -p cbr -e 500 -c 1 -i 152 -a 1 h -t 1.032 -s 3 -d 4 -p cbr -e 500 -c 1 -i 152 -a 1 r -t 1.034 -s 3 -d 4 -p cbr -e 500 -c 1 -i 140 -a 1 + -t 1.034 -s 4 -d 6 -p cbr -e 500 -c 1 -i 140 -a 1 - -t 1.034 -s 4 -d 6 -p cbr -e 500 -c 1 -i 140 -a 1 h -t 1.034 -s 4 -d 6 -p cbr -e 500 -c 1 -i 140 -a 1 r -t 1.034 -s 1 -d 3 -p cbr -e 500 -c 1 -i 154 -a 1 + -t 1.034 -s 3 -d 4 -p cbr -e 500 -c 1 -i 154 -a 1 r -t 1.03566 -s 5 -d 4 -p ack -e 40 -c 0 -i 155 -a 0 -S 0 -y {5 5} + -t 1.03566 -s 4 -d 3 -p ack -e 40 -c 0 -i 155 -a 0 -S 0 -y {5 5} - -t 1.03566 -s 4 -d 3 -p ack -e 40 -c 0 -i 155 -a 0 -S 0 -y {5 5} h -t 1.03566 -s 4 -d 3 -p ack -e 40 -c 0 -i 155 -a 0 -S 0 -y {-1 -1} - -t 1.036 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 151 -a 1 h -t 1.036 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 151 -a 1 r -t 1.038 -s 3 -d 4 -p cbr -e 500 -c 1 -i 142 -a 1 + -t 1.038 -s 4 -d 6 -p cbr -e 500 -c 1 -i 142 -a 1 - -t 1.038 -s 4 -d 6 -p cbr -e 500 -c 1 -i 142 -a 1 h -t 1.038 -s 4 -d 6 -p cbr -e 500 -c 1 -i 142 -a 1 + -t 1.04 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 160 -a 1 - -t 1.04 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 160 -a 1 h -t 1.04 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 160 -a 1 + -t 1.04 -s 1 -d 3 -p cbr -e 500 -c 1 -i 161 -a 1 - -t 1.04 -s 1 -d 3 -p cbr -e 500 -c 1 -i 161 -a 1 h -t 1.04 -s 1 -d 3 -p cbr -e 500 -c 1 -i 161 -a 1 r -t 1.042 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 135 -a 1 r -t 1.042 -s 4 -d 6 -p cbr -e 500 -c 1 -i 137 -a 1 r -t 1.04366 -s 5 -d 4 -p ack -e 40 -c 0 -i 158 -a 0 -S 0 -y {6 6} + -t 1.04366 -s 4 -d 3 -p ack -e 40 -c 0 -i 158 -a 0 -S 0 -y {6 6} - -t 1.04366 -s 4 -d 3 -p ack -e 40 -c 0 -i 158 -a 0 -S 0 -y {6 6} h -t 1.04366 -s 4 -d 3 -p ack -e 40 -c 0 -i 158 -a 0 -S 0 -y {-1 -1} r -t 1.044 -s 1 -d 3 -p cbr -e 500 -c 1 -i 157 -a 1 + -t 1.044 -s 3 -d 4 -p cbr -e 500 -c 1 -i 157 -a 1 - -t 1.044 -s 3 -d 4 -p cbr -e 500 -c 1 -i 154 -a 1 h -t 1.044 -s 3 -d 4 -p cbr -e 500 -c 1 -i 154 -a 1 r -t 1.046 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 141 -a 1 + -t 1.046 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 141 -a 1 - -t 1.046 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 141 -a 1 h -t 1.046 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 141 -a 1 r -t 1.046 -s 4 -d 6 -p cbr -e 500 -c 1 -i 139 -a 1 r -t 1.048 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 156 -a 1 + -t 1.048 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 156 -a 1 - -t 1.048 -s 3 -d 4 -p cbr -e 500 -c 1 -i 157 -a 1 h -t 1.048 -s 3 -d 4 -p cbr -e 500 -c 1 -i 157 -a 1 r -t 1.05 -s 3 -d 4 -p cbr -e 500 -c 1 -i 143 -a 1 + -t 1.05 -s 4 -d 6 -p cbr -e 500 -c 1 -i 143 -a 1 - -t 1.05 -s 4 -d 6 -p cbr -e 500 -c 1 -i 143 -a 1 h -t 1.05 -s 4 -d 6 -p cbr -e 500 -c 1 -i 143 -a 1 + -t 1.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 162 -a 1 - -t 1.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 162 -a 1 h -t 1.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 162 -a 1 - -t 1.052 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 156 -a 1 h -t 1.052 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 156 -a 1 r -t 1.054 -s 3 -d 4 -p cbr -e 500 -c 1 -i 145 -a 1 + -t 1.054 -s 4 -d 6 -p cbr -e 500 -c 1 -i 145 -a 1 r -t 1.054 -s 1 -d 3 -p cbr -e 500 -c 1 -i 159 -a 1 + -t 1.054 -s 3 -d 4 -p cbr -e 500 -c 1 -i 159 -a 1 - -t 1.054 -s 4 -d 6 -p cbr -e 500 -c 1 -i 145 -a 1 h -t 1.054 -s 4 -d 6 -p cbr -e 500 -c 1 -i 145 -a 1 r -t 1.05798 -s 4 -d 3 -p ack -e 40 -c 0 -i 149 -a 0 -S 0 -y {3 3} + -t 1.05798 -s 3 -d 0 -p ack -e 40 -c 0 -i 149 -a 0 -S 0 -y {3 3} - -t 1.05798 -s 3 -d 0 -p ack -e 40 -c 0 -i 149 -a 0 -S 0 -f 0 -m 1 -y {3 3} h -t 1.05798 -s 3 -d 0 -p ack -e 40 -c 0 -i 149 -a 0 -S 0 -y {-1 -1} r -t 1.058 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 138 -a 1 r -t 1.058 -s 4 -d 6 -p cbr -e 500 -c 1 -i 140 -a 1 + -t 1.06 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 163 -a 1 - -t 1.06 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 163 -a 1 h -t 1.06 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 163 -a 1 + -t 1.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 164 -a 1 - -t 1.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 164 -a 1 h -t 1.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 164 -a 1 - -t 1.06 -s 3 -d 4 -p cbr -e 500 -c 1 -i 159 -a 1 h -t 1.06 -s 3 -d 4 -p cbr -e 500 -c 1 -i 159 -a 1 r -t 1.062 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 144 -a 1 + -t 1.062 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 144 -a 1 - -t 1.062 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 144 -a 1 h -t 1.062 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 144 -a 1 r -t 1.062 -s 4 -d 6 -p cbr -e 500 -c 1 -i 142 -a 1 r -t 1.064 -s 1 -d 3 -p cbr -e 500 -c 1 -i 161 -a 1 + -t 1.064 -s 3 -d 4 -p cbr -e 500 -c 1 -i 161 -a 1 - -t 1.064 -s 3 -d 4 -p cbr -e 500 -c 1 -i 161 -a 1 h -t 1.064 -s 3 -d 4 -p cbr -e 500 -c 1 -i 161 -a 1 r -t 1.066 -s 3 -d 4 -p cbr -e 500 -c 1 -i 146 -a 1 + -t 1.066 -s 4 -d 6 -p cbr -e 500 -c 1 -i 146 -a 1 - -t 1.066 -s 4 -d 6 -p cbr -e 500 -c 1 -i 146 -a 1 h -t 1.066 -s 4 -d 6 -p cbr -e 500 -c 1 -i 146 -a 1 r -t 1.068 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 160 -a 1 + -t 1.068 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 160 -a 1 - -t 1.068 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 160 -a 1 h -t 1.068 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 160 -a 1 r -t 1.07 -s 3 -d 4 -p cbr -e 500 -c 1 -i 148 -a 1 + -t 1.07 -s 4 -d 6 -p cbr -e 500 -c 1 -i 148 -a 1 + -t 1.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 165 -a 1 - -t 1.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 165 -a 1 h -t 1.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 165 -a 1 - -t 1.07 -s 4 -d 6 -p cbr -e 500 -c 1 -i 148 -a 1 h -t 1.07 -s 4 -d 6 -p cbr -e 500 -c 1 -i 148 -a 1 r -t 1.07398 -s 4 -d 3 -p ack -e 40 -c 0 -i 153 -a 0 -S 0 -y {4 4} + -t 1.07398 -s 3 -d 0 -p ack -e 40 -c 0 -i 153 -a 0 -S 0 -y {4 4} - -t 1.07398 -s 3 -d 0 -p ack -e 40 -c 0 -i 153 -a 0 -S 0 -f 0 -m 1 -y {4 4} h -t 1.07398 -s 3 -d 0 -p ack -e 40 -c 0 -i 153 -a 0 -S 0 -y {-1 -1} r -t 1.074 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 141 -a 1 r -t 1.074 -s 4 -d 6 -p cbr -e 500 -c 1 -i 143 -a 1 r -t 1.074 -s 1 -d 3 -p cbr -e 500 -c 1 -i 162 -a 1 + -t 1.074 -s 3 -d 4 -p cbr -e 500 -c 1 -i 162 -a 1 - -t 1.076 -s 3 -d 4 -p cbr -e 500 -c 1 -i 162 -a 1 h -t 1.076 -s 3 -d 4 -p cbr -e 500 -c 1 -i 162 -a 1 r -t 1.078 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 147 -a 1 + -t 1.078 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 147 -a 1 - -t 1.078 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 147 -a 1 h -t 1.078 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 147 -a 1 r -t 1.078 -s 4 -d 6 -p cbr -e 500 -c 1 -i 145 -a 1 r -t 1.07805 -s 3 -d 0 -p ack -e 40 -c 0 -i 149 -a 0 -S 0 -y {3 3} f -t 1.07804800000000056 -s 0 -d 5 -n cwnd_ -a tcp -v 5.000000 -o 4.000000 -T v + -t 1.07805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 166 -a 0 -S 0 -f 0 -m 0 -y {7 7} - -t 1.07805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 166 -a 0 -S 0 -y {7 7} h -t 1.07805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 166 -a 0 -S 0 -y {-1 -1} + -t 1.07805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 167 -a 0 -S 0 -f 0 -m 0 -y {8 8} - -t 1.07965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 167 -a 0 -S 0 -y {8 8} h -t 1.07965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 167 -a 0 -S 0 -y {-1 -1} + -t 1.08 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 168 -a 1 - -t 1.08 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 168 -a 1 h -t 1.08 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 168 -a 1 + -t 1.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 169 -a 1 - -t 1.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 169 -a 1 h -t 1.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 169 -a 1 r -t 1.082 -s 3 -d 4 -p cbr -e 500 -c 1 -i 150 -a 1 + -t 1.082 -s 4 -d 6 -p cbr -e 500 -c 1 -i 150 -a 1 - -t 1.082 -s 4 -d 6 -p cbr -e 500 -c 1 -i 150 -a 1 h -t 1.082 -s 4 -d 6 -p cbr -e 500 -c 1 -i 150 -a 1 r -t 1.084 -s 1 -d 3 -p cbr -e 500 -c 1 -i 164 -a 1 + -t 1.084 -s 3 -d 4 -p cbr -e 500 -c 1 -i 164 -a 1 - -t 1.084 -s 3 -d 4 -p cbr -e 500 -c 1 -i 164 -a 1 h -t 1.084 -s 3 -d 4 -p cbr -e 500 -c 1 -i 164 -a 1 r -t 1.08598 -s 4 -d 3 -p ack -e 40 -c 0 -i 155 -a 0 -S 0 -y {5 5} + -t 1.08598 -s 3 -d 0 -p ack -e 40 -c 0 -i 155 -a 0 -S 0 -y {5 5} - -t 1.08598 -s 3 -d 0 -p ack -e 40 -c 0 -i 155 -a 0 -S 0 -f 0 -m 1 -y {5 5} h -t 1.08598 -s 3 -d 0 -p ack -e 40 -c 0 -i 155 -a 0 -S 0 -y {-1 -1} r -t 1.086 -s 3 -d 4 -p cbr -e 500 -c 1 -i 152 -a 1 + -t 1.086 -s 4 -d 6 -p cbr -e 500 -c 1 -i 152 -a 1 - -t 1.086 -s 4 -d 6 -p cbr -e 500 -c 1 -i 152 -a 1 h -t 1.086 -s 4 -d 6 -p cbr -e 500 -c 1 -i 152 -a 1 r -t 1.088 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 163 -a 1 + -t 1.088 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 163 -a 1 - -t 1.088 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 163 -a 1 h -t 1.088 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 163 -a 1 r -t 1.09 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 144 -a 1 r -t 1.09 -s 4 -d 6 -p cbr -e 500 -c 1 -i 146 -a 1 + -t 1.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 170 -a 1 - -t 1.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 170 -a 1 h -t 1.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 170 -a 1 r -t 1.09398 -s 4 -d 3 -p ack -e 40 -c 0 -i 158 -a 0 -S 0 -y {6 6} + -t 1.09398 -s 3 -d 0 -p ack -e 40 -c 0 -i 158 -a 0 -S 0 -y {6 6} - -t 1.09398 -s 3 -d 0 -p ack -e 40 -c 0 -i 158 -a 0 -S 0 -f 0 -m 1 -y {6 6} h -t 1.09398 -s 3 -d 0 -p ack -e 40 -c 0 -i 158 -a 0 -S 0 -y {-1 -1} r -t 1.094 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 151 -a 1 + -t 1.094 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 151 -a 1 - -t 1.094 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 151 -a 1 h -t 1.094 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 151 -a 1 r -t 1.094 -s 1 -d 3 -p cbr -e 500 -c 1 -i 165 -a 1 + -t 1.094 -s 3 -d 4 -p cbr -e 500 -c 1 -i 165 -a 1 r -t 1.094 -s 4 -d 6 -p cbr -e 500 -c 1 -i 148 -a 1 r -t 1.09405 -s 3 -d 0 -p ack -e 40 -c 0 -i 153 -a 0 -S 0 -y {4 4} f -t 1.09404800000000080 -s 0 -d 5 -n cwnd_ -a tcp -v 6.000000 -o 5.000000 -T v + -t 1.09405 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 171 -a 0 -S 0 -f 0 -m 0 -y {9 9} - -t 1.09405 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 171 -a 0 -S 0 -y {9 9} h -t 1.09405 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 171 -a 0 -S 0 -y {-1 -1} + -t 1.09405 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 172 -a 0 -S 0 -f 0 -m 0 -y {10 10} - -t 1.09565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 172 -a 0 -S 0 -y {10 10} h -t 1.09565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 172 -a 0 -S 0 -y {-1 -1} - -t 1.096 -s 3 -d 4 -p cbr -e 500 -c 1 -i 165 -a 1 h -t 1.096 -s 3 -d 4 -p cbr -e 500 -c 1 -i 165 -a 1 r -t 1.098 -s 3 -d 4 -p cbr -e 500 -c 1 -i 154 -a 1 + -t 1.098 -s 4 -d 6 -p cbr -e 500 -c 1 -i 154 -a 1 - -t 1.098 -s 4 -d 6 -p cbr -e 500 -c 1 -i 154 -a 1 h -t 1.098 -s 4 -d 6 -p cbr -e 500 -c 1 -i 154 -a 1 r -t 1.09965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 166 -a 0 -S 0 -y {7 7} + -t 1.09965 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 166 -a 0 -S 0 -y {7 7} + -t 1.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 173 -a 1 - -t 1.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 173 -a 1 h -t 1.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 173 -a 1 + -t 1.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 174 -a 1 - -t 1.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 174 -a 1 h -t 1.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 174 -a 1 - -t 1.1 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 166 -a 0 -S 0 -y {7 7} h -t 1.1 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 166 -a 0 -S 0 -y {-1 -1} r -t 1.10125 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 167 -a 0 -S 0 -y {8 8} + -t 1.10125 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 167 -a 0 -S 0 -y {8 8} r -t 1.102 -s 3 -d 4 -p cbr -e 500 -c 1 -i 157 -a 1 + -t 1.102 -s 4 -d 6 -p cbr -e 500 -c 1 -i 157 -a 1 - -t 1.102 -s 4 -d 6 -p cbr -e 500 -c 1 -i 157 -a 1 h -t 1.102 -s 4 -d 6 -p cbr -e 500 -c 1 -i 157 -a 1 r -t 1.104 -s 1 -d 3 -p cbr -e 500 -c 1 -i 169 -a 1 + -t 1.104 -s 3 -d 4 -p cbr -e 500 -c 1 -i 169 -a 1 r -t 1.106 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 147 -a 1 r -t 1.106 -s 4 -d 6 -p cbr -e 500 -c 1 -i 150 -a 1 r -t 1.10605 -s 3 -d 0 -p ack -e 40 -c 0 -i 155 -a 0 -S 0 -y {5 5} f -t 1.10604800000000081 -s 0 -d 5 -n cwnd_ -a tcp -v 7.000000 -o 6.000000 -T v + -t 1.10605 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 175 -a 0 -S 0 -f 0 -m 0 -y {11 11} - -t 1.10605 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 175 -a 0 -S 0 -y {11 11} h -t 1.10605 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 175 -a 0 -S 0 -y {-1 -1} + -t 1.10605 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 176 -a 0 -S 0 -f 0 -m 0 -y {12 12} - -t 1.10765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 176 -a 0 -S 0 -y {12 12} h -t 1.10765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 176 -a 0 -S 0 -y {-1 -1} r -t 1.108 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 168 -a 1 + -t 1.108 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 168 -a 1 - -t 1.108 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 167 -a 0 -S 0 -y {8 8} h -t 1.108 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 167 -a 0 -S 0 -y {-1 -1} r -t 1.11 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 156 -a 1 + -t 1.11 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 156 -a 1 - -t 1.11 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 156 -a 1 h -t 1.11 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 156 -a 1 r -t 1.11 -s 4 -d 6 -p cbr -e 500 -c 1 -i 152 -a 1 + -t 1.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 177 -a 1 - -t 1.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 177 -a 1 h -t 1.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 177 -a 1 r -t 1.114 -s 3 -d 4 -p cbr -e 500 -c 1 -i 159 -a 1 + -t 1.114 -s 4 -d 6 -p cbr -e 500 -c 1 -i 159 -a 1 - -t 1.114 -s 4 -d 6 -p cbr -e 500 -c 1 -i 159 -a 1 h -t 1.114 -s 4 -d 6 -p cbr -e 500 -c 1 -i 159 -a 1 r -t 1.114 -s 1 -d 3 -p cbr -e 500 -c 1 -i 170 -a 1 + -t 1.114 -s 3 -d 4 -p cbr -e 500 -c 1 -i 170 -a 1 r -t 1.11405 -s 3 -d 0 -p ack -e 40 -c 0 -i 158 -a 0 -S 0 -y {6 6} f -t 1.11404800000000082 -s 0 -d 5 -n cwnd_ -a tcp -v 8.000000 -o 7.000000 -T v + -t 1.11405 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 178 -a 0 -S 0 -f 0 -m 0 -y {13 13} - -t 1.11405 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 178 -a 0 -S 0 -y {13 13} h -t 1.11405 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 178 -a 0 -S 0 -y {-1 -1} + -t 1.11405 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 179 -a 0 -S 0 -f 0 -m 0 -y {14 14} r -t 1.11565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 171 -a 0 -S 0 -y {9 9} + -t 1.11565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 171 -a 0 -S 0 -y {9 9} - -t 1.11565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 179 -a 0 -S 0 -y {14 14} h -t 1.11565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 179 -a 0 -S 0 -y {-1 -1} - -t 1.116 -s 3 -d 4 -p cbr -e 500 -c 1 -i 169 -a 1 h -t 1.116 -s 3 -d 4 -p cbr -e 500 -c 1 -i 169 -a 1 r -t 1.11725 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 172 -a 0 -S 0 -y {10 10} + -t 1.11725 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 172 -a 0 -S 0 -y {10 10} r -t 1.118 -s 3 -d 4 -p cbr -e 500 -c 1 -i 161 -a 1 + -t 1.118 -s 4 -d 6 -p cbr -e 500 -c 1 -i 161 -a 1 - -t 1.118 -s 4 -d 6 -p cbr -e 500 -c 1 -i 161 -a 1 h -t 1.118 -s 4 -d 6 -p cbr -e 500 -c 1 -i 161 -a 1 + -t 1.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 180 -a 1 - -t 1.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 180 -a 1 h -t 1.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 180 -a 1 + -t 1.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 181 -a 1 - -t 1.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 181 -a 1 h -t 1.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 181 -a 1 - -t 1.12 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 168 -a 1 h -t 1.12 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 168 -a 1 r -t 1.122 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 151 -a 1 r -t 1.122 -s 4 -d 6 -p cbr -e 500 -c 1 -i 154 -a 1 r -t 1.124 -s 1 -d 3 -p cbr -e 500 -c 1 -i 174 -a 1 + -t 1.124 -s 3 -d 4 -p cbr -e 500 -c 1 -i 174 -a 1 r -t 1.126 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 160 -a 1 + -t 1.126 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 160 -a 1 - -t 1.126 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 160 -a 1 h -t 1.126 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 160 -a 1 r -t 1.126 -s 4 -d 6 -p cbr -e 500 -c 1 -i 157 -a 1 r -t 1.12765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 175 -a 0 -S 0 -y {11 11} + -t 1.12765 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 175 -a 0 -S 0 -y {11 11} r -t 1.128 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 173 -a 1 + -t 1.128 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 173 -a 1 - -t 1.128 -s 3 -d 4 -p cbr -e 500 -c 1 -i 170 -a 1 h -t 1.128 -s 3 -d 4 -p cbr -e 500 -c 1 -i 170 -a 1 r -t 1.12925 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 176 -a 0 -S 0 -y {12 12} + -t 1.12925 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 176 -a 0 -S 0 -y {12 12} r -t 1.13 -s 3 -d 4 -p cbr -e 500 -c 1 -i 162 -a 1 + -t 1.13 -s 4 -d 6 -p cbr -e 500 -c 1 -i 162 -a 1 - -t 1.13 -s 4 -d 6 -p cbr -e 500 -c 1 -i 162 -a 1 h -t 1.13 -s 4 -d 6 -p cbr -e 500 -c 1 -i 162 -a 1 + -t 1.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 182 -a 1 - -t 1.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 182 -a 1 h -t 1.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 182 -a 1 - -t 1.132 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 171 -a 0 -S 0 -y {9 9} h -t 1.132 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 171 -a 0 -S 0 -y {-1 -1} r -t 1.134 -s 1 -d 3 -p cbr -e 500 -c 1 -i 177 -a 1 + -t 1.134 -s 3 -d 4 -p cbr -e 500 -c 1 -i 177 -a 1 r -t 1.13565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 178 -a 0 -S 0 -y {13 13} + -t 1.13565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 178 -a 0 -S 0 -y {13 13} r -t 1.13725 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 179 -a 0 -S 0 -y {14 14} + -t 1.13725 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 179 -a 0 -S 0 -y {14 14} r -t 1.138 -s 3 -d 4 -p cbr -e 500 -c 1 -i 164 -a 1 + -t 1.138 -s 4 -d 6 -p cbr -e 500 -c 1 -i 164 -a 1 - -t 1.138 -s 4 -d 6 -p cbr -e 500 -c 1 -i 164 -a 1 h -t 1.138 -s 4 -d 6 -p cbr -e 500 -c 1 -i 164 -a 1 r -t 1.138 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 156 -a 1 r -t 1.138 -s 4 -d 6 -p cbr -e 500 -c 1 -i 159 -a 1 + -t 1.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 183 -a 1 - -t 1.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 183 -a 1 h -t 1.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 183 -a 1 + -t 1.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 184 -a 1 - -t 1.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 184 -a 1 h -t 1.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 184 -a 1 - -t 1.14 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 172 -a 0 -S 0 -y {10 10} h -t 1.14 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 172 -a 0 -S 0 -y {-1 -1} r -t 1.142 -s 4 -d 6 -p cbr -e 500 -c 1 -i 161 -a 1 r -t 1.144 -s 1 -d 3 -p cbr -e 500 -c 1 -i 181 -a 1 + -t 1.144 -s 3 -d 4 -p cbr -e 500 -c 1 -i 181 -a 1 r -t 1.146 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 163 -a 1 + -t 1.146 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 163 -a 1 - -t 1.146 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 163 -a 1 h -t 1.146 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 163 -a 1 r -t 1.148 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 180 -a 1 + -t 1.148 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 180 -a 1 - -t 1.148 -s 3 -d 4 -p cbr -e 500 -c 1 -i 174 -a 1 h -t 1.148 -s 3 -d 4 -p cbr -e 500 -c 1 -i 174 -a 1 r -t 1.15 -s 3 -d 4 -p cbr -e 500 -c 1 -i 165 -a 1 + -t 1.15 -s 4 -d 6 -p cbr -e 500 -c 1 -i 165 -a 1 - -t 1.15 -s 4 -d 6 -p cbr -e 500 -c 1 -i 165 -a 1 h -t 1.15 -s 4 -d 6 -p cbr -e 500 -c 1 -i 165 -a 1 + -t 1.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 185 -a 1 - -t 1.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 185 -a 1 h -t 1.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 185 -a 1 - -t 1.152 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 175 -a 0 -S 0 -y {11 11} h -t 1.152 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 175 -a 0 -S 0 -y {-1 -1} r -t 1.154 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 160 -a 1 r -t 1.154 -s 4 -d 6 -p cbr -e 500 -c 1 -i 162 -a 1 r -t 1.154 -s 1 -d 3 -p cbr -e 500 -c 1 -i 182 -a 1 + -t 1.154 -s 3 -d 4 -p cbr -e 500 -c 1 -i 182 -a 1 r -t 1.158 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 166 -a 0 -S 0 -y {7 7} + -t 1.158 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 166 -a 0 -S 0 -y {7 7} - -t 1.158 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 166 -a 0 -S 0 -y {7 7} h -t 1.158 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 166 -a 0 -S 0 -y {-1 -1} + -t 1.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 186 -a 1 - -t 1.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 186 -a 1 h -t 1.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 186 -a 1 + -t 1.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 187 -a 1 - -t 1.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 187 -a 1 h -t 1.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 187 -a 1 - -t 1.16 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 173 -a 1 h -t 1.16 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 173 -a 1 r -t 1.162 -s 4 -d 6 -p cbr -e 500 -c 1 -i 164 -a 1 r -t 1.164 -s 1 -d 3 -p cbr -e 500 -c 1 -i 184 -a 1 + -t 1.164 -s 3 -d 4 -p cbr -e 500 -c 1 -i 184 -a 1 r -t 1.166 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 167 -a 0 -S 0 -y {8 8} + -t 1.166 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 167 -a 0 -S 0 -y {8 8} - -t 1.166 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 167 -a 0 -S 0 -y {8 8} h -t 1.166 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 167 -a 0 -S 0 -y {-1 -1} r -t 1.168 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 183 -a 1 + -t 1.168 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 183 -a 1 - -t 1.168 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 176 -a 0 -S 0 -y {12 12} h -t 1.168 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 176 -a 0 -S 0 -y {-1 -1} r -t 1.17 -s 3 -d 4 -p cbr -e 500 -c 1 -i 169 -a 1 + -t 1.17 -s 4 -d 6 -p cbr -e 500 -c 1 -i 169 -a 1 - -t 1.17 -s 4 -d 6 -p cbr -e 500 -c 1 -i 169 -a 1 h -t 1.17 -s 4 -d 6 -p cbr -e 500 -c 1 -i 169 -a 1 + -t 1.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 188 -a 1 - -t 1.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 188 -a 1 h -t 1.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 188 -a 1 r -t 1.174 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 163 -a 1 r -t 1.174 -s 4 -d 6 -p cbr -e 500 -c 1 -i 165 -a 1 r -t 1.174 -s 1 -d 3 -p cbr -e 500 -c 1 -i 185 -a 1 + -t 1.174 -s 3 -d 4 -p cbr -e 500 -c 1 -i 185 -a 1 - -t 1.176 -s 3 -d 4 -p cbr -e 500 -c 1 -i 177 -a 1 h -t 1.176 -s 3 -d 4 -p cbr -e 500 -c 1 -i 177 -a 1 r -t 1.178 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 168 -a 1 + -t 1.178 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 168 -a 1 - -t 1.178 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 168 -a 1 h -t 1.178 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 168 -a 1 r -t 1.1796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 166 -a 0 -S 0 -y {7 7} + -t 1.1796 -s 5 -d 4 -p ack -e 40 -c 0 -i 189 -a 0 -S 0 -y {7 7} - -t 1.1796 -s 5 -d 4 -p ack -e 40 -c 0 -i 189 -a 0 -S 0 -y {7 7} h -t 1.1796 -s 5 -d 4 -p ack -e 40 -c 0 -i 189 -a 0 -S 0 -y {-1 -1} + -t 1.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 190 -a 1 - -t 1.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 190 -a 1 h -t 1.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 190 -a 1 + -t 1.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 191 -a 1 - -t 1.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 191 -a 1 h -t 1.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 191 -a 1 - -t 1.18 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 178 -a 0 -S 0 -y {13 13} h -t 1.18 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 178 -a 0 -S 0 -y {-1 -1} r -t 1.182 -s 3 -d 4 -p cbr -e 500 -c 1 -i 170 -a 1 + -t 1.182 -s 4 -d 6 -p cbr -e 500 -c 1 -i 170 -a 1 - -t 1.182 -s 4 -d 6 -p cbr -e 500 -c 1 -i 170 -a 1 h -t 1.182 -s 4 -d 6 -p cbr -e 500 -c 1 -i 170 -a 1 r -t 1.184 -s 1 -d 3 -p cbr -e 500 -c 1 -i 187 -a 1 + -t 1.184 -s 3 -d 4 -p cbr -e 500 -c 1 -i 187 -a 1 r -t 1.1876 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 167 -a 0 -S 0 -y {8 8} + -t 1.1876 -s 5 -d 4 -p ack -e 40 -c 0 -i 192 -a 0 -S 0 -y {8 8} - -t 1.1876 -s 5 -d 4 -p ack -e 40 -c 0 -i 192 -a 0 -S 0 -y {8 8} h -t 1.1876 -s 5 -d 4 -p ack -e 40 -c 0 -i 192 -a 0 -S 0 -y {-1 -1} r -t 1.188 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 186 -a 1 + -t 1.188 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 186 -a 1 - -t 1.188 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 179 -a 0 -S 0 -y {14 14} h -t 1.188 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 179 -a 0 -S 0 -y {-1 -1} r -t 1.19 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 171 -a 0 -S 0 -y {9 9} + -t 1.19 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 171 -a 0 -S 0 -y {9 9} - -t 1.19 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 171 -a 0 -S 0 -y {9 9} h -t 1.19 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 171 -a 0 -S 0 -y {-1 -1} + -t 1.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 193 -a 1 - -t 1.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 193 -a 1 h -t 1.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 193 -a 1 r -t 1.194 -s 4 -d 6 -p cbr -e 500 -c 1 -i 169 -a 1 r -t 1.194 -s 1 -d 3 -p cbr -e 500 -c 1 -i 188 -a 1 + -t 1.194 -s 3 -d 4 -p cbr -e 500 -c 1 -i 188 -a 1 - -t 1.196 -s 3 -d 4 -p cbr -e 500 -c 1 -i 181 -a 1 h -t 1.196 -s 3 -d 4 -p cbr -e 500 -c 1 -i 181 -a 1 r -t 1.198 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 172 -a 0 -S 0 -y {10 10} + -t 1.198 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 172 -a 0 -S 0 -y {10 10} - -t 1.198 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 172 -a 0 -S 0 -y {10 10} h -t 1.198 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 172 -a 0 -S 0 -y {-1 -1} r -t 1.19966 -s 5 -d 4 -p ack -e 40 -c 0 -i 189 -a 0 -S 0 -y {7 7} + -t 1.19966 -s 4 -d 3 -p ack -e 40 -c 0 -i 189 -a 0 -S 0 -y {7 7} - -t 1.19966 -s 4 -d 3 -p ack -e 40 -c 0 -i 189 -a 0 -S 0 -y {7 7} h -t 1.19966 -s 4 -d 3 -p ack -e 40 -c 0 -i 189 -a 0 -S 0 -y {-1 -1} + -t 1.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 194 -a 1 - -t 1.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 194 -a 1 h -t 1.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 194 -a 1 + -t 1.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 195 -a 1 - -t 1.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 195 -a 1 h -t 1.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 195 -a 1 - -t 1.2 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 180 -a 1 h -t 1.2 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 180 -a 1 r -t 1.202 -s 3 -d 4 -p cbr -e 500 -c 1 -i 174 -a 1 + -t 1.202 -s 4 -d 6 -p cbr -e 500 -c 1 -i 174 -a 1 - -t 1.202 -s 4 -d 6 -p cbr -e 500 -c 1 -i 174 -a 1 h -t 1.202 -s 4 -d 6 -p cbr -e 500 -c 1 -i 174 -a 1 r -t 1.204 -s 1 -d 3 -p cbr -e 500 -c 1 -i 191 -a 1 + -t 1.204 -s 3 -d 4 -p cbr -e 500 -c 1 -i 191 -a 1 r -t 1.206 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 168 -a 1 r -t 1.206 -s 4 -d 6 -p cbr -e 500 -c 1 -i 170 -a 1 r -t 1.20766 -s 5 -d 4 -p ack -e 40 -c 0 -i 192 -a 0 -S 0 -y {8 8} + -t 1.20766 -s 4 -d 3 -p ack -e 40 -c 0 -i 192 -a 0 -S 0 -y {8 8} - -t 1.20766 -s 4 -d 3 -p ack -e 40 -c 0 -i 192 -a 0 -S 0 -y {8 8} h -t 1.20766 -s 4 -d 3 -p ack -e 40 -c 0 -i 192 -a 0 -S 0 -y {-1 -1} r -t 1.208 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 190 -a 1 + -t 1.208 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 190 -a 1 - -t 1.208 -s 3 -d 4 -p cbr -e 500 -c 1 -i 182 -a 1 h -t 1.208 -s 3 -d 4 -p cbr -e 500 -c 1 -i 182 -a 1 r -t 1.21 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 175 -a 0 -S 0 -y {11 11} + -t 1.21 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 175 -a 0 -S 0 -y {11 11} - -t 1.21 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 175 -a 0 -S 0 -y {11 11} h -t 1.21 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 175 -a 0 -S 0 -y {-1 -1} + -t 1.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 196 -a 1 - -t 1.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 196 -a 1 h -t 1.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 196 -a 1 r -t 1.2116 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 171 -a 0 -S 0 -y {9 9} + -t 1.2116 -s 5 -d 4 -p ack -e 40 -c 0 -i 197 -a 0 -S 0 -y {9 9} - -t 1.2116 -s 5 -d 4 -p ack -e 40 -c 0 -i 197 -a 0 -S 0 -y {9 9} h -t 1.2116 -s 5 -d 4 -p ack -e 40 -c 0 -i 197 -a 0 -S 0 -y {-1 -1} - -t 1.212 -s 3 -d 4 -p cbr -e 500 -c 1 -i 184 -a 1 h -t 1.212 -s 3 -d 4 -p cbr -e 500 -c 1 -i 184 -a 1 r -t 1.214 -s 1 -d 3 -p cbr -e 500 -c 1 -i 193 -a 1 + -t 1.214 -s 3 -d 4 -p cbr -e 500 -c 1 -i 193 -a 1 - -t 1.216 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 183 -a 1 h -t 1.216 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 183 -a 1 r -t 1.218 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 173 -a 1 + -t 1.218 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 173 -a 1 - -t 1.218 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 173 -a 1 h -t 1.218 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 173 -a 1 r -t 1.2196 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 172 -a 0 -S 0 -y {10 10} + -t 1.2196 -s 5 -d 4 -p ack -e 40 -c 0 -i 198 -a 0 -S 0 -y {10 10} - -t 1.2196 -s 5 -d 4 -p ack -e 40 -c 0 -i 198 -a 0 -S 0 -y {10 10} h -t 1.2196 -s 5 -d 4 -p ack -e 40 -c 0 -i 198 -a 0 -S 0 -y {-1 -1} + -t 1.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 199 -a 1 - -t 1.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 199 -a 1 h -t 1.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 199 -a 1 + -t 1.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 200 -a 1 - -t 1.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 200 -a 1 h -t 1.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 200 -a 1 r -t 1.224 -s 1 -d 3 -p cbr -e 500 -c 1 -i 195 -a 1 + -t 1.224 -s 3 -d 4 -p cbr -e 500 -c 1 -i 195 -a 1 - -t 1.224 -s 3 -d 4 -p cbr -e 500 -c 1 -i 185 -a 1 h -t 1.224 -s 3 -d 4 -p cbr -e 500 -c 1 -i 185 -a 1 r -t 1.226 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 176 -a 0 -S 0 -y {12 12} + -t 1.226 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 176 -a 0 -S 0 -y {12 12} - -t 1.226 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 176 -a 0 -S 0 -y {12 12} h -t 1.226 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 176 -a 0 -S 0 -y {-1 -1} r -t 1.226 -s 4 -d 6 -p cbr -e 500 -c 1 -i 174 -a 1 r -t 1.228 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 194 -a 1 + -t 1.228 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 194 -a 1 - -t 1.228 -s 3 -d 4 -p cbr -e 500 -c 1 -i 187 -a 1 h -t 1.228 -s 3 -d 4 -p cbr -e 500 -c 1 -i 187 -a 1 r -t 1.23 -s 3 -d 4 -p cbr -e 500 -c 1 -i 177 -a 1 + -t 1.23 -s 4 -d 6 -p cbr -e 500 -c 1 -i 177 -a 1 - -t 1.23 -s 4 -d 6 -p cbr -e 500 -c 1 -i 177 -a 1 h -t 1.23 -s 4 -d 6 -p cbr -e 500 -c 1 -i 177 -a 1 + -t 1.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 201 -a 1 - -t 1.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 201 -a 1 h -t 1.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 201 -a 1 r -t 1.2316 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 175 -a 0 -S 0 -y {11 11} + -t 1.2316 -s 5 -d 4 -p ack -e 40 -c 0 -i 202 -a 0 -S 0 -y {11 11} - -t 1.2316 -s 5 -d 4 -p ack -e 40 -c 0 -i 202 -a 0 -S 0 -y {11 11} h -t 1.2316 -s 5 -d 4 -p ack -e 40 -c 0 -i 202 -a 0 -S 0 -y {-1 -1} r -t 1.23166 -s 5 -d 4 -p ack -e 40 -c 0 -i 197 -a 0 -S 0 -y {9 9} + -t 1.23166 -s 4 -d 3 -p ack -e 40 -c 0 -i 197 -a 0 -S 0 -y {9 9} - -t 1.23166 -s 4 -d 3 -p ack -e 40 -c 0 -i 197 -a 0 -S 0 -y {9 9} h -t 1.23166 -s 4 -d 3 -p ack -e 40 -c 0 -i 197 -a 0 -S 0 -y {-1 -1} - -t 1.232 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 186 -a 1 h -t 1.232 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 186 -a 1 r -t 1.234 -s 1 -d 3 -p cbr -e 500 -c 1 -i 196 -a 1 + -t 1.234 -s 3 -d 4 -p cbr -e 500 -c 1 -i 196 -a 1 r -t 1.238 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 178 -a 0 -S 0 -y {13 13} + -t 1.238 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 178 -a 0 -S 0 -y {13 13} - -t 1.238 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 178 -a 0 -S 0 -y {13 13} h -t 1.238 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 178 -a 0 -S 0 -y {-1 -1} r -t 1.23966 -s 5 -d 4 -p ack -e 40 -c 0 -i 198 -a 0 -S 0 -y {10 10} + -t 1.23966 -s 4 -d 3 -p ack -e 40 -c 0 -i 198 -a 0 -S 0 -y {10 10} - -t 1.23966 -s 4 -d 3 -p ack -e 40 -c 0 -i 198 -a 0 -S 0 -y {10 10} h -t 1.23966 -s 4 -d 3 -p ack -e 40 -c 0 -i 198 -a 0 -S 0 -y {-1 -1} + -t 1.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 203 -a 1 - -t 1.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 203 -a 1 h -t 1.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 203 -a 1 + -t 1.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 204 -a 1 - -t 1.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 204 -a 1 h -t 1.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 204 -a 1 - -t 1.24 -s 3 -d 4 -p cbr -e 500 -c 1 -i 188 -a 1 h -t 1.24 -s 3 -d 4 -p cbr -e 500 -c 1 -i 188 -a 1 r -t 1.244 -s 1 -d 3 -p cbr -e 500 -c 1 -i 200 -a 1 + -t 1.244 -s 3 -d 4 -p cbr -e 500 -c 1 -i 200 -a 1 - -t 1.244 -s 3 -d 4 -p cbr -e 500 -c 1 -i 191 -a 1 h -t 1.244 -s 3 -d 4 -p cbr -e 500 -c 1 -i 191 -a 1 r -t 1.246 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 179 -a 0 -S 0 -y {14 14} + -t 1.246 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 179 -a 0 -S 0 -y {14 14} - -t 1.246 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 179 -a 0 -S 0 -y {14 14} h -t 1.246 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 179 -a 0 -S 0 -y {-1 -1} r -t 1.246 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 173 -a 1 r -t 1.2476 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 176 -a 0 -S 0 -y {12 12} + -t 1.2476 -s 5 -d 4 -p ack -e 40 -c 0 -i 205 -a 0 -S 0 -y {12 12} - -t 1.2476 -s 5 -d 4 -p ack -e 40 -c 0 -i 205 -a 0 -S 0 -y {12 12} h -t 1.2476 -s 5 -d 4 -p ack -e 40 -c 0 -i 205 -a 0 -S 0 -y {-1 -1} r -t 1.248 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 199 -a 1 + -t 1.248 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 199 -a 1 - -t 1.248 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 190 -a 1 h -t 1.248 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 190 -a 1 r -t 1.24998 -s 4 -d 3 -p ack -e 40 -c 0 -i 189 -a 0 -S 0 -y {7 7} + -t 1.24998 -s 3 -d 0 -p ack -e 40 -c 0 -i 189 -a 0 -S 0 -y {7 7} - -t 1.24998 -s 3 -d 0 -p ack -e 40 -c 0 -i 189 -a 0 -S 0 -f 0 -m 1 -y {7 7} h -t 1.24998 -s 3 -d 0 -p ack -e 40 -c 0 -i 189 -a 0 -S 0 -y {-1 -1} r -t 1.25 -s 3 -d 4 -p cbr -e 500 -c 1 -i 181 -a 1 + -t 1.25 -s 4 -d 6 -p cbr -e 500 -c 1 -i 181 -a 1 - -t 1.25 -s 4 -d 6 -p cbr -e 500 -c 1 -i 181 -a 1 h -t 1.25 -s 4 -d 6 -p cbr -e 500 -c 1 -i 181 -a 1 + -t 1.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 206 -a 1 - -t 1.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 206 -a 1 h -t 1.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 206 -a 1 r -t 1.25166 -s 5 -d 4 -p ack -e 40 -c 0 -i 202 -a 0 -S 0 -y {11 11} + -t 1.25166 -s 4 -d 3 -p ack -e 40 -c 0 -i 202 -a 0 -S 0 -y {11 11} - -t 1.25166 -s 4 -d 3 -p ack -e 40 -c 0 -i 202 -a 0 -S 0 -y {11 11} h -t 1.25166 -s 4 -d 3 -p ack -e 40 -c 0 -i 202 -a 0 -S 0 -y {-1 -1} r -t 1.254 -s 4 -d 6 -p cbr -e 500 -c 1 -i 177 -a 1 r -t 1.254 -s 1 -d 3 -p cbr -e 500 -c 1 -i 201 -a 1 + -t 1.254 -s 3 -d 4 -p cbr -e 500 -c 1 -i 201 -a 1 - -t 1.256 -s 3 -d 4 -p cbr -e 500 -c 1 -i 193 -a 1 h -t 1.256 -s 3 -d 4 -p cbr -e 500 -c 1 -i 193 -a 1 r -t 1.25798 -s 4 -d 3 -p ack -e 40 -c 0 -i 192 -a 0 -S 0 -y {8 8} + -t 1.25798 -s 3 -d 0 -p ack -e 40 -c 0 -i 192 -a 0 -S 0 -y {8 8} - -t 1.25798 -s 3 -d 0 -p ack -e 40 -c 0 -i 192 -a 0 -S 0 -f 0 -m 1 -y {8 8} h -t 1.25798 -s 3 -d 0 -p ack -e 40 -c 0 -i 192 -a 0 -S 0 -y {-1 -1} r -t 1.258 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 180 -a 1 + -t 1.258 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 180 -a 1 - -t 1.258 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 180 -a 1 h -t 1.258 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 180 -a 1 r -t 1.2596 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 178 -a 0 -S 0 -y {13 13} + -t 1.2596 -s 5 -d 4 -p ack -e 40 -c 0 -i 207 -a 0 -S 0 -y {13 13} - -t 1.2596 -s 5 -d 4 -p ack -e 40 -c 0 -i 207 -a 0 -S 0 -y {13 13} h -t 1.2596 -s 5 -d 4 -p ack -e 40 -c 0 -i 207 -a 0 -S 0 -y {-1 -1} + -t 1.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 208 -a 1 - -t 1.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 208 -a 1 h -t 1.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 208 -a 1 + -t 1.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 209 -a 1 - -t 1.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 209 -a 1 h -t 1.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 209 -a 1 - -t 1.26 -s 3 -d 4 -p cbr -e 500 -c 1 -i 195 -a 1 h -t 1.26 -s 3 -d 4 -p cbr -e 500 -c 1 -i 195 -a 1 r -t 1.262 -s 3 -d 4 -p cbr -e 500 -c 1 -i 182 -a 1 + -t 1.262 -s 4 -d 6 -p cbr -e 500 -c 1 -i 182 -a 1 - -t 1.262 -s 4 -d 6 -p cbr -e 500 -c 1 -i 182 -a 1 h -t 1.262 -s 4 -d 6 -p cbr -e 500 -c 1 -i 182 -a 1 r -t 1.264 -s 1 -d 3 -p cbr -e 500 -c 1 -i 204 -a 1 + -t 1.264 -s 3 -d 4 -p cbr -e 500 -c 1 -i 204 -a 1 - -t 1.264 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 194 -a 1 h -t 1.264 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 194 -a 1 r -t 1.266 -s 3 -d 4 -p cbr -e 500 -c 1 -i 184 -a 1 + -t 1.266 -s 4 -d 6 -p cbr -e 500 -c 1 -i 184 -a 1 - -t 1.266 -s 4 -d 6 -p cbr -e 500 -c 1 -i 184 -a 1 h -t 1.266 -s 4 -d 6 -p cbr -e 500 -c 1 -i 184 -a 1 r -t 1.2676 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 179 -a 0 -S 0 -y {14 14} + -t 1.2676 -s 5 -d 4 -p ack -e 40 -c 0 -i 210 -a 0 -S 0 -y {14 14} - -t 1.2676 -s 5 -d 4 -p ack -e 40 -c 0 -i 210 -a 0 -S 0 -y {14 14} h -t 1.2676 -s 5 -d 4 -p ack -e 40 -c 0 -i 210 -a 0 -S 0 -y {-1 -1} r -t 1.26766 -s 5 -d 4 -p ack -e 40 -c 0 -i 205 -a 0 -S 0 -y {12 12} + -t 1.26766 -s 4 -d 3 -p ack -e 40 -c 0 -i 205 -a 0 -S 0 -y {12 12} - -t 1.26766 -s 4 -d 3 -p ack -e 40 -c 0 -i 205 -a 0 -S 0 -y {12 12} h -t 1.26766 -s 4 -d 3 -p ack -e 40 -c 0 -i 205 -a 0 -S 0 -y {-1 -1} r -t 1.268 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 203 -a 1 + -t 1.268 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 203 -a 1 + -t 1.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 211 -a 1 - -t 1.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 211 -a 1 h -t 1.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 211 -a 1 r -t 1.27005 -s 3 -d 0 -p ack -e 40 -c 0 -i 189 -a 0 -S 0 -y {7 7} f -t 1.27004800000000095 -s 0 -d 5 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v + -t 1.27005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 212 -a 0 -S 0 -f 0 -m 0 -y {15 15} - -t 1.27005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 212 -a 0 -S 0 -y {15 15} h -t 1.27005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 212 -a 0 -S 0 -y {-1 -1} + -t 1.27005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 213 -a 0 -S 0 -f 0 -m 0 -y {16 16} - -t 1.27165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 213 -a 0 -S 0 -y {16 16} h -t 1.27165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 213 -a 0 -S 0 -y {-1 -1} - -t 1.272 -s 3 -d 4 -p cbr -e 500 -c 1 -i 196 -a 1 h -t 1.272 -s 3 -d 4 -p cbr -e 500 -c 1 -i 196 -a 1 r -t 1.274 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 183 -a 1 + -t 1.274 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 183 -a 1 - -t 1.274 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 183 -a 1 h -t 1.274 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 183 -a 1 r -t 1.274 -s 4 -d 6 -p cbr -e 500 -c 1 -i 181 -a 1 r -t 1.274 -s 1 -d 3 -p cbr -e 500 -c 1 -i 206 -a 1 + -t 1.274 -s 3 -d 4 -p cbr -e 500 -c 1 -i 206 -a 1 - -t 1.276 -s 3 -d 4 -p cbr -e 500 -c 1 -i 200 -a 1 h -t 1.276 -s 3 -d 4 -p cbr -e 500 -c 1 -i 200 -a 1 r -t 1.278 -s 3 -d 4 -p cbr -e 500 -c 1 -i 185 -a 1 + -t 1.278 -s 4 -d 6 -p cbr -e 500 -c 1 -i 185 -a 1 - -t 1.278 -s 4 -d 6 -p cbr -e 500 -c 1 -i 185 -a 1 h -t 1.278 -s 4 -d 6 -p cbr -e 500 -c 1 -i 185 -a 1 r -t 1.27805 -s 3 -d 0 -p ack -e 40 -c 0 -i 192 -a 0 -S 0 -y {8 8} f -t 1.27804800000000096 -s 0 -d 5 -n cwnd_ -a tcp -v 10.000000 -o 9.000000 -T v + -t 1.27805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 214 -a 0 -S 0 -f 0 -m 0 -y {17 17} - -t 1.27805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 214 -a 0 -S 0 -y {17 17} h -t 1.27805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 214 -a 0 -S 0 -y {-1 -1} + -t 1.27805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 215 -a 0 -S 0 -f 0 -m 0 -y {18 18} - -t 1.27965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 215 -a 0 -S 0 -y {18 18} h -t 1.27965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 215 -a 0 -S 0 -y {-1 -1} r -t 1.27966 -s 5 -d 4 -p ack -e 40 -c 0 -i 207 -a 0 -S 0 -y {13 13} + -t 1.27966 -s 4 -d 3 -p ack -e 40 -c 0 -i 207 -a 0 -S 0 -y {13 13} - -t 1.27966 -s 4 -d 3 -p ack -e 40 -c 0 -i 207 -a 0 -S 0 -y {13 13} h -t 1.27966 -s 4 -d 3 -p ack -e 40 -c 0 -i 207 -a 0 -S 0 -y {-1 -1} + -t 1.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 216 -a 1 - -t 1.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 216 -a 1 h -t 1.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 216 -a 1 + -t 1.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 217 -a 1 - -t 1.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 217 -a 1 h -t 1.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 217 -a 1 - -t 1.28 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 199 -a 1 h -t 1.28 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 199 -a 1 r -t 1.28198 -s 4 -d 3 -p ack -e 40 -c 0 -i 197 -a 0 -S 0 -y {9 9} + -t 1.28198 -s 3 -d 0 -p ack -e 40 -c 0 -i 197 -a 0 -S 0 -y {9 9} - -t 1.28198 -s 3 -d 0 -p ack -e 40 -c 0 -i 197 -a 0 -S 0 -f 0 -m 1 -y {9 9} h -t 1.28198 -s 3 -d 0 -p ack -e 40 -c 0 -i 197 -a 0 -S 0 -y {-1 -1} r -t 1.282 -s 3 -d 4 -p cbr -e 500 -c 1 -i 187 -a 1 + -t 1.282 -s 4 -d 6 -p cbr -e 500 -c 1 -i 187 -a 1 - -t 1.282 -s 4 -d 6 -p cbr -e 500 -c 1 -i 187 -a 1 h -t 1.282 -s 4 -d 6 -p cbr -e 500 -c 1 -i 187 -a 1 r -t 1.284 -s 1 -d 3 -p cbr -e 500 -c 1 -i 209 -a 1 + -t 1.284 -s 3 -d 4 -p cbr -e 500 -c 1 -i 209 -a 1 r -t 1.286 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 180 -a 1 r -t 1.286 -s 4 -d 6 -p cbr -e 500 -c 1 -i 182 -a 1 r -t 1.28766 -s 5 -d 4 -p ack -e 40 -c 0 -i 210 -a 0 -S 0 -y {14 14} + -t 1.28766 -s 4 -d 3 -p ack -e 40 -c 0 -i 210 -a 0 -S 0 -y {14 14} - -t 1.28766 -s 4 -d 3 -p ack -e 40 -c 0 -i 210 -a 0 -S 0 -y {14 14} h -t 1.28766 -s 4 -d 3 -p ack -e 40 -c 0 -i 210 -a 0 -S 0 -y {-1 -1} r -t 1.288 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 208 -a 1 + -t 1.288 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 208 -a 1 - -t 1.288 -s 3 -d 4 -p cbr -e 500 -c 1 -i 201 -a 1 h -t 1.288 -s 3 -d 4 -p cbr -e 500 -c 1 -i 201 -a 1 r -t 1.28998 -s 4 -d 3 -p ack -e 40 -c 0 -i 198 -a 0 -S 0 -y {10 10} + -t 1.28998 -s 3 -d 0 -p ack -e 40 -c 0 -i 198 -a 0 -S 0 -y {10 10} - -t 1.28998 -s 3 -d 0 -p ack -e 40 -c 0 -i 198 -a 0 -S 0 -f 0 -m 1 -y {10 10} h -t 1.28998 -s 3 -d 0 -p ack -e 40 -c 0 -i 198 -a 0 -S 0 -y {-1 -1} r -t 1.29 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 186 -a 1 + -t 1.29 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 186 -a 1 - -t 1.29 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 186 -a 1 h -t 1.29 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 186 -a 1 r -t 1.29 -s 4 -d 6 -p cbr -e 500 -c 1 -i 184 -a 1 + -t 1.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 218 -a 1 - -t 1.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 218 -a 1 h -t 1.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 218 -a 1 r -t 1.29165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 212 -a 0 -S 0 -y {15 15} + -t 1.29165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 212 -a 0 -S 0 -y {15 15} - -t 1.292 -s 3 -d 4 -p cbr -e 500 -c 1 -i 204 -a 1 h -t 1.292 -s 3 -d 4 -p cbr -e 500 -c 1 -i 204 -a 1 r -t 1.29325 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 213 -a 0 -S 0 -y {16 16} + -t 1.29325 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 213 -a 0 -S 0 -y {16 16} r -t 1.294 -s 3 -d 4 -p cbr -e 500 -c 1 -i 188 -a 1 + -t 1.294 -s 4 -d 6 -p cbr -e 500 -c 1 -i 188 -a 1 - -t 1.294 -s 4 -d 6 -p cbr -e 500 -c 1 -i 188 -a 1 h -t 1.294 -s 4 -d 6 -p cbr -e 500 -c 1 -i 188 -a 1 r -t 1.294 -s 1 -d 3 -p cbr -e 500 -c 1 -i 211 -a 1 + -t 1.294 -s 3 -d 4 -p cbr -e 500 -c 1 -i 211 -a 1 - -t 1.296 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 203 -a 1 h -t 1.296 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 203 -a 1 r -t 1.298 -s 3 -d 4 -p cbr -e 500 -c 1 -i 191 -a 1 + -t 1.298 -s 4 -d 6 -p cbr -e 500 -c 1 -i 191 -a 1 - -t 1.298 -s 4 -d 6 -p cbr -e 500 -c 1 -i 191 -a 1 h -t 1.298 -s 4 -d 6 -p cbr -e 500 -c 1 -i 191 -a 1 r -t 1.29965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 214 -a 0 -S 0 -y {17 17} + -t 1.29965 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 214 -a 0 -S 0 -y {17 17} + -t 1.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 219 -a 1 - -t 1.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 219 -a 1 h -t 1.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 219 -a 1 + -t 1.3 -s 1 -d 3 -p cbr -e 500 -c 1 -i 220 -a 1 - -t 1.3 -s 1 -d 3 -p cbr -e 500 -c 1 -i 220 -a 1 h -t 1.3 -s 1 -d 3 -p cbr -e 500 -c 1 -i 220 -a 1 r -t 1.30125 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 215 -a 0 -S 0 -y {18 18} + -t 1.30125 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 215 -a 0 -S 0 -y {18 18} r -t 1.30198 -s 4 -d 3 -p ack -e 40 -c 0 -i 202 -a 0 -S 0 -y {11 11} + -t 1.30198 -s 3 -d 0 -p ack -e 40 -c 0 -i 202 -a 0 -S 0 -y {11 11} - -t 1.30198 -s 3 -d 0 -p ack -e 40 -c 0 -i 202 -a 0 -S 0 -f 0 -m 1 -y {11 11} h -t 1.30198 -s 3 -d 0 -p ack -e 40 -c 0 -i 202 -a 0 -S 0 -y {-1 -1} r -t 1.302 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 183 -a 1 r -t 1.302 -s 4 -d 6 -p cbr -e 500 -c 1 -i 185 -a 1 r -t 1.30205 -s 3 -d 0 -p ack -e 40 -c 0 -i 197 -a 0 -S 0 -y {9 9} f -t 1.30204800000000098 -s 0 -d 5 -n cwnd_ -a tcp -v 11.000000 -o 10.000000 -T v + -t 1.30205 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 221 -a 0 -S 0 -f 0 -m 0 -y {19 19} - -t 1.30205 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 221 -a 0 -S 0 -y {19 19} h -t 1.30205 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 221 -a 0 -S 0 -y {-1 -1} + -t 1.30205 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 222 -a 0 -S 0 -f 0 -m 0 -y {20 20} - -t 1.30365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 222 -a 0 -S 0 -y {20 20} h -t 1.30365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 222 -a 0 -S 0 -y {-1 -1} r -t 1.304 -s 1 -d 3 -p cbr -e 500 -c 1 -i 217 -a 1 + -t 1.304 -s 3 -d 4 -p cbr -e 500 -c 1 -i 217 -a 1 - -t 1.304 -s 3 -d 4 -p cbr -e 500 -c 1 -i 206 -a 1 h -t 1.304 -s 3 -d 4 -p cbr -e 500 -c 1 -i 206 -a 1 r -t 1.306 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 190 -a 1 + -t 1.306 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 190 -a 1 - -t 1.306 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 190 -a 1 h -t 1.306 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 190 -a 1 r -t 1.306 -s 4 -d 6 -p cbr -e 500 -c 1 -i 187 -a 1 r -t 1.308 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 216 -a 1 + -t 1.308 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 216 -a 1 - -t 1.308 -s 3 -d 4 -p cbr -e 500 -c 1 -i 209 -a 1 h -t 1.308 -s 3 -d 4 -p cbr -e 500 -c 1 -i 209 -a 1 r -t 1.31 -s 3 -d 4 -p cbr -e 500 -c 1 -i 193 -a 1 + -t 1.31 -s 4 -d 6 -p cbr -e 500 -c 1 -i 193 -a 1 - -t 1.31 -s 4 -d 6 -p cbr -e 500 -c 1 -i 193 -a 1 h -t 1.31 -s 4 -d 6 -p cbr -e 500 -c 1 -i 193 -a 1 + -t 1.31 -s 1 -d 3 -p cbr -e 500 -c 1 -i 223 -a 1 - -t 1.31 -s 1 -d 3 -p cbr -e 500 -c 1 -i 223 -a 1 h -t 1.31 -s 1 -d 3 -p cbr -e 500 -c 1 -i 223 -a 1 r -t 1.31005 -s 3 -d 0 -p ack -e 40 -c 0 -i 198 -a 0 -S 0 -y {10 10} f -t 1.31004800000000099 -s 0 -d 5 -n cwnd_ -a tcp -v 12.000000 -o 11.000000 -T v + -t 1.31005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 224 -a 0 -S 0 -f 0 -m 0 -y {21 21} - -t 1.31005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 224 -a 0 -S 0 -y {21 21} h -t 1.31005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 224 -a 0 -S 0 -y {-1 -1} + -t 1.31005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 225 -a 0 -S 0 -f 0 -m 0 -y {22 22} - -t 1.31165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 225 -a 0 -S 0 -y {22 22} h -t 1.31165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 225 -a 0 -S 0 -y {-1 -1} - -t 1.312 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 208 -a 1 h -t 1.312 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 208 -a 1 r -t 1.314 -s 3 -d 4 -p cbr -e 500 -c 1 -i 195 -a 1 + -t 1.314 -s 4 -d 6 -p cbr -e 500 -c 1 -i 195 -a 1 r -t 1.314 -s 1 -d 3 -p cbr -e 500 -c 1 -i 218 -a 1 + -t 1.314 -s 3 -d 4 -p cbr -e 500 -c 1 -i 218 -a 1 - -t 1.314 -s 4 -d 6 -p cbr -e 500 -c 1 -i 195 -a 1 h -t 1.314 -s 4 -d 6 -p cbr -e 500 -c 1 -i 195 -a 1 r -t 1.31798 -s 4 -d 3 -p ack -e 40 -c 0 -i 205 -a 0 -S 0 -y {12 12} + -t 1.31798 -s 3 -d 0 -p ack -e 40 -c 0 -i 205 -a 0 -S 0 -y {12 12} - -t 1.31798 -s 3 -d 0 -p ack -e 40 -c 0 -i 205 -a 0 -S 0 -f 0 -m 1 -y {12 12} h -t 1.31798 -s 3 -d 0 -p ack -e 40 -c 0 -i 205 -a 0 -S 0 -y {-1 -1} r -t 1.318 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 186 -a 1 r -t 1.318 -s 4 -d 6 -p cbr -e 500 -c 1 -i 188 -a 1 + -t 1.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 226 -a 1 - -t 1.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 226 -a 1 h -t 1.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 226 -a 1 + -t 1.32 -s 1 -d 3 -p cbr -e 500 -c 1 -i 227 -a 1 - -t 1.32 -s 1 -d 3 -p cbr -e 500 -c 1 -i 227 -a 1 h -t 1.32 -s 1 -d 3 -p cbr -e 500 -c 1 -i 227 -a 1 - -t 1.32 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 212 -a 0 -S 0 -y {15 15} h -t 1.32 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 212 -a 0 -S 0 -y {-1 -1} r -t 1.322 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 194 -a 1 + -t 1.322 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 194 -a 1 - -t 1.322 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 194 -a 1 h -t 1.322 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 194 -a 1 r -t 1.322 -s 4 -d 6 -p cbr -e 500 -c 1 -i 191 -a 1 r -t 1.32205 -s 3 -d 0 -p ack -e 40 -c 0 -i 202 -a 0 -S 0 -y {11 11} f -t 1.32204800000000100 -s 0 -d 5 -n cwnd_ -a tcp -v 13.000000 -o 12.000000 -T v + -t 1.32205 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 228 -a 0 -S 0 -f 0 -m 0 -y {23 23} - -t 1.32205 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 228 -a 0 -S 0 -y {23 23} h -t 1.32205 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 228 -a 0 -S 0 -y {-1 -1} + -t 1.32205 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 229 -a 0 -S 0 -f 0 -m 0 -y {24 24} r -t 1.32365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 221 -a 0 -S 0 -y {19 19} + -t 1.32365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 221 -a 0 -S 0 -y {19 19} - -t 1.32365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 229 -a 0 -S 0 -y {24 24} h -t 1.32365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 229 -a 0 -S 0 -y {-1 -1} r -t 1.324 -s 1 -d 3 -p cbr -e 500 -c 1 -i 220 -a 1 + -t 1.324 -s 3 -d 4 -p cbr -e 500 -c 1 -i 220 -a 1 r -t 1.32525 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 222 -a 0 -S 0 -y {20 20} + -t 1.32525 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 222 -a 0 -S 0 -y {20 20} r -t 1.326 -s 3 -d 4 -p cbr -e 500 -c 1 -i 196 -a 1 + -t 1.326 -s 4 -d 6 -p cbr -e 500 -c 1 -i 196 -a 1 - -t 1.326 -s 4 -d 6 -p cbr -e 500 -c 1 -i 196 -a 1 h -t 1.326 -s 4 -d 6 -p cbr -e 500 -c 1 -i 196 -a 1 r -t 1.328 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 219 -a 1 + -t 1.328 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 219 -a 1 - -t 1.328 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 213 -a 0 -S 0 -y {16 16} h -t 1.328 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 213 -a 0 -S 0 -y {-1 -1} r -t 1.32998 -s 4 -d 3 -p ack -e 40 -c 0 -i 207 -a 0 -S 0 -y {13 13} + -t 1.32998 -s 3 -d 0 -p ack -e 40 -c 0 -i 207 -a 0 -S 0 -y {13 13} - -t 1.32998 -s 3 -d 0 -p ack -e 40 -c 0 -i 207 -a 0 -S 0 -f 0 -m 1 -y {13 13} h -t 1.32998 -s 3 -d 0 -p ack -e 40 -c 0 -i 207 -a 0 -S 0 -y {-1 -1} r -t 1.33 -s 3 -d 4 -p cbr -e 500 -c 1 -i 200 -a 1 + -t 1.33 -s 4 -d 6 -p cbr -e 500 -c 1 -i 200 -a 1 + -t 1.33 -s 1 -d 3 -p cbr -e 500 -c 1 -i 230 -a 1 - -t 1.33 -s 1 -d 3 -p cbr -e 500 -c 1 -i 230 -a 1 h -t 1.33 -s 1 -d 3 -p cbr -e 500 -c 1 -i 230 -a 1 - -t 1.33 -s 4 -d 6 -p cbr -e 500 -c 1 -i 200 -a 1 h -t 1.33 -s 4 -d 6 -p cbr -e 500 -c 1 -i 200 -a 1 r -t 1.33165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 224 -a 0 -S 0 -y {21 21} + -t 1.33165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 224 -a 0 -S 0 -y {21 21} r -t 1.33325 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 225 -a 0 -S 0 -y {22 22} + -t 1.33325 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 225 -a 0 -S 0 -y {22 22} r -t 1.334 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 190 -a 1 r -t 1.334 -s 4 -d 6 -p cbr -e 500 -c 1 -i 193 -a 1 r -t 1.334 -s 1 -d 3 -p cbr -e 500 -c 1 -i 223 -a 1 + -t 1.334 -s 3 -d 4 -p cbr -e 500 -c 1 -i 223 -a 1 - -t 1.336 -s 3 -d 4 -p cbr -e 500 -c 1 -i 211 -a 1 h -t 1.336 -s 3 -d 4 -p cbr -e 500 -c 1 -i 211 -a 1 r -t 1.33798 -s 4 -d 3 -p ack -e 40 -c 0 -i 210 -a 0 -S 0 -y {14 14} + -t 1.33798 -s 3 -d 0 -p ack -e 40 -c 0 -i 210 -a 0 -S 0 -y {14 14} - -t 1.33798 -s 3 -d 0 -p ack -e 40 -c 0 -i 210 -a 0 -S 0 -f 0 -m 1 -y {14 14} h -t 1.33798 -s 3 -d 0 -p ack -e 40 -c 0 -i 210 -a 0 -S 0 -y {-1 -1} r -t 1.338 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 199 -a 1 + -t 1.338 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 199 -a 1 - -t 1.338 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 199 -a 1 h -t 1.338 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 199 -a 1 r -t 1.338 -s 4 -d 6 -p cbr -e 500 -c 1 -i 195 -a 1 r -t 1.33805 -s 3 -d 0 -p ack -e 40 -c 0 -i 205 -a 0 -S 0 -y {12 12} f -t 1.33804800000000101 -s 0 -d 5 -n cwnd_ -a tcp -v 14.000000 -o 13.000000 -T v + -t 1.33805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 231 -a 0 -S 0 -f 0 -m 0 -y {25 25} - -t 1.33805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 231 -a 0 -S 0 -y {25 25} h -t 1.33805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 231 -a 0 -S 0 -y {-1 -1} + -t 1.33805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 232 -a 0 -S 0 -f 0 -m 0 -y {26 26} - -t 1.33965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 232 -a 0 -S 0 -y {26 26} h -t 1.33965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 232 -a 0 -S 0 -y {-1 -1} + -t 1.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 233 -a 1 - -t 1.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 233 -a 1 h -t 1.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 233 -a 1 + -t 1.34 -s 1 -d 3 -p cbr -e 500 -c 1 -i 234 -a 1 - -t 1.34 -s 1 -d 3 -p cbr -e 500 -c 1 -i 234 -a 1 h -t 1.34 -s 1 -d 3 -p cbr -e 500 -c 1 -i 234 -a 1 - -t 1.34 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 214 -a 0 -S 0 -y {17 17} h -t 1.34 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 214 -a 0 -S 0 -y {-1 -1} r -t 1.342 -s 3 -d 4 -p cbr -e 500 -c 1 -i 201 -a 1 + -t 1.342 -s 4 -d 6 -p cbr -e 500 -c 1 -i 201 -a 1 - -t 1.342 -s 4 -d 6 -p cbr -e 500 -c 1 -i 201 -a 1 h -t 1.342 -s 4 -d 6 -p cbr -e 500 -c 1 -i 201 -a 1 r -t 1.34365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 228 -a 0 -S 0 -y {23 23} + -t 1.34365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 228 -a 0 -S 0 -y {23 23} r -t 1.344 -s 1 -d 3 -p cbr -e 500 -c 1 -i 227 -a 1 + -t 1.344 -s 3 -d 4 -p cbr -e 500 -c 1 -i 227 -a 1 r -t 1.34525 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 229 -a 0 -S 0 -y {24 24} + -t 1.34525 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 229 -a 0 -S 0 -y {24 24} r -t 1.346 -s 3 -d 4 -p cbr -e 500 -c 1 -i 204 -a 1 + -t 1.346 -s 4 -d 6 -p cbr -e 500 -c 1 -i 204 -a 1 - -t 1.346 -s 4 -d 6 -p cbr -e 500 -c 1 -i 204 -a 1 h -t 1.346 -s 4 -d 6 -p cbr -e 500 -c 1 -i 204 -a 1 r -t 1.348 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 226 -a 1 + -t 1.348 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 226 -a 1 d -t 1.348 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 226 -a 1 - -t 1.348 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 215 -a 0 -S 0 -y {18 18} h -t 1.348 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 215 -a 0 -S 0 -y {-1 -1} r -t 1.35 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 194 -a 1 r -t 1.35 -s 4 -d 6 -p cbr -e 500 -c 1 -i 196 -a 1 + -t 1.35 -s 1 -d 3 -p cbr -e 500 -c 1 -i 235 -a 1 - -t 1.35 -s 1 -d 3 -p cbr -e 500 -c 1 -i 235 -a 1 h -t 1.35 -s 1 -d 3 -p cbr -e 500 -c 1 -i 235 -a 1 r -t 1.35005 -s 3 -d 0 -p ack -e 40 -c 0 -i 207 -a 0 -S 0 -y {13 13} f -t 1.35004800000000103 -s 0 -d 5 -n cwnd_ -a tcp -v 15.000000 -o 14.000000 -T v + -t 1.35005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 236 -a 0 -S 0 -f 0 -m 0 -y {27 27} - -t 1.35005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 236 -a 0 -S 0 -y {27 27} h -t 1.35005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 236 -a 0 -S 0 -y {-1 -1} + -t 1.35005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 237 -a 0 -S 0 -f 0 -m 0 -y {28 28} - -t 1.35165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 237 -a 0 -S 0 -y {28 28} h -t 1.35165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 237 -a 0 -S 0 -y {-1 -1} r -t 1.354 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 203 -a 1 + -t 1.354 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 203 -a 1 - -t 1.354 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 203 -a 1 h -t 1.354 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 203 -a 1 r -t 1.354 -s 1 -d 3 -p cbr -e 500 -c 1 -i 230 -a 1 + -t 1.354 -s 3 -d 4 -p cbr -e 500 -c 1 -i 230 -a 1 r -t 1.354 -s 4 -d 6 -p cbr -e 500 -c 1 -i 200 -a 1 - -t 1.356 -s 3 -d 4 -p cbr -e 500 -c 1 -i 217 -a 1 h -t 1.356 -s 3 -d 4 -p cbr -e 500 -c 1 -i 217 -a 1 r -t 1.358 -s 3 -d 4 -p cbr -e 500 -c 1 -i 206 -a 1 + -t 1.358 -s 4 -d 6 -p cbr -e 500 -c 1 -i 206 -a 1 - -t 1.358 -s 4 -d 6 -p cbr -e 500 -c 1 -i 206 -a 1 h -t 1.358 -s 4 -d 6 -p cbr -e 500 -c 1 -i 206 -a 1 r -t 1.35805 -s 3 -d 0 -p ack -e 40 -c 0 -i 210 -a 0 -S 0 -y {14 14} f -t 1.35804800000000103 -s 0 -d 5 -n cwnd_ -a tcp -v 16.000000 -o 15.000000 -T v + -t 1.35805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 238 -a 0 -S 0 -f 0 -m 0 -y {29 29} - -t 1.35805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 238 -a 0 -S 0 -y {29 29} h -t 1.35805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 238 -a 0 -S 0 -y {-1 -1} + -t 1.35805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 239 -a 0 -S 0 -f 0 -m 0 -y {30 30} r -t 1.35965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 231 -a 0 -S 0 -y {25 25} + -t 1.35965 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 231 -a 0 -S 0 -y {25 25} - -t 1.35965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 239 -a 0 -S 0 -y {30 30} h -t 1.35965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 239 -a 0 -S 0 -y {-1 -1} + -t 1.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 240 -a 1 - -t 1.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 240 -a 1 h -t 1.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 240 -a 1 + -t 1.36 -s 1 -d 3 -p cbr -e 500 -c 1 -i 241 -a 1 - -t 1.36 -s 1 -d 3 -p cbr -e 500 -c 1 -i 241 -a 1 h -t 1.36 -s 1 -d 3 -p cbr -e 500 -c 1 -i 241 -a 1 - -t 1.36 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 216 -a 1 h -t 1.36 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 216 -a 1 r -t 1.36125 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 232 -a 0 -S 0 -y {26 26} + -t 1.36125 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 232 -a 0 -S 0 -y {26 26} r -t 1.362 -s 3 -d 4 -p cbr -e 500 -c 1 -i 209 -a 1 + -t 1.362 -s 4 -d 6 -p cbr -e 500 -c 1 -i 209 -a 1 - -t 1.362 -s 4 -d 6 -p cbr -e 500 -c 1 -i 209 -a 1 h -t 1.362 -s 4 -d 6 -p cbr -e 500 -c 1 -i 209 -a 1 r -t 1.364 -s 1 -d 3 -p cbr -e 500 -c 1 -i 234 -a 1 + -t 1.364 -s 3 -d 4 -p cbr -e 500 -c 1 -i 234 -a 1 d -t 1.364 -s 3 -d 4 -p cbr -e 500 -c 1 -i 234 -a 1 r -t 1.366 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 199 -a 1 r -t 1.366 -s 4 -d 6 -p cbr -e 500 -c 1 -i 201 -a 1 r -t 1.368 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 233 -a 1 + -t 1.368 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 233 -a 1 d -t 1.368 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 233 -a 1 - -t 1.368 -s 3 -d 4 -p cbr -e 500 -c 1 -i 218 -a 1 h -t 1.368 -s 3 -d 4 -p cbr -e 500 -c 1 -i 218 -a 1 r -t 1.37 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 208 -a 1 + -t 1.37 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 208 -a 1 - -t 1.37 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 208 -a 1 h -t 1.37 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 208 -a 1 r -t 1.37 -s 4 -d 6 -p cbr -e 500 -c 1 -i 204 -a 1 + -t 1.37 -s 1 -d 3 -p cbr -e 500 -c 1 -i 242 -a 1 - -t 1.37 -s 1 -d 3 -p cbr -e 500 -c 1 -i 242 -a 1 h -t 1.37 -s 1 -d 3 -p cbr -e 500 -c 1 -i 242 -a 1 r -t 1.37165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 236 -a 0 -S 0 -y {27 27} + -t 1.37165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 236 -a 0 -S 0 -y {27 27} - -t 1.372 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 221 -a 0 -S 0 -y {19 19} h -t 1.372 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 221 -a 0 -S 0 -y {-1 -1} r -t 1.37325 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 237 -a 0 -S 0 -y {28 28} + -t 1.37325 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 237 -a 0 -S 0 -y {28 28} r -t 1.374 -s 1 -d 3 -p cbr -e 500 -c 1 -i 235 -a 1 + -t 1.374 -s 3 -d 4 -p cbr -e 500 -c 1 -i 235 -a 1 d -t 1.374 -s 3 -d 4 -p cbr -e 500 -c 1 -i 235 -a 1 r -t 1.378 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 212 -a 0 -S 0 -y {15 15} + -t 1.378 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 212 -a 0 -S 0 -y {15 15} - -t 1.378 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 212 -a 0 -S 0 -y {15 15} h -t 1.378 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 212 -a 0 -S 0 -y {-1 -1} r -t 1.37965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 238 -a 0 -S 0 -y {29 29} + -t 1.37965 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 238 -a 0 -S 0 -y {29 29} d -t 1.37965 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 238 -a 0 -S 0 -y {29 29} + -t 1.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 243 -a 1 - -t 1.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 243 -a 1 h -t 1.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 243 -a 1 + -t 1.38 -s 1 -d 3 -p cbr -e 500 -c 1 -i 244 -a 1 - -t 1.38 -s 1 -d 3 -p cbr -e 500 -c 1 -i 244 -a 1 h -t 1.38 -s 1 -d 3 -p cbr -e 500 -c 1 -i 244 -a 1 - -t 1.38 -s 3 -d 4 -p cbr -e 500 -c 1 -i 220 -a 1 h -t 1.38 -s 3 -d 4 -p cbr -e 500 -c 1 -i 220 -a 1 r -t 1.38125 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 239 -a 0 -S 0 -y {30 30} + -t 1.38125 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 239 -a 0 -S 0 -y {30 30} r -t 1.382 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 203 -a 1 r -t 1.382 -s 4 -d 6 -p cbr -e 500 -c 1 -i 206 -a 1 r -t 1.384 -s 1 -d 3 -p cbr -e 500 -c 1 -i 241 -a 1 + -t 1.384 -s 3 -d 4 -p cbr -e 500 -c 1 -i 241 -a 1 d -t 1.384 -s 3 -d 4 -p cbr -e 500 -c 1 -i 241 -a 1 - -t 1.384 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 222 -a 0 -S 0 -y {20 20} h -t 1.384 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 222 -a 0 -S 0 -y {-1 -1} r -t 1.386 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 213 -a 0 -S 0 -y {16 16} + -t 1.386 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 213 -a 0 -S 0 -y {16 16} - -t 1.386 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 213 -a 0 -S 0 -y {16 16} h -t 1.386 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 213 -a 0 -S 0 -y {-1 -1} r -t 1.386 -s 4 -d 6 -p cbr -e 500 -c 1 -i 209 -a 1 r -t 1.388 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 240 -a 1 + -t 1.388 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 240 -a 1 r -t 1.39 -s 3 -d 4 -p cbr -e 500 -c 1 -i 211 -a 1 + -t 1.39 -s 4 -d 6 -p cbr -e 500 -c 1 -i 211 -a 1 - -t 1.39 -s 4 -d 6 -p cbr -e 500 -c 1 -i 211 -a 1 h -t 1.39 -s 4 -d 6 -p cbr -e 500 -c 1 -i 211 -a 1 + -t 1.39 -s 1 -d 3 -p cbr -e 500 -c 1 -i 245 -a 1 - -t 1.39 -s 1 -d 3 -p cbr -e 500 -c 1 -i 245 -a 1 h -t 1.39 -s 1 -d 3 -p cbr -e 500 -c 1 -i 245 -a 1 - -t 1.392 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 219 -a 1 h -t 1.392 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 219 -a 1 r -t 1.394 -s 1 -d 3 -p cbr -e 500 -c 1 -i 242 -a 1 + -t 1.394 -s 3 -d 4 -p cbr -e 500 -c 1 -i 242 -a 1 r -t 1.398 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 214 -a 0 -S 0 -y {17 17} + -t 1.398 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 214 -a 0 -S 0 -y {17 17} - -t 1.398 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 214 -a 0 -S 0 -y {17 17} h -t 1.398 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 214 -a 0 -S 0 -y {-1 -1} r -t 1.398 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 208 -a 1 r -t 1.3996 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 212 -a 0 -S 0 -y {15 15} + -t 1.3996 -s 5 -d 4 -p ack -e 40 -c 0 -i 246 -a 0 -S 0 -y {15 15} - -t 1.3996 -s 5 -d 4 -p ack -e 40 -c 0 -i 246 -a 0 -S 0 -y {15 15} h -t 1.3996 -s 5 -d 4 -p ack -e 40 -c 0 -i 246 -a 0 -S 0 -y {-1 -1} + -t 1.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 247 -a 1 - -t 1.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 247 -a 1 h -t 1.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 247 -a 1 + -t 1.4 -s 1 -d 3 -p cbr -e 500 -c 1 -i 248 -a 1 - -t 1.4 -s 1 -d 3 -p cbr -e 500 -c 1 -i 248 -a 1 h -t 1.4 -s 1 -d 3 -p cbr -e 500 -c 1 -i 248 -a 1 - -t 1.4 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 224 -a 0 -S 0 -y {21 21} h -t 1.4 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 224 -a 0 -S 0 -y {-1 -1} r -t 1.404 -s 1 -d 3 -p cbr -e 500 -c 1 -i 244 -a 1 + -t 1.404 -s 3 -d 4 -p cbr -e 500 -c 1 -i 244 -a 1 r -t 1.406 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 215 -a 0 -S 0 -y {18 18} + -t 1.406 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 215 -a 0 -S 0 -y {18 18} - -t 1.406 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 215 -a 0 -S 0 -y {18 18} h -t 1.406 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 215 -a 0 -S 0 -y {-1 -1} r -t 1.4076 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 213 -a 0 -S 0 -y {16 16} + -t 1.4076 -s 5 -d 4 -p ack -e 40 -c 0 -i 249 -a 0 -S 0 -y {16 16} - -t 1.4076 -s 5 -d 4 -p ack -e 40 -c 0 -i 249 -a 0 -S 0 -y {16 16} h -t 1.4076 -s 5 -d 4 -p ack -e 40 -c 0 -i 249 -a 0 -S 0 -y {-1 -1} r -t 1.408 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 243 -a 1 + -t 1.408 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 243 -a 1 d -t 1.408 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 243 -a 1 - -t 1.408 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 225 -a 0 -S 0 -y {22 22} h -t 1.408 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 225 -a 0 -S 0 -y {-1 -1} r -t 1.41 -s 3 -d 4 -p cbr -e 500 -c 1 -i 217 -a 1 + -t 1.41 -s 4 -d 6 -p cbr -e 500 -c 1 -i 217 -a 1 - -t 1.41 -s 4 -d 6 -p cbr -e 500 -c 1 -i 217 -a 1 h -t 1.41 -s 4 -d 6 -p cbr -e 500 -c 1 -i 217 -a 1 + -t 1.41 -s 1 -d 3 -p cbr -e 500 -c 1 -i 250 -a 1 - -t 1.41 -s 1 -d 3 -p cbr -e 500 -c 1 -i 250 -a 1 h -t 1.41 -s 1 -d 3 -p cbr -e 500 -c 1 -i 250 -a 1 r -t 1.414 -s 4 -d 6 -p cbr -e 500 -c 1 -i 211 -a 1 r -t 1.414 -s 1 -d 3 -p cbr -e 500 -c 1 -i 245 -a 1 + -t 1.414 -s 3 -d 4 -p cbr -e 500 -c 1 -i 245 -a 1 - -t 1.416 -s 3 -d 4 -p cbr -e 500 -c 1 -i 223 -a 1 h -t 1.416 -s 3 -d 4 -p cbr -e 500 -c 1 -i 223 -a 1 r -t 1.418 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 216 -a 1 + -t 1.418 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 216 -a 1 - -t 1.418 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 216 -a 1 h -t 1.418 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 216 -a 1 r -t 1.4196 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 214 -a 0 -S 0 -y {17 17} + -t 1.4196 -s 5 -d 4 -p ack -e 40 -c 0 -i 251 -a 0 -S 0 -y {17 17} - -t 1.4196 -s 5 -d 4 -p ack -e 40 -c 0 -i 251 -a 0 -S 0 -y {17 17} h -t 1.4196 -s 5 -d 4 -p ack -e 40 -c 0 -i 251 -a 0 -S 0 -y {-1 -1} r -t 1.41966 -s 5 -d 4 -p ack -e 40 -c 0 -i 246 -a 0 -S 0 -y {15 15} + -t 1.41966 -s 4 -d 3 -p ack -e 40 -c 0 -i 246 -a 0 -S 0 -y {15 15} - -t 1.41966 -s 4 -d 3 -p ack -e 40 -c 0 -i 246 -a 0 -S 0 -y {15 15} h -t 1.41966 -s 4 -d 3 -p ack -e 40 -c 0 -i 246 -a 0 -S 0 -y {-1 -1} + -t 1.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 252 -a 1 - -t 1.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 252 -a 1 h -t 1.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 252 -a 1 + -t 1.42 -s 1 -d 3 -p cbr -e 500 -c 1 -i 253 -a 1 - -t 1.42 -s 1 -d 3 -p cbr -e 500 -c 1 -i 253 -a 1 h -t 1.42 -s 1 -d 3 -p cbr -e 500 -c 1 -i 253 -a 1 - -t 1.42 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 228 -a 0 -S 0 -y {23 23} h -t 1.42 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 228 -a 0 -S 0 -y {-1 -1} r -t 1.422 -s 3 -d 4 -p cbr -e 500 -c 1 -i 218 -a 1 + -t 1.422 -s 4 -d 6 -p cbr -e 500 -c 1 -i 218 -a 1 - -t 1.422 -s 4 -d 6 -p cbr -e 500 -c 1 -i 218 -a 1 h -t 1.422 -s 4 -d 6 -p cbr -e 500 -c 1 -i 218 -a 1 r -t 1.424 -s 1 -d 3 -p cbr -e 500 -c 1 -i 248 -a 1 + -t 1.424 -s 3 -d 4 -p cbr -e 500 -c 1 -i 248 -a 1 r -t 1.4276 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 215 -a 0 -S 0 -y {18 18} + -t 1.4276 -s 5 -d 4 -p ack -e 40 -c 0 -i 254 -a 0 -S 0 -y {18 18} - -t 1.4276 -s 5 -d 4 -p ack -e 40 -c 0 -i 254 -a 0 -S 0 -y {18 18} h -t 1.4276 -s 5 -d 4 -p ack -e 40 -c 0 -i 254 -a 0 -S 0 -y {-1 -1} r -t 1.42766 -s 5 -d 4 -p ack -e 40 -c 0 -i 249 -a 0 -S 0 -y {16 16} + -t 1.42766 -s 4 -d 3 -p ack -e 40 -c 0 -i 249 -a 0 -S 0 -y {16 16} - -t 1.42766 -s 4 -d 3 -p ack -e 40 -c 0 -i 249 -a 0 -S 0 -y {16 16} h -t 1.42766 -s 4 -d 3 -p ack -e 40 -c 0 -i 249 -a 0 -S 0 -y {-1 -1} r -t 1.428 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 247 -a 1 + -t 1.428 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 247 -a 1 - -t 1.428 -s 3 -d 4 -p cbr -e 500 -c 1 -i 227 -a 1 h -t 1.428 -s 3 -d 4 -p cbr -e 500 -c 1 -i 227 -a 1 r -t 1.43 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 221 -a 0 -S 0 -y {19 19} + -t 1.43 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 221 -a 0 -S 0 -y {19 19} - -t 1.43 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 221 -a 0 -S 0 -y {19 19} h -t 1.43 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 221 -a 0 -S 0 -y {-1 -1} + -t 1.43 -s 1 -d 3 -p cbr -e 500 -c 1 -i 255 -a 1 - -t 1.43 -s 1 -d 3 -p cbr -e 500 -c 1 -i 255 -a 1 h -t 1.43 -s 1 -d 3 -p cbr -e 500 -c 1 -i 255 -a 1 - -t 1.432 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 229 -a 0 -S 0 -y {24 24} h -t 1.432 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 229 -a 0 -S 0 -y {-1 -1} r -t 1.434 -s 3 -d 4 -p cbr -e 500 -c 1 -i 220 -a 1 + -t 1.434 -s 4 -d 6 -p cbr -e 500 -c 1 -i 220 -a 1 - -t 1.434 -s 4 -d 6 -p cbr -e 500 -c 1 -i 220 -a 1 h -t 1.434 -s 4 -d 6 -p cbr -e 500 -c 1 -i 220 -a 1 r -t 1.434 -s 4 -d 6 -p cbr -e 500 -c 1 -i 217 -a 1 r -t 1.434 -s 1 -d 3 -p cbr -e 500 -c 1 -i 250 -a 1 + -t 1.434 -s 3 -d 4 -p cbr -e 500 -c 1 -i 250 -a 1 r -t 1.43966 -s 5 -d 4 -p ack -e 40 -c 0 -i 251 -a 0 -S 0 -y {17 17} + -t 1.43966 -s 4 -d 3 -p ack -e 40 -c 0 -i 251 -a 0 -S 0 -y {17 17} - -t 1.43966 -s 4 -d 3 -p ack -e 40 -c 0 -i 251 -a 0 -S 0 -y {17 17} h -t 1.43966 -s 4 -d 3 -p ack -e 40 -c 0 -i 251 -a 0 -S 0 -y {-1 -1} + -t 1.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 256 -a 1 - -t 1.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 256 -a 1 h -t 1.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 256 -a 1 + -t 1.44 -s 1 -d 3 -p cbr -e 500 -c 1 -i 257 -a 1 - -t 1.44 -s 1 -d 3 -p cbr -e 500 -c 1 -i 257 -a 1 h -t 1.44 -s 1 -d 3 -p cbr -e 500 -c 1 -i 257 -a 1 - -t 1.44 -s 3 -d 4 -p cbr -e 500 -c 1 -i 230 -a 1 h -t 1.44 -s 3 -d 4 -p cbr -e 500 -c 1 -i 230 -a 1 r -t 1.442 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 222 -a 0 -S 0 -y {20 20} + -t 1.442 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 222 -a 0 -S 0 -y {20 20} - -t 1.442 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 222 -a 0 -S 0 -y {20 20} h -t 1.442 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 222 -a 0 -S 0 -y {-1 -1} r -t 1.444 -s 1 -d 3 -p cbr -e 500 -c 1 -i 253 -a 1 + -t 1.444 -s 3 -d 4 -p cbr -e 500 -c 1 -i 253 -a 1 - -t 1.444 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 231 -a 0 -S 0 -y {25 25} h -t 1.444 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 231 -a 0 -S 0 -y {-1 -1} r -t 1.446 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 216 -a 1 r -t 1.446 -s 4 -d 6 -p cbr -e 500 -c 1 -i 218 -a 1 r -t 1.44766 -s 5 -d 4 -p ack -e 40 -c 0 -i 254 -a 0 -S 0 -y {18 18} + -t 1.44766 -s 4 -d 3 -p ack -e 40 -c 0 -i 254 -a 0 -S 0 -y {18 18} - -t 1.44766 -s 4 -d 3 -p ack -e 40 -c 0 -i 254 -a 0 -S 0 -y {18 18} h -t 1.44766 -s 4 -d 3 -p ack -e 40 -c 0 -i 254 -a 0 -S 0 -y {-1 -1} r -t 1.448 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 252 -a 1 + -t 1.448 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 252 -a 1 r -t 1.45 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 219 -a 1 + -t 1.45 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 219 -a 1 - -t 1.45 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 219 -a 1 h -t 1.45 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 219 -a 1 + -t 1.45 -s 1 -d 3 -p cbr -e 500 -c 1 -i 258 -a 1 - -t 1.45 -s 1 -d 3 -p cbr -e 500 -c 1 -i 258 -a 1 h -t 1.45 -s 1 -d 3 -p cbr -e 500 -c 1 -i 258 -a 1 r -t 1.4516 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 221 -a 0 -S 0 -y {19 19} + -t 1.4516 -s 5 -d 4 -p ack -e 40 -c 0 -i 259 -a 0 -S 0 -y {19 19} - -t 1.4516 -s 5 -d 4 -p ack -e 40 -c 0 -i 259 -a 0 -S 0 -y {19 19} h -t 1.4516 -s 5 -d 4 -p ack -e 40 -c 0 -i 259 -a 0 -S 0 -y {-1 -1} - -t 1.452 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 232 -a 0 -S 0 -y {26 26} h -t 1.452 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 232 -a 0 -S 0 -y {-1 -1} r -t 1.454 -s 1 -d 3 -p cbr -e 500 -c 1 -i 255 -a 1 + -t 1.454 -s 3 -d 4 -p cbr -e 500 -c 1 -i 255 -a 1 r -t 1.458 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 224 -a 0 -S 0 -y {21 21} + -t 1.458 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 224 -a 0 -S 0 -y {21 21} - -t 1.458 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 224 -a 0 -S 0 -y {21 21} h -t 1.458 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 224 -a 0 -S 0 -y {-1 -1} r -t 1.458 -s 4 -d 6 -p cbr -e 500 -c 1 -i 220 -a 1 + -t 1.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 260 -a 1 - -t 1.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 260 -a 1 h -t 1.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 260 -a 1 + -t 1.46 -s 1 -d 3 -p cbr -e 500 -c 1 -i 261 -a 1 - -t 1.46 -s 1 -d 3 -p cbr -e 500 -c 1 -i 261 -a 1 h -t 1.46 -s 1 -d 3 -p cbr -e 500 -c 1 -i 261 -a 1 - -t 1.46 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 236 -a 0 -S 0 -y {27 27} h -t 1.46 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 236 -a 0 -S 0 -y {-1 -1} r -t 1.4636 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 222 -a 0 -S 0 -y {20 20} + -t 1.4636 -s 5 -d 4 -p ack -e 40 -c 0 -i 262 -a 0 -S 0 -y {20 20} - -t 1.4636 -s 5 -d 4 -p ack -e 40 -c 0 -i 262 -a 0 -S 0 -y {20 20} h -t 1.4636 -s 5 -d 4 -p ack -e 40 -c 0 -i 262 -a 0 -S 0 -y {-1 -1} r -t 1.464 -s 1 -d 3 -p cbr -e 500 -c 1 -i 257 -a 1 + -t 1.464 -s 3 -d 4 -p cbr -e 500 -c 1 -i 257 -a 1 r -t 1.466 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 225 -a 0 -S 0 -y {22 22} + -t 1.466 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 225 -a 0 -S 0 -y {22 22} - -t 1.466 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 225 -a 0 -S 0 -y {22 22} h -t 1.466 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 225 -a 0 -S 0 -y {-1 -1} r -t 1.468 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 256 -a 1 + -t 1.468 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 256 -a 1 - -t 1.468 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 237 -a 0 -S 0 -y {28 28} h -t 1.468 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 237 -a 0 -S 0 -y {-1 -1} r -t 1.46998 -s 4 -d 3 -p ack -e 40 -c 0 -i 246 -a 0 -S 0 -y {15 15} + -t 1.46998 -s 3 -d 0 -p ack -e 40 -c 0 -i 246 -a 0 -S 0 -y {15 15} - -t 1.46998 -s 3 -d 0 -p ack -e 40 -c 0 -i 246 -a 0 -S 0 -f 0 -m 1 -y {15 15} h -t 1.46998 -s 3 -d 0 -p ack -e 40 -c 0 -i 246 -a 0 -S 0 -y {-1 -1} r -t 1.47 -s 3 -d 4 -p cbr -e 500 -c 1 -i 223 -a 1 + -t 1.47 -s 4 -d 6 -p cbr -e 500 -c 1 -i 223 -a 1 - -t 1.47 -s 4 -d 6 -p cbr -e 500 -c 1 -i 223 -a 1 h -t 1.47 -s 4 -d 6 -p cbr -e 500 -c 1 -i 223 -a 1 + -t 1.47 -s 1 -d 3 -p cbr -e 500 -c 1 -i 263 -a 1 - -t 1.47 -s 1 -d 3 -p cbr -e 500 -c 1 -i 263 -a 1 h -t 1.47 -s 1 -d 3 -p cbr -e 500 -c 1 -i 263 -a 1 r -t 1.47166 -s 5 -d 4 -p ack -e 40 -c 0 -i 259 -a 0 -S 0 -y {19 19} + -t 1.47166 -s 4 -d 3 -p ack -e 40 -c 0 -i 259 -a 0 -S 0 -y {19 19} - -t 1.47166 -s 4 -d 3 -p ack -e 40 -c 0 -i 259 -a 0 -S 0 -y {19 19} h -t 1.47166 -s 4 -d 3 -p ack -e 40 -c 0 -i 259 -a 0 -S 0 -y {-1 -1} r -t 1.474 -s 1 -d 3 -p cbr -e 500 -c 1 -i 258 -a 1 + -t 1.474 -s 3 -d 4 -p cbr -e 500 -c 1 -i 258 -a 1 - -t 1.476 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 239 -a 0 -S 0 -y {30 30} h -t 1.476 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 239 -a 0 -S 0 -y {-1 -1} r -t 1.47798 -s 4 -d 3 -p ack -e 40 -c 0 -i 249 -a 0 -S 0 -y {16 16} + -t 1.47798 -s 3 -d 0 -p ack -e 40 -c 0 -i 249 -a 0 -S 0 -y {16 16} - -t 1.47798 -s 3 -d 0 -p ack -e 40 -c 0 -i 249 -a 0 -S 0 -f 0 -m 1 -y {16 16} h -t 1.47798 -s 3 -d 0 -p ack -e 40 -c 0 -i 249 -a 0 -S 0 -y {-1 -1} r -t 1.478 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 228 -a 0 -S 0 -y {23 23} + -t 1.478 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 228 -a 0 -S 0 -y {23 23} - -t 1.478 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 228 -a 0 -S 0 -y {23 23} h -t 1.478 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 228 -a 0 -S 0 -y {-1 -1} r -t 1.478 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 219 -a 1 r -t 1.4796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 224 -a 0 -S 0 -y {21 21} + -t 1.4796 -s 5 -d 4 -p ack -e 40 -c 0 -i 264 -a 0 -S 0 -y {21 21} - -t 1.4796 -s 5 -d 4 -p ack -e 40 -c 0 -i 264 -a 0 -S 0 -y {21 21} h -t 1.4796 -s 5 -d 4 -p ack -e 40 -c 0 -i 264 -a 0 -S 0 -y {-1 -1} + -t 1.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 265 -a 1 - -t 1.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 265 -a 1 h -t 1.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 265 -a 1 + -t 1.48 -s 1 -d 3 -p cbr -e 500 -c 1 -i 266 -a 1 - -t 1.48 -s 1 -d 3 -p cbr -e 500 -c 1 -i 266 -a 1 h -t 1.48 -s 1 -d 3 -p cbr -e 500 -c 1 -i 266 -a 1 r -t 1.482 -s 3 -d 4 -p cbr -e 500 -c 1 -i 227 -a 1 + -t 1.482 -s 4 -d 6 -p cbr -e 500 -c 1 -i 227 -a 1 - -t 1.482 -s 4 -d 6 -p cbr -e 500 -c 1 -i 227 -a 1 h -t 1.482 -s 4 -d 6 -p cbr -e 500 -c 1 -i 227 -a 1 r -t 1.48366 -s 5 -d 4 -p ack -e 40 -c 0 -i 262 -a 0 -S 0 -y {20 20} + -t 1.48366 -s 4 -d 3 -p ack -e 40 -c 0 -i 262 -a 0 -S 0 -y {20 20} - -t 1.48366 -s 4 -d 3 -p ack -e 40 -c 0 -i 262 -a 0 -S 0 -y {20 20} h -t 1.48366 -s 4 -d 3 -p ack -e 40 -c 0 -i 262 -a 0 -S 0 -y {-1 -1} r -t 1.484 -s 1 -d 3 -p cbr -e 500 -c 1 -i 261 -a 1 + -t 1.484 -s 3 -d 4 -p cbr -e 500 -c 1 -i 261 -a 1 - -t 1.484 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 240 -a 1 h -t 1.484 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 240 -a 1 r -t 1.4876 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 225 -a 0 -S 0 -y {22 22} + -t 1.4876 -s 5 -d 4 -p ack -e 40 -c 0 -i 267 -a 0 -S 0 -y {22 22} - -t 1.4876 -s 5 -d 4 -p ack -e 40 -c 0 -i 267 -a 0 -S 0 -y {22 22} h -t 1.4876 -s 5 -d 4 -p ack -e 40 -c 0 -i 267 -a 0 -S 0 -y {-1 -1} r -t 1.488 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 260 -a 1 + -t 1.488 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 260 -a 1 r -t 1.48998 -s 4 -d 3 -p ack -e 40 -c 0 -i 251 -a 0 -S 0 -y {17 17} + -t 1.48998 -s 3 -d 0 -p ack -e 40 -c 0 -i 251 -a 0 -S 0 -y {17 17} - -t 1.48998 -s 3 -d 0 -p ack -e 40 -c 0 -i 251 -a 0 -S 0 -f 0 -m 1 -y {17 17} h -t 1.48998 -s 3 -d 0 -p ack -e 40 -c 0 -i 251 -a 0 -S 0 -y {-1 -1} r -t 1.49 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 229 -a 0 -S 0 -y {24 24} + -t 1.49 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 229 -a 0 -S 0 -y {24 24} - -t 1.49 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 229 -a 0 -S 0 -y {24 24} h -t 1.49 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 229 -a 0 -S 0 -y {-1 -1} + -t 1.49 -s 1 -d 3 -p cbr -e 500 -c 1 -i 268 -a 1 - -t 1.49 -s 1 -d 3 -p cbr -e 500 -c 1 -i 268 -a 1 h -t 1.49 -s 1 -d 3 -p cbr -e 500 -c 1 -i 268 -a 1 r -t 1.49005 -s 3 -d 0 -p ack -e 40 -c 0 -i 246 -a 0 -S 0 -y {15 15} f -t 1.49004800000000115 -s 0 -d 5 -n cwnd_ -a tcp -v 17.000000 -o 16.000000 -T v + -t 1.49005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 269 -a 0 -S 0 -f 0 -m 0 -y {31 31} - -t 1.49005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 269 -a 0 -S 0 -y {31 31} h -t 1.49005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 269 -a 0 -S 0 -y {-1 -1} + -t 1.49005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 270 -a 0 -S 0 -f 0 -m 0 -y {32 32} - -t 1.49165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 270 -a 0 -S 0 -y {32 32} h -t 1.49165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 270 -a 0 -S 0 -y {-1 -1} - -t 1.492 -s 3 -d 4 -p cbr -e 500 -c 1 -i 242 -a 1 h -t 1.492 -s 3 -d 4 -p cbr -e 500 -c 1 -i 242 -a 1 r -t 1.494 -s 3 -d 4 -p cbr -e 500 -c 1 -i 230 -a 1 + -t 1.494 -s 4 -d 6 -p cbr -e 500 -c 1 -i 230 -a 1 - -t 1.494 -s 4 -d 6 -p cbr -e 500 -c 1 -i 230 -a 1 h -t 1.494 -s 4 -d 6 -p cbr -e 500 -c 1 -i 230 -a 1 r -t 1.494 -s 4 -d 6 -p cbr -e 500 -c 1 -i 223 -a 1 r -t 1.494 -s 1 -d 3 -p cbr -e 500 -c 1 -i 263 -a 1 + -t 1.494 -s 3 -d 4 -p cbr -e 500 -c 1 -i 263 -a 1 - -t 1.496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 244 -a 1 h -t 1.496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 244 -a 1 r -t 1.49798 -s 4 -d 3 -p ack -e 40 -c 0 -i 254 -a 0 -S 0 -y {18 18} + -t 1.49798 -s 3 -d 0 -p ack -e 40 -c 0 -i 254 -a 0 -S 0 -y {18 18} - -t 1.49798 -s 3 -d 0 -p ack -e 40 -c 0 -i 254 -a 0 -S 0 -f 0 -m 1 -y {18 18} h -t 1.49798 -s 3 -d 0 -p ack -e 40 -c 0 -i 254 -a 0 -S 0 -y {-1 -1} r -t 1.49805 -s 3 -d 0 -p ack -e 40 -c 0 -i 249 -a 0 -S 0 -y {16 16} f -t 1.49804800000000116 -s 0 -d 5 -n cwnd_ -a tcp -v 18.000000 -o 17.000000 -T v + -t 1.49805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 271 -a 0 -S 0 -f 0 -m 0 -y {33 33} - -t 1.49805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 271 -a 0 -S 0 -y {33 33} h -t 1.49805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 271 -a 0 -S 0 -y {-1 -1} + -t 1.49805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 272 -a 0 -S 0 -f 0 -m 0 -y {34 34} r -t 1.4996 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 228 -a 0 -S 0 -y {23 23} + -t 1.4996 -s 5 -d 4 -p ack -e 40 -c 0 -i 273 -a 0 -S 0 -y {23 23} - -t 1.4996 -s 5 -d 4 -p ack -e 40 -c 0 -i 273 -a 0 -S 0 -y {23 23} h -t 1.4996 -s 5 -d 4 -p ack -e 40 -c 0 -i 273 -a 0 -S 0 -y {-1 -1} - -t 1.49965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 272 -a 0 -S 0 -y {34 34} h -t 1.49965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 272 -a 0 -S 0 -y {-1 -1} r -t 1.49966 -s 5 -d 4 -p ack -e 40 -c 0 -i 264 -a 0 -S 0 -y {21 21} + -t 1.49966 -s 4 -d 3 -p ack -e 40 -c 0 -i 264 -a 0 -S 0 -y {21 21} - -t 1.49966 -s 4 -d 3 -p ack -e 40 -c 0 -i 264 -a 0 -S 0 -y {21 21} h -t 1.49966 -s 4 -d 3 -p ack -e 40 -c 0 -i 264 -a 0 -S 0 -y {-1 -1} + -t 1.5 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 274 -a 1 - -t 1.5 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 274 -a 1 h -t 1.5 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 274 -a 1 + -t 1.5 -s 1 -d 3 -p cbr -e 500 -c 1 -i 275 -a 1 - -t 1.5 -s 1 -d 3 -p cbr -e 500 -c 1 -i 275 -a 1 h -t 1.5 -s 1 -d 3 -p cbr -e 500 -c 1 -i 275 -a 1 - -t 1.5 -s 3 -d 4 -p cbr -e 500 -c 1 -i 245 -a 1 h -t 1.5 -s 3 -d 4 -p cbr -e 500 -c 1 -i 245 -a 1 r -t 1.502 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 231 -a 0 -S 0 -y {25 25} + -t 1.502 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 231 -a 0 -S 0 -y {25 25} - -t 1.502 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 231 -a 0 -S 0 -y {25 25} h -t 1.502 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 231 -a 0 -S 0 -y {-1 -1} r -t 1.504 -s 1 -d 3 -p cbr -e 500 -c 1 -i 266 -a 1 + -t 1.504 -s 3 -d 4 -p cbr -e 500 -c 1 -i 266 -a 1 - -t 1.504 -s 3 -d 4 -p cbr -e 500 -c 1 -i 248 -a 1 h -t 1.504 -s 3 -d 4 -p cbr -e 500 -c 1 -i 248 -a 1 r -t 1.506 -s 4 -d 6 -p cbr -e 500 -c 1 -i 227 -a 1 r -t 1.50766 -s 5 -d 4 -p ack -e 40 -c 0 -i 267 -a 0 -S 0 -y {22 22} + -t 1.50766 -s 4 -d 3 -p ack -e 40 -c 0 -i 267 -a 0 -S 0 -y {22 22} - -t 1.50766 -s 4 -d 3 -p ack -e 40 -c 0 -i 267 -a 0 -S 0 -y {22 22} h -t 1.50766 -s 4 -d 3 -p ack -e 40 -c 0 -i 267 -a 0 -S 0 -y {-1 -1} r -t 1.508 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 265 -a 1 + -t 1.508 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 265 -a 1 - -t 1.508 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 247 -a 1 h -t 1.508 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 247 -a 1 r -t 1.51 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 232 -a 0 -S 0 -y {26 26} + -t 1.51 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 232 -a 0 -S 0 -y {26 26} - -t 1.51 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 232 -a 0 -S 0 -y {26 26} h -t 1.51 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 232 -a 0 -S 0 -y {-1 -1} + -t 1.51 -s 1 -d 3 -p cbr -e 500 -c 1 -i 276 -a 1 - -t 1.51 -s 1 -d 3 -p cbr -e 500 -c 1 -i 276 -a 1 h -t 1.51 -s 1 -d 3 -p cbr -e 500 -c 1 -i 276 -a 1 r -t 1.51005 -s 3 -d 0 -p ack -e 40 -c 0 -i 251 -a 0 -S 0 -y {17 17} f -t 1.51004800000000117 -s 0 -d 5 -n cwnd_ -a tcp -v 19.000000 -o 18.000000 -T v + -t 1.51005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 277 -a 0 -S 0 -f 0 -m 0 -y {35 35} - -t 1.51005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 277 -a 0 -S 0 -y {35 35} h -t 1.51005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 277 -a 0 -S 0 -y {-1 -1} + -t 1.51005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 278 -a 0 -S 0 -f 0 -m 0 -y {36 36} r -t 1.5116 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 229 -a 0 -S 0 -y {24 24} + -t 1.5116 -s 5 -d 4 -p ack -e 40 -c 0 -i 279 -a 0 -S 0 -y {24 24} - -t 1.5116 -s 5 -d 4 -p ack -e 40 -c 0 -i 279 -a 0 -S 0 -y {24 24} h -t 1.5116 -s 5 -d 4 -p ack -e 40 -c 0 -i 279 -a 0 -S 0 -y {-1 -1} r -t 1.51165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 269 -a 0 -S 0 -y {31 31} + -t 1.51165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 269 -a 0 -S 0 -y {31 31} - -t 1.51165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 278 -a 0 -S 0 -y {36 36} h -t 1.51165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 278 -a 0 -S 0 -y {-1 -1} r -t 1.51325 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 270 -a 0 -S 0 -y {32 32} + -t 1.51325 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 270 -a 0 -S 0 -y {32 32} r -t 1.514 -s 1 -d 3 -p cbr -e 500 -c 1 -i 268 -a 1 + -t 1.514 -s 3 -d 4 -p cbr -e 500 -c 1 -i 268 -a 1 d -t 1.514 -s 3 -d 4 -p cbr -e 500 -c 1 -i 268 -a 1 - -t 1.516 -s 3 -d 4 -p cbr -e 500 -c 1 -i 250 -a 1 h -t 1.516 -s 3 -d 4 -p cbr -e 500 -c 1 -i 250 -a 1 r -t 1.518 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 236 -a 0 -S 0 -y {27 27} + -t 1.518 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 236 -a 0 -S 0 -y {27 27} - -t 1.518 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 236 -a 0 -S 0 -y {27 27} h -t 1.518 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 236 -a 0 -S 0 -y {-1 -1} r -t 1.518 -s 4 -d 6 -p cbr -e 500 -c 1 -i 230 -a 1 r -t 1.51805 -s 3 -d 0 -p ack -e 40 -c 0 -i 254 -a 0 -S 0 -y {18 18} f -t 1.51804800000000117 -s 0 -d 5 -n cwnd_ -a tcp -v 20.000000 -o 19.000000 -T v + -t 1.51805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 280 -a 0 -S 0 -f 0 -m 0 -y {37 37} - -t 1.51805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 280 -a 0 -S 0 -y {37 37} h -t 1.51805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 280 -a 0 -S 0 -y {-1 -1} + -t 1.51805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 281 -a 0 -S 0 -f 0 -m 0 -y {38 38} r -t 1.51965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 271 -a 0 -S 0 -y {33 33} + -t 1.51965 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 271 -a 0 -S 0 -y {33 33} - -t 1.51965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 281 -a 0 -S 0 -y {38 38} h -t 1.51965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 281 -a 0 -S 0 -y {-1 -1} r -t 1.51966 -s 5 -d 4 -p ack -e 40 -c 0 -i 273 -a 0 -S 0 -y {23 23} + -t 1.51966 -s 4 -d 3 -p ack -e 40 -c 0 -i 273 -a 0 -S 0 -y {23 23} - -t 1.51966 -s 4 -d 3 -p ack -e 40 -c 0 -i 273 -a 0 -S 0 -y {23 23} h -t 1.51966 -s 4 -d 3 -p ack -e 40 -c 0 -i 273 -a 0 -S 0 -y {-1 -1} + -t 1.52 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 282 -a 1 - -t 1.52 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 282 -a 1 h -t 1.52 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 282 -a 1 + -t 1.52 -s 1 -d 3 -p cbr -e 500 -c 1 -i 283 -a 1 - -t 1.52 -s 1 -d 3 -p cbr -e 500 -c 1 -i 283 -a 1 h -t 1.52 -s 1 -d 3 -p cbr -e 500 -c 1 -i 283 -a 1 - -t 1.52 -s 3 -d 4 -p cbr -e 500 -c 1 -i 253 -a 1 h -t 1.52 -s 3 -d 4 -p cbr -e 500 -c 1 -i 253 -a 1 r -t 1.52125 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 272 -a 0 -S 0 -y {34 34} + -t 1.52125 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 272 -a 0 -S 0 -y {34 34} r -t 1.52198 -s 4 -d 3 -p ack -e 40 -c 0 -i 259 -a 0 -S 0 -y {19 19} + -t 1.52198 -s 3 -d 0 -p ack -e 40 -c 0 -i 259 -a 0 -S 0 -y {19 19} - -t 1.52198 -s 3 -d 0 -p ack -e 40 -c 0 -i 259 -a 0 -S 0 -f 0 -m 1 -y {19 19} h -t 1.52198 -s 3 -d 0 -p ack -e 40 -c 0 -i 259 -a 0 -S 0 -y {-1 -1} r -t 1.5236 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 231 -a 0 -S 0 -y {25 25} + -t 1.5236 -s 5 -d 4 -p ack -e 40 -c 0 -i 284 -a 0 -S 0 -y {25 25} - -t 1.5236 -s 5 -d 4 -p ack -e 40 -c 0 -i 284 -a 0 -S 0 -y {25 25} h -t 1.5236 -s 5 -d 4 -p ack -e 40 -c 0 -i 284 -a 0 -S 0 -y {-1 -1} r -t 1.524 -s 1 -d 3 -p cbr -e 500 -c 1 -i 275 -a 1 + -t 1.524 -s 3 -d 4 -p cbr -e 500 -c 1 -i 275 -a 1 d -t 1.524 -s 3 -d 4 -p cbr -e 500 -c 1 -i 275 -a 1 - -t 1.524 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 252 -a 1 h -t 1.524 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 252 -a 1 r -t 1.526 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 237 -a 0 -S 0 -y {28 28} + -t 1.526 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 237 -a 0 -S 0 -y {28 28} - -t 1.526 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 237 -a 0 -S 0 -y {28 28} h -t 1.526 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 237 -a 0 -S 0 -y {-1 -1} r -t 1.528 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 274 -a 1 + -t 1.528 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 274 -a 1 + -t 1.53 -s 1 -d 3 -p cbr -e 500 -c 1 -i 285 -a 1 - -t 1.53 -s 1 -d 3 -p cbr -e 500 -c 1 -i 285 -a 1 h -t 1.53 -s 1 -d 3 -p cbr -e 500 -c 1 -i 285 -a 1 r -t 1.5316 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 232 -a 0 -S 0 -y {26 26} + -t 1.5316 -s 5 -d 4 -p ack -e 40 -c 0 -i 286 -a 0 -S 0 -y {26 26} - -t 1.5316 -s 5 -d 4 -p ack -e 40 -c 0 -i 286 -a 0 -S 0 -y {26 26} h -t 1.5316 -s 5 -d 4 -p ack -e 40 -c 0 -i 286 -a 0 -S 0 -y {-1 -1} r -t 1.53165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 277 -a 0 -S 0 -y {35 35} + -t 1.53165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 277 -a 0 -S 0 -y {35 35} d -t 1.53165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 277 -a 0 -S 0 -y {35 35} r -t 1.53166 -s 5 -d 4 -p ack -e 40 -c 0 -i 279 -a 0 -S 0 -y {24 24} + -t 1.53166 -s 4 -d 3 -p ack -e 40 -c 0 -i 279 -a 0 -S 0 -y {24 24} - -t 1.53166 -s 4 -d 3 -p ack -e 40 -c 0 -i 279 -a 0 -S 0 -y {24 24} h -t 1.53166 -s 4 -d 3 -p ack -e 40 -c 0 -i 279 -a 0 -S 0 -y {-1 -1} - -t 1.532 -s 3 -d 4 -p cbr -e 500 -c 1 -i 255 -a 1 h -t 1.532 -s 3 -d 4 -p cbr -e 500 -c 1 -i 255 -a 1 r -t 1.53325 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 278 -a 0 -S 0 -y {36 36} + -t 1.53325 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 278 -a 0 -S 0 -y {36 36} r -t 1.53398 -s 4 -d 3 -p ack -e 40 -c 0 -i 262 -a 0 -S 0 -y {20 20} + -t 1.53398 -s 3 -d 0 -p ack -e 40 -c 0 -i 262 -a 0 -S 0 -y {20 20} - -t 1.53398 -s 3 -d 0 -p ack -e 40 -c 0 -i 262 -a 0 -S 0 -f 0 -m 1 -y {20 20} h -t 1.53398 -s 3 -d 0 -p ack -e 40 -c 0 -i 262 -a 0 -S 0 -y {-1 -1} r -t 1.534 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 239 -a 0 -S 0 -y {30 30} + -t 1.534 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 239 -a 0 -S 0 -y {30 30} - -t 1.534 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 239 -a 0 -S 0 -y {30 30} h -t 1.534 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 239 -a 0 -S 0 -y {-1 -1} r -t 1.534 -s 1 -d 3 -p cbr -e 500 -c 1 -i 276 -a 1 + -t 1.534 -s 3 -d 4 -p cbr -e 500 -c 1 -i 276 -a 1 d -t 1.534 -s 3 -d 4 -p cbr -e 500 -c 1 -i 276 -a 1 - -t 1.536 -s 3 -d 4 -p cbr -e 500 -c 1 -i 257 -a 1 h -t 1.536 -s 3 -d 4 -p cbr -e 500 -c 1 -i 257 -a 1 r -t 1.5396 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 236 -a 0 -S 0 -y {27 27} + -t 1.5396 -s 5 -d 4 -p ack -e 40 -c 0 -i 287 -a 0 -S 0 -y {27 27} - -t 1.5396 -s 5 -d 4 -p ack -e 40 -c 0 -i 287 -a 0 -S 0 -y {27 27} h -t 1.5396 -s 5 -d 4 -p ack -e 40 -c 0 -i 287 -a 0 -S 0 -y {-1 -1} r -t 1.53965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 280 -a 0 -S 0 -y {37 37} + -t 1.53965 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 280 -a 0 -S 0 -y {37 37} + -t 1.54 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 288 -a 1 - -t 1.54 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 288 -a 1 h -t 1.54 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 288 -a 1 + -t 1.54 -s 1 -d 3 -p cbr -e 500 -c 1 -i 289 -a 1 - -t 1.54 -s 1 -d 3 -p cbr -e 500 -c 1 -i 289 -a 1 h -t 1.54 -s 1 -d 3 -p cbr -e 500 -c 1 -i 289 -a 1 - -t 1.54 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 256 -a 1 h -t 1.54 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 256 -a 1 r -t 1.54125 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 281 -a 0 -S 0 -y {38 38} + -t 1.54125 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 281 -a 0 -S 0 -y {38 38} r -t 1.542 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 240 -a 1 + -t 1.542 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 240 -a 1 - -t 1.542 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 240 -a 1 h -t 1.542 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 240 -a 1 r -t 1.54205 -s 3 -d 0 -p ack -e 40 -c 0 -i 259 -a 0 -S 0 -y {19 19} f -t 1.54204800000000120 -s 0 -d 5 -n cwnd_ -a tcp -v 20.050000 -o 20.000000 -T v + -t 1.54205 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 290 -a 0 -S 0 -f 0 -m 0 -y {39 39} - -t 1.54205 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 290 -a 0 -S 0 -y {39 39} h -t 1.54205 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 290 -a 0 -S 0 -y {-1 -1} r -t 1.54366 -s 5 -d 4 -p ack -e 40 -c 0 -i 284 -a 0 -S 0 -y {25 25} + -t 1.54366 -s 4 -d 3 -p ack -e 40 -c 0 -i 284 -a 0 -S 0 -y {25 25} - -t 1.54366 -s 4 -d 3 -p ack -e 40 -c 0 -i 284 -a 0 -S 0 -y {25 25} h -t 1.54366 -s 4 -d 3 -p ack -e 40 -c 0 -i 284 -a 0 -S 0 -y {-1 -1} r -t 1.544 -s 1 -d 3 -p cbr -e 500 -c 1 -i 283 -a 1 + -t 1.544 -s 3 -d 4 -p cbr -e 500 -c 1 -i 283 -a 1 d -t 1.544 -s 3 -d 4 -p cbr -e 500 -c 1 -i 283 -a 1 r -t 1.546 -s 3 -d 4 -p cbr -e 500 -c 1 -i 242 -a 1 + -t 1.546 -s 4 -d 6 -p cbr -e 500 -c 1 -i 242 -a 1 - -t 1.546 -s 4 -d 6 -p cbr -e 500 -c 1 -i 242 -a 1 h -t 1.546 -s 4 -d 6 -p cbr -e 500 -c 1 -i 242 -a 1 r -t 1.5476 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 237 -a 0 -S 0 -y {28 28} + -t 1.5476 -s 5 -d 4 -p ack -e 40 -c 0 -i 291 -a 0 -S 0 -y {28 28} - -t 1.5476 -s 5 -d 4 -p ack -e 40 -c 0 -i 291 -a 0 -S 0 -y {28 28} h -t 1.5476 -s 5 -d 4 -p ack -e 40 -c 0 -i 291 -a 0 -S 0 -y {-1 -1} r -t 1.548 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 282 -a 1 + -t 1.548 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 282 -a 1 d -t 1.548 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 282 -a 1 - -t 1.548 -s 3 -d 4 -p cbr -e 500 -c 1 -i 258 -a 1 h -t 1.548 -s 3 -d 4 -p cbr -e 500 -c 1 -i 258 -a 1 r -t 1.54998 -s 4 -d 3 -p ack -e 40 -c 0 -i 264 -a 0 -S 0 -y {21 21} + -t 1.54998 -s 3 -d 0 -p ack -e 40 -c 0 -i 264 -a 0 -S 0 -y {21 21} - -t 1.54998 -s 3 -d 0 -p ack -e 40 -c 0 -i 264 -a 0 -S 0 -f 0 -m 1 -y {21 21} h -t 1.54998 -s 3 -d 0 -p ack -e 40 -c 0 -i 264 -a 0 -S 0 -y {-1 -1} r -t 1.55 -s 3 -d 4 -p cbr -e 500 -c 1 -i 244 -a 1 + -t 1.55 -s 4 -d 6 -p cbr -e 500 -c 1 -i 244 -a 1 + -t 1.55 -s 1 -d 3 -p cbr -e 500 -c 1 -i 292 -a 1 - -t 1.55 -s 1 -d 3 -p cbr -e 500 -c 1 -i 292 -a 1 h -t 1.55 -s 1 -d 3 -p cbr -e 500 -c 1 -i 292 -a 1 - -t 1.55 -s 4 -d 6 -p cbr -e 500 -c 1 -i 244 -a 1 h -t 1.55 -s 4 -d 6 -p cbr -e 500 -c 1 -i 244 -a 1 r -t 1.55166 -s 5 -d 4 -p ack -e 40 -c 0 -i 286 -a 0 -S 0 -y {26 26} + -t 1.55166 -s 4 -d 3 -p ack -e 40 -c 0 -i 286 -a 0 -S 0 -y {26 26} - -t 1.55166 -s 4 -d 3 -p ack -e 40 -c 0 -i 286 -a 0 -S 0 -y {26 26} h -t 1.55166 -s 4 -d 3 -p ack -e 40 -c 0 -i 286 -a 0 -S 0 -y {-1 -1} - -t 1.552 -s 3 -d 4 -p cbr -e 500 -c 1 -i 261 -a 1 h -t 1.552 -s 3 -d 4 -p cbr -e 500 -c 1 -i 261 -a 1 r -t 1.554 -s 3 -d 4 -p cbr -e 500 -c 1 -i 245 -a 1 + -t 1.554 -s 4 -d 6 -p cbr -e 500 -c 1 -i 245 -a 1 r -t 1.554 -s 1 -d 3 -p cbr -e 500 -c 1 -i 285 -a 1 + -t 1.554 -s 3 -d 4 -p cbr -e 500 -c 1 -i 285 -a 1 - -t 1.554 -s 4 -d 6 -p cbr -e 500 -c 1 -i 245 -a 1 h -t 1.554 -s 4 -d 6 -p cbr -e 500 -c 1 -i 245 -a 1 r -t 1.55405 -s 3 -d 0 -p ack -e 40 -c 0 -i 262 -a 0 -S 0 -y {20 20} f -t 1.55404800000000121 -s 0 -d 5 -n cwnd_ -a tcp -v 20.099875 -o 20.050000 -T v + -t 1.55405 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 293 -a 0 -S 0 -f 0 -m 0 -y {40 40} - -t 1.55405 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 293 -a 0 -S 0 -y {40 40} h -t 1.55405 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 293 -a 0 -S 0 -y {-1 -1} r -t 1.5556 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 239 -a 0 -S 0 -y {30 30} + -t 1.5556 -s 5 -d 4 -p ack -e 40 -c 0 -i 294 -a 0 -S 0 -y {28 28} - -t 1.5556 -s 5 -d 4 -p ack -e 40 -c 0 -i 294 -a 0 -S 0 -y {28 28} h -t 1.5556 -s 5 -d 4 -p ack -e 40 -c 0 -i 294 -a 0 -S 0 -y {-1 -1} - -t 1.556 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 260 -a 1 h -t 1.556 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 260 -a 1 r -t 1.55798 -s 4 -d 3 -p ack -e 40 -c 0 -i 267 -a 0 -S 0 -y {22 22} + -t 1.55798 -s 3 -d 0 -p ack -e 40 -c 0 -i 267 -a 0 -S 0 -y {22 22} - -t 1.55798 -s 3 -d 0 -p ack -e 40 -c 0 -i 267 -a 0 -S 0 -f 0 -m 1 -y {22 22} h -t 1.55798 -s 3 -d 0 -p ack -e 40 -c 0 -i 267 -a 0 -S 0 -y {-1 -1} r -t 1.558 -s 3 -d 4 -p cbr -e 500 -c 1 -i 248 -a 1 + -t 1.558 -s 4 -d 6 -p cbr -e 500 -c 1 -i 248 -a 1 - -t 1.558 -s 4 -d 6 -p cbr -e 500 -c 1 -i 248 -a 1 h -t 1.558 -s 4 -d 6 -p cbr -e 500 -c 1 -i 248 -a 1 r -t 1.55966 -s 5 -d 4 -p ack -e 40 -c 0 -i 287 -a 0 -S 0 -y {27 27} + -t 1.55966 -s 4 -d 3 -p ack -e 40 -c 0 -i 287 -a 0 -S 0 -y {27 27} - -t 1.55966 -s 4 -d 3 -p ack -e 40 -c 0 -i 287 -a 0 -S 0 -y {27 27} h -t 1.55966 -s 4 -d 3 -p ack -e 40 -c 0 -i 287 -a 0 -S 0 -y {-1 -1} + -t 1.56 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 295 -a 1 - -t 1.56 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 295 -a 1 h -t 1.56 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 295 -a 1 + -t 1.56 -s 1 -d 3 -p cbr -e 500 -c 1 -i 296 -a 1 - -t 1.56 -s 1 -d 3 -p cbr -e 500 -c 1 -i 296 -a 1 h -t 1.56 -s 1 -d 3 -p cbr -e 500 -c 1 -i 296 -a 1 r -t 1.56365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 290 -a 0 -S 0 -y {39 39} + -t 1.56365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 290 -a 0 -S 0 -y {39 39} r -t 1.564 -s 1 -d 3 -p cbr -e 500 -c 1 -i 289 -a 1 + -t 1.564 -s 3 -d 4 -p cbr -e 500 -c 1 -i 289 -a 1 - -t 1.564 -s 3 -d 4 -p cbr -e 500 -c 1 -i 263 -a 1 h -t 1.564 -s 3 -d 4 -p cbr -e 500 -c 1 -i 263 -a 1 r -t 1.566 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 247 -a 1 + -t 1.566 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 247 -a 1 - -t 1.566 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 247 -a 1 h -t 1.566 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 247 -a 1 r -t 1.56766 -s 5 -d 4 -p ack -e 40 -c 0 -i 291 -a 0 -S 0 -y {28 28} + -t 1.56766 -s 4 -d 3 -p ack -e 40 -c 0 -i 291 -a 0 -S 0 -y {28 28} - -t 1.56766 -s 4 -d 3 -p ack -e 40 -c 0 -i 291 -a 0 -S 0 -y {28 28} h -t 1.56766 -s 4 -d 3 -p ack -e 40 -c 0 -i 291 -a 0 -S 0 -y {-1 -1} r -t 1.568 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 288 -a 1 + -t 1.568 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 288 -a 1 - -t 1.568 -s 3 -d 4 -p cbr -e 500 -c 1 -i 266 -a 1 h -t 1.568 -s 3 -d 4 -p cbr -e 500 -c 1 -i 266 -a 1 r -t 1.56998 -s 4 -d 3 -p ack -e 40 -c 0 -i 273 -a 0 -S 0 -y {23 23} + -t 1.56998 -s 3 -d 0 -p ack -e 40 -c 0 -i 273 -a 0 -S 0 -y {23 23} - -t 1.56998 -s 3 -d 0 -p ack -e 40 -c 0 -i 273 -a 0 -S 0 -f 0 -m 1 -y {23 23} h -t 1.56998 -s 3 -d 0 -p ack -e 40 -c 0 -i 273 -a 0 -S 0 -y {-1 -1} r -t 1.57 -s 3 -d 4 -p cbr -e 500 -c 1 -i 250 -a 1 + -t 1.57 -s 4 -d 6 -p cbr -e 500 -c 1 -i 250 -a 1 - -t 1.57 -s 4 -d 6 -p cbr -e 500 -c 1 -i 250 -a 1 h -t 1.57 -s 4 -d 6 -p cbr -e 500 -c 1 -i 250 -a 1 r -t 1.57 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 240 -a 1 r -t 1.57 -s 4 -d 6 -p cbr -e 500 -c 1 -i 242 -a 1 + -t 1.57 -s 1 -d 3 -p cbr -e 500 -c 1 -i 297 -a 1 - -t 1.57 -s 1 -d 3 -p cbr -e 500 -c 1 -i 297 -a 1 h -t 1.57 -s 1 -d 3 -p cbr -e 500 -c 1 -i 297 -a 1 r -t 1.57005 -s 3 -d 0 -p ack -e 40 -c 0 -i 264 -a 0 -S 0 -y {21 21} f -t 1.57004800000000122 -s 0 -d 5 -n cwnd_ -a tcp -v 20.149627 -o 20.099875 -T v + -t 1.57005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 298 -a 0 -S 0 -f 0 -m 0 -y {41 41} - -t 1.57005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 298 -a 0 -S 0 -y {41 41} h -t 1.57005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 298 -a 0 -S 0 -y {-1 -1} - -t 1.572 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 265 -a 1 h -t 1.572 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 265 -a 1 r -t 1.574 -s 3 -d 4 -p cbr -e 500 -c 1 -i 253 -a 1 + -t 1.574 -s 4 -d 6 -p cbr -e 500 -c 1 -i 253 -a 1 r -t 1.574 -s 1 -d 3 -p cbr -e 500 -c 1 -i 292 -a 1 + -t 1.574 -s 3 -d 4 -p cbr -e 500 -c 1 -i 292 -a 1 r -t 1.574 -s 4 -d 6 -p cbr -e 500 -c 1 -i 244 -a 1 - -t 1.574 -s 4 -d 6 -p cbr -e 500 -c 1 -i 253 -a 1 h -t 1.574 -s 4 -d 6 -p cbr -e 500 -c 1 -i 253 -a 1 r -t 1.57565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 293 -a 0 -S 0 -y {40 40} + -t 1.57565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 293 -a 0 -S 0 -y {40 40} r -t 1.57566 -s 5 -d 4 -p ack -e 40 -c 0 -i 294 -a 0 -S 0 -y {28 28} + -t 1.57566 -s 4 -d 3 -p ack -e 40 -c 0 -i 294 -a 0 -S 0 -y {28 28} - -t 1.57566 -s 4 -d 3 -p ack -e 40 -c 0 -i 294 -a 0 -S 0 -y {28 28} h -t 1.57566 -s 4 -d 3 -p ack -e 40 -c 0 -i 294 -a 0 -S 0 -y {-1 -1} r -t 1.578 -s 4 -d 6 -p cbr -e 500 -c 1 -i 245 -a 1 r -t 1.57805 -s 3 -d 0 -p ack -e 40 -c 0 -i 267 -a 0 -S 0 -y {22 22} f -t 1.57804800000000123 -s 0 -d 5 -n cwnd_ -a tcp -v 20.199256 -o 20.149627 -T v + -t 1.57805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 299 -a 0 -S 0 -f 0 -m 0 -y {42 42} - -t 1.57805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 299 -a 0 -S 0 -y {42 42} h -t 1.57805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 299 -a 0 -S 0 -y {-1 -1} + -t 1.58 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 300 -a 1 - -t 1.58 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 300 -a 1 h -t 1.58 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 300 -a 1 + -t 1.58 -s 1 -d 3 -p cbr -e 500 -c 1 -i 301 -a 1 - -t 1.58 -s 1 -d 3 -p cbr -e 500 -c 1 -i 301 -a 1 h -t 1.58 -s 1 -d 3 -p cbr -e 500 -c 1 -i 301 -a 1 - -t 1.58 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 269 -a 0 -S 0 -y {31 31} h -t 1.58 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 269 -a 0 -S 0 -y {-1 -1} r -t 1.58198 -s 4 -d 3 -p ack -e 40 -c 0 -i 279 -a 0 -S 0 -y {24 24} + -t 1.58198 -s 3 -d 0 -p ack -e 40 -c 0 -i 279 -a 0 -S 0 -y {24 24} - -t 1.58198 -s 3 -d 0 -p ack -e 40 -c 0 -i 279 -a 0 -S 0 -f 0 -m 1 -y {24 24} h -t 1.58198 -s 3 -d 0 -p ack -e 40 -c 0 -i 279 -a 0 -S 0 -y {-1 -1} r -t 1.582 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 252 -a 1 + -t 1.582 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 252 -a 1 - -t 1.582 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 252 -a 1 h -t 1.582 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 252 -a 1 r -t 1.582 -s 4 -d 6 -p cbr -e 500 -c 1 -i 248 -a 1 r -t 1.584 -s 1 -d 3 -p cbr -e 500 -c 1 -i 296 -a 1 + -t 1.584 -s 3 -d 4 -p cbr -e 500 -c 1 -i 296 -a 1 r -t 1.586 -s 3 -d 4 -p cbr -e 500 -c 1 -i 255 -a 1 + -t 1.586 -s 4 -d 6 -p cbr -e 500 -c 1 -i 255 -a 1 - -t 1.586 -s 4 -d 6 -p cbr -e 500 -c 1 -i 255 -a 1 h -t 1.586 -s 4 -d 6 -p cbr -e 500 -c 1 -i 255 -a 1 r -t 1.588 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 295 -a 1 + -t 1.588 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 295 -a 1 d -t 1.588 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 295 -a 1 - -t 1.588 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 270 -a 0 -S 0 -y {32 32} h -t 1.588 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 270 -a 0 -S 0 -y {-1 -1} r -t 1.59 -s 3 -d 4 -p cbr -e 500 -c 1 -i 257 -a 1 + -t 1.59 -s 4 -d 6 -p cbr -e 500 -c 1 -i 257 -a 1 + -t 1.59 -s 1 -d 3 -p cbr -e 500 -c 1 -i 302 -a 1 - -t 1.59 -s 1 -d 3 -p cbr -e 500 -c 1 -i 302 -a 1 h -t 1.59 -s 1 -d 3 -p cbr -e 500 -c 1 -i 302 -a 1 - -t 1.59 -s 4 -d 6 -p cbr -e 500 -c 1 -i 257 -a 1 h -t 1.59 -s 4 -d 6 -p cbr -e 500 -c 1 -i 257 -a 1 r -t 1.59005 -s 3 -d 0 -p ack -e 40 -c 0 -i 273 -a 0 -S 0 -y {23 23} f -t 1.59004800000000124 -s 0 -d 5 -n cwnd_ -a tcp -v 20.248762 -o 20.199256 -T v + -t 1.59005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 303 -a 0 -S 0 -f 0 -m 0 -y {43 43} - -t 1.59005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 303 -a 0 -S 0 -y {43 43} h -t 1.59005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 303 -a 0 -S 0 -y {-1 -1} r -t 1.59165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 298 -a 0 -S 0 -y {41 41} + -t 1.59165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 298 -a 0 -S 0 -y {41 41} r -t 1.59398 -s 4 -d 3 -p ack -e 40 -c 0 -i 284 -a 0 -S 0 -y {25 25} + -t 1.59398 -s 3 -d 0 -p ack -e 40 -c 0 -i 284 -a 0 -S 0 -y {25 25} - -t 1.59398 -s 3 -d 0 -p ack -e 40 -c 0 -i 284 -a 0 -S 0 -f 0 -m 1 -y {25 25} h -t 1.59398 -s 3 -d 0 -p ack -e 40 -c 0 -i 284 -a 0 -S 0 -y {-1 -1} r -t 1.594 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 247 -a 1 r -t 1.594 -s 4 -d 6 -p cbr -e 500 -c 1 -i 250 -a 1 r -t 1.594 -s 1 -d 3 -p cbr -e 500 -c 1 -i 297 -a 1 + -t 1.594 -s 3 -d 4 -p cbr -e 500 -c 1 -i 297 -a 1 d -t 1.594 -s 3 -d 4 -p cbr -e 500 -c 1 -i 297 -a 1 - -t 1.596 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 271 -a 0 -S 0 -y {33 33} h -t 1.596 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 271 -a 0 -S 0 -y {-1 -1} r -t 1.598 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 256 -a 1 + -t 1.598 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 256 -a 1 - -t 1.598 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 256 -a 1 h -t 1.598 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 256 -a 1 r -t 1.598 -s 4 -d 6 -p cbr -e 500 -c 1 -i 253 -a 1 r -t 1.59965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 299 -a 0 -S 0 -y {42 42} + -t 1.59965 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 299 -a 0 -S 0 -y {42 42} + -t 1.6 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 304 -a 1 - -t 1.6 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 304 -a 1 h -t 1.6 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 304 -a 1 + -t 1.6 -s 1 -d 3 -p cbr -e 500 -c 1 -i 305 -a 1 - -t 1.6 -s 1 -d 3 -p cbr -e 500 -c 1 -i 305 -a 1 h -t 1.6 -s 1 -d 3 -p cbr -e 500 -c 1 -i 305 -a 1 r -t 1.60198 -s 4 -d 3 -p ack -e 40 -c 0 -i 286 -a 0 -S 0 -y {26 26} + -t 1.60198 -s 3 -d 0 -p ack -e 40 -c 0 -i 286 -a 0 -S 0 -y {26 26} - -t 1.60198 -s 3 -d 0 -p ack -e 40 -c 0 -i 286 -a 0 -S 0 -f 0 -m 1 -y {26 26} h -t 1.60198 -s 3 -d 0 -p ack -e 40 -c 0 -i 286 -a 0 -S 0 -y {-1 -1} r -t 1.602 -s 3 -d 4 -p cbr -e 500 -c 1 -i 258 -a 1 + -t 1.602 -s 4 -d 6 -p cbr -e 500 -c 1 -i 258 -a 1 - -t 1.602 -s 4 -d 6 -p cbr -e 500 -c 1 -i 258 -a 1 h -t 1.602 -s 4 -d 6 -p cbr -e 500 -c 1 -i 258 -a 1 r -t 1.60205 -s 3 -d 0 -p ack -e 40 -c 0 -i 279 -a 0 -S 0 -y {24 24} f -t 1.60204800000000125 -s 0 -d 5 -n cwnd_ -a tcp -v 20.298148 -o 20.248762 -T v + -t 1.60205 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 306 -a 0 -S 0 -f 0 -m 0 -y {44 44} - -t 1.60205 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 306 -a 0 -S 0 -y {44 44} h -t 1.60205 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 306 -a 0 -S 0 -y {-1 -1} r -t 1.604 -s 1 -d 3 -p cbr -e 500 -c 1 -i 301 -a 1 + -t 1.604 -s 3 -d 4 -p cbr -e 500 -c 1 -i 301 -a 1 d -t 1.604 -s 3 -d 4 -p cbr -e 500 -c 1 -i 301 -a 1 - -t 1.604 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 272 -a 0 -S 0 -y {34 34} h -t 1.604 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 272 -a 0 -S 0 -y {-1 -1} r -t 1.606 -s 3 -d 4 -p cbr -e 500 -c 1 -i 261 -a 1 + -t 1.606 -s 4 -d 6 -p cbr -e 500 -c 1 -i 261 -a 1 - -t 1.606 -s 4 -d 6 -p cbr -e 500 -c 1 -i 261 -a 1 h -t 1.606 -s 4 -d 6 -p cbr -e 500 -c 1 -i 261 -a 1 r -t 1.608 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 300 -a 1 + -t 1.608 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 300 -a 1 r -t 1.60998 -s 4 -d 3 -p ack -e 40 -c 0 -i 287 -a 0 -S 0 -y {27 27} + -t 1.60998 -s 3 -d 0 -p ack -e 40 -c 0 -i 287 -a 0 -S 0 -y {27 27} - -t 1.60998 -s 3 -d 0 -p ack -e 40 -c 0 -i 287 -a 0 -S 0 -f 0 -m 1 -y {27 27} h -t 1.60998 -s 3 -d 0 -p ack -e 40 -c 0 -i 287 -a 0 -S 0 -y {-1 -1} r -t 1.61 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 252 -a 1 r -t 1.61 -s 4 -d 6 -p cbr -e 500 -c 1 -i 255 -a 1 + -t 1.61 -s 1 -d 3 -p cbr -e 500 -c 1 -i 307 -a 1 - -t 1.61 -s 1 -d 3 -p cbr -e 500 -c 1 -i 307 -a 1 h -t 1.61 -s 1 -d 3 -p cbr -e 500 -c 1 -i 307 -a 1 r -t 1.61165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 303 -a 0 -S 0 -y {43 43} + -t 1.61165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 303 -a 0 -S 0 -y {43 43} d -t 1.61165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 303 -a 0 -S 0 -y {43 43} - -t 1.612 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 274 -a 1 h -t 1.612 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 274 -a 1 r -t 1.614 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 260 -a 1 + -t 1.614 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 260 -a 1 - -t 1.614 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 260 -a 1 h -t 1.614 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 260 -a 1 r -t 1.614 -s 1 -d 3 -p cbr -e 500 -c 1 -i 302 -a 1 + -t 1.614 -s 3 -d 4 -p cbr -e 500 -c 1 -i 302 -a 1 r -t 1.614 -s 4 -d 6 -p cbr -e 500 -c 1 -i 257 -a 1 r -t 1.61405 -s 3 -d 0 -p ack -e 40 -c 0 -i 284 -a 0 -S 0 -y {25 25} f -t 1.61404800000000126 -s 0 -d 5 -n cwnd_ -a tcp -v 20.347414 -o 20.298148 -T v + -t 1.61405 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 308 -a 0 -S 0 -f 0 -m 0 -y {45 45} - -t 1.61405 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 308 -a 0 -S 0 -y {45 45} h -t 1.61405 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 308 -a 0 -S 0 -y {-1 -1} r -t 1.61798 -s 4 -d 3 -p ack -e 40 -c 0 -i 291 -a 0 -S 0 -y {28 28} + -t 1.61798 -s 3 -d 0 -p ack -e 40 -c 0 -i 291 -a 0 -S 0 -y {28 28} - -t 1.61798 -s 3 -d 0 -p ack -e 40 -c 0 -i 291 -a 0 -S 0 -f 0 -m 1 -y {28 28} h -t 1.61798 -s 3 -d 0 -p ack -e 40 -c 0 -i 291 -a 0 -S 0 -y {-1 -1} r -t 1.618 -s 3 -d 4 -p cbr -e 500 -c 1 -i 263 -a 1 + -t 1.618 -s 4 -d 6 -p cbr -e 500 -c 1 -i 263 -a 1 - -t 1.618 -s 4 -d 6 -p cbr -e 500 -c 1 -i 263 -a 1 h -t 1.618 -s 4 -d 6 -p cbr -e 500 -c 1 -i 263 -a 1 + -t 1.62 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 309 -a 1 - -t 1.62 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 309 -a 1 h -t 1.62 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 309 -a 1 + -t 1.62 -s 1 -d 3 -p cbr -e 500 -c 1 -i 310 -a 1 - -t 1.62 -s 1 -d 3 -p cbr -e 500 -c 1 -i 310 -a 1 h -t 1.62 -s 1 -d 3 -p cbr -e 500 -c 1 -i 310 -a 1 - -t 1.62 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 278 -a 0 -S 0 -y {36 36} h -t 1.62 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 278 -a 0 -S 0 -y {-1 -1} r -t 1.622 -s 3 -d 4 -p cbr -e 500 -c 1 -i 266 -a 1 + -t 1.622 -s 4 -d 6 -p cbr -e 500 -c 1 -i 266 -a 1 - -t 1.622 -s 4 -d 6 -p cbr -e 500 -c 1 -i 266 -a 1 h -t 1.622 -s 4 -d 6 -p cbr -e 500 -c 1 -i 266 -a 1 r -t 1.62205 -s 3 -d 0 -p ack -e 40 -c 0 -i 286 -a 0 -S 0 -y {26 26} f -t 1.62204800000000127 -s 0 -d 5 -n cwnd_ -a tcp -v 20.396560 -o 20.347414 -T v + -t 1.62205 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 311 -a 0 -S 0 -f 0 -m 0 -y {46 46} - -t 1.62205 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 311 -a 0 -S 0 -y {46 46} h -t 1.62205 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 311 -a 0 -S 0 -y {-1 -1} r -t 1.62365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 306 -a 0 -S 0 -y {44 44} + -t 1.62365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 306 -a 0 -S 0 -y {44 44} r -t 1.624 -s 1 -d 3 -p cbr -e 500 -c 1 -i 305 -a 1 + -t 1.624 -s 3 -d 4 -p cbr -e 500 -c 1 -i 305 -a 1 d -t 1.624 -s 3 -d 4 -p cbr -e 500 -c 1 -i 305 -a 1 r -t 1.62598 -s 4 -d 3 -p ack -e 40 -c 0 -i 294 -a 0 -S 0 -y {28 28} + -t 1.62598 -s 3 -d 0 -p ack -e 40 -c 0 -i 294 -a 0 -S 0 -y {28 28} - -t 1.62598 -s 3 -d 0 -p ack -e 40 -c 0 -i 294 -a 0 -S 0 -f 0 -m 1 -y {28 28} h -t 1.62598 -s 3 -d 0 -p ack -e 40 -c 0 -i 294 -a 0 -S 0 -y {-1 -1} r -t 1.626 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 256 -a 1 r -t 1.626 -s 4 -d 6 -p cbr -e 500 -c 1 -i 258 -a 1 r -t 1.628 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 304 -a 1 + -t 1.628 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 304 -a 1 d -t 1.628 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 304 -a 1 - -t 1.628 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 280 -a 0 -S 0 -y {37 37} h -t 1.628 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 280 -a 0 -S 0 -y {-1 -1} r -t 1.63 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 265 -a 1 + -t 1.63 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 265 -a 1 - -t 1.63 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 265 -a 1 h -t 1.63 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 265 -a 1 r -t 1.63 -s 4 -d 6 -p cbr -e 500 -c 1 -i 261 -a 1 + -t 1.63 -s 1 -d 3 -p cbr -e 500 -c 1 -i 312 -a 1 - -t 1.63 -s 1 -d 3 -p cbr -e 500 -c 1 -i 312 -a 1 h -t 1.63 -s 1 -d 3 -p cbr -e 500 -c 1 -i 312 -a 1 r -t 1.63005 -s 3 -d 0 -p ack -e 40 -c 0 -i 287 -a 0 -S 0 -y {27 27} f -t 1.63004800000000127 -s 0 -d 5 -n cwnd_ -a tcp -v 20.445588 -o 20.396560 -T v + -t 1.63005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 313 -a 0 -S 0 -f 0 -m 0 -y {47 47} - -t 1.63005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 313 -a 0 -S 0 -y {47 47} h -t 1.63005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 313 -a 0 -S 0 -y {-1 -1} r -t 1.634 -s 1 -d 3 -p cbr -e 500 -c 1 -i 307 -a 1 + -t 1.634 -s 3 -d 4 -p cbr -e 500 -c 1 -i 307 -a 1 r -t 1.63565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 308 -a 0 -S 0 -y {45 45} + -t 1.63565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 308 -a 0 -S 0 -y {45 45} d -t 1.63565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 308 -a 0 -S 0 -y {45 45} - -t 1.636 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 281 -a 0 -S 0 -y {38 38} h -t 1.636 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 281 -a 0 -S 0 -y {-1 -1} r -t 1.638 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 269 -a 0 -S 0 -y {31 31} + -t 1.638 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 269 -a 0 -S 0 -y {31 31} - -t 1.638 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 269 -a 0 -S 0 -y {31 31} h -t 1.638 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 269 -a 0 -S 0 -y {-1 -1} r -t 1.63805 -s 3 -d 0 -p ack -e 40 -c 0 -i 291 -a 0 -S 0 -y {28 28} f -t 1.63804800000000128 -s 0 -d 5 -n cwnd_ -a tcp -v 20.494498 -o 20.445588 -T v + -t 1.63805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 314 -a 0 -S 0 -f 0 -m 0 -y {48 48} - -t 1.63805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 314 -a 0 -S 0 -y {48 48} h -t 1.63805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 314 -a 0 -S 0 -y {-1 -1} + -t 1.64 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 315 -a 1 - -t 1.64 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 315 -a 1 h -t 1.64 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 315 -a 1 + -t 1.64 -s 1 -d 3 -p cbr -e 500 -c 1 -i 316 -a 1 - -t 1.64 -s 1 -d 3 -p cbr -e 500 -c 1 -i 316 -a 1 h -t 1.64 -s 1 -d 3 -p cbr -e 500 -c 1 -i 316 -a 1 r -t 1.642 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 260 -a 1 r -t 1.642 -s 4 -d 6 -p cbr -e 500 -c 1 -i 263 -a 1 r -t 1.64365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 311 -a 0 -S 0 -y {46 46} + -t 1.64365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 311 -a 0 -S 0 -y {46 46} r -t 1.644 -s 1 -d 3 -p cbr -e 500 -c 1 -i 310 -a 1 + -t 1.644 -s 3 -d 4 -p cbr -e 500 -c 1 -i 310 -a 1 d -t 1.644 -s 3 -d 4 -p cbr -e 500 -c 1 -i 310 -a 1 - -t 1.644 -s 3 -d 4 -p cbr -e 500 -c 1 -i 285 -a 1 h -t 1.644 -s 3 -d 4 -p cbr -e 500 -c 1 -i 285 -a 1 r -t 1.646 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 270 -a 0 -S 0 -y {32 32} + -t 1.646 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 270 -a 0 -S 0 -y {32 32} - -t 1.646 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 270 -a 0 -S 0 -y {32 32} h -t 1.646 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 270 -a 0 -S 0 -y {-1 -1} r -t 1.646 -s 4 -d 6 -p cbr -e 500 -c 1 -i 266 -a 1 r -t 1.64605 -s 3 -d 0 -p ack -e 40 -c 0 -i 294 -a 0 -S 0 -y {28 28} r -t 1.648 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 309 -a 1 + -t 1.648 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 309 -a 1 - -t 1.648 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 290 -a 0 -S 0 -y {39 39} h -t 1.648 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 290 -a 0 -S 0 -y {-1 -1} + -t 1.65 -s 1 -d 3 -p cbr -e 500 -c 1 -i 317 -a 1 - -t 1.65 -s 1 -d 3 -p cbr -e 500 -c 1 -i 317 -a 1 h -t 1.65 -s 1 -d 3 -p cbr -e 500 -c 1 -i 317 -a 1 r -t 1.65165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 313 -a 0 -S 0 -y {47 47} + -t 1.65165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 313 -a 0 -S 0 -y {47 47} r -t 1.654 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 271 -a 0 -S 0 -y {33 33} + -t 1.654 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 271 -a 0 -S 0 -y {33 33} - -t 1.654 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 271 -a 0 -S 0 -y {33 33} h -t 1.654 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 271 -a 0 -S 0 -y {-1 -1} r -t 1.654 -s 1 -d 3 -p cbr -e 500 -c 1 -i 312 -a 1 + -t 1.654 -s 3 -d 4 -p cbr -e 500 -c 1 -i 312 -a 1 d -t 1.654 -s 3 -d 4 -p cbr -e 500 -c 1 -i 312 -a 1 - -t 1.656 -s 3 -d 4 -p cbr -e 500 -c 1 -i 289 -a 1 h -t 1.656 -s 3 -d 4 -p cbr -e 500 -c 1 -i 289 -a 1 r -t 1.658 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 265 -a 1 r -t 1.6596 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 269 -a 0 -S 0 -y {31 31} + -t 1.6596 -s 5 -d 4 -p ack -e 40 -c 0 -i 318 -a 0 -S 0 -y {28 28} - -t 1.6596 -s 5 -d 4 -p ack -e 40 -c 0 -i 318 -a 0 -S 0 -y {28 28} h -t 1.6596 -s 5 -d 4 -p ack -e 40 -c 0 -i 318 -a 0 -S 0 -y {-1 -1} r -t 1.65965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 314 -a 0 -S 0 -y {48 48} + -t 1.65965 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 314 -a 0 -S 0 -y {48 48} + -t 1.66 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 319 -a 1 - -t 1.66 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 319 -a 1 h -t 1.66 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 319 -a 1 + -t 1.66 -s 1 -d 3 -p cbr -e 500 -c 1 -i 320 -a 1 - -t 1.66 -s 1 -d 3 -p cbr -e 500 -c 1 -i 320 -a 1 h -t 1.66 -s 1 -d 3 -p cbr -e 500 -c 1 -i 320 -a 1 - -t 1.66 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 288 -a 1 h -t 1.66 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 288 -a 1 r -t 1.662 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 272 -a 0 -S 0 -y {34 34} + -t 1.662 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 272 -a 0 -S 0 -y {34 34} - -t 1.662 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 272 -a 0 -S 0 -y {34 34} h -t 1.662 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 272 -a 0 -S 0 -y {-1 -1} r -t 1.664 -s 1 -d 3 -p cbr -e 500 -c 1 -i 316 -a 1 + -t 1.664 -s 3 -d 4 -p cbr -e 500 -c 1 -i 316 -a 1 r -t 1.6676 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 270 -a 0 -S 0 -y {32 32} + -t 1.6676 -s 5 -d 4 -p ack -e 40 -c 0 -i 321 -a 0 -S 0 -y {28 28} - -t 1.6676 -s 5 -d 4 -p ack -e 40 -c 0 -i 321 -a 0 -S 0 -y {28 28} h -t 1.6676 -s 5 -d 4 -p ack -e 40 -c 0 -i 321 -a 0 -S 0 -y {-1 -1} r -t 1.668 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 315 -a 1 + -t 1.668 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 315 -a 1 d -t 1.668 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 315 -a 1 - -t 1.668 -s 3 -d 4 -p cbr -e 500 -c 1 -i 292 -a 1 h -t 1.668 -s 3 -d 4 -p cbr -e 500 -c 1 -i 292 -a 1 r -t 1.67 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 274 -a 1 + -t 1.67 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 274 -a 1 - -t 1.67 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 274 -a 1 h -t 1.67 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 274 -a 1 + -t 1.67 -s 1 -d 3 -p cbr -e 500 -c 1 -i 322 -a 1 - -t 1.67 -s 1 -d 3 -p cbr -e 500 -c 1 -i 322 -a 1 h -t 1.67 -s 1 -d 3 -p cbr -e 500 -c 1 -i 322 -a 1 - -t 1.672 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 293 -a 0 -S 0 -y {40 40} h -t 1.672 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 293 -a 0 -S 0 -y {-1 -1} r -t 1.674 -s 1 -d 3 -p cbr -e 500 -c 1 -i 317 -a 1 + -t 1.674 -s 3 -d 4 -p cbr -e 500 -c 1 -i 317 -a 1 r -t 1.6756 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 271 -a 0 -S 0 -y {33 33} + -t 1.6756 -s 5 -d 4 -p ack -e 40 -c 0 -i 323 -a 0 -S 0 -y {28 28} - -t 1.6756 -s 5 -d 4 -p ack -e 40 -c 0 -i 323 -a 0 -S 0 -y {28 28} h -t 1.6756 -s 5 -d 4 -p ack -e 40 -c 0 -i 323 -a 0 -S 0 -y {-1 -1} r -t 1.678 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 278 -a 0 -S 0 -y {36 36} + -t 1.678 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 278 -a 0 -S 0 -y {36 36} - -t 1.678 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 278 -a 0 -S 0 -y {36 36} h -t 1.678 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 278 -a 0 -S 0 -y {-1 -1} r -t 1.67966 -s 5 -d 4 -p ack -e 40 -c 0 -i 318 -a 0 -S 0 -y {28 28} + -t 1.67966 -s 4 -d 3 -p ack -e 40 -c 0 -i 318 -a 0 -S 0 -y {28 28} - -t 1.67966 -s 4 -d 3 -p ack -e 40 -c 0 -i 318 -a 0 -S 0 -y {28 28} h -t 1.67966 -s 4 -d 3 -p ack -e 40 -c 0 -i 318 -a 0 -S 0 -y {-1 -1} + -t 1.68 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 324 -a 1 - -t 1.68 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 324 -a 1 h -t 1.68 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 324 -a 1 + -t 1.68 -s 1 -d 3 -p cbr -e 500 -c 1 -i 325 -a 1 - -t 1.68 -s 1 -d 3 -p cbr -e 500 -c 1 -i 325 -a 1 h -t 1.68 -s 1 -d 3 -p cbr -e 500 -c 1 -i 325 -a 1 - -t 1.68 -s 3 -d 4 -p cbr -e 500 -c 1 -i 296 -a 1 h -t 1.68 -s 3 -d 4 -p cbr -e 500 -c 1 -i 296 -a 1 r -t 1.6836 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 272 -a 0 -S 0 -y {34 34} + -t 1.6836 -s 5 -d 4 -p ack -e 40 -c 0 -i 326 -a 0 -S 0 -y {28 28} - -t 1.6836 -s 5 -d 4 -p ack -e 40 -c 0 -i 326 -a 0 -S 0 -y {28 28} h -t 1.6836 -s 5 -d 4 -p ack -e 40 -c 0 -i 326 -a 0 -S 0 -y {-1 -1} r -t 1.684 -s 1 -d 3 -p cbr -e 500 -c 1 -i 320 -a 1 + -t 1.684 -s 3 -d 4 -p cbr -e 500 -c 1 -i 320 -a 1 - -t 1.684 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 298 -a 0 -S 0 -y {41 41} h -t 1.684 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 298 -a 0 -S 0 -y {-1 -1} r -t 1.686 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 280 -a 0 -S 0 -y {37 37} + -t 1.686 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 280 -a 0 -S 0 -y {37 37} - -t 1.686 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 280 -a 0 -S 0 -y {37 37} h -t 1.686 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 280 -a 0 -S 0 -y {-1 -1} r -t 1.68766 -s 5 -d 4 -p ack -e 40 -c 0 -i 321 -a 0 -S 0 -y {28 28} + -t 1.68766 -s 4 -d 3 -p ack -e 40 -c 0 -i 321 -a 0 -S 0 -y {28 28} - -t 1.68766 -s 4 -d 3 -p ack -e 40 -c 0 -i 321 -a 0 -S 0 -y {28 28} h -t 1.68766 -s 4 -d 3 -p ack -e 40 -c 0 -i 321 -a 0 -S 0 -y {-1 -1} r -t 1.688 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 319 -a 1 + -t 1.688 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 319 -a 1 + -t 1.69 -s 1 -d 3 -p cbr -e 500 -c 1 -i 327 -a 1 - -t 1.69 -s 1 -d 3 -p cbr -e 500 -c 1 -i 327 -a 1 h -t 1.69 -s 1 -d 3 -p cbr -e 500 -c 1 -i 327 -a 1 - -t 1.692 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 299 -a 0 -S 0 -y {42 42} h -t 1.692 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 299 -a 0 -S 0 -y {-1 -1} r -t 1.694 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 281 -a 0 -S 0 -y {38 38} + -t 1.694 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 281 -a 0 -S 0 -y {38 38} - -t 1.694 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 281 -a 0 -S 0 -y {38 38} h -t 1.694 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 281 -a 0 -S 0 -y {-1 -1} r -t 1.694 -s 1 -d 3 -p cbr -e 500 -c 1 -i 322 -a 1 + -t 1.694 -s 3 -d 4 -p cbr -e 500 -c 1 -i 322 -a 1 r -t 1.69566 -s 5 -d 4 -p ack -e 40 -c 0 -i 323 -a 0 -S 0 -y {28 28} + -t 1.69566 -s 4 -d 3 -p ack -e 40 -c 0 -i 323 -a 0 -S 0 -y {28 28} - -t 1.69566 -s 4 -d 3 -p ack -e 40 -c 0 -i 323 -a 0 -S 0 -y {28 28} h -t 1.69566 -s 4 -d 3 -p ack -e 40 -c 0 -i 323 -a 0 -S 0 -y {-1 -1} r -t 1.698 -s 3 -d 4 -p cbr -e 500 -c 1 -i 285 -a 1 + -t 1.698 -s 4 -d 6 -p cbr -e 500 -c 1 -i 285 -a 1 - -t 1.698 -s 4 -d 6 -p cbr -e 500 -c 1 -i 285 -a 1 h -t 1.698 -s 4 -d 6 -p cbr -e 500 -c 1 -i 285 -a 1 r -t 1.698 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 274 -a 1 r -t 1.6996 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 278 -a 0 -S 0 -y {36 36} + -t 1.6996 -s 5 -d 4 -p ack -e 40 -c 0 -i 328 -a 0 -S 0 -y {28 28} - -t 1.6996 -s 5 -d 4 -p ack -e 40 -c 0 -i 328 -a 0 -S 0 -y {28 28} h -t 1.6996 -s 5 -d 4 -p ack -e 40 -c 0 -i 328 -a 0 -S 0 -y {-1 -1} + -t 1.7 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 329 -a 1 - -t 1.7 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 329 -a 1 h -t 1.7 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 329 -a 1 + -t 1.7 -s 1 -d 3 -p cbr -e 500 -c 1 -i 330 -a 1 - -t 1.7 -s 1 -d 3 -p cbr -e 500 -c 1 -i 330 -a 1 h -t 1.7 -s 1 -d 3 -p cbr -e 500 -c 1 -i 330 -a 1 - -t 1.7 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 300 -a 1 h -t 1.7 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 300 -a 1 r -t 1.70366 -s 5 -d 4 -p ack -e 40 -c 0 -i 326 -a 0 -S 0 -y {28 28} + -t 1.70366 -s 4 -d 3 -p ack -e 40 -c 0 -i 326 -a 0 -S 0 -y {28 28} - -t 1.70366 -s 4 -d 3 -p ack -e 40 -c 0 -i 326 -a 0 -S 0 -y {28 28} h -t 1.70366 -s 4 -d 3 -p ack -e 40 -c 0 -i 326 -a 0 -S 0 -y {-1 -1} r -t 1.704 -s 1 -d 3 -p cbr -e 500 -c 1 -i 325 -a 1 + -t 1.704 -s 3 -d 4 -p cbr -e 500 -c 1 -i 325 -a 1 r -t 1.706 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 290 -a 0 -S 0 -y {39 39} + -t 1.706 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 290 -a 0 -S 0 -y {39 39} - -t 1.706 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 290 -a 0 -S 0 -y {39 39} h -t 1.706 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 290 -a 0 -S 0 -y {-1 -1} r -t 1.7076 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 280 -a 0 -S 0 -y {37 37} + -t 1.7076 -s 5 -d 4 -p ack -e 40 -c 0 -i 331 -a 0 -S 0 -y {28 28} - -t 1.7076 -s 5 -d 4 -p ack -e 40 -c 0 -i 331 -a 0 -S 0 -y {28 28} h -t 1.7076 -s 5 -d 4 -p ack -e 40 -c 0 -i 331 -a 0 -S 0 -y {-1 -1} r -t 1.708 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 324 -a 1 + -t 1.708 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 324 -a 1 - -t 1.708 -s 3 -d 4 -p cbr -e 500 -c 1 -i 302 -a 1 h -t 1.708 -s 3 -d 4 -p cbr -e 500 -c 1 -i 302 -a 1 r -t 1.71 -s 3 -d 4 -p cbr -e 500 -c 1 -i 289 -a 1 + -t 1.71 -s 4 -d 6 -p cbr -e 500 -c 1 -i 289 -a 1 - -t 1.71 -s 4 -d 6 -p cbr -e 500 -c 1 -i 289 -a 1 h -t 1.71 -s 4 -d 6 -p cbr -e 500 -c 1 -i 289 -a 1 + -t 1.71 -s 1 -d 3 -p cbr -e 500 -c 1 -i 332 -a 1 - -t 1.71 -s 1 -d 3 -p cbr -e 500 -c 1 -i 332 -a 1 h -t 1.71 -s 1 -d 3 -p cbr -e 500 -c 1 -i 332 -a 1 - -t 1.712 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 306 -a 0 -S 0 -y {44 44} h -t 1.712 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 306 -a 0 -S 0 -y {-1 -1} r -t 1.714 -s 1 -d 3 -p cbr -e 500 -c 1 -i 327 -a 1 + -t 1.714 -s 3 -d 4 -p cbr -e 500 -c 1 -i 327 -a 1 r -t 1.7156 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 281 -a 0 -S 0 -y {38 38} + -t 1.7156 -s 5 -d 4 -p ack -e 40 -c 0 -i 333 -a 0 -S 0 -y {28 28} - -t 1.7156 -s 5 -d 4 -p ack -e 40 -c 0 -i 333 -a 0 -S 0 -y {28 28} h -t 1.7156 -s 5 -d 4 -p ack -e 40 -c 0 -i 333 -a 0 -S 0 -y {-1 -1} r -t 1.718 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 288 -a 1 + -t 1.718 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 288 -a 1 - -t 1.718 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 288 -a 1 h -t 1.718 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 288 -a 1 r -t 1.71966 -s 5 -d 4 -p ack -e 40 -c 0 -i 328 -a 0 -S 0 -y {28 28} + -t 1.71966 -s 4 -d 3 -p ack -e 40 -c 0 -i 328 -a 0 -S 0 -y {28 28} - -t 1.71966 -s 4 -d 3 -p ack -e 40 -c 0 -i 328 -a 0 -S 0 -y {28 28} h -t 1.71966 -s 4 -d 3 -p ack -e 40 -c 0 -i 328 -a 0 -S 0 -y {-1 -1} + -t 1.72 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 334 -a 1 - -t 1.72 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 334 -a 1 h -t 1.72 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 334 -a 1 + -t 1.72 -s 1 -d 3 -p cbr -e 500 -c 1 -i 335 -a 1 - -t 1.72 -s 1 -d 3 -p cbr -e 500 -c 1 -i 335 -a 1 h -t 1.72 -s 1 -d 3 -p cbr -e 500 -c 1 -i 335 -a 1 - -t 1.72 -s 3 -d 4 -p cbr -e 500 -c 1 -i 307 -a 1 h -t 1.72 -s 3 -d 4 -p cbr -e 500 -c 1 -i 307 -a 1 r -t 1.722 -s 3 -d 4 -p cbr -e 500 -c 1 -i 292 -a 1 + -t 1.722 -s 4 -d 6 -p cbr -e 500 -c 1 -i 292 -a 1 - -t 1.722 -s 4 -d 6 -p cbr -e 500 -c 1 -i 292 -a 1 h -t 1.722 -s 4 -d 6 -p cbr -e 500 -c 1 -i 292 -a 1 r -t 1.722 -s 4 -d 6 -p cbr -e 500 -c 1 -i 285 -a 1 r -t 1.724 -s 1 -d 3 -p cbr -e 500 -c 1 -i 330 -a 1 + -t 1.724 -s 3 -d 4 -p cbr -e 500 -c 1 -i 330 -a 1 - -t 1.724 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 311 -a 0 -S 0 -y {46 46} h -t 1.724 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 311 -a 0 -S 0 -y {-1 -1} r -t 1.7276 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 290 -a 0 -S 0 -y {39 39} + -t 1.7276 -s 5 -d 4 -p ack -e 40 -c 0 -i 336 -a 0 -S 0 -y {28 28} - -t 1.7276 -s 5 -d 4 -p ack -e 40 -c 0 -i 336 -a 0 -S 0 -y {28 28} h -t 1.7276 -s 5 -d 4 -p ack -e 40 -c 0 -i 336 -a 0 -S 0 -y {-1 -1} r -t 1.72766 -s 5 -d 4 -p ack -e 40 -c 0 -i 331 -a 0 -S 0 -y {28 28} + -t 1.72766 -s 4 -d 3 -p ack -e 40 -c 0 -i 331 -a 0 -S 0 -y {28 28} - -t 1.72766 -s 4 -d 3 -p ack -e 40 -c 0 -i 331 -a 0 -S 0 -y {28 28} h -t 1.72766 -s 4 -d 3 -p ack -e 40 -c 0 -i 331 -a 0 -S 0 -y {-1 -1} r -t 1.728 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 329 -a 1 + -t 1.728 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 329 -a 1 r -t 1.72998 -s 4 -d 3 -p ack -e 40 -c 0 -i 318 -a 0 -S 0 -y {28 28} + -t 1.72998 -s 3 -d 0 -p ack -e 40 -c 0 -i 318 -a 0 -S 0 -y {28 28} - -t 1.72998 -s 3 -d 0 -p ack -e 40 -c 0 -i 318 -a 0 -S 0 -f 0 -m 1 -y {28 28} h -t 1.72998 -s 3 -d 0 -p ack -e 40 -c 0 -i 318 -a 0 -S 0 -y {-1 -1} r -t 1.73 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 293 -a 0 -S 0 -y {40 40} + -t 1.73 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 293 -a 0 -S 0 -y {40 40} - -t 1.73 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 293 -a 0 -S 0 -y {40 40} h -t 1.73 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 293 -a 0 -S 0 -y {-1 -1} + -t 1.73 -s 1 -d 3 -p cbr -e 500 -c 1 -i 337 -a 1 - -t 1.73 -s 1 -d 3 -p cbr -e 500 -c 1 -i 337 -a 1 h -t 1.73 -s 1 -d 3 -p cbr -e 500 -c 1 -i 337 -a 1 - -t 1.732 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 309 -a 1 h -t 1.732 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 309 -a 1 r -t 1.734 -s 3 -d 4 -p cbr -e 500 -c 1 -i 296 -a 1 + -t 1.734 -s 4 -d 6 -p cbr -e 500 -c 1 -i 296 -a 1 - -t 1.734 -s 4 -d 6 -p cbr -e 500 -c 1 -i 296 -a 1 h -t 1.734 -s 4 -d 6 -p cbr -e 500 -c 1 -i 296 -a 1 r -t 1.734 -s 4 -d 6 -p cbr -e 500 -c 1 -i 289 -a 1 r -t 1.734 -s 1 -d 3 -p cbr -e 500 -c 1 -i 332 -a 1 + -t 1.734 -s 3 -d 4 -p cbr -e 500 -c 1 -i 332 -a 1 r -t 1.73566 -s 5 -d 4 -p ack -e 40 -c 0 -i 333 -a 0 -S 0 -y {28 28} + -t 1.73566 -s 4 -d 3 -p ack -e 40 -c 0 -i 333 -a 0 -S 0 -y {28 28} - -t 1.73566 -s 4 -d 3 -p ack -e 40 -c 0 -i 333 -a 0 -S 0 -y {28 28} h -t 1.73566 -s 4 -d 3 -p ack -e 40 -c 0 -i 333 -a 0 -S 0 -y {-1 -1} r -t 1.73798 -s 4 -d 3 -p ack -e 40 -c 0 -i 321 -a 0 -S 0 -y {28 28} + -t 1.73798 -s 3 -d 0 -p ack -e 40 -c 0 -i 321 -a 0 -S 0 -y {28 28} - -t 1.73798 -s 3 -d 0 -p ack -e 40 -c 0 -i 321 -a 0 -S 0 -f 0 -m 1 -y {28 28} h -t 1.73798 -s 3 -d 0 -p ack -e 40 -c 0 -i 321 -a 0 -S 0 -y {-1 -1} + -t 1.74 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 338 -a 1 - -t 1.74 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 338 -a 1 h -t 1.74 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 338 -a 1 + -t 1.74 -s 1 -d 3 -p cbr -e 500 -c 1 -i 339 -a 1 - -t 1.74 -s 1 -d 3 -p cbr -e 500 -c 1 -i 339 -a 1 h -t 1.74 -s 1 -d 3 -p cbr -e 500 -c 1 -i 339 -a 1 - -t 1.74 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 313 -a 0 -S 0 -y {47 47} h -t 1.74 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 313 -a 0 -S 0 -y {-1 -1} r -t 1.742 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 298 -a 0 -S 0 -y {41 41} + -t 1.742 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 298 -a 0 -S 0 -y {41 41} - -t 1.742 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 298 -a 0 -S 0 -y {41 41} h -t 1.742 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 298 -a 0 -S 0 -y {-1 -1} r -t 1.744 -s 1 -d 3 -p cbr -e 500 -c 1 -i 335 -a 1 + -t 1.744 -s 3 -d 4 -p cbr -e 500 -c 1 -i 335 -a 1 r -t 1.74598 -s 4 -d 3 -p ack -e 40 -c 0 -i 323 -a 0 -S 0 -y {28 28} + -t 1.74598 -s 3 -d 0 -p ack -e 40 -c 0 -i 323 -a 0 -S 0 -y {28 28} - -t 1.74598 -s 3 -d 0 -p ack -e 40 -c 0 -i 323 -a 0 -S 0 -f 0 -m 1 -y {28 28} h -t 1.74598 -s 3 -d 0 -p ack -e 40 -c 0 -i 323 -a 0 -S 0 -y {-1 -1} r -t 1.746 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 288 -a 1 r -t 1.746 -s 4 -d 6 -p cbr -e 500 -c 1 -i 292 -a 1 r -t 1.74766 -s 5 -d 4 -p ack -e 40 -c 0 -i 336 -a 0 -S 0 -y {28 28} + -t 1.74766 -s 4 -d 3 -p ack -e 40 -c 0 -i 336 -a 0 -S 0 -y {28 28} - -t 1.74766 -s 4 -d 3 -p ack -e 40 -c 0 -i 336 -a 0 -S 0 -y {28 28} h -t 1.74766 -s 4 -d 3 -p ack -e 40 -c 0 -i 336 -a 0 -S 0 -y {-1 -1} r -t 1.748 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 334 -a 1 + -t 1.748 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 334 -a 1 - -t 1.748 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 314 -a 0 -S 0 -y {48 48} h -t 1.748 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 314 -a 0 -S 0 -y {-1 -1} r -t 1.75 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 299 -a 0 -S 0 -y {42 42} + -t 1.75 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 299 -a 0 -S 0 -y {42 42} - -t 1.75 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 299 -a 0 -S 0 -y {42 42} h -t 1.75 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 299 -a 0 -S 0 -y {-1 -1} + -t 1.75 -s 1 -d 3 -p cbr -e 500 -c 1 -i 340 -a 1 - -t 1.75 -s 1 -d 3 -p cbr -e 500 -c 1 -i 340 -a 1 h -t 1.75 -s 1 -d 3 -p cbr -e 500 -c 1 -i 340 -a 1 r -t 1.75005 -s 3 -d 0 -p ack -e 40 -c 0 -i 318 -a 0 -S 0 -y {28 28} r -t 1.7516 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 293 -a 0 -S 0 -y {40 40} + -t 1.7516 -s 5 -d 4 -p ack -e 40 -c 0 -i 341 -a 0 -S 0 -y {28 28} - -t 1.7516 -s 5 -d 4 -p ack -e 40 -c 0 -i 341 -a 0 -S 0 -y {28 28} h -t 1.7516 -s 5 -d 4 -p ack -e 40 -c 0 -i 341 -a 0 -S 0 -y {-1 -1} r -t 1.75398 -s 4 -d 3 -p ack -e 40 -c 0 -i 326 -a 0 -S 0 -y {28 28} + -t 1.75398 -s 3 -d 0 -p ack -e 40 -c 0 -i 326 -a 0 -S 0 -y {28 28} - -t 1.75398 -s 3 -d 0 -p ack -e 40 -c 0 -i 326 -a 0 -S 0 -f 0 -m 1 -y {28 28} h -t 1.75398 -s 3 -d 0 -p ack -e 40 -c 0 -i 326 -a 0 -S 0 -y {-1 -1} r -t 1.754 -s 1 -d 3 -p cbr -e 500 -c 1 -i 337 -a 1 + -t 1.754 -s 3 -d 4 -p cbr -e 500 -c 1 -i 337 -a 1 - -t 1.756 -s 3 -d 4 -p cbr -e 500 -c 1 -i 316 -a 1 h -t 1.756 -s 3 -d 4 -p cbr -e 500 -c 1 -i 316 -a 1 r -t 1.758 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 300 -a 1 + -t 1.758 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 300 -a 1 - -t 1.758 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 300 -a 1 h -t 1.758 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 300 -a 1 r -t 1.758 -s 4 -d 6 -p cbr -e 500 -c 1 -i 296 -a 1 r -t 1.75805 -s 3 -d 0 -p ack -e 40 -c 0 -i 321 -a 0 -S 0 -y {28 28} f -t 1.75804800000000139 -s 0 -d 5 -n ssthresh_ -a tcp -v 10 -o 20 -T v f -t 1.75804800000000139 -s 0 -d 5 -n cwnd_ -a tcp -v 1.000000 -o 20.494498 -T v + -t 1.75805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 342 -a 0 -S 0 -f 1 -m 2 -y {29 29} - -t 1.75805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 342 -a 0 -S 0 -f 1 -y {29 29} h -t 1.75805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 342 -a 0 -S 0 -f 1 -y {-1 -1} + -t 1.76 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 343 -a 1 - -t 1.76 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 343 -a 1 h -t 1.76 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 343 -a 1 + -t 1.76 -s 1 -d 3 -p cbr -e 500 -c 1 -i 344 -a 1 - -t 1.76 -s 1 -d 3 -p cbr -e 500 -c 1 -i 344 -a 1 h -t 1.76 -s 1 -d 3 -p cbr -e 500 -c 1 -i 344 -a 1 - -t 1.76 -s 3 -d 4 -p cbr -e 500 -c 1 -i 317 -a 1 h -t 1.76 -s 3 -d 4 -p cbr -e 500 -c 1 -i 317 -a 1 r -t 1.762 -s 3 -d 4 -p cbr -e 500 -c 1 -i 302 -a 1 + -t 1.762 -s 4 -d 6 -p cbr -e 500 -c 1 -i 302 -a 1 - -t 1.762 -s 4 -d 6 -p cbr -e 500 -c 1 -i 302 -a 1 h -t 1.762 -s 4 -d 6 -p cbr -e 500 -c 1 -i 302 -a 1 r -t 1.7636 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 298 -a 0 -S 0 -y {41 41} + -t 1.7636 -s 5 -d 4 -p ack -e 40 -c 0 -i 345 -a 0 -S 0 -y {28 28} - -t 1.7636 -s 5 -d 4 -p ack -e 40 -c 0 -i 345 -a 0 -S 0 -y {28 28} h -t 1.7636 -s 5 -d 4 -p ack -e 40 -c 0 -i 345 -a 0 -S 0 -y {-1 -1} r -t 1.764 -s 1 -d 3 -p cbr -e 500 -c 1 -i 339 -a 1 + -t 1.764 -s 3 -d 4 -p cbr -e 500 -c 1 -i 339 -a 1 - -t 1.764 -s 3 -d 4 -p cbr -e 500 -c 1 -i 320 -a 1 h -t 1.764 -s 3 -d 4 -p cbr -e 500 -c 1 -i 320 -a 1 r -t 1.76605 -s 3 -d 0 -p ack -e 40 -c 0 -i 323 -a 0 -S 0 -y {28 28} r -t 1.768 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 338 -a 1 + -t 1.768 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 338 -a 1 - -t 1.768 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 319 -a 1 h -t 1.768 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 319 -a 1 r -t 1.76998 -s 4 -d 3 -p ack -e 40 -c 0 -i 328 -a 0 -S 0 -y {28 28} + -t 1.76998 -s 3 -d 0 -p ack -e 40 -c 0 -i 328 -a 0 -S 0 -y {28 28} - -t 1.76998 -s 3 -d 0 -p ack -e 40 -c 0 -i 328 -a 0 -S 0 -f 0 -m 1 -y {28 28} h -t 1.76998 -s 3 -d 0 -p ack -e 40 -c 0 -i 328 -a 0 -S 0 -y {-1 -1} r -t 1.77 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 306 -a 0 -S 0 -y {44 44} + -t 1.77 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 306 -a 0 -S 0 -y {44 44} - -t 1.77 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 306 -a 0 -S 0 -y {44 44} h -t 1.77 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 306 -a 0 -S 0 -y {-1 -1} + -t 1.77 -s 1 -d 3 -p cbr -e 500 -c 1 -i 346 -a 1 - -t 1.77 -s 1 -d 3 -p cbr -e 500 -c 1 -i 346 -a 1 h -t 1.77 -s 1 -d 3 -p cbr -e 500 -c 1 -i 346 -a 1 r -t 1.7716 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 299 -a 0 -S 0 -y {42 42} + -t 1.7716 -s 5 -d 4 -p ack -e 40 -c 0 -i 347 -a 0 -S 0 -y {28 28} - -t 1.7716 -s 5 -d 4 -p ack -e 40 -c 0 -i 347 -a 0 -S 0 -y {28 28} h -t 1.7716 -s 5 -d 4 -p ack -e 40 -c 0 -i 347 -a 0 -S 0 -y {-1 -1} r -t 1.77166 -s 5 -d 4 -p ack -e 40 -c 0 -i 341 -a 0 -S 0 -y {28 28} + -t 1.77166 -s 4 -d 3 -p ack -e 40 -c 0 -i 341 -a 0 -S 0 -y {28 28} - -t 1.77166 -s 4 -d 3 -p ack -e 40 -c 0 -i 341 -a 0 -S 0 -y {28 28} h -t 1.77166 -s 4 -d 3 -p ack -e 40 -c 0 -i 341 -a 0 -S 0 -y {-1 -1} r -t 1.774 -s 3 -d 4 -p cbr -e 500 -c 1 -i 307 -a 1 + -t 1.774 -s 4 -d 6 -p cbr -e 500 -c 1 -i 307 -a 1 - -t 1.774 -s 4 -d 6 -p cbr -e 500 -c 1 -i 307 -a 1 h -t 1.774 -s 4 -d 6 -p cbr -e 500 -c 1 -i 307 -a 1 r -t 1.774 -s 1 -d 3 -p cbr -e 500 -c 1 -i 340 -a 1 + -t 1.774 -s 3 -d 4 -p cbr -e 500 -c 1 -i 340 -a 1 r -t 1.77405 -s 3 -d 0 -p ack -e 40 -c 0 -i 326 -a 0 -S 0 -y {28 28} - -t 1.776 -s 3 -d 4 -p cbr -e 500 -c 1 -i 322 -a 1 h -t 1.776 -s 3 -d 4 -p cbr -e 500 -c 1 -i 322 -a 1 r -t 1.77798 -s 4 -d 3 -p ack -e 40 -c 0 -i 331 -a 0 -S 0 -y {28 28} + -t 1.77798 -s 3 -d 0 -p ack -e 40 -c 0 -i 331 -a 0 -S 0 -y {28 28} - -t 1.77798 -s 3 -d 0 -p ack -e 40 -c 0 -i 331 -a 0 -S 0 -f 0 -m 1 -y {28 28} h -t 1.77798 -s 3 -d 0 -p ack -e 40 -c 0 -i 331 -a 0 -S 0 -y {-1 -1} r -t 1.77965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 342 -a 0 -S 0 -f 1 -y {29 29} + -t 1.77965 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 342 -a 0 -S 0 -f 1 -y {29 29} + -t 1.78 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 348 -a 1 - -t 1.78 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 348 -a 1 h -t 1.78 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 348 -a 1 + -t 1.78 -s 1 -d 3 -p cbr -e 500 -c 1 -i 349 -a 1 - -t 1.78 -s 1 -d 3 -p cbr -e 500 -c 1 -i 349 -a 1 h -t 1.78 -s 1 -d 3 -p cbr -e 500 -c 1 -i 349 -a 1 - -t 1.78 -s 3 -d 4 -p cbr -e 500 -c 1 -i 325 -a 1 h -t 1.78 -s 3 -d 4 -p cbr -e 500 -c 1 -i 325 -a 1 r -t 1.782 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 311 -a 0 -S 0 -y {46 46} + -t 1.782 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 311 -a 0 -S 0 -y {46 46} - -t 1.782 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 311 -a 0 -S 0 -y {46 46} h -t 1.782 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 311 -a 0 -S 0 -y {-1 -1} r -t 1.78366 -s 5 -d 4 -p ack -e 40 -c 0 -i 345 -a 0 -S 0 -y {28 28} + -t 1.78366 -s 4 -d 3 -p ack -e 40 -c 0 -i 345 -a 0 -S 0 -y {28 28} - -t 1.78366 -s 4 -d 3 -p ack -e 40 -c 0 -i 345 -a 0 -S 0 -y {28 28} h -t 1.78366 -s 4 -d 3 -p ack -e 40 -c 0 -i 345 -a 0 -S 0 -y {-1 -1} r -t 1.784 -s 1 -d 3 -p cbr -e 500 -c 1 -i 344 -a 1 + -t 1.784 -s 3 -d 4 -p cbr -e 500 -c 1 -i 344 -a 1 - -t 1.784 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 324 -a 1 h -t 1.784 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 324 -a 1 r -t 1.78598 -s 4 -d 3 -p ack -e 40 -c 0 -i 333 -a 0 -S 0 -y {28 28} + -t 1.78598 -s 3 -d 0 -p ack -e 40 -c 0 -i 333 -a 0 -S 0 -y {28 28} - -t 1.78598 -s 3 -d 0 -p ack -e 40 -c 0 -i 333 -a 0 -S 0 -f 0 -m 1 -y {28 28} h -t 1.78598 -s 3 -d 0 -p ack -e 40 -c 0 -i 333 -a 0 -S 0 -y {-1 -1} r -t 1.786 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 300 -a 1 r -t 1.786 -s 4 -d 6 -p cbr -e 500 -c 1 -i 302 -a 1 r -t 1.788 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 343 -a 1 + -t 1.788 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 343 -a 1 r -t 1.79 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 309 -a 1 + -t 1.79 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 309 -a 1 - -t 1.79 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 309 -a 1 h -t 1.79 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 309 -a 1 + -t 1.79 -s 1 -d 3 -p cbr -e 500 -c 1 -i 350 -a 1 - -t 1.79 -s 1 -d 3 -p cbr -e 500 -c 1 -i 350 -a 1 h -t 1.79 -s 1 -d 3 -p cbr -e 500 -c 1 -i 350 -a 1 r -t 1.79005 -s 3 -d 0 -p ack -e 40 -c 0 -i 328 -a 0 -S 0 -y {28 28} r -t 1.7916 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 306 -a 0 -S 0 -y {44 44} + -t 1.7916 -s 5 -d 4 -p ack -e 40 -c 0 -i 351 -a 0 -S 0 -y {28 28} - -t 1.7916 -s 5 -d 4 -p ack -e 40 -c 0 -i 351 -a 0 -S 0 -y {28 28} h -t 1.7916 -s 5 -d 4 -p ack -e 40 -c 0 -i 351 -a 0 -S 0 -y {-1 -1} r -t 1.79166 -s 5 -d 4 -p ack -e 40 -c 0 -i 347 -a 0 -S 0 -y {28 28} + -t 1.79166 -s 4 -d 3 -p ack -e 40 -c 0 -i 347 -a 0 -S 0 -y {28 28} - -t 1.79166 -s 4 -d 3 -p ack -e 40 -c 0 -i 347 -a 0 -S 0 -y {28 28} h -t 1.79166 -s 4 -d 3 -p ack -e 40 -c 0 -i 347 -a 0 -S 0 -y {-1 -1} - -t 1.792 -s 3 -d 4 -p cbr -e 500 -c 1 -i 327 -a 1 h -t 1.792 -s 3 -d 4 -p cbr -e 500 -c 1 -i 327 -a 1 r -t 1.794 -s 1 -d 3 -p cbr -e 500 -c 1 -i 346 -a 1 + -t 1.794 -s 3 -d 4 -p cbr -e 500 -c 1 -i 346 -a 1 - -t 1.796 -s 3 -d 4 -p cbr -e 500 -c 1 -i 330 -a 1 h -t 1.796 -s 3 -d 4 -p cbr -e 500 -c 1 -i 330 -a 1 r -t 1.79798 -s 4 -d 3 -p ack -e 40 -c 0 -i 336 -a 0 -S 0 -y {28 28} + -t 1.79798 -s 3 -d 0 -p ack -e 40 -c 0 -i 336 -a 0 -S 0 -y {28 28} - -t 1.79798 -s 3 -d 0 -p ack -e 40 -c 0 -i 336 -a 0 -S 0 -f 0 -m 1 -y {28 28} h -t 1.79798 -s 3 -d 0 -p ack -e 40 -c 0 -i 336 -a 0 -S 0 -y {-1 -1} r -t 1.798 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 313 -a 0 -S 0 -y {47 47} + -t 1.798 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 313 -a 0 -S 0 -y {47 47} - -t 1.798 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 313 -a 0 -S 0 -y {47 47} h -t 1.798 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 313 -a 0 -S 0 -y {-1 -1} r -t 1.798 -s 4 -d 6 -p cbr -e 500 -c 1 -i 307 -a 1 r -t 1.79805 -s 3 -d 0 -p ack -e 40 -c 0 -i 331 -a 0 -S 0 -y {28 28} + -t 1.8 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 352 -a 1 - -t 1.8 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 352 -a 1 h -t 1.8 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 352 -a 1 + -t 1.8 -s 1 -d 3 -p cbr -e 500 -c 1 -i 353 -a 1 - -t 1.8 -s 1 -d 3 -p cbr -e 500 -c 1 -i 353 -a 1 h -t 1.8 -s 1 -d 3 -p cbr -e 500 -c 1 -i 353 -a 1 - -t 1.8 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 329 -a 1 h -t 1.8 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 329 -a 1 r -t 1.8036 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 311 -a 0 -S 0 -y {46 46} + -t 1.8036 -s 5 -d 4 -p ack -e 40 -c 0 -i 354 -a 0 -S 0 -y {28 28} - -t 1.8036 -s 5 -d 4 -p ack -e 40 -c 0 -i 354 -a 0 -S 0 -y {28 28} h -t 1.8036 -s 5 -d 4 -p ack -e 40 -c 0 -i 354 -a 0 -S 0 -y {-1 -1} r -t 1.804 -s 1 -d 3 -p cbr -e 500 -c 1 -i 349 -a 1 + -t 1.804 -s 3 -d 4 -p cbr -e 500 -c 1 -i 349 -a 1 r -t 1.806 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 314 -a 0 -S 0 -y {48 48} + -t 1.806 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 314 -a 0 -S 0 -y {48 48} - -t 1.806 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 314 -a 0 -S 0 -y {48 48} h -t 1.806 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 314 -a 0 -S 0 -y {-1 -1} r -t 1.80605 -s 3 -d 0 -p ack -e 40 -c 0 -i 333 -a 0 -S 0 -y {28 28} r -t 1.808 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 348 -a 1 + -t 1.808 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 348 -a 1 - -t 1.808 -s 3 -d 4 -p cbr -e 500 -c 1 -i 332 -a 1 h -t 1.808 -s 3 -d 4 -p cbr -e 500 -c 1 -i 332 -a 1 r -t 1.81 -s 3 -d 4 -p cbr -e 500 -c 1 -i 316 -a 1 + -t 1.81 -s 4 -d 6 -p cbr -e 500 -c 1 -i 316 -a 1 - -t 1.81 -s 4 -d 6 -p cbr -e 500 -c 1 -i 316 -a 1 h -t 1.81 -s 4 -d 6 -p cbr -e 500 -c 1 -i 316 -a 1 + -t 1.81 -s 1 -d 3 -p cbr -e 500 -c 1 -i 355 -a 1 - -t 1.81 -s 1 -d 3 -p cbr -e 500 -c 1 -i 355 -a 1 h -t 1.81 -s 1 -d 3 -p cbr -e 500 -c 1 -i 355 -a 1 r -t 1.81166 -s 5 -d 4 -p ack -e 40 -c 0 -i 351 -a 0 -S 0 -y {28 28} + -t 1.81166 -s 4 -d 3 -p ack -e 40 -c 0 -i 351 -a 0 -S 0 -y {28 28} - -t 1.81166 -s 4 -d 3 -p ack -e 40 -c 0 -i 351 -a 0 -S 0 -y {28 28} h -t 1.81166 -s 4 -d 3 -p ack -e 40 -c 0 -i 351 -a 0 -S 0 -y {-1 -1} - -t 1.812 -s 3 -d 4 -p cbr -e 500 -c 1 -i 335 -a 1 h -t 1.812 -s 3 -d 4 -p cbr -e 500 -c 1 -i 335 -a 1 r -t 1.814 -s 3 -d 4 -p cbr -e 500 -c 1 -i 317 -a 1 + -t 1.814 -s 4 -d 6 -p cbr -e 500 -c 1 -i 317 -a 1 r -t 1.814 -s 1 -d 3 -p cbr -e 500 -c 1 -i 350 -a 1 + -t 1.814 -s 3 -d 4 -p cbr -e 500 -c 1 -i 350 -a 1 - -t 1.814 -s 4 -d 6 -p cbr -e 500 -c 1 -i 317 -a 1 h -t 1.814 -s 4 -d 6 -p cbr -e 500 -c 1 -i 317 -a 1 - -t 1.816 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 334 -a 1 h -t 1.816 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 334 -a 1 r -t 1.818 -s 3 -d 4 -p cbr -e 500 -c 1 -i 320 -a 1 + -t 1.818 -s 4 -d 6 -p cbr -e 500 -c 1 -i 320 -a 1 r -t 1.818 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 309 -a 1 - -t 1.818 -s 4 -d 6 -p cbr -e 500 -c 1 -i 320 -a 1 h -t 1.818 -s 4 -d 6 -p cbr -e 500 -c 1 -i 320 -a 1 r -t 1.81805 -s 3 -d 0 -p ack -e 40 -c 0 -i 336 -a 0 -S 0 -y {28 28} r -t 1.8196 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 313 -a 0 -S 0 -y {47 47} + -t 1.8196 -s 5 -d 4 -p ack -e 40 -c 0 -i 356 -a 0 -S 0 -y {28 28} - -t 1.8196 -s 5 -d 4 -p ack -e 40 -c 0 -i 356 -a 0 -S 0 -y {28 28} h -t 1.8196 -s 5 -d 4 -p ack -e 40 -c 0 -i 356 -a 0 -S 0 -y {-1 -1} + -t 1.82 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 357 -a 1 - -t 1.82 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 357 -a 1 h -t 1.82 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 357 -a 1 + -t 1.82 -s 1 -d 3 -p cbr -e 500 -c 1 -i 358 -a 1 - -t 1.82 -s 1 -d 3 -p cbr -e 500 -c 1 -i 358 -a 1 h -t 1.82 -s 1 -d 3 -p cbr -e 500 -c 1 -i 358 -a 1 r -t 1.82198 -s 4 -d 3 -p ack -e 40 -c 0 -i 341 -a 0 -S 0 -y {28 28} + -t 1.82198 -s 3 -d 0 -p ack -e 40 -c 0 -i 341 -a 0 -S 0 -y {28 28} - -t 1.82198 -s 3 -d 0 -p ack -e 40 -c 0 -i 341 -a 0 -S 0 -f 0 -m 1 -y {28 28} h -t 1.82198 -s 3 -d 0 -p ack -e 40 -c 0 -i 341 -a 0 -S 0 -y {-1 -1} r -t 1.82366 -s 5 -d 4 -p ack -e 40 -c 0 -i 354 -a 0 -S 0 -y {28 28} + -t 1.82366 -s 4 -d 3 -p ack -e 40 -c 0 -i 354 -a 0 -S 0 -y {28 28} - -t 1.82366 -s 4 -d 3 -p ack -e 40 -c 0 -i 354 -a 0 -S 0 -y {28 28} h -t 1.82366 -s 4 -d 3 -p ack -e 40 -c 0 -i 354 -a 0 -S 0 -y {-1 -1} r -t 1.824 -s 1 -d 3 -p cbr -e 500 -c 1 -i 353 -a 1 + -t 1.824 -s 3 -d 4 -p cbr -e 500 -c 1 -i 353 -a 1 - -t 1.824 -s 3 -d 4 -p cbr -e 500 -c 1 -i 337 -a 1 h -t 1.824 -s 3 -d 4 -p cbr -e 500 -c 1 -i 337 -a 1 r -t 1.826 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 319 -a 1 + -t 1.826 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 319 -a 1 - -t 1.826 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 319 -a 1 h -t 1.826 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 319 -a 1 r -t 1.8276 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 314 -a 0 -S 0 -y {48 48} + -t 1.8276 -s 5 -d 4 -p ack -e 40 -c 0 -i 359 -a 0 -S 0 -y {28 28} - -t 1.8276 -s 5 -d 4 -p ack -e 40 -c 0 -i 359 -a 0 -S 0 -y {28 28} h -t 1.8276 -s 5 -d 4 -p ack -e 40 -c 0 -i 359 -a 0 -S 0 -y {-1 -1} r -t 1.828 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 352 -a 1 + -t 1.828 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 352 -a 1 - -t 1.828 -s 3 -d 4 -p cbr -e 500 -c 1 -i 339 -a 1 h -t 1.828 -s 3 -d 4 -p cbr -e 500 -c 1 -i 339 -a 1 r -t 1.83 -s 3 -d 4 -p cbr -e 500 -c 1 -i 322 -a 1 + -t 1.83 -s 4 -d 6 -p cbr -e 500 -c 1 -i 322 -a 1 - -t 1.83 -s 4 -d 6 -p cbr -e 500 -c 1 -i 322 -a 1 h -t 1.83 -s 4 -d 6 -p cbr -e 500 -c 1 -i 322 -a 1 + -t 1.83 -s 1 -d 3 -p cbr -e 500 -c 1 -i 360 -a 1 - -t 1.83 -s 1 -d 3 -p cbr -e 500 -c 1 -i 360 -a 1 h -t 1.83 -s 1 -d 3 -p cbr -e 500 -c 1 -i 360 -a 1 - -t 1.832 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 338 -a 1 h -t 1.832 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 338 -a 1 r -t 1.83398 -s 4 -d 3 -p ack -e 40 -c 0 -i 345 -a 0 -S 0 -y {28 28} + -t 1.83398 -s 3 -d 0 -p ack -e 40 -c 0 -i 345 -a 0 -S 0 -y {28 28} - -t 1.83398 -s 3 -d 0 -p ack -e 40 -c 0 -i 345 -a 0 -S 0 -f 0 -m 1 -y {28 28} h -t 1.83398 -s 3 -d 0 -p ack -e 40 -c 0 -i 345 -a 0 -S 0 -y {-1 -1} r -t 1.834 -s 3 -d 4 -p cbr -e 500 -c 1 -i 325 -a 1 + -t 1.834 -s 4 -d 6 -p cbr -e 500 -c 1 -i 325 -a 1 r -t 1.834 -s 4 -d 6 -p cbr -e 500 -c 1 -i 316 -a 1 r -t 1.834 -s 1 -d 3 -p cbr -e 500 -c 1 -i 355 -a 1 + -t 1.834 -s 3 -d 4 -p cbr -e 500 -c 1 -i 355 -a 1 - -t 1.834 -s 4 -d 6 -p cbr -e 500 -c 1 -i 325 -a 1 h -t 1.834 -s 4 -d 6 -p cbr -e 500 -c 1 -i 325 -a 1 r -t 1.838 -s 4 -d 6 -p cbr -e 500 -c 1 -i 317 -a 1 r -t 1.83966 -s 5 -d 4 -p ack -e 40 -c 0 -i 356 -a 0 -S 0 -y {28 28} + -t 1.83966 -s 4 -d 3 -p ack -e 40 -c 0 -i 356 -a 0 -S 0 -y {28 28} - -t 1.83966 -s 4 -d 3 -p ack -e 40 -c 0 -i 356 -a 0 -S 0 -y {28 28} h -t 1.83966 -s 4 -d 3 -p ack -e 40 -c 0 -i 356 -a 0 -S 0 -y {-1 -1} + -t 1.84 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 361 -a 1 - -t 1.84 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 361 -a 1 h -t 1.84 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 361 -a 1 + -t 1.84 -s 1 -d 3 -p cbr -e 500 -c 1 -i 362 -a 1 - -t 1.84 -s 1 -d 3 -p cbr -e 500 -c 1 -i 362 -a 1 h -t 1.84 -s 1 -d 3 -p cbr -e 500 -c 1 -i 362 -a 1 - -t 1.84 -s 3 -d 4 -p cbr -e 500 -c 1 -i 340 -a 1 h -t 1.84 -s 3 -d 4 -p cbr -e 500 -c 1 -i 340 -a 1 r -t 1.84198 -s 4 -d 3 -p ack -e 40 -c 0 -i 347 -a 0 -S 0 -y {28 28} + -t 1.84198 -s 3 -d 0 -p ack -e 40 -c 0 -i 347 -a 0 -S 0 -y {28 28} - -t 1.84198 -s 3 -d 0 -p ack -e 40 -c 0 -i 347 -a 0 -S 0 -f 0 -m 1 -y {28 28} h -t 1.84198 -s 3 -d 0 -p ack -e 40 -c 0 -i 347 -a 0 -S 0 -y {-1 -1} r -t 1.842 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 324 -a 1 + -t 1.842 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 324 -a 1 - -t 1.842 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 324 -a 1 h -t 1.842 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 324 -a 1 r -t 1.842 -s 4 -d 6 -p cbr -e 500 -c 1 -i 320 -a 1 r -t 1.84205 -s 3 -d 0 -p ack -e 40 -c 0 -i 341 -a 0 -S 0 -y {28 28} r -t 1.844 -s 1 -d 3 -p cbr -e 500 -c 1 -i 358 -a 1 + -t 1.844 -s 3 -d 4 -p cbr -e 500 -c 1 -i 358 -a 1 - -t 1.844 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 342 -a 0 -S 0 -f 1 -y {29 29} h -t 1.844 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 342 -a 0 -S 0 -f 1 -y {-1 -1} r -t 1.846 -s 3 -d 4 -p cbr -e 500 -c 1 -i 327 -a 1 + -t 1.846 -s 4 -d 6 -p cbr -e 500 -c 1 -i 327 -a 1 - -t 1.846 -s 4 -d 6 -p cbr -e 500 -c 1 -i 327 -a 1 h -t 1.846 -s 4 -d 6 -p cbr -e 500 -c 1 -i 327 -a 1 r -t 1.84766 -s 5 -d 4 -p ack -e 40 -c 0 -i 359 -a 0 -S 0 -y {28 28} + -t 1.84766 -s 4 -d 3 -p ack -e 40 -c 0 -i 359 -a 0 -S 0 -y {28 28} - -t 1.84766 -s 4 -d 3 -p ack -e 40 -c 0 -i 359 -a 0 -S 0 -y {28 28} h -t 1.84766 -s 4 -d 3 -p ack -e 40 -c 0 -i 359 -a 0 -S 0 -y {-1 -1} r -t 1.848 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 357 -a 1 + -t 1.848 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 357 -a 1 r -t 1.85 -s 3 -d 4 -p cbr -e 500 -c 1 -i 330 -a 1 + -t 1.85 -s 4 -d 6 -p cbr -e 500 -c 1 -i 330 -a 1 + -t 1.85 -s 1 -d 3 -p cbr -e 500 -c 1 -i 363 -a 1 - -t 1.85 -s 1 -d 3 -p cbr -e 500 -c 1 -i 363 -a 1 h -t 1.85 -s 1 -d 3 -p cbr -e 500 -c 1 -i 363 -a 1 - -t 1.85 -s 4 -d 6 -p cbr -e 500 -c 1 -i 330 -a 1 h -t 1.85 -s 4 -d 6 -p cbr -e 500 -c 1 -i 330 -a 1 - -t 1.852 -s 3 -d 4 -p cbr -e 500 -c 1 -i 344 -a 1 h -t 1.852 -s 3 -d 4 -p cbr -e 500 -c 1 -i 344 -a 1 r -t 1.854 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 319 -a 1 r -t 1.854 -s 4 -d 6 -p cbr -e 500 -c 1 -i 322 -a 1 r -t 1.854 -s 1 -d 3 -p cbr -e 500 -c 1 -i 360 -a 1 + -t 1.854 -s 3 -d 4 -p cbr -e 500 -c 1 -i 360 -a 1 r -t 1.85405 -s 3 -d 0 -p ack -e 40 -c 0 -i 345 -a 0 -S 0 -y {28 28} - -t 1.856 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 343 -a 1 h -t 1.856 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 343 -a 1 r -t 1.858 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 329 -a 1 + -t 1.858 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 329 -a 1 - -t 1.858 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 329 -a 1 h -t 1.858 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 329 -a 1 r -t 1.858 -s 4 -d 6 -p cbr -e 500 -c 1 -i 325 -a 1 + -t 1.86 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 364 -a 1 - -t 1.86 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 364 -a 1 h -t 1.86 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 364 -a 1 + -t 1.86 -s 1 -d 3 -p cbr -e 500 -c 1 -i 365 -a 1 - -t 1.86 -s 1 -d 3 -p cbr -e 500 -c 1 -i 365 -a 1 h -t 1.86 -s 1 -d 3 -p cbr -e 500 -c 1 -i 365 -a 1 r -t 1.86198 -s 4 -d 3 -p ack -e 40 -c 0 -i 351 -a 0 -S 0 -y {28 28} + -t 1.86198 -s 3 -d 0 -p ack -e 40 -c 0 -i 351 -a 0 -S 0 -y {28 28} - -t 1.86198 -s 3 -d 0 -p ack -e 40 -c 0 -i 351 -a 0 -S 0 -f 0 -m 1 -y {28 28} h -t 1.86198 -s 3 -d 0 -p ack -e 40 -c 0 -i 351 -a 0 -S 0 -y {-1 -1} r -t 1.862 -s 3 -d 4 -p cbr -e 500 -c 1 -i 332 -a 1 + -t 1.862 -s 4 -d 6 -p cbr -e 500 -c 1 -i 332 -a 1 - -t 1.862 -s 4 -d 6 -p cbr -e 500 -c 1 -i 332 -a 1 h -t 1.862 -s 4 -d 6 -p cbr -e 500 -c 1 -i 332 -a 1 r -t 1.86205 -s 3 -d 0 -p ack -e 40 -c 0 -i 347 -a 0 -S 0 -y {28 28} r -t 1.864 -s 1 -d 3 -p cbr -e 500 -c 1 -i 362 -a 1 + -t 1.864 -s 3 -d 4 -p cbr -e 500 -c 1 -i 362 -a 1 - -t 1.864 -s 3 -d 4 -p cbr -e 500 -c 1 -i 346 -a 1 h -t 1.864 -s 3 -d 4 -p cbr -e 500 -c 1 -i 346 -a 1 r -t 1.866 -s 3 -d 4 -p cbr -e 500 -c 1 -i 335 -a 1 + -t 1.866 -s 4 -d 6 -p cbr -e 500 -c 1 -i 335 -a 1 - -t 1.866 -s 4 -d 6 -p cbr -e 500 -c 1 -i 335 -a 1 h -t 1.866 -s 4 -d 6 -p cbr -e 500 -c 1 -i 335 -a 1 r -t 1.868 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 361 -a 1 + -t 1.868 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 361 -a 1 - -t 1.868 -s 3 -d 4 -p cbr -e 500 -c 1 -i 349 -a 1 h -t 1.868 -s 3 -d 4 -p cbr -e 500 -c 1 -i 349 -a 1 r -t 1.87 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 324 -a 1 r -t 1.87 -s 4 -d 6 -p cbr -e 500 -c 1 -i 327 -a 1 + -t 1.87 -s 1 -d 3 -p cbr -e 500 -c 1 -i 366 -a 1 - -t 1.87 -s 1 -d 3 -p cbr -e 500 -c 1 -i 366 -a 1 h -t 1.87 -s 1 -d 3 -p cbr -e 500 -c 1 -i 366 -a 1 - -t 1.872 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 348 -a 1 h -t 1.872 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 348 -a 1 r -t 1.87398 -s 4 -d 3 -p ack -e 40 -c 0 -i 354 -a 0 -S 0 -y {28 28} + -t 1.87398 -s 3 -d 0 -p ack -e 40 -c 0 -i 354 -a 0 -S 0 -y {28 28} - -t 1.87398 -s 3 -d 0 -p ack -e 40 -c 0 -i 354 -a 0 -S 0 -f 0 -m 1 -y {28 28} h -t 1.87398 -s 3 -d 0 -p ack -e 40 -c 0 -i 354 -a 0 -S 0 -y {-1 -1} r -t 1.874 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 334 -a 1 + -t 1.874 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 334 -a 1 - -t 1.874 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 334 -a 1 h -t 1.874 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 334 -a 1 r -t 1.874 -s 1 -d 3 -p cbr -e 500 -c 1 -i 363 -a 1 + -t 1.874 -s 3 -d 4 -p cbr -e 500 -c 1 -i 363 -a 1 r -t 1.874 -s 4 -d 6 -p cbr -e 500 -c 1 -i 330 -a 1 r -t 1.878 -s 3 -d 4 -p cbr -e 500 -c 1 -i 337 -a 1 + -t 1.878 -s 4 -d 6 -p cbr -e 500 -c 1 -i 337 -a 1 - -t 1.878 -s 4 -d 6 -p cbr -e 500 -c 1 -i 337 -a 1 h -t 1.878 -s 4 -d 6 -p cbr -e 500 -c 1 -i 337 -a 1 + -t 1.88 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 367 -a 1 - -t 1.88 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 367 -a 1 h -t 1.88 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 367 -a 1 + -t 1.88 -s 1 -d 3 -p cbr -e 500 -c 1 -i 368 -a 1 - -t 1.88 -s 1 -d 3 -p cbr -e 500 -c 1 -i 368 -a 1 h -t 1.88 -s 1 -d 3 -p cbr -e 500 -c 1 -i 368 -a 1 - -t 1.88 -s 3 -d 4 -p cbr -e 500 -c 1 -i 350 -a 1 h -t 1.88 -s 3 -d 4 -p cbr -e 500 -c 1 -i 350 -a 1 r -t 1.882 -s 3 -d 4 -p cbr -e 500 -c 1 -i 339 -a 1 + -t 1.882 -s 4 -d 6 -p cbr -e 500 -c 1 -i 339 -a 1 - -t 1.882 -s 4 -d 6 -p cbr -e 500 -c 1 -i 339 -a 1 h -t 1.882 -s 4 -d 6 -p cbr -e 500 -c 1 -i 339 -a 1 r -t 1.88205 -s 3 -d 0 -p ack -e 40 -c 0 -i 351 -a 0 -S 0 -y {28 28} r -t 1.884 -s 1 -d 3 -p cbr -e 500 -c 1 -i 365 -a 1 + -t 1.884 -s 3 -d 4 -p cbr -e 500 -c 1 -i 365 -a 1 - -t 1.884 -s 3 -d 4 -p cbr -e 500 -c 1 -i 353 -a 1 h -t 1.884 -s 3 -d 4 -p cbr -e 500 -c 1 -i 353 -a 1 r -t 1.886 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 329 -a 1 r -t 1.886 -s 4 -d 6 -p cbr -e 500 -c 1 -i 332 -a 1 r -t 1.888 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 364 -a 1 + -t 1.888 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 364 -a 1 - -t 1.888 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 352 -a 1 h -t 1.888 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 352 -a 1 r -t 1.88998 -s 4 -d 3 -p ack -e 40 -c 0 -i 356 -a 0 -S 0 -y {28 28} + -t 1.88998 -s 3 -d 0 -p ack -e 40 -c 0 -i 356 -a 0 -S 0 -y {28 28} - -t 1.88998 -s 3 -d 0 -p ack -e 40 -c 0 -i 356 -a 0 -S 0 -f 0 -m 1 -y {28 28} h -t 1.88998 -s 3 -d 0 -p ack -e 40 -c 0 -i 356 -a 0 -S 0 -y {-1 -1} r -t 1.89 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 338 -a 1 + -t 1.89 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 338 -a 1 - -t 1.89 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 338 -a 1 h -t 1.89 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 338 -a 1 r -t 1.89 -s 4 -d 6 -p cbr -e 500 -c 1 -i 335 -a 1 + -t 1.89 -s 1 -d 3 -p cbr -e 500 -c 1 -i 369 -a 1 - -t 1.89 -s 1 -d 3 -p cbr -e 500 -c 1 -i 369 -a 1 h -t 1.89 -s 1 -d 3 -p cbr -e 500 -c 1 -i 369 -a 1 r -t 1.894 -s 3 -d 4 -p cbr -e 500 -c 1 -i 340 -a 1 + -t 1.894 -s 4 -d 6 -p cbr -e 500 -c 1 -i 340 -a 1 - -t 1.894 -s 4 -d 6 -p cbr -e 500 -c 1 -i 340 -a 1 h -t 1.894 -s 4 -d 6 -p cbr -e 500 -c 1 -i 340 -a 1 r -t 1.894 -s 1 -d 3 -p cbr -e 500 -c 1 -i 366 -a 1 + -t 1.894 -s 3 -d 4 -p cbr -e 500 -c 1 -i 366 -a 1 r -t 1.89405 -s 3 -d 0 -p ack -e 40 -c 0 -i 354 -a 0 -S 0 -y {28 28} - -t 1.896 -s 3 -d 4 -p cbr -e 500 -c 1 -i 355 -a 1 h -t 1.896 -s 3 -d 4 -p cbr -e 500 -c 1 -i 355 -a 1 r -t 1.89798 -s 4 -d 3 -p ack -e 40 -c 0 -i 359 -a 0 -S 0 -y {28 28} + -t 1.89798 -s 3 -d 0 -p ack -e 40 -c 0 -i 359 -a 0 -S 0 -y {28 28} - -t 1.89798 -s 3 -d 0 -p ack -e 40 -c 0 -i 359 -a 0 -S 0 -f 0 -m 1 -y {28 28} h -t 1.89798 -s 3 -d 0 -p ack -e 40 -c 0 -i 359 -a 0 -S 0 -y {-1 -1} + -t 1.9 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 370 -a 1 - -t 1.9 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 370 -a 1 h -t 1.9 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 370 -a 1 + -t 1.9 -s 1 -d 3 -p cbr -e 500 -c 1 -i 371 -a 1 - -t 1.9 -s 1 -d 3 -p cbr -e 500 -c 1 -i 371 -a 1 h -t 1.9 -s 1 -d 3 -p cbr -e 500 -c 1 -i 371 -a 1 - -t 1.9 -s 3 -d 4 -p cbr -e 500 -c 1 -i 358 -a 1 h -t 1.9 -s 3 -d 4 -p cbr -e 500 -c 1 -i 358 -a 1 r -t 1.902 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 342 -a 0 -S 0 -f 1 -y {29 29} + -t 1.902 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 342 -a 0 -S 0 -f 1 -y {29 29} - -t 1.902 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 342 -a 0 -S 0 -f 1 -y {29 29} h -t 1.902 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 342 -a 0 -S 0 -f 1 -y {-1 -1} r -t 1.902 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 334 -a 1 r -t 1.902 -s 4 -d 6 -p cbr -e 500 -c 1 -i 337 -a 1 r -t 1.904 -s 1 -d 3 -p cbr -e 500 -c 1 -i 368 -a 1 + -t 1.904 -s 3 -d 4 -p cbr -e 500 -c 1 -i 368 -a 1 - -t 1.904 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 357 -a 1 h -t 1.904 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 357 -a 1 r -t 1.906 -s 3 -d 4 -p cbr -e 500 -c 1 -i 344 -a 1 + -t 1.906 -s 4 -d 6 -p cbr -e 500 -c 1 -i 344 -a 1 - -t 1.906 -s 4 -d 6 -p cbr -e 500 -c 1 -i 344 -a 1 h -t 1.906 -s 4 -d 6 -p cbr -e 500 -c 1 -i 344 -a 1 r -t 1.906 -s 4 -d 6 -p cbr -e 500 -c 1 -i 339 -a 1 r -t 1.908 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 367 -a 1 + -t 1.908 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 367 -a 1 + -t 1.91 -s 1 -d 3 -p cbr -e 500 -c 1 -i 372 -a 1 - -t 1.91 -s 1 -d 3 -p cbr -e 500 -c 1 -i 372 -a 1 h -t 1.91 -s 1 -d 3 -p cbr -e 500 -c 1 -i 372 -a 1 r -t 1.91005 -s 3 -d 0 -p ack -e 40 -c 0 -i 356 -a 0 -S 0 -y {28 28} - -t 1.912 -s 3 -d 4 -p cbr -e 500 -c 1 -i 360 -a 1 h -t 1.912 -s 3 -d 4 -p cbr -e 500 -c 1 -i 360 -a 1 r -t 1.914 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 343 -a 1 + -t 1.914 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 343 -a 1 - -t 1.914 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 343 -a 1 h -t 1.914 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 343 -a 1 r -t 1.914 -s 1 -d 3 -p cbr -e 500 -c 1 -i 369 -a 1 + -t 1.914 -s 3 -d 4 -p cbr -e 500 -c 1 -i 369 -a 1 - -t 1.916 -s 3 -d 4 -p cbr -e 500 -c 1 -i 362 -a 1 h -t 1.916 -s 3 -d 4 -p cbr -e 500 -c 1 -i 362 -a 1 r -t 1.918 -s 3 -d 4 -p cbr -e 500 -c 1 -i 346 -a 1 + -t 1.918 -s 4 -d 6 -p cbr -e 500 -c 1 -i 346 -a 1 - -t 1.918 -s 4 -d 6 -p cbr -e 500 -c 1 -i 346 -a 1 h -t 1.918 -s 4 -d 6 -p cbr -e 500 -c 1 -i 346 -a 1 r -t 1.918 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 338 -a 1 r -t 1.918 -s 4 -d 6 -p cbr -e 500 -c 1 -i 340 -a 1 r -t 1.91805 -s 3 -d 0 -p ack -e 40 -c 0 -i 359 -a 0 -S 0 -y {28 28} + -t 1.92 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 373 -a 1 - -t 1.92 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 373 -a 1 h -t 1.92 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 373 -a 1 + -t 1.92 -s 1 -d 3 -p cbr -e 500 -c 1 -i 374 -a 1 - -t 1.92 -s 1 -d 3 -p cbr -e 500 -c 1 -i 374 -a 1 h -t 1.92 -s 1 -d 3 -p cbr -e 500 -c 1 -i 374 -a 1 - -t 1.92 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 361 -a 1 h -t 1.92 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 361 -a 1 r -t 1.922 -s 3 -d 4 -p cbr -e 500 -c 1 -i 349 -a 1 + -t 1.922 -s 4 -d 6 -p cbr -e 500 -c 1 -i 349 -a 1 - -t 1.922 -s 4 -d 6 -p cbr -e 500 -c 1 -i 349 -a 1 h -t 1.922 -s 4 -d 6 -p cbr -e 500 -c 1 -i 349 -a 1 r -t 1.9236 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 342 -a 0 -S 0 -f 1 -y {29 29} + -t 1.9236 -s 5 -d 4 -p ack -e 40 -c 0 -i 375 -a 0 -S 0 -y {34 34} - -t 1.9236 -s 5 -d 4 -p ack -e 40 -c 0 -i 375 -a 0 -S 0 -y {34 34} h -t 1.9236 -s 5 -d 4 -p ack -e 40 -c 0 -i 375 -a 0 -S 0 -y {-1 -1} r -t 1.924 -s 1 -d 3 -p cbr -e 500 -c 1 -i 371 -a 1 + -t 1.924 -s 3 -d 4 -p cbr -e 500 -c 1 -i 371 -a 1 r -t 1.928 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 370 -a 1 + -t 1.928 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 370 -a 1 - -t 1.928 -s 3 -d 4 -p cbr -e 500 -c 1 -i 363 -a 1 h -t 1.928 -s 3 -d 4 -p cbr -e 500 -c 1 -i 363 -a 1 r -t 1.93 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 348 -a 1 + -t 1.93 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 348 -a 1 - -t 1.93 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 348 -a 1 h -t 1.93 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 348 -a 1 r -t 1.93 -s 4 -d 6 -p cbr -e 500 -c 1 -i 344 -a 1 + -t 1.93 -s 1 -d 3 -p cbr -e 500 -c 1 -i 376 -a 1 - -t 1.93 -s 1 -d 3 -p cbr -e 500 -c 1 -i 376 -a 1 h -t 1.93 -s 1 -d 3 -p cbr -e 500 -c 1 -i 376 -a 1 - -t 1.932 -s 3 -d 4 -p cbr -e 500 -c 1 -i 365 -a 1 h -t 1.932 -s 3 -d 4 -p cbr -e 500 -c 1 -i 365 -a 1 r -t 1.934 -s 3 -d 4 -p cbr -e 500 -c 1 -i 350 -a 1 + -t 1.934 -s 4 -d 6 -p cbr -e 500 -c 1 -i 350 -a 1 - -t 1.934 -s 4 -d 6 -p cbr -e 500 -c 1 -i 350 -a 1 h -t 1.934 -s 4 -d 6 -p cbr -e 500 -c 1 -i 350 -a 1 r -t 1.934 -s 1 -d 3 -p cbr -e 500 -c 1 -i 372 -a 1 + -t 1.934 -s 3 -d 4 -p cbr -e 500 -c 1 -i 372 -a 1 - -t 1.936 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 364 -a 1 h -t 1.936 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 364 -a 1 r -t 1.938 -s 3 -d 4 -p cbr -e 500 -c 1 -i 353 -a 1 + -t 1.938 -s 4 -d 6 -p cbr -e 500 -c 1 -i 353 -a 1 - -t 1.938 -s 4 -d 6 -p cbr -e 500 -c 1 -i 353 -a 1 h -t 1.938 -s 4 -d 6 -p cbr -e 500 -c 1 -i 353 -a 1 + -t 1.94 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 377 -a 1 - -t 1.94 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 377 -a 1 h -t 1.94 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 377 -a 1 + -t 1.94 -s 1 -d 3 -p cbr -e 500 -c 1 -i 378 -a 1 - -t 1.94 -s 1 -d 3 -p cbr -e 500 -c 1 -i 378 -a 1 h -t 1.94 -s 1 -d 3 -p cbr -e 500 -c 1 -i 378 -a 1 r -t 1.942 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 343 -a 1 r -t 1.942 -s 4 -d 6 -p cbr -e 500 -c 1 -i 346 -a 1 r -t 1.94366 -s 5 -d 4 -p ack -e 40 -c 0 -i 375 -a 0 -S 0 -y {34 34} + -t 1.94366 -s 4 -d 3 -p ack -e 40 -c 0 -i 375 -a 0 -S 0 -y {34 34} - -t 1.94366 -s 4 -d 3 -p ack -e 40 -c 0 -i 375 -a 0 -S 0 -y {34 34} h -t 1.94366 -s 4 -d 3 -p ack -e 40 -c 0 -i 375 -a 0 -S 0 -y {-1 -1} r -t 1.944 -s 1 -d 3 -p cbr -e 500 -c 1 -i 374 -a 1 + -t 1.944 -s 3 -d 4 -p cbr -e 500 -c 1 -i 374 -a 1 - -t 1.944 -s 3 -d 4 -p cbr -e 500 -c 1 -i 366 -a 1 h -t 1.944 -s 3 -d 4 -p cbr -e 500 -c 1 -i 366 -a 1 r -t 1.946 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 352 -a 1 + -t 1.946 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 352 -a 1 - -t 1.946 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 352 -a 1 h -t 1.946 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 352 -a 1 r -t 1.946 -s 4 -d 6 -p cbr -e 500 -c 1 -i 349 -a 1 r -t 1.948 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 373 -a 1 + -t 1.948 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 373 -a 1 - -t 1.948 -s 3 -d 4 -p cbr -e 500 -c 1 -i 368 -a 1 h -t 1.948 -s 3 -d 4 -p cbr -e 500 -c 1 -i 368 -a 1 r -t 1.95 -s 3 -d 4 -p cbr -e 500 -c 1 -i 355 -a 1 + -t 1.95 -s 4 -d 6 -p cbr -e 500 -c 1 -i 355 -a 1 - -t 1.95 -s 4 -d 6 -p cbr -e 500 -c 1 -i 355 -a 1 h -t 1.95 -s 4 -d 6 -p cbr -e 500 -c 1 -i 355 -a 1 + -t 1.95 -s 1 -d 3 -p cbr -e 500 -c 1 -i 379 -a 1 - -t 1.95 -s 1 -d 3 -p cbr -e 500 -c 1 -i 379 -a 1 h -t 1.95 -s 1 -d 3 -p cbr -e 500 -c 1 -i 379 -a 1 - -t 1.952 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 367 -a 1 h -t 1.952 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 367 -a 1 r -t 1.954 -s 3 -d 4 -p cbr -e 500 -c 1 -i 358 -a 1 + -t 1.954 -s 4 -d 6 -p cbr -e 500 -c 1 -i 358 -a 1 r -t 1.954 -s 1 -d 3 -p cbr -e 500 -c 1 -i 376 -a 1 + -t 1.954 -s 3 -d 4 -p cbr -e 500 -c 1 -i 376 -a 1 - -t 1.954 -s 4 -d 6 -p cbr -e 500 -c 1 -i 358 -a 1 h -t 1.954 -s 4 -d 6 -p cbr -e 500 -c 1 -i 358 -a 1 r -t 1.958 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 348 -a 1 r -t 1.958 -s 4 -d 6 -p cbr -e 500 -c 1 -i 350 -a 1 + -t 1.96 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 380 -a 1 - -t 1.96 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 380 -a 1 h -t 1.96 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 380 -a 1 + -t 1.96 -s 1 -d 3 -p cbr -e 500 -c 1 -i 381 -a 1 - -t 1.96 -s 1 -d 3 -p cbr -e 500 -c 1 -i 381 -a 1 h -t 1.96 -s 1 -d 3 -p cbr -e 500 -c 1 -i 381 -a 1 - -t 1.96 -s 3 -d 4 -p cbr -e 500 -c 1 -i 369 -a 1 h -t 1.96 -s 3 -d 4 -p cbr -e 500 -c 1 -i 369 -a 1 r -t 1.962 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 357 -a 1 + -t 1.962 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 357 -a 1 - -t 1.962 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 357 -a 1 h -t 1.962 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 357 -a 1 r -t 1.962 -s 4 -d 6 -p cbr -e 500 -c 1 -i 353 -a 1 r -t 1.964 -s 1 -d 3 -p cbr -e 500 -c 1 -i 378 -a 1 + -t 1.964 -s 3 -d 4 -p cbr -e 500 -c 1 -i 378 -a 1 - -t 1.964 -s 3 -d 4 -p cbr -e 500 -c 1 -i 371 -a 1 h -t 1.964 -s 3 -d 4 -p cbr -e 500 -c 1 -i 371 -a 1 r -t 1.966 -s 3 -d 4 -p cbr -e 500 -c 1 -i 360 -a 1 + -t 1.966 -s 4 -d 6 -p cbr -e 500 -c 1 -i 360 -a 1 - -t 1.966 -s 4 -d 6 -p cbr -e 500 -c 1 -i 360 -a 1 h -t 1.966 -s 4 -d 6 -p cbr -e 500 -c 1 -i 360 -a 1 r -t 1.968 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 377 -a 1 + -t 1.968 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 377 -a 1 - -t 1.968 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 370 -a 1 h -t 1.968 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 370 -a 1 r -t 1.97 -s 3 -d 4 -p cbr -e 500 -c 1 -i 362 -a 1 + -t 1.97 -s 4 -d 6 -p cbr -e 500 -c 1 -i 362 -a 1 + -t 1.97 -s 1 -d 3 -p cbr -e 500 -c 1 -i 382 -a 1 - -t 1.97 -s 1 -d 3 -p cbr -e 500 -c 1 -i 382 -a 1 h -t 1.97 -s 1 -d 3 -p cbr -e 500 -c 1 -i 382 -a 1 - -t 1.97 -s 4 -d 6 -p cbr -e 500 -c 1 -i 362 -a 1 h -t 1.97 -s 4 -d 6 -p cbr -e 500 -c 1 -i 362 -a 1 r -t 1.974 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 352 -a 1 r -t 1.974 -s 4 -d 6 -p cbr -e 500 -c 1 -i 355 -a 1 r -t 1.974 -s 1 -d 3 -p cbr -e 500 -c 1 -i 379 -a 1 + -t 1.974 -s 3 -d 4 -p cbr -e 500 -c 1 -i 379 -a 1 - -t 1.976 -s 3 -d 4 -p cbr -e 500 -c 1 -i 372 -a 1 h -t 1.976 -s 3 -d 4 -p cbr -e 500 -c 1 -i 372 -a 1 r -t 1.978 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 361 -a 1 + -t 1.978 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 361 -a 1 - -t 1.978 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 361 -a 1 h -t 1.978 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 361 -a 1 r -t 1.978 -s 4 -d 6 -p cbr -e 500 -c 1 -i 358 -a 1 + -t 1.98 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 383 -a 1 - -t 1.98 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 383 -a 1 h -t 1.98 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 383 -a 1 + -t 1.98 -s 1 -d 3 -p cbr -e 500 -c 1 -i 384 -a 1 - -t 1.98 -s 1 -d 3 -p cbr -e 500 -c 1 -i 384 -a 1 h -t 1.98 -s 1 -d 3 -p cbr -e 500 -c 1 -i 384 -a 1 - -t 1.98 -s 3 -d 4 -p cbr -e 500 -c 1 -i 374 -a 1 h -t 1.98 -s 3 -d 4 -p cbr -e 500 -c 1 -i 374 -a 1 r -t 1.982 -s 3 -d 4 -p cbr -e 500 -c 1 -i 363 -a 1 + -t 1.982 -s 4 -d 6 -p cbr -e 500 -c 1 -i 363 -a 1 - -t 1.982 -s 4 -d 6 -p cbr -e 500 -c 1 -i 363 -a 1 h -t 1.982 -s 4 -d 6 -p cbr -e 500 -c 1 -i 363 -a 1 r -t 1.984 -s 1 -d 3 -p cbr -e 500 -c 1 -i 381 -a 1 + -t 1.984 -s 3 -d 4 -p cbr -e 500 -c 1 -i 381 -a 1 - -t 1.984 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 373 -a 1 h -t 1.984 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 373 -a 1 r -t 1.986 -s 3 -d 4 -p cbr -e 500 -c 1 -i 365 -a 1 + -t 1.986 -s 4 -d 6 -p cbr -e 500 -c 1 -i 365 -a 1 - -t 1.986 -s 4 -d 6 -p cbr -e 500 -c 1 -i 365 -a 1 h -t 1.986 -s 4 -d 6 -p cbr -e 500 -c 1 -i 365 -a 1 r -t 1.988 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 380 -a 1 + -t 1.988 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 380 -a 1 r -t 1.99 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 357 -a 1 r -t 1.99 -s 4 -d 6 -p cbr -e 500 -c 1 -i 360 -a 1 + -t 1.99 -s 1 -d 3 -p cbr -e 500 -c 1 -i 385 -a 1 - -t 1.99 -s 1 -d 3 -p cbr -e 500 -c 1 -i 385 -a 1 h -t 1.99 -s 1 -d 3 -p cbr -e 500 -c 1 -i 385 -a 1 - -t 1.992 -s 3 -d 4 -p cbr -e 500 -c 1 -i 376 -a 1 h -t 1.992 -s 3 -d 4 -p cbr -e 500 -c 1 -i 376 -a 1 r -t 1.99398 -s 4 -d 3 -p ack -e 40 -c 0 -i 375 -a 0 -S 0 -y {34 34} + -t 1.99398 -s 3 -d 0 -p ack -e 40 -c 0 -i 375 -a 0 -S 0 -y {34 34} - -t 1.99398 -s 3 -d 0 -p ack -e 40 -c 0 -i 375 -a 0 -S 0 -f 0 -m 1 -y {34 34} h -t 1.99398 -s 3 -d 0 -p ack -e 40 -c 0 -i 375 -a 0 -S 0 -y {-1 -1} r -t 1.994 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 364 -a 1 + -t 1.994 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 364 -a 1 - -t 1.994 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 364 -a 1 h -t 1.994 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 364 -a 1 r -t 1.994 -s 1 -d 3 -p cbr -e 500 -c 1 -i 382 -a 1 + -t 1.994 -s 3 -d 4 -p cbr -e 500 -c 1 -i 382 -a 1 r -t 1.994 -s 4 -d 6 -p cbr -e 500 -c 1 -i 362 -a 1 - -t 1.996 -s 3 -d 4 -p cbr -e 500 -c 1 -i 378 -a 1 h -t 1.996 -s 3 -d 4 -p cbr -e 500 -c 1 -i 378 -a 1 r -t 1.998 -s 3 -d 4 -p cbr -e 500 -c 1 -i 366 -a 1 + -t 1.998 -s 4 -d 6 -p cbr -e 500 -c 1 -i 366 -a 1 - -t 1.998 -s 4 -d 6 -p cbr -e 500 -c 1 -i 366 -a 1 h -t 1.998 -s 4 -d 6 -p cbr -e 500 -c 1 -i 366 -a 1 + -t 2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 386 -a 1 - -t 2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 386 -a 1 h -t 2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 386 -a 1 + -t 2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 387 -a 1 - -t 2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 387 -a 1 h -t 2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 387 -a 1 - -t 2 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 377 -a 1 h -t 2 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 377 -a 1 r -t 2.002 -s 3 -d 4 -p cbr -e 500 -c 1 -i 368 -a 1 + -t 2.002 -s 4 -d 6 -p cbr -e 500 -c 1 -i 368 -a 1 - -t 2.002 -s 4 -d 6 -p cbr -e 500 -c 1 -i 368 -a 1 h -t 2.002 -s 4 -d 6 -p cbr -e 500 -c 1 -i 368 -a 1 r -t 2.004 -s 1 -d 3 -p cbr -e 500 -c 1 -i 384 -a 1 + -t 2.004 -s 3 -d 4 -p cbr -e 500 -c 1 -i 384 -a 1 r -t 2.006 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 361 -a 1 r -t 2.006 -s 4 -d 6 -p cbr -e 500 -c 1 -i 363 -a 1 r -t 2.008 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 383 -a 1 + -t 2.008 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 383 -a 1 - -t 2.008 -s 3 -d 4 -p cbr -e 500 -c 1 -i 379 -a 1 h -t 2.008 -s 3 -d 4 -p cbr -e 500 -c 1 -i 379 -a 1 + -t 2.01 -s 1 -d 3 -p cbr -e 500 -c 1 -i 388 -a 1 - -t 2.01 -s 1 -d 3 -p cbr -e 500 -c 1 -i 388 -a 1 h -t 2.01 -s 1 -d 3 -p cbr -e 500 -c 1 -i 388 -a 1 r -t 2.01 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 367 -a 1 + -t 2.01 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 367 -a 1 - -t 2.01 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 367 -a 1 h -t 2.01 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 367 -a 1 r -t 2.01 -s 4 -d 6 -p cbr -e 500 -c 1 -i 365 -a 1 - -t 2.012 -s 3 -d 4 -p cbr -e 500 -c 1 -i 381 -a 1 h -t 2.012 -s 3 -d 4 -p cbr -e 500 -c 1 -i 381 -a 1 r -t 2.014 -s 3 -d 4 -p cbr -e 500 -c 1 -i 369 -a 1 + -t 2.014 -s 4 -d 6 -p cbr -e 500 -c 1 -i 369 -a 1 - -t 2.014 -s 4 -d 6 -p cbr -e 500 -c 1 -i 369 -a 1 h -t 2.014 -s 4 -d 6 -p cbr -e 500 -c 1 -i 369 -a 1 r -t 2.014 -s 1 -d 3 -p cbr -e 500 -c 1 -i 385 -a 1 + -t 2.014 -s 3 -d 4 -p cbr -e 500 -c 1 -i 385 -a 1 r -t 2.01405 -s 3 -d 0 -p ack -e 40 -c 0 -i 375 -a 0 -S 0 -y {34 34} f -t 2.01404800000000161 -s 0 -d 5 -n cwnd_ -a tcp -v 2.000000 -o 1.000000 -T v + -t 2.01405 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 389 -a 0 -S 0 -f 0 -m 0 -y {35 35} - -t 2.01405 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 389 -a 0 -S 0 -y {35 35} h -t 2.01405 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 389 -a 0 -S 0 -y {-1 -1} + -t 2.01405 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 390 -a 0 -S 0 -f 0 -m 0 -y {36 36} - -t 2.01565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 390 -a 0 -S 0 -y {36 36} h -t 2.01565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 390 -a 0 -S 0 -y {-1 -1} - -t 2.016 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 380 -a 1 h -t 2.016 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 380 -a 1 r -t 2.018 -s 3 -d 4 -p cbr -e 500 -c 1 -i 371 -a 1 + -t 2.018 -s 4 -d 6 -p cbr -e 500 -c 1 -i 371 -a 1 - -t 2.018 -s 4 -d 6 -p cbr -e 500 -c 1 -i 371 -a 1 h -t 2.018 -s 4 -d 6 -p cbr -e 500 -c 1 -i 371 -a 1 + -t 2.02 -s 1 -d 3 -p cbr -e 500 -c 1 -i 391 -a 1 - -t 2.02 -s 1 -d 3 -p cbr -e 500 -c 1 -i 391 -a 1 h -t 2.02 -s 1 -d 3 -p cbr -e 500 -c 1 -i 391 -a 1 + -t 2.02 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 392 -a 1 - -t 2.02 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 392 -a 1 h -t 2.02 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 392 -a 1 r -t 2.022 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 364 -a 1 r -t 2.022 -s 4 -d 6 -p cbr -e 500 -c 1 -i 366 -a 1 r -t 2.024 -s 1 -d 3 -p cbr -e 500 -c 1 -i 387 -a 1 + -t 2.024 -s 3 -d 4 -p cbr -e 500 -c 1 -i 387 -a 1 - -t 2.024 -s 3 -d 4 -p cbr -e 500 -c 1 -i 382 -a 1 h -t 2.024 -s 3 -d 4 -p cbr -e 500 -c 1 -i 382 -a 1 r -t 2.026 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 370 -a 1 + -t 2.026 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 370 -a 1 - -t 2.026 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 370 -a 1 h -t 2.026 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 370 -a 1 r -t 2.026 -s 4 -d 6 -p cbr -e 500 -c 1 -i 368 -a 1 r -t 2.028 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 386 -a 1 + -t 2.028 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 386 -a 1 - -t 2.028 -s 3 -d 4 -p cbr -e 500 -c 1 -i 384 -a 1 h -t 2.028 -s 3 -d 4 -p cbr -e 500 -c 1 -i 384 -a 1 + -t 2.03 -s 1 -d 3 -p cbr -e 500 -c 1 -i 393 -a 1 - -t 2.03 -s 1 -d 3 -p cbr -e 500 -c 1 -i 393 -a 1 h -t 2.03 -s 1 -d 3 -p cbr -e 500 -c 1 -i 393 -a 1 r -t 2.03 -s 3 -d 4 -p cbr -e 500 -c 1 -i 372 -a 1 + -t 2.03 -s 4 -d 6 -p cbr -e 500 -c 1 -i 372 -a 1 - -t 2.03 -s 4 -d 6 -p cbr -e 500 -c 1 -i 372 -a 1 h -t 2.03 -s 4 -d 6 -p cbr -e 500 -c 1 -i 372 -a 1 - -t 2.032 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 383 -a 1 h -t 2.032 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 383 -a 1 r -t 2.034 -s 1 -d 3 -p cbr -e 500 -c 1 -i 388 -a 1 + -t 2.034 -s 3 -d 4 -p cbr -e 500 -c 1 -i 388 -a 1 r -t 2.034 -s 3 -d 4 -p cbr -e 500 -c 1 -i 374 -a 1 + -t 2.034 -s 4 -d 6 -p cbr -e 500 -c 1 -i 374 -a 1 - -t 2.034 -s 4 -d 6 -p cbr -e 500 -c 1 -i 374 -a 1 h -t 2.034 -s 4 -d 6 -p cbr -e 500 -c 1 -i 374 -a 1 r -t 2.03565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 389 -a 0 -S 0 -y {35 35} + -t 2.03565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 389 -a 0 -S 0 -y {35 35} r -t 2.03725 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 390 -a 0 -S 0 -y {36 36} + -t 2.03725 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 390 -a 0 -S 0 -y {36 36} r -t 2.038 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 367 -a 1 r -t 2.038 -s 4 -d 6 -p cbr -e 500 -c 1 -i 369 -a 1 + -t 2.04 -s 1 -d 3 -p cbr -e 500 -c 1 -i 394 -a 1 - -t 2.04 -s 1 -d 3 -p cbr -e 500 -c 1 -i 394 -a 1 h -t 2.04 -s 1 -d 3 -p cbr -e 500 -c 1 -i 394 -a 1 + -t 2.04 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 395 -a 1 - -t 2.04 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 395 -a 1 h -t 2.04 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 395 -a 1 - -t 2.04 -s 3 -d 4 -p cbr -e 500 -c 1 -i 385 -a 1 h -t 2.04 -s 3 -d 4 -p cbr -e 500 -c 1 -i 385 -a 1 r -t 2.042 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 373 -a 1 + -t 2.042 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 373 -a 1 - -t 2.042 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 373 -a 1 h -t 2.042 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 373 -a 1 r -t 2.042 -s 4 -d 6 -p cbr -e 500 -c 1 -i 371 -a 1 r -t 2.044 -s 1 -d 3 -p cbr -e 500 -c 1 -i 391 -a 1 + -t 2.044 -s 3 -d 4 -p cbr -e 500 -c 1 -i 391 -a 1 - -t 2.044 -s 3 -d 4 -p cbr -e 500 -c 1 -i 387 -a 1 h -t 2.044 -s 3 -d 4 -p cbr -e 500 -c 1 -i 387 -a 1 r -t 2.046 -s 3 -d 4 -p cbr -e 500 -c 1 -i 376 -a 1 + -t 2.046 -s 4 -d 6 -p cbr -e 500 -c 1 -i 376 -a 1 - -t 2.046 -s 4 -d 6 -p cbr -e 500 -c 1 -i 376 -a 1 h -t 2.046 -s 4 -d 6 -p cbr -e 500 -c 1 -i 376 -a 1 r -t 2.048 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 392 -a 1 + -t 2.048 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 392 -a 1 - -t 2.048 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 386 -a 1 h -t 2.048 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 386 -a 1 + -t 2.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 396 -a 1 - -t 2.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 396 -a 1 h -t 2.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 396 -a 1 r -t 2.05 -s 3 -d 4 -p cbr -e 500 -c 1 -i 378 -a 1 + -t 2.05 -s 4 -d 6 -p cbr -e 500 -c 1 -i 378 -a 1 - -t 2.05 -s 4 -d 6 -p cbr -e 500 -c 1 -i 378 -a 1 h -t 2.05 -s 4 -d 6 -p cbr -e 500 -c 1 -i 378 -a 1 r -t 2.054 -s 1 -d 3 -p cbr -e 500 -c 1 -i 393 -a 1 + -t 2.054 -s 3 -d 4 -p cbr -e 500 -c 1 -i 393 -a 1 r -t 2.054 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 370 -a 1 r -t 2.054 -s 4 -d 6 -p cbr -e 500 -c 1 -i 372 -a 1 - -t 2.056 -s 3 -d 4 -p cbr -e 500 -c 1 -i 388 -a 1 h -t 2.056 -s 3 -d 4 -p cbr -e 500 -c 1 -i 388 -a 1 r -t 2.058 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 377 -a 1 + -t 2.058 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 377 -a 1 - -t 2.058 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 377 -a 1 h -t 2.058 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 377 -a 1 r -t 2.058 -s 4 -d 6 -p cbr -e 500 -c 1 -i 374 -a 1 + -t 2.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 397 -a 1 - -t 2.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 397 -a 1 h -t 2.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 397 -a 1 + -t 2.06 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 398 -a 1 - -t 2.06 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 398 -a 1 h -t 2.06 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 398 -a 1 - -t 2.06 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 389 -a 0 -S 0 -y {35 35} h -t 2.06 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 389 -a 0 -S 0 -y {-1 -1} r -t 2.062 -s 3 -d 4 -p cbr -e 500 -c 1 -i 379 -a 1 + -t 2.062 -s 4 -d 6 -p cbr -e 500 -c 1 -i 379 -a 1 - -t 2.062 -s 4 -d 6 -p cbr -e 500 -c 1 -i 379 -a 1 h -t 2.062 -s 4 -d 6 -p cbr -e 500 -c 1 -i 379 -a 1 r -t 2.064 -s 1 -d 3 -p cbr -e 500 -c 1 -i 394 -a 1 + -t 2.064 -s 3 -d 4 -p cbr -e 500 -c 1 -i 394 -a 1 r -t 2.066 -s 3 -d 4 -p cbr -e 500 -c 1 -i 381 -a 1 + -t 2.066 -s 4 -d 6 -p cbr -e 500 -c 1 -i 381 -a 1 - -t 2.066 -s 4 -d 6 -p cbr -e 500 -c 1 -i 381 -a 1 h -t 2.066 -s 4 -d 6 -p cbr -e 500 -c 1 -i 381 -a 1 r -t 2.068 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 395 -a 1 + -t 2.068 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 395 -a 1 - -t 2.068 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 390 -a 0 -S 0 -y {36 36} h -t 2.068 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 390 -a 0 -S 0 -y {-1 -1} + -t 2.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 399 -a 1 - -t 2.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 399 -a 1 h -t 2.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 399 -a 1 r -t 2.07 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 373 -a 1 r -t 2.07 -s 4 -d 6 -p cbr -e 500 -c 1 -i 376 -a 1 r -t 2.074 -s 1 -d 3 -p cbr -e 500 -c 1 -i 396 -a 1 + -t 2.074 -s 3 -d 4 -p cbr -e 500 -c 1 -i 396 -a 1 r -t 2.074 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 380 -a 1 + -t 2.074 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 380 -a 1 - -t 2.074 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 380 -a 1 h -t 2.074 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 380 -a 1 r -t 2.074 -s 4 -d 6 -p cbr -e 500 -c 1 -i 378 -a 1 - -t 2.076 -s 3 -d 4 -p cbr -e 500 -c 1 -i 391 -a 1 h -t 2.076 -s 3 -d 4 -p cbr -e 500 -c 1 -i 391 -a 1 r -t 2.078 -s 3 -d 4 -p cbr -e 500 -c 1 -i 382 -a 1 + -t 2.078 -s 4 -d 6 -p cbr -e 500 -c 1 -i 382 -a 1 - -t 2.078 -s 4 -d 6 -p cbr -e 500 -c 1 -i 382 -a 1 h -t 2.078 -s 4 -d 6 -p cbr -e 500 -c 1 -i 382 -a 1 + -t 2.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 400 -a 1 - -t 2.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 400 -a 1 h -t 2.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 400 -a 1 + -t 2.08 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 401 -a 1 - -t 2.08 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 401 -a 1 h -t 2.08 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 401 -a 1 - -t 2.08 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 392 -a 1 h -t 2.08 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 392 -a 1 r -t 2.082 -s 3 -d 4 -p cbr -e 500 -c 1 -i 384 -a 1 + -t 2.082 -s 4 -d 6 -p cbr -e 500 -c 1 -i 384 -a 1 - -t 2.082 -s 4 -d 6 -p cbr -e 500 -c 1 -i 384 -a 1 h -t 2.082 -s 4 -d 6 -p cbr -e 500 -c 1 -i 384 -a 1 r -t 2.084 -s 1 -d 3 -p cbr -e 500 -c 1 -i 397 -a 1 + -t 2.084 -s 3 -d 4 -p cbr -e 500 -c 1 -i 397 -a 1 r -t 2.086 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 377 -a 1 r -t 2.086 -s 4 -d 6 -p cbr -e 500 -c 1 -i 379 -a 1 r -t 2.088 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 398 -a 1 + -t 2.088 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 398 -a 1 - -t 2.088 -s 3 -d 4 -p cbr -e 500 -c 1 -i 393 -a 1 h -t 2.088 -s 3 -d 4 -p cbr -e 500 -c 1 -i 393 -a 1 + -t 2.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 402 -a 1 - -t 2.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 402 -a 1 h -t 2.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 402 -a 1 r -t 2.09 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 383 -a 1 + -t 2.09 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 383 -a 1 - -t 2.09 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 383 -a 1 h -t 2.09 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 383 -a 1 r -t 2.09 -s 4 -d 6 -p cbr -e 500 -c 1 -i 381 -a 1 - -t 2.092 -s 3 -d 4 -p cbr -e 500 -c 1 -i 394 -a 1 h -t 2.092 -s 3 -d 4 -p cbr -e 500 -c 1 -i 394 -a 1 r -t 2.094 -s 1 -d 3 -p cbr -e 500 -c 1 -i 399 -a 1 + -t 2.094 -s 3 -d 4 -p cbr -e 500 -c 1 -i 399 -a 1 r -t 2.094 -s 3 -d 4 -p cbr -e 500 -c 1 -i 385 -a 1 + -t 2.094 -s 4 -d 6 -p cbr -e 500 -c 1 -i 385 -a 1 - -t 2.094 -s 4 -d 6 -p cbr -e 500 -c 1 -i 385 -a 1 h -t 2.094 -s 4 -d 6 -p cbr -e 500 -c 1 -i 385 -a 1 - -t 2.096 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 395 -a 1 h -t 2.096 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 395 -a 1 r -t 2.098 -s 3 -d 4 -p cbr -e 500 -c 1 -i 387 -a 1 + -t 2.098 -s 4 -d 6 -p cbr -e 500 -c 1 -i 387 -a 1 - -t 2.098 -s 4 -d 6 -p cbr -e 500 -c 1 -i 387 -a 1 h -t 2.098 -s 4 -d 6 -p cbr -e 500 -c 1 -i 387 -a 1 + -t 2.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 403 -a 1 - -t 2.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 403 -a 1 h -t 2.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 403 -a 1 + -t 2.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 404 -a 1 - -t 2.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 404 -a 1 h -t 2.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 404 -a 1 r -t 2.102 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 380 -a 1 r -t 2.102 -s 4 -d 6 -p cbr -e 500 -c 1 -i 382 -a 1 r -t 2.104 -s 1 -d 3 -p cbr -e 500 -c 1 -i 400 -a 1 + -t 2.104 -s 3 -d 4 -p cbr -e 500 -c 1 -i 400 -a 1 - -t 2.104 -s 3 -d 4 -p cbr -e 500 -c 1 -i 396 -a 1 h -t 2.104 -s 3 -d 4 -p cbr -e 500 -c 1 -i 396 -a 1 r -t 2.106 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 386 -a 1 + -t 2.106 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 386 -a 1 - -t 2.106 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 386 -a 1 h -t 2.106 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 386 -a 1 r -t 2.106 -s 4 -d 6 -p cbr -e 500 -c 1 -i 384 -a 1 r -t 2.108 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 401 -a 1 + -t 2.108 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 401 -a 1 - -t 2.108 -s 3 -d 4 -p cbr -e 500 -c 1 -i 397 -a 1 h -t 2.108 -s 3 -d 4 -p cbr -e 500 -c 1 -i 397 -a 1 + -t 2.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 405 -a 1 - -t 2.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 405 -a 1 h -t 2.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 405 -a 1 r -t 2.11 -s 3 -d 4 -p cbr -e 500 -c 1 -i 388 -a 1 + -t 2.11 -s 4 -d 6 -p cbr -e 500 -c 1 -i 388 -a 1 - -t 2.11 -s 4 -d 6 -p cbr -e 500 -c 1 -i 388 -a 1 h -t 2.11 -s 4 -d 6 -p cbr -e 500 -c 1 -i 388 -a 1 - -t 2.112 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 398 -a 1 h -t 2.112 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 398 -a 1 r -t 2.114 -s 1 -d 3 -p cbr -e 500 -c 1 -i 402 -a 1 + -t 2.114 -s 3 -d 4 -p cbr -e 500 -c 1 -i 402 -a 1 r -t 2.118 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 389 -a 0 -S 0 -y {35 35} + -t 2.118 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 389 -a 0 -S 0 -y {35 35} - -t 2.118 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 389 -a 0 -S 0 -y {35 35} h -t 2.118 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 389 -a 0 -S 0 -y {-1 -1} r -t 2.118 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 383 -a 1 r -t 2.118 -s 4 -d 6 -p cbr -e 500 -c 1 -i 385 -a 1 + -t 2.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 406 -a 1 - -t 2.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 406 -a 1 h -t 2.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 406 -a 1 + -t 2.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 407 -a 1 - -t 2.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 407 -a 1 h -t 2.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 407 -a 1 - -t 2.12 -s 3 -d 4 -p cbr -e 500 -c 1 -i 399 -a 1 h -t 2.12 -s 3 -d 4 -p cbr -e 500 -c 1 -i 399 -a 1 r -t 2.122 -s 4 -d 6 -p cbr -e 500 -c 1 -i 387 -a 1 r -t 2.124 -s 1 -d 3 -p cbr -e 500 -c 1 -i 403 -a 1 + -t 2.124 -s 3 -d 4 -p cbr -e 500 -c 1 -i 403 -a 1 - -t 2.124 -s 3 -d 4 -p cbr -e 500 -c 1 -i 400 -a 1 h -t 2.124 -s 3 -d 4 -p cbr -e 500 -c 1 -i 400 -a 1 r -t 2.126 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 390 -a 0 -S 0 -y {36 36} + -t 2.126 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 390 -a 0 -S 0 -y {36 36} - -t 2.126 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 390 -a 0 -S 0 -y {36 36} h -t 2.126 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 390 -a 0 -S 0 -y {-1 -1} r -t 2.128 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 404 -a 1 + -t 2.128 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 404 -a 1 - -t 2.128 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 401 -a 1 h -t 2.128 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 401 -a 1 + -t 2.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 408 -a 1 - -t 2.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 408 -a 1 h -t 2.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 408 -a 1 r -t 2.13 -s 3 -d 4 -p cbr -e 500 -c 1 -i 391 -a 1 + -t 2.13 -s 4 -d 6 -p cbr -e 500 -c 1 -i 391 -a 1 - -t 2.13 -s 4 -d 6 -p cbr -e 500 -c 1 -i 391 -a 1 h -t 2.13 -s 4 -d 6 -p cbr -e 500 -c 1 -i 391 -a 1 r -t 2.134 -s 1 -d 3 -p cbr -e 500 -c 1 -i 405 -a 1 + -t 2.134 -s 3 -d 4 -p cbr -e 500 -c 1 -i 405 -a 1 r -t 2.134 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 386 -a 1 r -t 2.134 -s 4 -d 6 -p cbr -e 500 -c 1 -i 388 -a 1 - -t 2.136 -s 3 -d 4 -p cbr -e 500 -c 1 -i 402 -a 1 h -t 2.136 -s 3 -d 4 -p cbr -e 500 -c 1 -i 402 -a 1 r -t 2.138 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 392 -a 1 + -t 2.138 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 392 -a 1 - -t 2.138 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 392 -a 1 h -t 2.138 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 392 -a 1 r -t 2.1396 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 389 -a 0 -S 0 -y {35 35} + -t 2.1396 -s 5 -d 4 -p ack -e 40 -c 0 -i 409 -a 0 -S 0 -y {42 42} - -t 2.1396 -s 5 -d 4 -p ack -e 40 -c 0 -i 409 -a 0 -S 0 -y {42 42} h -t 2.1396 -s 5 -d 4 -p ack -e 40 -c 0 -i 409 -a 0 -S 0 -y {-1 -1} + -t 2.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 410 -a 1 - -t 2.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 410 -a 1 h -t 2.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 410 -a 1 + -t 2.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 411 -a 1 - -t 2.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 411 -a 1 h -t 2.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 411 -a 1 - -t 2.14 -s 3 -d 4 -p cbr -e 500 -c 1 -i 403 -a 1 h -t 2.14 -s 3 -d 4 -p cbr -e 500 -c 1 -i 403 -a 1 r -t 2.142 -s 3 -d 4 -p cbr -e 500 -c 1 -i 393 -a 1 + -t 2.142 -s 4 -d 6 -p cbr -e 500 -c 1 -i 393 -a 1 - -t 2.142 -s 4 -d 6 -p cbr -e 500 -c 1 -i 393 -a 1 h -t 2.142 -s 4 -d 6 -p cbr -e 500 -c 1 -i 393 -a 1 r -t 2.144 -s 1 -d 3 -p cbr -e 500 -c 1 -i 406 -a 1 + -t 2.144 -s 3 -d 4 -p cbr -e 500 -c 1 -i 406 -a 1 - -t 2.144 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 404 -a 1 h -t 2.144 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 404 -a 1 r -t 2.146 -s 3 -d 4 -p cbr -e 500 -c 1 -i 394 -a 1 + -t 2.146 -s 4 -d 6 -p cbr -e 500 -c 1 -i 394 -a 1 - -t 2.146 -s 4 -d 6 -p cbr -e 500 -c 1 -i 394 -a 1 h -t 2.146 -s 4 -d 6 -p cbr -e 500 -c 1 -i 394 -a 1 r -t 2.1476 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 390 -a 0 -S 0 -y {36 36} + -t 2.1476 -s 5 -d 4 -p ack -e 40 -c 0 -i 412 -a 0 -S 0 -y {42 42} - -t 2.1476 -s 5 -d 4 -p ack -e 40 -c 0 -i 412 -a 0 -S 0 -y {42 42} h -t 2.1476 -s 5 -d 4 -p ack -e 40 -c 0 -i 412 -a 0 -S 0 -y {-1 -1} r -t 2.148 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 407 -a 1 + -t 2.148 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 407 -a 1 + -t 2.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 413 -a 1 - -t 2.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 413 -a 1 h -t 2.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 413 -a 1 - -t 2.152 -s 3 -d 4 -p cbr -e 500 -c 1 -i 405 -a 1 h -t 2.152 -s 3 -d 4 -p cbr -e 500 -c 1 -i 405 -a 1 r -t 2.154 -s 1 -d 3 -p cbr -e 500 -c 1 -i 408 -a 1 + -t 2.154 -s 3 -d 4 -p cbr -e 500 -c 1 -i 408 -a 1 r -t 2.154 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 395 -a 1 + -t 2.154 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 395 -a 1 - -t 2.154 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 395 -a 1 h -t 2.154 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 395 -a 1 r -t 2.154 -s 4 -d 6 -p cbr -e 500 -c 1 -i 391 -a 1 - -t 2.156 -s 3 -d 4 -p cbr -e 500 -c 1 -i 406 -a 1 h -t 2.156 -s 3 -d 4 -p cbr -e 500 -c 1 -i 406 -a 1 r -t 2.158 -s 3 -d 4 -p cbr -e 500 -c 1 -i 396 -a 1 + -t 2.158 -s 4 -d 6 -p cbr -e 500 -c 1 -i 396 -a 1 - -t 2.158 -s 4 -d 6 -p cbr -e 500 -c 1 -i 396 -a 1 h -t 2.158 -s 4 -d 6 -p cbr -e 500 -c 1 -i 396 -a 1 r -t 2.15966 -s 5 -d 4 -p ack -e 40 -c 0 -i 409 -a 0 -S 0 -y {42 42} + -t 2.15966 -s 4 -d 3 -p ack -e 40 -c 0 -i 409 -a 0 -S 0 -y {42 42} - -t 2.15966 -s 4 -d 3 -p ack -e 40 -c 0 -i 409 -a 0 -S 0 -y {42 42} h -t 2.15966 -s 4 -d 3 -p ack -e 40 -c 0 -i 409 -a 0 -S 0 -y {-1 -1} + -t 2.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 414 -a 1 - -t 2.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 414 -a 1 h -t 2.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 414 -a 1 + -t 2.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 415 -a 1 - -t 2.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 415 -a 1 h -t 2.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 415 -a 1 - -t 2.16 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 407 -a 1 h -t 2.16 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 407 -a 1 r -t 2.162 -s 3 -d 4 -p cbr -e 500 -c 1 -i 397 -a 1 + -t 2.162 -s 4 -d 6 -p cbr -e 500 -c 1 -i 397 -a 1 - -t 2.162 -s 4 -d 6 -p cbr -e 500 -c 1 -i 397 -a 1 h -t 2.162 -s 4 -d 6 -p cbr -e 500 -c 1 -i 397 -a 1 r -t 2.164 -s 1 -d 3 -p cbr -e 500 -c 1 -i 410 -a 1 + -t 2.164 -s 3 -d 4 -p cbr -e 500 -c 1 -i 410 -a 1 r -t 2.166 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 392 -a 1 r -t 2.166 -s 4 -d 6 -p cbr -e 500 -c 1 -i 393 -a 1 r -t 2.16766 -s 5 -d 4 -p ack -e 40 -c 0 -i 412 -a 0 -S 0 -y {42 42} + -t 2.16766 -s 4 -d 3 -p ack -e 40 -c 0 -i 412 -a 0 -S 0 -y {42 42} - -t 2.16766 -s 4 -d 3 -p ack -e 40 -c 0 -i 412 -a 0 -S 0 -y {42 42} h -t 2.16766 -s 4 -d 3 -p ack -e 40 -c 0 -i 412 -a 0 -S 0 -y {-1 -1} r -t 2.168 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 411 -a 1 + -t 2.168 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 411 -a 1 - -t 2.168 -s 3 -d 4 -p cbr -e 500 -c 1 -i 408 -a 1 h -t 2.168 -s 3 -d 4 -p cbr -e 500 -c 1 -i 408 -a 1 + -t 2.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 416 -a 1 - -t 2.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 416 -a 1 h -t 2.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 416 -a 1 r -t 2.17 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 398 -a 1 + -t 2.17 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 398 -a 1 - -t 2.17 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 398 -a 1 h -t 2.17 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 398 -a 1 r -t 2.17 -s 4 -d 6 -p cbr -e 500 -c 1 -i 394 -a 1 - -t 2.172 -s 3 -d 4 -p cbr -e 500 -c 1 -i 410 -a 1 h -t 2.172 -s 3 -d 4 -p cbr -e 500 -c 1 -i 410 -a 1 r -t 2.174 -s 1 -d 3 -p cbr -e 500 -c 1 -i 413 -a 1 + -t 2.174 -s 3 -d 4 -p cbr -e 500 -c 1 -i 413 -a 1 r -t 2.174 -s 3 -d 4 -p cbr -e 500 -c 1 -i 399 -a 1 + -t 2.174 -s 4 -d 6 -p cbr -e 500 -c 1 -i 399 -a 1 - -t 2.174 -s 4 -d 6 -p cbr -e 500 -c 1 -i 399 -a 1 h -t 2.174 -s 4 -d 6 -p cbr -e 500 -c 1 -i 399 -a 1 - -t 2.176 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 411 -a 1 h -t 2.176 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 411 -a 1 r -t 2.178 -s 3 -d 4 -p cbr -e 500 -c 1 -i 400 -a 1 + -t 2.178 -s 4 -d 6 -p cbr -e 500 -c 1 -i 400 -a 1 - -t 2.178 -s 4 -d 6 -p cbr -e 500 -c 1 -i 400 -a 1 h -t 2.178 -s 4 -d 6 -p cbr -e 500 -c 1 -i 400 -a 1 + -t 2.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 417 -a 1 - -t 2.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 417 -a 1 h -t 2.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 417 -a 1 + -t 2.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 418 -a 1 - -t 2.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 418 -a 1 h -t 2.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 418 -a 1 r -t 2.182 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 395 -a 1 r -t 2.182 -s 4 -d 6 -p cbr -e 500 -c 1 -i 396 -a 1 r -t 2.184 -s 1 -d 3 -p cbr -e 500 -c 1 -i 414 -a 1 + -t 2.184 -s 3 -d 4 -p cbr -e 500 -c 1 -i 414 -a 1 - -t 2.184 -s 3 -d 4 -p cbr -e 500 -c 1 -i 413 -a 1 h -t 2.184 -s 3 -d 4 -p cbr -e 500 -c 1 -i 413 -a 1 r -t 2.186 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 401 -a 1 + -t 2.186 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 401 -a 1 - -t 2.186 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 401 -a 1 h -t 2.186 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 401 -a 1 r -t 2.186 -s 4 -d 6 -p cbr -e 500 -c 1 -i 397 -a 1 r -t 2.188 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 415 -a 1 + -t 2.188 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 415 -a 1 - -t 2.188 -s 3 -d 4 -p cbr -e 500 -c 1 -i 414 -a 1 h -t 2.188 -s 3 -d 4 -p cbr -e 500 -c 1 -i 414 -a 1 + -t 2.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 419 -a 1 - -t 2.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 419 -a 1 h -t 2.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 419 -a 1 r -t 2.19 -s 3 -d 4 -p cbr -e 500 -c 1 -i 402 -a 1 + -t 2.19 -s 4 -d 6 -p cbr -e 500 -c 1 -i 402 -a 1 - -t 2.19 -s 4 -d 6 -p cbr -e 500 -c 1 -i 402 -a 1 h -t 2.19 -s 4 -d 6 -p cbr -e 500 -c 1 -i 402 -a 1 - -t 2.192 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 415 -a 1 h -t 2.192 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 415 -a 1 r -t 2.194 -s 1 -d 3 -p cbr -e 500 -c 1 -i 416 -a 1 + -t 2.194 -s 3 -d 4 -p cbr -e 500 -c 1 -i 416 -a 1 r -t 2.194 -s 3 -d 4 -p cbr -e 500 -c 1 -i 403 -a 1 + -t 2.194 -s 4 -d 6 -p cbr -e 500 -c 1 -i 403 -a 1 - -t 2.194 -s 4 -d 6 -p cbr -e 500 -c 1 -i 403 -a 1 h -t 2.194 -s 4 -d 6 -p cbr -e 500 -c 1 -i 403 -a 1 r -t 2.198 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 398 -a 1 r -t 2.198 -s 4 -d 6 -p cbr -e 500 -c 1 -i 399 -a 1 + -t 2.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 420 -a 1 - -t 2.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 420 -a 1 h -t 2.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 420 -a 1 + -t 2.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 421 -a 1 - -t 2.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 421 -a 1 h -t 2.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 421 -a 1 - -t 2.2 -s 3 -d 4 -p cbr -e 500 -c 1 -i 416 -a 1 h -t 2.2 -s 3 -d 4 -p cbr -e 500 -c 1 -i 416 -a 1 r -t 2.202 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 404 -a 1 + -t 2.202 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 404 -a 1 - -t 2.202 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 404 -a 1 h -t 2.202 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 404 -a 1 r -t 2.202 -s 4 -d 6 -p cbr -e 500 -c 1 -i 400 -a 1 r -t 2.204 -s 1 -d 3 -p cbr -e 500 -c 1 -i 417 -a 1 + -t 2.204 -s 3 -d 4 -p cbr -e 500 -c 1 -i 417 -a 1 - -t 2.204 -s 3 -d 4 -p cbr -e 500 -c 1 -i 417 -a 1 h -t 2.204 -s 3 -d 4 -p cbr -e 500 -c 1 -i 417 -a 1 r -t 2.206 -s 3 -d 4 -p cbr -e 500 -c 1 -i 405 -a 1 + -t 2.206 -s 4 -d 6 -p cbr -e 500 -c 1 -i 405 -a 1 - -t 2.206 -s 4 -d 6 -p cbr -e 500 -c 1 -i 405 -a 1 h -t 2.206 -s 4 -d 6 -p cbr -e 500 -c 1 -i 405 -a 1 r -t 2.208 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 418 -a 1 + -t 2.208 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 418 -a 1 - -t 2.208 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 418 -a 1 h -t 2.208 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 418 -a 1 r -t 2.20998 -s 4 -d 3 -p ack -e 40 -c 0 -i 409 -a 0 -S 0 -y {42 42} + -t 2.20998 -s 3 -d 0 -p ack -e 40 -c 0 -i 409 -a 0 -S 0 -y {42 42} - -t 2.20998 -s 3 -d 0 -p ack -e 40 -c 0 -i 409 -a 0 -S 0 -f 0 -m 1 -y {42 42} h -t 2.20998 -s 3 -d 0 -p ack -e 40 -c 0 -i 409 -a 0 -S 0 -y {-1 -1} + -t 2.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 422 -a 1 - -t 2.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 422 -a 1 h -t 2.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 422 -a 1 r -t 2.21 -s 3 -d 4 -p cbr -e 500 -c 1 -i 406 -a 1 + -t 2.21 -s 4 -d 6 -p cbr -e 500 -c 1 -i 406 -a 1 - -t 2.21 -s 4 -d 6 -p cbr -e 500 -c 1 -i 406 -a 1 h -t 2.21 -s 4 -d 6 -p cbr -e 500 -c 1 -i 406 -a 1 r -t 2.214 -s 1 -d 3 -p cbr -e 500 -c 1 -i 419 -a 1 + -t 2.214 -s 3 -d 4 -p cbr -e 500 -c 1 -i 419 -a 1 r -t 2.214 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 401 -a 1 r -t 2.214 -s 4 -d 6 -p cbr -e 500 -c 1 -i 402 -a 1 - -t 2.216 -s 3 -d 4 -p cbr -e 500 -c 1 -i 419 -a 1 h -t 2.216 -s 3 -d 4 -p cbr -e 500 -c 1 -i 419 -a 1 r -t 2.21798 -s 4 -d 3 -p ack -e 40 -c 0 -i 412 -a 0 -S 0 -y {42 42} + -t 2.21798 -s 3 -d 0 -p ack -e 40 -c 0 -i 412 -a 0 -S 0 -y {42 42} - -t 2.21798 -s 3 -d 0 -p ack -e 40 -c 0 -i 412 -a 0 -S 0 -f 0 -m 1 -y {42 42} h -t 2.21798 -s 3 -d 0 -p ack -e 40 -c 0 -i 412 -a 0 -S 0 -y {-1 -1} r -t 2.218 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 407 -a 1 + -t 2.218 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 407 -a 1 - -t 2.218 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 407 -a 1 h -t 2.218 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 407 -a 1 r -t 2.218 -s 4 -d 6 -p cbr -e 500 -c 1 -i 403 -a 1 + -t 2.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 423 -a 1 - -t 2.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 423 -a 1 h -t 2.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 423 -a 1 + -t 2.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 424 -a 1 - -t 2.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 424 -a 1 h -t 2.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 424 -a 1 r -t 2.222 -s 3 -d 4 -p cbr -e 500 -c 1 -i 408 -a 1 + -t 2.222 -s 4 -d 6 -p cbr -e 500 -c 1 -i 408 -a 1 - -t 2.222 -s 4 -d 6 -p cbr -e 500 -c 1 -i 408 -a 1 h -t 2.222 -s 4 -d 6 -p cbr -e 500 -c 1 -i 408 -a 1 r -t 2.224 -s 1 -d 3 -p cbr -e 500 -c 1 -i 420 -a 1 + -t 2.224 -s 3 -d 4 -p cbr -e 500 -c 1 -i 420 -a 1 - -t 2.224 -s 3 -d 4 -p cbr -e 500 -c 1 -i 420 -a 1 h -t 2.224 -s 3 -d 4 -p cbr -e 500 -c 1 -i 420 -a 1 r -t 2.226 -s 3 -d 4 -p cbr -e 500 -c 1 -i 410 -a 1 + -t 2.226 -s 4 -d 6 -p cbr -e 500 -c 1 -i 410 -a 1 - -t 2.226 -s 4 -d 6 -p cbr -e 500 -c 1 -i 410 -a 1 h -t 2.226 -s 4 -d 6 -p cbr -e 500 -c 1 -i 410 -a 1 r -t 2.228 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 421 -a 1 + -t 2.228 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 421 -a 1 - -t 2.228 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 421 -a 1 h -t 2.228 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 421 -a 1 + -t 2.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 425 -a 1 - -t 2.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 425 -a 1 h -t 2.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 425 -a 1 r -t 2.23 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 404 -a 1 r -t 2.23 -s 4 -d 6 -p cbr -e 500 -c 1 -i 405 -a 1 r -t 2.23005 -s 3 -d 0 -p ack -e 40 -c 0 -i 409 -a 0 -S 0 -y {42 42} f -t 2.23004800000000136 -s 0 -d 5 -n cwnd_ -a tcp -v 3.000000 -o 2.000000 -T v + -t 2.23005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 426 -a 0 -S 0 -f 0 -m 0 -y {43 43} - -t 2.23005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 426 -a 0 -S 0 -y {43 43} h -t 2.23005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 426 -a 0 -S 0 -y {-1 -1} + -t 2.23005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 427 -a 0 -S 0 -f 0 -m 0 -y {44 44} + -t 2.23005 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 428 -a 0 -S 0 -f 0 -m 0 -y {45 45} - -t 2.23165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 427 -a 0 -S 0 -y {44 44} h -t 2.23165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 427 -a 0 -S 0 -y {-1 -1} - -t 2.23325 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 428 -a 0 -S 0 -y {45 45} h -t 2.23325 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 428 -a 0 -S 0 -y {-1 -1} r -t 2.234 -s 1 -d 3 -p cbr -e 500 -c 1 -i 422 -a 1 + -t 2.234 -s 3 -d 4 -p cbr -e 500 -c 1 -i 422 -a 1 r -t 2.234 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 411 -a 1 + -t 2.234 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 411 -a 1 - -t 2.234 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 411 -a 1 h -t 2.234 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 411 -a 1 r -t 2.234 -s 4 -d 6 -p cbr -e 500 -c 1 -i 406 -a 1 - -t 2.236 -s 3 -d 4 -p cbr -e 500 -c 1 -i 422 -a 1 h -t 2.236 -s 3 -d 4 -p cbr -e 500 -c 1 -i 422 -a 1 r -t 2.238 -s 3 -d 4 -p cbr -e 500 -c 1 -i 413 -a 1 + -t 2.238 -s 4 -d 6 -p cbr -e 500 -c 1 -i 413 -a 1 - -t 2.238 -s 4 -d 6 -p cbr -e 500 -c 1 -i 413 -a 1 h -t 2.238 -s 4 -d 6 -p cbr -e 500 -c 1 -i 413 -a 1 r -t 2.23805 -s 3 -d 0 -p ack -e 40 -c 0 -i 412 -a 0 -S 0 -y {42 42} + -t 2.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 429 -a 1 - -t 2.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 429 -a 1 h -t 2.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 429 -a 1 + -t 2.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 430 -a 1 - -t 2.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 430 -a 1 h -t 2.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 430 -a 1 r -t 2.242 -s 3 -d 4 -p cbr -e 500 -c 1 -i 414 -a 1 + -t 2.242 -s 4 -d 6 -p cbr -e 500 -c 1 -i 414 -a 1 - -t 2.242 -s 4 -d 6 -p cbr -e 500 -c 1 -i 414 -a 1 h -t 2.242 -s 4 -d 6 -p cbr -e 500 -c 1 -i 414 -a 1 r -t 2.244 -s 1 -d 3 -p cbr -e 500 -c 1 -i 423 -a 1 + -t 2.244 -s 3 -d 4 -p cbr -e 500 -c 1 -i 423 -a 1 - -t 2.244 -s 3 -d 4 -p cbr -e 500 -c 1 -i 423 -a 1 h -t 2.244 -s 3 -d 4 -p cbr -e 500 -c 1 -i 423 -a 1 r -t 2.246 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 407 -a 1 r -t 2.246 -s 4 -d 6 -p cbr -e 500 -c 1 -i 408 -a 1 r -t 2.248 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 424 -a 1 + -t 2.248 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 424 -a 1 - -t 2.248 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 424 -a 1 h -t 2.248 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 424 -a 1 + -t 2.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 431 -a 1 - -t 2.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 431 -a 1 h -t 2.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 431 -a 1 r -t 2.25 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 415 -a 1 + -t 2.25 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 415 -a 1 - -t 2.25 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 415 -a 1 h -t 2.25 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 415 -a 1 r -t 2.25 -s 4 -d 6 -p cbr -e 500 -c 1 -i 410 -a 1 r -t 2.25165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 426 -a 0 -S 0 -y {43 43} + -t 2.25165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 426 -a 0 -S 0 -y {43 43} r -t 2.25325 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 427 -a 0 -S 0 -y {44 44} + -t 2.25325 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 427 -a 0 -S 0 -y {44 44} r -t 2.254 -s 1 -d 3 -p cbr -e 500 -c 1 -i 425 -a 1 + -t 2.254 -s 3 -d 4 -p cbr -e 500 -c 1 -i 425 -a 1 r -t 2.254 -s 3 -d 4 -p cbr -e 500 -c 1 -i 416 -a 1 + -t 2.254 -s 4 -d 6 -p cbr -e 500 -c 1 -i 416 -a 1 - -t 2.254 -s 4 -d 6 -p cbr -e 500 -c 1 -i 416 -a 1 h -t 2.254 -s 4 -d 6 -p cbr -e 500 -c 1 -i 416 -a 1 r -t 2.25485 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 428 -a 0 -S 0 -y {45 45} + -t 2.25485 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 428 -a 0 -S 0 -y {45 45} - -t 2.256 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 426 -a 0 -S 0 -y {43 43} h -t 2.256 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 426 -a 0 -S 0 -y {-1 -1} r -t 2.258 -s 3 -d 4 -p cbr -e 500 -c 1 -i 417 -a 1 + -t 2.258 -s 4 -d 6 -p cbr -e 500 -c 1 -i 417 -a 1 - -t 2.258 -s 4 -d 6 -p cbr -e 500 -c 1 -i 417 -a 1 h -t 2.258 -s 4 -d 6 -p cbr -e 500 -c 1 -i 417 -a 1 + -t 2.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 432 -a 1 - -t 2.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 432 -a 1 h -t 2.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 432 -a 1 + -t 2.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 433 -a 1 - -t 2.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 433 -a 1 h -t 2.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 433 -a 1 r -t 2.262 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 411 -a 1 r -t 2.262 -s 4 -d 6 -p cbr -e 500 -c 1 -i 413 -a 1 r -t 2.264 -s 1 -d 3 -p cbr -e 500 -c 1 -i 429 -a 1 + -t 2.264 -s 3 -d 4 -p cbr -e 500 -c 1 -i 429 -a 1 - -t 2.264 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 427 -a 0 -S 0 -y {44 44} h -t 2.264 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 427 -a 0 -S 0 -y {-1 -1} r -t 2.266 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 418 -a 1 + -t 2.266 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 418 -a 1 - -t 2.266 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 418 -a 1 h -t 2.266 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 418 -a 1 r -t 2.266 -s 4 -d 6 -p cbr -e 500 -c 1 -i 414 -a 1 r -t 2.268 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 430 -a 1 + -t 2.268 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 430 -a 1 + -t 2.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 434 -a 1 - -t 2.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 434 -a 1 h -t 2.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 434 -a 1 r -t 2.27 -s 3 -d 4 -p cbr -e 500 -c 1 -i 419 -a 1 + -t 2.27 -s 4 -d 6 -p cbr -e 500 -c 1 -i 419 -a 1 - -t 2.27 -s 4 -d 6 -p cbr -e 500 -c 1 -i 419 -a 1 h -t 2.27 -s 4 -d 6 -p cbr -e 500 -c 1 -i 419 -a 1 - -t 2.272 -s 3 -d 4 -p cbr -e 500 -c 1 -i 425 -a 1 h -t 2.272 -s 3 -d 4 -p cbr -e 500 -c 1 -i 425 -a 1 r -t 2.274 -s 1 -d 3 -p cbr -e 500 -c 1 -i 431 -a 1 + -t 2.274 -s 3 -d 4 -p cbr -e 500 -c 1 -i 431 -a 1 - -t 2.276 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 428 -a 0 -S 0 -y {45 45} h -t 2.276 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 428 -a 0 -S 0 -y {-1 -1} r -t 2.278 -s 3 -d 4 -p cbr -e 500 -c 1 -i 420 -a 1 + -t 2.278 -s 4 -d 6 -p cbr -e 500 -c 1 -i 420 -a 1 - -t 2.278 -s 4 -d 6 -p cbr -e 500 -c 1 -i 420 -a 1 h -t 2.278 -s 4 -d 6 -p cbr -e 500 -c 1 -i 420 -a 1 r -t 2.278 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 415 -a 1 r -t 2.278 -s 4 -d 6 -p cbr -e 500 -c 1 -i 416 -a 1 + -t 2.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 435 -a 1 - -t 2.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 435 -a 1 h -t 2.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 435 -a 1 + -t 2.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 436 -a 1 - -t 2.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 436 -a 1 h -t 2.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 436 -a 1 r -t 2.282 -s 4 -d 6 -p cbr -e 500 -c 1 -i 417 -a 1 r -t 2.284 -s 1 -d 3 -p cbr -e 500 -c 1 -i 432 -a 1 + -t 2.284 -s 3 -d 4 -p cbr -e 500 -c 1 -i 432 -a 1 - -t 2.284 -s 3 -d 4 -p cbr -e 500 -c 1 -i 429 -a 1 h -t 2.284 -s 3 -d 4 -p cbr -e 500 -c 1 -i 429 -a 1 r -t 2.286 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 421 -a 1 + -t 2.286 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 421 -a 1 - -t 2.286 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 421 -a 1 h -t 2.286 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 421 -a 1 r -t 2.288 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 433 -a 1 + -t 2.288 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 433 -a 1 - -t 2.288 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 430 -a 1 h -t 2.288 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 430 -a 1 + -t 2.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 437 -a 1 - -t 2.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 437 -a 1 h -t 2.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 437 -a 1 r -t 2.29 -s 3 -d 4 -p cbr -e 500 -c 1 -i 422 -a 1 + -t 2.29 -s 4 -d 6 -p cbr -e 500 -c 1 -i 422 -a 1 - -t 2.29 -s 4 -d 6 -p cbr -e 500 -c 1 -i 422 -a 1 h -t 2.29 -s 4 -d 6 -p cbr -e 500 -c 1 -i 422 -a 1 r -t 2.294 -s 1 -d 3 -p cbr -e 500 -c 1 -i 434 -a 1 + -t 2.294 -s 3 -d 4 -p cbr -e 500 -c 1 -i 434 -a 1 r -t 2.294 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 418 -a 1 r -t 2.294 -s 4 -d 6 -p cbr -e 500 -c 1 -i 419 -a 1 - -t 2.296 -s 3 -d 4 -p cbr -e 500 -c 1 -i 431 -a 1 h -t 2.296 -s 3 -d 4 -p cbr -e 500 -c 1 -i 431 -a 1 r -t 2.298 -s 3 -d 4 -p cbr -e 500 -c 1 -i 423 -a 1 + -t 2.298 -s 4 -d 6 -p cbr -e 500 -c 1 -i 423 -a 1 - -t 2.298 -s 4 -d 6 -p cbr -e 500 -c 1 -i 423 -a 1 h -t 2.298 -s 4 -d 6 -p cbr -e 500 -c 1 -i 423 -a 1 + -t 2.3 -s 1 -d 3 -p cbr -e 500 -c 1 -i 438 -a 1 - -t 2.3 -s 1 -d 3 -p cbr -e 500 -c 1 -i 438 -a 1 h -t 2.3 -s 1 -d 3 -p cbr -e 500 -c 1 -i 438 -a 1 + -t 2.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 439 -a 1 - -t 2.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 439 -a 1 h -t 2.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 439 -a 1 - -t 2.3 -s 3 -d 4 -p cbr -e 500 -c 1 -i 432 -a 1 h -t 2.3 -s 3 -d 4 -p cbr -e 500 -c 1 -i 432 -a 1 r -t 2.302 -s 4 -d 6 -p cbr -e 500 -c 1 -i 420 -a 1 r -t 2.304 -s 1 -d 3 -p cbr -e 500 -c 1 -i 435 -a 1 + -t 2.304 -s 3 -d 4 -p cbr -e 500 -c 1 -i 435 -a 1 - -t 2.304 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 433 -a 1 h -t 2.304 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 433 -a 1 r -t 2.306 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 424 -a 1 + -t 2.306 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 424 -a 1 - -t 2.306 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 424 -a 1 h -t 2.306 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 424 -a 1 r -t 2.308 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 436 -a 1 + -t 2.308 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 436 -a 1 - -t 2.312 -s 3 -d 4 -p cbr -e 500 -c 1 -i 434 -a 1 h -t 2.312 -s 3 -d 4 -p cbr -e 500 -c 1 -i 434 -a 1 r -t 2.314 -s 1 -d 3 -p cbr -e 500 -c 1 -i 437 -a 1 + -t 2.314 -s 3 -d 4 -p cbr -e 500 -c 1 -i 437 -a 1 r -t 2.314 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 426 -a 0 -S 0 -y {43 43} + -t 2.314 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 426 -a 0 -S 0 -y {43 43} - -t 2.314 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 426 -a 0 -S 0 -y {43 43} h -t 2.314 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 426 -a 0 -S 0 -y {-1 -1} r -t 2.314 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 421 -a 1 r -t 2.314 -s 4 -d 6 -p cbr -e 500 -c 1 -i 422 -a 1 - -t 2.316 -s 3 -d 4 -p cbr -e 500 -c 1 -i 435 -a 1 h -t 2.316 -s 3 -d 4 -p cbr -e 500 -c 1 -i 435 -a 1 + -t 2.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 440 -a 1 - -t 2.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 440 -a 1 h -t 2.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 440 -a 1 - -t 2.32 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 436 -a 1 h -t 2.32 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 436 -a 1 r -t 2.322 -s 4 -d 6 -p cbr -e 500 -c 1 -i 423 -a 1 r -t 2.322 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 427 -a 0 -S 0 -y {44 44} + -t 2.322 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 427 -a 0 -S 0 -y {44 44} - -t 2.322 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 427 -a 0 -S 0 -y {44 44} h -t 2.322 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 427 -a 0 -S 0 -y {-1 -1} r -t 2.324 -s 1 -d 3 -p cbr -e 500 -c 1 -i 438 -a 1 + -t 2.324 -s 3 -d 4 -p cbr -e 500 -c 1 -i 438 -a 1 r -t 2.326 -s 3 -d 4 -p cbr -e 500 -c 1 -i 425 -a 1 + -t 2.326 -s 4 -d 6 -p cbr -e 500 -c 1 -i 425 -a 1 - -t 2.326 -s 4 -d 6 -p cbr -e 500 -c 1 -i 425 -a 1 h -t 2.326 -s 4 -d 6 -p cbr -e 500 -c 1 -i 425 -a 1 r -t 2.328 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 439 -a 1 + -t 2.328 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 439 -a 1 - -t 2.328 -s 3 -d 4 -p cbr -e 500 -c 1 -i 437 -a 1 h -t 2.328 -s 3 -d 4 -p cbr -e 500 -c 1 -i 437 -a 1 - -t 2.332 -s 3 -d 4 -p cbr -e 500 -c 1 -i 438 -a 1 h -t 2.332 -s 3 -d 4 -p cbr -e 500 -c 1 -i 438 -a 1 r -t 2.334 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 428 -a 0 -S 0 -y {45 45} + -t 2.334 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 428 -a 0 -S 0 -y {45 45} - -t 2.334 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 428 -a 0 -S 0 -y {45 45} h -t 2.334 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 428 -a 0 -S 0 -y {-1 -1} r -t 2.334 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 424 -a 1 r -t 2.3356 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 426 -a 0 -S 0 -y {43 43} + -t 2.3356 -s 5 -d 4 -p ack -e 40 -c 0 -i 441 -a 0 -S 0 -y {44 44} - -t 2.3356 -s 5 -d 4 -p ack -e 40 -c 0 -i 441 -a 0 -S 0 -y {44 44} h -t 2.3356 -s 5 -d 4 -p ack -e 40 -c 0 -i 441 -a 0 -S 0 -y {-1 -1} - -t 2.336 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 439 -a 1 h -t 2.336 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 439 -a 1 r -t 2.338 -s 3 -d 4 -p cbr -e 500 -c 1 -i 429 -a 1 + -t 2.338 -s 4 -d 6 -p cbr -e 500 -c 1 -i 429 -a 1 - -t 2.338 -s 4 -d 6 -p cbr -e 500 -c 1 -i 429 -a 1 h -t 2.338 -s 4 -d 6 -p cbr -e 500 -c 1 -i 429 -a 1 + -t 2.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 442 -a 1 - -t 2.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 442 -a 1 h -t 2.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 442 -a 1 r -t 2.3436 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 427 -a 0 -S 0 -y {44 44} + -t 2.3436 -s 5 -d 4 -p ack -e 40 -c 0 -i 443 -a 0 -S 0 -y {44 44} - -t 2.3436 -s 5 -d 4 -p ack -e 40 -c 0 -i 443 -a 0 -S 0 -y {44 44} h -t 2.3436 -s 5 -d 4 -p ack -e 40 -c 0 -i 443 -a 0 -S 0 -y {-1 -1} r -t 2.346 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 430 -a 1 + -t 2.346 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 430 -a 1 - -t 2.346 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 430 -a 1 h -t 2.346 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 430 -a 1 r -t 2.348 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 440 -a 1 + -t 2.348 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 440 -a 1 - -t 2.348 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 440 -a 1 h -t 2.348 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 440 -a 1 r -t 2.35 -s 3 -d 4 -p cbr -e 500 -c 1 -i 431 -a 1 + -t 2.35 -s 4 -d 6 -p cbr -e 500 -c 1 -i 431 -a 1 - -t 2.35 -s 4 -d 6 -p cbr -e 500 -c 1 -i 431 -a 1 h -t 2.35 -s 4 -d 6 -p cbr -e 500 -c 1 -i 431 -a 1 r -t 2.35 -s 4 -d 6 -p cbr -e 500 -c 1 -i 425 -a 1 r -t 2.354 -s 3 -d 4 -p cbr -e 500 -c 1 -i 432 -a 1 + -t 2.354 -s 4 -d 6 -p cbr -e 500 -c 1 -i 432 -a 1 - -t 2.354 -s 4 -d 6 -p cbr -e 500 -c 1 -i 432 -a 1 h -t 2.354 -s 4 -d 6 -p cbr -e 500 -c 1 -i 432 -a 1 r -t 2.3556 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 428 -a 0 -S 0 -y {45 45} + -t 2.3556 -s 5 -d 4 -p ack -e 40 -c 0 -i 444 -a 0 -S 0 -y {48 48} - -t 2.3556 -s 5 -d 4 -p ack -e 40 -c 0 -i 444 -a 0 -S 0 -y {48 48} h -t 2.3556 -s 5 -d 4 -p ack -e 40 -c 0 -i 444 -a 0 -S 0 -y {-1 -1} r -t 2.35566 -s 5 -d 4 -p ack -e 40 -c 0 -i 441 -a 0 -S 0 -y {44 44} + -t 2.35566 -s 4 -d 3 -p ack -e 40 -c 0 -i 441 -a 0 -S 0 -y {44 44} - -t 2.35566 -s 4 -d 3 -p ack -e 40 -c 0 -i 441 -a 0 -S 0 -y {44 44} h -t 2.35566 -s 4 -d 3 -p ack -e 40 -c 0 -i 441 -a 0 -S 0 -y {-1 -1} + -t 2.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 445 -a 1 - -t 2.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 445 -a 1 h -t 2.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 445 -a 1 r -t 2.362 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 433 -a 1 + -t 2.362 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 433 -a 1 - -t 2.362 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 433 -a 1 h -t 2.362 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 433 -a 1 r -t 2.362 -s 4 -d 6 -p cbr -e 500 -c 1 -i 429 -a 1 r -t 2.36366 -s 5 -d 4 -p ack -e 40 -c 0 -i 443 -a 0 -S 0 -y {44 44} + -t 2.36366 -s 4 -d 3 -p ack -e 40 -c 0 -i 443 -a 0 -S 0 -y {44 44} - -t 2.36366 -s 4 -d 3 -p ack -e 40 -c 0 -i 443 -a 0 -S 0 -y {44 44} h -t 2.36366 -s 4 -d 3 -p ack -e 40 -c 0 -i 443 -a 0 -S 0 -y {-1 -1} r -t 2.366 -s 3 -d 4 -p cbr -e 500 -c 1 -i 434 -a 1 + -t 2.366 -s 4 -d 6 -p cbr -e 500 -c 1 -i 434 -a 1 - -t 2.366 -s 4 -d 6 -p cbr -e 500 -c 1 -i 434 -a 1 h -t 2.366 -s 4 -d 6 -p cbr -e 500 -c 1 -i 434 -a 1 r -t 2.368 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 442 -a 1 + -t 2.368 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 442 -a 1 - -t 2.368 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 442 -a 1 h -t 2.368 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 442 -a 1 r -t 2.37 -s 3 -d 4 -p cbr -e 500 -c 1 -i 435 -a 1 + -t 2.37 -s 4 -d 6 -p cbr -e 500 -c 1 -i 435 -a 1 - -t 2.37 -s 4 -d 6 -p cbr -e 500 -c 1 -i 435 -a 1 h -t 2.37 -s 4 -d 6 -p cbr -e 500 -c 1 -i 435 -a 1 r -t 2.374 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 430 -a 1 r -t 2.374 -s 4 -d 6 -p cbr -e 500 -c 1 -i 431 -a 1 r -t 2.37566 -s 5 -d 4 -p ack -e 40 -c 0 -i 444 -a 0 -S 0 -y {48 48} + -t 2.37566 -s 4 -d 3 -p ack -e 40 -c 0 -i 444 -a 0 -S 0 -y {48 48} - -t 2.37566 -s 4 -d 3 -p ack -e 40 -c 0 -i 444 -a 0 -S 0 -y {48 48} h -t 2.37566 -s 4 -d 3 -p ack -e 40 -c 0 -i 444 -a 0 -S 0 -y {-1 -1} r -t 2.378 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 436 -a 1 + -t 2.378 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 436 -a 1 - -t 2.378 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 436 -a 1 h -t 2.378 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 436 -a 1 r -t 2.378 -s 4 -d 6 -p cbr -e 500 -c 1 -i 432 -a 1 + -t 2.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 446 -a 1 - -t 2.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 446 -a 1 h -t 2.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 446 -a 1 r -t 2.382 -s 3 -d 4 -p cbr -e 500 -c 1 -i 437 -a 1 + -t 2.382 -s 4 -d 6 -p cbr -e 500 -c 1 -i 437 -a 1 - -t 2.382 -s 4 -d 6 -p cbr -e 500 -c 1 -i 437 -a 1 h -t 2.382 -s 4 -d 6 -p cbr -e 500 -c 1 -i 437 -a 1 r -t 2.386 -s 3 -d 4 -p cbr -e 500 -c 1 -i 438 -a 1 + -t 2.386 -s 4 -d 6 -p cbr -e 500 -c 1 -i 438 -a 1 - -t 2.386 -s 4 -d 6 -p cbr -e 500 -c 1 -i 438 -a 1 h -t 2.386 -s 4 -d 6 -p cbr -e 500 -c 1 -i 438 -a 1 r -t 2.388 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 445 -a 1 + -t 2.388 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 445 -a 1 - -t 2.388 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 445 -a 1 h -t 2.388 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 445 -a 1 r -t 2.39 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 433 -a 1 r -t 2.39 -s 4 -d 6 -p cbr -e 500 -c 1 -i 434 -a 1 r -t 2.394 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 439 -a 1 + -t 2.394 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 439 -a 1 - -t 2.394 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 439 -a 1 h -t 2.394 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 439 -a 1 r -t 2.394 -s 4 -d 6 -p cbr -e 500 -c 1 -i 435 -a 1 + -t 2.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 447 -a 1 - -t 2.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 447 -a 1 h -t 2.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 447 -a 1 r -t 2.40598 -s 4 -d 3 -p ack -e 40 -c 0 -i 441 -a 0 -S 0 -y {44 44} + -t 2.40598 -s 3 -d 0 -p ack -e 40 -c 0 -i 441 -a 0 -S 0 -y {44 44} - -t 2.40598 -s 3 -d 0 -p ack -e 40 -c 0 -i 441 -a 0 -S 0 -f 0 -m 1 -y {44 44} h -t 2.40598 -s 3 -d 0 -p ack -e 40 -c 0 -i 441 -a 0 -S 0 -y {-1 -1} r -t 2.406 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 440 -a 1 + -t 2.406 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 440 -a 1 - -t 2.406 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 440 -a 1 h -t 2.406 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 440 -a 1 r -t 2.406 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 436 -a 1 r -t 2.406 -s 4 -d 6 -p cbr -e 500 -c 1 -i 437 -a 1 r -t 2.408 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 446 -a 1 + -t 2.408 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 446 -a 1 - -t 2.408 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 446 -a 1 h -t 2.408 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 446 -a 1 r -t 2.41 -s 4 -d 6 -p cbr -e 500 -c 1 -i 438 -a 1 r -t 2.41398 -s 4 -d 3 -p ack -e 40 -c 0 -i 443 -a 0 -S 0 -y {44 44} + -t 2.41398 -s 3 -d 0 -p ack -e 40 -c 0 -i 443 -a 0 -S 0 -y {44 44} - -t 2.41398 -s 3 -d 0 -p ack -e 40 -c 0 -i 443 -a 0 -S 0 -f 0 -m 1 -y {44 44} h -t 2.41398 -s 3 -d 0 -p ack -e 40 -c 0 -i 443 -a 0 -S 0 -y {-1 -1} + -t 2.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 448 -a 1 - -t 2.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 448 -a 1 h -t 2.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 448 -a 1 r -t 2.422 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 439 -a 1 r -t 2.42598 -s 4 -d 3 -p ack -e 40 -c 0 -i 444 -a 0 -S 0 -y {48 48} + -t 2.42598 -s 3 -d 0 -p ack -e 40 -c 0 -i 444 -a 0 -S 0 -y {48 48} - -t 2.42598 -s 3 -d 0 -p ack -e 40 -c 0 -i 444 -a 0 -S 0 -f 0 -m 1 -y {48 48} h -t 2.42598 -s 3 -d 0 -p ack -e 40 -c 0 -i 444 -a 0 -S 0 -y {-1 -1} r -t 2.426 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 442 -a 1 + -t 2.426 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 442 -a 1 - -t 2.426 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 442 -a 1 h -t 2.426 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 442 -a 1 r -t 2.42605 -s 3 -d 0 -p ack -e 40 -c 0 -i 441 -a 0 -S 0 -y {44 44} f -t 2.42604800000000154 -s 0 -d 5 -n cwnd_ -a tcp -v 4.000000 -o 3.000000 -T v + -t 2.42605 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 449 -a 0 -S 0 -f 0 -m 0 -y {46 46} - -t 2.42605 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 449 -a 0 -S 0 -y {46 46} h -t 2.42605 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 449 -a 0 -S 0 -y {-1 -1} + -t 2.42605 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 450 -a 0 -S 0 -f 0 -m 0 -y {47 47} + -t 2.42605 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 451 -a 0 -S 0 -f 0 -m 0 -y {48 48} - -t 2.42765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 450 -a 0 -S 0 -y {47 47} h -t 2.42765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 450 -a 0 -S 0 -y {-1 -1} r -t 2.428 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 447 -a 1 + -t 2.428 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 447 -a 1 - -t 2.428 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 447 -a 1 h -t 2.428 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 447 -a 1 - -t 2.42925 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 451 -a 0 -S 0 -y {48 48} h -t 2.42925 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 451 -a 0 -S 0 -y {-1 -1} r -t 2.434 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 440 -a 1 r -t 2.43405 -s 3 -d 0 -p ack -e 40 -c 0 -i 443 -a 0 -S 0 -y {44 44} + -t 2.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 452 -a 1 - -t 2.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 452 -a 1 h -t 2.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 452 -a 1 r -t 2.446 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 445 -a 1 + -t 2.446 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 445 -a 1 - -t 2.446 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 445 -a 1 h -t 2.446 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 445 -a 1 r -t 2.44605 -s 3 -d 0 -p ack -e 40 -c 0 -i 444 -a 0 -S 0 -y {48 48} f -t 2.44604800000000155 -s 0 -d 5 -n cwnd_ -a tcp -v 5.000000 -o 4.000000 -T v + -t 2.44605 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 453 -a 0 -S 0 -f 0 -m 0 -y {49 49} - -t 2.44605 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 453 -a 0 -S 0 -y {49 49} h -t 2.44605 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 453 -a 0 -S 0 -y {-1 -1} + -t 2.44605 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 454 -a 0 -S 0 -f 0 -m 0 -y {50 50} + -t 2.44605 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 455 -a 0 -S 0 -f 0 -m 0 -y {51 51} + -t 2.44605 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 456 -a 0 -S 0 -f 0 -m 0 -y {52 52} + -t 2.44605 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 457 -a 0 -S 0 -f 0 -m 0 -y {53 53} r -t 2.44765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 449 -a 0 -S 0 -y {46 46} + -t 2.44765 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 449 -a 0 -S 0 -y {46 46} - -t 2.44765 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 449 -a 0 -S 0 -y {46 46} h -t 2.44765 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 449 -a 0 -S 0 -y {-1 -1} - -t 2.44765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 454 -a 0 -S 0 -y {50 50} h -t 2.44765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 454 -a 0 -S 0 -y {-1 -1} r -t 2.448 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 448 -a 1 + -t 2.448 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 448 -a 1 r -t 2.44925 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 450 -a 0 -S 0 -y {47 47} + -t 2.44925 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 450 -a 0 -S 0 -y {47 47} - -t 2.44925 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 455 -a 0 -S 0 -y {51 51} h -t 2.44925 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 455 -a 0 -S 0 -y {-1 -1} r -t 2.45085 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 451 -a 0 -S 0 -y {48 48} + -t 2.45085 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 451 -a 0 -S 0 -y {48 48} - -t 2.45085 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 456 -a 0 -S 0 -y {52 52} h -t 2.45085 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 456 -a 0 -S 0 -y {-1 -1} - -t 2.45245 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 457 -a 0 -S 0 -y {53 53} h -t 2.45245 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 457 -a 0 -S 0 -y {-1 -1} r -t 2.454 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 442 -a 1 - -t 2.45565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 448 -a 1 h -t 2.45565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 448 -a 1 + -t 2.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 458 -a 1 - -t 2.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 458 -a 1 h -t 2.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 458 -a 1 - -t 2.46365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 450 -a 0 -S 0 -y {47 47} h -t 2.46365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 450 -a 0 -S 0 -y {-1 -1} r -t 2.466 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 446 -a 1 + -t 2.466 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 446 -a 1 - -t 2.466 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 446 -a 1 h -t 2.466 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 446 -a 1 r -t 2.46765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 453 -a 0 -S 0 -y {49 49} + -t 2.46765 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 453 -a 0 -S 0 -y {49 49} r -t 2.468 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 452 -a 1 + -t 2.468 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 452 -a 1 r -t 2.46925 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 454 -a 0 -S 0 -y {50 50} + -t 2.46925 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 454 -a 0 -S 0 -y {50 50} r -t 2.47085 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 455 -a 0 -S 0 -y {51 51} + -t 2.47085 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 455 -a 0 -S 0 -y {51 51} - -t 2.47165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 451 -a 0 -S 0 -y {48 48} h -t 2.47165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 451 -a 0 -S 0 -y {-1 -1} r -t 2.47245 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 456 -a 0 -S 0 -y {52 52} + -t 2.47245 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 456 -a 0 -S 0 -y {52 52} r -t 2.474 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 445 -a 1 r -t 2.47405 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 457 -a 0 -S 0 -y {53 53} + -t 2.47405 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 457 -a 0 -S 0 -y {53 53} - -t 2.47965 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 453 -a 0 -S 0 -y {49 49} h -t 2.47965 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 453 -a 0 -S 0 -y {-1 -1} + -t 2.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 459 -a 1 - -t 2.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 459 -a 1 h -t 2.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 459 -a 1 r -t 2.486 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 447 -a 1 + -t 2.486 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 447 -a 1 - -t 2.486 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 447 -a 1 h -t 2.486 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 447 -a 1 - -t 2.48765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 452 -a 1 h -t 2.48765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 452 -a 1 r -t 2.488 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 458 -a 1 + -t 2.488 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 458 -a 1 r -t 2.494 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 446 -a 1 - -t 2.49565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 454 -a 0 -S 0 -y {50 50} h -t 2.49565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 454 -a 0 -S 0 -y {-1 -1} - -t 2.50365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 455 -a 0 -S 0 -y {51 51} h -t 2.50365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 455 -a 0 -S 0 -y {-1 -1} r -t 2.50565 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 449 -a 0 -S 0 -y {46 46} + -t 2.50565 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 449 -a 0 -S 0 -y {46 46} - -t 2.50565 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 449 -a 0 -S 0 -y {46 46} h -t 2.50565 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 449 -a 0 -S 0 -y {-1 -1} r -t 2.508 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 459 -a 1 + -t 2.508 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 459 -a 1 - -t 2.51165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 456 -a 0 -S 0 -y {52 52} h -t 2.51165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 456 -a 0 -S 0 -y {-1 -1} r -t 2.51365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 448 -a 1 + -t 2.51365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 448 -a 1 - -t 2.51365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 448 -a 1 h -t 2.51365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 448 -a 1 r -t 2.514 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 447 -a 1 - -t 2.51965 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 457 -a 0 -S 0 -y {53 53} h -t 2.51965 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 457 -a 0 -S 0 -y {-1 -1} r -t 2.52165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 450 -a 0 -S 0 -y {47 47} + -t 2.52165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 450 -a 0 -S 0 -y {47 47} - -t 2.52165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 450 -a 0 -S 0 -y {47 47} h -t 2.52165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 450 -a 0 -S 0 -y {-1 -1} r -t 2.52725 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 449 -a 0 -S 0 -y {46 46} + -t 2.52725 -s 5 -d 4 -p ack -e 40 -c 0 -i 460 -a 0 -S 0 -y {48 48} - -t 2.52725 -s 5 -d 4 -p ack -e 40 -c 0 -i 460 -a 0 -S 0 -y {48 48} h -t 2.52725 -s 5 -d 4 -p ack -e 40 -c 0 -i 460 -a 0 -S 0 -y {-1 -1} - -t 2.52765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 458 -a 1 h -t 2.52765 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 458 -a 1 r -t 2.52965 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 451 -a 0 -S 0 -y {48 48} + -t 2.52965 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 451 -a 0 -S 0 -y {48 48} - -t 2.52965 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 451 -a 0 -S 0 -y {48 48} h -t 2.52965 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 451 -a 0 -S 0 -y {-1 -1} - -t 2.53565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 459 -a 1 h -t 2.53565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 459 -a 1 r -t 2.53765 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 453 -a 0 -S 0 -y {49 49} + -t 2.53765 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 453 -a 0 -S 0 -y {49 49} - -t 2.53765 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 453 -a 0 -S 0 -y {49 49} h -t 2.53765 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 453 -a 0 -S 0 -y {-1 -1} r -t 2.54165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 448 -a 1 r -t 2.54325 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 450 -a 0 -S 0 -y {47 47} + -t 2.54325 -s 5 -d 4 -p ack -e 40 -c 0 -i 461 -a 0 -S 0 -y {48 48} - -t 2.54325 -s 5 -d 4 -p ack -e 40 -c 0 -i 461 -a 0 -S 0 -y {48 48} h -t 2.54325 -s 5 -d 4 -p ack -e 40 -c 0 -i 461 -a 0 -S 0 -y {-1 -1} r -t 2.54565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 452 -a 1 + -t 2.54565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 452 -a 1 - -t 2.54565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 452 -a 1 h -t 2.54565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 452 -a 1 r -t 2.54731 -s 5 -d 4 -p ack -e 40 -c 0 -i 460 -a 0 -S 0 -y {48 48} + -t 2.54731 -s 4 -d 3 -p ack -e 40 -c 0 -i 460 -a 0 -S 0 -y {48 48} - -t 2.54731 -s 4 -d 3 -p ack -e 40 -c 0 -i 460 -a 0 -S 0 -y {48 48} h -t 2.54731 -s 4 -d 3 -p ack -e 40 -c 0 -i 460 -a 0 -S 0 -y {-1 -1} v -t 2.5499999999999998 sim_annotation 2.5499999999999998 4 FTP stops r -t 2.55125 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 451 -a 0 -S 0 -y {48 48} + -t 2.55125 -s 5 -d 4 -p ack -e 40 -c 0 -i 462 -a 0 -S 0 -y {48 48} - -t 2.55125 -s 5 -d 4 -p ack -e 40 -c 0 -i 462 -a 0 -S 0 -y {48 48} h -t 2.55125 -s 5 -d 4 -p ack -e 40 -c 0 -i 462 -a 0 -S 0 -y {-1 -1} r -t 2.55365 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 454 -a 0 -S 0 -y {50 50} + -t 2.55365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 454 -a 0 -S 0 -y {50 50} - -t 2.55365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 454 -a 0 -S 0 -y {50 50} h -t 2.55365 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 454 -a 0 -S 0 -y {-1 -1} r -t 2.55925 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 453 -a 0 -S 0 -y {49 49} + -t 2.55925 -s 5 -d 4 -p ack -e 40 -c 0 -i 463 -a 0 -S 0 -y {49 49} - -t 2.55925 -s 5 -d 4 -p ack -e 40 -c 0 -i 463 -a 0 -S 0 -y {49 49} h -t 2.55925 -s 5 -d 4 -p ack -e 40 -c 0 -i 463 -a 0 -S 0 -y {-1 -1} r -t 2.56165 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 455 -a 0 -S 0 -y {51 51} + -t 2.56165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 455 -a 0 -S 0 -y {51 51} - -t 2.56165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 455 -a 0 -S 0 -y {51 51} h -t 2.56165 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 455 -a 0 -S 0 -y {-1 -1} r -t 2.56331 -s 5 -d 4 -p ack -e 40 -c 0 -i 461 -a 0 -S 0 -y {48 48} + -t 2.56331 -s 4 -d 3 -p ack -e 40 -c 0 -i 461 -a 0 -S 0 -y {48 48} - -t 2.56331 -s 4 -d 3 -p ack -e 40 -c 0 -i 461 -a 0 -S 0 -y {48 48} h -t 2.56331 -s 4 -d 3 -p ack -e 40 -c 0 -i 461 -a 0 -S 0 -y {-1 -1} r -t 2.56965 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 456 -a 0 -S 0 -y {52 52} + -t 2.56965 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 456 -a 0 -S 0 -y {52 52} - -t 2.56965 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 456 -a 0 -S 0 -y {52 52} h -t 2.56965 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 456 -a 0 -S 0 -y {-1 -1} r -t 2.57131 -s 5 -d 4 -p ack -e 40 -c 0 -i 462 -a 0 -S 0 -y {48 48} + -t 2.57131 -s 4 -d 3 -p ack -e 40 -c 0 -i 462 -a 0 -S 0 -y {48 48} - -t 2.57131 -s 4 -d 3 -p ack -e 40 -c 0 -i 462 -a 0 -S 0 -y {48 48} h -t 2.57131 -s 4 -d 3 -p ack -e 40 -c 0 -i 462 -a 0 -S 0 -y {-1 -1} r -t 2.57365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 452 -a 1 r -t 2.57525 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 454 -a 0 -S 0 -y {50 50} + -t 2.57525 -s 5 -d 4 -p ack -e 40 -c 0 -i 464 -a 0 -S 0 -y {50 50} - -t 2.57525 -s 5 -d 4 -p ack -e 40 -c 0 -i 464 -a 0 -S 0 -y {50 50} h -t 2.57525 -s 5 -d 4 -p ack -e 40 -c 0 -i 464 -a 0 -S 0 -y {-1 -1} r -t 2.57765 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 457 -a 0 -S 0 -y {53 53} + -t 2.57765 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 457 -a 0 -S 0 -y {53 53} - -t 2.57765 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 457 -a 0 -S 0 -y {53 53} h -t 2.57765 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 457 -a 0 -S 0 -y {-1 -1} r -t 2.57931 -s 5 -d 4 -p ack -e 40 -c 0 -i 463 -a 0 -S 0 -y {49 49} + -t 2.57931 -s 4 -d 3 -p ack -e 40 -c 0 -i 463 -a 0 -S 0 -y {49 49} - -t 2.57931 -s 4 -d 3 -p ack -e 40 -c 0 -i 463 -a 0 -S 0 -y {49 49} h -t 2.57931 -s 4 -d 3 -p ack -e 40 -c 0 -i 463 -a 0 -S 0 -y {-1 -1} r -t 2.58325 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 455 -a 0 -S 0 -y {51 51} + -t 2.58325 -s 5 -d 4 -p ack -e 40 -c 0 -i 465 -a 0 -S 0 -y {51 51} - -t 2.58325 -s 5 -d 4 -p ack -e 40 -c 0 -i 465 -a 0 -S 0 -y {51 51} h -t 2.58325 -s 5 -d 4 -p ack -e 40 -c 0 -i 465 -a 0 -S 0 -y {-1 -1} r -t 2.58565 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 458 -a 1 + -t 2.58565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 458 -a 1 - -t 2.58565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 458 -a 1 h -t 2.58565 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 458 -a 1 r -t 2.59125 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 456 -a 0 -S 0 -y {52 52} + -t 2.59125 -s 5 -d 4 -p ack -e 40 -c 0 -i 466 -a 0 -S 0 -y {52 52} - -t 2.59125 -s 5 -d 4 -p ack -e 40 -c 0 -i 466 -a 0 -S 0 -y {52 52} h -t 2.59125 -s 5 -d 4 -p ack -e 40 -c 0 -i 466 -a 0 -S 0 -y {-1 -1} r -t 2.59365 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 459 -a 1 + -t 2.59365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 459 -a 1 - -t 2.59365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 459 -a 1 h -t 2.59365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 459 -a 1 r -t 2.59531 -s 5 -d 4 -p ack -e 40 -c 0 -i 464 -a 0 -S 0 -y {50 50} + -t 2.59531 -s 4 -d 3 -p ack -e 40 -c 0 -i 464 -a 0 -S 0 -y {50 50} - -t 2.59531 -s 4 -d 3 -p ack -e 40 -c 0 -i 464 -a 0 -S 0 -y {50 50} h -t 2.59531 -s 4 -d 3 -p ack -e 40 -c 0 -i 464 -a 0 -S 0 -y {-1 -1} r -t 2.59763 -s 4 -d 3 -p ack -e 40 -c 0 -i 460 -a 0 -S 0 -y {48 48} + -t 2.59763 -s 3 -d 0 -p ack -e 40 -c 0 -i 460 -a 0 -S 0 -y {48 48} - -t 2.59763 -s 3 -d 0 -p ack -e 40 -c 0 -i 460 -a 0 -S 0 -f 0 -m 1 -y {48 48} h -t 2.59763 -s 3 -d 0 -p ack -e 40 -c 0 -i 460 -a 0 -S 0 -y {-1 -1} r -t 2.59925 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 457 -a 0 -S 0 -y {53 53} + -t 2.59925 -s 5 -d 4 -p ack -e 40 -c 0 -i 467 -a 0 -S 0 -y {53 53} - -t 2.59925 -s 5 -d 4 -p ack -e 40 -c 0 -i 467 -a 0 -S 0 -y {53 53} h -t 2.59925 -s 5 -d 4 -p ack -e 40 -c 0 -i 467 -a 0 -S 0 -y {-1 -1} r -t 2.60331 -s 5 -d 4 -p ack -e 40 -c 0 -i 465 -a 0 -S 0 -y {51 51} + -t 2.60331 -s 4 -d 3 -p ack -e 40 -c 0 -i 465 -a 0 -S 0 -y {51 51} - -t 2.60331 -s 4 -d 3 -p ack -e 40 -c 0 -i 465 -a 0 -S 0 -y {51 51} h -t 2.60331 -s 4 -d 3 -p ack -e 40 -c 0 -i 465 -a 0 -S 0 -y {-1 -1} r -t 2.61131 -s 5 -d 4 -p ack -e 40 -c 0 -i 466 -a 0 -S 0 -y {52 52} + -t 2.61131 -s 4 -d 3 -p ack -e 40 -c 0 -i 466 -a 0 -S 0 -y {52 52} - -t 2.61131 -s 4 -d 3 -p ack -e 40 -c 0 -i 466 -a 0 -S 0 -y {52 52} h -t 2.61131 -s 4 -d 3 -p ack -e 40 -c 0 -i 466 -a 0 -S 0 -y {-1 -1} r -t 2.61363 -s 4 -d 3 -p ack -e 40 -c 0 -i 461 -a 0 -S 0 -y {48 48} + -t 2.61363 -s 3 -d 0 -p ack -e 40 -c 0 -i 461 -a 0 -S 0 -y {48 48} - -t 2.61363 -s 3 -d 0 -p ack -e 40 -c 0 -i 461 -a 0 -S 0 -f 0 -m 1 -y {48 48} h -t 2.61363 -s 3 -d 0 -p ack -e 40 -c 0 -i 461 -a 0 -S 0 -y {-1 -1} r -t 2.61365 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 458 -a 1 r -t 2.6177 -s 3 -d 0 -p ack -e 40 -c 0 -i 460 -a 0 -S 0 -y {48 48} r -t 2.61931 -s 5 -d 4 -p ack -e 40 -c 0 -i 467 -a 0 -S 0 -y {53 53} + -t 2.61931 -s 4 -d 3 -p ack -e 40 -c 0 -i 467 -a 0 -S 0 -y {53 53} - -t 2.61931 -s 4 -d 3 -p ack -e 40 -c 0 -i 467 -a 0 -S 0 -y {53 53} h -t 2.61931 -s 4 -d 3 -p ack -e 40 -c 0 -i 467 -a 0 -S 0 -y {-1 -1} r -t 2.62163 -s 4 -d 3 -p ack -e 40 -c 0 -i 462 -a 0 -S 0 -y {48 48} + -t 2.62163 -s 3 -d 0 -p ack -e 40 -c 0 -i 462 -a 0 -S 0 -y {48 48} - -t 2.62163 -s 3 -d 0 -p ack -e 40 -c 0 -i 462 -a 0 -S 0 -f 0 -m 1 -y {48 48} h -t 2.62163 -s 3 -d 0 -p ack -e 40 -c 0 -i 462 -a 0 -S 0 -y {-1 -1} r -t 2.62165 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 459 -a 1 r -t 2.62963 -s 4 -d 3 -p ack -e 40 -c 0 -i 463 -a 0 -S 0 -y {49 49} + -t 2.62963 -s 3 -d 0 -p ack -e 40 -c 0 -i 463 -a 0 -S 0 -y {49 49} - -t 2.62963 -s 3 -d 0 -p ack -e 40 -c 0 -i 463 -a 0 -S 0 -f 0 -m 1 -y {49 49} h -t 2.62963 -s 3 -d 0 -p ack -e 40 -c 0 -i 463 -a 0 -S 0 -y {-1 -1} r -t 2.6337 -s 3 -d 0 -p ack -e 40 -c 0 -i 461 -a 0 -S 0 -y {48 48} r -t 2.6417 -s 3 -d 0 -p ack -e 40 -c 0 -i 462 -a 0 -S 0 -y {48 48} r -t 2.64563 -s 4 -d 3 -p ack -e 40 -c 0 -i 464 -a 0 -S 0 -y {50 50} + -t 2.64563 -s 3 -d 0 -p ack -e 40 -c 0 -i 464 -a 0 -S 0 -y {50 50} - -t 2.64563 -s 3 -d 0 -p ack -e 40 -c 0 -i 464 -a 0 -S 0 -f 0 -m 1 -y {50 50} h -t 2.64563 -s 3 -d 0 -p ack -e 40 -c 0 -i 464 -a 0 -S 0 -y {-1 -1} r -t 2.6497 -s 3 -d 0 -p ack -e 40 -c 0 -i 463 -a 0 -S 0 -y {49 49} f -t 2.64969600000000138 -s 0 -d 5 -n cwnd_ -a tcp -v 6.000000 -o 5.000000 -T v r -t 2.65363 -s 4 -d 3 -p ack -e 40 -c 0 -i 465 -a 0 -S 0 -y {51 51} + -t 2.65363 -s 3 -d 0 -p ack -e 40 -c 0 -i 465 -a 0 -S 0 -y {51 51} - -t 2.65363 -s 3 -d 0 -p ack -e 40 -c 0 -i 465 -a 0 -S 0 -f 0 -m 1 -y {51 51} h -t 2.65363 -s 3 -d 0 -p ack -e 40 -c 0 -i 465 -a 0 -S 0 -y {-1 -1} r -t 2.66163 -s 4 -d 3 -p ack -e 40 -c 0 -i 466 -a 0 -S 0 -y {52 52} + -t 2.66163 -s 3 -d 0 -p ack -e 40 -c 0 -i 466 -a 0 -S 0 -y {52 52} - -t 2.66163 -s 3 -d 0 -p ack -e 40 -c 0 -i 466 -a 0 -S 0 -f 0 -m 1 -y {52 52} h -t 2.66163 -s 3 -d 0 -p ack -e 40 -c 0 -i 466 -a 0 -S 0 -y {-1 -1} r -t 2.6657 -s 3 -d 0 -p ack -e 40 -c 0 -i 464 -a 0 -S 0 -y {50 50} f -t 2.66569600000000140 -s 0 -d 5 -n cwnd_ -a tcp -v 7.000000 -o 6.000000 -T v r -t 2.66963 -s 4 -d 3 -p ack -e 40 -c 0 -i 467 -a 0 -S 0 -y {53 53} + -t 2.66963 -s 3 -d 0 -p ack -e 40 -c 0 -i 467 -a 0 -S 0 -y {53 53} - -t 2.66963 -s 3 -d 0 -p ack -e 40 -c 0 -i 467 -a 0 -S 0 -f 0 -m 1 -y {53 53} h -t 2.66963 -s 3 -d 0 -p ack -e 40 -c 0 -i 467 -a 0 -S 0 -y {-1 -1} r -t 2.6737 -s 3 -d 0 -p ack -e 40 -c 0 -i 465 -a 0 -S 0 -y {51 51} f -t 2.67369600000000140 -s 0 -d 5 -n cwnd_ -a tcp -v 8.000000 -o 7.000000 -T v r -t 2.6817 -s 3 -d 0 -p ack -e 40 -c 0 -i 466 -a 0 -S 0 -y {52 52} f -t 2.68169600000000141 -s 0 -d 5 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v r -t 2.6897 -s 3 -d 0 -p ack -e 40 -c 0 -i 467 -a 0 -S 0 -y {53 53} f -t 2.68969600000000142 -s 0 -d 5 -n cwnd_ -a tcp -v 10.000000 -o 9.000000 -T v nam-1.15/edu/C3-slow-start.tcl0000664000076400007660000000565207024407025014747 0ustar tomhnsnam# Slow start protocol in a heavily loaded network. # features : labeling, annotation, nam-graph, and window size monitoring # # n0 n5 # \ / # n1 -- n3 ---------- n4 -- n6 # / \ # n2 n7 set ns [new Simulator] $ns color 0 black $ns color 1 red $ns trace-all [open C3-slow-start.tr w] $ns namtrace-all [open C3-slow-start.nam w] ### build topology with 8 nodes foreach i " 0 1 2 3 4 5 6 7" { set n$i [$ns node] } $ns at 0.0 "$n0 label TCP" $ns at 0.0 "$n5 label TCP" $ns at 0.0 "$n1 label CBR-1" $ns at 0.0 "$n2 label CBR-2" $ns at 0.0 "$n6 label CBR-1" $ns at 0.0 "$n7 label CBR-2" $ns duplex-link $n0 $n3 5Mb 20ms DropTail $ns duplex-link $n1 $n3 1Mb 20ms DropTail $ns duplex-link $n2 $n3 1Mb 20ms DropTail $ns duplex-link $n3 $n4 1Mb 50ms DropTail $ns duplex-link $n4 $n5 5Mb 20ms DropTail $ns duplex-link $n4 $n6 1Mb 20ms DropTail $ns duplex-link $n4 $n7 1Mb 20ms DropTail $ns queue-limit $n3 $n4 15 $ns duplex-link-op $n0 $n3 orient right-down $ns duplex-link-op $n1 $n3 orient right $ns duplex-link-op $n2 $n3 orient right-up $ns duplex-link-op $n3 $n4 orient right $ns duplex-link-op $n4 $n5 orient right-up $ns duplex-link-op $n4 $n6 orient right $ns duplex-link-op $n4 $n7 orient right-down $ns duplex-link-op $n3 $n4 queuePos 0.5 Agent/TCP set nam_tracevar_ true Agent/TCP set window_ 20 ### TCP between n0 and n5 (Black) set tcp [new Agent/TCP] $tcp set fid_ 0 $ns attach-agent $n0 $tcp set sink [new Agent/TCPSink] $ns attach-agent $n5 $sink $ns connect $tcp $sink set ftp [new Application/FTP] $ftp attach-agent $tcp $ns add-agent-trace $tcp tcp $ns monitor-agent-trace $tcp $tcp tracevar cwnd_ $tcp tracevar ssthresh_ ### CBR traffic between (n1 & n6) and (n2 & n7) set cbr0 [new Agent/CBR] $ns attach-agent $n1 $cbr0 $cbr0 set fid_ 1 $cbr0 set packetSize_ 500 $cbr0 set interval_ 0.01 set null0 [new Agent/CBR] $ns attach-agent $n6 $null0 $ns connect $cbr0 $null0 set cbr1 [new Agent/CBR] $ns attach-agent $n2 $cbr1 $cbr1 set fid_ 1 $cbr1 set packetSize_ 1000 $cbr1 set interval_ 0.02 set null1 [new Agent/CBR] $ns attach-agent $n7 $null1 $ns connect $cbr1 $null1 proc finish {} { global ns $ns flush-trace puts "filtering..." exec tclsh ../bin/namfilter.tcl C3-slow-start.nam puts "running nam..." exec nam C3-slow-start.nam & exit 0 } ### set operations $ns at 0.05 "$cbr0 start" $ns at 2.3 "$cbr0 stop" $ns at 0.1 "$cbr1 start" $ns at 2.5 "$cbr1 stop" $ns at 0.5 "$ftp start" $ns at 2.5 "$ftp stop" $ns at 2.7 "finish" ### add annotations $ns at 0.05 "$ns trace-annotate \"CBR-1 starts\"" $ns at 0.1 "$ns trace-annotate \"CBR-2 starts\"" $ns at 0.5 "$ns trace-annotate \"TCP starts\"" $ns at 2.55 "$ns trace-annotate \"FTP stops\"" $ns run nam-1.15/edu/C3-slow-start.tr0000664000076400007660000055542506756704602014636 0ustar tomhnsnam+ 0.05 1 3 cbr 500 ------- 1 1.0 6.0 0 0 - 0.05 1 3 cbr 500 ------- 1 1.0 6.0 0 0 v 0.050000000000000003 eval {set sim_annotation {CBR-1 starts}} + 0.06 1 3 cbr 500 ------- 1 1.0 6.0 1 1 - 0.06 1 3 cbr 500 ------- 1 1.0 6.0 1 1 + 0.07 1 3 cbr 500 ------- 1 1.0 6.0 2 2 - 0.07 1 3 cbr 500 ------- 1 1.0 6.0 2 2 r 0.074 1 3 cbr 500 ------- 1 1.0 6.0 0 0 + 0.074 3 4 cbr 500 ------- 1 1.0 6.0 0 0 - 0.074 3 4 cbr 500 ------- 1 1.0 6.0 0 0 + 0.08 1 3 cbr 500 ------- 1 1.0 6.0 3 3 - 0.08 1 3 cbr 500 ------- 1 1.0 6.0 3 3 r 0.084 1 3 cbr 500 ------- 1 1.0 6.0 1 1 + 0.084 3 4 cbr 500 ------- 1 1.0 6.0 1 1 - 0.084 3 4 cbr 500 ------- 1 1.0 6.0 1 1 + 0.09 1 3 cbr 500 ------- 1 1.0 6.0 4 4 - 0.09 1 3 cbr 500 ------- 1 1.0 6.0 4 4 r 0.094 1 3 cbr 500 ------- 1 1.0 6.0 2 2 + 0.094 3 4 cbr 500 ------- 1 1.0 6.0 2 2 - 0.094 3 4 cbr 500 ------- 1 1.0 6.0 2 2 + 0.1 1 3 cbr 500 ------- 1 1.0 6.0 5 5 - 0.1 1 3 cbr 500 ------- 1 1.0 6.0 5 5 + 0.1 2 3 cbr 1000 ------- 1 2.0 7.0 0 6 - 0.1 2 3 cbr 1000 ------- 1 2.0 7.0 0 6 v 0.10000000000000001 eval {set sim_annotation {CBR-2 starts}} r 0.104 1 3 cbr 500 ------- 1 1.0 6.0 3 3 + 0.104 3 4 cbr 500 ------- 1 1.0 6.0 3 3 - 0.104 3 4 cbr 500 ------- 1 1.0 6.0 3 3 + 0.11 1 3 cbr 500 ------- 1 1.0 6.0 6 7 - 0.11 1 3 cbr 500 ------- 1 1.0 6.0 6 7 r 0.114 1 3 cbr 500 ------- 1 1.0 6.0 4 4 + 0.114 3 4 cbr 500 ------- 1 1.0 6.0 4 4 - 0.114 3 4 cbr 500 ------- 1 1.0 6.0 4 4 + 0.12 1 3 cbr 500 ------- 1 1.0 6.0 7 8 - 0.12 1 3 cbr 500 ------- 1 1.0 6.0 7 8 + 0.12 2 3 cbr 1000 ------- 1 2.0 7.0 1 9 - 0.12 2 3 cbr 1000 ------- 1 2.0 7.0 1 9 r 0.124 1 3 cbr 500 ------- 1 1.0 6.0 5 5 + 0.124 3 4 cbr 500 ------- 1 1.0 6.0 5 5 - 0.124 3 4 cbr 500 ------- 1 1.0 6.0 5 5 r 0.128 3 4 cbr 500 ------- 1 1.0 6.0 0 0 + 0.128 4 6 cbr 500 ------- 1 1.0 6.0 0 0 - 0.128 4 6 cbr 500 ------- 1 1.0 6.0 0 0 r 0.128 2 3 cbr 1000 ------- 1 2.0 7.0 0 6 + 0.128 3 4 cbr 1000 ------- 1 2.0 7.0 0 6 - 0.128 3 4 cbr 1000 ------- 1 2.0 7.0 0 6 + 0.13 1 3 cbr 500 ------- 1 1.0 6.0 8 10 - 0.13 1 3 cbr 500 ------- 1 1.0 6.0 8 10 r 0.134 1 3 cbr 500 ------- 1 1.0 6.0 6 7 + 0.134 3 4 cbr 500 ------- 1 1.0 6.0 6 7 - 0.136 3 4 cbr 500 ------- 1 1.0 6.0 6 7 r 0.138 3 4 cbr 500 ------- 1 1.0 6.0 1 1 + 0.138 4 6 cbr 500 ------- 1 1.0 6.0 1 1 - 0.138 4 6 cbr 500 ------- 1 1.0 6.0 1 1 + 0.14 1 3 cbr 500 ------- 1 1.0 6.0 9 11 - 0.14 1 3 cbr 500 ------- 1 1.0 6.0 9 11 + 0.14 2 3 cbr 1000 ------- 1 2.0 7.0 2 12 - 0.14 2 3 cbr 1000 ------- 1 2.0 7.0 2 12 r 0.144 1 3 cbr 500 ------- 1 1.0 6.0 7 8 + 0.144 3 4 cbr 500 ------- 1 1.0 6.0 7 8 - 0.144 3 4 cbr 500 ------- 1 1.0 6.0 7 8 r 0.148 3 4 cbr 500 ------- 1 1.0 6.0 2 2 + 0.148 4 6 cbr 500 ------- 1 1.0 6.0 2 2 - 0.148 4 6 cbr 500 ------- 1 1.0 6.0 2 2 r 0.148 2 3 cbr 1000 ------- 1 2.0 7.0 1 9 + 0.148 3 4 cbr 1000 ------- 1 2.0 7.0 1 9 - 0.148 3 4 cbr 1000 ------- 1 2.0 7.0 1 9 + 0.15 1 3 cbr 500 ------- 1 1.0 6.0 10 13 - 0.15 1 3 cbr 500 ------- 1 1.0 6.0 10 13 r 0.152 4 6 cbr 500 ------- 1 1.0 6.0 0 0 r 0.154 1 3 cbr 500 ------- 1 1.0 6.0 8 10 + 0.154 3 4 cbr 500 ------- 1 1.0 6.0 8 10 - 0.156 3 4 cbr 500 ------- 1 1.0 6.0 8 10 r 0.158 3 4 cbr 500 ------- 1 1.0 6.0 3 3 + 0.158 4 6 cbr 500 ------- 1 1.0 6.0 3 3 - 0.158 4 6 cbr 500 ------- 1 1.0 6.0 3 3 + 0.16 2 3 cbr 1000 ------- 1 2.0 7.0 3 14 - 0.16 2 3 cbr 1000 ------- 1 2.0 7.0 3 14 + 0.16 1 3 cbr 500 ------- 1 1.0 6.0 11 15 - 0.16 1 3 cbr 500 ------- 1 1.0 6.0 11 15 r 0.162 4 6 cbr 500 ------- 1 1.0 6.0 1 1 r 0.164 1 3 cbr 500 ------- 1 1.0 6.0 9 11 + 0.164 3 4 cbr 500 ------- 1 1.0 6.0 9 11 - 0.164 3 4 cbr 500 ------- 1 1.0 6.0 9 11 r 0.168 3 4 cbr 500 ------- 1 1.0 6.0 4 4 + 0.168 4 6 cbr 500 ------- 1 1.0 6.0 4 4 - 0.168 4 6 cbr 500 ------- 1 1.0 6.0 4 4 r 0.168 2 3 cbr 1000 ------- 1 2.0 7.0 2 12 + 0.168 3 4 cbr 1000 ------- 1 2.0 7.0 2 12 - 0.168 3 4 cbr 1000 ------- 1 2.0 7.0 2 12 + 0.17 1 3 cbr 500 ------- 1 1.0 6.0 12 16 - 0.17 1 3 cbr 500 ------- 1 1.0 6.0 12 16 r 0.172 4 6 cbr 500 ------- 1 1.0 6.0 2 2 r 0.174 1 3 cbr 500 ------- 1 1.0 6.0 10 13 + 0.174 3 4 cbr 500 ------- 1 1.0 6.0 10 13 - 0.176 3 4 cbr 500 ------- 1 1.0 6.0 10 13 r 0.178 3 4 cbr 500 ------- 1 1.0 6.0 5 5 + 0.178 4 6 cbr 500 ------- 1 1.0 6.0 5 5 - 0.178 4 6 cbr 500 ------- 1 1.0 6.0 5 5 + 0.18 2 3 cbr 1000 ------- 1 2.0 7.0 4 17 - 0.18 2 3 cbr 1000 ------- 1 2.0 7.0 4 17 + 0.18 1 3 cbr 500 ------- 1 1.0 6.0 13 18 - 0.18 1 3 cbr 500 ------- 1 1.0 6.0 13 18 r 0.182 4 6 cbr 500 ------- 1 1.0 6.0 3 3 r 0.184 1 3 cbr 500 ------- 1 1.0 6.0 11 15 + 0.184 3 4 cbr 500 ------- 1 1.0 6.0 11 15 - 0.184 3 4 cbr 500 ------- 1 1.0 6.0 11 15 r 0.186 3 4 cbr 1000 ------- 1 2.0 7.0 0 6 + 0.186 4 7 cbr 1000 ------- 1 2.0 7.0 0 6 - 0.186 4 7 cbr 1000 ------- 1 2.0 7.0 0 6 r 0.188 2 3 cbr 1000 ------- 1 2.0 7.0 3 14 + 0.188 3 4 cbr 1000 ------- 1 2.0 7.0 3 14 - 0.188 3 4 cbr 1000 ------- 1 2.0 7.0 3 14 r 0.19 3 4 cbr 500 ------- 1 1.0 6.0 6 7 + 0.19 4 6 cbr 500 ------- 1 1.0 6.0 6 7 - 0.19 4 6 cbr 500 ------- 1 1.0 6.0 6 7 + 0.19 1 3 cbr 500 ------- 1 1.0 6.0 14 19 - 0.19 1 3 cbr 500 ------- 1 1.0 6.0 14 19 r 0.192 4 6 cbr 500 ------- 1 1.0 6.0 4 4 r 0.194 1 3 cbr 500 ------- 1 1.0 6.0 12 16 + 0.194 3 4 cbr 500 ------- 1 1.0 6.0 12 16 - 0.196 3 4 cbr 500 ------- 1 1.0 6.0 12 16 r 0.198 3 4 cbr 500 ------- 1 1.0 6.0 7 8 + 0.198 4 6 cbr 500 ------- 1 1.0 6.0 7 8 - 0.198 4 6 cbr 500 ------- 1 1.0 6.0 7 8 + 0.2 2 3 cbr 1000 ------- 1 2.0 7.0 5 20 - 0.2 2 3 cbr 1000 ------- 1 2.0 7.0 5 20 + 0.2 1 3 cbr 500 ------- 1 1.0 6.0 15 21 - 0.2 1 3 cbr 500 ------- 1 1.0 6.0 15 21 r 0.202 4 6 cbr 500 ------- 1 1.0 6.0 5 5 r 0.204 1 3 cbr 500 ------- 1 1.0 6.0 13 18 + 0.204 3 4 cbr 500 ------- 1 1.0 6.0 13 18 - 0.204 3 4 cbr 500 ------- 1 1.0 6.0 13 18 r 0.206 3 4 cbr 1000 ------- 1 2.0 7.0 1 9 + 0.206 4 7 cbr 1000 ------- 1 2.0 7.0 1 9 - 0.206 4 7 cbr 1000 ------- 1 2.0 7.0 1 9 r 0.208 2 3 cbr 1000 ------- 1 2.0 7.0 4 17 + 0.208 3 4 cbr 1000 ------- 1 2.0 7.0 4 17 - 0.208 3 4 cbr 1000 ------- 1 2.0 7.0 4 17 r 0.21 3 4 cbr 500 ------- 1 1.0 6.0 8 10 + 0.21 4 6 cbr 500 ------- 1 1.0 6.0 8 10 - 0.21 4 6 cbr 500 ------- 1 1.0 6.0 8 10 + 0.21 1 3 cbr 500 ------- 1 1.0 6.0 16 22 - 0.21 1 3 cbr 500 ------- 1 1.0 6.0 16 22 r 0.214 4 7 cbr 1000 ------- 1 2.0 7.0 0 6 r 0.214 4 6 cbr 500 ------- 1 1.0 6.0 6 7 r 0.214 1 3 cbr 500 ------- 1 1.0 6.0 14 19 + 0.214 3 4 cbr 500 ------- 1 1.0 6.0 14 19 - 0.216 3 4 cbr 500 ------- 1 1.0 6.0 14 19 r 0.218 3 4 cbr 500 ------- 1 1.0 6.0 9 11 + 0.218 4 6 cbr 500 ------- 1 1.0 6.0 9 11 - 0.218 4 6 cbr 500 ------- 1 1.0 6.0 9 11 + 0.22 2 3 cbr 1000 ------- 1 2.0 7.0 6 23 - 0.22 2 3 cbr 1000 ------- 1 2.0 7.0 6 23 + 0.22 1 3 cbr 500 ------- 1 1.0 6.0 17 24 - 0.22 1 3 cbr 500 ------- 1 1.0 6.0 17 24 r 0.222 4 6 cbr 500 ------- 1 1.0 6.0 7 8 r 0.224 1 3 cbr 500 ------- 1 1.0 6.0 15 21 + 0.224 3 4 cbr 500 ------- 1 1.0 6.0 15 21 - 0.224 3 4 cbr 500 ------- 1 1.0 6.0 15 21 r 0.226 3 4 cbr 1000 ------- 1 2.0 7.0 2 12 + 0.226 4 7 cbr 1000 ------- 1 2.0 7.0 2 12 - 0.226 4 7 cbr 1000 ------- 1 2.0 7.0 2 12 r 0.228 2 3 cbr 1000 ------- 1 2.0 7.0 5 20 + 0.228 3 4 cbr 1000 ------- 1 2.0 7.0 5 20 - 0.228 3 4 cbr 1000 ------- 1 2.0 7.0 5 20 r 0.23 3 4 cbr 500 ------- 1 1.0 6.0 10 13 + 0.23 4 6 cbr 500 ------- 1 1.0 6.0 10 13 - 0.23 4 6 cbr 500 ------- 1 1.0 6.0 10 13 + 0.23 1 3 cbr 500 ------- 1 1.0 6.0 18 25 - 0.23 1 3 cbr 500 ------- 1 1.0 6.0 18 25 r 0.234 4 7 cbr 1000 ------- 1 2.0 7.0 1 9 r 0.234 4 6 cbr 500 ------- 1 1.0 6.0 8 10 r 0.234 1 3 cbr 500 ------- 1 1.0 6.0 16 22 + 0.234 3 4 cbr 500 ------- 1 1.0 6.0 16 22 - 0.236 3 4 cbr 500 ------- 1 1.0 6.0 16 22 r 0.238 3 4 cbr 500 ------- 1 1.0 6.0 11 15 + 0.238 4 6 cbr 500 ------- 1 1.0 6.0 11 15 - 0.238 4 6 cbr 500 ------- 1 1.0 6.0 11 15 + 0.24 2 3 cbr 1000 ------- 1 2.0 7.0 7 26 - 0.24 2 3 cbr 1000 ------- 1 2.0 7.0 7 26 + 0.24 1 3 cbr 500 ------- 1 1.0 6.0 19 27 - 0.24 1 3 cbr 500 ------- 1 1.0 6.0 19 27 r 0.242 4 6 cbr 500 ------- 1 1.0 6.0 9 11 r 0.244 1 3 cbr 500 ------- 1 1.0 6.0 17 24 + 0.244 3 4 cbr 500 ------- 1 1.0 6.0 17 24 - 0.244 3 4 cbr 500 ------- 1 1.0 6.0 17 24 r 0.246 3 4 cbr 1000 ------- 1 2.0 7.0 3 14 + 0.246 4 7 cbr 1000 ------- 1 2.0 7.0 3 14 - 0.246 4 7 cbr 1000 ------- 1 2.0 7.0 3 14 r 0.248 2 3 cbr 1000 ------- 1 2.0 7.0 6 23 + 0.248 3 4 cbr 1000 ------- 1 2.0 7.0 6 23 - 0.248 3 4 cbr 1000 ------- 1 2.0 7.0 6 23 r 0.25 3 4 cbr 500 ------- 1 1.0 6.0 12 16 + 0.25 4 6 cbr 500 ------- 1 1.0 6.0 12 16 - 0.25 4 6 cbr 500 ------- 1 1.0 6.0 12 16 + 0.25 1 3 cbr 500 ------- 1 1.0 6.0 20 28 - 0.25 1 3 cbr 500 ------- 1 1.0 6.0 20 28 r 0.254 4 7 cbr 1000 ------- 1 2.0 7.0 2 12 r 0.254 4 6 cbr 500 ------- 1 1.0 6.0 10 13 r 0.254 1 3 cbr 500 ------- 1 1.0 6.0 18 25 + 0.254 3 4 cbr 500 ------- 1 1.0 6.0 18 25 - 0.256 3 4 cbr 500 ------- 1 1.0 6.0 18 25 r 0.258 3 4 cbr 500 ------- 1 1.0 6.0 13 18 + 0.258 4 6 cbr 500 ------- 1 1.0 6.0 13 18 - 0.258 4 6 cbr 500 ------- 1 1.0 6.0 13 18 + 0.26 2 3 cbr 1000 ------- 1 2.0 7.0 8 29 - 0.26 2 3 cbr 1000 ------- 1 2.0 7.0 8 29 + 0.26 1 3 cbr 500 ------- 1 1.0 6.0 21 30 - 0.26 1 3 cbr 500 ------- 1 1.0 6.0 21 30 r 0.262 4 6 cbr 500 ------- 1 1.0 6.0 11 15 r 0.264 1 3 cbr 500 ------- 1 1.0 6.0 19 27 + 0.264 3 4 cbr 500 ------- 1 1.0 6.0 19 27 - 0.264 3 4 cbr 500 ------- 1 1.0 6.0 19 27 r 0.266 3 4 cbr 1000 ------- 1 2.0 7.0 4 17 + 0.266 4 7 cbr 1000 ------- 1 2.0 7.0 4 17 - 0.266 4 7 cbr 1000 ------- 1 2.0 7.0 4 17 r 0.268 2 3 cbr 1000 ------- 1 2.0 7.0 7 26 + 0.268 3 4 cbr 1000 ------- 1 2.0 7.0 7 26 - 0.268 3 4 cbr 1000 ------- 1 2.0 7.0 7 26 r 0.27 3 4 cbr 500 ------- 1 1.0 6.0 14 19 + 0.27 4 6 cbr 500 ------- 1 1.0 6.0 14 19 - 0.27 4 6 cbr 500 ------- 1 1.0 6.0 14 19 + 0.27 1 3 cbr 500 ------- 1 1.0 6.0 22 31 - 0.27 1 3 cbr 500 ------- 1 1.0 6.0 22 31 r 0.274 4 7 cbr 1000 ------- 1 2.0 7.0 3 14 r 0.274 4 6 cbr 500 ------- 1 1.0 6.0 12 16 r 0.274 1 3 cbr 500 ------- 1 1.0 6.0 20 28 + 0.274 3 4 cbr 500 ------- 1 1.0 6.0 20 28 - 0.276 3 4 cbr 500 ------- 1 1.0 6.0 20 28 r 0.278 3 4 cbr 500 ------- 1 1.0 6.0 15 21 + 0.278 4 6 cbr 500 ------- 1 1.0 6.0 15 21 - 0.278 4 6 cbr 500 ------- 1 1.0 6.0 15 21 + 0.28 2 3 cbr 1000 ------- 1 2.0 7.0 9 32 - 0.28 2 3 cbr 1000 ------- 1 2.0 7.0 9 32 + 0.28 1 3 cbr 500 ------- 1 1.0 6.0 23 33 - 0.28 1 3 cbr 500 ------- 1 1.0 6.0 23 33 r 0.282 4 6 cbr 500 ------- 1 1.0 6.0 13 18 r 0.284 1 3 cbr 500 ------- 1 1.0 6.0 21 30 + 0.284 3 4 cbr 500 ------- 1 1.0 6.0 21 30 - 0.284 3 4 cbr 500 ------- 1 1.0 6.0 21 30 r 0.286 3 4 cbr 1000 ------- 1 2.0 7.0 5 20 + 0.286 4 7 cbr 1000 ------- 1 2.0 7.0 5 20 - 0.286 4 7 cbr 1000 ------- 1 2.0 7.0 5 20 r 0.288 2 3 cbr 1000 ------- 1 2.0 7.0 8 29 + 0.288 3 4 cbr 1000 ------- 1 2.0 7.0 8 29 - 0.288 3 4 cbr 1000 ------- 1 2.0 7.0 8 29 r 0.29 3 4 cbr 500 ------- 1 1.0 6.0 16 22 + 0.29 4 6 cbr 500 ------- 1 1.0 6.0 16 22 - 0.29 4 6 cbr 500 ------- 1 1.0 6.0 16 22 + 0.29 1 3 cbr 500 ------- 1 1.0 6.0 24 34 - 0.29 1 3 cbr 500 ------- 1 1.0 6.0 24 34 r 0.294 4 7 cbr 1000 ------- 1 2.0 7.0 4 17 r 0.294 4 6 cbr 500 ------- 1 1.0 6.0 14 19 r 0.294 1 3 cbr 500 ------- 1 1.0 6.0 22 31 + 0.294 3 4 cbr 500 ------- 1 1.0 6.0 22 31 - 0.296 3 4 cbr 500 ------- 1 1.0 6.0 22 31 r 0.298 3 4 cbr 500 ------- 1 1.0 6.0 17 24 + 0.298 4 6 cbr 500 ------- 1 1.0 6.0 17 24 - 0.298 4 6 cbr 500 ------- 1 1.0 6.0 17 24 + 0.3 2 3 cbr 1000 ------- 1 2.0 7.0 10 35 - 0.3 2 3 cbr 1000 ------- 1 2.0 7.0 10 35 + 0.3 1 3 cbr 500 ------- 1 1.0 6.0 25 36 - 0.3 1 3 cbr 500 ------- 1 1.0 6.0 25 36 r 0.302 4 6 cbr 500 ------- 1 1.0 6.0 15 21 r 0.304 1 3 cbr 500 ------- 1 1.0 6.0 23 33 + 0.304 3 4 cbr 500 ------- 1 1.0 6.0 23 33 - 0.304 3 4 cbr 500 ------- 1 1.0 6.0 23 33 r 0.306 3 4 cbr 1000 ------- 1 2.0 7.0 6 23 + 0.306 4 7 cbr 1000 ------- 1 2.0 7.0 6 23 - 0.306 4 7 cbr 1000 ------- 1 2.0 7.0 6 23 r 0.308 2 3 cbr 1000 ------- 1 2.0 7.0 9 32 + 0.308 3 4 cbr 1000 ------- 1 2.0 7.0 9 32 - 0.308 3 4 cbr 1000 ------- 1 2.0 7.0 9 32 r 0.31 3 4 cbr 500 ------- 1 1.0 6.0 18 25 + 0.31 4 6 cbr 500 ------- 1 1.0 6.0 18 25 - 0.31 4 6 cbr 500 ------- 1 1.0 6.0 18 25 + 0.31 1 3 cbr 500 ------- 1 1.0 6.0 26 37 - 0.31 1 3 cbr 500 ------- 1 1.0 6.0 26 37 r 0.314 4 7 cbr 1000 ------- 1 2.0 7.0 5 20 r 0.314 4 6 cbr 500 ------- 1 1.0 6.0 16 22 r 0.314 1 3 cbr 500 ------- 1 1.0 6.0 24 34 + 0.314 3 4 cbr 500 ------- 1 1.0 6.0 24 34 - 0.316 3 4 cbr 500 ------- 1 1.0 6.0 24 34 r 0.318 3 4 cbr 500 ------- 1 1.0 6.0 19 27 + 0.318 4 6 cbr 500 ------- 1 1.0 6.0 19 27 - 0.318 4 6 cbr 500 ------- 1 1.0 6.0 19 27 + 0.32 2 3 cbr 1000 ------- 1 2.0 7.0 11 38 - 0.32 2 3 cbr 1000 ------- 1 2.0 7.0 11 38 + 0.32 1 3 cbr 500 ------- 1 1.0 6.0 27 39 - 0.32 1 3 cbr 500 ------- 1 1.0 6.0 27 39 r 0.322 4 6 cbr 500 ------- 1 1.0 6.0 17 24 r 0.324 1 3 cbr 500 ------- 1 1.0 6.0 25 36 + 0.324 3 4 cbr 500 ------- 1 1.0 6.0 25 36 - 0.324 3 4 cbr 500 ------- 1 1.0 6.0 25 36 r 0.326 3 4 cbr 1000 ------- 1 2.0 7.0 7 26 + 0.326 4 7 cbr 1000 ------- 1 2.0 7.0 7 26 - 0.326 4 7 cbr 1000 ------- 1 2.0 7.0 7 26 r 0.328 2 3 cbr 1000 ------- 1 2.0 7.0 10 35 + 0.328 3 4 cbr 1000 ------- 1 2.0 7.0 10 35 - 0.328 3 4 cbr 1000 ------- 1 2.0 7.0 10 35 r 0.33 3 4 cbr 500 ------- 1 1.0 6.0 20 28 + 0.33 4 6 cbr 500 ------- 1 1.0 6.0 20 28 - 0.33 4 6 cbr 500 ------- 1 1.0 6.0 20 28 + 0.33 1 3 cbr 500 ------- 1 1.0 6.0 28 40 - 0.33 1 3 cbr 500 ------- 1 1.0 6.0 28 40 r 0.334 4 7 cbr 1000 ------- 1 2.0 7.0 6 23 r 0.334 4 6 cbr 500 ------- 1 1.0 6.0 18 25 r 0.334 1 3 cbr 500 ------- 1 1.0 6.0 26 37 + 0.334 3 4 cbr 500 ------- 1 1.0 6.0 26 37 - 0.336 3 4 cbr 500 ------- 1 1.0 6.0 26 37 r 0.338 3 4 cbr 500 ------- 1 1.0 6.0 21 30 + 0.338 4 6 cbr 500 ------- 1 1.0 6.0 21 30 - 0.338 4 6 cbr 500 ------- 1 1.0 6.0 21 30 + 0.34 2 3 cbr 1000 ------- 1 2.0 7.0 12 41 - 0.34 2 3 cbr 1000 ------- 1 2.0 7.0 12 41 + 0.34 1 3 cbr 500 ------- 1 1.0 6.0 29 42 - 0.34 1 3 cbr 500 ------- 1 1.0 6.0 29 42 r 0.342 4 6 cbr 500 ------- 1 1.0 6.0 19 27 r 0.344 1 3 cbr 500 ------- 1 1.0 6.0 27 39 + 0.344 3 4 cbr 500 ------- 1 1.0 6.0 27 39 - 0.344 3 4 cbr 500 ------- 1 1.0 6.0 27 39 r 0.346 3 4 cbr 1000 ------- 1 2.0 7.0 8 29 + 0.346 4 7 cbr 1000 ------- 1 2.0 7.0 8 29 - 0.346 4 7 cbr 1000 ------- 1 2.0 7.0 8 29 r 0.348 2 3 cbr 1000 ------- 1 2.0 7.0 11 38 + 0.348 3 4 cbr 1000 ------- 1 2.0 7.0 11 38 - 0.348 3 4 cbr 1000 ------- 1 2.0 7.0 11 38 r 0.35 3 4 cbr 500 ------- 1 1.0 6.0 22 31 + 0.35 4 6 cbr 500 ------- 1 1.0 6.0 22 31 - 0.35 4 6 cbr 500 ------- 1 1.0 6.0 22 31 + 0.35 1 3 cbr 500 ------- 1 1.0 6.0 30 43 - 0.35 1 3 cbr 500 ------- 1 1.0 6.0 30 43 r 0.354 4 7 cbr 1000 ------- 1 2.0 7.0 7 26 r 0.354 4 6 cbr 500 ------- 1 1.0 6.0 20 28 r 0.354 1 3 cbr 500 ------- 1 1.0 6.0 28 40 + 0.354 3 4 cbr 500 ------- 1 1.0 6.0 28 40 - 0.356 3 4 cbr 500 ------- 1 1.0 6.0 28 40 r 0.358 3 4 cbr 500 ------- 1 1.0 6.0 23 33 + 0.358 4 6 cbr 500 ------- 1 1.0 6.0 23 33 - 0.358 4 6 cbr 500 ------- 1 1.0 6.0 23 33 + 0.36 2 3 cbr 1000 ------- 1 2.0 7.0 13 44 - 0.36 2 3 cbr 1000 ------- 1 2.0 7.0 13 44 + 0.36 1 3 cbr 500 ------- 1 1.0 6.0 31 45 - 0.36 1 3 cbr 500 ------- 1 1.0 6.0 31 45 r 0.362 4 6 cbr 500 ------- 1 1.0 6.0 21 30 r 0.364 1 3 cbr 500 ------- 1 1.0 6.0 29 42 + 0.364 3 4 cbr 500 ------- 1 1.0 6.0 29 42 - 0.364 3 4 cbr 500 ------- 1 1.0 6.0 29 42 r 0.366 3 4 cbr 1000 ------- 1 2.0 7.0 9 32 + 0.366 4 7 cbr 1000 ------- 1 2.0 7.0 9 32 - 0.366 4 7 cbr 1000 ------- 1 2.0 7.0 9 32 r 0.368 2 3 cbr 1000 ------- 1 2.0 7.0 12 41 + 0.368 3 4 cbr 1000 ------- 1 2.0 7.0 12 41 - 0.368 3 4 cbr 1000 ------- 1 2.0 7.0 12 41 r 0.37 3 4 cbr 500 ------- 1 1.0 6.0 24 34 + 0.37 4 6 cbr 500 ------- 1 1.0 6.0 24 34 - 0.37 4 6 cbr 500 ------- 1 1.0 6.0 24 34 + 0.37 1 3 cbr 500 ------- 1 1.0 6.0 32 46 - 0.37 1 3 cbr 500 ------- 1 1.0 6.0 32 46 r 0.374 4 7 cbr 1000 ------- 1 2.0 7.0 8 29 r 0.374 4 6 cbr 500 ------- 1 1.0 6.0 22 31 r 0.374 1 3 cbr 500 ------- 1 1.0 6.0 30 43 + 0.374 3 4 cbr 500 ------- 1 1.0 6.0 30 43 - 0.376 3 4 cbr 500 ------- 1 1.0 6.0 30 43 r 0.378 3 4 cbr 500 ------- 1 1.0 6.0 25 36 + 0.378 4 6 cbr 500 ------- 1 1.0 6.0 25 36 - 0.378 4 6 cbr 500 ------- 1 1.0 6.0 25 36 + 0.38 2 3 cbr 1000 ------- 1 2.0 7.0 14 47 - 0.38 2 3 cbr 1000 ------- 1 2.0 7.0 14 47 + 0.38 1 3 cbr 500 ------- 1 1.0 6.0 33 48 - 0.38 1 3 cbr 500 ------- 1 1.0 6.0 33 48 r 0.382 4 6 cbr 500 ------- 1 1.0 6.0 23 33 r 0.384 1 3 cbr 500 ------- 1 1.0 6.0 31 45 + 0.384 3 4 cbr 500 ------- 1 1.0 6.0 31 45 - 0.384 3 4 cbr 500 ------- 1 1.0 6.0 31 45 r 0.386 3 4 cbr 1000 ------- 1 2.0 7.0 10 35 + 0.386 4 7 cbr 1000 ------- 1 2.0 7.0 10 35 - 0.386 4 7 cbr 1000 ------- 1 2.0 7.0 10 35 r 0.388 2 3 cbr 1000 ------- 1 2.0 7.0 13 44 + 0.388 3 4 cbr 1000 ------- 1 2.0 7.0 13 44 - 0.388 3 4 cbr 1000 ------- 1 2.0 7.0 13 44 r 0.39 3 4 cbr 500 ------- 1 1.0 6.0 26 37 + 0.39 4 6 cbr 500 ------- 1 1.0 6.0 26 37 - 0.39 4 6 cbr 500 ------- 1 1.0 6.0 26 37 + 0.39 1 3 cbr 500 ------- 1 1.0 6.0 34 49 - 0.39 1 3 cbr 500 ------- 1 1.0 6.0 34 49 r 0.394 4 7 cbr 1000 ------- 1 2.0 7.0 9 32 r 0.394 4 6 cbr 500 ------- 1 1.0 6.0 24 34 r 0.394 1 3 cbr 500 ------- 1 1.0 6.0 32 46 + 0.394 3 4 cbr 500 ------- 1 1.0 6.0 32 46 - 0.396 3 4 cbr 500 ------- 1 1.0 6.0 32 46 r 0.398 3 4 cbr 500 ------- 1 1.0 6.0 27 39 + 0.398 4 6 cbr 500 ------- 1 1.0 6.0 27 39 - 0.398 4 6 cbr 500 ------- 1 1.0 6.0 27 39 + 0.4 2 3 cbr 1000 ------- 1 2.0 7.0 15 50 - 0.4 2 3 cbr 1000 ------- 1 2.0 7.0 15 50 + 0.4 1 3 cbr 500 ------- 1 1.0 6.0 35 51 - 0.4 1 3 cbr 500 ------- 1 1.0 6.0 35 51 r 0.402 4 6 cbr 500 ------- 1 1.0 6.0 25 36 r 0.404 1 3 cbr 500 ------- 1 1.0 6.0 33 48 + 0.404 3 4 cbr 500 ------- 1 1.0 6.0 33 48 - 0.404 3 4 cbr 500 ------- 1 1.0 6.0 33 48 r 0.406 3 4 cbr 1000 ------- 1 2.0 7.0 11 38 + 0.406 4 7 cbr 1000 ------- 1 2.0 7.0 11 38 - 0.406 4 7 cbr 1000 ------- 1 2.0 7.0 11 38 r 0.408 2 3 cbr 1000 ------- 1 2.0 7.0 14 47 + 0.408 3 4 cbr 1000 ------- 1 2.0 7.0 14 47 - 0.408 3 4 cbr 1000 ------- 1 2.0 7.0 14 47 r 0.41 3 4 cbr 500 ------- 1 1.0 6.0 28 40 + 0.41 4 6 cbr 500 ------- 1 1.0 6.0 28 40 - 0.41 4 6 cbr 500 ------- 1 1.0 6.0 28 40 + 0.41 1 3 cbr 500 ------- 1 1.0 6.0 36 52 - 0.41 1 3 cbr 500 ------- 1 1.0 6.0 36 52 r 0.414 4 7 cbr 1000 ------- 1 2.0 7.0 10 35 r 0.414 4 6 cbr 500 ------- 1 1.0 6.0 26 37 r 0.414 1 3 cbr 500 ------- 1 1.0 6.0 34 49 + 0.414 3 4 cbr 500 ------- 1 1.0 6.0 34 49 - 0.416 3 4 cbr 500 ------- 1 1.0 6.0 34 49 r 0.418 3 4 cbr 500 ------- 1 1.0 6.0 29 42 + 0.418 4 6 cbr 500 ------- 1 1.0 6.0 29 42 - 0.418 4 6 cbr 500 ------- 1 1.0 6.0 29 42 + 0.42 2 3 cbr 1000 ------- 1 2.0 7.0 16 53 - 0.42 2 3 cbr 1000 ------- 1 2.0 7.0 16 53 + 0.42 1 3 cbr 500 ------- 1 1.0 6.0 37 54 - 0.42 1 3 cbr 500 ------- 1 1.0 6.0 37 54 r 0.422 4 6 cbr 500 ------- 1 1.0 6.0 27 39 r 0.424 1 3 cbr 500 ------- 1 1.0 6.0 35 51 + 0.424 3 4 cbr 500 ------- 1 1.0 6.0 35 51 - 0.424 3 4 cbr 500 ------- 1 1.0 6.0 35 51 r 0.426 3 4 cbr 1000 ------- 1 2.0 7.0 12 41 + 0.426 4 7 cbr 1000 ------- 1 2.0 7.0 12 41 - 0.426 4 7 cbr 1000 ------- 1 2.0 7.0 12 41 r 0.428 2 3 cbr 1000 ------- 1 2.0 7.0 15 50 + 0.428 3 4 cbr 1000 ------- 1 2.0 7.0 15 50 - 0.428 3 4 cbr 1000 ------- 1 2.0 7.0 15 50 r 0.43 3 4 cbr 500 ------- 1 1.0 6.0 30 43 + 0.43 4 6 cbr 500 ------- 1 1.0 6.0 30 43 - 0.43 4 6 cbr 500 ------- 1 1.0 6.0 30 43 + 0.43 1 3 cbr 500 ------- 1 1.0 6.0 38 55 - 0.43 1 3 cbr 500 ------- 1 1.0 6.0 38 55 r 0.434 4 7 cbr 1000 ------- 1 2.0 7.0 11 38 r 0.434 4 6 cbr 500 ------- 1 1.0 6.0 28 40 r 0.434 1 3 cbr 500 ------- 1 1.0 6.0 36 52 + 0.434 3 4 cbr 500 ------- 1 1.0 6.0 36 52 - 0.436 3 4 cbr 500 ------- 1 1.0 6.0 36 52 r 0.438 3 4 cbr 500 ------- 1 1.0 6.0 31 45 + 0.438 4 6 cbr 500 ------- 1 1.0 6.0 31 45 - 0.438 4 6 cbr 500 ------- 1 1.0 6.0 31 45 + 0.44 2 3 cbr 1000 ------- 1 2.0 7.0 17 56 - 0.44 2 3 cbr 1000 ------- 1 2.0 7.0 17 56 + 0.44 1 3 cbr 500 ------- 1 1.0 6.0 39 57 - 0.44 1 3 cbr 500 ------- 1 1.0 6.0 39 57 r 0.442 4 6 cbr 500 ------- 1 1.0 6.0 29 42 r 0.444 1 3 cbr 500 ------- 1 1.0 6.0 37 54 + 0.444 3 4 cbr 500 ------- 1 1.0 6.0 37 54 - 0.444 3 4 cbr 500 ------- 1 1.0 6.0 37 54 r 0.446 3 4 cbr 1000 ------- 1 2.0 7.0 13 44 + 0.446 4 7 cbr 1000 ------- 1 2.0 7.0 13 44 - 0.446 4 7 cbr 1000 ------- 1 2.0 7.0 13 44 r 0.448 2 3 cbr 1000 ------- 1 2.0 7.0 16 53 + 0.448 3 4 cbr 1000 ------- 1 2.0 7.0 16 53 - 0.448 3 4 cbr 1000 ------- 1 2.0 7.0 16 53 r 0.45 3 4 cbr 500 ------- 1 1.0 6.0 32 46 + 0.45 4 6 cbr 500 ------- 1 1.0 6.0 32 46 - 0.45 4 6 cbr 500 ------- 1 1.0 6.0 32 46 + 0.45 1 3 cbr 500 ------- 1 1.0 6.0 40 58 - 0.45 1 3 cbr 500 ------- 1 1.0 6.0 40 58 r 0.454 4 7 cbr 1000 ------- 1 2.0 7.0 12 41 r 0.454 4 6 cbr 500 ------- 1 1.0 6.0 30 43 r 0.454 1 3 cbr 500 ------- 1 1.0 6.0 38 55 + 0.454 3 4 cbr 500 ------- 1 1.0 6.0 38 55 - 0.456 3 4 cbr 500 ------- 1 1.0 6.0 38 55 r 0.458 3 4 cbr 500 ------- 1 1.0 6.0 33 48 + 0.458 4 6 cbr 500 ------- 1 1.0 6.0 33 48 - 0.458 4 6 cbr 500 ------- 1 1.0 6.0 33 48 + 0.46 2 3 cbr 1000 ------- 1 2.0 7.0 18 59 - 0.46 2 3 cbr 1000 ------- 1 2.0 7.0 18 59 + 0.46 1 3 cbr 500 ------- 1 1.0 6.0 41 60 - 0.46 1 3 cbr 500 ------- 1 1.0 6.0 41 60 r 0.462 4 6 cbr 500 ------- 1 1.0 6.0 31 45 r 0.464 1 3 cbr 500 ------- 1 1.0 6.0 39 57 + 0.464 3 4 cbr 500 ------- 1 1.0 6.0 39 57 - 0.464 3 4 cbr 500 ------- 1 1.0 6.0 39 57 r 0.466 3 4 cbr 1000 ------- 1 2.0 7.0 14 47 + 0.466 4 7 cbr 1000 ------- 1 2.0 7.0 14 47 - 0.466 4 7 cbr 1000 ------- 1 2.0 7.0 14 47 r 0.468 2 3 cbr 1000 ------- 1 2.0 7.0 17 56 + 0.468 3 4 cbr 1000 ------- 1 2.0 7.0 17 56 - 0.468 3 4 cbr 1000 ------- 1 2.0 7.0 17 56 r 0.47 3 4 cbr 500 ------- 1 1.0 6.0 34 49 + 0.47 4 6 cbr 500 ------- 1 1.0 6.0 34 49 - 0.47 4 6 cbr 500 ------- 1 1.0 6.0 34 49 + 0.47 1 3 cbr 500 ------- 1 1.0 6.0 42 61 - 0.47 1 3 cbr 500 ------- 1 1.0 6.0 42 61 r 0.474 4 7 cbr 1000 ------- 1 2.0 7.0 13 44 r 0.474 4 6 cbr 500 ------- 1 1.0 6.0 32 46 r 0.474 1 3 cbr 500 ------- 1 1.0 6.0 40 58 + 0.474 3 4 cbr 500 ------- 1 1.0 6.0 40 58 - 0.476 3 4 cbr 500 ------- 1 1.0 6.0 40 58 r 0.478 3 4 cbr 500 ------- 1 1.0 6.0 35 51 + 0.478 4 6 cbr 500 ------- 1 1.0 6.0 35 51 - 0.478 4 6 cbr 500 ------- 1 1.0 6.0 35 51 + 0.48 2 3 cbr 1000 ------- 1 2.0 7.0 19 62 - 0.48 2 3 cbr 1000 ------- 1 2.0 7.0 19 62 + 0.48 1 3 cbr 500 ------- 1 1.0 6.0 43 63 - 0.48 1 3 cbr 500 ------- 1 1.0 6.0 43 63 r 0.482 4 6 cbr 500 ------- 1 1.0 6.0 33 48 r 0.484 1 3 cbr 500 ------- 1 1.0 6.0 41 60 + 0.484 3 4 cbr 500 ------- 1 1.0 6.0 41 60 - 0.484 3 4 cbr 500 ------- 1 1.0 6.0 41 60 r 0.486 3 4 cbr 1000 ------- 1 2.0 7.0 15 50 + 0.486 4 7 cbr 1000 ------- 1 2.0 7.0 15 50 - 0.486 4 7 cbr 1000 ------- 1 2.0 7.0 15 50 r 0.488 2 3 cbr 1000 ------- 1 2.0 7.0 18 59 + 0.488 3 4 cbr 1000 ------- 1 2.0 7.0 18 59 - 0.488 3 4 cbr 1000 ------- 1 2.0 7.0 18 59 r 0.49 3 4 cbr 500 ------- 1 1.0 6.0 36 52 + 0.49 4 6 cbr 500 ------- 1 1.0 6.0 36 52 - 0.49 4 6 cbr 500 ------- 1 1.0 6.0 36 52 + 0.49 1 3 cbr 500 ------- 1 1.0 6.0 44 64 - 0.49 1 3 cbr 500 ------- 1 1.0 6.0 44 64 r 0.494 4 7 cbr 1000 ------- 1 2.0 7.0 14 47 r 0.494 4 6 cbr 500 ------- 1 1.0 6.0 34 49 r 0.494 1 3 cbr 500 ------- 1 1.0 6.0 42 61 + 0.494 3 4 cbr 500 ------- 1 1.0 6.0 42 61 - 0.496 3 4 cbr 500 ------- 1 1.0 6.0 42 61 r 0.498 3 4 cbr 500 ------- 1 1.0 6.0 37 54 + 0.498 4 6 cbr 500 ------- 1 1.0 6.0 37 54 - 0.498 4 6 cbr 500 ------- 1 1.0 6.0 37 54 + 0.5 0 3 tcp 1000 ------- 0 0.0 5.0 0 65 - 0.5 0 3 tcp 1000 ------- 0 0.0 5.0 0 65 v 0.5 eval {set sim_annotation {TCP starts}} + 0.5 2 3 cbr 1000 ------- 1 2.0 7.0 20 66 - 0.5 2 3 cbr 1000 ------- 1 2.0 7.0 20 66 + 0.5 1 3 cbr 500 ------- 1 1.0 6.0 45 67 - 0.5 1 3 cbr 500 ------- 1 1.0 6.0 45 67 r 0.502 4 6 cbr 500 ------- 1 1.0 6.0 35 51 r 0.504 1 3 cbr 500 ------- 1 1.0 6.0 43 63 + 0.504 3 4 cbr 500 ------- 1 1.0 6.0 43 63 - 0.504 3 4 cbr 500 ------- 1 1.0 6.0 43 63 r 0.506 3 4 cbr 1000 ------- 1 2.0 7.0 16 53 + 0.506 4 7 cbr 1000 ------- 1 2.0 7.0 16 53 - 0.506 4 7 cbr 1000 ------- 1 2.0 7.0 16 53 r 0.508 2 3 cbr 1000 ------- 1 2.0 7.0 19 62 + 0.508 3 4 cbr 1000 ------- 1 2.0 7.0 19 62 - 0.508 3 4 cbr 1000 ------- 1 2.0 7.0 19 62 r 0.51 3 4 cbr 500 ------- 1 1.0 6.0 38 55 + 0.51 4 6 cbr 500 ------- 1 1.0 6.0 38 55 - 0.51 4 6 cbr 500 ------- 1 1.0 6.0 38 55 + 0.51 1 3 cbr 500 ------- 1 1.0 6.0 46 68 - 0.51 1 3 cbr 500 ------- 1 1.0 6.0 46 68 r 0.514 4 7 cbr 1000 ------- 1 2.0 7.0 15 50 r 0.514 4 6 cbr 500 ------- 1 1.0 6.0 36 52 r 0.514 1 3 cbr 500 ------- 1 1.0 6.0 44 64 + 0.514 3 4 cbr 500 ------- 1 1.0 6.0 44 64 - 0.516 3 4 cbr 500 ------- 1 1.0 6.0 44 64 r 0.518 3 4 cbr 500 ------- 1 1.0 6.0 39 57 + 0.518 4 6 cbr 500 ------- 1 1.0 6.0 39 57 - 0.518 4 6 cbr 500 ------- 1 1.0 6.0 39 57 + 0.52 2 3 cbr 1000 ------- 1 2.0 7.0 21 69 - 0.52 2 3 cbr 1000 ------- 1 2.0 7.0 21 69 + 0.52 1 3 cbr 500 ------- 1 1.0 6.0 47 70 - 0.52 1 3 cbr 500 ------- 1 1.0 6.0 47 70 r 0.5216 0 3 tcp 1000 ------- 0 0.0 5.0 0 65 + 0.5216 3 4 tcp 1000 ------- 0 0.0 5.0 0 65 - 0.5216 3 4 tcp 1000 ------- 0 0.0 5.0 0 65 r 0.522 4 6 cbr 500 ------- 1 1.0 6.0 37 54 r 0.524 1 3 cbr 500 ------- 1 1.0 6.0 45 67 + 0.524 3 4 cbr 500 ------- 1 1.0 6.0 45 67 r 0.526 3 4 cbr 1000 ------- 1 2.0 7.0 17 56 + 0.526 4 7 cbr 1000 ------- 1 2.0 7.0 17 56 - 0.526 4 7 cbr 1000 ------- 1 2.0 7.0 17 56 r 0.528 2 3 cbr 1000 ------- 1 2.0 7.0 20 66 + 0.528 3 4 cbr 1000 ------- 1 2.0 7.0 20 66 - 0.5296 3 4 cbr 500 ------- 1 1.0 6.0 45 67 r 0.53 3 4 cbr 500 ------- 1 1.0 6.0 40 58 + 0.53 4 6 cbr 500 ------- 1 1.0 6.0 40 58 - 0.53 4 6 cbr 500 ------- 1 1.0 6.0 40 58 + 0.53 1 3 cbr 500 ------- 1 1.0 6.0 48 71 - 0.53 1 3 cbr 500 ------- 1 1.0 6.0 48 71 - 0.5336 3 4 cbr 1000 ------- 1 2.0 7.0 20 66 r 0.534 4 7 cbr 1000 ------- 1 2.0 7.0 16 53 r 0.534 4 6 cbr 500 ------- 1 1.0 6.0 38 55 r 0.534 1 3 cbr 500 ------- 1 1.0 6.0 46 68 + 0.534 3 4 cbr 500 ------- 1 1.0 6.0 46 68 r 0.538 3 4 cbr 500 ------- 1 1.0 6.0 41 60 + 0.538 4 6 cbr 500 ------- 1 1.0 6.0 41 60 - 0.538 4 6 cbr 500 ------- 1 1.0 6.0 41 60 + 0.54 2 3 cbr 1000 ------- 1 2.0 7.0 22 72 - 0.54 2 3 cbr 1000 ------- 1 2.0 7.0 22 72 + 0.54 1 3 cbr 500 ------- 1 1.0 6.0 49 73 - 0.54 1 3 cbr 500 ------- 1 1.0 6.0 49 73 - 0.5416 3 4 cbr 500 ------- 1 1.0 6.0 46 68 r 0.542 4 6 cbr 500 ------- 1 1.0 6.0 39 57 r 0.544 1 3 cbr 500 ------- 1 1.0 6.0 47 70 + 0.544 3 4 cbr 500 ------- 1 1.0 6.0 47 70 - 0.5456 3 4 cbr 500 ------- 1 1.0 6.0 47 70 r 0.546 3 4 cbr 1000 ------- 1 2.0 7.0 18 59 + 0.546 4 7 cbr 1000 ------- 1 2.0 7.0 18 59 - 0.546 4 7 cbr 1000 ------- 1 2.0 7.0 18 59 r 0.548 2 3 cbr 1000 ------- 1 2.0 7.0 21 69 + 0.548 3 4 cbr 1000 ------- 1 2.0 7.0 21 69 - 0.5496 3 4 cbr 1000 ------- 1 2.0 7.0 21 69 r 0.55 3 4 cbr 500 ------- 1 1.0 6.0 42 61 + 0.55 4 6 cbr 500 ------- 1 1.0 6.0 42 61 - 0.55 4 6 cbr 500 ------- 1 1.0 6.0 42 61 + 0.55 1 3 cbr 500 ------- 1 1.0 6.0 50 74 - 0.55 1 3 cbr 500 ------- 1 1.0 6.0 50 74 r 0.554 4 7 cbr 1000 ------- 1 2.0 7.0 17 56 r 0.554 4 6 cbr 500 ------- 1 1.0 6.0 40 58 r 0.554 1 3 cbr 500 ------- 1 1.0 6.0 48 71 + 0.554 3 4 cbr 500 ------- 1 1.0 6.0 48 71 - 0.5576 3 4 cbr 500 ------- 1 1.0 6.0 48 71 r 0.558 3 4 cbr 500 ------- 1 1.0 6.0 43 63 + 0.558 4 6 cbr 500 ------- 1 1.0 6.0 43 63 - 0.558 4 6 cbr 500 ------- 1 1.0 6.0 43 63 + 0.56 2 3 cbr 1000 ------- 1 2.0 7.0 23 75 - 0.56 2 3 cbr 1000 ------- 1 2.0 7.0 23 75 + 0.56 1 3 cbr 500 ------- 1 1.0 6.0 51 76 - 0.56 1 3 cbr 500 ------- 1 1.0 6.0 51 76 r 0.562 4 6 cbr 500 ------- 1 1.0 6.0 41 60 r 0.564 1 3 cbr 500 ------- 1 1.0 6.0 49 73 + 0.564 3 4 cbr 500 ------- 1 1.0 6.0 49 73 - 0.564 3 4 cbr 500 ------- 1 1.0 6.0 49 73 r 0.566 3 4 cbr 1000 ------- 1 2.0 7.0 19 62 + 0.566 4 7 cbr 1000 ------- 1 2.0 7.0 19 62 - 0.566 4 7 cbr 1000 ------- 1 2.0 7.0 19 62 r 0.568 2 3 cbr 1000 ------- 1 2.0 7.0 22 72 + 0.568 3 4 cbr 1000 ------- 1 2.0 7.0 22 72 - 0.568 3 4 cbr 1000 ------- 1 2.0 7.0 22 72 r 0.57 3 4 cbr 500 ------- 1 1.0 6.0 44 64 + 0.57 4 6 cbr 500 ------- 1 1.0 6.0 44 64 - 0.57 4 6 cbr 500 ------- 1 1.0 6.0 44 64 + 0.57 1 3 cbr 500 ------- 1 1.0 6.0 52 77 - 0.57 1 3 cbr 500 ------- 1 1.0 6.0 52 77 r 0.574 4 7 cbr 1000 ------- 1 2.0 7.0 18 59 r 0.574 4 6 cbr 500 ------- 1 1.0 6.0 42 61 r 0.574 1 3 cbr 500 ------- 1 1.0 6.0 50 74 + 0.574 3 4 cbr 500 ------- 1 1.0 6.0 50 74 - 0.576 3 4 cbr 500 ------- 1 1.0 6.0 50 74 r 0.5796 3 4 tcp 1000 ------- 0 0.0 5.0 0 65 + 0.5796 4 5 tcp 1000 ------- 0 0.0 5.0 0 65 - 0.5796 4 5 tcp 1000 ------- 0 0.0 5.0 0 65 + 0.58 2 3 cbr 1000 ------- 1 2.0 7.0 24 78 - 0.58 2 3 cbr 1000 ------- 1 2.0 7.0 24 78 + 0.58 1 3 cbr 500 ------- 1 1.0 6.0 53 79 - 0.58 1 3 cbr 500 ------- 1 1.0 6.0 53 79 r 0.582 4 6 cbr 500 ------- 1 1.0 6.0 43 63 r 0.5836 3 4 cbr 500 ------- 1 1.0 6.0 45 67 + 0.5836 4 6 cbr 500 ------- 1 1.0 6.0 45 67 - 0.5836 4 6 cbr 500 ------- 1 1.0 6.0 45 67 r 0.584 1 3 cbr 500 ------- 1 1.0 6.0 51 76 + 0.584 3 4 cbr 500 ------- 1 1.0 6.0 51 76 - 0.584 3 4 cbr 500 ------- 1 1.0 6.0 51 76 r 0.588 2 3 cbr 1000 ------- 1 2.0 7.0 23 75 + 0.588 3 4 cbr 1000 ------- 1 2.0 7.0 23 75 - 0.588 3 4 cbr 1000 ------- 1 2.0 7.0 23 75 + 0.59 1 3 cbr 500 ------- 1 1.0 6.0 54 80 - 0.59 1 3 cbr 500 ------- 1 1.0 6.0 54 80 r 0.5916 3 4 cbr 1000 ------- 1 2.0 7.0 20 66 + 0.5916 4 7 cbr 1000 ------- 1 2.0 7.0 20 66 - 0.5916 4 7 cbr 1000 ------- 1 2.0 7.0 20 66 r 0.594 4 7 cbr 1000 ------- 1 2.0 7.0 19 62 r 0.594 4 6 cbr 500 ------- 1 1.0 6.0 44 64 r 0.594 1 3 cbr 500 ------- 1 1.0 6.0 52 77 + 0.594 3 4 cbr 500 ------- 1 1.0 6.0 52 77 r 0.5956 3 4 cbr 500 ------- 1 1.0 6.0 46 68 + 0.5956 4 6 cbr 500 ------- 1 1.0 6.0 46 68 - 0.5956 4 6 cbr 500 ------- 1 1.0 6.0 46 68 - 0.596 3 4 cbr 500 ------- 1 1.0 6.0 52 77 r 0.5996 3 4 cbr 500 ------- 1 1.0 6.0 47 70 + 0.5996 4 6 cbr 500 ------- 1 1.0 6.0 47 70 - 0.5996 4 6 cbr 500 ------- 1 1.0 6.0 47 70 + 0.6 2 3 cbr 1000 ------- 1 2.0 7.0 25 81 - 0.6 2 3 cbr 1000 ------- 1 2.0 7.0 25 81 + 0.6 1 3 cbr 500 ------- 1 1.0 6.0 55 82 - 0.6 1 3 cbr 500 ------- 1 1.0 6.0 55 82 r 0.6012 4 5 tcp 1000 ------- 0 0.0 5.0 0 65 + 0.6012 5 4 ack 40 ------- 0 5.0 0.0 0 83 - 0.6012 5 4 ack 40 ------- 0 5.0 0.0 0 83 r 0.604 1 3 cbr 500 ------- 1 1.0 6.0 53 79 + 0.604 3 4 cbr 500 ------- 1 1.0 6.0 53 79 - 0.604 3 4 cbr 500 ------- 1 1.0 6.0 53 79 r 0.6076 3 4 cbr 1000 ------- 1 2.0 7.0 21 69 + 0.6076 4 7 cbr 1000 ------- 1 2.0 7.0 21 69 - 0.6076 4 7 cbr 1000 ------- 1 2.0 7.0 21 69 r 0.6076 4 6 cbr 500 ------- 1 1.0 6.0 45 67 r 0.608 2 3 cbr 1000 ------- 1 2.0 7.0 24 78 + 0.608 3 4 cbr 1000 ------- 1 2.0 7.0 24 78 - 0.608 3 4 cbr 1000 ------- 1 2.0 7.0 24 78 + 0.61 1 3 cbr 500 ------- 1 1.0 6.0 56 84 - 0.61 1 3 cbr 500 ------- 1 1.0 6.0 56 84 r 0.6116 3 4 cbr 500 ------- 1 1.0 6.0 48 71 + 0.6116 4 6 cbr 500 ------- 1 1.0 6.0 48 71 - 0.6116 4 6 cbr 500 ------- 1 1.0 6.0 48 71 r 0.614 1 3 cbr 500 ------- 1 1.0 6.0 54 80 + 0.614 3 4 cbr 500 ------- 1 1.0 6.0 54 80 - 0.616 3 4 cbr 500 ------- 1 1.0 6.0 54 80 r 0.618 3 4 cbr 500 ------- 1 1.0 6.0 49 73 + 0.618 4 6 cbr 500 ------- 1 1.0 6.0 49 73 - 0.618 4 6 cbr 500 ------- 1 1.0 6.0 49 73 r 0.6196 4 7 cbr 1000 ------- 1 2.0 7.0 20 66 r 0.6196 4 6 cbr 500 ------- 1 1.0 6.0 46 68 + 0.62 2 3 cbr 1000 ------- 1 2.0 7.0 26 85 - 0.62 2 3 cbr 1000 ------- 1 2.0 7.0 26 85 + 0.62 1 3 cbr 500 ------- 1 1.0 6.0 57 86 - 0.62 1 3 cbr 500 ------- 1 1.0 6.0 57 86 r 0.621264 5 4 ack 40 ------- 0 5.0 0.0 0 83 + 0.621264 4 3 ack 40 ------- 0 5.0 0.0 0 83 - 0.621264 4 3 ack 40 ------- 0 5.0 0.0 0 83 r 0.6236 4 6 cbr 500 ------- 1 1.0 6.0 47 70 r 0.624 1 3 cbr 500 ------- 1 1.0 6.0 55 82 + 0.624 3 4 cbr 500 ------- 1 1.0 6.0 55 82 - 0.624 3 4 cbr 500 ------- 1 1.0 6.0 55 82 r 0.626 3 4 cbr 1000 ------- 1 2.0 7.0 22 72 + 0.626 4 7 cbr 1000 ------- 1 2.0 7.0 22 72 - 0.626 4 7 cbr 1000 ------- 1 2.0 7.0 22 72 r 0.628 2 3 cbr 1000 ------- 1 2.0 7.0 25 81 + 0.628 3 4 cbr 1000 ------- 1 2.0 7.0 25 81 - 0.628 3 4 cbr 1000 ------- 1 2.0 7.0 25 81 r 0.63 3 4 cbr 500 ------- 1 1.0 6.0 50 74 + 0.63 4 6 cbr 500 ------- 1 1.0 6.0 50 74 - 0.63 4 6 cbr 500 ------- 1 1.0 6.0 50 74 + 0.63 1 3 cbr 500 ------- 1 1.0 6.0 58 87 - 0.63 1 3 cbr 500 ------- 1 1.0 6.0 58 87 r 0.634 1 3 cbr 500 ------- 1 1.0 6.0 56 84 + 0.634 3 4 cbr 500 ------- 1 1.0 6.0 56 84 r 0.6356 4 7 cbr 1000 ------- 1 2.0 7.0 21 69 r 0.6356 4 6 cbr 500 ------- 1 1.0 6.0 48 71 - 0.636 3 4 cbr 500 ------- 1 1.0 6.0 56 84 r 0.638 3 4 cbr 500 ------- 1 1.0 6.0 51 76 + 0.638 4 6 cbr 500 ------- 1 1.0 6.0 51 76 - 0.638 4 6 cbr 500 ------- 1 1.0 6.0 51 76 + 0.64 2 3 cbr 1000 ------- 1 2.0 7.0 27 88 - 0.64 2 3 cbr 1000 ------- 1 2.0 7.0 27 88 + 0.64 1 3 cbr 500 ------- 1 1.0 6.0 59 89 - 0.64 1 3 cbr 500 ------- 1 1.0 6.0 59 89 r 0.642 4 6 cbr 500 ------- 1 1.0 6.0 49 73 r 0.644 1 3 cbr 500 ------- 1 1.0 6.0 57 86 + 0.644 3 4 cbr 500 ------- 1 1.0 6.0 57 86 - 0.644 3 4 cbr 500 ------- 1 1.0 6.0 57 86 r 0.646 3 4 cbr 1000 ------- 1 2.0 7.0 23 75 + 0.646 4 7 cbr 1000 ------- 1 2.0 7.0 23 75 - 0.646 4 7 cbr 1000 ------- 1 2.0 7.0 23 75 r 0.648 2 3 cbr 1000 ------- 1 2.0 7.0 26 85 + 0.648 3 4 cbr 1000 ------- 1 2.0 7.0 26 85 - 0.648 3 4 cbr 1000 ------- 1 2.0 7.0 26 85 r 0.65 3 4 cbr 500 ------- 1 1.0 6.0 52 77 + 0.65 4 6 cbr 500 ------- 1 1.0 6.0 52 77 - 0.65 4 6 cbr 500 ------- 1 1.0 6.0 52 77 + 0.65 1 3 cbr 500 ------- 1 1.0 6.0 60 90 - 0.65 1 3 cbr 500 ------- 1 1.0 6.0 60 90 r 0.654 4 7 cbr 1000 ------- 1 2.0 7.0 22 72 r 0.654 4 6 cbr 500 ------- 1 1.0 6.0 50 74 r 0.654 1 3 cbr 500 ------- 1 1.0 6.0 58 87 + 0.654 3 4 cbr 500 ------- 1 1.0 6.0 58 87 - 0.656 3 4 cbr 500 ------- 1 1.0 6.0 58 87 r 0.658 3 4 cbr 500 ------- 1 1.0 6.0 53 79 + 0.658 4 6 cbr 500 ------- 1 1.0 6.0 53 79 - 0.658 4 6 cbr 500 ------- 1 1.0 6.0 53 79 + 0.66 2 3 cbr 1000 ------- 1 2.0 7.0 28 91 - 0.66 2 3 cbr 1000 ------- 1 2.0 7.0 28 91 + 0.66 1 3 cbr 500 ------- 1 1.0 6.0 61 92 - 0.66 1 3 cbr 500 ------- 1 1.0 6.0 61 92 r 0.662 4 6 cbr 500 ------- 1 1.0 6.0 51 76 r 0.664 1 3 cbr 500 ------- 1 1.0 6.0 59 89 + 0.664 3 4 cbr 500 ------- 1 1.0 6.0 59 89 - 0.664 3 4 cbr 500 ------- 1 1.0 6.0 59 89 r 0.666 3 4 cbr 1000 ------- 1 2.0 7.0 24 78 + 0.666 4 7 cbr 1000 ------- 1 2.0 7.0 24 78 - 0.666 4 7 cbr 1000 ------- 1 2.0 7.0 24 78 r 0.668 2 3 cbr 1000 ------- 1 2.0 7.0 27 88 + 0.668 3 4 cbr 1000 ------- 1 2.0 7.0 27 88 - 0.668 3 4 cbr 1000 ------- 1 2.0 7.0 27 88 r 0.67 3 4 cbr 500 ------- 1 1.0 6.0 54 80 + 0.67 4 6 cbr 500 ------- 1 1.0 6.0 54 80 - 0.67 4 6 cbr 500 ------- 1 1.0 6.0 54 80 + 0.67 1 3 cbr 500 ------- 1 1.0 6.0 62 93 - 0.67 1 3 cbr 500 ------- 1 1.0 6.0 62 93 r 0.671584 4 3 ack 40 ------- 0 5.0 0.0 0 83 + 0.671584 3 0 ack 40 ------- 0 5.0 0.0 0 83 - 0.671584 3 0 ack 40 ------- 0 5.0 0.0 0 83 r 0.674 4 7 cbr 1000 ------- 1 2.0 7.0 23 75 r 0.674 4 6 cbr 500 ------- 1 1.0 6.0 52 77 r 0.674 1 3 cbr 500 ------- 1 1.0 6.0 60 90 + 0.674 3 4 cbr 500 ------- 1 1.0 6.0 60 90 - 0.676 3 4 cbr 500 ------- 1 1.0 6.0 60 90 r 0.678 3 4 cbr 500 ------- 1 1.0 6.0 55 82 + 0.678 4 6 cbr 500 ------- 1 1.0 6.0 55 82 - 0.678 4 6 cbr 500 ------- 1 1.0 6.0 55 82 + 0.68 2 3 cbr 1000 ------- 1 2.0 7.0 29 94 - 0.68 2 3 cbr 1000 ------- 1 2.0 7.0 29 94 + 0.68 1 3 cbr 500 ------- 1 1.0 6.0 63 95 - 0.68 1 3 cbr 500 ------- 1 1.0 6.0 63 95 r 0.682 4 6 cbr 500 ------- 1 1.0 6.0 53 79 r 0.684 1 3 cbr 500 ------- 1 1.0 6.0 61 92 + 0.684 3 4 cbr 500 ------- 1 1.0 6.0 61 92 - 0.684 3 4 cbr 500 ------- 1 1.0 6.0 61 92 r 0.686 3 4 cbr 1000 ------- 1 2.0 7.0 25 81 + 0.686 4 7 cbr 1000 ------- 1 2.0 7.0 25 81 - 0.686 4 7 cbr 1000 ------- 1 2.0 7.0 25 81 r 0.688 2 3 cbr 1000 ------- 1 2.0 7.0 28 91 + 0.688 3 4 cbr 1000 ------- 1 2.0 7.0 28 91 - 0.688 3 4 cbr 1000 ------- 1 2.0 7.0 28 91 r 0.69 3 4 cbr 500 ------- 1 1.0 6.0 56 84 + 0.69 4 6 cbr 500 ------- 1 1.0 6.0 56 84 - 0.69 4 6 cbr 500 ------- 1 1.0 6.0 56 84 + 0.69 1 3 cbr 500 ------- 1 1.0 6.0 64 96 - 0.69 1 3 cbr 500 ------- 1 1.0 6.0 64 96 r 0.691648 3 0 ack 40 ------- 0 5.0 0.0 0 83 + 0.691648 0 3 tcp 1000 ------- 0 0.0 5.0 1 97 - 0.691648 0 3 tcp 1000 ------- 0 0.0 5.0 1 97 + 0.691648 0 3 tcp 1000 ------- 0 0.0 5.0 2 98 - 0.693248 0 3 tcp 1000 ------- 0 0.0 5.0 2 98 r 0.694 4 7 cbr 1000 ------- 1 2.0 7.0 24 78 r 0.694 4 6 cbr 500 ------- 1 1.0 6.0 54 80 r 0.694 1 3 cbr 500 ------- 1 1.0 6.0 62 93 + 0.694 3 4 cbr 500 ------- 1 1.0 6.0 62 93 - 0.696 3 4 cbr 500 ------- 1 1.0 6.0 62 93 r 0.698 3 4 cbr 500 ------- 1 1.0 6.0 57 86 + 0.698 4 6 cbr 500 ------- 1 1.0 6.0 57 86 - 0.698 4 6 cbr 500 ------- 1 1.0 6.0 57 86 + 0.7 2 3 cbr 1000 ------- 1 2.0 7.0 30 99 - 0.7 2 3 cbr 1000 ------- 1 2.0 7.0 30 99 + 0.7 1 3 cbr 500 ------- 1 1.0 6.0 65 100 - 0.7 1 3 cbr 500 ------- 1 1.0 6.0 65 100 r 0.702 4 6 cbr 500 ------- 1 1.0 6.0 55 82 r 0.704 1 3 cbr 500 ------- 1 1.0 6.0 63 95 + 0.704 3 4 cbr 500 ------- 1 1.0 6.0 63 95 - 0.704 3 4 cbr 500 ------- 1 1.0 6.0 63 95 r 0.706 3 4 cbr 1000 ------- 1 2.0 7.0 26 85 + 0.706 4 7 cbr 1000 ------- 1 2.0 7.0 26 85 - 0.706 4 7 cbr 1000 ------- 1 2.0 7.0 26 85 r 0.708 2 3 cbr 1000 ------- 1 2.0 7.0 29 94 + 0.708 3 4 cbr 1000 ------- 1 2.0 7.0 29 94 - 0.708 3 4 cbr 1000 ------- 1 2.0 7.0 29 94 r 0.71 3 4 cbr 500 ------- 1 1.0 6.0 58 87 + 0.71 4 6 cbr 500 ------- 1 1.0 6.0 58 87 - 0.71 4 6 cbr 500 ------- 1 1.0 6.0 58 87 + 0.71 1 3 cbr 500 ------- 1 1.0 6.0 66 101 - 0.71 1 3 cbr 500 ------- 1 1.0 6.0 66 101 r 0.713248 0 3 tcp 1000 ------- 0 0.0 5.0 1 97 + 0.713248 3 4 tcp 1000 ------- 0 0.0 5.0 1 97 r 0.714 4 7 cbr 1000 ------- 1 2.0 7.0 25 81 r 0.714 4 6 cbr 500 ------- 1 1.0 6.0 56 84 r 0.714 1 3 cbr 500 ------- 1 1.0 6.0 64 96 + 0.714 3 4 cbr 500 ------- 1 1.0 6.0 64 96 r 0.714848 0 3 tcp 1000 ------- 0 0.0 5.0 2 98 + 0.714848 3 4 tcp 1000 ------- 0 0.0 5.0 2 98 - 0.716 3 4 tcp 1000 ------- 0 0.0 5.0 1 97 r 0.718 3 4 cbr 500 ------- 1 1.0 6.0 59 89 + 0.718 4 6 cbr 500 ------- 1 1.0 6.0 59 89 - 0.718 4 6 cbr 500 ------- 1 1.0 6.0 59 89 + 0.72 2 3 cbr 1000 ------- 1 2.0 7.0 31 102 - 0.72 2 3 cbr 1000 ------- 1 2.0 7.0 31 102 + 0.72 1 3 cbr 500 ------- 1 1.0 6.0 67 103 - 0.72 1 3 cbr 500 ------- 1 1.0 6.0 67 103 r 0.722 4 6 cbr 500 ------- 1 1.0 6.0 57 86 r 0.724 1 3 cbr 500 ------- 1 1.0 6.0 65 100 + 0.724 3 4 cbr 500 ------- 1 1.0 6.0 65 100 - 0.724 3 4 cbr 500 ------- 1 1.0 6.0 64 96 r 0.726 3 4 cbr 1000 ------- 1 2.0 7.0 27 88 + 0.726 4 7 cbr 1000 ------- 1 2.0 7.0 27 88 - 0.726 4 7 cbr 1000 ------- 1 2.0 7.0 27 88 r 0.728 2 3 cbr 1000 ------- 1 2.0 7.0 30 99 + 0.728 3 4 cbr 1000 ------- 1 2.0 7.0 30 99 - 0.728 3 4 tcp 1000 ------- 0 0.0 5.0 2 98 r 0.73 3 4 cbr 500 ------- 1 1.0 6.0 60 90 + 0.73 4 6 cbr 500 ------- 1 1.0 6.0 60 90 - 0.73 4 6 cbr 500 ------- 1 1.0 6.0 60 90 + 0.73 1 3 cbr 500 ------- 1 1.0 6.0 68 104 - 0.73 1 3 cbr 500 ------- 1 1.0 6.0 68 104 r 0.734 4 7 cbr 1000 ------- 1 2.0 7.0 26 85 r 0.734 4 6 cbr 500 ------- 1 1.0 6.0 58 87 r 0.734 1 3 cbr 500 ------- 1 1.0 6.0 66 101 + 0.734 3 4 cbr 500 ------- 1 1.0 6.0 66 101 - 0.736 3 4 cbr 500 ------- 1 1.0 6.0 65 100 r 0.738 3 4 cbr 500 ------- 1 1.0 6.0 61 92 + 0.738 4 6 cbr 500 ------- 1 1.0 6.0 61 92 - 0.738 4 6 cbr 500 ------- 1 1.0 6.0 61 92 + 0.74 2 3 cbr 1000 ------- 1 2.0 7.0 32 105 - 0.74 2 3 cbr 1000 ------- 1 2.0 7.0 32 105 + 0.74 1 3 cbr 500 ------- 1 1.0 6.0 69 106 - 0.74 1 3 cbr 500 ------- 1 1.0 6.0 69 106 - 0.74 3 4 cbr 1000 ------- 1 2.0 7.0 30 99 r 0.742 4 6 cbr 500 ------- 1 1.0 6.0 59 89 r 0.744 1 3 cbr 500 ------- 1 1.0 6.0 67 103 + 0.744 3 4 cbr 500 ------- 1 1.0 6.0 67 103 r 0.746 3 4 cbr 1000 ------- 1 2.0 7.0 28 91 + 0.746 4 7 cbr 1000 ------- 1 2.0 7.0 28 91 - 0.746 4 7 cbr 1000 ------- 1 2.0 7.0 28 91 r 0.748 2 3 cbr 1000 ------- 1 2.0 7.0 31 102 + 0.748 3 4 cbr 1000 ------- 1 2.0 7.0 31 102 - 0.748 3 4 cbr 500 ------- 1 1.0 6.0 66 101 r 0.75 3 4 cbr 500 ------- 1 1.0 6.0 62 93 + 0.75 4 6 cbr 500 ------- 1 1.0 6.0 62 93 - 0.75 4 6 cbr 500 ------- 1 1.0 6.0 62 93 + 0.75 1 3 cbr 500 ------- 1 1.0 6.0 70 107 - 0.75 1 3 cbr 500 ------- 1 1.0 6.0 70 107 - 0.752 3 4 cbr 500 ------- 1 1.0 6.0 67 103 r 0.754 4 7 cbr 1000 ------- 1 2.0 7.0 27 88 r 0.754 4 6 cbr 500 ------- 1 1.0 6.0 60 90 r 0.754 1 3 cbr 500 ------- 1 1.0 6.0 68 104 + 0.754 3 4 cbr 500 ------- 1 1.0 6.0 68 104 - 0.756 3 4 cbr 1000 ------- 1 2.0 7.0 31 102 r 0.758 3 4 cbr 500 ------- 1 1.0 6.0 63 95 + 0.758 4 6 cbr 500 ------- 1 1.0 6.0 63 95 - 0.758 4 6 cbr 500 ------- 1 1.0 6.0 63 95 + 0.76 2 3 cbr 1000 ------- 1 2.0 7.0 33 108 - 0.76 2 3 cbr 1000 ------- 1 2.0 7.0 33 108 + 0.76 1 3 cbr 500 ------- 1 1.0 6.0 71 109 - 0.76 1 3 cbr 500 ------- 1 1.0 6.0 71 109 r 0.762 4 6 cbr 500 ------- 1 1.0 6.0 61 92 r 0.764 1 3 cbr 500 ------- 1 1.0 6.0 69 106 + 0.764 3 4 cbr 500 ------- 1 1.0 6.0 69 106 - 0.764 3 4 cbr 500 ------- 1 1.0 6.0 68 104 r 0.766 3 4 cbr 1000 ------- 1 2.0 7.0 29 94 + 0.766 4 7 cbr 1000 ------- 1 2.0 7.0 29 94 - 0.766 4 7 cbr 1000 ------- 1 2.0 7.0 29 94 r 0.768 2 3 cbr 1000 ------- 1 2.0 7.0 32 105 + 0.768 3 4 cbr 1000 ------- 1 2.0 7.0 32 105 - 0.768 3 4 cbr 500 ------- 1 1.0 6.0 69 106 + 0.77 1 3 cbr 500 ------- 1 1.0 6.0 72 110 - 0.77 1 3 cbr 500 ------- 1 1.0 6.0 72 110 - 0.772 3 4 cbr 1000 ------- 1 2.0 7.0 32 105 r 0.774 3 4 tcp 1000 ------- 0 0.0 5.0 1 97 + 0.774 4 5 tcp 1000 ------- 0 0.0 5.0 1 97 - 0.774 4 5 tcp 1000 ------- 0 0.0 5.0 1 97 r 0.774 4 7 cbr 1000 ------- 1 2.0 7.0 28 91 r 0.774 4 6 cbr 500 ------- 1 1.0 6.0 62 93 r 0.774 1 3 cbr 500 ------- 1 1.0 6.0 70 107 + 0.774 3 4 cbr 500 ------- 1 1.0 6.0 70 107 r 0.778 3 4 cbr 500 ------- 1 1.0 6.0 64 96 + 0.778 4 6 cbr 500 ------- 1 1.0 6.0 64 96 - 0.778 4 6 cbr 500 ------- 1 1.0 6.0 64 96 + 0.78 2 3 cbr 1000 ------- 1 2.0 7.0 34 111 - 0.78 2 3 cbr 1000 ------- 1 2.0 7.0 34 111 + 0.78 1 3 cbr 500 ------- 1 1.0 6.0 73 112 - 0.78 1 3 cbr 500 ------- 1 1.0 6.0 73 112 - 0.78 3 4 cbr 500 ------- 1 1.0 6.0 70 107 r 0.782 4 6 cbr 500 ------- 1 1.0 6.0 63 95 r 0.784 1 3 cbr 500 ------- 1 1.0 6.0 71 109 + 0.784 3 4 cbr 500 ------- 1 1.0 6.0 71 109 - 0.784 3 4 cbr 500 ------- 1 1.0 6.0 71 109 r 0.786 3 4 tcp 1000 ------- 0 0.0 5.0 2 98 + 0.786 4 5 tcp 1000 ------- 0 0.0 5.0 2 98 - 0.786 4 5 tcp 1000 ------- 0 0.0 5.0 2 98 r 0.788 2 3 cbr 1000 ------- 1 2.0 7.0 33 108 + 0.788 3 4 cbr 1000 ------- 1 2.0 7.0 33 108 - 0.788 3 4 cbr 1000 ------- 1 2.0 7.0 33 108 r 0.79 3 4 cbr 500 ------- 1 1.0 6.0 65 100 + 0.79 4 6 cbr 500 ------- 1 1.0 6.0 65 100 - 0.79 4 6 cbr 500 ------- 1 1.0 6.0 65 100 + 0.79 1 3 cbr 500 ------- 1 1.0 6.0 74 113 - 0.79 1 3 cbr 500 ------- 1 1.0 6.0 74 113 r 0.794 4 7 cbr 1000 ------- 1 2.0 7.0 29 94 r 0.794 1 3 cbr 500 ------- 1 1.0 6.0 72 110 + 0.794 3 4 cbr 500 ------- 1 1.0 6.0 72 110 r 0.7956 4 5 tcp 1000 ------- 0 0.0 5.0 1 97 + 0.7956 5 4 ack 40 ------- 0 5.0 0.0 1 114 - 0.7956 5 4 ack 40 ------- 0 5.0 0.0 1 114 - 0.796 3 4 cbr 500 ------- 1 1.0 6.0 72 110 r 0.798 3 4 cbr 1000 ------- 1 2.0 7.0 30 99 + 0.798 4 7 cbr 1000 ------- 1 2.0 7.0 30 99 - 0.798 4 7 cbr 1000 ------- 1 2.0 7.0 30 99 + 0.8 2 3 cbr 1000 ------- 1 2.0 7.0 35 115 - 0.8 2 3 cbr 1000 ------- 1 2.0 7.0 35 115 + 0.8 1 3 cbr 500 ------- 1 1.0 6.0 75 116 - 0.8 1 3 cbr 500 ------- 1 1.0 6.0 75 116 r 0.802 3 4 cbr 500 ------- 1 1.0 6.0 66 101 + 0.802 4 6 cbr 500 ------- 1 1.0 6.0 66 101 - 0.802 4 6 cbr 500 ------- 1 1.0 6.0 66 101 r 0.802 4 6 cbr 500 ------- 1 1.0 6.0 64 96 r 0.804 1 3 cbr 500 ------- 1 1.0 6.0 73 112 + 0.804 3 4 cbr 500 ------- 1 1.0 6.0 73 112 - 0.804 3 4 cbr 500 ------- 1 1.0 6.0 73 112 r 0.806 3 4 cbr 500 ------- 1 1.0 6.0 67 103 + 0.806 4 6 cbr 500 ------- 1 1.0 6.0 67 103 - 0.806 4 6 cbr 500 ------- 1 1.0 6.0 67 103 r 0.8076 4 5 tcp 1000 ------- 0 0.0 5.0 2 98 + 0.8076 5 4 ack 40 ------- 0 5.0 0.0 2 117 - 0.8076 5 4 ack 40 ------- 0 5.0 0.0 2 117 r 0.808 2 3 cbr 1000 ------- 1 2.0 7.0 34 111 + 0.808 3 4 cbr 1000 ------- 1 2.0 7.0 34 111 - 0.808 3 4 cbr 1000 ------- 1 2.0 7.0 34 111 + 0.81 1 3 cbr 500 ------- 1 1.0 6.0 76 118 - 0.81 1 3 cbr 500 ------- 1 1.0 6.0 76 118 r 0.814 3 4 cbr 1000 ------- 1 2.0 7.0 31 102 + 0.814 4 7 cbr 1000 ------- 1 2.0 7.0 31 102 - 0.814 4 7 cbr 1000 ------- 1 2.0 7.0 31 102 r 0.814 4 6 cbr 500 ------- 1 1.0 6.0 65 100 r 0.814 1 3 cbr 500 ------- 1 1.0 6.0 74 113 + 0.814 3 4 cbr 500 ------- 1 1.0 6.0 74 113 r 0.815664 5 4 ack 40 ------- 0 5.0 0.0 1 114 + 0.815664 4 3 ack 40 ------- 0 5.0 0.0 1 114 - 0.815664 4 3 ack 40 ------- 0 5.0 0.0 1 114 - 0.816 3 4 cbr 500 ------- 1 1.0 6.0 74 113 r 0.818 3 4 cbr 500 ------- 1 1.0 6.0 68 104 + 0.818 4 6 cbr 500 ------- 1 1.0 6.0 68 104 - 0.818 4 6 cbr 500 ------- 1 1.0 6.0 68 104 + 0.82 2 3 cbr 1000 ------- 1 2.0 7.0 36 119 - 0.82 2 3 cbr 1000 ------- 1 2.0 7.0 36 119 + 0.82 1 3 cbr 500 ------- 1 1.0 6.0 77 120 - 0.82 1 3 cbr 500 ------- 1 1.0 6.0 77 120 r 0.822 3 4 cbr 500 ------- 1 1.0 6.0 69 106 + 0.822 4 6 cbr 500 ------- 1 1.0 6.0 69 106 - 0.822 4 6 cbr 500 ------- 1 1.0 6.0 69 106 r 0.824 1 3 cbr 500 ------- 1 1.0 6.0 75 116 + 0.824 3 4 cbr 500 ------- 1 1.0 6.0 75 116 - 0.824 3 4 cbr 500 ------- 1 1.0 6.0 75 116 r 0.826 4 7 cbr 1000 ------- 1 2.0 7.0 30 99 r 0.826 4 6 cbr 500 ------- 1 1.0 6.0 66 101 r 0.827664 5 4 ack 40 ------- 0 5.0 0.0 2 117 + 0.827664 4 3 ack 40 ------- 0 5.0 0.0 2 117 - 0.827664 4 3 ack 40 ------- 0 5.0 0.0 2 117 r 0.828 2 3 cbr 1000 ------- 1 2.0 7.0 35 115 + 0.828 3 4 cbr 1000 ------- 1 2.0 7.0 35 115 - 0.828 3 4 cbr 1000 ------- 1 2.0 7.0 35 115 r 0.83 3 4 cbr 1000 ------- 1 2.0 7.0 32 105 + 0.83 4 7 cbr 1000 ------- 1 2.0 7.0 32 105 - 0.83 4 7 cbr 1000 ------- 1 2.0 7.0 32 105 r 0.83 4 6 cbr 500 ------- 1 1.0 6.0 67 103 + 0.83 1 3 cbr 500 ------- 1 1.0 6.0 78 121 - 0.83 1 3 cbr 500 ------- 1 1.0 6.0 78 121 r 0.834 3 4 cbr 500 ------- 1 1.0 6.0 70 107 + 0.834 4 6 cbr 500 ------- 1 1.0 6.0 70 107 - 0.834 4 6 cbr 500 ------- 1 1.0 6.0 70 107 r 0.834 1 3 cbr 500 ------- 1 1.0 6.0 76 118 + 0.834 3 4 cbr 500 ------- 1 1.0 6.0 76 118 - 0.836 3 4 cbr 500 ------- 1 1.0 6.0 76 118 r 0.838 3 4 cbr 500 ------- 1 1.0 6.0 71 109 + 0.838 4 6 cbr 500 ------- 1 1.0 6.0 71 109 - 0.838 4 6 cbr 500 ------- 1 1.0 6.0 71 109 + 0.84 2 3 cbr 1000 ------- 1 2.0 7.0 37 122 - 0.84 2 3 cbr 1000 ------- 1 2.0 7.0 37 122 + 0.84 1 3 cbr 500 ------- 1 1.0 6.0 79 123 - 0.84 1 3 cbr 500 ------- 1 1.0 6.0 79 123 r 0.842 4 7 cbr 1000 ------- 1 2.0 7.0 31 102 r 0.842 4 6 cbr 500 ------- 1 1.0 6.0 68 104 r 0.844 1 3 cbr 500 ------- 1 1.0 6.0 77 120 + 0.844 3 4 cbr 500 ------- 1 1.0 6.0 77 120 - 0.844 3 4 cbr 500 ------- 1 1.0 6.0 77 120 r 0.846 3 4 cbr 1000 ------- 1 2.0 7.0 33 108 + 0.846 4 7 cbr 1000 ------- 1 2.0 7.0 33 108 - 0.846 4 7 cbr 1000 ------- 1 2.0 7.0 33 108 r 0.846 4 6 cbr 500 ------- 1 1.0 6.0 69 106 r 0.848 2 3 cbr 1000 ------- 1 2.0 7.0 36 119 + 0.848 3 4 cbr 1000 ------- 1 2.0 7.0 36 119 - 0.848 3 4 cbr 1000 ------- 1 2.0 7.0 36 119 r 0.85 3 4 cbr 500 ------- 1 1.0 6.0 72 110 + 0.85 4 6 cbr 500 ------- 1 1.0 6.0 72 110 - 0.85 4 6 cbr 500 ------- 1 1.0 6.0 72 110 + 0.85 1 3 cbr 500 ------- 1 1.0 6.0 80 124 - 0.85 1 3 cbr 500 ------- 1 1.0 6.0 80 124 r 0.854 1 3 cbr 500 ------- 1 1.0 6.0 78 121 + 0.854 3 4 cbr 500 ------- 1 1.0 6.0 78 121 - 0.856 3 4 cbr 500 ------- 1 1.0 6.0 78 121 r 0.858 3 4 cbr 500 ------- 1 1.0 6.0 73 112 + 0.858 4 6 cbr 500 ------- 1 1.0 6.0 73 112 - 0.858 4 6 cbr 500 ------- 1 1.0 6.0 73 112 r 0.858 4 7 cbr 1000 ------- 1 2.0 7.0 32 105 r 0.858 4 6 cbr 500 ------- 1 1.0 6.0 70 107 + 0.86 2 3 cbr 1000 ------- 1 2.0 7.0 38 125 - 0.86 2 3 cbr 1000 ------- 1 2.0 7.0 38 125 + 0.86 1 3 cbr 500 ------- 1 1.0 6.0 81 126 - 0.86 1 3 cbr 500 ------- 1 1.0 6.0 81 126 r 0.862 4 6 cbr 500 ------- 1 1.0 6.0 71 109 r 0.864 1 3 cbr 500 ------- 1 1.0 6.0 79 123 + 0.864 3 4 cbr 500 ------- 1 1.0 6.0 79 123 - 0.864 3 4 cbr 500 ------- 1 1.0 6.0 79 123 r 0.865984 4 3 ack 40 ------- 0 5.0 0.0 1 114 + 0.865984 3 0 ack 40 ------- 0 5.0 0.0 1 114 - 0.865984 3 0 ack 40 ------- 0 5.0 0.0 1 114 r 0.866 3 4 cbr 1000 ------- 1 2.0 7.0 34 111 + 0.866 4 7 cbr 1000 ------- 1 2.0 7.0 34 111 - 0.866 4 7 cbr 1000 ------- 1 2.0 7.0 34 111 r 0.868 2 3 cbr 1000 ------- 1 2.0 7.0 37 122 + 0.868 3 4 cbr 1000 ------- 1 2.0 7.0 37 122 - 0.868 3 4 cbr 1000 ------- 1 2.0 7.0 37 122 r 0.87 3 4 cbr 500 ------- 1 1.0 6.0 74 113 + 0.87 4 6 cbr 500 ------- 1 1.0 6.0 74 113 - 0.87 4 6 cbr 500 ------- 1 1.0 6.0 74 113 + 0.87 1 3 cbr 500 ------- 1 1.0 6.0 82 127 - 0.87 1 3 cbr 500 ------- 1 1.0 6.0 82 127 r 0.874 4 7 cbr 1000 ------- 1 2.0 7.0 33 108 r 0.874 4 6 cbr 500 ------- 1 1.0 6.0 72 110 r 0.874 1 3 cbr 500 ------- 1 1.0 6.0 80 124 + 0.874 3 4 cbr 500 ------- 1 1.0 6.0 80 124 - 0.876 3 4 cbr 500 ------- 1 1.0 6.0 80 124 r 0.877984 4 3 ack 40 ------- 0 5.0 0.0 2 117 + 0.877984 3 0 ack 40 ------- 0 5.0 0.0 2 117 - 0.877984 3 0 ack 40 ------- 0 5.0 0.0 2 117 r 0.878 3 4 cbr 500 ------- 1 1.0 6.0 75 116 + 0.878 4 6 cbr 500 ------- 1 1.0 6.0 75 116 - 0.878 4 6 cbr 500 ------- 1 1.0 6.0 75 116 + 0.88 2 3 cbr 1000 ------- 1 2.0 7.0 39 128 - 0.88 2 3 cbr 1000 ------- 1 2.0 7.0 39 128 + 0.88 1 3 cbr 500 ------- 1 1.0 6.0 83 129 - 0.88 1 3 cbr 500 ------- 1 1.0 6.0 83 129 r 0.882 4 6 cbr 500 ------- 1 1.0 6.0 73 112 r 0.884 1 3 cbr 500 ------- 1 1.0 6.0 81 126 + 0.884 3 4 cbr 500 ------- 1 1.0 6.0 81 126 - 0.884 3 4 cbr 500 ------- 1 1.0 6.0 81 126 r 0.886 3 4 cbr 1000 ------- 1 2.0 7.0 35 115 + 0.886 4 7 cbr 1000 ------- 1 2.0 7.0 35 115 - 0.886 4 7 cbr 1000 ------- 1 2.0 7.0 35 115 r 0.886048 3 0 ack 40 ------- 0 5.0 0.0 1 114 + 0.886048 0 3 tcp 1000 ------- 0 0.0 5.0 3 130 - 0.886048 0 3 tcp 1000 ------- 0 0.0 5.0 3 130 + 0.886048 0 3 tcp 1000 ------- 0 0.0 5.0 4 131 - 0.887648 0 3 tcp 1000 ------- 0 0.0 5.0 4 131 r 0.888 2 3 cbr 1000 ------- 1 2.0 7.0 38 125 + 0.888 3 4 cbr 1000 ------- 1 2.0 7.0 38 125 - 0.888 3 4 cbr 1000 ------- 1 2.0 7.0 38 125 r 0.89 3 4 cbr 500 ------- 1 1.0 6.0 76 118 + 0.89 4 6 cbr 500 ------- 1 1.0 6.0 76 118 - 0.89 4 6 cbr 500 ------- 1 1.0 6.0 76 118 + 0.89 1 3 cbr 500 ------- 1 1.0 6.0 84 132 - 0.89 1 3 cbr 500 ------- 1 1.0 6.0 84 132 r 0.894 4 7 cbr 1000 ------- 1 2.0 7.0 34 111 r 0.894 4 6 cbr 500 ------- 1 1.0 6.0 74 113 r 0.894 1 3 cbr 500 ------- 1 1.0 6.0 82 127 + 0.894 3 4 cbr 500 ------- 1 1.0 6.0 82 127 - 0.896 3 4 cbr 500 ------- 1 1.0 6.0 82 127 r 0.898 3 4 cbr 500 ------- 1 1.0 6.0 77 120 + 0.898 4 6 cbr 500 ------- 1 1.0 6.0 77 120 - 0.898 4 6 cbr 500 ------- 1 1.0 6.0 77 120 r 0.898048 3 0 ack 40 ------- 0 5.0 0.0 2 117 + 0.898048 0 3 tcp 1000 ------- 0 0.0 5.0 5 133 - 0.898048 0 3 tcp 1000 ------- 0 0.0 5.0 5 133 + 0.898048 0 3 tcp 1000 ------- 0 0.0 5.0 6 134 - 0.899648 0 3 tcp 1000 ------- 0 0.0 5.0 6 134 + 0.9 2 3 cbr 1000 ------- 1 2.0 7.0 40 135 - 0.9 2 3 cbr 1000 ------- 1 2.0 7.0 40 135 + 0.9 1 3 cbr 500 ------- 1 1.0 6.0 85 136 - 0.9 1 3 cbr 500 ------- 1 1.0 6.0 85 136 r 0.902 4 6 cbr 500 ------- 1 1.0 6.0 75 116 r 0.904 1 3 cbr 500 ------- 1 1.0 6.0 83 129 + 0.904 3 4 cbr 500 ------- 1 1.0 6.0 83 129 - 0.904 3 4 cbr 500 ------- 1 1.0 6.0 83 129 r 0.906 3 4 cbr 1000 ------- 1 2.0 7.0 36 119 + 0.906 4 7 cbr 1000 ------- 1 2.0 7.0 36 119 - 0.906 4 7 cbr 1000 ------- 1 2.0 7.0 36 119 r 0.907648 0 3 tcp 1000 ------- 0 0.0 5.0 3 130 + 0.907648 3 4 tcp 1000 ------- 0 0.0 5.0 3 130 r 0.908 2 3 cbr 1000 ------- 1 2.0 7.0 39 128 + 0.908 3 4 cbr 1000 ------- 1 2.0 7.0 39 128 - 0.908 3 4 tcp 1000 ------- 0 0.0 5.0 3 130 r 0.909248 0 3 tcp 1000 ------- 0 0.0 5.0 4 131 + 0.909248 3 4 tcp 1000 ------- 0 0.0 5.0 4 131 r 0.91 3 4 cbr 500 ------- 1 1.0 6.0 78 121 + 0.91 4 6 cbr 500 ------- 1 1.0 6.0 78 121 - 0.91 4 6 cbr 500 ------- 1 1.0 6.0 78 121 + 0.91 1 3 cbr 500 ------- 1 1.0 6.0 86 137 - 0.91 1 3 cbr 500 ------- 1 1.0 6.0 86 137 r 0.914 4 7 cbr 1000 ------- 1 2.0 7.0 35 115 r 0.914 4 6 cbr 500 ------- 1 1.0 6.0 76 118 r 0.914 1 3 cbr 500 ------- 1 1.0 6.0 84 132 + 0.914 3 4 cbr 500 ------- 1 1.0 6.0 84 132 - 0.916 3 4 cbr 1000 ------- 1 2.0 7.0 39 128 r 0.918 3 4 cbr 500 ------- 1 1.0 6.0 79 123 + 0.918 4 6 cbr 500 ------- 1 1.0 6.0 79 123 - 0.918 4 6 cbr 500 ------- 1 1.0 6.0 79 123 r 0.919648 0 3 tcp 1000 ------- 0 0.0 5.0 5 133 + 0.919648 3 4 tcp 1000 ------- 0 0.0 5.0 5 133 + 0.92 2 3 cbr 1000 ------- 1 2.0 7.0 41 138 - 0.92 2 3 cbr 1000 ------- 1 2.0 7.0 41 138 + 0.92 1 3 cbr 500 ------- 1 1.0 6.0 87 139 - 0.92 1 3 cbr 500 ------- 1 1.0 6.0 87 139 r 0.921248 0 3 tcp 1000 ------- 0 0.0 5.0 6 134 + 0.921248 3 4 tcp 1000 ------- 0 0.0 5.0 6 134 r 0.922 4 6 cbr 500 ------- 1 1.0 6.0 77 120 r 0.924 1 3 cbr 500 ------- 1 1.0 6.0 85 136 + 0.924 3 4 cbr 500 ------- 1 1.0 6.0 85 136 - 0.924 3 4 tcp 1000 ------- 0 0.0 5.0 4 131 r 0.926 3 4 cbr 1000 ------- 1 2.0 7.0 37 122 + 0.926 4 7 cbr 1000 ------- 1 2.0 7.0 37 122 - 0.926 4 7 cbr 1000 ------- 1 2.0 7.0 37 122 r 0.928 2 3 cbr 1000 ------- 1 2.0 7.0 40 135 + 0.928 3 4 cbr 1000 ------- 1 2.0 7.0 40 135 r 0.93 3 4 cbr 500 ------- 1 1.0 6.0 80 124 + 0.93 4 6 cbr 500 ------- 1 1.0 6.0 80 124 - 0.93 4 6 cbr 500 ------- 1 1.0 6.0 80 124 + 0.93 1 3 cbr 500 ------- 1 1.0 6.0 88 140 - 0.93 1 3 cbr 500 ------- 1 1.0 6.0 88 140 - 0.932 3 4 cbr 500 ------- 1 1.0 6.0 84 132 r 0.934 4 7 cbr 1000 ------- 1 2.0 7.0 36 119 r 0.934 4 6 cbr 500 ------- 1 1.0 6.0 78 121 r 0.934 1 3 cbr 500 ------- 1 1.0 6.0 86 137 + 0.934 3 4 cbr 500 ------- 1 1.0 6.0 86 137 - 0.936 3 4 tcp 1000 ------- 0 0.0 5.0 5 133 r 0.938 3 4 cbr 500 ------- 1 1.0 6.0 81 126 + 0.938 4 6 cbr 500 ------- 1 1.0 6.0 81 126 - 0.938 4 6 cbr 500 ------- 1 1.0 6.0 81 126 + 0.94 2 3 cbr 1000 ------- 1 2.0 7.0 42 141 - 0.94 2 3 cbr 1000 ------- 1 2.0 7.0 42 141 + 0.94 1 3 cbr 500 ------- 1 1.0 6.0 89 142 - 0.94 1 3 cbr 500 ------- 1 1.0 6.0 89 142 r 0.942 4 6 cbr 500 ------- 1 1.0 6.0 79 123 r 0.944 1 3 cbr 500 ------- 1 1.0 6.0 87 139 + 0.944 3 4 cbr 500 ------- 1 1.0 6.0 87 139 - 0.944 3 4 tcp 1000 ------- 0 0.0 5.0 6 134 r 0.946 3 4 cbr 1000 ------- 1 2.0 7.0 38 125 + 0.946 4 7 cbr 1000 ------- 1 2.0 7.0 38 125 - 0.946 4 7 cbr 1000 ------- 1 2.0 7.0 38 125 r 0.948 2 3 cbr 1000 ------- 1 2.0 7.0 41 138 + 0.948 3 4 cbr 1000 ------- 1 2.0 7.0 41 138 r 0.95 3 4 cbr 500 ------- 1 1.0 6.0 82 127 + 0.95 4 6 cbr 500 ------- 1 1.0 6.0 82 127 - 0.95 4 6 cbr 500 ------- 1 1.0 6.0 82 127 + 0.95 1 3 cbr 500 ------- 1 1.0 6.0 90 143 - 0.95 1 3 cbr 500 ------- 1 1.0 6.0 90 143 - 0.952 3 4 cbr 500 ------- 1 1.0 6.0 85 136 r 0.954 4 7 cbr 1000 ------- 1 2.0 7.0 37 122 r 0.954 4 6 cbr 500 ------- 1 1.0 6.0 80 124 r 0.954 1 3 cbr 500 ------- 1 1.0 6.0 88 140 + 0.954 3 4 cbr 500 ------- 1 1.0 6.0 88 140 - 0.956 3 4 cbr 1000 ------- 1 2.0 7.0 40 135 r 0.958 3 4 cbr 500 ------- 1 1.0 6.0 83 129 + 0.958 4 6 cbr 500 ------- 1 1.0 6.0 83 129 - 0.958 4 6 cbr 500 ------- 1 1.0 6.0 83 129 + 0.96 2 3 cbr 1000 ------- 1 2.0 7.0 43 144 - 0.96 2 3 cbr 1000 ------- 1 2.0 7.0 43 144 + 0.96 1 3 cbr 500 ------- 1 1.0 6.0 91 145 - 0.96 1 3 cbr 500 ------- 1 1.0 6.0 91 145 r 0.962 4 6 cbr 500 ------- 1 1.0 6.0 81 126 r 0.964 1 3 cbr 500 ------- 1 1.0 6.0 89 142 + 0.964 3 4 cbr 500 ------- 1 1.0 6.0 89 142 - 0.964 3 4 cbr 500 ------- 1 1.0 6.0 86 137 r 0.966 3 4 tcp 1000 ------- 0 0.0 5.0 3 130 + 0.966 4 5 tcp 1000 ------- 0 0.0 5.0 3 130 - 0.966 4 5 tcp 1000 ------- 0 0.0 5.0 3 130 r 0.968 2 3 cbr 1000 ------- 1 2.0 7.0 42 141 + 0.968 3 4 cbr 1000 ------- 1 2.0 7.0 42 141 - 0.968 3 4 cbr 500 ------- 1 1.0 6.0 87 139 + 0.97 1 3 cbr 500 ------- 1 1.0 6.0 92 146 - 0.97 1 3 cbr 500 ------- 1 1.0 6.0 92 146 - 0.972 3 4 cbr 1000 ------- 1 2.0 7.0 41 138 r 0.974 3 4 cbr 1000 ------- 1 2.0 7.0 39 128 + 0.974 4 7 cbr 1000 ------- 1 2.0 7.0 39 128 - 0.974 4 7 cbr 1000 ------- 1 2.0 7.0 39 128 r 0.974 4 7 cbr 1000 ------- 1 2.0 7.0 38 125 r 0.974 4 6 cbr 500 ------- 1 1.0 6.0 82 127 r 0.974 1 3 cbr 500 ------- 1 1.0 6.0 90 143 + 0.974 3 4 cbr 500 ------- 1 1.0 6.0 90 143 + 0.98 2 3 cbr 1000 ------- 1 2.0 7.0 44 147 - 0.98 2 3 cbr 1000 ------- 1 2.0 7.0 44 147 + 0.98 1 3 cbr 500 ------- 1 1.0 6.0 93 148 - 0.98 1 3 cbr 500 ------- 1 1.0 6.0 93 148 - 0.98 3 4 cbr 500 ------- 1 1.0 6.0 88 140 r 0.982 3 4 tcp 1000 ------- 0 0.0 5.0 4 131 + 0.982 4 5 tcp 1000 ------- 0 0.0 5.0 4 131 - 0.982 4 5 tcp 1000 ------- 0 0.0 5.0 4 131 r 0.982 4 6 cbr 500 ------- 1 1.0 6.0 83 129 r 0.984 1 3 cbr 500 ------- 1 1.0 6.0 91 145 + 0.984 3 4 cbr 500 ------- 1 1.0 6.0 91 145 - 0.984 3 4 cbr 500 ------- 1 1.0 6.0 89 142 r 0.986 3 4 cbr 500 ------- 1 1.0 6.0 84 132 + 0.986 4 6 cbr 500 ------- 1 1.0 6.0 84 132 - 0.986 4 6 cbr 500 ------- 1 1.0 6.0 84 132 r 0.9876 4 5 tcp 1000 ------- 0 0.0 5.0 3 130 + 0.9876 5 4 ack 40 ------- 0 5.0 0.0 3 149 - 0.9876 5 4 ack 40 ------- 0 5.0 0.0 3 149 r 0.988 2 3 cbr 1000 ------- 1 2.0 7.0 43 144 + 0.988 3 4 cbr 1000 ------- 1 2.0 7.0 43 144 - 0.988 3 4 cbr 1000 ------- 1 2.0 7.0 42 141 + 0.99 1 3 cbr 500 ------- 1 1.0 6.0 94 150 - 0.99 1 3 cbr 500 ------- 1 1.0 6.0 94 150 r 0.994 3 4 tcp 1000 ------- 0 0.0 5.0 5 133 + 0.994 4 5 tcp 1000 ------- 0 0.0 5.0 5 133 - 0.994 4 5 tcp 1000 ------- 0 0.0 5.0 5 133 r 0.994 1 3 cbr 500 ------- 1 1.0 6.0 92 146 + 0.994 3 4 cbr 500 ------- 1 1.0 6.0 92 146 - 0.996 3 4 cbr 500 ------- 1 1.0 6.0 90 143 + 1 2 3 cbr 1000 ------- 1 2.0 7.0 45 151 - 1 2 3 cbr 1000 ------- 1 2.0 7.0 45 151 + 1 1 3 cbr 500 ------- 1 1.0 6.0 95 152 - 1 1 3 cbr 500 ------- 1 1.0 6.0 95 152 - 1 3 4 cbr 500 ------- 1 1.0 6.0 91 145 r 1.002 3 4 tcp 1000 ------- 0 0.0 5.0 6 134 + 1.002 4 5 tcp 1000 ------- 0 0.0 5.0 6 134 - 1.002 4 5 tcp 1000 ------- 0 0.0 5.0 6 134 r 1.002 4 7 cbr 1000 ------- 1 2.0 7.0 39 128 r 1.0036 4 5 tcp 1000 ------- 0 0.0 5.0 4 131 + 1.0036 5 4 ack 40 ------- 0 5.0 0.0 4 153 - 1.0036 5 4 ack 40 ------- 0 5.0 0.0 4 153 r 1.004 1 3 cbr 500 ------- 1 1.0 6.0 93 148 + 1.004 3 4 cbr 500 ------- 1 1.0 6.0 93 148 - 1.004 3 4 cbr 1000 ------- 1 2.0 7.0 43 144 r 1.006 3 4 cbr 500 ------- 1 1.0 6.0 85 136 + 1.006 4 6 cbr 500 ------- 1 1.0 6.0 85 136 - 1.006 4 6 cbr 500 ------- 1 1.0 6.0 85 136 r 1.00766 5 4 ack 40 ------- 0 5.0 0.0 3 149 + 1.00766 4 3 ack 40 ------- 0 5.0 0.0 3 149 - 1.00766 4 3 ack 40 ------- 0 5.0 0.0 3 149 r 1.008 2 3 cbr 1000 ------- 1 2.0 7.0 44 147 + 1.008 3 4 cbr 1000 ------- 1 2.0 7.0 44 147 r 1.01 4 6 cbr 500 ------- 1 1.0 6.0 84 132 + 1.01 1 3 cbr 500 ------- 1 1.0 6.0 96 154 - 1.01 1 3 cbr 500 ------- 1 1.0 6.0 96 154 - 1.012 3 4 cbr 500 ------- 1 1.0 6.0 92 146 r 1.014 3 4 cbr 1000 ------- 1 2.0 7.0 40 135 + 1.014 4 7 cbr 1000 ------- 1 2.0 7.0 40 135 - 1.014 4 7 cbr 1000 ------- 1 2.0 7.0 40 135 r 1.014 1 3 cbr 500 ------- 1 1.0 6.0 94 150 + 1.014 3 4 cbr 500 ------- 1 1.0 6.0 94 150 r 1.0156 4 5 tcp 1000 ------- 0 0.0 5.0 5 133 + 1.0156 5 4 ack 40 ------- 0 5.0 0.0 5 155 - 1.0156 5 4 ack 40 ------- 0 5.0 0.0 5 155 - 1.016 3 4 cbr 500 ------- 1 1.0 6.0 93 148 r 1.018 3 4 cbr 500 ------- 1 1.0 6.0 86 137 + 1.018 4 6 cbr 500 ------- 1 1.0 6.0 86 137 - 1.018 4 6 cbr 500 ------- 1 1.0 6.0 86 137 + 1.02 2 3 cbr 1000 ------- 1 2.0 7.0 46 156 - 1.02 2 3 cbr 1000 ------- 1 2.0 7.0 46 156 + 1.02 1 3 cbr 500 ------- 1 1.0 6.0 97 157 - 1.02 1 3 cbr 500 ------- 1 1.0 6.0 97 157 - 1.02 3 4 cbr 1000 ------- 1 2.0 7.0 44 147 r 1.022 3 4 cbr 500 ------- 1 1.0 6.0 87 139 + 1.022 4 6 cbr 500 ------- 1 1.0 6.0 87 139 - 1.022 4 6 cbr 500 ------- 1 1.0 6.0 87 139 r 1.0236 4 5 tcp 1000 ------- 0 0.0 5.0 6 134 + 1.0236 5 4 ack 40 ------- 0 5.0 0.0 6 158 - 1.0236 5 4 ack 40 ------- 0 5.0 0.0 6 158 r 1.02366 5 4 ack 40 ------- 0 5.0 0.0 4 153 + 1.02366 4 3 ack 40 ------- 0 5.0 0.0 4 153 - 1.02366 4 3 ack 40 ------- 0 5.0 0.0 4 153 r 1.024 1 3 cbr 500 ------- 1 1.0 6.0 95 152 + 1.024 3 4 cbr 500 ------- 1 1.0 6.0 95 152 r 1.028 2 3 cbr 1000 ------- 1 2.0 7.0 45 151 + 1.028 3 4 cbr 1000 ------- 1 2.0 7.0 45 151 - 1.028 3 4 cbr 500 ------- 1 1.0 6.0 94 150 r 1.03 3 4 cbr 1000 ------- 1 2.0 7.0 41 138 + 1.03 4 7 cbr 1000 ------- 1 2.0 7.0 41 138 - 1.03 4 7 cbr 1000 ------- 1 2.0 7.0 41 138 r 1.03 4 6 cbr 500 ------- 1 1.0 6.0 85 136 + 1.03 1 3 cbr 500 ------- 1 1.0 6.0 98 159 - 1.03 1 3 cbr 500 ------- 1 1.0 6.0 98 159 - 1.032 3 4 cbr 500 ------- 1 1.0 6.0 95 152 r 1.034 3 4 cbr 500 ------- 1 1.0 6.0 88 140 + 1.034 4 6 cbr 500 ------- 1 1.0 6.0 88 140 - 1.034 4 6 cbr 500 ------- 1 1.0 6.0 88 140 r 1.034 1 3 cbr 500 ------- 1 1.0 6.0 96 154 + 1.034 3 4 cbr 500 ------- 1 1.0 6.0 96 154 r 1.03566 5 4 ack 40 ------- 0 5.0 0.0 5 155 + 1.03566 4 3 ack 40 ------- 0 5.0 0.0 5 155 - 1.03566 4 3 ack 40 ------- 0 5.0 0.0 5 155 - 1.036 3 4 cbr 1000 ------- 1 2.0 7.0 45 151 r 1.038 3 4 cbr 500 ------- 1 1.0 6.0 89 142 + 1.038 4 6 cbr 500 ------- 1 1.0 6.0 89 142 - 1.038 4 6 cbr 500 ------- 1 1.0 6.0 89 142 + 1.04 2 3 cbr 1000 ------- 1 2.0 7.0 47 160 - 1.04 2 3 cbr 1000 ------- 1 2.0 7.0 47 160 + 1.04 1 3 cbr 500 ------- 1 1.0 6.0 99 161 - 1.04 1 3 cbr 500 ------- 1 1.0 6.0 99 161 r 1.042 4 7 cbr 1000 ------- 1 2.0 7.0 40 135 r 1.042 4 6 cbr 500 ------- 1 1.0 6.0 86 137 r 1.04366 5 4 ack 40 ------- 0 5.0 0.0 6 158 + 1.04366 4 3 ack 40 ------- 0 5.0 0.0 6 158 - 1.04366 4 3 ack 40 ------- 0 5.0 0.0 6 158 r 1.044 1 3 cbr 500 ------- 1 1.0 6.0 97 157 + 1.044 3 4 cbr 500 ------- 1 1.0 6.0 97 157 - 1.044 3 4 cbr 500 ------- 1 1.0 6.0 96 154 r 1.046 3 4 cbr 1000 ------- 1 2.0 7.0 42 141 + 1.046 4 7 cbr 1000 ------- 1 2.0 7.0 42 141 - 1.046 4 7 cbr 1000 ------- 1 2.0 7.0 42 141 r 1.046 4 6 cbr 500 ------- 1 1.0 6.0 87 139 r 1.048 2 3 cbr 1000 ------- 1 2.0 7.0 46 156 + 1.048 3 4 cbr 1000 ------- 1 2.0 7.0 46 156 - 1.048 3 4 cbr 500 ------- 1 1.0 6.0 97 157 r 1.05 3 4 cbr 500 ------- 1 1.0 6.0 90 143 + 1.05 4 6 cbr 500 ------- 1 1.0 6.0 90 143 - 1.05 4 6 cbr 500 ------- 1 1.0 6.0 90 143 + 1.05 1 3 cbr 500 ------- 1 1.0 6.0 100 162 - 1.05 1 3 cbr 500 ------- 1 1.0 6.0 100 162 - 1.052 3 4 cbr 1000 ------- 1 2.0 7.0 46 156 r 1.054 3 4 cbr 500 ------- 1 1.0 6.0 91 145 + 1.054 4 6 cbr 500 ------- 1 1.0 6.0 91 145 r 1.054 1 3 cbr 500 ------- 1 1.0 6.0 98 159 + 1.054 3 4 cbr 500 ------- 1 1.0 6.0 98 159 - 1.054 4 6 cbr 500 ------- 1 1.0 6.0 91 145 r 1.05798 4 3 ack 40 ------- 0 5.0 0.0 3 149 + 1.05798 3 0 ack 40 ------- 0 5.0 0.0 3 149 - 1.05798 3 0 ack 40 ------- 0 5.0 0.0 3 149 r 1.058 4 7 cbr 1000 ------- 1 2.0 7.0 41 138 r 1.058 4 6 cbr 500 ------- 1 1.0 6.0 88 140 + 1.06 2 3 cbr 1000 ------- 1 2.0 7.0 48 163 - 1.06 2 3 cbr 1000 ------- 1 2.0 7.0 48 163 + 1.06 1 3 cbr 500 ------- 1 1.0 6.0 101 164 - 1.06 1 3 cbr 500 ------- 1 1.0 6.0 101 164 - 1.06 3 4 cbr 500 ------- 1 1.0 6.0 98 159 r 1.062 3 4 cbr 1000 ------- 1 2.0 7.0 43 144 + 1.062 4 7 cbr 1000 ------- 1 2.0 7.0 43 144 - 1.062 4 7 cbr 1000 ------- 1 2.0 7.0 43 144 r 1.062 4 6 cbr 500 ------- 1 1.0 6.0 89 142 r 1.064 1 3 cbr 500 ------- 1 1.0 6.0 99 161 + 1.064 3 4 cbr 500 ------- 1 1.0 6.0 99 161 - 1.064 3 4 cbr 500 ------- 1 1.0 6.0 99 161 r 1.066 3 4 cbr 500 ------- 1 1.0 6.0 92 146 + 1.066 4 6 cbr 500 ------- 1 1.0 6.0 92 146 - 1.066 4 6 cbr 500 ------- 1 1.0 6.0 92 146 r 1.068 2 3 cbr 1000 ------- 1 2.0 7.0 47 160 + 1.068 3 4 cbr 1000 ------- 1 2.0 7.0 47 160 - 1.068 3 4 cbr 1000 ------- 1 2.0 7.0 47 160 r 1.07 3 4 cbr 500 ------- 1 1.0 6.0 93 148 + 1.07 4 6 cbr 500 ------- 1 1.0 6.0 93 148 + 1.07 1 3 cbr 500 ------- 1 1.0 6.0 102 165 - 1.07 1 3 cbr 500 ------- 1 1.0 6.0 102 165 - 1.07 4 6 cbr 500 ------- 1 1.0 6.0 93 148 r 1.07398 4 3 ack 40 ------- 0 5.0 0.0 4 153 + 1.07398 3 0 ack 40 ------- 0 5.0 0.0 4 153 - 1.07398 3 0 ack 40 ------- 0 5.0 0.0 4 153 r 1.074 4 7 cbr 1000 ------- 1 2.0 7.0 42 141 r 1.074 4 6 cbr 500 ------- 1 1.0 6.0 90 143 r 1.074 1 3 cbr 500 ------- 1 1.0 6.0 100 162 + 1.074 3 4 cbr 500 ------- 1 1.0 6.0 100 162 - 1.076 3 4 cbr 500 ------- 1 1.0 6.0 100 162 r 1.078 3 4 cbr 1000 ------- 1 2.0 7.0 44 147 + 1.078 4 7 cbr 1000 ------- 1 2.0 7.0 44 147 - 1.078 4 7 cbr 1000 ------- 1 2.0 7.0 44 147 r 1.078 4 6 cbr 500 ------- 1 1.0 6.0 91 145 r 1.07805 3 0 ack 40 ------- 0 5.0 0.0 3 149 + 1.07805 0 3 tcp 1000 ------- 0 0.0 5.0 7 166 - 1.07805 0 3 tcp 1000 ------- 0 0.0 5.0 7 166 + 1.07805 0 3 tcp 1000 ------- 0 0.0 5.0 8 167 - 1.07965 0 3 tcp 1000 ------- 0 0.0 5.0 8 167 + 1.08 2 3 cbr 1000 ------- 1 2.0 7.0 49 168 - 1.08 2 3 cbr 1000 ------- 1 2.0 7.0 49 168 + 1.08 1 3 cbr 500 ------- 1 1.0 6.0 103 169 - 1.08 1 3 cbr 500 ------- 1 1.0 6.0 103 169 r 1.082 3 4 cbr 500 ------- 1 1.0 6.0 94 150 + 1.082 4 6 cbr 500 ------- 1 1.0 6.0 94 150 - 1.082 4 6 cbr 500 ------- 1 1.0 6.0 94 150 r 1.084 1 3 cbr 500 ------- 1 1.0 6.0 101 164 + 1.084 3 4 cbr 500 ------- 1 1.0 6.0 101 164 - 1.084 3 4 cbr 500 ------- 1 1.0 6.0 101 164 r 1.08598 4 3 ack 40 ------- 0 5.0 0.0 5 155 + 1.08598 3 0 ack 40 ------- 0 5.0 0.0 5 155 - 1.08598 3 0 ack 40 ------- 0 5.0 0.0 5 155 r 1.086 3 4 cbr 500 ------- 1 1.0 6.0 95 152 + 1.086 4 6 cbr 500 ------- 1 1.0 6.0 95 152 - 1.086 4 6 cbr 500 ------- 1 1.0 6.0 95 152 r 1.088 2 3 cbr 1000 ------- 1 2.0 7.0 48 163 + 1.088 3 4 cbr 1000 ------- 1 2.0 7.0 48 163 - 1.088 3 4 cbr 1000 ------- 1 2.0 7.0 48 163 r 1.09 4 7 cbr 1000 ------- 1 2.0 7.0 43 144 r 1.09 4 6 cbr 500 ------- 1 1.0 6.0 92 146 + 1.09 1 3 cbr 500 ------- 1 1.0 6.0 104 170 - 1.09 1 3 cbr 500 ------- 1 1.0 6.0 104 170 r 1.09398 4 3 ack 40 ------- 0 5.0 0.0 6 158 + 1.09398 3 0 ack 40 ------- 0 5.0 0.0 6 158 - 1.09398 3 0 ack 40 ------- 0 5.0 0.0 6 158 r 1.094 3 4 cbr 1000 ------- 1 2.0 7.0 45 151 + 1.094 4 7 cbr 1000 ------- 1 2.0 7.0 45 151 - 1.094 4 7 cbr 1000 ------- 1 2.0 7.0 45 151 r 1.094 1 3 cbr 500 ------- 1 1.0 6.0 102 165 + 1.094 3 4 cbr 500 ------- 1 1.0 6.0 102 165 r 1.094 4 6 cbr 500 ------- 1 1.0 6.0 93 148 r 1.09405 3 0 ack 40 ------- 0 5.0 0.0 4 153 + 1.09405 0 3 tcp 1000 ------- 0 0.0 5.0 9 171 - 1.09405 0 3 tcp 1000 ------- 0 0.0 5.0 9 171 + 1.09405 0 3 tcp 1000 ------- 0 0.0 5.0 10 172 - 1.09565 0 3 tcp 1000 ------- 0 0.0 5.0 10 172 - 1.096 3 4 cbr 500 ------- 1 1.0 6.0 102 165 r 1.098 3 4 cbr 500 ------- 1 1.0 6.0 96 154 + 1.098 4 6 cbr 500 ------- 1 1.0 6.0 96 154 - 1.098 4 6 cbr 500 ------- 1 1.0 6.0 96 154 r 1.09965 0 3 tcp 1000 ------- 0 0.0 5.0 7 166 + 1.09965 3 4 tcp 1000 ------- 0 0.0 5.0 7 166 + 1.1 2 3 cbr 1000 ------- 1 2.0 7.0 50 173 - 1.1 2 3 cbr 1000 ------- 1 2.0 7.0 50 173 + 1.1 1 3 cbr 500 ------- 1 1.0 6.0 105 174 - 1.1 1 3 cbr 500 ------- 1 1.0 6.0 105 174 - 1.1 3 4 tcp 1000 ------- 0 0.0 5.0 7 166 r 1.10125 0 3 tcp 1000 ------- 0 0.0 5.0 8 167 + 1.10125 3 4 tcp 1000 ------- 0 0.0 5.0 8 167 r 1.102 3 4 cbr 500 ------- 1 1.0 6.0 97 157 + 1.102 4 6 cbr 500 ------- 1 1.0 6.0 97 157 - 1.102 4 6 cbr 500 ------- 1 1.0 6.0 97 157 r 1.104 1 3 cbr 500 ------- 1 1.0 6.0 103 169 + 1.104 3 4 cbr 500 ------- 1 1.0 6.0 103 169 r 1.106 4 7 cbr 1000 ------- 1 2.0 7.0 44 147 r 1.106 4 6 cbr 500 ------- 1 1.0 6.0 94 150 r 1.10605 3 0 ack 40 ------- 0 5.0 0.0 5 155 + 1.10605 0 3 tcp 1000 ------- 0 0.0 5.0 11 175 - 1.10605 0 3 tcp 1000 ------- 0 0.0 5.0 11 175 + 1.10605 0 3 tcp 1000 ------- 0 0.0 5.0 12 176 - 1.10765 0 3 tcp 1000 ------- 0 0.0 5.0 12 176 r 1.108 2 3 cbr 1000 ------- 1 2.0 7.0 49 168 + 1.108 3 4 cbr 1000 ------- 1 2.0 7.0 49 168 - 1.108 3 4 tcp 1000 ------- 0 0.0 5.0 8 167 r 1.11 3 4 cbr 1000 ------- 1 2.0 7.0 46 156 + 1.11 4 7 cbr 1000 ------- 1 2.0 7.0 46 156 - 1.11 4 7 cbr 1000 ------- 1 2.0 7.0 46 156 r 1.11 4 6 cbr 500 ------- 1 1.0 6.0 95 152 + 1.11 1 3 cbr 500 ------- 1 1.0 6.0 106 177 - 1.11 1 3 cbr 500 ------- 1 1.0 6.0 106 177 r 1.114 3 4 cbr 500 ------- 1 1.0 6.0 98 159 + 1.114 4 6 cbr 500 ------- 1 1.0 6.0 98 159 - 1.114 4 6 cbr 500 ------- 1 1.0 6.0 98 159 r 1.114 1 3 cbr 500 ------- 1 1.0 6.0 104 170 + 1.114 3 4 cbr 500 ------- 1 1.0 6.0 104 170 r 1.11405 3 0 ack 40 ------- 0 5.0 0.0 6 158 + 1.11405 0 3 tcp 1000 ------- 0 0.0 5.0 13 178 - 1.11405 0 3 tcp 1000 ------- 0 0.0 5.0 13 178 + 1.11405 0 3 tcp 1000 ------- 0 0.0 5.0 14 179 r 1.11565 0 3 tcp 1000 ------- 0 0.0 5.0 9 171 + 1.11565 3 4 tcp 1000 ------- 0 0.0 5.0 9 171 - 1.11565 0 3 tcp 1000 ------- 0 0.0 5.0 14 179 - 1.116 3 4 cbr 500 ------- 1 1.0 6.0 103 169 r 1.11725 0 3 tcp 1000 ------- 0 0.0 5.0 10 172 + 1.11725 3 4 tcp 1000 ------- 0 0.0 5.0 10 172 r 1.118 3 4 cbr 500 ------- 1 1.0 6.0 99 161 + 1.118 4 6 cbr 500 ------- 1 1.0 6.0 99 161 - 1.118 4 6 cbr 500 ------- 1 1.0 6.0 99 161 + 1.12 2 3 cbr 1000 ------- 1 2.0 7.0 51 180 - 1.12 2 3 cbr 1000 ------- 1 2.0 7.0 51 180 + 1.12 1 3 cbr 500 ------- 1 1.0 6.0 107 181 - 1.12 1 3 cbr 500 ------- 1 1.0 6.0 107 181 - 1.12 3 4 cbr 1000 ------- 1 2.0 7.0 49 168 r 1.122 4 7 cbr 1000 ------- 1 2.0 7.0 45 151 r 1.122 4 6 cbr 500 ------- 1 1.0 6.0 96 154 r 1.124 1 3 cbr 500 ------- 1 1.0 6.0 105 174 + 1.124 3 4 cbr 500 ------- 1 1.0 6.0 105 174 r 1.126 3 4 cbr 1000 ------- 1 2.0 7.0 47 160 + 1.126 4 7 cbr 1000 ------- 1 2.0 7.0 47 160 - 1.126 4 7 cbr 1000 ------- 1 2.0 7.0 47 160 r 1.126 4 6 cbr 500 ------- 1 1.0 6.0 97 157 r 1.12765 0 3 tcp 1000 ------- 0 0.0 5.0 11 175 + 1.12765 3 4 tcp 1000 ------- 0 0.0 5.0 11 175 r 1.128 2 3 cbr 1000 ------- 1 2.0 7.0 50 173 + 1.128 3 4 cbr 1000 ------- 1 2.0 7.0 50 173 - 1.128 3 4 cbr 500 ------- 1 1.0 6.0 104 170 r 1.12925 0 3 tcp 1000 ------- 0 0.0 5.0 12 176 + 1.12925 3 4 tcp 1000 ------- 0 0.0 5.0 12 176 r 1.13 3 4 cbr 500 ------- 1 1.0 6.0 100 162 + 1.13 4 6 cbr 500 ------- 1 1.0 6.0 100 162 - 1.13 4 6 cbr 500 ------- 1 1.0 6.0 100 162 + 1.13 1 3 cbr 500 ------- 1 1.0 6.0 108 182 - 1.13 1 3 cbr 500 ------- 1 1.0 6.0 108 182 - 1.132 3 4 tcp 1000 ------- 0 0.0 5.0 9 171 r 1.134 1 3 cbr 500 ------- 1 1.0 6.0 106 177 + 1.134 3 4 cbr 500 ------- 1 1.0 6.0 106 177 r 1.13565 0 3 tcp 1000 ------- 0 0.0 5.0 13 178 + 1.13565 3 4 tcp 1000 ------- 0 0.0 5.0 13 178 r 1.13725 0 3 tcp 1000 ------- 0 0.0 5.0 14 179 + 1.13725 3 4 tcp 1000 ------- 0 0.0 5.0 14 179 r 1.138 3 4 cbr 500 ------- 1 1.0 6.0 101 164 + 1.138 4 6 cbr 500 ------- 1 1.0 6.0 101 164 - 1.138 4 6 cbr 500 ------- 1 1.0 6.0 101 164 r 1.138 4 7 cbr 1000 ------- 1 2.0 7.0 46 156 r 1.138 4 6 cbr 500 ------- 1 1.0 6.0 98 159 + 1.14 2 3 cbr 1000 ------- 1 2.0 7.0 52 183 - 1.14 2 3 cbr 1000 ------- 1 2.0 7.0 52 183 + 1.14 1 3 cbr 500 ------- 1 1.0 6.0 109 184 - 1.14 1 3 cbr 500 ------- 1 1.0 6.0 109 184 - 1.14 3 4 tcp 1000 ------- 0 0.0 5.0 10 172 r 1.142 4 6 cbr 500 ------- 1 1.0 6.0 99 161 r 1.144 1 3 cbr 500 ------- 1 1.0 6.0 107 181 + 1.144 3 4 cbr 500 ------- 1 1.0 6.0 107 181 r 1.146 3 4 cbr 1000 ------- 1 2.0 7.0 48 163 + 1.146 4 7 cbr 1000 ------- 1 2.0 7.0 48 163 - 1.146 4 7 cbr 1000 ------- 1 2.0 7.0 48 163 r 1.148 2 3 cbr 1000 ------- 1 2.0 7.0 51 180 + 1.148 3 4 cbr 1000 ------- 1 2.0 7.0 51 180 - 1.148 3 4 cbr 500 ------- 1 1.0 6.0 105 174 r 1.15 3 4 cbr 500 ------- 1 1.0 6.0 102 165 + 1.15 4 6 cbr 500 ------- 1 1.0 6.0 102 165 - 1.15 4 6 cbr 500 ------- 1 1.0 6.0 102 165 + 1.15 1 3 cbr 500 ------- 1 1.0 6.0 110 185 - 1.15 1 3 cbr 500 ------- 1 1.0 6.0 110 185 - 1.152 3 4 tcp 1000 ------- 0 0.0 5.0 11 175 r 1.154 4 7 cbr 1000 ------- 1 2.0 7.0 47 160 r 1.154 4 6 cbr 500 ------- 1 1.0 6.0 100 162 r 1.154 1 3 cbr 500 ------- 1 1.0 6.0 108 182 + 1.154 3 4 cbr 500 ------- 1 1.0 6.0 108 182 r 1.158 3 4 tcp 1000 ------- 0 0.0 5.0 7 166 + 1.158 4 5 tcp 1000 ------- 0 0.0 5.0 7 166 - 1.158 4 5 tcp 1000 ------- 0 0.0 5.0 7 166 + 1.16 2 3 cbr 1000 ------- 1 2.0 7.0 53 186 - 1.16 2 3 cbr 1000 ------- 1 2.0 7.0 53 186 + 1.16 1 3 cbr 500 ------- 1 1.0 6.0 111 187 - 1.16 1 3 cbr 500 ------- 1 1.0 6.0 111 187 - 1.16 3 4 cbr 1000 ------- 1 2.0 7.0 50 173 r 1.162 4 6 cbr 500 ------- 1 1.0 6.0 101 164 r 1.164 1 3 cbr 500 ------- 1 1.0 6.0 109 184 + 1.164 3 4 cbr 500 ------- 1 1.0 6.0 109 184 r 1.166 3 4 tcp 1000 ------- 0 0.0 5.0 8 167 + 1.166 4 5 tcp 1000 ------- 0 0.0 5.0 8 167 - 1.166 4 5 tcp 1000 ------- 0 0.0 5.0 8 167 r 1.168 2 3 cbr 1000 ------- 1 2.0 7.0 52 183 + 1.168 3 4 cbr 1000 ------- 1 2.0 7.0 52 183 - 1.168 3 4 tcp 1000 ------- 0 0.0 5.0 12 176 r 1.17 3 4 cbr 500 ------- 1 1.0 6.0 103 169 + 1.17 4 6 cbr 500 ------- 1 1.0 6.0 103 169 - 1.17 4 6 cbr 500 ------- 1 1.0 6.0 103 169 + 1.17 1 3 cbr 500 ------- 1 1.0 6.0 112 188 - 1.17 1 3 cbr 500 ------- 1 1.0 6.0 112 188 r 1.174 4 7 cbr 1000 ------- 1 2.0 7.0 48 163 r 1.174 4 6 cbr 500 ------- 1 1.0 6.0 102 165 r 1.174 1 3 cbr 500 ------- 1 1.0 6.0 110 185 + 1.174 3 4 cbr 500 ------- 1 1.0 6.0 110 185 - 1.176 3 4 cbr 500 ------- 1 1.0 6.0 106 177 r 1.178 3 4 cbr 1000 ------- 1 2.0 7.0 49 168 + 1.178 4 7 cbr 1000 ------- 1 2.0 7.0 49 168 - 1.178 4 7 cbr 1000 ------- 1 2.0 7.0 49 168 r 1.1796 4 5 tcp 1000 ------- 0 0.0 5.0 7 166 + 1.1796 5 4 ack 40 ------- 0 5.0 0.0 7 189 - 1.1796 5 4 ack 40 ------- 0 5.0 0.0 7 189 + 1.18 2 3 cbr 1000 ------- 1 2.0 7.0 54 190 - 1.18 2 3 cbr 1000 ------- 1 2.0 7.0 54 190 + 1.18 1 3 cbr 500 ------- 1 1.0 6.0 113 191 - 1.18 1 3 cbr 500 ------- 1 1.0 6.0 113 191 - 1.18 3 4 tcp 1000 ------- 0 0.0 5.0 13 178 r 1.182 3 4 cbr 500 ------- 1 1.0 6.0 104 170 + 1.182 4 6 cbr 500 ------- 1 1.0 6.0 104 170 - 1.182 4 6 cbr 500 ------- 1 1.0 6.0 104 170 r 1.184 1 3 cbr 500 ------- 1 1.0 6.0 111 187 + 1.184 3 4 cbr 500 ------- 1 1.0 6.0 111 187 r 1.1876 4 5 tcp 1000 ------- 0 0.0 5.0 8 167 + 1.1876 5 4 ack 40 ------- 0 5.0 0.0 8 192 - 1.1876 5 4 ack 40 ------- 0 5.0 0.0 8 192 r 1.188 2 3 cbr 1000 ------- 1 2.0 7.0 53 186 + 1.188 3 4 cbr 1000 ------- 1 2.0 7.0 53 186 - 1.188 3 4 tcp 1000 ------- 0 0.0 5.0 14 179 r 1.19 3 4 tcp 1000 ------- 0 0.0 5.0 9 171 + 1.19 4 5 tcp 1000 ------- 0 0.0 5.0 9 171 - 1.19 4 5 tcp 1000 ------- 0 0.0 5.0 9 171 + 1.19 1 3 cbr 500 ------- 1 1.0 6.0 114 193 - 1.19 1 3 cbr 500 ------- 1 1.0 6.0 114 193 r 1.194 4 6 cbr 500 ------- 1 1.0 6.0 103 169 r 1.194 1 3 cbr 500 ------- 1 1.0 6.0 112 188 + 1.194 3 4 cbr 500 ------- 1 1.0 6.0 112 188 - 1.196 3 4 cbr 500 ------- 1 1.0 6.0 107 181 r 1.198 3 4 tcp 1000 ------- 0 0.0 5.0 10 172 + 1.198 4 5 tcp 1000 ------- 0 0.0 5.0 10 172 - 1.198 4 5 tcp 1000 ------- 0 0.0 5.0 10 172 r 1.19966 5 4 ack 40 ------- 0 5.0 0.0 7 189 + 1.19966 4 3 ack 40 ------- 0 5.0 0.0 7 189 - 1.19966 4 3 ack 40 ------- 0 5.0 0.0 7 189 + 1.2 2 3 cbr 1000 ------- 1 2.0 7.0 55 194 - 1.2 2 3 cbr 1000 ------- 1 2.0 7.0 55 194 + 1.2 1 3 cbr 500 ------- 1 1.0 6.0 115 195 - 1.2 1 3 cbr 500 ------- 1 1.0 6.0 115 195 - 1.2 3 4 cbr 1000 ------- 1 2.0 7.0 51 180 r 1.202 3 4 cbr 500 ------- 1 1.0 6.0 105 174 + 1.202 4 6 cbr 500 ------- 1 1.0 6.0 105 174 - 1.202 4 6 cbr 500 ------- 1 1.0 6.0 105 174 r 1.204 1 3 cbr 500 ------- 1 1.0 6.0 113 191 + 1.204 3 4 cbr 500 ------- 1 1.0 6.0 113 191 r 1.206 4 7 cbr 1000 ------- 1 2.0 7.0 49 168 r 1.206 4 6 cbr 500 ------- 1 1.0 6.0 104 170 r 1.20766 5 4 ack 40 ------- 0 5.0 0.0 8 192 + 1.20766 4 3 ack 40 ------- 0 5.0 0.0 8 192 - 1.20766 4 3 ack 40 ------- 0 5.0 0.0 8 192 r 1.208 2 3 cbr 1000 ------- 1 2.0 7.0 54 190 + 1.208 3 4 cbr 1000 ------- 1 2.0 7.0 54 190 - 1.208 3 4 cbr 500 ------- 1 1.0 6.0 108 182 r 1.21 3 4 tcp 1000 ------- 0 0.0 5.0 11 175 + 1.21 4 5 tcp 1000 ------- 0 0.0 5.0 11 175 - 1.21 4 5 tcp 1000 ------- 0 0.0 5.0 11 175 + 1.21 1 3 cbr 500 ------- 1 1.0 6.0 116 196 - 1.21 1 3 cbr 500 ------- 1 1.0 6.0 116 196 r 1.2116 4 5 tcp 1000 ------- 0 0.0 5.0 9 171 + 1.2116 5 4 ack 40 ------- 0 5.0 0.0 9 197 - 1.2116 5 4 ack 40 ------- 0 5.0 0.0 9 197 - 1.212 3 4 cbr 500 ------- 1 1.0 6.0 109 184 r 1.214 1 3 cbr 500 ------- 1 1.0 6.0 114 193 + 1.214 3 4 cbr 500 ------- 1 1.0 6.0 114 193 - 1.216 3 4 cbr 1000 ------- 1 2.0 7.0 52 183 r 1.218 3 4 cbr 1000 ------- 1 2.0 7.0 50 173 + 1.218 4 7 cbr 1000 ------- 1 2.0 7.0 50 173 - 1.218 4 7 cbr 1000 ------- 1 2.0 7.0 50 173 r 1.2196 4 5 tcp 1000 ------- 0 0.0 5.0 10 172 + 1.2196 5 4 ack 40 ------- 0 5.0 0.0 10 198 - 1.2196 5 4 ack 40 ------- 0 5.0 0.0 10 198 + 1.22 2 3 cbr 1000 ------- 1 2.0 7.0 56 199 - 1.22 2 3 cbr 1000 ------- 1 2.0 7.0 56 199 + 1.22 1 3 cbr 500 ------- 1 1.0 6.0 117 200 - 1.22 1 3 cbr 500 ------- 1 1.0 6.0 117 200 r 1.224 1 3 cbr 500 ------- 1 1.0 6.0 115 195 + 1.224 3 4 cbr 500 ------- 1 1.0 6.0 115 195 - 1.224 3 4 cbr 500 ------- 1 1.0 6.0 110 185 r 1.226 3 4 tcp 1000 ------- 0 0.0 5.0 12 176 + 1.226 4 5 tcp 1000 ------- 0 0.0 5.0 12 176 - 1.226 4 5 tcp 1000 ------- 0 0.0 5.0 12 176 r 1.226 4 6 cbr 500 ------- 1 1.0 6.0 105 174 r 1.228 2 3 cbr 1000 ------- 1 2.0 7.0 55 194 + 1.228 3 4 cbr 1000 ------- 1 2.0 7.0 55 194 - 1.228 3 4 cbr 500 ------- 1 1.0 6.0 111 187 r 1.23 3 4 cbr 500 ------- 1 1.0 6.0 106 177 + 1.23 4 6 cbr 500 ------- 1 1.0 6.0 106 177 - 1.23 4 6 cbr 500 ------- 1 1.0 6.0 106 177 + 1.23 1 3 cbr 500 ------- 1 1.0 6.0 118 201 - 1.23 1 3 cbr 500 ------- 1 1.0 6.0 118 201 r 1.2316 4 5 tcp 1000 ------- 0 0.0 5.0 11 175 + 1.2316 5 4 ack 40 ------- 0 5.0 0.0 11 202 - 1.2316 5 4 ack 40 ------- 0 5.0 0.0 11 202 r 1.23166 5 4 ack 40 ------- 0 5.0 0.0 9 197 + 1.23166 4 3 ack 40 ------- 0 5.0 0.0 9 197 - 1.23166 4 3 ack 40 ------- 0 5.0 0.0 9 197 - 1.232 3 4 cbr 1000 ------- 1 2.0 7.0 53 186 r 1.234 1 3 cbr 500 ------- 1 1.0 6.0 116 196 + 1.234 3 4 cbr 500 ------- 1 1.0 6.0 116 196 r 1.238 3 4 tcp 1000 ------- 0 0.0 5.0 13 178 + 1.238 4 5 tcp 1000 ------- 0 0.0 5.0 13 178 - 1.238 4 5 tcp 1000 ------- 0 0.0 5.0 13 178 r 1.23966 5 4 ack 40 ------- 0 5.0 0.0 10 198 + 1.23966 4 3 ack 40 ------- 0 5.0 0.0 10 198 - 1.23966 4 3 ack 40 ------- 0 5.0 0.0 10 198 + 1.24 2 3 cbr 1000 ------- 1 2.0 7.0 57 203 - 1.24 2 3 cbr 1000 ------- 1 2.0 7.0 57 203 + 1.24 1 3 cbr 500 ------- 1 1.0 6.0 119 204 - 1.24 1 3 cbr 500 ------- 1 1.0 6.0 119 204 - 1.24 3 4 cbr 500 ------- 1 1.0 6.0 112 188 r 1.244 1 3 cbr 500 ------- 1 1.0 6.0 117 200 + 1.244 3 4 cbr 500 ------- 1 1.0 6.0 117 200 - 1.244 3 4 cbr 500 ------- 1 1.0 6.0 113 191 r 1.246 3 4 tcp 1000 ------- 0 0.0 5.0 14 179 + 1.246 4 5 tcp 1000 ------- 0 0.0 5.0 14 179 - 1.246 4 5 tcp 1000 ------- 0 0.0 5.0 14 179 r 1.246 4 7 cbr 1000 ------- 1 2.0 7.0 50 173 r 1.2476 4 5 tcp 1000 ------- 0 0.0 5.0 12 176 + 1.2476 5 4 ack 40 ------- 0 5.0 0.0 12 205 - 1.2476 5 4 ack 40 ------- 0 5.0 0.0 12 205 r 1.248 2 3 cbr 1000 ------- 1 2.0 7.0 56 199 + 1.248 3 4 cbr 1000 ------- 1 2.0 7.0 56 199 - 1.248 3 4 cbr 1000 ------- 1 2.0 7.0 54 190 r 1.24998 4 3 ack 40 ------- 0 5.0 0.0 7 189 + 1.24998 3 0 ack 40 ------- 0 5.0 0.0 7 189 - 1.24998 3 0 ack 40 ------- 0 5.0 0.0 7 189 r 1.25 3 4 cbr 500 ------- 1 1.0 6.0 107 181 + 1.25 4 6 cbr 500 ------- 1 1.0 6.0 107 181 - 1.25 4 6 cbr 500 ------- 1 1.0 6.0 107 181 + 1.25 1 3 cbr 500 ------- 1 1.0 6.0 120 206 - 1.25 1 3 cbr 500 ------- 1 1.0 6.0 120 206 r 1.25166 5 4 ack 40 ------- 0 5.0 0.0 11 202 + 1.25166 4 3 ack 40 ------- 0 5.0 0.0 11 202 - 1.25166 4 3 ack 40 ------- 0 5.0 0.0 11 202 r 1.254 4 6 cbr 500 ------- 1 1.0 6.0 106 177 r 1.254 1 3 cbr 500 ------- 1 1.0 6.0 118 201 + 1.254 3 4 cbr 500 ------- 1 1.0 6.0 118 201 - 1.256 3 4 cbr 500 ------- 1 1.0 6.0 114 193 r 1.25798 4 3 ack 40 ------- 0 5.0 0.0 8 192 + 1.25798 3 0 ack 40 ------- 0 5.0 0.0 8 192 - 1.25798 3 0 ack 40 ------- 0 5.0 0.0 8 192 r 1.258 3 4 cbr 1000 ------- 1 2.0 7.0 51 180 + 1.258 4 7 cbr 1000 ------- 1 2.0 7.0 51 180 - 1.258 4 7 cbr 1000 ------- 1 2.0 7.0 51 180 r 1.2596 4 5 tcp 1000 ------- 0 0.0 5.0 13 178 + 1.2596 5 4 ack 40 ------- 0 5.0 0.0 13 207 - 1.2596 5 4 ack 40 ------- 0 5.0 0.0 13 207 + 1.26 2 3 cbr 1000 ------- 1 2.0 7.0 58 208 - 1.26 2 3 cbr 1000 ------- 1 2.0 7.0 58 208 + 1.26 1 3 cbr 500 ------- 1 1.0 6.0 121 209 - 1.26 1 3 cbr 500 ------- 1 1.0 6.0 121 209 - 1.26 3 4 cbr 500 ------- 1 1.0 6.0 115 195 r 1.262 3 4 cbr 500 ------- 1 1.0 6.0 108 182 + 1.262 4 6 cbr 500 ------- 1 1.0 6.0 108 182 - 1.262 4 6 cbr 500 ------- 1 1.0 6.0 108 182 r 1.264 1 3 cbr 500 ------- 1 1.0 6.0 119 204 + 1.264 3 4 cbr 500 ------- 1 1.0 6.0 119 204 - 1.264 3 4 cbr 1000 ------- 1 2.0 7.0 55 194 r 1.266 3 4 cbr 500 ------- 1 1.0 6.0 109 184 + 1.266 4 6 cbr 500 ------- 1 1.0 6.0 109 184 - 1.266 4 6 cbr 500 ------- 1 1.0 6.0 109 184 r 1.2676 4 5 tcp 1000 ------- 0 0.0 5.0 14 179 + 1.2676 5 4 ack 40 ------- 0 5.0 0.0 14 210 - 1.2676 5 4 ack 40 ------- 0 5.0 0.0 14 210 r 1.26766 5 4 ack 40 ------- 0 5.0 0.0 12 205 + 1.26766 4 3 ack 40 ------- 0 5.0 0.0 12 205 - 1.26766 4 3 ack 40 ------- 0 5.0 0.0 12 205 r 1.268 2 3 cbr 1000 ------- 1 2.0 7.0 57 203 + 1.268 3 4 cbr 1000 ------- 1 2.0 7.0 57 203 + 1.27 1 3 cbr 500 ------- 1 1.0 6.0 122 211 - 1.27 1 3 cbr 500 ------- 1 1.0 6.0 122 211 r 1.27005 3 0 ack 40 ------- 0 5.0 0.0 7 189 + 1.27005 0 3 tcp 1000 ------- 0 0.0 5.0 15 212 - 1.27005 0 3 tcp 1000 ------- 0 0.0 5.0 15 212 + 1.27005 0 3 tcp 1000 ------- 0 0.0 5.0 16 213 - 1.27165 0 3 tcp 1000 ------- 0 0.0 5.0 16 213 - 1.272 3 4 cbr 500 ------- 1 1.0 6.0 116 196 r 1.274 3 4 cbr 1000 ------- 1 2.0 7.0 52 183 + 1.274 4 7 cbr 1000 ------- 1 2.0 7.0 52 183 - 1.274 4 7 cbr 1000 ------- 1 2.0 7.0 52 183 r 1.274 4 6 cbr 500 ------- 1 1.0 6.0 107 181 r 1.274 1 3 cbr 500 ------- 1 1.0 6.0 120 206 + 1.274 3 4 cbr 500 ------- 1 1.0 6.0 120 206 - 1.276 3 4 cbr 500 ------- 1 1.0 6.0 117 200 r 1.278 3 4 cbr 500 ------- 1 1.0 6.0 110 185 + 1.278 4 6 cbr 500 ------- 1 1.0 6.0 110 185 - 1.278 4 6 cbr 500 ------- 1 1.0 6.0 110 185 r 1.27805 3 0 ack 40 ------- 0 5.0 0.0 8 192 + 1.27805 0 3 tcp 1000 ------- 0 0.0 5.0 17 214 - 1.27805 0 3 tcp 1000 ------- 0 0.0 5.0 17 214 + 1.27805 0 3 tcp 1000 ------- 0 0.0 5.0 18 215 - 1.27965 0 3 tcp 1000 ------- 0 0.0 5.0 18 215 r 1.27966 5 4 ack 40 ------- 0 5.0 0.0 13 207 + 1.27966 4 3 ack 40 ------- 0 5.0 0.0 13 207 - 1.27966 4 3 ack 40 ------- 0 5.0 0.0 13 207 + 1.28 2 3 cbr 1000 ------- 1 2.0 7.0 59 216 - 1.28 2 3 cbr 1000 ------- 1 2.0 7.0 59 216 + 1.28 1 3 cbr 500 ------- 1 1.0 6.0 123 217 - 1.28 1 3 cbr 500 ------- 1 1.0 6.0 123 217 - 1.28 3 4 cbr 1000 ------- 1 2.0 7.0 56 199 r 1.28198 4 3 ack 40 ------- 0 5.0 0.0 9 197 + 1.28198 3 0 ack 40 ------- 0 5.0 0.0 9 197 - 1.28198 3 0 ack 40 ------- 0 5.0 0.0 9 197 r 1.282 3 4 cbr 500 ------- 1 1.0 6.0 111 187 + 1.282 4 6 cbr 500 ------- 1 1.0 6.0 111 187 - 1.282 4 6 cbr 500 ------- 1 1.0 6.0 111 187 r 1.284 1 3 cbr 500 ------- 1 1.0 6.0 121 209 + 1.284 3 4 cbr 500 ------- 1 1.0 6.0 121 209 r 1.286 4 7 cbr 1000 ------- 1 2.0 7.0 51 180 r 1.286 4 6 cbr 500 ------- 1 1.0 6.0 108 182 r 1.28766 5 4 ack 40 ------- 0 5.0 0.0 14 210 + 1.28766 4 3 ack 40 ------- 0 5.0 0.0 14 210 - 1.28766 4 3 ack 40 ------- 0 5.0 0.0 14 210 r 1.288 2 3 cbr 1000 ------- 1 2.0 7.0 58 208 + 1.288 3 4 cbr 1000 ------- 1 2.0 7.0 58 208 - 1.288 3 4 cbr 500 ------- 1 1.0 6.0 118 201 r 1.28998 4 3 ack 40 ------- 0 5.0 0.0 10 198 + 1.28998 3 0 ack 40 ------- 0 5.0 0.0 10 198 - 1.28998 3 0 ack 40 ------- 0 5.0 0.0 10 198 r 1.29 3 4 cbr 1000 ------- 1 2.0 7.0 53 186 + 1.29 4 7 cbr 1000 ------- 1 2.0 7.0 53 186 - 1.29 4 7 cbr 1000 ------- 1 2.0 7.0 53 186 r 1.29 4 6 cbr 500 ------- 1 1.0 6.0 109 184 + 1.29 1 3 cbr 500 ------- 1 1.0 6.0 124 218 - 1.29 1 3 cbr 500 ------- 1 1.0 6.0 124 218 r 1.29165 0 3 tcp 1000 ------- 0 0.0 5.0 15 212 + 1.29165 3 4 tcp 1000 ------- 0 0.0 5.0 15 212 - 1.292 3 4 cbr 500 ------- 1 1.0 6.0 119 204 r 1.29325 0 3 tcp 1000 ------- 0 0.0 5.0 16 213 + 1.29325 3 4 tcp 1000 ------- 0 0.0 5.0 16 213 r 1.294 3 4 cbr 500 ------- 1 1.0 6.0 112 188 + 1.294 4 6 cbr 500 ------- 1 1.0 6.0 112 188 - 1.294 4 6 cbr 500 ------- 1 1.0 6.0 112 188 r 1.294 1 3 cbr 500 ------- 1 1.0 6.0 122 211 + 1.294 3 4 cbr 500 ------- 1 1.0 6.0 122 211 - 1.296 3 4 cbr 1000 ------- 1 2.0 7.0 57 203 r 1.298 3 4 cbr 500 ------- 1 1.0 6.0 113 191 + 1.298 4 6 cbr 500 ------- 1 1.0 6.0 113 191 - 1.298 4 6 cbr 500 ------- 1 1.0 6.0 113 191 r 1.29965 0 3 tcp 1000 ------- 0 0.0 5.0 17 214 + 1.29965 3 4 tcp 1000 ------- 0 0.0 5.0 17 214 + 1.3 2 3 cbr 1000 ------- 1 2.0 7.0 60 219 - 1.3 2 3 cbr 1000 ------- 1 2.0 7.0 60 219 + 1.3 1 3 cbr 500 ------- 1 1.0 6.0 125 220 - 1.3 1 3 cbr 500 ------- 1 1.0 6.0 125 220 r 1.30125 0 3 tcp 1000 ------- 0 0.0 5.0 18 215 + 1.30125 3 4 tcp 1000 ------- 0 0.0 5.0 18 215 r 1.30198 4 3 ack 40 ------- 0 5.0 0.0 11 202 + 1.30198 3 0 ack 40 ------- 0 5.0 0.0 11 202 - 1.30198 3 0 ack 40 ------- 0 5.0 0.0 11 202 r 1.302 4 7 cbr 1000 ------- 1 2.0 7.0 52 183 r 1.302 4 6 cbr 500 ------- 1 1.0 6.0 110 185 r 1.30205 3 0 ack 40 ------- 0 5.0 0.0 9 197 + 1.30205 0 3 tcp 1000 ------- 0 0.0 5.0 19 221 - 1.30205 0 3 tcp 1000 ------- 0 0.0 5.0 19 221 + 1.30205 0 3 tcp 1000 ------- 0 0.0 5.0 20 222 - 1.30365 0 3 tcp 1000 ------- 0 0.0 5.0 20 222 r 1.304 1 3 cbr 500 ------- 1 1.0 6.0 123 217 + 1.304 3 4 cbr 500 ------- 1 1.0 6.0 123 217 - 1.304 3 4 cbr 500 ------- 1 1.0 6.0 120 206 r 1.306 3 4 cbr 1000 ------- 1 2.0 7.0 54 190 + 1.306 4 7 cbr 1000 ------- 1 2.0 7.0 54 190 - 1.306 4 7 cbr 1000 ------- 1 2.0 7.0 54 190 r 1.306 4 6 cbr 500 ------- 1 1.0 6.0 111 187 r 1.308 2 3 cbr 1000 ------- 1 2.0 7.0 59 216 + 1.308 3 4 cbr 1000 ------- 1 2.0 7.0 59 216 - 1.308 3 4 cbr 500 ------- 1 1.0 6.0 121 209 r 1.31 3 4 cbr 500 ------- 1 1.0 6.0 114 193 + 1.31 4 6 cbr 500 ------- 1 1.0 6.0 114 193 - 1.31 4 6 cbr 500 ------- 1 1.0 6.0 114 193 + 1.31 1 3 cbr 500 ------- 1 1.0 6.0 126 223 - 1.31 1 3 cbr 500 ------- 1 1.0 6.0 126 223 r 1.31005 3 0 ack 40 ------- 0 5.0 0.0 10 198 + 1.31005 0 3 tcp 1000 ------- 0 0.0 5.0 21 224 - 1.31005 0 3 tcp 1000 ------- 0 0.0 5.0 21 224 + 1.31005 0 3 tcp 1000 ------- 0 0.0 5.0 22 225 - 1.31165 0 3 tcp 1000 ------- 0 0.0 5.0 22 225 - 1.312 3 4 cbr 1000 ------- 1 2.0 7.0 58 208 r 1.314 3 4 cbr 500 ------- 1 1.0 6.0 115 195 + 1.314 4 6 cbr 500 ------- 1 1.0 6.0 115 195 r 1.314 1 3 cbr 500 ------- 1 1.0 6.0 124 218 + 1.314 3 4 cbr 500 ------- 1 1.0 6.0 124 218 - 1.314 4 6 cbr 500 ------- 1 1.0 6.0 115 195 r 1.31798 4 3 ack 40 ------- 0 5.0 0.0 12 205 + 1.31798 3 0 ack 40 ------- 0 5.0 0.0 12 205 - 1.31798 3 0 ack 40 ------- 0 5.0 0.0 12 205 r 1.318 4 7 cbr 1000 ------- 1 2.0 7.0 53 186 r 1.318 4 6 cbr 500 ------- 1 1.0 6.0 112 188 + 1.32 2 3 cbr 1000 ------- 1 2.0 7.0 61 226 - 1.32 2 3 cbr 1000 ------- 1 2.0 7.0 61 226 + 1.32 1 3 cbr 500 ------- 1 1.0 6.0 127 227 - 1.32 1 3 cbr 500 ------- 1 1.0 6.0 127 227 - 1.32 3 4 tcp 1000 ------- 0 0.0 5.0 15 212 r 1.322 3 4 cbr 1000 ------- 1 2.0 7.0 55 194 + 1.322 4 7 cbr 1000 ------- 1 2.0 7.0 55 194 - 1.322 4 7 cbr 1000 ------- 1 2.0 7.0 55 194 r 1.322 4 6 cbr 500 ------- 1 1.0 6.0 113 191 r 1.32205 3 0 ack 40 ------- 0 5.0 0.0 11 202 + 1.32205 0 3 tcp 1000 ------- 0 0.0 5.0 23 228 - 1.32205 0 3 tcp 1000 ------- 0 0.0 5.0 23 228 + 1.32205 0 3 tcp 1000 ------- 0 0.0 5.0 24 229 r 1.32365 0 3 tcp 1000 ------- 0 0.0 5.0 19 221 + 1.32365 3 4 tcp 1000 ------- 0 0.0 5.0 19 221 - 1.32365 0 3 tcp 1000 ------- 0 0.0 5.0 24 229 r 1.324 1 3 cbr 500 ------- 1 1.0 6.0 125 220 + 1.324 3 4 cbr 500 ------- 1 1.0 6.0 125 220 r 1.32525 0 3 tcp 1000 ------- 0 0.0 5.0 20 222 + 1.32525 3 4 tcp 1000 ------- 0 0.0 5.0 20 222 r 1.326 3 4 cbr 500 ------- 1 1.0 6.0 116 196 + 1.326 4 6 cbr 500 ------- 1 1.0 6.0 116 196 - 1.326 4 6 cbr 500 ------- 1 1.0 6.0 116 196 r 1.328 2 3 cbr 1000 ------- 1 2.0 7.0 60 219 + 1.328 3 4 cbr 1000 ------- 1 2.0 7.0 60 219 - 1.328 3 4 tcp 1000 ------- 0 0.0 5.0 16 213 r 1.32998 4 3 ack 40 ------- 0 5.0 0.0 13 207 + 1.32998 3 0 ack 40 ------- 0 5.0 0.0 13 207 - 1.32998 3 0 ack 40 ------- 0 5.0 0.0 13 207 r 1.33 3 4 cbr 500 ------- 1 1.0 6.0 117 200 + 1.33 4 6 cbr 500 ------- 1 1.0 6.0 117 200 + 1.33 1 3 cbr 500 ------- 1 1.0 6.0 128 230 - 1.33 1 3 cbr 500 ------- 1 1.0 6.0 128 230 - 1.33 4 6 cbr 500 ------- 1 1.0 6.0 117 200 r 1.33165 0 3 tcp 1000 ------- 0 0.0 5.0 21 224 + 1.33165 3 4 tcp 1000 ------- 0 0.0 5.0 21 224 r 1.33325 0 3 tcp 1000 ------- 0 0.0 5.0 22 225 + 1.33325 3 4 tcp 1000 ------- 0 0.0 5.0 22 225 r 1.334 4 7 cbr 1000 ------- 1 2.0 7.0 54 190 r 1.334 4 6 cbr 500 ------- 1 1.0 6.0 114 193 r 1.334 1 3 cbr 500 ------- 1 1.0 6.0 126 223 + 1.334 3 4 cbr 500 ------- 1 1.0 6.0 126 223 - 1.336 3 4 cbr 500 ------- 1 1.0 6.0 122 211 r 1.33798 4 3 ack 40 ------- 0 5.0 0.0 14 210 + 1.33798 3 0 ack 40 ------- 0 5.0 0.0 14 210 - 1.33798 3 0 ack 40 ------- 0 5.0 0.0 14 210 r 1.338 3 4 cbr 1000 ------- 1 2.0 7.0 56 199 + 1.338 4 7 cbr 1000 ------- 1 2.0 7.0 56 199 - 1.338 4 7 cbr 1000 ------- 1 2.0 7.0 56 199 r 1.338 4 6 cbr 500 ------- 1 1.0 6.0 115 195 r 1.33805 3 0 ack 40 ------- 0 5.0 0.0 12 205 + 1.33805 0 3 tcp 1000 ------- 0 0.0 5.0 25 231 - 1.33805 0 3 tcp 1000 ------- 0 0.0 5.0 25 231 + 1.33805 0 3 tcp 1000 ------- 0 0.0 5.0 26 232 - 1.33965 0 3 tcp 1000 ------- 0 0.0 5.0 26 232 + 1.34 2 3 cbr 1000 ------- 1 2.0 7.0 62 233 - 1.34 2 3 cbr 1000 ------- 1 2.0 7.0 62 233 + 1.34 1 3 cbr 500 ------- 1 1.0 6.0 129 234 - 1.34 1 3 cbr 500 ------- 1 1.0 6.0 129 234 - 1.34 3 4 tcp 1000 ------- 0 0.0 5.0 17 214 r 1.342 3 4 cbr 500 ------- 1 1.0 6.0 118 201 + 1.342 4 6 cbr 500 ------- 1 1.0 6.0 118 201 - 1.342 4 6 cbr 500 ------- 1 1.0 6.0 118 201 r 1.34365 0 3 tcp 1000 ------- 0 0.0 5.0 23 228 + 1.34365 3 4 tcp 1000 ------- 0 0.0 5.0 23 228 r 1.344 1 3 cbr 500 ------- 1 1.0 6.0 127 227 + 1.344 3 4 cbr 500 ------- 1 1.0 6.0 127 227 r 1.34525 0 3 tcp 1000 ------- 0 0.0 5.0 24 229 + 1.34525 3 4 tcp 1000 ------- 0 0.0 5.0 24 229 r 1.346 3 4 cbr 500 ------- 1 1.0 6.0 119 204 + 1.346 4 6 cbr 500 ------- 1 1.0 6.0 119 204 - 1.346 4 6 cbr 500 ------- 1 1.0 6.0 119 204 r 1.348 2 3 cbr 1000 ------- 1 2.0 7.0 61 226 + 1.348 3 4 cbr 1000 ------- 1 2.0 7.0 61 226 d 1.348 3 4 cbr 1000 ------- 1 2.0 7.0 61 226 - 1.348 3 4 tcp 1000 ------- 0 0.0 5.0 18 215 r 1.35 4 7 cbr 1000 ------- 1 2.0 7.0 55 194 r 1.35 4 6 cbr 500 ------- 1 1.0 6.0 116 196 + 1.35 1 3 cbr 500 ------- 1 1.0 6.0 130 235 - 1.35 1 3 cbr 500 ------- 1 1.0 6.0 130 235 r 1.35005 3 0 ack 40 ------- 0 5.0 0.0 13 207 + 1.35005 0 3 tcp 1000 ------- 0 0.0 5.0 27 236 - 1.35005 0 3 tcp 1000 ------- 0 0.0 5.0 27 236 + 1.35005 0 3 tcp 1000 ------- 0 0.0 5.0 28 237 - 1.35165 0 3 tcp 1000 ------- 0 0.0 5.0 28 237 r 1.354 3 4 cbr 1000 ------- 1 2.0 7.0 57 203 + 1.354 4 7 cbr 1000 ------- 1 2.0 7.0 57 203 - 1.354 4 7 cbr 1000 ------- 1 2.0 7.0 57 203 r 1.354 1 3 cbr 500 ------- 1 1.0 6.0 128 230 + 1.354 3 4 cbr 500 ------- 1 1.0 6.0 128 230 r 1.354 4 6 cbr 500 ------- 1 1.0 6.0 117 200 - 1.356 3 4 cbr 500 ------- 1 1.0 6.0 123 217 r 1.358 3 4 cbr 500 ------- 1 1.0 6.0 120 206 + 1.358 4 6 cbr 500 ------- 1 1.0 6.0 120 206 - 1.358 4 6 cbr 500 ------- 1 1.0 6.0 120 206 r 1.35805 3 0 ack 40 ------- 0 5.0 0.0 14 210 + 1.35805 0 3 tcp 1000 ------- 0 0.0 5.0 29 238 - 1.35805 0 3 tcp 1000 ------- 0 0.0 5.0 29 238 + 1.35805 0 3 tcp 1000 ------- 0 0.0 5.0 30 239 r 1.35965 0 3 tcp 1000 ------- 0 0.0 5.0 25 231 + 1.35965 3 4 tcp 1000 ------- 0 0.0 5.0 25 231 - 1.35965 0 3 tcp 1000 ------- 0 0.0 5.0 30 239 + 1.36 2 3 cbr 1000 ------- 1 2.0 7.0 63 240 - 1.36 2 3 cbr 1000 ------- 1 2.0 7.0 63 240 + 1.36 1 3 cbr 500 ------- 1 1.0 6.0 131 241 - 1.36 1 3 cbr 500 ------- 1 1.0 6.0 131 241 - 1.36 3 4 cbr 1000 ------- 1 2.0 7.0 59 216 r 1.36125 0 3 tcp 1000 ------- 0 0.0 5.0 26 232 + 1.36125 3 4 tcp 1000 ------- 0 0.0 5.0 26 232 r 1.362 3 4 cbr 500 ------- 1 1.0 6.0 121 209 + 1.362 4 6 cbr 500 ------- 1 1.0 6.0 121 209 - 1.362 4 6 cbr 500 ------- 1 1.0 6.0 121 209 r 1.364 1 3 cbr 500 ------- 1 1.0 6.0 129 234 + 1.364 3 4 cbr 500 ------- 1 1.0 6.0 129 234 d 1.364 3 4 cbr 500 ------- 1 1.0 6.0 129 234 r 1.366 4 7 cbr 1000 ------- 1 2.0 7.0 56 199 r 1.366 4 6 cbr 500 ------- 1 1.0 6.0 118 201 r 1.368 2 3 cbr 1000 ------- 1 2.0 7.0 62 233 + 1.368 3 4 cbr 1000 ------- 1 2.0 7.0 62 233 d 1.368 3 4 cbr 1000 ------- 1 2.0 7.0 62 233 - 1.368 3 4 cbr 500 ------- 1 1.0 6.0 124 218 r 1.37 3 4 cbr 1000 ------- 1 2.0 7.0 58 208 + 1.37 4 7 cbr 1000 ------- 1 2.0 7.0 58 208 - 1.37 4 7 cbr 1000 ------- 1 2.0 7.0 58 208 r 1.37 4 6 cbr 500 ------- 1 1.0 6.0 119 204 + 1.37 1 3 cbr 500 ------- 1 1.0 6.0 132 242 - 1.37 1 3 cbr 500 ------- 1 1.0 6.0 132 242 r 1.37165 0 3 tcp 1000 ------- 0 0.0 5.0 27 236 + 1.37165 3 4 tcp 1000 ------- 0 0.0 5.0 27 236 - 1.372 3 4 tcp 1000 ------- 0 0.0 5.0 19 221 r 1.37325 0 3 tcp 1000 ------- 0 0.0 5.0 28 237 + 1.37325 3 4 tcp 1000 ------- 0 0.0 5.0 28 237 r 1.374 1 3 cbr 500 ------- 1 1.0 6.0 130 235 + 1.374 3 4 cbr 500 ------- 1 1.0 6.0 130 235 d 1.374 3 4 cbr 500 ------- 1 1.0 6.0 130 235 r 1.378 3 4 tcp 1000 ------- 0 0.0 5.0 15 212 + 1.378 4 5 tcp 1000 ------- 0 0.0 5.0 15 212 - 1.378 4 5 tcp 1000 ------- 0 0.0 5.0 15 212 r 1.37965 0 3 tcp 1000 ------- 0 0.0 5.0 29 238 + 1.37965 3 4 tcp 1000 ------- 0 0.0 5.0 29 238 d 1.37965 3 4 tcp 1000 ------- 0 0.0 5.0 29 238 + 1.38 2 3 cbr 1000 ------- 1 2.0 7.0 64 243 - 1.38 2 3 cbr 1000 ------- 1 2.0 7.0 64 243 + 1.38 1 3 cbr 500 ------- 1 1.0 6.0 133 244 - 1.38 1 3 cbr 500 ------- 1 1.0 6.0 133 244 - 1.38 3 4 cbr 500 ------- 1 1.0 6.0 125 220 r 1.38125 0 3 tcp 1000 ------- 0 0.0 5.0 30 239 + 1.38125 3 4 tcp 1000 ------- 0 0.0 5.0 30 239 r 1.382 4 7 cbr 1000 ------- 1 2.0 7.0 57 203 r 1.382 4 6 cbr 500 ------- 1 1.0 6.0 120 206 r 1.384 1 3 cbr 500 ------- 1 1.0 6.0 131 241 + 1.384 3 4 cbr 500 ------- 1 1.0 6.0 131 241 d 1.384 3 4 cbr 500 ------- 1 1.0 6.0 131 241 - 1.384 3 4 tcp 1000 ------- 0 0.0 5.0 20 222 r 1.386 3 4 tcp 1000 ------- 0 0.0 5.0 16 213 + 1.386 4 5 tcp 1000 ------- 0 0.0 5.0 16 213 - 1.386 4 5 tcp 1000 ------- 0 0.0 5.0 16 213 r 1.386 4 6 cbr 500 ------- 1 1.0 6.0 121 209 r 1.388 2 3 cbr 1000 ------- 1 2.0 7.0 63 240 + 1.388 3 4 cbr 1000 ------- 1 2.0 7.0 63 240 r 1.39 3 4 cbr 500 ------- 1 1.0 6.0 122 211 + 1.39 4 6 cbr 500 ------- 1 1.0 6.0 122 211 - 1.39 4 6 cbr 500 ------- 1 1.0 6.0 122 211 + 1.39 1 3 cbr 500 ------- 1 1.0 6.0 134 245 - 1.39 1 3 cbr 500 ------- 1 1.0 6.0 134 245 - 1.392 3 4 cbr 1000 ------- 1 2.0 7.0 60 219 r 1.394 1 3 cbr 500 ------- 1 1.0 6.0 132 242 + 1.394 3 4 cbr 500 ------- 1 1.0 6.0 132 242 r 1.398 3 4 tcp 1000 ------- 0 0.0 5.0 17 214 + 1.398 4 5 tcp 1000 ------- 0 0.0 5.0 17 214 - 1.398 4 5 tcp 1000 ------- 0 0.0 5.0 17 214 r 1.398 4 7 cbr 1000 ------- 1 2.0 7.0 58 208 r 1.3996 4 5 tcp 1000 ------- 0 0.0 5.0 15 212 + 1.3996 5 4 ack 40 ------- 0 5.0 0.0 15 246 - 1.3996 5 4 ack 40 ------- 0 5.0 0.0 15 246 + 1.4 2 3 cbr 1000 ------- 1 2.0 7.0 65 247 - 1.4 2 3 cbr 1000 ------- 1 2.0 7.0 65 247 + 1.4 1 3 cbr 500 ------- 1 1.0 6.0 135 248 - 1.4 1 3 cbr 500 ------- 1 1.0 6.0 135 248 - 1.4 3 4 tcp 1000 ------- 0 0.0 5.0 21 224 r 1.404 1 3 cbr 500 ------- 1 1.0 6.0 133 244 + 1.404 3 4 cbr 500 ------- 1 1.0 6.0 133 244 r 1.406 3 4 tcp 1000 ------- 0 0.0 5.0 18 215 + 1.406 4 5 tcp 1000 ------- 0 0.0 5.0 18 215 - 1.406 4 5 tcp 1000 ------- 0 0.0 5.0 18 215 r 1.4076 4 5 tcp 1000 ------- 0 0.0 5.0 16 213 + 1.4076 5 4 ack 40 ------- 0 5.0 0.0 16 249 - 1.4076 5 4 ack 40 ------- 0 5.0 0.0 16 249 r 1.408 2 3 cbr 1000 ------- 1 2.0 7.0 64 243 + 1.408 3 4 cbr 1000 ------- 1 2.0 7.0 64 243 d 1.408 3 4 cbr 1000 ------- 1 2.0 7.0 64 243 - 1.408 3 4 tcp 1000 ------- 0 0.0 5.0 22 225 r 1.41 3 4 cbr 500 ------- 1 1.0 6.0 123 217 + 1.41 4 6 cbr 500 ------- 1 1.0 6.0 123 217 - 1.41 4 6 cbr 500 ------- 1 1.0 6.0 123 217 + 1.41 1 3 cbr 500 ------- 1 1.0 6.0 136 250 - 1.41 1 3 cbr 500 ------- 1 1.0 6.0 136 250 r 1.414 4 6 cbr 500 ------- 1 1.0 6.0 122 211 r 1.414 1 3 cbr 500 ------- 1 1.0 6.0 134 245 + 1.414 3 4 cbr 500 ------- 1 1.0 6.0 134 245 - 1.416 3 4 cbr 500 ------- 1 1.0 6.0 126 223 r 1.418 3 4 cbr 1000 ------- 1 2.0 7.0 59 216 + 1.418 4 7 cbr 1000 ------- 1 2.0 7.0 59 216 - 1.418 4 7 cbr 1000 ------- 1 2.0 7.0 59 216 r 1.4196 4 5 tcp 1000 ------- 0 0.0 5.0 17 214 + 1.4196 5 4 ack 40 ------- 0 5.0 0.0 17 251 - 1.4196 5 4 ack 40 ------- 0 5.0 0.0 17 251 r 1.41966 5 4 ack 40 ------- 0 5.0 0.0 15 246 + 1.41966 4 3 ack 40 ------- 0 5.0 0.0 15 246 - 1.41966 4 3 ack 40 ------- 0 5.0 0.0 15 246 + 1.42 2 3 cbr 1000 ------- 1 2.0 7.0 66 252 - 1.42 2 3 cbr 1000 ------- 1 2.0 7.0 66 252 + 1.42 1 3 cbr 500 ------- 1 1.0 6.0 137 253 - 1.42 1 3 cbr 500 ------- 1 1.0 6.0 137 253 - 1.42 3 4 tcp 1000 ------- 0 0.0 5.0 23 228 r 1.422 3 4 cbr 500 ------- 1 1.0 6.0 124 218 + 1.422 4 6 cbr 500 ------- 1 1.0 6.0 124 218 - 1.422 4 6 cbr 500 ------- 1 1.0 6.0 124 218 r 1.424 1 3 cbr 500 ------- 1 1.0 6.0 135 248 + 1.424 3 4 cbr 500 ------- 1 1.0 6.0 135 248 r 1.4276 4 5 tcp 1000 ------- 0 0.0 5.0 18 215 + 1.4276 5 4 ack 40 ------- 0 5.0 0.0 18 254 - 1.4276 5 4 ack 40 ------- 0 5.0 0.0 18 254 r 1.42766 5 4 ack 40 ------- 0 5.0 0.0 16 249 + 1.42766 4 3 ack 40 ------- 0 5.0 0.0 16 249 - 1.42766 4 3 ack 40 ------- 0 5.0 0.0 16 249 r 1.428 2 3 cbr 1000 ------- 1 2.0 7.0 65 247 + 1.428 3 4 cbr 1000 ------- 1 2.0 7.0 65 247 - 1.428 3 4 cbr 500 ------- 1 1.0 6.0 127 227 r 1.43 3 4 tcp 1000 ------- 0 0.0 5.0 19 221 + 1.43 4 5 tcp 1000 ------- 0 0.0 5.0 19 221 - 1.43 4 5 tcp 1000 ------- 0 0.0 5.0 19 221 + 1.43 1 3 cbr 500 ------- 1 1.0 6.0 138 255 - 1.43 1 3 cbr 500 ------- 1 1.0 6.0 138 255 - 1.432 3 4 tcp 1000 ------- 0 0.0 5.0 24 229 r 1.434 3 4 cbr 500 ------- 1 1.0 6.0 125 220 + 1.434 4 6 cbr 500 ------- 1 1.0 6.0 125 220 - 1.434 4 6 cbr 500 ------- 1 1.0 6.0 125 220 r 1.434 4 6 cbr 500 ------- 1 1.0 6.0 123 217 r 1.434 1 3 cbr 500 ------- 1 1.0 6.0 136 250 + 1.434 3 4 cbr 500 ------- 1 1.0 6.0 136 250 r 1.43966 5 4 ack 40 ------- 0 5.0 0.0 17 251 + 1.43966 4 3 ack 40 ------- 0 5.0 0.0 17 251 - 1.43966 4 3 ack 40 ------- 0 5.0 0.0 17 251 + 1.44 2 3 cbr 1000 ------- 1 2.0 7.0 67 256 - 1.44 2 3 cbr 1000 ------- 1 2.0 7.0 67 256 + 1.44 1 3 cbr 500 ------- 1 1.0 6.0 139 257 - 1.44 1 3 cbr 500 ------- 1 1.0 6.0 139 257 - 1.44 3 4 cbr 500 ------- 1 1.0 6.0 128 230 r 1.442 3 4 tcp 1000 ------- 0 0.0 5.0 20 222 + 1.442 4 5 tcp 1000 ------- 0 0.0 5.0 20 222 - 1.442 4 5 tcp 1000 ------- 0 0.0 5.0 20 222 r 1.444 1 3 cbr 500 ------- 1 1.0 6.0 137 253 + 1.444 3 4 cbr 500 ------- 1 1.0 6.0 137 253 - 1.444 3 4 tcp 1000 ------- 0 0.0 5.0 25 231 r 1.446 4 7 cbr 1000 ------- 1 2.0 7.0 59 216 r 1.446 4 6 cbr 500 ------- 1 1.0 6.0 124 218 r 1.44766 5 4 ack 40 ------- 0 5.0 0.0 18 254 + 1.44766 4 3 ack 40 ------- 0 5.0 0.0 18 254 - 1.44766 4 3 ack 40 ------- 0 5.0 0.0 18 254 r 1.448 2 3 cbr 1000 ------- 1 2.0 7.0 66 252 + 1.448 3 4 cbr 1000 ------- 1 2.0 7.0 66 252 r 1.45 3 4 cbr 1000 ------- 1 2.0 7.0 60 219 + 1.45 4 7 cbr 1000 ------- 1 2.0 7.0 60 219 - 1.45 4 7 cbr 1000 ------- 1 2.0 7.0 60 219 + 1.45 1 3 cbr 500 ------- 1 1.0 6.0 140 258 - 1.45 1 3 cbr 500 ------- 1 1.0 6.0 140 258 r 1.4516 4 5 tcp 1000 ------- 0 0.0 5.0 19 221 + 1.4516 5 4 ack 40 ------- 0 5.0 0.0 19 259 - 1.4516 5 4 ack 40 ------- 0 5.0 0.0 19 259 - 1.452 3 4 tcp 1000 ------- 0 0.0 5.0 26 232 r 1.454 1 3 cbr 500 ------- 1 1.0 6.0 138 255 + 1.454 3 4 cbr 500 ------- 1 1.0 6.0 138 255 r 1.458 3 4 tcp 1000 ------- 0 0.0 5.0 21 224 + 1.458 4 5 tcp 1000 ------- 0 0.0 5.0 21 224 - 1.458 4 5 tcp 1000 ------- 0 0.0 5.0 21 224 r 1.458 4 6 cbr 500 ------- 1 1.0 6.0 125 220 + 1.46 2 3 cbr 1000 ------- 1 2.0 7.0 68 260 - 1.46 2 3 cbr 1000 ------- 1 2.0 7.0 68 260 + 1.46 1 3 cbr 500 ------- 1 1.0 6.0 141 261 - 1.46 1 3 cbr 500 ------- 1 1.0 6.0 141 261 - 1.46 3 4 tcp 1000 ------- 0 0.0 5.0 27 236 r 1.4636 4 5 tcp 1000 ------- 0 0.0 5.0 20 222 + 1.4636 5 4 ack 40 ------- 0 5.0 0.0 20 262 - 1.4636 5 4 ack 40 ------- 0 5.0 0.0 20 262 r 1.464 1 3 cbr 500 ------- 1 1.0 6.0 139 257 + 1.464 3 4 cbr 500 ------- 1 1.0 6.0 139 257 r 1.466 3 4 tcp 1000 ------- 0 0.0 5.0 22 225 + 1.466 4 5 tcp 1000 ------- 0 0.0 5.0 22 225 - 1.466 4 5 tcp 1000 ------- 0 0.0 5.0 22 225 r 1.468 2 3 cbr 1000 ------- 1 2.0 7.0 67 256 + 1.468 3 4 cbr 1000 ------- 1 2.0 7.0 67 256 - 1.468 3 4 tcp 1000 ------- 0 0.0 5.0 28 237 r 1.46998 4 3 ack 40 ------- 0 5.0 0.0 15 246 + 1.46998 3 0 ack 40 ------- 0 5.0 0.0 15 246 - 1.46998 3 0 ack 40 ------- 0 5.0 0.0 15 246 r 1.47 3 4 cbr 500 ------- 1 1.0 6.0 126 223 + 1.47 4 6 cbr 500 ------- 1 1.0 6.0 126 223 - 1.47 4 6 cbr 500 ------- 1 1.0 6.0 126 223 + 1.47 1 3 cbr 500 ------- 1 1.0 6.0 142 263 - 1.47 1 3 cbr 500 ------- 1 1.0 6.0 142 263 r 1.47166 5 4 ack 40 ------- 0 5.0 0.0 19 259 + 1.47166 4 3 ack 40 ------- 0 5.0 0.0 19 259 - 1.47166 4 3 ack 40 ------- 0 5.0 0.0 19 259 r 1.474 1 3 cbr 500 ------- 1 1.0 6.0 140 258 + 1.474 3 4 cbr 500 ------- 1 1.0 6.0 140 258 - 1.476 3 4 tcp 1000 ------- 0 0.0 5.0 30 239 r 1.47798 4 3 ack 40 ------- 0 5.0 0.0 16 249 + 1.47798 3 0 ack 40 ------- 0 5.0 0.0 16 249 - 1.47798 3 0 ack 40 ------- 0 5.0 0.0 16 249 r 1.478 3 4 tcp 1000 ------- 0 0.0 5.0 23 228 + 1.478 4 5 tcp 1000 ------- 0 0.0 5.0 23 228 - 1.478 4 5 tcp 1000 ------- 0 0.0 5.0 23 228 r 1.478 4 7 cbr 1000 ------- 1 2.0 7.0 60 219 r 1.4796 4 5 tcp 1000 ------- 0 0.0 5.0 21 224 + 1.4796 5 4 ack 40 ------- 0 5.0 0.0 21 264 - 1.4796 5 4 ack 40 ------- 0 5.0 0.0 21 264 + 1.48 2 3 cbr 1000 ------- 1 2.0 7.0 69 265 - 1.48 2 3 cbr 1000 ------- 1 2.0 7.0 69 265 + 1.48 1 3 cbr 500 ------- 1 1.0 6.0 143 266 - 1.48 1 3 cbr 500 ------- 1 1.0 6.0 143 266 r 1.482 3 4 cbr 500 ------- 1 1.0 6.0 127 227 + 1.482 4 6 cbr 500 ------- 1 1.0 6.0 127 227 - 1.482 4 6 cbr 500 ------- 1 1.0 6.0 127 227 r 1.48366 5 4 ack 40 ------- 0 5.0 0.0 20 262 + 1.48366 4 3 ack 40 ------- 0 5.0 0.0 20 262 - 1.48366 4 3 ack 40 ------- 0 5.0 0.0 20 262 r 1.484 1 3 cbr 500 ------- 1 1.0 6.0 141 261 + 1.484 3 4 cbr 500 ------- 1 1.0 6.0 141 261 - 1.484 3 4 cbr 1000 ------- 1 2.0 7.0 63 240 r 1.4876 4 5 tcp 1000 ------- 0 0.0 5.0 22 225 + 1.4876 5 4 ack 40 ------- 0 5.0 0.0 22 267 - 1.4876 5 4 ack 40 ------- 0 5.0 0.0 22 267 r 1.488 2 3 cbr 1000 ------- 1 2.0 7.0 68 260 + 1.488 3 4 cbr 1000 ------- 1 2.0 7.0 68 260 r 1.48998 4 3 ack 40 ------- 0 5.0 0.0 17 251 + 1.48998 3 0 ack 40 ------- 0 5.0 0.0 17 251 - 1.48998 3 0 ack 40 ------- 0 5.0 0.0 17 251 r 1.49 3 4 tcp 1000 ------- 0 0.0 5.0 24 229 + 1.49 4 5 tcp 1000 ------- 0 0.0 5.0 24 229 - 1.49 4 5 tcp 1000 ------- 0 0.0 5.0 24 229 + 1.49 1 3 cbr 500 ------- 1 1.0 6.0 144 268 - 1.49 1 3 cbr 500 ------- 1 1.0 6.0 144 268 r 1.49005 3 0 ack 40 ------- 0 5.0 0.0 15 246 + 1.49005 0 3 tcp 1000 ------- 0 0.0 5.0 31 269 - 1.49005 0 3 tcp 1000 ------- 0 0.0 5.0 31 269 + 1.49005 0 3 tcp 1000 ------- 0 0.0 5.0 32 270 - 1.49165 0 3 tcp 1000 ------- 0 0.0 5.0 32 270 - 1.492 3 4 cbr 500 ------- 1 1.0 6.0 132 242 r 1.494 3 4 cbr 500 ------- 1 1.0 6.0 128 230 + 1.494 4 6 cbr 500 ------- 1 1.0 6.0 128 230 - 1.494 4 6 cbr 500 ------- 1 1.0 6.0 128 230 r 1.494 4 6 cbr 500 ------- 1 1.0 6.0 126 223 r 1.494 1 3 cbr 500 ------- 1 1.0 6.0 142 263 + 1.494 3 4 cbr 500 ------- 1 1.0 6.0 142 263 - 1.496 3 4 cbr 500 ------- 1 1.0 6.0 133 244 r 1.49798 4 3 ack 40 ------- 0 5.0 0.0 18 254 + 1.49798 3 0 ack 40 ------- 0 5.0 0.0 18 254 - 1.49798 3 0 ack 40 ------- 0 5.0 0.0 18 254 r 1.49805 3 0 ack 40 ------- 0 5.0 0.0 16 249 + 1.49805 0 3 tcp 1000 ------- 0 0.0 5.0 33 271 - 1.49805 0 3 tcp 1000 ------- 0 0.0 5.0 33 271 + 1.49805 0 3 tcp 1000 ------- 0 0.0 5.0 34 272 r 1.4996 4 5 tcp 1000 ------- 0 0.0 5.0 23 228 + 1.4996 5 4 ack 40 ------- 0 5.0 0.0 23 273 - 1.4996 5 4 ack 40 ------- 0 5.0 0.0 23 273 - 1.49965 0 3 tcp 1000 ------- 0 0.0 5.0 34 272 r 1.49966 5 4 ack 40 ------- 0 5.0 0.0 21 264 + 1.49966 4 3 ack 40 ------- 0 5.0 0.0 21 264 - 1.49966 4 3 ack 40 ------- 0 5.0 0.0 21 264 + 1.5 2 3 cbr 1000 ------- 1 2.0 7.0 70 274 - 1.5 2 3 cbr 1000 ------- 1 2.0 7.0 70 274 + 1.5 1 3 cbr 500 ------- 1 1.0 6.0 145 275 - 1.5 1 3 cbr 500 ------- 1 1.0 6.0 145 275 - 1.5 3 4 cbr 500 ------- 1 1.0 6.0 134 245 r 1.502 3 4 tcp 1000 ------- 0 0.0 5.0 25 231 + 1.502 4 5 tcp 1000 ------- 0 0.0 5.0 25 231 - 1.502 4 5 tcp 1000 ------- 0 0.0 5.0 25 231 r 1.504 1 3 cbr 500 ------- 1 1.0 6.0 143 266 + 1.504 3 4 cbr 500 ------- 1 1.0 6.0 143 266 - 1.504 3 4 cbr 500 ------- 1 1.0 6.0 135 248 r 1.506 4 6 cbr 500 ------- 1 1.0 6.0 127 227 r 1.50766 5 4 ack 40 ------- 0 5.0 0.0 22 267 + 1.50766 4 3 ack 40 ------- 0 5.0 0.0 22 267 - 1.50766 4 3 ack 40 ------- 0 5.0 0.0 22 267 r 1.508 2 3 cbr 1000 ------- 1 2.0 7.0 69 265 + 1.508 3 4 cbr 1000 ------- 1 2.0 7.0 69 265 - 1.508 3 4 cbr 1000 ------- 1 2.0 7.0 65 247 r 1.51 3 4 tcp 1000 ------- 0 0.0 5.0 26 232 + 1.51 4 5 tcp 1000 ------- 0 0.0 5.0 26 232 - 1.51 4 5 tcp 1000 ------- 0 0.0 5.0 26 232 + 1.51 1 3 cbr 500 ------- 1 1.0 6.0 146 276 - 1.51 1 3 cbr 500 ------- 1 1.0 6.0 146 276 r 1.51005 3 0 ack 40 ------- 0 5.0 0.0 17 251 + 1.51005 0 3 tcp 1000 ------- 0 0.0 5.0 35 277 - 1.51005 0 3 tcp 1000 ------- 0 0.0 5.0 35 277 + 1.51005 0 3 tcp 1000 ------- 0 0.0 5.0 36 278 r 1.5116 4 5 tcp 1000 ------- 0 0.0 5.0 24 229 + 1.5116 5 4 ack 40 ------- 0 5.0 0.0 24 279 - 1.5116 5 4 ack 40 ------- 0 5.0 0.0 24 279 r 1.51165 0 3 tcp 1000 ------- 0 0.0 5.0 31 269 + 1.51165 3 4 tcp 1000 ------- 0 0.0 5.0 31 269 - 1.51165 0 3 tcp 1000 ------- 0 0.0 5.0 36 278 r 1.51325 0 3 tcp 1000 ------- 0 0.0 5.0 32 270 + 1.51325 3 4 tcp 1000 ------- 0 0.0 5.0 32 270 r 1.514 1 3 cbr 500 ------- 1 1.0 6.0 144 268 + 1.514 3 4 cbr 500 ------- 1 1.0 6.0 144 268 d 1.514 3 4 cbr 500 ------- 1 1.0 6.0 144 268 - 1.516 3 4 cbr 500 ------- 1 1.0 6.0 136 250 r 1.518 3 4 tcp 1000 ------- 0 0.0 5.0 27 236 + 1.518 4 5 tcp 1000 ------- 0 0.0 5.0 27 236 - 1.518 4 5 tcp 1000 ------- 0 0.0 5.0 27 236 r 1.518 4 6 cbr 500 ------- 1 1.0 6.0 128 230 r 1.51805 3 0 ack 40 ------- 0 5.0 0.0 18 254 + 1.51805 0 3 tcp 1000 ------- 0 0.0 5.0 37 280 - 1.51805 0 3 tcp 1000 ------- 0 0.0 5.0 37 280 + 1.51805 0 3 tcp 1000 ------- 0 0.0 5.0 38 281 r 1.51965 0 3 tcp 1000 ------- 0 0.0 5.0 33 271 + 1.51965 3 4 tcp 1000 ------- 0 0.0 5.0 33 271 - 1.51965 0 3 tcp 1000 ------- 0 0.0 5.0 38 281 r 1.51966 5 4 ack 40 ------- 0 5.0 0.0 23 273 + 1.51966 4 3 ack 40 ------- 0 5.0 0.0 23 273 - 1.51966 4 3 ack 40 ------- 0 5.0 0.0 23 273 + 1.52 2 3 cbr 1000 ------- 1 2.0 7.0 71 282 - 1.52 2 3 cbr 1000 ------- 1 2.0 7.0 71 282 + 1.52 1 3 cbr 500 ------- 1 1.0 6.0 147 283 - 1.52 1 3 cbr 500 ------- 1 1.0 6.0 147 283 - 1.52 3 4 cbr 500 ------- 1 1.0 6.0 137 253 r 1.52125 0 3 tcp 1000 ------- 0 0.0 5.0 34 272 + 1.52125 3 4 tcp 1000 ------- 0 0.0 5.0 34 272 r 1.52198 4 3 ack 40 ------- 0 5.0 0.0 19 259 + 1.52198 3 0 ack 40 ------- 0 5.0 0.0 19 259 - 1.52198 3 0 ack 40 ------- 0 5.0 0.0 19 259 r 1.5236 4 5 tcp 1000 ------- 0 0.0 5.0 25 231 + 1.5236 5 4 ack 40 ------- 0 5.0 0.0 25 284 - 1.5236 5 4 ack 40 ------- 0 5.0 0.0 25 284 r 1.524 1 3 cbr 500 ------- 1 1.0 6.0 145 275 + 1.524 3 4 cbr 500 ------- 1 1.0 6.0 145 275 d 1.524 3 4 cbr 500 ------- 1 1.0 6.0 145 275 - 1.524 3 4 cbr 1000 ------- 1 2.0 7.0 66 252 r 1.526 3 4 tcp 1000 ------- 0 0.0 5.0 28 237 + 1.526 4 5 tcp 1000 ------- 0 0.0 5.0 28 237 - 1.526 4 5 tcp 1000 ------- 0 0.0 5.0 28 237 r 1.528 2 3 cbr 1000 ------- 1 2.0 7.0 70 274 + 1.528 3 4 cbr 1000 ------- 1 2.0 7.0 70 274 + 1.53 1 3 cbr 500 ------- 1 1.0 6.0 148 285 - 1.53 1 3 cbr 500 ------- 1 1.0 6.0 148 285 r 1.5316 4 5 tcp 1000 ------- 0 0.0 5.0 26 232 + 1.5316 5 4 ack 40 ------- 0 5.0 0.0 26 286 - 1.5316 5 4 ack 40 ------- 0 5.0 0.0 26 286 r 1.53165 0 3 tcp 1000 ------- 0 0.0 5.0 35 277 + 1.53165 3 4 tcp 1000 ------- 0 0.0 5.0 35 277 d 1.53165 3 4 tcp 1000 ------- 0 0.0 5.0 35 277 r 1.53166 5 4 ack 40 ------- 0 5.0 0.0 24 279 + 1.53166 4 3 ack 40 ------- 0 5.0 0.0 24 279 - 1.53166 4 3 ack 40 ------- 0 5.0 0.0 24 279 - 1.532 3 4 cbr 500 ------- 1 1.0 6.0 138 255 r 1.53325 0 3 tcp 1000 ------- 0 0.0 5.0 36 278 + 1.53325 3 4 tcp 1000 ------- 0 0.0 5.0 36 278 r 1.53398 4 3 ack 40 ------- 0 5.0 0.0 20 262 + 1.53398 3 0 ack 40 ------- 0 5.0 0.0 20 262 - 1.53398 3 0 ack 40 ------- 0 5.0 0.0 20 262 r 1.534 3 4 tcp 1000 ------- 0 0.0 5.0 30 239 + 1.534 4 5 tcp 1000 ------- 0 0.0 5.0 30 239 - 1.534 4 5 tcp 1000 ------- 0 0.0 5.0 30 239 r 1.534 1 3 cbr 500 ------- 1 1.0 6.0 146 276 + 1.534 3 4 cbr 500 ------- 1 1.0 6.0 146 276 d 1.534 3 4 cbr 500 ------- 1 1.0 6.0 146 276 - 1.536 3 4 cbr 500 ------- 1 1.0 6.0 139 257 r 1.5396 4 5 tcp 1000 ------- 0 0.0 5.0 27 236 + 1.5396 5 4 ack 40 ------- 0 5.0 0.0 27 287 - 1.5396 5 4 ack 40 ------- 0 5.0 0.0 27 287 r 1.53965 0 3 tcp 1000 ------- 0 0.0 5.0 37 280 + 1.53965 3 4 tcp 1000 ------- 0 0.0 5.0 37 280 + 1.54 2 3 cbr 1000 ------- 1 2.0 7.0 72 288 - 1.54 2 3 cbr 1000 ------- 1 2.0 7.0 72 288 + 1.54 1 3 cbr 500 ------- 1 1.0 6.0 149 289 - 1.54 1 3 cbr 500 ------- 1 1.0 6.0 149 289 - 1.54 3 4 cbr 1000 ------- 1 2.0 7.0 67 256 r 1.54125 0 3 tcp 1000 ------- 0 0.0 5.0 38 281 + 1.54125 3 4 tcp 1000 ------- 0 0.0 5.0 38 281 r 1.542 3 4 cbr 1000 ------- 1 2.0 7.0 63 240 + 1.542 4 7 cbr 1000 ------- 1 2.0 7.0 63 240 - 1.542 4 7 cbr 1000 ------- 1 2.0 7.0 63 240 r 1.54205 3 0 ack 40 ------- 0 5.0 0.0 19 259 + 1.54205 0 3 tcp 1000 ------- 0 0.0 5.0 39 290 - 1.54205 0 3 tcp 1000 ------- 0 0.0 5.0 39 290 r 1.54366 5 4 ack 40 ------- 0 5.0 0.0 25 284 + 1.54366 4 3 ack 40 ------- 0 5.0 0.0 25 284 - 1.54366 4 3 ack 40 ------- 0 5.0 0.0 25 284 r 1.544 1 3 cbr 500 ------- 1 1.0 6.0 147 283 + 1.544 3 4 cbr 500 ------- 1 1.0 6.0 147 283 d 1.544 3 4 cbr 500 ------- 1 1.0 6.0 147 283 r 1.546 3 4 cbr 500 ------- 1 1.0 6.0 132 242 + 1.546 4 6 cbr 500 ------- 1 1.0 6.0 132 242 - 1.546 4 6 cbr 500 ------- 1 1.0 6.0 132 242 r 1.5476 4 5 tcp 1000 ------- 0 0.0 5.0 28 237 + 1.5476 5 4 ack 40 ------- 0 5.0 0.0 28 291 - 1.5476 5 4 ack 40 ------- 0 5.0 0.0 28 291 r 1.548 2 3 cbr 1000 ------- 1 2.0 7.0 71 282 + 1.548 3 4 cbr 1000 ------- 1 2.0 7.0 71 282 d 1.548 3 4 cbr 1000 ------- 1 2.0 7.0 71 282 - 1.548 3 4 cbr 500 ------- 1 1.0 6.0 140 258 r 1.54998 4 3 ack 40 ------- 0 5.0 0.0 21 264 + 1.54998 3 0 ack 40 ------- 0 5.0 0.0 21 264 - 1.54998 3 0 ack 40 ------- 0 5.0 0.0 21 264 r 1.55 3 4 cbr 500 ------- 1 1.0 6.0 133 244 + 1.55 4 6 cbr 500 ------- 1 1.0 6.0 133 244 + 1.55 1 3 cbr 500 ------- 1 1.0 6.0 150 292 - 1.55 1 3 cbr 500 ------- 1 1.0 6.0 150 292 - 1.55 4 6 cbr 500 ------- 1 1.0 6.0 133 244 r 1.55166 5 4 ack 40 ------- 0 5.0 0.0 26 286 + 1.55166 4 3 ack 40 ------- 0 5.0 0.0 26 286 - 1.55166 4 3 ack 40 ------- 0 5.0 0.0 26 286 - 1.552 3 4 cbr 500 ------- 1 1.0 6.0 141 261 r 1.554 3 4 cbr 500 ------- 1 1.0 6.0 134 245 + 1.554 4 6 cbr 500 ------- 1 1.0 6.0 134 245 r 1.554 1 3 cbr 500 ------- 1 1.0 6.0 148 285 + 1.554 3 4 cbr 500 ------- 1 1.0 6.0 148 285 - 1.554 4 6 cbr 500 ------- 1 1.0 6.0 134 245 r 1.55405 3 0 ack 40 ------- 0 5.0 0.0 20 262 + 1.55405 0 3 tcp 1000 ------- 0 0.0 5.0 40 293 - 1.55405 0 3 tcp 1000 ------- 0 0.0 5.0 40 293 r 1.5556 4 5 tcp 1000 ------- 0 0.0 5.0 30 239 + 1.5556 5 4 ack 40 ------- 0 5.0 0.0 28 294 - 1.5556 5 4 ack 40 ------- 0 5.0 0.0 28 294 - 1.556 3 4 cbr 1000 ------- 1 2.0 7.0 68 260 r 1.55798 4 3 ack 40 ------- 0 5.0 0.0 22 267 + 1.55798 3 0 ack 40 ------- 0 5.0 0.0 22 267 - 1.55798 3 0 ack 40 ------- 0 5.0 0.0 22 267 r 1.558 3 4 cbr 500 ------- 1 1.0 6.0 135 248 + 1.558 4 6 cbr 500 ------- 1 1.0 6.0 135 248 - 1.558 4 6 cbr 500 ------- 1 1.0 6.0 135 248 r 1.55966 5 4 ack 40 ------- 0 5.0 0.0 27 287 + 1.55966 4 3 ack 40 ------- 0 5.0 0.0 27 287 - 1.55966 4 3 ack 40 ------- 0 5.0 0.0 27 287 + 1.56 2 3 cbr 1000 ------- 1 2.0 7.0 73 295 - 1.56 2 3 cbr 1000 ------- 1 2.0 7.0 73 295 + 1.56 1 3 cbr 500 ------- 1 1.0 6.0 151 296 - 1.56 1 3 cbr 500 ------- 1 1.0 6.0 151 296 r 1.56365 0 3 tcp 1000 ------- 0 0.0 5.0 39 290 + 1.56365 3 4 tcp 1000 ------- 0 0.0 5.0 39 290 r 1.564 1 3 cbr 500 ------- 1 1.0 6.0 149 289 + 1.564 3 4 cbr 500 ------- 1 1.0 6.0 149 289 - 1.564 3 4 cbr 500 ------- 1 1.0 6.0 142 263 r 1.566 3 4 cbr 1000 ------- 1 2.0 7.0 65 247 + 1.566 4 7 cbr 1000 ------- 1 2.0 7.0 65 247 - 1.566 4 7 cbr 1000 ------- 1 2.0 7.0 65 247 r 1.56766 5 4 ack 40 ------- 0 5.0 0.0 28 291 + 1.56766 4 3 ack 40 ------- 0 5.0 0.0 28 291 - 1.56766 4 3 ack 40 ------- 0 5.0 0.0 28 291 r 1.568 2 3 cbr 1000 ------- 1 2.0 7.0 72 288 + 1.568 3 4 cbr 1000 ------- 1 2.0 7.0 72 288 - 1.568 3 4 cbr 500 ------- 1 1.0 6.0 143 266 r 1.56998 4 3 ack 40 ------- 0 5.0 0.0 23 273 + 1.56998 3 0 ack 40 ------- 0 5.0 0.0 23 273 - 1.56998 3 0 ack 40 ------- 0 5.0 0.0 23 273 r 1.57 3 4 cbr 500 ------- 1 1.0 6.0 136 250 + 1.57 4 6 cbr 500 ------- 1 1.0 6.0 136 250 - 1.57 4 6 cbr 500 ------- 1 1.0 6.0 136 250 r 1.57 4 7 cbr 1000 ------- 1 2.0 7.0 63 240 r 1.57 4 6 cbr 500 ------- 1 1.0 6.0 132 242 + 1.57 1 3 cbr 500 ------- 1 1.0 6.0 152 297 - 1.57 1 3 cbr 500 ------- 1 1.0 6.0 152 297 r 1.57005 3 0 ack 40 ------- 0 5.0 0.0 21 264 + 1.57005 0 3 tcp 1000 ------- 0 0.0 5.0 41 298 - 1.57005 0 3 tcp 1000 ------- 0 0.0 5.0 41 298 - 1.572 3 4 cbr 1000 ------- 1 2.0 7.0 69 265 r 1.574 3 4 cbr 500 ------- 1 1.0 6.0 137 253 + 1.574 4 6 cbr 500 ------- 1 1.0 6.0 137 253 r 1.574 1 3 cbr 500 ------- 1 1.0 6.0 150 292 + 1.574 3 4 cbr 500 ------- 1 1.0 6.0 150 292 r 1.574 4 6 cbr 500 ------- 1 1.0 6.0 133 244 - 1.574 4 6 cbr 500 ------- 1 1.0 6.0 137 253 r 1.57565 0 3 tcp 1000 ------- 0 0.0 5.0 40 293 + 1.57565 3 4 tcp 1000 ------- 0 0.0 5.0 40 293 r 1.57566 5 4 ack 40 ------- 0 5.0 0.0 28 294 + 1.57566 4 3 ack 40 ------- 0 5.0 0.0 28 294 - 1.57566 4 3 ack 40 ------- 0 5.0 0.0 28 294 r 1.578 4 6 cbr 500 ------- 1 1.0 6.0 134 245 r 1.57805 3 0 ack 40 ------- 0 5.0 0.0 22 267 + 1.57805 0 3 tcp 1000 ------- 0 0.0 5.0 42 299 - 1.57805 0 3 tcp 1000 ------- 0 0.0 5.0 42 299 + 1.58 2 3 cbr 1000 ------- 1 2.0 7.0 74 300 - 1.58 2 3 cbr 1000 ------- 1 2.0 7.0 74 300 + 1.58 1 3 cbr 500 ------- 1 1.0 6.0 153 301 - 1.58 1 3 cbr 500 ------- 1 1.0 6.0 153 301 - 1.58 3 4 tcp 1000 ------- 0 0.0 5.0 31 269 r 1.58198 4 3 ack 40 ------- 0 5.0 0.0 24 279 + 1.58198 3 0 ack 40 ------- 0 5.0 0.0 24 279 - 1.58198 3 0 ack 40 ------- 0 5.0 0.0 24 279 r 1.582 3 4 cbr 1000 ------- 1 2.0 7.0 66 252 + 1.582 4 7 cbr 1000 ------- 1 2.0 7.0 66 252 - 1.582 4 7 cbr 1000 ------- 1 2.0 7.0 66 252 r 1.582 4 6 cbr 500 ------- 1 1.0 6.0 135 248 r 1.584 1 3 cbr 500 ------- 1 1.0 6.0 151 296 + 1.584 3 4 cbr 500 ------- 1 1.0 6.0 151 296 r 1.586 3 4 cbr 500 ------- 1 1.0 6.0 138 255 + 1.586 4 6 cbr 500 ------- 1 1.0 6.0 138 255 - 1.586 4 6 cbr 500 ------- 1 1.0 6.0 138 255 r 1.588 2 3 cbr 1000 ------- 1 2.0 7.0 73 295 + 1.588 3 4 cbr 1000 ------- 1 2.0 7.0 73 295 d 1.588 3 4 cbr 1000 ------- 1 2.0 7.0 73 295 - 1.588 3 4 tcp 1000 ------- 0 0.0 5.0 32 270 r 1.59 3 4 cbr 500 ------- 1 1.0 6.0 139 257 + 1.59 4 6 cbr 500 ------- 1 1.0 6.0 139 257 + 1.59 1 3 cbr 500 ------- 1 1.0 6.0 154 302 - 1.59 1 3 cbr 500 ------- 1 1.0 6.0 154 302 - 1.59 4 6 cbr 500 ------- 1 1.0 6.0 139 257 r 1.59005 3 0 ack 40 ------- 0 5.0 0.0 23 273 + 1.59005 0 3 tcp 1000 ------- 0 0.0 5.0 43 303 - 1.59005 0 3 tcp 1000 ------- 0 0.0 5.0 43 303 r 1.59165 0 3 tcp 1000 ------- 0 0.0 5.0 41 298 + 1.59165 3 4 tcp 1000 ------- 0 0.0 5.0 41 298 r 1.59398 4 3 ack 40 ------- 0 5.0 0.0 25 284 + 1.59398 3 0 ack 40 ------- 0 5.0 0.0 25 284 - 1.59398 3 0 ack 40 ------- 0 5.0 0.0 25 284 r 1.594 4 7 cbr 1000 ------- 1 2.0 7.0 65 247 r 1.594 4 6 cbr 500 ------- 1 1.0 6.0 136 250 r 1.594 1 3 cbr 500 ------- 1 1.0 6.0 152 297 + 1.594 3 4 cbr 500 ------- 1 1.0 6.0 152 297 d 1.594 3 4 cbr 500 ------- 1 1.0 6.0 152 297 - 1.596 3 4 tcp 1000 ------- 0 0.0 5.0 33 271 r 1.598 3 4 cbr 1000 ------- 1 2.0 7.0 67 256 + 1.598 4 7 cbr 1000 ------- 1 2.0 7.0 67 256 - 1.598 4 7 cbr 1000 ------- 1 2.0 7.0 67 256 r 1.598 4 6 cbr 500 ------- 1 1.0 6.0 137 253 r 1.59965 0 3 tcp 1000 ------- 0 0.0 5.0 42 299 + 1.59965 3 4 tcp 1000 ------- 0 0.0 5.0 42 299 + 1.6 2 3 cbr 1000 ------- 1 2.0 7.0 75 304 - 1.6 2 3 cbr 1000 ------- 1 2.0 7.0 75 304 + 1.6 1 3 cbr 500 ------- 1 1.0 6.0 155 305 - 1.6 1 3 cbr 500 ------- 1 1.0 6.0 155 305 r 1.60198 4 3 ack 40 ------- 0 5.0 0.0 26 286 + 1.60198 3 0 ack 40 ------- 0 5.0 0.0 26 286 - 1.60198 3 0 ack 40 ------- 0 5.0 0.0 26 286 r 1.602 3 4 cbr 500 ------- 1 1.0 6.0 140 258 + 1.602 4 6 cbr 500 ------- 1 1.0 6.0 140 258 - 1.602 4 6 cbr 500 ------- 1 1.0 6.0 140 258 r 1.60205 3 0 ack 40 ------- 0 5.0 0.0 24 279 + 1.60205 0 3 tcp 1000 ------- 0 0.0 5.0 44 306 - 1.60205 0 3 tcp 1000 ------- 0 0.0 5.0 44 306 r 1.604 1 3 cbr 500 ------- 1 1.0 6.0 153 301 + 1.604 3 4 cbr 500 ------- 1 1.0 6.0 153 301 d 1.604 3 4 cbr 500 ------- 1 1.0 6.0 153 301 - 1.604 3 4 tcp 1000 ------- 0 0.0 5.0 34 272 r 1.606 3 4 cbr 500 ------- 1 1.0 6.0 141 261 + 1.606 4 6 cbr 500 ------- 1 1.0 6.0 141 261 - 1.606 4 6 cbr 500 ------- 1 1.0 6.0 141 261 r 1.608 2 3 cbr 1000 ------- 1 2.0 7.0 74 300 + 1.608 3 4 cbr 1000 ------- 1 2.0 7.0 74 300 r 1.60998 4 3 ack 40 ------- 0 5.0 0.0 27 287 + 1.60998 3 0 ack 40 ------- 0 5.0 0.0 27 287 - 1.60998 3 0 ack 40 ------- 0 5.0 0.0 27 287 r 1.61 4 7 cbr 1000 ------- 1 2.0 7.0 66 252 r 1.61 4 6 cbr 500 ------- 1 1.0 6.0 138 255 + 1.61 1 3 cbr 500 ------- 1 1.0 6.0 156 307 - 1.61 1 3 cbr 500 ------- 1 1.0 6.0 156 307 r 1.61165 0 3 tcp 1000 ------- 0 0.0 5.0 43 303 + 1.61165 3 4 tcp 1000 ------- 0 0.0 5.0 43 303 d 1.61165 3 4 tcp 1000 ------- 0 0.0 5.0 43 303 - 1.612 3 4 cbr 1000 ------- 1 2.0 7.0 70 274 r 1.614 3 4 cbr 1000 ------- 1 2.0 7.0 68 260 + 1.614 4 7 cbr 1000 ------- 1 2.0 7.0 68 260 - 1.614 4 7 cbr 1000 ------- 1 2.0 7.0 68 260 r 1.614 1 3 cbr 500 ------- 1 1.0 6.0 154 302 + 1.614 3 4 cbr 500 ------- 1 1.0 6.0 154 302 r 1.614 4 6 cbr 500 ------- 1 1.0 6.0 139 257 r 1.61405 3 0 ack 40 ------- 0 5.0 0.0 25 284 + 1.61405 0 3 tcp 1000 ------- 0 0.0 5.0 45 308 - 1.61405 0 3 tcp 1000 ------- 0 0.0 5.0 45 308 r 1.61798 4 3 ack 40 ------- 0 5.0 0.0 28 291 + 1.61798 3 0 ack 40 ------- 0 5.0 0.0 28 291 - 1.61798 3 0 ack 40 ------- 0 5.0 0.0 28 291 r 1.618 3 4 cbr 500 ------- 1 1.0 6.0 142 263 + 1.618 4 6 cbr 500 ------- 1 1.0 6.0 142 263 - 1.618 4 6 cbr 500 ------- 1 1.0 6.0 142 263 + 1.62 2 3 cbr 1000 ------- 1 2.0 7.0 76 309 - 1.62 2 3 cbr 1000 ------- 1 2.0 7.0 76 309 + 1.62 1 3 cbr 500 ------- 1 1.0 6.0 157 310 - 1.62 1 3 cbr 500 ------- 1 1.0 6.0 157 310 - 1.62 3 4 tcp 1000 ------- 0 0.0 5.0 36 278 r 1.622 3 4 cbr 500 ------- 1 1.0 6.0 143 266 + 1.622 4 6 cbr 500 ------- 1 1.0 6.0 143 266 - 1.622 4 6 cbr 500 ------- 1 1.0 6.0 143 266 r 1.62205 3 0 ack 40 ------- 0 5.0 0.0 26 286 + 1.62205 0 3 tcp 1000 ------- 0 0.0 5.0 46 311 - 1.62205 0 3 tcp 1000 ------- 0 0.0 5.0 46 311 r 1.62365 0 3 tcp 1000 ------- 0 0.0 5.0 44 306 + 1.62365 3 4 tcp 1000 ------- 0 0.0 5.0 44 306 r 1.624 1 3 cbr 500 ------- 1 1.0 6.0 155 305 + 1.624 3 4 cbr 500 ------- 1 1.0 6.0 155 305 d 1.624 3 4 cbr 500 ------- 1 1.0 6.0 155 305 r 1.62598 4 3 ack 40 ------- 0 5.0 0.0 28 294 + 1.62598 3 0 ack 40 ------- 0 5.0 0.0 28 294 - 1.62598 3 0 ack 40 ------- 0 5.0 0.0 28 294 r 1.626 4 7 cbr 1000 ------- 1 2.0 7.0 67 256 r 1.626 4 6 cbr 500 ------- 1 1.0 6.0 140 258 r 1.628 2 3 cbr 1000 ------- 1 2.0 7.0 75 304 + 1.628 3 4 cbr 1000 ------- 1 2.0 7.0 75 304 d 1.628 3 4 cbr 1000 ------- 1 2.0 7.0 75 304 - 1.628 3 4 tcp 1000 ------- 0 0.0 5.0 37 280 r 1.63 3 4 cbr 1000 ------- 1 2.0 7.0 69 265 + 1.63 4 7 cbr 1000 ------- 1 2.0 7.0 69 265 - 1.63 4 7 cbr 1000 ------- 1 2.0 7.0 69 265 r 1.63 4 6 cbr 500 ------- 1 1.0 6.0 141 261 + 1.63 1 3 cbr 500 ------- 1 1.0 6.0 158 312 - 1.63 1 3 cbr 500 ------- 1 1.0 6.0 158 312 r 1.63005 3 0 ack 40 ------- 0 5.0 0.0 27 287 + 1.63005 0 3 tcp 1000 ------- 0 0.0 5.0 47 313 - 1.63005 0 3 tcp 1000 ------- 0 0.0 5.0 47 313 r 1.634 1 3 cbr 500 ------- 1 1.0 6.0 156 307 + 1.634 3 4 cbr 500 ------- 1 1.0 6.0 156 307 r 1.63565 0 3 tcp 1000 ------- 0 0.0 5.0 45 308 + 1.63565 3 4 tcp 1000 ------- 0 0.0 5.0 45 308 d 1.63565 3 4 tcp 1000 ------- 0 0.0 5.0 45 308 - 1.636 3 4 tcp 1000 ------- 0 0.0 5.0 38 281 r 1.638 3 4 tcp 1000 ------- 0 0.0 5.0 31 269 + 1.638 4 5 tcp 1000 ------- 0 0.0 5.0 31 269 - 1.638 4 5 tcp 1000 ------- 0 0.0 5.0 31 269 r 1.63805 3 0 ack 40 ------- 0 5.0 0.0 28 291 + 1.63805 0 3 tcp 1000 ------- 0 0.0 5.0 48 314 - 1.63805 0 3 tcp 1000 ------- 0 0.0 5.0 48 314 + 1.64 2 3 cbr 1000 ------- 1 2.0 7.0 77 315 - 1.64 2 3 cbr 1000 ------- 1 2.0 7.0 77 315 + 1.64 1 3 cbr 500 ------- 1 1.0 6.0 159 316 - 1.64 1 3 cbr 500 ------- 1 1.0 6.0 159 316 r 1.642 4 7 cbr 1000 ------- 1 2.0 7.0 68 260 r 1.642 4 6 cbr 500 ------- 1 1.0 6.0 142 263 r 1.64365 0 3 tcp 1000 ------- 0 0.0 5.0 46 311 + 1.64365 3 4 tcp 1000 ------- 0 0.0 5.0 46 311 r 1.644 1 3 cbr 500 ------- 1 1.0 6.0 157 310 + 1.644 3 4 cbr 500 ------- 1 1.0 6.0 157 310 d 1.644 3 4 cbr 500 ------- 1 1.0 6.0 157 310 - 1.644 3 4 cbr 500 ------- 1 1.0 6.0 148 285 r 1.646 3 4 tcp 1000 ------- 0 0.0 5.0 32 270 + 1.646 4 5 tcp 1000 ------- 0 0.0 5.0 32 270 - 1.646 4 5 tcp 1000 ------- 0 0.0 5.0 32 270 r 1.646 4 6 cbr 500 ------- 1 1.0 6.0 143 266 r 1.64605 3 0 ack 40 ------- 0 5.0 0.0 28 294 r 1.648 2 3 cbr 1000 ------- 1 2.0 7.0 76 309 + 1.648 3 4 cbr 1000 ------- 1 2.0 7.0 76 309 - 1.648 3 4 tcp 1000 ------- 0 0.0 5.0 39 290 + 1.65 1 3 cbr 500 ------- 1 1.0 6.0 160 317 - 1.65 1 3 cbr 500 ------- 1 1.0 6.0 160 317 r 1.65165 0 3 tcp 1000 ------- 0 0.0 5.0 47 313 + 1.65165 3 4 tcp 1000 ------- 0 0.0 5.0 47 313 r 1.654 3 4 tcp 1000 ------- 0 0.0 5.0 33 271 + 1.654 4 5 tcp 1000 ------- 0 0.0 5.0 33 271 - 1.654 4 5 tcp 1000 ------- 0 0.0 5.0 33 271 r 1.654 1 3 cbr 500 ------- 1 1.0 6.0 158 312 + 1.654 3 4 cbr 500 ------- 1 1.0 6.0 158 312 d 1.654 3 4 cbr 500 ------- 1 1.0 6.0 158 312 - 1.656 3 4 cbr 500 ------- 1 1.0 6.0 149 289 r 1.658 4 7 cbr 1000 ------- 1 2.0 7.0 69 265 r 1.6596 4 5 tcp 1000 ------- 0 0.0 5.0 31 269 + 1.6596 5 4 ack 40 ------- 0 5.0 0.0 28 318 - 1.6596 5 4 ack 40 ------- 0 5.0 0.0 28 318 r 1.65965 0 3 tcp 1000 ------- 0 0.0 5.0 48 314 + 1.65965 3 4 tcp 1000 ------- 0 0.0 5.0 48 314 + 1.66 2 3 cbr 1000 ------- 1 2.0 7.0 78 319 - 1.66 2 3 cbr 1000 ------- 1 2.0 7.0 78 319 + 1.66 1 3 cbr 500 ------- 1 1.0 6.0 161 320 - 1.66 1 3 cbr 500 ------- 1 1.0 6.0 161 320 - 1.66 3 4 cbr 1000 ------- 1 2.0 7.0 72 288 r 1.662 3 4 tcp 1000 ------- 0 0.0 5.0 34 272 + 1.662 4 5 tcp 1000 ------- 0 0.0 5.0 34 272 - 1.662 4 5 tcp 1000 ------- 0 0.0 5.0 34 272 r 1.664 1 3 cbr 500 ------- 1 1.0 6.0 159 316 + 1.664 3 4 cbr 500 ------- 1 1.0 6.0 159 316 r 1.6676 4 5 tcp 1000 ------- 0 0.0 5.0 32 270 + 1.6676 5 4 ack 40 ------- 0 5.0 0.0 28 321 - 1.6676 5 4 ack 40 ------- 0 5.0 0.0 28 321 r 1.668 2 3 cbr 1000 ------- 1 2.0 7.0 77 315 + 1.668 3 4 cbr 1000 ------- 1 2.0 7.0 77 315 d 1.668 3 4 cbr 1000 ------- 1 2.0 7.0 77 315 - 1.668 3 4 cbr 500 ------- 1 1.0 6.0 150 292 r 1.67 3 4 cbr 1000 ------- 1 2.0 7.0 70 274 + 1.67 4 7 cbr 1000 ------- 1 2.0 7.0 70 274 - 1.67 4 7 cbr 1000 ------- 1 2.0 7.0 70 274 + 1.67 1 3 cbr 500 ------- 1 1.0 6.0 162 322 - 1.67 1 3 cbr 500 ------- 1 1.0 6.0 162 322 - 1.672 3 4 tcp 1000 ------- 0 0.0 5.0 40 293 r 1.674 1 3 cbr 500 ------- 1 1.0 6.0 160 317 + 1.674 3 4 cbr 500 ------- 1 1.0 6.0 160 317 r 1.6756 4 5 tcp 1000 ------- 0 0.0 5.0 33 271 + 1.6756 5 4 ack 40 ------- 0 5.0 0.0 28 323 - 1.6756 5 4 ack 40 ------- 0 5.0 0.0 28 323 r 1.678 3 4 tcp 1000 ------- 0 0.0 5.0 36 278 + 1.678 4 5 tcp 1000 ------- 0 0.0 5.0 36 278 - 1.678 4 5 tcp 1000 ------- 0 0.0 5.0 36 278 r 1.67966 5 4 ack 40 ------- 0 5.0 0.0 28 318 + 1.67966 4 3 ack 40 ------- 0 5.0 0.0 28 318 - 1.67966 4 3 ack 40 ------- 0 5.0 0.0 28 318 + 1.68 2 3 cbr 1000 ------- 1 2.0 7.0 79 324 - 1.68 2 3 cbr 1000 ------- 1 2.0 7.0 79 324 + 1.68 1 3 cbr 500 ------- 1 1.0 6.0 163 325 - 1.68 1 3 cbr 500 ------- 1 1.0 6.0 163 325 - 1.68 3 4 cbr 500 ------- 1 1.0 6.0 151 296 r 1.6836 4 5 tcp 1000 ------- 0 0.0 5.0 34 272 + 1.6836 5 4 ack 40 ------- 0 5.0 0.0 28 326 - 1.6836 5 4 ack 40 ------- 0 5.0 0.0 28 326 r 1.684 1 3 cbr 500 ------- 1 1.0 6.0 161 320 + 1.684 3 4 cbr 500 ------- 1 1.0 6.0 161 320 - 1.684 3 4 tcp 1000 ------- 0 0.0 5.0 41 298 r 1.686 3 4 tcp 1000 ------- 0 0.0 5.0 37 280 + 1.686 4 5 tcp 1000 ------- 0 0.0 5.0 37 280 - 1.686 4 5 tcp 1000 ------- 0 0.0 5.0 37 280 r 1.68766 5 4 ack 40 ------- 0 5.0 0.0 28 321 + 1.68766 4 3 ack 40 ------- 0 5.0 0.0 28 321 - 1.68766 4 3 ack 40 ------- 0 5.0 0.0 28 321 r 1.688 2 3 cbr 1000 ------- 1 2.0 7.0 78 319 + 1.688 3 4 cbr 1000 ------- 1 2.0 7.0 78 319 + 1.69 1 3 cbr 500 ------- 1 1.0 6.0 164 327 - 1.69 1 3 cbr 500 ------- 1 1.0 6.0 164 327 - 1.692 3 4 tcp 1000 ------- 0 0.0 5.0 42 299 r 1.694 3 4 tcp 1000 ------- 0 0.0 5.0 38 281 + 1.694 4 5 tcp 1000 ------- 0 0.0 5.0 38 281 - 1.694 4 5 tcp 1000 ------- 0 0.0 5.0 38 281 r 1.694 1 3 cbr 500 ------- 1 1.0 6.0 162 322 + 1.694 3 4 cbr 500 ------- 1 1.0 6.0 162 322 r 1.69566 5 4 ack 40 ------- 0 5.0 0.0 28 323 + 1.69566 4 3 ack 40 ------- 0 5.0 0.0 28 323 - 1.69566 4 3 ack 40 ------- 0 5.0 0.0 28 323 r 1.698 3 4 cbr 500 ------- 1 1.0 6.0 148 285 + 1.698 4 6 cbr 500 ------- 1 1.0 6.0 148 285 - 1.698 4 6 cbr 500 ------- 1 1.0 6.0 148 285 r 1.698 4 7 cbr 1000 ------- 1 2.0 7.0 70 274 r 1.6996 4 5 tcp 1000 ------- 0 0.0 5.0 36 278 + 1.6996 5 4 ack 40 ------- 0 5.0 0.0 28 328 - 1.6996 5 4 ack 40 ------- 0 5.0 0.0 28 328 + 1.7 2 3 cbr 1000 ------- 1 2.0 7.0 80 329 - 1.7 2 3 cbr 1000 ------- 1 2.0 7.0 80 329 + 1.7 1 3 cbr 500 ------- 1 1.0 6.0 165 330 - 1.7 1 3 cbr 500 ------- 1 1.0 6.0 165 330 - 1.7 3 4 cbr 1000 ------- 1 2.0 7.0 74 300 r 1.70366 5 4 ack 40 ------- 0 5.0 0.0 28 326 + 1.70366 4 3 ack 40 ------- 0 5.0 0.0 28 326 - 1.70366 4 3 ack 40 ------- 0 5.0 0.0 28 326 r 1.704 1 3 cbr 500 ------- 1 1.0 6.0 163 325 + 1.704 3 4 cbr 500 ------- 1 1.0 6.0 163 325 r 1.706 3 4 tcp 1000 ------- 0 0.0 5.0 39 290 + 1.706 4 5 tcp 1000 ------- 0 0.0 5.0 39 290 - 1.706 4 5 tcp 1000 ------- 0 0.0 5.0 39 290 r 1.7076 4 5 tcp 1000 ------- 0 0.0 5.0 37 280 + 1.7076 5 4 ack 40 ------- 0 5.0 0.0 28 331 - 1.7076 5 4 ack 40 ------- 0 5.0 0.0 28 331 r 1.708 2 3 cbr 1000 ------- 1 2.0 7.0 79 324 + 1.708 3 4 cbr 1000 ------- 1 2.0 7.0 79 324 - 1.708 3 4 cbr 500 ------- 1 1.0 6.0 154 302 r 1.71 3 4 cbr 500 ------- 1 1.0 6.0 149 289 + 1.71 4 6 cbr 500 ------- 1 1.0 6.0 149 289 - 1.71 4 6 cbr 500 ------- 1 1.0 6.0 149 289 + 1.71 1 3 cbr 500 ------- 1 1.0 6.0 166 332 - 1.71 1 3 cbr 500 ------- 1 1.0 6.0 166 332 - 1.712 3 4 tcp 1000 ------- 0 0.0 5.0 44 306 r 1.714 1 3 cbr 500 ------- 1 1.0 6.0 164 327 + 1.714 3 4 cbr 500 ------- 1 1.0 6.0 164 327 r 1.7156 4 5 tcp 1000 ------- 0 0.0 5.0 38 281 + 1.7156 5 4 ack 40 ------- 0 5.0 0.0 28 333 - 1.7156 5 4 ack 40 ------- 0 5.0 0.0 28 333 r 1.718 3 4 cbr 1000 ------- 1 2.0 7.0 72 288 + 1.718 4 7 cbr 1000 ------- 1 2.0 7.0 72 288 - 1.718 4 7 cbr 1000 ------- 1 2.0 7.0 72 288 r 1.71966 5 4 ack 40 ------- 0 5.0 0.0 28 328 + 1.71966 4 3 ack 40 ------- 0 5.0 0.0 28 328 - 1.71966 4 3 ack 40 ------- 0 5.0 0.0 28 328 + 1.72 2 3 cbr 1000 ------- 1 2.0 7.0 81 334 - 1.72 2 3 cbr 1000 ------- 1 2.0 7.0 81 334 + 1.72 1 3 cbr 500 ------- 1 1.0 6.0 167 335 - 1.72 1 3 cbr 500 ------- 1 1.0 6.0 167 335 - 1.72 3 4 cbr 500 ------- 1 1.0 6.0 156 307 r 1.722 3 4 cbr 500 ------- 1 1.0 6.0 150 292 + 1.722 4 6 cbr 500 ------- 1 1.0 6.0 150 292 - 1.722 4 6 cbr 500 ------- 1 1.0 6.0 150 292 r 1.722 4 6 cbr 500 ------- 1 1.0 6.0 148 285 r 1.724 1 3 cbr 500 ------- 1 1.0 6.0 165 330 + 1.724 3 4 cbr 500 ------- 1 1.0 6.0 165 330 - 1.724 3 4 tcp 1000 ------- 0 0.0 5.0 46 311 r 1.7276 4 5 tcp 1000 ------- 0 0.0 5.0 39 290 + 1.7276 5 4 ack 40 ------- 0 5.0 0.0 28 336 - 1.7276 5 4 ack 40 ------- 0 5.0 0.0 28 336 r 1.72766 5 4 ack 40 ------- 0 5.0 0.0 28 331 + 1.72766 4 3 ack 40 ------- 0 5.0 0.0 28 331 - 1.72766 4 3 ack 40 ------- 0 5.0 0.0 28 331 r 1.728 2 3 cbr 1000 ------- 1 2.0 7.0 80 329 + 1.728 3 4 cbr 1000 ------- 1 2.0 7.0 80 329 r 1.72998 4 3 ack 40 ------- 0 5.0 0.0 28 318 + 1.72998 3 0 ack 40 ------- 0 5.0 0.0 28 318 - 1.72998 3 0 ack 40 ------- 0 5.0 0.0 28 318 r 1.73 3 4 tcp 1000 ------- 0 0.0 5.0 40 293 + 1.73 4 5 tcp 1000 ------- 0 0.0 5.0 40 293 - 1.73 4 5 tcp 1000 ------- 0 0.0 5.0 40 293 + 1.73 1 3 cbr 500 ------- 1 1.0 6.0 168 337 - 1.73 1 3 cbr 500 ------- 1 1.0 6.0 168 337 - 1.732 3 4 cbr 1000 ------- 1 2.0 7.0 76 309 r 1.734 3 4 cbr 500 ------- 1 1.0 6.0 151 296 + 1.734 4 6 cbr 500 ------- 1 1.0 6.0 151 296 - 1.734 4 6 cbr 500 ------- 1 1.0 6.0 151 296 r 1.734 4 6 cbr 500 ------- 1 1.0 6.0 149 289 r 1.734 1 3 cbr 500 ------- 1 1.0 6.0 166 332 + 1.734 3 4 cbr 500 ------- 1 1.0 6.0 166 332 r 1.73566 5 4 ack 40 ------- 0 5.0 0.0 28 333 + 1.73566 4 3 ack 40 ------- 0 5.0 0.0 28 333 - 1.73566 4 3 ack 40 ------- 0 5.0 0.0 28 333 r 1.73798 4 3 ack 40 ------- 0 5.0 0.0 28 321 + 1.73798 3 0 ack 40 ------- 0 5.0 0.0 28 321 - 1.73798 3 0 ack 40 ------- 0 5.0 0.0 28 321 + 1.74 2 3 cbr 1000 ------- 1 2.0 7.0 82 338 - 1.74 2 3 cbr 1000 ------- 1 2.0 7.0 82 338 + 1.74 1 3 cbr 500 ------- 1 1.0 6.0 169 339 - 1.74 1 3 cbr 500 ------- 1 1.0 6.0 169 339 - 1.74 3 4 tcp 1000 ------- 0 0.0 5.0 47 313 r 1.742 3 4 tcp 1000 ------- 0 0.0 5.0 41 298 + 1.742 4 5 tcp 1000 ------- 0 0.0 5.0 41 298 - 1.742 4 5 tcp 1000 ------- 0 0.0 5.0 41 298 r 1.744 1 3 cbr 500 ------- 1 1.0 6.0 167 335 + 1.744 3 4 cbr 500 ------- 1 1.0 6.0 167 335 r 1.74598 4 3 ack 40 ------- 0 5.0 0.0 28 323 + 1.74598 3 0 ack 40 ------- 0 5.0 0.0 28 323 - 1.74598 3 0 ack 40 ------- 0 5.0 0.0 28 323 r 1.746 4 7 cbr 1000 ------- 1 2.0 7.0 72 288 r 1.746 4 6 cbr 500 ------- 1 1.0 6.0 150 292 r 1.74766 5 4 ack 40 ------- 0 5.0 0.0 28 336 + 1.74766 4 3 ack 40 ------- 0 5.0 0.0 28 336 - 1.74766 4 3 ack 40 ------- 0 5.0 0.0 28 336 r 1.748 2 3 cbr 1000 ------- 1 2.0 7.0 81 334 + 1.748 3 4 cbr 1000 ------- 1 2.0 7.0 81 334 - 1.748 3 4 tcp 1000 ------- 0 0.0 5.0 48 314 r 1.75 3 4 tcp 1000 ------- 0 0.0 5.0 42 299 + 1.75 4 5 tcp 1000 ------- 0 0.0 5.0 42 299 - 1.75 4 5 tcp 1000 ------- 0 0.0 5.0 42 299 + 1.75 1 3 cbr 500 ------- 1 1.0 6.0 170 340 - 1.75 1 3 cbr 500 ------- 1 1.0 6.0 170 340 r 1.75005 3 0 ack 40 ------- 0 5.0 0.0 28 318 r 1.7516 4 5 tcp 1000 ------- 0 0.0 5.0 40 293 + 1.7516 5 4 ack 40 ------- 0 5.0 0.0 28 341 - 1.7516 5 4 ack 40 ------- 0 5.0 0.0 28 341 r 1.75398 4 3 ack 40 ------- 0 5.0 0.0 28 326 + 1.75398 3 0 ack 40 ------- 0 5.0 0.0 28 326 - 1.75398 3 0 ack 40 ------- 0 5.0 0.0 28 326 r 1.754 1 3 cbr 500 ------- 1 1.0 6.0 168 337 + 1.754 3 4 cbr 500 ------- 1 1.0 6.0 168 337 - 1.756 3 4 cbr 500 ------- 1 1.0 6.0 159 316 r 1.758 3 4 cbr 1000 ------- 1 2.0 7.0 74 300 + 1.758 4 7 cbr 1000 ------- 1 2.0 7.0 74 300 - 1.758 4 7 cbr 1000 ------- 1 2.0 7.0 74 300 r 1.758 4 6 cbr 500 ------- 1 1.0 6.0 151 296 r 1.75805 3 0 ack 40 ------- 0 5.0 0.0 28 321 + 1.75805 0 3 tcp 1000 ---A--- 0 0.0 5.0 29 342 - 1.75805 0 3 tcp 1000 ---A--- 0 0.0 5.0 29 342 + 1.76 2 3 cbr 1000 ------- 1 2.0 7.0 83 343 - 1.76 2 3 cbr 1000 ------- 1 2.0 7.0 83 343 + 1.76 1 3 cbr 500 ------- 1 1.0 6.0 171 344 - 1.76 1 3 cbr 500 ------- 1 1.0 6.0 171 344 - 1.76 3 4 cbr 500 ------- 1 1.0 6.0 160 317 r 1.762 3 4 cbr 500 ------- 1 1.0 6.0 154 302 + 1.762 4 6 cbr 500 ------- 1 1.0 6.0 154 302 - 1.762 4 6 cbr 500 ------- 1 1.0 6.0 154 302 r 1.7636 4 5 tcp 1000 ------- 0 0.0 5.0 41 298 + 1.7636 5 4 ack 40 ------- 0 5.0 0.0 28 345 - 1.7636 5 4 ack 40 ------- 0 5.0 0.0 28 345 r 1.764 1 3 cbr 500 ------- 1 1.0 6.0 169 339 + 1.764 3 4 cbr 500 ------- 1 1.0 6.0 169 339 - 1.764 3 4 cbr 500 ------- 1 1.0 6.0 161 320 r 1.76605 3 0 ack 40 ------- 0 5.0 0.0 28 323 r 1.768 2 3 cbr 1000 ------- 1 2.0 7.0 82 338 + 1.768 3 4 cbr 1000 ------- 1 2.0 7.0 82 338 - 1.768 3 4 cbr 1000 ------- 1 2.0 7.0 78 319 r 1.76998 4 3 ack 40 ------- 0 5.0 0.0 28 328 + 1.76998 3 0 ack 40 ------- 0 5.0 0.0 28 328 - 1.76998 3 0 ack 40 ------- 0 5.0 0.0 28 328 r 1.77 3 4 tcp 1000 ------- 0 0.0 5.0 44 306 + 1.77 4 5 tcp 1000 ------- 0 0.0 5.0 44 306 - 1.77 4 5 tcp 1000 ------- 0 0.0 5.0 44 306 + 1.77 1 3 cbr 500 ------- 1 1.0 6.0 172 346 - 1.77 1 3 cbr 500 ------- 1 1.0 6.0 172 346 r 1.7716 4 5 tcp 1000 ------- 0 0.0 5.0 42 299 + 1.7716 5 4 ack 40 ------- 0 5.0 0.0 28 347 - 1.7716 5 4 ack 40 ------- 0 5.0 0.0 28 347 r 1.77166 5 4 ack 40 ------- 0 5.0 0.0 28 341 + 1.77166 4 3 ack 40 ------- 0 5.0 0.0 28 341 - 1.77166 4 3 ack 40 ------- 0 5.0 0.0 28 341 r 1.774 3 4 cbr 500 ------- 1 1.0 6.0 156 307 + 1.774 4 6 cbr 500 ------- 1 1.0 6.0 156 307 - 1.774 4 6 cbr 500 ------- 1 1.0 6.0 156 307 r 1.774 1 3 cbr 500 ------- 1 1.0 6.0 170 340 + 1.774 3 4 cbr 500 ------- 1 1.0 6.0 170 340 r 1.77405 3 0 ack 40 ------- 0 5.0 0.0 28 326 - 1.776 3 4 cbr 500 ------- 1 1.0 6.0 162 322 r 1.77798 4 3 ack 40 ------- 0 5.0 0.0 28 331 + 1.77798 3 0 ack 40 ------- 0 5.0 0.0 28 331 - 1.77798 3 0 ack 40 ------- 0 5.0 0.0 28 331 r 1.77965 0 3 tcp 1000 ---A--- 0 0.0 5.0 29 342 + 1.77965 3 4 tcp 1000 ---A--- 0 0.0 5.0 29 342 + 1.78 2 3 cbr 1000 ------- 1 2.0 7.0 84 348 - 1.78 2 3 cbr 1000 ------- 1 2.0 7.0 84 348 + 1.78 1 3 cbr 500 ------- 1 1.0 6.0 173 349 - 1.78 1 3 cbr 500 ------- 1 1.0 6.0 173 349 - 1.78 3 4 cbr 500 ------- 1 1.0 6.0 163 325 r 1.782 3 4 tcp 1000 ------- 0 0.0 5.0 46 311 + 1.782 4 5 tcp 1000 ------- 0 0.0 5.0 46 311 - 1.782 4 5 tcp 1000 ------- 0 0.0 5.0 46 311 r 1.78366 5 4 ack 40 ------- 0 5.0 0.0 28 345 + 1.78366 4 3 ack 40 ------- 0 5.0 0.0 28 345 - 1.78366 4 3 ack 40 ------- 0 5.0 0.0 28 345 r 1.784 1 3 cbr 500 ------- 1 1.0 6.0 171 344 + 1.784 3 4 cbr 500 ------- 1 1.0 6.0 171 344 - 1.784 3 4 cbr 1000 ------- 1 2.0 7.0 79 324 r 1.78598 4 3 ack 40 ------- 0 5.0 0.0 28 333 + 1.78598 3 0 ack 40 ------- 0 5.0 0.0 28 333 - 1.78598 3 0 ack 40 ------- 0 5.0 0.0 28 333 r 1.786 4 7 cbr 1000 ------- 1 2.0 7.0 74 300 r 1.786 4 6 cbr 500 ------- 1 1.0 6.0 154 302 r 1.788 2 3 cbr 1000 ------- 1 2.0 7.0 83 343 + 1.788 3 4 cbr 1000 ------- 1 2.0 7.0 83 343 r 1.79 3 4 cbr 1000 ------- 1 2.0 7.0 76 309 + 1.79 4 7 cbr 1000 ------- 1 2.0 7.0 76 309 - 1.79 4 7 cbr 1000 ------- 1 2.0 7.0 76 309 + 1.79 1 3 cbr 500 ------- 1 1.0 6.0 174 350 - 1.79 1 3 cbr 500 ------- 1 1.0 6.0 174 350 r 1.79005 3 0 ack 40 ------- 0 5.0 0.0 28 328 r 1.7916 4 5 tcp 1000 ------- 0 0.0 5.0 44 306 + 1.7916 5 4 ack 40 ------- 0 5.0 0.0 28 351 - 1.7916 5 4 ack 40 ------- 0 5.0 0.0 28 351 r 1.79166 5 4 ack 40 ------- 0 5.0 0.0 28 347 + 1.79166 4 3 ack 40 ------- 0 5.0 0.0 28 347 - 1.79166 4 3 ack 40 ------- 0 5.0 0.0 28 347 - 1.792 3 4 cbr 500 ------- 1 1.0 6.0 164 327 r 1.794 1 3 cbr 500 ------- 1 1.0 6.0 172 346 + 1.794 3 4 cbr 500 ------- 1 1.0 6.0 172 346 - 1.796 3 4 cbr 500 ------- 1 1.0 6.0 165 330 r 1.79798 4 3 ack 40 ------- 0 5.0 0.0 28 336 + 1.79798 3 0 ack 40 ------- 0 5.0 0.0 28 336 - 1.79798 3 0 ack 40 ------- 0 5.0 0.0 28 336 r 1.798 3 4 tcp 1000 ------- 0 0.0 5.0 47 313 + 1.798 4 5 tcp 1000 ------- 0 0.0 5.0 47 313 - 1.798 4 5 tcp 1000 ------- 0 0.0 5.0 47 313 r 1.798 4 6 cbr 500 ------- 1 1.0 6.0 156 307 r 1.79805 3 0 ack 40 ------- 0 5.0 0.0 28 331 + 1.8 2 3 cbr 1000 ------- 1 2.0 7.0 85 352 - 1.8 2 3 cbr 1000 ------- 1 2.0 7.0 85 352 + 1.8 1 3 cbr 500 ------- 1 1.0 6.0 175 353 - 1.8 1 3 cbr 500 ------- 1 1.0 6.0 175 353 - 1.8 3 4 cbr 1000 ------- 1 2.0 7.0 80 329 r 1.8036 4 5 tcp 1000 ------- 0 0.0 5.0 46 311 + 1.8036 5 4 ack 40 ------- 0 5.0 0.0 28 354 - 1.8036 5 4 ack 40 ------- 0 5.0 0.0 28 354 r 1.804 1 3 cbr 500 ------- 1 1.0 6.0 173 349 + 1.804 3 4 cbr 500 ------- 1 1.0 6.0 173 349 r 1.806 3 4 tcp 1000 ------- 0 0.0 5.0 48 314 + 1.806 4 5 tcp 1000 ------- 0 0.0 5.0 48 314 - 1.806 4 5 tcp 1000 ------- 0 0.0 5.0 48 314 r 1.80605 3 0 ack 40 ------- 0 5.0 0.0 28 333 r 1.808 2 3 cbr 1000 ------- 1 2.0 7.0 84 348 + 1.808 3 4 cbr 1000 ------- 1 2.0 7.0 84 348 - 1.808 3 4 cbr 500 ------- 1 1.0 6.0 166 332 r 1.81 3 4 cbr 500 ------- 1 1.0 6.0 159 316 + 1.81 4 6 cbr 500 ------- 1 1.0 6.0 159 316 - 1.81 4 6 cbr 500 ------- 1 1.0 6.0 159 316 + 1.81 1 3 cbr 500 ------- 1 1.0 6.0 176 355 - 1.81 1 3 cbr 500 ------- 1 1.0 6.0 176 355 r 1.81166 5 4 ack 40 ------- 0 5.0 0.0 28 351 + 1.81166 4 3 ack 40 ------- 0 5.0 0.0 28 351 - 1.81166 4 3 ack 40 ------- 0 5.0 0.0 28 351 - 1.812 3 4 cbr 500 ------- 1 1.0 6.0 167 335 r 1.814 3 4 cbr 500 ------- 1 1.0 6.0 160 317 + 1.814 4 6 cbr 500 ------- 1 1.0 6.0 160 317 r 1.814 1 3 cbr 500 ------- 1 1.0 6.0 174 350 + 1.814 3 4 cbr 500 ------- 1 1.0 6.0 174 350 - 1.814 4 6 cbr 500 ------- 1 1.0 6.0 160 317 - 1.816 3 4 cbr 1000 ------- 1 2.0 7.0 81 334 r 1.818 3 4 cbr 500 ------- 1 1.0 6.0 161 320 + 1.818 4 6 cbr 500 ------- 1 1.0 6.0 161 320 r 1.818 4 7 cbr 1000 ------- 1 2.0 7.0 76 309 - 1.818 4 6 cbr 500 ------- 1 1.0 6.0 161 320 r 1.81805 3 0 ack 40 ------- 0 5.0 0.0 28 336 r 1.8196 4 5 tcp 1000 ------- 0 0.0 5.0 47 313 + 1.8196 5 4 ack 40 ------- 0 5.0 0.0 28 356 - 1.8196 5 4 ack 40 ------- 0 5.0 0.0 28 356 + 1.82 2 3 cbr 1000 ------- 1 2.0 7.0 86 357 - 1.82 2 3 cbr 1000 ------- 1 2.0 7.0 86 357 + 1.82 1 3 cbr 500 ------- 1 1.0 6.0 177 358 - 1.82 1 3 cbr 500 ------- 1 1.0 6.0 177 358 r 1.82198 4 3 ack 40 ------- 0 5.0 0.0 28 341 + 1.82198 3 0 ack 40 ------- 0 5.0 0.0 28 341 - 1.82198 3 0 ack 40 ------- 0 5.0 0.0 28 341 r 1.82366 5 4 ack 40 ------- 0 5.0 0.0 28 354 + 1.82366 4 3 ack 40 ------- 0 5.0 0.0 28 354 - 1.82366 4 3 ack 40 ------- 0 5.0 0.0 28 354 r 1.824 1 3 cbr 500 ------- 1 1.0 6.0 175 353 + 1.824 3 4 cbr 500 ------- 1 1.0 6.0 175 353 - 1.824 3 4 cbr 500 ------- 1 1.0 6.0 168 337 r 1.826 3 4 cbr 1000 ------- 1 2.0 7.0 78 319 + 1.826 4 7 cbr 1000 ------- 1 2.0 7.0 78 319 - 1.826 4 7 cbr 1000 ------- 1 2.0 7.0 78 319 r 1.8276 4 5 tcp 1000 ------- 0 0.0 5.0 48 314 + 1.8276 5 4 ack 40 ------- 0 5.0 0.0 28 359 - 1.8276 5 4 ack 40 ------- 0 5.0 0.0 28 359 r 1.828 2 3 cbr 1000 ------- 1 2.0 7.0 85 352 + 1.828 3 4 cbr 1000 ------- 1 2.0 7.0 85 352 - 1.828 3 4 cbr 500 ------- 1 1.0 6.0 169 339 r 1.83 3 4 cbr 500 ------- 1 1.0 6.0 162 322 + 1.83 4 6 cbr 500 ------- 1 1.0 6.0 162 322 - 1.83 4 6 cbr 500 ------- 1 1.0 6.0 162 322 + 1.83 1 3 cbr 500 ------- 1 1.0 6.0 178 360 - 1.83 1 3 cbr 500 ------- 1 1.0 6.0 178 360 - 1.832 3 4 cbr 1000 ------- 1 2.0 7.0 82 338 r 1.83398 4 3 ack 40 ------- 0 5.0 0.0 28 345 + 1.83398 3 0 ack 40 ------- 0 5.0 0.0 28 345 - 1.83398 3 0 ack 40 ------- 0 5.0 0.0 28 345 r 1.834 3 4 cbr 500 ------- 1 1.0 6.0 163 325 + 1.834 4 6 cbr 500 ------- 1 1.0 6.0 163 325 r 1.834 4 6 cbr 500 ------- 1 1.0 6.0 159 316 r 1.834 1 3 cbr 500 ------- 1 1.0 6.0 176 355 + 1.834 3 4 cbr 500 ------- 1 1.0 6.0 176 355 - 1.834 4 6 cbr 500 ------- 1 1.0 6.0 163 325 r 1.838 4 6 cbr 500 ------- 1 1.0 6.0 160 317 r 1.83966 5 4 ack 40 ------- 0 5.0 0.0 28 356 + 1.83966 4 3 ack 40 ------- 0 5.0 0.0 28 356 - 1.83966 4 3 ack 40 ------- 0 5.0 0.0 28 356 + 1.84 2 3 cbr 1000 ------- 1 2.0 7.0 87 361 - 1.84 2 3 cbr 1000 ------- 1 2.0 7.0 87 361 + 1.84 1 3 cbr 500 ------- 1 1.0 6.0 179 362 - 1.84 1 3 cbr 500 ------- 1 1.0 6.0 179 362 - 1.84 3 4 cbr 500 ------- 1 1.0 6.0 170 340 r 1.84198 4 3 ack 40 ------- 0 5.0 0.0 28 347 + 1.84198 3 0 ack 40 ------- 0 5.0 0.0 28 347 - 1.84198 3 0 ack 40 ------- 0 5.0 0.0 28 347 r 1.842 3 4 cbr 1000 ------- 1 2.0 7.0 79 324 + 1.842 4 7 cbr 1000 ------- 1 2.0 7.0 79 324 - 1.842 4 7 cbr 1000 ------- 1 2.0 7.0 79 324 r 1.842 4 6 cbr 500 ------- 1 1.0 6.0 161 320 r 1.84205 3 0 ack 40 ------- 0 5.0 0.0 28 341 r 1.844 1 3 cbr 500 ------- 1 1.0 6.0 177 358 + 1.844 3 4 cbr 500 ------- 1 1.0 6.0 177 358 - 1.844 3 4 tcp 1000 ---A--- 0 0.0 5.0 29 342 r 1.846 3 4 cbr 500 ------- 1 1.0 6.0 164 327 + 1.846 4 6 cbr 500 ------- 1 1.0 6.0 164 327 - 1.846 4 6 cbr 500 ------- 1 1.0 6.0 164 327 r 1.84766 5 4 ack 40 ------- 0 5.0 0.0 28 359 + 1.84766 4 3 ack 40 ------- 0 5.0 0.0 28 359 - 1.84766 4 3 ack 40 ------- 0 5.0 0.0 28 359 r 1.848 2 3 cbr 1000 ------- 1 2.0 7.0 86 357 + 1.848 3 4 cbr 1000 ------- 1 2.0 7.0 86 357 r 1.85 3 4 cbr 500 ------- 1 1.0 6.0 165 330 + 1.85 4 6 cbr 500 ------- 1 1.0 6.0 165 330 + 1.85 1 3 cbr 500 ------- 1 1.0 6.0 180 363 - 1.85 1 3 cbr 500 ------- 1 1.0 6.0 180 363 - 1.85 4 6 cbr 500 ------- 1 1.0 6.0 165 330 - 1.852 3 4 cbr 500 ------- 1 1.0 6.0 171 344 r 1.854 4 7 cbr 1000 ------- 1 2.0 7.0 78 319 r 1.854 4 6 cbr 500 ------- 1 1.0 6.0 162 322 r 1.854 1 3 cbr 500 ------- 1 1.0 6.0 178 360 + 1.854 3 4 cbr 500 ------- 1 1.0 6.0 178 360 r 1.85405 3 0 ack 40 ------- 0 5.0 0.0 28 345 - 1.856 3 4 cbr 1000 ------- 1 2.0 7.0 83 343 r 1.858 3 4 cbr 1000 ------- 1 2.0 7.0 80 329 + 1.858 4 7 cbr 1000 ------- 1 2.0 7.0 80 329 - 1.858 4 7 cbr 1000 ------- 1 2.0 7.0 80 329 r 1.858 4 6 cbr 500 ------- 1 1.0 6.0 163 325 + 1.86 2 3 cbr 1000 ------- 1 2.0 7.0 88 364 - 1.86 2 3 cbr 1000 ------- 1 2.0 7.0 88 364 + 1.86 1 3 cbr 500 ------- 1 1.0 6.0 181 365 - 1.86 1 3 cbr 500 ------- 1 1.0 6.0 181 365 r 1.86198 4 3 ack 40 ------- 0 5.0 0.0 28 351 + 1.86198 3 0 ack 40 ------- 0 5.0 0.0 28 351 - 1.86198 3 0 ack 40 ------- 0 5.0 0.0 28 351 r 1.862 3 4 cbr 500 ------- 1 1.0 6.0 166 332 + 1.862 4 6 cbr 500 ------- 1 1.0 6.0 166 332 - 1.862 4 6 cbr 500 ------- 1 1.0 6.0 166 332 r 1.86205 3 0 ack 40 ------- 0 5.0 0.0 28 347 r 1.864 1 3 cbr 500 ------- 1 1.0 6.0 179 362 + 1.864 3 4 cbr 500 ------- 1 1.0 6.0 179 362 - 1.864 3 4 cbr 500 ------- 1 1.0 6.0 172 346 r 1.866 3 4 cbr 500 ------- 1 1.0 6.0 167 335 + 1.866 4 6 cbr 500 ------- 1 1.0 6.0 167 335 - 1.866 4 6 cbr 500 ------- 1 1.0 6.0 167 335 r 1.868 2 3 cbr 1000 ------- 1 2.0 7.0 87 361 + 1.868 3 4 cbr 1000 ------- 1 2.0 7.0 87 361 - 1.868 3 4 cbr 500 ------- 1 1.0 6.0 173 349 r 1.87 4 7 cbr 1000 ------- 1 2.0 7.0 79 324 r 1.87 4 6 cbr 500 ------- 1 1.0 6.0 164 327 + 1.87 1 3 cbr 500 ------- 1 1.0 6.0 182 366 - 1.87 1 3 cbr 500 ------- 1 1.0 6.0 182 366 - 1.872 3 4 cbr 1000 ------- 1 2.0 7.0 84 348 r 1.87398 4 3 ack 40 ------- 0 5.0 0.0 28 354 + 1.87398 3 0 ack 40 ------- 0 5.0 0.0 28 354 - 1.87398 3 0 ack 40 ------- 0 5.0 0.0 28 354 r 1.874 3 4 cbr 1000 ------- 1 2.0 7.0 81 334 + 1.874 4 7 cbr 1000 ------- 1 2.0 7.0 81 334 - 1.874 4 7 cbr 1000 ------- 1 2.0 7.0 81 334 r 1.874 1 3 cbr 500 ------- 1 1.0 6.0 180 363 + 1.874 3 4 cbr 500 ------- 1 1.0 6.0 180 363 r 1.874 4 6 cbr 500 ------- 1 1.0 6.0 165 330 r 1.878 3 4 cbr 500 ------- 1 1.0 6.0 168 337 + 1.878 4 6 cbr 500 ------- 1 1.0 6.0 168 337 - 1.878 4 6 cbr 500 ------- 1 1.0 6.0 168 337 + 1.88 2 3 cbr 1000 ------- 1 2.0 7.0 89 367 - 1.88 2 3 cbr 1000 ------- 1 2.0 7.0 89 367 + 1.88 1 3 cbr 500 ------- 1 1.0 6.0 183 368 - 1.88 1 3 cbr 500 ------- 1 1.0 6.0 183 368 - 1.88 3 4 cbr 500 ------- 1 1.0 6.0 174 350 r 1.882 3 4 cbr 500 ------- 1 1.0 6.0 169 339 + 1.882 4 6 cbr 500 ------- 1 1.0 6.0 169 339 - 1.882 4 6 cbr 500 ------- 1 1.0 6.0 169 339 r 1.88205 3 0 ack 40 ------- 0 5.0 0.0 28 351 r 1.884 1 3 cbr 500 ------- 1 1.0 6.0 181 365 + 1.884 3 4 cbr 500 ------- 1 1.0 6.0 181 365 - 1.884 3 4 cbr 500 ------- 1 1.0 6.0 175 353 r 1.886 4 7 cbr 1000 ------- 1 2.0 7.0 80 329 r 1.886 4 6 cbr 500 ------- 1 1.0 6.0 166 332 r 1.888 2 3 cbr 1000 ------- 1 2.0 7.0 88 364 + 1.888 3 4 cbr 1000 ------- 1 2.0 7.0 88 364 - 1.888 3 4 cbr 1000 ------- 1 2.0 7.0 85 352 r 1.88998 4 3 ack 40 ------- 0 5.0 0.0 28 356 + 1.88998 3 0 ack 40 ------- 0 5.0 0.0 28 356 - 1.88998 3 0 ack 40 ------- 0 5.0 0.0 28 356 r 1.89 3 4 cbr 1000 ------- 1 2.0 7.0 82 338 + 1.89 4 7 cbr 1000 ------- 1 2.0 7.0 82 338 - 1.89 4 7 cbr 1000 ------- 1 2.0 7.0 82 338 r 1.89 4 6 cbr 500 ------- 1 1.0 6.0 167 335 + 1.89 1 3 cbr 500 ------- 1 1.0 6.0 184 369 - 1.89 1 3 cbr 500 ------- 1 1.0 6.0 184 369 r 1.894 3 4 cbr 500 ------- 1 1.0 6.0 170 340 + 1.894 4 6 cbr 500 ------- 1 1.0 6.0 170 340 - 1.894 4 6 cbr 500 ------- 1 1.0 6.0 170 340 r 1.894 1 3 cbr 500 ------- 1 1.0 6.0 182 366 + 1.894 3 4 cbr 500 ------- 1 1.0 6.0 182 366 r 1.89405 3 0 ack 40 ------- 0 5.0 0.0 28 354 - 1.896 3 4 cbr 500 ------- 1 1.0 6.0 176 355 r 1.89798 4 3 ack 40 ------- 0 5.0 0.0 28 359 + 1.89798 3 0 ack 40 ------- 0 5.0 0.0 28 359 - 1.89798 3 0 ack 40 ------- 0 5.0 0.0 28 359 + 1.9 2 3 cbr 1000 ------- 1 2.0 7.0 90 370 - 1.9 2 3 cbr 1000 ------- 1 2.0 7.0 90 370 + 1.9 1 3 cbr 500 ------- 1 1.0 6.0 185 371 - 1.9 1 3 cbr 500 ------- 1 1.0 6.0 185 371 - 1.9 3 4 cbr 500 ------- 1 1.0 6.0 177 358 r 1.902 3 4 tcp 1000 ---A--- 0 0.0 5.0 29 342 + 1.902 4 5 tcp 1000 ---A--- 0 0.0 5.0 29 342 - 1.902 4 5 tcp 1000 ---A--- 0 0.0 5.0 29 342 r 1.902 4 7 cbr 1000 ------- 1 2.0 7.0 81 334 r 1.902 4 6 cbr 500 ------- 1 1.0 6.0 168 337 r 1.904 1 3 cbr 500 ------- 1 1.0 6.0 183 368 + 1.904 3 4 cbr 500 ------- 1 1.0 6.0 183 368 - 1.904 3 4 cbr 1000 ------- 1 2.0 7.0 86 357 r 1.906 3 4 cbr 500 ------- 1 1.0 6.0 171 344 + 1.906 4 6 cbr 500 ------- 1 1.0 6.0 171 344 - 1.906 4 6 cbr 500 ------- 1 1.0 6.0 171 344 r 1.906 4 6 cbr 500 ------- 1 1.0 6.0 169 339 r 1.908 2 3 cbr 1000 ------- 1 2.0 7.0 89 367 + 1.908 3 4 cbr 1000 ------- 1 2.0 7.0 89 367 + 1.91 1 3 cbr 500 ------- 1 1.0 6.0 186 372 - 1.91 1 3 cbr 500 ------- 1 1.0 6.0 186 372 r 1.91005 3 0 ack 40 ------- 0 5.0 0.0 28 356 - 1.912 3 4 cbr 500 ------- 1 1.0 6.0 178 360 r 1.914 3 4 cbr 1000 ------- 1 2.0 7.0 83 343 + 1.914 4 7 cbr 1000 ------- 1 2.0 7.0 83 343 - 1.914 4 7 cbr 1000 ------- 1 2.0 7.0 83 343 r 1.914 1 3 cbr 500 ------- 1 1.0 6.0 184 369 + 1.914 3 4 cbr 500 ------- 1 1.0 6.0 184 369 - 1.916 3 4 cbr 500 ------- 1 1.0 6.0 179 362 r 1.918 3 4 cbr 500 ------- 1 1.0 6.0 172 346 + 1.918 4 6 cbr 500 ------- 1 1.0 6.0 172 346 - 1.918 4 6 cbr 500 ------- 1 1.0 6.0 172 346 r 1.918 4 7 cbr 1000 ------- 1 2.0 7.0 82 338 r 1.918 4 6 cbr 500 ------- 1 1.0 6.0 170 340 r 1.91805 3 0 ack 40 ------- 0 5.0 0.0 28 359 + 1.92 2 3 cbr 1000 ------- 1 2.0 7.0 91 373 - 1.92 2 3 cbr 1000 ------- 1 2.0 7.0 91 373 + 1.92 1 3 cbr 500 ------- 1 1.0 6.0 187 374 - 1.92 1 3 cbr 500 ------- 1 1.0 6.0 187 374 - 1.92 3 4 cbr 1000 ------- 1 2.0 7.0 87 361 r 1.922 3 4 cbr 500 ------- 1 1.0 6.0 173 349 + 1.922 4 6 cbr 500 ------- 1 1.0 6.0 173 349 - 1.922 4 6 cbr 500 ------- 1 1.0 6.0 173 349 r 1.9236 4 5 tcp 1000 ---A--- 0 0.0 5.0 29 342 + 1.9236 5 4 ack 40 ------- 0 5.0 0.0 34 375 - 1.9236 5 4 ack 40 ------- 0 5.0 0.0 34 375 r 1.924 1 3 cbr 500 ------- 1 1.0 6.0 185 371 + 1.924 3 4 cbr 500 ------- 1 1.0 6.0 185 371 r 1.928 2 3 cbr 1000 ------- 1 2.0 7.0 90 370 + 1.928 3 4 cbr 1000 ------- 1 2.0 7.0 90 370 - 1.928 3 4 cbr 500 ------- 1 1.0 6.0 180 363 r 1.93 3 4 cbr 1000 ------- 1 2.0 7.0 84 348 + 1.93 4 7 cbr 1000 ------- 1 2.0 7.0 84 348 - 1.93 4 7 cbr 1000 ------- 1 2.0 7.0 84 348 r 1.93 4 6 cbr 500 ------- 1 1.0 6.0 171 344 + 1.93 1 3 cbr 500 ------- 1 1.0 6.0 188 376 - 1.93 1 3 cbr 500 ------- 1 1.0 6.0 188 376 - 1.932 3 4 cbr 500 ------- 1 1.0 6.0 181 365 r 1.934 3 4 cbr 500 ------- 1 1.0 6.0 174 350 + 1.934 4 6 cbr 500 ------- 1 1.0 6.0 174 350 - 1.934 4 6 cbr 500 ------- 1 1.0 6.0 174 350 r 1.934 1 3 cbr 500 ------- 1 1.0 6.0 186 372 + 1.934 3 4 cbr 500 ------- 1 1.0 6.0 186 372 - 1.936 3 4 cbr 1000 ------- 1 2.0 7.0 88 364 r 1.938 3 4 cbr 500 ------- 1 1.0 6.0 175 353 + 1.938 4 6 cbr 500 ------- 1 1.0 6.0 175 353 - 1.938 4 6 cbr 500 ------- 1 1.0 6.0 175 353 + 1.94 2 3 cbr 1000 ------- 1 2.0 7.0 92 377 - 1.94 2 3 cbr 1000 ------- 1 2.0 7.0 92 377 + 1.94 1 3 cbr 500 ------- 1 1.0 6.0 189 378 - 1.94 1 3 cbr 500 ------- 1 1.0 6.0 189 378 r 1.942 4 7 cbr 1000 ------- 1 2.0 7.0 83 343 r 1.942 4 6 cbr 500 ------- 1 1.0 6.0 172 346 r 1.94366 5 4 ack 40 ------- 0 5.0 0.0 34 375 + 1.94366 4 3 ack 40 ------- 0 5.0 0.0 34 375 - 1.94366 4 3 ack 40 ------- 0 5.0 0.0 34 375 r 1.944 1 3 cbr 500 ------- 1 1.0 6.0 187 374 + 1.944 3 4 cbr 500 ------- 1 1.0 6.0 187 374 - 1.944 3 4 cbr 500 ------- 1 1.0 6.0 182 366 r 1.946 3 4 cbr 1000 ------- 1 2.0 7.0 85 352 + 1.946 4 7 cbr 1000 ------- 1 2.0 7.0 85 352 - 1.946 4 7 cbr 1000 ------- 1 2.0 7.0 85 352 r 1.946 4 6 cbr 500 ------- 1 1.0 6.0 173 349 r 1.948 2 3 cbr 1000 ------- 1 2.0 7.0 91 373 + 1.948 3 4 cbr 1000 ------- 1 2.0 7.0 91 373 - 1.948 3 4 cbr 500 ------- 1 1.0 6.0 183 368 r 1.95 3 4 cbr 500 ------- 1 1.0 6.0 176 355 + 1.95 4 6 cbr 500 ------- 1 1.0 6.0 176 355 - 1.95 4 6 cbr 500 ------- 1 1.0 6.0 176 355 + 1.95 1 3 cbr 500 ------- 1 1.0 6.0 190 379 - 1.95 1 3 cbr 500 ------- 1 1.0 6.0 190 379 - 1.952 3 4 cbr 1000 ------- 1 2.0 7.0 89 367 r 1.954 3 4 cbr 500 ------- 1 1.0 6.0 177 358 + 1.954 4 6 cbr 500 ------- 1 1.0 6.0 177 358 r 1.954 1 3 cbr 500 ------- 1 1.0 6.0 188 376 + 1.954 3 4 cbr 500 ------- 1 1.0 6.0 188 376 - 1.954 4 6 cbr 500 ------- 1 1.0 6.0 177 358 r 1.958 4 7 cbr 1000 ------- 1 2.0 7.0 84 348 r 1.958 4 6 cbr 500 ------- 1 1.0 6.0 174 350 + 1.96 2 3 cbr 1000 ------- 1 2.0 7.0 93 380 - 1.96 2 3 cbr 1000 ------- 1 2.0 7.0 93 380 + 1.96 1 3 cbr 500 ------- 1 1.0 6.0 191 381 - 1.96 1 3 cbr 500 ------- 1 1.0 6.0 191 381 - 1.96 3 4 cbr 500 ------- 1 1.0 6.0 184 369 r 1.962 3 4 cbr 1000 ------- 1 2.0 7.0 86 357 + 1.962 4 7 cbr 1000 ------- 1 2.0 7.0 86 357 - 1.962 4 7 cbr 1000 ------- 1 2.0 7.0 86 357 r 1.962 4 6 cbr 500 ------- 1 1.0 6.0 175 353 r 1.964 1 3 cbr 500 ------- 1 1.0 6.0 189 378 + 1.964 3 4 cbr 500 ------- 1 1.0 6.0 189 378 - 1.964 3 4 cbr 500 ------- 1 1.0 6.0 185 371 r 1.966 3 4 cbr 500 ------- 1 1.0 6.0 178 360 + 1.966 4 6 cbr 500 ------- 1 1.0 6.0 178 360 - 1.966 4 6 cbr 500 ------- 1 1.0 6.0 178 360 r 1.968 2 3 cbr 1000 ------- 1 2.0 7.0 92 377 + 1.968 3 4 cbr 1000 ------- 1 2.0 7.0 92 377 - 1.968 3 4 cbr 1000 ------- 1 2.0 7.0 90 370 r 1.97 3 4 cbr 500 ------- 1 1.0 6.0 179 362 + 1.97 4 6 cbr 500 ------- 1 1.0 6.0 179 362 + 1.97 1 3 cbr 500 ------- 1 1.0 6.0 192 382 - 1.97 1 3 cbr 500 ------- 1 1.0 6.0 192 382 - 1.97 4 6 cbr 500 ------- 1 1.0 6.0 179 362 r 1.974 4 7 cbr 1000 ------- 1 2.0 7.0 85 352 r 1.974 4 6 cbr 500 ------- 1 1.0 6.0 176 355 r 1.974 1 3 cbr 500 ------- 1 1.0 6.0 190 379 + 1.974 3 4 cbr 500 ------- 1 1.0 6.0 190 379 - 1.976 3 4 cbr 500 ------- 1 1.0 6.0 186 372 r 1.978 3 4 cbr 1000 ------- 1 2.0 7.0 87 361 + 1.978 4 7 cbr 1000 ------- 1 2.0 7.0 87 361 - 1.978 4 7 cbr 1000 ------- 1 2.0 7.0 87 361 r 1.978 4 6 cbr 500 ------- 1 1.0 6.0 177 358 + 1.98 2 3 cbr 1000 ------- 1 2.0 7.0 94 383 - 1.98 2 3 cbr 1000 ------- 1 2.0 7.0 94 383 + 1.98 1 3 cbr 500 ------- 1 1.0 6.0 193 384 - 1.98 1 3 cbr 500 ------- 1 1.0 6.0 193 384 - 1.98 3 4 cbr 500 ------- 1 1.0 6.0 187 374 r 1.982 3 4 cbr 500 ------- 1 1.0 6.0 180 363 + 1.982 4 6 cbr 500 ------- 1 1.0 6.0 180 363 - 1.982 4 6 cbr 500 ------- 1 1.0 6.0 180 363 r 1.984 1 3 cbr 500 ------- 1 1.0 6.0 191 381 + 1.984 3 4 cbr 500 ------- 1 1.0 6.0 191 381 - 1.984 3 4 cbr 1000 ------- 1 2.0 7.0 91 373 r 1.986 3 4 cbr 500 ------- 1 1.0 6.0 181 365 + 1.986 4 6 cbr 500 ------- 1 1.0 6.0 181 365 - 1.986 4 6 cbr 500 ------- 1 1.0 6.0 181 365 r 1.988 2 3 cbr 1000 ------- 1 2.0 7.0 93 380 + 1.988 3 4 cbr 1000 ------- 1 2.0 7.0 93 380 r 1.99 4 7 cbr 1000 ------- 1 2.0 7.0 86 357 r 1.99 4 6 cbr 500 ------- 1 1.0 6.0 178 360 + 1.99 1 3 cbr 500 ------- 1 1.0 6.0 194 385 - 1.99 1 3 cbr 500 ------- 1 1.0 6.0 194 385 - 1.992 3 4 cbr 500 ------- 1 1.0 6.0 188 376 r 1.99398 4 3 ack 40 ------- 0 5.0 0.0 34 375 + 1.99398 3 0 ack 40 ------- 0 5.0 0.0 34 375 - 1.99398 3 0 ack 40 ------- 0 5.0 0.0 34 375 r 1.994 3 4 cbr 1000 ------- 1 2.0 7.0 88 364 + 1.994 4 7 cbr 1000 ------- 1 2.0 7.0 88 364 - 1.994 4 7 cbr 1000 ------- 1 2.0 7.0 88 364 r 1.994 1 3 cbr 500 ------- 1 1.0 6.0 192 382 + 1.994 3 4 cbr 500 ------- 1 1.0 6.0 192 382 r 1.994 4 6 cbr 500 ------- 1 1.0 6.0 179 362 - 1.996 3 4 cbr 500 ------- 1 1.0 6.0 189 378 r 1.998 3 4 cbr 500 ------- 1 1.0 6.0 182 366 + 1.998 4 6 cbr 500 ------- 1 1.0 6.0 182 366 - 1.998 4 6 cbr 500 ------- 1 1.0 6.0 182 366 + 2 2 3 cbr 1000 ------- 1 2.0 7.0 95 386 - 2 2 3 cbr 1000 ------- 1 2.0 7.0 95 386 + 2 1 3 cbr 500 ------- 1 1.0 6.0 195 387 - 2 1 3 cbr 500 ------- 1 1.0 6.0 195 387 - 2 3 4 cbr 1000 ------- 1 2.0 7.0 92 377 r 2.002 3 4 cbr 500 ------- 1 1.0 6.0 183 368 + 2.002 4 6 cbr 500 ------- 1 1.0 6.0 183 368 - 2.002 4 6 cbr 500 ------- 1 1.0 6.0 183 368 r 2.004 1 3 cbr 500 ------- 1 1.0 6.0 193 384 + 2.004 3 4 cbr 500 ------- 1 1.0 6.0 193 384 r 2.006 4 7 cbr 1000 ------- 1 2.0 7.0 87 361 r 2.006 4 6 cbr 500 ------- 1 1.0 6.0 180 363 r 2.008 2 3 cbr 1000 ------- 1 2.0 7.0 94 383 + 2.008 3 4 cbr 1000 ------- 1 2.0 7.0 94 383 - 2.008 3 4 cbr 500 ------- 1 1.0 6.0 190 379 + 2.01 1 3 cbr 500 ------- 1 1.0 6.0 196 388 - 2.01 1 3 cbr 500 ------- 1 1.0 6.0 196 388 r 2.01 3 4 cbr 1000 ------- 1 2.0 7.0 89 367 + 2.01 4 7 cbr 1000 ------- 1 2.0 7.0 89 367 - 2.01 4 7 cbr 1000 ------- 1 2.0 7.0 89 367 r 2.01 4 6 cbr 500 ------- 1 1.0 6.0 181 365 - 2.012 3 4 cbr 500 ------- 1 1.0 6.0 191 381 r 2.014 3 4 cbr 500 ------- 1 1.0 6.0 184 369 + 2.014 4 6 cbr 500 ------- 1 1.0 6.0 184 369 - 2.014 4 6 cbr 500 ------- 1 1.0 6.0 184 369 r 2.014 1 3 cbr 500 ------- 1 1.0 6.0 194 385 + 2.014 3 4 cbr 500 ------- 1 1.0 6.0 194 385 r 2.01405 3 0 ack 40 ------- 0 5.0 0.0 34 375 + 2.01405 0 3 tcp 1000 ------- 0 0.0 5.0 35 389 - 2.01405 0 3 tcp 1000 ------- 0 0.0 5.0 35 389 + 2.01405 0 3 tcp 1000 ------- 0 0.0 5.0 36 390 - 2.01565 0 3 tcp 1000 ------- 0 0.0 5.0 36 390 - 2.016 3 4 cbr 1000 ------- 1 2.0 7.0 93 380 r 2.018 3 4 cbr 500 ------- 1 1.0 6.0 185 371 + 2.018 4 6 cbr 500 ------- 1 1.0 6.0 185 371 - 2.018 4 6 cbr 500 ------- 1 1.0 6.0 185 371 + 2.02 1 3 cbr 500 ------- 1 1.0 6.0 197 391 - 2.02 1 3 cbr 500 ------- 1 1.0 6.0 197 391 + 2.02 2 3 cbr 1000 ------- 1 2.0 7.0 96 392 - 2.02 2 3 cbr 1000 ------- 1 2.0 7.0 96 392 r 2.022 4 7 cbr 1000 ------- 1 2.0 7.0 88 364 r 2.022 4 6 cbr 500 ------- 1 1.0 6.0 182 366 r 2.024 1 3 cbr 500 ------- 1 1.0 6.0 195 387 + 2.024 3 4 cbr 500 ------- 1 1.0 6.0 195 387 - 2.024 3 4 cbr 500 ------- 1 1.0 6.0 192 382 r 2.026 3 4 cbr 1000 ------- 1 2.0 7.0 90 370 + 2.026 4 7 cbr 1000 ------- 1 2.0 7.0 90 370 - 2.026 4 7 cbr 1000 ------- 1 2.0 7.0 90 370 r 2.026 4 6 cbr 500 ------- 1 1.0 6.0 183 368 r 2.028 2 3 cbr 1000 ------- 1 2.0 7.0 95 386 + 2.028 3 4 cbr 1000 ------- 1 2.0 7.0 95 386 - 2.028 3 4 cbr 500 ------- 1 1.0 6.0 193 384 + 2.03 1 3 cbr 500 ------- 1 1.0 6.0 198 393 - 2.03 1 3 cbr 500 ------- 1 1.0 6.0 198 393 r 2.03 3 4 cbr 500 ------- 1 1.0 6.0 186 372 + 2.03 4 6 cbr 500 ------- 1 1.0 6.0 186 372 - 2.03 4 6 cbr 500 ------- 1 1.0 6.0 186 372 - 2.032 3 4 cbr 1000 ------- 1 2.0 7.0 94 383 r 2.034 1 3 cbr 500 ------- 1 1.0 6.0 196 388 + 2.034 3 4 cbr 500 ------- 1 1.0 6.0 196 388 r 2.034 3 4 cbr 500 ------- 1 1.0 6.0 187 374 + 2.034 4 6 cbr 500 ------- 1 1.0 6.0 187 374 - 2.034 4 6 cbr 500 ------- 1 1.0 6.0 187 374 r 2.03565 0 3 tcp 1000 ------- 0 0.0 5.0 35 389 + 2.03565 3 4 tcp 1000 ------- 0 0.0 5.0 35 389 r 2.03725 0 3 tcp 1000 ------- 0 0.0 5.0 36 390 + 2.03725 3 4 tcp 1000 ------- 0 0.0 5.0 36 390 r 2.038 4 7 cbr 1000 ------- 1 2.0 7.0 89 367 r 2.038 4 6 cbr 500 ------- 1 1.0 6.0 184 369 + 2.04 1 3 cbr 500 ------- 1 1.0 6.0 199 394 - 2.04 1 3 cbr 500 ------- 1 1.0 6.0 199 394 + 2.04 2 3 cbr 1000 ------- 1 2.0 7.0 97 395 - 2.04 2 3 cbr 1000 ------- 1 2.0 7.0 97 395 - 2.04 3 4 cbr 500 ------- 1 1.0 6.0 194 385 r 2.042 3 4 cbr 1000 ------- 1 2.0 7.0 91 373 + 2.042 4 7 cbr 1000 ------- 1 2.0 7.0 91 373 - 2.042 4 7 cbr 1000 ------- 1 2.0 7.0 91 373 r 2.042 4 6 cbr 500 ------- 1 1.0 6.0 185 371 r 2.044 1 3 cbr 500 ------- 1 1.0 6.0 197 391 + 2.044 3 4 cbr 500 ------- 1 1.0 6.0 197 391 - 2.044 3 4 cbr 500 ------- 1 1.0 6.0 195 387 r 2.046 3 4 cbr 500 ------- 1 1.0 6.0 188 376 + 2.046 4 6 cbr 500 ------- 1 1.0 6.0 188 376 - 2.046 4 6 cbr 500 ------- 1 1.0 6.0 188 376 r 2.048 2 3 cbr 1000 ------- 1 2.0 7.0 96 392 + 2.048 3 4 cbr 1000 ------- 1 2.0 7.0 96 392 - 2.048 3 4 cbr 1000 ------- 1 2.0 7.0 95 386 + 2.05 1 3 cbr 500 ------- 1 1.0 6.0 200 396 - 2.05 1 3 cbr 500 ------- 1 1.0 6.0 200 396 r 2.05 3 4 cbr 500 ------- 1 1.0 6.0 189 378 + 2.05 4 6 cbr 500 ------- 1 1.0 6.0 189 378 - 2.05 4 6 cbr 500 ------- 1 1.0 6.0 189 378 r 2.054 1 3 cbr 500 ------- 1 1.0 6.0 198 393 + 2.054 3 4 cbr 500 ------- 1 1.0 6.0 198 393 r 2.054 4 7 cbr 1000 ------- 1 2.0 7.0 90 370 r 2.054 4 6 cbr 500 ------- 1 1.0 6.0 186 372 - 2.056 3 4 cbr 500 ------- 1 1.0 6.0 196 388 r 2.058 3 4 cbr 1000 ------- 1 2.0 7.0 92 377 + 2.058 4 7 cbr 1000 ------- 1 2.0 7.0 92 377 - 2.058 4 7 cbr 1000 ------- 1 2.0 7.0 92 377 r 2.058 4 6 cbr 500 ------- 1 1.0 6.0 187 374 + 2.06 1 3 cbr 500 ------- 1 1.0 6.0 201 397 - 2.06 1 3 cbr 500 ------- 1 1.0 6.0 201 397 + 2.06 2 3 cbr 1000 ------- 1 2.0 7.0 98 398 - 2.06 2 3 cbr 1000 ------- 1 2.0 7.0 98 398 - 2.06 3 4 tcp 1000 ------- 0 0.0 5.0 35 389 r 2.062 3 4 cbr 500 ------- 1 1.0 6.0 190 379 + 2.062 4 6 cbr 500 ------- 1 1.0 6.0 190 379 - 2.062 4 6 cbr 500 ------- 1 1.0 6.0 190 379 r 2.064 1 3 cbr 500 ------- 1 1.0 6.0 199 394 + 2.064 3 4 cbr 500 ------- 1 1.0 6.0 199 394 r 2.066 3 4 cbr 500 ------- 1 1.0 6.0 191 381 + 2.066 4 6 cbr 500 ------- 1 1.0 6.0 191 381 - 2.066 4 6 cbr 500 ------- 1 1.0 6.0 191 381 r 2.068 2 3 cbr 1000 ------- 1 2.0 7.0 97 395 + 2.068 3 4 cbr 1000 ------- 1 2.0 7.0 97 395 - 2.068 3 4 tcp 1000 ------- 0 0.0 5.0 36 390 + 2.07 1 3 cbr 500 ------- 1 1.0 6.0 202 399 - 2.07 1 3 cbr 500 ------- 1 1.0 6.0 202 399 r 2.07 4 7 cbr 1000 ------- 1 2.0 7.0 91 373 r 2.07 4 6 cbr 500 ------- 1 1.0 6.0 188 376 r 2.074 1 3 cbr 500 ------- 1 1.0 6.0 200 396 + 2.074 3 4 cbr 500 ------- 1 1.0 6.0 200 396 r 2.074 3 4 cbr 1000 ------- 1 2.0 7.0 93 380 + 2.074 4 7 cbr 1000 ------- 1 2.0 7.0 93 380 - 2.074 4 7 cbr 1000 ------- 1 2.0 7.0 93 380 r 2.074 4 6 cbr 500 ------- 1 1.0 6.0 189 378 - 2.076 3 4 cbr 500 ------- 1 1.0 6.0 197 391 r 2.078 3 4 cbr 500 ------- 1 1.0 6.0 192 382 + 2.078 4 6 cbr 500 ------- 1 1.0 6.0 192 382 - 2.078 4 6 cbr 500 ------- 1 1.0 6.0 192 382 + 2.08 1 3 cbr 500 ------- 1 1.0 6.0 203 400 - 2.08 1 3 cbr 500 ------- 1 1.0 6.0 203 400 + 2.08 2 3 cbr 1000 ------- 1 2.0 7.0 99 401 - 2.08 2 3 cbr 1000 ------- 1 2.0 7.0 99 401 - 2.08 3 4 cbr 1000 ------- 1 2.0 7.0 96 392 r 2.082 3 4 cbr 500 ------- 1 1.0 6.0 193 384 + 2.082 4 6 cbr 500 ------- 1 1.0 6.0 193 384 - 2.082 4 6 cbr 500 ------- 1 1.0 6.0 193 384 r 2.084 1 3 cbr 500 ------- 1 1.0 6.0 201 397 + 2.084 3 4 cbr 500 ------- 1 1.0 6.0 201 397 r 2.086 4 7 cbr 1000 ------- 1 2.0 7.0 92 377 r 2.086 4 6 cbr 500 ------- 1 1.0 6.0 190 379 r 2.088 2 3 cbr 1000 ------- 1 2.0 7.0 98 398 + 2.088 3 4 cbr 1000 ------- 1 2.0 7.0 98 398 - 2.088 3 4 cbr 500 ------- 1 1.0 6.0 198 393 + 2.09 1 3 cbr 500 ------- 1 1.0 6.0 204 402 - 2.09 1 3 cbr 500 ------- 1 1.0 6.0 204 402 r 2.09 3 4 cbr 1000 ------- 1 2.0 7.0 94 383 + 2.09 4 7 cbr 1000 ------- 1 2.0 7.0 94 383 - 2.09 4 7 cbr 1000 ------- 1 2.0 7.0 94 383 r 2.09 4 6 cbr 500 ------- 1 1.0 6.0 191 381 - 2.092 3 4 cbr 500 ------- 1 1.0 6.0 199 394 r 2.094 1 3 cbr 500 ------- 1 1.0 6.0 202 399 + 2.094 3 4 cbr 500 ------- 1 1.0 6.0 202 399 r 2.094 3 4 cbr 500 ------- 1 1.0 6.0 194 385 + 2.094 4 6 cbr 500 ------- 1 1.0 6.0 194 385 - 2.094 4 6 cbr 500 ------- 1 1.0 6.0 194 385 - 2.096 3 4 cbr 1000 ------- 1 2.0 7.0 97 395 r 2.098 3 4 cbr 500 ------- 1 1.0 6.0 195 387 + 2.098 4 6 cbr 500 ------- 1 1.0 6.0 195 387 - 2.098 4 6 cbr 500 ------- 1 1.0 6.0 195 387 + 2.1 1 3 cbr 500 ------- 1 1.0 6.0 205 403 - 2.1 1 3 cbr 500 ------- 1 1.0 6.0 205 403 + 2.1 2 3 cbr 1000 ------- 1 2.0 7.0 100 404 - 2.1 2 3 cbr 1000 ------- 1 2.0 7.0 100 404 r 2.102 4 7 cbr 1000 ------- 1 2.0 7.0 93 380 r 2.102 4 6 cbr 500 ------- 1 1.0 6.0 192 382 r 2.104 1 3 cbr 500 ------- 1 1.0 6.0 203 400 + 2.104 3 4 cbr 500 ------- 1 1.0 6.0 203 400 - 2.104 3 4 cbr 500 ------- 1 1.0 6.0 200 396 r 2.106 3 4 cbr 1000 ------- 1 2.0 7.0 95 386 + 2.106 4 7 cbr 1000 ------- 1 2.0 7.0 95 386 - 2.106 4 7 cbr 1000 ------- 1 2.0 7.0 95 386 r 2.106 4 6 cbr 500 ------- 1 1.0 6.0 193 384 r 2.108 2 3 cbr 1000 ------- 1 2.0 7.0 99 401 + 2.108 3 4 cbr 1000 ------- 1 2.0 7.0 99 401 - 2.108 3 4 cbr 500 ------- 1 1.0 6.0 201 397 + 2.11 1 3 cbr 500 ------- 1 1.0 6.0 206 405 - 2.11 1 3 cbr 500 ------- 1 1.0 6.0 206 405 r 2.11 3 4 cbr 500 ------- 1 1.0 6.0 196 388 + 2.11 4 6 cbr 500 ------- 1 1.0 6.0 196 388 - 2.11 4 6 cbr 500 ------- 1 1.0 6.0 196 388 - 2.112 3 4 cbr 1000 ------- 1 2.0 7.0 98 398 r 2.114 1 3 cbr 500 ------- 1 1.0 6.0 204 402 + 2.114 3 4 cbr 500 ------- 1 1.0 6.0 204 402 r 2.118 3 4 tcp 1000 ------- 0 0.0 5.0 35 389 + 2.118 4 5 tcp 1000 ------- 0 0.0 5.0 35 389 - 2.118 4 5 tcp 1000 ------- 0 0.0 5.0 35 389 r 2.118 4 7 cbr 1000 ------- 1 2.0 7.0 94 383 r 2.118 4 6 cbr 500 ------- 1 1.0 6.0 194 385 + 2.12 1 3 cbr 500 ------- 1 1.0 6.0 207 406 - 2.12 1 3 cbr 500 ------- 1 1.0 6.0 207 406 + 2.12 2 3 cbr 1000 ------- 1 2.0 7.0 101 407 - 2.12 2 3 cbr 1000 ------- 1 2.0 7.0 101 407 - 2.12 3 4 cbr 500 ------- 1 1.0 6.0 202 399 r 2.122 4 6 cbr 500 ------- 1 1.0 6.0 195 387 r 2.124 1 3 cbr 500 ------- 1 1.0 6.0 205 403 + 2.124 3 4 cbr 500 ------- 1 1.0 6.0 205 403 - 2.124 3 4 cbr 500 ------- 1 1.0 6.0 203 400 r 2.126 3 4 tcp 1000 ------- 0 0.0 5.0 36 390 + 2.126 4 5 tcp 1000 ------- 0 0.0 5.0 36 390 - 2.126 4 5 tcp 1000 ------- 0 0.0 5.0 36 390 r 2.128 2 3 cbr 1000 ------- 1 2.0 7.0 100 404 + 2.128 3 4 cbr 1000 ------- 1 2.0 7.0 100 404 - 2.128 3 4 cbr 1000 ------- 1 2.0 7.0 99 401 + 2.13 1 3 cbr 500 ------- 1 1.0 6.0 208 408 - 2.13 1 3 cbr 500 ------- 1 1.0 6.0 208 408 r 2.13 3 4 cbr 500 ------- 1 1.0 6.0 197 391 + 2.13 4 6 cbr 500 ------- 1 1.0 6.0 197 391 - 2.13 4 6 cbr 500 ------- 1 1.0 6.0 197 391 r 2.134 1 3 cbr 500 ------- 1 1.0 6.0 206 405 + 2.134 3 4 cbr 500 ------- 1 1.0 6.0 206 405 r 2.134 4 7 cbr 1000 ------- 1 2.0 7.0 95 386 r 2.134 4 6 cbr 500 ------- 1 1.0 6.0 196 388 - 2.136 3 4 cbr 500 ------- 1 1.0 6.0 204 402 r 2.138 3 4 cbr 1000 ------- 1 2.0 7.0 96 392 + 2.138 4 7 cbr 1000 ------- 1 2.0 7.0 96 392 - 2.138 4 7 cbr 1000 ------- 1 2.0 7.0 96 392 r 2.1396 4 5 tcp 1000 ------- 0 0.0 5.0 35 389 + 2.1396 5 4 ack 40 ------- 0 5.0 0.0 42 409 - 2.1396 5 4 ack 40 ------- 0 5.0 0.0 42 409 + 2.14 1 3 cbr 500 ------- 1 1.0 6.0 209 410 - 2.14 1 3 cbr 500 ------- 1 1.0 6.0 209 410 + 2.14 2 3 cbr 1000 ------- 1 2.0 7.0 102 411 - 2.14 2 3 cbr 1000 ------- 1 2.0 7.0 102 411 - 2.14 3 4 cbr 500 ------- 1 1.0 6.0 205 403 r 2.142 3 4 cbr 500 ------- 1 1.0 6.0 198 393 + 2.142 4 6 cbr 500 ------- 1 1.0 6.0 198 393 - 2.142 4 6 cbr 500 ------- 1 1.0 6.0 198 393 r 2.144 1 3 cbr 500 ------- 1 1.0 6.0 207 406 + 2.144 3 4 cbr 500 ------- 1 1.0 6.0 207 406 - 2.144 3 4 cbr 1000 ------- 1 2.0 7.0 100 404 r 2.146 3 4 cbr 500 ------- 1 1.0 6.0 199 394 + 2.146 4 6 cbr 500 ------- 1 1.0 6.0 199 394 - 2.146 4 6 cbr 500 ------- 1 1.0 6.0 199 394 r 2.1476 4 5 tcp 1000 ------- 0 0.0 5.0 36 390 + 2.1476 5 4 ack 40 ------- 0 5.0 0.0 42 412 - 2.1476 5 4 ack 40 ------- 0 5.0 0.0 42 412 r 2.148 2 3 cbr 1000 ------- 1 2.0 7.0 101 407 + 2.148 3 4 cbr 1000 ------- 1 2.0 7.0 101 407 + 2.15 1 3 cbr 500 ------- 1 1.0 6.0 210 413 - 2.15 1 3 cbr 500 ------- 1 1.0 6.0 210 413 - 2.152 3 4 cbr 500 ------- 1 1.0 6.0 206 405 r 2.154 1 3 cbr 500 ------- 1 1.0 6.0 208 408 + 2.154 3 4 cbr 500 ------- 1 1.0 6.0 208 408 r 2.154 3 4 cbr 1000 ------- 1 2.0 7.0 97 395 + 2.154 4 7 cbr 1000 ------- 1 2.0 7.0 97 395 - 2.154 4 7 cbr 1000 ------- 1 2.0 7.0 97 395 r 2.154 4 6 cbr 500 ------- 1 1.0 6.0 197 391 - 2.156 3 4 cbr 500 ------- 1 1.0 6.0 207 406 r 2.158 3 4 cbr 500 ------- 1 1.0 6.0 200 396 + 2.158 4 6 cbr 500 ------- 1 1.0 6.0 200 396 - 2.158 4 6 cbr 500 ------- 1 1.0 6.0 200 396 r 2.15966 5 4 ack 40 ------- 0 5.0 0.0 42 409 + 2.15966 4 3 ack 40 ------- 0 5.0 0.0 42 409 - 2.15966 4 3 ack 40 ------- 0 5.0 0.0 42 409 + 2.16 1 3 cbr 500 ------- 1 1.0 6.0 211 414 - 2.16 1 3 cbr 500 ------- 1 1.0 6.0 211 414 + 2.16 2 3 cbr 1000 ------- 1 2.0 7.0 103 415 - 2.16 2 3 cbr 1000 ------- 1 2.0 7.0 103 415 - 2.16 3 4 cbr 1000 ------- 1 2.0 7.0 101 407 r 2.162 3 4 cbr 500 ------- 1 1.0 6.0 201 397 + 2.162 4 6 cbr 500 ------- 1 1.0 6.0 201 397 - 2.162 4 6 cbr 500 ------- 1 1.0 6.0 201 397 r 2.164 1 3 cbr 500 ------- 1 1.0 6.0 209 410 + 2.164 3 4 cbr 500 ------- 1 1.0 6.0 209 410 r 2.166 4 7 cbr 1000 ------- 1 2.0 7.0 96 392 r 2.166 4 6 cbr 500 ------- 1 1.0 6.0 198 393 r 2.16766 5 4 ack 40 ------- 0 5.0 0.0 42 412 + 2.16766 4 3 ack 40 ------- 0 5.0 0.0 42 412 - 2.16766 4 3 ack 40 ------- 0 5.0 0.0 42 412 r 2.168 2 3 cbr 1000 ------- 1 2.0 7.0 102 411 + 2.168 3 4 cbr 1000 ------- 1 2.0 7.0 102 411 - 2.168 3 4 cbr 500 ------- 1 1.0 6.0 208 408 + 2.17 1 3 cbr 500 ------- 1 1.0 6.0 212 416 - 2.17 1 3 cbr 500 ------- 1 1.0 6.0 212 416 r 2.17 3 4 cbr 1000 ------- 1 2.0 7.0 98 398 + 2.17 4 7 cbr 1000 ------- 1 2.0 7.0 98 398 - 2.17 4 7 cbr 1000 ------- 1 2.0 7.0 98 398 r 2.17 4 6 cbr 500 ------- 1 1.0 6.0 199 394 - 2.172 3 4 cbr 500 ------- 1 1.0 6.0 209 410 r 2.174 1 3 cbr 500 ------- 1 1.0 6.0 210 413 + 2.174 3 4 cbr 500 ------- 1 1.0 6.0 210 413 r 2.174 3 4 cbr 500 ------- 1 1.0 6.0 202 399 + 2.174 4 6 cbr 500 ------- 1 1.0 6.0 202 399 - 2.174 4 6 cbr 500 ------- 1 1.0 6.0 202 399 - 2.176 3 4 cbr 1000 ------- 1 2.0 7.0 102 411 r 2.178 3 4 cbr 500 ------- 1 1.0 6.0 203 400 + 2.178 4 6 cbr 500 ------- 1 1.0 6.0 203 400 - 2.178 4 6 cbr 500 ------- 1 1.0 6.0 203 400 + 2.18 1 3 cbr 500 ------- 1 1.0 6.0 213 417 - 2.18 1 3 cbr 500 ------- 1 1.0 6.0 213 417 + 2.18 2 3 cbr 1000 ------- 1 2.0 7.0 104 418 - 2.18 2 3 cbr 1000 ------- 1 2.0 7.0 104 418 r 2.182 4 7 cbr 1000 ------- 1 2.0 7.0 97 395 r 2.182 4 6 cbr 500 ------- 1 1.0 6.0 200 396 r 2.184 1 3 cbr 500 ------- 1 1.0 6.0 211 414 + 2.184 3 4 cbr 500 ------- 1 1.0 6.0 211 414 - 2.184 3 4 cbr 500 ------- 1 1.0 6.0 210 413 r 2.186 3 4 cbr 1000 ------- 1 2.0 7.0 99 401 + 2.186 4 7 cbr 1000 ------- 1 2.0 7.0 99 401 - 2.186 4 7 cbr 1000 ------- 1 2.0 7.0 99 401 r 2.186 4 6 cbr 500 ------- 1 1.0 6.0 201 397 r 2.188 2 3 cbr 1000 ------- 1 2.0 7.0 103 415 + 2.188 3 4 cbr 1000 ------- 1 2.0 7.0 103 415 - 2.188 3 4 cbr 500 ------- 1 1.0 6.0 211 414 + 2.19 1 3 cbr 500 ------- 1 1.0 6.0 214 419 - 2.19 1 3 cbr 500 ------- 1 1.0 6.0 214 419 r 2.19 3 4 cbr 500 ------- 1 1.0 6.0 204 402 + 2.19 4 6 cbr 500 ------- 1 1.0 6.0 204 402 - 2.19 4 6 cbr 500 ------- 1 1.0 6.0 204 402 - 2.192 3 4 cbr 1000 ------- 1 2.0 7.0 103 415 r 2.194 1 3 cbr 500 ------- 1 1.0 6.0 212 416 + 2.194 3 4 cbr 500 ------- 1 1.0 6.0 212 416 r 2.194 3 4 cbr 500 ------- 1 1.0 6.0 205 403 + 2.194 4 6 cbr 500 ------- 1 1.0 6.0 205 403 - 2.194 4 6 cbr 500 ------- 1 1.0 6.0 205 403 r 2.198 4 7 cbr 1000 ------- 1 2.0 7.0 98 398 r 2.198 4 6 cbr 500 ------- 1 1.0 6.0 202 399 + 2.2 1 3 cbr 500 ------- 1 1.0 6.0 215 420 - 2.2 1 3 cbr 500 ------- 1 1.0 6.0 215 420 + 2.2 2 3 cbr 1000 ------- 1 2.0 7.0 105 421 - 2.2 2 3 cbr 1000 ------- 1 2.0 7.0 105 421 - 2.2 3 4 cbr 500 ------- 1 1.0 6.0 212 416 r 2.202 3 4 cbr 1000 ------- 1 2.0 7.0 100 404 + 2.202 4 7 cbr 1000 ------- 1 2.0 7.0 100 404 - 2.202 4 7 cbr 1000 ------- 1 2.0 7.0 100 404 r 2.202 4 6 cbr 500 ------- 1 1.0 6.0 203 400 r 2.204 1 3 cbr 500 ------- 1 1.0 6.0 213 417 + 2.204 3 4 cbr 500 ------- 1 1.0 6.0 213 417 - 2.204 3 4 cbr 500 ------- 1 1.0 6.0 213 417 r 2.206 3 4 cbr 500 ------- 1 1.0 6.0 206 405 + 2.206 4 6 cbr 500 ------- 1 1.0 6.0 206 405 - 2.206 4 6 cbr 500 ------- 1 1.0 6.0 206 405 r 2.208 2 3 cbr 1000 ------- 1 2.0 7.0 104 418 + 2.208 3 4 cbr 1000 ------- 1 2.0 7.0 104 418 - 2.208 3 4 cbr 1000 ------- 1 2.0 7.0 104 418 r 2.20998 4 3 ack 40 ------- 0 5.0 0.0 42 409 + 2.20998 3 0 ack 40 ------- 0 5.0 0.0 42 409 - 2.20998 3 0 ack 40 ------- 0 5.0 0.0 42 409 + 2.21 1 3 cbr 500 ------- 1 1.0 6.0 216 422 - 2.21 1 3 cbr 500 ------- 1 1.0 6.0 216 422 r 2.21 3 4 cbr 500 ------- 1 1.0 6.0 207 406 + 2.21 4 6 cbr 500 ------- 1 1.0 6.0 207 406 - 2.21 4 6 cbr 500 ------- 1 1.0 6.0 207 406 r 2.214 1 3 cbr 500 ------- 1 1.0 6.0 214 419 + 2.214 3 4 cbr 500 ------- 1 1.0 6.0 214 419 r 2.214 4 7 cbr 1000 ------- 1 2.0 7.0 99 401 r 2.214 4 6 cbr 500 ------- 1 1.0 6.0 204 402 - 2.216 3 4 cbr 500 ------- 1 1.0 6.0 214 419 r 2.21798 4 3 ack 40 ------- 0 5.0 0.0 42 412 + 2.21798 3 0 ack 40 ------- 0 5.0 0.0 42 412 - 2.21798 3 0 ack 40 ------- 0 5.0 0.0 42 412 r 2.218 3 4 cbr 1000 ------- 1 2.0 7.0 101 407 + 2.218 4 7 cbr 1000 ------- 1 2.0 7.0 101 407 - 2.218 4 7 cbr 1000 ------- 1 2.0 7.0 101 407 r 2.218 4 6 cbr 500 ------- 1 1.0 6.0 205 403 + 2.22 1 3 cbr 500 ------- 1 1.0 6.0 217 423 - 2.22 1 3 cbr 500 ------- 1 1.0 6.0 217 423 + 2.22 2 3 cbr 1000 ------- 1 2.0 7.0 106 424 - 2.22 2 3 cbr 1000 ------- 1 2.0 7.0 106 424 r 2.222 3 4 cbr 500 ------- 1 1.0 6.0 208 408 + 2.222 4 6 cbr 500 ------- 1 1.0 6.0 208 408 - 2.222 4 6 cbr 500 ------- 1 1.0 6.0 208 408 r 2.224 1 3 cbr 500 ------- 1 1.0 6.0 215 420 + 2.224 3 4 cbr 500 ------- 1 1.0 6.0 215 420 - 2.224 3 4 cbr 500 ------- 1 1.0 6.0 215 420 r 2.226 3 4 cbr 500 ------- 1 1.0 6.0 209 410 + 2.226 4 6 cbr 500 ------- 1 1.0 6.0 209 410 - 2.226 4 6 cbr 500 ------- 1 1.0 6.0 209 410 r 2.228 2 3 cbr 1000 ------- 1 2.0 7.0 105 421 + 2.228 3 4 cbr 1000 ------- 1 2.0 7.0 105 421 - 2.228 3 4 cbr 1000 ------- 1 2.0 7.0 105 421 + 2.23 1 3 cbr 500 ------- 1 1.0 6.0 218 425 - 2.23 1 3 cbr 500 ------- 1 1.0 6.0 218 425 r 2.23 4 7 cbr 1000 ------- 1 2.0 7.0 100 404 r 2.23 4 6 cbr 500 ------- 1 1.0 6.0 206 405 r 2.23005 3 0 ack 40 ------- 0 5.0 0.0 42 409 + 2.23005 0 3 tcp 1000 ------- 0 0.0 5.0 43 426 - 2.23005 0 3 tcp 1000 ------- 0 0.0 5.0 43 426 + 2.23005 0 3 tcp 1000 ------- 0 0.0 5.0 44 427 + 2.23005 0 3 tcp 1000 ------- 0 0.0 5.0 45 428 - 2.23165 0 3 tcp 1000 ------- 0 0.0 5.0 44 427 - 2.23325 0 3 tcp 1000 ------- 0 0.0 5.0 45 428 r 2.234 1 3 cbr 500 ------- 1 1.0 6.0 216 422 + 2.234 3 4 cbr 500 ------- 1 1.0 6.0 216 422 r 2.234 3 4 cbr 1000 ------- 1 2.0 7.0 102 411 + 2.234 4 7 cbr 1000 ------- 1 2.0 7.0 102 411 - 2.234 4 7 cbr 1000 ------- 1 2.0 7.0 102 411 r 2.234 4 6 cbr 500 ------- 1 1.0 6.0 207 406 - 2.236 3 4 cbr 500 ------- 1 1.0 6.0 216 422 r 2.238 3 4 cbr 500 ------- 1 1.0 6.0 210 413 + 2.238 4 6 cbr 500 ------- 1 1.0 6.0 210 413 - 2.238 4 6 cbr 500 ------- 1 1.0 6.0 210 413 r 2.23805 3 0 ack 40 ------- 0 5.0 0.0 42 412 + 2.24 1 3 cbr 500 ------- 1 1.0 6.0 219 429 - 2.24 1 3 cbr 500 ------- 1 1.0 6.0 219 429 + 2.24 2 3 cbr 1000 ------- 1 2.0 7.0 107 430 - 2.24 2 3 cbr 1000 ------- 1 2.0 7.0 107 430 r 2.242 3 4 cbr 500 ------- 1 1.0 6.0 211 414 + 2.242 4 6 cbr 500 ------- 1 1.0 6.0 211 414 - 2.242 4 6 cbr 500 ------- 1 1.0 6.0 211 414 r 2.244 1 3 cbr 500 ------- 1 1.0 6.0 217 423 + 2.244 3 4 cbr 500 ------- 1 1.0 6.0 217 423 - 2.244 3 4 cbr 500 ------- 1 1.0 6.0 217 423 r 2.246 4 7 cbr 1000 ------- 1 2.0 7.0 101 407 r 2.246 4 6 cbr 500 ------- 1 1.0 6.0 208 408 r 2.248 2 3 cbr 1000 ------- 1 2.0 7.0 106 424 + 2.248 3 4 cbr 1000 ------- 1 2.0 7.0 106 424 - 2.248 3 4 cbr 1000 ------- 1 2.0 7.0 106 424 + 2.25 1 3 cbr 500 ------- 1 1.0 6.0 220 431 - 2.25 1 3 cbr 500 ------- 1 1.0 6.0 220 431 r 2.25 3 4 cbr 1000 ------- 1 2.0 7.0 103 415 + 2.25 4 7 cbr 1000 ------- 1 2.0 7.0 103 415 - 2.25 4 7 cbr 1000 ------- 1 2.0 7.0 103 415 r 2.25 4 6 cbr 500 ------- 1 1.0 6.0 209 410 r 2.25165 0 3 tcp 1000 ------- 0 0.0 5.0 43 426 + 2.25165 3 4 tcp 1000 ------- 0 0.0 5.0 43 426 r 2.25325 0 3 tcp 1000 ------- 0 0.0 5.0 44 427 + 2.25325 3 4 tcp 1000 ------- 0 0.0 5.0 44 427 r 2.254 1 3 cbr 500 ------- 1 1.0 6.0 218 425 + 2.254 3 4 cbr 500 ------- 1 1.0 6.0 218 425 r 2.254 3 4 cbr 500 ------- 1 1.0 6.0 212 416 + 2.254 4 6 cbr 500 ------- 1 1.0 6.0 212 416 - 2.254 4 6 cbr 500 ------- 1 1.0 6.0 212 416 r 2.25485 0 3 tcp 1000 ------- 0 0.0 5.0 45 428 + 2.25485 3 4 tcp 1000 ------- 0 0.0 5.0 45 428 - 2.256 3 4 tcp 1000 ------- 0 0.0 5.0 43 426 r 2.258 3 4 cbr 500 ------- 1 1.0 6.0 213 417 + 2.258 4 6 cbr 500 ------- 1 1.0 6.0 213 417 - 2.258 4 6 cbr 500 ------- 1 1.0 6.0 213 417 + 2.26 1 3 cbr 500 ------- 1 1.0 6.0 221 432 - 2.26 1 3 cbr 500 ------- 1 1.0 6.0 221 432 + 2.26 2 3 cbr 1000 ------- 1 2.0 7.0 108 433 - 2.26 2 3 cbr 1000 ------- 1 2.0 7.0 108 433 r 2.262 4 7 cbr 1000 ------- 1 2.0 7.0 102 411 r 2.262 4 6 cbr 500 ------- 1 1.0 6.0 210 413 r 2.264 1 3 cbr 500 ------- 1 1.0 6.0 219 429 + 2.264 3 4 cbr 500 ------- 1 1.0 6.0 219 429 - 2.264 3 4 tcp 1000 ------- 0 0.0 5.0 44 427 r 2.266 3 4 cbr 1000 ------- 1 2.0 7.0 104 418 + 2.266 4 7 cbr 1000 ------- 1 2.0 7.0 104 418 - 2.266 4 7 cbr 1000 ------- 1 2.0 7.0 104 418 r 2.266 4 6 cbr 500 ------- 1 1.0 6.0 211 414 r 2.268 2 3 cbr 1000 ------- 1 2.0 7.0 107 430 + 2.268 3 4 cbr 1000 ------- 1 2.0 7.0 107 430 + 2.27 1 3 cbr 500 ------- 1 1.0 6.0 222 434 - 2.27 1 3 cbr 500 ------- 1 1.0 6.0 222 434 r 2.27 3 4 cbr 500 ------- 1 1.0 6.0 214 419 + 2.27 4 6 cbr 500 ------- 1 1.0 6.0 214 419 - 2.27 4 6 cbr 500 ------- 1 1.0 6.0 214 419 - 2.272 3 4 cbr 500 ------- 1 1.0 6.0 218 425 r 2.274 1 3 cbr 500 ------- 1 1.0 6.0 220 431 + 2.274 3 4 cbr 500 ------- 1 1.0 6.0 220 431 - 2.276 3 4 tcp 1000 ------- 0 0.0 5.0 45 428 r 2.278 3 4 cbr 500 ------- 1 1.0 6.0 215 420 + 2.278 4 6 cbr 500 ------- 1 1.0 6.0 215 420 - 2.278 4 6 cbr 500 ------- 1 1.0 6.0 215 420 r 2.278 4 7 cbr 1000 ------- 1 2.0 7.0 103 415 r 2.278 4 6 cbr 500 ------- 1 1.0 6.0 212 416 + 2.28 1 3 cbr 500 ------- 1 1.0 6.0 223 435 - 2.28 1 3 cbr 500 ------- 1 1.0 6.0 223 435 + 2.28 2 3 cbr 1000 ------- 1 2.0 7.0 109 436 - 2.28 2 3 cbr 1000 ------- 1 2.0 7.0 109 436 r 2.282 4 6 cbr 500 ------- 1 1.0 6.0 213 417 r 2.284 1 3 cbr 500 ------- 1 1.0 6.0 221 432 + 2.284 3 4 cbr 500 ------- 1 1.0 6.0 221 432 - 2.284 3 4 cbr 500 ------- 1 1.0 6.0 219 429 r 2.286 3 4 cbr 1000 ------- 1 2.0 7.0 105 421 + 2.286 4 7 cbr 1000 ------- 1 2.0 7.0 105 421 - 2.286 4 7 cbr 1000 ------- 1 2.0 7.0 105 421 r 2.288 2 3 cbr 1000 ------- 1 2.0 7.0 108 433 + 2.288 3 4 cbr 1000 ------- 1 2.0 7.0 108 433 - 2.288 3 4 cbr 1000 ------- 1 2.0 7.0 107 430 + 2.29 1 3 cbr 500 ------- 1 1.0 6.0 224 437 - 2.29 1 3 cbr 500 ------- 1 1.0 6.0 224 437 r 2.29 3 4 cbr 500 ------- 1 1.0 6.0 216 422 + 2.29 4 6 cbr 500 ------- 1 1.0 6.0 216 422 - 2.29 4 6 cbr 500 ------- 1 1.0 6.0 216 422 r 2.294 1 3 cbr 500 ------- 1 1.0 6.0 222 434 + 2.294 3 4 cbr 500 ------- 1 1.0 6.0 222 434 r 2.294 4 7 cbr 1000 ------- 1 2.0 7.0 104 418 r 2.294 4 6 cbr 500 ------- 1 1.0 6.0 214 419 - 2.296 3 4 cbr 500 ------- 1 1.0 6.0 220 431 r 2.298 3 4 cbr 500 ------- 1 1.0 6.0 217 423 + 2.298 4 6 cbr 500 ------- 1 1.0 6.0 217 423 - 2.298 4 6 cbr 500 ------- 1 1.0 6.0 217 423 + 2.3 1 3 cbr 500 ------- 1 1.0 6.0 225 438 - 2.3 1 3 cbr 500 ------- 1 1.0 6.0 225 438 + 2.3 2 3 cbr 1000 ------- 1 2.0 7.0 110 439 - 2.3 2 3 cbr 1000 ------- 1 2.0 7.0 110 439 - 2.3 3 4 cbr 500 ------- 1 1.0 6.0 221 432 r 2.302 4 6 cbr 500 ------- 1 1.0 6.0 215 420 r 2.304 1 3 cbr 500 ------- 1 1.0 6.0 223 435 + 2.304 3 4 cbr 500 ------- 1 1.0 6.0 223 435 - 2.304 3 4 cbr 1000 ------- 1 2.0 7.0 108 433 r 2.306 3 4 cbr 1000 ------- 1 2.0 7.0 106 424 + 2.306 4 7 cbr 1000 ------- 1 2.0 7.0 106 424 - 2.306 4 7 cbr 1000 ------- 1 2.0 7.0 106 424 r 2.308 2 3 cbr 1000 ------- 1 2.0 7.0 109 436 + 2.308 3 4 cbr 1000 ------- 1 2.0 7.0 109 436 - 2.312 3 4 cbr 500 ------- 1 1.0 6.0 222 434 r 2.314 1 3 cbr 500 ------- 1 1.0 6.0 224 437 + 2.314 3 4 cbr 500 ------- 1 1.0 6.0 224 437 r 2.314 3 4 tcp 1000 ------- 0 0.0 5.0 43 426 + 2.314 4 5 tcp 1000 ------- 0 0.0 5.0 43 426 - 2.314 4 5 tcp 1000 ------- 0 0.0 5.0 43 426 r 2.314 4 7 cbr 1000 ------- 1 2.0 7.0 105 421 r 2.314 4 6 cbr 500 ------- 1 1.0 6.0 216 422 - 2.316 3 4 cbr 500 ------- 1 1.0 6.0 223 435 + 2.32 2 3 cbr 1000 ------- 1 2.0 7.0 111 440 - 2.32 2 3 cbr 1000 ------- 1 2.0 7.0 111 440 - 2.32 3 4 cbr 1000 ------- 1 2.0 7.0 109 436 r 2.322 4 6 cbr 500 ------- 1 1.0 6.0 217 423 r 2.322 3 4 tcp 1000 ------- 0 0.0 5.0 44 427 + 2.322 4 5 tcp 1000 ------- 0 0.0 5.0 44 427 - 2.322 4 5 tcp 1000 ------- 0 0.0 5.0 44 427 r 2.324 1 3 cbr 500 ------- 1 1.0 6.0 225 438 + 2.324 3 4 cbr 500 ------- 1 1.0 6.0 225 438 r 2.326 3 4 cbr 500 ------- 1 1.0 6.0 218 425 + 2.326 4 6 cbr 500 ------- 1 1.0 6.0 218 425 - 2.326 4 6 cbr 500 ------- 1 1.0 6.0 218 425 r 2.328 2 3 cbr 1000 ------- 1 2.0 7.0 110 439 + 2.328 3 4 cbr 1000 ------- 1 2.0 7.0 110 439 - 2.328 3 4 cbr 500 ------- 1 1.0 6.0 224 437 - 2.332 3 4 cbr 500 ------- 1 1.0 6.0 225 438 r 2.334 3 4 tcp 1000 ------- 0 0.0 5.0 45 428 + 2.334 4 5 tcp 1000 ------- 0 0.0 5.0 45 428 - 2.334 4 5 tcp 1000 ------- 0 0.0 5.0 45 428 r 2.334 4 7 cbr 1000 ------- 1 2.0 7.0 106 424 r 2.3356 4 5 tcp 1000 ------- 0 0.0 5.0 43 426 + 2.3356 5 4 ack 40 ------- 0 5.0 0.0 44 441 - 2.3356 5 4 ack 40 ------- 0 5.0 0.0 44 441 - 2.336 3 4 cbr 1000 ------- 1 2.0 7.0 110 439 r 2.338 3 4 cbr 500 ------- 1 1.0 6.0 219 429 + 2.338 4 6 cbr 500 ------- 1 1.0 6.0 219 429 - 2.338 4 6 cbr 500 ------- 1 1.0 6.0 219 429 + 2.34 2 3 cbr 1000 ------- 1 2.0 7.0 112 442 - 2.34 2 3 cbr 1000 ------- 1 2.0 7.0 112 442 r 2.3436 4 5 tcp 1000 ------- 0 0.0 5.0 44 427 + 2.3436 5 4 ack 40 ------- 0 5.0 0.0 44 443 - 2.3436 5 4 ack 40 ------- 0 5.0 0.0 44 443 r 2.346 3 4 cbr 1000 ------- 1 2.0 7.0 107 430 + 2.346 4 7 cbr 1000 ------- 1 2.0 7.0 107 430 - 2.346 4 7 cbr 1000 ------- 1 2.0 7.0 107 430 r 2.348 2 3 cbr 1000 ------- 1 2.0 7.0 111 440 + 2.348 3 4 cbr 1000 ------- 1 2.0 7.0 111 440 - 2.348 3 4 cbr 1000 ------- 1 2.0 7.0 111 440 r 2.35 3 4 cbr 500 ------- 1 1.0 6.0 220 431 + 2.35 4 6 cbr 500 ------- 1 1.0 6.0 220 431 - 2.35 4 6 cbr 500 ------- 1 1.0 6.0 220 431 r 2.35 4 6 cbr 500 ------- 1 1.0 6.0 218 425 r 2.354 3 4 cbr 500 ------- 1 1.0 6.0 221 432 + 2.354 4 6 cbr 500 ------- 1 1.0 6.0 221 432 - 2.354 4 6 cbr 500 ------- 1 1.0 6.0 221 432 r 2.3556 4 5 tcp 1000 ------- 0 0.0 5.0 45 428 + 2.3556 5 4 ack 40 ------- 0 5.0 0.0 48 444 - 2.3556 5 4 ack 40 ------- 0 5.0 0.0 48 444 r 2.35566 5 4 ack 40 ------- 0 5.0 0.0 44 441 + 2.35566 4 3 ack 40 ------- 0 5.0 0.0 44 441 - 2.35566 4 3 ack 40 ------- 0 5.0 0.0 44 441 + 2.36 2 3 cbr 1000 ------- 1 2.0 7.0 113 445 - 2.36 2 3 cbr 1000 ------- 1 2.0 7.0 113 445 r 2.362 3 4 cbr 1000 ------- 1 2.0 7.0 108 433 + 2.362 4 7 cbr 1000 ------- 1 2.0 7.0 108 433 - 2.362 4 7 cbr 1000 ------- 1 2.0 7.0 108 433 r 2.362 4 6 cbr 500 ------- 1 1.0 6.0 219 429 r 2.36366 5 4 ack 40 ------- 0 5.0 0.0 44 443 + 2.36366 4 3 ack 40 ------- 0 5.0 0.0 44 443 - 2.36366 4 3 ack 40 ------- 0 5.0 0.0 44 443 r 2.366 3 4 cbr 500 ------- 1 1.0 6.0 222 434 + 2.366 4 6 cbr 500 ------- 1 1.0 6.0 222 434 - 2.366 4 6 cbr 500 ------- 1 1.0 6.0 222 434 r 2.368 2 3 cbr 1000 ------- 1 2.0 7.0 112 442 + 2.368 3 4 cbr 1000 ------- 1 2.0 7.0 112 442 - 2.368 3 4 cbr 1000 ------- 1 2.0 7.0 112 442 r 2.37 3 4 cbr 500 ------- 1 1.0 6.0 223 435 + 2.37 4 6 cbr 500 ------- 1 1.0 6.0 223 435 - 2.37 4 6 cbr 500 ------- 1 1.0 6.0 223 435 r 2.374 4 7 cbr 1000 ------- 1 2.0 7.0 107 430 r 2.374 4 6 cbr 500 ------- 1 1.0 6.0 220 431 r 2.37566 5 4 ack 40 ------- 0 5.0 0.0 48 444 + 2.37566 4 3 ack 40 ------- 0 5.0 0.0 48 444 - 2.37566 4 3 ack 40 ------- 0 5.0 0.0 48 444 r 2.378 3 4 cbr 1000 ------- 1 2.0 7.0 109 436 + 2.378 4 7 cbr 1000 ------- 1 2.0 7.0 109 436 - 2.378 4 7 cbr 1000 ------- 1 2.0 7.0 109 436 r 2.378 4 6 cbr 500 ------- 1 1.0 6.0 221 432 + 2.38 2 3 cbr 1000 ------- 1 2.0 7.0 114 446 - 2.38 2 3 cbr 1000 ------- 1 2.0 7.0 114 446 r 2.382 3 4 cbr 500 ------- 1 1.0 6.0 224 437 + 2.382 4 6 cbr 500 ------- 1 1.0 6.0 224 437 - 2.382 4 6 cbr 500 ------- 1 1.0 6.0 224 437 r 2.386 3 4 cbr 500 ------- 1 1.0 6.0 225 438 + 2.386 4 6 cbr 500 ------- 1 1.0 6.0 225 438 - 2.386 4 6 cbr 500 ------- 1 1.0 6.0 225 438 r 2.388 2 3 cbr 1000 ------- 1 2.0 7.0 113 445 + 2.388 3 4 cbr 1000 ------- 1 2.0 7.0 113 445 - 2.388 3 4 cbr 1000 ------- 1 2.0 7.0 113 445 r 2.39 4 7 cbr 1000 ------- 1 2.0 7.0 108 433 r 2.39 4 6 cbr 500 ------- 1 1.0 6.0 222 434 r 2.394 3 4 cbr 1000 ------- 1 2.0 7.0 110 439 + 2.394 4 7 cbr 1000 ------- 1 2.0 7.0 110 439 - 2.394 4 7 cbr 1000 ------- 1 2.0 7.0 110 439 r 2.394 4 6 cbr 500 ------- 1 1.0 6.0 223 435 + 2.4 2 3 cbr 1000 ------- 1 2.0 7.0 115 447 - 2.4 2 3 cbr 1000 ------- 1 2.0 7.0 115 447 r 2.40598 4 3 ack 40 ------- 0 5.0 0.0 44 441 + 2.40598 3 0 ack 40 ------- 0 5.0 0.0 44 441 - 2.40598 3 0 ack 40 ------- 0 5.0 0.0 44 441 r 2.406 3 4 cbr 1000 ------- 1 2.0 7.0 111 440 + 2.406 4 7 cbr 1000 ------- 1 2.0 7.0 111 440 - 2.406 4 7 cbr 1000 ------- 1 2.0 7.0 111 440 r 2.406 4 7 cbr 1000 ------- 1 2.0 7.0 109 436 r 2.406 4 6 cbr 500 ------- 1 1.0 6.0 224 437 r 2.408 2 3 cbr 1000 ------- 1 2.0 7.0 114 446 + 2.408 3 4 cbr 1000 ------- 1 2.0 7.0 114 446 - 2.408 3 4 cbr 1000 ------- 1 2.0 7.0 114 446 r 2.41 4 6 cbr 500 ------- 1 1.0 6.0 225 438 r 2.41398 4 3 ack 40 ------- 0 5.0 0.0 44 443 + 2.41398 3 0 ack 40 ------- 0 5.0 0.0 44 443 - 2.41398 3 0 ack 40 ------- 0 5.0 0.0 44 443 + 2.42 2 3 cbr 1000 ------- 1 2.0 7.0 116 448 - 2.42 2 3 cbr 1000 ------- 1 2.0 7.0 116 448 r 2.422 4 7 cbr 1000 ------- 1 2.0 7.0 110 439 r 2.42598 4 3 ack 40 ------- 0 5.0 0.0 48 444 + 2.42598 3 0 ack 40 ------- 0 5.0 0.0 48 444 - 2.42598 3 0 ack 40 ------- 0 5.0 0.0 48 444 r 2.426 3 4 cbr 1000 ------- 1 2.0 7.0 112 442 + 2.426 4 7 cbr 1000 ------- 1 2.0 7.0 112 442 - 2.426 4 7 cbr 1000 ------- 1 2.0 7.0 112 442 r 2.42605 3 0 ack 40 ------- 0 5.0 0.0 44 441 + 2.42605 0 3 tcp 1000 ------- 0 0.0 5.0 46 449 - 2.42605 0 3 tcp 1000 ------- 0 0.0 5.0 46 449 + 2.42605 0 3 tcp 1000 ------- 0 0.0 5.0 47 450 + 2.42605 0 3 tcp 1000 ------- 0 0.0 5.0 48 451 - 2.42765 0 3 tcp 1000 ------- 0 0.0 5.0 47 450 r 2.428 2 3 cbr 1000 ------- 1 2.0 7.0 115 447 + 2.428 3 4 cbr 1000 ------- 1 2.0 7.0 115 447 - 2.428 3 4 cbr 1000 ------- 1 2.0 7.0 115 447 - 2.42925 0 3 tcp 1000 ------- 0 0.0 5.0 48 451 r 2.434 4 7 cbr 1000 ------- 1 2.0 7.0 111 440 r 2.43405 3 0 ack 40 ------- 0 5.0 0.0 44 443 + 2.44 2 3 cbr 1000 ------- 1 2.0 7.0 117 452 - 2.44 2 3 cbr 1000 ------- 1 2.0 7.0 117 452 r 2.446 3 4 cbr 1000 ------- 1 2.0 7.0 113 445 + 2.446 4 7 cbr 1000 ------- 1 2.0 7.0 113 445 - 2.446 4 7 cbr 1000 ------- 1 2.0 7.0 113 445 r 2.44605 3 0 ack 40 ------- 0 5.0 0.0 48 444 + 2.44605 0 3 tcp 1000 ------- 0 0.0 5.0 49 453 - 2.44605 0 3 tcp 1000 ------- 0 0.0 5.0 49 453 + 2.44605 0 3 tcp 1000 ------- 0 0.0 5.0 50 454 + 2.44605 0 3 tcp 1000 ------- 0 0.0 5.0 51 455 + 2.44605 0 3 tcp 1000 ------- 0 0.0 5.0 52 456 + 2.44605 0 3 tcp 1000 ------- 0 0.0 5.0 53 457 r 2.44765 0 3 tcp 1000 ------- 0 0.0 5.0 46 449 + 2.44765 3 4 tcp 1000 ------- 0 0.0 5.0 46 449 - 2.44765 3 4 tcp 1000 ------- 0 0.0 5.0 46 449 - 2.44765 0 3 tcp 1000 ------- 0 0.0 5.0 50 454 r 2.448 2 3 cbr 1000 ------- 1 2.0 7.0 116 448 + 2.448 3 4 cbr 1000 ------- 1 2.0 7.0 116 448 r 2.44925 0 3 tcp 1000 ------- 0 0.0 5.0 47 450 + 2.44925 3 4 tcp 1000 ------- 0 0.0 5.0 47 450 - 2.44925 0 3 tcp 1000 ------- 0 0.0 5.0 51 455 r 2.45085 0 3 tcp 1000 ------- 0 0.0 5.0 48 451 + 2.45085 3 4 tcp 1000 ------- 0 0.0 5.0 48 451 - 2.45085 0 3 tcp 1000 ------- 0 0.0 5.0 52 456 - 2.45245 0 3 tcp 1000 ------- 0 0.0 5.0 53 457 r 2.454 4 7 cbr 1000 ------- 1 2.0 7.0 112 442 - 2.45565 3 4 cbr 1000 ------- 1 2.0 7.0 116 448 + 2.46 2 3 cbr 1000 ------- 1 2.0 7.0 118 458 - 2.46 2 3 cbr 1000 ------- 1 2.0 7.0 118 458 - 2.46365 3 4 tcp 1000 ------- 0 0.0 5.0 47 450 r 2.466 3 4 cbr 1000 ------- 1 2.0 7.0 114 446 + 2.466 4 7 cbr 1000 ------- 1 2.0 7.0 114 446 - 2.466 4 7 cbr 1000 ------- 1 2.0 7.0 114 446 r 2.46765 0 3 tcp 1000 ------- 0 0.0 5.0 49 453 + 2.46765 3 4 tcp 1000 ------- 0 0.0 5.0 49 453 r 2.468 2 3 cbr 1000 ------- 1 2.0 7.0 117 452 + 2.468 3 4 cbr 1000 ------- 1 2.0 7.0 117 452 r 2.46925 0 3 tcp 1000 ------- 0 0.0 5.0 50 454 + 2.46925 3 4 tcp 1000 ------- 0 0.0 5.0 50 454 r 2.47085 0 3 tcp 1000 ------- 0 0.0 5.0 51 455 + 2.47085 3 4 tcp 1000 ------- 0 0.0 5.0 51 455 - 2.47165 3 4 tcp 1000 ------- 0 0.0 5.0 48 451 r 2.47245 0 3 tcp 1000 ------- 0 0.0 5.0 52 456 + 2.47245 3 4 tcp 1000 ------- 0 0.0 5.0 52 456 r 2.474 4 7 cbr 1000 ------- 1 2.0 7.0 113 445 r 2.47405 0 3 tcp 1000 ------- 0 0.0 5.0 53 457 + 2.47405 3 4 tcp 1000 ------- 0 0.0 5.0 53 457 - 2.47965 3 4 tcp 1000 ------- 0 0.0 5.0 49 453 + 2.48 2 3 cbr 1000 ------- 1 2.0 7.0 119 459 - 2.48 2 3 cbr 1000 ------- 1 2.0 7.0 119 459 r 2.486 3 4 cbr 1000 ------- 1 2.0 7.0 115 447 + 2.486 4 7 cbr 1000 ------- 1 2.0 7.0 115 447 - 2.486 4 7 cbr 1000 ------- 1 2.0 7.0 115 447 - 2.48765 3 4 cbr 1000 ------- 1 2.0 7.0 117 452 r 2.488 2 3 cbr 1000 ------- 1 2.0 7.0 118 458 + 2.488 3 4 cbr 1000 ------- 1 2.0 7.0 118 458 r 2.494 4 7 cbr 1000 ------- 1 2.0 7.0 114 446 - 2.49565 3 4 tcp 1000 ------- 0 0.0 5.0 50 454 - 2.50365 3 4 tcp 1000 ------- 0 0.0 5.0 51 455 r 2.50565 3 4 tcp 1000 ------- 0 0.0 5.0 46 449 + 2.50565 4 5 tcp 1000 ------- 0 0.0 5.0 46 449 - 2.50565 4 5 tcp 1000 ------- 0 0.0 5.0 46 449 r 2.508 2 3 cbr 1000 ------- 1 2.0 7.0 119 459 + 2.508 3 4 cbr 1000 ------- 1 2.0 7.0 119 459 - 2.51165 3 4 tcp 1000 ------- 0 0.0 5.0 52 456 r 2.51365 3 4 cbr 1000 ------- 1 2.0 7.0 116 448 + 2.51365 4 7 cbr 1000 ------- 1 2.0 7.0 116 448 - 2.51365 4 7 cbr 1000 ------- 1 2.0 7.0 116 448 r 2.514 4 7 cbr 1000 ------- 1 2.0 7.0 115 447 - 2.51965 3 4 tcp 1000 ------- 0 0.0 5.0 53 457 r 2.52165 3 4 tcp 1000 ------- 0 0.0 5.0 47 450 + 2.52165 4 5 tcp 1000 ------- 0 0.0 5.0 47 450 - 2.52165 4 5 tcp 1000 ------- 0 0.0 5.0 47 450 r 2.52725 4 5 tcp 1000 ------- 0 0.0 5.0 46 449 + 2.52725 5 4 ack 40 ------- 0 5.0 0.0 48 460 - 2.52725 5 4 ack 40 ------- 0 5.0 0.0 48 460 - 2.52765 3 4 cbr 1000 ------- 1 2.0 7.0 118 458 r 2.52965 3 4 tcp 1000 ------- 0 0.0 5.0 48 451 + 2.52965 4 5 tcp 1000 ------- 0 0.0 5.0 48 451 - 2.52965 4 5 tcp 1000 ------- 0 0.0 5.0 48 451 - 2.53565 3 4 cbr 1000 ------- 1 2.0 7.0 119 459 r 2.53765 3 4 tcp 1000 ------- 0 0.0 5.0 49 453 + 2.53765 4 5 tcp 1000 ------- 0 0.0 5.0 49 453 - 2.53765 4 5 tcp 1000 ------- 0 0.0 5.0 49 453 r 2.54165 4 7 cbr 1000 ------- 1 2.0 7.0 116 448 r 2.54325 4 5 tcp 1000 ------- 0 0.0 5.0 47 450 + 2.54325 5 4 ack 40 ------- 0 5.0 0.0 48 461 - 2.54325 5 4 ack 40 ------- 0 5.0 0.0 48 461 r 2.54565 3 4 cbr 1000 ------- 1 2.0 7.0 117 452 + 2.54565 4 7 cbr 1000 ------- 1 2.0 7.0 117 452 - 2.54565 4 7 cbr 1000 ------- 1 2.0 7.0 117 452 r 2.54731 5 4 ack 40 ------- 0 5.0 0.0 48 460 + 2.54731 4 3 ack 40 ------- 0 5.0 0.0 48 460 - 2.54731 4 3 ack 40 ------- 0 5.0 0.0 48 460 v 2.5499999999999998 eval {set sim_annotation {FTP stops}} r 2.55125 4 5 tcp 1000 ------- 0 0.0 5.0 48 451 + 2.55125 5 4 ack 40 ------- 0 5.0 0.0 48 462 - 2.55125 5 4 ack 40 ------- 0 5.0 0.0 48 462 r 2.55365 3 4 tcp 1000 ------- 0 0.0 5.0 50 454 + 2.55365 4 5 tcp 1000 ------- 0 0.0 5.0 50 454 - 2.55365 4 5 tcp 1000 ------- 0 0.0 5.0 50 454 r 2.55925 4 5 tcp 1000 ------- 0 0.0 5.0 49 453 + 2.55925 5 4 ack 40 ------- 0 5.0 0.0 49 463 - 2.55925 5 4 ack 40 ------- 0 5.0 0.0 49 463 r 2.56165 3 4 tcp 1000 ------- 0 0.0 5.0 51 455 + 2.56165 4 5 tcp 1000 ------- 0 0.0 5.0 51 455 - 2.56165 4 5 tcp 1000 ------- 0 0.0 5.0 51 455 r 2.56331 5 4 ack 40 ------- 0 5.0 0.0 48 461 + 2.56331 4 3 ack 40 ------- 0 5.0 0.0 48 461 - 2.56331 4 3 ack 40 ------- 0 5.0 0.0 48 461 r 2.56965 3 4 tcp 1000 ------- 0 0.0 5.0 52 456 + 2.56965 4 5 tcp 1000 ------- 0 0.0 5.0 52 456 - 2.56965 4 5 tcp 1000 ------- 0 0.0 5.0 52 456 r 2.57131 5 4 ack 40 ------- 0 5.0 0.0 48 462 + 2.57131 4 3 ack 40 ------- 0 5.0 0.0 48 462 - 2.57131 4 3 ack 40 ------- 0 5.0 0.0 48 462 r 2.57365 4 7 cbr 1000 ------- 1 2.0 7.0 117 452 r 2.57525 4 5 tcp 1000 ------- 0 0.0 5.0 50 454 + 2.57525 5 4 ack 40 ------- 0 5.0 0.0 50 464 - 2.57525 5 4 ack 40 ------- 0 5.0 0.0 50 464 r 2.57765 3 4 tcp 1000 ------- 0 0.0 5.0 53 457 + 2.57765 4 5 tcp 1000 ------- 0 0.0 5.0 53 457 - 2.57765 4 5 tcp 1000 ------- 0 0.0 5.0 53 457 r 2.57931 5 4 ack 40 ------- 0 5.0 0.0 49 463 + 2.57931 4 3 ack 40 ------- 0 5.0 0.0 49 463 - 2.57931 4 3 ack 40 ------- 0 5.0 0.0 49 463 r 2.58325 4 5 tcp 1000 ------- 0 0.0 5.0 51 455 + 2.58325 5 4 ack 40 ------- 0 5.0 0.0 51 465 - 2.58325 5 4 ack 40 ------- 0 5.0 0.0 51 465 r 2.58565 3 4 cbr 1000 ------- 1 2.0 7.0 118 458 + 2.58565 4 7 cbr 1000 ------- 1 2.0 7.0 118 458 - 2.58565 4 7 cbr 1000 ------- 1 2.0 7.0 118 458 r 2.59125 4 5 tcp 1000 ------- 0 0.0 5.0 52 456 + 2.59125 5 4 ack 40 ------- 0 5.0 0.0 52 466 - 2.59125 5 4 ack 40 ------- 0 5.0 0.0 52 466 r 2.59365 3 4 cbr 1000 ------- 1 2.0 7.0 119 459 + 2.59365 4 7 cbr 1000 ------- 1 2.0 7.0 119 459 - 2.59365 4 7 cbr 1000 ------- 1 2.0 7.0 119 459 r 2.59531 5 4 ack 40 ------- 0 5.0 0.0 50 464 + 2.59531 4 3 ack 40 ------- 0 5.0 0.0 50 464 - 2.59531 4 3 ack 40 ------- 0 5.0 0.0 50 464 r 2.59763 4 3 ack 40 ------- 0 5.0 0.0 48 460 + 2.59763 3 0 ack 40 ------- 0 5.0 0.0 48 460 - 2.59763 3 0 ack 40 ------- 0 5.0 0.0 48 460 r 2.59925 4 5 tcp 1000 ------- 0 0.0 5.0 53 457 + 2.59925 5 4 ack 40 ------- 0 5.0 0.0 53 467 - 2.59925 5 4 ack 40 ------- 0 5.0 0.0 53 467 r 2.60331 5 4 ack 40 ------- 0 5.0 0.0 51 465 + 2.60331 4 3 ack 40 ------- 0 5.0 0.0 51 465 - 2.60331 4 3 ack 40 ------- 0 5.0 0.0 51 465 r 2.61131 5 4 ack 40 ------- 0 5.0 0.0 52 466 + 2.61131 4 3 ack 40 ------- 0 5.0 0.0 52 466 - 2.61131 4 3 ack 40 ------- 0 5.0 0.0 52 466 r 2.61363 4 3 ack 40 ------- 0 5.0 0.0 48 461 + 2.61363 3 0 ack 40 ------- 0 5.0 0.0 48 461 - 2.61363 3 0 ack 40 ------- 0 5.0 0.0 48 461 r 2.61365 4 7 cbr 1000 ------- 1 2.0 7.0 118 458 r 2.6177 3 0 ack 40 ------- 0 5.0 0.0 48 460 r 2.61931 5 4 ack 40 ------- 0 5.0 0.0 53 467 + 2.61931 4 3 ack 40 ------- 0 5.0 0.0 53 467 - 2.61931 4 3 ack 40 ------- 0 5.0 0.0 53 467 r 2.62163 4 3 ack 40 ------- 0 5.0 0.0 48 462 + 2.62163 3 0 ack 40 ------- 0 5.0 0.0 48 462 - 2.62163 3 0 ack 40 ------- 0 5.0 0.0 48 462 r 2.62165 4 7 cbr 1000 ------- 1 2.0 7.0 119 459 r 2.62963 4 3 ack 40 ------- 0 5.0 0.0 49 463 + 2.62963 3 0 ack 40 ------- 0 5.0 0.0 49 463 - 2.62963 3 0 ack 40 ------- 0 5.0 0.0 49 463 r 2.6337 3 0 ack 40 ------- 0 5.0 0.0 48 461 r 2.6417 3 0 ack 40 ------- 0 5.0 0.0 48 462 r 2.64563 4 3 ack 40 ------- 0 5.0 0.0 50 464 + 2.64563 3 0 ack 40 ------- 0 5.0 0.0 50 464 - 2.64563 3 0 ack 40 ------- 0 5.0 0.0 50 464 r 2.6497 3 0 ack 40 ------- 0 5.0 0.0 49 463 r 2.65363 4 3 ack 40 ------- 0 5.0 0.0 51 465 + 2.65363 3 0 ack 40 ------- 0 5.0 0.0 51 465 - 2.65363 3 0 ack 40 ------- 0 5.0 0.0 51 465 r 2.66163 4 3 ack 40 ------- 0 5.0 0.0 52 466 + 2.66163 3 0 ack 40 ------- 0 5.0 0.0 52 466 - 2.66163 3 0 ack 40 ------- 0 5.0 0.0 52 466 r 2.6657 3 0 ack 40 ------- 0 5.0 0.0 50 464 r 2.66963 4 3 ack 40 ------- 0 5.0 0.0 53 467 + 2.66963 3 0 ack 40 ------- 0 5.0 0.0 53 467 - 2.66963 3 0 ack 40 ------- 0 5.0 0.0 53 467 r 2.6737 3 0 ack 40 ------- 0 5.0 0.0 51 465 r 2.6817 3 0 ack 40 ------- 0 5.0 0.0 52 466 r 2.6897 3 0 ack 40 ------- 0 5.0 0.0 53 467 nam-1.15/edu/C4-sliding-color.nam0000664000076400007660000162065706756704675015426 0ustar tomhnsnamV -t * -v 1.0a5 -a 0 A -t * -n 1 -p 0 -o 255 -c 15 -a 1 A -t * -h 1 -m 127 -s 8 c -t * -i 0 -n black c -t * -i 1 -n red n -t * -a 4 -s 4 -S UP -v circle -c black n -t * -a 0 -s 0 -S UP -v circle -c black n -t * -a 5 -s 5 -S UP -v circle -c black n -t * -a 1 -s 1 -S UP -v circle -c black n -t * -a 6 -s 6 -S UP -v circle -c black n -t * -a 2 -s 2 -S UP -v circle -c black n -t * -a 7 -s 7 -S UP -v circle -c black n -t * -a 3 -s 3 -S UP -v circle -c black l -t * -s 0 -d 3 -S UP -r 5000000 -D 0.02 -c black -o right-down l -t * -s 1 -d 3 -S UP -r 1000000 -D 0.02 -c black -o right l -t * -s 2 -d 3 -S UP -r 1000000 -D 0.02 -c black -o right-up l -t * -s 3 -d 4 -S UP -r 1000000 -D 0.050000000000000003 -c black -o right l -t * -s 4 -d 5 -S UP -r 5000000 -D 0.02 -c black -o right-up l -t * -s 4 -d 6 -S UP -r 1000000 -D 0.02 -c black -o right l -t * -s 4 -d 7 -S UP -r 1000000 -D 0.02 -c black -o right-down q -t * -s 3 -d 4 -a 0.5 q -t * -s 4 -d 3 -a 0.5 a -t 0.00000000000000000 -s 0 -d 5 -n tcp f -t 0.00000000000000000 -s 0 -d 5 -n ssthresh_ -a tcp -v 20 -T v f -t 0.00000000000000000 -s 0 -d 5 -n cwnd_ -a tcp -v 8.000000 -T v f -t 0.00000000000000000 -s 0 -d 5 -n ssthresh_ -a tcp -v 20 -o 20 -T v f -t 0.00000000000000000 -s 0 -d 5 -n cwnd_ -a tcp -v 8.000000 -o 8.000000 -T v v -t 0.00000000000000000 monitor_agent 0 tcp n -t 0 -s 0 -S DLABEL -l SLIDING -L "" n -t 0 -s 5 -S DLABEL -l SLIDING -L "" n -t 0 -s 1 -S DLABEL -l CBR-1 -L "" n -t 0 -s 2 -S DLABEL -l CBR-2 -L "" n -t 0 -s 6 -S DLABEL -l CBR-1 -L "" n -t 0 -s 7 -S DLABEL -l CBR-2 -L "" + -t 0.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 0 -a 1 -x {1.0 6.0 0 ------- null} - -t 0.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 0 -a 1 -x {1.0 6.0 0 ------- null} h -t 0.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 0 -a 1 -x {1.0 6.0 -1 ------- null} v -t 0.050000000000000003 sim_annotation 0.050000000000000003 1 CBR-1 starts + -t 0.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 1 -a 1 -x {1.0 6.0 1 ------- null} - -t 0.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 1 -a 1 -x {1.0 6.0 1 ------- null} h -t 0.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 1 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 2 -a 1 -x {1.0 6.0 2 ------- null} - -t 0.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 2 -a 1 -x {1.0 6.0 2 ------- null} h -t 0.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 2 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.074 -s 1 -d 3 -p cbr -e 500 -c 1 -i 0 -a 1 -x {1.0 6.0 0 ------- null} + -t 0.074 -s 3 -d 4 -p cbr -e 500 -c 1 -i 0 -a 1 -x {1.0 6.0 0 ------- null} - -t 0.074 -s 3 -d 4 -p cbr -e 500 -c 1 -i 0 -a 1 -x {1.0 6.0 0 ------- null} h -t 0.074 -s 3 -d 4 -p cbr -e 500 -c 1 -i 0 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 3 -a 1 -x {1.0 6.0 3 ------- null} - -t 0.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 3 -a 1 -x {1.0 6.0 3 ------- null} h -t 0.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 3 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.084 -s 1 -d 3 -p cbr -e 500 -c 1 -i 1 -a 1 -x {1.0 6.0 1 ------- null} + -t 0.084 -s 3 -d 4 -p cbr -e 500 -c 1 -i 1 -a 1 -x {1.0 6.0 1 ------- null} - -t 0.084 -s 3 -d 4 -p cbr -e 500 -c 1 -i 1 -a 1 -x {1.0 6.0 1 ------- null} h -t 0.084 -s 3 -d 4 -p cbr -e 500 -c 1 -i 1 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 4 -a 1 -x {1.0 6.0 4 ------- null} - -t 0.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 4 -a 1 -x {1.0 6.0 4 ------- null} h -t 0.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 4 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.094 -s 1 -d 3 -p cbr -e 500 -c 1 -i 2 -a 1 -x {1.0 6.0 2 ------- null} + -t 0.094 -s 3 -d 4 -p cbr -e 500 -c 1 -i 2 -a 1 -x {1.0 6.0 2 ------- null} - -t 0.094 -s 3 -d 4 -p cbr -e 500 -c 1 -i 2 -a 1 -x {1.0 6.0 2 ------- null} h -t 0.094 -s 3 -d 4 -p cbr -e 500 -c 1 -i 2 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 5 -a 1 -x {1.0 6.0 5 ------- null} - -t 0.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 5 -a 1 -x {1.0 6.0 5 ------- null} h -t 0.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 5 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 6 -a 1 -x {2.0 7.0 0 ------- null} - -t 0.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 6 -a 1 -x {2.0 7.0 0 ------- null} h -t 0.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 6 -a 1 -x {2.0 7.0 -1 ------- null} v -t 0.10000000000000001 sim_annotation 0.10000000000000001 2 CBR-2 starts r -t 0.104 -s 1 -d 3 -p cbr -e 500 -c 1 -i 3 -a 1 -x {1.0 6.0 3 ------- null} + -t 0.104 -s 3 -d 4 -p cbr -e 500 -c 1 -i 3 -a 1 -x {1.0 6.0 3 ------- null} - -t 0.104 -s 3 -d 4 -p cbr -e 500 -c 1 -i 3 -a 1 -x {1.0 6.0 3 ------- null} h -t 0.104 -s 3 -d 4 -p cbr -e 500 -c 1 -i 3 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 7 -a 1 -x {1.0 6.0 6 ------- null} - -t 0.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 7 -a 1 -x {1.0 6.0 6 ------- null} h -t 0.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 7 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.114 -s 1 -d 3 -p cbr -e 500 -c 1 -i 4 -a 1 -x {1.0 6.0 4 ------- null} + -t 0.114 -s 3 -d 4 -p cbr -e 500 -c 1 -i 4 -a 1 -x {1.0 6.0 4 ------- null} - -t 0.114 -s 3 -d 4 -p cbr -e 500 -c 1 -i 4 -a 1 -x {1.0 6.0 4 ------- null} h -t 0.114 -s 3 -d 4 -p cbr -e 500 -c 1 -i 4 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 8 -a 1 -x {1.0 6.0 7 ------- null} - -t 0.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 8 -a 1 -x {1.0 6.0 7 ------- null} h -t 0.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 8 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 9 -a 1 -x {2.0 7.0 1 ------- null} - -t 0.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 9 -a 1 -x {2.0 7.0 1 ------- null} h -t 0.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 9 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.124 -s 1 -d 3 -p cbr -e 500 -c 1 -i 5 -a 1 -x {1.0 6.0 5 ------- null} + -t 0.124 -s 3 -d 4 -p cbr -e 500 -c 1 -i 5 -a 1 -x {1.0 6.0 5 ------- null} - -t 0.124 -s 3 -d 4 -p cbr -e 500 -c 1 -i 5 -a 1 -x {1.0 6.0 5 ------- null} h -t 0.124 -s 3 -d 4 -p cbr -e 500 -c 1 -i 5 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.128 -s 3 -d 4 -p cbr -e 500 -c 1 -i 0 -a 1 -x {1.0 6.0 0 ------- null} + -t 0.128 -s 4 -d 6 -p cbr -e 500 -c 1 -i 0 -a 1 -x {1.0 6.0 0 ------- null} - -t 0.128 -s 4 -d 6 -p cbr -e 500 -c 1 -i 0 -a 1 -x {1.0 6.0 0 ------- null} h -t 0.128 -s 4 -d 6 -p cbr -e 500 -c 1 -i 0 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.128 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 6 -a 1 -x {2.0 7.0 0 ------- null} + -t 0.128 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 6 -a 1 -x {2.0 7.0 0 ------- null} - -t 0.128 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 6 -a 1 -x {2.0 7.0 0 ------- null} h -t 0.128 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 6 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 10 -a 1 -x {1.0 6.0 8 ------- null} - -t 0.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 10 -a 1 -x {1.0 6.0 8 ------- null} h -t 0.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 10 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.134 -s 1 -d 3 -p cbr -e 500 -c 1 -i 7 -a 1 -x {1.0 6.0 6 ------- null} + -t 0.134 -s 3 -d 4 -p cbr -e 500 -c 1 -i 7 -a 1 -x {1.0 6.0 6 ------- null} - -t 0.136 -s 3 -d 4 -p cbr -e 500 -c 1 -i 7 -a 1 -x {1.0 6.0 6 ------- null} h -t 0.136 -s 3 -d 4 -p cbr -e 500 -c 1 -i 7 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.138 -s 3 -d 4 -p cbr -e 500 -c 1 -i 1 -a 1 -x {1.0 6.0 1 ------- null} + -t 0.138 -s 4 -d 6 -p cbr -e 500 -c 1 -i 1 -a 1 -x {1.0 6.0 1 ------- null} - -t 0.138 -s 4 -d 6 -p cbr -e 500 -c 1 -i 1 -a 1 -x {1.0 6.0 1 ------- null} h -t 0.138 -s 4 -d 6 -p cbr -e 500 -c 1 -i 1 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 11 -a 1 -x {1.0 6.0 9 ------- null} - -t 0.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 11 -a 1 -x {1.0 6.0 9 ------- null} h -t 0.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 11 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 12 -a 1 -x {2.0 7.0 2 ------- null} - -t 0.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 12 -a 1 -x {2.0 7.0 2 ------- null} h -t 0.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 12 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.144 -s 1 -d 3 -p cbr -e 500 -c 1 -i 8 -a 1 -x {1.0 6.0 7 ------- null} + -t 0.144 -s 3 -d 4 -p cbr -e 500 -c 1 -i 8 -a 1 -x {1.0 6.0 7 ------- null} - -t 0.144 -s 3 -d 4 -p cbr -e 500 -c 1 -i 8 -a 1 -x {1.0 6.0 7 ------- null} h -t 0.144 -s 3 -d 4 -p cbr -e 500 -c 1 -i 8 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.148 -s 3 -d 4 -p cbr -e 500 -c 1 -i 2 -a 1 -x {1.0 6.0 2 ------- null} + -t 0.148 -s 4 -d 6 -p cbr -e 500 -c 1 -i 2 -a 1 -x {1.0 6.0 2 ------- null} - -t 0.148 -s 4 -d 6 -p cbr -e 500 -c 1 -i 2 -a 1 -x {1.0 6.0 2 ------- null} h -t 0.148 -s 4 -d 6 -p cbr -e 500 -c 1 -i 2 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.148 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 9 -a 1 -x {2.0 7.0 1 ------- null} + -t 0.148 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 9 -a 1 -x {2.0 7.0 1 ------- null} - -t 0.148 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 9 -a 1 -x {2.0 7.0 1 ------- null} h -t 0.148 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 9 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 13 -a 1 -x {1.0 6.0 10 ------- null} - -t 0.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 13 -a 1 -x {1.0 6.0 10 ------- null} h -t 0.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 13 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.152 -s 4 -d 6 -p cbr -e 500 -c 1 -i 0 -a 1 -x {1.0 6.0 0 ------- null} r -t 0.154 -s 1 -d 3 -p cbr -e 500 -c 1 -i 10 -a 1 -x {1.0 6.0 8 ------- null} + -t 0.154 -s 3 -d 4 -p cbr -e 500 -c 1 -i 10 -a 1 -x {1.0 6.0 8 ------- null} - -t 0.156 -s 3 -d 4 -p cbr -e 500 -c 1 -i 10 -a 1 -x {1.0 6.0 8 ------- null} h -t 0.156 -s 3 -d 4 -p cbr -e 500 -c 1 -i 10 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.158 -s 3 -d 4 -p cbr -e 500 -c 1 -i 3 -a 1 -x {1.0 6.0 3 ------- null} + -t 0.158 -s 4 -d 6 -p cbr -e 500 -c 1 -i 3 -a 1 -x {1.0 6.0 3 ------- null} - -t 0.158 -s 4 -d 6 -p cbr -e 500 -c 1 -i 3 -a 1 -x {1.0 6.0 3 ------- null} h -t 0.158 -s 4 -d 6 -p cbr -e 500 -c 1 -i 3 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 14 -a 1 -x {2.0 7.0 3 ------- null} - -t 0.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 14 -a 1 -x {2.0 7.0 3 ------- null} h -t 0.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 14 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 15 -a 1 -x {1.0 6.0 11 ------- null} - -t 0.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 15 -a 1 -x {1.0 6.0 11 ------- null} h -t 0.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 15 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.162 -s 4 -d 6 -p cbr -e 500 -c 1 -i 1 -a 1 -x {1.0 6.0 1 ------- null} r -t 0.164 -s 1 -d 3 -p cbr -e 500 -c 1 -i 11 -a 1 -x {1.0 6.0 9 ------- null} + -t 0.164 -s 3 -d 4 -p cbr -e 500 -c 1 -i 11 -a 1 -x {1.0 6.0 9 ------- null} - -t 0.164 -s 3 -d 4 -p cbr -e 500 -c 1 -i 11 -a 1 -x {1.0 6.0 9 ------- null} h -t 0.164 -s 3 -d 4 -p cbr -e 500 -c 1 -i 11 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.168 -s 3 -d 4 -p cbr -e 500 -c 1 -i 4 -a 1 -x {1.0 6.0 4 ------- null} + -t 0.168 -s 4 -d 6 -p cbr -e 500 -c 1 -i 4 -a 1 -x {1.0 6.0 4 ------- null} - -t 0.168 -s 4 -d 6 -p cbr -e 500 -c 1 -i 4 -a 1 -x {1.0 6.0 4 ------- null} h -t 0.168 -s 4 -d 6 -p cbr -e 500 -c 1 -i 4 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.168 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 12 -a 1 -x {2.0 7.0 2 ------- null} + -t 0.168 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 12 -a 1 -x {2.0 7.0 2 ------- null} - -t 0.168 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 12 -a 1 -x {2.0 7.0 2 ------- null} h -t 0.168 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 12 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 16 -a 1 -x {1.0 6.0 12 ------- null} - -t 0.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 16 -a 1 -x {1.0 6.0 12 ------- null} h -t 0.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 16 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.172 -s 4 -d 6 -p cbr -e 500 -c 1 -i 2 -a 1 -x {1.0 6.0 2 ------- null} r -t 0.174 -s 1 -d 3 -p cbr -e 500 -c 1 -i 13 -a 1 -x {1.0 6.0 10 ------- null} + -t 0.174 -s 3 -d 4 -p cbr -e 500 -c 1 -i 13 -a 1 -x {1.0 6.0 10 ------- null} - -t 0.176 -s 3 -d 4 -p cbr -e 500 -c 1 -i 13 -a 1 -x {1.0 6.0 10 ------- null} h -t 0.176 -s 3 -d 4 -p cbr -e 500 -c 1 -i 13 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.178 -s 3 -d 4 -p cbr -e 500 -c 1 -i 5 -a 1 -x {1.0 6.0 5 ------- null} + -t 0.178 -s 4 -d 6 -p cbr -e 500 -c 1 -i 5 -a 1 -x {1.0 6.0 5 ------- null} - -t 0.178 -s 4 -d 6 -p cbr -e 500 -c 1 -i 5 -a 1 -x {1.0 6.0 5 ------- null} h -t 0.178 -s 4 -d 6 -p cbr -e 500 -c 1 -i 5 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 17 -a 1 -x {2.0 7.0 4 ------- null} - -t 0.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 17 -a 1 -x {2.0 7.0 4 ------- null} h -t 0.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 17 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 18 -a 1 -x {1.0 6.0 13 ------- null} - -t 0.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 18 -a 1 -x {1.0 6.0 13 ------- null} h -t 0.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 18 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.182 -s 4 -d 6 -p cbr -e 500 -c 1 -i 3 -a 1 -x {1.0 6.0 3 ------- null} r -t 0.184 -s 1 -d 3 -p cbr -e 500 -c 1 -i 15 -a 1 -x {1.0 6.0 11 ------- null} + -t 0.184 -s 3 -d 4 -p cbr -e 500 -c 1 -i 15 -a 1 -x {1.0 6.0 11 ------- null} - -t 0.184 -s 3 -d 4 -p cbr -e 500 -c 1 -i 15 -a 1 -x {1.0 6.0 11 ------- null} h -t 0.184 -s 3 -d 4 -p cbr -e 500 -c 1 -i 15 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.186 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 6 -a 1 -x {2.0 7.0 0 ------- null} + -t 0.186 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 6 -a 1 -x {2.0 7.0 0 ------- null} - -t 0.186 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 6 -a 1 -x {2.0 7.0 0 ------- null} h -t 0.186 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 6 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.188 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 14 -a 1 -x {2.0 7.0 3 ------- null} + -t 0.188 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 14 -a 1 -x {2.0 7.0 3 ------- null} - -t 0.188 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 14 -a 1 -x {2.0 7.0 3 ------- null} h -t 0.188 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 14 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.19 -s 3 -d 4 -p cbr -e 500 -c 1 -i 7 -a 1 -x {1.0 6.0 6 ------- null} + -t 0.19 -s 4 -d 6 -p cbr -e 500 -c 1 -i 7 -a 1 -x {1.0 6.0 6 ------- null} - -t 0.19 -s 4 -d 6 -p cbr -e 500 -c 1 -i 7 -a 1 -x {1.0 6.0 6 ------- null} h -t 0.19 -s 4 -d 6 -p cbr -e 500 -c 1 -i 7 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 19 -a 1 -x {1.0 6.0 14 ------- null} - -t 0.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 19 -a 1 -x {1.0 6.0 14 ------- null} h -t 0.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 19 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.192 -s 4 -d 6 -p cbr -e 500 -c 1 -i 4 -a 1 -x {1.0 6.0 4 ------- null} r -t 0.194 -s 1 -d 3 -p cbr -e 500 -c 1 -i 16 -a 1 -x {1.0 6.0 12 ------- null} + -t 0.194 -s 3 -d 4 -p cbr -e 500 -c 1 -i 16 -a 1 -x {1.0 6.0 12 ------- null} - -t 0.196 -s 3 -d 4 -p cbr -e 500 -c 1 -i 16 -a 1 -x {1.0 6.0 12 ------- null} h -t 0.196 -s 3 -d 4 -p cbr -e 500 -c 1 -i 16 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.198 -s 3 -d 4 -p cbr -e 500 -c 1 -i 8 -a 1 -x {1.0 6.0 7 ------- null} + -t 0.198 -s 4 -d 6 -p cbr -e 500 -c 1 -i 8 -a 1 -x {1.0 6.0 7 ------- null} - -t 0.198 -s 4 -d 6 -p cbr -e 500 -c 1 -i 8 -a 1 -x {1.0 6.0 7 ------- null} h -t 0.198 -s 4 -d 6 -p cbr -e 500 -c 1 -i 8 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 20 -a 1 -x {2.0 7.0 5 ------- null} - -t 0.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 20 -a 1 -x {2.0 7.0 5 ------- null} h -t 0.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 20 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 21 -a 1 -x {1.0 6.0 15 ------- null} - -t 0.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 21 -a 1 -x {1.0 6.0 15 ------- null} h -t 0.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 21 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.202 -s 4 -d 6 -p cbr -e 500 -c 1 -i 5 -a 1 -x {1.0 6.0 5 ------- null} r -t 0.204 -s 1 -d 3 -p cbr -e 500 -c 1 -i 18 -a 1 -x {1.0 6.0 13 ------- null} + -t 0.204 -s 3 -d 4 -p cbr -e 500 -c 1 -i 18 -a 1 -x {1.0 6.0 13 ------- null} - -t 0.204 -s 3 -d 4 -p cbr -e 500 -c 1 -i 18 -a 1 -x {1.0 6.0 13 ------- null} h -t 0.204 -s 3 -d 4 -p cbr -e 500 -c 1 -i 18 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.206 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 9 -a 1 -x {2.0 7.0 1 ------- null} + -t 0.206 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 9 -a 1 -x {2.0 7.0 1 ------- null} - -t 0.206 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 9 -a 1 -x {2.0 7.0 1 ------- null} h -t 0.206 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 9 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.208 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 17 -a 1 -x {2.0 7.0 4 ------- null} + -t 0.208 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 17 -a 1 -x {2.0 7.0 4 ------- null} - -t 0.208 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 17 -a 1 -x {2.0 7.0 4 ------- null} h -t 0.208 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 17 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.21 -s 3 -d 4 -p cbr -e 500 -c 1 -i 10 -a 1 -x {1.0 6.0 8 ------- null} + -t 0.21 -s 4 -d 6 -p cbr -e 500 -c 1 -i 10 -a 1 -x {1.0 6.0 8 ------- null} - -t 0.21 -s 4 -d 6 -p cbr -e 500 -c 1 -i 10 -a 1 -x {1.0 6.0 8 ------- null} h -t 0.21 -s 4 -d 6 -p cbr -e 500 -c 1 -i 10 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 22 -a 1 -x {1.0 6.0 16 ------- null} - -t 0.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 22 -a 1 -x {1.0 6.0 16 ------- null} h -t 0.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 22 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.214 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 6 -a 1 -x {2.0 7.0 0 ------- null} r -t 0.214 -s 4 -d 6 -p cbr -e 500 -c 1 -i 7 -a 1 -x {1.0 6.0 6 ------- null} r -t 0.214 -s 1 -d 3 -p cbr -e 500 -c 1 -i 19 -a 1 -x {1.0 6.0 14 ------- null} + -t 0.214 -s 3 -d 4 -p cbr -e 500 -c 1 -i 19 -a 1 -x {1.0 6.0 14 ------- null} - -t 0.216 -s 3 -d 4 -p cbr -e 500 -c 1 -i 19 -a 1 -x {1.0 6.0 14 ------- null} h -t 0.216 -s 3 -d 4 -p cbr -e 500 -c 1 -i 19 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.218 -s 3 -d 4 -p cbr -e 500 -c 1 -i 11 -a 1 -x {1.0 6.0 9 ------- null} + -t 0.218 -s 4 -d 6 -p cbr -e 500 -c 1 -i 11 -a 1 -x {1.0 6.0 9 ------- null} - -t 0.218 -s 4 -d 6 -p cbr -e 500 -c 1 -i 11 -a 1 -x {1.0 6.0 9 ------- null} h -t 0.218 -s 4 -d 6 -p cbr -e 500 -c 1 -i 11 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 23 -a 1 -x {2.0 7.0 6 ------- null} - -t 0.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 23 -a 1 -x {2.0 7.0 6 ------- null} h -t 0.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 23 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 24 -a 1 -x {1.0 6.0 17 ------- null} - -t 0.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 24 -a 1 -x {1.0 6.0 17 ------- null} h -t 0.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 24 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.222 -s 4 -d 6 -p cbr -e 500 -c 1 -i 8 -a 1 -x {1.0 6.0 7 ------- null} r -t 0.224 -s 1 -d 3 -p cbr -e 500 -c 1 -i 21 -a 1 -x {1.0 6.0 15 ------- null} + -t 0.224 -s 3 -d 4 -p cbr -e 500 -c 1 -i 21 -a 1 -x {1.0 6.0 15 ------- null} - -t 0.224 -s 3 -d 4 -p cbr -e 500 -c 1 -i 21 -a 1 -x {1.0 6.0 15 ------- null} h -t 0.224 -s 3 -d 4 -p cbr -e 500 -c 1 -i 21 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.226 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 12 -a 1 -x {2.0 7.0 2 ------- null} + -t 0.226 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 12 -a 1 -x {2.0 7.0 2 ------- null} - -t 0.226 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 12 -a 1 -x {2.0 7.0 2 ------- null} h -t 0.226 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 12 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.228 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 20 -a 1 -x {2.0 7.0 5 ------- null} + -t 0.228 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 20 -a 1 -x {2.0 7.0 5 ------- null} - -t 0.228 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 20 -a 1 -x {2.0 7.0 5 ------- null} h -t 0.228 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 20 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.23 -s 3 -d 4 -p cbr -e 500 -c 1 -i 13 -a 1 -x {1.0 6.0 10 ------- null} + -t 0.23 -s 4 -d 6 -p cbr -e 500 -c 1 -i 13 -a 1 -x {1.0 6.0 10 ------- null} - -t 0.23 -s 4 -d 6 -p cbr -e 500 -c 1 -i 13 -a 1 -x {1.0 6.0 10 ------- null} h -t 0.23 -s 4 -d 6 -p cbr -e 500 -c 1 -i 13 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 25 -a 1 -x {1.0 6.0 18 ------- null} - -t 0.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 25 -a 1 -x {1.0 6.0 18 ------- null} h -t 0.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 25 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.234 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 9 -a 1 -x {2.0 7.0 1 ------- null} r -t 0.234 -s 4 -d 6 -p cbr -e 500 -c 1 -i 10 -a 1 -x {1.0 6.0 8 ------- null} r -t 0.234 -s 1 -d 3 -p cbr -e 500 -c 1 -i 22 -a 1 -x {1.0 6.0 16 ------- null} + -t 0.234 -s 3 -d 4 -p cbr -e 500 -c 1 -i 22 -a 1 -x {1.0 6.0 16 ------- null} - -t 0.236 -s 3 -d 4 -p cbr -e 500 -c 1 -i 22 -a 1 -x {1.0 6.0 16 ------- null} h -t 0.236 -s 3 -d 4 -p cbr -e 500 -c 1 -i 22 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.238 -s 3 -d 4 -p cbr -e 500 -c 1 -i 15 -a 1 -x {1.0 6.0 11 ------- null} + -t 0.238 -s 4 -d 6 -p cbr -e 500 -c 1 -i 15 -a 1 -x {1.0 6.0 11 ------- null} - -t 0.238 -s 4 -d 6 -p cbr -e 500 -c 1 -i 15 -a 1 -x {1.0 6.0 11 ------- null} h -t 0.238 -s 4 -d 6 -p cbr -e 500 -c 1 -i 15 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 26 -a 1 -x {2.0 7.0 7 ------- null} - -t 0.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 26 -a 1 -x {2.0 7.0 7 ------- null} h -t 0.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 26 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 27 -a 1 -x {1.0 6.0 19 ------- null} - -t 0.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 27 -a 1 -x {1.0 6.0 19 ------- null} h -t 0.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 27 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.242 -s 4 -d 6 -p cbr -e 500 -c 1 -i 11 -a 1 -x {1.0 6.0 9 ------- null} r -t 0.244 -s 1 -d 3 -p cbr -e 500 -c 1 -i 24 -a 1 -x {1.0 6.0 17 ------- null} + -t 0.244 -s 3 -d 4 -p cbr -e 500 -c 1 -i 24 -a 1 -x {1.0 6.0 17 ------- null} - -t 0.244 -s 3 -d 4 -p cbr -e 500 -c 1 -i 24 -a 1 -x {1.0 6.0 17 ------- null} h -t 0.244 -s 3 -d 4 -p cbr -e 500 -c 1 -i 24 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.246 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 14 -a 1 -x {2.0 7.0 3 ------- null} + -t 0.246 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 14 -a 1 -x {2.0 7.0 3 ------- null} - -t 0.246 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 14 -a 1 -x {2.0 7.0 3 ------- null} h -t 0.246 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 14 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.248 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 23 -a 1 -x {2.0 7.0 6 ------- null} + -t 0.248 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 23 -a 1 -x {2.0 7.0 6 ------- null} - -t 0.248 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 23 -a 1 -x {2.0 7.0 6 ------- null} h -t 0.248 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 23 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.25 -s 3 -d 4 -p cbr -e 500 -c 1 -i 16 -a 1 -x {1.0 6.0 12 ------- null} + -t 0.25 -s 4 -d 6 -p cbr -e 500 -c 1 -i 16 -a 1 -x {1.0 6.0 12 ------- null} - -t 0.25 -s 4 -d 6 -p cbr -e 500 -c 1 -i 16 -a 1 -x {1.0 6.0 12 ------- null} h -t 0.25 -s 4 -d 6 -p cbr -e 500 -c 1 -i 16 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 28 -a 1 -x {1.0 6.0 20 ------- null} - -t 0.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 28 -a 1 -x {1.0 6.0 20 ------- null} h -t 0.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 28 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.254 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 12 -a 1 -x {2.0 7.0 2 ------- null} r -t 0.254 -s 4 -d 6 -p cbr -e 500 -c 1 -i 13 -a 1 -x {1.0 6.0 10 ------- null} r -t 0.254 -s 1 -d 3 -p cbr -e 500 -c 1 -i 25 -a 1 -x {1.0 6.0 18 ------- null} + -t 0.254 -s 3 -d 4 -p cbr -e 500 -c 1 -i 25 -a 1 -x {1.0 6.0 18 ------- null} - -t 0.256 -s 3 -d 4 -p cbr -e 500 -c 1 -i 25 -a 1 -x {1.0 6.0 18 ------- null} h -t 0.256 -s 3 -d 4 -p cbr -e 500 -c 1 -i 25 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.258 -s 3 -d 4 -p cbr -e 500 -c 1 -i 18 -a 1 -x {1.0 6.0 13 ------- null} + -t 0.258 -s 4 -d 6 -p cbr -e 500 -c 1 -i 18 -a 1 -x {1.0 6.0 13 ------- null} - -t 0.258 -s 4 -d 6 -p cbr -e 500 -c 1 -i 18 -a 1 -x {1.0 6.0 13 ------- null} h -t 0.258 -s 4 -d 6 -p cbr -e 500 -c 1 -i 18 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 29 -a 1 -x {2.0 7.0 8 ------- null} - -t 0.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 29 -a 1 -x {2.0 7.0 8 ------- null} h -t 0.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 29 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 30 -a 1 -x {1.0 6.0 21 ------- null} - -t 0.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 30 -a 1 -x {1.0 6.0 21 ------- null} h -t 0.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 30 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.262 -s 4 -d 6 -p cbr -e 500 -c 1 -i 15 -a 1 -x {1.0 6.0 11 ------- null} r -t 0.264 -s 1 -d 3 -p cbr -e 500 -c 1 -i 27 -a 1 -x {1.0 6.0 19 ------- null} + -t 0.264 -s 3 -d 4 -p cbr -e 500 -c 1 -i 27 -a 1 -x {1.0 6.0 19 ------- null} - -t 0.264 -s 3 -d 4 -p cbr -e 500 -c 1 -i 27 -a 1 -x {1.0 6.0 19 ------- null} h -t 0.264 -s 3 -d 4 -p cbr -e 500 -c 1 -i 27 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.266 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 17 -a 1 -x {2.0 7.0 4 ------- null} + -t 0.266 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 17 -a 1 -x {2.0 7.0 4 ------- null} - -t 0.266 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 17 -a 1 -x {2.0 7.0 4 ------- null} h -t 0.266 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 17 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.268 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 26 -a 1 -x {2.0 7.0 7 ------- null} + -t 0.268 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 26 -a 1 -x {2.0 7.0 7 ------- null} - -t 0.268 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 26 -a 1 -x {2.0 7.0 7 ------- null} h -t 0.268 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 26 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.27 -s 3 -d 4 -p cbr -e 500 -c 1 -i 19 -a 1 -x {1.0 6.0 14 ------- null} + -t 0.27 -s 4 -d 6 -p cbr -e 500 -c 1 -i 19 -a 1 -x {1.0 6.0 14 ------- null} - -t 0.27 -s 4 -d 6 -p cbr -e 500 -c 1 -i 19 -a 1 -x {1.0 6.0 14 ------- null} h -t 0.27 -s 4 -d 6 -p cbr -e 500 -c 1 -i 19 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 31 -a 1 -x {1.0 6.0 22 ------- null} - -t 0.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 31 -a 1 -x {1.0 6.0 22 ------- null} h -t 0.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 31 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.274 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 14 -a 1 -x {2.0 7.0 3 ------- null} r -t 0.274 -s 4 -d 6 -p cbr -e 500 -c 1 -i 16 -a 1 -x {1.0 6.0 12 ------- null} r -t 0.274 -s 1 -d 3 -p cbr -e 500 -c 1 -i 28 -a 1 -x {1.0 6.0 20 ------- null} + -t 0.274 -s 3 -d 4 -p cbr -e 500 -c 1 -i 28 -a 1 -x {1.0 6.0 20 ------- null} - -t 0.276 -s 3 -d 4 -p cbr -e 500 -c 1 -i 28 -a 1 -x {1.0 6.0 20 ------- null} h -t 0.276 -s 3 -d 4 -p cbr -e 500 -c 1 -i 28 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.278 -s 3 -d 4 -p cbr -e 500 -c 1 -i 21 -a 1 -x {1.0 6.0 15 ------- null} + -t 0.278 -s 4 -d 6 -p cbr -e 500 -c 1 -i 21 -a 1 -x {1.0 6.0 15 ------- null} - -t 0.278 -s 4 -d 6 -p cbr -e 500 -c 1 -i 21 -a 1 -x {1.0 6.0 15 ------- null} h -t 0.278 -s 4 -d 6 -p cbr -e 500 -c 1 -i 21 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 32 -a 1 -x {2.0 7.0 9 ------- null} - -t 0.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 32 -a 1 -x {2.0 7.0 9 ------- null} h -t 0.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 32 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 33 -a 1 -x {1.0 6.0 23 ------- null} - -t 0.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 33 -a 1 -x {1.0 6.0 23 ------- null} h -t 0.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 33 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.282 -s 4 -d 6 -p cbr -e 500 -c 1 -i 18 -a 1 -x {1.0 6.0 13 ------- null} r -t 0.284 -s 1 -d 3 -p cbr -e 500 -c 1 -i 30 -a 1 -x {1.0 6.0 21 ------- null} + -t 0.284 -s 3 -d 4 -p cbr -e 500 -c 1 -i 30 -a 1 -x {1.0 6.0 21 ------- null} - -t 0.284 -s 3 -d 4 -p cbr -e 500 -c 1 -i 30 -a 1 -x {1.0 6.0 21 ------- null} h -t 0.284 -s 3 -d 4 -p cbr -e 500 -c 1 -i 30 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.286 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 20 -a 1 -x {2.0 7.0 5 ------- null} + -t 0.286 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 20 -a 1 -x {2.0 7.0 5 ------- null} - -t 0.286 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 20 -a 1 -x {2.0 7.0 5 ------- null} h -t 0.286 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 20 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.288 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 29 -a 1 -x {2.0 7.0 8 ------- null} + -t 0.288 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 29 -a 1 -x {2.0 7.0 8 ------- null} - -t 0.288 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 29 -a 1 -x {2.0 7.0 8 ------- null} h -t 0.288 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 29 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.29 -s 3 -d 4 -p cbr -e 500 -c 1 -i 22 -a 1 -x {1.0 6.0 16 ------- null} + -t 0.29 -s 4 -d 6 -p cbr -e 500 -c 1 -i 22 -a 1 -x {1.0 6.0 16 ------- null} - -t 0.29 -s 4 -d 6 -p cbr -e 500 -c 1 -i 22 -a 1 -x {1.0 6.0 16 ------- null} h -t 0.29 -s 4 -d 6 -p cbr -e 500 -c 1 -i 22 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 34 -a 1 -x {1.0 6.0 24 ------- null} - -t 0.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 34 -a 1 -x {1.0 6.0 24 ------- null} h -t 0.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 34 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.294 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 17 -a 1 -x {2.0 7.0 4 ------- null} r -t 0.294 -s 4 -d 6 -p cbr -e 500 -c 1 -i 19 -a 1 -x {1.0 6.0 14 ------- null} r -t 0.294 -s 1 -d 3 -p cbr -e 500 -c 1 -i 31 -a 1 -x {1.0 6.0 22 ------- null} + -t 0.294 -s 3 -d 4 -p cbr -e 500 -c 1 -i 31 -a 1 -x {1.0 6.0 22 ------- null} - -t 0.296 -s 3 -d 4 -p cbr -e 500 -c 1 -i 31 -a 1 -x {1.0 6.0 22 ------- null} h -t 0.296 -s 3 -d 4 -p cbr -e 500 -c 1 -i 31 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.298 -s 3 -d 4 -p cbr -e 500 -c 1 -i 24 -a 1 -x {1.0 6.0 17 ------- null} + -t 0.298 -s 4 -d 6 -p cbr -e 500 -c 1 -i 24 -a 1 -x {1.0 6.0 17 ------- null} - -t 0.298 -s 4 -d 6 -p cbr -e 500 -c 1 -i 24 -a 1 -x {1.0 6.0 17 ------- null} h -t 0.298 -s 4 -d 6 -p cbr -e 500 -c 1 -i 24 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 35 -a 1 -x {2.0 7.0 10 ------- null} - -t 0.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 35 -a 1 -x {2.0 7.0 10 ------- null} h -t 0.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 35 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.3 -s 1 -d 3 -p cbr -e 500 -c 1 -i 36 -a 1 -x {1.0 6.0 25 ------- null} - -t 0.3 -s 1 -d 3 -p cbr -e 500 -c 1 -i 36 -a 1 -x {1.0 6.0 25 ------- null} h -t 0.3 -s 1 -d 3 -p cbr -e 500 -c 1 -i 36 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.302 -s 4 -d 6 -p cbr -e 500 -c 1 -i 21 -a 1 -x {1.0 6.0 15 ------- null} r -t 0.304 -s 1 -d 3 -p cbr -e 500 -c 1 -i 33 -a 1 -x {1.0 6.0 23 ------- null} + -t 0.304 -s 3 -d 4 -p cbr -e 500 -c 1 -i 33 -a 1 -x {1.0 6.0 23 ------- null} - -t 0.304 -s 3 -d 4 -p cbr -e 500 -c 1 -i 33 -a 1 -x {1.0 6.0 23 ------- null} h -t 0.304 -s 3 -d 4 -p cbr -e 500 -c 1 -i 33 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.306 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 23 -a 1 -x {2.0 7.0 6 ------- null} + -t 0.306 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 23 -a 1 -x {2.0 7.0 6 ------- null} - -t 0.306 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 23 -a 1 -x {2.0 7.0 6 ------- null} h -t 0.306 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 23 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.308 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 32 -a 1 -x {2.0 7.0 9 ------- null} + -t 0.308 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 32 -a 1 -x {2.0 7.0 9 ------- null} - -t 0.308 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 32 -a 1 -x {2.0 7.0 9 ------- null} h -t 0.308 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 32 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.31 -s 3 -d 4 -p cbr -e 500 -c 1 -i 25 -a 1 -x {1.0 6.0 18 ------- null} + -t 0.31 -s 4 -d 6 -p cbr -e 500 -c 1 -i 25 -a 1 -x {1.0 6.0 18 ------- null} - -t 0.31 -s 4 -d 6 -p cbr -e 500 -c 1 -i 25 -a 1 -x {1.0 6.0 18 ------- null} h -t 0.31 -s 4 -d 6 -p cbr -e 500 -c 1 -i 25 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.31 -s 1 -d 3 -p cbr -e 500 -c 1 -i 37 -a 1 -x {1.0 6.0 26 ------- null} - -t 0.31 -s 1 -d 3 -p cbr -e 500 -c 1 -i 37 -a 1 -x {1.0 6.0 26 ------- null} h -t 0.31 -s 1 -d 3 -p cbr -e 500 -c 1 -i 37 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.314 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 20 -a 1 -x {2.0 7.0 5 ------- null} r -t 0.314 -s 4 -d 6 -p cbr -e 500 -c 1 -i 22 -a 1 -x {1.0 6.0 16 ------- null} r -t 0.314 -s 1 -d 3 -p cbr -e 500 -c 1 -i 34 -a 1 -x {1.0 6.0 24 ------- null} + -t 0.314 -s 3 -d 4 -p cbr -e 500 -c 1 -i 34 -a 1 -x {1.0 6.0 24 ------- null} - -t 0.316 -s 3 -d 4 -p cbr -e 500 -c 1 -i 34 -a 1 -x {1.0 6.0 24 ------- null} h -t 0.316 -s 3 -d 4 -p cbr -e 500 -c 1 -i 34 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.318 -s 3 -d 4 -p cbr -e 500 -c 1 -i 27 -a 1 -x {1.0 6.0 19 ------- null} + -t 0.318 -s 4 -d 6 -p cbr -e 500 -c 1 -i 27 -a 1 -x {1.0 6.0 19 ------- null} - -t 0.318 -s 4 -d 6 -p cbr -e 500 -c 1 -i 27 -a 1 -x {1.0 6.0 19 ------- null} h -t 0.318 -s 4 -d 6 -p cbr -e 500 -c 1 -i 27 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 38 -a 1 -x {2.0 7.0 11 ------- null} - -t 0.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 38 -a 1 -x {2.0 7.0 11 ------- null} h -t 0.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 38 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.32 -s 1 -d 3 -p cbr -e 500 -c 1 -i 39 -a 1 -x {1.0 6.0 27 ------- null} - -t 0.32 -s 1 -d 3 -p cbr -e 500 -c 1 -i 39 -a 1 -x {1.0 6.0 27 ------- null} h -t 0.32 -s 1 -d 3 -p cbr -e 500 -c 1 -i 39 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.322 -s 4 -d 6 -p cbr -e 500 -c 1 -i 24 -a 1 -x {1.0 6.0 17 ------- null} r -t 0.324 -s 1 -d 3 -p cbr -e 500 -c 1 -i 36 -a 1 -x {1.0 6.0 25 ------- null} + -t 0.324 -s 3 -d 4 -p cbr -e 500 -c 1 -i 36 -a 1 -x {1.0 6.0 25 ------- null} - -t 0.324 -s 3 -d 4 -p cbr -e 500 -c 1 -i 36 -a 1 -x {1.0 6.0 25 ------- null} h -t 0.324 -s 3 -d 4 -p cbr -e 500 -c 1 -i 36 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.326 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 26 -a 1 -x {2.0 7.0 7 ------- null} + -t 0.326 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 26 -a 1 -x {2.0 7.0 7 ------- null} - -t 0.326 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 26 -a 1 -x {2.0 7.0 7 ------- null} h -t 0.326 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 26 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.328 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 35 -a 1 -x {2.0 7.0 10 ------- null} + -t 0.328 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 35 -a 1 -x {2.0 7.0 10 ------- null} - -t 0.328 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 35 -a 1 -x {2.0 7.0 10 ------- null} h -t 0.328 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 35 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.33 -s 3 -d 4 -p cbr -e 500 -c 1 -i 28 -a 1 -x {1.0 6.0 20 ------- null} + -t 0.33 -s 4 -d 6 -p cbr -e 500 -c 1 -i 28 -a 1 -x {1.0 6.0 20 ------- null} - -t 0.33 -s 4 -d 6 -p cbr -e 500 -c 1 -i 28 -a 1 -x {1.0 6.0 20 ------- null} h -t 0.33 -s 4 -d 6 -p cbr -e 500 -c 1 -i 28 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.33 -s 1 -d 3 -p cbr -e 500 -c 1 -i 40 -a 1 -x {1.0 6.0 28 ------- null} - -t 0.33 -s 1 -d 3 -p cbr -e 500 -c 1 -i 40 -a 1 -x {1.0 6.0 28 ------- null} h -t 0.33 -s 1 -d 3 -p cbr -e 500 -c 1 -i 40 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.334 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 23 -a 1 -x {2.0 7.0 6 ------- null} r -t 0.334 -s 4 -d 6 -p cbr -e 500 -c 1 -i 25 -a 1 -x {1.0 6.0 18 ------- null} r -t 0.334 -s 1 -d 3 -p cbr -e 500 -c 1 -i 37 -a 1 -x {1.0 6.0 26 ------- null} + -t 0.334 -s 3 -d 4 -p cbr -e 500 -c 1 -i 37 -a 1 -x {1.0 6.0 26 ------- null} - -t 0.336 -s 3 -d 4 -p cbr -e 500 -c 1 -i 37 -a 1 -x {1.0 6.0 26 ------- null} h -t 0.336 -s 3 -d 4 -p cbr -e 500 -c 1 -i 37 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.338 -s 3 -d 4 -p cbr -e 500 -c 1 -i 30 -a 1 -x {1.0 6.0 21 ------- null} + -t 0.338 -s 4 -d 6 -p cbr -e 500 -c 1 -i 30 -a 1 -x {1.0 6.0 21 ------- null} - -t 0.338 -s 4 -d 6 -p cbr -e 500 -c 1 -i 30 -a 1 -x {1.0 6.0 21 ------- null} h -t 0.338 -s 4 -d 6 -p cbr -e 500 -c 1 -i 30 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 41 -a 1 -x {2.0 7.0 12 ------- null} - -t 0.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 41 -a 1 -x {2.0 7.0 12 ------- null} h -t 0.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 41 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.34 -s 1 -d 3 -p cbr -e 500 -c 1 -i 42 -a 1 -x {1.0 6.0 29 ------- null} - -t 0.34 -s 1 -d 3 -p cbr -e 500 -c 1 -i 42 -a 1 -x {1.0 6.0 29 ------- null} h -t 0.34 -s 1 -d 3 -p cbr -e 500 -c 1 -i 42 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.342 -s 4 -d 6 -p cbr -e 500 -c 1 -i 27 -a 1 -x {1.0 6.0 19 ------- null} r -t 0.344 -s 1 -d 3 -p cbr -e 500 -c 1 -i 39 -a 1 -x {1.0 6.0 27 ------- null} + -t 0.344 -s 3 -d 4 -p cbr -e 500 -c 1 -i 39 -a 1 -x {1.0 6.0 27 ------- null} - -t 0.344 -s 3 -d 4 -p cbr -e 500 -c 1 -i 39 -a 1 -x {1.0 6.0 27 ------- null} h -t 0.344 -s 3 -d 4 -p cbr -e 500 -c 1 -i 39 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.346 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 29 -a 1 -x {2.0 7.0 8 ------- null} + -t 0.346 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 29 -a 1 -x {2.0 7.0 8 ------- null} - -t 0.346 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 29 -a 1 -x {2.0 7.0 8 ------- null} h -t 0.346 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 29 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.348 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 38 -a 1 -x {2.0 7.0 11 ------- null} + -t 0.348 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 38 -a 1 -x {2.0 7.0 11 ------- null} - -t 0.348 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 38 -a 1 -x {2.0 7.0 11 ------- null} h -t 0.348 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 38 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.35 -s 3 -d 4 -p cbr -e 500 -c 1 -i 31 -a 1 -x {1.0 6.0 22 ------- null} + -t 0.35 -s 4 -d 6 -p cbr -e 500 -c 1 -i 31 -a 1 -x {1.0 6.0 22 ------- null} - -t 0.35 -s 4 -d 6 -p cbr -e 500 -c 1 -i 31 -a 1 -x {1.0 6.0 22 ------- null} h -t 0.35 -s 4 -d 6 -p cbr -e 500 -c 1 -i 31 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.35 -s 1 -d 3 -p cbr -e 500 -c 1 -i 43 -a 1 -x {1.0 6.0 30 ------- null} - -t 0.35 -s 1 -d 3 -p cbr -e 500 -c 1 -i 43 -a 1 -x {1.0 6.0 30 ------- null} h -t 0.35 -s 1 -d 3 -p cbr -e 500 -c 1 -i 43 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.354 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 26 -a 1 -x {2.0 7.0 7 ------- null} r -t 0.354 -s 4 -d 6 -p cbr -e 500 -c 1 -i 28 -a 1 -x {1.0 6.0 20 ------- null} r -t 0.354 -s 1 -d 3 -p cbr -e 500 -c 1 -i 40 -a 1 -x {1.0 6.0 28 ------- null} + -t 0.354 -s 3 -d 4 -p cbr -e 500 -c 1 -i 40 -a 1 -x {1.0 6.0 28 ------- null} - -t 0.356 -s 3 -d 4 -p cbr -e 500 -c 1 -i 40 -a 1 -x {1.0 6.0 28 ------- null} h -t 0.356 -s 3 -d 4 -p cbr -e 500 -c 1 -i 40 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.358 -s 3 -d 4 -p cbr -e 500 -c 1 -i 33 -a 1 -x {1.0 6.0 23 ------- null} + -t 0.358 -s 4 -d 6 -p cbr -e 500 -c 1 -i 33 -a 1 -x {1.0 6.0 23 ------- null} - -t 0.358 -s 4 -d 6 -p cbr -e 500 -c 1 -i 33 -a 1 -x {1.0 6.0 23 ------- null} h -t 0.358 -s 4 -d 6 -p cbr -e 500 -c 1 -i 33 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 44 -a 1 -x {2.0 7.0 13 ------- null} - -t 0.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 44 -a 1 -x {2.0 7.0 13 ------- null} h -t 0.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 44 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.36 -s 1 -d 3 -p cbr -e 500 -c 1 -i 45 -a 1 -x {1.0 6.0 31 ------- null} - -t 0.36 -s 1 -d 3 -p cbr -e 500 -c 1 -i 45 -a 1 -x {1.0 6.0 31 ------- null} h -t 0.36 -s 1 -d 3 -p cbr -e 500 -c 1 -i 45 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.362 -s 4 -d 6 -p cbr -e 500 -c 1 -i 30 -a 1 -x {1.0 6.0 21 ------- null} r -t 0.364 -s 1 -d 3 -p cbr -e 500 -c 1 -i 42 -a 1 -x {1.0 6.0 29 ------- null} + -t 0.364 -s 3 -d 4 -p cbr -e 500 -c 1 -i 42 -a 1 -x {1.0 6.0 29 ------- null} - -t 0.364 -s 3 -d 4 -p cbr -e 500 -c 1 -i 42 -a 1 -x {1.0 6.0 29 ------- null} h -t 0.364 -s 3 -d 4 -p cbr -e 500 -c 1 -i 42 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.366 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 32 -a 1 -x {2.0 7.0 9 ------- null} + -t 0.366 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 32 -a 1 -x {2.0 7.0 9 ------- null} - -t 0.366 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 32 -a 1 -x {2.0 7.0 9 ------- null} h -t 0.366 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 32 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.368 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 41 -a 1 -x {2.0 7.0 12 ------- null} + -t 0.368 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 41 -a 1 -x {2.0 7.0 12 ------- null} - -t 0.368 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 41 -a 1 -x {2.0 7.0 12 ------- null} h -t 0.368 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 41 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.37 -s 3 -d 4 -p cbr -e 500 -c 1 -i 34 -a 1 -x {1.0 6.0 24 ------- null} + -t 0.37 -s 4 -d 6 -p cbr -e 500 -c 1 -i 34 -a 1 -x {1.0 6.0 24 ------- null} - -t 0.37 -s 4 -d 6 -p cbr -e 500 -c 1 -i 34 -a 1 -x {1.0 6.0 24 ------- null} h -t 0.37 -s 4 -d 6 -p cbr -e 500 -c 1 -i 34 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.37 -s 1 -d 3 -p cbr -e 500 -c 1 -i 46 -a 1 -x {1.0 6.0 32 ------- null} - -t 0.37 -s 1 -d 3 -p cbr -e 500 -c 1 -i 46 -a 1 -x {1.0 6.0 32 ------- null} h -t 0.37 -s 1 -d 3 -p cbr -e 500 -c 1 -i 46 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.374 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 29 -a 1 -x {2.0 7.0 8 ------- null} r -t 0.374 -s 4 -d 6 -p cbr -e 500 -c 1 -i 31 -a 1 -x {1.0 6.0 22 ------- null} r -t 0.374 -s 1 -d 3 -p cbr -e 500 -c 1 -i 43 -a 1 -x {1.0 6.0 30 ------- null} + -t 0.374 -s 3 -d 4 -p cbr -e 500 -c 1 -i 43 -a 1 -x {1.0 6.0 30 ------- null} - -t 0.376 -s 3 -d 4 -p cbr -e 500 -c 1 -i 43 -a 1 -x {1.0 6.0 30 ------- null} h -t 0.376 -s 3 -d 4 -p cbr -e 500 -c 1 -i 43 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.378 -s 3 -d 4 -p cbr -e 500 -c 1 -i 36 -a 1 -x {1.0 6.0 25 ------- null} + -t 0.378 -s 4 -d 6 -p cbr -e 500 -c 1 -i 36 -a 1 -x {1.0 6.0 25 ------- null} - -t 0.378 -s 4 -d 6 -p cbr -e 500 -c 1 -i 36 -a 1 -x {1.0 6.0 25 ------- null} h -t 0.378 -s 4 -d 6 -p cbr -e 500 -c 1 -i 36 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 47 -a 1 -x {2.0 7.0 14 ------- null} - -t 0.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 47 -a 1 -x {2.0 7.0 14 ------- null} h -t 0.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 47 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.38 -s 1 -d 3 -p cbr -e 500 -c 1 -i 48 -a 1 -x {1.0 6.0 33 ------- null} - -t 0.38 -s 1 -d 3 -p cbr -e 500 -c 1 -i 48 -a 1 -x {1.0 6.0 33 ------- null} h -t 0.38 -s 1 -d 3 -p cbr -e 500 -c 1 -i 48 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.382 -s 4 -d 6 -p cbr -e 500 -c 1 -i 33 -a 1 -x {1.0 6.0 23 ------- null} r -t 0.384 -s 1 -d 3 -p cbr -e 500 -c 1 -i 45 -a 1 -x {1.0 6.0 31 ------- null} + -t 0.384 -s 3 -d 4 -p cbr -e 500 -c 1 -i 45 -a 1 -x {1.0 6.0 31 ------- null} - -t 0.384 -s 3 -d 4 -p cbr -e 500 -c 1 -i 45 -a 1 -x {1.0 6.0 31 ------- null} h -t 0.384 -s 3 -d 4 -p cbr -e 500 -c 1 -i 45 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.386 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 35 -a 1 -x {2.0 7.0 10 ------- null} + -t 0.386 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 35 -a 1 -x {2.0 7.0 10 ------- null} - -t 0.386 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 35 -a 1 -x {2.0 7.0 10 ------- null} h -t 0.386 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 35 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.388 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 44 -a 1 -x {2.0 7.0 13 ------- null} + -t 0.388 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 44 -a 1 -x {2.0 7.0 13 ------- null} - -t 0.388 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 44 -a 1 -x {2.0 7.0 13 ------- null} h -t 0.388 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 44 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.39 -s 3 -d 4 -p cbr -e 500 -c 1 -i 37 -a 1 -x {1.0 6.0 26 ------- null} + -t 0.39 -s 4 -d 6 -p cbr -e 500 -c 1 -i 37 -a 1 -x {1.0 6.0 26 ------- null} - -t 0.39 -s 4 -d 6 -p cbr -e 500 -c 1 -i 37 -a 1 -x {1.0 6.0 26 ------- null} h -t 0.39 -s 4 -d 6 -p cbr -e 500 -c 1 -i 37 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.39 -s 1 -d 3 -p cbr -e 500 -c 1 -i 49 -a 1 -x {1.0 6.0 34 ------- null} - -t 0.39 -s 1 -d 3 -p cbr -e 500 -c 1 -i 49 -a 1 -x {1.0 6.0 34 ------- null} h -t 0.39 -s 1 -d 3 -p cbr -e 500 -c 1 -i 49 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.394 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 32 -a 1 -x {2.0 7.0 9 ------- null} r -t 0.394 -s 4 -d 6 -p cbr -e 500 -c 1 -i 34 -a 1 -x {1.0 6.0 24 ------- null} r -t 0.394 -s 1 -d 3 -p cbr -e 500 -c 1 -i 46 -a 1 -x {1.0 6.0 32 ------- null} + -t 0.394 -s 3 -d 4 -p cbr -e 500 -c 1 -i 46 -a 1 -x {1.0 6.0 32 ------- null} - -t 0.396 -s 3 -d 4 -p cbr -e 500 -c 1 -i 46 -a 1 -x {1.0 6.0 32 ------- null} h -t 0.396 -s 3 -d 4 -p cbr -e 500 -c 1 -i 46 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.398 -s 3 -d 4 -p cbr -e 500 -c 1 -i 39 -a 1 -x {1.0 6.0 27 ------- null} + -t 0.398 -s 4 -d 6 -p cbr -e 500 -c 1 -i 39 -a 1 -x {1.0 6.0 27 ------- null} - -t 0.398 -s 4 -d 6 -p cbr -e 500 -c 1 -i 39 -a 1 -x {1.0 6.0 27 ------- null} h -t 0.398 -s 4 -d 6 -p cbr -e 500 -c 1 -i 39 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 50 -a 1 -x {2.0 7.0 15 ------- null} - -t 0.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 50 -a 1 -x {2.0 7.0 15 ------- null} h -t 0.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 50 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.4 -s 1 -d 3 -p cbr -e 500 -c 1 -i 51 -a 1 -x {1.0 6.0 35 ------- null} - -t 0.4 -s 1 -d 3 -p cbr -e 500 -c 1 -i 51 -a 1 -x {1.0 6.0 35 ------- null} h -t 0.4 -s 1 -d 3 -p cbr -e 500 -c 1 -i 51 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.402 -s 4 -d 6 -p cbr -e 500 -c 1 -i 36 -a 1 -x {1.0 6.0 25 ------- null} r -t 0.404 -s 1 -d 3 -p cbr -e 500 -c 1 -i 48 -a 1 -x {1.0 6.0 33 ------- null} + -t 0.404 -s 3 -d 4 -p cbr -e 500 -c 1 -i 48 -a 1 -x {1.0 6.0 33 ------- null} - -t 0.404 -s 3 -d 4 -p cbr -e 500 -c 1 -i 48 -a 1 -x {1.0 6.0 33 ------- null} h -t 0.404 -s 3 -d 4 -p cbr -e 500 -c 1 -i 48 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.406 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 38 -a 1 -x {2.0 7.0 11 ------- null} + -t 0.406 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 38 -a 1 -x {2.0 7.0 11 ------- null} - -t 0.406 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 38 -a 1 -x {2.0 7.0 11 ------- null} h -t 0.406 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 38 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.408 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 47 -a 1 -x {2.0 7.0 14 ------- null} + -t 0.408 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 47 -a 1 -x {2.0 7.0 14 ------- null} - -t 0.408 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 47 -a 1 -x {2.0 7.0 14 ------- null} h -t 0.408 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 47 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.41 -s 3 -d 4 -p cbr -e 500 -c 1 -i 40 -a 1 -x {1.0 6.0 28 ------- null} + -t 0.41 -s 4 -d 6 -p cbr -e 500 -c 1 -i 40 -a 1 -x {1.0 6.0 28 ------- null} - -t 0.41 -s 4 -d 6 -p cbr -e 500 -c 1 -i 40 -a 1 -x {1.0 6.0 28 ------- null} h -t 0.41 -s 4 -d 6 -p cbr -e 500 -c 1 -i 40 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.41 -s 1 -d 3 -p cbr -e 500 -c 1 -i 52 -a 1 -x {1.0 6.0 36 ------- null} - -t 0.41 -s 1 -d 3 -p cbr -e 500 -c 1 -i 52 -a 1 -x {1.0 6.0 36 ------- null} h -t 0.41 -s 1 -d 3 -p cbr -e 500 -c 1 -i 52 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.414 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 35 -a 1 -x {2.0 7.0 10 ------- null} r -t 0.414 -s 4 -d 6 -p cbr -e 500 -c 1 -i 37 -a 1 -x {1.0 6.0 26 ------- null} r -t 0.414 -s 1 -d 3 -p cbr -e 500 -c 1 -i 49 -a 1 -x {1.0 6.0 34 ------- null} + -t 0.414 -s 3 -d 4 -p cbr -e 500 -c 1 -i 49 -a 1 -x {1.0 6.0 34 ------- null} - -t 0.416 -s 3 -d 4 -p cbr -e 500 -c 1 -i 49 -a 1 -x {1.0 6.0 34 ------- null} h -t 0.416 -s 3 -d 4 -p cbr -e 500 -c 1 -i 49 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.418 -s 3 -d 4 -p cbr -e 500 -c 1 -i 42 -a 1 -x {1.0 6.0 29 ------- null} + -t 0.418 -s 4 -d 6 -p cbr -e 500 -c 1 -i 42 -a 1 -x {1.0 6.0 29 ------- null} - -t 0.418 -s 4 -d 6 -p cbr -e 500 -c 1 -i 42 -a 1 -x {1.0 6.0 29 ------- null} h -t 0.418 -s 4 -d 6 -p cbr -e 500 -c 1 -i 42 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 53 -a 1 -x {2.0 7.0 16 ------- null} - -t 0.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 53 -a 1 -x {2.0 7.0 16 ------- null} h -t 0.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 53 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.42 -s 1 -d 3 -p cbr -e 500 -c 1 -i 54 -a 1 -x {1.0 6.0 37 ------- null} - -t 0.42 -s 1 -d 3 -p cbr -e 500 -c 1 -i 54 -a 1 -x {1.0 6.0 37 ------- null} h -t 0.42 -s 1 -d 3 -p cbr -e 500 -c 1 -i 54 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.422 -s 4 -d 6 -p cbr -e 500 -c 1 -i 39 -a 1 -x {1.0 6.0 27 ------- null} r -t 0.424 -s 1 -d 3 -p cbr -e 500 -c 1 -i 51 -a 1 -x {1.0 6.0 35 ------- null} + -t 0.424 -s 3 -d 4 -p cbr -e 500 -c 1 -i 51 -a 1 -x {1.0 6.0 35 ------- null} - -t 0.424 -s 3 -d 4 -p cbr -e 500 -c 1 -i 51 -a 1 -x {1.0 6.0 35 ------- null} h -t 0.424 -s 3 -d 4 -p cbr -e 500 -c 1 -i 51 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.426 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 41 -a 1 -x {2.0 7.0 12 ------- null} + -t 0.426 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 41 -a 1 -x {2.0 7.0 12 ------- null} - -t 0.426 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 41 -a 1 -x {2.0 7.0 12 ------- null} h -t 0.426 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 41 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.428 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 50 -a 1 -x {2.0 7.0 15 ------- null} + -t 0.428 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 50 -a 1 -x {2.0 7.0 15 ------- null} - -t 0.428 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 50 -a 1 -x {2.0 7.0 15 ------- null} h -t 0.428 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 50 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.43 -s 3 -d 4 -p cbr -e 500 -c 1 -i 43 -a 1 -x {1.0 6.0 30 ------- null} + -t 0.43 -s 4 -d 6 -p cbr -e 500 -c 1 -i 43 -a 1 -x {1.0 6.0 30 ------- null} - -t 0.43 -s 4 -d 6 -p cbr -e 500 -c 1 -i 43 -a 1 -x {1.0 6.0 30 ------- null} h -t 0.43 -s 4 -d 6 -p cbr -e 500 -c 1 -i 43 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.43 -s 1 -d 3 -p cbr -e 500 -c 1 -i 55 -a 1 -x {1.0 6.0 38 ------- null} - -t 0.43 -s 1 -d 3 -p cbr -e 500 -c 1 -i 55 -a 1 -x {1.0 6.0 38 ------- null} h -t 0.43 -s 1 -d 3 -p cbr -e 500 -c 1 -i 55 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.434 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 38 -a 1 -x {2.0 7.0 11 ------- null} r -t 0.434 -s 4 -d 6 -p cbr -e 500 -c 1 -i 40 -a 1 -x {1.0 6.0 28 ------- null} r -t 0.434 -s 1 -d 3 -p cbr -e 500 -c 1 -i 52 -a 1 -x {1.0 6.0 36 ------- null} + -t 0.434 -s 3 -d 4 -p cbr -e 500 -c 1 -i 52 -a 1 -x {1.0 6.0 36 ------- null} - -t 0.436 -s 3 -d 4 -p cbr -e 500 -c 1 -i 52 -a 1 -x {1.0 6.0 36 ------- null} h -t 0.436 -s 3 -d 4 -p cbr -e 500 -c 1 -i 52 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.438 -s 3 -d 4 -p cbr -e 500 -c 1 -i 45 -a 1 -x {1.0 6.0 31 ------- null} + -t 0.438 -s 4 -d 6 -p cbr -e 500 -c 1 -i 45 -a 1 -x {1.0 6.0 31 ------- null} - -t 0.438 -s 4 -d 6 -p cbr -e 500 -c 1 -i 45 -a 1 -x {1.0 6.0 31 ------- null} h -t 0.438 -s 4 -d 6 -p cbr -e 500 -c 1 -i 45 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 56 -a 1 -x {2.0 7.0 17 ------- null} - -t 0.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 56 -a 1 -x {2.0 7.0 17 ------- null} h -t 0.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 56 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.44 -s 1 -d 3 -p cbr -e 500 -c 1 -i 57 -a 1 -x {1.0 6.0 39 ------- null} - -t 0.44 -s 1 -d 3 -p cbr -e 500 -c 1 -i 57 -a 1 -x {1.0 6.0 39 ------- null} h -t 0.44 -s 1 -d 3 -p cbr -e 500 -c 1 -i 57 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.442 -s 4 -d 6 -p cbr -e 500 -c 1 -i 42 -a 1 -x {1.0 6.0 29 ------- null} r -t 0.444 -s 1 -d 3 -p cbr -e 500 -c 1 -i 54 -a 1 -x {1.0 6.0 37 ------- null} + -t 0.444 -s 3 -d 4 -p cbr -e 500 -c 1 -i 54 -a 1 -x {1.0 6.0 37 ------- null} - -t 0.444 -s 3 -d 4 -p cbr -e 500 -c 1 -i 54 -a 1 -x {1.0 6.0 37 ------- null} h -t 0.444 -s 3 -d 4 -p cbr -e 500 -c 1 -i 54 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.446 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 44 -a 1 -x {2.0 7.0 13 ------- null} + -t 0.446 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 44 -a 1 -x {2.0 7.0 13 ------- null} - -t 0.446 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 44 -a 1 -x {2.0 7.0 13 ------- null} h -t 0.446 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 44 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.448 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 53 -a 1 -x {2.0 7.0 16 ------- null} + -t 0.448 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 53 -a 1 -x {2.0 7.0 16 ------- null} - -t 0.448 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 53 -a 1 -x {2.0 7.0 16 ------- null} h -t 0.448 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 53 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.45 -s 3 -d 4 -p cbr -e 500 -c 1 -i 46 -a 1 -x {1.0 6.0 32 ------- null} + -t 0.45 -s 4 -d 6 -p cbr -e 500 -c 1 -i 46 -a 1 -x {1.0 6.0 32 ------- null} - -t 0.45 -s 4 -d 6 -p cbr -e 500 -c 1 -i 46 -a 1 -x {1.0 6.0 32 ------- null} h -t 0.45 -s 4 -d 6 -p cbr -e 500 -c 1 -i 46 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.45 -s 1 -d 3 -p cbr -e 500 -c 1 -i 58 -a 1 -x {1.0 6.0 40 ------- null} - -t 0.45 -s 1 -d 3 -p cbr -e 500 -c 1 -i 58 -a 1 -x {1.0 6.0 40 ------- null} h -t 0.45 -s 1 -d 3 -p cbr -e 500 -c 1 -i 58 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.454 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 41 -a 1 -x {2.0 7.0 12 ------- null} r -t 0.454 -s 4 -d 6 -p cbr -e 500 -c 1 -i 43 -a 1 -x {1.0 6.0 30 ------- null} r -t 0.454 -s 1 -d 3 -p cbr -e 500 -c 1 -i 55 -a 1 -x {1.0 6.0 38 ------- null} + -t 0.454 -s 3 -d 4 -p cbr -e 500 -c 1 -i 55 -a 1 -x {1.0 6.0 38 ------- null} - -t 0.456 -s 3 -d 4 -p cbr -e 500 -c 1 -i 55 -a 1 -x {1.0 6.0 38 ------- null} h -t 0.456 -s 3 -d 4 -p cbr -e 500 -c 1 -i 55 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.458 -s 3 -d 4 -p cbr -e 500 -c 1 -i 48 -a 1 -x {1.0 6.0 33 ------- null} + -t 0.458 -s 4 -d 6 -p cbr -e 500 -c 1 -i 48 -a 1 -x {1.0 6.0 33 ------- null} - -t 0.458 -s 4 -d 6 -p cbr -e 500 -c 1 -i 48 -a 1 -x {1.0 6.0 33 ------- null} h -t 0.458 -s 4 -d 6 -p cbr -e 500 -c 1 -i 48 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 59 -a 1 -x {2.0 7.0 18 ------- null} - -t 0.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 59 -a 1 -x {2.0 7.0 18 ------- null} h -t 0.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 59 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.46 -s 1 -d 3 -p cbr -e 500 -c 1 -i 60 -a 1 -x {1.0 6.0 41 ------- null} - -t 0.46 -s 1 -d 3 -p cbr -e 500 -c 1 -i 60 -a 1 -x {1.0 6.0 41 ------- null} h -t 0.46 -s 1 -d 3 -p cbr -e 500 -c 1 -i 60 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.462 -s 4 -d 6 -p cbr -e 500 -c 1 -i 45 -a 1 -x {1.0 6.0 31 ------- null} r -t 0.464 -s 1 -d 3 -p cbr -e 500 -c 1 -i 57 -a 1 -x {1.0 6.0 39 ------- null} + -t 0.464 -s 3 -d 4 -p cbr -e 500 -c 1 -i 57 -a 1 -x {1.0 6.0 39 ------- null} - -t 0.464 -s 3 -d 4 -p cbr -e 500 -c 1 -i 57 -a 1 -x {1.0 6.0 39 ------- null} h -t 0.464 -s 3 -d 4 -p cbr -e 500 -c 1 -i 57 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.466 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 47 -a 1 -x {2.0 7.0 14 ------- null} + -t 0.466 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 47 -a 1 -x {2.0 7.0 14 ------- null} - -t 0.466 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 47 -a 1 -x {2.0 7.0 14 ------- null} h -t 0.466 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 47 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.468 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 56 -a 1 -x {2.0 7.0 17 ------- null} + -t 0.468 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 56 -a 1 -x {2.0 7.0 17 ------- null} - -t 0.468 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 56 -a 1 -x {2.0 7.0 17 ------- null} h -t 0.468 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 56 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.47 -s 3 -d 4 -p cbr -e 500 -c 1 -i 49 -a 1 -x {1.0 6.0 34 ------- null} + -t 0.47 -s 4 -d 6 -p cbr -e 500 -c 1 -i 49 -a 1 -x {1.0 6.0 34 ------- null} - -t 0.47 -s 4 -d 6 -p cbr -e 500 -c 1 -i 49 -a 1 -x {1.0 6.0 34 ------- null} h -t 0.47 -s 4 -d 6 -p cbr -e 500 -c 1 -i 49 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.47 -s 1 -d 3 -p cbr -e 500 -c 1 -i 61 -a 1 -x {1.0 6.0 42 ------- null} - -t 0.47 -s 1 -d 3 -p cbr -e 500 -c 1 -i 61 -a 1 -x {1.0 6.0 42 ------- null} h -t 0.47 -s 1 -d 3 -p cbr -e 500 -c 1 -i 61 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.474 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 44 -a 1 -x {2.0 7.0 13 ------- null} r -t 0.474 -s 4 -d 6 -p cbr -e 500 -c 1 -i 46 -a 1 -x {1.0 6.0 32 ------- null} r -t 0.474 -s 1 -d 3 -p cbr -e 500 -c 1 -i 58 -a 1 -x {1.0 6.0 40 ------- null} + -t 0.474 -s 3 -d 4 -p cbr -e 500 -c 1 -i 58 -a 1 -x {1.0 6.0 40 ------- null} - -t 0.476 -s 3 -d 4 -p cbr -e 500 -c 1 -i 58 -a 1 -x {1.0 6.0 40 ------- null} h -t 0.476 -s 3 -d 4 -p cbr -e 500 -c 1 -i 58 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.478 -s 3 -d 4 -p cbr -e 500 -c 1 -i 51 -a 1 -x {1.0 6.0 35 ------- null} + -t 0.478 -s 4 -d 6 -p cbr -e 500 -c 1 -i 51 -a 1 -x {1.0 6.0 35 ------- null} - -t 0.478 -s 4 -d 6 -p cbr -e 500 -c 1 -i 51 -a 1 -x {1.0 6.0 35 ------- null} h -t 0.478 -s 4 -d 6 -p cbr -e 500 -c 1 -i 51 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 62 -a 1 -x {2.0 7.0 19 ------- null} - -t 0.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 62 -a 1 -x {2.0 7.0 19 ------- null} h -t 0.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 62 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.48 -s 1 -d 3 -p cbr -e 500 -c 1 -i 63 -a 1 -x {1.0 6.0 43 ------- null} - -t 0.48 -s 1 -d 3 -p cbr -e 500 -c 1 -i 63 -a 1 -x {1.0 6.0 43 ------- null} h -t 0.48 -s 1 -d 3 -p cbr -e 500 -c 1 -i 63 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.482 -s 4 -d 6 -p cbr -e 500 -c 1 -i 48 -a 1 -x {1.0 6.0 33 ------- null} r -t 0.484 -s 1 -d 3 -p cbr -e 500 -c 1 -i 60 -a 1 -x {1.0 6.0 41 ------- null} + -t 0.484 -s 3 -d 4 -p cbr -e 500 -c 1 -i 60 -a 1 -x {1.0 6.0 41 ------- null} - -t 0.484 -s 3 -d 4 -p cbr -e 500 -c 1 -i 60 -a 1 -x {1.0 6.0 41 ------- null} h -t 0.484 -s 3 -d 4 -p cbr -e 500 -c 1 -i 60 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.486 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 50 -a 1 -x {2.0 7.0 15 ------- null} + -t 0.486 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 50 -a 1 -x {2.0 7.0 15 ------- null} - -t 0.486 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 50 -a 1 -x {2.0 7.0 15 ------- null} h -t 0.486 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 50 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.488 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 59 -a 1 -x {2.0 7.0 18 ------- null} + -t 0.488 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 59 -a 1 -x {2.0 7.0 18 ------- null} - -t 0.488 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 59 -a 1 -x {2.0 7.0 18 ------- null} h -t 0.488 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 59 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.49 -s 3 -d 4 -p cbr -e 500 -c 1 -i 52 -a 1 -x {1.0 6.0 36 ------- null} + -t 0.49 -s 4 -d 6 -p cbr -e 500 -c 1 -i 52 -a 1 -x {1.0 6.0 36 ------- null} - -t 0.49 -s 4 -d 6 -p cbr -e 500 -c 1 -i 52 -a 1 -x {1.0 6.0 36 ------- null} h -t 0.49 -s 4 -d 6 -p cbr -e 500 -c 1 -i 52 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.49 -s 1 -d 3 -p cbr -e 500 -c 1 -i 64 -a 1 -x {1.0 6.0 44 ------- null} - -t 0.49 -s 1 -d 3 -p cbr -e 500 -c 1 -i 64 -a 1 -x {1.0 6.0 44 ------- null} h -t 0.49 -s 1 -d 3 -p cbr -e 500 -c 1 -i 64 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.494 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 47 -a 1 -x {2.0 7.0 14 ------- null} r -t 0.494 -s 4 -d 6 -p cbr -e 500 -c 1 -i 49 -a 1 -x {1.0 6.0 34 ------- null} r -t 0.494 -s 1 -d 3 -p cbr -e 500 -c 1 -i 61 -a 1 -x {1.0 6.0 42 ------- null} + -t 0.494 -s 3 -d 4 -p cbr -e 500 -c 1 -i 61 -a 1 -x {1.0 6.0 42 ------- null} - -t 0.496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 61 -a 1 -x {1.0 6.0 42 ------- null} h -t 0.496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 61 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.498 -s 3 -d 4 -p cbr -e 500 -c 1 -i 54 -a 1 -x {1.0 6.0 37 ------- null} + -t 0.498 -s 4 -d 6 -p cbr -e 500 -c 1 -i 54 -a 1 -x {1.0 6.0 37 ------- null} - -t 0.498 -s 4 -d 6 -p cbr -e 500 -c 1 -i 54 -a 1 -x {1.0 6.0 37 ------- null} h -t 0.498 -s 4 -d 6 -p cbr -e 500 -c 1 -i 54 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {0.0 5.0 0 ------- null} - -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {0.0 5.0 0 ------- null} h -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {0.0 5.0 -1 ------- null} + -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {0.0 5.0 1 ------- null} + -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {0.0 5.0 2 ------- null} + -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {0.0 5.0 3 ------- null} + -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {0.0 5.0 4 ------- null} + -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {0.0 5.0 5 ------- null} + -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {0.0 5.0 6 ------- null} + -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {0.0 5.0 7 ------- null} v -t 0.5 sim_annotation 0.5 3 FTP starts + -t 0.5 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 73 -a 1 -x {2.0 7.0 20 ------- null} - -t 0.5 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 73 -a 1 -x {2.0 7.0 20 ------- null} h -t 0.5 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 73 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.5 -s 1 -d 3 -p cbr -e 500 -c 1 -i 74 -a 1 -x {1.0 6.0 45 ------- null} - -t 0.5 -s 1 -d 3 -p cbr -e 500 -c 1 -i 74 -a 1 -x {1.0 6.0 45 ------- null} h -t 0.5 -s 1 -d 3 -p cbr -e 500 -c 1 -i 74 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.5016 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {0.0 5.0 1 ------- null} h -t 0.5016 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.502 -s 4 -d 6 -p cbr -e 500 -c 1 -i 51 -a 1 -x {1.0 6.0 35 ------- null} - -t 0.5032 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {0.0 5.0 2 ------- null} h -t 0.5032 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.504 -s 1 -d 3 -p cbr -e 500 -c 1 -i 63 -a 1 -x {1.0 6.0 43 ------- null} + -t 0.504 -s 3 -d 4 -p cbr -e 500 -c 1 -i 63 -a 1 -x {1.0 6.0 43 ------- null} - -t 0.504 -s 3 -d 4 -p cbr -e 500 -c 1 -i 63 -a 1 -x {1.0 6.0 43 ------- null} h -t 0.504 -s 3 -d 4 -p cbr -e 500 -c 1 -i 63 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.5048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {0.0 5.0 3 ------- null} h -t 0.5048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.506 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 53 -a 1 -x {2.0 7.0 16 ------- null} + -t 0.506 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 53 -a 1 -x {2.0 7.0 16 ------- null} - -t 0.506 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 53 -a 1 -x {2.0 7.0 16 ------- null} h -t 0.506 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 53 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.5064 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {0.0 5.0 4 ------- null} h -t 0.5064 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.508 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 62 -a 1 -x {2.0 7.0 19 ------- null} + -t 0.508 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 62 -a 1 -x {2.0 7.0 19 ------- null} - -t 0.508 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 62 -a 1 -x {2.0 7.0 19 ------- null} h -t 0.508 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 62 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.508 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {0.0 5.0 5 ------- null} h -t 0.508 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {0.0 5.0 -1 ------- null} - -t 0.5096 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {0.0 5.0 6 ------- null} h -t 0.5096 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.51 -s 3 -d 4 -p cbr -e 500 -c 1 -i 55 -a 1 -x {1.0 6.0 38 ------- null} + -t 0.51 -s 4 -d 6 -p cbr -e 500 -c 1 -i 55 -a 1 -x {1.0 6.0 38 ------- null} - -t 0.51 -s 4 -d 6 -p cbr -e 500 -c 1 -i 55 -a 1 -x {1.0 6.0 38 ------- null} h -t 0.51 -s 4 -d 6 -p cbr -e 500 -c 1 -i 55 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.51 -s 1 -d 3 -p cbr -e 500 -c 1 -i 75 -a 1 -x {1.0 6.0 46 ------- null} - -t 0.51 -s 1 -d 3 -p cbr -e 500 -c 1 -i 75 -a 1 -x {1.0 6.0 46 ------- null} h -t 0.51 -s 1 -d 3 -p cbr -e 500 -c 1 -i 75 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.5112 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {0.0 5.0 7 ------- null} h -t 0.5112 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.514 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 50 -a 1 -x {2.0 7.0 15 ------- null} r -t 0.514 -s 4 -d 6 -p cbr -e 500 -c 1 -i 52 -a 1 -x {1.0 6.0 36 ------- null} r -t 0.514 -s 1 -d 3 -p cbr -e 500 -c 1 -i 64 -a 1 -x {1.0 6.0 44 ------- null} + -t 0.514 -s 3 -d 4 -p cbr -e 500 -c 1 -i 64 -a 1 -x {1.0 6.0 44 ------- null} - -t 0.516 -s 3 -d 4 -p cbr -e 500 -c 1 -i 64 -a 1 -x {1.0 6.0 44 ------- null} h -t 0.516 -s 3 -d 4 -p cbr -e 500 -c 1 -i 64 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.518 -s 3 -d 4 -p cbr -e 500 -c 1 -i 57 -a 1 -x {1.0 6.0 39 ------- null} + -t 0.518 -s 4 -d 6 -p cbr -e 500 -c 1 -i 57 -a 1 -x {1.0 6.0 39 ------- null} - -t 0.518 -s 4 -d 6 -p cbr -e 500 -c 1 -i 57 -a 1 -x {1.0 6.0 39 ------- null} h -t 0.518 -s 4 -d 6 -p cbr -e 500 -c 1 -i 57 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.52 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 76 -a 1 -x {2.0 7.0 21 ------- null} - -t 0.52 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 76 -a 1 -x {2.0 7.0 21 ------- null} h -t 0.52 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 76 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.52 -s 1 -d 3 -p cbr -e 500 -c 1 -i 77 -a 1 -x {1.0 6.0 47 ------- null} - -t 0.52 -s 1 -d 3 -p cbr -e 500 -c 1 -i 77 -a 1 -x {1.0 6.0 47 ------- null} h -t 0.52 -s 1 -d 3 -p cbr -e 500 -c 1 -i 77 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.5216 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {0.0 5.0 0 ------- null} + -t 0.5216 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {0.0 5.0 0 ------- null} - -t 0.5216 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {0.0 5.0 0 ------- null} h -t 0.5216 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.522 -s 4 -d 6 -p cbr -e 500 -c 1 -i 54 -a 1 -x {1.0 6.0 37 ------- null} r -t 0.5232 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {0.0 5.0 1 ------- null} + -t 0.5232 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {0.0 5.0 1 ------- null} r -t 0.524 -s 1 -d 3 -p cbr -e 500 -c 1 -i 74 -a 1 -x {1.0 6.0 45 ------- null} + -t 0.524 -s 3 -d 4 -p cbr -e 500 -c 1 -i 74 -a 1 -x {1.0 6.0 45 ------- null} r -t 0.5248 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {0.0 5.0 2 ------- null} + -t 0.5248 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {0.0 5.0 2 ------- null} r -t 0.526 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 56 -a 1 -x {2.0 7.0 17 ------- null} + -t 0.526 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 56 -a 1 -x {2.0 7.0 17 ------- null} - -t 0.526 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 56 -a 1 -x {2.0 7.0 17 ------- null} h -t 0.526 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 56 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.5264 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {0.0 5.0 3 ------- null} + -t 0.5264 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {0.0 5.0 3 ------- null} r -t 0.528 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 73 -a 1 -x {2.0 7.0 20 ------- null} + -t 0.528 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 73 -a 1 -x {2.0 7.0 20 ------- null} r -t 0.528 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {0.0 5.0 4 ------- null} + -t 0.528 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {0.0 5.0 4 ------- null} - -t 0.5296 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {0.0 5.0 1 ------- null} h -t 0.5296 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.5296 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {0.0 5.0 5 ------- null} + -t 0.5296 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {0.0 5.0 5 ------- null} r -t 0.53 -s 3 -d 4 -p cbr -e 500 -c 1 -i 58 -a 1 -x {1.0 6.0 40 ------- null} + -t 0.53 -s 4 -d 6 -p cbr -e 500 -c 1 -i 58 -a 1 -x {1.0 6.0 40 ------- null} - -t 0.53 -s 4 -d 6 -p cbr -e 500 -c 1 -i 58 -a 1 -x {1.0 6.0 40 ------- null} h -t 0.53 -s 4 -d 6 -p cbr -e 500 -c 1 -i 58 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.53 -s 1 -d 3 -p cbr -e 500 -c 1 -i 78 -a 1 -x {1.0 6.0 48 ------- null} - -t 0.53 -s 1 -d 3 -p cbr -e 500 -c 1 -i 78 -a 1 -x {1.0 6.0 48 ------- null} h -t 0.53 -s 1 -d 3 -p cbr -e 500 -c 1 -i 78 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.5312 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {0.0 5.0 6 ------- null} + -t 0.5312 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {0.0 5.0 6 ------- null} r -t 0.5328 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {0.0 5.0 7 ------- null} + -t 0.5328 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {0.0 5.0 7 ------- null} r -t 0.534 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 53 -a 1 -x {2.0 7.0 16 ------- null} r -t 0.534 -s 4 -d 6 -p cbr -e 500 -c 1 -i 55 -a 1 -x {1.0 6.0 38 ------- null} r -t 0.534 -s 1 -d 3 -p cbr -e 500 -c 1 -i 75 -a 1 -x {1.0 6.0 46 ------- null} + -t 0.534 -s 3 -d 4 -p cbr -e 500 -c 1 -i 75 -a 1 -x {1.0 6.0 46 ------- null} - -t 0.5376 -s 3 -d 4 -p cbr -e 500 -c 1 -i 74 -a 1 -x {1.0 6.0 45 ------- null} h -t 0.5376 -s 3 -d 4 -p cbr -e 500 -c 1 -i 74 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.538 -s 3 -d 4 -p cbr -e 500 -c 1 -i 60 -a 1 -x {1.0 6.0 41 ------- null} + -t 0.538 -s 4 -d 6 -p cbr -e 500 -c 1 -i 60 -a 1 -x {1.0 6.0 41 ------- null} - -t 0.538 -s 4 -d 6 -p cbr -e 500 -c 1 -i 60 -a 1 -x {1.0 6.0 41 ------- null} h -t 0.538 -s 4 -d 6 -p cbr -e 500 -c 1 -i 60 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.54 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 79 -a 1 -x {2.0 7.0 22 ------- null} - -t 0.54 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 79 -a 1 -x {2.0 7.0 22 ------- null} h -t 0.54 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 79 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.54 -s 1 -d 3 -p cbr -e 500 -c 1 -i 80 -a 1 -x {1.0 6.0 49 ------- null} - -t 0.54 -s 1 -d 3 -p cbr -e 500 -c 1 -i 80 -a 1 -x {1.0 6.0 49 ------- null} h -t 0.54 -s 1 -d 3 -p cbr -e 500 -c 1 -i 80 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.5416 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {0.0 5.0 2 ------- null} h -t 0.5416 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.542 -s 4 -d 6 -p cbr -e 500 -c 1 -i 57 -a 1 -x {1.0 6.0 39 ------- null} r -t 0.544 -s 1 -d 3 -p cbr -e 500 -c 1 -i 77 -a 1 -x {1.0 6.0 47 ------- null} + -t 0.544 -s 3 -d 4 -p cbr -e 500 -c 1 -i 77 -a 1 -x {1.0 6.0 47 ------- null} r -t 0.546 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 59 -a 1 -x {2.0 7.0 18 ------- null} + -t 0.546 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 59 -a 1 -x {2.0 7.0 18 ------- null} - -t 0.546 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 59 -a 1 -x {2.0 7.0 18 ------- null} h -t 0.546 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 59 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.548 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 76 -a 1 -x {2.0 7.0 21 ------- null} + -t 0.548 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 76 -a 1 -x {2.0 7.0 21 ------- null} - -t 0.5496 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {0.0 5.0 3 ------- null} h -t 0.5496 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.55 -s 3 -d 4 -p cbr -e 500 -c 1 -i 61 -a 1 -x {1.0 6.0 42 ------- null} + -t 0.55 -s 4 -d 6 -p cbr -e 500 -c 1 -i 61 -a 1 -x {1.0 6.0 42 ------- null} - -t 0.55 -s 4 -d 6 -p cbr -e 500 -c 1 -i 61 -a 1 -x {1.0 6.0 42 ------- null} h -t 0.55 -s 4 -d 6 -p cbr -e 500 -c 1 -i 61 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.55 -s 1 -d 3 -p cbr -e 500 -c 1 -i 81 -a 1 -x {1.0 6.0 50 ------- null} - -t 0.55 -s 1 -d 3 -p cbr -e 500 -c 1 -i 81 -a 1 -x {1.0 6.0 50 ------- null} h -t 0.55 -s 1 -d 3 -p cbr -e 500 -c 1 -i 81 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.554 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 56 -a 1 -x {2.0 7.0 17 ------- null} r -t 0.554 -s 4 -d 6 -p cbr -e 500 -c 1 -i 58 -a 1 -x {1.0 6.0 40 ------- null} r -t 0.554 -s 1 -d 3 -p cbr -e 500 -c 1 -i 78 -a 1 -x {1.0 6.0 48 ------- null} + -t 0.554 -s 3 -d 4 -p cbr -e 500 -c 1 -i 78 -a 1 -x {1.0 6.0 48 ------- null} - -t 0.5576 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 73 -a 1 -x {2.0 7.0 20 ------- null} h -t 0.5576 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 73 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.558 -s 3 -d 4 -p cbr -e 500 -c 1 -i 63 -a 1 -x {1.0 6.0 43 ------- null} + -t 0.558 -s 4 -d 6 -p cbr -e 500 -c 1 -i 63 -a 1 -x {1.0 6.0 43 ------- null} - -t 0.558 -s 4 -d 6 -p cbr -e 500 -c 1 -i 63 -a 1 -x {1.0 6.0 43 ------- null} h -t 0.558 -s 4 -d 6 -p cbr -e 500 -c 1 -i 63 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.56 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 82 -a 1 -x {2.0 7.0 23 ------- null} - -t 0.56 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 82 -a 1 -x {2.0 7.0 23 ------- null} h -t 0.56 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 82 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.56 -s 1 -d 3 -p cbr -e 500 -c 1 -i 83 -a 1 -x {1.0 6.0 51 ------- null} - -t 0.56 -s 1 -d 3 -p cbr -e 500 -c 1 -i 83 -a 1 -x {1.0 6.0 51 ------- null} h -t 0.56 -s 1 -d 3 -p cbr -e 500 -c 1 -i 83 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.562 -s 4 -d 6 -p cbr -e 500 -c 1 -i 60 -a 1 -x {1.0 6.0 41 ------- null} r -t 0.564 -s 1 -d 3 -p cbr -e 500 -c 1 -i 80 -a 1 -x {1.0 6.0 49 ------- null} + -t 0.564 -s 3 -d 4 -p cbr -e 500 -c 1 -i 80 -a 1 -x {1.0 6.0 49 ------- null} - -t 0.5656 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {0.0 5.0 4 ------- null} h -t 0.5656 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.566 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 62 -a 1 -x {2.0 7.0 19 ------- null} + -t 0.566 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 62 -a 1 -x {2.0 7.0 19 ------- null} - -t 0.566 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 62 -a 1 -x {2.0 7.0 19 ------- null} h -t 0.566 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 62 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.568 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 79 -a 1 -x {2.0 7.0 22 ------- null} + -t 0.568 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 79 -a 1 -x {2.0 7.0 22 ------- null} r -t 0.57 -s 3 -d 4 -p cbr -e 500 -c 1 -i 64 -a 1 -x {1.0 6.0 44 ------- null} + -t 0.57 -s 4 -d 6 -p cbr -e 500 -c 1 -i 64 -a 1 -x {1.0 6.0 44 ------- null} - -t 0.57 -s 4 -d 6 -p cbr -e 500 -c 1 -i 64 -a 1 -x {1.0 6.0 44 ------- null} h -t 0.57 -s 4 -d 6 -p cbr -e 500 -c 1 -i 64 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.57 -s 1 -d 3 -p cbr -e 500 -c 1 -i 84 -a 1 -x {1.0 6.0 52 ------- null} - -t 0.57 -s 1 -d 3 -p cbr -e 500 -c 1 -i 84 -a 1 -x {1.0 6.0 52 ------- null} h -t 0.57 -s 1 -d 3 -p cbr -e 500 -c 1 -i 84 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.5736 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {0.0 5.0 5 ------- null} h -t 0.5736 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.574 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 59 -a 1 -x {2.0 7.0 18 ------- null} r -t 0.574 -s 4 -d 6 -p cbr -e 500 -c 1 -i 61 -a 1 -x {1.0 6.0 42 ------- null} r -t 0.574 -s 1 -d 3 -p cbr -e 500 -c 1 -i 81 -a 1 -x {1.0 6.0 50 ------- null} + -t 0.574 -s 3 -d 4 -p cbr -e 500 -c 1 -i 81 -a 1 -x {1.0 6.0 50 ------- null} r -t 0.5796 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {0.0 5.0 0 ------- null} + -t 0.5796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {0.0 5.0 0 ------- null} - -t 0.5796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {0.0 5.0 0 ------- null} h -t 0.5796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {0.0 5.0 -1 ------- null} + -t 0.58 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 85 -a 1 -x {2.0 7.0 24 ------- null} - -t 0.58 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 85 -a 1 -x {2.0 7.0 24 ------- null} h -t 0.58 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 85 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.58 -s 1 -d 3 -p cbr -e 500 -c 1 -i 86 -a 1 -x {1.0 6.0 53 ------- null} - -t 0.58 -s 1 -d 3 -p cbr -e 500 -c 1 -i 86 -a 1 -x {1.0 6.0 53 ------- null} h -t 0.58 -s 1 -d 3 -p cbr -e 500 -c 1 -i 86 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.5816 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {0.0 5.0 6 ------- null} h -t 0.5816 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.582 -s 4 -d 6 -p cbr -e 500 -c 1 -i 63 -a 1 -x {1.0 6.0 43 ------- null} r -t 0.584 -s 1 -d 3 -p cbr -e 500 -c 1 -i 83 -a 1 -x {1.0 6.0 51 ------- null} + -t 0.584 -s 3 -d 4 -p cbr -e 500 -c 1 -i 83 -a 1 -x {1.0 6.0 51 ------- null} r -t 0.5876 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {0.0 5.0 1 ------- null} + -t 0.5876 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {0.0 5.0 1 ------- null} - -t 0.5876 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {0.0 5.0 1 ------- null} h -t 0.5876 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.588 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 82 -a 1 -x {2.0 7.0 23 ------- null} + -t 0.588 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 82 -a 1 -x {2.0 7.0 23 ------- null} - -t 0.5896 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {0.0 5.0 7 ------- null} h -t 0.5896 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {0.0 5.0 -1 ------- null} + -t 0.59 -s 1 -d 3 -p cbr -e 500 -c 1 -i 87 -a 1 -x {1.0 6.0 54 ------- null} - -t 0.59 -s 1 -d 3 -p cbr -e 500 -c 1 -i 87 -a 1 -x {1.0 6.0 54 ------- null} h -t 0.59 -s 1 -d 3 -p cbr -e 500 -c 1 -i 87 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.5916 -s 3 -d 4 -p cbr -e 500 -c 1 -i 74 -a 1 -x {1.0 6.0 45 ------- null} + -t 0.5916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 74 -a 1 -x {1.0 6.0 45 ------- null} - -t 0.5916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 74 -a 1 -x {1.0 6.0 45 ------- null} h -t 0.5916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 74 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.594 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 62 -a 1 -x {2.0 7.0 19 ------- null} r -t 0.594 -s 4 -d 6 -p cbr -e 500 -c 1 -i 64 -a 1 -x {1.0 6.0 44 ------- null} r -t 0.594 -s 1 -d 3 -p cbr -e 500 -c 1 -i 84 -a 1 -x {1.0 6.0 52 ------- null} + -t 0.594 -s 3 -d 4 -p cbr -e 500 -c 1 -i 84 -a 1 -x {1.0 6.0 52 ------- null} - -t 0.5976 -s 3 -d 4 -p cbr -e 500 -c 1 -i 75 -a 1 -x {1.0 6.0 46 ------- null} h -t 0.5976 -s 3 -d 4 -p cbr -e 500 -c 1 -i 75 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.5996 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {0.0 5.0 2 ------- null} + -t 0.5996 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {0.0 5.0 2 ------- null} - -t 0.5996 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {0.0 5.0 2 ------- null} h -t 0.5996 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {0.0 5.0 -1 ------- null} + -t 0.6 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 88 -a 1 -x {2.0 7.0 25 ------- null} - -t 0.6 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 88 -a 1 -x {2.0 7.0 25 ------- null} h -t 0.6 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 88 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.6 -s 1 -d 3 -p cbr -e 500 -c 1 -i 89 -a 1 -x {1.0 6.0 55 ------- null} - -t 0.6 -s 1 -d 3 -p cbr -e 500 -c 1 -i 89 -a 1 -x {1.0 6.0 55 ------- null} h -t 0.6 -s 1 -d 3 -p cbr -e 500 -c 1 -i 89 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.6012 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {0.0 5.0 0 ------- null} + -t 0.6012 -s 5 -d 4 -p ack -e 40 -c 0 -i 90 -a 0 -x {5.0 0.0 0 ------- null} - -t 0.6012 -s 5 -d 4 -p ack -e 40 -c 0 -i 90 -a 0 -x {5.0 0.0 0 ------- null} h -t 0.6012 -s 5 -d 4 -p ack -e 40 -c 0 -i 90 -a 0 -x {5.0 0.0 -1 ------- null} - -t 0.6016 -s 3 -d 4 -p cbr -e 500 -c 1 -i 77 -a 1 -x {1.0 6.0 47 ------- null} h -t 0.6016 -s 3 -d 4 -p cbr -e 500 -c 1 -i 77 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.604 -s 1 -d 3 -p cbr -e 500 -c 1 -i 86 -a 1 -x {1.0 6.0 53 ------- null} + -t 0.604 -s 3 -d 4 -p cbr -e 500 -c 1 -i 86 -a 1 -x {1.0 6.0 53 ------- null} - -t 0.6056 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 76 -a 1 -x {2.0 7.0 21 ------- null} h -t 0.6056 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 76 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.6076 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {0.0 5.0 3 ------- null} + -t 0.6076 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {0.0 5.0 3 ------- null} - -t 0.6076 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {0.0 5.0 3 ------- null} h -t 0.6076 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.608 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 85 -a 1 -x {2.0 7.0 24 ------- null} + -t 0.608 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 85 -a 1 -x {2.0 7.0 24 ------- null} r -t 0.6092 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {0.0 5.0 1 ------- null} + -t 0.6092 -s 5 -d 4 -p ack -e 40 -c 0 -i 91 -a 0 -x {5.0 0.0 1 ------- null} - -t 0.6092 -s 5 -d 4 -p ack -e 40 -c 0 -i 91 -a 0 -x {5.0 0.0 1 ------- null} h -t 0.6092 -s 5 -d 4 -p ack -e 40 -c 0 -i 91 -a 0 -x {5.0 0.0 -1 ------- null} + -t 0.61 -s 1 -d 3 -p cbr -e 500 -c 1 -i 92 -a 1 -x {1.0 6.0 56 ------- null} - -t 0.61 -s 1 -d 3 -p cbr -e 500 -c 1 -i 92 -a 1 -x {1.0 6.0 56 ------- null} h -t 0.61 -s 1 -d 3 -p cbr -e 500 -c 1 -i 92 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.6136 -s 3 -d 4 -p cbr -e 500 -c 1 -i 78 -a 1 -x {1.0 6.0 48 ------- null} h -t 0.6136 -s 3 -d 4 -p cbr -e 500 -c 1 -i 78 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.614 -s 1 -d 3 -p cbr -e 500 -c 1 -i 87 -a 1 -x {1.0 6.0 54 ------- null} + -t 0.614 -s 3 -d 4 -p cbr -e 500 -c 1 -i 87 -a 1 -x {1.0 6.0 54 ------- null} r -t 0.6156 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 73 -a 1 -x {2.0 7.0 20 ------- null} + -t 0.6156 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 73 -a 1 -x {2.0 7.0 20 ------- null} - -t 0.6156 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 73 -a 1 -x {2.0 7.0 20 ------- null} h -t 0.6156 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 73 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.6156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 74 -a 1 -x {1.0 6.0 45 ------- null} - -t 0.6176 -s 3 -d 4 -p cbr -e 500 -c 1 -i 80 -a 1 -x {1.0 6.0 49 ------- null} h -t 0.6176 -s 3 -d 4 -p cbr -e 500 -c 1 -i 80 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.62 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 93 -a 1 -x {2.0 7.0 26 ------- null} - -t 0.62 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 93 -a 1 -x {2.0 7.0 26 ------- null} h -t 0.62 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 93 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.62 -s 1 -d 3 -p cbr -e 500 -c 1 -i 94 -a 1 -x {1.0 6.0 57 ------- null} - -t 0.62 -s 1 -d 3 -p cbr -e 500 -c 1 -i 94 -a 1 -x {1.0 6.0 57 ------- null} h -t 0.62 -s 1 -d 3 -p cbr -e 500 -c 1 -i 94 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.6212 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {0.0 5.0 2 ------- null} + -t 0.6212 -s 5 -d 4 -p ack -e 40 -c 0 -i 95 -a 0 -x {5.0 0.0 2 ------- null} - -t 0.6212 -s 5 -d 4 -p ack -e 40 -c 0 -i 95 -a 0 -x {5.0 0.0 2 ------- null} h -t 0.6212 -s 5 -d 4 -p ack -e 40 -c 0 -i 95 -a 0 -x {5.0 0.0 -1 ------- null} r -t 0.621264 -s 5 -d 4 -p ack -e 40 -c 0 -i 90 -a 0 -x {5.0 0.0 0 ------- null} + -t 0.621264 -s 4 -d 3 -p ack -e 40 -c 0 -i 90 -a 0 -x {5.0 0.0 0 ------- null} - -t 0.621264 -s 4 -d 3 -p ack -e 40 -c 0 -i 90 -a 0 -x {5.0 0.0 0 ------- null} h -t 0.621264 -s 4 -d 3 -p ack -e 40 -c 0 -i 90 -a 0 -x {5.0 0.0 -1 ------- null} - -t 0.6216 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 79 -a 1 -x {2.0 7.0 22 ------- null} h -t 0.6216 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 79 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.6236 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {0.0 5.0 4 ------- null} + -t 0.6236 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {0.0 5.0 4 ------- null} - -t 0.6236 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {0.0 5.0 4 ------- null} h -t 0.6236 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.624 -s 1 -d 3 -p cbr -e 500 -c 1 -i 89 -a 1 -x {1.0 6.0 55 ------- null} + -t 0.624 -s 3 -d 4 -p cbr -e 500 -c 1 -i 89 -a 1 -x {1.0 6.0 55 ------- null} r -t 0.628 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 88 -a 1 -x {2.0 7.0 25 ------- null} + -t 0.628 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 88 -a 1 -x {2.0 7.0 25 ------- null} r -t 0.6292 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {0.0 5.0 3 ------- null} + -t 0.6292 -s 5 -d 4 -p ack -e 40 -c 0 -i 96 -a 0 -x {5.0 0.0 3 ------- null} - -t 0.6292 -s 5 -d 4 -p ack -e 40 -c 0 -i 96 -a 0 -x {5.0 0.0 3 ------- null} h -t 0.6292 -s 5 -d 4 -p ack -e 40 -c 0 -i 96 -a 0 -x {5.0 0.0 -1 ------- null} r -t 0.629264 -s 5 -d 4 -p ack -e 40 -c 0 -i 91 -a 0 -x {5.0 0.0 1 ------- null} + -t 0.629264 -s 4 -d 3 -p ack -e 40 -c 0 -i 91 -a 0 -x {5.0 0.0 1 ------- null} - -t 0.629264 -s 4 -d 3 -p ack -e 40 -c 0 -i 91 -a 0 -x {5.0 0.0 1 ------- null} h -t 0.629264 -s 4 -d 3 -p ack -e 40 -c 0 -i 91 -a 0 -x {5.0 0.0 -1 ------- null} - -t 0.6296 -s 3 -d 4 -p cbr -e 500 -c 1 -i 81 -a 1 -x {1.0 6.0 50 ------- null} h -t 0.6296 -s 3 -d 4 -p cbr -e 500 -c 1 -i 81 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.63 -s 1 -d 3 -p cbr -e 500 -c 1 -i 97 -a 1 -x {1.0 6.0 58 ------- null} - -t 0.63 -s 1 -d 3 -p cbr -e 500 -c 1 -i 97 -a 1 -x {1.0 6.0 58 ------- null} h -t 0.63 -s 1 -d 3 -p cbr -e 500 -c 1 -i 97 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.6316 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {0.0 5.0 5 ------- null} + -t 0.6316 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {0.0 5.0 5 ------- null} - -t 0.6316 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {0.0 5.0 5 ------- null} h -t 0.6316 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {0.0 5.0 -1 ------- null} - -t 0.6336 -s 3 -d 4 -p cbr -e 500 -c 1 -i 83 -a 1 -x {1.0 6.0 51 ------- null} h -t 0.6336 -s 3 -d 4 -p cbr -e 500 -c 1 -i 83 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.634 -s 1 -d 3 -p cbr -e 500 -c 1 -i 92 -a 1 -x {1.0 6.0 56 ------- null} + -t 0.634 -s 3 -d 4 -p cbr -e 500 -c 1 -i 92 -a 1 -x {1.0 6.0 56 ------- null} - -t 0.6376 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 82 -a 1 -x {2.0 7.0 23 ------- null} h -t 0.6376 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 82 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.6396 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {0.0 5.0 6 ------- null} + -t 0.6396 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {0.0 5.0 6 ------- null} - -t 0.6396 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {0.0 5.0 6 ------- null} h -t 0.6396 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {0.0 5.0 -1 ------- null} + -t 0.64 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 98 -a 1 -x {2.0 7.0 27 ------- null} - -t 0.64 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 98 -a 1 -x {2.0 7.0 27 ------- null} h -t 0.64 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 98 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.64 -s 1 -d 3 -p cbr -e 500 -c 1 -i 99 -a 1 -x {1.0 6.0 59 ------- null} - -t 0.64 -s 1 -d 3 -p cbr -e 500 -c 1 -i 99 -a 1 -x {1.0 6.0 59 ------- null} h -t 0.64 -s 1 -d 3 -p cbr -e 500 -c 1 -i 99 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.641264 -s 5 -d 4 -p ack -e 40 -c 0 -i 95 -a 0 -x {5.0 0.0 2 ------- null} + -t 0.641264 -s 4 -d 3 -p ack -e 40 -c 0 -i 95 -a 0 -x {5.0 0.0 2 ------- null} - -t 0.641264 -s 4 -d 3 -p ack -e 40 -c 0 -i 95 -a 0 -x {5.0 0.0 2 ------- null} h -t 0.641264 -s 4 -d 3 -p ack -e 40 -c 0 -i 95 -a 0 -x {5.0 0.0 -1 ------- null} r -t 0.6436 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 73 -a 1 -x {2.0 7.0 20 ------- null} r -t 0.644 -s 1 -d 3 -p cbr -e 500 -c 1 -i 94 -a 1 -x {1.0 6.0 57 ------- null} + -t 0.644 -s 3 -d 4 -p cbr -e 500 -c 1 -i 94 -a 1 -x {1.0 6.0 57 ------- null} r -t 0.6452 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {0.0 5.0 4 ------- null} + -t 0.6452 -s 5 -d 4 -p ack -e 40 -c 0 -i 100 -a 0 -x {5.0 0.0 4 ------- null} - -t 0.6452 -s 5 -d 4 -p ack -e 40 -c 0 -i 100 -a 0 -x {5.0 0.0 4 ------- null} h -t 0.6452 -s 5 -d 4 -p ack -e 40 -c 0 -i 100 -a 0 -x {5.0 0.0 -1 ------- null} - -t 0.6456 -s 3 -d 4 -p cbr -e 500 -c 1 -i 84 -a 1 -x {1.0 6.0 52 ------- null} h -t 0.6456 -s 3 -d 4 -p cbr -e 500 -c 1 -i 84 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.6476 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {0.0 5.0 7 ------- null} + -t 0.6476 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {0.0 5.0 7 ------- null} - -t 0.6476 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {0.0 5.0 7 ------- null} h -t 0.6476 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.648 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 93 -a 1 -x {2.0 7.0 26 ------- null} + -t 0.648 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 93 -a 1 -x {2.0 7.0 26 ------- null} r -t 0.649264 -s 5 -d 4 -p ack -e 40 -c 0 -i 96 -a 0 -x {5.0 0.0 3 ------- null} + -t 0.649264 -s 4 -d 3 -p ack -e 40 -c 0 -i 96 -a 0 -x {5.0 0.0 3 ------- null} - -t 0.649264 -s 4 -d 3 -p ack -e 40 -c 0 -i 96 -a 0 -x {5.0 0.0 3 ------- null} h -t 0.649264 -s 4 -d 3 -p ack -e 40 -c 0 -i 96 -a 0 -x {5.0 0.0 -1 ------- null} - -t 0.6496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 86 -a 1 -x {1.0 6.0 53 ------- null} h -t 0.6496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 86 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.65 -s 1 -d 3 -p cbr -e 500 -c 1 -i 101 -a 1 -x {1.0 6.0 60 ------- null} - -t 0.65 -s 1 -d 3 -p cbr -e 500 -c 1 -i 101 -a 1 -x {1.0 6.0 60 ------- null} h -t 0.65 -s 1 -d 3 -p cbr -e 500 -c 1 -i 101 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.6516 -s 3 -d 4 -p cbr -e 500 -c 1 -i 75 -a 1 -x {1.0 6.0 46 ------- null} + -t 0.6516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 75 -a 1 -x {1.0 6.0 46 ------- null} - -t 0.6516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 75 -a 1 -x {1.0 6.0 46 ------- null} h -t 0.6516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 75 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.6532 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {0.0 5.0 5 ------- null} + -t 0.6532 -s 5 -d 4 -p ack -e 40 -c 0 -i 102 -a 0 -x {5.0 0.0 5 ------- null} - -t 0.6532 -s 5 -d 4 -p ack -e 40 -c 0 -i 102 -a 0 -x {5.0 0.0 5 ------- null} h -t 0.6532 -s 5 -d 4 -p ack -e 40 -c 0 -i 102 -a 0 -x {5.0 0.0 -1 ------- null} - -t 0.6536 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 85 -a 1 -x {2.0 7.0 24 ------- null} h -t 0.6536 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 85 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.654 -s 1 -d 3 -p cbr -e 500 -c 1 -i 97 -a 1 -x {1.0 6.0 58 ------- null} + -t 0.654 -s 3 -d 4 -p cbr -e 500 -c 1 -i 97 -a 1 -x {1.0 6.0 58 ------- null} r -t 0.6556 -s 3 -d 4 -p cbr -e 500 -c 1 -i 77 -a 1 -x {1.0 6.0 47 ------- null} + -t 0.6556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 77 -a 1 -x {1.0 6.0 47 ------- null} - -t 0.6556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 77 -a 1 -x {1.0 6.0 47 ------- null} h -t 0.6556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 77 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.66 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 103 -a 1 -x {2.0 7.0 28 ------- null} - -t 0.66 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 103 -a 1 -x {2.0 7.0 28 ------- null} h -t 0.66 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 103 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.66 -s 1 -d 3 -p cbr -e 500 -c 1 -i 104 -a 1 -x {1.0 6.0 61 ------- null} - -t 0.66 -s 1 -d 3 -p cbr -e 500 -c 1 -i 104 -a 1 -x {1.0 6.0 61 ------- null} h -t 0.66 -s 1 -d 3 -p cbr -e 500 -c 1 -i 104 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.6612 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {0.0 5.0 6 ------- null} + -t 0.6612 -s 5 -d 4 -p ack -e 40 -c 0 -i 105 -a 0 -x {5.0 0.0 6 ------- null} - -t 0.6612 -s 5 -d 4 -p ack -e 40 -c 0 -i 105 -a 0 -x {5.0 0.0 6 ------- null} h -t 0.6612 -s 5 -d 4 -p ack -e 40 -c 0 -i 105 -a 0 -x {5.0 0.0 -1 ------- null} - -t 0.6616 -s 3 -d 4 -p cbr -e 500 -c 1 -i 87 -a 1 -x {1.0 6.0 54 ------- null} h -t 0.6616 -s 3 -d 4 -p cbr -e 500 -c 1 -i 87 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.6636 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 76 -a 1 -x {2.0 7.0 21 ------- null} + -t 0.6636 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 76 -a 1 -x {2.0 7.0 21 ------- null} - -t 0.6636 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 76 -a 1 -x {2.0 7.0 21 ------- null} h -t 0.6636 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 76 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.664 -s 1 -d 3 -p cbr -e 500 -c 1 -i 99 -a 1 -x {1.0 6.0 59 ------- null} + -t 0.664 -s 3 -d 4 -p cbr -e 500 -c 1 -i 99 -a 1 -x {1.0 6.0 59 ------- null} r -t 0.665264 -s 5 -d 4 -p ack -e 40 -c 0 -i 100 -a 0 -x {5.0 0.0 4 ------- null} + -t 0.665264 -s 4 -d 3 -p ack -e 40 -c 0 -i 100 -a 0 -x {5.0 0.0 4 ------- null} - -t 0.665264 -s 4 -d 3 -p ack -e 40 -c 0 -i 100 -a 0 -x {5.0 0.0 4 ------- null} h -t 0.665264 -s 4 -d 3 -p ack -e 40 -c 0 -i 100 -a 0 -x {5.0 0.0 -1 ------- null} - -t 0.6656 -s 3 -d 4 -p cbr -e 500 -c 1 -i 89 -a 1 -x {1.0 6.0 55 ------- null} h -t 0.6656 -s 3 -d 4 -p cbr -e 500 -c 1 -i 89 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.6676 -s 3 -d 4 -p cbr -e 500 -c 1 -i 78 -a 1 -x {1.0 6.0 48 ------- null} + -t 0.6676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 78 -a 1 -x {1.0 6.0 48 ------- null} - -t 0.6676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 78 -a 1 -x {1.0 6.0 48 ------- null} h -t 0.6676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 78 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.668 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 98 -a 1 -x {2.0 7.0 27 ------- null} + -t 0.668 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 98 -a 1 -x {2.0 7.0 27 ------- null} r -t 0.6692 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {0.0 5.0 7 ------- null} + -t 0.6692 -s 5 -d 4 -p ack -e 40 -c 0 -i 106 -a 0 -x {5.0 0.0 7 ------- null} - -t 0.6692 -s 5 -d 4 -p ack -e 40 -c 0 -i 106 -a 0 -x {5.0 0.0 7 ------- null} h -t 0.6692 -s 5 -d 4 -p ack -e 40 -c 0 -i 106 -a 0 -x {5.0 0.0 -1 ------- null} - -t 0.6696 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 88 -a 1 -x {2.0 7.0 25 ------- null} h -t 0.6696 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 88 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.67 -s 1 -d 3 -p cbr -e 500 -c 1 -i 107 -a 1 -x {1.0 6.0 62 ------- null} - -t 0.67 -s 1 -d 3 -p cbr -e 500 -c 1 -i 107 -a 1 -x {1.0 6.0 62 ------- null} h -t 0.67 -s 1 -d 3 -p cbr -e 500 -c 1 -i 107 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.671584 -s 4 -d 3 -p ack -e 40 -c 0 -i 90 -a 0 -x {5.0 0.0 0 ------- null} + -t 0.671584 -s 3 -d 0 -p ack -e 40 -c 0 -i 90 -a 0 -x {5.0 0.0 0 ------- null} - -t 0.671584 -s 3 -d 0 -p ack -e 40 -c 0 -i 90 -a 0 -x {5.0 0.0 0 ------- null} h -t 0.671584 -s 3 -d 0 -p ack -e 40 -c 0 -i 90 -a 0 -x {5.0 0.0 -1 ------- null} r -t 0.6716 -s 3 -d 4 -p cbr -e 500 -c 1 -i 80 -a 1 -x {1.0 6.0 49 ------- null} + -t 0.6716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 80 -a 1 -x {1.0 6.0 49 ------- null} - -t 0.6716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 80 -a 1 -x {1.0 6.0 49 ------- null} h -t 0.6716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 80 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.673264 -s 5 -d 4 -p ack -e 40 -c 0 -i 102 -a 0 -x {5.0 0.0 5 ------- null} + -t 0.673264 -s 4 -d 3 -p ack -e 40 -c 0 -i 102 -a 0 -x {5.0 0.0 5 ------- null} - -t 0.673264 -s 4 -d 3 -p ack -e 40 -c 0 -i 102 -a 0 -x {5.0 0.0 5 ------- null} h -t 0.673264 -s 4 -d 3 -p ack -e 40 -c 0 -i 102 -a 0 -x {5.0 0.0 -1 ------- null} r -t 0.674 -s 1 -d 3 -p cbr -e 500 -c 1 -i 101 -a 1 -x {1.0 6.0 60 ------- null} + -t 0.674 -s 3 -d 4 -p cbr -e 500 -c 1 -i 101 -a 1 -x {1.0 6.0 60 ------- null} r -t 0.6756 -s 4 -d 6 -p cbr -e 500 -c 1 -i 75 -a 1 -x {1.0 6.0 46 ------- null} - -t 0.6776 -s 3 -d 4 -p cbr -e 500 -c 1 -i 92 -a 1 -x {1.0 6.0 56 ------- null} h -t 0.6776 -s 3 -d 4 -p cbr -e 500 -c 1 -i 92 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.679584 -s 4 -d 3 -p ack -e 40 -c 0 -i 91 -a 0 -x {5.0 0.0 1 ------- null} + -t 0.679584 -s 3 -d 0 -p ack -e 40 -c 0 -i 91 -a 0 -x {5.0 0.0 1 ------- null} - -t 0.679584 -s 3 -d 0 -p ack -e 40 -c 0 -i 91 -a 0 -x {5.0 0.0 1 ------- null} h -t 0.679584 -s 3 -d 0 -p ack -e 40 -c 0 -i 91 -a 0 -x {5.0 0.0 -1 ------- null} r -t 0.6796 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 79 -a 1 -x {2.0 7.0 22 ------- null} + -t 0.6796 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 79 -a 1 -x {2.0 7.0 22 ------- null} - -t 0.6796 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 79 -a 1 -x {2.0 7.0 22 ------- null} h -t 0.6796 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 79 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.6796 -s 4 -d 6 -p cbr -e 500 -c 1 -i 77 -a 1 -x {1.0 6.0 47 ------- null} + -t 0.68 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 108 -a 1 -x {2.0 7.0 29 ------- null} - -t 0.68 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 108 -a 1 -x {2.0 7.0 29 ------- null} h -t 0.68 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 108 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.68 -s 1 -d 3 -p cbr -e 500 -c 1 -i 109 -a 1 -x {1.0 6.0 63 ------- null} - -t 0.68 -s 1 -d 3 -p cbr -e 500 -c 1 -i 109 -a 1 -x {1.0 6.0 63 ------- null} h -t 0.68 -s 1 -d 3 -p cbr -e 500 -c 1 -i 109 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.681264 -s 5 -d 4 -p ack -e 40 -c 0 -i 105 -a 0 -x {5.0 0.0 6 ------- null} + -t 0.681264 -s 4 -d 3 -p ack -e 40 -c 0 -i 105 -a 0 -x {5.0 0.0 6 ------- null} - -t 0.681264 -s 4 -d 3 -p ack -e 40 -c 0 -i 105 -a 0 -x {5.0 0.0 6 ------- null} h -t 0.681264 -s 4 -d 3 -p ack -e 40 -c 0 -i 105 -a 0 -x {5.0 0.0 -1 ------- null} - -t 0.6816 -s 3 -d 4 -p cbr -e 500 -c 1 -i 94 -a 1 -x {1.0 6.0 57 ------- null} h -t 0.6816 -s 3 -d 4 -p cbr -e 500 -c 1 -i 94 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.6836 -s 3 -d 4 -p cbr -e 500 -c 1 -i 81 -a 1 -x {1.0 6.0 50 ------- null} + -t 0.6836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 81 -a 1 -x {1.0 6.0 50 ------- null} - -t 0.6836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 81 -a 1 -x {1.0 6.0 50 ------- null} h -t 0.6836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 81 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.684 -s 1 -d 3 -p cbr -e 500 -c 1 -i 104 -a 1 -x {1.0 6.0 61 ------- null} + -t 0.684 -s 3 -d 4 -p cbr -e 500 -c 1 -i 104 -a 1 -x {1.0 6.0 61 ------- null} - -t 0.6856 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 93 -a 1 -x {2.0 7.0 26 ------- null} h -t 0.6856 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 93 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.6876 -s 3 -d 4 -p cbr -e 500 -c 1 -i 83 -a 1 -x {1.0 6.0 51 ------- null} + -t 0.6876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 83 -a 1 -x {1.0 6.0 51 ------- null} - -t 0.6876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 83 -a 1 -x {1.0 6.0 51 ------- null} h -t 0.6876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 83 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.688 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 103 -a 1 -x {2.0 7.0 28 ------- null} + -t 0.688 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 103 -a 1 -x {2.0 7.0 28 ------- null} r -t 0.689264 -s 5 -d 4 -p ack -e 40 -c 0 -i 106 -a 0 -x {5.0 0.0 7 ------- null} + -t 0.689264 -s 4 -d 3 -p ack -e 40 -c 0 -i 106 -a 0 -x {5.0 0.0 7 ------- null} - -t 0.689264 -s 4 -d 3 -p ack -e 40 -c 0 -i 106 -a 0 -x {5.0 0.0 7 ------- null} h -t 0.689264 -s 4 -d 3 -p ack -e 40 -c 0 -i 106 -a 0 -x {5.0 0.0 -1 ------- null} + -t 0.69 -s 1 -d 3 -p cbr -e 500 -c 1 -i 110 -a 1 -x {1.0 6.0 64 ------- null} - -t 0.69 -s 1 -d 3 -p cbr -e 500 -c 1 -i 110 -a 1 -x {1.0 6.0 64 ------- null} h -t 0.69 -s 1 -d 3 -p cbr -e 500 -c 1 -i 110 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.691584 -s 4 -d 3 -p ack -e 40 -c 0 -i 95 -a 0 -x {5.0 0.0 2 ------- null} + -t 0.691584 -s 3 -d 0 -p ack -e 40 -c 0 -i 95 -a 0 -x {5.0 0.0 2 ------- null} - -t 0.691584 -s 3 -d 0 -p ack -e 40 -c 0 -i 95 -a 0 -x {5.0 0.0 2 ------- null} h -t 0.691584 -s 3 -d 0 -p ack -e 40 -c 0 -i 95 -a 0 -x {5.0 0.0 -1 ------- null} r -t 0.6916 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 76 -a 1 -x {2.0 7.0 21 ------- null} r -t 0.6916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 78 -a 1 -x {1.0 6.0 48 ------- null} r -t 0.691648 -s 3 -d 0 -p ack -e 40 -c 0 -i 90 -a 0 -x {5.0 0.0 0 ------- null} + -t 0.691648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {0.0 5.0 8 ------- null} - -t 0.691648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {0.0 5.0 8 ------- null} h -t 0.691648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {0.0 5.0 -1 ------- null} - -t 0.6936 -s 3 -d 4 -p cbr -e 500 -c 1 -i 97 -a 1 -x {1.0 6.0 58 ------- null} h -t 0.6936 -s 3 -d 4 -p cbr -e 500 -c 1 -i 97 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.694 -s 1 -d 3 -p cbr -e 500 -c 1 -i 107 -a 1 -x {1.0 6.0 62 ------- null} + -t 0.694 -s 3 -d 4 -p cbr -e 500 -c 1 -i 107 -a 1 -x {1.0 6.0 62 ------- null} r -t 0.6956 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 82 -a 1 -x {2.0 7.0 23 ------- null} + -t 0.6956 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 82 -a 1 -x {2.0 7.0 23 ------- null} - -t 0.6956 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 82 -a 1 -x {2.0 7.0 23 ------- null} h -t 0.6956 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 82 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.6956 -s 4 -d 6 -p cbr -e 500 -c 1 -i 80 -a 1 -x {1.0 6.0 49 ------- null} - -t 0.6976 -s 3 -d 4 -p cbr -e 500 -c 1 -i 99 -a 1 -x {1.0 6.0 59 ------- null} h -t 0.6976 -s 3 -d 4 -p cbr -e 500 -c 1 -i 99 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.699584 -s 4 -d 3 -p ack -e 40 -c 0 -i 96 -a 0 -x {5.0 0.0 3 ------- null} + -t 0.699584 -s 3 -d 0 -p ack -e 40 -c 0 -i 96 -a 0 -x {5.0 0.0 3 ------- null} - -t 0.699584 -s 3 -d 0 -p ack -e 40 -c 0 -i 96 -a 0 -x {5.0 0.0 3 ------- null} h -t 0.699584 -s 3 -d 0 -p ack -e 40 -c 0 -i 96 -a 0 -x {5.0 0.0 -1 ------- null} r -t 0.6996 -s 3 -d 4 -p cbr -e 500 -c 1 -i 84 -a 1 -x {1.0 6.0 52 ------- null} + -t 0.6996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 84 -a 1 -x {1.0 6.0 52 ------- null} - -t 0.6996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 84 -a 1 -x {1.0 6.0 52 ------- null} h -t 0.6996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 84 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.699648 -s 3 -d 0 -p ack -e 40 -c 0 -i 91 -a 0 -x {5.0 0.0 1 ------- null} + -t 0.699648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {0.0 5.0 9 ------- null} - -t 0.699648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {0.0 5.0 9 ------- null} h -t 0.699648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {0.0 5.0 -1 ------- null} + -t 0.7 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 113 -a 1 -x {2.0 7.0 30 ------- null} - -t 0.7 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 113 -a 1 -x {2.0 7.0 30 ------- null} h -t 0.7 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 113 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.7 -s 1 -d 3 -p cbr -e 500 -c 1 -i 114 -a 1 -x {1.0 6.0 65 ------- null} - -t 0.7 -s 1 -d 3 -p cbr -e 500 -c 1 -i 114 -a 1 -x {1.0 6.0 65 ------- null} h -t 0.7 -s 1 -d 3 -p cbr -e 500 -c 1 -i 114 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.7016 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 98 -a 1 -x {2.0 7.0 27 ------- null} h -t 0.7016 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 98 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.7036 -s 3 -d 4 -p cbr -e 500 -c 1 -i 86 -a 1 -x {1.0 6.0 53 ------- null} + -t 0.7036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 86 -a 1 -x {1.0 6.0 53 ------- null} - -t 0.7036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 86 -a 1 -x {1.0 6.0 53 ------- null} h -t 0.7036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 86 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.704 -s 1 -d 3 -p cbr -e 500 -c 1 -i 109 -a 1 -x {1.0 6.0 63 ------- null} + -t 0.704 -s 3 -d 4 -p cbr -e 500 -c 1 -i 109 -a 1 -x {1.0 6.0 63 ------- null} r -t 0.7076 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 79 -a 1 -x {2.0 7.0 22 ------- null} r -t 0.7076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 81 -a 1 -x {1.0 6.0 50 ------- null} r -t 0.708 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 108 -a 1 -x {2.0 7.0 29 ------- null} + -t 0.708 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 108 -a 1 -x {2.0 7.0 29 ------- null} - -t 0.7096 -s 3 -d 4 -p cbr -e 500 -c 1 -i 101 -a 1 -x {1.0 6.0 60 ------- null} h -t 0.7096 -s 3 -d 4 -p cbr -e 500 -c 1 -i 101 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.71 -s 1 -d 3 -p cbr -e 500 -c 1 -i 115 -a 1 -x {1.0 6.0 66 ------- null} - -t 0.71 -s 1 -d 3 -p cbr -e 500 -c 1 -i 115 -a 1 -x {1.0 6.0 66 ------- null} h -t 0.71 -s 1 -d 3 -p cbr -e 500 -c 1 -i 115 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.7116 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 85 -a 1 -x {2.0 7.0 24 ------- null} + -t 0.7116 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 85 -a 1 -x {2.0 7.0 24 ------- null} - -t 0.7116 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 85 -a 1 -x {2.0 7.0 24 ------- null} h -t 0.7116 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 85 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.7116 -s 4 -d 6 -p cbr -e 500 -c 1 -i 83 -a 1 -x {1.0 6.0 51 ------- null} r -t 0.711648 -s 3 -d 0 -p ack -e 40 -c 0 -i 95 -a 0 -x {5.0 0.0 2 ------- null} + -t 0.711648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {0.0 5.0 10 ------- null} - -t 0.711648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {0.0 5.0 10 ------- null} h -t 0.711648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.713248 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {0.0 5.0 8 ------- null} + -t 0.713248 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {0.0 5.0 8 ------- null} - -t 0.7136 -s 3 -d 4 -p cbr -e 500 -c 1 -i 104 -a 1 -x {1.0 6.0 61 ------- null} h -t 0.7136 -s 3 -d 4 -p cbr -e 500 -c 1 -i 104 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.714 -s 1 -d 3 -p cbr -e 500 -c 1 -i 110 -a 1 -x {1.0 6.0 64 ------- null} + -t 0.714 -s 3 -d 4 -p cbr -e 500 -c 1 -i 110 -a 1 -x {1.0 6.0 64 ------- null} r -t 0.715584 -s 4 -d 3 -p ack -e 40 -c 0 -i 100 -a 0 -x {5.0 0.0 4 ------- null} + -t 0.715584 -s 3 -d 0 -p ack -e 40 -c 0 -i 100 -a 0 -x {5.0 0.0 4 ------- null} - -t 0.715584 -s 3 -d 0 -p ack -e 40 -c 0 -i 100 -a 0 -x {5.0 0.0 4 ------- null} h -t 0.715584 -s 3 -d 0 -p ack -e 40 -c 0 -i 100 -a 0 -x {5.0 0.0 -1 ------- null} r -t 0.7156 -s 3 -d 4 -p cbr -e 500 -c 1 -i 87 -a 1 -x {1.0 6.0 54 ------- null} + -t 0.7156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 87 -a 1 -x {1.0 6.0 54 ------- null} - -t 0.7156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 87 -a 1 -x {1.0 6.0 54 ------- null} h -t 0.7156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 87 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.7176 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 103 -a 1 -x {2.0 7.0 28 ------- null} h -t 0.7176 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 103 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.7196 -s 3 -d 4 -p cbr -e 500 -c 1 -i 89 -a 1 -x {1.0 6.0 55 ------- null} + -t 0.7196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 89 -a 1 -x {1.0 6.0 55 ------- null} - -t 0.7196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 89 -a 1 -x {1.0 6.0 55 ------- null} h -t 0.7196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 89 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.719648 -s 3 -d 0 -p ack -e 40 -c 0 -i 96 -a 0 -x {5.0 0.0 3 ------- null} + -t 0.719648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {0.0 5.0 11 ------- null} - -t 0.719648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {0.0 5.0 11 ------- null} h -t 0.719648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {0.0 5.0 -1 ------- null} + -t 0.72 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 118 -a 1 -x {2.0 7.0 31 ------- null} - -t 0.72 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 118 -a 1 -x {2.0 7.0 31 ------- null} h -t 0.72 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 118 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.72 -s 1 -d 3 -p cbr -e 500 -c 1 -i 119 -a 1 -x {1.0 6.0 67 ------- null} - -t 0.72 -s 1 -d 3 -p cbr -e 500 -c 1 -i 119 -a 1 -x {1.0 6.0 67 ------- null} h -t 0.72 -s 1 -d 3 -p cbr -e 500 -c 1 -i 119 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.721248 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {0.0 5.0 9 ------- null} + -t 0.721248 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {0.0 5.0 9 ------- null} r -t 0.723584 -s 4 -d 3 -p ack -e 40 -c 0 -i 102 -a 0 -x {5.0 0.0 5 ------- null} + -t 0.723584 -s 3 -d 0 -p ack -e 40 -c 0 -i 102 -a 0 -x {5.0 0.0 5 ------- null} - -t 0.723584 -s 3 -d 0 -p ack -e 40 -c 0 -i 102 -a 0 -x {5.0 0.0 5 ------- null} h -t 0.723584 -s 3 -d 0 -p ack -e 40 -c 0 -i 102 -a 0 -x {5.0 0.0 -1 ------- null} r -t 0.7236 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 82 -a 1 -x {2.0 7.0 23 ------- null} r -t 0.7236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 84 -a 1 -x {1.0 6.0 52 ------- null} r -t 0.724 -s 1 -d 3 -p cbr -e 500 -c 1 -i 114 -a 1 -x {1.0 6.0 65 ------- null} + -t 0.724 -s 3 -d 4 -p cbr -e 500 -c 1 -i 114 -a 1 -x {1.0 6.0 65 ------- null} - -t 0.7256 -s 3 -d 4 -p cbr -e 500 -c 1 -i 107 -a 1 -x {1.0 6.0 62 ------- null} h -t 0.7256 -s 3 -d 4 -p cbr -e 500 -c 1 -i 107 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.7276 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 88 -a 1 -x {2.0 7.0 25 ------- null} + -t 0.7276 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 88 -a 1 -x {2.0 7.0 25 ------- null} - -t 0.7276 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 88 -a 1 -x {2.0 7.0 25 ------- null} h -t 0.7276 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 88 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.7276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 86 -a 1 -x {1.0 6.0 53 ------- null} r -t 0.728 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 113 -a 1 -x {2.0 7.0 30 ------- null} + -t 0.728 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 113 -a 1 -x {2.0 7.0 30 ------- null} - -t 0.7296 -s 3 -d 4 -p cbr -e 500 -c 1 -i 109 -a 1 -x {1.0 6.0 63 ------- null} h -t 0.7296 -s 3 -d 4 -p cbr -e 500 -c 1 -i 109 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.73 -s 1 -d 3 -p cbr -e 500 -c 1 -i 120 -a 1 -x {1.0 6.0 68 ------- null} - -t 0.73 -s 1 -d 3 -p cbr -e 500 -c 1 -i 120 -a 1 -x {1.0 6.0 68 ------- null} h -t 0.73 -s 1 -d 3 -p cbr -e 500 -c 1 -i 120 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.731584 -s 4 -d 3 -p ack -e 40 -c 0 -i 105 -a 0 -x {5.0 0.0 6 ------- null} + -t 0.731584 -s 3 -d 0 -p ack -e 40 -c 0 -i 105 -a 0 -x {5.0 0.0 6 ------- null} - -t 0.731584 -s 3 -d 0 -p ack -e 40 -c 0 -i 105 -a 0 -x {5.0 0.0 6 ------- null} h -t 0.731584 -s 3 -d 0 -p ack -e 40 -c 0 -i 105 -a 0 -x {5.0 0.0 -1 ------- null} r -t 0.7316 -s 3 -d 4 -p cbr -e 500 -c 1 -i 92 -a 1 -x {1.0 6.0 56 ------- null} + -t 0.7316 -s 4 -d 6 -p cbr -e 500 -c 1 -i 92 -a 1 -x {1.0 6.0 56 ------- null} - -t 0.7316 -s 4 -d 6 -p cbr -e 500 -c 1 -i 92 -a 1 -x {1.0 6.0 56 ------- null} h -t 0.7316 -s 4 -d 6 -p cbr -e 500 -c 1 -i 92 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.733248 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {0.0 5.0 10 ------- null} + -t 0.733248 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {0.0 5.0 10 ------- null} - -t 0.7336 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 108 -a 1 -x {2.0 7.0 29 ------- null} h -t 0.7336 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 108 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.734 -s 1 -d 3 -p cbr -e 500 -c 1 -i 115 -a 1 -x {1.0 6.0 66 ------- null} + -t 0.734 -s 3 -d 4 -p cbr -e 500 -c 1 -i 115 -a 1 -x {1.0 6.0 66 ------- null} r -t 0.7356 -s 3 -d 4 -p cbr -e 500 -c 1 -i 94 -a 1 -x {1.0 6.0 57 ------- null} + -t 0.7356 -s 4 -d 6 -p cbr -e 500 -c 1 -i 94 -a 1 -x {1.0 6.0 57 ------- null} - -t 0.7356 -s 4 -d 6 -p cbr -e 500 -c 1 -i 94 -a 1 -x {1.0 6.0 57 ------- null} h -t 0.7356 -s 4 -d 6 -p cbr -e 500 -c 1 -i 94 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.735648 -s 3 -d 0 -p ack -e 40 -c 0 -i 100 -a 0 -x {5.0 0.0 4 ------- null} + -t 0.735648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {0.0 5.0 12 ------- null} - -t 0.735648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {0.0 5.0 12 ------- null} h -t 0.735648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.739584 -s 4 -d 3 -p ack -e 40 -c 0 -i 106 -a 0 -x {5.0 0.0 7 ------- null} + -t 0.739584 -s 3 -d 0 -p ack -e 40 -c 0 -i 106 -a 0 -x {5.0 0.0 7 ------- null} - -t 0.739584 -s 3 -d 0 -p ack -e 40 -c 0 -i 106 -a 0 -x {5.0 0.0 7 ------- null} h -t 0.739584 -s 3 -d 0 -p ack -e 40 -c 0 -i 106 -a 0 -x {5.0 0.0 -1 ------- null} r -t 0.7396 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 85 -a 1 -x {2.0 7.0 24 ------- null} r -t 0.7396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 87 -a 1 -x {1.0 6.0 54 ------- null} + -t 0.74 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 122 -a 1 -x {2.0 7.0 32 ------- null} - -t 0.74 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 122 -a 1 -x {2.0 7.0 32 ------- null} h -t 0.74 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 122 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.74 -s 1 -d 3 -p cbr -e 500 -c 1 -i 123 -a 1 -x {1.0 6.0 69 ------- null} - -t 0.74 -s 1 -d 3 -p cbr -e 500 -c 1 -i 123 -a 1 -x {1.0 6.0 69 ------- null} h -t 0.74 -s 1 -d 3 -p cbr -e 500 -c 1 -i 123 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.741248 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {0.0 5.0 11 ------- null} + -t 0.741248 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {0.0 5.0 11 ------- null} - -t 0.7416 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {0.0 5.0 8 ------- null} h -t 0.7416 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.7436 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 93 -a 1 -x {2.0 7.0 26 ------- null} + -t 0.7436 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 93 -a 1 -x {2.0 7.0 26 ------- null} - -t 0.7436 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 93 -a 1 -x {2.0 7.0 26 ------- null} h -t 0.7436 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 93 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.7436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 89 -a 1 -x {1.0 6.0 55 ------- null} r -t 0.743648 -s 3 -d 0 -p ack -e 40 -c 0 -i 102 -a 0 -x {5.0 0.0 5 ------- null} + -t 0.743648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 124 -a 0 -x {0.0 5.0 13 ------- null} - -t 0.743648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 124 -a 0 -x {0.0 5.0 13 ------- null} h -t 0.743648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 124 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.744 -s 1 -d 3 -p cbr -e 500 -c 1 -i 119 -a 1 -x {1.0 6.0 67 ------- null} + -t 0.744 -s 3 -d 4 -p cbr -e 500 -c 1 -i 119 -a 1 -x {1.0 6.0 67 ------- null} r -t 0.7476 -s 3 -d 4 -p cbr -e 500 -c 1 -i 97 -a 1 -x {1.0 6.0 58 ------- null} + -t 0.7476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 97 -a 1 -x {1.0 6.0 58 ------- null} - -t 0.7476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 97 -a 1 -x {1.0 6.0 58 ------- null} h -t 0.7476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 97 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.748 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 118 -a 1 -x {2.0 7.0 31 ------- null} + -t 0.748 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 118 -a 1 -x {2.0 7.0 31 ------- null} - -t 0.7496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 110 -a 1 -x {1.0 6.0 64 ------- null} h -t 0.7496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 110 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.75 -s 1 -d 3 -p cbr -e 500 -c 1 -i 125 -a 1 -x {1.0 6.0 70 ------- null} - -t 0.75 -s 1 -d 3 -p cbr -e 500 -c 1 -i 125 -a 1 -x {1.0 6.0 70 ------- null} h -t 0.75 -s 1 -d 3 -p cbr -e 500 -c 1 -i 125 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.7516 -s 3 -d 4 -p cbr -e 500 -c 1 -i 99 -a 1 -x {1.0 6.0 59 ------- null} + -t 0.7516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 99 -a 1 -x {1.0 6.0 59 ------- null} - -t 0.7516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 99 -a 1 -x {1.0 6.0 59 ------- null} h -t 0.7516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 99 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.751648 -s 3 -d 0 -p ack -e 40 -c 0 -i 105 -a 0 -x {5.0 0.0 6 ------- null} + -t 0.751648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 126 -a 0 -x {0.0 5.0 14 ------- null} - -t 0.751648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 126 -a 0 -x {0.0 5.0 14 ------- null} h -t 0.751648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 126 -a 0 -x {0.0 5.0 -1 ------- null} - -t 0.7536 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {0.0 5.0 9 ------- null} h -t 0.7536 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.754 -s 1 -d 3 -p cbr -e 500 -c 1 -i 120 -a 1 -x {1.0 6.0 68 ------- null} + -t 0.754 -s 3 -d 4 -p cbr -e 500 -c 1 -i 120 -a 1 -x {1.0 6.0 68 ------- null} r -t 0.7556 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 88 -a 1 -x {2.0 7.0 25 ------- null} r -t 0.7556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 92 -a 1 -x {1.0 6.0 56 ------- null} r -t 0.757248 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {0.0 5.0 12 ------- null} + -t 0.757248 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {0.0 5.0 12 ------- null} r -t 0.7596 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 98 -a 1 -x {2.0 7.0 27 ------- null} + -t 0.7596 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 98 -a 1 -x {2.0 7.0 27 ------- null} - -t 0.7596 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 98 -a 1 -x {2.0 7.0 27 ------- null} h -t 0.7596 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 98 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.7596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 94 -a 1 -x {1.0 6.0 57 ------- null} r -t 0.759648 -s 3 -d 0 -p ack -e 40 -c 0 -i 106 -a 0 -x {5.0 0.0 7 ------- null} + -t 0.759648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 127 -a 0 -x {0.0 5.0 15 ------- null} - -t 0.759648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 127 -a 0 -x {0.0 5.0 15 ------- null} h -t 0.759648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 127 -a 0 -x {0.0 5.0 -1 ------- null} + -t 0.76 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 128 -a 1 -x {2.0 7.0 33 ------- null} - -t 0.76 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 128 -a 1 -x {2.0 7.0 33 ------- null} h -t 0.76 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 128 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.76 -s 1 -d 3 -p cbr -e 500 -c 1 -i 129 -a 1 -x {1.0 6.0 71 ------- null} - -t 0.76 -s 1 -d 3 -p cbr -e 500 -c 1 -i 129 -a 1 -x {1.0 6.0 71 ------- null} h -t 0.76 -s 1 -d 3 -p cbr -e 500 -c 1 -i 129 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.7616 -s 3 -d 4 -p cbr -e 500 -c 1 -i 114 -a 1 -x {1.0 6.0 65 ------- null} h -t 0.7616 -s 3 -d 4 -p cbr -e 500 -c 1 -i 114 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.7636 -s 3 -d 4 -p cbr -e 500 -c 1 -i 101 -a 1 -x {1.0 6.0 60 ------- null} + -t 0.7636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 101 -a 1 -x {1.0 6.0 60 ------- null} - -t 0.7636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 101 -a 1 -x {1.0 6.0 60 ------- null} h -t 0.7636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 101 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.764 -s 1 -d 3 -p cbr -e 500 -c 1 -i 123 -a 1 -x {1.0 6.0 69 ------- null} + -t 0.764 -s 3 -d 4 -p cbr -e 500 -c 1 -i 123 -a 1 -x {1.0 6.0 69 ------- null} r -t 0.765248 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 124 -a 0 -x {0.0 5.0 13 ------- null} + -t 0.765248 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 124 -a 0 -x {0.0 5.0 13 ------- null} - -t 0.7656 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 113 -a 1 -x {2.0 7.0 30 ------- null} h -t 0.7656 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 113 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.7676 -s 3 -d 4 -p cbr -e 500 -c 1 -i 104 -a 1 -x {1.0 6.0 61 ------- null} + -t 0.7676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 104 -a 1 -x {1.0 6.0 61 ------- null} - -t 0.7676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 104 -a 1 -x {1.0 6.0 61 ------- null} h -t 0.7676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 104 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.768 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 122 -a 1 -x {2.0 7.0 32 ------- null} + -t 0.768 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 122 -a 1 -x {2.0 7.0 32 ------- null} + -t 0.77 -s 1 -d 3 -p cbr -e 500 -c 1 -i 130 -a 1 -x {1.0 6.0 72 ------- null} - -t 0.77 -s 1 -d 3 -p cbr -e 500 -c 1 -i 130 -a 1 -x {1.0 6.0 72 ------- null} h -t 0.77 -s 1 -d 3 -p cbr -e 500 -c 1 -i 130 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.7716 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 93 -a 1 -x {2.0 7.0 26 ------- null} r -t 0.7716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 97 -a 1 -x {1.0 6.0 58 ------- null} r -t 0.773248 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 126 -a 0 -x {0.0 5.0 14 ------- null} + -t 0.773248 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 126 -a 0 -x {0.0 5.0 14 ------- null} - -t 0.7736 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {0.0 5.0 10 ------- null} h -t 0.7736 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.774 -s 1 -d 3 -p cbr -e 500 -c 1 -i 125 -a 1 -x {1.0 6.0 70 ------- null} + -t 0.774 -s 3 -d 4 -p cbr -e 500 -c 1 -i 125 -a 1 -x {1.0 6.0 70 ------- null} r -t 0.7756 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 103 -a 1 -x {2.0 7.0 28 ------- null} + -t 0.7756 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 103 -a 1 -x {2.0 7.0 28 ------- null} - -t 0.7756 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 103 -a 1 -x {2.0 7.0 28 ------- null} h -t 0.7756 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 103 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.7756 -s 4 -d 6 -p cbr -e 500 -c 1 -i 99 -a 1 -x {1.0 6.0 59 ------- null} r -t 0.7796 -s 3 -d 4 -p cbr -e 500 -c 1 -i 107 -a 1 -x {1.0 6.0 62 ------- null} + -t 0.7796 -s 4 -d 6 -p cbr -e 500 -c 1 -i 107 -a 1 -x {1.0 6.0 62 ------- null} - -t 0.7796 -s 4 -d 6 -p cbr -e 500 -c 1 -i 107 -a 1 -x {1.0 6.0 62 ------- null} h -t 0.7796 -s 4 -d 6 -p cbr -e 500 -c 1 -i 107 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.78 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 131 -a 1 -x {2.0 7.0 34 ------- null} - -t 0.78 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 131 -a 1 -x {2.0 7.0 34 ------- null} h -t 0.78 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 131 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.78 -s 1 -d 3 -p cbr -e 500 -c 1 -i 132 -a 1 -x {1.0 6.0 73 ------- null} - -t 0.78 -s 1 -d 3 -p cbr -e 500 -c 1 -i 132 -a 1 -x {1.0 6.0 73 ------- null} h -t 0.78 -s 1 -d 3 -p cbr -e 500 -c 1 -i 132 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.781248 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 127 -a 0 -x {0.0 5.0 15 ------- null} + -t 0.781248 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 127 -a 0 -x {0.0 5.0 15 ------- null} - -t 0.7816 -s 3 -d 4 -p cbr -e 500 -c 1 -i 115 -a 1 -x {1.0 6.0 66 ------- null} h -t 0.7816 -s 3 -d 4 -p cbr -e 500 -c 1 -i 115 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.7836 -s 3 -d 4 -p cbr -e 500 -c 1 -i 109 -a 1 -x {1.0 6.0 63 ------- null} + -t 0.7836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 109 -a 1 -x {1.0 6.0 63 ------- null} - -t 0.7836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 109 -a 1 -x {1.0 6.0 63 ------- null} h -t 0.7836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 109 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.784 -s 1 -d 3 -p cbr -e 500 -c 1 -i 129 -a 1 -x {1.0 6.0 71 ------- null} + -t 0.784 -s 3 -d 4 -p cbr -e 500 -c 1 -i 129 -a 1 -x {1.0 6.0 71 ------- null} - -t 0.7856 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {0.0 5.0 11 ------- null} h -t 0.7856 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.7876 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 98 -a 1 -x {2.0 7.0 27 ------- null} r -t 0.7876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 101 -a 1 -x {1.0 6.0 60 ------- null} r -t 0.788 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 128 -a 1 -x {2.0 7.0 33 ------- null} + -t 0.788 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 128 -a 1 -x {2.0 7.0 33 ------- null} + -t 0.79 -s 1 -d 3 -p cbr -e 500 -c 1 -i 133 -a 1 -x {1.0 6.0 74 ------- null} - -t 0.79 -s 1 -d 3 -p cbr -e 500 -c 1 -i 133 -a 1 -x {1.0 6.0 74 ------- null} h -t 0.79 -s 1 -d 3 -p cbr -e 500 -c 1 -i 133 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.7916 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 108 -a 1 -x {2.0 7.0 29 ------- null} + -t 0.7916 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 108 -a 1 -x {2.0 7.0 29 ------- null} - -t 0.7916 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 108 -a 1 -x {2.0 7.0 29 ------- null} h -t 0.7916 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 108 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.7916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 104 -a 1 -x {1.0 6.0 61 ------- null} - -t 0.7936 -s 3 -d 4 -p cbr -e 500 -c 1 -i 119 -a 1 -x {1.0 6.0 67 ------- null} h -t 0.7936 -s 3 -d 4 -p cbr -e 500 -c 1 -i 119 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.794 -s 1 -d 3 -p cbr -e 500 -c 1 -i 130 -a 1 -x {1.0 6.0 72 ------- null} + -t 0.794 -s 3 -d 4 -p cbr -e 500 -c 1 -i 130 -a 1 -x {1.0 6.0 72 ------- null} - -t 0.7976 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 118 -a 1 -x {2.0 7.0 31 ------- null} h -t 0.7976 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 118 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.7996 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {0.0 5.0 8 ------- null} + -t 0.7996 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {0.0 5.0 8 ------- null} - -t 0.7996 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {0.0 5.0 8 ------- null} h -t 0.7996 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {0.0 5.0 -1 ------- null} + -t 0.8 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 134 -a 1 -x {2.0 7.0 35 ------- null} - -t 0.8 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 134 -a 1 -x {2.0 7.0 35 ------- null} h -t 0.8 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 134 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.8 -s 1 -d 3 -p cbr -e 500 -c 1 -i 135 -a 1 -x {1.0 6.0 75 ------- null} - -t 0.8 -s 1 -d 3 -p cbr -e 500 -c 1 -i 135 -a 1 -x {1.0 6.0 75 ------- null} h -t 0.8 -s 1 -d 3 -p cbr -e 500 -c 1 -i 135 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.8036 -s 3 -d 4 -p cbr -e 500 -c 1 -i 110 -a 1 -x {1.0 6.0 64 ------- null} + -t 0.8036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 110 -a 1 -x {1.0 6.0 64 ------- null} - -t 0.8036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 110 -a 1 -x {1.0 6.0 64 ------- null} h -t 0.8036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 110 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.8036 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 103 -a 1 -x {2.0 7.0 28 ------- null} r -t 0.8036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 107 -a 1 -x {1.0 6.0 62 ------- null} r -t 0.804 -s 1 -d 3 -p cbr -e 500 -c 1 -i 132 -a 1 -x {1.0 6.0 73 ------- null} + -t 0.804 -s 3 -d 4 -p cbr -e 500 -c 1 -i 132 -a 1 -x {1.0 6.0 73 ------- null} - -t 0.8056 -s 3 -d 4 -p cbr -e 500 -c 1 -i 120 -a 1 -x {1.0 6.0 68 ------- null} h -t 0.8056 -s 3 -d 4 -p cbr -e 500 -c 1 -i 120 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.8076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 109 -a 1 -x {1.0 6.0 63 ------- null} r -t 0.808 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 131 -a 1 -x {2.0 7.0 34 ------- null} + -t 0.808 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 131 -a 1 -x {2.0 7.0 34 ------- null} - -t 0.8096 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {0.0 5.0 12 ------- null} h -t 0.8096 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {0.0 5.0 -1 ------- null} + -t 0.81 -s 1 -d 3 -p cbr -e 500 -c 1 -i 136 -a 1 -x {1.0 6.0 76 ------- null} - -t 0.81 -s 1 -d 3 -p cbr -e 500 -c 1 -i 136 -a 1 -x {1.0 6.0 76 ------- null} h -t 0.81 -s 1 -d 3 -p cbr -e 500 -c 1 -i 136 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.8116 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {0.0 5.0 9 ------- null} + -t 0.8116 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {0.0 5.0 9 ------- null} - -t 0.8116 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {0.0 5.0 9 ------- null} h -t 0.8116 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.814 -s 1 -d 3 -p cbr -e 500 -c 1 -i 133 -a 1 -x {1.0 6.0 74 ------- null} + -t 0.814 -s 3 -d 4 -p cbr -e 500 -c 1 -i 133 -a 1 -x {1.0 6.0 74 ------- null} r -t 0.8156 -s 3 -d 4 -p cbr -e 500 -c 1 -i 114 -a 1 -x {1.0 6.0 65 ------- null} + -t 0.8156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 114 -a 1 -x {1.0 6.0 65 ------- null} - -t 0.8156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 114 -a 1 -x {1.0 6.0 65 ------- null} h -t 0.8156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 114 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.8176 -s 3 -d 4 -p cbr -e 500 -c 1 -i 123 -a 1 -x {1.0 6.0 69 ------- null} h -t 0.8176 -s 3 -d 4 -p cbr -e 500 -c 1 -i 123 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.8196 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 108 -a 1 -x {2.0 7.0 29 ------- null} + -t 0.82 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 137 -a 1 -x {2.0 7.0 36 ------- null} - -t 0.82 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 137 -a 1 -x {2.0 7.0 36 ------- null} h -t 0.82 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 137 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.82 -s 1 -d 3 -p cbr -e 500 -c 1 -i 138 -a 1 -x {1.0 6.0 77 ------- null} - -t 0.82 -s 1 -d 3 -p cbr -e 500 -c 1 -i 138 -a 1 -x {1.0 6.0 77 ------- null} h -t 0.82 -s 1 -d 3 -p cbr -e 500 -c 1 -i 138 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.8212 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {0.0 5.0 8 ------- null} + -t 0.8212 -s 5 -d 4 -p ack -e 40 -c 0 -i 139 -a 0 -x {5.0 0.0 8 ------- null} - -t 0.8212 -s 5 -d 4 -p ack -e 40 -c 0 -i 139 -a 0 -x {5.0 0.0 8 ------- null} h -t 0.8212 -s 5 -d 4 -p ack -e 40 -c 0 -i 139 -a 0 -x {5.0 0.0 -1 ------- null} - -t 0.8216 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 124 -a 0 -x {0.0 5.0 13 ------- null} h -t 0.8216 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 124 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.8236 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 113 -a 1 -x {2.0 7.0 30 ------- null} + -t 0.8236 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 113 -a 1 -x {2.0 7.0 30 ------- null} - -t 0.8236 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 113 -a 1 -x {2.0 7.0 30 ------- null} h -t 0.8236 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 113 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.824 -s 1 -d 3 -p cbr -e 500 -c 1 -i 135 -a 1 -x {1.0 6.0 75 ------- null} + -t 0.824 -s 3 -d 4 -p cbr -e 500 -c 1 -i 135 -a 1 -x {1.0 6.0 75 ------- null} r -t 0.8276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 110 -a 1 -x {1.0 6.0 64 ------- null} r -t 0.828 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 134 -a 1 -x {2.0 7.0 35 ------- null} + -t 0.828 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 134 -a 1 -x {2.0 7.0 35 ------- null} - -t 0.8296 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 122 -a 1 -x {2.0 7.0 32 ------- null} h -t 0.8296 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 122 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.83 -s 1 -d 3 -p cbr -e 500 -c 1 -i 140 -a 1 -x {1.0 6.0 78 ------- null} - -t 0.83 -s 1 -d 3 -p cbr -e 500 -c 1 -i 140 -a 1 -x {1.0 6.0 78 ------- null} h -t 0.83 -s 1 -d 3 -p cbr -e 500 -c 1 -i 140 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.8316 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {0.0 5.0 10 ------- null} + -t 0.8316 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {0.0 5.0 10 ------- null} - -t 0.8316 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {0.0 5.0 10 ------- null} h -t 0.8316 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.8332 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {0.0 5.0 9 ------- null} + -t 0.8332 -s 5 -d 4 -p ack -e 40 -c 0 -i 141 -a 0 -x {5.0 0.0 9 ------- null} - -t 0.8332 -s 5 -d 4 -p ack -e 40 -c 0 -i 141 -a 0 -x {5.0 0.0 9 ------- null} h -t 0.8332 -s 5 -d 4 -p ack -e 40 -c 0 -i 141 -a 0 -x {5.0 0.0 -1 ------- null} r -t 0.834 -s 1 -d 3 -p cbr -e 500 -c 1 -i 136 -a 1 -x {1.0 6.0 76 ------- null} + -t 0.834 -s 3 -d 4 -p cbr -e 500 -c 1 -i 136 -a 1 -x {1.0 6.0 76 ------- null} r -t 0.8356 -s 3 -d 4 -p cbr -e 500 -c 1 -i 115 -a 1 -x {1.0 6.0 66 ------- null} + -t 0.8356 -s 4 -d 6 -p cbr -e 500 -c 1 -i 115 -a 1 -x {1.0 6.0 66 ------- null} - -t 0.8356 -s 4 -d 6 -p cbr -e 500 -c 1 -i 115 -a 1 -x {1.0 6.0 66 ------- null} h -t 0.8356 -s 4 -d 6 -p cbr -e 500 -c 1 -i 115 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.8376 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 126 -a 0 -x {0.0 5.0 14 ------- null} h -t 0.8376 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 126 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.8396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 114 -a 1 -x {1.0 6.0 65 ------- null} + -t 0.84 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 142 -a 1 -x {2.0 7.0 37 ------- null} - -t 0.84 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 142 -a 1 -x {2.0 7.0 37 ------- null} h -t 0.84 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 142 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.84 -s 1 -d 3 -p cbr -e 500 -c 1 -i 143 -a 1 -x {1.0 6.0 79 ------- null} - -t 0.84 -s 1 -d 3 -p cbr -e 500 -c 1 -i 143 -a 1 -x {1.0 6.0 79 ------- null} h -t 0.84 -s 1 -d 3 -p cbr -e 500 -c 1 -i 143 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.841264 -s 5 -d 4 -p ack -e 40 -c 0 -i 139 -a 0 -x {5.0 0.0 8 ------- null} + -t 0.841264 -s 4 -d 3 -p ack -e 40 -c 0 -i 139 -a 0 -x {5.0 0.0 8 ------- null} - -t 0.841264 -s 4 -d 3 -p ack -e 40 -c 0 -i 139 -a 0 -x {5.0 0.0 8 ------- null} h -t 0.841264 -s 4 -d 3 -p ack -e 40 -c 0 -i 139 -a 0 -x {5.0 0.0 -1 ------- null} r -t 0.8436 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {0.0 5.0 11 ------- null} + -t 0.8436 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {0.0 5.0 11 ------- null} - -t 0.8436 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {0.0 5.0 11 ------- null} h -t 0.8436 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.844 -s 1 -d 3 -p cbr -e 500 -c 1 -i 138 -a 1 -x {1.0 6.0 77 ------- null} + -t 0.844 -s 3 -d 4 -p cbr -e 500 -c 1 -i 138 -a 1 -x {1.0 6.0 77 ------- null} - -t 0.8456 -s 3 -d 4 -p cbr -e 500 -c 1 -i 125 -a 1 -x {1.0 6.0 70 ------- null} h -t 0.8456 -s 3 -d 4 -p cbr -e 500 -c 1 -i 125 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.8476 -s 3 -d 4 -p cbr -e 500 -c 1 -i 119 -a 1 -x {1.0 6.0 67 ------- null} + -t 0.8476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 119 -a 1 -x {1.0 6.0 67 ------- null} - -t 0.8476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 119 -a 1 -x {1.0 6.0 67 ------- null} h -t 0.8476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 119 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.848 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 137 -a 1 -x {2.0 7.0 36 ------- null} + -t 0.848 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 137 -a 1 -x {2.0 7.0 36 ------- null} - -t 0.8496 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 127 -a 0 -x {0.0 5.0 15 ------- null} h -t 0.8496 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 127 -a 0 -x {0.0 5.0 -1 ------- null} + -t 0.85 -s 1 -d 3 -p cbr -e 500 -c 1 -i 144 -a 1 -x {1.0 6.0 80 ------- null} - -t 0.85 -s 1 -d 3 -p cbr -e 500 -c 1 -i 144 -a 1 -x {1.0 6.0 80 ------- null} h -t 0.85 -s 1 -d 3 -p cbr -e 500 -c 1 -i 144 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.8516 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 113 -a 1 -x {2.0 7.0 30 ------- null} r -t 0.8532 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {0.0 5.0 10 ------- null} + -t 0.8532 -s 5 -d 4 -p ack -e 40 -c 0 -i 145 -a 0 -x {5.0 0.0 10 ------- null} - -t 0.8532 -s 5 -d 4 -p ack -e 40 -c 0 -i 145 -a 0 -x {5.0 0.0 10 ------- null} h -t 0.8532 -s 5 -d 4 -p ack -e 40 -c 0 -i 145 -a 0 -x {5.0 0.0 -1 ------- null} r -t 0.853264 -s 5 -d 4 -p ack -e 40 -c 0 -i 141 -a 0 -x {5.0 0.0 9 ------- null} + -t 0.853264 -s 4 -d 3 -p ack -e 40 -c 0 -i 141 -a 0 -x {5.0 0.0 9 ------- null} - -t 0.853264 -s 4 -d 3 -p ack -e 40 -c 0 -i 141 -a 0 -x {5.0 0.0 9 ------- null} h -t 0.853264 -s 4 -d 3 -p ack -e 40 -c 0 -i 141 -a 0 -x {5.0 0.0 -1 ------- null} r -t 0.854 -s 1 -d 3 -p cbr -e 500 -c 1 -i 140 -a 1 -x {1.0 6.0 78 ------- null} + -t 0.854 -s 3 -d 4 -p cbr -e 500 -c 1 -i 140 -a 1 -x {1.0 6.0 78 ------- null} r -t 0.8556 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 118 -a 1 -x {2.0 7.0 31 ------- null} + -t 0.8556 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 118 -a 1 -x {2.0 7.0 31 ------- null} - -t 0.8556 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 118 -a 1 -x {2.0 7.0 31 ------- null} h -t 0.8556 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 118 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.8576 -s 3 -d 4 -p cbr -e 500 -c 1 -i 129 -a 1 -x {1.0 6.0 71 ------- null} h -t 0.8576 -s 3 -d 4 -p cbr -e 500 -c 1 -i 129 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.8596 -s 3 -d 4 -p cbr -e 500 -c 1 -i 120 -a 1 -x {1.0 6.0 68 ------- null} + -t 0.8596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 120 -a 1 -x {1.0 6.0 68 ------- null} - -t 0.8596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 120 -a 1 -x {1.0 6.0 68 ------- null} h -t 0.8596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 120 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.8596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 115 -a 1 -x {1.0 6.0 66 ------- null} + -t 0.86 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 146 -a 1 -x {2.0 7.0 38 ------- null} - -t 0.86 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 146 -a 1 -x {2.0 7.0 38 ------- null} h -t 0.86 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 146 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.86 -s 1 -d 3 -p cbr -e 500 -c 1 -i 147 -a 1 -x {1.0 6.0 81 ------- null} - -t 0.86 -s 1 -d 3 -p cbr -e 500 -c 1 -i 147 -a 1 -x {1.0 6.0 81 ------- null} h -t 0.86 -s 1 -d 3 -p cbr -e 500 -c 1 -i 147 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.8616 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 128 -a 1 -x {2.0 7.0 33 ------- null} h -t 0.8616 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 128 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.864 -s 1 -d 3 -p cbr -e 500 -c 1 -i 143 -a 1 -x {1.0 6.0 79 ------- null} + -t 0.864 -s 3 -d 4 -p cbr -e 500 -c 1 -i 143 -a 1 -x {1.0 6.0 79 ------- null} r -t 0.8652 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {0.0 5.0 11 ------- null} + -t 0.8652 -s 5 -d 4 -p ack -e 40 -c 0 -i 148 -a 0 -x {5.0 0.0 11 ------- null} - -t 0.8652 -s 5 -d 4 -p ack -e 40 -c 0 -i 148 -a 0 -x {5.0 0.0 11 ------- null} h -t 0.8652 -s 5 -d 4 -p ack -e 40 -c 0 -i 148 -a 0 -x {5.0 0.0 -1 ------- null} r -t 0.8676 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {0.0 5.0 12 ------- null} + -t 0.8676 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {0.0 5.0 12 ------- null} - -t 0.8676 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {0.0 5.0 12 ------- null} h -t 0.8676 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.868 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 142 -a 1 -x {2.0 7.0 37 ------- null} + -t 0.868 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 142 -a 1 -x {2.0 7.0 37 ------- null} - -t 0.8696 -s 3 -d 4 -p cbr -e 500 -c 1 -i 130 -a 1 -x {1.0 6.0 72 ------- null} h -t 0.8696 -s 3 -d 4 -p cbr -e 500 -c 1 -i 130 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.87 -s 1 -d 3 -p cbr -e 500 -c 1 -i 149 -a 1 -x {1.0 6.0 82 ------- null} - -t 0.87 -s 1 -d 3 -p cbr -e 500 -c 1 -i 149 -a 1 -x {1.0 6.0 82 ------- null} h -t 0.87 -s 1 -d 3 -p cbr -e 500 -c 1 -i 149 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.8716 -s 3 -d 4 -p cbr -e 500 -c 1 -i 123 -a 1 -x {1.0 6.0 69 ------- null} + -t 0.8716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 123 -a 1 -x {1.0 6.0 69 ------- null} - -t 0.8716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 123 -a 1 -x {1.0 6.0 69 ------- null} h -t 0.8716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 123 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.8716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 119 -a 1 -x {1.0 6.0 67 ------- null} r -t 0.873264 -s 5 -d 4 -p ack -e 40 -c 0 -i 145 -a 0 -x {5.0 0.0 10 ------- null} + -t 0.873264 -s 4 -d 3 -p ack -e 40 -c 0 -i 145 -a 0 -x {5.0 0.0 10 ------- null} - -t 0.873264 -s 4 -d 3 -p ack -e 40 -c 0 -i 145 -a 0 -x {5.0 0.0 10 ------- null} h -t 0.873264 -s 4 -d 3 -p ack -e 40 -c 0 -i 145 -a 0 -x {5.0 0.0 -1 ------- null} - -t 0.8736 -s 3 -d 4 -p cbr -e 500 -c 1 -i 132 -a 1 -x {1.0 6.0 73 ------- null} h -t 0.8736 -s 3 -d 4 -p cbr -e 500 -c 1 -i 132 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.874 -s 1 -d 3 -p cbr -e 500 -c 1 -i 144 -a 1 -x {1.0 6.0 80 ------- null} + -t 0.874 -s 3 -d 4 -p cbr -e 500 -c 1 -i 144 -a 1 -x {1.0 6.0 80 ------- null} - -t 0.8776 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 131 -a 1 -x {2.0 7.0 34 ------- null} h -t 0.8776 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 131 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.8796 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 124 -a 0 -x {0.0 5.0 13 ------- null} + -t 0.8796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 124 -a 0 -x {0.0 5.0 13 ------- null} - -t 0.8796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 124 -a 0 -x {0.0 5.0 13 ------- null} h -t 0.8796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 124 -a 0 -x {0.0 5.0 -1 ------- null} + -t 0.88 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 150 -a 1 -x {2.0 7.0 39 ------- null} - -t 0.88 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 150 -a 1 -x {2.0 7.0 39 ------- null} h -t 0.88 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 150 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.88 -s 1 -d 3 -p cbr -e 500 -c 1 -i 151 -a 1 -x {1.0 6.0 83 ------- null} - -t 0.88 -s 1 -d 3 -p cbr -e 500 -c 1 -i 151 -a 1 -x {1.0 6.0 83 ------- null} h -t 0.88 -s 1 -d 3 -p cbr -e 500 -c 1 -i 151 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.8836 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 118 -a 1 -x {2.0 7.0 31 ------- null} r -t 0.8836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 120 -a 1 -x {1.0 6.0 68 ------- null} r -t 0.884 -s 1 -d 3 -p cbr -e 500 -c 1 -i 147 -a 1 -x {1.0 6.0 81 ------- null} + -t 0.884 -s 3 -d 4 -p cbr -e 500 -c 1 -i 147 -a 1 -x {1.0 6.0 81 ------- null} r -t 0.885264 -s 5 -d 4 -p ack -e 40 -c 0 -i 148 -a 0 -x {5.0 0.0 11 ------- null} + -t 0.885264 -s 4 -d 3 -p ack -e 40 -c 0 -i 148 -a 0 -x {5.0 0.0 11 ------- null} - -t 0.885264 -s 4 -d 3 -p ack -e 40 -c 0 -i 148 -a 0 -x {5.0 0.0 11 ------- null} h -t 0.885264 -s 4 -d 3 -p ack -e 40 -c 0 -i 148 -a 0 -x {5.0 0.0 -1 ------- null} - -t 0.8856 -s 3 -d 4 -p cbr -e 500 -c 1 -i 133 -a 1 -x {1.0 6.0 74 ------- null} h -t 0.8856 -s 3 -d 4 -p cbr -e 500 -c 1 -i 133 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.8876 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 122 -a 1 -x {2.0 7.0 32 ------- null} + -t 0.8876 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 122 -a 1 -x {2.0 7.0 32 ------- null} - -t 0.8876 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 122 -a 1 -x {2.0 7.0 32 ------- null} h -t 0.8876 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 122 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.888 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 146 -a 1 -x {2.0 7.0 38 ------- null} + -t 0.888 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 146 -a 1 -x {2.0 7.0 38 ------- null} r -t 0.8892 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {0.0 5.0 12 ------- null} + -t 0.8892 -s 5 -d 4 -p ack -e 40 -c 0 -i 152 -a 0 -x {5.0 0.0 12 ------- null} - -t 0.8892 -s 5 -d 4 -p ack -e 40 -c 0 -i 152 -a 0 -x {5.0 0.0 12 ------- null} h -t 0.8892 -s 5 -d 4 -p ack -e 40 -c 0 -i 152 -a 0 -x {5.0 0.0 -1 ------- null} - -t 0.8896 -s 3 -d 4 -p cbr -e 500 -c 1 -i 135 -a 1 -x {1.0 6.0 75 ------- null} h -t 0.8896 -s 3 -d 4 -p cbr -e 500 -c 1 -i 135 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.89 -s 1 -d 3 -p cbr -e 500 -c 1 -i 153 -a 1 -x {1.0 6.0 84 ------- null} - -t 0.89 -s 1 -d 3 -p cbr -e 500 -c 1 -i 153 -a 1 -x {1.0 6.0 84 ------- null} h -t 0.89 -s 1 -d 3 -p cbr -e 500 -c 1 -i 153 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.891584 -s 4 -d 3 -p ack -e 40 -c 0 -i 139 -a 0 -x {5.0 0.0 8 ------- null} + -t 0.891584 -s 3 -d 0 -p ack -e 40 -c 0 -i 139 -a 0 -x {5.0 0.0 8 ------- null} - -t 0.891584 -s 3 -d 0 -p ack -e 40 -c 0 -i 139 -a 0 -x {5.0 0.0 8 ------- null} h -t 0.891584 -s 3 -d 0 -p ack -e 40 -c 0 -i 139 -a 0 -x {5.0 0.0 -1 ------- null} - -t 0.8936 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 134 -a 1 -x {2.0 7.0 35 ------- null} h -t 0.8936 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 134 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.894 -s 1 -d 3 -p cbr -e 500 -c 1 -i 149 -a 1 -x {1.0 6.0 82 ------- null} + -t 0.894 -s 3 -d 4 -p cbr -e 500 -c 1 -i 149 -a 1 -x {1.0 6.0 82 ------- null} r -t 0.8956 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 126 -a 0 -x {0.0 5.0 14 ------- null} + -t 0.8956 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 126 -a 0 -x {0.0 5.0 14 ------- null} - -t 0.8956 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 126 -a 0 -x {0.0 5.0 14 ------- null} h -t 0.8956 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 126 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.8956 -s 4 -d 6 -p cbr -e 500 -c 1 -i 123 -a 1 -x {1.0 6.0 69 ------- null} r -t 0.8996 -s 3 -d 4 -p cbr -e 500 -c 1 -i 125 -a 1 -x {1.0 6.0 70 ------- null} + -t 0.8996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 125 -a 1 -x {1.0 6.0 70 ------- null} - -t 0.8996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 125 -a 1 -x {1.0 6.0 70 ------- null} h -t 0.8996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 125 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.9 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 154 -a 1 -x {2.0 7.0 40 ------- null} - -t 0.9 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 154 -a 1 -x {2.0 7.0 40 ------- null} h -t 0.9 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 154 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.9 -s 1 -d 3 -p cbr -e 500 -c 1 -i 155 -a 1 -x {1.0 6.0 85 ------- null} - -t 0.9 -s 1 -d 3 -p cbr -e 500 -c 1 -i 155 -a 1 -x {1.0 6.0 85 ------- null} h -t 0.9 -s 1 -d 3 -p cbr -e 500 -c 1 -i 155 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.9012 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 124 -a 0 -x {0.0 5.0 13 ------- null} + -t 0.9012 -s 5 -d 4 -p ack -e 40 -c 0 -i 156 -a 0 -x {5.0 0.0 13 ------- null} - -t 0.9012 -s 5 -d 4 -p ack -e 40 -c 0 -i 156 -a 0 -x {5.0 0.0 13 ------- null} h -t 0.9012 -s 5 -d 4 -p ack -e 40 -c 0 -i 156 -a 0 -x {5.0 0.0 -1 ------- null} - -t 0.9016 -s 3 -d 4 -p cbr -e 500 -c 1 -i 136 -a 1 -x {1.0 6.0 76 ------- null} h -t 0.9016 -s 3 -d 4 -p cbr -e 500 -c 1 -i 136 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.903584 -s 4 -d 3 -p ack -e 40 -c 0 -i 141 -a 0 -x {5.0 0.0 9 ------- null} + -t 0.903584 -s 3 -d 0 -p ack -e 40 -c 0 -i 141 -a 0 -x {5.0 0.0 9 ------- null} - -t 0.903584 -s 3 -d 0 -p ack -e 40 -c 0 -i 141 -a 0 -x {5.0 0.0 9 ------- null} h -t 0.903584 -s 3 -d 0 -p ack -e 40 -c 0 -i 141 -a 0 -x {5.0 0.0 -1 ------- null} r -t 0.904 -s 1 -d 3 -p cbr -e 500 -c 1 -i 151 -a 1 -x {1.0 6.0 83 ------- null} + -t 0.904 -s 3 -d 4 -p cbr -e 500 -c 1 -i 151 -a 1 -x {1.0 6.0 83 ------- null} - -t 0.9056 -s 3 -d 4 -p cbr -e 500 -c 1 -i 138 -a 1 -x {1.0 6.0 77 ------- null} h -t 0.9056 -s 3 -d 4 -p cbr -e 500 -c 1 -i 138 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.9076 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 127 -a 0 -x {0.0 5.0 15 ------- null} + -t 0.9076 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 127 -a 0 -x {0.0 5.0 15 ------- null} - -t 0.9076 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 127 -a 0 -x {0.0 5.0 15 ------- null} h -t 0.9076 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 127 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.908 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 150 -a 1 -x {2.0 7.0 39 ------- null} + -t 0.908 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 150 -a 1 -x {2.0 7.0 39 ------- null} r -t 0.909264 -s 5 -d 4 -p ack -e 40 -c 0 -i 152 -a 0 -x {5.0 0.0 12 ------- null} + -t 0.909264 -s 4 -d 3 -p ack -e 40 -c 0 -i 152 -a 0 -x {5.0 0.0 12 ------- null} - -t 0.909264 -s 4 -d 3 -p ack -e 40 -c 0 -i 152 -a 0 -x {5.0 0.0 12 ------- null} h -t 0.909264 -s 4 -d 3 -p ack -e 40 -c 0 -i 152 -a 0 -x {5.0 0.0 -1 ------- null} - -t 0.9096 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 137 -a 1 -x {2.0 7.0 36 ------- null} h -t 0.9096 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 137 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.91 -s 1 -d 3 -p cbr -e 500 -c 1 -i 157 -a 1 -x {1.0 6.0 86 ------- null} - -t 0.91 -s 1 -d 3 -p cbr -e 500 -c 1 -i 157 -a 1 -x {1.0 6.0 86 ------- null} h -t 0.91 -s 1 -d 3 -p cbr -e 500 -c 1 -i 157 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.9116 -s 3 -d 4 -p cbr -e 500 -c 1 -i 129 -a 1 -x {1.0 6.0 71 ------- null} + -t 0.9116 -s 4 -d 6 -p cbr -e 500 -c 1 -i 129 -a 1 -x {1.0 6.0 71 ------- null} - -t 0.9116 -s 4 -d 6 -p cbr -e 500 -c 1 -i 129 -a 1 -x {1.0 6.0 71 ------- null} h -t 0.9116 -s 4 -d 6 -p cbr -e 500 -c 1 -i 129 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.911648 -s 3 -d 0 -p ack -e 40 -c 0 -i 139 -a 0 -x {5.0 0.0 8 ------- null} + -t 0.911648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {0.0 5.0 16 ------- null} - -t 0.911648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {0.0 5.0 16 ------- null} h -t 0.911648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.914 -s 1 -d 3 -p cbr -e 500 -c 1 -i 153 -a 1 -x {1.0 6.0 84 ------- null} + -t 0.914 -s 3 -d 4 -p cbr -e 500 -c 1 -i 153 -a 1 -x {1.0 6.0 84 ------- null} r -t 0.9156 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 122 -a 1 -x {2.0 7.0 32 ------- null} r -t 0.9172 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 126 -a 0 -x {0.0 5.0 14 ------- null} + -t 0.9172 -s 5 -d 4 -p ack -e 40 -c 0 -i 159 -a 0 -x {5.0 0.0 14 ------- null} - -t 0.9172 -s 5 -d 4 -p ack -e 40 -c 0 -i 159 -a 0 -x {5.0 0.0 14 ------- null} h -t 0.9172 -s 5 -d 4 -p ack -e 40 -c 0 -i 159 -a 0 -x {5.0 0.0 -1 ------- null} - -t 0.9176 -s 3 -d 4 -p cbr -e 500 -c 1 -i 140 -a 1 -x {1.0 6.0 78 ------- null} h -t 0.9176 -s 3 -d 4 -p cbr -e 500 -c 1 -i 140 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.9196 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 128 -a 1 -x {2.0 7.0 33 ------- null} + -t 0.9196 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 128 -a 1 -x {2.0 7.0 33 ------- null} - -t 0.9196 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 128 -a 1 -x {2.0 7.0 33 ------- null} h -t 0.9196 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 128 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.92 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 160 -a 1 -x {2.0 7.0 41 ------- null} - -t 0.92 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 160 -a 1 -x {2.0 7.0 41 ------- null} h -t 0.92 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 160 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.92 -s 1 -d 3 -p cbr -e 500 -c 1 -i 161 -a 1 -x {1.0 6.0 87 ------- null} - -t 0.92 -s 1 -d 3 -p cbr -e 500 -c 1 -i 161 -a 1 -x {1.0 6.0 87 ------- null} h -t 0.92 -s 1 -d 3 -p cbr -e 500 -c 1 -i 161 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.921264 -s 5 -d 4 -p ack -e 40 -c 0 -i 156 -a 0 -x {5.0 0.0 13 ------- null} + -t 0.921264 -s 4 -d 3 -p ack -e 40 -c 0 -i 156 -a 0 -x {5.0 0.0 13 ------- null} - -t 0.921264 -s 4 -d 3 -p ack -e 40 -c 0 -i 156 -a 0 -x {5.0 0.0 13 ------- null} h -t 0.921264 -s 4 -d 3 -p ack -e 40 -c 0 -i 156 -a 0 -x {5.0 0.0 -1 ------- null} - -t 0.9216 -s 3 -d 4 -p cbr -e 500 -c 1 -i 143 -a 1 -x {1.0 6.0 79 ------- null} h -t 0.9216 -s 3 -d 4 -p cbr -e 500 -c 1 -i 143 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.923584 -s 4 -d 3 -p ack -e 40 -c 0 -i 145 -a 0 -x {5.0 0.0 10 ------- null} + -t 0.923584 -s 3 -d 0 -p ack -e 40 -c 0 -i 145 -a 0 -x {5.0 0.0 10 ------- null} - -t 0.923584 -s 3 -d 0 -p ack -e 40 -c 0 -i 145 -a 0 -x {5.0 0.0 10 ------- null} h -t 0.923584 -s 3 -d 0 -p ack -e 40 -c 0 -i 145 -a 0 -x {5.0 0.0 -1 ------- null} r -t 0.9236 -s 3 -d 4 -p cbr -e 500 -c 1 -i 130 -a 1 -x {1.0 6.0 72 ------- null} + -t 0.9236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 130 -a 1 -x {1.0 6.0 72 ------- null} - -t 0.9236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 130 -a 1 -x {1.0 6.0 72 ------- null} h -t 0.9236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 130 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.9236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 125 -a 1 -x {1.0 6.0 70 ------- null} r -t 0.923648 -s 3 -d 0 -p ack -e 40 -c 0 -i 141 -a 0 -x {5.0 0.0 9 ------- null} + -t 0.923648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 162 -a 0 -x {0.0 5.0 17 ------- null} - -t 0.923648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 162 -a 0 -x {0.0 5.0 17 ------- null} h -t 0.923648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 162 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.924 -s 1 -d 3 -p cbr -e 500 -c 1 -i 155 -a 1 -x {1.0 6.0 85 ------- null} + -t 0.924 -s 3 -d 4 -p cbr -e 500 -c 1 -i 155 -a 1 -x {1.0 6.0 85 ------- null} - -t 0.9256 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 142 -a 1 -x {2.0 7.0 37 ------- null} h -t 0.9256 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 142 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.9276 -s 3 -d 4 -p cbr -e 500 -c 1 -i 132 -a 1 -x {1.0 6.0 73 ------- null} + -t 0.9276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 132 -a 1 -x {1.0 6.0 73 ------- null} - -t 0.9276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 132 -a 1 -x {1.0 6.0 73 ------- null} h -t 0.9276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 132 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.928 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 154 -a 1 -x {2.0 7.0 40 ------- null} + -t 0.928 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 154 -a 1 -x {2.0 7.0 40 ------- null} r -t 0.9292 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 127 -a 0 -x {0.0 5.0 15 ------- null} + -t 0.9292 -s 5 -d 4 -p ack -e 40 -c 0 -i 163 -a 0 -x {5.0 0.0 15 ------- null} - -t 0.9292 -s 5 -d 4 -p ack -e 40 -c 0 -i 163 -a 0 -x {5.0 0.0 15 ------- null} h -t 0.9292 -s 5 -d 4 -p ack -e 40 -c 0 -i 163 -a 0 -x {5.0 0.0 -1 ------- null} + -t 0.93 -s 1 -d 3 -p cbr -e 500 -c 1 -i 164 -a 1 -x {1.0 6.0 88 ------- null} - -t 0.93 -s 1 -d 3 -p cbr -e 500 -c 1 -i 164 -a 1 -x {1.0 6.0 88 ------- null} h -t 0.93 -s 1 -d 3 -p cbr -e 500 -c 1 -i 164 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.933248 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {0.0 5.0 16 ------- null} + -t 0.933248 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {0.0 5.0 16 ------- null} - -t 0.9336 -s 3 -d 4 -p cbr -e 500 -c 1 -i 144 -a 1 -x {1.0 6.0 80 ------- null} h -t 0.9336 -s 3 -d 4 -p cbr -e 500 -c 1 -i 144 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.934 -s 1 -d 3 -p cbr -e 500 -c 1 -i 157 -a 1 -x {1.0 6.0 86 ------- null} + -t 0.934 -s 3 -d 4 -p cbr -e 500 -c 1 -i 157 -a 1 -x {1.0 6.0 86 ------- null} r -t 0.935584 -s 4 -d 3 -p ack -e 40 -c 0 -i 148 -a 0 -x {5.0 0.0 11 ------- null} + -t 0.935584 -s 3 -d 0 -p ack -e 40 -c 0 -i 148 -a 0 -x {5.0 0.0 11 ------- null} - -t 0.935584 -s 3 -d 0 -p ack -e 40 -c 0 -i 148 -a 0 -x {5.0 0.0 11 ------- null} h -t 0.935584 -s 3 -d 0 -p ack -e 40 -c 0 -i 148 -a 0 -x {5.0 0.0 -1 ------- null} r -t 0.9356 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 131 -a 1 -x {2.0 7.0 34 ------- null} + -t 0.9356 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 131 -a 1 -x {2.0 7.0 34 ------- null} - -t 0.9356 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 131 -a 1 -x {2.0 7.0 34 ------- null} h -t 0.9356 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 131 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.9356 -s 4 -d 6 -p cbr -e 500 -c 1 -i 129 -a 1 -x {1.0 6.0 71 ------- null} r -t 0.937264 -s 5 -d 4 -p ack -e 40 -c 0 -i 159 -a 0 -x {5.0 0.0 14 ------- null} + -t 0.937264 -s 4 -d 3 -p ack -e 40 -c 0 -i 159 -a 0 -x {5.0 0.0 14 ------- null} - -t 0.937264 -s 4 -d 3 -p ack -e 40 -c 0 -i 159 -a 0 -x {5.0 0.0 14 ------- null} h -t 0.937264 -s 4 -d 3 -p ack -e 40 -c 0 -i 159 -a 0 -x {5.0 0.0 -1 ------- null} - -t 0.9376 -s 3 -d 4 -p cbr -e 500 -c 1 -i 147 -a 1 -x {1.0 6.0 81 ------- null} h -t 0.9376 -s 3 -d 4 -p cbr -e 500 -c 1 -i 147 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.9396 -s 3 -d 4 -p cbr -e 500 -c 1 -i 133 -a 1 -x {1.0 6.0 74 ------- null} + -t 0.9396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 133 -a 1 -x {1.0 6.0 74 ------- null} - -t 0.9396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 133 -a 1 -x {1.0 6.0 74 ------- null} h -t 0.9396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 133 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.94 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 165 -a 1 -x {2.0 7.0 42 ------- null} - -t 0.94 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 165 -a 1 -x {2.0 7.0 42 ------- null} h -t 0.94 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 165 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.94 -s 1 -d 3 -p cbr -e 500 -c 1 -i 166 -a 1 -x {1.0 6.0 89 ------- null} - -t 0.94 -s 1 -d 3 -p cbr -e 500 -c 1 -i 166 -a 1 -x {1.0 6.0 89 ------- null} h -t 0.94 -s 1 -d 3 -p cbr -e 500 -c 1 -i 166 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.9416 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 146 -a 1 -x {2.0 7.0 38 ------- null} h -t 0.9416 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 146 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.9436 -s 3 -d 4 -p cbr -e 500 -c 1 -i 135 -a 1 -x {1.0 6.0 75 ------- null} + -t 0.9436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 135 -a 1 -x {1.0 6.0 75 ------- null} - -t 0.9436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 135 -a 1 -x {1.0 6.0 75 ------- null} h -t 0.9436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 135 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.943648 -s 3 -d 0 -p ack -e 40 -c 0 -i 145 -a 0 -x {5.0 0.0 10 ------- null} + -t 0.943648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 167 -a 0 -x {0.0 5.0 18 ------- null} - -t 0.943648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 167 -a 0 -x {0.0 5.0 18 ------- null} h -t 0.943648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 167 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.944 -s 1 -d 3 -p cbr -e 500 -c 1 -i 161 -a 1 -x {1.0 6.0 87 ------- null} + -t 0.944 -s 3 -d 4 -p cbr -e 500 -c 1 -i 161 -a 1 -x {1.0 6.0 87 ------- null} r -t 0.945248 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 162 -a 0 -x {0.0 5.0 17 ------- null} + -t 0.945248 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 162 -a 0 -x {0.0 5.0 17 ------- null} r -t 0.9476 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 128 -a 1 -x {2.0 7.0 33 ------- null} r -t 0.9476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 130 -a 1 -x {1.0 6.0 72 ------- null} r -t 0.948 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 160 -a 1 -x {2.0 7.0 41 ------- null} + -t 0.948 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 160 -a 1 -x {2.0 7.0 41 ------- null} r -t 0.949264 -s 5 -d 4 -p ack -e 40 -c 0 -i 163 -a 0 -x {5.0 0.0 15 ------- null} + -t 0.949264 -s 4 -d 3 -p ack -e 40 -c 0 -i 163 -a 0 -x {5.0 0.0 15 ------- null} - -t 0.949264 -s 4 -d 3 -p ack -e 40 -c 0 -i 163 -a 0 -x {5.0 0.0 15 ------- null} h -t 0.949264 -s 4 -d 3 -p ack -e 40 -c 0 -i 163 -a 0 -x {5.0 0.0 -1 ------- null} - -t 0.9496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 149 -a 1 -x {1.0 6.0 82 ------- null} h -t 0.9496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 149 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.95 -s 1 -d 3 -p cbr -e 500 -c 1 -i 168 -a 1 -x {1.0 6.0 90 ------- null} - -t 0.95 -s 1 -d 3 -p cbr -e 500 -c 1 -i 168 -a 1 -x {1.0 6.0 90 ------- null} h -t 0.95 -s 1 -d 3 -p cbr -e 500 -c 1 -i 168 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.9516 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 134 -a 1 -x {2.0 7.0 35 ------- null} + -t 0.9516 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 134 -a 1 -x {2.0 7.0 35 ------- null} - -t 0.9516 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 134 -a 1 -x {2.0 7.0 35 ------- null} h -t 0.9516 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 134 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.9516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 132 -a 1 -x {1.0 6.0 73 ------- null} - -t 0.9536 -s 3 -d 4 -p cbr -e 500 -c 1 -i 151 -a 1 -x {1.0 6.0 83 ------- null} h -t 0.9536 -s 3 -d 4 -p cbr -e 500 -c 1 -i 151 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.954 -s 1 -d 3 -p cbr -e 500 -c 1 -i 164 -a 1 -x {1.0 6.0 88 ------- null} + -t 0.954 -s 3 -d 4 -p cbr -e 500 -c 1 -i 164 -a 1 -x {1.0 6.0 88 ------- null} r -t 0.9556 -s 3 -d 4 -p cbr -e 500 -c 1 -i 136 -a 1 -x {1.0 6.0 76 ------- null} + -t 0.9556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 136 -a 1 -x {1.0 6.0 76 ------- null} - -t 0.9556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 136 -a 1 -x {1.0 6.0 76 ------- null} h -t 0.9556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 136 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.955648 -s 3 -d 0 -p ack -e 40 -c 0 -i 148 -a 0 -x {5.0 0.0 11 ------- null} + -t 0.955648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 169 -a 0 -x {0.0 5.0 19 ------- null} - -t 0.955648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 169 -a 0 -x {0.0 5.0 19 ------- null} h -t 0.955648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 169 -a 0 -x {0.0 5.0 -1 ------- null} - -t 0.9576 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 150 -a 1 -x {2.0 7.0 39 ------- null} h -t 0.9576 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 150 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.959584 -s 4 -d 3 -p ack -e 40 -c 0 -i 152 -a 0 -x {5.0 0.0 12 ------- null} + -t 0.959584 -s 3 -d 0 -p ack -e 40 -c 0 -i 152 -a 0 -x {5.0 0.0 12 ------- null} - -t 0.959584 -s 3 -d 0 -p ack -e 40 -c 0 -i 152 -a 0 -x {5.0 0.0 12 ------- null} h -t 0.959584 -s 3 -d 0 -p ack -e 40 -c 0 -i 152 -a 0 -x {5.0 0.0 -1 ------- null} r -t 0.9596 -s 3 -d 4 -p cbr -e 500 -c 1 -i 138 -a 1 -x {1.0 6.0 77 ------- null} + -t 0.9596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 138 -a 1 -x {1.0 6.0 77 ------- null} - -t 0.9596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 138 -a 1 -x {1.0 6.0 77 ------- null} h -t 0.9596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 138 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.96 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 170 -a 1 -x {2.0 7.0 43 ------- null} - -t 0.96 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 170 -a 1 -x {2.0 7.0 43 ------- null} h -t 0.96 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 170 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.96 -s 1 -d 3 -p cbr -e 500 -c 1 -i 171 -a 1 -x {1.0 6.0 91 ------- null} - -t 0.96 -s 1 -d 3 -p cbr -e 500 -c 1 -i 171 -a 1 -x {1.0 6.0 91 ------- null} h -t 0.96 -s 1 -d 3 -p cbr -e 500 -c 1 -i 171 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.9636 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 131 -a 1 -x {2.0 7.0 34 ------- null} r -t 0.9636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 133 -a 1 -x {1.0 6.0 74 ------- null} r -t 0.964 -s 1 -d 3 -p cbr -e 500 -c 1 -i 166 -a 1 -x {1.0 6.0 89 ------- null} + -t 0.964 -s 3 -d 4 -p cbr -e 500 -c 1 -i 166 -a 1 -x {1.0 6.0 89 ------- null} r -t 0.965248 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 167 -a 0 -x {0.0 5.0 18 ------- null} + -t 0.965248 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 167 -a 0 -x {0.0 5.0 18 ------- null} - -t 0.9656 -s 3 -d 4 -p cbr -e 500 -c 1 -i 153 -a 1 -x {1.0 6.0 84 ------- null} h -t 0.9656 -s 3 -d 4 -p cbr -e 500 -c 1 -i 153 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.9676 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 137 -a 1 -x {2.0 7.0 36 ------- null} + -t 0.9676 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 137 -a 1 -x {2.0 7.0 36 ------- null} - -t 0.9676 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 137 -a 1 -x {2.0 7.0 36 ------- null} h -t 0.9676 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 137 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.9676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 135 -a 1 -x {1.0 6.0 75 ------- null} r -t 0.968 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 165 -a 1 -x {2.0 7.0 42 ------- null} + -t 0.968 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 165 -a 1 -x {2.0 7.0 42 ------- null} - -t 0.9696 -s 3 -d 4 -p cbr -e 500 -c 1 -i 155 -a 1 -x {1.0 6.0 85 ------- null} h -t 0.9696 -s 3 -d 4 -p cbr -e 500 -c 1 -i 155 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.97 -s 1 -d 3 -p cbr -e 500 -c 1 -i 172 -a 1 -x {1.0 6.0 92 ------- null} - -t 0.97 -s 1 -d 3 -p cbr -e 500 -c 1 -i 172 -a 1 -x {1.0 6.0 92 ------- null} h -t 0.97 -s 1 -d 3 -p cbr -e 500 -c 1 -i 172 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.971584 -s 4 -d 3 -p ack -e 40 -c 0 -i 156 -a 0 -x {5.0 0.0 13 ------- null} + -t 0.971584 -s 3 -d 0 -p ack -e 40 -c 0 -i 156 -a 0 -x {5.0 0.0 13 ------- null} - -t 0.971584 -s 3 -d 0 -p ack -e 40 -c 0 -i 156 -a 0 -x {5.0 0.0 13 ------- null} h -t 0.971584 -s 3 -d 0 -p ack -e 40 -c 0 -i 156 -a 0 -x {5.0 0.0 -1 ------- null} r -t 0.9716 -s 3 -d 4 -p cbr -e 500 -c 1 -i 140 -a 1 -x {1.0 6.0 78 ------- null} + -t 0.9716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 140 -a 1 -x {1.0 6.0 78 ------- null} - -t 0.9716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 140 -a 1 -x {1.0 6.0 78 ------- null} h -t 0.9716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 140 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.9736 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 154 -a 1 -x {2.0 7.0 40 ------- null} h -t 0.9736 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 154 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.974 -s 1 -d 3 -p cbr -e 500 -c 1 -i 168 -a 1 -x {1.0 6.0 90 ------- null} + -t 0.974 -s 3 -d 4 -p cbr -e 500 -c 1 -i 168 -a 1 -x {1.0 6.0 90 ------- null} r -t 0.9756 -s 3 -d 4 -p cbr -e 500 -c 1 -i 143 -a 1 -x {1.0 6.0 79 ------- null} + -t 0.9756 -s 4 -d 6 -p cbr -e 500 -c 1 -i 143 -a 1 -x {1.0 6.0 79 ------- null} - -t 0.9756 -s 4 -d 6 -p cbr -e 500 -c 1 -i 143 -a 1 -x {1.0 6.0 79 ------- null} h -t 0.9756 -s 4 -d 6 -p cbr -e 500 -c 1 -i 143 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.977248 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 169 -a 0 -x {0.0 5.0 19 ------- null} + -t 0.977248 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 169 -a 0 -x {0.0 5.0 19 ------- null} r -t 0.9796 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 134 -a 1 -x {2.0 7.0 35 ------- null} r -t 0.9796 -s 4 -d 6 -p cbr -e 500 -c 1 -i 136 -a 1 -x {1.0 6.0 76 ------- null} r -t 0.979648 -s 3 -d 0 -p ack -e 40 -c 0 -i 152 -a 0 -x {5.0 0.0 12 ------- null} + -t 0.979648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 173 -a 0 -x {0.0 5.0 20 ------- null} - -t 0.979648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 173 -a 0 -x {0.0 5.0 20 ------- null} h -t 0.979648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 173 -a 0 -x {0.0 5.0 -1 ------- null} + -t 0.98 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 174 -a 1 -x {2.0 7.0 44 ------- null} - -t 0.98 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 174 -a 1 -x {2.0 7.0 44 ------- null} h -t 0.98 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 174 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.98 -s 1 -d 3 -p cbr -e 500 -c 1 -i 175 -a 1 -x {1.0 6.0 93 ------- null} - -t 0.98 -s 1 -d 3 -p cbr -e 500 -c 1 -i 175 -a 1 -x {1.0 6.0 93 ------- null} h -t 0.98 -s 1 -d 3 -p cbr -e 500 -c 1 -i 175 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.9816 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {0.0 5.0 16 ------- null} h -t 0.9816 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.9836 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 142 -a 1 -x {2.0 7.0 37 ------- null} + -t 0.9836 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 142 -a 1 -x {2.0 7.0 37 ------- null} - -t 0.9836 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 142 -a 1 -x {2.0 7.0 37 ------- null} h -t 0.9836 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 142 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.9836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 138 -a 1 -x {1.0 6.0 77 ------- null} r -t 0.984 -s 1 -d 3 -p cbr -e 500 -c 1 -i 171 -a 1 -x {1.0 6.0 91 ------- null} + -t 0.984 -s 3 -d 4 -p cbr -e 500 -c 1 -i 171 -a 1 -x {1.0 6.0 91 ------- null} r -t 0.987584 -s 4 -d 3 -p ack -e 40 -c 0 -i 159 -a 0 -x {5.0 0.0 14 ------- null} + -t 0.987584 -s 3 -d 0 -p ack -e 40 -c 0 -i 159 -a 0 -x {5.0 0.0 14 ------- null} - -t 0.987584 -s 3 -d 0 -p ack -e 40 -c 0 -i 159 -a 0 -x {5.0 0.0 14 ------- null} h -t 0.987584 -s 3 -d 0 -p ack -e 40 -c 0 -i 159 -a 0 -x {5.0 0.0 -1 ------- null} r -t 0.9876 -s 3 -d 4 -p cbr -e 500 -c 1 -i 144 -a 1 -x {1.0 6.0 80 ------- null} + -t 0.9876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 144 -a 1 -x {1.0 6.0 80 ------- null} - -t 0.9876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 144 -a 1 -x {1.0 6.0 80 ------- null} h -t 0.9876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 144 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.988 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 170 -a 1 -x {2.0 7.0 43 ------- null} + -t 0.988 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 170 -a 1 -x {2.0 7.0 43 ------- null} - -t 0.9896 -s 3 -d 4 -p cbr -e 500 -c 1 -i 157 -a 1 -x {1.0 6.0 86 ------- null} h -t 0.9896 -s 3 -d 4 -p cbr -e 500 -c 1 -i 157 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.99 -s 1 -d 3 -p cbr -e 500 -c 1 -i 176 -a 1 -x {1.0 6.0 94 ------- null} - -t 0.99 -s 1 -d 3 -p cbr -e 500 -c 1 -i 176 -a 1 -x {1.0 6.0 94 ------- null} h -t 0.99 -s 1 -d 3 -p cbr -e 500 -c 1 -i 176 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.9916 -s 3 -d 4 -p cbr -e 500 -c 1 -i 147 -a 1 -x {1.0 6.0 81 ------- null} + -t 0.9916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 147 -a 1 -x {1.0 6.0 81 ------- null} - -t 0.9916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 147 -a 1 -x {1.0 6.0 81 ------- null} h -t 0.9916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 147 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.991648 -s 3 -d 0 -p ack -e 40 -c 0 -i 156 -a 0 -x {5.0 0.0 13 ------- null} + -t 0.991648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 177 -a 0 -x {0.0 5.0 21 ------- null} - -t 0.991648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 177 -a 0 -x {0.0 5.0 21 ------- null} h -t 0.991648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 177 -a 0 -x {0.0 5.0 -1 ------- null} - -t 0.9936 -s 3 -d 4 -p cbr -e 500 -c 1 -i 161 -a 1 -x {1.0 6.0 87 ------- null} h -t 0.9936 -s 3 -d 4 -p cbr -e 500 -c 1 -i 161 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.994 -s 1 -d 3 -p cbr -e 500 -c 1 -i 172 -a 1 -x {1.0 6.0 92 ------- null} + -t 0.994 -s 3 -d 4 -p cbr -e 500 -c 1 -i 172 -a 1 -x {1.0 6.0 92 ------- null} r -t 0.9956 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 137 -a 1 -x {2.0 7.0 36 ------- null} r -t 0.9956 -s 4 -d 6 -p cbr -e 500 -c 1 -i 140 -a 1 -x {1.0 6.0 78 ------- null} - -t 0.9976 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 162 -a 0 -x {0.0 5.0 17 ------- null} h -t 0.9976 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 162 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.999584 -s 4 -d 3 -p ack -e 40 -c 0 -i 163 -a 0 -x {5.0 0.0 15 ------- null} + -t 0.999584 -s 3 -d 0 -p ack -e 40 -c 0 -i 163 -a 0 -x {5.0 0.0 15 ------- null} - -t 0.999584 -s 3 -d 0 -p ack -e 40 -c 0 -i 163 -a 0 -x {5.0 0.0 15 ------- null} h -t 0.999584 -s 3 -d 0 -p ack -e 40 -c 0 -i 163 -a 0 -x {5.0 0.0 -1 ------- null} r -t 0.9996 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 146 -a 1 -x {2.0 7.0 38 ------- null} + -t 0.9996 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 146 -a 1 -x {2.0 7.0 38 ------- null} - -t 0.9996 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 146 -a 1 -x {2.0 7.0 38 ------- null} h -t 0.9996 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 146 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.9996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 143 -a 1 -x {1.0 6.0 79 ------- null} + -t 1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 178 -a 1 -x {2.0 7.0 45 ------- null} - -t 1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 178 -a 1 -x {2.0 7.0 45 ------- null} h -t 1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 178 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 179 -a 1 -x {1.0 6.0 95 ------- null} - -t 1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 179 -a 1 -x {1.0 6.0 95 ------- null} h -t 1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 179 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.00125 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 173 -a 0 -x {0.0 5.0 20 ------- null} + -t 1.00125 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 173 -a 0 -x {0.0 5.0 20 ------- null} r -t 1.0036 -s 3 -d 4 -p cbr -e 500 -c 1 -i 149 -a 1 -x {1.0 6.0 82 ------- null} + -t 1.0036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 149 -a 1 -x {1.0 6.0 82 ------- null} - -t 1.0036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 149 -a 1 -x {1.0 6.0 82 ------- null} h -t 1.0036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 149 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.004 -s 1 -d 3 -p cbr -e 500 -c 1 -i 175 -a 1 -x {1.0 6.0 93 ------- null} + -t 1.004 -s 3 -d 4 -p cbr -e 500 -c 1 -i 175 -a 1 -x {1.0 6.0 93 ------- null} - -t 1.0056 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 160 -a 1 -x {2.0 7.0 41 ------- null} h -t 1.0056 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 160 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.0076 -s 3 -d 4 -p cbr -e 500 -c 1 -i 151 -a 1 -x {1.0 6.0 83 ------- null} + -t 1.0076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 151 -a 1 -x {1.0 6.0 83 ------- null} - -t 1.0076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 151 -a 1 -x {1.0 6.0 83 ------- null} h -t 1.0076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 151 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.00765 -s 3 -d 0 -p ack -e 40 -c 0 -i 159 -a 0 -x {5.0 0.0 14 ------- null} + -t 1.00765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 180 -a 0 -x {0.0 5.0 22 ------- null} - -t 1.00765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 180 -a 0 -x {0.0 5.0 22 ------- null} h -t 1.00765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 180 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.008 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 174 -a 1 -x {2.0 7.0 44 ------- null} + -t 1.008 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 174 -a 1 -x {2.0 7.0 44 ------- null} + -t 1.01 -s 1 -d 3 -p cbr -e 500 -c 1 -i 181 -a 1 -x {1.0 6.0 96 ------- null} - -t 1.01 -s 1 -d 3 -p cbr -e 500 -c 1 -i 181 -a 1 -x {1.0 6.0 96 ------- null} h -t 1.01 -s 1 -d 3 -p cbr -e 500 -c 1 -i 181 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.0116 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 142 -a 1 -x {2.0 7.0 37 ------- null} r -t 1.0116 -s 4 -d 6 -p cbr -e 500 -c 1 -i 144 -a 1 -x {1.0 6.0 80 ------- null} r -t 1.01325 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 177 -a 0 -x {0.0 5.0 21 ------- null} + -t 1.01325 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 177 -a 0 -x {0.0 5.0 21 ------- null} - -t 1.0136 -s 3 -d 4 -p cbr -e 500 -c 1 -i 164 -a 1 -x {1.0 6.0 88 ------- null} h -t 1.0136 -s 3 -d 4 -p cbr -e 500 -c 1 -i 164 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.014 -s 1 -d 3 -p cbr -e 500 -c 1 -i 176 -a 1 -x {1.0 6.0 94 ------- null} + -t 1.014 -s 3 -d 4 -p cbr -e 500 -c 1 -i 176 -a 1 -x {1.0 6.0 94 ------- null} r -t 1.0156 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 150 -a 1 -x {2.0 7.0 39 ------- null} + -t 1.0156 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 150 -a 1 -x {2.0 7.0 39 ------- null} - -t 1.0156 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 150 -a 1 -x {2.0 7.0 39 ------- null} h -t 1.0156 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 150 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.0156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 147 -a 1 -x {1.0 6.0 81 ------- null} - -t 1.0176 -s 3 -d 4 -p cbr -e 500 -c 1 -i 166 -a 1 -x {1.0 6.0 89 ------- null} h -t 1.0176 -s 3 -d 4 -p cbr -e 500 -c 1 -i 166 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.0196 -s 3 -d 4 -p cbr -e 500 -c 1 -i 153 -a 1 -x {1.0 6.0 84 ------- null} + -t 1.0196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 153 -a 1 -x {1.0 6.0 84 ------- null} - -t 1.0196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 153 -a 1 -x {1.0 6.0 84 ------- null} h -t 1.0196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 153 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.01965 -s 3 -d 0 -p ack -e 40 -c 0 -i 163 -a 0 -x {5.0 0.0 15 ------- null} + -t 1.01965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {0.0 5.0 23 ------- null} - -t 1.01965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {0.0 5.0 23 ------- null} h -t 1.01965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {0.0 5.0 -1 ------- null} + -t 1.02 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 183 -a 1 -x {2.0 7.0 46 ------- null} - -t 1.02 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 183 -a 1 -x {2.0 7.0 46 ------- null} h -t 1.02 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 183 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.02 -s 1 -d 3 -p cbr -e 500 -c 1 -i 184 -a 1 -x {1.0 6.0 97 ------- null} - -t 1.02 -s 1 -d 3 -p cbr -e 500 -c 1 -i 184 -a 1 -x {1.0 6.0 97 ------- null} h -t 1.02 -s 1 -d 3 -p cbr -e 500 -c 1 -i 184 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.0216 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 167 -a 0 -x {0.0 5.0 18 ------- null} h -t 1.0216 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 167 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.0236 -s 3 -d 4 -p cbr -e 500 -c 1 -i 155 -a 1 -x {1.0 6.0 85 ------- null} + -t 1.0236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 155 -a 1 -x {1.0 6.0 85 ------- null} - -t 1.0236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 155 -a 1 -x {1.0 6.0 85 ------- null} h -t 1.0236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 155 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.024 -s 1 -d 3 -p cbr -e 500 -c 1 -i 179 -a 1 -x {1.0 6.0 95 ------- null} + -t 1.024 -s 3 -d 4 -p cbr -e 500 -c 1 -i 179 -a 1 -x {1.0 6.0 95 ------- null} r -t 1.0276 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 146 -a 1 -x {2.0 7.0 38 ------- null} r -t 1.0276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 149 -a 1 -x {1.0 6.0 82 ------- null} r -t 1.028 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 178 -a 1 -x {2.0 7.0 45 ------- null} + -t 1.028 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 178 -a 1 -x {2.0 7.0 45 ------- null} r -t 1.02925 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 180 -a 0 -x {0.0 5.0 22 ------- null} + -t 1.02925 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 180 -a 0 -x {0.0 5.0 22 ------- null} - -t 1.0296 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 165 -a 1 -x {2.0 7.0 42 ------- null} h -t 1.0296 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 165 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.03 -s 1 -d 3 -p cbr -e 500 -c 1 -i 185 -a 1 -x {1.0 6.0 98 ------- null} - -t 1.03 -s 1 -d 3 -p cbr -e 500 -c 1 -i 185 -a 1 -x {1.0 6.0 98 ------- null} h -t 1.03 -s 1 -d 3 -p cbr -e 500 -c 1 -i 185 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.0316 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 154 -a 1 -x {2.0 7.0 40 ------- null} + -t 1.0316 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 154 -a 1 -x {2.0 7.0 40 ------- null} - -t 1.0316 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 154 -a 1 -x {2.0 7.0 40 ------- null} h -t 1.0316 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 154 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.0316 -s 4 -d 6 -p cbr -e 500 -c 1 -i 151 -a 1 -x {1.0 6.0 83 ------- null} r -t 1.034 -s 1 -d 3 -p cbr -e 500 -c 1 -i 181 -a 1 -x {1.0 6.0 96 ------- null} + -t 1.034 -s 3 -d 4 -p cbr -e 500 -c 1 -i 181 -a 1 -x {1.0 6.0 96 ------- null} - -t 1.0376 -s 3 -d 4 -p cbr -e 500 -c 1 -i 168 -a 1 -x {1.0 6.0 90 ------- null} h -t 1.0376 -s 3 -d 4 -p cbr -e 500 -c 1 -i 168 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.0396 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {0.0 5.0 16 ------- null} + -t 1.0396 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {0.0 5.0 16 ------- null} - -t 1.0396 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {0.0 5.0 16 ------- null} h -t 1.0396 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {0.0 5.0 -1 ------- null} + -t 1.04 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 186 -a 1 -x {2.0 7.0 47 ------- null} - -t 1.04 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 186 -a 1 -x {2.0 7.0 47 ------- null} h -t 1.04 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 186 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.04 -s 1 -d 3 -p cbr -e 500 -c 1 -i 187 -a 1 -x {1.0 6.0 99 ------- null} - -t 1.04 -s 1 -d 3 -p cbr -e 500 -c 1 -i 187 -a 1 -x {1.0 6.0 99 ------- null} h -t 1.04 -s 1 -d 3 -p cbr -e 500 -c 1 -i 187 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.04125 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {0.0 5.0 23 ------- null} + -t 1.04125 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {0.0 5.0 23 ------- null} - -t 1.0416 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 169 -a 0 -x {0.0 5.0 19 ------- null} h -t 1.0416 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 169 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.0436 -s 3 -d 4 -p cbr -e 500 -c 1 -i 157 -a 1 -x {1.0 6.0 86 ------- null} + -t 1.0436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 157 -a 1 -x {1.0 6.0 86 ------- null} - -t 1.0436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 157 -a 1 -x {1.0 6.0 86 ------- null} h -t 1.0436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 157 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.0436 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 150 -a 1 -x {2.0 7.0 39 ------- null} r -t 1.0436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 153 -a 1 -x {1.0 6.0 84 ------- null} r -t 1.044 -s 1 -d 3 -p cbr -e 500 -c 1 -i 184 -a 1 -x {1.0 6.0 97 ------- null} + -t 1.044 -s 3 -d 4 -p cbr -e 500 -c 1 -i 184 -a 1 -x {1.0 6.0 97 ------- null} r -t 1.0476 -s 3 -d 4 -p cbr -e 500 -c 1 -i 161 -a 1 -x {1.0 6.0 87 ------- null} + -t 1.0476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 161 -a 1 -x {1.0 6.0 87 ------- null} r -t 1.0476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 155 -a 1 -x {1.0 6.0 85 ------- null} - -t 1.0476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 161 -a 1 -x {1.0 6.0 87 ------- null} h -t 1.0476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 161 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.048 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 183 -a 1 -x {2.0 7.0 46 ------- null} + -t 1.048 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 183 -a 1 -x {2.0 7.0 46 ------- null} d -t 1.048 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 183 -a 1 -x {2.0 7.0 46 ------- null} - -t 1.0496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 171 -a 1 -x {1.0 6.0 91 ------- null} h -t 1.0496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 171 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 188 -a 1 -x {1.0 6.0 100 ------- null} - -t 1.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 188 -a 1 -x {1.0 6.0 100 ------- null} h -t 1.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 188 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.0536 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 170 -a 1 -x {2.0 7.0 43 ------- null} h -t 1.0536 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 170 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.054 -s 1 -d 3 -p cbr -e 500 -c 1 -i 185 -a 1 -x {1.0 6.0 98 ------- null} + -t 1.054 -s 3 -d 4 -p cbr -e 500 -c 1 -i 185 -a 1 -x {1.0 6.0 98 ------- null} r -t 1.0556 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 162 -a 0 -x {0.0 5.0 17 ------- null} + -t 1.0556 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 162 -a 0 -x {0.0 5.0 17 ------- null} - -t 1.0556 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 162 -a 0 -x {0.0 5.0 17 ------- null} h -t 1.0556 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 162 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.0596 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 154 -a 1 -x {2.0 7.0 40 ------- null} + -t 1.06 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 189 -a 1 -x {2.0 7.0 48 ------- null} - -t 1.06 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 189 -a 1 -x {2.0 7.0 48 ------- null} h -t 1.06 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 189 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 190 -a 1 -x {1.0 6.0 101 ------- null} - -t 1.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 190 -a 1 -x {1.0 6.0 101 ------- null} h -t 1.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 190 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.0612 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {0.0 5.0 16 ------- null} + -t 1.0612 -s 5 -d 4 -p ack -e 40 -c 0 -i 191 -a 0 -x {5.0 0.0 16 ------- null} - -t 1.0612 -s 5 -d 4 -p ack -e 40 -c 0 -i 191 -a 0 -x {5.0 0.0 16 ------- null} h -t 1.0612 -s 5 -d 4 -p ack -e 40 -c 0 -i 191 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.0616 -s 3 -d 4 -p cbr -e 500 -c 1 -i 172 -a 1 -x {1.0 6.0 92 ------- null} h -t 1.0616 -s 3 -d 4 -p cbr -e 500 -c 1 -i 172 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.0636 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 160 -a 1 -x {2.0 7.0 41 ------- null} + -t 1.0636 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 160 -a 1 -x {2.0 7.0 41 ------- null} - -t 1.0636 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 160 -a 1 -x {2.0 7.0 41 ------- null} h -t 1.0636 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 160 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.064 -s 1 -d 3 -p cbr -e 500 -c 1 -i 187 -a 1 -x {1.0 6.0 99 ------- null} + -t 1.064 -s 3 -d 4 -p cbr -e 500 -c 1 -i 187 -a 1 -x {1.0 6.0 99 ------- null} - -t 1.0656 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 173 -a 0 -x {0.0 5.0 20 ------- null} h -t 1.0656 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 173 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.0676 -s 3 -d 4 -p cbr -e 500 -c 1 -i 164 -a 1 -x {1.0 6.0 88 ------- null} + -t 1.0676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 164 -a 1 -x {1.0 6.0 88 ------- null} - -t 1.0676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 164 -a 1 -x {1.0 6.0 88 ------- null} h -t 1.0676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 164 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.0676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 157 -a 1 -x {1.0 6.0 86 ------- null} r -t 1.068 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 186 -a 1 -x {2.0 7.0 47 ------- null} + -t 1.068 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 186 -a 1 -x {2.0 7.0 47 ------- null} + -t 1.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 192 -a 1 -x {1.0 6.0 102 ------- null} - -t 1.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 192 -a 1 -x {1.0 6.0 102 ------- null} h -t 1.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 192 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.0716 -s 3 -d 4 -p cbr -e 500 -c 1 -i 166 -a 1 -x {1.0 6.0 89 ------- null} + -t 1.0716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 166 -a 1 -x {1.0 6.0 89 ------- null} r -t 1.0716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 161 -a 1 -x {1.0 6.0 87 ------- null} - -t 1.0716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 166 -a 1 -x {1.0 6.0 89 ------- null} h -t 1.0716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 166 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.0736 -s 3 -d 4 -p cbr -e 500 -c 1 -i 175 -a 1 -x {1.0 6.0 93 ------- null} h -t 1.0736 -s 3 -d 4 -p cbr -e 500 -c 1 -i 175 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.074 -s 1 -d 3 -p cbr -e 500 -c 1 -i 188 -a 1 -x {1.0 6.0 100 ------- null} + -t 1.074 -s 3 -d 4 -p cbr -e 500 -c 1 -i 188 -a 1 -x {1.0 6.0 100 ------- null} r -t 1.0772 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 162 -a 0 -x {0.0 5.0 17 ------- null} + -t 1.0772 -s 5 -d 4 -p ack -e 40 -c 0 -i 193 -a 0 -x {5.0 0.0 17 ------- null} - -t 1.0772 -s 5 -d 4 -p ack -e 40 -c 0 -i 193 -a 0 -x {5.0 0.0 17 ------- null} h -t 1.0772 -s 5 -d 4 -p ack -e 40 -c 0 -i 193 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.0776 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 174 -a 1 -x {2.0 7.0 44 ------- null} h -t 1.0776 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 174 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.0796 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 167 -a 0 -x {0.0 5.0 18 ------- null} + -t 1.0796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 167 -a 0 -x {0.0 5.0 18 ------- null} - -t 1.0796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 167 -a 0 -x {0.0 5.0 18 ------- null} h -t 1.0796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 167 -a 0 -x {0.0 5.0 -1 ------- null} + -t 1.08 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 194 -a 1 -x {2.0 7.0 49 ------- null} - -t 1.08 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 194 -a 1 -x {2.0 7.0 49 ------- null} h -t 1.08 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 194 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 195 -a 1 -x {1.0 6.0 103 ------- null} - -t 1.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 195 -a 1 -x {1.0 6.0 103 ------- null} h -t 1.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 195 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.08126 -s 5 -d 4 -p ack -e 40 -c 0 -i 191 -a 0 -x {5.0 0.0 16 ------- null} + -t 1.08126 -s 4 -d 3 -p ack -e 40 -c 0 -i 191 -a 0 -x {5.0 0.0 16 ------- null} - -t 1.08126 -s 4 -d 3 -p ack -e 40 -c 0 -i 191 -a 0 -x {5.0 0.0 16 ------- null} h -t 1.08126 -s 4 -d 3 -p ack -e 40 -c 0 -i 191 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.084 -s 1 -d 3 -p cbr -e 500 -c 1 -i 190 -a 1 -x {1.0 6.0 101 ------- null} + -t 1.084 -s 3 -d 4 -p cbr -e 500 -c 1 -i 190 -a 1 -x {1.0 6.0 101 ------- null} - -t 1.0856 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 177 -a 0 -x {0.0 5.0 21 ------- null} h -t 1.0856 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 177 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.0876 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 165 -a 1 -x {2.0 7.0 42 ------- null} + -t 1.0876 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 165 -a 1 -x {2.0 7.0 42 ------- null} - -t 1.0876 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 165 -a 1 -x {2.0 7.0 42 ------- null} h -t 1.0876 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 165 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.088 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 189 -a 1 -x {2.0 7.0 48 ------- null} + -t 1.088 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 189 -a 1 -x {2.0 7.0 48 ------- null} + -t 1.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 196 -a 1 -x {1.0 6.0 104 ------- null} - -t 1.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 196 -a 1 -x {1.0 6.0 104 ------- null} h -t 1.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 196 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.0916 -s 3 -d 4 -p cbr -e 500 -c 1 -i 168 -a 1 -x {1.0 6.0 90 ------- null} + -t 1.0916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 168 -a 1 -x {1.0 6.0 90 ------- null} - -t 1.0916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 168 -a 1 -x {1.0 6.0 90 ------- null} h -t 1.0916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 168 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.0916 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 160 -a 1 -x {2.0 7.0 41 ------- null} r -t 1.0916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 164 -a 1 -x {1.0 6.0 88 ------- null} - -t 1.0936 -s 3 -d 4 -p cbr -e 500 -c 1 -i 176 -a 1 -x {1.0 6.0 94 ------- null} h -t 1.0936 -s 3 -d 4 -p cbr -e 500 -c 1 -i 176 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.094 -s 1 -d 3 -p cbr -e 500 -c 1 -i 192 -a 1 -x {1.0 6.0 102 ------- null} + -t 1.094 -s 3 -d 4 -p cbr -e 500 -c 1 -i 192 -a 1 -x {1.0 6.0 102 ------- null} r -t 1.0956 -s 4 -d 6 -p cbr -e 500 -c 1 -i 166 -a 1 -x {1.0 6.0 89 ------- null} r -t 1.09726 -s 5 -d 4 -p ack -e 40 -c 0 -i 193 -a 0 -x {5.0 0.0 17 ------- null} + -t 1.09726 -s 4 -d 3 -p ack -e 40 -c 0 -i 193 -a 0 -x {5.0 0.0 17 ------- null} - -t 1.09726 -s 4 -d 3 -p ack -e 40 -c 0 -i 193 -a 0 -x {5.0 0.0 17 ------- null} h -t 1.09726 -s 4 -d 3 -p ack -e 40 -c 0 -i 193 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.0976 -s 3 -d 4 -p cbr -e 500 -c 1 -i 179 -a 1 -x {1.0 6.0 95 ------- null} h -t 1.0976 -s 3 -d 4 -p cbr -e 500 -c 1 -i 179 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.0996 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 169 -a 0 -x {0.0 5.0 19 ------- null} + -t 1.0996 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 169 -a 0 -x {0.0 5.0 19 ------- null} - -t 1.0996 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 169 -a 0 -x {0.0 5.0 19 ------- null} h -t 1.0996 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 169 -a 0 -x {0.0 5.0 -1 ------- null} + -t 1.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 197 -a 1 -x {2.0 7.0 50 ------- null} - -t 1.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 197 -a 1 -x {2.0 7.0 50 ------- null} h -t 1.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 197 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 198 -a 1 -x {1.0 6.0 105 ------- null} - -t 1.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 198 -a 1 -x {1.0 6.0 105 ------- null} h -t 1.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 198 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.1012 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 167 -a 0 -x {0.0 5.0 18 ------- null} + -t 1.1012 -s 5 -d 4 -p ack -e 40 -c 0 -i 199 -a 0 -x {5.0 0.0 18 ------- null} - -t 1.1012 -s 5 -d 4 -p ack -e 40 -c 0 -i 199 -a 0 -x {5.0 0.0 18 ------- null} h -t 1.1012 -s 5 -d 4 -p ack -e 40 -c 0 -i 199 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.1016 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 178 -a 1 -x {2.0 7.0 45 ------- null} h -t 1.1016 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 178 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.1036 -s 3 -d 4 -p cbr -e 500 -c 1 -i 171 -a 1 -x {1.0 6.0 91 ------- null} + -t 1.1036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 171 -a 1 -x {1.0 6.0 91 ------- null} - -t 1.1036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 171 -a 1 -x {1.0 6.0 91 ------- null} h -t 1.1036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 171 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.104 -s 1 -d 3 -p cbr -e 500 -c 1 -i 195 -a 1 -x {1.0 6.0 103 ------- null} + -t 1.104 -s 3 -d 4 -p cbr -e 500 -c 1 -i 195 -a 1 -x {1.0 6.0 103 ------- null} r -t 1.108 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 194 -a 1 -x {2.0 7.0 49 ------- null} + -t 1.108 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 194 -a 1 -x {2.0 7.0 49 ------- null} - -t 1.1096 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 180 -a 0 -x {0.0 5.0 22 ------- null} h -t 1.1096 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 180 -a 0 -x {0.0 5.0 -1 ------- null} + -t 1.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 200 -a 1 -x {1.0 6.0 106 ------- null} - -t 1.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 200 -a 1 -x {1.0 6.0 106 ------- null} h -t 1.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 200 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.1116 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 170 -a 1 -x {2.0 7.0 43 ------- null} + -t 1.1116 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 170 -a 1 -x {2.0 7.0 43 ------- null} - -t 1.1116 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 170 -a 1 -x {2.0 7.0 43 ------- null} h -t 1.1116 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 170 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.114 -s 1 -d 3 -p cbr -e 500 -c 1 -i 196 -a 1 -x {1.0 6.0 104 ------- null} + -t 1.114 -s 3 -d 4 -p cbr -e 500 -c 1 -i 196 -a 1 -x {1.0 6.0 104 ------- null} r -t 1.1156 -s 3 -d 4 -p cbr -e 500 -c 1 -i 172 -a 1 -x {1.0 6.0 92 ------- null} + -t 1.1156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 172 -a 1 -x {1.0 6.0 92 ------- null} - -t 1.1156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 172 -a 1 -x {1.0 6.0 92 ------- null} h -t 1.1156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 172 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.1156 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 165 -a 1 -x {2.0 7.0 42 ------- null} r -t 1.1156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 168 -a 1 -x {1.0 6.0 90 ------- null} - -t 1.1176 -s 3 -d 4 -p cbr -e 500 -c 1 -i 181 -a 1 -x {1.0 6.0 96 ------- null} h -t 1.1176 -s 3 -d 4 -p cbr -e 500 -c 1 -i 181 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 201 -a 1 -x {2.0 7.0 51 ------- null} - -t 1.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 201 -a 1 -x {2.0 7.0 51 ------- null} h -t 1.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 201 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 202 -a 1 -x {1.0 6.0 107 ------- null} - -t 1.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 202 -a 1 -x {1.0 6.0 107 ------- null} h -t 1.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 202 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.1212 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 169 -a 0 -x {0.0 5.0 19 ------- null} + -t 1.1212 -s 5 -d 4 -p ack -e 40 -c 0 -i 203 -a 0 -x {5.0 0.0 19 ------- null} - -t 1.1212 -s 5 -d 4 -p ack -e 40 -c 0 -i 203 -a 0 -x {5.0 0.0 19 ------- null} h -t 1.1212 -s 5 -d 4 -p ack -e 40 -c 0 -i 203 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.12126 -s 5 -d 4 -p ack -e 40 -c 0 -i 199 -a 0 -x {5.0 0.0 18 ------- null} + -t 1.12126 -s 4 -d 3 -p ack -e 40 -c 0 -i 199 -a 0 -x {5.0 0.0 18 ------- null} - -t 1.12126 -s 4 -d 3 -p ack -e 40 -c 0 -i 199 -a 0 -x {5.0 0.0 18 ------- null} h -t 1.12126 -s 4 -d 3 -p ack -e 40 -c 0 -i 199 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.1216 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {0.0 5.0 23 ------- null} h -t 1.1216 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.1236 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 173 -a 0 -x {0.0 5.0 20 ------- null} + -t 1.1236 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 173 -a 0 -x {0.0 5.0 20 ------- null} - -t 1.1236 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 173 -a 0 -x {0.0 5.0 20 ------- null} h -t 1.1236 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 173 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.124 -s 1 -d 3 -p cbr -e 500 -c 1 -i 198 -a 1 -x {1.0 6.0 105 ------- null} + -t 1.124 -s 3 -d 4 -p cbr -e 500 -c 1 -i 198 -a 1 -x {1.0 6.0 105 ------- null} r -t 1.1276 -s 3 -d 4 -p cbr -e 500 -c 1 -i 175 -a 1 -x {1.0 6.0 93 ------- null} + -t 1.1276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 175 -a 1 -x {1.0 6.0 93 ------- null} - -t 1.1276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 175 -a 1 -x {1.0 6.0 93 ------- null} h -t 1.1276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 175 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.1276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 171 -a 1 -x {1.0 6.0 91 ------- null} r -t 1.128 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 197 -a 1 -x {2.0 7.0 50 ------- null} + -t 1.128 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 197 -a 1 -x {2.0 7.0 50 ------- null} - -t 1.1296 -s 3 -d 4 -p cbr -e 500 -c 1 -i 184 -a 1 -x {1.0 6.0 97 ------- null} h -t 1.1296 -s 3 -d 4 -p cbr -e 500 -c 1 -i 184 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 204 -a 1 -x {1.0 6.0 108 ------- null} - -t 1.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 204 -a 1 -x {1.0 6.0 108 ------- null} h -t 1.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 204 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.13158 -s 4 -d 3 -p ack -e 40 -c 0 -i 191 -a 0 -x {5.0 0.0 16 ------- null} + -t 1.13158 -s 3 -d 0 -p ack -e 40 -c 0 -i 191 -a 0 -x {5.0 0.0 16 ------- null} - -t 1.13158 -s 3 -d 0 -p ack -e 40 -c 0 -i 191 -a 0 -x {5.0 0.0 16 ------- null} h -t 1.13158 -s 3 -d 0 -p ack -e 40 -c 0 -i 191 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.1336 -s 3 -d 4 -p cbr -e 500 -c 1 -i 185 -a 1 -x {1.0 6.0 98 ------- null} h -t 1.1336 -s 3 -d 4 -p cbr -e 500 -c 1 -i 185 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.134 -s 1 -d 3 -p cbr -e 500 -c 1 -i 200 -a 1 -x {1.0 6.0 106 ------- null} + -t 1.134 -s 3 -d 4 -p cbr -e 500 -c 1 -i 200 -a 1 -x {1.0 6.0 106 ------- null} r -t 1.1356 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 174 -a 1 -x {2.0 7.0 44 ------- null} + -t 1.1356 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 174 -a 1 -x {2.0 7.0 44 ------- null} - -t 1.1356 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 174 -a 1 -x {2.0 7.0 44 ------- null} h -t 1.1356 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 174 -a 1 -x {2.0 7.0 -1 ------- null} - -t 1.1376 -s 3 -d 4 -p cbr -e 500 -c 1 -i 187 -a 1 -x {1.0 6.0 99 ------- null} h -t 1.1376 -s 3 -d 4 -p cbr -e 500 -c 1 -i 187 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.1396 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 170 -a 1 -x {2.0 7.0 43 ------- null} r -t 1.1396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 172 -a 1 -x {1.0 6.0 92 ------- null} + -t 1.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 205 -a 1 -x {2.0 7.0 52 ------- null} - -t 1.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 205 -a 1 -x {2.0 7.0 52 ------- null} h -t 1.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 205 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 206 -a 1 -x {1.0 6.0 109 ------- null} - -t 1.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 206 -a 1 -x {1.0 6.0 109 ------- null} h -t 1.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 206 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.14126 -s 5 -d 4 -p ack -e 40 -c 0 -i 203 -a 0 -x {5.0 0.0 19 ------- null} + -t 1.14126 -s 4 -d 3 -p ack -e 40 -c 0 -i 203 -a 0 -x {5.0 0.0 19 ------- null} - -t 1.14126 -s 4 -d 3 -p ack -e 40 -c 0 -i 203 -a 0 -x {5.0 0.0 19 ------- null} h -t 1.14126 -s 4 -d 3 -p ack -e 40 -c 0 -i 203 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.1416 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 186 -a 1 -x {2.0 7.0 47 ------- null} h -t 1.1416 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 186 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.1436 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 177 -a 0 -x {0.0 5.0 21 ------- null} + -t 1.1436 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 177 -a 0 -x {0.0 5.0 21 ------- null} - -t 1.1436 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 177 -a 0 -x {0.0 5.0 21 ------- null} h -t 1.1436 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 177 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.144 -s 1 -d 3 -p cbr -e 500 -c 1 -i 202 -a 1 -x {1.0 6.0 107 ------- null} + -t 1.144 -s 3 -d 4 -p cbr -e 500 -c 1 -i 202 -a 1 -x {1.0 6.0 107 ------- null} r -t 1.1452 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 173 -a 0 -x {0.0 5.0 20 ------- null} + -t 1.1452 -s 5 -d 4 -p ack -e 40 -c 0 -i 207 -a 0 -x {5.0 0.0 20 ------- null} - -t 1.1452 -s 5 -d 4 -p ack -e 40 -c 0 -i 207 -a 0 -x {5.0 0.0 20 ------- null} h -t 1.1452 -s 5 -d 4 -p ack -e 40 -c 0 -i 207 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.14758 -s 4 -d 3 -p ack -e 40 -c 0 -i 193 -a 0 -x {5.0 0.0 17 ------- null} + -t 1.14758 -s 3 -d 0 -p ack -e 40 -c 0 -i 193 -a 0 -x {5.0 0.0 17 ------- null} - -t 1.14758 -s 3 -d 0 -p ack -e 40 -c 0 -i 193 -a 0 -x {5.0 0.0 17 ------- null} h -t 1.14758 -s 3 -d 0 -p ack -e 40 -c 0 -i 193 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.1476 -s 3 -d 4 -p cbr -e 500 -c 1 -i 176 -a 1 -x {1.0 6.0 94 ------- null} + -t 1.1476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 176 -a 1 -x {1.0 6.0 94 ------- null} - -t 1.1476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 176 -a 1 -x {1.0 6.0 94 ------- null} h -t 1.1476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 176 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.148 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 201 -a 1 -x {2.0 7.0 51 ------- null} + -t 1.148 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 201 -a 1 -x {2.0 7.0 51 ------- null} - -t 1.1496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 188 -a 1 -x {1.0 6.0 100 ------- null} h -t 1.1496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 188 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 208 -a 1 -x {1.0 6.0 110 ------- null} - -t 1.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 208 -a 1 -x {1.0 6.0 110 ------- null} h -t 1.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 208 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.1516 -s 3 -d 4 -p cbr -e 500 -c 1 -i 179 -a 1 -x {1.0 6.0 95 ------- null} + -t 1.1516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 179 -a 1 -x {1.0 6.0 95 ------- null} r -t 1.1516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 175 -a 1 -x {1.0 6.0 93 ------- null} - -t 1.1516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 179 -a 1 -x {1.0 6.0 95 ------- null} h -t 1.1516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 179 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.15165 -s 3 -d 0 -p ack -e 40 -c 0 -i 191 -a 0 -x {5.0 0.0 16 ------- null} + -t 1.15165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 209 -a 0 -x {0.0 5.0 24 ------- null} - -t 1.15165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 209 -a 0 -x {0.0 5.0 24 ------- null} h -t 1.15165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 209 -a 0 -x {0.0 5.0 -1 ------- null} - -t 1.1536 -s 3 -d 4 -p cbr -e 500 -c 1 -i 190 -a 1 -x {1.0 6.0 101 ------- null} h -t 1.1536 -s 3 -d 4 -p cbr -e 500 -c 1 -i 190 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.154 -s 1 -d 3 -p cbr -e 500 -c 1 -i 204 -a 1 -x {1.0 6.0 108 ------- null} + -t 1.154 -s 3 -d 4 -p cbr -e 500 -c 1 -i 204 -a 1 -x {1.0 6.0 108 ------- null} - -t 1.1576 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 189 -a 1 -x {2.0 7.0 48 ------- null} h -t 1.1576 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 189 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.1596 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 178 -a 1 -x {2.0 7.0 45 ------- null} + -t 1.1596 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 178 -a 1 -x {2.0 7.0 45 ------- null} - -t 1.1596 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 178 -a 1 -x {2.0 7.0 45 ------- null} h -t 1.1596 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 178 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 210 -a 1 -x {2.0 7.0 53 ------- null} - -t 1.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 210 -a 1 -x {2.0 7.0 53 ------- null} h -t 1.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 210 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 211 -a 1 -x {1.0 6.0 111 ------- null} - -t 1.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 211 -a 1 -x {1.0 6.0 111 ------- null} h -t 1.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 211 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.1636 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 174 -a 1 -x {2.0 7.0 44 ------- null} r -t 1.164 -s 1 -d 3 -p cbr -e 500 -c 1 -i 206 -a 1 -x {1.0 6.0 109 ------- null} + -t 1.164 -s 3 -d 4 -p cbr -e 500 -c 1 -i 206 -a 1 -x {1.0 6.0 109 ------- null} r -t 1.1652 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 177 -a 0 -x {0.0 5.0 21 ------- null} + -t 1.1652 -s 5 -d 4 -p ack -e 40 -c 0 -i 212 -a 0 -x {5.0 0.0 21 ------- null} - -t 1.1652 -s 5 -d 4 -p ack -e 40 -c 0 -i 212 -a 0 -x {5.0 0.0 21 ------- null} h -t 1.1652 -s 5 -d 4 -p ack -e 40 -c 0 -i 212 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.16526 -s 5 -d 4 -p ack -e 40 -c 0 -i 207 -a 0 -x {5.0 0.0 20 ------- null} + -t 1.16526 -s 4 -d 3 -p ack -e 40 -c 0 -i 207 -a 0 -x {5.0 0.0 20 ------- null} - -t 1.16526 -s 4 -d 3 -p ack -e 40 -c 0 -i 207 -a 0 -x {5.0 0.0 20 ------- null} h -t 1.16526 -s 4 -d 3 -p ack -e 40 -c 0 -i 207 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.1656 -s 3 -d 4 -p cbr -e 500 -c 1 -i 192 -a 1 -x {1.0 6.0 102 ------- null} h -t 1.1656 -s 3 -d 4 -p cbr -e 500 -c 1 -i 192 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.1676 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 180 -a 0 -x {0.0 5.0 22 ------- null} + -t 1.1676 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 180 -a 0 -x {0.0 5.0 22 ------- null} - -t 1.1676 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 180 -a 0 -x {0.0 5.0 22 ------- null} h -t 1.1676 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 180 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.16765 -s 3 -d 0 -p ack -e 40 -c 0 -i 193 -a 0 -x {5.0 0.0 17 ------- null} + -t 1.16765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 213 -a 0 -x {0.0 5.0 25 ------- null} - -t 1.16765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 213 -a 0 -x {0.0 5.0 25 ------- null} h -t 1.16765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 213 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.168 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 205 -a 1 -x {2.0 7.0 52 ------- null} + -t 1.168 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 205 -a 1 -x {2.0 7.0 52 ------- null} - -t 1.1696 -s 3 -d 4 -p cbr -e 500 -c 1 -i 195 -a 1 -x {1.0 6.0 103 ------- null} h -t 1.1696 -s 3 -d 4 -p cbr -e 500 -c 1 -i 195 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 214 -a 1 -x {1.0 6.0 112 ------- null} - -t 1.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 214 -a 1 -x {1.0 6.0 112 ------- null} h -t 1.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 214 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.17158 -s 4 -d 3 -p ack -e 40 -c 0 -i 199 -a 0 -x {5.0 0.0 18 ------- null} + -t 1.17158 -s 3 -d 0 -p ack -e 40 -c 0 -i 199 -a 0 -x {5.0 0.0 18 ------- null} - -t 1.17158 -s 3 -d 0 -p ack -e 40 -c 0 -i 199 -a 0 -x {5.0 0.0 18 ------- null} h -t 1.17158 -s 3 -d 0 -p ack -e 40 -c 0 -i 199 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.1716 -s 3 -d 4 -p cbr -e 500 -c 1 -i 181 -a 1 -x {1.0 6.0 96 ------- null} + -t 1.1716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 181 -a 1 -x {1.0 6.0 96 ------- null} - -t 1.1716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 181 -a 1 -x {1.0 6.0 96 ------- null} h -t 1.1716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 181 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.1716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 176 -a 1 -x {1.0 6.0 94 ------- null} r -t 1.17325 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 209 -a 0 -x {0.0 5.0 24 ------- null} + -t 1.17325 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 209 -a 0 -x {0.0 5.0 24 ------- null} - -t 1.1736 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 194 -a 1 -x {2.0 7.0 49 ------- null} h -t 1.1736 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 194 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.174 -s 1 -d 3 -p cbr -e 500 -c 1 -i 208 -a 1 -x {1.0 6.0 110 ------- null} + -t 1.174 -s 3 -d 4 -p cbr -e 500 -c 1 -i 208 -a 1 -x {1.0 6.0 110 ------- null} r -t 1.1756 -s 4 -d 6 -p cbr -e 500 -c 1 -i 179 -a 1 -x {1.0 6.0 95 ------- null} r -t 1.1796 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {0.0 5.0 23 ------- null} + -t 1.1796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {0.0 5.0 23 ------- null} - -t 1.1796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {0.0 5.0 23 ------- null} h -t 1.1796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {0.0 5.0 -1 ------- null} + -t 1.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 215 -a 1 -x {2.0 7.0 54 ------- null} - -t 1.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 215 -a 1 -x {2.0 7.0 54 ------- null} h -t 1.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 215 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 216 -a 1 -x {1.0 6.0 113 ------- null} - -t 1.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 216 -a 1 -x {1.0 6.0 113 ------- null} h -t 1.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 216 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.1816 -s 3 -d 4 -p cbr -e 500 -c 1 -i 196 -a 1 -x {1.0 6.0 104 ------- null} h -t 1.1816 -s 3 -d 4 -p cbr -e 500 -c 1 -i 196 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.1836 -s 3 -d 4 -p cbr -e 500 -c 1 -i 184 -a 1 -x {1.0 6.0 97 ------- null} + -t 1.1836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 184 -a 1 -x {1.0 6.0 97 ------- null} - -t 1.1836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 184 -a 1 -x {1.0 6.0 97 ------- null} h -t 1.1836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 184 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.184 -s 1 -d 3 -p cbr -e 500 -c 1 -i 211 -a 1 -x {1.0 6.0 111 ------- null} + -t 1.184 -s 3 -d 4 -p cbr -e 500 -c 1 -i 211 -a 1 -x {1.0 6.0 111 ------- null} r -t 1.18526 -s 5 -d 4 -p ack -e 40 -c 0 -i 212 -a 0 -x {5.0 0.0 21 ------- null} + -t 1.18526 -s 4 -d 3 -p ack -e 40 -c 0 -i 212 -a 0 -x {5.0 0.0 21 ------- null} - -t 1.18526 -s 4 -d 3 -p ack -e 40 -c 0 -i 212 -a 0 -x {5.0 0.0 21 ------- null} h -t 1.18526 -s 4 -d 3 -p ack -e 40 -c 0 -i 212 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.1856 -s 3 -d 4 -p cbr -e 500 -c 1 -i 198 -a 1 -x {1.0 6.0 105 ------- null} h -t 1.1856 -s 3 -d 4 -p cbr -e 500 -c 1 -i 198 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.1876 -s 3 -d 4 -p cbr -e 500 -c 1 -i 185 -a 1 -x {1.0 6.0 98 ------- null} + -t 1.1876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 185 -a 1 -x {1.0 6.0 98 ------- null} r -t 1.1876 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 178 -a 1 -x {2.0 7.0 45 ------- null} - -t 1.1876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 185 -a 1 -x {1.0 6.0 98 ------- null} h -t 1.1876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 185 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.188 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 210 -a 1 -x {2.0 7.0 53 ------- null} + -t 1.188 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 210 -a 1 -x {2.0 7.0 53 ------- null} r -t 1.1892 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 180 -a 0 -x {0.0 5.0 22 ------- null} + -t 1.1892 -s 5 -d 4 -p ack -e 40 -c 0 -i 217 -a 0 -x {5.0 0.0 22 ------- null} - -t 1.1892 -s 5 -d 4 -p ack -e 40 -c 0 -i 217 -a 0 -x {5.0 0.0 22 ------- null} h -t 1.1892 -s 5 -d 4 -p ack -e 40 -c 0 -i 217 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.18925 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 213 -a 0 -x {0.0 5.0 25 ------- null} + -t 1.18925 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 213 -a 0 -x {0.0 5.0 25 ------- null} - -t 1.1896 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 197 -a 1 -x {2.0 7.0 50 ------- null} h -t 1.1896 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 197 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 218 -a 1 -x {1.0 6.0 114 ------- null} - -t 1.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 218 -a 1 -x {1.0 6.0 114 ------- null} h -t 1.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 218 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.19158 -s 4 -d 3 -p ack -e 40 -c 0 -i 203 -a 0 -x {5.0 0.0 19 ------- null} + -t 1.19158 -s 3 -d 0 -p ack -e 40 -c 0 -i 203 -a 0 -x {5.0 0.0 19 ------- null} - -t 1.19158 -s 3 -d 0 -p ack -e 40 -c 0 -i 203 -a 0 -x {5.0 0.0 19 ------- null} h -t 1.19158 -s 3 -d 0 -p ack -e 40 -c 0 -i 203 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.1916 -s 3 -d 4 -p cbr -e 500 -c 1 -i 187 -a 1 -x {1.0 6.0 99 ------- null} + -t 1.1916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 187 -a 1 -x {1.0 6.0 99 ------- null} - -t 1.1916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 187 -a 1 -x {1.0 6.0 99 ------- null} h -t 1.1916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 187 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.19165 -s 3 -d 0 -p ack -e 40 -c 0 -i 199 -a 0 -x {5.0 0.0 18 ------- null} + -t 1.19165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 219 -a 0 -x {0.0 5.0 26 ------- null} - -t 1.19165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 219 -a 0 -x {0.0 5.0 26 ------- null} h -t 1.19165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 219 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.194 -s 1 -d 3 -p cbr -e 500 -c 1 -i 214 -a 1 -x {1.0 6.0 112 ------- null} + -t 1.194 -s 3 -d 4 -p cbr -e 500 -c 1 -i 214 -a 1 -x {1.0 6.0 112 ------- null} r -t 1.1956 -s 4 -d 6 -p cbr -e 500 -c 1 -i 181 -a 1 -x {1.0 6.0 96 ------- null} - -t 1.1976 -s 3 -d 4 -p cbr -e 500 -c 1 -i 200 -a 1 -x {1.0 6.0 106 ------- null} h -t 1.1976 -s 3 -d 4 -p cbr -e 500 -c 1 -i 200 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.1996 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 186 -a 1 -x {2.0 7.0 47 ------- null} + -t 1.1996 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 186 -a 1 -x {2.0 7.0 47 ------- null} - -t 1.1996 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 186 -a 1 -x {2.0 7.0 47 ------- null} h -t 1.1996 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 186 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 220 -a 1 -x {2.0 7.0 55 ------- null} - -t 1.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 220 -a 1 -x {2.0 7.0 55 ------- null} h -t 1.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 220 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 221 -a 1 -x {1.0 6.0 115 ------- null} - -t 1.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 221 -a 1 -x {1.0 6.0 115 ------- null} h -t 1.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 221 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.2012 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {0.0 5.0 23 ------- null} + -t 1.2012 -s 5 -d 4 -p ack -e 40 -c 0 -i 222 -a 0 -x {5.0 0.0 23 ------- null} - -t 1.2012 -s 5 -d 4 -p ack -e 40 -c 0 -i 222 -a 0 -x {5.0 0.0 23 ------- null} h -t 1.2012 -s 5 -d 4 -p ack -e 40 -c 0 -i 222 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.2016 -s 3 -d 4 -p cbr -e 500 -c 1 -i 202 -a 1 -x {1.0 6.0 107 ------- null} h -t 1.2016 -s 3 -d 4 -p cbr -e 500 -c 1 -i 202 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.2036 -s 3 -d 4 -p cbr -e 500 -c 1 -i 188 -a 1 -x {1.0 6.0 100 ------- null} + -t 1.2036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 188 -a 1 -x {1.0 6.0 100 ------- null} - -t 1.2036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 188 -a 1 -x {1.0 6.0 100 ------- null} h -t 1.2036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 188 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.204 -s 1 -d 3 -p cbr -e 500 -c 1 -i 216 -a 1 -x {1.0 6.0 113 ------- null} + -t 1.204 -s 3 -d 4 -p cbr -e 500 -c 1 -i 216 -a 1 -x {1.0 6.0 113 ------- null} - -t 1.2056 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 201 -a 1 -x {2.0 7.0 51 ------- null} h -t 1.2056 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 201 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.2076 -s 3 -d 4 -p cbr -e 500 -c 1 -i 190 -a 1 -x {1.0 6.0 101 ------- null} + -t 1.2076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 190 -a 1 -x {1.0 6.0 101 ------- null} r -t 1.2076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 184 -a 1 -x {1.0 6.0 97 ------- null} - -t 1.2076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 190 -a 1 -x {1.0 6.0 101 ------- null} h -t 1.2076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 190 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.208 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 215 -a 1 -x {2.0 7.0 54 ------- null} + -t 1.208 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 215 -a 1 -x {2.0 7.0 54 ------- null} r -t 1.20926 -s 5 -d 4 -p ack -e 40 -c 0 -i 217 -a 0 -x {5.0 0.0 22 ------- null} + -t 1.20926 -s 4 -d 3 -p ack -e 40 -c 0 -i 217 -a 0 -x {5.0 0.0 22 ------- null} - -t 1.20926 -s 4 -d 3 -p ack -e 40 -c 0 -i 217 -a 0 -x {5.0 0.0 22 ------- null} h -t 1.20926 -s 4 -d 3 -p ack -e 40 -c 0 -i 217 -a 0 -x {5.0 0.0 -1 ------- null} + -t 1.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 223 -a 1 -x {1.0 6.0 116 ------- null} - -t 1.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 223 -a 1 -x {1.0 6.0 116 ------- null} h -t 1.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 223 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.2116 -s 4 -d 6 -p cbr -e 500 -c 1 -i 185 -a 1 -x {1.0 6.0 98 ------- null} r -t 1.21165 -s 3 -d 0 -p ack -e 40 -c 0 -i 203 -a 0 -x {5.0 0.0 19 ------- null} + -t 1.21165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {0.0 5.0 27 ------- null} - -t 1.21165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {0.0 5.0 27 ------- null} h -t 1.21165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.21325 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 219 -a 0 -x {0.0 5.0 26 ------- null} + -t 1.21325 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 219 -a 0 -x {0.0 5.0 26 ------- null} - -t 1.2136 -s 3 -d 4 -p cbr -e 500 -c 1 -i 204 -a 1 -x {1.0 6.0 108 ------- null} h -t 1.2136 -s 3 -d 4 -p cbr -e 500 -c 1 -i 204 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.214 -s 1 -d 3 -p cbr -e 500 -c 1 -i 218 -a 1 -x {1.0 6.0 114 ------- null} + -t 1.214 -s 3 -d 4 -p cbr -e 500 -c 1 -i 218 -a 1 -x {1.0 6.0 114 ------- null} r -t 1.21558 -s 4 -d 3 -p ack -e 40 -c 0 -i 207 -a 0 -x {5.0 0.0 20 ------- null} + -t 1.21558 -s 3 -d 0 -p ack -e 40 -c 0 -i 207 -a 0 -x {5.0 0.0 20 ------- null} - -t 1.21558 -s 3 -d 0 -p ack -e 40 -c 0 -i 207 -a 0 -x {5.0 0.0 20 ------- null} h -t 1.21558 -s 3 -d 0 -p ack -e 40 -c 0 -i 207 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.2156 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 189 -a 1 -x {2.0 7.0 48 ------- null} + -t 1.2156 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 189 -a 1 -x {2.0 7.0 48 ------- null} - -t 1.2156 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 189 -a 1 -x {2.0 7.0 48 ------- null} h -t 1.2156 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 189 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.2156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 187 -a 1 -x {1.0 6.0 99 ------- null} - -t 1.2176 -s 3 -d 4 -p cbr -e 500 -c 1 -i 206 -a 1 -x {1.0 6.0 109 ------- null} h -t 1.2176 -s 3 -d 4 -p cbr -e 500 -c 1 -i 206 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.2196 -s 3 -d 4 -p cbr -e 500 -c 1 -i 192 -a 1 -x {1.0 6.0 102 ------- null} + -t 1.2196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 192 -a 1 -x {1.0 6.0 102 ------- null} - -t 1.2196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 192 -a 1 -x {1.0 6.0 102 ------- null} h -t 1.2196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 192 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 225 -a 1 -x {2.0 7.0 56 ------- null} - -t 1.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 225 -a 1 -x {2.0 7.0 56 ------- null} h -t 1.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 225 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 226 -a 1 -x {1.0 6.0 117 ------- null} - -t 1.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 226 -a 1 -x {1.0 6.0 117 ------- null} h -t 1.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 226 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.22126 -s 5 -d 4 -p ack -e 40 -c 0 -i 222 -a 0 -x {5.0 0.0 23 ------- null} + -t 1.22126 -s 4 -d 3 -p ack -e 40 -c 0 -i 222 -a 0 -x {5.0 0.0 23 ------- null} - -t 1.22126 -s 4 -d 3 -p ack -e 40 -c 0 -i 222 -a 0 -x {5.0 0.0 23 ------- null} h -t 1.22126 -s 4 -d 3 -p ack -e 40 -c 0 -i 222 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.2216 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 205 -a 1 -x {2.0 7.0 52 ------- null} h -t 1.2216 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 205 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.2236 -s 3 -d 4 -p cbr -e 500 -c 1 -i 195 -a 1 -x {1.0 6.0 103 ------- null} + -t 1.2236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 195 -a 1 -x {1.0 6.0 103 ------- null} - -t 1.2236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 195 -a 1 -x {1.0 6.0 103 ------- null} h -t 1.2236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 195 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.224 -s 1 -d 3 -p cbr -e 500 -c 1 -i 221 -a 1 -x {1.0 6.0 115 ------- null} + -t 1.224 -s 3 -d 4 -p cbr -e 500 -c 1 -i 221 -a 1 -x {1.0 6.0 115 ------- null} r -t 1.2276 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 186 -a 1 -x {2.0 7.0 47 ------- null} r -t 1.2276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 188 -a 1 -x {1.0 6.0 100 ------- null} r -t 1.228 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 220 -a 1 -x {2.0 7.0 55 ------- null} + -t 1.228 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 220 -a 1 -x {2.0 7.0 55 ------- null} - -t 1.2296 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 209 -a 0 -x {0.0 5.0 24 ------- null} h -t 1.2296 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 209 -a 0 -x {0.0 5.0 -1 ------- null} + -t 1.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 227 -a 1 -x {1.0 6.0 118 ------- null} - -t 1.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 227 -a 1 -x {1.0 6.0 118 ------- null} h -t 1.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 227 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.2316 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 194 -a 1 -x {2.0 7.0 49 ------- null} + -t 1.2316 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 194 -a 1 -x {2.0 7.0 49 ------- null} - -t 1.2316 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 194 -a 1 -x {2.0 7.0 49 ------- null} h -t 1.2316 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 194 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.2316 -s 4 -d 6 -p cbr -e 500 -c 1 -i 190 -a 1 -x {1.0 6.0 101 ------- null} r -t 1.23325 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {0.0 5.0 27 ------- null} + -t 1.23325 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {0.0 5.0 27 ------- null} r -t 1.234 -s 1 -d 3 -p cbr -e 500 -c 1 -i 223 -a 1 -x {1.0 6.0 116 ------- null} + -t 1.234 -s 3 -d 4 -p cbr -e 500 -c 1 -i 223 -a 1 -x {1.0 6.0 116 ------- null} r -t 1.23558 -s 4 -d 3 -p ack -e 40 -c 0 -i 212 -a 0 -x {5.0 0.0 21 ------- null} + -t 1.23558 -s 3 -d 0 -p ack -e 40 -c 0 -i 212 -a 0 -x {5.0 0.0 21 ------- null} - -t 1.23558 -s 3 -d 0 -p ack -e 40 -c 0 -i 212 -a 0 -x {5.0 0.0 21 ------- null} h -t 1.23558 -s 3 -d 0 -p ack -e 40 -c 0 -i 212 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.2356 -s 3 -d 4 -p cbr -e 500 -c 1 -i 196 -a 1 -x {1.0 6.0 104 ------- null} + -t 1.2356 -s 4 -d 6 -p cbr -e 500 -c 1 -i 196 -a 1 -x {1.0 6.0 104 ------- null} - -t 1.2356 -s 4 -d 6 -p cbr -e 500 -c 1 -i 196 -a 1 -x {1.0 6.0 104 ------- null} h -t 1.2356 -s 4 -d 6 -p cbr -e 500 -c 1 -i 196 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.23565 -s 3 -d 0 -p ack -e 40 -c 0 -i 207 -a 0 -x {5.0 0.0 20 ------- null} + -t 1.23565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0 5.0 28 ------- null} - -t 1.23565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0 5.0 28 ------- null} h -t 1.23565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0 5.0 -1 ------- null} - -t 1.2376 -s 3 -d 4 -p cbr -e 500 -c 1 -i 208 -a 1 -x {1.0 6.0 110 ------- null} h -t 1.2376 -s 3 -d 4 -p cbr -e 500 -c 1 -i 208 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.2396 -s 3 -d 4 -p cbr -e 500 -c 1 -i 198 -a 1 -x {1.0 6.0 105 ------- null} + -t 1.2396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 198 -a 1 -x {1.0 6.0 105 ------- null} - -t 1.2396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 198 -a 1 -x {1.0 6.0 105 ------- null} h -t 1.2396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 198 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 229 -a 1 -x {2.0 7.0 57 ------- null} - -t 1.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 229 -a 1 -x {2.0 7.0 57 ------- null} h -t 1.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 229 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 230 -a 1 -x {1.0 6.0 119 ------- null} - -t 1.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 230 -a 1 -x {1.0 6.0 119 ------- null} h -t 1.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 230 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.2416 -s 3 -d 4 -p cbr -e 500 -c 1 -i 211 -a 1 -x {1.0 6.0 111 ------- null} h -t 1.2416 -s 3 -d 4 -p cbr -e 500 -c 1 -i 211 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.2436 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 189 -a 1 -x {2.0 7.0 48 ------- null} r -t 1.2436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 192 -a 1 -x {1.0 6.0 102 ------- null} r -t 1.244 -s 1 -d 3 -p cbr -e 500 -c 1 -i 226 -a 1 -x {1.0 6.0 117 ------- null} + -t 1.244 -s 3 -d 4 -p cbr -e 500 -c 1 -i 226 -a 1 -x {1.0 6.0 117 ------- null} - -t 1.2456 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 210 -a 1 -x {2.0 7.0 53 ------- null} h -t 1.2456 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 210 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.2476 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 197 -a 1 -x {2.0 7.0 50 ------- null} + -t 1.2476 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 197 -a 1 -x {2.0 7.0 50 ------- null} - -t 1.2476 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 197 -a 1 -x {2.0 7.0 50 ------- null} h -t 1.2476 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 197 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.2476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 195 -a 1 -x {1.0 6.0 103 ------- null} r -t 1.248 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 225 -a 1 -x {2.0 7.0 56 ------- null} + -t 1.248 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 225 -a 1 -x {2.0 7.0 56 ------- null} + -t 1.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 231 -a 1 -x {1.0 6.0 120 ------- null} - -t 1.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 231 -a 1 -x {1.0 6.0 120 ------- null} h -t 1.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 231 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.2516 -s 3 -d 4 -p cbr -e 500 -c 1 -i 200 -a 1 -x {1.0 6.0 106 ------- null} + -t 1.2516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 200 -a 1 -x {1.0 6.0 106 ------- null} - -t 1.2516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 200 -a 1 -x {1.0 6.0 106 ------- null} h -t 1.2516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 200 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.2536 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 213 -a 0 -x {0.0 5.0 25 ------- null} h -t 1.2536 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 213 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.254 -s 1 -d 3 -p cbr -e 500 -c 1 -i 227 -a 1 -x {1.0 6.0 118 ------- null} + -t 1.254 -s 3 -d 4 -p cbr -e 500 -c 1 -i 227 -a 1 -x {1.0 6.0 118 ------- null} r -t 1.2556 -s 3 -d 4 -p cbr -e 500 -c 1 -i 202 -a 1 -x {1.0 6.0 107 ------- null} + -t 1.2556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 202 -a 1 -x {1.0 6.0 107 ------- null} - -t 1.2556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 202 -a 1 -x {1.0 6.0 107 ------- null} h -t 1.2556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 202 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.25565 -s 3 -d 0 -p ack -e 40 -c 0 -i 212 -a 0 -x {5.0 0.0 21 ------- null} + -t 1.25565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {0.0 5.0 29 ------- null} - -t 1.25565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {0.0 5.0 29 ------- null} h -t 1.25565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.25725 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0 5.0 28 ------- null} + -t 1.25725 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0 5.0 28 ------- null} r -t 1.25958 -s 4 -d 3 -p ack -e 40 -c 0 -i 217 -a 0 -x {5.0 0.0 22 ------- null} + -t 1.25958 -s 3 -d 0 -p ack -e 40 -c 0 -i 217 -a 0 -x {5.0 0.0 22 ------- null} - -t 1.25958 -s 3 -d 0 -p ack -e 40 -c 0 -i 217 -a 0 -x {5.0 0.0 22 ------- null} h -t 1.25958 -s 3 -d 0 -p ack -e 40 -c 0 -i 217 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.2596 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 194 -a 1 -x {2.0 7.0 49 ------- null} r -t 1.2596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 196 -a 1 -x {1.0 6.0 104 ------- null} + -t 1.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 233 -a 1 -x {2.0 7.0 58 ------- null} - -t 1.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 233 -a 1 -x {2.0 7.0 58 ------- null} h -t 1.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 233 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 234 -a 1 -x {1.0 6.0 121 ------- null} - -t 1.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 234 -a 1 -x {1.0 6.0 121 ------- null} h -t 1.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 234 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.2616 -s 3 -d 4 -p cbr -e 500 -c 1 -i 214 -a 1 -x {1.0 6.0 112 ------- null} h -t 1.2616 -s 3 -d 4 -p cbr -e 500 -c 1 -i 214 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.2636 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 201 -a 1 -x {2.0 7.0 51 ------- null} + -t 1.2636 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 201 -a 1 -x {2.0 7.0 51 ------- null} - -t 1.2636 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 201 -a 1 -x {2.0 7.0 51 ------- null} h -t 1.2636 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 201 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.2636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 198 -a 1 -x {1.0 6.0 105 ------- null} r -t 1.264 -s 1 -d 3 -p cbr -e 500 -c 1 -i 230 -a 1 -x {1.0 6.0 119 ------- null} + -t 1.264 -s 3 -d 4 -p cbr -e 500 -c 1 -i 230 -a 1 -x {1.0 6.0 119 ------- null} - -t 1.2656 -s 3 -d 4 -p cbr -e 500 -c 1 -i 216 -a 1 -x {1.0 6.0 113 ------- null} h -t 1.2656 -s 3 -d 4 -p cbr -e 500 -c 1 -i 216 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.2676 -s 3 -d 4 -p cbr -e 500 -c 1 -i 204 -a 1 -x {1.0 6.0 108 ------- null} + -t 1.2676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 204 -a 1 -x {1.0 6.0 108 ------- null} - -t 1.2676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 204 -a 1 -x {1.0 6.0 108 ------- null} h -t 1.2676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 204 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.268 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 229 -a 1 -x {2.0 7.0 57 ------- null} + -t 1.268 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 229 -a 1 -x {2.0 7.0 57 ------- null} - -t 1.2696 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 215 -a 1 -x {2.0 7.0 54 ------- null} h -t 1.2696 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 215 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 235 -a 1 -x {1.0 6.0 122 ------- null} - -t 1.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 235 -a 1 -x {1.0 6.0 122 ------- null} h -t 1.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 235 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.27158 -s 4 -d 3 -p ack -e 40 -c 0 -i 222 -a 0 -x {5.0 0.0 23 ------- null} + -t 1.27158 -s 3 -d 0 -p ack -e 40 -c 0 -i 222 -a 0 -x {5.0 0.0 23 ------- null} - -t 1.27158 -s 3 -d 0 -p ack -e 40 -c 0 -i 222 -a 0 -x {5.0 0.0 23 ------- null} h -t 1.27158 -s 3 -d 0 -p ack -e 40 -c 0 -i 222 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.2716 -s 3 -d 4 -p cbr -e 500 -c 1 -i 206 -a 1 -x {1.0 6.0 109 ------- null} + -t 1.2716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 206 -a 1 -x {1.0 6.0 109 ------- null} - -t 1.2716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 206 -a 1 -x {1.0 6.0 109 ------- null} h -t 1.2716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 206 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.274 -s 1 -d 3 -p cbr -e 500 -c 1 -i 231 -a 1 -x {1.0 6.0 120 ------- null} + -t 1.274 -s 3 -d 4 -p cbr -e 500 -c 1 -i 231 -a 1 -x {1.0 6.0 120 ------- null} r -t 1.2756 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 197 -a 1 -x {2.0 7.0 50 ------- null} r -t 1.2756 -s 4 -d 6 -p cbr -e 500 -c 1 -i 200 -a 1 -x {1.0 6.0 106 ------- null} r -t 1.27725 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {0.0 5.0 29 ------- null} + -t 1.27725 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {0.0 5.0 29 ------- null} - -t 1.2776 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 219 -a 0 -x {0.0 5.0 26 ------- null} h -t 1.2776 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 219 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.2796 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 205 -a 1 -x {2.0 7.0 52 ------- null} + -t 1.2796 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 205 -a 1 -x {2.0 7.0 52 ------- null} - -t 1.2796 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 205 -a 1 -x {2.0 7.0 52 ------- null} h -t 1.2796 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 205 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.2796 -s 4 -d 6 -p cbr -e 500 -c 1 -i 202 -a 1 -x {1.0 6.0 107 ------- null} r -t 1.27965 -s 3 -d 0 -p ack -e 40 -c 0 -i 217 -a 0 -x {5.0 0.0 22 ------- null} + -t 1.27965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {0.0 5.0 30 ------- null} - -t 1.27965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {0.0 5.0 30 ------- null} h -t 1.27965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {0.0 5.0 -1 ------- null} + -t 1.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 237 -a 1 -x {2.0 7.0 59 ------- null} - -t 1.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 237 -a 1 -x {2.0 7.0 59 ------- null} h -t 1.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 237 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 238 -a 1 -x {1.0 6.0 123 ------- null} - -t 1.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 238 -a 1 -x {1.0 6.0 123 ------- null} h -t 1.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 238 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.284 -s 1 -d 3 -p cbr -e 500 -c 1 -i 234 -a 1 -x {1.0 6.0 121 ------- null} + -t 1.284 -s 3 -d 4 -p cbr -e 500 -c 1 -i 234 -a 1 -x {1.0 6.0 121 ------- null} - -t 1.2856 -s 3 -d 4 -p cbr -e 500 -c 1 -i 218 -a 1 -x {1.0 6.0 114 ------- null} h -t 1.2856 -s 3 -d 4 -p cbr -e 500 -c 1 -i 218 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.2876 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 209 -a 0 -x {0.0 5.0 24 ------- null} + -t 1.2876 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 209 -a 0 -x {0.0 5.0 24 ------- null} - -t 1.2876 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 209 -a 0 -x {0.0 5.0 24 ------- null} h -t 1.2876 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 209 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.288 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 233 -a 1 -x {2.0 7.0 58 ------- null} + -t 1.288 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 233 -a 1 -x {2.0 7.0 58 ------- null} - -t 1.2896 -s 3 -d 4 -p cbr -e 500 -c 1 -i 221 -a 1 -x {1.0 6.0 115 ------- null} h -t 1.2896 -s 3 -d 4 -p cbr -e 500 -c 1 -i 221 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 239 -a 1 -x {1.0 6.0 124 ------- null} - -t 1.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 239 -a 1 -x {1.0 6.0 124 ------- null} h -t 1.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 239 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.2916 -s 3 -d 4 -p cbr -e 500 -c 1 -i 208 -a 1 -x {1.0 6.0 110 ------- null} + -t 1.2916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 208 -a 1 -x {1.0 6.0 110 ------- null} - -t 1.2916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 208 -a 1 -x {1.0 6.0 110 ------- null} h -t 1.2916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 208 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.2916 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 201 -a 1 -x {2.0 7.0 51 ------- null} r -t 1.2916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 204 -a 1 -x {1.0 6.0 108 ------- null} r -t 1.29165 -s 3 -d 0 -p ack -e 40 -c 0 -i 222 -a 0 -x {5.0 0.0 23 ------- null} + -t 1.29165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {0.0 5.0 31 ------- null} - -t 1.29165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {0.0 5.0 31 ------- null} h -t 1.29165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {0.0 5.0 -1 ------- null} - -t 1.2936 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 220 -a 1 -x {2.0 7.0 55 ------- null} h -t 1.2936 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 220 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.294 -s 1 -d 3 -p cbr -e 500 -c 1 -i 235 -a 1 -x {1.0 6.0 122 ------- null} + -t 1.294 -s 3 -d 4 -p cbr -e 500 -c 1 -i 235 -a 1 -x {1.0 6.0 122 ------- null} r -t 1.2956 -s 3 -d 4 -p cbr -e 500 -c 1 -i 211 -a 1 -x {1.0 6.0 111 ------- null} + -t 1.2956 -s 4 -d 6 -p cbr -e 500 -c 1 -i 211 -a 1 -x {1.0 6.0 111 ------- null} r -t 1.2956 -s 4 -d 6 -p cbr -e 500 -c 1 -i 206 -a 1 -x {1.0 6.0 109 ------- null} - -t 1.2956 -s 4 -d 6 -p cbr -e 500 -c 1 -i 211 -a 1 -x {1.0 6.0 111 ------- null} h -t 1.2956 -s 4 -d 6 -p cbr -e 500 -c 1 -i 211 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 241 -a 1 -x {2.0 7.0 60 ------- null} - -t 1.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 241 -a 1 -x {2.0 7.0 60 ------- null} h -t 1.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 241 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.3 -s 1 -d 3 -p cbr -e 500 -c 1 -i 242 -a 1 -x {1.0 6.0 125 ------- null} - -t 1.3 -s 1 -d 3 -p cbr -e 500 -c 1 -i 242 -a 1 -x {1.0 6.0 125 ------- null} h -t 1.3 -s 1 -d 3 -p cbr -e 500 -c 1 -i 242 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.30125 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {0.0 5.0 30 ------- null} + -t 1.30125 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {0.0 5.0 30 ------- null} - -t 1.3016 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {0.0 5.0 27 ------- null} h -t 1.3016 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.3036 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 210 -a 1 -x {2.0 7.0 53 ------- null} + -t 1.3036 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 210 -a 1 -x {2.0 7.0 53 ------- null} - -t 1.3036 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 210 -a 1 -x {2.0 7.0 53 ------- null} h -t 1.3036 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 210 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.304 -s 1 -d 3 -p cbr -e 500 -c 1 -i 238 -a 1 -x {1.0 6.0 123 ------- null} + -t 1.304 -s 3 -d 4 -p cbr -e 500 -c 1 -i 238 -a 1 -x {1.0 6.0 123 ------- null} r -t 1.3076 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 205 -a 1 -x {2.0 7.0 52 ------- null} r -t 1.308 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 237 -a 1 -x {2.0 7.0 59 ------- null} + -t 1.308 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 237 -a 1 -x {2.0 7.0 59 ------- null} d -t 1.308 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 237 -a 1 -x {2.0 7.0 59 ------- null} r -t 1.3092 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 209 -a 0 -x {0.0 5.0 24 ------- null} + -t 1.3092 -s 5 -d 4 -p ack -e 40 -c 0 -i 243 -a 0 -x {5.0 0.0 24 ------- null} - -t 1.3092 -s 5 -d 4 -p ack -e 40 -c 0 -i 243 -a 0 -x {5.0 0.0 24 ------- null} h -t 1.3092 -s 5 -d 4 -p ack -e 40 -c 0 -i 243 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.3096 -s 3 -d 4 -p cbr -e 500 -c 1 -i 223 -a 1 -x {1.0 6.0 116 ------- null} h -t 1.3096 -s 3 -d 4 -p cbr -e 500 -c 1 -i 223 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.31 -s 1 -d 3 -p cbr -e 500 -c 1 -i 244 -a 1 -x {1.0 6.0 126 ------- null} - -t 1.31 -s 1 -d 3 -p cbr -e 500 -c 1 -i 244 -a 1 -x {1.0 6.0 126 ------- null} h -t 1.31 -s 1 -d 3 -p cbr -e 500 -c 1 -i 244 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.3116 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 213 -a 0 -x {0.0 5.0 25 ------- null} + -t 1.3116 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 213 -a 0 -x {0.0 5.0 25 ------- null} - -t 1.3116 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 213 -a 0 -x {0.0 5.0 25 ------- null} h -t 1.3116 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 213 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.31325 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {0.0 5.0 31 ------- null} + -t 1.31325 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {0.0 5.0 31 ------- null} - -t 1.3136 -s 3 -d 4 -p cbr -e 500 -c 1 -i 226 -a 1 -x {1.0 6.0 117 ------- null} h -t 1.3136 -s 3 -d 4 -p cbr -e 500 -c 1 -i 226 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.314 -s 1 -d 3 -p cbr -e 500 -c 1 -i 239 -a 1 -x {1.0 6.0 124 ------- null} + -t 1.314 -s 3 -d 4 -p cbr -e 500 -c 1 -i 239 -a 1 -x {1.0 6.0 124 ------- null} r -t 1.3156 -s 3 -d 4 -p cbr -e 500 -c 1 -i 214 -a 1 -x {1.0 6.0 112 ------- null} + -t 1.3156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 214 -a 1 -x {1.0 6.0 112 ------- null} - -t 1.3156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 214 -a 1 -x {1.0 6.0 112 ------- null} h -t 1.3156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 214 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.3156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 208 -a 1 -x {1.0 6.0 110 ------- null} - -t 1.3176 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 225 -a 1 -x {2.0 7.0 56 ------- null} h -t 1.3176 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 225 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.3196 -s 3 -d 4 -p cbr -e 500 -c 1 -i 216 -a 1 -x {1.0 6.0 113 ------- null} + -t 1.3196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 216 -a 1 -x {1.0 6.0 113 ------- null} r -t 1.3196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 211 -a 1 -x {1.0 6.0 111 ------- null} - -t 1.3196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 216 -a 1 -x {1.0 6.0 113 ------- null} h -t 1.3196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 216 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 245 -a 1 -x {2.0 7.0 61 ------- null} - -t 1.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 245 -a 1 -x {2.0 7.0 61 ------- null} h -t 1.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 245 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.32 -s 1 -d 3 -p cbr -e 500 -c 1 -i 246 -a 1 -x {1.0 6.0 127 ------- null} - -t 1.32 -s 1 -d 3 -p cbr -e 500 -c 1 -i 246 -a 1 -x {1.0 6.0 127 ------- null} h -t 1.32 -s 1 -d 3 -p cbr -e 500 -c 1 -i 246 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.324 -s 1 -d 3 -p cbr -e 500 -c 1 -i 242 -a 1 -x {1.0 6.0 125 ------- null} + -t 1.324 -s 3 -d 4 -p cbr -e 500 -c 1 -i 242 -a 1 -x {1.0 6.0 125 ------- null} - -t 1.3256 -s 3 -d 4 -p cbr -e 500 -c 1 -i 227 -a 1 -x {1.0 6.0 118 ------- null} h -t 1.3256 -s 3 -d 4 -p cbr -e 500 -c 1 -i 227 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.3276 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 215 -a 1 -x {2.0 7.0 54 ------- null} + -t 1.3276 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 215 -a 1 -x {2.0 7.0 54 ------- null} - -t 1.3276 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 215 -a 1 -x {2.0 7.0 54 ------- null} h -t 1.3276 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 215 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.328 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 241 -a 1 -x {2.0 7.0 60 ------- null} + -t 1.328 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 241 -a 1 -x {2.0 7.0 60 ------- null} r -t 1.32926 -s 5 -d 4 -p ack -e 40 -c 0 -i 243 -a 0 -x {5.0 0.0 24 ------- null} + -t 1.32926 -s 4 -d 3 -p ack -e 40 -c 0 -i 243 -a 0 -x {5.0 0.0 24 ------- null} - -t 1.32926 -s 4 -d 3 -p ack -e 40 -c 0 -i 243 -a 0 -x {5.0 0.0 24 ------- null} h -t 1.32926 -s 4 -d 3 -p ack -e 40 -c 0 -i 243 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.3296 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0 5.0 28 ------- null} h -t 1.3296 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0 5.0 -1 ------- null} + -t 1.33 -s 1 -d 3 -p cbr -e 500 -c 1 -i 247 -a 1 -x {1.0 6.0 128 ------- null} - -t 1.33 -s 1 -d 3 -p cbr -e 500 -c 1 -i 247 -a 1 -x {1.0 6.0 128 ------- null} h -t 1.33 -s 1 -d 3 -p cbr -e 500 -c 1 -i 247 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.3316 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 210 -a 1 -x {2.0 7.0 53 ------- null} r -t 1.3332 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 213 -a 0 -x {0.0 5.0 25 ------- null} + -t 1.3332 -s 5 -d 4 -p ack -e 40 -c 0 -i 248 -a 0 -x {5.0 0.0 25 ------- null} - -t 1.3332 -s 5 -d 4 -p ack -e 40 -c 0 -i 248 -a 0 -x {5.0 0.0 25 ------- null} h -t 1.3332 -s 5 -d 4 -p ack -e 40 -c 0 -i 248 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.334 -s 1 -d 3 -p cbr -e 500 -c 1 -i 244 -a 1 -x {1.0 6.0 126 ------- null} + -t 1.334 -s 3 -d 4 -p cbr -e 500 -c 1 -i 244 -a 1 -x {1.0 6.0 126 ------- null} r -t 1.3356 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 219 -a 0 -x {0.0 5.0 26 ------- null} + -t 1.3356 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 219 -a 0 -x {0.0 5.0 26 ------- null} - -t 1.3356 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 219 -a 0 -x {0.0 5.0 26 ------- null} h -t 1.3356 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 219 -a 0 -x {0.0 5.0 -1 ------- null} - -t 1.3376 -s 3 -d 4 -p cbr -e 500 -c 1 -i 230 -a 1 -x {1.0 6.0 119 ------- null} h -t 1.3376 -s 3 -d 4 -p cbr -e 500 -c 1 -i 230 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.3396 -s 3 -d 4 -p cbr -e 500 -c 1 -i 218 -a 1 -x {1.0 6.0 114 ------- null} + -t 1.3396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 218 -a 1 -x {1.0 6.0 114 ------- null} - -t 1.3396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 218 -a 1 -x {1.0 6.0 114 ------- null} h -t 1.3396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 218 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.3396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 214 -a 1 -x {1.0 6.0 112 ------- null} + -t 1.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 249 -a 1 -x {2.0 7.0 62 ------- null} - -t 1.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 249 -a 1 -x {2.0 7.0 62 ------- null} h -t 1.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 249 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.34 -s 1 -d 3 -p cbr -e 500 -c 1 -i 250 -a 1 -x {1.0 6.0 129 ------- null} - -t 1.34 -s 1 -d 3 -p cbr -e 500 -c 1 -i 250 -a 1 -x {1.0 6.0 129 ------- null} h -t 1.34 -s 1 -d 3 -p cbr -e 500 -c 1 -i 250 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.3416 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 229 -a 1 -x {2.0 7.0 57 ------- null} h -t 1.3416 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 229 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.3436 -s 3 -d 4 -p cbr -e 500 -c 1 -i 221 -a 1 -x {1.0 6.0 115 ------- null} + -t 1.3436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 221 -a 1 -x {1.0 6.0 115 ------- null} r -t 1.3436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 216 -a 1 -x {1.0 6.0 113 ------- null} - -t 1.3436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 221 -a 1 -x {1.0 6.0 115 ------- null} h -t 1.3436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 221 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.344 -s 1 -d 3 -p cbr -e 500 -c 1 -i 246 -a 1 -x {1.0 6.0 127 ------- null} + -t 1.344 -s 3 -d 4 -p cbr -e 500 -c 1 -i 246 -a 1 -x {1.0 6.0 127 ------- null} r -t 1.348 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 245 -a 1 -x {2.0 7.0 61 ------- null} + -t 1.348 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 245 -a 1 -x {2.0 7.0 61 ------- null} - -t 1.3496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 231 -a 1 -x {1.0 6.0 120 ------- null} h -t 1.3496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 231 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.35 -s 1 -d 3 -p cbr -e 500 -c 1 -i 251 -a 1 -x {1.0 6.0 130 ------- null} - -t 1.35 -s 1 -d 3 -p cbr -e 500 -c 1 -i 251 -a 1 -x {1.0 6.0 130 ------- null} h -t 1.35 -s 1 -d 3 -p cbr -e 500 -c 1 -i 251 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.3516 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 220 -a 1 -x {2.0 7.0 55 ------- null} + -t 1.3516 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 220 -a 1 -x {2.0 7.0 55 ------- null} - -t 1.3516 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 220 -a 1 -x {2.0 7.0 55 ------- null} h -t 1.3516 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 220 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.35326 -s 5 -d 4 -p ack -e 40 -c 0 -i 248 -a 0 -x {5.0 0.0 25 ------- null} + -t 1.35326 -s 4 -d 3 -p ack -e 40 -c 0 -i 248 -a 0 -x {5.0 0.0 25 ------- null} - -t 1.35326 -s 4 -d 3 -p ack -e 40 -c 0 -i 248 -a 0 -x {5.0 0.0 25 ------- null} h -t 1.35326 -s 4 -d 3 -p ack -e 40 -c 0 -i 248 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.3536 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {0.0 5.0 29 ------- null} h -t 1.3536 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.354 -s 1 -d 3 -p cbr -e 500 -c 1 -i 247 -a 1 -x {1.0 6.0 128 ------- null} + -t 1.354 -s 3 -d 4 -p cbr -e 500 -c 1 -i 247 -a 1 -x {1.0 6.0 128 ------- null} r -t 1.3556 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 215 -a 1 -x {2.0 7.0 54 ------- null} r -t 1.3572 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 219 -a 0 -x {0.0 5.0 26 ------- null} + -t 1.3572 -s 5 -d 4 -p ack -e 40 -c 0 -i 252 -a 0 -x {5.0 0.0 26 ------- null} - -t 1.3572 -s 5 -d 4 -p ack -e 40 -c 0 -i 252 -a 0 -x {5.0 0.0 26 ------- null} h -t 1.3572 -s 5 -d 4 -p ack -e 40 -c 0 -i 252 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.3596 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {0.0 5.0 27 ------- null} + -t 1.3596 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {0.0 5.0 27 ------- null} - -t 1.3596 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {0.0 5.0 27 ------- null} h -t 1.3596 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {0.0 5.0 -1 ------- null} + -t 1.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 253 -a 1 -x {2.0 7.0 63 ------- null} - -t 1.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 253 -a 1 -x {2.0 7.0 63 ------- null} h -t 1.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 253 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.36 -s 1 -d 3 -p cbr -e 500 -c 1 -i 254 -a 1 -x {1.0 6.0 131 ------- null} - -t 1.36 -s 1 -d 3 -p cbr -e 500 -c 1 -i 254 -a 1 -x {1.0 6.0 131 ------- null} h -t 1.36 -s 1 -d 3 -p cbr -e 500 -c 1 -i 254 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.3616 -s 3 -d 4 -p cbr -e 500 -c 1 -i 234 -a 1 -x {1.0 6.0 121 ------- null} h -t 1.3616 -s 3 -d 4 -p cbr -e 500 -c 1 -i 234 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.3636 -s 3 -d 4 -p cbr -e 500 -c 1 -i 223 -a 1 -x {1.0 6.0 116 ------- null} + -t 1.3636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 223 -a 1 -x {1.0 6.0 116 ------- null} - -t 1.3636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 223 -a 1 -x {1.0 6.0 116 ------- null} h -t 1.3636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 223 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.3636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 218 -a 1 -x {1.0 6.0 114 ------- null} r -t 1.364 -s 1 -d 3 -p cbr -e 500 -c 1 -i 250 -a 1 -x {1.0 6.0 129 ------- null} + -t 1.364 -s 3 -d 4 -p cbr -e 500 -c 1 -i 250 -a 1 -x {1.0 6.0 129 ------- null} - -t 1.3656 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 233 -a 1 -x {2.0 7.0 58 ------- null} h -t 1.3656 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 233 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.3676 -s 3 -d 4 -p cbr -e 500 -c 1 -i 226 -a 1 -x {1.0 6.0 117 ------- null} + -t 1.3676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 226 -a 1 -x {1.0 6.0 117 ------- null} r -t 1.3676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 221 -a 1 -x {1.0 6.0 115 ------- null} - -t 1.3676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 226 -a 1 -x {1.0 6.0 117 ------- null} h -t 1.3676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 226 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.368 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 249 -a 1 -x {2.0 7.0 62 ------- null} + -t 1.368 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 249 -a 1 -x {2.0 7.0 62 ------- null} + -t 1.37 -s 1 -d 3 -p cbr -e 500 -c 1 -i 255 -a 1 -x {1.0 6.0 132 ------- null} - -t 1.37 -s 1 -d 3 -p cbr -e 500 -c 1 -i 255 -a 1 -x {1.0 6.0 132 ------- null} h -t 1.37 -s 1 -d 3 -p cbr -e 500 -c 1 -i 255 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.3736 -s 3 -d 4 -p cbr -e 500 -c 1 -i 235 -a 1 -x {1.0 6.0 122 ------- null} h -t 1.3736 -s 3 -d 4 -p cbr -e 500 -c 1 -i 235 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.374 -s 1 -d 3 -p cbr -e 500 -c 1 -i 251 -a 1 -x {1.0 6.0 130 ------- null} + -t 1.374 -s 3 -d 4 -p cbr -e 500 -c 1 -i 251 -a 1 -x {1.0 6.0 130 ------- null} r -t 1.3756 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 225 -a 1 -x {2.0 7.0 56 ------- null} + -t 1.3756 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 225 -a 1 -x {2.0 7.0 56 ------- null} - -t 1.3756 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 225 -a 1 -x {2.0 7.0 56 ------- null} h -t 1.3756 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 225 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.37726 -s 5 -d 4 -p ack -e 40 -c 0 -i 252 -a 0 -x {5.0 0.0 26 ------- null} + -t 1.37726 -s 4 -d 3 -p ack -e 40 -c 0 -i 252 -a 0 -x {5.0 0.0 26 ------- null} - -t 1.37726 -s 4 -d 3 -p ack -e 40 -c 0 -i 252 -a 0 -x {5.0 0.0 26 ------- null} h -t 1.37726 -s 4 -d 3 -p ack -e 40 -c 0 -i 252 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.3776 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {0.0 5.0 30 ------- null} h -t 1.3776 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.37958 -s 4 -d 3 -p ack -e 40 -c 0 -i 243 -a 0 -x {5.0 0.0 24 ------- null} + -t 1.37958 -s 3 -d 0 -p ack -e 40 -c 0 -i 243 -a 0 -x {5.0 0.0 24 ------- null} - -t 1.37958 -s 3 -d 0 -p ack -e 40 -c 0 -i 243 -a 0 -x {5.0 0.0 24 ------- null} h -t 1.37958 -s 3 -d 0 -p ack -e 40 -c 0 -i 243 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.3796 -s 3 -d 4 -p cbr -e 500 -c 1 -i 227 -a 1 -x {1.0 6.0 118 ------- null} + -t 1.3796 -s 4 -d 6 -p cbr -e 500 -c 1 -i 227 -a 1 -x {1.0 6.0 118 ------- null} - -t 1.3796 -s 4 -d 6 -p cbr -e 500 -c 1 -i 227 -a 1 -x {1.0 6.0 118 ------- null} h -t 1.3796 -s 4 -d 6 -p cbr -e 500 -c 1 -i 227 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.3796 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 220 -a 1 -x {2.0 7.0 55 ------- null} + -t 1.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 256 -a 1 -x {2.0 7.0 64 ------- null} - -t 1.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 256 -a 1 -x {2.0 7.0 64 ------- null} h -t 1.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 256 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.38 -s 1 -d 3 -p cbr -e 500 -c 1 -i 257 -a 1 -x {1.0 6.0 133 ------- null} - -t 1.38 -s 1 -d 3 -p cbr -e 500 -c 1 -i 257 -a 1 -x {1.0 6.0 133 ------- null} h -t 1.38 -s 1 -d 3 -p cbr -e 500 -c 1 -i 257 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.3812 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {0.0 5.0 27 ------- null} + -t 1.3812 -s 5 -d 4 -p ack -e 40 -c 0 -i 258 -a 0 -x {5.0 0.0 27 ------- null} - -t 1.3812 -s 5 -d 4 -p ack -e 40 -c 0 -i 258 -a 0 -x {5.0 0.0 27 ------- null} h -t 1.3812 -s 5 -d 4 -p ack -e 40 -c 0 -i 258 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.384 -s 1 -d 3 -p cbr -e 500 -c 1 -i 254 -a 1 -x {1.0 6.0 131 ------- null} + -t 1.384 -s 3 -d 4 -p cbr -e 500 -c 1 -i 254 -a 1 -x {1.0 6.0 131 ------- null} - -t 1.3856 -s 3 -d 4 -p cbr -e 500 -c 1 -i 238 -a 1 -x {1.0 6.0 123 ------- null} h -t 1.3856 -s 3 -d 4 -p cbr -e 500 -c 1 -i 238 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.3876 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0 5.0 28 ------- null} + -t 1.3876 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0 5.0 28 ------- null} - -t 1.3876 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0 5.0 28 ------- null} h -t 1.3876 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.3876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 223 -a 1 -x {1.0 6.0 116 ------- null} r -t 1.388 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 253 -a 1 -x {2.0 7.0 63 ------- null} + -t 1.388 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 253 -a 1 -x {2.0 7.0 63 ------- null} - -t 1.3896 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {0.0 5.0 31 ------- null} h -t 1.3896 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {0.0 5.0 -1 ------- null} + -t 1.39 -s 1 -d 3 -p cbr -e 500 -c 1 -i 259 -a 1 -x {1.0 6.0 134 ------- null} - -t 1.39 -s 1 -d 3 -p cbr -e 500 -c 1 -i 259 -a 1 -x {1.0 6.0 134 ------- null} h -t 1.39 -s 1 -d 3 -p cbr -e 500 -c 1 -i 259 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.3916 -s 3 -d 4 -p cbr -e 500 -c 1 -i 230 -a 1 -x {1.0 6.0 119 ------- null} + -t 1.3916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 230 -a 1 -x {1.0 6.0 119 ------- null} - -t 1.3916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 230 -a 1 -x {1.0 6.0 119 ------- null} h -t 1.3916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 230 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.3916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 226 -a 1 -x {1.0 6.0 117 ------- null} r -t 1.394 -s 1 -d 3 -p cbr -e 500 -c 1 -i 255 -a 1 -x {1.0 6.0 132 ------- null} + -t 1.394 -s 3 -d 4 -p cbr -e 500 -c 1 -i 255 -a 1 -x {1.0 6.0 132 ------- null} - -t 1.3976 -s 3 -d 4 -p cbr -e 500 -c 1 -i 239 -a 1 -x {1.0 6.0 124 ------- null} h -t 1.3976 -s 3 -d 4 -p cbr -e 500 -c 1 -i 239 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.3996 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 229 -a 1 -x {2.0 7.0 57 ------- null} + -t 1.3996 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 229 -a 1 -x {2.0 7.0 57 ------- null} - -t 1.3996 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 229 -a 1 -x {2.0 7.0 57 ------- null} h -t 1.3996 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 229 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.39965 -s 3 -d 0 -p ack -e 40 -c 0 -i 243 -a 0 -x {5.0 0.0 24 ------- null} + -t 1.39965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 260 -a 0 -x {0.0 5.0 32 ------- null} - -t 1.39965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 260 -a 0 -x {0.0 5.0 32 ------- null} h -t 1.39965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 260 -a 0 -x {0.0 5.0 -1 ------- null} + -t 1.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 261 -a 1 -x {2.0 7.0 65 ------- null} - -t 1.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 261 -a 1 -x {2.0 7.0 65 ------- null} h -t 1.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 261 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.4 -s 1 -d 3 -p cbr -e 500 -c 1 -i 262 -a 1 -x {1.0 6.0 135 ------- null} - -t 1.4 -s 1 -d 3 -p cbr -e 500 -c 1 -i 262 -a 1 -x {1.0 6.0 135 ------- null} h -t 1.4 -s 1 -d 3 -p cbr -e 500 -c 1 -i 262 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.40126 -s 5 -d 4 -p ack -e 40 -c 0 -i 258 -a 0 -x {5.0 0.0 27 ------- null} + -t 1.40126 -s 4 -d 3 -p ack -e 40 -c 0 -i 258 -a 0 -x {5.0 0.0 27 ------- null} - -t 1.40126 -s 4 -d 3 -p ack -e 40 -c 0 -i 258 -a 0 -x {5.0 0.0 27 ------- null} h -t 1.40126 -s 4 -d 3 -p ack -e 40 -c 0 -i 258 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.4016 -s 3 -d 4 -p cbr -e 500 -c 1 -i 242 -a 1 -x {1.0 6.0 125 ------- null} h -t 1.4016 -s 3 -d 4 -p cbr -e 500 -c 1 -i 242 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.40358 -s 4 -d 3 -p ack -e 40 -c 0 -i 248 -a 0 -x {5.0 0.0 25 ------- null} + -t 1.40358 -s 3 -d 0 -p ack -e 40 -c 0 -i 248 -a 0 -x {5.0 0.0 25 ------- null} - -t 1.40358 -s 3 -d 0 -p ack -e 40 -c 0 -i 248 -a 0 -x {5.0 0.0 25 ------- null} h -t 1.40358 -s 3 -d 0 -p ack -e 40 -c 0 -i 248 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.4036 -s 3 -d 4 -p cbr -e 500 -c 1 -i 231 -a 1 -x {1.0 6.0 120 ------- null} + -t 1.4036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 231 -a 1 -x {1.0 6.0 120 ------- null} - -t 1.4036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 231 -a 1 -x {1.0 6.0 120 ------- null} h -t 1.4036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 231 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.4036 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 225 -a 1 -x {2.0 7.0 56 ------- null} r -t 1.4036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 227 -a 1 -x {1.0 6.0 118 ------- null} r -t 1.404 -s 1 -d 3 -p cbr -e 500 -c 1 -i 257 -a 1 -x {1.0 6.0 133 ------- null} + -t 1.404 -s 3 -d 4 -p cbr -e 500 -c 1 -i 257 -a 1 -x {1.0 6.0 133 ------- null} - -t 1.4056 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 241 -a 1 -x {2.0 7.0 60 ------- null} h -t 1.4056 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 241 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.408 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 256 -a 1 -x {2.0 7.0 64 ------- null} + -t 1.408 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 256 -a 1 -x {2.0 7.0 64 ------- null} r -t 1.4092 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0 5.0 28 ------- null} + -t 1.4092 -s 5 -d 4 -p ack -e 40 -c 0 -i 263 -a 0 -x {5.0 0.0 28 ------- null} - -t 1.4092 -s 5 -d 4 -p ack -e 40 -c 0 -i 263 -a 0 -x {5.0 0.0 28 ------- null} h -t 1.4092 -s 5 -d 4 -p ack -e 40 -c 0 -i 263 -a 0 -x {5.0 0.0 -1 ------- null} + -t 1.41 -s 1 -d 3 -p cbr -e 500 -c 1 -i 264 -a 1 -x {1.0 6.0 136 ------- null} - -t 1.41 -s 1 -d 3 -p cbr -e 500 -c 1 -i 264 -a 1 -x {1.0 6.0 136 ------- null} h -t 1.41 -s 1 -d 3 -p cbr -e 500 -c 1 -i 264 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.4116 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {0.0 5.0 29 ------- null} + -t 1.4116 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {0.0 5.0 29 ------- null} - -t 1.4116 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {0.0 5.0 29 ------- null} h -t 1.4116 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {0.0 5.0 -1 ------- null} - -t 1.4136 -s 3 -d 4 -p cbr -e 500 -c 1 -i 244 -a 1 -x {1.0 6.0 126 ------- null} h -t 1.4136 -s 3 -d 4 -p cbr -e 500 -c 1 -i 244 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.414 -s 1 -d 3 -p cbr -e 500 -c 1 -i 259 -a 1 -x {1.0 6.0 134 ------- null} + -t 1.414 -s 3 -d 4 -p cbr -e 500 -c 1 -i 259 -a 1 -x {1.0 6.0 134 ------- null} r -t 1.4156 -s 3 -d 4 -p cbr -e 500 -c 1 -i 234 -a 1 -x {1.0 6.0 121 ------- null} + -t 1.4156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 234 -a 1 -x {1.0 6.0 121 ------- null} - -t 1.4156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 234 -a 1 -x {1.0 6.0 121 ------- null} h -t 1.4156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 234 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.4156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 230 -a 1 -x {1.0 6.0 119 ------- null} - -t 1.4176 -s 3 -d 4 -p cbr -e 500 -c 1 -i 246 -a 1 -x {1.0 6.0 127 ------- null} h -t 1.4176 -s 3 -d 4 -p cbr -e 500 -c 1 -i 246 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 265 -a 1 -x {2.0 7.0 66 ------- null} - -t 1.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 265 -a 1 -x {2.0 7.0 66 ------- null} h -t 1.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 265 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.42 -s 1 -d 3 -p cbr -e 500 -c 1 -i 266 -a 1 -x {1.0 6.0 137 ------- null} - -t 1.42 -s 1 -d 3 -p cbr -e 500 -c 1 -i 266 -a 1 -x {1.0 6.0 137 ------- null} h -t 1.42 -s 1 -d 3 -p cbr -e 500 -c 1 -i 266 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.42125 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 260 -a 0 -x {0.0 5.0 32 ------- null} + -t 1.42125 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 260 -a 0 -x {0.0 5.0 32 ------- null} - -t 1.4216 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 245 -a 1 -x {2.0 7.0 61 ------- null} h -t 1.4216 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 245 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.4236 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 233 -a 1 -x {2.0 7.0 58 ------- null} + -t 1.4236 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 233 -a 1 -x {2.0 7.0 58 ------- null} - -t 1.4236 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 233 -a 1 -x {2.0 7.0 58 ------- null} h -t 1.4236 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 233 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.42365 -s 3 -d 0 -p ack -e 40 -c 0 -i 248 -a 0 -x {5.0 0.0 25 ------- null} + -t 1.42365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {0.0 5.0 33 ------- null} - -t 1.42365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {0.0 5.0 33 ------- null} h -t 1.42365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.424 -s 1 -d 3 -p cbr -e 500 -c 1 -i 262 -a 1 -x {1.0 6.0 135 ------- null} + -t 1.424 -s 3 -d 4 -p cbr -e 500 -c 1 -i 262 -a 1 -x {1.0 6.0 135 ------- null} r -t 1.42758 -s 4 -d 3 -p ack -e 40 -c 0 -i 252 -a 0 -x {5.0 0.0 26 ------- null} + -t 1.42758 -s 3 -d 0 -p ack -e 40 -c 0 -i 252 -a 0 -x {5.0 0.0 26 ------- null} - -t 1.42758 -s 3 -d 0 -p ack -e 40 -c 0 -i 252 -a 0 -x {5.0 0.0 26 ------- null} h -t 1.42758 -s 3 -d 0 -p ack -e 40 -c 0 -i 252 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.4276 -s 3 -d 4 -p cbr -e 500 -c 1 -i 235 -a 1 -x {1.0 6.0 122 ------- null} + -t 1.4276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 235 -a 1 -x {1.0 6.0 122 ------- null} - -t 1.4276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 235 -a 1 -x {1.0 6.0 122 ------- null} h -t 1.4276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 235 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.4276 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 229 -a 1 -x {2.0 7.0 57 ------- null} r -t 1.4276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 231 -a 1 -x {1.0 6.0 120 ------- null} r -t 1.428 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 261 -a 1 -x {2.0 7.0 65 ------- null} + -t 1.428 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 261 -a 1 -x {2.0 7.0 65 ------- null} r -t 1.42926 -s 5 -d 4 -p ack -e 40 -c 0 -i 263 -a 0 -x {5.0 0.0 28 ------- null} + -t 1.42926 -s 4 -d 3 -p ack -e 40 -c 0 -i 263 -a 0 -x {5.0 0.0 28 ------- null} - -t 1.42926 -s 4 -d 3 -p ack -e 40 -c 0 -i 263 -a 0 -x {5.0 0.0 28 ------- null} h -t 1.42926 -s 4 -d 3 -p ack -e 40 -c 0 -i 263 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.4296 -s 3 -d 4 -p cbr -e 500 -c 1 -i 247 -a 1 -x {1.0 6.0 128 ------- null} h -t 1.4296 -s 3 -d 4 -p cbr -e 500 -c 1 -i 247 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.43 -s 1 -d 3 -p cbr -e 500 -c 1 -i 268 -a 1 -x {1.0 6.0 138 ------- null} - -t 1.43 -s 1 -d 3 -p cbr -e 500 -c 1 -i 268 -a 1 -x {1.0 6.0 138 ------- null} h -t 1.43 -s 1 -d 3 -p cbr -e 500 -c 1 -i 268 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.4332 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {0.0 5.0 29 ------- null} + -t 1.4332 -s 5 -d 4 -p ack -e 40 -c 0 -i 269 -a 0 -x {5.0 0.0 29 ------- null} - -t 1.4332 -s 5 -d 4 -p ack -e 40 -c 0 -i 269 -a 0 -x {5.0 0.0 29 ------- null} h -t 1.4332 -s 5 -d 4 -p ack -e 40 -c 0 -i 269 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.4336 -s 3 -d 4 -p cbr -e 500 -c 1 -i 250 -a 1 -x {1.0 6.0 129 ------- null} h -t 1.4336 -s 3 -d 4 -p cbr -e 500 -c 1 -i 250 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.434 -s 1 -d 3 -p cbr -e 500 -c 1 -i 264 -a 1 -x {1.0 6.0 136 ------- null} + -t 1.434 -s 3 -d 4 -p cbr -e 500 -c 1 -i 264 -a 1 -x {1.0 6.0 136 ------- null} r -t 1.4356 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {0.0 5.0 30 ------- null} + -t 1.4356 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {0.0 5.0 30 ------- null} - -t 1.4356 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {0.0 5.0 30 ------- null} h -t 1.4356 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {0.0 5.0 -1 ------- null} - -t 1.4376 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 249 -a 1 -x {2.0 7.0 62 ------- null} h -t 1.4376 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 249 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.4396 -s 3 -d 4 -p cbr -e 500 -c 1 -i 238 -a 1 -x {1.0 6.0 123 ------- null} + -t 1.4396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 238 -a 1 -x {1.0 6.0 123 ------- null} - -t 1.4396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 238 -a 1 -x {1.0 6.0 123 ------- null} h -t 1.4396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 238 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.4396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 234 -a 1 -x {1.0 6.0 121 ------- null} + -t 1.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 270 -a 1 -x {2.0 7.0 67 ------- null} - -t 1.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 270 -a 1 -x {2.0 7.0 67 ------- null} h -t 1.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 270 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.44 -s 1 -d 3 -p cbr -e 500 -c 1 -i 271 -a 1 -x {1.0 6.0 139 ------- null} - -t 1.44 -s 1 -d 3 -p cbr -e 500 -c 1 -i 271 -a 1 -x {1.0 6.0 139 ------- null} h -t 1.44 -s 1 -d 3 -p cbr -e 500 -c 1 -i 271 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.444 -s 1 -d 3 -p cbr -e 500 -c 1 -i 266 -a 1 -x {1.0 6.0 137 ------- null} + -t 1.444 -s 3 -d 4 -p cbr -e 500 -c 1 -i 266 -a 1 -x {1.0 6.0 137 ------- null} r -t 1.44525 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {0.0 5.0 33 ------- null} + -t 1.44525 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {0.0 5.0 33 ------- null} - -t 1.4456 -s 3 -d 4 -p cbr -e 500 -c 1 -i 251 -a 1 -x {1.0 6.0 130 ------- null} h -t 1.4456 -s 3 -d 4 -p cbr -e 500 -c 1 -i 251 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.4476 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {0.0 5.0 31 ------- null} + -t 1.4476 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {0.0 5.0 31 ------- null} - -t 1.4476 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {0.0 5.0 31 ------- null} h -t 1.4476 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.44765 -s 3 -d 0 -p ack -e 40 -c 0 -i 252 -a 0 -x {5.0 0.0 26 ------- null} + -t 1.44765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {0.0 5.0 34 ------- null} - -t 1.44765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {0.0 5.0 34 ------- null} h -t 1.44765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.448 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 265 -a 1 -x {2.0 7.0 66 ------- null} + -t 1.448 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 265 -a 1 -x {2.0 7.0 66 ------- null} - -t 1.4496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 254 -a 1 -x {1.0 6.0 131 ------- null} h -t 1.4496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 254 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.45 -s 1 -d 3 -p cbr -e 500 -c 1 -i 273 -a 1 -x {1.0 6.0 140 ------- null} - -t 1.45 -s 1 -d 3 -p cbr -e 500 -c 1 -i 273 -a 1 -x {1.0 6.0 140 ------- null} h -t 1.45 -s 1 -d 3 -p cbr -e 500 -c 1 -i 273 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.45158 -s 4 -d 3 -p ack -e 40 -c 0 -i 258 -a 0 -x {5.0 0.0 27 ------- null} + -t 1.45158 -s 3 -d 0 -p ack -e 40 -c 0 -i 258 -a 0 -x {5.0 0.0 27 ------- null} - -t 1.45158 -s 3 -d 0 -p ack -e 40 -c 0 -i 258 -a 0 -x {5.0 0.0 27 ------- null} h -t 1.45158 -s 3 -d 0 -p ack -e 40 -c 0 -i 258 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.4516 -s 3 -d 4 -p cbr -e 500 -c 1 -i 239 -a 1 -x {1.0 6.0 124 ------- null} + -t 1.4516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 239 -a 1 -x {1.0 6.0 124 ------- null} - -t 1.4516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 239 -a 1 -x {1.0 6.0 124 ------- null} h -t 1.4516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 239 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.4516 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 233 -a 1 -x {2.0 7.0 58 ------- null} r -t 1.4516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 235 -a 1 -x {1.0 6.0 122 ------- null} r -t 1.45326 -s 5 -d 4 -p ack -e 40 -c 0 -i 269 -a 0 -x {5.0 0.0 29 ------- null} + -t 1.45326 -s 4 -d 3 -p ack -e 40 -c 0 -i 269 -a 0 -x {5.0 0.0 29 ------- null} - -t 1.45326 -s 4 -d 3 -p ack -e 40 -c 0 -i 269 -a 0 -x {5.0 0.0 29 ------- null} h -t 1.45326 -s 4 -d 3 -p ack -e 40 -c 0 -i 269 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.4536 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 253 -a 1 -x {2.0 7.0 63 ------- null} h -t 1.4536 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 253 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.454 -s 1 -d 3 -p cbr -e 500 -c 1 -i 268 -a 1 -x {1.0 6.0 138 ------- null} + -t 1.454 -s 3 -d 4 -p cbr -e 500 -c 1 -i 268 -a 1 -x {1.0 6.0 138 ------- null} r -t 1.4556 -s 3 -d 4 -p cbr -e 500 -c 1 -i 242 -a 1 -x {1.0 6.0 125 ------- null} + -t 1.4556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 242 -a 1 -x {1.0 6.0 125 ------- null} - -t 1.4556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 242 -a 1 -x {1.0 6.0 125 ------- null} h -t 1.4556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 242 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.4572 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {0.0 5.0 30 ------- null} + -t 1.4572 -s 5 -d 4 -p ack -e 40 -c 0 -i 274 -a 0 -x {5.0 0.0 30 ------- null} - -t 1.4572 -s 5 -d 4 -p ack -e 40 -c 0 -i 274 -a 0 -x {5.0 0.0 30 ------- null} h -t 1.4572 -s 5 -d 4 -p ack -e 40 -c 0 -i 274 -a 0 -x {5.0 0.0 -1 ------- null} + -t 1.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 275 -a 1 -x {2.0 7.0 68 ------- null} - -t 1.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 275 -a 1 -x {2.0 7.0 68 ------- null} h -t 1.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 275 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.46 -s 1 -d 3 -p cbr -e 500 -c 1 -i 276 -a 1 -x {1.0 6.0 141 ------- null} - -t 1.46 -s 1 -d 3 -p cbr -e 500 -c 1 -i 276 -a 1 -x {1.0 6.0 141 ------- null} h -t 1.46 -s 1 -d 3 -p cbr -e 500 -c 1 -i 276 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.4616 -s 3 -d 4 -p cbr -e 500 -c 1 -i 255 -a 1 -x {1.0 6.0 132 ------- null} h -t 1.4616 -s 3 -d 4 -p cbr -e 500 -c 1 -i 255 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.4636 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 241 -a 1 -x {2.0 7.0 60 ------- null} + -t 1.4636 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 241 -a 1 -x {2.0 7.0 60 ------- null} - -t 1.4636 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 241 -a 1 -x {2.0 7.0 60 ------- null} h -t 1.4636 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 241 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.4636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 238 -a 1 -x {1.0 6.0 123 ------- null} r -t 1.464 -s 1 -d 3 -p cbr -e 500 -c 1 -i 271 -a 1 -x {1.0 6.0 139 ------- null} + -t 1.464 -s 3 -d 4 -p cbr -e 500 -c 1 -i 271 -a 1 -x {1.0 6.0 139 ------- null} - -t 1.4656 -s 3 -d 4 -p cbr -e 500 -c 1 -i 257 -a 1 -x {1.0 6.0 133 ------- null} h -t 1.4656 -s 3 -d 4 -p cbr -e 500 -c 1 -i 257 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.4676 -s 3 -d 4 -p cbr -e 500 -c 1 -i 244 -a 1 -x {1.0 6.0 126 ------- null} + -t 1.4676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 244 -a 1 -x {1.0 6.0 126 ------- null} - -t 1.4676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 244 -a 1 -x {1.0 6.0 126 ------- null} h -t 1.4676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 244 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.468 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 270 -a 1 -x {2.0 7.0 67 ------- null} + -t 1.468 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 270 -a 1 -x {2.0 7.0 67 ------- null} r -t 1.4692 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {0.0 5.0 31 ------- null} + -t 1.4692 -s 5 -d 4 -p ack -e 40 -c 0 -i 277 -a 0 -x {5.0 0.0 31 ------- null} - -t 1.4692 -s 5 -d 4 -p ack -e 40 -c 0 -i 277 -a 0 -x {5.0 0.0 31 ------- null} h -t 1.4692 -s 5 -d 4 -p ack -e 40 -c 0 -i 277 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.46925 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {0.0 5.0 34 ------- null} + -t 1.46925 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {0.0 5.0 34 ------- null} - -t 1.4696 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 256 -a 1 -x {2.0 7.0 64 ------- null} h -t 1.4696 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 256 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.47 -s 1 -d 3 -p cbr -e 500 -c 1 -i 278 -a 1 -x {1.0 6.0 142 ------- null} - -t 1.47 -s 1 -d 3 -p cbr -e 500 -c 1 -i 278 -a 1 -x {1.0 6.0 142 ------- null} h -t 1.47 -s 1 -d 3 -p cbr -e 500 -c 1 -i 278 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.4716 -s 3 -d 4 -p cbr -e 500 -c 1 -i 246 -a 1 -x {1.0 6.0 127 ------- null} + -t 1.4716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 246 -a 1 -x {1.0 6.0 127 ------- null} - -t 1.4716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 246 -a 1 -x {1.0 6.0 127 ------- null} h -t 1.4716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 246 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.47165 -s 3 -d 0 -p ack -e 40 -c 0 -i 258 -a 0 -x {5.0 0.0 27 ------- null} + -t 1.47165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {0.0 5.0 35 ------- null} - -t 1.47165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {0.0 5.0 35 ------- null} h -t 1.47165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.474 -s 1 -d 3 -p cbr -e 500 -c 1 -i 273 -a 1 -x {1.0 6.0 140 ------- null} + -t 1.474 -s 3 -d 4 -p cbr -e 500 -c 1 -i 273 -a 1 -x {1.0 6.0 140 ------- null} r -t 1.4756 -s 4 -d 6 -p cbr -e 500 -c 1 -i 239 -a 1 -x {1.0 6.0 124 ------- null} r -t 1.47726 -s 5 -d 4 -p ack -e 40 -c 0 -i 274 -a 0 -x {5.0 0.0 30 ------- null} + -t 1.47726 -s 4 -d 3 -p ack -e 40 -c 0 -i 274 -a 0 -x {5.0 0.0 30 ------- null} - -t 1.47726 -s 4 -d 3 -p ack -e 40 -c 0 -i 274 -a 0 -x {5.0 0.0 30 ------- null} h -t 1.47726 -s 4 -d 3 -p ack -e 40 -c 0 -i 274 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.4776 -s 3 -d 4 -p cbr -e 500 -c 1 -i 259 -a 1 -x {1.0 6.0 134 ------- null} h -t 1.4776 -s 3 -d 4 -p cbr -e 500 -c 1 -i 259 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.47958 -s 4 -d 3 -p ack -e 40 -c 0 -i 263 -a 0 -x {5.0 0.0 28 ------- null} + -t 1.47958 -s 3 -d 0 -p ack -e 40 -c 0 -i 263 -a 0 -x {5.0 0.0 28 ------- null} - -t 1.47958 -s 3 -d 0 -p ack -e 40 -c 0 -i 263 -a 0 -x {5.0 0.0 28 ------- null} h -t 1.47958 -s 3 -d 0 -p ack -e 40 -c 0 -i 263 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.4796 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 245 -a 1 -x {2.0 7.0 61 ------- null} + -t 1.4796 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 245 -a 1 -x {2.0 7.0 61 ------- null} - -t 1.4796 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 245 -a 1 -x {2.0 7.0 61 ------- null} h -t 1.4796 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 245 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.4796 -s 4 -d 6 -p cbr -e 500 -c 1 -i 242 -a 1 -x {1.0 6.0 125 ------- null} + -t 1.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 280 -a 1 -x {2.0 7.0 69 ------- null} - -t 1.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 280 -a 1 -x {2.0 7.0 69 ------- null} h -t 1.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 280 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.48 -s 1 -d 3 -p cbr -e 500 -c 1 -i 281 -a 1 -x {1.0 6.0 143 ------- null} - -t 1.48 -s 1 -d 3 -p cbr -e 500 -c 1 -i 281 -a 1 -x {1.0 6.0 143 ------- null} h -t 1.48 -s 1 -d 3 -p cbr -e 500 -c 1 -i 281 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.4816 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 260 -a 0 -x {0.0 5.0 32 ------- null} h -t 1.4816 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 260 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.4836 -s 3 -d 4 -p cbr -e 500 -c 1 -i 247 -a 1 -x {1.0 6.0 128 ------- null} + -t 1.4836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 247 -a 1 -x {1.0 6.0 128 ------- null} - -t 1.4836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 247 -a 1 -x {1.0 6.0 128 ------- null} h -t 1.4836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 247 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.484 -s 1 -d 3 -p cbr -e 500 -c 1 -i 276 -a 1 -x {1.0 6.0 141 ------- null} + -t 1.484 -s 3 -d 4 -p cbr -e 500 -c 1 -i 276 -a 1 -x {1.0 6.0 141 ------- null} r -t 1.4876 -s 3 -d 4 -p cbr -e 500 -c 1 -i 250 -a 1 -x {1.0 6.0 129 ------- null} + -t 1.4876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 250 -a 1 -x {1.0 6.0 129 ------- null} - -t 1.4876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 250 -a 1 -x {1.0 6.0 129 ------- null} h -t 1.4876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 250 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.488 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 275 -a 1 -x {2.0 7.0 68 ------- null} + -t 1.488 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 275 -a 1 -x {2.0 7.0 68 ------- null} r -t 1.48926 -s 5 -d 4 -p ack -e 40 -c 0 -i 277 -a 0 -x {5.0 0.0 31 ------- null} + -t 1.48926 -s 4 -d 3 -p ack -e 40 -c 0 -i 277 -a 0 -x {5.0 0.0 31 ------- null} - -t 1.48926 -s 4 -d 3 -p ack -e 40 -c 0 -i 277 -a 0 -x {5.0 0.0 31 ------- null} h -t 1.48926 -s 4 -d 3 -p ack -e 40 -c 0 -i 277 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.4896 -s 3 -d 4 -p cbr -e 500 -c 1 -i 262 -a 1 -x {1.0 6.0 135 ------- null} h -t 1.4896 -s 3 -d 4 -p cbr -e 500 -c 1 -i 262 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.49 -s 1 -d 3 -p cbr -e 500 -c 1 -i 282 -a 1 -x {1.0 6.0 144 ------- null} - -t 1.49 -s 1 -d 3 -p cbr -e 500 -c 1 -i 282 -a 1 -x {1.0 6.0 144 ------- null} h -t 1.49 -s 1 -d 3 -p cbr -e 500 -c 1 -i 282 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.4916 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 241 -a 1 -x {2.0 7.0 60 ------- null} r -t 1.4916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 244 -a 1 -x {1.0 6.0 126 ------- null} r -t 1.49325 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {0.0 5.0 35 ------- null} + -t 1.49325 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {0.0 5.0 35 ------- null} - -t 1.4936 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 261 -a 1 -x {2.0 7.0 65 ------- null} h -t 1.4936 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 261 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.494 -s 1 -d 3 -p cbr -e 500 -c 1 -i 278 -a 1 -x {1.0 6.0 142 ------- null} + -t 1.494 -s 3 -d 4 -p cbr -e 500 -c 1 -i 278 -a 1 -x {1.0 6.0 142 ------- null} r -t 1.4956 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 249 -a 1 -x {2.0 7.0 62 ------- null} + -t 1.4956 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 249 -a 1 -x {2.0 7.0 62 ------- null} - -t 1.4956 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 249 -a 1 -x {2.0 7.0 62 ------- null} h -t 1.4956 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 249 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.4956 -s 4 -d 6 -p cbr -e 500 -c 1 -i 246 -a 1 -x {1.0 6.0 127 ------- null} r -t 1.4996 -s 3 -d 4 -p cbr -e 500 -c 1 -i 251 -a 1 -x {1.0 6.0 130 ------- null} + -t 1.4996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 251 -a 1 -x {1.0 6.0 130 ------- null} - -t 1.4996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 251 -a 1 -x {1.0 6.0 130 ------- null} h -t 1.4996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 251 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.49965 -s 3 -d 0 -p ack -e 40 -c 0 -i 263 -a 0 -x {5.0 0.0 28 ------- null} + -t 1.49965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 283 -a 0 -x {0.0 5.0 36 ------- null} - -t 1.49965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 283 -a 0 -x {0.0 5.0 36 ------- null} h -t 1.49965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 283 -a 0 -x {0.0 5.0 -1 ------- null} + -t 1.5 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 284 -a 1 -x {2.0 7.0 70 ------- null} - -t 1.5 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 284 -a 1 -x {2.0 7.0 70 ------- null} h -t 1.5 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 284 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.5 -s 1 -d 3 -p cbr -e 500 -c 1 -i 285 -a 1 -x {1.0 6.0 145 ------- null} - -t 1.5 -s 1 -d 3 -p cbr -e 500 -c 1 -i 285 -a 1 -x {1.0 6.0 145 ------- null} h -t 1.5 -s 1 -d 3 -p cbr -e 500 -c 1 -i 285 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.5016 -s 3 -d 4 -p cbr -e 500 -c 1 -i 264 -a 1 -x {1.0 6.0 136 ------- null} h -t 1.5016 -s 3 -d 4 -p cbr -e 500 -c 1 -i 264 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.50358 -s 4 -d 3 -p ack -e 40 -c 0 -i 269 -a 0 -x {5.0 0.0 29 ------- null} + -t 1.50358 -s 3 -d 0 -p ack -e 40 -c 0 -i 269 -a 0 -x {5.0 0.0 29 ------- null} - -t 1.50358 -s 3 -d 0 -p ack -e 40 -c 0 -i 269 -a 0 -x {5.0 0.0 29 ------- null} h -t 1.50358 -s 3 -d 0 -p ack -e 40 -c 0 -i 269 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.5036 -s 3 -d 4 -p cbr -e 500 -c 1 -i 254 -a 1 -x {1.0 6.0 131 ------- null} + -t 1.5036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 254 -a 1 -x {1.0 6.0 131 ------- null} - -t 1.5036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 254 -a 1 -x {1.0 6.0 131 ------- null} h -t 1.5036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 254 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.504 -s 1 -d 3 -p cbr -e 500 -c 1 -i 281 -a 1 -x {1.0 6.0 143 ------- null} + -t 1.504 -s 3 -d 4 -p cbr -e 500 -c 1 -i 281 -a 1 -x {1.0 6.0 143 ------- null} - -t 1.5056 -s 3 -d 4 -p cbr -e 500 -c 1 -i 266 -a 1 -x {1.0 6.0 137 ------- null} h -t 1.5056 -s 3 -d 4 -p cbr -e 500 -c 1 -i 266 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.5076 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 245 -a 1 -x {2.0 7.0 61 ------- null} r -t 1.5076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 247 -a 1 -x {1.0 6.0 128 ------- null} r -t 1.508 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 280 -a 1 -x {2.0 7.0 69 ------- null} + -t 1.508 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 280 -a 1 -x {2.0 7.0 69 ------- null} - -t 1.5096 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {0.0 5.0 33 ------- null} h -t 1.5096 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {0.0 5.0 -1 ------- null} + -t 1.51 -s 1 -d 3 -p cbr -e 500 -c 1 -i 286 -a 1 -x {1.0 6.0 146 ------- null} - -t 1.51 -s 1 -d 3 -p cbr -e 500 -c 1 -i 286 -a 1 -x {1.0 6.0 146 ------- null} h -t 1.51 -s 1 -d 3 -p cbr -e 500 -c 1 -i 286 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.5116 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 253 -a 1 -x {2.0 7.0 63 ------- null} + -t 1.5116 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 253 -a 1 -x {2.0 7.0 63 ------- null} - -t 1.5116 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 253 -a 1 -x {2.0 7.0 63 ------- null} h -t 1.5116 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 253 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.5116 -s 4 -d 6 -p cbr -e 500 -c 1 -i 250 -a 1 -x {1.0 6.0 129 ------- null} r -t 1.514 -s 1 -d 3 -p cbr -e 500 -c 1 -i 282 -a 1 -x {1.0 6.0 144 ------- null} + -t 1.514 -s 3 -d 4 -p cbr -e 500 -c 1 -i 282 -a 1 -x {1.0 6.0 144 ------- null} r -t 1.5156 -s 3 -d 4 -p cbr -e 500 -c 1 -i 255 -a 1 -x {1.0 6.0 132 ------- null} + -t 1.5156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 255 -a 1 -x {1.0 6.0 132 ------- null} - -t 1.5156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 255 -a 1 -x {1.0 6.0 132 ------- null} h -t 1.5156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 255 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.5176 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 265 -a 1 -x {2.0 7.0 66 ------- null} h -t 1.5176 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 265 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.5196 -s 3 -d 4 -p cbr -e 500 -c 1 -i 257 -a 1 -x {1.0 6.0 133 ------- null} + -t 1.5196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 257 -a 1 -x {1.0 6.0 133 ------- null} - -t 1.5196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 257 -a 1 -x {1.0 6.0 133 ------- null} h -t 1.5196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 257 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.52 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 287 -a 1 -x {2.0 7.0 71 ------- null} - -t 1.52 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 287 -a 1 -x {2.0 7.0 71 ------- null} h -t 1.52 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 287 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.52 -s 1 -d 3 -p cbr -e 500 -c 1 -i 288 -a 1 -x {1.0 6.0 147 ------- null} - -t 1.52 -s 1 -d 3 -p cbr -e 500 -c 1 -i 288 -a 1 -x {1.0 6.0 147 ------- null} h -t 1.52 -s 1 -d 3 -p cbr -e 500 -c 1 -i 288 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.52125 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 283 -a 0 -x {0.0 5.0 36 ------- null} + -t 1.52125 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 283 -a 0 -x {0.0 5.0 36 ------- null} r -t 1.5236 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 249 -a 1 -x {2.0 7.0 62 ------- null} r -t 1.5236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 251 -a 1 -x {1.0 6.0 130 ------- null} r -t 1.52365 -s 3 -d 0 -p ack -e 40 -c 0 -i 269 -a 0 -x {5.0 0.0 29 ------- null} + -t 1.52365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 289 -a 0 -x {0.0 5.0 37 ------- null} - -t 1.52365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 289 -a 0 -x {0.0 5.0 37 ------- null} h -t 1.52365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 289 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.524 -s 1 -d 3 -p cbr -e 500 -c 1 -i 285 -a 1 -x {1.0 6.0 145 ------- null} + -t 1.524 -s 3 -d 4 -p cbr -e 500 -c 1 -i 285 -a 1 -x {1.0 6.0 145 ------- null} - -t 1.5256 -s 3 -d 4 -p cbr -e 500 -c 1 -i 268 -a 1 -x {1.0 6.0 138 ------- null} h -t 1.5256 -s 3 -d 4 -p cbr -e 500 -c 1 -i 268 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.52758 -s 4 -d 3 -p ack -e 40 -c 0 -i 274 -a 0 -x {5.0 0.0 30 ------- null} + -t 1.52758 -s 3 -d 0 -p ack -e 40 -c 0 -i 274 -a 0 -x {5.0 0.0 30 ------- null} - -t 1.52758 -s 3 -d 0 -p ack -e 40 -c 0 -i 274 -a 0 -x {5.0 0.0 30 ------- null} h -t 1.52758 -s 3 -d 0 -p ack -e 40 -c 0 -i 274 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.5276 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 256 -a 1 -x {2.0 7.0 64 ------- null} + -t 1.5276 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 256 -a 1 -x {2.0 7.0 64 ------- null} - -t 1.5276 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 256 -a 1 -x {2.0 7.0 64 ------- null} h -t 1.5276 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 256 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.5276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 254 -a 1 -x {1.0 6.0 131 ------- null} r -t 1.528 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 284 -a 1 -x {2.0 7.0 70 ------- null} + -t 1.528 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 284 -a 1 -x {2.0 7.0 70 ------- null} - -t 1.5296 -s 3 -d 4 -p cbr -e 500 -c 1 -i 271 -a 1 -x {1.0 6.0 139 ------- null} h -t 1.5296 -s 3 -d 4 -p cbr -e 500 -c 1 -i 271 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.53 -s 1 -d 3 -p cbr -e 500 -c 1 -i 290 -a 1 -x {1.0 6.0 148 ------- null} - -t 1.53 -s 1 -d 3 -p cbr -e 500 -c 1 -i 290 -a 1 -x {1.0 6.0 148 ------- null} h -t 1.53 -s 1 -d 3 -p cbr -e 500 -c 1 -i 290 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.5316 -s 3 -d 4 -p cbr -e 500 -c 1 -i 259 -a 1 -x {1.0 6.0 134 ------- null} + -t 1.5316 -s 4 -d 6 -p cbr -e 500 -c 1 -i 259 -a 1 -x {1.0 6.0 134 ------- null} - -t 1.5316 -s 4 -d 6 -p cbr -e 500 -c 1 -i 259 -a 1 -x {1.0 6.0 134 ------- null} h -t 1.5316 -s 4 -d 6 -p cbr -e 500 -c 1 -i 259 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.5336 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 270 -a 1 -x {2.0 7.0 67 ------- null} h -t 1.5336 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 270 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.534 -s 1 -d 3 -p cbr -e 500 -c 1 -i 286 -a 1 -x {1.0 6.0 146 ------- null} + -t 1.534 -s 3 -d 4 -p cbr -e 500 -c 1 -i 286 -a 1 -x {1.0 6.0 146 ------- null} r -t 1.53958 -s 4 -d 3 -p ack -e 40 -c 0 -i 277 -a 0 -x {5.0 0.0 31 ------- null} + -t 1.53958 -s 3 -d 0 -p ack -e 40 -c 0 -i 277 -a 0 -x {5.0 0.0 31 ------- null} - -t 1.53958 -s 3 -d 0 -p ack -e 40 -c 0 -i 277 -a 0 -x {5.0 0.0 31 ------- null} h -t 1.53958 -s 3 -d 0 -p ack -e 40 -c 0 -i 277 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.5396 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 260 -a 0 -x {0.0 5.0 32 ------- null} + -t 1.5396 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 260 -a 0 -x {0.0 5.0 32 ------- null} - -t 1.5396 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 260 -a 0 -x {0.0 5.0 32 ------- null} h -t 1.5396 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 260 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.5396 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 253 -a 1 -x {2.0 7.0 63 ------- null} r -t 1.5396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 255 -a 1 -x {1.0 6.0 132 ------- null} + -t 1.54 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 291 -a 1 -x {2.0 7.0 72 ------- null} - -t 1.54 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 291 -a 1 -x {2.0 7.0 72 ------- null} h -t 1.54 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 291 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.54 -s 1 -d 3 -p cbr -e 500 -c 1 -i 292 -a 1 -x {1.0 6.0 149 ------- null} - -t 1.54 -s 1 -d 3 -p cbr -e 500 -c 1 -i 292 -a 1 -x {1.0 6.0 149 ------- null} h -t 1.54 -s 1 -d 3 -p cbr -e 500 -c 1 -i 292 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.5416 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {0.0 5.0 34 ------- null} h -t 1.5416 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.5436 -s 3 -d 4 -p cbr -e 500 -c 1 -i 262 -a 1 -x {1.0 6.0 135 ------- null} + -t 1.5436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 262 -a 1 -x {1.0 6.0 135 ------- null} - -t 1.5436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 262 -a 1 -x {1.0 6.0 135 ------- null} h -t 1.5436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 262 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.5436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 257 -a 1 -x {1.0 6.0 133 ------- null} r -t 1.544 -s 1 -d 3 -p cbr -e 500 -c 1 -i 288 -a 1 -x {1.0 6.0 147 ------- null} + -t 1.544 -s 3 -d 4 -p cbr -e 500 -c 1 -i 288 -a 1 -x {1.0 6.0 147 ------- null} r -t 1.54525 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 289 -a 0 -x {0.0 5.0 37 ------- null} + -t 1.54525 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 289 -a 0 -x {0.0 5.0 37 ------- null} r -t 1.54765 -s 3 -d 0 -p ack -e 40 -c 0 -i 274 -a 0 -x {5.0 0.0 30 ------- null} + -t 1.54765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 293 -a 0 -x {0.0 5.0 38 ------- null} - -t 1.54765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 293 -a 0 -x {0.0 5.0 38 ------- null} h -t 1.54765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 293 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.548 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 287 -a 1 -x {2.0 7.0 71 ------- null} + -t 1.548 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 287 -a 1 -x {2.0 7.0 71 ------- null} d -t 1.548 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 287 -a 1 -x {2.0 7.0 71 ------- null} - -t 1.5496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 273 -a 1 -x {1.0 6.0 140 ------- null} h -t 1.5496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 273 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.55 -s 1 -d 3 -p cbr -e 500 -c 1 -i 294 -a 1 -x {1.0 6.0 150 ------- null} - -t 1.55 -s 1 -d 3 -p cbr -e 500 -c 1 -i 294 -a 1 -x {1.0 6.0 150 ------- null} h -t 1.55 -s 1 -d 3 -p cbr -e 500 -c 1 -i 294 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.5516 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 261 -a 1 -x {2.0 7.0 65 ------- null} + -t 1.5516 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 261 -a 1 -x {2.0 7.0 65 ------- null} - -t 1.5516 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 261 -a 1 -x {2.0 7.0 65 ------- null} h -t 1.5516 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 261 -a 1 -x {2.0 7.0 -1 ------- null} - -t 1.5536 -s 3 -d 4 -p cbr -e 500 -c 1 -i 276 -a 1 -x {1.0 6.0 141 ------- null} h -t 1.5536 -s 3 -d 4 -p cbr -e 500 -c 1 -i 276 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.554 -s 1 -d 3 -p cbr -e 500 -c 1 -i 290 -a 1 -x {1.0 6.0 148 ------- null} + -t 1.554 -s 3 -d 4 -p cbr -e 500 -c 1 -i 290 -a 1 -x {1.0 6.0 148 ------- null} r -t 1.5556 -s 3 -d 4 -p cbr -e 500 -c 1 -i 264 -a 1 -x {1.0 6.0 136 ------- null} + -t 1.5556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 264 -a 1 -x {1.0 6.0 136 ------- null} - -t 1.5556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 264 -a 1 -x {1.0 6.0 136 ------- null} h -t 1.5556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 264 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.5556 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 256 -a 1 -x {2.0 7.0 64 ------- null} r -t 1.5556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 259 -a 1 -x {1.0 6.0 134 ------- null} - -t 1.5576 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 275 -a 1 -x {2.0 7.0 68 ------- null} h -t 1.5576 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 275 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.5596 -s 3 -d 4 -p cbr -e 500 -c 1 -i 266 -a 1 -x {1.0 6.0 137 ------- null} + -t 1.5596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 266 -a 1 -x {1.0 6.0 137 ------- null} - -t 1.5596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 266 -a 1 -x {1.0 6.0 137 ------- null} h -t 1.5596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 266 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.55965 -s 3 -d 0 -p ack -e 40 -c 0 -i 277 -a 0 -x {5.0 0.0 31 ------- null} + -t 1.55965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 295 -a 0 -x {0.0 5.0 39 ------- null} - -t 1.55965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 295 -a 0 -x {0.0 5.0 39 ------- null} h -t 1.55965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 295 -a 0 -x {0.0 5.0 -1 ------- null} + -t 1.56 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 296 -a 1 -x {2.0 7.0 73 ------- null} - -t 1.56 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 296 -a 1 -x {2.0 7.0 73 ------- null} h -t 1.56 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 296 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.56 -s 1 -d 3 -p cbr -e 500 -c 1 -i 297 -a 1 -x {1.0 6.0 151 ------- null} - -t 1.56 -s 1 -d 3 -p cbr -e 500 -c 1 -i 297 -a 1 -x {1.0 6.0 151 ------- null} h -t 1.56 -s 1 -d 3 -p cbr -e 500 -c 1 -i 297 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.5612 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 260 -a 0 -x {0.0 5.0 32 ------- null} + -t 1.5612 -s 5 -d 4 -p ack -e 40 -c 0 -i 298 -a 0 -x {5.0 0.0 32 ------- null} - -t 1.5612 -s 5 -d 4 -p ack -e 40 -c 0 -i 298 -a 0 -x {5.0 0.0 32 ------- null} h -t 1.5612 -s 5 -d 4 -p ack -e 40 -c 0 -i 298 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.564 -s 1 -d 3 -p cbr -e 500 -c 1 -i 292 -a 1 -x {1.0 6.0 149 ------- null} + -t 1.564 -s 3 -d 4 -p cbr -e 500 -c 1 -i 292 -a 1 -x {1.0 6.0 149 ------- null} - -t 1.5656 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {0.0 5.0 35 ------- null} h -t 1.5656 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.5676 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {0.0 5.0 33 ------- null} + -t 1.5676 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {0.0 5.0 33 ------- null} - -t 1.5676 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {0.0 5.0 33 ------- null} h -t 1.5676 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.5676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 262 -a 1 -x {1.0 6.0 135 ------- null} r -t 1.568 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 291 -a 1 -x {2.0 7.0 72 ------- null} + -t 1.568 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 291 -a 1 -x {2.0 7.0 72 ------- null} r -t 1.56925 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 293 -a 0 -x {0.0 5.0 38 ------- null} + -t 1.56925 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 293 -a 0 -x {0.0 5.0 38 ------- null} + -t 1.57 -s 1 -d 3 -p cbr -e 500 -c 1 -i 299 -a 1 -x {1.0 6.0 152 ------- null} - -t 1.57 -s 1 -d 3 -p cbr -e 500 -c 1 -i 299 -a 1 -x {1.0 6.0 152 ------- null} h -t 1.57 -s 1 -d 3 -p cbr -e 500 -c 1 -i 299 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.5736 -s 3 -d 4 -p cbr -e 500 -c 1 -i 278 -a 1 -x {1.0 6.0 142 ------- null} h -t 1.5736 -s 3 -d 4 -p cbr -e 500 -c 1 -i 278 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.574 -s 1 -d 3 -p cbr -e 500 -c 1 -i 294 -a 1 -x {1.0 6.0 150 ------- null} + -t 1.574 -s 3 -d 4 -p cbr -e 500 -c 1 -i 294 -a 1 -x {1.0 6.0 150 ------- null} r -t 1.5756 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 265 -a 1 -x {2.0 7.0 66 ------- null} + -t 1.5756 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 265 -a 1 -x {2.0 7.0 66 ------- null} - -t 1.5756 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 265 -a 1 -x {2.0 7.0 66 ------- null} h -t 1.5756 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 265 -a 1 -x {2.0 7.0 -1 ------- null} - -t 1.5776 -s 3 -d 4 -p cbr -e 500 -c 1 -i 281 -a 1 -x {1.0 6.0 143 ------- null} h -t 1.5776 -s 3 -d 4 -p cbr -e 500 -c 1 -i 281 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.5796 -s 3 -d 4 -p cbr -e 500 -c 1 -i 268 -a 1 -x {1.0 6.0 138 ------- null} + -t 1.5796 -s 4 -d 6 -p cbr -e 500 -c 1 -i 268 -a 1 -x {1.0 6.0 138 ------- null} - -t 1.5796 -s 4 -d 6 -p cbr -e 500 -c 1 -i 268 -a 1 -x {1.0 6.0 138 ------- null} h -t 1.5796 -s 4 -d 6 -p cbr -e 500 -c 1 -i 268 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.5796 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 261 -a 1 -x {2.0 7.0 65 ------- null} r -t 1.5796 -s 4 -d 6 -p cbr -e 500 -c 1 -i 264 -a 1 -x {1.0 6.0 136 ------- null} + -t 1.58 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 300 -a 1 -x {2.0 7.0 74 ------- null} - -t 1.58 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 300 -a 1 -x {2.0 7.0 74 ------- null} h -t 1.58 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 300 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.58 -s 1 -d 3 -p cbr -e 500 -c 1 -i 301 -a 1 -x {1.0 6.0 153 ------- null} - -t 1.58 -s 1 -d 3 -p cbr -e 500 -c 1 -i 301 -a 1 -x {1.0 6.0 153 ------- null} h -t 1.58 -s 1 -d 3 -p cbr -e 500 -c 1 -i 301 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.58125 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 295 -a 0 -x {0.0 5.0 39 ------- null} + -t 1.58125 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 295 -a 0 -x {0.0 5.0 39 ------- null} r -t 1.58126 -s 5 -d 4 -p ack -e 40 -c 0 -i 298 -a 0 -x {5.0 0.0 32 ------- null} + -t 1.58126 -s 4 -d 3 -p ack -e 40 -c 0 -i 298 -a 0 -x {5.0 0.0 32 ------- null} - -t 1.58126 -s 4 -d 3 -p ack -e 40 -c 0 -i 298 -a 0 -x {5.0 0.0 32 ------- null} h -t 1.58126 -s 4 -d 3 -p ack -e 40 -c 0 -i 298 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.5816 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 280 -a 1 -x {2.0 7.0 69 ------- null} h -t 1.5816 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 280 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.5836 -s 3 -d 4 -p cbr -e 500 -c 1 -i 271 -a 1 -x {1.0 6.0 139 ------- null} + -t 1.5836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 271 -a 1 -x {1.0 6.0 139 ------- null} r -t 1.5836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 266 -a 1 -x {1.0 6.0 137 ------- null} - -t 1.5836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 271 -a 1 -x {1.0 6.0 139 ------- null} h -t 1.5836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 271 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.584 -s 1 -d 3 -p cbr -e 500 -c 1 -i 297 -a 1 -x {1.0 6.0 151 ------- null} + -t 1.584 -s 3 -d 4 -p cbr -e 500 -c 1 -i 297 -a 1 -x {1.0 6.0 151 ------- null} r -t 1.588 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 296 -a 1 -x {2.0 7.0 73 ------- null} + -t 1.588 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 296 -a 1 -x {2.0 7.0 73 ------- null} d -t 1.588 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 296 -a 1 -x {2.0 7.0 73 ------- null} r -t 1.5892 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {0.0 5.0 33 ------- null} + -t 1.5892 -s 5 -d 4 -p ack -e 40 -c 0 -i 302 -a 0 -x {5.0 0.0 33 ------- null} - -t 1.5892 -s 5 -d 4 -p ack -e 40 -c 0 -i 302 -a 0 -x {5.0 0.0 33 ------- null} h -t 1.5892 -s 5 -d 4 -p ack -e 40 -c 0 -i 302 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.5896 -s 3 -d 4 -p cbr -e 500 -c 1 -i 282 -a 1 -x {1.0 6.0 144 ------- null} h -t 1.5896 -s 3 -d 4 -p cbr -e 500 -c 1 -i 282 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.59 -s 1 -d 3 -p cbr -e 500 -c 1 -i 303 -a 1 -x {1.0 6.0 154 ------- null} - -t 1.59 -s 1 -d 3 -p cbr -e 500 -c 1 -i 303 -a 1 -x {1.0 6.0 154 ------- null} h -t 1.59 -s 1 -d 3 -p cbr -e 500 -c 1 -i 303 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.5916 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 270 -a 1 -x {2.0 7.0 67 ------- null} + -t 1.5916 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 270 -a 1 -x {2.0 7.0 67 ------- null} - -t 1.5916 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 270 -a 1 -x {2.0 7.0 67 ------- null} h -t 1.5916 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 270 -a 1 -x {2.0 7.0 -1 ------- null} - -t 1.5936 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 283 -a 0 -x {0.0 5.0 36 ------- null} h -t 1.5936 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 283 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.594 -s 1 -d 3 -p cbr -e 500 -c 1 -i 299 -a 1 -x {1.0 6.0 152 ------- null} + -t 1.594 -s 3 -d 4 -p cbr -e 500 -c 1 -i 299 -a 1 -x {1.0 6.0 152 ------- null} r -t 1.5996 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {0.0 5.0 34 ------- null} + -t 1.5996 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {0.0 5.0 34 ------- null} - -t 1.5996 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {0.0 5.0 34 ------- null} h -t 1.5996 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {0.0 5.0 -1 ------- null} + -t 1.6 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 304 -a 1 -x {2.0 7.0 75 ------- null} - -t 1.6 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 304 -a 1 -x {2.0 7.0 75 ------- null} h -t 1.6 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 304 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.6 -s 1 -d 3 -p cbr -e 500 -c 1 -i 305 -a 1 -x {1.0 6.0 155 ------- null} - -t 1.6 -s 1 -d 3 -p cbr -e 500 -c 1 -i 305 -a 1 -x {1.0 6.0 155 ------- null} h -t 1.6 -s 1 -d 3 -p cbr -e 500 -c 1 -i 305 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.6016 -s 3 -d 4 -p cbr -e 500 -c 1 -i 285 -a 1 -x {1.0 6.0 145 ------- null} h -t 1.6016 -s 3 -d 4 -p cbr -e 500 -c 1 -i 285 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.6036 -s 3 -d 4 -p cbr -e 500 -c 1 -i 273 -a 1 -x {1.0 6.0 140 ------- null} + -t 1.6036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 273 -a 1 -x {1.0 6.0 140 ------- null} - -t 1.6036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 273 -a 1 -x {1.0 6.0 140 ------- null} h -t 1.6036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 273 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.6036 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 265 -a 1 -x {2.0 7.0 66 ------- null} r -t 1.6036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 268 -a 1 -x {1.0 6.0 138 ------- null} r -t 1.604 -s 1 -d 3 -p cbr -e 500 -c 1 -i 301 -a 1 -x {1.0 6.0 153 ------- null} + -t 1.604 -s 3 -d 4 -p cbr -e 500 -c 1 -i 301 -a 1 -x {1.0 6.0 153 ------- null} - -t 1.6056 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 284 -a 1 -x {2.0 7.0 70 ------- null} h -t 1.6056 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 284 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.6076 -s 3 -d 4 -p cbr -e 500 -c 1 -i 276 -a 1 -x {1.0 6.0 141 ------- null} + -t 1.6076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 276 -a 1 -x {1.0 6.0 141 ------- null} r -t 1.6076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 271 -a 1 -x {1.0 6.0 139 ------- null} - -t 1.6076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 276 -a 1 -x {1.0 6.0 141 ------- null} h -t 1.6076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 276 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.608 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 300 -a 1 -x {2.0 7.0 74 ------- null} + -t 1.608 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 300 -a 1 -x {2.0 7.0 74 ------- null} r -t 1.60926 -s 5 -d 4 -p ack -e 40 -c 0 -i 302 -a 0 -x {5.0 0.0 33 ------- null} + -t 1.60926 -s 4 -d 3 -p ack -e 40 -c 0 -i 302 -a 0 -x {5.0 0.0 33 ------- null} - -t 1.60926 -s 4 -d 3 -p ack -e 40 -c 0 -i 302 -a 0 -x {5.0 0.0 33 ------- null} h -t 1.60926 -s 4 -d 3 -p ack -e 40 -c 0 -i 302 -a 0 -x {5.0 0.0 -1 ------- null} + -t 1.61 -s 1 -d 3 -p cbr -e 500 -c 1 -i 306 -a 1 -x {1.0 6.0 156 ------- null} - -t 1.61 -s 1 -d 3 -p cbr -e 500 -c 1 -i 306 -a 1 -x {1.0 6.0 156 ------- null} h -t 1.61 -s 1 -d 3 -p cbr -e 500 -c 1 -i 306 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.6136 -s 3 -d 4 -p cbr -e 500 -c 1 -i 286 -a 1 -x {1.0 6.0 146 ------- null} h -t 1.6136 -s 3 -d 4 -p cbr -e 500 -c 1 -i 286 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.614 -s 1 -d 3 -p cbr -e 500 -c 1 -i 303 -a 1 -x {1.0 6.0 154 ------- null} + -t 1.614 -s 3 -d 4 -p cbr -e 500 -c 1 -i 303 -a 1 -x {1.0 6.0 154 ------- null} r -t 1.6156 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 275 -a 1 -x {2.0 7.0 68 ------- null} + -t 1.6156 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 275 -a 1 -x {2.0 7.0 68 ------- null} - -t 1.6156 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 275 -a 1 -x {2.0 7.0 68 ------- null} h -t 1.6156 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 275 -a 1 -x {2.0 7.0 -1 ------- null} - -t 1.6176 -s 3 -d 4 -p cbr -e 500 -c 1 -i 288 -a 1 -x {1.0 6.0 147 ------- null} h -t 1.6176 -s 3 -d 4 -p cbr -e 500 -c 1 -i 288 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.6196 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 270 -a 1 -x {2.0 7.0 67 ------- null} + -t 1.62 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 307 -a 1 -x {2.0 7.0 76 ------- null} - -t 1.62 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 307 -a 1 -x {2.0 7.0 76 ------- null} h -t 1.62 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 307 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.62 -s 1 -d 3 -p cbr -e 500 -c 1 -i 308 -a 1 -x {1.0 6.0 157 ------- null} - -t 1.62 -s 1 -d 3 -p cbr -e 500 -c 1 -i 308 -a 1 -x {1.0 6.0 157 ------- null} h -t 1.62 -s 1 -d 3 -p cbr -e 500 -c 1 -i 308 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.6212 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {0.0 5.0 34 ------- null} + -t 1.6212 -s 5 -d 4 -p ack -e 40 -c 0 -i 309 -a 0 -x {5.0 0.0 34 ------- null} - -t 1.6212 -s 5 -d 4 -p ack -e 40 -c 0 -i 309 -a 0 -x {5.0 0.0 34 ------- null} h -t 1.6212 -s 5 -d 4 -p ack -e 40 -c 0 -i 309 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.6216 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 289 -a 0 -x {0.0 5.0 37 ------- null} h -t 1.6216 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 289 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.6236 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {0.0 5.0 35 ------- null} + -t 1.6236 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {0.0 5.0 35 ------- null} - -t 1.6236 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {0.0 5.0 35 ------- null} h -t 1.6236 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.624 -s 1 -d 3 -p cbr -e 500 -c 1 -i 305 -a 1 -x {1.0 6.0 155 ------- null} + -t 1.624 -s 3 -d 4 -p cbr -e 500 -c 1 -i 305 -a 1 -x {1.0 6.0 155 ------- null} r -t 1.6276 -s 3 -d 4 -p cbr -e 500 -c 1 -i 278 -a 1 -x {1.0 6.0 142 ------- null} + -t 1.6276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 278 -a 1 -x {1.0 6.0 142 ------- null} - -t 1.6276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 278 -a 1 -x {1.0 6.0 142 ------- null} h -t 1.6276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 278 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.6276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 273 -a 1 -x {1.0 6.0 140 ------- null} r -t 1.628 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 304 -a 1 -x {2.0 7.0 75 ------- null} + -t 1.628 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 304 -a 1 -x {2.0 7.0 75 ------- null} - -t 1.6296 -s 3 -d 4 -p cbr -e 500 -c 1 -i 290 -a 1 -x {1.0 6.0 148 ------- null} h -t 1.6296 -s 3 -d 4 -p cbr -e 500 -c 1 -i 290 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.63 -s 1 -d 3 -p cbr -e 500 -c 1 -i 310 -a 1 -x {1.0 6.0 158 ------- null} - -t 1.63 -s 1 -d 3 -p cbr -e 500 -c 1 -i 310 -a 1 -x {1.0 6.0 158 ------- null} h -t 1.63 -s 1 -d 3 -p cbr -e 500 -c 1 -i 310 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.63158 -s 4 -d 3 -p ack -e 40 -c 0 -i 298 -a 0 -x {5.0 0.0 32 ------- null} + -t 1.63158 -s 3 -d 0 -p ack -e 40 -c 0 -i 298 -a 0 -x {5.0 0.0 32 ------- null} - -t 1.63158 -s 3 -d 0 -p ack -e 40 -c 0 -i 298 -a 0 -x {5.0 0.0 32 ------- null} h -t 1.63158 -s 3 -d 0 -p ack -e 40 -c 0 -i 298 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.6316 -s 3 -d 4 -p cbr -e 500 -c 1 -i 281 -a 1 -x {1.0 6.0 143 ------- null} + -t 1.6316 -s 4 -d 6 -p cbr -e 500 -c 1 -i 281 -a 1 -x {1.0 6.0 143 ------- null} r -t 1.6316 -s 4 -d 6 -p cbr -e 500 -c 1 -i 276 -a 1 -x {1.0 6.0 141 ------- null} - -t 1.6316 -s 4 -d 6 -p cbr -e 500 -c 1 -i 281 -a 1 -x {1.0 6.0 143 ------- null} h -t 1.6316 -s 4 -d 6 -p cbr -e 500 -c 1 -i 281 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.6336 -s 3 -d 4 -p cbr -e 500 -c 1 -i 292 -a 1 -x {1.0 6.0 149 ------- null} h -t 1.6336 -s 3 -d 4 -p cbr -e 500 -c 1 -i 292 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.634 -s 1 -d 3 -p cbr -e 500 -c 1 -i 306 -a 1 -x {1.0 6.0 156 ------- null} + -t 1.634 -s 3 -d 4 -p cbr -e 500 -c 1 -i 306 -a 1 -x {1.0 6.0 156 ------- null} - -t 1.6376 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 291 -a 1 -x {2.0 7.0 72 ------- null} h -t 1.6376 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 291 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.6396 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 280 -a 1 -x {2.0 7.0 69 ------- null} + -t 1.6396 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 280 -a 1 -x {2.0 7.0 69 ------- null} - -t 1.6396 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 280 -a 1 -x {2.0 7.0 69 ------- null} h -t 1.6396 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 280 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.64 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 311 -a 1 -x {2.0 7.0 77 ------- null} - -t 1.64 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 311 -a 1 -x {2.0 7.0 77 ------- null} h -t 1.64 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 311 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.64 -s 1 -d 3 -p cbr -e 500 -c 1 -i 312 -a 1 -x {1.0 6.0 159 ------- null} - -t 1.64 -s 1 -d 3 -p cbr -e 500 -c 1 -i 312 -a 1 -x {1.0 6.0 159 ------- null} h -t 1.64 -s 1 -d 3 -p cbr -e 500 -c 1 -i 312 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.64126 -s 5 -d 4 -p ack -e 40 -c 0 -i 309 -a 0 -x {5.0 0.0 34 ------- null} + -t 1.64126 -s 4 -d 3 -p ack -e 40 -c 0 -i 309 -a 0 -x {5.0 0.0 34 ------- null} - -t 1.64126 -s 4 -d 3 -p ack -e 40 -c 0 -i 309 -a 0 -x {5.0 0.0 34 ------- null} h -t 1.64126 -s 4 -d 3 -p ack -e 40 -c 0 -i 309 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.6436 -s 3 -d 4 -p cbr -e 500 -c 1 -i 282 -a 1 -x {1.0 6.0 144 ------- null} + -t 1.6436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 282 -a 1 -x {1.0 6.0 144 ------- null} - -t 1.6436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 282 -a 1 -x {1.0 6.0 144 ------- null} h -t 1.6436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 282 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.6436 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 275 -a 1 -x {2.0 7.0 68 ------- null} r -t 1.644 -s 1 -d 3 -p cbr -e 500 -c 1 -i 308 -a 1 -x {1.0 6.0 157 ------- null} + -t 1.644 -s 3 -d 4 -p cbr -e 500 -c 1 -i 308 -a 1 -x {1.0 6.0 157 ------- null} r -t 1.6452 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {0.0 5.0 35 ------- null} + -t 1.6452 -s 5 -d 4 -p ack -e 40 -c 0 -i 313 -a 0 -x {5.0 0.0 35 ------- null} - -t 1.6452 -s 5 -d 4 -p ack -e 40 -c 0 -i 313 -a 0 -x {5.0 0.0 35 ------- null} h -t 1.6452 -s 5 -d 4 -p ack -e 40 -c 0 -i 313 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.6456 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 293 -a 0 -x {0.0 5.0 38 ------- null} h -t 1.6456 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 293 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.648 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 307 -a 1 -x {2.0 7.0 76 ------- null} + -t 1.648 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 307 -a 1 -x {2.0 7.0 76 ------- null} + -t 1.65 -s 1 -d 3 -p cbr -e 500 -c 1 -i 314 -a 1 -x {1.0 6.0 160 ------- null} - -t 1.65 -s 1 -d 3 -p cbr -e 500 -c 1 -i 314 -a 1 -x {1.0 6.0 160 ------- null} h -t 1.65 -s 1 -d 3 -p cbr -e 500 -c 1 -i 314 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.6516 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 283 -a 0 -x {0.0 5.0 36 ------- null} + -t 1.6516 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 283 -a 0 -x {0.0 5.0 36 ------- null} - -t 1.6516 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 283 -a 0 -x {0.0 5.0 36 ------- null} h -t 1.6516 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 283 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.6516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 278 -a 1 -x {1.0 6.0 142 ------- null} r -t 1.65165 -s 3 -d 0 -p ack -e 40 -c 0 -i 298 -a 0 -x {5.0 0.0 32 ------- null} + -t 1.65165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {0.0 5.0 40 ------- null} - -t 1.65165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {0.0 5.0 40 ------- null} h -t 1.65165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {0.0 5.0 -1 ------- null} - -t 1.6536 -s 3 -d 4 -p cbr -e 500 -c 1 -i 294 -a 1 -x {1.0 6.0 150 ------- null} h -t 1.6536 -s 3 -d 4 -p cbr -e 500 -c 1 -i 294 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.654 -s 1 -d 3 -p cbr -e 500 -c 1 -i 310 -a 1 -x {1.0 6.0 158 ------- null} + -t 1.654 -s 3 -d 4 -p cbr -e 500 -c 1 -i 310 -a 1 -x {1.0 6.0 158 ------- null} r -t 1.6556 -s 3 -d 4 -p cbr -e 500 -c 1 -i 285 -a 1 -x {1.0 6.0 145 ------- null} + -t 1.6556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 285 -a 1 -x {1.0 6.0 145 ------- null} - -t 1.6556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 285 -a 1 -x {1.0 6.0 145 ------- null} h -t 1.6556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 285 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.6556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 281 -a 1 -x {1.0 6.0 143 ------- null} - -t 1.6576 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 295 -a 0 -x {0.0 5.0 39 ------- null} h -t 1.6576 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 295 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.65958 -s 4 -d 3 -p ack -e 40 -c 0 -i 302 -a 0 -x {5.0 0.0 33 ------- null} + -t 1.65958 -s 3 -d 0 -p ack -e 40 -c 0 -i 302 -a 0 -x {5.0 0.0 33 ------- null} - -t 1.65958 -s 3 -d 0 -p ack -e 40 -c 0 -i 302 -a 0 -x {5.0 0.0 33 ------- null} h -t 1.65958 -s 3 -d 0 -p ack -e 40 -c 0 -i 302 -a 0 -x {5.0 0.0 -1 ------- null} + -t 1.66 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 316 -a 1 -x {2.0 7.0 78 ------- null} - -t 1.66 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 316 -a 1 -x {2.0 7.0 78 ------- null} h -t 1.66 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 316 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.66 -s 1 -d 3 -p cbr -e 500 -c 1 -i 317 -a 1 -x {1.0 6.0 161 ------- null} - -t 1.66 -s 1 -d 3 -p cbr -e 500 -c 1 -i 317 -a 1 -x {1.0 6.0 161 ------- null} h -t 1.66 -s 1 -d 3 -p cbr -e 500 -c 1 -i 317 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.6636 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 284 -a 1 -x {2.0 7.0 70 ------- null} + -t 1.6636 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 284 -a 1 -x {2.0 7.0 70 ------- null} - -t 1.6636 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 284 -a 1 -x {2.0 7.0 70 ------- null} h -t 1.6636 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 284 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.664 -s 1 -d 3 -p cbr -e 500 -c 1 -i 312 -a 1 -x {1.0 6.0 159 ------- null} + -t 1.664 -s 3 -d 4 -p cbr -e 500 -c 1 -i 312 -a 1 -x {1.0 6.0 159 ------- null} r -t 1.66526 -s 5 -d 4 -p ack -e 40 -c 0 -i 313 -a 0 -x {5.0 0.0 35 ------- null} + -t 1.66526 -s 4 -d 3 -p ack -e 40 -c 0 -i 313 -a 0 -x {5.0 0.0 35 ------- null} - -t 1.66526 -s 4 -d 3 -p ack -e 40 -c 0 -i 313 -a 0 -x {5.0 0.0 35 ------- null} h -t 1.66526 -s 4 -d 3 -p ack -e 40 -c 0 -i 313 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.6656 -s 3 -d 4 -p cbr -e 500 -c 1 -i 297 -a 1 -x {1.0 6.0 151 ------- null} h -t 1.6656 -s 3 -d 4 -p cbr -e 500 -c 1 -i 297 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.6676 -s 3 -d 4 -p cbr -e 500 -c 1 -i 286 -a 1 -x {1.0 6.0 146 ------- null} + -t 1.6676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 286 -a 1 -x {1.0 6.0 146 ------- null} - -t 1.6676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 286 -a 1 -x {1.0 6.0 146 ------- null} h -t 1.6676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 286 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.6676 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 280 -a 1 -x {2.0 7.0 69 ------- null} r -t 1.6676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 282 -a 1 -x {1.0 6.0 144 ------- null} r -t 1.668 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 311 -a 1 -x {2.0 7.0 77 ------- null} + -t 1.668 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 311 -a 1 -x {2.0 7.0 77 ------- null} - -t 1.6696 -s 3 -d 4 -p cbr -e 500 -c 1 -i 299 -a 1 -x {1.0 6.0 152 ------- null} h -t 1.6696 -s 3 -d 4 -p cbr -e 500 -c 1 -i 299 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.67 -s 1 -d 3 -p cbr -e 500 -c 1 -i 318 -a 1 -x {1.0 6.0 162 ------- null} - -t 1.67 -s 1 -d 3 -p cbr -e 500 -c 1 -i 318 -a 1 -x {1.0 6.0 162 ------- null} h -t 1.67 -s 1 -d 3 -p cbr -e 500 -c 1 -i 318 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.6716 -s 3 -d 4 -p cbr -e 500 -c 1 -i 288 -a 1 -x {1.0 6.0 147 ------- null} + -t 1.6716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 288 -a 1 -x {1.0 6.0 147 ------- null} - -t 1.6716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 288 -a 1 -x {1.0 6.0 147 ------- null} h -t 1.6716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 288 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.6732 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 283 -a 0 -x {0.0 5.0 36 ------- null} + -t 1.6732 -s 5 -d 4 -p ack -e 40 -c 0 -i 319 -a 0 -x {5.0 0.0 36 ------- null} - -t 1.6732 -s 5 -d 4 -p ack -e 40 -c 0 -i 319 -a 0 -x {5.0 0.0 36 ------- null} h -t 1.6732 -s 5 -d 4 -p ack -e 40 -c 0 -i 319 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.67325 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {0.0 5.0 40 ------- null} + -t 1.67325 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {0.0 5.0 40 ------- null} - -t 1.6736 -s 3 -d 4 -p cbr -e 500 -c 1 -i 301 -a 1 -x {1.0 6.0 153 ------- null} h -t 1.6736 -s 3 -d 4 -p cbr -e 500 -c 1 -i 301 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.674 -s 1 -d 3 -p cbr -e 500 -c 1 -i 314 -a 1 -x {1.0 6.0 160 ------- null} + -t 1.674 -s 3 -d 4 -p cbr -e 500 -c 1 -i 314 -a 1 -x {1.0 6.0 160 ------- null} - -t 1.6776 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 300 -a 1 -x {2.0 7.0 74 ------- null} h -t 1.6776 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 300 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.6796 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 289 -a 0 -x {0.0 5.0 37 ------- null} + -t 1.6796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 289 -a 0 -x {0.0 5.0 37 ------- null} - -t 1.6796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 289 -a 0 -x {0.0 5.0 37 ------- null} h -t 1.6796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 289 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.6796 -s 4 -d 6 -p cbr -e 500 -c 1 -i 285 -a 1 -x {1.0 6.0 145 ------- null} r -t 1.67965 -s 3 -d 0 -p ack -e 40 -c 0 -i 302 -a 0 -x {5.0 0.0 33 ------- null} + -t 1.67965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {0.0 5.0 41 ------- null} - -t 1.67965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {0.0 5.0 41 ------- null} h -t 1.67965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {0.0 5.0 -1 ------- null} + -t 1.68 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 321 -a 1 -x {2.0 7.0 79 ------- null} - -t 1.68 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 321 -a 1 -x {2.0 7.0 79 ------- null} h -t 1.68 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 321 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.68 -s 1 -d 3 -p cbr -e 500 -c 1 -i 322 -a 1 -x {1.0 6.0 163 ------- null} - -t 1.68 -s 1 -d 3 -p cbr -e 500 -c 1 -i 322 -a 1 -x {1.0 6.0 163 ------- null} h -t 1.68 -s 1 -d 3 -p cbr -e 500 -c 1 -i 322 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.6836 -s 3 -d 4 -p cbr -e 500 -c 1 -i 290 -a 1 -x {1.0 6.0 148 ------- null} + -t 1.6836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 290 -a 1 -x {1.0 6.0 148 ------- null} - -t 1.6836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 290 -a 1 -x {1.0 6.0 148 ------- null} h -t 1.6836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 290 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.684 -s 1 -d 3 -p cbr -e 500 -c 1 -i 317 -a 1 -x {1.0 6.0 161 ------- null} + -t 1.684 -s 3 -d 4 -p cbr -e 500 -c 1 -i 317 -a 1 -x {1.0 6.0 161 ------- null} - -t 1.6856 -s 3 -d 4 -p cbr -e 500 -c 1 -i 303 -a 1 -x {1.0 6.0 154 ------- null} h -t 1.6856 -s 3 -d 4 -p cbr -e 500 -c 1 -i 303 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.6876 -s 3 -d 4 -p cbr -e 500 -c 1 -i 292 -a 1 -x {1.0 6.0 149 ------- null} + -t 1.6876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 292 -a 1 -x {1.0 6.0 149 ------- null} - -t 1.6876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 292 -a 1 -x {1.0 6.0 149 ------- null} h -t 1.6876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 292 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.688 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 316 -a 1 -x {2.0 7.0 78 ------- null} + -t 1.688 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 316 -a 1 -x {2.0 7.0 78 ------- null} - -t 1.6896 -s 3 -d 4 -p cbr -e 500 -c 1 -i 305 -a 1 -x {1.0 6.0 155 ------- null} h -t 1.6896 -s 3 -d 4 -p cbr -e 500 -c 1 -i 305 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.69 -s 1 -d 3 -p cbr -e 500 -c 1 -i 323 -a 1 -x {1.0 6.0 164 ------- null} - -t 1.69 -s 1 -d 3 -p cbr -e 500 -c 1 -i 323 -a 1 -x {1.0 6.0 164 ------- null} h -t 1.69 -s 1 -d 3 -p cbr -e 500 -c 1 -i 323 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.69158 -s 4 -d 3 -p ack -e 40 -c 0 -i 309 -a 0 -x {5.0 0.0 34 ------- null} + -t 1.69158 -s 3 -d 0 -p ack -e 40 -c 0 -i 309 -a 0 -x {5.0 0.0 34 ------- null} - -t 1.69158 -s 3 -d 0 -p ack -e 40 -c 0 -i 309 -a 0 -x {5.0 0.0 34 ------- null} h -t 1.69158 -s 3 -d 0 -p ack -e 40 -c 0 -i 309 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.6916 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 284 -a 1 -x {2.0 7.0 70 ------- null} r -t 1.6916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 286 -a 1 -x {1.0 6.0 146 ------- null} r -t 1.69326 -s 5 -d 4 -p ack -e 40 -c 0 -i 319 -a 0 -x {5.0 0.0 36 ------- null} + -t 1.69326 -s 4 -d 3 -p ack -e 40 -c 0 -i 319 -a 0 -x {5.0 0.0 36 ------- null} - -t 1.69326 -s 4 -d 3 -p ack -e 40 -c 0 -i 319 -a 0 -x {5.0 0.0 36 ------- null} h -t 1.69326 -s 4 -d 3 -p ack -e 40 -c 0 -i 319 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.6936 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 304 -a 1 -x {2.0 7.0 75 ------- null} h -t 1.6936 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 304 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.694 -s 1 -d 3 -p cbr -e 500 -c 1 -i 318 -a 1 -x {1.0 6.0 162 ------- null} + -t 1.694 -s 3 -d 4 -p cbr -e 500 -c 1 -i 318 -a 1 -x {1.0 6.0 162 ------- null} r -t 1.6956 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 291 -a 1 -x {2.0 7.0 72 ------- null} + -t 1.6956 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 291 -a 1 -x {2.0 7.0 72 ------- null} - -t 1.6956 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 291 -a 1 -x {2.0 7.0 72 ------- null} h -t 1.6956 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 291 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.6956 -s 4 -d 6 -p cbr -e 500 -c 1 -i 288 -a 1 -x {1.0 6.0 147 ------- null} + -t 1.7 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 324 -a 1 -x {2.0 7.0 80 ------- null} - -t 1.7 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 324 -a 1 -x {2.0 7.0 80 ------- null} h -t 1.7 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 324 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.7 -s 1 -d 3 -p cbr -e 500 -c 1 -i 325 -a 1 -x {1.0 6.0 165 ------- null} - -t 1.7 -s 1 -d 3 -p cbr -e 500 -c 1 -i 325 -a 1 -x {1.0 6.0 165 ------- null} h -t 1.7 -s 1 -d 3 -p cbr -e 500 -c 1 -i 325 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.7012 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 289 -a 0 -x {0.0 5.0 37 ------- null} + -t 1.7012 -s 5 -d 4 -p ack -e 40 -c 0 -i 326 -a 0 -x {5.0 0.0 37 ------- null} - -t 1.7012 -s 5 -d 4 -p ack -e 40 -c 0 -i 326 -a 0 -x {5.0 0.0 37 ------- null} h -t 1.7012 -s 5 -d 4 -p ack -e 40 -c 0 -i 326 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.70125 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {0.0 5.0 41 ------- null} + -t 1.70125 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {0.0 5.0 41 ------- null} - -t 1.7016 -s 3 -d 4 -p cbr -e 500 -c 1 -i 306 -a 1 -x {1.0 6.0 156 ------- null} h -t 1.7016 -s 3 -d 4 -p cbr -e 500 -c 1 -i 306 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.7036 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 293 -a 0 -x {0.0 5.0 38 ------- null} + -t 1.7036 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 293 -a 0 -x {0.0 5.0 38 ------- null} - -t 1.7036 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 293 -a 0 -x {0.0 5.0 38 ------- null} h -t 1.7036 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 293 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.704 -s 1 -d 3 -p cbr -e 500 -c 1 -i 322 -a 1 -x {1.0 6.0 163 ------- null} + -t 1.704 -s 3 -d 4 -p cbr -e 500 -c 1 -i 322 -a 1 -x {1.0 6.0 163 ------- null} - -t 1.7056 -s 3 -d 4 -p cbr -e 500 -c 1 -i 308 -a 1 -x {1.0 6.0 157 ------- null} h -t 1.7056 -s 3 -d 4 -p cbr -e 500 -c 1 -i 308 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.7076 -s 3 -d 4 -p cbr -e 500 -c 1 -i 294 -a 1 -x {1.0 6.0 150 ------- null} + -t 1.7076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 294 -a 1 -x {1.0 6.0 150 ------- null} - -t 1.7076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 294 -a 1 -x {1.0 6.0 150 ------- null} h -t 1.7076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 294 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.7076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 290 -a 1 -x {1.0 6.0 148 ------- null} r -t 1.708 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 321 -a 1 -x {2.0 7.0 79 ------- null} + -t 1.708 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 321 -a 1 -x {2.0 7.0 79 ------- null} - -t 1.7096 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 307 -a 1 -x {2.0 7.0 76 ------- null} h -t 1.7096 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 307 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.71 -s 1 -d 3 -p cbr -e 500 -c 1 -i 327 -a 1 -x {1.0 6.0 166 ------- null} - -t 1.71 -s 1 -d 3 -p cbr -e 500 -c 1 -i 327 -a 1 -x {1.0 6.0 166 ------- null} h -t 1.71 -s 1 -d 3 -p cbr -e 500 -c 1 -i 327 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.7116 -s 4 -d 6 -p cbr -e 500 -c 1 -i 292 -a 1 -x {1.0 6.0 149 ------- null} r -t 1.71165 -s 3 -d 0 -p ack -e 40 -c 0 -i 309 -a 0 -x {5.0 0.0 34 ------- null} + -t 1.71165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 328 -a 0 -x {0.0 5.0 42 ------- null} - -t 1.71165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 328 -a 0 -x {0.0 5.0 42 ------- null} h -t 1.71165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 328 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.714 -s 1 -d 3 -p cbr -e 500 -c 1 -i 323 -a 1 -x {1.0 6.0 164 ------- null} + -t 1.714 -s 3 -d 4 -p cbr -e 500 -c 1 -i 323 -a 1 -x {1.0 6.0 164 ------- null} r -t 1.71558 -s 4 -d 3 -p ack -e 40 -c 0 -i 313 -a 0 -x {5.0 0.0 35 ------- null} + -t 1.71558 -s 3 -d 0 -p ack -e 40 -c 0 -i 313 -a 0 -x {5.0 0.0 35 ------- null} - -t 1.71558 -s 3 -d 0 -p ack -e 40 -c 0 -i 313 -a 0 -x {5.0 0.0 35 ------- null} h -t 1.71558 -s 3 -d 0 -p ack -e 40 -c 0 -i 313 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.7156 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 295 -a 0 -x {0.0 5.0 39 ------- null} + -t 1.7156 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 295 -a 0 -x {0.0 5.0 39 ------- null} - -t 1.7156 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 295 -a 0 -x {0.0 5.0 39 ------- null} h -t 1.7156 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 295 -a 0 -x {0.0 5.0 -1 ------- null} - -t 1.7176 -s 3 -d 4 -p cbr -e 500 -c 1 -i 310 -a 1 -x {1.0 6.0 158 ------- null} h -t 1.7176 -s 3 -d 4 -p cbr -e 500 -c 1 -i 310 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.7196 -s 3 -d 4 -p cbr -e 500 -c 1 -i 297 -a 1 -x {1.0 6.0 151 ------- null} + -t 1.7196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 297 -a 1 -x {1.0 6.0 151 ------- null} - -t 1.7196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 297 -a 1 -x {1.0 6.0 151 ------- null} h -t 1.7196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 297 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.72 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 329 -a 1 -x {2.0 7.0 81 ------- null} - -t 1.72 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 329 -a 1 -x {2.0 7.0 81 ------- null} h -t 1.72 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 329 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.72 -s 1 -d 3 -p cbr -e 500 -c 1 -i 330 -a 1 -x {1.0 6.0 167 ------- null} - -t 1.72 -s 1 -d 3 -p cbr -e 500 -c 1 -i 330 -a 1 -x {1.0 6.0 167 ------- null} h -t 1.72 -s 1 -d 3 -p cbr -e 500 -c 1 -i 330 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.72126 -s 5 -d 4 -p ack -e 40 -c 0 -i 326 -a 0 -x {5.0 0.0 37 ------- null} + -t 1.72126 -s 4 -d 3 -p ack -e 40 -c 0 -i 326 -a 0 -x {5.0 0.0 37 ------- null} - -t 1.72126 -s 4 -d 3 -p ack -e 40 -c 0 -i 326 -a 0 -x {5.0 0.0 37 ------- null} h -t 1.72126 -s 4 -d 3 -p ack -e 40 -c 0 -i 326 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.7216 -s 3 -d 4 -p cbr -e 500 -c 1 -i 312 -a 1 -x {1.0 6.0 159 ------- null} h -t 1.7216 -s 3 -d 4 -p cbr -e 500 -c 1 -i 312 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.7236 -s 3 -d 4 -p cbr -e 500 -c 1 -i 299 -a 1 -x {1.0 6.0 152 ------- null} + -t 1.7236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 299 -a 1 -x {1.0 6.0 152 ------- null} r -t 1.7236 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 291 -a 1 -x {2.0 7.0 72 ------- null} - -t 1.7236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 299 -a 1 -x {1.0 6.0 152 ------- null} h -t 1.7236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 299 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.724 -s 1 -d 3 -p cbr -e 500 -c 1 -i 325 -a 1 -x {1.0 6.0 165 ------- null} + -t 1.724 -s 3 -d 4 -p cbr -e 500 -c 1 -i 325 -a 1 -x {1.0 6.0 165 ------- null} r -t 1.7252 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 293 -a 0 -x {0.0 5.0 38 ------- null} + -t 1.7252 -s 5 -d 4 -p ack -e 40 -c 0 -i 331 -a 0 -x {5.0 0.0 38 ------- null} - -t 1.7252 -s 5 -d 4 -p ack -e 40 -c 0 -i 331 -a 0 -x {5.0 0.0 38 ------- null} h -t 1.7252 -s 5 -d 4 -p ack -e 40 -c 0 -i 331 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.7256 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 311 -a 1 -x {2.0 7.0 77 ------- null} h -t 1.7256 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 311 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.7276 -s 3 -d 4 -p cbr -e 500 -c 1 -i 301 -a 1 -x {1.0 6.0 153 ------- null} + -t 1.7276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 301 -a 1 -x {1.0 6.0 153 ------- null} - -t 1.7276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 301 -a 1 -x {1.0 6.0 153 ------- null} h -t 1.7276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 301 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.728 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 324 -a 1 -x {2.0 7.0 80 ------- null} + -t 1.728 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 324 -a 1 -x {2.0 7.0 80 ------- null} + -t 1.73 -s 1 -d 3 -p cbr -e 500 -c 1 -i 332 -a 1 -x {1.0 6.0 168 ------- null} - -t 1.73 -s 1 -d 3 -p cbr -e 500 -c 1 -i 332 -a 1 -x {1.0 6.0 168 ------- null} h -t 1.73 -s 1 -d 3 -p cbr -e 500 -c 1 -i 332 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.7316 -s 4 -d 6 -p cbr -e 500 -c 1 -i 294 -a 1 -x {1.0 6.0 150 ------- null} r -t 1.73325 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 328 -a 0 -x {0.0 5.0 42 ------- null} + -t 1.73325 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 328 -a 0 -x {0.0 5.0 42 ------- null} - -t 1.7336 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {0.0 5.0 40 ------- null} h -t 1.7336 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.734 -s 1 -d 3 -p cbr -e 500 -c 1 -i 327 -a 1 -x {1.0 6.0 166 ------- null} + -t 1.734 -s 3 -d 4 -p cbr -e 500 -c 1 -i 327 -a 1 -x {1.0 6.0 166 ------- null} r -t 1.7356 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 300 -a 1 -x {2.0 7.0 74 ------- null} + -t 1.7356 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 300 -a 1 -x {2.0 7.0 74 ------- null} - -t 1.7356 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 300 -a 1 -x {2.0 7.0 74 ------- null} h -t 1.7356 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 300 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.73565 -s 3 -d 0 -p ack -e 40 -c 0 -i 313 -a 0 -x {5.0 0.0 35 ------- null} + -t 1.73565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 333 -a 0 -x {0.0 5.0 43 ------- null} - -t 1.73565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 333 -a 0 -x {0.0 5.0 43 ------- null} h -t 1.73565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 333 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.7372 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 295 -a 0 -x {0.0 5.0 39 ------- null} + -t 1.7372 -s 5 -d 4 -p ack -e 40 -c 0 -i 334 -a 0 -x {5.0 0.0 39 ------- null} - -t 1.7372 -s 5 -d 4 -p ack -e 40 -c 0 -i 334 -a 0 -x {5.0 0.0 39 ------- null} h -t 1.7372 -s 5 -d 4 -p ack -e 40 -c 0 -i 334 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.7396 -s 3 -d 4 -p cbr -e 500 -c 1 -i 303 -a 1 -x {1.0 6.0 154 ------- null} + -t 1.7396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 303 -a 1 -x {1.0 6.0 154 ------- null} - -t 1.7396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 303 -a 1 -x {1.0 6.0 154 ------- null} h -t 1.7396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 303 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.74 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 335 -a 1 -x {2.0 7.0 82 ------- null} - -t 1.74 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 335 -a 1 -x {2.0 7.0 82 ------- null} h -t 1.74 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 335 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.74 -s 1 -d 3 -p cbr -e 500 -c 1 -i 336 -a 1 -x {1.0 6.0 169 ------- null} - -t 1.74 -s 1 -d 3 -p cbr -e 500 -c 1 -i 336 -a 1 -x {1.0 6.0 169 ------- null} h -t 1.74 -s 1 -d 3 -p cbr -e 500 -c 1 -i 336 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.7416 -s 3 -d 4 -p cbr -e 500 -c 1 -i 314 -a 1 -x {1.0 6.0 160 ------- null} h -t 1.7416 -s 3 -d 4 -p cbr -e 500 -c 1 -i 314 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.74358 -s 4 -d 3 -p ack -e 40 -c 0 -i 319 -a 0 -x {5.0 0.0 36 ------- null} + -t 1.74358 -s 3 -d 0 -p ack -e 40 -c 0 -i 319 -a 0 -x {5.0 0.0 36 ------- null} - -t 1.74358 -s 3 -d 0 -p ack -e 40 -c 0 -i 319 -a 0 -x {5.0 0.0 36 ------- null} h -t 1.74358 -s 3 -d 0 -p ack -e 40 -c 0 -i 319 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.7436 -s 3 -d 4 -p cbr -e 500 -c 1 -i 305 -a 1 -x {1.0 6.0 155 ------- null} + -t 1.7436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 305 -a 1 -x {1.0 6.0 155 ------- null} r -t 1.7436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 297 -a 1 -x {1.0 6.0 151 ------- null} - -t 1.7436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 305 -a 1 -x {1.0 6.0 155 ------- null} h -t 1.7436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 305 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.744 -s 1 -d 3 -p cbr -e 500 -c 1 -i 330 -a 1 -x {1.0 6.0 167 ------- null} + -t 1.744 -s 3 -d 4 -p cbr -e 500 -c 1 -i 330 -a 1 -x {1.0 6.0 167 ------- null} r -t 1.74526 -s 5 -d 4 -p ack -e 40 -c 0 -i 331 -a 0 -x {5.0 0.0 38 ------- null} + -t 1.74526 -s 4 -d 3 -p ack -e 40 -c 0 -i 331 -a 0 -x {5.0 0.0 38 ------- null} - -t 1.74526 -s 4 -d 3 -p ack -e 40 -c 0 -i 331 -a 0 -x {5.0 0.0 38 ------- null} h -t 1.74526 -s 4 -d 3 -p ack -e 40 -c 0 -i 331 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.7456 -s 3 -d 4 -p cbr -e 500 -c 1 -i 317 -a 1 -x {1.0 6.0 161 ------- null} h -t 1.7456 -s 3 -d 4 -p cbr -e 500 -c 1 -i 317 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.7476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 299 -a 1 -x {1.0 6.0 152 ------- null} r -t 1.748 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 329 -a 1 -x {2.0 7.0 81 ------- null} + -t 1.748 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 329 -a 1 -x {2.0 7.0 81 ------- null} - -t 1.7496 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 316 -a 1 -x {2.0 7.0 78 ------- null} h -t 1.7496 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 316 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.75 -s 1 -d 3 -p cbr -e 500 -c 1 -i 337 -a 1 -x {1.0 6.0 170 ------- null} - -t 1.75 -s 1 -d 3 -p cbr -e 500 -c 1 -i 337 -a 1 -x {1.0 6.0 170 ------- null} h -t 1.75 -s 1 -d 3 -p cbr -e 500 -c 1 -i 337 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.7516 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 304 -a 1 -x {2.0 7.0 75 ------- null} + -t 1.7516 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 304 -a 1 -x {2.0 7.0 75 ------- null} - -t 1.7516 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 304 -a 1 -x {2.0 7.0 75 ------- null} h -t 1.7516 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 304 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.7516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 301 -a 1 -x {1.0 6.0 153 ------- null} r -t 1.754 -s 1 -d 3 -p cbr -e 500 -c 1 -i 332 -a 1 -x {1.0 6.0 168 ------- null} + -t 1.754 -s 3 -d 4 -p cbr -e 500 -c 1 -i 332 -a 1 -x {1.0 6.0 168 ------- null} r -t 1.7556 -s 3 -d 4 -p cbr -e 500 -c 1 -i 306 -a 1 -x {1.0 6.0 156 ------- null} + -t 1.7556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 306 -a 1 -x {1.0 6.0 156 ------- null} - -t 1.7556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 306 -a 1 -x {1.0 6.0 156 ------- null} h -t 1.7556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 306 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.75725 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 333 -a 0 -x {0.0 5.0 43 ------- null} + -t 1.75725 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 333 -a 0 -x {0.0 5.0 43 ------- null} r -t 1.75726 -s 5 -d 4 -p ack -e 40 -c 0 -i 334 -a 0 -x {5.0 0.0 39 ------- null} + -t 1.75726 -s 4 -d 3 -p ack -e 40 -c 0 -i 334 -a 0 -x {5.0 0.0 39 ------- null} - -t 1.75726 -s 4 -d 3 -p ack -e 40 -c 0 -i 334 -a 0 -x {5.0 0.0 39 ------- null} h -t 1.75726 -s 4 -d 3 -p ack -e 40 -c 0 -i 334 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.7576 -s 3 -d 4 -p cbr -e 500 -c 1 -i 318 -a 1 -x {1.0 6.0 162 ------- null} h -t 1.7576 -s 3 -d 4 -p cbr -e 500 -c 1 -i 318 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.7596 -s 3 -d 4 -p cbr -e 500 -c 1 -i 308 -a 1 -x {1.0 6.0 157 ------- null} + -t 1.7596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 308 -a 1 -x {1.0 6.0 157 ------- null} - -t 1.7596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 308 -a 1 -x {1.0 6.0 157 ------- null} h -t 1.7596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 308 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.76 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 338 -a 1 -x {2.0 7.0 83 ------- null} - -t 1.76 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 338 -a 1 -x {2.0 7.0 83 ------- null} h -t 1.76 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 338 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.76 -s 1 -d 3 -p cbr -e 500 -c 1 -i 339 -a 1 -x {1.0 6.0 171 ------- null} - -t 1.76 -s 1 -d 3 -p cbr -e 500 -c 1 -i 339 -a 1 -x {1.0 6.0 171 ------- null} h -t 1.76 -s 1 -d 3 -p cbr -e 500 -c 1 -i 339 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.7616 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {0.0 5.0 41 ------- null} h -t 1.7616 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.7636 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 300 -a 1 -x {2.0 7.0 74 ------- null} r -t 1.7636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 303 -a 1 -x {1.0 6.0 154 ------- null} r -t 1.76365 -s 3 -d 0 -p ack -e 40 -c 0 -i 319 -a 0 -x {5.0 0.0 36 ------- null} + -t 1.76365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 340 -a 0 -x {0.0 5.0 44 ------- null} - -t 1.76365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 340 -a 0 -x {0.0 5.0 44 ------- null} h -t 1.76365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 340 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.764 -s 1 -d 3 -p cbr -e 500 -c 1 -i 336 -a 1 -x {1.0 6.0 169 ------- null} + -t 1.764 -s 3 -d 4 -p cbr -e 500 -c 1 -i 336 -a 1 -x {1.0 6.0 169 ------- null} r -t 1.7676 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 307 -a 1 -x {2.0 7.0 76 ------- null} + -t 1.7676 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 307 -a 1 -x {2.0 7.0 76 ------- null} - -t 1.7676 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 307 -a 1 -x {2.0 7.0 76 ------- null} h -t 1.7676 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 307 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.7676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 305 -a 1 -x {1.0 6.0 155 ------- null} r -t 1.768 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 335 -a 1 -x {2.0 7.0 82 ------- null} + -t 1.768 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 335 -a 1 -x {2.0 7.0 82 ------- null} - -t 1.7696 -s 3 -d 4 -p cbr -e 500 -c 1 -i 322 -a 1 -x {1.0 6.0 163 ------- null} h -t 1.7696 -s 3 -d 4 -p cbr -e 500 -c 1 -i 322 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.77 -s 1 -d 3 -p cbr -e 500 -c 1 -i 341 -a 1 -x {1.0 6.0 172 ------- null} - -t 1.77 -s 1 -d 3 -p cbr -e 500 -c 1 -i 341 -a 1 -x {1.0 6.0 172 ------- null} h -t 1.77 -s 1 -d 3 -p cbr -e 500 -c 1 -i 341 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.77158 -s 4 -d 3 -p ack -e 40 -c 0 -i 326 -a 0 -x {5.0 0.0 37 ------- null} + -t 1.77158 -s 3 -d 0 -p ack -e 40 -c 0 -i 326 -a 0 -x {5.0 0.0 37 ------- null} - -t 1.77158 -s 3 -d 0 -p ack -e 40 -c 0 -i 326 -a 0 -x {5.0 0.0 37 ------- null} h -t 1.77158 -s 3 -d 0 -p ack -e 40 -c 0 -i 326 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.7716 -s 3 -d 4 -p cbr -e 500 -c 1 -i 310 -a 1 -x {1.0 6.0 158 ------- null} + -t 1.7716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 310 -a 1 -x {1.0 6.0 158 ------- null} - -t 1.7716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 310 -a 1 -x {1.0 6.0 158 ------- null} h -t 1.7716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 310 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.7736 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 321 -a 1 -x {2.0 7.0 79 ------- null} h -t 1.7736 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 321 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.774 -s 1 -d 3 -p cbr -e 500 -c 1 -i 337 -a 1 -x {1.0 6.0 170 ------- null} + -t 1.774 -s 3 -d 4 -p cbr -e 500 -c 1 -i 337 -a 1 -x {1.0 6.0 170 ------- null} r -t 1.7756 -s 3 -d 4 -p cbr -e 500 -c 1 -i 312 -a 1 -x {1.0 6.0 159 ------- null} + -t 1.7756 -s 4 -d 6 -p cbr -e 500 -c 1 -i 312 -a 1 -x {1.0 6.0 159 ------- null} - -t 1.7756 -s 4 -d 6 -p cbr -e 500 -c 1 -i 312 -a 1 -x {1.0 6.0 159 ------- null} h -t 1.7756 -s 4 -d 6 -p cbr -e 500 -c 1 -i 312 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.7796 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 304 -a 1 -x {2.0 7.0 75 ------- null} r -t 1.7796 -s 4 -d 6 -p cbr -e 500 -c 1 -i 306 -a 1 -x {1.0 6.0 156 ------- null} + -t 1.78 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 342 -a 1 -x {2.0 7.0 84 ------- null} - -t 1.78 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 342 -a 1 -x {2.0 7.0 84 ------- null} h -t 1.78 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 342 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.78 -s 1 -d 3 -p cbr -e 500 -c 1 -i 343 -a 1 -x {1.0 6.0 173 ------- null} - -t 1.78 -s 1 -d 3 -p cbr -e 500 -c 1 -i 343 -a 1 -x {1.0 6.0 173 ------- null} h -t 1.78 -s 1 -d 3 -p cbr -e 500 -c 1 -i 343 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.7816 -s 3 -d 4 -p cbr -e 500 -c 1 -i 323 -a 1 -x {1.0 6.0 164 ------- null} h -t 1.7816 -s 3 -d 4 -p cbr -e 500 -c 1 -i 323 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.7836 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 311 -a 1 -x {2.0 7.0 77 ------- null} + -t 1.7836 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 311 -a 1 -x {2.0 7.0 77 ------- null} - -t 1.7836 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 311 -a 1 -x {2.0 7.0 77 ------- null} h -t 1.7836 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 311 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.7836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 308 -a 1 -x {1.0 6.0 157 ------- null} r -t 1.784 -s 1 -d 3 -p cbr -e 500 -c 1 -i 339 -a 1 -x {1.0 6.0 171 ------- null} + -t 1.784 -s 3 -d 4 -p cbr -e 500 -c 1 -i 339 -a 1 -x {1.0 6.0 171 ------- null} r -t 1.78525 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 340 -a 0 -x {0.0 5.0 44 ------- null} + -t 1.78525 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 340 -a 0 -x {0.0 5.0 44 ------- null} - -t 1.7856 -s 3 -d 4 -p cbr -e 500 -c 1 -i 325 -a 1 -x {1.0 6.0 165 ------- null} h -t 1.7856 -s 3 -d 4 -p cbr -e 500 -c 1 -i 325 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.788 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 338 -a 1 -x {2.0 7.0 83 ------- null} + -t 1.788 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 338 -a 1 -x {2.0 7.0 83 ------- null} - -t 1.7896 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 324 -a 1 -x {2.0 7.0 80 ------- null} h -t 1.7896 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 324 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.79 -s 1 -d 3 -p cbr -e 500 -c 1 -i 344 -a 1 -x {1.0 6.0 174 ------- null} - -t 1.79 -s 1 -d 3 -p cbr -e 500 -c 1 -i 344 -a 1 -x {1.0 6.0 174 ------- null} h -t 1.79 -s 1 -d 3 -p cbr -e 500 -c 1 -i 344 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.7916 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {0.0 5.0 40 ------- null} + -t 1.7916 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {0.0 5.0 40 ------- null} - -t 1.7916 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {0.0 5.0 40 ------- null} h -t 1.7916 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.79165 -s 3 -d 0 -p ack -e 40 -c 0 -i 326 -a 0 -x {5.0 0.0 37 ------- null} + -t 1.79165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {0.0 5.0 45 ------- null} - -t 1.79165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {0.0 5.0 45 ------- null} h -t 1.79165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.794 -s 1 -d 3 -p cbr -e 500 -c 1 -i 341 -a 1 -x {1.0 6.0 172 ------- null} + -t 1.794 -s 3 -d 4 -p cbr -e 500 -c 1 -i 341 -a 1 -x {1.0 6.0 172 ------- null} r -t 1.79558 -s 4 -d 3 -p ack -e 40 -c 0 -i 331 -a 0 -x {5.0 0.0 38 ------- null} + -t 1.79558 -s 3 -d 0 -p ack -e 40 -c 0 -i 331 -a 0 -x {5.0 0.0 38 ------- null} - -t 1.79558 -s 3 -d 0 -p ack -e 40 -c 0 -i 331 -a 0 -x {5.0 0.0 38 ------- null} h -t 1.79558 -s 3 -d 0 -p ack -e 40 -c 0 -i 331 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.7956 -s 3 -d 4 -p cbr -e 500 -c 1 -i 314 -a 1 -x {1.0 6.0 160 ------- null} + -t 1.7956 -s 4 -d 6 -p cbr -e 500 -c 1 -i 314 -a 1 -x {1.0 6.0 160 ------- null} - -t 1.7956 -s 4 -d 6 -p cbr -e 500 -c 1 -i 314 -a 1 -x {1.0 6.0 160 ------- null} h -t 1.7956 -s 4 -d 6 -p cbr -e 500 -c 1 -i 314 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.7956 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 307 -a 1 -x {2.0 7.0 76 ------- null} r -t 1.7956 -s 4 -d 6 -p cbr -e 500 -c 1 -i 310 -a 1 -x {1.0 6.0 158 ------- null} - -t 1.7976 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 328 -a 0 -x {0.0 5.0 42 ------- null} h -t 1.7976 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 328 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.7996 -s 3 -d 4 -p cbr -e 500 -c 1 -i 317 -a 1 -x {1.0 6.0 161 ------- null} + -t 1.7996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 317 -a 1 -x {1.0 6.0 161 ------- null} r -t 1.7996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 312 -a 1 -x {1.0 6.0 159 ------- null} - -t 1.7996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 317 -a 1 -x {1.0 6.0 161 ------- null} h -t 1.7996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 317 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.8 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 346 -a 1 -x {2.0 7.0 85 ------- null} - -t 1.8 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 346 -a 1 -x {2.0 7.0 85 ------- null} h -t 1.8 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 346 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.8 -s 1 -d 3 -p cbr -e 500 -c 1 -i 347 -a 1 -x {1.0 6.0 175 ------- null} - -t 1.8 -s 1 -d 3 -p cbr -e 500 -c 1 -i 347 -a 1 -x {1.0 6.0 175 ------- null} h -t 1.8 -s 1 -d 3 -p cbr -e 500 -c 1 -i 347 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.804 -s 1 -d 3 -p cbr -e 500 -c 1 -i 343 -a 1 -x {1.0 6.0 173 ------- null} + -t 1.804 -s 3 -d 4 -p cbr -e 500 -c 1 -i 343 -a 1 -x {1.0 6.0 173 ------- null} - -t 1.8056 -s 3 -d 4 -p cbr -e 500 -c 1 -i 327 -a 1 -x {1.0 6.0 166 ------- null} h -t 1.8056 -s 3 -d 4 -p cbr -e 500 -c 1 -i 327 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.80758 -s 4 -d 3 -p ack -e 40 -c 0 -i 334 -a 0 -x {5.0 0.0 39 ------- null} + -t 1.80758 -s 3 -d 0 -p ack -e 40 -c 0 -i 334 -a 0 -x {5.0 0.0 39 ------- null} - -t 1.80758 -s 3 -d 0 -p ack -e 40 -c 0 -i 334 -a 0 -x {5.0 0.0 39 ------- null} h -t 1.80758 -s 3 -d 0 -p ack -e 40 -c 0 -i 334 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.8076 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 316 -a 1 -x {2.0 7.0 78 ------- null} + -t 1.8076 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 316 -a 1 -x {2.0 7.0 78 ------- null} - -t 1.8076 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 316 -a 1 -x {2.0 7.0 78 ------- null} h -t 1.8076 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 316 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.808 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 342 -a 1 -x {2.0 7.0 84 ------- null} + -t 1.808 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 342 -a 1 -x {2.0 7.0 84 ------- null} - -t 1.8096 -s 3 -d 4 -p cbr -e 500 -c 1 -i 330 -a 1 -x {1.0 6.0 167 ------- null} h -t 1.8096 -s 3 -d 4 -p cbr -e 500 -c 1 -i 330 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.81 -s 1 -d 3 -p cbr -e 500 -c 1 -i 348 -a 1 -x {1.0 6.0 176 ------- null} - -t 1.81 -s 1 -d 3 -p cbr -e 500 -c 1 -i 348 -a 1 -x {1.0 6.0 176 ------- null} h -t 1.81 -s 1 -d 3 -p cbr -e 500 -c 1 -i 348 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.8116 -s 3 -d 4 -p cbr -e 500 -c 1 -i 318 -a 1 -x {1.0 6.0 162 ------- null} + -t 1.8116 -s 4 -d 6 -p cbr -e 500 -c 1 -i 318 -a 1 -x {1.0 6.0 162 ------- null} - -t 1.8116 -s 4 -d 6 -p cbr -e 500 -c 1 -i 318 -a 1 -x {1.0 6.0 162 ------- null} h -t 1.8116 -s 4 -d 6 -p cbr -e 500 -c 1 -i 318 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.8116 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 311 -a 1 -x {2.0 7.0 77 ------- null} r -t 1.8132 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {0.0 5.0 40 ------- null} + -t 1.8132 -s 5 -d 4 -p ack -e 40 -c 0 -i 349 -a 0 -x {5.0 0.0 40 ------- null} - -t 1.8132 -s 5 -d 4 -p ack -e 40 -c 0 -i 349 -a 0 -x {5.0 0.0 40 ------- null} h -t 1.8132 -s 5 -d 4 -p ack -e 40 -c 0 -i 349 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.81325 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {0.0 5.0 45 ------- null} + -t 1.81325 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {0.0 5.0 45 ------- null} - -t 1.8136 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 329 -a 1 -x {2.0 7.0 81 ------- null} h -t 1.8136 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 329 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.814 -s 1 -d 3 -p cbr -e 500 -c 1 -i 344 -a 1 -x {1.0 6.0 174 ------- null} + -t 1.814 -s 3 -d 4 -p cbr -e 500 -c 1 -i 344 -a 1 -x {1.0 6.0 174 ------- null} r -t 1.81565 -s 3 -d 0 -p ack -e 40 -c 0 -i 331 -a 0 -x {5.0 0.0 38 ------- null} + -t 1.81565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {0.0 5.0 46 ------- null} - -t 1.81565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {0.0 5.0 46 ------- null} h -t 1.81565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.8196 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {0.0 5.0 41 ------- null} + -t 1.8196 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {0.0 5.0 41 ------- null} - -t 1.8196 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {0.0 5.0 41 ------- null} h -t 1.8196 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.8196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 314 -a 1 -x {1.0 6.0 160 ------- null} + -t 1.82 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 351 -a 1 -x {2.0 7.0 86 ------- null} - -t 1.82 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 351 -a 1 -x {2.0 7.0 86 ------- null} h -t 1.82 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 351 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.82 -s 1 -d 3 -p cbr -e 500 -c 1 -i 352 -a 1 -x {1.0 6.0 177 ------- null} - -t 1.82 -s 1 -d 3 -p cbr -e 500 -c 1 -i 352 -a 1 -x {1.0 6.0 177 ------- null} h -t 1.82 -s 1 -d 3 -p cbr -e 500 -c 1 -i 352 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.8216 -s 3 -d 4 -p cbr -e 500 -c 1 -i 332 -a 1 -x {1.0 6.0 168 ------- null} h -t 1.8216 -s 3 -d 4 -p cbr -e 500 -c 1 -i 332 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.8236 -s 3 -d 4 -p cbr -e 500 -c 1 -i 322 -a 1 -x {1.0 6.0 163 ------- null} + -t 1.8236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 322 -a 1 -x {1.0 6.0 163 ------- null} - -t 1.8236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 322 -a 1 -x {1.0 6.0 163 ------- null} h -t 1.8236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 322 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.8236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 317 -a 1 -x {1.0 6.0 161 ------- null} r -t 1.824 -s 1 -d 3 -p cbr -e 500 -c 1 -i 347 -a 1 -x {1.0 6.0 175 ------- null} + -t 1.824 -s 3 -d 4 -p cbr -e 500 -c 1 -i 347 -a 1 -x {1.0 6.0 175 ------- null} - -t 1.8256 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 333 -a 0 -x {0.0 5.0 43 ------- null} h -t 1.8256 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 333 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.82765 -s 3 -d 0 -p ack -e 40 -c 0 -i 334 -a 0 -x {5.0 0.0 39 ------- null} + -t 1.82765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {0.0 5.0 47 ------- null} - -t 1.82765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {0.0 5.0 47 ------- null} h -t 1.82765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.828 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 346 -a 1 -x {2.0 7.0 85 ------- null} + -t 1.828 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 346 -a 1 -x {2.0 7.0 85 ------- null} + -t 1.83 -s 1 -d 3 -p cbr -e 500 -c 1 -i 354 -a 1 -x {1.0 6.0 178 ------- null} - -t 1.83 -s 1 -d 3 -p cbr -e 500 -c 1 -i 354 -a 1 -x {1.0 6.0 178 ------- null} h -t 1.83 -s 1 -d 3 -p cbr -e 500 -c 1 -i 354 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.8316 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 321 -a 1 -x {2.0 7.0 79 ------- null} + -t 1.8316 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 321 -a 1 -x {2.0 7.0 79 ------- null} - -t 1.8316 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 321 -a 1 -x {2.0 7.0 79 ------- null} h -t 1.8316 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 321 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.83326 -s 5 -d 4 -p ack -e 40 -c 0 -i 349 -a 0 -x {5.0 0.0 40 ------- null} + -t 1.83326 -s 4 -d 3 -p ack -e 40 -c 0 -i 349 -a 0 -x {5.0 0.0 40 ------- null} - -t 1.83326 -s 4 -d 3 -p ack -e 40 -c 0 -i 349 -a 0 -x {5.0 0.0 40 ------- null} h -t 1.83326 -s 4 -d 3 -p ack -e 40 -c 0 -i 349 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.8336 -s 3 -d 4 -p cbr -e 500 -c 1 -i 336 -a 1 -x {1.0 6.0 169 ------- null} h -t 1.8336 -s 3 -d 4 -p cbr -e 500 -c 1 -i 336 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.834 -s 1 -d 3 -p cbr -e 500 -c 1 -i 348 -a 1 -x {1.0 6.0 176 ------- null} + -t 1.834 -s 3 -d 4 -p cbr -e 500 -c 1 -i 348 -a 1 -x {1.0 6.0 176 ------- null} r -t 1.8356 -s 3 -d 4 -p cbr -e 500 -c 1 -i 323 -a 1 -x {1.0 6.0 164 ------- null} + -t 1.8356 -s 4 -d 6 -p cbr -e 500 -c 1 -i 323 -a 1 -x {1.0 6.0 164 ------- null} - -t 1.8356 -s 4 -d 6 -p cbr -e 500 -c 1 -i 323 -a 1 -x {1.0 6.0 164 ------- null} h -t 1.8356 -s 4 -d 6 -p cbr -e 500 -c 1 -i 323 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.8356 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 316 -a 1 -x {2.0 7.0 78 ------- null} r -t 1.8356 -s 4 -d 6 -p cbr -e 500 -c 1 -i 318 -a 1 -x {1.0 6.0 162 ------- null} r -t 1.83725 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {0.0 5.0 46 ------- null} + -t 1.83725 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {0.0 5.0 46 ------- null} - -t 1.8376 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 335 -a 1 -x {2.0 7.0 82 ------- null} h -t 1.8376 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 335 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.8396 -s 3 -d 4 -p cbr -e 500 -c 1 -i 325 -a 1 -x {1.0 6.0 165 ------- null} + -t 1.8396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 325 -a 1 -x {1.0 6.0 165 ------- null} - -t 1.8396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 325 -a 1 -x {1.0 6.0 165 ------- null} h -t 1.8396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 325 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.84 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 355 -a 1 -x {2.0 7.0 87 ------- null} - -t 1.84 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 355 -a 1 -x {2.0 7.0 87 ------- null} h -t 1.84 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 355 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.84 -s 1 -d 3 -p cbr -e 500 -c 1 -i 356 -a 1 -x {1.0 6.0 179 ------- null} - -t 1.84 -s 1 -d 3 -p cbr -e 500 -c 1 -i 356 -a 1 -x {1.0 6.0 179 ------- null} h -t 1.84 -s 1 -d 3 -p cbr -e 500 -c 1 -i 356 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.8412 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {0.0 5.0 41 ------- null} + -t 1.8412 -s 5 -d 4 -p ack -e 40 -c 0 -i 357 -a 0 -x {5.0 0.0 41 ------- null} - -t 1.8412 -s 5 -d 4 -p ack -e 40 -c 0 -i 357 -a 0 -x {5.0 0.0 41 ------- null} h -t 1.8412 -s 5 -d 4 -p ack -e 40 -c 0 -i 357 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.844 -s 1 -d 3 -p cbr -e 500 -c 1 -i 352 -a 1 -x {1.0 6.0 177 ------- null} + -t 1.844 -s 3 -d 4 -p cbr -e 500 -c 1 -i 352 -a 1 -x {1.0 6.0 177 ------- null} - -t 1.8456 -s 3 -d 4 -p cbr -e 500 -c 1 -i 337 -a 1 -x {1.0 6.0 170 ------- null} h -t 1.8456 -s 3 -d 4 -p cbr -e 500 -c 1 -i 337 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.8476 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 324 -a 1 -x {2.0 7.0 80 ------- null} + -t 1.8476 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 324 -a 1 -x {2.0 7.0 80 ------- null} - -t 1.8476 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 324 -a 1 -x {2.0 7.0 80 ------- null} h -t 1.8476 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 324 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.8476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 322 -a 1 -x {1.0 6.0 163 ------- null} r -t 1.848 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 351 -a 1 -x {2.0 7.0 86 ------- null} + -t 1.848 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 351 -a 1 -x {2.0 7.0 86 ------- null} r -t 1.84925 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {0.0 5.0 47 ------- null} + -t 1.84925 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {0.0 5.0 47 ------- null} d -t 1.84925 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {0.0 5.0 47 ------- null} - -t 1.8496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 339 -a 1 -x {1.0 6.0 171 ------- null} h -t 1.8496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 339 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.85 -s 1 -d 3 -p cbr -e 500 -c 1 -i 358 -a 1 -x {1.0 6.0 180 ------- null} - -t 1.85 -s 1 -d 3 -p cbr -e 500 -c 1 -i 358 -a 1 -x {1.0 6.0 180 ------- null} h -t 1.85 -s 1 -d 3 -p cbr -e 500 -c 1 -i 358 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.8536 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 340 -a 0 -x {0.0 5.0 44 ------- null} h -t 1.8536 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 340 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.854 -s 1 -d 3 -p cbr -e 500 -c 1 -i 354 -a 1 -x {1.0 6.0 178 ------- null} + -t 1.854 -s 3 -d 4 -p cbr -e 500 -c 1 -i 354 -a 1 -x {1.0 6.0 178 ------- null} r -t 1.8556 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 328 -a 0 -x {0.0 5.0 42 ------- null} + -t 1.8556 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 328 -a 0 -x {0.0 5.0 42 ------- null} - -t 1.8556 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 328 -a 0 -x {0.0 5.0 42 ------- null} h -t 1.8556 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 328 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.8596 -s 3 -d 4 -p cbr -e 500 -c 1 -i 327 -a 1 -x {1.0 6.0 166 ------- null} + -t 1.8596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 327 -a 1 -x {1.0 6.0 166 ------- null} - -t 1.8596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 327 -a 1 -x {1.0 6.0 166 ------- null} h -t 1.8596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 327 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.8596 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 321 -a 1 -x {2.0 7.0 79 ------- null} r -t 1.8596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 323 -a 1 -x {1.0 6.0 164 ------- null} + -t 1.86 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 359 -a 1 -x {2.0 7.0 88 ------- null} - -t 1.86 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 359 -a 1 -x {2.0 7.0 88 ------- null} h -t 1.86 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 359 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.86 -s 1 -d 3 -p cbr -e 500 -c 1 -i 360 -a 1 -x {1.0 6.0 181 ------- null} - -t 1.86 -s 1 -d 3 -p cbr -e 500 -c 1 -i 360 -a 1 -x {1.0 6.0 181 ------- null} h -t 1.86 -s 1 -d 3 -p cbr -e 500 -c 1 -i 360 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.86126 -s 5 -d 4 -p ack -e 40 -c 0 -i 357 -a 0 -x {5.0 0.0 41 ------- null} + -t 1.86126 -s 4 -d 3 -p ack -e 40 -c 0 -i 357 -a 0 -x {5.0 0.0 41 ------- null} - -t 1.86126 -s 4 -d 3 -p ack -e 40 -c 0 -i 357 -a 0 -x {5.0 0.0 41 ------- null} h -t 1.86126 -s 4 -d 3 -p ack -e 40 -c 0 -i 357 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.8616 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 338 -a 1 -x {2.0 7.0 83 ------- null} h -t 1.8616 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 338 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.8636 -s 3 -d 4 -p cbr -e 500 -c 1 -i 330 -a 1 -x {1.0 6.0 167 ------- null} + -t 1.8636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 330 -a 1 -x {1.0 6.0 167 ------- null} r -t 1.8636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 325 -a 1 -x {1.0 6.0 165 ------- null} - -t 1.8636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 330 -a 1 -x {1.0 6.0 167 ------- null} h -t 1.8636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 330 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.864 -s 1 -d 3 -p cbr -e 500 -c 1 -i 356 -a 1 -x {1.0 6.0 179 ------- null} + -t 1.864 -s 3 -d 4 -p cbr -e 500 -c 1 -i 356 -a 1 -x {1.0 6.0 179 ------- null} r -t 1.868 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 355 -a 1 -x {2.0 7.0 87 ------- null} + -t 1.868 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 355 -a 1 -x {2.0 7.0 87 ------- null} - -t 1.8696 -s 3 -d 4 -p cbr -e 500 -c 1 -i 341 -a 1 -x {1.0 6.0 172 ------- null} h -t 1.8696 -s 3 -d 4 -p cbr -e 500 -c 1 -i 341 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.87 -s 1 -d 3 -p cbr -e 500 -c 1 -i 361 -a 1 -x {1.0 6.0 182 ------- null} - -t 1.87 -s 1 -d 3 -p cbr -e 500 -c 1 -i 361 -a 1 -x {1.0 6.0 182 ------- null} h -t 1.87 -s 1 -d 3 -p cbr -e 500 -c 1 -i 361 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.8716 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 329 -a 1 -x {2.0 7.0 81 ------- null} + -t 1.8716 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 329 -a 1 -x {2.0 7.0 81 ------- null} - -t 1.8716 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 329 -a 1 -x {2.0 7.0 81 ------- null} h -t 1.8716 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 329 -a 1 -x {2.0 7.0 -1 ------- null} - -t 1.8736 -s 3 -d 4 -p cbr -e 500 -c 1 -i 343 -a 1 -x {1.0 6.0 173 ------- null} h -t 1.8736 -s 3 -d 4 -p cbr -e 500 -c 1 -i 343 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.874 -s 1 -d 3 -p cbr -e 500 -c 1 -i 358 -a 1 -x {1.0 6.0 180 ------- null} + -t 1.874 -s 3 -d 4 -p cbr -e 500 -c 1 -i 358 -a 1 -x {1.0 6.0 180 ------- null} r -t 1.8756 -s 3 -d 4 -p cbr -e 500 -c 1 -i 332 -a 1 -x {1.0 6.0 168 ------- null} + -t 1.8756 -s 4 -d 6 -p cbr -e 500 -c 1 -i 332 -a 1 -x {1.0 6.0 168 ------- null} - -t 1.8756 -s 4 -d 6 -p cbr -e 500 -c 1 -i 332 -a 1 -x {1.0 6.0 168 ------- null} h -t 1.8756 -s 4 -d 6 -p cbr -e 500 -c 1 -i 332 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.8756 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 324 -a 1 -x {2.0 7.0 80 ------- null} r -t 1.8772 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 328 -a 0 -x {0.0 5.0 42 ------- null} + -t 1.8772 -s 5 -d 4 -p ack -e 40 -c 0 -i 362 -a 0 -x {5.0 0.0 42 ------- null} - -t 1.8772 -s 5 -d 4 -p ack -e 40 -c 0 -i 362 -a 0 -x {5.0 0.0 42 ------- null} h -t 1.8772 -s 5 -d 4 -p ack -e 40 -c 0 -i 362 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.8776 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 342 -a 1 -x {2.0 7.0 84 ------- null} h -t 1.8776 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 342 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.88 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 363 -a 1 -x {2.0 7.0 89 ------- null} - -t 1.88 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 363 -a 1 -x {2.0 7.0 89 ------- null} h -t 1.88 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 363 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.88 -s 1 -d 3 -p cbr -e 500 -c 1 -i 364 -a 1 -x {1.0 6.0 183 ------- null} - -t 1.88 -s 1 -d 3 -p cbr -e 500 -c 1 -i 364 -a 1 -x {1.0 6.0 183 ------- null} h -t 1.88 -s 1 -d 3 -p cbr -e 500 -c 1 -i 364 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.88358 -s 4 -d 3 -p ack -e 40 -c 0 -i 349 -a 0 -x {5.0 0.0 40 ------- null} + -t 1.88358 -s 3 -d 0 -p ack -e 40 -c 0 -i 349 -a 0 -x {5.0 0.0 40 ------- null} - -t 1.88358 -s 3 -d 0 -p ack -e 40 -c 0 -i 349 -a 0 -x {5.0 0.0 40 ------- null} h -t 1.88358 -s 3 -d 0 -p ack -e 40 -c 0 -i 349 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.8836 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 333 -a 0 -x {0.0 5.0 43 ------- null} + -t 1.8836 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 333 -a 0 -x {0.0 5.0 43 ------- null} - -t 1.8836 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 333 -a 0 -x {0.0 5.0 43 ------- null} h -t 1.8836 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 333 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.8836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 327 -a 1 -x {1.0 6.0 166 ------- null} r -t 1.884 -s 1 -d 3 -p cbr -e 500 -c 1 -i 360 -a 1 -x {1.0 6.0 181 ------- null} + -t 1.884 -s 3 -d 4 -p cbr -e 500 -c 1 -i 360 -a 1 -x {1.0 6.0 181 ------- null} - -t 1.8856 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {0.0 5.0 45 ------- null} h -t 1.8856 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.8876 -s 3 -d 4 -p cbr -e 500 -c 1 -i 336 -a 1 -x {1.0 6.0 169 ------- null} + -t 1.8876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 336 -a 1 -x {1.0 6.0 169 ------- null} - -t 1.8876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 336 -a 1 -x {1.0 6.0 169 ------- null} h -t 1.8876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 336 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.8876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 330 -a 1 -x {1.0 6.0 167 ------- null} r -t 1.888 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 359 -a 1 -x {2.0 7.0 88 ------- null} + -t 1.888 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 359 -a 1 -x {2.0 7.0 88 ------- null} + -t 1.89 -s 1 -d 3 -p cbr -e 500 -c 1 -i 365 -a 1 -x {1.0 6.0 184 ------- null} - -t 1.89 -s 1 -d 3 -p cbr -e 500 -c 1 -i 365 -a 1 -x {1.0 6.0 184 ------- null} h -t 1.89 -s 1 -d 3 -p cbr -e 500 -c 1 -i 365 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.8936 -s 3 -d 4 -p cbr -e 500 -c 1 -i 344 -a 1 -x {1.0 6.0 174 ------- null} h -t 1.8936 -s 3 -d 4 -p cbr -e 500 -c 1 -i 344 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.894 -s 1 -d 3 -p cbr -e 500 -c 1 -i 361 -a 1 -x {1.0 6.0 182 ------- null} + -t 1.894 -s 3 -d 4 -p cbr -e 500 -c 1 -i 361 -a 1 -x {1.0 6.0 182 ------- null} r -t 1.8956 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 335 -a 1 -x {2.0 7.0 82 ------- null} + -t 1.8956 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 335 -a 1 -x {2.0 7.0 82 ------- null} - -t 1.8956 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 335 -a 1 -x {2.0 7.0 82 ------- null} h -t 1.8956 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 335 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.89726 -s 5 -d 4 -p ack -e 40 -c 0 -i 362 -a 0 -x {5.0 0.0 42 ------- null} + -t 1.89726 -s 4 -d 3 -p ack -e 40 -c 0 -i 362 -a 0 -x {5.0 0.0 42 ------- null} - -t 1.89726 -s 4 -d 3 -p ack -e 40 -c 0 -i 362 -a 0 -x {5.0 0.0 42 ------- null} h -t 1.89726 -s 4 -d 3 -p ack -e 40 -c 0 -i 362 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.8976 -s 3 -d 4 -p cbr -e 500 -c 1 -i 347 -a 1 -x {1.0 6.0 175 ------- null} h -t 1.8976 -s 3 -d 4 -p cbr -e 500 -c 1 -i 347 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.8996 -s 3 -d 4 -p cbr -e 500 -c 1 -i 337 -a 1 -x {1.0 6.0 170 ------- null} + -t 1.8996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 337 -a 1 -x {1.0 6.0 170 ------- null} - -t 1.8996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 337 -a 1 -x {1.0 6.0 170 ------- null} h -t 1.8996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 337 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.8996 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 329 -a 1 -x {2.0 7.0 81 ------- null} r -t 1.8996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 332 -a 1 -x {1.0 6.0 168 ------- null} + -t 1.9 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 366 -a 1 -x {2.0 7.0 90 ------- null} - -t 1.9 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 366 -a 1 -x {2.0 7.0 90 ------- null} h -t 1.9 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 366 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.9 -s 1 -d 3 -p cbr -e 500 -c 1 -i 367 -a 1 -x {1.0 6.0 185 ------- null} - -t 1.9 -s 1 -d 3 -p cbr -e 500 -c 1 -i 367 -a 1 -x {1.0 6.0 185 ------- null} h -t 1.9 -s 1 -d 3 -p cbr -e 500 -c 1 -i 367 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.9016 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 346 -a 1 -x {2.0 7.0 85 ------- null} h -t 1.9016 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 346 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.9036 -s 3 -d 4 -p cbr -e 500 -c 1 -i 339 -a 1 -x {1.0 6.0 171 ------- null} + -t 1.9036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 339 -a 1 -x {1.0 6.0 171 ------- null} - -t 1.9036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 339 -a 1 -x {1.0 6.0 171 ------- null} h -t 1.9036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 339 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.90365 -s 3 -d 0 -p ack -e 40 -c 0 -i 349 -a 0 -x {5.0 0.0 40 ------- null} + -t 1.90365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 368 -a 0 -x {0.0 5.0 48 ------- null} - -t 1.90365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 368 -a 0 -x {0.0 5.0 48 ------- null} h -t 1.90365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 368 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.904 -s 1 -d 3 -p cbr -e 500 -c 1 -i 364 -a 1 -x {1.0 6.0 183 ------- null} + -t 1.904 -s 3 -d 4 -p cbr -e 500 -c 1 -i 364 -a 1 -x {1.0 6.0 183 ------- null} r -t 1.9052 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 333 -a 0 -x {0.0 5.0 43 ------- null} + -t 1.9052 -s 5 -d 4 -p ack -e 40 -c 0 -i 369 -a 0 -x {5.0 0.0 43 ------- null} - -t 1.9052 -s 5 -d 4 -p ack -e 40 -c 0 -i 369 -a 0 -x {5.0 0.0 43 ------- null} h -t 1.9052 -s 5 -d 4 -p ack -e 40 -c 0 -i 369 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.908 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 363 -a 1 -x {2.0 7.0 89 ------- null} + -t 1.908 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 363 -a 1 -x {2.0 7.0 89 ------- null} - -t 1.9096 -s 3 -d 4 -p cbr -e 500 -c 1 -i 348 -a 1 -x {1.0 6.0 176 ------- null} h -t 1.9096 -s 3 -d 4 -p cbr -e 500 -c 1 -i 348 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.91 -s 1 -d 3 -p cbr -e 500 -c 1 -i 370 -a 1 -x {1.0 6.0 186 ------- null} - -t 1.91 -s 1 -d 3 -p cbr -e 500 -c 1 -i 370 -a 1 -x {1.0 6.0 186 ------- null} h -t 1.91 -s 1 -d 3 -p cbr -e 500 -c 1 -i 370 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.91158 -s 4 -d 3 -p ack -e 40 -c 0 -i 357 -a 0 -x {5.0 0.0 41 ------- null} + -t 1.91158 -s 3 -d 0 -p ack -e 40 -c 0 -i 357 -a 0 -x {5.0 0.0 41 ------- null} - -t 1.91158 -s 3 -d 0 -p ack -e 40 -c 0 -i 357 -a 0 -x {5.0 0.0 41 ------- null} h -t 1.91158 -s 3 -d 0 -p ack -e 40 -c 0 -i 357 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.9116 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 340 -a 0 -x {0.0 5.0 44 ------- null} + -t 1.9116 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 340 -a 0 -x {0.0 5.0 44 ------- null} - -t 1.9116 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 340 -a 0 -x {0.0 5.0 44 ------- null} h -t 1.9116 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 340 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.9116 -s 4 -d 6 -p cbr -e 500 -c 1 -i 336 -a 1 -x {1.0 6.0 169 ------- null} - -t 1.9136 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {0.0 5.0 46 ------- null} h -t 1.9136 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.914 -s 1 -d 3 -p cbr -e 500 -c 1 -i 365 -a 1 -x {1.0 6.0 184 ------- null} + -t 1.914 -s 3 -d 4 -p cbr -e 500 -c 1 -i 365 -a 1 -x {1.0 6.0 184 ------- null} r -t 1.9196 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 338 -a 1 -x {2.0 7.0 83 ------- null} + -t 1.9196 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 338 -a 1 -x {2.0 7.0 83 ------- null} - -t 1.9196 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 338 -a 1 -x {2.0 7.0 83 ------- null} h -t 1.9196 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 338 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.92 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 371 -a 1 -x {2.0 7.0 91 ------- null} - -t 1.92 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 371 -a 1 -x {2.0 7.0 91 ------- null} h -t 1.92 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 371 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.92 -s 1 -d 3 -p cbr -e 500 -c 1 -i 372 -a 1 -x {1.0 6.0 187 ------- null} - -t 1.92 -s 1 -d 3 -p cbr -e 500 -c 1 -i 372 -a 1 -x {1.0 6.0 187 ------- null} h -t 1.92 -s 1 -d 3 -p cbr -e 500 -c 1 -i 372 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.9216 -s 3 -d 4 -p cbr -e 500 -c 1 -i 352 -a 1 -x {1.0 6.0 177 ------- null} h -t 1.9216 -s 3 -d 4 -p cbr -e 500 -c 1 -i 352 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.9236 -s 3 -d 4 -p cbr -e 500 -c 1 -i 341 -a 1 -x {1.0 6.0 172 ------- null} + -t 1.9236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 341 -a 1 -x {1.0 6.0 172 ------- null} - -t 1.9236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 341 -a 1 -x {1.0 6.0 172 ------- null} h -t 1.9236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 341 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.9236 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 335 -a 1 -x {2.0 7.0 82 ------- null} r -t 1.9236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 337 -a 1 -x {1.0 6.0 170 ------- null} r -t 1.924 -s 1 -d 3 -p cbr -e 500 -c 1 -i 367 -a 1 -x {1.0 6.0 185 ------- null} + -t 1.924 -s 3 -d 4 -p cbr -e 500 -c 1 -i 367 -a 1 -x {1.0 6.0 185 ------- null} r -t 1.92525 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 368 -a 0 -x {0.0 5.0 48 ------- null} + -t 1.92525 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 368 -a 0 -x {0.0 5.0 48 ------- null} r -t 1.92526 -s 5 -d 4 -p ack -e 40 -c 0 -i 369 -a 0 -x {5.0 0.0 43 ------- null} + -t 1.92526 -s 4 -d 3 -p ack -e 40 -c 0 -i 369 -a 0 -x {5.0 0.0 43 ------- null} - -t 1.92526 -s 4 -d 3 -p ack -e 40 -c 0 -i 369 -a 0 -x {5.0 0.0 43 ------- null} h -t 1.92526 -s 4 -d 3 -p ack -e 40 -c 0 -i 369 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.9256 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 351 -a 1 -x {2.0 7.0 86 ------- null} h -t 1.9256 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 351 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.9276 -s 3 -d 4 -p cbr -e 500 -c 1 -i 343 -a 1 -x {1.0 6.0 173 ------- null} + -t 1.9276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 343 -a 1 -x {1.0 6.0 173 ------- null} r -t 1.9276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 339 -a 1 -x {1.0 6.0 171 ------- null} - -t 1.9276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 343 -a 1 -x {1.0 6.0 173 ------- null} h -t 1.9276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 343 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.928 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 366 -a 1 -x {2.0 7.0 90 ------- null} + -t 1.928 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 366 -a 1 -x {2.0 7.0 90 ------- null} + -t 1.93 -s 1 -d 3 -p cbr -e 500 -c 1 -i 373 -a 1 -x {1.0 6.0 188 ------- null} - -t 1.93 -s 1 -d 3 -p cbr -e 500 -c 1 -i 373 -a 1 -x {1.0 6.0 188 ------- null} h -t 1.93 -s 1 -d 3 -p cbr -e 500 -c 1 -i 373 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.93165 -s 3 -d 0 -p ack -e 40 -c 0 -i 357 -a 0 -x {5.0 0.0 41 ------- null} + -t 1.93165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 374 -a 0 -x {0.0 5.0 49 ------- null} - -t 1.93165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 374 -a 0 -x {0.0 5.0 49 ------- null} h -t 1.93165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 374 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.9332 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 340 -a 0 -x {0.0 5.0 44 ------- null} + -t 1.9332 -s 5 -d 4 -p ack -e 40 -c 0 -i 375 -a 0 -x {5.0 0.0 44 ------- null} - -t 1.9332 -s 5 -d 4 -p ack -e 40 -c 0 -i 375 -a 0 -x {5.0 0.0 44 ------- null} h -t 1.9332 -s 5 -d 4 -p ack -e 40 -c 0 -i 375 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.9336 -s 3 -d 4 -p cbr -e 500 -c 1 -i 354 -a 1 -x {1.0 6.0 178 ------- null} h -t 1.9336 -s 3 -d 4 -p cbr -e 500 -c 1 -i 354 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.934 -s 1 -d 3 -p cbr -e 500 -c 1 -i 370 -a 1 -x {1.0 6.0 186 ------- null} + -t 1.934 -s 3 -d 4 -p cbr -e 500 -c 1 -i 370 -a 1 -x {1.0 6.0 186 ------- null} r -t 1.9356 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 342 -a 1 -x {2.0 7.0 84 ------- null} + -t 1.9356 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 342 -a 1 -x {2.0 7.0 84 ------- null} - -t 1.9356 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 342 -a 1 -x {2.0 7.0 84 ------- null} h -t 1.9356 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 342 -a 1 -x {2.0 7.0 -1 ------- null} - -t 1.9376 -s 3 -d 4 -p cbr -e 500 -c 1 -i 356 -a 1 -x {1.0 6.0 179 ------- null} h -t 1.9376 -s 3 -d 4 -p cbr -e 500 -c 1 -i 356 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.94 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 376 -a 1 -x {2.0 7.0 92 ------- null} - -t 1.94 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 376 -a 1 -x {2.0 7.0 92 ------- null} h -t 1.94 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 376 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.94 -s 1 -d 3 -p cbr -e 500 -c 1 -i 377 -a 1 -x {1.0 6.0 189 ------- null} - -t 1.94 -s 1 -d 3 -p cbr -e 500 -c 1 -i 377 -a 1 -x {1.0 6.0 189 ------- null} h -t 1.94 -s 1 -d 3 -p cbr -e 500 -c 1 -i 377 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.9416 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 355 -a 1 -x {2.0 7.0 87 ------- null} h -t 1.9416 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 355 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.9436 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {0.0 5.0 45 ------- null} + -t 1.9436 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {0.0 5.0 45 ------- null} - -t 1.9436 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {0.0 5.0 45 ------- null} h -t 1.9436 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.944 -s 1 -d 3 -p cbr -e 500 -c 1 -i 372 -a 1 -x {1.0 6.0 187 ------- null} + -t 1.944 -s 3 -d 4 -p cbr -e 500 -c 1 -i 372 -a 1 -x {1.0 6.0 187 ------- null} r -t 1.94758 -s 4 -d 3 -p ack -e 40 -c 0 -i 362 -a 0 -x {5.0 0.0 42 ------- null} + -t 1.94758 -s 3 -d 0 -p ack -e 40 -c 0 -i 362 -a 0 -x {5.0 0.0 42 ------- null} - -t 1.94758 -s 3 -d 0 -p ack -e 40 -c 0 -i 362 -a 0 -x {5.0 0.0 42 ------- null} h -t 1.94758 -s 3 -d 0 -p ack -e 40 -c 0 -i 362 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.9476 -s 3 -d 4 -p cbr -e 500 -c 1 -i 344 -a 1 -x {1.0 6.0 174 ------- null} + -t 1.9476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 344 -a 1 -x {1.0 6.0 174 ------- null} - -t 1.9476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 344 -a 1 -x {1.0 6.0 174 ------- null} h -t 1.9476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 344 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.9476 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 338 -a 1 -x {2.0 7.0 83 ------- null} r -t 1.9476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 341 -a 1 -x {1.0 6.0 172 ------- null} r -t 1.948 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 371 -a 1 -x {2.0 7.0 91 ------- null} + -t 1.948 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 371 -a 1 -x {2.0 7.0 91 ------- null} - -t 1.9496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 358 -a 1 -x {1.0 6.0 180 ------- null} h -t 1.9496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 358 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.95 -s 1 -d 3 -p cbr -e 500 -c 1 -i 378 -a 1 -x {1.0 6.0 190 ------- null} - -t 1.95 -s 1 -d 3 -p cbr -e 500 -c 1 -i 378 -a 1 -x {1.0 6.0 190 ------- null} h -t 1.95 -s 1 -d 3 -p cbr -e 500 -c 1 -i 378 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.9516 -s 3 -d 4 -p cbr -e 500 -c 1 -i 347 -a 1 -x {1.0 6.0 175 ------- null} + -t 1.9516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 347 -a 1 -x {1.0 6.0 175 ------- null} r -t 1.9516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 343 -a 1 -x {1.0 6.0 173 ------- null} - -t 1.9516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 347 -a 1 -x {1.0 6.0 175 ------- null} h -t 1.9516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 347 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.95325 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 374 -a 0 -x {0.0 5.0 49 ------- null} + -t 1.95325 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 374 -a 0 -x {0.0 5.0 49 ------- null} r -t 1.95326 -s 5 -d 4 -p ack -e 40 -c 0 -i 375 -a 0 -x {5.0 0.0 44 ------- null} + -t 1.95326 -s 4 -d 3 -p ack -e 40 -c 0 -i 375 -a 0 -x {5.0 0.0 44 ------- null} - -t 1.95326 -s 4 -d 3 -p ack -e 40 -c 0 -i 375 -a 0 -x {5.0 0.0 44 ------- null} h -t 1.95326 -s 4 -d 3 -p ack -e 40 -c 0 -i 375 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.9536 -s 3 -d 4 -p cbr -e 500 -c 1 -i 360 -a 1 -x {1.0 6.0 181 ------- null} h -t 1.9536 -s 3 -d 4 -p cbr -e 500 -c 1 -i 360 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.954 -s 1 -d 3 -p cbr -e 500 -c 1 -i 373 -a 1 -x {1.0 6.0 188 ------- null} + -t 1.954 -s 3 -d 4 -p cbr -e 500 -c 1 -i 373 -a 1 -x {1.0 6.0 188 ------- null} - -t 1.9576 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 359 -a 1 -x {2.0 7.0 88 ------- null} h -t 1.9576 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 359 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.9596 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 346 -a 1 -x {2.0 7.0 85 ------- null} + -t 1.9596 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 346 -a 1 -x {2.0 7.0 85 ------- null} - -t 1.9596 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 346 -a 1 -x {2.0 7.0 85 ------- null} h -t 1.9596 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 346 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.96 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 379 -a 1 -x {2.0 7.0 93 ------- null} - -t 1.96 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 379 -a 1 -x {2.0 7.0 93 ------- null} h -t 1.96 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 379 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.96 -s 1 -d 3 -p cbr -e 500 -c 1 -i 380 -a 1 -x {1.0 6.0 191 ------- null} - -t 1.96 -s 1 -d 3 -p cbr -e 500 -c 1 -i 380 -a 1 -x {1.0 6.0 191 ------- null} h -t 1.96 -s 1 -d 3 -p cbr -e 500 -c 1 -i 380 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.9636 -s 3 -d 4 -p cbr -e 500 -c 1 -i 348 -a 1 -x {1.0 6.0 176 ------- null} + -t 1.9636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 348 -a 1 -x {1.0 6.0 176 ------- null} - -t 1.9636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 348 -a 1 -x {1.0 6.0 176 ------- null} h -t 1.9636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 348 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.9636 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 342 -a 1 -x {2.0 7.0 84 ------- null} r -t 1.964 -s 1 -d 3 -p cbr -e 500 -c 1 -i 377 -a 1 -x {1.0 6.0 189 ------- null} + -t 1.964 -s 3 -d 4 -p cbr -e 500 -c 1 -i 377 -a 1 -x {1.0 6.0 189 ------- null} r -t 1.9652 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {0.0 5.0 45 ------- null} + -t 1.9652 -s 5 -d 4 -p ack -e 40 -c 0 -i 381 -a 0 -x {5.0 0.0 45 ------- null} - -t 1.9652 -s 5 -d 4 -p ack -e 40 -c 0 -i 381 -a 0 -x {5.0 0.0 45 ------- null} h -t 1.9652 -s 5 -d 4 -p ack -e 40 -c 0 -i 381 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.9656 -s 3 -d 4 -p cbr -e 500 -c 1 -i 361 -a 1 -x {1.0 6.0 182 ------- null} h -t 1.9656 -s 3 -d 4 -p cbr -e 500 -c 1 -i 361 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.96765 -s 3 -d 0 -p ack -e 40 -c 0 -i 362 -a 0 -x {5.0 0.0 42 ------- null} + -t 1.96765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {0.0 5.0 50 ------- null} - -t 1.96765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {0.0 5.0 50 ------- null} h -t 1.96765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.968 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 376 -a 1 -x {2.0 7.0 92 ------- null} + -t 1.968 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 376 -a 1 -x {2.0 7.0 92 ------- null} - -t 1.9696 -s 3 -d 4 -p cbr -e 500 -c 1 -i 364 -a 1 -x {1.0 6.0 183 ------- null} h -t 1.9696 -s 3 -d 4 -p cbr -e 500 -c 1 -i 364 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.97 -s 1 -d 3 -p cbr -e 500 -c 1 -i 383 -a 1 -x {1.0 6.0 192 ------- null} - -t 1.97 -s 1 -d 3 -p cbr -e 500 -c 1 -i 383 -a 1 -x {1.0 6.0 192 ------- null} h -t 1.97 -s 1 -d 3 -p cbr -e 500 -c 1 -i 383 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.9716 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {0.0 5.0 46 ------- null} + -t 1.9716 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {0.0 5.0 46 ------- null} - -t 1.9716 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {0.0 5.0 46 ------- null} h -t 1.9716 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.9716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 344 -a 1 -x {1.0 6.0 174 ------- null} - -t 1.9736 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 363 -a 1 -x {2.0 7.0 89 ------- null} h -t 1.9736 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 363 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.974 -s 1 -d 3 -p cbr -e 500 -c 1 -i 378 -a 1 -x {1.0 6.0 190 ------- null} + -t 1.974 -s 3 -d 4 -p cbr -e 500 -c 1 -i 378 -a 1 -x {1.0 6.0 190 ------- null} r -t 1.97558 -s 4 -d 3 -p ack -e 40 -c 0 -i 369 -a 0 -x {5.0 0.0 43 ------- null} + -t 1.97558 -s 3 -d 0 -p ack -e 40 -c 0 -i 369 -a 0 -x {5.0 0.0 43 ------- null} - -t 1.97558 -s 3 -d 0 -p ack -e 40 -c 0 -i 369 -a 0 -x {5.0 0.0 43 ------- null} h -t 1.97558 -s 3 -d 0 -p ack -e 40 -c 0 -i 369 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.9756 -s 3 -d 4 -p cbr -e 500 -c 1 -i 352 -a 1 -x {1.0 6.0 177 ------- null} + -t 1.9756 -s 4 -d 6 -p cbr -e 500 -c 1 -i 352 -a 1 -x {1.0 6.0 177 ------- null} - -t 1.9756 -s 4 -d 6 -p cbr -e 500 -c 1 -i 352 -a 1 -x {1.0 6.0 177 ------- null} h -t 1.9756 -s 4 -d 6 -p cbr -e 500 -c 1 -i 352 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.9756 -s 4 -d 6 -p cbr -e 500 -c 1 -i 347 -a 1 -x {1.0 6.0 175 ------- null} + -t 1.98 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 384 -a 1 -x {2.0 7.0 94 ------- null} - -t 1.98 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 384 -a 1 -x {2.0 7.0 94 ------- null} h -t 1.98 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 384 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.98 -s 1 -d 3 -p cbr -e 500 -c 1 -i 385 -a 1 -x {1.0 6.0 193 ------- null} - -t 1.98 -s 1 -d 3 -p cbr -e 500 -c 1 -i 385 -a 1 -x {1.0 6.0 193 ------- null} h -t 1.98 -s 1 -d 3 -p cbr -e 500 -c 1 -i 385 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.9816 -s 3 -d 4 -p cbr -e 500 -c 1 -i 365 -a 1 -x {1.0 6.0 184 ------- null} h -t 1.9816 -s 3 -d 4 -p cbr -e 500 -c 1 -i 365 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.9836 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 351 -a 1 -x {2.0 7.0 86 ------- null} + -t 1.9836 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 351 -a 1 -x {2.0 7.0 86 ------- null} - -t 1.9836 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 351 -a 1 -x {2.0 7.0 86 ------- null} h -t 1.9836 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 351 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.984 -s 1 -d 3 -p cbr -e 500 -c 1 -i 380 -a 1 -x {1.0 6.0 191 ------- null} + -t 1.984 -s 3 -d 4 -p cbr -e 500 -c 1 -i 380 -a 1 -x {1.0 6.0 191 ------- null} r -t 1.98526 -s 5 -d 4 -p ack -e 40 -c 0 -i 381 -a 0 -x {5.0 0.0 45 ------- null} + -t 1.98526 -s 4 -d 3 -p ack -e 40 -c 0 -i 381 -a 0 -x {5.0 0.0 45 ------- null} - -t 1.98526 -s 4 -d 3 -p ack -e 40 -c 0 -i 381 -a 0 -x {5.0 0.0 45 ------- null} h -t 1.98526 -s 4 -d 3 -p ack -e 40 -c 0 -i 381 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.9856 -s 3 -d 4 -p cbr -e 500 -c 1 -i 367 -a 1 -x {1.0 6.0 185 ------- null} h -t 1.9856 -s 3 -d 4 -p cbr -e 500 -c 1 -i 367 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.9876 -s 3 -d 4 -p cbr -e 500 -c 1 -i 354 -a 1 -x {1.0 6.0 178 ------- null} + -t 1.9876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 354 -a 1 -x {1.0 6.0 178 ------- null} - -t 1.9876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 354 -a 1 -x {1.0 6.0 178 ------- null} h -t 1.9876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 354 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.9876 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 346 -a 1 -x {2.0 7.0 85 ------- null} r -t 1.9876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 348 -a 1 -x {1.0 6.0 176 ------- null} r -t 1.988 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 379 -a 1 -x {2.0 7.0 93 ------- null} + -t 1.988 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 379 -a 1 -x {2.0 7.0 93 ------- null} r -t 1.98925 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {0.0 5.0 50 ------- null} + -t 1.98925 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {0.0 5.0 50 ------- null} - -t 1.9896 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 368 -a 0 -x {0.0 5.0 48 ------- null} h -t 1.9896 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 368 -a 0 -x {0.0 5.0 -1 ------- null} + -t 1.99 -s 1 -d 3 -p cbr -e 500 -c 1 -i 386 -a 1 -x {1.0 6.0 194 ------- null} - -t 1.99 -s 1 -d 3 -p cbr -e 500 -c 1 -i 386 -a 1 -x {1.0 6.0 194 ------- null} h -t 1.99 -s 1 -d 3 -p cbr -e 500 -c 1 -i 386 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.9916 -s 3 -d 4 -p cbr -e 500 -c 1 -i 356 -a 1 -x {1.0 6.0 179 ------- null} + -t 1.9916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 356 -a 1 -x {1.0 6.0 179 ------- null} - -t 1.9916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 356 -a 1 -x {1.0 6.0 179 ------- null} h -t 1.9916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 356 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.9932 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {0.0 5.0 46 ------- null} + -t 1.9932 -s 5 -d 4 -p ack -e 40 -c 0 -i 387 -a 0 -x {5.0 0.0 46 ------- null} - -t 1.9932 -s 5 -d 4 -p ack -e 40 -c 0 -i 387 -a 0 -x {5.0 0.0 46 ------- null} h -t 1.9932 -s 5 -d 4 -p ack -e 40 -c 0 -i 387 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.994 -s 1 -d 3 -p cbr -e 500 -c 1 -i 383 -a 1 -x {1.0 6.0 192 ------- null} + -t 1.994 -s 3 -d 4 -p cbr -e 500 -c 1 -i 383 -a 1 -x {1.0 6.0 192 ------- null} r -t 1.99565 -s 3 -d 0 -p ack -e 40 -c 0 -i 369 -a 0 -x {5.0 0.0 43 ------- null} + -t 1.99565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {0.0 5.0 51 ------- null} - -t 1.99565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {0.0 5.0 51 ------- null} h -t 1.99565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {0.0 5.0 -1 ------- null} - -t 1.9976 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 366 -a 1 -x {2.0 7.0 90 ------- null} h -t 1.9976 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 366 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.9996 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 355 -a 1 -x {2.0 7.0 87 ------- null} + -t 1.9996 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 355 -a 1 -x {2.0 7.0 87 ------- null} - -t 1.9996 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 355 -a 1 -x {2.0 7.0 87 ------- null} h -t 1.9996 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 355 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.9996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 352 -a 1 -x {1.0 6.0 177 ------- null} + -t 2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 389 -a 1 -x {2.0 7.0 95 ------- null} - -t 2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 389 -a 1 -x {2.0 7.0 95 ------- null} h -t 2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 389 -a 1 -x {2.0 7.0 -1 ------- null} + -t 2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 390 -a 1 -x {1.0 6.0 195 ------- null} - -t 2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 390 -a 1 -x {1.0 6.0 195 ------- null} h -t 2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 390 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.00358 -s 4 -d 3 -p ack -e 40 -c 0 -i 375 -a 0 -x {5.0 0.0 44 ------- null} + -t 2.00358 -s 3 -d 0 -p ack -e 40 -c 0 -i 375 -a 0 -x {5.0 0.0 44 ------- null} - -t 2.00358 -s 3 -d 0 -p ack -e 40 -c 0 -i 375 -a 0 -x {5.0 0.0 44 ------- null} h -t 2.00358 -s 3 -d 0 -p ack -e 40 -c 0 -i 375 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.0036 -s 3 -d 4 -p cbr -e 500 -c 1 -i 358 -a 1 -x {1.0 6.0 180 ------- null} + -t 2.0036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 358 -a 1 -x {1.0 6.0 180 ------- null} - -t 2.0036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 358 -a 1 -x {1.0 6.0 180 ------- null} h -t 2.0036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 358 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.004 -s 1 -d 3 -p cbr -e 500 -c 1 -i 385 -a 1 -x {1.0 6.0 193 ------- null} + -t 2.004 -s 3 -d 4 -p cbr -e 500 -c 1 -i 385 -a 1 -x {1.0 6.0 193 ------- null} - -t 2.0056 -s 3 -d 4 -p cbr -e 500 -c 1 -i 370 -a 1 -x {1.0 6.0 186 ------- null} h -t 2.0056 -s 3 -d 4 -p cbr -e 500 -c 1 -i 370 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.0076 -s 3 -d 4 -p cbr -e 500 -c 1 -i 360 -a 1 -x {1.0 6.0 181 ------- null} + -t 2.0076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 360 -a 1 -x {1.0 6.0 181 ------- null} - -t 2.0076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 360 -a 1 -x {1.0 6.0 181 ------- null} h -t 2.0076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 360 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.008 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 384 -a 1 -x {2.0 7.0 94 ------- null} + -t 2.008 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 384 -a 1 -x {2.0 7.0 94 ------- null} - -t 2.0096 -s 3 -d 4 -p cbr -e 500 -c 1 -i 372 -a 1 -x {1.0 6.0 187 ------- null} h -t 2.0096 -s 3 -d 4 -p cbr -e 500 -c 1 -i 372 -a 1 -x {1.0 6.0 -1 ------- null} + -t 2.01 -s 1 -d 3 -p cbr -e 500 -c 1 -i 391 -a 1 -x {1.0 6.0 196 ------- null} - -t 2.01 -s 1 -d 3 -p cbr -e 500 -c 1 -i 391 -a 1 -x {1.0 6.0 196 ------- null} h -t 2.01 -s 1 -d 3 -p cbr -e 500 -c 1 -i 391 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.0116 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 351 -a 1 -x {2.0 7.0 86 ------- null} r -t 2.0116 -s 4 -d 6 -p cbr -e 500 -c 1 -i 354 -a 1 -x {1.0 6.0 178 ------- null} r -t 2.01326 -s 5 -d 4 -p ack -e 40 -c 0 -i 387 -a 0 -x {5.0 0.0 46 ------- null} + -t 2.01326 -s 4 -d 3 -p ack -e 40 -c 0 -i 387 -a 0 -x {5.0 0.0 46 ------- null} - -t 2.01326 -s 4 -d 3 -p ack -e 40 -c 0 -i 387 -a 0 -x {5.0 0.0 46 ------- null} h -t 2.01326 -s 4 -d 3 -p ack -e 40 -c 0 -i 387 -a 0 -x {5.0 0.0 -1 ------- null} - -t 2.0136 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 371 -a 1 -x {2.0 7.0 91 ------- null} h -t 2.0136 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 371 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.014 -s 1 -d 3 -p cbr -e 500 -c 1 -i 386 -a 1 -x {1.0 6.0 194 ------- null} + -t 2.014 -s 3 -d 4 -p cbr -e 500 -c 1 -i 386 -a 1 -x {1.0 6.0 194 ------- null} r -t 2.0156 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 359 -a 1 -x {2.0 7.0 88 ------- null} + -t 2.0156 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 359 -a 1 -x {2.0 7.0 88 ------- null} - -t 2.0156 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 359 -a 1 -x {2.0 7.0 88 ------- null} h -t 2.0156 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 359 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.0156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 356 -a 1 -x {1.0 6.0 179 ------- null} r -t 2.01725 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {0.0 5.0 51 ------- null} + -t 2.01725 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {0.0 5.0 51 ------- null} r -t 2.0196 -s 3 -d 4 -p cbr -e 500 -c 1 -i 361 -a 1 -x {1.0 6.0 182 ------- null} + -t 2.0196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 361 -a 1 -x {1.0 6.0 182 ------- null} - -t 2.0196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 361 -a 1 -x {1.0 6.0 182 ------- null} h -t 2.0196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 361 -a 1 -x {1.0 6.0 -1 ------- null} + -t 2.02 -s 1 -d 3 -p cbr -e 500 -c 1 -i 392 -a 1 -x {1.0 6.0 197 ------- null} - -t 2.02 -s 1 -d 3 -p cbr -e 500 -c 1 -i 392 -a 1 -x {1.0 6.0 197 ------- null} h -t 2.02 -s 1 -d 3 -p cbr -e 500 -c 1 -i 392 -a 1 -x {1.0 6.0 -1 ------- null} + -t 2.02 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 393 -a 1 -x {2.0 7.0 96 ------- null} - -t 2.02 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 393 -a 1 -x {2.0 7.0 96 ------- null} h -t 2.02 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 393 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.0216 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 374 -a 0 -x {0.0 5.0 49 ------- null} h -t 2.0216 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 374 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.0236 -s 3 -d 4 -p cbr -e 500 -c 1 -i 364 -a 1 -x {1.0 6.0 183 ------- null} + -t 2.0236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 364 -a 1 -x {1.0 6.0 183 ------- null} - -t 2.0236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 364 -a 1 -x {1.0 6.0 183 ------- null} h -t 2.0236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 364 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.02365 -s 3 -d 0 -p ack -e 40 -c 0 -i 375 -a 0 -x {5.0 0.0 44 ------- null} + -t 2.02365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {0.0 5.0 52 ------- null} - -t 2.02365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {0.0 5.0 52 ------- null} h -t 2.02365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.024 -s 1 -d 3 -p cbr -e 500 -c 1 -i 390 -a 1 -x {1.0 6.0 195 ------- null} + -t 2.024 -s 3 -d 4 -p cbr -e 500 -c 1 -i 390 -a 1 -x {1.0 6.0 195 ------- null} r -t 2.0276 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 355 -a 1 -x {2.0 7.0 87 ------- null} r -t 2.0276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 358 -a 1 -x {1.0 6.0 180 ------- null} r -t 2.028 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 389 -a 1 -x {2.0 7.0 95 ------- null} + -t 2.028 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 389 -a 1 -x {2.0 7.0 95 ------- null} - -t 2.0296 -s 3 -d 4 -p cbr -e 500 -c 1 -i 373 -a 1 -x {1.0 6.0 188 ------- null} h -t 2.0296 -s 3 -d 4 -p cbr -e 500 -c 1 -i 373 -a 1 -x {1.0 6.0 -1 ------- null} + -t 2.03 -s 1 -d 3 -p cbr -e 500 -c 1 -i 395 -a 1 -x {1.0 6.0 198 ------- null} - -t 2.03 -s 1 -d 3 -p cbr -e 500 -c 1 -i 395 -a 1 -x {1.0 6.0 198 ------- null} h -t 2.03 -s 1 -d 3 -p cbr -e 500 -c 1 -i 395 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.0316 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 363 -a 1 -x {2.0 7.0 89 ------- null} + -t 2.0316 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 363 -a 1 -x {2.0 7.0 89 ------- null} - -t 2.0316 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 363 -a 1 -x {2.0 7.0 89 ------- null} h -t 2.0316 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 363 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.0316 -s 4 -d 6 -p cbr -e 500 -c 1 -i 360 -a 1 -x {1.0 6.0 181 ------- null} - -t 2.0336 -s 3 -d 4 -p cbr -e 500 -c 1 -i 377 -a 1 -x {1.0 6.0 189 ------- null} h -t 2.0336 -s 3 -d 4 -p cbr -e 500 -c 1 -i 377 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.034 -s 1 -d 3 -p cbr -e 500 -c 1 -i 391 -a 1 -x {1.0 6.0 196 ------- null} + -t 2.034 -s 3 -d 4 -p cbr -e 500 -c 1 -i 391 -a 1 -x {1.0 6.0 196 ------- null} r -t 2.03558 -s 4 -d 3 -p ack -e 40 -c 0 -i 381 -a 0 -x {5.0 0.0 45 ------- null} + -t 2.03558 -s 3 -d 0 -p ack -e 40 -c 0 -i 381 -a 0 -x {5.0 0.0 45 ------- null} - -t 2.03558 -s 3 -d 0 -p ack -e 40 -c 0 -i 381 -a 0 -x {5.0 0.0 45 ------- null} h -t 2.03558 -s 3 -d 0 -p ack -e 40 -c 0 -i 381 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.0356 -s 3 -d 4 -p cbr -e 500 -c 1 -i 365 -a 1 -x {1.0 6.0 184 ------- null} + -t 2.0356 -s 4 -d 6 -p cbr -e 500 -c 1 -i 365 -a 1 -x {1.0 6.0 184 ------- null} - -t 2.0356 -s 4 -d 6 -p cbr -e 500 -c 1 -i 365 -a 1 -x {1.0 6.0 184 ------- null} h -t 2.0356 -s 4 -d 6 -p cbr -e 500 -c 1 -i 365 -a 1 -x {1.0 6.0 -1 ------- null} - -t 2.0376 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 376 -a 1 -x {2.0 7.0 92 ------- null} h -t 2.0376 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 376 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.0396 -s 3 -d 4 -p cbr -e 500 -c 1 -i 367 -a 1 -x {1.0 6.0 185 ------- null} + -t 2.0396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 367 -a 1 -x {1.0 6.0 185 ------- null} - -t 2.0396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 367 -a 1 -x {1.0 6.0 185 ------- null} h -t 2.0396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 367 -a 1 -x {1.0 6.0 -1 ------- null} + -t 2.04 -s 1 -d 3 -p cbr -e 500 -c 1 -i 396 -a 1 -x {1.0 6.0 199 ------- null} - -t 2.04 -s 1 -d 3 -p cbr -e 500 -c 1 -i 396 -a 1 -x {1.0 6.0 199 ------- null} h -t 2.04 -s 1 -d 3 -p cbr -e 500 -c 1 -i 396 -a 1 -x {1.0 6.0 -1 ------- null} + -t 2.04 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 397 -a 1 -x {2.0 7.0 97 ------- null} - -t 2.04 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 397 -a 1 -x {2.0 7.0 97 ------- null} h -t 2.04 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 397 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.0436 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 359 -a 1 -x {2.0 7.0 88 ------- null} r -t 2.0436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 361 -a 1 -x {1.0 6.0 182 ------- null} r -t 2.044 -s 1 -d 3 -p cbr -e 500 -c 1 -i 392 -a 1 -x {1.0 6.0 197 ------- null} + -t 2.044 -s 3 -d 4 -p cbr -e 500 -c 1 -i 392 -a 1 -x {1.0 6.0 197 ------- null} r -t 2.04525 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {0.0 5.0 52 ------- null} + -t 2.04525 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {0.0 5.0 52 ------- null} - -t 2.0456 -s 3 -d 4 -p cbr -e 500 -c 1 -i 378 -a 1 -x {1.0 6.0 190 ------- null} h -t 2.0456 -s 3 -d 4 -p cbr -e 500 -c 1 -i 378 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.0476 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 368 -a 0 -x {0.0 5.0 48 ------- null} + -t 2.0476 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 368 -a 0 -x {0.0 5.0 48 ------- null} - -t 2.0476 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 368 -a 0 -x {0.0 5.0 48 ------- null} h -t 2.0476 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 368 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.0476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 364 -a 1 -x {1.0 6.0 183 ------- null} r -t 2.048 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 393 -a 1 -x {2.0 7.0 96 ------- null} + -t 2.048 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 393 -a 1 -x {2.0 7.0 96 ------- null} - -t 2.0496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 380 -a 1 -x {1.0 6.0 191 ------- null} h -t 2.0496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 380 -a 1 -x {1.0 6.0 -1 ------- null} + -t 2.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 398 -a 1 -x {1.0 6.0 200 ------- null} - -t 2.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 398 -a 1 -x {1.0 6.0 200 ------- null} h -t 2.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 398 -a 1 -x {1.0 6.0 -1 ------- null} - -t 2.0536 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 379 -a 1 -x {2.0 7.0 93 ------- null} h -t 2.0536 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 379 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.054 -s 1 -d 3 -p cbr -e 500 -c 1 -i 395 -a 1 -x {1.0 6.0 198 ------- null} + -t 2.054 -s 3 -d 4 -p cbr -e 500 -c 1 -i 395 -a 1 -x {1.0 6.0 198 ------- null} r -t 2.0556 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 366 -a 1 -x {2.0 7.0 90 ------- null} + -t 2.0556 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 366 -a 1 -x {2.0 7.0 90 ------- null} - -t 2.0556 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 366 -a 1 -x {2.0 7.0 90 ------- null} h -t 2.0556 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 366 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.05565 -s 3 -d 0 -p ack -e 40 -c 0 -i 381 -a 0 -x {5.0 0.0 45 ------- null} + -t 2.05565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {0.0 5.0 53 ------- null} - -t 2.05565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {0.0 5.0 53 ------- null} h -t 2.05565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.0596 -s 3 -d 4 -p cbr -e 500 -c 1 -i 370 -a 1 -x {1.0 6.0 186 ------- null} + -t 2.0596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 370 -a 1 -x {1.0 6.0 186 ------- null} - -t 2.0596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 370 -a 1 -x {1.0 6.0 186 ------- null} h -t 2.0596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 370 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.0596 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 363 -a 1 -x {2.0 7.0 89 ------- null} r -t 2.0596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 365 -a 1 -x {1.0 6.0 184 ------- null} + -t 2.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 400 -a 1 -x {1.0 6.0 201 ------- null} - -t 2.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 400 -a 1 -x {1.0 6.0 201 ------- null} h -t 2.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 400 -a 1 -x {1.0 6.0 -1 ------- null} + -t 2.06 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 401 -a 1 -x {2.0 7.0 98 ------- null} - -t 2.06 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 401 -a 1 -x {2.0 7.0 98 ------- null} h -t 2.06 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 401 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.0616 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {0.0 5.0 50 ------- null} h -t 2.0616 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.06358 -s 4 -d 3 -p ack -e 40 -c 0 -i 387 -a 0 -x {5.0 0.0 46 ------- null} + -t 2.06358 -s 3 -d 0 -p ack -e 40 -c 0 -i 387 -a 0 -x {5.0 0.0 46 ------- null} - -t 2.06358 -s 3 -d 0 -p ack -e 40 -c 0 -i 387 -a 0 -x {5.0 0.0 46 ------- null} h -t 2.06358 -s 3 -d 0 -p ack -e 40 -c 0 -i 387 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.0636 -s 3 -d 4 -p cbr -e 500 -c 1 -i 372 -a 1 -x {1.0 6.0 187 ------- null} + -t 2.0636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 372 -a 1 -x {1.0 6.0 187 ------- null} r -t 2.0636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 367 -a 1 -x {1.0 6.0 185 ------- null} - -t 2.0636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 372 -a 1 -x {1.0 6.0 187 ------- null} h -t 2.0636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 372 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.064 -s 1 -d 3 -p cbr -e 500 -c 1 -i 396 -a 1 -x {1.0 6.0 199 ------- null} + -t 2.064 -s 3 -d 4 -p cbr -e 500 -c 1 -i 396 -a 1 -x {1.0 6.0 199 ------- null} r -t 2.068 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 397 -a 1 -x {2.0 7.0 97 ------- null} + -t 2.068 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 397 -a 1 -x {2.0 7.0 97 ------- null} r -t 2.0692 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 368 -a 0 -x {0.0 5.0 48 ------- null} + -t 2.0692 -s 5 -d 4 -p ack -e 40 -c 0 -i 402 -a 0 -x {5.0 0.0 46 ------- null} - -t 2.0692 -s 5 -d 4 -p ack -e 40 -c 0 -i 402 -a 0 -x {5.0 0.0 46 ------- null} h -t 2.0692 -s 5 -d 4 -p ack -e 40 -c 0 -i 402 -a 0 -x {5.0 0.0 -1 ------- null} - -t 2.0696 -s 3 -d 4 -p cbr -e 500 -c 1 -i 383 -a 1 -x {1.0 6.0 192 ------- null} h -t 2.0696 -s 3 -d 4 -p cbr -e 500 -c 1 -i 383 -a 1 -x {1.0 6.0 -1 ------- null} + -t 2.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 403 -a 1 -x {1.0 6.0 202 ------- null} - -t 2.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 403 -a 1 -x {1.0 6.0 202 ------- null} h -t 2.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 403 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.0716 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 371 -a 1 -x {2.0 7.0 91 ------- null} + -t 2.0716 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 371 -a 1 -x {2.0 7.0 91 ------- null} - -t 2.0716 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 371 -a 1 -x {2.0 7.0 91 ------- null} h -t 2.0716 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 371 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.0736 -s 3 -d 4 -p cbr -e 500 -c 1 -i 385 -a 1 -x {1.0 6.0 193 ------- null} h -t 2.0736 -s 3 -d 4 -p cbr -e 500 -c 1 -i 385 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.074 -s 1 -d 3 -p cbr -e 500 -c 1 -i 398 -a 1 -x {1.0 6.0 200 ------- null} + -t 2.074 -s 3 -d 4 -p cbr -e 500 -c 1 -i 398 -a 1 -x {1.0 6.0 200 ------- null} r -t 2.07725 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {0.0 5.0 53 ------- null} + -t 2.07725 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {0.0 5.0 53 ------- null} - -t 2.0776 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 384 -a 1 -x {2.0 7.0 94 ------- null} h -t 2.0776 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 384 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.0796 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 374 -a 0 -x {0.0 5.0 49 ------- null} + -t 2.0796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 374 -a 0 -x {0.0 5.0 49 ------- null} - -t 2.0796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 374 -a 0 -x {0.0 5.0 49 ------- null} h -t 2.0796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 374 -a 0 -x {0.0 5.0 -1 ------- null} + -t 2.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 404 -a 1 -x {1.0 6.0 203 ------- null} - -t 2.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 404 -a 1 -x {1.0 6.0 203 ------- null} h -t 2.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 404 -a 1 -x {1.0 6.0 -1 ------- null} + -t 2.08 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 405 -a 1 -x {2.0 7.0 99 ------- null} - -t 2.08 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 405 -a 1 -x {2.0 7.0 99 ------- null} h -t 2.08 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 405 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.0836 -s 3 -d 4 -p cbr -e 500 -c 1 -i 373 -a 1 -x {1.0 6.0 188 ------- null} + -t 2.0836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 373 -a 1 -x {1.0 6.0 188 ------- null} - -t 2.0836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 373 -a 1 -x {1.0 6.0 188 ------- null} h -t 2.0836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 373 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.0836 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 366 -a 1 -x {2.0 7.0 90 ------- null} r -t 2.0836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 370 -a 1 -x {1.0 6.0 186 ------- null} r -t 2.08365 -s 3 -d 0 -p ack -e 40 -c 0 -i 387 -a 0 -x {5.0 0.0 46 ------- null} + -t 2.08365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 406 -a 0 -x {0.0 5.0 54 ------- null} - -t 2.08365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 406 -a 0 -x {0.0 5.0 54 ------- null} h -t 2.08365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 406 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.084 -s 1 -d 3 -p cbr -e 500 -c 1 -i 400 -a 1 -x {1.0 6.0 201 ------- null} + -t 2.084 -s 3 -d 4 -p cbr -e 500 -c 1 -i 400 -a 1 -x {1.0 6.0 201 ------- null} - -t 2.0856 -s 3 -d 4 -p cbr -e 500 -c 1 -i 386 -a 1 -x {1.0 6.0 194 ------- null} h -t 2.0856 -s 3 -d 4 -p cbr -e 500 -c 1 -i 386 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.0876 -s 3 -d 4 -p cbr -e 500 -c 1 -i 377 -a 1 -x {1.0 6.0 189 ------- null} + -t 2.0876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 377 -a 1 -x {1.0 6.0 189 ------- null} r -t 2.0876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 372 -a 1 -x {1.0 6.0 187 ------- null} - -t 2.0876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 377 -a 1 -x {1.0 6.0 189 ------- null} h -t 2.0876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 377 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.088 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 401 -a 1 -x {2.0 7.0 98 ------- null} + -t 2.088 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 401 -a 1 -x {2.0 7.0 98 ------- null} r -t 2.08926 -s 5 -d 4 -p ack -e 40 -c 0 -i 402 -a 0 -x {5.0 0.0 46 ------- null} + -t 2.08926 -s 4 -d 3 -p ack -e 40 -c 0 -i 402 -a 0 -x {5.0 0.0 46 ------- null} - -t 2.08926 -s 4 -d 3 -p ack -e 40 -c 0 -i 402 -a 0 -x {5.0 0.0 46 ------- null} h -t 2.08926 -s 4 -d 3 -p ack -e 40 -c 0 -i 402 -a 0 -x {5.0 0.0 -1 ------- null} - -t 2.0896 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {0.0 5.0 51 ------- null} h -t 2.0896 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {0.0 5.0 -1 ------- null} + -t 2.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 407 -a 1 -x {1.0 6.0 204 ------- null} - -t 2.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 407 -a 1 -x {1.0 6.0 204 ------- null} h -t 2.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 407 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.094 -s 1 -d 3 -p cbr -e 500 -c 1 -i 403 -a 1 -x {1.0 6.0 202 ------- null} + -t 2.094 -s 3 -d 4 -p cbr -e 500 -c 1 -i 403 -a 1 -x {1.0 6.0 202 ------- null} r -t 2.0956 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 376 -a 1 -x {2.0 7.0 92 ------- null} + -t 2.0956 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 376 -a 1 -x {2.0 7.0 92 ------- null} - -t 2.0956 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 376 -a 1 -x {2.0 7.0 92 ------- null} h -t 2.0956 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 376 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.0976 -s 3 -d 4 -p cbr -e 500 -c 1 -i 390 -a 1 -x {1.0 6.0 195 ------- null} h -t 2.0976 -s 3 -d 4 -p cbr -e 500 -c 1 -i 390 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.0996 -s 3 -d 4 -p cbr -e 500 -c 1 -i 378 -a 1 -x {1.0 6.0 190 ------- null} + -t 2.0996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 378 -a 1 -x {1.0 6.0 190 ------- null} - -t 2.0996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 378 -a 1 -x {1.0 6.0 190 ------- null} h -t 2.0996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 378 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.0996 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 371 -a 1 -x {2.0 7.0 91 ------- null} + -t 2.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 408 -a 1 -x {1.0 6.0 205 ------- null} - -t 2.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 408 -a 1 -x {1.0 6.0 205 ------- null} h -t 2.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 408 -a 1 -x {1.0 6.0 -1 ------- null} + -t 2.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 409 -a 1 -x {2.0 7.0 100 ------- null} - -t 2.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 409 -a 1 -x {2.0 7.0 100 ------- null} h -t 2.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 409 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.1012 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 374 -a 0 -x {0.0 5.0 49 ------- null} + -t 2.1012 -s 5 -d 4 -p ack -e 40 -c 0 -i 410 -a 0 -x {5.0 0.0 46 ------- null} - -t 2.1012 -s 5 -d 4 -p ack -e 40 -c 0 -i 410 -a 0 -x {5.0 0.0 46 ------- null} h -t 2.1012 -s 5 -d 4 -p ack -e 40 -c 0 -i 410 -a 0 -x {5.0 0.0 -1 ------- null} - -t 2.1016 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 389 -a 1 -x {2.0 7.0 95 ------- null} h -t 2.1016 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 389 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.1036 -s 3 -d 4 -p cbr -e 500 -c 1 -i 380 -a 1 -x {1.0 6.0 191 ------- null} + -t 2.1036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 380 -a 1 -x {1.0 6.0 191 ------- null} - -t 2.1036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 380 -a 1 -x {1.0 6.0 191 ------- null} h -t 2.1036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 380 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.104 -s 1 -d 3 -p cbr -e 500 -c 1 -i 404 -a 1 -x {1.0 6.0 203 ------- null} + -t 2.104 -s 3 -d 4 -p cbr -e 500 -c 1 -i 404 -a 1 -x {1.0 6.0 203 ------- null} r -t 2.10525 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 406 -a 0 -x {0.0 5.0 54 ------- null} + -t 2.10525 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 406 -a 0 -x {0.0 5.0 54 ------- null} r -t 2.1076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 373 -a 1 -x {1.0 6.0 188 ------- null} r -t 2.108 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 405 -a 1 -x {2.0 7.0 99 ------- null} + -t 2.108 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 405 -a 1 -x {2.0 7.0 99 ------- null} d -t 2.108 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 405 -a 1 -x {2.0 7.0 99 ------- null} - -t 2.1096 -s 3 -d 4 -p cbr -e 500 -c 1 -i 391 -a 1 -x {1.0 6.0 196 ------- null} h -t 2.1096 -s 3 -d 4 -p cbr -e 500 -c 1 -i 391 -a 1 -x {1.0 6.0 -1 ------- null} + -t 2.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 411 -a 1 -x {1.0 6.0 206 ------- null} - -t 2.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 411 -a 1 -x {1.0 6.0 206 ------- null} h -t 2.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 411 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.1116 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 379 -a 1 -x {2.0 7.0 93 ------- null} + -t 2.1116 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 379 -a 1 -x {2.0 7.0 93 ------- null} - -t 2.1116 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 379 -a 1 -x {2.0 7.0 93 ------- null} h -t 2.1116 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 379 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.1116 -s 4 -d 6 -p cbr -e 500 -c 1 -i 377 -a 1 -x {1.0 6.0 189 ------- null} - -t 2.1136 -s 3 -d 4 -p cbr -e 500 -c 1 -i 392 -a 1 -x {1.0 6.0 197 ------- null} h -t 2.1136 -s 3 -d 4 -p cbr -e 500 -c 1 -i 392 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.114 -s 1 -d 3 -p cbr -e 500 -c 1 -i 407 -a 1 -x {1.0 6.0 204 ------- null} + -t 2.114 -s 3 -d 4 -p cbr -e 500 -c 1 -i 407 -a 1 -x {1.0 6.0 204 ------- null} - -t 2.1176 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {0.0 5.0 52 ------- null} h -t 2.1176 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.1196 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {0.0 5.0 50 ------- null} + -t 2.1196 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {0.0 5.0 50 ------- null} - -t 2.1196 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {0.0 5.0 50 ------- null} h -t 2.1196 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {0.0 5.0 -1 ------- null} + -t 2.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 412 -a 1 -x {1.0 6.0 207 ------- null} - -t 2.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 412 -a 1 -x {1.0 6.0 207 ------- null} h -t 2.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 412 -a 1 -x {1.0 6.0 -1 ------- null} + -t 2.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 413 -a 1 -x {2.0 7.0 101 ------- null} - -t 2.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 413 -a 1 -x {2.0 7.0 101 ------- null} h -t 2.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 413 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.12126 -s 5 -d 4 -p ack -e 40 -c 0 -i 410 -a 0 -x {5.0 0.0 46 ------- null} + -t 2.12126 -s 4 -d 3 -p ack -e 40 -c 0 -i 410 -a 0 -x {5.0 0.0 46 ------- null} - -t 2.12126 -s 4 -d 3 -p ack -e 40 -c 0 -i 410 -a 0 -x {5.0 0.0 46 ------- null} h -t 2.12126 -s 4 -d 3 -p ack -e 40 -c 0 -i 410 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.1236 -s 3 -d 4 -p cbr -e 500 -c 1 -i 383 -a 1 -x {1.0 6.0 192 ------- null} + -t 2.1236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 383 -a 1 -x {1.0 6.0 192 ------- null} - -t 2.1236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 383 -a 1 -x {1.0 6.0 192 ------- null} h -t 2.1236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 383 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.1236 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 376 -a 1 -x {2.0 7.0 92 ------- null} r -t 2.1236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 378 -a 1 -x {1.0 6.0 190 ------- null} r -t 2.124 -s 1 -d 3 -p cbr -e 500 -c 1 -i 408 -a 1 -x {1.0 6.0 205 ------- null} + -t 2.124 -s 3 -d 4 -p cbr -e 500 -c 1 -i 408 -a 1 -x {1.0 6.0 205 ------- null} - -t 2.1256 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 393 -a 1 -x {2.0 7.0 96 ------- null} h -t 2.1256 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 393 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.1276 -s 3 -d 4 -p cbr -e 500 -c 1 -i 385 -a 1 -x {1.0 6.0 193 ------- null} + -t 2.1276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 385 -a 1 -x {1.0 6.0 193 ------- null} r -t 2.1276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 380 -a 1 -x {1.0 6.0 191 ------- null} - -t 2.1276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 385 -a 1 -x {1.0 6.0 193 ------- null} h -t 2.1276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 385 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.128 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 409 -a 1 -x {2.0 7.0 100 ------- null} + -t 2.128 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 409 -a 1 -x {2.0 7.0 100 ------- null} + -t 2.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 414 -a 1 -x {1.0 6.0 208 ------- null} - -t 2.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 414 -a 1 -x {1.0 6.0 208 ------- null} h -t 2.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 414 -a 1 -x {1.0 6.0 -1 ------- null} - -t 2.1336 -s 3 -d 4 -p cbr -e 500 -c 1 -i 395 -a 1 -x {1.0 6.0 198 ------- null} h -t 2.1336 -s 3 -d 4 -p cbr -e 500 -c 1 -i 395 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.134 -s 1 -d 3 -p cbr -e 500 -c 1 -i 411 -a 1 -x {1.0 6.0 206 ------- null} + -t 2.134 -s 3 -d 4 -p cbr -e 500 -c 1 -i 411 -a 1 -x {1.0 6.0 206 ------- null} r -t 2.1356 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 384 -a 1 -x {2.0 7.0 94 ------- null} + -t 2.1356 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 384 -a 1 -x {2.0 7.0 94 ------- null} - -t 2.1356 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 384 -a 1 -x {2.0 7.0 94 ------- null} h -t 2.1356 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 384 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.1376 -s 3 -d 4 -p cbr -e 500 -c 1 -i 396 -a 1 -x {1.0 6.0 199 ------- null} h -t 2.1376 -s 3 -d 4 -p cbr -e 500 -c 1 -i 396 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.13958 -s 4 -d 3 -p ack -e 40 -c 0 -i 402 -a 0 -x {5.0 0.0 46 ------- null} + -t 2.13958 -s 3 -d 0 -p ack -e 40 -c 0 -i 402 -a 0 -x {5.0 0.0 46 ------- null} - -t 2.13958 -s 3 -d 0 -p ack -e 40 -c 0 -i 402 -a 0 -x {5.0 0.0 46 ------- null} h -t 2.13958 -s 3 -d 0 -p ack -e 40 -c 0 -i 402 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.1396 -s 3 -d 4 -p cbr -e 500 -c 1 -i 386 -a 1 -x {1.0 6.0 194 ------- null} + -t 2.1396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 386 -a 1 -x {1.0 6.0 194 ------- null} - -t 2.1396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 386 -a 1 -x {1.0 6.0 194 ------- null} h -t 2.1396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 386 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.1396 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 379 -a 1 -x {2.0 7.0 93 ------- null} + -t 2.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 415 -a 1 -x {1.0 6.0 209 ------- null} - -t 2.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 415 -a 1 -x {1.0 6.0 209 ------- null} h -t 2.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 415 -a 1 -x {1.0 6.0 -1 ------- null} + -t 2.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 416 -a 1 -x {2.0 7.0 102 ------- null} - -t 2.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 416 -a 1 -x {2.0 7.0 102 ------- null} h -t 2.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 416 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.1412 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {0.0 5.0 50 ------- null} + -t 2.1412 -s 5 -d 4 -p ack -e 40 -c 0 -i 417 -a 0 -x {5.0 0.0 46 ------- null} - -t 2.1412 -s 5 -d 4 -p ack -e 40 -c 0 -i 417 -a 0 -x {5.0 0.0 46 ------- null} h -t 2.1412 -s 5 -d 4 -p ack -e 40 -c 0 -i 417 -a 0 -x {5.0 0.0 -1 ------- null} - -t 2.1416 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 397 -a 1 -x {2.0 7.0 97 ------- null} h -t 2.1416 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 397 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.144 -s 1 -d 3 -p cbr -e 500 -c 1 -i 412 -a 1 -x {1.0 6.0 207 ------- null} + -t 2.144 -s 3 -d 4 -p cbr -e 500 -c 1 -i 412 -a 1 -x {1.0 6.0 207 ------- null} r -t 2.1476 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {0.0 5.0 51 ------- null} + -t 2.1476 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {0.0 5.0 51 ------- null} - -t 2.1476 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {0.0 5.0 51 ------- null} h -t 2.1476 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.1476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 383 -a 1 -x {1.0 6.0 192 ------- null} r -t 2.148 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 413 -a 1 -x {2.0 7.0 101 ------- null} + -t 2.148 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 413 -a 1 -x {2.0 7.0 101 ------- null} - -t 2.1496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 398 -a 1 -x {1.0 6.0 200 ------- null} h -t 2.1496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 398 -a 1 -x {1.0 6.0 -1 ------- null} + -t 2.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 418 -a 1 -x {1.0 6.0 210 ------- null} - -t 2.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 418 -a 1 -x {1.0 6.0 210 ------- null} h -t 2.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 418 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.1516 -s 3 -d 4 -p cbr -e 500 -c 1 -i 390 -a 1 -x {1.0 6.0 195 ------- null} + -t 2.1516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 390 -a 1 -x {1.0 6.0 195 ------- null} - -t 2.1516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 390 -a 1 -x {1.0 6.0 195 ------- null} h -t 2.1516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 390 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.1516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 385 -a 1 -x {1.0 6.0 193 ------- null} - -t 2.1536 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {0.0 5.0 53 ------- null} h -t 2.1536 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.154 -s 1 -d 3 -p cbr -e 500 -c 1 -i 414 -a 1 -x {1.0 6.0 208 ------- null} + -t 2.154 -s 3 -d 4 -p cbr -e 500 -c 1 -i 414 -a 1 -x {1.0 6.0 208 ------- null} r -t 2.1596 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 389 -a 1 -x {2.0 7.0 95 ------- null} + -t 2.1596 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 389 -a 1 -x {2.0 7.0 95 ------- null} - -t 2.1596 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 389 -a 1 -x {2.0 7.0 95 ------- null} h -t 2.1596 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 389 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.15965 -s 3 -d 0 -p ack -e 40 -c 0 -i 402 -a 0 -x {5.0 0.0 46 ------- null} + -t 2.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 419 -a 1 -x {1.0 6.0 211 ------- null} - -t 2.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 419 -a 1 -x {1.0 6.0 211 ------- null} h -t 2.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 419 -a 1 -x {1.0 6.0 -1 ------- null} + -t 2.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 420 -a 1 -x {2.0 7.0 103 ------- null} - -t 2.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 420 -a 1 -x {2.0 7.0 103 ------- null} h -t 2.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 420 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.16126 -s 5 -d 4 -p ack -e 40 -c 0 -i 417 -a 0 -x {5.0 0.0 46 ------- null} + -t 2.16126 -s 4 -d 3 -p ack -e 40 -c 0 -i 417 -a 0 -x {5.0 0.0 46 ------- null} - -t 2.16126 -s 4 -d 3 -p ack -e 40 -c 0 -i 417 -a 0 -x {5.0 0.0 46 ------- null} h -t 2.16126 -s 4 -d 3 -p ack -e 40 -c 0 -i 417 -a 0 -x {5.0 0.0 -1 ------- null} - -t 2.1616 -s 3 -d 4 -p cbr -e 500 -c 1 -i 400 -a 1 -x {1.0 6.0 201 ------- null} h -t 2.1616 -s 3 -d 4 -p cbr -e 500 -c 1 -i 400 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.1636 -s 3 -d 4 -p cbr -e 500 -c 1 -i 391 -a 1 -x {1.0 6.0 196 ------- null} + -t 2.1636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 391 -a 1 -x {1.0 6.0 196 ------- null} - -t 2.1636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 391 -a 1 -x {1.0 6.0 196 ------- null} h -t 2.1636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 391 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.1636 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 384 -a 1 -x {2.0 7.0 94 ------- null} r -t 2.1636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 386 -a 1 -x {1.0 6.0 194 ------- null} r -t 2.164 -s 1 -d 3 -p cbr -e 500 -c 1 -i 415 -a 1 -x {1.0 6.0 209 ------- null} + -t 2.164 -s 3 -d 4 -p cbr -e 500 -c 1 -i 415 -a 1 -x {1.0 6.0 209 ------- null} - -t 2.1656 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 401 -a 1 -x {2.0 7.0 98 ------- null} h -t 2.1656 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 401 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.1676 -s 3 -d 4 -p cbr -e 500 -c 1 -i 392 -a 1 -x {1.0 6.0 197 ------- null} + -t 2.1676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 392 -a 1 -x {1.0 6.0 197 ------- null} - -t 2.1676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 392 -a 1 -x {1.0 6.0 197 ------- null} h -t 2.1676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 392 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.168 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 416 -a 1 -x {2.0 7.0 102 ------- null} + -t 2.168 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 416 -a 1 -x {2.0 7.0 102 ------- null} r -t 2.1692 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {0.0 5.0 51 ------- null} + -t 2.1692 -s 5 -d 4 -p ack -e 40 -c 0 -i 421 -a 0 -x {5.0 0.0 46 ------- null} - -t 2.1692 -s 5 -d 4 -p ack -e 40 -c 0 -i 421 -a 0 -x {5.0 0.0 46 ------- null} h -t 2.1692 -s 5 -d 4 -p ack -e 40 -c 0 -i 421 -a 0 -x {5.0 0.0 -1 ------- null} + -t 2.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 422 -a 1 -x {1.0 6.0 212 ------- null} - -t 2.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 422 -a 1 -x {1.0 6.0 212 ------- null} h -t 2.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 422 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.17158 -s 4 -d 3 -p ack -e 40 -c 0 -i 410 -a 0 -x {5.0 0.0 46 ------- null} + -t 2.17158 -s 3 -d 0 -p ack -e 40 -c 0 -i 410 -a 0 -x {5.0 0.0 46 ------- null} - -t 2.17158 -s 3 -d 0 -p ack -e 40 -c 0 -i 410 -a 0 -x {5.0 0.0 46 ------- null} h -t 2.17158 -s 3 -d 0 -p ack -e 40 -c 0 -i 410 -a 0 -x {5.0 0.0 -1 ------- null} - -t 2.1736 -s 3 -d 4 -p cbr -e 500 -c 1 -i 403 -a 1 -x {1.0 6.0 202 ------- null} h -t 2.1736 -s 3 -d 4 -p cbr -e 500 -c 1 -i 403 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.174 -s 1 -d 3 -p cbr -e 500 -c 1 -i 418 -a 1 -x {1.0 6.0 210 ------- null} + -t 2.174 -s 3 -d 4 -p cbr -e 500 -c 1 -i 418 -a 1 -x {1.0 6.0 210 ------- null} r -t 2.1756 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {0.0 5.0 52 ------- null} + -t 2.1756 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {0.0 5.0 52 ------- null} - -t 2.1756 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {0.0 5.0 52 ------- null} h -t 2.1756 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.1756 -s 4 -d 6 -p cbr -e 500 -c 1 -i 390 -a 1 -x {1.0 6.0 195 ------- null} - -t 2.1776 -s 3 -d 4 -p cbr -e 500 -c 1 -i 404 -a 1 -x {1.0 6.0 203 ------- null} h -t 2.1776 -s 3 -d 4 -p cbr -e 500 -c 1 -i 404 -a 1 -x {1.0 6.0 -1 ------- null} + -t 2.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 423 -a 1 -x {1.0 6.0 213 ------- null} - -t 2.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 423 -a 1 -x {1.0 6.0 213 ------- null} h -t 2.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 423 -a 1 -x {1.0 6.0 -1 ------- null} + -t 2.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 424 -a 1 -x {2.0 7.0 104 ------- null} - -t 2.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 424 -a 1 -x {2.0 7.0 104 ------- null} h -t 2.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 424 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.1816 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 406 -a 0 -x {0.0 5.0 54 ------- null} h -t 2.1816 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 406 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.1836 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 393 -a 1 -x {2.0 7.0 96 ------- null} + -t 2.1836 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 393 -a 1 -x {2.0 7.0 96 ------- null} - -t 2.1836 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 393 -a 1 -x {2.0 7.0 96 ------- null} h -t 2.1836 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 393 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.184 -s 1 -d 3 -p cbr -e 500 -c 1 -i 419 -a 1 -x {1.0 6.0 211 ------- null} + -t 2.184 -s 3 -d 4 -p cbr -e 500 -c 1 -i 419 -a 1 -x {1.0 6.0 211 ------- null} r -t 2.1876 -s 3 -d 4 -p cbr -e 500 -c 1 -i 395 -a 1 -x {1.0 6.0 198 ------- null} + -t 2.1876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 395 -a 1 -x {1.0 6.0 198 ------- null} - -t 2.1876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 395 -a 1 -x {1.0 6.0 198 ------- null} h -t 2.1876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 395 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.1876 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 389 -a 1 -x {2.0 7.0 95 ------- null} r -t 2.1876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 391 -a 1 -x {1.0 6.0 196 ------- null} r -t 2.188 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 420 -a 1 -x {2.0 7.0 103 ------- null} + -t 2.188 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 420 -a 1 -x {2.0 7.0 103 ------- null} r -t 2.18926 -s 5 -d 4 -p ack -e 40 -c 0 -i 421 -a 0 -x {5.0 0.0 46 ------- null} + -t 2.18926 -s 4 -d 3 -p ack -e 40 -c 0 -i 421 -a 0 -x {5.0 0.0 46 ------- null} - -t 2.18926 -s 4 -d 3 -p ack -e 40 -c 0 -i 421 -a 0 -x {5.0 0.0 46 ------- null} h -t 2.18926 -s 4 -d 3 -p ack -e 40 -c 0 -i 421 -a 0 -x {5.0 0.0 -1 ------- null} - -t 2.1896 -s 3 -d 4 -p cbr -e 500 -c 1 -i 407 -a 1 -x {1.0 6.0 204 ------- null} h -t 2.1896 -s 3 -d 4 -p cbr -e 500 -c 1 -i 407 -a 1 -x {1.0 6.0 -1 ------- null} + -t 2.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 425 -a 1 -x {1.0 6.0 214 ------- null} - -t 2.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 425 -a 1 -x {1.0 6.0 214 ------- null} h -t 2.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 425 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.1916 -s 3 -d 4 -p cbr -e 500 -c 1 -i 396 -a 1 -x {1.0 6.0 199 ------- null} + -t 2.1916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 396 -a 1 -x {1.0 6.0 199 ------- null} r -t 2.1916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 392 -a 1 -x {1.0 6.0 197 ------- null} - -t 2.1916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 396 -a 1 -x {1.0 6.0 199 ------- null} h -t 2.1916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 396 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.19165 -s 3 -d 0 -p ack -e 40 -c 0 -i 410 -a 0 -x {5.0 0.0 46 ------- null} - -t 2.1936 -s 3 -d 4 -p cbr -e 500 -c 1 -i 408 -a 1 -x {1.0 6.0 205 ------- null} h -t 2.1936 -s 3 -d 4 -p cbr -e 500 -c 1 -i 408 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.194 -s 1 -d 3 -p cbr -e 500 -c 1 -i 422 -a 1 -x {1.0 6.0 212 ------- null} + -t 2.194 -s 3 -d 4 -p cbr -e 500 -c 1 -i 422 -a 1 -x {1.0 6.0 212 ------- null} r -t 2.1972 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {0.0 5.0 52 ------- null} + -t 2.1972 -s 5 -d 4 -p ack -e 40 -c 0 -i 426 -a 0 -x {5.0 0.0 46 ------- null} - -t 2.1972 -s 5 -d 4 -p ack -e 40 -c 0 -i 426 -a 0 -x {5.0 0.0 46 ------- null} h -t 2.1972 -s 5 -d 4 -p ack -e 40 -c 0 -i 426 -a 0 -x {5.0 0.0 -1 ------- null} - -t 2.1976 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 409 -a 1 -x {2.0 7.0 100 ------- null} h -t 2.1976 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 409 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.1996 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 397 -a 1 -x {2.0 7.0 97 ------- null} + -t 2.1996 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 397 -a 1 -x {2.0 7.0 97 ------- null} - -t 2.1996 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 397 -a 1 -x {2.0 7.0 97 ------- null} h -t 2.1996 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 397 -a 1 -x {2.0 7.0 -1 ------- null} + -t 2.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 427 -a 1 -x {1.0 6.0 215 ------- null} - -t 2.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 427 -a 1 -x {1.0 6.0 215 ------- null} h -t 2.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 427 -a 1 -x {1.0 6.0 -1 ------- null} + -t 2.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 428 -a 1 -x {2.0 7.0 105 ------- null} - -t 2.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 428 -a 1 -x {2.0 7.0 105 ------- null} h -t 2.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 428 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.2036 -s 3 -d 4 -p cbr -e 500 -c 1 -i 398 -a 1 -x {1.0 6.0 200 ------- null} + -t 2.2036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 398 -a 1 -x {1.0 6.0 200 ------- null} - -t 2.2036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 398 -a 1 -x {1.0 6.0 200 ------- null} h -t 2.2036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 398 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.204 -s 1 -d 3 -p cbr -e 500 -c 1 -i 423 -a 1 -x {1.0 6.0 213 ------- null} + -t 2.204 -s 3 -d 4 -p cbr -e 500 -c 1 -i 423 -a 1 -x {1.0 6.0 213 ------- null} - -t 2.2056 -s 3 -d 4 -p cbr -e 500 -c 1 -i 411 -a 1 -x {1.0 6.0 206 ------- null} h -t 2.2056 -s 3 -d 4 -p cbr -e 500 -c 1 -i 411 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.208 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 424 -a 1 -x {2.0 7.0 104 ------- null} + -t 2.208 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 424 -a 1 -x {2.0 7.0 104 ------- null} - -t 2.2096 -s 3 -d 4 -p cbr -e 500 -c 1 -i 412 -a 1 -x {1.0 6.0 207 ------- null} h -t 2.2096 -s 3 -d 4 -p cbr -e 500 -c 1 -i 412 -a 1 -x {1.0 6.0 -1 ------- null} + -t 2.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 429 -a 1 -x {1.0 6.0 216 ------- null} - -t 2.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 429 -a 1 -x {1.0 6.0 216 ------- null} h -t 2.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 429 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.21158 -s 4 -d 3 -p ack -e 40 -c 0 -i 417 -a 0 -x {5.0 0.0 46 ------- null} + -t 2.21158 -s 3 -d 0 -p ack -e 40 -c 0 -i 417 -a 0 -x {5.0 0.0 46 ------- null} - -t 2.21158 -s 3 -d 0 -p ack -e 40 -c 0 -i 417 -a 0 -x {5.0 0.0 46 ------- null} h -t 2.21158 -s 3 -d 0 -p ack -e 40 -c 0 -i 417 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.2116 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {0.0 5.0 53 ------- null} + -t 2.2116 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {0.0 5.0 53 ------- null} - -t 2.2116 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {0.0 5.0 53 ------- null} h -t 2.2116 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.2116 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 393 -a 1 -x {2.0 7.0 96 ------- null} r -t 2.2116 -s 4 -d 6 -p cbr -e 500 -c 1 -i 395 -a 1 -x {1.0 6.0 198 ------- null} - -t 2.2136 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 413 -a 1 -x {2.0 7.0 101 ------- null} h -t 2.2136 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 413 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.214 -s 1 -d 3 -p cbr -e 500 -c 1 -i 425 -a 1 -x {1.0 6.0 214 ------- null} + -t 2.214 -s 3 -d 4 -p cbr -e 500 -c 1 -i 425 -a 1 -x {1.0 6.0 214 ------- null} r -t 2.2156 -s 3 -d 4 -p cbr -e 500 -c 1 -i 400 -a 1 -x {1.0 6.0 201 ------- null} + -t 2.2156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 400 -a 1 -x {1.0 6.0 201 ------- null} - -t 2.2156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 400 -a 1 -x {1.0 6.0 201 ------- null} h -t 2.2156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 400 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.2156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 396 -a 1 -x {1.0 6.0 199 ------- null} r -t 2.21726 -s 5 -d 4 -p ack -e 40 -c 0 -i 426 -a 0 -x {5.0 0.0 46 ------- null} + -t 2.21726 -s 4 -d 3 -p ack -e 40 -c 0 -i 426 -a 0 -x {5.0 0.0 46 ------- null} - -t 2.21726 -s 4 -d 3 -p ack -e 40 -c 0 -i 426 -a 0 -x {5.0 0.0 46 ------- null} h -t 2.21726 -s 4 -d 3 -p ack -e 40 -c 0 -i 426 -a 0 -x {5.0 0.0 -1 ------- null} + -t 2.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 430 -a 1 -x {1.0 6.0 217 ------- null} - -t 2.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 430 -a 1 -x {1.0 6.0 217 ------- null} h -t 2.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 430 -a 1 -x {1.0 6.0 -1 ------- null} + -t 2.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 431 -a 1 -x {2.0 7.0 106 ------- null} - -t 2.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 431 -a 1 -x {2.0 7.0 106 ------- null} h -t 2.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 431 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.2216 -s 3 -d 4 -p cbr -e 500 -c 1 -i 414 -a 1 -x {1.0 6.0 208 ------- null} h -t 2.2216 -s 3 -d 4 -p cbr -e 500 -c 1 -i 414 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.2236 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 401 -a 1 -x {2.0 7.0 98 ------- null} + -t 2.2236 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 401 -a 1 -x {2.0 7.0 98 ------- null} - -t 2.2236 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 401 -a 1 -x {2.0 7.0 98 ------- null} h -t 2.2236 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 401 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.224 -s 1 -d 3 -p cbr -e 500 -c 1 -i 427 -a 1 -x {1.0 6.0 215 ------- null} + -t 2.224 -s 3 -d 4 -p cbr -e 500 -c 1 -i 427 -a 1 -x {1.0 6.0 215 ------- null} - -t 2.2256 -s 3 -d 4 -p cbr -e 500 -c 1 -i 415 -a 1 -x {1.0 6.0 209 ------- null} h -t 2.2256 -s 3 -d 4 -p cbr -e 500 -c 1 -i 415 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.2276 -s 3 -d 4 -p cbr -e 500 -c 1 -i 403 -a 1 -x {1.0 6.0 202 ------- null} + -t 2.2276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 403 -a 1 -x {1.0 6.0 202 ------- null} - -t 2.2276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 403 -a 1 -x {1.0 6.0 202 ------- null} h -t 2.2276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 403 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.2276 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 397 -a 1 -x {2.0 7.0 97 ------- null} r -t 2.2276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 398 -a 1 -x {1.0 6.0 200 ------- null} r -t 2.228 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 428 -a 1 -x {2.0 7.0 105 ------- null} + -t 2.228 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 428 -a 1 -x {2.0 7.0 105 ------- null} - -t 2.2296 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 416 -a 1 -x {2.0 7.0 102 ------- null} h -t 2.2296 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 416 -a 1 -x {2.0 7.0 -1 ------- null} + -t 2.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 432 -a 1 -x {1.0 6.0 218 ------- null} - -t 2.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 432 -a 1 -x {1.0 6.0 218 ------- null} h -t 2.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 432 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.2316 -s 3 -d 4 -p cbr -e 500 -c 1 -i 404 -a 1 -x {1.0 6.0 203 ------- null} + -t 2.2316 -s 4 -d 6 -p cbr -e 500 -c 1 -i 404 -a 1 -x {1.0 6.0 203 ------- null} - -t 2.2316 -s 4 -d 6 -p cbr -e 500 -c 1 -i 404 -a 1 -x {1.0 6.0 203 ------- null} h -t 2.2316 -s 4 -d 6 -p cbr -e 500 -c 1 -i 404 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.23165 -s 3 -d 0 -p ack -e 40 -c 0 -i 417 -a 0 -x {5.0 0.0 46 ------- null} + -t 2.23165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {0.0 5.0 47 ------- null} - -t 2.23165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {0.0 5.0 47 ------- null} h -t 2.23165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {0.0 5.0 -1 ------- null} + -t 2.23165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {0.0 5.0 48 ------- null} + -t 2.23165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {0.0 5.0 49 ------- null} + -t 2.23165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {0.0 5.0 50 ------- null} + -t 2.23165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {0.0 5.0 51 ------- null} + -t 2.23165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {0.0 5.0 52 ------- null} + -t 2.23165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {0.0 5.0 53 ------- null} + -t 2.23165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {0.0 5.0 54 ------- null} r -t 2.2332 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {0.0 5.0 53 ------- null} + -t 2.2332 -s 5 -d 4 -p ack -e 40 -c 0 -i 441 -a 0 -x {5.0 0.0 46 ------- null} - -t 2.2332 -s 5 -d 4 -p ack -e 40 -c 0 -i 441 -a 0 -x {5.0 0.0 46 ------- null} h -t 2.2332 -s 5 -d 4 -p ack -e 40 -c 0 -i 441 -a 0 -x {5.0 0.0 -1 ------- null} - -t 2.23325 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {0.0 5.0 48 ------- null} h -t 2.23325 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.234 -s 1 -d 3 -p cbr -e 500 -c 1 -i 429 -a 1 -x {1.0 6.0 216 ------- null} + -t 2.234 -s 3 -d 4 -p cbr -e 500 -c 1 -i 429 -a 1 -x {1.0 6.0 216 ------- null} - -t 2.23485 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {0.0 5.0 49 ------- null} h -t 2.23485 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {0.0 5.0 -1 ------- null} - -t 2.23645 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {0.0 5.0 50 ------- null} h -t 2.23645 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {0.0 5.0 -1 ------- null} - -t 2.2376 -s 3 -d 4 -p cbr -e 500 -c 1 -i 418 -a 1 -x {1.0 6.0 210 ------- null} h -t 2.2376 -s 3 -d 4 -p cbr -e 500 -c 1 -i 418 -a 1 -x {1.0 6.0 -1 ------- null} - -t 2.23805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {0.0 5.0 51 ------- null} h -t 2.23805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.23958 -s 4 -d 3 -p ack -e 40 -c 0 -i 421 -a 0 -x {5.0 0.0 46 ------- null} + -t 2.23958 -s 3 -d 0 -p ack -e 40 -c 0 -i 421 -a 0 -x {5.0 0.0 46 ------- null} - -t 2.23958 -s 3 -d 0 -p ack -e 40 -c 0 -i 421 -a 0 -x {5.0 0.0 46 ------- null} h -t 2.23958 -s 3 -d 0 -p ack -e 40 -c 0 -i 421 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.2396 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 406 -a 0 -x {0.0 5.0 54 ------- null} + -t 2.2396 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 406 -a 0 -x {0.0 5.0 54 ------- null} - -t 2.2396 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 406 -a 0 -x {0.0 5.0 54 ------- null} h -t 2.2396 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 406 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.2396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 400 -a 1 -x {1.0 6.0 201 ------- null} - -t 2.23965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {0.0 5.0 52 ------- null} h -t 2.23965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {0.0 5.0 -1 ------- null} + -t 2.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 442 -a 1 -x {1.0 6.0 219 ------- null} - -t 2.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 442 -a 1 -x {1.0 6.0 219 ------- null} h -t 2.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 442 -a 1 -x {1.0 6.0 -1 ------- null} + -t 2.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 443 -a 1 -x {2.0 7.0 107 ------- null} - -t 2.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 443 -a 1 -x {2.0 7.0 107 ------- null} h -t 2.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 443 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.24125 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {0.0 5.0 53 ------- null} h -t 2.24125 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {0.0 5.0 -1 ------- null} - -t 2.2416 -s 3 -d 4 -p cbr -e 500 -c 1 -i 419 -a 1 -x {1.0 6.0 211 ------- null} h -t 2.2416 -s 3 -d 4 -p cbr -e 500 -c 1 -i 419 -a 1 -x {1.0 6.0 -1 ------- null} - -t 2.24285 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {0.0 5.0 54 ------- null} h -t 2.24285 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.2436 -s 3 -d 4 -p cbr -e 500 -c 1 -i 407 -a 1 -x {1.0 6.0 204 ------- null} + -t 2.2436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 407 -a 1 -x {1.0 6.0 204 ------- null} - -t 2.2436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 407 -a 1 -x {1.0 6.0 204 ------- null} h -t 2.2436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 407 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.244 -s 1 -d 3 -p cbr -e 500 -c 1 -i 430 -a 1 -x {1.0 6.0 217 ------- null} + -t 2.244 -s 3 -d 4 -p cbr -e 500 -c 1 -i 430 -a 1 -x {1.0 6.0 217 ------- null} - -t 2.2456 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 420 -a 1 -x {2.0 7.0 103 ------- null} h -t 2.2456 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 420 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.2476 -s 3 -d 4 -p cbr -e 500 -c 1 -i 408 -a 1 -x {1.0 6.0 205 ------- null} + -t 2.2476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 408 -a 1 -x {1.0 6.0 205 ------- null} - -t 2.2476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 408 -a 1 -x {1.0 6.0 205 ------- null} h -t 2.2476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 408 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.248 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 431 -a 1 -x {2.0 7.0 106 ------- null} + -t 2.248 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 431 -a 1 -x {2.0 7.0 106 ------- null} + -t 2.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 444 -a 1 -x {1.0 6.0 220 ------- null} - -t 2.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 444 -a 1 -x {1.0 6.0 220 ------- null} h -t 2.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 444 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.2516 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 401 -a 1 -x {2.0 7.0 98 ------- null} r -t 2.2516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 403 -a 1 -x {1.0 6.0 202 ------- null} r -t 2.25325 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {0.0 5.0 47 ------- null} + -t 2.25325 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {0.0 5.0 47 ------- null} r -t 2.25326 -s 5 -d 4 -p ack -e 40 -c 0 -i 441 -a 0 -x {5.0 0.0 46 ------- null} + -t 2.25326 -s 4 -d 3 -p ack -e 40 -c 0 -i 441 -a 0 -x {5.0 0.0 46 ------- null} - -t 2.25326 -s 4 -d 3 -p ack -e 40 -c 0 -i 441 -a 0 -x {5.0 0.0 46 ------- null} h -t 2.25326 -s 4 -d 3 -p ack -e 40 -c 0 -i 441 -a 0 -x {5.0 0.0 -1 ------- null} - -t 2.2536 -s 3 -d 4 -p cbr -e 500 -c 1 -i 422 -a 1 -x {1.0 6.0 212 ------- null} h -t 2.2536 -s 3 -d 4 -p cbr -e 500 -c 1 -i 422 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.254 -s 1 -d 3 -p cbr -e 500 -c 1 -i 432 -a 1 -x {1.0 6.0 218 ------- null} + -t 2.254 -s 3 -d 4 -p cbr -e 500 -c 1 -i 432 -a 1 -x {1.0 6.0 218 ------- null} r -t 2.25485 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {0.0 5.0 48 ------- null} + -t 2.25485 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {0.0 5.0 48 ------- null} r -t 2.2556 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 409 -a 1 -x {2.0 7.0 100 ------- null} + -t 2.2556 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 409 -a 1 -x {2.0 7.0 100 ------- null} - -t 2.2556 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 409 -a 1 -x {2.0 7.0 100 ------- null} h -t 2.2556 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 409 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.2556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 404 -a 1 -x {1.0 6.0 203 ------- null} r -t 2.25645 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {0.0 5.0 49 ------- null} + -t 2.25645 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {0.0 5.0 49 ------- null} - -t 2.2576 -s 3 -d 4 -p cbr -e 500 -c 1 -i 423 -a 1 -x {1.0 6.0 213 ------- null} h -t 2.2576 -s 3 -d 4 -p cbr -e 500 -c 1 -i 423 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.25805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {0.0 5.0 50 ------- null} + -t 2.25805 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {0.0 5.0 50 ------- null} r -t 2.2596 -s 3 -d 4 -p cbr -e 500 -c 1 -i 411 -a 1 -x {1.0 6.0 206 ------- null} + -t 2.2596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 411 -a 1 -x {1.0 6.0 206 ------- null} - -t 2.2596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 411 -a 1 -x {1.0 6.0 206 ------- null} h -t 2.2596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 411 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.25965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {0.0 5.0 51 ------- null} + -t 2.25965 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {0.0 5.0 51 ------- null} r -t 2.25965 -s 3 -d 0 -p ack -e 40 -c 0 -i 421 -a 0 -x {5.0 0.0 46 ------- null} + -t 2.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 445 -a 1 -x {1.0 6.0 221 ------- null} - -t 2.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 445 -a 1 -x {1.0 6.0 221 ------- null} h -t 2.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 445 -a 1 -x {1.0 6.0 -1 ------- null} + -t 2.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 446 -a 1 -x {2.0 7.0 108 ------- null} - -t 2.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 446 -a 1 -x {2.0 7.0 108 ------- null} h -t 2.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 446 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.2612 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 406 -a 0 -x {0.0 5.0 54 ------- null} + -t 2.2612 -s 5 -d 4 -p ack -e 40 -c 0 -i 447 -a 0 -x {5.0 0.0 46 ------- null} - -t 2.2612 -s 5 -d 4 -p ack -e 40 -c 0 -i 447 -a 0 -x {5.0 0.0 46 ------- null} h -t 2.2612 -s 5 -d 4 -p ack -e 40 -c 0 -i 447 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.26125 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {0.0 5.0 52 ------- null} + -t 2.26125 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {0.0 5.0 52 ------- null} - -t 2.2616 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 424 -a 1 -x {2.0 7.0 104 ------- null} h -t 2.2616 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 424 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.26285 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {0.0 5.0 53 ------- null} + -t 2.26285 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {0.0 5.0 53 ------- null} r -t 2.2636 -s 3 -d 4 -p cbr -e 500 -c 1 -i 412 -a 1 -x {1.0 6.0 207 ------- null} + -t 2.2636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 412 -a 1 -x {1.0 6.0 207 ------- null} - -t 2.2636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 412 -a 1 -x {1.0 6.0 207 ------- null} h -t 2.2636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 412 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.264 -s 1 -d 3 -p cbr -e 500 -c 1 -i 442 -a 1 -x {1.0 6.0 219 ------- null} + -t 2.264 -s 3 -d 4 -p cbr -e 500 -c 1 -i 442 -a 1 -x {1.0 6.0 219 ------- null} d -t 2.264 -s 3 -d 4 -p cbr -e 500 -c 1 -i 442 -a 1 -x {1.0 6.0 219 ------- null} r -t 2.26445 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {0.0 5.0 54 ------- null} + -t 2.26445 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {0.0 5.0 54 ------- null} d -t 2.26445 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {0.0 5.0 54 ------- null} r -t 2.26758 -s 4 -d 3 -p ack -e 40 -c 0 -i 426 -a 0 -x {5.0 0.0 46 ------- null} + -t 2.26758 -s 3 -d 0 -p ack -e 40 -c 0 -i 426 -a 0 -x {5.0 0.0 46 ------- null} - -t 2.26758 -s 3 -d 0 -p ack -e 40 -c 0 -i 426 -a 0 -x {5.0 0.0 46 ------- null} h -t 2.26758 -s 3 -d 0 -p ack -e 40 -c 0 -i 426 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.2676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 407 -a 1 -x {1.0 6.0 204 ------- null} r -t 2.268 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 443 -a 1 -x {2.0 7.0 107 ------- null} + -t 2.268 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 443 -a 1 -x {2.0 7.0 107 ------- null} d -t 2.268 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 443 -a 1 -x {2.0 7.0 107 ------- null} - -t 2.2696 -s 3 -d 4 -p cbr -e 500 -c 1 -i 425 -a 1 -x {1.0 6.0 214 ------- null} h -t 2.2696 -s 3 -d 4 -p cbr -e 500 -c 1 -i 425 -a 1 -x {1.0 6.0 -1 ------- null} + -t 2.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 448 -a 1 -x {1.0 6.0 222 ------- null} - -t 2.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 448 -a 1 -x {1.0 6.0 222 ------- null} h -t 2.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 448 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.2716 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 413 -a 1 -x {2.0 7.0 101 ------- null} + -t 2.2716 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 413 -a 1 -x {2.0 7.0 101 ------- null} - -t 2.2716 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 413 -a 1 -x {2.0 7.0 101 ------- null} h -t 2.2716 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 413 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.2716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 408 -a 1 -x {1.0 6.0 205 ------- null} - -t 2.2736 -s 3 -d 4 -p cbr -e 500 -c 1 -i 427 -a 1 -x {1.0 6.0 215 ------- null} h -t 2.2736 -s 3 -d 4 -p cbr -e 500 -c 1 -i 427 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.274 -s 1 -d 3 -p cbr -e 500 -c 1 -i 444 -a 1 -x {1.0 6.0 220 ------- null} + -t 2.274 -s 3 -d 4 -p cbr -e 500 -c 1 -i 444 -a 1 -x {1.0 6.0 220 ------- null} r -t 2.2756 -s 3 -d 4 -p cbr -e 500 -c 1 -i 414 -a 1 -x {1.0 6.0 208 ------- null} + -t 2.2756 -s 4 -d 6 -p cbr -e 500 -c 1 -i 414 -a 1 -x {1.0 6.0 208 ------- null} - -t 2.2756 -s 4 -d 6 -p cbr -e 500 -c 1 -i 414 -a 1 -x {1.0 6.0 208 ------- null} h -t 2.2756 -s 4 -d 6 -p cbr -e 500 -c 1 -i 414 -a 1 -x {1.0 6.0 -1 ------- null} - -t 2.2776 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 428 -a 1 -x {2.0 7.0 105 ------- null} h -t 2.2776 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 428 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.2796 -s 3 -d 4 -p cbr -e 500 -c 1 -i 415 -a 1 -x {1.0 6.0 209 ------- null} + -t 2.2796 -s 4 -d 6 -p cbr -e 500 -c 1 -i 415 -a 1 -x {1.0 6.0 209 ------- null} - -t 2.2796 -s 4 -d 6 -p cbr -e 500 -c 1 -i 415 -a 1 -x {1.0 6.0 209 ------- null} h -t 2.2796 -s 4 -d 6 -p cbr -e 500 -c 1 -i 415 -a 1 -x {1.0 6.0 -1 ------- null} + -t 2.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 449 -a 1 -x {1.0 6.0 223 ------- null} - -t 2.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 449 -a 1 -x {1.0 6.0 223 ------- null} h -t 2.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 449 -a 1 -x {1.0 6.0 -1 ------- null} + -t 2.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 450 -a 1 -x {2.0 7.0 109 ------- null} - -t 2.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 450 -a 1 -x {2.0 7.0 109 ------- null} h -t 2.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 450 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.28126 -s 5 -d 4 -p ack -e 40 -c 0 -i 447 -a 0 -x {5.0 0.0 46 ------- null} + -t 2.28126 -s 4 -d 3 -p ack -e 40 -c 0 -i 447 -a 0 -x {5.0 0.0 46 ------- null} - -t 2.28126 -s 4 -d 3 -p ack -e 40 -c 0 -i 447 -a 0 -x {5.0 0.0 46 ------- null} h -t 2.28126 -s 4 -d 3 -p ack -e 40 -c 0 -i 447 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.2836 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 409 -a 1 -x {2.0 7.0 100 ------- null} r -t 2.2836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 411 -a 1 -x {1.0 6.0 206 ------- null} r -t 2.284 -s 1 -d 3 -p cbr -e 500 -c 1 -i 445 -a 1 -x {1.0 6.0 221 ------- null} + -t 2.284 -s 3 -d 4 -p cbr -e 500 -c 1 -i 445 -a 1 -x {1.0 6.0 221 ------- null} - -t 2.2856 -s 3 -d 4 -p cbr -e 500 -c 1 -i 429 -a 1 -x {1.0 6.0 216 ------- null} h -t 2.2856 -s 3 -d 4 -p cbr -e 500 -c 1 -i 429 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.2876 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 416 -a 1 -x {2.0 7.0 102 ------- null} + -t 2.2876 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 416 -a 1 -x {2.0 7.0 102 ------- null} - -t 2.2876 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 416 -a 1 -x {2.0 7.0 102 ------- null} h -t 2.2876 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 416 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.2876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 412 -a 1 -x {1.0 6.0 207 ------- null} r -t 2.28765 -s 3 -d 0 -p ack -e 40 -c 0 -i 426 -a 0 -x {5.0 0.0 46 ------- null} r -t 2.288 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 446 -a 1 -x {2.0 7.0 108 ------- null} + -t 2.288 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 446 -a 1 -x {2.0 7.0 108 ------- null} - -t 2.2896 -s 3 -d 4 -p cbr -e 500 -c 1 -i 430 -a 1 -x {1.0 6.0 217 ------- null} h -t 2.2896 -s 3 -d 4 -p cbr -e 500 -c 1 -i 430 -a 1 -x {1.0 6.0 -1 ------- null} + -t 2.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 451 -a 1 -x {1.0 6.0 224 ------- null} - -t 2.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 451 -a 1 -x {1.0 6.0 224 ------- null} h -t 2.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 451 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.2916 -s 3 -d 4 -p cbr -e 500 -c 1 -i 418 -a 1 -x {1.0 6.0 210 ------- null} + -t 2.2916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 418 -a 1 -x {1.0 6.0 210 ------- null} - -t 2.2916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 418 -a 1 -x {1.0 6.0 210 ------- null} h -t 2.2916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 418 -a 1 -x {1.0 6.0 -1 ------- null} - -t 2.2936 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 431 -a 1 -x {2.0 7.0 106 ------- null} h -t 2.2936 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 431 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.294 -s 1 -d 3 -p cbr -e 500 -c 1 -i 448 -a 1 -x {1.0 6.0 222 ------- null} + -t 2.294 -s 3 -d 4 -p cbr -e 500 -c 1 -i 448 -a 1 -x {1.0 6.0 222 ------- null} r -t 2.2956 -s 3 -d 4 -p cbr -e 500 -c 1 -i 419 -a 1 -x {1.0 6.0 211 ------- null} + -t 2.2956 -s 4 -d 6 -p cbr -e 500 -c 1 -i 419 -a 1 -x {1.0 6.0 211 ------- null} - -t 2.2956 -s 4 -d 6 -p cbr -e 500 -c 1 -i 419 -a 1 -x {1.0 6.0 211 ------- null} h -t 2.2956 -s 4 -d 6 -p cbr -e 500 -c 1 -i 419 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.2996 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 413 -a 1 -x {2.0 7.0 101 ------- null} r -t 2.2996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 414 -a 1 -x {1.0 6.0 208 ------- null} + -t 2.3 -s 1 -d 3 -p cbr -e 500 -c 1 -i 452 -a 1 -x {1.0 6.0 225 ------- null} - -t 2.3 -s 1 -d 3 -p cbr -e 500 -c 1 -i 452 -a 1 -x {1.0 6.0 225 ------- null} h -t 2.3 -s 1 -d 3 -p cbr -e 500 -c 1 -i 452 -a 1 -x {1.0 6.0 -1 ------- null} + -t 2.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 453 -a 1 -x {2.0 7.0 110 ------- null} - -t 2.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 453 -a 1 -x {2.0 7.0 110 ------- null} h -t 2.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 453 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.3016 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {0.0 5.0 47 ------- null} h -t 2.3016 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.30358 -s 4 -d 3 -p ack -e 40 -c 0 -i 441 -a 0 -x {5.0 0.0 46 ------- null} + -t 2.30358 -s 3 -d 0 -p ack -e 40 -c 0 -i 441 -a 0 -x {5.0 0.0 46 ------- null} - -t 2.30358 -s 3 -d 0 -p ack -e 40 -c 0 -i 441 -a 0 -x {5.0 0.0 46 ------- null} h -t 2.30358 -s 3 -d 0 -p ack -e 40 -c 0 -i 441 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.3036 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 420 -a 1 -x {2.0 7.0 103 ------- null} + -t 2.3036 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 420 -a 1 -x {2.0 7.0 103 ------- null} - -t 2.3036 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 420 -a 1 -x {2.0 7.0 103 ------- null} h -t 2.3036 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 420 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.3036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 415 -a 1 -x {1.0 6.0 209 ------- null} r -t 2.304 -s 1 -d 3 -p cbr -e 500 -c 1 -i 449 -a 1 -x {1.0 6.0 223 ------- null} + -t 2.304 -s 3 -d 4 -p cbr -e 500 -c 1 -i 449 -a 1 -x {1.0 6.0 223 ------- null} r -t 2.3076 -s 3 -d 4 -p cbr -e 500 -c 1 -i 422 -a 1 -x {1.0 6.0 212 ------- null} + -t 2.3076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 422 -a 1 -x {1.0 6.0 212 ------- null} - -t 2.3076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 422 -a 1 -x {1.0 6.0 212 ------- null} h -t 2.3076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 422 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.308 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 450 -a 1 -x {2.0 7.0 109 ------- null} + -t 2.308 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 450 -a 1 -x {2.0 7.0 109 ------- null} - -t 2.3096 -s 3 -d 4 -p cbr -e 500 -c 1 -i 432 -a 1 -x {1.0 6.0 218 ------- null} h -t 2.3096 -s 3 -d 4 -p cbr -e 500 -c 1 -i 432 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.3116 -s 3 -d 4 -p cbr -e 500 -c 1 -i 423 -a 1 -x {1.0 6.0 213 ------- null} + -t 2.3116 -s 4 -d 6 -p cbr -e 500 -c 1 -i 423 -a 1 -x {1.0 6.0 213 ------- null} - -t 2.3116 -s 4 -d 6 -p cbr -e 500 -c 1 -i 423 -a 1 -x {1.0 6.0 213 ------- null} h -t 2.3116 -s 4 -d 6 -p cbr -e 500 -c 1 -i 423 -a 1 -x {1.0 6.0 -1 ------- null} - -t 2.3136 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {0.0 5.0 48 ------- null} h -t 2.3136 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.314 -s 1 -d 3 -p cbr -e 500 -c 1 -i 451 -a 1 -x {1.0 6.0 224 ------- null} + -t 2.314 -s 3 -d 4 -p cbr -e 500 -c 1 -i 451 -a 1 -x {1.0 6.0 224 ------- null} r -t 2.3156 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 416 -a 1 -x {2.0 7.0 102 ------- null} r -t 2.3156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 418 -a 1 -x {1.0 6.0 210 ------- null} r -t 2.3196 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 424 -a 1 -x {2.0 7.0 104 ------- null} + -t 2.3196 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 424 -a 1 -x {2.0 7.0 104 ------- null} - -t 2.3196 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 424 -a 1 -x {2.0 7.0 104 ------- null} h -t 2.3196 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 424 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.3196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 419 -a 1 -x {1.0 6.0 211 ------- null} + -t 2.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 454 -a 1 -x {2.0 7.0 111 ------- null} - -t 2.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 454 -a 1 -x {2.0 7.0 111 ------- null} h -t 2.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 454 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.3216 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {0.0 5.0 49 ------- null} h -t 2.3216 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.3236 -s 3 -d 4 -p cbr -e 500 -c 1 -i 425 -a 1 -x {1.0 6.0 214 ------- null} + -t 2.3236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 425 -a 1 -x {1.0 6.0 214 ------- null} - -t 2.3236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 425 -a 1 -x {1.0 6.0 214 ------- null} h -t 2.3236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 425 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.32365 -s 3 -d 0 -p ack -e 40 -c 0 -i 441 -a 0 -x {5.0 0.0 46 ------- null} r -t 2.324 -s 1 -d 3 -p cbr -e 500 -c 1 -i 452 -a 1 -x {1.0 6.0 225 ------- null} + -t 2.324 -s 3 -d 4 -p cbr -e 500 -c 1 -i 452 -a 1 -x {1.0 6.0 225 ------- null} r -t 2.3276 -s 3 -d 4 -p cbr -e 500 -c 1 -i 427 -a 1 -x {1.0 6.0 215 ------- null} + -t 2.3276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 427 -a 1 -x {1.0 6.0 215 ------- null} - -t 2.3276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 427 -a 1 -x {1.0 6.0 215 ------- null} h -t 2.3276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 427 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.328 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 453 -a 1 -x {2.0 7.0 110 ------- null} + -t 2.328 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 453 -a 1 -x {2.0 7.0 110 ------- null} - -t 2.3296 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {0.0 5.0 50 ------- null} h -t 2.3296 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.33158 -s 4 -d 3 -p ack -e 40 -c 0 -i 447 -a 0 -x {5.0 0.0 46 ------- null} + -t 2.33158 -s 3 -d 0 -p ack -e 40 -c 0 -i 447 -a 0 -x {5.0 0.0 46 ------- null} - -t 2.33158 -s 3 -d 0 -p ack -e 40 -c 0 -i 447 -a 0 -x {5.0 0.0 46 ------- null} h -t 2.33158 -s 3 -d 0 -p ack -e 40 -c 0 -i 447 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.3316 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 420 -a 1 -x {2.0 7.0 103 ------- null} r -t 2.3316 -s 4 -d 6 -p cbr -e 500 -c 1 -i 422 -a 1 -x {1.0 6.0 212 ------- null} r -t 2.3356 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 428 -a 1 -x {2.0 7.0 105 ------- null} + -t 2.3356 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 428 -a 1 -x {2.0 7.0 105 ------- null} - -t 2.3356 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 428 -a 1 -x {2.0 7.0 105 ------- null} h -t 2.3356 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 428 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.3356 -s 4 -d 6 -p cbr -e 500 -c 1 -i 423 -a 1 -x {1.0 6.0 213 ------- null} - -t 2.3376 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {0.0 5.0 51 ------- null} h -t 2.3376 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.3396 -s 3 -d 4 -p cbr -e 500 -c 1 -i 429 -a 1 -x {1.0 6.0 216 ------- null} + -t 2.3396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 429 -a 1 -x {1.0 6.0 216 ------- null} - -t 2.3396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 429 -a 1 -x {1.0 6.0 216 ------- null} h -t 2.3396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 429 -a 1 -x {1.0 6.0 -1 ------- null} + -t 2.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 455 -a 1 -x {2.0 7.0 112 ------- null} - -t 2.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 455 -a 1 -x {2.0 7.0 112 ------- null} h -t 2.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 455 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.3436 -s 3 -d 4 -p cbr -e 500 -c 1 -i 430 -a 1 -x {1.0 6.0 217 ------- null} + -t 2.3436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 430 -a 1 -x {1.0 6.0 217 ------- null} - -t 2.3436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 430 -a 1 -x {1.0 6.0 217 ------- null} h -t 2.3436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 430 -a 1 -x {1.0 6.0 -1 ------- null} - -t 2.3456 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {0.0 5.0 52 ------- null} h -t 2.3456 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.3476 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 424 -a 1 -x {2.0 7.0 104 ------- null} r -t 2.3476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 425 -a 1 -x {1.0 6.0 214 ------- null} r -t 2.348 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 454 -a 1 -x {2.0 7.0 111 ------- null} + -t 2.348 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 454 -a 1 -x {2.0 7.0 111 ------- null} r -t 2.3516 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 431 -a 1 -x {2.0 7.0 106 ------- null} + -t 2.3516 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 431 -a 1 -x {2.0 7.0 106 ------- null} - -t 2.3516 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 431 -a 1 -x {2.0 7.0 106 ------- null} h -t 2.3516 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 431 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.3516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 427 -a 1 -x {1.0 6.0 215 ------- null} r -t 2.35165 -s 3 -d 0 -p ack -e 40 -c 0 -i 447 -a 0 -x {5.0 0.0 46 ------- null} - -t 2.3536 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {0.0 5.0 53 ------- null} h -t 2.3536 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.3596 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {0.0 5.0 47 ------- null} + -t 2.3596 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {0.0 5.0 47 ------- null} - -t 2.3596 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {0.0 5.0 47 ------- null} h -t 2.3596 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {0.0 5.0 -1 ------- null} + -t 2.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 456 -a 1 -x {2.0 7.0 113 ------- null} - -t 2.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 456 -a 1 -x {2.0 7.0 113 ------- null} h -t 2.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 456 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.3616 -s 3 -d 4 -p cbr -e 500 -c 1 -i 444 -a 1 -x {1.0 6.0 220 ------- null} h -t 2.3616 -s 3 -d 4 -p cbr -e 500 -c 1 -i 444 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.3636 -s 3 -d 4 -p cbr -e 500 -c 1 -i 432 -a 1 -x {1.0 6.0 218 ------- null} + -t 2.3636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 432 -a 1 -x {1.0 6.0 218 ------- null} - -t 2.3636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 432 -a 1 -x {1.0 6.0 218 ------- null} h -t 2.3636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 432 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.3636 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 428 -a 1 -x {2.0 7.0 105 ------- null} r -t 2.3636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 429 -a 1 -x {1.0 6.0 216 ------- null} - -t 2.3656 -s 3 -d 4 -p cbr -e 500 -c 1 -i 445 -a 1 -x {1.0 6.0 221 ------- null} h -t 2.3656 -s 3 -d 4 -p cbr -e 500 -c 1 -i 445 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.3676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 430 -a 1 -x {1.0 6.0 217 ------- null} r -t 2.368 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 455 -a 1 -x {2.0 7.0 112 ------- null} + -t 2.368 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 455 -a 1 -x {2.0 7.0 112 ------- null} - -t 2.3696 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 446 -a 1 -x {2.0 7.0 108 ------- null} h -t 2.3696 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 446 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.3716 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {0.0 5.0 48 ------- null} + -t 2.3716 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {0.0 5.0 48 ------- null} - -t 2.3716 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {0.0 5.0 48 ------- null} h -t 2.3716 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {0.0 5.0 -1 ------- null} - -t 2.3776 -s 3 -d 4 -p cbr -e 500 -c 1 -i 448 -a 1 -x {1.0 6.0 222 ------- null} h -t 2.3776 -s 3 -d 4 -p cbr -e 500 -c 1 -i 448 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.3796 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {0.0 5.0 49 ------- null} + -t 2.3796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {0.0 5.0 49 ------- null} - -t 2.3796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {0.0 5.0 49 ------- null} h -t 2.3796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.3796 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 431 -a 1 -x {2.0 7.0 106 ------- null} + -t 2.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 457 -a 1 -x {2.0 7.0 114 ------- null} - -t 2.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 457 -a 1 -x {2.0 7.0 114 ------- null} h -t 2.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 457 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.3812 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {0.0 5.0 47 ------- null} + -t 2.3812 -s 5 -d 4 -p ack -e 40 -c 0 -i 458 -a 0 -x {5.0 0.0 47 ------- null} - -t 2.3812 -s 5 -d 4 -p ack -e 40 -c 0 -i 458 -a 0 -x {5.0 0.0 47 ------- null} h -t 2.3812 -s 5 -d 4 -p ack -e 40 -c 0 -i 458 -a 0 -x {5.0 0.0 -1 ------- null} - -t 2.3816 -s 3 -d 4 -p cbr -e 500 -c 1 -i 449 -a 1 -x {1.0 6.0 223 ------- null} h -t 2.3816 -s 3 -d 4 -p cbr -e 500 -c 1 -i 449 -a 1 -x {1.0 6.0 -1 ------- null} - -t 2.3856 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 450 -a 1 -x {2.0 7.0 109 ------- null} h -t 2.3856 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 450 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.3876 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {0.0 5.0 50 ------- null} + -t 2.3876 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {0.0 5.0 50 ------- null} - -t 2.3876 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {0.0 5.0 50 ------- null} h -t 2.3876 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.3876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 432 -a 1 -x {1.0 6.0 218 ------- null} r -t 2.388 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 456 -a 1 -x {2.0 7.0 113 ------- null} + -t 2.388 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 456 -a 1 -x {2.0 7.0 113 ------- null} r -t 2.3932 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {0.0 5.0 48 ------- null} + -t 2.3932 -s 5 -d 4 -p ack -e 40 -c 0 -i 459 -a 0 -x {5.0 0.0 48 ------- null} - -t 2.3932 -s 5 -d 4 -p ack -e 40 -c 0 -i 459 -a 0 -x {5.0 0.0 48 ------- null} h -t 2.3932 -s 5 -d 4 -p ack -e 40 -c 0 -i 459 -a 0 -x {5.0 0.0 -1 ------- null} - -t 2.3936 -s 3 -d 4 -p cbr -e 500 -c 1 -i 451 -a 1 -x {1.0 6.0 224 ------- null} h -t 2.3936 -s 3 -d 4 -p cbr -e 500 -c 1 -i 451 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.3956 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {0.0 5.0 51 ------- null} + -t 2.3956 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {0.0 5.0 51 ------- null} - -t 2.3956 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {0.0 5.0 51 ------- null} h -t 2.3956 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {0.0 5.0 -1 ------- null} - -t 2.3976 -s 3 -d 4 -p cbr -e 500 -c 1 -i 452 -a 1 -x {1.0 6.0 225 ------- null} h -t 2.3976 -s 3 -d 4 -p cbr -e 500 -c 1 -i 452 -a 1 -x {1.0 6.0 -1 ------- null} + -t 2.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 460 -a 1 -x {2.0 7.0 115 ------- null} - -t 2.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 460 -a 1 -x {2.0 7.0 115 ------- null} h -t 2.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 460 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.4012 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {0.0 5.0 49 ------- null} + -t 2.4012 -s 5 -d 4 -p ack -e 40 -c 0 -i 461 -a 0 -x {5.0 0.0 49 ------- null} - -t 2.4012 -s 5 -d 4 -p ack -e 40 -c 0 -i 461 -a 0 -x {5.0 0.0 49 ------- null} h -t 2.4012 -s 5 -d 4 -p ack -e 40 -c 0 -i 461 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.40126 -s 5 -d 4 -p ack -e 40 -c 0 -i 458 -a 0 -x {5.0 0.0 47 ------- null} + -t 2.40126 -s 4 -d 3 -p ack -e 40 -c 0 -i 458 -a 0 -x {5.0 0.0 47 ------- null} - -t 2.40126 -s 4 -d 3 -p ack -e 40 -c 0 -i 458 -a 0 -x {5.0 0.0 47 ------- null} h -t 2.40126 -s 4 -d 3 -p ack -e 40 -c 0 -i 458 -a 0 -x {5.0 0.0 -1 ------- null} - -t 2.4016 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 453 -a 1 -x {2.0 7.0 110 ------- null} h -t 2.4016 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 453 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.4036 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {0.0 5.0 52 ------- null} + -t 2.4036 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {0.0 5.0 52 ------- null} - -t 2.4036 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {0.0 5.0 52 ------- null} h -t 2.4036 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.408 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 457 -a 1 -x {2.0 7.0 114 ------- null} + -t 2.408 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 457 -a 1 -x {2.0 7.0 114 ------- null} r -t 2.4092 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {0.0 5.0 50 ------- null} + -t 2.4092 -s 5 -d 4 -p ack -e 40 -c 0 -i 462 -a 0 -x {5.0 0.0 50 ------- null} - -t 2.4092 -s 5 -d 4 -p ack -e 40 -c 0 -i 462 -a 0 -x {5.0 0.0 50 ------- null} h -t 2.4092 -s 5 -d 4 -p ack -e 40 -c 0 -i 462 -a 0 -x {5.0 0.0 -1 ------- null} - -t 2.4096 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 454 -a 1 -x {2.0 7.0 111 ------- null} h -t 2.4096 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 454 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.4116 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {0.0 5.0 53 ------- null} + -t 2.4116 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {0.0 5.0 53 ------- null} - -t 2.4116 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {0.0 5.0 53 ------- null} h -t 2.4116 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.41326 -s 5 -d 4 -p ack -e 40 -c 0 -i 459 -a 0 -x {5.0 0.0 48 ------- null} + -t 2.41326 -s 4 -d 3 -p ack -e 40 -c 0 -i 459 -a 0 -x {5.0 0.0 48 ------- null} - -t 2.41326 -s 4 -d 3 -p ack -e 40 -c 0 -i 459 -a 0 -x {5.0 0.0 48 ------- null} h -t 2.41326 -s 4 -d 3 -p ack -e 40 -c 0 -i 459 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.4156 -s 3 -d 4 -p cbr -e 500 -c 1 -i 444 -a 1 -x {1.0 6.0 220 ------- null} + -t 2.4156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 444 -a 1 -x {1.0 6.0 220 ------- null} - -t 2.4156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 444 -a 1 -x {1.0 6.0 220 ------- null} h -t 2.4156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 444 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.4172 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {0.0 5.0 51 ------- null} + -t 2.4172 -s 5 -d 4 -p ack -e 40 -c 0 -i 463 -a 0 -x {5.0 0.0 51 ------- null} - -t 2.4172 -s 5 -d 4 -p ack -e 40 -c 0 -i 463 -a 0 -x {5.0 0.0 51 ------- null} h -t 2.4172 -s 5 -d 4 -p ack -e 40 -c 0 -i 463 -a 0 -x {5.0 0.0 -1 ------- null} - -t 2.4176 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 455 -a 1 -x {2.0 7.0 112 ------- null} h -t 2.4176 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 455 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.4196 -s 3 -d 4 -p cbr -e 500 -c 1 -i 445 -a 1 -x {1.0 6.0 221 ------- null} + -t 2.4196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 445 -a 1 -x {1.0 6.0 221 ------- null} - -t 2.4196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 445 -a 1 -x {1.0 6.0 221 ------- null} h -t 2.4196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 445 -a 1 -x {1.0 6.0 -1 ------- null} + -t 2.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 464 -a 1 -x {2.0 7.0 116 ------- null} - -t 2.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 464 -a 1 -x {2.0 7.0 116 ------- null} h -t 2.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 464 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.42126 -s 5 -d 4 -p ack -e 40 -c 0 -i 461 -a 0 -x {5.0 0.0 49 ------- null} + -t 2.42126 -s 4 -d 3 -p ack -e 40 -c 0 -i 461 -a 0 -x {5.0 0.0 49 ------- null} - -t 2.42126 -s 4 -d 3 -p ack -e 40 -c 0 -i 461 -a 0 -x {5.0 0.0 49 ------- null} h -t 2.42126 -s 4 -d 3 -p ack -e 40 -c 0 -i 461 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.4252 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {0.0 5.0 52 ------- null} + -t 2.4252 -s 5 -d 4 -p ack -e 40 -c 0 -i 465 -a 0 -x {5.0 0.0 52 ------- null} - -t 2.4252 -s 5 -d 4 -p ack -e 40 -c 0 -i 465 -a 0 -x {5.0 0.0 52 ------- null} h -t 2.4252 -s 5 -d 4 -p ack -e 40 -c 0 -i 465 -a 0 -x {5.0 0.0 -1 ------- null} - -t 2.4256 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 456 -a 1 -x {2.0 7.0 113 ------- null} h -t 2.4256 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 456 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.4276 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 446 -a 1 -x {2.0 7.0 108 ------- null} + -t 2.4276 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 446 -a 1 -x {2.0 7.0 108 ------- null} - -t 2.4276 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 446 -a 1 -x {2.0 7.0 108 ------- null} h -t 2.4276 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 446 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.428 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 460 -a 1 -x {2.0 7.0 115 ------- null} + -t 2.428 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 460 -a 1 -x {2.0 7.0 115 ------- null} r -t 2.42926 -s 5 -d 4 -p ack -e 40 -c 0 -i 462 -a 0 -x {5.0 0.0 50 ------- null} + -t 2.42926 -s 4 -d 3 -p ack -e 40 -c 0 -i 462 -a 0 -x {5.0 0.0 50 ------- null} - -t 2.42926 -s 4 -d 3 -p ack -e 40 -c 0 -i 462 -a 0 -x {5.0 0.0 50 ------- null} h -t 2.42926 -s 4 -d 3 -p ack -e 40 -c 0 -i 462 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.4316 -s 3 -d 4 -p cbr -e 500 -c 1 -i 448 -a 1 -x {1.0 6.0 222 ------- null} + -t 2.4316 -s 4 -d 6 -p cbr -e 500 -c 1 -i 448 -a 1 -x {1.0 6.0 222 ------- null} - -t 2.4316 -s 4 -d 6 -p cbr -e 500 -c 1 -i 448 -a 1 -x {1.0 6.0 222 ------- null} h -t 2.4316 -s 4 -d 6 -p cbr -e 500 -c 1 -i 448 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.4332 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {0.0 5.0 53 ------- null} + -t 2.4332 -s 5 -d 4 -p ack -e 40 -c 0 -i 466 -a 0 -x {5.0 0.0 53 ------- null} - -t 2.4332 -s 5 -d 4 -p ack -e 40 -c 0 -i 466 -a 0 -x {5.0 0.0 53 ------- null} h -t 2.4332 -s 5 -d 4 -p ack -e 40 -c 0 -i 466 -a 0 -x {5.0 0.0 -1 ------- null} - -t 2.4336 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 457 -a 1 -x {2.0 7.0 114 ------- null} h -t 2.4336 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 457 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.4356 -s 3 -d 4 -p cbr -e 500 -c 1 -i 449 -a 1 -x {1.0 6.0 223 ------- null} + -t 2.4356 -s 4 -d 6 -p cbr -e 500 -c 1 -i 449 -a 1 -x {1.0 6.0 223 ------- null} - -t 2.4356 -s 4 -d 6 -p cbr -e 500 -c 1 -i 449 -a 1 -x {1.0 6.0 223 ------- null} h -t 2.4356 -s 4 -d 6 -p cbr -e 500 -c 1 -i 449 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.43726 -s 5 -d 4 -p ack -e 40 -c 0 -i 463 -a 0 -x {5.0 0.0 51 ------- null} + -t 2.43726 -s 4 -d 3 -p ack -e 40 -c 0 -i 463 -a 0 -x {5.0 0.0 51 ------- null} - -t 2.43726 -s 4 -d 3 -p ack -e 40 -c 0 -i 463 -a 0 -x {5.0 0.0 51 ------- null} h -t 2.43726 -s 4 -d 3 -p ack -e 40 -c 0 -i 463 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.4396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 444 -a 1 -x {1.0 6.0 220 ------- null} + -t 2.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 467 -a 1 -x {2.0 7.0 117 ------- null} - -t 2.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 467 -a 1 -x {2.0 7.0 117 ------- null} h -t 2.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 467 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.4416 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 460 -a 1 -x {2.0 7.0 115 ------- null} h -t 2.4416 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 460 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.4436 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 450 -a 1 -x {2.0 7.0 109 ------- null} + -t 2.4436 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 450 -a 1 -x {2.0 7.0 109 ------- null} - -t 2.4436 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 450 -a 1 -x {2.0 7.0 109 ------- null} h -t 2.4436 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 450 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.4436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 445 -a 1 -x {1.0 6.0 221 ------- null} r -t 2.44526 -s 5 -d 4 -p ack -e 40 -c 0 -i 465 -a 0 -x {5.0 0.0 52 ------- null} + -t 2.44526 -s 4 -d 3 -p ack -e 40 -c 0 -i 465 -a 0 -x {5.0 0.0 52 ------- null} - -t 2.44526 -s 4 -d 3 -p ack -e 40 -c 0 -i 465 -a 0 -x {5.0 0.0 52 ------- null} h -t 2.44526 -s 4 -d 3 -p ack -e 40 -c 0 -i 465 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.4476 -s 3 -d 4 -p cbr -e 500 -c 1 -i 451 -a 1 -x {1.0 6.0 224 ------- null} + -t 2.4476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 451 -a 1 -x {1.0 6.0 224 ------- null} - -t 2.4476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 451 -a 1 -x {1.0 6.0 224 ------- null} h -t 2.4476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 451 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.448 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 464 -a 1 -x {2.0 7.0 116 ------- null} + -t 2.448 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 464 -a 1 -x {2.0 7.0 116 ------- null} - -t 2.4496 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 464 -a 1 -x {2.0 7.0 116 ------- null} h -t 2.4496 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 464 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.45158 -s 4 -d 3 -p ack -e 40 -c 0 -i 458 -a 0 -x {5.0 0.0 47 ------- null} + -t 2.45158 -s 3 -d 0 -p ack -e 40 -c 0 -i 458 -a 0 -x {5.0 0.0 47 ------- null} - -t 2.45158 -s 3 -d 0 -p ack -e 40 -c 0 -i 458 -a 0 -x {5.0 0.0 47 ------- null} h -t 2.45158 -s 3 -d 0 -p ack -e 40 -c 0 -i 458 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.4516 -s 3 -d 4 -p cbr -e 500 -c 1 -i 452 -a 1 -x {1.0 6.0 225 ------- null} + -t 2.4516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 452 -a 1 -x {1.0 6.0 225 ------- null} - -t 2.4516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 452 -a 1 -x {1.0 6.0 225 ------- null} h -t 2.4516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 452 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.45326 -s 5 -d 4 -p ack -e 40 -c 0 -i 466 -a 0 -x {5.0 0.0 53 ------- null} + -t 2.45326 -s 4 -d 3 -p ack -e 40 -c 0 -i 466 -a 0 -x {5.0 0.0 53 ------- null} - -t 2.45326 -s 4 -d 3 -p ack -e 40 -c 0 -i 466 -a 0 -x {5.0 0.0 53 ------- null} h -t 2.45326 -s 4 -d 3 -p ack -e 40 -c 0 -i 466 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.4556 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 446 -a 1 -x {2.0 7.0 108 ------- null} r -t 2.4556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 448 -a 1 -x {1.0 6.0 222 ------- null} r -t 2.4596 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 453 -a 1 -x {2.0 7.0 110 ------- null} + -t 2.4596 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 453 -a 1 -x {2.0 7.0 110 ------- null} - -t 2.4596 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 453 -a 1 -x {2.0 7.0 110 ------- null} h -t 2.4596 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 453 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.4596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 449 -a 1 -x {1.0 6.0 223 ------- null} + -t 2.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 468 -a 1 -x {2.0 7.0 118 ------- null} - -t 2.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 468 -a 1 -x {2.0 7.0 118 ------- null} h -t 2.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 468 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.46358 -s 4 -d 3 -p ack -e 40 -c 0 -i 459 -a 0 -x {5.0 0.0 48 ------- null} + -t 2.46358 -s 3 -d 0 -p ack -e 40 -c 0 -i 459 -a 0 -x {5.0 0.0 48 ------- null} - -t 2.46358 -s 3 -d 0 -p ack -e 40 -c 0 -i 459 -a 0 -x {5.0 0.0 48 ------- null} h -t 2.46358 -s 3 -d 0 -p ack -e 40 -c 0 -i 459 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.4676 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 454 -a 1 -x {2.0 7.0 111 ------- null} + -t 2.4676 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 454 -a 1 -x {2.0 7.0 111 ------- null} - -t 2.4676 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 454 -a 1 -x {2.0 7.0 111 ------- null} h -t 2.4676 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 454 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.468 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 467 -a 1 -x {2.0 7.0 117 ------- null} + -t 2.468 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 467 -a 1 -x {2.0 7.0 117 ------- null} - -t 2.468 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 467 -a 1 -x {2.0 7.0 117 ------- null} h -t 2.468 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 467 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.47158 -s 4 -d 3 -p ack -e 40 -c 0 -i 461 -a 0 -x {5.0 0.0 49 ------- null} + -t 2.47158 -s 3 -d 0 -p ack -e 40 -c 0 -i 461 -a 0 -x {5.0 0.0 49 ------- null} - -t 2.47158 -s 3 -d 0 -p ack -e 40 -c 0 -i 461 -a 0 -x {5.0 0.0 49 ------- null} h -t 2.47158 -s 3 -d 0 -p ack -e 40 -c 0 -i 461 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.4716 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 450 -a 1 -x {2.0 7.0 109 ------- null} r -t 2.4716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 451 -a 1 -x {1.0 6.0 224 ------- null} r -t 2.47165 -s 3 -d 0 -p ack -e 40 -c 0 -i 458 -a 0 -x {5.0 0.0 47 ------- null} + -t 2.47165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {0.0 5.0 55 ------- null} - -t 2.47165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {0.0 5.0 55 ------- null} h -t 2.47165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.4756 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 455 -a 1 -x {2.0 7.0 112 ------- null} + -t 2.4756 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 455 -a 1 -x {2.0 7.0 112 ------- null} r -t 2.4756 -s 4 -d 6 -p cbr -e 500 -c 1 -i 452 -a 1 -x {1.0 6.0 225 ------- null} - -t 2.4756 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 455 -a 1 -x {2.0 7.0 112 ------- null} h -t 2.4756 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 455 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.47958 -s 4 -d 3 -p ack -e 40 -c 0 -i 462 -a 0 -x {5.0 0.0 50 ------- null} + -t 2.47958 -s 3 -d 0 -p ack -e 40 -c 0 -i 462 -a 0 -x {5.0 0.0 50 ------- null} - -t 2.47958 -s 3 -d 0 -p ack -e 40 -c 0 -i 462 -a 0 -x {5.0 0.0 50 ------- null} h -t 2.47958 -s 3 -d 0 -p ack -e 40 -c 0 -i 462 -a 0 -x {5.0 0.0 -1 ------- null} + -t 2.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 470 -a 1 -x {2.0 7.0 119 ------- null} - -t 2.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 470 -a 1 -x {2.0 7.0 119 ------- null} h -t 2.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 470 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.4836 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 456 -a 1 -x {2.0 7.0 113 ------- null} + -t 2.4836 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 456 -a 1 -x {2.0 7.0 113 ------- null} - -t 2.4836 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 456 -a 1 -x {2.0 7.0 113 ------- null} h -t 2.4836 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 456 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.48365 -s 3 -d 0 -p ack -e 40 -c 0 -i 459 -a 0 -x {5.0 0.0 48 ------- null} + -t 2.48365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {0.0 5.0 56 ------- null} - -t 2.48365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {0.0 5.0 56 ------- null} h -t 2.48365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.48758 -s 4 -d 3 -p ack -e 40 -c 0 -i 463 -a 0 -x {5.0 0.0 51 ------- null} + -t 2.48758 -s 3 -d 0 -p ack -e 40 -c 0 -i 463 -a 0 -x {5.0 0.0 51 ------- null} - -t 2.48758 -s 3 -d 0 -p ack -e 40 -c 0 -i 463 -a 0 -x {5.0 0.0 51 ------- null} h -t 2.48758 -s 3 -d 0 -p ack -e 40 -c 0 -i 463 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.4876 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 453 -a 1 -x {2.0 7.0 110 ------- null} r -t 2.488 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 468 -a 1 -x {2.0 7.0 118 ------- null} + -t 2.488 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 468 -a 1 -x {2.0 7.0 118 ------- null} - -t 2.488 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 468 -a 1 -x {2.0 7.0 118 ------- null} h -t 2.488 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 468 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.4916 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 457 -a 1 -x {2.0 7.0 114 ------- null} + -t 2.4916 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 457 -a 1 -x {2.0 7.0 114 ------- null} - -t 2.4916 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 457 -a 1 -x {2.0 7.0 114 ------- null} h -t 2.4916 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 457 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.49165 -s 3 -d 0 -p ack -e 40 -c 0 -i 461 -a 0 -x {5.0 0.0 49 ------- null} + -t 2.49165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {0.0 5.0 57 ------- null} - -t 2.49165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {0.0 5.0 57 ------- null} h -t 2.49165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.49325 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {0.0 5.0 55 ------- null} + -t 2.49325 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {0.0 5.0 55 ------- null} r -t 2.49558 -s 4 -d 3 -p ack -e 40 -c 0 -i 465 -a 0 -x {5.0 0.0 52 ------- null} + -t 2.49558 -s 3 -d 0 -p ack -e 40 -c 0 -i 465 -a 0 -x {5.0 0.0 52 ------- null} - -t 2.49558 -s 3 -d 0 -p ack -e 40 -c 0 -i 465 -a 0 -x {5.0 0.0 52 ------- null} h -t 2.49558 -s 3 -d 0 -p ack -e 40 -c 0 -i 465 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.4956 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 454 -a 1 -x {2.0 7.0 111 ------- null} - -t 2.496 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {0.0 5.0 55 ------- null} h -t 2.496 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.4996 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 460 -a 1 -x {2.0 7.0 115 ------- null} + -t 2.4996 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 460 -a 1 -x {2.0 7.0 115 ------- null} - -t 2.4996 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 460 -a 1 -x {2.0 7.0 115 ------- null} h -t 2.4996 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 460 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.49965 -s 3 -d 0 -p ack -e 40 -c 0 -i 462 -a 0 -x {5.0 0.0 50 ------- null} + -t 2.49965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {0.0 5.0 58 ------- null} - -t 2.49965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {0.0 5.0 58 ------- null} h -t 2.49965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.50358 -s 4 -d 3 -p ack -e 40 -c 0 -i 466 -a 0 -x {5.0 0.0 53 ------- null} + -t 2.50358 -s 3 -d 0 -p ack -e 40 -c 0 -i 466 -a 0 -x {5.0 0.0 53 ------- null} - -t 2.50358 -s 3 -d 0 -p ack -e 40 -c 0 -i 466 -a 0 -x {5.0 0.0 53 ------- null} h -t 2.50358 -s 3 -d 0 -p ack -e 40 -c 0 -i 466 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.5036 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 455 -a 1 -x {2.0 7.0 112 ------- null} r -t 2.50525 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {0.0 5.0 56 ------- null} + -t 2.50525 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {0.0 5.0 56 ------- null} - -t 2.50525 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {0.0 5.0 56 ------- null} h -t 2.50525 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.5076 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 464 -a 1 -x {2.0 7.0 116 ------- null} + -t 2.5076 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 464 -a 1 -x {2.0 7.0 116 ------- null} - -t 2.5076 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 464 -a 1 -x {2.0 7.0 116 ------- null} h -t 2.5076 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 464 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.50765 -s 3 -d 0 -p ack -e 40 -c 0 -i 463 -a 0 -x {5.0 0.0 51 ------- null} r -t 2.508 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 470 -a 1 -x {2.0 7.0 119 ------- null} + -t 2.508 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 470 -a 1 -x {2.0 7.0 119 ------- null} r -t 2.5116 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 456 -a 1 -x {2.0 7.0 113 ------- null} r -t 2.51325 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {0.0 5.0 57 ------- null} + -t 2.51325 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {0.0 5.0 57 ------- null} - -t 2.51325 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 470 -a 1 -x {2.0 7.0 119 ------- null} h -t 2.51325 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 470 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.51565 -s 3 -d 0 -p ack -e 40 -c 0 -i 465 -a 0 -x {5.0 0.0 52 ------- null} r -t 2.5196 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 457 -a 1 -x {2.0 7.0 114 ------- null} r -t 2.52125 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {0.0 5.0 58 ------- null} + -t 2.52125 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {0.0 5.0 58 ------- null} - -t 2.52125 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {0.0 5.0 57 ------- null} h -t 2.52125 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.52365 -s 3 -d 0 -p ack -e 40 -c 0 -i 466 -a 0 -x {5.0 0.0 53 ------- null} r -t 2.526 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 467 -a 1 -x {2.0 7.0 117 ------- null} + -t 2.526 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 467 -a 1 -x {2.0 7.0 117 ------- null} - -t 2.526 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 467 -a 1 -x {2.0 7.0 117 ------- null} h -t 2.526 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 467 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.5276 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 460 -a 1 -x {2.0 7.0 115 ------- null} - -t 2.52925 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {0.0 5.0 58 ------- null} h -t 2.52925 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.5356 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 464 -a 1 -x {2.0 7.0 116 ------- null} r -t 2.546 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 468 -a 1 -x {2.0 7.0 118 ------- null} + -t 2.546 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 468 -a 1 -x {2.0 7.0 118 ------- null} - -t 2.546 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 468 -a 1 -x {2.0 7.0 118 ------- null} h -t 2.546 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 468 -a 1 -x {2.0 7.0 -1 ------- null} v -t 2.5499999999999998 sim_annotation 2.5499999999999998 4 FTP stops r -t 2.554 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {0.0 5.0 55 ------- null} + -t 2.554 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {0.0 5.0 55 ------- null} - -t 2.554 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {0.0 5.0 55 ------- null} h -t 2.554 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.554 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 467 -a 1 -x {2.0 7.0 117 ------- null} r -t 2.56325 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {0.0 5.0 56 ------- null} + -t 2.56325 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {0.0 5.0 56 ------- null} - -t 2.56325 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {0.0 5.0 56 ------- null} h -t 2.56325 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.57125 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 470 -a 1 -x {2.0 7.0 119 ------- null} + -t 2.57125 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 470 -a 1 -x {2.0 7.0 119 ------- null} - -t 2.57125 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 470 -a 1 -x {2.0 7.0 119 ------- null} h -t 2.57125 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 470 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.574 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 468 -a 1 -x {2.0 7.0 118 ------- null} r -t 2.5756 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {0.0 5.0 55 ------- null} + -t 2.5756 -s 5 -d 4 -p ack -e 40 -c 0 -i 474 -a 0 -x {5.0 0.0 53 ------- null} - -t 2.5756 -s 5 -d 4 -p ack -e 40 -c 0 -i 474 -a 0 -x {5.0 0.0 53 ------- null} h -t 2.5756 -s 5 -d 4 -p ack -e 40 -c 0 -i 474 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.57925 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {0.0 5.0 57 ------- null} + -t 2.57925 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {0.0 5.0 57 ------- null} - -t 2.57925 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {0.0 5.0 57 ------- null} h -t 2.57925 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.58485 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {0.0 5.0 56 ------- null} + -t 2.58485 -s 5 -d 4 -p ack -e 40 -c 0 -i 475 -a 0 -x {5.0 0.0 53 ------- null} - -t 2.58485 -s 5 -d 4 -p ack -e 40 -c 0 -i 475 -a 0 -x {5.0 0.0 53 ------- null} h -t 2.58485 -s 5 -d 4 -p ack -e 40 -c 0 -i 475 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.58725 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {0.0 5.0 58 ------- null} + -t 2.58725 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {0.0 5.0 58 ------- null} - -t 2.58725 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {0.0 5.0 58 ------- null} h -t 2.58725 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.59566 -s 5 -d 4 -p ack -e 40 -c 0 -i 474 -a 0 -x {5.0 0.0 53 ------- null} + -t 2.59566 -s 4 -d 3 -p ack -e 40 -c 0 -i 474 -a 0 -x {5.0 0.0 53 ------- null} - -t 2.59566 -s 4 -d 3 -p ack -e 40 -c 0 -i 474 -a 0 -x {5.0 0.0 53 ------- null} h -t 2.59566 -s 4 -d 3 -p ack -e 40 -c 0 -i 474 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.59925 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 470 -a 1 -x {2.0 7.0 119 ------- null} r -t 2.60085 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {0.0 5.0 57 ------- null} + -t 2.60085 -s 5 -d 4 -p ack -e 40 -c 0 -i 476 -a 0 -x {5.0 0.0 53 ------- null} - -t 2.60085 -s 5 -d 4 -p ack -e 40 -c 0 -i 476 -a 0 -x {5.0 0.0 53 ------- null} h -t 2.60085 -s 5 -d 4 -p ack -e 40 -c 0 -i 476 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.60491 -s 5 -d 4 -p ack -e 40 -c 0 -i 475 -a 0 -x {5.0 0.0 53 ------- null} + -t 2.60491 -s 4 -d 3 -p ack -e 40 -c 0 -i 475 -a 0 -x {5.0 0.0 53 ------- null} - -t 2.60491 -s 4 -d 3 -p ack -e 40 -c 0 -i 475 -a 0 -x {5.0 0.0 53 ------- null} h -t 2.60491 -s 4 -d 3 -p ack -e 40 -c 0 -i 475 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.60885 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {0.0 5.0 58 ------- null} + -t 2.60885 -s 5 -d 4 -p ack -e 40 -c 0 -i 477 -a 0 -x {5.0 0.0 53 ------- null} - -t 2.60885 -s 5 -d 4 -p ack -e 40 -c 0 -i 477 -a 0 -x {5.0 0.0 53 ------- null} h -t 2.60885 -s 5 -d 4 -p ack -e 40 -c 0 -i 477 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.62091 -s 5 -d 4 -p ack -e 40 -c 0 -i 476 -a 0 -x {5.0 0.0 53 ------- null} + -t 2.62091 -s 4 -d 3 -p ack -e 40 -c 0 -i 476 -a 0 -x {5.0 0.0 53 ------- null} - -t 2.62091 -s 4 -d 3 -p ack -e 40 -c 0 -i 476 -a 0 -x {5.0 0.0 53 ------- null} h -t 2.62091 -s 4 -d 3 -p ack -e 40 -c 0 -i 476 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.62891 -s 5 -d 4 -p ack -e 40 -c 0 -i 477 -a 0 -x {5.0 0.0 53 ------- null} + -t 2.62891 -s 4 -d 3 -p ack -e 40 -c 0 -i 477 -a 0 -x {5.0 0.0 53 ------- null} - -t 2.62891 -s 4 -d 3 -p ack -e 40 -c 0 -i 477 -a 0 -x {5.0 0.0 53 ------- null} h -t 2.62891 -s 4 -d 3 -p ack -e 40 -c 0 -i 477 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.64598 -s 4 -d 3 -p ack -e 40 -c 0 -i 474 -a 0 -x {5.0 0.0 53 ------- null} + -t 2.64598 -s 3 -d 0 -p ack -e 40 -c 0 -i 474 -a 0 -x {5.0 0.0 53 ------- null} - -t 2.64598 -s 3 -d 0 -p ack -e 40 -c 0 -i 474 -a 0 -x {5.0 0.0 53 ------- null} h -t 2.64598 -s 3 -d 0 -p ack -e 40 -c 0 -i 474 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.65523 -s 4 -d 3 -p ack -e 40 -c 0 -i 475 -a 0 -x {5.0 0.0 53 ------- null} + -t 2.65523 -s 3 -d 0 -p ack -e 40 -c 0 -i 475 -a 0 -x {5.0 0.0 53 ------- null} - -t 2.65523 -s 3 -d 0 -p ack -e 40 -c 0 -i 475 -a 0 -x {5.0 0.0 53 ------- null} h -t 2.65523 -s 3 -d 0 -p ack -e 40 -c 0 -i 475 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.66605 -s 3 -d 0 -p ack -e 40 -c 0 -i 474 -a 0 -x {5.0 0.0 53 ------- null} r -t 2.67123 -s 4 -d 3 -p ack -e 40 -c 0 -i 476 -a 0 -x {5.0 0.0 53 ------- null} + -t 2.67123 -s 3 -d 0 -p ack -e 40 -c 0 -i 476 -a 0 -x {5.0 0.0 53 ------- null} - -t 2.67123 -s 3 -d 0 -p ack -e 40 -c 0 -i 476 -a 0 -x {5.0 0.0 53 ------- null} h -t 2.67123 -s 3 -d 0 -p ack -e 40 -c 0 -i 476 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.6753 -s 3 -d 0 -p ack -e 40 -c 0 -i 475 -a 0 -x {5.0 0.0 53 ------- null} r -t 2.67923 -s 4 -d 3 -p ack -e 40 -c 0 -i 477 -a 0 -x {5.0 0.0 53 ------- null} + -t 2.67923 -s 3 -d 0 -p ack -e 40 -c 0 -i 477 -a 0 -x {5.0 0.0 53 ------- null} - -t 2.67923 -s 3 -d 0 -p ack -e 40 -c 0 -i 477 -a 0 -x {5.0 0.0 53 ------- null} h -t 2.67923 -s 3 -d 0 -p ack -e 40 -c 0 -i 477 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.6913 -s 3 -d 0 -p ack -e 40 -c 0 -i 476 -a 0 -x {5.0 0.0 53 ------- null} + -t 2.6913 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {0.0 5.0 54 ------- null} - -t 2.6913 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {0.0 5.0 54 ------- null} h -t 2.6913 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {0.0 5.0 -1 ------- null} + -t 2.6913 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {0.0 5.0 55 ------- null} + -t 2.6913 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {0.0 5.0 56 ------- null} + -t 2.6913 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {0.0 5.0 57 ------- null} - -t 2.6929 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {0.0 5.0 55 ------- null} h -t 2.6929 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {0.0 5.0 -1 ------- null} - -t 2.6945 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {0.0 5.0 56 ------- null} h -t 2.6945 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {0.0 5.0 -1 ------- null} - -t 2.6961 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {0.0 5.0 57 ------- null} h -t 2.6961 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.6993 -s 3 -d 0 -p ack -e 40 -c 0 -i 477 -a 0 -x {5.0 0.0 53 ------- null} nam-1.15/edu/C4-sliding-color.tcl0000664000076400007660000000577007024407026015400 0ustar tomhnsnam# Slow start protocol in a heavily loaded network. # features : labeling, annotation, nam-graph, and window size monitoring # # n0 n5 # \ / # n1 -- n3 ---------- n4 -- n6 # / \ # n2 n7 set ns [new Simulator] $ns color 0 black $ns color 1 red #$ns trace-all [open C4-sliding-color.tr w] #$ns namtrace-all [open C4-sliding-color.nam w] ### build topology with 8 nodes foreach i " 0 1 2 3 4 5 6 7" { set n$i [$ns node] } $ns at 0.0 "$n0 label SLIDING" $ns at 0.0 "$n5 label SLIDING" $ns at 0.0 "$n1 label CBR-1" $ns at 0.0 "$n2 label CBR-2" $ns at 0.0 "$n6 label CBR-1" $ns at 0.0 "$n7 label CBR-2" $ns duplex-link $n0 $n3 5Mb 20ms DropTail $ns duplex-link $n1 $n3 1Mb 20ms DropTail $ns duplex-link $n2 $n3 1Mb 20ms DropTail $ns duplex-link $n3 $n4 1Mb 50ms DropTail $ns duplex-link $n4 $n5 5Mb 20ms DropTail $ns duplex-link $n4 $n6 1Mb 20ms DropTail $ns duplex-link $n4 $n7 1Mb 20ms DropTail $ns queue-limit $n3 $n4 15 $ns duplex-link-op $n0 $n3 orient right-down $ns duplex-link-op $n1 $n3 orient right $ns duplex-link-op $n2 $n3 orient right-up $ns duplex-link-op $n3 $n4 orient right $ns duplex-link-op $n4 $n5 orient right-up $ns duplex-link-op $n4 $n6 orient right $ns duplex-link-op $n4 $n7 orient right-down $ns duplex-link-op $n3 $n4 queuePos 0.5 Agent/TCP set nam_tracevar_ true # set window size Agent/TCP set maxcwnd_ 8 ### TCP between n0 and n5 (Black) #set sliding [new Agent/TCP/SlidingWindow] set sliding [new Agent/TCP] $sliding set fid_ 0 $ns attach-agent $n0 $sliding #set sink [new Agent/TCPSink/SlidingWindowSink] set sink [new Agent/TCPSink] $ns attach-agent $n5 $sink $ns connect $sliding $sink set ftp [new Application/FTP] $ftp attach-agent $sliding $ns add-agent-trace $sliding tcp $ns monitor-agent-trace $sliding $sliding tracevar cwnd_ $sliding tracevar ssthresh_ ### CBR traffic between (n1 & n6) and (n2 & n7) set cbr0 [new Agent/CBR] $ns attach-agent $n1 $cbr0 $cbr0 set fid_ 1 $cbr0 set packetSize_ 500 $cbr0 set interval_ 0.01 set null0 [new Agent/CBR] $ns attach-agent $n6 $null0 $ns connect $cbr0 $null0 set cbr1 [new Agent/CBR] $ns attach-agent $n2 $cbr1 $cbr1 set fid_ 1 $cbr1 set packetSize_ 1000 $cbr1 set interval_ 0.02 set null1 [new Agent/CBR] $ns attach-agent $n7 $null1 $ns connect $cbr1 $null1 proc finish {} { global ns $ns flush-trace puts "running nam..." exec nam C4-sliding-color.nam & exit 0 } ### set operations $ns at 0.05 "$cbr0 start" $ns at 2.3 "$cbr0 stop" $ns at 0.1 "$cbr1 start" $ns at 2.5 "$cbr1 stop" $ns at 0.5 "$ftp start" $ns at 2.5 "$ftp stop" $ns at 2.7 "finish" ### add annotations $ns at 0.05 "$ns trace-annotate \"CBR-1 starts\"" $ns at 0.1 "$ns trace-annotate \"CBR-2 starts\"" $ns at 0.5 "$ns trace-annotate \"FTP starts\"" $ns at 2.55 "$ns trace-annotate \"FTP stops\"" $ns run nam-1.15/edu/C4-sliding-color.tr0000664000076400007660000057703106756704677015276 0ustar tomhnsnam+ 0.05 1 3 cbr 500 ------- 1 1.0 6.0 0 0 - 0.05 1 3 cbr 500 ------- 1 1.0 6.0 0 0 v 0.050000000000000003 eval {set sim_annotation {CBR-1 starts}} + 0.06 1 3 cbr 500 ------- 1 1.0 6.0 1 1 - 0.06 1 3 cbr 500 ------- 1 1.0 6.0 1 1 + 0.07 1 3 cbr 500 ------- 1 1.0 6.0 2 2 - 0.07 1 3 cbr 500 ------- 1 1.0 6.0 2 2 r 0.074 1 3 cbr 500 ------- 1 1.0 6.0 0 0 + 0.074 3 4 cbr 500 ------- 1 1.0 6.0 0 0 - 0.074 3 4 cbr 500 ------- 1 1.0 6.0 0 0 + 0.08 1 3 cbr 500 ------- 1 1.0 6.0 3 3 - 0.08 1 3 cbr 500 ------- 1 1.0 6.0 3 3 r 0.084 1 3 cbr 500 ------- 1 1.0 6.0 1 1 + 0.084 3 4 cbr 500 ------- 1 1.0 6.0 1 1 - 0.084 3 4 cbr 500 ------- 1 1.0 6.0 1 1 + 0.09 1 3 cbr 500 ------- 1 1.0 6.0 4 4 - 0.09 1 3 cbr 500 ------- 1 1.0 6.0 4 4 r 0.094 1 3 cbr 500 ------- 1 1.0 6.0 2 2 + 0.094 3 4 cbr 500 ------- 1 1.0 6.0 2 2 - 0.094 3 4 cbr 500 ------- 1 1.0 6.0 2 2 + 0.1 1 3 cbr 500 ------- 1 1.0 6.0 5 5 - 0.1 1 3 cbr 500 ------- 1 1.0 6.0 5 5 + 0.1 2 3 cbr 1000 ------- 1 2.0 7.0 0 6 - 0.1 2 3 cbr 1000 ------- 1 2.0 7.0 0 6 v 0.10000000000000001 eval {set sim_annotation {CBR-2 starts}} r 0.104 1 3 cbr 500 ------- 1 1.0 6.0 3 3 + 0.104 3 4 cbr 500 ------- 1 1.0 6.0 3 3 - 0.104 3 4 cbr 500 ------- 1 1.0 6.0 3 3 + 0.11 1 3 cbr 500 ------- 1 1.0 6.0 6 7 - 0.11 1 3 cbr 500 ------- 1 1.0 6.0 6 7 r 0.114 1 3 cbr 500 ------- 1 1.0 6.0 4 4 + 0.114 3 4 cbr 500 ------- 1 1.0 6.0 4 4 - 0.114 3 4 cbr 500 ------- 1 1.0 6.0 4 4 + 0.12 1 3 cbr 500 ------- 1 1.0 6.0 7 8 - 0.12 1 3 cbr 500 ------- 1 1.0 6.0 7 8 + 0.12 2 3 cbr 1000 ------- 1 2.0 7.0 1 9 - 0.12 2 3 cbr 1000 ------- 1 2.0 7.0 1 9 r 0.124 1 3 cbr 500 ------- 1 1.0 6.0 5 5 + 0.124 3 4 cbr 500 ------- 1 1.0 6.0 5 5 - 0.124 3 4 cbr 500 ------- 1 1.0 6.0 5 5 r 0.128 3 4 cbr 500 ------- 1 1.0 6.0 0 0 + 0.128 4 6 cbr 500 ------- 1 1.0 6.0 0 0 - 0.128 4 6 cbr 500 ------- 1 1.0 6.0 0 0 r 0.128 2 3 cbr 1000 ------- 1 2.0 7.0 0 6 + 0.128 3 4 cbr 1000 ------- 1 2.0 7.0 0 6 - 0.128 3 4 cbr 1000 ------- 1 2.0 7.0 0 6 + 0.13 1 3 cbr 500 ------- 1 1.0 6.0 8 10 - 0.13 1 3 cbr 500 ------- 1 1.0 6.0 8 10 r 0.134 1 3 cbr 500 ------- 1 1.0 6.0 6 7 + 0.134 3 4 cbr 500 ------- 1 1.0 6.0 6 7 - 0.136 3 4 cbr 500 ------- 1 1.0 6.0 6 7 r 0.138 3 4 cbr 500 ------- 1 1.0 6.0 1 1 + 0.138 4 6 cbr 500 ------- 1 1.0 6.0 1 1 - 0.138 4 6 cbr 500 ------- 1 1.0 6.0 1 1 + 0.14 1 3 cbr 500 ------- 1 1.0 6.0 9 11 - 0.14 1 3 cbr 500 ------- 1 1.0 6.0 9 11 + 0.14 2 3 cbr 1000 ------- 1 2.0 7.0 2 12 - 0.14 2 3 cbr 1000 ------- 1 2.0 7.0 2 12 r 0.144 1 3 cbr 500 ------- 1 1.0 6.0 7 8 + 0.144 3 4 cbr 500 ------- 1 1.0 6.0 7 8 - 0.144 3 4 cbr 500 ------- 1 1.0 6.0 7 8 r 0.148 3 4 cbr 500 ------- 1 1.0 6.0 2 2 + 0.148 4 6 cbr 500 ------- 1 1.0 6.0 2 2 - 0.148 4 6 cbr 500 ------- 1 1.0 6.0 2 2 r 0.148 2 3 cbr 1000 ------- 1 2.0 7.0 1 9 + 0.148 3 4 cbr 1000 ------- 1 2.0 7.0 1 9 - 0.148 3 4 cbr 1000 ------- 1 2.0 7.0 1 9 + 0.15 1 3 cbr 500 ------- 1 1.0 6.0 10 13 - 0.15 1 3 cbr 500 ------- 1 1.0 6.0 10 13 r 0.152 4 6 cbr 500 ------- 1 1.0 6.0 0 0 r 0.154 1 3 cbr 500 ------- 1 1.0 6.0 8 10 + 0.154 3 4 cbr 500 ------- 1 1.0 6.0 8 10 - 0.156 3 4 cbr 500 ------- 1 1.0 6.0 8 10 r 0.158 3 4 cbr 500 ------- 1 1.0 6.0 3 3 + 0.158 4 6 cbr 500 ------- 1 1.0 6.0 3 3 - 0.158 4 6 cbr 500 ------- 1 1.0 6.0 3 3 + 0.16 2 3 cbr 1000 ------- 1 2.0 7.0 3 14 - 0.16 2 3 cbr 1000 ------- 1 2.0 7.0 3 14 + 0.16 1 3 cbr 500 ------- 1 1.0 6.0 11 15 - 0.16 1 3 cbr 500 ------- 1 1.0 6.0 11 15 r 0.162 4 6 cbr 500 ------- 1 1.0 6.0 1 1 r 0.164 1 3 cbr 500 ------- 1 1.0 6.0 9 11 + 0.164 3 4 cbr 500 ------- 1 1.0 6.0 9 11 - 0.164 3 4 cbr 500 ------- 1 1.0 6.0 9 11 r 0.168 3 4 cbr 500 ------- 1 1.0 6.0 4 4 + 0.168 4 6 cbr 500 ------- 1 1.0 6.0 4 4 - 0.168 4 6 cbr 500 ------- 1 1.0 6.0 4 4 r 0.168 2 3 cbr 1000 ------- 1 2.0 7.0 2 12 + 0.168 3 4 cbr 1000 ------- 1 2.0 7.0 2 12 - 0.168 3 4 cbr 1000 ------- 1 2.0 7.0 2 12 + 0.17 1 3 cbr 500 ------- 1 1.0 6.0 12 16 - 0.17 1 3 cbr 500 ------- 1 1.0 6.0 12 16 r 0.172 4 6 cbr 500 ------- 1 1.0 6.0 2 2 r 0.174 1 3 cbr 500 ------- 1 1.0 6.0 10 13 + 0.174 3 4 cbr 500 ------- 1 1.0 6.0 10 13 - 0.176 3 4 cbr 500 ------- 1 1.0 6.0 10 13 r 0.178 3 4 cbr 500 ------- 1 1.0 6.0 5 5 + 0.178 4 6 cbr 500 ------- 1 1.0 6.0 5 5 - 0.178 4 6 cbr 500 ------- 1 1.0 6.0 5 5 + 0.18 2 3 cbr 1000 ------- 1 2.0 7.0 4 17 - 0.18 2 3 cbr 1000 ------- 1 2.0 7.0 4 17 + 0.18 1 3 cbr 500 ------- 1 1.0 6.0 13 18 - 0.18 1 3 cbr 500 ------- 1 1.0 6.0 13 18 r 0.182 4 6 cbr 500 ------- 1 1.0 6.0 3 3 r 0.184 1 3 cbr 500 ------- 1 1.0 6.0 11 15 + 0.184 3 4 cbr 500 ------- 1 1.0 6.0 11 15 - 0.184 3 4 cbr 500 ------- 1 1.0 6.0 11 15 r 0.186 3 4 cbr 1000 ------- 1 2.0 7.0 0 6 + 0.186 4 7 cbr 1000 ------- 1 2.0 7.0 0 6 - 0.186 4 7 cbr 1000 ------- 1 2.0 7.0 0 6 r 0.188 2 3 cbr 1000 ------- 1 2.0 7.0 3 14 + 0.188 3 4 cbr 1000 ------- 1 2.0 7.0 3 14 - 0.188 3 4 cbr 1000 ------- 1 2.0 7.0 3 14 r 0.19 3 4 cbr 500 ------- 1 1.0 6.0 6 7 + 0.19 4 6 cbr 500 ------- 1 1.0 6.0 6 7 - 0.19 4 6 cbr 500 ------- 1 1.0 6.0 6 7 + 0.19 1 3 cbr 500 ------- 1 1.0 6.0 14 19 - 0.19 1 3 cbr 500 ------- 1 1.0 6.0 14 19 r 0.192 4 6 cbr 500 ------- 1 1.0 6.0 4 4 r 0.194 1 3 cbr 500 ------- 1 1.0 6.0 12 16 + 0.194 3 4 cbr 500 ------- 1 1.0 6.0 12 16 - 0.196 3 4 cbr 500 ------- 1 1.0 6.0 12 16 r 0.198 3 4 cbr 500 ------- 1 1.0 6.0 7 8 + 0.198 4 6 cbr 500 ------- 1 1.0 6.0 7 8 - 0.198 4 6 cbr 500 ------- 1 1.0 6.0 7 8 + 0.2 2 3 cbr 1000 ------- 1 2.0 7.0 5 20 - 0.2 2 3 cbr 1000 ------- 1 2.0 7.0 5 20 + 0.2 1 3 cbr 500 ------- 1 1.0 6.0 15 21 - 0.2 1 3 cbr 500 ------- 1 1.0 6.0 15 21 r 0.202 4 6 cbr 500 ------- 1 1.0 6.0 5 5 r 0.204 1 3 cbr 500 ------- 1 1.0 6.0 13 18 + 0.204 3 4 cbr 500 ------- 1 1.0 6.0 13 18 - 0.204 3 4 cbr 500 ------- 1 1.0 6.0 13 18 r 0.206 3 4 cbr 1000 ------- 1 2.0 7.0 1 9 + 0.206 4 7 cbr 1000 ------- 1 2.0 7.0 1 9 - 0.206 4 7 cbr 1000 ------- 1 2.0 7.0 1 9 r 0.208 2 3 cbr 1000 ------- 1 2.0 7.0 4 17 + 0.208 3 4 cbr 1000 ------- 1 2.0 7.0 4 17 - 0.208 3 4 cbr 1000 ------- 1 2.0 7.0 4 17 r 0.21 3 4 cbr 500 ------- 1 1.0 6.0 8 10 + 0.21 4 6 cbr 500 ------- 1 1.0 6.0 8 10 - 0.21 4 6 cbr 500 ------- 1 1.0 6.0 8 10 + 0.21 1 3 cbr 500 ------- 1 1.0 6.0 16 22 - 0.21 1 3 cbr 500 ------- 1 1.0 6.0 16 22 r 0.214 4 7 cbr 1000 ------- 1 2.0 7.0 0 6 r 0.214 4 6 cbr 500 ------- 1 1.0 6.0 6 7 r 0.214 1 3 cbr 500 ------- 1 1.0 6.0 14 19 + 0.214 3 4 cbr 500 ------- 1 1.0 6.0 14 19 - 0.216 3 4 cbr 500 ------- 1 1.0 6.0 14 19 r 0.218 3 4 cbr 500 ------- 1 1.0 6.0 9 11 + 0.218 4 6 cbr 500 ------- 1 1.0 6.0 9 11 - 0.218 4 6 cbr 500 ------- 1 1.0 6.0 9 11 + 0.22 2 3 cbr 1000 ------- 1 2.0 7.0 6 23 - 0.22 2 3 cbr 1000 ------- 1 2.0 7.0 6 23 + 0.22 1 3 cbr 500 ------- 1 1.0 6.0 17 24 - 0.22 1 3 cbr 500 ------- 1 1.0 6.0 17 24 r 0.222 4 6 cbr 500 ------- 1 1.0 6.0 7 8 r 0.224 1 3 cbr 500 ------- 1 1.0 6.0 15 21 + 0.224 3 4 cbr 500 ------- 1 1.0 6.0 15 21 - 0.224 3 4 cbr 500 ------- 1 1.0 6.0 15 21 r 0.226 3 4 cbr 1000 ------- 1 2.0 7.0 2 12 + 0.226 4 7 cbr 1000 ------- 1 2.0 7.0 2 12 - 0.226 4 7 cbr 1000 ------- 1 2.0 7.0 2 12 r 0.228 2 3 cbr 1000 ------- 1 2.0 7.0 5 20 + 0.228 3 4 cbr 1000 ------- 1 2.0 7.0 5 20 - 0.228 3 4 cbr 1000 ------- 1 2.0 7.0 5 20 r 0.23 3 4 cbr 500 ------- 1 1.0 6.0 10 13 + 0.23 4 6 cbr 500 ------- 1 1.0 6.0 10 13 - 0.23 4 6 cbr 500 ------- 1 1.0 6.0 10 13 + 0.23 1 3 cbr 500 ------- 1 1.0 6.0 18 25 - 0.23 1 3 cbr 500 ------- 1 1.0 6.0 18 25 r 0.234 4 7 cbr 1000 ------- 1 2.0 7.0 1 9 r 0.234 4 6 cbr 500 ------- 1 1.0 6.0 8 10 r 0.234 1 3 cbr 500 ------- 1 1.0 6.0 16 22 + 0.234 3 4 cbr 500 ------- 1 1.0 6.0 16 22 - 0.236 3 4 cbr 500 ------- 1 1.0 6.0 16 22 r 0.238 3 4 cbr 500 ------- 1 1.0 6.0 11 15 + 0.238 4 6 cbr 500 ------- 1 1.0 6.0 11 15 - 0.238 4 6 cbr 500 ------- 1 1.0 6.0 11 15 + 0.24 2 3 cbr 1000 ------- 1 2.0 7.0 7 26 - 0.24 2 3 cbr 1000 ------- 1 2.0 7.0 7 26 + 0.24 1 3 cbr 500 ------- 1 1.0 6.0 19 27 - 0.24 1 3 cbr 500 ------- 1 1.0 6.0 19 27 r 0.242 4 6 cbr 500 ------- 1 1.0 6.0 9 11 r 0.244 1 3 cbr 500 ------- 1 1.0 6.0 17 24 + 0.244 3 4 cbr 500 ------- 1 1.0 6.0 17 24 - 0.244 3 4 cbr 500 ------- 1 1.0 6.0 17 24 r 0.246 3 4 cbr 1000 ------- 1 2.0 7.0 3 14 + 0.246 4 7 cbr 1000 ------- 1 2.0 7.0 3 14 - 0.246 4 7 cbr 1000 ------- 1 2.0 7.0 3 14 r 0.248 2 3 cbr 1000 ------- 1 2.0 7.0 6 23 + 0.248 3 4 cbr 1000 ------- 1 2.0 7.0 6 23 - 0.248 3 4 cbr 1000 ------- 1 2.0 7.0 6 23 r 0.25 3 4 cbr 500 ------- 1 1.0 6.0 12 16 + 0.25 4 6 cbr 500 ------- 1 1.0 6.0 12 16 - 0.25 4 6 cbr 500 ------- 1 1.0 6.0 12 16 + 0.25 1 3 cbr 500 ------- 1 1.0 6.0 20 28 - 0.25 1 3 cbr 500 ------- 1 1.0 6.0 20 28 r 0.254 4 7 cbr 1000 ------- 1 2.0 7.0 2 12 r 0.254 4 6 cbr 500 ------- 1 1.0 6.0 10 13 r 0.254 1 3 cbr 500 ------- 1 1.0 6.0 18 25 + 0.254 3 4 cbr 500 ------- 1 1.0 6.0 18 25 - 0.256 3 4 cbr 500 ------- 1 1.0 6.0 18 25 r 0.258 3 4 cbr 500 ------- 1 1.0 6.0 13 18 + 0.258 4 6 cbr 500 ------- 1 1.0 6.0 13 18 - 0.258 4 6 cbr 500 ------- 1 1.0 6.0 13 18 + 0.26 2 3 cbr 1000 ------- 1 2.0 7.0 8 29 - 0.26 2 3 cbr 1000 ------- 1 2.0 7.0 8 29 + 0.26 1 3 cbr 500 ------- 1 1.0 6.0 21 30 - 0.26 1 3 cbr 500 ------- 1 1.0 6.0 21 30 r 0.262 4 6 cbr 500 ------- 1 1.0 6.0 11 15 r 0.264 1 3 cbr 500 ------- 1 1.0 6.0 19 27 + 0.264 3 4 cbr 500 ------- 1 1.0 6.0 19 27 - 0.264 3 4 cbr 500 ------- 1 1.0 6.0 19 27 r 0.266 3 4 cbr 1000 ------- 1 2.0 7.0 4 17 + 0.266 4 7 cbr 1000 ------- 1 2.0 7.0 4 17 - 0.266 4 7 cbr 1000 ------- 1 2.0 7.0 4 17 r 0.268 2 3 cbr 1000 ------- 1 2.0 7.0 7 26 + 0.268 3 4 cbr 1000 ------- 1 2.0 7.0 7 26 - 0.268 3 4 cbr 1000 ------- 1 2.0 7.0 7 26 r 0.27 3 4 cbr 500 ------- 1 1.0 6.0 14 19 + 0.27 4 6 cbr 500 ------- 1 1.0 6.0 14 19 - 0.27 4 6 cbr 500 ------- 1 1.0 6.0 14 19 + 0.27 1 3 cbr 500 ------- 1 1.0 6.0 22 31 - 0.27 1 3 cbr 500 ------- 1 1.0 6.0 22 31 r 0.274 4 7 cbr 1000 ------- 1 2.0 7.0 3 14 r 0.274 4 6 cbr 500 ------- 1 1.0 6.0 12 16 r 0.274 1 3 cbr 500 ------- 1 1.0 6.0 20 28 + 0.274 3 4 cbr 500 ------- 1 1.0 6.0 20 28 - 0.276 3 4 cbr 500 ------- 1 1.0 6.0 20 28 r 0.278 3 4 cbr 500 ------- 1 1.0 6.0 15 21 + 0.278 4 6 cbr 500 ------- 1 1.0 6.0 15 21 - 0.278 4 6 cbr 500 ------- 1 1.0 6.0 15 21 + 0.28 2 3 cbr 1000 ------- 1 2.0 7.0 9 32 - 0.28 2 3 cbr 1000 ------- 1 2.0 7.0 9 32 + 0.28 1 3 cbr 500 ------- 1 1.0 6.0 23 33 - 0.28 1 3 cbr 500 ------- 1 1.0 6.0 23 33 r 0.282 4 6 cbr 500 ------- 1 1.0 6.0 13 18 r 0.284 1 3 cbr 500 ------- 1 1.0 6.0 21 30 + 0.284 3 4 cbr 500 ------- 1 1.0 6.0 21 30 - 0.284 3 4 cbr 500 ------- 1 1.0 6.0 21 30 r 0.286 3 4 cbr 1000 ------- 1 2.0 7.0 5 20 + 0.286 4 7 cbr 1000 ------- 1 2.0 7.0 5 20 - 0.286 4 7 cbr 1000 ------- 1 2.0 7.0 5 20 r 0.288 2 3 cbr 1000 ------- 1 2.0 7.0 8 29 + 0.288 3 4 cbr 1000 ------- 1 2.0 7.0 8 29 - 0.288 3 4 cbr 1000 ------- 1 2.0 7.0 8 29 r 0.29 3 4 cbr 500 ------- 1 1.0 6.0 16 22 + 0.29 4 6 cbr 500 ------- 1 1.0 6.0 16 22 - 0.29 4 6 cbr 500 ------- 1 1.0 6.0 16 22 + 0.29 1 3 cbr 500 ------- 1 1.0 6.0 24 34 - 0.29 1 3 cbr 500 ------- 1 1.0 6.0 24 34 r 0.294 4 7 cbr 1000 ------- 1 2.0 7.0 4 17 r 0.294 4 6 cbr 500 ------- 1 1.0 6.0 14 19 r 0.294 1 3 cbr 500 ------- 1 1.0 6.0 22 31 + 0.294 3 4 cbr 500 ------- 1 1.0 6.0 22 31 - 0.296 3 4 cbr 500 ------- 1 1.0 6.0 22 31 r 0.298 3 4 cbr 500 ------- 1 1.0 6.0 17 24 + 0.298 4 6 cbr 500 ------- 1 1.0 6.0 17 24 - 0.298 4 6 cbr 500 ------- 1 1.0 6.0 17 24 + 0.3 2 3 cbr 1000 ------- 1 2.0 7.0 10 35 - 0.3 2 3 cbr 1000 ------- 1 2.0 7.0 10 35 + 0.3 1 3 cbr 500 ------- 1 1.0 6.0 25 36 - 0.3 1 3 cbr 500 ------- 1 1.0 6.0 25 36 r 0.302 4 6 cbr 500 ------- 1 1.0 6.0 15 21 r 0.304 1 3 cbr 500 ------- 1 1.0 6.0 23 33 + 0.304 3 4 cbr 500 ------- 1 1.0 6.0 23 33 - 0.304 3 4 cbr 500 ------- 1 1.0 6.0 23 33 r 0.306 3 4 cbr 1000 ------- 1 2.0 7.0 6 23 + 0.306 4 7 cbr 1000 ------- 1 2.0 7.0 6 23 - 0.306 4 7 cbr 1000 ------- 1 2.0 7.0 6 23 r 0.308 2 3 cbr 1000 ------- 1 2.0 7.0 9 32 + 0.308 3 4 cbr 1000 ------- 1 2.0 7.0 9 32 - 0.308 3 4 cbr 1000 ------- 1 2.0 7.0 9 32 r 0.31 3 4 cbr 500 ------- 1 1.0 6.0 18 25 + 0.31 4 6 cbr 500 ------- 1 1.0 6.0 18 25 - 0.31 4 6 cbr 500 ------- 1 1.0 6.0 18 25 + 0.31 1 3 cbr 500 ------- 1 1.0 6.0 26 37 - 0.31 1 3 cbr 500 ------- 1 1.0 6.0 26 37 r 0.314 4 7 cbr 1000 ------- 1 2.0 7.0 5 20 r 0.314 4 6 cbr 500 ------- 1 1.0 6.0 16 22 r 0.314 1 3 cbr 500 ------- 1 1.0 6.0 24 34 + 0.314 3 4 cbr 500 ------- 1 1.0 6.0 24 34 - 0.316 3 4 cbr 500 ------- 1 1.0 6.0 24 34 r 0.318 3 4 cbr 500 ------- 1 1.0 6.0 19 27 + 0.318 4 6 cbr 500 ------- 1 1.0 6.0 19 27 - 0.318 4 6 cbr 500 ------- 1 1.0 6.0 19 27 + 0.32 2 3 cbr 1000 ------- 1 2.0 7.0 11 38 - 0.32 2 3 cbr 1000 ------- 1 2.0 7.0 11 38 + 0.32 1 3 cbr 500 ------- 1 1.0 6.0 27 39 - 0.32 1 3 cbr 500 ------- 1 1.0 6.0 27 39 r 0.322 4 6 cbr 500 ------- 1 1.0 6.0 17 24 r 0.324 1 3 cbr 500 ------- 1 1.0 6.0 25 36 + 0.324 3 4 cbr 500 ------- 1 1.0 6.0 25 36 - 0.324 3 4 cbr 500 ------- 1 1.0 6.0 25 36 r 0.326 3 4 cbr 1000 ------- 1 2.0 7.0 7 26 + 0.326 4 7 cbr 1000 ------- 1 2.0 7.0 7 26 - 0.326 4 7 cbr 1000 ------- 1 2.0 7.0 7 26 r 0.328 2 3 cbr 1000 ------- 1 2.0 7.0 10 35 + 0.328 3 4 cbr 1000 ------- 1 2.0 7.0 10 35 - 0.328 3 4 cbr 1000 ------- 1 2.0 7.0 10 35 r 0.33 3 4 cbr 500 ------- 1 1.0 6.0 20 28 + 0.33 4 6 cbr 500 ------- 1 1.0 6.0 20 28 - 0.33 4 6 cbr 500 ------- 1 1.0 6.0 20 28 + 0.33 1 3 cbr 500 ------- 1 1.0 6.0 28 40 - 0.33 1 3 cbr 500 ------- 1 1.0 6.0 28 40 r 0.334 4 7 cbr 1000 ------- 1 2.0 7.0 6 23 r 0.334 4 6 cbr 500 ------- 1 1.0 6.0 18 25 r 0.334 1 3 cbr 500 ------- 1 1.0 6.0 26 37 + 0.334 3 4 cbr 500 ------- 1 1.0 6.0 26 37 - 0.336 3 4 cbr 500 ------- 1 1.0 6.0 26 37 r 0.338 3 4 cbr 500 ------- 1 1.0 6.0 21 30 + 0.338 4 6 cbr 500 ------- 1 1.0 6.0 21 30 - 0.338 4 6 cbr 500 ------- 1 1.0 6.0 21 30 + 0.34 2 3 cbr 1000 ------- 1 2.0 7.0 12 41 - 0.34 2 3 cbr 1000 ------- 1 2.0 7.0 12 41 + 0.34 1 3 cbr 500 ------- 1 1.0 6.0 29 42 - 0.34 1 3 cbr 500 ------- 1 1.0 6.0 29 42 r 0.342 4 6 cbr 500 ------- 1 1.0 6.0 19 27 r 0.344 1 3 cbr 500 ------- 1 1.0 6.0 27 39 + 0.344 3 4 cbr 500 ------- 1 1.0 6.0 27 39 - 0.344 3 4 cbr 500 ------- 1 1.0 6.0 27 39 r 0.346 3 4 cbr 1000 ------- 1 2.0 7.0 8 29 + 0.346 4 7 cbr 1000 ------- 1 2.0 7.0 8 29 - 0.346 4 7 cbr 1000 ------- 1 2.0 7.0 8 29 r 0.348 2 3 cbr 1000 ------- 1 2.0 7.0 11 38 + 0.348 3 4 cbr 1000 ------- 1 2.0 7.0 11 38 - 0.348 3 4 cbr 1000 ------- 1 2.0 7.0 11 38 r 0.35 3 4 cbr 500 ------- 1 1.0 6.0 22 31 + 0.35 4 6 cbr 500 ------- 1 1.0 6.0 22 31 - 0.35 4 6 cbr 500 ------- 1 1.0 6.0 22 31 + 0.35 1 3 cbr 500 ------- 1 1.0 6.0 30 43 - 0.35 1 3 cbr 500 ------- 1 1.0 6.0 30 43 r 0.354 4 7 cbr 1000 ------- 1 2.0 7.0 7 26 r 0.354 4 6 cbr 500 ------- 1 1.0 6.0 20 28 r 0.354 1 3 cbr 500 ------- 1 1.0 6.0 28 40 + 0.354 3 4 cbr 500 ------- 1 1.0 6.0 28 40 - 0.356 3 4 cbr 500 ------- 1 1.0 6.0 28 40 r 0.358 3 4 cbr 500 ------- 1 1.0 6.0 23 33 + 0.358 4 6 cbr 500 ------- 1 1.0 6.0 23 33 - 0.358 4 6 cbr 500 ------- 1 1.0 6.0 23 33 + 0.36 2 3 cbr 1000 ------- 1 2.0 7.0 13 44 - 0.36 2 3 cbr 1000 ------- 1 2.0 7.0 13 44 + 0.36 1 3 cbr 500 ------- 1 1.0 6.0 31 45 - 0.36 1 3 cbr 500 ------- 1 1.0 6.0 31 45 r 0.362 4 6 cbr 500 ------- 1 1.0 6.0 21 30 r 0.364 1 3 cbr 500 ------- 1 1.0 6.0 29 42 + 0.364 3 4 cbr 500 ------- 1 1.0 6.0 29 42 - 0.364 3 4 cbr 500 ------- 1 1.0 6.0 29 42 r 0.366 3 4 cbr 1000 ------- 1 2.0 7.0 9 32 + 0.366 4 7 cbr 1000 ------- 1 2.0 7.0 9 32 - 0.366 4 7 cbr 1000 ------- 1 2.0 7.0 9 32 r 0.368 2 3 cbr 1000 ------- 1 2.0 7.0 12 41 + 0.368 3 4 cbr 1000 ------- 1 2.0 7.0 12 41 - 0.368 3 4 cbr 1000 ------- 1 2.0 7.0 12 41 r 0.37 3 4 cbr 500 ------- 1 1.0 6.0 24 34 + 0.37 4 6 cbr 500 ------- 1 1.0 6.0 24 34 - 0.37 4 6 cbr 500 ------- 1 1.0 6.0 24 34 + 0.37 1 3 cbr 500 ------- 1 1.0 6.0 32 46 - 0.37 1 3 cbr 500 ------- 1 1.0 6.0 32 46 r 0.374 4 7 cbr 1000 ------- 1 2.0 7.0 8 29 r 0.374 4 6 cbr 500 ------- 1 1.0 6.0 22 31 r 0.374 1 3 cbr 500 ------- 1 1.0 6.0 30 43 + 0.374 3 4 cbr 500 ------- 1 1.0 6.0 30 43 - 0.376 3 4 cbr 500 ------- 1 1.0 6.0 30 43 r 0.378 3 4 cbr 500 ------- 1 1.0 6.0 25 36 + 0.378 4 6 cbr 500 ------- 1 1.0 6.0 25 36 - 0.378 4 6 cbr 500 ------- 1 1.0 6.0 25 36 + 0.38 2 3 cbr 1000 ------- 1 2.0 7.0 14 47 - 0.38 2 3 cbr 1000 ------- 1 2.0 7.0 14 47 + 0.38 1 3 cbr 500 ------- 1 1.0 6.0 33 48 - 0.38 1 3 cbr 500 ------- 1 1.0 6.0 33 48 r 0.382 4 6 cbr 500 ------- 1 1.0 6.0 23 33 r 0.384 1 3 cbr 500 ------- 1 1.0 6.0 31 45 + 0.384 3 4 cbr 500 ------- 1 1.0 6.0 31 45 - 0.384 3 4 cbr 500 ------- 1 1.0 6.0 31 45 r 0.386 3 4 cbr 1000 ------- 1 2.0 7.0 10 35 + 0.386 4 7 cbr 1000 ------- 1 2.0 7.0 10 35 - 0.386 4 7 cbr 1000 ------- 1 2.0 7.0 10 35 r 0.388 2 3 cbr 1000 ------- 1 2.0 7.0 13 44 + 0.388 3 4 cbr 1000 ------- 1 2.0 7.0 13 44 - 0.388 3 4 cbr 1000 ------- 1 2.0 7.0 13 44 r 0.39 3 4 cbr 500 ------- 1 1.0 6.0 26 37 + 0.39 4 6 cbr 500 ------- 1 1.0 6.0 26 37 - 0.39 4 6 cbr 500 ------- 1 1.0 6.0 26 37 + 0.39 1 3 cbr 500 ------- 1 1.0 6.0 34 49 - 0.39 1 3 cbr 500 ------- 1 1.0 6.0 34 49 r 0.394 4 7 cbr 1000 ------- 1 2.0 7.0 9 32 r 0.394 4 6 cbr 500 ------- 1 1.0 6.0 24 34 r 0.394 1 3 cbr 500 ------- 1 1.0 6.0 32 46 + 0.394 3 4 cbr 500 ------- 1 1.0 6.0 32 46 - 0.396 3 4 cbr 500 ------- 1 1.0 6.0 32 46 r 0.398 3 4 cbr 500 ------- 1 1.0 6.0 27 39 + 0.398 4 6 cbr 500 ------- 1 1.0 6.0 27 39 - 0.398 4 6 cbr 500 ------- 1 1.0 6.0 27 39 + 0.4 2 3 cbr 1000 ------- 1 2.0 7.0 15 50 - 0.4 2 3 cbr 1000 ------- 1 2.0 7.0 15 50 + 0.4 1 3 cbr 500 ------- 1 1.0 6.0 35 51 - 0.4 1 3 cbr 500 ------- 1 1.0 6.0 35 51 r 0.402 4 6 cbr 500 ------- 1 1.0 6.0 25 36 r 0.404 1 3 cbr 500 ------- 1 1.0 6.0 33 48 + 0.404 3 4 cbr 500 ------- 1 1.0 6.0 33 48 - 0.404 3 4 cbr 500 ------- 1 1.0 6.0 33 48 r 0.406 3 4 cbr 1000 ------- 1 2.0 7.0 11 38 + 0.406 4 7 cbr 1000 ------- 1 2.0 7.0 11 38 - 0.406 4 7 cbr 1000 ------- 1 2.0 7.0 11 38 r 0.408 2 3 cbr 1000 ------- 1 2.0 7.0 14 47 + 0.408 3 4 cbr 1000 ------- 1 2.0 7.0 14 47 - 0.408 3 4 cbr 1000 ------- 1 2.0 7.0 14 47 r 0.41 3 4 cbr 500 ------- 1 1.0 6.0 28 40 + 0.41 4 6 cbr 500 ------- 1 1.0 6.0 28 40 - 0.41 4 6 cbr 500 ------- 1 1.0 6.0 28 40 + 0.41 1 3 cbr 500 ------- 1 1.0 6.0 36 52 - 0.41 1 3 cbr 500 ------- 1 1.0 6.0 36 52 r 0.414 4 7 cbr 1000 ------- 1 2.0 7.0 10 35 r 0.414 4 6 cbr 500 ------- 1 1.0 6.0 26 37 r 0.414 1 3 cbr 500 ------- 1 1.0 6.0 34 49 + 0.414 3 4 cbr 500 ------- 1 1.0 6.0 34 49 - 0.416 3 4 cbr 500 ------- 1 1.0 6.0 34 49 r 0.418 3 4 cbr 500 ------- 1 1.0 6.0 29 42 + 0.418 4 6 cbr 500 ------- 1 1.0 6.0 29 42 - 0.418 4 6 cbr 500 ------- 1 1.0 6.0 29 42 + 0.42 2 3 cbr 1000 ------- 1 2.0 7.0 16 53 - 0.42 2 3 cbr 1000 ------- 1 2.0 7.0 16 53 + 0.42 1 3 cbr 500 ------- 1 1.0 6.0 37 54 - 0.42 1 3 cbr 500 ------- 1 1.0 6.0 37 54 r 0.422 4 6 cbr 500 ------- 1 1.0 6.0 27 39 r 0.424 1 3 cbr 500 ------- 1 1.0 6.0 35 51 + 0.424 3 4 cbr 500 ------- 1 1.0 6.0 35 51 - 0.424 3 4 cbr 500 ------- 1 1.0 6.0 35 51 r 0.426 3 4 cbr 1000 ------- 1 2.0 7.0 12 41 + 0.426 4 7 cbr 1000 ------- 1 2.0 7.0 12 41 - 0.426 4 7 cbr 1000 ------- 1 2.0 7.0 12 41 r 0.428 2 3 cbr 1000 ------- 1 2.0 7.0 15 50 + 0.428 3 4 cbr 1000 ------- 1 2.0 7.0 15 50 - 0.428 3 4 cbr 1000 ------- 1 2.0 7.0 15 50 r 0.43 3 4 cbr 500 ------- 1 1.0 6.0 30 43 + 0.43 4 6 cbr 500 ------- 1 1.0 6.0 30 43 - 0.43 4 6 cbr 500 ------- 1 1.0 6.0 30 43 + 0.43 1 3 cbr 500 ------- 1 1.0 6.0 38 55 - 0.43 1 3 cbr 500 ------- 1 1.0 6.0 38 55 r 0.434 4 7 cbr 1000 ------- 1 2.0 7.0 11 38 r 0.434 4 6 cbr 500 ------- 1 1.0 6.0 28 40 r 0.434 1 3 cbr 500 ------- 1 1.0 6.0 36 52 + 0.434 3 4 cbr 500 ------- 1 1.0 6.0 36 52 - 0.436 3 4 cbr 500 ------- 1 1.0 6.0 36 52 r 0.438 3 4 cbr 500 ------- 1 1.0 6.0 31 45 + 0.438 4 6 cbr 500 ------- 1 1.0 6.0 31 45 - 0.438 4 6 cbr 500 ------- 1 1.0 6.0 31 45 + 0.44 2 3 cbr 1000 ------- 1 2.0 7.0 17 56 - 0.44 2 3 cbr 1000 ------- 1 2.0 7.0 17 56 + 0.44 1 3 cbr 500 ------- 1 1.0 6.0 39 57 - 0.44 1 3 cbr 500 ------- 1 1.0 6.0 39 57 r 0.442 4 6 cbr 500 ------- 1 1.0 6.0 29 42 r 0.444 1 3 cbr 500 ------- 1 1.0 6.0 37 54 + 0.444 3 4 cbr 500 ------- 1 1.0 6.0 37 54 - 0.444 3 4 cbr 500 ------- 1 1.0 6.0 37 54 r 0.446 3 4 cbr 1000 ------- 1 2.0 7.0 13 44 + 0.446 4 7 cbr 1000 ------- 1 2.0 7.0 13 44 - 0.446 4 7 cbr 1000 ------- 1 2.0 7.0 13 44 r 0.448 2 3 cbr 1000 ------- 1 2.0 7.0 16 53 + 0.448 3 4 cbr 1000 ------- 1 2.0 7.0 16 53 - 0.448 3 4 cbr 1000 ------- 1 2.0 7.0 16 53 r 0.45 3 4 cbr 500 ------- 1 1.0 6.0 32 46 + 0.45 4 6 cbr 500 ------- 1 1.0 6.0 32 46 - 0.45 4 6 cbr 500 ------- 1 1.0 6.0 32 46 + 0.45 1 3 cbr 500 ------- 1 1.0 6.0 40 58 - 0.45 1 3 cbr 500 ------- 1 1.0 6.0 40 58 r 0.454 4 7 cbr 1000 ------- 1 2.0 7.0 12 41 r 0.454 4 6 cbr 500 ------- 1 1.0 6.0 30 43 r 0.454 1 3 cbr 500 ------- 1 1.0 6.0 38 55 + 0.454 3 4 cbr 500 ------- 1 1.0 6.0 38 55 - 0.456 3 4 cbr 500 ------- 1 1.0 6.0 38 55 r 0.458 3 4 cbr 500 ------- 1 1.0 6.0 33 48 + 0.458 4 6 cbr 500 ------- 1 1.0 6.0 33 48 - 0.458 4 6 cbr 500 ------- 1 1.0 6.0 33 48 + 0.46 2 3 cbr 1000 ------- 1 2.0 7.0 18 59 - 0.46 2 3 cbr 1000 ------- 1 2.0 7.0 18 59 + 0.46 1 3 cbr 500 ------- 1 1.0 6.0 41 60 - 0.46 1 3 cbr 500 ------- 1 1.0 6.0 41 60 r 0.462 4 6 cbr 500 ------- 1 1.0 6.0 31 45 r 0.464 1 3 cbr 500 ------- 1 1.0 6.0 39 57 + 0.464 3 4 cbr 500 ------- 1 1.0 6.0 39 57 - 0.464 3 4 cbr 500 ------- 1 1.0 6.0 39 57 r 0.466 3 4 cbr 1000 ------- 1 2.0 7.0 14 47 + 0.466 4 7 cbr 1000 ------- 1 2.0 7.0 14 47 - 0.466 4 7 cbr 1000 ------- 1 2.0 7.0 14 47 r 0.468 2 3 cbr 1000 ------- 1 2.0 7.0 17 56 + 0.468 3 4 cbr 1000 ------- 1 2.0 7.0 17 56 - 0.468 3 4 cbr 1000 ------- 1 2.0 7.0 17 56 r 0.47 3 4 cbr 500 ------- 1 1.0 6.0 34 49 + 0.47 4 6 cbr 500 ------- 1 1.0 6.0 34 49 - 0.47 4 6 cbr 500 ------- 1 1.0 6.0 34 49 + 0.47 1 3 cbr 500 ------- 1 1.0 6.0 42 61 - 0.47 1 3 cbr 500 ------- 1 1.0 6.0 42 61 r 0.474 4 7 cbr 1000 ------- 1 2.0 7.0 13 44 r 0.474 4 6 cbr 500 ------- 1 1.0 6.0 32 46 r 0.474 1 3 cbr 500 ------- 1 1.0 6.0 40 58 + 0.474 3 4 cbr 500 ------- 1 1.0 6.0 40 58 - 0.476 3 4 cbr 500 ------- 1 1.0 6.0 40 58 r 0.478 3 4 cbr 500 ------- 1 1.0 6.0 35 51 + 0.478 4 6 cbr 500 ------- 1 1.0 6.0 35 51 - 0.478 4 6 cbr 500 ------- 1 1.0 6.0 35 51 + 0.48 2 3 cbr 1000 ------- 1 2.0 7.0 19 62 - 0.48 2 3 cbr 1000 ------- 1 2.0 7.0 19 62 + 0.48 1 3 cbr 500 ------- 1 1.0 6.0 43 63 - 0.48 1 3 cbr 500 ------- 1 1.0 6.0 43 63 r 0.482 4 6 cbr 500 ------- 1 1.0 6.0 33 48 r 0.484 1 3 cbr 500 ------- 1 1.0 6.0 41 60 + 0.484 3 4 cbr 500 ------- 1 1.0 6.0 41 60 - 0.484 3 4 cbr 500 ------- 1 1.0 6.0 41 60 r 0.486 3 4 cbr 1000 ------- 1 2.0 7.0 15 50 + 0.486 4 7 cbr 1000 ------- 1 2.0 7.0 15 50 - 0.486 4 7 cbr 1000 ------- 1 2.0 7.0 15 50 r 0.488 2 3 cbr 1000 ------- 1 2.0 7.0 18 59 + 0.488 3 4 cbr 1000 ------- 1 2.0 7.0 18 59 - 0.488 3 4 cbr 1000 ------- 1 2.0 7.0 18 59 r 0.49 3 4 cbr 500 ------- 1 1.0 6.0 36 52 + 0.49 4 6 cbr 500 ------- 1 1.0 6.0 36 52 - 0.49 4 6 cbr 500 ------- 1 1.0 6.0 36 52 + 0.49 1 3 cbr 500 ------- 1 1.0 6.0 44 64 - 0.49 1 3 cbr 500 ------- 1 1.0 6.0 44 64 r 0.494 4 7 cbr 1000 ------- 1 2.0 7.0 14 47 r 0.494 4 6 cbr 500 ------- 1 1.0 6.0 34 49 r 0.494 1 3 cbr 500 ------- 1 1.0 6.0 42 61 + 0.494 3 4 cbr 500 ------- 1 1.0 6.0 42 61 - 0.496 3 4 cbr 500 ------- 1 1.0 6.0 42 61 r 0.498 3 4 cbr 500 ------- 1 1.0 6.0 37 54 + 0.498 4 6 cbr 500 ------- 1 1.0 6.0 37 54 - 0.498 4 6 cbr 500 ------- 1 1.0 6.0 37 54 + 0.5 0 3 tcp 1000 ------- 0 0.0 5.0 0 65 - 0.5 0 3 tcp 1000 ------- 0 0.0 5.0 0 65 + 0.5 0 3 tcp 1000 ------- 0 0.0 5.0 1 66 + 0.5 0 3 tcp 1000 ------- 0 0.0 5.0 2 67 + 0.5 0 3 tcp 1000 ------- 0 0.0 5.0 3 68 + 0.5 0 3 tcp 1000 ------- 0 0.0 5.0 4 69 + 0.5 0 3 tcp 1000 ------- 0 0.0 5.0 5 70 + 0.5 0 3 tcp 1000 ------- 0 0.0 5.0 6 71 + 0.5 0 3 tcp 1000 ------- 0 0.0 5.0 7 72 v 0.5 eval {set sim_annotation {FTP starts}} + 0.5 2 3 cbr 1000 ------- 1 2.0 7.0 20 73 - 0.5 2 3 cbr 1000 ------- 1 2.0 7.0 20 73 + 0.5 1 3 cbr 500 ------- 1 1.0 6.0 45 74 - 0.5 1 3 cbr 500 ------- 1 1.0 6.0 45 74 - 0.5016 0 3 tcp 1000 ------- 0 0.0 5.0 1 66 r 0.502 4 6 cbr 500 ------- 1 1.0 6.0 35 51 - 0.5032 0 3 tcp 1000 ------- 0 0.0 5.0 2 67 r 0.504 1 3 cbr 500 ------- 1 1.0 6.0 43 63 + 0.504 3 4 cbr 500 ------- 1 1.0 6.0 43 63 - 0.504 3 4 cbr 500 ------- 1 1.0 6.0 43 63 - 0.5048 0 3 tcp 1000 ------- 0 0.0 5.0 3 68 r 0.506 3 4 cbr 1000 ------- 1 2.0 7.0 16 53 + 0.506 4 7 cbr 1000 ------- 1 2.0 7.0 16 53 - 0.506 4 7 cbr 1000 ------- 1 2.0 7.0 16 53 - 0.5064 0 3 tcp 1000 ------- 0 0.0 5.0 4 69 r 0.508 2 3 cbr 1000 ------- 1 2.0 7.0 19 62 + 0.508 3 4 cbr 1000 ------- 1 2.0 7.0 19 62 - 0.508 3 4 cbr 1000 ------- 1 2.0 7.0 19 62 - 0.508 0 3 tcp 1000 ------- 0 0.0 5.0 5 70 - 0.5096 0 3 tcp 1000 ------- 0 0.0 5.0 6 71 r 0.51 3 4 cbr 500 ------- 1 1.0 6.0 38 55 + 0.51 4 6 cbr 500 ------- 1 1.0 6.0 38 55 - 0.51 4 6 cbr 500 ------- 1 1.0 6.0 38 55 + 0.51 1 3 cbr 500 ------- 1 1.0 6.0 46 75 - 0.51 1 3 cbr 500 ------- 1 1.0 6.0 46 75 - 0.5112 0 3 tcp 1000 ------- 0 0.0 5.0 7 72 r 0.514 4 7 cbr 1000 ------- 1 2.0 7.0 15 50 r 0.514 4 6 cbr 500 ------- 1 1.0 6.0 36 52 r 0.514 1 3 cbr 500 ------- 1 1.0 6.0 44 64 + 0.514 3 4 cbr 500 ------- 1 1.0 6.0 44 64 - 0.516 3 4 cbr 500 ------- 1 1.0 6.0 44 64 r 0.518 3 4 cbr 500 ------- 1 1.0 6.0 39 57 + 0.518 4 6 cbr 500 ------- 1 1.0 6.0 39 57 - 0.518 4 6 cbr 500 ------- 1 1.0 6.0 39 57 + 0.52 2 3 cbr 1000 ------- 1 2.0 7.0 21 76 - 0.52 2 3 cbr 1000 ------- 1 2.0 7.0 21 76 + 0.52 1 3 cbr 500 ------- 1 1.0 6.0 47 77 - 0.52 1 3 cbr 500 ------- 1 1.0 6.0 47 77 r 0.5216 0 3 tcp 1000 ------- 0 0.0 5.0 0 65 + 0.5216 3 4 tcp 1000 ------- 0 0.0 5.0 0 65 - 0.5216 3 4 tcp 1000 ------- 0 0.0 5.0 0 65 r 0.522 4 6 cbr 500 ------- 1 1.0 6.0 37 54 r 0.5232 0 3 tcp 1000 ------- 0 0.0 5.0 1 66 + 0.5232 3 4 tcp 1000 ------- 0 0.0 5.0 1 66 r 0.524 1 3 cbr 500 ------- 1 1.0 6.0 45 74 + 0.524 3 4 cbr 500 ------- 1 1.0 6.0 45 74 r 0.5248 0 3 tcp 1000 ------- 0 0.0 5.0 2 67 + 0.5248 3 4 tcp 1000 ------- 0 0.0 5.0 2 67 r 0.526 3 4 cbr 1000 ------- 1 2.0 7.0 17 56 + 0.526 4 7 cbr 1000 ------- 1 2.0 7.0 17 56 - 0.526 4 7 cbr 1000 ------- 1 2.0 7.0 17 56 r 0.5264 0 3 tcp 1000 ------- 0 0.0 5.0 3 68 + 0.5264 3 4 tcp 1000 ------- 0 0.0 5.0 3 68 r 0.528 2 3 cbr 1000 ------- 1 2.0 7.0 20 73 + 0.528 3 4 cbr 1000 ------- 1 2.0 7.0 20 73 r 0.528 0 3 tcp 1000 ------- 0 0.0 5.0 4 69 + 0.528 3 4 tcp 1000 ------- 0 0.0 5.0 4 69 - 0.5296 3 4 tcp 1000 ------- 0 0.0 5.0 1 66 r 0.5296 0 3 tcp 1000 ------- 0 0.0 5.0 5 70 + 0.5296 3 4 tcp 1000 ------- 0 0.0 5.0 5 70 r 0.53 3 4 cbr 500 ------- 1 1.0 6.0 40 58 + 0.53 4 6 cbr 500 ------- 1 1.0 6.0 40 58 - 0.53 4 6 cbr 500 ------- 1 1.0 6.0 40 58 + 0.53 1 3 cbr 500 ------- 1 1.0 6.0 48 78 - 0.53 1 3 cbr 500 ------- 1 1.0 6.0 48 78 r 0.5312 0 3 tcp 1000 ------- 0 0.0 5.0 6 71 + 0.5312 3 4 tcp 1000 ------- 0 0.0 5.0 6 71 r 0.5328 0 3 tcp 1000 ------- 0 0.0 5.0 7 72 + 0.5328 3 4 tcp 1000 ------- 0 0.0 5.0 7 72 r 0.534 4 7 cbr 1000 ------- 1 2.0 7.0 16 53 r 0.534 4 6 cbr 500 ------- 1 1.0 6.0 38 55 r 0.534 1 3 cbr 500 ------- 1 1.0 6.0 46 75 + 0.534 3 4 cbr 500 ------- 1 1.0 6.0 46 75 - 0.5376 3 4 cbr 500 ------- 1 1.0 6.0 45 74 r 0.538 3 4 cbr 500 ------- 1 1.0 6.0 41 60 + 0.538 4 6 cbr 500 ------- 1 1.0 6.0 41 60 - 0.538 4 6 cbr 500 ------- 1 1.0 6.0 41 60 + 0.54 2 3 cbr 1000 ------- 1 2.0 7.0 22 79 - 0.54 2 3 cbr 1000 ------- 1 2.0 7.0 22 79 + 0.54 1 3 cbr 500 ------- 1 1.0 6.0 49 80 - 0.54 1 3 cbr 500 ------- 1 1.0 6.0 49 80 - 0.5416 3 4 tcp 1000 ------- 0 0.0 5.0 2 67 r 0.542 4 6 cbr 500 ------- 1 1.0 6.0 39 57 r 0.544 1 3 cbr 500 ------- 1 1.0 6.0 47 77 + 0.544 3 4 cbr 500 ------- 1 1.0 6.0 47 77 r 0.546 3 4 cbr 1000 ------- 1 2.0 7.0 18 59 + 0.546 4 7 cbr 1000 ------- 1 2.0 7.0 18 59 - 0.546 4 7 cbr 1000 ------- 1 2.0 7.0 18 59 r 0.548 2 3 cbr 1000 ------- 1 2.0 7.0 21 76 + 0.548 3 4 cbr 1000 ------- 1 2.0 7.0 21 76 - 0.5496 3 4 tcp 1000 ------- 0 0.0 5.0 3 68 r 0.55 3 4 cbr 500 ------- 1 1.0 6.0 42 61 + 0.55 4 6 cbr 500 ------- 1 1.0 6.0 42 61 - 0.55 4 6 cbr 500 ------- 1 1.0 6.0 42 61 + 0.55 1 3 cbr 500 ------- 1 1.0 6.0 50 81 - 0.55 1 3 cbr 500 ------- 1 1.0 6.0 50 81 r 0.554 4 7 cbr 1000 ------- 1 2.0 7.0 17 56 r 0.554 4 6 cbr 500 ------- 1 1.0 6.0 40 58 r 0.554 1 3 cbr 500 ------- 1 1.0 6.0 48 78 + 0.554 3 4 cbr 500 ------- 1 1.0 6.0 48 78 - 0.5576 3 4 cbr 1000 ------- 1 2.0 7.0 20 73 r 0.558 3 4 cbr 500 ------- 1 1.0 6.0 43 63 + 0.558 4 6 cbr 500 ------- 1 1.0 6.0 43 63 - 0.558 4 6 cbr 500 ------- 1 1.0 6.0 43 63 + 0.56 2 3 cbr 1000 ------- 1 2.0 7.0 23 82 - 0.56 2 3 cbr 1000 ------- 1 2.0 7.0 23 82 + 0.56 1 3 cbr 500 ------- 1 1.0 6.0 51 83 - 0.56 1 3 cbr 500 ------- 1 1.0 6.0 51 83 r 0.562 4 6 cbr 500 ------- 1 1.0 6.0 41 60 r 0.564 1 3 cbr 500 ------- 1 1.0 6.0 49 80 + 0.564 3 4 cbr 500 ------- 1 1.0 6.0 49 80 - 0.5656 3 4 tcp 1000 ------- 0 0.0 5.0 4 69 r 0.566 3 4 cbr 1000 ------- 1 2.0 7.0 19 62 + 0.566 4 7 cbr 1000 ------- 1 2.0 7.0 19 62 - 0.566 4 7 cbr 1000 ------- 1 2.0 7.0 19 62 r 0.568 2 3 cbr 1000 ------- 1 2.0 7.0 22 79 + 0.568 3 4 cbr 1000 ------- 1 2.0 7.0 22 79 r 0.57 3 4 cbr 500 ------- 1 1.0 6.0 44 64 + 0.57 4 6 cbr 500 ------- 1 1.0 6.0 44 64 - 0.57 4 6 cbr 500 ------- 1 1.0 6.0 44 64 + 0.57 1 3 cbr 500 ------- 1 1.0 6.0 52 84 - 0.57 1 3 cbr 500 ------- 1 1.0 6.0 52 84 - 0.5736 3 4 tcp 1000 ------- 0 0.0 5.0 5 70 r 0.574 4 7 cbr 1000 ------- 1 2.0 7.0 18 59 r 0.574 4 6 cbr 500 ------- 1 1.0 6.0 42 61 r 0.574 1 3 cbr 500 ------- 1 1.0 6.0 50 81 + 0.574 3 4 cbr 500 ------- 1 1.0 6.0 50 81 r 0.5796 3 4 tcp 1000 ------- 0 0.0 5.0 0 65 + 0.5796 4 5 tcp 1000 ------- 0 0.0 5.0 0 65 - 0.5796 4 5 tcp 1000 ------- 0 0.0 5.0 0 65 + 0.58 2 3 cbr 1000 ------- 1 2.0 7.0 24 85 - 0.58 2 3 cbr 1000 ------- 1 2.0 7.0 24 85 + 0.58 1 3 cbr 500 ------- 1 1.0 6.0 53 86 - 0.58 1 3 cbr 500 ------- 1 1.0 6.0 53 86 - 0.5816 3 4 tcp 1000 ------- 0 0.0 5.0 6 71 r 0.582 4 6 cbr 500 ------- 1 1.0 6.0 43 63 r 0.584 1 3 cbr 500 ------- 1 1.0 6.0 51 83 + 0.584 3 4 cbr 500 ------- 1 1.0 6.0 51 83 r 0.5876 3 4 tcp 1000 ------- 0 0.0 5.0 1 66 + 0.5876 4 5 tcp 1000 ------- 0 0.0 5.0 1 66 - 0.5876 4 5 tcp 1000 ------- 0 0.0 5.0 1 66 r 0.588 2 3 cbr 1000 ------- 1 2.0 7.0 23 82 + 0.588 3 4 cbr 1000 ------- 1 2.0 7.0 23 82 - 0.5896 3 4 tcp 1000 ------- 0 0.0 5.0 7 72 + 0.59 1 3 cbr 500 ------- 1 1.0 6.0 54 87 - 0.59 1 3 cbr 500 ------- 1 1.0 6.0 54 87 r 0.5916 3 4 cbr 500 ------- 1 1.0 6.0 45 74 + 0.5916 4 6 cbr 500 ------- 1 1.0 6.0 45 74 - 0.5916 4 6 cbr 500 ------- 1 1.0 6.0 45 74 r 0.594 4 7 cbr 1000 ------- 1 2.0 7.0 19 62 r 0.594 4 6 cbr 500 ------- 1 1.0 6.0 44 64 r 0.594 1 3 cbr 500 ------- 1 1.0 6.0 52 84 + 0.594 3 4 cbr 500 ------- 1 1.0 6.0 52 84 - 0.5976 3 4 cbr 500 ------- 1 1.0 6.0 46 75 r 0.5996 3 4 tcp 1000 ------- 0 0.0 5.0 2 67 + 0.5996 4 5 tcp 1000 ------- 0 0.0 5.0 2 67 - 0.5996 4 5 tcp 1000 ------- 0 0.0 5.0 2 67 + 0.6 2 3 cbr 1000 ------- 1 2.0 7.0 25 88 - 0.6 2 3 cbr 1000 ------- 1 2.0 7.0 25 88 + 0.6 1 3 cbr 500 ------- 1 1.0 6.0 55 89 - 0.6 1 3 cbr 500 ------- 1 1.0 6.0 55 89 r 0.6012 4 5 tcp 1000 ------- 0 0.0 5.0 0 65 + 0.6012 5 4 ack 40 ------- 0 5.0 0.0 0 90 - 0.6012 5 4 ack 40 ------- 0 5.0 0.0 0 90 - 0.6016 3 4 cbr 500 ------- 1 1.0 6.0 47 77 r 0.604 1 3 cbr 500 ------- 1 1.0 6.0 53 86 + 0.604 3 4 cbr 500 ------- 1 1.0 6.0 53 86 - 0.6056 3 4 cbr 1000 ------- 1 2.0 7.0 21 76 r 0.6076 3 4 tcp 1000 ------- 0 0.0 5.0 3 68 + 0.6076 4 5 tcp 1000 ------- 0 0.0 5.0 3 68 - 0.6076 4 5 tcp 1000 ------- 0 0.0 5.0 3 68 r 0.608 2 3 cbr 1000 ------- 1 2.0 7.0 24 85 + 0.608 3 4 cbr 1000 ------- 1 2.0 7.0 24 85 r 0.6092 4 5 tcp 1000 ------- 0 0.0 5.0 1 66 + 0.6092 5 4 ack 40 ------- 0 5.0 0.0 1 91 - 0.6092 5 4 ack 40 ------- 0 5.0 0.0 1 91 + 0.61 1 3 cbr 500 ------- 1 1.0 6.0 56 92 - 0.61 1 3 cbr 500 ------- 1 1.0 6.0 56 92 - 0.6136 3 4 cbr 500 ------- 1 1.0 6.0 48 78 r 0.614 1 3 cbr 500 ------- 1 1.0 6.0 54 87 + 0.614 3 4 cbr 500 ------- 1 1.0 6.0 54 87 r 0.6156 3 4 cbr 1000 ------- 1 2.0 7.0 20 73 + 0.6156 4 7 cbr 1000 ------- 1 2.0 7.0 20 73 - 0.6156 4 7 cbr 1000 ------- 1 2.0 7.0 20 73 r 0.6156 4 6 cbr 500 ------- 1 1.0 6.0 45 74 - 0.6176 3 4 cbr 500 ------- 1 1.0 6.0 49 80 + 0.62 2 3 cbr 1000 ------- 1 2.0 7.0 26 93 - 0.62 2 3 cbr 1000 ------- 1 2.0 7.0 26 93 + 0.62 1 3 cbr 500 ------- 1 1.0 6.0 57 94 - 0.62 1 3 cbr 500 ------- 1 1.0 6.0 57 94 r 0.6212 4 5 tcp 1000 ------- 0 0.0 5.0 2 67 + 0.6212 5 4 ack 40 ------- 0 5.0 0.0 2 95 - 0.6212 5 4 ack 40 ------- 0 5.0 0.0 2 95 r 0.621264 5 4 ack 40 ------- 0 5.0 0.0 0 90 + 0.621264 4 3 ack 40 ------- 0 5.0 0.0 0 90 - 0.621264 4 3 ack 40 ------- 0 5.0 0.0 0 90 - 0.6216 3 4 cbr 1000 ------- 1 2.0 7.0 22 79 r 0.6236 3 4 tcp 1000 ------- 0 0.0 5.0 4 69 + 0.6236 4 5 tcp 1000 ------- 0 0.0 5.0 4 69 - 0.6236 4 5 tcp 1000 ------- 0 0.0 5.0 4 69 r 0.624 1 3 cbr 500 ------- 1 1.0 6.0 55 89 + 0.624 3 4 cbr 500 ------- 1 1.0 6.0 55 89 r 0.628 2 3 cbr 1000 ------- 1 2.0 7.0 25 88 + 0.628 3 4 cbr 1000 ------- 1 2.0 7.0 25 88 r 0.6292 4 5 tcp 1000 ------- 0 0.0 5.0 3 68 + 0.6292 5 4 ack 40 ------- 0 5.0 0.0 3 96 - 0.6292 5 4 ack 40 ------- 0 5.0 0.0 3 96 r 0.629264 5 4 ack 40 ------- 0 5.0 0.0 1 91 + 0.629264 4 3 ack 40 ------- 0 5.0 0.0 1 91 - 0.629264 4 3 ack 40 ------- 0 5.0 0.0 1 91 - 0.6296 3 4 cbr 500 ------- 1 1.0 6.0 50 81 + 0.63 1 3 cbr 500 ------- 1 1.0 6.0 58 97 - 0.63 1 3 cbr 500 ------- 1 1.0 6.0 58 97 r 0.6316 3 4 tcp 1000 ------- 0 0.0 5.0 5 70 + 0.6316 4 5 tcp 1000 ------- 0 0.0 5.0 5 70 - 0.6316 4 5 tcp 1000 ------- 0 0.0 5.0 5 70 - 0.6336 3 4 cbr 500 ------- 1 1.0 6.0 51 83 r 0.634 1 3 cbr 500 ------- 1 1.0 6.0 56 92 + 0.634 3 4 cbr 500 ------- 1 1.0 6.0 56 92 - 0.6376 3 4 cbr 1000 ------- 1 2.0 7.0 23 82 r 0.6396 3 4 tcp 1000 ------- 0 0.0 5.0 6 71 + 0.6396 4 5 tcp 1000 ------- 0 0.0 5.0 6 71 - 0.6396 4 5 tcp 1000 ------- 0 0.0 5.0 6 71 + 0.64 2 3 cbr 1000 ------- 1 2.0 7.0 27 98 - 0.64 2 3 cbr 1000 ------- 1 2.0 7.0 27 98 + 0.64 1 3 cbr 500 ------- 1 1.0 6.0 59 99 - 0.64 1 3 cbr 500 ------- 1 1.0 6.0 59 99 r 0.641264 5 4 ack 40 ------- 0 5.0 0.0 2 95 + 0.641264 4 3 ack 40 ------- 0 5.0 0.0 2 95 - 0.641264 4 3 ack 40 ------- 0 5.0 0.0 2 95 r 0.6436 4 7 cbr 1000 ------- 1 2.0 7.0 20 73 r 0.644 1 3 cbr 500 ------- 1 1.0 6.0 57 94 + 0.644 3 4 cbr 500 ------- 1 1.0 6.0 57 94 r 0.6452 4 5 tcp 1000 ------- 0 0.0 5.0 4 69 + 0.6452 5 4 ack 40 ------- 0 5.0 0.0 4 100 - 0.6452 5 4 ack 40 ------- 0 5.0 0.0 4 100 - 0.6456 3 4 cbr 500 ------- 1 1.0 6.0 52 84 r 0.6476 3 4 tcp 1000 ------- 0 0.0 5.0 7 72 + 0.6476 4 5 tcp 1000 ------- 0 0.0 5.0 7 72 - 0.6476 4 5 tcp 1000 ------- 0 0.0 5.0 7 72 r 0.648 2 3 cbr 1000 ------- 1 2.0 7.0 26 93 + 0.648 3 4 cbr 1000 ------- 1 2.0 7.0 26 93 r 0.649264 5 4 ack 40 ------- 0 5.0 0.0 3 96 + 0.649264 4 3 ack 40 ------- 0 5.0 0.0 3 96 - 0.649264 4 3 ack 40 ------- 0 5.0 0.0 3 96 - 0.6496 3 4 cbr 500 ------- 1 1.0 6.0 53 86 + 0.65 1 3 cbr 500 ------- 1 1.0 6.0 60 101 - 0.65 1 3 cbr 500 ------- 1 1.0 6.0 60 101 r 0.6516 3 4 cbr 500 ------- 1 1.0 6.0 46 75 + 0.6516 4 6 cbr 500 ------- 1 1.0 6.0 46 75 - 0.6516 4 6 cbr 500 ------- 1 1.0 6.0 46 75 r 0.6532 4 5 tcp 1000 ------- 0 0.0 5.0 5 70 + 0.6532 5 4 ack 40 ------- 0 5.0 0.0 5 102 - 0.6532 5 4 ack 40 ------- 0 5.0 0.0 5 102 - 0.6536 3 4 cbr 1000 ------- 1 2.0 7.0 24 85 r 0.654 1 3 cbr 500 ------- 1 1.0 6.0 58 97 + 0.654 3 4 cbr 500 ------- 1 1.0 6.0 58 97 r 0.6556 3 4 cbr 500 ------- 1 1.0 6.0 47 77 + 0.6556 4 6 cbr 500 ------- 1 1.0 6.0 47 77 - 0.6556 4 6 cbr 500 ------- 1 1.0 6.0 47 77 + 0.66 2 3 cbr 1000 ------- 1 2.0 7.0 28 103 - 0.66 2 3 cbr 1000 ------- 1 2.0 7.0 28 103 + 0.66 1 3 cbr 500 ------- 1 1.0 6.0 61 104 - 0.66 1 3 cbr 500 ------- 1 1.0 6.0 61 104 r 0.6612 4 5 tcp 1000 ------- 0 0.0 5.0 6 71 + 0.6612 5 4 ack 40 ------- 0 5.0 0.0 6 105 - 0.6612 5 4 ack 40 ------- 0 5.0 0.0 6 105 - 0.6616 3 4 cbr 500 ------- 1 1.0 6.0 54 87 r 0.6636 3 4 cbr 1000 ------- 1 2.0 7.0 21 76 + 0.6636 4 7 cbr 1000 ------- 1 2.0 7.0 21 76 - 0.6636 4 7 cbr 1000 ------- 1 2.0 7.0 21 76 r 0.664 1 3 cbr 500 ------- 1 1.0 6.0 59 99 + 0.664 3 4 cbr 500 ------- 1 1.0 6.0 59 99 r 0.665264 5 4 ack 40 ------- 0 5.0 0.0 4 100 + 0.665264 4 3 ack 40 ------- 0 5.0 0.0 4 100 - 0.665264 4 3 ack 40 ------- 0 5.0 0.0 4 100 - 0.6656 3 4 cbr 500 ------- 1 1.0 6.0 55 89 r 0.6676 3 4 cbr 500 ------- 1 1.0 6.0 48 78 + 0.6676 4 6 cbr 500 ------- 1 1.0 6.0 48 78 - 0.6676 4 6 cbr 500 ------- 1 1.0 6.0 48 78 r 0.668 2 3 cbr 1000 ------- 1 2.0 7.0 27 98 + 0.668 3 4 cbr 1000 ------- 1 2.0 7.0 27 98 r 0.6692 4 5 tcp 1000 ------- 0 0.0 5.0 7 72 + 0.6692 5 4 ack 40 ------- 0 5.0 0.0 7 106 - 0.6692 5 4 ack 40 ------- 0 5.0 0.0 7 106 - 0.6696 3 4 cbr 1000 ------- 1 2.0 7.0 25 88 + 0.67 1 3 cbr 500 ------- 1 1.0 6.0 62 107 - 0.67 1 3 cbr 500 ------- 1 1.0 6.0 62 107 r 0.671584 4 3 ack 40 ------- 0 5.0 0.0 0 90 + 0.671584 3 0 ack 40 ------- 0 5.0 0.0 0 90 - 0.671584 3 0 ack 40 ------- 0 5.0 0.0 0 90 r 0.6716 3 4 cbr 500 ------- 1 1.0 6.0 49 80 + 0.6716 4 6 cbr 500 ------- 1 1.0 6.0 49 80 - 0.6716 4 6 cbr 500 ------- 1 1.0 6.0 49 80 r 0.673264 5 4 ack 40 ------- 0 5.0 0.0 5 102 + 0.673264 4 3 ack 40 ------- 0 5.0 0.0 5 102 - 0.673264 4 3 ack 40 ------- 0 5.0 0.0 5 102 r 0.674 1 3 cbr 500 ------- 1 1.0 6.0 60 101 + 0.674 3 4 cbr 500 ------- 1 1.0 6.0 60 101 r 0.6756 4 6 cbr 500 ------- 1 1.0 6.0 46 75 - 0.6776 3 4 cbr 500 ------- 1 1.0 6.0 56 92 r 0.679584 4 3 ack 40 ------- 0 5.0 0.0 1 91 + 0.679584 3 0 ack 40 ------- 0 5.0 0.0 1 91 - 0.679584 3 0 ack 40 ------- 0 5.0 0.0 1 91 r 0.6796 3 4 cbr 1000 ------- 1 2.0 7.0 22 79 + 0.6796 4 7 cbr 1000 ------- 1 2.0 7.0 22 79 - 0.6796 4 7 cbr 1000 ------- 1 2.0 7.0 22 79 r 0.6796 4 6 cbr 500 ------- 1 1.0 6.0 47 77 + 0.68 2 3 cbr 1000 ------- 1 2.0 7.0 29 108 - 0.68 2 3 cbr 1000 ------- 1 2.0 7.0 29 108 + 0.68 1 3 cbr 500 ------- 1 1.0 6.0 63 109 - 0.68 1 3 cbr 500 ------- 1 1.0 6.0 63 109 r 0.681264 5 4 ack 40 ------- 0 5.0 0.0 6 105 + 0.681264 4 3 ack 40 ------- 0 5.0 0.0 6 105 - 0.681264 4 3 ack 40 ------- 0 5.0 0.0 6 105 - 0.6816 3 4 cbr 500 ------- 1 1.0 6.0 57 94 r 0.6836 3 4 cbr 500 ------- 1 1.0 6.0 50 81 + 0.6836 4 6 cbr 500 ------- 1 1.0 6.0 50 81 - 0.6836 4 6 cbr 500 ------- 1 1.0 6.0 50 81 r 0.684 1 3 cbr 500 ------- 1 1.0 6.0 61 104 + 0.684 3 4 cbr 500 ------- 1 1.0 6.0 61 104 - 0.6856 3 4 cbr 1000 ------- 1 2.0 7.0 26 93 r 0.6876 3 4 cbr 500 ------- 1 1.0 6.0 51 83 + 0.6876 4 6 cbr 500 ------- 1 1.0 6.0 51 83 - 0.6876 4 6 cbr 500 ------- 1 1.0 6.0 51 83 r 0.688 2 3 cbr 1000 ------- 1 2.0 7.0 28 103 + 0.688 3 4 cbr 1000 ------- 1 2.0 7.0 28 103 r 0.689264 5 4 ack 40 ------- 0 5.0 0.0 7 106 + 0.689264 4 3 ack 40 ------- 0 5.0 0.0 7 106 - 0.689264 4 3 ack 40 ------- 0 5.0 0.0 7 106 + 0.69 1 3 cbr 500 ------- 1 1.0 6.0 64 110 - 0.69 1 3 cbr 500 ------- 1 1.0 6.0 64 110 r 0.691584 4 3 ack 40 ------- 0 5.0 0.0 2 95 + 0.691584 3 0 ack 40 ------- 0 5.0 0.0 2 95 - 0.691584 3 0 ack 40 ------- 0 5.0 0.0 2 95 r 0.6916 4 7 cbr 1000 ------- 1 2.0 7.0 21 76 r 0.6916 4 6 cbr 500 ------- 1 1.0 6.0 48 78 r 0.691648 3 0 ack 40 ------- 0 5.0 0.0 0 90 + 0.691648 0 3 tcp 1000 ------- 0 0.0 5.0 8 111 - 0.691648 0 3 tcp 1000 ------- 0 0.0 5.0 8 111 - 0.6936 3 4 cbr 500 ------- 1 1.0 6.0 58 97 r 0.694 1 3 cbr 500 ------- 1 1.0 6.0 62 107 + 0.694 3 4 cbr 500 ------- 1 1.0 6.0 62 107 r 0.6956 3 4 cbr 1000 ------- 1 2.0 7.0 23 82 + 0.6956 4 7 cbr 1000 ------- 1 2.0 7.0 23 82 - 0.6956 4 7 cbr 1000 ------- 1 2.0 7.0 23 82 r 0.6956 4 6 cbr 500 ------- 1 1.0 6.0 49 80 - 0.6976 3 4 cbr 500 ------- 1 1.0 6.0 59 99 r 0.699584 4 3 ack 40 ------- 0 5.0 0.0 3 96 + 0.699584 3 0 ack 40 ------- 0 5.0 0.0 3 96 - 0.699584 3 0 ack 40 ------- 0 5.0 0.0 3 96 r 0.6996 3 4 cbr 500 ------- 1 1.0 6.0 52 84 + 0.6996 4 6 cbr 500 ------- 1 1.0 6.0 52 84 - 0.6996 4 6 cbr 500 ------- 1 1.0 6.0 52 84 r 0.699648 3 0 ack 40 ------- 0 5.0 0.0 1 91 + 0.699648 0 3 tcp 1000 ------- 0 0.0 5.0 9 112 - 0.699648 0 3 tcp 1000 ------- 0 0.0 5.0 9 112 + 0.7 2 3 cbr 1000 ------- 1 2.0 7.0 30 113 - 0.7 2 3 cbr 1000 ------- 1 2.0 7.0 30 113 + 0.7 1 3 cbr 500 ------- 1 1.0 6.0 65 114 - 0.7 1 3 cbr 500 ------- 1 1.0 6.0 65 114 - 0.7016 3 4 cbr 1000 ------- 1 2.0 7.0 27 98 r 0.7036 3 4 cbr 500 ------- 1 1.0 6.0 53 86 + 0.7036 4 6 cbr 500 ------- 1 1.0 6.0 53 86 - 0.7036 4 6 cbr 500 ------- 1 1.0 6.0 53 86 r 0.704 1 3 cbr 500 ------- 1 1.0 6.0 63 109 + 0.704 3 4 cbr 500 ------- 1 1.0 6.0 63 109 r 0.7076 4 7 cbr 1000 ------- 1 2.0 7.0 22 79 r 0.7076 4 6 cbr 500 ------- 1 1.0 6.0 50 81 r 0.708 2 3 cbr 1000 ------- 1 2.0 7.0 29 108 + 0.708 3 4 cbr 1000 ------- 1 2.0 7.0 29 108 - 0.7096 3 4 cbr 500 ------- 1 1.0 6.0 60 101 + 0.71 1 3 cbr 500 ------- 1 1.0 6.0 66 115 - 0.71 1 3 cbr 500 ------- 1 1.0 6.0 66 115 r 0.7116 3 4 cbr 1000 ------- 1 2.0 7.0 24 85 + 0.7116 4 7 cbr 1000 ------- 1 2.0 7.0 24 85 - 0.7116 4 7 cbr 1000 ------- 1 2.0 7.0 24 85 r 0.7116 4 6 cbr 500 ------- 1 1.0 6.0 51 83 r 0.711648 3 0 ack 40 ------- 0 5.0 0.0 2 95 + 0.711648 0 3 tcp 1000 ------- 0 0.0 5.0 10 116 - 0.711648 0 3 tcp 1000 ------- 0 0.0 5.0 10 116 r 0.713248 0 3 tcp 1000 ------- 0 0.0 5.0 8 111 + 0.713248 3 4 tcp 1000 ------- 0 0.0 5.0 8 111 - 0.7136 3 4 cbr 500 ------- 1 1.0 6.0 61 104 r 0.714 1 3 cbr 500 ------- 1 1.0 6.0 64 110 + 0.714 3 4 cbr 500 ------- 1 1.0 6.0 64 110 r 0.715584 4 3 ack 40 ------- 0 5.0 0.0 4 100 + 0.715584 3 0 ack 40 ------- 0 5.0 0.0 4 100 - 0.715584 3 0 ack 40 ------- 0 5.0 0.0 4 100 r 0.7156 3 4 cbr 500 ------- 1 1.0 6.0 54 87 + 0.7156 4 6 cbr 500 ------- 1 1.0 6.0 54 87 - 0.7156 4 6 cbr 500 ------- 1 1.0 6.0 54 87 - 0.7176 3 4 cbr 1000 ------- 1 2.0 7.0 28 103 r 0.7196 3 4 cbr 500 ------- 1 1.0 6.0 55 89 + 0.7196 4 6 cbr 500 ------- 1 1.0 6.0 55 89 - 0.7196 4 6 cbr 500 ------- 1 1.0 6.0 55 89 r 0.719648 3 0 ack 40 ------- 0 5.0 0.0 3 96 + 0.719648 0 3 tcp 1000 ------- 0 0.0 5.0 11 117 - 0.719648 0 3 tcp 1000 ------- 0 0.0 5.0 11 117 + 0.72 2 3 cbr 1000 ------- 1 2.0 7.0 31 118 - 0.72 2 3 cbr 1000 ------- 1 2.0 7.0 31 118 + 0.72 1 3 cbr 500 ------- 1 1.0 6.0 67 119 - 0.72 1 3 cbr 500 ------- 1 1.0 6.0 67 119 r 0.721248 0 3 tcp 1000 ------- 0 0.0 5.0 9 112 + 0.721248 3 4 tcp 1000 ------- 0 0.0 5.0 9 112 r 0.723584 4 3 ack 40 ------- 0 5.0 0.0 5 102 + 0.723584 3 0 ack 40 ------- 0 5.0 0.0 5 102 - 0.723584 3 0 ack 40 ------- 0 5.0 0.0 5 102 r 0.7236 4 7 cbr 1000 ------- 1 2.0 7.0 23 82 r 0.7236 4 6 cbr 500 ------- 1 1.0 6.0 52 84 r 0.724 1 3 cbr 500 ------- 1 1.0 6.0 65 114 + 0.724 3 4 cbr 500 ------- 1 1.0 6.0 65 114 - 0.7256 3 4 cbr 500 ------- 1 1.0 6.0 62 107 r 0.7276 3 4 cbr 1000 ------- 1 2.0 7.0 25 88 + 0.7276 4 7 cbr 1000 ------- 1 2.0 7.0 25 88 - 0.7276 4 7 cbr 1000 ------- 1 2.0 7.0 25 88 r 0.7276 4 6 cbr 500 ------- 1 1.0 6.0 53 86 r 0.728 2 3 cbr 1000 ------- 1 2.0 7.0 30 113 + 0.728 3 4 cbr 1000 ------- 1 2.0 7.0 30 113 - 0.7296 3 4 cbr 500 ------- 1 1.0 6.0 63 109 + 0.73 1 3 cbr 500 ------- 1 1.0 6.0 68 120 - 0.73 1 3 cbr 500 ------- 1 1.0 6.0 68 120 r 0.731584 4 3 ack 40 ------- 0 5.0 0.0 6 105 + 0.731584 3 0 ack 40 ------- 0 5.0 0.0 6 105 - 0.731584 3 0 ack 40 ------- 0 5.0 0.0 6 105 r 0.7316 3 4 cbr 500 ------- 1 1.0 6.0 56 92 + 0.7316 4 6 cbr 500 ------- 1 1.0 6.0 56 92 - 0.7316 4 6 cbr 500 ------- 1 1.0 6.0 56 92 r 0.733248 0 3 tcp 1000 ------- 0 0.0 5.0 10 116 + 0.733248 3 4 tcp 1000 ------- 0 0.0 5.0 10 116 - 0.7336 3 4 cbr 1000 ------- 1 2.0 7.0 29 108 r 0.734 1 3 cbr 500 ------- 1 1.0 6.0 66 115 + 0.734 3 4 cbr 500 ------- 1 1.0 6.0 66 115 r 0.7356 3 4 cbr 500 ------- 1 1.0 6.0 57 94 + 0.7356 4 6 cbr 500 ------- 1 1.0 6.0 57 94 - 0.7356 4 6 cbr 500 ------- 1 1.0 6.0 57 94 r 0.735648 3 0 ack 40 ------- 0 5.0 0.0 4 100 + 0.735648 0 3 tcp 1000 ------- 0 0.0 5.0 12 121 - 0.735648 0 3 tcp 1000 ------- 0 0.0 5.0 12 121 r 0.739584 4 3 ack 40 ------- 0 5.0 0.0 7 106 + 0.739584 3 0 ack 40 ------- 0 5.0 0.0 7 106 - 0.739584 3 0 ack 40 ------- 0 5.0 0.0 7 106 r 0.7396 4 7 cbr 1000 ------- 1 2.0 7.0 24 85 r 0.7396 4 6 cbr 500 ------- 1 1.0 6.0 54 87 + 0.74 2 3 cbr 1000 ------- 1 2.0 7.0 32 122 - 0.74 2 3 cbr 1000 ------- 1 2.0 7.0 32 122 + 0.74 1 3 cbr 500 ------- 1 1.0 6.0 69 123 - 0.74 1 3 cbr 500 ------- 1 1.0 6.0 69 123 r 0.741248 0 3 tcp 1000 ------- 0 0.0 5.0 11 117 + 0.741248 3 4 tcp 1000 ------- 0 0.0 5.0 11 117 - 0.7416 3 4 tcp 1000 ------- 0 0.0 5.0 8 111 r 0.7436 3 4 cbr 1000 ------- 1 2.0 7.0 26 93 + 0.7436 4 7 cbr 1000 ------- 1 2.0 7.0 26 93 - 0.7436 4 7 cbr 1000 ------- 1 2.0 7.0 26 93 r 0.7436 4 6 cbr 500 ------- 1 1.0 6.0 55 89 r 0.743648 3 0 ack 40 ------- 0 5.0 0.0 5 102 + 0.743648 0 3 tcp 1000 ------- 0 0.0 5.0 13 124 - 0.743648 0 3 tcp 1000 ------- 0 0.0 5.0 13 124 r 0.744 1 3 cbr 500 ------- 1 1.0 6.0 67 119 + 0.744 3 4 cbr 500 ------- 1 1.0 6.0 67 119 r 0.7476 3 4 cbr 500 ------- 1 1.0 6.0 58 97 + 0.7476 4 6 cbr 500 ------- 1 1.0 6.0 58 97 - 0.7476 4 6 cbr 500 ------- 1 1.0 6.0 58 97 r 0.748 2 3 cbr 1000 ------- 1 2.0 7.0 31 118 + 0.748 3 4 cbr 1000 ------- 1 2.0 7.0 31 118 - 0.7496 3 4 cbr 500 ------- 1 1.0 6.0 64 110 + 0.75 1 3 cbr 500 ------- 1 1.0 6.0 70 125 - 0.75 1 3 cbr 500 ------- 1 1.0 6.0 70 125 r 0.7516 3 4 cbr 500 ------- 1 1.0 6.0 59 99 + 0.7516 4 6 cbr 500 ------- 1 1.0 6.0 59 99 - 0.7516 4 6 cbr 500 ------- 1 1.0 6.0 59 99 r 0.751648 3 0 ack 40 ------- 0 5.0 0.0 6 105 + 0.751648 0 3 tcp 1000 ------- 0 0.0 5.0 14 126 - 0.751648 0 3 tcp 1000 ------- 0 0.0 5.0 14 126 - 0.7536 3 4 tcp 1000 ------- 0 0.0 5.0 9 112 r 0.754 1 3 cbr 500 ------- 1 1.0 6.0 68 120 + 0.754 3 4 cbr 500 ------- 1 1.0 6.0 68 120 r 0.7556 4 7 cbr 1000 ------- 1 2.0 7.0 25 88 r 0.7556 4 6 cbr 500 ------- 1 1.0 6.0 56 92 r 0.757248 0 3 tcp 1000 ------- 0 0.0 5.0 12 121 + 0.757248 3 4 tcp 1000 ------- 0 0.0 5.0 12 121 r 0.7596 3 4 cbr 1000 ------- 1 2.0 7.0 27 98 + 0.7596 4 7 cbr 1000 ------- 1 2.0 7.0 27 98 - 0.7596 4 7 cbr 1000 ------- 1 2.0 7.0 27 98 r 0.7596 4 6 cbr 500 ------- 1 1.0 6.0 57 94 r 0.759648 3 0 ack 40 ------- 0 5.0 0.0 7 106 + 0.759648 0 3 tcp 1000 ------- 0 0.0 5.0 15 127 - 0.759648 0 3 tcp 1000 ------- 0 0.0 5.0 15 127 + 0.76 2 3 cbr 1000 ------- 1 2.0 7.0 33 128 - 0.76 2 3 cbr 1000 ------- 1 2.0 7.0 33 128 + 0.76 1 3 cbr 500 ------- 1 1.0 6.0 71 129 - 0.76 1 3 cbr 500 ------- 1 1.0 6.0 71 129 - 0.7616 3 4 cbr 500 ------- 1 1.0 6.0 65 114 r 0.7636 3 4 cbr 500 ------- 1 1.0 6.0 60 101 + 0.7636 4 6 cbr 500 ------- 1 1.0 6.0 60 101 - 0.7636 4 6 cbr 500 ------- 1 1.0 6.0 60 101 r 0.764 1 3 cbr 500 ------- 1 1.0 6.0 69 123 + 0.764 3 4 cbr 500 ------- 1 1.0 6.0 69 123 r 0.765248 0 3 tcp 1000 ------- 0 0.0 5.0 13 124 + 0.765248 3 4 tcp 1000 ------- 0 0.0 5.0 13 124 - 0.7656 3 4 cbr 1000 ------- 1 2.0 7.0 30 113 r 0.7676 3 4 cbr 500 ------- 1 1.0 6.0 61 104 + 0.7676 4 6 cbr 500 ------- 1 1.0 6.0 61 104 - 0.7676 4 6 cbr 500 ------- 1 1.0 6.0 61 104 r 0.768 2 3 cbr 1000 ------- 1 2.0 7.0 32 122 + 0.768 3 4 cbr 1000 ------- 1 2.0 7.0 32 122 + 0.77 1 3 cbr 500 ------- 1 1.0 6.0 72 130 - 0.77 1 3 cbr 500 ------- 1 1.0 6.0 72 130 r 0.7716 4 7 cbr 1000 ------- 1 2.0 7.0 26 93 r 0.7716 4 6 cbr 500 ------- 1 1.0 6.0 58 97 r 0.773248 0 3 tcp 1000 ------- 0 0.0 5.0 14 126 + 0.773248 3 4 tcp 1000 ------- 0 0.0 5.0 14 126 - 0.7736 3 4 tcp 1000 ------- 0 0.0 5.0 10 116 r 0.774 1 3 cbr 500 ------- 1 1.0 6.0 70 125 + 0.774 3 4 cbr 500 ------- 1 1.0 6.0 70 125 r 0.7756 3 4 cbr 1000 ------- 1 2.0 7.0 28 103 + 0.7756 4 7 cbr 1000 ------- 1 2.0 7.0 28 103 - 0.7756 4 7 cbr 1000 ------- 1 2.0 7.0 28 103 r 0.7756 4 6 cbr 500 ------- 1 1.0 6.0 59 99 r 0.7796 3 4 cbr 500 ------- 1 1.0 6.0 62 107 + 0.7796 4 6 cbr 500 ------- 1 1.0 6.0 62 107 - 0.7796 4 6 cbr 500 ------- 1 1.0 6.0 62 107 + 0.78 2 3 cbr 1000 ------- 1 2.0 7.0 34 131 - 0.78 2 3 cbr 1000 ------- 1 2.0 7.0 34 131 + 0.78 1 3 cbr 500 ------- 1 1.0 6.0 73 132 - 0.78 1 3 cbr 500 ------- 1 1.0 6.0 73 132 r 0.781248 0 3 tcp 1000 ------- 0 0.0 5.0 15 127 + 0.781248 3 4 tcp 1000 ------- 0 0.0 5.0 15 127 - 0.7816 3 4 cbr 500 ------- 1 1.0 6.0 66 115 r 0.7836 3 4 cbr 500 ------- 1 1.0 6.0 63 109 + 0.7836 4 6 cbr 500 ------- 1 1.0 6.0 63 109 - 0.7836 4 6 cbr 500 ------- 1 1.0 6.0 63 109 r 0.784 1 3 cbr 500 ------- 1 1.0 6.0 71 129 + 0.784 3 4 cbr 500 ------- 1 1.0 6.0 71 129 - 0.7856 3 4 tcp 1000 ------- 0 0.0 5.0 11 117 r 0.7876 4 7 cbr 1000 ------- 1 2.0 7.0 27 98 r 0.7876 4 6 cbr 500 ------- 1 1.0 6.0 60 101 r 0.788 2 3 cbr 1000 ------- 1 2.0 7.0 33 128 + 0.788 3 4 cbr 1000 ------- 1 2.0 7.0 33 128 + 0.79 1 3 cbr 500 ------- 1 1.0 6.0 74 133 - 0.79 1 3 cbr 500 ------- 1 1.0 6.0 74 133 r 0.7916 3 4 cbr 1000 ------- 1 2.0 7.0 29 108 + 0.7916 4 7 cbr 1000 ------- 1 2.0 7.0 29 108 - 0.7916 4 7 cbr 1000 ------- 1 2.0 7.0 29 108 r 0.7916 4 6 cbr 500 ------- 1 1.0 6.0 61 104 - 0.7936 3 4 cbr 500 ------- 1 1.0 6.0 67 119 r 0.794 1 3 cbr 500 ------- 1 1.0 6.0 72 130 + 0.794 3 4 cbr 500 ------- 1 1.0 6.0 72 130 - 0.7976 3 4 cbr 1000 ------- 1 2.0 7.0 31 118 r 0.7996 3 4 tcp 1000 ------- 0 0.0 5.0 8 111 + 0.7996 4 5 tcp 1000 ------- 0 0.0 5.0 8 111 - 0.7996 4 5 tcp 1000 ------- 0 0.0 5.0 8 111 + 0.8 2 3 cbr 1000 ------- 1 2.0 7.0 35 134 - 0.8 2 3 cbr 1000 ------- 1 2.0 7.0 35 134 + 0.8 1 3 cbr 500 ------- 1 1.0 6.0 75 135 - 0.8 1 3 cbr 500 ------- 1 1.0 6.0 75 135 r 0.8036 3 4 cbr 500 ------- 1 1.0 6.0 64 110 + 0.8036 4 6 cbr 500 ------- 1 1.0 6.0 64 110 - 0.8036 4 6 cbr 500 ------- 1 1.0 6.0 64 110 r 0.8036 4 7 cbr 1000 ------- 1 2.0 7.0 28 103 r 0.8036 4 6 cbr 500 ------- 1 1.0 6.0 62 107 r 0.804 1 3 cbr 500 ------- 1 1.0 6.0 73 132 + 0.804 3 4 cbr 500 ------- 1 1.0 6.0 73 132 - 0.8056 3 4 cbr 500 ------- 1 1.0 6.0 68 120 r 0.8076 4 6 cbr 500 ------- 1 1.0 6.0 63 109 r 0.808 2 3 cbr 1000 ------- 1 2.0 7.0 34 131 + 0.808 3 4 cbr 1000 ------- 1 2.0 7.0 34 131 - 0.8096 3 4 tcp 1000 ------- 0 0.0 5.0 12 121 + 0.81 1 3 cbr 500 ------- 1 1.0 6.0 76 136 - 0.81 1 3 cbr 500 ------- 1 1.0 6.0 76 136 r 0.8116 3 4 tcp 1000 ------- 0 0.0 5.0 9 112 + 0.8116 4 5 tcp 1000 ------- 0 0.0 5.0 9 112 - 0.8116 4 5 tcp 1000 ------- 0 0.0 5.0 9 112 r 0.814 1 3 cbr 500 ------- 1 1.0 6.0 74 133 + 0.814 3 4 cbr 500 ------- 1 1.0 6.0 74 133 r 0.8156 3 4 cbr 500 ------- 1 1.0 6.0 65 114 + 0.8156 4 6 cbr 500 ------- 1 1.0 6.0 65 114 - 0.8156 4 6 cbr 500 ------- 1 1.0 6.0 65 114 - 0.8176 3 4 cbr 500 ------- 1 1.0 6.0 69 123 r 0.8196 4 7 cbr 1000 ------- 1 2.0 7.0 29 108 + 0.82 2 3 cbr 1000 ------- 1 2.0 7.0 36 137 - 0.82 2 3 cbr 1000 ------- 1 2.0 7.0 36 137 + 0.82 1 3 cbr 500 ------- 1 1.0 6.0 77 138 - 0.82 1 3 cbr 500 ------- 1 1.0 6.0 77 138 r 0.8212 4 5 tcp 1000 ------- 0 0.0 5.0 8 111 + 0.8212 5 4 ack 40 ------- 0 5.0 0.0 8 139 - 0.8212 5 4 ack 40 ------- 0 5.0 0.0 8 139 - 0.8216 3 4 tcp 1000 ------- 0 0.0 5.0 13 124 r 0.8236 3 4 cbr 1000 ------- 1 2.0 7.0 30 113 + 0.8236 4 7 cbr 1000 ------- 1 2.0 7.0 30 113 - 0.8236 4 7 cbr 1000 ------- 1 2.0 7.0 30 113 r 0.824 1 3 cbr 500 ------- 1 1.0 6.0 75 135 + 0.824 3 4 cbr 500 ------- 1 1.0 6.0 75 135 r 0.8276 4 6 cbr 500 ------- 1 1.0 6.0 64 110 r 0.828 2 3 cbr 1000 ------- 1 2.0 7.0 35 134 + 0.828 3 4 cbr 1000 ------- 1 2.0 7.0 35 134 - 0.8296 3 4 cbr 1000 ------- 1 2.0 7.0 32 122 + 0.83 1 3 cbr 500 ------- 1 1.0 6.0 78 140 - 0.83 1 3 cbr 500 ------- 1 1.0 6.0 78 140 r 0.8316 3 4 tcp 1000 ------- 0 0.0 5.0 10 116 + 0.8316 4 5 tcp 1000 ------- 0 0.0 5.0 10 116 - 0.8316 4 5 tcp 1000 ------- 0 0.0 5.0 10 116 r 0.8332 4 5 tcp 1000 ------- 0 0.0 5.0 9 112 + 0.8332 5 4 ack 40 ------- 0 5.0 0.0 9 141 - 0.8332 5 4 ack 40 ------- 0 5.0 0.0 9 141 r 0.834 1 3 cbr 500 ------- 1 1.0 6.0 76 136 + 0.834 3 4 cbr 500 ------- 1 1.0 6.0 76 136 r 0.8356 3 4 cbr 500 ------- 1 1.0 6.0 66 115 + 0.8356 4 6 cbr 500 ------- 1 1.0 6.0 66 115 - 0.8356 4 6 cbr 500 ------- 1 1.0 6.0 66 115 - 0.8376 3 4 tcp 1000 ------- 0 0.0 5.0 14 126 r 0.8396 4 6 cbr 500 ------- 1 1.0 6.0 65 114 + 0.84 2 3 cbr 1000 ------- 1 2.0 7.0 37 142 - 0.84 2 3 cbr 1000 ------- 1 2.0 7.0 37 142 + 0.84 1 3 cbr 500 ------- 1 1.0 6.0 79 143 - 0.84 1 3 cbr 500 ------- 1 1.0 6.0 79 143 r 0.841264 5 4 ack 40 ------- 0 5.0 0.0 8 139 + 0.841264 4 3 ack 40 ------- 0 5.0 0.0 8 139 - 0.841264 4 3 ack 40 ------- 0 5.0 0.0 8 139 r 0.8436 3 4 tcp 1000 ------- 0 0.0 5.0 11 117 + 0.8436 4 5 tcp 1000 ------- 0 0.0 5.0 11 117 - 0.8436 4 5 tcp 1000 ------- 0 0.0 5.0 11 117 r 0.844 1 3 cbr 500 ------- 1 1.0 6.0 77 138 + 0.844 3 4 cbr 500 ------- 1 1.0 6.0 77 138 - 0.8456 3 4 cbr 500 ------- 1 1.0 6.0 70 125 r 0.8476 3 4 cbr 500 ------- 1 1.0 6.0 67 119 + 0.8476 4 6 cbr 500 ------- 1 1.0 6.0 67 119 - 0.8476 4 6 cbr 500 ------- 1 1.0 6.0 67 119 r 0.848 2 3 cbr 1000 ------- 1 2.0 7.0 36 137 + 0.848 3 4 cbr 1000 ------- 1 2.0 7.0 36 137 - 0.8496 3 4 tcp 1000 ------- 0 0.0 5.0 15 127 + 0.85 1 3 cbr 500 ------- 1 1.0 6.0 80 144 - 0.85 1 3 cbr 500 ------- 1 1.0 6.0 80 144 r 0.8516 4 7 cbr 1000 ------- 1 2.0 7.0 30 113 r 0.8532 4 5 tcp 1000 ------- 0 0.0 5.0 10 116 + 0.8532 5 4 ack 40 ------- 0 5.0 0.0 10 145 - 0.8532 5 4 ack 40 ------- 0 5.0 0.0 10 145 r 0.853264 5 4 ack 40 ------- 0 5.0 0.0 9 141 + 0.853264 4 3 ack 40 ------- 0 5.0 0.0 9 141 - 0.853264 4 3 ack 40 ------- 0 5.0 0.0 9 141 r 0.854 1 3 cbr 500 ------- 1 1.0 6.0 78 140 + 0.854 3 4 cbr 500 ------- 1 1.0 6.0 78 140 r 0.8556 3 4 cbr 1000 ------- 1 2.0 7.0 31 118 + 0.8556 4 7 cbr 1000 ------- 1 2.0 7.0 31 118 - 0.8556 4 7 cbr 1000 ------- 1 2.0 7.0 31 118 - 0.8576 3 4 cbr 500 ------- 1 1.0 6.0 71 129 r 0.8596 3 4 cbr 500 ------- 1 1.0 6.0 68 120 + 0.8596 4 6 cbr 500 ------- 1 1.0 6.0 68 120 - 0.8596 4 6 cbr 500 ------- 1 1.0 6.0 68 120 r 0.8596 4 6 cbr 500 ------- 1 1.0 6.0 66 115 + 0.86 2 3 cbr 1000 ------- 1 2.0 7.0 38 146 - 0.86 2 3 cbr 1000 ------- 1 2.0 7.0 38 146 + 0.86 1 3 cbr 500 ------- 1 1.0 6.0 81 147 - 0.86 1 3 cbr 500 ------- 1 1.0 6.0 81 147 - 0.8616 3 4 cbr 1000 ------- 1 2.0 7.0 33 128 r 0.864 1 3 cbr 500 ------- 1 1.0 6.0 79 143 + 0.864 3 4 cbr 500 ------- 1 1.0 6.0 79 143 r 0.8652 4 5 tcp 1000 ------- 0 0.0 5.0 11 117 + 0.8652 5 4 ack 40 ------- 0 5.0 0.0 11 148 - 0.8652 5 4 ack 40 ------- 0 5.0 0.0 11 148 r 0.8676 3 4 tcp 1000 ------- 0 0.0 5.0 12 121 + 0.8676 4 5 tcp 1000 ------- 0 0.0 5.0 12 121 - 0.8676 4 5 tcp 1000 ------- 0 0.0 5.0 12 121 r 0.868 2 3 cbr 1000 ------- 1 2.0 7.0 37 142 + 0.868 3 4 cbr 1000 ------- 1 2.0 7.0 37 142 - 0.8696 3 4 cbr 500 ------- 1 1.0 6.0 72 130 + 0.87 1 3 cbr 500 ------- 1 1.0 6.0 82 149 - 0.87 1 3 cbr 500 ------- 1 1.0 6.0 82 149 r 0.8716 3 4 cbr 500 ------- 1 1.0 6.0 69 123 + 0.8716 4 6 cbr 500 ------- 1 1.0 6.0 69 123 - 0.8716 4 6 cbr 500 ------- 1 1.0 6.0 69 123 r 0.8716 4 6 cbr 500 ------- 1 1.0 6.0 67 119 r 0.873264 5 4 ack 40 ------- 0 5.0 0.0 10 145 + 0.873264 4 3 ack 40 ------- 0 5.0 0.0 10 145 - 0.873264 4 3 ack 40 ------- 0 5.0 0.0 10 145 - 0.8736 3 4 cbr 500 ------- 1 1.0 6.0 73 132 r 0.874 1 3 cbr 500 ------- 1 1.0 6.0 80 144 + 0.874 3 4 cbr 500 ------- 1 1.0 6.0 80 144 - 0.8776 3 4 cbr 1000 ------- 1 2.0 7.0 34 131 r 0.8796 3 4 tcp 1000 ------- 0 0.0 5.0 13 124 + 0.8796 4 5 tcp 1000 ------- 0 0.0 5.0 13 124 - 0.8796 4 5 tcp 1000 ------- 0 0.0 5.0 13 124 + 0.88 2 3 cbr 1000 ------- 1 2.0 7.0 39 150 - 0.88 2 3 cbr 1000 ------- 1 2.0 7.0 39 150 + 0.88 1 3 cbr 500 ------- 1 1.0 6.0 83 151 - 0.88 1 3 cbr 500 ------- 1 1.0 6.0 83 151 r 0.8836 4 7 cbr 1000 ------- 1 2.0 7.0 31 118 r 0.8836 4 6 cbr 500 ------- 1 1.0 6.0 68 120 r 0.884 1 3 cbr 500 ------- 1 1.0 6.0 81 147 + 0.884 3 4 cbr 500 ------- 1 1.0 6.0 81 147 r 0.885264 5 4 ack 40 ------- 0 5.0 0.0 11 148 + 0.885264 4 3 ack 40 ------- 0 5.0 0.0 11 148 - 0.885264 4 3 ack 40 ------- 0 5.0 0.0 11 148 - 0.8856 3 4 cbr 500 ------- 1 1.0 6.0 74 133 r 0.8876 3 4 cbr 1000 ------- 1 2.0 7.0 32 122 + 0.8876 4 7 cbr 1000 ------- 1 2.0 7.0 32 122 - 0.8876 4 7 cbr 1000 ------- 1 2.0 7.0 32 122 r 0.888 2 3 cbr 1000 ------- 1 2.0 7.0 38 146 + 0.888 3 4 cbr 1000 ------- 1 2.0 7.0 38 146 r 0.8892 4 5 tcp 1000 ------- 0 0.0 5.0 12 121 + 0.8892 5 4 ack 40 ------- 0 5.0 0.0 12 152 - 0.8892 5 4 ack 40 ------- 0 5.0 0.0 12 152 - 0.8896 3 4 cbr 500 ------- 1 1.0 6.0 75 135 + 0.89 1 3 cbr 500 ------- 1 1.0 6.0 84 153 - 0.89 1 3 cbr 500 ------- 1 1.0 6.0 84 153 r 0.891584 4 3 ack 40 ------- 0 5.0 0.0 8 139 + 0.891584 3 0 ack 40 ------- 0 5.0 0.0 8 139 - 0.891584 3 0 ack 40 ------- 0 5.0 0.0 8 139 - 0.8936 3 4 cbr 1000 ------- 1 2.0 7.0 35 134 r 0.894 1 3 cbr 500 ------- 1 1.0 6.0 82 149 + 0.894 3 4 cbr 500 ------- 1 1.0 6.0 82 149 r 0.8956 3 4 tcp 1000 ------- 0 0.0 5.0 14 126 + 0.8956 4 5 tcp 1000 ------- 0 0.0 5.0 14 126 - 0.8956 4 5 tcp 1000 ------- 0 0.0 5.0 14 126 r 0.8956 4 6 cbr 500 ------- 1 1.0 6.0 69 123 r 0.8996 3 4 cbr 500 ------- 1 1.0 6.0 70 125 + 0.8996 4 6 cbr 500 ------- 1 1.0 6.0 70 125 - 0.8996 4 6 cbr 500 ------- 1 1.0 6.0 70 125 + 0.9 2 3 cbr 1000 ------- 1 2.0 7.0 40 154 - 0.9 2 3 cbr 1000 ------- 1 2.0 7.0 40 154 + 0.9 1 3 cbr 500 ------- 1 1.0 6.0 85 155 - 0.9 1 3 cbr 500 ------- 1 1.0 6.0 85 155 r 0.9012 4 5 tcp 1000 ------- 0 0.0 5.0 13 124 + 0.9012 5 4 ack 40 ------- 0 5.0 0.0 13 156 - 0.9012 5 4 ack 40 ------- 0 5.0 0.0 13 156 - 0.9016 3 4 cbr 500 ------- 1 1.0 6.0 76 136 r 0.903584 4 3 ack 40 ------- 0 5.0 0.0 9 141 + 0.903584 3 0 ack 40 ------- 0 5.0 0.0 9 141 - 0.903584 3 0 ack 40 ------- 0 5.0 0.0 9 141 r 0.904 1 3 cbr 500 ------- 1 1.0 6.0 83 151 + 0.904 3 4 cbr 500 ------- 1 1.0 6.0 83 151 - 0.9056 3 4 cbr 500 ------- 1 1.0 6.0 77 138 r 0.9076 3 4 tcp 1000 ------- 0 0.0 5.0 15 127 + 0.9076 4 5 tcp 1000 ------- 0 0.0 5.0 15 127 - 0.9076 4 5 tcp 1000 ------- 0 0.0 5.0 15 127 r 0.908 2 3 cbr 1000 ------- 1 2.0 7.0 39 150 + 0.908 3 4 cbr 1000 ------- 1 2.0 7.0 39 150 r 0.909264 5 4 ack 40 ------- 0 5.0 0.0 12 152 + 0.909264 4 3 ack 40 ------- 0 5.0 0.0 12 152 - 0.909264 4 3 ack 40 ------- 0 5.0 0.0 12 152 - 0.9096 3 4 cbr 1000 ------- 1 2.0 7.0 36 137 + 0.91 1 3 cbr 500 ------- 1 1.0 6.0 86 157 - 0.91 1 3 cbr 500 ------- 1 1.0 6.0 86 157 r 0.9116 3 4 cbr 500 ------- 1 1.0 6.0 71 129 + 0.9116 4 6 cbr 500 ------- 1 1.0 6.0 71 129 - 0.9116 4 6 cbr 500 ------- 1 1.0 6.0 71 129 r 0.911648 3 0 ack 40 ------- 0 5.0 0.0 8 139 + 0.911648 0 3 tcp 1000 ------- 0 0.0 5.0 16 158 - 0.911648 0 3 tcp 1000 ------- 0 0.0 5.0 16 158 r 0.914 1 3 cbr 500 ------- 1 1.0 6.0 84 153 + 0.914 3 4 cbr 500 ------- 1 1.0 6.0 84 153 r 0.9156 4 7 cbr 1000 ------- 1 2.0 7.0 32 122 r 0.9172 4 5 tcp 1000 ------- 0 0.0 5.0 14 126 + 0.9172 5 4 ack 40 ------- 0 5.0 0.0 14 159 - 0.9172 5 4 ack 40 ------- 0 5.0 0.0 14 159 - 0.9176 3 4 cbr 500 ------- 1 1.0 6.0 78 140 r 0.9196 3 4 cbr 1000 ------- 1 2.0 7.0 33 128 + 0.9196 4 7 cbr 1000 ------- 1 2.0 7.0 33 128 - 0.9196 4 7 cbr 1000 ------- 1 2.0 7.0 33 128 + 0.92 2 3 cbr 1000 ------- 1 2.0 7.0 41 160 - 0.92 2 3 cbr 1000 ------- 1 2.0 7.0 41 160 + 0.92 1 3 cbr 500 ------- 1 1.0 6.0 87 161 - 0.92 1 3 cbr 500 ------- 1 1.0 6.0 87 161 r 0.921264 5 4 ack 40 ------- 0 5.0 0.0 13 156 + 0.921264 4 3 ack 40 ------- 0 5.0 0.0 13 156 - 0.921264 4 3 ack 40 ------- 0 5.0 0.0 13 156 - 0.9216 3 4 cbr 500 ------- 1 1.0 6.0 79 143 r 0.923584 4 3 ack 40 ------- 0 5.0 0.0 10 145 + 0.923584 3 0 ack 40 ------- 0 5.0 0.0 10 145 - 0.923584 3 0 ack 40 ------- 0 5.0 0.0 10 145 r 0.9236 3 4 cbr 500 ------- 1 1.0 6.0 72 130 + 0.9236 4 6 cbr 500 ------- 1 1.0 6.0 72 130 - 0.9236 4 6 cbr 500 ------- 1 1.0 6.0 72 130 r 0.9236 4 6 cbr 500 ------- 1 1.0 6.0 70 125 r 0.923648 3 0 ack 40 ------- 0 5.0 0.0 9 141 + 0.923648 0 3 tcp 1000 ------- 0 0.0 5.0 17 162 - 0.923648 0 3 tcp 1000 ------- 0 0.0 5.0 17 162 r 0.924 1 3 cbr 500 ------- 1 1.0 6.0 85 155 + 0.924 3 4 cbr 500 ------- 1 1.0 6.0 85 155 - 0.9256 3 4 cbr 1000 ------- 1 2.0 7.0 37 142 r 0.9276 3 4 cbr 500 ------- 1 1.0 6.0 73 132 + 0.9276 4 6 cbr 500 ------- 1 1.0 6.0 73 132 - 0.9276 4 6 cbr 500 ------- 1 1.0 6.0 73 132 r 0.928 2 3 cbr 1000 ------- 1 2.0 7.0 40 154 + 0.928 3 4 cbr 1000 ------- 1 2.0 7.0 40 154 r 0.9292 4 5 tcp 1000 ------- 0 0.0 5.0 15 127 + 0.9292 5 4 ack 40 ------- 0 5.0 0.0 15 163 - 0.9292 5 4 ack 40 ------- 0 5.0 0.0 15 163 + 0.93 1 3 cbr 500 ------- 1 1.0 6.0 88 164 - 0.93 1 3 cbr 500 ------- 1 1.0 6.0 88 164 r 0.933248 0 3 tcp 1000 ------- 0 0.0 5.0 16 158 + 0.933248 3 4 tcp 1000 ------- 0 0.0 5.0 16 158 - 0.9336 3 4 cbr 500 ------- 1 1.0 6.0 80 144 r 0.934 1 3 cbr 500 ------- 1 1.0 6.0 86 157 + 0.934 3 4 cbr 500 ------- 1 1.0 6.0 86 157 r 0.935584 4 3 ack 40 ------- 0 5.0 0.0 11 148 + 0.935584 3 0 ack 40 ------- 0 5.0 0.0 11 148 - 0.935584 3 0 ack 40 ------- 0 5.0 0.0 11 148 r 0.9356 3 4 cbr 1000 ------- 1 2.0 7.0 34 131 + 0.9356 4 7 cbr 1000 ------- 1 2.0 7.0 34 131 - 0.9356 4 7 cbr 1000 ------- 1 2.0 7.0 34 131 r 0.9356 4 6 cbr 500 ------- 1 1.0 6.0 71 129 r 0.937264 5 4 ack 40 ------- 0 5.0 0.0 14 159 + 0.937264 4 3 ack 40 ------- 0 5.0 0.0 14 159 - 0.937264 4 3 ack 40 ------- 0 5.0 0.0 14 159 - 0.9376 3 4 cbr 500 ------- 1 1.0 6.0 81 147 r 0.9396 3 4 cbr 500 ------- 1 1.0 6.0 74 133 + 0.9396 4 6 cbr 500 ------- 1 1.0 6.0 74 133 - 0.9396 4 6 cbr 500 ------- 1 1.0 6.0 74 133 + 0.94 2 3 cbr 1000 ------- 1 2.0 7.0 42 165 - 0.94 2 3 cbr 1000 ------- 1 2.0 7.0 42 165 + 0.94 1 3 cbr 500 ------- 1 1.0 6.0 89 166 - 0.94 1 3 cbr 500 ------- 1 1.0 6.0 89 166 - 0.9416 3 4 cbr 1000 ------- 1 2.0 7.0 38 146 r 0.9436 3 4 cbr 500 ------- 1 1.0 6.0 75 135 + 0.9436 4 6 cbr 500 ------- 1 1.0 6.0 75 135 - 0.9436 4 6 cbr 500 ------- 1 1.0 6.0 75 135 r 0.943648 3 0 ack 40 ------- 0 5.0 0.0 10 145 + 0.943648 0 3 tcp 1000 ------- 0 0.0 5.0 18 167 - 0.943648 0 3 tcp 1000 ------- 0 0.0 5.0 18 167 r 0.944 1 3 cbr 500 ------- 1 1.0 6.0 87 161 + 0.944 3 4 cbr 500 ------- 1 1.0 6.0 87 161 r 0.945248 0 3 tcp 1000 ------- 0 0.0 5.0 17 162 + 0.945248 3 4 tcp 1000 ------- 0 0.0 5.0 17 162 r 0.9476 4 7 cbr 1000 ------- 1 2.0 7.0 33 128 r 0.9476 4 6 cbr 500 ------- 1 1.0 6.0 72 130 r 0.948 2 3 cbr 1000 ------- 1 2.0 7.0 41 160 + 0.948 3 4 cbr 1000 ------- 1 2.0 7.0 41 160 r 0.949264 5 4 ack 40 ------- 0 5.0 0.0 15 163 + 0.949264 4 3 ack 40 ------- 0 5.0 0.0 15 163 - 0.949264 4 3 ack 40 ------- 0 5.0 0.0 15 163 - 0.9496 3 4 cbr 500 ------- 1 1.0 6.0 82 149 + 0.95 1 3 cbr 500 ------- 1 1.0 6.0 90 168 - 0.95 1 3 cbr 500 ------- 1 1.0 6.0 90 168 r 0.9516 3 4 cbr 1000 ------- 1 2.0 7.0 35 134 + 0.9516 4 7 cbr 1000 ------- 1 2.0 7.0 35 134 - 0.9516 4 7 cbr 1000 ------- 1 2.0 7.0 35 134 r 0.9516 4 6 cbr 500 ------- 1 1.0 6.0 73 132 - 0.9536 3 4 cbr 500 ------- 1 1.0 6.0 83 151 r 0.954 1 3 cbr 500 ------- 1 1.0 6.0 88 164 + 0.954 3 4 cbr 500 ------- 1 1.0 6.0 88 164 r 0.9556 3 4 cbr 500 ------- 1 1.0 6.0 76 136 + 0.9556 4 6 cbr 500 ------- 1 1.0 6.0 76 136 - 0.9556 4 6 cbr 500 ------- 1 1.0 6.0 76 136 r 0.955648 3 0 ack 40 ------- 0 5.0 0.0 11 148 + 0.955648 0 3 tcp 1000 ------- 0 0.0 5.0 19 169 - 0.955648 0 3 tcp 1000 ------- 0 0.0 5.0 19 169 - 0.9576 3 4 cbr 1000 ------- 1 2.0 7.0 39 150 r 0.959584 4 3 ack 40 ------- 0 5.0 0.0 12 152 + 0.959584 3 0 ack 40 ------- 0 5.0 0.0 12 152 - 0.959584 3 0 ack 40 ------- 0 5.0 0.0 12 152 r 0.9596 3 4 cbr 500 ------- 1 1.0 6.0 77 138 + 0.9596 4 6 cbr 500 ------- 1 1.0 6.0 77 138 - 0.9596 4 6 cbr 500 ------- 1 1.0 6.0 77 138 + 0.96 2 3 cbr 1000 ------- 1 2.0 7.0 43 170 - 0.96 2 3 cbr 1000 ------- 1 2.0 7.0 43 170 + 0.96 1 3 cbr 500 ------- 1 1.0 6.0 91 171 - 0.96 1 3 cbr 500 ------- 1 1.0 6.0 91 171 r 0.9636 4 7 cbr 1000 ------- 1 2.0 7.0 34 131 r 0.9636 4 6 cbr 500 ------- 1 1.0 6.0 74 133 r 0.964 1 3 cbr 500 ------- 1 1.0 6.0 89 166 + 0.964 3 4 cbr 500 ------- 1 1.0 6.0 89 166 r 0.965248 0 3 tcp 1000 ------- 0 0.0 5.0 18 167 + 0.965248 3 4 tcp 1000 ------- 0 0.0 5.0 18 167 - 0.9656 3 4 cbr 500 ------- 1 1.0 6.0 84 153 r 0.9676 3 4 cbr 1000 ------- 1 2.0 7.0 36 137 + 0.9676 4 7 cbr 1000 ------- 1 2.0 7.0 36 137 - 0.9676 4 7 cbr 1000 ------- 1 2.0 7.0 36 137 r 0.9676 4 6 cbr 500 ------- 1 1.0 6.0 75 135 r 0.968 2 3 cbr 1000 ------- 1 2.0 7.0 42 165 + 0.968 3 4 cbr 1000 ------- 1 2.0 7.0 42 165 - 0.9696 3 4 cbr 500 ------- 1 1.0 6.0 85 155 + 0.97 1 3 cbr 500 ------- 1 1.0 6.0 92 172 - 0.97 1 3 cbr 500 ------- 1 1.0 6.0 92 172 r 0.971584 4 3 ack 40 ------- 0 5.0 0.0 13 156 + 0.971584 3 0 ack 40 ------- 0 5.0 0.0 13 156 - 0.971584 3 0 ack 40 ------- 0 5.0 0.0 13 156 r 0.9716 3 4 cbr 500 ------- 1 1.0 6.0 78 140 + 0.9716 4 6 cbr 500 ------- 1 1.0 6.0 78 140 - 0.9716 4 6 cbr 500 ------- 1 1.0 6.0 78 140 - 0.9736 3 4 cbr 1000 ------- 1 2.0 7.0 40 154 r 0.974 1 3 cbr 500 ------- 1 1.0 6.0 90 168 + 0.974 3 4 cbr 500 ------- 1 1.0 6.0 90 168 r 0.9756 3 4 cbr 500 ------- 1 1.0 6.0 79 143 + 0.9756 4 6 cbr 500 ------- 1 1.0 6.0 79 143 - 0.9756 4 6 cbr 500 ------- 1 1.0 6.0 79 143 r 0.977248 0 3 tcp 1000 ------- 0 0.0 5.0 19 169 + 0.977248 3 4 tcp 1000 ------- 0 0.0 5.0 19 169 r 0.9796 4 7 cbr 1000 ------- 1 2.0 7.0 35 134 r 0.9796 4 6 cbr 500 ------- 1 1.0 6.0 76 136 r 0.979648 3 0 ack 40 ------- 0 5.0 0.0 12 152 + 0.979648 0 3 tcp 1000 ------- 0 0.0 5.0 20 173 - 0.979648 0 3 tcp 1000 ------- 0 0.0 5.0 20 173 + 0.98 2 3 cbr 1000 ------- 1 2.0 7.0 44 174 - 0.98 2 3 cbr 1000 ------- 1 2.0 7.0 44 174 + 0.98 1 3 cbr 500 ------- 1 1.0 6.0 93 175 - 0.98 1 3 cbr 500 ------- 1 1.0 6.0 93 175 - 0.9816 3 4 tcp 1000 ------- 0 0.0 5.0 16 158 r 0.9836 3 4 cbr 1000 ------- 1 2.0 7.0 37 142 + 0.9836 4 7 cbr 1000 ------- 1 2.0 7.0 37 142 - 0.9836 4 7 cbr 1000 ------- 1 2.0 7.0 37 142 r 0.9836 4 6 cbr 500 ------- 1 1.0 6.0 77 138 r 0.984 1 3 cbr 500 ------- 1 1.0 6.0 91 171 + 0.984 3 4 cbr 500 ------- 1 1.0 6.0 91 171 r 0.987584 4 3 ack 40 ------- 0 5.0 0.0 14 159 + 0.987584 3 0 ack 40 ------- 0 5.0 0.0 14 159 - 0.987584 3 0 ack 40 ------- 0 5.0 0.0 14 159 r 0.9876 3 4 cbr 500 ------- 1 1.0 6.0 80 144 + 0.9876 4 6 cbr 500 ------- 1 1.0 6.0 80 144 - 0.9876 4 6 cbr 500 ------- 1 1.0 6.0 80 144 r 0.988 2 3 cbr 1000 ------- 1 2.0 7.0 43 170 + 0.988 3 4 cbr 1000 ------- 1 2.0 7.0 43 170 - 0.9896 3 4 cbr 500 ------- 1 1.0 6.0 86 157 + 0.99 1 3 cbr 500 ------- 1 1.0 6.0 94 176 - 0.99 1 3 cbr 500 ------- 1 1.0 6.0 94 176 r 0.9916 3 4 cbr 500 ------- 1 1.0 6.0 81 147 + 0.9916 4 6 cbr 500 ------- 1 1.0 6.0 81 147 - 0.9916 4 6 cbr 500 ------- 1 1.0 6.0 81 147 r 0.991648 3 0 ack 40 ------- 0 5.0 0.0 13 156 + 0.991648 0 3 tcp 1000 ------- 0 0.0 5.0 21 177 - 0.991648 0 3 tcp 1000 ------- 0 0.0 5.0 21 177 - 0.9936 3 4 cbr 500 ------- 1 1.0 6.0 87 161 r 0.994 1 3 cbr 500 ------- 1 1.0 6.0 92 172 + 0.994 3 4 cbr 500 ------- 1 1.0 6.0 92 172 r 0.9956 4 7 cbr 1000 ------- 1 2.0 7.0 36 137 r 0.9956 4 6 cbr 500 ------- 1 1.0 6.0 78 140 - 0.9976 3 4 tcp 1000 ------- 0 0.0 5.0 17 162 r 0.999584 4 3 ack 40 ------- 0 5.0 0.0 15 163 + 0.999584 3 0 ack 40 ------- 0 5.0 0.0 15 163 - 0.999584 3 0 ack 40 ------- 0 5.0 0.0 15 163 r 0.9996 3 4 cbr 1000 ------- 1 2.0 7.0 38 146 + 0.9996 4 7 cbr 1000 ------- 1 2.0 7.0 38 146 - 0.9996 4 7 cbr 1000 ------- 1 2.0 7.0 38 146 r 0.9996 4 6 cbr 500 ------- 1 1.0 6.0 79 143 + 1 2 3 cbr 1000 ------- 1 2.0 7.0 45 178 - 1 2 3 cbr 1000 ------- 1 2.0 7.0 45 178 + 1 1 3 cbr 500 ------- 1 1.0 6.0 95 179 - 1 1 3 cbr 500 ------- 1 1.0 6.0 95 179 r 1.00125 0 3 tcp 1000 ------- 0 0.0 5.0 20 173 + 1.00125 3 4 tcp 1000 ------- 0 0.0 5.0 20 173 r 1.0036 3 4 cbr 500 ------- 1 1.0 6.0 82 149 + 1.0036 4 6 cbr 500 ------- 1 1.0 6.0 82 149 - 1.0036 4 6 cbr 500 ------- 1 1.0 6.0 82 149 r 1.004 1 3 cbr 500 ------- 1 1.0 6.0 93 175 + 1.004 3 4 cbr 500 ------- 1 1.0 6.0 93 175 - 1.0056 3 4 cbr 1000 ------- 1 2.0 7.0 41 160 r 1.0076 3 4 cbr 500 ------- 1 1.0 6.0 83 151 + 1.0076 4 6 cbr 500 ------- 1 1.0 6.0 83 151 - 1.0076 4 6 cbr 500 ------- 1 1.0 6.0 83 151 r 1.00765 3 0 ack 40 ------- 0 5.0 0.0 14 159 + 1.00765 0 3 tcp 1000 ------- 0 0.0 5.0 22 180 - 1.00765 0 3 tcp 1000 ------- 0 0.0 5.0 22 180 r 1.008 2 3 cbr 1000 ------- 1 2.0 7.0 44 174 + 1.008 3 4 cbr 1000 ------- 1 2.0 7.0 44 174 + 1.01 1 3 cbr 500 ------- 1 1.0 6.0 96 181 - 1.01 1 3 cbr 500 ------- 1 1.0 6.0 96 181 r 1.0116 4 7 cbr 1000 ------- 1 2.0 7.0 37 142 r 1.0116 4 6 cbr 500 ------- 1 1.0 6.0 80 144 r 1.01325 0 3 tcp 1000 ------- 0 0.0 5.0 21 177 + 1.01325 3 4 tcp 1000 ------- 0 0.0 5.0 21 177 - 1.0136 3 4 cbr 500 ------- 1 1.0 6.0 88 164 r 1.014 1 3 cbr 500 ------- 1 1.0 6.0 94 176 + 1.014 3 4 cbr 500 ------- 1 1.0 6.0 94 176 r 1.0156 3 4 cbr 1000 ------- 1 2.0 7.0 39 150 + 1.0156 4 7 cbr 1000 ------- 1 2.0 7.0 39 150 - 1.0156 4 7 cbr 1000 ------- 1 2.0 7.0 39 150 r 1.0156 4 6 cbr 500 ------- 1 1.0 6.0 81 147 - 1.0176 3 4 cbr 500 ------- 1 1.0 6.0 89 166 r 1.0196 3 4 cbr 500 ------- 1 1.0 6.0 84 153 + 1.0196 4 6 cbr 500 ------- 1 1.0 6.0 84 153 - 1.0196 4 6 cbr 500 ------- 1 1.0 6.0 84 153 r 1.01965 3 0 ack 40 ------- 0 5.0 0.0 15 163 + 1.01965 0 3 tcp 1000 ------- 0 0.0 5.0 23 182 - 1.01965 0 3 tcp 1000 ------- 0 0.0 5.0 23 182 + 1.02 2 3 cbr 1000 ------- 1 2.0 7.0 46 183 - 1.02 2 3 cbr 1000 ------- 1 2.0 7.0 46 183 + 1.02 1 3 cbr 500 ------- 1 1.0 6.0 97 184 - 1.02 1 3 cbr 500 ------- 1 1.0 6.0 97 184 - 1.0216 3 4 tcp 1000 ------- 0 0.0 5.0 18 167 r 1.0236 3 4 cbr 500 ------- 1 1.0 6.0 85 155 + 1.0236 4 6 cbr 500 ------- 1 1.0 6.0 85 155 - 1.0236 4 6 cbr 500 ------- 1 1.0 6.0 85 155 r 1.024 1 3 cbr 500 ------- 1 1.0 6.0 95 179 + 1.024 3 4 cbr 500 ------- 1 1.0 6.0 95 179 r 1.0276 4 7 cbr 1000 ------- 1 2.0 7.0 38 146 r 1.0276 4 6 cbr 500 ------- 1 1.0 6.0 82 149 r 1.028 2 3 cbr 1000 ------- 1 2.0 7.0 45 178 + 1.028 3 4 cbr 1000 ------- 1 2.0 7.0 45 178 r 1.02925 0 3 tcp 1000 ------- 0 0.0 5.0 22 180 + 1.02925 3 4 tcp 1000 ------- 0 0.0 5.0 22 180 - 1.0296 3 4 cbr 1000 ------- 1 2.0 7.0 42 165 + 1.03 1 3 cbr 500 ------- 1 1.0 6.0 98 185 - 1.03 1 3 cbr 500 ------- 1 1.0 6.0 98 185 r 1.0316 3 4 cbr 1000 ------- 1 2.0 7.0 40 154 + 1.0316 4 7 cbr 1000 ------- 1 2.0 7.0 40 154 - 1.0316 4 7 cbr 1000 ------- 1 2.0 7.0 40 154 r 1.0316 4 6 cbr 500 ------- 1 1.0 6.0 83 151 r 1.034 1 3 cbr 500 ------- 1 1.0 6.0 96 181 + 1.034 3 4 cbr 500 ------- 1 1.0 6.0 96 181 - 1.0376 3 4 cbr 500 ------- 1 1.0 6.0 90 168 r 1.0396 3 4 tcp 1000 ------- 0 0.0 5.0 16 158 + 1.0396 4 5 tcp 1000 ------- 0 0.0 5.0 16 158 - 1.0396 4 5 tcp 1000 ------- 0 0.0 5.0 16 158 + 1.04 2 3 cbr 1000 ------- 1 2.0 7.0 47 186 - 1.04 2 3 cbr 1000 ------- 1 2.0 7.0 47 186 + 1.04 1 3 cbr 500 ------- 1 1.0 6.0 99 187 - 1.04 1 3 cbr 500 ------- 1 1.0 6.0 99 187 r 1.04125 0 3 tcp 1000 ------- 0 0.0 5.0 23 182 + 1.04125 3 4 tcp 1000 ------- 0 0.0 5.0 23 182 - 1.0416 3 4 tcp 1000 ------- 0 0.0 5.0 19 169 r 1.0436 3 4 cbr 500 ------- 1 1.0 6.0 86 157 + 1.0436 4 6 cbr 500 ------- 1 1.0 6.0 86 157 - 1.0436 4 6 cbr 500 ------- 1 1.0 6.0 86 157 r 1.0436 4 7 cbr 1000 ------- 1 2.0 7.0 39 150 r 1.0436 4 6 cbr 500 ------- 1 1.0 6.0 84 153 r 1.044 1 3 cbr 500 ------- 1 1.0 6.0 97 184 + 1.044 3 4 cbr 500 ------- 1 1.0 6.0 97 184 r 1.0476 3 4 cbr 500 ------- 1 1.0 6.0 87 161 + 1.0476 4 6 cbr 500 ------- 1 1.0 6.0 87 161 r 1.0476 4 6 cbr 500 ------- 1 1.0 6.0 85 155 - 1.0476 4 6 cbr 500 ------- 1 1.0 6.0 87 161 r 1.048 2 3 cbr 1000 ------- 1 2.0 7.0 46 183 + 1.048 3 4 cbr 1000 ------- 1 2.0 7.0 46 183 d 1.048 3 4 cbr 1000 ------- 1 2.0 7.0 46 183 - 1.0496 3 4 cbr 500 ------- 1 1.0 6.0 91 171 + 1.05 1 3 cbr 500 ------- 1 1.0 6.0 100 188 - 1.05 1 3 cbr 500 ------- 1 1.0 6.0 100 188 - 1.0536 3 4 cbr 1000 ------- 1 2.0 7.0 43 170 r 1.054 1 3 cbr 500 ------- 1 1.0 6.0 98 185 + 1.054 3 4 cbr 500 ------- 1 1.0 6.0 98 185 r 1.0556 3 4 tcp 1000 ------- 0 0.0 5.0 17 162 + 1.0556 4 5 tcp 1000 ------- 0 0.0 5.0 17 162 - 1.0556 4 5 tcp 1000 ------- 0 0.0 5.0 17 162 r 1.0596 4 7 cbr 1000 ------- 1 2.0 7.0 40 154 + 1.06 2 3 cbr 1000 ------- 1 2.0 7.0 48 189 - 1.06 2 3 cbr 1000 ------- 1 2.0 7.0 48 189 + 1.06 1 3 cbr 500 ------- 1 1.0 6.0 101 190 - 1.06 1 3 cbr 500 ------- 1 1.0 6.0 101 190 r 1.0612 4 5 tcp 1000 ------- 0 0.0 5.0 16 158 + 1.0612 5 4 ack 40 ------- 0 5.0 0.0 16 191 - 1.0612 5 4 ack 40 ------- 0 5.0 0.0 16 191 - 1.0616 3 4 cbr 500 ------- 1 1.0 6.0 92 172 r 1.0636 3 4 cbr 1000 ------- 1 2.0 7.0 41 160 + 1.0636 4 7 cbr 1000 ------- 1 2.0 7.0 41 160 - 1.0636 4 7 cbr 1000 ------- 1 2.0 7.0 41 160 r 1.064 1 3 cbr 500 ------- 1 1.0 6.0 99 187 + 1.064 3 4 cbr 500 ------- 1 1.0 6.0 99 187 - 1.0656 3 4 tcp 1000 ------- 0 0.0 5.0 20 173 r 1.0676 3 4 cbr 500 ------- 1 1.0 6.0 88 164 + 1.0676 4 6 cbr 500 ------- 1 1.0 6.0 88 164 - 1.0676 4 6 cbr 500 ------- 1 1.0 6.0 88 164 r 1.0676 4 6 cbr 500 ------- 1 1.0 6.0 86 157 r 1.068 2 3 cbr 1000 ------- 1 2.0 7.0 47 186 + 1.068 3 4 cbr 1000 ------- 1 2.0 7.0 47 186 + 1.07 1 3 cbr 500 ------- 1 1.0 6.0 102 192 - 1.07 1 3 cbr 500 ------- 1 1.0 6.0 102 192 r 1.0716 3 4 cbr 500 ------- 1 1.0 6.0 89 166 + 1.0716 4 6 cbr 500 ------- 1 1.0 6.0 89 166 r 1.0716 4 6 cbr 500 ------- 1 1.0 6.0 87 161 - 1.0716 4 6 cbr 500 ------- 1 1.0 6.0 89 166 - 1.0736 3 4 cbr 500 ------- 1 1.0 6.0 93 175 r 1.074 1 3 cbr 500 ------- 1 1.0 6.0 100 188 + 1.074 3 4 cbr 500 ------- 1 1.0 6.0 100 188 r 1.0772 4 5 tcp 1000 ------- 0 0.0 5.0 17 162 + 1.0772 5 4 ack 40 ------- 0 5.0 0.0 17 193 - 1.0772 5 4 ack 40 ------- 0 5.0 0.0 17 193 - 1.0776 3 4 cbr 1000 ------- 1 2.0 7.0 44 174 r 1.0796 3 4 tcp 1000 ------- 0 0.0 5.0 18 167 + 1.0796 4 5 tcp 1000 ------- 0 0.0 5.0 18 167 - 1.0796 4 5 tcp 1000 ------- 0 0.0 5.0 18 167 + 1.08 2 3 cbr 1000 ------- 1 2.0 7.0 49 194 - 1.08 2 3 cbr 1000 ------- 1 2.0 7.0 49 194 + 1.08 1 3 cbr 500 ------- 1 1.0 6.0 103 195 - 1.08 1 3 cbr 500 ------- 1 1.0 6.0 103 195 r 1.08126 5 4 ack 40 ------- 0 5.0 0.0 16 191 + 1.08126 4 3 ack 40 ------- 0 5.0 0.0 16 191 - 1.08126 4 3 ack 40 ------- 0 5.0 0.0 16 191 r 1.084 1 3 cbr 500 ------- 1 1.0 6.0 101 190 + 1.084 3 4 cbr 500 ------- 1 1.0 6.0 101 190 - 1.0856 3 4 tcp 1000 ------- 0 0.0 5.0 21 177 r 1.0876 3 4 cbr 1000 ------- 1 2.0 7.0 42 165 + 1.0876 4 7 cbr 1000 ------- 1 2.0 7.0 42 165 - 1.0876 4 7 cbr 1000 ------- 1 2.0 7.0 42 165 r 1.088 2 3 cbr 1000 ------- 1 2.0 7.0 48 189 + 1.088 3 4 cbr 1000 ------- 1 2.0 7.0 48 189 + 1.09 1 3 cbr 500 ------- 1 1.0 6.0 104 196 - 1.09 1 3 cbr 500 ------- 1 1.0 6.0 104 196 r 1.0916 3 4 cbr 500 ------- 1 1.0 6.0 90 168 + 1.0916 4 6 cbr 500 ------- 1 1.0 6.0 90 168 - 1.0916 4 6 cbr 500 ------- 1 1.0 6.0 90 168 r 1.0916 4 7 cbr 1000 ------- 1 2.0 7.0 41 160 r 1.0916 4 6 cbr 500 ------- 1 1.0 6.0 88 164 - 1.0936 3 4 cbr 500 ------- 1 1.0 6.0 94 176 r 1.094 1 3 cbr 500 ------- 1 1.0 6.0 102 192 + 1.094 3 4 cbr 500 ------- 1 1.0 6.0 102 192 r 1.0956 4 6 cbr 500 ------- 1 1.0 6.0 89 166 r 1.09726 5 4 ack 40 ------- 0 5.0 0.0 17 193 + 1.09726 4 3 ack 40 ------- 0 5.0 0.0 17 193 - 1.09726 4 3 ack 40 ------- 0 5.0 0.0 17 193 - 1.0976 3 4 cbr 500 ------- 1 1.0 6.0 95 179 r 1.0996 3 4 tcp 1000 ------- 0 0.0 5.0 19 169 + 1.0996 4 5 tcp 1000 ------- 0 0.0 5.0 19 169 - 1.0996 4 5 tcp 1000 ------- 0 0.0 5.0 19 169 + 1.1 2 3 cbr 1000 ------- 1 2.0 7.0 50 197 - 1.1 2 3 cbr 1000 ------- 1 2.0 7.0 50 197 + 1.1 1 3 cbr 500 ------- 1 1.0 6.0 105 198 - 1.1 1 3 cbr 500 ------- 1 1.0 6.0 105 198 r 1.1012 4 5 tcp 1000 ------- 0 0.0 5.0 18 167 + 1.1012 5 4 ack 40 ------- 0 5.0 0.0 18 199 - 1.1012 5 4 ack 40 ------- 0 5.0 0.0 18 199 - 1.1016 3 4 cbr 1000 ------- 1 2.0 7.0 45 178 r 1.1036 3 4 cbr 500 ------- 1 1.0 6.0 91 171 + 1.1036 4 6 cbr 500 ------- 1 1.0 6.0 91 171 - 1.1036 4 6 cbr 500 ------- 1 1.0 6.0 91 171 r 1.104 1 3 cbr 500 ------- 1 1.0 6.0 103 195 + 1.104 3 4 cbr 500 ------- 1 1.0 6.0 103 195 r 1.108 2 3 cbr 1000 ------- 1 2.0 7.0 49 194 + 1.108 3 4 cbr 1000 ------- 1 2.0 7.0 49 194 - 1.1096 3 4 tcp 1000 ------- 0 0.0 5.0 22 180 + 1.11 1 3 cbr 500 ------- 1 1.0 6.0 106 200 - 1.11 1 3 cbr 500 ------- 1 1.0 6.0 106 200 r 1.1116 3 4 cbr 1000 ------- 1 2.0 7.0 43 170 + 1.1116 4 7 cbr 1000 ------- 1 2.0 7.0 43 170 - 1.1116 4 7 cbr 1000 ------- 1 2.0 7.0 43 170 r 1.114 1 3 cbr 500 ------- 1 1.0 6.0 104 196 + 1.114 3 4 cbr 500 ------- 1 1.0 6.0 104 196 r 1.1156 3 4 cbr 500 ------- 1 1.0 6.0 92 172 + 1.1156 4 6 cbr 500 ------- 1 1.0 6.0 92 172 - 1.1156 4 6 cbr 500 ------- 1 1.0 6.0 92 172 r 1.1156 4 7 cbr 1000 ------- 1 2.0 7.0 42 165 r 1.1156 4 6 cbr 500 ------- 1 1.0 6.0 90 168 - 1.1176 3 4 cbr 500 ------- 1 1.0 6.0 96 181 + 1.12 2 3 cbr 1000 ------- 1 2.0 7.0 51 201 - 1.12 2 3 cbr 1000 ------- 1 2.0 7.0 51 201 + 1.12 1 3 cbr 500 ------- 1 1.0 6.0 107 202 - 1.12 1 3 cbr 500 ------- 1 1.0 6.0 107 202 r 1.1212 4 5 tcp 1000 ------- 0 0.0 5.0 19 169 + 1.1212 5 4 ack 40 ------- 0 5.0 0.0 19 203 - 1.1212 5 4 ack 40 ------- 0 5.0 0.0 19 203 r 1.12126 5 4 ack 40 ------- 0 5.0 0.0 18 199 + 1.12126 4 3 ack 40 ------- 0 5.0 0.0 18 199 - 1.12126 4 3 ack 40 ------- 0 5.0 0.0 18 199 - 1.1216 3 4 tcp 1000 ------- 0 0.0 5.0 23 182 r 1.1236 3 4 tcp 1000 ------- 0 0.0 5.0 20 173 + 1.1236 4 5 tcp 1000 ------- 0 0.0 5.0 20 173 - 1.1236 4 5 tcp 1000 ------- 0 0.0 5.0 20 173 r 1.124 1 3 cbr 500 ------- 1 1.0 6.0 105 198 + 1.124 3 4 cbr 500 ------- 1 1.0 6.0 105 198 r 1.1276 3 4 cbr 500 ------- 1 1.0 6.0 93 175 + 1.1276 4 6 cbr 500 ------- 1 1.0 6.0 93 175 - 1.1276 4 6 cbr 500 ------- 1 1.0 6.0 93 175 r 1.1276 4 6 cbr 500 ------- 1 1.0 6.0 91 171 r 1.128 2 3 cbr 1000 ------- 1 2.0 7.0 50 197 + 1.128 3 4 cbr 1000 ------- 1 2.0 7.0 50 197 - 1.1296 3 4 cbr 500 ------- 1 1.0 6.0 97 184 + 1.13 1 3 cbr 500 ------- 1 1.0 6.0 108 204 - 1.13 1 3 cbr 500 ------- 1 1.0 6.0 108 204 r 1.13158 4 3 ack 40 ------- 0 5.0 0.0 16 191 + 1.13158 3 0 ack 40 ------- 0 5.0 0.0 16 191 - 1.13158 3 0 ack 40 ------- 0 5.0 0.0 16 191 - 1.1336 3 4 cbr 500 ------- 1 1.0 6.0 98 185 r 1.134 1 3 cbr 500 ------- 1 1.0 6.0 106 200 + 1.134 3 4 cbr 500 ------- 1 1.0 6.0 106 200 r 1.1356 3 4 cbr 1000 ------- 1 2.0 7.0 44 174 + 1.1356 4 7 cbr 1000 ------- 1 2.0 7.0 44 174 - 1.1356 4 7 cbr 1000 ------- 1 2.0 7.0 44 174 - 1.1376 3 4 cbr 500 ------- 1 1.0 6.0 99 187 r 1.1396 4 7 cbr 1000 ------- 1 2.0 7.0 43 170 r 1.1396 4 6 cbr 500 ------- 1 1.0 6.0 92 172 + 1.14 2 3 cbr 1000 ------- 1 2.0 7.0 52 205 - 1.14 2 3 cbr 1000 ------- 1 2.0 7.0 52 205 + 1.14 1 3 cbr 500 ------- 1 1.0 6.0 109 206 - 1.14 1 3 cbr 500 ------- 1 1.0 6.0 109 206 r 1.14126 5 4 ack 40 ------- 0 5.0 0.0 19 203 + 1.14126 4 3 ack 40 ------- 0 5.0 0.0 19 203 - 1.14126 4 3 ack 40 ------- 0 5.0 0.0 19 203 - 1.1416 3 4 cbr 1000 ------- 1 2.0 7.0 47 186 r 1.1436 3 4 tcp 1000 ------- 0 0.0 5.0 21 177 + 1.1436 4 5 tcp 1000 ------- 0 0.0 5.0 21 177 - 1.1436 4 5 tcp 1000 ------- 0 0.0 5.0 21 177 r 1.144 1 3 cbr 500 ------- 1 1.0 6.0 107 202 + 1.144 3 4 cbr 500 ------- 1 1.0 6.0 107 202 r 1.1452 4 5 tcp 1000 ------- 0 0.0 5.0 20 173 + 1.1452 5 4 ack 40 ------- 0 5.0 0.0 20 207 - 1.1452 5 4 ack 40 ------- 0 5.0 0.0 20 207 r 1.14758 4 3 ack 40 ------- 0 5.0 0.0 17 193 + 1.14758 3 0 ack 40 ------- 0 5.0 0.0 17 193 - 1.14758 3 0 ack 40 ------- 0 5.0 0.0 17 193 r 1.1476 3 4 cbr 500 ------- 1 1.0 6.0 94 176 + 1.1476 4 6 cbr 500 ------- 1 1.0 6.0 94 176 - 1.1476 4 6 cbr 500 ------- 1 1.0 6.0 94 176 r 1.148 2 3 cbr 1000 ------- 1 2.0 7.0 51 201 + 1.148 3 4 cbr 1000 ------- 1 2.0 7.0 51 201 - 1.1496 3 4 cbr 500 ------- 1 1.0 6.0 100 188 + 1.15 1 3 cbr 500 ------- 1 1.0 6.0 110 208 - 1.15 1 3 cbr 500 ------- 1 1.0 6.0 110 208 r 1.1516 3 4 cbr 500 ------- 1 1.0 6.0 95 179 + 1.1516 4 6 cbr 500 ------- 1 1.0 6.0 95 179 r 1.1516 4 6 cbr 500 ------- 1 1.0 6.0 93 175 - 1.1516 4 6 cbr 500 ------- 1 1.0 6.0 95 179 r 1.15165 3 0 ack 40 ------- 0 5.0 0.0 16 191 + 1.15165 0 3 tcp 1000 ------- 0 0.0 5.0 24 209 - 1.15165 0 3 tcp 1000 ------- 0 0.0 5.0 24 209 - 1.1536 3 4 cbr 500 ------- 1 1.0 6.0 101 190 r 1.154 1 3 cbr 500 ------- 1 1.0 6.0 108 204 + 1.154 3 4 cbr 500 ------- 1 1.0 6.0 108 204 - 1.1576 3 4 cbr 1000 ------- 1 2.0 7.0 48 189 r 1.1596 3 4 cbr 1000 ------- 1 2.0 7.0 45 178 + 1.1596 4 7 cbr 1000 ------- 1 2.0 7.0 45 178 - 1.1596 4 7 cbr 1000 ------- 1 2.0 7.0 45 178 + 1.16 2 3 cbr 1000 ------- 1 2.0 7.0 53 210 - 1.16 2 3 cbr 1000 ------- 1 2.0 7.0 53 210 + 1.16 1 3 cbr 500 ------- 1 1.0 6.0 111 211 - 1.16 1 3 cbr 500 ------- 1 1.0 6.0 111 211 r 1.1636 4 7 cbr 1000 ------- 1 2.0 7.0 44 174 r 1.164 1 3 cbr 500 ------- 1 1.0 6.0 109 206 + 1.164 3 4 cbr 500 ------- 1 1.0 6.0 109 206 r 1.1652 4 5 tcp 1000 ------- 0 0.0 5.0 21 177 + 1.1652 5 4 ack 40 ------- 0 5.0 0.0 21 212 - 1.1652 5 4 ack 40 ------- 0 5.0 0.0 21 212 r 1.16526 5 4 ack 40 ------- 0 5.0 0.0 20 207 + 1.16526 4 3 ack 40 ------- 0 5.0 0.0 20 207 - 1.16526 4 3 ack 40 ------- 0 5.0 0.0 20 207 - 1.1656 3 4 cbr 500 ------- 1 1.0 6.0 102 192 r 1.1676 3 4 tcp 1000 ------- 0 0.0 5.0 22 180 + 1.1676 4 5 tcp 1000 ------- 0 0.0 5.0 22 180 - 1.1676 4 5 tcp 1000 ------- 0 0.0 5.0 22 180 r 1.16765 3 0 ack 40 ------- 0 5.0 0.0 17 193 + 1.16765 0 3 tcp 1000 ------- 0 0.0 5.0 25 213 - 1.16765 0 3 tcp 1000 ------- 0 0.0 5.0 25 213 r 1.168 2 3 cbr 1000 ------- 1 2.0 7.0 52 205 + 1.168 3 4 cbr 1000 ------- 1 2.0 7.0 52 205 - 1.1696 3 4 cbr 500 ------- 1 1.0 6.0 103 195 + 1.17 1 3 cbr 500 ------- 1 1.0 6.0 112 214 - 1.17 1 3 cbr 500 ------- 1 1.0 6.0 112 214 r 1.17158 4 3 ack 40 ------- 0 5.0 0.0 18 199 + 1.17158 3 0 ack 40 ------- 0 5.0 0.0 18 199 - 1.17158 3 0 ack 40 ------- 0 5.0 0.0 18 199 r 1.1716 3 4 cbr 500 ------- 1 1.0 6.0 96 181 + 1.1716 4 6 cbr 500 ------- 1 1.0 6.0 96 181 - 1.1716 4 6 cbr 500 ------- 1 1.0 6.0 96 181 r 1.1716 4 6 cbr 500 ------- 1 1.0 6.0 94 176 r 1.17325 0 3 tcp 1000 ------- 0 0.0 5.0 24 209 + 1.17325 3 4 tcp 1000 ------- 0 0.0 5.0 24 209 - 1.1736 3 4 cbr 1000 ------- 1 2.0 7.0 49 194 r 1.174 1 3 cbr 500 ------- 1 1.0 6.0 110 208 + 1.174 3 4 cbr 500 ------- 1 1.0 6.0 110 208 r 1.1756 4 6 cbr 500 ------- 1 1.0 6.0 95 179 r 1.1796 3 4 tcp 1000 ------- 0 0.0 5.0 23 182 + 1.1796 4 5 tcp 1000 ------- 0 0.0 5.0 23 182 - 1.1796 4 5 tcp 1000 ------- 0 0.0 5.0 23 182 + 1.18 2 3 cbr 1000 ------- 1 2.0 7.0 54 215 - 1.18 2 3 cbr 1000 ------- 1 2.0 7.0 54 215 + 1.18 1 3 cbr 500 ------- 1 1.0 6.0 113 216 - 1.18 1 3 cbr 500 ------- 1 1.0 6.0 113 216 - 1.1816 3 4 cbr 500 ------- 1 1.0 6.0 104 196 r 1.1836 3 4 cbr 500 ------- 1 1.0 6.0 97 184 + 1.1836 4 6 cbr 500 ------- 1 1.0 6.0 97 184 - 1.1836 4 6 cbr 500 ------- 1 1.0 6.0 97 184 r 1.184 1 3 cbr 500 ------- 1 1.0 6.0 111 211 + 1.184 3 4 cbr 500 ------- 1 1.0 6.0 111 211 r 1.18526 5 4 ack 40 ------- 0 5.0 0.0 21 212 + 1.18526 4 3 ack 40 ------- 0 5.0 0.0 21 212 - 1.18526 4 3 ack 40 ------- 0 5.0 0.0 21 212 - 1.1856 3 4 cbr 500 ------- 1 1.0 6.0 105 198 r 1.1876 3 4 cbr 500 ------- 1 1.0 6.0 98 185 + 1.1876 4 6 cbr 500 ------- 1 1.0 6.0 98 185 r 1.1876 4 7 cbr 1000 ------- 1 2.0 7.0 45 178 - 1.1876 4 6 cbr 500 ------- 1 1.0 6.0 98 185 r 1.188 2 3 cbr 1000 ------- 1 2.0 7.0 53 210 + 1.188 3 4 cbr 1000 ------- 1 2.0 7.0 53 210 r 1.1892 4 5 tcp 1000 ------- 0 0.0 5.0 22 180 + 1.1892 5 4 ack 40 ------- 0 5.0 0.0 22 217 - 1.1892 5 4 ack 40 ------- 0 5.0 0.0 22 217 r 1.18925 0 3 tcp 1000 ------- 0 0.0 5.0 25 213 + 1.18925 3 4 tcp 1000 ------- 0 0.0 5.0 25 213 - 1.1896 3 4 cbr 1000 ------- 1 2.0 7.0 50 197 + 1.19 1 3 cbr 500 ------- 1 1.0 6.0 114 218 - 1.19 1 3 cbr 500 ------- 1 1.0 6.0 114 218 r 1.19158 4 3 ack 40 ------- 0 5.0 0.0 19 203 + 1.19158 3 0 ack 40 ------- 0 5.0 0.0 19 203 - 1.19158 3 0 ack 40 ------- 0 5.0 0.0 19 203 r 1.1916 3 4 cbr 500 ------- 1 1.0 6.0 99 187 + 1.1916 4 6 cbr 500 ------- 1 1.0 6.0 99 187 - 1.1916 4 6 cbr 500 ------- 1 1.0 6.0 99 187 r 1.19165 3 0 ack 40 ------- 0 5.0 0.0 18 199 + 1.19165 0 3 tcp 1000 ------- 0 0.0 5.0 26 219 - 1.19165 0 3 tcp 1000 ------- 0 0.0 5.0 26 219 r 1.194 1 3 cbr 500 ------- 1 1.0 6.0 112 214 + 1.194 3 4 cbr 500 ------- 1 1.0 6.0 112 214 r 1.1956 4 6 cbr 500 ------- 1 1.0 6.0 96 181 - 1.1976 3 4 cbr 500 ------- 1 1.0 6.0 106 200 r 1.1996 3 4 cbr 1000 ------- 1 2.0 7.0 47 186 + 1.1996 4 7 cbr 1000 ------- 1 2.0 7.0 47 186 - 1.1996 4 7 cbr 1000 ------- 1 2.0 7.0 47 186 + 1.2 2 3 cbr 1000 ------- 1 2.0 7.0 55 220 - 1.2 2 3 cbr 1000 ------- 1 2.0 7.0 55 220 + 1.2 1 3 cbr 500 ------- 1 1.0 6.0 115 221 - 1.2 1 3 cbr 500 ------- 1 1.0 6.0 115 221 r 1.2012 4 5 tcp 1000 ------- 0 0.0 5.0 23 182 + 1.2012 5 4 ack 40 ------- 0 5.0 0.0 23 222 - 1.2012 5 4 ack 40 ------- 0 5.0 0.0 23 222 - 1.2016 3 4 cbr 500 ------- 1 1.0 6.0 107 202 r 1.2036 3 4 cbr 500 ------- 1 1.0 6.0 100 188 + 1.2036 4 6 cbr 500 ------- 1 1.0 6.0 100 188 - 1.2036 4 6 cbr 500 ------- 1 1.0 6.0 100 188 r 1.204 1 3 cbr 500 ------- 1 1.0 6.0 113 216 + 1.204 3 4 cbr 500 ------- 1 1.0 6.0 113 216 - 1.2056 3 4 cbr 1000 ------- 1 2.0 7.0 51 201 r 1.2076 3 4 cbr 500 ------- 1 1.0 6.0 101 190 + 1.2076 4 6 cbr 500 ------- 1 1.0 6.0 101 190 r 1.2076 4 6 cbr 500 ------- 1 1.0 6.0 97 184 - 1.2076 4 6 cbr 500 ------- 1 1.0 6.0 101 190 r 1.208 2 3 cbr 1000 ------- 1 2.0 7.0 54 215 + 1.208 3 4 cbr 1000 ------- 1 2.0 7.0 54 215 r 1.20926 5 4 ack 40 ------- 0 5.0 0.0 22 217 + 1.20926 4 3 ack 40 ------- 0 5.0 0.0 22 217 - 1.20926 4 3 ack 40 ------- 0 5.0 0.0 22 217 + 1.21 1 3 cbr 500 ------- 1 1.0 6.0 116 223 - 1.21 1 3 cbr 500 ------- 1 1.0 6.0 116 223 r 1.2116 4 6 cbr 500 ------- 1 1.0 6.0 98 185 r 1.21165 3 0 ack 40 ------- 0 5.0 0.0 19 203 + 1.21165 0 3 tcp 1000 ------- 0 0.0 5.0 27 224 - 1.21165 0 3 tcp 1000 ------- 0 0.0 5.0 27 224 r 1.21325 0 3 tcp 1000 ------- 0 0.0 5.0 26 219 + 1.21325 3 4 tcp 1000 ------- 0 0.0 5.0 26 219 - 1.2136 3 4 cbr 500 ------- 1 1.0 6.0 108 204 r 1.214 1 3 cbr 500 ------- 1 1.0 6.0 114 218 + 1.214 3 4 cbr 500 ------- 1 1.0 6.0 114 218 r 1.21558 4 3 ack 40 ------- 0 5.0 0.0 20 207 + 1.21558 3 0 ack 40 ------- 0 5.0 0.0 20 207 - 1.21558 3 0 ack 40 ------- 0 5.0 0.0 20 207 r 1.2156 3 4 cbr 1000 ------- 1 2.0 7.0 48 189 + 1.2156 4 7 cbr 1000 ------- 1 2.0 7.0 48 189 - 1.2156 4 7 cbr 1000 ------- 1 2.0 7.0 48 189 r 1.2156 4 6 cbr 500 ------- 1 1.0 6.0 99 187 - 1.2176 3 4 cbr 500 ------- 1 1.0 6.0 109 206 r 1.2196 3 4 cbr 500 ------- 1 1.0 6.0 102 192 + 1.2196 4 6 cbr 500 ------- 1 1.0 6.0 102 192 - 1.2196 4 6 cbr 500 ------- 1 1.0 6.0 102 192 + 1.22 2 3 cbr 1000 ------- 1 2.0 7.0 56 225 - 1.22 2 3 cbr 1000 ------- 1 2.0 7.0 56 225 + 1.22 1 3 cbr 500 ------- 1 1.0 6.0 117 226 - 1.22 1 3 cbr 500 ------- 1 1.0 6.0 117 226 r 1.22126 5 4 ack 40 ------- 0 5.0 0.0 23 222 + 1.22126 4 3 ack 40 ------- 0 5.0 0.0 23 222 - 1.22126 4 3 ack 40 ------- 0 5.0 0.0 23 222 - 1.2216 3 4 cbr 1000 ------- 1 2.0 7.0 52 205 r 1.2236 3 4 cbr 500 ------- 1 1.0 6.0 103 195 + 1.2236 4 6 cbr 500 ------- 1 1.0 6.0 103 195 - 1.2236 4 6 cbr 500 ------- 1 1.0 6.0 103 195 r 1.224 1 3 cbr 500 ------- 1 1.0 6.0 115 221 + 1.224 3 4 cbr 500 ------- 1 1.0 6.0 115 221 r 1.2276 4 7 cbr 1000 ------- 1 2.0 7.0 47 186 r 1.2276 4 6 cbr 500 ------- 1 1.0 6.0 100 188 r 1.228 2 3 cbr 1000 ------- 1 2.0 7.0 55 220 + 1.228 3 4 cbr 1000 ------- 1 2.0 7.0 55 220 - 1.2296 3 4 tcp 1000 ------- 0 0.0 5.0 24 209 + 1.23 1 3 cbr 500 ------- 1 1.0 6.0 118 227 - 1.23 1 3 cbr 500 ------- 1 1.0 6.0 118 227 r 1.2316 3 4 cbr 1000 ------- 1 2.0 7.0 49 194 + 1.2316 4 7 cbr 1000 ------- 1 2.0 7.0 49 194 - 1.2316 4 7 cbr 1000 ------- 1 2.0 7.0 49 194 r 1.2316 4 6 cbr 500 ------- 1 1.0 6.0 101 190 r 1.23325 0 3 tcp 1000 ------- 0 0.0 5.0 27 224 + 1.23325 3 4 tcp 1000 ------- 0 0.0 5.0 27 224 r 1.234 1 3 cbr 500 ------- 1 1.0 6.0 116 223 + 1.234 3 4 cbr 500 ------- 1 1.0 6.0 116 223 r 1.23558 4 3 ack 40 ------- 0 5.0 0.0 21 212 + 1.23558 3 0 ack 40 ------- 0 5.0 0.0 21 212 - 1.23558 3 0 ack 40 ------- 0 5.0 0.0 21 212 r 1.2356 3 4 cbr 500 ------- 1 1.0 6.0 104 196 + 1.2356 4 6 cbr 500 ------- 1 1.0 6.0 104 196 - 1.2356 4 6 cbr 500 ------- 1 1.0 6.0 104 196 r 1.23565 3 0 ack 40 ------- 0 5.0 0.0 20 207 + 1.23565 0 3 tcp 1000 ------- 0 0.0 5.0 28 228 - 1.23565 0 3 tcp 1000 ------- 0 0.0 5.0 28 228 - 1.2376 3 4 cbr 500 ------- 1 1.0 6.0 110 208 r 1.2396 3 4 cbr 500 ------- 1 1.0 6.0 105 198 + 1.2396 4 6 cbr 500 ------- 1 1.0 6.0 105 198 - 1.2396 4 6 cbr 500 ------- 1 1.0 6.0 105 198 + 1.24 2 3 cbr 1000 ------- 1 2.0 7.0 57 229 - 1.24 2 3 cbr 1000 ------- 1 2.0 7.0 57 229 + 1.24 1 3 cbr 500 ------- 1 1.0 6.0 119 230 - 1.24 1 3 cbr 500 ------- 1 1.0 6.0 119 230 - 1.2416 3 4 cbr 500 ------- 1 1.0 6.0 111 211 r 1.2436 4 7 cbr 1000 ------- 1 2.0 7.0 48 189 r 1.2436 4 6 cbr 500 ------- 1 1.0 6.0 102 192 r 1.244 1 3 cbr 500 ------- 1 1.0 6.0 117 226 + 1.244 3 4 cbr 500 ------- 1 1.0 6.0 117 226 - 1.2456 3 4 cbr 1000 ------- 1 2.0 7.0 53 210 r 1.2476 3 4 cbr 1000 ------- 1 2.0 7.0 50 197 + 1.2476 4 7 cbr 1000 ------- 1 2.0 7.0 50 197 - 1.2476 4 7 cbr 1000 ------- 1 2.0 7.0 50 197 r 1.2476 4 6 cbr 500 ------- 1 1.0 6.0 103 195 r 1.248 2 3 cbr 1000 ------- 1 2.0 7.0 56 225 + 1.248 3 4 cbr 1000 ------- 1 2.0 7.0 56 225 + 1.25 1 3 cbr 500 ------- 1 1.0 6.0 120 231 - 1.25 1 3 cbr 500 ------- 1 1.0 6.0 120 231 r 1.2516 3 4 cbr 500 ------- 1 1.0 6.0 106 200 + 1.2516 4 6 cbr 500 ------- 1 1.0 6.0 106 200 - 1.2516 4 6 cbr 500 ------- 1 1.0 6.0 106 200 - 1.2536 3 4 tcp 1000 ------- 0 0.0 5.0 25 213 r 1.254 1 3 cbr 500 ------- 1 1.0 6.0 118 227 + 1.254 3 4 cbr 500 ------- 1 1.0 6.0 118 227 r 1.2556 3 4 cbr 500 ------- 1 1.0 6.0 107 202 + 1.2556 4 6 cbr 500 ------- 1 1.0 6.0 107 202 - 1.2556 4 6 cbr 500 ------- 1 1.0 6.0 107 202 r 1.25565 3 0 ack 40 ------- 0 5.0 0.0 21 212 + 1.25565 0 3 tcp 1000 ------- 0 0.0 5.0 29 232 - 1.25565 0 3 tcp 1000 ------- 0 0.0 5.0 29 232 r 1.25725 0 3 tcp 1000 ------- 0 0.0 5.0 28 228 + 1.25725 3 4 tcp 1000 ------- 0 0.0 5.0 28 228 r 1.25958 4 3 ack 40 ------- 0 5.0 0.0 22 217 + 1.25958 3 0 ack 40 ------- 0 5.0 0.0 22 217 - 1.25958 3 0 ack 40 ------- 0 5.0 0.0 22 217 r 1.2596 4 7 cbr 1000 ------- 1 2.0 7.0 49 194 r 1.2596 4 6 cbr 500 ------- 1 1.0 6.0 104 196 + 1.26 2 3 cbr 1000 ------- 1 2.0 7.0 58 233 - 1.26 2 3 cbr 1000 ------- 1 2.0 7.0 58 233 + 1.26 1 3 cbr 500 ------- 1 1.0 6.0 121 234 - 1.26 1 3 cbr 500 ------- 1 1.0 6.0 121 234 - 1.2616 3 4 cbr 500 ------- 1 1.0 6.0 112 214 r 1.2636 3 4 cbr 1000 ------- 1 2.0 7.0 51 201 + 1.2636 4 7 cbr 1000 ------- 1 2.0 7.0 51 201 - 1.2636 4 7 cbr 1000 ------- 1 2.0 7.0 51 201 r 1.2636 4 6 cbr 500 ------- 1 1.0 6.0 105 198 r 1.264 1 3 cbr 500 ------- 1 1.0 6.0 119 230 + 1.264 3 4 cbr 500 ------- 1 1.0 6.0 119 230 - 1.2656 3 4 cbr 500 ------- 1 1.0 6.0 113 216 r 1.2676 3 4 cbr 500 ------- 1 1.0 6.0 108 204 + 1.2676 4 6 cbr 500 ------- 1 1.0 6.0 108 204 - 1.2676 4 6 cbr 500 ------- 1 1.0 6.0 108 204 r 1.268 2 3 cbr 1000 ------- 1 2.0 7.0 57 229 + 1.268 3 4 cbr 1000 ------- 1 2.0 7.0 57 229 - 1.2696 3 4 cbr 1000 ------- 1 2.0 7.0 54 215 + 1.27 1 3 cbr 500 ------- 1 1.0 6.0 122 235 - 1.27 1 3 cbr 500 ------- 1 1.0 6.0 122 235 r 1.27158 4 3 ack 40 ------- 0 5.0 0.0 23 222 + 1.27158 3 0 ack 40 ------- 0 5.0 0.0 23 222 - 1.27158 3 0 ack 40 ------- 0 5.0 0.0 23 222 r 1.2716 3 4 cbr 500 ------- 1 1.0 6.0 109 206 + 1.2716 4 6 cbr 500 ------- 1 1.0 6.0 109 206 - 1.2716 4 6 cbr 500 ------- 1 1.0 6.0 109 206 r 1.274 1 3 cbr 500 ------- 1 1.0 6.0 120 231 + 1.274 3 4 cbr 500 ------- 1 1.0 6.0 120 231 r 1.2756 4 7 cbr 1000 ------- 1 2.0 7.0 50 197 r 1.2756 4 6 cbr 500 ------- 1 1.0 6.0 106 200 r 1.27725 0 3 tcp 1000 ------- 0 0.0 5.0 29 232 + 1.27725 3 4 tcp 1000 ------- 0 0.0 5.0 29 232 - 1.2776 3 4 tcp 1000 ------- 0 0.0 5.0 26 219 r 1.2796 3 4 cbr 1000 ------- 1 2.0 7.0 52 205 + 1.2796 4 7 cbr 1000 ------- 1 2.0 7.0 52 205 - 1.2796 4 7 cbr 1000 ------- 1 2.0 7.0 52 205 r 1.2796 4 6 cbr 500 ------- 1 1.0 6.0 107 202 r 1.27965 3 0 ack 40 ------- 0 5.0 0.0 22 217 + 1.27965 0 3 tcp 1000 ------- 0 0.0 5.0 30 236 - 1.27965 0 3 tcp 1000 ------- 0 0.0 5.0 30 236 + 1.28 2 3 cbr 1000 ------- 1 2.0 7.0 59 237 - 1.28 2 3 cbr 1000 ------- 1 2.0 7.0 59 237 + 1.28 1 3 cbr 500 ------- 1 1.0 6.0 123 238 - 1.28 1 3 cbr 500 ------- 1 1.0 6.0 123 238 r 1.284 1 3 cbr 500 ------- 1 1.0 6.0 121 234 + 1.284 3 4 cbr 500 ------- 1 1.0 6.0 121 234 - 1.2856 3 4 cbr 500 ------- 1 1.0 6.0 114 218 r 1.2876 3 4 tcp 1000 ------- 0 0.0 5.0 24 209 + 1.2876 4 5 tcp 1000 ------- 0 0.0 5.0 24 209 - 1.2876 4 5 tcp 1000 ------- 0 0.0 5.0 24 209 r 1.288 2 3 cbr 1000 ------- 1 2.0 7.0 58 233 + 1.288 3 4 cbr 1000 ------- 1 2.0 7.0 58 233 - 1.2896 3 4 cbr 500 ------- 1 1.0 6.0 115 221 + 1.29 1 3 cbr 500 ------- 1 1.0 6.0 124 239 - 1.29 1 3 cbr 500 ------- 1 1.0 6.0 124 239 r 1.2916 3 4 cbr 500 ------- 1 1.0 6.0 110 208 + 1.2916 4 6 cbr 500 ------- 1 1.0 6.0 110 208 - 1.2916 4 6 cbr 500 ------- 1 1.0 6.0 110 208 r 1.2916 4 7 cbr 1000 ------- 1 2.0 7.0 51 201 r 1.2916 4 6 cbr 500 ------- 1 1.0 6.0 108 204 r 1.29165 3 0 ack 40 ------- 0 5.0 0.0 23 222 + 1.29165 0 3 tcp 1000 ------- 0 0.0 5.0 31 240 - 1.29165 0 3 tcp 1000 ------- 0 0.0 5.0 31 240 - 1.2936 3 4 cbr 1000 ------- 1 2.0 7.0 55 220 r 1.294 1 3 cbr 500 ------- 1 1.0 6.0 122 235 + 1.294 3 4 cbr 500 ------- 1 1.0 6.0 122 235 r 1.2956 3 4 cbr 500 ------- 1 1.0 6.0 111 211 + 1.2956 4 6 cbr 500 ------- 1 1.0 6.0 111 211 r 1.2956 4 6 cbr 500 ------- 1 1.0 6.0 109 206 - 1.2956 4 6 cbr 500 ------- 1 1.0 6.0 111 211 + 1.3 2 3 cbr 1000 ------- 1 2.0 7.0 60 241 - 1.3 2 3 cbr 1000 ------- 1 2.0 7.0 60 241 + 1.3 1 3 cbr 500 ------- 1 1.0 6.0 125 242 - 1.3 1 3 cbr 500 ------- 1 1.0 6.0 125 242 r 1.30125 0 3 tcp 1000 ------- 0 0.0 5.0 30 236 + 1.30125 3 4 tcp 1000 ------- 0 0.0 5.0 30 236 - 1.3016 3 4 tcp 1000 ------- 0 0.0 5.0 27 224 r 1.3036 3 4 cbr 1000 ------- 1 2.0 7.0 53 210 + 1.3036 4 7 cbr 1000 ------- 1 2.0 7.0 53 210 - 1.3036 4 7 cbr 1000 ------- 1 2.0 7.0 53 210 r 1.304 1 3 cbr 500 ------- 1 1.0 6.0 123 238 + 1.304 3 4 cbr 500 ------- 1 1.0 6.0 123 238 r 1.3076 4 7 cbr 1000 ------- 1 2.0 7.0 52 205 r 1.308 2 3 cbr 1000 ------- 1 2.0 7.0 59 237 + 1.308 3 4 cbr 1000 ------- 1 2.0 7.0 59 237 d 1.308 3 4 cbr 1000 ------- 1 2.0 7.0 59 237 r 1.3092 4 5 tcp 1000 ------- 0 0.0 5.0 24 209 + 1.3092 5 4 ack 40 ------- 0 5.0 0.0 24 243 - 1.3092 5 4 ack 40 ------- 0 5.0 0.0 24 243 - 1.3096 3 4 cbr 500 ------- 1 1.0 6.0 116 223 + 1.31 1 3 cbr 500 ------- 1 1.0 6.0 126 244 - 1.31 1 3 cbr 500 ------- 1 1.0 6.0 126 244 r 1.3116 3 4 tcp 1000 ------- 0 0.0 5.0 25 213 + 1.3116 4 5 tcp 1000 ------- 0 0.0 5.0 25 213 - 1.3116 4 5 tcp 1000 ------- 0 0.0 5.0 25 213 r 1.31325 0 3 tcp 1000 ------- 0 0.0 5.0 31 240 + 1.31325 3 4 tcp 1000 ------- 0 0.0 5.0 31 240 - 1.3136 3 4 cbr 500 ------- 1 1.0 6.0 117 226 r 1.314 1 3 cbr 500 ------- 1 1.0 6.0 124 239 + 1.314 3 4 cbr 500 ------- 1 1.0 6.0 124 239 r 1.3156 3 4 cbr 500 ------- 1 1.0 6.0 112 214 + 1.3156 4 6 cbr 500 ------- 1 1.0 6.0 112 214 - 1.3156 4 6 cbr 500 ------- 1 1.0 6.0 112 214 r 1.3156 4 6 cbr 500 ------- 1 1.0 6.0 110 208 - 1.3176 3 4 cbr 1000 ------- 1 2.0 7.0 56 225 r 1.3196 3 4 cbr 500 ------- 1 1.0 6.0 113 216 + 1.3196 4 6 cbr 500 ------- 1 1.0 6.0 113 216 r 1.3196 4 6 cbr 500 ------- 1 1.0 6.0 111 211 - 1.3196 4 6 cbr 500 ------- 1 1.0 6.0 113 216 + 1.32 2 3 cbr 1000 ------- 1 2.0 7.0 61 245 - 1.32 2 3 cbr 1000 ------- 1 2.0 7.0 61 245 + 1.32 1 3 cbr 500 ------- 1 1.0 6.0 127 246 - 1.32 1 3 cbr 500 ------- 1 1.0 6.0 127 246 r 1.324 1 3 cbr 500 ------- 1 1.0 6.0 125 242 + 1.324 3 4 cbr 500 ------- 1 1.0 6.0 125 242 - 1.3256 3 4 cbr 500 ------- 1 1.0 6.0 118 227 r 1.3276 3 4 cbr 1000 ------- 1 2.0 7.0 54 215 + 1.3276 4 7 cbr 1000 ------- 1 2.0 7.0 54 215 - 1.3276 4 7 cbr 1000 ------- 1 2.0 7.0 54 215 r 1.328 2 3 cbr 1000 ------- 1 2.0 7.0 60 241 + 1.328 3 4 cbr 1000 ------- 1 2.0 7.0 60 241 r 1.32926 5 4 ack 40 ------- 0 5.0 0.0 24 243 + 1.32926 4 3 ack 40 ------- 0 5.0 0.0 24 243 - 1.32926 4 3 ack 40 ------- 0 5.0 0.0 24 243 - 1.3296 3 4 tcp 1000 ------- 0 0.0 5.0 28 228 + 1.33 1 3 cbr 500 ------- 1 1.0 6.0 128 247 - 1.33 1 3 cbr 500 ------- 1 1.0 6.0 128 247 r 1.3316 4 7 cbr 1000 ------- 1 2.0 7.0 53 210 r 1.3332 4 5 tcp 1000 ------- 0 0.0 5.0 25 213 + 1.3332 5 4 ack 40 ------- 0 5.0 0.0 25 248 - 1.3332 5 4 ack 40 ------- 0 5.0 0.0 25 248 r 1.334 1 3 cbr 500 ------- 1 1.0 6.0 126 244 + 1.334 3 4 cbr 500 ------- 1 1.0 6.0 126 244 r 1.3356 3 4 tcp 1000 ------- 0 0.0 5.0 26 219 + 1.3356 4 5 tcp 1000 ------- 0 0.0 5.0 26 219 - 1.3356 4 5 tcp 1000 ------- 0 0.0 5.0 26 219 - 1.3376 3 4 cbr 500 ------- 1 1.0 6.0 119 230 r 1.3396 3 4 cbr 500 ------- 1 1.0 6.0 114 218 + 1.3396 4 6 cbr 500 ------- 1 1.0 6.0 114 218 - 1.3396 4 6 cbr 500 ------- 1 1.0 6.0 114 218 r 1.3396 4 6 cbr 500 ------- 1 1.0 6.0 112 214 + 1.34 2 3 cbr 1000 ------- 1 2.0 7.0 62 249 - 1.34 2 3 cbr 1000 ------- 1 2.0 7.0 62 249 + 1.34 1 3 cbr 500 ------- 1 1.0 6.0 129 250 - 1.34 1 3 cbr 500 ------- 1 1.0 6.0 129 250 - 1.3416 3 4 cbr 1000 ------- 1 2.0 7.0 57 229 r 1.3436 3 4 cbr 500 ------- 1 1.0 6.0 115 221 + 1.3436 4 6 cbr 500 ------- 1 1.0 6.0 115 221 r 1.3436 4 6 cbr 500 ------- 1 1.0 6.0 113 216 - 1.3436 4 6 cbr 500 ------- 1 1.0 6.0 115 221 r 1.344 1 3 cbr 500 ------- 1 1.0 6.0 127 246 + 1.344 3 4 cbr 500 ------- 1 1.0 6.0 127 246 r 1.348 2 3 cbr 1000 ------- 1 2.0 7.0 61 245 + 1.348 3 4 cbr 1000 ------- 1 2.0 7.0 61 245 - 1.3496 3 4 cbr 500 ------- 1 1.0 6.0 120 231 + 1.35 1 3 cbr 500 ------- 1 1.0 6.0 130 251 - 1.35 1 3 cbr 500 ------- 1 1.0 6.0 130 251 r 1.3516 3 4 cbr 1000 ------- 1 2.0 7.0 55 220 + 1.3516 4 7 cbr 1000 ------- 1 2.0 7.0 55 220 - 1.3516 4 7 cbr 1000 ------- 1 2.0 7.0 55 220 r 1.35326 5 4 ack 40 ------- 0 5.0 0.0 25 248 + 1.35326 4 3 ack 40 ------- 0 5.0 0.0 25 248 - 1.35326 4 3 ack 40 ------- 0 5.0 0.0 25 248 - 1.3536 3 4 tcp 1000 ------- 0 0.0 5.0 29 232 r 1.354 1 3 cbr 500 ------- 1 1.0 6.0 128 247 + 1.354 3 4 cbr 500 ------- 1 1.0 6.0 128 247 r 1.3556 4 7 cbr 1000 ------- 1 2.0 7.0 54 215 r 1.3572 4 5 tcp 1000 ------- 0 0.0 5.0 26 219 + 1.3572 5 4 ack 40 ------- 0 5.0 0.0 26 252 - 1.3572 5 4 ack 40 ------- 0 5.0 0.0 26 252 r 1.3596 3 4 tcp 1000 ------- 0 0.0 5.0 27 224 + 1.3596 4 5 tcp 1000 ------- 0 0.0 5.0 27 224 - 1.3596 4 5 tcp 1000 ------- 0 0.0 5.0 27 224 + 1.36 2 3 cbr 1000 ------- 1 2.0 7.0 63 253 - 1.36 2 3 cbr 1000 ------- 1 2.0 7.0 63 253 + 1.36 1 3 cbr 500 ------- 1 1.0 6.0 131 254 - 1.36 1 3 cbr 500 ------- 1 1.0 6.0 131 254 - 1.3616 3 4 cbr 500 ------- 1 1.0 6.0 121 234 r 1.3636 3 4 cbr 500 ------- 1 1.0 6.0 116 223 + 1.3636 4 6 cbr 500 ------- 1 1.0 6.0 116 223 - 1.3636 4 6 cbr 500 ------- 1 1.0 6.0 116 223 r 1.3636 4 6 cbr 500 ------- 1 1.0 6.0 114 218 r 1.364 1 3 cbr 500 ------- 1 1.0 6.0 129 250 + 1.364 3 4 cbr 500 ------- 1 1.0 6.0 129 250 - 1.3656 3 4 cbr 1000 ------- 1 2.0 7.0 58 233 r 1.3676 3 4 cbr 500 ------- 1 1.0 6.0 117 226 + 1.3676 4 6 cbr 500 ------- 1 1.0 6.0 117 226 r 1.3676 4 6 cbr 500 ------- 1 1.0 6.0 115 221 - 1.3676 4 6 cbr 500 ------- 1 1.0 6.0 117 226 r 1.368 2 3 cbr 1000 ------- 1 2.0 7.0 62 249 + 1.368 3 4 cbr 1000 ------- 1 2.0 7.0 62 249 + 1.37 1 3 cbr 500 ------- 1 1.0 6.0 132 255 - 1.37 1 3 cbr 500 ------- 1 1.0 6.0 132 255 - 1.3736 3 4 cbr 500 ------- 1 1.0 6.0 122 235 r 1.374 1 3 cbr 500 ------- 1 1.0 6.0 130 251 + 1.374 3 4 cbr 500 ------- 1 1.0 6.0 130 251 r 1.3756 3 4 cbr 1000 ------- 1 2.0 7.0 56 225 + 1.3756 4 7 cbr 1000 ------- 1 2.0 7.0 56 225 - 1.3756 4 7 cbr 1000 ------- 1 2.0 7.0 56 225 r 1.37726 5 4 ack 40 ------- 0 5.0 0.0 26 252 + 1.37726 4 3 ack 40 ------- 0 5.0 0.0 26 252 - 1.37726 4 3 ack 40 ------- 0 5.0 0.0 26 252 - 1.3776 3 4 tcp 1000 ------- 0 0.0 5.0 30 236 r 1.37958 4 3 ack 40 ------- 0 5.0 0.0 24 243 + 1.37958 3 0 ack 40 ------- 0 5.0 0.0 24 243 - 1.37958 3 0 ack 40 ------- 0 5.0 0.0 24 243 r 1.3796 3 4 cbr 500 ------- 1 1.0 6.0 118 227 + 1.3796 4 6 cbr 500 ------- 1 1.0 6.0 118 227 - 1.3796 4 6 cbr 500 ------- 1 1.0 6.0 118 227 r 1.3796 4 7 cbr 1000 ------- 1 2.0 7.0 55 220 + 1.38 2 3 cbr 1000 ------- 1 2.0 7.0 64 256 - 1.38 2 3 cbr 1000 ------- 1 2.0 7.0 64 256 + 1.38 1 3 cbr 500 ------- 1 1.0 6.0 133 257 - 1.38 1 3 cbr 500 ------- 1 1.0 6.0 133 257 r 1.3812 4 5 tcp 1000 ------- 0 0.0 5.0 27 224 + 1.3812 5 4 ack 40 ------- 0 5.0 0.0 27 258 - 1.3812 5 4 ack 40 ------- 0 5.0 0.0 27 258 r 1.384 1 3 cbr 500 ------- 1 1.0 6.0 131 254 + 1.384 3 4 cbr 500 ------- 1 1.0 6.0 131 254 - 1.3856 3 4 cbr 500 ------- 1 1.0 6.0 123 238 r 1.3876 3 4 tcp 1000 ------- 0 0.0 5.0 28 228 + 1.3876 4 5 tcp 1000 ------- 0 0.0 5.0 28 228 - 1.3876 4 5 tcp 1000 ------- 0 0.0 5.0 28 228 r 1.3876 4 6 cbr 500 ------- 1 1.0 6.0 116 223 r 1.388 2 3 cbr 1000 ------- 1 2.0 7.0 63 253 + 1.388 3 4 cbr 1000 ------- 1 2.0 7.0 63 253 - 1.3896 3 4 tcp 1000 ------- 0 0.0 5.0 31 240 + 1.39 1 3 cbr 500 ------- 1 1.0 6.0 134 259 - 1.39 1 3 cbr 500 ------- 1 1.0 6.0 134 259 r 1.3916 3 4 cbr 500 ------- 1 1.0 6.0 119 230 + 1.3916 4 6 cbr 500 ------- 1 1.0 6.0 119 230 - 1.3916 4 6 cbr 500 ------- 1 1.0 6.0 119 230 r 1.3916 4 6 cbr 500 ------- 1 1.0 6.0 117 226 r 1.394 1 3 cbr 500 ------- 1 1.0 6.0 132 255 + 1.394 3 4 cbr 500 ------- 1 1.0 6.0 132 255 - 1.3976 3 4 cbr 500 ------- 1 1.0 6.0 124 239 r 1.3996 3 4 cbr 1000 ------- 1 2.0 7.0 57 229 + 1.3996 4 7 cbr 1000 ------- 1 2.0 7.0 57 229 - 1.3996 4 7 cbr 1000 ------- 1 2.0 7.0 57 229 r 1.39965 3 0 ack 40 ------- 0 5.0 0.0 24 243 + 1.39965 0 3 tcp 1000 ------- 0 0.0 5.0 32 260 - 1.39965 0 3 tcp 1000 ------- 0 0.0 5.0 32 260 + 1.4 2 3 cbr 1000 ------- 1 2.0 7.0 65 261 - 1.4 2 3 cbr 1000 ------- 1 2.0 7.0 65 261 + 1.4 1 3 cbr 500 ------- 1 1.0 6.0 135 262 - 1.4 1 3 cbr 500 ------- 1 1.0 6.0 135 262 r 1.40126 5 4 ack 40 ------- 0 5.0 0.0 27 258 + 1.40126 4 3 ack 40 ------- 0 5.0 0.0 27 258 - 1.40126 4 3 ack 40 ------- 0 5.0 0.0 27 258 - 1.4016 3 4 cbr 500 ------- 1 1.0 6.0 125 242 r 1.40358 4 3 ack 40 ------- 0 5.0 0.0 25 248 + 1.40358 3 0 ack 40 ------- 0 5.0 0.0 25 248 - 1.40358 3 0 ack 40 ------- 0 5.0 0.0 25 248 r 1.4036 3 4 cbr 500 ------- 1 1.0 6.0 120 231 + 1.4036 4 6 cbr 500 ------- 1 1.0 6.0 120 231 - 1.4036 4 6 cbr 500 ------- 1 1.0 6.0 120 231 r 1.4036 4 7 cbr 1000 ------- 1 2.0 7.0 56 225 r 1.4036 4 6 cbr 500 ------- 1 1.0 6.0 118 227 r 1.404 1 3 cbr 500 ------- 1 1.0 6.0 133 257 + 1.404 3 4 cbr 500 ------- 1 1.0 6.0 133 257 - 1.4056 3 4 cbr 1000 ------- 1 2.0 7.0 60 241 r 1.408 2 3 cbr 1000 ------- 1 2.0 7.0 64 256 + 1.408 3 4 cbr 1000 ------- 1 2.0 7.0 64 256 r 1.4092 4 5 tcp 1000 ------- 0 0.0 5.0 28 228 + 1.4092 5 4 ack 40 ------- 0 5.0 0.0 28 263 - 1.4092 5 4 ack 40 ------- 0 5.0 0.0 28 263 + 1.41 1 3 cbr 500 ------- 1 1.0 6.0 136 264 - 1.41 1 3 cbr 500 ------- 1 1.0 6.0 136 264 r 1.4116 3 4 tcp 1000 ------- 0 0.0 5.0 29 232 + 1.4116 4 5 tcp 1000 ------- 0 0.0 5.0 29 232 - 1.4116 4 5 tcp 1000 ------- 0 0.0 5.0 29 232 - 1.4136 3 4 cbr 500 ------- 1 1.0 6.0 126 244 r 1.414 1 3 cbr 500 ------- 1 1.0 6.0 134 259 + 1.414 3 4 cbr 500 ------- 1 1.0 6.0 134 259 r 1.4156 3 4 cbr 500 ------- 1 1.0 6.0 121 234 + 1.4156 4 6 cbr 500 ------- 1 1.0 6.0 121 234 - 1.4156 4 6 cbr 500 ------- 1 1.0 6.0 121 234 r 1.4156 4 6 cbr 500 ------- 1 1.0 6.0 119 230 - 1.4176 3 4 cbr 500 ------- 1 1.0 6.0 127 246 + 1.42 2 3 cbr 1000 ------- 1 2.0 7.0 66 265 - 1.42 2 3 cbr 1000 ------- 1 2.0 7.0 66 265 + 1.42 1 3 cbr 500 ------- 1 1.0 6.0 137 266 - 1.42 1 3 cbr 500 ------- 1 1.0 6.0 137 266 r 1.42125 0 3 tcp 1000 ------- 0 0.0 5.0 32 260 + 1.42125 3 4 tcp 1000 ------- 0 0.0 5.0 32 260 - 1.4216 3 4 cbr 1000 ------- 1 2.0 7.0 61 245 r 1.4236 3 4 cbr 1000 ------- 1 2.0 7.0 58 233 + 1.4236 4 7 cbr 1000 ------- 1 2.0 7.0 58 233 - 1.4236 4 7 cbr 1000 ------- 1 2.0 7.0 58 233 r 1.42365 3 0 ack 40 ------- 0 5.0 0.0 25 248 + 1.42365 0 3 tcp 1000 ------- 0 0.0 5.0 33 267 - 1.42365 0 3 tcp 1000 ------- 0 0.0 5.0 33 267 r 1.424 1 3 cbr 500 ------- 1 1.0 6.0 135 262 + 1.424 3 4 cbr 500 ------- 1 1.0 6.0 135 262 r 1.42758 4 3 ack 40 ------- 0 5.0 0.0 26 252 + 1.42758 3 0 ack 40 ------- 0 5.0 0.0 26 252 - 1.42758 3 0 ack 40 ------- 0 5.0 0.0 26 252 r 1.4276 3 4 cbr 500 ------- 1 1.0 6.0 122 235 + 1.4276 4 6 cbr 500 ------- 1 1.0 6.0 122 235 - 1.4276 4 6 cbr 500 ------- 1 1.0 6.0 122 235 r 1.4276 4 7 cbr 1000 ------- 1 2.0 7.0 57 229 r 1.4276 4 6 cbr 500 ------- 1 1.0 6.0 120 231 r 1.428 2 3 cbr 1000 ------- 1 2.0 7.0 65 261 + 1.428 3 4 cbr 1000 ------- 1 2.0 7.0 65 261 r 1.42926 5 4 ack 40 ------- 0 5.0 0.0 28 263 + 1.42926 4 3 ack 40 ------- 0 5.0 0.0 28 263 - 1.42926 4 3 ack 40 ------- 0 5.0 0.0 28 263 - 1.4296 3 4 cbr 500 ------- 1 1.0 6.0 128 247 + 1.43 1 3 cbr 500 ------- 1 1.0 6.0 138 268 - 1.43 1 3 cbr 500 ------- 1 1.0 6.0 138 268 r 1.4332 4 5 tcp 1000 ------- 0 0.0 5.0 29 232 + 1.4332 5 4 ack 40 ------- 0 5.0 0.0 29 269 - 1.4332 5 4 ack 40 ------- 0 5.0 0.0 29 269 - 1.4336 3 4 cbr 500 ------- 1 1.0 6.0 129 250 r 1.434 1 3 cbr 500 ------- 1 1.0 6.0 136 264 + 1.434 3 4 cbr 500 ------- 1 1.0 6.0 136 264 r 1.4356 3 4 tcp 1000 ------- 0 0.0 5.0 30 236 + 1.4356 4 5 tcp 1000 ------- 0 0.0 5.0 30 236 - 1.4356 4 5 tcp 1000 ------- 0 0.0 5.0 30 236 - 1.4376 3 4 cbr 1000 ------- 1 2.0 7.0 62 249 r 1.4396 3 4 cbr 500 ------- 1 1.0 6.0 123 238 + 1.4396 4 6 cbr 500 ------- 1 1.0 6.0 123 238 - 1.4396 4 6 cbr 500 ------- 1 1.0 6.0 123 238 r 1.4396 4 6 cbr 500 ------- 1 1.0 6.0 121 234 + 1.44 2 3 cbr 1000 ------- 1 2.0 7.0 67 270 - 1.44 2 3 cbr 1000 ------- 1 2.0 7.0 67 270 + 1.44 1 3 cbr 500 ------- 1 1.0 6.0 139 271 - 1.44 1 3 cbr 500 ------- 1 1.0 6.0 139 271 r 1.444 1 3 cbr 500 ------- 1 1.0 6.0 137 266 + 1.444 3 4 cbr 500 ------- 1 1.0 6.0 137 266 r 1.44525 0 3 tcp 1000 ------- 0 0.0 5.0 33 267 + 1.44525 3 4 tcp 1000 ------- 0 0.0 5.0 33 267 - 1.4456 3 4 cbr 500 ------- 1 1.0 6.0 130 251 r 1.4476 3 4 tcp 1000 ------- 0 0.0 5.0 31 240 + 1.4476 4 5 tcp 1000 ------- 0 0.0 5.0 31 240 - 1.4476 4 5 tcp 1000 ------- 0 0.0 5.0 31 240 r 1.44765 3 0 ack 40 ------- 0 5.0 0.0 26 252 + 1.44765 0 3 tcp 1000 ------- 0 0.0 5.0 34 272 - 1.44765 0 3 tcp 1000 ------- 0 0.0 5.0 34 272 r 1.448 2 3 cbr 1000 ------- 1 2.0 7.0 66 265 + 1.448 3 4 cbr 1000 ------- 1 2.0 7.0 66 265 - 1.4496 3 4 cbr 500 ------- 1 1.0 6.0 131 254 + 1.45 1 3 cbr 500 ------- 1 1.0 6.0 140 273 - 1.45 1 3 cbr 500 ------- 1 1.0 6.0 140 273 r 1.45158 4 3 ack 40 ------- 0 5.0 0.0 27 258 + 1.45158 3 0 ack 40 ------- 0 5.0 0.0 27 258 - 1.45158 3 0 ack 40 ------- 0 5.0 0.0 27 258 r 1.4516 3 4 cbr 500 ------- 1 1.0 6.0 124 239 + 1.4516 4 6 cbr 500 ------- 1 1.0 6.0 124 239 - 1.4516 4 6 cbr 500 ------- 1 1.0 6.0 124 239 r 1.4516 4 7 cbr 1000 ------- 1 2.0 7.0 58 233 r 1.4516 4 6 cbr 500 ------- 1 1.0 6.0 122 235 r 1.45326 5 4 ack 40 ------- 0 5.0 0.0 29 269 + 1.45326 4 3 ack 40 ------- 0 5.0 0.0 29 269 - 1.45326 4 3 ack 40 ------- 0 5.0 0.0 29 269 - 1.4536 3 4 cbr 1000 ------- 1 2.0 7.0 63 253 r 1.454 1 3 cbr 500 ------- 1 1.0 6.0 138 268 + 1.454 3 4 cbr 500 ------- 1 1.0 6.0 138 268 r 1.4556 3 4 cbr 500 ------- 1 1.0 6.0 125 242 + 1.4556 4 6 cbr 500 ------- 1 1.0 6.0 125 242 - 1.4556 4 6 cbr 500 ------- 1 1.0 6.0 125 242 r 1.4572 4 5 tcp 1000 ------- 0 0.0 5.0 30 236 + 1.4572 5 4 ack 40 ------- 0 5.0 0.0 30 274 - 1.4572 5 4 ack 40 ------- 0 5.0 0.0 30 274 + 1.46 2 3 cbr 1000 ------- 1 2.0 7.0 68 275 - 1.46 2 3 cbr 1000 ------- 1 2.0 7.0 68 275 + 1.46 1 3 cbr 500 ------- 1 1.0 6.0 141 276 - 1.46 1 3 cbr 500 ------- 1 1.0 6.0 141 276 - 1.4616 3 4 cbr 500 ------- 1 1.0 6.0 132 255 r 1.4636 3 4 cbr 1000 ------- 1 2.0 7.0 60 241 + 1.4636 4 7 cbr 1000 ------- 1 2.0 7.0 60 241 - 1.4636 4 7 cbr 1000 ------- 1 2.0 7.0 60 241 r 1.4636 4 6 cbr 500 ------- 1 1.0 6.0 123 238 r 1.464 1 3 cbr 500 ------- 1 1.0 6.0 139 271 + 1.464 3 4 cbr 500 ------- 1 1.0 6.0 139 271 - 1.4656 3 4 cbr 500 ------- 1 1.0 6.0 133 257 r 1.4676 3 4 cbr 500 ------- 1 1.0 6.0 126 244 + 1.4676 4 6 cbr 500 ------- 1 1.0 6.0 126 244 - 1.4676 4 6 cbr 500 ------- 1 1.0 6.0 126 244 r 1.468 2 3 cbr 1000 ------- 1 2.0 7.0 67 270 + 1.468 3 4 cbr 1000 ------- 1 2.0 7.0 67 270 r 1.4692 4 5 tcp 1000 ------- 0 0.0 5.0 31 240 + 1.4692 5 4 ack 40 ------- 0 5.0 0.0 31 277 - 1.4692 5 4 ack 40 ------- 0 5.0 0.0 31 277 r 1.46925 0 3 tcp 1000 ------- 0 0.0 5.0 34 272 + 1.46925 3 4 tcp 1000 ------- 0 0.0 5.0 34 272 - 1.4696 3 4 cbr 1000 ------- 1 2.0 7.0 64 256 + 1.47 1 3 cbr 500 ------- 1 1.0 6.0 142 278 - 1.47 1 3 cbr 500 ------- 1 1.0 6.0 142 278 r 1.4716 3 4 cbr 500 ------- 1 1.0 6.0 127 246 + 1.4716 4 6 cbr 500 ------- 1 1.0 6.0 127 246 - 1.4716 4 6 cbr 500 ------- 1 1.0 6.0 127 246 r 1.47165 3 0 ack 40 ------- 0 5.0 0.0 27 258 + 1.47165 0 3 tcp 1000 ------- 0 0.0 5.0 35 279 - 1.47165 0 3 tcp 1000 ------- 0 0.0 5.0 35 279 r 1.474 1 3 cbr 500 ------- 1 1.0 6.0 140 273 + 1.474 3 4 cbr 500 ------- 1 1.0 6.0 140 273 r 1.4756 4 6 cbr 500 ------- 1 1.0 6.0 124 239 r 1.47726 5 4 ack 40 ------- 0 5.0 0.0 30 274 + 1.47726 4 3 ack 40 ------- 0 5.0 0.0 30 274 - 1.47726 4 3 ack 40 ------- 0 5.0 0.0 30 274 - 1.4776 3 4 cbr 500 ------- 1 1.0 6.0 134 259 r 1.47958 4 3 ack 40 ------- 0 5.0 0.0 28 263 + 1.47958 3 0 ack 40 ------- 0 5.0 0.0 28 263 - 1.47958 3 0 ack 40 ------- 0 5.0 0.0 28 263 r 1.4796 3 4 cbr 1000 ------- 1 2.0 7.0 61 245 + 1.4796 4 7 cbr 1000 ------- 1 2.0 7.0 61 245 - 1.4796 4 7 cbr 1000 ------- 1 2.0 7.0 61 245 r 1.4796 4 6 cbr 500 ------- 1 1.0 6.0 125 242 + 1.48 2 3 cbr 1000 ------- 1 2.0 7.0 69 280 - 1.48 2 3 cbr 1000 ------- 1 2.0 7.0 69 280 + 1.48 1 3 cbr 500 ------- 1 1.0 6.0 143 281 - 1.48 1 3 cbr 500 ------- 1 1.0 6.0 143 281 - 1.4816 3 4 tcp 1000 ------- 0 0.0 5.0 32 260 r 1.4836 3 4 cbr 500 ------- 1 1.0 6.0 128 247 + 1.4836 4 6 cbr 500 ------- 1 1.0 6.0 128 247 - 1.4836 4 6 cbr 500 ------- 1 1.0 6.0 128 247 r 1.484 1 3 cbr 500 ------- 1 1.0 6.0 141 276 + 1.484 3 4 cbr 500 ------- 1 1.0 6.0 141 276 r 1.4876 3 4 cbr 500 ------- 1 1.0 6.0 129 250 + 1.4876 4 6 cbr 500 ------- 1 1.0 6.0 129 250 - 1.4876 4 6 cbr 500 ------- 1 1.0 6.0 129 250 r 1.488 2 3 cbr 1000 ------- 1 2.0 7.0 68 275 + 1.488 3 4 cbr 1000 ------- 1 2.0 7.0 68 275 r 1.48926 5 4 ack 40 ------- 0 5.0 0.0 31 277 + 1.48926 4 3 ack 40 ------- 0 5.0 0.0 31 277 - 1.48926 4 3 ack 40 ------- 0 5.0 0.0 31 277 - 1.4896 3 4 cbr 500 ------- 1 1.0 6.0 135 262 + 1.49 1 3 cbr 500 ------- 1 1.0 6.0 144 282 - 1.49 1 3 cbr 500 ------- 1 1.0 6.0 144 282 r 1.4916 4 7 cbr 1000 ------- 1 2.0 7.0 60 241 r 1.4916 4 6 cbr 500 ------- 1 1.0 6.0 126 244 r 1.49325 0 3 tcp 1000 ------- 0 0.0 5.0 35 279 + 1.49325 3 4 tcp 1000 ------- 0 0.0 5.0 35 279 - 1.4936 3 4 cbr 1000 ------- 1 2.0 7.0 65 261 r 1.494 1 3 cbr 500 ------- 1 1.0 6.0 142 278 + 1.494 3 4 cbr 500 ------- 1 1.0 6.0 142 278 r 1.4956 3 4 cbr 1000 ------- 1 2.0 7.0 62 249 + 1.4956 4 7 cbr 1000 ------- 1 2.0 7.0 62 249 - 1.4956 4 7 cbr 1000 ------- 1 2.0 7.0 62 249 r 1.4956 4 6 cbr 500 ------- 1 1.0 6.0 127 246 r 1.4996 3 4 cbr 500 ------- 1 1.0 6.0 130 251 + 1.4996 4 6 cbr 500 ------- 1 1.0 6.0 130 251 - 1.4996 4 6 cbr 500 ------- 1 1.0 6.0 130 251 r 1.49965 3 0 ack 40 ------- 0 5.0 0.0 28 263 + 1.49965 0 3 tcp 1000 ------- 0 0.0 5.0 36 283 - 1.49965 0 3 tcp 1000 ------- 0 0.0 5.0 36 283 + 1.5 2 3 cbr 1000 ------- 1 2.0 7.0 70 284 - 1.5 2 3 cbr 1000 ------- 1 2.0 7.0 70 284 + 1.5 1 3 cbr 500 ------- 1 1.0 6.0 145 285 - 1.5 1 3 cbr 500 ------- 1 1.0 6.0 145 285 - 1.5016 3 4 cbr 500 ------- 1 1.0 6.0 136 264 r 1.50358 4 3 ack 40 ------- 0 5.0 0.0 29 269 + 1.50358 3 0 ack 40 ------- 0 5.0 0.0 29 269 - 1.50358 3 0 ack 40 ------- 0 5.0 0.0 29 269 r 1.5036 3 4 cbr 500 ------- 1 1.0 6.0 131 254 + 1.5036 4 6 cbr 500 ------- 1 1.0 6.0 131 254 - 1.5036 4 6 cbr 500 ------- 1 1.0 6.0 131 254 r 1.504 1 3 cbr 500 ------- 1 1.0 6.0 143 281 + 1.504 3 4 cbr 500 ------- 1 1.0 6.0 143 281 - 1.5056 3 4 cbr 500 ------- 1 1.0 6.0 137 266 r 1.5076 4 7 cbr 1000 ------- 1 2.0 7.0 61 245 r 1.5076 4 6 cbr 500 ------- 1 1.0 6.0 128 247 r 1.508 2 3 cbr 1000 ------- 1 2.0 7.0 69 280 + 1.508 3 4 cbr 1000 ------- 1 2.0 7.0 69 280 - 1.5096 3 4 tcp 1000 ------- 0 0.0 5.0 33 267 + 1.51 1 3 cbr 500 ------- 1 1.0 6.0 146 286 - 1.51 1 3 cbr 500 ------- 1 1.0 6.0 146 286 r 1.5116 3 4 cbr 1000 ------- 1 2.0 7.0 63 253 + 1.5116 4 7 cbr 1000 ------- 1 2.0 7.0 63 253 - 1.5116 4 7 cbr 1000 ------- 1 2.0 7.0 63 253 r 1.5116 4 6 cbr 500 ------- 1 1.0 6.0 129 250 r 1.514 1 3 cbr 500 ------- 1 1.0 6.0 144 282 + 1.514 3 4 cbr 500 ------- 1 1.0 6.0 144 282 r 1.5156 3 4 cbr 500 ------- 1 1.0 6.0 132 255 + 1.5156 4 6 cbr 500 ------- 1 1.0 6.0 132 255 - 1.5156 4 6 cbr 500 ------- 1 1.0 6.0 132 255 - 1.5176 3 4 cbr 1000 ------- 1 2.0 7.0 66 265 r 1.5196 3 4 cbr 500 ------- 1 1.0 6.0 133 257 + 1.5196 4 6 cbr 500 ------- 1 1.0 6.0 133 257 - 1.5196 4 6 cbr 500 ------- 1 1.0 6.0 133 257 + 1.52 2 3 cbr 1000 ------- 1 2.0 7.0 71 287 - 1.52 2 3 cbr 1000 ------- 1 2.0 7.0 71 287 + 1.52 1 3 cbr 500 ------- 1 1.0 6.0 147 288 - 1.52 1 3 cbr 500 ------- 1 1.0 6.0 147 288 r 1.52125 0 3 tcp 1000 ------- 0 0.0 5.0 36 283 + 1.52125 3 4 tcp 1000 ------- 0 0.0 5.0 36 283 r 1.5236 4 7 cbr 1000 ------- 1 2.0 7.0 62 249 r 1.5236 4 6 cbr 500 ------- 1 1.0 6.0 130 251 r 1.52365 3 0 ack 40 ------- 0 5.0 0.0 29 269 + 1.52365 0 3 tcp 1000 ------- 0 0.0 5.0 37 289 - 1.52365 0 3 tcp 1000 ------- 0 0.0 5.0 37 289 r 1.524 1 3 cbr 500 ------- 1 1.0 6.0 145 285 + 1.524 3 4 cbr 500 ------- 1 1.0 6.0 145 285 - 1.5256 3 4 cbr 500 ------- 1 1.0 6.0 138 268 r 1.52758 4 3 ack 40 ------- 0 5.0 0.0 30 274 + 1.52758 3 0 ack 40 ------- 0 5.0 0.0 30 274 - 1.52758 3 0 ack 40 ------- 0 5.0 0.0 30 274 r 1.5276 3 4 cbr 1000 ------- 1 2.0 7.0 64 256 + 1.5276 4 7 cbr 1000 ------- 1 2.0 7.0 64 256 - 1.5276 4 7 cbr 1000 ------- 1 2.0 7.0 64 256 r 1.5276 4 6 cbr 500 ------- 1 1.0 6.0 131 254 r 1.528 2 3 cbr 1000 ------- 1 2.0 7.0 70 284 + 1.528 3 4 cbr 1000 ------- 1 2.0 7.0 70 284 - 1.5296 3 4 cbr 500 ------- 1 1.0 6.0 139 271 + 1.53 1 3 cbr 500 ------- 1 1.0 6.0 148 290 - 1.53 1 3 cbr 500 ------- 1 1.0 6.0 148 290 r 1.5316 3 4 cbr 500 ------- 1 1.0 6.0 134 259 + 1.5316 4 6 cbr 500 ------- 1 1.0 6.0 134 259 - 1.5316 4 6 cbr 500 ------- 1 1.0 6.0 134 259 - 1.5336 3 4 cbr 1000 ------- 1 2.0 7.0 67 270 r 1.534 1 3 cbr 500 ------- 1 1.0 6.0 146 286 + 1.534 3 4 cbr 500 ------- 1 1.0 6.0 146 286 r 1.53958 4 3 ack 40 ------- 0 5.0 0.0 31 277 + 1.53958 3 0 ack 40 ------- 0 5.0 0.0 31 277 - 1.53958 3 0 ack 40 ------- 0 5.0 0.0 31 277 r 1.5396 3 4 tcp 1000 ------- 0 0.0 5.0 32 260 + 1.5396 4 5 tcp 1000 ------- 0 0.0 5.0 32 260 - 1.5396 4 5 tcp 1000 ------- 0 0.0 5.0 32 260 r 1.5396 4 7 cbr 1000 ------- 1 2.0 7.0 63 253 r 1.5396 4 6 cbr 500 ------- 1 1.0 6.0 132 255 + 1.54 2 3 cbr 1000 ------- 1 2.0 7.0 72 291 - 1.54 2 3 cbr 1000 ------- 1 2.0 7.0 72 291 + 1.54 1 3 cbr 500 ------- 1 1.0 6.0 149 292 - 1.54 1 3 cbr 500 ------- 1 1.0 6.0 149 292 - 1.5416 3 4 tcp 1000 ------- 0 0.0 5.0 34 272 r 1.5436 3 4 cbr 500 ------- 1 1.0 6.0 135 262 + 1.5436 4 6 cbr 500 ------- 1 1.0 6.0 135 262 - 1.5436 4 6 cbr 500 ------- 1 1.0 6.0 135 262 r 1.5436 4 6 cbr 500 ------- 1 1.0 6.0 133 257 r 1.544 1 3 cbr 500 ------- 1 1.0 6.0 147 288 + 1.544 3 4 cbr 500 ------- 1 1.0 6.0 147 288 r 1.54525 0 3 tcp 1000 ------- 0 0.0 5.0 37 289 + 1.54525 3 4 tcp 1000 ------- 0 0.0 5.0 37 289 r 1.54765 3 0 ack 40 ------- 0 5.0 0.0 30 274 + 1.54765 0 3 tcp 1000 ------- 0 0.0 5.0 38 293 - 1.54765 0 3 tcp 1000 ------- 0 0.0 5.0 38 293 r 1.548 2 3 cbr 1000 ------- 1 2.0 7.0 71 287 + 1.548 3 4 cbr 1000 ------- 1 2.0 7.0 71 287 d 1.548 3 4 cbr 1000 ------- 1 2.0 7.0 71 287 - 1.5496 3 4 cbr 500 ------- 1 1.0 6.0 140 273 + 1.55 1 3 cbr 500 ------- 1 1.0 6.0 150 294 - 1.55 1 3 cbr 500 ------- 1 1.0 6.0 150 294 r 1.5516 3 4 cbr 1000 ------- 1 2.0 7.0 65 261 + 1.5516 4 7 cbr 1000 ------- 1 2.0 7.0 65 261 - 1.5516 4 7 cbr 1000 ------- 1 2.0 7.0 65 261 - 1.5536 3 4 cbr 500 ------- 1 1.0 6.0 141 276 r 1.554 1 3 cbr 500 ------- 1 1.0 6.0 148 290 + 1.554 3 4 cbr 500 ------- 1 1.0 6.0 148 290 r 1.5556 3 4 cbr 500 ------- 1 1.0 6.0 136 264 + 1.5556 4 6 cbr 500 ------- 1 1.0 6.0 136 264 - 1.5556 4 6 cbr 500 ------- 1 1.0 6.0 136 264 r 1.5556 4 7 cbr 1000 ------- 1 2.0 7.0 64 256 r 1.5556 4 6 cbr 500 ------- 1 1.0 6.0 134 259 - 1.5576 3 4 cbr 1000 ------- 1 2.0 7.0 68 275 r 1.5596 3 4 cbr 500 ------- 1 1.0 6.0 137 266 + 1.5596 4 6 cbr 500 ------- 1 1.0 6.0 137 266 - 1.5596 4 6 cbr 500 ------- 1 1.0 6.0 137 266 r 1.55965 3 0 ack 40 ------- 0 5.0 0.0 31 277 + 1.55965 0 3 tcp 1000 ------- 0 0.0 5.0 39 295 - 1.55965 0 3 tcp 1000 ------- 0 0.0 5.0 39 295 + 1.56 2 3 cbr 1000 ------- 1 2.0 7.0 73 296 - 1.56 2 3 cbr 1000 ------- 1 2.0 7.0 73 296 + 1.56 1 3 cbr 500 ------- 1 1.0 6.0 151 297 - 1.56 1 3 cbr 500 ------- 1 1.0 6.0 151 297 r 1.5612 4 5 tcp 1000 ------- 0 0.0 5.0 32 260 + 1.5612 5 4 ack 40 ------- 0 5.0 0.0 32 298 - 1.5612 5 4 ack 40 ------- 0 5.0 0.0 32 298 r 1.564 1 3 cbr 500 ------- 1 1.0 6.0 149 292 + 1.564 3 4 cbr 500 ------- 1 1.0 6.0 149 292 - 1.5656 3 4 tcp 1000 ------- 0 0.0 5.0 35 279 r 1.5676 3 4 tcp 1000 ------- 0 0.0 5.0 33 267 + 1.5676 4 5 tcp 1000 ------- 0 0.0 5.0 33 267 - 1.5676 4 5 tcp 1000 ------- 0 0.0 5.0 33 267 r 1.5676 4 6 cbr 500 ------- 1 1.0 6.0 135 262 r 1.568 2 3 cbr 1000 ------- 1 2.0 7.0 72 291 + 1.568 3 4 cbr 1000 ------- 1 2.0 7.0 72 291 r 1.56925 0 3 tcp 1000 ------- 0 0.0 5.0 38 293 + 1.56925 3 4 tcp 1000 ------- 0 0.0 5.0 38 293 + 1.57 1 3 cbr 500 ------- 1 1.0 6.0 152 299 - 1.57 1 3 cbr 500 ------- 1 1.0 6.0 152 299 - 1.5736 3 4 cbr 500 ------- 1 1.0 6.0 142 278 r 1.574 1 3 cbr 500 ------- 1 1.0 6.0 150 294 + 1.574 3 4 cbr 500 ------- 1 1.0 6.0 150 294 r 1.5756 3 4 cbr 1000 ------- 1 2.0 7.0 66 265 + 1.5756 4 7 cbr 1000 ------- 1 2.0 7.0 66 265 - 1.5756 4 7 cbr 1000 ------- 1 2.0 7.0 66 265 - 1.5776 3 4 cbr 500 ------- 1 1.0 6.0 143 281 r 1.5796 3 4 cbr 500 ------- 1 1.0 6.0 138 268 + 1.5796 4 6 cbr 500 ------- 1 1.0 6.0 138 268 - 1.5796 4 6 cbr 500 ------- 1 1.0 6.0 138 268 r 1.5796 4 7 cbr 1000 ------- 1 2.0 7.0 65 261 r 1.5796 4 6 cbr 500 ------- 1 1.0 6.0 136 264 + 1.58 2 3 cbr 1000 ------- 1 2.0 7.0 74 300 - 1.58 2 3 cbr 1000 ------- 1 2.0 7.0 74 300 + 1.58 1 3 cbr 500 ------- 1 1.0 6.0 153 301 - 1.58 1 3 cbr 500 ------- 1 1.0 6.0 153 301 r 1.58125 0 3 tcp 1000 ------- 0 0.0 5.0 39 295 + 1.58125 3 4 tcp 1000 ------- 0 0.0 5.0 39 295 r 1.58126 5 4 ack 40 ------- 0 5.0 0.0 32 298 + 1.58126 4 3 ack 40 ------- 0 5.0 0.0 32 298 - 1.58126 4 3 ack 40 ------- 0 5.0 0.0 32 298 - 1.5816 3 4 cbr 1000 ------- 1 2.0 7.0 69 280 r 1.5836 3 4 cbr 500 ------- 1 1.0 6.0 139 271 + 1.5836 4 6 cbr 500 ------- 1 1.0 6.0 139 271 r 1.5836 4 6 cbr 500 ------- 1 1.0 6.0 137 266 - 1.5836 4 6 cbr 500 ------- 1 1.0 6.0 139 271 r 1.584 1 3 cbr 500 ------- 1 1.0 6.0 151 297 + 1.584 3 4 cbr 500 ------- 1 1.0 6.0 151 297 r 1.588 2 3 cbr 1000 ------- 1 2.0 7.0 73 296 + 1.588 3 4 cbr 1000 ------- 1 2.0 7.0 73 296 d 1.588 3 4 cbr 1000 ------- 1 2.0 7.0 73 296 r 1.5892 4 5 tcp 1000 ------- 0 0.0 5.0 33 267 + 1.5892 5 4 ack 40 ------- 0 5.0 0.0 33 302 - 1.5892 5 4 ack 40 ------- 0 5.0 0.0 33 302 - 1.5896 3 4 cbr 500 ------- 1 1.0 6.0 144 282 + 1.59 1 3 cbr 500 ------- 1 1.0 6.0 154 303 - 1.59 1 3 cbr 500 ------- 1 1.0 6.0 154 303 r 1.5916 3 4 cbr 1000 ------- 1 2.0 7.0 67 270 + 1.5916 4 7 cbr 1000 ------- 1 2.0 7.0 67 270 - 1.5916 4 7 cbr 1000 ------- 1 2.0 7.0 67 270 - 1.5936 3 4 tcp 1000 ------- 0 0.0 5.0 36 283 r 1.594 1 3 cbr 500 ------- 1 1.0 6.0 152 299 + 1.594 3 4 cbr 500 ------- 1 1.0 6.0 152 299 r 1.5996 3 4 tcp 1000 ------- 0 0.0 5.0 34 272 + 1.5996 4 5 tcp 1000 ------- 0 0.0 5.0 34 272 - 1.5996 4 5 tcp 1000 ------- 0 0.0 5.0 34 272 + 1.6 2 3 cbr 1000 ------- 1 2.0 7.0 75 304 - 1.6 2 3 cbr 1000 ------- 1 2.0 7.0 75 304 + 1.6 1 3 cbr 500 ------- 1 1.0 6.0 155 305 - 1.6 1 3 cbr 500 ------- 1 1.0 6.0 155 305 - 1.6016 3 4 cbr 500 ------- 1 1.0 6.0 145 285 r 1.6036 3 4 cbr 500 ------- 1 1.0 6.0 140 273 + 1.6036 4 6 cbr 500 ------- 1 1.0 6.0 140 273 - 1.6036 4 6 cbr 500 ------- 1 1.0 6.0 140 273 r 1.6036 4 7 cbr 1000 ------- 1 2.0 7.0 66 265 r 1.6036 4 6 cbr 500 ------- 1 1.0 6.0 138 268 r 1.604 1 3 cbr 500 ------- 1 1.0 6.0 153 301 + 1.604 3 4 cbr 500 ------- 1 1.0 6.0 153 301 - 1.6056 3 4 cbr 1000 ------- 1 2.0 7.0 70 284 r 1.6076 3 4 cbr 500 ------- 1 1.0 6.0 141 276 + 1.6076 4 6 cbr 500 ------- 1 1.0 6.0 141 276 r 1.6076 4 6 cbr 500 ------- 1 1.0 6.0 139 271 - 1.6076 4 6 cbr 500 ------- 1 1.0 6.0 141 276 r 1.608 2 3 cbr 1000 ------- 1 2.0 7.0 74 300 + 1.608 3 4 cbr 1000 ------- 1 2.0 7.0 74 300 r 1.60926 5 4 ack 40 ------- 0 5.0 0.0 33 302 + 1.60926 4 3 ack 40 ------- 0 5.0 0.0 33 302 - 1.60926 4 3 ack 40 ------- 0 5.0 0.0 33 302 + 1.61 1 3 cbr 500 ------- 1 1.0 6.0 156 306 - 1.61 1 3 cbr 500 ------- 1 1.0 6.0 156 306 - 1.6136 3 4 cbr 500 ------- 1 1.0 6.0 146 286 r 1.614 1 3 cbr 500 ------- 1 1.0 6.0 154 303 + 1.614 3 4 cbr 500 ------- 1 1.0 6.0 154 303 r 1.6156 3 4 cbr 1000 ------- 1 2.0 7.0 68 275 + 1.6156 4 7 cbr 1000 ------- 1 2.0 7.0 68 275 - 1.6156 4 7 cbr 1000 ------- 1 2.0 7.0 68 275 - 1.6176 3 4 cbr 500 ------- 1 1.0 6.0 147 288 r 1.6196 4 7 cbr 1000 ------- 1 2.0 7.0 67 270 + 1.62 2 3 cbr 1000 ------- 1 2.0 7.0 76 307 - 1.62 2 3 cbr 1000 ------- 1 2.0 7.0 76 307 + 1.62 1 3 cbr 500 ------- 1 1.0 6.0 157 308 - 1.62 1 3 cbr 500 ------- 1 1.0 6.0 157 308 r 1.6212 4 5 tcp 1000 ------- 0 0.0 5.0 34 272 + 1.6212 5 4 ack 40 ------- 0 5.0 0.0 34 309 - 1.6212 5 4 ack 40 ------- 0 5.0 0.0 34 309 - 1.6216 3 4 tcp 1000 ------- 0 0.0 5.0 37 289 r 1.6236 3 4 tcp 1000 ------- 0 0.0 5.0 35 279 + 1.6236 4 5 tcp 1000 ------- 0 0.0 5.0 35 279 - 1.6236 4 5 tcp 1000 ------- 0 0.0 5.0 35 279 r 1.624 1 3 cbr 500 ------- 1 1.0 6.0 155 305 + 1.624 3 4 cbr 500 ------- 1 1.0 6.0 155 305 r 1.6276 3 4 cbr 500 ------- 1 1.0 6.0 142 278 + 1.6276 4 6 cbr 500 ------- 1 1.0 6.0 142 278 - 1.6276 4 6 cbr 500 ------- 1 1.0 6.0 142 278 r 1.6276 4 6 cbr 500 ------- 1 1.0 6.0 140 273 r 1.628 2 3 cbr 1000 ------- 1 2.0 7.0 75 304 + 1.628 3 4 cbr 1000 ------- 1 2.0 7.0 75 304 - 1.6296 3 4 cbr 500 ------- 1 1.0 6.0 148 290 + 1.63 1 3 cbr 500 ------- 1 1.0 6.0 158 310 - 1.63 1 3 cbr 500 ------- 1 1.0 6.0 158 310 r 1.63158 4 3 ack 40 ------- 0 5.0 0.0 32 298 + 1.63158 3 0 ack 40 ------- 0 5.0 0.0 32 298 - 1.63158 3 0 ack 40 ------- 0 5.0 0.0 32 298 r 1.6316 3 4 cbr 500 ------- 1 1.0 6.0 143 281 + 1.6316 4 6 cbr 500 ------- 1 1.0 6.0 143 281 r 1.6316 4 6 cbr 500 ------- 1 1.0 6.0 141 276 - 1.6316 4 6 cbr 500 ------- 1 1.0 6.0 143 281 - 1.6336 3 4 cbr 500 ------- 1 1.0 6.0 149 292 r 1.634 1 3 cbr 500 ------- 1 1.0 6.0 156 306 + 1.634 3 4 cbr 500 ------- 1 1.0 6.0 156 306 - 1.6376 3 4 cbr 1000 ------- 1 2.0 7.0 72 291 r 1.6396 3 4 cbr 1000 ------- 1 2.0 7.0 69 280 + 1.6396 4 7 cbr 1000 ------- 1 2.0 7.0 69 280 - 1.6396 4 7 cbr 1000 ------- 1 2.0 7.0 69 280 + 1.64 2 3 cbr 1000 ------- 1 2.0 7.0 77 311 - 1.64 2 3 cbr 1000 ------- 1 2.0 7.0 77 311 + 1.64 1 3 cbr 500 ------- 1 1.0 6.0 159 312 - 1.64 1 3 cbr 500 ------- 1 1.0 6.0 159 312 r 1.64126 5 4 ack 40 ------- 0 5.0 0.0 34 309 + 1.64126 4 3 ack 40 ------- 0 5.0 0.0 34 309 - 1.64126 4 3 ack 40 ------- 0 5.0 0.0 34 309 r 1.6436 3 4 cbr 500 ------- 1 1.0 6.0 144 282 + 1.6436 4 6 cbr 500 ------- 1 1.0 6.0 144 282 - 1.6436 4 6 cbr 500 ------- 1 1.0 6.0 144 282 r 1.6436 4 7 cbr 1000 ------- 1 2.0 7.0 68 275 r 1.644 1 3 cbr 500 ------- 1 1.0 6.0 157 308 + 1.644 3 4 cbr 500 ------- 1 1.0 6.0 157 308 r 1.6452 4 5 tcp 1000 ------- 0 0.0 5.0 35 279 + 1.6452 5 4 ack 40 ------- 0 5.0 0.0 35 313 - 1.6452 5 4 ack 40 ------- 0 5.0 0.0 35 313 - 1.6456 3 4 tcp 1000 ------- 0 0.0 5.0 38 293 r 1.648 2 3 cbr 1000 ------- 1 2.0 7.0 76 307 + 1.648 3 4 cbr 1000 ------- 1 2.0 7.0 76 307 + 1.65 1 3 cbr 500 ------- 1 1.0 6.0 160 314 - 1.65 1 3 cbr 500 ------- 1 1.0 6.0 160 314 r 1.6516 3 4 tcp 1000 ------- 0 0.0 5.0 36 283 + 1.6516 4 5 tcp 1000 ------- 0 0.0 5.0 36 283 - 1.6516 4 5 tcp 1000 ------- 0 0.0 5.0 36 283 r 1.6516 4 6 cbr 500 ------- 1 1.0 6.0 142 278 r 1.65165 3 0 ack 40 ------- 0 5.0 0.0 32 298 + 1.65165 0 3 tcp 1000 ------- 0 0.0 5.0 40 315 - 1.65165 0 3 tcp 1000 ------- 0 0.0 5.0 40 315 - 1.6536 3 4 cbr 500 ------- 1 1.0 6.0 150 294 r 1.654 1 3 cbr 500 ------- 1 1.0 6.0 158 310 + 1.654 3 4 cbr 500 ------- 1 1.0 6.0 158 310 r 1.6556 3 4 cbr 500 ------- 1 1.0 6.0 145 285 + 1.6556 4 6 cbr 500 ------- 1 1.0 6.0 145 285 - 1.6556 4 6 cbr 500 ------- 1 1.0 6.0 145 285 r 1.6556 4 6 cbr 500 ------- 1 1.0 6.0 143 281 - 1.6576 3 4 tcp 1000 ------- 0 0.0 5.0 39 295 r 1.65958 4 3 ack 40 ------- 0 5.0 0.0 33 302 + 1.65958 3 0 ack 40 ------- 0 5.0 0.0 33 302 - 1.65958 3 0 ack 40 ------- 0 5.0 0.0 33 302 + 1.66 2 3 cbr 1000 ------- 1 2.0 7.0 78 316 - 1.66 2 3 cbr 1000 ------- 1 2.0 7.0 78 316 + 1.66 1 3 cbr 500 ------- 1 1.0 6.0 161 317 - 1.66 1 3 cbr 500 ------- 1 1.0 6.0 161 317 r 1.6636 3 4 cbr 1000 ------- 1 2.0 7.0 70 284 + 1.6636 4 7 cbr 1000 ------- 1 2.0 7.0 70 284 - 1.6636 4 7 cbr 1000 ------- 1 2.0 7.0 70 284 r 1.664 1 3 cbr 500 ------- 1 1.0 6.0 159 312 + 1.664 3 4 cbr 500 ------- 1 1.0 6.0 159 312 r 1.66526 5 4 ack 40 ------- 0 5.0 0.0 35 313 + 1.66526 4 3 ack 40 ------- 0 5.0 0.0 35 313 - 1.66526 4 3 ack 40 ------- 0 5.0 0.0 35 313 - 1.6656 3 4 cbr 500 ------- 1 1.0 6.0 151 297 r 1.6676 3 4 cbr 500 ------- 1 1.0 6.0 146 286 + 1.6676 4 6 cbr 500 ------- 1 1.0 6.0 146 286 - 1.6676 4 6 cbr 500 ------- 1 1.0 6.0 146 286 r 1.6676 4 7 cbr 1000 ------- 1 2.0 7.0 69 280 r 1.6676 4 6 cbr 500 ------- 1 1.0 6.0 144 282 r 1.668 2 3 cbr 1000 ------- 1 2.0 7.0 77 311 + 1.668 3 4 cbr 1000 ------- 1 2.0 7.0 77 311 - 1.6696 3 4 cbr 500 ------- 1 1.0 6.0 152 299 + 1.67 1 3 cbr 500 ------- 1 1.0 6.0 162 318 - 1.67 1 3 cbr 500 ------- 1 1.0 6.0 162 318 r 1.6716 3 4 cbr 500 ------- 1 1.0 6.0 147 288 + 1.6716 4 6 cbr 500 ------- 1 1.0 6.0 147 288 - 1.6716 4 6 cbr 500 ------- 1 1.0 6.0 147 288 r 1.6732 4 5 tcp 1000 ------- 0 0.0 5.0 36 283 + 1.6732 5 4 ack 40 ------- 0 5.0 0.0 36 319 - 1.6732 5 4 ack 40 ------- 0 5.0 0.0 36 319 r 1.67325 0 3 tcp 1000 ------- 0 0.0 5.0 40 315 + 1.67325 3 4 tcp 1000 ------- 0 0.0 5.0 40 315 - 1.6736 3 4 cbr 500 ------- 1 1.0 6.0 153 301 r 1.674 1 3 cbr 500 ------- 1 1.0 6.0 160 314 + 1.674 3 4 cbr 500 ------- 1 1.0 6.0 160 314 - 1.6776 3 4 cbr 1000 ------- 1 2.0 7.0 74 300 r 1.6796 3 4 tcp 1000 ------- 0 0.0 5.0 37 289 + 1.6796 4 5 tcp 1000 ------- 0 0.0 5.0 37 289 - 1.6796 4 5 tcp 1000 ------- 0 0.0 5.0 37 289 r 1.6796 4 6 cbr 500 ------- 1 1.0 6.0 145 285 r 1.67965 3 0 ack 40 ------- 0 5.0 0.0 33 302 + 1.67965 0 3 tcp 1000 ------- 0 0.0 5.0 41 320 - 1.67965 0 3 tcp 1000 ------- 0 0.0 5.0 41 320 + 1.68 2 3 cbr 1000 ------- 1 2.0 7.0 79 321 - 1.68 2 3 cbr 1000 ------- 1 2.0 7.0 79 321 + 1.68 1 3 cbr 500 ------- 1 1.0 6.0 163 322 - 1.68 1 3 cbr 500 ------- 1 1.0 6.0 163 322 r 1.6836 3 4 cbr 500 ------- 1 1.0 6.0 148 290 + 1.6836 4 6 cbr 500 ------- 1 1.0 6.0 148 290 - 1.6836 4 6 cbr 500 ------- 1 1.0 6.0 148 290 r 1.684 1 3 cbr 500 ------- 1 1.0 6.0 161 317 + 1.684 3 4 cbr 500 ------- 1 1.0 6.0 161 317 - 1.6856 3 4 cbr 500 ------- 1 1.0 6.0 154 303 r 1.6876 3 4 cbr 500 ------- 1 1.0 6.0 149 292 + 1.6876 4 6 cbr 500 ------- 1 1.0 6.0 149 292 - 1.6876 4 6 cbr 500 ------- 1 1.0 6.0 149 292 r 1.688 2 3 cbr 1000 ------- 1 2.0 7.0 78 316 + 1.688 3 4 cbr 1000 ------- 1 2.0 7.0 78 316 - 1.6896 3 4 cbr 500 ------- 1 1.0 6.0 155 305 + 1.69 1 3 cbr 500 ------- 1 1.0 6.0 164 323 - 1.69 1 3 cbr 500 ------- 1 1.0 6.0 164 323 r 1.69158 4 3 ack 40 ------- 0 5.0 0.0 34 309 + 1.69158 3 0 ack 40 ------- 0 5.0 0.0 34 309 - 1.69158 3 0 ack 40 ------- 0 5.0 0.0 34 309 r 1.6916 4 7 cbr 1000 ------- 1 2.0 7.0 70 284 r 1.6916 4 6 cbr 500 ------- 1 1.0 6.0 146 286 r 1.69326 5 4 ack 40 ------- 0 5.0 0.0 36 319 + 1.69326 4 3 ack 40 ------- 0 5.0 0.0 36 319 - 1.69326 4 3 ack 40 ------- 0 5.0 0.0 36 319 - 1.6936 3 4 cbr 1000 ------- 1 2.0 7.0 75 304 r 1.694 1 3 cbr 500 ------- 1 1.0 6.0 162 318 + 1.694 3 4 cbr 500 ------- 1 1.0 6.0 162 318 r 1.6956 3 4 cbr 1000 ------- 1 2.0 7.0 72 291 + 1.6956 4 7 cbr 1000 ------- 1 2.0 7.0 72 291 - 1.6956 4 7 cbr 1000 ------- 1 2.0 7.0 72 291 r 1.6956 4 6 cbr 500 ------- 1 1.0 6.0 147 288 + 1.7 2 3 cbr 1000 ------- 1 2.0 7.0 80 324 - 1.7 2 3 cbr 1000 ------- 1 2.0 7.0 80 324 + 1.7 1 3 cbr 500 ------- 1 1.0 6.0 165 325 - 1.7 1 3 cbr 500 ------- 1 1.0 6.0 165 325 r 1.7012 4 5 tcp 1000 ------- 0 0.0 5.0 37 289 + 1.7012 5 4 ack 40 ------- 0 5.0 0.0 37 326 - 1.7012 5 4 ack 40 ------- 0 5.0 0.0 37 326 r 1.70125 0 3 tcp 1000 ------- 0 0.0 5.0 41 320 + 1.70125 3 4 tcp 1000 ------- 0 0.0 5.0 41 320 - 1.7016 3 4 cbr 500 ------- 1 1.0 6.0 156 306 r 1.7036 3 4 tcp 1000 ------- 0 0.0 5.0 38 293 + 1.7036 4 5 tcp 1000 ------- 0 0.0 5.0 38 293 - 1.7036 4 5 tcp 1000 ------- 0 0.0 5.0 38 293 r 1.704 1 3 cbr 500 ------- 1 1.0 6.0 163 322 + 1.704 3 4 cbr 500 ------- 1 1.0 6.0 163 322 - 1.7056 3 4 cbr 500 ------- 1 1.0 6.0 157 308 r 1.7076 3 4 cbr 500 ------- 1 1.0 6.0 150 294 + 1.7076 4 6 cbr 500 ------- 1 1.0 6.0 150 294 - 1.7076 4 6 cbr 500 ------- 1 1.0 6.0 150 294 r 1.7076 4 6 cbr 500 ------- 1 1.0 6.0 148 290 r 1.708 2 3 cbr 1000 ------- 1 2.0 7.0 79 321 + 1.708 3 4 cbr 1000 ------- 1 2.0 7.0 79 321 - 1.7096 3 4 cbr 1000 ------- 1 2.0 7.0 76 307 + 1.71 1 3 cbr 500 ------- 1 1.0 6.0 166 327 - 1.71 1 3 cbr 500 ------- 1 1.0 6.0 166 327 r 1.7116 4 6 cbr 500 ------- 1 1.0 6.0 149 292 r 1.71165 3 0 ack 40 ------- 0 5.0 0.0 34 309 + 1.71165 0 3 tcp 1000 ------- 0 0.0 5.0 42 328 - 1.71165 0 3 tcp 1000 ------- 0 0.0 5.0 42 328 r 1.714 1 3 cbr 500 ------- 1 1.0 6.0 164 323 + 1.714 3 4 cbr 500 ------- 1 1.0 6.0 164 323 r 1.71558 4 3 ack 40 ------- 0 5.0 0.0 35 313 + 1.71558 3 0 ack 40 ------- 0 5.0 0.0 35 313 - 1.71558 3 0 ack 40 ------- 0 5.0 0.0 35 313 r 1.7156 3 4 tcp 1000 ------- 0 0.0 5.0 39 295 + 1.7156 4 5 tcp 1000 ------- 0 0.0 5.0 39 295 - 1.7156 4 5 tcp 1000 ------- 0 0.0 5.0 39 295 - 1.7176 3 4 cbr 500 ------- 1 1.0 6.0 158 310 r 1.7196 3 4 cbr 500 ------- 1 1.0 6.0 151 297 + 1.7196 4 6 cbr 500 ------- 1 1.0 6.0 151 297 - 1.7196 4 6 cbr 500 ------- 1 1.0 6.0 151 297 + 1.72 2 3 cbr 1000 ------- 1 2.0 7.0 81 329 - 1.72 2 3 cbr 1000 ------- 1 2.0 7.0 81 329 + 1.72 1 3 cbr 500 ------- 1 1.0 6.0 167 330 - 1.72 1 3 cbr 500 ------- 1 1.0 6.0 167 330 r 1.72126 5 4 ack 40 ------- 0 5.0 0.0 37 326 + 1.72126 4 3 ack 40 ------- 0 5.0 0.0 37 326 - 1.72126 4 3 ack 40 ------- 0 5.0 0.0 37 326 - 1.7216 3 4 cbr 500 ------- 1 1.0 6.0 159 312 r 1.7236 3 4 cbr 500 ------- 1 1.0 6.0 152 299 + 1.7236 4 6 cbr 500 ------- 1 1.0 6.0 152 299 r 1.7236 4 7 cbr 1000 ------- 1 2.0 7.0 72 291 - 1.7236 4 6 cbr 500 ------- 1 1.0 6.0 152 299 r 1.724 1 3 cbr 500 ------- 1 1.0 6.0 165 325 + 1.724 3 4 cbr 500 ------- 1 1.0 6.0 165 325 r 1.7252 4 5 tcp 1000 ------- 0 0.0 5.0 38 293 + 1.7252 5 4 ack 40 ------- 0 5.0 0.0 38 331 - 1.7252 5 4 ack 40 ------- 0 5.0 0.0 38 331 - 1.7256 3 4 cbr 1000 ------- 1 2.0 7.0 77 311 r 1.7276 3 4 cbr 500 ------- 1 1.0 6.0 153 301 + 1.7276 4 6 cbr 500 ------- 1 1.0 6.0 153 301 - 1.7276 4 6 cbr 500 ------- 1 1.0 6.0 153 301 r 1.728 2 3 cbr 1000 ------- 1 2.0 7.0 80 324 + 1.728 3 4 cbr 1000 ------- 1 2.0 7.0 80 324 + 1.73 1 3 cbr 500 ------- 1 1.0 6.0 168 332 - 1.73 1 3 cbr 500 ------- 1 1.0 6.0 168 332 r 1.7316 4 6 cbr 500 ------- 1 1.0 6.0 150 294 r 1.73325 0 3 tcp 1000 ------- 0 0.0 5.0 42 328 + 1.73325 3 4 tcp 1000 ------- 0 0.0 5.0 42 328 - 1.7336 3 4 tcp 1000 ------- 0 0.0 5.0 40 315 r 1.734 1 3 cbr 500 ------- 1 1.0 6.0 166 327 + 1.734 3 4 cbr 500 ------- 1 1.0 6.0 166 327 r 1.7356 3 4 cbr 1000 ------- 1 2.0 7.0 74 300 + 1.7356 4 7 cbr 1000 ------- 1 2.0 7.0 74 300 - 1.7356 4 7 cbr 1000 ------- 1 2.0 7.0 74 300 r 1.73565 3 0 ack 40 ------- 0 5.0 0.0 35 313 + 1.73565 0 3 tcp 1000 ------- 0 0.0 5.0 43 333 - 1.73565 0 3 tcp 1000 ------- 0 0.0 5.0 43 333 r 1.7372 4 5 tcp 1000 ------- 0 0.0 5.0 39 295 + 1.7372 5 4 ack 40 ------- 0 5.0 0.0 39 334 - 1.7372 5 4 ack 40 ------- 0 5.0 0.0 39 334 r 1.7396 3 4 cbr 500 ------- 1 1.0 6.0 154 303 + 1.7396 4 6 cbr 500 ------- 1 1.0 6.0 154 303 - 1.7396 4 6 cbr 500 ------- 1 1.0 6.0 154 303 + 1.74 2 3 cbr 1000 ------- 1 2.0 7.0 82 335 - 1.74 2 3 cbr 1000 ------- 1 2.0 7.0 82 335 + 1.74 1 3 cbr 500 ------- 1 1.0 6.0 169 336 - 1.74 1 3 cbr 500 ------- 1 1.0 6.0 169 336 - 1.7416 3 4 cbr 500 ------- 1 1.0 6.0 160 314 r 1.74358 4 3 ack 40 ------- 0 5.0 0.0 36 319 + 1.74358 3 0 ack 40 ------- 0 5.0 0.0 36 319 - 1.74358 3 0 ack 40 ------- 0 5.0 0.0 36 319 r 1.7436 3 4 cbr 500 ------- 1 1.0 6.0 155 305 + 1.7436 4 6 cbr 500 ------- 1 1.0 6.0 155 305 r 1.7436 4 6 cbr 500 ------- 1 1.0 6.0 151 297 - 1.7436 4 6 cbr 500 ------- 1 1.0 6.0 155 305 r 1.744 1 3 cbr 500 ------- 1 1.0 6.0 167 330 + 1.744 3 4 cbr 500 ------- 1 1.0 6.0 167 330 r 1.74526 5 4 ack 40 ------- 0 5.0 0.0 38 331 + 1.74526 4 3 ack 40 ------- 0 5.0 0.0 38 331 - 1.74526 4 3 ack 40 ------- 0 5.0 0.0 38 331 - 1.7456 3 4 cbr 500 ------- 1 1.0 6.0 161 317 r 1.7476 4 6 cbr 500 ------- 1 1.0 6.0 152 299 r 1.748 2 3 cbr 1000 ------- 1 2.0 7.0 81 329 + 1.748 3 4 cbr 1000 ------- 1 2.0 7.0 81 329 - 1.7496 3 4 cbr 1000 ------- 1 2.0 7.0 78 316 + 1.75 1 3 cbr 500 ------- 1 1.0 6.0 170 337 - 1.75 1 3 cbr 500 ------- 1 1.0 6.0 170 337 r 1.7516 3 4 cbr 1000 ------- 1 2.0 7.0 75 304 + 1.7516 4 7 cbr 1000 ------- 1 2.0 7.0 75 304 - 1.7516 4 7 cbr 1000 ------- 1 2.0 7.0 75 304 r 1.7516 4 6 cbr 500 ------- 1 1.0 6.0 153 301 r 1.754 1 3 cbr 500 ------- 1 1.0 6.0 168 332 + 1.754 3 4 cbr 500 ------- 1 1.0 6.0 168 332 r 1.7556 3 4 cbr 500 ------- 1 1.0 6.0 156 306 + 1.7556 4 6 cbr 500 ------- 1 1.0 6.0 156 306 - 1.7556 4 6 cbr 500 ------- 1 1.0 6.0 156 306 r 1.75725 0 3 tcp 1000 ------- 0 0.0 5.0 43 333 + 1.75725 3 4 tcp 1000 ------- 0 0.0 5.0 43 333 r 1.75726 5 4 ack 40 ------- 0 5.0 0.0 39 334 + 1.75726 4 3 ack 40 ------- 0 5.0 0.0 39 334 - 1.75726 4 3 ack 40 ------- 0 5.0 0.0 39 334 - 1.7576 3 4 cbr 500 ------- 1 1.0 6.0 162 318 r 1.7596 3 4 cbr 500 ------- 1 1.0 6.0 157 308 + 1.7596 4 6 cbr 500 ------- 1 1.0 6.0 157 308 - 1.7596 4 6 cbr 500 ------- 1 1.0 6.0 157 308 + 1.76 2 3 cbr 1000 ------- 1 2.0 7.0 83 338 - 1.76 2 3 cbr 1000 ------- 1 2.0 7.0 83 338 + 1.76 1 3 cbr 500 ------- 1 1.0 6.0 171 339 - 1.76 1 3 cbr 500 ------- 1 1.0 6.0 171 339 - 1.7616 3 4 tcp 1000 ------- 0 0.0 5.0 41 320 r 1.7636 4 7 cbr 1000 ------- 1 2.0 7.0 74 300 r 1.7636 4 6 cbr 500 ------- 1 1.0 6.0 154 303 r 1.76365 3 0 ack 40 ------- 0 5.0 0.0 36 319 + 1.76365 0 3 tcp 1000 ------- 0 0.0 5.0 44 340 - 1.76365 0 3 tcp 1000 ------- 0 0.0 5.0 44 340 r 1.764 1 3 cbr 500 ------- 1 1.0 6.0 169 336 + 1.764 3 4 cbr 500 ------- 1 1.0 6.0 169 336 r 1.7676 3 4 cbr 1000 ------- 1 2.0 7.0 76 307 + 1.7676 4 7 cbr 1000 ------- 1 2.0 7.0 76 307 - 1.7676 4 7 cbr 1000 ------- 1 2.0 7.0 76 307 r 1.7676 4 6 cbr 500 ------- 1 1.0 6.0 155 305 r 1.768 2 3 cbr 1000 ------- 1 2.0 7.0 82 335 + 1.768 3 4 cbr 1000 ------- 1 2.0 7.0 82 335 - 1.7696 3 4 cbr 500 ------- 1 1.0 6.0 163 322 + 1.77 1 3 cbr 500 ------- 1 1.0 6.0 172 341 - 1.77 1 3 cbr 500 ------- 1 1.0 6.0 172 341 r 1.77158 4 3 ack 40 ------- 0 5.0 0.0 37 326 + 1.77158 3 0 ack 40 ------- 0 5.0 0.0 37 326 - 1.77158 3 0 ack 40 ------- 0 5.0 0.0 37 326 r 1.7716 3 4 cbr 500 ------- 1 1.0 6.0 158 310 + 1.7716 4 6 cbr 500 ------- 1 1.0 6.0 158 310 - 1.7716 4 6 cbr 500 ------- 1 1.0 6.0 158 310 - 1.7736 3 4 cbr 1000 ------- 1 2.0 7.0 79 321 r 1.774 1 3 cbr 500 ------- 1 1.0 6.0 170 337 + 1.774 3 4 cbr 500 ------- 1 1.0 6.0 170 337 r 1.7756 3 4 cbr 500 ------- 1 1.0 6.0 159 312 + 1.7756 4 6 cbr 500 ------- 1 1.0 6.0 159 312 - 1.7756 4 6 cbr 500 ------- 1 1.0 6.0 159 312 r 1.7796 4 7 cbr 1000 ------- 1 2.0 7.0 75 304 r 1.7796 4 6 cbr 500 ------- 1 1.0 6.0 156 306 + 1.78 2 3 cbr 1000 ------- 1 2.0 7.0 84 342 - 1.78 2 3 cbr 1000 ------- 1 2.0 7.0 84 342 + 1.78 1 3 cbr 500 ------- 1 1.0 6.0 173 343 - 1.78 1 3 cbr 500 ------- 1 1.0 6.0 173 343 - 1.7816 3 4 cbr 500 ------- 1 1.0 6.0 164 323 r 1.7836 3 4 cbr 1000 ------- 1 2.0 7.0 77 311 + 1.7836 4 7 cbr 1000 ------- 1 2.0 7.0 77 311 - 1.7836 4 7 cbr 1000 ------- 1 2.0 7.0 77 311 r 1.7836 4 6 cbr 500 ------- 1 1.0 6.0 157 308 r 1.784 1 3 cbr 500 ------- 1 1.0 6.0 171 339 + 1.784 3 4 cbr 500 ------- 1 1.0 6.0 171 339 r 1.78525 0 3 tcp 1000 ------- 0 0.0 5.0 44 340 + 1.78525 3 4 tcp 1000 ------- 0 0.0 5.0 44 340 - 1.7856 3 4 cbr 500 ------- 1 1.0 6.0 165 325 r 1.788 2 3 cbr 1000 ------- 1 2.0 7.0 83 338 + 1.788 3 4 cbr 1000 ------- 1 2.0 7.0 83 338 - 1.7896 3 4 cbr 1000 ------- 1 2.0 7.0 80 324 + 1.79 1 3 cbr 500 ------- 1 1.0 6.0 174 344 - 1.79 1 3 cbr 500 ------- 1 1.0 6.0 174 344 r 1.7916 3 4 tcp 1000 ------- 0 0.0 5.0 40 315 + 1.7916 4 5 tcp 1000 ------- 0 0.0 5.0 40 315 - 1.7916 4 5 tcp 1000 ------- 0 0.0 5.0 40 315 r 1.79165 3 0 ack 40 ------- 0 5.0 0.0 37 326 + 1.79165 0 3 tcp 1000 ------- 0 0.0 5.0 45 345 - 1.79165 0 3 tcp 1000 ------- 0 0.0 5.0 45 345 r 1.794 1 3 cbr 500 ------- 1 1.0 6.0 172 341 + 1.794 3 4 cbr 500 ------- 1 1.0 6.0 172 341 r 1.79558 4 3 ack 40 ------- 0 5.0 0.0 38 331 + 1.79558 3 0 ack 40 ------- 0 5.0 0.0 38 331 - 1.79558 3 0 ack 40 ------- 0 5.0 0.0 38 331 r 1.7956 3 4 cbr 500 ------- 1 1.0 6.0 160 314 + 1.7956 4 6 cbr 500 ------- 1 1.0 6.0 160 314 - 1.7956 4 6 cbr 500 ------- 1 1.0 6.0 160 314 r 1.7956 4 7 cbr 1000 ------- 1 2.0 7.0 76 307 r 1.7956 4 6 cbr 500 ------- 1 1.0 6.0 158 310 - 1.7976 3 4 tcp 1000 ------- 0 0.0 5.0 42 328 r 1.7996 3 4 cbr 500 ------- 1 1.0 6.0 161 317 + 1.7996 4 6 cbr 500 ------- 1 1.0 6.0 161 317 r 1.7996 4 6 cbr 500 ------- 1 1.0 6.0 159 312 - 1.7996 4 6 cbr 500 ------- 1 1.0 6.0 161 317 + 1.8 2 3 cbr 1000 ------- 1 2.0 7.0 85 346 - 1.8 2 3 cbr 1000 ------- 1 2.0 7.0 85 346 + 1.8 1 3 cbr 500 ------- 1 1.0 6.0 175 347 - 1.8 1 3 cbr 500 ------- 1 1.0 6.0 175 347 r 1.804 1 3 cbr 500 ------- 1 1.0 6.0 173 343 + 1.804 3 4 cbr 500 ------- 1 1.0 6.0 173 343 - 1.8056 3 4 cbr 500 ------- 1 1.0 6.0 166 327 r 1.80758 4 3 ack 40 ------- 0 5.0 0.0 39 334 + 1.80758 3 0 ack 40 ------- 0 5.0 0.0 39 334 - 1.80758 3 0 ack 40 ------- 0 5.0 0.0 39 334 r 1.8076 3 4 cbr 1000 ------- 1 2.0 7.0 78 316 + 1.8076 4 7 cbr 1000 ------- 1 2.0 7.0 78 316 - 1.8076 4 7 cbr 1000 ------- 1 2.0 7.0 78 316 r 1.808 2 3 cbr 1000 ------- 1 2.0 7.0 84 342 + 1.808 3 4 cbr 1000 ------- 1 2.0 7.0 84 342 - 1.8096 3 4 cbr 500 ------- 1 1.0 6.0 167 330 + 1.81 1 3 cbr 500 ------- 1 1.0 6.0 176 348 - 1.81 1 3 cbr 500 ------- 1 1.0 6.0 176 348 r 1.8116 3 4 cbr 500 ------- 1 1.0 6.0 162 318 + 1.8116 4 6 cbr 500 ------- 1 1.0 6.0 162 318 - 1.8116 4 6 cbr 500 ------- 1 1.0 6.0 162 318 r 1.8116 4 7 cbr 1000 ------- 1 2.0 7.0 77 311 r 1.8132 4 5 tcp 1000 ------- 0 0.0 5.0 40 315 + 1.8132 5 4 ack 40 ------- 0 5.0 0.0 40 349 - 1.8132 5 4 ack 40 ------- 0 5.0 0.0 40 349 r 1.81325 0 3 tcp 1000 ------- 0 0.0 5.0 45 345 + 1.81325 3 4 tcp 1000 ------- 0 0.0 5.0 45 345 - 1.8136 3 4 cbr 1000 ------- 1 2.0 7.0 81 329 r 1.814 1 3 cbr 500 ------- 1 1.0 6.0 174 344 + 1.814 3 4 cbr 500 ------- 1 1.0 6.0 174 344 r 1.81565 3 0 ack 40 ------- 0 5.0 0.0 38 331 + 1.81565 0 3 tcp 1000 ------- 0 0.0 5.0 46 350 - 1.81565 0 3 tcp 1000 ------- 0 0.0 5.0 46 350 r 1.8196 3 4 tcp 1000 ------- 0 0.0 5.0 41 320 + 1.8196 4 5 tcp 1000 ------- 0 0.0 5.0 41 320 - 1.8196 4 5 tcp 1000 ------- 0 0.0 5.0 41 320 r 1.8196 4 6 cbr 500 ------- 1 1.0 6.0 160 314 + 1.82 2 3 cbr 1000 ------- 1 2.0 7.0 86 351 - 1.82 2 3 cbr 1000 ------- 1 2.0 7.0 86 351 + 1.82 1 3 cbr 500 ------- 1 1.0 6.0 177 352 - 1.82 1 3 cbr 500 ------- 1 1.0 6.0 177 352 - 1.8216 3 4 cbr 500 ------- 1 1.0 6.0 168 332 r 1.8236 3 4 cbr 500 ------- 1 1.0 6.0 163 322 + 1.8236 4 6 cbr 500 ------- 1 1.0 6.0 163 322 - 1.8236 4 6 cbr 500 ------- 1 1.0 6.0 163 322 r 1.8236 4 6 cbr 500 ------- 1 1.0 6.0 161 317 r 1.824 1 3 cbr 500 ------- 1 1.0 6.0 175 347 + 1.824 3 4 cbr 500 ------- 1 1.0 6.0 175 347 - 1.8256 3 4 tcp 1000 ------- 0 0.0 5.0 43 333 r 1.82765 3 0 ack 40 ------- 0 5.0 0.0 39 334 + 1.82765 0 3 tcp 1000 ------- 0 0.0 5.0 47 353 - 1.82765 0 3 tcp 1000 ------- 0 0.0 5.0 47 353 r 1.828 2 3 cbr 1000 ------- 1 2.0 7.0 85 346 + 1.828 3 4 cbr 1000 ------- 1 2.0 7.0 85 346 + 1.83 1 3 cbr 500 ------- 1 1.0 6.0 178 354 - 1.83 1 3 cbr 500 ------- 1 1.0 6.0 178 354 r 1.8316 3 4 cbr 1000 ------- 1 2.0 7.0 79 321 + 1.8316 4 7 cbr 1000 ------- 1 2.0 7.0 79 321 - 1.8316 4 7 cbr 1000 ------- 1 2.0 7.0 79 321 r 1.83326 5 4 ack 40 ------- 0 5.0 0.0 40 349 + 1.83326 4 3 ack 40 ------- 0 5.0 0.0 40 349 - 1.83326 4 3 ack 40 ------- 0 5.0 0.0 40 349 - 1.8336 3 4 cbr 500 ------- 1 1.0 6.0 169 336 r 1.834 1 3 cbr 500 ------- 1 1.0 6.0 176 348 + 1.834 3 4 cbr 500 ------- 1 1.0 6.0 176 348 r 1.8356 3 4 cbr 500 ------- 1 1.0 6.0 164 323 + 1.8356 4 6 cbr 500 ------- 1 1.0 6.0 164 323 - 1.8356 4 6 cbr 500 ------- 1 1.0 6.0 164 323 r 1.8356 4 7 cbr 1000 ------- 1 2.0 7.0 78 316 r 1.8356 4 6 cbr 500 ------- 1 1.0 6.0 162 318 r 1.83725 0 3 tcp 1000 ------- 0 0.0 5.0 46 350 + 1.83725 3 4 tcp 1000 ------- 0 0.0 5.0 46 350 - 1.8376 3 4 cbr 1000 ------- 1 2.0 7.0 82 335 r 1.8396 3 4 cbr 500 ------- 1 1.0 6.0 165 325 + 1.8396 4 6 cbr 500 ------- 1 1.0 6.0 165 325 - 1.8396 4 6 cbr 500 ------- 1 1.0 6.0 165 325 + 1.84 2 3 cbr 1000 ------- 1 2.0 7.0 87 355 - 1.84 2 3 cbr 1000 ------- 1 2.0 7.0 87 355 + 1.84 1 3 cbr 500 ------- 1 1.0 6.0 179 356 - 1.84 1 3 cbr 500 ------- 1 1.0 6.0 179 356 r 1.8412 4 5 tcp 1000 ------- 0 0.0 5.0 41 320 + 1.8412 5 4 ack 40 ------- 0 5.0 0.0 41 357 - 1.8412 5 4 ack 40 ------- 0 5.0 0.0 41 357 r 1.844 1 3 cbr 500 ------- 1 1.0 6.0 177 352 + 1.844 3 4 cbr 500 ------- 1 1.0 6.0 177 352 - 1.8456 3 4 cbr 500 ------- 1 1.0 6.0 170 337 r 1.8476 3 4 cbr 1000 ------- 1 2.0 7.0 80 324 + 1.8476 4 7 cbr 1000 ------- 1 2.0 7.0 80 324 - 1.8476 4 7 cbr 1000 ------- 1 2.0 7.0 80 324 r 1.8476 4 6 cbr 500 ------- 1 1.0 6.0 163 322 r 1.848 2 3 cbr 1000 ------- 1 2.0 7.0 86 351 + 1.848 3 4 cbr 1000 ------- 1 2.0 7.0 86 351 r 1.84925 0 3 tcp 1000 ------- 0 0.0 5.0 47 353 + 1.84925 3 4 tcp 1000 ------- 0 0.0 5.0 47 353 d 1.84925 3 4 tcp 1000 ------- 0 0.0 5.0 47 353 - 1.8496 3 4 cbr 500 ------- 1 1.0 6.0 171 339 + 1.85 1 3 cbr 500 ------- 1 1.0 6.0 180 358 - 1.85 1 3 cbr 500 ------- 1 1.0 6.0 180 358 - 1.8536 3 4 tcp 1000 ------- 0 0.0 5.0 44 340 r 1.854 1 3 cbr 500 ------- 1 1.0 6.0 178 354 + 1.854 3 4 cbr 500 ------- 1 1.0 6.0 178 354 r 1.8556 3 4 tcp 1000 ------- 0 0.0 5.0 42 328 + 1.8556 4 5 tcp 1000 ------- 0 0.0 5.0 42 328 - 1.8556 4 5 tcp 1000 ------- 0 0.0 5.0 42 328 r 1.8596 3 4 cbr 500 ------- 1 1.0 6.0 166 327 + 1.8596 4 6 cbr 500 ------- 1 1.0 6.0 166 327 - 1.8596 4 6 cbr 500 ------- 1 1.0 6.0 166 327 r 1.8596 4 7 cbr 1000 ------- 1 2.0 7.0 79 321 r 1.8596 4 6 cbr 500 ------- 1 1.0 6.0 164 323 + 1.86 2 3 cbr 1000 ------- 1 2.0 7.0 88 359 - 1.86 2 3 cbr 1000 ------- 1 2.0 7.0 88 359 + 1.86 1 3 cbr 500 ------- 1 1.0 6.0 181 360 - 1.86 1 3 cbr 500 ------- 1 1.0 6.0 181 360 r 1.86126 5 4 ack 40 ------- 0 5.0 0.0 41 357 + 1.86126 4 3 ack 40 ------- 0 5.0 0.0 41 357 - 1.86126 4 3 ack 40 ------- 0 5.0 0.0 41 357 - 1.8616 3 4 cbr 1000 ------- 1 2.0 7.0 83 338 r 1.8636 3 4 cbr 500 ------- 1 1.0 6.0 167 330 + 1.8636 4 6 cbr 500 ------- 1 1.0 6.0 167 330 r 1.8636 4 6 cbr 500 ------- 1 1.0 6.0 165 325 - 1.8636 4 6 cbr 500 ------- 1 1.0 6.0 167 330 r 1.864 1 3 cbr 500 ------- 1 1.0 6.0 179 356 + 1.864 3 4 cbr 500 ------- 1 1.0 6.0 179 356 r 1.868 2 3 cbr 1000 ------- 1 2.0 7.0 87 355 + 1.868 3 4 cbr 1000 ------- 1 2.0 7.0 87 355 - 1.8696 3 4 cbr 500 ------- 1 1.0 6.0 172 341 + 1.87 1 3 cbr 500 ------- 1 1.0 6.0 182 361 - 1.87 1 3 cbr 500 ------- 1 1.0 6.0 182 361 r 1.8716 3 4 cbr 1000 ------- 1 2.0 7.0 81 329 + 1.8716 4 7 cbr 1000 ------- 1 2.0 7.0 81 329 - 1.8716 4 7 cbr 1000 ------- 1 2.0 7.0 81 329 - 1.8736 3 4 cbr 500 ------- 1 1.0 6.0 173 343 r 1.874 1 3 cbr 500 ------- 1 1.0 6.0 180 358 + 1.874 3 4 cbr 500 ------- 1 1.0 6.0 180 358 r 1.8756 3 4 cbr 500 ------- 1 1.0 6.0 168 332 + 1.8756 4 6 cbr 500 ------- 1 1.0 6.0 168 332 - 1.8756 4 6 cbr 500 ------- 1 1.0 6.0 168 332 r 1.8756 4 7 cbr 1000 ------- 1 2.0 7.0 80 324 r 1.8772 4 5 tcp 1000 ------- 0 0.0 5.0 42 328 + 1.8772 5 4 ack 40 ------- 0 5.0 0.0 42 362 - 1.8772 5 4 ack 40 ------- 0 5.0 0.0 42 362 - 1.8776 3 4 cbr 1000 ------- 1 2.0 7.0 84 342 + 1.88 2 3 cbr 1000 ------- 1 2.0 7.0 89 363 - 1.88 2 3 cbr 1000 ------- 1 2.0 7.0 89 363 + 1.88 1 3 cbr 500 ------- 1 1.0 6.0 183 364 - 1.88 1 3 cbr 500 ------- 1 1.0 6.0 183 364 r 1.88358 4 3 ack 40 ------- 0 5.0 0.0 40 349 + 1.88358 3 0 ack 40 ------- 0 5.0 0.0 40 349 - 1.88358 3 0 ack 40 ------- 0 5.0 0.0 40 349 r 1.8836 3 4 tcp 1000 ------- 0 0.0 5.0 43 333 + 1.8836 4 5 tcp 1000 ------- 0 0.0 5.0 43 333 - 1.8836 4 5 tcp 1000 ------- 0 0.0 5.0 43 333 r 1.8836 4 6 cbr 500 ------- 1 1.0 6.0 166 327 r 1.884 1 3 cbr 500 ------- 1 1.0 6.0 181 360 + 1.884 3 4 cbr 500 ------- 1 1.0 6.0 181 360 - 1.8856 3 4 tcp 1000 ------- 0 0.0 5.0 45 345 r 1.8876 3 4 cbr 500 ------- 1 1.0 6.0 169 336 + 1.8876 4 6 cbr 500 ------- 1 1.0 6.0 169 336 - 1.8876 4 6 cbr 500 ------- 1 1.0 6.0 169 336 r 1.8876 4 6 cbr 500 ------- 1 1.0 6.0 167 330 r 1.888 2 3 cbr 1000 ------- 1 2.0 7.0 88 359 + 1.888 3 4 cbr 1000 ------- 1 2.0 7.0 88 359 + 1.89 1 3 cbr 500 ------- 1 1.0 6.0 184 365 - 1.89 1 3 cbr 500 ------- 1 1.0 6.0 184 365 - 1.8936 3 4 cbr 500 ------- 1 1.0 6.0 174 344 r 1.894 1 3 cbr 500 ------- 1 1.0 6.0 182 361 + 1.894 3 4 cbr 500 ------- 1 1.0 6.0 182 361 r 1.8956 3 4 cbr 1000 ------- 1 2.0 7.0 82 335 + 1.8956 4 7 cbr 1000 ------- 1 2.0 7.0 82 335 - 1.8956 4 7 cbr 1000 ------- 1 2.0 7.0 82 335 r 1.89726 5 4 ack 40 ------- 0 5.0 0.0 42 362 + 1.89726 4 3 ack 40 ------- 0 5.0 0.0 42 362 - 1.89726 4 3 ack 40 ------- 0 5.0 0.0 42 362 - 1.8976 3 4 cbr 500 ------- 1 1.0 6.0 175 347 r 1.8996 3 4 cbr 500 ------- 1 1.0 6.0 170 337 + 1.8996 4 6 cbr 500 ------- 1 1.0 6.0 170 337 - 1.8996 4 6 cbr 500 ------- 1 1.0 6.0 170 337 r 1.8996 4 7 cbr 1000 ------- 1 2.0 7.0 81 329 r 1.8996 4 6 cbr 500 ------- 1 1.0 6.0 168 332 + 1.9 2 3 cbr 1000 ------- 1 2.0 7.0 90 366 - 1.9 2 3 cbr 1000 ------- 1 2.0 7.0 90 366 + 1.9 1 3 cbr 500 ------- 1 1.0 6.0 185 367 - 1.9 1 3 cbr 500 ------- 1 1.0 6.0 185 367 - 1.9016 3 4 cbr 1000 ------- 1 2.0 7.0 85 346 r 1.9036 3 4 cbr 500 ------- 1 1.0 6.0 171 339 + 1.9036 4 6 cbr 500 ------- 1 1.0 6.0 171 339 - 1.9036 4 6 cbr 500 ------- 1 1.0 6.0 171 339 r 1.90365 3 0 ack 40 ------- 0 5.0 0.0 40 349 + 1.90365 0 3 tcp 1000 ------- 0 0.0 5.0 48 368 - 1.90365 0 3 tcp 1000 ------- 0 0.0 5.0 48 368 r 1.904 1 3 cbr 500 ------- 1 1.0 6.0 183 364 + 1.904 3 4 cbr 500 ------- 1 1.0 6.0 183 364 r 1.9052 4 5 tcp 1000 ------- 0 0.0 5.0 43 333 + 1.9052 5 4 ack 40 ------- 0 5.0 0.0 43 369 - 1.9052 5 4 ack 40 ------- 0 5.0 0.0 43 369 r 1.908 2 3 cbr 1000 ------- 1 2.0 7.0 89 363 + 1.908 3 4 cbr 1000 ------- 1 2.0 7.0 89 363 - 1.9096 3 4 cbr 500 ------- 1 1.0 6.0 176 348 + 1.91 1 3 cbr 500 ------- 1 1.0 6.0 186 370 - 1.91 1 3 cbr 500 ------- 1 1.0 6.0 186 370 r 1.91158 4 3 ack 40 ------- 0 5.0 0.0 41 357 + 1.91158 3 0 ack 40 ------- 0 5.0 0.0 41 357 - 1.91158 3 0 ack 40 ------- 0 5.0 0.0 41 357 r 1.9116 3 4 tcp 1000 ------- 0 0.0 5.0 44 340 + 1.9116 4 5 tcp 1000 ------- 0 0.0 5.0 44 340 - 1.9116 4 5 tcp 1000 ------- 0 0.0 5.0 44 340 r 1.9116 4 6 cbr 500 ------- 1 1.0 6.0 169 336 - 1.9136 3 4 tcp 1000 ------- 0 0.0 5.0 46 350 r 1.914 1 3 cbr 500 ------- 1 1.0 6.0 184 365 + 1.914 3 4 cbr 500 ------- 1 1.0 6.0 184 365 r 1.9196 3 4 cbr 1000 ------- 1 2.0 7.0 83 338 + 1.9196 4 7 cbr 1000 ------- 1 2.0 7.0 83 338 - 1.9196 4 7 cbr 1000 ------- 1 2.0 7.0 83 338 + 1.92 2 3 cbr 1000 ------- 1 2.0 7.0 91 371 - 1.92 2 3 cbr 1000 ------- 1 2.0 7.0 91 371 + 1.92 1 3 cbr 500 ------- 1 1.0 6.0 187 372 - 1.92 1 3 cbr 500 ------- 1 1.0 6.0 187 372 - 1.9216 3 4 cbr 500 ------- 1 1.0 6.0 177 352 r 1.9236 3 4 cbr 500 ------- 1 1.0 6.0 172 341 + 1.9236 4 6 cbr 500 ------- 1 1.0 6.0 172 341 - 1.9236 4 6 cbr 500 ------- 1 1.0 6.0 172 341 r 1.9236 4 7 cbr 1000 ------- 1 2.0 7.0 82 335 r 1.9236 4 6 cbr 500 ------- 1 1.0 6.0 170 337 r 1.924 1 3 cbr 500 ------- 1 1.0 6.0 185 367 + 1.924 3 4 cbr 500 ------- 1 1.0 6.0 185 367 r 1.92525 0 3 tcp 1000 ------- 0 0.0 5.0 48 368 + 1.92525 3 4 tcp 1000 ------- 0 0.0 5.0 48 368 r 1.92526 5 4 ack 40 ------- 0 5.0 0.0 43 369 + 1.92526 4 3 ack 40 ------- 0 5.0 0.0 43 369 - 1.92526 4 3 ack 40 ------- 0 5.0 0.0 43 369 - 1.9256 3 4 cbr 1000 ------- 1 2.0 7.0 86 351 r 1.9276 3 4 cbr 500 ------- 1 1.0 6.0 173 343 + 1.9276 4 6 cbr 500 ------- 1 1.0 6.0 173 343 r 1.9276 4 6 cbr 500 ------- 1 1.0 6.0 171 339 - 1.9276 4 6 cbr 500 ------- 1 1.0 6.0 173 343 r 1.928 2 3 cbr 1000 ------- 1 2.0 7.0 90 366 + 1.928 3 4 cbr 1000 ------- 1 2.0 7.0 90 366 + 1.93 1 3 cbr 500 ------- 1 1.0 6.0 188 373 - 1.93 1 3 cbr 500 ------- 1 1.0 6.0 188 373 r 1.93165 3 0 ack 40 ------- 0 5.0 0.0 41 357 + 1.93165 0 3 tcp 1000 ------- 0 0.0 5.0 49 374 - 1.93165 0 3 tcp 1000 ------- 0 0.0 5.0 49 374 r 1.9332 4 5 tcp 1000 ------- 0 0.0 5.0 44 340 + 1.9332 5 4 ack 40 ------- 0 5.0 0.0 44 375 - 1.9332 5 4 ack 40 ------- 0 5.0 0.0 44 375 - 1.9336 3 4 cbr 500 ------- 1 1.0 6.0 178 354 r 1.934 1 3 cbr 500 ------- 1 1.0 6.0 186 370 + 1.934 3 4 cbr 500 ------- 1 1.0 6.0 186 370 r 1.9356 3 4 cbr 1000 ------- 1 2.0 7.0 84 342 + 1.9356 4 7 cbr 1000 ------- 1 2.0 7.0 84 342 - 1.9356 4 7 cbr 1000 ------- 1 2.0 7.0 84 342 - 1.9376 3 4 cbr 500 ------- 1 1.0 6.0 179 356 + 1.94 2 3 cbr 1000 ------- 1 2.0 7.0 92 376 - 1.94 2 3 cbr 1000 ------- 1 2.0 7.0 92 376 + 1.94 1 3 cbr 500 ------- 1 1.0 6.0 189 377 - 1.94 1 3 cbr 500 ------- 1 1.0 6.0 189 377 - 1.9416 3 4 cbr 1000 ------- 1 2.0 7.0 87 355 r 1.9436 3 4 tcp 1000 ------- 0 0.0 5.0 45 345 + 1.9436 4 5 tcp 1000 ------- 0 0.0 5.0 45 345 - 1.9436 4 5 tcp 1000 ------- 0 0.0 5.0 45 345 r 1.944 1 3 cbr 500 ------- 1 1.0 6.0 187 372 + 1.944 3 4 cbr 500 ------- 1 1.0 6.0 187 372 r 1.94758 4 3 ack 40 ------- 0 5.0 0.0 42 362 + 1.94758 3 0 ack 40 ------- 0 5.0 0.0 42 362 - 1.94758 3 0 ack 40 ------- 0 5.0 0.0 42 362 r 1.9476 3 4 cbr 500 ------- 1 1.0 6.0 174 344 + 1.9476 4 6 cbr 500 ------- 1 1.0 6.0 174 344 - 1.9476 4 6 cbr 500 ------- 1 1.0 6.0 174 344 r 1.9476 4 7 cbr 1000 ------- 1 2.0 7.0 83 338 r 1.9476 4 6 cbr 500 ------- 1 1.0 6.0 172 341 r 1.948 2 3 cbr 1000 ------- 1 2.0 7.0 91 371 + 1.948 3 4 cbr 1000 ------- 1 2.0 7.0 91 371 - 1.9496 3 4 cbr 500 ------- 1 1.0 6.0 180 358 + 1.95 1 3 cbr 500 ------- 1 1.0 6.0 190 378 - 1.95 1 3 cbr 500 ------- 1 1.0 6.0 190 378 r 1.9516 3 4 cbr 500 ------- 1 1.0 6.0 175 347 + 1.9516 4 6 cbr 500 ------- 1 1.0 6.0 175 347 r 1.9516 4 6 cbr 500 ------- 1 1.0 6.0 173 343 - 1.9516 4 6 cbr 500 ------- 1 1.0 6.0 175 347 r 1.95325 0 3 tcp 1000 ------- 0 0.0 5.0 49 374 + 1.95325 3 4 tcp 1000 ------- 0 0.0 5.0 49 374 r 1.95326 5 4 ack 40 ------- 0 5.0 0.0 44 375 + 1.95326 4 3 ack 40 ------- 0 5.0 0.0 44 375 - 1.95326 4 3 ack 40 ------- 0 5.0 0.0 44 375 - 1.9536 3 4 cbr 500 ------- 1 1.0 6.0 181 360 r 1.954 1 3 cbr 500 ------- 1 1.0 6.0 188 373 + 1.954 3 4 cbr 500 ------- 1 1.0 6.0 188 373 - 1.9576 3 4 cbr 1000 ------- 1 2.0 7.0 88 359 r 1.9596 3 4 cbr 1000 ------- 1 2.0 7.0 85 346 + 1.9596 4 7 cbr 1000 ------- 1 2.0 7.0 85 346 - 1.9596 4 7 cbr 1000 ------- 1 2.0 7.0 85 346 + 1.96 2 3 cbr 1000 ------- 1 2.0 7.0 93 379 - 1.96 2 3 cbr 1000 ------- 1 2.0 7.0 93 379 + 1.96 1 3 cbr 500 ------- 1 1.0 6.0 191 380 - 1.96 1 3 cbr 500 ------- 1 1.0 6.0 191 380 r 1.9636 3 4 cbr 500 ------- 1 1.0 6.0 176 348 + 1.9636 4 6 cbr 500 ------- 1 1.0 6.0 176 348 - 1.9636 4 6 cbr 500 ------- 1 1.0 6.0 176 348 r 1.9636 4 7 cbr 1000 ------- 1 2.0 7.0 84 342 r 1.964 1 3 cbr 500 ------- 1 1.0 6.0 189 377 + 1.964 3 4 cbr 500 ------- 1 1.0 6.0 189 377 r 1.9652 4 5 tcp 1000 ------- 0 0.0 5.0 45 345 + 1.9652 5 4 ack 40 ------- 0 5.0 0.0 45 381 - 1.9652 5 4 ack 40 ------- 0 5.0 0.0 45 381 - 1.9656 3 4 cbr 500 ------- 1 1.0 6.0 182 361 r 1.96765 3 0 ack 40 ------- 0 5.0 0.0 42 362 + 1.96765 0 3 tcp 1000 ------- 0 0.0 5.0 50 382 - 1.96765 0 3 tcp 1000 ------- 0 0.0 5.0 50 382 r 1.968 2 3 cbr 1000 ------- 1 2.0 7.0 92 376 + 1.968 3 4 cbr 1000 ------- 1 2.0 7.0 92 376 - 1.9696 3 4 cbr 500 ------- 1 1.0 6.0 183 364 + 1.97 1 3 cbr 500 ------- 1 1.0 6.0 192 383 - 1.97 1 3 cbr 500 ------- 1 1.0 6.0 192 383 r 1.9716 3 4 tcp 1000 ------- 0 0.0 5.0 46 350 + 1.9716 4 5 tcp 1000 ------- 0 0.0 5.0 46 350 - 1.9716 4 5 tcp 1000 ------- 0 0.0 5.0 46 350 r 1.9716 4 6 cbr 500 ------- 1 1.0 6.0 174 344 - 1.9736 3 4 cbr 1000 ------- 1 2.0 7.0 89 363 r 1.974 1 3 cbr 500 ------- 1 1.0 6.0 190 378 + 1.974 3 4 cbr 500 ------- 1 1.0 6.0 190 378 r 1.97558 4 3 ack 40 ------- 0 5.0 0.0 43 369 + 1.97558 3 0 ack 40 ------- 0 5.0 0.0 43 369 - 1.97558 3 0 ack 40 ------- 0 5.0 0.0 43 369 r 1.9756 3 4 cbr 500 ------- 1 1.0 6.0 177 352 + 1.9756 4 6 cbr 500 ------- 1 1.0 6.0 177 352 - 1.9756 4 6 cbr 500 ------- 1 1.0 6.0 177 352 r 1.9756 4 6 cbr 500 ------- 1 1.0 6.0 175 347 + 1.98 2 3 cbr 1000 ------- 1 2.0 7.0 94 384 - 1.98 2 3 cbr 1000 ------- 1 2.0 7.0 94 384 + 1.98 1 3 cbr 500 ------- 1 1.0 6.0 193 385 - 1.98 1 3 cbr 500 ------- 1 1.0 6.0 193 385 - 1.9816 3 4 cbr 500 ------- 1 1.0 6.0 184 365 r 1.9836 3 4 cbr 1000 ------- 1 2.0 7.0 86 351 + 1.9836 4 7 cbr 1000 ------- 1 2.0 7.0 86 351 - 1.9836 4 7 cbr 1000 ------- 1 2.0 7.0 86 351 r 1.984 1 3 cbr 500 ------- 1 1.0 6.0 191 380 + 1.984 3 4 cbr 500 ------- 1 1.0 6.0 191 380 r 1.98526 5 4 ack 40 ------- 0 5.0 0.0 45 381 + 1.98526 4 3 ack 40 ------- 0 5.0 0.0 45 381 - 1.98526 4 3 ack 40 ------- 0 5.0 0.0 45 381 - 1.9856 3 4 cbr 500 ------- 1 1.0 6.0 185 367 r 1.9876 3 4 cbr 500 ------- 1 1.0 6.0 178 354 + 1.9876 4 6 cbr 500 ------- 1 1.0 6.0 178 354 - 1.9876 4 6 cbr 500 ------- 1 1.0 6.0 178 354 r 1.9876 4 7 cbr 1000 ------- 1 2.0 7.0 85 346 r 1.9876 4 6 cbr 500 ------- 1 1.0 6.0 176 348 r 1.988 2 3 cbr 1000 ------- 1 2.0 7.0 93 379 + 1.988 3 4 cbr 1000 ------- 1 2.0 7.0 93 379 r 1.98925 0 3 tcp 1000 ------- 0 0.0 5.0 50 382 + 1.98925 3 4 tcp 1000 ------- 0 0.0 5.0 50 382 - 1.9896 3 4 tcp 1000 ------- 0 0.0 5.0 48 368 + 1.99 1 3 cbr 500 ------- 1 1.0 6.0 194 386 - 1.99 1 3 cbr 500 ------- 1 1.0 6.0 194 386 r 1.9916 3 4 cbr 500 ------- 1 1.0 6.0 179 356 + 1.9916 4 6 cbr 500 ------- 1 1.0 6.0 179 356 - 1.9916 4 6 cbr 500 ------- 1 1.0 6.0 179 356 r 1.9932 4 5 tcp 1000 ------- 0 0.0 5.0 46 350 + 1.9932 5 4 ack 40 ------- 0 5.0 0.0 46 387 - 1.9932 5 4 ack 40 ------- 0 5.0 0.0 46 387 r 1.994 1 3 cbr 500 ------- 1 1.0 6.0 192 383 + 1.994 3 4 cbr 500 ------- 1 1.0 6.0 192 383 r 1.99565 3 0 ack 40 ------- 0 5.0 0.0 43 369 + 1.99565 0 3 tcp 1000 ------- 0 0.0 5.0 51 388 - 1.99565 0 3 tcp 1000 ------- 0 0.0 5.0 51 388 - 1.9976 3 4 cbr 1000 ------- 1 2.0 7.0 90 366 r 1.9996 3 4 cbr 1000 ------- 1 2.0 7.0 87 355 + 1.9996 4 7 cbr 1000 ------- 1 2.0 7.0 87 355 - 1.9996 4 7 cbr 1000 ------- 1 2.0 7.0 87 355 r 1.9996 4 6 cbr 500 ------- 1 1.0 6.0 177 352 + 2 2 3 cbr 1000 ------- 1 2.0 7.0 95 389 - 2 2 3 cbr 1000 ------- 1 2.0 7.0 95 389 + 2 1 3 cbr 500 ------- 1 1.0 6.0 195 390 - 2 1 3 cbr 500 ------- 1 1.0 6.0 195 390 r 2.00358 4 3 ack 40 ------- 0 5.0 0.0 44 375 + 2.00358 3 0 ack 40 ------- 0 5.0 0.0 44 375 - 2.00358 3 0 ack 40 ------- 0 5.0 0.0 44 375 r 2.0036 3 4 cbr 500 ------- 1 1.0 6.0 180 358 + 2.0036 4 6 cbr 500 ------- 1 1.0 6.0 180 358 - 2.0036 4 6 cbr 500 ------- 1 1.0 6.0 180 358 r 2.004 1 3 cbr 500 ------- 1 1.0 6.0 193 385 + 2.004 3 4 cbr 500 ------- 1 1.0 6.0 193 385 - 2.0056 3 4 cbr 500 ------- 1 1.0 6.0 186 370 r 2.0076 3 4 cbr 500 ------- 1 1.0 6.0 181 360 + 2.0076 4 6 cbr 500 ------- 1 1.0 6.0 181 360 - 2.0076 4 6 cbr 500 ------- 1 1.0 6.0 181 360 r 2.008 2 3 cbr 1000 ------- 1 2.0 7.0 94 384 + 2.008 3 4 cbr 1000 ------- 1 2.0 7.0 94 384 - 2.0096 3 4 cbr 500 ------- 1 1.0 6.0 187 372 + 2.01 1 3 cbr 500 ------- 1 1.0 6.0 196 391 - 2.01 1 3 cbr 500 ------- 1 1.0 6.0 196 391 r 2.0116 4 7 cbr 1000 ------- 1 2.0 7.0 86 351 r 2.0116 4 6 cbr 500 ------- 1 1.0 6.0 178 354 r 2.01326 5 4 ack 40 ------- 0 5.0 0.0 46 387 + 2.01326 4 3 ack 40 ------- 0 5.0 0.0 46 387 - 2.01326 4 3 ack 40 ------- 0 5.0 0.0 46 387 - 2.0136 3 4 cbr 1000 ------- 1 2.0 7.0 91 371 r 2.014 1 3 cbr 500 ------- 1 1.0 6.0 194 386 + 2.014 3 4 cbr 500 ------- 1 1.0 6.0 194 386 r 2.0156 3 4 cbr 1000 ------- 1 2.0 7.0 88 359 + 2.0156 4 7 cbr 1000 ------- 1 2.0 7.0 88 359 - 2.0156 4 7 cbr 1000 ------- 1 2.0 7.0 88 359 r 2.0156 4 6 cbr 500 ------- 1 1.0 6.0 179 356 r 2.01725 0 3 tcp 1000 ------- 0 0.0 5.0 51 388 + 2.01725 3 4 tcp 1000 ------- 0 0.0 5.0 51 388 r 2.0196 3 4 cbr 500 ------- 1 1.0 6.0 182 361 + 2.0196 4 6 cbr 500 ------- 1 1.0 6.0 182 361 - 2.0196 4 6 cbr 500 ------- 1 1.0 6.0 182 361 + 2.02 1 3 cbr 500 ------- 1 1.0 6.0 197 392 - 2.02 1 3 cbr 500 ------- 1 1.0 6.0 197 392 + 2.02 2 3 cbr 1000 ------- 1 2.0 7.0 96 393 - 2.02 2 3 cbr 1000 ------- 1 2.0 7.0 96 393 - 2.0216 3 4 tcp 1000 ------- 0 0.0 5.0 49 374 r 2.0236 3 4 cbr 500 ------- 1 1.0 6.0 183 364 + 2.0236 4 6 cbr 500 ------- 1 1.0 6.0 183 364 - 2.0236 4 6 cbr 500 ------- 1 1.0 6.0 183 364 r 2.02365 3 0 ack 40 ------- 0 5.0 0.0 44 375 + 2.02365 0 3 tcp 1000 ------- 0 0.0 5.0 52 394 - 2.02365 0 3 tcp 1000 ------- 0 0.0 5.0 52 394 r 2.024 1 3 cbr 500 ------- 1 1.0 6.0 195 390 + 2.024 3 4 cbr 500 ------- 1 1.0 6.0 195 390 r 2.0276 4 7 cbr 1000 ------- 1 2.0 7.0 87 355 r 2.0276 4 6 cbr 500 ------- 1 1.0 6.0 180 358 r 2.028 2 3 cbr 1000 ------- 1 2.0 7.0 95 389 + 2.028 3 4 cbr 1000 ------- 1 2.0 7.0 95 389 - 2.0296 3 4 cbr 500 ------- 1 1.0 6.0 188 373 + 2.03 1 3 cbr 500 ------- 1 1.0 6.0 198 395 - 2.03 1 3 cbr 500 ------- 1 1.0 6.0 198 395 r 2.0316 3 4 cbr 1000 ------- 1 2.0 7.0 89 363 + 2.0316 4 7 cbr 1000 ------- 1 2.0 7.0 89 363 - 2.0316 4 7 cbr 1000 ------- 1 2.0 7.0 89 363 r 2.0316 4 6 cbr 500 ------- 1 1.0 6.0 181 360 - 2.0336 3 4 cbr 500 ------- 1 1.0 6.0 189 377 r 2.034 1 3 cbr 500 ------- 1 1.0 6.0 196 391 + 2.034 3 4 cbr 500 ------- 1 1.0 6.0 196 391 r 2.03558 4 3 ack 40 ------- 0 5.0 0.0 45 381 + 2.03558 3 0 ack 40 ------- 0 5.0 0.0 45 381 - 2.03558 3 0 ack 40 ------- 0 5.0 0.0 45 381 r 2.0356 3 4 cbr 500 ------- 1 1.0 6.0 184 365 + 2.0356 4 6 cbr 500 ------- 1 1.0 6.0 184 365 - 2.0356 4 6 cbr 500 ------- 1 1.0 6.0 184 365 - 2.0376 3 4 cbr 1000 ------- 1 2.0 7.0 92 376 r 2.0396 3 4 cbr 500 ------- 1 1.0 6.0 185 367 + 2.0396 4 6 cbr 500 ------- 1 1.0 6.0 185 367 - 2.0396 4 6 cbr 500 ------- 1 1.0 6.0 185 367 + 2.04 1 3 cbr 500 ------- 1 1.0 6.0 199 396 - 2.04 1 3 cbr 500 ------- 1 1.0 6.0 199 396 + 2.04 2 3 cbr 1000 ------- 1 2.0 7.0 97 397 - 2.04 2 3 cbr 1000 ------- 1 2.0 7.0 97 397 r 2.0436 4 7 cbr 1000 ------- 1 2.0 7.0 88 359 r 2.0436 4 6 cbr 500 ------- 1 1.0 6.0 182 361 r 2.044 1 3 cbr 500 ------- 1 1.0 6.0 197 392 + 2.044 3 4 cbr 500 ------- 1 1.0 6.0 197 392 r 2.04525 0 3 tcp 1000 ------- 0 0.0 5.0 52 394 + 2.04525 3 4 tcp 1000 ------- 0 0.0 5.0 52 394 - 2.0456 3 4 cbr 500 ------- 1 1.0 6.0 190 378 r 2.0476 3 4 tcp 1000 ------- 0 0.0 5.0 48 368 + 2.0476 4 5 tcp 1000 ------- 0 0.0 5.0 48 368 - 2.0476 4 5 tcp 1000 ------- 0 0.0 5.0 48 368 r 2.0476 4 6 cbr 500 ------- 1 1.0 6.0 183 364 r 2.048 2 3 cbr 1000 ------- 1 2.0 7.0 96 393 + 2.048 3 4 cbr 1000 ------- 1 2.0 7.0 96 393 - 2.0496 3 4 cbr 500 ------- 1 1.0 6.0 191 380 + 2.05 1 3 cbr 500 ------- 1 1.0 6.0 200 398 - 2.05 1 3 cbr 500 ------- 1 1.0 6.0 200 398 - 2.0536 3 4 cbr 1000 ------- 1 2.0 7.0 93 379 r 2.054 1 3 cbr 500 ------- 1 1.0 6.0 198 395 + 2.054 3 4 cbr 500 ------- 1 1.0 6.0 198 395 r 2.0556 3 4 cbr 1000 ------- 1 2.0 7.0 90 366 + 2.0556 4 7 cbr 1000 ------- 1 2.0 7.0 90 366 - 2.0556 4 7 cbr 1000 ------- 1 2.0 7.0 90 366 r 2.05565 3 0 ack 40 ------- 0 5.0 0.0 45 381 + 2.05565 0 3 tcp 1000 ------- 0 0.0 5.0 53 399 - 2.05565 0 3 tcp 1000 ------- 0 0.0 5.0 53 399 r 2.0596 3 4 cbr 500 ------- 1 1.0 6.0 186 370 + 2.0596 4 6 cbr 500 ------- 1 1.0 6.0 186 370 - 2.0596 4 6 cbr 500 ------- 1 1.0 6.0 186 370 r 2.0596 4 7 cbr 1000 ------- 1 2.0 7.0 89 363 r 2.0596 4 6 cbr 500 ------- 1 1.0 6.0 184 365 + 2.06 1 3 cbr 500 ------- 1 1.0 6.0 201 400 - 2.06 1 3 cbr 500 ------- 1 1.0 6.0 201 400 + 2.06 2 3 cbr 1000 ------- 1 2.0 7.0 98 401 - 2.06 2 3 cbr 1000 ------- 1 2.0 7.0 98 401 - 2.0616 3 4 tcp 1000 ------- 0 0.0 5.0 50 382 r 2.06358 4 3 ack 40 ------- 0 5.0 0.0 46 387 + 2.06358 3 0 ack 40 ------- 0 5.0 0.0 46 387 - 2.06358 3 0 ack 40 ------- 0 5.0 0.0 46 387 r 2.0636 3 4 cbr 500 ------- 1 1.0 6.0 187 372 + 2.0636 4 6 cbr 500 ------- 1 1.0 6.0 187 372 r 2.0636 4 6 cbr 500 ------- 1 1.0 6.0 185 367 - 2.0636 4 6 cbr 500 ------- 1 1.0 6.0 187 372 r 2.064 1 3 cbr 500 ------- 1 1.0 6.0 199 396 + 2.064 3 4 cbr 500 ------- 1 1.0 6.0 199 396 r 2.068 2 3 cbr 1000 ------- 1 2.0 7.0 97 397 + 2.068 3 4 cbr 1000 ------- 1 2.0 7.0 97 397 r 2.0692 4 5 tcp 1000 ------- 0 0.0 5.0 48 368 + 2.0692 5 4 ack 40 ------- 0 5.0 0.0 46 402 - 2.0692 5 4 ack 40 ------- 0 5.0 0.0 46 402 - 2.0696 3 4 cbr 500 ------- 1 1.0 6.0 192 383 + 2.07 1 3 cbr 500 ------- 1 1.0 6.0 202 403 - 2.07 1 3 cbr 500 ------- 1 1.0 6.0 202 403 r 2.0716 3 4 cbr 1000 ------- 1 2.0 7.0 91 371 + 2.0716 4 7 cbr 1000 ------- 1 2.0 7.0 91 371 - 2.0716 4 7 cbr 1000 ------- 1 2.0 7.0 91 371 - 2.0736 3 4 cbr 500 ------- 1 1.0 6.0 193 385 r 2.074 1 3 cbr 500 ------- 1 1.0 6.0 200 398 + 2.074 3 4 cbr 500 ------- 1 1.0 6.0 200 398 r 2.07725 0 3 tcp 1000 ------- 0 0.0 5.0 53 399 + 2.07725 3 4 tcp 1000 ------- 0 0.0 5.0 53 399 - 2.0776 3 4 cbr 1000 ------- 1 2.0 7.0 94 384 r 2.0796 3 4 tcp 1000 ------- 0 0.0 5.0 49 374 + 2.0796 4 5 tcp 1000 ------- 0 0.0 5.0 49 374 - 2.0796 4 5 tcp 1000 ------- 0 0.0 5.0 49 374 + 2.08 1 3 cbr 500 ------- 1 1.0 6.0 203 404 - 2.08 1 3 cbr 500 ------- 1 1.0 6.0 203 404 + 2.08 2 3 cbr 1000 ------- 1 2.0 7.0 99 405 - 2.08 2 3 cbr 1000 ------- 1 2.0 7.0 99 405 r 2.0836 3 4 cbr 500 ------- 1 1.0 6.0 188 373 + 2.0836 4 6 cbr 500 ------- 1 1.0 6.0 188 373 - 2.0836 4 6 cbr 500 ------- 1 1.0 6.0 188 373 r 2.0836 4 7 cbr 1000 ------- 1 2.0 7.0 90 366 r 2.0836 4 6 cbr 500 ------- 1 1.0 6.0 186 370 r 2.08365 3 0 ack 40 ------- 0 5.0 0.0 46 387 + 2.08365 0 3 tcp 1000 ------- 0 0.0 5.0 54 406 - 2.08365 0 3 tcp 1000 ------- 0 0.0 5.0 54 406 r 2.084 1 3 cbr 500 ------- 1 1.0 6.0 201 400 + 2.084 3 4 cbr 500 ------- 1 1.0 6.0 201 400 - 2.0856 3 4 cbr 500 ------- 1 1.0 6.0 194 386 r 2.0876 3 4 cbr 500 ------- 1 1.0 6.0 189 377 + 2.0876 4 6 cbr 500 ------- 1 1.0 6.0 189 377 r 2.0876 4 6 cbr 500 ------- 1 1.0 6.0 187 372 - 2.0876 4 6 cbr 500 ------- 1 1.0 6.0 189 377 r 2.088 2 3 cbr 1000 ------- 1 2.0 7.0 98 401 + 2.088 3 4 cbr 1000 ------- 1 2.0 7.0 98 401 r 2.08926 5 4 ack 40 ------- 0 5.0 0.0 46 402 + 2.08926 4 3 ack 40 ------- 0 5.0 0.0 46 402 - 2.08926 4 3 ack 40 ------- 0 5.0 0.0 46 402 - 2.0896 3 4 tcp 1000 ------- 0 0.0 5.0 51 388 + 2.09 1 3 cbr 500 ------- 1 1.0 6.0 204 407 - 2.09 1 3 cbr 500 ------- 1 1.0 6.0 204 407 r 2.094 1 3 cbr 500 ------- 1 1.0 6.0 202 403 + 2.094 3 4 cbr 500 ------- 1 1.0 6.0 202 403 r 2.0956 3 4 cbr 1000 ------- 1 2.0 7.0 92 376 + 2.0956 4 7 cbr 1000 ------- 1 2.0 7.0 92 376 - 2.0956 4 7 cbr 1000 ------- 1 2.0 7.0 92 376 - 2.0976 3 4 cbr 500 ------- 1 1.0 6.0 195 390 r 2.0996 3 4 cbr 500 ------- 1 1.0 6.0 190 378 + 2.0996 4 6 cbr 500 ------- 1 1.0 6.0 190 378 - 2.0996 4 6 cbr 500 ------- 1 1.0 6.0 190 378 r 2.0996 4 7 cbr 1000 ------- 1 2.0 7.0 91 371 + 2.1 1 3 cbr 500 ------- 1 1.0 6.0 205 408 - 2.1 1 3 cbr 500 ------- 1 1.0 6.0 205 408 + 2.1 2 3 cbr 1000 ------- 1 2.0 7.0 100 409 - 2.1 2 3 cbr 1000 ------- 1 2.0 7.0 100 409 r 2.1012 4 5 tcp 1000 ------- 0 0.0 5.0 49 374 + 2.1012 5 4 ack 40 ------- 0 5.0 0.0 46 410 - 2.1012 5 4 ack 40 ------- 0 5.0 0.0 46 410 - 2.1016 3 4 cbr 1000 ------- 1 2.0 7.0 95 389 r 2.1036 3 4 cbr 500 ------- 1 1.0 6.0 191 380 + 2.1036 4 6 cbr 500 ------- 1 1.0 6.0 191 380 - 2.1036 4 6 cbr 500 ------- 1 1.0 6.0 191 380 r 2.104 1 3 cbr 500 ------- 1 1.0 6.0 203 404 + 2.104 3 4 cbr 500 ------- 1 1.0 6.0 203 404 r 2.10525 0 3 tcp 1000 ------- 0 0.0 5.0 54 406 + 2.10525 3 4 tcp 1000 ------- 0 0.0 5.0 54 406 r 2.1076 4 6 cbr 500 ------- 1 1.0 6.0 188 373 r 2.108 2 3 cbr 1000 ------- 1 2.0 7.0 99 405 + 2.108 3 4 cbr 1000 ------- 1 2.0 7.0 99 405 d 2.108 3 4 cbr 1000 ------- 1 2.0 7.0 99 405 - 2.1096 3 4 cbr 500 ------- 1 1.0 6.0 196 391 + 2.11 1 3 cbr 500 ------- 1 1.0 6.0 206 411 - 2.11 1 3 cbr 500 ------- 1 1.0 6.0 206 411 r 2.1116 3 4 cbr 1000 ------- 1 2.0 7.0 93 379 + 2.1116 4 7 cbr 1000 ------- 1 2.0 7.0 93 379 - 2.1116 4 7 cbr 1000 ------- 1 2.0 7.0 93 379 r 2.1116 4 6 cbr 500 ------- 1 1.0 6.0 189 377 - 2.1136 3 4 cbr 500 ------- 1 1.0 6.0 197 392 r 2.114 1 3 cbr 500 ------- 1 1.0 6.0 204 407 + 2.114 3 4 cbr 500 ------- 1 1.0 6.0 204 407 - 2.1176 3 4 tcp 1000 ------- 0 0.0 5.0 52 394 r 2.1196 3 4 tcp 1000 ------- 0 0.0 5.0 50 382 + 2.1196 4 5 tcp 1000 ------- 0 0.0 5.0 50 382 - 2.1196 4 5 tcp 1000 ------- 0 0.0 5.0 50 382 + 2.12 1 3 cbr 500 ------- 1 1.0 6.0 207 412 - 2.12 1 3 cbr 500 ------- 1 1.0 6.0 207 412 + 2.12 2 3 cbr 1000 ------- 1 2.0 7.0 101 413 - 2.12 2 3 cbr 1000 ------- 1 2.0 7.0 101 413 r 2.12126 5 4 ack 40 ------- 0 5.0 0.0 46 410 + 2.12126 4 3 ack 40 ------- 0 5.0 0.0 46 410 - 2.12126 4 3 ack 40 ------- 0 5.0 0.0 46 410 r 2.1236 3 4 cbr 500 ------- 1 1.0 6.0 192 383 + 2.1236 4 6 cbr 500 ------- 1 1.0 6.0 192 383 - 2.1236 4 6 cbr 500 ------- 1 1.0 6.0 192 383 r 2.1236 4 7 cbr 1000 ------- 1 2.0 7.0 92 376 r 2.1236 4 6 cbr 500 ------- 1 1.0 6.0 190 378 r 2.124 1 3 cbr 500 ------- 1 1.0 6.0 205 408 + 2.124 3 4 cbr 500 ------- 1 1.0 6.0 205 408 - 2.1256 3 4 cbr 1000 ------- 1 2.0 7.0 96 393 r 2.1276 3 4 cbr 500 ------- 1 1.0 6.0 193 385 + 2.1276 4 6 cbr 500 ------- 1 1.0 6.0 193 385 r 2.1276 4 6 cbr 500 ------- 1 1.0 6.0 191 380 - 2.1276 4 6 cbr 500 ------- 1 1.0 6.0 193 385 r 2.128 2 3 cbr 1000 ------- 1 2.0 7.0 100 409 + 2.128 3 4 cbr 1000 ------- 1 2.0 7.0 100 409 + 2.13 1 3 cbr 500 ------- 1 1.0 6.0 208 414 - 2.13 1 3 cbr 500 ------- 1 1.0 6.0 208 414 - 2.1336 3 4 cbr 500 ------- 1 1.0 6.0 198 395 r 2.134 1 3 cbr 500 ------- 1 1.0 6.0 206 411 + 2.134 3 4 cbr 500 ------- 1 1.0 6.0 206 411 r 2.1356 3 4 cbr 1000 ------- 1 2.0 7.0 94 384 + 2.1356 4 7 cbr 1000 ------- 1 2.0 7.0 94 384 - 2.1356 4 7 cbr 1000 ------- 1 2.0 7.0 94 384 - 2.1376 3 4 cbr 500 ------- 1 1.0 6.0 199 396 r 2.13958 4 3 ack 40 ------- 0 5.0 0.0 46 402 + 2.13958 3 0 ack 40 ------- 0 5.0 0.0 46 402 - 2.13958 3 0 ack 40 ------- 0 5.0 0.0 46 402 r 2.1396 3 4 cbr 500 ------- 1 1.0 6.0 194 386 + 2.1396 4 6 cbr 500 ------- 1 1.0 6.0 194 386 - 2.1396 4 6 cbr 500 ------- 1 1.0 6.0 194 386 r 2.1396 4 7 cbr 1000 ------- 1 2.0 7.0 93 379 + 2.14 1 3 cbr 500 ------- 1 1.0 6.0 209 415 - 2.14 1 3 cbr 500 ------- 1 1.0 6.0 209 415 + 2.14 2 3 cbr 1000 ------- 1 2.0 7.0 102 416 - 2.14 2 3 cbr 1000 ------- 1 2.0 7.0 102 416 r 2.1412 4 5 tcp 1000 ------- 0 0.0 5.0 50 382 + 2.1412 5 4 ack 40 ------- 0 5.0 0.0 46 417 - 2.1412 5 4 ack 40 ------- 0 5.0 0.0 46 417 - 2.1416 3 4 cbr 1000 ------- 1 2.0 7.0 97 397 r 2.144 1 3 cbr 500 ------- 1 1.0 6.0 207 412 + 2.144 3 4 cbr 500 ------- 1 1.0 6.0 207 412 r 2.1476 3 4 tcp 1000 ------- 0 0.0 5.0 51 388 + 2.1476 4 5 tcp 1000 ------- 0 0.0 5.0 51 388 - 2.1476 4 5 tcp 1000 ------- 0 0.0 5.0 51 388 r 2.1476 4 6 cbr 500 ------- 1 1.0 6.0 192 383 r 2.148 2 3 cbr 1000 ------- 1 2.0 7.0 101 413 + 2.148 3 4 cbr 1000 ------- 1 2.0 7.0 101 413 - 2.1496 3 4 cbr 500 ------- 1 1.0 6.0 200 398 + 2.15 1 3 cbr 500 ------- 1 1.0 6.0 210 418 - 2.15 1 3 cbr 500 ------- 1 1.0 6.0 210 418 r 2.1516 3 4 cbr 500 ------- 1 1.0 6.0 195 390 + 2.1516 4 6 cbr 500 ------- 1 1.0 6.0 195 390 - 2.1516 4 6 cbr 500 ------- 1 1.0 6.0 195 390 r 2.1516 4 6 cbr 500 ------- 1 1.0 6.0 193 385 - 2.1536 3 4 tcp 1000 ------- 0 0.0 5.0 53 399 r 2.154 1 3 cbr 500 ------- 1 1.0 6.0 208 414 + 2.154 3 4 cbr 500 ------- 1 1.0 6.0 208 414 r 2.1596 3 4 cbr 1000 ------- 1 2.0 7.0 95 389 + 2.1596 4 7 cbr 1000 ------- 1 2.0 7.0 95 389 - 2.1596 4 7 cbr 1000 ------- 1 2.0 7.0 95 389 r 2.15965 3 0 ack 40 ------- 0 5.0 0.0 46 402 + 2.16 1 3 cbr 500 ------- 1 1.0 6.0 211 419 - 2.16 1 3 cbr 500 ------- 1 1.0 6.0 211 419 + 2.16 2 3 cbr 1000 ------- 1 2.0 7.0 103 420 - 2.16 2 3 cbr 1000 ------- 1 2.0 7.0 103 420 r 2.16126 5 4 ack 40 ------- 0 5.0 0.0 46 417 + 2.16126 4 3 ack 40 ------- 0 5.0 0.0 46 417 - 2.16126 4 3 ack 40 ------- 0 5.0 0.0 46 417 - 2.1616 3 4 cbr 500 ------- 1 1.0 6.0 201 400 r 2.1636 3 4 cbr 500 ------- 1 1.0 6.0 196 391 + 2.1636 4 6 cbr 500 ------- 1 1.0 6.0 196 391 - 2.1636 4 6 cbr 500 ------- 1 1.0 6.0 196 391 r 2.1636 4 7 cbr 1000 ------- 1 2.0 7.0 94 384 r 2.1636 4 6 cbr 500 ------- 1 1.0 6.0 194 386 r 2.164 1 3 cbr 500 ------- 1 1.0 6.0 209 415 + 2.164 3 4 cbr 500 ------- 1 1.0 6.0 209 415 - 2.1656 3 4 cbr 1000 ------- 1 2.0 7.0 98 401 r 2.1676 3 4 cbr 500 ------- 1 1.0 6.0 197 392 + 2.1676 4 6 cbr 500 ------- 1 1.0 6.0 197 392 - 2.1676 4 6 cbr 500 ------- 1 1.0 6.0 197 392 r 2.168 2 3 cbr 1000 ------- 1 2.0 7.0 102 416 + 2.168 3 4 cbr 1000 ------- 1 2.0 7.0 102 416 r 2.1692 4 5 tcp 1000 ------- 0 0.0 5.0 51 388 + 2.1692 5 4 ack 40 ------- 0 5.0 0.0 46 421 - 2.1692 5 4 ack 40 ------- 0 5.0 0.0 46 421 + 2.17 1 3 cbr 500 ------- 1 1.0 6.0 212 422 - 2.17 1 3 cbr 500 ------- 1 1.0 6.0 212 422 r 2.17158 4 3 ack 40 ------- 0 5.0 0.0 46 410 + 2.17158 3 0 ack 40 ------- 0 5.0 0.0 46 410 - 2.17158 3 0 ack 40 ------- 0 5.0 0.0 46 410 - 2.1736 3 4 cbr 500 ------- 1 1.0 6.0 202 403 r 2.174 1 3 cbr 500 ------- 1 1.0 6.0 210 418 + 2.174 3 4 cbr 500 ------- 1 1.0 6.0 210 418 r 2.1756 3 4 tcp 1000 ------- 0 0.0 5.0 52 394 + 2.1756 4 5 tcp 1000 ------- 0 0.0 5.0 52 394 - 2.1756 4 5 tcp 1000 ------- 0 0.0 5.0 52 394 r 2.1756 4 6 cbr 500 ------- 1 1.0 6.0 195 390 - 2.1776 3 4 cbr 500 ------- 1 1.0 6.0 203 404 + 2.18 1 3 cbr 500 ------- 1 1.0 6.0 213 423 - 2.18 1 3 cbr 500 ------- 1 1.0 6.0 213 423 + 2.18 2 3 cbr 1000 ------- 1 2.0 7.0 104 424 - 2.18 2 3 cbr 1000 ------- 1 2.0 7.0 104 424 - 2.1816 3 4 tcp 1000 ------- 0 0.0 5.0 54 406 r 2.1836 3 4 cbr 1000 ------- 1 2.0 7.0 96 393 + 2.1836 4 7 cbr 1000 ------- 1 2.0 7.0 96 393 - 2.1836 4 7 cbr 1000 ------- 1 2.0 7.0 96 393 r 2.184 1 3 cbr 500 ------- 1 1.0 6.0 211 419 + 2.184 3 4 cbr 500 ------- 1 1.0 6.0 211 419 r 2.1876 3 4 cbr 500 ------- 1 1.0 6.0 198 395 + 2.1876 4 6 cbr 500 ------- 1 1.0 6.0 198 395 - 2.1876 4 6 cbr 500 ------- 1 1.0 6.0 198 395 r 2.1876 4 7 cbr 1000 ------- 1 2.0 7.0 95 389 r 2.1876 4 6 cbr 500 ------- 1 1.0 6.0 196 391 r 2.188 2 3 cbr 1000 ------- 1 2.0 7.0 103 420 + 2.188 3 4 cbr 1000 ------- 1 2.0 7.0 103 420 r 2.18926 5 4 ack 40 ------- 0 5.0 0.0 46 421 + 2.18926 4 3 ack 40 ------- 0 5.0 0.0 46 421 - 2.18926 4 3 ack 40 ------- 0 5.0 0.0 46 421 - 2.1896 3 4 cbr 500 ------- 1 1.0 6.0 204 407 + 2.19 1 3 cbr 500 ------- 1 1.0 6.0 214 425 - 2.19 1 3 cbr 500 ------- 1 1.0 6.0 214 425 r 2.1916 3 4 cbr 500 ------- 1 1.0 6.0 199 396 + 2.1916 4 6 cbr 500 ------- 1 1.0 6.0 199 396 r 2.1916 4 6 cbr 500 ------- 1 1.0 6.0 197 392 - 2.1916 4 6 cbr 500 ------- 1 1.0 6.0 199 396 r 2.19165 3 0 ack 40 ------- 0 5.0 0.0 46 410 - 2.1936 3 4 cbr 500 ------- 1 1.0 6.0 205 408 r 2.194 1 3 cbr 500 ------- 1 1.0 6.0 212 422 + 2.194 3 4 cbr 500 ------- 1 1.0 6.0 212 422 r 2.1972 4 5 tcp 1000 ------- 0 0.0 5.0 52 394 + 2.1972 5 4 ack 40 ------- 0 5.0 0.0 46 426 - 2.1972 5 4 ack 40 ------- 0 5.0 0.0 46 426 - 2.1976 3 4 cbr 1000 ------- 1 2.0 7.0 100 409 r 2.1996 3 4 cbr 1000 ------- 1 2.0 7.0 97 397 + 2.1996 4 7 cbr 1000 ------- 1 2.0 7.0 97 397 - 2.1996 4 7 cbr 1000 ------- 1 2.0 7.0 97 397 + 2.2 1 3 cbr 500 ------- 1 1.0 6.0 215 427 - 2.2 1 3 cbr 500 ------- 1 1.0 6.0 215 427 + 2.2 2 3 cbr 1000 ------- 1 2.0 7.0 105 428 - 2.2 2 3 cbr 1000 ------- 1 2.0 7.0 105 428 r 2.2036 3 4 cbr 500 ------- 1 1.0 6.0 200 398 + 2.2036 4 6 cbr 500 ------- 1 1.0 6.0 200 398 - 2.2036 4 6 cbr 500 ------- 1 1.0 6.0 200 398 r 2.204 1 3 cbr 500 ------- 1 1.0 6.0 213 423 + 2.204 3 4 cbr 500 ------- 1 1.0 6.0 213 423 - 2.2056 3 4 cbr 500 ------- 1 1.0 6.0 206 411 r 2.208 2 3 cbr 1000 ------- 1 2.0 7.0 104 424 + 2.208 3 4 cbr 1000 ------- 1 2.0 7.0 104 424 - 2.2096 3 4 cbr 500 ------- 1 1.0 6.0 207 412 + 2.21 1 3 cbr 500 ------- 1 1.0 6.0 216 429 - 2.21 1 3 cbr 500 ------- 1 1.0 6.0 216 429 r 2.21158 4 3 ack 40 ------- 0 5.0 0.0 46 417 + 2.21158 3 0 ack 40 ------- 0 5.0 0.0 46 417 - 2.21158 3 0 ack 40 ------- 0 5.0 0.0 46 417 r 2.2116 3 4 tcp 1000 ------- 0 0.0 5.0 53 399 + 2.2116 4 5 tcp 1000 ------- 0 0.0 5.0 53 399 - 2.2116 4 5 tcp 1000 ------- 0 0.0 5.0 53 399 r 2.2116 4 7 cbr 1000 ------- 1 2.0 7.0 96 393 r 2.2116 4 6 cbr 500 ------- 1 1.0 6.0 198 395 - 2.2136 3 4 cbr 1000 ------- 1 2.0 7.0 101 413 r 2.214 1 3 cbr 500 ------- 1 1.0 6.0 214 425 + 2.214 3 4 cbr 500 ------- 1 1.0 6.0 214 425 r 2.2156 3 4 cbr 500 ------- 1 1.0 6.0 201 400 + 2.2156 4 6 cbr 500 ------- 1 1.0 6.0 201 400 - 2.2156 4 6 cbr 500 ------- 1 1.0 6.0 201 400 r 2.2156 4 6 cbr 500 ------- 1 1.0 6.0 199 396 r 2.21726 5 4 ack 40 ------- 0 5.0 0.0 46 426 + 2.21726 4 3 ack 40 ------- 0 5.0 0.0 46 426 - 2.21726 4 3 ack 40 ------- 0 5.0 0.0 46 426 + 2.22 1 3 cbr 500 ------- 1 1.0 6.0 217 430 - 2.22 1 3 cbr 500 ------- 1 1.0 6.0 217 430 + 2.22 2 3 cbr 1000 ------- 1 2.0 7.0 106 431 - 2.22 2 3 cbr 1000 ------- 1 2.0 7.0 106 431 - 2.2216 3 4 cbr 500 ------- 1 1.0 6.0 208 414 r 2.2236 3 4 cbr 1000 ------- 1 2.0 7.0 98 401 + 2.2236 4 7 cbr 1000 ------- 1 2.0 7.0 98 401 - 2.2236 4 7 cbr 1000 ------- 1 2.0 7.0 98 401 r 2.224 1 3 cbr 500 ------- 1 1.0 6.0 215 427 + 2.224 3 4 cbr 500 ------- 1 1.0 6.0 215 427 - 2.2256 3 4 cbr 500 ------- 1 1.0 6.0 209 415 r 2.2276 3 4 cbr 500 ------- 1 1.0 6.0 202 403 + 2.2276 4 6 cbr 500 ------- 1 1.0 6.0 202 403 - 2.2276 4 6 cbr 500 ------- 1 1.0 6.0 202 403 r 2.2276 4 7 cbr 1000 ------- 1 2.0 7.0 97 397 r 2.2276 4 6 cbr 500 ------- 1 1.0 6.0 200 398 r 2.228 2 3 cbr 1000 ------- 1 2.0 7.0 105 428 + 2.228 3 4 cbr 1000 ------- 1 2.0 7.0 105 428 - 2.2296 3 4 cbr 1000 ------- 1 2.0 7.0 102 416 + 2.23 1 3 cbr 500 ------- 1 1.0 6.0 218 432 - 2.23 1 3 cbr 500 ------- 1 1.0 6.0 218 432 r 2.2316 3 4 cbr 500 ------- 1 1.0 6.0 203 404 + 2.2316 4 6 cbr 500 ------- 1 1.0 6.0 203 404 - 2.2316 4 6 cbr 500 ------- 1 1.0 6.0 203 404 r 2.23165 3 0 ack 40 ------- 0 5.0 0.0 46 417 + 2.23165 0 3 tcp 1000 ------- 0 0.0 5.0 47 433 - 2.23165 0 3 tcp 1000 ------- 0 0.0 5.0 47 433 + 2.23165 0 3 tcp 1000 ------- 0 0.0 5.0 48 434 + 2.23165 0 3 tcp 1000 ------- 0 0.0 5.0 49 435 + 2.23165 0 3 tcp 1000 ------- 0 0.0 5.0 50 436 + 2.23165 0 3 tcp 1000 ------- 0 0.0 5.0 51 437 + 2.23165 0 3 tcp 1000 ------- 0 0.0 5.0 52 438 + 2.23165 0 3 tcp 1000 ------- 0 0.0 5.0 53 439 + 2.23165 0 3 tcp 1000 ------- 0 0.0 5.0 54 440 r 2.2332 4 5 tcp 1000 ------- 0 0.0 5.0 53 399 + 2.2332 5 4 ack 40 ------- 0 5.0 0.0 46 441 - 2.2332 5 4 ack 40 ------- 0 5.0 0.0 46 441 - 2.23325 0 3 tcp 1000 ------- 0 0.0 5.0 48 434 r 2.234 1 3 cbr 500 ------- 1 1.0 6.0 216 429 + 2.234 3 4 cbr 500 ------- 1 1.0 6.0 216 429 - 2.23485 0 3 tcp 1000 ------- 0 0.0 5.0 49 435 - 2.23645 0 3 tcp 1000 ------- 0 0.0 5.0 50 436 - 2.2376 3 4 cbr 500 ------- 1 1.0 6.0 210 418 - 2.23805 0 3 tcp 1000 ------- 0 0.0 5.0 51 437 r 2.23958 4 3 ack 40 ------- 0 5.0 0.0 46 421 + 2.23958 3 0 ack 40 ------- 0 5.0 0.0 46 421 - 2.23958 3 0 ack 40 ------- 0 5.0 0.0 46 421 r 2.2396 3 4 tcp 1000 ------- 0 0.0 5.0 54 406 + 2.2396 4 5 tcp 1000 ------- 0 0.0 5.0 54 406 - 2.2396 4 5 tcp 1000 ------- 0 0.0 5.0 54 406 r 2.2396 4 6 cbr 500 ------- 1 1.0 6.0 201 400 - 2.23965 0 3 tcp 1000 ------- 0 0.0 5.0 52 438 + 2.24 1 3 cbr 500 ------- 1 1.0 6.0 219 442 - 2.24 1 3 cbr 500 ------- 1 1.0 6.0 219 442 + 2.24 2 3 cbr 1000 ------- 1 2.0 7.0 107 443 - 2.24 2 3 cbr 1000 ------- 1 2.0 7.0 107 443 - 2.24125 0 3 tcp 1000 ------- 0 0.0 5.0 53 439 - 2.2416 3 4 cbr 500 ------- 1 1.0 6.0 211 419 - 2.24285 0 3 tcp 1000 ------- 0 0.0 5.0 54 440 r 2.2436 3 4 cbr 500 ------- 1 1.0 6.0 204 407 + 2.2436 4 6 cbr 500 ------- 1 1.0 6.0 204 407 - 2.2436 4 6 cbr 500 ------- 1 1.0 6.0 204 407 r 2.244 1 3 cbr 500 ------- 1 1.0 6.0 217 430 + 2.244 3 4 cbr 500 ------- 1 1.0 6.0 217 430 - 2.2456 3 4 cbr 1000 ------- 1 2.0 7.0 103 420 r 2.2476 3 4 cbr 500 ------- 1 1.0 6.0 205 408 + 2.2476 4 6 cbr 500 ------- 1 1.0 6.0 205 408 - 2.2476 4 6 cbr 500 ------- 1 1.0 6.0 205 408 r 2.248 2 3 cbr 1000 ------- 1 2.0 7.0 106 431 + 2.248 3 4 cbr 1000 ------- 1 2.0 7.0 106 431 + 2.25 1 3 cbr 500 ------- 1 1.0 6.0 220 444 - 2.25 1 3 cbr 500 ------- 1 1.0 6.0 220 444 r 2.2516 4 7 cbr 1000 ------- 1 2.0 7.0 98 401 r 2.2516 4 6 cbr 500 ------- 1 1.0 6.0 202 403 r 2.25325 0 3 tcp 1000 ------- 0 0.0 5.0 47 433 + 2.25325 3 4 tcp 1000 ------- 0 0.0 5.0 47 433 r 2.25326 5 4 ack 40 ------- 0 5.0 0.0 46 441 + 2.25326 4 3 ack 40 ------- 0 5.0 0.0 46 441 - 2.25326 4 3 ack 40 ------- 0 5.0 0.0 46 441 - 2.2536 3 4 cbr 500 ------- 1 1.0 6.0 212 422 r 2.254 1 3 cbr 500 ------- 1 1.0 6.0 218 432 + 2.254 3 4 cbr 500 ------- 1 1.0 6.0 218 432 r 2.25485 0 3 tcp 1000 ------- 0 0.0 5.0 48 434 + 2.25485 3 4 tcp 1000 ------- 0 0.0 5.0 48 434 r 2.2556 3 4 cbr 1000 ------- 1 2.0 7.0 100 409 + 2.2556 4 7 cbr 1000 ------- 1 2.0 7.0 100 409 - 2.2556 4 7 cbr 1000 ------- 1 2.0 7.0 100 409 r 2.2556 4 6 cbr 500 ------- 1 1.0 6.0 203 404 r 2.25645 0 3 tcp 1000 ------- 0 0.0 5.0 49 435 + 2.25645 3 4 tcp 1000 ------- 0 0.0 5.0 49 435 - 2.2576 3 4 cbr 500 ------- 1 1.0 6.0 213 423 r 2.25805 0 3 tcp 1000 ------- 0 0.0 5.0 50 436 + 2.25805 3 4 tcp 1000 ------- 0 0.0 5.0 50 436 r 2.2596 3 4 cbr 500 ------- 1 1.0 6.0 206 411 + 2.2596 4 6 cbr 500 ------- 1 1.0 6.0 206 411 - 2.2596 4 6 cbr 500 ------- 1 1.0 6.0 206 411 r 2.25965 0 3 tcp 1000 ------- 0 0.0 5.0 51 437 + 2.25965 3 4 tcp 1000 ------- 0 0.0 5.0 51 437 r 2.25965 3 0 ack 40 ------- 0 5.0 0.0 46 421 + 2.26 1 3 cbr 500 ------- 1 1.0 6.0 221 445 - 2.26 1 3 cbr 500 ------- 1 1.0 6.0 221 445 + 2.26 2 3 cbr 1000 ------- 1 2.0 7.0 108 446 - 2.26 2 3 cbr 1000 ------- 1 2.0 7.0 108 446 r 2.2612 4 5 tcp 1000 ------- 0 0.0 5.0 54 406 + 2.2612 5 4 ack 40 ------- 0 5.0 0.0 46 447 - 2.2612 5 4 ack 40 ------- 0 5.0 0.0 46 447 r 2.26125 0 3 tcp 1000 ------- 0 0.0 5.0 52 438 + 2.26125 3 4 tcp 1000 ------- 0 0.0 5.0 52 438 - 2.2616 3 4 cbr 1000 ------- 1 2.0 7.0 104 424 r 2.26285 0 3 tcp 1000 ------- 0 0.0 5.0 53 439 + 2.26285 3 4 tcp 1000 ------- 0 0.0 5.0 53 439 r 2.2636 3 4 cbr 500 ------- 1 1.0 6.0 207 412 + 2.2636 4 6 cbr 500 ------- 1 1.0 6.0 207 412 - 2.2636 4 6 cbr 500 ------- 1 1.0 6.0 207 412 r 2.264 1 3 cbr 500 ------- 1 1.0 6.0 219 442 + 2.264 3 4 cbr 500 ------- 1 1.0 6.0 219 442 d 2.264 3 4 cbr 500 ------- 1 1.0 6.0 219 442 r 2.26445 0 3 tcp 1000 ------- 0 0.0 5.0 54 440 + 2.26445 3 4 tcp 1000 ------- 0 0.0 5.0 54 440 d 2.26445 3 4 tcp 1000 ------- 0 0.0 5.0 54 440 r 2.26758 4 3 ack 40 ------- 0 5.0 0.0 46 426 + 2.26758 3 0 ack 40 ------- 0 5.0 0.0 46 426 - 2.26758 3 0 ack 40 ------- 0 5.0 0.0 46 426 r 2.2676 4 6 cbr 500 ------- 1 1.0 6.0 204 407 r 2.268 2 3 cbr 1000 ------- 1 2.0 7.0 107 443 + 2.268 3 4 cbr 1000 ------- 1 2.0 7.0 107 443 d 2.268 3 4 cbr 1000 ------- 1 2.0 7.0 107 443 - 2.2696 3 4 cbr 500 ------- 1 1.0 6.0 214 425 + 2.27 1 3 cbr 500 ------- 1 1.0 6.0 222 448 - 2.27 1 3 cbr 500 ------- 1 1.0 6.0 222 448 r 2.2716 3 4 cbr 1000 ------- 1 2.0 7.0 101 413 + 2.2716 4 7 cbr 1000 ------- 1 2.0 7.0 101 413 - 2.2716 4 7 cbr 1000 ------- 1 2.0 7.0 101 413 r 2.2716 4 6 cbr 500 ------- 1 1.0 6.0 205 408 - 2.2736 3 4 cbr 500 ------- 1 1.0 6.0 215 427 r 2.274 1 3 cbr 500 ------- 1 1.0 6.0 220 444 + 2.274 3 4 cbr 500 ------- 1 1.0 6.0 220 444 r 2.2756 3 4 cbr 500 ------- 1 1.0 6.0 208 414 + 2.2756 4 6 cbr 500 ------- 1 1.0 6.0 208 414 - 2.2756 4 6 cbr 500 ------- 1 1.0 6.0 208 414 - 2.2776 3 4 cbr 1000 ------- 1 2.0 7.0 105 428 r 2.2796 3 4 cbr 500 ------- 1 1.0 6.0 209 415 + 2.2796 4 6 cbr 500 ------- 1 1.0 6.0 209 415 - 2.2796 4 6 cbr 500 ------- 1 1.0 6.0 209 415 + 2.28 1 3 cbr 500 ------- 1 1.0 6.0 223 449 - 2.28 1 3 cbr 500 ------- 1 1.0 6.0 223 449 + 2.28 2 3 cbr 1000 ------- 1 2.0 7.0 109 450 - 2.28 2 3 cbr 1000 ------- 1 2.0 7.0 109 450 r 2.28126 5 4 ack 40 ------- 0 5.0 0.0 46 447 + 2.28126 4 3 ack 40 ------- 0 5.0 0.0 46 447 - 2.28126 4 3 ack 40 ------- 0 5.0 0.0 46 447 r 2.2836 4 7 cbr 1000 ------- 1 2.0 7.0 100 409 r 2.2836 4 6 cbr 500 ------- 1 1.0 6.0 206 411 r 2.284 1 3 cbr 500 ------- 1 1.0 6.0 221 445 + 2.284 3 4 cbr 500 ------- 1 1.0 6.0 221 445 - 2.2856 3 4 cbr 500 ------- 1 1.0 6.0 216 429 r 2.2876 3 4 cbr 1000 ------- 1 2.0 7.0 102 416 + 2.2876 4 7 cbr 1000 ------- 1 2.0 7.0 102 416 - 2.2876 4 7 cbr 1000 ------- 1 2.0 7.0 102 416 r 2.2876 4 6 cbr 500 ------- 1 1.0 6.0 207 412 r 2.28765 3 0 ack 40 ------- 0 5.0 0.0 46 426 r 2.288 2 3 cbr 1000 ------- 1 2.0 7.0 108 446 + 2.288 3 4 cbr 1000 ------- 1 2.0 7.0 108 446 - 2.2896 3 4 cbr 500 ------- 1 1.0 6.0 217 430 + 2.29 1 3 cbr 500 ------- 1 1.0 6.0 224 451 - 2.29 1 3 cbr 500 ------- 1 1.0 6.0 224 451 r 2.2916 3 4 cbr 500 ------- 1 1.0 6.0 210 418 + 2.2916 4 6 cbr 500 ------- 1 1.0 6.0 210 418 - 2.2916 4 6 cbr 500 ------- 1 1.0 6.0 210 418 - 2.2936 3 4 cbr 1000 ------- 1 2.0 7.0 106 431 r 2.294 1 3 cbr 500 ------- 1 1.0 6.0 222 448 + 2.294 3 4 cbr 500 ------- 1 1.0 6.0 222 448 r 2.2956 3 4 cbr 500 ------- 1 1.0 6.0 211 419 + 2.2956 4 6 cbr 500 ------- 1 1.0 6.0 211 419 - 2.2956 4 6 cbr 500 ------- 1 1.0 6.0 211 419 r 2.2996 4 7 cbr 1000 ------- 1 2.0 7.0 101 413 r 2.2996 4 6 cbr 500 ------- 1 1.0 6.0 208 414 + 2.3 1 3 cbr 500 ------- 1 1.0 6.0 225 452 - 2.3 1 3 cbr 500 ------- 1 1.0 6.0 225 452 + 2.3 2 3 cbr 1000 ------- 1 2.0 7.0 110 453 - 2.3 2 3 cbr 1000 ------- 1 2.0 7.0 110 453 - 2.3016 3 4 tcp 1000 ------- 0 0.0 5.0 47 433 r 2.30358 4 3 ack 40 ------- 0 5.0 0.0 46 441 + 2.30358 3 0 ack 40 ------- 0 5.0 0.0 46 441 - 2.30358 3 0 ack 40 ------- 0 5.0 0.0 46 441 r 2.3036 3 4 cbr 1000 ------- 1 2.0 7.0 103 420 + 2.3036 4 7 cbr 1000 ------- 1 2.0 7.0 103 420 - 2.3036 4 7 cbr 1000 ------- 1 2.0 7.0 103 420 r 2.3036 4 6 cbr 500 ------- 1 1.0 6.0 209 415 r 2.304 1 3 cbr 500 ------- 1 1.0 6.0 223 449 + 2.304 3 4 cbr 500 ------- 1 1.0 6.0 223 449 r 2.3076 3 4 cbr 500 ------- 1 1.0 6.0 212 422 + 2.3076 4 6 cbr 500 ------- 1 1.0 6.0 212 422 - 2.3076 4 6 cbr 500 ------- 1 1.0 6.0 212 422 r 2.308 2 3 cbr 1000 ------- 1 2.0 7.0 109 450 + 2.308 3 4 cbr 1000 ------- 1 2.0 7.0 109 450 - 2.3096 3 4 cbr 500 ------- 1 1.0 6.0 218 432 r 2.3116 3 4 cbr 500 ------- 1 1.0 6.0 213 423 + 2.3116 4 6 cbr 500 ------- 1 1.0 6.0 213 423 - 2.3116 4 6 cbr 500 ------- 1 1.0 6.0 213 423 - 2.3136 3 4 tcp 1000 ------- 0 0.0 5.0 48 434 r 2.314 1 3 cbr 500 ------- 1 1.0 6.0 224 451 + 2.314 3 4 cbr 500 ------- 1 1.0 6.0 224 451 r 2.3156 4 7 cbr 1000 ------- 1 2.0 7.0 102 416 r 2.3156 4 6 cbr 500 ------- 1 1.0 6.0 210 418 r 2.3196 3 4 cbr 1000 ------- 1 2.0 7.0 104 424 + 2.3196 4 7 cbr 1000 ------- 1 2.0 7.0 104 424 - 2.3196 4 7 cbr 1000 ------- 1 2.0 7.0 104 424 r 2.3196 4 6 cbr 500 ------- 1 1.0 6.0 211 419 + 2.32 2 3 cbr 1000 ------- 1 2.0 7.0 111 454 - 2.32 2 3 cbr 1000 ------- 1 2.0 7.0 111 454 - 2.3216 3 4 tcp 1000 ------- 0 0.0 5.0 49 435 r 2.3236 3 4 cbr 500 ------- 1 1.0 6.0 214 425 + 2.3236 4 6 cbr 500 ------- 1 1.0 6.0 214 425 - 2.3236 4 6 cbr 500 ------- 1 1.0 6.0 214 425 r 2.32365 3 0 ack 40 ------- 0 5.0 0.0 46 441 r 2.324 1 3 cbr 500 ------- 1 1.0 6.0 225 452 + 2.324 3 4 cbr 500 ------- 1 1.0 6.0 225 452 r 2.3276 3 4 cbr 500 ------- 1 1.0 6.0 215 427 + 2.3276 4 6 cbr 500 ------- 1 1.0 6.0 215 427 - 2.3276 4 6 cbr 500 ------- 1 1.0 6.0 215 427 r 2.328 2 3 cbr 1000 ------- 1 2.0 7.0 110 453 + 2.328 3 4 cbr 1000 ------- 1 2.0 7.0 110 453 - 2.3296 3 4 tcp 1000 ------- 0 0.0 5.0 50 436 r 2.33158 4 3 ack 40 ------- 0 5.0 0.0 46 447 + 2.33158 3 0 ack 40 ------- 0 5.0 0.0 46 447 - 2.33158 3 0 ack 40 ------- 0 5.0 0.0 46 447 r 2.3316 4 7 cbr 1000 ------- 1 2.0 7.0 103 420 r 2.3316 4 6 cbr 500 ------- 1 1.0 6.0 212 422 r 2.3356 3 4 cbr 1000 ------- 1 2.0 7.0 105 428 + 2.3356 4 7 cbr 1000 ------- 1 2.0 7.0 105 428 - 2.3356 4 7 cbr 1000 ------- 1 2.0 7.0 105 428 r 2.3356 4 6 cbr 500 ------- 1 1.0 6.0 213 423 - 2.3376 3 4 tcp 1000 ------- 0 0.0 5.0 51 437 r 2.3396 3 4 cbr 500 ------- 1 1.0 6.0 216 429 + 2.3396 4 6 cbr 500 ------- 1 1.0 6.0 216 429 - 2.3396 4 6 cbr 500 ------- 1 1.0 6.0 216 429 + 2.34 2 3 cbr 1000 ------- 1 2.0 7.0 112 455 - 2.34 2 3 cbr 1000 ------- 1 2.0 7.0 112 455 r 2.3436 3 4 cbr 500 ------- 1 1.0 6.0 217 430 + 2.3436 4 6 cbr 500 ------- 1 1.0 6.0 217 430 - 2.3436 4 6 cbr 500 ------- 1 1.0 6.0 217 430 - 2.3456 3 4 tcp 1000 ------- 0 0.0 5.0 52 438 r 2.3476 4 7 cbr 1000 ------- 1 2.0 7.0 104 424 r 2.3476 4 6 cbr 500 ------- 1 1.0 6.0 214 425 r 2.348 2 3 cbr 1000 ------- 1 2.0 7.0 111 454 + 2.348 3 4 cbr 1000 ------- 1 2.0 7.0 111 454 r 2.3516 3 4 cbr 1000 ------- 1 2.0 7.0 106 431 + 2.3516 4 7 cbr 1000 ------- 1 2.0 7.0 106 431 - 2.3516 4 7 cbr 1000 ------- 1 2.0 7.0 106 431 r 2.3516 4 6 cbr 500 ------- 1 1.0 6.0 215 427 r 2.35165 3 0 ack 40 ------- 0 5.0 0.0 46 447 - 2.3536 3 4 tcp 1000 ------- 0 0.0 5.0 53 439 r 2.3596 3 4 tcp 1000 ------- 0 0.0 5.0 47 433 + 2.3596 4 5 tcp 1000 ------- 0 0.0 5.0 47 433 - 2.3596 4 5 tcp 1000 ------- 0 0.0 5.0 47 433 + 2.36 2 3 cbr 1000 ------- 1 2.0 7.0 113 456 - 2.36 2 3 cbr 1000 ------- 1 2.0 7.0 113 456 - 2.3616 3 4 cbr 500 ------- 1 1.0 6.0 220 444 r 2.3636 3 4 cbr 500 ------- 1 1.0 6.0 218 432 + 2.3636 4 6 cbr 500 ------- 1 1.0 6.0 218 432 - 2.3636 4 6 cbr 500 ------- 1 1.0 6.0 218 432 r 2.3636 4 7 cbr 1000 ------- 1 2.0 7.0 105 428 r 2.3636 4 6 cbr 500 ------- 1 1.0 6.0 216 429 - 2.3656 3 4 cbr 500 ------- 1 1.0 6.0 221 445 r 2.3676 4 6 cbr 500 ------- 1 1.0 6.0 217 430 r 2.368 2 3 cbr 1000 ------- 1 2.0 7.0 112 455 + 2.368 3 4 cbr 1000 ------- 1 2.0 7.0 112 455 - 2.3696 3 4 cbr 1000 ------- 1 2.0 7.0 108 446 r 2.3716 3 4 tcp 1000 ------- 0 0.0 5.0 48 434 + 2.3716 4 5 tcp 1000 ------- 0 0.0 5.0 48 434 - 2.3716 4 5 tcp 1000 ------- 0 0.0 5.0 48 434 - 2.3776 3 4 cbr 500 ------- 1 1.0 6.0 222 448 r 2.3796 3 4 tcp 1000 ------- 0 0.0 5.0 49 435 + 2.3796 4 5 tcp 1000 ------- 0 0.0 5.0 49 435 - 2.3796 4 5 tcp 1000 ------- 0 0.0 5.0 49 435 r 2.3796 4 7 cbr 1000 ------- 1 2.0 7.0 106 431 + 2.38 2 3 cbr 1000 ------- 1 2.0 7.0 114 457 - 2.38 2 3 cbr 1000 ------- 1 2.0 7.0 114 457 r 2.3812 4 5 tcp 1000 ------- 0 0.0 5.0 47 433 + 2.3812 5 4 ack 40 ------- 0 5.0 0.0 47 458 - 2.3812 5 4 ack 40 ------- 0 5.0 0.0 47 458 - 2.3816 3 4 cbr 500 ------- 1 1.0 6.0 223 449 - 2.3856 3 4 cbr 1000 ------- 1 2.0 7.0 109 450 r 2.3876 3 4 tcp 1000 ------- 0 0.0 5.0 50 436 + 2.3876 4 5 tcp 1000 ------- 0 0.0 5.0 50 436 - 2.3876 4 5 tcp 1000 ------- 0 0.0 5.0 50 436 r 2.3876 4 6 cbr 500 ------- 1 1.0 6.0 218 432 r 2.388 2 3 cbr 1000 ------- 1 2.0 7.0 113 456 + 2.388 3 4 cbr 1000 ------- 1 2.0 7.0 113 456 r 2.3932 4 5 tcp 1000 ------- 0 0.0 5.0 48 434 + 2.3932 5 4 ack 40 ------- 0 5.0 0.0 48 459 - 2.3932 5 4 ack 40 ------- 0 5.0 0.0 48 459 - 2.3936 3 4 cbr 500 ------- 1 1.0 6.0 224 451 r 2.3956 3 4 tcp 1000 ------- 0 0.0 5.0 51 437 + 2.3956 4 5 tcp 1000 ------- 0 0.0 5.0 51 437 - 2.3956 4 5 tcp 1000 ------- 0 0.0 5.0 51 437 - 2.3976 3 4 cbr 500 ------- 1 1.0 6.0 225 452 + 2.4 2 3 cbr 1000 ------- 1 2.0 7.0 115 460 - 2.4 2 3 cbr 1000 ------- 1 2.0 7.0 115 460 r 2.4012 4 5 tcp 1000 ------- 0 0.0 5.0 49 435 + 2.4012 5 4 ack 40 ------- 0 5.0 0.0 49 461 - 2.4012 5 4 ack 40 ------- 0 5.0 0.0 49 461 r 2.40126 5 4 ack 40 ------- 0 5.0 0.0 47 458 + 2.40126 4 3 ack 40 ------- 0 5.0 0.0 47 458 - 2.40126 4 3 ack 40 ------- 0 5.0 0.0 47 458 - 2.4016 3 4 cbr 1000 ------- 1 2.0 7.0 110 453 r 2.4036 3 4 tcp 1000 ------- 0 0.0 5.0 52 438 + 2.4036 4 5 tcp 1000 ------- 0 0.0 5.0 52 438 - 2.4036 4 5 tcp 1000 ------- 0 0.0 5.0 52 438 r 2.408 2 3 cbr 1000 ------- 1 2.0 7.0 114 457 + 2.408 3 4 cbr 1000 ------- 1 2.0 7.0 114 457 r 2.4092 4 5 tcp 1000 ------- 0 0.0 5.0 50 436 + 2.4092 5 4 ack 40 ------- 0 5.0 0.0 50 462 - 2.4092 5 4 ack 40 ------- 0 5.0 0.0 50 462 - 2.4096 3 4 cbr 1000 ------- 1 2.0 7.0 111 454 r 2.4116 3 4 tcp 1000 ------- 0 0.0 5.0 53 439 + 2.4116 4 5 tcp 1000 ------- 0 0.0 5.0 53 439 - 2.4116 4 5 tcp 1000 ------- 0 0.0 5.0 53 439 r 2.41326 5 4 ack 40 ------- 0 5.0 0.0 48 459 + 2.41326 4 3 ack 40 ------- 0 5.0 0.0 48 459 - 2.41326 4 3 ack 40 ------- 0 5.0 0.0 48 459 r 2.4156 3 4 cbr 500 ------- 1 1.0 6.0 220 444 + 2.4156 4 6 cbr 500 ------- 1 1.0 6.0 220 444 - 2.4156 4 6 cbr 500 ------- 1 1.0 6.0 220 444 r 2.4172 4 5 tcp 1000 ------- 0 0.0 5.0 51 437 + 2.4172 5 4 ack 40 ------- 0 5.0 0.0 51 463 - 2.4172 5 4 ack 40 ------- 0 5.0 0.0 51 463 - 2.4176 3 4 cbr 1000 ------- 1 2.0 7.0 112 455 r 2.4196 3 4 cbr 500 ------- 1 1.0 6.0 221 445 + 2.4196 4 6 cbr 500 ------- 1 1.0 6.0 221 445 - 2.4196 4 6 cbr 500 ------- 1 1.0 6.0 221 445 + 2.42 2 3 cbr 1000 ------- 1 2.0 7.0 116 464 - 2.42 2 3 cbr 1000 ------- 1 2.0 7.0 116 464 r 2.42126 5 4 ack 40 ------- 0 5.0 0.0 49 461 + 2.42126 4 3 ack 40 ------- 0 5.0 0.0 49 461 - 2.42126 4 3 ack 40 ------- 0 5.0 0.0 49 461 r 2.4252 4 5 tcp 1000 ------- 0 0.0 5.0 52 438 + 2.4252 5 4 ack 40 ------- 0 5.0 0.0 52 465 - 2.4252 5 4 ack 40 ------- 0 5.0 0.0 52 465 - 2.4256 3 4 cbr 1000 ------- 1 2.0 7.0 113 456 r 2.4276 3 4 cbr 1000 ------- 1 2.0 7.0 108 446 + 2.4276 4 7 cbr 1000 ------- 1 2.0 7.0 108 446 - 2.4276 4 7 cbr 1000 ------- 1 2.0 7.0 108 446 r 2.428 2 3 cbr 1000 ------- 1 2.0 7.0 115 460 + 2.428 3 4 cbr 1000 ------- 1 2.0 7.0 115 460 r 2.42926 5 4 ack 40 ------- 0 5.0 0.0 50 462 + 2.42926 4 3 ack 40 ------- 0 5.0 0.0 50 462 - 2.42926 4 3 ack 40 ------- 0 5.0 0.0 50 462 r 2.4316 3 4 cbr 500 ------- 1 1.0 6.0 222 448 + 2.4316 4 6 cbr 500 ------- 1 1.0 6.0 222 448 - 2.4316 4 6 cbr 500 ------- 1 1.0 6.0 222 448 r 2.4332 4 5 tcp 1000 ------- 0 0.0 5.0 53 439 + 2.4332 5 4 ack 40 ------- 0 5.0 0.0 53 466 - 2.4332 5 4 ack 40 ------- 0 5.0 0.0 53 466 - 2.4336 3 4 cbr 1000 ------- 1 2.0 7.0 114 457 r 2.4356 3 4 cbr 500 ------- 1 1.0 6.0 223 449 + 2.4356 4 6 cbr 500 ------- 1 1.0 6.0 223 449 - 2.4356 4 6 cbr 500 ------- 1 1.0 6.0 223 449 r 2.43726 5 4 ack 40 ------- 0 5.0 0.0 51 463 + 2.43726 4 3 ack 40 ------- 0 5.0 0.0 51 463 - 2.43726 4 3 ack 40 ------- 0 5.0 0.0 51 463 r 2.4396 4 6 cbr 500 ------- 1 1.0 6.0 220 444 + 2.44 2 3 cbr 1000 ------- 1 2.0 7.0 117 467 - 2.44 2 3 cbr 1000 ------- 1 2.0 7.0 117 467 - 2.4416 3 4 cbr 1000 ------- 1 2.0 7.0 115 460 r 2.4436 3 4 cbr 1000 ------- 1 2.0 7.0 109 450 + 2.4436 4 7 cbr 1000 ------- 1 2.0 7.0 109 450 - 2.4436 4 7 cbr 1000 ------- 1 2.0 7.0 109 450 r 2.4436 4 6 cbr 500 ------- 1 1.0 6.0 221 445 r 2.44526 5 4 ack 40 ------- 0 5.0 0.0 52 465 + 2.44526 4 3 ack 40 ------- 0 5.0 0.0 52 465 - 2.44526 4 3 ack 40 ------- 0 5.0 0.0 52 465 r 2.4476 3 4 cbr 500 ------- 1 1.0 6.0 224 451 + 2.4476 4 6 cbr 500 ------- 1 1.0 6.0 224 451 - 2.4476 4 6 cbr 500 ------- 1 1.0 6.0 224 451 r 2.448 2 3 cbr 1000 ------- 1 2.0 7.0 116 464 + 2.448 3 4 cbr 1000 ------- 1 2.0 7.0 116 464 - 2.4496 3 4 cbr 1000 ------- 1 2.0 7.0 116 464 r 2.45158 4 3 ack 40 ------- 0 5.0 0.0 47 458 + 2.45158 3 0 ack 40 ------- 0 5.0 0.0 47 458 - 2.45158 3 0 ack 40 ------- 0 5.0 0.0 47 458 r 2.4516 3 4 cbr 500 ------- 1 1.0 6.0 225 452 + 2.4516 4 6 cbr 500 ------- 1 1.0 6.0 225 452 - 2.4516 4 6 cbr 500 ------- 1 1.0 6.0 225 452 r 2.45326 5 4 ack 40 ------- 0 5.0 0.0 53 466 + 2.45326 4 3 ack 40 ------- 0 5.0 0.0 53 466 - 2.45326 4 3 ack 40 ------- 0 5.0 0.0 53 466 r 2.4556 4 7 cbr 1000 ------- 1 2.0 7.0 108 446 r 2.4556 4 6 cbr 500 ------- 1 1.0 6.0 222 448 r 2.4596 3 4 cbr 1000 ------- 1 2.0 7.0 110 453 + 2.4596 4 7 cbr 1000 ------- 1 2.0 7.0 110 453 - 2.4596 4 7 cbr 1000 ------- 1 2.0 7.0 110 453 r 2.4596 4 6 cbr 500 ------- 1 1.0 6.0 223 449 + 2.46 2 3 cbr 1000 ------- 1 2.0 7.0 118 468 - 2.46 2 3 cbr 1000 ------- 1 2.0 7.0 118 468 r 2.46358 4 3 ack 40 ------- 0 5.0 0.0 48 459 + 2.46358 3 0 ack 40 ------- 0 5.0 0.0 48 459 - 2.46358 3 0 ack 40 ------- 0 5.0 0.0 48 459 r 2.4676 3 4 cbr 1000 ------- 1 2.0 7.0 111 454 + 2.4676 4 7 cbr 1000 ------- 1 2.0 7.0 111 454 - 2.4676 4 7 cbr 1000 ------- 1 2.0 7.0 111 454 r 2.468 2 3 cbr 1000 ------- 1 2.0 7.0 117 467 + 2.468 3 4 cbr 1000 ------- 1 2.0 7.0 117 467 - 2.468 3 4 cbr 1000 ------- 1 2.0 7.0 117 467 r 2.47158 4 3 ack 40 ------- 0 5.0 0.0 49 461 + 2.47158 3 0 ack 40 ------- 0 5.0 0.0 49 461 - 2.47158 3 0 ack 40 ------- 0 5.0 0.0 49 461 r 2.4716 4 7 cbr 1000 ------- 1 2.0 7.0 109 450 r 2.4716 4 6 cbr 500 ------- 1 1.0 6.0 224 451 r 2.47165 3 0 ack 40 ------- 0 5.0 0.0 47 458 + 2.47165 0 3 tcp 1000 ------- 0 0.0 5.0 55 469 - 2.47165 0 3 tcp 1000 ------- 0 0.0 5.0 55 469 r 2.4756 3 4 cbr 1000 ------- 1 2.0 7.0 112 455 + 2.4756 4 7 cbr 1000 ------- 1 2.0 7.0 112 455 r 2.4756 4 6 cbr 500 ------- 1 1.0 6.0 225 452 - 2.4756 4 7 cbr 1000 ------- 1 2.0 7.0 112 455 r 2.47958 4 3 ack 40 ------- 0 5.0 0.0 50 462 + 2.47958 3 0 ack 40 ------- 0 5.0 0.0 50 462 - 2.47958 3 0 ack 40 ------- 0 5.0 0.0 50 462 + 2.48 2 3 cbr 1000 ------- 1 2.0 7.0 119 470 - 2.48 2 3 cbr 1000 ------- 1 2.0 7.0 119 470 r 2.4836 3 4 cbr 1000 ------- 1 2.0 7.0 113 456 + 2.4836 4 7 cbr 1000 ------- 1 2.0 7.0 113 456 - 2.4836 4 7 cbr 1000 ------- 1 2.0 7.0 113 456 r 2.48365 3 0 ack 40 ------- 0 5.0 0.0 48 459 + 2.48365 0 3 tcp 1000 ------- 0 0.0 5.0 56 471 - 2.48365 0 3 tcp 1000 ------- 0 0.0 5.0 56 471 r 2.48758 4 3 ack 40 ------- 0 5.0 0.0 51 463 + 2.48758 3 0 ack 40 ------- 0 5.0 0.0 51 463 - 2.48758 3 0 ack 40 ------- 0 5.0 0.0 51 463 r 2.4876 4 7 cbr 1000 ------- 1 2.0 7.0 110 453 r 2.488 2 3 cbr 1000 ------- 1 2.0 7.0 118 468 + 2.488 3 4 cbr 1000 ------- 1 2.0 7.0 118 468 - 2.488 3 4 cbr 1000 ------- 1 2.0 7.0 118 468 r 2.4916 3 4 cbr 1000 ------- 1 2.0 7.0 114 457 + 2.4916 4 7 cbr 1000 ------- 1 2.0 7.0 114 457 - 2.4916 4 7 cbr 1000 ------- 1 2.0 7.0 114 457 r 2.49165 3 0 ack 40 ------- 0 5.0 0.0 49 461 + 2.49165 0 3 tcp 1000 ------- 0 0.0 5.0 57 472 - 2.49165 0 3 tcp 1000 ------- 0 0.0 5.0 57 472 r 2.49325 0 3 tcp 1000 ------- 0 0.0 5.0 55 469 + 2.49325 3 4 tcp 1000 ------- 0 0.0 5.0 55 469 r 2.49558 4 3 ack 40 ------- 0 5.0 0.0 52 465 + 2.49558 3 0 ack 40 ------- 0 5.0 0.0 52 465 - 2.49558 3 0 ack 40 ------- 0 5.0 0.0 52 465 r 2.4956 4 7 cbr 1000 ------- 1 2.0 7.0 111 454 - 2.496 3 4 tcp 1000 ------- 0 0.0 5.0 55 469 r 2.4996 3 4 cbr 1000 ------- 1 2.0 7.0 115 460 + 2.4996 4 7 cbr 1000 ------- 1 2.0 7.0 115 460 - 2.4996 4 7 cbr 1000 ------- 1 2.0 7.0 115 460 r 2.49965 3 0 ack 40 ------- 0 5.0 0.0 50 462 + 2.49965 0 3 tcp 1000 ------- 0 0.0 5.0 58 473 - 2.49965 0 3 tcp 1000 ------- 0 0.0 5.0 58 473 r 2.50358 4 3 ack 40 ------- 0 5.0 0.0 53 466 + 2.50358 3 0 ack 40 ------- 0 5.0 0.0 53 466 - 2.50358 3 0 ack 40 ------- 0 5.0 0.0 53 466 r 2.5036 4 7 cbr 1000 ------- 1 2.0 7.0 112 455 r 2.50525 0 3 tcp 1000 ------- 0 0.0 5.0 56 471 + 2.50525 3 4 tcp 1000 ------- 0 0.0 5.0 56 471 - 2.50525 3 4 tcp 1000 ------- 0 0.0 5.0 56 471 r 2.5076 3 4 cbr 1000 ------- 1 2.0 7.0 116 464 + 2.5076 4 7 cbr 1000 ------- 1 2.0 7.0 116 464 - 2.5076 4 7 cbr 1000 ------- 1 2.0 7.0 116 464 r 2.50765 3 0 ack 40 ------- 0 5.0 0.0 51 463 r 2.508 2 3 cbr 1000 ------- 1 2.0 7.0 119 470 + 2.508 3 4 cbr 1000 ------- 1 2.0 7.0 119 470 r 2.5116 4 7 cbr 1000 ------- 1 2.0 7.0 113 456 r 2.51325 0 3 tcp 1000 ------- 0 0.0 5.0 57 472 + 2.51325 3 4 tcp 1000 ------- 0 0.0 5.0 57 472 - 2.51325 3 4 cbr 1000 ------- 1 2.0 7.0 119 470 r 2.51565 3 0 ack 40 ------- 0 5.0 0.0 52 465 r 2.5196 4 7 cbr 1000 ------- 1 2.0 7.0 114 457 r 2.52125 0 3 tcp 1000 ------- 0 0.0 5.0 58 473 + 2.52125 3 4 tcp 1000 ------- 0 0.0 5.0 58 473 - 2.52125 3 4 tcp 1000 ------- 0 0.0 5.0 57 472 r 2.52365 3 0 ack 40 ------- 0 5.0 0.0 53 466 r 2.526 3 4 cbr 1000 ------- 1 2.0 7.0 117 467 + 2.526 4 7 cbr 1000 ------- 1 2.0 7.0 117 467 - 2.526 4 7 cbr 1000 ------- 1 2.0 7.0 117 467 r 2.5276 4 7 cbr 1000 ------- 1 2.0 7.0 115 460 - 2.52925 3 4 tcp 1000 ------- 0 0.0 5.0 58 473 r 2.5356 4 7 cbr 1000 ------- 1 2.0 7.0 116 464 r 2.546 3 4 cbr 1000 ------- 1 2.0 7.0 118 468 + 2.546 4 7 cbr 1000 ------- 1 2.0 7.0 118 468 - 2.546 4 7 cbr 1000 ------- 1 2.0 7.0 118 468 v 2.5499999999999998 eval {set sim_annotation {FTP stops}} r 2.554 3 4 tcp 1000 ------- 0 0.0 5.0 55 469 + 2.554 4 5 tcp 1000 ------- 0 0.0 5.0 55 469 - 2.554 4 5 tcp 1000 ------- 0 0.0 5.0 55 469 r 2.554 4 7 cbr 1000 ------- 1 2.0 7.0 117 467 r 2.56325 3 4 tcp 1000 ------- 0 0.0 5.0 56 471 + 2.56325 4 5 tcp 1000 ------- 0 0.0 5.0 56 471 - 2.56325 4 5 tcp 1000 ------- 0 0.0 5.0 56 471 r 2.57125 3 4 cbr 1000 ------- 1 2.0 7.0 119 470 + 2.57125 4 7 cbr 1000 ------- 1 2.0 7.0 119 470 - 2.57125 4 7 cbr 1000 ------- 1 2.0 7.0 119 470 r 2.574 4 7 cbr 1000 ------- 1 2.0 7.0 118 468 r 2.5756 4 5 tcp 1000 ------- 0 0.0 5.0 55 469 + 2.5756 5 4 ack 40 ------- 0 5.0 0.0 53 474 - 2.5756 5 4 ack 40 ------- 0 5.0 0.0 53 474 r 2.57925 3 4 tcp 1000 ------- 0 0.0 5.0 57 472 + 2.57925 4 5 tcp 1000 ------- 0 0.0 5.0 57 472 - 2.57925 4 5 tcp 1000 ------- 0 0.0 5.0 57 472 r 2.58485 4 5 tcp 1000 ------- 0 0.0 5.0 56 471 + 2.58485 5 4 ack 40 ------- 0 5.0 0.0 53 475 - 2.58485 5 4 ack 40 ------- 0 5.0 0.0 53 475 r 2.58725 3 4 tcp 1000 ------- 0 0.0 5.0 58 473 + 2.58725 4 5 tcp 1000 ------- 0 0.0 5.0 58 473 - 2.58725 4 5 tcp 1000 ------- 0 0.0 5.0 58 473 r 2.59566 5 4 ack 40 ------- 0 5.0 0.0 53 474 + 2.59566 4 3 ack 40 ------- 0 5.0 0.0 53 474 - 2.59566 4 3 ack 40 ------- 0 5.0 0.0 53 474 r 2.59925 4 7 cbr 1000 ------- 1 2.0 7.0 119 470 r 2.60085 4 5 tcp 1000 ------- 0 0.0 5.0 57 472 + 2.60085 5 4 ack 40 ------- 0 5.0 0.0 53 476 - 2.60085 5 4 ack 40 ------- 0 5.0 0.0 53 476 r 2.60491 5 4 ack 40 ------- 0 5.0 0.0 53 475 + 2.60491 4 3 ack 40 ------- 0 5.0 0.0 53 475 - 2.60491 4 3 ack 40 ------- 0 5.0 0.0 53 475 r 2.60885 4 5 tcp 1000 ------- 0 0.0 5.0 58 473 + 2.60885 5 4 ack 40 ------- 0 5.0 0.0 53 477 - 2.60885 5 4 ack 40 ------- 0 5.0 0.0 53 477 r 2.62091 5 4 ack 40 ------- 0 5.0 0.0 53 476 + 2.62091 4 3 ack 40 ------- 0 5.0 0.0 53 476 - 2.62091 4 3 ack 40 ------- 0 5.0 0.0 53 476 r 2.62891 5 4 ack 40 ------- 0 5.0 0.0 53 477 + 2.62891 4 3 ack 40 ------- 0 5.0 0.0 53 477 - 2.62891 4 3 ack 40 ------- 0 5.0 0.0 53 477 r 2.64598 4 3 ack 40 ------- 0 5.0 0.0 53 474 + 2.64598 3 0 ack 40 ------- 0 5.0 0.0 53 474 - 2.64598 3 0 ack 40 ------- 0 5.0 0.0 53 474 r 2.65523 4 3 ack 40 ------- 0 5.0 0.0 53 475 + 2.65523 3 0 ack 40 ------- 0 5.0 0.0 53 475 - 2.65523 3 0 ack 40 ------- 0 5.0 0.0 53 475 r 2.66605 3 0 ack 40 ------- 0 5.0 0.0 53 474 r 2.67123 4 3 ack 40 ------- 0 5.0 0.0 53 476 + 2.67123 3 0 ack 40 ------- 0 5.0 0.0 53 476 - 2.67123 3 0 ack 40 ------- 0 5.0 0.0 53 476 r 2.6753 3 0 ack 40 ------- 0 5.0 0.0 53 475 r 2.67923 4 3 ack 40 ------- 0 5.0 0.0 53 477 + 2.67923 3 0 ack 40 ------- 0 5.0 0.0 53 477 - 2.67923 3 0 ack 40 ------- 0 5.0 0.0 53 477 r 2.6913 3 0 ack 40 ------- 0 5.0 0.0 53 476 + 2.6913 0 3 tcp 1000 ------- 0 0.0 5.0 54 478 - 2.6913 0 3 tcp 1000 ------- 0 0.0 5.0 54 478 + 2.6913 0 3 tcp 1000 ------- 0 0.0 5.0 55 479 + 2.6913 0 3 tcp 1000 ------- 0 0.0 5.0 56 480 + 2.6913 0 3 tcp 1000 ------- 0 0.0 5.0 57 481 - 2.6929 0 3 tcp 1000 ------- 0 0.0 5.0 55 479 - 2.6945 0 3 tcp 1000 ------- 0 0.0 5.0 56 480 - 2.6961 0 3 tcp 1000 ------- 0 0.0 5.0 57 481 r 2.6993 3 0 ack 40 ------- 0 5.0 0.0 53 477 nam-1.15/edu/C4-sliding-window.nam0000664000076400007660000120014706756704700015570 0ustar tomhnsnamV -t * -v 1.0a5 -a 1 -c 1 -F 1 -M 2 c -t * -i 0 -n black N -t * -S 0 -n {TCP session between node 0.0 and node 5.0} -p TCP -m {} N -t * -S 0 -h 58 N -t * -F 0 -M 0 -n tcp N -t * -F 0 -M 1 -n ack A -t * -n 1 -p 0 -o 255 -c 15 -a 1 A -t * -h 1 -m 127 -s 8 n -t * -a 4 -s 4 -S UP -v circle -c black n -t * -a 0 -s 0 -S UP -v circle -c black n -t * -a 5 -s 5 -S UP -v circle -c black n -t * -a 1 -s 1 -S UP -v circle -c black n -t * -a 6 -s 6 -S UP -v circle -c black n -t * -a 2 -s 2 -S UP -v circle -c black n -t * -a 7 -s 7 -S UP -v circle -c black n -t * -a 3 -s 3 -S UP -v circle -c black l -t * -s 0 -d 3 -S UP -r 5000000 -D 0.02 -c black -o right-down l -t * -s 1 -d 3 -S UP -r 1000000 -D 0.02 -c black -o right l -t * -s 2 -d 3 -S UP -r 1000000 -D 0.02 -c black -o right-up l -t * -s 3 -d 4 -S UP -r 1000000 -D 0.050000000000000003 -c black -o right l -t * -s 4 -d 5 -S UP -r 5000000 -D 0.02 -c black -o right-up l -t * -s 4 -d 6 -S UP -r 1000000 -D 0.02 -c black -o right l -t * -s 4 -d 7 -S UP -r 1000000 -D 0.02 -c black -o right-down q -t * -s 3 -d 4 -a 0.5 q -t * -s 4 -d 3 -a 0.5 a -t 0.00000000000000000 -s 0 -d 5 -n tcp f -t 0.00000000000000000 -s 0 -d 5 -n ssthresh_ -a tcp -v 20 -T v f -t 0.00000000000000000 -s 0 -d 5 -n cwnd_ -a tcp -v 8.000000 -T v f -t 0.00000000000000000 -s 0 -d 5 -n ssthresh_ -a tcp -v 20 -o 20 -T v f -t 0.00000000000000000 -s 0 -d 5 -n cwnd_ -a tcp -v 8.000000 -o 8.000000 -T v v -t 0.00000000000000000 monitor_agent 0 tcp n -t 0 -s 0 -S DLABEL -l SLIDING -L "" n -t 0 -s 5 -S DLABEL -l SLIDING -L "" n -t 0 -s 1 -S DLABEL -l CBR-1 -L "" n -t 0 -s 2 -S DLABEL -l CBR-2 -L "" n -t 0 -s 6 -S DLABEL -l CBR-1 -L "" n -t 0 -s 7 -S DLABEL -l CBR-2 -L "" + -t 0.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 0 -a 1 - -t 0.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 0 -a 1 h -t 0.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 0 -a 1 v -t 0.050000000000000003 sim_annotation 0.050000000000000003 1 CBR-1 starts + -t 0.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 1 -a 1 - -t 0.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 1 -a 1 h -t 0.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 1 -a 1 + -t 0.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 2 -a 1 - -t 0.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 2 -a 1 h -t 0.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 2 -a 1 r -t 0.074 -s 1 -d 3 -p cbr -e 500 -c 1 -i 0 -a 1 + -t 0.074 -s 3 -d 4 -p cbr -e 500 -c 1 -i 0 -a 1 - -t 0.074 -s 3 -d 4 -p cbr -e 500 -c 1 -i 0 -a 1 h -t 0.074 -s 3 -d 4 -p cbr -e 500 -c 1 -i 0 -a 1 + -t 0.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 3 -a 1 - -t 0.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 3 -a 1 h -t 0.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 3 -a 1 r -t 0.084 -s 1 -d 3 -p cbr -e 500 -c 1 -i 1 -a 1 + -t 0.084 -s 3 -d 4 -p cbr -e 500 -c 1 -i 1 -a 1 - -t 0.084 -s 3 -d 4 -p cbr -e 500 -c 1 -i 1 -a 1 h -t 0.084 -s 3 -d 4 -p cbr -e 500 -c 1 -i 1 -a 1 + -t 0.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 4 -a 1 - -t 0.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 4 -a 1 h -t 0.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 4 -a 1 r -t 0.094 -s 1 -d 3 -p cbr -e 500 -c 1 -i 2 -a 1 + -t 0.094 -s 3 -d 4 -p cbr -e 500 -c 1 -i 2 -a 1 - -t 0.094 -s 3 -d 4 -p cbr -e 500 -c 1 -i 2 -a 1 h -t 0.094 -s 3 -d 4 -p cbr -e 500 -c 1 -i 2 -a 1 + -t 0.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 5 -a 1 - -t 0.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 5 -a 1 h -t 0.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 5 -a 1 + -t 0.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 6 -a 1 - -t 0.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 6 -a 1 h -t 0.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 6 -a 1 v -t 0.10000000000000001 sim_annotation 0.10000000000000001 2 CBR-2 starts r -t 0.104 -s 1 -d 3 -p cbr -e 500 -c 1 -i 3 -a 1 + -t 0.104 -s 3 -d 4 -p cbr -e 500 -c 1 -i 3 -a 1 - -t 0.104 -s 3 -d 4 -p cbr -e 500 -c 1 -i 3 -a 1 h -t 0.104 -s 3 -d 4 -p cbr -e 500 -c 1 -i 3 -a 1 + -t 0.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 7 -a 1 - -t 0.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 7 -a 1 h -t 0.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 7 -a 1 r -t 0.114 -s 1 -d 3 -p cbr -e 500 -c 1 -i 4 -a 1 + -t 0.114 -s 3 -d 4 -p cbr -e 500 -c 1 -i 4 -a 1 - -t 0.114 -s 3 -d 4 -p cbr -e 500 -c 1 -i 4 -a 1 h -t 0.114 -s 3 -d 4 -p cbr -e 500 -c 1 -i 4 -a 1 + -t 0.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 8 -a 1 - -t 0.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 8 -a 1 h -t 0.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 8 -a 1 + -t 0.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 9 -a 1 - -t 0.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 9 -a 1 h -t 0.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 9 -a 1 r -t 0.124 -s 1 -d 3 -p cbr -e 500 -c 1 -i 5 -a 1 + -t 0.124 -s 3 -d 4 -p cbr -e 500 -c 1 -i 5 -a 1 - -t 0.124 -s 3 -d 4 -p cbr -e 500 -c 1 -i 5 -a 1 h -t 0.124 -s 3 -d 4 -p cbr -e 500 -c 1 -i 5 -a 1 r -t 0.128 -s 3 -d 4 -p cbr -e 500 -c 1 -i 0 -a 1 + -t 0.128 -s 4 -d 6 -p cbr -e 500 -c 1 -i 0 -a 1 - -t 0.128 -s 4 -d 6 -p cbr -e 500 -c 1 -i 0 -a 1 h -t 0.128 -s 4 -d 6 -p cbr -e 500 -c 1 -i 0 -a 1 r -t 0.128 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 6 -a 1 + -t 0.128 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 6 -a 1 - -t 0.128 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 6 -a 1 h -t 0.128 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 6 -a 1 + -t 0.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 10 -a 1 - -t 0.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 10 -a 1 h -t 0.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 10 -a 1 r -t 0.134 -s 1 -d 3 -p cbr -e 500 -c 1 -i 7 -a 1 + -t 0.134 -s 3 -d 4 -p cbr -e 500 -c 1 -i 7 -a 1 - -t 0.136 -s 3 -d 4 -p cbr -e 500 -c 1 -i 7 -a 1 h -t 0.136 -s 3 -d 4 -p cbr -e 500 -c 1 -i 7 -a 1 r -t 0.138 -s 3 -d 4 -p cbr -e 500 -c 1 -i 1 -a 1 + -t 0.138 -s 4 -d 6 -p cbr -e 500 -c 1 -i 1 -a 1 - -t 0.138 -s 4 -d 6 -p cbr -e 500 -c 1 -i 1 -a 1 h -t 0.138 -s 4 -d 6 -p cbr -e 500 -c 1 -i 1 -a 1 + -t 0.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 11 -a 1 - -t 0.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 11 -a 1 h -t 0.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 11 -a 1 + -t 0.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 12 -a 1 - -t 0.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 12 -a 1 h -t 0.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 12 -a 1 r -t 0.144 -s 1 -d 3 -p cbr -e 500 -c 1 -i 8 -a 1 + -t 0.144 -s 3 -d 4 -p cbr -e 500 -c 1 -i 8 -a 1 - -t 0.144 -s 3 -d 4 -p cbr -e 500 -c 1 -i 8 -a 1 h -t 0.144 -s 3 -d 4 -p cbr -e 500 -c 1 -i 8 -a 1 r -t 0.148 -s 3 -d 4 -p cbr -e 500 -c 1 -i 2 -a 1 + -t 0.148 -s 4 -d 6 -p cbr -e 500 -c 1 -i 2 -a 1 - -t 0.148 -s 4 -d 6 -p cbr -e 500 -c 1 -i 2 -a 1 h -t 0.148 -s 4 -d 6 -p cbr -e 500 -c 1 -i 2 -a 1 r -t 0.148 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 9 -a 1 + -t 0.148 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 9 -a 1 - -t 0.148 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 9 -a 1 h -t 0.148 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 9 -a 1 + -t 0.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 13 -a 1 - -t 0.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 13 -a 1 h -t 0.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 13 -a 1 r -t 0.152 -s 4 -d 6 -p cbr -e 500 -c 1 -i 0 -a 1 r -t 0.154 -s 1 -d 3 -p cbr -e 500 -c 1 -i 10 -a 1 + -t 0.154 -s 3 -d 4 -p cbr -e 500 -c 1 -i 10 -a 1 - -t 0.156 -s 3 -d 4 -p cbr -e 500 -c 1 -i 10 -a 1 h -t 0.156 -s 3 -d 4 -p cbr -e 500 -c 1 -i 10 -a 1 r -t 0.158 -s 3 -d 4 -p cbr -e 500 -c 1 -i 3 -a 1 + -t 0.158 -s 4 -d 6 -p cbr -e 500 -c 1 -i 3 -a 1 - -t 0.158 -s 4 -d 6 -p cbr -e 500 -c 1 -i 3 -a 1 h -t 0.158 -s 4 -d 6 -p cbr -e 500 -c 1 -i 3 -a 1 + -t 0.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 14 -a 1 - -t 0.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 14 -a 1 h -t 0.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 14 -a 1 + -t 0.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 15 -a 1 - -t 0.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 15 -a 1 h -t 0.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 15 -a 1 r -t 0.162 -s 4 -d 6 -p cbr -e 500 -c 1 -i 1 -a 1 r -t 0.164 -s 1 -d 3 -p cbr -e 500 -c 1 -i 11 -a 1 + -t 0.164 -s 3 -d 4 -p cbr -e 500 -c 1 -i 11 -a 1 - -t 0.164 -s 3 -d 4 -p cbr -e 500 -c 1 -i 11 -a 1 h -t 0.164 -s 3 -d 4 -p cbr -e 500 -c 1 -i 11 -a 1 r -t 0.168 -s 3 -d 4 -p cbr -e 500 -c 1 -i 4 -a 1 + -t 0.168 -s 4 -d 6 -p cbr -e 500 -c 1 -i 4 -a 1 - -t 0.168 -s 4 -d 6 -p cbr -e 500 -c 1 -i 4 -a 1 h -t 0.168 -s 4 -d 6 -p cbr -e 500 -c 1 -i 4 -a 1 r -t 0.168 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 12 -a 1 + -t 0.168 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 12 -a 1 - -t 0.168 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 12 -a 1 h -t 0.168 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 12 -a 1 + -t 0.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 16 -a 1 - -t 0.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 16 -a 1 h -t 0.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 16 -a 1 r -t 0.172 -s 4 -d 6 -p cbr -e 500 -c 1 -i 2 -a 1 r -t 0.174 -s 1 -d 3 -p cbr -e 500 -c 1 -i 13 -a 1 + -t 0.174 -s 3 -d 4 -p cbr -e 500 -c 1 -i 13 -a 1 - -t 0.176 -s 3 -d 4 -p cbr -e 500 -c 1 -i 13 -a 1 h -t 0.176 -s 3 -d 4 -p cbr -e 500 -c 1 -i 13 -a 1 r -t 0.178 -s 3 -d 4 -p cbr -e 500 -c 1 -i 5 -a 1 + -t 0.178 -s 4 -d 6 -p cbr -e 500 -c 1 -i 5 -a 1 - -t 0.178 -s 4 -d 6 -p cbr -e 500 -c 1 -i 5 -a 1 h -t 0.178 -s 4 -d 6 -p cbr -e 500 -c 1 -i 5 -a 1 + -t 0.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 17 -a 1 - -t 0.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 17 -a 1 h -t 0.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 17 -a 1 + -t 0.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 18 -a 1 - -t 0.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 18 -a 1 h -t 0.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 18 -a 1 r -t 0.182 -s 4 -d 6 -p cbr -e 500 -c 1 -i 3 -a 1 r -t 0.184 -s 1 -d 3 -p cbr -e 500 -c 1 -i 15 -a 1 + -t 0.184 -s 3 -d 4 -p cbr -e 500 -c 1 -i 15 -a 1 - -t 0.184 -s 3 -d 4 -p cbr -e 500 -c 1 -i 15 -a 1 h -t 0.184 -s 3 -d 4 -p cbr -e 500 -c 1 -i 15 -a 1 r -t 0.186 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 6 -a 1 + -t 0.186 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 6 -a 1 - -t 0.186 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 6 -a 1 h -t 0.186 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 6 -a 1 r -t 0.188 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 14 -a 1 + -t 0.188 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 14 -a 1 - -t 0.188 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 14 -a 1 h -t 0.188 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 14 -a 1 r -t 0.19 -s 3 -d 4 -p cbr -e 500 -c 1 -i 7 -a 1 + -t 0.19 -s 4 -d 6 -p cbr -e 500 -c 1 -i 7 -a 1 - -t 0.19 -s 4 -d 6 -p cbr -e 500 -c 1 -i 7 -a 1 h -t 0.19 -s 4 -d 6 -p cbr -e 500 -c 1 -i 7 -a 1 + -t 0.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 19 -a 1 - -t 0.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 19 -a 1 h -t 0.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 19 -a 1 r -t 0.192 -s 4 -d 6 -p cbr -e 500 -c 1 -i 4 -a 1 r -t 0.194 -s 1 -d 3 -p cbr -e 500 -c 1 -i 16 -a 1 + -t 0.194 -s 3 -d 4 -p cbr -e 500 -c 1 -i 16 -a 1 - -t 0.196 -s 3 -d 4 -p cbr -e 500 -c 1 -i 16 -a 1 h -t 0.196 -s 3 -d 4 -p cbr -e 500 -c 1 -i 16 -a 1 r -t 0.198 -s 3 -d 4 -p cbr -e 500 -c 1 -i 8 -a 1 + -t 0.198 -s 4 -d 6 -p cbr -e 500 -c 1 -i 8 -a 1 - -t 0.198 -s 4 -d 6 -p cbr -e 500 -c 1 -i 8 -a 1 h -t 0.198 -s 4 -d 6 -p cbr -e 500 -c 1 -i 8 -a 1 + -t 0.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 20 -a 1 - -t 0.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 20 -a 1 h -t 0.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 20 -a 1 + -t 0.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 21 -a 1 - -t 0.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 21 -a 1 h -t 0.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 21 -a 1 r -t 0.202 -s 4 -d 6 -p cbr -e 500 -c 1 -i 5 -a 1 r -t 0.204 -s 1 -d 3 -p cbr -e 500 -c 1 -i 18 -a 1 + -t 0.204 -s 3 -d 4 -p cbr -e 500 -c 1 -i 18 -a 1 - -t 0.204 -s 3 -d 4 -p cbr -e 500 -c 1 -i 18 -a 1 h -t 0.204 -s 3 -d 4 -p cbr -e 500 -c 1 -i 18 -a 1 r -t 0.206 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 9 -a 1 + -t 0.206 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 9 -a 1 - -t 0.206 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 9 -a 1 h -t 0.206 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 9 -a 1 r -t 0.208 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 17 -a 1 + -t 0.208 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 17 -a 1 - -t 0.208 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 17 -a 1 h -t 0.208 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 17 -a 1 r -t 0.21 -s 3 -d 4 -p cbr -e 500 -c 1 -i 10 -a 1 + -t 0.21 -s 4 -d 6 -p cbr -e 500 -c 1 -i 10 -a 1 - -t 0.21 -s 4 -d 6 -p cbr -e 500 -c 1 -i 10 -a 1 h -t 0.21 -s 4 -d 6 -p cbr -e 500 -c 1 -i 10 -a 1 + -t 0.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 22 -a 1 - -t 0.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 22 -a 1 h -t 0.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 22 -a 1 r -t 0.214 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 6 -a 1 r -t 0.214 -s 4 -d 6 -p cbr -e 500 -c 1 -i 7 -a 1 r -t 0.214 -s 1 -d 3 -p cbr -e 500 -c 1 -i 19 -a 1 + -t 0.214 -s 3 -d 4 -p cbr -e 500 -c 1 -i 19 -a 1 - -t 0.216 -s 3 -d 4 -p cbr -e 500 -c 1 -i 19 -a 1 h -t 0.216 -s 3 -d 4 -p cbr -e 500 -c 1 -i 19 -a 1 r -t 0.218 -s 3 -d 4 -p cbr -e 500 -c 1 -i 11 -a 1 + -t 0.218 -s 4 -d 6 -p cbr -e 500 -c 1 -i 11 -a 1 - -t 0.218 -s 4 -d 6 -p cbr -e 500 -c 1 -i 11 -a 1 h -t 0.218 -s 4 -d 6 -p cbr -e 500 -c 1 -i 11 -a 1 + -t 0.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 23 -a 1 - -t 0.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 23 -a 1 h -t 0.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 23 -a 1 + -t 0.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 24 -a 1 - -t 0.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 24 -a 1 h -t 0.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 24 -a 1 r -t 0.222 -s 4 -d 6 -p cbr -e 500 -c 1 -i 8 -a 1 r -t 0.224 -s 1 -d 3 -p cbr -e 500 -c 1 -i 21 -a 1 + -t 0.224 -s 3 -d 4 -p cbr -e 500 -c 1 -i 21 -a 1 - -t 0.224 -s 3 -d 4 -p cbr -e 500 -c 1 -i 21 -a 1 h -t 0.224 -s 3 -d 4 -p cbr -e 500 -c 1 -i 21 -a 1 r -t 0.226 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 12 -a 1 + -t 0.226 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 12 -a 1 - -t 0.226 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 12 -a 1 h -t 0.226 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 12 -a 1 r -t 0.228 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 20 -a 1 + -t 0.228 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 20 -a 1 - -t 0.228 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 20 -a 1 h -t 0.228 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 20 -a 1 r -t 0.23 -s 3 -d 4 -p cbr -e 500 -c 1 -i 13 -a 1 + -t 0.23 -s 4 -d 6 -p cbr -e 500 -c 1 -i 13 -a 1 - -t 0.23 -s 4 -d 6 -p cbr -e 500 -c 1 -i 13 -a 1 h -t 0.23 -s 4 -d 6 -p cbr -e 500 -c 1 -i 13 -a 1 + -t 0.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 25 -a 1 - -t 0.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 25 -a 1 h -t 0.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 25 -a 1 r -t 0.234 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 9 -a 1 r -t 0.234 -s 4 -d 6 -p cbr -e 500 -c 1 -i 10 -a 1 r -t 0.234 -s 1 -d 3 -p cbr -e 500 -c 1 -i 22 -a 1 + -t 0.234 -s 3 -d 4 -p cbr -e 500 -c 1 -i 22 -a 1 - -t 0.236 -s 3 -d 4 -p cbr -e 500 -c 1 -i 22 -a 1 h -t 0.236 -s 3 -d 4 -p cbr -e 500 -c 1 -i 22 -a 1 r -t 0.238 -s 3 -d 4 -p cbr -e 500 -c 1 -i 15 -a 1 + -t 0.238 -s 4 -d 6 -p cbr -e 500 -c 1 -i 15 -a 1 - -t 0.238 -s 4 -d 6 -p cbr -e 500 -c 1 -i 15 -a 1 h -t 0.238 -s 4 -d 6 -p cbr -e 500 -c 1 -i 15 -a 1 + -t 0.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 26 -a 1 - -t 0.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 26 -a 1 h -t 0.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 26 -a 1 + -t 0.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 27 -a 1 - -t 0.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 27 -a 1 h -t 0.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 27 -a 1 r -t 0.242 -s 4 -d 6 -p cbr -e 500 -c 1 -i 11 -a 1 r -t 0.244 -s 1 -d 3 -p cbr -e 500 -c 1 -i 24 -a 1 + -t 0.244 -s 3 -d 4 -p cbr -e 500 -c 1 -i 24 -a 1 - -t 0.244 -s 3 -d 4 -p cbr -e 500 -c 1 -i 24 -a 1 h -t 0.244 -s 3 -d 4 -p cbr -e 500 -c 1 -i 24 -a 1 r -t 0.246 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 14 -a 1 + -t 0.246 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 14 -a 1 - -t 0.246 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 14 -a 1 h -t 0.246 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 14 -a 1 r -t 0.248 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 23 -a 1 + -t 0.248 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 23 -a 1 - -t 0.248 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 23 -a 1 h -t 0.248 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 23 -a 1 r -t 0.25 -s 3 -d 4 -p cbr -e 500 -c 1 -i 16 -a 1 + -t 0.25 -s 4 -d 6 -p cbr -e 500 -c 1 -i 16 -a 1 - -t 0.25 -s 4 -d 6 -p cbr -e 500 -c 1 -i 16 -a 1 h -t 0.25 -s 4 -d 6 -p cbr -e 500 -c 1 -i 16 -a 1 + -t 0.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 28 -a 1 - -t 0.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 28 -a 1 h -t 0.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 28 -a 1 r -t 0.254 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 12 -a 1 r -t 0.254 -s 4 -d 6 -p cbr -e 500 -c 1 -i 13 -a 1 r -t 0.254 -s 1 -d 3 -p cbr -e 500 -c 1 -i 25 -a 1 + -t 0.254 -s 3 -d 4 -p cbr -e 500 -c 1 -i 25 -a 1 - -t 0.256 -s 3 -d 4 -p cbr -e 500 -c 1 -i 25 -a 1 h -t 0.256 -s 3 -d 4 -p cbr -e 500 -c 1 -i 25 -a 1 r -t 0.258 -s 3 -d 4 -p cbr -e 500 -c 1 -i 18 -a 1 + -t 0.258 -s 4 -d 6 -p cbr -e 500 -c 1 -i 18 -a 1 - -t 0.258 -s 4 -d 6 -p cbr -e 500 -c 1 -i 18 -a 1 h -t 0.258 -s 4 -d 6 -p cbr -e 500 -c 1 -i 18 -a 1 + -t 0.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 29 -a 1 - -t 0.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 29 -a 1 h -t 0.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 29 -a 1 + -t 0.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 30 -a 1 - -t 0.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 30 -a 1 h -t 0.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 30 -a 1 r -t 0.262 -s 4 -d 6 -p cbr -e 500 -c 1 -i 15 -a 1 r -t 0.264 -s 1 -d 3 -p cbr -e 500 -c 1 -i 27 -a 1 + -t 0.264 -s 3 -d 4 -p cbr -e 500 -c 1 -i 27 -a 1 - -t 0.264 -s 3 -d 4 -p cbr -e 500 -c 1 -i 27 -a 1 h -t 0.264 -s 3 -d 4 -p cbr -e 500 -c 1 -i 27 -a 1 r -t 0.266 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 17 -a 1 + -t 0.266 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 17 -a 1 - -t 0.266 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 17 -a 1 h -t 0.266 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 17 -a 1 r -t 0.268 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 26 -a 1 + -t 0.268 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 26 -a 1 - -t 0.268 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 26 -a 1 h -t 0.268 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 26 -a 1 r -t 0.27 -s 3 -d 4 -p cbr -e 500 -c 1 -i 19 -a 1 + -t 0.27 -s 4 -d 6 -p cbr -e 500 -c 1 -i 19 -a 1 - -t 0.27 -s 4 -d 6 -p cbr -e 500 -c 1 -i 19 -a 1 h -t 0.27 -s 4 -d 6 -p cbr -e 500 -c 1 -i 19 -a 1 + -t 0.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 31 -a 1 - -t 0.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 31 -a 1 h -t 0.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 31 -a 1 r -t 0.274 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 14 -a 1 r -t 0.274 -s 4 -d 6 -p cbr -e 500 -c 1 -i 16 -a 1 r -t 0.274 -s 1 -d 3 -p cbr -e 500 -c 1 -i 28 -a 1 + -t 0.274 -s 3 -d 4 -p cbr -e 500 -c 1 -i 28 -a 1 - -t 0.276 -s 3 -d 4 -p cbr -e 500 -c 1 -i 28 -a 1 h -t 0.276 -s 3 -d 4 -p cbr -e 500 -c 1 -i 28 -a 1 r -t 0.278 -s 3 -d 4 -p cbr -e 500 -c 1 -i 21 -a 1 + -t 0.278 -s 4 -d 6 -p cbr -e 500 -c 1 -i 21 -a 1 - -t 0.278 -s 4 -d 6 -p cbr -e 500 -c 1 -i 21 -a 1 h -t 0.278 -s 4 -d 6 -p cbr -e 500 -c 1 -i 21 -a 1 + -t 0.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 32 -a 1 - -t 0.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 32 -a 1 h -t 0.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 32 -a 1 + -t 0.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 33 -a 1 - -t 0.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 33 -a 1 h -t 0.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 33 -a 1 r -t 0.282 -s 4 -d 6 -p cbr -e 500 -c 1 -i 18 -a 1 r -t 0.284 -s 1 -d 3 -p cbr -e 500 -c 1 -i 30 -a 1 + -t 0.284 -s 3 -d 4 -p cbr -e 500 -c 1 -i 30 -a 1 - -t 0.284 -s 3 -d 4 -p cbr -e 500 -c 1 -i 30 -a 1 h -t 0.284 -s 3 -d 4 -p cbr -e 500 -c 1 -i 30 -a 1 r -t 0.286 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 20 -a 1 + -t 0.286 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 20 -a 1 - -t 0.286 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 20 -a 1 h -t 0.286 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 20 -a 1 r -t 0.288 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 29 -a 1 + -t 0.288 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 29 -a 1 - -t 0.288 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 29 -a 1 h -t 0.288 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 29 -a 1 r -t 0.29 -s 3 -d 4 -p cbr -e 500 -c 1 -i 22 -a 1 + -t 0.29 -s 4 -d 6 -p cbr -e 500 -c 1 -i 22 -a 1 - -t 0.29 -s 4 -d 6 -p cbr -e 500 -c 1 -i 22 -a 1 h -t 0.29 -s 4 -d 6 -p cbr -e 500 -c 1 -i 22 -a 1 + -t 0.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 34 -a 1 - -t 0.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 34 -a 1 h -t 0.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 34 -a 1 r -t 0.294 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 17 -a 1 r -t 0.294 -s 4 -d 6 -p cbr -e 500 -c 1 -i 19 -a 1 r -t 0.294 -s 1 -d 3 -p cbr -e 500 -c 1 -i 31 -a 1 + -t 0.294 -s 3 -d 4 -p cbr -e 500 -c 1 -i 31 -a 1 - -t 0.296 -s 3 -d 4 -p cbr -e 500 -c 1 -i 31 -a 1 h -t 0.296 -s 3 -d 4 -p cbr -e 500 -c 1 -i 31 -a 1 r -t 0.298 -s 3 -d 4 -p cbr -e 500 -c 1 -i 24 -a 1 + -t 0.298 -s 4 -d 6 -p cbr -e 500 -c 1 -i 24 -a 1 - -t 0.298 -s 4 -d 6 -p cbr -e 500 -c 1 -i 24 -a 1 h -t 0.298 -s 4 -d 6 -p cbr -e 500 -c 1 -i 24 -a 1 + -t 0.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 35 -a 1 - -t 0.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 35 -a 1 h -t 0.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 35 -a 1 + -t 0.3 -s 1 -d 3 -p cbr -e 500 -c 1 -i 36 -a 1 - -t 0.3 -s 1 -d 3 -p cbr -e 500 -c 1 -i 36 -a 1 h -t 0.3 -s 1 -d 3 -p cbr -e 500 -c 1 -i 36 -a 1 r -t 0.302 -s 4 -d 6 -p cbr -e 500 -c 1 -i 21 -a 1 r -t 0.304 -s 1 -d 3 -p cbr -e 500 -c 1 -i 33 -a 1 + -t 0.304 -s 3 -d 4 -p cbr -e 500 -c 1 -i 33 -a 1 - -t 0.304 -s 3 -d 4 -p cbr -e 500 -c 1 -i 33 -a 1 h -t 0.304 -s 3 -d 4 -p cbr -e 500 -c 1 -i 33 -a 1 r -t 0.306 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 23 -a 1 + -t 0.306 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 23 -a 1 - -t 0.306 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 23 -a 1 h -t 0.306 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 23 -a 1 r -t 0.308 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 32 -a 1 + -t 0.308 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 32 -a 1 - -t 0.308 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 32 -a 1 h -t 0.308 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 32 -a 1 r -t 0.31 -s 3 -d 4 -p cbr -e 500 -c 1 -i 25 -a 1 + -t 0.31 -s 4 -d 6 -p cbr -e 500 -c 1 -i 25 -a 1 - -t 0.31 -s 4 -d 6 -p cbr -e 500 -c 1 -i 25 -a 1 h -t 0.31 -s 4 -d 6 -p cbr -e 500 -c 1 -i 25 -a 1 + -t 0.31 -s 1 -d 3 -p cbr -e 500 -c 1 -i 37 -a 1 - -t 0.31 -s 1 -d 3 -p cbr -e 500 -c 1 -i 37 -a 1 h -t 0.31 -s 1 -d 3 -p cbr -e 500 -c 1 -i 37 -a 1 r -t 0.314 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 20 -a 1 r -t 0.314 -s 4 -d 6 -p cbr -e 500 -c 1 -i 22 -a 1 r -t 0.314 -s 1 -d 3 -p cbr -e 500 -c 1 -i 34 -a 1 + -t 0.314 -s 3 -d 4 -p cbr -e 500 -c 1 -i 34 -a 1 - -t 0.316 -s 3 -d 4 -p cbr -e 500 -c 1 -i 34 -a 1 h -t 0.316 -s 3 -d 4 -p cbr -e 500 -c 1 -i 34 -a 1 r -t 0.318 -s 3 -d 4 -p cbr -e 500 -c 1 -i 27 -a 1 + -t 0.318 -s 4 -d 6 -p cbr -e 500 -c 1 -i 27 -a 1 - -t 0.318 -s 4 -d 6 -p cbr -e 500 -c 1 -i 27 -a 1 h -t 0.318 -s 4 -d 6 -p cbr -e 500 -c 1 -i 27 -a 1 + -t 0.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 38 -a 1 - -t 0.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 38 -a 1 h -t 0.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 38 -a 1 + -t 0.32 -s 1 -d 3 -p cbr -e 500 -c 1 -i 39 -a 1 - -t 0.32 -s 1 -d 3 -p cbr -e 500 -c 1 -i 39 -a 1 h -t 0.32 -s 1 -d 3 -p cbr -e 500 -c 1 -i 39 -a 1 r -t 0.322 -s 4 -d 6 -p cbr -e 500 -c 1 -i 24 -a 1 r -t 0.324 -s 1 -d 3 -p cbr -e 500 -c 1 -i 36 -a 1 + -t 0.324 -s 3 -d 4 -p cbr -e 500 -c 1 -i 36 -a 1 - -t 0.324 -s 3 -d 4 -p cbr -e 500 -c 1 -i 36 -a 1 h -t 0.324 -s 3 -d 4 -p cbr -e 500 -c 1 -i 36 -a 1 r -t 0.326 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 26 -a 1 + -t 0.326 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 26 -a 1 - -t 0.326 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 26 -a 1 h -t 0.326 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 26 -a 1 r -t 0.328 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 35 -a 1 + -t 0.328 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 35 -a 1 - -t 0.328 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 35 -a 1 h -t 0.328 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 35 -a 1 r -t 0.33 -s 3 -d 4 -p cbr -e 500 -c 1 -i 28 -a 1 + -t 0.33 -s 4 -d 6 -p cbr -e 500 -c 1 -i 28 -a 1 - -t 0.33 -s 4 -d 6 -p cbr -e 500 -c 1 -i 28 -a 1 h -t 0.33 -s 4 -d 6 -p cbr -e 500 -c 1 -i 28 -a 1 + -t 0.33 -s 1 -d 3 -p cbr -e 500 -c 1 -i 40 -a 1 - -t 0.33 -s 1 -d 3 -p cbr -e 500 -c 1 -i 40 -a 1 h -t 0.33 -s 1 -d 3 -p cbr -e 500 -c 1 -i 40 -a 1 r -t 0.334 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 23 -a 1 r -t 0.334 -s 4 -d 6 -p cbr -e 500 -c 1 -i 25 -a 1 r -t 0.334 -s 1 -d 3 -p cbr -e 500 -c 1 -i 37 -a 1 + -t 0.334 -s 3 -d 4 -p cbr -e 500 -c 1 -i 37 -a 1 - -t 0.336 -s 3 -d 4 -p cbr -e 500 -c 1 -i 37 -a 1 h -t 0.336 -s 3 -d 4 -p cbr -e 500 -c 1 -i 37 -a 1 r -t 0.338 -s 3 -d 4 -p cbr -e 500 -c 1 -i 30 -a 1 + -t 0.338 -s 4 -d 6 -p cbr -e 500 -c 1 -i 30 -a 1 - -t 0.338 -s 4 -d 6 -p cbr -e 500 -c 1 -i 30 -a 1 h -t 0.338 -s 4 -d 6 -p cbr -e 500 -c 1 -i 30 -a 1 + -t 0.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 41 -a 1 - -t 0.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 41 -a 1 h -t 0.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 41 -a 1 + -t 0.34 -s 1 -d 3 -p cbr -e 500 -c 1 -i 42 -a 1 - -t 0.34 -s 1 -d 3 -p cbr -e 500 -c 1 -i 42 -a 1 h -t 0.34 -s 1 -d 3 -p cbr -e 500 -c 1 -i 42 -a 1 r -t 0.342 -s 4 -d 6 -p cbr -e 500 -c 1 -i 27 -a 1 r -t 0.344 -s 1 -d 3 -p cbr -e 500 -c 1 -i 39 -a 1 + -t 0.344 -s 3 -d 4 -p cbr -e 500 -c 1 -i 39 -a 1 - -t 0.344 -s 3 -d 4 -p cbr -e 500 -c 1 -i 39 -a 1 h -t 0.344 -s 3 -d 4 -p cbr -e 500 -c 1 -i 39 -a 1 r -t 0.346 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 29 -a 1 + -t 0.346 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 29 -a 1 - -t 0.346 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 29 -a 1 h -t 0.346 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 29 -a 1 r -t 0.348 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 38 -a 1 + -t 0.348 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 38 -a 1 - -t 0.348 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 38 -a 1 h -t 0.348 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 38 -a 1 r -t 0.35 -s 3 -d 4 -p cbr -e 500 -c 1 -i 31 -a 1 + -t 0.35 -s 4 -d 6 -p cbr -e 500 -c 1 -i 31 -a 1 - -t 0.35 -s 4 -d 6 -p cbr -e 500 -c 1 -i 31 -a 1 h -t 0.35 -s 4 -d 6 -p cbr -e 500 -c 1 -i 31 -a 1 + -t 0.35 -s 1 -d 3 -p cbr -e 500 -c 1 -i 43 -a 1 - -t 0.35 -s 1 -d 3 -p cbr -e 500 -c 1 -i 43 -a 1 h -t 0.35 -s 1 -d 3 -p cbr -e 500 -c 1 -i 43 -a 1 r -t 0.354 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 26 -a 1 r -t 0.354 -s 4 -d 6 -p cbr -e 500 -c 1 -i 28 -a 1 r -t 0.354 -s 1 -d 3 -p cbr -e 500 -c 1 -i 40 -a 1 + -t 0.354 -s 3 -d 4 -p cbr -e 500 -c 1 -i 40 -a 1 - -t 0.356 -s 3 -d 4 -p cbr -e 500 -c 1 -i 40 -a 1 h -t 0.356 -s 3 -d 4 -p cbr -e 500 -c 1 -i 40 -a 1 r -t 0.358 -s 3 -d 4 -p cbr -e 500 -c 1 -i 33 -a 1 + -t 0.358 -s 4 -d 6 -p cbr -e 500 -c 1 -i 33 -a 1 - -t 0.358 -s 4 -d 6 -p cbr -e 500 -c 1 -i 33 -a 1 h -t 0.358 -s 4 -d 6 -p cbr -e 500 -c 1 -i 33 -a 1 + -t 0.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 44 -a 1 - -t 0.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 44 -a 1 h -t 0.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 44 -a 1 + -t 0.36 -s 1 -d 3 -p cbr -e 500 -c 1 -i 45 -a 1 - -t 0.36 -s 1 -d 3 -p cbr -e 500 -c 1 -i 45 -a 1 h -t 0.36 -s 1 -d 3 -p cbr -e 500 -c 1 -i 45 -a 1 r -t 0.362 -s 4 -d 6 -p cbr -e 500 -c 1 -i 30 -a 1 r -t 0.364 -s 1 -d 3 -p cbr -e 500 -c 1 -i 42 -a 1 + -t 0.364 -s 3 -d 4 -p cbr -e 500 -c 1 -i 42 -a 1 - -t 0.364 -s 3 -d 4 -p cbr -e 500 -c 1 -i 42 -a 1 h -t 0.364 -s 3 -d 4 -p cbr -e 500 -c 1 -i 42 -a 1 r -t 0.366 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 32 -a 1 + -t 0.366 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 32 -a 1 - -t 0.366 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 32 -a 1 h -t 0.366 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 32 -a 1 r -t 0.368 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 41 -a 1 + -t 0.368 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 41 -a 1 - -t 0.368 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 41 -a 1 h -t 0.368 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 41 -a 1 r -t 0.37 -s 3 -d 4 -p cbr -e 500 -c 1 -i 34 -a 1 + -t 0.37 -s 4 -d 6 -p cbr -e 500 -c 1 -i 34 -a 1 - -t 0.37 -s 4 -d 6 -p cbr -e 500 -c 1 -i 34 -a 1 h -t 0.37 -s 4 -d 6 -p cbr -e 500 -c 1 -i 34 -a 1 + -t 0.37 -s 1 -d 3 -p cbr -e 500 -c 1 -i 46 -a 1 - -t 0.37 -s 1 -d 3 -p cbr -e 500 -c 1 -i 46 -a 1 h -t 0.37 -s 1 -d 3 -p cbr -e 500 -c 1 -i 46 -a 1 r -t 0.374 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 29 -a 1 r -t 0.374 -s 4 -d 6 -p cbr -e 500 -c 1 -i 31 -a 1 r -t 0.374 -s 1 -d 3 -p cbr -e 500 -c 1 -i 43 -a 1 + -t 0.374 -s 3 -d 4 -p cbr -e 500 -c 1 -i 43 -a 1 - -t 0.376 -s 3 -d 4 -p cbr -e 500 -c 1 -i 43 -a 1 h -t 0.376 -s 3 -d 4 -p cbr -e 500 -c 1 -i 43 -a 1 r -t 0.378 -s 3 -d 4 -p cbr -e 500 -c 1 -i 36 -a 1 + -t 0.378 -s 4 -d 6 -p cbr -e 500 -c 1 -i 36 -a 1 - -t 0.378 -s 4 -d 6 -p cbr -e 500 -c 1 -i 36 -a 1 h -t 0.378 -s 4 -d 6 -p cbr -e 500 -c 1 -i 36 -a 1 + -t 0.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 47 -a 1 - -t 0.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 47 -a 1 h -t 0.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 47 -a 1 + -t 0.38 -s 1 -d 3 -p cbr -e 500 -c 1 -i 48 -a 1 - -t 0.38 -s 1 -d 3 -p cbr -e 500 -c 1 -i 48 -a 1 h -t 0.38 -s 1 -d 3 -p cbr -e 500 -c 1 -i 48 -a 1 r -t 0.382 -s 4 -d 6 -p cbr -e 500 -c 1 -i 33 -a 1 r -t 0.384 -s 1 -d 3 -p cbr -e 500 -c 1 -i 45 -a 1 + -t 0.384 -s 3 -d 4 -p cbr -e 500 -c 1 -i 45 -a 1 - -t 0.384 -s 3 -d 4 -p cbr -e 500 -c 1 -i 45 -a 1 h -t 0.384 -s 3 -d 4 -p cbr -e 500 -c 1 -i 45 -a 1 r -t 0.386 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 35 -a 1 + -t 0.386 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 35 -a 1 - -t 0.386 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 35 -a 1 h -t 0.386 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 35 -a 1 r -t 0.388 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 44 -a 1 + -t 0.388 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 44 -a 1 - -t 0.388 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 44 -a 1 h -t 0.388 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 44 -a 1 r -t 0.39 -s 3 -d 4 -p cbr -e 500 -c 1 -i 37 -a 1 + -t 0.39 -s 4 -d 6 -p cbr -e 500 -c 1 -i 37 -a 1 - -t 0.39 -s 4 -d 6 -p cbr -e 500 -c 1 -i 37 -a 1 h -t 0.39 -s 4 -d 6 -p cbr -e 500 -c 1 -i 37 -a 1 + -t 0.39 -s 1 -d 3 -p cbr -e 500 -c 1 -i 49 -a 1 - -t 0.39 -s 1 -d 3 -p cbr -e 500 -c 1 -i 49 -a 1 h -t 0.39 -s 1 -d 3 -p cbr -e 500 -c 1 -i 49 -a 1 r -t 0.394 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 32 -a 1 r -t 0.394 -s 4 -d 6 -p cbr -e 500 -c 1 -i 34 -a 1 r -t 0.394 -s 1 -d 3 -p cbr -e 500 -c 1 -i 46 -a 1 + -t 0.394 -s 3 -d 4 -p cbr -e 500 -c 1 -i 46 -a 1 - -t 0.396 -s 3 -d 4 -p cbr -e 500 -c 1 -i 46 -a 1 h -t 0.396 -s 3 -d 4 -p cbr -e 500 -c 1 -i 46 -a 1 r -t 0.398 -s 3 -d 4 -p cbr -e 500 -c 1 -i 39 -a 1 + -t 0.398 -s 4 -d 6 -p cbr -e 500 -c 1 -i 39 -a 1 - -t 0.398 -s 4 -d 6 -p cbr -e 500 -c 1 -i 39 -a 1 h -t 0.398 -s 4 -d 6 -p cbr -e 500 -c 1 -i 39 -a 1 + -t 0.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 50 -a 1 - -t 0.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 50 -a 1 h -t 0.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 50 -a 1 + -t 0.4 -s 1 -d 3 -p cbr -e 500 -c 1 -i 51 -a 1 - -t 0.4 -s 1 -d 3 -p cbr -e 500 -c 1 -i 51 -a 1 h -t 0.4 -s 1 -d 3 -p cbr -e 500 -c 1 -i 51 -a 1 r -t 0.402 -s 4 -d 6 -p cbr -e 500 -c 1 -i 36 -a 1 r -t 0.404 -s 1 -d 3 -p cbr -e 500 -c 1 -i 48 -a 1 + -t 0.404 -s 3 -d 4 -p cbr -e 500 -c 1 -i 48 -a 1 - -t 0.404 -s 3 -d 4 -p cbr -e 500 -c 1 -i 48 -a 1 h -t 0.404 -s 3 -d 4 -p cbr -e 500 -c 1 -i 48 -a 1 r -t 0.406 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 38 -a 1 + -t 0.406 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 38 -a 1 - -t 0.406 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 38 -a 1 h -t 0.406 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 38 -a 1 r -t 0.408 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 47 -a 1 + -t 0.408 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 47 -a 1 - -t 0.408 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 47 -a 1 h -t 0.408 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 47 -a 1 r -t 0.41 -s 3 -d 4 -p cbr -e 500 -c 1 -i 40 -a 1 + -t 0.41 -s 4 -d 6 -p cbr -e 500 -c 1 -i 40 -a 1 - -t 0.41 -s 4 -d 6 -p cbr -e 500 -c 1 -i 40 -a 1 h -t 0.41 -s 4 -d 6 -p cbr -e 500 -c 1 -i 40 -a 1 + -t 0.41 -s 1 -d 3 -p cbr -e 500 -c 1 -i 52 -a 1 - -t 0.41 -s 1 -d 3 -p cbr -e 500 -c 1 -i 52 -a 1 h -t 0.41 -s 1 -d 3 -p cbr -e 500 -c 1 -i 52 -a 1 r -t 0.414 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 35 -a 1 r -t 0.414 -s 4 -d 6 -p cbr -e 500 -c 1 -i 37 -a 1 r -t 0.414 -s 1 -d 3 -p cbr -e 500 -c 1 -i 49 -a 1 + -t 0.414 -s 3 -d 4 -p cbr -e 500 -c 1 -i 49 -a 1 - -t 0.416 -s 3 -d 4 -p cbr -e 500 -c 1 -i 49 -a 1 h -t 0.416 -s 3 -d 4 -p cbr -e 500 -c 1 -i 49 -a 1 r -t 0.418 -s 3 -d 4 -p cbr -e 500 -c 1 -i 42 -a 1 + -t 0.418 -s 4 -d 6 -p cbr -e 500 -c 1 -i 42 -a 1 - -t 0.418 -s 4 -d 6 -p cbr -e 500 -c 1 -i 42 -a 1 h -t 0.418 -s 4 -d 6 -p cbr -e 500 -c 1 -i 42 -a 1 + -t 0.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 53 -a 1 - -t 0.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 53 -a 1 h -t 0.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 53 -a 1 + -t 0.42 -s 1 -d 3 -p cbr -e 500 -c 1 -i 54 -a 1 - -t 0.42 -s 1 -d 3 -p cbr -e 500 -c 1 -i 54 -a 1 h -t 0.42 -s 1 -d 3 -p cbr -e 500 -c 1 -i 54 -a 1 r -t 0.422 -s 4 -d 6 -p cbr -e 500 -c 1 -i 39 -a 1 r -t 0.424 -s 1 -d 3 -p cbr -e 500 -c 1 -i 51 -a 1 + -t 0.424 -s 3 -d 4 -p cbr -e 500 -c 1 -i 51 -a 1 - -t 0.424 -s 3 -d 4 -p cbr -e 500 -c 1 -i 51 -a 1 h -t 0.424 -s 3 -d 4 -p cbr -e 500 -c 1 -i 51 -a 1 r -t 0.426 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 41 -a 1 + -t 0.426 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 41 -a 1 - -t 0.426 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 41 -a 1 h -t 0.426 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 41 -a 1 r -t 0.428 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 50 -a 1 + -t 0.428 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 50 -a 1 - -t 0.428 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 50 -a 1 h -t 0.428 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 50 -a 1 r -t 0.43 -s 3 -d 4 -p cbr -e 500 -c 1 -i 43 -a 1 + -t 0.43 -s 4 -d 6 -p cbr -e 500 -c 1 -i 43 -a 1 - -t 0.43 -s 4 -d 6 -p cbr -e 500 -c 1 -i 43 -a 1 h -t 0.43 -s 4 -d 6 -p cbr -e 500 -c 1 -i 43 -a 1 + -t 0.43 -s 1 -d 3 -p cbr -e 500 -c 1 -i 55 -a 1 - -t 0.43 -s 1 -d 3 -p cbr -e 500 -c 1 -i 55 -a 1 h -t 0.43 -s 1 -d 3 -p cbr -e 500 -c 1 -i 55 -a 1 r -t 0.434 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 38 -a 1 r -t 0.434 -s 4 -d 6 -p cbr -e 500 -c 1 -i 40 -a 1 r -t 0.434 -s 1 -d 3 -p cbr -e 500 -c 1 -i 52 -a 1 + -t 0.434 -s 3 -d 4 -p cbr -e 500 -c 1 -i 52 -a 1 - -t 0.436 -s 3 -d 4 -p cbr -e 500 -c 1 -i 52 -a 1 h -t 0.436 -s 3 -d 4 -p cbr -e 500 -c 1 -i 52 -a 1 r -t 0.438 -s 3 -d 4 -p cbr -e 500 -c 1 -i 45 -a 1 + -t 0.438 -s 4 -d 6 -p cbr -e 500 -c 1 -i 45 -a 1 - -t 0.438 -s 4 -d 6 -p cbr -e 500 -c 1 -i 45 -a 1 h -t 0.438 -s 4 -d 6 -p cbr -e 500 -c 1 -i 45 -a 1 + -t 0.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 56 -a 1 - -t 0.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 56 -a 1 h -t 0.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 56 -a 1 + -t 0.44 -s 1 -d 3 -p cbr -e 500 -c 1 -i 57 -a 1 - -t 0.44 -s 1 -d 3 -p cbr -e 500 -c 1 -i 57 -a 1 h -t 0.44 -s 1 -d 3 -p cbr -e 500 -c 1 -i 57 -a 1 r -t 0.442 -s 4 -d 6 -p cbr -e 500 -c 1 -i 42 -a 1 r -t 0.444 -s 1 -d 3 -p cbr -e 500 -c 1 -i 54 -a 1 + -t 0.444 -s 3 -d 4 -p cbr -e 500 -c 1 -i 54 -a 1 - -t 0.444 -s 3 -d 4 -p cbr -e 500 -c 1 -i 54 -a 1 h -t 0.444 -s 3 -d 4 -p cbr -e 500 -c 1 -i 54 -a 1 r -t 0.446 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 44 -a 1 + -t 0.446 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 44 -a 1 - -t 0.446 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 44 -a 1 h -t 0.446 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 44 -a 1 r -t 0.448 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 53 -a 1 + -t 0.448 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 53 -a 1 - -t 0.448 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 53 -a 1 h -t 0.448 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 53 -a 1 r -t 0.45 -s 3 -d 4 -p cbr -e 500 -c 1 -i 46 -a 1 + -t 0.45 -s 4 -d 6 -p cbr -e 500 -c 1 -i 46 -a 1 - -t 0.45 -s 4 -d 6 -p cbr -e 500 -c 1 -i 46 -a 1 h -t 0.45 -s 4 -d 6 -p cbr -e 500 -c 1 -i 46 -a 1 + -t 0.45 -s 1 -d 3 -p cbr -e 500 -c 1 -i 58 -a 1 - -t 0.45 -s 1 -d 3 -p cbr -e 500 -c 1 -i 58 -a 1 h -t 0.45 -s 1 -d 3 -p cbr -e 500 -c 1 -i 58 -a 1 r -t 0.454 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 41 -a 1 r -t 0.454 -s 4 -d 6 -p cbr -e 500 -c 1 -i 43 -a 1 r -t 0.454 -s 1 -d 3 -p cbr -e 500 -c 1 -i 55 -a 1 + -t 0.454 -s 3 -d 4 -p cbr -e 500 -c 1 -i 55 -a 1 - -t 0.456 -s 3 -d 4 -p cbr -e 500 -c 1 -i 55 -a 1 h -t 0.456 -s 3 -d 4 -p cbr -e 500 -c 1 -i 55 -a 1 r -t 0.458 -s 3 -d 4 -p cbr -e 500 -c 1 -i 48 -a 1 + -t 0.458 -s 4 -d 6 -p cbr -e 500 -c 1 -i 48 -a 1 - -t 0.458 -s 4 -d 6 -p cbr -e 500 -c 1 -i 48 -a 1 h -t 0.458 -s 4 -d 6 -p cbr -e 500 -c 1 -i 48 -a 1 + -t 0.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 59 -a 1 - -t 0.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 59 -a 1 h -t 0.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 59 -a 1 + -t 0.46 -s 1 -d 3 -p cbr -e 500 -c 1 -i 60 -a 1 - -t 0.46 -s 1 -d 3 -p cbr -e 500 -c 1 -i 60 -a 1 h -t 0.46 -s 1 -d 3 -p cbr -e 500 -c 1 -i 60 -a 1 r -t 0.462 -s 4 -d 6 -p cbr -e 500 -c 1 -i 45 -a 1 r -t 0.464 -s 1 -d 3 -p cbr -e 500 -c 1 -i 57 -a 1 + -t 0.464 -s 3 -d 4 -p cbr -e 500 -c 1 -i 57 -a 1 - -t 0.464 -s 3 -d 4 -p cbr -e 500 -c 1 -i 57 -a 1 h -t 0.464 -s 3 -d 4 -p cbr -e 500 -c 1 -i 57 -a 1 r -t 0.466 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 47 -a 1 + -t 0.466 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 47 -a 1 - -t 0.466 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 47 -a 1 h -t 0.466 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 47 -a 1 r -t 0.468 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 56 -a 1 + -t 0.468 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 56 -a 1 - -t 0.468 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 56 -a 1 h -t 0.468 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 56 -a 1 r -t 0.47 -s 3 -d 4 -p cbr -e 500 -c 1 -i 49 -a 1 + -t 0.47 -s 4 -d 6 -p cbr -e 500 -c 1 -i 49 -a 1 - -t 0.47 -s 4 -d 6 -p cbr -e 500 -c 1 -i 49 -a 1 h -t 0.47 -s 4 -d 6 -p cbr -e 500 -c 1 -i 49 -a 1 + -t 0.47 -s 1 -d 3 -p cbr -e 500 -c 1 -i 61 -a 1 - -t 0.47 -s 1 -d 3 -p cbr -e 500 -c 1 -i 61 -a 1 h -t 0.47 -s 1 -d 3 -p cbr -e 500 -c 1 -i 61 -a 1 r -t 0.474 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 44 -a 1 r -t 0.474 -s 4 -d 6 -p cbr -e 500 -c 1 -i 46 -a 1 r -t 0.474 -s 1 -d 3 -p cbr -e 500 -c 1 -i 58 -a 1 + -t 0.474 -s 3 -d 4 -p cbr -e 500 -c 1 -i 58 -a 1 - -t 0.476 -s 3 -d 4 -p cbr -e 500 -c 1 -i 58 -a 1 h -t 0.476 -s 3 -d 4 -p cbr -e 500 -c 1 -i 58 -a 1 r -t 0.478 -s 3 -d 4 -p cbr -e 500 -c 1 -i 51 -a 1 + -t 0.478 -s 4 -d 6 -p cbr -e 500 -c 1 -i 51 -a 1 - -t 0.478 -s 4 -d 6 -p cbr -e 500 -c 1 -i 51 -a 1 h -t 0.478 -s 4 -d 6 -p cbr -e 500 -c 1 -i 51 -a 1 + -t 0.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 62 -a 1 - -t 0.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 62 -a 1 h -t 0.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 62 -a 1 + -t 0.48 -s 1 -d 3 -p cbr -e 500 -c 1 -i 63 -a 1 - -t 0.48 -s 1 -d 3 -p cbr -e 500 -c 1 -i 63 -a 1 h -t 0.48 -s 1 -d 3 -p cbr -e 500 -c 1 -i 63 -a 1 r -t 0.482 -s 4 -d 6 -p cbr -e 500 -c 1 -i 48 -a 1 r -t 0.484 -s 1 -d 3 -p cbr -e 500 -c 1 -i 60 -a 1 + -t 0.484 -s 3 -d 4 -p cbr -e 500 -c 1 -i 60 -a 1 - -t 0.484 -s 3 -d 4 -p cbr -e 500 -c 1 -i 60 -a 1 h -t 0.484 -s 3 -d 4 -p cbr -e 500 -c 1 -i 60 -a 1 r -t 0.486 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 50 -a 1 + -t 0.486 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 50 -a 1 - -t 0.486 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 50 -a 1 h -t 0.486 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 50 -a 1 r -t 0.488 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 59 -a 1 + -t 0.488 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 59 -a 1 - -t 0.488 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 59 -a 1 h -t 0.488 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 59 -a 1 r -t 0.49 -s 3 -d 4 -p cbr -e 500 -c 1 -i 52 -a 1 + -t 0.49 -s 4 -d 6 -p cbr -e 500 -c 1 -i 52 -a 1 - -t 0.49 -s 4 -d 6 -p cbr -e 500 -c 1 -i 52 -a 1 h -t 0.49 -s 4 -d 6 -p cbr -e 500 -c 1 -i 52 -a 1 + -t 0.49 -s 1 -d 3 -p cbr -e 500 -c 1 -i 64 -a 1 - -t 0.49 -s 1 -d 3 -p cbr -e 500 -c 1 -i 64 -a 1 h -t 0.49 -s 1 -d 3 -p cbr -e 500 -c 1 -i 64 -a 1 r -t 0.494 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 47 -a 1 r -t 0.494 -s 4 -d 6 -p cbr -e 500 -c 1 -i 49 -a 1 r -t 0.494 -s 1 -d 3 -p cbr -e 500 -c 1 -i 61 -a 1 + -t 0.494 -s 3 -d 4 -p cbr -e 500 -c 1 -i 61 -a 1 - -t 0.496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 61 -a 1 h -t 0.496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 61 -a 1 r -t 0.498 -s 3 -d 4 -p cbr -e 500 -c 1 -i 54 -a 1 + -t 0.498 -s 4 -d 6 -p cbr -e 500 -c 1 -i 54 -a 1 - -t 0.498 -s 4 -d 6 -p cbr -e 500 -c 1 -i 54 -a 1 h -t 0.498 -s 4 -d 6 -p cbr -e 500 -c 1 -i 54 -a 1 + -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -f 0 -m 0 -y {0 0} - -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {0 0} h -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {-1 -1} + -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 66 -a 0 -S 0 -f 0 -m 0 -y {1 1} + -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 67 -a 0 -S 0 -f 0 -m 0 -y {2 2} + -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 68 -a 0 -S 0 -f 0 -m 0 -y {3 3} + -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 69 -a 0 -S 0 -f 0 -m 0 -y {4 4} + -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 70 -a 0 -S 0 -f 0 -m 0 -y {5 5} + -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 71 -a 0 -S 0 -f 0 -m 0 -y {6 6} + -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 72 -a 0 -S 0 -f 0 -m 0 -y {7 7} v -t 0.5 sim_annotation 0.5 3 FTP starts + -t 0.5 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 73 -a 1 - -t 0.5 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 73 -a 1 h -t 0.5 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 73 -a 1 + -t 0.5 -s 1 -d 3 -p cbr -e 500 -c 1 -i 74 -a 1 - -t 0.5 -s 1 -d 3 -p cbr -e 500 -c 1 -i 74 -a 1 h -t 0.5 -s 1 -d 3 -p cbr -e 500 -c 1 -i 74 -a 1 - -t 0.5016 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 66 -a 0 -S 0 -y {1 1} h -t 0.5016 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 66 -a 0 -S 0 -y {-1 -1} r -t 0.502 -s 4 -d 6 -p cbr -e 500 -c 1 -i 51 -a 1 - -t 0.5032 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 67 -a 0 -S 0 -y {2 2} h -t 0.5032 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 67 -a 0 -S 0 -y {-1 -1} r -t 0.504 -s 1 -d 3 -p cbr -e 500 -c 1 -i 63 -a 1 + -t 0.504 -s 3 -d 4 -p cbr -e 500 -c 1 -i 63 -a 1 - -t 0.504 -s 3 -d 4 -p cbr -e 500 -c 1 -i 63 -a 1 h -t 0.504 -s 3 -d 4 -p cbr -e 500 -c 1 -i 63 -a 1 - -t 0.5048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 68 -a 0 -S 0 -y {3 3} h -t 0.5048 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 68 -a 0 -S 0 -y {-1 -1} r -t 0.506 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 53 -a 1 + -t 0.506 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 53 -a 1 - -t 0.506 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 53 -a 1 h -t 0.506 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 53 -a 1 - -t 0.5064 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 69 -a 0 -S 0 -y {4 4} h -t 0.5064 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 69 -a 0 -S 0 -y {-1 -1} r -t 0.508 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 62 -a 1 + -t 0.508 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 62 -a 1 - -t 0.508 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 62 -a 1 h -t 0.508 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 62 -a 1 - -t 0.508 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 70 -a 0 -S 0 -y {5 5} h -t 0.508 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 70 -a 0 -S 0 -y {-1 -1} - -t 0.5096 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 71 -a 0 -S 0 -y {6 6} h -t 0.5096 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 71 -a 0 -S 0 -y {-1 -1} r -t 0.51 -s 3 -d 4 -p cbr -e 500 -c 1 -i 55 -a 1 + -t 0.51 -s 4 -d 6 -p cbr -e 500 -c 1 -i 55 -a 1 - -t 0.51 -s 4 -d 6 -p cbr -e 500 -c 1 -i 55 -a 1 h -t 0.51 -s 4 -d 6 -p cbr -e 500 -c 1 -i 55 -a 1 + -t 0.51 -s 1 -d 3 -p cbr -e 500 -c 1 -i 75 -a 1 - -t 0.51 -s 1 -d 3 -p cbr -e 500 -c 1 -i 75 -a 1 h -t 0.51 -s 1 -d 3 -p cbr -e 500 -c 1 -i 75 -a 1 - -t 0.5112 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 72 -a 0 -S 0 -y {7 7} h -t 0.5112 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 72 -a 0 -S 0 -y {-1 -1} r -t 0.514 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 50 -a 1 r -t 0.514 -s 4 -d 6 -p cbr -e 500 -c 1 -i 52 -a 1 r -t 0.514 -s 1 -d 3 -p cbr -e 500 -c 1 -i 64 -a 1 + -t 0.514 -s 3 -d 4 -p cbr -e 500 -c 1 -i 64 -a 1 - -t 0.516 -s 3 -d 4 -p cbr -e 500 -c 1 -i 64 -a 1 h -t 0.516 -s 3 -d 4 -p cbr -e 500 -c 1 -i 64 -a 1 r -t 0.518 -s 3 -d 4 -p cbr -e 500 -c 1 -i 57 -a 1 + -t 0.518 -s 4 -d 6 -p cbr -e 500 -c 1 -i 57 -a 1 - -t 0.518 -s 4 -d 6 -p cbr -e 500 -c 1 -i 57 -a 1 h -t 0.518 -s 4 -d 6 -p cbr -e 500 -c 1 -i 57 -a 1 + -t 0.52 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 76 -a 1 - -t 0.52 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 76 -a 1 h -t 0.52 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 76 -a 1 + -t 0.52 -s 1 -d 3 -p cbr -e 500 -c 1 -i 77 -a 1 - -t 0.52 -s 1 -d 3 -p cbr -e 500 -c 1 -i 77 -a 1 h -t 0.52 -s 1 -d 3 -p cbr -e 500 -c 1 -i 77 -a 1 r -t 0.5216 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {0 0} + -t 0.5216 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {0 0} - -t 0.5216 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {0 0} h -t 0.5216 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {-1 -1} r -t 0.522 -s 4 -d 6 -p cbr -e 500 -c 1 -i 54 -a 1 r -t 0.5232 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 66 -a 0 -S 0 -y {1 1} + -t 0.5232 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 66 -a 0 -S 0 -y {1 1} r -t 0.524 -s 1 -d 3 -p cbr -e 500 -c 1 -i 74 -a 1 + -t 0.524 -s 3 -d 4 -p cbr -e 500 -c 1 -i 74 -a 1 r -t 0.5248 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 67 -a 0 -S 0 -y {2 2} + -t 0.5248 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 67 -a 0 -S 0 -y {2 2} r -t 0.526 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 56 -a 1 + -t 0.526 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 56 -a 1 - -t 0.526 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 56 -a 1 h -t 0.526 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 56 -a 1 r -t 0.5264 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 68 -a 0 -S 0 -y {3 3} + -t 0.5264 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 68 -a 0 -S 0 -y {3 3} r -t 0.528 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 73 -a 1 + -t 0.528 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 73 -a 1 r -t 0.528 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 69 -a 0 -S 0 -y {4 4} + -t 0.528 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 69 -a 0 -S 0 -y {4 4} - -t 0.5296 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 66 -a 0 -S 0 -y {1 1} h -t 0.5296 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 66 -a 0 -S 0 -y {-1 -1} r -t 0.5296 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 70 -a 0 -S 0 -y {5 5} + -t 0.5296 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 70 -a 0 -S 0 -y {5 5} r -t 0.53 -s 3 -d 4 -p cbr -e 500 -c 1 -i 58 -a 1 + -t 0.53 -s 4 -d 6 -p cbr -e 500 -c 1 -i 58 -a 1 - -t 0.53 -s 4 -d 6 -p cbr -e 500 -c 1 -i 58 -a 1 h -t 0.53 -s 4 -d 6 -p cbr -e 500 -c 1 -i 58 -a 1 + -t 0.53 -s 1 -d 3 -p cbr -e 500 -c 1 -i 78 -a 1 - -t 0.53 -s 1 -d 3 -p cbr -e 500 -c 1 -i 78 -a 1 h -t 0.53 -s 1 -d 3 -p cbr -e 500 -c 1 -i 78 -a 1 r -t 0.5312 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 71 -a 0 -S 0 -y {6 6} + -t 0.5312 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 71 -a 0 -S 0 -y {6 6} r -t 0.5328 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 72 -a 0 -S 0 -y {7 7} + -t 0.5328 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 72 -a 0 -S 0 -y {7 7} r -t 0.534 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 53 -a 1 r -t 0.534 -s 4 -d 6 -p cbr -e 500 -c 1 -i 55 -a 1 r -t 0.534 -s 1 -d 3 -p cbr -e 500 -c 1 -i 75 -a 1 + -t 0.534 -s 3 -d 4 -p cbr -e 500 -c 1 -i 75 -a 1 - -t 0.5376 -s 3 -d 4 -p cbr -e 500 -c 1 -i 74 -a 1 h -t 0.5376 -s 3 -d 4 -p cbr -e 500 -c 1 -i 74 -a 1 r -t 0.538 -s 3 -d 4 -p cbr -e 500 -c 1 -i 60 -a 1 + -t 0.538 -s 4 -d 6 -p cbr -e 500 -c 1 -i 60 -a 1 - -t 0.538 -s 4 -d 6 -p cbr -e 500 -c 1 -i 60 -a 1 h -t 0.538 -s 4 -d 6 -p cbr -e 500 -c 1 -i 60 -a 1 + -t 0.54 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 79 -a 1 - -t 0.54 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 79 -a 1 h -t 0.54 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 79 -a 1 + -t 0.54 -s 1 -d 3 -p cbr -e 500 -c 1 -i 80 -a 1 - -t 0.54 -s 1 -d 3 -p cbr -e 500 -c 1 -i 80 -a 1 h -t 0.54 -s 1 -d 3 -p cbr -e 500 -c 1 -i 80 -a 1 - -t 0.5416 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 67 -a 0 -S 0 -y {2 2} h -t 0.5416 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 67 -a 0 -S 0 -y {-1 -1} r -t 0.542 -s 4 -d 6 -p cbr -e 500 -c 1 -i 57 -a 1 r -t 0.544 -s 1 -d 3 -p cbr -e 500 -c 1 -i 77 -a 1 + -t 0.544 -s 3 -d 4 -p cbr -e 500 -c 1 -i 77 -a 1 r -t 0.546 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 59 -a 1 + -t 0.546 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 59 -a 1 - -t 0.546 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 59 -a 1 h -t 0.546 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 59 -a 1 r -t 0.548 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 76 -a 1 + -t 0.548 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 76 -a 1 - -t 0.5496 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 68 -a 0 -S 0 -y {3 3} h -t 0.5496 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 68 -a 0 -S 0 -y {-1 -1} r -t 0.55 -s 3 -d 4 -p cbr -e 500 -c 1 -i 61 -a 1 + -t 0.55 -s 4 -d 6 -p cbr -e 500 -c 1 -i 61 -a 1 - -t 0.55 -s 4 -d 6 -p cbr -e 500 -c 1 -i 61 -a 1 h -t 0.55 -s 4 -d 6 -p cbr -e 500 -c 1 -i 61 -a 1 + -t 0.55 -s 1 -d 3 -p cbr -e 500 -c 1 -i 81 -a 1 - -t 0.55 -s 1 -d 3 -p cbr -e 500 -c 1 -i 81 -a 1 h -t 0.55 -s 1 -d 3 -p cbr -e 500 -c 1 -i 81 -a 1 r -t 0.554 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 56 -a 1 r -t 0.554 -s 4 -d 6 -p cbr -e 500 -c 1 -i 58 -a 1 r -t 0.554 -s 1 -d 3 -p cbr -e 500 -c 1 -i 78 -a 1 + -t 0.554 -s 3 -d 4 -p cbr -e 500 -c 1 -i 78 -a 1 - -t 0.5576 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 73 -a 1 h -t 0.5576 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 73 -a 1 r -t 0.558 -s 3 -d 4 -p cbr -e 500 -c 1 -i 63 -a 1 + -t 0.558 -s 4 -d 6 -p cbr -e 500 -c 1 -i 63 -a 1 - -t 0.558 -s 4 -d 6 -p cbr -e 500 -c 1 -i 63 -a 1 h -t 0.558 -s 4 -d 6 -p cbr -e 500 -c 1 -i 63 -a 1 + -t 0.56 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 82 -a 1 - -t 0.56 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 82 -a 1 h -t 0.56 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 82 -a 1 + -t 0.56 -s 1 -d 3 -p cbr -e 500 -c 1 -i 83 -a 1 - -t 0.56 -s 1 -d 3 -p cbr -e 500 -c 1 -i 83 -a 1 h -t 0.56 -s 1 -d 3 -p cbr -e 500 -c 1 -i 83 -a 1 r -t 0.562 -s 4 -d 6 -p cbr -e 500 -c 1 -i 60 -a 1 r -t 0.564 -s 1 -d 3 -p cbr -e 500 -c 1 -i 80 -a 1 + -t 0.564 -s 3 -d 4 -p cbr -e 500 -c 1 -i 80 -a 1 - -t 0.5656 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 69 -a 0 -S 0 -y {4 4} h -t 0.5656 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 69 -a 0 -S 0 -y {-1 -1} r -t 0.566 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 62 -a 1 + -t 0.566 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 62 -a 1 - -t 0.566 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 62 -a 1 h -t 0.566 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 62 -a 1 r -t 0.568 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 79 -a 1 + -t 0.568 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 79 -a 1 r -t 0.57 -s 3 -d 4 -p cbr -e 500 -c 1 -i 64 -a 1 + -t 0.57 -s 4 -d 6 -p cbr -e 500 -c 1 -i 64 -a 1 - -t 0.57 -s 4 -d 6 -p cbr -e 500 -c 1 -i 64 -a 1 h -t 0.57 -s 4 -d 6 -p cbr -e 500 -c 1 -i 64 -a 1 + -t 0.57 -s 1 -d 3 -p cbr -e 500 -c 1 -i 84 -a 1 - -t 0.57 -s 1 -d 3 -p cbr -e 500 -c 1 -i 84 -a 1 h -t 0.57 -s 1 -d 3 -p cbr -e 500 -c 1 -i 84 -a 1 - -t 0.5736 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 70 -a 0 -S 0 -y {5 5} h -t 0.5736 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 70 -a 0 -S 0 -y {-1 -1} r -t 0.574 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 59 -a 1 r -t 0.574 -s 4 -d 6 -p cbr -e 500 -c 1 -i 61 -a 1 r -t 0.574 -s 1 -d 3 -p cbr -e 500 -c 1 -i 81 -a 1 + -t 0.574 -s 3 -d 4 -p cbr -e 500 -c 1 -i 81 -a 1 r -t 0.5796 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {0 0} + -t 0.5796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {0 0} - -t 0.5796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {0 0} h -t 0.5796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {-1 -1} + -t 0.58 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 85 -a 1 - -t 0.58 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 85 -a 1 h -t 0.58 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 85 -a 1 + -t 0.58 -s 1 -d 3 -p cbr -e 500 -c 1 -i 86 -a 1 - -t 0.58 -s 1 -d 3 -p cbr -e 500 -c 1 -i 86 -a 1 h -t 0.58 -s 1 -d 3 -p cbr -e 500 -c 1 -i 86 -a 1 - -t 0.5816 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 71 -a 0 -S 0 -y {6 6} h -t 0.5816 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 71 -a 0 -S 0 -y {-1 -1} r -t 0.582 -s 4 -d 6 -p cbr -e 500 -c 1 -i 63 -a 1 r -t 0.584 -s 1 -d 3 -p cbr -e 500 -c 1 -i 83 -a 1 + -t 0.584 -s 3 -d 4 -p cbr -e 500 -c 1 -i 83 -a 1 r -t 0.5876 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 66 -a 0 -S 0 -y {1 1} + -t 0.5876 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 66 -a 0 -S 0 -y {1 1} - -t 0.5876 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 66 -a 0 -S 0 -y {1 1} h -t 0.5876 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 66 -a 0 -S 0 -y {-1 -1} r -t 0.588 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 82 -a 1 + -t 0.588 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 82 -a 1 - -t 0.5896 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 72 -a 0 -S 0 -y {7 7} h -t 0.5896 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 72 -a 0 -S 0 -y {-1 -1} + -t 0.59 -s 1 -d 3 -p cbr -e 500 -c 1 -i 87 -a 1 - -t 0.59 -s 1 -d 3 -p cbr -e 500 -c 1 -i 87 -a 1 h -t 0.59 -s 1 -d 3 -p cbr -e 500 -c 1 -i 87 -a 1 r -t 0.5916 -s 3 -d 4 -p cbr -e 500 -c 1 -i 74 -a 1 + -t 0.5916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 74 -a 1 - -t 0.5916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 74 -a 1 h -t 0.5916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 74 -a 1 r -t 0.594 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 62 -a 1 r -t 0.594 -s 4 -d 6 -p cbr -e 500 -c 1 -i 64 -a 1 r -t 0.594 -s 1 -d 3 -p cbr -e 500 -c 1 -i 84 -a 1 + -t 0.594 -s 3 -d 4 -p cbr -e 500 -c 1 -i 84 -a 1 - -t 0.5976 -s 3 -d 4 -p cbr -e 500 -c 1 -i 75 -a 1 h -t 0.5976 -s 3 -d 4 -p cbr -e 500 -c 1 -i 75 -a 1 r -t 0.5996 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 67 -a 0 -S 0 -y {2 2} + -t 0.5996 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 67 -a 0 -S 0 -y {2 2} - -t 0.5996 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 67 -a 0 -S 0 -y {2 2} h -t 0.5996 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 67 -a 0 -S 0 -y {-1 -1} + -t 0.6 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 88 -a 1 - -t 0.6 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 88 -a 1 h -t 0.6 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 88 -a 1 + -t 0.6 -s 1 -d 3 -p cbr -e 500 -c 1 -i 89 -a 1 - -t 0.6 -s 1 -d 3 -p cbr -e 500 -c 1 -i 89 -a 1 h -t 0.6 -s 1 -d 3 -p cbr -e 500 -c 1 -i 89 -a 1 r -t 0.6012 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {0 0} + -t 0.6012 -s 5 -d 4 -p ack -e 40 -c 0 -i 90 -a 0 -S 0 -y {0 0} - -t 0.6012 -s 5 -d 4 -p ack -e 40 -c 0 -i 90 -a 0 -S 0 -y {0 0} h -t 0.6012 -s 5 -d 4 -p ack -e 40 -c 0 -i 90 -a 0 -S 0 -y {-1 -1} - -t 0.6016 -s 3 -d 4 -p cbr -e 500 -c 1 -i 77 -a 1 h -t 0.6016 -s 3 -d 4 -p cbr -e 500 -c 1 -i 77 -a 1 r -t 0.604 -s 1 -d 3 -p cbr -e 500 -c 1 -i 86 -a 1 + -t 0.604 -s 3 -d 4 -p cbr -e 500 -c 1 -i 86 -a 1 - -t 0.6056 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 76 -a 1 h -t 0.6056 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 76 -a 1 r -t 0.6076 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 68 -a 0 -S 0 -y {3 3} + -t 0.6076 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 68 -a 0 -S 0 -y {3 3} - -t 0.6076 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 68 -a 0 -S 0 -y {3 3} h -t 0.6076 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 68 -a 0 -S 0 -y {-1 -1} r -t 0.608 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 85 -a 1 + -t 0.608 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 85 -a 1 r -t 0.6092 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 66 -a 0 -S 0 -y {1 1} + -t 0.6092 -s 5 -d 4 -p ack -e 40 -c 0 -i 91 -a 0 -S 0 -y {1 1} - -t 0.6092 -s 5 -d 4 -p ack -e 40 -c 0 -i 91 -a 0 -S 0 -y {1 1} h -t 0.6092 -s 5 -d 4 -p ack -e 40 -c 0 -i 91 -a 0 -S 0 -y {-1 -1} + -t 0.61 -s 1 -d 3 -p cbr -e 500 -c 1 -i 92 -a 1 - -t 0.61 -s 1 -d 3 -p cbr -e 500 -c 1 -i 92 -a 1 h -t 0.61 -s 1 -d 3 -p cbr -e 500 -c 1 -i 92 -a 1 - -t 0.6136 -s 3 -d 4 -p cbr -e 500 -c 1 -i 78 -a 1 h -t 0.6136 -s 3 -d 4 -p cbr -e 500 -c 1 -i 78 -a 1 r -t 0.614 -s 1 -d 3 -p cbr -e 500 -c 1 -i 87 -a 1 + -t 0.614 -s 3 -d 4 -p cbr -e 500 -c 1 -i 87 -a 1 r -t 0.6156 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 73 -a 1 + -t 0.6156 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 73 -a 1 - -t 0.6156 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 73 -a 1 h -t 0.6156 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 73 -a 1 r -t 0.6156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 74 -a 1 - -t 0.6176 -s 3 -d 4 -p cbr -e 500 -c 1 -i 80 -a 1 h -t 0.6176 -s 3 -d 4 -p cbr -e 500 -c 1 -i 80 -a 1 + -t 0.62 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 93 -a 1 - -t 0.62 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 93 -a 1 h -t 0.62 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 93 -a 1 + -t 0.62 -s 1 -d 3 -p cbr -e 500 -c 1 -i 94 -a 1 - -t 0.62 -s 1 -d 3 -p cbr -e 500 -c 1 -i 94 -a 1 h -t 0.62 -s 1 -d 3 -p cbr -e 500 -c 1 -i 94 -a 1 r -t 0.6212 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 67 -a 0 -S 0 -y {2 2} + -t 0.6212 -s 5 -d 4 -p ack -e 40 -c 0 -i 95 -a 0 -S 0 -y {2 2} - -t 0.6212 -s 5 -d 4 -p ack -e 40 -c 0 -i 95 -a 0 -S 0 -y {2 2} h -t 0.6212 -s 5 -d 4 -p ack -e 40 -c 0 -i 95 -a 0 -S 0 -y {-1 -1} r -t 0.621264 -s 5 -d 4 -p ack -e 40 -c 0 -i 90 -a 0 -S 0 -y {0 0} + -t 0.621264 -s 4 -d 3 -p ack -e 40 -c 0 -i 90 -a 0 -S 0 -y {0 0} - -t 0.621264 -s 4 -d 3 -p ack -e 40 -c 0 -i 90 -a 0 -S 0 -y {0 0} h -t 0.621264 -s 4 -d 3 -p ack -e 40 -c 0 -i 90 -a 0 -S 0 -y {-1 -1} - -t 0.6216 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 79 -a 1 h -t 0.6216 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 79 -a 1 r -t 0.6236 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 69 -a 0 -S 0 -y {4 4} + -t 0.6236 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 69 -a 0 -S 0 -y {4 4} - -t 0.6236 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 69 -a 0 -S 0 -y {4 4} h -t 0.6236 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 69 -a 0 -S 0 -y {-1 -1} r -t 0.624 -s 1 -d 3 -p cbr -e 500 -c 1 -i 89 -a 1 + -t 0.624 -s 3 -d 4 -p cbr -e 500 -c 1 -i 89 -a 1 r -t 0.628 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 88 -a 1 + -t 0.628 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 88 -a 1 r -t 0.6292 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 68 -a 0 -S 0 -y {3 3} + -t 0.6292 -s 5 -d 4 -p ack -e 40 -c 0 -i 96 -a 0 -S 0 -y {3 3} - -t 0.6292 -s 5 -d 4 -p ack -e 40 -c 0 -i 96 -a 0 -S 0 -y {3 3} h -t 0.6292 -s 5 -d 4 -p ack -e 40 -c 0 -i 96 -a 0 -S 0 -y {-1 -1} r -t 0.629264 -s 5 -d 4 -p ack -e 40 -c 0 -i 91 -a 0 -S 0 -y {1 1} + -t 0.629264 -s 4 -d 3 -p ack -e 40 -c 0 -i 91 -a 0 -S 0 -y {1 1} - -t 0.629264 -s 4 -d 3 -p ack -e 40 -c 0 -i 91 -a 0 -S 0 -y {1 1} h -t 0.629264 -s 4 -d 3 -p ack -e 40 -c 0 -i 91 -a 0 -S 0 -y {-1 -1} - -t 0.6296 -s 3 -d 4 -p cbr -e 500 -c 1 -i 81 -a 1 h -t 0.6296 -s 3 -d 4 -p cbr -e 500 -c 1 -i 81 -a 1 + -t 0.63 -s 1 -d 3 -p cbr -e 500 -c 1 -i 97 -a 1 - -t 0.63 -s 1 -d 3 -p cbr -e 500 -c 1 -i 97 -a 1 h -t 0.63 -s 1 -d 3 -p cbr -e 500 -c 1 -i 97 -a 1 r -t 0.6316 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 70 -a 0 -S 0 -y {5 5} + -t 0.6316 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 70 -a 0 -S 0 -y {5 5} - -t 0.6316 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 70 -a 0 -S 0 -y {5 5} h -t 0.6316 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 70 -a 0 -S 0 -y {-1 -1} - -t 0.6336 -s 3 -d 4 -p cbr -e 500 -c 1 -i 83 -a 1 h -t 0.6336 -s 3 -d 4 -p cbr -e 500 -c 1 -i 83 -a 1 r -t 0.634 -s 1 -d 3 -p cbr -e 500 -c 1 -i 92 -a 1 + -t 0.634 -s 3 -d 4 -p cbr -e 500 -c 1 -i 92 -a 1 - -t 0.6376 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 82 -a 1 h -t 0.6376 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 82 -a 1 r -t 0.6396 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 71 -a 0 -S 0 -y {6 6} + -t 0.6396 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 71 -a 0 -S 0 -y {6 6} - -t 0.6396 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 71 -a 0 -S 0 -y {6 6} h -t 0.6396 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 71 -a 0 -S 0 -y {-1 -1} + -t 0.64 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 98 -a 1 - -t 0.64 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 98 -a 1 h -t 0.64 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 98 -a 1 + -t 0.64 -s 1 -d 3 -p cbr -e 500 -c 1 -i 99 -a 1 - -t 0.64 -s 1 -d 3 -p cbr -e 500 -c 1 -i 99 -a 1 h -t 0.64 -s 1 -d 3 -p cbr -e 500 -c 1 -i 99 -a 1 r -t 0.641264 -s 5 -d 4 -p ack -e 40 -c 0 -i 95 -a 0 -S 0 -y {2 2} + -t 0.641264 -s 4 -d 3 -p ack -e 40 -c 0 -i 95 -a 0 -S 0 -y {2 2} - -t 0.641264 -s 4 -d 3 -p ack -e 40 -c 0 -i 95 -a 0 -S 0 -y {2 2} h -t 0.641264 -s 4 -d 3 -p ack -e 40 -c 0 -i 95 -a 0 -S 0 -y {-1 -1} r -t 0.6436 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 73 -a 1 r -t 0.644 -s 1 -d 3 -p cbr -e 500 -c 1 -i 94 -a 1 + -t 0.644 -s 3 -d 4 -p cbr -e 500 -c 1 -i 94 -a 1 r -t 0.6452 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 69 -a 0 -S 0 -y {4 4} + -t 0.6452 -s 5 -d 4 -p ack -e 40 -c 0 -i 100 -a 0 -S 0 -y {4 4} - -t 0.6452 -s 5 -d 4 -p ack -e 40 -c 0 -i 100 -a 0 -S 0 -y {4 4} h -t 0.6452 -s 5 -d 4 -p ack -e 40 -c 0 -i 100 -a 0 -S 0 -y {-1 -1} - -t 0.6456 -s 3 -d 4 -p cbr -e 500 -c 1 -i 84 -a 1 h -t 0.6456 -s 3 -d 4 -p cbr -e 500 -c 1 -i 84 -a 1 r -t 0.6476 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 72 -a 0 -S 0 -y {7 7} + -t 0.6476 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 72 -a 0 -S 0 -y {7 7} - -t 0.6476 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 72 -a 0 -S 0 -y {7 7} h -t 0.6476 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 72 -a 0 -S 0 -y {-1 -1} r -t 0.648 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 93 -a 1 + -t 0.648 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 93 -a 1 r -t 0.649264 -s 5 -d 4 -p ack -e 40 -c 0 -i 96 -a 0 -S 0 -y {3 3} + -t 0.649264 -s 4 -d 3 -p ack -e 40 -c 0 -i 96 -a 0 -S 0 -y {3 3} - -t 0.649264 -s 4 -d 3 -p ack -e 40 -c 0 -i 96 -a 0 -S 0 -y {3 3} h -t 0.649264 -s 4 -d 3 -p ack -e 40 -c 0 -i 96 -a 0 -S 0 -y {-1 -1} - -t 0.6496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 86 -a 1 h -t 0.6496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 86 -a 1 + -t 0.65 -s 1 -d 3 -p cbr -e 500 -c 1 -i 101 -a 1 - -t 0.65 -s 1 -d 3 -p cbr -e 500 -c 1 -i 101 -a 1 h -t 0.65 -s 1 -d 3 -p cbr -e 500 -c 1 -i 101 -a 1 r -t 0.6516 -s 3 -d 4 -p cbr -e 500 -c 1 -i 75 -a 1 + -t 0.6516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 75 -a 1 - -t 0.6516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 75 -a 1 h -t 0.6516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 75 -a 1 r -t 0.6532 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 70 -a 0 -S 0 -y {5 5} + -t 0.6532 -s 5 -d 4 -p ack -e 40 -c 0 -i 102 -a 0 -S 0 -y {5 5} - -t 0.6532 -s 5 -d 4 -p ack -e 40 -c 0 -i 102 -a 0 -S 0 -y {5 5} h -t 0.6532 -s 5 -d 4 -p ack -e 40 -c 0 -i 102 -a 0 -S 0 -y {-1 -1} - -t 0.6536 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 85 -a 1 h -t 0.6536 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 85 -a 1 r -t 0.654 -s 1 -d 3 -p cbr -e 500 -c 1 -i 97 -a 1 + -t 0.654 -s 3 -d 4 -p cbr -e 500 -c 1 -i 97 -a 1 r -t 0.6556 -s 3 -d 4 -p cbr -e 500 -c 1 -i 77 -a 1 + -t 0.6556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 77 -a 1 - -t 0.6556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 77 -a 1 h -t 0.6556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 77 -a 1 + -t 0.66 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 103 -a 1 - -t 0.66 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 103 -a 1 h -t 0.66 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 103 -a 1 + -t 0.66 -s 1 -d 3 -p cbr -e 500 -c 1 -i 104 -a 1 - -t 0.66 -s 1 -d 3 -p cbr -e 500 -c 1 -i 104 -a 1 h -t 0.66 -s 1 -d 3 -p cbr -e 500 -c 1 -i 104 -a 1 r -t 0.6612 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 71 -a 0 -S 0 -y {6 6} + -t 0.6612 -s 5 -d 4 -p ack -e 40 -c 0 -i 105 -a 0 -S 0 -y {6 6} - -t 0.6612 -s 5 -d 4 -p ack -e 40 -c 0 -i 105 -a 0 -S 0 -y {6 6} h -t 0.6612 -s 5 -d 4 -p ack -e 40 -c 0 -i 105 -a 0 -S 0 -y {-1 -1} - -t 0.6616 -s 3 -d 4 -p cbr -e 500 -c 1 -i 87 -a 1 h -t 0.6616 -s 3 -d 4 -p cbr -e 500 -c 1 -i 87 -a 1 r -t 0.6636 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 76 -a 1 + -t 0.6636 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 76 -a 1 - -t 0.6636 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 76 -a 1 h -t 0.6636 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 76 -a 1 r -t 0.664 -s 1 -d 3 -p cbr -e 500 -c 1 -i 99 -a 1 + -t 0.664 -s 3 -d 4 -p cbr -e 500 -c 1 -i 99 -a 1 r -t 0.665264 -s 5 -d 4 -p ack -e 40 -c 0 -i 100 -a 0 -S 0 -y {4 4} + -t 0.665264 -s 4 -d 3 -p ack -e 40 -c 0 -i 100 -a 0 -S 0 -y {4 4} - -t 0.665264 -s 4 -d 3 -p ack -e 40 -c 0 -i 100 -a 0 -S 0 -y {4 4} h -t 0.665264 -s 4 -d 3 -p ack -e 40 -c 0 -i 100 -a 0 -S 0 -y {-1 -1} - -t 0.6656 -s 3 -d 4 -p cbr -e 500 -c 1 -i 89 -a 1 h -t 0.6656 -s 3 -d 4 -p cbr -e 500 -c 1 -i 89 -a 1 r -t 0.6676 -s 3 -d 4 -p cbr -e 500 -c 1 -i 78 -a 1 + -t 0.6676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 78 -a 1 - -t 0.6676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 78 -a 1 h -t 0.6676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 78 -a 1 r -t 0.668 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 98 -a 1 + -t 0.668 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 98 -a 1 r -t 0.6692 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 72 -a 0 -S 0 -y {7 7} + -t 0.6692 -s 5 -d 4 -p ack -e 40 -c 0 -i 106 -a 0 -S 0 -y {7 7} - -t 0.6692 -s 5 -d 4 -p ack -e 40 -c 0 -i 106 -a 0 -S 0 -y {7 7} h -t 0.6692 -s 5 -d 4 -p ack -e 40 -c 0 -i 106 -a 0 -S 0 -y {-1 -1} - -t 0.6696 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 88 -a 1 h -t 0.6696 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 88 -a 1 + -t 0.67 -s 1 -d 3 -p cbr -e 500 -c 1 -i 107 -a 1 - -t 0.67 -s 1 -d 3 -p cbr -e 500 -c 1 -i 107 -a 1 h -t 0.67 -s 1 -d 3 -p cbr -e 500 -c 1 -i 107 -a 1 r -t 0.671584 -s 4 -d 3 -p ack -e 40 -c 0 -i 90 -a 0 -S 0 -y {0 0} + -t 0.671584 -s 3 -d 0 -p ack -e 40 -c 0 -i 90 -a 0 -S 0 -y {0 0} - -t 0.671584 -s 3 -d 0 -p ack -e 40 -c 0 -i 90 -a 0 -S 0 -f 0 -m 1 -y {0 0} h -t 0.671584 -s 3 -d 0 -p ack -e 40 -c 0 -i 90 -a 0 -S 0 -y {-1 -1} r -t 0.6716 -s 3 -d 4 -p cbr -e 500 -c 1 -i 80 -a 1 + -t 0.6716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 80 -a 1 - -t 0.6716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 80 -a 1 h -t 0.6716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 80 -a 1 r -t 0.673264 -s 5 -d 4 -p ack -e 40 -c 0 -i 102 -a 0 -S 0 -y {5 5} + -t 0.673264 -s 4 -d 3 -p ack -e 40 -c 0 -i 102 -a 0 -S 0 -y {5 5} - -t 0.673264 -s 4 -d 3 -p ack -e 40 -c 0 -i 102 -a 0 -S 0 -y {5 5} h -t 0.673264 -s 4 -d 3 -p ack -e 40 -c 0 -i 102 -a 0 -S 0 -y {-1 -1} r -t 0.674 -s 1 -d 3 -p cbr -e 500 -c 1 -i 101 -a 1 + -t 0.674 -s 3 -d 4 -p cbr -e 500 -c 1 -i 101 -a 1 r -t 0.6756 -s 4 -d 6 -p cbr -e 500 -c 1 -i 75 -a 1 - -t 0.6776 -s 3 -d 4 -p cbr -e 500 -c 1 -i 92 -a 1 h -t 0.6776 -s 3 -d 4 -p cbr -e 500 -c 1 -i 92 -a 1 r -t 0.679584 -s 4 -d 3 -p ack -e 40 -c 0 -i 91 -a 0 -S 0 -y {1 1} + -t 0.679584 -s 3 -d 0 -p ack -e 40 -c 0 -i 91 -a 0 -S 0 -y {1 1} - -t 0.679584 -s 3 -d 0 -p ack -e 40 -c 0 -i 91 -a 0 -S 0 -f 0 -m 1 -y {1 1} h -t 0.679584 -s 3 -d 0 -p ack -e 40 -c 0 -i 91 -a 0 -S 0 -y {-1 -1} r -t 0.6796 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 79 -a 1 + -t 0.6796 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 79 -a 1 - -t 0.6796 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 79 -a 1 h -t 0.6796 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 79 -a 1 r -t 0.6796 -s 4 -d 6 -p cbr -e 500 -c 1 -i 77 -a 1 + -t 0.68 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 108 -a 1 - -t 0.68 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 108 -a 1 h -t 0.68 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 108 -a 1 + -t 0.68 -s 1 -d 3 -p cbr -e 500 -c 1 -i 109 -a 1 - -t 0.68 -s 1 -d 3 -p cbr -e 500 -c 1 -i 109 -a 1 h -t 0.68 -s 1 -d 3 -p cbr -e 500 -c 1 -i 109 -a 1 r -t 0.681264 -s 5 -d 4 -p ack -e 40 -c 0 -i 105 -a 0 -S 0 -y {6 6} + -t 0.681264 -s 4 -d 3 -p ack -e 40 -c 0 -i 105 -a 0 -S 0 -y {6 6} - -t 0.681264 -s 4 -d 3 -p ack -e 40 -c 0 -i 105 -a 0 -S 0 -y {6 6} h -t 0.681264 -s 4 -d 3 -p ack -e 40 -c 0 -i 105 -a 0 -S 0 -y {-1 -1} - -t 0.6816 -s 3 -d 4 -p cbr -e 500 -c 1 -i 94 -a 1 h -t 0.6816 -s 3 -d 4 -p cbr -e 500 -c 1 -i 94 -a 1 r -t 0.6836 -s 3 -d 4 -p cbr -e 500 -c 1 -i 81 -a 1 + -t 0.6836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 81 -a 1 - -t 0.6836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 81 -a 1 h -t 0.6836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 81 -a 1 r -t 0.684 -s 1 -d 3 -p cbr -e 500 -c 1 -i 104 -a 1 + -t 0.684 -s 3 -d 4 -p cbr -e 500 -c 1 -i 104 -a 1 - -t 0.6856 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 93 -a 1 h -t 0.6856 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 93 -a 1 r -t 0.6876 -s 3 -d 4 -p cbr -e 500 -c 1 -i 83 -a 1 + -t 0.6876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 83 -a 1 - -t 0.6876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 83 -a 1 h -t 0.6876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 83 -a 1 r -t 0.688 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 103 -a 1 + -t 0.688 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 103 -a 1 r -t 0.689264 -s 5 -d 4 -p ack -e 40 -c 0 -i 106 -a 0 -S 0 -y {7 7} + -t 0.689264 -s 4 -d 3 -p ack -e 40 -c 0 -i 106 -a 0 -S 0 -y {7 7} - -t 0.689264 -s 4 -d 3 -p ack -e 40 -c 0 -i 106 -a 0 -S 0 -y {7 7} h -t 0.689264 -s 4 -d 3 -p ack -e 40 -c 0 -i 106 -a 0 -S 0 -y {-1 -1} + -t 0.69 -s 1 -d 3 -p cbr -e 500 -c 1 -i 110 -a 1 - -t 0.69 -s 1 -d 3 -p cbr -e 500 -c 1 -i 110 -a 1 h -t 0.69 -s 1 -d 3 -p cbr -e 500 -c 1 -i 110 -a 1 r -t 0.691584 -s 4 -d 3 -p ack -e 40 -c 0 -i 95 -a 0 -S 0 -y {2 2} + -t 0.691584 -s 3 -d 0 -p ack -e 40 -c 0 -i 95 -a 0 -S 0 -y {2 2} - -t 0.691584 -s 3 -d 0 -p ack -e 40 -c 0 -i 95 -a 0 -S 0 -f 0 -m 1 -y {2 2} h -t 0.691584 -s 3 -d 0 -p ack -e 40 -c 0 -i 95 -a 0 -S 0 -y {-1 -1} r -t 0.6916 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 76 -a 1 r -t 0.6916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 78 -a 1 r -t 0.691648 -s 3 -d 0 -p ack -e 40 -c 0 -i 90 -a 0 -S 0 -y {0 0} + -t 0.691648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 111 -a 0 -S 0 -f 0 -m 0 -y {8 8} - -t 0.691648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 111 -a 0 -S 0 -y {8 8} h -t 0.691648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 111 -a 0 -S 0 -y {-1 -1} - -t 0.6936 -s 3 -d 4 -p cbr -e 500 -c 1 -i 97 -a 1 h -t 0.6936 -s 3 -d 4 -p cbr -e 500 -c 1 -i 97 -a 1 r -t 0.694 -s 1 -d 3 -p cbr -e 500 -c 1 -i 107 -a 1 + -t 0.694 -s 3 -d 4 -p cbr -e 500 -c 1 -i 107 -a 1 r -t 0.6956 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 82 -a 1 + -t 0.6956 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 82 -a 1 - -t 0.6956 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 82 -a 1 h -t 0.6956 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 82 -a 1 r -t 0.6956 -s 4 -d 6 -p cbr -e 500 -c 1 -i 80 -a 1 - -t 0.6976 -s 3 -d 4 -p cbr -e 500 -c 1 -i 99 -a 1 h -t 0.6976 -s 3 -d 4 -p cbr -e 500 -c 1 -i 99 -a 1 r -t 0.699584 -s 4 -d 3 -p ack -e 40 -c 0 -i 96 -a 0 -S 0 -y {3 3} + -t 0.699584 -s 3 -d 0 -p ack -e 40 -c 0 -i 96 -a 0 -S 0 -y {3 3} - -t 0.699584 -s 3 -d 0 -p ack -e 40 -c 0 -i 96 -a 0 -S 0 -f 0 -m 1 -y {3 3} h -t 0.699584 -s 3 -d 0 -p ack -e 40 -c 0 -i 96 -a 0 -S 0 -y {-1 -1} r -t 0.6996 -s 3 -d 4 -p cbr -e 500 -c 1 -i 84 -a 1 + -t 0.6996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 84 -a 1 - -t 0.6996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 84 -a 1 h -t 0.6996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 84 -a 1 r -t 0.699648 -s 3 -d 0 -p ack -e 40 -c 0 -i 91 -a 0 -S 0 -y {1 1} + -t 0.699648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 112 -a 0 -S 0 -f 0 -m 0 -y {9 9} - -t 0.699648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 112 -a 0 -S 0 -y {9 9} h -t 0.699648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 112 -a 0 -S 0 -y {-1 -1} + -t 0.7 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 113 -a 1 - -t 0.7 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 113 -a 1 h -t 0.7 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 113 -a 1 + -t 0.7 -s 1 -d 3 -p cbr -e 500 -c 1 -i 114 -a 1 - -t 0.7 -s 1 -d 3 -p cbr -e 500 -c 1 -i 114 -a 1 h -t 0.7 -s 1 -d 3 -p cbr -e 500 -c 1 -i 114 -a 1 - -t 0.7016 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 98 -a 1 h -t 0.7016 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 98 -a 1 r -t 0.7036 -s 3 -d 4 -p cbr -e 500 -c 1 -i 86 -a 1 + -t 0.7036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 86 -a 1 - -t 0.7036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 86 -a 1 h -t 0.7036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 86 -a 1 r -t 0.704 -s 1 -d 3 -p cbr -e 500 -c 1 -i 109 -a 1 + -t 0.704 -s 3 -d 4 -p cbr -e 500 -c 1 -i 109 -a 1 r -t 0.7076 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 79 -a 1 r -t 0.7076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 81 -a 1 r -t 0.708 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 108 -a 1 + -t 0.708 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 108 -a 1 - -t 0.7096 -s 3 -d 4 -p cbr -e 500 -c 1 -i 101 -a 1 h -t 0.7096 -s 3 -d 4 -p cbr -e 500 -c 1 -i 101 -a 1 + -t 0.71 -s 1 -d 3 -p cbr -e 500 -c 1 -i 115 -a 1 - -t 0.71 -s 1 -d 3 -p cbr -e 500 -c 1 -i 115 -a 1 h -t 0.71 -s 1 -d 3 -p cbr -e 500 -c 1 -i 115 -a 1 r -t 0.7116 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 85 -a 1 + -t 0.7116 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 85 -a 1 - -t 0.7116 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 85 -a 1 h -t 0.7116 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 85 -a 1 r -t 0.7116 -s 4 -d 6 -p cbr -e 500 -c 1 -i 83 -a 1 r -t 0.711648 -s 3 -d 0 -p ack -e 40 -c 0 -i 95 -a 0 -S 0 -y {2 2} + -t 0.711648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 116 -a 0 -S 0 -f 0 -m 0 -y {10 10} - -t 0.711648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 116 -a 0 -S 0 -y {10 10} h -t 0.711648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 116 -a 0 -S 0 -y {-1 -1} r -t 0.713248 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 111 -a 0 -S 0 -y {8 8} + -t 0.713248 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 111 -a 0 -S 0 -y {8 8} - -t 0.7136 -s 3 -d 4 -p cbr -e 500 -c 1 -i 104 -a 1 h -t 0.7136 -s 3 -d 4 -p cbr -e 500 -c 1 -i 104 -a 1 r -t 0.714 -s 1 -d 3 -p cbr -e 500 -c 1 -i 110 -a 1 + -t 0.714 -s 3 -d 4 -p cbr -e 500 -c 1 -i 110 -a 1 r -t 0.715584 -s 4 -d 3 -p ack -e 40 -c 0 -i 100 -a 0 -S 0 -y {4 4} + -t 0.715584 -s 3 -d 0 -p ack -e 40 -c 0 -i 100 -a 0 -S 0 -y {4 4} - -t 0.715584 -s 3 -d 0 -p ack -e 40 -c 0 -i 100 -a 0 -S 0 -f 0 -m 1 -y {4 4} h -t 0.715584 -s 3 -d 0 -p ack -e 40 -c 0 -i 100 -a 0 -S 0 -y {-1 -1} r -t 0.7156 -s 3 -d 4 -p cbr -e 500 -c 1 -i 87 -a 1 + -t 0.7156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 87 -a 1 - -t 0.7156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 87 -a 1 h -t 0.7156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 87 -a 1 - -t 0.7176 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 103 -a 1 h -t 0.7176 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 103 -a 1 r -t 0.7196 -s 3 -d 4 -p cbr -e 500 -c 1 -i 89 -a 1 + -t 0.7196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 89 -a 1 - -t 0.7196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 89 -a 1 h -t 0.7196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 89 -a 1 r -t 0.719648 -s 3 -d 0 -p ack -e 40 -c 0 -i 96 -a 0 -S 0 -y {3 3} + -t 0.719648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 117 -a 0 -S 0 -f 0 -m 0 -y {11 11} - -t 0.719648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 117 -a 0 -S 0 -y {11 11} h -t 0.719648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 117 -a 0 -S 0 -y {-1 -1} + -t 0.72 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 118 -a 1 - -t 0.72 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 118 -a 1 h -t 0.72 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 118 -a 1 + -t 0.72 -s 1 -d 3 -p cbr -e 500 -c 1 -i 119 -a 1 - -t 0.72 -s 1 -d 3 -p cbr -e 500 -c 1 -i 119 -a 1 h -t 0.72 -s 1 -d 3 -p cbr -e 500 -c 1 -i 119 -a 1 r -t 0.721248 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 112 -a 0 -S 0 -y {9 9} + -t 0.721248 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 112 -a 0 -S 0 -y {9 9} r -t 0.723584 -s 4 -d 3 -p ack -e 40 -c 0 -i 102 -a 0 -S 0 -y {5 5} + -t 0.723584 -s 3 -d 0 -p ack -e 40 -c 0 -i 102 -a 0 -S 0 -y {5 5} - -t 0.723584 -s 3 -d 0 -p ack -e 40 -c 0 -i 102 -a 0 -S 0 -f 0 -m 1 -y {5 5} h -t 0.723584 -s 3 -d 0 -p ack -e 40 -c 0 -i 102 -a 0 -S 0 -y {-1 -1} r -t 0.7236 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 82 -a 1 r -t 0.7236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 84 -a 1 r -t 0.724 -s 1 -d 3 -p cbr -e 500 -c 1 -i 114 -a 1 + -t 0.724 -s 3 -d 4 -p cbr -e 500 -c 1 -i 114 -a 1 - -t 0.7256 -s 3 -d 4 -p cbr -e 500 -c 1 -i 107 -a 1 h -t 0.7256 -s 3 -d 4 -p cbr -e 500 -c 1 -i 107 -a 1 r -t 0.7276 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 88 -a 1 + -t 0.7276 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 88 -a 1 - -t 0.7276 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 88 -a 1 h -t 0.7276 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 88 -a 1 r -t 0.7276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 86 -a 1 r -t 0.728 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 113 -a 1 + -t 0.728 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 113 -a 1 - -t 0.7296 -s 3 -d 4 -p cbr -e 500 -c 1 -i 109 -a 1 h -t 0.7296 -s 3 -d 4 -p cbr -e 500 -c 1 -i 109 -a 1 + -t 0.73 -s 1 -d 3 -p cbr -e 500 -c 1 -i 120 -a 1 - -t 0.73 -s 1 -d 3 -p cbr -e 500 -c 1 -i 120 -a 1 h -t 0.73 -s 1 -d 3 -p cbr -e 500 -c 1 -i 120 -a 1 r -t 0.731584 -s 4 -d 3 -p ack -e 40 -c 0 -i 105 -a 0 -S 0 -y {6 6} + -t 0.731584 -s 3 -d 0 -p ack -e 40 -c 0 -i 105 -a 0 -S 0 -y {6 6} - -t 0.731584 -s 3 -d 0 -p ack -e 40 -c 0 -i 105 -a 0 -S 0 -f 0 -m 1 -y {6 6} h -t 0.731584 -s 3 -d 0 -p ack -e 40 -c 0 -i 105 -a 0 -S 0 -y {-1 -1} r -t 0.7316 -s 3 -d 4 -p cbr -e 500 -c 1 -i 92 -a 1 + -t 0.7316 -s 4 -d 6 -p cbr -e 500 -c 1 -i 92 -a 1 - -t 0.7316 -s 4 -d 6 -p cbr -e 500 -c 1 -i 92 -a 1 h -t 0.7316 -s 4 -d 6 -p cbr -e 500 -c 1 -i 92 -a 1 r -t 0.733248 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 116 -a 0 -S 0 -y {10 10} + -t 0.733248 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 116 -a 0 -S 0 -y {10 10} - -t 0.7336 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 108 -a 1 h -t 0.7336 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 108 -a 1 r -t 0.734 -s 1 -d 3 -p cbr -e 500 -c 1 -i 115 -a 1 + -t 0.734 -s 3 -d 4 -p cbr -e 500 -c 1 -i 115 -a 1 r -t 0.7356 -s 3 -d 4 -p cbr -e 500 -c 1 -i 94 -a 1 + -t 0.7356 -s 4 -d 6 -p cbr -e 500 -c 1 -i 94 -a 1 - -t 0.7356 -s 4 -d 6 -p cbr -e 500 -c 1 -i 94 -a 1 h -t 0.7356 -s 4 -d 6 -p cbr -e 500 -c 1 -i 94 -a 1 r -t 0.735648 -s 3 -d 0 -p ack -e 40 -c 0 -i 100 -a 0 -S 0 -y {4 4} + -t 0.735648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 121 -a 0 -S 0 -f 0 -m 0 -y {12 12} - -t 0.735648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 121 -a 0 -S 0 -y {12 12} h -t 0.735648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 121 -a 0 -S 0 -y {-1 -1} r -t 0.739584 -s 4 -d 3 -p ack -e 40 -c 0 -i 106 -a 0 -S 0 -y {7 7} + -t 0.739584 -s 3 -d 0 -p ack -e 40 -c 0 -i 106 -a 0 -S 0 -y {7 7} - -t 0.739584 -s 3 -d 0 -p ack -e 40 -c 0 -i 106 -a 0 -S 0 -f 0 -m 1 -y {7 7} h -t 0.739584 -s 3 -d 0 -p ack -e 40 -c 0 -i 106 -a 0 -S 0 -y {-1 -1} r -t 0.7396 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 85 -a 1 r -t 0.7396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 87 -a 1 + -t 0.74 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 122 -a 1 - -t 0.74 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 122 -a 1 h -t 0.74 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 122 -a 1 + -t 0.74 -s 1 -d 3 -p cbr -e 500 -c 1 -i 123 -a 1 - -t 0.74 -s 1 -d 3 -p cbr -e 500 -c 1 -i 123 -a 1 h -t 0.74 -s 1 -d 3 -p cbr -e 500 -c 1 -i 123 -a 1 r -t 0.741248 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 117 -a 0 -S 0 -y {11 11} + -t 0.741248 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 117 -a 0 -S 0 -y {11 11} - -t 0.7416 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 111 -a 0 -S 0 -y {8 8} h -t 0.7416 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 111 -a 0 -S 0 -y {-1 -1} r -t 0.7436 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 93 -a 1 + -t 0.7436 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 93 -a 1 - -t 0.7436 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 93 -a 1 h -t 0.7436 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 93 -a 1 r -t 0.7436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 89 -a 1 r -t 0.743648 -s 3 -d 0 -p ack -e 40 -c 0 -i 102 -a 0 -S 0 -y {5 5} + -t 0.743648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 124 -a 0 -S 0 -f 0 -m 0 -y {13 13} - -t 0.743648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 124 -a 0 -S 0 -y {13 13} h -t 0.743648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 124 -a 0 -S 0 -y {-1 -1} r -t 0.744 -s 1 -d 3 -p cbr -e 500 -c 1 -i 119 -a 1 + -t 0.744 -s 3 -d 4 -p cbr -e 500 -c 1 -i 119 -a 1 r -t 0.7476 -s 3 -d 4 -p cbr -e 500 -c 1 -i 97 -a 1 + -t 0.7476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 97 -a 1 - -t 0.7476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 97 -a 1 h -t 0.7476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 97 -a 1 r -t 0.748 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 118 -a 1 + -t 0.748 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 118 -a 1 - -t 0.7496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 110 -a 1 h -t 0.7496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 110 -a 1 + -t 0.75 -s 1 -d 3 -p cbr -e 500 -c 1 -i 125 -a 1 - -t 0.75 -s 1 -d 3 -p cbr -e 500 -c 1 -i 125 -a 1 h -t 0.75 -s 1 -d 3 -p cbr -e 500 -c 1 -i 125 -a 1 r -t 0.7516 -s 3 -d 4 -p cbr -e 500 -c 1 -i 99 -a 1 + -t 0.7516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 99 -a 1 - -t 0.7516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 99 -a 1 h -t 0.7516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 99 -a 1 r -t 0.751648 -s 3 -d 0 -p ack -e 40 -c 0 -i 105 -a 0 -S 0 -y {6 6} + -t 0.751648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 126 -a 0 -S 0 -f 0 -m 0 -y {14 14} - -t 0.751648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 126 -a 0 -S 0 -y {14 14} h -t 0.751648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 126 -a 0 -S 0 -y {-1 -1} - -t 0.7536 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 112 -a 0 -S 0 -y {9 9} h -t 0.7536 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 112 -a 0 -S 0 -y {-1 -1} r -t 0.754 -s 1 -d 3 -p cbr -e 500 -c 1 -i 120 -a 1 + -t 0.754 -s 3 -d 4 -p cbr -e 500 -c 1 -i 120 -a 1 r -t 0.7556 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 88 -a 1 r -t 0.7556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 92 -a 1 r -t 0.757248 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 121 -a 0 -S 0 -y {12 12} + -t 0.757248 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 121 -a 0 -S 0 -y {12 12} r -t 0.7596 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 98 -a 1 + -t 0.7596 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 98 -a 1 - -t 0.7596 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 98 -a 1 h -t 0.7596 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 98 -a 1 r -t 0.7596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 94 -a 1 r -t 0.759648 -s 3 -d 0 -p ack -e 40 -c 0 -i 106 -a 0 -S 0 -y {7 7} + -t 0.759648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 127 -a 0 -S 0 -f 0 -m 0 -y {15 15} - -t 0.759648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 127 -a 0 -S 0 -y {15 15} h -t 0.759648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 127 -a 0 -S 0 -y {-1 -1} + -t 0.76 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 128 -a 1 - -t 0.76 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 128 -a 1 h -t 0.76 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 128 -a 1 + -t 0.76 -s 1 -d 3 -p cbr -e 500 -c 1 -i 129 -a 1 - -t 0.76 -s 1 -d 3 -p cbr -e 500 -c 1 -i 129 -a 1 h -t 0.76 -s 1 -d 3 -p cbr -e 500 -c 1 -i 129 -a 1 - -t 0.7616 -s 3 -d 4 -p cbr -e 500 -c 1 -i 114 -a 1 h -t 0.7616 -s 3 -d 4 -p cbr -e 500 -c 1 -i 114 -a 1 r -t 0.7636 -s 3 -d 4 -p cbr -e 500 -c 1 -i 101 -a 1 + -t 0.7636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 101 -a 1 - -t 0.7636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 101 -a 1 h -t 0.7636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 101 -a 1 r -t 0.764 -s 1 -d 3 -p cbr -e 500 -c 1 -i 123 -a 1 + -t 0.764 -s 3 -d 4 -p cbr -e 500 -c 1 -i 123 -a 1 r -t 0.765248 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 124 -a 0 -S 0 -y {13 13} + -t 0.765248 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 124 -a 0 -S 0 -y {13 13} - -t 0.7656 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 113 -a 1 h -t 0.7656 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 113 -a 1 r -t 0.7676 -s 3 -d 4 -p cbr -e 500 -c 1 -i 104 -a 1 + -t 0.7676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 104 -a 1 - -t 0.7676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 104 -a 1 h -t 0.7676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 104 -a 1 r -t 0.768 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 122 -a 1 + -t 0.768 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 122 -a 1 + -t 0.77 -s 1 -d 3 -p cbr -e 500 -c 1 -i 130 -a 1 - -t 0.77 -s 1 -d 3 -p cbr -e 500 -c 1 -i 130 -a 1 h -t 0.77 -s 1 -d 3 -p cbr -e 500 -c 1 -i 130 -a 1 r -t 0.7716 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 93 -a 1 r -t 0.7716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 97 -a 1 r -t 0.773248 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 126 -a 0 -S 0 -y {14 14} + -t 0.773248 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 126 -a 0 -S 0 -y {14 14} - -t 0.7736 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 116 -a 0 -S 0 -y {10 10} h -t 0.7736 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 116 -a 0 -S 0 -y {-1 -1} r -t 0.774 -s 1 -d 3 -p cbr -e 500 -c 1 -i 125 -a 1 + -t 0.774 -s 3 -d 4 -p cbr -e 500 -c 1 -i 125 -a 1 r -t 0.7756 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 103 -a 1 + -t 0.7756 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 103 -a 1 - -t 0.7756 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 103 -a 1 h -t 0.7756 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 103 -a 1 r -t 0.7756 -s 4 -d 6 -p cbr -e 500 -c 1 -i 99 -a 1 r -t 0.7796 -s 3 -d 4 -p cbr -e 500 -c 1 -i 107 -a 1 + -t 0.7796 -s 4 -d 6 -p cbr -e 500 -c 1 -i 107 -a 1 - -t 0.7796 -s 4 -d 6 -p cbr -e 500 -c 1 -i 107 -a 1 h -t 0.7796 -s 4 -d 6 -p cbr -e 500 -c 1 -i 107 -a 1 + -t 0.78 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 131 -a 1 - -t 0.78 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 131 -a 1 h -t 0.78 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 131 -a 1 + -t 0.78 -s 1 -d 3 -p cbr -e 500 -c 1 -i 132 -a 1 - -t 0.78 -s 1 -d 3 -p cbr -e 500 -c 1 -i 132 -a 1 h -t 0.78 -s 1 -d 3 -p cbr -e 500 -c 1 -i 132 -a 1 r -t 0.781248 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 127 -a 0 -S 0 -y {15 15} + -t 0.781248 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 127 -a 0 -S 0 -y {15 15} - -t 0.7816 -s 3 -d 4 -p cbr -e 500 -c 1 -i 115 -a 1 h -t 0.7816 -s 3 -d 4 -p cbr -e 500 -c 1 -i 115 -a 1 r -t 0.7836 -s 3 -d 4 -p cbr -e 500 -c 1 -i 109 -a 1 + -t 0.7836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 109 -a 1 - -t 0.7836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 109 -a 1 h -t 0.7836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 109 -a 1 r -t 0.784 -s 1 -d 3 -p cbr -e 500 -c 1 -i 129 -a 1 + -t 0.784 -s 3 -d 4 -p cbr -e 500 -c 1 -i 129 -a 1 - -t 0.7856 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 117 -a 0 -S 0 -y {11 11} h -t 0.7856 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 117 -a 0 -S 0 -y {-1 -1} r -t 0.7876 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 98 -a 1 r -t 0.7876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 101 -a 1 r -t 0.788 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 128 -a 1 + -t 0.788 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 128 -a 1 + -t 0.79 -s 1 -d 3 -p cbr -e 500 -c 1 -i 133 -a 1 - -t 0.79 -s 1 -d 3 -p cbr -e 500 -c 1 -i 133 -a 1 h -t 0.79 -s 1 -d 3 -p cbr -e 500 -c 1 -i 133 -a 1 r -t 0.7916 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 108 -a 1 + -t 0.7916 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 108 -a 1 - -t 0.7916 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 108 -a 1 h -t 0.7916 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 108 -a 1 r -t 0.7916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 104 -a 1 - -t 0.7936 -s 3 -d 4 -p cbr -e 500 -c 1 -i 119 -a 1 h -t 0.7936 -s 3 -d 4 -p cbr -e 500 -c 1 -i 119 -a 1 r -t 0.794 -s 1 -d 3 -p cbr -e 500 -c 1 -i 130 -a 1 + -t 0.794 -s 3 -d 4 -p cbr -e 500 -c 1 -i 130 -a 1 - -t 0.7976 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 118 -a 1 h -t 0.7976 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 118 -a 1 r -t 0.7996 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 111 -a 0 -S 0 -y {8 8} + -t 0.7996 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 111 -a 0 -S 0 -y {8 8} - -t 0.7996 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 111 -a 0 -S 0 -y {8 8} h -t 0.7996 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 111 -a 0 -S 0 -y {-1 -1} + -t 0.8 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 134 -a 1 - -t 0.8 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 134 -a 1 h -t 0.8 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 134 -a 1 + -t 0.8 -s 1 -d 3 -p cbr -e 500 -c 1 -i 135 -a 1 - -t 0.8 -s 1 -d 3 -p cbr -e 500 -c 1 -i 135 -a 1 h -t 0.8 -s 1 -d 3 -p cbr -e 500 -c 1 -i 135 -a 1 r -t 0.8036 -s 3 -d 4 -p cbr -e 500 -c 1 -i 110 -a 1 + -t 0.8036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 110 -a 1 - -t 0.8036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 110 -a 1 h -t 0.8036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 110 -a 1 r -t 0.8036 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 103 -a 1 r -t 0.8036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 107 -a 1 r -t 0.804 -s 1 -d 3 -p cbr -e 500 -c 1 -i 132 -a 1 + -t 0.804 -s 3 -d 4 -p cbr -e 500 -c 1 -i 132 -a 1 - -t 0.8056 -s 3 -d 4 -p cbr -e 500 -c 1 -i 120 -a 1 h -t 0.8056 -s 3 -d 4 -p cbr -e 500 -c 1 -i 120 -a 1 r -t 0.8076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 109 -a 1 r -t 0.808 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 131 -a 1 + -t 0.808 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 131 -a 1 - -t 0.8096 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 121 -a 0 -S 0 -y {12 12} h -t 0.8096 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 121 -a 0 -S 0 -y {-1 -1} + -t 0.81 -s 1 -d 3 -p cbr -e 500 -c 1 -i 136 -a 1 - -t 0.81 -s 1 -d 3 -p cbr -e 500 -c 1 -i 136 -a 1 h -t 0.81 -s 1 -d 3 -p cbr -e 500 -c 1 -i 136 -a 1 r -t 0.8116 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 112 -a 0 -S 0 -y {9 9} + -t 0.8116 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 112 -a 0 -S 0 -y {9 9} - -t 0.8116 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 112 -a 0 -S 0 -y {9 9} h -t 0.8116 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 112 -a 0 -S 0 -y {-1 -1} r -t 0.814 -s 1 -d 3 -p cbr -e 500 -c 1 -i 133 -a 1 + -t 0.814 -s 3 -d 4 -p cbr -e 500 -c 1 -i 133 -a 1 r -t 0.8156 -s 3 -d 4 -p cbr -e 500 -c 1 -i 114 -a 1 + -t 0.8156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 114 -a 1 - -t 0.8156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 114 -a 1 h -t 0.8156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 114 -a 1 - -t 0.8176 -s 3 -d 4 -p cbr -e 500 -c 1 -i 123 -a 1 h -t 0.8176 -s 3 -d 4 -p cbr -e 500 -c 1 -i 123 -a 1 r -t 0.8196 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 108 -a 1 + -t 0.82 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 137 -a 1 - -t 0.82 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 137 -a 1 h -t 0.82 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 137 -a 1 + -t 0.82 -s 1 -d 3 -p cbr -e 500 -c 1 -i 138 -a 1 - -t 0.82 -s 1 -d 3 -p cbr -e 500 -c 1 -i 138 -a 1 h -t 0.82 -s 1 -d 3 -p cbr -e 500 -c 1 -i 138 -a 1 r -t 0.8212 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 111 -a 0 -S 0 -y {8 8} + -t 0.8212 -s 5 -d 4 -p ack -e 40 -c 0 -i 139 -a 0 -S 0 -y {8 8} - -t 0.8212 -s 5 -d 4 -p ack -e 40 -c 0 -i 139 -a 0 -S 0 -y {8 8} h -t 0.8212 -s 5 -d 4 -p ack -e 40 -c 0 -i 139 -a 0 -S 0 -y {-1 -1} - -t 0.8216 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 124 -a 0 -S 0 -y {13 13} h -t 0.8216 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 124 -a 0 -S 0 -y {-1 -1} r -t 0.8236 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 113 -a 1 + -t 0.8236 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 113 -a 1 - -t 0.8236 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 113 -a 1 h -t 0.8236 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 113 -a 1 r -t 0.824 -s 1 -d 3 -p cbr -e 500 -c 1 -i 135 -a 1 + -t 0.824 -s 3 -d 4 -p cbr -e 500 -c 1 -i 135 -a 1 r -t 0.8276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 110 -a 1 r -t 0.828 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 134 -a 1 + -t 0.828 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 134 -a 1 - -t 0.8296 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 122 -a 1 h -t 0.8296 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 122 -a 1 + -t 0.83 -s 1 -d 3 -p cbr -e 500 -c 1 -i 140 -a 1 - -t 0.83 -s 1 -d 3 -p cbr -e 500 -c 1 -i 140 -a 1 h -t 0.83 -s 1 -d 3 -p cbr -e 500 -c 1 -i 140 -a 1 r -t 0.8316 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 116 -a 0 -S 0 -y {10 10} + -t 0.8316 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 116 -a 0 -S 0 -y {10 10} - -t 0.8316 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 116 -a 0 -S 0 -y {10 10} h -t 0.8316 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 116 -a 0 -S 0 -y {-1 -1} r -t 0.8332 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 112 -a 0 -S 0 -y {9 9} + -t 0.8332 -s 5 -d 4 -p ack -e 40 -c 0 -i 141 -a 0 -S 0 -y {9 9} - -t 0.8332 -s 5 -d 4 -p ack -e 40 -c 0 -i 141 -a 0 -S 0 -y {9 9} h -t 0.8332 -s 5 -d 4 -p ack -e 40 -c 0 -i 141 -a 0 -S 0 -y {-1 -1} r -t 0.834 -s 1 -d 3 -p cbr -e 500 -c 1 -i 136 -a 1 + -t 0.834 -s 3 -d 4 -p cbr -e 500 -c 1 -i 136 -a 1 r -t 0.8356 -s 3 -d 4 -p cbr -e 500 -c 1 -i 115 -a 1 + -t 0.8356 -s 4 -d 6 -p cbr -e 500 -c 1 -i 115 -a 1 - -t 0.8356 -s 4 -d 6 -p cbr -e 500 -c 1 -i 115 -a 1 h -t 0.8356 -s 4 -d 6 -p cbr -e 500 -c 1 -i 115 -a 1 - -t 0.8376 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 126 -a 0 -S 0 -y {14 14} h -t 0.8376 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 126 -a 0 -S 0 -y {-1 -1} r -t 0.8396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 114 -a 1 + -t 0.84 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 142 -a 1 - -t 0.84 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 142 -a 1 h -t 0.84 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 142 -a 1 + -t 0.84 -s 1 -d 3 -p cbr -e 500 -c 1 -i 143 -a 1 - -t 0.84 -s 1 -d 3 -p cbr -e 500 -c 1 -i 143 -a 1 h -t 0.84 -s 1 -d 3 -p cbr -e 500 -c 1 -i 143 -a 1 r -t 0.841264 -s 5 -d 4 -p ack -e 40 -c 0 -i 139 -a 0 -S 0 -y {8 8} + -t 0.841264 -s 4 -d 3 -p ack -e 40 -c 0 -i 139 -a 0 -S 0 -y {8 8} - -t 0.841264 -s 4 -d 3 -p ack -e 40 -c 0 -i 139 -a 0 -S 0 -y {8 8} h -t 0.841264 -s 4 -d 3 -p ack -e 40 -c 0 -i 139 -a 0 -S 0 -y {-1 -1} r -t 0.8436 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 117 -a 0 -S 0 -y {11 11} + -t 0.8436 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 117 -a 0 -S 0 -y {11 11} - -t 0.8436 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 117 -a 0 -S 0 -y {11 11} h -t 0.8436 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 117 -a 0 -S 0 -y {-1 -1} r -t 0.844 -s 1 -d 3 -p cbr -e 500 -c 1 -i 138 -a 1 + -t 0.844 -s 3 -d 4 -p cbr -e 500 -c 1 -i 138 -a 1 - -t 0.8456 -s 3 -d 4 -p cbr -e 500 -c 1 -i 125 -a 1 h -t 0.8456 -s 3 -d 4 -p cbr -e 500 -c 1 -i 125 -a 1 r -t 0.8476 -s 3 -d 4 -p cbr -e 500 -c 1 -i 119 -a 1 + -t 0.8476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 119 -a 1 - -t 0.8476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 119 -a 1 h -t 0.8476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 119 -a 1 r -t 0.848 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 137 -a 1 + -t 0.848 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 137 -a 1 - -t 0.8496 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 127 -a 0 -S 0 -y {15 15} h -t 0.8496 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 127 -a 0 -S 0 -y {-1 -1} + -t 0.85 -s 1 -d 3 -p cbr -e 500 -c 1 -i 144 -a 1 - -t 0.85 -s 1 -d 3 -p cbr -e 500 -c 1 -i 144 -a 1 h -t 0.85 -s 1 -d 3 -p cbr -e 500 -c 1 -i 144 -a 1 r -t 0.8516 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 113 -a 1 r -t 0.8532 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 116 -a 0 -S 0 -y {10 10} + -t 0.8532 -s 5 -d 4 -p ack -e 40 -c 0 -i 145 -a 0 -S 0 -y {10 10} - -t 0.8532 -s 5 -d 4 -p ack -e 40 -c 0 -i 145 -a 0 -S 0 -y {10 10} h -t 0.8532 -s 5 -d 4 -p ack -e 40 -c 0 -i 145 -a 0 -S 0 -y {-1 -1} r -t 0.853264 -s 5 -d 4 -p ack -e 40 -c 0 -i 141 -a 0 -S 0 -y {9 9} + -t 0.853264 -s 4 -d 3 -p ack -e 40 -c 0 -i 141 -a 0 -S 0 -y {9 9} - -t 0.853264 -s 4 -d 3 -p ack -e 40 -c 0 -i 141 -a 0 -S 0 -y {9 9} h -t 0.853264 -s 4 -d 3 -p ack -e 40 -c 0 -i 141 -a 0 -S 0 -y {-1 -1} r -t 0.854 -s 1 -d 3 -p cbr -e 500 -c 1 -i 140 -a 1 + -t 0.854 -s 3 -d 4 -p cbr -e 500 -c 1 -i 140 -a 1 r -t 0.8556 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 118 -a 1 + -t 0.8556 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 118 -a 1 - -t 0.8556 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 118 -a 1 h -t 0.8556 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 118 -a 1 - -t 0.8576 -s 3 -d 4 -p cbr -e 500 -c 1 -i 129 -a 1 h -t 0.8576 -s 3 -d 4 -p cbr -e 500 -c 1 -i 129 -a 1 r -t 0.8596 -s 3 -d 4 -p cbr -e 500 -c 1 -i 120 -a 1 + -t 0.8596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 120 -a 1 - -t 0.8596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 120 -a 1 h -t 0.8596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 120 -a 1 r -t 0.8596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 115 -a 1 + -t 0.86 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 146 -a 1 - -t 0.86 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 146 -a 1 h -t 0.86 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 146 -a 1 + -t 0.86 -s 1 -d 3 -p cbr -e 500 -c 1 -i 147 -a 1 - -t 0.86 -s 1 -d 3 -p cbr -e 500 -c 1 -i 147 -a 1 h -t 0.86 -s 1 -d 3 -p cbr -e 500 -c 1 -i 147 -a 1 - -t 0.8616 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 128 -a 1 h -t 0.8616 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 128 -a 1 r -t 0.864 -s 1 -d 3 -p cbr -e 500 -c 1 -i 143 -a 1 + -t 0.864 -s 3 -d 4 -p cbr -e 500 -c 1 -i 143 -a 1 r -t 0.8652 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 117 -a 0 -S 0 -y {11 11} + -t 0.8652 -s 5 -d 4 -p ack -e 40 -c 0 -i 148 -a 0 -S 0 -y {11 11} - -t 0.8652 -s 5 -d 4 -p ack -e 40 -c 0 -i 148 -a 0 -S 0 -y {11 11} h -t 0.8652 -s 5 -d 4 -p ack -e 40 -c 0 -i 148 -a 0 -S 0 -y {-1 -1} r -t 0.8676 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 121 -a 0 -S 0 -y {12 12} + -t 0.8676 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 121 -a 0 -S 0 -y {12 12} - -t 0.8676 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 121 -a 0 -S 0 -y {12 12} h -t 0.8676 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 121 -a 0 -S 0 -y {-1 -1} r -t 0.868 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 142 -a 1 + -t 0.868 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 142 -a 1 - -t 0.8696 -s 3 -d 4 -p cbr -e 500 -c 1 -i 130 -a 1 h -t 0.8696 -s 3 -d 4 -p cbr -e 500 -c 1 -i 130 -a 1 + -t 0.87 -s 1 -d 3 -p cbr -e 500 -c 1 -i 149 -a 1 - -t 0.87 -s 1 -d 3 -p cbr -e 500 -c 1 -i 149 -a 1 h -t 0.87 -s 1 -d 3 -p cbr -e 500 -c 1 -i 149 -a 1 r -t 0.8716 -s 3 -d 4 -p cbr -e 500 -c 1 -i 123 -a 1 + -t 0.8716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 123 -a 1 - -t 0.8716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 123 -a 1 h -t 0.8716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 123 -a 1 r -t 0.8716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 119 -a 1 r -t 0.873264 -s 5 -d 4 -p ack -e 40 -c 0 -i 145 -a 0 -S 0 -y {10 10} + -t 0.873264 -s 4 -d 3 -p ack -e 40 -c 0 -i 145 -a 0 -S 0 -y {10 10} - -t 0.873264 -s 4 -d 3 -p ack -e 40 -c 0 -i 145 -a 0 -S 0 -y {10 10} h -t 0.873264 -s 4 -d 3 -p ack -e 40 -c 0 -i 145 -a 0 -S 0 -y {-1 -1} - -t 0.8736 -s 3 -d 4 -p cbr -e 500 -c 1 -i 132 -a 1 h -t 0.8736 -s 3 -d 4 -p cbr -e 500 -c 1 -i 132 -a 1 r -t 0.874 -s 1 -d 3 -p cbr -e 500 -c 1 -i 144 -a 1 + -t 0.874 -s 3 -d 4 -p cbr -e 500 -c 1 -i 144 -a 1 - -t 0.8776 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 131 -a 1 h -t 0.8776 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 131 -a 1 r -t 0.8796 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 124 -a 0 -S 0 -y {13 13} + -t 0.8796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 124 -a 0 -S 0 -y {13 13} - -t 0.8796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 124 -a 0 -S 0 -y {13 13} h -t 0.8796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 124 -a 0 -S 0 -y {-1 -1} + -t 0.88 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 150 -a 1 - -t 0.88 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 150 -a 1 h -t 0.88 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 150 -a 1 + -t 0.88 -s 1 -d 3 -p cbr -e 500 -c 1 -i 151 -a 1 - -t 0.88 -s 1 -d 3 -p cbr -e 500 -c 1 -i 151 -a 1 h -t 0.88 -s 1 -d 3 -p cbr -e 500 -c 1 -i 151 -a 1 r -t 0.8836 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 118 -a 1 r -t 0.8836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 120 -a 1 r -t 0.884 -s 1 -d 3 -p cbr -e 500 -c 1 -i 147 -a 1 + -t 0.884 -s 3 -d 4 -p cbr -e 500 -c 1 -i 147 -a 1 r -t 0.885264 -s 5 -d 4 -p ack -e 40 -c 0 -i 148 -a 0 -S 0 -y {11 11} + -t 0.885264 -s 4 -d 3 -p ack -e 40 -c 0 -i 148 -a 0 -S 0 -y {11 11} - -t 0.885264 -s 4 -d 3 -p ack -e 40 -c 0 -i 148 -a 0 -S 0 -y {11 11} h -t 0.885264 -s 4 -d 3 -p ack -e 40 -c 0 -i 148 -a 0 -S 0 -y {-1 -1} - -t 0.8856 -s 3 -d 4 -p cbr -e 500 -c 1 -i 133 -a 1 h -t 0.8856 -s 3 -d 4 -p cbr -e 500 -c 1 -i 133 -a 1 r -t 0.8876 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 122 -a 1 + -t 0.8876 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 122 -a 1 - -t 0.8876 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 122 -a 1 h -t 0.8876 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 122 -a 1 r -t 0.888 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 146 -a 1 + -t 0.888 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 146 -a 1 r -t 0.8892 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 121 -a 0 -S 0 -y {12 12} + -t 0.8892 -s 5 -d 4 -p ack -e 40 -c 0 -i 152 -a 0 -S 0 -y {12 12} - -t 0.8892 -s 5 -d 4 -p ack -e 40 -c 0 -i 152 -a 0 -S 0 -y {12 12} h -t 0.8892 -s 5 -d 4 -p ack -e 40 -c 0 -i 152 -a 0 -S 0 -y {-1 -1} - -t 0.8896 -s 3 -d 4 -p cbr -e 500 -c 1 -i 135 -a 1 h -t 0.8896 -s 3 -d 4 -p cbr -e 500 -c 1 -i 135 -a 1 + -t 0.89 -s 1 -d 3 -p cbr -e 500 -c 1 -i 153 -a 1 - -t 0.89 -s 1 -d 3 -p cbr -e 500 -c 1 -i 153 -a 1 h -t 0.89 -s 1 -d 3 -p cbr -e 500 -c 1 -i 153 -a 1 r -t 0.891584 -s 4 -d 3 -p ack -e 40 -c 0 -i 139 -a 0 -S 0 -y {8 8} + -t 0.891584 -s 3 -d 0 -p ack -e 40 -c 0 -i 139 -a 0 -S 0 -y {8 8} - -t 0.891584 -s 3 -d 0 -p ack -e 40 -c 0 -i 139 -a 0 -S 0 -f 0 -m 1 -y {8 8} h -t 0.891584 -s 3 -d 0 -p ack -e 40 -c 0 -i 139 -a 0 -S 0 -y {-1 -1} - -t 0.8936 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 134 -a 1 h -t 0.8936 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 134 -a 1 r -t 0.894 -s 1 -d 3 -p cbr -e 500 -c 1 -i 149 -a 1 + -t 0.894 -s 3 -d 4 -p cbr -e 500 -c 1 -i 149 -a 1 r -t 0.8956 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 126 -a 0 -S 0 -y {14 14} + -t 0.8956 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 126 -a 0 -S 0 -y {14 14} - -t 0.8956 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 126 -a 0 -S 0 -y {14 14} h -t 0.8956 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 126 -a 0 -S 0 -y {-1 -1} r -t 0.8956 -s 4 -d 6 -p cbr -e 500 -c 1 -i 123 -a 1 r -t 0.8996 -s 3 -d 4 -p cbr -e 500 -c 1 -i 125 -a 1 + -t 0.8996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 125 -a 1 - -t 0.8996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 125 -a 1 h -t 0.8996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 125 -a 1 + -t 0.9 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 154 -a 1 - -t 0.9 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 154 -a 1 h -t 0.9 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 154 -a 1 + -t 0.9 -s 1 -d 3 -p cbr -e 500 -c 1 -i 155 -a 1 - -t 0.9 -s 1 -d 3 -p cbr -e 500 -c 1 -i 155 -a 1 h -t 0.9 -s 1 -d 3 -p cbr -e 500 -c 1 -i 155 -a 1 r -t 0.9012 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 124 -a 0 -S 0 -y {13 13} + -t 0.9012 -s 5 -d 4 -p ack -e 40 -c 0 -i 156 -a 0 -S 0 -y {13 13} - -t 0.9012 -s 5 -d 4 -p ack -e 40 -c 0 -i 156 -a 0 -S 0 -y {13 13} h -t 0.9012 -s 5 -d 4 -p ack -e 40 -c 0 -i 156 -a 0 -S 0 -y {-1 -1} - -t 0.9016 -s 3 -d 4 -p cbr -e 500 -c 1 -i 136 -a 1 h -t 0.9016 -s 3 -d 4 -p cbr -e 500 -c 1 -i 136 -a 1 r -t 0.903584 -s 4 -d 3 -p ack -e 40 -c 0 -i 141 -a 0 -S 0 -y {9 9} + -t 0.903584 -s 3 -d 0 -p ack -e 40 -c 0 -i 141 -a 0 -S 0 -y {9 9} - -t 0.903584 -s 3 -d 0 -p ack -e 40 -c 0 -i 141 -a 0 -S 0 -f 0 -m 1 -y {9 9} h -t 0.903584 -s 3 -d 0 -p ack -e 40 -c 0 -i 141 -a 0 -S 0 -y {-1 -1} r -t 0.904 -s 1 -d 3 -p cbr -e 500 -c 1 -i 151 -a 1 + -t 0.904 -s 3 -d 4 -p cbr -e 500 -c 1 -i 151 -a 1 - -t 0.9056 -s 3 -d 4 -p cbr -e 500 -c 1 -i 138 -a 1 h -t 0.9056 -s 3 -d 4 -p cbr -e 500 -c 1 -i 138 -a 1 r -t 0.9076 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 127 -a 0 -S 0 -y {15 15} + -t 0.9076 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 127 -a 0 -S 0 -y {15 15} - -t 0.9076 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 127 -a 0 -S 0 -y {15 15} h -t 0.9076 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 127 -a 0 -S 0 -y {-1 -1} r -t 0.908 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 150 -a 1 + -t 0.908 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 150 -a 1 r -t 0.909264 -s 5 -d 4 -p ack -e 40 -c 0 -i 152 -a 0 -S 0 -y {12 12} + -t 0.909264 -s 4 -d 3 -p ack -e 40 -c 0 -i 152 -a 0 -S 0 -y {12 12} - -t 0.909264 -s 4 -d 3 -p ack -e 40 -c 0 -i 152 -a 0 -S 0 -y {12 12} h -t 0.909264 -s 4 -d 3 -p ack -e 40 -c 0 -i 152 -a 0 -S 0 -y {-1 -1} - -t 0.9096 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 137 -a 1 h -t 0.9096 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 137 -a 1 + -t 0.91 -s 1 -d 3 -p cbr -e 500 -c 1 -i 157 -a 1 - -t 0.91 -s 1 -d 3 -p cbr -e 500 -c 1 -i 157 -a 1 h -t 0.91 -s 1 -d 3 -p cbr -e 500 -c 1 -i 157 -a 1 r -t 0.9116 -s 3 -d 4 -p cbr -e 500 -c 1 -i 129 -a 1 + -t 0.9116 -s 4 -d 6 -p cbr -e 500 -c 1 -i 129 -a 1 - -t 0.9116 -s 4 -d 6 -p cbr -e 500 -c 1 -i 129 -a 1 h -t 0.9116 -s 4 -d 6 -p cbr -e 500 -c 1 -i 129 -a 1 r -t 0.911648 -s 3 -d 0 -p ack -e 40 -c 0 -i 139 -a 0 -S 0 -y {8 8} + -t 0.911648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 158 -a 0 -S 0 -f 0 -m 0 -y {16 16} - -t 0.911648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 158 -a 0 -S 0 -y {16 16} h -t 0.911648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 158 -a 0 -S 0 -y {-1 -1} r -t 0.914 -s 1 -d 3 -p cbr -e 500 -c 1 -i 153 -a 1 + -t 0.914 -s 3 -d 4 -p cbr -e 500 -c 1 -i 153 -a 1 r -t 0.9156 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 122 -a 1 r -t 0.9172 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 126 -a 0 -S 0 -y {14 14} + -t 0.9172 -s 5 -d 4 -p ack -e 40 -c 0 -i 159 -a 0 -S 0 -y {14 14} - -t 0.9172 -s 5 -d 4 -p ack -e 40 -c 0 -i 159 -a 0 -S 0 -y {14 14} h -t 0.9172 -s 5 -d 4 -p ack -e 40 -c 0 -i 159 -a 0 -S 0 -y {-1 -1} - -t 0.9176 -s 3 -d 4 -p cbr -e 500 -c 1 -i 140 -a 1 h -t 0.9176 -s 3 -d 4 -p cbr -e 500 -c 1 -i 140 -a 1 r -t 0.9196 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 128 -a 1 + -t 0.9196 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 128 -a 1 - -t 0.9196 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 128 -a 1 h -t 0.9196 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 128 -a 1 + -t 0.92 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 160 -a 1 - -t 0.92 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 160 -a 1 h -t 0.92 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 160 -a 1 + -t 0.92 -s 1 -d 3 -p cbr -e 500 -c 1 -i 161 -a 1 - -t 0.92 -s 1 -d 3 -p cbr -e 500 -c 1 -i 161 -a 1 h -t 0.92 -s 1 -d 3 -p cbr -e 500 -c 1 -i 161 -a 1 r -t 0.921264 -s 5 -d 4 -p ack -e 40 -c 0 -i 156 -a 0 -S 0 -y {13 13} + -t 0.921264 -s 4 -d 3 -p ack -e 40 -c 0 -i 156 -a 0 -S 0 -y {13 13} - -t 0.921264 -s 4 -d 3 -p ack -e 40 -c 0 -i 156 -a 0 -S 0 -y {13 13} h -t 0.921264 -s 4 -d 3 -p ack -e 40 -c 0 -i 156 -a 0 -S 0 -y {-1 -1} - -t 0.9216 -s 3 -d 4 -p cbr -e 500 -c 1 -i 143 -a 1 h -t 0.9216 -s 3 -d 4 -p cbr -e 500 -c 1 -i 143 -a 1 r -t 0.923584 -s 4 -d 3 -p ack -e 40 -c 0 -i 145 -a 0 -S 0 -y {10 10} + -t 0.923584 -s 3 -d 0 -p ack -e 40 -c 0 -i 145 -a 0 -S 0 -y {10 10} - -t 0.923584 -s 3 -d 0 -p ack -e 40 -c 0 -i 145 -a 0 -S 0 -f 0 -m 1 -y {10 10} h -t 0.923584 -s 3 -d 0 -p ack -e 40 -c 0 -i 145 -a 0 -S 0 -y {-1 -1} r -t 0.9236 -s 3 -d 4 -p cbr -e 500 -c 1 -i 130 -a 1 + -t 0.9236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 130 -a 1 - -t 0.9236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 130 -a 1 h -t 0.9236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 130 -a 1 r -t 0.9236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 125 -a 1 r -t 0.923648 -s 3 -d 0 -p ack -e 40 -c 0 -i 141 -a 0 -S 0 -y {9 9} + -t 0.923648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 162 -a 0 -S 0 -f 0 -m 0 -y {17 17} - -t 0.923648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 162 -a 0 -S 0 -y {17 17} h -t 0.923648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 162 -a 0 -S 0 -y {-1 -1} r -t 0.924 -s 1 -d 3 -p cbr -e 500 -c 1 -i 155 -a 1 + -t 0.924 -s 3 -d 4 -p cbr -e 500 -c 1 -i 155 -a 1 - -t 0.9256 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 142 -a 1 h -t 0.9256 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 142 -a 1 r -t 0.9276 -s 3 -d 4 -p cbr -e 500 -c 1 -i 132 -a 1 + -t 0.9276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 132 -a 1 - -t 0.9276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 132 -a 1 h -t 0.9276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 132 -a 1 r -t 0.928 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 154 -a 1 + -t 0.928 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 154 -a 1 r -t 0.9292 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 127 -a 0 -S 0 -y {15 15} + -t 0.9292 -s 5 -d 4 -p ack -e 40 -c 0 -i 163 -a 0 -S 0 -y {15 15} - -t 0.9292 -s 5 -d 4 -p ack -e 40 -c 0 -i 163 -a 0 -S 0 -y {15 15} h -t 0.9292 -s 5 -d 4 -p ack -e 40 -c 0 -i 163 -a 0 -S 0 -y {-1 -1} + -t 0.93 -s 1 -d 3 -p cbr -e 500 -c 1 -i 164 -a 1 - -t 0.93 -s 1 -d 3 -p cbr -e 500 -c 1 -i 164 -a 1 h -t 0.93 -s 1 -d 3 -p cbr -e 500 -c 1 -i 164 -a 1 r -t 0.933248 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 158 -a 0 -S 0 -y {16 16} + -t 0.933248 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 158 -a 0 -S 0 -y {16 16} - -t 0.9336 -s 3 -d 4 -p cbr -e 500 -c 1 -i 144 -a 1 h -t 0.9336 -s 3 -d 4 -p cbr -e 500 -c 1 -i 144 -a 1 r -t 0.934 -s 1 -d 3 -p cbr -e 500 -c 1 -i 157 -a 1 + -t 0.934 -s 3 -d 4 -p cbr -e 500 -c 1 -i 157 -a 1 r -t 0.935584 -s 4 -d 3 -p ack -e 40 -c 0 -i 148 -a 0 -S 0 -y {11 11} + -t 0.935584 -s 3 -d 0 -p ack -e 40 -c 0 -i 148 -a 0 -S 0 -y {11 11} - -t 0.935584 -s 3 -d 0 -p ack -e 40 -c 0 -i 148 -a 0 -S 0 -f 0 -m 1 -y {11 11} h -t 0.935584 -s 3 -d 0 -p ack -e 40 -c 0 -i 148 -a 0 -S 0 -y {-1 -1} r -t 0.9356 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 131 -a 1 + -t 0.9356 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 131 -a 1 - -t 0.9356 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 131 -a 1 h -t 0.9356 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 131 -a 1 r -t 0.9356 -s 4 -d 6 -p cbr -e 500 -c 1 -i 129 -a 1 r -t 0.937264 -s 5 -d 4 -p ack -e 40 -c 0 -i 159 -a 0 -S 0 -y {14 14} + -t 0.937264 -s 4 -d 3 -p ack -e 40 -c 0 -i 159 -a 0 -S 0 -y {14 14} - -t 0.937264 -s 4 -d 3 -p ack -e 40 -c 0 -i 159 -a 0 -S 0 -y {14 14} h -t 0.937264 -s 4 -d 3 -p ack -e 40 -c 0 -i 159 -a 0 -S 0 -y {-1 -1} - -t 0.9376 -s 3 -d 4 -p cbr -e 500 -c 1 -i 147 -a 1 h -t 0.9376 -s 3 -d 4 -p cbr -e 500 -c 1 -i 147 -a 1 r -t 0.9396 -s 3 -d 4 -p cbr -e 500 -c 1 -i 133 -a 1 + -t 0.9396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 133 -a 1 - -t 0.9396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 133 -a 1 h -t 0.9396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 133 -a 1 + -t 0.94 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 165 -a 1 - -t 0.94 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 165 -a 1 h -t 0.94 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 165 -a 1 + -t 0.94 -s 1 -d 3 -p cbr -e 500 -c 1 -i 166 -a 1 - -t 0.94 -s 1 -d 3 -p cbr -e 500 -c 1 -i 166 -a 1 h -t 0.94 -s 1 -d 3 -p cbr -e 500 -c 1 -i 166 -a 1 - -t 0.9416 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 146 -a 1 h -t 0.9416 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 146 -a 1 r -t 0.9436 -s 3 -d 4 -p cbr -e 500 -c 1 -i 135 -a 1 + -t 0.9436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 135 -a 1 - -t 0.9436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 135 -a 1 h -t 0.9436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 135 -a 1 r -t 0.943648 -s 3 -d 0 -p ack -e 40 -c 0 -i 145 -a 0 -S 0 -y {10 10} + -t 0.943648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 167 -a 0 -S 0 -f 0 -m 0 -y {18 18} - -t 0.943648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 167 -a 0 -S 0 -y {18 18} h -t 0.943648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 167 -a 0 -S 0 -y {-1 -1} r -t 0.944 -s 1 -d 3 -p cbr -e 500 -c 1 -i 161 -a 1 + -t 0.944 -s 3 -d 4 -p cbr -e 500 -c 1 -i 161 -a 1 r -t 0.945248 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 162 -a 0 -S 0 -y {17 17} + -t 0.945248 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 162 -a 0 -S 0 -y {17 17} r -t 0.9476 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 128 -a 1 r -t 0.9476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 130 -a 1 r -t 0.948 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 160 -a 1 + -t 0.948 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 160 -a 1 r -t 0.949264 -s 5 -d 4 -p ack -e 40 -c 0 -i 163 -a 0 -S 0 -y {15 15} + -t 0.949264 -s 4 -d 3 -p ack -e 40 -c 0 -i 163 -a 0 -S 0 -y {15 15} - -t 0.949264 -s 4 -d 3 -p ack -e 40 -c 0 -i 163 -a 0 -S 0 -y {15 15} h -t 0.949264 -s 4 -d 3 -p ack -e 40 -c 0 -i 163 -a 0 -S 0 -y {-1 -1} - -t 0.9496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 149 -a 1 h -t 0.9496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 149 -a 1 + -t 0.95 -s 1 -d 3 -p cbr -e 500 -c 1 -i 168 -a 1 - -t 0.95 -s 1 -d 3 -p cbr -e 500 -c 1 -i 168 -a 1 h -t 0.95 -s 1 -d 3 -p cbr -e 500 -c 1 -i 168 -a 1 r -t 0.9516 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 134 -a 1 + -t 0.9516 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 134 -a 1 - -t 0.9516 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 134 -a 1 h -t 0.9516 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 134 -a 1 r -t 0.9516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 132 -a 1 - -t 0.9536 -s 3 -d 4 -p cbr -e 500 -c 1 -i 151 -a 1 h -t 0.9536 -s 3 -d 4 -p cbr -e 500 -c 1 -i 151 -a 1 r -t 0.954 -s 1 -d 3 -p cbr -e 500 -c 1 -i 164 -a 1 + -t 0.954 -s 3 -d 4 -p cbr -e 500 -c 1 -i 164 -a 1 r -t 0.9556 -s 3 -d 4 -p cbr -e 500 -c 1 -i 136 -a 1 + -t 0.9556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 136 -a 1 - -t 0.9556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 136 -a 1 h -t 0.9556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 136 -a 1 r -t 0.955648 -s 3 -d 0 -p ack -e 40 -c 0 -i 148 -a 0 -S 0 -y {11 11} + -t 0.955648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 169 -a 0 -S 0 -f 0 -m 0 -y {19 19} - -t 0.955648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 169 -a 0 -S 0 -y {19 19} h -t 0.955648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 169 -a 0 -S 0 -y {-1 -1} - -t 0.9576 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 150 -a 1 h -t 0.9576 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 150 -a 1 r -t 0.959584 -s 4 -d 3 -p ack -e 40 -c 0 -i 152 -a 0 -S 0 -y {12 12} + -t 0.959584 -s 3 -d 0 -p ack -e 40 -c 0 -i 152 -a 0 -S 0 -y {12 12} - -t 0.959584 -s 3 -d 0 -p ack -e 40 -c 0 -i 152 -a 0 -S 0 -f 0 -m 1 -y {12 12} h -t 0.959584 -s 3 -d 0 -p ack -e 40 -c 0 -i 152 -a 0 -S 0 -y {-1 -1} r -t 0.9596 -s 3 -d 4 -p cbr -e 500 -c 1 -i 138 -a 1 + -t 0.9596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 138 -a 1 - -t 0.9596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 138 -a 1 h -t 0.9596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 138 -a 1 + -t 0.96 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 170 -a 1 - -t 0.96 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 170 -a 1 h -t 0.96 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 170 -a 1 + -t 0.96 -s 1 -d 3 -p cbr -e 500 -c 1 -i 171 -a 1 - -t 0.96 -s 1 -d 3 -p cbr -e 500 -c 1 -i 171 -a 1 h -t 0.96 -s 1 -d 3 -p cbr -e 500 -c 1 -i 171 -a 1 r -t 0.9636 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 131 -a 1 r -t 0.9636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 133 -a 1 r -t 0.964 -s 1 -d 3 -p cbr -e 500 -c 1 -i 166 -a 1 + -t 0.964 -s 3 -d 4 -p cbr -e 500 -c 1 -i 166 -a 1 r -t 0.965248 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 167 -a 0 -S 0 -y {18 18} + -t 0.965248 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 167 -a 0 -S 0 -y {18 18} - -t 0.9656 -s 3 -d 4 -p cbr -e 500 -c 1 -i 153 -a 1 h -t 0.9656 -s 3 -d 4 -p cbr -e 500 -c 1 -i 153 -a 1 r -t 0.9676 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 137 -a 1 + -t 0.9676 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 137 -a 1 - -t 0.9676 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 137 -a 1 h -t 0.9676 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 137 -a 1 r -t 0.9676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 135 -a 1 r -t 0.968 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 165 -a 1 + -t 0.968 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 165 -a 1 - -t 0.9696 -s 3 -d 4 -p cbr -e 500 -c 1 -i 155 -a 1 h -t 0.9696 -s 3 -d 4 -p cbr -e 500 -c 1 -i 155 -a 1 + -t 0.97 -s 1 -d 3 -p cbr -e 500 -c 1 -i 172 -a 1 - -t 0.97 -s 1 -d 3 -p cbr -e 500 -c 1 -i 172 -a 1 h -t 0.97 -s 1 -d 3 -p cbr -e 500 -c 1 -i 172 -a 1 r -t 0.971584 -s 4 -d 3 -p ack -e 40 -c 0 -i 156 -a 0 -S 0 -y {13 13} + -t 0.971584 -s 3 -d 0 -p ack -e 40 -c 0 -i 156 -a 0 -S 0 -y {13 13} - -t 0.971584 -s 3 -d 0 -p ack -e 40 -c 0 -i 156 -a 0 -S 0 -f 0 -m 1 -y {13 13} h -t 0.971584 -s 3 -d 0 -p ack -e 40 -c 0 -i 156 -a 0 -S 0 -y {-1 -1} r -t 0.9716 -s 3 -d 4 -p cbr -e 500 -c 1 -i 140 -a 1 + -t 0.9716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 140 -a 1 - -t 0.9716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 140 -a 1 h -t 0.9716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 140 -a 1 - -t 0.9736 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 154 -a 1 h -t 0.9736 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 154 -a 1 r -t 0.974 -s 1 -d 3 -p cbr -e 500 -c 1 -i 168 -a 1 + -t 0.974 -s 3 -d 4 -p cbr -e 500 -c 1 -i 168 -a 1 r -t 0.9756 -s 3 -d 4 -p cbr -e 500 -c 1 -i 143 -a 1 + -t 0.9756 -s 4 -d 6 -p cbr -e 500 -c 1 -i 143 -a 1 - -t 0.9756 -s 4 -d 6 -p cbr -e 500 -c 1 -i 143 -a 1 h -t 0.9756 -s 4 -d 6 -p cbr -e 500 -c 1 -i 143 -a 1 r -t 0.977248 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 169 -a 0 -S 0 -y {19 19} + -t 0.977248 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 169 -a 0 -S 0 -y {19 19} r -t 0.9796 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 134 -a 1 r -t 0.9796 -s 4 -d 6 -p cbr -e 500 -c 1 -i 136 -a 1 r -t 0.979648 -s 3 -d 0 -p ack -e 40 -c 0 -i 152 -a 0 -S 0 -y {12 12} + -t 0.979648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 173 -a 0 -S 0 -f 0 -m 0 -y {20 20} - -t 0.979648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 173 -a 0 -S 0 -y {20 20} h -t 0.979648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 173 -a 0 -S 0 -y {-1 -1} + -t 0.98 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 174 -a 1 - -t 0.98 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 174 -a 1 h -t 0.98 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 174 -a 1 + -t 0.98 -s 1 -d 3 -p cbr -e 500 -c 1 -i 175 -a 1 - -t 0.98 -s 1 -d 3 -p cbr -e 500 -c 1 -i 175 -a 1 h -t 0.98 -s 1 -d 3 -p cbr -e 500 -c 1 -i 175 -a 1 - -t 0.9816 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 158 -a 0 -S 0 -y {16 16} h -t 0.9816 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 158 -a 0 -S 0 -y {-1 -1} r -t 0.9836 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 142 -a 1 + -t 0.9836 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 142 -a 1 - -t 0.9836 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 142 -a 1 h -t 0.9836 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 142 -a 1 r -t 0.9836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 138 -a 1 r -t 0.984 -s 1 -d 3 -p cbr -e 500 -c 1 -i 171 -a 1 + -t 0.984 -s 3 -d 4 -p cbr -e 500 -c 1 -i 171 -a 1 r -t 0.987584 -s 4 -d 3 -p ack -e 40 -c 0 -i 159 -a 0 -S 0 -y {14 14} + -t 0.987584 -s 3 -d 0 -p ack -e 40 -c 0 -i 159 -a 0 -S 0 -y {14 14} - -t 0.987584 -s 3 -d 0 -p ack -e 40 -c 0 -i 159 -a 0 -S 0 -f 0 -m 1 -y {14 14} h -t 0.987584 -s 3 -d 0 -p ack -e 40 -c 0 -i 159 -a 0 -S 0 -y {-1 -1} r -t 0.9876 -s 3 -d 4 -p cbr -e 500 -c 1 -i 144 -a 1 + -t 0.9876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 144 -a 1 - -t 0.9876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 144 -a 1 h -t 0.9876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 144 -a 1 r -t 0.988 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 170 -a 1 + -t 0.988 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 170 -a 1 - -t 0.9896 -s 3 -d 4 -p cbr -e 500 -c 1 -i 157 -a 1 h -t 0.9896 -s 3 -d 4 -p cbr -e 500 -c 1 -i 157 -a 1 + -t 0.99 -s 1 -d 3 -p cbr -e 500 -c 1 -i 176 -a 1 - -t 0.99 -s 1 -d 3 -p cbr -e 500 -c 1 -i 176 -a 1 h -t 0.99 -s 1 -d 3 -p cbr -e 500 -c 1 -i 176 -a 1 r -t 0.9916 -s 3 -d 4 -p cbr -e 500 -c 1 -i 147 -a 1 + -t 0.9916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 147 -a 1 - -t 0.9916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 147 -a 1 h -t 0.9916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 147 -a 1 r -t 0.991648 -s 3 -d 0 -p ack -e 40 -c 0 -i 156 -a 0 -S 0 -y {13 13} + -t 0.991648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 177 -a 0 -S 0 -f 0 -m 0 -y {21 21} - -t 0.991648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 177 -a 0 -S 0 -y {21 21} h -t 0.991648 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 177 -a 0 -S 0 -y {-1 -1} - -t 0.9936 -s 3 -d 4 -p cbr -e 500 -c 1 -i 161 -a 1 h -t 0.9936 -s 3 -d 4 -p cbr -e 500 -c 1 -i 161 -a 1 r -t 0.994 -s 1 -d 3 -p cbr -e 500 -c 1 -i 172 -a 1 + -t 0.994 -s 3 -d 4 -p cbr -e 500 -c 1 -i 172 -a 1 r -t 0.9956 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 137 -a 1 r -t 0.9956 -s 4 -d 6 -p cbr -e 500 -c 1 -i 140 -a 1 - -t 0.9976 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 162 -a 0 -S 0 -y {17 17} h -t 0.9976 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 162 -a 0 -S 0 -y {-1 -1} r -t 0.999584 -s 4 -d 3 -p ack -e 40 -c 0 -i 163 -a 0 -S 0 -y {15 15} + -t 0.999584 -s 3 -d 0 -p ack -e 40 -c 0 -i 163 -a 0 -S 0 -y {15 15} - -t 0.999584 -s 3 -d 0 -p ack -e 40 -c 0 -i 163 -a 0 -S 0 -f 0 -m 1 -y {15 15} h -t 0.999584 -s 3 -d 0 -p ack -e 40 -c 0 -i 163 -a 0 -S 0 -y {-1 -1} r -t 0.9996 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 146 -a 1 + -t 0.9996 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 146 -a 1 - -t 0.9996 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 146 -a 1 h -t 0.9996 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 146 -a 1 r -t 0.9996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 143 -a 1 + -t 1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 178 -a 1 - -t 1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 178 -a 1 h -t 1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 178 -a 1 + -t 1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 179 -a 1 - -t 1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 179 -a 1 h -t 1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 179 -a 1 r -t 1.00125 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 173 -a 0 -S 0 -y {20 20} + -t 1.00125 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 173 -a 0 -S 0 -y {20 20} r -t 1.0036 -s 3 -d 4 -p cbr -e 500 -c 1 -i 149 -a 1 + -t 1.0036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 149 -a 1 - -t 1.0036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 149 -a 1 h -t 1.0036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 149 -a 1 r -t 1.004 -s 1 -d 3 -p cbr -e 500 -c 1 -i 175 -a 1 + -t 1.004 -s 3 -d 4 -p cbr -e 500 -c 1 -i 175 -a 1 - -t 1.0056 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 160 -a 1 h -t 1.0056 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 160 -a 1 r -t 1.0076 -s 3 -d 4 -p cbr -e 500 -c 1 -i 151 -a 1 + -t 1.0076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 151 -a 1 - -t 1.0076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 151 -a 1 h -t 1.0076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 151 -a 1 r -t 1.00765 -s 3 -d 0 -p ack -e 40 -c 0 -i 159 -a 0 -S 0 -y {14 14} + -t 1.00765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 180 -a 0 -S 0 -f 0 -m 0 -y {22 22} - -t 1.00765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 180 -a 0 -S 0 -y {22 22} h -t 1.00765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 180 -a 0 -S 0 -y {-1 -1} r -t 1.008 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 174 -a 1 + -t 1.008 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 174 -a 1 + -t 1.01 -s 1 -d 3 -p cbr -e 500 -c 1 -i 181 -a 1 - -t 1.01 -s 1 -d 3 -p cbr -e 500 -c 1 -i 181 -a 1 h -t 1.01 -s 1 -d 3 -p cbr -e 500 -c 1 -i 181 -a 1 r -t 1.0116 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 142 -a 1 r -t 1.0116 -s 4 -d 6 -p cbr -e 500 -c 1 -i 144 -a 1 r -t 1.01325 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 177 -a 0 -S 0 -y {21 21} + -t 1.01325 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 177 -a 0 -S 0 -y {21 21} - -t 1.0136 -s 3 -d 4 -p cbr -e 500 -c 1 -i 164 -a 1 h -t 1.0136 -s 3 -d 4 -p cbr -e 500 -c 1 -i 164 -a 1 r -t 1.014 -s 1 -d 3 -p cbr -e 500 -c 1 -i 176 -a 1 + -t 1.014 -s 3 -d 4 -p cbr -e 500 -c 1 -i 176 -a 1 r -t 1.0156 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 150 -a 1 + -t 1.0156 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 150 -a 1 - -t 1.0156 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 150 -a 1 h -t 1.0156 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 150 -a 1 r -t 1.0156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 147 -a 1 - -t 1.0176 -s 3 -d 4 -p cbr -e 500 -c 1 -i 166 -a 1 h -t 1.0176 -s 3 -d 4 -p cbr -e 500 -c 1 -i 166 -a 1 r -t 1.0196 -s 3 -d 4 -p cbr -e 500 -c 1 -i 153 -a 1 + -t 1.0196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 153 -a 1 - -t 1.0196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 153 -a 1 h -t 1.0196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 153 -a 1 r -t 1.01965 -s 3 -d 0 -p ack -e 40 -c 0 -i 163 -a 0 -S 0 -y {15 15} + -t 1.01965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 182 -a 0 -S 0 -f 0 -m 0 -y {23 23} - -t 1.01965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 182 -a 0 -S 0 -y {23 23} h -t 1.01965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 182 -a 0 -S 0 -y {-1 -1} + -t 1.02 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 183 -a 1 - -t 1.02 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 183 -a 1 h -t 1.02 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 183 -a 1 + -t 1.02 -s 1 -d 3 -p cbr -e 500 -c 1 -i 184 -a 1 - -t 1.02 -s 1 -d 3 -p cbr -e 500 -c 1 -i 184 -a 1 h -t 1.02 -s 1 -d 3 -p cbr -e 500 -c 1 -i 184 -a 1 - -t 1.0216 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 167 -a 0 -S 0 -y {18 18} h -t 1.0216 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 167 -a 0 -S 0 -y {-1 -1} r -t 1.0236 -s 3 -d 4 -p cbr -e 500 -c 1 -i 155 -a 1 + -t 1.0236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 155 -a 1 - -t 1.0236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 155 -a 1 h -t 1.0236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 155 -a 1 r -t 1.024 -s 1 -d 3 -p cbr -e 500 -c 1 -i 179 -a 1 + -t 1.024 -s 3 -d 4 -p cbr -e 500 -c 1 -i 179 -a 1 r -t 1.0276 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 146 -a 1 r -t 1.0276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 149 -a 1 r -t 1.028 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 178 -a 1 + -t 1.028 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 178 -a 1 r -t 1.02925 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 180 -a 0 -S 0 -y {22 22} + -t 1.02925 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 180 -a 0 -S 0 -y {22 22} - -t 1.0296 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 165 -a 1 h -t 1.0296 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 165 -a 1 + -t 1.03 -s 1 -d 3 -p cbr -e 500 -c 1 -i 185 -a 1 - -t 1.03 -s 1 -d 3 -p cbr -e 500 -c 1 -i 185 -a 1 h -t 1.03 -s 1 -d 3 -p cbr -e 500 -c 1 -i 185 -a 1 r -t 1.0316 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 154 -a 1 + -t 1.0316 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 154 -a 1 - -t 1.0316 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 154 -a 1 h -t 1.0316 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 154 -a 1 r -t 1.0316 -s 4 -d 6 -p cbr -e 500 -c 1 -i 151 -a 1 r -t 1.034 -s 1 -d 3 -p cbr -e 500 -c 1 -i 181 -a 1 + -t 1.034 -s 3 -d 4 -p cbr -e 500 -c 1 -i 181 -a 1 - -t 1.0376 -s 3 -d 4 -p cbr -e 500 -c 1 -i 168 -a 1 h -t 1.0376 -s 3 -d 4 -p cbr -e 500 -c 1 -i 168 -a 1 r -t 1.0396 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 158 -a 0 -S 0 -y {16 16} + -t 1.0396 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 158 -a 0 -S 0 -y {16 16} - -t 1.0396 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 158 -a 0 -S 0 -y {16 16} h -t 1.0396 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 158 -a 0 -S 0 -y {-1 -1} + -t 1.04 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 186 -a 1 - -t 1.04 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 186 -a 1 h -t 1.04 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 186 -a 1 + -t 1.04 -s 1 -d 3 -p cbr -e 500 -c 1 -i 187 -a 1 - -t 1.04 -s 1 -d 3 -p cbr -e 500 -c 1 -i 187 -a 1 h -t 1.04 -s 1 -d 3 -p cbr -e 500 -c 1 -i 187 -a 1 r -t 1.04125 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 182 -a 0 -S 0 -y {23 23} + -t 1.04125 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 182 -a 0 -S 0 -y {23 23} - -t 1.0416 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 169 -a 0 -S 0 -y {19 19} h -t 1.0416 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 169 -a 0 -S 0 -y {-1 -1} r -t 1.0436 -s 3 -d 4 -p cbr -e 500 -c 1 -i 157 -a 1 + -t 1.0436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 157 -a 1 - -t 1.0436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 157 -a 1 h -t 1.0436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 157 -a 1 r -t 1.0436 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 150 -a 1 r -t 1.0436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 153 -a 1 r -t 1.044 -s 1 -d 3 -p cbr -e 500 -c 1 -i 184 -a 1 + -t 1.044 -s 3 -d 4 -p cbr -e 500 -c 1 -i 184 -a 1 r -t 1.0476 -s 3 -d 4 -p cbr -e 500 -c 1 -i 161 -a 1 + -t 1.0476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 161 -a 1 r -t 1.0476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 155 -a 1 - -t 1.0476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 161 -a 1 h -t 1.0476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 161 -a 1 r -t 1.048 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 183 -a 1 + -t 1.048 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 183 -a 1 d -t 1.048 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 183 -a 1 - -t 1.0496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 171 -a 1 h -t 1.0496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 171 -a 1 + -t 1.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 188 -a 1 - -t 1.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 188 -a 1 h -t 1.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 188 -a 1 - -t 1.0536 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 170 -a 1 h -t 1.0536 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 170 -a 1 r -t 1.054 -s 1 -d 3 -p cbr -e 500 -c 1 -i 185 -a 1 + -t 1.054 -s 3 -d 4 -p cbr -e 500 -c 1 -i 185 -a 1 r -t 1.0556 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 162 -a 0 -S 0 -y {17 17} + -t 1.0556 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 162 -a 0 -S 0 -y {17 17} - -t 1.0556 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 162 -a 0 -S 0 -y {17 17} h -t 1.0556 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 162 -a 0 -S 0 -y {-1 -1} r -t 1.0596 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 154 -a 1 + -t 1.06 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 189 -a 1 - -t 1.06 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 189 -a 1 h -t 1.06 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 189 -a 1 + -t 1.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 190 -a 1 - -t 1.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 190 -a 1 h -t 1.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 190 -a 1 r -t 1.0612 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 158 -a 0 -S 0 -y {16 16} + -t 1.0612 -s 5 -d 4 -p ack -e 40 -c 0 -i 191 -a 0 -S 0 -y {16 16} - -t 1.0612 -s 5 -d 4 -p ack -e 40 -c 0 -i 191 -a 0 -S 0 -y {16 16} h -t 1.0612 -s 5 -d 4 -p ack -e 40 -c 0 -i 191 -a 0 -S 0 -y {-1 -1} - -t 1.0616 -s 3 -d 4 -p cbr -e 500 -c 1 -i 172 -a 1 h -t 1.0616 -s 3 -d 4 -p cbr -e 500 -c 1 -i 172 -a 1 r -t 1.0636 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 160 -a 1 + -t 1.0636 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 160 -a 1 - -t 1.0636 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 160 -a 1 h -t 1.0636 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 160 -a 1 r -t 1.064 -s 1 -d 3 -p cbr -e 500 -c 1 -i 187 -a 1 + -t 1.064 -s 3 -d 4 -p cbr -e 500 -c 1 -i 187 -a 1 - -t 1.0656 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 173 -a 0 -S 0 -y {20 20} h -t 1.0656 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 173 -a 0 -S 0 -y {-1 -1} r -t 1.0676 -s 3 -d 4 -p cbr -e 500 -c 1 -i 164 -a 1 + -t 1.0676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 164 -a 1 - -t 1.0676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 164 -a 1 h -t 1.0676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 164 -a 1 r -t 1.0676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 157 -a 1 r -t 1.068 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 186 -a 1 + -t 1.068 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 186 -a 1 + -t 1.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 192 -a 1 - -t 1.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 192 -a 1 h -t 1.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 192 -a 1 r -t 1.0716 -s 3 -d 4 -p cbr -e 500 -c 1 -i 166 -a 1 + -t 1.0716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 166 -a 1 r -t 1.0716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 161 -a 1 - -t 1.0716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 166 -a 1 h -t 1.0716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 166 -a 1 - -t 1.0736 -s 3 -d 4 -p cbr -e 500 -c 1 -i 175 -a 1 h -t 1.0736 -s 3 -d 4 -p cbr -e 500 -c 1 -i 175 -a 1 r -t 1.074 -s 1 -d 3 -p cbr -e 500 -c 1 -i 188 -a 1 + -t 1.074 -s 3 -d 4 -p cbr -e 500 -c 1 -i 188 -a 1 r -t 1.0772 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 162 -a 0 -S 0 -y {17 17} + -t 1.0772 -s 5 -d 4 -p ack -e 40 -c 0 -i 193 -a 0 -S 0 -y {17 17} - -t 1.0772 -s 5 -d 4 -p ack -e 40 -c 0 -i 193 -a 0 -S 0 -y {17 17} h -t 1.0772 -s 5 -d 4 -p ack -e 40 -c 0 -i 193 -a 0 -S 0 -y {-1 -1} - -t 1.0776 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 174 -a 1 h -t 1.0776 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 174 -a 1 r -t 1.0796 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 167 -a 0 -S 0 -y {18 18} + -t 1.0796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 167 -a 0 -S 0 -y {18 18} - -t 1.0796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 167 -a 0 -S 0 -y {18 18} h -t 1.0796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 167 -a 0 -S 0 -y {-1 -1} + -t 1.08 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 194 -a 1 - -t 1.08 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 194 -a 1 h -t 1.08 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 194 -a 1 + -t 1.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 195 -a 1 - -t 1.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 195 -a 1 h -t 1.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 195 -a 1 r -t 1.08126 -s 5 -d 4 -p ack -e 40 -c 0 -i 191 -a 0 -S 0 -y {16 16} + -t 1.08126 -s 4 -d 3 -p ack -e 40 -c 0 -i 191 -a 0 -S 0 -y {16 16} - -t 1.08126 -s 4 -d 3 -p ack -e 40 -c 0 -i 191 -a 0 -S 0 -y {16 16} h -t 1.08126 -s 4 -d 3 -p ack -e 40 -c 0 -i 191 -a 0 -S 0 -y {-1 -1} r -t 1.084 -s 1 -d 3 -p cbr -e 500 -c 1 -i 190 -a 1 + -t 1.084 -s 3 -d 4 -p cbr -e 500 -c 1 -i 190 -a 1 - -t 1.0856 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 177 -a 0 -S 0 -y {21 21} h -t 1.0856 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 177 -a 0 -S 0 -y {-1 -1} r -t 1.0876 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 165 -a 1 + -t 1.0876 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 165 -a 1 - -t 1.0876 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 165 -a 1 h -t 1.0876 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 165 -a 1 r -t 1.088 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 189 -a 1 + -t 1.088 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 189 -a 1 + -t 1.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 196 -a 1 - -t 1.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 196 -a 1 h -t 1.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 196 -a 1 r -t 1.0916 -s 3 -d 4 -p cbr -e 500 -c 1 -i 168 -a 1 + -t 1.0916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 168 -a 1 - -t 1.0916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 168 -a 1 h -t 1.0916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 168 -a 1 r -t 1.0916 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 160 -a 1 r -t 1.0916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 164 -a 1 - -t 1.0936 -s 3 -d 4 -p cbr -e 500 -c 1 -i 176 -a 1 h -t 1.0936 -s 3 -d 4 -p cbr -e 500 -c 1 -i 176 -a 1 r -t 1.094 -s 1 -d 3 -p cbr -e 500 -c 1 -i 192 -a 1 + -t 1.094 -s 3 -d 4 -p cbr -e 500 -c 1 -i 192 -a 1 r -t 1.0956 -s 4 -d 6 -p cbr -e 500 -c 1 -i 166 -a 1 r -t 1.09726 -s 5 -d 4 -p ack -e 40 -c 0 -i 193 -a 0 -S 0 -y {17 17} + -t 1.09726 -s 4 -d 3 -p ack -e 40 -c 0 -i 193 -a 0 -S 0 -y {17 17} - -t 1.09726 -s 4 -d 3 -p ack -e 40 -c 0 -i 193 -a 0 -S 0 -y {17 17} h -t 1.09726 -s 4 -d 3 -p ack -e 40 -c 0 -i 193 -a 0 -S 0 -y {-1 -1} - -t 1.0976 -s 3 -d 4 -p cbr -e 500 -c 1 -i 179 -a 1 h -t 1.0976 -s 3 -d 4 -p cbr -e 500 -c 1 -i 179 -a 1 r -t 1.0996 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 169 -a 0 -S 0 -y {19 19} + -t 1.0996 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 169 -a 0 -S 0 -y {19 19} - -t 1.0996 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 169 -a 0 -S 0 -y {19 19} h -t 1.0996 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 169 -a 0 -S 0 -y {-1 -1} + -t 1.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 197 -a 1 - -t 1.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 197 -a 1 h -t 1.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 197 -a 1 + -t 1.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 198 -a 1 - -t 1.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 198 -a 1 h -t 1.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 198 -a 1 r -t 1.1012 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 167 -a 0 -S 0 -y {18 18} + -t 1.1012 -s 5 -d 4 -p ack -e 40 -c 0 -i 199 -a 0 -S 0 -y {18 18} - -t 1.1012 -s 5 -d 4 -p ack -e 40 -c 0 -i 199 -a 0 -S 0 -y {18 18} h -t 1.1012 -s 5 -d 4 -p ack -e 40 -c 0 -i 199 -a 0 -S 0 -y {-1 -1} - -t 1.1016 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 178 -a 1 h -t 1.1016 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 178 -a 1 r -t 1.1036 -s 3 -d 4 -p cbr -e 500 -c 1 -i 171 -a 1 + -t 1.1036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 171 -a 1 - -t 1.1036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 171 -a 1 h -t 1.1036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 171 -a 1 r -t 1.104 -s 1 -d 3 -p cbr -e 500 -c 1 -i 195 -a 1 + -t 1.104 -s 3 -d 4 -p cbr -e 500 -c 1 -i 195 -a 1 r -t 1.108 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 194 -a 1 + -t 1.108 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 194 -a 1 - -t 1.1096 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 180 -a 0 -S 0 -y {22 22} h -t 1.1096 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 180 -a 0 -S 0 -y {-1 -1} + -t 1.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 200 -a 1 - -t 1.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 200 -a 1 h -t 1.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 200 -a 1 r -t 1.1116 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 170 -a 1 + -t 1.1116 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 170 -a 1 - -t 1.1116 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 170 -a 1 h -t 1.1116 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 170 -a 1 r -t 1.114 -s 1 -d 3 -p cbr -e 500 -c 1 -i 196 -a 1 + -t 1.114 -s 3 -d 4 -p cbr -e 500 -c 1 -i 196 -a 1 r -t 1.1156 -s 3 -d 4 -p cbr -e 500 -c 1 -i 172 -a 1 + -t 1.1156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 172 -a 1 - -t 1.1156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 172 -a 1 h -t 1.1156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 172 -a 1 r -t 1.1156 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 165 -a 1 r -t 1.1156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 168 -a 1 - -t 1.1176 -s 3 -d 4 -p cbr -e 500 -c 1 -i 181 -a 1 h -t 1.1176 -s 3 -d 4 -p cbr -e 500 -c 1 -i 181 -a 1 + -t 1.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 201 -a 1 - -t 1.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 201 -a 1 h -t 1.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 201 -a 1 + -t 1.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 202 -a 1 - -t 1.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 202 -a 1 h -t 1.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 202 -a 1 r -t 1.1212 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 169 -a 0 -S 0 -y {19 19} + -t 1.1212 -s 5 -d 4 -p ack -e 40 -c 0 -i 203 -a 0 -S 0 -y {19 19} - -t 1.1212 -s 5 -d 4 -p ack -e 40 -c 0 -i 203 -a 0 -S 0 -y {19 19} h -t 1.1212 -s 5 -d 4 -p ack -e 40 -c 0 -i 203 -a 0 -S 0 -y {-1 -1} r -t 1.12126 -s 5 -d 4 -p ack -e 40 -c 0 -i 199 -a 0 -S 0 -y {18 18} + -t 1.12126 -s 4 -d 3 -p ack -e 40 -c 0 -i 199 -a 0 -S 0 -y {18 18} - -t 1.12126 -s 4 -d 3 -p ack -e 40 -c 0 -i 199 -a 0 -S 0 -y {18 18} h -t 1.12126 -s 4 -d 3 -p ack -e 40 -c 0 -i 199 -a 0 -S 0 -y {-1 -1} - -t 1.1216 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 182 -a 0 -S 0 -y {23 23} h -t 1.1216 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 182 -a 0 -S 0 -y {-1 -1} r -t 1.1236 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 173 -a 0 -S 0 -y {20 20} + -t 1.1236 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 173 -a 0 -S 0 -y {20 20} - -t 1.1236 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 173 -a 0 -S 0 -y {20 20} h -t 1.1236 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 173 -a 0 -S 0 -y {-1 -1} r -t 1.124 -s 1 -d 3 -p cbr -e 500 -c 1 -i 198 -a 1 + -t 1.124 -s 3 -d 4 -p cbr -e 500 -c 1 -i 198 -a 1 r -t 1.1276 -s 3 -d 4 -p cbr -e 500 -c 1 -i 175 -a 1 + -t 1.1276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 175 -a 1 - -t 1.1276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 175 -a 1 h -t 1.1276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 175 -a 1 r -t 1.1276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 171 -a 1 r -t 1.128 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 197 -a 1 + -t 1.128 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 197 -a 1 - -t 1.1296 -s 3 -d 4 -p cbr -e 500 -c 1 -i 184 -a 1 h -t 1.1296 -s 3 -d 4 -p cbr -e 500 -c 1 -i 184 -a 1 + -t 1.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 204 -a 1 - -t 1.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 204 -a 1 h -t 1.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 204 -a 1 r -t 1.13158 -s 4 -d 3 -p ack -e 40 -c 0 -i 191 -a 0 -S 0 -y {16 16} + -t 1.13158 -s 3 -d 0 -p ack -e 40 -c 0 -i 191 -a 0 -S 0 -y {16 16} - -t 1.13158 -s 3 -d 0 -p ack -e 40 -c 0 -i 191 -a 0 -S 0 -f 0 -m 1 -y {16 16} h -t 1.13158 -s 3 -d 0 -p ack -e 40 -c 0 -i 191 -a 0 -S 0 -y {-1 -1} - -t 1.1336 -s 3 -d 4 -p cbr -e 500 -c 1 -i 185 -a 1 h -t 1.1336 -s 3 -d 4 -p cbr -e 500 -c 1 -i 185 -a 1 r -t 1.134 -s 1 -d 3 -p cbr -e 500 -c 1 -i 200 -a 1 + -t 1.134 -s 3 -d 4 -p cbr -e 500 -c 1 -i 200 -a 1 r -t 1.1356 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 174 -a 1 + -t 1.1356 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 174 -a 1 - -t 1.1356 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 174 -a 1 h -t 1.1356 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 174 -a 1 - -t 1.1376 -s 3 -d 4 -p cbr -e 500 -c 1 -i 187 -a 1 h -t 1.1376 -s 3 -d 4 -p cbr -e 500 -c 1 -i 187 -a 1 r -t 1.1396 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 170 -a 1 r -t 1.1396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 172 -a 1 + -t 1.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 205 -a 1 - -t 1.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 205 -a 1 h -t 1.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 205 -a 1 + -t 1.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 206 -a 1 - -t 1.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 206 -a 1 h -t 1.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 206 -a 1 r -t 1.14126 -s 5 -d 4 -p ack -e 40 -c 0 -i 203 -a 0 -S 0 -y {19 19} + -t 1.14126 -s 4 -d 3 -p ack -e 40 -c 0 -i 203 -a 0 -S 0 -y {19 19} - -t 1.14126 -s 4 -d 3 -p ack -e 40 -c 0 -i 203 -a 0 -S 0 -y {19 19} h -t 1.14126 -s 4 -d 3 -p ack -e 40 -c 0 -i 203 -a 0 -S 0 -y {-1 -1} - -t 1.1416 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 186 -a 1 h -t 1.1416 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 186 -a 1 r -t 1.1436 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 177 -a 0 -S 0 -y {21 21} + -t 1.1436 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 177 -a 0 -S 0 -y {21 21} - -t 1.1436 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 177 -a 0 -S 0 -y {21 21} h -t 1.1436 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 177 -a 0 -S 0 -y {-1 -1} r -t 1.144 -s 1 -d 3 -p cbr -e 500 -c 1 -i 202 -a 1 + -t 1.144 -s 3 -d 4 -p cbr -e 500 -c 1 -i 202 -a 1 r -t 1.1452 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 173 -a 0 -S 0 -y {20 20} + -t 1.1452 -s 5 -d 4 -p ack -e 40 -c 0 -i 207 -a 0 -S 0 -y {20 20} - -t 1.1452 -s 5 -d 4 -p ack -e 40 -c 0 -i 207 -a 0 -S 0 -y {20 20} h -t 1.1452 -s 5 -d 4 -p ack -e 40 -c 0 -i 207 -a 0 -S 0 -y {-1 -1} r -t 1.14758 -s 4 -d 3 -p ack -e 40 -c 0 -i 193 -a 0 -S 0 -y {17 17} + -t 1.14758 -s 3 -d 0 -p ack -e 40 -c 0 -i 193 -a 0 -S 0 -y {17 17} - -t 1.14758 -s 3 -d 0 -p ack -e 40 -c 0 -i 193 -a 0 -S 0 -f 0 -m 1 -y {17 17} h -t 1.14758 -s 3 -d 0 -p ack -e 40 -c 0 -i 193 -a 0 -S 0 -y {-1 -1} r -t 1.1476 -s 3 -d 4 -p cbr -e 500 -c 1 -i 176 -a 1 + -t 1.1476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 176 -a 1 - -t 1.1476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 176 -a 1 h -t 1.1476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 176 -a 1 r -t 1.148 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 201 -a 1 + -t 1.148 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 201 -a 1 - -t 1.1496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 188 -a 1 h -t 1.1496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 188 -a 1 + -t 1.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 208 -a 1 - -t 1.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 208 -a 1 h -t 1.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 208 -a 1 r -t 1.1516 -s 3 -d 4 -p cbr -e 500 -c 1 -i 179 -a 1 + -t 1.1516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 179 -a 1 r -t 1.1516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 175 -a 1 - -t 1.1516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 179 -a 1 h -t 1.1516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 179 -a 1 r -t 1.15165 -s 3 -d 0 -p ack -e 40 -c 0 -i 191 -a 0 -S 0 -y {16 16} + -t 1.15165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 209 -a 0 -S 0 -f 0 -m 0 -y {24 24} - -t 1.15165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 209 -a 0 -S 0 -y {24 24} h -t 1.15165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 209 -a 0 -S 0 -y {-1 -1} - -t 1.1536 -s 3 -d 4 -p cbr -e 500 -c 1 -i 190 -a 1 h -t 1.1536 -s 3 -d 4 -p cbr -e 500 -c 1 -i 190 -a 1 r -t 1.154 -s 1 -d 3 -p cbr -e 500 -c 1 -i 204 -a 1 + -t 1.154 -s 3 -d 4 -p cbr -e 500 -c 1 -i 204 -a 1 - -t 1.1576 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 189 -a 1 h -t 1.1576 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 189 -a 1 r -t 1.1596 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 178 -a 1 + -t 1.1596 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 178 -a 1 - -t 1.1596 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 178 -a 1 h -t 1.1596 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 178 -a 1 + -t 1.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 210 -a 1 - -t 1.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 210 -a 1 h -t 1.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 210 -a 1 + -t 1.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 211 -a 1 - -t 1.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 211 -a 1 h -t 1.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 211 -a 1 r -t 1.1636 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 174 -a 1 r -t 1.164 -s 1 -d 3 -p cbr -e 500 -c 1 -i 206 -a 1 + -t 1.164 -s 3 -d 4 -p cbr -e 500 -c 1 -i 206 -a 1 r -t 1.1652 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 177 -a 0 -S 0 -y {21 21} + -t 1.1652 -s 5 -d 4 -p ack -e 40 -c 0 -i 212 -a 0 -S 0 -y {21 21} - -t 1.1652 -s 5 -d 4 -p ack -e 40 -c 0 -i 212 -a 0 -S 0 -y {21 21} h -t 1.1652 -s 5 -d 4 -p ack -e 40 -c 0 -i 212 -a 0 -S 0 -y {-1 -1} r -t 1.16526 -s 5 -d 4 -p ack -e 40 -c 0 -i 207 -a 0 -S 0 -y {20 20} + -t 1.16526 -s 4 -d 3 -p ack -e 40 -c 0 -i 207 -a 0 -S 0 -y {20 20} - -t 1.16526 -s 4 -d 3 -p ack -e 40 -c 0 -i 207 -a 0 -S 0 -y {20 20} h -t 1.16526 -s 4 -d 3 -p ack -e 40 -c 0 -i 207 -a 0 -S 0 -y {-1 -1} - -t 1.1656 -s 3 -d 4 -p cbr -e 500 -c 1 -i 192 -a 1 h -t 1.1656 -s 3 -d 4 -p cbr -e 500 -c 1 -i 192 -a 1 r -t 1.1676 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 180 -a 0 -S 0 -y {22 22} + -t 1.1676 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 180 -a 0 -S 0 -y {22 22} - -t 1.1676 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 180 -a 0 -S 0 -y {22 22} h -t 1.1676 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 180 -a 0 -S 0 -y {-1 -1} r -t 1.16765 -s 3 -d 0 -p ack -e 40 -c 0 -i 193 -a 0 -S 0 -y {17 17} + -t 1.16765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 213 -a 0 -S 0 -f 0 -m 0 -y {25 25} - -t 1.16765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 213 -a 0 -S 0 -y {25 25} h -t 1.16765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 213 -a 0 -S 0 -y {-1 -1} r -t 1.168 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 205 -a 1 + -t 1.168 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 205 -a 1 - -t 1.1696 -s 3 -d 4 -p cbr -e 500 -c 1 -i 195 -a 1 h -t 1.1696 -s 3 -d 4 -p cbr -e 500 -c 1 -i 195 -a 1 + -t 1.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 214 -a 1 - -t 1.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 214 -a 1 h -t 1.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 214 -a 1 r -t 1.17158 -s 4 -d 3 -p ack -e 40 -c 0 -i 199 -a 0 -S 0 -y {18 18} + -t 1.17158 -s 3 -d 0 -p ack -e 40 -c 0 -i 199 -a 0 -S 0 -y {18 18} - -t 1.17158 -s 3 -d 0 -p ack -e 40 -c 0 -i 199 -a 0 -S 0 -f 0 -m 1 -y {18 18} h -t 1.17158 -s 3 -d 0 -p ack -e 40 -c 0 -i 199 -a 0 -S 0 -y {-1 -1} r -t 1.1716 -s 3 -d 4 -p cbr -e 500 -c 1 -i 181 -a 1 + -t 1.1716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 181 -a 1 - -t 1.1716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 181 -a 1 h -t 1.1716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 181 -a 1 r -t 1.1716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 176 -a 1 r -t 1.17325 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 209 -a 0 -S 0 -y {24 24} + -t 1.17325 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 209 -a 0 -S 0 -y {24 24} - -t 1.1736 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 194 -a 1 h -t 1.1736 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 194 -a 1 r -t 1.174 -s 1 -d 3 -p cbr -e 500 -c 1 -i 208 -a 1 + -t 1.174 -s 3 -d 4 -p cbr -e 500 -c 1 -i 208 -a 1 r -t 1.1756 -s 4 -d 6 -p cbr -e 500 -c 1 -i 179 -a 1 r -t 1.1796 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 182 -a 0 -S 0 -y {23 23} + -t 1.1796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 182 -a 0 -S 0 -y {23 23} - -t 1.1796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 182 -a 0 -S 0 -y {23 23} h -t 1.1796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 182 -a 0 -S 0 -y {-1 -1} + -t 1.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 215 -a 1 - -t 1.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 215 -a 1 h -t 1.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 215 -a 1 + -t 1.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 216 -a 1 - -t 1.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 216 -a 1 h -t 1.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 216 -a 1 - -t 1.1816 -s 3 -d 4 -p cbr -e 500 -c 1 -i 196 -a 1 h -t 1.1816 -s 3 -d 4 -p cbr -e 500 -c 1 -i 196 -a 1 r -t 1.1836 -s 3 -d 4 -p cbr -e 500 -c 1 -i 184 -a 1 + -t 1.1836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 184 -a 1 - -t 1.1836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 184 -a 1 h -t 1.1836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 184 -a 1 r -t 1.184 -s 1 -d 3 -p cbr -e 500 -c 1 -i 211 -a 1 + -t 1.184 -s 3 -d 4 -p cbr -e 500 -c 1 -i 211 -a 1 r -t 1.18526 -s 5 -d 4 -p ack -e 40 -c 0 -i 212 -a 0 -S 0 -y {21 21} + -t 1.18526 -s 4 -d 3 -p ack -e 40 -c 0 -i 212 -a 0 -S 0 -y {21 21} - -t 1.18526 -s 4 -d 3 -p ack -e 40 -c 0 -i 212 -a 0 -S 0 -y {21 21} h -t 1.18526 -s 4 -d 3 -p ack -e 40 -c 0 -i 212 -a 0 -S 0 -y {-1 -1} - -t 1.1856 -s 3 -d 4 -p cbr -e 500 -c 1 -i 198 -a 1 h -t 1.1856 -s 3 -d 4 -p cbr -e 500 -c 1 -i 198 -a 1 r -t 1.1876 -s 3 -d 4 -p cbr -e 500 -c 1 -i 185 -a 1 + -t 1.1876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 185 -a 1 r -t 1.1876 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 178 -a 1 - -t 1.1876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 185 -a 1 h -t 1.1876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 185 -a 1 r -t 1.188 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 210 -a 1 + -t 1.188 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 210 -a 1 r -t 1.1892 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 180 -a 0 -S 0 -y {22 22} + -t 1.1892 -s 5 -d 4 -p ack -e 40 -c 0 -i 217 -a 0 -S 0 -y {22 22} - -t 1.1892 -s 5 -d 4 -p ack -e 40 -c 0 -i 217 -a 0 -S 0 -y {22 22} h -t 1.1892 -s 5 -d 4 -p ack -e 40 -c 0 -i 217 -a 0 -S 0 -y {-1 -1} r -t 1.18925 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 213 -a 0 -S 0 -y {25 25} + -t 1.18925 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 213 -a 0 -S 0 -y {25 25} - -t 1.1896 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 197 -a 1 h -t 1.1896 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 197 -a 1 + -t 1.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 218 -a 1 - -t 1.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 218 -a 1 h -t 1.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 218 -a 1 r -t 1.19158 -s 4 -d 3 -p ack -e 40 -c 0 -i 203 -a 0 -S 0 -y {19 19} + -t 1.19158 -s 3 -d 0 -p ack -e 40 -c 0 -i 203 -a 0 -S 0 -y {19 19} - -t 1.19158 -s 3 -d 0 -p ack -e 40 -c 0 -i 203 -a 0 -S 0 -f 0 -m 1 -y {19 19} h -t 1.19158 -s 3 -d 0 -p ack -e 40 -c 0 -i 203 -a 0 -S 0 -y {-1 -1} r -t 1.1916 -s 3 -d 4 -p cbr -e 500 -c 1 -i 187 -a 1 + -t 1.1916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 187 -a 1 - -t 1.1916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 187 -a 1 h -t 1.1916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 187 -a 1 r -t 1.19165 -s 3 -d 0 -p ack -e 40 -c 0 -i 199 -a 0 -S 0 -y {18 18} + -t 1.19165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 219 -a 0 -S 0 -f 0 -m 0 -y {26 26} - -t 1.19165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 219 -a 0 -S 0 -y {26 26} h -t 1.19165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 219 -a 0 -S 0 -y {-1 -1} r -t 1.194 -s 1 -d 3 -p cbr -e 500 -c 1 -i 214 -a 1 + -t 1.194 -s 3 -d 4 -p cbr -e 500 -c 1 -i 214 -a 1 r -t 1.1956 -s 4 -d 6 -p cbr -e 500 -c 1 -i 181 -a 1 - -t 1.1976 -s 3 -d 4 -p cbr -e 500 -c 1 -i 200 -a 1 h -t 1.1976 -s 3 -d 4 -p cbr -e 500 -c 1 -i 200 -a 1 r -t 1.1996 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 186 -a 1 + -t 1.1996 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 186 -a 1 - -t 1.1996 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 186 -a 1 h -t 1.1996 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 186 -a 1 + -t 1.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 220 -a 1 - -t 1.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 220 -a 1 h -t 1.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 220 -a 1 + -t 1.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 221 -a 1 - -t 1.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 221 -a 1 h -t 1.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 221 -a 1 r -t 1.2012 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 182 -a 0 -S 0 -y {23 23} + -t 1.2012 -s 5 -d 4 -p ack -e 40 -c 0 -i 222 -a 0 -S 0 -y {23 23} - -t 1.2012 -s 5 -d 4 -p ack -e 40 -c 0 -i 222 -a 0 -S 0 -y {23 23} h -t 1.2012 -s 5 -d 4 -p ack -e 40 -c 0 -i 222 -a 0 -S 0 -y {-1 -1} - -t 1.2016 -s 3 -d 4 -p cbr -e 500 -c 1 -i 202 -a 1 h -t 1.2016 -s 3 -d 4 -p cbr -e 500 -c 1 -i 202 -a 1 r -t 1.2036 -s 3 -d 4 -p cbr -e 500 -c 1 -i 188 -a 1 + -t 1.2036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 188 -a 1 - -t 1.2036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 188 -a 1 h -t 1.2036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 188 -a 1 r -t 1.204 -s 1 -d 3 -p cbr -e 500 -c 1 -i 216 -a 1 + -t 1.204 -s 3 -d 4 -p cbr -e 500 -c 1 -i 216 -a 1 - -t 1.2056 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 201 -a 1 h -t 1.2056 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 201 -a 1 r -t 1.2076 -s 3 -d 4 -p cbr -e 500 -c 1 -i 190 -a 1 + -t 1.2076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 190 -a 1 r -t 1.2076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 184 -a 1 - -t 1.2076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 190 -a 1 h -t 1.2076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 190 -a 1 r -t 1.208 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 215 -a 1 + -t 1.208 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 215 -a 1 r -t 1.20926 -s 5 -d 4 -p ack -e 40 -c 0 -i 217 -a 0 -S 0 -y {22 22} + -t 1.20926 -s 4 -d 3 -p ack -e 40 -c 0 -i 217 -a 0 -S 0 -y {22 22} - -t 1.20926 -s 4 -d 3 -p ack -e 40 -c 0 -i 217 -a 0 -S 0 -y {22 22} h -t 1.20926 -s 4 -d 3 -p ack -e 40 -c 0 -i 217 -a 0 -S 0 -y {-1 -1} + -t 1.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 223 -a 1 - -t 1.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 223 -a 1 h -t 1.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 223 -a 1 r -t 1.2116 -s 4 -d 6 -p cbr -e 500 -c 1 -i 185 -a 1 r -t 1.21165 -s 3 -d 0 -p ack -e 40 -c 0 -i 203 -a 0 -S 0 -y {19 19} + -t 1.21165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 224 -a 0 -S 0 -f 0 -m 0 -y {27 27} - -t 1.21165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 224 -a 0 -S 0 -y {27 27} h -t 1.21165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 224 -a 0 -S 0 -y {-1 -1} r -t 1.21325 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 219 -a 0 -S 0 -y {26 26} + -t 1.21325 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 219 -a 0 -S 0 -y {26 26} - -t 1.2136 -s 3 -d 4 -p cbr -e 500 -c 1 -i 204 -a 1 h -t 1.2136 -s 3 -d 4 -p cbr -e 500 -c 1 -i 204 -a 1 r -t 1.214 -s 1 -d 3 -p cbr -e 500 -c 1 -i 218 -a 1 + -t 1.214 -s 3 -d 4 -p cbr -e 500 -c 1 -i 218 -a 1 r -t 1.21558 -s 4 -d 3 -p ack -e 40 -c 0 -i 207 -a 0 -S 0 -y {20 20} + -t 1.21558 -s 3 -d 0 -p ack -e 40 -c 0 -i 207 -a 0 -S 0 -y {20 20} - -t 1.21558 -s 3 -d 0 -p ack -e 40 -c 0 -i 207 -a 0 -S 0 -f 0 -m 1 -y {20 20} h -t 1.21558 -s 3 -d 0 -p ack -e 40 -c 0 -i 207 -a 0 -S 0 -y {-1 -1} r -t 1.2156 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 189 -a 1 + -t 1.2156 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 189 -a 1 - -t 1.2156 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 189 -a 1 h -t 1.2156 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 189 -a 1 r -t 1.2156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 187 -a 1 - -t 1.2176 -s 3 -d 4 -p cbr -e 500 -c 1 -i 206 -a 1 h -t 1.2176 -s 3 -d 4 -p cbr -e 500 -c 1 -i 206 -a 1 r -t 1.2196 -s 3 -d 4 -p cbr -e 500 -c 1 -i 192 -a 1 + -t 1.2196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 192 -a 1 - -t 1.2196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 192 -a 1 h -t 1.2196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 192 -a 1 + -t 1.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 225 -a 1 - -t 1.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 225 -a 1 h -t 1.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 225 -a 1 + -t 1.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 226 -a 1 - -t 1.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 226 -a 1 h -t 1.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 226 -a 1 r -t 1.22126 -s 5 -d 4 -p ack -e 40 -c 0 -i 222 -a 0 -S 0 -y {23 23} + -t 1.22126 -s 4 -d 3 -p ack -e 40 -c 0 -i 222 -a 0 -S 0 -y {23 23} - -t 1.22126 -s 4 -d 3 -p ack -e 40 -c 0 -i 222 -a 0 -S 0 -y {23 23} h -t 1.22126 -s 4 -d 3 -p ack -e 40 -c 0 -i 222 -a 0 -S 0 -y {-1 -1} - -t 1.2216 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 205 -a 1 h -t 1.2216 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 205 -a 1 r -t 1.2236 -s 3 -d 4 -p cbr -e 500 -c 1 -i 195 -a 1 + -t 1.2236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 195 -a 1 - -t 1.2236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 195 -a 1 h -t 1.2236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 195 -a 1 r -t 1.224 -s 1 -d 3 -p cbr -e 500 -c 1 -i 221 -a 1 + -t 1.224 -s 3 -d 4 -p cbr -e 500 -c 1 -i 221 -a 1 r -t 1.2276 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 186 -a 1 r -t 1.2276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 188 -a 1 r -t 1.228 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 220 -a 1 + -t 1.228 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 220 -a 1 - -t 1.2296 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 209 -a 0 -S 0 -y {24 24} h -t 1.2296 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 209 -a 0 -S 0 -y {-1 -1} + -t 1.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 227 -a 1 - -t 1.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 227 -a 1 h -t 1.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 227 -a 1 r -t 1.2316 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 194 -a 1 + -t 1.2316 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 194 -a 1 - -t 1.2316 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 194 -a 1 h -t 1.2316 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 194 -a 1 r -t 1.2316 -s 4 -d 6 -p cbr -e 500 -c 1 -i 190 -a 1 r -t 1.23325 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 224 -a 0 -S 0 -y {27 27} + -t 1.23325 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 224 -a 0 -S 0 -y {27 27} r -t 1.234 -s 1 -d 3 -p cbr -e 500 -c 1 -i 223 -a 1 + -t 1.234 -s 3 -d 4 -p cbr -e 500 -c 1 -i 223 -a 1 r -t 1.23558 -s 4 -d 3 -p ack -e 40 -c 0 -i 212 -a 0 -S 0 -y {21 21} + -t 1.23558 -s 3 -d 0 -p ack -e 40 -c 0 -i 212 -a 0 -S 0 -y {21 21} - -t 1.23558 -s 3 -d 0 -p ack -e 40 -c 0 -i 212 -a 0 -S 0 -f 0 -m 1 -y {21 21} h -t 1.23558 -s 3 -d 0 -p ack -e 40 -c 0 -i 212 -a 0 -S 0 -y {-1 -1} r -t 1.2356 -s 3 -d 4 -p cbr -e 500 -c 1 -i 196 -a 1 + -t 1.2356 -s 4 -d 6 -p cbr -e 500 -c 1 -i 196 -a 1 - -t 1.2356 -s 4 -d 6 -p cbr -e 500 -c 1 -i 196 -a 1 h -t 1.2356 -s 4 -d 6 -p cbr -e 500 -c 1 -i 196 -a 1 r -t 1.23565 -s 3 -d 0 -p ack -e 40 -c 0 -i 207 -a 0 -S 0 -y {20 20} + -t 1.23565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 228 -a 0 -S 0 -f 0 -m 0 -y {28 28} - -t 1.23565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 228 -a 0 -S 0 -y {28 28} h -t 1.23565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 228 -a 0 -S 0 -y {-1 -1} - -t 1.2376 -s 3 -d 4 -p cbr -e 500 -c 1 -i 208 -a 1 h -t 1.2376 -s 3 -d 4 -p cbr -e 500 -c 1 -i 208 -a 1 r -t 1.2396 -s 3 -d 4 -p cbr -e 500 -c 1 -i 198 -a 1 + -t 1.2396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 198 -a 1 - -t 1.2396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 198 -a 1 h -t 1.2396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 198 -a 1 + -t 1.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 229 -a 1 - -t 1.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 229 -a 1 h -t 1.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 229 -a 1 + -t 1.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 230 -a 1 - -t 1.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 230 -a 1 h -t 1.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 230 -a 1 - -t 1.2416 -s 3 -d 4 -p cbr -e 500 -c 1 -i 211 -a 1 h -t 1.2416 -s 3 -d 4 -p cbr -e 500 -c 1 -i 211 -a 1 r -t 1.2436 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 189 -a 1 r -t 1.2436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 192 -a 1 r -t 1.244 -s 1 -d 3 -p cbr -e 500 -c 1 -i 226 -a 1 + -t 1.244 -s 3 -d 4 -p cbr -e 500 -c 1 -i 226 -a 1 - -t 1.2456 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 210 -a 1 h -t 1.2456 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 210 -a 1 r -t 1.2476 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 197 -a 1 + -t 1.2476 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 197 -a 1 - -t 1.2476 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 197 -a 1 h -t 1.2476 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 197 -a 1 r -t 1.2476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 195 -a 1 r -t 1.248 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 225 -a 1 + -t 1.248 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 225 -a 1 + -t 1.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 231 -a 1 - -t 1.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 231 -a 1 h -t 1.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 231 -a 1 r -t 1.2516 -s 3 -d 4 -p cbr -e 500 -c 1 -i 200 -a 1 + -t 1.2516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 200 -a 1 - -t 1.2516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 200 -a 1 h -t 1.2516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 200 -a 1 - -t 1.2536 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 213 -a 0 -S 0 -y {25 25} h -t 1.2536 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 213 -a 0 -S 0 -y {-1 -1} r -t 1.254 -s 1 -d 3 -p cbr -e 500 -c 1 -i 227 -a 1 + -t 1.254 -s 3 -d 4 -p cbr -e 500 -c 1 -i 227 -a 1 r -t 1.2556 -s 3 -d 4 -p cbr -e 500 -c 1 -i 202 -a 1 + -t 1.2556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 202 -a 1 - -t 1.2556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 202 -a 1 h -t 1.2556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 202 -a 1 r -t 1.25565 -s 3 -d 0 -p ack -e 40 -c 0 -i 212 -a 0 -S 0 -y {21 21} + -t 1.25565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 232 -a 0 -S 0 -f 0 -m 0 -y {29 29} - -t 1.25565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 232 -a 0 -S 0 -y {29 29} h -t 1.25565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 232 -a 0 -S 0 -y {-1 -1} r -t 1.25725 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 228 -a 0 -S 0 -y {28 28} + -t 1.25725 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 228 -a 0 -S 0 -y {28 28} r -t 1.25958 -s 4 -d 3 -p ack -e 40 -c 0 -i 217 -a 0 -S 0 -y {22 22} + -t 1.25958 -s 3 -d 0 -p ack -e 40 -c 0 -i 217 -a 0 -S 0 -y {22 22} - -t 1.25958 -s 3 -d 0 -p ack -e 40 -c 0 -i 217 -a 0 -S 0 -f 0 -m 1 -y {22 22} h -t 1.25958 -s 3 -d 0 -p ack -e 40 -c 0 -i 217 -a 0 -S 0 -y {-1 -1} r -t 1.2596 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 194 -a 1 r -t 1.2596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 196 -a 1 + -t 1.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 233 -a 1 - -t 1.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 233 -a 1 h -t 1.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 233 -a 1 + -t 1.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 234 -a 1 - -t 1.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 234 -a 1 h -t 1.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 234 -a 1 - -t 1.2616 -s 3 -d 4 -p cbr -e 500 -c 1 -i 214 -a 1 h -t 1.2616 -s 3 -d 4 -p cbr -e 500 -c 1 -i 214 -a 1 r -t 1.2636 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 201 -a 1 + -t 1.2636 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 201 -a 1 - -t 1.2636 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 201 -a 1 h -t 1.2636 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 201 -a 1 r -t 1.2636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 198 -a 1 r -t 1.264 -s 1 -d 3 -p cbr -e 500 -c 1 -i 230 -a 1 + -t 1.264 -s 3 -d 4 -p cbr -e 500 -c 1 -i 230 -a 1 - -t 1.2656 -s 3 -d 4 -p cbr -e 500 -c 1 -i 216 -a 1 h -t 1.2656 -s 3 -d 4 -p cbr -e 500 -c 1 -i 216 -a 1 r -t 1.2676 -s 3 -d 4 -p cbr -e 500 -c 1 -i 204 -a 1 + -t 1.2676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 204 -a 1 - -t 1.2676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 204 -a 1 h -t 1.2676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 204 -a 1 r -t 1.268 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 229 -a 1 + -t 1.268 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 229 -a 1 - -t 1.2696 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 215 -a 1 h -t 1.2696 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 215 -a 1 + -t 1.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 235 -a 1 - -t 1.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 235 -a 1 h -t 1.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 235 -a 1 r -t 1.27158 -s 4 -d 3 -p ack -e 40 -c 0 -i 222 -a 0 -S 0 -y {23 23} + -t 1.27158 -s 3 -d 0 -p ack -e 40 -c 0 -i 222 -a 0 -S 0 -y {23 23} - -t 1.27158 -s 3 -d 0 -p ack -e 40 -c 0 -i 222 -a 0 -S 0 -f 0 -m 1 -y {23 23} h -t 1.27158 -s 3 -d 0 -p ack -e 40 -c 0 -i 222 -a 0 -S 0 -y {-1 -1} r -t 1.2716 -s 3 -d 4 -p cbr -e 500 -c 1 -i 206 -a 1 + -t 1.2716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 206 -a 1 - -t 1.2716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 206 -a 1 h -t 1.2716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 206 -a 1 r -t 1.274 -s 1 -d 3 -p cbr -e 500 -c 1 -i 231 -a 1 + -t 1.274 -s 3 -d 4 -p cbr -e 500 -c 1 -i 231 -a 1 r -t 1.2756 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 197 -a 1 r -t 1.2756 -s 4 -d 6 -p cbr -e 500 -c 1 -i 200 -a 1 r -t 1.27725 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 232 -a 0 -S 0 -y {29 29} + -t 1.27725 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 232 -a 0 -S 0 -y {29 29} - -t 1.2776 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 219 -a 0 -S 0 -y {26 26} h -t 1.2776 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 219 -a 0 -S 0 -y {-1 -1} r -t 1.2796 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 205 -a 1 + -t 1.2796 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 205 -a 1 - -t 1.2796 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 205 -a 1 h -t 1.2796 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 205 -a 1 r -t 1.2796 -s 4 -d 6 -p cbr -e 500 -c 1 -i 202 -a 1 r -t 1.27965 -s 3 -d 0 -p ack -e 40 -c 0 -i 217 -a 0 -S 0 -y {22 22} + -t 1.27965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 236 -a 0 -S 0 -f 0 -m 0 -y {30 30} - -t 1.27965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 236 -a 0 -S 0 -y {30 30} h -t 1.27965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 236 -a 0 -S 0 -y {-1 -1} + -t 1.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 237 -a 1 - -t 1.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 237 -a 1 h -t 1.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 237 -a 1 + -t 1.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 238 -a 1 - -t 1.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 238 -a 1 h -t 1.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 238 -a 1 r -t 1.284 -s 1 -d 3 -p cbr -e 500 -c 1 -i 234 -a 1 + -t 1.284 -s 3 -d 4 -p cbr -e 500 -c 1 -i 234 -a 1 - -t 1.2856 -s 3 -d 4 -p cbr -e 500 -c 1 -i 218 -a 1 h -t 1.2856 -s 3 -d 4 -p cbr -e 500 -c 1 -i 218 -a 1 r -t 1.2876 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 209 -a 0 -S 0 -y {24 24} + -t 1.2876 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 209 -a 0 -S 0 -y {24 24} - -t 1.2876 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 209 -a 0 -S 0 -y {24 24} h -t 1.2876 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 209 -a 0 -S 0 -y {-1 -1} r -t 1.288 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 233 -a 1 + -t 1.288 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 233 -a 1 - -t 1.2896 -s 3 -d 4 -p cbr -e 500 -c 1 -i 221 -a 1 h -t 1.2896 -s 3 -d 4 -p cbr -e 500 -c 1 -i 221 -a 1 + -t 1.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 239 -a 1 - -t 1.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 239 -a 1 h -t 1.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 239 -a 1 r -t 1.2916 -s 3 -d 4 -p cbr -e 500 -c 1 -i 208 -a 1 + -t 1.2916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 208 -a 1 - -t 1.2916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 208 -a 1 h -t 1.2916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 208 -a 1 r -t 1.2916 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 201 -a 1 r -t 1.2916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 204 -a 1 r -t 1.29165 -s 3 -d 0 -p ack -e 40 -c 0 -i 222 -a 0 -S 0 -y {23 23} + -t 1.29165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 240 -a 0 -S 0 -f 0 -m 0 -y {31 31} - -t 1.29165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 240 -a 0 -S 0 -y {31 31} h -t 1.29165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 240 -a 0 -S 0 -y {-1 -1} - -t 1.2936 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 220 -a 1 h -t 1.2936 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 220 -a 1 r -t 1.294 -s 1 -d 3 -p cbr -e 500 -c 1 -i 235 -a 1 + -t 1.294 -s 3 -d 4 -p cbr -e 500 -c 1 -i 235 -a 1 r -t 1.2956 -s 3 -d 4 -p cbr -e 500 -c 1 -i 211 -a 1 + -t 1.2956 -s 4 -d 6 -p cbr -e 500 -c 1 -i 211 -a 1 r -t 1.2956 -s 4 -d 6 -p cbr -e 500 -c 1 -i 206 -a 1 - -t 1.2956 -s 4 -d 6 -p cbr -e 500 -c 1 -i 211 -a 1 h -t 1.2956 -s 4 -d 6 -p cbr -e 500 -c 1 -i 211 -a 1 + -t 1.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 241 -a 1 - -t 1.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 241 -a 1 h -t 1.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 241 -a 1 + -t 1.3 -s 1 -d 3 -p cbr -e 500 -c 1 -i 242 -a 1 - -t 1.3 -s 1 -d 3 -p cbr -e 500 -c 1 -i 242 -a 1 h -t 1.3 -s 1 -d 3 -p cbr -e 500 -c 1 -i 242 -a 1 r -t 1.30125 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 236 -a 0 -S 0 -y {30 30} + -t 1.30125 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 236 -a 0 -S 0 -y {30 30} - -t 1.3016 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 224 -a 0 -S 0 -y {27 27} h -t 1.3016 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 224 -a 0 -S 0 -y {-1 -1} r -t 1.3036 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 210 -a 1 + -t 1.3036 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 210 -a 1 - -t 1.3036 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 210 -a 1 h -t 1.3036 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 210 -a 1 r -t 1.304 -s 1 -d 3 -p cbr -e 500 -c 1 -i 238 -a 1 + -t 1.304 -s 3 -d 4 -p cbr -e 500 -c 1 -i 238 -a 1 r -t 1.3076 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 205 -a 1 r -t 1.308 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 237 -a 1 + -t 1.308 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 237 -a 1 d -t 1.308 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 237 -a 1 r -t 1.3092 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 209 -a 0 -S 0 -y {24 24} + -t 1.3092 -s 5 -d 4 -p ack -e 40 -c 0 -i 243 -a 0 -S 0 -y {24 24} - -t 1.3092 -s 5 -d 4 -p ack -e 40 -c 0 -i 243 -a 0 -S 0 -y {24 24} h -t 1.3092 -s 5 -d 4 -p ack -e 40 -c 0 -i 243 -a 0 -S 0 -y {-1 -1} - -t 1.3096 -s 3 -d 4 -p cbr -e 500 -c 1 -i 223 -a 1 h -t 1.3096 -s 3 -d 4 -p cbr -e 500 -c 1 -i 223 -a 1 + -t 1.31 -s 1 -d 3 -p cbr -e 500 -c 1 -i 244 -a 1 - -t 1.31 -s 1 -d 3 -p cbr -e 500 -c 1 -i 244 -a 1 h -t 1.31 -s 1 -d 3 -p cbr -e 500 -c 1 -i 244 -a 1 r -t 1.3116 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 213 -a 0 -S 0 -y {25 25} + -t 1.3116 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 213 -a 0 -S 0 -y {25 25} - -t 1.3116 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 213 -a 0 -S 0 -y {25 25} h -t 1.3116 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 213 -a 0 -S 0 -y {-1 -1} r -t 1.31325 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 240 -a 0 -S 0 -y {31 31} + -t 1.31325 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 240 -a 0 -S 0 -y {31 31} - -t 1.3136 -s 3 -d 4 -p cbr -e 500 -c 1 -i 226 -a 1 h -t 1.3136 -s 3 -d 4 -p cbr -e 500 -c 1 -i 226 -a 1 r -t 1.314 -s 1 -d 3 -p cbr -e 500 -c 1 -i 239 -a 1 + -t 1.314 -s 3 -d 4 -p cbr -e 500 -c 1 -i 239 -a 1 r -t 1.3156 -s 3 -d 4 -p cbr -e 500 -c 1 -i 214 -a 1 + -t 1.3156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 214 -a 1 - -t 1.3156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 214 -a 1 h -t 1.3156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 214 -a 1 r -t 1.3156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 208 -a 1 - -t 1.3176 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 225 -a 1 h -t 1.3176 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 225 -a 1 r -t 1.3196 -s 3 -d 4 -p cbr -e 500 -c 1 -i 216 -a 1 + -t 1.3196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 216 -a 1 r -t 1.3196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 211 -a 1 - -t 1.3196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 216 -a 1 h -t 1.3196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 216 -a 1 + -t 1.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 245 -a 1 - -t 1.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 245 -a 1 h -t 1.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 245 -a 1 + -t 1.32 -s 1 -d 3 -p cbr -e 500 -c 1 -i 246 -a 1 - -t 1.32 -s 1 -d 3 -p cbr -e 500 -c 1 -i 246 -a 1 h -t 1.32 -s 1 -d 3 -p cbr -e 500 -c 1 -i 246 -a 1 r -t 1.324 -s 1 -d 3 -p cbr -e 500 -c 1 -i 242 -a 1 + -t 1.324 -s 3 -d 4 -p cbr -e 500 -c 1 -i 242 -a 1 - -t 1.3256 -s 3 -d 4 -p cbr -e 500 -c 1 -i 227 -a 1 h -t 1.3256 -s 3 -d 4 -p cbr -e 500 -c 1 -i 227 -a 1 r -t 1.3276 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 215 -a 1 + -t 1.3276 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 215 -a 1 - -t 1.3276 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 215 -a 1 h -t 1.3276 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 215 -a 1 r -t 1.328 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 241 -a 1 + -t 1.328 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 241 -a 1 r -t 1.32926 -s 5 -d 4 -p ack -e 40 -c 0 -i 243 -a 0 -S 0 -y {24 24} + -t 1.32926 -s 4 -d 3 -p ack -e 40 -c 0 -i 243 -a 0 -S 0 -y {24 24} - -t 1.32926 -s 4 -d 3 -p ack -e 40 -c 0 -i 243 -a 0 -S 0 -y {24 24} h -t 1.32926 -s 4 -d 3 -p ack -e 40 -c 0 -i 243 -a 0 -S 0 -y {-1 -1} - -t 1.3296 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 228 -a 0 -S 0 -y {28 28} h -t 1.3296 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 228 -a 0 -S 0 -y {-1 -1} + -t 1.33 -s 1 -d 3 -p cbr -e 500 -c 1 -i 247 -a 1 - -t 1.33 -s 1 -d 3 -p cbr -e 500 -c 1 -i 247 -a 1 h -t 1.33 -s 1 -d 3 -p cbr -e 500 -c 1 -i 247 -a 1 r -t 1.3316 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 210 -a 1 r -t 1.3332 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 213 -a 0 -S 0 -y {25 25} + -t 1.3332 -s 5 -d 4 -p ack -e 40 -c 0 -i 248 -a 0 -S 0 -y {25 25} - -t 1.3332 -s 5 -d 4 -p ack -e 40 -c 0 -i 248 -a 0 -S 0 -y {25 25} h -t 1.3332 -s 5 -d 4 -p ack -e 40 -c 0 -i 248 -a 0 -S 0 -y {-1 -1} r -t 1.334 -s 1 -d 3 -p cbr -e 500 -c 1 -i 244 -a 1 + -t 1.334 -s 3 -d 4 -p cbr -e 500 -c 1 -i 244 -a 1 r -t 1.3356 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 219 -a 0 -S 0 -y {26 26} + -t 1.3356 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 219 -a 0 -S 0 -y {26 26} - -t 1.3356 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 219 -a 0 -S 0 -y {26 26} h -t 1.3356 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 219 -a 0 -S 0 -y {-1 -1} - -t 1.3376 -s 3 -d 4 -p cbr -e 500 -c 1 -i 230 -a 1 h -t 1.3376 -s 3 -d 4 -p cbr -e 500 -c 1 -i 230 -a 1 r -t 1.3396 -s 3 -d 4 -p cbr -e 500 -c 1 -i 218 -a 1 + -t 1.3396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 218 -a 1 - -t 1.3396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 218 -a 1 h -t 1.3396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 218 -a 1 r -t 1.3396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 214 -a 1 + -t 1.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 249 -a 1 - -t 1.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 249 -a 1 h -t 1.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 249 -a 1 + -t 1.34 -s 1 -d 3 -p cbr -e 500 -c 1 -i 250 -a 1 - -t 1.34 -s 1 -d 3 -p cbr -e 500 -c 1 -i 250 -a 1 h -t 1.34 -s 1 -d 3 -p cbr -e 500 -c 1 -i 250 -a 1 - -t 1.3416 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 229 -a 1 h -t 1.3416 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 229 -a 1 r -t 1.3436 -s 3 -d 4 -p cbr -e 500 -c 1 -i 221 -a 1 + -t 1.3436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 221 -a 1 r -t 1.3436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 216 -a 1 - -t 1.3436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 221 -a 1 h -t 1.3436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 221 -a 1 r -t 1.344 -s 1 -d 3 -p cbr -e 500 -c 1 -i 246 -a 1 + -t 1.344 -s 3 -d 4 -p cbr -e 500 -c 1 -i 246 -a 1 r -t 1.348 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 245 -a 1 + -t 1.348 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 245 -a 1 - -t 1.3496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 231 -a 1 h -t 1.3496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 231 -a 1 + -t 1.35 -s 1 -d 3 -p cbr -e 500 -c 1 -i 251 -a 1 - -t 1.35 -s 1 -d 3 -p cbr -e 500 -c 1 -i 251 -a 1 h -t 1.35 -s 1 -d 3 -p cbr -e 500 -c 1 -i 251 -a 1 r -t 1.3516 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 220 -a 1 + -t 1.3516 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 220 -a 1 - -t 1.3516 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 220 -a 1 h -t 1.3516 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 220 -a 1 r -t 1.35326 -s 5 -d 4 -p ack -e 40 -c 0 -i 248 -a 0 -S 0 -y {25 25} + -t 1.35326 -s 4 -d 3 -p ack -e 40 -c 0 -i 248 -a 0 -S 0 -y {25 25} - -t 1.35326 -s 4 -d 3 -p ack -e 40 -c 0 -i 248 -a 0 -S 0 -y {25 25} h -t 1.35326 -s 4 -d 3 -p ack -e 40 -c 0 -i 248 -a 0 -S 0 -y {-1 -1} - -t 1.3536 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 232 -a 0 -S 0 -y {29 29} h -t 1.3536 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 232 -a 0 -S 0 -y {-1 -1} r -t 1.354 -s 1 -d 3 -p cbr -e 500 -c 1 -i 247 -a 1 + -t 1.354 -s 3 -d 4 -p cbr -e 500 -c 1 -i 247 -a 1 r -t 1.3556 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 215 -a 1 r -t 1.3572 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 219 -a 0 -S 0 -y {26 26} + -t 1.3572 -s 5 -d 4 -p ack -e 40 -c 0 -i 252 -a 0 -S 0 -y {26 26} - -t 1.3572 -s 5 -d 4 -p ack -e 40 -c 0 -i 252 -a 0 -S 0 -y {26 26} h -t 1.3572 -s 5 -d 4 -p ack -e 40 -c 0 -i 252 -a 0 -S 0 -y {-1 -1} r -t 1.3596 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 224 -a 0 -S 0 -y {27 27} + -t 1.3596 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 224 -a 0 -S 0 -y {27 27} - -t 1.3596 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 224 -a 0 -S 0 -y {27 27} h -t 1.3596 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 224 -a 0 -S 0 -y {-1 -1} + -t 1.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 253 -a 1 - -t 1.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 253 -a 1 h -t 1.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 253 -a 1 + -t 1.36 -s 1 -d 3 -p cbr -e 500 -c 1 -i 254 -a 1 - -t 1.36 -s 1 -d 3 -p cbr -e 500 -c 1 -i 254 -a 1 h -t 1.36 -s 1 -d 3 -p cbr -e 500 -c 1 -i 254 -a 1 - -t 1.3616 -s 3 -d 4 -p cbr -e 500 -c 1 -i 234 -a 1 h -t 1.3616 -s 3 -d 4 -p cbr -e 500 -c 1 -i 234 -a 1 r -t 1.3636 -s 3 -d 4 -p cbr -e 500 -c 1 -i 223 -a 1 + -t 1.3636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 223 -a 1 - -t 1.3636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 223 -a 1 h -t 1.3636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 223 -a 1 r -t 1.3636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 218 -a 1 r -t 1.364 -s 1 -d 3 -p cbr -e 500 -c 1 -i 250 -a 1 + -t 1.364 -s 3 -d 4 -p cbr -e 500 -c 1 -i 250 -a 1 - -t 1.3656 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 233 -a 1 h -t 1.3656 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 233 -a 1 r -t 1.3676 -s 3 -d 4 -p cbr -e 500 -c 1 -i 226 -a 1 + -t 1.3676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 226 -a 1 r -t 1.3676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 221 -a 1 - -t 1.3676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 226 -a 1 h -t 1.3676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 226 -a 1 r -t 1.368 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 249 -a 1 + -t 1.368 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 249 -a 1 + -t 1.37 -s 1 -d 3 -p cbr -e 500 -c 1 -i 255 -a 1 - -t 1.37 -s 1 -d 3 -p cbr -e 500 -c 1 -i 255 -a 1 h -t 1.37 -s 1 -d 3 -p cbr -e 500 -c 1 -i 255 -a 1 - -t 1.3736 -s 3 -d 4 -p cbr -e 500 -c 1 -i 235 -a 1 h -t 1.3736 -s 3 -d 4 -p cbr -e 500 -c 1 -i 235 -a 1 r -t 1.374 -s 1 -d 3 -p cbr -e 500 -c 1 -i 251 -a 1 + -t 1.374 -s 3 -d 4 -p cbr -e 500 -c 1 -i 251 -a 1 r -t 1.3756 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 225 -a 1 + -t 1.3756 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 225 -a 1 - -t 1.3756 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 225 -a 1 h -t 1.3756 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 225 -a 1 r -t 1.37726 -s 5 -d 4 -p ack -e 40 -c 0 -i 252 -a 0 -S 0 -y {26 26} + -t 1.37726 -s 4 -d 3 -p ack -e 40 -c 0 -i 252 -a 0 -S 0 -y {26 26} - -t 1.37726 -s 4 -d 3 -p ack -e 40 -c 0 -i 252 -a 0 -S 0 -y {26 26} h -t 1.37726 -s 4 -d 3 -p ack -e 40 -c 0 -i 252 -a 0 -S 0 -y {-1 -1} - -t 1.3776 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 236 -a 0 -S 0 -y {30 30} h -t 1.3776 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 236 -a 0 -S 0 -y {-1 -1} r -t 1.37958 -s 4 -d 3 -p ack -e 40 -c 0 -i 243 -a 0 -S 0 -y {24 24} + -t 1.37958 -s 3 -d 0 -p ack -e 40 -c 0 -i 243 -a 0 -S 0 -y {24 24} - -t 1.37958 -s 3 -d 0 -p ack -e 40 -c 0 -i 243 -a 0 -S 0 -f 0 -m 1 -y {24 24} h -t 1.37958 -s 3 -d 0 -p ack -e 40 -c 0 -i 243 -a 0 -S 0 -y {-1 -1} r -t 1.3796 -s 3 -d 4 -p cbr -e 500 -c 1 -i 227 -a 1 + -t 1.3796 -s 4 -d 6 -p cbr -e 500 -c 1 -i 227 -a 1 - -t 1.3796 -s 4 -d 6 -p cbr -e 500 -c 1 -i 227 -a 1 h -t 1.3796 -s 4 -d 6 -p cbr -e 500 -c 1 -i 227 -a 1 r -t 1.3796 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 220 -a 1 + -t 1.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 256 -a 1 - -t 1.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 256 -a 1 h -t 1.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 256 -a 1 + -t 1.38 -s 1 -d 3 -p cbr -e 500 -c 1 -i 257 -a 1 - -t 1.38 -s 1 -d 3 -p cbr -e 500 -c 1 -i 257 -a 1 h -t 1.38 -s 1 -d 3 -p cbr -e 500 -c 1 -i 257 -a 1 r -t 1.3812 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 224 -a 0 -S 0 -y {27 27} + -t 1.3812 -s 5 -d 4 -p ack -e 40 -c 0 -i 258 -a 0 -S 0 -y {27 27} - -t 1.3812 -s 5 -d 4 -p ack -e 40 -c 0 -i 258 -a 0 -S 0 -y {27 27} h -t 1.3812 -s 5 -d 4 -p ack -e 40 -c 0 -i 258 -a 0 -S 0 -y {-1 -1} r -t 1.384 -s 1 -d 3 -p cbr -e 500 -c 1 -i 254 -a 1 + -t 1.384 -s 3 -d 4 -p cbr -e 500 -c 1 -i 254 -a 1 - -t 1.3856 -s 3 -d 4 -p cbr -e 500 -c 1 -i 238 -a 1 h -t 1.3856 -s 3 -d 4 -p cbr -e 500 -c 1 -i 238 -a 1 r -t 1.3876 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 228 -a 0 -S 0 -y {28 28} + -t 1.3876 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 228 -a 0 -S 0 -y {28 28} - -t 1.3876 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 228 -a 0 -S 0 -y {28 28} h -t 1.3876 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 228 -a 0 -S 0 -y {-1 -1} r -t 1.3876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 223 -a 1 r -t 1.388 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 253 -a 1 + -t 1.388 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 253 -a 1 - -t 1.3896 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 240 -a 0 -S 0 -y {31 31} h -t 1.3896 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 240 -a 0 -S 0 -y {-1 -1} + -t 1.39 -s 1 -d 3 -p cbr -e 500 -c 1 -i 259 -a 1 - -t 1.39 -s 1 -d 3 -p cbr -e 500 -c 1 -i 259 -a 1 h -t 1.39 -s 1 -d 3 -p cbr -e 500 -c 1 -i 259 -a 1 r -t 1.3916 -s 3 -d 4 -p cbr -e 500 -c 1 -i 230 -a 1 + -t 1.3916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 230 -a 1 - -t 1.3916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 230 -a 1 h -t 1.3916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 230 -a 1 r -t 1.3916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 226 -a 1 r -t 1.394 -s 1 -d 3 -p cbr -e 500 -c 1 -i 255 -a 1 + -t 1.394 -s 3 -d 4 -p cbr -e 500 -c 1 -i 255 -a 1 - -t 1.3976 -s 3 -d 4 -p cbr -e 500 -c 1 -i 239 -a 1 h -t 1.3976 -s 3 -d 4 -p cbr -e 500 -c 1 -i 239 -a 1 r -t 1.3996 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 229 -a 1 + -t 1.3996 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 229 -a 1 - -t 1.3996 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 229 -a 1 h -t 1.3996 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 229 -a 1 r -t 1.39965 -s 3 -d 0 -p ack -e 40 -c 0 -i 243 -a 0 -S 0 -y {24 24} + -t 1.39965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 260 -a 0 -S 0 -f 0 -m 0 -y {32 32} - -t 1.39965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 260 -a 0 -S 0 -y {32 32} h -t 1.39965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 260 -a 0 -S 0 -y {-1 -1} + -t 1.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 261 -a 1 - -t 1.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 261 -a 1 h -t 1.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 261 -a 1 + -t 1.4 -s 1 -d 3 -p cbr -e 500 -c 1 -i 262 -a 1 - -t 1.4 -s 1 -d 3 -p cbr -e 500 -c 1 -i 262 -a 1 h -t 1.4 -s 1 -d 3 -p cbr -e 500 -c 1 -i 262 -a 1 r -t 1.40126 -s 5 -d 4 -p ack -e 40 -c 0 -i 258 -a 0 -S 0 -y {27 27} + -t 1.40126 -s 4 -d 3 -p ack -e 40 -c 0 -i 258 -a 0 -S 0 -y {27 27} - -t 1.40126 -s 4 -d 3 -p ack -e 40 -c 0 -i 258 -a 0 -S 0 -y {27 27} h -t 1.40126 -s 4 -d 3 -p ack -e 40 -c 0 -i 258 -a 0 -S 0 -y {-1 -1} - -t 1.4016 -s 3 -d 4 -p cbr -e 500 -c 1 -i 242 -a 1 h -t 1.4016 -s 3 -d 4 -p cbr -e 500 -c 1 -i 242 -a 1 r -t 1.40358 -s 4 -d 3 -p ack -e 40 -c 0 -i 248 -a 0 -S 0 -y {25 25} + -t 1.40358 -s 3 -d 0 -p ack -e 40 -c 0 -i 248 -a 0 -S 0 -y {25 25} - -t 1.40358 -s 3 -d 0 -p ack -e 40 -c 0 -i 248 -a 0 -S 0 -f 0 -m 1 -y {25 25} h -t 1.40358 -s 3 -d 0 -p ack -e 40 -c 0 -i 248 -a 0 -S 0 -y {-1 -1} r -t 1.4036 -s 3 -d 4 -p cbr -e 500 -c 1 -i 231 -a 1 + -t 1.4036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 231 -a 1 - -t 1.4036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 231 -a 1 h -t 1.4036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 231 -a 1 r -t 1.4036 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 225 -a 1 r -t 1.4036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 227 -a 1 r -t 1.404 -s 1 -d 3 -p cbr -e 500 -c 1 -i 257 -a 1 + -t 1.404 -s 3 -d 4 -p cbr -e 500 -c 1 -i 257 -a 1 - -t 1.4056 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 241 -a 1 h -t 1.4056 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 241 -a 1 r -t 1.408 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 256 -a 1 + -t 1.408 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 256 -a 1 r -t 1.4092 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 228 -a 0 -S 0 -y {28 28} + -t 1.4092 -s 5 -d 4 -p ack -e 40 -c 0 -i 263 -a 0 -S 0 -y {28 28} - -t 1.4092 -s 5 -d 4 -p ack -e 40 -c 0 -i 263 -a 0 -S 0 -y {28 28} h -t 1.4092 -s 5 -d 4 -p ack -e 40 -c 0 -i 263 -a 0 -S 0 -y {-1 -1} + -t 1.41 -s 1 -d 3 -p cbr -e 500 -c 1 -i 264 -a 1 - -t 1.41 -s 1 -d 3 -p cbr -e 500 -c 1 -i 264 -a 1 h -t 1.41 -s 1 -d 3 -p cbr -e 500 -c 1 -i 264 -a 1 r -t 1.4116 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 232 -a 0 -S 0 -y {29 29} + -t 1.4116 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 232 -a 0 -S 0 -y {29 29} - -t 1.4116 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 232 -a 0 -S 0 -y {29 29} h -t 1.4116 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 232 -a 0 -S 0 -y {-1 -1} - -t 1.4136 -s 3 -d 4 -p cbr -e 500 -c 1 -i 244 -a 1 h -t 1.4136 -s 3 -d 4 -p cbr -e 500 -c 1 -i 244 -a 1 r -t 1.414 -s 1 -d 3 -p cbr -e 500 -c 1 -i 259 -a 1 + -t 1.414 -s 3 -d 4 -p cbr -e 500 -c 1 -i 259 -a 1 r -t 1.4156 -s 3 -d 4 -p cbr -e 500 -c 1 -i 234 -a 1 + -t 1.4156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 234 -a 1 - -t 1.4156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 234 -a 1 h -t 1.4156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 234 -a 1 r -t 1.4156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 230 -a 1 - -t 1.4176 -s 3 -d 4 -p cbr -e 500 -c 1 -i 246 -a 1 h -t 1.4176 -s 3 -d 4 -p cbr -e 500 -c 1 -i 246 -a 1 + -t 1.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 265 -a 1 - -t 1.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 265 -a 1 h -t 1.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 265 -a 1 + -t 1.42 -s 1 -d 3 -p cbr -e 500 -c 1 -i 266 -a 1 - -t 1.42 -s 1 -d 3 -p cbr -e 500 -c 1 -i 266 -a 1 h -t 1.42 -s 1 -d 3 -p cbr -e 500 -c 1 -i 266 -a 1 r -t 1.42125 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 260 -a 0 -S 0 -y {32 32} + -t 1.42125 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 260 -a 0 -S 0 -y {32 32} - -t 1.4216 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 245 -a 1 h -t 1.4216 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 245 -a 1 r -t 1.4236 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 233 -a 1 + -t 1.4236 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 233 -a 1 - -t 1.4236 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 233 -a 1 h -t 1.4236 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 233 -a 1 r -t 1.42365 -s 3 -d 0 -p ack -e 40 -c 0 -i 248 -a 0 -S 0 -y {25 25} + -t 1.42365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 267 -a 0 -S 0 -f 0 -m 0 -y {33 33} - -t 1.42365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 267 -a 0 -S 0 -y {33 33} h -t 1.42365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 267 -a 0 -S 0 -y {-1 -1} r -t 1.424 -s 1 -d 3 -p cbr -e 500 -c 1 -i 262 -a 1 + -t 1.424 -s 3 -d 4 -p cbr -e 500 -c 1 -i 262 -a 1 r -t 1.42758 -s 4 -d 3 -p ack -e 40 -c 0 -i 252 -a 0 -S 0 -y {26 26} + -t 1.42758 -s 3 -d 0 -p ack -e 40 -c 0 -i 252 -a 0 -S 0 -y {26 26} - -t 1.42758 -s 3 -d 0 -p ack -e 40 -c 0 -i 252 -a 0 -S 0 -f 0 -m 1 -y {26 26} h -t 1.42758 -s 3 -d 0 -p ack -e 40 -c 0 -i 252 -a 0 -S 0 -y {-1 -1} r -t 1.4276 -s 3 -d 4 -p cbr -e 500 -c 1 -i 235 -a 1 + -t 1.4276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 235 -a 1 - -t 1.4276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 235 -a 1 h -t 1.4276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 235 -a 1 r -t 1.4276 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 229 -a 1 r -t 1.4276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 231 -a 1 r -t 1.428 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 261 -a 1 + -t 1.428 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 261 -a 1 r -t 1.42926 -s 5 -d 4 -p ack -e 40 -c 0 -i 263 -a 0 -S 0 -y {28 28} + -t 1.42926 -s 4 -d 3 -p ack -e 40 -c 0 -i 263 -a 0 -S 0 -y {28 28} - -t 1.42926 -s 4 -d 3 -p ack -e 40 -c 0 -i 263 -a 0 -S 0 -y {28 28} h -t 1.42926 -s 4 -d 3 -p ack -e 40 -c 0 -i 263 -a 0 -S 0 -y {-1 -1} - -t 1.4296 -s 3 -d 4 -p cbr -e 500 -c 1 -i 247 -a 1 h -t 1.4296 -s 3 -d 4 -p cbr -e 500 -c 1 -i 247 -a 1 + -t 1.43 -s 1 -d 3 -p cbr -e 500 -c 1 -i 268 -a 1 - -t 1.43 -s 1 -d 3 -p cbr -e 500 -c 1 -i 268 -a 1 h -t 1.43 -s 1 -d 3 -p cbr -e 500 -c 1 -i 268 -a 1 r -t 1.4332 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 232 -a 0 -S 0 -y {29 29} + -t 1.4332 -s 5 -d 4 -p ack -e 40 -c 0 -i 269 -a 0 -S 0 -y {29 29} - -t 1.4332 -s 5 -d 4 -p ack -e 40 -c 0 -i 269 -a 0 -S 0 -y {29 29} h -t 1.4332 -s 5 -d 4 -p ack -e 40 -c 0 -i 269 -a 0 -S 0 -y {-1 -1} - -t 1.4336 -s 3 -d 4 -p cbr -e 500 -c 1 -i 250 -a 1 h -t 1.4336 -s 3 -d 4 -p cbr -e 500 -c 1 -i 250 -a 1 r -t 1.434 -s 1 -d 3 -p cbr -e 500 -c 1 -i 264 -a 1 + -t 1.434 -s 3 -d 4 -p cbr -e 500 -c 1 -i 264 -a 1 r -t 1.4356 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 236 -a 0 -S 0 -y {30 30} + -t 1.4356 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 236 -a 0 -S 0 -y {30 30} - -t 1.4356 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 236 -a 0 -S 0 -y {30 30} h -t 1.4356 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 236 -a 0 -S 0 -y {-1 -1} - -t 1.4376 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 249 -a 1 h -t 1.4376 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 249 -a 1 r -t 1.4396 -s 3 -d 4 -p cbr -e 500 -c 1 -i 238 -a 1 + -t 1.4396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 238 -a 1 - -t 1.4396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 238 -a 1 h -t 1.4396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 238 -a 1 r -t 1.4396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 234 -a 1 + -t 1.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 270 -a 1 - -t 1.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 270 -a 1 h -t 1.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 270 -a 1 + -t 1.44 -s 1 -d 3 -p cbr -e 500 -c 1 -i 271 -a 1 - -t 1.44 -s 1 -d 3 -p cbr -e 500 -c 1 -i 271 -a 1 h -t 1.44 -s 1 -d 3 -p cbr -e 500 -c 1 -i 271 -a 1 r -t 1.444 -s 1 -d 3 -p cbr -e 500 -c 1 -i 266 -a 1 + -t 1.444 -s 3 -d 4 -p cbr -e 500 -c 1 -i 266 -a 1 r -t 1.44525 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 267 -a 0 -S 0 -y {33 33} + -t 1.44525 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 267 -a 0 -S 0 -y {33 33} - -t 1.4456 -s 3 -d 4 -p cbr -e 500 -c 1 -i 251 -a 1 h -t 1.4456 -s 3 -d 4 -p cbr -e 500 -c 1 -i 251 -a 1 r -t 1.4476 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 240 -a 0 -S 0 -y {31 31} + -t 1.4476 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 240 -a 0 -S 0 -y {31 31} - -t 1.4476 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 240 -a 0 -S 0 -y {31 31} h -t 1.4476 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 240 -a 0 -S 0 -y {-1 -1} r -t 1.44765 -s 3 -d 0 -p ack -e 40 -c 0 -i 252 -a 0 -S 0 -y {26 26} + -t 1.44765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 272 -a 0 -S 0 -f 0 -m 0 -y {34 34} - -t 1.44765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 272 -a 0 -S 0 -y {34 34} h -t 1.44765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 272 -a 0 -S 0 -y {-1 -1} r -t 1.448 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 265 -a 1 + -t 1.448 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 265 -a 1 - -t 1.4496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 254 -a 1 h -t 1.4496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 254 -a 1 + -t 1.45 -s 1 -d 3 -p cbr -e 500 -c 1 -i 273 -a 1 - -t 1.45 -s 1 -d 3 -p cbr -e 500 -c 1 -i 273 -a 1 h -t 1.45 -s 1 -d 3 -p cbr -e 500 -c 1 -i 273 -a 1 r -t 1.45158 -s 4 -d 3 -p ack -e 40 -c 0 -i 258 -a 0 -S 0 -y {27 27} + -t 1.45158 -s 3 -d 0 -p ack -e 40 -c 0 -i 258 -a 0 -S 0 -y {27 27} - -t 1.45158 -s 3 -d 0 -p ack -e 40 -c 0 -i 258 -a 0 -S 0 -f 0 -m 1 -y {27 27} h -t 1.45158 -s 3 -d 0 -p ack -e 40 -c 0 -i 258 -a 0 -S 0 -y {-1 -1} r -t 1.4516 -s 3 -d 4 -p cbr -e 500 -c 1 -i 239 -a 1 + -t 1.4516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 239 -a 1 - -t 1.4516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 239 -a 1 h -t 1.4516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 239 -a 1 r -t 1.4516 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 233 -a 1 r -t 1.4516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 235 -a 1 r -t 1.45326 -s 5 -d 4 -p ack -e 40 -c 0 -i 269 -a 0 -S 0 -y {29 29} + -t 1.45326 -s 4 -d 3 -p ack -e 40 -c 0 -i 269 -a 0 -S 0 -y {29 29} - -t 1.45326 -s 4 -d 3 -p ack -e 40 -c 0 -i 269 -a 0 -S 0 -y {29 29} h -t 1.45326 -s 4 -d 3 -p ack -e 40 -c 0 -i 269 -a 0 -S 0 -y {-1 -1} - -t 1.4536 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 253 -a 1 h -t 1.4536 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 253 -a 1 r -t 1.454 -s 1 -d 3 -p cbr -e 500 -c 1 -i 268 -a 1 + -t 1.454 -s 3 -d 4 -p cbr -e 500 -c 1 -i 268 -a 1 r -t 1.4556 -s 3 -d 4 -p cbr -e 500 -c 1 -i 242 -a 1 + -t 1.4556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 242 -a 1 - -t 1.4556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 242 -a 1 h -t 1.4556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 242 -a 1 r -t 1.4572 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 236 -a 0 -S 0 -y {30 30} + -t 1.4572 -s 5 -d 4 -p ack -e 40 -c 0 -i 274 -a 0 -S 0 -y {30 30} - -t 1.4572 -s 5 -d 4 -p ack -e 40 -c 0 -i 274 -a 0 -S 0 -y {30 30} h -t 1.4572 -s 5 -d 4 -p ack -e 40 -c 0 -i 274 -a 0 -S 0 -y {-1 -1} + -t 1.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 275 -a 1 - -t 1.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 275 -a 1 h -t 1.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 275 -a 1 + -t 1.46 -s 1 -d 3 -p cbr -e 500 -c 1 -i 276 -a 1 - -t 1.46 -s 1 -d 3 -p cbr -e 500 -c 1 -i 276 -a 1 h -t 1.46 -s 1 -d 3 -p cbr -e 500 -c 1 -i 276 -a 1 - -t 1.4616 -s 3 -d 4 -p cbr -e 500 -c 1 -i 255 -a 1 h -t 1.4616 -s 3 -d 4 -p cbr -e 500 -c 1 -i 255 -a 1 r -t 1.4636 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 241 -a 1 + -t 1.4636 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 241 -a 1 - -t 1.4636 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 241 -a 1 h -t 1.4636 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 241 -a 1 r -t 1.4636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 238 -a 1 r -t 1.464 -s 1 -d 3 -p cbr -e 500 -c 1 -i 271 -a 1 + -t 1.464 -s 3 -d 4 -p cbr -e 500 -c 1 -i 271 -a 1 - -t 1.4656 -s 3 -d 4 -p cbr -e 500 -c 1 -i 257 -a 1 h -t 1.4656 -s 3 -d 4 -p cbr -e 500 -c 1 -i 257 -a 1 r -t 1.4676 -s 3 -d 4 -p cbr -e 500 -c 1 -i 244 -a 1 + -t 1.4676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 244 -a 1 - -t 1.4676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 244 -a 1 h -t 1.4676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 244 -a 1 r -t 1.468 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 270 -a 1 + -t 1.468 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 270 -a 1 r -t 1.4692 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 240 -a 0 -S 0 -y {31 31} + -t 1.4692 -s 5 -d 4 -p ack -e 40 -c 0 -i 277 -a 0 -S 0 -y {31 31} - -t 1.4692 -s 5 -d 4 -p ack -e 40 -c 0 -i 277 -a 0 -S 0 -y {31 31} h -t 1.4692 -s 5 -d 4 -p ack -e 40 -c 0 -i 277 -a 0 -S 0 -y {-1 -1} r -t 1.46925 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 272 -a 0 -S 0 -y {34 34} + -t 1.46925 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 272 -a 0 -S 0 -y {34 34} - -t 1.4696 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 256 -a 1 h -t 1.4696 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 256 -a 1 + -t 1.47 -s 1 -d 3 -p cbr -e 500 -c 1 -i 278 -a 1 - -t 1.47 -s 1 -d 3 -p cbr -e 500 -c 1 -i 278 -a 1 h -t 1.47 -s 1 -d 3 -p cbr -e 500 -c 1 -i 278 -a 1 r -t 1.4716 -s 3 -d 4 -p cbr -e 500 -c 1 -i 246 -a 1 + -t 1.4716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 246 -a 1 - -t 1.4716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 246 -a 1 h -t 1.4716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 246 -a 1 r -t 1.47165 -s 3 -d 0 -p ack -e 40 -c 0 -i 258 -a 0 -S 0 -y {27 27} + -t 1.47165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 279 -a 0 -S 0 -f 0 -m 0 -y {35 35} - -t 1.47165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 279 -a 0 -S 0 -y {35 35} h -t 1.47165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 279 -a 0 -S 0 -y {-1 -1} r -t 1.474 -s 1 -d 3 -p cbr -e 500 -c 1 -i 273 -a 1 + -t 1.474 -s 3 -d 4 -p cbr -e 500 -c 1 -i 273 -a 1 r -t 1.4756 -s 4 -d 6 -p cbr -e 500 -c 1 -i 239 -a 1 r -t 1.47726 -s 5 -d 4 -p ack -e 40 -c 0 -i 274 -a 0 -S 0 -y {30 30} + -t 1.47726 -s 4 -d 3 -p ack -e 40 -c 0 -i 274 -a 0 -S 0 -y {30 30} - -t 1.47726 -s 4 -d 3 -p ack -e 40 -c 0 -i 274 -a 0 -S 0 -y {30 30} h -t 1.47726 -s 4 -d 3 -p ack -e 40 -c 0 -i 274 -a 0 -S 0 -y {-1 -1} - -t 1.4776 -s 3 -d 4 -p cbr -e 500 -c 1 -i 259 -a 1 h -t 1.4776 -s 3 -d 4 -p cbr -e 500 -c 1 -i 259 -a 1 r -t 1.47958 -s 4 -d 3 -p ack -e 40 -c 0 -i 263 -a 0 -S 0 -y {28 28} + -t 1.47958 -s 3 -d 0 -p ack -e 40 -c 0 -i 263 -a 0 -S 0 -y {28 28} - -t 1.47958 -s 3 -d 0 -p ack -e 40 -c 0 -i 263 -a 0 -S 0 -f 0 -m 1 -y {28 28} h -t 1.47958 -s 3 -d 0 -p ack -e 40 -c 0 -i 263 -a 0 -S 0 -y {-1 -1} r -t 1.4796 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 245 -a 1 + -t 1.4796 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 245 -a 1 - -t 1.4796 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 245 -a 1 h -t 1.4796 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 245 -a 1 r -t 1.4796 -s 4 -d 6 -p cbr -e 500 -c 1 -i 242 -a 1 + -t 1.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 280 -a 1 - -t 1.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 280 -a 1 h -t 1.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 280 -a 1 + -t 1.48 -s 1 -d 3 -p cbr -e 500 -c 1 -i 281 -a 1 - -t 1.48 -s 1 -d 3 -p cbr -e 500 -c 1 -i 281 -a 1 h -t 1.48 -s 1 -d 3 -p cbr -e 500 -c 1 -i 281 -a 1 - -t 1.4816 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 260 -a 0 -S 0 -y {32 32} h -t 1.4816 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 260 -a 0 -S 0 -y {-1 -1} r -t 1.4836 -s 3 -d 4 -p cbr -e 500 -c 1 -i 247 -a 1 + -t 1.4836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 247 -a 1 - -t 1.4836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 247 -a 1 h -t 1.4836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 247 -a 1 r -t 1.484 -s 1 -d 3 -p cbr -e 500 -c 1 -i 276 -a 1 + -t 1.484 -s 3 -d 4 -p cbr -e 500 -c 1 -i 276 -a 1 r -t 1.4876 -s 3 -d 4 -p cbr -e 500 -c 1 -i 250 -a 1 + -t 1.4876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 250 -a 1 - -t 1.4876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 250 -a 1 h -t 1.4876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 250 -a 1 r -t 1.488 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 275 -a 1 + -t 1.488 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 275 -a 1 r -t 1.48926 -s 5 -d 4 -p ack -e 40 -c 0 -i 277 -a 0 -S 0 -y {31 31} + -t 1.48926 -s 4 -d 3 -p ack -e 40 -c 0 -i 277 -a 0 -S 0 -y {31 31} - -t 1.48926 -s 4 -d 3 -p ack -e 40 -c 0 -i 277 -a 0 -S 0 -y {31 31} h -t 1.48926 -s 4 -d 3 -p ack -e 40 -c 0 -i 277 -a 0 -S 0 -y {-1 -1} - -t 1.4896 -s 3 -d 4 -p cbr -e 500 -c 1 -i 262 -a 1 h -t 1.4896 -s 3 -d 4 -p cbr -e 500 -c 1 -i 262 -a 1 + -t 1.49 -s 1 -d 3 -p cbr -e 500 -c 1 -i 282 -a 1 - -t 1.49 -s 1 -d 3 -p cbr -e 500 -c 1 -i 282 -a 1 h -t 1.49 -s 1 -d 3 -p cbr -e 500 -c 1 -i 282 -a 1 r -t 1.4916 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 241 -a 1 r -t 1.4916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 244 -a 1 r -t 1.49325 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 279 -a 0 -S 0 -y {35 35} + -t 1.49325 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 279 -a 0 -S 0 -y {35 35} - -t 1.4936 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 261 -a 1 h -t 1.4936 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 261 -a 1 r -t 1.494 -s 1 -d 3 -p cbr -e 500 -c 1 -i 278 -a 1 + -t 1.494 -s 3 -d 4 -p cbr -e 500 -c 1 -i 278 -a 1 r -t 1.4956 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 249 -a 1 + -t 1.4956 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 249 -a 1 - -t 1.4956 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 249 -a 1 h -t 1.4956 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 249 -a 1 r -t 1.4956 -s 4 -d 6 -p cbr -e 500 -c 1 -i 246 -a 1 r -t 1.4996 -s 3 -d 4 -p cbr -e 500 -c 1 -i 251 -a 1 + -t 1.4996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 251 -a 1 - -t 1.4996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 251 -a 1 h -t 1.4996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 251 -a 1 r -t 1.49965 -s 3 -d 0 -p ack -e 40 -c 0 -i 263 -a 0 -S 0 -y {28 28} + -t 1.49965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 283 -a 0 -S 0 -f 0 -m 0 -y {36 36} - -t 1.49965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 283 -a 0 -S 0 -y {36 36} h -t 1.49965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 283 -a 0 -S 0 -y {-1 -1} + -t 1.5 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 284 -a 1 - -t 1.5 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 284 -a 1 h -t 1.5 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 284 -a 1 + -t 1.5 -s 1 -d 3 -p cbr -e 500 -c 1 -i 285 -a 1 - -t 1.5 -s 1 -d 3 -p cbr -e 500 -c 1 -i 285 -a 1 h -t 1.5 -s 1 -d 3 -p cbr -e 500 -c 1 -i 285 -a 1 - -t 1.5016 -s 3 -d 4 -p cbr -e 500 -c 1 -i 264 -a 1 h -t 1.5016 -s 3 -d 4 -p cbr -e 500 -c 1 -i 264 -a 1 r -t 1.50358 -s 4 -d 3 -p ack -e 40 -c 0 -i 269 -a 0 -S 0 -y {29 29} + -t 1.50358 -s 3 -d 0 -p ack -e 40 -c 0 -i 269 -a 0 -S 0 -y {29 29} - -t 1.50358 -s 3 -d 0 -p ack -e 40 -c 0 -i 269 -a 0 -S 0 -f 0 -m 1 -y {29 29} h -t 1.50358 -s 3 -d 0 -p ack -e 40 -c 0 -i 269 -a 0 -S 0 -y {-1 -1} r -t 1.5036 -s 3 -d 4 -p cbr -e 500 -c 1 -i 254 -a 1 + -t 1.5036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 254 -a 1 - -t 1.5036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 254 -a 1 h -t 1.5036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 254 -a 1 r -t 1.504 -s 1 -d 3 -p cbr -e 500 -c 1 -i 281 -a 1 + -t 1.504 -s 3 -d 4 -p cbr -e 500 -c 1 -i 281 -a 1 - -t 1.5056 -s 3 -d 4 -p cbr -e 500 -c 1 -i 266 -a 1 h -t 1.5056 -s 3 -d 4 -p cbr -e 500 -c 1 -i 266 -a 1 r -t 1.5076 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 245 -a 1 r -t 1.5076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 247 -a 1 r -t 1.508 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 280 -a 1 + -t 1.508 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 280 -a 1 - -t 1.5096 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 267 -a 0 -S 0 -y {33 33} h -t 1.5096 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 267 -a 0 -S 0 -y {-1 -1} + -t 1.51 -s 1 -d 3 -p cbr -e 500 -c 1 -i 286 -a 1 - -t 1.51 -s 1 -d 3 -p cbr -e 500 -c 1 -i 286 -a 1 h -t 1.51 -s 1 -d 3 -p cbr -e 500 -c 1 -i 286 -a 1 r -t 1.5116 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 253 -a 1 + -t 1.5116 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 253 -a 1 - -t 1.5116 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 253 -a 1 h -t 1.5116 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 253 -a 1 r -t 1.5116 -s 4 -d 6 -p cbr -e 500 -c 1 -i 250 -a 1 r -t 1.514 -s 1 -d 3 -p cbr -e 500 -c 1 -i 282 -a 1 + -t 1.514 -s 3 -d 4 -p cbr -e 500 -c 1 -i 282 -a 1 r -t 1.5156 -s 3 -d 4 -p cbr -e 500 -c 1 -i 255 -a 1 + -t 1.5156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 255 -a 1 - -t 1.5156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 255 -a 1 h -t 1.5156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 255 -a 1 - -t 1.5176 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 265 -a 1 h -t 1.5176 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 265 -a 1 r -t 1.5196 -s 3 -d 4 -p cbr -e 500 -c 1 -i 257 -a 1 + -t 1.5196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 257 -a 1 - -t 1.5196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 257 -a 1 h -t 1.5196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 257 -a 1 + -t 1.52 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 287 -a 1 - -t 1.52 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 287 -a 1 h -t 1.52 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 287 -a 1 + -t 1.52 -s 1 -d 3 -p cbr -e 500 -c 1 -i 288 -a 1 - -t 1.52 -s 1 -d 3 -p cbr -e 500 -c 1 -i 288 -a 1 h -t 1.52 -s 1 -d 3 -p cbr -e 500 -c 1 -i 288 -a 1 r -t 1.52125 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 283 -a 0 -S 0 -y {36 36} + -t 1.52125 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 283 -a 0 -S 0 -y {36 36} r -t 1.5236 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 249 -a 1 r -t 1.5236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 251 -a 1 r -t 1.52365 -s 3 -d 0 -p ack -e 40 -c 0 -i 269 -a 0 -S 0 -y {29 29} + -t 1.52365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 289 -a 0 -S 0 -f 0 -m 0 -y {37 37} - -t 1.52365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 289 -a 0 -S 0 -y {37 37} h -t 1.52365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 289 -a 0 -S 0 -y {-1 -1} r -t 1.524 -s 1 -d 3 -p cbr -e 500 -c 1 -i 285 -a 1 + -t 1.524 -s 3 -d 4 -p cbr -e 500 -c 1 -i 285 -a 1 - -t 1.5256 -s 3 -d 4 -p cbr -e 500 -c 1 -i 268 -a 1 h -t 1.5256 -s 3 -d 4 -p cbr -e 500 -c 1 -i 268 -a 1 r -t 1.52758 -s 4 -d 3 -p ack -e 40 -c 0 -i 274 -a 0 -S 0 -y {30 30} + -t 1.52758 -s 3 -d 0 -p ack -e 40 -c 0 -i 274 -a 0 -S 0 -y {30 30} - -t 1.52758 -s 3 -d 0 -p ack -e 40 -c 0 -i 274 -a 0 -S 0 -f 0 -m 1 -y {30 30} h -t 1.52758 -s 3 -d 0 -p ack -e 40 -c 0 -i 274 -a 0 -S 0 -y {-1 -1} r -t 1.5276 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 256 -a 1 + -t 1.5276 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 256 -a 1 - -t 1.5276 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 256 -a 1 h -t 1.5276 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 256 -a 1 r -t 1.5276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 254 -a 1 r -t 1.528 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 284 -a 1 + -t 1.528 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 284 -a 1 - -t 1.5296 -s 3 -d 4 -p cbr -e 500 -c 1 -i 271 -a 1 h -t 1.5296 -s 3 -d 4 -p cbr -e 500 -c 1 -i 271 -a 1 + -t 1.53 -s 1 -d 3 -p cbr -e 500 -c 1 -i 290 -a 1 - -t 1.53 -s 1 -d 3 -p cbr -e 500 -c 1 -i 290 -a 1 h -t 1.53 -s 1 -d 3 -p cbr -e 500 -c 1 -i 290 -a 1 r -t 1.5316 -s 3 -d 4 -p cbr -e 500 -c 1 -i 259 -a 1 + -t 1.5316 -s 4 -d 6 -p cbr -e 500 -c 1 -i 259 -a 1 - -t 1.5316 -s 4 -d 6 -p cbr -e 500 -c 1 -i 259 -a 1 h -t 1.5316 -s 4 -d 6 -p cbr -e 500 -c 1 -i 259 -a 1 - -t 1.5336 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 270 -a 1 h -t 1.5336 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 270 -a 1 r -t 1.534 -s 1 -d 3 -p cbr -e 500 -c 1 -i 286 -a 1 + -t 1.534 -s 3 -d 4 -p cbr -e 500 -c 1 -i 286 -a 1 r -t 1.53958 -s 4 -d 3 -p ack -e 40 -c 0 -i 277 -a 0 -S 0 -y {31 31} + -t 1.53958 -s 3 -d 0 -p ack -e 40 -c 0 -i 277 -a 0 -S 0 -y {31 31} - -t 1.53958 -s 3 -d 0 -p ack -e 40 -c 0 -i 277 -a 0 -S 0 -f 0 -m 1 -y {31 31} h -t 1.53958 -s 3 -d 0 -p ack -e 40 -c 0 -i 277 -a 0 -S 0 -y {-1 -1} r -t 1.5396 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 260 -a 0 -S 0 -y {32 32} + -t 1.5396 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 260 -a 0 -S 0 -y {32 32} - -t 1.5396 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 260 -a 0 -S 0 -y {32 32} h -t 1.5396 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 260 -a 0 -S 0 -y {-1 -1} r -t 1.5396 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 253 -a 1 r -t 1.5396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 255 -a 1 + -t 1.54 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 291 -a 1 - -t 1.54 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 291 -a 1 h -t 1.54 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 291 -a 1 + -t 1.54 -s 1 -d 3 -p cbr -e 500 -c 1 -i 292 -a 1 - -t 1.54 -s 1 -d 3 -p cbr -e 500 -c 1 -i 292 -a 1 h -t 1.54 -s 1 -d 3 -p cbr -e 500 -c 1 -i 292 -a 1 - -t 1.5416 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 272 -a 0 -S 0 -y {34 34} h -t 1.5416 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 272 -a 0 -S 0 -y {-1 -1} r -t 1.5436 -s 3 -d 4 -p cbr -e 500 -c 1 -i 262 -a 1 + -t 1.5436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 262 -a 1 - -t 1.5436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 262 -a 1 h -t 1.5436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 262 -a 1 r -t 1.5436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 257 -a 1 r -t 1.544 -s 1 -d 3 -p cbr -e 500 -c 1 -i 288 -a 1 + -t 1.544 -s 3 -d 4 -p cbr -e 500 -c 1 -i 288 -a 1 r -t 1.54525 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 289 -a 0 -S 0 -y {37 37} + -t 1.54525 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 289 -a 0 -S 0 -y {37 37} r -t 1.54765 -s 3 -d 0 -p ack -e 40 -c 0 -i 274 -a 0 -S 0 -y {30 30} + -t 1.54765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 293 -a 0 -S 0 -f 0 -m 0 -y {38 38} - -t 1.54765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 293 -a 0 -S 0 -y {38 38} h -t 1.54765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 293 -a 0 -S 0 -y {-1 -1} r -t 1.548 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 287 -a 1 + -t 1.548 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 287 -a 1 d -t 1.548 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 287 -a 1 - -t 1.5496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 273 -a 1 h -t 1.5496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 273 -a 1 + -t 1.55 -s 1 -d 3 -p cbr -e 500 -c 1 -i 294 -a 1 - -t 1.55 -s 1 -d 3 -p cbr -e 500 -c 1 -i 294 -a 1 h -t 1.55 -s 1 -d 3 -p cbr -e 500 -c 1 -i 294 -a 1 r -t 1.5516 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 261 -a 1 + -t 1.5516 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 261 -a 1 - -t 1.5516 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 261 -a 1 h -t 1.5516 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 261 -a 1 - -t 1.5536 -s 3 -d 4 -p cbr -e 500 -c 1 -i 276 -a 1 h -t 1.5536 -s 3 -d 4 -p cbr -e 500 -c 1 -i 276 -a 1 r -t 1.554 -s 1 -d 3 -p cbr -e 500 -c 1 -i 290 -a 1 + -t 1.554 -s 3 -d 4 -p cbr -e 500 -c 1 -i 290 -a 1 r -t 1.5556 -s 3 -d 4 -p cbr -e 500 -c 1 -i 264 -a 1 + -t 1.5556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 264 -a 1 - -t 1.5556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 264 -a 1 h -t 1.5556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 264 -a 1 r -t 1.5556 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 256 -a 1 r -t 1.5556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 259 -a 1 - -t 1.5576 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 275 -a 1 h -t 1.5576 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 275 -a 1 r -t 1.5596 -s 3 -d 4 -p cbr -e 500 -c 1 -i 266 -a 1 + -t 1.5596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 266 -a 1 - -t 1.5596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 266 -a 1 h -t 1.5596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 266 -a 1 r -t 1.55965 -s 3 -d 0 -p ack -e 40 -c 0 -i 277 -a 0 -S 0 -y {31 31} + -t 1.55965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 295 -a 0 -S 0 -f 0 -m 0 -y {39 39} - -t 1.55965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 295 -a 0 -S 0 -y {39 39} h -t 1.55965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 295 -a 0 -S 0 -y {-1 -1} + -t 1.56 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 296 -a 1 - -t 1.56 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 296 -a 1 h -t 1.56 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 296 -a 1 + -t 1.56 -s 1 -d 3 -p cbr -e 500 -c 1 -i 297 -a 1 - -t 1.56 -s 1 -d 3 -p cbr -e 500 -c 1 -i 297 -a 1 h -t 1.56 -s 1 -d 3 -p cbr -e 500 -c 1 -i 297 -a 1 r -t 1.5612 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 260 -a 0 -S 0 -y {32 32} + -t 1.5612 -s 5 -d 4 -p ack -e 40 -c 0 -i 298 -a 0 -S 0 -y {32 32} - -t 1.5612 -s 5 -d 4 -p ack -e 40 -c 0 -i 298 -a 0 -S 0 -y {32 32} h -t 1.5612 -s 5 -d 4 -p ack -e 40 -c 0 -i 298 -a 0 -S 0 -y {-1 -1} r -t 1.564 -s 1 -d 3 -p cbr -e 500 -c 1 -i 292 -a 1 + -t 1.564 -s 3 -d 4 -p cbr -e 500 -c 1 -i 292 -a 1 - -t 1.5656 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 279 -a 0 -S 0 -y {35 35} h -t 1.5656 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 279 -a 0 -S 0 -y {-1 -1} r -t 1.5676 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 267 -a 0 -S 0 -y {33 33} + -t 1.5676 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 267 -a 0 -S 0 -y {33 33} - -t 1.5676 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 267 -a 0 -S 0 -y {33 33} h -t 1.5676 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 267 -a 0 -S 0 -y {-1 -1} r -t 1.5676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 262 -a 1 r -t 1.568 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 291 -a 1 + -t 1.568 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 291 -a 1 r -t 1.56925 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 293 -a 0 -S 0 -y {38 38} + -t 1.56925 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 293 -a 0 -S 0 -y {38 38} + -t 1.57 -s 1 -d 3 -p cbr -e 500 -c 1 -i 299 -a 1 - -t 1.57 -s 1 -d 3 -p cbr -e 500 -c 1 -i 299 -a 1 h -t 1.57 -s 1 -d 3 -p cbr -e 500 -c 1 -i 299 -a 1 - -t 1.5736 -s 3 -d 4 -p cbr -e 500 -c 1 -i 278 -a 1 h -t 1.5736 -s 3 -d 4 -p cbr -e 500 -c 1 -i 278 -a 1 r -t 1.574 -s 1 -d 3 -p cbr -e 500 -c 1 -i 294 -a 1 + -t 1.574 -s 3 -d 4 -p cbr -e 500 -c 1 -i 294 -a 1 r -t 1.5756 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 265 -a 1 + -t 1.5756 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 265 -a 1 - -t 1.5756 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 265 -a 1 h -t 1.5756 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 265 -a 1 - -t 1.5776 -s 3 -d 4 -p cbr -e 500 -c 1 -i 281 -a 1 h -t 1.5776 -s 3 -d 4 -p cbr -e 500 -c 1 -i 281 -a 1 r -t 1.5796 -s 3 -d 4 -p cbr -e 500 -c 1 -i 268 -a 1 + -t 1.5796 -s 4 -d 6 -p cbr -e 500 -c 1 -i 268 -a 1 - -t 1.5796 -s 4 -d 6 -p cbr -e 500 -c 1 -i 268 -a 1 h -t 1.5796 -s 4 -d 6 -p cbr -e 500 -c 1 -i 268 -a 1 r -t 1.5796 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 261 -a 1 r -t 1.5796 -s 4 -d 6 -p cbr -e 500 -c 1 -i 264 -a 1 + -t 1.58 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 300 -a 1 - -t 1.58 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 300 -a 1 h -t 1.58 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 300 -a 1 + -t 1.58 -s 1 -d 3 -p cbr -e 500 -c 1 -i 301 -a 1 - -t 1.58 -s 1 -d 3 -p cbr -e 500 -c 1 -i 301 -a 1 h -t 1.58 -s 1 -d 3 -p cbr -e 500 -c 1 -i 301 -a 1 r -t 1.58125 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 295 -a 0 -S 0 -y {39 39} + -t 1.58125 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 295 -a 0 -S 0 -y {39 39} r -t 1.58126 -s 5 -d 4 -p ack -e 40 -c 0 -i 298 -a 0 -S 0 -y {32 32} + -t 1.58126 -s 4 -d 3 -p ack -e 40 -c 0 -i 298 -a 0 -S 0 -y {32 32} - -t 1.58126 -s 4 -d 3 -p ack -e 40 -c 0 -i 298 -a 0 -S 0 -y {32 32} h -t 1.58126 -s 4 -d 3 -p ack -e 40 -c 0 -i 298 -a 0 -S 0 -y {-1 -1} - -t 1.5816 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 280 -a 1 h -t 1.5816 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 280 -a 1 r -t 1.5836 -s 3 -d 4 -p cbr -e 500 -c 1 -i 271 -a 1 + -t 1.5836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 271 -a 1 r -t 1.5836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 266 -a 1 - -t 1.5836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 271 -a 1 h -t 1.5836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 271 -a 1 r -t 1.584 -s 1 -d 3 -p cbr -e 500 -c 1 -i 297 -a 1 + -t 1.584 -s 3 -d 4 -p cbr -e 500 -c 1 -i 297 -a 1 r -t 1.588 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 296 -a 1 + -t 1.588 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 296 -a 1 d -t 1.588 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 296 -a 1 r -t 1.5892 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 267 -a 0 -S 0 -y {33 33} + -t 1.5892 -s 5 -d 4 -p ack -e 40 -c 0 -i 302 -a 0 -S 0 -y {33 33} - -t 1.5892 -s 5 -d 4 -p ack -e 40 -c 0 -i 302 -a 0 -S 0 -y {33 33} h -t 1.5892 -s 5 -d 4 -p ack -e 40 -c 0 -i 302 -a 0 -S 0 -y {-1 -1} - -t 1.5896 -s 3 -d 4 -p cbr -e 500 -c 1 -i 282 -a 1 h -t 1.5896 -s 3 -d 4 -p cbr -e 500 -c 1 -i 282 -a 1 + -t 1.59 -s 1 -d 3 -p cbr -e 500 -c 1 -i 303 -a 1 - -t 1.59 -s 1 -d 3 -p cbr -e 500 -c 1 -i 303 -a 1 h -t 1.59 -s 1 -d 3 -p cbr -e 500 -c 1 -i 303 -a 1 r -t 1.5916 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 270 -a 1 + -t 1.5916 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 270 -a 1 - -t 1.5916 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 270 -a 1 h -t 1.5916 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 270 -a 1 - -t 1.5936 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 283 -a 0 -S 0 -y {36 36} h -t 1.5936 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 283 -a 0 -S 0 -y {-1 -1} r -t 1.594 -s 1 -d 3 -p cbr -e 500 -c 1 -i 299 -a 1 + -t 1.594 -s 3 -d 4 -p cbr -e 500 -c 1 -i 299 -a 1 r -t 1.5996 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 272 -a 0 -S 0 -y {34 34} + -t 1.5996 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 272 -a 0 -S 0 -y {34 34} - -t 1.5996 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 272 -a 0 -S 0 -y {34 34} h -t 1.5996 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 272 -a 0 -S 0 -y {-1 -1} + -t 1.6 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 304 -a 1 - -t 1.6 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 304 -a 1 h -t 1.6 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 304 -a 1 + -t 1.6 -s 1 -d 3 -p cbr -e 500 -c 1 -i 305 -a 1 - -t 1.6 -s 1 -d 3 -p cbr -e 500 -c 1 -i 305 -a 1 h -t 1.6 -s 1 -d 3 -p cbr -e 500 -c 1 -i 305 -a 1 - -t 1.6016 -s 3 -d 4 -p cbr -e 500 -c 1 -i 285 -a 1 h -t 1.6016 -s 3 -d 4 -p cbr -e 500 -c 1 -i 285 -a 1 r -t 1.6036 -s 3 -d 4 -p cbr -e 500 -c 1 -i 273 -a 1 + -t 1.6036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 273 -a 1 - -t 1.6036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 273 -a 1 h -t 1.6036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 273 -a 1 r -t 1.6036 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 265 -a 1 r -t 1.6036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 268 -a 1 r -t 1.604 -s 1 -d 3 -p cbr -e 500 -c 1 -i 301 -a 1 + -t 1.604 -s 3 -d 4 -p cbr -e 500 -c 1 -i 301 -a 1 - -t 1.6056 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 284 -a 1 h -t 1.6056 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 284 -a 1 r -t 1.6076 -s 3 -d 4 -p cbr -e 500 -c 1 -i 276 -a 1 + -t 1.6076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 276 -a 1 r -t 1.6076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 271 -a 1 - -t 1.6076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 276 -a 1 h -t 1.6076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 276 -a 1 r -t 1.608 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 300 -a 1 + -t 1.608 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 300 -a 1 r -t 1.60926 -s 5 -d 4 -p ack -e 40 -c 0 -i 302 -a 0 -S 0 -y {33 33} + -t 1.60926 -s 4 -d 3 -p ack -e 40 -c 0 -i 302 -a 0 -S 0 -y {33 33} - -t 1.60926 -s 4 -d 3 -p ack -e 40 -c 0 -i 302 -a 0 -S 0 -y {33 33} h -t 1.60926 -s 4 -d 3 -p ack -e 40 -c 0 -i 302 -a 0 -S 0 -y {-1 -1} + -t 1.61 -s 1 -d 3 -p cbr -e 500 -c 1 -i 306 -a 1 - -t 1.61 -s 1 -d 3 -p cbr -e 500 -c 1 -i 306 -a 1 h -t 1.61 -s 1 -d 3 -p cbr -e 500 -c 1 -i 306 -a 1 - -t 1.6136 -s 3 -d 4 -p cbr -e 500 -c 1 -i 286 -a 1 h -t 1.6136 -s 3 -d 4 -p cbr -e 500 -c 1 -i 286 -a 1 r -t 1.614 -s 1 -d 3 -p cbr -e 500 -c 1 -i 303 -a 1 + -t 1.614 -s 3 -d 4 -p cbr -e 500 -c 1 -i 303 -a 1 r -t 1.6156 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 275 -a 1 + -t 1.6156 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 275 -a 1 - -t 1.6156 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 275 -a 1 h -t 1.6156 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 275 -a 1 - -t 1.6176 -s 3 -d 4 -p cbr -e 500 -c 1 -i 288 -a 1 h -t 1.6176 -s 3 -d 4 -p cbr -e 500 -c 1 -i 288 -a 1 r -t 1.6196 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 270 -a 1 + -t 1.62 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 307 -a 1 - -t 1.62 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 307 -a 1 h -t 1.62 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 307 -a 1 + -t 1.62 -s 1 -d 3 -p cbr -e 500 -c 1 -i 308 -a 1 - -t 1.62 -s 1 -d 3 -p cbr -e 500 -c 1 -i 308 -a 1 h -t 1.62 -s 1 -d 3 -p cbr -e 500 -c 1 -i 308 -a 1 r -t 1.6212 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 272 -a 0 -S 0 -y {34 34} + -t 1.6212 -s 5 -d 4 -p ack -e 40 -c 0 -i 309 -a 0 -S 0 -y {34 34} - -t 1.6212 -s 5 -d 4 -p ack -e 40 -c 0 -i 309 -a 0 -S 0 -y {34 34} h -t 1.6212 -s 5 -d 4 -p ack -e 40 -c 0 -i 309 -a 0 -S 0 -y {-1 -1} - -t 1.6216 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 289 -a 0 -S 0 -y {37 37} h -t 1.6216 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 289 -a 0 -S 0 -y {-1 -1} r -t 1.6236 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 279 -a 0 -S 0 -y {35 35} + -t 1.6236 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 279 -a 0 -S 0 -y {35 35} - -t 1.6236 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 279 -a 0 -S 0 -y {35 35} h -t 1.6236 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 279 -a 0 -S 0 -y {-1 -1} r -t 1.624 -s 1 -d 3 -p cbr -e 500 -c 1 -i 305 -a 1 + -t 1.624 -s 3 -d 4 -p cbr -e 500 -c 1 -i 305 -a 1 r -t 1.6276 -s 3 -d 4 -p cbr -e 500 -c 1 -i 278 -a 1 + -t 1.6276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 278 -a 1 - -t 1.6276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 278 -a 1 h -t 1.6276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 278 -a 1 r -t 1.6276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 273 -a 1 r -t 1.628 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 304 -a 1 + -t 1.628 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 304 -a 1 - -t 1.6296 -s 3 -d 4 -p cbr -e 500 -c 1 -i 290 -a 1 h -t 1.6296 -s 3 -d 4 -p cbr -e 500 -c 1 -i 290 -a 1 + -t 1.63 -s 1 -d 3 -p cbr -e 500 -c 1 -i 310 -a 1 - -t 1.63 -s 1 -d 3 -p cbr -e 500 -c 1 -i 310 -a 1 h -t 1.63 -s 1 -d 3 -p cbr -e 500 -c 1 -i 310 -a 1 r -t 1.63158 -s 4 -d 3 -p ack -e 40 -c 0 -i 298 -a 0 -S 0 -y {32 32} + -t 1.63158 -s 3 -d 0 -p ack -e 40 -c 0 -i 298 -a 0 -S 0 -y {32 32} - -t 1.63158 -s 3 -d 0 -p ack -e 40 -c 0 -i 298 -a 0 -S 0 -f 0 -m 1 -y {32 32} h -t 1.63158 -s 3 -d 0 -p ack -e 40 -c 0 -i 298 -a 0 -S 0 -y {-1 -1} r -t 1.6316 -s 3 -d 4 -p cbr -e 500 -c 1 -i 281 -a 1 + -t 1.6316 -s 4 -d 6 -p cbr -e 500 -c 1 -i 281 -a 1 r -t 1.6316 -s 4 -d 6 -p cbr -e 500 -c 1 -i 276 -a 1 - -t 1.6316 -s 4 -d 6 -p cbr -e 500 -c 1 -i 281 -a 1 h -t 1.6316 -s 4 -d 6 -p cbr -e 500 -c 1 -i 281 -a 1 - -t 1.6336 -s 3 -d 4 -p cbr -e 500 -c 1 -i 292 -a 1 h -t 1.6336 -s 3 -d 4 -p cbr -e 500 -c 1 -i 292 -a 1 r -t 1.634 -s 1 -d 3 -p cbr -e 500 -c 1 -i 306 -a 1 + -t 1.634 -s 3 -d 4 -p cbr -e 500 -c 1 -i 306 -a 1 - -t 1.6376 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 291 -a 1 h -t 1.6376 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 291 -a 1 r -t 1.6396 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 280 -a 1 + -t 1.6396 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 280 -a 1 - -t 1.6396 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 280 -a 1 h -t 1.6396 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 280 -a 1 + -t 1.64 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 311 -a 1 - -t 1.64 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 311 -a 1 h -t 1.64 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 311 -a 1 + -t 1.64 -s 1 -d 3 -p cbr -e 500 -c 1 -i 312 -a 1 - -t 1.64 -s 1 -d 3 -p cbr -e 500 -c 1 -i 312 -a 1 h -t 1.64 -s 1 -d 3 -p cbr -e 500 -c 1 -i 312 -a 1 r -t 1.64126 -s 5 -d 4 -p ack -e 40 -c 0 -i 309 -a 0 -S 0 -y {34 34} + -t 1.64126 -s 4 -d 3 -p ack -e 40 -c 0 -i 309 -a 0 -S 0 -y {34 34} - -t 1.64126 -s 4 -d 3 -p ack -e 40 -c 0 -i 309 -a 0 -S 0 -y {34 34} h -t 1.64126 -s 4 -d 3 -p ack -e 40 -c 0 -i 309 -a 0 -S 0 -y {-1 -1} r -t 1.6436 -s 3 -d 4 -p cbr -e 500 -c 1 -i 282 -a 1 + -t 1.6436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 282 -a 1 - -t 1.6436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 282 -a 1 h -t 1.6436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 282 -a 1 r -t 1.6436 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 275 -a 1 r -t 1.644 -s 1 -d 3 -p cbr -e 500 -c 1 -i 308 -a 1 + -t 1.644 -s 3 -d 4 -p cbr -e 500 -c 1 -i 308 -a 1 r -t 1.6452 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 279 -a 0 -S 0 -y {35 35} + -t 1.6452 -s 5 -d 4 -p ack -e 40 -c 0 -i 313 -a 0 -S 0 -y {35 35} - -t 1.6452 -s 5 -d 4 -p ack -e 40 -c 0 -i 313 -a 0 -S 0 -y {35 35} h -t 1.6452 -s 5 -d 4 -p ack -e 40 -c 0 -i 313 -a 0 -S 0 -y {-1 -1} - -t 1.6456 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 293 -a 0 -S 0 -y {38 38} h -t 1.6456 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 293 -a 0 -S 0 -y {-1 -1} r -t 1.648 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 307 -a 1 + -t 1.648 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 307 -a 1 + -t 1.65 -s 1 -d 3 -p cbr -e 500 -c 1 -i 314 -a 1 - -t 1.65 -s 1 -d 3 -p cbr -e 500 -c 1 -i 314 -a 1 h -t 1.65 -s 1 -d 3 -p cbr -e 500 -c 1 -i 314 -a 1 r -t 1.6516 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 283 -a 0 -S 0 -y {36 36} + -t 1.6516 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 283 -a 0 -S 0 -y {36 36} - -t 1.6516 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 283 -a 0 -S 0 -y {36 36} h -t 1.6516 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 283 -a 0 -S 0 -y {-1 -1} r -t 1.6516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 278 -a 1 r -t 1.65165 -s 3 -d 0 -p ack -e 40 -c 0 -i 298 -a 0 -S 0 -y {32 32} + -t 1.65165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 315 -a 0 -S 0 -f 0 -m 0 -y {40 40} - -t 1.65165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 315 -a 0 -S 0 -y {40 40} h -t 1.65165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 315 -a 0 -S 0 -y {-1 -1} - -t 1.6536 -s 3 -d 4 -p cbr -e 500 -c 1 -i 294 -a 1 h -t 1.6536 -s 3 -d 4 -p cbr -e 500 -c 1 -i 294 -a 1 r -t 1.654 -s 1 -d 3 -p cbr -e 500 -c 1 -i 310 -a 1 + -t 1.654 -s 3 -d 4 -p cbr -e 500 -c 1 -i 310 -a 1 r -t 1.6556 -s 3 -d 4 -p cbr -e 500 -c 1 -i 285 -a 1 + -t 1.6556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 285 -a 1 - -t 1.6556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 285 -a 1 h -t 1.6556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 285 -a 1 r -t 1.6556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 281 -a 1 - -t 1.6576 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 295 -a 0 -S 0 -y {39 39} h -t 1.6576 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 295 -a 0 -S 0 -y {-1 -1} r -t 1.65958 -s 4 -d 3 -p ack -e 40 -c 0 -i 302 -a 0 -S 0 -y {33 33} + -t 1.65958 -s 3 -d 0 -p ack -e 40 -c 0 -i 302 -a 0 -S 0 -y {33 33} - -t 1.65958 -s 3 -d 0 -p ack -e 40 -c 0 -i 302 -a 0 -S 0 -f 0 -m 1 -y {33 33} h -t 1.65958 -s 3 -d 0 -p ack -e 40 -c 0 -i 302 -a 0 -S 0 -y {-1 -1} + -t 1.66 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 316 -a 1 - -t 1.66 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 316 -a 1 h -t 1.66 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 316 -a 1 + -t 1.66 -s 1 -d 3 -p cbr -e 500 -c 1 -i 317 -a 1 - -t 1.66 -s 1 -d 3 -p cbr -e 500 -c 1 -i 317 -a 1 h -t 1.66 -s 1 -d 3 -p cbr -e 500 -c 1 -i 317 -a 1 r -t 1.6636 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 284 -a 1 + -t 1.6636 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 284 -a 1 - -t 1.6636 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 284 -a 1 h -t 1.6636 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 284 -a 1 r -t 1.664 -s 1 -d 3 -p cbr -e 500 -c 1 -i 312 -a 1 + -t 1.664 -s 3 -d 4 -p cbr -e 500 -c 1 -i 312 -a 1 r -t 1.66526 -s 5 -d 4 -p ack -e 40 -c 0 -i 313 -a 0 -S 0 -y {35 35} + -t 1.66526 -s 4 -d 3 -p ack -e 40 -c 0 -i 313 -a 0 -S 0 -y {35 35} - -t 1.66526 -s 4 -d 3 -p ack -e 40 -c 0 -i 313 -a 0 -S 0 -y {35 35} h -t 1.66526 -s 4 -d 3 -p ack -e 40 -c 0 -i 313 -a 0 -S 0 -y {-1 -1} - -t 1.6656 -s 3 -d 4 -p cbr -e 500 -c 1 -i 297 -a 1 h -t 1.6656 -s 3 -d 4 -p cbr -e 500 -c 1 -i 297 -a 1 r -t 1.6676 -s 3 -d 4 -p cbr -e 500 -c 1 -i 286 -a 1 + -t 1.6676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 286 -a 1 - -t 1.6676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 286 -a 1 h -t 1.6676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 286 -a 1 r -t 1.6676 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 280 -a 1 r -t 1.6676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 282 -a 1 r -t 1.668 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 311 -a 1 + -t 1.668 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 311 -a 1 - -t 1.6696 -s 3 -d 4 -p cbr -e 500 -c 1 -i 299 -a 1 h -t 1.6696 -s 3 -d 4 -p cbr -e 500 -c 1 -i 299 -a 1 + -t 1.67 -s 1 -d 3 -p cbr -e 500 -c 1 -i 318 -a 1 - -t 1.67 -s 1 -d 3 -p cbr -e 500 -c 1 -i 318 -a 1 h -t 1.67 -s 1 -d 3 -p cbr -e 500 -c 1 -i 318 -a 1 r -t 1.6716 -s 3 -d 4 -p cbr -e 500 -c 1 -i 288 -a 1 + -t 1.6716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 288 -a 1 - -t 1.6716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 288 -a 1 h -t 1.6716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 288 -a 1 r -t 1.6732 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 283 -a 0 -S 0 -y {36 36} + -t 1.6732 -s 5 -d 4 -p ack -e 40 -c 0 -i 319 -a 0 -S 0 -y {36 36} - -t 1.6732 -s 5 -d 4 -p ack -e 40 -c 0 -i 319 -a 0 -S 0 -y {36 36} h -t 1.6732 -s 5 -d 4 -p ack -e 40 -c 0 -i 319 -a 0 -S 0 -y {-1 -1} r -t 1.67325 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 315 -a 0 -S 0 -y {40 40} + -t 1.67325 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 315 -a 0 -S 0 -y {40 40} - -t 1.6736 -s 3 -d 4 -p cbr -e 500 -c 1 -i 301 -a 1 h -t 1.6736 -s 3 -d 4 -p cbr -e 500 -c 1 -i 301 -a 1 r -t 1.674 -s 1 -d 3 -p cbr -e 500 -c 1 -i 314 -a 1 + -t 1.674 -s 3 -d 4 -p cbr -e 500 -c 1 -i 314 -a 1 - -t 1.6776 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 300 -a 1 h -t 1.6776 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 300 -a 1 r -t 1.6796 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 289 -a 0 -S 0 -y {37 37} + -t 1.6796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 289 -a 0 -S 0 -y {37 37} - -t 1.6796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 289 -a 0 -S 0 -y {37 37} h -t 1.6796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 289 -a 0 -S 0 -y {-1 -1} r -t 1.6796 -s 4 -d 6 -p cbr -e 500 -c 1 -i 285 -a 1 r -t 1.67965 -s 3 -d 0 -p ack -e 40 -c 0 -i 302 -a 0 -S 0 -y {33 33} + -t 1.67965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 320 -a 0 -S 0 -f 0 -m 0 -y {41 41} - -t 1.67965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 320 -a 0 -S 0 -y {41 41} h -t 1.67965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 320 -a 0 -S 0 -y {-1 -1} + -t 1.68 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 321 -a 1 - -t 1.68 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 321 -a 1 h -t 1.68 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 321 -a 1 + -t 1.68 -s 1 -d 3 -p cbr -e 500 -c 1 -i 322 -a 1 - -t 1.68 -s 1 -d 3 -p cbr -e 500 -c 1 -i 322 -a 1 h -t 1.68 -s 1 -d 3 -p cbr -e 500 -c 1 -i 322 -a 1 r -t 1.6836 -s 3 -d 4 -p cbr -e 500 -c 1 -i 290 -a 1 + -t 1.6836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 290 -a 1 - -t 1.6836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 290 -a 1 h -t 1.6836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 290 -a 1 r -t 1.684 -s 1 -d 3 -p cbr -e 500 -c 1 -i 317 -a 1 + -t 1.684 -s 3 -d 4 -p cbr -e 500 -c 1 -i 317 -a 1 - -t 1.6856 -s 3 -d 4 -p cbr -e 500 -c 1 -i 303 -a 1 h -t 1.6856 -s 3 -d 4 -p cbr -e 500 -c 1 -i 303 -a 1 r -t 1.6876 -s 3 -d 4 -p cbr -e 500 -c 1 -i 292 -a 1 + -t 1.6876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 292 -a 1 - -t 1.6876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 292 -a 1 h -t 1.6876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 292 -a 1 r -t 1.688 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 316 -a 1 + -t 1.688 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 316 -a 1 - -t 1.6896 -s 3 -d 4 -p cbr -e 500 -c 1 -i 305 -a 1 h -t 1.6896 -s 3 -d 4 -p cbr -e 500 -c 1 -i 305 -a 1 + -t 1.69 -s 1 -d 3 -p cbr -e 500 -c 1 -i 323 -a 1 - -t 1.69 -s 1 -d 3 -p cbr -e 500 -c 1 -i 323 -a 1 h -t 1.69 -s 1 -d 3 -p cbr -e 500 -c 1 -i 323 -a 1 r -t 1.69158 -s 4 -d 3 -p ack -e 40 -c 0 -i 309 -a 0 -S 0 -y {34 34} + -t 1.69158 -s 3 -d 0 -p ack -e 40 -c 0 -i 309 -a 0 -S 0 -y {34 34} - -t 1.69158 -s 3 -d 0 -p ack -e 40 -c 0 -i 309 -a 0 -S 0 -f 0 -m 1 -y {34 34} h -t 1.69158 -s 3 -d 0 -p ack -e 40 -c 0 -i 309 -a 0 -S 0 -y {-1 -1} r -t 1.6916 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 284 -a 1 r -t 1.6916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 286 -a 1 r -t 1.69326 -s 5 -d 4 -p ack -e 40 -c 0 -i 319 -a 0 -S 0 -y {36 36} + -t 1.69326 -s 4 -d 3 -p ack -e 40 -c 0 -i 319 -a 0 -S 0 -y {36 36} - -t 1.69326 -s 4 -d 3 -p ack -e 40 -c 0 -i 319 -a 0 -S 0 -y {36 36} h -t 1.69326 -s 4 -d 3 -p ack -e 40 -c 0 -i 319 -a 0 -S 0 -y {-1 -1} - -t 1.6936 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 304 -a 1 h -t 1.6936 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 304 -a 1 r -t 1.694 -s 1 -d 3 -p cbr -e 500 -c 1 -i 318 -a 1 + -t 1.694 -s 3 -d 4 -p cbr -e 500 -c 1 -i 318 -a 1 r -t 1.6956 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 291 -a 1 + -t 1.6956 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 291 -a 1 - -t 1.6956 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 291 -a 1 h -t 1.6956 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 291 -a 1 r -t 1.6956 -s 4 -d 6 -p cbr -e 500 -c 1 -i 288 -a 1 + -t 1.7 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 324 -a 1 - -t 1.7 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 324 -a 1 h -t 1.7 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 324 -a 1 + -t 1.7 -s 1 -d 3 -p cbr -e 500 -c 1 -i 325 -a 1 - -t 1.7 -s 1 -d 3 -p cbr -e 500 -c 1 -i 325 -a 1 h -t 1.7 -s 1 -d 3 -p cbr -e 500 -c 1 -i 325 -a 1 r -t 1.7012 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 289 -a 0 -S 0 -y {37 37} + -t 1.7012 -s 5 -d 4 -p ack -e 40 -c 0 -i 326 -a 0 -S 0 -y {37 37} - -t 1.7012 -s 5 -d 4 -p ack -e 40 -c 0 -i 326 -a 0 -S 0 -y {37 37} h -t 1.7012 -s 5 -d 4 -p ack -e 40 -c 0 -i 326 -a 0 -S 0 -y {-1 -1} r -t 1.70125 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 320 -a 0 -S 0 -y {41 41} + -t 1.70125 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 320 -a 0 -S 0 -y {41 41} - -t 1.7016 -s 3 -d 4 -p cbr -e 500 -c 1 -i 306 -a 1 h -t 1.7016 -s 3 -d 4 -p cbr -e 500 -c 1 -i 306 -a 1 r -t 1.7036 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 293 -a 0 -S 0 -y {38 38} + -t 1.7036 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 293 -a 0 -S 0 -y {38 38} - -t 1.7036 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 293 -a 0 -S 0 -y {38 38} h -t 1.7036 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 293 -a 0 -S 0 -y {-1 -1} r -t 1.704 -s 1 -d 3 -p cbr -e 500 -c 1 -i 322 -a 1 + -t 1.704 -s 3 -d 4 -p cbr -e 500 -c 1 -i 322 -a 1 - -t 1.7056 -s 3 -d 4 -p cbr -e 500 -c 1 -i 308 -a 1 h -t 1.7056 -s 3 -d 4 -p cbr -e 500 -c 1 -i 308 -a 1 r -t 1.7076 -s 3 -d 4 -p cbr -e 500 -c 1 -i 294 -a 1 + -t 1.7076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 294 -a 1 - -t 1.7076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 294 -a 1 h -t 1.7076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 294 -a 1 r -t 1.7076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 290 -a 1 r -t 1.708 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 321 -a 1 + -t 1.708 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 321 -a 1 - -t 1.7096 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 307 -a 1 h -t 1.7096 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 307 -a 1 + -t 1.71 -s 1 -d 3 -p cbr -e 500 -c 1 -i 327 -a 1 - -t 1.71 -s 1 -d 3 -p cbr -e 500 -c 1 -i 327 -a 1 h -t 1.71 -s 1 -d 3 -p cbr -e 500 -c 1 -i 327 -a 1 r -t 1.7116 -s 4 -d 6 -p cbr -e 500 -c 1 -i 292 -a 1 r -t 1.71165 -s 3 -d 0 -p ack -e 40 -c 0 -i 309 -a 0 -S 0 -y {34 34} + -t 1.71165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 328 -a 0 -S 0 -f 0 -m 0 -y {42 42} - -t 1.71165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 328 -a 0 -S 0 -y {42 42} h -t 1.71165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 328 -a 0 -S 0 -y {-1 -1} r -t 1.714 -s 1 -d 3 -p cbr -e 500 -c 1 -i 323 -a 1 + -t 1.714 -s 3 -d 4 -p cbr -e 500 -c 1 -i 323 -a 1 r -t 1.71558 -s 4 -d 3 -p ack -e 40 -c 0 -i 313 -a 0 -S 0 -y {35 35} + -t 1.71558 -s 3 -d 0 -p ack -e 40 -c 0 -i 313 -a 0 -S 0 -y {35 35} - -t 1.71558 -s 3 -d 0 -p ack -e 40 -c 0 -i 313 -a 0 -S 0 -f 0 -m 1 -y {35 35} h -t 1.71558 -s 3 -d 0 -p ack -e 40 -c 0 -i 313 -a 0 -S 0 -y {-1 -1} r -t 1.7156 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 295 -a 0 -S 0 -y {39 39} + -t 1.7156 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 295 -a 0 -S 0 -y {39 39} - -t 1.7156 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 295 -a 0 -S 0 -y {39 39} h -t 1.7156 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 295 -a 0 -S 0 -y {-1 -1} - -t 1.7176 -s 3 -d 4 -p cbr -e 500 -c 1 -i 310 -a 1 h -t 1.7176 -s 3 -d 4 -p cbr -e 500 -c 1 -i 310 -a 1 r -t 1.7196 -s 3 -d 4 -p cbr -e 500 -c 1 -i 297 -a 1 + -t 1.7196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 297 -a 1 - -t 1.7196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 297 -a 1 h -t 1.7196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 297 -a 1 + -t 1.72 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 329 -a 1 - -t 1.72 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 329 -a 1 h -t 1.72 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 329 -a 1 + -t 1.72 -s 1 -d 3 -p cbr -e 500 -c 1 -i 330 -a 1 - -t 1.72 -s 1 -d 3 -p cbr -e 500 -c 1 -i 330 -a 1 h -t 1.72 -s 1 -d 3 -p cbr -e 500 -c 1 -i 330 -a 1 r -t 1.72126 -s 5 -d 4 -p ack -e 40 -c 0 -i 326 -a 0 -S 0 -y {37 37} + -t 1.72126 -s 4 -d 3 -p ack -e 40 -c 0 -i 326 -a 0 -S 0 -y {37 37} - -t 1.72126 -s 4 -d 3 -p ack -e 40 -c 0 -i 326 -a 0 -S 0 -y {37 37} h -t 1.72126 -s 4 -d 3 -p ack -e 40 -c 0 -i 326 -a 0 -S 0 -y {-1 -1} - -t 1.7216 -s 3 -d 4 -p cbr -e 500 -c 1 -i 312 -a 1 h -t 1.7216 -s 3 -d 4 -p cbr -e 500 -c 1 -i 312 -a 1 r -t 1.7236 -s 3 -d 4 -p cbr -e 500 -c 1 -i 299 -a 1 + -t 1.7236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 299 -a 1 r -t 1.7236 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 291 -a 1 - -t 1.7236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 299 -a 1 h -t 1.7236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 299 -a 1 r -t 1.724 -s 1 -d 3 -p cbr -e 500 -c 1 -i 325 -a 1 + -t 1.724 -s 3 -d 4 -p cbr -e 500 -c 1 -i 325 -a 1 r -t 1.7252 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 293 -a 0 -S 0 -y {38 38} + -t 1.7252 -s 5 -d 4 -p ack -e 40 -c 0 -i 331 -a 0 -S 0 -y {38 38} - -t 1.7252 -s 5 -d 4 -p ack -e 40 -c 0 -i 331 -a 0 -S 0 -y {38 38} h -t 1.7252 -s 5 -d 4 -p ack -e 40 -c 0 -i 331 -a 0 -S 0 -y {-1 -1} - -t 1.7256 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 311 -a 1 h -t 1.7256 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 311 -a 1 r -t 1.7276 -s 3 -d 4 -p cbr -e 500 -c 1 -i 301 -a 1 + -t 1.7276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 301 -a 1 - -t 1.7276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 301 -a 1 h -t 1.7276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 301 -a 1 r -t 1.728 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 324 -a 1 + -t 1.728 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 324 -a 1 + -t 1.73 -s 1 -d 3 -p cbr -e 500 -c 1 -i 332 -a 1 - -t 1.73 -s 1 -d 3 -p cbr -e 500 -c 1 -i 332 -a 1 h -t 1.73 -s 1 -d 3 -p cbr -e 500 -c 1 -i 332 -a 1 r -t 1.7316 -s 4 -d 6 -p cbr -e 500 -c 1 -i 294 -a 1 r -t 1.73325 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 328 -a 0 -S 0 -y {42 42} + -t 1.73325 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 328 -a 0 -S 0 -y {42 42} - -t 1.7336 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 315 -a 0 -S 0 -y {40 40} h -t 1.7336 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 315 -a 0 -S 0 -y {-1 -1} r -t 1.734 -s 1 -d 3 -p cbr -e 500 -c 1 -i 327 -a 1 + -t 1.734 -s 3 -d 4 -p cbr -e 500 -c 1 -i 327 -a 1 r -t 1.7356 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 300 -a 1 + -t 1.7356 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 300 -a 1 - -t 1.7356 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 300 -a 1 h -t 1.7356 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 300 -a 1 r -t 1.73565 -s 3 -d 0 -p ack -e 40 -c 0 -i 313 -a 0 -S 0 -y {35 35} + -t 1.73565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 333 -a 0 -S 0 -f 0 -m 0 -y {43 43} - -t 1.73565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 333 -a 0 -S 0 -y {43 43} h -t 1.73565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 333 -a 0 -S 0 -y {-1 -1} r -t 1.7372 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 295 -a 0 -S 0 -y {39 39} + -t 1.7372 -s 5 -d 4 -p ack -e 40 -c 0 -i 334 -a 0 -S 0 -y {39 39} - -t 1.7372 -s 5 -d 4 -p ack -e 40 -c 0 -i 334 -a 0 -S 0 -y {39 39} h -t 1.7372 -s 5 -d 4 -p ack -e 40 -c 0 -i 334 -a 0 -S 0 -y {-1 -1} r -t 1.7396 -s 3 -d 4 -p cbr -e 500 -c 1 -i 303 -a 1 + -t 1.7396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 303 -a 1 - -t 1.7396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 303 -a 1 h -t 1.7396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 303 -a 1 + -t 1.74 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 335 -a 1 - -t 1.74 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 335 -a 1 h -t 1.74 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 335 -a 1 + -t 1.74 -s 1 -d 3 -p cbr -e 500 -c 1 -i 336 -a 1 - -t 1.74 -s 1 -d 3 -p cbr -e 500 -c 1 -i 336 -a 1 h -t 1.74 -s 1 -d 3 -p cbr -e 500 -c 1 -i 336 -a 1 - -t 1.7416 -s 3 -d 4 -p cbr -e 500 -c 1 -i 314 -a 1 h -t 1.7416 -s 3 -d 4 -p cbr -e 500 -c 1 -i 314 -a 1 r -t 1.74358 -s 4 -d 3 -p ack -e 40 -c 0 -i 319 -a 0 -S 0 -y {36 36} + -t 1.74358 -s 3 -d 0 -p ack -e 40 -c 0 -i 319 -a 0 -S 0 -y {36 36} - -t 1.74358 -s 3 -d 0 -p ack -e 40 -c 0 -i 319 -a 0 -S 0 -f 0 -m 1 -y {36 36} h -t 1.74358 -s 3 -d 0 -p ack -e 40 -c 0 -i 319 -a 0 -S 0 -y {-1 -1} r -t 1.7436 -s 3 -d 4 -p cbr -e 500 -c 1 -i 305 -a 1 + -t 1.7436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 305 -a 1 r -t 1.7436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 297 -a 1 - -t 1.7436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 305 -a 1 h -t 1.7436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 305 -a 1 r -t 1.744 -s 1 -d 3 -p cbr -e 500 -c 1 -i 330 -a 1 + -t 1.744 -s 3 -d 4 -p cbr -e 500 -c 1 -i 330 -a 1 r -t 1.74526 -s 5 -d 4 -p ack -e 40 -c 0 -i 331 -a 0 -S 0 -y {38 38} + -t 1.74526 -s 4 -d 3 -p ack -e 40 -c 0 -i 331 -a 0 -S 0 -y {38 38} - -t 1.74526 -s 4 -d 3 -p ack -e 40 -c 0 -i 331 -a 0 -S 0 -y {38 38} h -t 1.74526 -s 4 -d 3 -p ack -e 40 -c 0 -i 331 -a 0 -S 0 -y {-1 -1} - -t 1.7456 -s 3 -d 4 -p cbr -e 500 -c 1 -i 317 -a 1 h -t 1.7456 -s 3 -d 4 -p cbr -e 500 -c 1 -i 317 -a 1 r -t 1.7476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 299 -a 1 r -t 1.748 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 329 -a 1 + -t 1.748 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 329 -a 1 - -t 1.7496 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 316 -a 1 h -t 1.7496 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 316 -a 1 + -t 1.75 -s 1 -d 3 -p cbr -e 500 -c 1 -i 337 -a 1 - -t 1.75 -s 1 -d 3 -p cbr -e 500 -c 1 -i 337 -a 1 h -t 1.75 -s 1 -d 3 -p cbr -e 500 -c 1 -i 337 -a 1 r -t 1.7516 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 304 -a 1 + -t 1.7516 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 304 -a 1 - -t 1.7516 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 304 -a 1 h -t 1.7516 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 304 -a 1 r -t 1.7516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 301 -a 1 r -t 1.754 -s 1 -d 3 -p cbr -e 500 -c 1 -i 332 -a 1 + -t 1.754 -s 3 -d 4 -p cbr -e 500 -c 1 -i 332 -a 1 r -t 1.7556 -s 3 -d 4 -p cbr -e 500 -c 1 -i 306 -a 1 + -t 1.7556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 306 -a 1 - -t 1.7556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 306 -a 1 h -t 1.7556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 306 -a 1 r -t 1.75725 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 333 -a 0 -S 0 -y {43 43} + -t 1.75725 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 333 -a 0 -S 0 -y {43 43} r -t 1.75726 -s 5 -d 4 -p ack -e 40 -c 0 -i 334 -a 0 -S 0 -y {39 39} + -t 1.75726 -s 4 -d 3 -p ack -e 40 -c 0 -i 334 -a 0 -S 0 -y {39 39} - -t 1.75726 -s 4 -d 3 -p ack -e 40 -c 0 -i 334 -a 0 -S 0 -y {39 39} h -t 1.75726 -s 4 -d 3 -p ack -e 40 -c 0 -i 334 -a 0 -S 0 -y {-1 -1} - -t 1.7576 -s 3 -d 4 -p cbr -e 500 -c 1 -i 318 -a 1 h -t 1.7576 -s 3 -d 4 -p cbr -e 500 -c 1 -i 318 -a 1 r -t 1.7596 -s 3 -d 4 -p cbr -e 500 -c 1 -i 308 -a 1 + -t 1.7596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 308 -a 1 - -t 1.7596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 308 -a 1 h -t 1.7596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 308 -a 1 + -t 1.76 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 338 -a 1 - -t 1.76 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 338 -a 1 h -t 1.76 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 338 -a 1 + -t 1.76 -s 1 -d 3 -p cbr -e 500 -c 1 -i 339 -a 1 - -t 1.76 -s 1 -d 3 -p cbr -e 500 -c 1 -i 339 -a 1 h -t 1.76 -s 1 -d 3 -p cbr -e 500 -c 1 -i 339 -a 1 - -t 1.7616 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 320 -a 0 -S 0 -y {41 41} h -t 1.7616 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 320 -a 0 -S 0 -y {-1 -1} r -t 1.7636 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 300 -a 1 r -t 1.7636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 303 -a 1 r -t 1.76365 -s 3 -d 0 -p ack -e 40 -c 0 -i 319 -a 0 -S 0 -y {36 36} + -t 1.76365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 340 -a 0 -S 0 -f 0 -m 0 -y {44 44} - -t 1.76365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 340 -a 0 -S 0 -y {44 44} h -t 1.76365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 340 -a 0 -S 0 -y {-1 -1} r -t 1.764 -s 1 -d 3 -p cbr -e 500 -c 1 -i 336 -a 1 + -t 1.764 -s 3 -d 4 -p cbr -e 500 -c 1 -i 336 -a 1 r -t 1.7676 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 307 -a 1 + -t 1.7676 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 307 -a 1 - -t 1.7676 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 307 -a 1 h -t 1.7676 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 307 -a 1 r -t 1.7676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 305 -a 1 r -t 1.768 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 335 -a 1 + -t 1.768 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 335 -a 1 - -t 1.7696 -s 3 -d 4 -p cbr -e 500 -c 1 -i 322 -a 1 h -t 1.7696 -s 3 -d 4 -p cbr -e 500 -c 1 -i 322 -a 1 + -t 1.77 -s 1 -d 3 -p cbr -e 500 -c 1 -i 341 -a 1 - -t 1.77 -s 1 -d 3 -p cbr -e 500 -c 1 -i 341 -a 1 h -t 1.77 -s 1 -d 3 -p cbr -e 500 -c 1 -i 341 -a 1 r -t 1.77158 -s 4 -d 3 -p ack -e 40 -c 0 -i 326 -a 0 -S 0 -y {37 37} + -t 1.77158 -s 3 -d 0 -p ack -e 40 -c 0 -i 326 -a 0 -S 0 -y {37 37} - -t 1.77158 -s 3 -d 0 -p ack -e 40 -c 0 -i 326 -a 0 -S 0 -f 0 -m 1 -y {37 37} h -t 1.77158 -s 3 -d 0 -p ack -e 40 -c 0 -i 326 -a 0 -S 0 -y {-1 -1} r -t 1.7716 -s 3 -d 4 -p cbr -e 500 -c 1 -i 310 -a 1 + -t 1.7716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 310 -a 1 - -t 1.7716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 310 -a 1 h -t 1.7716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 310 -a 1 - -t 1.7736 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 321 -a 1 h -t 1.7736 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 321 -a 1 r -t 1.774 -s 1 -d 3 -p cbr -e 500 -c 1 -i 337 -a 1 + -t 1.774 -s 3 -d 4 -p cbr -e 500 -c 1 -i 337 -a 1 r -t 1.7756 -s 3 -d 4 -p cbr -e 500 -c 1 -i 312 -a 1 + -t 1.7756 -s 4 -d 6 -p cbr -e 500 -c 1 -i 312 -a 1 - -t 1.7756 -s 4 -d 6 -p cbr -e 500 -c 1 -i 312 -a 1 h -t 1.7756 -s 4 -d 6 -p cbr -e 500 -c 1 -i 312 -a 1 r -t 1.7796 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 304 -a 1 r -t 1.7796 -s 4 -d 6 -p cbr -e 500 -c 1 -i 306 -a 1 + -t 1.78 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 342 -a 1 - -t 1.78 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 342 -a 1 h -t 1.78 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 342 -a 1 + -t 1.78 -s 1 -d 3 -p cbr -e 500 -c 1 -i 343 -a 1 - -t 1.78 -s 1 -d 3 -p cbr -e 500 -c 1 -i 343 -a 1 h -t 1.78 -s 1 -d 3 -p cbr -e 500 -c 1 -i 343 -a 1 - -t 1.7816 -s 3 -d 4 -p cbr -e 500 -c 1 -i 323 -a 1 h -t 1.7816 -s 3 -d 4 -p cbr -e 500 -c 1 -i 323 -a 1 r -t 1.7836 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 311 -a 1 + -t 1.7836 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 311 -a 1 - -t 1.7836 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 311 -a 1 h -t 1.7836 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 311 -a 1 r -t 1.7836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 308 -a 1 r -t 1.784 -s 1 -d 3 -p cbr -e 500 -c 1 -i 339 -a 1 + -t 1.784 -s 3 -d 4 -p cbr -e 500 -c 1 -i 339 -a 1 r -t 1.78525 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 340 -a 0 -S 0 -y {44 44} + -t 1.78525 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 340 -a 0 -S 0 -y {44 44} - -t 1.7856 -s 3 -d 4 -p cbr -e 500 -c 1 -i 325 -a 1 h -t 1.7856 -s 3 -d 4 -p cbr -e 500 -c 1 -i 325 -a 1 r -t 1.788 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 338 -a 1 + -t 1.788 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 338 -a 1 - -t 1.7896 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 324 -a 1 h -t 1.7896 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 324 -a 1 + -t 1.79 -s 1 -d 3 -p cbr -e 500 -c 1 -i 344 -a 1 - -t 1.79 -s 1 -d 3 -p cbr -e 500 -c 1 -i 344 -a 1 h -t 1.79 -s 1 -d 3 -p cbr -e 500 -c 1 -i 344 -a 1 r -t 1.7916 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 315 -a 0 -S 0 -y {40 40} + -t 1.7916 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 315 -a 0 -S 0 -y {40 40} - -t 1.7916 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 315 -a 0 -S 0 -y {40 40} h -t 1.7916 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 315 -a 0 -S 0 -y {-1 -1} r -t 1.79165 -s 3 -d 0 -p ack -e 40 -c 0 -i 326 -a 0 -S 0 -y {37 37} + -t 1.79165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 345 -a 0 -S 0 -f 0 -m 0 -y {45 45} - -t 1.79165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 345 -a 0 -S 0 -y {45 45} h -t 1.79165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 345 -a 0 -S 0 -y {-1 -1} r -t 1.794 -s 1 -d 3 -p cbr -e 500 -c 1 -i 341 -a 1 + -t 1.794 -s 3 -d 4 -p cbr -e 500 -c 1 -i 341 -a 1 r -t 1.79558 -s 4 -d 3 -p ack -e 40 -c 0 -i 331 -a 0 -S 0 -y {38 38} + -t 1.79558 -s 3 -d 0 -p ack -e 40 -c 0 -i 331 -a 0 -S 0 -y {38 38} - -t 1.79558 -s 3 -d 0 -p ack -e 40 -c 0 -i 331 -a 0 -S 0 -f 0 -m 1 -y {38 38} h -t 1.79558 -s 3 -d 0 -p ack -e 40 -c 0 -i 331 -a 0 -S 0 -y {-1 -1} r -t 1.7956 -s 3 -d 4 -p cbr -e 500 -c 1 -i 314 -a 1 + -t 1.7956 -s 4 -d 6 -p cbr -e 500 -c 1 -i 314 -a 1 - -t 1.7956 -s 4 -d 6 -p cbr -e 500 -c 1 -i 314 -a 1 h -t 1.7956 -s 4 -d 6 -p cbr -e 500 -c 1 -i 314 -a 1 r -t 1.7956 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 307 -a 1 r -t 1.7956 -s 4 -d 6 -p cbr -e 500 -c 1 -i 310 -a 1 - -t 1.7976 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 328 -a 0 -S 0 -y {42 42} h -t 1.7976 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 328 -a 0 -S 0 -y {-1 -1} r -t 1.7996 -s 3 -d 4 -p cbr -e 500 -c 1 -i 317 -a 1 + -t 1.7996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 317 -a 1 r -t 1.7996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 312 -a 1 - -t 1.7996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 317 -a 1 h -t 1.7996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 317 -a 1 + -t 1.8 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 346 -a 1 - -t 1.8 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 346 -a 1 h -t 1.8 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 346 -a 1 + -t 1.8 -s 1 -d 3 -p cbr -e 500 -c 1 -i 347 -a 1 - -t 1.8 -s 1 -d 3 -p cbr -e 500 -c 1 -i 347 -a 1 h -t 1.8 -s 1 -d 3 -p cbr -e 500 -c 1 -i 347 -a 1 r -t 1.804 -s 1 -d 3 -p cbr -e 500 -c 1 -i 343 -a 1 + -t 1.804 -s 3 -d 4 -p cbr -e 500 -c 1 -i 343 -a 1 - -t 1.8056 -s 3 -d 4 -p cbr -e 500 -c 1 -i 327 -a 1 h -t 1.8056 -s 3 -d 4 -p cbr -e 500 -c 1 -i 327 -a 1 r -t 1.80758 -s 4 -d 3 -p ack -e 40 -c 0 -i 334 -a 0 -S 0 -y {39 39} + -t 1.80758 -s 3 -d 0 -p ack -e 40 -c 0 -i 334 -a 0 -S 0 -y {39 39} - -t 1.80758 -s 3 -d 0 -p ack -e 40 -c 0 -i 334 -a 0 -S 0 -f 0 -m 1 -y {39 39} h -t 1.80758 -s 3 -d 0 -p ack -e 40 -c 0 -i 334 -a 0 -S 0 -y {-1 -1} r -t 1.8076 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 316 -a 1 + -t 1.8076 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 316 -a 1 - -t 1.8076 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 316 -a 1 h -t 1.8076 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 316 -a 1 r -t 1.808 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 342 -a 1 + -t 1.808 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 342 -a 1 - -t 1.8096 -s 3 -d 4 -p cbr -e 500 -c 1 -i 330 -a 1 h -t 1.8096 -s 3 -d 4 -p cbr -e 500 -c 1 -i 330 -a 1 + -t 1.81 -s 1 -d 3 -p cbr -e 500 -c 1 -i 348 -a 1 - -t 1.81 -s 1 -d 3 -p cbr -e 500 -c 1 -i 348 -a 1 h -t 1.81 -s 1 -d 3 -p cbr -e 500 -c 1 -i 348 -a 1 r -t 1.8116 -s 3 -d 4 -p cbr -e 500 -c 1 -i 318 -a 1 + -t 1.8116 -s 4 -d 6 -p cbr -e 500 -c 1 -i 318 -a 1 - -t 1.8116 -s 4 -d 6 -p cbr -e 500 -c 1 -i 318 -a 1 h -t 1.8116 -s 4 -d 6 -p cbr -e 500 -c 1 -i 318 -a 1 r -t 1.8116 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 311 -a 1 r -t 1.8132 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 315 -a 0 -S 0 -y {40 40} + -t 1.8132 -s 5 -d 4 -p ack -e 40 -c 0 -i 349 -a 0 -S 0 -y {40 40} - -t 1.8132 -s 5 -d 4 -p ack -e 40 -c 0 -i 349 -a 0 -S 0 -y {40 40} h -t 1.8132 -s 5 -d 4 -p ack -e 40 -c 0 -i 349 -a 0 -S 0 -y {-1 -1} r -t 1.81325 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 345 -a 0 -S 0 -y {45 45} + -t 1.81325 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 345 -a 0 -S 0 -y {45 45} - -t 1.8136 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 329 -a 1 h -t 1.8136 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 329 -a 1 r -t 1.814 -s 1 -d 3 -p cbr -e 500 -c 1 -i 344 -a 1 + -t 1.814 -s 3 -d 4 -p cbr -e 500 -c 1 -i 344 -a 1 r -t 1.81565 -s 3 -d 0 -p ack -e 40 -c 0 -i 331 -a 0 -S 0 -y {38 38} + -t 1.81565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 350 -a 0 -S 0 -f 0 -m 0 -y {46 46} - -t 1.81565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 350 -a 0 -S 0 -y {46 46} h -t 1.81565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 350 -a 0 -S 0 -y {-1 -1} r -t 1.8196 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 320 -a 0 -S 0 -y {41 41} + -t 1.8196 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 320 -a 0 -S 0 -y {41 41} - -t 1.8196 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 320 -a 0 -S 0 -y {41 41} h -t 1.8196 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 320 -a 0 -S 0 -y {-1 -1} r -t 1.8196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 314 -a 1 + -t 1.82 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 351 -a 1 - -t 1.82 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 351 -a 1 h -t 1.82 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 351 -a 1 + -t 1.82 -s 1 -d 3 -p cbr -e 500 -c 1 -i 352 -a 1 - -t 1.82 -s 1 -d 3 -p cbr -e 500 -c 1 -i 352 -a 1 h -t 1.82 -s 1 -d 3 -p cbr -e 500 -c 1 -i 352 -a 1 - -t 1.8216 -s 3 -d 4 -p cbr -e 500 -c 1 -i 332 -a 1 h -t 1.8216 -s 3 -d 4 -p cbr -e 500 -c 1 -i 332 -a 1 r -t 1.8236 -s 3 -d 4 -p cbr -e 500 -c 1 -i 322 -a 1 + -t 1.8236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 322 -a 1 - -t 1.8236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 322 -a 1 h -t 1.8236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 322 -a 1 r -t 1.8236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 317 -a 1 r -t 1.824 -s 1 -d 3 -p cbr -e 500 -c 1 -i 347 -a 1 + -t 1.824 -s 3 -d 4 -p cbr -e 500 -c 1 -i 347 -a 1 - -t 1.8256 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 333 -a 0 -S 0 -y {43 43} h -t 1.8256 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 333 -a 0 -S 0 -y {-1 -1} r -t 1.82765 -s 3 -d 0 -p ack -e 40 -c 0 -i 334 -a 0 -S 0 -y {39 39} + -t 1.82765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 353 -a 0 -S 0 -f 0 -m 0 -y {47 47} - -t 1.82765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 353 -a 0 -S 0 -y {47 47} h -t 1.82765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 353 -a 0 -S 0 -y {-1 -1} r -t 1.828 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 346 -a 1 + -t 1.828 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 346 -a 1 + -t 1.83 -s 1 -d 3 -p cbr -e 500 -c 1 -i 354 -a 1 - -t 1.83 -s 1 -d 3 -p cbr -e 500 -c 1 -i 354 -a 1 h -t 1.83 -s 1 -d 3 -p cbr -e 500 -c 1 -i 354 -a 1 r -t 1.8316 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 321 -a 1 + -t 1.8316 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 321 -a 1 - -t 1.8316 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 321 -a 1 h -t 1.8316 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 321 -a 1 r -t 1.83326 -s 5 -d 4 -p ack -e 40 -c 0 -i 349 -a 0 -S 0 -y {40 40} + -t 1.83326 -s 4 -d 3 -p ack -e 40 -c 0 -i 349 -a 0 -S 0 -y {40 40} - -t 1.83326 -s 4 -d 3 -p ack -e 40 -c 0 -i 349 -a 0 -S 0 -y {40 40} h -t 1.83326 -s 4 -d 3 -p ack -e 40 -c 0 -i 349 -a 0 -S 0 -y {-1 -1} - -t 1.8336 -s 3 -d 4 -p cbr -e 500 -c 1 -i 336 -a 1 h -t 1.8336 -s 3 -d 4 -p cbr -e 500 -c 1 -i 336 -a 1 r -t 1.834 -s 1 -d 3 -p cbr -e 500 -c 1 -i 348 -a 1 + -t 1.834 -s 3 -d 4 -p cbr -e 500 -c 1 -i 348 -a 1 r -t 1.8356 -s 3 -d 4 -p cbr -e 500 -c 1 -i 323 -a 1 + -t 1.8356 -s 4 -d 6 -p cbr -e 500 -c 1 -i 323 -a 1 - -t 1.8356 -s 4 -d 6 -p cbr -e 500 -c 1 -i 323 -a 1 h -t 1.8356 -s 4 -d 6 -p cbr -e 500 -c 1 -i 323 -a 1 r -t 1.8356 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 316 -a 1 r -t 1.8356 -s 4 -d 6 -p cbr -e 500 -c 1 -i 318 -a 1 r -t 1.83725 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 350 -a 0 -S 0 -y {46 46} + -t 1.83725 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 350 -a 0 -S 0 -y {46 46} - -t 1.8376 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 335 -a 1 h -t 1.8376 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 335 -a 1 r -t 1.8396 -s 3 -d 4 -p cbr -e 500 -c 1 -i 325 -a 1 + -t 1.8396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 325 -a 1 - -t 1.8396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 325 -a 1 h -t 1.8396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 325 -a 1 + -t 1.84 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 355 -a 1 - -t 1.84 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 355 -a 1 h -t 1.84 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 355 -a 1 + -t 1.84 -s 1 -d 3 -p cbr -e 500 -c 1 -i 356 -a 1 - -t 1.84 -s 1 -d 3 -p cbr -e 500 -c 1 -i 356 -a 1 h -t 1.84 -s 1 -d 3 -p cbr -e 500 -c 1 -i 356 -a 1 r -t 1.8412 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 320 -a 0 -S 0 -y {41 41} + -t 1.8412 -s 5 -d 4 -p ack -e 40 -c 0 -i 357 -a 0 -S 0 -y {41 41} - -t 1.8412 -s 5 -d 4 -p ack -e 40 -c 0 -i 357 -a 0 -S 0 -y {41 41} h -t 1.8412 -s 5 -d 4 -p ack -e 40 -c 0 -i 357 -a 0 -S 0 -y {-1 -1} r -t 1.844 -s 1 -d 3 -p cbr -e 500 -c 1 -i 352 -a 1 + -t 1.844 -s 3 -d 4 -p cbr -e 500 -c 1 -i 352 -a 1 - -t 1.8456 -s 3 -d 4 -p cbr -e 500 -c 1 -i 337 -a 1 h -t 1.8456 -s 3 -d 4 -p cbr -e 500 -c 1 -i 337 -a 1 r -t 1.8476 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 324 -a 1 + -t 1.8476 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 324 -a 1 - -t 1.8476 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 324 -a 1 h -t 1.8476 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 324 -a 1 r -t 1.8476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 322 -a 1 r -t 1.848 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 351 -a 1 + -t 1.848 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 351 -a 1 r -t 1.84925 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 353 -a 0 -S 0 -y {47 47} + -t 1.84925 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 353 -a 0 -S 0 -y {47 47} d -t 1.84925 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 353 -a 0 -S 0 -y {47 47} - -t 1.8496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 339 -a 1 h -t 1.8496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 339 -a 1 + -t 1.85 -s 1 -d 3 -p cbr -e 500 -c 1 -i 358 -a 1 - -t 1.85 -s 1 -d 3 -p cbr -e 500 -c 1 -i 358 -a 1 h -t 1.85 -s 1 -d 3 -p cbr -e 500 -c 1 -i 358 -a 1 - -t 1.8536 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 340 -a 0 -S 0 -y {44 44} h -t 1.8536 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 340 -a 0 -S 0 -y {-1 -1} r -t 1.854 -s 1 -d 3 -p cbr -e 500 -c 1 -i 354 -a 1 + -t 1.854 -s 3 -d 4 -p cbr -e 500 -c 1 -i 354 -a 1 r -t 1.8556 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 328 -a 0 -S 0 -y {42 42} + -t 1.8556 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 328 -a 0 -S 0 -y {42 42} - -t 1.8556 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 328 -a 0 -S 0 -y {42 42} h -t 1.8556 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 328 -a 0 -S 0 -y {-1 -1} r -t 1.8596 -s 3 -d 4 -p cbr -e 500 -c 1 -i 327 -a 1 + -t 1.8596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 327 -a 1 - -t 1.8596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 327 -a 1 h -t 1.8596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 327 -a 1 r -t 1.8596 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 321 -a 1 r -t 1.8596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 323 -a 1 + -t 1.86 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 359 -a 1 - -t 1.86 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 359 -a 1 h -t 1.86 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 359 -a 1 + -t 1.86 -s 1 -d 3 -p cbr -e 500 -c 1 -i 360 -a 1 - -t 1.86 -s 1 -d 3 -p cbr -e 500 -c 1 -i 360 -a 1 h -t 1.86 -s 1 -d 3 -p cbr -e 500 -c 1 -i 360 -a 1 r -t 1.86126 -s 5 -d 4 -p ack -e 40 -c 0 -i 357 -a 0 -S 0 -y {41 41} + -t 1.86126 -s 4 -d 3 -p ack -e 40 -c 0 -i 357 -a 0 -S 0 -y {41 41} - -t 1.86126 -s 4 -d 3 -p ack -e 40 -c 0 -i 357 -a 0 -S 0 -y {41 41} h -t 1.86126 -s 4 -d 3 -p ack -e 40 -c 0 -i 357 -a 0 -S 0 -y {-1 -1} - -t 1.8616 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 338 -a 1 h -t 1.8616 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 338 -a 1 r -t 1.8636 -s 3 -d 4 -p cbr -e 500 -c 1 -i 330 -a 1 + -t 1.8636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 330 -a 1 r -t 1.8636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 325 -a 1 - -t 1.8636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 330 -a 1 h -t 1.8636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 330 -a 1 r -t 1.864 -s 1 -d 3 -p cbr -e 500 -c 1 -i 356 -a 1 + -t 1.864 -s 3 -d 4 -p cbr -e 500 -c 1 -i 356 -a 1 r -t 1.868 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 355 -a 1 + -t 1.868 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 355 -a 1 - -t 1.8696 -s 3 -d 4 -p cbr -e 500 -c 1 -i 341 -a 1 h -t 1.8696 -s 3 -d 4 -p cbr -e 500 -c 1 -i 341 -a 1 + -t 1.87 -s 1 -d 3 -p cbr -e 500 -c 1 -i 361 -a 1 - -t 1.87 -s 1 -d 3 -p cbr -e 500 -c 1 -i 361 -a 1 h -t 1.87 -s 1 -d 3 -p cbr -e 500 -c 1 -i 361 -a 1 r -t 1.8716 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 329 -a 1 + -t 1.8716 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 329 -a 1 - -t 1.8716 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 329 -a 1 h -t 1.8716 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 329 -a 1 - -t 1.8736 -s 3 -d 4 -p cbr -e 500 -c 1 -i 343 -a 1 h -t 1.8736 -s 3 -d 4 -p cbr -e 500 -c 1 -i 343 -a 1 r -t 1.874 -s 1 -d 3 -p cbr -e 500 -c 1 -i 358 -a 1 + -t 1.874 -s 3 -d 4 -p cbr -e 500 -c 1 -i 358 -a 1 r -t 1.8756 -s 3 -d 4 -p cbr -e 500 -c 1 -i 332 -a 1 + -t 1.8756 -s 4 -d 6 -p cbr -e 500 -c 1 -i 332 -a 1 - -t 1.8756 -s 4 -d 6 -p cbr -e 500 -c 1 -i 332 -a 1 h -t 1.8756 -s 4 -d 6 -p cbr -e 500 -c 1 -i 332 -a 1 r -t 1.8756 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 324 -a 1 r -t 1.8772 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 328 -a 0 -S 0 -y {42 42} + -t 1.8772 -s 5 -d 4 -p ack -e 40 -c 0 -i 362 -a 0 -S 0 -y {42 42} - -t 1.8772 -s 5 -d 4 -p ack -e 40 -c 0 -i 362 -a 0 -S 0 -y {42 42} h -t 1.8772 -s 5 -d 4 -p ack -e 40 -c 0 -i 362 -a 0 -S 0 -y {-1 -1} - -t 1.8776 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 342 -a 1 h -t 1.8776 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 342 -a 1 + -t 1.88 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 363 -a 1 - -t 1.88 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 363 -a 1 h -t 1.88 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 363 -a 1 + -t 1.88 -s 1 -d 3 -p cbr -e 500 -c 1 -i 364 -a 1 - -t 1.88 -s 1 -d 3 -p cbr -e 500 -c 1 -i 364 -a 1 h -t 1.88 -s 1 -d 3 -p cbr -e 500 -c 1 -i 364 -a 1 r -t 1.88358 -s 4 -d 3 -p ack -e 40 -c 0 -i 349 -a 0 -S 0 -y {40 40} + -t 1.88358 -s 3 -d 0 -p ack -e 40 -c 0 -i 349 -a 0 -S 0 -y {40 40} - -t 1.88358 -s 3 -d 0 -p ack -e 40 -c 0 -i 349 -a 0 -S 0 -f 0 -m 1 -y {40 40} h -t 1.88358 -s 3 -d 0 -p ack -e 40 -c 0 -i 349 -a 0 -S 0 -y {-1 -1} r -t 1.8836 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 333 -a 0 -S 0 -y {43 43} + -t 1.8836 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 333 -a 0 -S 0 -y {43 43} - -t 1.8836 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 333 -a 0 -S 0 -y {43 43} h -t 1.8836 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 333 -a 0 -S 0 -y {-1 -1} r -t 1.8836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 327 -a 1 r -t 1.884 -s 1 -d 3 -p cbr -e 500 -c 1 -i 360 -a 1 + -t 1.884 -s 3 -d 4 -p cbr -e 500 -c 1 -i 360 -a 1 - -t 1.8856 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 345 -a 0 -S 0 -y {45 45} h -t 1.8856 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 345 -a 0 -S 0 -y {-1 -1} r -t 1.8876 -s 3 -d 4 -p cbr -e 500 -c 1 -i 336 -a 1 + -t 1.8876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 336 -a 1 - -t 1.8876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 336 -a 1 h -t 1.8876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 336 -a 1 r -t 1.8876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 330 -a 1 r -t 1.888 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 359 -a 1 + -t 1.888 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 359 -a 1 + -t 1.89 -s 1 -d 3 -p cbr -e 500 -c 1 -i 365 -a 1 - -t 1.89 -s 1 -d 3 -p cbr -e 500 -c 1 -i 365 -a 1 h -t 1.89 -s 1 -d 3 -p cbr -e 500 -c 1 -i 365 -a 1 - -t 1.8936 -s 3 -d 4 -p cbr -e 500 -c 1 -i 344 -a 1 h -t 1.8936 -s 3 -d 4 -p cbr -e 500 -c 1 -i 344 -a 1 r -t 1.894 -s 1 -d 3 -p cbr -e 500 -c 1 -i 361 -a 1 + -t 1.894 -s 3 -d 4 -p cbr -e 500 -c 1 -i 361 -a 1 r -t 1.8956 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 335 -a 1 + -t 1.8956 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 335 -a 1 - -t 1.8956 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 335 -a 1 h -t 1.8956 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 335 -a 1 r -t 1.89726 -s 5 -d 4 -p ack -e 40 -c 0 -i 362 -a 0 -S 0 -y {42 42} + -t 1.89726 -s 4 -d 3 -p ack -e 40 -c 0 -i 362 -a 0 -S 0 -y {42 42} - -t 1.89726 -s 4 -d 3 -p ack -e 40 -c 0 -i 362 -a 0 -S 0 -y {42 42} h -t 1.89726 -s 4 -d 3 -p ack -e 40 -c 0 -i 362 -a 0 -S 0 -y {-1 -1} - -t 1.8976 -s 3 -d 4 -p cbr -e 500 -c 1 -i 347 -a 1 h -t 1.8976 -s 3 -d 4 -p cbr -e 500 -c 1 -i 347 -a 1 r -t 1.8996 -s 3 -d 4 -p cbr -e 500 -c 1 -i 337 -a 1 + -t 1.8996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 337 -a 1 - -t 1.8996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 337 -a 1 h -t 1.8996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 337 -a 1 r -t 1.8996 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 329 -a 1 r -t 1.8996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 332 -a 1 + -t 1.9 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 366 -a 1 - -t 1.9 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 366 -a 1 h -t 1.9 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 366 -a 1 + -t 1.9 -s 1 -d 3 -p cbr -e 500 -c 1 -i 367 -a 1 - -t 1.9 -s 1 -d 3 -p cbr -e 500 -c 1 -i 367 -a 1 h -t 1.9 -s 1 -d 3 -p cbr -e 500 -c 1 -i 367 -a 1 - -t 1.9016 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 346 -a 1 h -t 1.9016 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 346 -a 1 r -t 1.9036 -s 3 -d 4 -p cbr -e 500 -c 1 -i 339 -a 1 + -t 1.9036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 339 -a 1 - -t 1.9036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 339 -a 1 h -t 1.9036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 339 -a 1 r -t 1.90365 -s 3 -d 0 -p ack -e 40 -c 0 -i 349 -a 0 -S 0 -y {40 40} + -t 1.90365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 368 -a 0 -S 0 -f 0 -m 0 -y {48 48} - -t 1.90365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 368 -a 0 -S 0 -y {48 48} h -t 1.90365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 368 -a 0 -S 0 -y {-1 -1} r -t 1.904 -s 1 -d 3 -p cbr -e 500 -c 1 -i 364 -a 1 + -t 1.904 -s 3 -d 4 -p cbr -e 500 -c 1 -i 364 -a 1 r -t 1.9052 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 333 -a 0 -S 0 -y {43 43} + -t 1.9052 -s 5 -d 4 -p ack -e 40 -c 0 -i 369 -a 0 -S 0 -y {43 43} - -t 1.9052 -s 5 -d 4 -p ack -e 40 -c 0 -i 369 -a 0 -S 0 -y {43 43} h -t 1.9052 -s 5 -d 4 -p ack -e 40 -c 0 -i 369 -a 0 -S 0 -y {-1 -1} r -t 1.908 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 363 -a 1 + -t 1.908 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 363 -a 1 - -t 1.9096 -s 3 -d 4 -p cbr -e 500 -c 1 -i 348 -a 1 h -t 1.9096 -s 3 -d 4 -p cbr -e 500 -c 1 -i 348 -a 1 + -t 1.91 -s 1 -d 3 -p cbr -e 500 -c 1 -i 370 -a 1 - -t 1.91 -s 1 -d 3 -p cbr -e 500 -c 1 -i 370 -a 1 h -t 1.91 -s 1 -d 3 -p cbr -e 500 -c 1 -i 370 -a 1 r -t 1.91158 -s 4 -d 3 -p ack -e 40 -c 0 -i 357 -a 0 -S 0 -y {41 41} + -t 1.91158 -s 3 -d 0 -p ack -e 40 -c 0 -i 357 -a 0 -S 0 -y {41 41} - -t 1.91158 -s 3 -d 0 -p ack -e 40 -c 0 -i 357 -a 0 -S 0 -f 0 -m 1 -y {41 41} h -t 1.91158 -s 3 -d 0 -p ack -e 40 -c 0 -i 357 -a 0 -S 0 -y {-1 -1} r -t 1.9116 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 340 -a 0 -S 0 -y {44 44} + -t 1.9116 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 340 -a 0 -S 0 -y {44 44} - -t 1.9116 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 340 -a 0 -S 0 -y {44 44} h -t 1.9116 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 340 -a 0 -S 0 -y {-1 -1} r -t 1.9116 -s 4 -d 6 -p cbr -e 500 -c 1 -i 336 -a 1 - -t 1.9136 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 350 -a 0 -S 0 -y {46 46} h -t 1.9136 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 350 -a 0 -S 0 -y {-1 -1} r -t 1.914 -s 1 -d 3 -p cbr -e 500 -c 1 -i 365 -a 1 + -t 1.914 -s 3 -d 4 -p cbr -e 500 -c 1 -i 365 -a 1 r -t 1.9196 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 338 -a 1 + -t 1.9196 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 338 -a 1 - -t 1.9196 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 338 -a 1 h -t 1.9196 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 338 -a 1 + -t 1.92 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 371 -a 1 - -t 1.92 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 371 -a 1 h -t 1.92 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 371 -a 1 + -t 1.92 -s 1 -d 3 -p cbr -e 500 -c 1 -i 372 -a 1 - -t 1.92 -s 1 -d 3 -p cbr -e 500 -c 1 -i 372 -a 1 h -t 1.92 -s 1 -d 3 -p cbr -e 500 -c 1 -i 372 -a 1 - -t 1.9216 -s 3 -d 4 -p cbr -e 500 -c 1 -i 352 -a 1 h -t 1.9216 -s 3 -d 4 -p cbr -e 500 -c 1 -i 352 -a 1 r -t 1.9236 -s 3 -d 4 -p cbr -e 500 -c 1 -i 341 -a 1 + -t 1.9236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 341 -a 1 - -t 1.9236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 341 -a 1 h -t 1.9236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 341 -a 1 r -t 1.9236 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 335 -a 1 r -t 1.9236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 337 -a 1 r -t 1.924 -s 1 -d 3 -p cbr -e 500 -c 1 -i 367 -a 1 + -t 1.924 -s 3 -d 4 -p cbr -e 500 -c 1 -i 367 -a 1 r -t 1.92525 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 368 -a 0 -S 0 -y {48 48} + -t 1.92525 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 368 -a 0 -S 0 -y {48 48} r -t 1.92526 -s 5 -d 4 -p ack -e 40 -c 0 -i 369 -a 0 -S 0 -y {43 43} + -t 1.92526 -s 4 -d 3 -p ack -e 40 -c 0 -i 369 -a 0 -S 0 -y {43 43} - -t 1.92526 -s 4 -d 3 -p ack -e 40 -c 0 -i 369 -a 0 -S 0 -y {43 43} h -t 1.92526 -s 4 -d 3 -p ack -e 40 -c 0 -i 369 -a 0 -S 0 -y {-1 -1} - -t 1.9256 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 351 -a 1 h -t 1.9256 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 351 -a 1 r -t 1.9276 -s 3 -d 4 -p cbr -e 500 -c 1 -i 343 -a 1 + -t 1.9276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 343 -a 1 r -t 1.9276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 339 -a 1 - -t 1.9276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 343 -a 1 h -t 1.9276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 343 -a 1 r -t 1.928 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 366 -a 1 + -t 1.928 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 366 -a 1 + -t 1.93 -s 1 -d 3 -p cbr -e 500 -c 1 -i 373 -a 1 - -t 1.93 -s 1 -d 3 -p cbr -e 500 -c 1 -i 373 -a 1 h -t 1.93 -s 1 -d 3 -p cbr -e 500 -c 1 -i 373 -a 1 r -t 1.93165 -s 3 -d 0 -p ack -e 40 -c 0 -i 357 -a 0 -S 0 -y {41 41} + -t 1.93165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 374 -a 0 -S 0 -f 0 -m 0 -y {49 49} - -t 1.93165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 374 -a 0 -S 0 -y {49 49} h -t 1.93165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 374 -a 0 -S 0 -y {-1 -1} r -t 1.9332 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 340 -a 0 -S 0 -y {44 44} + -t 1.9332 -s 5 -d 4 -p ack -e 40 -c 0 -i 375 -a 0 -S 0 -y {44 44} - -t 1.9332 -s 5 -d 4 -p ack -e 40 -c 0 -i 375 -a 0 -S 0 -y {44 44} h -t 1.9332 -s 5 -d 4 -p ack -e 40 -c 0 -i 375 -a 0 -S 0 -y {-1 -1} - -t 1.9336 -s 3 -d 4 -p cbr -e 500 -c 1 -i 354 -a 1 h -t 1.9336 -s 3 -d 4 -p cbr -e 500 -c 1 -i 354 -a 1 r -t 1.934 -s 1 -d 3 -p cbr -e 500 -c 1 -i 370 -a 1 + -t 1.934 -s 3 -d 4 -p cbr -e 500 -c 1 -i 370 -a 1 r -t 1.9356 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 342 -a 1 + -t 1.9356 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 342 -a 1 - -t 1.9356 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 342 -a 1 h -t 1.9356 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 342 -a 1 - -t 1.9376 -s 3 -d 4 -p cbr -e 500 -c 1 -i 356 -a 1 h -t 1.9376 -s 3 -d 4 -p cbr -e 500 -c 1 -i 356 -a 1 + -t 1.94 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 376 -a 1 - -t 1.94 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 376 -a 1 h -t 1.94 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 376 -a 1 + -t 1.94 -s 1 -d 3 -p cbr -e 500 -c 1 -i 377 -a 1 - -t 1.94 -s 1 -d 3 -p cbr -e 500 -c 1 -i 377 -a 1 h -t 1.94 -s 1 -d 3 -p cbr -e 500 -c 1 -i 377 -a 1 - -t 1.9416 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 355 -a 1 h -t 1.9416 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 355 -a 1 r -t 1.9436 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 345 -a 0 -S 0 -y {45 45} + -t 1.9436 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 345 -a 0 -S 0 -y {45 45} - -t 1.9436 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 345 -a 0 -S 0 -y {45 45} h -t 1.9436 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 345 -a 0 -S 0 -y {-1 -1} r -t 1.944 -s 1 -d 3 -p cbr -e 500 -c 1 -i 372 -a 1 + -t 1.944 -s 3 -d 4 -p cbr -e 500 -c 1 -i 372 -a 1 r -t 1.94758 -s 4 -d 3 -p ack -e 40 -c 0 -i 362 -a 0 -S 0 -y {42 42} + -t 1.94758 -s 3 -d 0 -p ack -e 40 -c 0 -i 362 -a 0 -S 0 -y {42 42} - -t 1.94758 -s 3 -d 0 -p ack -e 40 -c 0 -i 362 -a 0 -S 0 -f 0 -m 1 -y {42 42} h -t 1.94758 -s 3 -d 0 -p ack -e 40 -c 0 -i 362 -a 0 -S 0 -y {-1 -1} r -t 1.9476 -s 3 -d 4 -p cbr -e 500 -c 1 -i 344 -a 1 + -t 1.9476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 344 -a 1 - -t 1.9476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 344 -a 1 h -t 1.9476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 344 -a 1 r -t 1.9476 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 338 -a 1 r -t 1.9476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 341 -a 1 r -t 1.948 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 371 -a 1 + -t 1.948 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 371 -a 1 - -t 1.9496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 358 -a 1 h -t 1.9496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 358 -a 1 + -t 1.95 -s 1 -d 3 -p cbr -e 500 -c 1 -i 378 -a 1 - -t 1.95 -s 1 -d 3 -p cbr -e 500 -c 1 -i 378 -a 1 h -t 1.95 -s 1 -d 3 -p cbr -e 500 -c 1 -i 378 -a 1 r -t 1.9516 -s 3 -d 4 -p cbr -e 500 -c 1 -i 347 -a 1 + -t 1.9516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 347 -a 1 r -t 1.9516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 343 -a 1 - -t 1.9516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 347 -a 1 h -t 1.9516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 347 -a 1 r -t 1.95325 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 374 -a 0 -S 0 -y {49 49} + -t 1.95325 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 374 -a 0 -S 0 -y {49 49} r -t 1.95326 -s 5 -d 4 -p ack -e 40 -c 0 -i 375 -a 0 -S 0 -y {44 44} + -t 1.95326 -s 4 -d 3 -p ack -e 40 -c 0 -i 375 -a 0 -S 0 -y {44 44} - -t 1.95326 -s 4 -d 3 -p ack -e 40 -c 0 -i 375 -a 0 -S 0 -y {44 44} h -t 1.95326 -s 4 -d 3 -p ack -e 40 -c 0 -i 375 -a 0 -S 0 -y {-1 -1} - -t 1.9536 -s 3 -d 4 -p cbr -e 500 -c 1 -i 360 -a 1 h -t 1.9536 -s 3 -d 4 -p cbr -e 500 -c 1 -i 360 -a 1 r -t 1.954 -s 1 -d 3 -p cbr -e 500 -c 1 -i 373 -a 1 + -t 1.954 -s 3 -d 4 -p cbr -e 500 -c 1 -i 373 -a 1 - -t 1.9576 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 359 -a 1 h -t 1.9576 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 359 -a 1 r -t 1.9596 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 346 -a 1 + -t 1.9596 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 346 -a 1 - -t 1.9596 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 346 -a 1 h -t 1.9596 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 346 -a 1 + -t 1.96 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 379 -a 1 - -t 1.96 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 379 -a 1 h -t 1.96 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 379 -a 1 + -t 1.96 -s 1 -d 3 -p cbr -e 500 -c 1 -i 380 -a 1 - -t 1.96 -s 1 -d 3 -p cbr -e 500 -c 1 -i 380 -a 1 h -t 1.96 -s 1 -d 3 -p cbr -e 500 -c 1 -i 380 -a 1 r -t 1.9636 -s 3 -d 4 -p cbr -e 500 -c 1 -i 348 -a 1 + -t 1.9636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 348 -a 1 - -t 1.9636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 348 -a 1 h -t 1.9636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 348 -a 1 r -t 1.9636 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 342 -a 1 r -t 1.964 -s 1 -d 3 -p cbr -e 500 -c 1 -i 377 -a 1 + -t 1.964 -s 3 -d 4 -p cbr -e 500 -c 1 -i 377 -a 1 r -t 1.9652 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 345 -a 0 -S 0 -y {45 45} + -t 1.9652 -s 5 -d 4 -p ack -e 40 -c 0 -i 381 -a 0 -S 0 -y {45 45} - -t 1.9652 -s 5 -d 4 -p ack -e 40 -c 0 -i 381 -a 0 -S 0 -y {45 45} h -t 1.9652 -s 5 -d 4 -p ack -e 40 -c 0 -i 381 -a 0 -S 0 -y {-1 -1} - -t 1.9656 -s 3 -d 4 -p cbr -e 500 -c 1 -i 361 -a 1 h -t 1.9656 -s 3 -d 4 -p cbr -e 500 -c 1 -i 361 -a 1 r -t 1.96765 -s 3 -d 0 -p ack -e 40 -c 0 -i 362 -a 0 -S 0 -y {42 42} + -t 1.96765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 382 -a 0 -S 0 -f 0 -m 0 -y {50 50} - -t 1.96765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 382 -a 0 -S 0 -y {50 50} h -t 1.96765 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 382 -a 0 -S 0 -y {-1 -1} r -t 1.968 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 376 -a 1 + -t 1.968 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 376 -a 1 - -t 1.9696 -s 3 -d 4 -p cbr -e 500 -c 1 -i 364 -a 1 h -t 1.9696 -s 3 -d 4 -p cbr -e 500 -c 1 -i 364 -a 1 + -t 1.97 -s 1 -d 3 -p cbr -e 500 -c 1 -i 383 -a 1 - -t 1.97 -s 1 -d 3 -p cbr -e 500 -c 1 -i 383 -a 1 h -t 1.97 -s 1 -d 3 -p cbr -e 500 -c 1 -i 383 -a 1 r -t 1.9716 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 350 -a 0 -S 0 -y {46 46} + -t 1.9716 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 350 -a 0 -S 0 -y {46 46} - -t 1.9716 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 350 -a 0 -S 0 -y {46 46} h -t 1.9716 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 350 -a 0 -S 0 -y {-1 -1} r -t 1.9716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 344 -a 1 - -t 1.9736 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 363 -a 1 h -t 1.9736 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 363 -a 1 r -t 1.974 -s 1 -d 3 -p cbr -e 500 -c 1 -i 378 -a 1 + -t 1.974 -s 3 -d 4 -p cbr -e 500 -c 1 -i 378 -a 1 r -t 1.97558 -s 4 -d 3 -p ack -e 40 -c 0 -i 369 -a 0 -S 0 -y {43 43} + -t 1.97558 -s 3 -d 0 -p ack -e 40 -c 0 -i 369 -a 0 -S 0 -y {43 43} - -t 1.97558 -s 3 -d 0 -p ack -e 40 -c 0 -i 369 -a 0 -S 0 -f 0 -m 1 -y {43 43} h -t 1.97558 -s 3 -d 0 -p ack -e 40 -c 0 -i 369 -a 0 -S 0 -y {-1 -1} r -t 1.9756 -s 3 -d 4 -p cbr -e 500 -c 1 -i 352 -a 1 + -t 1.9756 -s 4 -d 6 -p cbr -e 500 -c 1 -i 352 -a 1 - -t 1.9756 -s 4 -d 6 -p cbr -e 500 -c 1 -i 352 -a 1 h -t 1.9756 -s 4 -d 6 -p cbr -e 500 -c 1 -i 352 -a 1 r -t 1.9756 -s 4 -d 6 -p cbr -e 500 -c 1 -i 347 -a 1 + -t 1.98 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 384 -a 1 - -t 1.98 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 384 -a 1 h -t 1.98 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 384 -a 1 + -t 1.98 -s 1 -d 3 -p cbr -e 500 -c 1 -i 385 -a 1 - -t 1.98 -s 1 -d 3 -p cbr -e 500 -c 1 -i 385 -a 1 h -t 1.98 -s 1 -d 3 -p cbr -e 500 -c 1 -i 385 -a 1 - -t 1.9816 -s 3 -d 4 -p cbr -e 500 -c 1 -i 365 -a 1 h -t 1.9816 -s 3 -d 4 -p cbr -e 500 -c 1 -i 365 -a 1 r -t 1.9836 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 351 -a 1 + -t 1.9836 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 351 -a 1 - -t 1.9836 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 351 -a 1 h -t 1.9836 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 351 -a 1 r -t 1.984 -s 1 -d 3 -p cbr -e 500 -c 1 -i 380 -a 1 + -t 1.984 -s 3 -d 4 -p cbr -e 500 -c 1 -i 380 -a 1 r -t 1.98526 -s 5 -d 4 -p ack -e 40 -c 0 -i 381 -a 0 -S 0 -y {45 45} + -t 1.98526 -s 4 -d 3 -p ack -e 40 -c 0 -i 381 -a 0 -S 0 -y {45 45} - -t 1.98526 -s 4 -d 3 -p ack -e 40 -c 0 -i 381 -a 0 -S 0 -y {45 45} h -t 1.98526 -s 4 -d 3 -p ack -e 40 -c 0 -i 381 -a 0 -S 0 -y {-1 -1} - -t 1.9856 -s 3 -d 4 -p cbr -e 500 -c 1 -i 367 -a 1 h -t 1.9856 -s 3 -d 4 -p cbr -e 500 -c 1 -i 367 -a 1 r -t 1.9876 -s 3 -d 4 -p cbr -e 500 -c 1 -i 354 -a 1 + -t 1.9876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 354 -a 1 - -t 1.9876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 354 -a 1 h -t 1.9876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 354 -a 1 r -t 1.9876 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 346 -a 1 r -t 1.9876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 348 -a 1 r -t 1.988 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 379 -a 1 + -t 1.988 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 379 -a 1 r -t 1.98925 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 382 -a 0 -S 0 -y {50 50} + -t 1.98925 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 382 -a 0 -S 0 -y {50 50} - -t 1.9896 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 368 -a 0 -S 0 -y {48 48} h -t 1.9896 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 368 -a 0 -S 0 -y {-1 -1} + -t 1.99 -s 1 -d 3 -p cbr -e 500 -c 1 -i 386 -a 1 - -t 1.99 -s 1 -d 3 -p cbr -e 500 -c 1 -i 386 -a 1 h -t 1.99 -s 1 -d 3 -p cbr -e 500 -c 1 -i 386 -a 1 r -t 1.9916 -s 3 -d 4 -p cbr -e 500 -c 1 -i 356 -a 1 + -t 1.9916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 356 -a 1 - -t 1.9916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 356 -a 1 h -t 1.9916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 356 -a 1 r -t 1.9932 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 350 -a 0 -S 0 -y {46 46} + -t 1.9932 -s 5 -d 4 -p ack -e 40 -c 0 -i 387 -a 0 -S 0 -y {46 46} - -t 1.9932 -s 5 -d 4 -p ack -e 40 -c 0 -i 387 -a 0 -S 0 -y {46 46} h -t 1.9932 -s 5 -d 4 -p ack -e 40 -c 0 -i 387 -a 0 -S 0 -y {-1 -1} r -t 1.994 -s 1 -d 3 -p cbr -e 500 -c 1 -i 383 -a 1 + -t 1.994 -s 3 -d 4 -p cbr -e 500 -c 1 -i 383 -a 1 r -t 1.99565 -s 3 -d 0 -p ack -e 40 -c 0 -i 369 -a 0 -S 0 -y {43 43} + -t 1.99565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 388 -a 0 -S 0 -f 0 -m 0 -y {51 51} - -t 1.99565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 388 -a 0 -S 0 -y {51 51} h -t 1.99565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 388 -a 0 -S 0 -y {-1 -1} - -t 1.9976 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 366 -a 1 h -t 1.9976 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 366 -a 1 r -t 1.9996 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 355 -a 1 + -t 1.9996 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 355 -a 1 - -t 1.9996 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 355 -a 1 h -t 1.9996 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 355 -a 1 r -t 1.9996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 352 -a 1 + -t 2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 389 -a 1 - -t 2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 389 -a 1 h -t 2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 389 -a 1 + -t 2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 390 -a 1 - -t 2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 390 -a 1 h -t 2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 390 -a 1 r -t 2.00358 -s 4 -d 3 -p ack -e 40 -c 0 -i 375 -a 0 -S 0 -y {44 44} + -t 2.00358 -s 3 -d 0 -p ack -e 40 -c 0 -i 375 -a 0 -S 0 -y {44 44} - -t 2.00358 -s 3 -d 0 -p ack -e 40 -c 0 -i 375 -a 0 -S 0 -f 0 -m 1 -y {44 44} h -t 2.00358 -s 3 -d 0 -p ack -e 40 -c 0 -i 375 -a 0 -S 0 -y {-1 -1} r -t 2.0036 -s 3 -d 4 -p cbr -e 500 -c 1 -i 358 -a 1 + -t 2.0036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 358 -a 1 - -t 2.0036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 358 -a 1 h -t 2.0036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 358 -a 1 r -t 2.004 -s 1 -d 3 -p cbr -e 500 -c 1 -i 385 -a 1 + -t 2.004 -s 3 -d 4 -p cbr -e 500 -c 1 -i 385 -a 1 - -t 2.0056 -s 3 -d 4 -p cbr -e 500 -c 1 -i 370 -a 1 h -t 2.0056 -s 3 -d 4 -p cbr -e 500 -c 1 -i 370 -a 1 r -t 2.0076 -s 3 -d 4 -p cbr -e 500 -c 1 -i 360 -a 1 + -t 2.0076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 360 -a 1 - -t 2.0076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 360 -a 1 h -t 2.0076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 360 -a 1 r -t 2.008 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 384 -a 1 + -t 2.008 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 384 -a 1 - -t 2.0096 -s 3 -d 4 -p cbr -e 500 -c 1 -i 372 -a 1 h -t 2.0096 -s 3 -d 4 -p cbr -e 500 -c 1 -i 372 -a 1 + -t 2.01 -s 1 -d 3 -p cbr -e 500 -c 1 -i 391 -a 1 - -t 2.01 -s 1 -d 3 -p cbr -e 500 -c 1 -i 391 -a 1 h -t 2.01 -s 1 -d 3 -p cbr -e 500 -c 1 -i 391 -a 1 r -t 2.0116 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 351 -a 1 r -t 2.0116 -s 4 -d 6 -p cbr -e 500 -c 1 -i 354 -a 1 r -t 2.01326 -s 5 -d 4 -p ack -e 40 -c 0 -i 387 -a 0 -S 0 -y {46 46} + -t 2.01326 -s 4 -d 3 -p ack -e 40 -c 0 -i 387 -a 0 -S 0 -y {46 46} - -t 2.01326 -s 4 -d 3 -p ack -e 40 -c 0 -i 387 -a 0 -S 0 -y {46 46} h -t 2.01326 -s 4 -d 3 -p ack -e 40 -c 0 -i 387 -a 0 -S 0 -y {-1 -1} - -t 2.0136 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 371 -a 1 h -t 2.0136 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 371 -a 1 r -t 2.014 -s 1 -d 3 -p cbr -e 500 -c 1 -i 386 -a 1 + -t 2.014 -s 3 -d 4 -p cbr -e 500 -c 1 -i 386 -a 1 r -t 2.0156 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 359 -a 1 + -t 2.0156 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 359 -a 1 - -t 2.0156 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 359 -a 1 h -t 2.0156 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 359 -a 1 r -t 2.0156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 356 -a 1 r -t 2.01725 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 388 -a 0 -S 0 -y {51 51} + -t 2.01725 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 388 -a 0 -S 0 -y {51 51} r -t 2.0196 -s 3 -d 4 -p cbr -e 500 -c 1 -i 361 -a 1 + -t 2.0196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 361 -a 1 - -t 2.0196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 361 -a 1 h -t 2.0196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 361 -a 1 + -t 2.02 -s 1 -d 3 -p cbr -e 500 -c 1 -i 392 -a 1 - -t 2.02 -s 1 -d 3 -p cbr -e 500 -c 1 -i 392 -a 1 h -t 2.02 -s 1 -d 3 -p cbr -e 500 -c 1 -i 392 -a 1 + -t 2.02 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 393 -a 1 - -t 2.02 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 393 -a 1 h -t 2.02 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 393 -a 1 - -t 2.0216 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 374 -a 0 -S 0 -y {49 49} h -t 2.0216 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 374 -a 0 -S 0 -y {-1 -1} r -t 2.0236 -s 3 -d 4 -p cbr -e 500 -c 1 -i 364 -a 1 + -t 2.0236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 364 -a 1 - -t 2.0236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 364 -a 1 h -t 2.0236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 364 -a 1 r -t 2.02365 -s 3 -d 0 -p ack -e 40 -c 0 -i 375 -a 0 -S 0 -y {44 44} + -t 2.02365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 394 -a 0 -S 0 -f 0 -m 0 -y {52 52} - -t 2.02365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 394 -a 0 -S 0 -y {52 52} h -t 2.02365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 394 -a 0 -S 0 -y {-1 -1} r -t 2.024 -s 1 -d 3 -p cbr -e 500 -c 1 -i 390 -a 1 + -t 2.024 -s 3 -d 4 -p cbr -e 500 -c 1 -i 390 -a 1 r -t 2.0276 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 355 -a 1 r -t 2.0276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 358 -a 1 r -t 2.028 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 389 -a 1 + -t 2.028 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 389 -a 1 - -t 2.0296 -s 3 -d 4 -p cbr -e 500 -c 1 -i 373 -a 1 h -t 2.0296 -s 3 -d 4 -p cbr -e 500 -c 1 -i 373 -a 1 + -t 2.03 -s 1 -d 3 -p cbr -e 500 -c 1 -i 395 -a 1 - -t 2.03 -s 1 -d 3 -p cbr -e 500 -c 1 -i 395 -a 1 h -t 2.03 -s 1 -d 3 -p cbr -e 500 -c 1 -i 395 -a 1 r -t 2.0316 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 363 -a 1 + -t 2.0316 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 363 -a 1 - -t 2.0316 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 363 -a 1 h -t 2.0316 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 363 -a 1 r -t 2.0316 -s 4 -d 6 -p cbr -e 500 -c 1 -i 360 -a 1 - -t 2.0336 -s 3 -d 4 -p cbr -e 500 -c 1 -i 377 -a 1 h -t 2.0336 -s 3 -d 4 -p cbr -e 500 -c 1 -i 377 -a 1 r -t 2.034 -s 1 -d 3 -p cbr -e 500 -c 1 -i 391 -a 1 + -t 2.034 -s 3 -d 4 -p cbr -e 500 -c 1 -i 391 -a 1 r -t 2.03558 -s 4 -d 3 -p ack -e 40 -c 0 -i 381 -a 0 -S 0 -y {45 45} + -t 2.03558 -s 3 -d 0 -p ack -e 40 -c 0 -i 381 -a 0 -S 0 -y {45 45} - -t 2.03558 -s 3 -d 0 -p ack -e 40 -c 0 -i 381 -a 0 -S 0 -f 0 -m 1 -y {45 45} h -t 2.03558 -s 3 -d 0 -p ack -e 40 -c 0 -i 381 -a 0 -S 0 -y {-1 -1} r -t 2.0356 -s 3 -d 4 -p cbr -e 500 -c 1 -i 365 -a 1 + -t 2.0356 -s 4 -d 6 -p cbr -e 500 -c 1 -i 365 -a 1 - -t 2.0356 -s 4 -d 6 -p cbr -e 500 -c 1 -i 365 -a 1 h -t 2.0356 -s 4 -d 6 -p cbr -e 500 -c 1 -i 365 -a 1 - -t 2.0376 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 376 -a 1 h -t 2.0376 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 376 -a 1 r -t 2.0396 -s 3 -d 4 -p cbr -e 500 -c 1 -i 367 -a 1 + -t 2.0396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 367 -a 1 - -t 2.0396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 367 -a 1 h -t 2.0396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 367 -a 1 + -t 2.04 -s 1 -d 3 -p cbr -e 500 -c 1 -i 396 -a 1 - -t 2.04 -s 1 -d 3 -p cbr -e 500 -c 1 -i 396 -a 1 h -t 2.04 -s 1 -d 3 -p cbr -e 500 -c 1 -i 396 -a 1 + -t 2.04 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 397 -a 1 - -t 2.04 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 397 -a 1 h -t 2.04 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 397 -a 1 r -t 2.0436 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 359 -a 1 r -t 2.0436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 361 -a 1 r -t 2.044 -s 1 -d 3 -p cbr -e 500 -c 1 -i 392 -a 1 + -t 2.044 -s 3 -d 4 -p cbr -e 500 -c 1 -i 392 -a 1 r -t 2.04525 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 394 -a 0 -S 0 -y {52 52} + -t 2.04525 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 394 -a 0 -S 0 -y {52 52} - -t 2.0456 -s 3 -d 4 -p cbr -e 500 -c 1 -i 378 -a 1 h -t 2.0456 -s 3 -d 4 -p cbr -e 500 -c 1 -i 378 -a 1 r -t 2.0476 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 368 -a 0 -S 0 -y {48 48} + -t 2.0476 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 368 -a 0 -S 0 -y {48 48} - -t 2.0476 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 368 -a 0 -S 0 -y {48 48} h -t 2.0476 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 368 -a 0 -S 0 -y {-1 -1} r -t 2.0476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 364 -a 1 r -t 2.048 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 393 -a 1 + -t 2.048 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 393 -a 1 - -t 2.0496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 380 -a 1 h -t 2.0496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 380 -a 1 + -t 2.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 398 -a 1 - -t 2.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 398 -a 1 h -t 2.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 398 -a 1 - -t 2.0536 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 379 -a 1 h -t 2.0536 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 379 -a 1 r -t 2.054 -s 1 -d 3 -p cbr -e 500 -c 1 -i 395 -a 1 + -t 2.054 -s 3 -d 4 -p cbr -e 500 -c 1 -i 395 -a 1 r -t 2.0556 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 366 -a 1 + -t 2.0556 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 366 -a 1 - -t 2.0556 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 366 -a 1 h -t 2.0556 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 366 -a 1 r -t 2.05565 -s 3 -d 0 -p ack -e 40 -c 0 -i 381 -a 0 -S 0 -y {45 45} + -t 2.05565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 399 -a 0 -S 0 -f 0 -m 0 -y {53 53} - -t 2.05565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 399 -a 0 -S 0 -y {53 53} h -t 2.05565 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 399 -a 0 -S 0 -y {-1 -1} r -t 2.0596 -s 3 -d 4 -p cbr -e 500 -c 1 -i 370 -a 1 + -t 2.0596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 370 -a 1 - -t 2.0596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 370 -a 1 h -t 2.0596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 370 -a 1 r -t 2.0596 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 363 -a 1 r -t 2.0596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 365 -a 1 + -t 2.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 400 -a 1 - -t 2.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 400 -a 1 h -t 2.06 -s 1 -d 3 -p cbr -e 500 -c 1 -i 400 -a 1 + -t 2.06 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 401 -a 1 - -t 2.06 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 401 -a 1 h -t 2.06 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 401 -a 1 - -t 2.0616 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 382 -a 0 -S 0 -y {50 50} h -t 2.0616 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 382 -a 0 -S 0 -y {-1 -1} r -t 2.06358 -s 4 -d 3 -p ack -e 40 -c 0 -i 387 -a 0 -S 0 -y {46 46} + -t 2.06358 -s 3 -d 0 -p ack -e 40 -c 0 -i 387 -a 0 -S 0 -y {46 46} - -t 2.06358 -s 3 -d 0 -p ack -e 40 -c 0 -i 387 -a 0 -S 0 -f 0 -m 1 -y {46 46} h -t 2.06358 -s 3 -d 0 -p ack -e 40 -c 0 -i 387 -a 0 -S 0 -y {-1 -1} r -t 2.0636 -s 3 -d 4 -p cbr -e 500 -c 1 -i 372 -a 1 + -t 2.0636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 372 -a 1 r -t 2.0636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 367 -a 1 - -t 2.0636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 372 -a 1 h -t 2.0636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 372 -a 1 r -t 2.064 -s 1 -d 3 -p cbr -e 500 -c 1 -i 396 -a 1 + -t 2.064 -s 3 -d 4 -p cbr -e 500 -c 1 -i 396 -a 1 r -t 2.068 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 397 -a 1 + -t 2.068 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 397 -a 1 r -t 2.0692 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 368 -a 0 -S 0 -y {48 48} + -t 2.0692 -s 5 -d 4 -p ack -e 40 -c 0 -i 402 -a 0 -S 0 -y {46 46} - -t 2.0692 -s 5 -d 4 -p ack -e 40 -c 0 -i 402 -a 0 -S 0 -y {46 46} h -t 2.0692 -s 5 -d 4 -p ack -e 40 -c 0 -i 402 -a 0 -S 0 -y {-1 -1} - -t 2.0696 -s 3 -d 4 -p cbr -e 500 -c 1 -i 383 -a 1 h -t 2.0696 -s 3 -d 4 -p cbr -e 500 -c 1 -i 383 -a 1 + -t 2.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 403 -a 1 - -t 2.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 403 -a 1 h -t 2.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 403 -a 1 r -t 2.0716 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 371 -a 1 + -t 2.0716 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 371 -a 1 - -t 2.0716 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 371 -a 1 h -t 2.0716 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 371 -a 1 - -t 2.0736 -s 3 -d 4 -p cbr -e 500 -c 1 -i 385 -a 1 h -t 2.0736 -s 3 -d 4 -p cbr -e 500 -c 1 -i 385 -a 1 r -t 2.074 -s 1 -d 3 -p cbr -e 500 -c 1 -i 398 -a 1 + -t 2.074 -s 3 -d 4 -p cbr -e 500 -c 1 -i 398 -a 1 r -t 2.07725 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 399 -a 0 -S 0 -y {53 53} + -t 2.07725 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 399 -a 0 -S 0 -y {53 53} - -t 2.0776 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 384 -a 1 h -t 2.0776 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 384 -a 1 r -t 2.0796 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 374 -a 0 -S 0 -y {49 49} + -t 2.0796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 374 -a 0 -S 0 -y {49 49} - -t 2.0796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 374 -a 0 -S 0 -y {49 49} h -t 2.0796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 374 -a 0 -S 0 -y {-1 -1} + -t 2.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 404 -a 1 - -t 2.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 404 -a 1 h -t 2.08 -s 1 -d 3 -p cbr -e 500 -c 1 -i 404 -a 1 + -t 2.08 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 405 -a 1 - -t 2.08 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 405 -a 1 h -t 2.08 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 405 -a 1 r -t 2.0836 -s 3 -d 4 -p cbr -e 500 -c 1 -i 373 -a 1 + -t 2.0836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 373 -a 1 - -t 2.0836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 373 -a 1 h -t 2.0836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 373 -a 1 r -t 2.0836 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 366 -a 1 r -t 2.0836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 370 -a 1 r -t 2.08365 -s 3 -d 0 -p ack -e 40 -c 0 -i 387 -a 0 -S 0 -y {46 46} + -t 2.08365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 406 -a 0 -S 0 -f 0 -m 0 -y {54 54} - -t 2.08365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 406 -a 0 -S 0 -y {54 54} h -t 2.08365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 406 -a 0 -S 0 -y {-1 -1} r -t 2.084 -s 1 -d 3 -p cbr -e 500 -c 1 -i 400 -a 1 + -t 2.084 -s 3 -d 4 -p cbr -e 500 -c 1 -i 400 -a 1 - -t 2.0856 -s 3 -d 4 -p cbr -e 500 -c 1 -i 386 -a 1 h -t 2.0856 -s 3 -d 4 -p cbr -e 500 -c 1 -i 386 -a 1 r -t 2.0876 -s 3 -d 4 -p cbr -e 500 -c 1 -i 377 -a 1 + -t 2.0876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 377 -a 1 r -t 2.0876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 372 -a 1 - -t 2.0876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 377 -a 1 h -t 2.0876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 377 -a 1 r -t 2.088 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 401 -a 1 + -t 2.088 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 401 -a 1 r -t 2.08926 -s 5 -d 4 -p ack -e 40 -c 0 -i 402 -a 0 -S 0 -y {46 46} + -t 2.08926 -s 4 -d 3 -p ack -e 40 -c 0 -i 402 -a 0 -S 0 -y {46 46} - -t 2.08926 -s 4 -d 3 -p ack -e 40 -c 0 -i 402 -a 0 -S 0 -y {46 46} h -t 2.08926 -s 4 -d 3 -p ack -e 40 -c 0 -i 402 -a 0 -S 0 -y {-1 -1} - -t 2.0896 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 388 -a 0 -S 0 -y {51 51} h -t 2.0896 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 388 -a 0 -S 0 -y {-1 -1} + -t 2.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 407 -a 1 - -t 2.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 407 -a 1 h -t 2.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 407 -a 1 r -t 2.094 -s 1 -d 3 -p cbr -e 500 -c 1 -i 403 -a 1 + -t 2.094 -s 3 -d 4 -p cbr -e 500 -c 1 -i 403 -a 1 r -t 2.0956 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 376 -a 1 + -t 2.0956 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 376 -a 1 - -t 2.0956 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 376 -a 1 h -t 2.0956 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 376 -a 1 - -t 2.0976 -s 3 -d 4 -p cbr -e 500 -c 1 -i 390 -a 1 h -t 2.0976 -s 3 -d 4 -p cbr -e 500 -c 1 -i 390 -a 1 r -t 2.0996 -s 3 -d 4 -p cbr -e 500 -c 1 -i 378 -a 1 + -t 2.0996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 378 -a 1 - -t 2.0996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 378 -a 1 h -t 2.0996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 378 -a 1 r -t 2.0996 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 371 -a 1 + -t 2.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 408 -a 1 - -t 2.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 408 -a 1 h -t 2.1 -s 1 -d 3 -p cbr -e 500 -c 1 -i 408 -a 1 + -t 2.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 409 -a 1 - -t 2.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 409 -a 1 h -t 2.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 409 -a 1 r -t 2.1012 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 374 -a 0 -S 0 -y {49 49} + -t 2.1012 -s 5 -d 4 -p ack -e 40 -c 0 -i 410 -a 0 -S 0 -y {46 46} - -t 2.1012 -s 5 -d 4 -p ack -e 40 -c 0 -i 410 -a 0 -S 0 -y {46 46} h -t 2.1012 -s 5 -d 4 -p ack -e 40 -c 0 -i 410 -a 0 -S 0 -y {-1 -1} - -t 2.1016 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 389 -a 1 h -t 2.1016 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 389 -a 1 r -t 2.1036 -s 3 -d 4 -p cbr -e 500 -c 1 -i 380 -a 1 + -t 2.1036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 380 -a 1 - -t 2.1036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 380 -a 1 h -t 2.1036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 380 -a 1 r -t 2.104 -s 1 -d 3 -p cbr -e 500 -c 1 -i 404 -a 1 + -t 2.104 -s 3 -d 4 -p cbr -e 500 -c 1 -i 404 -a 1 r -t 2.10525 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 406 -a 0 -S 0 -y {54 54} + -t 2.10525 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 406 -a 0 -S 0 -y {54 54} r -t 2.1076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 373 -a 1 r -t 2.108 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 405 -a 1 + -t 2.108 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 405 -a 1 d -t 2.108 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 405 -a 1 - -t 2.1096 -s 3 -d 4 -p cbr -e 500 -c 1 -i 391 -a 1 h -t 2.1096 -s 3 -d 4 -p cbr -e 500 -c 1 -i 391 -a 1 + -t 2.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 411 -a 1 - -t 2.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 411 -a 1 h -t 2.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 411 -a 1 r -t 2.1116 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 379 -a 1 + -t 2.1116 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 379 -a 1 - -t 2.1116 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 379 -a 1 h -t 2.1116 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 379 -a 1 r -t 2.1116 -s 4 -d 6 -p cbr -e 500 -c 1 -i 377 -a 1 - -t 2.1136 -s 3 -d 4 -p cbr -e 500 -c 1 -i 392 -a 1 h -t 2.1136 -s 3 -d 4 -p cbr -e 500 -c 1 -i 392 -a 1 r -t 2.114 -s 1 -d 3 -p cbr -e 500 -c 1 -i 407 -a 1 + -t 2.114 -s 3 -d 4 -p cbr -e 500 -c 1 -i 407 -a 1 - -t 2.1176 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 394 -a 0 -S 0 -y {52 52} h -t 2.1176 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 394 -a 0 -S 0 -y {-1 -1} r -t 2.1196 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 382 -a 0 -S 0 -y {50 50} + -t 2.1196 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 382 -a 0 -S 0 -y {50 50} - -t 2.1196 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 382 -a 0 -S 0 -y {50 50} h -t 2.1196 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 382 -a 0 -S 0 -y {-1 -1} + -t 2.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 412 -a 1 - -t 2.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 412 -a 1 h -t 2.12 -s 1 -d 3 -p cbr -e 500 -c 1 -i 412 -a 1 + -t 2.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 413 -a 1 - -t 2.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 413 -a 1 h -t 2.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 413 -a 1 r -t 2.12126 -s 5 -d 4 -p ack -e 40 -c 0 -i 410 -a 0 -S 0 -y {46 46} + -t 2.12126 -s 4 -d 3 -p ack -e 40 -c 0 -i 410 -a 0 -S 0 -y {46 46} - -t 2.12126 -s 4 -d 3 -p ack -e 40 -c 0 -i 410 -a 0 -S 0 -y {46 46} h -t 2.12126 -s 4 -d 3 -p ack -e 40 -c 0 -i 410 -a 0 -S 0 -y {-1 -1} r -t 2.1236 -s 3 -d 4 -p cbr -e 500 -c 1 -i 383 -a 1 + -t 2.1236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 383 -a 1 - -t 2.1236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 383 -a 1 h -t 2.1236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 383 -a 1 r -t 2.1236 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 376 -a 1 r -t 2.1236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 378 -a 1 r -t 2.124 -s 1 -d 3 -p cbr -e 500 -c 1 -i 408 -a 1 + -t 2.124 -s 3 -d 4 -p cbr -e 500 -c 1 -i 408 -a 1 - -t 2.1256 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 393 -a 1 h -t 2.1256 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 393 -a 1 r -t 2.1276 -s 3 -d 4 -p cbr -e 500 -c 1 -i 385 -a 1 + -t 2.1276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 385 -a 1 r -t 2.1276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 380 -a 1 - -t 2.1276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 385 -a 1 h -t 2.1276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 385 -a 1 r -t 2.128 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 409 -a 1 + -t 2.128 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 409 -a 1 + -t 2.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 414 -a 1 - -t 2.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 414 -a 1 h -t 2.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 414 -a 1 - -t 2.1336 -s 3 -d 4 -p cbr -e 500 -c 1 -i 395 -a 1 h -t 2.1336 -s 3 -d 4 -p cbr -e 500 -c 1 -i 395 -a 1 r -t 2.134 -s 1 -d 3 -p cbr -e 500 -c 1 -i 411 -a 1 + -t 2.134 -s 3 -d 4 -p cbr -e 500 -c 1 -i 411 -a 1 r -t 2.1356 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 384 -a 1 + -t 2.1356 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 384 -a 1 - -t 2.1356 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 384 -a 1 h -t 2.1356 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 384 -a 1 - -t 2.1376 -s 3 -d 4 -p cbr -e 500 -c 1 -i 396 -a 1 h -t 2.1376 -s 3 -d 4 -p cbr -e 500 -c 1 -i 396 -a 1 r -t 2.13958 -s 4 -d 3 -p ack -e 40 -c 0 -i 402 -a 0 -S 0 -y {46 46} + -t 2.13958 -s 3 -d 0 -p ack -e 40 -c 0 -i 402 -a 0 -S 0 -y {46 46} - -t 2.13958 -s 3 -d 0 -p ack -e 40 -c 0 -i 402 -a 0 -S 0 -f 0 -m 1 -y {46 46} h -t 2.13958 -s 3 -d 0 -p ack -e 40 -c 0 -i 402 -a 0 -S 0 -y {-1 -1} r -t 2.1396 -s 3 -d 4 -p cbr -e 500 -c 1 -i 386 -a 1 + -t 2.1396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 386 -a 1 - -t 2.1396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 386 -a 1 h -t 2.1396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 386 -a 1 r -t 2.1396 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 379 -a 1 + -t 2.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 415 -a 1 - -t 2.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 415 -a 1 h -t 2.14 -s 1 -d 3 -p cbr -e 500 -c 1 -i 415 -a 1 + -t 2.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 416 -a 1 - -t 2.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 416 -a 1 h -t 2.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 416 -a 1 r -t 2.1412 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 382 -a 0 -S 0 -y {50 50} + -t 2.1412 -s 5 -d 4 -p ack -e 40 -c 0 -i 417 -a 0 -S 0 -y {46 46} - -t 2.1412 -s 5 -d 4 -p ack -e 40 -c 0 -i 417 -a 0 -S 0 -y {46 46} h -t 2.1412 -s 5 -d 4 -p ack -e 40 -c 0 -i 417 -a 0 -S 0 -y {-1 -1} - -t 2.1416 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 397 -a 1 h -t 2.1416 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 397 -a 1 r -t 2.144 -s 1 -d 3 -p cbr -e 500 -c 1 -i 412 -a 1 + -t 2.144 -s 3 -d 4 -p cbr -e 500 -c 1 -i 412 -a 1 r -t 2.1476 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 388 -a 0 -S 0 -y {51 51} + -t 2.1476 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 388 -a 0 -S 0 -y {51 51} - -t 2.1476 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 388 -a 0 -S 0 -y {51 51} h -t 2.1476 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 388 -a 0 -S 0 -y {-1 -1} r -t 2.1476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 383 -a 1 r -t 2.148 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 413 -a 1 + -t 2.148 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 413 -a 1 - -t 2.1496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 398 -a 1 h -t 2.1496 -s 3 -d 4 -p cbr -e 500 -c 1 -i 398 -a 1 + -t 2.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 418 -a 1 - -t 2.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 418 -a 1 h -t 2.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 418 -a 1 r -t 2.1516 -s 3 -d 4 -p cbr -e 500 -c 1 -i 390 -a 1 + -t 2.1516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 390 -a 1 - -t 2.1516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 390 -a 1 h -t 2.1516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 390 -a 1 r -t 2.1516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 385 -a 1 - -t 2.1536 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 399 -a 0 -S 0 -y {53 53} h -t 2.1536 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 399 -a 0 -S 0 -y {-1 -1} r -t 2.154 -s 1 -d 3 -p cbr -e 500 -c 1 -i 414 -a 1 + -t 2.154 -s 3 -d 4 -p cbr -e 500 -c 1 -i 414 -a 1 r -t 2.1596 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 389 -a 1 + -t 2.1596 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 389 -a 1 - -t 2.1596 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 389 -a 1 h -t 2.1596 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 389 -a 1 r -t 2.15965 -s 3 -d 0 -p ack -e 40 -c 0 -i 402 -a 0 -S 0 -y {46 46} + -t 2.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 419 -a 1 - -t 2.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 419 -a 1 h -t 2.16 -s 1 -d 3 -p cbr -e 500 -c 1 -i 419 -a 1 + -t 2.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 420 -a 1 - -t 2.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 420 -a 1 h -t 2.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 420 -a 1 r -t 2.16126 -s 5 -d 4 -p ack -e 40 -c 0 -i 417 -a 0 -S 0 -y {46 46} + -t 2.16126 -s 4 -d 3 -p ack -e 40 -c 0 -i 417 -a 0 -S 0 -y {46 46} - -t 2.16126 -s 4 -d 3 -p ack -e 40 -c 0 -i 417 -a 0 -S 0 -y {46 46} h -t 2.16126 -s 4 -d 3 -p ack -e 40 -c 0 -i 417 -a 0 -S 0 -y {-1 -1} - -t 2.1616 -s 3 -d 4 -p cbr -e 500 -c 1 -i 400 -a 1 h -t 2.1616 -s 3 -d 4 -p cbr -e 500 -c 1 -i 400 -a 1 r -t 2.1636 -s 3 -d 4 -p cbr -e 500 -c 1 -i 391 -a 1 + -t 2.1636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 391 -a 1 - -t 2.1636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 391 -a 1 h -t 2.1636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 391 -a 1 r -t 2.1636 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 384 -a 1 r -t 2.1636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 386 -a 1 r -t 2.164 -s 1 -d 3 -p cbr -e 500 -c 1 -i 415 -a 1 + -t 2.164 -s 3 -d 4 -p cbr -e 500 -c 1 -i 415 -a 1 - -t 2.1656 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 401 -a 1 h -t 2.1656 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 401 -a 1 r -t 2.1676 -s 3 -d 4 -p cbr -e 500 -c 1 -i 392 -a 1 + -t 2.1676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 392 -a 1 - -t 2.1676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 392 -a 1 h -t 2.1676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 392 -a 1 r -t 2.168 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 416 -a 1 + -t 2.168 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 416 -a 1 r -t 2.1692 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 388 -a 0 -S 0 -y {51 51} + -t 2.1692 -s 5 -d 4 -p ack -e 40 -c 0 -i 421 -a 0 -S 0 -y {46 46} - -t 2.1692 -s 5 -d 4 -p ack -e 40 -c 0 -i 421 -a 0 -S 0 -y {46 46} h -t 2.1692 -s 5 -d 4 -p ack -e 40 -c 0 -i 421 -a 0 -S 0 -y {-1 -1} + -t 2.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 422 -a 1 - -t 2.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 422 -a 1 h -t 2.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 422 -a 1 r -t 2.17158 -s 4 -d 3 -p ack -e 40 -c 0 -i 410 -a 0 -S 0 -y {46 46} + -t 2.17158 -s 3 -d 0 -p ack -e 40 -c 0 -i 410 -a 0 -S 0 -y {46 46} - -t 2.17158 -s 3 -d 0 -p ack -e 40 -c 0 -i 410 -a 0 -S 0 -f 0 -m 1 -y {46 46} h -t 2.17158 -s 3 -d 0 -p ack -e 40 -c 0 -i 410 -a 0 -S 0 -y {-1 -1} - -t 2.1736 -s 3 -d 4 -p cbr -e 500 -c 1 -i 403 -a 1 h -t 2.1736 -s 3 -d 4 -p cbr -e 500 -c 1 -i 403 -a 1 r -t 2.174 -s 1 -d 3 -p cbr -e 500 -c 1 -i 418 -a 1 + -t 2.174 -s 3 -d 4 -p cbr -e 500 -c 1 -i 418 -a 1 r -t 2.1756 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 394 -a 0 -S 0 -y {52 52} + -t 2.1756 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 394 -a 0 -S 0 -y {52 52} - -t 2.1756 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 394 -a 0 -S 0 -y {52 52} h -t 2.1756 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 394 -a 0 -S 0 -y {-1 -1} r -t 2.1756 -s 4 -d 6 -p cbr -e 500 -c 1 -i 390 -a 1 - -t 2.1776 -s 3 -d 4 -p cbr -e 500 -c 1 -i 404 -a 1 h -t 2.1776 -s 3 -d 4 -p cbr -e 500 -c 1 -i 404 -a 1 + -t 2.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 423 -a 1 - -t 2.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 423 -a 1 h -t 2.18 -s 1 -d 3 -p cbr -e 500 -c 1 -i 423 -a 1 + -t 2.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 424 -a 1 - -t 2.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 424 -a 1 h -t 2.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 424 -a 1 - -t 2.1816 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 406 -a 0 -S 0 -y {54 54} h -t 2.1816 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 406 -a 0 -S 0 -y {-1 -1} r -t 2.1836 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 393 -a 1 + -t 2.1836 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 393 -a 1 - -t 2.1836 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 393 -a 1 h -t 2.1836 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 393 -a 1 r -t 2.184 -s 1 -d 3 -p cbr -e 500 -c 1 -i 419 -a 1 + -t 2.184 -s 3 -d 4 -p cbr -e 500 -c 1 -i 419 -a 1 r -t 2.1876 -s 3 -d 4 -p cbr -e 500 -c 1 -i 395 -a 1 + -t 2.1876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 395 -a 1 - -t 2.1876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 395 -a 1 h -t 2.1876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 395 -a 1 r -t 2.1876 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 389 -a 1 r -t 2.1876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 391 -a 1 r -t 2.188 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 420 -a 1 + -t 2.188 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 420 -a 1 r -t 2.18926 -s 5 -d 4 -p ack -e 40 -c 0 -i 421 -a 0 -S 0 -y {46 46} + -t 2.18926 -s 4 -d 3 -p ack -e 40 -c 0 -i 421 -a 0 -S 0 -y {46 46} - -t 2.18926 -s 4 -d 3 -p ack -e 40 -c 0 -i 421 -a 0 -S 0 -y {46 46} h -t 2.18926 -s 4 -d 3 -p ack -e 40 -c 0 -i 421 -a 0 -S 0 -y {-1 -1} - -t 2.1896 -s 3 -d 4 -p cbr -e 500 -c 1 -i 407 -a 1 h -t 2.1896 -s 3 -d 4 -p cbr -e 500 -c 1 -i 407 -a 1 + -t 2.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 425 -a 1 - -t 2.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 425 -a 1 h -t 2.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 425 -a 1 r -t 2.1916 -s 3 -d 4 -p cbr -e 500 -c 1 -i 396 -a 1 + -t 2.1916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 396 -a 1 r -t 2.1916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 392 -a 1 - -t 2.1916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 396 -a 1 h -t 2.1916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 396 -a 1 r -t 2.19165 -s 3 -d 0 -p ack -e 40 -c 0 -i 410 -a 0 -S 0 -y {46 46} - -t 2.1936 -s 3 -d 4 -p cbr -e 500 -c 1 -i 408 -a 1 h -t 2.1936 -s 3 -d 4 -p cbr -e 500 -c 1 -i 408 -a 1 r -t 2.194 -s 1 -d 3 -p cbr -e 500 -c 1 -i 422 -a 1 + -t 2.194 -s 3 -d 4 -p cbr -e 500 -c 1 -i 422 -a 1 r -t 2.1972 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 394 -a 0 -S 0 -y {52 52} + -t 2.1972 -s 5 -d 4 -p ack -e 40 -c 0 -i 426 -a 0 -S 0 -y {46 46} - -t 2.1972 -s 5 -d 4 -p ack -e 40 -c 0 -i 426 -a 0 -S 0 -y {46 46} h -t 2.1972 -s 5 -d 4 -p ack -e 40 -c 0 -i 426 -a 0 -S 0 -y {-1 -1} - -t 2.1976 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 409 -a 1 h -t 2.1976 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 409 -a 1 r -t 2.1996 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 397 -a 1 + -t 2.1996 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 397 -a 1 - -t 2.1996 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 397 -a 1 h -t 2.1996 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 397 -a 1 + -t 2.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 427 -a 1 - -t 2.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 427 -a 1 h -t 2.2 -s 1 -d 3 -p cbr -e 500 -c 1 -i 427 -a 1 + -t 2.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 428 -a 1 - -t 2.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 428 -a 1 h -t 2.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 428 -a 1 r -t 2.2036 -s 3 -d 4 -p cbr -e 500 -c 1 -i 398 -a 1 + -t 2.2036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 398 -a 1 - -t 2.2036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 398 -a 1 h -t 2.2036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 398 -a 1 r -t 2.204 -s 1 -d 3 -p cbr -e 500 -c 1 -i 423 -a 1 + -t 2.204 -s 3 -d 4 -p cbr -e 500 -c 1 -i 423 -a 1 - -t 2.2056 -s 3 -d 4 -p cbr -e 500 -c 1 -i 411 -a 1 h -t 2.2056 -s 3 -d 4 -p cbr -e 500 -c 1 -i 411 -a 1 r -t 2.208 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 424 -a 1 + -t 2.208 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 424 -a 1 - -t 2.2096 -s 3 -d 4 -p cbr -e 500 -c 1 -i 412 -a 1 h -t 2.2096 -s 3 -d 4 -p cbr -e 500 -c 1 -i 412 -a 1 + -t 2.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 429 -a 1 - -t 2.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 429 -a 1 h -t 2.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 429 -a 1 r -t 2.21158 -s 4 -d 3 -p ack -e 40 -c 0 -i 417 -a 0 -S 0 -y {46 46} + -t 2.21158 -s 3 -d 0 -p ack -e 40 -c 0 -i 417 -a 0 -S 0 -y {46 46} - -t 2.21158 -s 3 -d 0 -p ack -e 40 -c 0 -i 417 -a 0 -S 0 -f 0 -m 1 -y {46 46} h -t 2.21158 -s 3 -d 0 -p ack -e 40 -c 0 -i 417 -a 0 -S 0 -y {-1 -1} r -t 2.2116 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 399 -a 0 -S 0 -y {53 53} + -t 2.2116 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 399 -a 0 -S 0 -y {53 53} - -t 2.2116 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 399 -a 0 -S 0 -y {53 53} h -t 2.2116 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 399 -a 0 -S 0 -y {-1 -1} r -t 2.2116 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 393 -a 1 r -t 2.2116 -s 4 -d 6 -p cbr -e 500 -c 1 -i 395 -a 1 - -t 2.2136 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 413 -a 1 h -t 2.2136 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 413 -a 1 r -t 2.214 -s 1 -d 3 -p cbr -e 500 -c 1 -i 425 -a 1 + -t 2.214 -s 3 -d 4 -p cbr -e 500 -c 1 -i 425 -a 1 r -t 2.2156 -s 3 -d 4 -p cbr -e 500 -c 1 -i 400 -a 1 + -t 2.2156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 400 -a 1 - -t 2.2156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 400 -a 1 h -t 2.2156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 400 -a 1 r -t 2.2156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 396 -a 1 r -t 2.21726 -s 5 -d 4 -p ack -e 40 -c 0 -i 426 -a 0 -S 0 -y {46 46} + -t 2.21726 -s 4 -d 3 -p ack -e 40 -c 0 -i 426 -a 0 -S 0 -y {46 46} - -t 2.21726 -s 4 -d 3 -p ack -e 40 -c 0 -i 426 -a 0 -S 0 -y {46 46} h -t 2.21726 -s 4 -d 3 -p ack -e 40 -c 0 -i 426 -a 0 -S 0 -y {-1 -1} + -t 2.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 430 -a 1 - -t 2.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 430 -a 1 h -t 2.22 -s 1 -d 3 -p cbr -e 500 -c 1 -i 430 -a 1 + -t 2.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 431 -a 1 - -t 2.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 431 -a 1 h -t 2.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 431 -a 1 - -t 2.2216 -s 3 -d 4 -p cbr -e 500 -c 1 -i 414 -a 1 h -t 2.2216 -s 3 -d 4 -p cbr -e 500 -c 1 -i 414 -a 1 r -t 2.2236 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 401 -a 1 + -t 2.2236 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 401 -a 1 - -t 2.2236 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 401 -a 1 h -t 2.2236 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 401 -a 1 r -t 2.224 -s 1 -d 3 -p cbr -e 500 -c 1 -i 427 -a 1 + -t 2.224 -s 3 -d 4 -p cbr -e 500 -c 1 -i 427 -a 1 - -t 2.2256 -s 3 -d 4 -p cbr -e 500 -c 1 -i 415 -a 1 h -t 2.2256 -s 3 -d 4 -p cbr -e 500 -c 1 -i 415 -a 1 r -t 2.2276 -s 3 -d 4 -p cbr -e 500 -c 1 -i 403 -a 1 + -t 2.2276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 403 -a 1 - -t 2.2276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 403 -a 1 h -t 2.2276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 403 -a 1 r -t 2.2276 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 397 -a 1 r -t 2.2276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 398 -a 1 r -t 2.228 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 428 -a 1 + -t 2.228 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 428 -a 1 - -t 2.2296 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 416 -a 1 h -t 2.2296 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 416 -a 1 + -t 2.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 432 -a 1 - -t 2.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 432 -a 1 h -t 2.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 432 -a 1 r -t 2.2316 -s 3 -d 4 -p cbr -e 500 -c 1 -i 404 -a 1 + -t 2.2316 -s 4 -d 6 -p cbr -e 500 -c 1 -i 404 -a 1 - -t 2.2316 -s 4 -d 6 -p cbr -e 500 -c 1 -i 404 -a 1 h -t 2.2316 -s 4 -d 6 -p cbr -e 500 -c 1 -i 404 -a 1 r -t 2.23165 -s 3 -d 0 -p ack -e 40 -c 0 -i 417 -a 0 -S 0 -y {46 46} + -t 2.23165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 433 -a 0 -S 0 -f 0 -m 0 -y {47 47} - -t 2.23165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 433 -a 0 -S 0 -y {47 47} h -t 2.23165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 433 -a 0 -S 0 -y {-1 -1} + -t 2.23165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 434 -a 0 -S 0 -f 0 -m 0 -y {48 48} + -t 2.23165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 435 -a 0 -S 0 -f 0 -m 0 -y {49 49} + -t 2.23165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 436 -a 0 -S 0 -f 0 -m 0 -y {50 50} + -t 2.23165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 437 -a 0 -S 0 -f 0 -m 0 -y {51 51} + -t 2.23165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 438 -a 0 -S 0 -f 0 -m 0 -y {52 52} + -t 2.23165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 439 -a 0 -S 0 -f 0 -m 0 -y {53 53} + -t 2.23165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 440 -a 0 -S 0 -f 0 -m 0 -y {54 54} r -t 2.2332 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 399 -a 0 -S 0 -y {53 53} + -t 2.2332 -s 5 -d 4 -p ack -e 40 -c 0 -i 441 -a 0 -S 0 -y {46 46} - -t 2.2332 -s 5 -d 4 -p ack -e 40 -c 0 -i 441 -a 0 -S 0 -y {46 46} h -t 2.2332 -s 5 -d 4 -p ack -e 40 -c 0 -i 441 -a 0 -S 0 -y {-1 -1} - -t 2.23325 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 434 -a 0 -S 0 -y {48 48} h -t 2.23325 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 434 -a 0 -S 0 -y {-1 -1} r -t 2.234 -s 1 -d 3 -p cbr -e 500 -c 1 -i 429 -a 1 + -t 2.234 -s 3 -d 4 -p cbr -e 500 -c 1 -i 429 -a 1 - -t 2.23485 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 435 -a 0 -S 0 -y {49 49} h -t 2.23485 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 435 -a 0 -S 0 -y {-1 -1} - -t 2.23645 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 436 -a 0 -S 0 -y {50 50} h -t 2.23645 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 436 -a 0 -S 0 -y {-1 -1} - -t 2.2376 -s 3 -d 4 -p cbr -e 500 -c 1 -i 418 -a 1 h -t 2.2376 -s 3 -d 4 -p cbr -e 500 -c 1 -i 418 -a 1 - -t 2.23805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 437 -a 0 -S 0 -y {51 51} h -t 2.23805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 437 -a 0 -S 0 -y {-1 -1} r -t 2.23958 -s 4 -d 3 -p ack -e 40 -c 0 -i 421 -a 0 -S 0 -y {46 46} + -t 2.23958 -s 3 -d 0 -p ack -e 40 -c 0 -i 421 -a 0 -S 0 -y {46 46} - -t 2.23958 -s 3 -d 0 -p ack -e 40 -c 0 -i 421 -a 0 -S 0 -f 0 -m 1 -y {46 46} h -t 2.23958 -s 3 -d 0 -p ack -e 40 -c 0 -i 421 -a 0 -S 0 -y {-1 -1} r -t 2.2396 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 406 -a 0 -S 0 -y {54 54} + -t 2.2396 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 406 -a 0 -S 0 -y {54 54} - -t 2.2396 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 406 -a 0 -S 0 -y {54 54} h -t 2.2396 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 406 -a 0 -S 0 -y {-1 -1} r -t 2.2396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 400 -a 1 - -t 2.23965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 438 -a 0 -S 0 -y {52 52} h -t 2.23965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 438 -a 0 -S 0 -y {-1 -1} + -t 2.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 442 -a 1 - -t 2.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 442 -a 1 h -t 2.24 -s 1 -d 3 -p cbr -e 500 -c 1 -i 442 -a 1 + -t 2.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 443 -a 1 - -t 2.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 443 -a 1 h -t 2.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 443 -a 1 - -t 2.24125 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 439 -a 0 -S 0 -y {53 53} h -t 2.24125 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 439 -a 0 -S 0 -y {-1 -1} - -t 2.2416 -s 3 -d 4 -p cbr -e 500 -c 1 -i 419 -a 1 h -t 2.2416 -s 3 -d 4 -p cbr -e 500 -c 1 -i 419 -a 1 - -t 2.24285 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 440 -a 0 -S 0 -y {54 54} h -t 2.24285 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 440 -a 0 -S 0 -y {-1 -1} r -t 2.2436 -s 3 -d 4 -p cbr -e 500 -c 1 -i 407 -a 1 + -t 2.2436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 407 -a 1 - -t 2.2436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 407 -a 1 h -t 2.2436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 407 -a 1 r -t 2.244 -s 1 -d 3 -p cbr -e 500 -c 1 -i 430 -a 1 + -t 2.244 -s 3 -d 4 -p cbr -e 500 -c 1 -i 430 -a 1 - -t 2.2456 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 420 -a 1 h -t 2.2456 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 420 -a 1 r -t 2.2476 -s 3 -d 4 -p cbr -e 500 -c 1 -i 408 -a 1 + -t 2.2476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 408 -a 1 - -t 2.2476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 408 -a 1 h -t 2.2476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 408 -a 1 r -t 2.248 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 431 -a 1 + -t 2.248 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 431 -a 1 + -t 2.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 444 -a 1 - -t 2.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 444 -a 1 h -t 2.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 444 -a 1 r -t 2.2516 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 401 -a 1 r -t 2.2516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 403 -a 1 r -t 2.25325 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 433 -a 0 -S 0 -y {47 47} + -t 2.25325 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 433 -a 0 -S 0 -y {47 47} r -t 2.25326 -s 5 -d 4 -p ack -e 40 -c 0 -i 441 -a 0 -S 0 -y {46 46} + -t 2.25326 -s 4 -d 3 -p ack -e 40 -c 0 -i 441 -a 0 -S 0 -y {46 46} - -t 2.25326 -s 4 -d 3 -p ack -e 40 -c 0 -i 441 -a 0 -S 0 -y {46 46} h -t 2.25326 -s 4 -d 3 -p ack -e 40 -c 0 -i 441 -a 0 -S 0 -y {-1 -1} - -t 2.2536 -s 3 -d 4 -p cbr -e 500 -c 1 -i 422 -a 1 h -t 2.2536 -s 3 -d 4 -p cbr -e 500 -c 1 -i 422 -a 1 r -t 2.254 -s 1 -d 3 -p cbr -e 500 -c 1 -i 432 -a 1 + -t 2.254 -s 3 -d 4 -p cbr -e 500 -c 1 -i 432 -a 1 r -t 2.25485 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 434 -a 0 -S 0 -y {48 48} + -t 2.25485 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 434 -a 0 -S 0 -y {48 48} r -t 2.2556 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 409 -a 1 + -t 2.2556 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 409 -a 1 - -t 2.2556 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 409 -a 1 h -t 2.2556 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 409 -a 1 r -t 2.2556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 404 -a 1 r -t 2.25645 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 435 -a 0 -S 0 -y {49 49} + -t 2.25645 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 435 -a 0 -S 0 -y {49 49} - -t 2.2576 -s 3 -d 4 -p cbr -e 500 -c 1 -i 423 -a 1 h -t 2.2576 -s 3 -d 4 -p cbr -e 500 -c 1 -i 423 -a 1 r -t 2.25805 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 436 -a 0 -S 0 -y {50 50} + -t 2.25805 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 436 -a 0 -S 0 -y {50 50} r -t 2.2596 -s 3 -d 4 -p cbr -e 500 -c 1 -i 411 -a 1 + -t 2.2596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 411 -a 1 - -t 2.2596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 411 -a 1 h -t 2.2596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 411 -a 1 r -t 2.25965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 437 -a 0 -S 0 -y {51 51} + -t 2.25965 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 437 -a 0 -S 0 -y {51 51} r -t 2.25965 -s 3 -d 0 -p ack -e 40 -c 0 -i 421 -a 0 -S 0 -y {46 46} + -t 2.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 445 -a 1 - -t 2.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 445 -a 1 h -t 2.26 -s 1 -d 3 -p cbr -e 500 -c 1 -i 445 -a 1 + -t 2.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 446 -a 1 - -t 2.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 446 -a 1 h -t 2.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 446 -a 1 r -t 2.2612 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 406 -a 0 -S 0 -y {54 54} + -t 2.2612 -s 5 -d 4 -p ack -e 40 -c 0 -i 447 -a 0 -S 0 -y {46 46} - -t 2.2612 -s 5 -d 4 -p ack -e 40 -c 0 -i 447 -a 0 -S 0 -y {46 46} h -t 2.2612 -s 5 -d 4 -p ack -e 40 -c 0 -i 447 -a 0 -S 0 -y {-1 -1} r -t 2.26125 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 438 -a 0 -S 0 -y {52 52} + -t 2.26125 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 438 -a 0 -S 0 -y {52 52} - -t 2.2616 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 424 -a 1 h -t 2.2616 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 424 -a 1 r -t 2.26285 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 439 -a 0 -S 0 -y {53 53} + -t 2.26285 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 439 -a 0 -S 0 -y {53 53} r -t 2.2636 -s 3 -d 4 -p cbr -e 500 -c 1 -i 412 -a 1 + -t 2.2636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 412 -a 1 - -t 2.2636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 412 -a 1 h -t 2.2636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 412 -a 1 r -t 2.264 -s 1 -d 3 -p cbr -e 500 -c 1 -i 442 -a 1 + -t 2.264 -s 3 -d 4 -p cbr -e 500 -c 1 -i 442 -a 1 d -t 2.264 -s 3 -d 4 -p cbr -e 500 -c 1 -i 442 -a 1 r -t 2.26445 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 440 -a 0 -S 0 -y {54 54} + -t 2.26445 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 440 -a 0 -S 0 -y {54 54} d -t 2.26445 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 440 -a 0 -S 0 -y {54 54} r -t 2.26758 -s 4 -d 3 -p ack -e 40 -c 0 -i 426 -a 0 -S 0 -y {46 46} + -t 2.26758 -s 3 -d 0 -p ack -e 40 -c 0 -i 426 -a 0 -S 0 -y {46 46} - -t 2.26758 -s 3 -d 0 -p ack -e 40 -c 0 -i 426 -a 0 -S 0 -f 0 -m 1 -y {46 46} h -t 2.26758 -s 3 -d 0 -p ack -e 40 -c 0 -i 426 -a 0 -S 0 -y {-1 -1} r -t 2.2676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 407 -a 1 r -t 2.268 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 443 -a 1 + -t 2.268 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 443 -a 1 d -t 2.268 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 443 -a 1 - -t 2.2696 -s 3 -d 4 -p cbr -e 500 -c 1 -i 425 -a 1 h -t 2.2696 -s 3 -d 4 -p cbr -e 500 -c 1 -i 425 -a 1 + -t 2.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 448 -a 1 - -t 2.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 448 -a 1 h -t 2.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 448 -a 1 r -t 2.2716 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 413 -a 1 + -t 2.2716 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 413 -a 1 - -t 2.2716 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 413 -a 1 h -t 2.2716 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 413 -a 1 r -t 2.2716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 408 -a 1 - -t 2.2736 -s 3 -d 4 -p cbr -e 500 -c 1 -i 427 -a 1 h -t 2.2736 -s 3 -d 4 -p cbr -e 500 -c 1 -i 427 -a 1 r -t 2.274 -s 1 -d 3 -p cbr -e 500 -c 1 -i 444 -a 1 + -t 2.274 -s 3 -d 4 -p cbr -e 500 -c 1 -i 444 -a 1 r -t 2.2756 -s 3 -d 4 -p cbr -e 500 -c 1 -i 414 -a 1 + -t 2.2756 -s 4 -d 6 -p cbr -e 500 -c 1 -i 414 -a 1 - -t 2.2756 -s 4 -d 6 -p cbr -e 500 -c 1 -i 414 -a 1 h -t 2.2756 -s 4 -d 6 -p cbr -e 500 -c 1 -i 414 -a 1 - -t 2.2776 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 428 -a 1 h -t 2.2776 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 428 -a 1 r -t 2.2796 -s 3 -d 4 -p cbr -e 500 -c 1 -i 415 -a 1 + -t 2.2796 -s 4 -d 6 -p cbr -e 500 -c 1 -i 415 -a 1 - -t 2.2796 -s 4 -d 6 -p cbr -e 500 -c 1 -i 415 -a 1 h -t 2.2796 -s 4 -d 6 -p cbr -e 500 -c 1 -i 415 -a 1 + -t 2.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 449 -a 1 - -t 2.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 449 -a 1 h -t 2.28 -s 1 -d 3 -p cbr -e 500 -c 1 -i 449 -a 1 + -t 2.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 450 -a 1 - -t 2.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 450 -a 1 h -t 2.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 450 -a 1 r -t 2.28126 -s 5 -d 4 -p ack -e 40 -c 0 -i 447 -a 0 -S 0 -y {46 46} + -t 2.28126 -s 4 -d 3 -p ack -e 40 -c 0 -i 447 -a 0 -S 0 -y {46 46} - -t 2.28126 -s 4 -d 3 -p ack -e 40 -c 0 -i 447 -a 0 -S 0 -y {46 46} h -t 2.28126 -s 4 -d 3 -p ack -e 40 -c 0 -i 447 -a 0 -S 0 -y {-1 -1} r -t 2.2836 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 409 -a 1 r -t 2.2836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 411 -a 1 r -t 2.284 -s 1 -d 3 -p cbr -e 500 -c 1 -i 445 -a 1 + -t 2.284 -s 3 -d 4 -p cbr -e 500 -c 1 -i 445 -a 1 - -t 2.2856 -s 3 -d 4 -p cbr -e 500 -c 1 -i 429 -a 1 h -t 2.2856 -s 3 -d 4 -p cbr -e 500 -c 1 -i 429 -a 1 r -t 2.2876 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 416 -a 1 + -t 2.2876 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 416 -a 1 - -t 2.2876 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 416 -a 1 h -t 2.2876 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 416 -a 1 r -t 2.2876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 412 -a 1 r -t 2.28765 -s 3 -d 0 -p ack -e 40 -c 0 -i 426 -a 0 -S 0 -y {46 46} r -t 2.288 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 446 -a 1 + -t 2.288 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 446 -a 1 - -t 2.2896 -s 3 -d 4 -p cbr -e 500 -c 1 -i 430 -a 1 h -t 2.2896 -s 3 -d 4 -p cbr -e 500 -c 1 -i 430 -a 1 + -t 2.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 451 -a 1 - -t 2.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 451 -a 1 h -t 2.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 451 -a 1 r -t 2.2916 -s 3 -d 4 -p cbr -e 500 -c 1 -i 418 -a 1 + -t 2.2916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 418 -a 1 - -t 2.2916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 418 -a 1 h -t 2.2916 -s 4 -d 6 -p cbr -e 500 -c 1 -i 418 -a 1 - -t 2.2936 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 431 -a 1 h -t 2.2936 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 431 -a 1 r -t 2.294 -s 1 -d 3 -p cbr -e 500 -c 1 -i 448 -a 1 + -t 2.294 -s 3 -d 4 -p cbr -e 500 -c 1 -i 448 -a 1 r -t 2.2956 -s 3 -d 4 -p cbr -e 500 -c 1 -i 419 -a 1 + -t 2.2956 -s 4 -d 6 -p cbr -e 500 -c 1 -i 419 -a 1 - -t 2.2956 -s 4 -d 6 -p cbr -e 500 -c 1 -i 419 -a 1 h -t 2.2956 -s 4 -d 6 -p cbr -e 500 -c 1 -i 419 -a 1 r -t 2.2996 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 413 -a 1 r -t 2.2996 -s 4 -d 6 -p cbr -e 500 -c 1 -i 414 -a 1 + -t 2.3 -s 1 -d 3 -p cbr -e 500 -c 1 -i 452 -a 1 - -t 2.3 -s 1 -d 3 -p cbr -e 500 -c 1 -i 452 -a 1 h -t 2.3 -s 1 -d 3 -p cbr -e 500 -c 1 -i 452 -a 1 + -t 2.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 453 -a 1 - -t 2.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 453 -a 1 h -t 2.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 453 -a 1 - -t 2.3016 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 433 -a 0 -S 0 -y {47 47} h -t 2.3016 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 433 -a 0 -S 0 -y {-1 -1} r -t 2.30358 -s 4 -d 3 -p ack -e 40 -c 0 -i 441 -a 0 -S 0 -y {46 46} + -t 2.30358 -s 3 -d 0 -p ack -e 40 -c 0 -i 441 -a 0 -S 0 -y {46 46} - -t 2.30358 -s 3 -d 0 -p ack -e 40 -c 0 -i 441 -a 0 -S 0 -f 0 -m 1 -y {46 46} h -t 2.30358 -s 3 -d 0 -p ack -e 40 -c 0 -i 441 -a 0 -S 0 -y {-1 -1} r -t 2.3036 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 420 -a 1 + -t 2.3036 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 420 -a 1 - -t 2.3036 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 420 -a 1 h -t 2.3036 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 420 -a 1 r -t 2.3036 -s 4 -d 6 -p cbr -e 500 -c 1 -i 415 -a 1 r -t 2.304 -s 1 -d 3 -p cbr -e 500 -c 1 -i 449 -a 1 + -t 2.304 -s 3 -d 4 -p cbr -e 500 -c 1 -i 449 -a 1 r -t 2.3076 -s 3 -d 4 -p cbr -e 500 -c 1 -i 422 -a 1 + -t 2.3076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 422 -a 1 - -t 2.3076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 422 -a 1 h -t 2.3076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 422 -a 1 r -t 2.308 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 450 -a 1 + -t 2.308 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 450 -a 1 - -t 2.3096 -s 3 -d 4 -p cbr -e 500 -c 1 -i 432 -a 1 h -t 2.3096 -s 3 -d 4 -p cbr -e 500 -c 1 -i 432 -a 1 r -t 2.3116 -s 3 -d 4 -p cbr -e 500 -c 1 -i 423 -a 1 + -t 2.3116 -s 4 -d 6 -p cbr -e 500 -c 1 -i 423 -a 1 - -t 2.3116 -s 4 -d 6 -p cbr -e 500 -c 1 -i 423 -a 1 h -t 2.3116 -s 4 -d 6 -p cbr -e 500 -c 1 -i 423 -a 1 - -t 2.3136 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 434 -a 0 -S 0 -y {48 48} h -t 2.3136 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 434 -a 0 -S 0 -y {-1 -1} r -t 2.314 -s 1 -d 3 -p cbr -e 500 -c 1 -i 451 -a 1 + -t 2.314 -s 3 -d 4 -p cbr -e 500 -c 1 -i 451 -a 1 r -t 2.3156 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 416 -a 1 r -t 2.3156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 418 -a 1 r -t 2.3196 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 424 -a 1 + -t 2.3196 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 424 -a 1 - -t 2.3196 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 424 -a 1 h -t 2.3196 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 424 -a 1 r -t 2.3196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 419 -a 1 + -t 2.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 454 -a 1 - -t 2.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 454 -a 1 h -t 2.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 454 -a 1 - -t 2.3216 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 435 -a 0 -S 0 -y {49 49} h -t 2.3216 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 435 -a 0 -S 0 -y {-1 -1} r -t 2.3236 -s 3 -d 4 -p cbr -e 500 -c 1 -i 425 -a 1 + -t 2.3236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 425 -a 1 - -t 2.3236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 425 -a 1 h -t 2.3236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 425 -a 1 r -t 2.32365 -s 3 -d 0 -p ack -e 40 -c 0 -i 441 -a 0 -S 0 -y {46 46} r -t 2.324 -s 1 -d 3 -p cbr -e 500 -c 1 -i 452 -a 1 + -t 2.324 -s 3 -d 4 -p cbr -e 500 -c 1 -i 452 -a 1 r -t 2.3276 -s 3 -d 4 -p cbr -e 500 -c 1 -i 427 -a 1 + -t 2.3276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 427 -a 1 - -t 2.3276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 427 -a 1 h -t 2.3276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 427 -a 1 r -t 2.328 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 453 -a 1 + -t 2.328 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 453 -a 1 - -t 2.3296 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 436 -a 0 -S 0 -y {50 50} h -t 2.3296 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 436 -a 0 -S 0 -y {-1 -1} r -t 2.33158 -s 4 -d 3 -p ack -e 40 -c 0 -i 447 -a 0 -S 0 -y {46 46} + -t 2.33158 -s 3 -d 0 -p ack -e 40 -c 0 -i 447 -a 0 -S 0 -y {46 46} - -t 2.33158 -s 3 -d 0 -p ack -e 40 -c 0 -i 447 -a 0 -S 0 -f 0 -m 1 -y {46 46} h -t 2.33158 -s 3 -d 0 -p ack -e 40 -c 0 -i 447 -a 0 -S 0 -y {-1 -1} r -t 2.3316 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 420 -a 1 r -t 2.3316 -s 4 -d 6 -p cbr -e 500 -c 1 -i 422 -a 1 r -t 2.3356 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 428 -a 1 + -t 2.3356 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 428 -a 1 - -t 2.3356 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 428 -a 1 h -t 2.3356 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 428 -a 1 r -t 2.3356 -s 4 -d 6 -p cbr -e 500 -c 1 -i 423 -a 1 - -t 2.3376 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 437 -a 0 -S 0 -y {51 51} h -t 2.3376 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 437 -a 0 -S 0 -y {-1 -1} r -t 2.3396 -s 3 -d 4 -p cbr -e 500 -c 1 -i 429 -a 1 + -t 2.3396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 429 -a 1 - -t 2.3396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 429 -a 1 h -t 2.3396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 429 -a 1 + -t 2.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 455 -a 1 - -t 2.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 455 -a 1 h -t 2.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 455 -a 1 r -t 2.3436 -s 3 -d 4 -p cbr -e 500 -c 1 -i 430 -a 1 + -t 2.3436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 430 -a 1 - -t 2.3436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 430 -a 1 h -t 2.3436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 430 -a 1 - -t 2.3456 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 438 -a 0 -S 0 -y {52 52} h -t 2.3456 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 438 -a 0 -S 0 -y {-1 -1} r -t 2.3476 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 424 -a 1 r -t 2.3476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 425 -a 1 r -t 2.348 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 454 -a 1 + -t 2.348 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 454 -a 1 r -t 2.3516 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 431 -a 1 + -t 2.3516 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 431 -a 1 - -t 2.3516 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 431 -a 1 h -t 2.3516 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 431 -a 1 r -t 2.3516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 427 -a 1 r -t 2.35165 -s 3 -d 0 -p ack -e 40 -c 0 -i 447 -a 0 -S 0 -y {46 46} - -t 2.3536 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 439 -a 0 -S 0 -y {53 53} h -t 2.3536 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 439 -a 0 -S 0 -y {-1 -1} r -t 2.3596 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 433 -a 0 -S 0 -y {47 47} + -t 2.3596 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 433 -a 0 -S 0 -y {47 47} - -t 2.3596 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 433 -a 0 -S 0 -y {47 47} h -t 2.3596 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 433 -a 0 -S 0 -y {-1 -1} + -t 2.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 456 -a 1 - -t 2.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 456 -a 1 h -t 2.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 456 -a 1 - -t 2.3616 -s 3 -d 4 -p cbr -e 500 -c 1 -i 444 -a 1 h -t 2.3616 -s 3 -d 4 -p cbr -e 500 -c 1 -i 444 -a 1 r -t 2.3636 -s 3 -d 4 -p cbr -e 500 -c 1 -i 432 -a 1 + -t 2.3636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 432 -a 1 - -t 2.3636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 432 -a 1 h -t 2.3636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 432 -a 1 r -t 2.3636 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 428 -a 1 r -t 2.3636 -s 4 -d 6 -p cbr -e 500 -c 1 -i 429 -a 1 - -t 2.3656 -s 3 -d 4 -p cbr -e 500 -c 1 -i 445 -a 1 h -t 2.3656 -s 3 -d 4 -p cbr -e 500 -c 1 -i 445 -a 1 r -t 2.3676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 430 -a 1 r -t 2.368 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 455 -a 1 + -t 2.368 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 455 -a 1 - -t 2.3696 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 446 -a 1 h -t 2.3696 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 446 -a 1 r -t 2.3716 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 434 -a 0 -S 0 -y {48 48} + -t 2.3716 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 434 -a 0 -S 0 -y {48 48} - -t 2.3716 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 434 -a 0 -S 0 -y {48 48} h -t 2.3716 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 434 -a 0 -S 0 -y {-1 -1} - -t 2.3776 -s 3 -d 4 -p cbr -e 500 -c 1 -i 448 -a 1 h -t 2.3776 -s 3 -d 4 -p cbr -e 500 -c 1 -i 448 -a 1 r -t 2.3796 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 435 -a 0 -S 0 -y {49 49} + -t 2.3796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 435 -a 0 -S 0 -y {49 49} - -t 2.3796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 435 -a 0 -S 0 -y {49 49} h -t 2.3796 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 435 -a 0 -S 0 -y {-1 -1} r -t 2.3796 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 431 -a 1 + -t 2.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 457 -a 1 - -t 2.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 457 -a 1 h -t 2.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 457 -a 1 r -t 2.3812 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 433 -a 0 -S 0 -y {47 47} + -t 2.3812 -s 5 -d 4 -p ack -e 40 -c 0 -i 458 -a 0 -S 0 -y {47 47} - -t 2.3812 -s 5 -d 4 -p ack -e 40 -c 0 -i 458 -a 0 -S 0 -y {47 47} h -t 2.3812 -s 5 -d 4 -p ack -e 40 -c 0 -i 458 -a 0 -S 0 -y {-1 -1} - -t 2.3816 -s 3 -d 4 -p cbr -e 500 -c 1 -i 449 -a 1 h -t 2.3816 -s 3 -d 4 -p cbr -e 500 -c 1 -i 449 -a 1 - -t 2.3856 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 450 -a 1 h -t 2.3856 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 450 -a 1 r -t 2.3876 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 436 -a 0 -S 0 -y {50 50} + -t 2.3876 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 436 -a 0 -S 0 -y {50 50} - -t 2.3876 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 436 -a 0 -S 0 -y {50 50} h -t 2.3876 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 436 -a 0 -S 0 -y {-1 -1} r -t 2.3876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 432 -a 1 r -t 2.388 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 456 -a 1 + -t 2.388 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 456 -a 1 r -t 2.3932 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 434 -a 0 -S 0 -y {48 48} + -t 2.3932 -s 5 -d 4 -p ack -e 40 -c 0 -i 459 -a 0 -S 0 -y {48 48} - -t 2.3932 -s 5 -d 4 -p ack -e 40 -c 0 -i 459 -a 0 -S 0 -y {48 48} h -t 2.3932 -s 5 -d 4 -p ack -e 40 -c 0 -i 459 -a 0 -S 0 -y {-1 -1} - -t 2.3936 -s 3 -d 4 -p cbr -e 500 -c 1 -i 451 -a 1 h -t 2.3936 -s 3 -d 4 -p cbr -e 500 -c 1 -i 451 -a 1 r -t 2.3956 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 437 -a 0 -S 0 -y {51 51} + -t 2.3956 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 437 -a 0 -S 0 -y {51 51} - -t 2.3956 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 437 -a 0 -S 0 -y {51 51} h -t 2.3956 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 437 -a 0 -S 0 -y {-1 -1} - -t 2.3976 -s 3 -d 4 -p cbr -e 500 -c 1 -i 452 -a 1 h -t 2.3976 -s 3 -d 4 -p cbr -e 500 -c 1 -i 452 -a 1 + -t 2.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 460 -a 1 - -t 2.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 460 -a 1 h -t 2.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 460 -a 1 r -t 2.4012 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 435 -a 0 -S 0 -y {49 49} + -t 2.4012 -s 5 -d 4 -p ack -e 40 -c 0 -i 461 -a 0 -S 0 -y {49 49} - -t 2.4012 -s 5 -d 4 -p ack -e 40 -c 0 -i 461 -a 0 -S 0 -y {49 49} h -t 2.4012 -s 5 -d 4 -p ack -e 40 -c 0 -i 461 -a 0 -S 0 -y {-1 -1} r -t 2.40126 -s 5 -d 4 -p ack -e 40 -c 0 -i 458 -a 0 -S 0 -y {47 47} + -t 2.40126 -s 4 -d 3 -p ack -e 40 -c 0 -i 458 -a 0 -S 0 -y {47 47} - -t 2.40126 -s 4 -d 3 -p ack -e 40 -c 0 -i 458 -a 0 -S 0 -y {47 47} h -t 2.40126 -s 4 -d 3 -p ack -e 40 -c 0 -i 458 -a 0 -S 0 -y {-1 -1} - -t 2.4016 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 453 -a 1 h -t 2.4016 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 453 -a 1 r -t 2.4036 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 438 -a 0 -S 0 -y {52 52} + -t 2.4036 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 438 -a 0 -S 0 -y {52 52} - -t 2.4036 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 438 -a 0 -S 0 -y {52 52} h -t 2.4036 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 438 -a 0 -S 0 -y {-1 -1} r -t 2.408 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 457 -a 1 + -t 2.408 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 457 -a 1 r -t 2.4092 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 436 -a 0 -S 0 -y {50 50} + -t 2.4092 -s 5 -d 4 -p ack -e 40 -c 0 -i 462 -a 0 -S 0 -y {50 50} - -t 2.4092 -s 5 -d 4 -p ack -e 40 -c 0 -i 462 -a 0 -S 0 -y {50 50} h -t 2.4092 -s 5 -d 4 -p ack -e 40 -c 0 -i 462 -a 0 -S 0 -y {-1 -1} - -t 2.4096 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 454 -a 1 h -t 2.4096 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 454 -a 1 r -t 2.4116 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 439 -a 0 -S 0 -y {53 53} + -t 2.4116 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 439 -a 0 -S 0 -y {53 53} - -t 2.4116 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 439 -a 0 -S 0 -y {53 53} h -t 2.4116 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 439 -a 0 -S 0 -y {-1 -1} r -t 2.41326 -s 5 -d 4 -p ack -e 40 -c 0 -i 459 -a 0 -S 0 -y {48 48} + -t 2.41326 -s 4 -d 3 -p ack -e 40 -c 0 -i 459 -a 0 -S 0 -y {48 48} - -t 2.41326 -s 4 -d 3 -p ack -e 40 -c 0 -i 459 -a 0 -S 0 -y {48 48} h -t 2.41326 -s 4 -d 3 -p ack -e 40 -c 0 -i 459 -a 0 -S 0 -y {-1 -1} r -t 2.4156 -s 3 -d 4 -p cbr -e 500 -c 1 -i 444 -a 1 + -t 2.4156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 444 -a 1 - -t 2.4156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 444 -a 1 h -t 2.4156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 444 -a 1 r -t 2.4172 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 437 -a 0 -S 0 -y {51 51} + -t 2.4172 -s 5 -d 4 -p ack -e 40 -c 0 -i 463 -a 0 -S 0 -y {51 51} - -t 2.4172 -s 5 -d 4 -p ack -e 40 -c 0 -i 463 -a 0 -S 0 -y {51 51} h -t 2.4172 -s 5 -d 4 -p ack -e 40 -c 0 -i 463 -a 0 -S 0 -y {-1 -1} - -t 2.4176 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 455 -a 1 h -t 2.4176 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 455 -a 1 r -t 2.4196 -s 3 -d 4 -p cbr -e 500 -c 1 -i 445 -a 1 + -t 2.4196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 445 -a 1 - -t 2.4196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 445 -a 1 h -t 2.4196 -s 4 -d 6 -p cbr -e 500 -c 1 -i 445 -a 1 + -t 2.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 464 -a 1 - -t 2.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 464 -a 1 h -t 2.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 464 -a 1 r -t 2.42126 -s 5 -d 4 -p ack -e 40 -c 0 -i 461 -a 0 -S 0 -y {49 49} + -t 2.42126 -s 4 -d 3 -p ack -e 40 -c 0 -i 461 -a 0 -S 0 -y {49 49} - -t 2.42126 -s 4 -d 3 -p ack -e 40 -c 0 -i 461 -a 0 -S 0 -y {49 49} h -t 2.42126 -s 4 -d 3 -p ack -e 40 -c 0 -i 461 -a 0 -S 0 -y {-1 -1} r -t 2.4252 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 438 -a 0 -S 0 -y {52 52} + -t 2.4252 -s 5 -d 4 -p ack -e 40 -c 0 -i 465 -a 0 -S 0 -y {52 52} - -t 2.4252 -s 5 -d 4 -p ack -e 40 -c 0 -i 465 -a 0 -S 0 -y {52 52} h -t 2.4252 -s 5 -d 4 -p ack -e 40 -c 0 -i 465 -a 0 -S 0 -y {-1 -1} - -t 2.4256 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 456 -a 1 h -t 2.4256 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 456 -a 1 r -t 2.4276 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 446 -a 1 + -t 2.4276 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 446 -a 1 - -t 2.4276 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 446 -a 1 h -t 2.4276 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 446 -a 1 r -t 2.428 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 460 -a 1 + -t 2.428 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 460 -a 1 r -t 2.42926 -s 5 -d 4 -p ack -e 40 -c 0 -i 462 -a 0 -S 0 -y {50 50} + -t 2.42926 -s 4 -d 3 -p ack -e 40 -c 0 -i 462 -a 0 -S 0 -y {50 50} - -t 2.42926 -s 4 -d 3 -p ack -e 40 -c 0 -i 462 -a 0 -S 0 -y {50 50} h -t 2.42926 -s 4 -d 3 -p ack -e 40 -c 0 -i 462 -a 0 -S 0 -y {-1 -1} r -t 2.4316 -s 3 -d 4 -p cbr -e 500 -c 1 -i 448 -a 1 + -t 2.4316 -s 4 -d 6 -p cbr -e 500 -c 1 -i 448 -a 1 - -t 2.4316 -s 4 -d 6 -p cbr -e 500 -c 1 -i 448 -a 1 h -t 2.4316 -s 4 -d 6 -p cbr -e 500 -c 1 -i 448 -a 1 r -t 2.4332 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 439 -a 0 -S 0 -y {53 53} + -t 2.4332 -s 5 -d 4 -p ack -e 40 -c 0 -i 466 -a 0 -S 0 -y {53 53} - -t 2.4332 -s 5 -d 4 -p ack -e 40 -c 0 -i 466 -a 0 -S 0 -y {53 53} h -t 2.4332 -s 5 -d 4 -p ack -e 40 -c 0 -i 466 -a 0 -S 0 -y {-1 -1} - -t 2.4336 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 457 -a 1 h -t 2.4336 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 457 -a 1 r -t 2.4356 -s 3 -d 4 -p cbr -e 500 -c 1 -i 449 -a 1 + -t 2.4356 -s 4 -d 6 -p cbr -e 500 -c 1 -i 449 -a 1 - -t 2.4356 -s 4 -d 6 -p cbr -e 500 -c 1 -i 449 -a 1 h -t 2.4356 -s 4 -d 6 -p cbr -e 500 -c 1 -i 449 -a 1 r -t 2.43726 -s 5 -d 4 -p ack -e 40 -c 0 -i 463 -a 0 -S 0 -y {51 51} + -t 2.43726 -s 4 -d 3 -p ack -e 40 -c 0 -i 463 -a 0 -S 0 -y {51 51} - -t 2.43726 -s 4 -d 3 -p ack -e 40 -c 0 -i 463 -a 0 -S 0 -y {51 51} h -t 2.43726 -s 4 -d 3 -p ack -e 40 -c 0 -i 463 -a 0 -S 0 -y {-1 -1} r -t 2.4396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 444 -a 1 + -t 2.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 467 -a 1 - -t 2.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 467 -a 1 h -t 2.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 467 -a 1 - -t 2.4416 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 460 -a 1 h -t 2.4416 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 460 -a 1 r -t 2.4436 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 450 -a 1 + -t 2.4436 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 450 -a 1 - -t 2.4436 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 450 -a 1 h -t 2.4436 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 450 -a 1 r -t 2.4436 -s 4 -d 6 -p cbr -e 500 -c 1 -i 445 -a 1 r -t 2.44526 -s 5 -d 4 -p ack -e 40 -c 0 -i 465 -a 0 -S 0 -y {52 52} + -t 2.44526 -s 4 -d 3 -p ack -e 40 -c 0 -i 465 -a 0 -S 0 -y {52 52} - -t 2.44526 -s 4 -d 3 -p ack -e 40 -c 0 -i 465 -a 0 -S 0 -y {52 52} h -t 2.44526 -s 4 -d 3 -p ack -e 40 -c 0 -i 465 -a 0 -S 0 -y {-1 -1} r -t 2.4476 -s 3 -d 4 -p cbr -e 500 -c 1 -i 451 -a 1 + -t 2.4476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 451 -a 1 - -t 2.4476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 451 -a 1 h -t 2.4476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 451 -a 1 r -t 2.448 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 464 -a 1 + -t 2.448 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 464 -a 1 - -t 2.4496 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 464 -a 1 h -t 2.4496 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 464 -a 1 r -t 2.45158 -s 4 -d 3 -p ack -e 40 -c 0 -i 458 -a 0 -S 0 -y {47 47} + -t 2.45158 -s 3 -d 0 -p ack -e 40 -c 0 -i 458 -a 0 -S 0 -y {47 47} - -t 2.45158 -s 3 -d 0 -p ack -e 40 -c 0 -i 458 -a 0 -S 0 -f 0 -m 1 -y {47 47} h -t 2.45158 -s 3 -d 0 -p ack -e 40 -c 0 -i 458 -a 0 -S 0 -y {-1 -1} r -t 2.4516 -s 3 -d 4 -p cbr -e 500 -c 1 -i 452 -a 1 + -t 2.4516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 452 -a 1 - -t 2.4516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 452 -a 1 h -t 2.4516 -s 4 -d 6 -p cbr -e 500 -c 1 -i 452 -a 1 r -t 2.45326 -s 5 -d 4 -p ack -e 40 -c 0 -i 466 -a 0 -S 0 -y {53 53} + -t 2.45326 -s 4 -d 3 -p ack -e 40 -c 0 -i 466 -a 0 -S 0 -y {53 53} - -t 2.45326 -s 4 -d 3 -p ack -e 40 -c 0 -i 466 -a 0 -S 0 -y {53 53} h -t 2.45326 -s 4 -d 3 -p ack -e 40 -c 0 -i 466 -a 0 -S 0 -y {-1 -1} r -t 2.4556 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 446 -a 1 r -t 2.4556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 448 -a 1 r -t 2.4596 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 453 -a 1 + -t 2.4596 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 453 -a 1 - -t 2.4596 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 453 -a 1 h -t 2.4596 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 453 -a 1 r -t 2.4596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 449 -a 1 + -t 2.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 468 -a 1 - -t 2.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 468 -a 1 h -t 2.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 468 -a 1 r -t 2.46358 -s 4 -d 3 -p ack -e 40 -c 0 -i 459 -a 0 -S 0 -y {48 48} + -t 2.46358 -s 3 -d 0 -p ack -e 40 -c 0 -i 459 -a 0 -S 0 -y {48 48} - -t 2.46358 -s 3 -d 0 -p ack -e 40 -c 0 -i 459 -a 0 -S 0 -f 0 -m 1 -y {48 48} h -t 2.46358 -s 3 -d 0 -p ack -e 40 -c 0 -i 459 -a 0 -S 0 -y {-1 -1} r -t 2.4676 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 454 -a 1 + -t 2.4676 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 454 -a 1 - -t 2.4676 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 454 -a 1 h -t 2.4676 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 454 -a 1 r -t 2.468 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 467 -a 1 + -t 2.468 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 467 -a 1 - -t 2.468 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 467 -a 1 h -t 2.468 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 467 -a 1 r -t 2.47158 -s 4 -d 3 -p ack -e 40 -c 0 -i 461 -a 0 -S 0 -y {49 49} + -t 2.47158 -s 3 -d 0 -p ack -e 40 -c 0 -i 461 -a 0 -S 0 -y {49 49} - -t 2.47158 -s 3 -d 0 -p ack -e 40 -c 0 -i 461 -a 0 -S 0 -f 0 -m 1 -y {49 49} h -t 2.47158 -s 3 -d 0 -p ack -e 40 -c 0 -i 461 -a 0 -S 0 -y {-1 -1} r -t 2.4716 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 450 -a 1 r -t 2.4716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 451 -a 1 r -t 2.47165 -s 3 -d 0 -p ack -e 40 -c 0 -i 458 -a 0 -S 0 -y {47 47} + -t 2.47165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 469 -a 0 -S 0 -f 0 -m 0 -y {55 55} - -t 2.47165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 469 -a 0 -S 0 -y {55 55} h -t 2.47165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 469 -a 0 -S 0 -y {-1 -1} r -t 2.4756 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 455 -a 1 + -t 2.4756 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 455 -a 1 r -t 2.4756 -s 4 -d 6 -p cbr -e 500 -c 1 -i 452 -a 1 - -t 2.4756 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 455 -a 1 h -t 2.4756 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 455 -a 1 r -t 2.47958 -s 4 -d 3 -p ack -e 40 -c 0 -i 462 -a 0 -S 0 -y {50 50} + -t 2.47958 -s 3 -d 0 -p ack -e 40 -c 0 -i 462 -a 0 -S 0 -y {50 50} - -t 2.47958 -s 3 -d 0 -p ack -e 40 -c 0 -i 462 -a 0 -S 0 -f 0 -m 1 -y {50 50} h -t 2.47958 -s 3 -d 0 -p ack -e 40 -c 0 -i 462 -a 0 -S 0 -y {-1 -1} + -t 2.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 470 -a 1 - -t 2.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 470 -a 1 h -t 2.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 470 -a 1 r -t 2.4836 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 456 -a 1 + -t 2.4836 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 456 -a 1 - -t 2.4836 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 456 -a 1 h -t 2.4836 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 456 -a 1 r -t 2.48365 -s 3 -d 0 -p ack -e 40 -c 0 -i 459 -a 0 -S 0 -y {48 48} + -t 2.48365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 471 -a 0 -S 0 -f 0 -m 0 -y {56 56} - -t 2.48365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 471 -a 0 -S 0 -y {56 56} h -t 2.48365 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 471 -a 0 -S 0 -y {-1 -1} r -t 2.48758 -s 4 -d 3 -p ack -e 40 -c 0 -i 463 -a 0 -S 0 -y {51 51} + -t 2.48758 -s 3 -d 0 -p ack -e 40 -c 0 -i 463 -a 0 -S 0 -y {51 51} - -t 2.48758 -s 3 -d 0 -p ack -e 40 -c 0 -i 463 -a 0 -S 0 -f 0 -m 1 -y {51 51} h -t 2.48758 -s 3 -d 0 -p ack -e 40 -c 0 -i 463 -a 0 -S 0 -y {-1 -1} r -t 2.4876 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 453 -a 1 r -t 2.488 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 468 -a 1 + -t 2.488 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 468 -a 1 - -t 2.488 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 468 -a 1 h -t 2.488 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 468 -a 1 r -t 2.4916 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 457 -a 1 + -t 2.4916 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 457 -a 1 - -t 2.4916 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 457 -a 1 h -t 2.4916 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 457 -a 1 r -t 2.49165 -s 3 -d 0 -p ack -e 40 -c 0 -i 461 -a 0 -S 0 -y {49 49} + -t 2.49165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 472 -a 0 -S 0 -f 0 -m 0 -y {57 57} - -t 2.49165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 472 -a 0 -S 0 -y {57 57} h -t 2.49165 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 472 -a 0 -S 0 -y {-1 -1} r -t 2.49325 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 469 -a 0 -S 0 -y {55 55} + -t 2.49325 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 469 -a 0 -S 0 -y {55 55} r -t 2.49558 -s 4 -d 3 -p ack -e 40 -c 0 -i 465 -a 0 -S 0 -y {52 52} + -t 2.49558 -s 3 -d 0 -p ack -e 40 -c 0 -i 465 -a 0 -S 0 -y {52 52} - -t 2.49558 -s 3 -d 0 -p ack -e 40 -c 0 -i 465 -a 0 -S 0 -f 0 -m 1 -y {52 52} h -t 2.49558 -s 3 -d 0 -p ack -e 40 -c 0 -i 465 -a 0 -S 0 -y {-1 -1} r -t 2.4956 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 454 -a 1 - -t 2.496 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 469 -a 0 -S 0 -y {55 55} h -t 2.496 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 469 -a 0 -S 0 -y {-1 -1} r -t 2.4996 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 460 -a 1 + -t 2.4996 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 460 -a 1 - -t 2.4996 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 460 -a 1 h -t 2.4996 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 460 -a 1 r -t 2.49965 -s 3 -d 0 -p ack -e 40 -c 0 -i 462 -a 0 -S 0 -y {50 50} + -t 2.49965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 473 -a 0 -S 0 -f 0 -m 0 -y {58 58} - -t 2.49965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 473 -a 0 -S 0 -y {58 58} h -t 2.49965 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 473 -a 0 -S 0 -y {-1 -1} r -t 2.50358 -s 4 -d 3 -p ack -e 40 -c 0 -i 466 -a 0 -S 0 -y {53 53} + -t 2.50358 -s 3 -d 0 -p ack -e 40 -c 0 -i 466 -a 0 -S 0 -y {53 53} - -t 2.50358 -s 3 -d 0 -p ack -e 40 -c 0 -i 466 -a 0 -S 0 -f 0 -m 1 -y {53 53} h -t 2.50358 -s 3 -d 0 -p ack -e 40 -c 0 -i 466 -a 0 -S 0 -y {-1 -1} r -t 2.5036 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 455 -a 1 r -t 2.50525 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 471 -a 0 -S 0 -y {56 56} + -t 2.50525 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 471 -a 0 -S 0 -y {56 56} - -t 2.50525 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 471 -a 0 -S 0 -y {56 56} h -t 2.50525 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 471 -a 0 -S 0 -y {-1 -1} r -t 2.5076 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 464 -a 1 + -t 2.5076 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 464 -a 1 - -t 2.5076 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 464 -a 1 h -t 2.5076 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 464 -a 1 r -t 2.50765 -s 3 -d 0 -p ack -e 40 -c 0 -i 463 -a 0 -S 0 -y {51 51} r -t 2.508 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 470 -a 1 + -t 2.508 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 470 -a 1 r -t 2.5116 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 456 -a 1 r -t 2.51325 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 472 -a 0 -S 0 -y {57 57} + -t 2.51325 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 472 -a 0 -S 0 -y {57 57} - -t 2.51325 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 470 -a 1 h -t 2.51325 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 470 -a 1 r -t 2.51565 -s 3 -d 0 -p ack -e 40 -c 0 -i 465 -a 0 -S 0 -y {52 52} r -t 2.5196 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 457 -a 1 r -t 2.52125 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 473 -a 0 -S 0 -y {58 58} + -t 2.52125 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 473 -a 0 -S 0 -y {58 58} - -t 2.52125 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 472 -a 0 -S 0 -y {57 57} h -t 2.52125 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 472 -a 0 -S 0 -y {-1 -1} r -t 2.52365 -s 3 -d 0 -p ack -e 40 -c 0 -i 466 -a 0 -S 0 -y {53 53} r -t 2.526 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 467 -a 1 + -t 2.526 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 467 -a 1 - -t 2.526 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 467 -a 1 h -t 2.526 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 467 -a 1 r -t 2.5276 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 460 -a 1 - -t 2.52925 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 473 -a 0 -S 0 -y {58 58} h -t 2.52925 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 473 -a 0 -S 0 -y {-1 -1} r -t 2.5356 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 464 -a 1 r -t 2.546 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 468 -a 1 + -t 2.546 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 468 -a 1 - -t 2.546 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 468 -a 1 h -t 2.546 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 468 -a 1 v -t 2.5499999999999998 sim_annotation 2.5499999999999998 4 FTP stops r -t 2.554 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 469 -a 0 -S 0 -y {55 55} + -t 2.554 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 469 -a 0 -S 0 -y {55 55} - -t 2.554 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 469 -a 0 -S 0 -y {55 55} h -t 2.554 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 469 -a 0 -S 0 -y {-1 -1} r -t 2.554 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 467 -a 1 r -t 2.56325 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 471 -a 0 -S 0 -y {56 56} + -t 2.56325 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 471 -a 0 -S 0 -y {56 56} - -t 2.56325 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 471 -a 0 -S 0 -y {56 56} h -t 2.56325 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 471 -a 0 -S 0 -y {-1 -1} r -t 2.57125 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 470 -a 1 + -t 2.57125 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 470 -a 1 - -t 2.57125 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 470 -a 1 h -t 2.57125 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 470 -a 1 r -t 2.574 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 468 -a 1 r -t 2.5756 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 469 -a 0 -S 0 -y {55 55} + -t 2.5756 -s 5 -d 4 -p ack -e 40 -c 0 -i 474 -a 0 -S 0 -y {53 53} - -t 2.5756 -s 5 -d 4 -p ack -e 40 -c 0 -i 474 -a 0 -S 0 -y {53 53} h -t 2.5756 -s 5 -d 4 -p ack -e 40 -c 0 -i 474 -a 0 -S 0 -y {-1 -1} r -t 2.57925 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 472 -a 0 -S 0 -y {57 57} + -t 2.57925 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 472 -a 0 -S 0 -y {57 57} - -t 2.57925 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 472 -a 0 -S 0 -y {57 57} h -t 2.57925 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 472 -a 0 -S 0 -y {-1 -1} r -t 2.58485 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 471 -a 0 -S 0 -y {56 56} + -t 2.58485 -s 5 -d 4 -p ack -e 40 -c 0 -i 475 -a 0 -S 0 -y {53 53} - -t 2.58485 -s 5 -d 4 -p ack -e 40 -c 0 -i 475 -a 0 -S 0 -y {53 53} h -t 2.58485 -s 5 -d 4 -p ack -e 40 -c 0 -i 475 -a 0 -S 0 -y {-1 -1} r -t 2.58725 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 473 -a 0 -S 0 -y {58 58} + -t 2.58725 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 473 -a 0 -S 0 -y {58 58} - -t 2.58725 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 473 -a 0 -S 0 -y {58 58} h -t 2.58725 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 473 -a 0 -S 0 -y {-1 -1} r -t 2.59566 -s 5 -d 4 -p ack -e 40 -c 0 -i 474 -a 0 -S 0 -y {53 53} + -t 2.59566 -s 4 -d 3 -p ack -e 40 -c 0 -i 474 -a 0 -S 0 -y {53 53} - -t 2.59566 -s 4 -d 3 -p ack -e 40 -c 0 -i 474 -a 0 -S 0 -y {53 53} h -t 2.59566 -s 4 -d 3 -p ack -e 40 -c 0 -i 474 -a 0 -S 0 -y {-1 -1} r -t 2.59925 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 470 -a 1 r -t 2.60085 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 472 -a 0 -S 0 -y {57 57} + -t 2.60085 -s 5 -d 4 -p ack -e 40 -c 0 -i 476 -a 0 -S 0 -y {53 53} - -t 2.60085 -s 5 -d 4 -p ack -e 40 -c 0 -i 476 -a 0 -S 0 -y {53 53} h -t 2.60085 -s 5 -d 4 -p ack -e 40 -c 0 -i 476 -a 0 -S 0 -y {-1 -1} r -t 2.60491 -s 5 -d 4 -p ack -e 40 -c 0 -i 475 -a 0 -S 0 -y {53 53} + -t 2.60491 -s 4 -d 3 -p ack -e 40 -c 0 -i 475 -a 0 -S 0 -y {53 53} - -t 2.60491 -s 4 -d 3 -p ack -e 40 -c 0 -i 475 -a 0 -S 0 -y {53 53} h -t 2.60491 -s 4 -d 3 -p ack -e 40 -c 0 -i 475 -a 0 -S 0 -y {-1 -1} r -t 2.60885 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 473 -a 0 -S 0 -y {58 58} + -t 2.60885 -s 5 -d 4 -p ack -e 40 -c 0 -i 477 -a 0 -S 0 -y {53 53} - -t 2.60885 -s 5 -d 4 -p ack -e 40 -c 0 -i 477 -a 0 -S 0 -y {53 53} h -t 2.60885 -s 5 -d 4 -p ack -e 40 -c 0 -i 477 -a 0 -S 0 -y {-1 -1} r -t 2.62091 -s 5 -d 4 -p ack -e 40 -c 0 -i 476 -a 0 -S 0 -y {53 53} + -t 2.62091 -s 4 -d 3 -p ack -e 40 -c 0 -i 476 -a 0 -S 0 -y {53 53} - -t 2.62091 -s 4 -d 3 -p ack -e 40 -c 0 -i 476 -a 0 -S 0 -y {53 53} h -t 2.62091 -s 4 -d 3 -p ack -e 40 -c 0 -i 476 -a 0 -S 0 -y {-1 -1} r -t 2.62891 -s 5 -d 4 -p ack -e 40 -c 0 -i 477 -a 0 -S 0 -y {53 53} + -t 2.62891 -s 4 -d 3 -p ack -e 40 -c 0 -i 477 -a 0 -S 0 -y {53 53} - -t 2.62891 -s 4 -d 3 -p ack -e 40 -c 0 -i 477 -a 0 -S 0 -y {53 53} h -t 2.62891 -s 4 -d 3 -p ack -e 40 -c 0 -i 477 -a 0 -S 0 -y {-1 -1} r -t 2.64598 -s 4 -d 3 -p ack -e 40 -c 0 -i 474 -a 0 -S 0 -y {53 53} + -t 2.64598 -s 3 -d 0 -p ack -e 40 -c 0 -i 474 -a 0 -S 0 -y {53 53} - -t 2.64598 -s 3 -d 0 -p ack -e 40 -c 0 -i 474 -a 0 -S 0 -f 0 -m 1 -y {53 53} h -t 2.64598 -s 3 -d 0 -p ack -e 40 -c 0 -i 474 -a 0 -S 0 -y {-1 -1} r -t 2.65523 -s 4 -d 3 -p ack -e 40 -c 0 -i 475 -a 0 -S 0 -y {53 53} + -t 2.65523 -s 3 -d 0 -p ack -e 40 -c 0 -i 475 -a 0 -S 0 -y {53 53} - -t 2.65523 -s 3 -d 0 -p ack -e 40 -c 0 -i 475 -a 0 -S 0 -f 0 -m 1 -y {53 53} h -t 2.65523 -s 3 -d 0 -p ack -e 40 -c 0 -i 475 -a 0 -S 0 -y {-1 -1} r -t 2.66605 -s 3 -d 0 -p ack -e 40 -c 0 -i 474 -a 0 -S 0 -y {53 53} r -t 2.67123 -s 4 -d 3 -p ack -e 40 -c 0 -i 476 -a 0 -S 0 -y {53 53} + -t 2.67123 -s 3 -d 0 -p ack -e 40 -c 0 -i 476 -a 0 -S 0 -y {53 53} - -t 2.67123 -s 3 -d 0 -p ack -e 40 -c 0 -i 476 -a 0 -S 0 -f 0 -m 1 -y {53 53} h -t 2.67123 -s 3 -d 0 -p ack -e 40 -c 0 -i 476 -a 0 -S 0 -y {-1 -1} r -t 2.6753 -s 3 -d 0 -p ack -e 40 -c 0 -i 475 -a 0 -S 0 -y {53 53} r -t 2.67923 -s 4 -d 3 -p ack -e 40 -c 0 -i 477 -a 0 -S 0 -y {53 53} + -t 2.67923 -s 3 -d 0 -p ack -e 40 -c 0 -i 477 -a 0 -S 0 -y {53 53} - -t 2.67923 -s 3 -d 0 -p ack -e 40 -c 0 -i 477 -a 0 -S 0 -f 0 -m 1 -y {53 53} h -t 2.67923 -s 3 -d 0 -p ack -e 40 -c 0 -i 477 -a 0 -S 0 -y {-1 -1} r -t 2.6913 -s 3 -d 0 -p ack -e 40 -c 0 -i 476 -a 0 -S 0 -y {53 53} + -t 2.6913 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 478 -a 0 -S 0 -f 0 -m 0 -y {54 54} - -t 2.6913 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 478 -a 0 -S 0 -y {54 54} h -t 2.6913 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 478 -a 0 -S 0 -y {-1 -1} + -t 2.6913 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 479 -a 0 -S 0 -f 0 -m 0 -y {55 55} + -t 2.6913 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 480 -a 0 -S 0 -f 0 -m 0 -y {56 56} + -t 2.6913 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 481 -a 0 -S 0 -f 0 -m 0 -y {57 57} - -t 2.6929 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 479 -a 0 -S 0 -y {55 55} h -t 2.6929 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 479 -a 0 -S 0 -y {-1 -1} - -t 2.6945 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 480 -a 0 -S 0 -y {56 56} h -t 2.6945 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 480 -a 0 -S 0 -y {-1 -1} - -t 2.6961 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 481 -a 0 -S 0 -y {57 57} h -t 2.6961 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 481 -a 0 -S 0 -y {-1 -1} r -t 2.6993 -s 3 -d 0 -p ack -e 40 -c 0 -i 477 -a 0 -S 0 -y {53 53} nam-1.15/edu/C4-sliding-window.tcl0000664000076400007660000000613607024407027015567 0ustar tomhnsnam# Slow start protocol in a heavily loaded network. # features : labeling, annotation, nam-graph, and window size monitoring # # n0 n5 # \ / # n1 -- n3 ---------- n4 -- n6 # / \ # n2 n7 set ns [new Simulator] $ns color 0 black $ns color 1 red #$ns trace-all [open C4-sliding-window.tr w] #$ns namtrace-all [open C4-sliding-window.nam w] ### build topology with 8 nodes foreach i " 0 1 2 3 4 5 6 7" { set n$i [$ns node] } $ns at 0.0 "$n0 label SLIDING" $ns at 0.0 "$n5 label SLIDING" $ns at 0.0 "$n1 label CBR-1" $ns at 0.0 "$n2 label CBR-2" $ns at 0.0 "$n6 label CBR-1" $ns at 0.0 "$n7 label CBR-2" $ns duplex-link $n0 $n3 5Mb 20ms DropTail $ns duplex-link $n1 $n3 1Mb 20ms DropTail $ns duplex-link $n2 $n3 1Mb 20ms DropTail $ns duplex-link $n3 $n4 1Mb 50ms DropTail $ns duplex-link $n4 $n5 5Mb 20ms DropTail $ns duplex-link $n4 $n6 1Mb 20ms DropTail $ns duplex-link $n4 $n7 1Mb 20ms DropTail $ns queue-limit $n3 $n4 15 $ns duplex-link-op $n0 $n3 orient right-down $ns duplex-link-op $n1 $n3 orient right $ns duplex-link-op $n2 $n3 orient right-up $ns duplex-link-op $n3 $n4 orient right $ns duplex-link-op $n4 $n5 orient right-up $ns duplex-link-op $n4 $n6 orient right $ns duplex-link-op $n4 $n7 orient right-down $ns duplex-link-op $n3 $n4 queuePos 0.5 Agent/TCP set nam_tracevar_ true Agent/TCP set window_ 20 Agent/TCP set maxcwnd_ 8 ### TCP between n0 and n5 (Black) #set sliding [new Agent/TCP/SlidingWindow] set sliding [new Agent/TCP] $sliding set fid_ 0 $ns attach-agent $n0 $sliding #set sink [new Agent/TCPSink/SlidingWindowSink] set sink [new Agent/TCPSink] $ns attach-agent $n5 $sink $ns connect $sliding $sink set ftp [new Application/FTP] $ftp attach-agent $sliding $ns add-agent-trace $sliding tcp $ns monitor-agent-trace $sliding $sliding tracevar cwnd_ $sliding tracevar ssthresh_ ### CBR traffic between (n1 & n6) and (n2 & n7) set cbr0 [new Agent/CBR] $ns attach-agent $n1 $cbr0 $cbr0 set fid_ 1 $cbr0 set packetSize_ 500 $cbr0 set interval_ 0.01 set null0 [new Agent/CBR] $ns attach-agent $n6 $null0 $ns connect $cbr0 $null0 set cbr1 [new Agent/CBR] $ns attach-agent $n2 $cbr1 $cbr1 set fid_ 1 $cbr1 set packetSize_ 1000 $cbr1 set interval_ 0.02 set null1 [new Agent/CBR] $ns attach-agent $n7 $null1 $ns connect $cbr1 $null1 proc finish {} { global ns $ns flush-trace # puts "filtering..." # exec tclsh ../bin/namfilter.tcl C4-sliding-window.nam puts "running nam..." exec nam C4-sliding-window.nam & exit 0 } ### set operations $ns at 0.05 "$cbr0 start" $ns at 2.3 "$cbr0 stop" $ns at 0.1 "$cbr1 start" $ns at 2.5 "$cbr1 stop" $ns at 0.5 "$ftp start" $ns at 2.5 "$ftp stop" $ns at 2.7 "finish" ### add annotations $ns at 0.05 "$ns trace-annotate \"CBR-1 starts\"" $ns at 0.1 "$ns trace-annotate \"CBR-2 starts\"" $ns at 0.5 "$ns trace-annotate \"FTP starts\"" $ns at 2.55 "$ns trace-annotate \"FTP stops\"" $ns run nam-1.15/edu/C4-sliding-window.tr0000664000076400007660000057703106756704702015454 0ustar tomhnsnam+ 0.05 1 3 cbr 500 ------- 1 1.0 6.0 0 0 - 0.05 1 3 cbr 500 ------- 1 1.0 6.0 0 0 v 0.050000000000000003 eval {set sim_annotation {CBR-1 starts}} + 0.06 1 3 cbr 500 ------- 1 1.0 6.0 1 1 - 0.06 1 3 cbr 500 ------- 1 1.0 6.0 1 1 + 0.07 1 3 cbr 500 ------- 1 1.0 6.0 2 2 - 0.07 1 3 cbr 500 ------- 1 1.0 6.0 2 2 r 0.074 1 3 cbr 500 ------- 1 1.0 6.0 0 0 + 0.074 3 4 cbr 500 ------- 1 1.0 6.0 0 0 - 0.074 3 4 cbr 500 ------- 1 1.0 6.0 0 0 + 0.08 1 3 cbr 500 ------- 1 1.0 6.0 3 3 - 0.08 1 3 cbr 500 ------- 1 1.0 6.0 3 3 r 0.084 1 3 cbr 500 ------- 1 1.0 6.0 1 1 + 0.084 3 4 cbr 500 ------- 1 1.0 6.0 1 1 - 0.084 3 4 cbr 500 ------- 1 1.0 6.0 1 1 + 0.09 1 3 cbr 500 ------- 1 1.0 6.0 4 4 - 0.09 1 3 cbr 500 ------- 1 1.0 6.0 4 4 r 0.094 1 3 cbr 500 ------- 1 1.0 6.0 2 2 + 0.094 3 4 cbr 500 ------- 1 1.0 6.0 2 2 - 0.094 3 4 cbr 500 ------- 1 1.0 6.0 2 2 + 0.1 1 3 cbr 500 ------- 1 1.0 6.0 5 5 - 0.1 1 3 cbr 500 ------- 1 1.0 6.0 5 5 + 0.1 2 3 cbr 1000 ------- 1 2.0 7.0 0 6 - 0.1 2 3 cbr 1000 ------- 1 2.0 7.0 0 6 v 0.10000000000000001 eval {set sim_annotation {CBR-2 starts}} r 0.104 1 3 cbr 500 ------- 1 1.0 6.0 3 3 + 0.104 3 4 cbr 500 ------- 1 1.0 6.0 3 3 - 0.104 3 4 cbr 500 ------- 1 1.0 6.0 3 3 + 0.11 1 3 cbr 500 ------- 1 1.0 6.0 6 7 - 0.11 1 3 cbr 500 ------- 1 1.0 6.0 6 7 r 0.114 1 3 cbr 500 ------- 1 1.0 6.0 4 4 + 0.114 3 4 cbr 500 ------- 1 1.0 6.0 4 4 - 0.114 3 4 cbr 500 ------- 1 1.0 6.0 4 4 + 0.12 1 3 cbr 500 ------- 1 1.0 6.0 7 8 - 0.12 1 3 cbr 500 ------- 1 1.0 6.0 7 8 + 0.12 2 3 cbr 1000 ------- 1 2.0 7.0 1 9 - 0.12 2 3 cbr 1000 ------- 1 2.0 7.0 1 9 r 0.124 1 3 cbr 500 ------- 1 1.0 6.0 5 5 + 0.124 3 4 cbr 500 ------- 1 1.0 6.0 5 5 - 0.124 3 4 cbr 500 ------- 1 1.0 6.0 5 5 r 0.128 3 4 cbr 500 ------- 1 1.0 6.0 0 0 + 0.128 4 6 cbr 500 ------- 1 1.0 6.0 0 0 - 0.128 4 6 cbr 500 ------- 1 1.0 6.0 0 0 r 0.128 2 3 cbr 1000 ------- 1 2.0 7.0 0 6 + 0.128 3 4 cbr 1000 ------- 1 2.0 7.0 0 6 - 0.128 3 4 cbr 1000 ------- 1 2.0 7.0 0 6 + 0.13 1 3 cbr 500 ------- 1 1.0 6.0 8 10 - 0.13 1 3 cbr 500 ------- 1 1.0 6.0 8 10 r 0.134 1 3 cbr 500 ------- 1 1.0 6.0 6 7 + 0.134 3 4 cbr 500 ------- 1 1.0 6.0 6 7 - 0.136 3 4 cbr 500 ------- 1 1.0 6.0 6 7 r 0.138 3 4 cbr 500 ------- 1 1.0 6.0 1 1 + 0.138 4 6 cbr 500 ------- 1 1.0 6.0 1 1 - 0.138 4 6 cbr 500 ------- 1 1.0 6.0 1 1 + 0.14 1 3 cbr 500 ------- 1 1.0 6.0 9 11 - 0.14 1 3 cbr 500 ------- 1 1.0 6.0 9 11 + 0.14 2 3 cbr 1000 ------- 1 2.0 7.0 2 12 - 0.14 2 3 cbr 1000 ------- 1 2.0 7.0 2 12 r 0.144 1 3 cbr 500 ------- 1 1.0 6.0 7 8 + 0.144 3 4 cbr 500 ------- 1 1.0 6.0 7 8 - 0.144 3 4 cbr 500 ------- 1 1.0 6.0 7 8 r 0.148 3 4 cbr 500 ------- 1 1.0 6.0 2 2 + 0.148 4 6 cbr 500 ------- 1 1.0 6.0 2 2 - 0.148 4 6 cbr 500 ------- 1 1.0 6.0 2 2 r 0.148 2 3 cbr 1000 ------- 1 2.0 7.0 1 9 + 0.148 3 4 cbr 1000 ------- 1 2.0 7.0 1 9 - 0.148 3 4 cbr 1000 ------- 1 2.0 7.0 1 9 + 0.15 1 3 cbr 500 ------- 1 1.0 6.0 10 13 - 0.15 1 3 cbr 500 ------- 1 1.0 6.0 10 13 r 0.152 4 6 cbr 500 ------- 1 1.0 6.0 0 0 r 0.154 1 3 cbr 500 ------- 1 1.0 6.0 8 10 + 0.154 3 4 cbr 500 ------- 1 1.0 6.0 8 10 - 0.156 3 4 cbr 500 ------- 1 1.0 6.0 8 10 r 0.158 3 4 cbr 500 ------- 1 1.0 6.0 3 3 + 0.158 4 6 cbr 500 ------- 1 1.0 6.0 3 3 - 0.158 4 6 cbr 500 ------- 1 1.0 6.0 3 3 + 0.16 2 3 cbr 1000 ------- 1 2.0 7.0 3 14 - 0.16 2 3 cbr 1000 ------- 1 2.0 7.0 3 14 + 0.16 1 3 cbr 500 ------- 1 1.0 6.0 11 15 - 0.16 1 3 cbr 500 ------- 1 1.0 6.0 11 15 r 0.162 4 6 cbr 500 ------- 1 1.0 6.0 1 1 r 0.164 1 3 cbr 500 ------- 1 1.0 6.0 9 11 + 0.164 3 4 cbr 500 ------- 1 1.0 6.0 9 11 - 0.164 3 4 cbr 500 ------- 1 1.0 6.0 9 11 r 0.168 3 4 cbr 500 ------- 1 1.0 6.0 4 4 + 0.168 4 6 cbr 500 ------- 1 1.0 6.0 4 4 - 0.168 4 6 cbr 500 ------- 1 1.0 6.0 4 4 r 0.168 2 3 cbr 1000 ------- 1 2.0 7.0 2 12 + 0.168 3 4 cbr 1000 ------- 1 2.0 7.0 2 12 - 0.168 3 4 cbr 1000 ------- 1 2.0 7.0 2 12 + 0.17 1 3 cbr 500 ------- 1 1.0 6.0 12 16 - 0.17 1 3 cbr 500 ------- 1 1.0 6.0 12 16 r 0.172 4 6 cbr 500 ------- 1 1.0 6.0 2 2 r 0.174 1 3 cbr 500 ------- 1 1.0 6.0 10 13 + 0.174 3 4 cbr 500 ------- 1 1.0 6.0 10 13 - 0.176 3 4 cbr 500 ------- 1 1.0 6.0 10 13 r 0.178 3 4 cbr 500 ------- 1 1.0 6.0 5 5 + 0.178 4 6 cbr 500 ------- 1 1.0 6.0 5 5 - 0.178 4 6 cbr 500 ------- 1 1.0 6.0 5 5 + 0.18 2 3 cbr 1000 ------- 1 2.0 7.0 4 17 - 0.18 2 3 cbr 1000 ------- 1 2.0 7.0 4 17 + 0.18 1 3 cbr 500 ------- 1 1.0 6.0 13 18 - 0.18 1 3 cbr 500 ------- 1 1.0 6.0 13 18 r 0.182 4 6 cbr 500 ------- 1 1.0 6.0 3 3 r 0.184 1 3 cbr 500 ------- 1 1.0 6.0 11 15 + 0.184 3 4 cbr 500 ------- 1 1.0 6.0 11 15 - 0.184 3 4 cbr 500 ------- 1 1.0 6.0 11 15 r 0.186 3 4 cbr 1000 ------- 1 2.0 7.0 0 6 + 0.186 4 7 cbr 1000 ------- 1 2.0 7.0 0 6 - 0.186 4 7 cbr 1000 ------- 1 2.0 7.0 0 6 r 0.188 2 3 cbr 1000 ------- 1 2.0 7.0 3 14 + 0.188 3 4 cbr 1000 ------- 1 2.0 7.0 3 14 - 0.188 3 4 cbr 1000 ------- 1 2.0 7.0 3 14 r 0.19 3 4 cbr 500 ------- 1 1.0 6.0 6 7 + 0.19 4 6 cbr 500 ------- 1 1.0 6.0 6 7 - 0.19 4 6 cbr 500 ------- 1 1.0 6.0 6 7 + 0.19 1 3 cbr 500 ------- 1 1.0 6.0 14 19 - 0.19 1 3 cbr 500 ------- 1 1.0 6.0 14 19 r 0.192 4 6 cbr 500 ------- 1 1.0 6.0 4 4 r 0.194 1 3 cbr 500 ------- 1 1.0 6.0 12 16 + 0.194 3 4 cbr 500 ------- 1 1.0 6.0 12 16 - 0.196 3 4 cbr 500 ------- 1 1.0 6.0 12 16 r 0.198 3 4 cbr 500 ------- 1 1.0 6.0 7 8 + 0.198 4 6 cbr 500 ------- 1 1.0 6.0 7 8 - 0.198 4 6 cbr 500 ------- 1 1.0 6.0 7 8 + 0.2 2 3 cbr 1000 ------- 1 2.0 7.0 5 20 - 0.2 2 3 cbr 1000 ------- 1 2.0 7.0 5 20 + 0.2 1 3 cbr 500 ------- 1 1.0 6.0 15 21 - 0.2 1 3 cbr 500 ------- 1 1.0 6.0 15 21 r 0.202 4 6 cbr 500 ------- 1 1.0 6.0 5 5 r 0.204 1 3 cbr 500 ------- 1 1.0 6.0 13 18 + 0.204 3 4 cbr 500 ------- 1 1.0 6.0 13 18 - 0.204 3 4 cbr 500 ------- 1 1.0 6.0 13 18 r 0.206 3 4 cbr 1000 ------- 1 2.0 7.0 1 9 + 0.206 4 7 cbr 1000 ------- 1 2.0 7.0 1 9 - 0.206 4 7 cbr 1000 ------- 1 2.0 7.0 1 9 r 0.208 2 3 cbr 1000 ------- 1 2.0 7.0 4 17 + 0.208 3 4 cbr 1000 ------- 1 2.0 7.0 4 17 - 0.208 3 4 cbr 1000 ------- 1 2.0 7.0 4 17 r 0.21 3 4 cbr 500 ------- 1 1.0 6.0 8 10 + 0.21 4 6 cbr 500 ------- 1 1.0 6.0 8 10 - 0.21 4 6 cbr 500 ------- 1 1.0 6.0 8 10 + 0.21 1 3 cbr 500 ------- 1 1.0 6.0 16 22 - 0.21 1 3 cbr 500 ------- 1 1.0 6.0 16 22 r 0.214 4 7 cbr 1000 ------- 1 2.0 7.0 0 6 r 0.214 4 6 cbr 500 ------- 1 1.0 6.0 6 7 r 0.214 1 3 cbr 500 ------- 1 1.0 6.0 14 19 + 0.214 3 4 cbr 500 ------- 1 1.0 6.0 14 19 - 0.216 3 4 cbr 500 ------- 1 1.0 6.0 14 19 r 0.218 3 4 cbr 500 ------- 1 1.0 6.0 9 11 + 0.218 4 6 cbr 500 ------- 1 1.0 6.0 9 11 - 0.218 4 6 cbr 500 ------- 1 1.0 6.0 9 11 + 0.22 2 3 cbr 1000 ------- 1 2.0 7.0 6 23 - 0.22 2 3 cbr 1000 ------- 1 2.0 7.0 6 23 + 0.22 1 3 cbr 500 ------- 1 1.0 6.0 17 24 - 0.22 1 3 cbr 500 ------- 1 1.0 6.0 17 24 r 0.222 4 6 cbr 500 ------- 1 1.0 6.0 7 8 r 0.224 1 3 cbr 500 ------- 1 1.0 6.0 15 21 + 0.224 3 4 cbr 500 ------- 1 1.0 6.0 15 21 - 0.224 3 4 cbr 500 ------- 1 1.0 6.0 15 21 r 0.226 3 4 cbr 1000 ------- 1 2.0 7.0 2 12 + 0.226 4 7 cbr 1000 ------- 1 2.0 7.0 2 12 - 0.226 4 7 cbr 1000 ------- 1 2.0 7.0 2 12 r 0.228 2 3 cbr 1000 ------- 1 2.0 7.0 5 20 + 0.228 3 4 cbr 1000 ------- 1 2.0 7.0 5 20 - 0.228 3 4 cbr 1000 ------- 1 2.0 7.0 5 20 r 0.23 3 4 cbr 500 ------- 1 1.0 6.0 10 13 + 0.23 4 6 cbr 500 ------- 1 1.0 6.0 10 13 - 0.23 4 6 cbr 500 ------- 1 1.0 6.0 10 13 + 0.23 1 3 cbr 500 ------- 1 1.0 6.0 18 25 - 0.23 1 3 cbr 500 ------- 1 1.0 6.0 18 25 r 0.234 4 7 cbr 1000 ------- 1 2.0 7.0 1 9 r 0.234 4 6 cbr 500 ------- 1 1.0 6.0 8 10 r 0.234 1 3 cbr 500 ------- 1 1.0 6.0 16 22 + 0.234 3 4 cbr 500 ------- 1 1.0 6.0 16 22 - 0.236 3 4 cbr 500 ------- 1 1.0 6.0 16 22 r 0.238 3 4 cbr 500 ------- 1 1.0 6.0 11 15 + 0.238 4 6 cbr 500 ------- 1 1.0 6.0 11 15 - 0.238 4 6 cbr 500 ------- 1 1.0 6.0 11 15 + 0.24 2 3 cbr 1000 ------- 1 2.0 7.0 7 26 - 0.24 2 3 cbr 1000 ------- 1 2.0 7.0 7 26 + 0.24 1 3 cbr 500 ------- 1 1.0 6.0 19 27 - 0.24 1 3 cbr 500 ------- 1 1.0 6.0 19 27 r 0.242 4 6 cbr 500 ------- 1 1.0 6.0 9 11 r 0.244 1 3 cbr 500 ------- 1 1.0 6.0 17 24 + 0.244 3 4 cbr 500 ------- 1 1.0 6.0 17 24 - 0.244 3 4 cbr 500 ------- 1 1.0 6.0 17 24 r 0.246 3 4 cbr 1000 ------- 1 2.0 7.0 3 14 + 0.246 4 7 cbr 1000 ------- 1 2.0 7.0 3 14 - 0.246 4 7 cbr 1000 ------- 1 2.0 7.0 3 14 r 0.248 2 3 cbr 1000 ------- 1 2.0 7.0 6 23 + 0.248 3 4 cbr 1000 ------- 1 2.0 7.0 6 23 - 0.248 3 4 cbr 1000 ------- 1 2.0 7.0 6 23 r 0.25 3 4 cbr 500 ------- 1 1.0 6.0 12 16 + 0.25 4 6 cbr 500 ------- 1 1.0 6.0 12 16 - 0.25 4 6 cbr 500 ------- 1 1.0 6.0 12 16 + 0.25 1 3 cbr 500 ------- 1 1.0 6.0 20 28 - 0.25 1 3 cbr 500 ------- 1 1.0 6.0 20 28 r 0.254 4 7 cbr 1000 ------- 1 2.0 7.0 2 12 r 0.254 4 6 cbr 500 ------- 1 1.0 6.0 10 13 r 0.254 1 3 cbr 500 ------- 1 1.0 6.0 18 25 + 0.254 3 4 cbr 500 ------- 1 1.0 6.0 18 25 - 0.256 3 4 cbr 500 ------- 1 1.0 6.0 18 25 r 0.258 3 4 cbr 500 ------- 1 1.0 6.0 13 18 + 0.258 4 6 cbr 500 ------- 1 1.0 6.0 13 18 - 0.258 4 6 cbr 500 ------- 1 1.0 6.0 13 18 + 0.26 2 3 cbr 1000 ------- 1 2.0 7.0 8 29 - 0.26 2 3 cbr 1000 ------- 1 2.0 7.0 8 29 + 0.26 1 3 cbr 500 ------- 1 1.0 6.0 21 30 - 0.26 1 3 cbr 500 ------- 1 1.0 6.0 21 30 r 0.262 4 6 cbr 500 ------- 1 1.0 6.0 11 15 r 0.264 1 3 cbr 500 ------- 1 1.0 6.0 19 27 + 0.264 3 4 cbr 500 ------- 1 1.0 6.0 19 27 - 0.264 3 4 cbr 500 ------- 1 1.0 6.0 19 27 r 0.266 3 4 cbr 1000 ------- 1 2.0 7.0 4 17 + 0.266 4 7 cbr 1000 ------- 1 2.0 7.0 4 17 - 0.266 4 7 cbr 1000 ------- 1 2.0 7.0 4 17 r 0.268 2 3 cbr 1000 ------- 1 2.0 7.0 7 26 + 0.268 3 4 cbr 1000 ------- 1 2.0 7.0 7 26 - 0.268 3 4 cbr 1000 ------- 1 2.0 7.0 7 26 r 0.27 3 4 cbr 500 ------- 1 1.0 6.0 14 19 + 0.27 4 6 cbr 500 ------- 1 1.0 6.0 14 19 - 0.27 4 6 cbr 500 ------- 1 1.0 6.0 14 19 + 0.27 1 3 cbr 500 ------- 1 1.0 6.0 22 31 - 0.27 1 3 cbr 500 ------- 1 1.0 6.0 22 31 r 0.274 4 7 cbr 1000 ------- 1 2.0 7.0 3 14 r 0.274 4 6 cbr 500 ------- 1 1.0 6.0 12 16 r 0.274 1 3 cbr 500 ------- 1 1.0 6.0 20 28 + 0.274 3 4 cbr 500 ------- 1 1.0 6.0 20 28 - 0.276 3 4 cbr 500 ------- 1 1.0 6.0 20 28 r 0.278 3 4 cbr 500 ------- 1 1.0 6.0 15 21 + 0.278 4 6 cbr 500 ------- 1 1.0 6.0 15 21 - 0.278 4 6 cbr 500 ------- 1 1.0 6.0 15 21 + 0.28 2 3 cbr 1000 ------- 1 2.0 7.0 9 32 - 0.28 2 3 cbr 1000 ------- 1 2.0 7.0 9 32 + 0.28 1 3 cbr 500 ------- 1 1.0 6.0 23 33 - 0.28 1 3 cbr 500 ------- 1 1.0 6.0 23 33 r 0.282 4 6 cbr 500 ------- 1 1.0 6.0 13 18 r 0.284 1 3 cbr 500 ------- 1 1.0 6.0 21 30 + 0.284 3 4 cbr 500 ------- 1 1.0 6.0 21 30 - 0.284 3 4 cbr 500 ------- 1 1.0 6.0 21 30 r 0.286 3 4 cbr 1000 ------- 1 2.0 7.0 5 20 + 0.286 4 7 cbr 1000 ------- 1 2.0 7.0 5 20 - 0.286 4 7 cbr 1000 ------- 1 2.0 7.0 5 20 r 0.288 2 3 cbr 1000 ------- 1 2.0 7.0 8 29 + 0.288 3 4 cbr 1000 ------- 1 2.0 7.0 8 29 - 0.288 3 4 cbr 1000 ------- 1 2.0 7.0 8 29 r 0.29 3 4 cbr 500 ------- 1 1.0 6.0 16 22 + 0.29 4 6 cbr 500 ------- 1 1.0 6.0 16 22 - 0.29 4 6 cbr 500 ------- 1 1.0 6.0 16 22 + 0.29 1 3 cbr 500 ------- 1 1.0 6.0 24 34 - 0.29 1 3 cbr 500 ------- 1 1.0 6.0 24 34 r 0.294 4 7 cbr 1000 ------- 1 2.0 7.0 4 17 r 0.294 4 6 cbr 500 ------- 1 1.0 6.0 14 19 r 0.294 1 3 cbr 500 ------- 1 1.0 6.0 22 31 + 0.294 3 4 cbr 500 ------- 1 1.0 6.0 22 31 - 0.296 3 4 cbr 500 ------- 1 1.0 6.0 22 31 r 0.298 3 4 cbr 500 ------- 1 1.0 6.0 17 24 + 0.298 4 6 cbr 500 ------- 1 1.0 6.0 17 24 - 0.298 4 6 cbr 500 ------- 1 1.0 6.0 17 24 + 0.3 2 3 cbr 1000 ------- 1 2.0 7.0 10 35 - 0.3 2 3 cbr 1000 ------- 1 2.0 7.0 10 35 + 0.3 1 3 cbr 500 ------- 1 1.0 6.0 25 36 - 0.3 1 3 cbr 500 ------- 1 1.0 6.0 25 36 r 0.302 4 6 cbr 500 ------- 1 1.0 6.0 15 21 r 0.304 1 3 cbr 500 ------- 1 1.0 6.0 23 33 + 0.304 3 4 cbr 500 ------- 1 1.0 6.0 23 33 - 0.304 3 4 cbr 500 ------- 1 1.0 6.0 23 33 r 0.306 3 4 cbr 1000 ------- 1 2.0 7.0 6 23 + 0.306 4 7 cbr 1000 ------- 1 2.0 7.0 6 23 - 0.306 4 7 cbr 1000 ------- 1 2.0 7.0 6 23 r 0.308 2 3 cbr 1000 ------- 1 2.0 7.0 9 32 + 0.308 3 4 cbr 1000 ------- 1 2.0 7.0 9 32 - 0.308 3 4 cbr 1000 ------- 1 2.0 7.0 9 32 r 0.31 3 4 cbr 500 ------- 1 1.0 6.0 18 25 + 0.31 4 6 cbr 500 ------- 1 1.0 6.0 18 25 - 0.31 4 6 cbr 500 ------- 1 1.0 6.0 18 25 + 0.31 1 3 cbr 500 ------- 1 1.0 6.0 26 37 - 0.31 1 3 cbr 500 ------- 1 1.0 6.0 26 37 r 0.314 4 7 cbr 1000 ------- 1 2.0 7.0 5 20 r 0.314 4 6 cbr 500 ------- 1 1.0 6.0 16 22 r 0.314 1 3 cbr 500 ------- 1 1.0 6.0 24 34 + 0.314 3 4 cbr 500 ------- 1 1.0 6.0 24 34 - 0.316 3 4 cbr 500 ------- 1 1.0 6.0 24 34 r 0.318 3 4 cbr 500 ------- 1 1.0 6.0 19 27 + 0.318 4 6 cbr 500 ------- 1 1.0 6.0 19 27 - 0.318 4 6 cbr 500 ------- 1 1.0 6.0 19 27 + 0.32 2 3 cbr 1000 ------- 1 2.0 7.0 11 38 - 0.32 2 3 cbr 1000 ------- 1 2.0 7.0 11 38 + 0.32 1 3 cbr 500 ------- 1 1.0 6.0 27 39 - 0.32 1 3 cbr 500 ------- 1 1.0 6.0 27 39 r 0.322 4 6 cbr 500 ------- 1 1.0 6.0 17 24 r 0.324 1 3 cbr 500 ------- 1 1.0 6.0 25 36 + 0.324 3 4 cbr 500 ------- 1 1.0 6.0 25 36 - 0.324 3 4 cbr 500 ------- 1 1.0 6.0 25 36 r 0.326 3 4 cbr 1000 ------- 1 2.0 7.0 7 26 + 0.326 4 7 cbr 1000 ------- 1 2.0 7.0 7 26 - 0.326 4 7 cbr 1000 ------- 1 2.0 7.0 7 26 r 0.328 2 3 cbr 1000 ------- 1 2.0 7.0 10 35 + 0.328 3 4 cbr 1000 ------- 1 2.0 7.0 10 35 - 0.328 3 4 cbr 1000 ------- 1 2.0 7.0 10 35 r 0.33 3 4 cbr 500 ------- 1 1.0 6.0 20 28 + 0.33 4 6 cbr 500 ------- 1 1.0 6.0 20 28 - 0.33 4 6 cbr 500 ------- 1 1.0 6.0 20 28 + 0.33 1 3 cbr 500 ------- 1 1.0 6.0 28 40 - 0.33 1 3 cbr 500 ------- 1 1.0 6.0 28 40 r 0.334 4 7 cbr 1000 ------- 1 2.0 7.0 6 23 r 0.334 4 6 cbr 500 ------- 1 1.0 6.0 18 25 r 0.334 1 3 cbr 500 ------- 1 1.0 6.0 26 37 + 0.334 3 4 cbr 500 ------- 1 1.0 6.0 26 37 - 0.336 3 4 cbr 500 ------- 1 1.0 6.0 26 37 r 0.338 3 4 cbr 500 ------- 1 1.0 6.0 21 30 + 0.338 4 6 cbr 500 ------- 1 1.0 6.0 21 30 - 0.338 4 6 cbr 500 ------- 1 1.0 6.0 21 30 + 0.34 2 3 cbr 1000 ------- 1 2.0 7.0 12 41 - 0.34 2 3 cbr 1000 ------- 1 2.0 7.0 12 41 + 0.34 1 3 cbr 500 ------- 1 1.0 6.0 29 42 - 0.34 1 3 cbr 500 ------- 1 1.0 6.0 29 42 r 0.342 4 6 cbr 500 ------- 1 1.0 6.0 19 27 r 0.344 1 3 cbr 500 ------- 1 1.0 6.0 27 39 + 0.344 3 4 cbr 500 ------- 1 1.0 6.0 27 39 - 0.344 3 4 cbr 500 ------- 1 1.0 6.0 27 39 r 0.346 3 4 cbr 1000 ------- 1 2.0 7.0 8 29 + 0.346 4 7 cbr 1000 ------- 1 2.0 7.0 8 29 - 0.346 4 7 cbr 1000 ------- 1 2.0 7.0 8 29 r 0.348 2 3 cbr 1000 ------- 1 2.0 7.0 11 38 + 0.348 3 4 cbr 1000 ------- 1 2.0 7.0 11 38 - 0.348 3 4 cbr 1000 ------- 1 2.0 7.0 11 38 r 0.35 3 4 cbr 500 ------- 1 1.0 6.0 22 31 + 0.35 4 6 cbr 500 ------- 1 1.0 6.0 22 31 - 0.35 4 6 cbr 500 ------- 1 1.0 6.0 22 31 + 0.35 1 3 cbr 500 ------- 1 1.0 6.0 30 43 - 0.35 1 3 cbr 500 ------- 1 1.0 6.0 30 43 r 0.354 4 7 cbr 1000 ------- 1 2.0 7.0 7 26 r 0.354 4 6 cbr 500 ------- 1 1.0 6.0 20 28 r 0.354 1 3 cbr 500 ------- 1 1.0 6.0 28 40 + 0.354 3 4 cbr 500 ------- 1 1.0 6.0 28 40 - 0.356 3 4 cbr 500 ------- 1 1.0 6.0 28 40 r 0.358 3 4 cbr 500 ------- 1 1.0 6.0 23 33 + 0.358 4 6 cbr 500 ------- 1 1.0 6.0 23 33 - 0.358 4 6 cbr 500 ------- 1 1.0 6.0 23 33 + 0.36 2 3 cbr 1000 ------- 1 2.0 7.0 13 44 - 0.36 2 3 cbr 1000 ------- 1 2.0 7.0 13 44 + 0.36 1 3 cbr 500 ------- 1 1.0 6.0 31 45 - 0.36 1 3 cbr 500 ------- 1 1.0 6.0 31 45 r 0.362 4 6 cbr 500 ------- 1 1.0 6.0 21 30 r 0.364 1 3 cbr 500 ------- 1 1.0 6.0 29 42 + 0.364 3 4 cbr 500 ------- 1 1.0 6.0 29 42 - 0.364 3 4 cbr 500 ------- 1 1.0 6.0 29 42 r 0.366 3 4 cbr 1000 ------- 1 2.0 7.0 9 32 + 0.366 4 7 cbr 1000 ------- 1 2.0 7.0 9 32 - 0.366 4 7 cbr 1000 ------- 1 2.0 7.0 9 32 r 0.368 2 3 cbr 1000 ------- 1 2.0 7.0 12 41 + 0.368 3 4 cbr 1000 ------- 1 2.0 7.0 12 41 - 0.368 3 4 cbr 1000 ------- 1 2.0 7.0 12 41 r 0.37 3 4 cbr 500 ------- 1 1.0 6.0 24 34 + 0.37 4 6 cbr 500 ------- 1 1.0 6.0 24 34 - 0.37 4 6 cbr 500 ------- 1 1.0 6.0 24 34 + 0.37 1 3 cbr 500 ------- 1 1.0 6.0 32 46 - 0.37 1 3 cbr 500 ------- 1 1.0 6.0 32 46 r 0.374 4 7 cbr 1000 ------- 1 2.0 7.0 8 29 r 0.374 4 6 cbr 500 ------- 1 1.0 6.0 22 31 r 0.374 1 3 cbr 500 ------- 1 1.0 6.0 30 43 + 0.374 3 4 cbr 500 ------- 1 1.0 6.0 30 43 - 0.376 3 4 cbr 500 ------- 1 1.0 6.0 30 43 r 0.378 3 4 cbr 500 ------- 1 1.0 6.0 25 36 + 0.378 4 6 cbr 500 ------- 1 1.0 6.0 25 36 - 0.378 4 6 cbr 500 ------- 1 1.0 6.0 25 36 + 0.38 2 3 cbr 1000 ------- 1 2.0 7.0 14 47 - 0.38 2 3 cbr 1000 ------- 1 2.0 7.0 14 47 + 0.38 1 3 cbr 500 ------- 1 1.0 6.0 33 48 - 0.38 1 3 cbr 500 ------- 1 1.0 6.0 33 48 r 0.382 4 6 cbr 500 ------- 1 1.0 6.0 23 33 r 0.384 1 3 cbr 500 ------- 1 1.0 6.0 31 45 + 0.384 3 4 cbr 500 ------- 1 1.0 6.0 31 45 - 0.384 3 4 cbr 500 ------- 1 1.0 6.0 31 45 r 0.386 3 4 cbr 1000 ------- 1 2.0 7.0 10 35 + 0.386 4 7 cbr 1000 ------- 1 2.0 7.0 10 35 - 0.386 4 7 cbr 1000 ------- 1 2.0 7.0 10 35 r 0.388 2 3 cbr 1000 ------- 1 2.0 7.0 13 44 + 0.388 3 4 cbr 1000 ------- 1 2.0 7.0 13 44 - 0.388 3 4 cbr 1000 ------- 1 2.0 7.0 13 44 r 0.39 3 4 cbr 500 ------- 1 1.0 6.0 26 37 + 0.39 4 6 cbr 500 ------- 1 1.0 6.0 26 37 - 0.39 4 6 cbr 500 ------- 1 1.0 6.0 26 37 + 0.39 1 3 cbr 500 ------- 1 1.0 6.0 34 49 - 0.39 1 3 cbr 500 ------- 1 1.0 6.0 34 49 r 0.394 4 7 cbr 1000 ------- 1 2.0 7.0 9 32 r 0.394 4 6 cbr 500 ------- 1 1.0 6.0 24 34 r 0.394 1 3 cbr 500 ------- 1 1.0 6.0 32 46 + 0.394 3 4 cbr 500 ------- 1 1.0 6.0 32 46 - 0.396 3 4 cbr 500 ------- 1 1.0 6.0 32 46 r 0.398 3 4 cbr 500 ------- 1 1.0 6.0 27 39 + 0.398 4 6 cbr 500 ------- 1 1.0 6.0 27 39 - 0.398 4 6 cbr 500 ------- 1 1.0 6.0 27 39 + 0.4 2 3 cbr 1000 ------- 1 2.0 7.0 15 50 - 0.4 2 3 cbr 1000 ------- 1 2.0 7.0 15 50 + 0.4 1 3 cbr 500 ------- 1 1.0 6.0 35 51 - 0.4 1 3 cbr 500 ------- 1 1.0 6.0 35 51 r 0.402 4 6 cbr 500 ------- 1 1.0 6.0 25 36 r 0.404 1 3 cbr 500 ------- 1 1.0 6.0 33 48 + 0.404 3 4 cbr 500 ------- 1 1.0 6.0 33 48 - 0.404 3 4 cbr 500 ------- 1 1.0 6.0 33 48 r 0.406 3 4 cbr 1000 ------- 1 2.0 7.0 11 38 + 0.406 4 7 cbr 1000 ------- 1 2.0 7.0 11 38 - 0.406 4 7 cbr 1000 ------- 1 2.0 7.0 11 38 r 0.408 2 3 cbr 1000 ------- 1 2.0 7.0 14 47 + 0.408 3 4 cbr 1000 ------- 1 2.0 7.0 14 47 - 0.408 3 4 cbr 1000 ------- 1 2.0 7.0 14 47 r 0.41 3 4 cbr 500 ------- 1 1.0 6.0 28 40 + 0.41 4 6 cbr 500 ------- 1 1.0 6.0 28 40 - 0.41 4 6 cbr 500 ------- 1 1.0 6.0 28 40 + 0.41 1 3 cbr 500 ------- 1 1.0 6.0 36 52 - 0.41 1 3 cbr 500 ------- 1 1.0 6.0 36 52 r 0.414 4 7 cbr 1000 ------- 1 2.0 7.0 10 35 r 0.414 4 6 cbr 500 ------- 1 1.0 6.0 26 37 r 0.414 1 3 cbr 500 ------- 1 1.0 6.0 34 49 + 0.414 3 4 cbr 500 ------- 1 1.0 6.0 34 49 - 0.416 3 4 cbr 500 ------- 1 1.0 6.0 34 49 r 0.418 3 4 cbr 500 ------- 1 1.0 6.0 29 42 + 0.418 4 6 cbr 500 ------- 1 1.0 6.0 29 42 - 0.418 4 6 cbr 500 ------- 1 1.0 6.0 29 42 + 0.42 2 3 cbr 1000 ------- 1 2.0 7.0 16 53 - 0.42 2 3 cbr 1000 ------- 1 2.0 7.0 16 53 + 0.42 1 3 cbr 500 ------- 1 1.0 6.0 37 54 - 0.42 1 3 cbr 500 ------- 1 1.0 6.0 37 54 r 0.422 4 6 cbr 500 ------- 1 1.0 6.0 27 39 r 0.424 1 3 cbr 500 ------- 1 1.0 6.0 35 51 + 0.424 3 4 cbr 500 ------- 1 1.0 6.0 35 51 - 0.424 3 4 cbr 500 ------- 1 1.0 6.0 35 51 r 0.426 3 4 cbr 1000 ------- 1 2.0 7.0 12 41 + 0.426 4 7 cbr 1000 ------- 1 2.0 7.0 12 41 - 0.426 4 7 cbr 1000 ------- 1 2.0 7.0 12 41 r 0.428 2 3 cbr 1000 ------- 1 2.0 7.0 15 50 + 0.428 3 4 cbr 1000 ------- 1 2.0 7.0 15 50 - 0.428 3 4 cbr 1000 ------- 1 2.0 7.0 15 50 r 0.43 3 4 cbr 500 ------- 1 1.0 6.0 30 43 + 0.43 4 6 cbr 500 ------- 1 1.0 6.0 30 43 - 0.43 4 6 cbr 500 ------- 1 1.0 6.0 30 43 + 0.43 1 3 cbr 500 ------- 1 1.0 6.0 38 55 - 0.43 1 3 cbr 500 ------- 1 1.0 6.0 38 55 r 0.434 4 7 cbr 1000 ------- 1 2.0 7.0 11 38 r 0.434 4 6 cbr 500 ------- 1 1.0 6.0 28 40 r 0.434 1 3 cbr 500 ------- 1 1.0 6.0 36 52 + 0.434 3 4 cbr 500 ------- 1 1.0 6.0 36 52 - 0.436 3 4 cbr 500 ------- 1 1.0 6.0 36 52 r 0.438 3 4 cbr 500 ------- 1 1.0 6.0 31 45 + 0.438 4 6 cbr 500 ------- 1 1.0 6.0 31 45 - 0.438 4 6 cbr 500 ------- 1 1.0 6.0 31 45 + 0.44 2 3 cbr 1000 ------- 1 2.0 7.0 17 56 - 0.44 2 3 cbr 1000 ------- 1 2.0 7.0 17 56 + 0.44 1 3 cbr 500 ------- 1 1.0 6.0 39 57 - 0.44 1 3 cbr 500 ------- 1 1.0 6.0 39 57 r 0.442 4 6 cbr 500 ------- 1 1.0 6.0 29 42 r 0.444 1 3 cbr 500 ------- 1 1.0 6.0 37 54 + 0.444 3 4 cbr 500 ------- 1 1.0 6.0 37 54 - 0.444 3 4 cbr 500 ------- 1 1.0 6.0 37 54 r 0.446 3 4 cbr 1000 ------- 1 2.0 7.0 13 44 + 0.446 4 7 cbr 1000 ------- 1 2.0 7.0 13 44 - 0.446 4 7 cbr 1000 ------- 1 2.0 7.0 13 44 r 0.448 2 3 cbr 1000 ------- 1 2.0 7.0 16 53 + 0.448 3 4 cbr 1000 ------- 1 2.0 7.0 16 53 - 0.448 3 4 cbr 1000 ------- 1 2.0 7.0 16 53 r 0.45 3 4 cbr 500 ------- 1 1.0 6.0 32 46 + 0.45 4 6 cbr 500 ------- 1 1.0 6.0 32 46 - 0.45 4 6 cbr 500 ------- 1 1.0 6.0 32 46 + 0.45 1 3 cbr 500 ------- 1 1.0 6.0 40 58 - 0.45 1 3 cbr 500 ------- 1 1.0 6.0 40 58 r 0.454 4 7 cbr 1000 ------- 1 2.0 7.0 12 41 r 0.454 4 6 cbr 500 ------- 1 1.0 6.0 30 43 r 0.454 1 3 cbr 500 ------- 1 1.0 6.0 38 55 + 0.454 3 4 cbr 500 ------- 1 1.0 6.0 38 55 - 0.456 3 4 cbr 500 ------- 1 1.0 6.0 38 55 r 0.458 3 4 cbr 500 ------- 1 1.0 6.0 33 48 + 0.458 4 6 cbr 500 ------- 1 1.0 6.0 33 48 - 0.458 4 6 cbr 500 ------- 1 1.0 6.0 33 48 + 0.46 2 3 cbr 1000 ------- 1 2.0 7.0 18 59 - 0.46 2 3 cbr 1000 ------- 1 2.0 7.0 18 59 + 0.46 1 3 cbr 500 ------- 1 1.0 6.0 41 60 - 0.46 1 3 cbr 500 ------- 1 1.0 6.0 41 60 r 0.462 4 6 cbr 500 ------- 1 1.0 6.0 31 45 r 0.464 1 3 cbr 500 ------- 1 1.0 6.0 39 57 + 0.464 3 4 cbr 500 ------- 1 1.0 6.0 39 57 - 0.464 3 4 cbr 500 ------- 1 1.0 6.0 39 57 r 0.466 3 4 cbr 1000 ------- 1 2.0 7.0 14 47 + 0.466 4 7 cbr 1000 ------- 1 2.0 7.0 14 47 - 0.466 4 7 cbr 1000 ------- 1 2.0 7.0 14 47 r 0.468 2 3 cbr 1000 ------- 1 2.0 7.0 17 56 + 0.468 3 4 cbr 1000 ------- 1 2.0 7.0 17 56 - 0.468 3 4 cbr 1000 ------- 1 2.0 7.0 17 56 r 0.47 3 4 cbr 500 ------- 1 1.0 6.0 34 49 + 0.47 4 6 cbr 500 ------- 1 1.0 6.0 34 49 - 0.47 4 6 cbr 500 ------- 1 1.0 6.0 34 49 + 0.47 1 3 cbr 500 ------- 1 1.0 6.0 42 61 - 0.47 1 3 cbr 500 ------- 1 1.0 6.0 42 61 r 0.474 4 7 cbr 1000 ------- 1 2.0 7.0 13 44 r 0.474 4 6 cbr 500 ------- 1 1.0 6.0 32 46 r 0.474 1 3 cbr 500 ------- 1 1.0 6.0 40 58 + 0.474 3 4 cbr 500 ------- 1 1.0 6.0 40 58 - 0.476 3 4 cbr 500 ------- 1 1.0 6.0 40 58 r 0.478 3 4 cbr 500 ------- 1 1.0 6.0 35 51 + 0.478 4 6 cbr 500 ------- 1 1.0 6.0 35 51 - 0.478 4 6 cbr 500 ------- 1 1.0 6.0 35 51 + 0.48 2 3 cbr 1000 ------- 1 2.0 7.0 19 62 - 0.48 2 3 cbr 1000 ------- 1 2.0 7.0 19 62 + 0.48 1 3 cbr 500 ------- 1 1.0 6.0 43 63 - 0.48 1 3 cbr 500 ------- 1 1.0 6.0 43 63 r 0.482 4 6 cbr 500 ------- 1 1.0 6.0 33 48 r 0.484 1 3 cbr 500 ------- 1 1.0 6.0 41 60 + 0.484 3 4 cbr 500 ------- 1 1.0 6.0 41 60 - 0.484 3 4 cbr 500 ------- 1 1.0 6.0 41 60 r 0.486 3 4 cbr 1000 ------- 1 2.0 7.0 15 50 + 0.486 4 7 cbr 1000 ------- 1 2.0 7.0 15 50 - 0.486 4 7 cbr 1000 ------- 1 2.0 7.0 15 50 r 0.488 2 3 cbr 1000 ------- 1 2.0 7.0 18 59 + 0.488 3 4 cbr 1000 ------- 1 2.0 7.0 18 59 - 0.488 3 4 cbr 1000 ------- 1 2.0 7.0 18 59 r 0.49 3 4 cbr 500 ------- 1 1.0 6.0 36 52 + 0.49 4 6 cbr 500 ------- 1 1.0 6.0 36 52 - 0.49 4 6 cbr 500 ------- 1 1.0 6.0 36 52 + 0.49 1 3 cbr 500 ------- 1 1.0 6.0 44 64 - 0.49 1 3 cbr 500 ------- 1 1.0 6.0 44 64 r 0.494 4 7 cbr 1000 ------- 1 2.0 7.0 14 47 r 0.494 4 6 cbr 500 ------- 1 1.0 6.0 34 49 r 0.494 1 3 cbr 500 ------- 1 1.0 6.0 42 61 + 0.494 3 4 cbr 500 ------- 1 1.0 6.0 42 61 - 0.496 3 4 cbr 500 ------- 1 1.0 6.0 42 61 r 0.498 3 4 cbr 500 ------- 1 1.0 6.0 37 54 + 0.498 4 6 cbr 500 ------- 1 1.0 6.0 37 54 - 0.498 4 6 cbr 500 ------- 1 1.0 6.0 37 54 + 0.5 0 3 tcp 1000 ------- 0 0.0 5.0 0 65 - 0.5 0 3 tcp 1000 ------- 0 0.0 5.0 0 65 + 0.5 0 3 tcp 1000 ------- 0 0.0 5.0 1 66 + 0.5 0 3 tcp 1000 ------- 0 0.0 5.0 2 67 + 0.5 0 3 tcp 1000 ------- 0 0.0 5.0 3 68 + 0.5 0 3 tcp 1000 ------- 0 0.0 5.0 4 69 + 0.5 0 3 tcp 1000 ------- 0 0.0 5.0 5 70 + 0.5 0 3 tcp 1000 ------- 0 0.0 5.0 6 71 + 0.5 0 3 tcp 1000 ------- 0 0.0 5.0 7 72 v 0.5 eval {set sim_annotation {FTP starts}} + 0.5 2 3 cbr 1000 ------- 1 2.0 7.0 20 73 - 0.5 2 3 cbr 1000 ------- 1 2.0 7.0 20 73 + 0.5 1 3 cbr 500 ------- 1 1.0 6.0 45 74 - 0.5 1 3 cbr 500 ------- 1 1.0 6.0 45 74 - 0.5016 0 3 tcp 1000 ------- 0 0.0 5.0 1 66 r 0.502 4 6 cbr 500 ------- 1 1.0 6.0 35 51 - 0.5032 0 3 tcp 1000 ------- 0 0.0 5.0 2 67 r 0.504 1 3 cbr 500 ------- 1 1.0 6.0 43 63 + 0.504 3 4 cbr 500 ------- 1 1.0 6.0 43 63 - 0.504 3 4 cbr 500 ------- 1 1.0 6.0 43 63 - 0.5048 0 3 tcp 1000 ------- 0 0.0 5.0 3 68 r 0.506 3 4 cbr 1000 ------- 1 2.0 7.0 16 53 + 0.506 4 7 cbr 1000 ------- 1 2.0 7.0 16 53 - 0.506 4 7 cbr 1000 ------- 1 2.0 7.0 16 53 - 0.5064 0 3 tcp 1000 ------- 0 0.0 5.0 4 69 r 0.508 2 3 cbr 1000 ------- 1 2.0 7.0 19 62 + 0.508 3 4 cbr 1000 ------- 1 2.0 7.0 19 62 - 0.508 3 4 cbr 1000 ------- 1 2.0 7.0 19 62 - 0.508 0 3 tcp 1000 ------- 0 0.0 5.0 5 70 - 0.5096 0 3 tcp 1000 ------- 0 0.0 5.0 6 71 r 0.51 3 4 cbr 500 ------- 1 1.0 6.0 38 55 + 0.51 4 6 cbr 500 ------- 1 1.0 6.0 38 55 - 0.51 4 6 cbr 500 ------- 1 1.0 6.0 38 55 + 0.51 1 3 cbr 500 ------- 1 1.0 6.0 46 75 - 0.51 1 3 cbr 500 ------- 1 1.0 6.0 46 75 - 0.5112 0 3 tcp 1000 ------- 0 0.0 5.0 7 72 r 0.514 4 7 cbr 1000 ------- 1 2.0 7.0 15 50 r 0.514 4 6 cbr 500 ------- 1 1.0 6.0 36 52 r 0.514 1 3 cbr 500 ------- 1 1.0 6.0 44 64 + 0.514 3 4 cbr 500 ------- 1 1.0 6.0 44 64 - 0.516 3 4 cbr 500 ------- 1 1.0 6.0 44 64 r 0.518 3 4 cbr 500 ------- 1 1.0 6.0 39 57 + 0.518 4 6 cbr 500 ------- 1 1.0 6.0 39 57 - 0.518 4 6 cbr 500 ------- 1 1.0 6.0 39 57 + 0.52 2 3 cbr 1000 ------- 1 2.0 7.0 21 76 - 0.52 2 3 cbr 1000 ------- 1 2.0 7.0 21 76 + 0.52 1 3 cbr 500 ------- 1 1.0 6.0 47 77 - 0.52 1 3 cbr 500 ------- 1 1.0 6.0 47 77 r 0.5216 0 3 tcp 1000 ------- 0 0.0 5.0 0 65 + 0.5216 3 4 tcp 1000 ------- 0 0.0 5.0 0 65 - 0.5216 3 4 tcp 1000 ------- 0 0.0 5.0 0 65 r 0.522 4 6 cbr 500 ------- 1 1.0 6.0 37 54 r 0.5232 0 3 tcp 1000 ------- 0 0.0 5.0 1 66 + 0.5232 3 4 tcp 1000 ------- 0 0.0 5.0 1 66 r 0.524 1 3 cbr 500 ------- 1 1.0 6.0 45 74 + 0.524 3 4 cbr 500 ------- 1 1.0 6.0 45 74 r 0.5248 0 3 tcp 1000 ------- 0 0.0 5.0 2 67 + 0.5248 3 4 tcp 1000 ------- 0 0.0 5.0 2 67 r 0.526 3 4 cbr 1000 ------- 1 2.0 7.0 17 56 + 0.526 4 7 cbr 1000 ------- 1 2.0 7.0 17 56 - 0.526 4 7 cbr 1000 ------- 1 2.0 7.0 17 56 r 0.5264 0 3 tcp 1000 ------- 0 0.0 5.0 3 68 + 0.5264 3 4 tcp 1000 ------- 0 0.0 5.0 3 68 r 0.528 2 3 cbr 1000 ------- 1 2.0 7.0 20 73 + 0.528 3 4 cbr 1000 ------- 1 2.0 7.0 20 73 r 0.528 0 3 tcp 1000 ------- 0 0.0 5.0 4 69 + 0.528 3 4 tcp 1000 ------- 0 0.0 5.0 4 69 - 0.5296 3 4 tcp 1000 ------- 0 0.0 5.0 1 66 r 0.5296 0 3 tcp 1000 ------- 0 0.0 5.0 5 70 + 0.5296 3 4 tcp 1000 ------- 0 0.0 5.0 5 70 r 0.53 3 4 cbr 500 ------- 1 1.0 6.0 40 58 + 0.53 4 6 cbr 500 ------- 1 1.0 6.0 40 58 - 0.53 4 6 cbr 500 ------- 1 1.0 6.0 40 58 + 0.53 1 3 cbr 500 ------- 1 1.0 6.0 48 78 - 0.53 1 3 cbr 500 ------- 1 1.0 6.0 48 78 r 0.5312 0 3 tcp 1000 ------- 0 0.0 5.0 6 71 + 0.5312 3 4 tcp 1000 ------- 0 0.0 5.0 6 71 r 0.5328 0 3 tcp 1000 ------- 0 0.0 5.0 7 72 + 0.5328 3 4 tcp 1000 ------- 0 0.0 5.0 7 72 r 0.534 4 7 cbr 1000 ------- 1 2.0 7.0 16 53 r 0.534 4 6 cbr 500 ------- 1 1.0 6.0 38 55 r 0.534 1 3 cbr 500 ------- 1 1.0 6.0 46 75 + 0.534 3 4 cbr 500 ------- 1 1.0 6.0 46 75 - 0.5376 3 4 cbr 500 ------- 1 1.0 6.0 45 74 r 0.538 3 4 cbr 500 ------- 1 1.0 6.0 41 60 + 0.538 4 6 cbr 500 ------- 1 1.0 6.0 41 60 - 0.538 4 6 cbr 500 ------- 1 1.0 6.0 41 60 + 0.54 2 3 cbr 1000 ------- 1 2.0 7.0 22 79 - 0.54 2 3 cbr 1000 ------- 1 2.0 7.0 22 79 + 0.54 1 3 cbr 500 ------- 1 1.0 6.0 49 80 - 0.54 1 3 cbr 500 ------- 1 1.0 6.0 49 80 - 0.5416 3 4 tcp 1000 ------- 0 0.0 5.0 2 67 r 0.542 4 6 cbr 500 ------- 1 1.0 6.0 39 57 r 0.544 1 3 cbr 500 ------- 1 1.0 6.0 47 77 + 0.544 3 4 cbr 500 ------- 1 1.0 6.0 47 77 r 0.546 3 4 cbr 1000 ------- 1 2.0 7.0 18 59 + 0.546 4 7 cbr 1000 ------- 1 2.0 7.0 18 59 - 0.546 4 7 cbr 1000 ------- 1 2.0 7.0 18 59 r 0.548 2 3 cbr 1000 ------- 1 2.0 7.0 21 76 + 0.548 3 4 cbr 1000 ------- 1 2.0 7.0 21 76 - 0.5496 3 4 tcp 1000 ------- 0 0.0 5.0 3 68 r 0.55 3 4 cbr 500 ------- 1 1.0 6.0 42 61 + 0.55 4 6 cbr 500 ------- 1 1.0 6.0 42 61 - 0.55 4 6 cbr 500 ------- 1 1.0 6.0 42 61 + 0.55 1 3 cbr 500 ------- 1 1.0 6.0 50 81 - 0.55 1 3 cbr 500 ------- 1 1.0 6.0 50 81 r 0.554 4 7 cbr 1000 ------- 1 2.0 7.0 17 56 r 0.554 4 6 cbr 500 ------- 1 1.0 6.0 40 58 r 0.554 1 3 cbr 500 ------- 1 1.0 6.0 48 78 + 0.554 3 4 cbr 500 ------- 1 1.0 6.0 48 78 - 0.5576 3 4 cbr 1000 ------- 1 2.0 7.0 20 73 r 0.558 3 4 cbr 500 ------- 1 1.0 6.0 43 63 + 0.558 4 6 cbr 500 ------- 1 1.0 6.0 43 63 - 0.558 4 6 cbr 500 ------- 1 1.0 6.0 43 63 + 0.56 2 3 cbr 1000 ------- 1 2.0 7.0 23 82 - 0.56 2 3 cbr 1000 ------- 1 2.0 7.0 23 82 + 0.56 1 3 cbr 500 ------- 1 1.0 6.0 51 83 - 0.56 1 3 cbr 500 ------- 1 1.0 6.0 51 83 r 0.562 4 6 cbr 500 ------- 1 1.0 6.0 41 60 r 0.564 1 3 cbr 500 ------- 1 1.0 6.0 49 80 + 0.564 3 4 cbr 500 ------- 1 1.0 6.0 49 80 - 0.5656 3 4 tcp 1000 ------- 0 0.0 5.0 4 69 r 0.566 3 4 cbr 1000 ------- 1 2.0 7.0 19 62 + 0.566 4 7 cbr 1000 ------- 1 2.0 7.0 19 62 - 0.566 4 7 cbr 1000 ------- 1 2.0 7.0 19 62 r 0.568 2 3 cbr 1000 ------- 1 2.0 7.0 22 79 + 0.568 3 4 cbr 1000 ------- 1 2.0 7.0 22 79 r 0.57 3 4 cbr 500 ------- 1 1.0 6.0 44 64 + 0.57 4 6 cbr 500 ------- 1 1.0 6.0 44 64 - 0.57 4 6 cbr 500 ------- 1 1.0 6.0 44 64 + 0.57 1 3 cbr 500 ------- 1 1.0 6.0 52 84 - 0.57 1 3 cbr 500 ------- 1 1.0 6.0 52 84 - 0.5736 3 4 tcp 1000 ------- 0 0.0 5.0 5 70 r 0.574 4 7 cbr 1000 ------- 1 2.0 7.0 18 59 r 0.574 4 6 cbr 500 ------- 1 1.0 6.0 42 61 r 0.574 1 3 cbr 500 ------- 1 1.0 6.0 50 81 + 0.574 3 4 cbr 500 ------- 1 1.0 6.0 50 81 r 0.5796 3 4 tcp 1000 ------- 0 0.0 5.0 0 65 + 0.5796 4 5 tcp 1000 ------- 0 0.0 5.0 0 65 - 0.5796 4 5 tcp 1000 ------- 0 0.0 5.0 0 65 + 0.58 2 3 cbr 1000 ------- 1 2.0 7.0 24 85 - 0.58 2 3 cbr 1000 ------- 1 2.0 7.0 24 85 + 0.58 1 3 cbr 500 ------- 1 1.0 6.0 53 86 - 0.58 1 3 cbr 500 ------- 1 1.0 6.0 53 86 - 0.5816 3 4 tcp 1000 ------- 0 0.0 5.0 6 71 r 0.582 4 6 cbr 500 ------- 1 1.0 6.0 43 63 r 0.584 1 3 cbr 500 ------- 1 1.0 6.0 51 83 + 0.584 3 4 cbr 500 ------- 1 1.0 6.0 51 83 r 0.5876 3 4 tcp 1000 ------- 0 0.0 5.0 1 66 + 0.5876 4 5 tcp 1000 ------- 0 0.0 5.0 1 66 - 0.5876 4 5 tcp 1000 ------- 0 0.0 5.0 1 66 r 0.588 2 3 cbr 1000 ------- 1 2.0 7.0 23 82 + 0.588 3 4 cbr 1000 ------- 1 2.0 7.0 23 82 - 0.5896 3 4 tcp 1000 ------- 0 0.0 5.0 7 72 + 0.59 1 3 cbr 500 ------- 1 1.0 6.0 54 87 - 0.59 1 3 cbr 500 ------- 1 1.0 6.0 54 87 r 0.5916 3 4 cbr 500 ------- 1 1.0 6.0 45 74 + 0.5916 4 6 cbr 500 ------- 1 1.0 6.0 45 74 - 0.5916 4 6 cbr 500 ------- 1 1.0 6.0 45 74 r 0.594 4 7 cbr 1000 ------- 1 2.0 7.0 19 62 r 0.594 4 6 cbr 500 ------- 1 1.0 6.0 44 64 r 0.594 1 3 cbr 500 ------- 1 1.0 6.0 52 84 + 0.594 3 4 cbr 500 ------- 1 1.0 6.0 52 84 - 0.5976 3 4 cbr 500 ------- 1 1.0 6.0 46 75 r 0.5996 3 4 tcp 1000 ------- 0 0.0 5.0 2 67 + 0.5996 4 5 tcp 1000 ------- 0 0.0 5.0 2 67 - 0.5996 4 5 tcp 1000 ------- 0 0.0 5.0 2 67 + 0.6 2 3 cbr 1000 ------- 1 2.0 7.0 25 88 - 0.6 2 3 cbr 1000 ------- 1 2.0 7.0 25 88 + 0.6 1 3 cbr 500 ------- 1 1.0 6.0 55 89 - 0.6 1 3 cbr 500 ------- 1 1.0 6.0 55 89 r 0.6012 4 5 tcp 1000 ------- 0 0.0 5.0 0 65 + 0.6012 5 4 ack 40 ------- 0 5.0 0.0 0 90 - 0.6012 5 4 ack 40 ------- 0 5.0 0.0 0 90 - 0.6016 3 4 cbr 500 ------- 1 1.0 6.0 47 77 r 0.604 1 3 cbr 500 ------- 1 1.0 6.0 53 86 + 0.604 3 4 cbr 500 ------- 1 1.0 6.0 53 86 - 0.6056 3 4 cbr 1000 ------- 1 2.0 7.0 21 76 r 0.6076 3 4 tcp 1000 ------- 0 0.0 5.0 3 68 + 0.6076 4 5 tcp 1000 ------- 0 0.0 5.0 3 68 - 0.6076 4 5 tcp 1000 ------- 0 0.0 5.0 3 68 r 0.608 2 3 cbr 1000 ------- 1 2.0 7.0 24 85 + 0.608 3 4 cbr 1000 ------- 1 2.0 7.0 24 85 r 0.6092 4 5 tcp 1000 ------- 0 0.0 5.0 1 66 + 0.6092 5 4 ack 40 ------- 0 5.0 0.0 1 91 - 0.6092 5 4 ack 40 ------- 0 5.0 0.0 1 91 + 0.61 1 3 cbr 500 ------- 1 1.0 6.0 56 92 - 0.61 1 3 cbr 500 ------- 1 1.0 6.0 56 92 - 0.6136 3 4 cbr 500 ------- 1 1.0 6.0 48 78 r 0.614 1 3 cbr 500 ------- 1 1.0 6.0 54 87 + 0.614 3 4 cbr 500 ------- 1 1.0 6.0 54 87 r 0.6156 3 4 cbr 1000 ------- 1 2.0 7.0 20 73 + 0.6156 4 7 cbr 1000 ------- 1 2.0 7.0 20 73 - 0.6156 4 7 cbr 1000 ------- 1 2.0 7.0 20 73 r 0.6156 4 6 cbr 500 ------- 1 1.0 6.0 45 74 - 0.6176 3 4 cbr 500 ------- 1 1.0 6.0 49 80 + 0.62 2 3 cbr 1000 ------- 1 2.0 7.0 26 93 - 0.62 2 3 cbr 1000 ------- 1 2.0 7.0 26 93 + 0.62 1 3 cbr 500 ------- 1 1.0 6.0 57 94 - 0.62 1 3 cbr 500 ------- 1 1.0 6.0 57 94 r 0.6212 4 5 tcp 1000 ------- 0 0.0 5.0 2 67 + 0.6212 5 4 ack 40 ------- 0 5.0 0.0 2 95 - 0.6212 5 4 ack 40 ------- 0 5.0 0.0 2 95 r 0.621264 5 4 ack 40 ------- 0 5.0 0.0 0 90 + 0.621264 4 3 ack 40 ------- 0 5.0 0.0 0 90 - 0.621264 4 3 ack 40 ------- 0 5.0 0.0 0 90 - 0.6216 3 4 cbr 1000 ------- 1 2.0 7.0 22 79 r 0.6236 3 4 tcp 1000 ------- 0 0.0 5.0 4 69 + 0.6236 4 5 tcp 1000 ------- 0 0.0 5.0 4 69 - 0.6236 4 5 tcp 1000 ------- 0 0.0 5.0 4 69 r 0.624 1 3 cbr 500 ------- 1 1.0 6.0 55 89 + 0.624 3 4 cbr 500 ------- 1 1.0 6.0 55 89 r 0.628 2 3 cbr 1000 ------- 1 2.0 7.0 25 88 + 0.628 3 4 cbr 1000 ------- 1 2.0 7.0 25 88 r 0.6292 4 5 tcp 1000 ------- 0 0.0 5.0 3 68 + 0.6292 5 4 ack 40 ------- 0 5.0 0.0 3 96 - 0.6292 5 4 ack 40 ------- 0 5.0 0.0 3 96 r 0.629264 5 4 ack 40 ------- 0 5.0 0.0 1 91 + 0.629264 4 3 ack 40 ------- 0 5.0 0.0 1 91 - 0.629264 4 3 ack 40 ------- 0 5.0 0.0 1 91 - 0.6296 3 4 cbr 500 ------- 1 1.0 6.0 50 81 + 0.63 1 3 cbr 500 ------- 1 1.0 6.0 58 97 - 0.63 1 3 cbr 500 ------- 1 1.0 6.0 58 97 r 0.6316 3 4 tcp 1000 ------- 0 0.0 5.0 5 70 + 0.6316 4 5 tcp 1000 ------- 0 0.0 5.0 5 70 - 0.6316 4 5 tcp 1000 ------- 0 0.0 5.0 5 70 - 0.6336 3 4 cbr 500 ------- 1 1.0 6.0 51 83 r 0.634 1 3 cbr 500 ------- 1 1.0 6.0 56 92 + 0.634 3 4 cbr 500 ------- 1 1.0 6.0 56 92 - 0.6376 3 4 cbr 1000 ------- 1 2.0 7.0 23 82 r 0.6396 3 4 tcp 1000 ------- 0 0.0 5.0 6 71 + 0.6396 4 5 tcp 1000 ------- 0 0.0 5.0 6 71 - 0.6396 4 5 tcp 1000 ------- 0 0.0 5.0 6 71 + 0.64 2 3 cbr 1000 ------- 1 2.0 7.0 27 98 - 0.64 2 3 cbr 1000 ------- 1 2.0 7.0 27 98 + 0.64 1 3 cbr 500 ------- 1 1.0 6.0 59 99 - 0.64 1 3 cbr 500 ------- 1 1.0 6.0 59 99 r 0.641264 5 4 ack 40 ------- 0 5.0 0.0 2 95 + 0.641264 4 3 ack 40 ------- 0 5.0 0.0 2 95 - 0.641264 4 3 ack 40 ------- 0 5.0 0.0 2 95 r 0.6436 4 7 cbr 1000 ------- 1 2.0 7.0 20 73 r 0.644 1 3 cbr 500 ------- 1 1.0 6.0 57 94 + 0.644 3 4 cbr 500 ------- 1 1.0 6.0 57 94 r 0.6452 4 5 tcp 1000 ------- 0 0.0 5.0 4 69 + 0.6452 5 4 ack 40 ------- 0 5.0 0.0 4 100 - 0.6452 5 4 ack 40 ------- 0 5.0 0.0 4 100 - 0.6456 3 4 cbr 500 ------- 1 1.0 6.0 52 84 r 0.6476 3 4 tcp 1000 ------- 0 0.0 5.0 7 72 + 0.6476 4 5 tcp 1000 ------- 0 0.0 5.0 7 72 - 0.6476 4 5 tcp 1000 ------- 0 0.0 5.0 7 72 r 0.648 2 3 cbr 1000 ------- 1 2.0 7.0 26 93 + 0.648 3 4 cbr 1000 ------- 1 2.0 7.0 26 93 r 0.649264 5 4 ack 40 ------- 0 5.0 0.0 3 96 + 0.649264 4 3 ack 40 ------- 0 5.0 0.0 3 96 - 0.649264 4 3 ack 40 ------- 0 5.0 0.0 3 96 - 0.6496 3 4 cbr 500 ------- 1 1.0 6.0 53 86 + 0.65 1 3 cbr 500 ------- 1 1.0 6.0 60 101 - 0.65 1 3 cbr 500 ------- 1 1.0 6.0 60 101 r 0.6516 3 4 cbr 500 ------- 1 1.0 6.0 46 75 + 0.6516 4 6 cbr 500 ------- 1 1.0 6.0 46 75 - 0.6516 4 6 cbr 500 ------- 1 1.0 6.0 46 75 r 0.6532 4 5 tcp 1000 ------- 0 0.0 5.0 5 70 + 0.6532 5 4 ack 40 ------- 0 5.0 0.0 5 102 - 0.6532 5 4 ack 40 ------- 0 5.0 0.0 5 102 - 0.6536 3 4 cbr 1000 ------- 1 2.0 7.0 24 85 r 0.654 1 3 cbr 500 ------- 1 1.0 6.0 58 97 + 0.654 3 4 cbr 500 ------- 1 1.0 6.0 58 97 r 0.6556 3 4 cbr 500 ------- 1 1.0 6.0 47 77 + 0.6556 4 6 cbr 500 ------- 1 1.0 6.0 47 77 - 0.6556 4 6 cbr 500 ------- 1 1.0 6.0 47 77 + 0.66 2 3 cbr 1000 ------- 1 2.0 7.0 28 103 - 0.66 2 3 cbr 1000 ------- 1 2.0 7.0 28 103 + 0.66 1 3 cbr 500 ------- 1 1.0 6.0 61 104 - 0.66 1 3 cbr 500 ------- 1 1.0 6.0 61 104 r 0.6612 4 5 tcp 1000 ------- 0 0.0 5.0 6 71 + 0.6612 5 4 ack 40 ------- 0 5.0 0.0 6 105 - 0.6612 5 4 ack 40 ------- 0 5.0 0.0 6 105 - 0.6616 3 4 cbr 500 ------- 1 1.0 6.0 54 87 r 0.6636 3 4 cbr 1000 ------- 1 2.0 7.0 21 76 + 0.6636 4 7 cbr 1000 ------- 1 2.0 7.0 21 76 - 0.6636 4 7 cbr 1000 ------- 1 2.0 7.0 21 76 r 0.664 1 3 cbr 500 ------- 1 1.0 6.0 59 99 + 0.664 3 4 cbr 500 ------- 1 1.0 6.0 59 99 r 0.665264 5 4 ack 40 ------- 0 5.0 0.0 4 100 + 0.665264 4 3 ack 40 ------- 0 5.0 0.0 4 100 - 0.665264 4 3 ack 40 ------- 0 5.0 0.0 4 100 - 0.6656 3 4 cbr 500 ------- 1 1.0 6.0 55 89 r 0.6676 3 4 cbr 500 ------- 1 1.0 6.0 48 78 + 0.6676 4 6 cbr 500 ------- 1 1.0 6.0 48 78 - 0.6676 4 6 cbr 500 ------- 1 1.0 6.0 48 78 r 0.668 2 3 cbr 1000 ------- 1 2.0 7.0 27 98 + 0.668 3 4 cbr 1000 ------- 1 2.0 7.0 27 98 r 0.6692 4 5 tcp 1000 ------- 0 0.0 5.0 7 72 + 0.6692 5 4 ack 40 ------- 0 5.0 0.0 7 106 - 0.6692 5 4 ack 40 ------- 0 5.0 0.0 7 106 - 0.6696 3 4 cbr 1000 ------- 1 2.0 7.0 25 88 + 0.67 1 3 cbr 500 ------- 1 1.0 6.0 62 107 - 0.67 1 3 cbr 500 ------- 1 1.0 6.0 62 107 r 0.671584 4 3 ack 40 ------- 0 5.0 0.0 0 90 + 0.671584 3 0 ack 40 ------- 0 5.0 0.0 0 90 - 0.671584 3 0 ack 40 ------- 0 5.0 0.0 0 90 r 0.6716 3 4 cbr 500 ------- 1 1.0 6.0 49 80 + 0.6716 4 6 cbr 500 ------- 1 1.0 6.0 49 80 - 0.6716 4 6 cbr 500 ------- 1 1.0 6.0 49 80 r 0.673264 5 4 ack 40 ------- 0 5.0 0.0 5 102 + 0.673264 4 3 ack 40 ------- 0 5.0 0.0 5 102 - 0.673264 4 3 ack 40 ------- 0 5.0 0.0 5 102 r 0.674 1 3 cbr 500 ------- 1 1.0 6.0 60 101 + 0.674 3 4 cbr 500 ------- 1 1.0 6.0 60 101 r 0.6756 4 6 cbr 500 ------- 1 1.0 6.0 46 75 - 0.6776 3 4 cbr 500 ------- 1 1.0 6.0 56 92 r 0.679584 4 3 ack 40 ------- 0 5.0 0.0 1 91 + 0.679584 3 0 ack 40 ------- 0 5.0 0.0 1 91 - 0.679584 3 0 ack 40 ------- 0 5.0 0.0 1 91 r 0.6796 3 4 cbr 1000 ------- 1 2.0 7.0 22 79 + 0.6796 4 7 cbr 1000 ------- 1 2.0 7.0 22 79 - 0.6796 4 7 cbr 1000 ------- 1 2.0 7.0 22 79 r 0.6796 4 6 cbr 500 ------- 1 1.0 6.0 47 77 + 0.68 2 3 cbr 1000 ------- 1 2.0 7.0 29 108 - 0.68 2 3 cbr 1000 ------- 1 2.0 7.0 29 108 + 0.68 1 3 cbr 500 ------- 1 1.0 6.0 63 109 - 0.68 1 3 cbr 500 ------- 1 1.0 6.0 63 109 r 0.681264 5 4 ack 40 ------- 0 5.0 0.0 6 105 + 0.681264 4 3 ack 40 ------- 0 5.0 0.0 6 105 - 0.681264 4 3 ack 40 ------- 0 5.0 0.0 6 105 - 0.6816 3 4 cbr 500 ------- 1 1.0 6.0 57 94 r 0.6836 3 4 cbr 500 ------- 1 1.0 6.0 50 81 + 0.6836 4 6 cbr 500 ------- 1 1.0 6.0 50 81 - 0.6836 4 6 cbr 500 ------- 1 1.0 6.0 50 81 r 0.684 1 3 cbr 500 ------- 1 1.0 6.0 61 104 + 0.684 3 4 cbr 500 ------- 1 1.0 6.0 61 104 - 0.6856 3 4 cbr 1000 ------- 1 2.0 7.0 26 93 r 0.6876 3 4 cbr 500 ------- 1 1.0 6.0 51 83 + 0.6876 4 6 cbr 500 ------- 1 1.0 6.0 51 83 - 0.6876 4 6 cbr 500 ------- 1 1.0 6.0 51 83 r 0.688 2 3 cbr 1000 ------- 1 2.0 7.0 28 103 + 0.688 3 4 cbr 1000 ------- 1 2.0 7.0 28 103 r 0.689264 5 4 ack 40 ------- 0 5.0 0.0 7 106 + 0.689264 4 3 ack 40 ------- 0 5.0 0.0 7 106 - 0.689264 4 3 ack 40 ------- 0 5.0 0.0 7 106 + 0.69 1 3 cbr 500 ------- 1 1.0 6.0 64 110 - 0.69 1 3 cbr 500 ------- 1 1.0 6.0 64 110 r 0.691584 4 3 ack 40 ------- 0 5.0 0.0 2 95 + 0.691584 3 0 ack 40 ------- 0 5.0 0.0 2 95 - 0.691584 3 0 ack 40 ------- 0 5.0 0.0 2 95 r 0.6916 4 7 cbr 1000 ------- 1 2.0 7.0 21 76 r 0.6916 4 6 cbr 500 ------- 1 1.0 6.0 48 78 r 0.691648 3 0 ack 40 ------- 0 5.0 0.0 0 90 + 0.691648 0 3 tcp 1000 ------- 0 0.0 5.0 8 111 - 0.691648 0 3 tcp 1000 ------- 0 0.0 5.0 8 111 - 0.6936 3 4 cbr 500 ------- 1 1.0 6.0 58 97 r 0.694 1 3 cbr 500 ------- 1 1.0 6.0 62 107 + 0.694 3 4 cbr 500 ------- 1 1.0 6.0 62 107 r 0.6956 3 4 cbr 1000 ------- 1 2.0 7.0 23 82 + 0.6956 4 7 cbr 1000 ------- 1 2.0 7.0 23 82 - 0.6956 4 7 cbr 1000 ------- 1 2.0 7.0 23 82 r 0.6956 4 6 cbr 500 ------- 1 1.0 6.0 49 80 - 0.6976 3 4 cbr 500 ------- 1 1.0 6.0 59 99 r 0.699584 4 3 ack 40 ------- 0 5.0 0.0 3 96 + 0.699584 3 0 ack 40 ------- 0 5.0 0.0 3 96 - 0.699584 3 0 ack 40 ------- 0 5.0 0.0 3 96 r 0.6996 3 4 cbr 500 ------- 1 1.0 6.0 52 84 + 0.6996 4 6 cbr 500 ------- 1 1.0 6.0 52 84 - 0.6996 4 6 cbr 500 ------- 1 1.0 6.0 52 84 r 0.699648 3 0 ack 40 ------- 0 5.0 0.0 1 91 + 0.699648 0 3 tcp 1000 ------- 0 0.0 5.0 9 112 - 0.699648 0 3 tcp 1000 ------- 0 0.0 5.0 9 112 + 0.7 2 3 cbr 1000 ------- 1 2.0 7.0 30 113 - 0.7 2 3 cbr 1000 ------- 1 2.0 7.0 30 113 + 0.7 1 3 cbr 500 ------- 1 1.0 6.0 65 114 - 0.7 1 3 cbr 500 ------- 1 1.0 6.0 65 114 - 0.7016 3 4 cbr 1000 ------- 1 2.0 7.0 27 98 r 0.7036 3 4 cbr 500 ------- 1 1.0 6.0 53 86 + 0.7036 4 6 cbr 500 ------- 1 1.0 6.0 53 86 - 0.7036 4 6 cbr 500 ------- 1 1.0 6.0 53 86 r 0.704 1 3 cbr 500 ------- 1 1.0 6.0 63 109 + 0.704 3 4 cbr 500 ------- 1 1.0 6.0 63 109 r 0.7076 4 7 cbr 1000 ------- 1 2.0 7.0 22 79 r 0.7076 4 6 cbr 500 ------- 1 1.0 6.0 50 81 r 0.708 2 3 cbr 1000 ------- 1 2.0 7.0 29 108 + 0.708 3 4 cbr 1000 ------- 1 2.0 7.0 29 108 - 0.7096 3 4 cbr 500 ------- 1 1.0 6.0 60 101 + 0.71 1 3 cbr 500 ------- 1 1.0 6.0 66 115 - 0.71 1 3 cbr 500 ------- 1 1.0 6.0 66 115 r 0.7116 3 4 cbr 1000 ------- 1 2.0 7.0 24 85 + 0.7116 4 7 cbr 1000 ------- 1 2.0 7.0 24 85 - 0.7116 4 7 cbr 1000 ------- 1 2.0 7.0 24 85 r 0.7116 4 6 cbr 500 ------- 1 1.0 6.0 51 83 r 0.711648 3 0 ack 40 ------- 0 5.0 0.0 2 95 + 0.711648 0 3 tcp 1000 ------- 0 0.0 5.0 10 116 - 0.711648 0 3 tcp 1000 ------- 0 0.0 5.0 10 116 r 0.713248 0 3 tcp 1000 ------- 0 0.0 5.0 8 111 + 0.713248 3 4 tcp 1000 ------- 0 0.0 5.0 8 111 - 0.7136 3 4 cbr 500 ------- 1 1.0 6.0 61 104 r 0.714 1 3 cbr 500 ------- 1 1.0 6.0 64 110 + 0.714 3 4 cbr 500 ------- 1 1.0 6.0 64 110 r 0.715584 4 3 ack 40 ------- 0 5.0 0.0 4 100 + 0.715584 3 0 ack 40 ------- 0 5.0 0.0 4 100 - 0.715584 3 0 ack 40 ------- 0 5.0 0.0 4 100 r 0.7156 3 4 cbr 500 ------- 1 1.0 6.0 54 87 + 0.7156 4 6 cbr 500 ------- 1 1.0 6.0 54 87 - 0.7156 4 6 cbr 500 ------- 1 1.0 6.0 54 87 - 0.7176 3 4 cbr 1000 ------- 1 2.0 7.0 28 103 r 0.7196 3 4 cbr 500 ------- 1 1.0 6.0 55 89 + 0.7196 4 6 cbr 500 ------- 1 1.0 6.0 55 89 - 0.7196 4 6 cbr 500 ------- 1 1.0 6.0 55 89 r 0.719648 3 0 ack 40 ------- 0 5.0 0.0 3 96 + 0.719648 0 3 tcp 1000 ------- 0 0.0 5.0 11 117 - 0.719648 0 3 tcp 1000 ------- 0 0.0 5.0 11 117 + 0.72 2 3 cbr 1000 ------- 1 2.0 7.0 31 118 - 0.72 2 3 cbr 1000 ------- 1 2.0 7.0 31 118 + 0.72 1 3 cbr 500 ------- 1 1.0 6.0 67 119 - 0.72 1 3 cbr 500 ------- 1 1.0 6.0 67 119 r 0.721248 0 3 tcp 1000 ------- 0 0.0 5.0 9 112 + 0.721248 3 4 tcp 1000 ------- 0 0.0 5.0 9 112 r 0.723584 4 3 ack 40 ------- 0 5.0 0.0 5 102 + 0.723584 3 0 ack 40 ------- 0 5.0 0.0 5 102 - 0.723584 3 0 ack 40 ------- 0 5.0 0.0 5 102 r 0.7236 4 7 cbr 1000 ------- 1 2.0 7.0 23 82 r 0.7236 4 6 cbr 500 ------- 1 1.0 6.0 52 84 r 0.724 1 3 cbr 500 ------- 1 1.0 6.0 65 114 + 0.724 3 4 cbr 500 ------- 1 1.0 6.0 65 114 - 0.7256 3 4 cbr 500 ------- 1 1.0 6.0 62 107 r 0.7276 3 4 cbr 1000 ------- 1 2.0 7.0 25 88 + 0.7276 4 7 cbr 1000 ------- 1 2.0 7.0 25 88 - 0.7276 4 7 cbr 1000 ------- 1 2.0 7.0 25 88 r 0.7276 4 6 cbr 500 ------- 1 1.0 6.0 53 86 r 0.728 2 3 cbr 1000 ------- 1 2.0 7.0 30 113 + 0.728 3 4 cbr 1000 ------- 1 2.0 7.0 30 113 - 0.7296 3 4 cbr 500 ------- 1 1.0 6.0 63 109 + 0.73 1 3 cbr 500 ------- 1 1.0 6.0 68 120 - 0.73 1 3 cbr 500 ------- 1 1.0 6.0 68 120 r 0.731584 4 3 ack 40 ------- 0 5.0 0.0 6 105 + 0.731584 3 0 ack 40 ------- 0 5.0 0.0 6 105 - 0.731584 3 0 ack 40 ------- 0 5.0 0.0 6 105 r 0.7316 3 4 cbr 500 ------- 1 1.0 6.0 56 92 + 0.7316 4 6 cbr 500 ------- 1 1.0 6.0 56 92 - 0.7316 4 6 cbr 500 ------- 1 1.0 6.0 56 92 r 0.733248 0 3 tcp 1000 ------- 0 0.0 5.0 10 116 + 0.733248 3 4 tcp 1000 ------- 0 0.0 5.0 10 116 - 0.7336 3 4 cbr 1000 ------- 1 2.0 7.0 29 108 r 0.734 1 3 cbr 500 ------- 1 1.0 6.0 66 115 + 0.734 3 4 cbr 500 ------- 1 1.0 6.0 66 115 r 0.7356 3 4 cbr 500 ------- 1 1.0 6.0 57 94 + 0.7356 4 6 cbr 500 ------- 1 1.0 6.0 57 94 - 0.7356 4 6 cbr 500 ------- 1 1.0 6.0 57 94 r 0.735648 3 0 ack 40 ------- 0 5.0 0.0 4 100 + 0.735648 0 3 tcp 1000 ------- 0 0.0 5.0 12 121 - 0.735648 0 3 tcp 1000 ------- 0 0.0 5.0 12 121 r 0.739584 4 3 ack 40 ------- 0 5.0 0.0 7 106 + 0.739584 3 0 ack 40 ------- 0 5.0 0.0 7 106 - 0.739584 3 0 ack 40 ------- 0 5.0 0.0 7 106 r 0.7396 4 7 cbr 1000 ------- 1 2.0 7.0 24 85 r 0.7396 4 6 cbr 500 ------- 1 1.0 6.0 54 87 + 0.74 2 3 cbr 1000 ------- 1 2.0 7.0 32 122 - 0.74 2 3 cbr 1000 ------- 1 2.0 7.0 32 122 + 0.74 1 3 cbr 500 ------- 1 1.0 6.0 69 123 - 0.74 1 3 cbr 500 ------- 1 1.0 6.0 69 123 r 0.741248 0 3 tcp 1000 ------- 0 0.0 5.0 11 117 + 0.741248 3 4 tcp 1000 ------- 0 0.0 5.0 11 117 - 0.7416 3 4 tcp 1000 ------- 0 0.0 5.0 8 111 r 0.7436 3 4 cbr 1000 ------- 1 2.0 7.0 26 93 + 0.7436 4 7 cbr 1000 ------- 1 2.0 7.0 26 93 - 0.7436 4 7 cbr 1000 ------- 1 2.0 7.0 26 93 r 0.7436 4 6 cbr 500 ------- 1 1.0 6.0 55 89 r 0.743648 3 0 ack 40 ------- 0 5.0 0.0 5 102 + 0.743648 0 3 tcp 1000 ------- 0 0.0 5.0 13 124 - 0.743648 0 3 tcp 1000 ------- 0 0.0 5.0 13 124 r 0.744 1 3 cbr 500 ------- 1 1.0 6.0 67 119 + 0.744 3 4 cbr 500 ------- 1 1.0 6.0 67 119 r 0.7476 3 4 cbr 500 ------- 1 1.0 6.0 58 97 + 0.7476 4 6 cbr 500 ------- 1 1.0 6.0 58 97 - 0.7476 4 6 cbr 500 ------- 1 1.0 6.0 58 97 r 0.748 2 3 cbr 1000 ------- 1 2.0 7.0 31 118 + 0.748 3 4 cbr 1000 ------- 1 2.0 7.0 31 118 - 0.7496 3 4 cbr 500 ------- 1 1.0 6.0 64 110 + 0.75 1 3 cbr 500 ------- 1 1.0 6.0 70 125 - 0.75 1 3 cbr 500 ------- 1 1.0 6.0 70 125 r 0.7516 3 4 cbr 500 ------- 1 1.0 6.0 59 99 + 0.7516 4 6 cbr 500 ------- 1 1.0 6.0 59 99 - 0.7516 4 6 cbr 500 ------- 1 1.0 6.0 59 99 r 0.751648 3 0 ack 40 ------- 0 5.0 0.0 6 105 + 0.751648 0 3 tcp 1000 ------- 0 0.0 5.0 14 126 - 0.751648 0 3 tcp 1000 ------- 0 0.0 5.0 14 126 - 0.7536 3 4 tcp 1000 ------- 0 0.0 5.0 9 112 r 0.754 1 3 cbr 500 ------- 1 1.0 6.0 68 120 + 0.754 3 4 cbr 500 ------- 1 1.0 6.0 68 120 r 0.7556 4 7 cbr 1000 ------- 1 2.0 7.0 25 88 r 0.7556 4 6 cbr 500 ------- 1 1.0 6.0 56 92 r 0.757248 0 3 tcp 1000 ------- 0 0.0 5.0 12 121 + 0.757248 3 4 tcp 1000 ------- 0 0.0 5.0 12 121 r 0.7596 3 4 cbr 1000 ------- 1 2.0 7.0 27 98 + 0.7596 4 7 cbr 1000 ------- 1 2.0 7.0 27 98 - 0.7596 4 7 cbr 1000 ------- 1 2.0 7.0 27 98 r 0.7596 4 6 cbr 500 ------- 1 1.0 6.0 57 94 r 0.759648 3 0 ack 40 ------- 0 5.0 0.0 7 106 + 0.759648 0 3 tcp 1000 ------- 0 0.0 5.0 15 127 - 0.759648 0 3 tcp 1000 ------- 0 0.0 5.0 15 127 + 0.76 2 3 cbr 1000 ------- 1 2.0 7.0 33 128 - 0.76 2 3 cbr 1000 ------- 1 2.0 7.0 33 128 + 0.76 1 3 cbr 500 ------- 1 1.0 6.0 71 129 - 0.76 1 3 cbr 500 ------- 1 1.0 6.0 71 129 - 0.7616 3 4 cbr 500 ------- 1 1.0 6.0 65 114 r 0.7636 3 4 cbr 500 ------- 1 1.0 6.0 60 101 + 0.7636 4 6 cbr 500 ------- 1 1.0 6.0 60 101 - 0.7636 4 6 cbr 500 ------- 1 1.0 6.0 60 101 r 0.764 1 3 cbr 500 ------- 1 1.0 6.0 69 123 + 0.764 3 4 cbr 500 ------- 1 1.0 6.0 69 123 r 0.765248 0 3 tcp 1000 ------- 0 0.0 5.0 13 124 + 0.765248 3 4 tcp 1000 ------- 0 0.0 5.0 13 124 - 0.7656 3 4 cbr 1000 ------- 1 2.0 7.0 30 113 r 0.7676 3 4 cbr 500 ------- 1 1.0 6.0 61 104 + 0.7676 4 6 cbr 500 ------- 1 1.0 6.0 61 104 - 0.7676 4 6 cbr 500 ------- 1 1.0 6.0 61 104 r 0.768 2 3 cbr 1000 ------- 1 2.0 7.0 32 122 + 0.768 3 4 cbr 1000 ------- 1 2.0 7.0 32 122 + 0.77 1 3 cbr 500 ------- 1 1.0 6.0 72 130 - 0.77 1 3 cbr 500 ------- 1 1.0 6.0 72 130 r 0.7716 4 7 cbr 1000 ------- 1 2.0 7.0 26 93 r 0.7716 4 6 cbr 500 ------- 1 1.0 6.0 58 97 r 0.773248 0 3 tcp 1000 ------- 0 0.0 5.0 14 126 + 0.773248 3 4 tcp 1000 ------- 0 0.0 5.0 14 126 - 0.7736 3 4 tcp 1000 ------- 0 0.0 5.0 10 116 r 0.774 1 3 cbr 500 ------- 1 1.0 6.0 70 125 + 0.774 3 4 cbr 500 ------- 1 1.0 6.0 70 125 r 0.7756 3 4 cbr 1000 ------- 1 2.0 7.0 28 103 + 0.7756 4 7 cbr 1000 ------- 1 2.0 7.0 28 103 - 0.7756 4 7 cbr 1000 ------- 1 2.0 7.0 28 103 r 0.7756 4 6 cbr 500 ------- 1 1.0 6.0 59 99 r 0.7796 3 4 cbr 500 ------- 1 1.0 6.0 62 107 + 0.7796 4 6 cbr 500 ------- 1 1.0 6.0 62 107 - 0.7796 4 6 cbr 500 ------- 1 1.0 6.0 62 107 + 0.78 2 3 cbr 1000 ------- 1 2.0 7.0 34 131 - 0.78 2 3 cbr 1000 ------- 1 2.0 7.0 34 131 + 0.78 1 3 cbr 500 ------- 1 1.0 6.0 73 132 - 0.78 1 3 cbr 500 ------- 1 1.0 6.0 73 132 r 0.781248 0 3 tcp 1000 ------- 0 0.0 5.0 15 127 + 0.781248 3 4 tcp 1000 ------- 0 0.0 5.0 15 127 - 0.7816 3 4 cbr 500 ------- 1 1.0 6.0 66 115 r 0.7836 3 4 cbr 500 ------- 1 1.0 6.0 63 109 + 0.7836 4 6 cbr 500 ------- 1 1.0 6.0 63 109 - 0.7836 4 6 cbr 500 ------- 1 1.0 6.0 63 109 r 0.784 1 3 cbr 500 ------- 1 1.0 6.0 71 129 + 0.784 3 4 cbr 500 ------- 1 1.0 6.0 71 129 - 0.7856 3 4 tcp 1000 ------- 0 0.0 5.0 11 117 r 0.7876 4 7 cbr 1000 ------- 1 2.0 7.0 27 98 r 0.7876 4 6 cbr 500 ------- 1 1.0 6.0 60 101 r 0.788 2 3 cbr 1000 ------- 1 2.0 7.0 33 128 + 0.788 3 4 cbr 1000 ------- 1 2.0 7.0 33 128 + 0.79 1 3 cbr 500 ------- 1 1.0 6.0 74 133 - 0.79 1 3 cbr 500 ------- 1 1.0 6.0 74 133 r 0.7916 3 4 cbr 1000 ------- 1 2.0 7.0 29 108 + 0.7916 4 7 cbr 1000 ------- 1 2.0 7.0 29 108 - 0.7916 4 7 cbr 1000 ------- 1 2.0 7.0 29 108 r 0.7916 4 6 cbr 500 ------- 1 1.0 6.0 61 104 - 0.7936 3 4 cbr 500 ------- 1 1.0 6.0 67 119 r 0.794 1 3 cbr 500 ------- 1 1.0 6.0 72 130 + 0.794 3 4 cbr 500 ------- 1 1.0 6.0 72 130 - 0.7976 3 4 cbr 1000 ------- 1 2.0 7.0 31 118 r 0.7996 3 4 tcp 1000 ------- 0 0.0 5.0 8 111 + 0.7996 4 5 tcp 1000 ------- 0 0.0 5.0 8 111 - 0.7996 4 5 tcp 1000 ------- 0 0.0 5.0 8 111 + 0.8 2 3 cbr 1000 ------- 1 2.0 7.0 35 134 - 0.8 2 3 cbr 1000 ------- 1 2.0 7.0 35 134 + 0.8 1 3 cbr 500 ------- 1 1.0 6.0 75 135 - 0.8 1 3 cbr 500 ------- 1 1.0 6.0 75 135 r 0.8036 3 4 cbr 500 ------- 1 1.0 6.0 64 110 + 0.8036 4 6 cbr 500 ------- 1 1.0 6.0 64 110 - 0.8036 4 6 cbr 500 ------- 1 1.0 6.0 64 110 r 0.8036 4 7 cbr 1000 ------- 1 2.0 7.0 28 103 r 0.8036 4 6 cbr 500 ------- 1 1.0 6.0 62 107 r 0.804 1 3 cbr 500 ------- 1 1.0 6.0 73 132 + 0.804 3 4 cbr 500 ------- 1 1.0 6.0 73 132 - 0.8056 3 4 cbr 500 ------- 1 1.0 6.0 68 120 r 0.8076 4 6 cbr 500 ------- 1 1.0 6.0 63 109 r 0.808 2 3 cbr 1000 ------- 1 2.0 7.0 34 131 + 0.808 3 4 cbr 1000 ------- 1 2.0 7.0 34 131 - 0.8096 3 4 tcp 1000 ------- 0 0.0 5.0 12 121 + 0.81 1 3 cbr 500 ------- 1 1.0 6.0 76 136 - 0.81 1 3 cbr 500 ------- 1 1.0 6.0 76 136 r 0.8116 3 4 tcp 1000 ------- 0 0.0 5.0 9 112 + 0.8116 4 5 tcp 1000 ------- 0 0.0 5.0 9 112 - 0.8116 4 5 tcp 1000 ------- 0 0.0 5.0 9 112 r 0.814 1 3 cbr 500 ------- 1 1.0 6.0 74 133 + 0.814 3 4 cbr 500 ------- 1 1.0 6.0 74 133 r 0.8156 3 4 cbr 500 ------- 1 1.0 6.0 65 114 + 0.8156 4 6 cbr 500 ------- 1 1.0 6.0 65 114 - 0.8156 4 6 cbr 500 ------- 1 1.0 6.0 65 114 - 0.8176 3 4 cbr 500 ------- 1 1.0 6.0 69 123 r 0.8196 4 7 cbr 1000 ------- 1 2.0 7.0 29 108 + 0.82 2 3 cbr 1000 ------- 1 2.0 7.0 36 137 - 0.82 2 3 cbr 1000 ------- 1 2.0 7.0 36 137 + 0.82 1 3 cbr 500 ------- 1 1.0 6.0 77 138 - 0.82 1 3 cbr 500 ------- 1 1.0 6.0 77 138 r 0.8212 4 5 tcp 1000 ------- 0 0.0 5.0 8 111 + 0.8212 5 4 ack 40 ------- 0 5.0 0.0 8 139 - 0.8212 5 4 ack 40 ------- 0 5.0 0.0 8 139 - 0.8216 3 4 tcp 1000 ------- 0 0.0 5.0 13 124 r 0.8236 3 4 cbr 1000 ------- 1 2.0 7.0 30 113 + 0.8236 4 7 cbr 1000 ------- 1 2.0 7.0 30 113 - 0.8236 4 7 cbr 1000 ------- 1 2.0 7.0 30 113 r 0.824 1 3 cbr 500 ------- 1 1.0 6.0 75 135 + 0.824 3 4 cbr 500 ------- 1 1.0 6.0 75 135 r 0.8276 4 6 cbr 500 ------- 1 1.0 6.0 64 110 r 0.828 2 3 cbr 1000 ------- 1 2.0 7.0 35 134 + 0.828 3 4 cbr 1000 ------- 1 2.0 7.0 35 134 - 0.8296 3 4 cbr 1000 ------- 1 2.0 7.0 32 122 + 0.83 1 3 cbr 500 ------- 1 1.0 6.0 78 140 - 0.83 1 3 cbr 500 ------- 1 1.0 6.0 78 140 r 0.8316 3 4 tcp 1000 ------- 0 0.0 5.0 10 116 + 0.8316 4 5 tcp 1000 ------- 0 0.0 5.0 10 116 - 0.8316 4 5 tcp 1000 ------- 0 0.0 5.0 10 116 r 0.8332 4 5 tcp 1000 ------- 0 0.0 5.0 9 112 + 0.8332 5 4 ack 40 ------- 0 5.0 0.0 9 141 - 0.8332 5 4 ack 40 ------- 0 5.0 0.0 9 141 r 0.834 1 3 cbr 500 ------- 1 1.0 6.0 76 136 + 0.834 3 4 cbr 500 ------- 1 1.0 6.0 76 136 r 0.8356 3 4 cbr 500 ------- 1 1.0 6.0 66 115 + 0.8356 4 6 cbr 500 ------- 1 1.0 6.0 66 115 - 0.8356 4 6 cbr 500 ------- 1 1.0 6.0 66 115 - 0.8376 3 4 tcp 1000 ------- 0 0.0 5.0 14 126 r 0.8396 4 6 cbr 500 ------- 1 1.0 6.0 65 114 + 0.84 2 3 cbr 1000 ------- 1 2.0 7.0 37 142 - 0.84 2 3 cbr 1000 ------- 1 2.0 7.0 37 142 + 0.84 1 3 cbr 500 ------- 1 1.0 6.0 79 143 - 0.84 1 3 cbr 500 ------- 1 1.0 6.0 79 143 r 0.841264 5 4 ack 40 ------- 0 5.0 0.0 8 139 + 0.841264 4 3 ack 40 ------- 0 5.0 0.0 8 139 - 0.841264 4 3 ack 40 ------- 0 5.0 0.0 8 139 r 0.8436 3 4 tcp 1000 ------- 0 0.0 5.0 11 117 + 0.8436 4 5 tcp 1000 ------- 0 0.0 5.0 11 117 - 0.8436 4 5 tcp 1000 ------- 0 0.0 5.0 11 117 r 0.844 1 3 cbr 500 ------- 1 1.0 6.0 77 138 + 0.844 3 4 cbr 500 ------- 1 1.0 6.0 77 138 - 0.8456 3 4 cbr 500 ------- 1 1.0 6.0 70 125 r 0.8476 3 4 cbr 500 ------- 1 1.0 6.0 67 119 + 0.8476 4 6 cbr 500 ------- 1 1.0 6.0 67 119 - 0.8476 4 6 cbr 500 ------- 1 1.0 6.0 67 119 r 0.848 2 3 cbr 1000 ------- 1 2.0 7.0 36 137 + 0.848 3 4 cbr 1000 ------- 1 2.0 7.0 36 137 - 0.8496 3 4 tcp 1000 ------- 0 0.0 5.0 15 127 + 0.85 1 3 cbr 500 ------- 1 1.0 6.0 80 144 - 0.85 1 3 cbr 500 ------- 1 1.0 6.0 80 144 r 0.8516 4 7 cbr 1000 ------- 1 2.0 7.0 30 113 r 0.8532 4 5 tcp 1000 ------- 0 0.0 5.0 10 116 + 0.8532 5 4 ack 40 ------- 0 5.0 0.0 10 145 - 0.8532 5 4 ack 40 ------- 0 5.0 0.0 10 145 r 0.853264 5 4 ack 40 ------- 0 5.0 0.0 9 141 + 0.853264 4 3 ack 40 ------- 0 5.0 0.0 9 141 - 0.853264 4 3 ack 40 ------- 0 5.0 0.0 9 141 r 0.854 1 3 cbr 500 ------- 1 1.0 6.0 78 140 + 0.854 3 4 cbr 500 ------- 1 1.0 6.0 78 140 r 0.8556 3 4 cbr 1000 ------- 1 2.0 7.0 31 118 + 0.8556 4 7 cbr 1000 ------- 1 2.0 7.0 31 118 - 0.8556 4 7 cbr 1000 ------- 1 2.0 7.0 31 118 - 0.8576 3 4 cbr 500 ------- 1 1.0 6.0 71 129 r 0.8596 3 4 cbr 500 ------- 1 1.0 6.0 68 120 + 0.8596 4 6 cbr 500 ------- 1 1.0 6.0 68 120 - 0.8596 4 6 cbr 500 ------- 1 1.0 6.0 68 120 r 0.8596 4 6 cbr 500 ------- 1 1.0 6.0 66 115 + 0.86 2 3 cbr 1000 ------- 1 2.0 7.0 38 146 - 0.86 2 3 cbr 1000 ------- 1 2.0 7.0 38 146 + 0.86 1 3 cbr 500 ------- 1 1.0 6.0 81 147 - 0.86 1 3 cbr 500 ------- 1 1.0 6.0 81 147 - 0.8616 3 4 cbr 1000 ------- 1 2.0 7.0 33 128 r 0.864 1 3 cbr 500 ------- 1 1.0 6.0 79 143 + 0.864 3 4 cbr 500 ------- 1 1.0 6.0 79 143 r 0.8652 4 5 tcp 1000 ------- 0 0.0 5.0 11 117 + 0.8652 5 4 ack 40 ------- 0 5.0 0.0 11 148 - 0.8652 5 4 ack 40 ------- 0 5.0 0.0 11 148 r 0.8676 3 4 tcp 1000 ------- 0 0.0 5.0 12 121 + 0.8676 4 5 tcp 1000 ------- 0 0.0 5.0 12 121 - 0.8676 4 5 tcp 1000 ------- 0 0.0 5.0 12 121 r 0.868 2 3 cbr 1000 ------- 1 2.0 7.0 37 142 + 0.868 3 4 cbr 1000 ------- 1 2.0 7.0 37 142 - 0.8696 3 4 cbr 500 ------- 1 1.0 6.0 72 130 + 0.87 1 3 cbr 500 ------- 1 1.0 6.0 82 149 - 0.87 1 3 cbr 500 ------- 1 1.0 6.0 82 149 r 0.8716 3 4 cbr 500 ------- 1 1.0 6.0 69 123 + 0.8716 4 6 cbr 500 ------- 1 1.0 6.0 69 123 - 0.8716 4 6 cbr 500 ------- 1 1.0 6.0 69 123 r 0.8716 4 6 cbr 500 ------- 1 1.0 6.0 67 119 r 0.873264 5 4 ack 40 ------- 0 5.0 0.0 10 145 + 0.873264 4 3 ack 40 ------- 0 5.0 0.0 10 145 - 0.873264 4 3 ack 40 ------- 0 5.0 0.0 10 145 - 0.8736 3 4 cbr 500 ------- 1 1.0 6.0 73 132 r 0.874 1 3 cbr 500 ------- 1 1.0 6.0 80 144 + 0.874 3 4 cbr 500 ------- 1 1.0 6.0 80 144 - 0.8776 3 4 cbr 1000 ------- 1 2.0 7.0 34 131 r 0.8796 3 4 tcp 1000 ------- 0 0.0 5.0 13 124 + 0.8796 4 5 tcp 1000 ------- 0 0.0 5.0 13 124 - 0.8796 4 5 tcp 1000 ------- 0 0.0 5.0 13 124 + 0.88 2 3 cbr 1000 ------- 1 2.0 7.0 39 150 - 0.88 2 3 cbr 1000 ------- 1 2.0 7.0 39 150 + 0.88 1 3 cbr 500 ------- 1 1.0 6.0 83 151 - 0.88 1 3 cbr 500 ------- 1 1.0 6.0 83 151 r 0.8836 4 7 cbr 1000 ------- 1 2.0 7.0 31 118 r 0.8836 4 6 cbr 500 ------- 1 1.0 6.0 68 120 r 0.884 1 3 cbr 500 ------- 1 1.0 6.0 81 147 + 0.884 3 4 cbr 500 ------- 1 1.0 6.0 81 147 r 0.885264 5 4 ack 40 ------- 0 5.0 0.0 11 148 + 0.885264 4 3 ack 40 ------- 0 5.0 0.0 11 148 - 0.885264 4 3 ack 40 ------- 0 5.0 0.0 11 148 - 0.8856 3 4 cbr 500 ------- 1 1.0 6.0 74 133 r 0.8876 3 4 cbr 1000 ------- 1 2.0 7.0 32 122 + 0.8876 4 7 cbr 1000 ------- 1 2.0 7.0 32 122 - 0.8876 4 7 cbr 1000 ------- 1 2.0 7.0 32 122 r 0.888 2 3 cbr 1000 ------- 1 2.0 7.0 38 146 + 0.888 3 4 cbr 1000 ------- 1 2.0 7.0 38 146 r 0.8892 4 5 tcp 1000 ------- 0 0.0 5.0 12 121 + 0.8892 5 4 ack 40 ------- 0 5.0 0.0 12 152 - 0.8892 5 4 ack 40 ------- 0 5.0 0.0 12 152 - 0.8896 3 4 cbr 500 ------- 1 1.0 6.0 75 135 + 0.89 1 3 cbr 500 ------- 1 1.0 6.0 84 153 - 0.89 1 3 cbr 500 ------- 1 1.0 6.0 84 153 r 0.891584 4 3 ack 40 ------- 0 5.0 0.0 8 139 + 0.891584 3 0 ack 40 ------- 0 5.0 0.0 8 139 - 0.891584 3 0 ack 40 ------- 0 5.0 0.0 8 139 - 0.8936 3 4 cbr 1000 ------- 1 2.0 7.0 35 134 r 0.894 1 3 cbr 500 ------- 1 1.0 6.0 82 149 + 0.894 3 4 cbr 500 ------- 1 1.0 6.0 82 149 r 0.8956 3 4 tcp 1000 ------- 0 0.0 5.0 14 126 + 0.8956 4 5 tcp 1000 ------- 0 0.0 5.0 14 126 - 0.8956 4 5 tcp 1000 ------- 0 0.0 5.0 14 126 r 0.8956 4 6 cbr 500 ------- 1 1.0 6.0 69 123 r 0.8996 3 4 cbr 500 ------- 1 1.0 6.0 70 125 + 0.8996 4 6 cbr 500 ------- 1 1.0 6.0 70 125 - 0.8996 4 6 cbr 500 ------- 1 1.0 6.0 70 125 + 0.9 2 3 cbr 1000 ------- 1 2.0 7.0 40 154 - 0.9 2 3 cbr 1000 ------- 1 2.0 7.0 40 154 + 0.9 1 3 cbr 500 ------- 1 1.0 6.0 85 155 - 0.9 1 3 cbr 500 ------- 1 1.0 6.0 85 155 r 0.9012 4 5 tcp 1000 ------- 0 0.0 5.0 13 124 + 0.9012 5 4 ack 40 ------- 0 5.0 0.0 13 156 - 0.9012 5 4 ack 40 ------- 0 5.0 0.0 13 156 - 0.9016 3 4 cbr 500 ------- 1 1.0 6.0 76 136 r 0.903584 4 3 ack 40 ------- 0 5.0 0.0 9 141 + 0.903584 3 0 ack 40 ------- 0 5.0 0.0 9 141 - 0.903584 3 0 ack 40 ------- 0 5.0 0.0 9 141 r 0.904 1 3 cbr 500 ------- 1 1.0 6.0 83 151 + 0.904 3 4 cbr 500 ------- 1 1.0 6.0 83 151 - 0.9056 3 4 cbr 500 ------- 1 1.0 6.0 77 138 r 0.9076 3 4 tcp 1000 ------- 0 0.0 5.0 15 127 + 0.9076 4 5 tcp 1000 ------- 0 0.0 5.0 15 127 - 0.9076 4 5 tcp 1000 ------- 0 0.0 5.0 15 127 r 0.908 2 3 cbr 1000 ------- 1 2.0 7.0 39 150 + 0.908 3 4 cbr 1000 ------- 1 2.0 7.0 39 150 r 0.909264 5 4 ack 40 ------- 0 5.0 0.0 12 152 + 0.909264 4 3 ack 40 ------- 0 5.0 0.0 12 152 - 0.909264 4 3 ack 40 ------- 0 5.0 0.0 12 152 - 0.9096 3 4 cbr 1000 ------- 1 2.0 7.0 36 137 + 0.91 1 3 cbr 500 ------- 1 1.0 6.0 86 157 - 0.91 1 3 cbr 500 ------- 1 1.0 6.0 86 157 r 0.9116 3 4 cbr 500 ------- 1 1.0 6.0 71 129 + 0.9116 4 6 cbr 500 ------- 1 1.0 6.0 71 129 - 0.9116 4 6 cbr 500 ------- 1 1.0 6.0 71 129 r 0.911648 3 0 ack 40 ------- 0 5.0 0.0 8 139 + 0.911648 0 3 tcp 1000 ------- 0 0.0 5.0 16 158 - 0.911648 0 3 tcp 1000 ------- 0 0.0 5.0 16 158 r 0.914 1 3 cbr 500 ------- 1 1.0 6.0 84 153 + 0.914 3 4 cbr 500 ------- 1 1.0 6.0 84 153 r 0.9156 4 7 cbr 1000 ------- 1 2.0 7.0 32 122 r 0.9172 4 5 tcp 1000 ------- 0 0.0 5.0 14 126 + 0.9172 5 4 ack 40 ------- 0 5.0 0.0 14 159 - 0.9172 5 4 ack 40 ------- 0 5.0 0.0 14 159 - 0.9176 3 4 cbr 500 ------- 1 1.0 6.0 78 140 r 0.9196 3 4 cbr 1000 ------- 1 2.0 7.0 33 128 + 0.9196 4 7 cbr 1000 ------- 1 2.0 7.0 33 128 - 0.9196 4 7 cbr 1000 ------- 1 2.0 7.0 33 128 + 0.92 2 3 cbr 1000 ------- 1 2.0 7.0 41 160 - 0.92 2 3 cbr 1000 ------- 1 2.0 7.0 41 160 + 0.92 1 3 cbr 500 ------- 1 1.0 6.0 87 161 - 0.92 1 3 cbr 500 ------- 1 1.0 6.0 87 161 r 0.921264 5 4 ack 40 ------- 0 5.0 0.0 13 156 + 0.921264 4 3 ack 40 ------- 0 5.0 0.0 13 156 - 0.921264 4 3 ack 40 ------- 0 5.0 0.0 13 156 - 0.9216 3 4 cbr 500 ------- 1 1.0 6.0 79 143 r 0.923584 4 3 ack 40 ------- 0 5.0 0.0 10 145 + 0.923584 3 0 ack 40 ------- 0 5.0 0.0 10 145 - 0.923584 3 0 ack 40 ------- 0 5.0 0.0 10 145 r 0.9236 3 4 cbr 500 ------- 1 1.0 6.0 72 130 + 0.9236 4 6 cbr 500 ------- 1 1.0 6.0 72 130 - 0.9236 4 6 cbr 500 ------- 1 1.0 6.0 72 130 r 0.9236 4 6 cbr 500 ------- 1 1.0 6.0 70 125 r 0.923648 3 0 ack 40 ------- 0 5.0 0.0 9 141 + 0.923648 0 3 tcp 1000 ------- 0 0.0 5.0 17 162 - 0.923648 0 3 tcp 1000 ------- 0 0.0 5.0 17 162 r 0.924 1 3 cbr 500 ------- 1 1.0 6.0 85 155 + 0.924 3 4 cbr 500 ------- 1 1.0 6.0 85 155 - 0.9256 3 4 cbr 1000 ------- 1 2.0 7.0 37 142 r 0.9276 3 4 cbr 500 ------- 1 1.0 6.0 73 132 + 0.9276 4 6 cbr 500 ------- 1 1.0 6.0 73 132 - 0.9276 4 6 cbr 500 ------- 1 1.0 6.0 73 132 r 0.928 2 3 cbr 1000 ------- 1 2.0 7.0 40 154 + 0.928 3 4 cbr 1000 ------- 1 2.0 7.0 40 154 r 0.9292 4 5 tcp 1000 ------- 0 0.0 5.0 15 127 + 0.9292 5 4 ack 40 ------- 0 5.0 0.0 15 163 - 0.9292 5 4 ack 40 ------- 0 5.0 0.0 15 163 + 0.93 1 3 cbr 500 ------- 1 1.0 6.0 88 164 - 0.93 1 3 cbr 500 ------- 1 1.0 6.0 88 164 r 0.933248 0 3 tcp 1000 ------- 0 0.0 5.0 16 158 + 0.933248 3 4 tcp 1000 ------- 0 0.0 5.0 16 158 - 0.9336 3 4 cbr 500 ------- 1 1.0 6.0 80 144 r 0.934 1 3 cbr 500 ------- 1 1.0 6.0 86 157 + 0.934 3 4 cbr 500 ------- 1 1.0 6.0 86 157 r 0.935584 4 3 ack 40 ------- 0 5.0 0.0 11 148 + 0.935584 3 0 ack 40 ------- 0 5.0 0.0 11 148 - 0.935584 3 0 ack 40 ------- 0 5.0 0.0 11 148 r 0.9356 3 4 cbr 1000 ------- 1 2.0 7.0 34 131 + 0.9356 4 7 cbr 1000 ------- 1 2.0 7.0 34 131 - 0.9356 4 7 cbr 1000 ------- 1 2.0 7.0 34 131 r 0.9356 4 6 cbr 500 ------- 1 1.0 6.0 71 129 r 0.937264 5 4 ack 40 ------- 0 5.0 0.0 14 159 + 0.937264 4 3 ack 40 ------- 0 5.0 0.0 14 159 - 0.937264 4 3 ack 40 ------- 0 5.0 0.0 14 159 - 0.9376 3 4 cbr 500 ------- 1 1.0 6.0 81 147 r 0.9396 3 4 cbr 500 ------- 1 1.0 6.0 74 133 + 0.9396 4 6 cbr 500 ------- 1 1.0 6.0 74 133 - 0.9396 4 6 cbr 500 ------- 1 1.0 6.0 74 133 + 0.94 2 3 cbr 1000 ------- 1 2.0 7.0 42 165 - 0.94 2 3 cbr 1000 ------- 1 2.0 7.0 42 165 + 0.94 1 3 cbr 500 ------- 1 1.0 6.0 89 166 - 0.94 1 3 cbr 500 ------- 1 1.0 6.0 89 166 - 0.9416 3 4 cbr 1000 ------- 1 2.0 7.0 38 146 r 0.9436 3 4 cbr 500 ------- 1 1.0 6.0 75 135 + 0.9436 4 6 cbr 500 ------- 1 1.0 6.0 75 135 - 0.9436 4 6 cbr 500 ------- 1 1.0 6.0 75 135 r 0.943648 3 0 ack 40 ------- 0 5.0 0.0 10 145 + 0.943648 0 3 tcp 1000 ------- 0 0.0 5.0 18 167 - 0.943648 0 3 tcp 1000 ------- 0 0.0 5.0 18 167 r 0.944 1 3 cbr 500 ------- 1 1.0 6.0 87 161 + 0.944 3 4 cbr 500 ------- 1 1.0 6.0 87 161 r 0.945248 0 3 tcp 1000 ------- 0 0.0 5.0 17 162 + 0.945248 3 4 tcp 1000 ------- 0 0.0 5.0 17 162 r 0.9476 4 7 cbr 1000 ------- 1 2.0 7.0 33 128 r 0.9476 4 6 cbr 500 ------- 1 1.0 6.0 72 130 r 0.948 2 3 cbr 1000 ------- 1 2.0 7.0 41 160 + 0.948 3 4 cbr 1000 ------- 1 2.0 7.0 41 160 r 0.949264 5 4 ack 40 ------- 0 5.0 0.0 15 163 + 0.949264 4 3 ack 40 ------- 0 5.0 0.0 15 163 - 0.949264 4 3 ack 40 ------- 0 5.0 0.0 15 163 - 0.9496 3 4 cbr 500 ------- 1 1.0 6.0 82 149 + 0.95 1 3 cbr 500 ------- 1 1.0 6.0 90 168 - 0.95 1 3 cbr 500 ------- 1 1.0 6.0 90 168 r 0.9516 3 4 cbr 1000 ------- 1 2.0 7.0 35 134 + 0.9516 4 7 cbr 1000 ------- 1 2.0 7.0 35 134 - 0.9516 4 7 cbr 1000 ------- 1 2.0 7.0 35 134 r 0.9516 4 6 cbr 500 ------- 1 1.0 6.0 73 132 - 0.9536 3 4 cbr 500 ------- 1 1.0 6.0 83 151 r 0.954 1 3 cbr 500 ------- 1 1.0 6.0 88 164 + 0.954 3 4 cbr 500 ------- 1 1.0 6.0 88 164 r 0.9556 3 4 cbr 500 ------- 1 1.0 6.0 76 136 + 0.9556 4 6 cbr 500 ------- 1 1.0 6.0 76 136 - 0.9556 4 6 cbr 500 ------- 1 1.0 6.0 76 136 r 0.955648 3 0 ack 40 ------- 0 5.0 0.0 11 148 + 0.955648 0 3 tcp 1000 ------- 0 0.0 5.0 19 169 - 0.955648 0 3 tcp 1000 ------- 0 0.0 5.0 19 169 - 0.9576 3 4 cbr 1000 ------- 1 2.0 7.0 39 150 r 0.959584 4 3 ack 40 ------- 0 5.0 0.0 12 152 + 0.959584 3 0 ack 40 ------- 0 5.0 0.0 12 152 - 0.959584 3 0 ack 40 ------- 0 5.0 0.0 12 152 r 0.9596 3 4 cbr 500 ------- 1 1.0 6.0 77 138 + 0.9596 4 6 cbr 500 ------- 1 1.0 6.0 77 138 - 0.9596 4 6 cbr 500 ------- 1 1.0 6.0 77 138 + 0.96 2 3 cbr 1000 ------- 1 2.0 7.0 43 170 - 0.96 2 3 cbr 1000 ------- 1 2.0 7.0 43 170 + 0.96 1 3 cbr 500 ------- 1 1.0 6.0 91 171 - 0.96 1 3 cbr 500 ------- 1 1.0 6.0 91 171 r 0.9636 4 7 cbr 1000 ------- 1 2.0 7.0 34 131 r 0.9636 4 6 cbr 500 ------- 1 1.0 6.0 74 133 r 0.964 1 3 cbr 500 ------- 1 1.0 6.0 89 166 + 0.964 3 4 cbr 500 ------- 1 1.0 6.0 89 166 r 0.965248 0 3 tcp 1000 ------- 0 0.0 5.0 18 167 + 0.965248 3 4 tcp 1000 ------- 0 0.0 5.0 18 167 - 0.9656 3 4 cbr 500 ------- 1 1.0 6.0 84 153 r 0.9676 3 4 cbr 1000 ------- 1 2.0 7.0 36 137 + 0.9676 4 7 cbr 1000 ------- 1 2.0 7.0 36 137 - 0.9676 4 7 cbr 1000 ------- 1 2.0 7.0 36 137 r 0.9676 4 6 cbr 500 ------- 1 1.0 6.0 75 135 r 0.968 2 3 cbr 1000 ------- 1 2.0 7.0 42 165 + 0.968 3 4 cbr 1000 ------- 1 2.0 7.0 42 165 - 0.9696 3 4 cbr 500 ------- 1 1.0 6.0 85 155 + 0.97 1 3 cbr 500 ------- 1 1.0 6.0 92 172 - 0.97 1 3 cbr 500 ------- 1 1.0 6.0 92 172 r 0.971584 4 3 ack 40 ------- 0 5.0 0.0 13 156 + 0.971584 3 0 ack 40 ------- 0 5.0 0.0 13 156 - 0.971584 3 0 ack 40 ------- 0 5.0 0.0 13 156 r 0.9716 3 4 cbr 500 ------- 1 1.0 6.0 78 140 + 0.9716 4 6 cbr 500 ------- 1 1.0 6.0 78 140 - 0.9716 4 6 cbr 500 ------- 1 1.0 6.0 78 140 - 0.9736 3 4 cbr 1000 ------- 1 2.0 7.0 40 154 r 0.974 1 3 cbr 500 ------- 1 1.0 6.0 90 168 + 0.974 3 4 cbr 500 ------- 1 1.0 6.0 90 168 r 0.9756 3 4 cbr 500 ------- 1 1.0 6.0 79 143 + 0.9756 4 6 cbr 500 ------- 1 1.0 6.0 79 143 - 0.9756 4 6 cbr 500 ------- 1 1.0 6.0 79 143 r 0.977248 0 3 tcp 1000 ------- 0 0.0 5.0 19 169 + 0.977248 3 4 tcp 1000 ------- 0 0.0 5.0 19 169 r 0.9796 4 7 cbr 1000 ------- 1 2.0 7.0 35 134 r 0.9796 4 6 cbr 500 ------- 1 1.0 6.0 76 136 r 0.979648 3 0 ack 40 ------- 0 5.0 0.0 12 152 + 0.979648 0 3 tcp 1000 ------- 0 0.0 5.0 20 173 - 0.979648 0 3 tcp 1000 ------- 0 0.0 5.0 20 173 + 0.98 2 3 cbr 1000 ------- 1 2.0 7.0 44 174 - 0.98 2 3 cbr 1000 ------- 1 2.0 7.0 44 174 + 0.98 1 3 cbr 500 ------- 1 1.0 6.0 93 175 - 0.98 1 3 cbr 500 ------- 1 1.0 6.0 93 175 - 0.9816 3 4 tcp 1000 ------- 0 0.0 5.0 16 158 r 0.9836 3 4 cbr 1000 ------- 1 2.0 7.0 37 142 + 0.9836 4 7 cbr 1000 ------- 1 2.0 7.0 37 142 - 0.9836 4 7 cbr 1000 ------- 1 2.0 7.0 37 142 r 0.9836 4 6 cbr 500 ------- 1 1.0 6.0 77 138 r 0.984 1 3 cbr 500 ------- 1 1.0 6.0 91 171 + 0.984 3 4 cbr 500 ------- 1 1.0 6.0 91 171 r 0.987584 4 3 ack 40 ------- 0 5.0 0.0 14 159 + 0.987584 3 0 ack 40 ------- 0 5.0 0.0 14 159 - 0.987584 3 0 ack 40 ------- 0 5.0 0.0 14 159 r 0.9876 3 4 cbr 500 ------- 1 1.0 6.0 80 144 + 0.9876 4 6 cbr 500 ------- 1 1.0 6.0 80 144 - 0.9876 4 6 cbr 500 ------- 1 1.0 6.0 80 144 r 0.988 2 3 cbr 1000 ------- 1 2.0 7.0 43 170 + 0.988 3 4 cbr 1000 ------- 1 2.0 7.0 43 170 - 0.9896 3 4 cbr 500 ------- 1 1.0 6.0 86 157 + 0.99 1 3 cbr 500 ------- 1 1.0 6.0 94 176 - 0.99 1 3 cbr 500 ------- 1 1.0 6.0 94 176 r 0.9916 3 4 cbr 500 ------- 1 1.0 6.0 81 147 + 0.9916 4 6 cbr 500 ------- 1 1.0 6.0 81 147 - 0.9916 4 6 cbr 500 ------- 1 1.0 6.0 81 147 r 0.991648 3 0 ack 40 ------- 0 5.0 0.0 13 156 + 0.991648 0 3 tcp 1000 ------- 0 0.0 5.0 21 177 - 0.991648 0 3 tcp 1000 ------- 0 0.0 5.0 21 177 - 0.9936 3 4 cbr 500 ------- 1 1.0 6.0 87 161 r 0.994 1 3 cbr 500 ------- 1 1.0 6.0 92 172 + 0.994 3 4 cbr 500 ------- 1 1.0 6.0 92 172 r 0.9956 4 7 cbr 1000 ------- 1 2.0 7.0 36 137 r 0.9956 4 6 cbr 500 ------- 1 1.0 6.0 78 140 - 0.9976 3 4 tcp 1000 ------- 0 0.0 5.0 17 162 r 0.999584 4 3 ack 40 ------- 0 5.0 0.0 15 163 + 0.999584 3 0 ack 40 ------- 0 5.0 0.0 15 163 - 0.999584 3 0 ack 40 ------- 0 5.0 0.0 15 163 r 0.9996 3 4 cbr 1000 ------- 1 2.0 7.0 38 146 + 0.9996 4 7 cbr 1000 ------- 1 2.0 7.0 38 146 - 0.9996 4 7 cbr 1000 ------- 1 2.0 7.0 38 146 r 0.9996 4 6 cbr 500 ------- 1 1.0 6.0 79 143 + 1 2 3 cbr 1000 ------- 1 2.0 7.0 45 178 - 1 2 3 cbr 1000 ------- 1 2.0 7.0 45 178 + 1 1 3 cbr 500 ------- 1 1.0 6.0 95 179 - 1 1 3 cbr 500 ------- 1 1.0 6.0 95 179 r 1.00125 0 3 tcp 1000 ------- 0 0.0 5.0 20 173 + 1.00125 3 4 tcp 1000 ------- 0 0.0 5.0 20 173 r 1.0036 3 4 cbr 500 ------- 1 1.0 6.0 82 149 + 1.0036 4 6 cbr 500 ------- 1 1.0 6.0 82 149 - 1.0036 4 6 cbr 500 ------- 1 1.0 6.0 82 149 r 1.004 1 3 cbr 500 ------- 1 1.0 6.0 93 175 + 1.004 3 4 cbr 500 ------- 1 1.0 6.0 93 175 - 1.0056 3 4 cbr 1000 ------- 1 2.0 7.0 41 160 r 1.0076 3 4 cbr 500 ------- 1 1.0 6.0 83 151 + 1.0076 4 6 cbr 500 ------- 1 1.0 6.0 83 151 - 1.0076 4 6 cbr 500 ------- 1 1.0 6.0 83 151 r 1.00765 3 0 ack 40 ------- 0 5.0 0.0 14 159 + 1.00765 0 3 tcp 1000 ------- 0 0.0 5.0 22 180 - 1.00765 0 3 tcp 1000 ------- 0 0.0 5.0 22 180 r 1.008 2 3 cbr 1000 ------- 1 2.0 7.0 44 174 + 1.008 3 4 cbr 1000 ------- 1 2.0 7.0 44 174 + 1.01 1 3 cbr 500 ------- 1 1.0 6.0 96 181 - 1.01 1 3 cbr 500 ------- 1 1.0 6.0 96 181 r 1.0116 4 7 cbr 1000 ------- 1 2.0 7.0 37 142 r 1.0116 4 6 cbr 500 ------- 1 1.0 6.0 80 144 r 1.01325 0 3 tcp 1000 ------- 0 0.0 5.0 21 177 + 1.01325 3 4 tcp 1000 ------- 0 0.0 5.0 21 177 - 1.0136 3 4 cbr 500 ------- 1 1.0 6.0 88 164 r 1.014 1 3 cbr 500 ------- 1 1.0 6.0 94 176 + 1.014 3 4 cbr 500 ------- 1 1.0 6.0 94 176 r 1.0156 3 4 cbr 1000 ------- 1 2.0 7.0 39 150 + 1.0156 4 7 cbr 1000 ------- 1 2.0 7.0 39 150 - 1.0156 4 7 cbr 1000 ------- 1 2.0 7.0 39 150 r 1.0156 4 6 cbr 500 ------- 1 1.0 6.0 81 147 - 1.0176 3 4 cbr 500 ------- 1 1.0 6.0 89 166 r 1.0196 3 4 cbr 500 ------- 1 1.0 6.0 84 153 + 1.0196 4 6 cbr 500 ------- 1 1.0 6.0 84 153 - 1.0196 4 6 cbr 500 ------- 1 1.0 6.0 84 153 r 1.01965 3 0 ack 40 ------- 0 5.0 0.0 15 163 + 1.01965 0 3 tcp 1000 ------- 0 0.0 5.0 23 182 - 1.01965 0 3 tcp 1000 ------- 0 0.0 5.0 23 182 + 1.02 2 3 cbr 1000 ------- 1 2.0 7.0 46 183 - 1.02 2 3 cbr 1000 ------- 1 2.0 7.0 46 183 + 1.02 1 3 cbr 500 ------- 1 1.0 6.0 97 184 - 1.02 1 3 cbr 500 ------- 1 1.0 6.0 97 184 - 1.0216 3 4 tcp 1000 ------- 0 0.0 5.0 18 167 r 1.0236 3 4 cbr 500 ------- 1 1.0 6.0 85 155 + 1.0236 4 6 cbr 500 ------- 1 1.0 6.0 85 155 - 1.0236 4 6 cbr 500 ------- 1 1.0 6.0 85 155 r 1.024 1 3 cbr 500 ------- 1 1.0 6.0 95 179 + 1.024 3 4 cbr 500 ------- 1 1.0 6.0 95 179 r 1.0276 4 7 cbr 1000 ------- 1 2.0 7.0 38 146 r 1.0276 4 6 cbr 500 ------- 1 1.0 6.0 82 149 r 1.028 2 3 cbr 1000 ------- 1 2.0 7.0 45 178 + 1.028 3 4 cbr 1000 ------- 1 2.0 7.0 45 178 r 1.02925 0 3 tcp 1000 ------- 0 0.0 5.0 22 180 + 1.02925 3 4 tcp 1000 ------- 0 0.0 5.0 22 180 - 1.0296 3 4 cbr 1000 ------- 1 2.0 7.0 42 165 + 1.03 1 3 cbr 500 ------- 1 1.0 6.0 98 185 - 1.03 1 3 cbr 500 ------- 1 1.0 6.0 98 185 r 1.0316 3 4 cbr 1000 ------- 1 2.0 7.0 40 154 + 1.0316 4 7 cbr 1000 ------- 1 2.0 7.0 40 154 - 1.0316 4 7 cbr 1000 ------- 1 2.0 7.0 40 154 r 1.0316 4 6 cbr 500 ------- 1 1.0 6.0 83 151 r 1.034 1 3 cbr 500 ------- 1 1.0 6.0 96 181 + 1.034 3 4 cbr 500 ------- 1 1.0 6.0 96 181 - 1.0376 3 4 cbr 500 ------- 1 1.0 6.0 90 168 r 1.0396 3 4 tcp 1000 ------- 0 0.0 5.0 16 158 + 1.0396 4 5 tcp 1000 ------- 0 0.0 5.0 16 158 - 1.0396 4 5 tcp 1000 ------- 0 0.0 5.0 16 158 + 1.04 2 3 cbr 1000 ------- 1 2.0 7.0 47 186 - 1.04 2 3 cbr 1000 ------- 1 2.0 7.0 47 186 + 1.04 1 3 cbr 500 ------- 1 1.0 6.0 99 187 - 1.04 1 3 cbr 500 ------- 1 1.0 6.0 99 187 r 1.04125 0 3 tcp 1000 ------- 0 0.0 5.0 23 182 + 1.04125 3 4 tcp 1000 ------- 0 0.0 5.0 23 182 - 1.0416 3 4 tcp 1000 ------- 0 0.0 5.0 19 169 r 1.0436 3 4 cbr 500 ------- 1 1.0 6.0 86 157 + 1.0436 4 6 cbr 500 ------- 1 1.0 6.0 86 157 - 1.0436 4 6 cbr 500 ------- 1 1.0 6.0 86 157 r 1.0436 4 7 cbr 1000 ------- 1 2.0 7.0 39 150 r 1.0436 4 6 cbr 500 ------- 1 1.0 6.0 84 153 r 1.044 1 3 cbr 500 ------- 1 1.0 6.0 97 184 + 1.044 3 4 cbr 500 ------- 1 1.0 6.0 97 184 r 1.0476 3 4 cbr 500 ------- 1 1.0 6.0 87 161 + 1.0476 4 6 cbr 500 ------- 1 1.0 6.0 87 161 r 1.0476 4 6 cbr 500 ------- 1 1.0 6.0 85 155 - 1.0476 4 6 cbr 500 ------- 1 1.0 6.0 87 161 r 1.048 2 3 cbr 1000 ------- 1 2.0 7.0 46 183 + 1.048 3 4 cbr 1000 ------- 1 2.0 7.0 46 183 d 1.048 3 4 cbr 1000 ------- 1 2.0 7.0 46 183 - 1.0496 3 4 cbr 500 ------- 1 1.0 6.0 91 171 + 1.05 1 3 cbr 500 ------- 1 1.0 6.0 100 188 - 1.05 1 3 cbr 500 ------- 1 1.0 6.0 100 188 - 1.0536 3 4 cbr 1000 ------- 1 2.0 7.0 43 170 r 1.054 1 3 cbr 500 ------- 1 1.0 6.0 98 185 + 1.054 3 4 cbr 500 ------- 1 1.0 6.0 98 185 r 1.0556 3 4 tcp 1000 ------- 0 0.0 5.0 17 162 + 1.0556 4 5 tcp 1000 ------- 0 0.0 5.0 17 162 - 1.0556 4 5 tcp 1000 ------- 0 0.0 5.0 17 162 r 1.0596 4 7 cbr 1000 ------- 1 2.0 7.0 40 154 + 1.06 2 3 cbr 1000 ------- 1 2.0 7.0 48 189 - 1.06 2 3 cbr 1000 ------- 1 2.0 7.0 48 189 + 1.06 1 3 cbr 500 ------- 1 1.0 6.0 101 190 - 1.06 1 3 cbr 500 ------- 1 1.0 6.0 101 190 r 1.0612 4 5 tcp 1000 ------- 0 0.0 5.0 16 158 + 1.0612 5 4 ack 40 ------- 0 5.0 0.0 16 191 - 1.0612 5 4 ack 40 ------- 0 5.0 0.0 16 191 - 1.0616 3 4 cbr 500 ------- 1 1.0 6.0 92 172 r 1.0636 3 4 cbr 1000 ------- 1 2.0 7.0 41 160 + 1.0636 4 7 cbr 1000 ------- 1 2.0 7.0 41 160 - 1.0636 4 7 cbr 1000 ------- 1 2.0 7.0 41 160 r 1.064 1 3 cbr 500 ------- 1 1.0 6.0 99 187 + 1.064 3 4 cbr 500 ------- 1 1.0 6.0 99 187 - 1.0656 3 4 tcp 1000 ------- 0 0.0 5.0 20 173 r 1.0676 3 4 cbr 500 ------- 1 1.0 6.0 88 164 + 1.0676 4 6 cbr 500 ------- 1 1.0 6.0 88 164 - 1.0676 4 6 cbr 500 ------- 1 1.0 6.0 88 164 r 1.0676 4 6 cbr 500 ------- 1 1.0 6.0 86 157 r 1.068 2 3 cbr 1000 ------- 1 2.0 7.0 47 186 + 1.068 3 4 cbr 1000 ------- 1 2.0 7.0 47 186 + 1.07 1 3 cbr 500 ------- 1 1.0 6.0 102 192 - 1.07 1 3 cbr 500 ------- 1 1.0 6.0 102 192 r 1.0716 3 4 cbr 500 ------- 1 1.0 6.0 89 166 + 1.0716 4 6 cbr 500 ------- 1 1.0 6.0 89 166 r 1.0716 4 6 cbr 500 ------- 1 1.0 6.0 87 161 - 1.0716 4 6 cbr 500 ------- 1 1.0 6.0 89 166 - 1.0736 3 4 cbr 500 ------- 1 1.0 6.0 93 175 r 1.074 1 3 cbr 500 ------- 1 1.0 6.0 100 188 + 1.074 3 4 cbr 500 ------- 1 1.0 6.0 100 188 r 1.0772 4 5 tcp 1000 ------- 0 0.0 5.0 17 162 + 1.0772 5 4 ack 40 ------- 0 5.0 0.0 17 193 - 1.0772 5 4 ack 40 ------- 0 5.0 0.0 17 193 - 1.0776 3 4 cbr 1000 ------- 1 2.0 7.0 44 174 r 1.0796 3 4 tcp 1000 ------- 0 0.0 5.0 18 167 + 1.0796 4 5 tcp 1000 ------- 0 0.0 5.0 18 167 - 1.0796 4 5 tcp 1000 ------- 0 0.0 5.0 18 167 + 1.08 2 3 cbr 1000 ------- 1 2.0 7.0 49 194 - 1.08 2 3 cbr 1000 ------- 1 2.0 7.0 49 194 + 1.08 1 3 cbr 500 ------- 1 1.0 6.0 103 195 - 1.08 1 3 cbr 500 ------- 1 1.0 6.0 103 195 r 1.08126 5 4 ack 40 ------- 0 5.0 0.0 16 191 + 1.08126 4 3 ack 40 ------- 0 5.0 0.0 16 191 - 1.08126 4 3 ack 40 ------- 0 5.0 0.0 16 191 r 1.084 1 3 cbr 500 ------- 1 1.0 6.0 101 190 + 1.084 3 4 cbr 500 ------- 1 1.0 6.0 101 190 - 1.0856 3 4 tcp 1000 ------- 0 0.0 5.0 21 177 r 1.0876 3 4 cbr 1000 ------- 1 2.0 7.0 42 165 + 1.0876 4 7 cbr 1000 ------- 1 2.0 7.0 42 165 - 1.0876 4 7 cbr 1000 ------- 1 2.0 7.0 42 165 r 1.088 2 3 cbr 1000 ------- 1 2.0 7.0 48 189 + 1.088 3 4 cbr 1000 ------- 1 2.0 7.0 48 189 + 1.09 1 3 cbr 500 ------- 1 1.0 6.0 104 196 - 1.09 1 3 cbr 500 ------- 1 1.0 6.0 104 196 r 1.0916 3 4 cbr 500 ------- 1 1.0 6.0 90 168 + 1.0916 4 6 cbr 500 ------- 1 1.0 6.0 90 168 - 1.0916 4 6 cbr 500 ------- 1 1.0 6.0 90 168 r 1.0916 4 7 cbr 1000 ------- 1 2.0 7.0 41 160 r 1.0916 4 6 cbr 500 ------- 1 1.0 6.0 88 164 - 1.0936 3 4 cbr 500 ------- 1 1.0 6.0 94 176 r 1.094 1 3 cbr 500 ------- 1 1.0 6.0 102 192 + 1.094 3 4 cbr 500 ------- 1 1.0 6.0 102 192 r 1.0956 4 6 cbr 500 ------- 1 1.0 6.0 89 166 r 1.09726 5 4 ack 40 ------- 0 5.0 0.0 17 193 + 1.09726 4 3 ack 40 ------- 0 5.0 0.0 17 193 - 1.09726 4 3 ack 40 ------- 0 5.0 0.0 17 193 - 1.0976 3 4 cbr 500 ------- 1 1.0 6.0 95 179 r 1.0996 3 4 tcp 1000 ------- 0 0.0 5.0 19 169 + 1.0996 4 5 tcp 1000 ------- 0 0.0 5.0 19 169 - 1.0996 4 5 tcp 1000 ------- 0 0.0 5.0 19 169 + 1.1 2 3 cbr 1000 ------- 1 2.0 7.0 50 197 - 1.1 2 3 cbr 1000 ------- 1 2.0 7.0 50 197 + 1.1 1 3 cbr 500 ------- 1 1.0 6.0 105 198 - 1.1 1 3 cbr 500 ------- 1 1.0 6.0 105 198 r 1.1012 4 5 tcp 1000 ------- 0 0.0 5.0 18 167 + 1.1012 5 4 ack 40 ------- 0 5.0 0.0 18 199 - 1.1012 5 4 ack 40 ------- 0 5.0 0.0 18 199 - 1.1016 3 4 cbr 1000 ------- 1 2.0 7.0 45 178 r 1.1036 3 4 cbr 500 ------- 1 1.0 6.0 91 171 + 1.1036 4 6 cbr 500 ------- 1 1.0 6.0 91 171 - 1.1036 4 6 cbr 500 ------- 1 1.0 6.0 91 171 r 1.104 1 3 cbr 500 ------- 1 1.0 6.0 103 195 + 1.104 3 4 cbr 500 ------- 1 1.0 6.0 103 195 r 1.108 2 3 cbr 1000 ------- 1 2.0 7.0 49 194 + 1.108 3 4 cbr 1000 ------- 1 2.0 7.0 49 194 - 1.1096 3 4 tcp 1000 ------- 0 0.0 5.0 22 180 + 1.11 1 3 cbr 500 ------- 1 1.0 6.0 106 200 - 1.11 1 3 cbr 500 ------- 1 1.0 6.0 106 200 r 1.1116 3 4 cbr 1000 ------- 1 2.0 7.0 43 170 + 1.1116 4 7 cbr 1000 ------- 1 2.0 7.0 43 170 - 1.1116 4 7 cbr 1000 ------- 1 2.0 7.0 43 170 r 1.114 1 3 cbr 500 ------- 1 1.0 6.0 104 196 + 1.114 3 4 cbr 500 ------- 1 1.0 6.0 104 196 r 1.1156 3 4 cbr 500 ------- 1 1.0 6.0 92 172 + 1.1156 4 6 cbr 500 ------- 1 1.0 6.0 92 172 - 1.1156 4 6 cbr 500 ------- 1 1.0 6.0 92 172 r 1.1156 4 7 cbr 1000 ------- 1 2.0 7.0 42 165 r 1.1156 4 6 cbr 500 ------- 1 1.0 6.0 90 168 - 1.1176 3 4 cbr 500 ------- 1 1.0 6.0 96 181 + 1.12 2 3 cbr 1000 ------- 1 2.0 7.0 51 201 - 1.12 2 3 cbr 1000 ------- 1 2.0 7.0 51 201 + 1.12 1 3 cbr 500 ------- 1 1.0 6.0 107 202 - 1.12 1 3 cbr 500 ------- 1 1.0 6.0 107 202 r 1.1212 4 5 tcp 1000 ------- 0 0.0 5.0 19 169 + 1.1212 5 4 ack 40 ------- 0 5.0 0.0 19 203 - 1.1212 5 4 ack 40 ------- 0 5.0 0.0 19 203 r 1.12126 5 4 ack 40 ------- 0 5.0 0.0 18 199 + 1.12126 4 3 ack 40 ------- 0 5.0 0.0 18 199 - 1.12126 4 3 ack 40 ------- 0 5.0 0.0 18 199 - 1.1216 3 4 tcp 1000 ------- 0 0.0 5.0 23 182 r 1.1236 3 4 tcp 1000 ------- 0 0.0 5.0 20 173 + 1.1236 4 5 tcp 1000 ------- 0 0.0 5.0 20 173 - 1.1236 4 5 tcp 1000 ------- 0 0.0 5.0 20 173 r 1.124 1 3 cbr 500 ------- 1 1.0 6.0 105 198 + 1.124 3 4 cbr 500 ------- 1 1.0 6.0 105 198 r 1.1276 3 4 cbr 500 ------- 1 1.0 6.0 93 175 + 1.1276 4 6 cbr 500 ------- 1 1.0 6.0 93 175 - 1.1276 4 6 cbr 500 ------- 1 1.0 6.0 93 175 r 1.1276 4 6 cbr 500 ------- 1 1.0 6.0 91 171 r 1.128 2 3 cbr 1000 ------- 1 2.0 7.0 50 197 + 1.128 3 4 cbr 1000 ------- 1 2.0 7.0 50 197 - 1.1296 3 4 cbr 500 ------- 1 1.0 6.0 97 184 + 1.13 1 3 cbr 500 ------- 1 1.0 6.0 108 204 - 1.13 1 3 cbr 500 ------- 1 1.0 6.0 108 204 r 1.13158 4 3 ack 40 ------- 0 5.0 0.0 16 191 + 1.13158 3 0 ack 40 ------- 0 5.0 0.0 16 191 - 1.13158 3 0 ack 40 ------- 0 5.0 0.0 16 191 - 1.1336 3 4 cbr 500 ------- 1 1.0 6.0 98 185 r 1.134 1 3 cbr 500 ------- 1 1.0 6.0 106 200 + 1.134 3 4 cbr 500 ------- 1 1.0 6.0 106 200 r 1.1356 3 4 cbr 1000 ------- 1 2.0 7.0 44 174 + 1.1356 4 7 cbr 1000 ------- 1 2.0 7.0 44 174 - 1.1356 4 7 cbr 1000 ------- 1 2.0 7.0 44 174 - 1.1376 3 4 cbr 500 ------- 1 1.0 6.0 99 187 r 1.1396 4 7 cbr 1000 ------- 1 2.0 7.0 43 170 r 1.1396 4 6 cbr 500 ------- 1 1.0 6.0 92 172 + 1.14 2 3 cbr 1000 ------- 1 2.0 7.0 52 205 - 1.14 2 3 cbr 1000 ------- 1 2.0 7.0 52 205 + 1.14 1 3 cbr 500 ------- 1 1.0 6.0 109 206 - 1.14 1 3 cbr 500 ------- 1 1.0 6.0 109 206 r 1.14126 5 4 ack 40 ------- 0 5.0 0.0 19 203 + 1.14126 4 3 ack 40 ------- 0 5.0 0.0 19 203 - 1.14126 4 3 ack 40 ------- 0 5.0 0.0 19 203 - 1.1416 3 4 cbr 1000 ------- 1 2.0 7.0 47 186 r 1.1436 3 4 tcp 1000 ------- 0 0.0 5.0 21 177 + 1.1436 4 5 tcp 1000 ------- 0 0.0 5.0 21 177 - 1.1436 4 5 tcp 1000 ------- 0 0.0 5.0 21 177 r 1.144 1 3 cbr 500 ------- 1 1.0 6.0 107 202 + 1.144 3 4 cbr 500 ------- 1 1.0 6.0 107 202 r 1.1452 4 5 tcp 1000 ------- 0 0.0 5.0 20 173 + 1.1452 5 4 ack 40 ------- 0 5.0 0.0 20 207 - 1.1452 5 4 ack 40 ------- 0 5.0 0.0 20 207 r 1.14758 4 3 ack 40 ------- 0 5.0 0.0 17 193 + 1.14758 3 0 ack 40 ------- 0 5.0 0.0 17 193 - 1.14758 3 0 ack 40 ------- 0 5.0 0.0 17 193 r 1.1476 3 4 cbr 500 ------- 1 1.0 6.0 94 176 + 1.1476 4 6 cbr 500 ------- 1 1.0 6.0 94 176 - 1.1476 4 6 cbr 500 ------- 1 1.0 6.0 94 176 r 1.148 2 3 cbr 1000 ------- 1 2.0 7.0 51 201 + 1.148 3 4 cbr 1000 ------- 1 2.0 7.0 51 201 - 1.1496 3 4 cbr 500 ------- 1 1.0 6.0 100 188 + 1.15 1 3 cbr 500 ------- 1 1.0 6.0 110 208 - 1.15 1 3 cbr 500 ------- 1 1.0 6.0 110 208 r 1.1516 3 4 cbr 500 ------- 1 1.0 6.0 95 179 + 1.1516 4 6 cbr 500 ------- 1 1.0 6.0 95 179 r 1.1516 4 6 cbr 500 ------- 1 1.0 6.0 93 175 - 1.1516 4 6 cbr 500 ------- 1 1.0 6.0 95 179 r 1.15165 3 0 ack 40 ------- 0 5.0 0.0 16 191 + 1.15165 0 3 tcp 1000 ------- 0 0.0 5.0 24 209 - 1.15165 0 3 tcp 1000 ------- 0 0.0 5.0 24 209 - 1.1536 3 4 cbr 500 ------- 1 1.0 6.0 101 190 r 1.154 1 3 cbr 500 ------- 1 1.0 6.0 108 204 + 1.154 3 4 cbr 500 ------- 1 1.0 6.0 108 204 - 1.1576 3 4 cbr 1000 ------- 1 2.0 7.0 48 189 r 1.1596 3 4 cbr 1000 ------- 1 2.0 7.0 45 178 + 1.1596 4 7 cbr 1000 ------- 1 2.0 7.0 45 178 - 1.1596 4 7 cbr 1000 ------- 1 2.0 7.0 45 178 + 1.16 2 3 cbr 1000 ------- 1 2.0 7.0 53 210 - 1.16 2 3 cbr 1000 ------- 1 2.0 7.0 53 210 + 1.16 1 3 cbr 500 ------- 1 1.0 6.0 111 211 - 1.16 1 3 cbr 500 ------- 1 1.0 6.0 111 211 r 1.1636 4 7 cbr 1000 ------- 1 2.0 7.0 44 174 r 1.164 1 3 cbr 500 ------- 1 1.0 6.0 109 206 + 1.164 3 4 cbr 500 ------- 1 1.0 6.0 109 206 r 1.1652 4 5 tcp 1000 ------- 0 0.0 5.0 21 177 + 1.1652 5 4 ack 40 ------- 0 5.0 0.0 21 212 - 1.1652 5 4 ack 40 ------- 0 5.0 0.0 21 212 r 1.16526 5 4 ack 40 ------- 0 5.0 0.0 20 207 + 1.16526 4 3 ack 40 ------- 0 5.0 0.0 20 207 - 1.16526 4 3 ack 40 ------- 0 5.0 0.0 20 207 - 1.1656 3 4 cbr 500 ------- 1 1.0 6.0 102 192 r 1.1676 3 4 tcp 1000 ------- 0 0.0 5.0 22 180 + 1.1676 4 5 tcp 1000 ------- 0 0.0 5.0 22 180 - 1.1676 4 5 tcp 1000 ------- 0 0.0 5.0 22 180 r 1.16765 3 0 ack 40 ------- 0 5.0 0.0 17 193 + 1.16765 0 3 tcp 1000 ------- 0 0.0 5.0 25 213 - 1.16765 0 3 tcp 1000 ------- 0 0.0 5.0 25 213 r 1.168 2 3 cbr 1000 ------- 1 2.0 7.0 52 205 + 1.168 3 4 cbr 1000 ------- 1 2.0 7.0 52 205 - 1.1696 3 4 cbr 500 ------- 1 1.0 6.0 103 195 + 1.17 1 3 cbr 500 ------- 1 1.0 6.0 112 214 - 1.17 1 3 cbr 500 ------- 1 1.0 6.0 112 214 r 1.17158 4 3 ack 40 ------- 0 5.0 0.0 18 199 + 1.17158 3 0 ack 40 ------- 0 5.0 0.0 18 199 - 1.17158 3 0 ack 40 ------- 0 5.0 0.0 18 199 r 1.1716 3 4 cbr 500 ------- 1 1.0 6.0 96 181 + 1.1716 4 6 cbr 500 ------- 1 1.0 6.0 96 181 - 1.1716 4 6 cbr 500 ------- 1 1.0 6.0 96 181 r 1.1716 4 6 cbr 500 ------- 1 1.0 6.0 94 176 r 1.17325 0 3 tcp 1000 ------- 0 0.0 5.0 24 209 + 1.17325 3 4 tcp 1000 ------- 0 0.0 5.0 24 209 - 1.1736 3 4 cbr 1000 ------- 1 2.0 7.0 49 194 r 1.174 1 3 cbr 500 ------- 1 1.0 6.0 110 208 + 1.174 3 4 cbr 500 ------- 1 1.0 6.0 110 208 r 1.1756 4 6 cbr 500 ------- 1 1.0 6.0 95 179 r 1.1796 3 4 tcp 1000 ------- 0 0.0 5.0 23 182 + 1.1796 4 5 tcp 1000 ------- 0 0.0 5.0 23 182 - 1.1796 4 5 tcp 1000 ------- 0 0.0 5.0 23 182 + 1.18 2 3 cbr 1000 ------- 1 2.0 7.0 54 215 - 1.18 2 3 cbr 1000 ------- 1 2.0 7.0 54 215 + 1.18 1 3 cbr 500 ------- 1 1.0 6.0 113 216 - 1.18 1 3 cbr 500 ------- 1 1.0 6.0 113 216 - 1.1816 3 4 cbr 500 ------- 1 1.0 6.0 104 196 r 1.1836 3 4 cbr 500 ------- 1 1.0 6.0 97 184 + 1.1836 4 6 cbr 500 ------- 1 1.0 6.0 97 184 - 1.1836 4 6 cbr 500 ------- 1 1.0 6.0 97 184 r 1.184 1 3 cbr 500 ------- 1 1.0 6.0 111 211 + 1.184 3 4 cbr 500 ------- 1 1.0 6.0 111 211 r 1.18526 5 4 ack 40 ------- 0 5.0 0.0 21 212 + 1.18526 4 3 ack 40 ------- 0 5.0 0.0 21 212 - 1.18526 4 3 ack 40 ------- 0 5.0 0.0 21 212 - 1.1856 3 4 cbr 500 ------- 1 1.0 6.0 105 198 r 1.1876 3 4 cbr 500 ------- 1 1.0 6.0 98 185 + 1.1876 4 6 cbr 500 ------- 1 1.0 6.0 98 185 r 1.1876 4 7 cbr 1000 ------- 1 2.0 7.0 45 178 - 1.1876 4 6 cbr 500 ------- 1 1.0 6.0 98 185 r 1.188 2 3 cbr 1000 ------- 1 2.0 7.0 53 210 + 1.188 3 4 cbr 1000 ------- 1 2.0 7.0 53 210 r 1.1892 4 5 tcp 1000 ------- 0 0.0 5.0 22 180 + 1.1892 5 4 ack 40 ------- 0 5.0 0.0 22 217 - 1.1892 5 4 ack 40 ------- 0 5.0 0.0 22 217 r 1.18925 0 3 tcp 1000 ------- 0 0.0 5.0 25 213 + 1.18925 3 4 tcp 1000 ------- 0 0.0 5.0 25 213 - 1.1896 3 4 cbr 1000 ------- 1 2.0 7.0 50 197 + 1.19 1 3 cbr 500 ------- 1 1.0 6.0 114 218 - 1.19 1 3 cbr 500 ------- 1 1.0 6.0 114 218 r 1.19158 4 3 ack 40 ------- 0 5.0 0.0 19 203 + 1.19158 3 0 ack 40 ------- 0 5.0 0.0 19 203 - 1.19158 3 0 ack 40 ------- 0 5.0 0.0 19 203 r 1.1916 3 4 cbr 500 ------- 1 1.0 6.0 99 187 + 1.1916 4 6 cbr 500 ------- 1 1.0 6.0 99 187 - 1.1916 4 6 cbr 500 ------- 1 1.0 6.0 99 187 r 1.19165 3 0 ack 40 ------- 0 5.0 0.0 18 199 + 1.19165 0 3 tcp 1000 ------- 0 0.0 5.0 26 219 - 1.19165 0 3 tcp 1000 ------- 0 0.0 5.0 26 219 r 1.194 1 3 cbr 500 ------- 1 1.0 6.0 112 214 + 1.194 3 4 cbr 500 ------- 1 1.0 6.0 112 214 r 1.1956 4 6 cbr 500 ------- 1 1.0 6.0 96 181 - 1.1976 3 4 cbr 500 ------- 1 1.0 6.0 106 200 r 1.1996 3 4 cbr 1000 ------- 1 2.0 7.0 47 186 + 1.1996 4 7 cbr 1000 ------- 1 2.0 7.0 47 186 - 1.1996 4 7 cbr 1000 ------- 1 2.0 7.0 47 186 + 1.2 2 3 cbr 1000 ------- 1 2.0 7.0 55 220 - 1.2 2 3 cbr 1000 ------- 1 2.0 7.0 55 220 + 1.2 1 3 cbr 500 ------- 1 1.0 6.0 115 221 - 1.2 1 3 cbr 500 ------- 1 1.0 6.0 115 221 r 1.2012 4 5 tcp 1000 ------- 0 0.0 5.0 23 182 + 1.2012 5 4 ack 40 ------- 0 5.0 0.0 23 222 - 1.2012 5 4 ack 40 ------- 0 5.0 0.0 23 222 - 1.2016 3 4 cbr 500 ------- 1 1.0 6.0 107 202 r 1.2036 3 4 cbr 500 ------- 1 1.0 6.0 100 188 + 1.2036 4 6 cbr 500 ------- 1 1.0 6.0 100 188 - 1.2036 4 6 cbr 500 ------- 1 1.0 6.0 100 188 r 1.204 1 3 cbr 500 ------- 1 1.0 6.0 113 216 + 1.204 3 4 cbr 500 ------- 1 1.0 6.0 113 216 - 1.2056 3 4 cbr 1000 ------- 1 2.0 7.0 51 201 r 1.2076 3 4 cbr 500 ------- 1 1.0 6.0 101 190 + 1.2076 4 6 cbr 500 ------- 1 1.0 6.0 101 190 r 1.2076 4 6 cbr 500 ------- 1 1.0 6.0 97 184 - 1.2076 4 6 cbr 500 ------- 1 1.0 6.0 101 190 r 1.208 2 3 cbr 1000 ------- 1 2.0 7.0 54 215 + 1.208 3 4 cbr 1000 ------- 1 2.0 7.0 54 215 r 1.20926 5 4 ack 40 ------- 0 5.0 0.0 22 217 + 1.20926 4 3 ack 40 ------- 0 5.0 0.0 22 217 - 1.20926 4 3 ack 40 ------- 0 5.0 0.0 22 217 + 1.21 1 3 cbr 500 ------- 1 1.0 6.0 116 223 - 1.21 1 3 cbr 500 ------- 1 1.0 6.0 116 223 r 1.2116 4 6 cbr 500 ------- 1 1.0 6.0 98 185 r 1.21165 3 0 ack 40 ------- 0 5.0 0.0 19 203 + 1.21165 0 3 tcp 1000 ------- 0 0.0 5.0 27 224 - 1.21165 0 3 tcp 1000 ------- 0 0.0 5.0 27 224 r 1.21325 0 3 tcp 1000 ------- 0 0.0 5.0 26 219 + 1.21325 3 4 tcp 1000 ------- 0 0.0 5.0 26 219 - 1.2136 3 4 cbr 500 ------- 1 1.0 6.0 108 204 r 1.214 1 3 cbr 500 ------- 1 1.0 6.0 114 218 + 1.214 3 4 cbr 500 ------- 1 1.0 6.0 114 218 r 1.21558 4 3 ack 40 ------- 0 5.0 0.0 20 207 + 1.21558 3 0 ack 40 ------- 0 5.0 0.0 20 207 - 1.21558 3 0 ack 40 ------- 0 5.0 0.0 20 207 r 1.2156 3 4 cbr 1000 ------- 1 2.0 7.0 48 189 + 1.2156 4 7 cbr 1000 ------- 1 2.0 7.0 48 189 - 1.2156 4 7 cbr 1000 ------- 1 2.0 7.0 48 189 r 1.2156 4 6 cbr 500 ------- 1 1.0 6.0 99 187 - 1.2176 3 4 cbr 500 ------- 1 1.0 6.0 109 206 r 1.2196 3 4 cbr 500 ------- 1 1.0 6.0 102 192 + 1.2196 4 6 cbr 500 ------- 1 1.0 6.0 102 192 - 1.2196 4 6 cbr 500 ------- 1 1.0 6.0 102 192 + 1.22 2 3 cbr 1000 ------- 1 2.0 7.0 56 225 - 1.22 2 3 cbr 1000 ------- 1 2.0 7.0 56 225 + 1.22 1 3 cbr 500 ------- 1 1.0 6.0 117 226 - 1.22 1 3 cbr 500 ------- 1 1.0 6.0 117 226 r 1.22126 5 4 ack 40 ------- 0 5.0 0.0 23 222 + 1.22126 4 3 ack 40 ------- 0 5.0 0.0 23 222 - 1.22126 4 3 ack 40 ------- 0 5.0 0.0 23 222 - 1.2216 3 4 cbr 1000 ------- 1 2.0 7.0 52 205 r 1.2236 3 4 cbr 500 ------- 1 1.0 6.0 103 195 + 1.2236 4 6 cbr 500 ------- 1 1.0 6.0 103 195 - 1.2236 4 6 cbr 500 ------- 1 1.0 6.0 103 195 r 1.224 1 3 cbr 500 ------- 1 1.0 6.0 115 221 + 1.224 3 4 cbr 500 ------- 1 1.0 6.0 115 221 r 1.2276 4 7 cbr 1000 ------- 1 2.0 7.0 47 186 r 1.2276 4 6 cbr 500 ------- 1 1.0 6.0 100 188 r 1.228 2 3 cbr 1000 ------- 1 2.0 7.0 55 220 + 1.228 3 4 cbr 1000 ------- 1 2.0 7.0 55 220 - 1.2296 3 4 tcp 1000 ------- 0 0.0 5.0 24 209 + 1.23 1 3 cbr 500 ------- 1 1.0 6.0 118 227 - 1.23 1 3 cbr 500 ------- 1 1.0 6.0 118 227 r 1.2316 3 4 cbr 1000 ------- 1 2.0 7.0 49 194 + 1.2316 4 7 cbr 1000 ------- 1 2.0 7.0 49 194 - 1.2316 4 7 cbr 1000 ------- 1 2.0 7.0 49 194 r 1.2316 4 6 cbr 500 ------- 1 1.0 6.0 101 190 r 1.23325 0 3 tcp 1000 ------- 0 0.0 5.0 27 224 + 1.23325 3 4 tcp 1000 ------- 0 0.0 5.0 27 224 r 1.234 1 3 cbr 500 ------- 1 1.0 6.0 116 223 + 1.234 3 4 cbr 500 ------- 1 1.0 6.0 116 223 r 1.23558 4 3 ack 40 ------- 0 5.0 0.0 21 212 + 1.23558 3 0 ack 40 ------- 0 5.0 0.0 21 212 - 1.23558 3 0 ack 40 ------- 0 5.0 0.0 21 212 r 1.2356 3 4 cbr 500 ------- 1 1.0 6.0 104 196 + 1.2356 4 6 cbr 500 ------- 1 1.0 6.0 104 196 - 1.2356 4 6 cbr 500 ------- 1 1.0 6.0 104 196 r 1.23565 3 0 ack 40 ------- 0 5.0 0.0 20 207 + 1.23565 0 3 tcp 1000 ------- 0 0.0 5.0 28 228 - 1.23565 0 3 tcp 1000 ------- 0 0.0 5.0 28 228 - 1.2376 3 4 cbr 500 ------- 1 1.0 6.0 110 208 r 1.2396 3 4 cbr 500 ------- 1 1.0 6.0 105 198 + 1.2396 4 6 cbr 500 ------- 1 1.0 6.0 105 198 - 1.2396 4 6 cbr 500 ------- 1 1.0 6.0 105 198 + 1.24 2 3 cbr 1000 ------- 1 2.0 7.0 57 229 - 1.24 2 3 cbr 1000 ------- 1 2.0 7.0 57 229 + 1.24 1 3 cbr 500 ------- 1 1.0 6.0 119 230 - 1.24 1 3 cbr 500 ------- 1 1.0 6.0 119 230 - 1.2416 3 4 cbr 500 ------- 1 1.0 6.0 111 211 r 1.2436 4 7 cbr 1000 ------- 1 2.0 7.0 48 189 r 1.2436 4 6 cbr 500 ------- 1 1.0 6.0 102 192 r 1.244 1 3 cbr 500 ------- 1 1.0 6.0 117 226 + 1.244 3 4 cbr 500 ------- 1 1.0 6.0 117 226 - 1.2456 3 4 cbr 1000 ------- 1 2.0 7.0 53 210 r 1.2476 3 4 cbr 1000 ------- 1 2.0 7.0 50 197 + 1.2476 4 7 cbr 1000 ------- 1 2.0 7.0 50 197 - 1.2476 4 7 cbr 1000 ------- 1 2.0 7.0 50 197 r 1.2476 4 6 cbr 500 ------- 1 1.0 6.0 103 195 r 1.248 2 3 cbr 1000 ------- 1 2.0 7.0 56 225 + 1.248 3 4 cbr 1000 ------- 1 2.0 7.0 56 225 + 1.25 1 3 cbr 500 ------- 1 1.0 6.0 120 231 - 1.25 1 3 cbr 500 ------- 1 1.0 6.0 120 231 r 1.2516 3 4 cbr 500 ------- 1 1.0 6.0 106 200 + 1.2516 4 6 cbr 500 ------- 1 1.0 6.0 106 200 - 1.2516 4 6 cbr 500 ------- 1 1.0 6.0 106 200 - 1.2536 3 4 tcp 1000 ------- 0 0.0 5.0 25 213 r 1.254 1 3 cbr 500 ------- 1 1.0 6.0 118 227 + 1.254 3 4 cbr 500 ------- 1 1.0 6.0 118 227 r 1.2556 3 4 cbr 500 ------- 1 1.0 6.0 107 202 + 1.2556 4 6 cbr 500 ------- 1 1.0 6.0 107 202 - 1.2556 4 6 cbr 500 ------- 1 1.0 6.0 107 202 r 1.25565 3 0 ack 40 ------- 0 5.0 0.0 21 212 + 1.25565 0 3 tcp 1000 ------- 0 0.0 5.0 29 232 - 1.25565 0 3 tcp 1000 ------- 0 0.0 5.0 29 232 r 1.25725 0 3 tcp 1000 ------- 0 0.0 5.0 28 228 + 1.25725 3 4 tcp 1000 ------- 0 0.0 5.0 28 228 r 1.25958 4 3 ack 40 ------- 0 5.0 0.0 22 217 + 1.25958 3 0 ack 40 ------- 0 5.0 0.0 22 217 - 1.25958 3 0 ack 40 ------- 0 5.0 0.0 22 217 r 1.2596 4 7 cbr 1000 ------- 1 2.0 7.0 49 194 r 1.2596 4 6 cbr 500 ------- 1 1.0 6.0 104 196 + 1.26 2 3 cbr 1000 ------- 1 2.0 7.0 58 233 - 1.26 2 3 cbr 1000 ------- 1 2.0 7.0 58 233 + 1.26 1 3 cbr 500 ------- 1 1.0 6.0 121 234 - 1.26 1 3 cbr 500 ------- 1 1.0 6.0 121 234 - 1.2616 3 4 cbr 500 ------- 1 1.0 6.0 112 214 r 1.2636 3 4 cbr 1000 ------- 1 2.0 7.0 51 201 + 1.2636 4 7 cbr 1000 ------- 1 2.0 7.0 51 201 - 1.2636 4 7 cbr 1000 ------- 1 2.0 7.0 51 201 r 1.2636 4 6 cbr 500 ------- 1 1.0 6.0 105 198 r 1.264 1 3 cbr 500 ------- 1 1.0 6.0 119 230 + 1.264 3 4 cbr 500 ------- 1 1.0 6.0 119 230 - 1.2656 3 4 cbr 500 ------- 1 1.0 6.0 113 216 r 1.2676 3 4 cbr 500 ------- 1 1.0 6.0 108 204 + 1.2676 4 6 cbr 500 ------- 1 1.0 6.0 108 204 - 1.2676 4 6 cbr 500 ------- 1 1.0 6.0 108 204 r 1.268 2 3 cbr 1000 ------- 1 2.0 7.0 57 229 + 1.268 3 4 cbr 1000 ------- 1 2.0 7.0 57 229 - 1.2696 3 4 cbr 1000 ------- 1 2.0 7.0 54 215 + 1.27 1 3 cbr 500 ------- 1 1.0 6.0 122 235 - 1.27 1 3 cbr 500 ------- 1 1.0 6.0 122 235 r 1.27158 4 3 ack 40 ------- 0 5.0 0.0 23 222 + 1.27158 3 0 ack 40 ------- 0 5.0 0.0 23 222 - 1.27158 3 0 ack 40 ------- 0 5.0 0.0 23 222 r 1.2716 3 4 cbr 500 ------- 1 1.0 6.0 109 206 + 1.2716 4 6 cbr 500 ------- 1 1.0 6.0 109 206 - 1.2716 4 6 cbr 500 ------- 1 1.0 6.0 109 206 r 1.274 1 3 cbr 500 ------- 1 1.0 6.0 120 231 + 1.274 3 4 cbr 500 ------- 1 1.0 6.0 120 231 r 1.2756 4 7 cbr 1000 ------- 1 2.0 7.0 50 197 r 1.2756 4 6 cbr 500 ------- 1 1.0 6.0 106 200 r 1.27725 0 3 tcp 1000 ------- 0 0.0 5.0 29 232 + 1.27725 3 4 tcp 1000 ------- 0 0.0 5.0 29 232 - 1.2776 3 4 tcp 1000 ------- 0 0.0 5.0 26 219 r 1.2796 3 4 cbr 1000 ------- 1 2.0 7.0 52 205 + 1.2796 4 7 cbr 1000 ------- 1 2.0 7.0 52 205 - 1.2796 4 7 cbr 1000 ------- 1 2.0 7.0 52 205 r 1.2796 4 6 cbr 500 ------- 1 1.0 6.0 107 202 r 1.27965 3 0 ack 40 ------- 0 5.0 0.0 22 217 + 1.27965 0 3 tcp 1000 ------- 0 0.0 5.0 30 236 - 1.27965 0 3 tcp 1000 ------- 0 0.0 5.0 30 236 + 1.28 2 3 cbr 1000 ------- 1 2.0 7.0 59 237 - 1.28 2 3 cbr 1000 ------- 1 2.0 7.0 59 237 + 1.28 1 3 cbr 500 ------- 1 1.0 6.0 123 238 - 1.28 1 3 cbr 500 ------- 1 1.0 6.0 123 238 r 1.284 1 3 cbr 500 ------- 1 1.0 6.0 121 234 + 1.284 3 4 cbr 500 ------- 1 1.0 6.0 121 234 - 1.2856 3 4 cbr 500 ------- 1 1.0 6.0 114 218 r 1.2876 3 4 tcp 1000 ------- 0 0.0 5.0 24 209 + 1.2876 4 5 tcp 1000 ------- 0 0.0 5.0 24 209 - 1.2876 4 5 tcp 1000 ------- 0 0.0 5.0 24 209 r 1.288 2 3 cbr 1000 ------- 1 2.0 7.0 58 233 + 1.288 3 4 cbr 1000 ------- 1 2.0 7.0 58 233 - 1.2896 3 4 cbr 500 ------- 1 1.0 6.0 115 221 + 1.29 1 3 cbr 500 ------- 1 1.0 6.0 124 239 - 1.29 1 3 cbr 500 ------- 1 1.0 6.0 124 239 r 1.2916 3 4 cbr 500 ------- 1 1.0 6.0 110 208 + 1.2916 4 6 cbr 500 ------- 1 1.0 6.0 110 208 - 1.2916 4 6 cbr 500 ------- 1 1.0 6.0 110 208 r 1.2916 4 7 cbr 1000 ------- 1 2.0 7.0 51 201 r 1.2916 4 6 cbr 500 ------- 1 1.0 6.0 108 204 r 1.29165 3 0 ack 40 ------- 0 5.0 0.0 23 222 + 1.29165 0 3 tcp 1000 ------- 0 0.0 5.0 31 240 - 1.29165 0 3 tcp 1000 ------- 0 0.0 5.0 31 240 - 1.2936 3 4 cbr 1000 ------- 1 2.0 7.0 55 220 r 1.294 1 3 cbr 500 ------- 1 1.0 6.0 122 235 + 1.294 3 4 cbr 500 ------- 1 1.0 6.0 122 235 r 1.2956 3 4 cbr 500 ------- 1 1.0 6.0 111 211 + 1.2956 4 6 cbr 500 ------- 1 1.0 6.0 111 211 r 1.2956 4 6 cbr 500 ------- 1 1.0 6.0 109 206 - 1.2956 4 6 cbr 500 ------- 1 1.0 6.0 111 211 + 1.3 2 3 cbr 1000 ------- 1 2.0 7.0 60 241 - 1.3 2 3 cbr 1000 ------- 1 2.0 7.0 60 241 + 1.3 1 3 cbr 500 ------- 1 1.0 6.0 125 242 - 1.3 1 3 cbr 500 ------- 1 1.0 6.0 125 242 r 1.30125 0 3 tcp 1000 ------- 0 0.0 5.0 30 236 + 1.30125 3 4 tcp 1000 ------- 0 0.0 5.0 30 236 - 1.3016 3 4 tcp 1000 ------- 0 0.0 5.0 27 224 r 1.3036 3 4 cbr 1000 ------- 1 2.0 7.0 53 210 + 1.3036 4 7 cbr 1000 ------- 1 2.0 7.0 53 210 - 1.3036 4 7 cbr 1000 ------- 1 2.0 7.0 53 210 r 1.304 1 3 cbr 500 ------- 1 1.0 6.0 123 238 + 1.304 3 4 cbr 500 ------- 1 1.0 6.0 123 238 r 1.3076 4 7 cbr 1000 ------- 1 2.0 7.0 52 205 r 1.308 2 3 cbr 1000 ------- 1 2.0 7.0 59 237 + 1.308 3 4 cbr 1000 ------- 1 2.0 7.0 59 237 d 1.308 3 4 cbr 1000 ------- 1 2.0 7.0 59 237 r 1.3092 4 5 tcp 1000 ------- 0 0.0 5.0 24 209 + 1.3092 5 4 ack 40 ------- 0 5.0 0.0 24 243 - 1.3092 5 4 ack 40 ------- 0 5.0 0.0 24 243 - 1.3096 3 4 cbr 500 ------- 1 1.0 6.0 116 223 + 1.31 1 3 cbr 500 ------- 1 1.0 6.0 126 244 - 1.31 1 3 cbr 500 ------- 1 1.0 6.0 126 244 r 1.3116 3 4 tcp 1000 ------- 0 0.0 5.0 25 213 + 1.3116 4 5 tcp 1000 ------- 0 0.0 5.0 25 213 - 1.3116 4 5 tcp 1000 ------- 0 0.0 5.0 25 213 r 1.31325 0 3 tcp 1000 ------- 0 0.0 5.0 31 240 + 1.31325 3 4 tcp 1000 ------- 0 0.0 5.0 31 240 - 1.3136 3 4 cbr 500 ------- 1 1.0 6.0 117 226 r 1.314 1 3 cbr 500 ------- 1 1.0 6.0 124 239 + 1.314 3 4 cbr 500 ------- 1 1.0 6.0 124 239 r 1.3156 3 4 cbr 500 ------- 1 1.0 6.0 112 214 + 1.3156 4 6 cbr 500 ------- 1 1.0 6.0 112 214 - 1.3156 4 6 cbr 500 ------- 1 1.0 6.0 112 214 r 1.3156 4 6 cbr 500 ------- 1 1.0 6.0 110 208 - 1.3176 3 4 cbr 1000 ------- 1 2.0 7.0 56 225 r 1.3196 3 4 cbr 500 ------- 1 1.0 6.0 113 216 + 1.3196 4 6 cbr 500 ------- 1 1.0 6.0 113 216 r 1.3196 4 6 cbr 500 ------- 1 1.0 6.0 111 211 - 1.3196 4 6 cbr 500 ------- 1 1.0 6.0 113 216 + 1.32 2 3 cbr 1000 ------- 1 2.0 7.0 61 245 - 1.32 2 3 cbr 1000 ------- 1 2.0 7.0 61 245 + 1.32 1 3 cbr 500 ------- 1 1.0 6.0 127 246 - 1.32 1 3 cbr 500 ------- 1 1.0 6.0 127 246 r 1.324 1 3 cbr 500 ------- 1 1.0 6.0 125 242 + 1.324 3 4 cbr 500 ------- 1 1.0 6.0 125 242 - 1.3256 3 4 cbr 500 ------- 1 1.0 6.0 118 227 r 1.3276 3 4 cbr 1000 ------- 1 2.0 7.0 54 215 + 1.3276 4 7 cbr 1000 ------- 1 2.0 7.0 54 215 - 1.3276 4 7 cbr 1000 ------- 1 2.0 7.0 54 215 r 1.328 2 3 cbr 1000 ------- 1 2.0 7.0 60 241 + 1.328 3 4 cbr 1000 ------- 1 2.0 7.0 60 241 r 1.32926 5 4 ack 40 ------- 0 5.0 0.0 24 243 + 1.32926 4 3 ack 40 ------- 0 5.0 0.0 24 243 - 1.32926 4 3 ack 40 ------- 0 5.0 0.0 24 243 - 1.3296 3 4 tcp 1000 ------- 0 0.0 5.0 28 228 + 1.33 1 3 cbr 500 ------- 1 1.0 6.0 128 247 - 1.33 1 3 cbr 500 ------- 1 1.0 6.0 128 247 r 1.3316 4 7 cbr 1000 ------- 1 2.0 7.0 53 210 r 1.3332 4 5 tcp 1000 ------- 0 0.0 5.0 25 213 + 1.3332 5 4 ack 40 ------- 0 5.0 0.0 25 248 - 1.3332 5 4 ack 40 ------- 0 5.0 0.0 25 248 r 1.334 1 3 cbr 500 ------- 1 1.0 6.0 126 244 + 1.334 3 4 cbr 500 ------- 1 1.0 6.0 126 244 r 1.3356 3 4 tcp 1000 ------- 0 0.0 5.0 26 219 + 1.3356 4 5 tcp 1000 ------- 0 0.0 5.0 26 219 - 1.3356 4 5 tcp 1000 ------- 0 0.0 5.0 26 219 - 1.3376 3 4 cbr 500 ------- 1 1.0 6.0 119 230 r 1.3396 3 4 cbr 500 ------- 1 1.0 6.0 114 218 + 1.3396 4 6 cbr 500 ------- 1 1.0 6.0 114 218 - 1.3396 4 6 cbr 500 ------- 1 1.0 6.0 114 218 r 1.3396 4 6 cbr 500 ------- 1 1.0 6.0 112 214 + 1.34 2 3 cbr 1000 ------- 1 2.0 7.0 62 249 - 1.34 2 3 cbr 1000 ------- 1 2.0 7.0 62 249 + 1.34 1 3 cbr 500 ------- 1 1.0 6.0 129 250 - 1.34 1 3 cbr 500 ------- 1 1.0 6.0 129 250 - 1.3416 3 4 cbr 1000 ------- 1 2.0 7.0 57 229 r 1.3436 3 4 cbr 500 ------- 1 1.0 6.0 115 221 + 1.3436 4 6 cbr 500 ------- 1 1.0 6.0 115 221 r 1.3436 4 6 cbr 500 ------- 1 1.0 6.0 113 216 - 1.3436 4 6 cbr 500 ------- 1 1.0 6.0 115 221 r 1.344 1 3 cbr 500 ------- 1 1.0 6.0 127 246 + 1.344 3 4 cbr 500 ------- 1 1.0 6.0 127 246 r 1.348 2 3 cbr 1000 ------- 1 2.0 7.0 61 245 + 1.348 3 4 cbr 1000 ------- 1 2.0 7.0 61 245 - 1.3496 3 4 cbr 500 ------- 1 1.0 6.0 120 231 + 1.35 1 3 cbr 500 ------- 1 1.0 6.0 130 251 - 1.35 1 3 cbr 500 ------- 1 1.0 6.0 130 251 r 1.3516 3 4 cbr 1000 ------- 1 2.0 7.0 55 220 + 1.3516 4 7 cbr 1000 ------- 1 2.0 7.0 55 220 - 1.3516 4 7 cbr 1000 ------- 1 2.0 7.0 55 220 r 1.35326 5 4 ack 40 ------- 0 5.0 0.0 25 248 + 1.35326 4 3 ack 40 ------- 0 5.0 0.0 25 248 - 1.35326 4 3 ack 40 ------- 0 5.0 0.0 25 248 - 1.3536 3 4 tcp 1000 ------- 0 0.0 5.0 29 232 r 1.354 1 3 cbr 500 ------- 1 1.0 6.0 128 247 + 1.354 3 4 cbr 500 ------- 1 1.0 6.0 128 247 r 1.3556 4 7 cbr 1000 ------- 1 2.0 7.0 54 215 r 1.3572 4 5 tcp 1000 ------- 0 0.0 5.0 26 219 + 1.3572 5 4 ack 40 ------- 0 5.0 0.0 26 252 - 1.3572 5 4 ack 40 ------- 0 5.0 0.0 26 252 r 1.3596 3 4 tcp 1000 ------- 0 0.0 5.0 27 224 + 1.3596 4 5 tcp 1000 ------- 0 0.0 5.0 27 224 - 1.3596 4 5 tcp 1000 ------- 0 0.0 5.0 27 224 + 1.36 2 3 cbr 1000 ------- 1 2.0 7.0 63 253 - 1.36 2 3 cbr 1000 ------- 1 2.0 7.0 63 253 + 1.36 1 3 cbr 500 ------- 1 1.0 6.0 131 254 - 1.36 1 3 cbr 500 ------- 1 1.0 6.0 131 254 - 1.3616 3 4 cbr 500 ------- 1 1.0 6.0 121 234 r 1.3636 3 4 cbr 500 ------- 1 1.0 6.0 116 223 + 1.3636 4 6 cbr 500 ------- 1 1.0 6.0 116 223 - 1.3636 4 6 cbr 500 ------- 1 1.0 6.0 116 223 r 1.3636 4 6 cbr 500 ------- 1 1.0 6.0 114 218 r 1.364 1 3 cbr 500 ------- 1 1.0 6.0 129 250 + 1.364 3 4 cbr 500 ------- 1 1.0 6.0 129 250 - 1.3656 3 4 cbr 1000 ------- 1 2.0 7.0 58 233 r 1.3676 3 4 cbr 500 ------- 1 1.0 6.0 117 226 + 1.3676 4 6 cbr 500 ------- 1 1.0 6.0 117 226 r 1.3676 4 6 cbr 500 ------- 1 1.0 6.0 115 221 - 1.3676 4 6 cbr 500 ------- 1 1.0 6.0 117 226 r 1.368 2 3 cbr 1000 ------- 1 2.0 7.0 62 249 + 1.368 3 4 cbr 1000 ------- 1 2.0 7.0 62 249 + 1.37 1 3 cbr 500 ------- 1 1.0 6.0 132 255 - 1.37 1 3 cbr 500 ------- 1 1.0 6.0 132 255 - 1.3736 3 4 cbr 500 ------- 1 1.0 6.0 122 235 r 1.374 1 3 cbr 500 ------- 1 1.0 6.0 130 251 + 1.374 3 4 cbr 500 ------- 1 1.0 6.0 130 251 r 1.3756 3 4 cbr 1000 ------- 1 2.0 7.0 56 225 + 1.3756 4 7 cbr 1000 ------- 1 2.0 7.0 56 225 - 1.3756 4 7 cbr 1000 ------- 1 2.0 7.0 56 225 r 1.37726 5 4 ack 40 ------- 0 5.0 0.0 26 252 + 1.37726 4 3 ack 40 ------- 0 5.0 0.0 26 252 - 1.37726 4 3 ack 40 ------- 0 5.0 0.0 26 252 - 1.3776 3 4 tcp 1000 ------- 0 0.0 5.0 30 236 r 1.37958 4 3 ack 40 ------- 0 5.0 0.0 24 243 + 1.37958 3 0 ack 40 ------- 0 5.0 0.0 24 243 - 1.37958 3 0 ack 40 ------- 0 5.0 0.0 24 243 r 1.3796 3 4 cbr 500 ------- 1 1.0 6.0 118 227 + 1.3796 4 6 cbr 500 ------- 1 1.0 6.0 118 227 - 1.3796 4 6 cbr 500 ------- 1 1.0 6.0 118 227 r 1.3796 4 7 cbr 1000 ------- 1 2.0 7.0 55 220 + 1.38 2 3 cbr 1000 ------- 1 2.0 7.0 64 256 - 1.38 2 3 cbr 1000 ------- 1 2.0 7.0 64 256 + 1.38 1 3 cbr 500 ------- 1 1.0 6.0 133 257 - 1.38 1 3 cbr 500 ------- 1 1.0 6.0 133 257 r 1.3812 4 5 tcp 1000 ------- 0 0.0 5.0 27 224 + 1.3812 5 4 ack 40 ------- 0 5.0 0.0 27 258 - 1.3812 5 4 ack 40 ------- 0 5.0 0.0 27 258 r 1.384 1 3 cbr 500 ------- 1 1.0 6.0 131 254 + 1.384 3 4 cbr 500 ------- 1 1.0 6.0 131 254 - 1.3856 3 4 cbr 500 ------- 1 1.0 6.0 123 238 r 1.3876 3 4 tcp 1000 ------- 0 0.0 5.0 28 228 + 1.3876 4 5 tcp 1000 ------- 0 0.0 5.0 28 228 - 1.3876 4 5 tcp 1000 ------- 0 0.0 5.0 28 228 r 1.3876 4 6 cbr 500 ------- 1 1.0 6.0 116 223 r 1.388 2 3 cbr 1000 ------- 1 2.0 7.0 63 253 + 1.388 3 4 cbr 1000 ------- 1 2.0 7.0 63 253 - 1.3896 3 4 tcp 1000 ------- 0 0.0 5.0 31 240 + 1.39 1 3 cbr 500 ------- 1 1.0 6.0 134 259 - 1.39 1 3 cbr 500 ------- 1 1.0 6.0 134 259 r 1.3916 3 4 cbr 500 ------- 1 1.0 6.0 119 230 + 1.3916 4 6 cbr 500 ------- 1 1.0 6.0 119 230 - 1.3916 4 6 cbr 500 ------- 1 1.0 6.0 119 230 r 1.3916 4 6 cbr 500 ------- 1 1.0 6.0 117 226 r 1.394 1 3 cbr 500 ------- 1 1.0 6.0 132 255 + 1.394 3 4 cbr 500 ------- 1 1.0 6.0 132 255 - 1.3976 3 4 cbr 500 ------- 1 1.0 6.0 124 239 r 1.3996 3 4 cbr 1000 ------- 1 2.0 7.0 57 229 + 1.3996 4 7 cbr 1000 ------- 1 2.0 7.0 57 229 - 1.3996 4 7 cbr 1000 ------- 1 2.0 7.0 57 229 r 1.39965 3 0 ack 40 ------- 0 5.0 0.0 24 243 + 1.39965 0 3 tcp 1000 ------- 0 0.0 5.0 32 260 - 1.39965 0 3 tcp 1000 ------- 0 0.0 5.0 32 260 + 1.4 2 3 cbr 1000 ------- 1 2.0 7.0 65 261 - 1.4 2 3 cbr 1000 ------- 1 2.0 7.0 65 261 + 1.4 1 3 cbr 500 ------- 1 1.0 6.0 135 262 - 1.4 1 3 cbr 500 ------- 1 1.0 6.0 135 262 r 1.40126 5 4 ack 40 ------- 0 5.0 0.0 27 258 + 1.40126 4 3 ack 40 ------- 0 5.0 0.0 27 258 - 1.40126 4 3 ack 40 ------- 0 5.0 0.0 27 258 - 1.4016 3 4 cbr 500 ------- 1 1.0 6.0 125 242 r 1.40358 4 3 ack 40 ------- 0 5.0 0.0 25 248 + 1.40358 3 0 ack 40 ------- 0 5.0 0.0 25 248 - 1.40358 3 0 ack 40 ------- 0 5.0 0.0 25 248 r 1.4036 3 4 cbr 500 ------- 1 1.0 6.0 120 231 + 1.4036 4 6 cbr 500 ------- 1 1.0 6.0 120 231 - 1.4036 4 6 cbr 500 ------- 1 1.0 6.0 120 231 r 1.4036 4 7 cbr 1000 ------- 1 2.0 7.0 56 225 r 1.4036 4 6 cbr 500 ------- 1 1.0 6.0 118 227 r 1.404 1 3 cbr 500 ------- 1 1.0 6.0 133 257 + 1.404 3 4 cbr 500 ------- 1 1.0 6.0 133 257 - 1.4056 3 4 cbr 1000 ------- 1 2.0 7.0 60 241 r 1.408 2 3 cbr 1000 ------- 1 2.0 7.0 64 256 + 1.408 3 4 cbr 1000 ------- 1 2.0 7.0 64 256 r 1.4092 4 5 tcp 1000 ------- 0 0.0 5.0 28 228 + 1.4092 5 4 ack 40 ------- 0 5.0 0.0 28 263 - 1.4092 5 4 ack 40 ------- 0 5.0 0.0 28 263 + 1.41 1 3 cbr 500 ------- 1 1.0 6.0 136 264 - 1.41 1 3 cbr 500 ------- 1 1.0 6.0 136 264 r 1.4116 3 4 tcp 1000 ------- 0 0.0 5.0 29 232 + 1.4116 4 5 tcp 1000 ------- 0 0.0 5.0 29 232 - 1.4116 4 5 tcp 1000 ------- 0 0.0 5.0 29 232 - 1.4136 3 4 cbr 500 ------- 1 1.0 6.0 126 244 r 1.414 1 3 cbr 500 ------- 1 1.0 6.0 134 259 + 1.414 3 4 cbr 500 ------- 1 1.0 6.0 134 259 r 1.4156 3 4 cbr 500 ------- 1 1.0 6.0 121 234 + 1.4156 4 6 cbr 500 ------- 1 1.0 6.0 121 234 - 1.4156 4 6 cbr 500 ------- 1 1.0 6.0 121 234 r 1.4156 4 6 cbr 500 ------- 1 1.0 6.0 119 230 - 1.4176 3 4 cbr 500 ------- 1 1.0 6.0 127 246 + 1.42 2 3 cbr 1000 ------- 1 2.0 7.0 66 265 - 1.42 2 3 cbr 1000 ------- 1 2.0 7.0 66 265 + 1.42 1 3 cbr 500 ------- 1 1.0 6.0 137 266 - 1.42 1 3 cbr 500 ------- 1 1.0 6.0 137 266 r 1.42125 0 3 tcp 1000 ------- 0 0.0 5.0 32 260 + 1.42125 3 4 tcp 1000 ------- 0 0.0 5.0 32 260 - 1.4216 3 4 cbr 1000 ------- 1 2.0 7.0 61 245 r 1.4236 3 4 cbr 1000 ------- 1 2.0 7.0 58 233 + 1.4236 4 7 cbr 1000 ------- 1 2.0 7.0 58 233 - 1.4236 4 7 cbr 1000 ------- 1 2.0 7.0 58 233 r 1.42365 3 0 ack 40 ------- 0 5.0 0.0 25 248 + 1.42365 0 3 tcp 1000 ------- 0 0.0 5.0 33 267 - 1.42365 0 3 tcp 1000 ------- 0 0.0 5.0 33 267 r 1.424 1 3 cbr 500 ------- 1 1.0 6.0 135 262 + 1.424 3 4 cbr 500 ------- 1 1.0 6.0 135 262 r 1.42758 4 3 ack 40 ------- 0 5.0 0.0 26 252 + 1.42758 3 0 ack 40 ------- 0 5.0 0.0 26 252 - 1.42758 3 0 ack 40 ------- 0 5.0 0.0 26 252 r 1.4276 3 4 cbr 500 ------- 1 1.0 6.0 122 235 + 1.4276 4 6 cbr 500 ------- 1 1.0 6.0 122 235 - 1.4276 4 6 cbr 500 ------- 1 1.0 6.0 122 235 r 1.4276 4 7 cbr 1000 ------- 1 2.0 7.0 57 229 r 1.4276 4 6 cbr 500 ------- 1 1.0 6.0 120 231 r 1.428 2 3 cbr 1000 ------- 1 2.0 7.0 65 261 + 1.428 3 4 cbr 1000 ------- 1 2.0 7.0 65 261 r 1.42926 5 4 ack 40 ------- 0 5.0 0.0 28 263 + 1.42926 4 3 ack 40 ------- 0 5.0 0.0 28 263 - 1.42926 4 3 ack 40 ------- 0 5.0 0.0 28 263 - 1.4296 3 4 cbr 500 ------- 1 1.0 6.0 128 247 + 1.43 1 3 cbr 500 ------- 1 1.0 6.0 138 268 - 1.43 1 3 cbr 500 ------- 1 1.0 6.0 138 268 r 1.4332 4 5 tcp 1000 ------- 0 0.0 5.0 29 232 + 1.4332 5 4 ack 40 ------- 0 5.0 0.0 29 269 - 1.4332 5 4 ack 40 ------- 0 5.0 0.0 29 269 - 1.4336 3 4 cbr 500 ------- 1 1.0 6.0 129 250 r 1.434 1 3 cbr 500 ------- 1 1.0 6.0 136 264 + 1.434 3 4 cbr 500 ------- 1 1.0 6.0 136 264 r 1.4356 3 4 tcp 1000 ------- 0 0.0 5.0 30 236 + 1.4356 4 5 tcp 1000 ------- 0 0.0 5.0 30 236 - 1.4356 4 5 tcp 1000 ------- 0 0.0 5.0 30 236 - 1.4376 3 4 cbr 1000 ------- 1 2.0 7.0 62 249 r 1.4396 3 4 cbr 500 ------- 1 1.0 6.0 123 238 + 1.4396 4 6 cbr 500 ------- 1 1.0 6.0 123 238 - 1.4396 4 6 cbr 500 ------- 1 1.0 6.0 123 238 r 1.4396 4 6 cbr 500 ------- 1 1.0 6.0 121 234 + 1.44 2 3 cbr 1000 ------- 1 2.0 7.0 67 270 - 1.44 2 3 cbr 1000 ------- 1 2.0 7.0 67 270 + 1.44 1 3 cbr 500 ------- 1 1.0 6.0 139 271 - 1.44 1 3 cbr 500 ------- 1 1.0 6.0 139 271 r 1.444 1 3 cbr 500 ------- 1 1.0 6.0 137 266 + 1.444 3 4 cbr 500 ------- 1 1.0 6.0 137 266 r 1.44525 0 3 tcp 1000 ------- 0 0.0 5.0 33 267 + 1.44525 3 4 tcp 1000 ------- 0 0.0 5.0 33 267 - 1.4456 3 4 cbr 500 ------- 1 1.0 6.0 130 251 r 1.4476 3 4 tcp 1000 ------- 0 0.0 5.0 31 240 + 1.4476 4 5 tcp 1000 ------- 0 0.0 5.0 31 240 - 1.4476 4 5 tcp 1000 ------- 0 0.0 5.0 31 240 r 1.44765 3 0 ack 40 ------- 0 5.0 0.0 26 252 + 1.44765 0 3 tcp 1000 ------- 0 0.0 5.0 34 272 - 1.44765 0 3 tcp 1000 ------- 0 0.0 5.0 34 272 r 1.448 2 3 cbr 1000 ------- 1 2.0 7.0 66 265 + 1.448 3 4 cbr 1000 ------- 1 2.0 7.0 66 265 - 1.4496 3 4 cbr 500 ------- 1 1.0 6.0 131 254 + 1.45 1 3 cbr 500 ------- 1 1.0 6.0 140 273 - 1.45 1 3 cbr 500 ------- 1 1.0 6.0 140 273 r 1.45158 4 3 ack 40 ------- 0 5.0 0.0 27 258 + 1.45158 3 0 ack 40 ------- 0 5.0 0.0 27 258 - 1.45158 3 0 ack 40 ------- 0 5.0 0.0 27 258 r 1.4516 3 4 cbr 500 ------- 1 1.0 6.0 124 239 + 1.4516 4 6 cbr 500 ------- 1 1.0 6.0 124 239 - 1.4516 4 6 cbr 500 ------- 1 1.0 6.0 124 239 r 1.4516 4 7 cbr 1000 ------- 1 2.0 7.0 58 233 r 1.4516 4 6 cbr 500 ------- 1 1.0 6.0 122 235 r 1.45326 5 4 ack 40 ------- 0 5.0 0.0 29 269 + 1.45326 4 3 ack 40 ------- 0 5.0 0.0 29 269 - 1.45326 4 3 ack 40 ------- 0 5.0 0.0 29 269 - 1.4536 3 4 cbr 1000 ------- 1 2.0 7.0 63 253 r 1.454 1 3 cbr 500 ------- 1 1.0 6.0 138 268 + 1.454 3 4 cbr 500 ------- 1 1.0 6.0 138 268 r 1.4556 3 4 cbr 500 ------- 1 1.0 6.0 125 242 + 1.4556 4 6 cbr 500 ------- 1 1.0 6.0 125 242 - 1.4556 4 6 cbr 500 ------- 1 1.0 6.0 125 242 r 1.4572 4 5 tcp 1000 ------- 0 0.0 5.0 30 236 + 1.4572 5 4 ack 40 ------- 0 5.0 0.0 30 274 - 1.4572 5 4 ack 40 ------- 0 5.0 0.0 30 274 + 1.46 2 3 cbr 1000 ------- 1 2.0 7.0 68 275 - 1.46 2 3 cbr 1000 ------- 1 2.0 7.0 68 275 + 1.46 1 3 cbr 500 ------- 1 1.0 6.0 141 276 - 1.46 1 3 cbr 500 ------- 1 1.0 6.0 141 276 - 1.4616 3 4 cbr 500 ------- 1 1.0 6.0 132 255 r 1.4636 3 4 cbr 1000 ------- 1 2.0 7.0 60 241 + 1.4636 4 7 cbr 1000 ------- 1 2.0 7.0 60 241 - 1.4636 4 7 cbr 1000 ------- 1 2.0 7.0 60 241 r 1.4636 4 6 cbr 500 ------- 1 1.0 6.0 123 238 r 1.464 1 3 cbr 500 ------- 1 1.0 6.0 139 271 + 1.464 3 4 cbr 500 ------- 1 1.0 6.0 139 271 - 1.4656 3 4 cbr 500 ------- 1 1.0 6.0 133 257 r 1.4676 3 4 cbr 500 ------- 1 1.0 6.0 126 244 + 1.4676 4 6 cbr 500 ------- 1 1.0 6.0 126 244 - 1.4676 4 6 cbr 500 ------- 1 1.0 6.0 126 244 r 1.468 2 3 cbr 1000 ------- 1 2.0 7.0 67 270 + 1.468 3 4 cbr 1000 ------- 1 2.0 7.0 67 270 r 1.4692 4 5 tcp 1000 ------- 0 0.0 5.0 31 240 + 1.4692 5 4 ack 40 ------- 0 5.0 0.0 31 277 - 1.4692 5 4 ack 40 ------- 0 5.0 0.0 31 277 r 1.46925 0 3 tcp 1000 ------- 0 0.0 5.0 34 272 + 1.46925 3 4 tcp 1000 ------- 0 0.0 5.0 34 272 - 1.4696 3 4 cbr 1000 ------- 1 2.0 7.0 64 256 + 1.47 1 3 cbr 500 ------- 1 1.0 6.0 142 278 - 1.47 1 3 cbr 500 ------- 1 1.0 6.0 142 278 r 1.4716 3 4 cbr 500 ------- 1 1.0 6.0 127 246 + 1.4716 4 6 cbr 500 ------- 1 1.0 6.0 127 246 - 1.4716 4 6 cbr 500 ------- 1 1.0 6.0 127 246 r 1.47165 3 0 ack 40 ------- 0 5.0 0.0 27 258 + 1.47165 0 3 tcp 1000 ------- 0 0.0 5.0 35 279 - 1.47165 0 3 tcp 1000 ------- 0 0.0 5.0 35 279 r 1.474 1 3 cbr 500 ------- 1 1.0 6.0 140 273 + 1.474 3 4 cbr 500 ------- 1 1.0 6.0 140 273 r 1.4756 4 6 cbr 500 ------- 1 1.0 6.0 124 239 r 1.47726 5 4 ack 40 ------- 0 5.0 0.0 30 274 + 1.47726 4 3 ack 40 ------- 0 5.0 0.0 30 274 - 1.47726 4 3 ack 40 ------- 0 5.0 0.0 30 274 - 1.4776 3 4 cbr 500 ------- 1 1.0 6.0 134 259 r 1.47958 4 3 ack 40 ------- 0 5.0 0.0 28 263 + 1.47958 3 0 ack 40 ------- 0 5.0 0.0 28 263 - 1.47958 3 0 ack 40 ------- 0 5.0 0.0 28 263 r 1.4796 3 4 cbr 1000 ------- 1 2.0 7.0 61 245 + 1.4796 4 7 cbr 1000 ------- 1 2.0 7.0 61 245 - 1.4796 4 7 cbr 1000 ------- 1 2.0 7.0 61 245 r 1.4796 4 6 cbr 500 ------- 1 1.0 6.0 125 242 + 1.48 2 3 cbr 1000 ------- 1 2.0 7.0 69 280 - 1.48 2 3 cbr 1000 ------- 1 2.0 7.0 69 280 + 1.48 1 3 cbr 500 ------- 1 1.0 6.0 143 281 - 1.48 1 3 cbr 500 ------- 1 1.0 6.0 143 281 - 1.4816 3 4 tcp 1000 ------- 0 0.0 5.0 32 260 r 1.4836 3 4 cbr 500 ------- 1 1.0 6.0 128 247 + 1.4836 4 6 cbr 500 ------- 1 1.0 6.0 128 247 - 1.4836 4 6 cbr 500 ------- 1 1.0 6.0 128 247 r 1.484 1 3 cbr 500 ------- 1 1.0 6.0 141 276 + 1.484 3 4 cbr 500 ------- 1 1.0 6.0 141 276 r 1.4876 3 4 cbr 500 ------- 1 1.0 6.0 129 250 + 1.4876 4 6 cbr 500 ------- 1 1.0 6.0 129 250 - 1.4876 4 6 cbr 500 ------- 1 1.0 6.0 129 250 r 1.488 2 3 cbr 1000 ------- 1 2.0 7.0 68 275 + 1.488 3 4 cbr 1000 ------- 1 2.0 7.0 68 275 r 1.48926 5 4 ack 40 ------- 0 5.0 0.0 31 277 + 1.48926 4 3 ack 40 ------- 0 5.0 0.0 31 277 - 1.48926 4 3 ack 40 ------- 0 5.0 0.0 31 277 - 1.4896 3 4 cbr 500 ------- 1 1.0 6.0 135 262 + 1.49 1 3 cbr 500 ------- 1 1.0 6.0 144 282 - 1.49 1 3 cbr 500 ------- 1 1.0 6.0 144 282 r 1.4916 4 7 cbr 1000 ------- 1 2.0 7.0 60 241 r 1.4916 4 6 cbr 500 ------- 1 1.0 6.0 126 244 r 1.49325 0 3 tcp 1000 ------- 0 0.0 5.0 35 279 + 1.49325 3 4 tcp 1000 ------- 0 0.0 5.0 35 279 - 1.4936 3 4 cbr 1000 ------- 1 2.0 7.0 65 261 r 1.494 1 3 cbr 500 ------- 1 1.0 6.0 142 278 + 1.494 3 4 cbr 500 ------- 1 1.0 6.0 142 278 r 1.4956 3 4 cbr 1000 ------- 1 2.0 7.0 62 249 + 1.4956 4 7 cbr 1000 ------- 1 2.0 7.0 62 249 - 1.4956 4 7 cbr 1000 ------- 1 2.0 7.0 62 249 r 1.4956 4 6 cbr 500 ------- 1 1.0 6.0 127 246 r 1.4996 3 4 cbr 500 ------- 1 1.0 6.0 130 251 + 1.4996 4 6 cbr 500 ------- 1 1.0 6.0 130 251 - 1.4996 4 6 cbr 500 ------- 1 1.0 6.0 130 251 r 1.49965 3 0 ack 40 ------- 0 5.0 0.0 28 263 + 1.49965 0 3 tcp 1000 ------- 0 0.0 5.0 36 283 - 1.49965 0 3 tcp 1000 ------- 0 0.0 5.0 36 283 + 1.5 2 3 cbr 1000 ------- 1 2.0 7.0 70 284 - 1.5 2 3 cbr 1000 ------- 1 2.0 7.0 70 284 + 1.5 1 3 cbr 500 ------- 1 1.0 6.0 145 285 - 1.5 1 3 cbr 500 ------- 1 1.0 6.0 145 285 - 1.5016 3 4 cbr 500 ------- 1 1.0 6.0 136 264 r 1.50358 4 3 ack 40 ------- 0 5.0 0.0 29 269 + 1.50358 3 0 ack 40 ------- 0 5.0 0.0 29 269 - 1.50358 3 0 ack 40 ------- 0 5.0 0.0 29 269 r 1.5036 3 4 cbr 500 ------- 1 1.0 6.0 131 254 + 1.5036 4 6 cbr 500 ------- 1 1.0 6.0 131 254 - 1.5036 4 6 cbr 500 ------- 1 1.0 6.0 131 254 r 1.504 1 3 cbr 500 ------- 1 1.0 6.0 143 281 + 1.504 3 4 cbr 500 ------- 1 1.0 6.0 143 281 - 1.5056 3 4 cbr 500 ------- 1 1.0 6.0 137 266 r 1.5076 4 7 cbr 1000 ------- 1 2.0 7.0 61 245 r 1.5076 4 6 cbr 500 ------- 1 1.0 6.0 128 247 r 1.508 2 3 cbr 1000 ------- 1 2.0 7.0 69 280 + 1.508 3 4 cbr 1000 ------- 1 2.0 7.0 69 280 - 1.5096 3 4 tcp 1000 ------- 0 0.0 5.0 33 267 + 1.51 1 3 cbr 500 ------- 1 1.0 6.0 146 286 - 1.51 1 3 cbr 500 ------- 1 1.0 6.0 146 286 r 1.5116 3 4 cbr 1000 ------- 1 2.0 7.0 63 253 + 1.5116 4 7 cbr 1000 ------- 1 2.0 7.0 63 253 - 1.5116 4 7 cbr 1000 ------- 1 2.0 7.0 63 253 r 1.5116 4 6 cbr 500 ------- 1 1.0 6.0 129 250 r 1.514 1 3 cbr 500 ------- 1 1.0 6.0 144 282 + 1.514 3 4 cbr 500 ------- 1 1.0 6.0 144 282 r 1.5156 3 4 cbr 500 ------- 1 1.0 6.0 132 255 + 1.5156 4 6 cbr 500 ------- 1 1.0 6.0 132 255 - 1.5156 4 6 cbr 500 ------- 1 1.0 6.0 132 255 - 1.5176 3 4 cbr 1000 ------- 1 2.0 7.0 66 265 r 1.5196 3 4 cbr 500 ------- 1 1.0 6.0 133 257 + 1.5196 4 6 cbr 500 ------- 1 1.0 6.0 133 257 - 1.5196 4 6 cbr 500 ------- 1 1.0 6.0 133 257 + 1.52 2 3 cbr 1000 ------- 1 2.0 7.0 71 287 - 1.52 2 3 cbr 1000 ------- 1 2.0 7.0 71 287 + 1.52 1 3 cbr 500 ------- 1 1.0 6.0 147 288 - 1.52 1 3 cbr 500 ------- 1 1.0 6.0 147 288 r 1.52125 0 3 tcp 1000 ------- 0 0.0 5.0 36 283 + 1.52125 3 4 tcp 1000 ------- 0 0.0 5.0 36 283 r 1.5236 4 7 cbr 1000 ------- 1 2.0 7.0 62 249 r 1.5236 4 6 cbr 500 ------- 1 1.0 6.0 130 251 r 1.52365 3 0 ack 40 ------- 0 5.0 0.0 29 269 + 1.52365 0 3 tcp 1000 ------- 0 0.0 5.0 37 289 - 1.52365 0 3 tcp 1000 ------- 0 0.0 5.0 37 289 r 1.524 1 3 cbr 500 ------- 1 1.0 6.0 145 285 + 1.524 3 4 cbr 500 ------- 1 1.0 6.0 145 285 - 1.5256 3 4 cbr 500 ------- 1 1.0 6.0 138 268 r 1.52758 4 3 ack 40 ------- 0 5.0 0.0 30 274 + 1.52758 3 0 ack 40 ------- 0 5.0 0.0 30 274 - 1.52758 3 0 ack 40 ------- 0 5.0 0.0 30 274 r 1.5276 3 4 cbr 1000 ------- 1 2.0 7.0 64 256 + 1.5276 4 7 cbr 1000 ------- 1 2.0 7.0 64 256 - 1.5276 4 7 cbr 1000 ------- 1 2.0 7.0 64 256 r 1.5276 4 6 cbr 500 ------- 1 1.0 6.0 131 254 r 1.528 2 3 cbr 1000 ------- 1 2.0 7.0 70 284 + 1.528 3 4 cbr 1000 ------- 1 2.0 7.0 70 284 - 1.5296 3 4 cbr 500 ------- 1 1.0 6.0 139 271 + 1.53 1 3 cbr 500 ------- 1 1.0 6.0 148 290 - 1.53 1 3 cbr 500 ------- 1 1.0 6.0 148 290 r 1.5316 3 4 cbr 500 ------- 1 1.0 6.0 134 259 + 1.5316 4 6 cbr 500 ------- 1 1.0 6.0 134 259 - 1.5316 4 6 cbr 500 ------- 1 1.0 6.0 134 259 - 1.5336 3 4 cbr 1000 ------- 1 2.0 7.0 67 270 r 1.534 1 3 cbr 500 ------- 1 1.0 6.0 146 286 + 1.534 3 4 cbr 500 ------- 1 1.0 6.0 146 286 r 1.53958 4 3 ack 40 ------- 0 5.0 0.0 31 277 + 1.53958 3 0 ack 40 ------- 0 5.0 0.0 31 277 - 1.53958 3 0 ack 40 ------- 0 5.0 0.0 31 277 r 1.5396 3 4 tcp 1000 ------- 0 0.0 5.0 32 260 + 1.5396 4 5 tcp 1000 ------- 0 0.0 5.0 32 260 - 1.5396 4 5 tcp 1000 ------- 0 0.0 5.0 32 260 r 1.5396 4 7 cbr 1000 ------- 1 2.0 7.0 63 253 r 1.5396 4 6 cbr 500 ------- 1 1.0 6.0 132 255 + 1.54 2 3 cbr 1000 ------- 1 2.0 7.0 72 291 - 1.54 2 3 cbr 1000 ------- 1 2.0 7.0 72 291 + 1.54 1 3 cbr 500 ------- 1 1.0 6.0 149 292 - 1.54 1 3 cbr 500 ------- 1 1.0 6.0 149 292 - 1.5416 3 4 tcp 1000 ------- 0 0.0 5.0 34 272 r 1.5436 3 4 cbr 500 ------- 1 1.0 6.0 135 262 + 1.5436 4 6 cbr 500 ------- 1 1.0 6.0 135 262 - 1.5436 4 6 cbr 500 ------- 1 1.0 6.0 135 262 r 1.5436 4 6 cbr 500 ------- 1 1.0 6.0 133 257 r 1.544 1 3 cbr 500 ------- 1 1.0 6.0 147 288 + 1.544 3 4 cbr 500 ------- 1 1.0 6.0 147 288 r 1.54525 0 3 tcp 1000 ------- 0 0.0 5.0 37 289 + 1.54525 3 4 tcp 1000 ------- 0 0.0 5.0 37 289 r 1.54765 3 0 ack 40 ------- 0 5.0 0.0 30 274 + 1.54765 0 3 tcp 1000 ------- 0 0.0 5.0 38 293 - 1.54765 0 3 tcp 1000 ------- 0 0.0 5.0 38 293 r 1.548 2 3 cbr 1000 ------- 1 2.0 7.0 71 287 + 1.548 3 4 cbr 1000 ------- 1 2.0 7.0 71 287 d 1.548 3 4 cbr 1000 ------- 1 2.0 7.0 71 287 - 1.5496 3 4 cbr 500 ------- 1 1.0 6.0 140 273 + 1.55 1 3 cbr 500 ------- 1 1.0 6.0 150 294 - 1.55 1 3 cbr 500 ------- 1 1.0 6.0 150 294 r 1.5516 3 4 cbr 1000 ------- 1 2.0 7.0 65 261 + 1.5516 4 7 cbr 1000 ------- 1 2.0 7.0 65 261 - 1.5516 4 7 cbr 1000 ------- 1 2.0 7.0 65 261 - 1.5536 3 4 cbr 500 ------- 1 1.0 6.0 141 276 r 1.554 1 3 cbr 500 ------- 1 1.0 6.0 148 290 + 1.554 3 4 cbr 500 ------- 1 1.0 6.0 148 290 r 1.5556 3 4 cbr 500 ------- 1 1.0 6.0 136 264 + 1.5556 4 6 cbr 500 ------- 1 1.0 6.0 136 264 - 1.5556 4 6 cbr 500 ------- 1 1.0 6.0 136 264 r 1.5556 4 7 cbr 1000 ------- 1 2.0 7.0 64 256 r 1.5556 4 6 cbr 500 ------- 1 1.0 6.0 134 259 - 1.5576 3 4 cbr 1000 ------- 1 2.0 7.0 68 275 r 1.5596 3 4 cbr 500 ------- 1 1.0 6.0 137 266 + 1.5596 4 6 cbr 500 ------- 1 1.0 6.0 137 266 - 1.5596 4 6 cbr 500 ------- 1 1.0 6.0 137 266 r 1.55965 3 0 ack 40 ------- 0 5.0 0.0 31 277 + 1.55965 0 3 tcp 1000 ------- 0 0.0 5.0 39 295 - 1.55965 0 3 tcp 1000 ------- 0 0.0 5.0 39 295 + 1.56 2 3 cbr 1000 ------- 1 2.0 7.0 73 296 - 1.56 2 3 cbr 1000 ------- 1 2.0 7.0 73 296 + 1.56 1 3 cbr 500 ------- 1 1.0 6.0 151 297 - 1.56 1 3 cbr 500 ------- 1 1.0 6.0 151 297 r 1.5612 4 5 tcp 1000 ------- 0 0.0 5.0 32 260 + 1.5612 5 4 ack 40 ------- 0 5.0 0.0 32 298 - 1.5612 5 4 ack 40 ------- 0 5.0 0.0 32 298 r 1.564 1 3 cbr 500 ------- 1 1.0 6.0 149 292 + 1.564 3 4 cbr 500 ------- 1 1.0 6.0 149 292 - 1.5656 3 4 tcp 1000 ------- 0 0.0 5.0 35 279 r 1.5676 3 4 tcp 1000 ------- 0 0.0 5.0 33 267 + 1.5676 4 5 tcp 1000 ------- 0 0.0 5.0 33 267 - 1.5676 4 5 tcp 1000 ------- 0 0.0 5.0 33 267 r 1.5676 4 6 cbr 500 ------- 1 1.0 6.0 135 262 r 1.568 2 3 cbr 1000 ------- 1 2.0 7.0 72 291 + 1.568 3 4 cbr 1000 ------- 1 2.0 7.0 72 291 r 1.56925 0 3 tcp 1000 ------- 0 0.0 5.0 38 293 + 1.56925 3 4 tcp 1000 ------- 0 0.0 5.0 38 293 + 1.57 1 3 cbr 500 ------- 1 1.0 6.0 152 299 - 1.57 1 3 cbr 500 ------- 1 1.0 6.0 152 299 - 1.5736 3 4 cbr 500 ------- 1 1.0 6.0 142 278 r 1.574 1 3 cbr 500 ------- 1 1.0 6.0 150 294 + 1.574 3 4 cbr 500 ------- 1 1.0 6.0 150 294 r 1.5756 3 4 cbr 1000 ------- 1 2.0 7.0 66 265 + 1.5756 4 7 cbr 1000 ------- 1 2.0 7.0 66 265 - 1.5756 4 7 cbr 1000 ------- 1 2.0 7.0 66 265 - 1.5776 3 4 cbr 500 ------- 1 1.0 6.0 143 281 r 1.5796 3 4 cbr 500 ------- 1 1.0 6.0 138 268 + 1.5796 4 6 cbr 500 ------- 1 1.0 6.0 138 268 - 1.5796 4 6 cbr 500 ------- 1 1.0 6.0 138 268 r 1.5796 4 7 cbr 1000 ------- 1 2.0 7.0 65 261 r 1.5796 4 6 cbr 500 ------- 1 1.0 6.0 136 264 + 1.58 2 3 cbr 1000 ------- 1 2.0 7.0 74 300 - 1.58 2 3 cbr 1000 ------- 1 2.0 7.0 74 300 + 1.58 1 3 cbr 500 ------- 1 1.0 6.0 153 301 - 1.58 1 3 cbr 500 ------- 1 1.0 6.0 153 301 r 1.58125 0 3 tcp 1000 ------- 0 0.0 5.0 39 295 + 1.58125 3 4 tcp 1000 ------- 0 0.0 5.0 39 295 r 1.58126 5 4 ack 40 ------- 0 5.0 0.0 32 298 + 1.58126 4 3 ack 40 ------- 0 5.0 0.0 32 298 - 1.58126 4 3 ack 40 ------- 0 5.0 0.0 32 298 - 1.5816 3 4 cbr 1000 ------- 1 2.0 7.0 69 280 r 1.5836 3 4 cbr 500 ------- 1 1.0 6.0 139 271 + 1.5836 4 6 cbr 500 ------- 1 1.0 6.0 139 271 r 1.5836 4 6 cbr 500 ------- 1 1.0 6.0 137 266 - 1.5836 4 6 cbr 500 ------- 1 1.0 6.0 139 271 r 1.584 1 3 cbr 500 ------- 1 1.0 6.0 151 297 + 1.584 3 4 cbr 500 ------- 1 1.0 6.0 151 297 r 1.588 2 3 cbr 1000 ------- 1 2.0 7.0 73 296 + 1.588 3 4 cbr 1000 ------- 1 2.0 7.0 73 296 d 1.588 3 4 cbr 1000 ------- 1 2.0 7.0 73 296 r 1.5892 4 5 tcp 1000 ------- 0 0.0 5.0 33 267 + 1.5892 5 4 ack 40 ------- 0 5.0 0.0 33 302 - 1.5892 5 4 ack 40 ------- 0 5.0 0.0 33 302 - 1.5896 3 4 cbr 500 ------- 1 1.0 6.0 144 282 + 1.59 1 3 cbr 500 ------- 1 1.0 6.0 154 303 - 1.59 1 3 cbr 500 ------- 1 1.0 6.0 154 303 r 1.5916 3 4 cbr 1000 ------- 1 2.0 7.0 67 270 + 1.5916 4 7 cbr 1000 ------- 1 2.0 7.0 67 270 - 1.5916 4 7 cbr 1000 ------- 1 2.0 7.0 67 270 - 1.5936 3 4 tcp 1000 ------- 0 0.0 5.0 36 283 r 1.594 1 3 cbr 500 ------- 1 1.0 6.0 152 299 + 1.594 3 4 cbr 500 ------- 1 1.0 6.0 152 299 r 1.5996 3 4 tcp 1000 ------- 0 0.0 5.0 34 272 + 1.5996 4 5 tcp 1000 ------- 0 0.0 5.0 34 272 - 1.5996 4 5 tcp 1000 ------- 0 0.0 5.0 34 272 + 1.6 2 3 cbr 1000 ------- 1 2.0 7.0 75 304 - 1.6 2 3 cbr 1000 ------- 1 2.0 7.0 75 304 + 1.6 1 3 cbr 500 ------- 1 1.0 6.0 155 305 - 1.6 1 3 cbr 500 ------- 1 1.0 6.0 155 305 - 1.6016 3 4 cbr 500 ------- 1 1.0 6.0 145 285 r 1.6036 3 4 cbr 500 ------- 1 1.0 6.0 140 273 + 1.6036 4 6 cbr 500 ------- 1 1.0 6.0 140 273 - 1.6036 4 6 cbr 500 ------- 1 1.0 6.0 140 273 r 1.6036 4 7 cbr 1000 ------- 1 2.0 7.0 66 265 r 1.6036 4 6 cbr 500 ------- 1 1.0 6.0 138 268 r 1.604 1 3 cbr 500 ------- 1 1.0 6.0 153 301 + 1.604 3 4 cbr 500 ------- 1 1.0 6.0 153 301 - 1.6056 3 4 cbr 1000 ------- 1 2.0 7.0 70 284 r 1.6076 3 4 cbr 500 ------- 1 1.0 6.0 141 276 + 1.6076 4 6 cbr 500 ------- 1 1.0 6.0 141 276 r 1.6076 4 6 cbr 500 ------- 1 1.0 6.0 139 271 - 1.6076 4 6 cbr 500 ------- 1 1.0 6.0 141 276 r 1.608 2 3 cbr 1000 ------- 1 2.0 7.0 74 300 + 1.608 3 4 cbr 1000 ------- 1 2.0 7.0 74 300 r 1.60926 5 4 ack 40 ------- 0 5.0 0.0 33 302 + 1.60926 4 3 ack 40 ------- 0 5.0 0.0 33 302 - 1.60926 4 3 ack 40 ------- 0 5.0 0.0 33 302 + 1.61 1 3 cbr 500 ------- 1 1.0 6.0 156 306 - 1.61 1 3 cbr 500 ------- 1 1.0 6.0 156 306 - 1.6136 3 4 cbr 500 ------- 1 1.0 6.0 146 286 r 1.614 1 3 cbr 500 ------- 1 1.0 6.0 154 303 + 1.614 3 4 cbr 500 ------- 1 1.0 6.0 154 303 r 1.6156 3 4 cbr 1000 ------- 1 2.0 7.0 68 275 + 1.6156 4 7 cbr 1000 ------- 1 2.0 7.0 68 275 - 1.6156 4 7 cbr 1000 ------- 1 2.0 7.0 68 275 - 1.6176 3 4 cbr 500 ------- 1 1.0 6.0 147 288 r 1.6196 4 7 cbr 1000 ------- 1 2.0 7.0 67 270 + 1.62 2 3 cbr 1000 ------- 1 2.0 7.0 76 307 - 1.62 2 3 cbr 1000 ------- 1 2.0 7.0 76 307 + 1.62 1 3 cbr 500 ------- 1 1.0 6.0 157 308 - 1.62 1 3 cbr 500 ------- 1 1.0 6.0 157 308 r 1.6212 4 5 tcp 1000 ------- 0 0.0 5.0 34 272 + 1.6212 5 4 ack 40 ------- 0 5.0 0.0 34 309 - 1.6212 5 4 ack 40 ------- 0 5.0 0.0 34 309 - 1.6216 3 4 tcp 1000 ------- 0 0.0 5.0 37 289 r 1.6236 3 4 tcp 1000 ------- 0 0.0 5.0 35 279 + 1.6236 4 5 tcp 1000 ------- 0 0.0 5.0 35 279 - 1.6236 4 5 tcp 1000 ------- 0 0.0 5.0 35 279 r 1.624 1 3 cbr 500 ------- 1 1.0 6.0 155 305 + 1.624 3 4 cbr 500 ------- 1 1.0 6.0 155 305 r 1.6276 3 4 cbr 500 ------- 1 1.0 6.0 142 278 + 1.6276 4 6 cbr 500 ------- 1 1.0 6.0 142 278 - 1.6276 4 6 cbr 500 ------- 1 1.0 6.0 142 278 r 1.6276 4 6 cbr 500 ------- 1 1.0 6.0 140 273 r 1.628 2 3 cbr 1000 ------- 1 2.0 7.0 75 304 + 1.628 3 4 cbr 1000 ------- 1 2.0 7.0 75 304 - 1.6296 3 4 cbr 500 ------- 1 1.0 6.0 148 290 + 1.63 1 3 cbr 500 ------- 1 1.0 6.0 158 310 - 1.63 1 3 cbr 500 ------- 1 1.0 6.0 158 310 r 1.63158 4 3 ack 40 ------- 0 5.0 0.0 32 298 + 1.63158 3 0 ack 40 ------- 0 5.0 0.0 32 298 - 1.63158 3 0 ack 40 ------- 0 5.0 0.0 32 298 r 1.6316 3 4 cbr 500 ------- 1 1.0 6.0 143 281 + 1.6316 4 6 cbr 500 ------- 1 1.0 6.0 143 281 r 1.6316 4 6 cbr 500 ------- 1 1.0 6.0 141 276 - 1.6316 4 6 cbr 500 ------- 1 1.0 6.0 143 281 - 1.6336 3 4 cbr 500 ------- 1 1.0 6.0 149 292 r 1.634 1 3 cbr 500 ------- 1 1.0 6.0 156 306 + 1.634 3 4 cbr 500 ------- 1 1.0 6.0 156 306 - 1.6376 3 4 cbr 1000 ------- 1 2.0 7.0 72 291 r 1.6396 3 4 cbr 1000 ------- 1 2.0 7.0 69 280 + 1.6396 4 7 cbr 1000 ------- 1 2.0 7.0 69 280 - 1.6396 4 7 cbr 1000 ------- 1 2.0 7.0 69 280 + 1.64 2 3 cbr 1000 ------- 1 2.0 7.0 77 311 - 1.64 2 3 cbr 1000 ------- 1 2.0 7.0 77 311 + 1.64 1 3 cbr 500 ------- 1 1.0 6.0 159 312 - 1.64 1 3 cbr 500 ------- 1 1.0 6.0 159 312 r 1.64126 5 4 ack 40 ------- 0 5.0 0.0 34 309 + 1.64126 4 3 ack 40 ------- 0 5.0 0.0 34 309 - 1.64126 4 3 ack 40 ------- 0 5.0 0.0 34 309 r 1.6436 3 4 cbr 500 ------- 1 1.0 6.0 144 282 + 1.6436 4 6 cbr 500 ------- 1 1.0 6.0 144 282 - 1.6436 4 6 cbr 500 ------- 1 1.0 6.0 144 282 r 1.6436 4 7 cbr 1000 ------- 1 2.0 7.0 68 275 r 1.644 1 3 cbr 500 ------- 1 1.0 6.0 157 308 + 1.644 3 4 cbr 500 ------- 1 1.0 6.0 157 308 r 1.6452 4 5 tcp 1000 ------- 0 0.0 5.0 35 279 + 1.6452 5 4 ack 40 ------- 0 5.0 0.0 35 313 - 1.6452 5 4 ack 40 ------- 0 5.0 0.0 35 313 - 1.6456 3 4 tcp 1000 ------- 0 0.0 5.0 38 293 r 1.648 2 3 cbr 1000 ------- 1 2.0 7.0 76 307 + 1.648 3 4 cbr 1000 ------- 1 2.0 7.0 76 307 + 1.65 1 3 cbr 500 ------- 1 1.0 6.0 160 314 - 1.65 1 3 cbr 500 ------- 1 1.0 6.0 160 314 r 1.6516 3 4 tcp 1000 ------- 0 0.0 5.0 36 283 + 1.6516 4 5 tcp 1000 ------- 0 0.0 5.0 36 283 - 1.6516 4 5 tcp 1000 ------- 0 0.0 5.0 36 283 r 1.6516 4 6 cbr 500 ------- 1 1.0 6.0 142 278 r 1.65165 3 0 ack 40 ------- 0 5.0 0.0 32 298 + 1.65165 0 3 tcp 1000 ------- 0 0.0 5.0 40 315 - 1.65165 0 3 tcp 1000 ------- 0 0.0 5.0 40 315 - 1.6536 3 4 cbr 500 ------- 1 1.0 6.0 150 294 r 1.654 1 3 cbr 500 ------- 1 1.0 6.0 158 310 + 1.654 3 4 cbr 500 ------- 1 1.0 6.0 158 310 r 1.6556 3 4 cbr 500 ------- 1 1.0 6.0 145 285 + 1.6556 4 6 cbr 500 ------- 1 1.0 6.0 145 285 - 1.6556 4 6 cbr 500 ------- 1 1.0 6.0 145 285 r 1.6556 4 6 cbr 500 ------- 1 1.0 6.0 143 281 - 1.6576 3 4 tcp 1000 ------- 0 0.0 5.0 39 295 r 1.65958 4 3 ack 40 ------- 0 5.0 0.0 33 302 + 1.65958 3 0 ack 40 ------- 0 5.0 0.0 33 302 - 1.65958 3 0 ack 40 ------- 0 5.0 0.0 33 302 + 1.66 2 3 cbr 1000 ------- 1 2.0 7.0 78 316 - 1.66 2 3 cbr 1000 ------- 1 2.0 7.0 78 316 + 1.66 1 3 cbr 500 ------- 1 1.0 6.0 161 317 - 1.66 1 3 cbr 500 ------- 1 1.0 6.0 161 317 r 1.6636 3 4 cbr 1000 ------- 1 2.0 7.0 70 284 + 1.6636 4 7 cbr 1000 ------- 1 2.0 7.0 70 284 - 1.6636 4 7 cbr 1000 ------- 1 2.0 7.0 70 284 r 1.664 1 3 cbr 500 ------- 1 1.0 6.0 159 312 + 1.664 3 4 cbr 500 ------- 1 1.0 6.0 159 312 r 1.66526 5 4 ack 40 ------- 0 5.0 0.0 35 313 + 1.66526 4 3 ack 40 ------- 0 5.0 0.0 35 313 - 1.66526 4 3 ack 40 ------- 0 5.0 0.0 35 313 - 1.6656 3 4 cbr 500 ------- 1 1.0 6.0 151 297 r 1.6676 3 4 cbr 500 ------- 1 1.0 6.0 146 286 + 1.6676 4 6 cbr 500 ------- 1 1.0 6.0 146 286 - 1.6676 4 6 cbr 500 ------- 1 1.0 6.0 146 286 r 1.6676 4 7 cbr 1000 ------- 1 2.0 7.0 69 280 r 1.6676 4 6 cbr 500 ------- 1 1.0 6.0 144 282 r 1.668 2 3 cbr 1000 ------- 1 2.0 7.0 77 311 + 1.668 3 4 cbr 1000 ------- 1 2.0 7.0 77 311 - 1.6696 3 4 cbr 500 ------- 1 1.0 6.0 152 299 + 1.67 1 3 cbr 500 ------- 1 1.0 6.0 162 318 - 1.67 1 3 cbr 500 ------- 1 1.0 6.0 162 318 r 1.6716 3 4 cbr 500 ------- 1 1.0 6.0 147 288 + 1.6716 4 6 cbr 500 ------- 1 1.0 6.0 147 288 - 1.6716 4 6 cbr 500 ------- 1 1.0 6.0 147 288 r 1.6732 4 5 tcp 1000 ------- 0 0.0 5.0 36 283 + 1.6732 5 4 ack 40 ------- 0 5.0 0.0 36 319 - 1.6732 5 4 ack 40 ------- 0 5.0 0.0 36 319 r 1.67325 0 3 tcp 1000 ------- 0 0.0 5.0 40 315 + 1.67325 3 4 tcp 1000 ------- 0 0.0 5.0 40 315 - 1.6736 3 4 cbr 500 ------- 1 1.0 6.0 153 301 r 1.674 1 3 cbr 500 ------- 1 1.0 6.0 160 314 + 1.674 3 4 cbr 500 ------- 1 1.0 6.0 160 314 - 1.6776 3 4 cbr 1000 ------- 1 2.0 7.0 74 300 r 1.6796 3 4 tcp 1000 ------- 0 0.0 5.0 37 289 + 1.6796 4 5 tcp 1000 ------- 0 0.0 5.0 37 289 - 1.6796 4 5 tcp 1000 ------- 0 0.0 5.0 37 289 r 1.6796 4 6 cbr 500 ------- 1 1.0 6.0 145 285 r 1.67965 3 0 ack 40 ------- 0 5.0 0.0 33 302 + 1.67965 0 3 tcp 1000 ------- 0 0.0 5.0 41 320 - 1.67965 0 3 tcp 1000 ------- 0 0.0 5.0 41 320 + 1.68 2 3 cbr 1000 ------- 1 2.0 7.0 79 321 - 1.68 2 3 cbr 1000 ------- 1 2.0 7.0 79 321 + 1.68 1 3 cbr 500 ------- 1 1.0 6.0 163 322 - 1.68 1 3 cbr 500 ------- 1 1.0 6.0 163 322 r 1.6836 3 4 cbr 500 ------- 1 1.0 6.0 148 290 + 1.6836 4 6 cbr 500 ------- 1 1.0 6.0 148 290 - 1.6836 4 6 cbr 500 ------- 1 1.0 6.0 148 290 r 1.684 1 3 cbr 500 ------- 1 1.0 6.0 161 317 + 1.684 3 4 cbr 500 ------- 1 1.0 6.0 161 317 - 1.6856 3 4 cbr 500 ------- 1 1.0 6.0 154 303 r 1.6876 3 4 cbr 500 ------- 1 1.0 6.0 149 292 + 1.6876 4 6 cbr 500 ------- 1 1.0 6.0 149 292 - 1.6876 4 6 cbr 500 ------- 1 1.0 6.0 149 292 r 1.688 2 3 cbr 1000 ------- 1 2.0 7.0 78 316 + 1.688 3 4 cbr 1000 ------- 1 2.0 7.0 78 316 - 1.6896 3 4 cbr 500 ------- 1 1.0 6.0 155 305 + 1.69 1 3 cbr 500 ------- 1 1.0 6.0 164 323 - 1.69 1 3 cbr 500 ------- 1 1.0 6.0 164 323 r 1.69158 4 3 ack 40 ------- 0 5.0 0.0 34 309 + 1.69158 3 0 ack 40 ------- 0 5.0 0.0 34 309 - 1.69158 3 0 ack 40 ------- 0 5.0 0.0 34 309 r 1.6916 4 7 cbr 1000 ------- 1 2.0 7.0 70 284 r 1.6916 4 6 cbr 500 ------- 1 1.0 6.0 146 286 r 1.69326 5 4 ack 40 ------- 0 5.0 0.0 36 319 + 1.69326 4 3 ack 40 ------- 0 5.0 0.0 36 319 - 1.69326 4 3 ack 40 ------- 0 5.0 0.0 36 319 - 1.6936 3 4 cbr 1000 ------- 1 2.0 7.0 75 304 r 1.694 1 3 cbr 500 ------- 1 1.0 6.0 162 318 + 1.694 3 4 cbr 500 ------- 1 1.0 6.0 162 318 r 1.6956 3 4 cbr 1000 ------- 1 2.0 7.0 72 291 + 1.6956 4 7 cbr 1000 ------- 1 2.0 7.0 72 291 - 1.6956 4 7 cbr 1000 ------- 1 2.0 7.0 72 291 r 1.6956 4 6 cbr 500 ------- 1 1.0 6.0 147 288 + 1.7 2 3 cbr 1000 ------- 1 2.0 7.0 80 324 - 1.7 2 3 cbr 1000 ------- 1 2.0 7.0 80 324 + 1.7 1 3 cbr 500 ------- 1 1.0 6.0 165 325 - 1.7 1 3 cbr 500 ------- 1 1.0 6.0 165 325 r 1.7012 4 5 tcp 1000 ------- 0 0.0 5.0 37 289 + 1.7012 5 4 ack 40 ------- 0 5.0 0.0 37 326 - 1.7012 5 4 ack 40 ------- 0 5.0 0.0 37 326 r 1.70125 0 3 tcp 1000 ------- 0 0.0 5.0 41 320 + 1.70125 3 4 tcp 1000 ------- 0 0.0 5.0 41 320 - 1.7016 3 4 cbr 500 ------- 1 1.0 6.0 156 306 r 1.7036 3 4 tcp 1000 ------- 0 0.0 5.0 38 293 + 1.7036 4 5 tcp 1000 ------- 0 0.0 5.0 38 293 - 1.7036 4 5 tcp 1000 ------- 0 0.0 5.0 38 293 r 1.704 1 3 cbr 500 ------- 1 1.0 6.0 163 322 + 1.704 3 4 cbr 500 ------- 1 1.0 6.0 163 322 - 1.7056 3 4 cbr 500 ------- 1 1.0 6.0 157 308 r 1.7076 3 4 cbr 500 ------- 1 1.0 6.0 150 294 + 1.7076 4 6 cbr 500 ------- 1 1.0 6.0 150 294 - 1.7076 4 6 cbr 500 ------- 1 1.0 6.0 150 294 r 1.7076 4 6 cbr 500 ------- 1 1.0 6.0 148 290 r 1.708 2 3 cbr 1000 ------- 1 2.0 7.0 79 321 + 1.708 3 4 cbr 1000 ------- 1 2.0 7.0 79 321 - 1.7096 3 4 cbr 1000 ------- 1 2.0 7.0 76 307 + 1.71 1 3 cbr 500 ------- 1 1.0 6.0 166 327 - 1.71 1 3 cbr 500 ------- 1 1.0 6.0 166 327 r 1.7116 4 6 cbr 500 ------- 1 1.0 6.0 149 292 r 1.71165 3 0 ack 40 ------- 0 5.0 0.0 34 309 + 1.71165 0 3 tcp 1000 ------- 0 0.0 5.0 42 328 - 1.71165 0 3 tcp 1000 ------- 0 0.0 5.0 42 328 r 1.714 1 3 cbr 500 ------- 1 1.0 6.0 164 323 + 1.714 3 4 cbr 500 ------- 1 1.0 6.0 164 323 r 1.71558 4 3 ack 40 ------- 0 5.0 0.0 35 313 + 1.71558 3 0 ack 40 ------- 0 5.0 0.0 35 313 - 1.71558 3 0 ack 40 ------- 0 5.0 0.0 35 313 r 1.7156 3 4 tcp 1000 ------- 0 0.0 5.0 39 295 + 1.7156 4 5 tcp 1000 ------- 0 0.0 5.0 39 295 - 1.7156 4 5 tcp 1000 ------- 0 0.0 5.0 39 295 - 1.7176 3 4 cbr 500 ------- 1 1.0 6.0 158 310 r 1.7196 3 4 cbr 500 ------- 1 1.0 6.0 151 297 + 1.7196 4 6 cbr 500 ------- 1 1.0 6.0 151 297 - 1.7196 4 6 cbr 500 ------- 1 1.0 6.0 151 297 + 1.72 2 3 cbr 1000 ------- 1 2.0 7.0 81 329 - 1.72 2 3 cbr 1000 ------- 1 2.0 7.0 81 329 + 1.72 1 3 cbr 500 ------- 1 1.0 6.0 167 330 - 1.72 1 3 cbr 500 ------- 1 1.0 6.0 167 330 r 1.72126 5 4 ack 40 ------- 0 5.0 0.0 37 326 + 1.72126 4 3 ack 40 ------- 0 5.0 0.0 37 326 - 1.72126 4 3 ack 40 ------- 0 5.0 0.0 37 326 - 1.7216 3 4 cbr 500 ------- 1 1.0 6.0 159 312 r 1.7236 3 4 cbr 500 ------- 1 1.0 6.0 152 299 + 1.7236 4 6 cbr 500 ------- 1 1.0 6.0 152 299 r 1.7236 4 7 cbr 1000 ------- 1 2.0 7.0 72 291 - 1.7236 4 6 cbr 500 ------- 1 1.0 6.0 152 299 r 1.724 1 3 cbr 500 ------- 1 1.0 6.0 165 325 + 1.724 3 4 cbr 500 ------- 1 1.0 6.0 165 325 r 1.7252 4 5 tcp 1000 ------- 0 0.0 5.0 38 293 + 1.7252 5 4 ack 40 ------- 0 5.0 0.0 38 331 - 1.7252 5 4 ack 40 ------- 0 5.0 0.0 38 331 - 1.7256 3 4 cbr 1000 ------- 1 2.0 7.0 77 311 r 1.7276 3 4 cbr 500 ------- 1 1.0 6.0 153 301 + 1.7276 4 6 cbr 500 ------- 1 1.0 6.0 153 301 - 1.7276 4 6 cbr 500 ------- 1 1.0 6.0 153 301 r 1.728 2 3 cbr 1000 ------- 1 2.0 7.0 80 324 + 1.728 3 4 cbr 1000 ------- 1 2.0 7.0 80 324 + 1.73 1 3 cbr 500 ------- 1 1.0 6.0 168 332 - 1.73 1 3 cbr 500 ------- 1 1.0 6.0 168 332 r 1.7316 4 6 cbr 500 ------- 1 1.0 6.0 150 294 r 1.73325 0 3 tcp 1000 ------- 0 0.0 5.0 42 328 + 1.73325 3 4 tcp 1000 ------- 0 0.0 5.0 42 328 - 1.7336 3 4 tcp 1000 ------- 0 0.0 5.0 40 315 r 1.734 1 3 cbr 500 ------- 1 1.0 6.0 166 327 + 1.734 3 4 cbr 500 ------- 1 1.0 6.0 166 327 r 1.7356 3 4 cbr 1000 ------- 1 2.0 7.0 74 300 + 1.7356 4 7 cbr 1000 ------- 1 2.0 7.0 74 300 - 1.7356 4 7 cbr 1000 ------- 1 2.0 7.0 74 300 r 1.73565 3 0 ack 40 ------- 0 5.0 0.0 35 313 + 1.73565 0 3 tcp 1000 ------- 0 0.0 5.0 43 333 - 1.73565 0 3 tcp 1000 ------- 0 0.0 5.0 43 333 r 1.7372 4 5 tcp 1000 ------- 0 0.0 5.0 39 295 + 1.7372 5 4 ack 40 ------- 0 5.0 0.0 39 334 - 1.7372 5 4 ack 40 ------- 0 5.0 0.0 39 334 r 1.7396 3 4 cbr 500 ------- 1 1.0 6.0 154 303 + 1.7396 4 6 cbr 500 ------- 1 1.0 6.0 154 303 - 1.7396 4 6 cbr 500 ------- 1 1.0 6.0 154 303 + 1.74 2 3 cbr 1000 ------- 1 2.0 7.0 82 335 - 1.74 2 3 cbr 1000 ------- 1 2.0 7.0 82 335 + 1.74 1 3 cbr 500 ------- 1 1.0 6.0 169 336 - 1.74 1 3 cbr 500 ------- 1 1.0 6.0 169 336 - 1.7416 3 4 cbr 500 ------- 1 1.0 6.0 160 314 r 1.74358 4 3 ack 40 ------- 0 5.0 0.0 36 319 + 1.74358 3 0 ack 40 ------- 0 5.0 0.0 36 319 - 1.74358 3 0 ack 40 ------- 0 5.0 0.0 36 319 r 1.7436 3 4 cbr 500 ------- 1 1.0 6.0 155 305 + 1.7436 4 6 cbr 500 ------- 1 1.0 6.0 155 305 r 1.7436 4 6 cbr 500 ------- 1 1.0 6.0 151 297 - 1.7436 4 6 cbr 500 ------- 1 1.0 6.0 155 305 r 1.744 1 3 cbr 500 ------- 1 1.0 6.0 167 330 + 1.744 3 4 cbr 500 ------- 1 1.0 6.0 167 330 r 1.74526 5 4 ack 40 ------- 0 5.0 0.0 38 331 + 1.74526 4 3 ack 40 ------- 0 5.0 0.0 38 331 - 1.74526 4 3 ack 40 ------- 0 5.0 0.0 38 331 - 1.7456 3 4 cbr 500 ------- 1 1.0 6.0 161 317 r 1.7476 4 6 cbr 500 ------- 1 1.0 6.0 152 299 r 1.748 2 3 cbr 1000 ------- 1 2.0 7.0 81 329 + 1.748 3 4 cbr 1000 ------- 1 2.0 7.0 81 329 - 1.7496 3 4 cbr 1000 ------- 1 2.0 7.0 78 316 + 1.75 1 3 cbr 500 ------- 1 1.0 6.0 170 337 - 1.75 1 3 cbr 500 ------- 1 1.0 6.0 170 337 r 1.7516 3 4 cbr 1000 ------- 1 2.0 7.0 75 304 + 1.7516 4 7 cbr 1000 ------- 1 2.0 7.0 75 304 - 1.7516 4 7 cbr 1000 ------- 1 2.0 7.0 75 304 r 1.7516 4 6 cbr 500 ------- 1 1.0 6.0 153 301 r 1.754 1 3 cbr 500 ------- 1 1.0 6.0 168 332 + 1.754 3 4 cbr 500 ------- 1 1.0 6.0 168 332 r 1.7556 3 4 cbr 500 ------- 1 1.0 6.0 156 306 + 1.7556 4 6 cbr 500 ------- 1 1.0 6.0 156 306 - 1.7556 4 6 cbr 500 ------- 1 1.0 6.0 156 306 r 1.75725 0 3 tcp 1000 ------- 0 0.0 5.0 43 333 + 1.75725 3 4 tcp 1000 ------- 0 0.0 5.0 43 333 r 1.75726 5 4 ack 40 ------- 0 5.0 0.0 39 334 + 1.75726 4 3 ack 40 ------- 0 5.0 0.0 39 334 - 1.75726 4 3 ack 40 ------- 0 5.0 0.0 39 334 - 1.7576 3 4 cbr 500 ------- 1 1.0 6.0 162 318 r 1.7596 3 4 cbr 500 ------- 1 1.0 6.0 157 308 + 1.7596 4 6 cbr 500 ------- 1 1.0 6.0 157 308 - 1.7596 4 6 cbr 500 ------- 1 1.0 6.0 157 308 + 1.76 2 3 cbr 1000 ------- 1 2.0 7.0 83 338 - 1.76 2 3 cbr 1000 ------- 1 2.0 7.0 83 338 + 1.76 1 3 cbr 500 ------- 1 1.0 6.0 171 339 - 1.76 1 3 cbr 500 ------- 1 1.0 6.0 171 339 - 1.7616 3 4 tcp 1000 ------- 0 0.0 5.0 41 320 r 1.7636 4 7 cbr 1000 ------- 1 2.0 7.0 74 300 r 1.7636 4 6 cbr 500 ------- 1 1.0 6.0 154 303 r 1.76365 3 0 ack 40 ------- 0 5.0 0.0 36 319 + 1.76365 0 3 tcp 1000 ------- 0 0.0 5.0 44 340 - 1.76365 0 3 tcp 1000 ------- 0 0.0 5.0 44 340 r 1.764 1 3 cbr 500 ------- 1 1.0 6.0 169 336 + 1.764 3 4 cbr 500 ------- 1 1.0 6.0 169 336 r 1.7676 3 4 cbr 1000 ------- 1 2.0 7.0 76 307 + 1.7676 4 7 cbr 1000 ------- 1 2.0 7.0 76 307 - 1.7676 4 7 cbr 1000 ------- 1 2.0 7.0 76 307 r 1.7676 4 6 cbr 500 ------- 1 1.0 6.0 155 305 r 1.768 2 3 cbr 1000 ------- 1 2.0 7.0 82 335 + 1.768 3 4 cbr 1000 ------- 1 2.0 7.0 82 335 - 1.7696 3 4 cbr 500 ------- 1 1.0 6.0 163 322 + 1.77 1 3 cbr 500 ------- 1 1.0 6.0 172 341 - 1.77 1 3 cbr 500 ------- 1 1.0 6.0 172 341 r 1.77158 4 3 ack 40 ------- 0 5.0 0.0 37 326 + 1.77158 3 0 ack 40 ------- 0 5.0 0.0 37 326 - 1.77158 3 0 ack 40 ------- 0 5.0 0.0 37 326 r 1.7716 3 4 cbr 500 ------- 1 1.0 6.0 158 310 + 1.7716 4 6 cbr 500 ------- 1 1.0 6.0 158 310 - 1.7716 4 6 cbr 500 ------- 1 1.0 6.0 158 310 - 1.7736 3 4 cbr 1000 ------- 1 2.0 7.0 79 321 r 1.774 1 3 cbr 500 ------- 1 1.0 6.0 170 337 + 1.774 3 4 cbr 500 ------- 1 1.0 6.0 170 337 r 1.7756 3 4 cbr 500 ------- 1 1.0 6.0 159 312 + 1.7756 4 6 cbr 500 ------- 1 1.0 6.0 159 312 - 1.7756 4 6 cbr 500 ------- 1 1.0 6.0 159 312 r 1.7796 4 7 cbr 1000 ------- 1 2.0 7.0 75 304 r 1.7796 4 6 cbr 500 ------- 1 1.0 6.0 156 306 + 1.78 2 3 cbr 1000 ------- 1 2.0 7.0 84 342 - 1.78 2 3 cbr 1000 ------- 1 2.0 7.0 84 342 + 1.78 1 3 cbr 500 ------- 1 1.0 6.0 173 343 - 1.78 1 3 cbr 500 ------- 1 1.0 6.0 173 343 - 1.7816 3 4 cbr 500 ------- 1 1.0 6.0 164 323 r 1.7836 3 4 cbr 1000 ------- 1 2.0 7.0 77 311 + 1.7836 4 7 cbr 1000 ------- 1 2.0 7.0 77 311 - 1.7836 4 7 cbr 1000 ------- 1 2.0 7.0 77 311 r 1.7836 4 6 cbr 500 ------- 1 1.0 6.0 157 308 r 1.784 1 3 cbr 500 ------- 1 1.0 6.0 171 339 + 1.784 3 4 cbr 500 ------- 1 1.0 6.0 171 339 r 1.78525 0 3 tcp 1000 ------- 0 0.0 5.0 44 340 + 1.78525 3 4 tcp 1000 ------- 0 0.0 5.0 44 340 - 1.7856 3 4 cbr 500 ------- 1 1.0 6.0 165 325 r 1.788 2 3 cbr 1000 ------- 1 2.0 7.0 83 338 + 1.788 3 4 cbr 1000 ------- 1 2.0 7.0 83 338 - 1.7896 3 4 cbr 1000 ------- 1 2.0 7.0 80 324 + 1.79 1 3 cbr 500 ------- 1 1.0 6.0 174 344 - 1.79 1 3 cbr 500 ------- 1 1.0 6.0 174 344 r 1.7916 3 4 tcp 1000 ------- 0 0.0 5.0 40 315 + 1.7916 4 5 tcp 1000 ------- 0 0.0 5.0 40 315 - 1.7916 4 5 tcp 1000 ------- 0 0.0 5.0 40 315 r 1.79165 3 0 ack 40 ------- 0 5.0 0.0 37 326 + 1.79165 0 3 tcp 1000 ------- 0 0.0 5.0 45 345 - 1.79165 0 3 tcp 1000 ------- 0 0.0 5.0 45 345 r 1.794 1 3 cbr 500 ------- 1 1.0 6.0 172 341 + 1.794 3 4 cbr 500 ------- 1 1.0 6.0 172 341 r 1.79558 4 3 ack 40 ------- 0 5.0 0.0 38 331 + 1.79558 3 0 ack 40 ------- 0 5.0 0.0 38 331 - 1.79558 3 0 ack 40 ------- 0 5.0 0.0 38 331 r 1.7956 3 4 cbr 500 ------- 1 1.0 6.0 160 314 + 1.7956 4 6 cbr 500 ------- 1 1.0 6.0 160 314 - 1.7956 4 6 cbr 500 ------- 1 1.0 6.0 160 314 r 1.7956 4 7 cbr 1000 ------- 1 2.0 7.0 76 307 r 1.7956 4 6 cbr 500 ------- 1 1.0 6.0 158 310 - 1.7976 3 4 tcp 1000 ------- 0 0.0 5.0 42 328 r 1.7996 3 4 cbr 500 ------- 1 1.0 6.0 161 317 + 1.7996 4 6 cbr 500 ------- 1 1.0 6.0 161 317 r 1.7996 4 6 cbr 500 ------- 1 1.0 6.0 159 312 - 1.7996 4 6 cbr 500 ------- 1 1.0 6.0 161 317 + 1.8 2 3 cbr 1000 ------- 1 2.0 7.0 85 346 - 1.8 2 3 cbr 1000 ------- 1 2.0 7.0 85 346 + 1.8 1 3 cbr 500 ------- 1 1.0 6.0 175 347 - 1.8 1 3 cbr 500 ------- 1 1.0 6.0 175 347 r 1.804 1 3 cbr 500 ------- 1 1.0 6.0 173 343 + 1.804 3 4 cbr 500 ------- 1 1.0 6.0 173 343 - 1.8056 3 4 cbr 500 ------- 1 1.0 6.0 166 327 r 1.80758 4 3 ack 40 ------- 0 5.0 0.0 39 334 + 1.80758 3 0 ack 40 ------- 0 5.0 0.0 39 334 - 1.80758 3 0 ack 40 ------- 0 5.0 0.0 39 334 r 1.8076 3 4 cbr 1000 ------- 1 2.0 7.0 78 316 + 1.8076 4 7 cbr 1000 ------- 1 2.0 7.0 78 316 - 1.8076 4 7 cbr 1000 ------- 1 2.0 7.0 78 316 r 1.808 2 3 cbr 1000 ------- 1 2.0 7.0 84 342 + 1.808 3 4 cbr 1000 ------- 1 2.0 7.0 84 342 - 1.8096 3 4 cbr 500 ------- 1 1.0 6.0 167 330 + 1.81 1 3 cbr 500 ------- 1 1.0 6.0 176 348 - 1.81 1 3 cbr 500 ------- 1 1.0 6.0 176 348 r 1.8116 3 4 cbr 500 ------- 1 1.0 6.0 162 318 + 1.8116 4 6 cbr 500 ------- 1 1.0 6.0 162 318 - 1.8116 4 6 cbr 500 ------- 1 1.0 6.0 162 318 r 1.8116 4 7 cbr 1000 ------- 1 2.0 7.0 77 311 r 1.8132 4 5 tcp 1000 ------- 0 0.0 5.0 40 315 + 1.8132 5 4 ack 40 ------- 0 5.0 0.0 40 349 - 1.8132 5 4 ack 40 ------- 0 5.0 0.0 40 349 r 1.81325 0 3 tcp 1000 ------- 0 0.0 5.0 45 345 + 1.81325 3 4 tcp 1000 ------- 0 0.0 5.0 45 345 - 1.8136 3 4 cbr 1000 ------- 1 2.0 7.0 81 329 r 1.814 1 3 cbr 500 ------- 1 1.0 6.0 174 344 + 1.814 3 4 cbr 500 ------- 1 1.0 6.0 174 344 r 1.81565 3 0 ack 40 ------- 0 5.0 0.0 38 331 + 1.81565 0 3 tcp 1000 ------- 0 0.0 5.0 46 350 - 1.81565 0 3 tcp 1000 ------- 0 0.0 5.0 46 350 r 1.8196 3 4 tcp 1000 ------- 0 0.0 5.0 41 320 + 1.8196 4 5 tcp 1000 ------- 0 0.0 5.0 41 320 - 1.8196 4 5 tcp 1000 ------- 0 0.0 5.0 41 320 r 1.8196 4 6 cbr 500 ------- 1 1.0 6.0 160 314 + 1.82 2 3 cbr 1000 ------- 1 2.0 7.0 86 351 - 1.82 2 3 cbr 1000 ------- 1 2.0 7.0 86 351 + 1.82 1 3 cbr 500 ------- 1 1.0 6.0 177 352 - 1.82 1 3 cbr 500 ------- 1 1.0 6.0 177 352 - 1.8216 3 4 cbr 500 ------- 1 1.0 6.0 168 332 r 1.8236 3 4 cbr 500 ------- 1 1.0 6.0 163 322 + 1.8236 4 6 cbr 500 ------- 1 1.0 6.0 163 322 - 1.8236 4 6 cbr 500 ------- 1 1.0 6.0 163 322 r 1.8236 4 6 cbr 500 ------- 1 1.0 6.0 161 317 r 1.824 1 3 cbr 500 ------- 1 1.0 6.0 175 347 + 1.824 3 4 cbr 500 ------- 1 1.0 6.0 175 347 - 1.8256 3 4 tcp 1000 ------- 0 0.0 5.0 43 333 r 1.82765 3 0 ack 40 ------- 0 5.0 0.0 39 334 + 1.82765 0 3 tcp 1000 ------- 0 0.0 5.0 47 353 - 1.82765 0 3 tcp 1000 ------- 0 0.0 5.0 47 353 r 1.828 2 3 cbr 1000 ------- 1 2.0 7.0 85 346 + 1.828 3 4 cbr 1000 ------- 1 2.0 7.0 85 346 + 1.83 1 3 cbr 500 ------- 1 1.0 6.0 178 354 - 1.83 1 3 cbr 500 ------- 1 1.0 6.0 178 354 r 1.8316 3 4 cbr 1000 ------- 1 2.0 7.0 79 321 + 1.8316 4 7 cbr 1000 ------- 1 2.0 7.0 79 321 - 1.8316 4 7 cbr 1000 ------- 1 2.0 7.0 79 321 r 1.83326 5 4 ack 40 ------- 0 5.0 0.0 40 349 + 1.83326 4 3 ack 40 ------- 0 5.0 0.0 40 349 - 1.83326 4 3 ack 40 ------- 0 5.0 0.0 40 349 - 1.8336 3 4 cbr 500 ------- 1 1.0 6.0 169 336 r 1.834 1 3 cbr 500 ------- 1 1.0 6.0 176 348 + 1.834 3 4 cbr 500 ------- 1 1.0 6.0 176 348 r 1.8356 3 4 cbr 500 ------- 1 1.0 6.0 164 323 + 1.8356 4 6 cbr 500 ------- 1 1.0 6.0 164 323 - 1.8356 4 6 cbr 500 ------- 1 1.0 6.0 164 323 r 1.8356 4 7 cbr 1000 ------- 1 2.0 7.0 78 316 r 1.8356 4 6 cbr 500 ------- 1 1.0 6.0 162 318 r 1.83725 0 3 tcp 1000 ------- 0 0.0 5.0 46 350 + 1.83725 3 4 tcp 1000 ------- 0 0.0 5.0 46 350 - 1.8376 3 4 cbr 1000 ------- 1 2.0 7.0 82 335 r 1.8396 3 4 cbr 500 ------- 1 1.0 6.0 165 325 + 1.8396 4 6 cbr 500 ------- 1 1.0 6.0 165 325 - 1.8396 4 6 cbr 500 ------- 1 1.0 6.0 165 325 + 1.84 2 3 cbr 1000 ------- 1 2.0 7.0 87 355 - 1.84 2 3 cbr 1000 ------- 1 2.0 7.0 87 355 + 1.84 1 3 cbr 500 ------- 1 1.0 6.0 179 356 - 1.84 1 3 cbr 500 ------- 1 1.0 6.0 179 356 r 1.8412 4 5 tcp 1000 ------- 0 0.0 5.0 41 320 + 1.8412 5 4 ack 40 ------- 0 5.0 0.0 41 357 - 1.8412 5 4 ack 40 ------- 0 5.0 0.0 41 357 r 1.844 1 3 cbr 500 ------- 1 1.0 6.0 177 352 + 1.844 3 4 cbr 500 ------- 1 1.0 6.0 177 352 - 1.8456 3 4 cbr 500 ------- 1 1.0 6.0 170 337 r 1.8476 3 4 cbr 1000 ------- 1 2.0 7.0 80 324 + 1.8476 4 7 cbr 1000 ------- 1 2.0 7.0 80 324 - 1.8476 4 7 cbr 1000 ------- 1 2.0 7.0 80 324 r 1.8476 4 6 cbr 500 ------- 1 1.0 6.0 163 322 r 1.848 2 3 cbr 1000 ------- 1 2.0 7.0 86 351 + 1.848 3 4 cbr 1000 ------- 1 2.0 7.0 86 351 r 1.84925 0 3 tcp 1000 ------- 0 0.0 5.0 47 353 + 1.84925 3 4 tcp 1000 ------- 0 0.0 5.0 47 353 d 1.84925 3 4 tcp 1000 ------- 0 0.0 5.0 47 353 - 1.8496 3 4 cbr 500 ------- 1 1.0 6.0 171 339 + 1.85 1 3 cbr 500 ------- 1 1.0 6.0 180 358 - 1.85 1 3 cbr 500 ------- 1 1.0 6.0 180 358 - 1.8536 3 4 tcp 1000 ------- 0 0.0 5.0 44 340 r 1.854 1 3 cbr 500 ------- 1 1.0 6.0 178 354 + 1.854 3 4 cbr 500 ------- 1 1.0 6.0 178 354 r 1.8556 3 4 tcp 1000 ------- 0 0.0 5.0 42 328 + 1.8556 4 5 tcp 1000 ------- 0 0.0 5.0 42 328 - 1.8556 4 5 tcp 1000 ------- 0 0.0 5.0 42 328 r 1.8596 3 4 cbr 500 ------- 1 1.0 6.0 166 327 + 1.8596 4 6 cbr 500 ------- 1 1.0 6.0 166 327 - 1.8596 4 6 cbr 500 ------- 1 1.0 6.0 166 327 r 1.8596 4 7 cbr 1000 ------- 1 2.0 7.0 79 321 r 1.8596 4 6 cbr 500 ------- 1 1.0 6.0 164 323 + 1.86 2 3 cbr 1000 ------- 1 2.0 7.0 88 359 - 1.86 2 3 cbr 1000 ------- 1 2.0 7.0 88 359 + 1.86 1 3 cbr 500 ------- 1 1.0 6.0 181 360 - 1.86 1 3 cbr 500 ------- 1 1.0 6.0 181 360 r 1.86126 5 4 ack 40 ------- 0 5.0 0.0 41 357 + 1.86126 4 3 ack 40 ------- 0 5.0 0.0 41 357 - 1.86126 4 3 ack 40 ------- 0 5.0 0.0 41 357 - 1.8616 3 4 cbr 1000 ------- 1 2.0 7.0 83 338 r 1.8636 3 4 cbr 500 ------- 1 1.0 6.0 167 330 + 1.8636 4 6 cbr 500 ------- 1 1.0 6.0 167 330 r 1.8636 4 6 cbr 500 ------- 1 1.0 6.0 165 325 - 1.8636 4 6 cbr 500 ------- 1 1.0 6.0 167 330 r 1.864 1 3 cbr 500 ------- 1 1.0 6.0 179 356 + 1.864 3 4 cbr 500 ------- 1 1.0 6.0 179 356 r 1.868 2 3 cbr 1000 ------- 1 2.0 7.0 87 355 + 1.868 3 4 cbr 1000 ------- 1 2.0 7.0 87 355 - 1.8696 3 4 cbr 500 ------- 1 1.0 6.0 172 341 + 1.87 1 3 cbr 500 ------- 1 1.0 6.0 182 361 - 1.87 1 3 cbr 500 ------- 1 1.0 6.0 182 361 r 1.8716 3 4 cbr 1000 ------- 1 2.0 7.0 81 329 + 1.8716 4 7 cbr 1000 ------- 1 2.0 7.0 81 329 - 1.8716 4 7 cbr 1000 ------- 1 2.0 7.0 81 329 - 1.8736 3 4 cbr 500 ------- 1 1.0 6.0 173 343 r 1.874 1 3 cbr 500 ------- 1 1.0 6.0 180 358 + 1.874 3 4 cbr 500 ------- 1 1.0 6.0 180 358 r 1.8756 3 4 cbr 500 ------- 1 1.0 6.0 168 332 + 1.8756 4 6 cbr 500 ------- 1 1.0 6.0 168 332 - 1.8756 4 6 cbr 500 ------- 1 1.0 6.0 168 332 r 1.8756 4 7 cbr 1000 ------- 1 2.0 7.0 80 324 r 1.8772 4 5 tcp 1000 ------- 0 0.0 5.0 42 328 + 1.8772 5 4 ack 40 ------- 0 5.0 0.0 42 362 - 1.8772 5 4 ack 40 ------- 0 5.0 0.0 42 362 - 1.8776 3 4 cbr 1000 ------- 1 2.0 7.0 84 342 + 1.88 2 3 cbr 1000 ------- 1 2.0 7.0 89 363 - 1.88 2 3 cbr 1000 ------- 1 2.0 7.0 89 363 + 1.88 1 3 cbr 500 ------- 1 1.0 6.0 183 364 - 1.88 1 3 cbr 500 ------- 1 1.0 6.0 183 364 r 1.88358 4 3 ack 40 ------- 0 5.0 0.0 40 349 + 1.88358 3 0 ack 40 ------- 0 5.0 0.0 40 349 - 1.88358 3 0 ack 40 ------- 0 5.0 0.0 40 349 r 1.8836 3 4 tcp 1000 ------- 0 0.0 5.0 43 333 + 1.8836 4 5 tcp 1000 ------- 0 0.0 5.0 43 333 - 1.8836 4 5 tcp 1000 ------- 0 0.0 5.0 43 333 r 1.8836 4 6 cbr 500 ------- 1 1.0 6.0 166 327 r 1.884 1 3 cbr 500 ------- 1 1.0 6.0 181 360 + 1.884 3 4 cbr 500 ------- 1 1.0 6.0 181 360 - 1.8856 3 4 tcp 1000 ------- 0 0.0 5.0 45 345 r 1.8876 3 4 cbr 500 ------- 1 1.0 6.0 169 336 + 1.8876 4 6 cbr 500 ------- 1 1.0 6.0 169 336 - 1.8876 4 6 cbr 500 ------- 1 1.0 6.0 169 336 r 1.8876 4 6 cbr 500 ------- 1 1.0 6.0 167 330 r 1.888 2 3 cbr 1000 ------- 1 2.0 7.0 88 359 + 1.888 3 4 cbr 1000 ------- 1 2.0 7.0 88 359 + 1.89 1 3 cbr 500 ------- 1 1.0 6.0 184 365 - 1.89 1 3 cbr 500 ------- 1 1.0 6.0 184 365 - 1.8936 3 4 cbr 500 ------- 1 1.0 6.0 174 344 r 1.894 1 3 cbr 500 ------- 1 1.0 6.0 182 361 + 1.894 3 4 cbr 500 ------- 1 1.0 6.0 182 361 r 1.8956 3 4 cbr 1000 ------- 1 2.0 7.0 82 335 + 1.8956 4 7 cbr 1000 ------- 1 2.0 7.0 82 335 - 1.8956 4 7 cbr 1000 ------- 1 2.0 7.0 82 335 r 1.89726 5 4 ack 40 ------- 0 5.0 0.0 42 362 + 1.89726 4 3 ack 40 ------- 0 5.0 0.0 42 362 - 1.89726 4 3 ack 40 ------- 0 5.0 0.0 42 362 - 1.8976 3 4 cbr 500 ------- 1 1.0 6.0 175 347 r 1.8996 3 4 cbr 500 ------- 1 1.0 6.0 170 337 + 1.8996 4 6 cbr 500 ------- 1 1.0 6.0 170 337 - 1.8996 4 6 cbr 500 ------- 1 1.0 6.0 170 337 r 1.8996 4 7 cbr 1000 ------- 1 2.0 7.0 81 329 r 1.8996 4 6 cbr 500 ------- 1 1.0 6.0 168 332 + 1.9 2 3 cbr 1000 ------- 1 2.0 7.0 90 366 - 1.9 2 3 cbr 1000 ------- 1 2.0 7.0 90 366 + 1.9 1 3 cbr 500 ------- 1 1.0 6.0 185 367 - 1.9 1 3 cbr 500 ------- 1 1.0 6.0 185 367 - 1.9016 3 4 cbr 1000 ------- 1 2.0 7.0 85 346 r 1.9036 3 4 cbr 500 ------- 1 1.0 6.0 171 339 + 1.9036 4 6 cbr 500 ------- 1 1.0 6.0 171 339 - 1.9036 4 6 cbr 500 ------- 1 1.0 6.0 171 339 r 1.90365 3 0 ack 40 ------- 0 5.0 0.0 40 349 + 1.90365 0 3 tcp 1000 ------- 0 0.0 5.0 48 368 - 1.90365 0 3 tcp 1000 ------- 0 0.0 5.0 48 368 r 1.904 1 3 cbr 500 ------- 1 1.0 6.0 183 364 + 1.904 3 4 cbr 500 ------- 1 1.0 6.0 183 364 r 1.9052 4 5 tcp 1000 ------- 0 0.0 5.0 43 333 + 1.9052 5 4 ack 40 ------- 0 5.0 0.0 43 369 - 1.9052 5 4 ack 40 ------- 0 5.0 0.0 43 369 r 1.908 2 3 cbr 1000 ------- 1 2.0 7.0 89 363 + 1.908 3 4 cbr 1000 ------- 1 2.0 7.0 89 363 - 1.9096 3 4 cbr 500 ------- 1 1.0 6.0 176 348 + 1.91 1 3 cbr 500 ------- 1 1.0 6.0 186 370 - 1.91 1 3 cbr 500 ------- 1 1.0 6.0 186 370 r 1.91158 4 3 ack 40 ------- 0 5.0 0.0 41 357 + 1.91158 3 0 ack 40 ------- 0 5.0 0.0 41 357 - 1.91158 3 0 ack 40 ------- 0 5.0 0.0 41 357 r 1.9116 3 4 tcp 1000 ------- 0 0.0 5.0 44 340 + 1.9116 4 5 tcp 1000 ------- 0 0.0 5.0 44 340 - 1.9116 4 5 tcp 1000 ------- 0 0.0 5.0 44 340 r 1.9116 4 6 cbr 500 ------- 1 1.0 6.0 169 336 - 1.9136 3 4 tcp 1000 ------- 0 0.0 5.0 46 350 r 1.914 1 3 cbr 500 ------- 1 1.0 6.0 184 365 + 1.914 3 4 cbr 500 ------- 1 1.0 6.0 184 365 r 1.9196 3 4 cbr 1000 ------- 1 2.0 7.0 83 338 + 1.9196 4 7 cbr 1000 ------- 1 2.0 7.0 83 338 - 1.9196 4 7 cbr 1000 ------- 1 2.0 7.0 83 338 + 1.92 2 3 cbr 1000 ------- 1 2.0 7.0 91 371 - 1.92 2 3 cbr 1000 ------- 1 2.0 7.0 91 371 + 1.92 1 3 cbr 500 ------- 1 1.0 6.0 187 372 - 1.92 1 3 cbr 500 ------- 1 1.0 6.0 187 372 - 1.9216 3 4 cbr 500 ------- 1 1.0 6.0 177 352 r 1.9236 3 4 cbr 500 ------- 1 1.0 6.0 172 341 + 1.9236 4 6 cbr 500 ------- 1 1.0 6.0 172 341 - 1.9236 4 6 cbr 500 ------- 1 1.0 6.0 172 341 r 1.9236 4 7 cbr 1000 ------- 1 2.0 7.0 82 335 r 1.9236 4 6 cbr 500 ------- 1 1.0 6.0 170 337 r 1.924 1 3 cbr 500 ------- 1 1.0 6.0 185 367 + 1.924 3 4 cbr 500 ------- 1 1.0 6.0 185 367 r 1.92525 0 3 tcp 1000 ------- 0 0.0 5.0 48 368 + 1.92525 3 4 tcp 1000 ------- 0 0.0 5.0 48 368 r 1.92526 5 4 ack 40 ------- 0 5.0 0.0 43 369 + 1.92526 4 3 ack 40 ------- 0 5.0 0.0 43 369 - 1.92526 4 3 ack 40 ------- 0 5.0 0.0 43 369 - 1.9256 3 4 cbr 1000 ------- 1 2.0 7.0 86 351 r 1.9276 3 4 cbr 500 ------- 1 1.0 6.0 173 343 + 1.9276 4 6 cbr 500 ------- 1 1.0 6.0 173 343 r 1.9276 4 6 cbr 500 ------- 1 1.0 6.0 171 339 - 1.9276 4 6 cbr 500 ------- 1 1.0 6.0 173 343 r 1.928 2 3 cbr 1000 ------- 1 2.0 7.0 90 366 + 1.928 3 4 cbr 1000 ------- 1 2.0 7.0 90 366 + 1.93 1 3 cbr 500 ------- 1 1.0 6.0 188 373 - 1.93 1 3 cbr 500 ------- 1 1.0 6.0 188 373 r 1.93165 3 0 ack 40 ------- 0 5.0 0.0 41 357 + 1.93165 0 3 tcp 1000 ------- 0 0.0 5.0 49 374 - 1.93165 0 3 tcp 1000 ------- 0 0.0 5.0 49 374 r 1.9332 4 5 tcp 1000 ------- 0 0.0 5.0 44 340 + 1.9332 5 4 ack 40 ------- 0 5.0 0.0 44 375 - 1.9332 5 4 ack 40 ------- 0 5.0 0.0 44 375 - 1.9336 3 4 cbr 500 ------- 1 1.0 6.0 178 354 r 1.934 1 3 cbr 500 ------- 1 1.0 6.0 186 370 + 1.934 3 4 cbr 500 ------- 1 1.0 6.0 186 370 r 1.9356 3 4 cbr 1000 ------- 1 2.0 7.0 84 342 + 1.9356 4 7 cbr 1000 ------- 1 2.0 7.0 84 342 - 1.9356 4 7 cbr 1000 ------- 1 2.0 7.0 84 342 - 1.9376 3 4 cbr 500 ------- 1 1.0 6.0 179 356 + 1.94 2 3 cbr 1000 ------- 1 2.0 7.0 92 376 - 1.94 2 3 cbr 1000 ------- 1 2.0 7.0 92 376 + 1.94 1 3 cbr 500 ------- 1 1.0 6.0 189 377 - 1.94 1 3 cbr 500 ------- 1 1.0 6.0 189 377 - 1.9416 3 4 cbr 1000 ------- 1 2.0 7.0 87 355 r 1.9436 3 4 tcp 1000 ------- 0 0.0 5.0 45 345 + 1.9436 4 5 tcp 1000 ------- 0 0.0 5.0 45 345 - 1.9436 4 5 tcp 1000 ------- 0 0.0 5.0 45 345 r 1.944 1 3 cbr 500 ------- 1 1.0 6.0 187 372 + 1.944 3 4 cbr 500 ------- 1 1.0 6.0 187 372 r 1.94758 4 3 ack 40 ------- 0 5.0 0.0 42 362 + 1.94758 3 0 ack 40 ------- 0 5.0 0.0 42 362 - 1.94758 3 0 ack 40 ------- 0 5.0 0.0 42 362 r 1.9476 3 4 cbr 500 ------- 1 1.0 6.0 174 344 + 1.9476 4 6 cbr 500 ------- 1 1.0 6.0 174 344 - 1.9476 4 6 cbr 500 ------- 1 1.0 6.0 174 344 r 1.9476 4 7 cbr 1000 ------- 1 2.0 7.0 83 338 r 1.9476 4 6 cbr 500 ------- 1 1.0 6.0 172 341 r 1.948 2 3 cbr 1000 ------- 1 2.0 7.0 91 371 + 1.948 3 4 cbr 1000 ------- 1 2.0 7.0 91 371 - 1.9496 3 4 cbr 500 ------- 1 1.0 6.0 180 358 + 1.95 1 3 cbr 500 ------- 1 1.0 6.0 190 378 - 1.95 1 3 cbr 500 ------- 1 1.0 6.0 190 378 r 1.9516 3 4 cbr 500 ------- 1 1.0 6.0 175 347 + 1.9516 4 6 cbr 500 ------- 1 1.0 6.0 175 347 r 1.9516 4 6 cbr 500 ------- 1 1.0 6.0 173 343 - 1.9516 4 6 cbr 500 ------- 1 1.0 6.0 175 347 r 1.95325 0 3 tcp 1000 ------- 0 0.0 5.0 49 374 + 1.95325 3 4 tcp 1000 ------- 0 0.0 5.0 49 374 r 1.95326 5 4 ack 40 ------- 0 5.0 0.0 44 375 + 1.95326 4 3 ack 40 ------- 0 5.0 0.0 44 375 - 1.95326 4 3 ack 40 ------- 0 5.0 0.0 44 375 - 1.9536 3 4 cbr 500 ------- 1 1.0 6.0 181 360 r 1.954 1 3 cbr 500 ------- 1 1.0 6.0 188 373 + 1.954 3 4 cbr 500 ------- 1 1.0 6.0 188 373 - 1.9576 3 4 cbr 1000 ------- 1 2.0 7.0 88 359 r 1.9596 3 4 cbr 1000 ------- 1 2.0 7.0 85 346 + 1.9596 4 7 cbr 1000 ------- 1 2.0 7.0 85 346 - 1.9596 4 7 cbr 1000 ------- 1 2.0 7.0 85 346 + 1.96 2 3 cbr 1000 ------- 1 2.0 7.0 93 379 - 1.96 2 3 cbr 1000 ------- 1 2.0 7.0 93 379 + 1.96 1 3 cbr 500 ------- 1 1.0 6.0 191 380 - 1.96 1 3 cbr 500 ------- 1 1.0 6.0 191 380 r 1.9636 3 4 cbr 500 ------- 1 1.0 6.0 176 348 + 1.9636 4 6 cbr 500 ------- 1 1.0 6.0 176 348 - 1.9636 4 6 cbr 500 ------- 1 1.0 6.0 176 348 r 1.9636 4 7 cbr 1000 ------- 1 2.0 7.0 84 342 r 1.964 1 3 cbr 500 ------- 1 1.0 6.0 189 377 + 1.964 3 4 cbr 500 ------- 1 1.0 6.0 189 377 r 1.9652 4 5 tcp 1000 ------- 0 0.0 5.0 45 345 + 1.9652 5 4 ack 40 ------- 0 5.0 0.0 45 381 - 1.9652 5 4 ack 40 ------- 0 5.0 0.0 45 381 - 1.9656 3 4 cbr 500 ------- 1 1.0 6.0 182 361 r 1.96765 3 0 ack 40 ------- 0 5.0 0.0 42 362 + 1.96765 0 3 tcp 1000 ------- 0 0.0 5.0 50 382 - 1.96765 0 3 tcp 1000 ------- 0 0.0 5.0 50 382 r 1.968 2 3 cbr 1000 ------- 1 2.0 7.0 92 376 + 1.968 3 4 cbr 1000 ------- 1 2.0 7.0 92 376 - 1.9696 3 4 cbr 500 ------- 1 1.0 6.0 183 364 + 1.97 1 3 cbr 500 ------- 1 1.0 6.0 192 383 - 1.97 1 3 cbr 500 ------- 1 1.0 6.0 192 383 r 1.9716 3 4 tcp 1000 ------- 0 0.0 5.0 46 350 + 1.9716 4 5 tcp 1000 ------- 0 0.0 5.0 46 350 - 1.9716 4 5 tcp 1000 ------- 0 0.0 5.0 46 350 r 1.9716 4 6 cbr 500 ------- 1 1.0 6.0 174 344 - 1.9736 3 4 cbr 1000 ------- 1 2.0 7.0 89 363 r 1.974 1 3 cbr 500 ------- 1 1.0 6.0 190 378 + 1.974 3 4 cbr 500 ------- 1 1.0 6.0 190 378 r 1.97558 4 3 ack 40 ------- 0 5.0 0.0 43 369 + 1.97558 3 0 ack 40 ------- 0 5.0 0.0 43 369 - 1.97558 3 0 ack 40 ------- 0 5.0 0.0 43 369 r 1.9756 3 4 cbr 500 ------- 1 1.0 6.0 177 352 + 1.9756 4 6 cbr 500 ------- 1 1.0 6.0 177 352 - 1.9756 4 6 cbr 500 ------- 1 1.0 6.0 177 352 r 1.9756 4 6 cbr 500 ------- 1 1.0 6.0 175 347 + 1.98 2 3 cbr 1000 ------- 1 2.0 7.0 94 384 - 1.98 2 3 cbr 1000 ------- 1 2.0 7.0 94 384 + 1.98 1 3 cbr 500 ------- 1 1.0 6.0 193 385 - 1.98 1 3 cbr 500 ------- 1 1.0 6.0 193 385 - 1.9816 3 4 cbr 500 ------- 1 1.0 6.0 184 365 r 1.9836 3 4 cbr 1000 ------- 1 2.0 7.0 86 351 + 1.9836 4 7 cbr 1000 ------- 1 2.0 7.0 86 351 - 1.9836 4 7 cbr 1000 ------- 1 2.0 7.0 86 351 r 1.984 1 3 cbr 500 ------- 1 1.0 6.0 191 380 + 1.984 3 4 cbr 500 ------- 1 1.0 6.0 191 380 r 1.98526 5 4 ack 40 ------- 0 5.0 0.0 45 381 + 1.98526 4 3 ack 40 ------- 0 5.0 0.0 45 381 - 1.98526 4 3 ack 40 ------- 0 5.0 0.0 45 381 - 1.9856 3 4 cbr 500 ------- 1 1.0 6.0 185 367 r 1.9876 3 4 cbr 500 ------- 1 1.0 6.0 178 354 + 1.9876 4 6 cbr 500 ------- 1 1.0 6.0 178 354 - 1.9876 4 6 cbr 500 ------- 1 1.0 6.0 178 354 r 1.9876 4 7 cbr 1000 ------- 1 2.0 7.0 85 346 r 1.9876 4 6 cbr 500 ------- 1 1.0 6.0 176 348 r 1.988 2 3 cbr 1000 ------- 1 2.0 7.0 93 379 + 1.988 3 4 cbr 1000 ------- 1 2.0 7.0 93 379 r 1.98925 0 3 tcp 1000 ------- 0 0.0 5.0 50 382 + 1.98925 3 4 tcp 1000 ------- 0 0.0 5.0 50 382 - 1.9896 3 4 tcp 1000 ------- 0 0.0 5.0 48 368 + 1.99 1 3 cbr 500 ------- 1 1.0 6.0 194 386 - 1.99 1 3 cbr 500 ------- 1 1.0 6.0 194 386 r 1.9916 3 4 cbr 500 ------- 1 1.0 6.0 179 356 + 1.9916 4 6 cbr 500 ------- 1 1.0 6.0 179 356 - 1.9916 4 6 cbr 500 ------- 1 1.0 6.0 179 356 r 1.9932 4 5 tcp 1000 ------- 0 0.0 5.0 46 350 + 1.9932 5 4 ack 40 ------- 0 5.0 0.0 46 387 - 1.9932 5 4 ack 40 ------- 0 5.0 0.0 46 387 r 1.994 1 3 cbr 500 ------- 1 1.0 6.0 192 383 + 1.994 3 4 cbr 500 ------- 1 1.0 6.0 192 383 r 1.99565 3 0 ack 40 ------- 0 5.0 0.0 43 369 + 1.99565 0 3 tcp 1000 ------- 0 0.0 5.0 51 388 - 1.99565 0 3 tcp 1000 ------- 0 0.0 5.0 51 388 - 1.9976 3 4 cbr 1000 ------- 1 2.0 7.0 90 366 r 1.9996 3 4 cbr 1000 ------- 1 2.0 7.0 87 355 + 1.9996 4 7 cbr 1000 ------- 1 2.0 7.0 87 355 - 1.9996 4 7 cbr 1000 ------- 1 2.0 7.0 87 355 r 1.9996 4 6 cbr 500 ------- 1 1.0 6.0 177 352 + 2 2 3 cbr 1000 ------- 1 2.0 7.0 95 389 - 2 2 3 cbr 1000 ------- 1 2.0 7.0 95 389 + 2 1 3 cbr 500 ------- 1 1.0 6.0 195 390 - 2 1 3 cbr 500 ------- 1 1.0 6.0 195 390 r 2.00358 4 3 ack 40 ------- 0 5.0 0.0 44 375 + 2.00358 3 0 ack 40 ------- 0 5.0 0.0 44 375 - 2.00358 3 0 ack 40 ------- 0 5.0 0.0 44 375 r 2.0036 3 4 cbr 500 ------- 1 1.0 6.0 180 358 + 2.0036 4 6 cbr 500 ------- 1 1.0 6.0 180 358 - 2.0036 4 6 cbr 500 ------- 1 1.0 6.0 180 358 r 2.004 1 3 cbr 500 ------- 1 1.0 6.0 193 385 + 2.004 3 4 cbr 500 ------- 1 1.0 6.0 193 385 - 2.0056 3 4 cbr 500 ------- 1 1.0 6.0 186 370 r 2.0076 3 4 cbr 500 ------- 1 1.0 6.0 181 360 + 2.0076 4 6 cbr 500 ------- 1 1.0 6.0 181 360 - 2.0076 4 6 cbr 500 ------- 1 1.0 6.0 181 360 r 2.008 2 3 cbr 1000 ------- 1 2.0 7.0 94 384 + 2.008 3 4 cbr 1000 ------- 1 2.0 7.0 94 384 - 2.0096 3 4 cbr 500 ------- 1 1.0 6.0 187 372 + 2.01 1 3 cbr 500 ------- 1 1.0 6.0 196 391 - 2.01 1 3 cbr 500 ------- 1 1.0 6.0 196 391 r 2.0116 4 7 cbr 1000 ------- 1 2.0 7.0 86 351 r 2.0116 4 6 cbr 500 ------- 1 1.0 6.0 178 354 r 2.01326 5 4 ack 40 ------- 0 5.0 0.0 46 387 + 2.01326 4 3 ack 40 ------- 0 5.0 0.0 46 387 - 2.01326 4 3 ack 40 ------- 0 5.0 0.0 46 387 - 2.0136 3 4 cbr 1000 ------- 1 2.0 7.0 91 371 r 2.014 1 3 cbr 500 ------- 1 1.0 6.0 194 386 + 2.014 3 4 cbr 500 ------- 1 1.0 6.0 194 386 r 2.0156 3 4 cbr 1000 ------- 1 2.0 7.0 88 359 + 2.0156 4 7 cbr 1000 ------- 1 2.0 7.0 88 359 - 2.0156 4 7 cbr 1000 ------- 1 2.0 7.0 88 359 r 2.0156 4 6 cbr 500 ------- 1 1.0 6.0 179 356 r 2.01725 0 3 tcp 1000 ------- 0 0.0 5.0 51 388 + 2.01725 3 4 tcp 1000 ------- 0 0.0 5.0 51 388 r 2.0196 3 4 cbr 500 ------- 1 1.0 6.0 182 361 + 2.0196 4 6 cbr 500 ------- 1 1.0 6.0 182 361 - 2.0196 4 6 cbr 500 ------- 1 1.0 6.0 182 361 + 2.02 1 3 cbr 500 ------- 1 1.0 6.0 197 392 - 2.02 1 3 cbr 500 ------- 1 1.0 6.0 197 392 + 2.02 2 3 cbr 1000 ------- 1 2.0 7.0 96 393 - 2.02 2 3 cbr 1000 ------- 1 2.0 7.0 96 393 - 2.0216 3 4 tcp 1000 ------- 0 0.0 5.0 49 374 r 2.0236 3 4 cbr 500 ------- 1 1.0 6.0 183 364 + 2.0236 4 6 cbr 500 ------- 1 1.0 6.0 183 364 - 2.0236 4 6 cbr 500 ------- 1 1.0 6.0 183 364 r 2.02365 3 0 ack 40 ------- 0 5.0 0.0 44 375 + 2.02365 0 3 tcp 1000 ------- 0 0.0 5.0 52 394 - 2.02365 0 3 tcp 1000 ------- 0 0.0 5.0 52 394 r 2.024 1 3 cbr 500 ------- 1 1.0 6.0 195 390 + 2.024 3 4 cbr 500 ------- 1 1.0 6.0 195 390 r 2.0276 4 7 cbr 1000 ------- 1 2.0 7.0 87 355 r 2.0276 4 6 cbr 500 ------- 1 1.0 6.0 180 358 r 2.028 2 3 cbr 1000 ------- 1 2.0 7.0 95 389 + 2.028 3 4 cbr 1000 ------- 1 2.0 7.0 95 389 - 2.0296 3 4 cbr 500 ------- 1 1.0 6.0 188 373 + 2.03 1 3 cbr 500 ------- 1 1.0 6.0 198 395 - 2.03 1 3 cbr 500 ------- 1 1.0 6.0 198 395 r 2.0316 3 4 cbr 1000 ------- 1 2.0 7.0 89 363 + 2.0316 4 7 cbr 1000 ------- 1 2.0 7.0 89 363 - 2.0316 4 7 cbr 1000 ------- 1 2.0 7.0 89 363 r 2.0316 4 6 cbr 500 ------- 1 1.0 6.0 181 360 - 2.0336 3 4 cbr 500 ------- 1 1.0 6.0 189 377 r 2.034 1 3 cbr 500 ------- 1 1.0 6.0 196 391 + 2.034 3 4 cbr 500 ------- 1 1.0 6.0 196 391 r 2.03558 4 3 ack 40 ------- 0 5.0 0.0 45 381 + 2.03558 3 0 ack 40 ------- 0 5.0 0.0 45 381 - 2.03558 3 0 ack 40 ------- 0 5.0 0.0 45 381 r 2.0356 3 4 cbr 500 ------- 1 1.0 6.0 184 365 + 2.0356 4 6 cbr 500 ------- 1 1.0 6.0 184 365 - 2.0356 4 6 cbr 500 ------- 1 1.0 6.0 184 365 - 2.0376 3 4 cbr 1000 ------- 1 2.0 7.0 92 376 r 2.0396 3 4 cbr 500 ------- 1 1.0 6.0 185 367 + 2.0396 4 6 cbr 500 ------- 1 1.0 6.0 185 367 - 2.0396 4 6 cbr 500 ------- 1 1.0 6.0 185 367 + 2.04 1 3 cbr 500 ------- 1 1.0 6.0 199 396 - 2.04 1 3 cbr 500 ------- 1 1.0 6.0 199 396 + 2.04 2 3 cbr 1000 ------- 1 2.0 7.0 97 397 - 2.04 2 3 cbr 1000 ------- 1 2.0 7.0 97 397 r 2.0436 4 7 cbr 1000 ------- 1 2.0 7.0 88 359 r 2.0436 4 6 cbr 500 ------- 1 1.0 6.0 182 361 r 2.044 1 3 cbr 500 ------- 1 1.0 6.0 197 392 + 2.044 3 4 cbr 500 ------- 1 1.0 6.0 197 392 r 2.04525 0 3 tcp 1000 ------- 0 0.0 5.0 52 394 + 2.04525 3 4 tcp 1000 ------- 0 0.0 5.0 52 394 - 2.0456 3 4 cbr 500 ------- 1 1.0 6.0 190 378 r 2.0476 3 4 tcp 1000 ------- 0 0.0 5.0 48 368 + 2.0476 4 5 tcp 1000 ------- 0 0.0 5.0 48 368 - 2.0476 4 5 tcp 1000 ------- 0 0.0 5.0 48 368 r 2.0476 4 6 cbr 500 ------- 1 1.0 6.0 183 364 r 2.048 2 3 cbr 1000 ------- 1 2.0 7.0 96 393 + 2.048 3 4 cbr 1000 ------- 1 2.0 7.0 96 393 - 2.0496 3 4 cbr 500 ------- 1 1.0 6.0 191 380 + 2.05 1 3 cbr 500 ------- 1 1.0 6.0 200 398 - 2.05 1 3 cbr 500 ------- 1 1.0 6.0 200 398 - 2.0536 3 4 cbr 1000 ------- 1 2.0 7.0 93 379 r 2.054 1 3 cbr 500 ------- 1 1.0 6.0 198 395 + 2.054 3 4 cbr 500 ------- 1 1.0 6.0 198 395 r 2.0556 3 4 cbr 1000 ------- 1 2.0 7.0 90 366 + 2.0556 4 7 cbr 1000 ------- 1 2.0 7.0 90 366 - 2.0556 4 7 cbr 1000 ------- 1 2.0 7.0 90 366 r 2.05565 3 0 ack 40 ------- 0 5.0 0.0 45 381 + 2.05565 0 3 tcp 1000 ------- 0 0.0 5.0 53 399 - 2.05565 0 3 tcp 1000 ------- 0 0.0 5.0 53 399 r 2.0596 3 4 cbr 500 ------- 1 1.0 6.0 186 370 + 2.0596 4 6 cbr 500 ------- 1 1.0 6.0 186 370 - 2.0596 4 6 cbr 500 ------- 1 1.0 6.0 186 370 r 2.0596 4 7 cbr 1000 ------- 1 2.0 7.0 89 363 r 2.0596 4 6 cbr 500 ------- 1 1.0 6.0 184 365 + 2.06 1 3 cbr 500 ------- 1 1.0 6.0 201 400 - 2.06 1 3 cbr 500 ------- 1 1.0 6.0 201 400 + 2.06 2 3 cbr 1000 ------- 1 2.0 7.0 98 401 - 2.06 2 3 cbr 1000 ------- 1 2.0 7.0 98 401 - 2.0616 3 4 tcp 1000 ------- 0 0.0 5.0 50 382 r 2.06358 4 3 ack 40 ------- 0 5.0 0.0 46 387 + 2.06358 3 0 ack 40 ------- 0 5.0 0.0 46 387 - 2.06358 3 0 ack 40 ------- 0 5.0 0.0 46 387 r 2.0636 3 4 cbr 500 ------- 1 1.0 6.0 187 372 + 2.0636 4 6 cbr 500 ------- 1 1.0 6.0 187 372 r 2.0636 4 6 cbr 500 ------- 1 1.0 6.0 185 367 - 2.0636 4 6 cbr 500 ------- 1 1.0 6.0 187 372 r 2.064 1 3 cbr 500 ------- 1 1.0 6.0 199 396 + 2.064 3 4 cbr 500 ------- 1 1.0 6.0 199 396 r 2.068 2 3 cbr 1000 ------- 1 2.0 7.0 97 397 + 2.068 3 4 cbr 1000 ------- 1 2.0 7.0 97 397 r 2.0692 4 5 tcp 1000 ------- 0 0.0 5.0 48 368 + 2.0692 5 4 ack 40 ------- 0 5.0 0.0 46 402 - 2.0692 5 4 ack 40 ------- 0 5.0 0.0 46 402 - 2.0696 3 4 cbr 500 ------- 1 1.0 6.0 192 383 + 2.07 1 3 cbr 500 ------- 1 1.0 6.0 202 403 - 2.07 1 3 cbr 500 ------- 1 1.0 6.0 202 403 r 2.0716 3 4 cbr 1000 ------- 1 2.0 7.0 91 371 + 2.0716 4 7 cbr 1000 ------- 1 2.0 7.0 91 371 - 2.0716 4 7 cbr 1000 ------- 1 2.0 7.0 91 371 - 2.0736 3 4 cbr 500 ------- 1 1.0 6.0 193 385 r 2.074 1 3 cbr 500 ------- 1 1.0 6.0 200 398 + 2.074 3 4 cbr 500 ------- 1 1.0 6.0 200 398 r 2.07725 0 3 tcp 1000 ------- 0 0.0 5.0 53 399 + 2.07725 3 4 tcp 1000 ------- 0 0.0 5.0 53 399 - 2.0776 3 4 cbr 1000 ------- 1 2.0 7.0 94 384 r 2.0796 3 4 tcp 1000 ------- 0 0.0 5.0 49 374 + 2.0796 4 5 tcp 1000 ------- 0 0.0 5.0 49 374 - 2.0796 4 5 tcp 1000 ------- 0 0.0 5.0 49 374 + 2.08 1 3 cbr 500 ------- 1 1.0 6.0 203 404 - 2.08 1 3 cbr 500 ------- 1 1.0 6.0 203 404 + 2.08 2 3 cbr 1000 ------- 1 2.0 7.0 99 405 - 2.08 2 3 cbr 1000 ------- 1 2.0 7.0 99 405 r 2.0836 3 4 cbr 500 ------- 1 1.0 6.0 188 373 + 2.0836 4 6 cbr 500 ------- 1 1.0 6.0 188 373 - 2.0836 4 6 cbr 500 ------- 1 1.0 6.0 188 373 r 2.0836 4 7 cbr 1000 ------- 1 2.0 7.0 90 366 r 2.0836 4 6 cbr 500 ------- 1 1.0 6.0 186 370 r 2.08365 3 0 ack 40 ------- 0 5.0 0.0 46 387 + 2.08365 0 3 tcp 1000 ------- 0 0.0 5.0 54 406 - 2.08365 0 3 tcp 1000 ------- 0 0.0 5.0 54 406 r 2.084 1 3 cbr 500 ------- 1 1.0 6.0 201 400 + 2.084 3 4 cbr 500 ------- 1 1.0 6.0 201 400 - 2.0856 3 4 cbr 500 ------- 1 1.0 6.0 194 386 r 2.0876 3 4 cbr 500 ------- 1 1.0 6.0 189 377 + 2.0876 4 6 cbr 500 ------- 1 1.0 6.0 189 377 r 2.0876 4 6 cbr 500 ------- 1 1.0 6.0 187 372 - 2.0876 4 6 cbr 500 ------- 1 1.0 6.0 189 377 r 2.088 2 3 cbr 1000 ------- 1 2.0 7.0 98 401 + 2.088 3 4 cbr 1000 ------- 1 2.0 7.0 98 401 r 2.08926 5 4 ack 40 ------- 0 5.0 0.0 46 402 + 2.08926 4 3 ack 40 ------- 0 5.0 0.0 46 402 - 2.08926 4 3 ack 40 ------- 0 5.0 0.0 46 402 - 2.0896 3 4 tcp 1000 ------- 0 0.0 5.0 51 388 + 2.09 1 3 cbr 500 ------- 1 1.0 6.0 204 407 - 2.09 1 3 cbr 500 ------- 1 1.0 6.0 204 407 r 2.094 1 3 cbr 500 ------- 1 1.0 6.0 202 403 + 2.094 3 4 cbr 500 ------- 1 1.0 6.0 202 403 r 2.0956 3 4 cbr 1000 ------- 1 2.0 7.0 92 376 + 2.0956 4 7 cbr 1000 ------- 1 2.0 7.0 92 376 - 2.0956 4 7 cbr 1000 ------- 1 2.0 7.0 92 376 - 2.0976 3 4 cbr 500 ------- 1 1.0 6.0 195 390 r 2.0996 3 4 cbr 500 ------- 1 1.0 6.0 190 378 + 2.0996 4 6 cbr 500 ------- 1 1.0 6.0 190 378 - 2.0996 4 6 cbr 500 ------- 1 1.0 6.0 190 378 r 2.0996 4 7 cbr 1000 ------- 1 2.0 7.0 91 371 + 2.1 1 3 cbr 500 ------- 1 1.0 6.0 205 408 - 2.1 1 3 cbr 500 ------- 1 1.0 6.0 205 408 + 2.1 2 3 cbr 1000 ------- 1 2.0 7.0 100 409 - 2.1 2 3 cbr 1000 ------- 1 2.0 7.0 100 409 r 2.1012 4 5 tcp 1000 ------- 0 0.0 5.0 49 374 + 2.1012 5 4 ack 40 ------- 0 5.0 0.0 46 410 - 2.1012 5 4 ack 40 ------- 0 5.0 0.0 46 410 - 2.1016 3 4 cbr 1000 ------- 1 2.0 7.0 95 389 r 2.1036 3 4 cbr 500 ------- 1 1.0 6.0 191 380 + 2.1036 4 6 cbr 500 ------- 1 1.0 6.0 191 380 - 2.1036 4 6 cbr 500 ------- 1 1.0 6.0 191 380 r 2.104 1 3 cbr 500 ------- 1 1.0 6.0 203 404 + 2.104 3 4 cbr 500 ------- 1 1.0 6.0 203 404 r 2.10525 0 3 tcp 1000 ------- 0 0.0 5.0 54 406 + 2.10525 3 4 tcp 1000 ------- 0 0.0 5.0 54 406 r 2.1076 4 6 cbr 500 ------- 1 1.0 6.0 188 373 r 2.108 2 3 cbr 1000 ------- 1 2.0 7.0 99 405 + 2.108 3 4 cbr 1000 ------- 1 2.0 7.0 99 405 d 2.108 3 4 cbr 1000 ------- 1 2.0 7.0 99 405 - 2.1096 3 4 cbr 500 ------- 1 1.0 6.0 196 391 + 2.11 1 3 cbr 500 ------- 1 1.0 6.0 206 411 - 2.11 1 3 cbr 500 ------- 1 1.0 6.0 206 411 r 2.1116 3 4 cbr 1000 ------- 1 2.0 7.0 93 379 + 2.1116 4 7 cbr 1000 ------- 1 2.0 7.0 93 379 - 2.1116 4 7 cbr 1000 ------- 1 2.0 7.0 93 379 r 2.1116 4 6 cbr 500 ------- 1 1.0 6.0 189 377 - 2.1136 3 4 cbr 500 ------- 1 1.0 6.0 197 392 r 2.114 1 3 cbr 500 ------- 1 1.0 6.0 204 407 + 2.114 3 4 cbr 500 ------- 1 1.0 6.0 204 407 - 2.1176 3 4 tcp 1000 ------- 0 0.0 5.0 52 394 r 2.1196 3 4 tcp 1000 ------- 0 0.0 5.0 50 382 + 2.1196 4 5 tcp 1000 ------- 0 0.0 5.0 50 382 - 2.1196 4 5 tcp 1000 ------- 0 0.0 5.0 50 382 + 2.12 1 3 cbr 500 ------- 1 1.0 6.0 207 412 - 2.12 1 3 cbr 500 ------- 1 1.0 6.0 207 412 + 2.12 2 3 cbr 1000 ------- 1 2.0 7.0 101 413 - 2.12 2 3 cbr 1000 ------- 1 2.0 7.0 101 413 r 2.12126 5 4 ack 40 ------- 0 5.0 0.0 46 410 + 2.12126 4 3 ack 40 ------- 0 5.0 0.0 46 410 - 2.12126 4 3 ack 40 ------- 0 5.0 0.0 46 410 r 2.1236 3 4 cbr 500 ------- 1 1.0 6.0 192 383 + 2.1236 4 6 cbr 500 ------- 1 1.0 6.0 192 383 - 2.1236 4 6 cbr 500 ------- 1 1.0 6.0 192 383 r 2.1236 4 7 cbr 1000 ------- 1 2.0 7.0 92 376 r 2.1236 4 6 cbr 500 ------- 1 1.0 6.0 190 378 r 2.124 1 3 cbr 500 ------- 1 1.0 6.0 205 408 + 2.124 3 4 cbr 500 ------- 1 1.0 6.0 205 408 - 2.1256 3 4 cbr 1000 ------- 1 2.0 7.0 96 393 r 2.1276 3 4 cbr 500 ------- 1 1.0 6.0 193 385 + 2.1276 4 6 cbr 500 ------- 1 1.0 6.0 193 385 r 2.1276 4 6 cbr 500 ------- 1 1.0 6.0 191 380 - 2.1276 4 6 cbr 500 ------- 1 1.0 6.0 193 385 r 2.128 2 3 cbr 1000 ------- 1 2.0 7.0 100 409 + 2.128 3 4 cbr 1000 ------- 1 2.0 7.0 100 409 + 2.13 1 3 cbr 500 ------- 1 1.0 6.0 208 414 - 2.13 1 3 cbr 500 ------- 1 1.0 6.0 208 414 - 2.1336 3 4 cbr 500 ------- 1 1.0 6.0 198 395 r 2.134 1 3 cbr 500 ------- 1 1.0 6.0 206 411 + 2.134 3 4 cbr 500 ------- 1 1.0 6.0 206 411 r 2.1356 3 4 cbr 1000 ------- 1 2.0 7.0 94 384 + 2.1356 4 7 cbr 1000 ------- 1 2.0 7.0 94 384 - 2.1356 4 7 cbr 1000 ------- 1 2.0 7.0 94 384 - 2.1376 3 4 cbr 500 ------- 1 1.0 6.0 199 396 r 2.13958 4 3 ack 40 ------- 0 5.0 0.0 46 402 + 2.13958 3 0 ack 40 ------- 0 5.0 0.0 46 402 - 2.13958 3 0 ack 40 ------- 0 5.0 0.0 46 402 r 2.1396 3 4 cbr 500 ------- 1 1.0 6.0 194 386 + 2.1396 4 6 cbr 500 ------- 1 1.0 6.0 194 386 - 2.1396 4 6 cbr 500 ------- 1 1.0 6.0 194 386 r 2.1396 4 7 cbr 1000 ------- 1 2.0 7.0 93 379 + 2.14 1 3 cbr 500 ------- 1 1.0 6.0 209 415 - 2.14 1 3 cbr 500 ------- 1 1.0 6.0 209 415 + 2.14 2 3 cbr 1000 ------- 1 2.0 7.0 102 416 - 2.14 2 3 cbr 1000 ------- 1 2.0 7.0 102 416 r 2.1412 4 5 tcp 1000 ------- 0 0.0 5.0 50 382 + 2.1412 5 4 ack 40 ------- 0 5.0 0.0 46 417 - 2.1412 5 4 ack 40 ------- 0 5.0 0.0 46 417 - 2.1416 3 4 cbr 1000 ------- 1 2.0 7.0 97 397 r 2.144 1 3 cbr 500 ------- 1 1.0 6.0 207 412 + 2.144 3 4 cbr 500 ------- 1 1.0 6.0 207 412 r 2.1476 3 4 tcp 1000 ------- 0 0.0 5.0 51 388 + 2.1476 4 5 tcp 1000 ------- 0 0.0 5.0 51 388 - 2.1476 4 5 tcp 1000 ------- 0 0.0 5.0 51 388 r 2.1476 4 6 cbr 500 ------- 1 1.0 6.0 192 383 r 2.148 2 3 cbr 1000 ------- 1 2.0 7.0 101 413 + 2.148 3 4 cbr 1000 ------- 1 2.0 7.0 101 413 - 2.1496 3 4 cbr 500 ------- 1 1.0 6.0 200 398 + 2.15 1 3 cbr 500 ------- 1 1.0 6.0 210 418 - 2.15 1 3 cbr 500 ------- 1 1.0 6.0 210 418 r 2.1516 3 4 cbr 500 ------- 1 1.0 6.0 195 390 + 2.1516 4 6 cbr 500 ------- 1 1.0 6.0 195 390 - 2.1516 4 6 cbr 500 ------- 1 1.0 6.0 195 390 r 2.1516 4 6 cbr 500 ------- 1 1.0 6.0 193 385 - 2.1536 3 4 tcp 1000 ------- 0 0.0 5.0 53 399 r 2.154 1 3 cbr 500 ------- 1 1.0 6.0 208 414 + 2.154 3 4 cbr 500 ------- 1 1.0 6.0 208 414 r 2.1596 3 4 cbr 1000 ------- 1 2.0 7.0 95 389 + 2.1596 4 7 cbr 1000 ------- 1 2.0 7.0 95 389 - 2.1596 4 7 cbr 1000 ------- 1 2.0 7.0 95 389 r 2.15965 3 0 ack 40 ------- 0 5.0 0.0 46 402 + 2.16 1 3 cbr 500 ------- 1 1.0 6.0 211 419 - 2.16 1 3 cbr 500 ------- 1 1.0 6.0 211 419 + 2.16 2 3 cbr 1000 ------- 1 2.0 7.0 103 420 - 2.16 2 3 cbr 1000 ------- 1 2.0 7.0 103 420 r 2.16126 5 4 ack 40 ------- 0 5.0 0.0 46 417 + 2.16126 4 3 ack 40 ------- 0 5.0 0.0 46 417 - 2.16126 4 3 ack 40 ------- 0 5.0 0.0 46 417 - 2.1616 3 4 cbr 500 ------- 1 1.0 6.0 201 400 r 2.1636 3 4 cbr 500 ------- 1 1.0 6.0 196 391 + 2.1636 4 6 cbr 500 ------- 1 1.0 6.0 196 391 - 2.1636 4 6 cbr 500 ------- 1 1.0 6.0 196 391 r 2.1636 4 7 cbr 1000 ------- 1 2.0 7.0 94 384 r 2.1636 4 6 cbr 500 ------- 1 1.0 6.0 194 386 r 2.164 1 3 cbr 500 ------- 1 1.0 6.0 209 415 + 2.164 3 4 cbr 500 ------- 1 1.0 6.0 209 415 - 2.1656 3 4 cbr 1000 ------- 1 2.0 7.0 98 401 r 2.1676 3 4 cbr 500 ------- 1 1.0 6.0 197 392 + 2.1676 4 6 cbr 500 ------- 1 1.0 6.0 197 392 - 2.1676 4 6 cbr 500 ------- 1 1.0 6.0 197 392 r 2.168 2 3 cbr 1000 ------- 1 2.0 7.0 102 416 + 2.168 3 4 cbr 1000 ------- 1 2.0 7.0 102 416 r 2.1692 4 5 tcp 1000 ------- 0 0.0 5.0 51 388 + 2.1692 5 4 ack 40 ------- 0 5.0 0.0 46 421 - 2.1692 5 4 ack 40 ------- 0 5.0 0.0 46 421 + 2.17 1 3 cbr 500 ------- 1 1.0 6.0 212 422 - 2.17 1 3 cbr 500 ------- 1 1.0 6.0 212 422 r 2.17158 4 3 ack 40 ------- 0 5.0 0.0 46 410 + 2.17158 3 0 ack 40 ------- 0 5.0 0.0 46 410 - 2.17158 3 0 ack 40 ------- 0 5.0 0.0 46 410 - 2.1736 3 4 cbr 500 ------- 1 1.0 6.0 202 403 r 2.174 1 3 cbr 500 ------- 1 1.0 6.0 210 418 + 2.174 3 4 cbr 500 ------- 1 1.0 6.0 210 418 r 2.1756 3 4 tcp 1000 ------- 0 0.0 5.0 52 394 + 2.1756 4 5 tcp 1000 ------- 0 0.0 5.0 52 394 - 2.1756 4 5 tcp 1000 ------- 0 0.0 5.0 52 394 r 2.1756 4 6 cbr 500 ------- 1 1.0 6.0 195 390 - 2.1776 3 4 cbr 500 ------- 1 1.0 6.0 203 404 + 2.18 1 3 cbr 500 ------- 1 1.0 6.0 213 423 - 2.18 1 3 cbr 500 ------- 1 1.0 6.0 213 423 + 2.18 2 3 cbr 1000 ------- 1 2.0 7.0 104 424 - 2.18 2 3 cbr 1000 ------- 1 2.0 7.0 104 424 - 2.1816 3 4 tcp 1000 ------- 0 0.0 5.0 54 406 r 2.1836 3 4 cbr 1000 ------- 1 2.0 7.0 96 393 + 2.1836 4 7 cbr 1000 ------- 1 2.0 7.0 96 393 - 2.1836 4 7 cbr 1000 ------- 1 2.0 7.0 96 393 r 2.184 1 3 cbr 500 ------- 1 1.0 6.0 211 419 + 2.184 3 4 cbr 500 ------- 1 1.0 6.0 211 419 r 2.1876 3 4 cbr 500 ------- 1 1.0 6.0 198 395 + 2.1876 4 6 cbr 500 ------- 1 1.0 6.0 198 395 - 2.1876 4 6 cbr 500 ------- 1 1.0 6.0 198 395 r 2.1876 4 7 cbr 1000 ------- 1 2.0 7.0 95 389 r 2.1876 4 6 cbr 500 ------- 1 1.0 6.0 196 391 r 2.188 2 3 cbr 1000 ------- 1 2.0 7.0 103 420 + 2.188 3 4 cbr 1000 ------- 1 2.0 7.0 103 420 r 2.18926 5 4 ack 40 ------- 0 5.0 0.0 46 421 + 2.18926 4 3 ack 40 ------- 0 5.0 0.0 46 421 - 2.18926 4 3 ack 40 ------- 0 5.0 0.0 46 421 - 2.1896 3 4 cbr 500 ------- 1 1.0 6.0 204 407 + 2.19 1 3 cbr 500 ------- 1 1.0 6.0 214 425 - 2.19 1 3 cbr 500 ------- 1 1.0 6.0 214 425 r 2.1916 3 4 cbr 500 ------- 1 1.0 6.0 199 396 + 2.1916 4 6 cbr 500 ------- 1 1.0 6.0 199 396 r 2.1916 4 6 cbr 500 ------- 1 1.0 6.0 197 392 - 2.1916 4 6 cbr 500 ------- 1 1.0 6.0 199 396 r 2.19165 3 0 ack 40 ------- 0 5.0 0.0 46 410 - 2.1936 3 4 cbr 500 ------- 1 1.0 6.0 205 408 r 2.194 1 3 cbr 500 ------- 1 1.0 6.0 212 422 + 2.194 3 4 cbr 500 ------- 1 1.0 6.0 212 422 r 2.1972 4 5 tcp 1000 ------- 0 0.0 5.0 52 394 + 2.1972 5 4 ack 40 ------- 0 5.0 0.0 46 426 - 2.1972 5 4 ack 40 ------- 0 5.0 0.0 46 426 - 2.1976 3 4 cbr 1000 ------- 1 2.0 7.0 100 409 r 2.1996 3 4 cbr 1000 ------- 1 2.0 7.0 97 397 + 2.1996 4 7 cbr 1000 ------- 1 2.0 7.0 97 397 - 2.1996 4 7 cbr 1000 ------- 1 2.0 7.0 97 397 + 2.2 1 3 cbr 500 ------- 1 1.0 6.0 215 427 - 2.2 1 3 cbr 500 ------- 1 1.0 6.0 215 427 + 2.2 2 3 cbr 1000 ------- 1 2.0 7.0 105 428 - 2.2 2 3 cbr 1000 ------- 1 2.0 7.0 105 428 r 2.2036 3 4 cbr 500 ------- 1 1.0 6.0 200 398 + 2.2036 4 6 cbr 500 ------- 1 1.0 6.0 200 398 - 2.2036 4 6 cbr 500 ------- 1 1.0 6.0 200 398 r 2.204 1 3 cbr 500 ------- 1 1.0 6.0 213 423 + 2.204 3 4 cbr 500 ------- 1 1.0 6.0 213 423 - 2.2056 3 4 cbr 500 ------- 1 1.0 6.0 206 411 r 2.208 2 3 cbr 1000 ------- 1 2.0 7.0 104 424 + 2.208 3 4 cbr 1000 ------- 1 2.0 7.0 104 424 - 2.2096 3 4 cbr 500 ------- 1 1.0 6.0 207 412 + 2.21 1 3 cbr 500 ------- 1 1.0 6.0 216 429 - 2.21 1 3 cbr 500 ------- 1 1.0 6.0 216 429 r 2.21158 4 3 ack 40 ------- 0 5.0 0.0 46 417 + 2.21158 3 0 ack 40 ------- 0 5.0 0.0 46 417 - 2.21158 3 0 ack 40 ------- 0 5.0 0.0 46 417 r 2.2116 3 4 tcp 1000 ------- 0 0.0 5.0 53 399 + 2.2116 4 5 tcp 1000 ------- 0 0.0 5.0 53 399 - 2.2116 4 5 tcp 1000 ------- 0 0.0 5.0 53 399 r 2.2116 4 7 cbr 1000 ------- 1 2.0 7.0 96 393 r 2.2116 4 6 cbr 500 ------- 1 1.0 6.0 198 395 - 2.2136 3 4 cbr 1000 ------- 1 2.0 7.0 101 413 r 2.214 1 3 cbr 500 ------- 1 1.0 6.0 214 425 + 2.214 3 4 cbr 500 ------- 1 1.0 6.0 214 425 r 2.2156 3 4 cbr 500 ------- 1 1.0 6.0 201 400 + 2.2156 4 6 cbr 500 ------- 1 1.0 6.0 201 400 - 2.2156 4 6 cbr 500 ------- 1 1.0 6.0 201 400 r 2.2156 4 6 cbr 500 ------- 1 1.0 6.0 199 396 r 2.21726 5 4 ack 40 ------- 0 5.0 0.0 46 426 + 2.21726 4 3 ack 40 ------- 0 5.0 0.0 46 426 - 2.21726 4 3 ack 40 ------- 0 5.0 0.0 46 426 + 2.22 1 3 cbr 500 ------- 1 1.0 6.0 217 430 - 2.22 1 3 cbr 500 ------- 1 1.0 6.0 217 430 + 2.22 2 3 cbr 1000 ------- 1 2.0 7.0 106 431 - 2.22 2 3 cbr 1000 ------- 1 2.0 7.0 106 431 - 2.2216 3 4 cbr 500 ------- 1 1.0 6.0 208 414 r 2.2236 3 4 cbr 1000 ------- 1 2.0 7.0 98 401 + 2.2236 4 7 cbr 1000 ------- 1 2.0 7.0 98 401 - 2.2236 4 7 cbr 1000 ------- 1 2.0 7.0 98 401 r 2.224 1 3 cbr 500 ------- 1 1.0 6.0 215 427 + 2.224 3 4 cbr 500 ------- 1 1.0 6.0 215 427 - 2.2256 3 4 cbr 500 ------- 1 1.0 6.0 209 415 r 2.2276 3 4 cbr 500 ------- 1 1.0 6.0 202 403 + 2.2276 4 6 cbr 500 ------- 1 1.0 6.0 202 403 - 2.2276 4 6 cbr 500 ------- 1 1.0 6.0 202 403 r 2.2276 4 7 cbr 1000 ------- 1 2.0 7.0 97 397 r 2.2276 4 6 cbr 500 ------- 1 1.0 6.0 200 398 r 2.228 2 3 cbr 1000 ------- 1 2.0 7.0 105 428 + 2.228 3 4 cbr 1000 ------- 1 2.0 7.0 105 428 - 2.2296 3 4 cbr 1000 ------- 1 2.0 7.0 102 416 + 2.23 1 3 cbr 500 ------- 1 1.0 6.0 218 432 - 2.23 1 3 cbr 500 ------- 1 1.0 6.0 218 432 r 2.2316 3 4 cbr 500 ------- 1 1.0 6.0 203 404 + 2.2316 4 6 cbr 500 ------- 1 1.0 6.0 203 404 - 2.2316 4 6 cbr 500 ------- 1 1.0 6.0 203 404 r 2.23165 3 0 ack 40 ------- 0 5.0 0.0 46 417 + 2.23165 0 3 tcp 1000 ------- 0 0.0 5.0 47 433 - 2.23165 0 3 tcp 1000 ------- 0 0.0 5.0 47 433 + 2.23165 0 3 tcp 1000 ------- 0 0.0 5.0 48 434 + 2.23165 0 3 tcp 1000 ------- 0 0.0 5.0 49 435 + 2.23165 0 3 tcp 1000 ------- 0 0.0 5.0 50 436 + 2.23165 0 3 tcp 1000 ------- 0 0.0 5.0 51 437 + 2.23165 0 3 tcp 1000 ------- 0 0.0 5.0 52 438 + 2.23165 0 3 tcp 1000 ------- 0 0.0 5.0 53 439 + 2.23165 0 3 tcp 1000 ------- 0 0.0 5.0 54 440 r 2.2332 4 5 tcp 1000 ------- 0 0.0 5.0 53 399 + 2.2332 5 4 ack 40 ------- 0 5.0 0.0 46 441 - 2.2332 5 4 ack 40 ------- 0 5.0 0.0 46 441 - 2.23325 0 3 tcp 1000 ------- 0 0.0 5.0 48 434 r 2.234 1 3 cbr 500 ------- 1 1.0 6.0 216 429 + 2.234 3 4 cbr 500 ------- 1 1.0 6.0 216 429 - 2.23485 0 3 tcp 1000 ------- 0 0.0 5.0 49 435 - 2.23645 0 3 tcp 1000 ------- 0 0.0 5.0 50 436 - 2.2376 3 4 cbr 500 ------- 1 1.0 6.0 210 418 - 2.23805 0 3 tcp 1000 ------- 0 0.0 5.0 51 437 r 2.23958 4 3 ack 40 ------- 0 5.0 0.0 46 421 + 2.23958 3 0 ack 40 ------- 0 5.0 0.0 46 421 - 2.23958 3 0 ack 40 ------- 0 5.0 0.0 46 421 r 2.2396 3 4 tcp 1000 ------- 0 0.0 5.0 54 406 + 2.2396 4 5 tcp 1000 ------- 0 0.0 5.0 54 406 - 2.2396 4 5 tcp 1000 ------- 0 0.0 5.0 54 406 r 2.2396 4 6 cbr 500 ------- 1 1.0 6.0 201 400 - 2.23965 0 3 tcp 1000 ------- 0 0.0 5.0 52 438 + 2.24 1 3 cbr 500 ------- 1 1.0 6.0 219 442 - 2.24 1 3 cbr 500 ------- 1 1.0 6.0 219 442 + 2.24 2 3 cbr 1000 ------- 1 2.0 7.0 107 443 - 2.24 2 3 cbr 1000 ------- 1 2.0 7.0 107 443 - 2.24125 0 3 tcp 1000 ------- 0 0.0 5.0 53 439 - 2.2416 3 4 cbr 500 ------- 1 1.0 6.0 211 419 - 2.24285 0 3 tcp 1000 ------- 0 0.0 5.0 54 440 r 2.2436 3 4 cbr 500 ------- 1 1.0 6.0 204 407 + 2.2436 4 6 cbr 500 ------- 1 1.0 6.0 204 407 - 2.2436 4 6 cbr 500 ------- 1 1.0 6.0 204 407 r 2.244 1 3 cbr 500 ------- 1 1.0 6.0 217 430 + 2.244 3 4 cbr 500 ------- 1 1.0 6.0 217 430 - 2.2456 3 4 cbr 1000 ------- 1 2.0 7.0 103 420 r 2.2476 3 4 cbr 500 ------- 1 1.0 6.0 205 408 + 2.2476 4 6 cbr 500 ------- 1 1.0 6.0 205 408 - 2.2476 4 6 cbr 500 ------- 1 1.0 6.0 205 408 r 2.248 2 3 cbr 1000 ------- 1 2.0 7.0 106 431 + 2.248 3 4 cbr 1000 ------- 1 2.0 7.0 106 431 + 2.25 1 3 cbr 500 ------- 1 1.0 6.0 220 444 - 2.25 1 3 cbr 500 ------- 1 1.0 6.0 220 444 r 2.2516 4 7 cbr 1000 ------- 1 2.0 7.0 98 401 r 2.2516 4 6 cbr 500 ------- 1 1.0 6.0 202 403 r 2.25325 0 3 tcp 1000 ------- 0 0.0 5.0 47 433 + 2.25325 3 4 tcp 1000 ------- 0 0.0 5.0 47 433 r 2.25326 5 4 ack 40 ------- 0 5.0 0.0 46 441 + 2.25326 4 3 ack 40 ------- 0 5.0 0.0 46 441 - 2.25326 4 3 ack 40 ------- 0 5.0 0.0 46 441 - 2.2536 3 4 cbr 500 ------- 1 1.0 6.0 212 422 r 2.254 1 3 cbr 500 ------- 1 1.0 6.0 218 432 + 2.254 3 4 cbr 500 ------- 1 1.0 6.0 218 432 r 2.25485 0 3 tcp 1000 ------- 0 0.0 5.0 48 434 + 2.25485 3 4 tcp 1000 ------- 0 0.0 5.0 48 434 r 2.2556 3 4 cbr 1000 ------- 1 2.0 7.0 100 409 + 2.2556 4 7 cbr 1000 ------- 1 2.0 7.0 100 409 - 2.2556 4 7 cbr 1000 ------- 1 2.0 7.0 100 409 r 2.2556 4 6 cbr 500 ------- 1 1.0 6.0 203 404 r 2.25645 0 3 tcp 1000 ------- 0 0.0 5.0 49 435 + 2.25645 3 4 tcp 1000 ------- 0 0.0 5.0 49 435 - 2.2576 3 4 cbr 500 ------- 1 1.0 6.0 213 423 r 2.25805 0 3 tcp 1000 ------- 0 0.0 5.0 50 436 + 2.25805 3 4 tcp 1000 ------- 0 0.0 5.0 50 436 r 2.2596 3 4 cbr 500 ------- 1 1.0 6.0 206 411 + 2.2596 4 6 cbr 500 ------- 1 1.0 6.0 206 411 - 2.2596 4 6 cbr 500 ------- 1 1.0 6.0 206 411 r 2.25965 0 3 tcp 1000 ------- 0 0.0 5.0 51 437 + 2.25965 3 4 tcp 1000 ------- 0 0.0 5.0 51 437 r 2.25965 3 0 ack 40 ------- 0 5.0 0.0 46 421 + 2.26 1 3 cbr 500 ------- 1 1.0 6.0 221 445 - 2.26 1 3 cbr 500 ------- 1 1.0 6.0 221 445 + 2.26 2 3 cbr 1000 ------- 1 2.0 7.0 108 446 - 2.26 2 3 cbr 1000 ------- 1 2.0 7.0 108 446 r 2.2612 4 5 tcp 1000 ------- 0 0.0 5.0 54 406 + 2.2612 5 4 ack 40 ------- 0 5.0 0.0 46 447 - 2.2612 5 4 ack 40 ------- 0 5.0 0.0 46 447 r 2.26125 0 3 tcp 1000 ------- 0 0.0 5.0 52 438 + 2.26125 3 4 tcp 1000 ------- 0 0.0 5.0 52 438 - 2.2616 3 4 cbr 1000 ------- 1 2.0 7.0 104 424 r 2.26285 0 3 tcp 1000 ------- 0 0.0 5.0 53 439 + 2.26285 3 4 tcp 1000 ------- 0 0.0 5.0 53 439 r 2.2636 3 4 cbr 500 ------- 1 1.0 6.0 207 412 + 2.2636 4 6 cbr 500 ------- 1 1.0 6.0 207 412 - 2.2636 4 6 cbr 500 ------- 1 1.0 6.0 207 412 r 2.264 1 3 cbr 500 ------- 1 1.0 6.0 219 442 + 2.264 3 4 cbr 500 ------- 1 1.0 6.0 219 442 d 2.264 3 4 cbr 500 ------- 1 1.0 6.0 219 442 r 2.26445 0 3 tcp 1000 ------- 0 0.0 5.0 54 440 + 2.26445 3 4 tcp 1000 ------- 0 0.0 5.0 54 440 d 2.26445 3 4 tcp 1000 ------- 0 0.0 5.0 54 440 r 2.26758 4 3 ack 40 ------- 0 5.0 0.0 46 426 + 2.26758 3 0 ack 40 ------- 0 5.0 0.0 46 426 - 2.26758 3 0 ack 40 ------- 0 5.0 0.0 46 426 r 2.2676 4 6 cbr 500 ------- 1 1.0 6.0 204 407 r 2.268 2 3 cbr 1000 ------- 1 2.0 7.0 107 443 + 2.268 3 4 cbr 1000 ------- 1 2.0 7.0 107 443 d 2.268 3 4 cbr 1000 ------- 1 2.0 7.0 107 443 - 2.2696 3 4 cbr 500 ------- 1 1.0 6.0 214 425 + 2.27 1 3 cbr 500 ------- 1 1.0 6.0 222 448 - 2.27 1 3 cbr 500 ------- 1 1.0 6.0 222 448 r 2.2716 3 4 cbr 1000 ------- 1 2.0 7.0 101 413 + 2.2716 4 7 cbr 1000 ------- 1 2.0 7.0 101 413 - 2.2716 4 7 cbr 1000 ------- 1 2.0 7.0 101 413 r 2.2716 4 6 cbr 500 ------- 1 1.0 6.0 205 408 - 2.2736 3 4 cbr 500 ------- 1 1.0 6.0 215 427 r 2.274 1 3 cbr 500 ------- 1 1.0 6.0 220 444 + 2.274 3 4 cbr 500 ------- 1 1.0 6.0 220 444 r 2.2756 3 4 cbr 500 ------- 1 1.0 6.0 208 414 + 2.2756 4 6 cbr 500 ------- 1 1.0 6.0 208 414 - 2.2756 4 6 cbr 500 ------- 1 1.0 6.0 208 414 - 2.2776 3 4 cbr 1000 ------- 1 2.0 7.0 105 428 r 2.2796 3 4 cbr 500 ------- 1 1.0 6.0 209 415 + 2.2796 4 6 cbr 500 ------- 1 1.0 6.0 209 415 - 2.2796 4 6 cbr 500 ------- 1 1.0 6.0 209 415 + 2.28 1 3 cbr 500 ------- 1 1.0 6.0 223 449 - 2.28 1 3 cbr 500 ------- 1 1.0 6.0 223 449 + 2.28 2 3 cbr 1000 ------- 1 2.0 7.0 109 450 - 2.28 2 3 cbr 1000 ------- 1 2.0 7.0 109 450 r 2.28126 5 4 ack 40 ------- 0 5.0 0.0 46 447 + 2.28126 4 3 ack 40 ------- 0 5.0 0.0 46 447 - 2.28126 4 3 ack 40 ------- 0 5.0 0.0 46 447 r 2.2836 4 7 cbr 1000 ------- 1 2.0 7.0 100 409 r 2.2836 4 6 cbr 500 ------- 1 1.0 6.0 206 411 r 2.284 1 3 cbr 500 ------- 1 1.0 6.0 221 445 + 2.284 3 4 cbr 500 ------- 1 1.0 6.0 221 445 - 2.2856 3 4 cbr 500 ------- 1 1.0 6.0 216 429 r 2.2876 3 4 cbr 1000 ------- 1 2.0 7.0 102 416 + 2.2876 4 7 cbr 1000 ------- 1 2.0 7.0 102 416 - 2.2876 4 7 cbr 1000 ------- 1 2.0 7.0 102 416 r 2.2876 4 6 cbr 500 ------- 1 1.0 6.0 207 412 r 2.28765 3 0 ack 40 ------- 0 5.0 0.0 46 426 r 2.288 2 3 cbr 1000 ------- 1 2.0 7.0 108 446 + 2.288 3 4 cbr 1000 ------- 1 2.0 7.0 108 446 - 2.2896 3 4 cbr 500 ------- 1 1.0 6.0 217 430 + 2.29 1 3 cbr 500 ------- 1 1.0 6.0 224 451 - 2.29 1 3 cbr 500 ------- 1 1.0 6.0 224 451 r 2.2916 3 4 cbr 500 ------- 1 1.0 6.0 210 418 + 2.2916 4 6 cbr 500 ------- 1 1.0 6.0 210 418 - 2.2916 4 6 cbr 500 ------- 1 1.0 6.0 210 418 - 2.2936 3 4 cbr 1000 ------- 1 2.0 7.0 106 431 r 2.294 1 3 cbr 500 ------- 1 1.0 6.0 222 448 + 2.294 3 4 cbr 500 ------- 1 1.0 6.0 222 448 r 2.2956 3 4 cbr 500 ------- 1 1.0 6.0 211 419 + 2.2956 4 6 cbr 500 ------- 1 1.0 6.0 211 419 - 2.2956 4 6 cbr 500 ------- 1 1.0 6.0 211 419 r 2.2996 4 7 cbr 1000 ------- 1 2.0 7.0 101 413 r 2.2996 4 6 cbr 500 ------- 1 1.0 6.0 208 414 + 2.3 1 3 cbr 500 ------- 1 1.0 6.0 225 452 - 2.3 1 3 cbr 500 ------- 1 1.0 6.0 225 452 + 2.3 2 3 cbr 1000 ------- 1 2.0 7.0 110 453 - 2.3 2 3 cbr 1000 ------- 1 2.0 7.0 110 453 - 2.3016 3 4 tcp 1000 ------- 0 0.0 5.0 47 433 r 2.30358 4 3 ack 40 ------- 0 5.0 0.0 46 441 + 2.30358 3 0 ack 40 ------- 0 5.0 0.0 46 441 - 2.30358 3 0 ack 40 ------- 0 5.0 0.0 46 441 r 2.3036 3 4 cbr 1000 ------- 1 2.0 7.0 103 420 + 2.3036 4 7 cbr 1000 ------- 1 2.0 7.0 103 420 - 2.3036 4 7 cbr 1000 ------- 1 2.0 7.0 103 420 r 2.3036 4 6 cbr 500 ------- 1 1.0 6.0 209 415 r 2.304 1 3 cbr 500 ------- 1 1.0 6.0 223 449 + 2.304 3 4 cbr 500 ------- 1 1.0 6.0 223 449 r 2.3076 3 4 cbr 500 ------- 1 1.0 6.0 212 422 + 2.3076 4 6 cbr 500 ------- 1 1.0 6.0 212 422 - 2.3076 4 6 cbr 500 ------- 1 1.0 6.0 212 422 r 2.308 2 3 cbr 1000 ------- 1 2.0 7.0 109 450 + 2.308 3 4 cbr 1000 ------- 1 2.0 7.0 109 450 - 2.3096 3 4 cbr 500 ------- 1 1.0 6.0 218 432 r 2.3116 3 4 cbr 500 ------- 1 1.0 6.0 213 423 + 2.3116 4 6 cbr 500 ------- 1 1.0 6.0 213 423 - 2.3116 4 6 cbr 500 ------- 1 1.0 6.0 213 423 - 2.3136 3 4 tcp 1000 ------- 0 0.0 5.0 48 434 r 2.314 1 3 cbr 500 ------- 1 1.0 6.0 224 451 + 2.314 3 4 cbr 500 ------- 1 1.0 6.0 224 451 r 2.3156 4 7 cbr 1000 ------- 1 2.0 7.0 102 416 r 2.3156 4 6 cbr 500 ------- 1 1.0 6.0 210 418 r 2.3196 3 4 cbr 1000 ------- 1 2.0 7.0 104 424 + 2.3196 4 7 cbr 1000 ------- 1 2.0 7.0 104 424 - 2.3196 4 7 cbr 1000 ------- 1 2.0 7.0 104 424 r 2.3196 4 6 cbr 500 ------- 1 1.0 6.0 211 419 + 2.32 2 3 cbr 1000 ------- 1 2.0 7.0 111 454 - 2.32 2 3 cbr 1000 ------- 1 2.0 7.0 111 454 - 2.3216 3 4 tcp 1000 ------- 0 0.0 5.0 49 435 r 2.3236 3 4 cbr 500 ------- 1 1.0 6.0 214 425 + 2.3236 4 6 cbr 500 ------- 1 1.0 6.0 214 425 - 2.3236 4 6 cbr 500 ------- 1 1.0 6.0 214 425 r 2.32365 3 0 ack 40 ------- 0 5.0 0.0 46 441 r 2.324 1 3 cbr 500 ------- 1 1.0 6.0 225 452 + 2.324 3 4 cbr 500 ------- 1 1.0 6.0 225 452 r 2.3276 3 4 cbr 500 ------- 1 1.0 6.0 215 427 + 2.3276 4 6 cbr 500 ------- 1 1.0 6.0 215 427 - 2.3276 4 6 cbr 500 ------- 1 1.0 6.0 215 427 r 2.328 2 3 cbr 1000 ------- 1 2.0 7.0 110 453 + 2.328 3 4 cbr 1000 ------- 1 2.0 7.0 110 453 - 2.3296 3 4 tcp 1000 ------- 0 0.0 5.0 50 436 r 2.33158 4 3 ack 40 ------- 0 5.0 0.0 46 447 + 2.33158 3 0 ack 40 ------- 0 5.0 0.0 46 447 - 2.33158 3 0 ack 40 ------- 0 5.0 0.0 46 447 r 2.3316 4 7 cbr 1000 ------- 1 2.0 7.0 103 420 r 2.3316 4 6 cbr 500 ------- 1 1.0 6.0 212 422 r 2.3356 3 4 cbr 1000 ------- 1 2.0 7.0 105 428 + 2.3356 4 7 cbr 1000 ------- 1 2.0 7.0 105 428 - 2.3356 4 7 cbr 1000 ------- 1 2.0 7.0 105 428 r 2.3356 4 6 cbr 500 ------- 1 1.0 6.0 213 423 - 2.3376 3 4 tcp 1000 ------- 0 0.0 5.0 51 437 r 2.3396 3 4 cbr 500 ------- 1 1.0 6.0 216 429 + 2.3396 4 6 cbr 500 ------- 1 1.0 6.0 216 429 - 2.3396 4 6 cbr 500 ------- 1 1.0 6.0 216 429 + 2.34 2 3 cbr 1000 ------- 1 2.0 7.0 112 455 - 2.34 2 3 cbr 1000 ------- 1 2.0 7.0 112 455 r 2.3436 3 4 cbr 500 ------- 1 1.0 6.0 217 430 + 2.3436 4 6 cbr 500 ------- 1 1.0 6.0 217 430 - 2.3436 4 6 cbr 500 ------- 1 1.0 6.0 217 430 - 2.3456 3 4 tcp 1000 ------- 0 0.0 5.0 52 438 r 2.3476 4 7 cbr 1000 ------- 1 2.0 7.0 104 424 r 2.3476 4 6 cbr 500 ------- 1 1.0 6.0 214 425 r 2.348 2 3 cbr 1000 ------- 1 2.0 7.0 111 454 + 2.348 3 4 cbr 1000 ------- 1 2.0 7.0 111 454 r 2.3516 3 4 cbr 1000 ------- 1 2.0 7.0 106 431 + 2.3516 4 7 cbr 1000 ------- 1 2.0 7.0 106 431 - 2.3516 4 7 cbr 1000 ------- 1 2.0 7.0 106 431 r 2.3516 4 6 cbr 500 ------- 1 1.0 6.0 215 427 r 2.35165 3 0 ack 40 ------- 0 5.0 0.0 46 447 - 2.3536 3 4 tcp 1000 ------- 0 0.0 5.0 53 439 r 2.3596 3 4 tcp 1000 ------- 0 0.0 5.0 47 433 + 2.3596 4 5 tcp 1000 ------- 0 0.0 5.0 47 433 - 2.3596 4 5 tcp 1000 ------- 0 0.0 5.0 47 433 + 2.36 2 3 cbr 1000 ------- 1 2.0 7.0 113 456 - 2.36 2 3 cbr 1000 ------- 1 2.0 7.0 113 456 - 2.3616 3 4 cbr 500 ------- 1 1.0 6.0 220 444 r 2.3636 3 4 cbr 500 ------- 1 1.0 6.0 218 432 + 2.3636 4 6 cbr 500 ------- 1 1.0 6.0 218 432 - 2.3636 4 6 cbr 500 ------- 1 1.0 6.0 218 432 r 2.3636 4 7 cbr 1000 ------- 1 2.0 7.0 105 428 r 2.3636 4 6 cbr 500 ------- 1 1.0 6.0 216 429 - 2.3656 3 4 cbr 500 ------- 1 1.0 6.0 221 445 r 2.3676 4 6 cbr 500 ------- 1 1.0 6.0 217 430 r 2.368 2 3 cbr 1000 ------- 1 2.0 7.0 112 455 + 2.368 3 4 cbr 1000 ------- 1 2.0 7.0 112 455 - 2.3696 3 4 cbr 1000 ------- 1 2.0 7.0 108 446 r 2.3716 3 4 tcp 1000 ------- 0 0.0 5.0 48 434 + 2.3716 4 5 tcp 1000 ------- 0 0.0 5.0 48 434 - 2.3716 4 5 tcp 1000 ------- 0 0.0 5.0 48 434 - 2.3776 3 4 cbr 500 ------- 1 1.0 6.0 222 448 r 2.3796 3 4 tcp 1000 ------- 0 0.0 5.0 49 435 + 2.3796 4 5 tcp 1000 ------- 0 0.0 5.0 49 435 - 2.3796 4 5 tcp 1000 ------- 0 0.0 5.0 49 435 r 2.3796 4 7 cbr 1000 ------- 1 2.0 7.0 106 431 + 2.38 2 3 cbr 1000 ------- 1 2.0 7.0 114 457 - 2.38 2 3 cbr 1000 ------- 1 2.0 7.0 114 457 r 2.3812 4 5 tcp 1000 ------- 0 0.0 5.0 47 433 + 2.3812 5 4 ack 40 ------- 0 5.0 0.0 47 458 - 2.3812 5 4 ack 40 ------- 0 5.0 0.0 47 458 - 2.3816 3 4 cbr 500 ------- 1 1.0 6.0 223 449 - 2.3856 3 4 cbr 1000 ------- 1 2.0 7.0 109 450 r 2.3876 3 4 tcp 1000 ------- 0 0.0 5.0 50 436 + 2.3876 4 5 tcp 1000 ------- 0 0.0 5.0 50 436 - 2.3876 4 5 tcp 1000 ------- 0 0.0 5.0 50 436 r 2.3876 4 6 cbr 500 ------- 1 1.0 6.0 218 432 r 2.388 2 3 cbr 1000 ------- 1 2.0 7.0 113 456 + 2.388 3 4 cbr 1000 ------- 1 2.0 7.0 113 456 r 2.3932 4 5 tcp 1000 ------- 0 0.0 5.0 48 434 + 2.3932 5 4 ack 40 ------- 0 5.0 0.0 48 459 - 2.3932 5 4 ack 40 ------- 0 5.0 0.0 48 459 - 2.3936 3 4 cbr 500 ------- 1 1.0 6.0 224 451 r 2.3956 3 4 tcp 1000 ------- 0 0.0 5.0 51 437 + 2.3956 4 5 tcp 1000 ------- 0 0.0 5.0 51 437 - 2.3956 4 5 tcp 1000 ------- 0 0.0 5.0 51 437 - 2.3976 3 4 cbr 500 ------- 1 1.0 6.0 225 452 + 2.4 2 3 cbr 1000 ------- 1 2.0 7.0 115 460 - 2.4 2 3 cbr 1000 ------- 1 2.0 7.0 115 460 r 2.4012 4 5 tcp 1000 ------- 0 0.0 5.0 49 435 + 2.4012 5 4 ack 40 ------- 0 5.0 0.0 49 461 - 2.4012 5 4 ack 40 ------- 0 5.0 0.0 49 461 r 2.40126 5 4 ack 40 ------- 0 5.0 0.0 47 458 + 2.40126 4 3 ack 40 ------- 0 5.0 0.0 47 458 - 2.40126 4 3 ack 40 ------- 0 5.0 0.0 47 458 - 2.4016 3 4 cbr 1000 ------- 1 2.0 7.0 110 453 r 2.4036 3 4 tcp 1000 ------- 0 0.0 5.0 52 438 + 2.4036 4 5 tcp 1000 ------- 0 0.0 5.0 52 438 - 2.4036 4 5 tcp 1000 ------- 0 0.0 5.0 52 438 r 2.408 2 3 cbr 1000 ------- 1 2.0 7.0 114 457 + 2.408 3 4 cbr 1000 ------- 1 2.0 7.0 114 457 r 2.4092 4 5 tcp 1000 ------- 0 0.0 5.0 50 436 + 2.4092 5 4 ack 40 ------- 0 5.0 0.0 50 462 - 2.4092 5 4 ack 40 ------- 0 5.0 0.0 50 462 - 2.4096 3 4 cbr 1000 ------- 1 2.0 7.0 111 454 r 2.4116 3 4 tcp 1000 ------- 0 0.0 5.0 53 439 + 2.4116 4 5 tcp 1000 ------- 0 0.0 5.0 53 439 - 2.4116 4 5 tcp 1000 ------- 0 0.0 5.0 53 439 r 2.41326 5 4 ack 40 ------- 0 5.0 0.0 48 459 + 2.41326 4 3 ack 40 ------- 0 5.0 0.0 48 459 - 2.41326 4 3 ack 40 ------- 0 5.0 0.0 48 459 r 2.4156 3 4 cbr 500 ------- 1 1.0 6.0 220 444 + 2.4156 4 6 cbr 500 ------- 1 1.0 6.0 220 444 - 2.4156 4 6 cbr 500 ------- 1 1.0 6.0 220 444 r 2.4172 4 5 tcp 1000 ------- 0 0.0 5.0 51 437 + 2.4172 5 4 ack 40 ------- 0 5.0 0.0 51 463 - 2.4172 5 4 ack 40 ------- 0 5.0 0.0 51 463 - 2.4176 3 4 cbr 1000 ------- 1 2.0 7.0 112 455 r 2.4196 3 4 cbr 500 ------- 1 1.0 6.0 221 445 + 2.4196 4 6 cbr 500 ------- 1 1.0 6.0 221 445 - 2.4196 4 6 cbr 500 ------- 1 1.0 6.0 221 445 + 2.42 2 3 cbr 1000 ------- 1 2.0 7.0 116 464 - 2.42 2 3 cbr 1000 ------- 1 2.0 7.0 116 464 r 2.42126 5 4 ack 40 ------- 0 5.0 0.0 49 461 + 2.42126 4 3 ack 40 ------- 0 5.0 0.0 49 461 - 2.42126 4 3 ack 40 ------- 0 5.0 0.0 49 461 r 2.4252 4 5 tcp 1000 ------- 0 0.0 5.0 52 438 + 2.4252 5 4 ack 40 ------- 0 5.0 0.0 52 465 - 2.4252 5 4 ack 40 ------- 0 5.0 0.0 52 465 - 2.4256 3 4 cbr 1000 ------- 1 2.0 7.0 113 456 r 2.4276 3 4 cbr 1000 ------- 1 2.0 7.0 108 446 + 2.4276 4 7 cbr 1000 ------- 1 2.0 7.0 108 446 - 2.4276 4 7 cbr 1000 ------- 1 2.0 7.0 108 446 r 2.428 2 3 cbr 1000 ------- 1 2.0 7.0 115 460 + 2.428 3 4 cbr 1000 ------- 1 2.0 7.0 115 460 r 2.42926 5 4 ack 40 ------- 0 5.0 0.0 50 462 + 2.42926 4 3 ack 40 ------- 0 5.0 0.0 50 462 - 2.42926 4 3 ack 40 ------- 0 5.0 0.0 50 462 r 2.4316 3 4 cbr 500 ------- 1 1.0 6.0 222 448 + 2.4316 4 6 cbr 500 ------- 1 1.0 6.0 222 448 - 2.4316 4 6 cbr 500 ------- 1 1.0 6.0 222 448 r 2.4332 4 5 tcp 1000 ------- 0 0.0 5.0 53 439 + 2.4332 5 4 ack 40 ------- 0 5.0 0.0 53 466 - 2.4332 5 4 ack 40 ------- 0 5.0 0.0 53 466 - 2.4336 3 4 cbr 1000 ------- 1 2.0 7.0 114 457 r 2.4356 3 4 cbr 500 ------- 1 1.0 6.0 223 449 + 2.4356 4 6 cbr 500 ------- 1 1.0 6.0 223 449 - 2.4356 4 6 cbr 500 ------- 1 1.0 6.0 223 449 r 2.43726 5 4 ack 40 ------- 0 5.0 0.0 51 463 + 2.43726 4 3 ack 40 ------- 0 5.0 0.0 51 463 - 2.43726 4 3 ack 40 ------- 0 5.0 0.0 51 463 r 2.4396 4 6 cbr 500 ------- 1 1.0 6.0 220 444 + 2.44 2 3 cbr 1000 ------- 1 2.0 7.0 117 467 - 2.44 2 3 cbr 1000 ------- 1 2.0 7.0 117 467 - 2.4416 3 4 cbr 1000 ------- 1 2.0 7.0 115 460 r 2.4436 3 4 cbr 1000 ------- 1 2.0 7.0 109 450 + 2.4436 4 7 cbr 1000 ------- 1 2.0 7.0 109 450 - 2.4436 4 7 cbr 1000 ------- 1 2.0 7.0 109 450 r 2.4436 4 6 cbr 500 ------- 1 1.0 6.0 221 445 r 2.44526 5 4 ack 40 ------- 0 5.0 0.0 52 465 + 2.44526 4 3 ack 40 ------- 0 5.0 0.0 52 465 - 2.44526 4 3 ack 40 ------- 0 5.0 0.0 52 465 r 2.4476 3 4 cbr 500 ------- 1 1.0 6.0 224 451 + 2.4476 4 6 cbr 500 ------- 1 1.0 6.0 224 451 - 2.4476 4 6 cbr 500 ------- 1 1.0 6.0 224 451 r 2.448 2 3 cbr 1000 ------- 1 2.0 7.0 116 464 + 2.448 3 4 cbr 1000 ------- 1 2.0 7.0 116 464 - 2.4496 3 4 cbr 1000 ------- 1 2.0 7.0 116 464 r 2.45158 4 3 ack 40 ------- 0 5.0 0.0 47 458 + 2.45158 3 0 ack 40 ------- 0 5.0 0.0 47 458 - 2.45158 3 0 ack 40 ------- 0 5.0 0.0 47 458 r 2.4516 3 4 cbr 500 ------- 1 1.0 6.0 225 452 + 2.4516 4 6 cbr 500 ------- 1 1.0 6.0 225 452 - 2.4516 4 6 cbr 500 ------- 1 1.0 6.0 225 452 r 2.45326 5 4 ack 40 ------- 0 5.0 0.0 53 466 + 2.45326 4 3 ack 40 ------- 0 5.0 0.0 53 466 - 2.45326 4 3 ack 40 ------- 0 5.0 0.0 53 466 r 2.4556 4 7 cbr 1000 ------- 1 2.0 7.0 108 446 r 2.4556 4 6 cbr 500 ------- 1 1.0 6.0 222 448 r 2.4596 3 4 cbr 1000 ------- 1 2.0 7.0 110 453 + 2.4596 4 7 cbr 1000 ------- 1 2.0 7.0 110 453 - 2.4596 4 7 cbr 1000 ------- 1 2.0 7.0 110 453 r 2.4596 4 6 cbr 500 ------- 1 1.0 6.0 223 449 + 2.46 2 3 cbr 1000 ------- 1 2.0 7.0 118 468 - 2.46 2 3 cbr 1000 ------- 1 2.0 7.0 118 468 r 2.46358 4 3 ack 40 ------- 0 5.0 0.0 48 459 + 2.46358 3 0 ack 40 ------- 0 5.0 0.0 48 459 - 2.46358 3 0 ack 40 ------- 0 5.0 0.0 48 459 r 2.4676 3 4 cbr 1000 ------- 1 2.0 7.0 111 454 + 2.4676 4 7 cbr 1000 ------- 1 2.0 7.0 111 454 - 2.4676 4 7 cbr 1000 ------- 1 2.0 7.0 111 454 r 2.468 2 3 cbr 1000 ------- 1 2.0 7.0 117 467 + 2.468 3 4 cbr 1000 ------- 1 2.0 7.0 117 467 - 2.468 3 4 cbr 1000 ------- 1 2.0 7.0 117 467 r 2.47158 4 3 ack 40 ------- 0 5.0 0.0 49 461 + 2.47158 3 0 ack 40 ------- 0 5.0 0.0 49 461 - 2.47158 3 0 ack 40 ------- 0 5.0 0.0 49 461 r 2.4716 4 7 cbr 1000 ------- 1 2.0 7.0 109 450 r 2.4716 4 6 cbr 500 ------- 1 1.0 6.0 224 451 r 2.47165 3 0 ack 40 ------- 0 5.0 0.0 47 458 + 2.47165 0 3 tcp 1000 ------- 0 0.0 5.0 55 469 - 2.47165 0 3 tcp 1000 ------- 0 0.0 5.0 55 469 r 2.4756 3 4 cbr 1000 ------- 1 2.0 7.0 112 455 + 2.4756 4 7 cbr 1000 ------- 1 2.0 7.0 112 455 r 2.4756 4 6 cbr 500 ------- 1 1.0 6.0 225 452 - 2.4756 4 7 cbr 1000 ------- 1 2.0 7.0 112 455 r 2.47958 4 3 ack 40 ------- 0 5.0 0.0 50 462 + 2.47958 3 0 ack 40 ------- 0 5.0 0.0 50 462 - 2.47958 3 0 ack 40 ------- 0 5.0 0.0 50 462 + 2.48 2 3 cbr 1000 ------- 1 2.0 7.0 119 470 - 2.48 2 3 cbr 1000 ------- 1 2.0 7.0 119 470 r 2.4836 3 4 cbr 1000 ------- 1 2.0 7.0 113 456 + 2.4836 4 7 cbr 1000 ------- 1 2.0 7.0 113 456 - 2.4836 4 7 cbr 1000 ------- 1 2.0 7.0 113 456 r 2.48365 3 0 ack 40 ------- 0 5.0 0.0 48 459 + 2.48365 0 3 tcp 1000 ------- 0 0.0 5.0 56 471 - 2.48365 0 3 tcp 1000 ------- 0 0.0 5.0 56 471 r 2.48758 4 3 ack 40 ------- 0 5.0 0.0 51 463 + 2.48758 3 0 ack 40 ------- 0 5.0 0.0 51 463 - 2.48758 3 0 ack 40 ------- 0 5.0 0.0 51 463 r 2.4876 4 7 cbr 1000 ------- 1 2.0 7.0 110 453 r 2.488 2 3 cbr 1000 ------- 1 2.0 7.0 118 468 + 2.488 3 4 cbr 1000 ------- 1 2.0 7.0 118 468 - 2.488 3 4 cbr 1000 ------- 1 2.0 7.0 118 468 r 2.4916 3 4 cbr 1000 ------- 1 2.0 7.0 114 457 + 2.4916 4 7 cbr 1000 ------- 1 2.0 7.0 114 457 - 2.4916 4 7 cbr 1000 ------- 1 2.0 7.0 114 457 r 2.49165 3 0 ack 40 ------- 0 5.0 0.0 49 461 + 2.49165 0 3 tcp 1000 ------- 0 0.0 5.0 57 472 - 2.49165 0 3 tcp 1000 ------- 0 0.0 5.0 57 472 r 2.49325 0 3 tcp 1000 ------- 0 0.0 5.0 55 469 + 2.49325 3 4 tcp 1000 ------- 0 0.0 5.0 55 469 r 2.49558 4 3 ack 40 ------- 0 5.0 0.0 52 465 + 2.49558 3 0 ack 40 ------- 0 5.0 0.0 52 465 - 2.49558 3 0 ack 40 ------- 0 5.0 0.0 52 465 r 2.4956 4 7 cbr 1000 ------- 1 2.0 7.0 111 454 - 2.496 3 4 tcp 1000 ------- 0 0.0 5.0 55 469 r 2.4996 3 4 cbr 1000 ------- 1 2.0 7.0 115 460 + 2.4996 4 7 cbr 1000 ------- 1 2.0 7.0 115 460 - 2.4996 4 7 cbr 1000 ------- 1 2.0 7.0 115 460 r 2.49965 3 0 ack 40 ------- 0 5.0 0.0 50 462 + 2.49965 0 3 tcp 1000 ------- 0 0.0 5.0 58 473 - 2.49965 0 3 tcp 1000 ------- 0 0.0 5.0 58 473 r 2.50358 4 3 ack 40 ------- 0 5.0 0.0 53 466 + 2.50358 3 0 ack 40 ------- 0 5.0 0.0 53 466 - 2.50358 3 0 ack 40 ------- 0 5.0 0.0 53 466 r 2.5036 4 7 cbr 1000 ------- 1 2.0 7.0 112 455 r 2.50525 0 3 tcp 1000 ------- 0 0.0 5.0 56 471 + 2.50525 3 4 tcp 1000 ------- 0 0.0 5.0 56 471 - 2.50525 3 4 tcp 1000 ------- 0 0.0 5.0 56 471 r 2.5076 3 4 cbr 1000 ------- 1 2.0 7.0 116 464 + 2.5076 4 7 cbr 1000 ------- 1 2.0 7.0 116 464 - 2.5076 4 7 cbr 1000 ------- 1 2.0 7.0 116 464 r 2.50765 3 0 ack 40 ------- 0 5.0 0.0 51 463 r 2.508 2 3 cbr 1000 ------- 1 2.0 7.0 119 470 + 2.508 3 4 cbr 1000 ------- 1 2.0 7.0 119 470 r 2.5116 4 7 cbr 1000 ------- 1 2.0 7.0 113 456 r 2.51325 0 3 tcp 1000 ------- 0 0.0 5.0 57 472 + 2.51325 3 4 tcp 1000 ------- 0 0.0 5.0 57 472 - 2.51325 3 4 cbr 1000 ------- 1 2.0 7.0 119 470 r 2.51565 3 0 ack 40 ------- 0 5.0 0.0 52 465 r 2.5196 4 7 cbr 1000 ------- 1 2.0 7.0 114 457 r 2.52125 0 3 tcp 1000 ------- 0 0.0 5.0 58 473 + 2.52125 3 4 tcp 1000 ------- 0 0.0 5.0 58 473 - 2.52125 3 4 tcp 1000 ------- 0 0.0 5.0 57 472 r 2.52365 3 0 ack 40 ------- 0 5.0 0.0 53 466 r 2.526 3 4 cbr 1000 ------- 1 2.0 7.0 117 467 + 2.526 4 7 cbr 1000 ------- 1 2.0 7.0 117 467 - 2.526 4 7 cbr 1000 ------- 1 2.0 7.0 117 467 r 2.5276 4 7 cbr 1000 ------- 1 2.0 7.0 115 460 - 2.52925 3 4 tcp 1000 ------- 0 0.0 5.0 58 473 r 2.5356 4 7 cbr 1000 ------- 1 2.0 7.0 116 464 r 2.546 3 4 cbr 1000 ------- 1 2.0 7.0 118 468 + 2.546 4 7 cbr 1000 ------- 1 2.0 7.0 118 468 - 2.546 4 7 cbr 1000 ------- 1 2.0 7.0 118 468 v 2.5499999999999998 eval {set sim_annotation {FTP stops}} r 2.554 3 4 tcp 1000 ------- 0 0.0 5.0 55 469 + 2.554 4 5 tcp 1000 ------- 0 0.0 5.0 55 469 - 2.554 4 5 tcp 1000 ------- 0 0.0 5.0 55 469 r 2.554 4 7 cbr 1000 ------- 1 2.0 7.0 117 467 r 2.56325 3 4 tcp 1000 ------- 0 0.0 5.0 56 471 + 2.56325 4 5 tcp 1000 ------- 0 0.0 5.0 56 471 - 2.56325 4 5 tcp 1000 ------- 0 0.0 5.0 56 471 r 2.57125 3 4 cbr 1000 ------- 1 2.0 7.0 119 470 + 2.57125 4 7 cbr 1000 ------- 1 2.0 7.0 119 470 - 2.57125 4 7 cbr 1000 ------- 1 2.0 7.0 119 470 r 2.574 4 7 cbr 1000 ------- 1 2.0 7.0 118 468 r 2.5756 4 5 tcp 1000 ------- 0 0.0 5.0 55 469 + 2.5756 5 4 ack 40 ------- 0 5.0 0.0 53 474 - 2.5756 5 4 ack 40 ------- 0 5.0 0.0 53 474 r 2.57925 3 4 tcp 1000 ------- 0 0.0 5.0 57 472 + 2.57925 4 5 tcp 1000 ------- 0 0.0 5.0 57 472 - 2.57925 4 5 tcp 1000 ------- 0 0.0 5.0 57 472 r 2.58485 4 5 tcp 1000 ------- 0 0.0 5.0 56 471 + 2.58485 5 4 ack 40 ------- 0 5.0 0.0 53 475 - 2.58485 5 4 ack 40 ------- 0 5.0 0.0 53 475 r 2.58725 3 4 tcp 1000 ------- 0 0.0 5.0 58 473 + 2.58725 4 5 tcp 1000 ------- 0 0.0 5.0 58 473 - 2.58725 4 5 tcp 1000 ------- 0 0.0 5.0 58 473 r 2.59566 5 4 ack 40 ------- 0 5.0 0.0 53 474 + 2.59566 4 3 ack 40 ------- 0 5.0 0.0 53 474 - 2.59566 4 3 ack 40 ------- 0 5.0 0.0 53 474 r 2.59925 4 7 cbr 1000 ------- 1 2.0 7.0 119 470 r 2.60085 4 5 tcp 1000 ------- 0 0.0 5.0 57 472 + 2.60085 5 4 ack 40 ------- 0 5.0 0.0 53 476 - 2.60085 5 4 ack 40 ------- 0 5.0 0.0 53 476 r 2.60491 5 4 ack 40 ------- 0 5.0 0.0 53 475 + 2.60491 4 3 ack 40 ------- 0 5.0 0.0 53 475 - 2.60491 4 3 ack 40 ------- 0 5.0 0.0 53 475 r 2.60885 4 5 tcp 1000 ------- 0 0.0 5.0 58 473 + 2.60885 5 4 ack 40 ------- 0 5.0 0.0 53 477 - 2.60885 5 4 ack 40 ------- 0 5.0 0.0 53 477 r 2.62091 5 4 ack 40 ------- 0 5.0 0.0 53 476 + 2.62091 4 3 ack 40 ------- 0 5.0 0.0 53 476 - 2.62091 4 3 ack 40 ------- 0 5.0 0.0 53 476 r 2.62891 5 4 ack 40 ------- 0 5.0 0.0 53 477 + 2.62891 4 3 ack 40 ------- 0 5.0 0.0 53 477 - 2.62891 4 3 ack 40 ------- 0 5.0 0.0 53 477 r 2.64598 4 3 ack 40 ------- 0 5.0 0.0 53 474 + 2.64598 3 0 ack 40 ------- 0 5.0 0.0 53 474 - 2.64598 3 0 ack 40 ------- 0 5.0 0.0 53 474 r 2.65523 4 3 ack 40 ------- 0 5.0 0.0 53 475 + 2.65523 3 0 ack 40 ------- 0 5.0 0.0 53 475 - 2.65523 3 0 ack 40 ------- 0 5.0 0.0 53 475 r 2.66605 3 0 ack 40 ------- 0 5.0 0.0 53 474 r 2.67123 4 3 ack 40 ------- 0 5.0 0.0 53 476 + 2.67123 3 0 ack 40 ------- 0 5.0 0.0 53 476 - 2.67123 3 0 ack 40 ------- 0 5.0 0.0 53 476 r 2.6753 3 0 ack 40 ------- 0 5.0 0.0 53 475 r 2.67923 4 3 ack 40 ------- 0 5.0 0.0 53 477 + 2.67923 3 0 ack 40 ------- 0 5.0 0.0 53 477 - 2.67923 3 0 ack 40 ------- 0 5.0 0.0 53 477 r 2.6913 3 0 ack 40 ------- 0 5.0 0.0 53 476 + 2.6913 0 3 tcp 1000 ------- 0 0.0 5.0 54 478 - 2.6913 0 3 tcp 1000 ------- 0 0.0 5.0 54 478 + 2.6913 0 3 tcp 1000 ------- 0 0.0 5.0 55 479 + 2.6913 0 3 tcp 1000 ------- 0 0.0 5.0 56 480 + 2.6913 0 3 tcp 1000 ------- 0 0.0 5.0 57 481 - 2.6929 0 3 tcp 1000 ------- 0 0.0 5.0 55 479 - 2.6945 0 3 tcp 1000 ------- 0 0.0 5.0 56 480 - 2.6961 0 3 tcp 1000 ------- 0 0.0 5.0 57 481 r 2.6993 3 0 ack 40 ------- 0 5.0 0.0 53 477 nam-1.15/edu/D1-m-decrease.nam0000664000076400007660000036270106751722673014645 0ustar tomhnsnamV -t * -v 1.0a5 -a 1 -c 1 -F 2 -M 3 c -t * -i 0 -n black c -t * -i 1 -n red N -t * -S 0 -n {TCP session between node 0.0 and node 3.0} -p TCP -m {} N -t * -S 0 -h 62 N -t * -F 0 -M 0 -n tcp N -t * -F 1 -M 2 -n tcp_cong N -t * -F 0 -M 1 -n ack A -t * -n 1 -p 0 -o 255 -c 15 -a 1 A -t * -h 1 -m 127 -s 8 n -t * -a 0 -s 0 -S UP -v circle -c black n -t * -a 1 -s 1 -S UP -v circle -c black n -t * -a 2 -s 2 -S UP -v circle -c black n -t * -a 3 -s 3 -S UP -v circle -c black l -t * -s 0 -d 1 -S UP -r 5000000 -D 0.02 -c black -o right l -t * -s 1 -d 2 -S UP -r 500000 -D 0.10000000000000001 -c black -o right l -t * -s 2 -d 3 -S UP -r 5000000 -D 0.02 -c black -o right q -t * -s 2 -d 1 -a 0.5 q -t * -s 1 -d 2 -a 0.5 a -t 0.00000000000000000 -s 0 -d 3 -n tcp f -t 0.00000000000000000 -s 0 -d 3 -n ssthresh_ -a tcp -v 20 -T v f -t 0.00000000000000000 -s 0 -d 3 -n cwnd_ -a tcp -v 1.000000 -T v v -t 0.00000000000000000 monitor_agent 0 tcp n -t 0 -s 0 -S DLABEL -l TCP -L "" n -t 0 -s 3 -S DLABEL -l TCP -L "" v -t 0 sim_annotation 0 1 TCP with multiplicative decrease + -t 0.1 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -f 0 -m 0 -y {0 0} - -t 0.1 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} h -t 0.1 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {-1 -1} r -t 0.1216 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} + -t 0.1216 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} - -t 0.1216 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} h -t 0.1216 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {-1 -1} r -t 0.2376 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} + -t 0.2376 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} - -t 0.2376 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} h -t 0.2376 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {-1 -1} r -t 0.2592 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} + -t 0.2592 -s 3 -d 2 -p ack -e 40 -c 0 -i 1 -a 0 -S 0 -y {0 0} - -t 0.2592 -s 3 -d 2 -p ack -e 40 -c 0 -i 1 -a 0 -S 0 -y {0 0} h -t 0.2592 -s 3 -d 2 -p ack -e 40 -c 0 -i 1 -a 0 -S 0 -y {-1 -1} r -t 0.279264 -s 3 -d 2 -p ack -e 40 -c 0 -i 1 -a 0 -S 0 -y {0 0} + -t 0.279264 -s 2 -d 1 -p ack -e 40 -c 0 -i 1 -a 0 -S 0 -y {0 0} - -t 0.279264 -s 2 -d 1 -p ack -e 40 -c 0 -i 1 -a 0 -S 0 -y {0 0} h -t 0.279264 -s 2 -d 1 -p ack -e 40 -c 0 -i 1 -a 0 -S 0 -y {-1 -1} r -t 0.379904 -s 2 -d 1 -p ack -e 40 -c 0 -i 1 -a 0 -S 0 -y {0 0} + -t 0.379904 -s 1 -d 0 -p ack -e 40 -c 0 -i 1 -a 0 -S 0 -y {0 0} - -t 0.379904 -s 1 -d 0 -p ack -e 40 -c 0 -i 1 -a 0 -S 0 -f 0 -m 1 -y {0 0} h -t 0.379904 -s 1 -d 0 -p ack -e 40 -c 0 -i 1 -a 0 -S 0 -y {-1 -1} r -t 0.399968 -s 1 -d 0 -p ack -e 40 -c 0 -i 1 -a 0 -S 0 -y {0 0} f -t 0.39996800000000010 -s 0 -d 3 -n cwnd_ -a tcp -v 2.000000 -o 1.000000 -T v + -t 0.399968 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -f 0 -m 0 -y {1 1} - -t 0.399968 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {1 1} h -t 0.399968 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {-1 -1} + -t 0.399968 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -f 0 -m 0 -y {2 2} - -t 0.401568 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {2 2} h -t 0.401568 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {-1 -1} r -t 0.421568 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {1 1} + -t 0.421568 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {1 1} - -t 0.421568 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {1 1} h -t 0.421568 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {-1 -1} r -t 0.423168 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {2 2} + -t 0.423168 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {2 2} - -t 0.437568 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {2 2} h -t 0.437568 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {-1 -1} r -t 0.537568 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {1 1} + -t 0.537568 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {1 1} - -t 0.537568 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {1 1} h -t 0.537568 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {-1 -1} r -t 0.553568 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {2 2} + -t 0.553568 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {2 2} - -t 0.553568 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {2 2} h -t 0.553568 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {-1 -1} r -t 0.559168 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {1 1} + -t 0.559168 -s 3 -d 2 -p ack -e 40 -c 0 -i 4 -a 0 -S 0 -y {1 1} - -t 0.559168 -s 3 -d 2 -p ack -e 40 -c 0 -i 4 -a 0 -S 0 -y {1 1} h -t 0.559168 -s 3 -d 2 -p ack -e 40 -c 0 -i 4 -a 0 -S 0 -y {-1 -1} r -t 0.575168 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {2 2} + -t 0.575168 -s 3 -d 2 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -y {2 2} - -t 0.575168 -s 3 -d 2 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -y {2 2} h -t 0.575168 -s 3 -d 2 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -y {-1 -1} r -t 0.579232 -s 3 -d 2 -p ack -e 40 -c 0 -i 4 -a 0 -S 0 -y {1 1} + -t 0.579232 -s 2 -d 1 -p ack -e 40 -c 0 -i 4 -a 0 -S 0 -y {1 1} - -t 0.579232 -s 2 -d 1 -p ack -e 40 -c 0 -i 4 -a 0 -S 0 -y {1 1} h -t 0.579232 -s 2 -d 1 -p ack -e 40 -c 0 -i 4 -a 0 -S 0 -y {-1 -1} r -t 0.595232 -s 3 -d 2 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -y {2 2} + -t 0.595232 -s 2 -d 1 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -y {2 2} - -t 0.595232 -s 2 -d 1 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -y {2 2} h -t 0.595232 -s 2 -d 1 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -y {-1 -1} r -t 0.679872 -s 2 -d 1 -p ack -e 40 -c 0 -i 4 -a 0 -S 0 -y {1 1} + -t 0.679872 -s 1 -d 0 -p ack -e 40 -c 0 -i 4 -a 0 -S 0 -y {1 1} - -t 0.679872 -s 1 -d 0 -p ack -e 40 -c 0 -i 4 -a 0 -S 0 -f 0 -m 1 -y {1 1} h -t 0.679872 -s 1 -d 0 -p ack -e 40 -c 0 -i 4 -a 0 -S 0 -y {-1 -1} r -t 0.695872 -s 2 -d 1 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -y {2 2} + -t 0.695872 -s 1 -d 0 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -y {2 2} - -t 0.695872 -s 1 -d 0 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -f 0 -m 1 -y {2 2} h -t 0.695872 -s 1 -d 0 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -y {-1 -1} r -t 0.699936 -s 1 -d 0 -p ack -e 40 -c 0 -i 4 -a 0 -S 0 -y {1 1} f -t 0.69993600000000000 -s 0 -d 3 -n cwnd_ -a tcp -v 3.000000 -o 2.000000 -T v + -t 0.699936 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 6 -a 0 -S 0 -f 0 -m 0 -y {3 3} - -t 0.699936 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 6 -a 0 -S 0 -y {3 3} h -t 0.699936 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 6 -a 0 -S 0 -y {-1 -1} + -t 0.699936 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 7 -a 0 -S 0 -f 0 -m 0 -y {4 4} - -t 0.701536 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 7 -a 0 -S 0 -y {4 4} h -t 0.701536 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 7 -a 0 -S 0 -y {-1 -1} r -t 0.715936 -s 1 -d 0 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -y {2 2} f -t 0.71593600000000002 -s 0 -d 3 -n cwnd_ -a tcp -v 4.000000 -o 3.000000 -T v + -t 0.715936 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 8 -a 0 -S 0 -f 0 -m 0 -y {5 5} - -t 0.715936 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 8 -a 0 -S 0 -y {5 5} h -t 0.715936 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 8 -a 0 -S 0 -y {-1 -1} + -t 0.715936 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 9 -a 0 -S 0 -f 0 -m 0 -y {6 6} - -t 0.717536 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 9 -a 0 -S 0 -y {6 6} h -t 0.717536 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 9 -a 0 -S 0 -y {-1 -1} r -t 0.721536 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 6 -a 0 -S 0 -y {3 3} + -t 0.721536 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 6 -a 0 -S 0 -y {3 3} - -t 0.721536 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 6 -a 0 -S 0 -y {3 3} h -t 0.721536 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 6 -a 0 -S 0 -y {-1 -1} r -t 0.723136 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 7 -a 0 -S 0 -y {4 4} + -t 0.723136 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 7 -a 0 -S 0 -y {4 4} r -t 0.737536 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 8 -a 0 -S 0 -y {5 5} + -t 0.737536 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 8 -a 0 -S 0 -y {5 5} - -t 0.737536 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 7 -a 0 -S 0 -y {4 4} h -t 0.737536 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 7 -a 0 -S 0 -y {-1 -1} r -t 0.739136 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 9 -a 0 -S 0 -y {6 6} + -t 0.739136 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 9 -a 0 -S 0 -y {6 6} - -t 0.753536 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 8 -a 0 -S 0 -y {5 5} h -t 0.753536 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 8 -a 0 -S 0 -y {-1 -1} - -t 0.769536 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 9 -a 0 -S 0 -y {6 6} h -t 0.769536 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 9 -a 0 -S 0 -y {-1 -1} r -t 0.837536 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 6 -a 0 -S 0 -y {3 3} + -t 0.837536 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 6 -a 0 -S 0 -y {3 3} - -t 0.837536 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 6 -a 0 -S 0 -y {3 3} h -t 0.837536 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 6 -a 0 -S 0 -y {-1 -1} r -t 0.853536 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 7 -a 0 -S 0 -y {4 4} + -t 0.853536 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 7 -a 0 -S 0 -y {4 4} - -t 0.853536 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 7 -a 0 -S 0 -y {4 4} h -t 0.853536 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 7 -a 0 -S 0 -y {-1 -1} r -t 0.859136 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 6 -a 0 -S 0 -y {3 3} + -t 0.859136 -s 3 -d 2 -p ack -e 40 -c 0 -i 10 -a 0 -S 0 -y {3 3} - -t 0.859136 -s 3 -d 2 -p ack -e 40 -c 0 -i 10 -a 0 -S 0 -y {3 3} h -t 0.859136 -s 3 -d 2 -p ack -e 40 -c 0 -i 10 -a 0 -S 0 -y {-1 -1} r -t 0.869536 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 8 -a 0 -S 0 -y {5 5} + -t 0.869536 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 8 -a 0 -S 0 -y {5 5} - -t 0.869536 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 8 -a 0 -S 0 -y {5 5} h -t 0.869536 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 8 -a 0 -S 0 -y {-1 -1} r -t 0.875136 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 7 -a 0 -S 0 -y {4 4} + -t 0.875136 -s 3 -d 2 -p ack -e 40 -c 0 -i 11 -a 0 -S 0 -y {4 4} - -t 0.875136 -s 3 -d 2 -p ack -e 40 -c 0 -i 11 -a 0 -S 0 -y {4 4} h -t 0.875136 -s 3 -d 2 -p ack -e 40 -c 0 -i 11 -a 0 -S 0 -y {-1 -1} r -t 0.8792 -s 3 -d 2 -p ack -e 40 -c 0 -i 10 -a 0 -S 0 -y {3 3} + -t 0.8792 -s 2 -d 1 -p ack -e 40 -c 0 -i 10 -a 0 -S 0 -y {3 3} - -t 0.8792 -s 2 -d 1 -p ack -e 40 -c 0 -i 10 -a 0 -S 0 -y {3 3} h -t 0.8792 -s 2 -d 1 -p ack -e 40 -c 0 -i 10 -a 0 -S 0 -y {-1 -1} r -t 0.885536 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 9 -a 0 -S 0 -y {6 6} + -t 0.885536 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 9 -a 0 -S 0 -y {6 6} - -t 0.885536 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 9 -a 0 -S 0 -y {6 6} h -t 0.885536 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 9 -a 0 -S 0 -y {-1 -1} r -t 0.891136 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 8 -a 0 -S 0 -y {5 5} + -t 0.891136 -s 3 -d 2 -p ack -e 40 -c 0 -i 12 -a 0 -S 0 -y {5 5} - -t 0.891136 -s 3 -d 2 -p ack -e 40 -c 0 -i 12 -a 0 -S 0 -y {5 5} h -t 0.891136 -s 3 -d 2 -p ack -e 40 -c 0 -i 12 -a 0 -S 0 -y {-1 -1} r -t 0.8952 -s 3 -d 2 -p ack -e 40 -c 0 -i 11 -a 0 -S 0 -y {4 4} + -t 0.8952 -s 2 -d 1 -p ack -e 40 -c 0 -i 11 -a 0 -S 0 -y {4 4} - -t 0.8952 -s 2 -d 1 -p ack -e 40 -c 0 -i 11 -a 0 -S 0 -y {4 4} h -t 0.8952 -s 2 -d 1 -p ack -e 40 -c 0 -i 11 -a 0 -S 0 -y {-1 -1} r -t 0.907136 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 9 -a 0 -S 0 -y {6 6} + -t 0.907136 -s 3 -d 2 -p ack -e 40 -c 0 -i 13 -a 0 -S 0 -y {6 6} - -t 0.907136 -s 3 -d 2 -p ack -e 40 -c 0 -i 13 -a 0 -S 0 -y {6 6} h -t 0.907136 -s 3 -d 2 -p ack -e 40 -c 0 -i 13 -a 0 -S 0 -y {-1 -1} r -t 0.9112 -s 3 -d 2 -p ack -e 40 -c 0 -i 12 -a 0 -S 0 -y {5 5} + -t 0.9112 -s 2 -d 1 -p ack -e 40 -c 0 -i 12 -a 0 -S 0 -y {5 5} - -t 0.9112 -s 2 -d 1 -p ack -e 40 -c 0 -i 12 -a 0 -S 0 -y {5 5} h -t 0.9112 -s 2 -d 1 -p ack -e 40 -c 0 -i 12 -a 0 -S 0 -y {-1 -1} r -t 0.9272 -s 3 -d 2 -p ack -e 40 -c 0 -i 13 -a 0 -S 0 -y {6 6} + -t 0.9272 -s 2 -d 1 -p ack -e 40 -c 0 -i 13 -a 0 -S 0 -y {6 6} - -t 0.9272 -s 2 -d 1 -p ack -e 40 -c 0 -i 13 -a 0 -S 0 -y {6 6} h -t 0.9272 -s 2 -d 1 -p ack -e 40 -c 0 -i 13 -a 0 -S 0 -y {-1 -1} r -t 0.97984 -s 2 -d 1 -p ack -e 40 -c 0 -i 10 -a 0 -S 0 -y {3 3} + -t 0.97984 -s 1 -d 0 -p ack -e 40 -c 0 -i 10 -a 0 -S 0 -y {3 3} - -t 0.97984 -s 1 -d 0 -p ack -e 40 -c 0 -i 10 -a 0 -S 0 -f 0 -m 1 -y {3 3} h -t 0.97984 -s 1 -d 0 -p ack -e 40 -c 0 -i 10 -a 0 -S 0 -y {-1 -1} r -t 0.99584 -s 2 -d 1 -p ack -e 40 -c 0 -i 11 -a 0 -S 0 -y {4 4} + -t 0.99584 -s 1 -d 0 -p ack -e 40 -c 0 -i 11 -a 0 -S 0 -y {4 4} - -t 0.99584 -s 1 -d 0 -p ack -e 40 -c 0 -i 11 -a 0 -S 0 -f 0 -m 1 -y {4 4} h -t 0.99584 -s 1 -d 0 -p ack -e 40 -c 0 -i 11 -a 0 -S 0 -y {-1 -1} r -t 0.999904 -s 1 -d 0 -p ack -e 40 -c 0 -i 10 -a 0 -S 0 -y {3 3} f -t 0.99990399999999979 -s 0 -d 3 -n cwnd_ -a tcp -v 5.000000 -o 4.000000 -T v + -t 0.999904 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 14 -a 0 -S 0 -f 0 -m 0 -y {7 7} - -t 0.999904 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 14 -a 0 -S 0 -y {7 7} h -t 0.999904 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 14 -a 0 -S 0 -y {-1 -1} + -t 0.999904 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 15 -a 0 -S 0 -f 0 -m 0 -y {8 8} - -t 1.0015 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 15 -a 0 -S 0 -y {8 8} h -t 1.0015 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 15 -a 0 -S 0 -y {-1 -1} r -t 1.01184 -s 2 -d 1 -p ack -e 40 -c 0 -i 12 -a 0 -S 0 -y {5 5} + -t 1.01184 -s 1 -d 0 -p ack -e 40 -c 0 -i 12 -a 0 -S 0 -y {5 5} - -t 1.01184 -s 1 -d 0 -p ack -e 40 -c 0 -i 12 -a 0 -S 0 -f 0 -m 1 -y {5 5} h -t 1.01184 -s 1 -d 0 -p ack -e 40 -c 0 -i 12 -a 0 -S 0 -y {-1 -1} r -t 1.0159 -s 1 -d 0 -p ack -e 40 -c 0 -i 11 -a 0 -S 0 -y {4 4} f -t 1.01590399999999992 -s 0 -d 3 -n cwnd_ -a tcp -v 6.000000 -o 5.000000 -T v + -t 1.0159 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 16 -a 0 -S 0 -f 0 -m 0 -y {9 9} - -t 1.0159 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 16 -a 0 -S 0 -y {9 9} h -t 1.0159 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 16 -a 0 -S 0 -y {-1 -1} + -t 1.0159 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 17 -a 0 -S 0 -f 0 -m 0 -y {10 10} - -t 1.0175 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 17 -a 0 -S 0 -y {10 10} h -t 1.0175 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 17 -a 0 -S 0 -y {-1 -1} r -t 1.0215 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 14 -a 0 -S 0 -y {7 7} + -t 1.0215 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 14 -a 0 -S 0 -y {7 7} - -t 1.0215 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 14 -a 0 -S 0 -y {7 7} h -t 1.0215 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 14 -a 0 -S 0 -y {-1 -1} r -t 1.0231 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 15 -a 0 -S 0 -y {8 8} + -t 1.0231 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 15 -a 0 -S 0 -y {8 8} r -t 1.02784 -s 2 -d 1 -p ack -e 40 -c 0 -i 13 -a 0 -S 0 -y {6 6} + -t 1.02784 -s 1 -d 0 -p ack -e 40 -c 0 -i 13 -a 0 -S 0 -y {6 6} - -t 1.02784 -s 1 -d 0 -p ack -e 40 -c 0 -i 13 -a 0 -S 0 -f 0 -m 1 -y {6 6} h -t 1.02784 -s 1 -d 0 -p ack -e 40 -c 0 -i 13 -a 0 -S 0 -y {-1 -1} r -t 1.0319 -s 1 -d 0 -p ack -e 40 -c 0 -i 12 -a 0 -S 0 -y {5 5} f -t 1.03190399999999993 -s 0 -d 3 -n cwnd_ -a tcp -v 7.000000 -o 6.000000 -T v + -t 1.0319 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -f 0 -m 0 -y {11 11} - -t 1.0319 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {11 11} h -t 1.0319 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {-1 -1} + -t 1.0319 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 19 -a 0 -S 0 -f 0 -m 0 -y {12 12} - -t 1.0335 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 19 -a 0 -S 0 -y {12 12} h -t 1.0335 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 19 -a 0 -S 0 -y {-1 -1} - -t 1.0375 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 15 -a 0 -S 0 -y {8 8} h -t 1.0375 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 15 -a 0 -S 0 -y {-1 -1} r -t 1.0375 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 16 -a 0 -S 0 -y {9 9} + -t 1.0375 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 16 -a 0 -S 0 -y {9 9} r -t 1.0391 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 17 -a 0 -S 0 -y {10 10} + -t 1.0391 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 17 -a 0 -S 0 -y {10 10} r -t 1.0479 -s 1 -d 0 -p ack -e 40 -c 0 -i 13 -a 0 -S 0 -y {6 6} f -t 1.04790399999999995 -s 0 -d 3 -n cwnd_ -a tcp -v 8.000000 -o 7.000000 -T v + -t 1.0479 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 20 -a 0 -S 0 -f 0 -m 0 -y {13 13} - -t 1.0479 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 20 -a 0 -S 0 -y {13 13} h -t 1.0479 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 20 -a 0 -S 0 -y {-1 -1} + -t 1.0479 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 21 -a 0 -S 0 -f 0 -m 0 -y {14 14} - -t 1.0495 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 21 -a 0 -S 0 -y {14 14} h -t 1.0495 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 21 -a 0 -S 0 -y {-1 -1} - -t 1.0535 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 16 -a 0 -S 0 -y {9 9} h -t 1.0535 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 16 -a 0 -S 0 -y {-1 -1} r -t 1.0535 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {11 11} + -t 1.0535 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {11 11} r -t 1.0551 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 19 -a 0 -S 0 -y {12 12} + -t 1.0551 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 19 -a 0 -S 0 -y {12 12} - -t 1.0695 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 17 -a 0 -S 0 -y {10 10} h -t 1.0695 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 17 -a 0 -S 0 -y {-1 -1} r -t 1.0695 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 20 -a 0 -S 0 -y {13 13} + -t 1.0695 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 20 -a 0 -S 0 -y {13 13} r -t 1.0711 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 21 -a 0 -S 0 -y {14 14} + -t 1.0711 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 21 -a 0 -S 0 -y {14 14} - -t 1.0855 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {11 11} h -t 1.0855 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {-1 -1} - -t 1.1015 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 19 -a 0 -S 0 -y {12 12} h -t 1.1015 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 19 -a 0 -S 0 -y {-1 -1} - -t 1.1175 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 20 -a 0 -S 0 -y {13 13} h -t 1.1175 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 20 -a 0 -S 0 -y {-1 -1} - -t 1.1335 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 21 -a 0 -S 0 -y {14 14} h -t 1.1335 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 21 -a 0 -S 0 -y {-1 -1} r -t 1.1375 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 14 -a 0 -S 0 -y {7 7} + -t 1.1375 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 14 -a 0 -S 0 -y {7 7} - -t 1.1375 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 14 -a 0 -S 0 -y {7 7} h -t 1.1375 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 14 -a 0 -S 0 -y {-1 -1} r -t 1.1535 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 15 -a 0 -S 0 -y {8 8} + -t 1.1535 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 15 -a 0 -S 0 -y {8 8} - -t 1.1535 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 15 -a 0 -S 0 -y {8 8} h -t 1.1535 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 15 -a 0 -S 0 -y {-1 -1} r -t 1.1591 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 14 -a 0 -S 0 -y {7 7} + -t 1.1591 -s 3 -d 2 -p ack -e 40 -c 0 -i 22 -a 0 -S 0 -y {7 7} - -t 1.1591 -s 3 -d 2 -p ack -e 40 -c 0 -i 22 -a 0 -S 0 -y {7 7} h -t 1.1591 -s 3 -d 2 -p ack -e 40 -c 0 -i 22 -a 0 -S 0 -y {-1 -1} r -t 1.1695 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 16 -a 0 -S 0 -y {9 9} + -t 1.1695 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 16 -a 0 -S 0 -y {9 9} - -t 1.1695 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 16 -a 0 -S 0 -y {9 9} h -t 1.1695 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 16 -a 0 -S 0 -y {-1 -1} r -t 1.1751 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 15 -a 0 -S 0 -y {8 8} + -t 1.1751 -s 3 -d 2 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {8 8} - -t 1.1751 -s 3 -d 2 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {8 8} h -t 1.1751 -s 3 -d 2 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {-1 -1} r -t 1.17917 -s 3 -d 2 -p ack -e 40 -c 0 -i 22 -a 0 -S 0 -y {7 7} + -t 1.17917 -s 2 -d 1 -p ack -e 40 -c 0 -i 22 -a 0 -S 0 -y {7 7} - -t 1.17917 -s 2 -d 1 -p ack -e 40 -c 0 -i 22 -a 0 -S 0 -y {7 7} h -t 1.17917 -s 2 -d 1 -p ack -e 40 -c 0 -i 22 -a 0 -S 0 -y {-1 -1} r -t 1.1855 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 17 -a 0 -S 0 -y {10 10} + -t 1.1855 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 17 -a 0 -S 0 -y {10 10} - -t 1.1855 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 17 -a 0 -S 0 -y {10 10} h -t 1.1855 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 17 -a 0 -S 0 -y {-1 -1} r -t 1.1911 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 16 -a 0 -S 0 -y {9 9} + -t 1.1911 -s 3 -d 2 -p ack -e 40 -c 0 -i 24 -a 0 -S 0 -y {9 9} - -t 1.1911 -s 3 -d 2 -p ack -e 40 -c 0 -i 24 -a 0 -S 0 -y {9 9} h -t 1.1911 -s 3 -d 2 -p ack -e 40 -c 0 -i 24 -a 0 -S 0 -y {-1 -1} r -t 1.19517 -s 3 -d 2 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {8 8} + -t 1.19517 -s 2 -d 1 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {8 8} - -t 1.19517 -s 2 -d 1 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {8 8} h -t 1.19517 -s 2 -d 1 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {-1 -1} r -t 1.2015 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {11 11} + -t 1.2015 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {11 11} - -t 1.2015 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {11 11} h -t 1.2015 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {-1 -1} r -t 1.2071 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 17 -a 0 -S 0 -y {10 10} + -t 1.2071 -s 3 -d 2 -p ack -e 40 -c 0 -i 25 -a 0 -S 0 -y {10 10} - -t 1.2071 -s 3 -d 2 -p ack -e 40 -c 0 -i 25 -a 0 -S 0 -y {10 10} h -t 1.2071 -s 3 -d 2 -p ack -e 40 -c 0 -i 25 -a 0 -S 0 -y {-1 -1} r -t 1.21117 -s 3 -d 2 -p ack -e 40 -c 0 -i 24 -a 0 -S 0 -y {9 9} + -t 1.21117 -s 2 -d 1 -p ack -e 40 -c 0 -i 24 -a 0 -S 0 -y {9 9} - -t 1.21117 -s 2 -d 1 -p ack -e 40 -c 0 -i 24 -a 0 -S 0 -y {9 9} h -t 1.21117 -s 2 -d 1 -p ack -e 40 -c 0 -i 24 -a 0 -S 0 -y {-1 -1} r -t 1.2175 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 19 -a 0 -S 0 -y {12 12} + -t 1.2175 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 19 -a 0 -S 0 -y {12 12} - -t 1.2175 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 19 -a 0 -S 0 -y {12 12} h -t 1.2175 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 19 -a 0 -S 0 -y {-1 -1} r -t 1.2231 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {11 11} + -t 1.2231 -s 3 -d 2 -p ack -e 40 -c 0 -i 26 -a 0 -S 0 -y {11 11} - -t 1.2231 -s 3 -d 2 -p ack -e 40 -c 0 -i 26 -a 0 -S 0 -y {11 11} h -t 1.2231 -s 3 -d 2 -p ack -e 40 -c 0 -i 26 -a 0 -S 0 -y {-1 -1} r -t 1.22717 -s 3 -d 2 -p ack -e 40 -c 0 -i 25 -a 0 -S 0 -y {10 10} + -t 1.22717 -s 2 -d 1 -p ack -e 40 -c 0 -i 25 -a 0 -S 0 -y {10 10} - -t 1.22717 -s 2 -d 1 -p ack -e 40 -c 0 -i 25 -a 0 -S 0 -y {10 10} h -t 1.22717 -s 2 -d 1 -p ack -e 40 -c 0 -i 25 -a 0 -S 0 -y {-1 -1} r -t 1.2335 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 20 -a 0 -S 0 -y {13 13} + -t 1.2335 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 20 -a 0 -S 0 -y {13 13} - -t 1.2335 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 20 -a 0 -S 0 -y {13 13} h -t 1.2335 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 20 -a 0 -S 0 -y {-1 -1} r -t 1.2391 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 19 -a 0 -S 0 -y {12 12} + -t 1.2391 -s 3 -d 2 -p ack -e 40 -c 0 -i 27 -a 0 -S 0 -y {12 12} - -t 1.2391 -s 3 -d 2 -p ack -e 40 -c 0 -i 27 -a 0 -S 0 -y {12 12} h -t 1.2391 -s 3 -d 2 -p ack -e 40 -c 0 -i 27 -a 0 -S 0 -y {-1 -1} r -t 1.24317 -s 3 -d 2 -p ack -e 40 -c 0 -i 26 -a 0 -S 0 -y {11 11} + -t 1.24317 -s 2 -d 1 -p ack -e 40 -c 0 -i 26 -a 0 -S 0 -y {11 11} - -t 1.24317 -s 2 -d 1 -p ack -e 40 -c 0 -i 26 -a 0 -S 0 -y {11 11} h -t 1.24317 -s 2 -d 1 -p ack -e 40 -c 0 -i 26 -a 0 -S 0 -y {-1 -1} r -t 1.2495 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 21 -a 0 -S 0 -y {14 14} + -t 1.2495 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 21 -a 0 -S 0 -y {14 14} - -t 1.2495 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 21 -a 0 -S 0 -y {14 14} h -t 1.2495 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 21 -a 0 -S 0 -y {-1 -1} r -t 1.2551 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 20 -a 0 -S 0 -y {13 13} + -t 1.2551 -s 3 -d 2 -p ack -e 40 -c 0 -i 28 -a 0 -S 0 -y {13 13} - -t 1.2551 -s 3 -d 2 -p ack -e 40 -c 0 -i 28 -a 0 -S 0 -y {13 13} h -t 1.2551 -s 3 -d 2 -p ack -e 40 -c 0 -i 28 -a 0 -S 0 -y {-1 -1} r -t 1.25917 -s 3 -d 2 -p ack -e 40 -c 0 -i 27 -a 0 -S 0 -y {12 12} + -t 1.25917 -s 2 -d 1 -p ack -e 40 -c 0 -i 27 -a 0 -S 0 -y {12 12} - -t 1.25917 -s 2 -d 1 -p ack -e 40 -c 0 -i 27 -a 0 -S 0 -y {12 12} h -t 1.25917 -s 2 -d 1 -p ack -e 40 -c 0 -i 27 -a 0 -S 0 -y {-1 -1} r -t 1.2711 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 21 -a 0 -S 0 -y {14 14} + -t 1.2711 -s 3 -d 2 -p ack -e 40 -c 0 -i 29 -a 0 -S 0 -y {14 14} - -t 1.2711 -s 3 -d 2 -p ack -e 40 -c 0 -i 29 -a 0 -S 0 -y {14 14} h -t 1.2711 -s 3 -d 2 -p ack -e 40 -c 0 -i 29 -a 0 -S 0 -y {-1 -1} r -t 1.27517 -s 3 -d 2 -p ack -e 40 -c 0 -i 28 -a 0 -S 0 -y {13 13} + -t 1.27517 -s 2 -d 1 -p ack -e 40 -c 0 -i 28 -a 0 -S 0 -y {13 13} - -t 1.27517 -s 2 -d 1 -p ack -e 40 -c 0 -i 28 -a 0 -S 0 -y {13 13} h -t 1.27517 -s 2 -d 1 -p ack -e 40 -c 0 -i 28 -a 0 -S 0 -y {-1 -1} r -t 1.27981 -s 2 -d 1 -p ack -e 40 -c 0 -i 22 -a 0 -S 0 -y {7 7} + -t 1.27981 -s 1 -d 0 -p ack -e 40 -c 0 -i 22 -a 0 -S 0 -y {7 7} - -t 1.27981 -s 1 -d 0 -p ack -e 40 -c 0 -i 22 -a 0 -S 0 -f 0 -m 1 -y {7 7} h -t 1.27981 -s 1 -d 0 -p ack -e 40 -c 0 -i 22 -a 0 -S 0 -y {-1 -1} r -t 1.29117 -s 3 -d 2 -p ack -e 40 -c 0 -i 29 -a 0 -S 0 -y {14 14} + -t 1.29117 -s 2 -d 1 -p ack -e 40 -c 0 -i 29 -a 0 -S 0 -y {14 14} - -t 1.29117 -s 2 -d 1 -p ack -e 40 -c 0 -i 29 -a 0 -S 0 -y {14 14} h -t 1.29117 -s 2 -d 1 -p ack -e 40 -c 0 -i 29 -a 0 -S 0 -y {-1 -1} r -t 1.29581 -s 2 -d 1 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {8 8} + -t 1.29581 -s 1 -d 0 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {8 8} - -t 1.29581 -s 1 -d 0 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -f 0 -m 1 -y {8 8} h -t 1.29581 -s 1 -d 0 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {-1 -1} r -t 1.29987 -s 1 -d 0 -p ack -e 40 -c 0 -i 22 -a 0 -S 0 -y {7 7} f -t 1.29987200000000014 -s 0 -d 3 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v + -t 1.29987 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 30 -a 0 -S 0 -f 0 -m 0 -y {15 15} - -t 1.29987 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 30 -a 0 -S 0 -y {15 15} h -t 1.29987 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 30 -a 0 -S 0 -y {-1 -1} + -t 1.29987 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 31 -a 0 -S 0 -f 0 -m 0 -y {16 16} - -t 1.30147 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 31 -a 0 -S 0 -y {16 16} h -t 1.30147 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 31 -a 0 -S 0 -y {-1 -1} r -t 1.31181 -s 2 -d 1 -p ack -e 40 -c 0 -i 24 -a 0 -S 0 -y {9 9} + -t 1.31181 -s 1 -d 0 -p ack -e 40 -c 0 -i 24 -a 0 -S 0 -y {9 9} - -t 1.31181 -s 1 -d 0 -p ack -e 40 -c 0 -i 24 -a 0 -S 0 -f 0 -m 1 -y {9 9} h -t 1.31181 -s 1 -d 0 -p ack -e 40 -c 0 -i 24 -a 0 -S 0 -y {-1 -1} r -t 1.31587 -s 1 -d 0 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {8 8} f -t 1.31587200000000015 -s 0 -d 3 -n cwnd_ -a tcp -v 10.000000 -o 9.000000 -T v + -t 1.31587 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 32 -a 0 -S 0 -f 0 -m 0 -y {17 17} - -t 1.31587 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 32 -a 0 -S 0 -y {17 17} h -t 1.31587 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 32 -a 0 -S 0 -y {-1 -1} + -t 1.31587 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 33 -a 0 -S 0 -f 0 -m 0 -y {18 18} - -t 1.31747 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 33 -a 0 -S 0 -y {18 18} h -t 1.31747 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 33 -a 0 -S 0 -y {-1 -1} r -t 1.32147 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 30 -a 0 -S 0 -y {15 15} + -t 1.32147 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 30 -a 0 -S 0 -y {15 15} - -t 1.32147 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 30 -a 0 -S 0 -y {15 15} h -t 1.32147 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 30 -a 0 -S 0 -y {-1 -1} r -t 1.32307 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 31 -a 0 -S 0 -y {16 16} + -t 1.32307 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 31 -a 0 -S 0 -y {16 16} r -t 1.32781 -s 2 -d 1 -p ack -e 40 -c 0 -i 25 -a 0 -S 0 -y {10 10} + -t 1.32781 -s 1 -d 0 -p ack -e 40 -c 0 -i 25 -a 0 -S 0 -y {10 10} - -t 1.32781 -s 1 -d 0 -p ack -e 40 -c 0 -i 25 -a 0 -S 0 -f 0 -m 1 -y {10 10} h -t 1.32781 -s 1 -d 0 -p ack -e 40 -c 0 -i 25 -a 0 -S 0 -y {-1 -1} r -t 1.33187 -s 1 -d 0 -p ack -e 40 -c 0 -i 24 -a 0 -S 0 -y {9 9} f -t 1.33187200000000017 -s 0 -d 3 -n cwnd_ -a tcp -v 11.000000 -o 10.000000 -T v + -t 1.33187 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 34 -a 0 -S 0 -f 0 -m 0 -y {19 19} - -t 1.33187 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 34 -a 0 -S 0 -y {19 19} h -t 1.33187 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 34 -a 0 -S 0 -y {-1 -1} + -t 1.33187 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 35 -a 0 -S 0 -f 0 -m 0 -y {20 20} - -t 1.33347 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 35 -a 0 -S 0 -y {20 20} h -t 1.33347 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 35 -a 0 -S 0 -y {-1 -1} r -t 1.33747 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 32 -a 0 -S 0 -y {17 17} + -t 1.33747 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 32 -a 0 -S 0 -y {17 17} - -t 1.33747 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 31 -a 0 -S 0 -y {16 16} h -t 1.33747 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 31 -a 0 -S 0 -y {-1 -1} r -t 1.33907 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 33 -a 0 -S 0 -y {18 18} + -t 1.33907 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 33 -a 0 -S 0 -y {18 18} r -t 1.34381 -s 2 -d 1 -p ack -e 40 -c 0 -i 26 -a 0 -S 0 -y {11 11} + -t 1.34381 -s 1 -d 0 -p ack -e 40 -c 0 -i 26 -a 0 -S 0 -y {11 11} - -t 1.34381 -s 1 -d 0 -p ack -e 40 -c 0 -i 26 -a 0 -S 0 -f 0 -m 1 -y {11 11} h -t 1.34381 -s 1 -d 0 -p ack -e 40 -c 0 -i 26 -a 0 -S 0 -y {-1 -1} r -t 1.34787 -s 1 -d 0 -p ack -e 40 -c 0 -i 25 -a 0 -S 0 -y {10 10} f -t 1.34787200000000018 -s 0 -d 3 -n cwnd_ -a tcp -v 12.000000 -o 11.000000 -T v + -t 1.34787 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 36 -a 0 -S 0 -f 0 -m 0 -y {21 21} - -t 1.34787 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 36 -a 0 -S 0 -y {21 21} h -t 1.34787 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 36 -a 0 -S 0 -y {-1 -1} + -t 1.34787 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 37 -a 0 -S 0 -f 0 -m 0 -y {22 22} - -t 1.34947 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 37 -a 0 -S 0 -y {22 22} h -t 1.34947 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 37 -a 0 -S 0 -y {-1 -1} r -t 1.35347 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 34 -a 0 -S 0 -y {19 19} + -t 1.35347 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 34 -a 0 -S 0 -y {19 19} - -t 1.35347 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 32 -a 0 -S 0 -y {17 17} h -t 1.35347 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 32 -a 0 -S 0 -y {-1 -1} r -t 1.35507 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 35 -a 0 -S 0 -y {20 20} + -t 1.35507 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 35 -a 0 -S 0 -y {20 20} r -t 1.35981 -s 2 -d 1 -p ack -e 40 -c 0 -i 27 -a 0 -S 0 -y {12 12} + -t 1.35981 -s 1 -d 0 -p ack -e 40 -c 0 -i 27 -a 0 -S 0 -y {12 12} - -t 1.35981 -s 1 -d 0 -p ack -e 40 -c 0 -i 27 -a 0 -S 0 -f 0 -m 1 -y {12 12} h -t 1.35981 -s 1 -d 0 -p ack -e 40 -c 0 -i 27 -a 0 -S 0 -y {-1 -1} r -t 1.36387 -s 1 -d 0 -p ack -e 40 -c 0 -i 26 -a 0 -S 0 -y {11 11} f -t 1.36387200000000020 -s 0 -d 3 -n cwnd_ -a tcp -v 13.000000 -o 12.000000 -T v + -t 1.36387 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 38 -a 0 -S 0 -f 0 -m 0 -y {23 23} - -t 1.36387 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 38 -a 0 -S 0 -y {23 23} h -t 1.36387 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 38 -a 0 -S 0 -y {-1 -1} + -t 1.36387 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 39 -a 0 -S 0 -f 0 -m 0 -y {24 24} - -t 1.36547 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 39 -a 0 -S 0 -y {24 24} h -t 1.36547 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 39 -a 0 -S 0 -y {-1 -1} r -t 1.36947 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 36 -a 0 -S 0 -y {21 21} + -t 1.36947 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 36 -a 0 -S 0 -y {21 21} - -t 1.36947 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 33 -a 0 -S 0 -y {18 18} h -t 1.36947 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 33 -a 0 -S 0 -y {-1 -1} r -t 1.37107 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 37 -a 0 -S 0 -y {22 22} + -t 1.37107 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 37 -a 0 -S 0 -y {22 22} r -t 1.37581 -s 2 -d 1 -p ack -e 40 -c 0 -i 28 -a 0 -S 0 -y {13 13} + -t 1.37581 -s 1 -d 0 -p ack -e 40 -c 0 -i 28 -a 0 -S 0 -y {13 13} - -t 1.37581 -s 1 -d 0 -p ack -e 40 -c 0 -i 28 -a 0 -S 0 -f 0 -m 1 -y {13 13} h -t 1.37581 -s 1 -d 0 -p ack -e 40 -c 0 -i 28 -a 0 -S 0 -y {-1 -1} r -t 1.37987 -s 1 -d 0 -p ack -e 40 -c 0 -i 27 -a 0 -S 0 -y {12 12} f -t 1.37987200000000021 -s 0 -d 3 -n cwnd_ -a tcp -v 14.000000 -o 13.000000 -T v + -t 1.37987 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 40 -a 0 -S 0 -f 0 -m 0 -y {25 25} - -t 1.37987 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 40 -a 0 -S 0 -y {25 25} h -t 1.37987 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 40 -a 0 -S 0 -y {-1 -1} + -t 1.37987 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 41 -a 0 -S 0 -f 0 -m 0 -y {26 26} - -t 1.38147 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 41 -a 0 -S 0 -y {26 26} h -t 1.38147 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 41 -a 0 -S 0 -y {-1 -1} r -t 1.38547 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 38 -a 0 -S 0 -y {23 23} + -t 1.38547 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 38 -a 0 -S 0 -y {23 23} d -t 1.38547 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 38 -a 0 -S 0 -y {23 23} - -t 1.38547 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 34 -a 0 -S 0 -y {19 19} h -t 1.38547 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 34 -a 0 -S 0 -y {-1 -1} r -t 1.38707 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 39 -a 0 -S 0 -y {24 24} + -t 1.38707 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 39 -a 0 -S 0 -y {24 24} r -t 1.39181 -s 2 -d 1 -p ack -e 40 -c 0 -i 29 -a 0 -S 0 -y {14 14} + -t 1.39181 -s 1 -d 0 -p ack -e 40 -c 0 -i 29 -a 0 -S 0 -y {14 14} - -t 1.39181 -s 1 -d 0 -p ack -e 40 -c 0 -i 29 -a 0 -S 0 -f 0 -m 1 -y {14 14} h -t 1.39181 -s 1 -d 0 -p ack -e 40 -c 0 -i 29 -a 0 -S 0 -y {-1 -1} r -t 1.39587 -s 1 -d 0 -p ack -e 40 -c 0 -i 28 -a 0 -S 0 -y {13 13} f -t 1.39587200000000022 -s 0 -d 3 -n cwnd_ -a tcp -v 15.000000 -o 14.000000 -T v + -t 1.39587 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 42 -a 0 -S 0 -f 0 -m 0 -y {27 27} - -t 1.39587 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 42 -a 0 -S 0 -y {27 27} h -t 1.39587 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 42 -a 0 -S 0 -y {-1 -1} + -t 1.39587 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 43 -a 0 -S 0 -f 0 -m 0 -y {28 28} - -t 1.39747 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 43 -a 0 -S 0 -y {28 28} h -t 1.39747 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 43 -a 0 -S 0 -y {-1 -1} r -t 1.40147 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 40 -a 0 -S 0 -y {25 25} + -t 1.40147 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 40 -a 0 -S 0 -y {25 25} d -t 1.40147 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 40 -a 0 -S 0 -y {25 25} - -t 1.40147 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 35 -a 0 -S 0 -y {20 20} h -t 1.40147 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 35 -a 0 -S 0 -y {-1 -1} r -t 1.40307 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 41 -a 0 -S 0 -y {26 26} + -t 1.40307 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 41 -a 0 -S 0 -y {26 26} r -t 1.41187 -s 1 -d 0 -p ack -e 40 -c 0 -i 29 -a 0 -S 0 -y {14 14} f -t 1.41187200000000024 -s 0 -d 3 -n cwnd_ -a tcp -v 16.000000 -o 15.000000 -T v + -t 1.41187 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 44 -a 0 -S 0 -f 0 -m 0 -y {29 29} - -t 1.41187 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 44 -a 0 -S 0 -y {29 29} h -t 1.41187 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 44 -a 0 -S 0 -y {-1 -1} + -t 1.41187 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 45 -a 0 -S 0 -f 0 -m 0 -y {30 30} - -t 1.41347 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 45 -a 0 -S 0 -y {30 30} h -t 1.41347 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 45 -a 0 -S 0 -y {-1 -1} r -t 1.41747 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 42 -a 0 -S 0 -y {27 27} + -t 1.41747 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 42 -a 0 -S 0 -y {27 27} d -t 1.41747 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 42 -a 0 -S 0 -y {27 27} - -t 1.41747 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 36 -a 0 -S 0 -y {21 21} h -t 1.41747 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 36 -a 0 -S 0 -y {-1 -1} r -t 1.41907 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 43 -a 0 -S 0 -y {28 28} + -t 1.41907 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 43 -a 0 -S 0 -y {28 28} r -t 1.43347 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 44 -a 0 -S 0 -y {29 29} + -t 1.43347 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 44 -a 0 -S 0 -y {29 29} d -t 1.43347 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 44 -a 0 -S 0 -y {29 29} - -t 1.43347 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 37 -a 0 -S 0 -y {22 22} h -t 1.43347 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 37 -a 0 -S 0 -y {-1 -1} r -t 1.43507 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 45 -a 0 -S 0 -y {30 30} + -t 1.43507 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 45 -a 0 -S 0 -y {30 30} r -t 1.43747 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 30 -a 0 -S 0 -y {15 15} + -t 1.43747 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 30 -a 0 -S 0 -y {15 15} - -t 1.43747 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 30 -a 0 -S 0 -y {15 15} h -t 1.43747 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 30 -a 0 -S 0 -y {-1 -1} - -t 1.44947 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 39 -a 0 -S 0 -y {24 24} h -t 1.44947 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 39 -a 0 -S 0 -y {-1 -1} r -t 1.45347 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 31 -a 0 -S 0 -y {16 16} + -t 1.45347 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 31 -a 0 -S 0 -y {16 16} - -t 1.45347 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 31 -a 0 -S 0 -y {16 16} h -t 1.45347 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 31 -a 0 -S 0 -y {-1 -1} r -t 1.45907 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 30 -a 0 -S 0 -y {15 15} + -t 1.45907 -s 3 -d 2 -p ack -e 40 -c 0 -i 46 -a 0 -S 0 -y {15 15} - -t 1.45907 -s 3 -d 2 -p ack -e 40 -c 0 -i 46 -a 0 -S 0 -y {15 15} h -t 1.45907 -s 3 -d 2 -p ack -e 40 -c 0 -i 46 -a 0 -S 0 -y {-1 -1} - -t 1.46547 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 41 -a 0 -S 0 -y {26 26} h -t 1.46547 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 41 -a 0 -S 0 -y {-1 -1} r -t 1.46947 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 32 -a 0 -S 0 -y {17 17} + -t 1.46947 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 32 -a 0 -S 0 -y {17 17} - -t 1.46947 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 32 -a 0 -S 0 -y {17 17} h -t 1.46947 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 32 -a 0 -S 0 -y {-1 -1} r -t 1.47507 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 31 -a 0 -S 0 -y {16 16} + -t 1.47507 -s 3 -d 2 -p ack -e 40 -c 0 -i 47 -a 0 -S 0 -y {16 16} - -t 1.47507 -s 3 -d 2 -p ack -e 40 -c 0 -i 47 -a 0 -S 0 -y {16 16} h -t 1.47507 -s 3 -d 2 -p ack -e 40 -c 0 -i 47 -a 0 -S 0 -y {-1 -1} r -t 1.47914 -s 3 -d 2 -p ack -e 40 -c 0 -i 46 -a 0 -S 0 -y {15 15} + -t 1.47914 -s 2 -d 1 -p ack -e 40 -c 0 -i 46 -a 0 -S 0 -y {15 15} - -t 1.47914 -s 2 -d 1 -p ack -e 40 -c 0 -i 46 -a 0 -S 0 -y {15 15} h -t 1.47914 -s 2 -d 1 -p ack -e 40 -c 0 -i 46 -a 0 -S 0 -y {-1 -1} - -t 1.48147 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 43 -a 0 -S 0 -y {28 28} h -t 1.48147 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 43 -a 0 -S 0 -y {-1 -1} r -t 1.48547 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 33 -a 0 -S 0 -y {18 18} + -t 1.48547 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 33 -a 0 -S 0 -y {18 18} - -t 1.48547 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 33 -a 0 -S 0 -y {18 18} h -t 1.48547 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 33 -a 0 -S 0 -y {-1 -1} r -t 1.49107 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 32 -a 0 -S 0 -y {17 17} + -t 1.49107 -s 3 -d 2 -p ack -e 40 -c 0 -i 48 -a 0 -S 0 -y {17 17} - -t 1.49107 -s 3 -d 2 -p ack -e 40 -c 0 -i 48 -a 0 -S 0 -y {17 17} h -t 1.49107 -s 3 -d 2 -p ack -e 40 -c 0 -i 48 -a 0 -S 0 -y {-1 -1} r -t 1.49514 -s 3 -d 2 -p ack -e 40 -c 0 -i 47 -a 0 -S 0 -y {16 16} + -t 1.49514 -s 2 -d 1 -p ack -e 40 -c 0 -i 47 -a 0 -S 0 -y {16 16} - -t 1.49514 -s 2 -d 1 -p ack -e 40 -c 0 -i 47 -a 0 -S 0 -y {16 16} h -t 1.49514 -s 2 -d 1 -p ack -e 40 -c 0 -i 47 -a 0 -S 0 -y {-1 -1} - -t 1.49747 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 45 -a 0 -S 0 -y {30 30} h -t 1.49747 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 45 -a 0 -S 0 -y {-1 -1} r -t 1.50147 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 34 -a 0 -S 0 -y {19 19} + -t 1.50147 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 34 -a 0 -S 0 -y {19 19} - -t 1.50147 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 34 -a 0 -S 0 -y {19 19} h -t 1.50147 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 34 -a 0 -S 0 -y {-1 -1} r -t 1.50707 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 33 -a 0 -S 0 -y {18 18} + -t 1.50707 -s 3 -d 2 -p ack -e 40 -c 0 -i 49 -a 0 -S 0 -y {18 18} - -t 1.50707 -s 3 -d 2 -p ack -e 40 -c 0 -i 49 -a 0 -S 0 -y {18 18} h -t 1.50707 -s 3 -d 2 -p ack -e 40 -c 0 -i 49 -a 0 -S 0 -y {-1 -1} r -t 1.51114 -s 3 -d 2 -p ack -e 40 -c 0 -i 48 -a 0 -S 0 -y {17 17} + -t 1.51114 -s 2 -d 1 -p ack -e 40 -c 0 -i 48 -a 0 -S 0 -y {17 17} - -t 1.51114 -s 2 -d 1 -p ack -e 40 -c 0 -i 48 -a 0 -S 0 -y {17 17} h -t 1.51114 -s 2 -d 1 -p ack -e 40 -c 0 -i 48 -a 0 -S 0 -y {-1 -1} r -t 1.51747 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 35 -a 0 -S 0 -y {20 20} + -t 1.51747 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 35 -a 0 -S 0 -y {20 20} - -t 1.51747 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 35 -a 0 -S 0 -y {20 20} h -t 1.51747 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 35 -a 0 -S 0 -y {-1 -1} r -t 1.52307 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 34 -a 0 -S 0 -y {19 19} + -t 1.52307 -s 3 -d 2 -p ack -e 40 -c 0 -i 50 -a 0 -S 0 -y {19 19} - -t 1.52307 -s 3 -d 2 -p ack -e 40 -c 0 -i 50 -a 0 -S 0 -y {19 19} h -t 1.52307 -s 3 -d 2 -p ack -e 40 -c 0 -i 50 -a 0 -S 0 -y {-1 -1} r -t 1.52714 -s 3 -d 2 -p ack -e 40 -c 0 -i 49 -a 0 -S 0 -y {18 18} + -t 1.52714 -s 2 -d 1 -p ack -e 40 -c 0 -i 49 -a 0 -S 0 -y {18 18} - -t 1.52714 -s 2 -d 1 -p ack -e 40 -c 0 -i 49 -a 0 -S 0 -y {18 18} h -t 1.52714 -s 2 -d 1 -p ack -e 40 -c 0 -i 49 -a 0 -S 0 -y {-1 -1} r -t 1.53347 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 36 -a 0 -S 0 -y {21 21} + -t 1.53347 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 36 -a 0 -S 0 -y {21 21} - -t 1.53347 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 36 -a 0 -S 0 -y {21 21} h -t 1.53347 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 36 -a 0 -S 0 -y {-1 -1} r -t 1.53907 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 35 -a 0 -S 0 -y {20 20} + -t 1.53907 -s 3 -d 2 -p ack -e 40 -c 0 -i 51 -a 0 -S 0 -y {20 20} - -t 1.53907 -s 3 -d 2 -p ack -e 40 -c 0 -i 51 -a 0 -S 0 -y {20 20} h -t 1.53907 -s 3 -d 2 -p ack -e 40 -c 0 -i 51 -a 0 -S 0 -y {-1 -1} r -t 1.54314 -s 3 -d 2 -p ack -e 40 -c 0 -i 50 -a 0 -S 0 -y {19 19} + -t 1.54314 -s 2 -d 1 -p ack -e 40 -c 0 -i 50 -a 0 -S 0 -y {19 19} - -t 1.54314 -s 2 -d 1 -p ack -e 40 -c 0 -i 50 -a 0 -S 0 -y {19 19} h -t 1.54314 -s 2 -d 1 -p ack -e 40 -c 0 -i 50 -a 0 -S 0 -y {-1 -1} r -t 1.54947 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 37 -a 0 -S 0 -y {22 22} + -t 1.54947 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 37 -a 0 -S 0 -y {22 22} - -t 1.54947 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 37 -a 0 -S 0 -y {22 22} h -t 1.54947 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 37 -a 0 -S 0 -y {-1 -1} r -t 1.55507 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 36 -a 0 -S 0 -y {21 21} + -t 1.55507 -s 3 -d 2 -p ack -e 40 -c 0 -i 52 -a 0 -S 0 -y {21 21} - -t 1.55507 -s 3 -d 2 -p ack -e 40 -c 0 -i 52 -a 0 -S 0 -y {21 21} h -t 1.55507 -s 3 -d 2 -p ack -e 40 -c 0 -i 52 -a 0 -S 0 -y {-1 -1} r -t 1.55914 -s 3 -d 2 -p ack -e 40 -c 0 -i 51 -a 0 -S 0 -y {20 20} + -t 1.55914 -s 2 -d 1 -p ack -e 40 -c 0 -i 51 -a 0 -S 0 -y {20 20} - -t 1.55914 -s 2 -d 1 -p ack -e 40 -c 0 -i 51 -a 0 -S 0 -y {20 20} h -t 1.55914 -s 2 -d 1 -p ack -e 40 -c 0 -i 51 -a 0 -S 0 -y {-1 -1} r -t 1.56547 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 39 -a 0 -S 0 -y {24 24} + -t 1.56547 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 39 -a 0 -S 0 -y {24 24} - -t 1.56547 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 39 -a 0 -S 0 -y {24 24} h -t 1.56547 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 39 -a 0 -S 0 -y {-1 -1} r -t 1.57107 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 37 -a 0 -S 0 -y {22 22} + -t 1.57107 -s 3 -d 2 -p ack -e 40 -c 0 -i 53 -a 0 -S 0 -y {22 22} - -t 1.57107 -s 3 -d 2 -p ack -e 40 -c 0 -i 53 -a 0 -S 0 -y {22 22} h -t 1.57107 -s 3 -d 2 -p ack -e 40 -c 0 -i 53 -a 0 -S 0 -y {-1 -1} r -t 1.57514 -s 3 -d 2 -p ack -e 40 -c 0 -i 52 -a 0 -S 0 -y {21 21} + -t 1.57514 -s 2 -d 1 -p ack -e 40 -c 0 -i 52 -a 0 -S 0 -y {21 21} - -t 1.57514 -s 2 -d 1 -p ack -e 40 -c 0 -i 52 -a 0 -S 0 -y {21 21} h -t 1.57514 -s 2 -d 1 -p ack -e 40 -c 0 -i 52 -a 0 -S 0 -y {-1 -1} r -t 1.57978 -s 2 -d 1 -p ack -e 40 -c 0 -i 46 -a 0 -S 0 -y {15 15} + -t 1.57978 -s 1 -d 0 -p ack -e 40 -c 0 -i 46 -a 0 -S 0 -y {15 15} - -t 1.57978 -s 1 -d 0 -p ack -e 40 -c 0 -i 46 -a 0 -S 0 -f 0 -m 1 -y {15 15} h -t 1.57978 -s 1 -d 0 -p ack -e 40 -c 0 -i 46 -a 0 -S 0 -y {-1 -1} r -t 1.58147 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 41 -a 0 -S 0 -y {26 26} + -t 1.58147 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 41 -a 0 -S 0 -y {26 26} - -t 1.58147 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 41 -a 0 -S 0 -y {26 26} h -t 1.58147 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 41 -a 0 -S 0 -y {-1 -1} r -t 1.58707 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 39 -a 0 -S 0 -y {24 24} + -t 1.58707 -s 3 -d 2 -p ack -e 40 -c 0 -i 54 -a 0 -S 0 -y {22 22} - -t 1.58707 -s 3 -d 2 -p ack -e 40 -c 0 -i 54 -a 0 -S 0 -y {22 22} h -t 1.58707 -s 3 -d 2 -p ack -e 40 -c 0 -i 54 -a 0 -S 0 -y {-1 -1} r -t 1.59114 -s 3 -d 2 -p ack -e 40 -c 0 -i 53 -a 0 -S 0 -y {22 22} + -t 1.59114 -s 2 -d 1 -p ack -e 40 -c 0 -i 53 -a 0 -S 0 -y {22 22} - -t 1.59114 -s 2 -d 1 -p ack -e 40 -c 0 -i 53 -a 0 -S 0 -y {22 22} h -t 1.59114 -s 2 -d 1 -p ack -e 40 -c 0 -i 53 -a 0 -S 0 -y {-1 -1} r -t 1.59578 -s 2 -d 1 -p ack -e 40 -c 0 -i 47 -a 0 -S 0 -y {16 16} + -t 1.59578 -s 1 -d 0 -p ack -e 40 -c 0 -i 47 -a 0 -S 0 -y {16 16} - -t 1.59578 -s 1 -d 0 -p ack -e 40 -c 0 -i 47 -a 0 -S 0 -f 0 -m 1 -y {16 16} h -t 1.59578 -s 1 -d 0 -p ack -e 40 -c 0 -i 47 -a 0 -S 0 -y {-1 -1} r -t 1.59747 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 43 -a 0 -S 0 -y {28 28} + -t 1.59747 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 43 -a 0 -S 0 -y {28 28} - -t 1.59747 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 43 -a 0 -S 0 -y {28 28} h -t 1.59747 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 43 -a 0 -S 0 -y {-1 -1} r -t 1.59984 -s 1 -d 0 -p ack -e 40 -c 0 -i 46 -a 0 -S 0 -y {15 15} f -t 1.59984000000000059 -s 0 -d 3 -n cwnd_ -a tcp -v 17.000000 -o 16.000000 -T v + -t 1.59984 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 55 -a 0 -S 0 -f 0 -m 0 -y {31 31} - -t 1.59984 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 55 -a 0 -S 0 -y {31 31} h -t 1.59984 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 55 -a 0 -S 0 -y {-1 -1} + -t 1.59984 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 56 -a 0 -S 0 -f 0 -m 0 -y {32 32} - -t 1.60144 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 56 -a 0 -S 0 -y {32 32} h -t 1.60144 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 56 -a 0 -S 0 -y {-1 -1} r -t 1.60307 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 41 -a 0 -S 0 -y {26 26} + -t 1.60307 -s 3 -d 2 -p ack -e 40 -c 0 -i 57 -a 0 -S 0 -y {22 22} - -t 1.60307 -s 3 -d 2 -p ack -e 40 -c 0 -i 57 -a 0 -S 0 -y {22 22} h -t 1.60307 -s 3 -d 2 -p ack -e 40 -c 0 -i 57 -a 0 -S 0 -y {-1 -1} r -t 1.60714 -s 3 -d 2 -p ack -e 40 -c 0 -i 54 -a 0 -S 0 -y {22 22} + -t 1.60714 -s 2 -d 1 -p ack -e 40 -c 0 -i 54 -a 0 -S 0 -y {22 22} - -t 1.60714 -s 2 -d 1 -p ack -e 40 -c 0 -i 54 -a 0 -S 0 -y {22 22} h -t 1.60714 -s 2 -d 1 -p ack -e 40 -c 0 -i 54 -a 0 -S 0 -y {-1 -1} r -t 1.61178 -s 2 -d 1 -p ack -e 40 -c 0 -i 48 -a 0 -S 0 -y {17 17} + -t 1.61178 -s 1 -d 0 -p ack -e 40 -c 0 -i 48 -a 0 -S 0 -y {17 17} - -t 1.61178 -s 1 -d 0 -p ack -e 40 -c 0 -i 48 -a 0 -S 0 -f 0 -m 1 -y {17 17} h -t 1.61178 -s 1 -d 0 -p ack -e 40 -c 0 -i 48 -a 0 -S 0 -y {-1 -1} r -t 1.61347 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 45 -a 0 -S 0 -y {30 30} + -t 1.61347 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 45 -a 0 -S 0 -y {30 30} - -t 1.61347 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 45 -a 0 -S 0 -y {30 30} h -t 1.61347 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 45 -a 0 -S 0 -y {-1 -1} r -t 1.61584 -s 1 -d 0 -p ack -e 40 -c 0 -i 47 -a 0 -S 0 -y {16 16} f -t 1.61584000000000061 -s 0 -d 3 -n cwnd_ -a tcp -v 18.000000 -o 17.000000 -T v + -t 1.61584 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 58 -a 0 -S 0 -f 0 -m 0 -y {33 33} - -t 1.61584 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 58 -a 0 -S 0 -y {33 33} h -t 1.61584 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 58 -a 0 -S 0 -y {-1 -1} + -t 1.61584 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 59 -a 0 -S 0 -f 0 -m 0 -y {34 34} - -t 1.61744 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 59 -a 0 -S 0 -y {34 34} h -t 1.61744 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 59 -a 0 -S 0 -y {-1 -1} r -t 1.61907 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 43 -a 0 -S 0 -y {28 28} + -t 1.61907 -s 3 -d 2 -p ack -e 40 -c 0 -i 60 -a 0 -S 0 -y {22 22} - -t 1.61907 -s 3 -d 2 -p ack -e 40 -c 0 -i 60 -a 0 -S 0 -y {22 22} h -t 1.61907 -s 3 -d 2 -p ack -e 40 -c 0 -i 60 -a 0 -S 0 -y {-1 -1} r -t 1.62144 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 55 -a 0 -S 0 -y {31 31} + -t 1.62144 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 55 -a 0 -S 0 -y {31 31} - -t 1.62144 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 55 -a 0 -S 0 -y {31 31} h -t 1.62144 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 55 -a 0 -S 0 -y {-1 -1} r -t 1.62304 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 56 -a 0 -S 0 -y {32 32} + -t 1.62304 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 56 -a 0 -S 0 -y {32 32} r -t 1.62314 -s 3 -d 2 -p ack -e 40 -c 0 -i 57 -a 0 -S 0 -y {22 22} + -t 1.62314 -s 2 -d 1 -p ack -e 40 -c 0 -i 57 -a 0 -S 0 -y {22 22} - -t 1.62314 -s 2 -d 1 -p ack -e 40 -c 0 -i 57 -a 0 -S 0 -y {22 22} h -t 1.62314 -s 2 -d 1 -p ack -e 40 -c 0 -i 57 -a 0 -S 0 -y {-1 -1} r -t 1.62778 -s 2 -d 1 -p ack -e 40 -c 0 -i 49 -a 0 -S 0 -y {18 18} + -t 1.62778 -s 1 -d 0 -p ack -e 40 -c 0 -i 49 -a 0 -S 0 -y {18 18} - -t 1.62778 -s 1 -d 0 -p ack -e 40 -c 0 -i 49 -a 0 -S 0 -f 0 -m 1 -y {18 18} h -t 1.62778 -s 1 -d 0 -p ack -e 40 -c 0 -i 49 -a 0 -S 0 -y {-1 -1} r -t 1.63184 -s 1 -d 0 -p ack -e 40 -c 0 -i 48 -a 0 -S 0 -y {17 17} f -t 1.63184000000000062 -s 0 -d 3 -n cwnd_ -a tcp -v 19.000000 -o 18.000000 -T v + -t 1.63184 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 61 -a 0 -S 0 -f 0 -m 0 -y {35 35} - -t 1.63184 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 61 -a 0 -S 0 -y {35 35} h -t 1.63184 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 61 -a 0 -S 0 -y {-1 -1} + -t 1.63184 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 62 -a 0 -S 0 -f 0 -m 0 -y {36 36} - -t 1.63344 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 62 -a 0 -S 0 -y {36 36} h -t 1.63344 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 62 -a 0 -S 0 -y {-1 -1} r -t 1.63507 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 45 -a 0 -S 0 -y {30 30} + -t 1.63507 -s 3 -d 2 -p ack -e 40 -c 0 -i 63 -a 0 -S 0 -y {22 22} - -t 1.63507 -s 3 -d 2 -p ack -e 40 -c 0 -i 63 -a 0 -S 0 -y {22 22} h -t 1.63507 -s 3 -d 2 -p ack -e 40 -c 0 -i 63 -a 0 -S 0 -y {-1 -1} r -t 1.63744 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 58 -a 0 -S 0 -y {33 33} + -t 1.63744 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 58 -a 0 -S 0 -y {33 33} - -t 1.63744 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 56 -a 0 -S 0 -y {32 32} h -t 1.63744 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 56 -a 0 -S 0 -y {-1 -1} r -t 1.63904 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 59 -a 0 -S 0 -y {34 34} + -t 1.63904 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 59 -a 0 -S 0 -y {34 34} r -t 1.63914 -s 3 -d 2 -p ack -e 40 -c 0 -i 60 -a 0 -S 0 -y {22 22} + -t 1.63914 -s 2 -d 1 -p ack -e 40 -c 0 -i 60 -a 0 -S 0 -y {22 22} - -t 1.63914 -s 2 -d 1 -p ack -e 40 -c 0 -i 60 -a 0 -S 0 -y {22 22} h -t 1.63914 -s 2 -d 1 -p ack -e 40 -c 0 -i 60 -a 0 -S 0 -y {-1 -1} r -t 1.64378 -s 2 -d 1 -p ack -e 40 -c 0 -i 50 -a 0 -S 0 -y {19 19} + -t 1.64378 -s 1 -d 0 -p ack -e 40 -c 0 -i 50 -a 0 -S 0 -y {19 19} - -t 1.64378 -s 1 -d 0 -p ack -e 40 -c 0 -i 50 -a 0 -S 0 -f 0 -m 1 -y {19 19} h -t 1.64378 -s 1 -d 0 -p ack -e 40 -c 0 -i 50 -a 0 -S 0 -y {-1 -1} r -t 1.64784 -s 1 -d 0 -p ack -e 40 -c 0 -i 49 -a 0 -S 0 -y {18 18} f -t 1.64784000000000064 -s 0 -d 3 -n cwnd_ -a tcp -v 20.000000 -o 19.000000 -T v + -t 1.64784 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 64 -a 0 -S 0 -f 0 -m 0 -y {37 37} - -t 1.64784 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 64 -a 0 -S 0 -y {37 37} h -t 1.64784 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 64 -a 0 -S 0 -y {-1 -1} + -t 1.64784 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -f 0 -m 0 -y {38 38} - -t 1.64944 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {38 38} h -t 1.64944 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {-1 -1} r -t 1.65344 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 61 -a 0 -S 0 -y {35 35} + -t 1.65344 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 61 -a 0 -S 0 -y {35 35} - -t 1.65344 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 58 -a 0 -S 0 -y {33 33} h -t 1.65344 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 58 -a 0 -S 0 -y {-1 -1} r -t 1.65504 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 62 -a 0 -S 0 -y {36 36} + -t 1.65504 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 62 -a 0 -S 0 -y {36 36} r -t 1.65514 -s 3 -d 2 -p ack -e 40 -c 0 -i 63 -a 0 -S 0 -y {22 22} + -t 1.65514 -s 2 -d 1 -p ack -e 40 -c 0 -i 63 -a 0 -S 0 -y {22 22} - -t 1.65514 -s 2 -d 1 -p ack -e 40 -c 0 -i 63 -a 0 -S 0 -y {22 22} h -t 1.65514 -s 2 -d 1 -p ack -e 40 -c 0 -i 63 -a 0 -S 0 -y {-1 -1} r -t 1.65978 -s 2 -d 1 -p ack -e 40 -c 0 -i 51 -a 0 -S 0 -y {20 20} + -t 1.65978 -s 1 -d 0 -p ack -e 40 -c 0 -i 51 -a 0 -S 0 -y {20 20} - -t 1.65978 -s 1 -d 0 -p ack -e 40 -c 0 -i 51 -a 0 -S 0 -f 0 -m 1 -y {20 20} h -t 1.65978 -s 1 -d 0 -p ack -e 40 -c 0 -i 51 -a 0 -S 0 -y {-1 -1} r -t 1.66384 -s 1 -d 0 -p ack -e 40 -c 0 -i 50 -a 0 -S 0 -y {19 19} f -t 1.66384000000000065 -s 0 -d 3 -n cwnd_ -a tcp -v 20.050000 -o 20.000000 -T v + -t 1.66384 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 66 -a 0 -S 0 -f 0 -m 0 -y {39 39} - -t 1.66384 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 66 -a 0 -S 0 -y {39 39} h -t 1.66384 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 66 -a 0 -S 0 -y {-1 -1} r -t 1.66944 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 64 -a 0 -S 0 -y {37 37} + -t 1.66944 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 64 -a 0 -S 0 -y {37 37} - -t 1.66944 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 59 -a 0 -S 0 -y {34 34} h -t 1.66944 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 59 -a 0 -S 0 -y {-1 -1} r -t 1.67104 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {38 38} + -t 1.67104 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {38 38} r -t 1.67578 -s 2 -d 1 -p ack -e 40 -c 0 -i 52 -a 0 -S 0 -y {21 21} + -t 1.67578 -s 1 -d 0 -p ack -e 40 -c 0 -i 52 -a 0 -S 0 -y {21 21} - -t 1.67578 -s 1 -d 0 -p ack -e 40 -c 0 -i 52 -a 0 -S 0 -f 0 -m 1 -y {21 21} h -t 1.67578 -s 1 -d 0 -p ack -e 40 -c 0 -i 52 -a 0 -S 0 -y {-1 -1} r -t 1.67984 -s 1 -d 0 -p ack -e 40 -c 0 -i 51 -a 0 -S 0 -y {20 20} f -t 1.67984000000000067 -s 0 -d 3 -n cwnd_ -a tcp -v 20.099875 -o 20.050000 -T v + -t 1.67984 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 67 -a 0 -S 0 -f 0 -m 0 -y {40 40} - -t 1.67984 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 67 -a 0 -S 0 -y {40 40} h -t 1.67984 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 67 -a 0 -S 0 -y {-1 -1} r -t 1.68544 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 66 -a 0 -S 0 -y {39 39} + -t 1.68544 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 66 -a 0 -S 0 -y {39 39} d -t 1.68544 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 66 -a 0 -S 0 -y {39 39} - -t 1.68544 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 61 -a 0 -S 0 -y {35 35} h -t 1.68544 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 61 -a 0 -S 0 -y {-1 -1} r -t 1.69178 -s 2 -d 1 -p ack -e 40 -c 0 -i 53 -a 0 -S 0 -y {22 22} + -t 1.69178 -s 1 -d 0 -p ack -e 40 -c 0 -i 53 -a 0 -S 0 -y {22 22} - -t 1.69178 -s 1 -d 0 -p ack -e 40 -c 0 -i 53 -a 0 -S 0 -f 0 -m 1 -y {22 22} h -t 1.69178 -s 1 -d 0 -p ack -e 40 -c 0 -i 53 -a 0 -S 0 -y {-1 -1} r -t 1.69584 -s 1 -d 0 -p ack -e 40 -c 0 -i 52 -a 0 -S 0 -y {21 21} f -t 1.69584000000000068 -s 0 -d 3 -n cwnd_ -a tcp -v 20.149627 -o 20.099875 -T v + -t 1.69584 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 68 -a 0 -S 0 -f 0 -m 0 -y {41 41} - -t 1.69584 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 68 -a 0 -S 0 -y {41 41} h -t 1.69584 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 68 -a 0 -S 0 -y {-1 -1} r -t 1.70144 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 67 -a 0 -S 0 -y {40 40} + -t 1.70144 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 67 -a 0 -S 0 -y {40 40} - -t 1.70144 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 62 -a 0 -S 0 -y {36 36} h -t 1.70144 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 62 -a 0 -S 0 -y {-1 -1} r -t 1.70778 -s 2 -d 1 -p ack -e 40 -c 0 -i 54 -a 0 -S 0 -y {22 22} + -t 1.70778 -s 1 -d 0 -p ack -e 40 -c 0 -i 54 -a 0 -S 0 -y {22 22} - -t 1.70778 -s 1 -d 0 -p ack -e 40 -c 0 -i 54 -a 0 -S 0 -f 0 -m 1 -y {22 22} h -t 1.70778 -s 1 -d 0 -p ack -e 40 -c 0 -i 54 -a 0 -S 0 -y {-1 -1} r -t 1.71184 -s 1 -d 0 -p ack -e 40 -c 0 -i 53 -a 0 -S 0 -y {22 22} f -t 1.71184000000000069 -s 0 -d 3 -n cwnd_ -a tcp -v 20.199256 -o 20.149627 -T v + -t 1.71184 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 69 -a 0 -S 0 -f 0 -m 0 -y {42 42} - -t 1.71184 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 69 -a 0 -S 0 -y {42 42} h -t 1.71184 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 69 -a 0 -S 0 -y {-1 -1} r -t 1.71744 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 68 -a 0 -S 0 -y {41 41} + -t 1.71744 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 68 -a 0 -S 0 -y {41 41} - -t 1.71744 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 64 -a 0 -S 0 -y {37 37} h -t 1.71744 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 64 -a 0 -S 0 -y {-1 -1} r -t 1.72378 -s 2 -d 1 -p ack -e 40 -c 0 -i 57 -a 0 -S 0 -y {22 22} + -t 1.72378 -s 1 -d 0 -p ack -e 40 -c 0 -i 57 -a 0 -S 0 -y {22 22} - -t 1.72378 -s 1 -d 0 -p ack -e 40 -c 0 -i 57 -a 0 -S 0 -f 0 -m 1 -y {22 22} h -t 1.72378 -s 1 -d 0 -p ack -e 40 -c 0 -i 57 -a 0 -S 0 -y {-1 -1} r -t 1.72784 -s 1 -d 0 -p ack -e 40 -c 0 -i 54 -a 0 -S 0 -y {22 22} r -t 1.73344 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 69 -a 0 -S 0 -y {42 42} + -t 1.73344 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 69 -a 0 -S 0 -y {42 42} - -t 1.73344 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {38 38} h -t 1.73344 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {-1 -1} r -t 1.73744 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 55 -a 0 -S 0 -y {31 31} + -t 1.73744 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 55 -a 0 -S 0 -y {31 31} - -t 1.73744 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 55 -a 0 -S 0 -y {31 31} h -t 1.73744 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 55 -a 0 -S 0 -y {-1 -1} r -t 1.73978 -s 2 -d 1 -p ack -e 40 -c 0 -i 60 -a 0 -S 0 -y {22 22} + -t 1.73978 -s 1 -d 0 -p ack -e 40 -c 0 -i 60 -a 0 -S 0 -y {22 22} - -t 1.73978 -s 1 -d 0 -p ack -e 40 -c 0 -i 60 -a 0 -S 0 -f 0 -m 1 -y {22 22} h -t 1.73978 -s 1 -d 0 -p ack -e 40 -c 0 -i 60 -a 0 -S 0 -y {-1 -1} r -t 1.74384 -s 1 -d 0 -p ack -e 40 -c 0 -i 57 -a 0 -S 0 -y {22 22} - -t 1.74944 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 67 -a 0 -S 0 -y {40 40} h -t 1.74944 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 67 -a 0 -S 0 -y {-1 -1} r -t 1.75344 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 56 -a 0 -S 0 -y {32 32} + -t 1.75344 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 56 -a 0 -S 0 -y {32 32} - -t 1.75344 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 56 -a 0 -S 0 -y {32 32} h -t 1.75344 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 56 -a 0 -S 0 -y {-1 -1} r -t 1.75578 -s 2 -d 1 -p ack -e 40 -c 0 -i 63 -a 0 -S 0 -y {22 22} + -t 1.75578 -s 1 -d 0 -p ack -e 40 -c 0 -i 63 -a 0 -S 0 -y {22 22} - -t 1.75578 -s 1 -d 0 -p ack -e 40 -c 0 -i 63 -a 0 -S 0 -f 0 -m 1 -y {22 22} h -t 1.75578 -s 1 -d 0 -p ack -e 40 -c 0 -i 63 -a 0 -S 0 -y {-1 -1} r -t 1.75904 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 55 -a 0 -S 0 -y {31 31} + -t 1.75904 -s 3 -d 2 -p ack -e 40 -c 0 -i 70 -a 0 -S 0 -y {22 22} - -t 1.75904 -s 3 -d 2 -p ack -e 40 -c 0 -i 70 -a 0 -S 0 -y {22 22} h -t 1.75904 -s 3 -d 2 -p ack -e 40 -c 0 -i 70 -a 0 -S 0 -y {-1 -1} r -t 1.75984 -s 1 -d 0 -p ack -e 40 -c 0 -i 60 -a 0 -S 0 -y {22 22} f -t 1.75984000000000074 -s 0 -d 3 -n ssthresh_ -a tcp -v 10 -o 20 -T v f -t 1.75984000000000074 -s 0 -d 3 -n cwnd_ -a tcp -v 1.000000 -o 20.199256 -T v + -t 1.75984 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 71 -a 0 -S 0 -f 1 -m 2 -y {23 23} - -t 1.75984 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 71 -a 0 -S 0 -f 1 -y {23 23} h -t 1.75984 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 71 -a 0 -S 0 -f 1 -y {-1 -1} - -t 1.76544 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 68 -a 0 -S 0 -y {41 41} h -t 1.76544 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 68 -a 0 -S 0 -y {-1 -1} r -t 1.76944 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 58 -a 0 -S 0 -y {33 33} + -t 1.76944 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 58 -a 0 -S 0 -y {33 33} - -t 1.76944 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 58 -a 0 -S 0 -y {33 33} h -t 1.76944 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 58 -a 0 -S 0 -y {-1 -1} r -t 1.77504 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 56 -a 0 -S 0 -y {32 32} + -t 1.77504 -s 3 -d 2 -p ack -e 40 -c 0 -i 72 -a 0 -S 0 -y {22 22} - -t 1.77504 -s 3 -d 2 -p ack -e 40 -c 0 -i 72 -a 0 -S 0 -y {22 22} h -t 1.77504 -s 3 -d 2 -p ack -e 40 -c 0 -i 72 -a 0 -S 0 -y {-1 -1} r -t 1.77584 -s 1 -d 0 -p ack -e 40 -c 0 -i 63 -a 0 -S 0 -y {22 22} r -t 1.7791 -s 3 -d 2 -p ack -e 40 -c 0 -i 70 -a 0 -S 0 -y {22 22} + -t 1.7791 -s 2 -d 1 -p ack -e 40 -c 0 -i 70 -a 0 -S 0 -y {22 22} - -t 1.7791 -s 2 -d 1 -p ack -e 40 -c 0 -i 70 -a 0 -S 0 -y {22 22} h -t 1.7791 -s 2 -d 1 -p ack -e 40 -c 0 -i 70 -a 0 -S 0 -y {-1 -1} r -t 1.78144 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 71 -a 0 -S 0 -f 1 -y {23 23} + -t 1.78144 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 71 -a 0 -S 0 -f 1 -y {23 23} - -t 1.78144 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 69 -a 0 -S 0 -y {42 42} h -t 1.78144 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 69 -a 0 -S 0 -y {-1 -1} r -t 1.78544 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 59 -a 0 -S 0 -y {34 34} + -t 1.78544 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 59 -a 0 -S 0 -y {34 34} - -t 1.78544 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 59 -a 0 -S 0 -y {34 34} h -t 1.78544 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 59 -a 0 -S 0 -y {-1 -1} r -t 1.79104 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 58 -a 0 -S 0 -y {33 33} + -t 1.79104 -s 3 -d 2 -p ack -e 40 -c 0 -i 73 -a 0 -S 0 -y {22 22} - -t 1.79104 -s 3 -d 2 -p ack -e 40 -c 0 -i 73 -a 0 -S 0 -y {22 22} h -t 1.79104 -s 3 -d 2 -p ack -e 40 -c 0 -i 73 -a 0 -S 0 -y {-1 -1} r -t 1.7951 -s 3 -d 2 -p ack -e 40 -c 0 -i 72 -a 0 -S 0 -y {22 22} + -t 1.7951 -s 2 -d 1 -p ack -e 40 -c 0 -i 72 -a 0 -S 0 -y {22 22} - -t 1.7951 -s 2 -d 1 -p ack -e 40 -c 0 -i 72 -a 0 -S 0 -y {22 22} h -t 1.7951 -s 2 -d 1 -p ack -e 40 -c 0 -i 72 -a 0 -S 0 -y {-1 -1} - -t 1.79744 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 71 -a 0 -S 0 -f 1 -y {23 23} h -t 1.79744 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 71 -a 0 -S 0 -f 1 -y {-1 -1} r -t 1.80144 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 61 -a 0 -S 0 -y {35 35} + -t 1.80144 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 61 -a 0 -S 0 -y {35 35} - -t 1.80144 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 61 -a 0 -S 0 -y {35 35} h -t 1.80144 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 61 -a 0 -S 0 -y {-1 -1} r -t 1.80704 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 59 -a 0 -S 0 -y {34 34} + -t 1.80704 -s 3 -d 2 -p ack -e 40 -c 0 -i 74 -a 0 -S 0 -y {22 22} - -t 1.80704 -s 3 -d 2 -p ack -e 40 -c 0 -i 74 -a 0 -S 0 -y {22 22} h -t 1.80704 -s 3 -d 2 -p ack -e 40 -c 0 -i 74 -a 0 -S 0 -y {-1 -1} r -t 1.8111 -s 3 -d 2 -p ack -e 40 -c 0 -i 73 -a 0 -S 0 -y {22 22} + -t 1.8111 -s 2 -d 1 -p ack -e 40 -c 0 -i 73 -a 0 -S 0 -y {22 22} - -t 1.8111 -s 2 -d 1 -p ack -e 40 -c 0 -i 73 -a 0 -S 0 -y {22 22} h -t 1.8111 -s 2 -d 1 -p ack -e 40 -c 0 -i 73 -a 0 -S 0 -y {-1 -1} r -t 1.81744 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 62 -a 0 -S 0 -y {36 36} + -t 1.81744 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 62 -a 0 -S 0 -y {36 36} - -t 1.81744 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 62 -a 0 -S 0 -y {36 36} h -t 1.81744 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 62 -a 0 -S 0 -y {-1 -1} r -t 1.82304 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 61 -a 0 -S 0 -y {35 35} + -t 1.82304 -s 3 -d 2 -p ack -e 40 -c 0 -i 75 -a 0 -S 0 -y {22 22} - -t 1.82304 -s 3 -d 2 -p ack -e 40 -c 0 -i 75 -a 0 -S 0 -y {22 22} h -t 1.82304 -s 3 -d 2 -p ack -e 40 -c 0 -i 75 -a 0 -S 0 -y {-1 -1} r -t 1.8271 -s 3 -d 2 -p ack -e 40 -c 0 -i 74 -a 0 -S 0 -y {22 22} + -t 1.8271 -s 2 -d 1 -p ack -e 40 -c 0 -i 74 -a 0 -S 0 -y {22 22} - -t 1.8271 -s 2 -d 1 -p ack -e 40 -c 0 -i 74 -a 0 -S 0 -y {22 22} h -t 1.8271 -s 2 -d 1 -p ack -e 40 -c 0 -i 74 -a 0 -S 0 -y {-1 -1} r -t 1.83344 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 64 -a 0 -S 0 -y {37 37} + -t 1.83344 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 64 -a 0 -S 0 -y {37 37} - -t 1.83344 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 64 -a 0 -S 0 -y {37 37} h -t 1.83344 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 64 -a 0 -S 0 -y {-1 -1} r -t 1.83904 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 62 -a 0 -S 0 -y {36 36} + -t 1.83904 -s 3 -d 2 -p ack -e 40 -c 0 -i 76 -a 0 -S 0 -y {22 22} - -t 1.83904 -s 3 -d 2 -p ack -e 40 -c 0 -i 76 -a 0 -S 0 -y {22 22} h -t 1.83904 -s 3 -d 2 -p ack -e 40 -c 0 -i 76 -a 0 -S 0 -y {-1 -1} r -t 1.8431 -s 3 -d 2 -p ack -e 40 -c 0 -i 75 -a 0 -S 0 -y {22 22} + -t 1.8431 -s 2 -d 1 -p ack -e 40 -c 0 -i 75 -a 0 -S 0 -y {22 22} - -t 1.8431 -s 2 -d 1 -p ack -e 40 -c 0 -i 75 -a 0 -S 0 -y {22 22} h -t 1.8431 -s 2 -d 1 -p ack -e 40 -c 0 -i 75 -a 0 -S 0 -y {-1 -1} r -t 1.84944 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {38 38} + -t 1.84944 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {38 38} - -t 1.84944 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {38 38} h -t 1.84944 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {-1 -1} r -t 1.85504 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 64 -a 0 -S 0 -y {37 37} + -t 1.85504 -s 3 -d 2 -p ack -e 40 -c 0 -i 77 -a 0 -S 0 -y {22 22} - -t 1.85504 -s 3 -d 2 -p ack -e 40 -c 0 -i 77 -a 0 -S 0 -y {22 22} h -t 1.85504 -s 3 -d 2 -p ack -e 40 -c 0 -i 77 -a 0 -S 0 -y {-1 -1} r -t 1.8591 -s 3 -d 2 -p ack -e 40 -c 0 -i 76 -a 0 -S 0 -y {22 22} + -t 1.8591 -s 2 -d 1 -p ack -e 40 -c 0 -i 76 -a 0 -S 0 -y {22 22} - -t 1.8591 -s 2 -d 1 -p ack -e 40 -c 0 -i 76 -a 0 -S 0 -y {22 22} h -t 1.8591 -s 2 -d 1 -p ack -e 40 -c 0 -i 76 -a 0 -S 0 -y {-1 -1} r -t 1.86544 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 67 -a 0 -S 0 -y {40 40} + -t 1.86544 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 67 -a 0 -S 0 -y {40 40} - -t 1.86544 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 67 -a 0 -S 0 -y {40 40} h -t 1.86544 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 67 -a 0 -S 0 -y {-1 -1} r -t 1.87104 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {38 38} + -t 1.87104 -s 3 -d 2 -p ack -e 40 -c 0 -i 78 -a 0 -S 0 -y {22 22} - -t 1.87104 -s 3 -d 2 -p ack -e 40 -c 0 -i 78 -a 0 -S 0 -y {22 22} h -t 1.87104 -s 3 -d 2 -p ack -e 40 -c 0 -i 78 -a 0 -S 0 -y {-1 -1} r -t 1.8751 -s 3 -d 2 -p ack -e 40 -c 0 -i 77 -a 0 -S 0 -y {22 22} + -t 1.8751 -s 2 -d 1 -p ack -e 40 -c 0 -i 77 -a 0 -S 0 -y {22 22} - -t 1.8751 -s 2 -d 1 -p ack -e 40 -c 0 -i 77 -a 0 -S 0 -y {22 22} h -t 1.8751 -s 2 -d 1 -p ack -e 40 -c 0 -i 77 -a 0 -S 0 -y {-1 -1} r -t 1.87974 -s 2 -d 1 -p ack -e 40 -c 0 -i 70 -a 0 -S 0 -y {22 22} + -t 1.87974 -s 1 -d 0 -p ack -e 40 -c 0 -i 70 -a 0 -S 0 -y {22 22} - -t 1.87974 -s 1 -d 0 -p ack -e 40 -c 0 -i 70 -a 0 -S 0 -f 0 -m 1 -y {22 22} h -t 1.87974 -s 1 -d 0 -p ack -e 40 -c 0 -i 70 -a 0 -S 0 -y {-1 -1} r -t 1.88144 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 68 -a 0 -S 0 -y {41 41} + -t 1.88144 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 68 -a 0 -S 0 -y {41 41} - -t 1.88144 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 68 -a 0 -S 0 -y {41 41} h -t 1.88144 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 68 -a 0 -S 0 -y {-1 -1} r -t 1.88704 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 67 -a 0 -S 0 -y {40 40} + -t 1.88704 -s 3 -d 2 -p ack -e 40 -c 0 -i 79 -a 0 -S 0 -y {22 22} - -t 1.88704 -s 3 -d 2 -p ack -e 40 -c 0 -i 79 -a 0 -S 0 -y {22 22} h -t 1.88704 -s 3 -d 2 -p ack -e 40 -c 0 -i 79 -a 0 -S 0 -y {-1 -1} r -t 1.8911 -s 3 -d 2 -p ack -e 40 -c 0 -i 78 -a 0 -S 0 -y {22 22} + -t 1.8911 -s 2 -d 1 -p ack -e 40 -c 0 -i 78 -a 0 -S 0 -y {22 22} - -t 1.8911 -s 2 -d 1 -p ack -e 40 -c 0 -i 78 -a 0 -S 0 -y {22 22} h -t 1.8911 -s 2 -d 1 -p ack -e 40 -c 0 -i 78 -a 0 -S 0 -y {-1 -1} r -t 1.89574 -s 2 -d 1 -p ack -e 40 -c 0 -i 72 -a 0 -S 0 -y {22 22} + -t 1.89574 -s 1 -d 0 -p ack -e 40 -c 0 -i 72 -a 0 -S 0 -y {22 22} - -t 1.89574 -s 1 -d 0 -p ack -e 40 -c 0 -i 72 -a 0 -S 0 -f 0 -m 1 -y {22 22} h -t 1.89574 -s 1 -d 0 -p ack -e 40 -c 0 -i 72 -a 0 -S 0 -y {-1 -1} r -t 1.89744 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 69 -a 0 -S 0 -y {42 42} + -t 1.89744 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 69 -a 0 -S 0 -y {42 42} - -t 1.89744 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 69 -a 0 -S 0 -y {42 42} h -t 1.89744 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 69 -a 0 -S 0 -y {-1 -1} r -t 1.89981 -s 1 -d 0 -p ack -e 40 -c 0 -i 70 -a 0 -S 0 -y {22 22} r -t 1.90304 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 68 -a 0 -S 0 -y {41 41} + -t 1.90304 -s 3 -d 2 -p ack -e 40 -c 0 -i 80 -a 0 -S 0 -y {22 22} - -t 1.90304 -s 3 -d 2 -p ack -e 40 -c 0 -i 80 -a 0 -S 0 -y {22 22} h -t 1.90304 -s 3 -d 2 -p ack -e 40 -c 0 -i 80 -a 0 -S 0 -y {-1 -1} r -t 1.9071 -s 3 -d 2 -p ack -e 40 -c 0 -i 79 -a 0 -S 0 -y {22 22} + -t 1.9071 -s 2 -d 1 -p ack -e 40 -c 0 -i 79 -a 0 -S 0 -y {22 22} - -t 1.9071 -s 2 -d 1 -p ack -e 40 -c 0 -i 79 -a 0 -S 0 -y {22 22} h -t 1.9071 -s 2 -d 1 -p ack -e 40 -c 0 -i 79 -a 0 -S 0 -y {-1 -1} r -t 1.91174 -s 2 -d 1 -p ack -e 40 -c 0 -i 73 -a 0 -S 0 -y {22 22} + -t 1.91174 -s 1 -d 0 -p ack -e 40 -c 0 -i 73 -a 0 -S 0 -y {22 22} - -t 1.91174 -s 1 -d 0 -p ack -e 40 -c 0 -i 73 -a 0 -S 0 -f 0 -m 1 -y {22 22} h -t 1.91174 -s 1 -d 0 -p ack -e 40 -c 0 -i 73 -a 0 -S 0 -y {-1 -1} r -t 1.91344 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 71 -a 0 -S 0 -f 1 -y {23 23} + -t 1.91344 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 71 -a 0 -S 0 -f 1 -y {23 23} - -t 1.91344 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 71 -a 0 -S 0 -f 1 -y {23 23} h -t 1.91344 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 71 -a 0 -S 0 -f 1 -y {-1 -1} r -t 1.91581 -s 1 -d 0 -p ack -e 40 -c 0 -i 72 -a 0 -S 0 -y {22 22} r -t 1.91904 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 69 -a 0 -S 0 -y {42 42} + -t 1.91904 -s 3 -d 2 -p ack -e 40 -c 0 -i 81 -a 0 -S 0 -y {22 22} - -t 1.91904 -s 3 -d 2 -p ack -e 40 -c 0 -i 81 -a 0 -S 0 -y {22 22} h -t 1.91904 -s 3 -d 2 -p ack -e 40 -c 0 -i 81 -a 0 -S 0 -y {-1 -1} r -t 1.9231 -s 3 -d 2 -p ack -e 40 -c 0 -i 80 -a 0 -S 0 -y {22 22} + -t 1.9231 -s 2 -d 1 -p ack -e 40 -c 0 -i 80 -a 0 -S 0 -y {22 22} - -t 1.9231 -s 2 -d 1 -p ack -e 40 -c 0 -i 80 -a 0 -S 0 -y {22 22} h -t 1.9231 -s 2 -d 1 -p ack -e 40 -c 0 -i 80 -a 0 -S 0 -y {-1 -1} r -t 1.92774 -s 2 -d 1 -p ack -e 40 -c 0 -i 74 -a 0 -S 0 -y {22 22} + -t 1.92774 -s 1 -d 0 -p ack -e 40 -c 0 -i 74 -a 0 -S 0 -y {22 22} - -t 1.92774 -s 1 -d 0 -p ack -e 40 -c 0 -i 74 -a 0 -S 0 -f 0 -m 1 -y {22 22} h -t 1.92774 -s 1 -d 0 -p ack -e 40 -c 0 -i 74 -a 0 -S 0 -y {-1 -1} r -t 1.93181 -s 1 -d 0 -p ack -e 40 -c 0 -i 73 -a 0 -S 0 -y {22 22} r -t 1.93504 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 71 -a 0 -S 0 -f 1 -y {23 23} + -t 1.93504 -s 3 -d 2 -p ack -e 40 -c 0 -i 82 -a 0 -S 0 -y {24 24} - -t 1.93504 -s 3 -d 2 -p ack -e 40 -c 0 -i 82 -a 0 -S 0 -y {24 24} h -t 1.93504 -s 3 -d 2 -p ack -e 40 -c 0 -i 82 -a 0 -S 0 -y {-1 -1} r -t 1.9391 -s 3 -d 2 -p ack -e 40 -c 0 -i 81 -a 0 -S 0 -y {22 22} + -t 1.9391 -s 2 -d 1 -p ack -e 40 -c 0 -i 81 -a 0 -S 0 -y {22 22} - -t 1.9391 -s 2 -d 1 -p ack -e 40 -c 0 -i 81 -a 0 -S 0 -y {22 22} h -t 1.9391 -s 2 -d 1 -p ack -e 40 -c 0 -i 81 -a 0 -S 0 -y {-1 -1} r -t 1.94374 -s 2 -d 1 -p ack -e 40 -c 0 -i 75 -a 0 -S 0 -y {22 22} + -t 1.94374 -s 1 -d 0 -p ack -e 40 -c 0 -i 75 -a 0 -S 0 -y {22 22} - -t 1.94374 -s 1 -d 0 -p ack -e 40 -c 0 -i 75 -a 0 -S 0 -f 0 -m 1 -y {22 22} h -t 1.94374 -s 1 -d 0 -p ack -e 40 -c 0 -i 75 -a 0 -S 0 -y {-1 -1} r -t 1.94781 -s 1 -d 0 -p ack -e 40 -c 0 -i 74 -a 0 -S 0 -y {22 22} r -t 1.9551 -s 3 -d 2 -p ack -e 40 -c 0 -i 82 -a 0 -S 0 -y {24 24} + -t 1.9551 -s 2 -d 1 -p ack -e 40 -c 0 -i 82 -a 0 -S 0 -y {24 24} - -t 1.9551 -s 2 -d 1 -p ack -e 40 -c 0 -i 82 -a 0 -S 0 -y {24 24} h -t 1.9551 -s 2 -d 1 -p ack -e 40 -c 0 -i 82 -a 0 -S 0 -y {-1 -1} r -t 1.95974 -s 2 -d 1 -p ack -e 40 -c 0 -i 76 -a 0 -S 0 -y {22 22} + -t 1.95974 -s 1 -d 0 -p ack -e 40 -c 0 -i 76 -a 0 -S 0 -y {22 22} - -t 1.95974 -s 1 -d 0 -p ack -e 40 -c 0 -i 76 -a 0 -S 0 -f 0 -m 1 -y {22 22} h -t 1.95974 -s 1 -d 0 -p ack -e 40 -c 0 -i 76 -a 0 -S 0 -y {-1 -1} r -t 1.96381 -s 1 -d 0 -p ack -e 40 -c 0 -i 75 -a 0 -S 0 -y {22 22} r -t 1.97574 -s 2 -d 1 -p ack -e 40 -c 0 -i 77 -a 0 -S 0 -y {22 22} + -t 1.97574 -s 1 -d 0 -p ack -e 40 -c 0 -i 77 -a 0 -S 0 -y {22 22} - -t 1.97574 -s 1 -d 0 -p ack -e 40 -c 0 -i 77 -a 0 -S 0 -f 0 -m 1 -y {22 22} h -t 1.97574 -s 1 -d 0 -p ack -e 40 -c 0 -i 77 -a 0 -S 0 -y {-1 -1} r -t 1.97981 -s 1 -d 0 -p ack -e 40 -c 0 -i 76 -a 0 -S 0 -y {22 22} r -t 1.99174 -s 2 -d 1 -p ack -e 40 -c 0 -i 78 -a 0 -S 0 -y {22 22} + -t 1.99174 -s 1 -d 0 -p ack -e 40 -c 0 -i 78 -a 0 -S 0 -y {22 22} - -t 1.99174 -s 1 -d 0 -p ack -e 40 -c 0 -i 78 -a 0 -S 0 -f 0 -m 1 -y {22 22} h -t 1.99174 -s 1 -d 0 -p ack -e 40 -c 0 -i 78 -a 0 -S 0 -y {-1 -1} r -t 1.99581 -s 1 -d 0 -p ack -e 40 -c 0 -i 77 -a 0 -S 0 -y {22 22} r -t 2.00774 -s 2 -d 1 -p ack -e 40 -c 0 -i 79 -a 0 -S 0 -y {22 22} + -t 2.00774 -s 1 -d 0 -p ack -e 40 -c 0 -i 79 -a 0 -S 0 -y {22 22} - -t 2.00774 -s 1 -d 0 -p ack -e 40 -c 0 -i 79 -a 0 -S 0 -f 0 -m 1 -y {22 22} h -t 2.00774 -s 1 -d 0 -p ack -e 40 -c 0 -i 79 -a 0 -S 0 -y {-1 -1} r -t 2.01181 -s 1 -d 0 -p ack -e 40 -c 0 -i 78 -a 0 -S 0 -y {22 22} r -t 2.02374 -s 2 -d 1 -p ack -e 40 -c 0 -i 80 -a 0 -S 0 -y {22 22} + -t 2.02374 -s 1 -d 0 -p ack -e 40 -c 0 -i 80 -a 0 -S 0 -y {22 22} - -t 2.02374 -s 1 -d 0 -p ack -e 40 -c 0 -i 80 -a 0 -S 0 -f 0 -m 1 -y {22 22} h -t 2.02374 -s 1 -d 0 -p ack -e 40 -c 0 -i 80 -a 0 -S 0 -y {-1 -1} r -t 2.02781 -s 1 -d 0 -p ack -e 40 -c 0 -i 79 -a 0 -S 0 -y {22 22} r -t 2.03974 -s 2 -d 1 -p ack -e 40 -c 0 -i 81 -a 0 -S 0 -y {22 22} + -t 2.03974 -s 1 -d 0 -p ack -e 40 -c 0 -i 81 -a 0 -S 0 -y {22 22} - -t 2.03974 -s 1 -d 0 -p ack -e 40 -c 0 -i 81 -a 0 -S 0 -f 0 -m 1 -y {22 22} h -t 2.03974 -s 1 -d 0 -p ack -e 40 -c 0 -i 81 -a 0 -S 0 -y {-1 -1} r -t 2.04381 -s 1 -d 0 -p ack -e 40 -c 0 -i 80 -a 0 -S 0 -y {22 22} r -t 2.05574 -s 2 -d 1 -p ack -e 40 -c 0 -i 82 -a 0 -S 0 -y {24 24} + -t 2.05574 -s 1 -d 0 -p ack -e 40 -c 0 -i 82 -a 0 -S 0 -y {24 24} - -t 2.05574 -s 1 -d 0 -p ack -e 40 -c 0 -i 82 -a 0 -S 0 -f 0 -m 1 -y {24 24} h -t 2.05574 -s 1 -d 0 -p ack -e 40 -c 0 -i 82 -a 0 -S 0 -y {-1 -1} r -t 2.05981 -s 1 -d 0 -p ack -e 40 -c 0 -i 81 -a 0 -S 0 -y {22 22} r -t 2.07581 -s 1 -d 0 -p ack -e 40 -c 0 -i 82 -a 0 -S 0 -y {24 24} f -t 2.07580800000000121 -s 0 -d 3 -n cwnd_ -a tcp -v 2.000000 -o 1.000000 -T v + -t 2.07581 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 83 -a 0 -S 0 -f 0 -m 0 -y {25 25} - -t 2.07581 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 83 -a 0 -S 0 -y {25 25} h -t 2.07581 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 83 -a 0 -S 0 -y {-1 -1} + -t 2.07581 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 84 -a 0 -S 0 -f 0 -m 0 -y {26 26} - -t 2.07741 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 84 -a 0 -S 0 -y {26 26} h -t 2.07741 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 84 -a 0 -S 0 -y {-1 -1} r -t 2.09741 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 83 -a 0 -S 0 -y {25 25} + -t 2.09741 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 83 -a 0 -S 0 -y {25 25} - -t 2.09741 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 83 -a 0 -S 0 -y {25 25} h -t 2.09741 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 83 -a 0 -S 0 -y {-1 -1} r -t 2.09901 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 84 -a 0 -S 0 -y {26 26} + -t 2.09901 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 84 -a 0 -S 0 -y {26 26} - -t 2.11341 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 84 -a 0 -S 0 -y {26 26} h -t 2.11341 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 84 -a 0 -S 0 -y {-1 -1} r -t 2.21341 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 83 -a 0 -S 0 -y {25 25} + -t 2.21341 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 83 -a 0 -S 0 -y {25 25} - -t 2.21341 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 83 -a 0 -S 0 -y {25 25} h -t 2.21341 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 83 -a 0 -S 0 -y {-1 -1} r -t 2.22941 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 84 -a 0 -S 0 -y {26 26} + -t 2.22941 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 84 -a 0 -S 0 -y {26 26} - -t 2.22941 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 84 -a 0 -S 0 -y {26 26} h -t 2.22941 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 84 -a 0 -S 0 -y {-1 -1} r -t 2.23501 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 83 -a 0 -S 0 -y {25 25} + -t 2.23501 -s 3 -d 2 -p ack -e 40 -c 0 -i 85 -a 0 -S 0 -y {26 26} - -t 2.23501 -s 3 -d 2 -p ack -e 40 -c 0 -i 85 -a 0 -S 0 -y {26 26} h -t 2.23501 -s 3 -d 2 -p ack -e 40 -c 0 -i 85 -a 0 -S 0 -y {-1 -1} r -t 2.25101 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 84 -a 0 -S 0 -y {26 26} + -t 2.25101 -s 3 -d 2 -p ack -e 40 -c 0 -i 86 -a 0 -S 0 -y {26 26} - -t 2.25101 -s 3 -d 2 -p ack -e 40 -c 0 -i 86 -a 0 -S 0 -y {26 26} h -t 2.25101 -s 3 -d 2 -p ack -e 40 -c 0 -i 86 -a 0 -S 0 -y {-1 -1} r -t 2.25507 -s 3 -d 2 -p ack -e 40 -c 0 -i 85 -a 0 -S 0 -y {26 26} + -t 2.25507 -s 2 -d 1 -p ack -e 40 -c 0 -i 85 -a 0 -S 0 -y {26 26} - -t 2.25507 -s 2 -d 1 -p ack -e 40 -c 0 -i 85 -a 0 -S 0 -y {26 26} h -t 2.25507 -s 2 -d 1 -p ack -e 40 -c 0 -i 85 -a 0 -S 0 -y {-1 -1} r -t 2.27107 -s 3 -d 2 -p ack -e 40 -c 0 -i 86 -a 0 -S 0 -y {26 26} + -t 2.27107 -s 2 -d 1 -p ack -e 40 -c 0 -i 86 -a 0 -S 0 -y {26 26} - -t 2.27107 -s 2 -d 1 -p ack -e 40 -c 0 -i 86 -a 0 -S 0 -y {26 26} h -t 2.27107 -s 2 -d 1 -p ack -e 40 -c 0 -i 86 -a 0 -S 0 -y {-1 -1} r -t 2.35571 -s 2 -d 1 -p ack -e 40 -c 0 -i 85 -a 0 -S 0 -y {26 26} + -t 2.35571 -s 1 -d 0 -p ack -e 40 -c 0 -i 85 -a 0 -S 0 -y {26 26} - -t 2.35571 -s 1 -d 0 -p ack -e 40 -c 0 -i 85 -a 0 -S 0 -f 0 -m 1 -y {26 26} h -t 2.35571 -s 1 -d 0 -p ack -e 40 -c 0 -i 85 -a 0 -S 0 -y {-1 -1} r -t 2.37171 -s 2 -d 1 -p ack -e 40 -c 0 -i 86 -a 0 -S 0 -y {26 26} + -t 2.37171 -s 1 -d 0 -p ack -e 40 -c 0 -i 86 -a 0 -S 0 -y {26 26} - -t 2.37171 -s 1 -d 0 -p ack -e 40 -c 0 -i 86 -a 0 -S 0 -f 0 -m 1 -y {26 26} h -t 2.37171 -s 1 -d 0 -p ack -e 40 -c 0 -i 86 -a 0 -S 0 -y {-1 -1} r -t 2.37578 -s 1 -d 0 -p ack -e 40 -c 0 -i 85 -a 0 -S 0 -y {26 26} f -t 2.37577600000000100 -s 0 -d 3 -n cwnd_ -a tcp -v 3.000000 -o 2.000000 -T v + -t 2.37578 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 87 -a 0 -S 0 -f 0 -m 0 -y {27 27} - -t 2.37578 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 87 -a 0 -S 0 -y {27 27} h -t 2.37578 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 87 -a 0 -S 0 -y {-1 -1} + -t 2.37578 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 88 -a 0 -S 0 -f 0 -m 0 -y {28 28} + -t 2.37578 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 89 -a 0 -S 0 -f 0 -m 0 -y {29 29} - -t 2.37738 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 88 -a 0 -S 0 -y {28 28} h -t 2.37738 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 88 -a 0 -S 0 -y {-1 -1} - -t 2.37898 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 89 -a 0 -S 0 -y {29 29} h -t 2.37898 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 89 -a 0 -S 0 -y {-1 -1} r -t 2.39178 -s 1 -d 0 -p ack -e 40 -c 0 -i 86 -a 0 -S 0 -y {26 26} r -t 2.39738 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 87 -a 0 -S 0 -y {27 27} + -t 2.39738 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 87 -a 0 -S 0 -y {27 27} - -t 2.39738 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 87 -a 0 -S 0 -y {27 27} h -t 2.39738 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 87 -a 0 -S 0 -y {-1 -1} r -t 2.39898 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 88 -a 0 -S 0 -y {28 28} + -t 2.39898 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 88 -a 0 -S 0 -y {28 28} r -t 2.40058 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 89 -a 0 -S 0 -y {29 29} + -t 2.40058 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 89 -a 0 -S 0 -y {29 29} - -t 2.41338 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 88 -a 0 -S 0 -y {28 28} h -t 2.41338 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 88 -a 0 -S 0 -y {-1 -1} - -t 2.42938 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 89 -a 0 -S 0 -y {29 29} h -t 2.42938 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 89 -a 0 -S 0 -y {-1 -1} r -t 2.51338 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 87 -a 0 -S 0 -y {27 27} + -t 2.51338 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 87 -a 0 -S 0 -y {27 27} - -t 2.51338 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 87 -a 0 -S 0 -y {27 27} h -t 2.51338 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 87 -a 0 -S 0 -y {-1 -1} r -t 2.52938 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 88 -a 0 -S 0 -y {28 28} + -t 2.52938 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 88 -a 0 -S 0 -y {28 28} - -t 2.52938 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 88 -a 0 -S 0 -y {28 28} h -t 2.52938 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 88 -a 0 -S 0 -y {-1 -1} r -t 2.53498 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 87 -a 0 -S 0 -y {27 27} + -t 2.53498 -s 3 -d 2 -p ack -e 40 -c 0 -i 90 -a 0 -S 0 -y {28 28} - -t 2.53498 -s 3 -d 2 -p ack -e 40 -c 0 -i 90 -a 0 -S 0 -y {28 28} h -t 2.53498 -s 3 -d 2 -p ack -e 40 -c 0 -i 90 -a 0 -S 0 -y {-1 -1} r -t 2.54538 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 89 -a 0 -S 0 -y {29 29} + -t 2.54538 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 89 -a 0 -S 0 -y {29 29} - -t 2.54538 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 89 -a 0 -S 0 -y {29 29} h -t 2.54538 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 89 -a 0 -S 0 -y {-1 -1} r -t 2.55098 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 88 -a 0 -S 0 -y {28 28} + -t 2.55098 -s 3 -d 2 -p ack -e 40 -c 0 -i 91 -a 0 -S 0 -y {28 28} - -t 2.55098 -s 3 -d 2 -p ack -e 40 -c 0 -i 91 -a 0 -S 0 -y {28 28} h -t 2.55098 -s 3 -d 2 -p ack -e 40 -c 0 -i 91 -a 0 -S 0 -y {-1 -1} r -t 2.55504 -s 3 -d 2 -p ack -e 40 -c 0 -i 90 -a 0 -S 0 -y {28 28} + -t 2.55504 -s 2 -d 1 -p ack -e 40 -c 0 -i 90 -a 0 -S 0 -y {28 28} - -t 2.55504 -s 2 -d 1 -p ack -e 40 -c 0 -i 90 -a 0 -S 0 -y {28 28} h -t 2.55504 -s 2 -d 1 -p ack -e 40 -c 0 -i 90 -a 0 -S 0 -y {-1 -1} r -t 2.56698 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 89 -a 0 -S 0 -y {29 29} + -t 2.56698 -s 3 -d 2 -p ack -e 40 -c 0 -i 92 -a 0 -S 0 -y {38 38} - -t 2.56698 -s 3 -d 2 -p ack -e 40 -c 0 -i 92 -a 0 -S 0 -y {38 38} h -t 2.56698 -s 3 -d 2 -p ack -e 40 -c 0 -i 92 -a 0 -S 0 -y {-1 -1} r -t 2.57104 -s 3 -d 2 -p ack -e 40 -c 0 -i 91 -a 0 -S 0 -y {28 28} + -t 2.57104 -s 2 -d 1 -p ack -e 40 -c 0 -i 91 -a 0 -S 0 -y {28 28} - -t 2.57104 -s 2 -d 1 -p ack -e 40 -c 0 -i 91 -a 0 -S 0 -y {28 28} h -t 2.57104 -s 2 -d 1 -p ack -e 40 -c 0 -i 91 -a 0 -S 0 -y {-1 -1} r -t 2.58704 -s 3 -d 2 -p ack -e 40 -c 0 -i 92 -a 0 -S 0 -y {38 38} + -t 2.58704 -s 2 -d 1 -p ack -e 40 -c 0 -i 92 -a 0 -S 0 -y {38 38} - -t 2.58704 -s 2 -d 1 -p ack -e 40 -c 0 -i 92 -a 0 -S 0 -y {38 38} h -t 2.58704 -s 2 -d 1 -p ack -e 40 -c 0 -i 92 -a 0 -S 0 -y {-1 -1} r -t 2.65568 -s 2 -d 1 -p ack -e 40 -c 0 -i 90 -a 0 -S 0 -y {28 28} + -t 2.65568 -s 1 -d 0 -p ack -e 40 -c 0 -i 90 -a 0 -S 0 -y {28 28} - -t 2.65568 -s 1 -d 0 -p ack -e 40 -c 0 -i 90 -a 0 -S 0 -f 0 -m 1 -y {28 28} h -t 2.65568 -s 1 -d 0 -p ack -e 40 -c 0 -i 90 -a 0 -S 0 -y {-1 -1} r -t 2.67168 -s 2 -d 1 -p ack -e 40 -c 0 -i 91 -a 0 -S 0 -y {28 28} + -t 2.67168 -s 1 -d 0 -p ack -e 40 -c 0 -i 91 -a 0 -S 0 -y {28 28} - -t 2.67168 -s 1 -d 0 -p ack -e 40 -c 0 -i 91 -a 0 -S 0 -f 0 -m 1 -y {28 28} h -t 2.67168 -s 1 -d 0 -p ack -e 40 -c 0 -i 91 -a 0 -S 0 -y {-1 -1} r -t 2.67574 -s 1 -d 0 -p ack -e 40 -c 0 -i 90 -a 0 -S 0 -y {28 28} f -t 2.67574400000000079 -s 0 -d 3 -n cwnd_ -a tcp -v 4.000000 -o 3.000000 -T v + -t 2.67574 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 93 -a 0 -S 0 -f 0 -m 0 -y {30 30} - -t 2.67574 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 93 -a 0 -S 0 -y {30 30} h -t 2.67574 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 93 -a 0 -S 0 -y {-1 -1} + -t 2.67574 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 94 -a 0 -S 0 -f 0 -m 0 -y {31 31} + -t 2.67574 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 95 -a 0 -S 0 -f 0 -m 0 -y {32 32} - -t 2.67734 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 94 -a 0 -S 0 -y {31 31} h -t 2.67734 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 94 -a 0 -S 0 -y {-1 -1} - -t 2.67894 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 95 -a 0 -S 0 -y {32 32} h -t 2.67894 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 95 -a 0 -S 0 -y {-1 -1} r -t 2.68768 -s 2 -d 1 -p ack -e 40 -c 0 -i 92 -a 0 -S 0 -y {38 38} + -t 2.68768 -s 1 -d 0 -p ack -e 40 -c 0 -i 92 -a 0 -S 0 -y {38 38} - -t 2.68768 -s 1 -d 0 -p ack -e 40 -c 0 -i 92 -a 0 -S 0 -f 0 -m 1 -y {38 38} h -t 2.68768 -s 1 -d 0 -p ack -e 40 -c 0 -i 92 -a 0 -S 0 -y {-1 -1} r -t 2.69174 -s 1 -d 0 -p ack -e 40 -c 0 -i 91 -a 0 -S 0 -y {28 28} r -t 2.69734 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 93 -a 0 -S 0 -y {30 30} + -t 2.69734 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 93 -a 0 -S 0 -y {30 30} - -t 2.69734 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 93 -a 0 -S 0 -y {30 30} h -t 2.69734 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 93 -a 0 -S 0 -y {-1 -1} r -t 2.69894 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 94 -a 0 -S 0 -y {31 31} + -t 2.69894 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 94 -a 0 -S 0 -y {31 31} r -t 2.70054 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 95 -a 0 -S 0 -y {32 32} + -t 2.70054 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 95 -a 0 -S 0 -y {32 32} r -t 2.70774 -s 1 -d 0 -p ack -e 40 -c 0 -i 92 -a 0 -S 0 -y {38 38} f -t 2.70774400000000082 -s 0 -d 3 -n cwnd_ -a tcp -v 5.000000 -o 4.000000 -T v + -t 2.70774 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 96 -a 0 -S 0 -f 0 -m 0 -y {39 39} - -t 2.70774 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 96 -a 0 -S 0 -y {39 39} h -t 2.70774 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 96 -a 0 -S 0 -y {-1 -1} + -t 2.70774 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 97 -a 0 -S 0 -f 0 -m 0 -y {40 40} + -t 2.70774 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 98 -a 0 -S 0 -f 0 -m 0 -y {41 41} + -t 2.70774 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 99 -a 0 -S 0 -f 0 -m 0 -y {42 42} + -t 2.70774 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 100 -a 0 -S 0 -f 0 -m 0 -y {43 43} - -t 2.70934 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 97 -a 0 -S 0 -y {40 40} h -t 2.70934 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 97 -a 0 -S 0 -y {-1 -1} - -t 2.71094 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 98 -a 0 -S 0 -y {41 41} h -t 2.71094 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 98 -a 0 -S 0 -y {-1 -1} - -t 2.71254 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 99 -a 0 -S 0 -y {42 42} h -t 2.71254 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 99 -a 0 -S 0 -y {-1 -1} - -t 2.71334 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 94 -a 0 -S 0 -y {31 31} h -t 2.71334 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 94 -a 0 -S 0 -y {-1 -1} - -t 2.71414 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 100 -a 0 -S 0 -y {43 43} h -t 2.71414 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 100 -a 0 -S 0 -y {-1 -1} r -t 2.72934 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 96 -a 0 -S 0 -y {39 39} + -t 2.72934 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 96 -a 0 -S 0 -y {39 39} - -t 2.72934 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 95 -a 0 -S 0 -y {32 32} h -t 2.72934 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 95 -a 0 -S 0 -y {-1 -1} r -t 2.73094 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 97 -a 0 -S 0 -y {40 40} + -t 2.73094 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 97 -a 0 -S 0 -y {40 40} r -t 2.73254 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 98 -a 0 -S 0 -y {41 41} + -t 2.73254 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 98 -a 0 -S 0 -y {41 41} r -t 2.73414 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 99 -a 0 -S 0 -y {42 42} + -t 2.73414 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 99 -a 0 -S 0 -y {42 42} r -t 2.73574 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 100 -a 0 -S 0 -y {43 43} + -t 2.73574 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 100 -a 0 -S 0 -y {43 43} d -t 2.73574 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 100 -a 0 -S 0 -y {43 43} - -t 2.74534 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 96 -a 0 -S 0 -y {39 39} h -t 2.74534 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 96 -a 0 -S 0 -y {-1 -1} - -t 2.76134 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 97 -a 0 -S 0 -y {40 40} h -t 2.76134 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 97 -a 0 -S 0 -y {-1 -1} - -t 2.77734 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 98 -a 0 -S 0 -y {41 41} h -t 2.77734 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 98 -a 0 -S 0 -y {-1 -1} - -t 2.79334 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 99 -a 0 -S 0 -y {42 42} h -t 2.79334 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 99 -a 0 -S 0 -y {-1 -1} r -t 2.81334 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 93 -a 0 -S 0 -y {30 30} + -t 2.81334 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 93 -a 0 -S 0 -y {30 30} - -t 2.81334 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 93 -a 0 -S 0 -y {30 30} h -t 2.81334 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 93 -a 0 -S 0 -y {-1 -1} r -t 2.82934 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 94 -a 0 -S 0 -y {31 31} + -t 2.82934 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 94 -a 0 -S 0 -y {31 31} - -t 2.82934 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 94 -a 0 -S 0 -y {31 31} h -t 2.82934 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 94 -a 0 -S 0 -y {-1 -1} r -t 2.83494 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 93 -a 0 -S 0 -y {30 30} + -t 2.83494 -s 3 -d 2 -p ack -e 40 -c 0 -i 101 -a 0 -S 0 -y {38 38} - -t 2.83494 -s 3 -d 2 -p ack -e 40 -c 0 -i 101 -a 0 -S 0 -y {38 38} h -t 2.83494 -s 3 -d 2 -p ack -e 40 -c 0 -i 101 -a 0 -S 0 -y {-1 -1} r -t 2.84534 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 95 -a 0 -S 0 -y {32 32} + -t 2.84534 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 95 -a 0 -S 0 -y {32 32} - -t 2.84534 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 95 -a 0 -S 0 -y {32 32} h -t 2.84534 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 95 -a 0 -S 0 -y {-1 -1} r -t 2.85094 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 94 -a 0 -S 0 -y {31 31} + -t 2.85094 -s 3 -d 2 -p ack -e 40 -c 0 -i 102 -a 0 -S 0 -y {38 38} - -t 2.85094 -s 3 -d 2 -p ack -e 40 -c 0 -i 102 -a 0 -S 0 -y {38 38} h -t 2.85094 -s 3 -d 2 -p ack -e 40 -c 0 -i 102 -a 0 -S 0 -y {-1 -1} r -t 2.85501 -s 3 -d 2 -p ack -e 40 -c 0 -i 101 -a 0 -S 0 -y {38 38} + -t 2.85501 -s 2 -d 1 -p ack -e 40 -c 0 -i 101 -a 0 -S 0 -y {38 38} - -t 2.85501 -s 2 -d 1 -p ack -e 40 -c 0 -i 101 -a 0 -S 0 -y {38 38} h -t 2.85501 -s 2 -d 1 -p ack -e 40 -c 0 -i 101 -a 0 -S 0 -y {-1 -1} r -t 2.86134 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 96 -a 0 -S 0 -y {39 39} + -t 2.86134 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 96 -a 0 -S 0 -y {39 39} - -t 2.86134 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 96 -a 0 -S 0 -y {39 39} h -t 2.86134 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 96 -a 0 -S 0 -y {-1 -1} r -t 2.86694 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 95 -a 0 -S 0 -y {32 32} + -t 2.86694 -s 3 -d 2 -p ack -e 40 -c 0 -i 103 -a 0 -S 0 -y {38 38} - -t 2.86694 -s 3 -d 2 -p ack -e 40 -c 0 -i 103 -a 0 -S 0 -y {38 38} h -t 2.86694 -s 3 -d 2 -p ack -e 40 -c 0 -i 103 -a 0 -S 0 -y {-1 -1} r -t 2.87101 -s 3 -d 2 -p ack -e 40 -c 0 -i 102 -a 0 -S 0 -y {38 38} + -t 2.87101 -s 2 -d 1 -p ack -e 40 -c 0 -i 102 -a 0 -S 0 -y {38 38} - -t 2.87101 -s 2 -d 1 -p ack -e 40 -c 0 -i 102 -a 0 -S 0 -y {38 38} h -t 2.87101 -s 2 -d 1 -p ack -e 40 -c 0 -i 102 -a 0 -S 0 -y {-1 -1} r -t 2.87734 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 97 -a 0 -S 0 -y {40 40} + -t 2.87734 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 97 -a 0 -S 0 -y {40 40} - -t 2.87734 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 97 -a 0 -S 0 -y {40 40} h -t 2.87734 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 97 -a 0 -S 0 -y {-1 -1} r -t 2.88294 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 96 -a 0 -S 0 -y {39 39} + -t 2.88294 -s 3 -d 2 -p ack -e 40 -c 0 -i 104 -a 0 -S 0 -y {42 42} - -t 2.88294 -s 3 -d 2 -p ack -e 40 -c 0 -i 104 -a 0 -S 0 -y {42 42} h -t 2.88294 -s 3 -d 2 -p ack -e 40 -c 0 -i 104 -a 0 -S 0 -y {-1 -1} r -t 2.88701 -s 3 -d 2 -p ack -e 40 -c 0 -i 103 -a 0 -S 0 -y {38 38} + -t 2.88701 -s 2 -d 1 -p ack -e 40 -c 0 -i 103 -a 0 -S 0 -y {38 38} - -t 2.88701 -s 2 -d 1 -p ack -e 40 -c 0 -i 103 -a 0 -S 0 -y {38 38} h -t 2.88701 -s 2 -d 1 -p ack -e 40 -c 0 -i 103 -a 0 -S 0 -y {-1 -1} r -t 2.89334 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 98 -a 0 -S 0 -y {41 41} + -t 2.89334 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 98 -a 0 -S 0 -y {41 41} - -t 2.89334 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 98 -a 0 -S 0 -y {41 41} h -t 2.89334 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 98 -a 0 -S 0 -y {-1 -1} r -t 2.89894 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 97 -a 0 -S 0 -y {40 40} + -t 2.89894 -s 3 -d 2 -p ack -e 40 -c 0 -i 105 -a 0 -S 0 -y {42 42} - -t 2.89894 -s 3 -d 2 -p ack -e 40 -c 0 -i 105 -a 0 -S 0 -y {42 42} h -t 2.89894 -s 3 -d 2 -p ack -e 40 -c 0 -i 105 -a 0 -S 0 -y {-1 -1} r -t 2.90301 -s 3 -d 2 -p ack -e 40 -c 0 -i 104 -a 0 -S 0 -y {42 42} + -t 2.90301 -s 2 -d 1 -p ack -e 40 -c 0 -i 104 -a 0 -S 0 -y {42 42} - -t 2.90301 -s 2 -d 1 -p ack -e 40 -c 0 -i 104 -a 0 -S 0 -y {42 42} h -t 2.90301 -s 2 -d 1 -p ack -e 40 -c 0 -i 104 -a 0 -S 0 -y {-1 -1} r -t 2.90934 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 99 -a 0 -S 0 -y {42 42} + -t 2.90934 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 99 -a 0 -S 0 -y {42 42} - -t 2.90934 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 99 -a 0 -S 0 -y {42 42} h -t 2.90934 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 99 -a 0 -S 0 -y {-1 -1} r -t 2.91494 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 98 -a 0 -S 0 -y {41 41} + -t 2.91494 -s 3 -d 2 -p ack -e 40 -c 0 -i 106 -a 0 -S 0 -y {42 42} - -t 2.91494 -s 3 -d 2 -p ack -e 40 -c 0 -i 106 -a 0 -S 0 -y {42 42} h -t 2.91494 -s 3 -d 2 -p ack -e 40 -c 0 -i 106 -a 0 -S 0 -y {-1 -1} r -t 2.91901 -s 3 -d 2 -p ack -e 40 -c 0 -i 105 -a 0 -S 0 -y {42 42} + -t 2.91901 -s 2 -d 1 -p ack -e 40 -c 0 -i 105 -a 0 -S 0 -y {42 42} - -t 2.91901 -s 2 -d 1 -p ack -e 40 -c 0 -i 105 -a 0 -S 0 -y {42 42} h -t 2.91901 -s 2 -d 1 -p ack -e 40 -c 0 -i 105 -a 0 -S 0 -y {-1 -1} r -t 2.93094 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 99 -a 0 -S 0 -y {42 42} + -t 2.93094 -s 3 -d 2 -p ack -e 40 -c 0 -i 107 -a 0 -S 0 -y {42 42} - -t 2.93094 -s 3 -d 2 -p ack -e 40 -c 0 -i 107 -a 0 -S 0 -y {42 42} h -t 2.93094 -s 3 -d 2 -p ack -e 40 -c 0 -i 107 -a 0 -S 0 -y {-1 -1} r -t 2.93501 -s 3 -d 2 -p ack -e 40 -c 0 -i 106 -a 0 -S 0 -y {42 42} + -t 2.93501 -s 2 -d 1 -p ack -e 40 -c 0 -i 106 -a 0 -S 0 -y {42 42} - -t 2.93501 -s 2 -d 1 -p ack -e 40 -c 0 -i 106 -a 0 -S 0 -y {42 42} h -t 2.93501 -s 2 -d 1 -p ack -e 40 -c 0 -i 106 -a 0 -S 0 -y {-1 -1} r -t 2.95101 -s 3 -d 2 -p ack -e 40 -c 0 -i 107 -a 0 -S 0 -y {42 42} + -t 2.95101 -s 2 -d 1 -p ack -e 40 -c 0 -i 107 -a 0 -S 0 -y {42 42} - -t 2.95101 -s 2 -d 1 -p ack -e 40 -c 0 -i 107 -a 0 -S 0 -y {42 42} h -t 2.95101 -s 2 -d 1 -p ack -e 40 -c 0 -i 107 -a 0 -S 0 -y {-1 -1} r -t 2.95565 -s 2 -d 1 -p ack -e 40 -c 0 -i 101 -a 0 -S 0 -y {38 38} + -t 2.95565 -s 1 -d 0 -p ack -e 40 -c 0 -i 101 -a 0 -S 0 -y {38 38} - -t 2.95565 -s 1 -d 0 -p ack -e 40 -c 0 -i 101 -a 0 -S 0 -f 0 -m 1 -y {38 38} h -t 2.95565 -s 1 -d 0 -p ack -e 40 -c 0 -i 101 -a 0 -S 0 -y {-1 -1} r -t 2.97165 -s 2 -d 1 -p ack -e 40 -c 0 -i 102 -a 0 -S 0 -y {38 38} + -t 2.97165 -s 1 -d 0 -p ack -e 40 -c 0 -i 102 -a 0 -S 0 -y {38 38} - -t 2.97165 -s 1 -d 0 -p ack -e 40 -c 0 -i 102 -a 0 -S 0 -f 0 -m 1 -y {38 38} h -t 2.97165 -s 1 -d 0 -p ack -e 40 -c 0 -i 102 -a 0 -S 0 -y {-1 -1} r -t 2.97571 -s 1 -d 0 -p ack -e 40 -c 0 -i 101 -a 0 -S 0 -y {38 38} r -t 2.98765 -s 2 -d 1 -p ack -e 40 -c 0 -i 103 -a 0 -S 0 -y {38 38} + -t 2.98765 -s 1 -d 0 -p ack -e 40 -c 0 -i 103 -a 0 -S 0 -y {38 38} - -t 2.98765 -s 1 -d 0 -p ack -e 40 -c 0 -i 103 -a 0 -S 0 -f 0 -m 1 -y {38 38} h -t 2.98765 -s 1 -d 0 -p ack -e 40 -c 0 -i 103 -a 0 -S 0 -y {-1 -1} r -t 2.99171 -s 1 -d 0 -p ack -e 40 -c 0 -i 102 -a 0 -S 0 -y {38 38} r -t 3.00365 -s 2 -d 1 -p ack -e 40 -c 0 -i 104 -a 0 -S 0 -y {42 42} + -t 3.00365 -s 1 -d 0 -p ack -e 40 -c 0 -i 104 -a 0 -S 0 -y {42 42} - -t 3.00365 -s 1 -d 0 -p ack -e 40 -c 0 -i 104 -a 0 -S 0 -f 0 -m 1 -y {42 42} h -t 3.00365 -s 1 -d 0 -p ack -e 40 -c 0 -i 104 -a 0 -S 0 -y {-1 -1} r -t 3.00771 -s 1 -d 0 -p ack -e 40 -c 0 -i 103 -a 0 -S 0 -y {38 38} r -t 3.01965 -s 2 -d 1 -p ack -e 40 -c 0 -i 105 -a 0 -S 0 -y {42 42} + -t 3.01965 -s 1 -d 0 -p ack -e 40 -c 0 -i 105 -a 0 -S 0 -y {42 42} - -t 3.01965 -s 1 -d 0 -p ack -e 40 -c 0 -i 105 -a 0 -S 0 -f 0 -m 1 -y {42 42} h -t 3.01965 -s 1 -d 0 -p ack -e 40 -c 0 -i 105 -a 0 -S 0 -y {-1 -1} r -t 3.02371 -s 1 -d 0 -p ack -e 40 -c 0 -i 104 -a 0 -S 0 -y {42 42} f -t 3.02371200000000062 -s 0 -d 3 -n cwnd_ -a tcp -v 6.000000 -o 5.000000 -T v + -t 3.02371 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 108 -a 0 -S 0 -f 0 -m 0 -y {44 44} - -t 3.02371 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 108 -a 0 -S 0 -y {44 44} h -t 3.02371 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 108 -a 0 -S 0 -y {-1 -1} + -t 3.02371 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 109 -a 0 -S 0 -f 0 -m 0 -y {45 45} + -t 3.02371 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 110 -a 0 -S 0 -f 0 -m 0 -y {46 46} + -t 3.02371 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 111 -a 0 -S 0 -f 0 -m 0 -y {47 47} + -t 3.02371 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 112 -a 0 -S 0 -f 0 -m 0 -y {48 48} - -t 3.02531 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 109 -a 0 -S 0 -y {45 45} h -t 3.02531 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 109 -a 0 -S 0 -y {-1 -1} - -t 3.02691 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 110 -a 0 -S 0 -y {46 46} h -t 3.02691 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 110 -a 0 -S 0 -y {-1 -1} - -t 3.02851 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 111 -a 0 -S 0 -y {47 47} h -t 3.02851 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 111 -a 0 -S 0 -y {-1 -1} - -t 3.03011 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 112 -a 0 -S 0 -y {48 48} h -t 3.03011 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 112 -a 0 -S 0 -y {-1 -1} r -t 3.03565 -s 2 -d 1 -p ack -e 40 -c 0 -i 106 -a 0 -S 0 -y {42 42} + -t 3.03565 -s 1 -d 0 -p ack -e 40 -c 0 -i 106 -a 0 -S 0 -y {42 42} - -t 3.03565 -s 1 -d 0 -p ack -e 40 -c 0 -i 106 -a 0 -S 0 -f 0 -m 1 -y {42 42} h -t 3.03565 -s 1 -d 0 -p ack -e 40 -c 0 -i 106 -a 0 -S 0 -y {-1 -1} r -t 3.03971 -s 1 -d 0 -p ack -e 40 -c 0 -i 105 -a 0 -S 0 -y {42 42} r -t 3.04531 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 108 -a 0 -S 0 -y {44 44} + -t 3.04531 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 108 -a 0 -S 0 -y {44 44} - -t 3.04531 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 108 -a 0 -S 0 -y {44 44} h -t 3.04531 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 108 -a 0 -S 0 -y {-1 -1} r -t 3.04691 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 109 -a 0 -S 0 -y {45 45} + -t 3.04691 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 109 -a 0 -S 0 -y {45 45} r -t 3.04851 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 110 -a 0 -S 0 -y {46 46} + -t 3.04851 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 110 -a 0 -S 0 -y {46 46} r -t 3.05011 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 111 -a 0 -S 0 -y {47 47} + -t 3.05011 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 111 -a 0 -S 0 -y {47 47} r -t 3.05165 -s 2 -d 1 -p ack -e 40 -c 0 -i 107 -a 0 -S 0 -y {42 42} + -t 3.05165 -s 1 -d 0 -p ack -e 40 -c 0 -i 107 -a 0 -S 0 -y {42 42} - -t 3.05165 -s 1 -d 0 -p ack -e 40 -c 0 -i 107 -a 0 -S 0 -f 0 -m 1 -y {42 42} h -t 3.05165 -s 1 -d 0 -p ack -e 40 -c 0 -i 107 -a 0 -S 0 -y {-1 -1} r -t 3.05171 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 112 -a 0 -S 0 -y {48 48} + -t 3.05171 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 112 -a 0 -S 0 -y {48 48} r -t 3.05571 -s 1 -d 0 -p ack -e 40 -c 0 -i 106 -a 0 -S 0 -y {42 42} - -t 3.06131 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 109 -a 0 -S 0 -y {45 45} h -t 3.06131 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 109 -a 0 -S 0 -y {-1 -1} r -t 3.07171 -s 1 -d 0 -p ack -e 40 -c 0 -i 107 -a 0 -S 0 -y {42 42} - -t 3.07731 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 110 -a 0 -S 0 -y {46 46} h -t 3.07731 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 110 -a 0 -S 0 -y {-1 -1} - -t 3.09331 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 111 -a 0 -S 0 -y {47 47} h -t 3.09331 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 111 -a 0 -S 0 -y {-1 -1} - -t 3.10931 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 112 -a 0 -S 0 -y {48 48} h -t 3.10931 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 112 -a 0 -S 0 -y {-1 -1} r -t 3.16131 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 108 -a 0 -S 0 -y {44 44} + -t 3.16131 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 108 -a 0 -S 0 -y {44 44} - -t 3.16131 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 108 -a 0 -S 0 -y {44 44} h -t 3.16131 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 108 -a 0 -S 0 -y {-1 -1} r -t 3.17731 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 109 -a 0 -S 0 -y {45 45} + -t 3.17731 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 109 -a 0 -S 0 -y {45 45} - -t 3.17731 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 109 -a 0 -S 0 -y {45 45} h -t 3.17731 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 109 -a 0 -S 0 -y {-1 -1} r -t 3.18291 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 108 -a 0 -S 0 -y {44 44} + -t 3.18291 -s 3 -d 2 -p ack -e 40 -c 0 -i 113 -a 0 -S 0 -y {42 42} - -t 3.18291 -s 3 -d 2 -p ack -e 40 -c 0 -i 113 -a 0 -S 0 -y {42 42} h -t 3.18291 -s 3 -d 2 -p ack -e 40 -c 0 -i 113 -a 0 -S 0 -y {-1 -1} r -t 3.19331 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 110 -a 0 -S 0 -y {46 46} + -t 3.19331 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 110 -a 0 -S 0 -y {46 46} - -t 3.19331 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 110 -a 0 -S 0 -y {46 46} h -t 3.19331 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 110 -a 0 -S 0 -y {-1 -1} r -t 3.19891 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 109 -a 0 -S 0 -y {45 45} + -t 3.19891 -s 3 -d 2 -p ack -e 40 -c 0 -i 114 -a 0 -S 0 -y {42 42} - -t 3.19891 -s 3 -d 2 -p ack -e 40 -c 0 -i 114 -a 0 -S 0 -y {42 42} h -t 3.19891 -s 3 -d 2 -p ack -e 40 -c 0 -i 114 -a 0 -S 0 -y {-1 -1} r -t 3.20298 -s 3 -d 2 -p ack -e 40 -c 0 -i 113 -a 0 -S 0 -y {42 42} + -t 3.20298 -s 2 -d 1 -p ack -e 40 -c 0 -i 113 -a 0 -S 0 -y {42 42} - -t 3.20298 -s 2 -d 1 -p ack -e 40 -c 0 -i 113 -a 0 -S 0 -y {42 42} h -t 3.20298 -s 2 -d 1 -p ack -e 40 -c 0 -i 113 -a 0 -S 0 -y {-1 -1} r -t 3.20931 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 111 -a 0 -S 0 -y {47 47} + -t 3.20931 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 111 -a 0 -S 0 -y {47 47} - -t 3.20931 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 111 -a 0 -S 0 -y {47 47} h -t 3.20931 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 111 -a 0 -S 0 -y {-1 -1} r -t 3.21491 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 110 -a 0 -S 0 -y {46 46} + -t 3.21491 -s 3 -d 2 -p ack -e 40 -c 0 -i 115 -a 0 -S 0 -y {42 42} - -t 3.21491 -s 3 -d 2 -p ack -e 40 -c 0 -i 115 -a 0 -S 0 -y {42 42} h -t 3.21491 -s 3 -d 2 -p ack -e 40 -c 0 -i 115 -a 0 -S 0 -y {-1 -1} r -t 3.21898 -s 3 -d 2 -p ack -e 40 -c 0 -i 114 -a 0 -S 0 -y {42 42} + -t 3.21898 -s 2 -d 1 -p ack -e 40 -c 0 -i 114 -a 0 -S 0 -y {42 42} - -t 3.21898 -s 2 -d 1 -p ack -e 40 -c 0 -i 114 -a 0 -S 0 -y {42 42} h -t 3.21898 -s 2 -d 1 -p ack -e 40 -c 0 -i 114 -a 0 -S 0 -y {-1 -1} r -t 3.22531 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 112 -a 0 -S 0 -y {48 48} + -t 3.22531 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 112 -a 0 -S 0 -y {48 48} - -t 3.22531 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 112 -a 0 -S 0 -y {48 48} h -t 3.22531 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 112 -a 0 -S 0 -y {-1 -1} r -t 3.23091 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 111 -a 0 -S 0 -y {47 47} + -t 3.23091 -s 3 -d 2 -p ack -e 40 -c 0 -i 116 -a 0 -S 0 -y {42 42} - -t 3.23091 -s 3 -d 2 -p ack -e 40 -c 0 -i 116 -a 0 -S 0 -y {42 42} h -t 3.23091 -s 3 -d 2 -p ack -e 40 -c 0 -i 116 -a 0 -S 0 -y {-1 -1} r -t 3.23498 -s 3 -d 2 -p ack -e 40 -c 0 -i 115 -a 0 -S 0 -y {42 42} + -t 3.23498 -s 2 -d 1 -p ack -e 40 -c 0 -i 115 -a 0 -S 0 -y {42 42} - -t 3.23498 -s 2 -d 1 -p ack -e 40 -c 0 -i 115 -a 0 -S 0 -y {42 42} h -t 3.23498 -s 2 -d 1 -p ack -e 40 -c 0 -i 115 -a 0 -S 0 -y {-1 -1} r -t 3.24691 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 112 -a 0 -S 0 -y {48 48} + -t 3.24691 -s 3 -d 2 -p ack -e 40 -c 0 -i 117 -a 0 -S 0 -y {42 42} - -t 3.24691 -s 3 -d 2 -p ack -e 40 -c 0 -i 117 -a 0 -S 0 -y {42 42} h -t 3.24691 -s 3 -d 2 -p ack -e 40 -c 0 -i 117 -a 0 -S 0 -y {-1 -1} r -t 3.25098 -s 3 -d 2 -p ack -e 40 -c 0 -i 116 -a 0 -S 0 -y {42 42} + -t 3.25098 -s 2 -d 1 -p ack -e 40 -c 0 -i 116 -a 0 -S 0 -y {42 42} - -t 3.25098 -s 2 -d 1 -p ack -e 40 -c 0 -i 116 -a 0 -S 0 -y {42 42} h -t 3.25098 -s 2 -d 1 -p ack -e 40 -c 0 -i 116 -a 0 -S 0 -y {-1 -1} r -t 3.26698 -s 3 -d 2 -p ack -e 40 -c 0 -i 117 -a 0 -S 0 -y {42 42} + -t 3.26698 -s 2 -d 1 -p ack -e 40 -c 0 -i 117 -a 0 -S 0 -y {42 42} - -t 3.26698 -s 2 -d 1 -p ack -e 40 -c 0 -i 117 -a 0 -S 0 -y {42 42} h -t 3.26698 -s 2 -d 1 -p ack -e 40 -c 0 -i 117 -a 0 -S 0 -y {-1 -1} r -t 3.30362 -s 2 -d 1 -p ack -e 40 -c 0 -i 113 -a 0 -S 0 -y {42 42} + -t 3.30362 -s 1 -d 0 -p ack -e 40 -c 0 -i 113 -a 0 -S 0 -y {42 42} - -t 3.30362 -s 1 -d 0 -p ack -e 40 -c 0 -i 113 -a 0 -S 0 -f 0 -m 1 -y {42 42} h -t 3.30362 -s 1 -d 0 -p ack -e 40 -c 0 -i 113 -a 0 -S 0 -y {-1 -1} r -t 3.31962 -s 2 -d 1 -p ack -e 40 -c 0 -i 114 -a 0 -S 0 -y {42 42} + -t 3.31962 -s 1 -d 0 -p ack -e 40 -c 0 -i 114 -a 0 -S 0 -y {42 42} - -t 3.31962 -s 1 -d 0 -p ack -e 40 -c 0 -i 114 -a 0 -S 0 -f 0 -m 1 -y {42 42} h -t 3.31962 -s 1 -d 0 -p ack -e 40 -c 0 -i 114 -a 0 -S 0 -y {-1 -1} r -t 3.32368 -s 1 -d 0 -p ack -e 40 -c 0 -i 113 -a 0 -S 0 -y {42 42} r -t 3.33562 -s 2 -d 1 -p ack -e 40 -c 0 -i 115 -a 0 -S 0 -y {42 42} + -t 3.33562 -s 1 -d 0 -p ack -e 40 -c 0 -i 115 -a 0 -S 0 -y {42 42} - -t 3.33562 -s 1 -d 0 -p ack -e 40 -c 0 -i 115 -a 0 -S 0 -f 0 -m 1 -y {42 42} h -t 3.33562 -s 1 -d 0 -p ack -e 40 -c 0 -i 115 -a 0 -S 0 -y {-1 -1} r -t 3.33968 -s 1 -d 0 -p ack -e 40 -c 0 -i 114 -a 0 -S 0 -y {42 42} r -t 3.35162 -s 2 -d 1 -p ack -e 40 -c 0 -i 116 -a 0 -S 0 -y {42 42} + -t 3.35162 -s 1 -d 0 -p ack -e 40 -c 0 -i 116 -a 0 -S 0 -y {42 42} - -t 3.35162 -s 1 -d 0 -p ack -e 40 -c 0 -i 116 -a 0 -S 0 -f 0 -m 1 -y {42 42} h -t 3.35162 -s 1 -d 0 -p ack -e 40 -c 0 -i 116 -a 0 -S 0 -y {-1 -1} r -t 3.35568 -s 1 -d 0 -p ack -e 40 -c 0 -i 115 -a 0 -S 0 -y {42 42} r -t 3.36762 -s 2 -d 1 -p ack -e 40 -c 0 -i 117 -a 0 -S 0 -y {42 42} + -t 3.36762 -s 1 -d 0 -p ack -e 40 -c 0 -i 117 -a 0 -S 0 -y {42 42} - -t 3.36762 -s 1 -d 0 -p ack -e 40 -c 0 -i 117 -a 0 -S 0 -f 0 -m 1 -y {42 42} h -t 3.36762 -s 1 -d 0 -p ack -e 40 -c 0 -i 117 -a 0 -S 0 -y {-1 -1} r -t 3.37168 -s 1 -d 0 -p ack -e 40 -c 0 -i 116 -a 0 -S 0 -y {42 42} r -t 3.38768 -s 1 -d 0 -p ack -e 40 -c 0 -i 117 -a 0 -S 0 -y {42 42} f -t 3.62371200000000071 -s 0 -d 3 -n ssthresh_ -a tcp -v 3 -o 10 -T v f -t 3.62371200000000071 -s 0 -d 3 -n cwnd_ -a tcp -v 1.000000 -o 6.000000 -T v + -t 3.62371 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 118 -a 0 -S 0 -f 1 -m 2 -y {43 43} - -t 3.62371 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 118 -a 0 -S 0 -f 1 -y {43 43} h -t 3.62371 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 118 -a 0 -S 0 -f 1 -y {-1 -1} r -t 3.64531 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 118 -a 0 -S 0 -f 1 -y {43 43} + -t 3.64531 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 118 -a 0 -S 0 -f 1 -y {43 43} - -t 3.64531 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 118 -a 0 -S 0 -f 1 -y {43 43} h -t 3.64531 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 118 -a 0 -S 0 -f 1 -y {-1 -1} r -t 3.76131 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 118 -a 0 -S 0 -f 1 -y {43 43} + -t 3.76131 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 118 -a 0 -S 0 -f 1 -y {43 43} - -t 3.76131 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 118 -a 0 -S 0 -f 1 -y {43 43} h -t 3.76131 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 118 -a 0 -S 0 -f 1 -y {-1 -1} r -t 3.78291 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 118 -a 0 -S 0 -f 1 -y {43 43} + -t 3.78291 -s 3 -d 2 -p ack -e 40 -c 0 -i 119 -a 0 -S 0 -y {48 48} - -t 3.78291 -s 3 -d 2 -p ack -e 40 -c 0 -i 119 -a 0 -S 0 -y {48 48} h -t 3.78291 -s 3 -d 2 -p ack -e 40 -c 0 -i 119 -a 0 -S 0 -y {-1 -1} r -t 3.80298 -s 3 -d 2 -p ack -e 40 -c 0 -i 119 -a 0 -S 0 -y {48 48} + -t 3.80298 -s 2 -d 1 -p ack -e 40 -c 0 -i 119 -a 0 -S 0 -y {48 48} - -t 3.80298 -s 2 -d 1 -p ack -e 40 -c 0 -i 119 -a 0 -S 0 -y {48 48} h -t 3.80298 -s 2 -d 1 -p ack -e 40 -c 0 -i 119 -a 0 -S 0 -y {-1 -1} r -t 3.90362 -s 2 -d 1 -p ack -e 40 -c 0 -i 119 -a 0 -S 0 -y {48 48} + -t 3.90362 -s 1 -d 0 -p ack -e 40 -c 0 -i 119 -a 0 -S 0 -y {48 48} - -t 3.90362 -s 1 -d 0 -p ack -e 40 -c 0 -i 119 -a 0 -S 0 -f 0 -m 1 -y {48 48} h -t 3.90362 -s 1 -d 0 -p ack -e 40 -c 0 -i 119 -a 0 -S 0 -y {-1 -1} r -t 3.92368 -s 1 -d 0 -p ack -e 40 -c 0 -i 119 -a 0 -S 0 -y {48 48} f -t 3.92368000000000050 -s 0 -d 3 -n cwnd_ -a tcp -v 2.000000 -o 1.000000 -T v + -t 3.92368 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 120 -a 0 -S 0 -f 0 -m 0 -y {49 49} - -t 3.92368 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 120 -a 0 -S 0 -y {49 49} h -t 3.92368 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 120 -a 0 -S 0 -y {-1 -1} + -t 3.92368 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 121 -a 0 -S 0 -f 0 -m 0 -y {50 50} - -t 3.92528 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 121 -a 0 -S 0 -y {50 50} h -t 3.92528 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 121 -a 0 -S 0 -y {-1 -1} r -t 3.94528 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 120 -a 0 -S 0 -y {49 49} + -t 3.94528 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 120 -a 0 -S 0 -y {49 49} - -t 3.94528 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 120 -a 0 -S 0 -y {49 49} h -t 3.94528 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 120 -a 0 -S 0 -y {-1 -1} r -t 3.94688 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 121 -a 0 -S 0 -y {50 50} + -t 3.94688 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 121 -a 0 -S 0 -y {50 50} - -t 3.96128 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 121 -a 0 -S 0 -y {50 50} h -t 3.96128 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 121 -a 0 -S 0 -y {-1 -1} r -t 4.06128 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 120 -a 0 -S 0 -y {49 49} + -t 4.06128 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 120 -a 0 -S 0 -y {49 49} - -t 4.06128 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 120 -a 0 -S 0 -y {49 49} h -t 4.06128 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 120 -a 0 -S 0 -y {-1 -1} r -t 4.07728 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 121 -a 0 -S 0 -y {50 50} + -t 4.07728 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 121 -a 0 -S 0 -y {50 50} - -t 4.07728 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 121 -a 0 -S 0 -y {50 50} h -t 4.07728 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 121 -a 0 -S 0 -y {-1 -1} r -t 4.08288 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 120 -a 0 -S 0 -y {49 49} + -t 4.08288 -s 3 -d 2 -p ack -e 40 -c 0 -i 122 -a 0 -S 0 -y {49 49} - -t 4.08288 -s 3 -d 2 -p ack -e 40 -c 0 -i 122 -a 0 -S 0 -y {49 49} h -t 4.08288 -s 3 -d 2 -p ack -e 40 -c 0 -i 122 -a 0 -S 0 -y {-1 -1} r -t 4.09888 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 121 -a 0 -S 0 -y {50 50} + -t 4.09888 -s 3 -d 2 -p ack -e 40 -c 0 -i 123 -a 0 -S 0 -y {50 50} - -t 4.09888 -s 3 -d 2 -p ack -e 40 -c 0 -i 123 -a 0 -S 0 -y {50 50} h -t 4.09888 -s 3 -d 2 -p ack -e 40 -c 0 -i 123 -a 0 -S 0 -y {-1 -1} r -t 4.10294 -s 3 -d 2 -p ack -e 40 -c 0 -i 122 -a 0 -S 0 -y {49 49} + -t 4.10294 -s 2 -d 1 -p ack -e 40 -c 0 -i 122 -a 0 -S 0 -y {49 49} - -t 4.10294 -s 2 -d 1 -p ack -e 40 -c 0 -i 122 -a 0 -S 0 -y {49 49} h -t 4.10294 -s 2 -d 1 -p ack -e 40 -c 0 -i 122 -a 0 -S 0 -y {-1 -1} r -t 4.11894 -s 3 -d 2 -p ack -e 40 -c 0 -i 123 -a 0 -S 0 -y {50 50} + -t 4.11894 -s 2 -d 1 -p ack -e 40 -c 0 -i 123 -a 0 -S 0 -y {50 50} - -t 4.11894 -s 2 -d 1 -p ack -e 40 -c 0 -i 123 -a 0 -S 0 -y {50 50} h -t 4.11894 -s 2 -d 1 -p ack -e 40 -c 0 -i 123 -a 0 -S 0 -y {-1 -1} r -t 4.20358 -s 2 -d 1 -p ack -e 40 -c 0 -i 122 -a 0 -S 0 -y {49 49} + -t 4.20358 -s 1 -d 0 -p ack -e 40 -c 0 -i 122 -a 0 -S 0 -y {49 49} - -t 4.20358 -s 1 -d 0 -p ack -e 40 -c 0 -i 122 -a 0 -S 0 -f 0 -m 1 -y {49 49} h -t 4.20358 -s 1 -d 0 -p ack -e 40 -c 0 -i 122 -a 0 -S 0 -y {-1 -1} r -t 4.21958 -s 2 -d 1 -p ack -e 40 -c 0 -i 123 -a 0 -S 0 -y {50 50} + -t 4.21958 -s 1 -d 0 -p ack -e 40 -c 0 -i 123 -a 0 -S 0 -y {50 50} - -t 4.21958 -s 1 -d 0 -p ack -e 40 -c 0 -i 123 -a 0 -S 0 -f 0 -m 1 -y {50 50} h -t 4.21958 -s 1 -d 0 -p ack -e 40 -c 0 -i 123 -a 0 -S 0 -y {-1 -1} r -t 4.22365 -s 1 -d 0 -p ack -e 40 -c 0 -i 122 -a 0 -S 0 -y {49 49} f -t 4.22364799999999985 -s 0 -d 3 -n cwnd_ -a tcp -v 3.000000 -o 2.000000 -T v + -t 4.22365 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 124 -a 0 -S 0 -f 0 -m 0 -y {51 51} - -t 4.22365 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 124 -a 0 -S 0 -y {51 51} h -t 4.22365 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 124 -a 0 -S 0 -y {-1 -1} + -t 4.22365 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 125 -a 0 -S 0 -f 0 -m 0 -y {52 52} - -t 4.22525 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 125 -a 0 -S 0 -y {52 52} h -t 4.22525 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 125 -a 0 -S 0 -y {-1 -1} r -t 4.23965 -s 1 -d 0 -p ack -e 40 -c 0 -i 123 -a 0 -S 0 -y {50 50} f -t 4.23964799999999986 -s 0 -d 3 -n cwnd_ -a tcp -v 3.333333 -o 3.000000 -T v + -t 4.23965 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 126 -a 0 -S 0 -f 0 -m 0 -y {53 53} - -t 4.23965 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 126 -a 0 -S 0 -y {53 53} h -t 4.23965 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 126 -a 0 -S 0 -y {-1 -1} r -t 4.24525 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 124 -a 0 -S 0 -y {51 51} + -t 4.24525 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 124 -a 0 -S 0 -y {51 51} - -t 4.24525 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 124 -a 0 -S 0 -y {51 51} h -t 4.24525 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 124 -a 0 -S 0 -y {-1 -1} r -t 4.24685 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 125 -a 0 -S 0 -y {52 52} + -t 4.24685 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 125 -a 0 -S 0 -y {52 52} r -t 4.26125 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 126 -a 0 -S 0 -y {53 53} + -t 4.26125 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 126 -a 0 -S 0 -y {53 53} - -t 4.26125 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 125 -a 0 -S 0 -y {52 52} h -t 4.26125 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 125 -a 0 -S 0 -y {-1 -1} - -t 4.27725 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 126 -a 0 -S 0 -y {53 53} h -t 4.27725 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 126 -a 0 -S 0 -y {-1 -1} r -t 4.36125 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 124 -a 0 -S 0 -y {51 51} + -t 4.36125 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 124 -a 0 -S 0 -y {51 51} - -t 4.36125 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 124 -a 0 -S 0 -y {51 51} h -t 4.36125 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 124 -a 0 -S 0 -y {-1 -1} r -t 4.37725 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 125 -a 0 -S 0 -y {52 52} + -t 4.37725 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 125 -a 0 -S 0 -y {52 52} - -t 4.37725 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 125 -a 0 -S 0 -y {52 52} h -t 4.37725 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 125 -a 0 -S 0 -y {-1 -1} r -t 4.38285 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 124 -a 0 -S 0 -y {51 51} + -t 4.38285 -s 3 -d 2 -p ack -e 40 -c 0 -i 127 -a 0 -S 0 -y {51 51} - -t 4.38285 -s 3 -d 2 -p ack -e 40 -c 0 -i 127 -a 0 -S 0 -y {51 51} h -t 4.38285 -s 3 -d 2 -p ack -e 40 -c 0 -i 127 -a 0 -S 0 -y {-1 -1} r -t 4.39325 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 126 -a 0 -S 0 -y {53 53} + -t 4.39325 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 126 -a 0 -S 0 -y {53 53} - -t 4.39325 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 126 -a 0 -S 0 -y {53 53} h -t 4.39325 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 126 -a 0 -S 0 -y {-1 -1} r -t 4.39885 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 125 -a 0 -S 0 -y {52 52} + -t 4.39885 -s 3 -d 2 -p ack -e 40 -c 0 -i 128 -a 0 -S 0 -y {52 52} - -t 4.39885 -s 3 -d 2 -p ack -e 40 -c 0 -i 128 -a 0 -S 0 -y {52 52} h -t 4.39885 -s 3 -d 2 -p ack -e 40 -c 0 -i 128 -a 0 -S 0 -y {-1 -1} r -t 4.40291 -s 3 -d 2 -p ack -e 40 -c 0 -i 127 -a 0 -S 0 -y {51 51} + -t 4.40291 -s 2 -d 1 -p ack -e 40 -c 0 -i 127 -a 0 -S 0 -y {51 51} - -t 4.40291 -s 2 -d 1 -p ack -e 40 -c 0 -i 127 -a 0 -S 0 -y {51 51} h -t 4.40291 -s 2 -d 1 -p ack -e 40 -c 0 -i 127 -a 0 -S 0 -y {-1 -1} r -t 4.41485 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 126 -a 0 -S 0 -y {53 53} + -t 4.41485 -s 3 -d 2 -p ack -e 40 -c 0 -i 129 -a 0 -S 0 -y {53 53} - -t 4.41485 -s 3 -d 2 -p ack -e 40 -c 0 -i 129 -a 0 -S 0 -y {53 53} h -t 4.41485 -s 3 -d 2 -p ack -e 40 -c 0 -i 129 -a 0 -S 0 -y {-1 -1} r -t 4.41891 -s 3 -d 2 -p ack -e 40 -c 0 -i 128 -a 0 -S 0 -y {52 52} + -t 4.41891 -s 2 -d 1 -p ack -e 40 -c 0 -i 128 -a 0 -S 0 -y {52 52} - -t 4.41891 -s 2 -d 1 -p ack -e 40 -c 0 -i 128 -a 0 -S 0 -y {52 52} h -t 4.41891 -s 2 -d 1 -p ack -e 40 -c 0 -i 128 -a 0 -S 0 -y {-1 -1} r -t 4.43491 -s 3 -d 2 -p ack -e 40 -c 0 -i 129 -a 0 -S 0 -y {53 53} + -t 4.43491 -s 2 -d 1 -p ack -e 40 -c 0 -i 129 -a 0 -S 0 -y {53 53} - -t 4.43491 -s 2 -d 1 -p ack -e 40 -c 0 -i 129 -a 0 -S 0 -y {53 53} h -t 4.43491 -s 2 -d 1 -p ack -e 40 -c 0 -i 129 -a 0 -S 0 -y {-1 -1} r -t 4.50355 -s 2 -d 1 -p ack -e 40 -c 0 -i 127 -a 0 -S 0 -y {51 51} + -t 4.50355 -s 1 -d 0 -p ack -e 40 -c 0 -i 127 -a 0 -S 0 -y {51 51} - -t 4.50355 -s 1 -d 0 -p ack -e 40 -c 0 -i 127 -a 0 -S 0 -f 0 -m 1 -y {51 51} h -t 4.50355 -s 1 -d 0 -p ack -e 40 -c 0 -i 127 -a 0 -S 0 -y {-1 -1} r -t 4.51955 -s 2 -d 1 -p ack -e 40 -c 0 -i 128 -a 0 -S 0 -y {52 52} + -t 4.51955 -s 1 -d 0 -p ack -e 40 -c 0 -i 128 -a 0 -S 0 -y {52 52} - -t 4.51955 -s 1 -d 0 -p ack -e 40 -c 0 -i 128 -a 0 -S 0 -f 0 -m 1 -y {52 52} h -t 4.51955 -s 1 -d 0 -p ack -e 40 -c 0 -i 128 -a 0 -S 0 -y {-1 -1} r -t 4.52362 -s 1 -d 0 -p ack -e 40 -c 0 -i 127 -a 0 -S 0 -y {51 51} f -t 4.52361599999999964 -s 0 -d 3 -n cwnd_ -a tcp -v 3.633333 -o 3.333333 -T v + -t 4.52362 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 130 -a 0 -S 0 -f 0 -m 0 -y {54 54} - -t 4.52362 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 130 -a 0 -S 0 -y {54 54} h -t 4.52362 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 130 -a 0 -S 0 -y {-1 -1} r -t 4.53555 -s 2 -d 1 -p ack -e 40 -c 0 -i 129 -a 0 -S 0 -y {53 53} + -t 4.53555 -s 1 -d 0 -p ack -e 40 -c 0 -i 129 -a 0 -S 0 -y {53 53} - -t 4.53555 -s 1 -d 0 -p ack -e 40 -c 0 -i 129 -a 0 -S 0 -f 0 -m 1 -y {53 53} h -t 4.53555 -s 1 -d 0 -p ack -e 40 -c 0 -i 129 -a 0 -S 0 -y {-1 -1} r -t 4.53962 -s 1 -d 0 -p ack -e 40 -c 0 -i 128 -a 0 -S 0 -y {52 52} f -t 4.53961599999999965 -s 0 -d 3 -n cwnd_ -a tcp -v 3.908563 -o 3.633333 -T v + -t 4.53962 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 131 -a 0 -S 0 -f 0 -m 0 -y {55 55} - -t 4.53962 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 131 -a 0 -S 0 -y {55 55} h -t 4.53962 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 131 -a 0 -S 0 -y {-1 -1} r -t 4.54522 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 130 -a 0 -S 0 -y {54 54} + -t 4.54522 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 130 -a 0 -S 0 -y {54 54} - -t 4.54522 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 130 -a 0 -S 0 -y {54 54} h -t 4.54522 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 130 -a 0 -S 0 -y {-1 -1} r -t 4.55562 -s 1 -d 0 -p ack -e 40 -c 0 -i 129 -a 0 -S 0 -y {53 53} f -t 4.55561599999999967 -s 0 -d 3 -n cwnd_ -a tcp -v 4.164411 -o 3.908563 -T v + -t 4.55562 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 132 -a 0 -S 0 -f 0 -m 0 -y {56 56} - -t 4.55562 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 132 -a 0 -S 0 -y {56 56} h -t 4.55562 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 132 -a 0 -S 0 -y {-1 -1} + -t 4.55562 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 133 -a 0 -S 0 -f 0 -m 0 -y {57 57} - -t 4.55722 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 133 -a 0 -S 0 -y {57 57} h -t 4.55722 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 133 -a 0 -S 0 -y {-1 -1} r -t 4.56122 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 131 -a 0 -S 0 -y {55 55} + -t 4.56122 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 131 -a 0 -S 0 -y {55 55} - -t 4.56122 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 131 -a 0 -S 0 -y {55 55} h -t 4.56122 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 131 -a 0 -S 0 -y {-1 -1} r -t 4.57722 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 132 -a 0 -S 0 -y {56 56} + -t 4.57722 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 132 -a 0 -S 0 -y {56 56} - -t 4.57722 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 132 -a 0 -S 0 -y {56 56} h -t 4.57722 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 132 -a 0 -S 0 -y {-1 -1} r -t 4.57882 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 133 -a 0 -S 0 -y {57 57} + -t 4.57882 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 133 -a 0 -S 0 -y {57 57} - -t 4.59322 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 133 -a 0 -S 0 -y {57 57} h -t 4.59322 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 133 -a 0 -S 0 -y {-1 -1} r -t 4.66122 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 130 -a 0 -S 0 -y {54 54} + -t 4.66122 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 130 -a 0 -S 0 -y {54 54} - -t 4.66122 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 130 -a 0 -S 0 -y {54 54} h -t 4.66122 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 130 -a 0 -S 0 -y {-1 -1} r -t 4.67722 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 131 -a 0 -S 0 -y {55 55} + -t 4.67722 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 131 -a 0 -S 0 -y {55 55} - -t 4.67722 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 131 -a 0 -S 0 -y {55 55} h -t 4.67722 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 131 -a 0 -S 0 -y {-1 -1} r -t 4.68282 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 130 -a 0 -S 0 -y {54 54} + -t 4.68282 -s 3 -d 2 -p ack -e 40 -c 0 -i 134 -a 0 -S 0 -y {54 54} - -t 4.68282 -s 3 -d 2 -p ack -e 40 -c 0 -i 134 -a 0 -S 0 -y {54 54} h -t 4.68282 -s 3 -d 2 -p ack -e 40 -c 0 -i 134 -a 0 -S 0 -y {-1 -1} r -t 4.69322 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 132 -a 0 -S 0 -y {56 56} + -t 4.69322 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 132 -a 0 -S 0 -y {56 56} - -t 4.69322 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 132 -a 0 -S 0 -y {56 56} h -t 4.69322 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 132 -a 0 -S 0 -y {-1 -1} r -t 4.69882 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 131 -a 0 -S 0 -y {55 55} + -t 4.69882 -s 3 -d 2 -p ack -e 40 -c 0 -i 135 -a 0 -S 0 -y {55 55} - -t 4.69882 -s 3 -d 2 -p ack -e 40 -c 0 -i 135 -a 0 -S 0 -y {55 55} h -t 4.69882 -s 3 -d 2 -p ack -e 40 -c 0 -i 135 -a 0 -S 0 -y {-1 -1} r -t 4.70288 -s 3 -d 2 -p ack -e 40 -c 0 -i 134 -a 0 -S 0 -y {54 54} + -t 4.70288 -s 2 -d 1 -p ack -e 40 -c 0 -i 134 -a 0 -S 0 -y {54 54} - -t 4.70288 -s 2 -d 1 -p ack -e 40 -c 0 -i 134 -a 0 -S 0 -y {54 54} h -t 4.70288 -s 2 -d 1 -p ack -e 40 -c 0 -i 134 -a 0 -S 0 -y {-1 -1} r -t 4.70922 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 133 -a 0 -S 0 -y {57 57} + -t 4.70922 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 133 -a 0 -S 0 -y {57 57} - -t 4.70922 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 133 -a 0 -S 0 -y {57 57} h -t 4.70922 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 133 -a 0 -S 0 -y {-1 -1} r -t 4.71482 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 132 -a 0 -S 0 -y {56 56} + -t 4.71482 -s 3 -d 2 -p ack -e 40 -c 0 -i 136 -a 0 -S 0 -y {56 56} - -t 4.71482 -s 3 -d 2 -p ack -e 40 -c 0 -i 136 -a 0 -S 0 -y {56 56} h -t 4.71482 -s 3 -d 2 -p ack -e 40 -c 0 -i 136 -a 0 -S 0 -y {-1 -1} r -t 4.71888 -s 3 -d 2 -p ack -e 40 -c 0 -i 135 -a 0 -S 0 -y {55 55} + -t 4.71888 -s 2 -d 1 -p ack -e 40 -c 0 -i 135 -a 0 -S 0 -y {55 55} - -t 4.71888 -s 2 -d 1 -p ack -e 40 -c 0 -i 135 -a 0 -S 0 -y {55 55} h -t 4.71888 -s 2 -d 1 -p ack -e 40 -c 0 -i 135 -a 0 -S 0 -y {-1 -1} r -t 4.73082 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 133 -a 0 -S 0 -y {57 57} + -t 4.73082 -s 3 -d 2 -p ack -e 40 -c 0 -i 137 -a 0 -S 0 -y {57 57} - -t 4.73082 -s 3 -d 2 -p ack -e 40 -c 0 -i 137 -a 0 -S 0 -y {57 57} h -t 4.73082 -s 3 -d 2 -p ack -e 40 -c 0 -i 137 -a 0 -S 0 -y {-1 -1} r -t 4.73488 -s 3 -d 2 -p ack -e 40 -c 0 -i 136 -a 0 -S 0 -y {56 56} + -t 4.73488 -s 2 -d 1 -p ack -e 40 -c 0 -i 136 -a 0 -S 0 -y {56 56} - -t 4.73488 -s 2 -d 1 -p ack -e 40 -c 0 -i 136 -a 0 -S 0 -y {56 56} h -t 4.73488 -s 2 -d 1 -p ack -e 40 -c 0 -i 136 -a 0 -S 0 -y {-1 -1} r -t 4.75088 -s 3 -d 2 -p ack -e 40 -c 0 -i 137 -a 0 -S 0 -y {57 57} + -t 4.75088 -s 2 -d 1 -p ack -e 40 -c 0 -i 137 -a 0 -S 0 -y {57 57} - -t 4.75088 -s 2 -d 1 -p ack -e 40 -c 0 -i 137 -a 0 -S 0 -y {57 57} h -t 4.75088 -s 2 -d 1 -p ack -e 40 -c 0 -i 137 -a 0 -S 0 -y {-1 -1} r -t 4.80352 -s 2 -d 1 -p ack -e 40 -c 0 -i 134 -a 0 -S 0 -y {54 54} + -t 4.80352 -s 1 -d 0 -p ack -e 40 -c 0 -i 134 -a 0 -S 0 -y {54 54} - -t 4.80352 -s 1 -d 0 -p ack -e 40 -c 0 -i 134 -a 0 -S 0 -f 0 -m 1 -y {54 54} h -t 4.80352 -s 1 -d 0 -p ack -e 40 -c 0 -i 134 -a 0 -S 0 -y {-1 -1} r -t 4.81952 -s 2 -d 1 -p ack -e 40 -c 0 -i 135 -a 0 -S 0 -y {55 55} + -t 4.81952 -s 1 -d 0 -p ack -e 40 -c 0 -i 135 -a 0 -S 0 -y {55 55} - -t 4.81952 -s 1 -d 0 -p ack -e 40 -c 0 -i 135 -a 0 -S 0 -f 0 -m 1 -y {55 55} h -t 4.81952 -s 1 -d 0 -p ack -e 40 -c 0 -i 135 -a 0 -S 0 -y {-1 -1} r -t 4.82358 -s 1 -d 0 -p ack -e 40 -c 0 -i 134 -a 0 -S 0 -y {54 54} f -t 4.82358399999999943 -s 0 -d 3 -n cwnd_ -a tcp -v 4.404541 -o 4.164411 -T v + -t 4.82358 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 138 -a 0 -S 0 -f 0 -m 0 -y {58 58} - -t 4.82358 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 138 -a 0 -S 0 -y {58 58} h -t 4.82358 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 138 -a 0 -S 0 -y {-1 -1} r -t 4.83552 -s 2 -d 1 -p ack -e 40 -c 0 -i 136 -a 0 -S 0 -y {56 56} + -t 4.83552 -s 1 -d 0 -p ack -e 40 -c 0 -i 136 -a 0 -S 0 -y {56 56} - -t 4.83552 -s 1 -d 0 -p ack -e 40 -c 0 -i 136 -a 0 -S 0 -f 0 -m 1 -y {56 56} h -t 4.83552 -s 1 -d 0 -p ack -e 40 -c 0 -i 136 -a 0 -S 0 -y {-1 -1} r -t 4.83958 -s 1 -d 0 -p ack -e 40 -c 0 -i 135 -a 0 -S 0 -y {55 55} f -t 4.83958399999999944 -s 0 -d 3 -n cwnd_ -a tcp -v 4.631580 -o 4.404541 -T v + -t 4.83958 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 139 -a 0 -S 0 -f 0 -m 0 -y {59 59} - -t 4.83958 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 139 -a 0 -S 0 -y {59 59} h -t 4.83958 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 139 -a 0 -S 0 -y {-1 -1} r -t 4.84518 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 138 -a 0 -S 0 -y {58 58} + -t 4.84518 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 138 -a 0 -S 0 -y {58 58} - -t 4.84518 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 138 -a 0 -S 0 -y {58 58} h -t 4.84518 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 138 -a 0 -S 0 -y {-1 -1} r -t 4.85152 -s 2 -d 1 -p ack -e 40 -c 0 -i 137 -a 0 -S 0 -y {57 57} + -t 4.85152 -s 1 -d 0 -p ack -e 40 -c 0 -i 137 -a 0 -S 0 -y {57 57} - -t 4.85152 -s 1 -d 0 -p ack -e 40 -c 0 -i 137 -a 0 -S 0 -f 0 -m 1 -y {57 57} h -t 4.85152 -s 1 -d 0 -p ack -e 40 -c 0 -i 137 -a 0 -S 0 -y {-1 -1} r -t 4.85558 -s 1 -d 0 -p ack -e 40 -c 0 -i 136 -a 0 -S 0 -y {56 56} f -t 4.85558399999999946 -s 0 -d 3 -n cwnd_ -a tcp -v 4.847489 -o 4.631580 -T v + -t 4.85558 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 140 -a 0 -S 0 -f 0 -m 0 -y {60 60} - -t 4.85558 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 140 -a 0 -S 0 -y {60 60} h -t 4.85558 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 140 -a 0 -S 0 -y {-1 -1} r -t 4.86118 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 139 -a 0 -S 0 -y {59 59} + -t 4.86118 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 139 -a 0 -S 0 -y {59 59} - -t 4.86118 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 139 -a 0 -S 0 -y {59 59} h -t 4.86118 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 139 -a 0 -S 0 -y {-1 -1} r -t 4.87158 -s 1 -d 0 -p ack -e 40 -c 0 -i 137 -a 0 -S 0 -y {57 57} f -t 4.87158399999999947 -s 0 -d 3 -n cwnd_ -a tcp -v 5.053781 -o 4.847489 -T v + -t 4.87158 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 141 -a 0 -S 0 -f 0 -m 0 -y {61 61} - -t 4.87158 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 141 -a 0 -S 0 -y {61 61} h -t 4.87158 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 141 -a 0 -S 0 -y {-1 -1} + -t 4.87158 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 142 -a 0 -S 0 -f 0 -m 0 -y {62 62} - -t 4.87318 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 142 -a 0 -S 0 -y {62 62} h -t 4.87318 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 142 -a 0 -S 0 -y {-1 -1} r -t 4.87718 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 140 -a 0 -S 0 -y {60 60} + -t 4.87718 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 140 -a 0 -S 0 -y {60 60} - -t 4.87718 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 140 -a 0 -S 0 -y {60 60} h -t 4.87718 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 140 -a 0 -S 0 -y {-1 -1} r -t 4.89318 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 141 -a 0 -S 0 -y {61 61} + -t 4.89318 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 141 -a 0 -S 0 -y {61 61} - -t 4.89318 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 141 -a 0 -S 0 -y {61 61} h -t 4.89318 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 141 -a 0 -S 0 -y {-1 -1} r -t 4.89478 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 142 -a 0 -S 0 -y {62 62} + -t 4.89478 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 142 -a 0 -S 0 -y {62 62} - -t 4.90918 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 142 -a 0 -S 0 -y {62 62} h -t 4.90918 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 142 -a 0 -S 0 -y {-1 -1} r -t 4.96118 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 138 -a 0 -S 0 -y {58 58} + -t 4.96118 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 138 -a 0 -S 0 -y {58 58} - -t 4.96118 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 138 -a 0 -S 0 -y {58 58} h -t 4.96118 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 138 -a 0 -S 0 -y {-1 -1} r -t 4.97718 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 139 -a 0 -S 0 -y {59 59} + -t 4.97718 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 139 -a 0 -S 0 -y {59 59} - -t 4.97718 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 139 -a 0 -S 0 -y {59 59} h -t 4.97718 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 139 -a 0 -S 0 -y {-1 -1} r -t 4.98278 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 138 -a 0 -S 0 -y {58 58} + -t 4.98278 -s 3 -d 2 -p ack -e 40 -c 0 -i 143 -a 0 -S 0 -y {58 58} - -t 4.98278 -s 3 -d 2 -p ack -e 40 -c 0 -i 143 -a 0 -S 0 -y {58 58} h -t 4.98278 -s 3 -d 2 -p ack -e 40 -c 0 -i 143 -a 0 -S 0 -y {-1 -1} r -t 4.99318 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 140 -a 0 -S 0 -y {60 60} + -t 4.99318 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 140 -a 0 -S 0 -y {60 60} - -t 4.99318 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 140 -a 0 -S 0 -y {60 60} h -t 4.99318 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 140 -a 0 -S 0 -y {-1 -1} r -t 4.99878 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 139 -a 0 -S 0 -y {59 59} + -t 4.99878 -s 3 -d 2 -p ack -e 40 -c 0 -i 144 -a 0 -S 0 -y {59 59} - -t 4.99878 -s 3 -d 2 -p ack -e 40 -c 0 -i 144 -a 0 -S 0 -y {59 59} h -t 4.99878 -s 3 -d 2 -p ack -e 40 -c 0 -i 144 -a 0 -S 0 -y {-1 -1} r -t 5.00285 -s 3 -d 2 -p ack -e 40 -c 0 -i 143 -a 0 -S 0 -y {58 58} + -t 5.00285 -s 2 -d 1 -p ack -e 40 -c 0 -i 143 -a 0 -S 0 -y {58 58} - -t 5.00285 -s 2 -d 1 -p ack -e 40 -c 0 -i 143 -a 0 -S 0 -y {58 58} h -t 5.00285 -s 2 -d 1 -p ack -e 40 -c 0 -i 143 -a 0 -S 0 -y {-1 -1} r -t 5.00918 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 141 -a 0 -S 0 -y {61 61} + -t 5.00918 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 141 -a 0 -S 0 -y {61 61} - -t 5.00918 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 141 -a 0 -S 0 -y {61 61} h -t 5.00918 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 141 -a 0 -S 0 -y {-1 -1} r -t 5.01478 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 140 -a 0 -S 0 -y {60 60} + -t 5.01478 -s 3 -d 2 -p ack -e 40 -c 0 -i 145 -a 0 -S 0 -y {60 60} - -t 5.01478 -s 3 -d 2 -p ack -e 40 -c 0 -i 145 -a 0 -S 0 -y {60 60} h -t 5.01478 -s 3 -d 2 -p ack -e 40 -c 0 -i 145 -a 0 -S 0 -y {-1 -1} r -t 5.01885 -s 3 -d 2 -p ack -e 40 -c 0 -i 144 -a 0 -S 0 -y {59 59} + -t 5.01885 -s 2 -d 1 -p ack -e 40 -c 0 -i 144 -a 0 -S 0 -y {59 59} - -t 5.01885 -s 2 -d 1 -p ack -e 40 -c 0 -i 144 -a 0 -S 0 -y {59 59} h -t 5.01885 -s 2 -d 1 -p ack -e 40 -c 0 -i 144 -a 0 -S 0 -y {-1 -1} r -t 5.02518 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 142 -a 0 -S 0 -y {62 62} + -t 5.02518 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 142 -a 0 -S 0 -y {62 62} - -t 5.02518 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 142 -a 0 -S 0 -y {62 62} h -t 5.02518 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 142 -a 0 -S 0 -y {-1 -1} r -t 5.03078 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 141 -a 0 -S 0 -y {61 61} + -t 5.03078 -s 3 -d 2 -p ack -e 40 -c 0 -i 146 -a 0 -S 0 -y {61 61} - -t 5.03078 -s 3 -d 2 -p ack -e 40 -c 0 -i 146 -a 0 -S 0 -y {61 61} h -t 5.03078 -s 3 -d 2 -p ack -e 40 -c 0 -i 146 -a 0 -S 0 -y {-1 -1} r -t 5.03485 -s 3 -d 2 -p ack -e 40 -c 0 -i 145 -a 0 -S 0 -y {60 60} + -t 5.03485 -s 2 -d 1 -p ack -e 40 -c 0 -i 145 -a 0 -S 0 -y {60 60} - -t 5.03485 -s 2 -d 1 -p ack -e 40 -c 0 -i 145 -a 0 -S 0 -y {60 60} h -t 5.03485 -s 2 -d 1 -p ack -e 40 -c 0 -i 145 -a 0 -S 0 -y {-1 -1} r -t 5.04678 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 142 -a 0 -S 0 -y {62 62} + -t 5.04678 -s 3 -d 2 -p ack -e 40 -c 0 -i 147 -a 0 -S 0 -y {62 62} - -t 5.04678 -s 3 -d 2 -p ack -e 40 -c 0 -i 147 -a 0 -S 0 -y {62 62} h -t 5.04678 -s 3 -d 2 -p ack -e 40 -c 0 -i 147 -a 0 -S 0 -y {-1 -1} r -t 5.05085 -s 3 -d 2 -p ack -e 40 -c 0 -i 146 -a 0 -S 0 -y {61 61} + -t 5.05085 -s 2 -d 1 -p ack -e 40 -c 0 -i 146 -a 0 -S 0 -y {61 61} - -t 5.05085 -s 2 -d 1 -p ack -e 40 -c 0 -i 146 -a 0 -S 0 -y {61 61} h -t 5.05085 -s 2 -d 1 -p ack -e 40 -c 0 -i 146 -a 0 -S 0 -y {-1 -1} r -t 5.06685 -s 3 -d 2 -p ack -e 40 -c 0 -i 147 -a 0 -S 0 -y {62 62} + -t 5.06685 -s 2 -d 1 -p ack -e 40 -c 0 -i 147 -a 0 -S 0 -y {62 62} - -t 5.06685 -s 2 -d 1 -p ack -e 40 -c 0 -i 147 -a 0 -S 0 -y {62 62} h -t 5.06685 -s 2 -d 1 -p ack -e 40 -c 0 -i 147 -a 0 -S 0 -y {-1 -1} nam-1.15/edu/D1-m-decrease.tcl0000664000076400007660000000331707024407027014632 0ustar tomhnsnam# It will show how TCP adjusts its window size by multiplicative decrease # features : labeling, annotation, nam-graph, and window size monitoring # # n0 --- n1 -------------- n2 --- n3 # set ns [new Simulator] $ns trace-all [open D1-m-decrease.tr w] $ns namtrace-all [open D1-m-decrease.nam w] ### build topology with 4 nodes foreach i " 0 1 2 3 " { set n$i [$ns node] } $ns at 0.0 "$n0 label TCP" $ns at 0.0 "$n3 label TCP" $ns duplex-link $n0 $n1 5Mb 20ms DropTail $ns duplex-link $n1 $n2 0.5Mb 100ms DropTail $ns duplex-link $n2 $n3 5Mb 20ms DropTail $ns queue-limit $n1 $n2 5 $ns duplex-link-op $n0 $n1 orient right $ns duplex-link-op $n1 $n2 orient right $ns duplex-link-op $n2 $n3 orient right $ns duplex-link-op $n1 $n2 queuePos 0.5 ### set TCP variables Agent/TCP set nam_tracevar_ true Agent/TCP set window_ 20 Agent/TCP set ssthresh_ 20 ### TCP between n0 and n3 (Black) set tcp [new Agent/TCP] $ns attach-agent $n0 $tcp set sink [new Agent/TCPSink] $ns attach-agent $n3 $sink $ns connect $tcp $sink set ftp [new Application/FTP] $ftp attach-agent $tcp $ns add-agent-trace $tcp tcp $ns monitor-agent-trace $tcp $tcp tracevar cwnd_ $tcp tracevar ssthresh_ proc finish {} { global ns $ns flush-trace puts "filtering..." exec tclsh ../bin/namfilter.tcl D1-m-decrease.nam puts "running nam..." exec nam D1-m-decrease.nam & exit 0 } ### set operations $ns at 0.1 "$ftp start" $ns at 5.0 "$ftp stop" $ns at 5.1 "finish" ### add annotations $ns at 0.0 "$ns trace-annotate \"TCP with multiplicative decrease\"" $ns run nam-1.15/edu/D1-m-decrease.tr0000664000076400007660000016405706751722674014524 0ustar tomhnsnamv 0 eval {set sim_annotation {TCP with multiplicative decrease}} + 0.1 0 1 tcp 1000 ------- 0 0.0 3.0 0 0 - 0.1 0 1 tcp 1000 ------- 0 0.0 3.0 0 0 r 0.1216 0 1 tcp 1000 ------- 0 0.0 3.0 0 0 + 0.1216 1 2 tcp 1000 ------- 0 0.0 3.0 0 0 - 0.1216 1 2 tcp 1000 ------- 0 0.0 3.0 0 0 r 0.2376 1 2 tcp 1000 ------- 0 0.0 3.0 0 0 + 0.2376 2 3 tcp 1000 ------- 0 0.0 3.0 0 0 - 0.2376 2 3 tcp 1000 ------- 0 0.0 3.0 0 0 r 0.2592 2 3 tcp 1000 ------- 0 0.0 3.0 0 0 + 0.2592 3 2 ack 40 ------- 0 3.0 0.0 0 1 - 0.2592 3 2 ack 40 ------- 0 3.0 0.0 0 1 r 0.279264 3 2 ack 40 ------- 0 3.0 0.0 0 1 + 0.279264 2 1 ack 40 ------- 0 3.0 0.0 0 1 - 0.279264 2 1 ack 40 ------- 0 3.0 0.0 0 1 r 0.379904 2 1 ack 40 ------- 0 3.0 0.0 0 1 + 0.379904 1 0 ack 40 ------- 0 3.0 0.0 0 1 - 0.379904 1 0 ack 40 ------- 0 3.0 0.0 0 1 r 0.399968 1 0 ack 40 ------- 0 3.0 0.0 0 1 + 0.399968 0 1 tcp 1000 ------- 0 0.0 3.0 1 2 - 0.399968 0 1 tcp 1000 ------- 0 0.0 3.0 1 2 + 0.399968 0 1 tcp 1000 ------- 0 0.0 3.0 2 3 - 0.401568 0 1 tcp 1000 ------- 0 0.0 3.0 2 3 r 0.421568 0 1 tcp 1000 ------- 0 0.0 3.0 1 2 + 0.421568 1 2 tcp 1000 ------- 0 0.0 3.0 1 2 - 0.421568 1 2 tcp 1000 ------- 0 0.0 3.0 1 2 r 0.423168 0 1 tcp 1000 ------- 0 0.0 3.0 2 3 + 0.423168 1 2 tcp 1000 ------- 0 0.0 3.0 2 3 - 0.437568 1 2 tcp 1000 ------- 0 0.0 3.0 2 3 r 0.537568 1 2 tcp 1000 ------- 0 0.0 3.0 1 2 + 0.537568 2 3 tcp 1000 ------- 0 0.0 3.0 1 2 - 0.537568 2 3 tcp 1000 ------- 0 0.0 3.0 1 2 r 0.553568 1 2 tcp 1000 ------- 0 0.0 3.0 2 3 + 0.553568 2 3 tcp 1000 ------- 0 0.0 3.0 2 3 - 0.553568 2 3 tcp 1000 ------- 0 0.0 3.0 2 3 r 0.559168 2 3 tcp 1000 ------- 0 0.0 3.0 1 2 + 0.559168 3 2 ack 40 ------- 0 3.0 0.0 1 4 - 0.559168 3 2 ack 40 ------- 0 3.0 0.0 1 4 r 0.575168 2 3 tcp 1000 ------- 0 0.0 3.0 2 3 + 0.575168 3 2 ack 40 ------- 0 3.0 0.0 2 5 - 0.575168 3 2 ack 40 ------- 0 3.0 0.0 2 5 r 0.579232 3 2 ack 40 ------- 0 3.0 0.0 1 4 + 0.579232 2 1 ack 40 ------- 0 3.0 0.0 1 4 - 0.579232 2 1 ack 40 ------- 0 3.0 0.0 1 4 r 0.595232 3 2 ack 40 ------- 0 3.0 0.0 2 5 + 0.595232 2 1 ack 40 ------- 0 3.0 0.0 2 5 - 0.595232 2 1 ack 40 ------- 0 3.0 0.0 2 5 r 0.679872 2 1 ack 40 ------- 0 3.0 0.0 1 4 + 0.679872 1 0 ack 40 ------- 0 3.0 0.0 1 4 - 0.679872 1 0 ack 40 ------- 0 3.0 0.0 1 4 r 0.695872 2 1 ack 40 ------- 0 3.0 0.0 2 5 + 0.695872 1 0 ack 40 ------- 0 3.0 0.0 2 5 - 0.695872 1 0 ack 40 ------- 0 3.0 0.0 2 5 r 0.699936 1 0 ack 40 ------- 0 3.0 0.0 1 4 + 0.699936 0 1 tcp 1000 ------- 0 0.0 3.0 3 6 - 0.699936 0 1 tcp 1000 ------- 0 0.0 3.0 3 6 + 0.699936 0 1 tcp 1000 ------- 0 0.0 3.0 4 7 - 0.701536 0 1 tcp 1000 ------- 0 0.0 3.0 4 7 r 0.715936 1 0 ack 40 ------- 0 3.0 0.0 2 5 + 0.715936 0 1 tcp 1000 ------- 0 0.0 3.0 5 8 - 0.715936 0 1 tcp 1000 ------- 0 0.0 3.0 5 8 + 0.715936 0 1 tcp 1000 ------- 0 0.0 3.0 6 9 - 0.717536 0 1 tcp 1000 ------- 0 0.0 3.0 6 9 r 0.721536 0 1 tcp 1000 ------- 0 0.0 3.0 3 6 + 0.721536 1 2 tcp 1000 ------- 0 0.0 3.0 3 6 - 0.721536 1 2 tcp 1000 ------- 0 0.0 3.0 3 6 r 0.723136 0 1 tcp 1000 ------- 0 0.0 3.0 4 7 + 0.723136 1 2 tcp 1000 ------- 0 0.0 3.0 4 7 r 0.737536 0 1 tcp 1000 ------- 0 0.0 3.0 5 8 + 0.737536 1 2 tcp 1000 ------- 0 0.0 3.0 5 8 - 0.737536 1 2 tcp 1000 ------- 0 0.0 3.0 4 7 r 0.739136 0 1 tcp 1000 ------- 0 0.0 3.0 6 9 + 0.739136 1 2 tcp 1000 ------- 0 0.0 3.0 6 9 - 0.753536 1 2 tcp 1000 ------- 0 0.0 3.0 5 8 - 0.769536 1 2 tcp 1000 ------- 0 0.0 3.0 6 9 r 0.837536 1 2 tcp 1000 ------- 0 0.0 3.0 3 6 + 0.837536 2 3 tcp 1000 ------- 0 0.0 3.0 3 6 - 0.837536 2 3 tcp 1000 ------- 0 0.0 3.0 3 6 r 0.853536 1 2 tcp 1000 ------- 0 0.0 3.0 4 7 + 0.853536 2 3 tcp 1000 ------- 0 0.0 3.0 4 7 - 0.853536 2 3 tcp 1000 ------- 0 0.0 3.0 4 7 r 0.859136 2 3 tcp 1000 ------- 0 0.0 3.0 3 6 + 0.859136 3 2 ack 40 ------- 0 3.0 0.0 3 10 - 0.859136 3 2 ack 40 ------- 0 3.0 0.0 3 10 r 0.869536 1 2 tcp 1000 ------- 0 0.0 3.0 5 8 + 0.869536 2 3 tcp 1000 ------- 0 0.0 3.0 5 8 - 0.869536 2 3 tcp 1000 ------- 0 0.0 3.0 5 8 r 0.875136 2 3 tcp 1000 ------- 0 0.0 3.0 4 7 + 0.875136 3 2 ack 40 ------- 0 3.0 0.0 4 11 - 0.875136 3 2 ack 40 ------- 0 3.0 0.0 4 11 r 0.8792 3 2 ack 40 ------- 0 3.0 0.0 3 10 + 0.8792 2 1 ack 40 ------- 0 3.0 0.0 3 10 - 0.8792 2 1 ack 40 ------- 0 3.0 0.0 3 10 r 0.885536 1 2 tcp 1000 ------- 0 0.0 3.0 6 9 + 0.885536 2 3 tcp 1000 ------- 0 0.0 3.0 6 9 - 0.885536 2 3 tcp 1000 ------- 0 0.0 3.0 6 9 r 0.891136 2 3 tcp 1000 ------- 0 0.0 3.0 5 8 + 0.891136 3 2 ack 40 ------- 0 3.0 0.0 5 12 - 0.891136 3 2 ack 40 ------- 0 3.0 0.0 5 12 r 0.8952 3 2 ack 40 ------- 0 3.0 0.0 4 11 + 0.8952 2 1 ack 40 ------- 0 3.0 0.0 4 11 - 0.8952 2 1 ack 40 ------- 0 3.0 0.0 4 11 r 0.907136 2 3 tcp 1000 ------- 0 0.0 3.0 6 9 + 0.907136 3 2 ack 40 ------- 0 3.0 0.0 6 13 - 0.907136 3 2 ack 40 ------- 0 3.0 0.0 6 13 r 0.9112 3 2 ack 40 ------- 0 3.0 0.0 5 12 + 0.9112 2 1 ack 40 ------- 0 3.0 0.0 5 12 - 0.9112 2 1 ack 40 ------- 0 3.0 0.0 5 12 r 0.9272 3 2 ack 40 ------- 0 3.0 0.0 6 13 + 0.9272 2 1 ack 40 ------- 0 3.0 0.0 6 13 - 0.9272 2 1 ack 40 ------- 0 3.0 0.0 6 13 r 0.97984 2 1 ack 40 ------- 0 3.0 0.0 3 10 + 0.97984 1 0 ack 40 ------- 0 3.0 0.0 3 10 - 0.97984 1 0 ack 40 ------- 0 3.0 0.0 3 10 r 0.99584 2 1 ack 40 ------- 0 3.0 0.0 4 11 + 0.99584 1 0 ack 40 ------- 0 3.0 0.0 4 11 - 0.99584 1 0 ack 40 ------- 0 3.0 0.0 4 11 r 0.999904 1 0 ack 40 ------- 0 3.0 0.0 3 10 + 0.999904 0 1 tcp 1000 ------- 0 0.0 3.0 7 14 - 0.999904 0 1 tcp 1000 ------- 0 0.0 3.0 7 14 + 0.999904 0 1 tcp 1000 ------- 0 0.0 3.0 8 15 - 1.0015 0 1 tcp 1000 ------- 0 0.0 3.0 8 15 r 1.01184 2 1 ack 40 ------- 0 3.0 0.0 5 12 + 1.01184 1 0 ack 40 ------- 0 3.0 0.0 5 12 - 1.01184 1 0 ack 40 ------- 0 3.0 0.0 5 12 r 1.0159 1 0 ack 40 ------- 0 3.0 0.0 4 11 + 1.0159 0 1 tcp 1000 ------- 0 0.0 3.0 9 16 - 1.0159 0 1 tcp 1000 ------- 0 0.0 3.0 9 16 + 1.0159 0 1 tcp 1000 ------- 0 0.0 3.0 10 17 - 1.0175 0 1 tcp 1000 ------- 0 0.0 3.0 10 17 r 1.0215 0 1 tcp 1000 ------- 0 0.0 3.0 7 14 + 1.0215 1 2 tcp 1000 ------- 0 0.0 3.0 7 14 - 1.0215 1 2 tcp 1000 ------- 0 0.0 3.0 7 14 r 1.0231 0 1 tcp 1000 ------- 0 0.0 3.0 8 15 + 1.0231 1 2 tcp 1000 ------- 0 0.0 3.0 8 15 r 1.02784 2 1 ack 40 ------- 0 3.0 0.0 6 13 + 1.02784 1 0 ack 40 ------- 0 3.0 0.0 6 13 - 1.02784 1 0 ack 40 ------- 0 3.0 0.0 6 13 r 1.0319 1 0 ack 40 ------- 0 3.0 0.0 5 12 + 1.0319 0 1 tcp 1000 ------- 0 0.0 3.0 11 18 - 1.0319 0 1 tcp 1000 ------- 0 0.0 3.0 11 18 + 1.0319 0 1 tcp 1000 ------- 0 0.0 3.0 12 19 - 1.0335 0 1 tcp 1000 ------- 0 0.0 3.0 12 19 - 1.0375 1 2 tcp 1000 ------- 0 0.0 3.0 8 15 r 1.0375 0 1 tcp 1000 ------- 0 0.0 3.0 9 16 + 1.0375 1 2 tcp 1000 ------- 0 0.0 3.0 9 16 r 1.0391 0 1 tcp 1000 ------- 0 0.0 3.0 10 17 + 1.0391 1 2 tcp 1000 ------- 0 0.0 3.0 10 17 r 1.0479 1 0 ack 40 ------- 0 3.0 0.0 6 13 + 1.0479 0 1 tcp 1000 ------- 0 0.0 3.0 13 20 - 1.0479 0 1 tcp 1000 ------- 0 0.0 3.0 13 20 + 1.0479 0 1 tcp 1000 ------- 0 0.0 3.0 14 21 - 1.0495 0 1 tcp 1000 ------- 0 0.0 3.0 14 21 - 1.0535 1 2 tcp 1000 ------- 0 0.0 3.0 9 16 r 1.0535 0 1 tcp 1000 ------- 0 0.0 3.0 11 18 + 1.0535 1 2 tcp 1000 ------- 0 0.0 3.0 11 18 r 1.0551 0 1 tcp 1000 ------- 0 0.0 3.0 12 19 + 1.0551 1 2 tcp 1000 ------- 0 0.0 3.0 12 19 - 1.0695 1 2 tcp 1000 ------- 0 0.0 3.0 10 17 r 1.0695 0 1 tcp 1000 ------- 0 0.0 3.0 13 20 + 1.0695 1 2 tcp 1000 ------- 0 0.0 3.0 13 20 r 1.0711 0 1 tcp 1000 ------- 0 0.0 3.0 14 21 + 1.0711 1 2 tcp 1000 ------- 0 0.0 3.0 14 21 - 1.0855 1 2 tcp 1000 ------- 0 0.0 3.0 11 18 - 1.1015 1 2 tcp 1000 ------- 0 0.0 3.0 12 19 - 1.1175 1 2 tcp 1000 ------- 0 0.0 3.0 13 20 - 1.1335 1 2 tcp 1000 ------- 0 0.0 3.0 14 21 r 1.1375 1 2 tcp 1000 ------- 0 0.0 3.0 7 14 + 1.1375 2 3 tcp 1000 ------- 0 0.0 3.0 7 14 - 1.1375 2 3 tcp 1000 ------- 0 0.0 3.0 7 14 r 1.1535 1 2 tcp 1000 ------- 0 0.0 3.0 8 15 + 1.1535 2 3 tcp 1000 ------- 0 0.0 3.0 8 15 - 1.1535 2 3 tcp 1000 ------- 0 0.0 3.0 8 15 r 1.1591 2 3 tcp 1000 ------- 0 0.0 3.0 7 14 + 1.1591 3 2 ack 40 ------- 0 3.0 0.0 7 22 - 1.1591 3 2 ack 40 ------- 0 3.0 0.0 7 22 r 1.1695 1 2 tcp 1000 ------- 0 0.0 3.0 9 16 + 1.1695 2 3 tcp 1000 ------- 0 0.0 3.0 9 16 - 1.1695 2 3 tcp 1000 ------- 0 0.0 3.0 9 16 r 1.1751 2 3 tcp 1000 ------- 0 0.0 3.0 8 15 + 1.1751 3 2 ack 40 ------- 0 3.0 0.0 8 23 - 1.1751 3 2 ack 40 ------- 0 3.0 0.0 8 23 r 1.17917 3 2 ack 40 ------- 0 3.0 0.0 7 22 + 1.17917 2 1 ack 40 ------- 0 3.0 0.0 7 22 - 1.17917 2 1 ack 40 ------- 0 3.0 0.0 7 22 r 1.1855 1 2 tcp 1000 ------- 0 0.0 3.0 10 17 + 1.1855 2 3 tcp 1000 ------- 0 0.0 3.0 10 17 - 1.1855 2 3 tcp 1000 ------- 0 0.0 3.0 10 17 r 1.1911 2 3 tcp 1000 ------- 0 0.0 3.0 9 16 + 1.1911 3 2 ack 40 ------- 0 3.0 0.0 9 24 - 1.1911 3 2 ack 40 ------- 0 3.0 0.0 9 24 r 1.19517 3 2 ack 40 ------- 0 3.0 0.0 8 23 + 1.19517 2 1 ack 40 ------- 0 3.0 0.0 8 23 - 1.19517 2 1 ack 40 ------- 0 3.0 0.0 8 23 r 1.2015 1 2 tcp 1000 ------- 0 0.0 3.0 11 18 + 1.2015 2 3 tcp 1000 ------- 0 0.0 3.0 11 18 - 1.2015 2 3 tcp 1000 ------- 0 0.0 3.0 11 18 r 1.2071 2 3 tcp 1000 ------- 0 0.0 3.0 10 17 + 1.2071 3 2 ack 40 ------- 0 3.0 0.0 10 25 - 1.2071 3 2 ack 40 ------- 0 3.0 0.0 10 25 r 1.21117 3 2 ack 40 ------- 0 3.0 0.0 9 24 + 1.21117 2 1 ack 40 ------- 0 3.0 0.0 9 24 - 1.21117 2 1 ack 40 ------- 0 3.0 0.0 9 24 r 1.2175 1 2 tcp 1000 ------- 0 0.0 3.0 12 19 + 1.2175 2 3 tcp 1000 ------- 0 0.0 3.0 12 19 - 1.2175 2 3 tcp 1000 ------- 0 0.0 3.0 12 19 r 1.2231 2 3 tcp 1000 ------- 0 0.0 3.0 11 18 + 1.2231 3 2 ack 40 ------- 0 3.0 0.0 11 26 - 1.2231 3 2 ack 40 ------- 0 3.0 0.0 11 26 r 1.22717 3 2 ack 40 ------- 0 3.0 0.0 10 25 + 1.22717 2 1 ack 40 ------- 0 3.0 0.0 10 25 - 1.22717 2 1 ack 40 ------- 0 3.0 0.0 10 25 r 1.2335 1 2 tcp 1000 ------- 0 0.0 3.0 13 20 + 1.2335 2 3 tcp 1000 ------- 0 0.0 3.0 13 20 - 1.2335 2 3 tcp 1000 ------- 0 0.0 3.0 13 20 r 1.2391 2 3 tcp 1000 ------- 0 0.0 3.0 12 19 + 1.2391 3 2 ack 40 ------- 0 3.0 0.0 12 27 - 1.2391 3 2 ack 40 ------- 0 3.0 0.0 12 27 r 1.24317 3 2 ack 40 ------- 0 3.0 0.0 11 26 + 1.24317 2 1 ack 40 ------- 0 3.0 0.0 11 26 - 1.24317 2 1 ack 40 ------- 0 3.0 0.0 11 26 r 1.2495 1 2 tcp 1000 ------- 0 0.0 3.0 14 21 + 1.2495 2 3 tcp 1000 ------- 0 0.0 3.0 14 21 - 1.2495 2 3 tcp 1000 ------- 0 0.0 3.0 14 21 r 1.2551 2 3 tcp 1000 ------- 0 0.0 3.0 13 20 + 1.2551 3 2 ack 40 ------- 0 3.0 0.0 13 28 - 1.2551 3 2 ack 40 ------- 0 3.0 0.0 13 28 r 1.25917 3 2 ack 40 ------- 0 3.0 0.0 12 27 + 1.25917 2 1 ack 40 ------- 0 3.0 0.0 12 27 - 1.25917 2 1 ack 40 ------- 0 3.0 0.0 12 27 r 1.2711 2 3 tcp 1000 ------- 0 0.0 3.0 14 21 + 1.2711 3 2 ack 40 ------- 0 3.0 0.0 14 29 - 1.2711 3 2 ack 40 ------- 0 3.0 0.0 14 29 r 1.27517 3 2 ack 40 ------- 0 3.0 0.0 13 28 + 1.27517 2 1 ack 40 ------- 0 3.0 0.0 13 28 - 1.27517 2 1 ack 40 ------- 0 3.0 0.0 13 28 r 1.27981 2 1 ack 40 ------- 0 3.0 0.0 7 22 + 1.27981 1 0 ack 40 ------- 0 3.0 0.0 7 22 - 1.27981 1 0 ack 40 ------- 0 3.0 0.0 7 22 r 1.29117 3 2 ack 40 ------- 0 3.0 0.0 14 29 + 1.29117 2 1 ack 40 ------- 0 3.0 0.0 14 29 - 1.29117 2 1 ack 40 ------- 0 3.0 0.0 14 29 r 1.29581 2 1 ack 40 ------- 0 3.0 0.0 8 23 + 1.29581 1 0 ack 40 ------- 0 3.0 0.0 8 23 - 1.29581 1 0 ack 40 ------- 0 3.0 0.0 8 23 r 1.29987 1 0 ack 40 ------- 0 3.0 0.0 7 22 + 1.29987 0 1 tcp 1000 ------- 0 0.0 3.0 15 30 - 1.29987 0 1 tcp 1000 ------- 0 0.0 3.0 15 30 + 1.29987 0 1 tcp 1000 ------- 0 0.0 3.0 16 31 - 1.30147 0 1 tcp 1000 ------- 0 0.0 3.0 16 31 r 1.31181 2 1 ack 40 ------- 0 3.0 0.0 9 24 + 1.31181 1 0 ack 40 ------- 0 3.0 0.0 9 24 - 1.31181 1 0 ack 40 ------- 0 3.0 0.0 9 24 r 1.31587 1 0 ack 40 ------- 0 3.0 0.0 8 23 + 1.31587 0 1 tcp 1000 ------- 0 0.0 3.0 17 32 - 1.31587 0 1 tcp 1000 ------- 0 0.0 3.0 17 32 + 1.31587 0 1 tcp 1000 ------- 0 0.0 3.0 18 33 - 1.31747 0 1 tcp 1000 ------- 0 0.0 3.0 18 33 r 1.32147 0 1 tcp 1000 ------- 0 0.0 3.0 15 30 + 1.32147 1 2 tcp 1000 ------- 0 0.0 3.0 15 30 - 1.32147 1 2 tcp 1000 ------- 0 0.0 3.0 15 30 r 1.32307 0 1 tcp 1000 ------- 0 0.0 3.0 16 31 + 1.32307 1 2 tcp 1000 ------- 0 0.0 3.0 16 31 r 1.32781 2 1 ack 40 ------- 0 3.0 0.0 10 25 + 1.32781 1 0 ack 40 ------- 0 3.0 0.0 10 25 - 1.32781 1 0 ack 40 ------- 0 3.0 0.0 10 25 r 1.33187 1 0 ack 40 ------- 0 3.0 0.0 9 24 + 1.33187 0 1 tcp 1000 ------- 0 0.0 3.0 19 34 - 1.33187 0 1 tcp 1000 ------- 0 0.0 3.0 19 34 + 1.33187 0 1 tcp 1000 ------- 0 0.0 3.0 20 35 - 1.33347 0 1 tcp 1000 ------- 0 0.0 3.0 20 35 r 1.33747 0 1 tcp 1000 ------- 0 0.0 3.0 17 32 + 1.33747 1 2 tcp 1000 ------- 0 0.0 3.0 17 32 - 1.33747 1 2 tcp 1000 ------- 0 0.0 3.0 16 31 r 1.33907 0 1 tcp 1000 ------- 0 0.0 3.0 18 33 + 1.33907 1 2 tcp 1000 ------- 0 0.0 3.0 18 33 r 1.34381 2 1 ack 40 ------- 0 3.0 0.0 11 26 + 1.34381 1 0 ack 40 ------- 0 3.0 0.0 11 26 - 1.34381 1 0 ack 40 ------- 0 3.0 0.0 11 26 r 1.34787 1 0 ack 40 ------- 0 3.0 0.0 10 25 + 1.34787 0 1 tcp 1000 ------- 0 0.0 3.0 21 36 - 1.34787 0 1 tcp 1000 ------- 0 0.0 3.0 21 36 + 1.34787 0 1 tcp 1000 ------- 0 0.0 3.0 22 37 - 1.34947 0 1 tcp 1000 ------- 0 0.0 3.0 22 37 r 1.35347 0 1 tcp 1000 ------- 0 0.0 3.0 19 34 + 1.35347 1 2 tcp 1000 ------- 0 0.0 3.0 19 34 - 1.35347 1 2 tcp 1000 ------- 0 0.0 3.0 17 32 r 1.35507 0 1 tcp 1000 ------- 0 0.0 3.0 20 35 + 1.35507 1 2 tcp 1000 ------- 0 0.0 3.0 20 35 r 1.35981 2 1 ack 40 ------- 0 3.0 0.0 12 27 + 1.35981 1 0 ack 40 ------- 0 3.0 0.0 12 27 - 1.35981 1 0 ack 40 ------- 0 3.0 0.0 12 27 r 1.36387 1 0 ack 40 ------- 0 3.0 0.0 11 26 + 1.36387 0 1 tcp 1000 ------- 0 0.0 3.0 23 38 - 1.36387 0 1 tcp 1000 ------- 0 0.0 3.0 23 38 + 1.36387 0 1 tcp 1000 ------- 0 0.0 3.0 24 39 - 1.36547 0 1 tcp 1000 ------- 0 0.0 3.0 24 39 r 1.36947 0 1 tcp 1000 ------- 0 0.0 3.0 21 36 + 1.36947 1 2 tcp 1000 ------- 0 0.0 3.0 21 36 - 1.36947 1 2 tcp 1000 ------- 0 0.0 3.0 18 33 r 1.37107 0 1 tcp 1000 ------- 0 0.0 3.0 22 37 + 1.37107 1 2 tcp 1000 ------- 0 0.0 3.0 22 37 r 1.37581 2 1 ack 40 ------- 0 3.0 0.0 13 28 + 1.37581 1 0 ack 40 ------- 0 3.0 0.0 13 28 - 1.37581 1 0 ack 40 ------- 0 3.0 0.0 13 28 r 1.37987 1 0 ack 40 ------- 0 3.0 0.0 12 27 + 1.37987 0 1 tcp 1000 ------- 0 0.0 3.0 25 40 - 1.37987 0 1 tcp 1000 ------- 0 0.0 3.0 25 40 + 1.37987 0 1 tcp 1000 ------- 0 0.0 3.0 26 41 - 1.38147 0 1 tcp 1000 ------- 0 0.0 3.0 26 41 r 1.38547 0 1 tcp 1000 ------- 0 0.0 3.0 23 38 + 1.38547 1 2 tcp 1000 ------- 0 0.0 3.0 23 38 d 1.38547 1 2 tcp 1000 ------- 0 0.0 3.0 23 38 - 1.38547 1 2 tcp 1000 ------- 0 0.0 3.0 19 34 r 1.38707 0 1 tcp 1000 ------- 0 0.0 3.0 24 39 + 1.38707 1 2 tcp 1000 ------- 0 0.0 3.0 24 39 r 1.39181 2 1 ack 40 ------- 0 3.0 0.0 14 29 + 1.39181 1 0 ack 40 ------- 0 3.0 0.0 14 29 - 1.39181 1 0 ack 40 ------- 0 3.0 0.0 14 29 r 1.39587 1 0 ack 40 ------- 0 3.0 0.0 13 28 + 1.39587 0 1 tcp 1000 ------- 0 0.0 3.0 27 42 - 1.39587 0 1 tcp 1000 ------- 0 0.0 3.0 27 42 + 1.39587 0 1 tcp 1000 ------- 0 0.0 3.0 28 43 - 1.39747 0 1 tcp 1000 ------- 0 0.0 3.0 28 43 r 1.40147 0 1 tcp 1000 ------- 0 0.0 3.0 25 40 + 1.40147 1 2 tcp 1000 ------- 0 0.0 3.0 25 40 d 1.40147 1 2 tcp 1000 ------- 0 0.0 3.0 25 40 - 1.40147 1 2 tcp 1000 ------- 0 0.0 3.0 20 35 r 1.40307 0 1 tcp 1000 ------- 0 0.0 3.0 26 41 + 1.40307 1 2 tcp 1000 ------- 0 0.0 3.0 26 41 r 1.41187 1 0 ack 40 ------- 0 3.0 0.0 14 29 + 1.41187 0 1 tcp 1000 ------- 0 0.0 3.0 29 44 - 1.41187 0 1 tcp 1000 ------- 0 0.0 3.0 29 44 + 1.41187 0 1 tcp 1000 ------- 0 0.0 3.0 30 45 - 1.41347 0 1 tcp 1000 ------- 0 0.0 3.0 30 45 r 1.41747 0 1 tcp 1000 ------- 0 0.0 3.0 27 42 + 1.41747 1 2 tcp 1000 ------- 0 0.0 3.0 27 42 d 1.41747 1 2 tcp 1000 ------- 0 0.0 3.0 27 42 - 1.41747 1 2 tcp 1000 ------- 0 0.0 3.0 21 36 r 1.41907 0 1 tcp 1000 ------- 0 0.0 3.0 28 43 + 1.41907 1 2 tcp 1000 ------- 0 0.0 3.0 28 43 r 1.43347 0 1 tcp 1000 ------- 0 0.0 3.0 29 44 + 1.43347 1 2 tcp 1000 ------- 0 0.0 3.0 29 44 d 1.43347 1 2 tcp 1000 ------- 0 0.0 3.0 29 44 - 1.43347 1 2 tcp 1000 ------- 0 0.0 3.0 22 37 r 1.43507 0 1 tcp 1000 ------- 0 0.0 3.0 30 45 + 1.43507 1 2 tcp 1000 ------- 0 0.0 3.0 30 45 r 1.43747 1 2 tcp 1000 ------- 0 0.0 3.0 15 30 + 1.43747 2 3 tcp 1000 ------- 0 0.0 3.0 15 30 - 1.43747 2 3 tcp 1000 ------- 0 0.0 3.0 15 30 - 1.44947 1 2 tcp 1000 ------- 0 0.0 3.0 24 39 r 1.45347 1 2 tcp 1000 ------- 0 0.0 3.0 16 31 + 1.45347 2 3 tcp 1000 ------- 0 0.0 3.0 16 31 - 1.45347 2 3 tcp 1000 ------- 0 0.0 3.0 16 31 r 1.45907 2 3 tcp 1000 ------- 0 0.0 3.0 15 30 + 1.45907 3 2 ack 40 ------- 0 3.0 0.0 15 46 - 1.45907 3 2 ack 40 ------- 0 3.0 0.0 15 46 - 1.46547 1 2 tcp 1000 ------- 0 0.0 3.0 26 41 r 1.46947 1 2 tcp 1000 ------- 0 0.0 3.0 17 32 + 1.46947 2 3 tcp 1000 ------- 0 0.0 3.0 17 32 - 1.46947 2 3 tcp 1000 ------- 0 0.0 3.0 17 32 r 1.47507 2 3 tcp 1000 ------- 0 0.0 3.0 16 31 + 1.47507 3 2 ack 40 ------- 0 3.0 0.0 16 47 - 1.47507 3 2 ack 40 ------- 0 3.0 0.0 16 47 r 1.47914 3 2 ack 40 ------- 0 3.0 0.0 15 46 + 1.47914 2 1 ack 40 ------- 0 3.0 0.0 15 46 - 1.47914 2 1 ack 40 ------- 0 3.0 0.0 15 46 - 1.48147 1 2 tcp 1000 ------- 0 0.0 3.0 28 43 r 1.48547 1 2 tcp 1000 ------- 0 0.0 3.0 18 33 + 1.48547 2 3 tcp 1000 ------- 0 0.0 3.0 18 33 - 1.48547 2 3 tcp 1000 ------- 0 0.0 3.0 18 33 r 1.49107 2 3 tcp 1000 ------- 0 0.0 3.0 17 32 + 1.49107 3 2 ack 40 ------- 0 3.0 0.0 17 48 - 1.49107 3 2 ack 40 ------- 0 3.0 0.0 17 48 r 1.49514 3 2 ack 40 ------- 0 3.0 0.0 16 47 + 1.49514 2 1 ack 40 ------- 0 3.0 0.0 16 47 - 1.49514 2 1 ack 40 ------- 0 3.0 0.0 16 47 - 1.49747 1 2 tcp 1000 ------- 0 0.0 3.0 30 45 r 1.50147 1 2 tcp 1000 ------- 0 0.0 3.0 19 34 + 1.50147 2 3 tcp 1000 ------- 0 0.0 3.0 19 34 - 1.50147 2 3 tcp 1000 ------- 0 0.0 3.0 19 34 r 1.50707 2 3 tcp 1000 ------- 0 0.0 3.0 18 33 + 1.50707 3 2 ack 40 ------- 0 3.0 0.0 18 49 - 1.50707 3 2 ack 40 ------- 0 3.0 0.0 18 49 r 1.51114 3 2 ack 40 ------- 0 3.0 0.0 17 48 + 1.51114 2 1 ack 40 ------- 0 3.0 0.0 17 48 - 1.51114 2 1 ack 40 ------- 0 3.0 0.0 17 48 r 1.51747 1 2 tcp 1000 ------- 0 0.0 3.0 20 35 + 1.51747 2 3 tcp 1000 ------- 0 0.0 3.0 20 35 - 1.51747 2 3 tcp 1000 ------- 0 0.0 3.0 20 35 r 1.52307 2 3 tcp 1000 ------- 0 0.0 3.0 19 34 + 1.52307 3 2 ack 40 ------- 0 3.0 0.0 19 50 - 1.52307 3 2 ack 40 ------- 0 3.0 0.0 19 50 r 1.52714 3 2 ack 40 ------- 0 3.0 0.0 18 49 + 1.52714 2 1 ack 40 ------- 0 3.0 0.0 18 49 - 1.52714 2 1 ack 40 ------- 0 3.0 0.0 18 49 r 1.53347 1 2 tcp 1000 ------- 0 0.0 3.0 21 36 + 1.53347 2 3 tcp 1000 ------- 0 0.0 3.0 21 36 - 1.53347 2 3 tcp 1000 ------- 0 0.0 3.0 21 36 r 1.53907 2 3 tcp 1000 ------- 0 0.0 3.0 20 35 + 1.53907 3 2 ack 40 ------- 0 3.0 0.0 20 51 - 1.53907 3 2 ack 40 ------- 0 3.0 0.0 20 51 r 1.54314 3 2 ack 40 ------- 0 3.0 0.0 19 50 + 1.54314 2 1 ack 40 ------- 0 3.0 0.0 19 50 - 1.54314 2 1 ack 40 ------- 0 3.0 0.0 19 50 r 1.54947 1 2 tcp 1000 ------- 0 0.0 3.0 22 37 + 1.54947 2 3 tcp 1000 ------- 0 0.0 3.0 22 37 - 1.54947 2 3 tcp 1000 ------- 0 0.0 3.0 22 37 r 1.55507 2 3 tcp 1000 ------- 0 0.0 3.0 21 36 + 1.55507 3 2 ack 40 ------- 0 3.0 0.0 21 52 - 1.55507 3 2 ack 40 ------- 0 3.0 0.0 21 52 r 1.55914 3 2 ack 40 ------- 0 3.0 0.0 20 51 + 1.55914 2 1 ack 40 ------- 0 3.0 0.0 20 51 - 1.55914 2 1 ack 40 ------- 0 3.0 0.0 20 51 r 1.56547 1 2 tcp 1000 ------- 0 0.0 3.0 24 39 + 1.56547 2 3 tcp 1000 ------- 0 0.0 3.0 24 39 - 1.56547 2 3 tcp 1000 ------- 0 0.0 3.0 24 39 r 1.57107 2 3 tcp 1000 ------- 0 0.0 3.0 22 37 + 1.57107 3 2 ack 40 ------- 0 3.0 0.0 22 53 - 1.57107 3 2 ack 40 ------- 0 3.0 0.0 22 53 r 1.57514 3 2 ack 40 ------- 0 3.0 0.0 21 52 + 1.57514 2 1 ack 40 ------- 0 3.0 0.0 21 52 - 1.57514 2 1 ack 40 ------- 0 3.0 0.0 21 52 r 1.57978 2 1 ack 40 ------- 0 3.0 0.0 15 46 + 1.57978 1 0 ack 40 ------- 0 3.0 0.0 15 46 - 1.57978 1 0 ack 40 ------- 0 3.0 0.0 15 46 r 1.58147 1 2 tcp 1000 ------- 0 0.0 3.0 26 41 + 1.58147 2 3 tcp 1000 ------- 0 0.0 3.0 26 41 - 1.58147 2 3 tcp 1000 ------- 0 0.0 3.0 26 41 r 1.58707 2 3 tcp 1000 ------- 0 0.0 3.0 24 39 + 1.58707 3 2 ack 40 ------- 0 3.0 0.0 22 54 - 1.58707 3 2 ack 40 ------- 0 3.0 0.0 22 54 r 1.59114 3 2 ack 40 ------- 0 3.0 0.0 22 53 + 1.59114 2 1 ack 40 ------- 0 3.0 0.0 22 53 - 1.59114 2 1 ack 40 ------- 0 3.0 0.0 22 53 r 1.59578 2 1 ack 40 ------- 0 3.0 0.0 16 47 + 1.59578 1 0 ack 40 ------- 0 3.0 0.0 16 47 - 1.59578 1 0 ack 40 ------- 0 3.0 0.0 16 47 r 1.59747 1 2 tcp 1000 ------- 0 0.0 3.0 28 43 + 1.59747 2 3 tcp 1000 ------- 0 0.0 3.0 28 43 - 1.59747 2 3 tcp 1000 ------- 0 0.0 3.0 28 43 r 1.59984 1 0 ack 40 ------- 0 3.0 0.0 15 46 + 1.59984 0 1 tcp 1000 ------- 0 0.0 3.0 31 55 - 1.59984 0 1 tcp 1000 ------- 0 0.0 3.0 31 55 + 1.59984 0 1 tcp 1000 ------- 0 0.0 3.0 32 56 - 1.60144 0 1 tcp 1000 ------- 0 0.0 3.0 32 56 r 1.60307 2 3 tcp 1000 ------- 0 0.0 3.0 26 41 + 1.60307 3 2 ack 40 ------- 0 3.0 0.0 22 57 - 1.60307 3 2 ack 40 ------- 0 3.0 0.0 22 57 r 1.60714 3 2 ack 40 ------- 0 3.0 0.0 22 54 + 1.60714 2 1 ack 40 ------- 0 3.0 0.0 22 54 - 1.60714 2 1 ack 40 ------- 0 3.0 0.0 22 54 r 1.61178 2 1 ack 40 ------- 0 3.0 0.0 17 48 + 1.61178 1 0 ack 40 ------- 0 3.0 0.0 17 48 - 1.61178 1 0 ack 40 ------- 0 3.0 0.0 17 48 r 1.61347 1 2 tcp 1000 ------- 0 0.0 3.0 30 45 + 1.61347 2 3 tcp 1000 ------- 0 0.0 3.0 30 45 - 1.61347 2 3 tcp 1000 ------- 0 0.0 3.0 30 45 r 1.61584 1 0 ack 40 ------- 0 3.0 0.0 16 47 + 1.61584 0 1 tcp 1000 ------- 0 0.0 3.0 33 58 - 1.61584 0 1 tcp 1000 ------- 0 0.0 3.0 33 58 + 1.61584 0 1 tcp 1000 ------- 0 0.0 3.0 34 59 - 1.61744 0 1 tcp 1000 ------- 0 0.0 3.0 34 59 r 1.61907 2 3 tcp 1000 ------- 0 0.0 3.0 28 43 + 1.61907 3 2 ack 40 ------- 0 3.0 0.0 22 60 - 1.61907 3 2 ack 40 ------- 0 3.0 0.0 22 60 r 1.62144 0 1 tcp 1000 ------- 0 0.0 3.0 31 55 + 1.62144 1 2 tcp 1000 ------- 0 0.0 3.0 31 55 - 1.62144 1 2 tcp 1000 ------- 0 0.0 3.0 31 55 r 1.62304 0 1 tcp 1000 ------- 0 0.0 3.0 32 56 + 1.62304 1 2 tcp 1000 ------- 0 0.0 3.0 32 56 r 1.62314 3 2 ack 40 ------- 0 3.0 0.0 22 57 + 1.62314 2 1 ack 40 ------- 0 3.0 0.0 22 57 - 1.62314 2 1 ack 40 ------- 0 3.0 0.0 22 57 r 1.62778 2 1 ack 40 ------- 0 3.0 0.0 18 49 + 1.62778 1 0 ack 40 ------- 0 3.0 0.0 18 49 - 1.62778 1 0 ack 40 ------- 0 3.0 0.0 18 49 r 1.63184 1 0 ack 40 ------- 0 3.0 0.0 17 48 + 1.63184 0 1 tcp 1000 ------- 0 0.0 3.0 35 61 - 1.63184 0 1 tcp 1000 ------- 0 0.0 3.0 35 61 + 1.63184 0 1 tcp 1000 ------- 0 0.0 3.0 36 62 - 1.63344 0 1 tcp 1000 ------- 0 0.0 3.0 36 62 r 1.63507 2 3 tcp 1000 ------- 0 0.0 3.0 30 45 + 1.63507 3 2 ack 40 ------- 0 3.0 0.0 22 63 - 1.63507 3 2 ack 40 ------- 0 3.0 0.0 22 63 r 1.63744 0 1 tcp 1000 ------- 0 0.0 3.0 33 58 + 1.63744 1 2 tcp 1000 ------- 0 0.0 3.0 33 58 - 1.63744 1 2 tcp 1000 ------- 0 0.0 3.0 32 56 r 1.63904 0 1 tcp 1000 ------- 0 0.0 3.0 34 59 + 1.63904 1 2 tcp 1000 ------- 0 0.0 3.0 34 59 r 1.63914 3 2 ack 40 ------- 0 3.0 0.0 22 60 + 1.63914 2 1 ack 40 ------- 0 3.0 0.0 22 60 - 1.63914 2 1 ack 40 ------- 0 3.0 0.0 22 60 r 1.64378 2 1 ack 40 ------- 0 3.0 0.0 19 50 + 1.64378 1 0 ack 40 ------- 0 3.0 0.0 19 50 - 1.64378 1 0 ack 40 ------- 0 3.0 0.0 19 50 r 1.64784 1 0 ack 40 ------- 0 3.0 0.0 18 49 + 1.64784 0 1 tcp 1000 ------- 0 0.0 3.0 37 64 - 1.64784 0 1 tcp 1000 ------- 0 0.0 3.0 37 64 + 1.64784 0 1 tcp 1000 ------- 0 0.0 3.0 38 65 - 1.64944 0 1 tcp 1000 ------- 0 0.0 3.0 38 65 r 1.65344 0 1 tcp 1000 ------- 0 0.0 3.0 35 61 + 1.65344 1 2 tcp 1000 ------- 0 0.0 3.0 35 61 - 1.65344 1 2 tcp 1000 ------- 0 0.0 3.0 33 58 r 1.65504 0 1 tcp 1000 ------- 0 0.0 3.0 36 62 + 1.65504 1 2 tcp 1000 ------- 0 0.0 3.0 36 62 r 1.65514 3 2 ack 40 ------- 0 3.0 0.0 22 63 + 1.65514 2 1 ack 40 ------- 0 3.0 0.0 22 63 - 1.65514 2 1 ack 40 ------- 0 3.0 0.0 22 63 r 1.65978 2 1 ack 40 ------- 0 3.0 0.0 20 51 + 1.65978 1 0 ack 40 ------- 0 3.0 0.0 20 51 - 1.65978 1 0 ack 40 ------- 0 3.0 0.0 20 51 r 1.66384 1 0 ack 40 ------- 0 3.0 0.0 19 50 + 1.66384 0 1 tcp 1000 ------- 0 0.0 3.0 39 66 - 1.66384 0 1 tcp 1000 ------- 0 0.0 3.0 39 66 r 1.66944 0 1 tcp 1000 ------- 0 0.0 3.0 37 64 + 1.66944 1 2 tcp 1000 ------- 0 0.0 3.0 37 64 - 1.66944 1 2 tcp 1000 ------- 0 0.0 3.0 34 59 r 1.67104 0 1 tcp 1000 ------- 0 0.0 3.0 38 65 + 1.67104 1 2 tcp 1000 ------- 0 0.0 3.0 38 65 r 1.67578 2 1 ack 40 ------- 0 3.0 0.0 21 52 + 1.67578 1 0 ack 40 ------- 0 3.0 0.0 21 52 - 1.67578 1 0 ack 40 ------- 0 3.0 0.0 21 52 r 1.67984 1 0 ack 40 ------- 0 3.0 0.0 20 51 + 1.67984 0 1 tcp 1000 ------- 0 0.0 3.0 40 67 - 1.67984 0 1 tcp 1000 ------- 0 0.0 3.0 40 67 r 1.68544 0 1 tcp 1000 ------- 0 0.0 3.0 39 66 + 1.68544 1 2 tcp 1000 ------- 0 0.0 3.0 39 66 d 1.68544 1 2 tcp 1000 ------- 0 0.0 3.0 39 66 - 1.68544 1 2 tcp 1000 ------- 0 0.0 3.0 35 61 r 1.69178 2 1 ack 40 ------- 0 3.0 0.0 22 53 + 1.69178 1 0 ack 40 ------- 0 3.0 0.0 22 53 - 1.69178 1 0 ack 40 ------- 0 3.0 0.0 22 53 r 1.69584 1 0 ack 40 ------- 0 3.0 0.0 21 52 + 1.69584 0 1 tcp 1000 ------- 0 0.0 3.0 41 68 - 1.69584 0 1 tcp 1000 ------- 0 0.0 3.0 41 68 r 1.70144 0 1 tcp 1000 ------- 0 0.0 3.0 40 67 + 1.70144 1 2 tcp 1000 ------- 0 0.0 3.0 40 67 - 1.70144 1 2 tcp 1000 ------- 0 0.0 3.0 36 62 r 1.70778 2 1 ack 40 ------- 0 3.0 0.0 22 54 + 1.70778 1 0 ack 40 ------- 0 3.0 0.0 22 54 - 1.70778 1 0 ack 40 ------- 0 3.0 0.0 22 54 r 1.71184 1 0 ack 40 ------- 0 3.0 0.0 22 53 + 1.71184 0 1 tcp 1000 ------- 0 0.0 3.0 42 69 - 1.71184 0 1 tcp 1000 ------- 0 0.0 3.0 42 69 r 1.71744 0 1 tcp 1000 ------- 0 0.0 3.0 41 68 + 1.71744 1 2 tcp 1000 ------- 0 0.0 3.0 41 68 - 1.71744 1 2 tcp 1000 ------- 0 0.0 3.0 37 64 r 1.72378 2 1 ack 40 ------- 0 3.0 0.0 22 57 + 1.72378 1 0 ack 40 ------- 0 3.0 0.0 22 57 - 1.72378 1 0 ack 40 ------- 0 3.0 0.0 22 57 r 1.72784 1 0 ack 40 ------- 0 3.0 0.0 22 54 r 1.73344 0 1 tcp 1000 ------- 0 0.0 3.0 42 69 + 1.73344 1 2 tcp 1000 ------- 0 0.0 3.0 42 69 - 1.73344 1 2 tcp 1000 ------- 0 0.0 3.0 38 65 r 1.73744 1 2 tcp 1000 ------- 0 0.0 3.0 31 55 + 1.73744 2 3 tcp 1000 ------- 0 0.0 3.0 31 55 - 1.73744 2 3 tcp 1000 ------- 0 0.0 3.0 31 55 r 1.73978 2 1 ack 40 ------- 0 3.0 0.0 22 60 + 1.73978 1 0 ack 40 ------- 0 3.0 0.0 22 60 - 1.73978 1 0 ack 40 ------- 0 3.0 0.0 22 60 r 1.74384 1 0 ack 40 ------- 0 3.0 0.0 22 57 - 1.74944 1 2 tcp 1000 ------- 0 0.0 3.0 40 67 r 1.75344 1 2 tcp 1000 ------- 0 0.0 3.0 32 56 + 1.75344 2 3 tcp 1000 ------- 0 0.0 3.0 32 56 - 1.75344 2 3 tcp 1000 ------- 0 0.0 3.0 32 56 r 1.75578 2 1 ack 40 ------- 0 3.0 0.0 22 63 + 1.75578 1 0 ack 40 ------- 0 3.0 0.0 22 63 - 1.75578 1 0 ack 40 ------- 0 3.0 0.0 22 63 r 1.75904 2 3 tcp 1000 ------- 0 0.0 3.0 31 55 + 1.75904 3 2 ack 40 ------- 0 3.0 0.0 22 70 - 1.75904 3 2 ack 40 ------- 0 3.0 0.0 22 70 r 1.75984 1 0 ack 40 ------- 0 3.0 0.0 22 60 + 1.75984 0 1 tcp 1000 ---A--- 0 0.0 3.0 23 71 - 1.75984 0 1 tcp 1000 ---A--- 0 0.0 3.0 23 71 - 1.76544 1 2 tcp 1000 ------- 0 0.0 3.0 41 68 r 1.76944 1 2 tcp 1000 ------- 0 0.0 3.0 33 58 + 1.76944 2 3 tcp 1000 ------- 0 0.0 3.0 33 58 - 1.76944 2 3 tcp 1000 ------- 0 0.0 3.0 33 58 r 1.77504 2 3 tcp 1000 ------- 0 0.0 3.0 32 56 + 1.77504 3 2 ack 40 ------- 0 3.0 0.0 22 72 - 1.77504 3 2 ack 40 ------- 0 3.0 0.0 22 72 r 1.77584 1 0 ack 40 ------- 0 3.0 0.0 22 63 r 1.7791 3 2 ack 40 ------- 0 3.0 0.0 22 70 + 1.7791 2 1 ack 40 ------- 0 3.0 0.0 22 70 - 1.7791 2 1 ack 40 ------- 0 3.0 0.0 22 70 r 1.78144 0 1 tcp 1000 ---A--- 0 0.0 3.0 23 71 + 1.78144 1 2 tcp 1000 ---A--- 0 0.0 3.0 23 71 - 1.78144 1 2 tcp 1000 ------- 0 0.0 3.0 42 69 r 1.78544 1 2 tcp 1000 ------- 0 0.0 3.0 34 59 + 1.78544 2 3 tcp 1000 ------- 0 0.0 3.0 34 59 - 1.78544 2 3 tcp 1000 ------- 0 0.0 3.0 34 59 r 1.79104 2 3 tcp 1000 ------- 0 0.0 3.0 33 58 + 1.79104 3 2 ack 40 ------- 0 3.0 0.0 22 73 - 1.79104 3 2 ack 40 ------- 0 3.0 0.0 22 73 r 1.7951 3 2 ack 40 ------- 0 3.0 0.0 22 72 + 1.7951 2 1 ack 40 ------- 0 3.0 0.0 22 72 - 1.7951 2 1 ack 40 ------- 0 3.0 0.0 22 72 - 1.79744 1 2 tcp 1000 ---A--- 0 0.0 3.0 23 71 r 1.80144 1 2 tcp 1000 ------- 0 0.0 3.0 35 61 + 1.80144 2 3 tcp 1000 ------- 0 0.0 3.0 35 61 - 1.80144 2 3 tcp 1000 ------- 0 0.0 3.0 35 61 r 1.80704 2 3 tcp 1000 ------- 0 0.0 3.0 34 59 + 1.80704 3 2 ack 40 ------- 0 3.0 0.0 22 74 - 1.80704 3 2 ack 40 ------- 0 3.0 0.0 22 74 r 1.8111 3 2 ack 40 ------- 0 3.0 0.0 22 73 + 1.8111 2 1 ack 40 ------- 0 3.0 0.0 22 73 - 1.8111 2 1 ack 40 ------- 0 3.0 0.0 22 73 r 1.81744 1 2 tcp 1000 ------- 0 0.0 3.0 36 62 + 1.81744 2 3 tcp 1000 ------- 0 0.0 3.0 36 62 - 1.81744 2 3 tcp 1000 ------- 0 0.0 3.0 36 62 r 1.82304 2 3 tcp 1000 ------- 0 0.0 3.0 35 61 + 1.82304 3 2 ack 40 ------- 0 3.0 0.0 22 75 - 1.82304 3 2 ack 40 ------- 0 3.0 0.0 22 75 r 1.8271 3 2 ack 40 ------- 0 3.0 0.0 22 74 + 1.8271 2 1 ack 40 ------- 0 3.0 0.0 22 74 - 1.8271 2 1 ack 40 ------- 0 3.0 0.0 22 74 r 1.83344 1 2 tcp 1000 ------- 0 0.0 3.0 37 64 + 1.83344 2 3 tcp 1000 ------- 0 0.0 3.0 37 64 - 1.83344 2 3 tcp 1000 ------- 0 0.0 3.0 37 64 r 1.83904 2 3 tcp 1000 ------- 0 0.0 3.0 36 62 + 1.83904 3 2 ack 40 ------- 0 3.0 0.0 22 76 - 1.83904 3 2 ack 40 ------- 0 3.0 0.0 22 76 r 1.8431 3 2 ack 40 ------- 0 3.0 0.0 22 75 + 1.8431 2 1 ack 40 ------- 0 3.0 0.0 22 75 - 1.8431 2 1 ack 40 ------- 0 3.0 0.0 22 75 r 1.84944 1 2 tcp 1000 ------- 0 0.0 3.0 38 65 + 1.84944 2 3 tcp 1000 ------- 0 0.0 3.0 38 65 - 1.84944 2 3 tcp 1000 ------- 0 0.0 3.0 38 65 r 1.85504 2 3 tcp 1000 ------- 0 0.0 3.0 37 64 + 1.85504 3 2 ack 40 ------- 0 3.0 0.0 22 77 - 1.85504 3 2 ack 40 ------- 0 3.0 0.0 22 77 r 1.8591 3 2 ack 40 ------- 0 3.0 0.0 22 76 + 1.8591 2 1 ack 40 ------- 0 3.0 0.0 22 76 - 1.8591 2 1 ack 40 ------- 0 3.0 0.0 22 76 r 1.86544 1 2 tcp 1000 ------- 0 0.0 3.0 40 67 + 1.86544 2 3 tcp 1000 ------- 0 0.0 3.0 40 67 - 1.86544 2 3 tcp 1000 ------- 0 0.0 3.0 40 67 r 1.87104 2 3 tcp 1000 ------- 0 0.0 3.0 38 65 + 1.87104 3 2 ack 40 ------- 0 3.0 0.0 22 78 - 1.87104 3 2 ack 40 ------- 0 3.0 0.0 22 78 r 1.8751 3 2 ack 40 ------- 0 3.0 0.0 22 77 + 1.8751 2 1 ack 40 ------- 0 3.0 0.0 22 77 - 1.8751 2 1 ack 40 ------- 0 3.0 0.0 22 77 r 1.87974 2 1 ack 40 ------- 0 3.0 0.0 22 70 + 1.87974 1 0 ack 40 ------- 0 3.0 0.0 22 70 - 1.87974 1 0 ack 40 ------- 0 3.0 0.0 22 70 r 1.88144 1 2 tcp 1000 ------- 0 0.0 3.0 41 68 + 1.88144 2 3 tcp 1000 ------- 0 0.0 3.0 41 68 - 1.88144 2 3 tcp 1000 ------- 0 0.0 3.0 41 68 r 1.88704 2 3 tcp 1000 ------- 0 0.0 3.0 40 67 + 1.88704 3 2 ack 40 ------- 0 3.0 0.0 22 79 - 1.88704 3 2 ack 40 ------- 0 3.0 0.0 22 79 r 1.8911 3 2 ack 40 ------- 0 3.0 0.0 22 78 + 1.8911 2 1 ack 40 ------- 0 3.0 0.0 22 78 - 1.8911 2 1 ack 40 ------- 0 3.0 0.0 22 78 r 1.89574 2 1 ack 40 ------- 0 3.0 0.0 22 72 + 1.89574 1 0 ack 40 ------- 0 3.0 0.0 22 72 - 1.89574 1 0 ack 40 ------- 0 3.0 0.0 22 72 r 1.89744 1 2 tcp 1000 ------- 0 0.0 3.0 42 69 + 1.89744 2 3 tcp 1000 ------- 0 0.0 3.0 42 69 - 1.89744 2 3 tcp 1000 ------- 0 0.0 3.0 42 69 r 1.89981 1 0 ack 40 ------- 0 3.0 0.0 22 70 r 1.90304 2 3 tcp 1000 ------- 0 0.0 3.0 41 68 + 1.90304 3 2 ack 40 ------- 0 3.0 0.0 22 80 - 1.90304 3 2 ack 40 ------- 0 3.0 0.0 22 80 r 1.9071 3 2 ack 40 ------- 0 3.0 0.0 22 79 + 1.9071 2 1 ack 40 ------- 0 3.0 0.0 22 79 - 1.9071 2 1 ack 40 ------- 0 3.0 0.0 22 79 r 1.91174 2 1 ack 40 ------- 0 3.0 0.0 22 73 + 1.91174 1 0 ack 40 ------- 0 3.0 0.0 22 73 - 1.91174 1 0 ack 40 ------- 0 3.0 0.0 22 73 r 1.91344 1 2 tcp 1000 ---A--- 0 0.0 3.0 23 71 + 1.91344 2 3 tcp 1000 ---A--- 0 0.0 3.0 23 71 - 1.91344 2 3 tcp 1000 ---A--- 0 0.0 3.0 23 71 r 1.91581 1 0 ack 40 ------- 0 3.0 0.0 22 72 r 1.91904 2 3 tcp 1000 ------- 0 0.0 3.0 42 69 + 1.91904 3 2 ack 40 ------- 0 3.0 0.0 22 81 - 1.91904 3 2 ack 40 ------- 0 3.0 0.0 22 81 r 1.9231 3 2 ack 40 ------- 0 3.0 0.0 22 80 + 1.9231 2 1 ack 40 ------- 0 3.0 0.0 22 80 - 1.9231 2 1 ack 40 ------- 0 3.0 0.0 22 80 r 1.92774 2 1 ack 40 ------- 0 3.0 0.0 22 74 + 1.92774 1 0 ack 40 ------- 0 3.0 0.0 22 74 - 1.92774 1 0 ack 40 ------- 0 3.0 0.0 22 74 r 1.93181 1 0 ack 40 ------- 0 3.0 0.0 22 73 r 1.93504 2 3 tcp 1000 ---A--- 0 0.0 3.0 23 71 + 1.93504 3 2 ack 40 ------- 0 3.0 0.0 24 82 - 1.93504 3 2 ack 40 ------- 0 3.0 0.0 24 82 r 1.9391 3 2 ack 40 ------- 0 3.0 0.0 22 81 + 1.9391 2 1 ack 40 ------- 0 3.0 0.0 22 81 - 1.9391 2 1 ack 40 ------- 0 3.0 0.0 22 81 r 1.94374 2 1 ack 40 ------- 0 3.0 0.0 22 75 + 1.94374 1 0 ack 40 ------- 0 3.0 0.0 22 75 - 1.94374 1 0 ack 40 ------- 0 3.0 0.0 22 75 r 1.94781 1 0 ack 40 ------- 0 3.0 0.0 22 74 r 1.9551 3 2 ack 40 ------- 0 3.0 0.0 24 82 + 1.9551 2 1 ack 40 ------- 0 3.0 0.0 24 82 - 1.9551 2 1 ack 40 ------- 0 3.0 0.0 24 82 r 1.95974 2 1 ack 40 ------- 0 3.0 0.0 22 76 + 1.95974 1 0 ack 40 ------- 0 3.0 0.0 22 76 - 1.95974 1 0 ack 40 ------- 0 3.0 0.0 22 76 r 1.96381 1 0 ack 40 ------- 0 3.0 0.0 22 75 r 1.97574 2 1 ack 40 ------- 0 3.0 0.0 22 77 + 1.97574 1 0 ack 40 ------- 0 3.0 0.0 22 77 - 1.97574 1 0 ack 40 ------- 0 3.0 0.0 22 77 r 1.97981 1 0 ack 40 ------- 0 3.0 0.0 22 76 r 1.99174 2 1 ack 40 ------- 0 3.0 0.0 22 78 + 1.99174 1 0 ack 40 ------- 0 3.0 0.0 22 78 - 1.99174 1 0 ack 40 ------- 0 3.0 0.0 22 78 r 1.99581 1 0 ack 40 ------- 0 3.0 0.0 22 77 r 2.00774 2 1 ack 40 ------- 0 3.0 0.0 22 79 + 2.00774 1 0 ack 40 ------- 0 3.0 0.0 22 79 - 2.00774 1 0 ack 40 ------- 0 3.0 0.0 22 79 r 2.01181 1 0 ack 40 ------- 0 3.0 0.0 22 78 r 2.02374 2 1 ack 40 ------- 0 3.0 0.0 22 80 + 2.02374 1 0 ack 40 ------- 0 3.0 0.0 22 80 - 2.02374 1 0 ack 40 ------- 0 3.0 0.0 22 80 r 2.02781 1 0 ack 40 ------- 0 3.0 0.0 22 79 r 2.03974 2 1 ack 40 ------- 0 3.0 0.0 22 81 + 2.03974 1 0 ack 40 ------- 0 3.0 0.0 22 81 - 2.03974 1 0 ack 40 ------- 0 3.0 0.0 22 81 r 2.04381 1 0 ack 40 ------- 0 3.0 0.0 22 80 r 2.05574 2 1 ack 40 ------- 0 3.0 0.0 24 82 + 2.05574 1 0 ack 40 ------- 0 3.0 0.0 24 82 - 2.05574 1 0 ack 40 ------- 0 3.0 0.0 24 82 r 2.05981 1 0 ack 40 ------- 0 3.0 0.0 22 81 r 2.07581 1 0 ack 40 ------- 0 3.0 0.0 24 82 + 2.07581 0 1 tcp 1000 ------- 0 0.0 3.0 25 83 - 2.07581 0 1 tcp 1000 ------- 0 0.0 3.0 25 83 + 2.07581 0 1 tcp 1000 ------- 0 0.0 3.0 26 84 - 2.07741 0 1 tcp 1000 ------- 0 0.0 3.0 26 84 r 2.09741 0 1 tcp 1000 ------- 0 0.0 3.0 25 83 + 2.09741 1 2 tcp 1000 ------- 0 0.0 3.0 25 83 - 2.09741 1 2 tcp 1000 ------- 0 0.0 3.0 25 83 r 2.09901 0 1 tcp 1000 ------- 0 0.0 3.0 26 84 + 2.09901 1 2 tcp 1000 ------- 0 0.0 3.0 26 84 - 2.11341 1 2 tcp 1000 ------- 0 0.0 3.0 26 84 r 2.21341 1 2 tcp 1000 ------- 0 0.0 3.0 25 83 + 2.21341 2 3 tcp 1000 ------- 0 0.0 3.0 25 83 - 2.21341 2 3 tcp 1000 ------- 0 0.0 3.0 25 83 r 2.22941 1 2 tcp 1000 ------- 0 0.0 3.0 26 84 + 2.22941 2 3 tcp 1000 ------- 0 0.0 3.0 26 84 - 2.22941 2 3 tcp 1000 ------- 0 0.0 3.0 26 84 r 2.23501 2 3 tcp 1000 ------- 0 0.0 3.0 25 83 + 2.23501 3 2 ack 40 ------- 0 3.0 0.0 26 85 - 2.23501 3 2 ack 40 ------- 0 3.0 0.0 26 85 r 2.25101 2 3 tcp 1000 ------- 0 0.0 3.0 26 84 + 2.25101 3 2 ack 40 ------- 0 3.0 0.0 26 86 - 2.25101 3 2 ack 40 ------- 0 3.0 0.0 26 86 r 2.25507 3 2 ack 40 ------- 0 3.0 0.0 26 85 + 2.25507 2 1 ack 40 ------- 0 3.0 0.0 26 85 - 2.25507 2 1 ack 40 ------- 0 3.0 0.0 26 85 r 2.27107 3 2 ack 40 ------- 0 3.0 0.0 26 86 + 2.27107 2 1 ack 40 ------- 0 3.0 0.0 26 86 - 2.27107 2 1 ack 40 ------- 0 3.0 0.0 26 86 r 2.35571 2 1 ack 40 ------- 0 3.0 0.0 26 85 + 2.35571 1 0 ack 40 ------- 0 3.0 0.0 26 85 - 2.35571 1 0 ack 40 ------- 0 3.0 0.0 26 85 r 2.37171 2 1 ack 40 ------- 0 3.0 0.0 26 86 + 2.37171 1 0 ack 40 ------- 0 3.0 0.0 26 86 - 2.37171 1 0 ack 40 ------- 0 3.0 0.0 26 86 r 2.37578 1 0 ack 40 ------- 0 3.0 0.0 26 85 + 2.37578 0 1 tcp 1000 ------- 0 0.0 3.0 27 87 - 2.37578 0 1 tcp 1000 ------- 0 0.0 3.0 27 87 + 2.37578 0 1 tcp 1000 ------- 0 0.0 3.0 28 88 + 2.37578 0 1 tcp 1000 ------- 0 0.0 3.0 29 89 - 2.37738 0 1 tcp 1000 ------- 0 0.0 3.0 28 88 - 2.37898 0 1 tcp 1000 ------- 0 0.0 3.0 29 89 r 2.39178 1 0 ack 40 ------- 0 3.0 0.0 26 86 r 2.39738 0 1 tcp 1000 ------- 0 0.0 3.0 27 87 + 2.39738 1 2 tcp 1000 ------- 0 0.0 3.0 27 87 - 2.39738 1 2 tcp 1000 ------- 0 0.0 3.0 27 87 r 2.39898 0 1 tcp 1000 ------- 0 0.0 3.0 28 88 + 2.39898 1 2 tcp 1000 ------- 0 0.0 3.0 28 88 r 2.40058 0 1 tcp 1000 ------- 0 0.0 3.0 29 89 + 2.40058 1 2 tcp 1000 ------- 0 0.0 3.0 29 89 - 2.41338 1 2 tcp 1000 ------- 0 0.0 3.0 28 88 - 2.42938 1 2 tcp 1000 ------- 0 0.0 3.0 29 89 r 2.51338 1 2 tcp 1000 ------- 0 0.0 3.0 27 87 + 2.51338 2 3 tcp 1000 ------- 0 0.0 3.0 27 87 - 2.51338 2 3 tcp 1000 ------- 0 0.0 3.0 27 87 r 2.52938 1 2 tcp 1000 ------- 0 0.0 3.0 28 88 + 2.52938 2 3 tcp 1000 ------- 0 0.0 3.0 28 88 - 2.52938 2 3 tcp 1000 ------- 0 0.0 3.0 28 88 r 2.53498 2 3 tcp 1000 ------- 0 0.0 3.0 27 87 + 2.53498 3 2 ack 40 ------- 0 3.0 0.0 28 90 - 2.53498 3 2 ack 40 ------- 0 3.0 0.0 28 90 r 2.54538 1 2 tcp 1000 ------- 0 0.0 3.0 29 89 + 2.54538 2 3 tcp 1000 ------- 0 0.0 3.0 29 89 - 2.54538 2 3 tcp 1000 ------- 0 0.0 3.0 29 89 r 2.55098 2 3 tcp 1000 ------- 0 0.0 3.0 28 88 + 2.55098 3 2 ack 40 ------- 0 3.0 0.0 28 91 - 2.55098 3 2 ack 40 ------- 0 3.0 0.0 28 91 r 2.55504 3 2 ack 40 ------- 0 3.0 0.0 28 90 + 2.55504 2 1 ack 40 ------- 0 3.0 0.0 28 90 - 2.55504 2 1 ack 40 ------- 0 3.0 0.0 28 90 r 2.56698 2 3 tcp 1000 ------- 0 0.0 3.0 29 89 + 2.56698 3 2 ack 40 ------- 0 3.0 0.0 38 92 - 2.56698 3 2 ack 40 ------- 0 3.0 0.0 38 92 r 2.57104 3 2 ack 40 ------- 0 3.0 0.0 28 91 + 2.57104 2 1 ack 40 ------- 0 3.0 0.0 28 91 - 2.57104 2 1 ack 40 ------- 0 3.0 0.0 28 91 r 2.58704 3 2 ack 40 ------- 0 3.0 0.0 38 92 + 2.58704 2 1 ack 40 ------- 0 3.0 0.0 38 92 - 2.58704 2 1 ack 40 ------- 0 3.0 0.0 38 92 r 2.65568 2 1 ack 40 ------- 0 3.0 0.0 28 90 + 2.65568 1 0 ack 40 ------- 0 3.0 0.0 28 90 - 2.65568 1 0 ack 40 ------- 0 3.0 0.0 28 90 r 2.67168 2 1 ack 40 ------- 0 3.0 0.0 28 91 + 2.67168 1 0 ack 40 ------- 0 3.0 0.0 28 91 - 2.67168 1 0 ack 40 ------- 0 3.0 0.0 28 91 r 2.67574 1 0 ack 40 ------- 0 3.0 0.0 28 90 + 2.67574 0 1 tcp 1000 ------- 0 0.0 3.0 30 93 - 2.67574 0 1 tcp 1000 ------- 0 0.0 3.0 30 93 + 2.67574 0 1 tcp 1000 ------- 0 0.0 3.0 31 94 + 2.67574 0 1 tcp 1000 ------- 0 0.0 3.0 32 95 - 2.67734 0 1 tcp 1000 ------- 0 0.0 3.0 31 94 - 2.67894 0 1 tcp 1000 ------- 0 0.0 3.0 32 95 r 2.68768 2 1 ack 40 ------- 0 3.0 0.0 38 92 + 2.68768 1 0 ack 40 ------- 0 3.0 0.0 38 92 - 2.68768 1 0 ack 40 ------- 0 3.0 0.0 38 92 r 2.69174 1 0 ack 40 ------- 0 3.0 0.0 28 91 r 2.69734 0 1 tcp 1000 ------- 0 0.0 3.0 30 93 + 2.69734 1 2 tcp 1000 ------- 0 0.0 3.0 30 93 - 2.69734 1 2 tcp 1000 ------- 0 0.0 3.0 30 93 r 2.69894 0 1 tcp 1000 ------- 0 0.0 3.0 31 94 + 2.69894 1 2 tcp 1000 ------- 0 0.0 3.0 31 94 r 2.70054 0 1 tcp 1000 ------- 0 0.0 3.0 32 95 + 2.70054 1 2 tcp 1000 ------- 0 0.0 3.0 32 95 r 2.70774 1 0 ack 40 ------- 0 3.0 0.0 38 92 + 2.70774 0 1 tcp 1000 ------- 0 0.0 3.0 39 96 - 2.70774 0 1 tcp 1000 ------- 0 0.0 3.0 39 96 + 2.70774 0 1 tcp 1000 ------- 0 0.0 3.0 40 97 + 2.70774 0 1 tcp 1000 ------- 0 0.0 3.0 41 98 + 2.70774 0 1 tcp 1000 ------- 0 0.0 3.0 42 99 + 2.70774 0 1 tcp 1000 ------- 0 0.0 3.0 43 100 - 2.70934 0 1 tcp 1000 ------- 0 0.0 3.0 40 97 - 2.71094 0 1 tcp 1000 ------- 0 0.0 3.0 41 98 - 2.71254 0 1 tcp 1000 ------- 0 0.0 3.0 42 99 - 2.71334 1 2 tcp 1000 ------- 0 0.0 3.0 31 94 - 2.71414 0 1 tcp 1000 ------- 0 0.0 3.0 43 100 r 2.72934 0 1 tcp 1000 ------- 0 0.0 3.0 39 96 + 2.72934 1 2 tcp 1000 ------- 0 0.0 3.0 39 96 - 2.72934 1 2 tcp 1000 ------- 0 0.0 3.0 32 95 r 2.73094 0 1 tcp 1000 ------- 0 0.0 3.0 40 97 + 2.73094 1 2 tcp 1000 ------- 0 0.0 3.0 40 97 r 2.73254 0 1 tcp 1000 ------- 0 0.0 3.0 41 98 + 2.73254 1 2 tcp 1000 ------- 0 0.0 3.0 41 98 r 2.73414 0 1 tcp 1000 ------- 0 0.0 3.0 42 99 + 2.73414 1 2 tcp 1000 ------- 0 0.0 3.0 42 99 r 2.73574 0 1 tcp 1000 ------- 0 0.0 3.0 43 100 + 2.73574 1 2 tcp 1000 ------- 0 0.0 3.0 43 100 d 2.73574 1 2 tcp 1000 ------- 0 0.0 3.0 43 100 - 2.74534 1 2 tcp 1000 ------- 0 0.0 3.0 39 96 - 2.76134 1 2 tcp 1000 ------- 0 0.0 3.0 40 97 - 2.77734 1 2 tcp 1000 ------- 0 0.0 3.0 41 98 - 2.79334 1 2 tcp 1000 ------- 0 0.0 3.0 42 99 r 2.81334 1 2 tcp 1000 ------- 0 0.0 3.0 30 93 + 2.81334 2 3 tcp 1000 ------- 0 0.0 3.0 30 93 - 2.81334 2 3 tcp 1000 ------- 0 0.0 3.0 30 93 r 2.82934 1 2 tcp 1000 ------- 0 0.0 3.0 31 94 + 2.82934 2 3 tcp 1000 ------- 0 0.0 3.0 31 94 - 2.82934 2 3 tcp 1000 ------- 0 0.0 3.0 31 94 r 2.83494 2 3 tcp 1000 ------- 0 0.0 3.0 30 93 + 2.83494 3 2 ack 40 ------- 0 3.0 0.0 38 101 - 2.83494 3 2 ack 40 ------- 0 3.0 0.0 38 101 r 2.84534 1 2 tcp 1000 ------- 0 0.0 3.0 32 95 + 2.84534 2 3 tcp 1000 ------- 0 0.0 3.0 32 95 - 2.84534 2 3 tcp 1000 ------- 0 0.0 3.0 32 95 r 2.85094 2 3 tcp 1000 ------- 0 0.0 3.0 31 94 + 2.85094 3 2 ack 40 ------- 0 3.0 0.0 38 102 - 2.85094 3 2 ack 40 ------- 0 3.0 0.0 38 102 r 2.85501 3 2 ack 40 ------- 0 3.0 0.0 38 101 + 2.85501 2 1 ack 40 ------- 0 3.0 0.0 38 101 - 2.85501 2 1 ack 40 ------- 0 3.0 0.0 38 101 r 2.86134 1 2 tcp 1000 ------- 0 0.0 3.0 39 96 + 2.86134 2 3 tcp 1000 ------- 0 0.0 3.0 39 96 - 2.86134 2 3 tcp 1000 ------- 0 0.0 3.0 39 96 r 2.86694 2 3 tcp 1000 ------- 0 0.0 3.0 32 95 + 2.86694 3 2 ack 40 ------- 0 3.0 0.0 38 103 - 2.86694 3 2 ack 40 ------- 0 3.0 0.0 38 103 r 2.87101 3 2 ack 40 ------- 0 3.0 0.0 38 102 + 2.87101 2 1 ack 40 ------- 0 3.0 0.0 38 102 - 2.87101 2 1 ack 40 ------- 0 3.0 0.0 38 102 r 2.87734 1 2 tcp 1000 ------- 0 0.0 3.0 40 97 + 2.87734 2 3 tcp 1000 ------- 0 0.0 3.0 40 97 - 2.87734 2 3 tcp 1000 ------- 0 0.0 3.0 40 97 r 2.88294 2 3 tcp 1000 ------- 0 0.0 3.0 39 96 + 2.88294 3 2 ack 40 ------- 0 3.0 0.0 42 104 - 2.88294 3 2 ack 40 ------- 0 3.0 0.0 42 104 r 2.88701 3 2 ack 40 ------- 0 3.0 0.0 38 103 + 2.88701 2 1 ack 40 ------- 0 3.0 0.0 38 103 - 2.88701 2 1 ack 40 ------- 0 3.0 0.0 38 103 r 2.89334 1 2 tcp 1000 ------- 0 0.0 3.0 41 98 + 2.89334 2 3 tcp 1000 ------- 0 0.0 3.0 41 98 - 2.89334 2 3 tcp 1000 ------- 0 0.0 3.0 41 98 r 2.89894 2 3 tcp 1000 ------- 0 0.0 3.0 40 97 + 2.89894 3 2 ack 40 ------- 0 3.0 0.0 42 105 - 2.89894 3 2 ack 40 ------- 0 3.0 0.0 42 105 r 2.90301 3 2 ack 40 ------- 0 3.0 0.0 42 104 + 2.90301 2 1 ack 40 ------- 0 3.0 0.0 42 104 - 2.90301 2 1 ack 40 ------- 0 3.0 0.0 42 104 r 2.90934 1 2 tcp 1000 ------- 0 0.0 3.0 42 99 + 2.90934 2 3 tcp 1000 ------- 0 0.0 3.0 42 99 - 2.90934 2 3 tcp 1000 ------- 0 0.0 3.0 42 99 r 2.91494 2 3 tcp 1000 ------- 0 0.0 3.0 41 98 + 2.91494 3 2 ack 40 ------- 0 3.0 0.0 42 106 - 2.91494 3 2 ack 40 ------- 0 3.0 0.0 42 106 r 2.91901 3 2 ack 40 ------- 0 3.0 0.0 42 105 + 2.91901 2 1 ack 40 ------- 0 3.0 0.0 42 105 - 2.91901 2 1 ack 40 ------- 0 3.0 0.0 42 105 r 2.93094 2 3 tcp 1000 ------- 0 0.0 3.0 42 99 + 2.93094 3 2 ack 40 ------- 0 3.0 0.0 42 107 - 2.93094 3 2 ack 40 ------- 0 3.0 0.0 42 107 r 2.93501 3 2 ack 40 ------- 0 3.0 0.0 42 106 + 2.93501 2 1 ack 40 ------- 0 3.0 0.0 42 106 - 2.93501 2 1 ack 40 ------- 0 3.0 0.0 42 106 r 2.95101 3 2 ack 40 ------- 0 3.0 0.0 42 107 + 2.95101 2 1 ack 40 ------- 0 3.0 0.0 42 107 - 2.95101 2 1 ack 40 ------- 0 3.0 0.0 42 107 r 2.95565 2 1 ack 40 ------- 0 3.0 0.0 38 101 + 2.95565 1 0 ack 40 ------- 0 3.0 0.0 38 101 - 2.95565 1 0 ack 40 ------- 0 3.0 0.0 38 101 r 2.97165 2 1 ack 40 ------- 0 3.0 0.0 38 102 + 2.97165 1 0 ack 40 ------- 0 3.0 0.0 38 102 - 2.97165 1 0 ack 40 ------- 0 3.0 0.0 38 102 r 2.97571 1 0 ack 40 ------- 0 3.0 0.0 38 101 r 2.98765 2 1 ack 40 ------- 0 3.0 0.0 38 103 + 2.98765 1 0 ack 40 ------- 0 3.0 0.0 38 103 - 2.98765 1 0 ack 40 ------- 0 3.0 0.0 38 103 r 2.99171 1 0 ack 40 ------- 0 3.0 0.0 38 102 r 3.00365 2 1 ack 40 ------- 0 3.0 0.0 42 104 + 3.00365 1 0 ack 40 ------- 0 3.0 0.0 42 104 - 3.00365 1 0 ack 40 ------- 0 3.0 0.0 42 104 r 3.00771 1 0 ack 40 ------- 0 3.0 0.0 38 103 r 3.01965 2 1 ack 40 ------- 0 3.0 0.0 42 105 + 3.01965 1 0 ack 40 ------- 0 3.0 0.0 42 105 - 3.01965 1 0 ack 40 ------- 0 3.0 0.0 42 105 r 3.02371 1 0 ack 40 ------- 0 3.0 0.0 42 104 + 3.02371 0 1 tcp 1000 ------- 0 0.0 3.0 44 108 - 3.02371 0 1 tcp 1000 ------- 0 0.0 3.0 44 108 + 3.02371 0 1 tcp 1000 ------- 0 0.0 3.0 45 109 + 3.02371 0 1 tcp 1000 ------- 0 0.0 3.0 46 110 + 3.02371 0 1 tcp 1000 ------- 0 0.0 3.0 47 111 + 3.02371 0 1 tcp 1000 ------- 0 0.0 3.0 48 112 - 3.02531 0 1 tcp 1000 ------- 0 0.0 3.0 45 109 - 3.02691 0 1 tcp 1000 ------- 0 0.0 3.0 46 110 - 3.02851 0 1 tcp 1000 ------- 0 0.0 3.0 47 111 - 3.03011 0 1 tcp 1000 ------- 0 0.0 3.0 48 112 r 3.03565 2 1 ack 40 ------- 0 3.0 0.0 42 106 + 3.03565 1 0 ack 40 ------- 0 3.0 0.0 42 106 - 3.03565 1 0 ack 40 ------- 0 3.0 0.0 42 106 r 3.03971 1 0 ack 40 ------- 0 3.0 0.0 42 105 r 3.04531 0 1 tcp 1000 ------- 0 0.0 3.0 44 108 + 3.04531 1 2 tcp 1000 ------- 0 0.0 3.0 44 108 - 3.04531 1 2 tcp 1000 ------- 0 0.0 3.0 44 108 r 3.04691 0 1 tcp 1000 ------- 0 0.0 3.0 45 109 + 3.04691 1 2 tcp 1000 ------- 0 0.0 3.0 45 109 r 3.04851 0 1 tcp 1000 ------- 0 0.0 3.0 46 110 + 3.04851 1 2 tcp 1000 ------- 0 0.0 3.0 46 110 r 3.05011 0 1 tcp 1000 ------- 0 0.0 3.0 47 111 + 3.05011 1 2 tcp 1000 ------- 0 0.0 3.0 47 111 r 3.05165 2 1 ack 40 ------- 0 3.0 0.0 42 107 + 3.05165 1 0 ack 40 ------- 0 3.0 0.0 42 107 - 3.05165 1 0 ack 40 ------- 0 3.0 0.0 42 107 r 3.05171 0 1 tcp 1000 ------- 0 0.0 3.0 48 112 + 3.05171 1 2 tcp 1000 ------- 0 0.0 3.0 48 112 r 3.05571 1 0 ack 40 ------- 0 3.0 0.0 42 106 - 3.06131 1 2 tcp 1000 ------- 0 0.0 3.0 45 109 r 3.07171 1 0 ack 40 ------- 0 3.0 0.0 42 107 - 3.07731 1 2 tcp 1000 ------- 0 0.0 3.0 46 110 - 3.09331 1 2 tcp 1000 ------- 0 0.0 3.0 47 111 - 3.10931 1 2 tcp 1000 ------- 0 0.0 3.0 48 112 r 3.16131 1 2 tcp 1000 ------- 0 0.0 3.0 44 108 + 3.16131 2 3 tcp 1000 ------- 0 0.0 3.0 44 108 - 3.16131 2 3 tcp 1000 ------- 0 0.0 3.0 44 108 r 3.17731 1 2 tcp 1000 ------- 0 0.0 3.0 45 109 + 3.17731 2 3 tcp 1000 ------- 0 0.0 3.0 45 109 - 3.17731 2 3 tcp 1000 ------- 0 0.0 3.0 45 109 r 3.18291 2 3 tcp 1000 ------- 0 0.0 3.0 44 108 + 3.18291 3 2 ack 40 ------- 0 3.0 0.0 42 113 - 3.18291 3 2 ack 40 ------- 0 3.0 0.0 42 113 r 3.19331 1 2 tcp 1000 ------- 0 0.0 3.0 46 110 + 3.19331 2 3 tcp 1000 ------- 0 0.0 3.0 46 110 - 3.19331 2 3 tcp 1000 ------- 0 0.0 3.0 46 110 r 3.19891 2 3 tcp 1000 ------- 0 0.0 3.0 45 109 + 3.19891 3 2 ack 40 ------- 0 3.0 0.0 42 114 - 3.19891 3 2 ack 40 ------- 0 3.0 0.0 42 114 r 3.20298 3 2 ack 40 ------- 0 3.0 0.0 42 113 + 3.20298 2 1 ack 40 ------- 0 3.0 0.0 42 113 - 3.20298 2 1 ack 40 ------- 0 3.0 0.0 42 113 r 3.20931 1 2 tcp 1000 ------- 0 0.0 3.0 47 111 + 3.20931 2 3 tcp 1000 ------- 0 0.0 3.0 47 111 - 3.20931 2 3 tcp 1000 ------- 0 0.0 3.0 47 111 r 3.21491 2 3 tcp 1000 ------- 0 0.0 3.0 46 110 + 3.21491 3 2 ack 40 ------- 0 3.0 0.0 42 115 - 3.21491 3 2 ack 40 ------- 0 3.0 0.0 42 115 r 3.21898 3 2 ack 40 ------- 0 3.0 0.0 42 114 + 3.21898 2 1 ack 40 ------- 0 3.0 0.0 42 114 - 3.21898 2 1 ack 40 ------- 0 3.0 0.0 42 114 r 3.22531 1 2 tcp 1000 ------- 0 0.0 3.0 48 112 + 3.22531 2 3 tcp 1000 ------- 0 0.0 3.0 48 112 - 3.22531 2 3 tcp 1000 ------- 0 0.0 3.0 48 112 r 3.23091 2 3 tcp 1000 ------- 0 0.0 3.0 47 111 + 3.23091 3 2 ack 40 ------- 0 3.0 0.0 42 116 - 3.23091 3 2 ack 40 ------- 0 3.0 0.0 42 116 r 3.23498 3 2 ack 40 ------- 0 3.0 0.0 42 115 + 3.23498 2 1 ack 40 ------- 0 3.0 0.0 42 115 - 3.23498 2 1 ack 40 ------- 0 3.0 0.0 42 115 r 3.24691 2 3 tcp 1000 ------- 0 0.0 3.0 48 112 + 3.24691 3 2 ack 40 ------- 0 3.0 0.0 42 117 - 3.24691 3 2 ack 40 ------- 0 3.0 0.0 42 117 r 3.25098 3 2 ack 40 ------- 0 3.0 0.0 42 116 + 3.25098 2 1 ack 40 ------- 0 3.0 0.0 42 116 - 3.25098 2 1 ack 40 ------- 0 3.0 0.0 42 116 r 3.26698 3 2 ack 40 ------- 0 3.0 0.0 42 117 + 3.26698 2 1 ack 40 ------- 0 3.0 0.0 42 117 - 3.26698 2 1 ack 40 ------- 0 3.0 0.0 42 117 r 3.30362 2 1 ack 40 ------- 0 3.0 0.0 42 113 + 3.30362 1 0 ack 40 ------- 0 3.0 0.0 42 113 - 3.30362 1 0 ack 40 ------- 0 3.0 0.0 42 113 r 3.31962 2 1 ack 40 ------- 0 3.0 0.0 42 114 + 3.31962 1 0 ack 40 ------- 0 3.0 0.0 42 114 - 3.31962 1 0 ack 40 ------- 0 3.0 0.0 42 114 r 3.32368 1 0 ack 40 ------- 0 3.0 0.0 42 113 r 3.33562 2 1 ack 40 ------- 0 3.0 0.0 42 115 + 3.33562 1 0 ack 40 ------- 0 3.0 0.0 42 115 - 3.33562 1 0 ack 40 ------- 0 3.0 0.0 42 115 r 3.33968 1 0 ack 40 ------- 0 3.0 0.0 42 114 r 3.35162 2 1 ack 40 ------- 0 3.0 0.0 42 116 + 3.35162 1 0 ack 40 ------- 0 3.0 0.0 42 116 - 3.35162 1 0 ack 40 ------- 0 3.0 0.0 42 116 r 3.35568 1 0 ack 40 ------- 0 3.0 0.0 42 115 r 3.36762 2 1 ack 40 ------- 0 3.0 0.0 42 117 + 3.36762 1 0 ack 40 ------- 0 3.0 0.0 42 117 - 3.36762 1 0 ack 40 ------- 0 3.0 0.0 42 117 r 3.37168 1 0 ack 40 ------- 0 3.0 0.0 42 116 r 3.38768 1 0 ack 40 ------- 0 3.0 0.0 42 117 + 3.62371 0 1 tcp 1000 ---A--- 0 0.0 3.0 43 118 - 3.62371 0 1 tcp 1000 ---A--- 0 0.0 3.0 43 118 r 3.64531 0 1 tcp 1000 ---A--- 0 0.0 3.0 43 118 + 3.64531 1 2 tcp 1000 ---A--- 0 0.0 3.0 43 118 - 3.64531 1 2 tcp 1000 ---A--- 0 0.0 3.0 43 118 r 3.76131 1 2 tcp 1000 ---A--- 0 0.0 3.0 43 118 + 3.76131 2 3 tcp 1000 ---A--- 0 0.0 3.0 43 118 - 3.76131 2 3 tcp 1000 ---A--- 0 0.0 3.0 43 118 r 3.78291 2 3 tcp 1000 ---A--- 0 0.0 3.0 43 118 + 3.78291 3 2 ack 40 ------- 0 3.0 0.0 48 119 - 3.78291 3 2 ack 40 ------- 0 3.0 0.0 48 119 r 3.80298 3 2 ack 40 ------- 0 3.0 0.0 48 119 + 3.80298 2 1 ack 40 ------- 0 3.0 0.0 48 119 - 3.80298 2 1 ack 40 ------- 0 3.0 0.0 48 119 r 3.90362 2 1 ack 40 ------- 0 3.0 0.0 48 119 + 3.90362 1 0 ack 40 ------- 0 3.0 0.0 48 119 - 3.90362 1 0 ack 40 ------- 0 3.0 0.0 48 119 r 3.92368 1 0 ack 40 ------- 0 3.0 0.0 48 119 + 3.92368 0 1 tcp 1000 ------- 0 0.0 3.0 49 120 - 3.92368 0 1 tcp 1000 ------- 0 0.0 3.0 49 120 + 3.92368 0 1 tcp 1000 ------- 0 0.0 3.0 50 121 - 3.92528 0 1 tcp 1000 ------- 0 0.0 3.0 50 121 r 3.94528 0 1 tcp 1000 ------- 0 0.0 3.0 49 120 + 3.94528 1 2 tcp 1000 ------- 0 0.0 3.0 49 120 - 3.94528 1 2 tcp 1000 ------- 0 0.0 3.0 49 120 r 3.94688 0 1 tcp 1000 ------- 0 0.0 3.0 50 121 + 3.94688 1 2 tcp 1000 ------- 0 0.0 3.0 50 121 - 3.96128 1 2 tcp 1000 ------- 0 0.0 3.0 50 121 r 4.06128 1 2 tcp 1000 ------- 0 0.0 3.0 49 120 + 4.06128 2 3 tcp 1000 ------- 0 0.0 3.0 49 120 - 4.06128 2 3 tcp 1000 ------- 0 0.0 3.0 49 120 r 4.07728 1 2 tcp 1000 ------- 0 0.0 3.0 50 121 + 4.07728 2 3 tcp 1000 ------- 0 0.0 3.0 50 121 - 4.07728 2 3 tcp 1000 ------- 0 0.0 3.0 50 121 r 4.08288 2 3 tcp 1000 ------- 0 0.0 3.0 49 120 + 4.08288 3 2 ack 40 ------- 0 3.0 0.0 49 122 - 4.08288 3 2 ack 40 ------- 0 3.0 0.0 49 122 r 4.09888 2 3 tcp 1000 ------- 0 0.0 3.0 50 121 + 4.09888 3 2 ack 40 ------- 0 3.0 0.0 50 123 - 4.09888 3 2 ack 40 ------- 0 3.0 0.0 50 123 r 4.10294 3 2 ack 40 ------- 0 3.0 0.0 49 122 + 4.10294 2 1 ack 40 ------- 0 3.0 0.0 49 122 - 4.10294 2 1 ack 40 ------- 0 3.0 0.0 49 122 r 4.11894 3 2 ack 40 ------- 0 3.0 0.0 50 123 + 4.11894 2 1 ack 40 ------- 0 3.0 0.0 50 123 - 4.11894 2 1 ack 40 ------- 0 3.0 0.0 50 123 r 4.20358 2 1 ack 40 ------- 0 3.0 0.0 49 122 + 4.20358 1 0 ack 40 ------- 0 3.0 0.0 49 122 - 4.20358 1 0 ack 40 ------- 0 3.0 0.0 49 122 r 4.21958 2 1 ack 40 ------- 0 3.0 0.0 50 123 + 4.21958 1 0 ack 40 ------- 0 3.0 0.0 50 123 - 4.21958 1 0 ack 40 ------- 0 3.0 0.0 50 123 r 4.22365 1 0 ack 40 ------- 0 3.0 0.0 49 122 + 4.22365 0 1 tcp 1000 ------- 0 0.0 3.0 51 124 - 4.22365 0 1 tcp 1000 ------- 0 0.0 3.0 51 124 + 4.22365 0 1 tcp 1000 ------- 0 0.0 3.0 52 125 - 4.22525 0 1 tcp 1000 ------- 0 0.0 3.0 52 125 r 4.23965 1 0 ack 40 ------- 0 3.0 0.0 50 123 + 4.23965 0 1 tcp 1000 ------- 0 0.0 3.0 53 126 - 4.23965 0 1 tcp 1000 ------- 0 0.0 3.0 53 126 r 4.24525 0 1 tcp 1000 ------- 0 0.0 3.0 51 124 + 4.24525 1 2 tcp 1000 ------- 0 0.0 3.0 51 124 - 4.24525 1 2 tcp 1000 ------- 0 0.0 3.0 51 124 r 4.24685 0 1 tcp 1000 ------- 0 0.0 3.0 52 125 + 4.24685 1 2 tcp 1000 ------- 0 0.0 3.0 52 125 r 4.26125 0 1 tcp 1000 ------- 0 0.0 3.0 53 126 + 4.26125 1 2 tcp 1000 ------- 0 0.0 3.0 53 126 - 4.26125 1 2 tcp 1000 ------- 0 0.0 3.0 52 125 - 4.27725 1 2 tcp 1000 ------- 0 0.0 3.0 53 126 r 4.36125 1 2 tcp 1000 ------- 0 0.0 3.0 51 124 + 4.36125 2 3 tcp 1000 ------- 0 0.0 3.0 51 124 - 4.36125 2 3 tcp 1000 ------- 0 0.0 3.0 51 124 r 4.37725 1 2 tcp 1000 ------- 0 0.0 3.0 52 125 + 4.37725 2 3 tcp 1000 ------- 0 0.0 3.0 52 125 - 4.37725 2 3 tcp 1000 ------- 0 0.0 3.0 52 125 r 4.38285 2 3 tcp 1000 ------- 0 0.0 3.0 51 124 + 4.38285 3 2 ack 40 ------- 0 3.0 0.0 51 127 - 4.38285 3 2 ack 40 ------- 0 3.0 0.0 51 127 r 4.39325 1 2 tcp 1000 ------- 0 0.0 3.0 53 126 + 4.39325 2 3 tcp 1000 ------- 0 0.0 3.0 53 126 - 4.39325 2 3 tcp 1000 ------- 0 0.0 3.0 53 126 r 4.39885 2 3 tcp 1000 ------- 0 0.0 3.0 52 125 + 4.39885 3 2 ack 40 ------- 0 3.0 0.0 52 128 - 4.39885 3 2 ack 40 ------- 0 3.0 0.0 52 128 r 4.40291 3 2 ack 40 ------- 0 3.0 0.0 51 127 + 4.40291 2 1 ack 40 ------- 0 3.0 0.0 51 127 - 4.40291 2 1 ack 40 ------- 0 3.0 0.0 51 127 r 4.41485 2 3 tcp 1000 ------- 0 0.0 3.0 53 126 + 4.41485 3 2 ack 40 ------- 0 3.0 0.0 53 129 - 4.41485 3 2 ack 40 ------- 0 3.0 0.0 53 129 r 4.41891 3 2 ack 40 ------- 0 3.0 0.0 52 128 + 4.41891 2 1 ack 40 ------- 0 3.0 0.0 52 128 - 4.41891 2 1 ack 40 ------- 0 3.0 0.0 52 128 r 4.43491 3 2 ack 40 ------- 0 3.0 0.0 53 129 + 4.43491 2 1 ack 40 ------- 0 3.0 0.0 53 129 - 4.43491 2 1 ack 40 ------- 0 3.0 0.0 53 129 r 4.50355 2 1 ack 40 ------- 0 3.0 0.0 51 127 + 4.50355 1 0 ack 40 ------- 0 3.0 0.0 51 127 - 4.50355 1 0 ack 40 ------- 0 3.0 0.0 51 127 r 4.51955 2 1 ack 40 ------- 0 3.0 0.0 52 128 + 4.51955 1 0 ack 40 ------- 0 3.0 0.0 52 128 - 4.51955 1 0 ack 40 ------- 0 3.0 0.0 52 128 r 4.52362 1 0 ack 40 ------- 0 3.0 0.0 51 127 + 4.52362 0 1 tcp 1000 ------- 0 0.0 3.0 54 130 - 4.52362 0 1 tcp 1000 ------- 0 0.0 3.0 54 130 r 4.53555 2 1 ack 40 ------- 0 3.0 0.0 53 129 + 4.53555 1 0 ack 40 ------- 0 3.0 0.0 53 129 - 4.53555 1 0 ack 40 ------- 0 3.0 0.0 53 129 r 4.53962 1 0 ack 40 ------- 0 3.0 0.0 52 128 + 4.53962 0 1 tcp 1000 ------- 0 0.0 3.0 55 131 - 4.53962 0 1 tcp 1000 ------- 0 0.0 3.0 55 131 r 4.54522 0 1 tcp 1000 ------- 0 0.0 3.0 54 130 + 4.54522 1 2 tcp 1000 ------- 0 0.0 3.0 54 130 - 4.54522 1 2 tcp 1000 ------- 0 0.0 3.0 54 130 r 4.55562 1 0 ack 40 ------- 0 3.0 0.0 53 129 + 4.55562 0 1 tcp 1000 ------- 0 0.0 3.0 56 132 - 4.55562 0 1 tcp 1000 ------- 0 0.0 3.0 56 132 + 4.55562 0 1 tcp 1000 ------- 0 0.0 3.0 57 133 - 4.55722 0 1 tcp 1000 ------- 0 0.0 3.0 57 133 r 4.56122 0 1 tcp 1000 ------- 0 0.0 3.0 55 131 + 4.56122 1 2 tcp 1000 ------- 0 0.0 3.0 55 131 - 4.56122 1 2 tcp 1000 ------- 0 0.0 3.0 55 131 r 4.57722 0 1 tcp 1000 ------- 0 0.0 3.0 56 132 + 4.57722 1 2 tcp 1000 ------- 0 0.0 3.0 56 132 - 4.57722 1 2 tcp 1000 ------- 0 0.0 3.0 56 132 r 4.57882 0 1 tcp 1000 ------- 0 0.0 3.0 57 133 + 4.57882 1 2 tcp 1000 ------- 0 0.0 3.0 57 133 - 4.59322 1 2 tcp 1000 ------- 0 0.0 3.0 57 133 r 4.66122 1 2 tcp 1000 ------- 0 0.0 3.0 54 130 + 4.66122 2 3 tcp 1000 ------- 0 0.0 3.0 54 130 - 4.66122 2 3 tcp 1000 ------- 0 0.0 3.0 54 130 r 4.67722 1 2 tcp 1000 ------- 0 0.0 3.0 55 131 + 4.67722 2 3 tcp 1000 ------- 0 0.0 3.0 55 131 - 4.67722 2 3 tcp 1000 ------- 0 0.0 3.0 55 131 r 4.68282 2 3 tcp 1000 ------- 0 0.0 3.0 54 130 + 4.68282 3 2 ack 40 ------- 0 3.0 0.0 54 134 - 4.68282 3 2 ack 40 ------- 0 3.0 0.0 54 134 r 4.69322 1 2 tcp 1000 ------- 0 0.0 3.0 56 132 + 4.69322 2 3 tcp 1000 ------- 0 0.0 3.0 56 132 - 4.69322 2 3 tcp 1000 ------- 0 0.0 3.0 56 132 r 4.69882 2 3 tcp 1000 ------- 0 0.0 3.0 55 131 + 4.69882 3 2 ack 40 ------- 0 3.0 0.0 55 135 - 4.69882 3 2 ack 40 ------- 0 3.0 0.0 55 135 r 4.70288 3 2 ack 40 ------- 0 3.0 0.0 54 134 + 4.70288 2 1 ack 40 ------- 0 3.0 0.0 54 134 - 4.70288 2 1 ack 40 ------- 0 3.0 0.0 54 134 r 4.70922 1 2 tcp 1000 ------- 0 0.0 3.0 57 133 + 4.70922 2 3 tcp 1000 ------- 0 0.0 3.0 57 133 - 4.70922 2 3 tcp 1000 ------- 0 0.0 3.0 57 133 r 4.71482 2 3 tcp 1000 ------- 0 0.0 3.0 56 132 + 4.71482 3 2 ack 40 ------- 0 3.0 0.0 56 136 - 4.71482 3 2 ack 40 ------- 0 3.0 0.0 56 136 r 4.71888 3 2 ack 40 ------- 0 3.0 0.0 55 135 + 4.71888 2 1 ack 40 ------- 0 3.0 0.0 55 135 - 4.71888 2 1 ack 40 ------- 0 3.0 0.0 55 135 r 4.73082 2 3 tcp 1000 ------- 0 0.0 3.0 57 133 + 4.73082 3 2 ack 40 ------- 0 3.0 0.0 57 137 - 4.73082 3 2 ack 40 ------- 0 3.0 0.0 57 137 r 4.73488 3 2 ack 40 ------- 0 3.0 0.0 56 136 + 4.73488 2 1 ack 40 ------- 0 3.0 0.0 56 136 - 4.73488 2 1 ack 40 ------- 0 3.0 0.0 56 136 r 4.75088 3 2 ack 40 ------- 0 3.0 0.0 57 137 + 4.75088 2 1 ack 40 ------- 0 3.0 0.0 57 137 - 4.75088 2 1 ack 40 ------- 0 3.0 0.0 57 137 r 4.80352 2 1 ack 40 ------- 0 3.0 0.0 54 134 + 4.80352 1 0 ack 40 ------- 0 3.0 0.0 54 134 - 4.80352 1 0 ack 40 ------- 0 3.0 0.0 54 134 r 4.81952 2 1 ack 40 ------- 0 3.0 0.0 55 135 + 4.81952 1 0 ack 40 ------- 0 3.0 0.0 55 135 - 4.81952 1 0 ack 40 ------- 0 3.0 0.0 55 135 r 4.82358 1 0 ack 40 ------- 0 3.0 0.0 54 134 + 4.82358 0 1 tcp 1000 ------- 0 0.0 3.0 58 138 - 4.82358 0 1 tcp 1000 ------- 0 0.0 3.0 58 138 r 4.83552 2 1 ack 40 ------- 0 3.0 0.0 56 136 + 4.83552 1 0 ack 40 ------- 0 3.0 0.0 56 136 - 4.83552 1 0 ack 40 ------- 0 3.0 0.0 56 136 r 4.83958 1 0 ack 40 ------- 0 3.0 0.0 55 135 + 4.83958 0 1 tcp 1000 ------- 0 0.0 3.0 59 139 - 4.83958 0 1 tcp 1000 ------- 0 0.0 3.0 59 139 r 4.84518 0 1 tcp 1000 ------- 0 0.0 3.0 58 138 + 4.84518 1 2 tcp 1000 ------- 0 0.0 3.0 58 138 - 4.84518 1 2 tcp 1000 ------- 0 0.0 3.0 58 138 r 4.85152 2 1 ack 40 ------- 0 3.0 0.0 57 137 + 4.85152 1 0 ack 40 ------- 0 3.0 0.0 57 137 - 4.85152 1 0 ack 40 ------- 0 3.0 0.0 57 137 r 4.85558 1 0 ack 40 ------- 0 3.0 0.0 56 136 + 4.85558 0 1 tcp 1000 ------- 0 0.0 3.0 60 140 - 4.85558 0 1 tcp 1000 ------- 0 0.0 3.0 60 140 r 4.86118 0 1 tcp 1000 ------- 0 0.0 3.0 59 139 + 4.86118 1 2 tcp 1000 ------- 0 0.0 3.0 59 139 - 4.86118 1 2 tcp 1000 ------- 0 0.0 3.0 59 139 r 4.87158 1 0 ack 40 ------- 0 3.0 0.0 57 137 + 4.87158 0 1 tcp 1000 ------- 0 0.0 3.0 61 141 - 4.87158 0 1 tcp 1000 ------- 0 0.0 3.0 61 141 + 4.87158 0 1 tcp 1000 ------- 0 0.0 3.0 62 142 - 4.87318 0 1 tcp 1000 ------- 0 0.0 3.0 62 142 r 4.87718 0 1 tcp 1000 ------- 0 0.0 3.0 60 140 + 4.87718 1 2 tcp 1000 ------- 0 0.0 3.0 60 140 - 4.87718 1 2 tcp 1000 ------- 0 0.0 3.0 60 140 r 4.89318 0 1 tcp 1000 ------- 0 0.0 3.0 61 141 + 4.89318 1 2 tcp 1000 ------- 0 0.0 3.0 61 141 - 4.89318 1 2 tcp 1000 ------- 0 0.0 3.0 61 141 r 4.89478 0 1 tcp 1000 ------- 0 0.0 3.0 62 142 + 4.89478 1 2 tcp 1000 ------- 0 0.0 3.0 62 142 - 4.90918 1 2 tcp 1000 ------- 0 0.0 3.0 62 142 r 4.96118 1 2 tcp 1000 ------- 0 0.0 3.0 58 138 + 4.96118 2 3 tcp 1000 ------- 0 0.0 3.0 58 138 - 4.96118 2 3 tcp 1000 ------- 0 0.0 3.0 58 138 r 4.97718 1 2 tcp 1000 ------- 0 0.0 3.0 59 139 + 4.97718 2 3 tcp 1000 ------- 0 0.0 3.0 59 139 - 4.97718 2 3 tcp 1000 ------- 0 0.0 3.0 59 139 r 4.98278 2 3 tcp 1000 ------- 0 0.0 3.0 58 138 + 4.98278 3 2 ack 40 ------- 0 3.0 0.0 58 143 - 4.98278 3 2 ack 40 ------- 0 3.0 0.0 58 143 r 4.99318 1 2 tcp 1000 ------- 0 0.0 3.0 60 140 + 4.99318 2 3 tcp 1000 ------- 0 0.0 3.0 60 140 - 4.99318 2 3 tcp 1000 ------- 0 0.0 3.0 60 140 r 4.99878 2 3 tcp 1000 ------- 0 0.0 3.0 59 139 + 4.99878 3 2 ack 40 ------- 0 3.0 0.0 59 144 - 4.99878 3 2 ack 40 ------- 0 3.0 0.0 59 144 r 5.00285 3 2 ack 40 ------- 0 3.0 0.0 58 143 + 5.00285 2 1 ack 40 ------- 0 3.0 0.0 58 143 - 5.00285 2 1 ack 40 ------- 0 3.0 0.0 58 143 r 5.00918 1 2 tcp 1000 ------- 0 0.0 3.0 61 141 + 5.00918 2 3 tcp 1000 ------- 0 0.0 3.0 61 141 - 5.00918 2 3 tcp 1000 ------- 0 0.0 3.0 61 141 r 5.01478 2 3 tcp 1000 ------- 0 0.0 3.0 60 140 + 5.01478 3 2 ack 40 ------- 0 3.0 0.0 60 145 - 5.01478 3 2 ack 40 ------- 0 3.0 0.0 60 145 r 5.01885 3 2 ack 40 ------- 0 3.0 0.0 59 144 + 5.01885 2 1 ack 40 ------- 0 3.0 0.0 59 144 - 5.01885 2 1 ack 40 ------- 0 3.0 0.0 59 144 r 5.02518 1 2 tcp 1000 ------- 0 0.0 3.0 62 142 + 5.02518 2 3 tcp 1000 ------- 0 0.0 3.0 62 142 - 5.02518 2 3 tcp 1000 ------- 0 0.0 3.0 62 142 r 5.03078 2 3 tcp 1000 ------- 0 0.0 3.0 61 141 + 5.03078 3 2 ack 40 ------- 0 3.0 0.0 61 146 - 5.03078 3 2 ack 40 ------- 0 3.0 0.0 61 146 r 5.03485 3 2 ack 40 ------- 0 3.0 0.0 60 145 + 5.03485 2 1 ack 40 ------- 0 3.0 0.0 60 145 - 5.03485 2 1 ack 40 ------- 0 3.0 0.0 60 145 r 5.04678 2 3 tcp 1000 ------- 0 0.0 3.0 62 142 + 5.04678 3 2 ack 40 ------- 0 3.0 0.0 62 147 - 5.04678 3 2 ack 40 ------- 0 3.0 0.0 62 147 r 5.05085 3 2 ack 40 ------- 0 3.0 0.0 61 146 + 5.05085 2 1 ack 40 ------- 0 3.0 0.0 61 146 - 5.05085 2 1 ack 40 ------- 0 3.0 0.0 61 146 r 5.06685 3 2 ack 40 ------- 0 3.0 0.0 62 147 + 5.06685 2 1 ack 40 ------- 0 3.0 0.0 62 147 - 5.06685 2 1 ack 40 ------- 0 3.0 0.0 62 147 nam-1.15/edu/D2-fast-retransmit.nam0000664000076400007660000041030006756705310015743 0ustar tomhnsnamV -t * -v 1.0a5 -a 1 -c 1 -F 2 -M 3 c -t * -i 0 -n black c -t * -i 1 -n red N -t * -S 0 -n {TCP session between node 0.0 and node 3.0} -p TCP -m {} N -t * -S 0 -h 71 N -t * -F 0 -M 0 -n tcp N -t * -F 1 -M 2 -n tcp_cong N -t * -F 0 -M 1 -n ack A -t * -n 1 -p 0 -o 255 -c 15 -a 1 A -t * -h 1 -m 127 -s 8 n -t * -a 0 -s 0 -S UP -v circle -c black n -t * -a 1 -s 1 -S UP -v circle -c black n -t * -a 2 -s 2 -S UP -v circle -c black n -t * -a 3 -s 3 -S UP -v circle -c black l -t * -s 0 -d 1 -S UP -r 5000000 -D 0.02 -c black -o right l -t * -s 1 -d 2 -S UP -r 500000 -D 0.10000000000000001 -c black -o right l -t * -s 2 -d 3 -S UP -r 5000000 -D 0.02 -c black -o right q -t * -s 2 -d 1 -a 0.5 q -t * -s 1 -d 2 -a 0.5 a -t 0.00000000000000000 -s 0 -d 3 -n tcp f -t 0.00000000000000000 -s 0 -d 3 -n ssthresh_ -a tcp -v 20 -T v f -t 0.00000000000000000 -s 0 -d 3 -n cwnd_ -a tcp -v 1.000000 -T v v -t 0.00000000000000000 monitor_agent 0 tcp n -t 0 -s 0 -S DLABEL -l TCP -L "" n -t 0 -s 3 -S DLABEL -l TCP -L "" v -t 0 sim_annotation 0 1 TCP with multiplicative decrease + -t 0.1 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -f 0 -m 0 -y {0 0} - -t 0.1 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} h -t 0.1 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {-1 -1} r -t 0.1216 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} + -t 0.1216 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} - -t 0.1216 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} h -t 0.1216 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {-1 -1} r -t 0.2376 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} + -t 0.2376 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} - -t 0.2376 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} h -t 0.2376 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {-1 -1} r -t 0.2592 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 0 -a 0 -S 0 -y {0 0} + -t 0.2592 -s 3 -d 2 -p ack -e 40 -c 0 -i 1 -a 0 -S 0 -y {0 0} - -t 0.2592 -s 3 -d 2 -p ack -e 40 -c 0 -i 1 -a 0 -S 0 -y {0 0} h -t 0.2592 -s 3 -d 2 -p ack -e 40 -c 0 -i 1 -a 0 -S 0 -y {-1 -1} r -t 0.279264 -s 3 -d 2 -p ack -e 40 -c 0 -i 1 -a 0 -S 0 -y {0 0} + -t 0.279264 -s 2 -d 1 -p ack -e 40 -c 0 -i 1 -a 0 -S 0 -y {0 0} - -t 0.279264 -s 2 -d 1 -p ack -e 40 -c 0 -i 1 -a 0 -S 0 -y {0 0} h -t 0.279264 -s 2 -d 1 -p ack -e 40 -c 0 -i 1 -a 0 -S 0 -y {-1 -1} r -t 0.379904 -s 2 -d 1 -p ack -e 40 -c 0 -i 1 -a 0 -S 0 -y {0 0} + -t 0.379904 -s 1 -d 0 -p ack -e 40 -c 0 -i 1 -a 0 -S 0 -y {0 0} - -t 0.379904 -s 1 -d 0 -p ack -e 40 -c 0 -i 1 -a 0 -S 0 -f 0 -m 1 -y {0 0} h -t 0.379904 -s 1 -d 0 -p ack -e 40 -c 0 -i 1 -a 0 -S 0 -y {-1 -1} r -t 0.399968 -s 1 -d 0 -p ack -e 40 -c 0 -i 1 -a 0 -S 0 -y {0 0} f -t 0.39996800000000010 -s 0 -d 3 -n cwnd_ -a tcp -v 2.000000 -o 1.000000 -T v + -t 0.399968 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -f 0 -m 0 -y {1 1} - -t 0.399968 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {1 1} h -t 0.399968 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {-1 -1} + -t 0.399968 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -f 0 -m 0 -y {2 2} - -t 0.401568 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {2 2} h -t 0.401568 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {-1 -1} r -t 0.421568 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {1 1} + -t 0.421568 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {1 1} - -t 0.421568 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {1 1} h -t 0.421568 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {-1 -1} r -t 0.423168 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {2 2} + -t 0.423168 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {2 2} - -t 0.437568 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {2 2} h -t 0.437568 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {-1 -1} r -t 0.537568 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {1 1} + -t 0.537568 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {1 1} - -t 0.537568 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {1 1} h -t 0.537568 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {-1 -1} r -t 0.553568 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {2 2} + -t 0.553568 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {2 2} - -t 0.553568 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {2 2} h -t 0.553568 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {-1 -1} r -t 0.559168 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 2 -a 0 -S 0 -y {1 1} + -t 0.559168 -s 3 -d 2 -p ack -e 40 -c 0 -i 4 -a 0 -S 0 -y {1 1} - -t 0.559168 -s 3 -d 2 -p ack -e 40 -c 0 -i 4 -a 0 -S 0 -y {1 1} h -t 0.559168 -s 3 -d 2 -p ack -e 40 -c 0 -i 4 -a 0 -S 0 -y {-1 -1} r -t 0.575168 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 3 -a 0 -S 0 -y {2 2} + -t 0.575168 -s 3 -d 2 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -y {2 2} - -t 0.575168 -s 3 -d 2 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -y {2 2} h -t 0.575168 -s 3 -d 2 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -y {-1 -1} r -t 0.579232 -s 3 -d 2 -p ack -e 40 -c 0 -i 4 -a 0 -S 0 -y {1 1} + -t 0.579232 -s 2 -d 1 -p ack -e 40 -c 0 -i 4 -a 0 -S 0 -y {1 1} - -t 0.579232 -s 2 -d 1 -p ack -e 40 -c 0 -i 4 -a 0 -S 0 -y {1 1} h -t 0.579232 -s 2 -d 1 -p ack -e 40 -c 0 -i 4 -a 0 -S 0 -y {-1 -1} r -t 0.595232 -s 3 -d 2 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -y {2 2} + -t 0.595232 -s 2 -d 1 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -y {2 2} - -t 0.595232 -s 2 -d 1 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -y {2 2} h -t 0.595232 -s 2 -d 1 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -y {-1 -1} r -t 0.679872 -s 2 -d 1 -p ack -e 40 -c 0 -i 4 -a 0 -S 0 -y {1 1} + -t 0.679872 -s 1 -d 0 -p ack -e 40 -c 0 -i 4 -a 0 -S 0 -y {1 1} - -t 0.679872 -s 1 -d 0 -p ack -e 40 -c 0 -i 4 -a 0 -S 0 -f 0 -m 1 -y {1 1} h -t 0.679872 -s 1 -d 0 -p ack -e 40 -c 0 -i 4 -a 0 -S 0 -y {-1 -1} r -t 0.695872 -s 2 -d 1 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -y {2 2} + -t 0.695872 -s 1 -d 0 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -y {2 2} - -t 0.695872 -s 1 -d 0 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -f 0 -m 1 -y {2 2} h -t 0.695872 -s 1 -d 0 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -y {-1 -1} r -t 0.699936 -s 1 -d 0 -p ack -e 40 -c 0 -i 4 -a 0 -S 0 -y {1 1} f -t 0.69993600000000000 -s 0 -d 3 -n cwnd_ -a tcp -v 3.000000 -o 2.000000 -T v + -t 0.699936 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 6 -a 0 -S 0 -f 0 -m 0 -y {3 3} - -t 0.699936 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 6 -a 0 -S 0 -y {3 3} h -t 0.699936 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 6 -a 0 -S 0 -y {-1 -1} + -t 0.699936 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 7 -a 0 -S 0 -f 0 -m 0 -y {4 4} - -t 0.701536 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 7 -a 0 -S 0 -y {4 4} h -t 0.701536 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 7 -a 0 -S 0 -y {-1 -1} r -t 0.715936 -s 1 -d 0 -p ack -e 40 -c 0 -i 5 -a 0 -S 0 -y {2 2} f -t 0.71593600000000002 -s 0 -d 3 -n cwnd_ -a tcp -v 4.000000 -o 3.000000 -T v + -t 0.715936 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 8 -a 0 -S 0 -f 0 -m 0 -y {5 5} - -t 0.715936 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 8 -a 0 -S 0 -y {5 5} h -t 0.715936 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 8 -a 0 -S 0 -y {-1 -1} + -t 0.715936 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 9 -a 0 -S 0 -f 0 -m 0 -y {6 6} - -t 0.717536 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 9 -a 0 -S 0 -y {6 6} h -t 0.717536 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 9 -a 0 -S 0 -y {-1 -1} r -t 0.721536 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 6 -a 0 -S 0 -y {3 3} + -t 0.721536 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 6 -a 0 -S 0 -y {3 3} - -t 0.721536 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 6 -a 0 -S 0 -y {3 3} h -t 0.721536 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 6 -a 0 -S 0 -y {-1 -1} r -t 0.723136 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 7 -a 0 -S 0 -y {4 4} + -t 0.723136 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 7 -a 0 -S 0 -y {4 4} r -t 0.737536 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 8 -a 0 -S 0 -y {5 5} + -t 0.737536 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 8 -a 0 -S 0 -y {5 5} - -t 0.737536 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 7 -a 0 -S 0 -y {4 4} h -t 0.737536 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 7 -a 0 -S 0 -y {-1 -1} r -t 0.739136 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 9 -a 0 -S 0 -y {6 6} + -t 0.739136 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 9 -a 0 -S 0 -y {6 6} - -t 0.753536 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 8 -a 0 -S 0 -y {5 5} h -t 0.753536 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 8 -a 0 -S 0 -y {-1 -1} - -t 0.769536 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 9 -a 0 -S 0 -y {6 6} h -t 0.769536 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 9 -a 0 -S 0 -y {-1 -1} r -t 0.837536 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 6 -a 0 -S 0 -y {3 3} + -t 0.837536 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 6 -a 0 -S 0 -y {3 3} - -t 0.837536 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 6 -a 0 -S 0 -y {3 3} h -t 0.837536 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 6 -a 0 -S 0 -y {-1 -1} r -t 0.853536 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 7 -a 0 -S 0 -y {4 4} + -t 0.853536 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 7 -a 0 -S 0 -y {4 4} - -t 0.853536 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 7 -a 0 -S 0 -y {4 4} h -t 0.853536 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 7 -a 0 -S 0 -y {-1 -1} r -t 0.859136 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 6 -a 0 -S 0 -y {3 3} + -t 0.859136 -s 3 -d 2 -p ack -e 40 -c 0 -i 10 -a 0 -S 0 -y {3 3} - -t 0.859136 -s 3 -d 2 -p ack -e 40 -c 0 -i 10 -a 0 -S 0 -y {3 3} h -t 0.859136 -s 3 -d 2 -p ack -e 40 -c 0 -i 10 -a 0 -S 0 -y {-1 -1} r -t 0.869536 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 8 -a 0 -S 0 -y {5 5} + -t 0.869536 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 8 -a 0 -S 0 -y {5 5} - -t 0.869536 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 8 -a 0 -S 0 -y {5 5} h -t 0.869536 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 8 -a 0 -S 0 -y {-1 -1} r -t 0.875136 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 7 -a 0 -S 0 -y {4 4} + -t 0.875136 -s 3 -d 2 -p ack -e 40 -c 0 -i 11 -a 0 -S 0 -y {4 4} - -t 0.875136 -s 3 -d 2 -p ack -e 40 -c 0 -i 11 -a 0 -S 0 -y {4 4} h -t 0.875136 -s 3 -d 2 -p ack -e 40 -c 0 -i 11 -a 0 -S 0 -y {-1 -1} r -t 0.8792 -s 3 -d 2 -p ack -e 40 -c 0 -i 10 -a 0 -S 0 -y {3 3} + -t 0.8792 -s 2 -d 1 -p ack -e 40 -c 0 -i 10 -a 0 -S 0 -y {3 3} - -t 0.8792 -s 2 -d 1 -p ack -e 40 -c 0 -i 10 -a 0 -S 0 -y {3 3} h -t 0.8792 -s 2 -d 1 -p ack -e 40 -c 0 -i 10 -a 0 -S 0 -y {-1 -1} r -t 0.885536 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 9 -a 0 -S 0 -y {6 6} + -t 0.885536 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 9 -a 0 -S 0 -y {6 6} - -t 0.885536 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 9 -a 0 -S 0 -y {6 6} h -t 0.885536 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 9 -a 0 -S 0 -y {-1 -1} r -t 0.891136 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 8 -a 0 -S 0 -y {5 5} + -t 0.891136 -s 3 -d 2 -p ack -e 40 -c 0 -i 12 -a 0 -S 0 -y {5 5} - -t 0.891136 -s 3 -d 2 -p ack -e 40 -c 0 -i 12 -a 0 -S 0 -y {5 5} h -t 0.891136 -s 3 -d 2 -p ack -e 40 -c 0 -i 12 -a 0 -S 0 -y {-1 -1} r -t 0.8952 -s 3 -d 2 -p ack -e 40 -c 0 -i 11 -a 0 -S 0 -y {4 4} + -t 0.8952 -s 2 -d 1 -p ack -e 40 -c 0 -i 11 -a 0 -S 0 -y {4 4} - -t 0.8952 -s 2 -d 1 -p ack -e 40 -c 0 -i 11 -a 0 -S 0 -y {4 4} h -t 0.8952 -s 2 -d 1 -p ack -e 40 -c 0 -i 11 -a 0 -S 0 -y {-1 -1} r -t 0.907136 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 9 -a 0 -S 0 -y {6 6} + -t 0.907136 -s 3 -d 2 -p ack -e 40 -c 0 -i 13 -a 0 -S 0 -y {6 6} - -t 0.907136 -s 3 -d 2 -p ack -e 40 -c 0 -i 13 -a 0 -S 0 -y {6 6} h -t 0.907136 -s 3 -d 2 -p ack -e 40 -c 0 -i 13 -a 0 -S 0 -y {-1 -1} r -t 0.9112 -s 3 -d 2 -p ack -e 40 -c 0 -i 12 -a 0 -S 0 -y {5 5} + -t 0.9112 -s 2 -d 1 -p ack -e 40 -c 0 -i 12 -a 0 -S 0 -y {5 5} - -t 0.9112 -s 2 -d 1 -p ack -e 40 -c 0 -i 12 -a 0 -S 0 -y {5 5} h -t 0.9112 -s 2 -d 1 -p ack -e 40 -c 0 -i 12 -a 0 -S 0 -y {-1 -1} r -t 0.9272 -s 3 -d 2 -p ack -e 40 -c 0 -i 13 -a 0 -S 0 -y {6 6} + -t 0.9272 -s 2 -d 1 -p ack -e 40 -c 0 -i 13 -a 0 -S 0 -y {6 6} - -t 0.9272 -s 2 -d 1 -p ack -e 40 -c 0 -i 13 -a 0 -S 0 -y {6 6} h -t 0.9272 -s 2 -d 1 -p ack -e 40 -c 0 -i 13 -a 0 -S 0 -y {-1 -1} r -t 0.97984 -s 2 -d 1 -p ack -e 40 -c 0 -i 10 -a 0 -S 0 -y {3 3} + -t 0.97984 -s 1 -d 0 -p ack -e 40 -c 0 -i 10 -a 0 -S 0 -y {3 3} - -t 0.97984 -s 1 -d 0 -p ack -e 40 -c 0 -i 10 -a 0 -S 0 -f 0 -m 1 -y {3 3} h -t 0.97984 -s 1 -d 0 -p ack -e 40 -c 0 -i 10 -a 0 -S 0 -y {-1 -1} r -t 0.99584 -s 2 -d 1 -p ack -e 40 -c 0 -i 11 -a 0 -S 0 -y {4 4} + -t 0.99584 -s 1 -d 0 -p ack -e 40 -c 0 -i 11 -a 0 -S 0 -y {4 4} - -t 0.99584 -s 1 -d 0 -p ack -e 40 -c 0 -i 11 -a 0 -S 0 -f 0 -m 1 -y {4 4} h -t 0.99584 -s 1 -d 0 -p ack -e 40 -c 0 -i 11 -a 0 -S 0 -y {-1 -1} r -t 0.999904 -s 1 -d 0 -p ack -e 40 -c 0 -i 10 -a 0 -S 0 -y {3 3} f -t 0.99990399999999979 -s 0 -d 3 -n cwnd_ -a tcp -v 5.000000 -o 4.000000 -T v + -t 0.999904 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 14 -a 0 -S 0 -f 0 -m 0 -y {7 7} - -t 0.999904 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 14 -a 0 -S 0 -y {7 7} h -t 0.999904 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 14 -a 0 -S 0 -y {-1 -1} + -t 0.999904 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 15 -a 0 -S 0 -f 0 -m 0 -y {8 8} - -t 1.0015 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 15 -a 0 -S 0 -y {8 8} h -t 1.0015 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 15 -a 0 -S 0 -y {-1 -1} r -t 1.01184 -s 2 -d 1 -p ack -e 40 -c 0 -i 12 -a 0 -S 0 -y {5 5} + -t 1.01184 -s 1 -d 0 -p ack -e 40 -c 0 -i 12 -a 0 -S 0 -y {5 5} - -t 1.01184 -s 1 -d 0 -p ack -e 40 -c 0 -i 12 -a 0 -S 0 -f 0 -m 1 -y {5 5} h -t 1.01184 -s 1 -d 0 -p ack -e 40 -c 0 -i 12 -a 0 -S 0 -y {-1 -1} r -t 1.0159 -s 1 -d 0 -p ack -e 40 -c 0 -i 11 -a 0 -S 0 -y {4 4} f -t 1.01590399999999992 -s 0 -d 3 -n cwnd_ -a tcp -v 6.000000 -o 5.000000 -T v + -t 1.0159 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 16 -a 0 -S 0 -f 0 -m 0 -y {9 9} - -t 1.0159 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 16 -a 0 -S 0 -y {9 9} h -t 1.0159 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 16 -a 0 -S 0 -y {-1 -1} + -t 1.0159 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 17 -a 0 -S 0 -f 0 -m 0 -y {10 10} - -t 1.0175 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 17 -a 0 -S 0 -y {10 10} h -t 1.0175 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 17 -a 0 -S 0 -y {-1 -1} r -t 1.0215 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 14 -a 0 -S 0 -y {7 7} + -t 1.0215 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 14 -a 0 -S 0 -y {7 7} - -t 1.0215 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 14 -a 0 -S 0 -y {7 7} h -t 1.0215 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 14 -a 0 -S 0 -y {-1 -1} r -t 1.0231 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 15 -a 0 -S 0 -y {8 8} + -t 1.0231 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 15 -a 0 -S 0 -y {8 8} r -t 1.02784 -s 2 -d 1 -p ack -e 40 -c 0 -i 13 -a 0 -S 0 -y {6 6} + -t 1.02784 -s 1 -d 0 -p ack -e 40 -c 0 -i 13 -a 0 -S 0 -y {6 6} - -t 1.02784 -s 1 -d 0 -p ack -e 40 -c 0 -i 13 -a 0 -S 0 -f 0 -m 1 -y {6 6} h -t 1.02784 -s 1 -d 0 -p ack -e 40 -c 0 -i 13 -a 0 -S 0 -y {-1 -1} r -t 1.0319 -s 1 -d 0 -p ack -e 40 -c 0 -i 12 -a 0 -S 0 -y {5 5} f -t 1.03190399999999993 -s 0 -d 3 -n cwnd_ -a tcp -v 7.000000 -o 6.000000 -T v + -t 1.0319 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -f 0 -m 0 -y {11 11} - -t 1.0319 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {11 11} h -t 1.0319 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {-1 -1} + -t 1.0319 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 19 -a 0 -S 0 -f 0 -m 0 -y {12 12} - -t 1.0335 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 19 -a 0 -S 0 -y {12 12} h -t 1.0335 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 19 -a 0 -S 0 -y {-1 -1} - -t 1.0375 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 15 -a 0 -S 0 -y {8 8} h -t 1.0375 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 15 -a 0 -S 0 -y {-1 -1} r -t 1.0375 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 16 -a 0 -S 0 -y {9 9} + -t 1.0375 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 16 -a 0 -S 0 -y {9 9} r -t 1.0391 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 17 -a 0 -S 0 -y {10 10} + -t 1.0391 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 17 -a 0 -S 0 -y {10 10} r -t 1.0479 -s 1 -d 0 -p ack -e 40 -c 0 -i 13 -a 0 -S 0 -y {6 6} f -t 1.04790399999999995 -s 0 -d 3 -n cwnd_ -a tcp -v 8.000000 -o 7.000000 -T v + -t 1.0479 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 20 -a 0 -S 0 -f 0 -m 0 -y {13 13} - -t 1.0479 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 20 -a 0 -S 0 -y {13 13} h -t 1.0479 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 20 -a 0 -S 0 -y {-1 -1} + -t 1.0479 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 21 -a 0 -S 0 -f 0 -m 0 -y {14 14} - -t 1.0495 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 21 -a 0 -S 0 -y {14 14} h -t 1.0495 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 21 -a 0 -S 0 -y {-1 -1} - -t 1.0535 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 16 -a 0 -S 0 -y {9 9} h -t 1.0535 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 16 -a 0 -S 0 -y {-1 -1} r -t 1.0535 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {11 11} + -t 1.0535 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {11 11} r -t 1.0551 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 19 -a 0 -S 0 -y {12 12} + -t 1.0551 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 19 -a 0 -S 0 -y {12 12} - -t 1.0695 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 17 -a 0 -S 0 -y {10 10} h -t 1.0695 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 17 -a 0 -S 0 -y {-1 -1} r -t 1.0695 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 20 -a 0 -S 0 -y {13 13} + -t 1.0695 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 20 -a 0 -S 0 -y {13 13} r -t 1.0711 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 21 -a 0 -S 0 -y {14 14} + -t 1.0711 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 21 -a 0 -S 0 -y {14 14} - -t 1.0855 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {11 11} h -t 1.0855 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {-1 -1} - -t 1.1015 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 19 -a 0 -S 0 -y {12 12} h -t 1.1015 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 19 -a 0 -S 0 -y {-1 -1} - -t 1.1175 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 20 -a 0 -S 0 -y {13 13} h -t 1.1175 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 20 -a 0 -S 0 -y {-1 -1} - -t 1.1335 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 21 -a 0 -S 0 -y {14 14} h -t 1.1335 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 21 -a 0 -S 0 -y {-1 -1} r -t 1.1375 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 14 -a 0 -S 0 -y {7 7} + -t 1.1375 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 14 -a 0 -S 0 -y {7 7} - -t 1.1375 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 14 -a 0 -S 0 -y {7 7} h -t 1.1375 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 14 -a 0 -S 0 -y {-1 -1} r -t 1.1535 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 15 -a 0 -S 0 -y {8 8} + -t 1.1535 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 15 -a 0 -S 0 -y {8 8} - -t 1.1535 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 15 -a 0 -S 0 -y {8 8} h -t 1.1535 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 15 -a 0 -S 0 -y {-1 -1} r -t 1.1591 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 14 -a 0 -S 0 -y {7 7} + -t 1.1591 -s 3 -d 2 -p ack -e 40 -c 0 -i 22 -a 0 -S 0 -y {7 7} - -t 1.1591 -s 3 -d 2 -p ack -e 40 -c 0 -i 22 -a 0 -S 0 -y {7 7} h -t 1.1591 -s 3 -d 2 -p ack -e 40 -c 0 -i 22 -a 0 -S 0 -y {-1 -1} r -t 1.1695 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 16 -a 0 -S 0 -y {9 9} + -t 1.1695 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 16 -a 0 -S 0 -y {9 9} - -t 1.1695 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 16 -a 0 -S 0 -y {9 9} h -t 1.1695 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 16 -a 0 -S 0 -y {-1 -1} r -t 1.1751 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 15 -a 0 -S 0 -y {8 8} + -t 1.1751 -s 3 -d 2 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {8 8} - -t 1.1751 -s 3 -d 2 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {8 8} h -t 1.1751 -s 3 -d 2 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {-1 -1} r -t 1.17917 -s 3 -d 2 -p ack -e 40 -c 0 -i 22 -a 0 -S 0 -y {7 7} + -t 1.17917 -s 2 -d 1 -p ack -e 40 -c 0 -i 22 -a 0 -S 0 -y {7 7} - -t 1.17917 -s 2 -d 1 -p ack -e 40 -c 0 -i 22 -a 0 -S 0 -y {7 7} h -t 1.17917 -s 2 -d 1 -p ack -e 40 -c 0 -i 22 -a 0 -S 0 -y {-1 -1} r -t 1.1855 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 17 -a 0 -S 0 -y {10 10} + -t 1.1855 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 17 -a 0 -S 0 -y {10 10} - -t 1.1855 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 17 -a 0 -S 0 -y {10 10} h -t 1.1855 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 17 -a 0 -S 0 -y {-1 -1} r -t 1.1911 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 16 -a 0 -S 0 -y {9 9} + -t 1.1911 -s 3 -d 2 -p ack -e 40 -c 0 -i 24 -a 0 -S 0 -y {9 9} - -t 1.1911 -s 3 -d 2 -p ack -e 40 -c 0 -i 24 -a 0 -S 0 -y {9 9} h -t 1.1911 -s 3 -d 2 -p ack -e 40 -c 0 -i 24 -a 0 -S 0 -y {-1 -1} r -t 1.19517 -s 3 -d 2 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {8 8} + -t 1.19517 -s 2 -d 1 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {8 8} - -t 1.19517 -s 2 -d 1 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {8 8} h -t 1.19517 -s 2 -d 1 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {-1 -1} r -t 1.2015 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {11 11} + -t 1.2015 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {11 11} - -t 1.2015 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {11 11} h -t 1.2015 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {-1 -1} r -t 1.2071 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 17 -a 0 -S 0 -y {10 10} + -t 1.2071 -s 3 -d 2 -p ack -e 40 -c 0 -i 25 -a 0 -S 0 -y {10 10} - -t 1.2071 -s 3 -d 2 -p ack -e 40 -c 0 -i 25 -a 0 -S 0 -y {10 10} h -t 1.2071 -s 3 -d 2 -p ack -e 40 -c 0 -i 25 -a 0 -S 0 -y {-1 -1} r -t 1.21117 -s 3 -d 2 -p ack -e 40 -c 0 -i 24 -a 0 -S 0 -y {9 9} + -t 1.21117 -s 2 -d 1 -p ack -e 40 -c 0 -i 24 -a 0 -S 0 -y {9 9} - -t 1.21117 -s 2 -d 1 -p ack -e 40 -c 0 -i 24 -a 0 -S 0 -y {9 9} h -t 1.21117 -s 2 -d 1 -p ack -e 40 -c 0 -i 24 -a 0 -S 0 -y {-1 -1} r -t 1.2175 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 19 -a 0 -S 0 -y {12 12} + -t 1.2175 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 19 -a 0 -S 0 -y {12 12} - -t 1.2175 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 19 -a 0 -S 0 -y {12 12} h -t 1.2175 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 19 -a 0 -S 0 -y {-1 -1} r -t 1.2231 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 18 -a 0 -S 0 -y {11 11} + -t 1.2231 -s 3 -d 2 -p ack -e 40 -c 0 -i 26 -a 0 -S 0 -y {11 11} - -t 1.2231 -s 3 -d 2 -p ack -e 40 -c 0 -i 26 -a 0 -S 0 -y {11 11} h -t 1.2231 -s 3 -d 2 -p ack -e 40 -c 0 -i 26 -a 0 -S 0 -y {-1 -1} r -t 1.22717 -s 3 -d 2 -p ack -e 40 -c 0 -i 25 -a 0 -S 0 -y {10 10} + -t 1.22717 -s 2 -d 1 -p ack -e 40 -c 0 -i 25 -a 0 -S 0 -y {10 10} - -t 1.22717 -s 2 -d 1 -p ack -e 40 -c 0 -i 25 -a 0 -S 0 -y {10 10} h -t 1.22717 -s 2 -d 1 -p ack -e 40 -c 0 -i 25 -a 0 -S 0 -y {-1 -1} r -t 1.2335 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 20 -a 0 -S 0 -y {13 13} + -t 1.2335 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 20 -a 0 -S 0 -y {13 13} - -t 1.2335 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 20 -a 0 -S 0 -y {13 13} h -t 1.2335 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 20 -a 0 -S 0 -y {-1 -1} r -t 1.2391 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 19 -a 0 -S 0 -y {12 12} + -t 1.2391 -s 3 -d 2 -p ack -e 40 -c 0 -i 27 -a 0 -S 0 -y {12 12} - -t 1.2391 -s 3 -d 2 -p ack -e 40 -c 0 -i 27 -a 0 -S 0 -y {12 12} h -t 1.2391 -s 3 -d 2 -p ack -e 40 -c 0 -i 27 -a 0 -S 0 -y {-1 -1} r -t 1.24317 -s 3 -d 2 -p ack -e 40 -c 0 -i 26 -a 0 -S 0 -y {11 11} + -t 1.24317 -s 2 -d 1 -p ack -e 40 -c 0 -i 26 -a 0 -S 0 -y {11 11} - -t 1.24317 -s 2 -d 1 -p ack -e 40 -c 0 -i 26 -a 0 -S 0 -y {11 11} h -t 1.24317 -s 2 -d 1 -p ack -e 40 -c 0 -i 26 -a 0 -S 0 -y {-1 -1} r -t 1.2495 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 21 -a 0 -S 0 -y {14 14} + -t 1.2495 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 21 -a 0 -S 0 -y {14 14} - -t 1.2495 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 21 -a 0 -S 0 -y {14 14} h -t 1.2495 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 21 -a 0 -S 0 -y {-1 -1} r -t 1.2551 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 20 -a 0 -S 0 -y {13 13} + -t 1.2551 -s 3 -d 2 -p ack -e 40 -c 0 -i 28 -a 0 -S 0 -y {13 13} - -t 1.2551 -s 3 -d 2 -p ack -e 40 -c 0 -i 28 -a 0 -S 0 -y {13 13} h -t 1.2551 -s 3 -d 2 -p ack -e 40 -c 0 -i 28 -a 0 -S 0 -y {-1 -1} r -t 1.25917 -s 3 -d 2 -p ack -e 40 -c 0 -i 27 -a 0 -S 0 -y {12 12} + -t 1.25917 -s 2 -d 1 -p ack -e 40 -c 0 -i 27 -a 0 -S 0 -y {12 12} - -t 1.25917 -s 2 -d 1 -p ack -e 40 -c 0 -i 27 -a 0 -S 0 -y {12 12} h -t 1.25917 -s 2 -d 1 -p ack -e 40 -c 0 -i 27 -a 0 -S 0 -y {-1 -1} r -t 1.2711 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 21 -a 0 -S 0 -y {14 14} + -t 1.2711 -s 3 -d 2 -p ack -e 40 -c 0 -i 29 -a 0 -S 0 -y {14 14} - -t 1.2711 -s 3 -d 2 -p ack -e 40 -c 0 -i 29 -a 0 -S 0 -y {14 14} h -t 1.2711 -s 3 -d 2 -p ack -e 40 -c 0 -i 29 -a 0 -S 0 -y {-1 -1} r -t 1.27517 -s 3 -d 2 -p ack -e 40 -c 0 -i 28 -a 0 -S 0 -y {13 13} + -t 1.27517 -s 2 -d 1 -p ack -e 40 -c 0 -i 28 -a 0 -S 0 -y {13 13} - -t 1.27517 -s 2 -d 1 -p ack -e 40 -c 0 -i 28 -a 0 -S 0 -y {13 13} h -t 1.27517 -s 2 -d 1 -p ack -e 40 -c 0 -i 28 -a 0 -S 0 -y {-1 -1} r -t 1.27981 -s 2 -d 1 -p ack -e 40 -c 0 -i 22 -a 0 -S 0 -y {7 7} + -t 1.27981 -s 1 -d 0 -p ack -e 40 -c 0 -i 22 -a 0 -S 0 -y {7 7} - -t 1.27981 -s 1 -d 0 -p ack -e 40 -c 0 -i 22 -a 0 -S 0 -f 0 -m 1 -y {7 7} h -t 1.27981 -s 1 -d 0 -p ack -e 40 -c 0 -i 22 -a 0 -S 0 -y {-1 -1} r -t 1.29117 -s 3 -d 2 -p ack -e 40 -c 0 -i 29 -a 0 -S 0 -y {14 14} + -t 1.29117 -s 2 -d 1 -p ack -e 40 -c 0 -i 29 -a 0 -S 0 -y {14 14} - -t 1.29117 -s 2 -d 1 -p ack -e 40 -c 0 -i 29 -a 0 -S 0 -y {14 14} h -t 1.29117 -s 2 -d 1 -p ack -e 40 -c 0 -i 29 -a 0 -S 0 -y {-1 -1} r -t 1.29581 -s 2 -d 1 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {8 8} + -t 1.29581 -s 1 -d 0 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {8 8} - -t 1.29581 -s 1 -d 0 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -f 0 -m 1 -y {8 8} h -t 1.29581 -s 1 -d 0 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {-1 -1} r -t 1.29987 -s 1 -d 0 -p ack -e 40 -c 0 -i 22 -a 0 -S 0 -y {7 7} f -t 1.29987200000000014 -s 0 -d 3 -n cwnd_ -a tcp -v 9.000000 -o 8.000000 -T v + -t 1.29987 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 30 -a 0 -S 0 -f 0 -m 0 -y {15 15} - -t 1.29987 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 30 -a 0 -S 0 -y {15 15} h -t 1.29987 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 30 -a 0 -S 0 -y {-1 -1} + -t 1.29987 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 31 -a 0 -S 0 -f 0 -m 0 -y {16 16} - -t 1.30147 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 31 -a 0 -S 0 -y {16 16} h -t 1.30147 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 31 -a 0 -S 0 -y {-1 -1} r -t 1.31181 -s 2 -d 1 -p ack -e 40 -c 0 -i 24 -a 0 -S 0 -y {9 9} + -t 1.31181 -s 1 -d 0 -p ack -e 40 -c 0 -i 24 -a 0 -S 0 -y {9 9} - -t 1.31181 -s 1 -d 0 -p ack -e 40 -c 0 -i 24 -a 0 -S 0 -f 0 -m 1 -y {9 9} h -t 1.31181 -s 1 -d 0 -p ack -e 40 -c 0 -i 24 -a 0 -S 0 -y {-1 -1} r -t 1.31587 -s 1 -d 0 -p ack -e 40 -c 0 -i 23 -a 0 -S 0 -y {8 8} f -t 1.31587200000000015 -s 0 -d 3 -n cwnd_ -a tcp -v 10.000000 -o 9.000000 -T v + -t 1.31587 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 32 -a 0 -S 0 -f 0 -m 0 -y {17 17} - -t 1.31587 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 32 -a 0 -S 0 -y {17 17} h -t 1.31587 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 32 -a 0 -S 0 -y {-1 -1} + -t 1.31587 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 33 -a 0 -S 0 -f 0 -m 0 -y {18 18} - -t 1.31747 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 33 -a 0 -S 0 -y {18 18} h -t 1.31747 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 33 -a 0 -S 0 -y {-1 -1} r -t 1.32147 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 30 -a 0 -S 0 -y {15 15} + -t 1.32147 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 30 -a 0 -S 0 -y {15 15} - -t 1.32147 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 30 -a 0 -S 0 -y {15 15} h -t 1.32147 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 30 -a 0 -S 0 -y {-1 -1} r -t 1.32307 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 31 -a 0 -S 0 -y {16 16} + -t 1.32307 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 31 -a 0 -S 0 -y {16 16} r -t 1.32781 -s 2 -d 1 -p ack -e 40 -c 0 -i 25 -a 0 -S 0 -y {10 10} + -t 1.32781 -s 1 -d 0 -p ack -e 40 -c 0 -i 25 -a 0 -S 0 -y {10 10} - -t 1.32781 -s 1 -d 0 -p ack -e 40 -c 0 -i 25 -a 0 -S 0 -f 0 -m 1 -y {10 10} h -t 1.32781 -s 1 -d 0 -p ack -e 40 -c 0 -i 25 -a 0 -S 0 -y {-1 -1} r -t 1.33187 -s 1 -d 0 -p ack -e 40 -c 0 -i 24 -a 0 -S 0 -y {9 9} f -t 1.33187200000000017 -s 0 -d 3 -n cwnd_ -a tcp -v 11.000000 -o 10.000000 -T v + -t 1.33187 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 34 -a 0 -S 0 -f 0 -m 0 -y {19 19} - -t 1.33187 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 34 -a 0 -S 0 -y {19 19} h -t 1.33187 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 34 -a 0 -S 0 -y {-1 -1} + -t 1.33187 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 35 -a 0 -S 0 -f 0 -m 0 -y {20 20} - -t 1.33347 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 35 -a 0 -S 0 -y {20 20} h -t 1.33347 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 35 -a 0 -S 0 -y {-1 -1} r -t 1.33747 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 32 -a 0 -S 0 -y {17 17} + -t 1.33747 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 32 -a 0 -S 0 -y {17 17} - -t 1.33747 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 31 -a 0 -S 0 -y {16 16} h -t 1.33747 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 31 -a 0 -S 0 -y {-1 -1} r -t 1.33907 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 33 -a 0 -S 0 -y {18 18} + -t 1.33907 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 33 -a 0 -S 0 -y {18 18} r -t 1.34381 -s 2 -d 1 -p ack -e 40 -c 0 -i 26 -a 0 -S 0 -y {11 11} + -t 1.34381 -s 1 -d 0 -p ack -e 40 -c 0 -i 26 -a 0 -S 0 -y {11 11} - -t 1.34381 -s 1 -d 0 -p ack -e 40 -c 0 -i 26 -a 0 -S 0 -f 0 -m 1 -y {11 11} h -t 1.34381 -s 1 -d 0 -p ack -e 40 -c 0 -i 26 -a 0 -S 0 -y {-1 -1} r -t 1.34787 -s 1 -d 0 -p ack -e 40 -c 0 -i 25 -a 0 -S 0 -y {10 10} f -t 1.34787200000000018 -s 0 -d 3 -n cwnd_ -a tcp -v 12.000000 -o 11.000000 -T v + -t 1.34787 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 36 -a 0 -S 0 -f 0 -m 0 -y {21 21} - -t 1.34787 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 36 -a 0 -S 0 -y {21 21} h -t 1.34787 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 36 -a 0 -S 0 -y {-1 -1} + -t 1.34787 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 37 -a 0 -S 0 -f 0 -m 0 -y {22 22} - -t 1.34947 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 37 -a 0 -S 0 -y {22 22} h -t 1.34947 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 37 -a 0 -S 0 -y {-1 -1} r -t 1.35347 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 34 -a 0 -S 0 -y {19 19} + -t 1.35347 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 34 -a 0 -S 0 -y {19 19} - -t 1.35347 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 32 -a 0 -S 0 -y {17 17} h -t 1.35347 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 32 -a 0 -S 0 -y {-1 -1} r -t 1.35507 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 35 -a 0 -S 0 -y {20 20} + -t 1.35507 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 35 -a 0 -S 0 -y {20 20} r -t 1.35981 -s 2 -d 1 -p ack -e 40 -c 0 -i 27 -a 0 -S 0 -y {12 12} + -t 1.35981 -s 1 -d 0 -p ack -e 40 -c 0 -i 27 -a 0 -S 0 -y {12 12} - -t 1.35981 -s 1 -d 0 -p ack -e 40 -c 0 -i 27 -a 0 -S 0 -f 0 -m 1 -y {12 12} h -t 1.35981 -s 1 -d 0 -p ack -e 40 -c 0 -i 27 -a 0 -S 0 -y {-1 -1} r -t 1.36387 -s 1 -d 0 -p ack -e 40 -c 0 -i 26 -a 0 -S 0 -y {11 11} f -t 1.36387200000000020 -s 0 -d 3 -n cwnd_ -a tcp -v 13.000000 -o 12.000000 -T v + -t 1.36387 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 38 -a 0 -S 0 -f 0 -m 0 -y {23 23} - -t 1.36387 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 38 -a 0 -S 0 -y {23 23} h -t 1.36387 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 38 -a 0 -S 0 -y {-1 -1} + -t 1.36387 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 39 -a 0 -S 0 -f 0 -m 0 -y {24 24} - -t 1.36547 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 39 -a 0 -S 0 -y {24 24} h -t 1.36547 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 39 -a 0 -S 0 -y {-1 -1} r -t 1.36947 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 36 -a 0 -S 0 -y {21 21} + -t 1.36947 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 36 -a 0 -S 0 -y {21 21} - -t 1.36947 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 33 -a 0 -S 0 -y {18 18} h -t 1.36947 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 33 -a 0 -S 0 -y {-1 -1} r -t 1.37107 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 37 -a 0 -S 0 -y {22 22} + -t 1.37107 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 37 -a 0 -S 0 -y {22 22} r -t 1.37581 -s 2 -d 1 -p ack -e 40 -c 0 -i 28 -a 0 -S 0 -y {13 13} + -t 1.37581 -s 1 -d 0 -p ack -e 40 -c 0 -i 28 -a 0 -S 0 -y {13 13} - -t 1.37581 -s 1 -d 0 -p ack -e 40 -c 0 -i 28 -a 0 -S 0 -f 0 -m 1 -y {13 13} h -t 1.37581 -s 1 -d 0 -p ack -e 40 -c 0 -i 28 -a 0 -S 0 -y {-1 -1} r -t 1.37987 -s 1 -d 0 -p ack -e 40 -c 0 -i 27 -a 0 -S 0 -y {12 12} f -t 1.37987200000000021 -s 0 -d 3 -n cwnd_ -a tcp -v 14.000000 -o 13.000000 -T v + -t 1.37987 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 40 -a 0 -S 0 -f 0 -m 0 -y {25 25} - -t 1.37987 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 40 -a 0 -S 0 -y {25 25} h -t 1.37987 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 40 -a 0 -S 0 -y {-1 -1} + -t 1.37987 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 41 -a 0 -S 0 -f 0 -m 0 -y {26 26} - -t 1.38147 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 41 -a 0 -S 0 -y {26 26} h -t 1.38147 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 41 -a 0 -S 0 -y {-1 -1} r -t 1.38547 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 38 -a 0 -S 0 -y {23 23} + -t 1.38547 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 38 -a 0 -S 0 -y {23 23} d -t 1.38547 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 38 -a 0 -S 0 -y {23 23} - -t 1.38547 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 34 -a 0 -S 0 -y {19 19} h -t 1.38547 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 34 -a 0 -S 0 -y {-1 -1} r -t 1.38707 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 39 -a 0 -S 0 -y {24 24} + -t 1.38707 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 39 -a 0 -S 0 -y {24 24} r -t 1.39181 -s 2 -d 1 -p ack -e 40 -c 0 -i 29 -a 0 -S 0 -y {14 14} + -t 1.39181 -s 1 -d 0 -p ack -e 40 -c 0 -i 29 -a 0 -S 0 -y {14 14} - -t 1.39181 -s 1 -d 0 -p ack -e 40 -c 0 -i 29 -a 0 -S 0 -f 0 -m 1 -y {14 14} h -t 1.39181 -s 1 -d 0 -p ack -e 40 -c 0 -i 29 -a 0 -S 0 -y {-1 -1} r -t 1.39587 -s 1 -d 0 -p ack -e 40 -c 0 -i 28 -a 0 -S 0 -y {13 13} f -t 1.39587200000000022 -s 0 -d 3 -n cwnd_ -a tcp -v 15.000000 -o 14.000000 -T v + -t 1.39587 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 42 -a 0 -S 0 -f 0 -m 0 -y {27 27} - -t 1.39587 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 42 -a 0 -S 0 -y {27 27} h -t 1.39587 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 42 -a 0 -S 0 -y {-1 -1} + -t 1.39587 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 43 -a 0 -S 0 -f 0 -m 0 -y {28 28} - -t 1.39747 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 43 -a 0 -S 0 -y {28 28} h -t 1.39747 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 43 -a 0 -S 0 -y {-1 -1} r -t 1.40147 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 40 -a 0 -S 0 -y {25 25} + -t 1.40147 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 40 -a 0 -S 0 -y {25 25} d -t 1.40147 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 40 -a 0 -S 0 -y {25 25} - -t 1.40147 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 35 -a 0 -S 0 -y {20 20} h -t 1.40147 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 35 -a 0 -S 0 -y {-1 -1} r -t 1.40307 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 41 -a 0 -S 0 -y {26 26} + -t 1.40307 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 41 -a 0 -S 0 -y {26 26} r -t 1.41187 -s 1 -d 0 -p ack -e 40 -c 0 -i 29 -a 0 -S 0 -y {14 14} f -t 1.41187200000000024 -s 0 -d 3 -n cwnd_ -a tcp -v 16.000000 -o 15.000000 -T v + -t 1.41187 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 44 -a 0 -S 0 -f 0 -m 0 -y {29 29} - -t 1.41187 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 44 -a 0 -S 0 -y {29 29} h -t 1.41187 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 44 -a 0 -S 0 -y {-1 -1} + -t 1.41187 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 45 -a 0 -S 0 -f 0 -m 0 -y {30 30} - -t 1.41347 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 45 -a 0 -S 0 -y {30 30} h -t 1.41347 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 45 -a 0 -S 0 -y {-1 -1} r -t 1.41747 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 42 -a 0 -S 0 -y {27 27} + -t 1.41747 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 42 -a 0 -S 0 -y {27 27} d -t 1.41747 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 42 -a 0 -S 0 -y {27 27} - -t 1.41747 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 36 -a 0 -S 0 -y {21 21} h -t 1.41747 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 36 -a 0 -S 0 -y {-1 -1} r -t 1.41907 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 43 -a 0 -S 0 -y {28 28} + -t 1.41907 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 43 -a 0 -S 0 -y {28 28} r -t 1.43347 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 44 -a 0 -S 0 -y {29 29} + -t 1.43347 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 44 -a 0 -S 0 -y {29 29} d -t 1.43347 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 44 -a 0 -S 0 -y {29 29} - -t 1.43347 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 37 -a 0 -S 0 -y {22 22} h -t 1.43347 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 37 -a 0 -S 0 -y {-1 -1} r -t 1.43507 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 45 -a 0 -S 0 -y {30 30} + -t 1.43507 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 45 -a 0 -S 0 -y {30 30} r -t 1.43747 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 30 -a 0 -S 0 -y {15 15} + -t 1.43747 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 30 -a 0 -S 0 -y {15 15} - -t 1.43747 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 30 -a 0 -S 0 -y {15 15} h -t 1.43747 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 30 -a 0 -S 0 -y {-1 -1} - -t 1.44947 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 39 -a 0 -S 0 -y {24 24} h -t 1.44947 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 39 -a 0 -S 0 -y {-1 -1} r -t 1.45347 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 31 -a 0 -S 0 -y {16 16} + -t 1.45347 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 31 -a 0 -S 0 -y {16 16} - -t 1.45347 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 31 -a 0 -S 0 -y {16 16} h -t 1.45347 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 31 -a 0 -S 0 -y {-1 -1} r -t 1.45907 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 30 -a 0 -S 0 -y {15 15} + -t 1.45907 -s 3 -d 2 -p ack -e 40 -c 0 -i 46 -a 0 -S 0 -y {15 15} - -t 1.45907 -s 3 -d 2 -p ack -e 40 -c 0 -i 46 -a 0 -S 0 -y {15 15} h -t 1.45907 -s 3 -d 2 -p ack -e 40 -c 0 -i 46 -a 0 -S 0 -y {-1 -1} - -t 1.46547 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 41 -a 0 -S 0 -y {26 26} h -t 1.46547 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 41 -a 0 -S 0 -y {-1 -1} r -t 1.46947 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 32 -a 0 -S 0 -y {17 17} + -t 1.46947 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 32 -a 0 -S 0 -y {17 17} - -t 1.46947 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 32 -a 0 -S 0 -y {17 17} h -t 1.46947 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 32 -a 0 -S 0 -y {-1 -1} r -t 1.47507 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 31 -a 0 -S 0 -y {16 16} + -t 1.47507 -s 3 -d 2 -p ack -e 40 -c 0 -i 47 -a 0 -S 0 -y {16 16} - -t 1.47507 -s 3 -d 2 -p ack -e 40 -c 0 -i 47 -a 0 -S 0 -y {16 16} h -t 1.47507 -s 3 -d 2 -p ack -e 40 -c 0 -i 47 -a 0 -S 0 -y {-1 -1} r -t 1.47914 -s 3 -d 2 -p ack -e 40 -c 0 -i 46 -a 0 -S 0 -y {15 15} + -t 1.47914 -s 2 -d 1 -p ack -e 40 -c 0 -i 46 -a 0 -S 0 -y {15 15} - -t 1.47914 -s 2 -d 1 -p ack -e 40 -c 0 -i 46 -a 0 -S 0 -y {15 15} h -t 1.47914 -s 2 -d 1 -p ack -e 40 -c 0 -i 46 -a 0 -S 0 -y {-1 -1} - -t 1.48147 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 43 -a 0 -S 0 -y {28 28} h -t 1.48147 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 43 -a 0 -S 0 -y {-1 -1} r -t 1.48547 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 33 -a 0 -S 0 -y {18 18} + -t 1.48547 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 33 -a 0 -S 0 -y {18 18} - -t 1.48547 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 33 -a 0 -S 0 -y {18 18} h -t 1.48547 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 33 -a 0 -S 0 -y {-1 -1} r -t 1.49107 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 32 -a 0 -S 0 -y {17 17} + -t 1.49107 -s 3 -d 2 -p ack -e 40 -c 0 -i 48 -a 0 -S 0 -y {17 17} - -t 1.49107 -s 3 -d 2 -p ack -e 40 -c 0 -i 48 -a 0 -S 0 -y {17 17} h -t 1.49107 -s 3 -d 2 -p ack -e 40 -c 0 -i 48 -a 0 -S 0 -y {-1 -1} r -t 1.49514 -s 3 -d 2 -p ack -e 40 -c 0 -i 47 -a 0 -S 0 -y {16 16} + -t 1.49514 -s 2 -d 1 -p ack -e 40 -c 0 -i 47 -a 0 -S 0 -y {16 16} - -t 1.49514 -s 2 -d 1 -p ack -e 40 -c 0 -i 47 -a 0 -S 0 -y {16 16} h -t 1.49514 -s 2 -d 1 -p ack -e 40 -c 0 -i 47 -a 0 -S 0 -y {-1 -1} - -t 1.49747 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 45 -a 0 -S 0 -y {30 30} h -t 1.49747 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 45 -a 0 -S 0 -y {-1 -1} r -t 1.50147 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 34 -a 0 -S 0 -y {19 19} + -t 1.50147 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 34 -a 0 -S 0 -y {19 19} - -t 1.50147 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 34 -a 0 -S 0 -y {19 19} h -t 1.50147 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 34 -a 0 -S 0 -y {-1 -1} r -t 1.50707 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 33 -a 0 -S 0 -y {18 18} + -t 1.50707 -s 3 -d 2 -p ack -e 40 -c 0 -i 49 -a 0 -S 0 -y {18 18} - -t 1.50707 -s 3 -d 2 -p ack -e 40 -c 0 -i 49 -a 0 -S 0 -y {18 18} h -t 1.50707 -s 3 -d 2 -p ack -e 40 -c 0 -i 49 -a 0 -S 0 -y {-1 -1} r -t 1.51114 -s 3 -d 2 -p ack -e 40 -c 0 -i 48 -a 0 -S 0 -y {17 17} + -t 1.51114 -s 2 -d 1 -p ack -e 40 -c 0 -i 48 -a 0 -S 0 -y {17 17} - -t 1.51114 -s 2 -d 1 -p ack -e 40 -c 0 -i 48 -a 0 -S 0 -y {17 17} h -t 1.51114 -s 2 -d 1 -p ack -e 40 -c 0 -i 48 -a 0 -S 0 -y {-1 -1} r -t 1.51747 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 35 -a 0 -S 0 -y {20 20} + -t 1.51747 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 35 -a 0 -S 0 -y {20 20} - -t 1.51747 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 35 -a 0 -S 0 -y {20 20} h -t 1.51747 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 35 -a 0 -S 0 -y {-1 -1} r -t 1.52307 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 34 -a 0 -S 0 -y {19 19} + -t 1.52307 -s 3 -d 2 -p ack -e 40 -c 0 -i 50 -a 0 -S 0 -y {19 19} - -t 1.52307 -s 3 -d 2 -p ack -e 40 -c 0 -i 50 -a 0 -S 0 -y {19 19} h -t 1.52307 -s 3 -d 2 -p ack -e 40 -c 0 -i 50 -a 0 -S 0 -y {-1 -1} r -t 1.52714 -s 3 -d 2 -p ack -e 40 -c 0 -i 49 -a 0 -S 0 -y {18 18} + -t 1.52714 -s 2 -d 1 -p ack -e 40 -c 0 -i 49 -a 0 -S 0 -y {18 18} - -t 1.52714 -s 2 -d 1 -p ack -e 40 -c 0 -i 49 -a 0 -S 0 -y {18 18} h -t 1.52714 -s 2 -d 1 -p ack -e 40 -c 0 -i 49 -a 0 -S 0 -y {-1 -1} r -t 1.53347 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 36 -a 0 -S 0 -y {21 21} + -t 1.53347 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 36 -a 0 -S 0 -y {21 21} - -t 1.53347 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 36 -a 0 -S 0 -y {21 21} h -t 1.53347 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 36 -a 0 -S 0 -y {-1 -1} r -t 1.53907 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 35 -a 0 -S 0 -y {20 20} + -t 1.53907 -s 3 -d 2 -p ack -e 40 -c 0 -i 51 -a 0 -S 0 -y {20 20} - -t 1.53907 -s 3 -d 2 -p ack -e 40 -c 0 -i 51 -a 0 -S 0 -y {20 20} h -t 1.53907 -s 3 -d 2 -p ack -e 40 -c 0 -i 51 -a 0 -S 0 -y {-1 -1} r -t 1.54314 -s 3 -d 2 -p ack -e 40 -c 0 -i 50 -a 0 -S 0 -y {19 19} + -t 1.54314 -s 2 -d 1 -p ack -e 40 -c 0 -i 50 -a 0 -S 0 -y {19 19} - -t 1.54314 -s 2 -d 1 -p ack -e 40 -c 0 -i 50 -a 0 -S 0 -y {19 19} h -t 1.54314 -s 2 -d 1 -p ack -e 40 -c 0 -i 50 -a 0 -S 0 -y {-1 -1} r -t 1.54947 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 37 -a 0 -S 0 -y {22 22} + -t 1.54947 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 37 -a 0 -S 0 -y {22 22} - -t 1.54947 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 37 -a 0 -S 0 -y {22 22} h -t 1.54947 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 37 -a 0 -S 0 -y {-1 -1} r -t 1.55507 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 36 -a 0 -S 0 -y {21 21} + -t 1.55507 -s 3 -d 2 -p ack -e 40 -c 0 -i 52 -a 0 -S 0 -y {21 21} - -t 1.55507 -s 3 -d 2 -p ack -e 40 -c 0 -i 52 -a 0 -S 0 -y {21 21} h -t 1.55507 -s 3 -d 2 -p ack -e 40 -c 0 -i 52 -a 0 -S 0 -y {-1 -1} r -t 1.55914 -s 3 -d 2 -p ack -e 40 -c 0 -i 51 -a 0 -S 0 -y {20 20} + -t 1.55914 -s 2 -d 1 -p ack -e 40 -c 0 -i 51 -a 0 -S 0 -y {20 20} - -t 1.55914 -s 2 -d 1 -p ack -e 40 -c 0 -i 51 -a 0 -S 0 -y {20 20} h -t 1.55914 -s 2 -d 1 -p ack -e 40 -c 0 -i 51 -a 0 -S 0 -y {-1 -1} r -t 1.56547 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 39 -a 0 -S 0 -y {24 24} + -t 1.56547 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 39 -a 0 -S 0 -y {24 24} - -t 1.56547 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 39 -a 0 -S 0 -y {24 24} h -t 1.56547 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 39 -a 0 -S 0 -y {-1 -1} r -t 1.57107 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 37 -a 0 -S 0 -y {22 22} + -t 1.57107 -s 3 -d 2 -p ack -e 40 -c 0 -i 53 -a 0 -S 0 -y {22 22} - -t 1.57107 -s 3 -d 2 -p ack -e 40 -c 0 -i 53 -a 0 -S 0 -y {22 22} h -t 1.57107 -s 3 -d 2 -p ack -e 40 -c 0 -i 53 -a 0 -S 0 -y {-1 -1} r -t 1.57514 -s 3 -d 2 -p ack -e 40 -c 0 -i 52 -a 0 -S 0 -y {21 21} + -t 1.57514 -s 2 -d 1 -p ack -e 40 -c 0 -i 52 -a 0 -S 0 -y {21 21} - -t 1.57514 -s 2 -d 1 -p ack -e 40 -c 0 -i 52 -a 0 -S 0 -y {21 21} h -t 1.57514 -s 2 -d 1 -p ack -e 40 -c 0 -i 52 -a 0 -S 0 -y {-1 -1} r -t 1.57978 -s 2 -d 1 -p ack -e 40 -c 0 -i 46 -a 0 -S 0 -y {15 15} + -t 1.57978 -s 1 -d 0 -p ack -e 40 -c 0 -i 46 -a 0 -S 0 -y {15 15} - -t 1.57978 -s 1 -d 0 -p ack -e 40 -c 0 -i 46 -a 0 -S 0 -f 0 -m 1 -y {15 15} h -t 1.57978 -s 1 -d 0 -p ack -e 40 -c 0 -i 46 -a 0 -S 0 -y {-1 -1} r -t 1.58147 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 41 -a 0 -S 0 -y {26 26} + -t 1.58147 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 41 -a 0 -S 0 -y {26 26} - -t 1.58147 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 41 -a 0 -S 0 -y {26 26} h -t 1.58147 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 41 -a 0 -S 0 -y {-1 -1} r -t 1.58707 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 39 -a 0 -S 0 -y {24 24} + -t 1.58707 -s 3 -d 2 -p ack -e 40 -c 0 -i 54 -a 0 -S 0 -y {22 22} - -t 1.58707 -s 3 -d 2 -p ack -e 40 -c 0 -i 54 -a 0 -S 0 -y {22 22} h -t 1.58707 -s 3 -d 2 -p ack -e 40 -c 0 -i 54 -a 0 -S 0 -y {-1 -1} r -t 1.59114 -s 3 -d 2 -p ack -e 40 -c 0 -i 53 -a 0 -S 0 -y {22 22} + -t 1.59114 -s 2 -d 1 -p ack -e 40 -c 0 -i 53 -a 0 -S 0 -y {22 22} - -t 1.59114 -s 2 -d 1 -p ack -e 40 -c 0 -i 53 -a 0 -S 0 -y {22 22} h -t 1.59114 -s 2 -d 1 -p ack -e 40 -c 0 -i 53 -a 0 -S 0 -y {-1 -1} r -t 1.59578 -s 2 -d 1 -p ack -e 40 -c 0 -i 47 -a 0 -S 0 -y {16 16} + -t 1.59578 -s 1 -d 0 -p ack -e 40 -c 0 -i 47 -a 0 -S 0 -y {16 16} - -t 1.59578 -s 1 -d 0 -p ack -e 40 -c 0 -i 47 -a 0 -S 0 -f 0 -m 1 -y {16 16} h -t 1.59578 -s 1 -d 0 -p ack -e 40 -c 0 -i 47 -a 0 -S 0 -y {-1 -1} r -t 1.59747 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 43 -a 0 -S 0 -y {28 28} + -t 1.59747 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 43 -a 0 -S 0 -y {28 28} - -t 1.59747 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 43 -a 0 -S 0 -y {28 28} h -t 1.59747 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 43 -a 0 -S 0 -y {-1 -1} r -t 1.59984 -s 1 -d 0 -p ack -e 40 -c 0 -i 46 -a 0 -S 0 -y {15 15} f -t 1.59984000000000059 -s 0 -d 3 -n cwnd_ -a tcp -v 17.000000 -o 16.000000 -T v + -t 1.59984 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 55 -a 0 -S 0 -f 0 -m 0 -y {31 31} - -t 1.59984 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 55 -a 0 -S 0 -y {31 31} h -t 1.59984 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 55 -a 0 -S 0 -y {-1 -1} + -t 1.59984 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 56 -a 0 -S 0 -f 0 -m 0 -y {32 32} - -t 1.60144 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 56 -a 0 -S 0 -y {32 32} h -t 1.60144 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 56 -a 0 -S 0 -y {-1 -1} r -t 1.60307 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 41 -a 0 -S 0 -y {26 26} + -t 1.60307 -s 3 -d 2 -p ack -e 40 -c 0 -i 57 -a 0 -S 0 -y {22 22} - -t 1.60307 -s 3 -d 2 -p ack -e 40 -c 0 -i 57 -a 0 -S 0 -y {22 22} h -t 1.60307 -s 3 -d 2 -p ack -e 40 -c 0 -i 57 -a 0 -S 0 -y {-1 -1} r -t 1.60714 -s 3 -d 2 -p ack -e 40 -c 0 -i 54 -a 0 -S 0 -y {22 22} + -t 1.60714 -s 2 -d 1 -p ack -e 40 -c 0 -i 54 -a 0 -S 0 -y {22 22} - -t 1.60714 -s 2 -d 1 -p ack -e 40 -c 0 -i 54 -a 0 -S 0 -y {22 22} h -t 1.60714 -s 2 -d 1 -p ack -e 40 -c 0 -i 54 -a 0 -S 0 -y {-1 -1} r -t 1.61178 -s 2 -d 1 -p ack -e 40 -c 0 -i 48 -a 0 -S 0 -y {17 17} + -t 1.61178 -s 1 -d 0 -p ack -e 40 -c 0 -i 48 -a 0 -S 0 -y {17 17} - -t 1.61178 -s 1 -d 0 -p ack -e 40 -c 0 -i 48 -a 0 -S 0 -f 0 -m 1 -y {17 17} h -t 1.61178 -s 1 -d 0 -p ack -e 40 -c 0 -i 48 -a 0 -S 0 -y {-1 -1} r -t 1.61347 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 45 -a 0 -S 0 -y {30 30} + -t 1.61347 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 45 -a 0 -S 0 -y {30 30} - -t 1.61347 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 45 -a 0 -S 0 -y {30 30} h -t 1.61347 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 45 -a 0 -S 0 -y {-1 -1} r -t 1.61584 -s 1 -d 0 -p ack -e 40 -c 0 -i 47 -a 0 -S 0 -y {16 16} f -t 1.61584000000000061 -s 0 -d 3 -n cwnd_ -a tcp -v 18.000000 -o 17.000000 -T v + -t 1.61584 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 58 -a 0 -S 0 -f 0 -m 0 -y {33 33} - -t 1.61584 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 58 -a 0 -S 0 -y {33 33} h -t 1.61584 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 58 -a 0 -S 0 -y {-1 -1} + -t 1.61584 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 59 -a 0 -S 0 -f 0 -m 0 -y {34 34} - -t 1.61744 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 59 -a 0 -S 0 -y {34 34} h -t 1.61744 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 59 -a 0 -S 0 -y {-1 -1} r -t 1.61907 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 43 -a 0 -S 0 -y {28 28} + -t 1.61907 -s 3 -d 2 -p ack -e 40 -c 0 -i 60 -a 0 -S 0 -y {22 22} - -t 1.61907 -s 3 -d 2 -p ack -e 40 -c 0 -i 60 -a 0 -S 0 -y {22 22} h -t 1.61907 -s 3 -d 2 -p ack -e 40 -c 0 -i 60 -a 0 -S 0 -y {-1 -1} r -t 1.62144 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 55 -a 0 -S 0 -y {31 31} + -t 1.62144 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 55 -a 0 -S 0 -y {31 31} - -t 1.62144 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 55 -a 0 -S 0 -y {31 31} h -t 1.62144 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 55 -a 0 -S 0 -y {-1 -1} r -t 1.62304 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 56 -a 0 -S 0 -y {32 32} + -t 1.62304 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 56 -a 0 -S 0 -y {32 32} r -t 1.62314 -s 3 -d 2 -p ack -e 40 -c 0 -i 57 -a 0 -S 0 -y {22 22} + -t 1.62314 -s 2 -d 1 -p ack -e 40 -c 0 -i 57 -a 0 -S 0 -y {22 22} - -t 1.62314 -s 2 -d 1 -p ack -e 40 -c 0 -i 57 -a 0 -S 0 -y {22 22} h -t 1.62314 -s 2 -d 1 -p ack -e 40 -c 0 -i 57 -a 0 -S 0 -y {-1 -1} r -t 1.62778 -s 2 -d 1 -p ack -e 40 -c 0 -i 49 -a 0 -S 0 -y {18 18} + -t 1.62778 -s 1 -d 0 -p ack -e 40 -c 0 -i 49 -a 0 -S 0 -y {18 18} - -t 1.62778 -s 1 -d 0 -p ack -e 40 -c 0 -i 49 -a 0 -S 0 -f 0 -m 1 -y {18 18} h -t 1.62778 -s 1 -d 0 -p ack -e 40 -c 0 -i 49 -a 0 -S 0 -y {-1 -1} r -t 1.63184 -s 1 -d 0 -p ack -e 40 -c 0 -i 48 -a 0 -S 0 -y {17 17} f -t 1.63184000000000062 -s 0 -d 3 -n cwnd_ -a tcp -v 19.000000 -o 18.000000 -T v + -t 1.63184 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 61 -a 0 -S 0 -f 0 -m 0 -y {35 35} - -t 1.63184 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 61 -a 0 -S 0 -y {35 35} h -t 1.63184 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 61 -a 0 -S 0 -y {-1 -1} + -t 1.63184 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 62 -a 0 -S 0 -f 0 -m 0 -y {36 36} - -t 1.63344 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 62 -a 0 -S 0 -y {36 36} h -t 1.63344 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 62 -a 0 -S 0 -y {-1 -1} r -t 1.63507 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 45 -a 0 -S 0 -y {30 30} + -t 1.63507 -s 3 -d 2 -p ack -e 40 -c 0 -i 63 -a 0 -S 0 -y {22 22} - -t 1.63507 -s 3 -d 2 -p ack -e 40 -c 0 -i 63 -a 0 -S 0 -y {22 22} h -t 1.63507 -s 3 -d 2 -p ack -e 40 -c 0 -i 63 -a 0 -S 0 -y {-1 -1} r -t 1.63744 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 58 -a 0 -S 0 -y {33 33} + -t 1.63744 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 58 -a 0 -S 0 -y {33 33} - -t 1.63744 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 56 -a 0 -S 0 -y {32 32} h -t 1.63744 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 56 -a 0 -S 0 -y {-1 -1} r -t 1.63904 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 59 -a 0 -S 0 -y {34 34} + -t 1.63904 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 59 -a 0 -S 0 -y {34 34} r -t 1.63914 -s 3 -d 2 -p ack -e 40 -c 0 -i 60 -a 0 -S 0 -y {22 22} + -t 1.63914 -s 2 -d 1 -p ack -e 40 -c 0 -i 60 -a 0 -S 0 -y {22 22} - -t 1.63914 -s 2 -d 1 -p ack -e 40 -c 0 -i 60 -a 0 -S 0 -y {22 22} h -t 1.63914 -s 2 -d 1 -p ack -e 40 -c 0 -i 60 -a 0 -S 0 -y {-1 -1} r -t 1.64378 -s 2 -d 1 -p ack -e 40 -c 0 -i 50 -a 0 -S 0 -y {19 19} + -t 1.64378 -s 1 -d 0 -p ack -e 40 -c 0 -i 50 -a 0 -S 0 -y {19 19} - -t 1.64378 -s 1 -d 0 -p ack -e 40 -c 0 -i 50 -a 0 -S 0 -f 0 -m 1 -y {19 19} h -t 1.64378 -s 1 -d 0 -p ack -e 40 -c 0 -i 50 -a 0 -S 0 -y {-1 -1} r -t 1.64784 -s 1 -d 0 -p ack -e 40 -c 0 -i 49 -a 0 -S 0 -y {18 18} f -t 1.64784000000000064 -s 0 -d 3 -n cwnd_ -a tcp -v 20.000000 -o 19.000000 -T v + -t 1.64784 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 64 -a 0 -S 0 -f 0 -m 0 -y {37 37} - -t 1.64784 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 64 -a 0 -S 0 -y {37 37} h -t 1.64784 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 64 -a 0 -S 0 -y {-1 -1} + -t 1.64784 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -f 0 -m 0 -y {38 38} - -t 1.64944 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {38 38} h -t 1.64944 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {-1 -1} r -t 1.65344 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 61 -a 0 -S 0 -y {35 35} + -t 1.65344 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 61 -a 0 -S 0 -y {35 35} - -t 1.65344 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 58 -a 0 -S 0 -y {33 33} h -t 1.65344 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 58 -a 0 -S 0 -y {-1 -1} r -t 1.65504 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 62 -a 0 -S 0 -y {36 36} + -t 1.65504 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 62 -a 0 -S 0 -y {36 36} r -t 1.65514 -s 3 -d 2 -p ack -e 40 -c 0 -i 63 -a 0 -S 0 -y {22 22} + -t 1.65514 -s 2 -d 1 -p ack -e 40 -c 0 -i 63 -a 0 -S 0 -y {22 22} - -t 1.65514 -s 2 -d 1 -p ack -e 40 -c 0 -i 63 -a 0 -S 0 -y {22 22} h -t 1.65514 -s 2 -d 1 -p ack -e 40 -c 0 -i 63 -a 0 -S 0 -y {-1 -1} r -t 1.65978 -s 2 -d 1 -p ack -e 40 -c 0 -i 51 -a 0 -S 0 -y {20 20} + -t 1.65978 -s 1 -d 0 -p ack -e 40 -c 0 -i 51 -a 0 -S 0 -y {20 20} - -t 1.65978 -s 1 -d 0 -p ack -e 40 -c 0 -i 51 -a 0 -S 0 -f 0 -m 1 -y {20 20} h -t 1.65978 -s 1 -d 0 -p ack -e 40 -c 0 -i 51 -a 0 -S 0 -y {-1 -1} r -t 1.66384 -s 1 -d 0 -p ack -e 40 -c 0 -i 50 -a 0 -S 0 -y {19 19} f -t 1.66384000000000065 -s 0 -d 3 -n cwnd_ -a tcp -v 20.050000 -o 20.000000 -T v + -t 1.66384 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 66 -a 0 -S 0 -f 0 -m 0 -y {39 39} - -t 1.66384 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 66 -a 0 -S 0 -y {39 39} h -t 1.66384 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 66 -a 0 -S 0 -y {-1 -1} r -t 1.66944 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 64 -a 0 -S 0 -y {37 37} + -t 1.66944 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 64 -a 0 -S 0 -y {37 37} - -t 1.66944 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 59 -a 0 -S 0 -y {34 34} h -t 1.66944 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 59 -a 0 -S 0 -y {-1 -1} r -t 1.67104 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {38 38} + -t 1.67104 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {38 38} r -t 1.67578 -s 2 -d 1 -p ack -e 40 -c 0 -i 52 -a 0 -S 0 -y {21 21} + -t 1.67578 -s 1 -d 0 -p ack -e 40 -c 0 -i 52 -a 0 -S 0 -y {21 21} - -t 1.67578 -s 1 -d 0 -p ack -e 40 -c 0 -i 52 -a 0 -S 0 -f 0 -m 1 -y {21 21} h -t 1.67578 -s 1 -d 0 -p ack -e 40 -c 0 -i 52 -a 0 -S 0 -y {-1 -1} r -t 1.67984 -s 1 -d 0 -p ack -e 40 -c 0 -i 51 -a 0 -S 0 -y {20 20} f -t 1.67984000000000067 -s 0 -d 3 -n cwnd_ -a tcp -v 20.099875 -o 20.050000 -T v + -t 1.67984 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 67 -a 0 -S 0 -f 0 -m 0 -y {40 40} - -t 1.67984 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 67 -a 0 -S 0 -y {40 40} h -t 1.67984 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 67 -a 0 -S 0 -y {-1 -1} r -t 1.68544 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 66 -a 0 -S 0 -y {39 39} + -t 1.68544 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 66 -a 0 -S 0 -y {39 39} d -t 1.68544 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 66 -a 0 -S 0 -y {39 39} - -t 1.68544 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 61 -a 0 -S 0 -y {35 35} h -t 1.68544 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 61 -a 0 -S 0 -y {-1 -1} r -t 1.69178 -s 2 -d 1 -p ack -e 40 -c 0 -i 53 -a 0 -S 0 -y {22 22} + -t 1.69178 -s 1 -d 0 -p ack -e 40 -c 0 -i 53 -a 0 -S 0 -y {22 22} - -t 1.69178 -s 1 -d 0 -p ack -e 40 -c 0 -i 53 -a 0 -S 0 -f 0 -m 1 -y {22 22} h -t 1.69178 -s 1 -d 0 -p ack -e 40 -c 0 -i 53 -a 0 -S 0 -y {-1 -1} r -t 1.69584 -s 1 -d 0 -p ack -e 40 -c 0 -i 52 -a 0 -S 0 -y {21 21} f -t 1.69584000000000068 -s 0 -d 3 -n cwnd_ -a tcp -v 20.149627 -o 20.099875 -T v + -t 1.69584 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 68 -a 0 -S 0 -f 0 -m 0 -y {41 41} - -t 1.69584 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 68 -a 0 -S 0 -y {41 41} h -t 1.69584 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 68 -a 0 -S 0 -y {-1 -1} r -t 1.70144 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 67 -a 0 -S 0 -y {40 40} + -t 1.70144 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 67 -a 0 -S 0 -y {40 40} - -t 1.70144 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 62 -a 0 -S 0 -y {36 36} h -t 1.70144 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 62 -a 0 -S 0 -y {-1 -1} r -t 1.70778 -s 2 -d 1 -p ack -e 40 -c 0 -i 54 -a 0 -S 0 -y {22 22} + -t 1.70778 -s 1 -d 0 -p ack -e 40 -c 0 -i 54 -a 0 -S 0 -y {22 22} - -t 1.70778 -s 1 -d 0 -p ack -e 40 -c 0 -i 54 -a 0 -S 0 -f 0 -m 1 -y {22 22} h -t 1.70778 -s 1 -d 0 -p ack -e 40 -c 0 -i 54 -a 0 -S 0 -y {-1 -1} r -t 1.71184 -s 1 -d 0 -p ack -e 40 -c 0 -i 53 -a 0 -S 0 -y {22 22} f -t 1.71184000000000069 -s 0 -d 3 -n cwnd_ -a tcp -v 20.199256 -o 20.149627 -T v + -t 1.71184 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 69 -a 0 -S 0 -f 0 -m 0 -y {42 42} - -t 1.71184 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 69 -a 0 -S 0 -y {42 42} h -t 1.71184 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 69 -a 0 -S 0 -y {-1 -1} r -t 1.71744 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 68 -a 0 -S 0 -y {41 41} + -t 1.71744 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 68 -a 0 -S 0 -y {41 41} - -t 1.71744 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 64 -a 0 -S 0 -y {37 37} h -t 1.71744 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 64 -a 0 -S 0 -y {-1 -1} r -t 1.72378 -s 2 -d 1 -p ack -e 40 -c 0 -i 57 -a 0 -S 0 -y {22 22} + -t 1.72378 -s 1 -d 0 -p ack -e 40 -c 0 -i 57 -a 0 -S 0 -y {22 22} - -t 1.72378 -s 1 -d 0 -p ack -e 40 -c 0 -i 57 -a 0 -S 0 -f 0 -m 1 -y {22 22} h -t 1.72378 -s 1 -d 0 -p ack -e 40 -c 0 -i 57 -a 0 -S 0 -y {-1 -1} r -t 1.72784 -s 1 -d 0 -p ack -e 40 -c 0 -i 54 -a 0 -S 0 -y {22 22} r -t 1.73344 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 69 -a 0 -S 0 -y {42 42} + -t 1.73344 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 69 -a 0 -S 0 -y {42 42} - -t 1.73344 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {38 38} h -t 1.73344 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {-1 -1} r -t 1.73744 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 55 -a 0 -S 0 -y {31 31} + -t 1.73744 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 55 -a 0 -S 0 -y {31 31} - -t 1.73744 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 55 -a 0 -S 0 -y {31 31} h -t 1.73744 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 55 -a 0 -S 0 -y {-1 -1} r -t 1.73978 -s 2 -d 1 -p ack -e 40 -c 0 -i 60 -a 0 -S 0 -y {22 22} + -t 1.73978 -s 1 -d 0 -p ack -e 40 -c 0 -i 60 -a 0 -S 0 -y {22 22} - -t 1.73978 -s 1 -d 0 -p ack -e 40 -c 0 -i 60 -a 0 -S 0 -f 0 -m 1 -y {22 22} h -t 1.73978 -s 1 -d 0 -p ack -e 40 -c 0 -i 60 -a 0 -S 0 -y {-1 -1} r -t 1.74384 -s 1 -d 0 -p ack -e 40 -c 0 -i 57 -a 0 -S 0 -y {22 22} - -t 1.74944 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 67 -a 0 -S 0 -y {40 40} h -t 1.74944 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 67 -a 0 -S 0 -y {-1 -1} r -t 1.75344 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 56 -a 0 -S 0 -y {32 32} + -t 1.75344 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 56 -a 0 -S 0 -y {32 32} - -t 1.75344 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 56 -a 0 -S 0 -y {32 32} h -t 1.75344 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 56 -a 0 -S 0 -y {-1 -1} r -t 1.75578 -s 2 -d 1 -p ack -e 40 -c 0 -i 63 -a 0 -S 0 -y {22 22} + -t 1.75578 -s 1 -d 0 -p ack -e 40 -c 0 -i 63 -a 0 -S 0 -y {22 22} - -t 1.75578 -s 1 -d 0 -p ack -e 40 -c 0 -i 63 -a 0 -S 0 -f 0 -m 1 -y {22 22} h -t 1.75578 -s 1 -d 0 -p ack -e 40 -c 0 -i 63 -a 0 -S 0 -y {-1 -1} r -t 1.75904 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 55 -a 0 -S 0 -y {31 31} + -t 1.75904 -s 3 -d 2 -p ack -e 40 -c 0 -i 70 -a 0 -S 0 -y {22 22} - -t 1.75904 -s 3 -d 2 -p ack -e 40 -c 0 -i 70 -a 0 -S 0 -y {22 22} h -t 1.75904 -s 3 -d 2 -p ack -e 40 -c 0 -i 70 -a 0 -S 0 -y {-1 -1} r -t 1.75984 -s 1 -d 0 -p ack -e 40 -c 0 -i 60 -a 0 -S 0 -y {22 22} f -t 1.75984000000000074 -s 0 -d 3 -n ssthresh_ -a tcp -v 10 -o 20 -T v f -t 1.75984000000000074 -s 0 -d 3 -n cwnd_ -a tcp -v 10.000000 -o 20.199256 -T v + -t 1.75984 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 71 -a 0 -S 0 -f 1 -m 2 -y {23 23} - -t 1.75984 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 71 -a 0 -S 0 -f 1 -y {23 23} h -t 1.75984 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 71 -a 0 -S 0 -f 1 -y {-1 -1} - -t 1.76544 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 68 -a 0 -S 0 -y {41 41} h -t 1.76544 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 68 -a 0 -S 0 -y {-1 -1} r -t 1.76944 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 58 -a 0 -S 0 -y {33 33} + -t 1.76944 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 58 -a 0 -S 0 -y {33 33} - -t 1.76944 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 58 -a 0 -S 0 -y {33 33} h -t 1.76944 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 58 -a 0 -S 0 -y {-1 -1} r -t 1.77504 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 56 -a 0 -S 0 -y {32 32} + -t 1.77504 -s 3 -d 2 -p ack -e 40 -c 0 -i 72 -a 0 -S 0 -y {22 22} - -t 1.77504 -s 3 -d 2 -p ack -e 40 -c 0 -i 72 -a 0 -S 0 -y {22 22} h -t 1.77504 -s 3 -d 2 -p ack -e 40 -c 0 -i 72 -a 0 -S 0 -y {-1 -1} r -t 1.77584 -s 1 -d 0 -p ack -e 40 -c 0 -i 63 -a 0 -S 0 -y {22 22} r -t 1.7791 -s 3 -d 2 -p ack -e 40 -c 0 -i 70 -a 0 -S 0 -y {22 22} + -t 1.7791 -s 2 -d 1 -p ack -e 40 -c 0 -i 70 -a 0 -S 0 -y {22 22} - -t 1.7791 -s 2 -d 1 -p ack -e 40 -c 0 -i 70 -a 0 -S 0 -y {22 22} h -t 1.7791 -s 2 -d 1 -p ack -e 40 -c 0 -i 70 -a 0 -S 0 -y {-1 -1} r -t 1.78144 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 71 -a 0 -S 0 -f 1 -y {23 23} + -t 1.78144 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 71 -a 0 -S 0 -f 1 -y {23 23} - -t 1.78144 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 69 -a 0 -S 0 -y {42 42} h -t 1.78144 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 69 -a 0 -S 0 -y {-1 -1} r -t 1.78544 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 59 -a 0 -S 0 -y {34 34} + -t 1.78544 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 59 -a 0 -S 0 -y {34 34} - -t 1.78544 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 59 -a 0 -S 0 -y {34 34} h -t 1.78544 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 59 -a 0 -S 0 -y {-1 -1} r -t 1.79104 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 58 -a 0 -S 0 -y {33 33} + -t 1.79104 -s 3 -d 2 -p ack -e 40 -c 0 -i 73 -a 0 -S 0 -y {22 22} - -t 1.79104 -s 3 -d 2 -p ack -e 40 -c 0 -i 73 -a 0 -S 0 -y {22 22} h -t 1.79104 -s 3 -d 2 -p ack -e 40 -c 0 -i 73 -a 0 -S 0 -y {-1 -1} r -t 1.7951 -s 3 -d 2 -p ack -e 40 -c 0 -i 72 -a 0 -S 0 -y {22 22} + -t 1.7951 -s 2 -d 1 -p ack -e 40 -c 0 -i 72 -a 0 -S 0 -y {22 22} - -t 1.7951 -s 2 -d 1 -p ack -e 40 -c 0 -i 72 -a 0 -S 0 -y {22 22} h -t 1.7951 -s 2 -d 1 -p ack -e 40 -c 0 -i 72 -a 0 -S 0 -y {-1 -1} - -t 1.79744 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 71 -a 0 -S 0 -f 1 -y {23 23} h -t 1.79744 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 71 -a 0 -S 0 -f 1 -y {-1 -1} r -t 1.80144 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 61 -a 0 -S 0 -y {35 35} + -t 1.80144 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 61 -a 0 -S 0 -y {35 35} - -t 1.80144 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 61 -a 0 -S 0 -y {35 35} h -t 1.80144 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 61 -a 0 -S 0 -y {-1 -1} r -t 1.80704 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 59 -a 0 -S 0 -y {34 34} + -t 1.80704 -s 3 -d 2 -p ack -e 40 -c 0 -i 74 -a 0 -S 0 -y {22 22} - -t 1.80704 -s 3 -d 2 -p ack -e 40 -c 0 -i 74 -a 0 -S 0 -y {22 22} h -t 1.80704 -s 3 -d 2 -p ack -e 40 -c 0 -i 74 -a 0 -S 0 -y {-1 -1} r -t 1.8111 -s 3 -d 2 -p ack -e 40 -c 0 -i 73 -a 0 -S 0 -y {22 22} + -t 1.8111 -s 2 -d 1 -p ack -e 40 -c 0 -i 73 -a 0 -S 0 -y {22 22} - -t 1.8111 -s 2 -d 1 -p ack -e 40 -c 0 -i 73 -a 0 -S 0 -y {22 22} h -t 1.8111 -s 2 -d 1 -p ack -e 40 -c 0 -i 73 -a 0 -S 0 -y {-1 -1} r -t 1.81744 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 62 -a 0 -S 0 -y {36 36} + -t 1.81744 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 62 -a 0 -S 0 -y {36 36} - -t 1.81744 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 62 -a 0 -S 0 -y {36 36} h -t 1.81744 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 62 -a 0 -S 0 -y {-1 -1} r -t 1.82304 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 61 -a 0 -S 0 -y {35 35} + -t 1.82304 -s 3 -d 2 -p ack -e 40 -c 0 -i 75 -a 0 -S 0 -y {22 22} - -t 1.82304 -s 3 -d 2 -p ack -e 40 -c 0 -i 75 -a 0 -S 0 -y {22 22} h -t 1.82304 -s 3 -d 2 -p ack -e 40 -c 0 -i 75 -a 0 -S 0 -y {-1 -1} r -t 1.8271 -s 3 -d 2 -p ack -e 40 -c 0 -i 74 -a 0 -S 0 -y {22 22} + -t 1.8271 -s 2 -d 1 -p ack -e 40 -c 0 -i 74 -a 0 -S 0 -y {22 22} - -t 1.8271 -s 2 -d 1 -p ack -e 40 -c 0 -i 74 -a 0 -S 0 -y {22 22} h -t 1.8271 -s 2 -d 1 -p ack -e 40 -c 0 -i 74 -a 0 -S 0 -y {-1 -1} r -t 1.83344 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 64 -a 0 -S 0 -y {37 37} + -t 1.83344 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 64 -a 0 -S 0 -y {37 37} - -t 1.83344 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 64 -a 0 -S 0 -y {37 37} h -t 1.83344 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 64 -a 0 -S 0 -y {-1 -1} r -t 1.83904 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 62 -a 0 -S 0 -y {36 36} + -t 1.83904 -s 3 -d 2 -p ack -e 40 -c 0 -i 76 -a 0 -S 0 -y {22 22} - -t 1.83904 -s 3 -d 2 -p ack -e 40 -c 0 -i 76 -a 0 -S 0 -y {22 22} h -t 1.83904 -s 3 -d 2 -p ack -e 40 -c 0 -i 76 -a 0 -S 0 -y {-1 -1} r -t 1.8431 -s 3 -d 2 -p ack -e 40 -c 0 -i 75 -a 0 -S 0 -y {22 22} + -t 1.8431 -s 2 -d 1 -p ack -e 40 -c 0 -i 75 -a 0 -S 0 -y {22 22} - -t 1.8431 -s 2 -d 1 -p ack -e 40 -c 0 -i 75 -a 0 -S 0 -y {22 22} h -t 1.8431 -s 2 -d 1 -p ack -e 40 -c 0 -i 75 -a 0 -S 0 -y {-1 -1} r -t 1.84944 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {38 38} + -t 1.84944 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {38 38} - -t 1.84944 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {38 38} h -t 1.84944 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {-1 -1} r -t 1.85504 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 64 -a 0 -S 0 -y {37 37} + -t 1.85504 -s 3 -d 2 -p ack -e 40 -c 0 -i 77 -a 0 -S 0 -y {22 22} - -t 1.85504 -s 3 -d 2 -p ack -e 40 -c 0 -i 77 -a 0 -S 0 -y {22 22} h -t 1.85504 -s 3 -d 2 -p ack -e 40 -c 0 -i 77 -a 0 -S 0 -y {-1 -1} r -t 1.8591 -s 3 -d 2 -p ack -e 40 -c 0 -i 76 -a 0 -S 0 -y {22 22} + -t 1.8591 -s 2 -d 1 -p ack -e 40 -c 0 -i 76 -a 0 -S 0 -y {22 22} - -t 1.8591 -s 2 -d 1 -p ack -e 40 -c 0 -i 76 -a 0 -S 0 -y {22 22} h -t 1.8591 -s 2 -d 1 -p ack -e 40 -c 0 -i 76 -a 0 -S 0 -y {-1 -1} r -t 1.86544 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 67 -a 0 -S 0 -y {40 40} + -t 1.86544 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 67 -a 0 -S 0 -y {40 40} - -t 1.86544 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 67 -a 0 -S 0 -y {40 40} h -t 1.86544 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 67 -a 0 -S 0 -y {-1 -1} r -t 1.87104 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 65 -a 0 -S 0 -y {38 38} + -t 1.87104 -s 3 -d 2 -p ack -e 40 -c 0 -i 78 -a 0 -S 0 -y {22 22} - -t 1.87104 -s 3 -d 2 -p ack -e 40 -c 0 -i 78 -a 0 -S 0 -y {22 22} h -t 1.87104 -s 3 -d 2 -p ack -e 40 -c 0 -i 78 -a 0 -S 0 -y {-1 -1} r -t 1.8751 -s 3 -d 2 -p ack -e 40 -c 0 -i 77 -a 0 -S 0 -y {22 22} + -t 1.8751 -s 2 -d 1 -p ack -e 40 -c 0 -i 77 -a 0 -S 0 -y {22 22} - -t 1.8751 -s 2 -d 1 -p ack -e 40 -c 0 -i 77 -a 0 -S 0 -y {22 22} h -t 1.8751 -s 2 -d 1 -p ack -e 40 -c 0 -i 77 -a 0 -S 0 -y {-1 -1} r -t 1.87974 -s 2 -d 1 -p ack -e 40 -c 0 -i 70 -a 0 -S 0 -y {22 22} + -t 1.87974 -s 1 -d 0 -p ack -e 40 -c 0 -i 70 -a 0 -S 0 -y {22 22} - -t 1.87974 -s 1 -d 0 -p ack -e 40 -c 0 -i 70 -a 0 -S 0 -f 0 -m 1 -y {22 22} h -t 1.87974 -s 1 -d 0 -p ack -e 40 -c 0 -i 70 -a 0 -S 0 -y {-1 -1} r -t 1.88144 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 68 -a 0 -S 0 -y {41 41} + -t 1.88144 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 68 -a 0 -S 0 -y {41 41} - -t 1.88144 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 68 -a 0 -S 0 -y {41 41} h -t 1.88144 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 68 -a 0 -S 0 -y {-1 -1} r -t 1.88704 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 67 -a 0 -S 0 -y {40 40} + -t 1.88704 -s 3 -d 2 -p ack -e 40 -c 0 -i 79 -a 0 -S 0 -y {22 22} - -t 1.88704 -s 3 -d 2 -p ack -e 40 -c 0 -i 79 -a 0 -S 0 -y {22 22} h -t 1.88704 -s 3 -d 2 -p ack -e 40 -c 0 -i 79 -a 0 -S 0 -y {-1 -1} r -t 1.8911 -s 3 -d 2 -p ack -e 40 -c 0 -i 78 -a 0 -S 0 -y {22 22} + -t 1.8911 -s 2 -d 1 -p ack -e 40 -c 0 -i 78 -a 0 -S 0 -y {22 22} - -t 1.8911 -s 2 -d 1 -p ack -e 40 -c 0 -i 78 -a 0 -S 0 -y {22 22} h -t 1.8911 -s 2 -d 1 -p ack -e 40 -c 0 -i 78 -a 0 -S 0 -y {-1 -1} r -t 1.89574 -s 2 -d 1 -p ack -e 40 -c 0 -i 72 -a 0 -S 0 -y {22 22} + -t 1.89574 -s 1 -d 0 -p ack -e 40 -c 0 -i 72 -a 0 -S 0 -y {22 22} - -t 1.89574 -s 1 -d 0 -p ack -e 40 -c 0 -i 72 -a 0 -S 0 -f 0 -m 1 -y {22 22} h -t 1.89574 -s 1 -d 0 -p ack -e 40 -c 0 -i 72 -a 0 -S 0 -y {-1 -1} r -t 1.89744 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 69 -a 0 -S 0 -y {42 42} + -t 1.89744 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 69 -a 0 -S 0 -y {42 42} - -t 1.89744 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 69 -a 0 -S 0 -y {42 42} h -t 1.89744 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 69 -a 0 -S 0 -y {-1 -1} r -t 1.89981 -s 1 -d 0 -p ack -e 40 -c 0 -i 70 -a 0 -S 0 -y {22 22} r -t 1.90304 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 68 -a 0 -S 0 -y {41 41} + -t 1.90304 -s 3 -d 2 -p ack -e 40 -c 0 -i 80 -a 0 -S 0 -y {22 22} - -t 1.90304 -s 3 -d 2 -p ack -e 40 -c 0 -i 80 -a 0 -S 0 -y {22 22} h -t 1.90304 -s 3 -d 2 -p ack -e 40 -c 0 -i 80 -a 0 -S 0 -y {-1 -1} r -t 1.9071 -s 3 -d 2 -p ack -e 40 -c 0 -i 79 -a 0 -S 0 -y {22 22} + -t 1.9071 -s 2 -d 1 -p ack -e 40 -c 0 -i 79 -a 0 -S 0 -y {22 22} - -t 1.9071 -s 2 -d 1 -p ack -e 40 -c 0 -i 79 -a 0 -S 0 -y {22 22} h -t 1.9071 -s 2 -d 1 -p ack -e 40 -c 0 -i 79 -a 0 -S 0 -y {-1 -1} r -t 1.91174 -s 2 -d 1 -p ack -e 40 -c 0 -i 73 -a 0 -S 0 -y {22 22} + -t 1.91174 -s 1 -d 0 -p ack -e 40 -c 0 -i 73 -a 0 -S 0 -y {22 22} - -t 1.91174 -s 1 -d 0 -p ack -e 40 -c 0 -i 73 -a 0 -S 0 -f 0 -m 1 -y {22 22} h -t 1.91174 -s 1 -d 0 -p ack -e 40 -c 0 -i 73 -a 0 -S 0 -y {-1 -1} r -t 1.91344 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 71 -a 0 -S 0 -f 1 -y {23 23} + -t 1.91344 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 71 -a 0 -S 0 -f 1 -y {23 23} - -t 1.91344 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 71 -a 0 -S 0 -f 1 -y {23 23} h -t 1.91344 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 71 -a 0 -S 0 -f 1 -y {-1 -1} r -t 1.91581 -s 1 -d 0 -p ack -e 40 -c 0 -i 72 -a 0 -S 0 -y {22 22} r -t 1.91904 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 69 -a 0 -S 0 -y {42 42} + -t 1.91904 -s 3 -d 2 -p ack -e 40 -c 0 -i 81 -a 0 -S 0 -y {22 22} - -t 1.91904 -s 3 -d 2 -p ack -e 40 -c 0 -i 81 -a 0 -S 0 -y {22 22} h -t 1.91904 -s 3 -d 2 -p ack -e 40 -c 0 -i 81 -a 0 -S 0 -y {-1 -1} r -t 1.9231 -s 3 -d 2 -p ack -e 40 -c 0 -i 80 -a 0 -S 0 -y {22 22} + -t 1.9231 -s 2 -d 1 -p ack -e 40 -c 0 -i 80 -a 0 -S 0 -y {22 22} - -t 1.9231 -s 2 -d 1 -p ack -e 40 -c 0 -i 80 -a 0 -S 0 -y {22 22} h -t 1.9231 -s 2 -d 1 -p ack -e 40 -c 0 -i 80 -a 0 -S 0 -y {-1 -1} r -t 1.92774 -s 2 -d 1 -p ack -e 40 -c 0 -i 74 -a 0 -S 0 -y {22 22} + -t 1.92774 -s 1 -d 0 -p ack -e 40 -c 0 -i 74 -a 0 -S 0 -y {22 22} - -t 1.92774 -s 1 -d 0 -p ack -e 40 -c 0 -i 74 -a 0 -S 0 -f 0 -m 1 -y {22 22} h -t 1.92774 -s 1 -d 0 -p ack -e 40 -c 0 -i 74 -a 0 -S 0 -y {-1 -1} r -t 1.93181 -s 1 -d 0 -p ack -e 40 -c 0 -i 73 -a 0 -S 0 -y {22 22} r -t 1.93504 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 71 -a 0 -S 0 -f 1 -y {23 23} + -t 1.93504 -s 3 -d 2 -p ack -e 40 -c 0 -i 82 -a 0 -S 0 -y {24 24} - -t 1.93504 -s 3 -d 2 -p ack -e 40 -c 0 -i 82 -a 0 -S 0 -y {24 24} h -t 1.93504 -s 3 -d 2 -p ack -e 40 -c 0 -i 82 -a 0 -S 0 -y {-1 -1} r -t 1.9391 -s 3 -d 2 -p ack -e 40 -c 0 -i 81 -a 0 -S 0 -y {22 22} + -t 1.9391 -s 2 -d 1 -p ack -e 40 -c 0 -i 81 -a 0 -S 0 -y {22 22} - -t 1.9391 -s 2 -d 1 -p ack -e 40 -c 0 -i 81 -a 0 -S 0 -y {22 22} h -t 1.9391 -s 2 -d 1 -p ack -e 40 -c 0 -i 81 -a 0 -S 0 -y {-1 -1} r -t 1.94374 -s 2 -d 1 -p ack -e 40 -c 0 -i 75 -a 0 -S 0 -y {22 22} + -t 1.94374 -s 1 -d 0 -p ack -e 40 -c 0 -i 75 -a 0 -S 0 -y {22 22} - -t 1.94374 -s 1 -d 0 -p ack -e 40 -c 0 -i 75 -a 0 -S 0 -f 0 -m 1 -y {22 22} h -t 1.94374 -s 1 -d 0 -p ack -e 40 -c 0 -i 75 -a 0 -S 0 -y {-1 -1} r -t 1.94781 -s 1 -d 0 -p ack -e 40 -c 0 -i 74 -a 0 -S 0 -y {22 22} r -t 1.9551 -s 3 -d 2 -p ack -e 40 -c 0 -i 82 -a 0 -S 0 -y {24 24} + -t 1.9551 -s 2 -d 1 -p ack -e 40 -c 0 -i 82 -a 0 -S 0 -y {24 24} - -t 1.9551 -s 2 -d 1 -p ack -e 40 -c 0 -i 82 -a 0 -S 0 -y {24 24} h -t 1.9551 -s 2 -d 1 -p ack -e 40 -c 0 -i 82 -a 0 -S 0 -y {-1 -1} r -t 1.95974 -s 2 -d 1 -p ack -e 40 -c 0 -i 76 -a 0 -S 0 -y {22 22} + -t 1.95974 -s 1 -d 0 -p ack -e 40 -c 0 -i 76 -a 0 -S 0 -y {22 22} - -t 1.95974 -s 1 -d 0 -p ack -e 40 -c 0 -i 76 -a 0 -S 0 -f 0 -m 1 -y {22 22} h -t 1.95974 -s 1 -d 0 -p ack -e 40 -c 0 -i 76 -a 0 -S 0 -y {-1 -1} r -t 1.96381 -s 1 -d 0 -p ack -e 40 -c 0 -i 75 -a 0 -S 0 -y {22 22} r -t 1.97574 -s 2 -d 1 -p ack -e 40 -c 0 -i 77 -a 0 -S 0 -y {22 22} + -t 1.97574 -s 1 -d 0 -p ack -e 40 -c 0 -i 77 -a 0 -S 0 -y {22 22} - -t 1.97574 -s 1 -d 0 -p ack -e 40 -c 0 -i 77 -a 0 -S 0 -f 0 -m 1 -y {22 22} h -t 1.97574 -s 1 -d 0 -p ack -e 40 -c 0 -i 77 -a 0 -S 0 -y {-1 -1} r -t 1.97981 -s 1 -d 0 -p ack -e 40 -c 0 -i 76 -a 0 -S 0 -y {22 22} r -t 1.99174 -s 2 -d 1 -p ack -e 40 -c 0 -i 78 -a 0 -S 0 -y {22 22} + -t 1.99174 -s 1 -d 0 -p ack -e 40 -c 0 -i 78 -a 0 -S 0 -y {22 22} - -t 1.99174 -s 1 -d 0 -p ack -e 40 -c 0 -i 78 -a 0 -S 0 -f 0 -m 1 -y {22 22} h -t 1.99174 -s 1 -d 0 -p ack -e 40 -c 0 -i 78 -a 0 -S 0 -y {-1 -1} r -t 1.99581 -s 1 -d 0 -p ack -e 40 -c 0 -i 77 -a 0 -S 0 -y {22 22} r -t 2.00774 -s 2 -d 1 -p ack -e 40 -c 0 -i 79 -a 0 -S 0 -y {22 22} + -t 2.00774 -s 1 -d 0 -p ack -e 40 -c 0 -i 79 -a 0 -S 0 -y {22 22} - -t 2.00774 -s 1 -d 0 -p ack -e 40 -c 0 -i 79 -a 0 -S 0 -f 0 -m 1 -y {22 22} h -t 2.00774 -s 1 -d 0 -p ack -e 40 -c 0 -i 79 -a 0 -S 0 -y {-1 -1} r -t 2.01181 -s 1 -d 0 -p ack -e 40 -c 0 -i 78 -a 0 -S 0 -y {22 22} r -t 2.02374 -s 2 -d 1 -p ack -e 40 -c 0 -i 80 -a 0 -S 0 -y {22 22} + -t 2.02374 -s 1 -d 0 -p ack -e 40 -c 0 -i 80 -a 0 -S 0 -y {22 22} - -t 2.02374 -s 1 -d 0 -p ack -e 40 -c 0 -i 80 -a 0 -S 0 -f 0 -m 1 -y {22 22} h -t 2.02374 -s 1 -d 0 -p ack -e 40 -c 0 -i 80 -a 0 -S 0 -y {-1 -1} r -t 2.02781 -s 1 -d 0 -p ack -e 40 -c 0 -i 79 -a 0 -S 0 -y {22 22} r -t 2.03974 -s 2 -d 1 -p ack -e 40 -c 0 -i 81 -a 0 -S 0 -y {22 22} + -t 2.03974 -s 1 -d 0 -p ack -e 40 -c 0 -i 81 -a 0 -S 0 -y {22 22} - -t 2.03974 -s 1 -d 0 -p ack -e 40 -c 0 -i 81 -a 0 -S 0 -f 0 -m 1 -y {22 22} h -t 2.03974 -s 1 -d 0 -p ack -e 40 -c 0 -i 81 -a 0 -S 0 -y {-1 -1} r -t 2.04381 -s 1 -d 0 -p ack -e 40 -c 0 -i 80 -a 0 -S 0 -y {22 22} r -t 2.05574 -s 2 -d 1 -p ack -e 40 -c 0 -i 82 -a 0 -S 0 -y {24 24} + -t 2.05574 -s 1 -d 0 -p ack -e 40 -c 0 -i 82 -a 0 -S 0 -y {24 24} - -t 2.05574 -s 1 -d 0 -p ack -e 40 -c 0 -i 82 -a 0 -S 0 -f 0 -m 1 -y {24 24} h -t 2.05574 -s 1 -d 0 -p ack -e 40 -c 0 -i 82 -a 0 -S 0 -y {-1 -1} r -t 2.05981 -s 1 -d 0 -p ack -e 40 -c 0 -i 81 -a 0 -S 0 -y {22 22} r -t 2.07581 -s 1 -d 0 -p ack -e 40 -c 0 -i 82 -a 0 -S 0 -y {24 24} f -t 2.07580800000000121 -s 0 -d 3 -n cwnd_ -a tcp -v 10.100000 -o 10.000000 -T v f -t 2.67580800000000130 -s 0 -d 3 -n ssthresh_ -a tcp -v 5 -o 10 -T v f -t 2.67580800000000130 -s 0 -d 3 -n cwnd_ -a tcp -v 1.000000 -o 10.100000 -T v + -t 2.67581 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 83 -a 0 -S 0 -f 1 -m 2 -y {25 25} - -t 2.67581 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 83 -a 0 -S 0 -f 1 -y {25 25} h -t 2.67581 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 83 -a 0 -S 0 -f 1 -y {-1 -1} r -t 2.69741 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 83 -a 0 -S 0 -f 1 -y {25 25} + -t 2.69741 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 83 -a 0 -S 0 -f 1 -y {25 25} - -t 2.69741 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 83 -a 0 -S 0 -f 1 -y {25 25} h -t 2.69741 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 83 -a 0 -S 0 -f 1 -y {-1 -1} r -t 2.81341 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 83 -a 0 -S 0 -f 1 -y {25 25} + -t 2.81341 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 83 -a 0 -S 0 -f 1 -y {25 25} - -t 2.81341 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 83 -a 0 -S 0 -f 1 -y {25 25} h -t 2.81341 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 83 -a 0 -S 0 -f 1 -y {-1 -1} r -t 2.83501 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 83 -a 0 -S 0 -f 1 -y {25 25} + -t 2.83501 -s 3 -d 2 -p ack -e 40 -c 0 -i 84 -a 0 -S 0 -y {26 26} - -t 2.83501 -s 3 -d 2 -p ack -e 40 -c 0 -i 84 -a 0 -S 0 -y {26 26} h -t 2.83501 -s 3 -d 2 -p ack -e 40 -c 0 -i 84 -a 0 -S 0 -y {-1 -1} r -t 2.85507 -s 3 -d 2 -p ack -e 40 -c 0 -i 84 -a 0 -S 0 -y {26 26} + -t 2.85507 -s 2 -d 1 -p ack -e 40 -c 0 -i 84 -a 0 -S 0 -y {26 26} - -t 2.85507 -s 2 -d 1 -p ack -e 40 -c 0 -i 84 -a 0 -S 0 -y {26 26} h -t 2.85507 -s 2 -d 1 -p ack -e 40 -c 0 -i 84 -a 0 -S 0 -y {-1 -1} r -t 2.95571 -s 2 -d 1 -p ack -e 40 -c 0 -i 84 -a 0 -S 0 -y {26 26} + -t 2.95571 -s 1 -d 0 -p ack -e 40 -c 0 -i 84 -a 0 -S 0 -y {26 26} - -t 2.95571 -s 1 -d 0 -p ack -e 40 -c 0 -i 84 -a 0 -S 0 -f 0 -m 1 -y {26 26} h -t 2.95571 -s 1 -d 0 -p ack -e 40 -c 0 -i 84 -a 0 -S 0 -y {-1 -1} r -t 2.97578 -s 1 -d 0 -p ack -e 40 -c 0 -i 84 -a 0 -S 0 -y {26 26} f -t 2.97577600000000109 -s 0 -d 3 -n cwnd_ -a tcp -v 2.000000 -o 1.000000 -T v + -t 2.97578 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 85 -a 0 -S 0 -f 0 -m 0 -y {27 27} - -t 2.97578 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 85 -a 0 -S 0 -y {27 27} h -t 2.97578 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 85 -a 0 -S 0 -y {-1 -1} + -t 2.97578 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 86 -a 0 -S 0 -f 0 -m 0 -y {28 28} - -t 2.97738 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 86 -a 0 -S 0 -y {28 28} h -t 2.97738 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 86 -a 0 -S 0 -y {-1 -1} r -t 2.99738 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 85 -a 0 -S 0 -y {27 27} + -t 2.99738 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 85 -a 0 -S 0 -y {27 27} - -t 2.99738 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 85 -a 0 -S 0 -y {27 27} h -t 2.99738 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 85 -a 0 -S 0 -y {-1 -1} r -t 2.99898 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 86 -a 0 -S 0 -y {28 28} + -t 2.99898 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 86 -a 0 -S 0 -y {28 28} - -t 3.01338 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 86 -a 0 -S 0 -y {28 28} h -t 3.01338 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 86 -a 0 -S 0 -y {-1 -1} r -t 3.11338 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 85 -a 0 -S 0 -y {27 27} + -t 3.11338 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 85 -a 0 -S 0 -y {27 27} - -t 3.11338 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 85 -a 0 -S 0 -y {27 27} h -t 3.11338 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 85 -a 0 -S 0 -y {-1 -1} r -t 3.12938 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 86 -a 0 -S 0 -y {28 28} + -t 3.12938 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 86 -a 0 -S 0 -y {28 28} - -t 3.12938 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 86 -a 0 -S 0 -y {28 28} h -t 3.12938 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 86 -a 0 -S 0 -y {-1 -1} r -t 3.13498 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 85 -a 0 -S 0 -y {27 27} + -t 3.13498 -s 3 -d 2 -p ack -e 40 -c 0 -i 87 -a 0 -S 0 -y {28 28} - -t 3.13498 -s 3 -d 2 -p ack -e 40 -c 0 -i 87 -a 0 -S 0 -y {28 28} h -t 3.13498 -s 3 -d 2 -p ack -e 40 -c 0 -i 87 -a 0 -S 0 -y {-1 -1} r -t 3.15098 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 86 -a 0 -S 0 -y {28 28} + -t 3.15098 -s 3 -d 2 -p ack -e 40 -c 0 -i 88 -a 0 -S 0 -y {28 28} - -t 3.15098 -s 3 -d 2 -p ack -e 40 -c 0 -i 88 -a 0 -S 0 -y {28 28} h -t 3.15098 -s 3 -d 2 -p ack -e 40 -c 0 -i 88 -a 0 -S 0 -y {-1 -1} r -t 3.15504 -s 3 -d 2 -p ack -e 40 -c 0 -i 87 -a 0 -S 0 -y {28 28} + -t 3.15504 -s 2 -d 1 -p ack -e 40 -c 0 -i 87 -a 0 -S 0 -y {28 28} - -t 3.15504 -s 2 -d 1 -p ack -e 40 -c 0 -i 87 -a 0 -S 0 -y {28 28} h -t 3.15504 -s 2 -d 1 -p ack -e 40 -c 0 -i 87 -a 0 -S 0 -y {-1 -1} r -t 3.17104 -s 3 -d 2 -p ack -e 40 -c 0 -i 88 -a 0 -S 0 -y {28 28} + -t 3.17104 -s 2 -d 1 -p ack -e 40 -c 0 -i 88 -a 0 -S 0 -y {28 28} - -t 3.17104 -s 2 -d 1 -p ack -e 40 -c 0 -i 88 -a 0 -S 0 -y {28 28} h -t 3.17104 -s 2 -d 1 -p ack -e 40 -c 0 -i 88 -a 0 -S 0 -y {-1 -1} r -t 3.25568 -s 2 -d 1 -p ack -e 40 -c 0 -i 87 -a 0 -S 0 -y {28 28} + -t 3.25568 -s 1 -d 0 -p ack -e 40 -c 0 -i 87 -a 0 -S 0 -y {28 28} - -t 3.25568 -s 1 -d 0 -p ack -e 40 -c 0 -i 87 -a 0 -S 0 -f 0 -m 1 -y {28 28} h -t 3.25568 -s 1 -d 0 -p ack -e 40 -c 0 -i 87 -a 0 -S 0 -y {-1 -1} r -t 3.27168 -s 2 -d 1 -p ack -e 40 -c 0 -i 88 -a 0 -S 0 -y {28 28} + -t 3.27168 -s 1 -d 0 -p ack -e 40 -c 0 -i 88 -a 0 -S 0 -y {28 28} - -t 3.27168 -s 1 -d 0 -p ack -e 40 -c 0 -i 88 -a 0 -S 0 -f 0 -m 1 -y {28 28} h -t 3.27168 -s 1 -d 0 -p ack -e 40 -c 0 -i 88 -a 0 -S 0 -y {-1 -1} r -t 3.27574 -s 1 -d 0 -p ack -e 40 -c 0 -i 87 -a 0 -S 0 -y {28 28} f -t 3.27574400000000088 -s 0 -d 3 -n cwnd_ -a tcp -v 3.000000 -o 2.000000 -T v + -t 3.27574 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 89 -a 0 -S 0 -f 0 -m 0 -y {29 29} - -t 3.27574 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 89 -a 0 -S 0 -y {29 29} h -t 3.27574 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 89 -a 0 -S 0 -y {-1 -1} + -t 3.27574 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 90 -a 0 -S 0 -f 0 -m 0 -y {30 30} + -t 3.27574 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 91 -a 0 -S 0 -f 0 -m 0 -y {31 31} - -t 3.27734 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 90 -a 0 -S 0 -y {30 30} h -t 3.27734 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 90 -a 0 -S 0 -y {-1 -1} - -t 3.27894 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 91 -a 0 -S 0 -y {31 31} h -t 3.27894 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 91 -a 0 -S 0 -y {-1 -1} r -t 3.29174 -s 1 -d 0 -p ack -e 40 -c 0 -i 88 -a 0 -S 0 -y {28 28} r -t 3.29734 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 89 -a 0 -S 0 -y {29 29} + -t 3.29734 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 89 -a 0 -S 0 -y {29 29} - -t 3.29734 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 89 -a 0 -S 0 -y {29 29} h -t 3.29734 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 89 -a 0 -S 0 -y {-1 -1} r -t 3.29894 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 90 -a 0 -S 0 -y {30 30} + -t 3.29894 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 90 -a 0 -S 0 -y {30 30} r -t 3.30054 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 91 -a 0 -S 0 -y {31 31} + -t 3.30054 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 91 -a 0 -S 0 -y {31 31} - -t 3.31334 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 90 -a 0 -S 0 -y {30 30} h -t 3.31334 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 90 -a 0 -S 0 -y {-1 -1} - -t 3.32934 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 91 -a 0 -S 0 -y {31 31} h -t 3.32934 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 91 -a 0 -S 0 -y {-1 -1} r -t 3.41334 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 89 -a 0 -S 0 -y {29 29} + -t 3.41334 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 89 -a 0 -S 0 -y {29 29} - -t 3.41334 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 89 -a 0 -S 0 -y {29 29} h -t 3.41334 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 89 -a 0 -S 0 -y {-1 -1} r -t 3.42934 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 90 -a 0 -S 0 -y {30 30} + -t 3.42934 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 90 -a 0 -S 0 -y {30 30} - -t 3.42934 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 90 -a 0 -S 0 -y {30 30} h -t 3.42934 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 90 -a 0 -S 0 -y {-1 -1} r -t 3.43494 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 89 -a 0 -S 0 -y {29 29} + -t 3.43494 -s 3 -d 2 -p ack -e 40 -c 0 -i 92 -a 0 -S 0 -y {38 38} - -t 3.43494 -s 3 -d 2 -p ack -e 40 -c 0 -i 92 -a 0 -S 0 -y {38 38} h -t 3.43494 -s 3 -d 2 -p ack -e 40 -c 0 -i 92 -a 0 -S 0 -y {-1 -1} r -t 3.44534 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 91 -a 0 -S 0 -y {31 31} + -t 3.44534 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 91 -a 0 -S 0 -y {31 31} - -t 3.44534 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 91 -a 0 -S 0 -y {31 31} h -t 3.44534 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 91 -a 0 -S 0 -y {-1 -1} r -t 3.45094 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 90 -a 0 -S 0 -y {30 30} + -t 3.45094 -s 3 -d 2 -p ack -e 40 -c 0 -i 93 -a 0 -S 0 -y {38 38} - -t 3.45094 -s 3 -d 2 -p ack -e 40 -c 0 -i 93 -a 0 -S 0 -y {38 38} h -t 3.45094 -s 3 -d 2 -p ack -e 40 -c 0 -i 93 -a 0 -S 0 -y {-1 -1} r -t 3.45501 -s 3 -d 2 -p ack -e 40 -c 0 -i 92 -a 0 -S 0 -y {38 38} + -t 3.45501 -s 2 -d 1 -p ack -e 40 -c 0 -i 92 -a 0 -S 0 -y {38 38} - -t 3.45501 -s 2 -d 1 -p ack -e 40 -c 0 -i 92 -a 0 -S 0 -y {38 38} h -t 3.45501 -s 2 -d 1 -p ack -e 40 -c 0 -i 92 -a 0 -S 0 -y {-1 -1} r -t 3.46694 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 91 -a 0 -S 0 -y {31 31} + -t 3.46694 -s 3 -d 2 -p ack -e 40 -c 0 -i 94 -a 0 -S 0 -y {38 38} - -t 3.46694 -s 3 -d 2 -p ack -e 40 -c 0 -i 94 -a 0 -S 0 -y {38 38} h -t 3.46694 -s 3 -d 2 -p ack -e 40 -c 0 -i 94 -a 0 -S 0 -y {-1 -1} r -t 3.47101 -s 3 -d 2 -p ack -e 40 -c 0 -i 93 -a 0 -S 0 -y {38 38} + -t 3.47101 -s 2 -d 1 -p ack -e 40 -c 0 -i 93 -a 0 -S 0 -y {38 38} - -t 3.47101 -s 2 -d 1 -p ack -e 40 -c 0 -i 93 -a 0 -S 0 -y {38 38} h -t 3.47101 -s 2 -d 1 -p ack -e 40 -c 0 -i 93 -a 0 -S 0 -y {-1 -1} r -t 3.48701 -s 3 -d 2 -p ack -e 40 -c 0 -i 94 -a 0 -S 0 -y {38 38} + -t 3.48701 -s 2 -d 1 -p ack -e 40 -c 0 -i 94 -a 0 -S 0 -y {38 38} - -t 3.48701 -s 2 -d 1 -p ack -e 40 -c 0 -i 94 -a 0 -S 0 -y {38 38} h -t 3.48701 -s 2 -d 1 -p ack -e 40 -c 0 -i 94 -a 0 -S 0 -y {-1 -1} r -t 3.55565 -s 2 -d 1 -p ack -e 40 -c 0 -i 92 -a 0 -S 0 -y {38 38} + -t 3.55565 -s 1 -d 0 -p ack -e 40 -c 0 -i 92 -a 0 -S 0 -y {38 38} - -t 3.55565 -s 1 -d 0 -p ack -e 40 -c 0 -i 92 -a 0 -S 0 -f 0 -m 1 -y {38 38} h -t 3.55565 -s 1 -d 0 -p ack -e 40 -c 0 -i 92 -a 0 -S 0 -y {-1 -1} r -t 3.57165 -s 2 -d 1 -p ack -e 40 -c 0 -i 93 -a 0 -S 0 -y {38 38} + -t 3.57165 -s 1 -d 0 -p ack -e 40 -c 0 -i 93 -a 0 -S 0 -y {38 38} - -t 3.57165 -s 1 -d 0 -p ack -e 40 -c 0 -i 93 -a 0 -S 0 -f 0 -m 1 -y {38 38} h -t 3.57165 -s 1 -d 0 -p ack -e 40 -c 0 -i 93 -a 0 -S 0 -y {-1 -1} r -t 3.57571 -s 1 -d 0 -p ack -e 40 -c 0 -i 92 -a 0 -S 0 -y {38 38} f -t 3.57571200000000067 -s 0 -d 3 -n cwnd_ -a tcp -v 4.000000 -o 3.000000 -T v + -t 3.57571 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 95 -a 0 -S 0 -f 0 -m 0 -y {39 39} - -t 3.57571 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 95 -a 0 -S 0 -y {39 39} h -t 3.57571 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 95 -a 0 -S 0 -y {-1 -1} + -t 3.57571 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 96 -a 0 -S 0 -f 0 -m 0 -y {40 40} + -t 3.57571 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 97 -a 0 -S 0 -f 0 -m 0 -y {41 41} + -t 3.57571 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 98 -a 0 -S 0 -f 0 -m 0 -y {42 42} - -t 3.57731 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 96 -a 0 -S 0 -y {40 40} h -t 3.57731 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 96 -a 0 -S 0 -y {-1 -1} - -t 3.57891 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 97 -a 0 -S 0 -y {41 41} h -t 3.57891 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 97 -a 0 -S 0 -y {-1 -1} - -t 3.58051 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 98 -a 0 -S 0 -y {42 42} h -t 3.58051 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 98 -a 0 -S 0 -y {-1 -1} r -t 3.58765 -s 2 -d 1 -p ack -e 40 -c 0 -i 94 -a 0 -S 0 -y {38 38} + -t 3.58765 -s 1 -d 0 -p ack -e 40 -c 0 -i 94 -a 0 -S 0 -y {38 38} - -t 3.58765 -s 1 -d 0 -p ack -e 40 -c 0 -i 94 -a 0 -S 0 -f 0 -m 1 -y {38 38} h -t 3.58765 -s 1 -d 0 -p ack -e 40 -c 0 -i 94 -a 0 -S 0 -y {-1 -1} r -t 3.59171 -s 1 -d 0 -p ack -e 40 -c 0 -i 93 -a 0 -S 0 -y {38 38} r -t 3.59731 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 95 -a 0 -S 0 -y {39 39} + -t 3.59731 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 95 -a 0 -S 0 -y {39 39} - -t 3.59731 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 95 -a 0 -S 0 -y {39 39} h -t 3.59731 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 95 -a 0 -S 0 -y {-1 -1} r -t 3.59891 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 96 -a 0 -S 0 -y {40 40} + -t 3.59891 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 96 -a 0 -S 0 -y {40 40} r -t 3.60051 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 97 -a 0 -S 0 -y {41 41} + -t 3.60051 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 97 -a 0 -S 0 -y {41 41} r -t 3.60211 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 98 -a 0 -S 0 -y {42 42} + -t 3.60211 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 98 -a 0 -S 0 -y {42 42} r -t 3.60771 -s 1 -d 0 -p ack -e 40 -c 0 -i 94 -a 0 -S 0 -y {38 38} - -t 3.61331 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 96 -a 0 -S 0 -y {40 40} h -t 3.61331 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 96 -a 0 -S 0 -y {-1 -1} - -t 3.62931 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 97 -a 0 -S 0 -y {41 41} h -t 3.62931 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 97 -a 0 -S 0 -y {-1 -1} - -t 3.64531 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 98 -a 0 -S 0 -y {42 42} h -t 3.64531 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 98 -a 0 -S 0 -y {-1 -1} r -t 3.71331 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 95 -a 0 -S 0 -y {39 39} + -t 3.71331 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 95 -a 0 -S 0 -y {39 39} - -t 3.71331 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 95 -a 0 -S 0 -y {39 39} h -t 3.71331 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 95 -a 0 -S 0 -y {-1 -1} r -t 3.72931 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 96 -a 0 -S 0 -y {40 40} + -t 3.72931 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 96 -a 0 -S 0 -y {40 40} - -t 3.72931 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 96 -a 0 -S 0 -y {40 40} h -t 3.72931 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 96 -a 0 -S 0 -y {-1 -1} r -t 3.73491 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 95 -a 0 -S 0 -y {39 39} + -t 3.73491 -s 3 -d 2 -p ack -e 40 -c 0 -i 99 -a 0 -S 0 -y {42 42} - -t 3.73491 -s 3 -d 2 -p ack -e 40 -c 0 -i 99 -a 0 -S 0 -y {42 42} h -t 3.73491 -s 3 -d 2 -p ack -e 40 -c 0 -i 99 -a 0 -S 0 -y {-1 -1} r -t 3.74531 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 97 -a 0 -S 0 -y {41 41} + -t 3.74531 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 97 -a 0 -S 0 -y {41 41} - -t 3.74531 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 97 -a 0 -S 0 -y {41 41} h -t 3.74531 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 97 -a 0 -S 0 -y {-1 -1} r -t 3.75091 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 96 -a 0 -S 0 -y {40 40} + -t 3.75091 -s 3 -d 2 -p ack -e 40 -c 0 -i 100 -a 0 -S 0 -y {42 42} - -t 3.75091 -s 3 -d 2 -p ack -e 40 -c 0 -i 100 -a 0 -S 0 -y {42 42} h -t 3.75091 -s 3 -d 2 -p ack -e 40 -c 0 -i 100 -a 0 -S 0 -y {-1 -1} r -t 3.75498 -s 3 -d 2 -p ack -e 40 -c 0 -i 99 -a 0 -S 0 -y {42 42} + -t 3.75498 -s 2 -d 1 -p ack -e 40 -c 0 -i 99 -a 0 -S 0 -y {42 42} - -t 3.75498 -s 2 -d 1 -p ack -e 40 -c 0 -i 99 -a 0 -S 0 -y {42 42} h -t 3.75498 -s 2 -d 1 -p ack -e 40 -c 0 -i 99 -a 0 -S 0 -y {-1 -1} r -t 3.76131 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 98 -a 0 -S 0 -y {42 42} + -t 3.76131 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 98 -a 0 -S 0 -y {42 42} - -t 3.76131 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 98 -a 0 -S 0 -y {42 42} h -t 3.76131 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 98 -a 0 -S 0 -y {-1 -1} r -t 3.76691 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 97 -a 0 -S 0 -y {41 41} + -t 3.76691 -s 3 -d 2 -p ack -e 40 -c 0 -i 101 -a 0 -S 0 -y {42 42} - -t 3.76691 -s 3 -d 2 -p ack -e 40 -c 0 -i 101 -a 0 -S 0 -y {42 42} h -t 3.76691 -s 3 -d 2 -p ack -e 40 -c 0 -i 101 -a 0 -S 0 -y {-1 -1} r -t 3.77098 -s 3 -d 2 -p ack -e 40 -c 0 -i 100 -a 0 -S 0 -y {42 42} + -t 3.77098 -s 2 -d 1 -p ack -e 40 -c 0 -i 100 -a 0 -S 0 -y {42 42} - -t 3.77098 -s 2 -d 1 -p ack -e 40 -c 0 -i 100 -a 0 -S 0 -y {42 42} h -t 3.77098 -s 2 -d 1 -p ack -e 40 -c 0 -i 100 -a 0 -S 0 -y {-1 -1} r -t 3.78291 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 98 -a 0 -S 0 -y {42 42} + -t 3.78291 -s 3 -d 2 -p ack -e 40 -c 0 -i 102 -a 0 -S 0 -y {42 42} - -t 3.78291 -s 3 -d 2 -p ack -e 40 -c 0 -i 102 -a 0 -S 0 -y {42 42} h -t 3.78291 -s 3 -d 2 -p ack -e 40 -c 0 -i 102 -a 0 -S 0 -y {-1 -1} r -t 3.78698 -s 3 -d 2 -p ack -e 40 -c 0 -i 101 -a 0 -S 0 -y {42 42} + -t 3.78698 -s 2 -d 1 -p ack -e 40 -c 0 -i 101 -a 0 -S 0 -y {42 42} - -t 3.78698 -s 2 -d 1 -p ack -e 40 -c 0 -i 101 -a 0 -S 0 -y {42 42} h -t 3.78698 -s 2 -d 1 -p ack -e 40 -c 0 -i 101 -a 0 -S 0 -y {-1 -1} r -t 3.80298 -s 3 -d 2 -p ack -e 40 -c 0 -i 102 -a 0 -S 0 -y {42 42} + -t 3.80298 -s 2 -d 1 -p ack -e 40 -c 0 -i 102 -a 0 -S 0 -y {42 42} - -t 3.80298 -s 2 -d 1 -p ack -e 40 -c 0 -i 102 -a 0 -S 0 -y {42 42} h -t 3.80298 -s 2 -d 1 -p ack -e 40 -c 0 -i 102 -a 0 -S 0 -y {-1 -1} r -t 3.85562 -s 2 -d 1 -p ack -e 40 -c 0 -i 99 -a 0 -S 0 -y {42 42} + -t 3.85562 -s 1 -d 0 -p ack -e 40 -c 0 -i 99 -a 0 -S 0 -y {42 42} - -t 3.85562 -s 1 -d 0 -p ack -e 40 -c 0 -i 99 -a 0 -S 0 -f 0 -m 1 -y {42 42} h -t 3.85562 -s 1 -d 0 -p ack -e 40 -c 0 -i 99 -a 0 -S 0 -y {-1 -1} r -t 3.87162 -s 2 -d 1 -p ack -e 40 -c 0 -i 100 -a 0 -S 0 -y {42 42} + -t 3.87162 -s 1 -d 0 -p ack -e 40 -c 0 -i 100 -a 0 -S 0 -y {42 42} - -t 3.87162 -s 1 -d 0 -p ack -e 40 -c 0 -i 100 -a 0 -S 0 -f 0 -m 1 -y {42 42} h -t 3.87162 -s 1 -d 0 -p ack -e 40 -c 0 -i 100 -a 0 -S 0 -y {-1 -1} r -t 3.87568 -s 1 -d 0 -p ack -e 40 -c 0 -i 99 -a 0 -S 0 -y {42 42} f -t 3.87568000000000046 -s 0 -d 3 -n cwnd_ -a tcp -v 5.000000 -o 4.000000 -T v + -t 3.87568 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 103 -a 0 -S 0 -f 0 -m 0 -y {43 43} - -t 3.87568 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 103 -a 0 -S 0 -y {43 43} h -t 3.87568 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 103 -a 0 -S 0 -y {-1 -1} + -t 3.87568 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 104 -a 0 -S 0 -f 0 -m 0 -y {44 44} + -t 3.87568 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 105 -a 0 -S 0 -f 0 -m 0 -y {45 45} + -t 3.87568 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 106 -a 0 -S 0 -f 0 -m 0 -y {46 46} + -t 3.87568 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 107 -a 0 -S 0 -f 0 -m 0 -y {47 47} - -t 3.87728 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 104 -a 0 -S 0 -y {44 44} h -t 3.87728 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 104 -a 0 -S 0 -y {-1 -1} - -t 3.87888 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 105 -a 0 -S 0 -y {45 45} h -t 3.87888 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 105 -a 0 -S 0 -y {-1 -1} - -t 3.88048 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 106 -a 0 -S 0 -y {46 46} h -t 3.88048 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 106 -a 0 -S 0 -y {-1 -1} - -t 3.88208 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 107 -a 0 -S 0 -y {47 47} h -t 3.88208 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 107 -a 0 -S 0 -y {-1 -1} r -t 3.88762 -s 2 -d 1 -p ack -e 40 -c 0 -i 101 -a 0 -S 0 -y {42 42} + -t 3.88762 -s 1 -d 0 -p ack -e 40 -c 0 -i 101 -a 0 -S 0 -y {42 42} - -t 3.88762 -s 1 -d 0 -p ack -e 40 -c 0 -i 101 -a 0 -S 0 -f 0 -m 1 -y {42 42} h -t 3.88762 -s 1 -d 0 -p ack -e 40 -c 0 -i 101 -a 0 -S 0 -y {-1 -1} r -t 3.89168 -s 1 -d 0 -p ack -e 40 -c 0 -i 100 -a 0 -S 0 -y {42 42} r -t 3.89728 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 103 -a 0 -S 0 -y {43 43} + -t 3.89728 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 103 -a 0 -S 0 -y {43 43} - -t 3.89728 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 103 -a 0 -S 0 -y {43 43} h -t 3.89728 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 103 -a 0 -S 0 -y {-1 -1} r -t 3.89888 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 104 -a 0 -S 0 -y {44 44} + -t 3.89888 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 104 -a 0 -S 0 -y {44 44} r -t 3.90048 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 105 -a 0 -S 0 -y {45 45} + -t 3.90048 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 105 -a 0 -S 0 -y {45 45} r -t 3.90208 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 106 -a 0 -S 0 -y {46 46} + -t 3.90208 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 106 -a 0 -S 0 -y {46 46} r -t 3.90362 -s 2 -d 1 -p ack -e 40 -c 0 -i 102 -a 0 -S 0 -y {42 42} + -t 3.90362 -s 1 -d 0 -p ack -e 40 -c 0 -i 102 -a 0 -S 0 -y {42 42} - -t 3.90362 -s 1 -d 0 -p ack -e 40 -c 0 -i 102 -a 0 -S 0 -f 0 -m 1 -y {42 42} h -t 3.90362 -s 1 -d 0 -p ack -e 40 -c 0 -i 102 -a 0 -S 0 -y {-1 -1} r -t 3.90368 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 107 -a 0 -S 0 -y {47 47} + -t 3.90368 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 107 -a 0 -S 0 -y {47 47} r -t 3.90768 -s 1 -d 0 -p ack -e 40 -c 0 -i 101 -a 0 -S 0 -y {42 42} - -t 3.91328 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 104 -a 0 -S 0 -y {44 44} h -t 3.91328 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 104 -a 0 -S 0 -y {-1 -1} r -t 3.92368 -s 1 -d 0 -p ack -e 40 -c 0 -i 102 -a 0 -S 0 -y {42 42} + -t 3.92368 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 108 -a 0 -S 0 -f 0 -m 0 -y {48 48} - -t 3.92368 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 108 -a 0 -S 0 -y {48 48} h -t 3.92368 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 108 -a 0 -S 0 -y {-1 -1} + -t 3.92368 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 109 -a 0 -S 0 -f 0 -m 0 -y {49 49} + -t 3.92368 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 110 -a 0 -S 0 -f 0 -m 0 -y {50 50} - -t 3.92528 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 109 -a 0 -S 0 -y {49 49} h -t 3.92528 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 109 -a 0 -S 0 -y {-1 -1} - -t 3.92688 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 110 -a 0 -S 0 -y {50 50} h -t 3.92688 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 110 -a 0 -S 0 -y {-1 -1} - -t 3.92928 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 105 -a 0 -S 0 -y {45 45} h -t 3.92928 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 105 -a 0 -S 0 -y {-1 -1} r -t 3.94528 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 108 -a 0 -S 0 -y {48 48} + -t 3.94528 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 108 -a 0 -S 0 -y {48 48} - -t 3.94528 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 106 -a 0 -S 0 -y {46 46} h -t 3.94528 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 106 -a 0 -S 0 -y {-1 -1} r -t 3.94688 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 109 -a 0 -S 0 -y {49 49} + -t 3.94688 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 109 -a 0 -S 0 -y {49 49} r -t 3.94848 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 110 -a 0 -S 0 -y {50 50} + -t 3.94848 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 110 -a 0 -S 0 -y {50 50} - -t 3.96128 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 107 -a 0 -S 0 -y {47 47} h -t 3.96128 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 107 -a 0 -S 0 -y {-1 -1} - -t 3.97728 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 108 -a 0 -S 0 -y {48 48} h -t 3.97728 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 108 -a 0 -S 0 -y {-1 -1} - -t 3.99328 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 109 -a 0 -S 0 -y {49 49} h -t 3.99328 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 109 -a 0 -S 0 -y {-1 -1} - -t 4.00928 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 110 -a 0 -S 0 -y {50 50} h -t 4.00928 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 110 -a 0 -S 0 -y {-1 -1} r -t 4.01328 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 103 -a 0 -S 0 -y {43 43} + -t 4.01328 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 103 -a 0 -S 0 -y {43 43} - -t 4.01328 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 103 -a 0 -S 0 -y {43 43} h -t 4.01328 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 103 -a 0 -S 0 -y {-1 -1} r -t 4.02928 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 104 -a 0 -S 0 -y {44 44} + -t 4.02928 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 104 -a 0 -S 0 -y {44 44} - -t 4.02928 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 104 -a 0 -S 0 -y {44 44} h -t 4.02928 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 104 -a 0 -S 0 -y {-1 -1} r -t 4.03488 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 103 -a 0 -S 0 -y {43 43} + -t 4.03488 -s 3 -d 2 -p ack -e 40 -c 0 -i 111 -a 0 -S 0 -y {43 43} - -t 4.03488 -s 3 -d 2 -p ack -e 40 -c 0 -i 111 -a 0 -S 0 -y {43 43} h -t 4.03488 -s 3 -d 2 -p ack -e 40 -c 0 -i 111 -a 0 -S 0 -y {-1 -1} r -t 4.04528 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 105 -a 0 -S 0 -y {45 45} + -t 4.04528 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 105 -a 0 -S 0 -y {45 45} - -t 4.04528 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 105 -a 0 -S 0 -y {45 45} h -t 4.04528 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 105 -a 0 -S 0 -y {-1 -1} r -t 4.05088 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 104 -a 0 -S 0 -y {44 44} + -t 4.05088 -s 3 -d 2 -p ack -e 40 -c 0 -i 112 -a 0 -S 0 -y {44 44} - -t 4.05088 -s 3 -d 2 -p ack -e 40 -c 0 -i 112 -a 0 -S 0 -y {44 44} h -t 4.05088 -s 3 -d 2 -p ack -e 40 -c 0 -i 112 -a 0 -S 0 -y {-1 -1} r -t 4.05494 -s 3 -d 2 -p ack -e 40 -c 0 -i 111 -a 0 -S 0 -y {43 43} + -t 4.05494 -s 2 -d 1 -p ack -e 40 -c 0 -i 111 -a 0 -S 0 -y {43 43} - -t 4.05494 -s 2 -d 1 -p ack -e 40 -c 0 -i 111 -a 0 -S 0 -y {43 43} h -t 4.05494 -s 2 -d 1 -p ack -e 40 -c 0 -i 111 -a 0 -S 0 -y {-1 -1} r -t 4.06128 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 106 -a 0 -S 0 -y {46 46} + -t 4.06128 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 106 -a 0 -S 0 -y {46 46} - -t 4.06128 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 106 -a 0 -S 0 -y {46 46} h -t 4.06128 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 106 -a 0 -S 0 -y {-1 -1} r -t 4.06688 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 105 -a 0 -S 0 -y {45 45} + -t 4.06688 -s 3 -d 2 -p ack -e 40 -c 0 -i 113 -a 0 -S 0 -y {45 45} - -t 4.06688 -s 3 -d 2 -p ack -e 40 -c 0 -i 113 -a 0 -S 0 -y {45 45} h -t 4.06688 -s 3 -d 2 -p ack -e 40 -c 0 -i 113 -a 0 -S 0 -y {-1 -1} r -t 4.07094 -s 3 -d 2 -p ack -e 40 -c 0 -i 112 -a 0 -S 0 -y {44 44} + -t 4.07094 -s 2 -d 1 -p ack -e 40 -c 0 -i 112 -a 0 -S 0 -y {44 44} - -t 4.07094 -s 2 -d 1 -p ack -e 40 -c 0 -i 112 -a 0 -S 0 -y {44 44} h -t 4.07094 -s 2 -d 1 -p ack -e 40 -c 0 -i 112 -a 0 -S 0 -y {-1 -1} r -t 4.07728 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 107 -a 0 -S 0 -y {47 47} + -t 4.07728 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 107 -a 0 -S 0 -y {47 47} - -t 4.07728 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 107 -a 0 -S 0 -y {47 47} h -t 4.07728 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 107 -a 0 -S 0 -y {-1 -1} r -t 4.08288 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 106 -a 0 -S 0 -y {46 46} + -t 4.08288 -s 3 -d 2 -p ack -e 40 -c 0 -i 114 -a 0 -S 0 -y {46 46} - -t 4.08288 -s 3 -d 2 -p ack -e 40 -c 0 -i 114 -a 0 -S 0 -y {46 46} h -t 4.08288 -s 3 -d 2 -p ack -e 40 -c 0 -i 114 -a 0 -S 0 -y {-1 -1} r -t 4.08694 -s 3 -d 2 -p ack -e 40 -c 0 -i 113 -a 0 -S 0 -y {45 45} + -t 4.08694 -s 2 -d 1 -p ack -e 40 -c 0 -i 113 -a 0 -S 0 -y {45 45} - -t 4.08694 -s 2 -d 1 -p ack -e 40 -c 0 -i 113 -a 0 -S 0 -y {45 45} h -t 4.08694 -s 2 -d 1 -p ack -e 40 -c 0 -i 113 -a 0 -S 0 -y {-1 -1} r -t 4.09328 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 108 -a 0 -S 0 -y {48 48} + -t 4.09328 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 108 -a 0 -S 0 -y {48 48} - -t 4.09328 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 108 -a 0 -S 0 -y {48 48} h -t 4.09328 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 108 -a 0 -S 0 -y {-1 -1} r -t 4.09888 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 107 -a 0 -S 0 -y {47 47} + -t 4.09888 -s 3 -d 2 -p ack -e 40 -c 0 -i 115 -a 0 -S 0 -y {47 47} - -t 4.09888 -s 3 -d 2 -p ack -e 40 -c 0 -i 115 -a 0 -S 0 -y {47 47} h -t 4.09888 -s 3 -d 2 -p ack -e 40 -c 0 -i 115 -a 0 -S 0 -y {-1 -1} r -t 4.10294 -s 3 -d 2 -p ack -e 40 -c 0 -i 114 -a 0 -S 0 -y {46 46} + -t 4.10294 -s 2 -d 1 -p ack -e 40 -c 0 -i 114 -a 0 -S 0 -y {46 46} - -t 4.10294 -s 2 -d 1 -p ack -e 40 -c 0 -i 114 -a 0 -S 0 -y {46 46} h -t 4.10294 -s 2 -d 1 -p ack -e 40 -c 0 -i 114 -a 0 -S 0 -y {-1 -1} r -t 4.10928 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 109 -a 0 -S 0 -y {49 49} + -t 4.10928 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 109 -a 0 -S 0 -y {49 49} - -t 4.10928 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 109 -a 0 -S 0 -y {49 49} h -t 4.10928 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 109 -a 0 -S 0 -y {-1 -1} r -t 4.11488 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 108 -a 0 -S 0 -y {48 48} + -t 4.11488 -s 3 -d 2 -p ack -e 40 -c 0 -i 116 -a 0 -S 0 -y {48 48} - -t 4.11488 -s 3 -d 2 -p ack -e 40 -c 0 -i 116 -a 0 -S 0 -y {48 48} h -t 4.11488 -s 3 -d 2 -p ack -e 40 -c 0 -i 116 -a 0 -S 0 -y {-1 -1} r -t 4.11894 -s 3 -d 2 -p ack -e 40 -c 0 -i 115 -a 0 -S 0 -y {47 47} + -t 4.11894 -s 2 -d 1 -p ack -e 40 -c 0 -i 115 -a 0 -S 0 -y {47 47} - -t 4.11894 -s 2 -d 1 -p ack -e 40 -c 0 -i 115 -a 0 -S 0 -y {47 47} h -t 4.11894 -s 2 -d 1 -p ack -e 40 -c 0 -i 115 -a 0 -S 0 -y {-1 -1} r -t 4.12528 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 110 -a 0 -S 0 -y {50 50} + -t 4.12528 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 110 -a 0 -S 0 -y {50 50} - -t 4.12528 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 110 -a 0 -S 0 -y {50 50} h -t 4.12528 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 110 -a 0 -S 0 -y {-1 -1} r -t 4.13088 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 109 -a 0 -S 0 -y {49 49} + -t 4.13088 -s 3 -d 2 -p ack -e 40 -c 0 -i 117 -a 0 -S 0 -y {49 49} - -t 4.13088 -s 3 -d 2 -p ack -e 40 -c 0 -i 117 -a 0 -S 0 -y {49 49} h -t 4.13088 -s 3 -d 2 -p ack -e 40 -c 0 -i 117 -a 0 -S 0 -y {-1 -1} r -t 4.13494 -s 3 -d 2 -p ack -e 40 -c 0 -i 116 -a 0 -S 0 -y {48 48} + -t 4.13494 -s 2 -d 1 -p ack -e 40 -c 0 -i 116 -a 0 -S 0 -y {48 48} - -t 4.13494 -s 2 -d 1 -p ack -e 40 -c 0 -i 116 -a 0 -S 0 -y {48 48} h -t 4.13494 -s 2 -d 1 -p ack -e 40 -c 0 -i 116 -a 0 -S 0 -y {-1 -1} r -t 4.14688 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 110 -a 0 -S 0 -y {50 50} + -t 4.14688 -s 3 -d 2 -p ack -e 40 -c 0 -i 118 -a 0 -S 0 -y {50 50} - -t 4.14688 -s 3 -d 2 -p ack -e 40 -c 0 -i 118 -a 0 -S 0 -y {50 50} h -t 4.14688 -s 3 -d 2 -p ack -e 40 -c 0 -i 118 -a 0 -S 0 -y {-1 -1} r -t 4.15094 -s 3 -d 2 -p ack -e 40 -c 0 -i 117 -a 0 -S 0 -y {49 49} + -t 4.15094 -s 2 -d 1 -p ack -e 40 -c 0 -i 117 -a 0 -S 0 -y {49 49} - -t 4.15094 -s 2 -d 1 -p ack -e 40 -c 0 -i 117 -a 0 -S 0 -y {49 49} h -t 4.15094 -s 2 -d 1 -p ack -e 40 -c 0 -i 117 -a 0 -S 0 -y {-1 -1} r -t 4.15558 -s 2 -d 1 -p ack -e 40 -c 0 -i 111 -a 0 -S 0 -y {43 43} + -t 4.15558 -s 1 -d 0 -p ack -e 40 -c 0 -i 111 -a 0 -S 0 -y {43 43} - -t 4.15558 -s 1 -d 0 -p ack -e 40 -c 0 -i 111 -a 0 -S 0 -f 0 -m 1 -y {43 43} h -t 4.15558 -s 1 -d 0 -p ack -e 40 -c 0 -i 111 -a 0 -S 0 -y {-1 -1} r -t 4.16694 -s 3 -d 2 -p ack -e 40 -c 0 -i 118 -a 0 -S 0 -y {50 50} + -t 4.16694 -s 2 -d 1 -p ack -e 40 -c 0 -i 118 -a 0 -S 0 -y {50 50} - -t 4.16694 -s 2 -d 1 -p ack -e 40 -c 0 -i 118 -a 0 -S 0 -y {50 50} h -t 4.16694 -s 2 -d 1 -p ack -e 40 -c 0 -i 118 -a 0 -S 0 -y {-1 -1} r -t 4.17158 -s 2 -d 1 -p ack -e 40 -c 0 -i 112 -a 0 -S 0 -y {44 44} + -t 4.17158 -s 1 -d 0 -p ack -e 40 -c 0 -i 112 -a 0 -S 0 -y {44 44} - -t 4.17158 -s 1 -d 0 -p ack -e 40 -c 0 -i 112 -a 0 -S 0 -f 0 -m 1 -y {44 44} h -t 4.17158 -s 1 -d 0 -p ack -e 40 -c 0 -i 112 -a 0 -S 0 -y {-1 -1} r -t 4.17565 -s 1 -d 0 -p ack -e 40 -c 0 -i 111 -a 0 -S 0 -y {43 43} f -t 4.17564799999999980 -s 0 -d 3 -n cwnd_ -a tcp -v 5.200000 -o 5.000000 -T v r -t 4.18758 -s 2 -d 1 -p ack -e 40 -c 0 -i 113 -a 0 -S 0 -y {45 45} + -t 4.18758 -s 1 -d 0 -p ack -e 40 -c 0 -i 113 -a 0 -S 0 -y {45 45} - -t 4.18758 -s 1 -d 0 -p ack -e 40 -c 0 -i 113 -a 0 -S 0 -f 0 -m 1 -y {45 45} h -t 4.18758 -s 1 -d 0 -p ack -e 40 -c 0 -i 113 -a 0 -S 0 -y {-1 -1} r -t 4.19165 -s 1 -d 0 -p ack -e 40 -c 0 -i 112 -a 0 -S 0 -y {44 44} f -t 4.19164799999999982 -s 0 -d 3 -n cwnd_ -a tcp -v 5.392308 -o 5.200000 -T v r -t 4.20358 -s 2 -d 1 -p ack -e 40 -c 0 -i 114 -a 0 -S 0 -y {46 46} + -t 4.20358 -s 1 -d 0 -p ack -e 40 -c 0 -i 114 -a 0 -S 0 -y {46 46} - -t 4.20358 -s 1 -d 0 -p ack -e 40 -c 0 -i 114 -a 0 -S 0 -f 0 -m 1 -y {46 46} h -t 4.20358 -s 1 -d 0 -p ack -e 40 -c 0 -i 114 -a 0 -S 0 -y {-1 -1} r -t 4.20765 -s 1 -d 0 -p ack -e 40 -c 0 -i 113 -a 0 -S 0 -y {45 45} f -t 4.20764799999999983 -s 0 -d 3 -n cwnd_ -a tcp -v 5.577757 -o 5.392308 -T v r -t 4.21958 -s 2 -d 1 -p ack -e 40 -c 0 -i 115 -a 0 -S 0 -y {47 47} + -t 4.21958 -s 1 -d 0 -p ack -e 40 -c 0 -i 115 -a 0 -S 0 -y {47 47} - -t 4.21958 -s 1 -d 0 -p ack -e 40 -c 0 -i 115 -a 0 -S 0 -f 0 -m 1 -y {47 47} h -t 4.21958 -s 1 -d 0 -p ack -e 40 -c 0 -i 115 -a 0 -S 0 -y {-1 -1} r -t 4.22365 -s 1 -d 0 -p ack -e 40 -c 0 -i 114 -a 0 -S 0 -y {46 46} f -t 4.22364799999999985 -s 0 -d 3 -n cwnd_ -a tcp -v 5.757041 -o 5.577757 -T v + -t 4.22365 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 119 -a 0 -S 0 -f 0 -m 0 -y {51 51} - -t 4.22365 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 119 -a 0 -S 0 -y {51 51} h -t 4.22365 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 119 -a 0 -S 0 -y {-1 -1} r -t 4.23558 -s 2 -d 1 -p ack -e 40 -c 0 -i 116 -a 0 -S 0 -y {48 48} + -t 4.23558 -s 1 -d 0 -p ack -e 40 -c 0 -i 116 -a 0 -S 0 -y {48 48} - -t 4.23558 -s 1 -d 0 -p ack -e 40 -c 0 -i 116 -a 0 -S 0 -f 0 -m 1 -y {48 48} h -t 4.23558 -s 1 -d 0 -p ack -e 40 -c 0 -i 116 -a 0 -S 0 -y {-1 -1} r -t 4.23965 -s 1 -d 0 -p ack -e 40 -c 0 -i 115 -a 0 -S 0 -y {47 47} f -t 4.23964799999999986 -s 0 -d 3 -n cwnd_ -a tcp -v 5.930741 -o 5.757041 -T v + -t 4.23965 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 120 -a 0 -S 0 -f 0 -m 0 -y {52 52} - -t 4.23965 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 120 -a 0 -S 0 -y {52 52} h -t 4.23965 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 120 -a 0 -S 0 -y {-1 -1} r -t 4.24525 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 119 -a 0 -S 0 -y {51 51} + -t 4.24525 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 119 -a 0 -S 0 -y {51 51} - -t 4.24525 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 119 -a 0 -S 0 -y {51 51} h -t 4.24525 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 119 -a 0 -S 0 -y {-1 -1} r -t 4.25158 -s 2 -d 1 -p ack -e 40 -c 0 -i 117 -a 0 -S 0 -y {49 49} + -t 4.25158 -s 1 -d 0 -p ack -e 40 -c 0 -i 117 -a 0 -S 0 -y {49 49} - -t 4.25158 -s 1 -d 0 -p ack -e 40 -c 0 -i 117 -a 0 -S 0 -f 0 -m 1 -y {49 49} h -t 4.25158 -s 1 -d 0 -p ack -e 40 -c 0 -i 117 -a 0 -S 0 -y {-1 -1} r -t 4.25565 -s 1 -d 0 -p ack -e 40 -c 0 -i 116 -a 0 -S 0 -y {48 48} f -t 4.25564799999999988 -s 0 -d 3 -n cwnd_ -a tcp -v 6.099354 -o 5.930741 -T v + -t 4.25565 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 121 -a 0 -S 0 -f 0 -m 0 -y {53 53} - -t 4.25565 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 121 -a 0 -S 0 -y {53 53} h -t 4.25565 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 121 -a 0 -S 0 -y {-1 -1} + -t 4.25565 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 122 -a 0 -S 0 -f 0 -m 0 -y {54 54} - -t 4.25725 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 122 -a 0 -S 0 -y {54 54} h -t 4.25725 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 122 -a 0 -S 0 -y {-1 -1} r -t 4.26125 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 120 -a 0 -S 0 -y {52 52} + -t 4.26125 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 120 -a 0 -S 0 -y {52 52} - -t 4.26125 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 120 -a 0 -S 0 -y {52 52} h -t 4.26125 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 120 -a 0 -S 0 -y {-1 -1} r -t 4.26758 -s 2 -d 1 -p ack -e 40 -c 0 -i 118 -a 0 -S 0 -y {50 50} + -t 4.26758 -s 1 -d 0 -p ack -e 40 -c 0 -i 118 -a 0 -S 0 -y {50 50} - -t 4.26758 -s 1 -d 0 -p ack -e 40 -c 0 -i 118 -a 0 -S 0 -f 0 -m 1 -y {50 50} h -t 4.26758 -s 1 -d 0 -p ack -e 40 -c 0 -i 118 -a 0 -S 0 -y {-1 -1} r -t 4.27165 -s 1 -d 0 -p ack -e 40 -c 0 -i 117 -a 0 -S 0 -y {49 49} f -t 4.27164799999999989 -s 0 -d 3 -n cwnd_ -a tcp -v 6.263306 -o 6.099354 -T v + -t 4.27165 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 123 -a 0 -S 0 -f 0 -m 0 -y {55 55} - -t 4.27165 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 123 -a 0 -S 0 -y {55 55} h -t 4.27165 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 123 -a 0 -S 0 -y {-1 -1} r -t 4.27725 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 121 -a 0 -S 0 -y {53 53} + -t 4.27725 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 121 -a 0 -S 0 -y {53 53} - -t 4.27725 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 121 -a 0 -S 0 -y {53 53} h -t 4.27725 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 121 -a 0 -S 0 -y {-1 -1} r -t 4.27885 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 122 -a 0 -S 0 -y {54 54} + -t 4.27885 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 122 -a 0 -S 0 -y {54 54} r -t 4.28765 -s 1 -d 0 -p ack -e 40 -c 0 -i 118 -a 0 -S 0 -y {50 50} f -t 4.28764799999999990 -s 0 -d 3 -n cwnd_ -a tcp -v 6.422966 -o 6.263306 -T v + -t 4.28765 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 124 -a 0 -S 0 -f 0 -m 0 -y {56 56} - -t 4.28765 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 124 -a 0 -S 0 -y {56 56} h -t 4.28765 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 124 -a 0 -S 0 -y {-1 -1} r -t 4.29325 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 123 -a 0 -S 0 -y {55 55} + -t 4.29325 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 123 -a 0 -S 0 -y {55 55} - -t 4.29325 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 122 -a 0 -S 0 -y {54 54} h -t 4.29325 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 122 -a 0 -S 0 -y {-1 -1} r -t 4.30925 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 124 -a 0 -S 0 -y {56 56} + -t 4.30925 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 124 -a 0 -S 0 -y {56 56} - -t 4.30925 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 123 -a 0 -S 0 -y {55 55} h -t 4.30925 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 123 -a 0 -S 0 -y {-1 -1} - -t 4.32525 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 124 -a 0 -S 0 -y {56 56} h -t 4.32525 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 124 -a 0 -S 0 -y {-1 -1} r -t 4.36125 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 119 -a 0 -S 0 -y {51 51} + -t 4.36125 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 119 -a 0 -S 0 -y {51 51} - -t 4.36125 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 119 -a 0 -S 0 -y {51 51} h -t 4.36125 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 119 -a 0 -S 0 -y {-1 -1} r -t 4.37725 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 120 -a 0 -S 0 -y {52 52} + -t 4.37725 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 120 -a 0 -S 0 -y {52 52} - -t 4.37725 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 120 -a 0 -S 0 -y {52 52} h -t 4.37725 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 120 -a 0 -S 0 -y {-1 -1} r -t 4.38285 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 119 -a 0 -S 0 -y {51 51} + -t 4.38285 -s 3 -d 2 -p ack -e 40 -c 0 -i 125 -a 0 -S 0 -y {51 51} - -t 4.38285 -s 3 -d 2 -p ack -e 40 -c 0 -i 125 -a 0 -S 0 -y {51 51} h -t 4.38285 -s 3 -d 2 -p ack -e 40 -c 0 -i 125 -a 0 -S 0 -y {-1 -1} r -t 4.39325 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 121 -a 0 -S 0 -y {53 53} + -t 4.39325 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 121 -a 0 -S 0 -y {53 53} - -t 4.39325 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 121 -a 0 -S 0 -y {53 53} h -t 4.39325 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 121 -a 0 -S 0 -y {-1 -1} r -t 4.39885 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 120 -a 0 -S 0 -y {52 52} + -t 4.39885 -s 3 -d 2 -p ack -e 40 -c 0 -i 126 -a 0 -S 0 -y {52 52} - -t 4.39885 -s 3 -d 2 -p ack -e 40 -c 0 -i 126 -a 0 -S 0 -y {52 52} h -t 4.39885 -s 3 -d 2 -p ack -e 40 -c 0 -i 126 -a 0 -S 0 -y {-1 -1} r -t 4.40291 -s 3 -d 2 -p ack -e 40 -c 0 -i 125 -a 0 -S 0 -y {51 51} + -t 4.40291 -s 2 -d 1 -p ack -e 40 -c 0 -i 125 -a 0 -S 0 -y {51 51} - -t 4.40291 -s 2 -d 1 -p ack -e 40 -c 0 -i 125 -a 0 -S 0 -y {51 51} h -t 4.40291 -s 2 -d 1 -p ack -e 40 -c 0 -i 125 -a 0 -S 0 -y {-1 -1} r -t 4.40925 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 122 -a 0 -S 0 -y {54 54} + -t 4.40925 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 122 -a 0 -S 0 -y {54 54} - -t 4.40925 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 122 -a 0 -S 0 -y {54 54} h -t 4.40925 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 122 -a 0 -S 0 -y {-1 -1} r -t 4.41485 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 121 -a 0 -S 0 -y {53 53} + -t 4.41485 -s 3 -d 2 -p ack -e 40 -c 0 -i 127 -a 0 -S 0 -y {53 53} - -t 4.41485 -s 3 -d 2 -p ack -e 40 -c 0 -i 127 -a 0 -S 0 -y {53 53} h -t 4.41485 -s 3 -d 2 -p ack -e 40 -c 0 -i 127 -a 0 -S 0 -y {-1 -1} r -t 4.41891 -s 3 -d 2 -p ack -e 40 -c 0 -i 126 -a 0 -S 0 -y {52 52} + -t 4.41891 -s 2 -d 1 -p ack -e 40 -c 0 -i 126 -a 0 -S 0 -y {52 52} - -t 4.41891 -s 2 -d 1 -p ack -e 40 -c 0 -i 126 -a 0 -S 0 -y {52 52} h -t 4.41891 -s 2 -d 1 -p ack -e 40 -c 0 -i 126 -a 0 -S 0 -y {-1 -1} r -t 4.42525 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 123 -a 0 -S 0 -y {55 55} + -t 4.42525 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 123 -a 0 -S 0 -y {55 55} - -t 4.42525 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 123 -a 0 -S 0 -y {55 55} h -t 4.42525 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 123 -a 0 -S 0 -y {-1 -1} r -t 4.43085 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 122 -a 0 -S 0 -y {54 54} + -t 4.43085 -s 3 -d 2 -p ack -e 40 -c 0 -i 128 -a 0 -S 0 -y {54 54} - -t 4.43085 -s 3 -d 2 -p ack -e 40 -c 0 -i 128 -a 0 -S 0 -y {54 54} h -t 4.43085 -s 3 -d 2 -p ack -e 40 -c 0 -i 128 -a 0 -S 0 -y {-1 -1} r -t 4.43491 -s 3 -d 2 -p ack -e 40 -c 0 -i 127 -a 0 -S 0 -y {53 53} + -t 4.43491 -s 2 -d 1 -p ack -e 40 -c 0 -i 127 -a 0 -S 0 -y {53 53} - -t 4.43491 -s 2 -d 1 -p ack -e 40 -c 0 -i 127 -a 0 -S 0 -y {53 53} h -t 4.43491 -s 2 -d 1 -p ack -e 40 -c 0 -i 127 -a 0 -S 0 -y {-1 -1} r -t 4.44125 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 124 -a 0 -S 0 -y {56 56} + -t 4.44125 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 124 -a 0 -S 0 -y {56 56} - -t 4.44125 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 124 -a 0 -S 0 -y {56 56} h -t 4.44125 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 124 -a 0 -S 0 -y {-1 -1} r -t 4.44685 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 123 -a 0 -S 0 -y {55 55} + -t 4.44685 -s 3 -d 2 -p ack -e 40 -c 0 -i 129 -a 0 -S 0 -y {55 55} - -t 4.44685 -s 3 -d 2 -p ack -e 40 -c 0 -i 129 -a 0 -S 0 -y {55 55} h -t 4.44685 -s 3 -d 2 -p ack -e 40 -c 0 -i 129 -a 0 -S 0 -y {-1 -1} r -t 4.45091 -s 3 -d 2 -p ack -e 40 -c 0 -i 128 -a 0 -S 0 -y {54 54} + -t 4.45091 -s 2 -d 1 -p ack -e 40 -c 0 -i 128 -a 0 -S 0 -y {54 54} - -t 4.45091 -s 2 -d 1 -p ack -e 40 -c 0 -i 128 -a 0 -S 0 -y {54 54} h -t 4.45091 -s 2 -d 1 -p ack -e 40 -c 0 -i 128 -a 0 -S 0 -y {-1 -1} r -t 4.46285 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 124 -a 0 -S 0 -y {56 56} + -t 4.46285 -s 3 -d 2 -p ack -e 40 -c 0 -i 130 -a 0 -S 0 -y {56 56} - -t 4.46285 -s 3 -d 2 -p ack -e 40 -c 0 -i 130 -a 0 -S 0 -y {56 56} h -t 4.46285 -s 3 -d 2 -p ack -e 40 -c 0 -i 130 -a 0 -S 0 -y {-1 -1} r -t 4.46691 -s 3 -d 2 -p ack -e 40 -c 0 -i 129 -a 0 -S 0 -y {55 55} + -t 4.46691 -s 2 -d 1 -p ack -e 40 -c 0 -i 129 -a 0 -S 0 -y {55 55} - -t 4.46691 -s 2 -d 1 -p ack -e 40 -c 0 -i 129 -a 0 -S 0 -y {55 55} h -t 4.46691 -s 2 -d 1 -p ack -e 40 -c 0 -i 129 -a 0 -S 0 -y {-1 -1} r -t 4.48291 -s 3 -d 2 -p ack -e 40 -c 0 -i 130 -a 0 -S 0 -y {56 56} + -t 4.48291 -s 2 -d 1 -p ack -e 40 -c 0 -i 130 -a 0 -S 0 -y {56 56} - -t 4.48291 -s 2 -d 1 -p ack -e 40 -c 0 -i 130 -a 0 -S 0 -y {56 56} h -t 4.48291 -s 2 -d 1 -p ack -e 40 -c 0 -i 130 -a 0 -S 0 -y {-1 -1} r -t 4.50355 -s 2 -d 1 -p ack -e 40 -c 0 -i 125 -a 0 -S 0 -y {51 51} + -t 4.50355 -s 1 -d 0 -p ack -e 40 -c 0 -i 125 -a 0 -S 0 -y {51 51} - -t 4.50355 -s 1 -d 0 -p ack -e 40 -c 0 -i 125 -a 0 -S 0 -f 0 -m 1 -y {51 51} h -t 4.50355 -s 1 -d 0 -p ack -e 40 -c 0 -i 125 -a 0 -S 0 -y {-1 -1} r -t 4.51955 -s 2 -d 1 -p ack -e 40 -c 0 -i 126 -a 0 -S 0 -y {52 52} + -t 4.51955 -s 1 -d 0 -p ack -e 40 -c 0 -i 126 -a 0 -S 0 -y {52 52} - -t 4.51955 -s 1 -d 0 -p ack -e 40 -c 0 -i 126 -a 0 -S 0 -f 0 -m 1 -y {52 52} h -t 4.51955 -s 1 -d 0 -p ack -e 40 -c 0 -i 126 -a 0 -S 0 -y {-1 -1} r -t 4.52362 -s 1 -d 0 -p ack -e 40 -c 0 -i 125 -a 0 -S 0 -y {51 51} f -t 4.52361599999999964 -s 0 -d 3 -n cwnd_ -a tcp -v 6.578657 -o 6.422966 -T v + -t 4.52362 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 131 -a 0 -S 0 -f 0 -m 0 -y {57 57} - -t 4.52362 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 131 -a 0 -S 0 -y {57 57} h -t 4.52362 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 131 -a 0 -S 0 -y {-1 -1} r -t 4.53555 -s 2 -d 1 -p ack -e 40 -c 0 -i 127 -a 0 -S 0 -y {53 53} + -t 4.53555 -s 1 -d 0 -p ack -e 40 -c 0 -i 127 -a 0 -S 0 -y {53 53} - -t 4.53555 -s 1 -d 0 -p ack -e 40 -c 0 -i 127 -a 0 -S 0 -f 0 -m 1 -y {53 53} h -t 4.53555 -s 1 -d 0 -p ack -e 40 -c 0 -i 127 -a 0 -S 0 -y {-1 -1} r -t 4.53962 -s 1 -d 0 -p ack -e 40 -c 0 -i 126 -a 0 -S 0 -y {52 52} f -t 4.53961599999999965 -s 0 -d 3 -n cwnd_ -a tcp -v 6.730664 -o 6.578657 -T v + -t 4.53962 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 132 -a 0 -S 0 -f 0 -m 0 -y {58 58} - -t 4.53962 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 132 -a 0 -S 0 -y {58 58} h -t 4.53962 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 132 -a 0 -S 0 -y {-1 -1} r -t 4.54522 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 131 -a 0 -S 0 -y {57 57} + -t 4.54522 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 131 -a 0 -S 0 -y {57 57} - -t 4.54522 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 131 -a 0 -S 0 -y {57 57} h -t 4.54522 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 131 -a 0 -S 0 -y {-1 -1} r -t 4.55155 -s 2 -d 1 -p ack -e 40 -c 0 -i 128 -a 0 -S 0 -y {54 54} + -t 4.55155 -s 1 -d 0 -p ack -e 40 -c 0 -i 128 -a 0 -S 0 -y {54 54} - -t 4.55155 -s 1 -d 0 -p ack -e 40 -c 0 -i 128 -a 0 -S 0 -f 0 -m 1 -y {54 54} h -t 4.55155 -s 1 -d 0 -p ack -e 40 -c 0 -i 128 -a 0 -S 0 -y {-1 -1} r -t 4.55562 -s 1 -d 0 -p ack -e 40 -c 0 -i 127 -a 0 -S 0 -y {53 53} f -t 4.55561599999999967 -s 0 -d 3 -n cwnd_ -a tcp -v 6.879238 -o 6.730664 -T v + -t 4.55562 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 133 -a 0 -S 0 -f 0 -m 0 -y {59 59} - -t 4.55562 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 133 -a 0 -S 0 -y {59 59} h -t 4.55562 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 133 -a 0 -S 0 -y {-1 -1} r -t 4.56122 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 132 -a 0 -S 0 -y {58 58} + -t 4.56122 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 132 -a 0 -S 0 -y {58 58} - -t 4.56122 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 132 -a 0 -S 0 -y {58 58} h -t 4.56122 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 132 -a 0 -S 0 -y {-1 -1} r -t 4.56755 -s 2 -d 1 -p ack -e 40 -c 0 -i 129 -a 0 -S 0 -y {55 55} + -t 4.56755 -s 1 -d 0 -p ack -e 40 -c 0 -i 129 -a 0 -S 0 -y {55 55} - -t 4.56755 -s 1 -d 0 -p ack -e 40 -c 0 -i 129 -a 0 -S 0 -f 0 -m 1 -y {55 55} h -t 4.56755 -s 1 -d 0 -p ack -e 40 -c 0 -i 129 -a 0 -S 0 -y {-1 -1} r -t 4.57162 -s 1 -d 0 -p ack -e 40 -c 0 -i 128 -a 0 -S 0 -y {54 54} f -t 4.57161599999999968 -s 0 -d 3 -n cwnd_ -a tcp -v 7.024603 -o 6.879238 -T v + -t 4.57162 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 134 -a 0 -S 0 -f 0 -m 0 -y {60 60} - -t 4.57162 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 134 -a 0 -S 0 -y {60 60} h -t 4.57162 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 134 -a 0 -S 0 -y {-1 -1} + -t 4.57162 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 135 -a 0 -S 0 -f 0 -m 0 -y {61 61} - -t 4.57322 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 135 -a 0 -S 0 -y {61 61} h -t 4.57322 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 135 -a 0 -S 0 -y {-1 -1} r -t 4.57722 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 133 -a 0 -S 0 -y {59 59} + -t 4.57722 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 133 -a 0 -S 0 -y {59 59} - -t 4.57722 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 133 -a 0 -S 0 -y {59 59} h -t 4.57722 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 133 -a 0 -S 0 -y {-1 -1} r -t 4.58355 -s 2 -d 1 -p ack -e 40 -c 0 -i 130 -a 0 -S 0 -y {56 56} + -t 4.58355 -s 1 -d 0 -p ack -e 40 -c 0 -i 130 -a 0 -S 0 -y {56 56} - -t 4.58355 -s 1 -d 0 -p ack -e 40 -c 0 -i 130 -a 0 -S 0 -f 0 -m 1 -y {56 56} h -t 4.58355 -s 1 -d 0 -p ack -e 40 -c 0 -i 130 -a 0 -S 0 -y {-1 -1} r -t 4.58762 -s 1 -d 0 -p ack -e 40 -c 0 -i 129 -a 0 -S 0 -y {55 55} f -t 4.58761599999999969 -s 0 -d 3 -n cwnd_ -a tcp -v 7.166959 -o 7.024603 -T v + -t 4.58762 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 136 -a 0 -S 0 -f 0 -m 0 -y {62 62} - -t 4.58762 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 136 -a 0 -S 0 -y {62 62} h -t 4.58762 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 136 -a 0 -S 0 -y {-1 -1} r -t 4.59322 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 134 -a 0 -S 0 -y {60 60} + -t 4.59322 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 134 -a 0 -S 0 -y {60 60} - -t 4.59322 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 134 -a 0 -S 0 -y {60 60} h -t 4.59322 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 134 -a 0 -S 0 -y {-1 -1} r -t 4.59482 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 135 -a 0 -S 0 -y {61 61} + -t 4.59482 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 135 -a 0 -S 0 -y {61 61} r -t 4.60362 -s 1 -d 0 -p ack -e 40 -c 0 -i 130 -a 0 -S 0 -y {56 56} f -t 4.60361599999999971 -s 0 -d 3 -n cwnd_ -a tcp -v 7.306489 -o 7.166959 -T v + -t 4.60362 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 137 -a 0 -S 0 -f 0 -m 0 -y {63 63} - -t 4.60362 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 137 -a 0 -S 0 -y {63 63} h -t 4.60362 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 137 -a 0 -S 0 -y {-1 -1} r -t 4.60922 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 136 -a 0 -S 0 -y {62 62} + -t 4.60922 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 136 -a 0 -S 0 -y {62 62} - -t 4.60922 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 135 -a 0 -S 0 -y {61 61} h -t 4.60922 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 135 -a 0 -S 0 -y {-1 -1} r -t 4.62522 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 137 -a 0 -S 0 -y {63 63} + -t 4.62522 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 137 -a 0 -S 0 -y {63 63} - -t 4.62522 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 136 -a 0 -S 0 -y {62 62} h -t 4.62522 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 136 -a 0 -S 0 -y {-1 -1} - -t 4.64122 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 137 -a 0 -S 0 -y {63 63} h -t 4.64122 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 137 -a 0 -S 0 -y {-1 -1} r -t 4.66122 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 131 -a 0 -S 0 -y {57 57} + -t 4.66122 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 131 -a 0 -S 0 -y {57 57} - -t 4.66122 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 131 -a 0 -S 0 -y {57 57} h -t 4.66122 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 131 -a 0 -S 0 -y {-1 -1} r -t 4.67722 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 132 -a 0 -S 0 -y {58 58} + -t 4.67722 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 132 -a 0 -S 0 -y {58 58} - -t 4.67722 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 132 -a 0 -S 0 -y {58 58} h -t 4.67722 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 132 -a 0 -S 0 -y {-1 -1} r -t 4.68282 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 131 -a 0 -S 0 -y {57 57} + -t 4.68282 -s 3 -d 2 -p ack -e 40 -c 0 -i 138 -a 0 -S 0 -y {57 57} - -t 4.68282 -s 3 -d 2 -p ack -e 40 -c 0 -i 138 -a 0 -S 0 -y {57 57} h -t 4.68282 -s 3 -d 2 -p ack -e 40 -c 0 -i 138 -a 0 -S 0 -y {-1 -1} r -t 4.69322 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 133 -a 0 -S 0 -y {59 59} + -t 4.69322 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 133 -a 0 -S 0 -y {59 59} - -t 4.69322 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 133 -a 0 -S 0 -y {59 59} h -t 4.69322 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 133 -a 0 -S 0 -y {-1 -1} r -t 4.69882 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 132 -a 0 -S 0 -y {58 58} + -t 4.69882 -s 3 -d 2 -p ack -e 40 -c 0 -i 139 -a 0 -S 0 -y {58 58} - -t 4.69882 -s 3 -d 2 -p ack -e 40 -c 0 -i 139 -a 0 -S 0 -y {58 58} h -t 4.69882 -s 3 -d 2 -p ack -e 40 -c 0 -i 139 -a 0 -S 0 -y {-1 -1} r -t 4.70288 -s 3 -d 2 -p ack -e 40 -c 0 -i 138 -a 0 -S 0 -y {57 57} + -t 4.70288 -s 2 -d 1 -p ack -e 40 -c 0 -i 138 -a 0 -S 0 -y {57 57} - -t 4.70288 -s 2 -d 1 -p ack -e 40 -c 0 -i 138 -a 0 -S 0 -y {57 57} h -t 4.70288 -s 2 -d 1 -p ack -e 40 -c 0 -i 138 -a 0 -S 0 -y {-1 -1} r -t 4.70922 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 134 -a 0 -S 0 -y {60 60} + -t 4.70922 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 134 -a 0 -S 0 -y {60 60} - -t 4.70922 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 134 -a 0 -S 0 -y {60 60} h -t 4.70922 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 134 -a 0 -S 0 -y {-1 -1} r -t 4.71482 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 133 -a 0 -S 0 -y {59 59} + -t 4.71482 -s 3 -d 2 -p ack -e 40 -c 0 -i 140 -a 0 -S 0 -y {59 59} - -t 4.71482 -s 3 -d 2 -p ack -e 40 -c 0 -i 140 -a 0 -S 0 -y {59 59} h -t 4.71482 -s 3 -d 2 -p ack -e 40 -c 0 -i 140 -a 0 -S 0 -y {-1 -1} r -t 4.71888 -s 3 -d 2 -p ack -e 40 -c 0 -i 139 -a 0 -S 0 -y {58 58} + -t 4.71888 -s 2 -d 1 -p ack -e 40 -c 0 -i 139 -a 0 -S 0 -y {58 58} - -t 4.71888 -s 2 -d 1 -p ack -e 40 -c 0 -i 139 -a 0 -S 0 -y {58 58} h -t 4.71888 -s 2 -d 1 -p ack -e 40 -c 0 -i 139 -a 0 -S 0 -y {-1 -1} r -t 4.72522 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 135 -a 0 -S 0 -y {61 61} + -t 4.72522 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 135 -a 0 -S 0 -y {61 61} - -t 4.72522 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 135 -a 0 -S 0 -y {61 61} h -t 4.72522 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 135 -a 0 -S 0 -y {-1 -1} r -t 4.73082 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 134 -a 0 -S 0 -y {60 60} + -t 4.73082 -s 3 -d 2 -p ack -e 40 -c 0 -i 141 -a 0 -S 0 -y {60 60} - -t 4.73082 -s 3 -d 2 -p ack -e 40 -c 0 -i 141 -a 0 -S 0 -y {60 60} h -t 4.73082 -s 3 -d 2 -p ack -e 40 -c 0 -i 141 -a 0 -S 0 -y {-1 -1} r -t 4.73488 -s 3 -d 2 -p ack -e 40 -c 0 -i 140 -a 0 -S 0 -y {59 59} + -t 4.73488 -s 2 -d 1 -p ack -e 40 -c 0 -i 140 -a 0 -S 0 -y {59 59} - -t 4.73488 -s 2 -d 1 -p ack -e 40 -c 0 -i 140 -a 0 -S 0 -y {59 59} h -t 4.73488 -s 2 -d 1 -p ack -e 40 -c 0 -i 140 -a 0 -S 0 -y {-1 -1} r -t 4.74122 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 136 -a 0 -S 0 -y {62 62} + -t 4.74122 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 136 -a 0 -S 0 -y {62 62} - -t 4.74122 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 136 -a 0 -S 0 -y {62 62} h -t 4.74122 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 136 -a 0 -S 0 -y {-1 -1} r -t 4.74682 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 135 -a 0 -S 0 -y {61 61} + -t 4.74682 -s 3 -d 2 -p ack -e 40 -c 0 -i 142 -a 0 -S 0 -y {61 61} - -t 4.74682 -s 3 -d 2 -p ack -e 40 -c 0 -i 142 -a 0 -S 0 -y {61 61} h -t 4.74682 -s 3 -d 2 -p ack -e 40 -c 0 -i 142 -a 0 -S 0 -y {-1 -1} r -t 4.75088 -s 3 -d 2 -p ack -e 40 -c 0 -i 141 -a 0 -S 0 -y {60 60} + -t 4.75088 -s 2 -d 1 -p ack -e 40 -c 0 -i 141 -a 0 -S 0 -y {60 60} - -t 4.75088 -s 2 -d 1 -p ack -e 40 -c 0 -i 141 -a 0 -S 0 -y {60 60} h -t 4.75088 -s 2 -d 1 -p ack -e 40 -c 0 -i 141 -a 0 -S 0 -y {-1 -1} r -t 4.75722 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 137 -a 0 -S 0 -y {63 63} + -t 4.75722 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 137 -a 0 -S 0 -y {63 63} - -t 4.75722 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 137 -a 0 -S 0 -y {63 63} h -t 4.75722 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 137 -a 0 -S 0 -y {-1 -1} r -t 4.76282 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 136 -a 0 -S 0 -y {62 62} + -t 4.76282 -s 3 -d 2 -p ack -e 40 -c 0 -i 143 -a 0 -S 0 -y {62 62} - -t 4.76282 -s 3 -d 2 -p ack -e 40 -c 0 -i 143 -a 0 -S 0 -y {62 62} h -t 4.76282 -s 3 -d 2 -p ack -e 40 -c 0 -i 143 -a 0 -S 0 -y {-1 -1} r -t 4.76688 -s 3 -d 2 -p ack -e 40 -c 0 -i 142 -a 0 -S 0 -y {61 61} + -t 4.76688 -s 2 -d 1 -p ack -e 40 -c 0 -i 142 -a 0 -S 0 -y {61 61} - -t 4.76688 -s 2 -d 1 -p ack -e 40 -c 0 -i 142 -a 0 -S 0 -y {61 61} h -t 4.76688 -s 2 -d 1 -p ack -e 40 -c 0 -i 142 -a 0 -S 0 -y {-1 -1} r -t 4.77882 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 137 -a 0 -S 0 -y {63 63} + -t 4.77882 -s 3 -d 2 -p ack -e 40 -c 0 -i 144 -a 0 -S 0 -y {63 63} - -t 4.77882 -s 3 -d 2 -p ack -e 40 -c 0 -i 144 -a 0 -S 0 -y {63 63} h -t 4.77882 -s 3 -d 2 -p ack -e 40 -c 0 -i 144 -a 0 -S 0 -y {-1 -1} r -t 4.78288 -s 3 -d 2 -p ack -e 40 -c 0 -i 143 -a 0 -S 0 -y {62 62} + -t 4.78288 -s 2 -d 1 -p ack -e 40 -c 0 -i 143 -a 0 -S 0 -y {62 62} - -t 4.78288 -s 2 -d 1 -p ack -e 40 -c 0 -i 143 -a 0 -S 0 -y {62 62} h -t 4.78288 -s 2 -d 1 -p ack -e 40 -c 0 -i 143 -a 0 -S 0 -y {-1 -1} r -t 4.79888 -s 3 -d 2 -p ack -e 40 -c 0 -i 144 -a 0 -S 0 -y {63 63} + -t 4.79888 -s 2 -d 1 -p ack -e 40 -c 0 -i 144 -a 0 -S 0 -y {63 63} - -t 4.79888 -s 2 -d 1 -p ack -e 40 -c 0 -i 144 -a 0 -S 0 -y {63 63} h -t 4.79888 -s 2 -d 1 -p ack -e 40 -c 0 -i 144 -a 0 -S 0 -y {-1 -1} r -t 4.80352 -s 2 -d 1 -p ack -e 40 -c 0 -i 138 -a 0 -S 0 -y {57 57} + -t 4.80352 -s 1 -d 0 -p ack -e 40 -c 0 -i 138 -a 0 -S 0 -y {57 57} - -t 4.80352 -s 1 -d 0 -p ack -e 40 -c 0 -i 138 -a 0 -S 0 -f 0 -m 1 -y {57 57} h -t 4.80352 -s 1 -d 0 -p ack -e 40 -c 0 -i 138 -a 0 -S 0 -y {-1 -1} r -t 4.81952 -s 2 -d 1 -p ack -e 40 -c 0 -i 139 -a 0 -S 0 -y {58 58} + -t 4.81952 -s 1 -d 0 -p ack -e 40 -c 0 -i 139 -a 0 -S 0 -y {58 58} - -t 4.81952 -s 1 -d 0 -p ack -e 40 -c 0 -i 139 -a 0 -S 0 -f 0 -m 1 -y {58 58} h -t 4.81952 -s 1 -d 0 -p ack -e 40 -c 0 -i 139 -a 0 -S 0 -y {-1 -1} r -t 4.82358 -s 1 -d 0 -p ack -e 40 -c 0 -i 138 -a 0 -S 0 -y {57 57} f -t 4.82358399999999943 -s 0 -d 3 -n cwnd_ -a tcp -v 7.443353 -o 7.306489 -T v + -t 4.82358 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 145 -a 0 -S 0 -f 0 -m 0 -y {64 64} - -t 4.82358 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 145 -a 0 -S 0 -y {64 64} h -t 4.82358 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 145 -a 0 -S 0 -y {-1 -1} r -t 4.83552 -s 2 -d 1 -p ack -e 40 -c 0 -i 140 -a 0 -S 0 -y {59 59} + -t 4.83552 -s 1 -d 0 -p ack -e 40 -c 0 -i 140 -a 0 -S 0 -y {59 59} - -t 4.83552 -s 1 -d 0 -p ack -e 40 -c 0 -i 140 -a 0 -S 0 -f 0 -m 1 -y {59 59} h -t 4.83552 -s 1 -d 0 -p ack -e 40 -c 0 -i 140 -a 0 -S 0 -y {-1 -1} r -t 4.83958 -s 1 -d 0 -p ack -e 40 -c 0 -i 139 -a 0 -S 0 -y {58 58} f -t 4.83958399999999944 -s 0 -d 3 -n cwnd_ -a tcp -v 7.577701 -o 7.443353 -T v + -t 4.83958 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 146 -a 0 -S 0 -f 0 -m 0 -y {65 65} - -t 4.83958 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 146 -a 0 -S 0 -y {65 65} h -t 4.83958 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 146 -a 0 -S 0 -y {-1 -1} r -t 4.84518 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 145 -a 0 -S 0 -y {64 64} + -t 4.84518 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 145 -a 0 -S 0 -y {64 64} - -t 4.84518 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 145 -a 0 -S 0 -y {64 64} h -t 4.84518 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 145 -a 0 -S 0 -y {-1 -1} r -t 4.85152 -s 2 -d 1 -p ack -e 40 -c 0 -i 141 -a 0 -S 0 -y {60 60} + -t 4.85152 -s 1 -d 0 -p ack -e 40 -c 0 -i 141 -a 0 -S 0 -y {60 60} - -t 4.85152 -s 1 -d 0 -p ack -e 40 -c 0 -i 141 -a 0 -S 0 -f 0 -m 1 -y {60 60} h -t 4.85152 -s 1 -d 0 -p ack -e 40 -c 0 -i 141 -a 0 -S 0 -y {-1 -1} r -t 4.85558 -s 1 -d 0 -p ack -e 40 -c 0 -i 140 -a 0 -S 0 -y {59 59} f -t 4.85558399999999946 -s 0 -d 3 -n cwnd_ -a tcp -v 7.709667 -o 7.577701 -T v + -t 4.85558 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 147 -a 0 -S 0 -f 0 -m 0 -y {66 66} - -t 4.85558 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 147 -a 0 -S 0 -y {66 66} h -t 4.85558 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 147 -a 0 -S 0 -y {-1 -1} r -t 4.86118 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 146 -a 0 -S 0 -y {65 65} + -t 4.86118 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 146 -a 0 -S 0 -y {65 65} - -t 4.86118 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 146 -a 0 -S 0 -y {65 65} h -t 4.86118 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 146 -a 0 -S 0 -y {-1 -1} r -t 4.86752 -s 2 -d 1 -p ack -e 40 -c 0 -i 142 -a 0 -S 0 -y {61 61} + -t 4.86752 -s 1 -d 0 -p ack -e 40 -c 0 -i 142 -a 0 -S 0 -y {61 61} - -t 4.86752 -s 1 -d 0 -p ack -e 40 -c 0 -i 142 -a 0 -S 0 -f 0 -m 1 -y {61 61} h -t 4.86752 -s 1 -d 0 -p ack -e 40 -c 0 -i 142 -a 0 -S 0 -y {-1 -1} r -t 4.87158 -s 1 -d 0 -p ack -e 40 -c 0 -i 141 -a 0 -S 0 -y {60 60} f -t 4.87158399999999947 -s 0 -d 3 -n cwnd_ -a tcp -v 7.839375 -o 7.709667 -T v + -t 4.87158 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 148 -a 0 -S 0 -f 0 -m 0 -y {67 67} - -t 4.87158 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 148 -a 0 -S 0 -y {67 67} h -t 4.87158 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 148 -a 0 -S 0 -y {-1 -1} r -t 4.87718 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 147 -a 0 -S 0 -y {66 66} + -t 4.87718 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 147 -a 0 -S 0 -y {66 66} - -t 4.87718 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 147 -a 0 -S 0 -y {66 66} h -t 4.87718 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 147 -a 0 -S 0 -y {-1 -1} r -t 4.88352 -s 2 -d 1 -p ack -e 40 -c 0 -i 143 -a 0 -S 0 -y {62 62} + -t 4.88352 -s 1 -d 0 -p ack -e 40 -c 0 -i 143 -a 0 -S 0 -y {62 62} - -t 4.88352 -s 1 -d 0 -p ack -e 40 -c 0 -i 143 -a 0 -S 0 -f 0 -m 1 -y {62 62} h -t 4.88352 -s 1 -d 0 -p ack -e 40 -c 0 -i 143 -a 0 -S 0 -y {-1 -1} r -t 4.88758 -s 1 -d 0 -p ack -e 40 -c 0 -i 142 -a 0 -S 0 -y {61 61} f -t 4.88758399999999948 -s 0 -d 3 -n cwnd_ -a tcp -v 7.966936 -o 7.839375 -T v + -t 4.88758 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 149 -a 0 -S 0 -f 0 -m 0 -y {68 68} - -t 4.88758 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 149 -a 0 -S 0 -y {68 68} h -t 4.88758 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 149 -a 0 -S 0 -y {-1 -1} r -t 4.89318 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 148 -a 0 -S 0 -y {67 67} + -t 4.89318 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 148 -a 0 -S 0 -y {67 67} - -t 4.89318 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 148 -a 0 -S 0 -y {67 67} h -t 4.89318 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 148 -a 0 -S 0 -y {-1 -1} r -t 4.89952 -s 2 -d 1 -p ack -e 40 -c 0 -i 144 -a 0 -S 0 -y {63 63} + -t 4.89952 -s 1 -d 0 -p ack -e 40 -c 0 -i 144 -a 0 -S 0 -y {63 63} - -t 4.89952 -s 1 -d 0 -p ack -e 40 -c 0 -i 144 -a 0 -S 0 -f 0 -m 1 -y {63 63} h -t 4.89952 -s 1 -d 0 -p ack -e 40 -c 0 -i 144 -a 0 -S 0 -y {-1 -1} r -t 4.90358 -s 1 -d 0 -p ack -e 40 -c 0 -i 143 -a 0 -S 0 -y {62 62} f -t 4.90358399999999950 -s 0 -d 3 -n cwnd_ -a tcp -v 8.092455 -o 7.966936 -T v + -t 4.90358 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 150 -a 0 -S 0 -f 0 -m 0 -y {69 69} - -t 4.90358 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 150 -a 0 -S 0 -y {69 69} h -t 4.90358 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 150 -a 0 -S 0 -y {-1 -1} + -t 4.90358 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 151 -a 0 -S 0 -f 0 -m 0 -y {70 70} - -t 4.90518 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 151 -a 0 -S 0 -y {70 70} h -t 4.90518 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 151 -a 0 -S 0 -y {-1 -1} r -t 4.90918 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 149 -a 0 -S 0 -y {68 68} + -t 4.90918 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 149 -a 0 -S 0 -y {68 68} - -t 4.90918 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 149 -a 0 -S 0 -y {68 68} h -t 4.90918 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 149 -a 0 -S 0 -y {-1 -1} r -t 4.91958 -s 1 -d 0 -p ack -e 40 -c 0 -i 144 -a 0 -S 0 -y {63 63} f -t 4.91958399999999951 -s 0 -d 3 -n cwnd_ -a tcp -v 8.216027 -o 8.092455 -T v + -t 4.91958 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 152 -a 0 -S 0 -f 0 -m 0 -y {71 71} - -t 4.91958 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 152 -a 0 -S 0 -y {71 71} h -t 4.91958 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 152 -a 0 -S 0 -y {-1 -1} r -t 4.92518 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 150 -a 0 -S 0 -y {69 69} + -t 4.92518 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 150 -a 0 -S 0 -y {69 69} - -t 4.92518 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 150 -a 0 -S 0 -y {69 69} h -t 4.92518 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 150 -a 0 -S 0 -y {-1 -1} r -t 4.92678 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 151 -a 0 -S 0 -y {70 70} + -t 4.92678 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 151 -a 0 -S 0 -y {70 70} r -t 4.94118 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 152 -a 0 -S 0 -y {71 71} + -t 4.94118 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 152 -a 0 -S 0 -y {71 71} - -t 4.94118 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 151 -a 0 -S 0 -y {70 70} h -t 4.94118 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 151 -a 0 -S 0 -y {-1 -1} - -t 4.95718 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 152 -a 0 -S 0 -y {71 71} h -t 4.95718 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 152 -a 0 -S 0 -y {-1 -1} r -t 4.96118 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 145 -a 0 -S 0 -y {64 64} + -t 4.96118 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 145 -a 0 -S 0 -y {64 64} - -t 4.96118 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 145 -a 0 -S 0 -y {64 64} h -t 4.96118 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 145 -a 0 -S 0 -y {-1 -1} r -t 4.97718 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 146 -a 0 -S 0 -y {65 65} + -t 4.97718 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 146 -a 0 -S 0 -y {65 65} - -t 4.97718 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 146 -a 0 -S 0 -y {65 65} h -t 4.97718 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 146 -a 0 -S 0 -y {-1 -1} r -t 4.98278 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 145 -a 0 -S 0 -y {64 64} + -t 4.98278 -s 3 -d 2 -p ack -e 40 -c 0 -i 153 -a 0 -S 0 -y {64 64} - -t 4.98278 -s 3 -d 2 -p ack -e 40 -c 0 -i 153 -a 0 -S 0 -y {64 64} h -t 4.98278 -s 3 -d 2 -p ack -e 40 -c 0 -i 153 -a 0 -S 0 -y {-1 -1} r -t 4.99318 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 147 -a 0 -S 0 -y {66 66} + -t 4.99318 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 147 -a 0 -S 0 -y {66 66} - -t 4.99318 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 147 -a 0 -S 0 -y {66 66} h -t 4.99318 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 147 -a 0 -S 0 -y {-1 -1} r -t 4.99878 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 146 -a 0 -S 0 -y {65 65} + -t 4.99878 -s 3 -d 2 -p ack -e 40 -c 0 -i 154 -a 0 -S 0 -y {65 65} - -t 4.99878 -s 3 -d 2 -p ack -e 40 -c 0 -i 154 -a 0 -S 0 -y {65 65} h -t 4.99878 -s 3 -d 2 -p ack -e 40 -c 0 -i 154 -a 0 -S 0 -y {-1 -1} r -t 5.00285 -s 3 -d 2 -p ack -e 40 -c 0 -i 153 -a 0 -S 0 -y {64 64} + -t 5.00285 -s 2 -d 1 -p ack -e 40 -c 0 -i 153 -a 0 -S 0 -y {64 64} - -t 5.00285 -s 2 -d 1 -p ack -e 40 -c 0 -i 153 -a 0 -S 0 -y {64 64} h -t 5.00285 -s 2 -d 1 -p ack -e 40 -c 0 -i 153 -a 0 -S 0 -y {-1 -1} r -t 5.00918 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 148 -a 0 -S 0 -y {67 67} + -t 5.00918 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 148 -a 0 -S 0 -y {67 67} - -t 5.00918 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 148 -a 0 -S 0 -y {67 67} h -t 5.00918 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 148 -a 0 -S 0 -y {-1 -1} r -t 5.01478 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 147 -a 0 -S 0 -y {66 66} + -t 5.01478 -s 3 -d 2 -p ack -e 40 -c 0 -i 155 -a 0 -S 0 -y {66 66} - -t 5.01478 -s 3 -d 2 -p ack -e 40 -c 0 -i 155 -a 0 -S 0 -y {66 66} h -t 5.01478 -s 3 -d 2 -p ack -e 40 -c 0 -i 155 -a 0 -S 0 -y {-1 -1} r -t 5.01885 -s 3 -d 2 -p ack -e 40 -c 0 -i 154 -a 0 -S 0 -y {65 65} + -t 5.01885 -s 2 -d 1 -p ack -e 40 -c 0 -i 154 -a 0 -S 0 -y {65 65} - -t 5.01885 -s 2 -d 1 -p ack -e 40 -c 0 -i 154 -a 0 -S 0 -y {65 65} h -t 5.01885 -s 2 -d 1 -p ack -e 40 -c 0 -i 154 -a 0 -S 0 -y {-1 -1} r -t 5.02518 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 149 -a 0 -S 0 -y {68 68} + -t 5.02518 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 149 -a 0 -S 0 -y {68 68} - -t 5.02518 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 149 -a 0 -S 0 -y {68 68} h -t 5.02518 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 149 -a 0 -S 0 -y {-1 -1} r -t 5.03078 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 148 -a 0 -S 0 -y {67 67} + -t 5.03078 -s 3 -d 2 -p ack -e 40 -c 0 -i 156 -a 0 -S 0 -y {67 67} - -t 5.03078 -s 3 -d 2 -p ack -e 40 -c 0 -i 156 -a 0 -S 0 -y {67 67} h -t 5.03078 -s 3 -d 2 -p ack -e 40 -c 0 -i 156 -a 0 -S 0 -y {-1 -1} r -t 5.03485 -s 3 -d 2 -p ack -e 40 -c 0 -i 155 -a 0 -S 0 -y {66 66} + -t 5.03485 -s 2 -d 1 -p ack -e 40 -c 0 -i 155 -a 0 -S 0 -y {66 66} - -t 5.03485 -s 2 -d 1 -p ack -e 40 -c 0 -i 155 -a 0 -S 0 -y {66 66} h -t 5.03485 -s 2 -d 1 -p ack -e 40 -c 0 -i 155 -a 0 -S 0 -y {-1 -1} r -t 5.04118 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 150 -a 0 -S 0 -y {69 69} + -t 5.04118 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 150 -a 0 -S 0 -y {69 69} - -t 5.04118 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 150 -a 0 -S 0 -y {69 69} h -t 5.04118 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 150 -a 0 -S 0 -y {-1 -1} r -t 5.04678 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 149 -a 0 -S 0 -y {68 68} + -t 5.04678 -s 3 -d 2 -p ack -e 40 -c 0 -i 157 -a 0 -S 0 -y {68 68} - -t 5.04678 -s 3 -d 2 -p ack -e 40 -c 0 -i 157 -a 0 -S 0 -y {68 68} h -t 5.04678 -s 3 -d 2 -p ack -e 40 -c 0 -i 157 -a 0 -S 0 -y {-1 -1} r -t 5.05085 -s 3 -d 2 -p ack -e 40 -c 0 -i 156 -a 0 -S 0 -y {67 67} + -t 5.05085 -s 2 -d 1 -p ack -e 40 -c 0 -i 156 -a 0 -S 0 -y {67 67} - -t 5.05085 -s 2 -d 1 -p ack -e 40 -c 0 -i 156 -a 0 -S 0 -y {67 67} h -t 5.05085 -s 2 -d 1 -p ack -e 40 -c 0 -i 156 -a 0 -S 0 -y {-1 -1} r -t 5.05718 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 151 -a 0 -S 0 -y {70 70} + -t 5.05718 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 151 -a 0 -S 0 -y {70 70} - -t 5.05718 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 151 -a 0 -S 0 -y {70 70} h -t 5.05718 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 151 -a 0 -S 0 -y {-1 -1} r -t 5.06278 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 150 -a 0 -S 0 -y {69 69} + -t 5.06278 -s 3 -d 2 -p ack -e 40 -c 0 -i 158 -a 0 -S 0 -y {69 69} - -t 5.06278 -s 3 -d 2 -p ack -e 40 -c 0 -i 158 -a 0 -S 0 -y {69 69} h -t 5.06278 -s 3 -d 2 -p ack -e 40 -c 0 -i 158 -a 0 -S 0 -y {-1 -1} r -t 5.06685 -s 3 -d 2 -p ack -e 40 -c 0 -i 157 -a 0 -S 0 -y {68 68} + -t 5.06685 -s 2 -d 1 -p ack -e 40 -c 0 -i 157 -a 0 -S 0 -y {68 68} - -t 5.06685 -s 2 -d 1 -p ack -e 40 -c 0 -i 157 -a 0 -S 0 -y {68 68} h -t 5.06685 -s 2 -d 1 -p ack -e 40 -c 0 -i 157 -a 0 -S 0 -y {-1 -1} r -t 5.07318 -s 1 -d 2 -p tcp -e 1000 -c 0 -i 152 -a 0 -S 0 -y {71 71} + -t 5.07318 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 152 -a 0 -S 0 -y {71 71} - -t 5.07318 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 152 -a 0 -S 0 -y {71 71} h -t 5.07318 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 152 -a 0 -S 0 -y {-1 -1} r -t 5.07878 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 151 -a 0 -S 0 -y {70 70} + -t 5.07878 -s 3 -d 2 -p ack -e 40 -c 0 -i 159 -a 0 -S 0 -y {70 70} - -t 5.07878 -s 3 -d 2 -p ack -e 40 -c 0 -i 159 -a 0 -S 0 -y {70 70} h -t 5.07878 -s 3 -d 2 -p ack -e 40 -c 0 -i 159 -a 0 -S 0 -y {-1 -1} r -t 5.08285 -s 3 -d 2 -p ack -e 40 -c 0 -i 158 -a 0 -S 0 -y {69 69} + -t 5.08285 -s 2 -d 1 -p ack -e 40 -c 0 -i 158 -a 0 -S 0 -y {69 69} - -t 5.08285 -s 2 -d 1 -p ack -e 40 -c 0 -i 158 -a 0 -S 0 -y {69 69} h -t 5.08285 -s 2 -d 1 -p ack -e 40 -c 0 -i 158 -a 0 -S 0 -y {-1 -1} r -t 5.09478 -s 2 -d 3 -p tcp -e 1000 -c 0 -i 152 -a 0 -S 0 -y {71 71} + -t 5.09478 -s 3 -d 2 -p ack -e 40 -c 0 -i 160 -a 0 -S 0 -y {71 71} - -t 5.09478 -s 3 -d 2 -p ack -e 40 -c 0 -i 160 -a 0 -S 0 -y {71 71} h -t 5.09478 -s 3 -d 2 -p ack -e 40 -c 0 -i 160 -a 0 -S 0 -y {-1 -1} r -t 5.09885 -s 3 -d 2 -p ack -e 40 -c 0 -i 159 -a 0 -S 0 -y {70 70} + -t 5.09885 -s 2 -d 1 -p ack -e 40 -c 0 -i 159 -a 0 -S 0 -y {70 70} - -t 5.09885 -s 2 -d 1 -p ack -e 40 -c 0 -i 159 -a 0 -S 0 -y {70 70} h -t 5.09885 -s 2 -d 1 -p ack -e 40 -c 0 -i 159 -a 0 -S 0 -y {-1 -1} nam-1.15/edu/D2-fast-retransmit.tcl0000664000076400007660000000333407024407030015742 0ustar tomhnsnam# It will show how TCP adjusts its window size by multiplicative decrease # features : labeling, annotation, nam-graph, and window size monitoring # # n0 --- n1 -------------- n2 --- n3 # set ns [new Simulator] $ns trace-all [open fast-retransmit.tr w] $ns namtrace-all [open fast-retransmit.nam w] ### build topology with 4 nodes foreach i " 0 1 2 3 " { set n$i [$ns node] } $ns at 0.0 "$n0 label TCP" $ns at 0.0 "$n3 label TCP" $ns duplex-link $n0 $n1 5Mb 20ms DropTail $ns duplex-link $n1 $n2 0.5Mb 100ms DropTail $ns duplex-link $n2 $n3 5Mb 20ms DropTail $ns queue-limit $n1 $n2 5 $ns duplex-link-op $n0 $n1 orient right $ns duplex-link-op $n1 $n2 orient right $ns duplex-link-op $n2 $n3 orient right $ns duplex-link-op $n1 $n2 queuePos 0.5 ### set TCP variables Agent/TCP set nam_tracevar_ true Agent/TCP set window_ 20 Agent/TCP set ssthresh_ 20 ### TCP between n0 and n3 (Black) set tcp [new Agent/TCP/Reno] $ns attach-agent $n0 $tcp set sink [new Agent/TCPSink] $ns attach-agent $n3 $sink $ns connect $tcp $sink set ftp [new Application/FTP] $ftp attach-agent $tcp $ns add-agent-trace $tcp tcp $ns monitor-agent-trace $tcp $tcp tracevar cwnd_ $tcp tracevar ssthresh_ proc finish {} { global ns $ns flush-trace puts "filtering..." exec tclsh ../bin/namfilter.tcl fast-retransmit.nam puts "running nam..." exec nam fast-retransmit.nam & exit 0 } ### set operations $ns at 0.1 "$ftp start" $ns at 5.0 "$ftp stop" $ns at 5.1 "finish" ### add annotations $ns at 0.0 "$ns trace-annotate \"TCP with multiplicative decrease\"" $ns run nam-1.15/enetmodel.cc0000664000076400007660000011067010564011173013362 0ustar tomhnsnam/* * Copyright (C) 1997-2001 by the University of Southern California * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. * * * The copyright of this module includes the following * linking-with-specific-other-licenses addition: * * In addition, as a special exception, the copyright holders of * this module give you permission to combine (via static or * dynamic linking) this module with free software programs or * libraries that are released under the GNU LGPL and with code * included in the standard release of ns-2 under the Apache 2.0 * license or under otherwise-compatible licenses with advertising * requirements (or modified versions of such code, with unchanged * license). You may copy and distribute such a system following the * terms of the GNU GPL for this module and the licenses of the * other code concerned, provided that you include the source code of * that other code when and as the GNU GPL requires distribution of * source code. * * Note that people who make modified versions of this module * are not obligated to grant this special exception for their * modified versions; it is their choice whether to do so. The GNU * General Public License gives permission to release a modified * version without this exception; this exception also makes it * possible to release a modified version which carries forward this * exception. * * $Header: /cvsroot/nsnam/nam-1/enetmodel.cc,v 1.46 2007/02/12 07:08:43 tom_henderson Exp $ */ // Network model with Editor layout #include #include #include #include "random.h" #include "view.h" #include "netview.h" #include "animation.h" #include "queue.h" #include "edge.h" #include "node.h" #include "agent.h" #include "sincos.h" #include "state.h" #include "packet.h" #include "enetmodel.h" #include "trafficsource.h" #include "queuehandle.h" static int agent_number = 0; class EditorNetworkModelClass : public TclClass { public: EditorNetworkModelClass() : TclClass("NetworkModel/Editor") {} TclObject* create(int argc, const char*const* argv) { if (argc < 5) return 0; return (new EditorNetModel(argv[4])); } } editornetworkmodel_class; EditorNetModel::EditorNetModel(const char *editor) : NetModel(editor) { node_id_count = 0; traffic_sources_ = NULL; lossmodels_ = NULL; queue_handles_ = NULL; maximum_simulation_time_ = 30.0; // seconds playback_speed_ = 2000.0; // default animation speed (in microseconds) bind("Wpxmin_", &pxmin_); bind("Wpymin_", &pymin_); bind("Wpxmax_", &pxmax_); bind("Wpymax_", &pymax_); bind("maximum_simulation_time_", &maximum_simulation_time_); } EditorNetModel::~EditorNetModel() { } void EditorNetModel::BoundingBox(BBox& bb) { // by default, 800X1000 internal drawing area bb.xmin = pxmin_; bb.ymin = pymin_; bb.xmax = pxmax_; bb.ymax = pymax_; for (Animation* a = drawables_; a != 0; a = a->next()) { a->merge(bb); } pxmin_ = bb.xmin; pymin_ = bb.ymin; pxmax_ = bb.xmax; pymax_ = bb.ymax; } //---------------------------------------------------------------------- // Node * // EditorNetModel::addNode(Node * node) //---------------------------------------------------------------------- Node * EditorNetModel::addNode(Node * node) { if (!lookupNode(node->num())) { node->next_ = nodes_; nodes_ = node; node->Animation::insert(&drawables_); return node; } return NULL; } //---------------------------------------------------------------------- // int // EditorNetModel::addNode(int node_id) //---------------------------------------------------------------------- Node * EditorNetModel::addNode(int node_id) { Node * node = NULL; static char name[TRACE_LINE_MAXLEN]; double size = 10.0; // This is the default node size taken from // parser.cc under the 'n' animation event sprintf(name, "%d", node_id); node = new CircleNode(name, size); node->init_color("black"); if (node_id_count <= node_id) { node_id_count = node_id + 1; } if (!addNode(node)) { delete node; node = NULL; } return node; } //---------------------------------------------------------------------- // int // EditorNetModel::addNode(float cx, float cy) // - Create a node using the specified name // and the default size and insert it into this // NetModel's list of drawables. //---------------------------------------------------------------------- int EditorNetModel::addNode(float cx, float cy) { Node * node; // Find the next node id number if (node_id_count == 0 ) { for (node = nodes_; node != 0; node = node->next_) { if (node->num() > node_id_count) { node_id_count = node->num(); } } node_id_count++; } node = addNode(node_id_count); if (node) { node->place(cx,cy); } return (TCL_OK); } //---------------------------------------------------------------------- //---------------------------------------------------------------------- Edge * EditorNetModel::addEdge(Edge * edge) { enterEdge(edge); // adds edge to a hash table edge->Animation::insert(&drawables_); // adds to list of drawable objects placeEdge(edge, edge->getSourceNode()); return edge; } //---------------------------------------------------------------------- // int // EditorNetModel::addLink(Node * src, Node * dst) // - All links are duplex links by default //---------------------------------------------------------------------- int EditorNetModel::addLink(Node * src, Node * dst) { double bw = 1.0; // Mb/s double delay = 20; // ms double length = 0.0; double angle = 1.0; Edge * edge; if (!src->find_edge(dst->number()) && !dst->find_edge(src->number())) { // Create the forward edge edge = new Edge(src, dst, 25, bw, delay, length, angle); edge->init_color("black"); enterEdge(edge); edge->Animation::insert(&drawables_); src->add_link(edge); placeEdge(edge, src); // Add queue handle for editing the forward edge's queue properties addQueueHandle(edge); // Create the reverse edge edge = new Edge(dst, src, 25, bw, delay, length, angle); edge->init_color("black"); enterEdge(edge); edge->Animation::insert(&drawables_); dst->add_link(edge); placeEdge(edge, dst); // Add queue handle for editing the reverse edge's queue properties addQueueHandle(edge); } return (TCL_OK); } //---------------------------------------------------------------------- // int EditorNetModel::addLink(int source_id, int destination_id) //---------------------------------------------------------------------- int EditorNetModel::addLink(int source_id, int destination_id) { Node * source_node, * destination_node; source_node = lookupNode(source_id); destination_node = lookupNode(destination_id); if (source_node && destination_node) { return addLink(source_node, destination_node); } return TCL_ERROR; } //---------------------------------------------------------------------- // agent_type // EditorNetModel::classifyAgent(const char * agent) //---------------------------------------------------------------------- agent_type EditorNetModel::classifyAgent(const char * agent) { if (strcmp(agent, "UDP") == 0) return UDP_SOURCE_AGENT; if (strcmp(agent, "Null") == 0) return UDP_SINK_AGENT; if ((strcmp(agent, "TCP") == 0) || (strncmp(agent, "TCP/", 4) == 0)) return TCP_SOURCE_AGENT; if (strcmp(agent, "TCPSink") >= 0) return TCP_SINK_AGENT; return UNKNOWN_AGENT; } //---------------------------------------------------------------------- // bool // EditorNetModel::checkAgentCompatibility(agent_type source, agent_type dest) //---------------------------------------------------------------------- bool EditorNetModel::checkAgentCompatibility(agent_type source, agent_type dest) { return (source == UDP_SOURCE_AGENT && dest == UDP_SINK_AGENT) || (source == UDP_SINK_AGENT && dest == UDP_SOURCE_AGENT) || (source == TCP_SOURCE_AGENT && dest == TCP_SINK_AGENT) || (source == TCP_SINK_AGENT && dest == TCP_SOURCE_AGENT) || (source == FULLTCP_AGENT && dest == FULLTCP_AGENT); } //---------------------------------------------------------------------- // bool // EditorNetModel::checkAgentCompatibility(const char * source, const char * dest) //---------------------------------------------------------------------- bool EditorNetModel::checkAgentCompatibility(const char * source, const char * dest) { return checkAgentCompatibility(classifyAgent(source), classifyAgent(dest)); } //---------------------------------------------------------------------- // int // EditorNetModel::addAgent(Agent * agent, Node * node) //---------------------------------------------------------------------- int EditorNetModel::addAgent(Agent * agent, Node * node) { placeAgent(agent, node); // Add to animations list so that it will be redrawn on all updates agent->Animation::insert(&animations_); agent->node_ = node; node->add_agent(agent); return (TCL_OK); } //---------------------------------------------------------------------- // int // EditorNetModel::addAgent(Node *src, char * agent_type, float cx, float cy) //---------------------------------------------------------------------- int EditorNetModel::addAgent(Node * src, const char * agent_type, float cx, float cy) { Agent *a; Node *n = lookupNode(src->num()); if (n == 0) { return 0; } else { a = new BoxAgent(agent_type, n->size()); placeAgent(a, src); // Add to animations list so that it will be redrawn on all updates a->Animation::insert(&animations_); a->node_ = n; //a->number_ = agent_number++; agent_number++; n->add_agent(a); } return (TCL_OK); } //---------------------------------------------------------------------- // int // EditorNetModel::addAgentLink(Agent *src_agent, Agent *dst_agent) // - Need to add more constraints on which agents can connect to // each other // //---------------------------------------------------------------------- int EditorNetModel::addAgentLink(Agent *src_agent, Agent *dst_agent) { if (!src_agent->AgentPartner_ && !dst_agent->AgentPartner_ && checkAgentCompatibility(src_agent->name(), dst_agent->name())) { // Only connect agents that don't have a partner yet // and are compatible with each other agent_type src_type = classifyAgent(src_agent->name()); if ( src_type == UDP_SOURCE_AGENT || src_type == TCP_SOURCE_AGENT || src_type == FULLTCP_AGENT) { src_agent->AgentRole_ = SOURCE; dst_agent->AgentRole_ = DESTINATION; } else { src_agent->AgentRole_ = DESTINATION; src_agent->AgentRole_ = SOURCE; } src_agent->AgentPartner_ = dst_agent; dst_agent->AgentPartner_ = src_agent; return TCL_OK; } return TCL_ERROR; } //---------------------------------------------------------------------- // int // EditorNetModel::addAgentLink(int source_id, int destination_id) { //---------------------------------------------------------------------- int EditorNetModel::addAgentLink(int source_id, int destination_id) { Agent * source, * destination; source = lookupAgent(source_id); destination = lookupAgent(destination_id); if (source && destination) { return addAgentLink(source, destination); } return TCL_ERROR; } //---------------------------------------------------------------------- // trafgen_type // EditorNetModel::classifyTrafficSource(const char * source) //---------------------------------------------------------------------- trafgen_type EditorNetModel::classifyTrafficSource(const char * source) { if ( strcmp(source, "FTP") == 0 || strcmp(source, "Telnet") == 0) return TCP_APP; if ( strcmp(source, "CBR") == 0 || strcmp(source, "Pareto") == 0 || strcmp(source, "Exponential") == 0) return UDP_APP; return UNKNOWN_APP; } //---------------------------------------------------------------------- // trafgen_type // EditorNetModel::checkAgentTrafficSourceCompatibility(agent_type agent, trafgen_type source) //---------------------------------------------------------------------- bool EditorNetModel::checkAgentTrafficSourceCompatibility(agent_type agent, trafgen_type source) { return (source == UDP_APP && agent == UDP_SOURCE_AGENT) || (source == TCP_APP && agent == TCP_SOURCE_AGENT) || (source == TCP_APP && agent == FULLTCP_AGENT) || (source == FULLTCP_APP && agent == FULLTCP_AGENT); } //---------------------------------------------------------------------- // trafgen_type // EditorNetModel::checkAgentTrafficSourceCompatibility(const char * agent, const char * source) //---------------------------------------------------------------------- bool EditorNetModel::checkAgentTrafficSourceCompatibility(const char * agent, const char * source) { return checkAgentTrafficSourceCompatibility(classifyAgent(agent), classifyTrafficSource(source)); } //---------------------------------------------------------------------- // int // EditorNetModel::addTrafficSource(TrafficSource * traffic_source, // Agent * agent) //---------------------------------------------------------------------- int EditorNetModel::addTrafficSource(TrafficSource * traffic_source, Agent * agent) { if (traffic_source && agent && checkAgentTrafficSourceCompatibility(agent->name(), traffic_source->name())) { traffic_source->attachTo(agent); // Add to animations list so that it will be redrawn on all updates traffic_source->Animation::insert(&animations_); // Add to master list of all trafficsources_ which is used to // look up a traffic source for editing purposes traffic_source->editornetmodel_next_ = traffic_sources_; traffic_sources_ = traffic_source; return TCL_OK; } return TCL_ERROR; } //---------------------------------------------------------------------- // int // EditorNetModel::addTrafficSource(Agent * agent, char * type, // float cx, float cy) //---------------------------------------------------------------------- int EditorNetModel::addTrafficSource(Agent * agent, const char * type, float cx, float cy) { TrafficSource * traffic_source; if (agent) { traffic_source = new TrafficSource(type, agent->size()); return addTrafficSource(traffic_source, agent); } return (TCL_ERROR); } //---------------------------------------------------------------------- // TrafficSource * // EditorNetModel::lookupTrafficSource(int id) //---------------------------------------------------------------------- TrafficSource * EditorNetModel::lookupTrafficSource(int id) { TrafficSource * ts; for (ts = traffic_sources_; ts; ts = ts->editornetmodel_next_) { if (ts->number() == id) { break; } } return ts; } //---------------------------------------------------------------------- //---------------------------------------------------------------------- int EditorNetModel::addLossModel(LossModel * loss_model, Edge * edge) { if (loss_model && edge) { edge->addLossModel(loss_model); loss_model->place(); // Add to animations list so that it will be redrawn on all updates loss_model->Animation::insert(&animations_); // Add to master list of all lossmodels_ which is used to // look up a lossmodel for editing purposes loss_model->next_lossmodel_ = lossmodels_; lossmodels_ = loss_model; } return TCL_OK; } //---------------------------------------------------------------------- //---------------------------------------------------------------------- int EditorNetModel::addLossModel(Edge * edge, const char * type, double cx, double cy) { LossModel * loss_model; if (edge && !edge->getLossModel()) { loss_model = new LossModel(type, edge->getSourceNode()->size()); edge->addLossModel(loss_model); // Add to animations list so that it will be redrawn on all updates loss_model->Animation::insert(&animations_); // Add to master list of all lossmodels_ which is used to // look up a lossmodel for editing purposes loss_model->next_lossmodel_ = lossmodels_; lossmodels_ = loss_model; } return (TCL_OK); } //---------------------------------------------------------------------- // TrafficSource * // EditorNetModel::lookupLossModel(int id) //---------------------------------------------------------------------- LossModel * EditorNetModel::lookupLossModel(int id) { LossModel * loss_model; for (loss_model = lossmodels_; loss_model; loss_model = loss_model->next_lossmodel_) { if (loss_model->number() == id) { break; } } return loss_model; } //---------------------------------------------------------------------- //---------------------------------------------------------------------- QueueHandle * EditorNetModel::addQueueHandle(Edge * edge) { QueueHandle * queue_handle; // Add queue handle for editing the edge's queue properties queue_handle = new QueueHandle(edge); edge->addQueueHandle(queue_handle); queue_handle->Animation::insert(&drawables_); queue_handle->next_queue_handle_ = queue_handles_; queue_handles_ = queue_handle; return queue_handle; } //---------------------------------------------------------------------- //---------------------------------------------------------------------- QueueHandle * EditorNetModel::addQueueHandle(Edge * edge, const char * type) { QueueHandle * queue_handle; queue_handle = addQueueHandle(edge); queue_handle->setType(type); return queue_handle; } //---------------------------------------------------------------------- // //---------------------------------------------------------------------- void EditorNetModel::setNodeProperty(int id, const char * value, const char * variable) { Node * node = lookupNode(id); if (node) { if (!strcmp(variable, "size_")) { node->size(strtod(value,NULL)); } else if (!strcmp(variable, "color")) { node->init_color(value); } else if (!strcmp(variable, "dlabel_")) { node->dlabel(value); } else if (!strcmp(variable, "X_")) { node->place(strtod(value, NULL),node->y()); } else if (!strcmp(variable, "Y_")) { node->place(node->x(), strtod(value, NULL)); } else if (!strcmp(variable, "Z_")) { // } else { fprintf(stderr, "EditorNetModel::setNodeProperty - unknown property %s\n", variable); } } else { fprintf(stderr, "Node %d does not exist.\n", id); } } //---------------------------------------------------------------------- // //---------------------------------------------------------------------- void EditorNetModel::setAgentProperty(int id, const char * value, const char * variable) { Agent * agent = lookupAgent(id); if (agent) { if (!strcmp(variable, "windowInit_")) { // initial window size agent->windowInit(atoi(value)); } else if (!strcmp(variable, "window_")) { // window size agent->window(atoi(value)); } else if (!strcmp(variable, "maxcwnd_")) { // maximum cwnd_ agent->maxcwnd(atoi(value)); } else if (!strcmp(variable, "flowcolor_")) { // Flow ID + Color if ((strcmp(value, "(null)") == 0) || (strcmp(value, "") == 0)) { agent->flowcolor("black"); } else { agent->flowcolor(value); } } else if (!strcmp(variable, "packetSize_")) { agent->packetSize(atoi(value)); } else { // fprintf(stderr, "EditorNetModel::setAgentProperty - unknown property %s\n", variable); } } else { fprintf(stderr, "EditorNetModel::setAgentProperty - Nonexisting agent %d.\n", id); } } //---------------------------------------------------------------------- // void // EditorNetModel::setLinkProperty(int source_id, int destination_id, // char * value, char * variable) //---------------------------------------------------------------------- void EditorNetModel::setLinkProperty(int source_id, int destination_id, const char * value, const char * variable) { Edge * edge = lookupEdge(source_id, destination_id); if (edge) { if (!strcmp(variable, "bandwidth_")) { edge->setBW(strtod(value,NULL)); } else if (!strcmp(variable, "color_")) { edge->init_color(value); } else if (!strcmp(variable, "delay_")) { edge->setDelay(strtod(value,NULL)); } else if (!strcmp(variable, "dlabel_")) { if (strcmp(value, "")) { edge->dlabel(value); } } else if (!strcmp(variable, "length_")) { edge->setLength(strtod(value,NULL)); } } } //---------------------------------------------------------------------- //---------------------------------------------------------------------- void EditorNetModel::setQueueHandleProperty(int source_id, int destination_id, const char * value, const char * variable) { Edge * edge; QueueHandle * queue; edge = lookupEdge(source_id, destination_id); if (edge) { queue = edge->getQueueHandle(); if (queue) { if (strcmp(variable, "type_") == 0) { queue->setType(value); } else if (strcmp(variable, "limit_") == 0) { queue->setLimit(atoi(value)); } else if (strcmp(variable, "secsPerByte__") == 0) { queue->setSecondsPerByte(strtod(value,NULL)); } else if (strcmp(variable, "maxqueue_") == 0) { queue->setMaxQueue(atoi(value)); } else if (strcmp(variable, "buckets_") == 0) { queue->setBuckets(atoi(value)); } else if (strcmp(variable, "blimit_") == 0) { queue->setSharedBufferSize(atoi(value)); } else if (strcmp(variable, "quantum_") == 0) { queue->setQuantum(atoi(value)); } else if (strcmp(variable, "mask_") == 0) { if (atoi(value) == 0) { queue->setMask(false); } else { queue->setMask(true); } } else if (strcmp(variable, "bytes_") == 0) { if (atoi(value) == 0) { queue->setBytes(false); } else { queue->setBytes(true); } } else if (strcmp(variable, "queue_in_bytes_") == 0) { if (atoi(value) == 0) { queue->setQueueInBytes(false); } else { queue->setQueueInBytes(true); } } else if (strcmp(variable, "thresh_") == 0) { queue->setThreshold(strtod(value,NULL)); } else if (strcmp(variable, "max_thresh__") == 0) { queue->setMaximumThreshold(strtod(value,NULL)); } else if (strcmp(variable, "mean_pktsize_") == 0) { queue->setMeanPacketSize(atoi(value)); } else if (strcmp(variable, "q_weight_") == 0) { queue->setQueueWeight(strtod(value,NULL)); } else if (strcmp(variable, "wait_") == 0) { if (atoi(value) == 0) { queue->setWaitInterval(false); } else { queue->setWaitInterval(true); } } else if (strcmp(variable, "linterm_") == 0) { queue->setLinterm(strtod(value,NULL)); } else if (strcmp(variable, "setbit_") == 0) { if (atoi(value) == 0) { queue->setBitMarking(false); } else { queue->setBitMarking(true); } } else if (strcmp(variable, "drop_tail_") == 0) { if (atoi(value) == 0) { queue->setREDDropTail(false); } else { queue->setREDDropTail(true); } } } else { fprintf(stderr, "EditorNetModel::setQueueHandleProperty() - no queuehandle on edge.\n"); } } } //---------------------------------------------------------------------- //---------------------------------------------------------------------- void EditorNetModel::setTrafficSourceProperty(int id, const char * value, const char * variable) { TrafficSource * trafficsource; trafficsource = lookupTrafficSource(id); if (trafficsource) { if (strcmp(variable, "start_") == 0) { //trafficsource->startAt(atof(value)); trafficsource->timelist.add(strtod(value, NULL)); } else if (strcmp(variable, "stop_") == 0) { //trafficsource->stopAt(atof(value)); trafficsource->timelist.add(strtod(value, NULL)); } else if (strcmp(variable, "interval_") == 0) { trafficsource->setInterval(atof(value)); } else if (strcmp(variable, "maxpkts_") == 0) { trafficsource->setMaxpkts(atoi(value)); } else if (strcmp(variable, "addtime") == 0) { trafficsource->timelist.add(atof(value)); } else if (strcmp(variable, "removetime") == 0) { trafficsource->timelist.remove(atof(value)); } else if (strcmp(variable, "timelist") == 0) { trafficsource->timelist.setList(value); // --- Exponential Properties } else if (strcmp(variable, "burst_time_") == 0) { trafficsource->setBurstTime(atoi(value)); } else if (strcmp(variable, "idle_time_") == 0) { trafficsource->setIdleTime(atoi(value)); } else if (strcmp(variable, "rate_") == 0) { trafficsource->setRate(atoi(value)); // --- Pareto } else if (strcmp(variable, "shape_") == 0) { trafficsource->setShape(strtod(value, NULL)); } else if (strcmp(variable, "title") == 0) { } else if (strcmp(variable, "agent_name") == 0) { } else { fprintf(stderr, " Unknown traffic source property %s\n", variable); } } else { fprintf(stderr, " Unable to find traffic source with id %d\n", id); } } //---------------------------------------------------------------------- //---------------------------------------------------------------------- void EditorNetModel::setLossModelProperty(int id, const char * value, const char * variable) { LossModel * lossmodel; lossmodel = lookupLossModel(id); if (lossmodel) { if (strcmp(variable, "period_") == 0) { lossmodel->setPeriod(strtod(value, NULL)); } else if (strcmp(variable, "offset_") == 0) { lossmodel->setOffset(strtod(value, NULL)); } else if (strcmp(variable, "burstlen_") == 0) { lossmodel->setBurstLength(strtod(value, NULL)); } else if (strcmp(variable, "rate_") == 0) { lossmodel->setRate(strtod(value, NULL)); } else if (strcmp(variable, "loss_unit_") == 0) { lossmodel->setLossUnit(value); } } else { fprintf(stderr, " Unable to find loss model with id %d\n", id); } } //---------------------------------------------------------------------- // //---------------------------------------------------------------------- int EditorNetModel::command(int argc, const char *const *argv) { FILE * file; Node * node; double time; if (argc == 2) { if (strcmp(argv[1], "layout") == 0) { layout(); return (TCL_OK); } } else if (argc == 4) { // Write out ns script information if (strcmp(argv[1], "saveasns") == 0) { // argv syntax is as follows: // saveasns filename filename_root file = fopen(argv[2], "w"); if (file) { // fprintf(stderr, "Writing ns script to %s...",argv[2]); writeNsScript(file, argv[2], argv[3]); fclose(file); // fprintf(stderr, "done.\n"); } else { fprintf(stderr, "nam: Unable to open file: %s\n", argv[2]); } return (TCL_OK); } else if (strcmp(argv[1], "removeNodeMovement") == 0) { node = lookupNode(atoi(argv[2])); time = strtod(argv[3], NULL); node->removeMovementDestination(time); return TCL_OK; } } return (NetModel::command(argc, argv)); } //---------------------------------------------------------------------- //---------------------------------------------------------------------- void EditorNetModel::layout() { Node *n; for (n = nodes_; n != 0; n = n->next_) for (Edge* e = n->links(); e != 0; e = e->next_) placeEdge(e, n); } //---------------------------------------------------------------------- // int // EditorNetModel::saveAsNs(FILE * file) //---------------------------------------------------------------------- int EditorNetModel::writeNsScript(FILE * file, const char * filename, const char * filename_root) { Node * node; Edge * edge; LossModel * loss_model; Agent * agent; int number_of_wireless_nodes = 0; int number_of_wired_nodes = 0; double maximum_x, maximum_y; double node_x, node_y; maximum_x = 500; maximum_y = 500; // Add a disclaimer fprintf(file, "#------------------------------------------------------- \n"); fprintf(file, "# This ns script has been created by the nam editor.\n"); fprintf(file, "# If you edit it manually, the nam editor might not\n"); fprintf(file, "# be able to open it properly in the future.\n"); fprintf(file, "#\n"); fprintf(file, "# EDITING BY HAND IS AT YOUR OWN RISK!\n"); fprintf(file, "#------------------------------------------------------- \n"); fprintf(file, "# Create a new simulator object.\n"); fprintf(file, "set ns [new Simulator]\n"); fprintf(file, "# Create a nam trace datafile.\n"); fprintf(file, "set namfile [open %s.nam w]\n", filename_root); fprintf(file, "$ns namtrace-all $namfile\n"); // write out node creation infomation fprintf(file, "\n# Create wired nodes.\n"); for (node = nodes_; node; node = node->next_) { if (node->links()) { // Only write out wired links here node->writeNsScript(file); fprintf(file, "\n"); number_of_wired_nodes++; } else { // If a node has no links it must be a wireless node number_of_wireless_nodes++; } // Find maximum node mobility and placement range node_x = node->getMaximumX(); node_y = node->getMaximumY(); if (node_x > maximum_x) { // Add some extra space to be sure node is within // wireless boundary maximum_x = node_x + 2.0*node->size(); } if (node_y > maximum_y) { // Add some extra space to be sure node is within // wireless boundary maximum_y = node_y + 2.0*node->size(); } } if (number_of_wireless_nodes > 0) { fprintf(file, "\n# ----- Setup wireless environment. ----\n"); fprintf(file, "set wireless_tracefile [open %s.trace w]\n", filename_root); fprintf(file, "set topography [new Topography]\n"); fprintf(file, "$ns trace-all $wireless_tracefile\n"); fprintf(file, "$ns namtrace-all-wireless $namfile %f %f\n", maximum_x, maximum_y); fprintf(file, "$topography load_flatgrid %f %f\n", maximum_x, maximum_y); fprintf(file, "#\n"); fprintf(file, "# Create God\n"); fprintf(file, "#\n"); fprintf(file, "set god_ [create-god %d]\n", number_of_wireless_nodes); fprintf(file, "#global node setting\n"); fprintf(file, "$ns node-config -adhocRouting DSR \\\n"); fprintf(file, " -llType LL \\\n"); fprintf(file, " -macType Mac/802_11 \\\n"); fprintf(file, " -ifqType Queue/DropTail/PriQueue \\\n"); fprintf(file, " -ifqLen 50 \\\n"); fprintf(file, " -antType Antenna/OmniAntenna \\\n"); fprintf(file, " -propType Propagation/TwoRayGround \\\n"); fprintf(file, " -phyType Phy/WirelessPhy \\\n"); fprintf(file, " -channel [new Channel/WirelessChannel] \\\n"); fprintf(file, " -topoInstance $topography \\\n"); fprintf(file, " -agentTrace ON \\\n"); fprintf(file, " -routerTrace OFF \\\n"); fprintf(file, " -macTrace ON\n"); fprintf(file, "\n# Create wireless nodes.\n"); for (node = nodes_; node; node = node->next_) { if (!node->links()) { node->writeNsScript(file); node->writeNsMovement(file); } } } // write out link information fprintf(file, "\n# Create links between nodes.\n"); for (node = nodes_; node ; node = node->next_) { for (edge = node->links(); edge; edge = edge->next_) { edge->writeNsScript(file); } } // Write out lossmodel information fprintf(file, "# Add Link Loss Models\n"); for (loss_model = lossmodels_; loss_model; loss_model = loss_model->next_lossmodel_) { loss_model->writeNsDefinitionScript(file); } // write out agents and it's traffic sources fprintf(file, "\n# Create agents.\n"); for (node = nodes_; node; node = node->next_) { for (agent = node->agents(); agent; agent = agent->next_) { agent->writeNsDefinitionScript(file); } } // Write out agent connections // An agent can connect to only one other agent fprintf(file, "\n# Connect agents.\n"); for (node = nodes_; node; node = node->next_) { for (agent = node->agents(); agent; agent = agent->next_) { agent->writeNsConnectionScript(file); } } // Find time at which to stop the simulation // for (ts = traffic_sources_; ts; ts = ts->editornetmodel_next_) { // if (finish_time < ts->stopAt()) { // finish_time = ts->stopAt(); // } // } fprintf(file, "# Run the simulation\n"); fprintf(file, "proc finish {} {\n global ns namfile\n $ns flush-trace\n"); fprintf(file, " close $namfile\n exec nam -r %fus %s.nam & \n exit 0\n }\n", playback_speed_, filename_root); //fprintf(file, "$ns at %f \"finish\"\n", finish_time); fprintf(file, "$ns at %f \"finish\"\n", maximum_simulation_time_); fprintf(file, "$ns run\n"); return 0; } //---------------------------------------------------------------------- // void // EditorNetModel::removeNode(Node *n) // - remove node n from the nodes_ list and delete it //---------------------------------------------------------------------- void EditorNetModel::removeNode(Node *n) { Node * previous, * run; Edge * edge; Agent * agent; previous = nodes_; for (run = nodes_; run; run = run->next_) { if (n->num() == run->num()) { // when deleting the last node if (run->num() == nodes_->num()) { nodes_ = nodes_->next_; break; } else { previous->next_ = run->next_; break; } } previous = run; } run->next_ = NULL; // Remove it from list of drawables run->detach(); // delete edges of the nodes_ for (edge = run->links(); edge != 0; edge = edge->next_) { removeLink(edge); } // delete agents on the nodes_ for (agent = run->agents(); agent != 0; agent = agent->next_) { removeAgent(agent); } delete run; } //---------------------------------------------------------------------- // void // EditorNetModel::removeLink(Edge *e) // //---------------------------------------------------------------------- void EditorNetModel::removeLink(Edge *e) { EdgeHashNode * h, * g; Edge * e1, * e2; LossModel * lossmodel; int src = e->src(); int dst = e->dst(); h = lookupEdgeHashNode(src, dst); g = lookupEdgeHashNode(dst, src); if (h == 0 || g == 0) { // h,g = 0 or h,g !=0 return; } e1 = h->edge; e2 = g->edge; lossmodel = e1->getLossModel(); if (lossmodel) { removeLossModel(lossmodel); } lossmodel = e2->getLossModel(); if (lossmodel) { removeLossModel(lossmodel); } // defined in netmodel.cc removeEdge(e1); removeEdge(e2); e1->detach(); e2->detach(); Node* srcnode = e1->start(); Node* dstnode = e2->start(); // it is a duplex by default srcnode->delete_link(e1); dstnode->delete_link(e2); delete e1; delete e2; } //---------------------------------------------------------------------- // void // EditorNetModel::removeAgent(Agent *a) // - removes and deletes an Agent and all of its Traffic Sources //---------------------------------------------------------------------- void EditorNetModel::removeAgent(Agent *a) { Node * n; TrafficSource * ts, * next_ts; n = a->node_; if (a->AgentPartner_ != NULL) { a->AgentPartner_->AgentPartner_ = NULL; a->AgentPartner_->AgentRole_ = 0; } n->delete_agent(a); a->detach(); for (ts = a->traffic_sources_; ts; ts = next_ts) { // Save next traffic source in list since this // traffic source will be deleted in removeTrafficSource next_ts = ts->next_; removeTrafficSource(ts); } delete a; } //---------------------------------------------------------------------- // void // EditorNetModel::removeTrafficSource(TrafficSource * ts) { //---------------------------------------------------------------------- void EditorNetModel::removeTrafficSource(TrafficSource * ts) { TrafficSource * run, * previous; // Run down the list of traffic sources previous = NULL; for (run = traffic_sources_; run; run = run->editornetmodel_next_) { if (run == ts) { break; } previous = run; } if (previous) { previous->editornetmodel_next_ = ts->editornetmodel_next_; } else { if (run == traffic_sources_) { // ts is at the front of the list traffic_sources_ = ts->editornetmodel_next_; } } ts->editornetmodel_next_ = NULL; ts->removeFromAgent(); delete ts; } //---------------------------------------------------------------------- //---------------------------------------------------------------------- void EditorNetModel::removeLossModel(LossModel * lossmodel) { LossModel * run, * previous; // Run down the list of lossmodels previous = NULL; for (run = lossmodels_; run; run = run->next_lossmodel_) { if (run == lossmodel) { break; } previous = run; } if (previous) { previous->next_lossmodel_ = lossmodel->next_lossmodel_; } else { if (run == lossmodels_) { // ts is at the front of the list lossmodels_ = lossmodel->next_lossmodel_; } } lossmodel->next_lossmodel_ = NULL; lossmodel->clearEdge(); delete lossmodel; } nam-1.15/enetmodel.h0000664000076400007660000001245410564011173013225 0ustar tomhnsnam/* * Copyright (C) 2000 by the University of Southern California * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. * * * The copyright of this module includes the following * linking-with-specific-other-licenses addition: * * In addition, as a special exception, the copyright holders of * this module give you permission to combine (via static or * dynamic linking) this module with free software programs or * libraries that are released under the GNU LGPL and with code * included in the standard release of ns-2 under the Apache 2.0 * license or under otherwise-compatible licenses with advertising * requirements (or modified versions of such code, with unchanged * license). You may copy and distribute such a system following the * terms of the GNU GPL for this module and the licenses of the * other code concerned, provided that you include the source code of * that other code when and as the GNU GPL requires distribution of * source code. * * Note that people who make modified versions of this module * are not obligated to grant this special exception for their * modified versions; it is their choice whether to do so. The GNU * General Public License gives permission to release a modified * version without this exception; this exception also makes it * possible to release a modified version which carries forward this * exception. * * $Header: /cvsroot/nsnam/nam-1/enetmodel.h,v 1.19 2007/02/12 07:08:43 tom_henderson Exp $ */ // Network model for Editor #ifndef nam_enetmodel_h #define nam_enetmodel_h #include "netmodel.h" #include "trafficsource.h" #include "lossmodel.h" #include "queuehandle.h" // The various classifications of agents and traffic generators // used for determining compatibility (so users can't link incompatible // objects together in the editor) typedef enum { UDP_SOURCE_AGENT, UDP_SINK_AGENT, TCP_SOURCE_AGENT, TCP_SINK_AGENT, FULLTCP_AGENT, UNKNOWN_AGENT } agent_type; typedef enum { UDP_APP, TCP_APP, FULLTCP_APP, UNKNOWN_APP } trafgen_type; // The ratio of node radius and mean edge length in the topology class EditorNetModel : public NetModel { public: EditorNetModel(const char *animator); virtual ~EditorNetModel(); void BoundingBox(BBox&); Node * addNode(Node * node); Node * addNode(int node_id); int addNode(float cx, float cy); Edge* addEdge(Edge * edge); int addLink(Node*, Node*); int addLink(int source_id, int destination_id); agent_type classifyAgent(const char * agent); bool checkAgentCompatibility(agent_type source, agent_type dest); bool checkAgentCompatibility(const char * source, const char * dest); int addAgent(Agent * agent, Node * node); int addAgent(Node * src, const char * agent_type, float cx, float cy); int addAgentLink(Agent*, Agent*); int addAgentLink(int source_id, int destination_id); trafgen_type classifyTrafficSource(const char * source); bool checkAgentTrafficSourceCompatibility(agent_type agent, trafgen_type source); bool checkAgentTrafficSourceCompatibility(const char * agent, const char * source); int addTrafficSource(TrafficSource * traffic_source, Agent * agent); int addTrafficSource(Agent * agent, const char * type, float cx, float cy); TrafficSource * lookupTrafficSource(int id); int addLossModel(LossModel * loss_model, Edge * edge); int addLossModel(Edge * edge, const char * type, double cx, double cy); LossModel * lookupLossModel(int id); QueueHandle * addQueueHandle(Edge * edge); QueueHandle * addQueueHandle(Edge * edge, const char * type); int writeNsScript(FILE * file, const char * filename, const char * filename_root); void setNodeProperty(int id, const char * value, const char* variable); void setAgentProperty(int id, const char* value, const char* variable); void setLinkProperty(int source_id, int destination_id, const char * value, const char * variable); void setQueueHandleProperty(int source_id, int destination_id, const char * value, const char * variable); void setTrafficSourceProperty(int id, const char* value, const char* variable); void setLossModelProperty(int id, const char* value, const char * variable); void layout(); void removeLink(Edge *); void removeNode(Node *); void removeAgent(Agent *a); void removeTrafficSource(TrafficSource * ts); void removeLossModel(LossModel * lossmodel); inline EditorNetModel* wobj() { return wobj_; } protected: EditorNetModel *wobj_; int command(int argc, const char*const* argv); private: int node_id_count; double pxmin_; double pymin_; double pxmax_; double pymax_; TrafficSource * traffic_sources_; LossModel * lossmodels_; QueueHandle * queue_handles_; double maximum_simulation_time_; //seconds double playback_speed_; //microseconds (us) }; #endif // nam_enetmodel_h nam-1.15/ex/9nodetree.nam0000664000076400007660000000205706610761027014114 0ustar tomhnsnamn -t * -s 3 -v circle -c yellow -z 0.136459 -S UP n -t * -s 7 -v circle -c green -z 0.136459 -S UP n -t * -s 2 -v circle -c orange -z 0.136459 -S UP n -t * -s 6 -v circle -c chocolate -z 0.136459 -S UP n -t * -s 1 -v circle -c magenta -z 0.136459 -S UP n -t * -s 5 -v circle -c gold -z 0.136459 -S UP n -t * -s 0 -v circle -c red -z 0.136459 -S UP n -t * -s 4 -v circle -c purple -z 0.136459 -S UP n -t * -s 8 -v circle -c cyan -z 0.136459 -S UP l -t * -s 3 -d 6 -r 1000000.000000 -D 0.010000 -o 231.7deg -l 0.146653 -S UP l -t * -s 3 -d 5 -r 1000000.000000 -D 0.010000 -o 322.7deg -l 0.157533 -S UP l -t * -s 6 -d 8 -r 1000000.000000 -D 0.010000 -o 313.6deg -l 0.267327 -S UP l -t * -s 6 -d 7 -r 1000000.000000 -D 0.010000 -o 225.4deg -l 0.260444 -S UP l -t * -s 1 -d 4 -r 1000000.000000 -D 0.010000 -o 320.6deg -l 0.159083 -S UP l -t * -s 1 -d 3 -r 1000000.000000 -D 0.010000 -o 220.9deg -l 0.216952 -S UP l -t * -s 0 -d 1 -r 1000000.000000 -D 0.010000 -o 343.2deg -l 0.361585 -S UP l -t * -s 0 -d 2 -r 1000000.000000 -D 0.010000 -o 203.1deg -l 0.360207 -S UP nam-1.15/ex/adc.nam.gz0000664000076400007660000024754207323404434013374 0ustar tomhnsnam‹QíL;adc.nam¬ýKÓíºµhöý+V¸:vÐ ÞÀKöÒN—;Îð 93ª“Ž]Gkz(½$ÙŸ¶ëççš@ —ñŽ£†µµ|óIðŸ¾ýá÷o÷ßþÇïûϯ׿øÇ÷ýûß¿-ßþð×o_?þtùGÃûýÿ~þöÿõòǧ8½ÿáÿä?ÿþãòç÷?ü‡ß~þø÷_?~üõ_üõüþþmÿö‡ÿôíÿü‡oø§oÿøç¯üùãÛþñÛ_~û/?þúûo—myú×þöõÛ_ÿËË¿5¤‹üÿû/ûëû_ó?0ý[GWY®ëß»þâÚõoM}U±u6× ûy­±?¥_߯áóŸoøß¾ ߇_ÿÃß¾}ýù¿ðï2½ÉˆËÈpþ×øŸTÆþô·ÿù×KA3\Ðÿøo—bÆw1Ë?ÃïùäÌ¿g}³é«t5ÿå  jb‡(èó‹0Ø¿¥¿ýRîòÏÇó òÿü·óŸÿõÛÿþŸþ×û¿ ?öòÏÿáßüúçë¶Ïaò?ó×ÏȯƒûÿÃüãûbI­Õõ_LG÷á_ü§ø/þøö÷?ÿå?ÿö׿þí÷ß~ÿó¯KôýOÇoÿöoùo¿}ýùï¿þÁß^ßþ÷¿ýý|ýøË¯kòÿæ·¿ÿøÓ·õþü×ÿúí×/ÿ×ß~ûëŸ~•üõÛ_~üþã+ûŸø×ßþ×?ýåÏÿû»äû·¿þþõ·Ÿ­?>…ñW©ÿø_üþ÷ÿåÛ·?þøïÿãÇßÿWÿßwký«ÌüÇÿí÷õÉò¯ýÿ÷üý_ýñÇŸþõ·ÿãÇo_ïCû¯þÍ»™ù×­¿5ûß~ûý·oÿÍÿ¡o¿}ýøöëÿöw~Ÿ/×ñ•þÛåXýßþé}þå;Úï¿ÿŠûÿùù·ÿù÷ùn†÷‰1\èú¦épjhá¯þ»¿ÿþç¿üö¶ÿçïþùÝÛïƒç¿þoûÿñÇß|ýÓ¯þø«ÀŸ§CÇ(Dhðÿ ‡-üçÛ·úóÿù_¾~ûoüí_¾~ý®ø£þ/QØÿõ/ÿå·ÿñëÿóí·?ýã÷¿þö—TÖ, ÒkBï2Æ_¿g\÷ë­å¿}ûûoÿùëÇŸ^ãäÞÙxvB~û6ý‹?`Œ1öغk Z˜{Ý™âl]ã±þYøóíVç}¸ºFuý Ë GdÜTŒ ‡Î³MÉcáGNã8_oÅl:»àשdŒ±p¦y€²l¹·ß>7)§·œS<µdXÆë¬©,tìugÝ÷˜ûU/ÿxõªoüÉöU¯ŒÊ‹ÇcŸ”G’„¯-xßy§– ËsÞTÕC‚…‡Î†CÉc1Û¡­òÓæOšc¨— Ës™œ¦zH0w=ô·?8+×zɰŒ!—­žmSþMr»6Ê}5¤– ËÓíZIB~]“S/–!ç:Jyæ‡isב‡ e~³5kµ´Œ1öØvh Viȯìug½=w'îÓX{Ky¸¹Oï2ÆTź_Ï U<î*F‚…ñ¦ÎÓGÉc!Û´ŒF‚ÕFò#÷¬ $Ã2†åÔK†eÌéœRž9§esÓu˜ÿát_>}Ÿ%»(ÕŽAw&œÜ´© W}ÈÜëîúGvî-{«œfË®À  ½Î:GÂ…÷3½'’Ö1èâïtÃØ tçÄïT:]<ûå;«>x{ºf-B§!è6Lª "á*'jæ^w§¸²eso9Wö§uHg”6ƒ.Vô2j Z x<©Ê8 Y÷QWG$\åª{l´ŽAó9uÕ Ÿª™UÇ ŒÓ˜u]TuDÂÕÏwO7TO§!è1Ìhãªý«$hýTz¬&€2NϬó0©) Z{ÊŠPÆi̺íZzf]Æa?oDÖÏh_þ¸­v º¯àÖAåH¸Ê Dæ^w×=bs»û·JiÞýÕ?ŸAªùW·AåH¸Êàøãi¤u ºož&•#á\u(äCç!kÊ8A·EKIÐúpÈsV=eœ†¬Ë®¦$h}”û1+@§!«›W- Y_uÜÙ>îȯQ­cÐ…ˆÇáTŽ„«ôæ3÷º»þG½é|Q?½å<4öË»ŒtFi0èΊvã s$ܧkõtÉßÔ!”q‚Ná¥$h½›ü˜ ŒÓuÕ”­?9=f(ã4fÝF- YýÙéö~ó÷sê¯í_>Ãýq4ÃlÁ!±Ûg=&³Îk ¿îXûŠ6ÝZ¥”òÓ‰e` U¿&³÷¡½§„Ù‚Cæmqz|fÞv×|$ÝßîÈ'Ÿªƒî ¹är$\åY0s¯»Ã[¥4Õ?ŸA«k÷ƒ´•nëñqù«-µcЧÃ>ŒP¾è*SžNwµcÐÅß9 [ãt‡tâ‡j!£0ŠyQB®ÒqÏÜëîúŸtæÉ_›ÓÚ[ÎõéÞe,©ª•t±¢×;—NWŸãi>ŒPÆi ºMºS‘¬´ 9|Ýaokvn•Ò|vÖÿ~Fa¨êq\µG‰­X=žVeœÆ¬‹îº#á*/åžî‰jÇ ‹ùvåI@V–ç›2 cÆcUÕ çªƒ :ƒ8[˲N“úT'Aë¬×&@§1ë¼èN°Þ€y;“ÈŠ`¶à˜wÙÕç [—Ëón;|j쫾žIàú5T:=Ì2ÏN_Õ$l}¼íùô@,lÌ{•E×Ï­Â1†0[pȼŒ\_˲ëÿð§›ZØ{^®?çëýkS|Ÿ XbŸ#6}v7/q€ôù‘q?¿Ý]{dX~òœR’•§¯»T<äçîrI>5.V¸>Ãò¬ð_×…V’•îáó‰H†e̹nJIBÖ»'^¯MŠÙ‚Càq<ô˜®ß ™!Ì2O€Iàúœ¸Bf³ÇÌû¨Çgæe^×ý™Þò3Õðr ’ayFýõ¨>)% Y{\Ïåë.{G«äøg»”Æø'€a+mw­×@ãìeÞÀ’aN7¡9ƒ¬=?_zɰŒ9çMYC$d­†rùºËî‹àÖ?j•Òì–±º·Ey HÈÆ³´ÇÛÝO0̯Ÿ*Pb¸ñlùœÂlÁ1ó¢==HÈ­Ò­|n#õ’as‡R’®~Vx¼ÍâÀ"˜-8ÞfଠþÏ'3„Ù‚cf7ê+ŒnTØóq†0[p̼ïx…í+ð—IàÆ_~®0³‡ÌÇ8ëñ'óü}šÏµµAšå-—u¿4zdX~r9×DôK²66’Ë×]ö)-îì2í½åv=>3ÏÓ¼L­æÖ}d6‡’ ˯ ÷U)IÈZ+—Ë×]ößÜèo‹ë-çáæðy&ßR…«#0,C…χV’µæöùÄÒK†eȹ,»R’VöÄ{Öh`˜-8vàÇ$p£•}Î a¶àyL7ZÙçÌf Ž™×IÏÌný’µ©2xùYŠúëßÌ®a@2,¿‚Ü¥$!kJ¹|ÝeïPëý¹¡UJó¹À° Õ½ZIBÖiŸO+½dX†œ»•’„lŒÍz¼åýI ³‡ÀÇ0ë1 ÜyÎ a¶à3ó:Œ&×zû˜ÃlÁ1óêô8dÏ©ÊÒ–÷)ø–ù³? –!ê¸:¥$!kà\¾îRñÜp¾‡sco97‡ã]Æž*\a*|Ú´’„+/=žO,½dX†œó´)% éêpßÃå×FÂlÁ1ðvè1 Üè€2#˜-8d^v“Àõ¹¬…Ìf ™Ý2êñ™ùp[sÝãø™Ð¾-ù³? –gÔc=7fë—$d­•Ëåë.ûoërÞöÞrž¾3¼ 9bë30,C½móÖæÄ|&woïa´ë顆ŒÂ¯ñ—õX…!¥ç‹@/–1ç>ë*ˆrX{ Ìáë{ŸœïƒªBšcªú_Ï(L½+ Ù²óØ-ÙÃlÁ!ð¾ zL7n½Ï™!Ì3ʳƒrXkxnÕQ2í™vÏ®énÞf·AËÃ:àl }©ç“ÂlÁ1óÑ3 ”×å¶1œR8Æ€eƒýÜK–ÊmäqíÖxã×4‹¿Æõ,`ñ5¾¼¿õ:‡ë}tÊmczÑÃá-lÌëz¦D=ç]ÿJ\¥»3 ™ívI†eHº ‹R’•‘¯»ì±«v)±+(Ã2T÷>j% Y™°[8­ô’as®«R’®zkðxƼ½€0[p|Œ»“ÀõöµÂlÁgæq˜L×ÛØçÌf Ž™÷AÏ̛ۆfc;¾åxN´1B§gÚ_÷¶ö}EP´ÖÒ úºÓÞûƒ¾j—Ò¾Â"0NCo³š’ µV·p~”q³îíL)ëI c j6ézŸ»î3B“ÐF·ÓlÒ!÷± š„n4¼…ܘf“޹®ûÍSn÷ÝÍGsÎÒôYÌ2îîÚñÃ(ãôë¤ËÒœ*%) Zkú}Ýiï=cü=c]zKyºg|ÆÇ!V:q*Ý95%A+ƒm¥  ŒÓu›“¦JY­;ýÞe(6"°f“Ž¡×ž‰SR“Ц·”ÒlÒ!÷¯Þ Ièú4¤RnL³I‡ÜûÔ3ªûX‡ÉÅ68 )?ìMîÞ|çÏü‘1G9ÛøWànA8 ž½Umó×k¦D¥;À¯Vä°‡ÚÛVˆ“àãµGÞ怜m÷–òÔÅø<6ŒsªôŽÞR¥ëi¨t·ª) ZëN0€2NCÖuµ”môÄN½ä¨Ù¤cèsR§IèFÓ[Ê i6éðË·Éh´Öš¬'uùÙ PÆi8Pï·ìJJ‚Ö.bA_wÚÝüãÇÐ[ÊSóç>Íß’*]Ÿq+}7cûå@ù]¸:0Í&rï³³è§/ÉöªÖÚàÂe PÆiüÁÇ6ßÞUºyêÄ] ŒÓppŽÙ¡YmÜ+Níöü|Æ4›t ½Úú"A+kô$}Ýiÿ:L9)¡]Nk"Û»„Õ/QT„`œÆZß7à˜‘Ð¶·t¶AšMúÌ= ›ºÊHÐÏ ¬EÓœ ”q³HM‘ÐûÌó15›tÈýëÖV º\Oû>õzä¡1Í&C/‡¥Ê¶ øÛ$ôxmÂûk ÒlÒá—Ÿã µŽûîå–wiɰ GiÚMYOýiúʳV G ÓlÒ!÷<6_`‰£\Öz»Bþ|–ÿéÛ¿ýÿá?þñ-¾~ü)ÖŠ¾|†e¬ù0ÔåÒžÀ^¨Ë¥=ê_¸Vô’asj!eðÈëçÿþñ¿?ØýóÔ¼¤ €eƒ aFÒaÊñ–_]‰!Ì2¯ €)ÇÙͲ;3„Ù‚cfÿ2>3ÏËù…ŽÊv7ÓgÕì4/Cv#”qz¦Ýù© %AkÝ|A_wªx2Üò9TíršÓÕ±ŒÓPí몦$h6ǯï(ã4dÝΔuõ.ó©³Ý`Í&CŸ»ûé4 Ýè„–rCšM:äÞ7D“Пˢ¸GC)7¦Ù¤CîãÜ÷O§ÏÜË´ÎFx¼<òY9€dXžY—ùývB%)—•VOÊ×Möß0îsÝÅ4çÜ~J¸|M¢/ã4Tù2©) Z©)\eœÆ¬Û®¥$h}ˆåÔ˘· f“¡Ý<š„®·º¥Ü˜f“N¿Ü?“Õ“ñ¤âì(ã4¨sÖ‘‚’ µ‹XÐ×ö·÷‰8­r:æú")§¡Ú×År–]¿;—®L³IÇÜÇdÒê 'Ak­páÂ(ã4dÝ–]KIÐFã{êyÍOL³I‡Ðû0š„n\T…ܘf“¹Ñ$tã¢*äÆ4›t̽N€>sïÓêßd÷®‡åˇoç5‰]_”³ŸÑ÷y<N‚gMa›¿î\÷äÏô°‡ê[&ˆ“àÙ Nÿ©r¶ñ˜}þɾ½7ô³k]¾Ï:ôéx_yñVˆQÆé×I·aÖR´Öcôu§Š>ª˜-Ù.§ÙG}1͆Bµ4Tû>©) Zë¼N1€2NcÖmÒR´Ñg9õ{Ú[¼ûšM:„>¦Ð$t£ÏRÈi6é3÷8̈&¡}–çÜ f“޹÷Ðgîy:üŠâZ+üYÊöëÎ~d×4B§gÜy^V-%AkMŸ ? ôiÈû_[/jìû ŒÓP%˦¦$hÖéè;üeœ†¬nš´”uy5‰—æ§ž¦ÏN†KŒ‹i6éz[MBùÓ›ÒlÒá—¯£ok×úâéìò³ ŒÓp Ösg%Akqé¯î¦J>uvÿè>=0Íÿ<û˜6e•1NCmoó üæ ÷Aý‡IÐZo¶p5”q³ºEKIÐ¥ÞâÚ‰ÓlÒ!ô1¬€&¡—r!7¦Ù¤ÏÜË0"š„n\TϹAÍ&s¯; ÏÜëtYòô<¡ù}eü’˘?Q’ayf]çË–}’rY™l\Ê©— ËsqZI¹¬Ì6.åÔK†eÈé.Œé“”Ëú<〧%»\1ÌûÙS:L9®Ï3.fF0[pȼ®¦®„I›ÂlÁ!óæ¿¢¤Ãgæcq~¡]­ÿY=õëIaÏ.b„2NÏ´‡œ–’ µîh!ë/Úìɲ4d]G5%AkÝÑBV€2NcÖuÓR´Ñ =µï}/).¤Ù¤Cèm<MB7z¡…ܘf“¹÷ Ñ$t£ZÈi6é˜{ýy Ö¯uoóºœsmçk…7xÏÛ¼Žgk»€çW‰a£ØcõÇnÿ>¸É?AÔšïÍÇÏ>†QÆéW û ¥$h­ùôu§ýÕ½Lñ€ý,ü„ËPþ?üöóÇ¿ÿúñ㯽´¹'™qŽÑ¯ ¥$hmˆ½p>”q²nˤ¥$¨«¿,õz‡Ëk?X³IÇÐÇh:»Ûôç†4›tÈ} ˆ&¡/K ¹1Í&s»‡QªÞÜã²½Ÿrª{ëÌ»§Û’]ÓeœžqG7-ZJ‚Öš>A_wª¸ÇìçGé»Ëiî¥ö.b¾ô‹úR0NCµ¯‹š’ µ§•Â)PÆiÌzÌZJ‚.õÆ÷ÔÇ’5# f“¡·Åš„n4¾…ܘf“¹w‡hz¸(uçÆ4›tÈý«Wè3÷<œ_êl¸2V‹Îûá²kúM%eœ~ºÎZJ‚ÖFýKY·QK§ñË}Øïa°ÿZü|dÓ ž>«qY!OÂg÷ªÿº{ݳ‹Uˆþ6úX…;|öºUš §;@§!ë{»#%%A]ý½×Çxƒ5›t í°„„Ïú8Š6õlô1ÿî€Ú#¡ï¾JÇÒlÒ!÷<ì¦z›䯓Ðõí…Jõ†i6é{Y6@Ÿ¹u0›s‹ß›¿üù×ÿ;Y›ˆPÆéwY§]KIÐÊ“ž¤¯;íJvî|JÞ{ËéxJFR0NCµo³š’ •±ÊÒ)PÆiÌz ZJ‚Ö‡(ƒ^¯k*`Í&BïËhºþ¬YÊi6éûpˆ&¡ëC”¥Ü˜f“>s»aX}ævnwKã¡óý¤ô‹ŽÙ·¹?Ôop¤ ŒÓww-%A+O¥¬ë²j)ã4dÝœš’ •ùq¥¬eœ†¬û°k) ZŸô¶d]>P³IÇÐëhºÞQ.æ†4›tÈ}lˆ&¡ëåRnL³IŸ¹×᳦B«ÏÜÛñ«-iõ˜?K%—ùX³k¡ŒÓ3î{-%AkÝTA_wÚßÅ?êÿíÓÕï-ç©‹¿æclû0> tU;BCµ“š’ µóó)†PÆi̺íZJ‚6:Ê^/ãšuù@Í&BOóhºÑQ.äÆ4›tÈ=/ˆ&¡åBnL³IÇÜÇèÛÍ~s–Z+<{ºˆk ŒÓ×íÍéä’’ µ¦OÐ×*nçü‰uì-çé¶±}nkªv} Æi¨öõPS´Ö N1€2NCÖmqZJ‚6ßS¿'>]›L³IÇÐÇhºÑø–rCšM:ä>D“ÐÆ·ÓlÒ1·;}æ>ÖãhÍŸxOûE?ý—k¡ŒÓ3î±¹æ„IIÐÚ@K!+@§!뾪) Zh)d(ã4d=ÆYKIÐÆøÊ©ýë8Rj6ézu€&¡ã+¥Üf“þä>¾Æhº1¾ò”ÖlÒ!÷8m€¹÷ÝO°®¬n/(ÿE×ãzMc”qâó®¥$h­é+d=–½5娔 gÖqpjJ‚Öš¾ç¬eœ†¬ã8h) Úhñ¼ÞÆ)»vAÍ&C¯ IèF‹WÊ i6é{ÚMB.‹âB÷RnL³I‡Üó´úÌý^šö0)Œn¬zdÏÊeœ~º7¿.) ZRôu§Š/˜-çpÌÞ[ÎÓpÌgLgÜRµëS0NCµo‡š’ ŸÞEuŠ”q²îçÈ”]ꃧ^‡Ëã9¬Ù¤CècMB75 ¹1Í&}æ^†Ñ$ôpm|{sƒšM:æ^g@Ÿ¹÷ÉùwÔF7> (ÝìWÂÄk¡ŒÓ3î>»–’ µs!ë<ú3eœ†¬Ë¤¦$hei@)+@§1ëvh) êêe¯¿/Ì’âBšM:„o³tš„nt” ¹1Í&~ù:úïùÕ.âÝÓyÏÏN€2NÃZSÜS7Fa  ÓlÒ1÷g{U•‘ µÆ«tŒ·AK§1ëùÞ«©mWÿa´6ºQ¨)€2NCÖ}ž´”m jœÚ¿ô–ó0ª1}†FÆãZíÚŒÓXíÓ²+ êêÝS/K~À4›t =ë-e¶qC-e,lÊÛü BñÚš›ß#(¶™zÊ8MYÝ¡¤$¨«?NœÚ­y7ÓlÒ1´ß‚VwvPŽë*§4‚Ù‚/™G}‘Ђұ†4›tʽN†Zsð·Ièú2Ðb­AšM:å¾LîÖ!÷²>¼ryÚ‡tyûuôõǘõlô!ý²ùy9ZOÂg7ÿº{ÕKŸiHUþ6úX…ç„ ­'á³ÑXÍ)z6ú”ÿaÐ]‘߾ѫ½µôtò»ø¦Ž@§_‘®Í׬‚’ µþ– ¯;í y/øå_ïÖŠüûÒÜ«ì=&õ‹æK71Ê8 ÷s––‚’ µ^C)«ž2NcÖÕi) Z{½Vʪ§ŒÓ˜u»,zì£$¨«÷¼þ _o~˜f“N¡×ž7‚B“ÐC17¢Ù¤Ó/÷‹ã›7¾ñôGÞꢞ>·‡=á;8å¼yÏüuãºÝ`ÒøØÆSíuM+;ûeŽV¹ËX:ë!Í&s~ø Õ}Ò9w¤~Fe½xÅaœmx3]K(ô‹ž—ÂçRøõ¬ûéûä.;Â^¿~Öáoû1^Ûˆ2N¿]ÇCIIÐÚ;OA_wÚû¾xü>œËr¹·œö²Üw¾=V¤`œÆjßf-%A³A›ÎSLO§)ksjc1jÏìBßå/aÌï¾Ôiz¬¿q-¥†4›tÌ}8@“Ð7®¥Üf“¹çaXô:äþõ¬vÜÆÄõñY¶Ëž_ÏçÂq…dX~E¹i) ZkôýY ÿéÛ¿ýÿá?þñM~Ý•/â¿*¦ø ŒÓX%Ó¡¥$h­q,|=eœÆ¬ó2+) êòj’½»SoÓµ_Šj6éÚ@è4 =æWLwnD³IÇÜn4 M^îÏ i6é”Ûmzr»ÁßD+Ã/ëgç>f›Oc”qú©ìRP´2üRÌ:6§á³êiÌ:5·Ò(fš›Z³ê)ã4emî*QÎÚ³³CÐë‘_»˜f“Ž¡{†Œ$¦×Ç]Š©Ì3/¯DŠ™—ŽUëÅÌf N™{V¼—BoÛ2·š¼Ïë€_DC~-”qú©¿‘+( ZkòJYw¿¢QA§ñïãý« “§óí«)ã4?ÓX!)—•'‡rR­dXÆœGó£{Åcz4?W< õ”q𲮇’’ {Щóù”¨f“N¡[£’ÅùHËîDVK†eȹ~U¦®–HèÆý¶p|1Í&rÏ÷Wá}8Ð¥ú ´ÛehD³I§Ð~ƉN“ÐõgàrnD³IÇÜã œ*$t£U:É!Í&rï=ýÊ¢>€:'¡ë#ųÒlÒ1÷´¬zsÏ~§ÊÄÚuö4Ÿ1 QÆiŒ;û=Ó”­õ‚ŠYÕ”q³.›–’ •‰µÅ¬zÊ8M?¸5kê½éì/ùÙ—!ÿ½ZɰŒGÆMô¤®Þ…™Ï?¼‰–ÒlÒ)t{¤RÔ Z;“K‡×¹æÀ_éøêiÊzy‘Ü]S$tã^<ƈf“޹×U[e$híÁ«tŒõ”qš²î@M‘Ðõy½Åc i6é˜{›ÃË¥c|ÒÆóשÝ"BCšM:…îÙý©\e›þOSާY±ÎÌ3ï»SŽ]ùRf³ÇÌÇÜ38ýzþî¶t, 'º·<æ÷ÚÖÔ"’aù¥š’ µñ¦bR5eœÆ¬û®¥$hm襔UO§1ë1/JJ‚6F\N½e÷4T³I§Ð~Ÿ^&¡cÅ܈f“¹×á4 =Ô›»BnL³IÇÜã²ëuÌíüø\­éû,È:–üC"eœÆ¸«ÿ~“‚’ µ¦¯”u]´”q³nNKIÐZÓWʪ§ŒÓ˜uš¯BJYOÚhñN¿ÿG5›t ÝÓT L9n´wÅÔf Ž™/ÛvcÊq£­+eF0[pȼ Ó¤×!ôvø±ªl ÷iÈÏL‘ÃmŸ™PcÌz6ú˜þðã0ZOÂg#1þu÷OK«þøãï?¾þéÇŸ¾ýñ·ß„‡s¡ÎÚ[ÊÓBå³PÇ]Äa£b>‡§8ÁgÃ%Šõlô1ÿèFćüÇ2ßOdqÚ>t›ü¦ PÆéW¤~–¼‚’ µáOA_wÚ}½­çõ6œë%î?à²^â~ûùãßýøñ×Þ?ùtqºÏŹ\Ž:0ã4¡ó{T J‚ÖÞ¼”ÎF=eœ¦¬nVRÔ]«é¶>)èõóB|¾ÄE4›t ½ùiü:MBgCý¹!Í&sï# IèlŒº?7¤Ù¤Sn¿Y§};¶Tš°çàû¹|{¹–ð)³wøY‚;:JxÞÛ¯!/n>ßò}ñû@Ö^~–ŽÃ´gsé Ê8ýŠtm¾Ð•–„­5áÒþ,ØÇEØŸ`ƒÕrÝž²Ó’°µwkÅ“°l°1ï>-ZKÂ6ÞŒ|ÆëÃ)ÌÙÆSðm8 ÞxCVÎq¶ñ˜ývVr¼ñ¢¬˜ãlã!»æžw„¥ì›_5^{¼8<ýÌz¹^âeœ~EzLZKÂÖÃrZ½eƒy§AmIØZcXÌ X6Ø”×5ðr^×Ó„¾nù… r¶ñ|zpÉIðFXÌŽq¶ñ˜}N‚g=vEvŒ³§ìëð˜}÷/l*ë¾¶ÁÛuÅ5X6ØùÜMcIØÊµ›}ÝmÿÃÑêâóÕÏÂo¨ l5ÿhûsBï"üRMf6ØT×óÖxS»§uòÜ,l:·öCkIØZ]IûºÛþsëýœó·Ï9Ö[ÎÓé2f;Ú/ß÷ahòRÕ#ö+Ú>Õ‚Ë#‹Åf ±l°)ïÑÚ†¦’÷¸ïsdŠ|¯ãc0gÁÇQ}’°µJ+µ)ˆeƒMyT >^›$űÆ8Ûxʾ6Oòò±^{N³À·C‡8Ûx ~~×BÉIðFµ³cœm!5O‚góL§ ÆÙÆSöí>Ŧ7»û> ¾§œuÝ^î/«/àð_!³ °µ€¯XÀ yÊ}vcíñ¯›W=kL×:ܰŸÀÖbŒKóÉr:­Ëf>~lóÉRZ6ØxÜÇÝú2#oAÎ}´¶ë`ÒÖe²Ö›”ò%¥â™ë|_ºu–Ò~âzpùÀzg6ØTå— ‘¡c6·GŠGí´µžañ:,lÊ»7{³å¼{O2ðc¾ÞšaÎ6ƒ/sOoVr¼Ñ«)fÇ8ÛxÌ€ŠÙÝåóõåa1;ÆÙÆSö£§7[ʾ‡ÅõòYf:Žû>æ×8bÙ`¿¢}˜¬Ü°$låm[%ï¾i-lÌ;jKÂV&ô•ó– 6æ—CkIXW}Éøñž>—ÞÁœm<_üج’“àõ—låìgÙ݈p¼þ’­œãlã)û:Ü÷nëIýŒÄýZ‚fFâzNwûYÿë÷áÜ3¥Ö&/Ÿß?Ózmg0ËûíÑš¥r³$l­M.ç=v­eƒy·AmIØZ›\Ì X6Ø”wÕRÊi£!zÉæ šM:†ÞýG7”œo4ÃÅägÙ á$x£.fÇ8Ûxʾ-Ù§ymŽî8oçY\߈eƒ ‘§ÅO…×X¶6."íënûG¥Þ«é?£R{o9OãRS6˜û)bÓÆ`ƒUîͦ±$lmˆ¦xª– 6åm~^¬’·ç3_‘¯Óuxælã1ø:'Á#3ÅìgÙ·á$xcd¦˜ãlã)»Ÿ@¢ä!»›¾ßõ0níü3Í´îûõm‡¡¶jà׃ÅýîÒS‰Z¯Œn¼îèÞ[¤öþ l- Ö‚kÝ¢ý«‹i¦¼­×K†e<èn¶Æ½ìgå-€­¤:pÍ.™¬?¶Ö/öu·ýݪcôݪ}é-§§[åÜÚ|kV>ùô6Uýå-tì>ÓUtœ„¯ï{¯UÀ²ÁƼÛ4k- »Ô»6O.¿?ƒœm<÷›W+9 ÞèÚ”³Cœm¼êzèN~æò<,CþhÀÖb ¬oÜz Q@Ö6öðºo4×,¥½Ñœ! [ ˆc°H5ܪ-€­¤:p÷ûVlï½¶š¿5ÃòùÌVºáb– ö+Z·k- [ëœHûº[xÓ¹û/¨¬ÍmþÉö¦sXb6Øx”¶UmIØZ—ªxV– 6æÝ'-¥œf©û3Ñ©Ç!{ C5›t ½!œϺRšägÙ¯G¼Ÿ“àYoJ‘ãlã¾]ª5I®æCLÙªm8ðæ—Ovˆ³ÇìË€püsLúìgOÙW@‡èó9Á=k5Ÿ>ñàý⿇5Æì¨g£éçqêÚCBz¾5ÇHú×Ýëæ·¤žúØèS¸{Š3ØcÊ[yIJÁÆÃîWñk(å´v?,ÿÕÙVÓ/6Ðó?Ûß_îù{6`S½ÈÏŽ|vê?MÂf»÷â,lÌ{™)ÝI)§K^Sòfrj7¹üFˆi6éÚ¯]Qr¼Ñƒ('‡8ÛxÌ~~ÊWÉIðF¢˜ãlã1ûz™ÝÏCöeö[·U^¿½Ç–ßv]~}#– ö+ZÿÉ%a+/²nögÁžt‘?Á«eÙÔ–„­¼ð*Ÿ€eƒyÝÔÚ™¡œ÷´.¯+yÕî?»“.y³§àûp¼>å©’âlã1ûz œ¯Ïz*gÇ8Ûx̾-;3³oûpŸ0%®?•ß ›¸ÆËû­kMÕ½Y¶Ö–óê-lÌ{¬jKÂÖÚÃb^À²Á†¼ûp™~ÙiIØF3xò1ÿÌÙÆSðµc¶î“àf°œâlã1û¸!œo4ƒÅìgÙ§ž&ü9úñ}:üÞ<µæpñvÛ²˜eƒý:í<´{úÒ’°µæ°”±l°1ïç_ÐYöse<ލœ°l°)ï¥ ßiIØúWˆÿ̯M—2ÌÙÆcðÉ÷╜o´‚ÅìgÙçá$x£,fÇ8ÛxÊÞÕ‹/ewË–>ShÝÇ®ƒ[ók±l°!²só¨µ$l­=,æ,lÌ».jKÂÖÚÃb^À²Á¦¼~ƒ %aÍ`àû_Ë gÁ7¿ß­’“àf°˜ãlã1ûîN‚¯õçbvŒ³ÇìǰF¿E¢Æ’°µö°˜wœZ‹%ÊyóN³Ú’°µö°˜°l°)ï1j- Ûh_ÇüZ9Ûx >/÷݇ڜo4ƒÅìgÙ‡püsÌúìgÙß¹CÉ?SOßkà•Ëw¿‚m>®%æ­>–°Ïç²Å¥£„ÂÆ»gÇæá4|ö½9¶î—=®ë|\š*вÁ~{øOäh, [[)æ,lÈ;‹Ú’°µ±•R^IJÁ¦¼—¦tZ¶1¤øz]L€s¶ñ|\zÆô%'ÁC*ÅìgÙ'‡p¼1,^ÌŽq¶ñ˜}îùfJ1ûtlÍ).~­áºgÓç@Ë"σŸ8ª±$l­=,åE,lÌ;ÎjKÂÖ¦©ó– 6åÝ›SkÊy÷žÉ-;q-ƒœm<?Wy(9 Þh‹Ù1Î6³Ï ÂIðF3XÌŽq¶ñ˜}pHîW¶7X_üBÂõØ?ÏcÌÀÖBþe™îcK=( µ¼ëVÀë^´G¼å7°µ€XnÆ QÀxmxU§Z[ Hu°oP¡ÖÏfàÕ ‡·Û4‰&bÙ`CèÕ³HC)§•®E9­ž2NcÖ½õ<[κ·+ËYõ”q³~þ¹Æ’°õçÁÈËoˆ gOÁýDt%'Áë}‰Jvˆ³‡ìÛ°"œ¯Ï(f9ÛxÌ>^vîç1»{X\þ´ÜxôÌ~ìtÿ‚ `k±œïK© Q@«p+àu/ ·+4\¿ûñ)âaƒ®Áb5nV‰Zýˆò©„ÀÖR¸û¶kýu0~¿Ueœå8í:.×&fÙ`¿‚mýfIØZߢ˜°l°1ï4«- [g)ç,lÊ»·–ÎVòî‹W#Ÿ¯¯qÎ6ƒŸ›,(9 ÞèU³cœm¶Å¼Áºk]ݶõ |>]±9F9Ûx ¾'ÁÇëõ¬Éq¶ñ˜}ÜN‚g³=Ù1Î6³Oó}ªª"û毵Z;î× ïÓ¸å×8bÙ`cä}<´–„­µ‡Ò¾îV±µùzÞ{ŽÞrš_íüñð¢·ê«þxx}Ñ[õÇÃ{ƒÞS °l°é7û‘áÚ©¶œvYäoÖ[6ØtŒ^¯ôçÝ:î"/«h 1Î6~üú´ÀÃ`ʺ¸ñ:d(€­|Åæf³(; [»6¥ýY°O›‚ öR-=}£ò‰q™7_î”Îj³§ìûÑõœS$ ȆŸz xÝ @?$×.¥ù!9K¶Ƹ¨Obös,º{ bÙ`/y‘s—otN‹ÆÙÆSö‡UÞø°ý ê~„ÀÖR­G•óýèX{y¶çlã1ø4ô<•Ïéa÷HUÅO~DRùóIð1ïGt×=ÆÙÆcöyE8 ž:EvŒ³ÇìËØ±ò´˜};ÛúÖ,½Í¿žßçcÏ›¸¶ð 𮺴Þ+ß xÝ À&~[ ˆÕ8?|„LUóÃÁT§Z[ Huðða2MÎÛ¾ö8æ¼ýL—»vÙËûíe’b§%akÝÛr^½eƒy×CmIØÚPI1/`Ù`cÞ­9šUŒë©ËkJÞ[‚>ÄÓlÒ1ô¹Ë¯’“àE19ÆÙÆcöcD8 ÞèQ³cœmVár@ž„o‹O!гÑÇün¹u矿ÏÇv"}ðî³#Ï4 û|­Cl-àë,`º– Þ<å¾uÝüëæ;/¢ñÈfÄ¿KX _ÀFkÐOÕR{Ê}ë,žC¨g£ù§Ë¨¤¦€X×- /N;ºéúT‚Y6Øz›š/V¤%ak/Šy·yÔZ6ؘw_Ô–„ýœ …¹ż€eƒMy/w–NKÂ6¦\¾eÛÁœm<?ü-QÉIðÆ;†bvŒ³‡ìnp'ÁïJÙAÎ6³—EôýÜ߯ÃSLÿ.·çBºÅ]Kм qGÜåÖ×ÿò}/Ÿÿ©=L>Ä> ×;©¡¶ð Ø»ºc·HÐìÑË^÷z;dûç5Æq©Æ‡/bèª, VãÔ·¥D¹§ËG.jÅS -€­Ä:˜—®I/å:pâxœvÉnÛ˜eƒ¡×æbbI)§µN1­ž2NcÖíþÜÒ›ÕÓÚÔbV=eœ¦¬Çý£;¬·®Þ£ |]®·e˜³Çàû²œoôhŠÙ1Î6³Ÿ{k)9 Þèѳcœm†wã‚x¾Õ$óƒž>æ_'È“ðõÞn%?èÙèSþ­£·^É¿ûÙé­¥ù~¨fÜæì îÙècþÃwúµž„Ϧ4vø×Ýà 4Kio,€a£÷Â}† ò$|k¹ñó‰ˆ{6ú”Ûóóýëò.vâÏîGéÖ b¶àûÜåG…IàjW¥œùÒ›íÅlÁ!ó8zLW{+¥Ìf Ž™ÇeWc¸ÕI ~Én²¸g£á»ºhRS¦[”bvH³IÇÜóˆpÊyëq³˜ãlã)»ï˜k} ¿>ìy$/˜ùÄ~^Òå:G0[pŒ½ùýT˜®¬¹ã×à çî?¡²p®ù'Û çÀÈlÁñHí““ÀYo¥ûìD0[pÊì7UaØ]+ì6ß?y?ú;_bcž>†?ûiZOÂ×zTòƒž>䟆ò$|¶hA‘õlô)ÿáóO[kÍëøžüÆÇ<ä×<„Ù‚clÖ¨,å¶ÚDJûóÙ>.¸ýü[­%‘•zAp¬—eÑc¸²Ð¯r. ˜-8fvjJ­¯ïKÚo†–nó˜f“N¡Ý„x¾¾P­–ólô1ÿºBž„¯/V«ä=}Ì¿ù!r­ù×ÙïLŸ Ñ<ŒLÍþQfšŽlF¡¡¶ª`]¦ûUO$ hM˼ðºÐ;9uû<*ì©—©k;³r5¢Äjt3V‰²Q Õ©„ÀÖR÷Wš:Øü˜ÊTë8oçõÈeƒýŠvÓc¸ÚÑ('ö=*Ì3ŸoîU˜®v5Š™Ì3Ï—G¤^L·úÁ¿çõ>‰z6úþèêgIO·úåü˜g£¿ñ;øT繬/ƒèÓC˜-8¶emÏ푘®¾Š)g¾¼;ïÅlÁ1³l‡úôkã­ñT=}Êï?†ûŽ×wÅsæÄÕWYÅsÁlÁ1ó:·ßÀ3Ÿ¸õ+xÿïr€ž>…ïØ ýÎ)ç­Yåôgٻ欣§£• ­˜ÒlÒ)·›“÷™AòzÙNë·×¸\æ€eƒ ™÷Á÷òU˜®öxK‰!Ì3““ÀÕo13‚Ù‚Sf¿"M…IàVG7ø|¹7îÙècøÉOµÒz¾Õ{*æ=}Ì?Ï'á[‚Åü g£Où÷ñ1ÿ²´'8øí&7ÈkÁlÁ1ör´§VHLWÉrf³ÇÌë Ç$põm13‚Ù‚Sæµ=I¡œy½Ox¸6‚Ÿ6qmƒž>†ßÆû$…OÂ·ÚÆb~гÑÇüûìšü§oµÅü g£Où7‡øÿX§v ë×Ok¾CˆÙ‚¿"ÞÚm»Ä$pµ‘,fÞ†ö0w13‚cæ}Ôc¸ÚH3#˜-8e^g5&[mc𫸶QÏFÃ~¿>­'á[mc1?èÙèý;àÐåíÿÇt~Šã¸–Pxü¼ÓÔîKp=%<»;|ÍãXÏø¾Wº@Õ@·šøçÈ{6ú”ÿòQL…ùÝÃV[¢ ýêi›·kÓb¶àÛ=lðÕÂ$pmÀý†_wÜâ¾gŒœ»¬ý,üˆÊÜîæ-ï&¶]ŽU{íwåX8«mÐc¸ö¢ |~"˜-8ev³“ÀÙ ‚ûÜØè×Ï ¥ùólôé÷ïÍY®ïn‹Ç“æf N™ý’2¼Îü–’ª?N7;¢ßÑß=}?~;L­'áýõb~Ô³ÑÇü£ƒ< ß诗óƒž>æŸ.ã$ òÏë|˜zÚY`ù062H“n °µ€¯XÀ~ë)€DY£ÛSÀë^¼OG³”ö>†$l- Œíá…Žê`œd/¯U'$Z[ ˆu°»* ÔÁr~—»6£zœNü~Ýy½‘C˜-8ä^–qVc¸Úó‘øuÇðòîûO¨4þd{y7™-8)7é1 œÞÝg'‚Ù‚SæÍ©1 œÍ*y裞þ3¹ôú\z6úþ|ÿ¤õ$|ÖÍÒä=}Ì¿Í'áׯ3J1?èÙèÓï÷ízu,a>ñxˆkÁlÁé°]º#ŠØÑïc{üIþq¸ÚHJü³€Wx¿ÿµŽ†¸XµŽUs´—¯—«æºÛBé‘»x:!˜-8eÞÛÃåÌ·ž´ƒŸüIõlô!¼殑éIøÖ“v)?êÙècþq< ßzÒ.æ=}Êy2Sø;wF¯¶¥çͼ‰7?f ±·s[s&«d13‚Ù‚cæÍé1 \m$‹™Ì3ŸÛ—«0 ÜjO®€J×6êÙèSøá”óVËXNq¶ñ˜ýèjÖ‹Ù®Vµ˜ãlã!û>\V·(|ì~A¶õ…¼hœÇë*å!ÌbÇrß±£…Iàêô‰_w¬˜m²ù¡¦mì-§ø}à¸ãǧˆ]ƒ-ØWÿö}¾0ÞWý Wgb<Ÿr f Ž™Çöä“bdo[ó?öëØÌÙÆSð‡otx¾õF¿œólô1ÿ´Až„ÿ\,3ôlô1ÿ|ù†€Â‡üë8µß(¬¼Ìãœ_ïf þŠxk¿Ë˜®ö¿Ë™·v罜À1ó´ë1 \^/fF0[pÌ|î’¨Â$pc­iôó~í<âž>…?N9oõ¼Ëé!Î6³;DS¦³aiMrH³I§ÜnB|H¾ßD‘ÌæñgAëõ:߯ñ>×£…Ù‚¿"^›k¨n˜®6ŒåÌG»U-gpÌ<zLWÇSŠ™Ìœ2»ö0P9³ë† ~ßòëõlô1¼ÿЙ–SÎ[mb1=ÆÙÆcö®}`ËÙ/­be ¥˜ãlã)ûù~Ÿý«¥jãèÕ.«ì»A˜-8ÄÞ—‡™ƒ-LWÇbf³ÇÌnÑc¸Ú83#˜-8e¾LÈëÅ$p«Q þ=‘ýze£ž>†_]W£.= ßj‹ùAÏFóo+äIøVÛXÌz6ú˜ÿ:‘DáCþãØ·8Q+÷«Q—Ïæb×kÂlÁ~€|?÷/‡^üû’• Yý%ü,‡ÞϪ߿CûÃÀ·$pu¼þŠû_3ìgl[o9¯¦Ï¼ôñ8OwþyS•ƒ-8Vÿ¸é1 \°>íAÌ3O~ž£ “À­¡úÓf¥¡fܳѧð~«­'á[Cõåü˜g£ùçò$|k!]1?èÙècþåòqq…ù7ÿR³ö<0 'Þœ¸æÌcë)e´ö,PΫ§ŒÓ˜µ½m~9l{ïúrZÀ²Á¦¼—ÏËôb¸1>ü‘ÏMÁ=}?þÛ2ZOÂ7ºþÅü¨g£ùÇ ò$|£ë_Îz6ú”ÿò2RáCþÉóÚ+Ø÷Þ_Ö}¾A½àË2O{ûK*7LW›Çbb³ÇÌG{år棽Óq93‚Ù‚ÓÏöC®ÕÛötâ÷e”ÿl³§CÕÞº–¹«=~ry{„z6ú~|{¦ª9¸z’—ªÝ/ñÕÿr¾u')Õ<êùŸíï·‡¼‹'<„cÍ]Ûa—k~¼lG]~]^Nz6ú”¿ý¾ |ÎíQûb#a¶à”ù²8Tgí÷ •:ëï>ÿ $îÙècø©ë}Ã͓𭠮˜ôlô1ÿÜõ¾¡œîï/ç=}Ì¿t½o(çßüç8«7Y¿ÆÌMƒl3ÌcŸkiU˜®6²ÅÌûÔO)fFpÌ|´¿]Î|\&N–Ébf³§Ìí¦½¹«e |’W6ÆÙÆCðeX&Ä“ð­v±”õlô1ÿØ5A¨œ욣SÎz6ú˜ÿs:ë}Ì?µ‡©—Óº=¿ÜË3ÏsûQYb¸Ú:#˜-8f^=&«Íc13‚Ù‚SæcQc¸Õ0¿mâÂ=} ïüJq­'á[ c1?èÙècþÕAž„o5ŒÅü g£ù·Ëû8…ù×Éï×›X?ìVvÙq‹ßCrŒ5€—Àæ¾b —ÉFªH”5œ]%¼î%ÀÛ@6Kioi‰Âæâ™°%dcÕº.Í%ÄzX.ܪJˆõ°.éâj%ø‰ν»Y=À%°¹„XëqŸ ØU‰²ù`]%¼î%¨VÝOCªÊÍ/Òÿ6—«rŸÀH”M3ÓRp l.!ÕÃåëŪB=l«ï{Õ6’xÿŸ7^Ý–÷w!Ì‚o›ï2©0 \›Vyï;nrûÒ[NÏÄÔ_E4'Ø–«Á±úw§Ç$pvÒvŸrf Ž™öåÌG×ÑïŸÏib"êÙèSxÿm3­'áÇëõªÊy6ú6È“ð=$ŠùQÏFóþ'½ù'?¸Qm¯W·iȯy³ÇØSÇ=Jb¸ÚHJüºcÅmf;zw–ót›E‡ïWNƒ-8Vÿ2è1 <ֆĊ§‚Ù‚Sf·©1 ìÍtðnÍ èÙècx7ˆ'á[Ít1?èÙèÓï_Úï`·¯òœE0[p:lþ"Wa¸:\/ñëŽáÏÜBå³Í?Ùþì™-8©u´ §oõŠèÙèS~?CöÛ ¯|8뾺Ìœ2»û`f³yŸü!;¾ g£á÷á¾CT‡'á³w3šü g£ùò$|önF“ôlô)¿o0´>ä?Öö÷?'¿rÝÔ_óf ±­ýåÍ&«¤Ä? øñ³àß` ŽU³·?PY®š½ý™Èòé€`¶à”¹ýÉJæ®æwêk…2šõ}º/o=eœ¦¬~Ýœ “À®ÞU‹Þ¿0»hгÑÇð«_ô§õ$|£«VÎz6úK~èB!áƒ_å ôlô)ÿjâÛU? ßèê–OгѧükOW½œo¿Gzw©?xŸEs‰`¶à{÷‹T˜®v¦Ê™/ß{ïÅlÁñg—.¥ÌçýgRaö³ÌÕqYUÓ‹Iàj…Uþ²¥¶/Û0”zŸÅ“ÁüÏñ—ç¡=ÿ¥xœ!üñeW›ÞŸM·º»§Ÿý¾Ë%6æÙècøq˜O·zÅü g£OùGý™CWÏœRÃa¶à”ymN»ªd^ïÓž*üôó8ÉŽy6ú~¡†„oõûŠ'<èÙè/ùïÓÎ:ê„oÕ_ñøƒž>å¿|ã©¿y‚þ> ÿùûP g£Où÷ñ1ÿÚÑ{^NìÑf"˜-8Æ^;úí“ÀÕ›L93€Ù‚cæ­£[̼=¬îïÎŒ`¶à˜yØR ;ó‰[mkðÛ(®mгÑÇðÇÐÕ™”ž„oµÅü g£ù—ó{îZO·î-¥ü¨g£Où×®¾E)øþmkê; pûçæ¦_À°µ€Pë9*ª.€D­9,·^÷°4 ¿­ÄjÜú¦?•«ñ:<º §Z[ Hu°Þgòhêà˜öè•óxŸÅx „Ù‚CîcYÚãf“ÀÕ>G13‚Ù‚cæsB© “ÀÕ>G13‚Ù‚cæuhw•ЙׇÕO·šà¸U¢ž>…_»ºJÒ“ð­®F9?æÙècþsCh­'á[‘Åü g£ù¯ÛR+üç.ÿ~)¨üçx~ƒ3+¡ÐExþçâKXÏkpÞ_°üd¨NFZÏþ»Ög»ƒb¶à¯ˆýw­U˜®NÐ(g>f5f Ž™§AIà¬#ÒÁlÁ)³sjL/y…Ý®ÏÓÙ0­Á³ÑÇðó°!ž„ó‹¤??èÙè/¿ÿ>Qò¡ó¼SyñÚÿ·ÀÖÒ!ô·Xu$ h=DÝ xÝ è}”ܯ;Á}ŠØ ŸÀF+qmçÑé[ÓLŠ×èÙèÓïŸÒjªÒÃÔvâl¯!³§Ã¶Hìäwè´¡Ü·´ g£¿äÕ•OWFËç €Ù‚cfç—@à•æÚ_À-Wškж\if Ž™×eVc¸õ|6ÓàÙèSx?L¥õ$|ë!¶œólô1ÿ>@ž„o=Äóƒž>忌º)|Ê¿µŸ$÷gŸä@1[pŒ}L›“ÀÕ'ÉbæÏJÌ2âÇ$pvgéÍ a¶à”ù˜Õ˜vÈàýÒ—Kl̳ÑÇ𣟺«õ$|ëÁ¡˜ôlô1ÿuôCáIøV¼˜ôlô1ÿ9€ õ1ÿæWiV{о'¹ “×<‚Ù‚cì­ýÐ%-å¶Úý-'Ö[6ؘWO)£ÕŽo1­ž2NSÖËgòz1 ÜêëŸ}ûÔàÙèCøiðS ´ž„oõuKùQÏFó#äIøV_·˜ôlô)ÿe½œÂ‡üó8-­–qñ‹í¶Ï]áz½C˜-ø+b¿£‰ “Àµæ±’ÀlÁ1ó´ë1 \k$Ë™Ì3Ï—çöb¸Ñ6Fïĵz6ú¾g.ÅSÎ-c%=ÄÙÆcöž˜rôžñrrH³I§Ü—oæ*|Lþ4¡þi´w? x/@½Ñðµ€X›?uÔ( k({ xÝ @¿ŠØ.¥ùUDK¶êÒ÷/j 4Þc1œ­ÅC1[p<‡öqWc¸z£•øuÇè~Bùí?ÙüÀ™-8©Åx†^—–8¤ÅC `k±® ,°&ý ³¿Þ}‰#˜-8eÖ[Ê­»V×}øÀ?K#ã÷8gÁ—Á¿ÐÕz>ë\)Ò£ž>æÈ“ðŸ‹eòƒž>å¿ìý¦ð!ÿz~’¥úì \m$Kç „Ù‚ãÏý¦êÓûrb¿èò³ÌÕ¸´«Ë™—®Áâàý«—Kl̳ѧðî>ìת9¸z’—8€Ù‚cæžW··£L·ÚÅâñ†4›tʽê+®>¸5‚Ù‚cæyDªŒrÞº 6ÆÙÆ/Ùï\ÝÇûÄ®q™/gL¡ž>…_»ÞÈ”+Ï?Ùiÿ> ß:óÊõ‡y6ú˜Ù!OÂgÚü g£ùÝܳûK9ÿz™»V˜–üžùÆëàD{‰`¶àø³·ñþúæaL;ŽS­ãËã%°¹„xðΖ¬‚öÌìò‘C0[pʼÞßuÕ‰Zïtî%¼î%ÞÀ6Jéy‹Gas ñ€ìíIúå“poO•/Ÿ„f N™7°ÖH”Ðz©Vi€àØ\Bª‡öb…ʱïZ,ý${ g£áÙX{G×j‡Û áǼùï¯@гѧßïÚwðõij¼øÌÛ~n¸§Â$pµµ,e†0[pÊܵ0¥x¨ƒ)¥Sõlô1ÿxY˜ùI_ù$pµ•-ž3f N™·öÍ¡œyëjœƒ_ÅÀ:êÙècøiêjÛ¥'á[\1?èÙècþy†< ߺàŠùAÏFŸòï] ÆsþñûØÞ âýææm?àH—þþqÛnMÓÃÃÚ4ø•hc €ÀÖâ!c\^ÕOÀ!=}Ì?=lMÕS$ h ÚÜ xÝ €‡ý𥴇ýÞEÌ÷7œª“- Œe7ÌùaßeÕÁ< ÈZsÕÀÖR<|9MSó¼ßg{=Ž@‡a\]^ x l.!TüÌ+V‰Ú£±²„×½„Þ+ûýM¸³ÿØYÊÓ•=‹.á¯"º®‹ÊKˆÄõ]›•âú.ʉ —ÀæR=ô]Ÿ•z8_QÖölZöÙör f ŽÁÏ÷s*LWGºŠ™Ì3÷¼Å*fîy—TÌŒ`¶à”¹ãíM9sßÛ“ÓOÙ'Í ž>†ï|ù"= ßà*æ=}È¿tŽè—ò/C×VOÅü¨g£ùÇ®­¦Šù·Ùß쫤ß×dwﯽ\¯ù_xSc¶à¯ˆ÷öAb¸ÚH–3›³ÇÌnÐcøs,ÚÌf N™ýN&—FÛü>ä×6êÙècøÕ¿êÔz¾Õ6óƒž>æß&ȓ𭶱˜ôlô)ÿ6#>ä?Ö©ù¥’÷g ßø3 äzÍC˜-ø+âöþ²7L×ÉJææ}¡Yocâ]M)£µ®o9­ž2NSV¿÷Ž “ÀÞnðû$®hÔ³ÑÇð‡ßˆOëIøF‹XÎz6z?´T{ÑøøÝ§wñóå¨ñZ§ÌÞ/Gç—£–ŽþÝßÿó_~û½ðñ©c=ãô}F¨HøFÃ^8Œ¸g£Oùý®AZòO£[n-üÓÔû]ó¯ŽaܯkŸî÷ˆ®Ø\B¨…iî0]%(!kù»JxÝKèýJÎçš÷T•Óþ6—«r~ØØ]W•g Ùƒ‚K`s ©¶û㎪ÂxRµó4z<½7DJ=³‡àaH…IàjJâ×÷ß¶!ÞV~~DeÖMó–?nµ¥c…„f Ç*²êÅ$pµûW:?!Ì3—AŒ^Lg½¾û[æè§Å¿eþƒÑ³Ñ§ðî@< Ÿu—Tù1ÏFóO+äIø¬»¤Éz6ú˜~ÇÐäßÛ›J9?;à˜‡I\óf ޱ?ˆ¡Â$pmjâ ¿îX;CgŸ{K)ÏйœyH ¶àPùn˜õ˜®Í‘,žpf N™/6õb¸152úiÎÔ³ÑÇð£¤õ$|c^a9?èÙècþi< ߘÊVÎz6ú”ÿ8ò¯›ß·ù4nS˺ä€x l.á+–Ð7¤p+€òšÒ·^·Ðø'°µ€X‹û}@]W‹û}€[w.¡°µ€XGßIË•pìkšê]z&÷²Û&Õ Ì‚ÇeÿÓ^LWŸm%~ݱb(á\À³ ½åôŒ@9Ø‚}õÏ߇aÒc¸ú˜ý|ʘ-8eöËÍT˜n=]¿g pÏFÃó}[‡'á[O×Åü g£ù§ò$üÐèøóƒž>å?âCþéX?ç_mOÃ÷ë¢?›‡aÝókÂlÁ!ö<Œ³“ÀÕ§[‰_w ¬í,¥½ðó]DûƒÅʇp¬üqÖc¸ú˜]:á Ìœ2ß§ñ÷G>zž­÷“¤çKhˆ³Çà“ßÊ_ëIøÖ“u1=èÙècþÙAž„ÿ\,åO”óƒž>æ_ü¤­ù—ùá[YòÊqOãœ_ïf ±—åá ]-LWH‰ðã§Þÿš[Ôƒ-8V[õ˜Þjõâé€`¶à˜yW5&]^a· ;ÁÏŸ>ZºÓ£ž>…_ï_óéð$ü–_KŠü˜g£ù· ò$|Ö„jòƒž>æßg„‡øÎï7_\²ž6ÿø fÙ`Cd7““ÀÕA‰_wÜ?ŒÖoko9OOG6”ü.bÔç` N58ßoÝOÃ§ÓæK˜‡l>™¥6—N¢ýÞ‡è*D ÍUÔ·^÷àí&𥴷›°Das ñ€L“áœ<ñg¤iѶcf N™·EIà¥1ºxúyZó‡ԳѧðxÊ(¡¹~¿ÜÁ%°¹„XŸšÑ×# ße-ž g£OùÝh¬Ás[í/ á[³¸Š5z6ú”ÿòVWáCþcóÃÕé\gåïò¹ÂlÁ_»UIàꃲį;†w#¼ÿ„Ê¼èæŸì”†"³Ç#µ¯zLW‡w‹g'‚Ù‚cæclh3Ÿ¸5°ü<å-êÙèSø®k’SÎ[úåôg÷WêR¹H×á-çãá¼]KЬäsÛ¹ä"Ü—÷›k$å|m¼·|®˜³Çìc\N©ò!¼ÛŽû»ÏÇéA~Xý×ÿÍz•–Ø\B¨·/÷—°]%(¡Ù?¿•ðº—?ß6Ki?ßZ¢°¹„x@–@¢„fG¹|bÂ%°¹„Pëà‡þô%„zX§ûTRycݽ]‡ìY³l°1õ<·Ç,%&«C#¿îX1fyˆ5Ír.Ãés-Gª|$[p¬þeÑc¸:‡­xÂ!˜-8e>5&]cP"øyÉ»¨g£áݲ"ž„o )óƒž>æ_äIøÖB1?èÙècþmè)åÿõä×ÜEÍæ!Ìbïç¾J*LWI‰_wÜ› ƒ"ûÑ[ÎÓmf|2 ©ú·Ž;E±ú«ï¸Í«ïhì‹§‚Ù‚SæŽÛL9s_3ü6äÍ êÙècø£ï6#= ßj¦‹ùAÏFòCßm¦”?øV3]Êz6ú˜ì»Í<çw߇ÕOßh­jÛüÐý4¼Wÿ¤':Cl-à+°ùï(© Q@kMÚ­€×½Õ“Ét©ÆÍÝnU5¢Äj<¿6¤.€DÙ»dÕ©„ÀÖb—ÍÃ4„:pÛå,…îÏû;\oìòMÿ@Ìr»ýòá“^L×ú7ü³€ç³¾ÿ57«ÿ[p¬šcÕc¸6½¢|: ˜-8d^‡Ñ©1 ¼ä&'¿úÅâKŒz6úÞ/pÕz~̯%E~̳ÑÇß?¶·x}¯ÍúàEœ³f þJØ{‹×ù6гÑÇü“ßàNUy$pµ‘+s³_2¦:;·¹Wýq¸ÚHë ÁlÁ)ó~߯°?³Ç­¶1øm èÙècøÅËDëIøV#SÌz6ú˜ß9È“ðÙÓ¦&?èÙècþu˜òï³ÿ:hëöt>.{ÿi(€­„*Ø?¿C]‰Z¯‘o¼îÀ_Bk–ÒþÚ»w_©¬:hñ`¸+€DÛuìSuB¢°µ€Xþ™]íý‰P›’ø<Ûi?÷-Ÿ¯%hf;­ç«i·‡aý>¬Cs=è;æ¯óä‡àB_ÄlÁ_·7Y¸a¸6¥ò†_w ï¢Ø,¥½‹â»ˆö7®+•àXù[ûÙåÊßöûUÓ}Â!˜-8fÞ/ÈîÅ$°»VØ}¨;úc¿Õãž>…ßWÄ“ð9••ü˜g£ù®¯K—ó—¯;—÷(ç=}È?—+|È?.ssW›uöxö=×tÍC˜-8Æ^üæ£*LWI‰_w oÆÓ,¥½îLÁ+ßzL×”O8³ÇÌëÃgy»3Ÿ¸±p z¿&252¨g£Oáž }nž„o5Òåü˜g£ù÷ò$|«‘.æ=}Êé•+|È?ùÍ ¦Zcí§EÏnšóK±l°!ó´ûS*LW[H‰ðãÛË÷¿v1é®ÀÆŠéhü‹õÒÑOÀ²Á†¼ó0LjLymÝÆƒ÷‹ÒMõlô)¼ßµIëIø-¿Šù1ÏFó+äIøµñ2©˜ôlô1ÿ4®ˆù—ùa–¼xœÇÛ»‹{½âáEÙ‚Cìei$û†Iàê Àbæåò2¢³ÇÌnÕcx¬Á3#˜-8f^ÇYI`×xïüû-ÛõÚF=} ¿:Ä“ð­÷~åü˜g£ù· ò$|ë½_1?èÙècþý2KBáC~·¹öŽÁ2ïòIÂlÁ!¶ÛýJM&«½ßbæý²¼³ÇÌçÆ*LW;ÀÅÌf N™Û6åÈ÷ñ’‡+#pÿ¼»\BCœm<_‡©«Ï/= ßêó–Ò£ž>æ?wJÐz>íÐä=}ÊyºWøÿüw]§ZçwûàeÊ¿Éb¶àûý'NU˜®v~‹™ÇËr›^Ì3O«“ÀÕÎo13‚Ù‚cæÙßT˜nõyƒ?Äó8êÙèSø á”óV·œâlã1û²#œrÞšÖ[ÌŽq¶ñ˜Ý]Öï*¼¿}6¤{ÜÄ¿'^>Ÿ%OSº °µ€¯XÀqï*D Y/¸«„×½xëŸf)í­,QØ\B< Ó–@¢„¬®;-áØ\Bª‡Ë³ª„P¿îS[ó]“ßÓa9ò­X@Ì‚/óe_/&«¤¿îÞ©òþ*;U6ÿd{ÆÆ»ˆY˜ 6§¥ý¶¯x˜–û¹Ý}f– 6å=ÚoìÊûÓóûîà§ãú®÷lô1¼[îoì:< ßšëPÌz6ú˜}xã§É¿^¾S3ùAÏFóoÃý&ÿé«Ñljß?5»âÌœ~vû#°Û°l¨ÌœŽ–Û ™]z¨(=ý—•k/°/*§ÌÛ¨®0¸ö—+ÇÀlÁ1ó¾ê+Œ®Žx3‚Ù‚Sæ]_a$ðç//ÚãŒ`¶à˜ù˜Fu…‘À­Ñà·là÷lô)üåú½5G/õ?ý¶Ëð˜g£Oá·®·ñ²òHøÖðVùàcž>å÷3ʵõGÂ7þ~åøcž>äwÃÕ ßá+ԳѧüT$|ãï?êÙècþqîñåú— ùû±þ–! –zUã»a³ÇØçgAU˜®ö0ʙݦÆlÁ1³[õ˜®õ0Ê™Ì3¯c³'YÎ|âÆ½5úE¶  g£Oá·žŽÕ͓𭶵œólô1ÿ¶Cž„oµÅü g£ù÷¹çÞZÌ¿þ}ym:òæ_.¸iÚókþÞÔ˜-8ýìötŽm>ñ<ÊŸ `¶àp´¶Á_íP怫m{éPmC{ߪ⡂pÊÜž íáç«ÀíÙS#fÙ`¿¢ÝÛ¯%$&«œ¿î¸¿Ö·5¸Ÿ…Q™ŸÚü£í/Œ½‹8Fuh¶àx¬¦AIà±6í xv"˜-8evíÙåÌî>[á>Ë/øuœÞ~¾ÄÆ<}úý~ƒßêàÆð,€Ù‚ã1›ýòo8öé³Þœæ°ž>åŸÔuG¹­>¹8`Ù`cÞe„ê‹„Ïz_šã z6ú”¿¹ê |¼½­>µ7`Ù`SÞõþ´¢ª¯ö>Æ• ó¸õ¨ü{<=u•qÏFû‡­Œ;< ßzÔ(æ=}Ì¿>¬\Ðä_/ët*ÏÅü g£Où¶2Vä—½ýVÌ/puÛ¸æ-„Ù‚CìÑù‰_*LW[ØbfwÙû¹³ÇÌëÃ7*º3Ÿ¸¶<«œÁlÁ1³Ÿ£²”ÛÆŽ,‘ûÏv§+älã)¸ÿ˜†Ö“ð­v±œólô1ÿ¾Až„oµ‹Åü g£ù©ë¾PÊ?=íÄøôýÓÓûýhƘõlô!ÿô´d‡'á³Áÿº{ìCÀï"è'°ÑÇ*t›ÜhªÐ]>Ƚ§èÙècþÕBk}È?ŸoѪ} ¿¢Óí»x˜‚0[ðWÄG{¬Eb¸ÚÇ(g0[püÙËØîK'>äÏF0[pÙˇ¼ët;ù1-2:ÄÙÆcð­ïÀKO·*¾˜ôlô)×¢åÿô­Gžâ‰z6ú”ëzd+ú½¯þŠçÏÞ÷û‹çèÙèSþ¾ú+å_&?Ù½õÈ8ûÕœë0ù˯îkPz `k_±ÿ>_]‰ZÏ|·^÷:Ÿ{ÇCÌhXæqƒ~[ ˆÕ¸<¬ÊQUãY@ëѱ|*¡°µ€TÛàëàxOºàˆù~âÕo®º_ f þŠx¿µ0 \›sï;îŸô~û÷·ÏL¤ÞrŠCOãq©þ˺úÞlÁ±ú§AIà±Òw,Ÿrf ¾üìæÚÅ÷ZÖ>öÛÏÖc¶àt¨ÜfÈì±»çûKûà·áóÞq¾ÄÆ<} ¿Þï´­š#«'¹Ä¯;V4ûùÉìîrÚs?E´/Öò¹àXýóp_ÕqøHøÆ¡òéz6ú”ÓW \½p‹í ‚Ù‚cæe„ꌄÏfåkŽ9èÙèSþ©ÝÞù‰[Ìé·÷ÏÃcž>…¿läUÞÖÕ`È¿O·N¾rýaž>æw;äIøVýóƒž>æ_—®ó§”å÷÷­ù÷©9Aú=dóÆÎ¿¿\ñf ޱw½¥ÜVÛÇrb½eƒyCm)·µ9ˆå¼€eƒ½üæöcázâ|q³‡Ãt ËgØ5šòà§#oŠPÏFŸÂ;uÅQn«¡Òþ|¶{…b 6Õʱ µJ·npå³ólô1ÿØžDT<+Æûš§ÞF±l°1ï4@õEÂ7&~–7èÙèSþqRW ¼ägËí¿ÜÂcž>…ïÚ¬­Ryë‚ü}~ÌÛ`Eýaž>æŸ7È“ðÙè†&?èÙècþeºîtøÏXô2œ§^÷fïMóÿöÙôïZBa ûy»ÀíÜ3nóÇ`¾Onût ª“Éü2Óí®­6ŠÙ‚¿ö¥«,å¶z+&^=f މ·ö§ Ê‘·öÞqåÌf Ž™÷ËÔÖ^L·ZçàçáÒº<} 柳j= ßjËù1ÏFó][—ó—½¹Ê;á–óƒž>䟇‡9{ŠüË0µÛW¿ k¶9¿æáöìl‰Ù‚¿"öƒé*LWÉræ£Ý–38fž=&«/H‹™Ìœ2;§Æ$°k´ÁG~m£ž>†Ÿ‡û”ÔOÂ·ÚÆb~гÑÇüËy¾Õ6óƒž>å_»ÚöbþÝ/3«Ž¨ûŦûè¿z¹æÌcï~y˜ “ÀÕQõrf³ÇÌÇ¡Ç$pu„º˜ÁlÁ!³.óI{1 Ü‚=ýgKíëµz6úôûýrÚI~ »ü˜A˜-8³ÑzìE-2H³I§ÜíoëÝ*®]Üåc=ê-lLÖ€eƒMy/óœ¡ú:š¯H+vô¼¢ŒÞÏ^»ž*˜g£áç¥çeàÍ“ð+­œôlô1ÿù¹t­'á'_9?èÙèc~7ô¼*æ_×e» e<íâèW ìóþ™î6Æ € `k_±€ã>”ÓS‰²¡ž^÷tkÅSã»nÓý¶«ñ|jR@¢€l´Du*¡°µ€Tû ê`÷Ÿ¨vÔFoÝ>æ÷_IJÁ~E»é1 \í­”˜-8f>v=&«Žbf³‡ÌÇ0·;i¥Ì·ú§_ýótŸD=} ï¯l­'á[ýŒr~̳ÑÇüãy¾ÕÏ(æ=}Ì?]V=+|̴׊ç]aÄ ³ûØ£ÚQrÕ¦ñ9©Þ1èÎ|߇Qo)·Ÿ+¢°È£”²l°)o{eJ%p×Êè§õz ãž>†ŸºV¦Ü< ßj‹ùAÏFóÏ]+SÊù箕!åü g£Où»V¦ó»ŸK˜Í'èÝ¿Wè¾ øt0ÓŠ¡¶ª`<'« Q@ë)ïVÀë^ôå_D×óv¹ÑB5NÄ@¢€ÏƒâœJpl- ÕŸ‡¢. ÖÁçé·ÑÁð«~÷c>ò(„Ù‚cîÅï"¬Â$pµÃQ̼´wÞ)gFpÌìÚß6+gví/Œ•3#˜-8f^Ûݬbdo[Àý•‘n” gOÁûºYÒ“ð­nF9=æÙècþ­ëÛfåüÛe`©ÒÍ(æ=}Ì¿÷u³Jùçw­6ËÓ¸å×;„Ù‚CìeÛ7‰IàjY̼NNÙ‚cæ­ý©ÍræW[Èbf³§Ìþæ¯Â$p«m þ½žåzm£ž>†ß}ÿCëIøVÛXÌz6ú˜ÿX OÂ·ÚÆb~гчünFćüÛèÿ~ö®ç¡Óï'unóÇ–mô3™´ž>äßÎéÜZOÂg f‡ÝýÓš¸?þøû¯úõôûÇß~ÿ6xü‚¶cí-åé+ Ëç.ˆi¼?ˆhèã˜'È“ðY+®9AÏFŸòï÷Ç M~·4WîÄûšß|!Ìc;ÿñ &kKHÊ™×á>dÓÁ1óö0ÚÔy»ìÊ̜2o£“À.¯°ÛMêôë»q»ÞdQÏFÃï~Ƭ֓ðc~‘ôç=}ÌÌ'á+GÊùAÏFŸòïñ)ÿÑž®½žxYÄ5`¶à{§Æ$põITâ×w÷ªÖ³W5ø]{~ÂeÛžøíçÿõãÇ_{ÿäSÌ}º`é4ýUD{,¸t¤ Ôèô˜®N*f Ž?{Òt†RÏc;ñº‹Ÿ`¶àx¨¦ËÛ~}æ1ÝÈÂq¾o­½ßŠo¾ÄÆ<} ï7VPÕ \ív•«}‘_NÂgã ªšÇ<ÿ³ýý˶1½•Çk~Þ _NÂgµ4ÉAÏFŸòïúÊ#«Ýîb#‡`¶à˜y¹Œa#u¶Ì«ú“À­Þzð‡˜Õ‚z6úôû×ûœ #lùš-³§c¶ï¶ØÞ·2ʇ ólô1ÿ¹ÊOUy$pµ'ñÏ~ÚžýlÁ)Ý–:L¥ª9N<Ê3ÁlÁéˆÐAÂ7¶Z+ŸÑ g£ù×iVW \=aŠÇÁlÁ)ól8ÏO\íÛ[n³§ÌÎvšì³úo“À.¯ïÛ~Å5z6ú~›õ' \}s]¼FÌ|Éì:#á[ïl‹Çôlô)ÿîÔ•G·^Ø/_8£ž>†ßç® Ò“ð­Ê/æ=}Ê¿@' Ÿ=iN~гѧüdžø˜ÿ[o§a8ñ:ˆ6ÁlÁ1ö±@§ ßš§Q<íAÏFŸòûN‚ªòHàÊHí˜ûÙ*Ìœ2_>‰ÔÙ1ìú?N>eA˜-8f/+î{1 ¼T‡’?DÛˆz6úÞ¯ÉÕz¾þÀYËy6ú˜: OÂ×ß³Vòƒž>柗ñ1ÿÃÆ'òÚ½Ýý}õrÉ– 6fvþ£Ä*LW[Èbb×W¯$lLÜq3+ö¶2®]É X6ؘw&5&]£I Þ‰~êÙèSx¦h= ßjËù1ÏFóï=ŸÛ¨ä?}«I,æ=}Ì]«ð~ZIX¶Óÿ¹ŒÝÏbYܵ„ÂÒÚÇÖsŒ ŸË˜¾ƒßÔ¾òfbz_%ŸGÖꀘ-ø+àqh½ºc¸2.WÉŒ`¶à˜ùivwæWb+™Ìœ2ûw4*L»êpTô‡ÿ"Þr‰y6ú~ž:ÆŸïž„¯KTòƒž>æ_fÈ“ðõá¨J~гѧü{Çp\%ÿq´ûîó‰E\óf ±Çs¶£ “ÀÕx)ó8ì­YdåÌŽ™Çæ×6*™O\í„3#˜-8fž–öƒG1ó‰[}ï_†Áê/]Û¨g£Oáý¢õ$|«ï]Îy6ú˜éùàF%ÿé[}ïb~гѧüî@|È¿lþÙ£ÚH.þÔõš‡0[púÙkk’ïg×í^Wù³Ìü•ðnɼ7Ûöò¡:F5f Ž™÷Ñ©+Œ®þåâqÞ—öÏ.gÇÌÇ ¯0x¬½Þ(g³§ÌN_a$põ/3‚Ù‚/™gu…‘À­79Á¿·˜»ÞzPÏF»ah‡/ð€[üônÏT¨g£¿„wHå‘ð­~Kéࣞ>åw]ùeý‘ð­¿_>þ˜g£ùǪ?¾Õo+гѧü+T$üçïç=TŽ?èÙè/ù»úíÅú›.ÊSüýPÛ4¹fOrõxϧƒ˜-ø+â­= #1 \ía”3·;ÏåÈzÏíq¤b๵™B%/`Ù`cÞei¿É->±kÜU‚Ÿ×¼U@=} ,ˆ'á[­j9?æÙècþu€< ßjU‹ùAÏFŸò»®7¹¥üǺ¬Ígåωå×ý{ίx³E|ìjLW[Èbæmn?t3#8fî(f>qµ‘,fF0[pÊÜ1L_Î|Ì=mcðûž_Û¨g£á¾‘zéIøVÛXÌz6zŸ~ϳ€< ßêñ>çÇ=}Ì?]=öbþs#²êT“ÝãiÏ–Ùƒ˜-8Æ>¿”§Â$puªI1óê˜ ³ÇÌÛªÇ$peåV%3‚Ù‚cæ}ÜÔ˜®/ØŠ~ö;ä^®mгѧðkÇ·wO·f˜”ócž>æ?6È“ð­&Åü g£ùÇá²"[áCþq\Ûï2;qÍC˜-8ÆžÆöëH‰Iàj¸˜ÁlÁ1óÜ1˜SÌ|âj¸˜ÁlÁ)³ÞRn[½ÞÀw—_Ù gÁ—¹k䟇æ Èû}[çßÞ¦Kþ—Õ˜-8¤žÇ‡oQ´0 \m#‹™Ç±}_)fFpÌå÷ý@­ùÝ}Hãá)›;½Ÿ•9¦ü g£ùWþ¨ Q@6ÀÑSÀë^@çÇvß 3ÿö«ož*ñ|›¬þ l- Vãæ°H š¨N$´¶ë`îã>š:Xæ)M (u6&?{\ïf þŠxÛÕ˜®v6Ê™Ì3Ÿ; «0 \{÷SÎŒ`¶à˜Ùo;¡²”ÛÆ ŸÈ÷)¿K‚œm<?&Ä“ð­>F9=æÙècþsí'á?KùU~9?èÙèS~· >ä_祹†mô+§Ï:‰ëõa¶à¯ˆý<&kï}Ê™—˼À^Ì3»QIàÚ‹Ÿrf³§Ìë½ãÓŸÙcWåý<ä×6êÙècøuìyåuó$|ãÝI9?èÙècþm‚< ߘ¦UÎz6ú”â1þ±Þåµ³œx]9³‡ÔÛàÛ &«md)ó¯[qsF13„cæ±½4¤œyl¯Ñ(gF0[pÊìW’«0 ÜjO?k~i£ž>†Ÿ–žÈ7O·šÆb~гÑÇü³ƒ< ßxE\Îz6ú˜âCþcðŸH«¾ûñc9ÓgúzÍC˜-8Ä>Æ©=Db¸:®QÌŒ`¶à˜yšõ˜®¾ü)fF0[pÊ|ËéÅ$°k iÿžé|½¶QÏFÃû]½µœrÞÐ(¦Ç8ÛxÌÞóµŠJöžET²cœmå_Wćünñ‚l°ýáåñgï¯æaÏ^€[J`s _±„}ÅJ QBk"Á½„×½„ÞùŸ»üx¤ª<{úÁæbU®#X‰Zó*§\›KHõpùZª„XÛe~Bi°Ó/#öó&¯·R³Çà{ûÕ´”ÛêP§´¯›UtQ7ßEÝÇó Æ·Ÿpù€ñ?üöóÇ¿ÿúñ㯲8jÜÓaÚçæ2³òaBp!Ÿðüé#Î10„Ù‚càÁ÷µž„φb5ÉAÏFÿ¸ŽÍ÷Eû‰qžB˜-ø+akìtž€Ãz6ú˜jóVy$pµa“øuÇýw‘÷†1Ÿ»ÈÖ[ÎíaDgÊÁ|©þÅtøÎq¨þ8 \}õW¼dÌœ2oNI`×h¦ƒ_gq½‚ž>†_¦ ñ$|«½+æ=}ÌïfÈ“ðÙ?M~гѧüûýëŠü›óç_õÕŸ_Ñ;Oëœ_óf ±·ÕŸ6*LWÇX‹™×øN ³ÇÌ×9¥½˜®¾ú+fF0[p̼í×ÅÌ'vÖàóÉâž>…w]o<¥'á[¬åü˜g£ùò$|ëÍ_1?èÙèCþ½ïÅås|÷}˜Žæ«³É¯½ž×q¼^ò f þ xöï{U˜®µ‘åÌf Ž™—ö^xåÌ'®½D+gF0[pÌìün*L7ÞE¿dsˆqÏFŸÂûME´ž„o4•ü˜g£ù×®íðÊùOßxwVÎz6ú˜ós"´>äÏÀÕFrôøóQªë5a¶à¯ˆ÷EIàj#YÎ|4§ûU28f>{*LWÉbf³§Ì—ž_/&[mcðïÏ^¯mÔ³ÑÇð~º–SÎ[-c1=ÆÙÆCö©kÙg1ûԵ겘älã)ûù~ž›‹â§Éãó óéZ‡0[pŒí纩,å¶Ú4–ë-lÌÛî©ã¶{ËÅ´zÊ8MYÛóó*i»æÇE¿É«ôlô1|ßü¼›'á[a1?èÙècþ¾ùyåü}óãÊùAÏFŸòwÍÏ+ç?ü µ1êéœtø¯þ^®w³‡ØóàǨU˜®6¥Ìf Ž™ÇöÐz9óØÞ夜ÁlÁ1óÔÑÁ/f>q«m þ½WÔõÚF=} ß×Ç—ž„oµåü˜g£ù管õrþ¹kh»œôlô1×xÅø‹Û>§_m–Ìû’ù…—a[óKÂlÁ!õ²úT˜®M-¹á×÷Nî¿ùŠiî-çirϘí|æ` ŽÕ¿µ'–«»|"`Ñžrf N™µ¥Ü.×êºOmˆüøŒ#Í—ÐgÁ÷¥gþçÍ“ðãõZÕ¤=}ÌtÍ-ç?}cbK9?èÙèC~7<|¨R‘]‡ædþ÷ÿyãÙ{8]ïf þŠØ¿Ta¸Ú@Jü³€/˾~üéR5«…ú«À±j¶CIàÏåä´§‚Ù‚cæý²f “À.¯°[/-øéÈ;™¨g£áDS¦Çü:êÏi6é{F„Sγ)Њä gOÙæß+ÂGû+¿ï]OÞx=Ä ?³EÜþ¾ð “ÀÕ†±œÀlÁþY$ öo ±‰!ÂÍ {cˆ÷Îç’9_ïëû“§ú$pµq~®w³§ÌíûQ9òÚÓ&Ÿ|Ë¿‚s¶ñ|ò+cµž„o5ÌÅô g£ùç ò$|«m.æ=}Ê¿-ˆù—§/È+gû`7æAÌb/þ{è*K¹­6ÅÄçÒf މ¯‹Bz1 \m‹™Ìœ2ïÍM++™÷®¾vðË’_Ù¨g£áWžj= ßj‹ùAÏFóoò$|6Ø¢Éz6ú˜zö­,æßg¿+`õ­_æÖ÷¿^óû9ûG…Ù‚¿">Ô–r[}c[LÜ~Ù[Ì«§1­?GT–r»ÕÇbZÀ²Á¦¼ë¤Æ$°k¼  Þ‰+õlô1üê'Ÿh= ßzA[Ìz6ú˜› O·ÞÐóƒž>åßVÄûüÛ÷yÜÚ½^¿òk†ízŃ˜-ø+àijnqÃ$pµÛ[ÌŒ`¶à˜ù×Ô˜®v{‹™Ìœ2¿¿î¬Ä$p«·üœ]Û¸g£áÿœ£õ$|«·[Ìz6ú˜ß-'á[½Ýb~гѧüÇ}ÏE~7=ly(.žÙ¯üZ—u̯y³‡ØîºJ “ÀµF²œÁlÁ1óÒÞª­œyio˜VÎŒ`¶à˜Ù©)et©·‹QïG~]cšM:…~Ø®­Ã“ð6±’ólô1ÿú°ï™&ÿÚõÞ³œôlô1ÿö°ñ–"ÿ~ö «ãèñ¶ùµa¶à¯ˆý&<*LWÇrf³ÇÌg÷O…IàZÇ·œÁlÁ1óÒš/gîëïFˆkõlô)|×èü͓𭶱œólô1ÿÙ_Õz¾Õ6óƒž>æ_/£ó òÇp§~ØOúýÿ¾ øÌM›b `k_±¿'ªºd£×=¼î/ŸÍ=Ýå`\–õi’°µb¯üþúe¶k ÈÄ¡Õ'Äþ}6,‰²Ñýþ‹ÂP[ ˆu0N;T@¬wܯ*yW>xüV­SÊ`¶à˜{õ_ Ta¸öë†_wÜݬg#0œ3½ï?¡²Q|óO>µŸ«e\Ò‘B"³Ç#µ9=&kïßÊg'‚Ù‚cæÝƒQ…I`w­°ûª‹èýǾæôlô)¼ÛOÂg¯ÝTù1ÏFó+äIøìµ›&?èÙèCþqćüÓÖÑ´ûU­Û” ÄlÁ—Ÿ½4‡!–€×ÛÏÖc¶à¯ˆgÈìqµm—øg?.vÿ[ð¥jÚod½’ÀÕšòé`¶à˜ùôFWo{Å+ÁlÁ—Ìú #«£RÅãŒ`¶à”ùr“ë­0Øå'Ém0"x¿‚a¹ÄÆ<ý%|séFå€_v´®ŒÄŸ$áž>„Ÿ‡á@*„oÌŠ*|Գѧü#R}”óÖ8dé胜mGkU˜®ö,Ê™7=f ™—a×c¸zs-e†0[pÌ<¶§–3Ÿ¸uS ~žò–õlô)|×l›'á[ k9?æÙècþé€< ßj‹ùAÏFóÏ—Ù„ òoûäz^ÍùUÛg€íúõlô_ÑoâIøÖ›(é_w¿Xl–Ò~±ˆa£âØ!O·^‡ODгчüû0ˆ÷ùïÃ:·»:ïã’F€˜-ø+â£ÝÉ’˜®öVÊ™/ó2z1[p̼zLW{+ÅÌf N™×v­œyízr~Ý®7YܳÑÇðÇØÕI“ž„ouRŠùAÏFòÃy¾ÕI)åG=}Ê™ð©ð1ÿù½¢j#¹y<Í{~ÍC˜-8Æþ|øJ‰Iàj#Y̼NíqýbfÇÌÛ¬Ç$ðç:Y´™Ìœ2ïíõåÌ·–.ïß_®mгÑÇð~M½–SÎ[-c1=ÆÙÆcö¾gçbö¾G×bvŒ³‡ìÓ0t Š–ÂOç­­Ïñ8ï ³Vc~¼6—ja>÷‰Õ—@¢„Ösß½„×½„ÞGè}ŽÓò:Kyz„ž³™vï"Æû|7ÕÁKˆdœÀH”Ðz-Ÿ˜x l.!ÕƒïréKˆõ°^>;”Kx¶¿ XŽETZ[ ˆ•°]>F«)€DYo¦§€×½€Þï?£[Ó¥·Ë¥æ7°µ€Xç´@u$ 'cùTB `k±އ‡M,ãÞÜ.iöû‰ì._N b¶à{™üÞ`*LW§TIüºcíÈð>ŸSíî?¡2Û¼ù'ËÃÈs:RHd¶àx¤æöUå#5_¶Š:´g'‚Ù‚cæe˜Õ˜>®ö0[7øýóäv9Ô g£Oáý¢y­'á[³µËù1ÏFó»ò$|6-D“ôlô1ÿ:vÍV/å_Ï9ßÕá)¿ ʾ/C~ÍC˜-ø+âãÞ©ka¸:Ÿr†{6úÞ =oÃož„o´åü g£ù×®·éåü§ÿ\0å üÊùAÏFŸò¯ñŸQ 7T(ž7 pù—k| …Éç (ö¸E»„§†"Þõ‡Ñ ßÇõ>ñP6~0í˜íÒr– ö+Ømº¿0ja¸6@sï;ö^è,¥¹š‚-8Vþ>ë1 \)*Ÿnf N™ýj&DÁ/þ‹3ó%6æÙècøÃOÊÐz¾1@TÎz6úÈ“ð¢b~Ô³Ñ_~ÿýQâi‡Ÿq?K˜çË{#S l.!ÅcGjáâïÏD]¿€D ­÷w÷^÷:_c¾Ó‡»ßEŒKÍu‡.!Vå4‚%(!{pÑ’p l.!ÕÃz_®«‡ÕÏ« ¾¿@ýÁÇßN!̃ûO°©,å¶ú˜.íëfû»ÌÛÙo_wÿ2óþÊï2›²8ñ`<ÒaÚÚŸ_+&Çô;=&«c ÅSÁlÁ1óqyªîÅ$p6¤ðp9½'q§=} ï_j= Ÿ )¨òcž>üþssƒê°ç|ÚiÍOYIJÁ~Eë÷ìVa¸z…Küºãþæô½@úoŸfµ·œ§6r<{5—J0øËXФ?qQÏÿ|WG¶àXóã¸!¿<ùMÿÇIàjc]¼`Ì3Oí[L1òÔÕ¾âDÁ8Ûx ¾Oˆ'á[—y9=æÙècþù€< Ÿ Ykòƒž>æ_–ñ!ÿ²?l…òôÀš›mÚóÇ>¼6—ja9—1êK QBóúVÂë^4!úSÄåCܪÁæBUºaK QBó¼xJá%°¹„T—TªB=¬ç,ÈÖ šé¼6qÈ«.€­|Å|ï_]‰Z‹Vn¼î »h´Kiî¢á‹Ø $l- Õ¥ßW¾úŠn X¼è0[p<‡œßÍ^…Iàê›1‰_wlx³Ø(¥çÍ"”‚-8Uþj<éÜeãëZ3XlÄÐØZ@¬ƒõ²A"VÀ¬?$pö×»¯Z³§Ì÷:ëœfxV^nî??_BCœm<ß– ñ$|ëÕf1=èÙècþÝAž„o½,æ=}Ì\V-+|È¿-þƒ}ÕÁC÷ÆnÞÿýz½C˜-ø+bÿñ &«#N¿îX1æ¹ëáÆÞrjcž°ä` ŽÕï6=&?*‹ö”C0[p̼NÍÍEÊ™O¼4ƽ‚w.ofPÏFŸÂCœrÞõ*§‡8Ûx̾ÝW@h²oiÎGeÄ«˜ãlã1û¾t÷•ÂûÖnäWgoJ×:„Ù‚Cìã˜Ú·‰Iàjã(ñëŽûo/ÇrÞ^¶Þržn/“Þ;ÎMYT9Ø‚}õ¿''w¼”|®þ„«/WžO9³ÇÌãxÀëÎ|b×hŸƒ_³ †¸g£Oá}gDëIøV]Îy6úøû§¹½Üj;ñ>‰sÁlÁñ°M›1ö¥Y¹»èÙèSþ£=mCV \mä$þYÀO®òÿšSÿ ¶àX5󴛪vi/´.WírYî\êª/'³§Ì—…Ö½˜^ò »-f:ý2|ˆ—Kl̳ÑÇðÎ/TÖz~̯Åþü g£ù×®…Öåüëxïékòƒž>å¿,´Vø<'cWßÛì'Þ·üš‡0[ðWÄkûu“Ä$pu¤_âŸ\¸…@ƒ-8Vͼé1 \]¯U<Ì3ûýXT–r{äÕu»€Nîdr¶ñÜO¬Òz~˯#Ez̳ÑÇüî€< Ÿ½Ðä=}üýëøé8Mùí/?ó‡¸^ÌÛºÜ_¿hûêß«þ8 \í#—ë ÀlÁ1ó¶é1 \&)fF0[p̼OíM:Š™Oìò »dÁûÍ/×6èÙèSxÿQ4­'á[]ãr~̳ÑÇüÇy>›a¯Éz6ú–ñ!ÿâ¿úXë"¿wÂxÛ}OóˆeƒýŠÀ$p­ç[I `¶à˜yßõ˜®Má)gF0[pÌ|Ì‹“À®ÞéÞ/þM6êÙèSø}E< ßèôVòcž>äwÃy¾Ñ{,æG=}Ì?.÷ù{¶}¯äý…Ç!_½b¶à¯ˆÛŸÞ0 \ëý–3ï~¶— ³ÇÌǨÇ$p­÷[ÎŒ`¶à”ùòV¯“ÀNoôN\Û¨g£á·aÜOÂ7:½Åü¨g£ùÇ ò$|£Ó[Îz6ú”â~þIèöïw.‚Yܵ„Âä•ç½ñޏK‡?Ó¯ç?8ÓZ4¾§m¼S¬[¶ÀR›KøŠ%÷× ]%(!ë—w•ðº—/kj–Ò^Öd‰ÂæÂ ÛéK QBk‰GùÄÄK`s )ÅÔ|ïå>æë]ÄlÁéð¹û:å °5ßÙÝþ< \}H–øuÇÀ±Ÿ…ŸPÙ¾¨ù'ÛëÉÞEìúÈlÁñHM‡“ÀÕGûâù`¶à˜yvjK¹Ížçï“vßÞ+Ò|,˜³Çà‹ÿ¢Ö“ð¥Dåô g£ù?[«è= Ÿ=Íkòƒž>å_ïïâùçÝû©ÑÑòêsãá‡óÒM.€­„*˜?E]‰Z}›[¯{†žb£”žž"œ„­„ƒ± V‰²Ù š.€­¤:x˜ £©ç†tI”ÆÚ>+¡ÝôùVçõ& a¶à¯ˆÝªÆ$pu¬­œÀlÁñg¯¾ý®Í†vˉçUül³ÇCµúFW…Iàj…Uþ²¥¶/ƒ“…ÉÂå“ÁüÏó—Û“?*ÇÀ±¶·Ë€`ïÏ&³“£/ˆK£y¸g£Oá{&gß8å¼5ZNq¶ñ”}ן5$põ¬)6jf Ž™÷ùPc¸u¶¿âpƒž>…ï¹/žì{×ÈwñdÇ8ÛxÊîçêh뎄oU^ùØcž>æ?.ûÁõ·ô÷IøÆ2†bý¡ž>åw3âcþmØ›_çñ”¯¾1[pŒ½µ»ëÒRn«·—râuVc¶à˜xßô˜®Þ^Š™Ì|ùÙ{³«¿žØ·Ÿ­ÇlÁég·?Æè¶û òú³Ìϰcrø¡:që>üº‹vôlô)üŒï£}eÏRÀ²Á¦¼þ3ª3…®þåâ Ž`¶à”¹ï©Jž#$|«¯Q>Ç1ÏFòoóÉJçøiÇÚ[ªÒ9ŽX6Ø”·ý5”â9pµ5,ãf N™wè!á[ýñÒ9Žz6ú”ÿ²a{ï C»F¼_Ó y6úøûGÿ0Qè°,ºyf þJ¸ÝG,^§'n5êÁïâñõlô)ü|˜NøÑOXÃÏ™eéi0Šç<èÙèS~ÿ¬:óHàê|‰_w ïÿÜ,¥g¾”‚-øRù]½nyò“ð­ƒ_¾x1ÏFóVô'/ ß½)^| g£OùWýÉC×6O(ß­Ì|É 3$|«Î‹ç<èÙècþùò5Q䜙ýú}Uå“À/?Ÿ?žæ<¡žþ~³U¾_ȯýû$|kÎY¹þ0ÏFó/äIøÖœ³b~гÑÇüÎ/í×úÿÜ 7ü~íy.ƒ˜ÈÀÖBì³ßâV_‰²q®^÷t›§Ø>?LÝÑÕ$\B¬Ê§=ÅuU¹<Ì-ÑPp l.!Öƒ{˜j¢ª‡có7Õê )¿_¯G¹=ïË@˜-8?v;Ra¸:¼VÌŒ`¶à˜ù˜ô˜®U3#˜-8e¾ì‰Þ‹IàÖC^ðò!õlô>üü}æñ$|«Ãÿœ÷lô1ÿ¸@ž„oPóƒž>忼'Søöæ»à÷¨äïïM1Ó5b¶à{n®åf)·µ&²œx|è]u'FpL<µ÷°/G>qíÅA93‚Ù‚ãÏn~¾?~ú¡‡?ZO§ñ Íí7z•´CÏ`wôÇ–7E¨g£Oáý¡VÕ \l»áŸü¸{,ø7Ø‚/U³"UKÂ7îr•Sólô1ÿ²ê+®-"-·f ¾d†êŒ„oŒ¦•9èÙèc~çﳪÊ#]~ÂÜþøé¿Kå%<èÙè/áw[å]6ÌQü}~ËÛbEýaž>æ?ç±j= Ÿ %jòƒž>æß.®Uø˜÷ï1šû´ çÜóÃmס+K l.!ÖÂîî{[t•@¢„Ö²×{ ¯{ ðâf)í5ÄŸ", ›KˆäXÁH”Ýt'&\›Kõ° Óˆ•êaçæsÏ—ù³ŠâÚ©0[p >Þ_p´,å¶ú[N¬·l°1osr9nsÚW9­ž2NSÖË£z/&ãÑûe~Ë%2æÙècøÅ?üj= ßêíóƒž>æw#äIøÆ8d9?èÙèSþËӎ‡üÛ´6m­þf0ÏÇ’_ïf ±·ylß $&«Íc13‚Ù‚cæeÒc¸:ÂWÌŒ`¶à”Yo)·­±«“/“xCr¶ñÜù%¸ZO·ÚÅbzгÑÇüëy¾Õ.óƒžþòû—ØÀ•¥—/¢a¶àtØŽ®ÛYù°«ú“ÀÕÑZ‰_w ï yÿ •]!›²=ËüWÛp°í>ÒŽGjõ˜®M7-ŸÝf N™·QIàÆ,Ñèýš’ùólô1ü1͈'á³DËùAÏFòïà y~½6Šü¨g£Oùßóžõ>ä?Æ}nvÙÇë,®y³‡ØÇ¹¡ª “ÀÕ.{13‚Ù‚cæyÑc¸Úg/fF0[pÊ|ljL·zëÁ»%ïm¢ž>†_–žÓÝ< ßê­óƒž>æwò$|«Û[Ìz6ú˜GÄûžìRéÄ>~f⽸ñó¡ŠáZBaÞþó‡*¦óCÇy –ïð~2TçÖùõOóöþï©Ý1[ðWÀãØÜää†IàjC]ÌŒ`¶à˜yšô˜®6ÔÅÌf N™·öÍ©œÙãVûü’m{6úôûý†tÕ)v[À‡åoïPP>5N\bWlÌœ2ÎÜàÔœvy…ßþxðÛ$NгѧðnC< ßšYWÎy6ú˜}Xd­ÉúÖ̺b~гÑÇüÛe¼XáCþépíA¿Âz–-o3 Ìbσ¿lT˜®ö“K™ç¡½³˜Â1óØ^ÌYÎ<¶—T–3#˜-8en/æ¬dîZLý¶æ×6êÙècø©k1çÍ“ð­ÎT1?èÙècþ¹k1g9ÿܵ˜²œôlô)×bÎrþs¿öês†_ ºŒã(®y³ÇØþ³%*K¹­vŸ‹‰ËóúA•¥ÜV»¾Å¼€eƒy÷Ë·äz1 Üêï?‹<Գѧð~TVëIøV·œólô1ÿ±Bž„oõw‹ùAÏFò/ÃåËm òÿz\:ZãÚ›_F¶Ì¾³Ÿ®x³‡Øn›cù7L×:¾åÌëåN/f Ž™·UIàÚ¸v93‚Ù‚cæ}Õ˜nŒ ¿ G~m£ž>…÷ßÐz¾Ñß­äÇ<}Ìì'áåü g£ù×á29Dá}~÷}:GQ«äøÁnܳÞˆÙ‚¿>‡0U˜®6’ÅÌî²=g/f Ž™×QIàj#YÌŒ`¶àô³ýͰö`önÒßxVù³ÌœÕÚ\ìPɼö¬7~¶k“„{6ú~ó3PT5GמLËÁlÁ)ó„Tå¼u+qŒ³ÇìgFUq$píÁ¼|¼Ìœ2wõ:ŠÇ»ï¦_<ÞgOÙ·æ‹×Êñ¾ôWËcÑO«ŒŽy6ú~ŸL•w~GKû÷IøÆXF¹þ@ÏFòÏgUëIøÆXF1?êÙèSþ½çÝk9¿[ÒÌÒÍu>ñ!úqf ޱÝáÔ˜®Þ`Ê™Ì3oƒ“ÀŸë¤°>©œÁlÁ)óejE/&FÛxú9Ç=} ¿ûExZOÂ·ÚÆb~гÑÇüÇy~­¿{,ç=}Ê¿ˆù×ui7’‹Çë´ç×<„Ù‚¿"ö+VT˜®6’ÅÌzÊ8y÷öãN1î>6›ÇbZÀ²Á¦¼—-({1 Üjƒwc~M£ž>†?ü¦.ZO·ÚÄb~гчüÛ0Až„oµ‰¥ü¨g£Où/»(*|ÈL[{Ñy|Èñ ³‡ØÇ<·Çð$&«-d1ó<ß·KìÎŒà˜yYô˜®Š3#˜-8fvjJmc=‰¾¦Ù¤Sh×3ŸææIøV›XÎŽy6ú˜]!O·Æ0ŠùAÏFóocÏ|š›÷ \Ãí {‰ìûòüÛg©ìµÕYw.‘:JøwÿýÏùíwYÄqnpã×ÓÕæ³¿o~¿ê`Þ5–š,³<_Æ¡z1 \}‡*ñëŽû+þ]Ú¹¼ùgáGTvjþѧO¡MŸO¡éXÍKsùX!8«Åé1 üyɲhÏO³ÇÌnh.(g>ñr­°ûÎ,ѿϴ³ îÙèSx¿~^ëIøìÅš*?æÙècþuƒ< ŸM¿×ä=}Ì¿]¶Pø<Zž¾¸ø®uÜ>©±ÃK`s ¡¦ááé©«%dÏ"]%¼î%À›Æ7Kioo‰Âæâ9?q¦/D Ù£’êÄÄK`s ©Žû«{U=,îh÷¾6—ü3^ f Á—ëw/&«½‰_wÜßiÜ'%nko9OýÀ9û$î»7ªs°ÇêßV=&ÇÚ(Eñ”C0[p̼Í-fÊ™Oìý¨Ó;ÿ½ÜÔ@=} ¿:Ä“ð­~T9?æÙèÓïo®EÜö`wqÊ– 6³Ãïó¬Â$puðTâ×ÃöÞBõ±ºñ'Ûö‚‘Ù‚Ó‘Úlgçé[½ôâÕz6úß —] ¿è+Ÿ®š—®m³§ÌÇ¢Æ$p6bþPáÁ¿Ïíë ƒz6ú~\VÄ“ðÙˆ¹&?èÙècþÉAž„ÏFÌ5ùAÏFóÏÃŽø]¦ö€µ_>»®û_óëgk|%f þŠx[Ô˜®öÙ%~ݱâ©ç|Q²w—óôÔó˜æKõïúlÁ±úÝ¡Ç$pu¹xÊ!˜-8f^}K¥Â$pkôøôÛ°äÍ êÙèSøcG< ßêוócž>æßÈ“ð­~]1?èÙèSþá!þÑ1I~÷ yÙ#¿ä!ÌRëÒœÿyÃ$p­+~Ã? øqkQðo°§t~i]m™ò{fæ;yDÌèæ'Í©0 \»ëÝðëŽûû ‡;û {o9Oý†O!Sz¼ÿõŒºªs°§êw†S®cF¹A0[pÌ|]{ЋIàÆ$Ýè·Ï[ÇË¡=} ïÇ™µž„oLèªäÇ<ý%¿þj!k=Îr‹`¶à˜ùw5&ÍèwÑQB=} ¿!œrÞèfVÒCœmü’ºXHøõÚËÔ\ì g£÷ù·ïÃ0Í6ßóŒQ8w"ÏÖowŸ;0gÙGÿÖ@ëCøqöS[ª]õÉãÏW§R[ b¶à{\æQIàjoª˜ÁlÁ1³{˜²ÒÙ]fŠ”zSÅÌf N™/ÓSz1 ÜêD¿N×v÷lô1ü9ÁCëIøÖ}¥˜ôlô1ÿæ O·î+Åü g£ù÷aC|È¿óç‘·öú~÷K·cókÂlÁ_ûA3&«d1sóp9±žÆ¼÷„bÜ9µ­N›°l°)ïe±Q/&]£M ~?òkõlô1ü2Þß[wx¾Õ&óƒž>æw]«‡ËùÝeõny¥V9?èÙèSþËêa…÷Øá•uÿJ³åüã~-A³Òl›ÏÕJî<ûw¿Lµy^>?Ÿó}#!Ê8ýŠÔ/Ta¸Ú>—ó˜-8f¾.‰ìÅ$pµ‰.fF0[p̼]§^L·ZæÓ‹}qÏFŸÂ¯÷Mž„oµÌåü˜g£ù÷ ò$|«e.æ=}ÌL÷MŠüãÜn`Ýi!¿äË2ËÐnØ%&«-d1ñ2´Ÿ3Š‘3»QIàj YÌŒ`¶à”ymîhQÉ|Ù½¸Ò0žþó;¯6êÙècø¾'É)ç­f±˜ãlã1ûecY§œ·šÄbvŒ³§ìû„ø~þõŸ·¯ÎÙX=Þ–%¿Ö!ÌüñîÔ˜®¾7–øg?Núõ¯-ê¿À8ÕÒ^lW®o«/–‹'`Ù`S^ßr¨0 ¼äµu»t‚ßD_õlô1üꟴž„ók¨??èÙècþs²–Ö“ðÙ[QM~гѧüÛŠøÝü†îÍíükácz6-M7ÀÖB¬ûÃsAO$ ÈúÉ=¼îÀû%4Kiï—`HÂÖâÁ8¬dxÕ ‰ÀÖRT@¨ƒc_ŽfÇfóxÍ?¦b¶àû8†QIàj·¥˜ùhjºœÁ>óñ}f=&«=—çÌ f N™÷æ.U•Ìû}—¨‡Öé·!{ÒÂ=} n¤¢õ$|«ÃRÌz6ú˜r'á[–b~гÑÇüó0#>äŸÏÁëVoeüÌÕX‡q˜¯÷7Cl- TÁ¼÷"z Q@«“p+àu/ ·ÃµÏqÓ‡ÎRž:\s¶ƒ! [ ˆã:˜¯)€DÙÄ9Õ ‰ÀÖR`>TÁ2ûͦÚËýÄùä³_~öÒÄGÀËígë1[ðWÄG—3Ëítoá×kŸÓöùü»ÿ„Ê^1Í?Y~¨›/G ˆÌ|9R«ú0“ÀÕ¿,ñëŽ]}:KioÔó«ˆeh×_ñ2Ap¬|׋—ɉ³&±»EC0[pÊ<ê+Œ®þåbsˆ`¶à”ù²¿Jo…‘ÀÙÄï‡EÁûIb—¶ôlô)üÚ_>àk×þ½Ö7y6ú~õ+z´•GÂgï<5ôlô)ÿØ•_Ö ßúûÅãz6ú˜ëóÅã¿]ž&àøƒž>埠ú#á[¿xüAÏFŸòo¶êƒþz¨=7®ÍUuÇàñä¶üv a¶àÚM—í´z1 \ë_ÜðÏ~|éþ ¶àX5ßN*WÍ|Y¨Q¸—O³§Ì{sÙ_%óÞ³ì.ú|‰îÙècøÅ¿­Óz¾1iªœôlô1¿ëZ6XÎï./+' ?èÙèSþã~Qä_G›®cùgóy š}iè.€­|Å0O¹Ï^ßõø×Íëöt©Ï&_ýØZ@¬Ã³V@¢€ì… êæßäIø¡ÑÃ(æ=}Ì +âCþãüøumJÓq¾VÜñTa¶àø³7¿`©Šç€ñ³Ìüq{5@%óܾ)Hœþ²?ÏT?›®þårmû¯…¨~6[púËí•ã àXÛû¦ÿÙ$pÖSëÎŒ`¶à”ùÐW \ýËÅ3 ÁlÁ1ó9³RUa$pc¢]ðÇ4ç·ԳѧðK;|ñ€Ÿ¸õÇçðÇwólô)üÖ3ËòVy$|«ßR>ø˜g£Où®ü²þHøÖß/̳цEÖá”êß|d;7ÉJ( ª<–°/çWïÎ÷#ëOSVC¾1Óóù4x6ú˜ cH·þþã9hðlô)ÿ2ÚêoíòÅú[üŠ†ê›ªåÄÛz¹i£˜-8Æ^üàŠ “ÀÕWPåÌf Ž™ÝªÇ$põT13‚Ù‚cæutjL·ÞˆùŸ^[ÉkÇvÛòK±l°!ó8Ïí÷“ÀÕÇ×bây>Ô˜-8f^=&«OpÅÌf Ž™¿û«0 Üzp9ý8ˆNêÙèSxß Ðz¾Õi.çÇ<}Ì¿®'á[æÅü g£ù·Ñ!>äw{û+ÈïEo¼Îc~ÍC˜-8Ä>?»§²”Ûjß·˜øh ·œÁ!ñ:´·¼,Fx«½-e†0[pÌ<^ÖVôbØ5º¼Á¿w$¿^Ù¨g£OáýR­'á[]Þr~̳ѧßïwons2Og ~½ÄxI€–ÀæâQœ¦{KÕU‰² ¿«„×½t»–v)ÍíZ|‹ÂæÒéÚLµ|Zžþó Ê{Ï•/+гÑÇüóeä;wÌ)ŸÐóe¬ƒ.l¸6—êaß°B=ìCûåÿæmþ^×ÛQÙ‚¿"Þõ?›®>ž3ƒSc¶à˜yõ˜®>ž3#˜-8e^Û¯s˙׮ש§ÿ¼y¾6’¨g£áç±ëu¦ô$|ë©´˜ôlô1ÿ2Až„o½J*æ=}Ê¿w½ +å?¶£=ôègVOã4ç×<„Ù‚Cìc¿lsÑ‹Iàj#Y̼»ö¸e13‚cæcÕc¸ÚH3#˜-Øgߟ•l˜>gN¸Õ6ï²i¸g£Oá·®SéIøVÛXÎy6ú˜Ü!O·F‹ùAÏFóOs׈i)ÿx~À:›/ðÔñ?2OË2^_,%°¹„¯X‚Ÿì¡/D ÍÁ[ ¯{ è®fíRš»š™¢°¹„x@®Ÿ V•@¢„l‚ƒîÄ„K`s ¡¦ó“ÇúB=LÛ²ÞžPK} Ÿ¯P\ë/Í%ÄzØü&oúH”ÐZæx/áu/¡wµççÒšÒ¥5~â‚þG°¹„P•ó¸ƒ%(!ë0©N)¼6—ëašï}F]=¸±=øã7à˜Ö9Ë1[p îü²&«åÌ'ofÇÌëÃIßy½œkN›ÁlÁ1óv9Á{1 ìÏÁ¯cÞ¯E=} Œˆ'á[Ïåü˜g£ùò$|ķ˜ôlô)ÿe‘¸Â‡üËôðD_<ó0xüÙëzÍC˜-8Ä^æ±5}ûŽIàʤŠ;~Ý1º»êÃO(ï®Úþ“ÍÝU?EL«:2[p›¦Éz6ú˜ÿ:%RáCþ}ò› <^ßyuŸ3f Ž™÷Qm)·õùM‰ûié—Óãlã)xÏ÷Áïž„¯¿¨¥Ç<}üýÍo…ÍïG¹ÝdW°l°ñ˜›1³÷õ7•cz6ú”ÿ2ç¶·òHàjϵ|ÄCÙ‚CæcèùŽ{¹ÎŽs³#Õ'«£ê¥:ƒ0[pʼŽjL×wp‰~Ä´KԳѧßï_ìgsËŸ>Z9¡„Ï}m¼$@K`s ñNþ\ §oõ‹Gôlô)ÿ|`5H¢„Öd¬{ ¯{ ½³Ò¦Ï¬´ùRþCúÁæbUÎt(Høì-‹æT=}ÊïÀ$QBÖKÖ5)p l.!Õƒße®ÇeèšXº Bï£óÊsö²]K(\Ï›W†iKG ÿîï¿ÿù/¿ý^Øÿòpçé0}&¿Esµæ|,Kö¨b¶à¯€çySc¸Ú*fž]»VÌŒà˜yYõ˜®v£Š™Ì3»©Ýû+f>q«ßü–mS„{6ú~ëê7IO·n–åü˜g£ù×ò$|ë&QÌz6ú˜»ì¡ð!ÿx~9­ÕïœÞ3¦ß%¸}ºÞê-%°¹„¯XBßóǽ%4—2ÜJxÝKèí=ŸÞót©J?SWÿ#Ø\B¬ÊuK QÂx}}¦;¥àØ\Bª‡ËþyªB=,£ïVß*¯nÈo§f Á—ij¿ —˜®ö?Š™§¹=bWÌŒà˜ynn WÉ|âêëâbf³§ÌGû-w9óÑõ–9x¿íór‰y6ú~YºÞrKO·ºÅü g£ù]Ïr•ü§o½z,æ=}Ì~q^ëc~¯¯¾m÷÷…e˜vqÉ– 6f>¦IIàê»b‰_wÜ?qŒq,ãgáGT–t4ÿhy43õC ÐlÁáX¹¡¹KvùX<ÖZöÒÙ a¶à”y_Ô˜v× {˜¹¼ß~¾ÄÆ<} ?Î+âIøìU±&?èÙècþi< Ÿ½6Õä=}ÊÙS@ácþsÔ°:عŸx?Ä5`¶à{G5&«½öbf³ÇÌçŸ “ÀÕÁÎbf³§Ì—a¾^L·Æ8O?ŽbŒõlô—ßß~¢>N<ò˜˜-8³ur¦Ø§o=cèÙè/ùuå‘ÀÕ‹¼xÌ×¹½æªxÌ3o3Tg$|k8ºxÌAÏFŸòw,•+óW¹â1G0[pʼo¦:ÓÿiÊh« Ú¿»»œ,f“N¡ý¢­'á[Z9;æÙècþãa¥&ÿqYWT€)æ=}È¿~™Ö‡üaŽhm0æœW²¸|ƒS³‡ØÇçÁC‰IàÚ Æ ¿îX1†´“YÆÞrÊ[¯¥ê?†uUç` ŽÕ?nzLׯWЧ„Ù‚cæiÚÕ˜n «Dï¦|Xõlô)<Ä)çA•Jzˆ³Çì—=ÇœrÞP)gÇ8Ûx̾,â}øùû°ùÙ“S­=Þ¦åz­ƒ˜-ø+à}¸Ïãha¸Ú8Jü³€bƒƒ-8VͯFTIàjZ<Ìœ2_öbïÅ$°Ë+LöТ÷#ªË%6æÙèCøñÜŽ]ëIø1¿–ºó£ž>ægÈ“ðCý±¶œôlô)Ïvìåün¼ìßWjK§v“Ÿ»”®y³E¼¶ï“ÀÕF²œ¹£s]Î à˜yÚõ˜þ\'‹63‚Ù‚cæyn®â.g>ñÒhOÿ™þz½¶QÏFŸÂ§œ·ZÆrzˆ³ÇìÑ”éV›XLi6é”ÛMˆ÷a°©{1‘;—-óµÍb¢í\Ž´gí/ß§e[nóã¤ØOˆu<>0̨1ÀÖR?CºöVgœκ f þ Øù bñÜgíyÝ¢€×½lu览ÎIö¥£ªq™ÕÇ€®½*Ÿ:¾õPY6ؘx±*#Q@v£V]óhl- ÕÁª®?ÊmíõVù˜– 6åÝ[…mã¤þë$pãÕXðÓ”­ŸÆ=} ïï•ZOÂ7^Uòcž>æß7È“ðWcåü g£ùË^ì ò;×Þ®øýòðÝ8äM„Ù‚Cl?¡^E)£Õ浘WO§1ëÃ'ÁºÃ>|ˆ«;-`Ù`S޵ݞ—¯]íiðó_Ϩg£á÷±«=—ž„oµ‡Åü g£ù ò$|«=,æ=}ÊßµÍb1ÿº=lÍ#/çñºˆ+ÂlÁ_ûÇM&«#’ÅÌûØÎ,fFpÌ|<<ävg>quD²˜ÁlÁ)óÖH-gÞº2ƒ_·üÚF=}¿ 3Â)ç­ÁÈRz³Çìþ¶ å”óÖpd1;ÆÙÆSö£k0µ~ŸööXœ_ü¹îó˜_ëf ±÷yn_ILW{½ÅÌf Ž?{Ú5ç@ÆžïJb¶àx¨–ŽÁÂræ%-—qÚC…`¶à”¹ý )ë‹r[­®òQÖ[6Ø”×tBUY$°k<–¿Šn5êÙècxç?]¡õ$|뱤˜ôlô)ÿ¦>q(·Õó¦x²– 6ýæû2ϧ1åõ|ŽÚ·1ÀÖâ![§ ÏâÖùü{ žì|=} ï§”ê«D Ù)ßUÂë^‚öËžÇÚ[Jùcîr0Ð(l.!5@$|k\£Ø€‚ž>å÷ãôÚš„oÕ_ù‚Ä<}Ì¿]vjWÔ_Ì¿ù –Õµ8û‰÷UÜEÌœb?|ŽJ×m—µkt+‚K`s ©üªrU%’ÀÕ®ò±0[pʼC— ߺdŠ—<èÙècþ}XŒgÍ~ùÖ³âÄÜ·±§>"»þ——k.Í%¤ZØõ'! <ÖzÅkÁlÁ1ó1ÍX­‘(¡ÕòÞKxÝKèí¿í³øn³”§þÛœ}×…Í%¤â÷PMØ5F®OŒb’êÙèSø}C< ß½.çÇ<}È Cšª«1”к”[b¼6—êawÖèHðŸ{Á¬?“PÏFóË}©hw~÷}Ú¯ý6Ûg{¾t;1[ðWÄGsw&«ƒo¿îX;±Ïç‚ÑûO¨ìEÙü“å‹9©qh¿O()Ç#u~ÚH…Iàê[ñìD0[pʼ:5&³‡ÅÛÁ»Ï~g—C z6ú~ï#ûž„Ïžò4ùAÏFó/äIøìM“ôlôé÷¯Í·ÌÓpâ}×,‚Ù‚ÓaÛîãišÃîF§þã$p­‘¼á×wß‘VñXÕ,åé&ã²Ç*0[p¬üs³>&k­uù„E0[pʼ5_ÇU2o=tð£ï6^гÑÇðÛt ž„o4Òåü g£¿›“KÞ£ìœOñ1[p[1?èÙèSþûkJ͉¿ÞßjN|Œ³_~|û)Üx’7'³ÇC¶Mûâ¡S†„oL6*Ÿò g£OùguÝSn«·ÆâX6Ø”wë™\V®¯}QÿmÊmu8£X_€eƒMyöL9ðÑ5ü"†TQÏFÃK׌ô$|«q)æ=}È¿ ò$|k £”õlô1ÿ8tÁó»Ž;Ûê±ó_KW<„Ù‚cìµ}O–r[m‹‰×¥ý¬ULŒà˜xkH«ùÄÕG†bf³ÇÌûÐ~Ò)f>qëI!øeW6èÙèSx×õ¤#= ßjËù1ÏFó+äIøVËXÌz6úß —ÿ(|È¿M[{Ê_2¸}&È\¯ù_¸9Sÿ†Ù‚ãÏžÛ#¶ûi1­±l°_Ñz ö¸:^[…¿¼Õî­9¸Õi ~[ex̳ѧðnF*„oÏ–>æÙèSþmEê„ouÚÊÇólô1ÿºBõG·Æz‹Çôlô)ÿÕ ß»,гÑÇüÛe= R›ÿH˜öï‡úÛÏE›Õs1Ó±ˆX³EÜþì “ÀÕF93€Ù‚cæ©ýÝÁræéòp[ºÉ3#˜-8fžÛ_v-g¾.1­Ü[‚_¼m@=} ßõq×›'á[mk9?æÙècþs­¥Ö“ð­b~гÑÇü®ëã®7ï×j†9YÝó{¿ùÛç£~×>ƒ<½ó›| [Xе~?(T{jŸýz]Ìï1[ðWÀ¾W«²”ÛZ3]Nì̯í·åÈëe†Páh93‚Ù‚cæí27¦“À¡Á/cÖóÄ=} ï'Çh= ßh+ù1ÏFóïäIøFÏ»œôlô1ÿ1õl TÌ?¹yiuÁß÷¯7vóœ_óf þŠØ?°©0 \m$‹™Ï™x*Ì3_'Dõb¸Ö/gF0[pʼ5Ÿ*™·žž{ôyÏ÷lô1ü>õ<9Ü< ßj‹ùAÏFó]Ÿ/ç?}£ç]Îz6ú”ÿòe-…ù×Á·6ÕþïôÁÇ0¯ù5a¶à¯ˆ}—@…Iàj#YÌ<¶Д3#8fžÚ‹1Ê™§Ë’ˆR¸˜ÁlÁ)sG§¿œÙãV¿7ø}ȯmÔ³ÑÇðs_¿_z¾Õ6óƒž>æ_&È“ð­~o1?èÙèSþ¾~ÿsþíû0Íi³_p¬K6-ÄlÁ_ûZSYÊmµ‰,&ž\û¶PLŒàø«çá>«éi×Ûs³¹cõoÓo‡K`s ñ¸Í눕@¢„lLW ¯{ ðaš¥´¿c‰Âæ.ÄrN®í§ªâ¥„`¶à˜y5&[SÁ¿?Ø’n¸g£Oáý—´ž„oÝpËù1ÏF/óë/YÙô,]K — kA_B¬7ÍÖvèHð­ÇÒâ™z6ú˜gÄÇüç'jÓvßC›oüùnSÖz"˜-8Æ>¿Æ£Â$pm ë ¿îسögá'TvQoþÉö·ï"üç T‘Ù‚ã‘Ú=&k“PËg'‚Ù‚cæãò‰Í^L»k…Ýw”Œ~þìn0§Ø g£Oáñ$|6ýP•ólô!ÿ8'á³éwŠü¨g£Où/ ò»ó51}ü²Êgâ6ŒÛ”÷lðØ\B¨w>¥êK QBöPÔUÂë^ÂÓ|™‡ûÆûŽü·oSjCñÁæbUžúH”=kéN)¸6—êáòС*!ÕCÇ‹fwâcÊo§f ŽÁÝܤ“˜®Ž-3;ÿ±[f Ž™W§Ç$pul¡˜ÁlÁ1óæ¿©Â$pkHáôÓ8år¨g£Oá/Ûy)< ßz.çÇ<}Ì¿¯'á[ÂÅü g£ùqG|È¿ŽS{nézb'®y³E¬·”ÛjYN¬·l°1ïtïËtçî=ˆî¼€eƒyç¥}C(>q«M ~×4êÙèSø£ëž = ßjËù1ÏFó»ò$|ë½r1?èÙèS~׳¯˜›.Ÿ>.µŽggÿ³¦ÿzÅC˜-ø+âÍ©1 \m!Ë™÷vÓ\Î à˜y>ô˜þ\'¥ÉCÅÌf Ž™ý6Þ*K¹mÍ |_ó+älã1¸&Ä“ð­v±˜ôlô1ÿ:Bž„oõu‹ùAÏFŸò¯ âCþcöOÉÓuˆøa$gtg îXòñ(¼6—jáXüÝQ_‰Z¯Áï%¼î%¦Ñ4Jé™Fó«ˆ‹Âæâq#X‰>ï.èÄ„K`s ©6¬>ì•Sáq©[üµ,× £îÏ«TÏsr›:JøwÿýÏùíwYÄ|žÖÛy4÷ïãà¿íR}I¾û:ØöåÚ­1[ðWÄ~$E…Iàêëf‰_w ¶YJûuý»¿s“*[p¬üq×c8»òºO8³ÇÌ“_¼§Â$ðÑxÝ}úÝïl>§Ø g£Oáý›­'á[¯»Ëù1ÏFóÏäIøÖëîb~гÑÇü˲#>äŸÎ7>ÍÉÔ¡„Ão?>ÆÀK`s ¡¦óí¾%4§tÞJxÝK€û²ÍRÚ}Ùwã}~œî€À%IJO` $Jhu+'&\›KHõà‡Ãô%„z˜upo£qOÝáý3Gt‡iËë/Í%|Å|§^_‰ZÓHî%¼î%ôΧù\ŸÓµ*6ÌRV%ZB¬Êýa„UW•g ­™(•S .Í%Äz8¦ +!ÔòÏíÇœÃã1ßÚÄlÁ_ïí,‰Iàê‚į;6<`5JéyÀZöC‚ 6T½SKºÊ­öµt¢é%Ã2æܤÆ$°k<’ï7 L]jÔ³ÑÇðãe*“ð­G’b~гÑÇüÓy¾õHRÌz6ú”ÿ2¥ð!ÿºÏ®Õ>¿¿tðƳß=5]íf þŠxßÔ˜®µ7ü³€/«i¾~üéR5Àß` ŽUszL׆§Ê§‚Ù‚Cæ_Ï¡‡“ÀG^aò [ðËÍüÀ=} õ$ü–_KýùAÏFóŸ{©h= Ÿ5¡šü g£Où»ö /æ;7wßAïÜœ-ïµ”ÀæB-„݆õ%(¡ù¬z+áu/¡ó¡ý½Nã×CûªržìG°¹„X•Ë –@¢„lºŽî”‚K`s ©.›ó«JðõpÄõiSÞ4å÷¥ÑãÝe/©@Ìœ~öÞîšMïòg˜-ø+àiœñÌÓÃ0r÷¡B0[pÊ<·;²ÂHàê_.çiiŽ0”3‚cæùa¼¾û8ÏÃäÝÇÁlÁ)³ÓW \ýËÅãŒ`¶à”ùá}Dÿqö¸Õ+~Û®½:ܳÑÇðËÐ~*ð·þxðû$ƒž>…Ÿº¼¬<¾õHP<ø g£Où]×#¡¬?¾õ÷ËÇólôé÷oí»Úð!,³ÇÃæüê%&«-|13‚Ù‚Sæ:ÕIøÏ/Ïo._ª g£OùWÛ©~úÖÓ{ñR=}ÊyE…Ôß:u~ÿþÚþ¨jùš;qíÕQùšC0[pÊ|ŒjL»Æ½åôÇ8Šôlô1ü¶Ìˆ'á[l1?èÙècþ½ë““åü§o]pÅü g£ùÁ!>æ÷ëLk«Àߟ‚úØY> – 6e>&5&kËoøuÇýëö!~ëgáGT6¡kþÑâä§ñ¸©öÉÊ¡p8VÓ8è1 œ 9öžf N™ï¥ý‘?v¹V×ývä~SÎùâlãñÇOsyerð*Ž‚Ù‚ãñšü¢D<öâLÍA=}Êïš³Òn•GW{œåc`¶à˜yž :#á³ 4Çôlô){µVù˜Ÿ¸Úã.s³§ÌÛbª³å²>²÷“À­ŽzðÇœw4QÏFŸÂo§œ·ºéåôgÙÝŽpÊy«‹^ÌŽq¶ñ˜}'ćðëæ¯Øjg}ýà_jÈÛ ³‡ØëÞÞë†Iàj§Wâ×+ž1VÿŒ±½å”÷ RõïóªÎÁkð˜\³ú·Ë÷’f ŽgͱX2/鹡t{)^)f N™ý;U…‘ÀÕ “øuÇýWÊq®Öß×Þrž®”)[]ô.¢cT¡|Ê8Uÿe¡ÞcG»Æ“Oðïii×^,êÙèCøsq›–SÎ[Ï¥ô gÙÇAÖÀÕ³¦Ô¾B˜-8ev‹“À­³%ø}‡ôlô)üŠœ/”óÖÃOñdÇ8ÛxÌ> +Rw$|«òŠÇôlô)ÿØõ¸_¬¿¹ïä)ÖßÜwüŠõz6ú”Ýÿé"¼÷ÒíKô.çoŸý‰®%ú%¬g ÛàÁ6¼w—ùÜ0²9ݲñókÑçaq—6ÅlÁ_~ö “ÀÕ›œÄ¯;VôsÕëÜ[ÎSÿp¾~ÍÍÁ«ÿœÕªÂ$põUFñ”C0[pʼjL·ÞïúæKl̳ÑÇðŸÙ%zO·nÅü g£ùyþsÁL@~гÑÇün˜ò>ßxä×ÏÎÓ¶ç—…÷¬Ôz¾õ£œólô1ÿužŸÂ“ð­7Åü g£ùÏ©rZò¯ÓØœíü²Øy]Å5a¶à¯ˆ·æá†IàZ#YÉ `¶à˜yÞõ˜®½¦.gF0[p̼̳“À®Þ6FLùµz6úÞ¯ôÔz¾Ñ6Vòcž>æwäIøFÛXÎz6ú˜]6ćüÛ±­ÍFrô8_ljb¶àô³÷æ´=7¼ÊŸ `¶àp´öÁw Êpµm/ª}ð/ÕU˜-øK`U…‘æ/—Žó>,zÌ3¸xœO\{V)g³§ÌíY•åã|âê_.g³§ÌÇ®®0¸ñXý>ç·Ô³ÑÇðÓÐ_<à'nýñàw'ƒž>…wHÝQÎ[½–â¡Ç8Ûxʾ"UG9oýõò‘‡8ÛxÌ>wñâq¿ÜÎ*½µâqÇ8ÛxÊÞ3¶|Ü/+„+½xÜ1Î6³/cÏlÖrÝ-S—®¼ñûpîù_›,çüZ½_¿tºÞ AÌü°SSÊhííãþ|¤O[K~þ¥‡oÔwW ‚c¥t|Q¶\-×O»^Q–O³§Ìû¨Æ$ð’WØíâ ~Y®MîÙècøÍòh= ?æ×Q~гÑÇüûy>›„£Éz6ú”ÿpˆùǵ½ÎîýtñÆÓºå×<„Ù‚CìqÚ£“ÀÕÇÉbæŽ!ôbdÀÆÄí/q•·?‡UÎ X6Ø”wÓc¸õqú9Û0ÖàÙècøÃïªõ$|«?]Ìz6úfÈ“ð­.q)?êÙèSþ½ëqª˜¾w޶EŽÓoŸi„cÊz6úôûýVã­Æ} %Ì2Z›KˆGqñË ðjX–Sôðº [E4§Š\æûÓ’ê\@ HÕèw_×%´~½„×½ÝÂÅéR‘½Ÿj*ž‘p ±*Ý‚ Œ×⪖-€­¤:èýàUñtr½›*¶Np l.!ÕñÙ*ríýbV©"×}››½xçñ1e¯f@Ì‚‡å¸*LW;òÅÌf ™·aÖc¸:¦”ÂlÁ)ó¾©1 ì]øàßÿŸkõlô1üè·?Ôz¾Õ…/æ=}Ì?-'á[]øb~гÑÇüó0">ä?ÜÔna×vÓ²ç×<„Ù‚¿"ÞÚm»Ä$pµ‘,g0[p̼îzLWÉbf³ÇÌÛÜnÛ‹™OÜjƒ÷ŸtK×6êÙèSø½«m—ž„oµåü˜g£ù÷ò$|«m,æ=}̸®¶]zÿ4Æ¡ûWŸÛ›,ÛµÍÊãwãö·Ï äóL߇㡕z|9ß{»Ï[öôf)Í%|Ån7]%(!k¼»JxÝK@¿4ß.¥ù¥yS6—È8<Ü U$”ÝYT'&^›Kˆõ0>ÜUõ0MÓ}üTÞa7]>ïÄlÁ_o÷ÑÆ&«Ó/Ê™Ì3Ï»“ÀÙ0Pwf³ÇÌËeIw/&]^a·hðûpíàž>…?fÄ“ð­Yåü˜g£ù×ò$|kÖE1?èÙèS~ÿÑ/­ùçÍ/m¿’ñ‹ƒÜ6,ù=/Í%„Z˜Ï¹7úH”Ð~— KxÝKPm¤?]ªþl.!VåáÀH”Ð~›P<¥àØ\B¨‡e¸l §*!Ôƒü®RS­ÿá÷ÉpŸÉö×Û)„Ù‚¿"ö›Y©0 \í”3··ë¬dpÌ<îzLΔҬÕbf³ÇÌÓÜž©[Ì|âÖdÕàý¸[ºm¢ž>…÷·­'á[ÝŽr~̳ÑÇüËyþsÁL@~гѧü—»œÂ‡üû臾ª/üëöõ³9ãõš‡0[pˆ½O~6Ÿ “ÀÕ— ¿î¸{hj=‡¦†sÍÆý'”¿lÔþ“OãXŸÁÉ1¦Pd¶àx¤æYIàêŒÛâÙ‰`¶à”ÙÏ•Ta8›h{ߘ,ú÷d˜´±îÙècøe¾¯5íð$|ö&D“ôlô1¿[ OÂgoB4ùAÏF󯈎éWßã¯u®Ã‰Ý!®x³§ÐksÙà “ÀµN{%3€Ù‚cæmÓc¸Öi/gF0[p̼ÏjK¹môÔ#Ͼًs¶ñÜ/œÑz¾ÑO¯¤Ç<}Ì~|BëIøÆðf9?èÙèCþcXÄûüó÷É?àO•þú:zû™I’.w̲Á~{øUì*L×ú½7ü³€uƒƒ-8TÍ<ÌzL׺ÇÅ“ÂlÁ)óÞ|$¨dö¸±|.ú5{=ƒ{6ú~œïOž„oÌo*çýÿÓÚ¿ìʲ#ךp¿žB}C-øýÒ.êü@ ª'HHkÂ,)B‰óüÿŽ ;I7ÍÈa§¥ÄÖúÆŒ1H§óîìä£ÿixü¦ÏÓÔýƒ<;ùäÿ<>ú_Âu Ú„Í6]ðyŠgÙGÛK¸ ¡ &«dÝ3³Žž×³&k›X래=püÙÛ´ZkE[¸°`;ÆUülf‹j «¤ ç%í¸Pšôéþã»h’@ž|2¿ïÝÉ‘€ÕÁk½À˜=pòîÖèÍŒo½ÆêeŽñìä£ÿÝ^߬—ùž­2Öž–j™#0{àèù ÌHðÆÖêz™ƒ<;ùä?[ßm ¼ó7?ÏÒ<Ƴ“Oæ×Ý^x+öþ}¼5ïQÏãÙÉßþ—¡i}¸êÿæõÕª”g'Ÿü7­+þ·¢ÿûmóÐ5ŸÝ|:fþ1ž|ô?Žå*s‹ k÷}!ðS ÀgLû,ƒÃ {baL_¦œº ãxLÁtUGT€½)ƒ½œEêÉ`ÝVó(Á¶|àý³õ/ïÅ@0{àÛ÷ºæ!†&«Ý¾ªgf=ö½™uϬv{ªž˜=pò¼Ý0 Øê­Ü|¸á`Élc<;ùhþ:}×Ë“à­ÞJÕ?ȳ“¿ýoCÓÕ™Uÿ7o­2Õü£<;ùä?rëåoÿÇlok{_¸ô†Åª8³~EØþ¸I“€ÕéF ÿ”0¼¯ü Ên<óOÚ»ñ@ËìcI-G?LVg«µÙGÏk¶¡«&¯y`å~¦È‡uï9ÙyvòÉü‰àôĽlŠ{g½ïMÚØÇVwÑ좓ïuBøÐÂ-Jãöý.…«A] •Ócß¿â~w÷µAáû÷ÈïëÎó*Àå×Fjê€c ¬Ë£µÂXv°¯Èîý0 XnHø§„ÛS¯2^÷§ò#”w©ùGëwXYIÙC¬zIõ³±¤–n”è§\ÛCX­—ý(ãhò”.˜üØ9ø¥5ºù÷ßZRœg'ͯÂð$øÇ˜¨Ç?ȳ“þ·âIð1Qg'ŸüoÂßþ§Õ¾½ã}YüÞñ¼C0{àÛö´…ÍwÁ$`µy”ðO w¼‰öð&:ÆVúMÓcŠ›íåæjüãß—~˜¬¶×Õ*‡Àì“çóì†IÀV3}ñû(š”g'Íá´^žo5ÓUÿ ÏN>ú?7ˆ'Á[ÍtÕ?ȳ“¿ýÏÃXN=vøß†ð÷Õ9¸p øÇùùÌC0{àÛö6ŽæÍ¨LVg³$ü§ÝcÿùgG÷ß`£™ì/ ×£¹`uÒ«Z˜=pòÜÏÒ“]Ÿqsï7¾LùÚŒ³Æçp2¡—'Á[›ÄªîAž|ô¿,O‚·öIUýƒ<;ùäÿ\>ú?ÂÝÚêfØó‚ÏM<ïÌ8Ú>Ãö¦.˜¬ö‘%üSÂí£Œw}F{«Î·QÆüø Ë[bì÷ÁøŽ¦~˜¦åùÌC0{àW„×ò6j &kcËþS¿N΂ƒ=pŒfßúa°¶ÐU¯Ì8zþœ®ì„IÀË3°âºù°$5(ÏN>™†^ž?>Ÿ¥ÿÏN>ú?wˆ'Á[ãëþAžüí²Íbüí>ÚÒ)Àçz<ŸyfmŸáðvLVɪ熉ͺg¾=/ ³¢UÏKÃÜdÕ3³NžíYQÅó—YÉ/ÏÆÍÛóÙFyvòÑü·YÑžoµUÿ ÏN>úÿ6+Úã?Ÿ•TÚÆªg'ŸüMÿ²}ýv¢w [Ï!\Ò0&ÿ ÏN>úŸ×r×y“ k°Tø)ú¶‚g­'ü#Ø­£\6P„£%î«N°»bk¶k¸K!æ°oæºò>_ðûøÇãEŠÀì£ñ#¼…»`°Úó¨zF`öÀÑóio÷­{>¿Ìœ7{F`öÀɳ}´â¹é6æÈŸb0„òìäïß¿áéV'ý—ƒ(3füŠðÜ4P·ÝÖOªʳ“OþÃQ†®ðHÀê¢G½Ì³ëC[aöÀñg_¿ªž× Åxl½>9Û³ŽE5.PQ“à ý=UäÙÉ'ÿáCª]á‘€Õ SOþ,·Hô$7 ösR­3üJ°ã9¹`u}¯úx#0{àäyëféɮƢÞÏ“,hgÏcˆá‚'Á[KzU÷ ÏN>óßÿ¤€ÕjS}) 0{àäy³Ÿ”ºç­e‡zä—M8Ƴ“æ—¦ú.qzâVu«ºÇpöá™wèa!Á[ë×Õ‡äÙÉ'ÿñZŠ.>ú_F ×DÄ®®Ïžwfm‡…›ÞZCOÜ ­Zå1œ}xòÞ0V‘Á‘€Õ—C½¼˜=pò|4=&ÕÌ6ûj¨zf¬¾\ª™!0{àèy·ŒÕ=ïM§¶",âyvòÉ<„Ó·Ú—º{g½ååP=Þ³!¢ò¨U½c8ûðèýl:mV5¿¯á´žÚ¸†“Æç&æÓ³Áì_>ì—©„IÀjãX÷ Àì£çíì‡IÀjãXõŒÀì£ç}±_UÏl5Š7¿ˆ'åÙÉ'ógS£.y¼Õ0Öýc<;ùèÿ žoµUÿ ÏN>ùß<¬£ßhóå}ïÛÅ?—÷m¹Beþ»Â¶á*‚í×ðþ‘F32Ÿû°ä­Î‡µ_füºáy°ß.&«ÍtÕsË\VÕ3GÏËÔ“€ÕfºêÙ'ÏYdz&[­óÍÏCÞºà<;ùh~œž¸Õ6WÝc8ûðè}[œž¸Õ0W½c8ûðäýl1ÔÌ{Ød¦nk §†ÏÏ%úù³Áì_ßë‚IÀê¶–ªç#»Ï©f=_—øwÁ$`u[KÕ3³Nž÷µ&/ÏÀŠgãæŸ+¾8ÏNþ6? ÓŽð$xk¯AÍ?ʳ“þ¯½< ÞZñ¯úyvòÉÿq"|ô¿Úß~8ÂÑÆó|ØÎŸyfm¯öW' ˜¬u|ÏÌ8zÞìï7Ô=oöWꞘ=pô¼Ûßo¨{Þ¿|?¡|6"ìâÙyvòÉ|ËÁõ§'nty÷Î>³Óû¾à?ÿé†çõ¿ Ìøá°ñ® &k^Å3³¾ö2læÕ+ÇàqÝmf|Õ2Ïú_‡ áƒÿý×¼¯æõcýÀã8?&8@˜=ðë†0)Ô“€Õ¡ªgf=ŸS?LVg„ªž˜=pò¼ÏÝ0 Øš¹ùuÍŸmœg'›_® Ƚ< ޚȨùGyvòÑÿ8C< ޚȨúyvòɸϯ—þçðnyô|¿}Ì!°úKáü_›(ÏN>™ûH{y¼Õí¨ûÇxvò·ÿm8!ž¿CÊš”g'ýëˆðÑÿtÚ†{€—y~>óÌ8Úž6­I˜¬NV=#0{àèyYûað£ÐìÙGÏk¶û«&/Ætáͯ‡x¶Až|2&zy¼5]X÷ñìä£ÿmƒx¼5]Xõòìä£ÿ½moLÍÿa¯òÝæíùÄ(ãè+¢_î´·`°Ú<ÖýÚß•Rpô<Û¥ª{ž³OC­½ž˜=pô¼d¥j…IÀ«Ñ*Þü*zl(ÏN>™ßv„'Á[­bÝ?Ƴ“þצRÕý¯M…ªûyvòÑÿÖôQªºÿ0£.û¾ÏçñÈ,;Øèy·o*`°:§QuŒÀì£çcé‡IÀêœFÕ3³Nž³¤Za°5•qñû¸‹äÙÉGóg¸Dª—'Á[SUÿ ÏNþö+ēୠš”g'ýM—HÕýoƒÙû=‡Ãñ|æ!˜=p´½…E¯.˜¬õ~ÏëÙ ³Žž÷­&ksuÏÌ8z>²“&­0 ؘʈü¼ˆgäÙÉ'ó{ËÇw žotzÿÏN>úÏ¿œÔÁ“àNoÝ?ȳ“kâw³Þ|Cß» õ÷ÏM}¹BeAý«ÂûFêÂ~•Áñkš¾˜X)ƒ¿ø5›3¯tÂßK¿oø}Jfm¯ÙóV˜¬uÂÏÌ8zÞ‡~˜¬uÂ래=púÙËiö#¦ ž‹Ÿ ÀìSQ­§ÃóÚ²zùùÑåÅyvòÑü1ŒÝÉ‘€ÕNTµÀÁœ6­8'Ïa[kof$xc˜T/sg'ýŸöqz™_°6ó[/sfœùßÌ {¥Ì·– óȇ>äæ1ž|2¿ÏžðÆÏgrûÿ> Þê{×òCyvòÑÿØtU`ÝÿÅ[ýÞªg'Ÿüï-þUÿ󸛓çg8Æ8á^©ÔfB0{àÛö<Ù÷0 XíW=OöÙuÏ=Ïs?LÞµF¶êÙ'χyÕŸâùh¹jïæ§á|>Û(ÏN>šÏ$vàôÄ­nEÕ=†³Þþ®^œž¸1[^÷Žáìã÷kƼ—æÏ0%ô8}Ù”¿L—ÀþéTÉ>*À^;‚%Œ¡ºyzòÖñŒ‚ÿ)øÆS*ãù9¥2Ä Ñ_ÀN>&8–k] þÑ)ï©C(ÏN>ùÿr–½+€3Ì <º_ÆízçmÀ ìVˆ1œaûX¿ …G·£Iá§Tø6Éýo¿ÿç÷ëÿõ4ýÛßþñûš¡>‡0C}n­*ßžÉå-2®Y VØ­pÈz]³Ù¯@Bá1)ØU1qv+Ä®k(ûbÓb/,/üÜÆÂì£ñé´—´%LVçÇꞘ=pô¼ ý0 XªzF`öÀÉsØñÑ“€­i‹ÿìÍ;°(ÏN>š_‡áIðÖ´NÕ?ȳ“þ·âIðÖ´NÕ?ȳ“Oþ›fµjö·c)ûÿòÙY¼.ãó‘‡`öÀ¯‡ïuÁ$`µ¬{`öÀ·ç}úa°ÚFÖúÏ/”íàIðÖ‘ªg'Ÿü‡WH/ûŸ‡}1úÉË0\ð²<Ÿyf|۞ǰó¿ &+ýdÅ3³Žž§¹&+ýdÅ3³Nž£&ëÝãÄobúåÙÉGó-_Õ+qzâzçXqáìã÷eEpzâzÇXñŽáìã÷u˜þ6¿L§uýÛòÞý†ÇM å!˜=püÙó—S žnø?Ù¿"¼:,¯Fo])(€e›ù]»Ã"«ï°zoG7Ì8z^¬£‚Jg7µ}(e °ì`“ß½?,ð§í^zËÙGÏëh-)…|Áú0,ñ§F <;ùd~ìbtSnü\¥ugžŒoåÚXCp$x}ü©<Ƴ“OþÃà½ù‘à­ŽZ½ô1ž|ô¿íP~$xýp©Rþ ÏN>ù?¡üHðúöE¥üAž|ô¿gW ùíamº÷ïßùmáÖbëdî<^ýÏštøÌ!À^WØA îF“ÂO©ÐzÂøølÅ9³ Ïrwfg’¨BŒr@ “¾ +°[!å–‡úîŽ%lËW‡eá(äü¹×6ï„B0{àÛøqEד€ÕaJÕ3³Žž·±&ïÚaÕ3³NžÃ®ÿ.˜¼}Ö›?Æç;åÙÉGó×j_/O‚·úlUÿ ÏN>ú?fˆ'Á[}–ªg'Ÿüg¾ìà?/ûc¸Ðæ ~ßÑÿ\ô›+Tz ß/ø½¶­AáŸÿçÿù_ûGåŽàó*Æcø5Mö¤ãò‰`C ËöYó“Q%LVg•$üSÂí©¿wH_÷§ò#ê¼í?Z½¸fù?Êyˆÿó¶Ù ûàiYŸÏ;³¾mÏ{¸×ª &« ¤„J¸ã}t†÷Ñ>·ê|yż·ð¤™‹„ù5E%~ŽñæFy%þ Vëj•C`öÀÑó™]¥Ö “€­fúæÃ-j©™AyvòÉü¶!< Þj¦ëþ1žüívˆ'Á[ÍtÍ?ʳ“þÇ©¼È¦Ãÿ:› Z†pvYæóùÌC0{àÛöº„T]0 Xm$%üSÂí¯™ãlîg«Î·×̘_Áù‘˜í×e5~Žñ¯K?LVÛëj•C`öÀÉó¹uÃ$`«™¾ùm{63(ÏN>šß–áIðV3]õòìä£ÿ}…x¼ÕLWýƒ<;ùèÿ<Ú?Â[N]E §]—uÄ#Àì£ës²wOJ˜¬®¢T=#0{àÛó6Ìý0 X]E©y†`öÀɳ½pT·œN|*K'7>å›qœ}x4>†‹^{y¼µpRuòìä£ÿi…x¼µpRõòìä£ÿ9\ÛËßþp8~Òzáá¬ërÌÇóqGXv°·çc›ù»`°Úñ•ðO ·Þ»©þþB´ê|:|D¦1…¿ý>ØÇø©&«}ðj…C`öÀÉón;êž÷¦¢›—]G”g'ÍŸSÓÐCò$x«ë]õòìäoÿç0C< þóÀLýþQž|òü¿¦!ÜÞ«vÂÃiÚuš Ÿ ÌøuÃãbï:“0 Xí„W=ëØ ³Žž§­&«½ðªgf=ÏãÜ “€­þ÷Í/ù}'ž|2Ÿ}²ƒ'Á[ýﺌg'ý/;Ä“à­þwÕ?ȳ“þ×iGøÛÿ|„vN›Æ¿v¯ŸQHþÌC0{àW„þò.˜¬u€ ø§„;†ǵխYçÛâ³skÊâ?³•§Vìïø—k®§ &J{]­rÌ8y¶®|Ö,——’•°ˆÏcÞ„qöáÑx>EÕÁ“àîwÝ=ȳ“þ¯)ž^žoLÝ×ýƒ<;ùèÎ>­ÔÁGÿ«ù9ªå}­å>7ñ¼#0{àh{[Ìî&« ¤„ÿTàoWª}þ™yw¾ Çhö­&kS1õê€Àì£ç#|ƒ¾ &/ÏÀd/íæ×ð¥^&ʳ“Oæ÷–#åO‚ŸÏR‡Œg'ÿò{L%|û”à| ¬Ÿnݘ  ìˆEx†ºH<¦Z~Jô#¶Šö‘ÎÅᬠ¼{j3Èóÿ¹¿_ÎmõUFPà.u·íô:Hü‰ý9£ž`¯@Ì`\Ê5óž ¶}+›ùF ‡ô×ý8ž/bf|ûÞŽ±lÈ,˜¬ÍðO £_Óøò”ÓVæŸ4¿§ZfKê4oÞUJêÌN”ÖÆÛÕÚ‰Àì“çl>²&?&s¿Œ´.þÎçHåÙÉßæ÷!»¼½ƒ'Á?&s;ü£<;ùèürónÿ1»ùöüƒ<;ùä?»y·ƒ¿ýÿõŸÊñú—WÚ´\ï´sßž¯e\Ý w Ç6—M $ãë&…ŸR¡oƒJªLǶ–;Ìû¢„b”û*PxLÛöU)XÝ 1‡cÜ0…;‡3ü„ɨ“÷&€mxßGÇ °WàÎrÛX“ «:• ?¥Bß™‘) ýìVˆQ_6ÑõEy)<¦Ãú*¬Àn…”ÃZn ë¨÷ÖÏæ‹7–kBc^r…Jmúª°¯×ý ÷|ÄôkœFs£Ë5 ܦéÑUaöÀ¯oæÅNLVÇþS¿N°¿ÿ™ù9A-ŽÑÌG?LV‡ Õê€Àì£çëæ.˜¼>+&”n~}lÇyvòÉüQŽœx¼± Fññìä£ÿõ„x¼± ¦îäÙÉGÿÛRŽœ:üÏGx“¨méàåÜŸÏ<³¾mÏg8Û“€ÕF²êÙßž—aé‡IÀj#Yó Áì“çpøµ &[mãůïÿ‘?Û(ÏN>šÃÉ×^žoµUÿ ÏN>úŸVˆ'Á[mcÕ?ȳ“þçÁoûë°ÚÝäõ‚ý€é‘‡`öÀ·ëuí5 “€Õ6²êÙGÏÓÔ“€Õ6²êÙ'Ï»Ýç¯{Þ[v¿ßü>U¸d¶1ž|4?OMÝ~ɓ୦±êäÙÉGÿù˜­ƒ'Á[mcÕ?ȳ“Oþ³üí[¿ìê‘Ïà}Ï<³N?{µáý†Wù³˜=ð+Â_¶@µ{n˜Ï©ÕÑͲƒŽ·Áv,ã"«¹ZÊÌ8ýló;ÊŸëT?ð²ÉŸ ÀìSQÙó™Õº¹™·gÔ«&À²ƒ~÷†%Õ2Þí#õª‰Àì¥ç® "=«UëuþM—V˜=pòœ]ÒZIHÀVÿêæßòþʳ“Oæ³Ó­µ…lýñ›_iãÙÉ'óáôEox$x«sY/|Œg'ýcÓœ¾Ìoýýjùƒ<;ùäîo6HÀŸ?^ùô`½µC`öÀÉóqtÃ$`ãÃ{‘ßNYàÏN>š?è!Á[£©êòìä“ÿ/Û{ø³é,wýyvòÉÿ‚TzâVzÕÚáìÓ÷uóÕ½i°–ý>4MÄÔ²¿ðÏ_Ÿú³qöáÑû8LÍ·œô (lŸK òw ³޶·ðeñ.˜¬á¬z¾]0{àèùø²3¶Ùó‘ݵôzF`öÀÉsx-wÁ$àåXñlÜü>Š'äÙÉGó¡YîÅé‰ÏG¤Ý=†³¿½¡YìÅé‰[gìjÞAœ}xô>f;T;ø`~þ5KyAÌ·Óqá…ºçGàÞžê`¯Àë8‡ !`íò-~J®±LYŒ'öØÉߌCÄj/É)Ü\±OÃãª{füŠpÓþlÅvÚ½µåÙÉ'ÿ›y¿S Xë$(ÉïÞèö½û¯³Ž?}<úaðÃwóƒ‚Àì£çi6¯eª{¾àUï]D>\ »$Û ÏN>™­c/O‚7zŠŒg'ý/Ä“àNFÝ?ȳ“Oþ×–‹ êþVÓßÛ>ð¾‰gÙGÛ «ÚLÖf¥ëž·l¦¢f=ïc?LÖ–¡êž˜=púÙS9;òí“÷Ëv)„{—²w1¬Àn…TrÛîˆ`kYCºù9|#k¡@ž|2¿—sTMñ‘P°ºÂ¥ÂO©ÐõÅâø/Ï`·BŒòO¤(HðÆq½*<;ùäÿ$¡`uí•öV`·BÌᜠIðÆJC½€<;ùäñ>¥Õûî§a)çedƒ>]ðlUÀ$`uhYó Áì£çÑ>lU÷<ÚGžêž˜=pòl¶R<7vŠüz>Ÿm”g'ÍOÓŠð$x«ã\õòìä£ÿ¹é°UÝÿÜtØ©îäÙÉ'ÿM‡­êþÏp‚]Û}?-^Ë!{æ˜=p´}†ãç]0 Xm$ëžOóLŠâ€oÏË8ôÃ$`mnÕ3³Nž³o`µÂ$`cïeäýùl£<;ùh~ ‡[zy¼Õ6Výƒ<;ùèž žol¬ûyvòÉö¬þö¿^ÛÔFr ð~,Ïg‚Ù¿"¼îÝ0 Xm$래=pô|ný0 Xm$«ž˜=ðíyFûÅPó|ÃVÛxñÇ žm”g'ŸÌïMïɓ୶±îãÙÉGÿãñ$x«m¬úyvòÑÿ47½jþ5|¿J¸“ýÇpÏg‚Ùß¶-œ&ê‚IÀêÄuÕ3³Žž÷±&«×UÏÌ8yÞ¶n˜¼óÕ?b¾åÙÉGóÇx < Þš¯®úyvòÑÿõÍ^žoÍWWýƒ<;ùäÂoûç´Mæ¼õ~Á‹ªC0{àÛõ9‡ö¢ &«ýߪgfœ~¶½çî¸Øu“¿ºŸe›Êɾ›´€IÀjZuÇÌ8zþ ’ÑB¾`u}¡Z7˜=pò¼oÝ0 x5†'7¿‰iq”g'ŸÌŸýµ…¬&W­äÌ8z^§ÉŒo ɪeòìä“û2Þz™_°ÞÍï³4ñìä“ù¦ûx žo…_÷ñìä£ÿm†* ÞZG«V~g'Ÿü7í¬âûÅO‚·þ~µú€<;ùä¿é:ãºÿë›)“6¯q^ð)_Ì8Ú>‡­&«óUÏÌ8ì|¿»Í§yÉùûç#5¹BeÛüw…%(ì÷Çv—_Ã0ö «s+ßsaöÀÉóVnòn÷¼5M©\ü4>ögã<;ùh~œœž¸5¡Ruáìã÷iFpzâƒ1Q^õŽáìÓ÷ø1«.>š?¦rú×oq]³IÓ{É8Îð(°[!¦p„…ì~ Ö9—Rá§Th=ðt|>|fQ¢?‚Ý 1ÊóH(|žÇªR°»îÆ!|•µ_áÎá¯ÿPî-þvfæ}ù­°¬û3\Ý wÓñe“s“ …ÇTI“ÂO©Ðü ðáúøÖªòíýt¬Æ5È—)¾ò@bqœå9ê¾Ò8˽Ì}•`¯@Êà('±ºB˜—pN–Ìáüþ±¾;'y‚Ù¿"ötÁ$`mH x`öÀÑóúå.¢fÏkvÕEeHP÷ŒÀìãÏÞ¦)–see¾êöú¼Z„ÙÇ¢ÚóâyIçê#˜È‡{»—Ì6Ƴ“Oæ÷¥;9°¶šPÀ?%ÜüvÜ®·ãp}µü Ù×Yÿõo~ÿËë÷ïÿný“ß^¥ëçUš—`™=p*©sEJšoŒ7•šŠñìä£ÿýè¬í©¬7MÌ8zn»Õ±^æùÅŠõav½ÌAž|òo_¯^/ó ~l%ýÛ¿ÿûïÿõ¯üúùãsfãÙÉ'óaã4Þ—Úþ> þ±öÑ•Ƴ“þÏâIð[žg'û_¾\”Ýa ÃNmGê<vÞŒ±ì`_‘ÝÌ=¸LV»ìuÇÌ8zžö~˜¬ö}«ž˜=pôŸm”g'ÍÏa¸Ð˓୶±êäÙÉGÿËñ$xëÝZõòìä“ÿì²á>ø_-cÈ_;p:‡]zç:?ÎO‚0{àW„óm“€ÕE\ ÿ©ÀÙZÿë÷dÑdWÿµþ öÀ1šéì‡IÀÚ1½zu@`öÀÑó¼œÝ0 x}Vú?ˆ'Á[Ýâªg'ýŸÙWÃ;øÛÿ6LeçúË6ÿi‡¦Ï=ܽ>Æpv+¼¢Â^öò›H(Xg>J…ŸR>?cªØçgúŸNˆ'Á?fÝzüƒ<;ùèÿóUØ~>ú¿ö¹köe¸àç'AA˜=p´½LæÌz“€µ{ÝógL'Ì8z¾n™ì‚IÀZ‡½îÙ'ÏáfÉ.˜lôÓ#ÿ¾-.ïg¢<;ùh~[Z6<< Þè§×ýƒ<;ùèÿº×±—'Áýôºg'ýgW{tà·ý3|xØœ]?ã”sÂ8%ͤÁì¸8·aÂH(˜3’…ÂO©à˜à5TZ&xÃ,>b…Ý ±@öT ¡ðé°Pµ„Ø­rØÊÏ_uT«M© _ï!}ŸýûçFÓ\ásh®ñ&Óå¯KƒÂ?ÿÏ?þó¿þö!±¯W½>®âÜÞ³7'|ß;ØÞLËš÷+@˜=ðë†Ç¥¼Ñ‚IÀjGLÂ?%ÜüûN®ëÚ?•¡Ìf˜ô[ës~ZŸ#•Õ¸š³Üõ²BàXV“=9_/« V;Õú‰Àì£çy4ç×ëž/øÑo,Ç„‘ߎ|L‹óìäÓïŸÍYÊeºà}e†ÀìS™…Ã¸í­œVï*6Œg'Ÿüæüp X›µ,àŸæ‡Uì)ß·„=o«T>Žá/_Ötz*ß’]n;•äÙÉGÿë—®mså»`m¹Þà 0{àä9;Ìe¶š»¢•ÌÖrWò—?~óç,* ȳ“æ¯+|zy¼1ñ\÷òìä£ÿ}‚x¼1ñ\÷òìä“ÿl³SûŸÏ©¼ýY>èW[`¨¾"˜=pò®³èª0$`µ#P¯ç ³³õzÀÑó96us«õ$ÜÖ•7=YkIãÆÃÍbi’ÄÙ‡'ã;Ä“à­9õº{Œg'û_‡†9ñÚÃrí ³Nž×rcF»çŸÏÀŠ'íæŸ¹á<;ùdþ€* þóF™ú+<ʳ“þÇ0'Þ› ÞêQTËäÙÉ'ÿÙöb$¿éËš@O~S6'?ù<;ùä?[èàoÿÛ&¤ÔqÜàí8žm&³~Exëféɪ}PÉþlûØóýy¦ÏØóh”ù6ôßÓEŸÝ<Ûê‚=pŒ~Úûa°Ú³«V7f=ÏöÅëuÏlõé.~Ÿ†ç+ åÙÉ'ó_.1oàIðÖ+¾îãÙÉGÿËñ$xëWõòìä£ÿµé ]³¿áHÉcßê—}Çã½ïøxoäL»§= ìV¸CØÇ¥<½Õ¤@BáÑn6)ü” ]3–Såøå⇾(a…åôåû¯}Q^ c>óÞW¥`v+ÄæyÆbg¸E\Ý~Á§\é`öÀÑøi®¦€IÀj÷CÂ*peCÇ~Ú×£(ÑðÍ1ØßF®FsÃj/¥V ˜=pôŸ¥ÿÏN>úŸš¾^[÷ñ ¥=þAž|ô?/冨fÿû¯¿ðÅ NÒŸãö|æA˜=ðë†×ÉÀK˜¬6’UÏëÜ³Žž·¥&?: Íž˜=pò|Ý0 x5ÚÆ›·`/™mŒg'͇ó½8=q«e¬ºÇpöáÑ{Ó·$ëÞ³O9*³šUïÎ> Þèê*ùa<;ùè¿í»uÿmߨûyvòÑÛw ªþ×u²;bS€Ct‡ ˜=ð+‡Ý’0 X}ÃÔ=ö«½î€£çíì‡IÀj#[õŒÀì£ç}1g`êž/Øj/þųòìä£yˆ¦mµ‹UïÍ.:ú÷LõâôÄ­±êÃÙ‡'ïÛ„ð·ùý:Ħ7\ÃËi\ÏçsÁìÓÏûõÕö|¹àÐÊ6³¾Kk¿Î¡až/Xƨ³Nžû½-#«ï°j9#0{àèùû#k'-ëåŒÀì“çµ?0°úÞ®–3³Nž³n­‘€WcÞææåPåÙÉGóç8v'G¶z+7Â<ȳ“ÏÌ·\MQ„G‚·&qª…òìä“ÿð1ÌÞüHðV§­^þÏNþö ” Þ83X-”g'ŸüïP~$x«ßZ+”g'Ÿüûâûü‹þ?6ÇÞºùrâ÷,èß?—ç ÍÆË‰ßOËGa»ŠðøõW‚c\½«À—ó–~§5l–¾÷¥zØ­ðŠ ÇŒ)Pxt|š~J…®Ûã ™D9ÙÓ%ª£<¾L8õEy|™ûé«R°»bç—I¨®¦a07Œ½Ÿé7¼=A˜=ð+«yÈ­€IÀêø¡î€ÙGÏ£}ÉCÝó¸•5¥Ù3³ŽžખÛÖ¿n|yìu‚qöáÉøñ$x«×Twñìä£ÿùËùõÿó—óã=þAž|ô¿|9¿ÝáÞÂ'µÔù¿pxyÚ߇7òç‚Ùß¶ç= º`°:VõŒÀìãÏ>ì›æ×ý‚÷SülfüJ°Ë³½ã¬ZTÌ8y¶ïµ/#«ÕË€Ù'Ïæ-*J1·\bñ÷‘—¼qöáÑø¹4ív“< Þš¸©ºyvòÉÃÞje?³ ik=·jeG`öÀ·çeX»Yz²«Q].ü†gqƒ8ûðÌ8TYHðÖ4U­²£<;ùè&$?¼•_µôAž|æqå7µm­­æwñÖ߯æòìä“ÿ­)¿šÿëÆPué:œUœÇpV15—Ëöö¼oöaõ&«³UÇ[?Ë6:ÞËù×fÃÙ2ÆÒë`ÙÁ&¿Ù(¼&/ÆÆÍ/â•€òìä£ù# Á{y¼5…Qõòìä£ÿsx¼µòTõòìä“ÿl‘¡ƒ¿ýÿÿç¨kƒÅó‚Ÿwr0{àÛö± c7LVÇ UÏË0wÃì£çuì‡IÀê¹êÙ'ÏÛÚ “€­±ñÅOƒ˜^EyvòÑü>ûÛË“à­înÕ?ȳ“þ÷ âIðÖá ªg'Ÿüï'ÂGÿm÷žM×ý óôürµC€½wçð¥÷Þ¤@BÁZ…/~J…ÖíÇõ­ˆÿÛý#Ø­£'P„‚µ_¯P¸»RÙ‘¹.…Ãùk5ßwP~ÞÃ1÷uÍ*«5ßÊOAa»¾ v¿††™ïÑÍÛÀòØuÂì_¶?\TÀ$`µ¡®{`öÀÑónî±îy·?ºX÷ŒÀì£çÃþÜcÝóñås‹_žÏ‹_ßÑbûâàÙÉ'ó_>÷ØÀ“à­ö¹îãÙÉGÿç—Ï=öø?³Ï-Ö·cÖýƒ<;ùÛÿuÀ¢¿í‡½êìÊÐí}µZþÀ(ãè+¢ö­‹LVgVê~·±föüe¥ûÛ}ç~)LŸâ˜~;¬Àn…Xróî‰ ÀêüPµä˜=púÙ‡][· ž'ù³æ>%Ì8ÕòewDSa“Pxv“ÂO©ð­÷ûo¿ÿç÷ëÿÕwý·¿ýã÷ýéî!t]Ï­UåÛ~¥å³_iMŰ„›æú­°[!ÈdÏ­V+á[Ó‹7?ÏÏWʳ“Oæçµ»*“€ÕVGÂ?%Ü\·«á3¦_~BöÓýÛŸßÿòúýû¿[ÿä· »~*l^^«ÝÐVÛ N%•}C­£¤IðÖDp½¦b<;ùèýraG_»¹f×2žÐ«V`·BÊ¡¡·S}b/XݲU}g"0{àìgælöØr?»fœŠÊ]ÖôÌà­Åê3òìä£ÿÍ>-U¯4üØëö·ÿ÷ßÿë_ùõójŸ“yg'ŸÌOÝ5ž¬:SU}^–lò;7­ôÕ+Ë—f y“à[W}ÁxvòÑ¿}Ò½^_ìçõú°ì`“ß/Šžò¾øG}ë)og'ŸüÛ'ý•o:iù]LÍ¡<;ùhþ˜ÊÆ¢'¼¶›Š¿O‚·¦F«ù<;ùè¿í¦€ºÿü¤¾²ôVõòìä“ÿìRû_Ɔ) pÍÀr„s=©Å„`öÀ·íejîK˜¬Ž<$ü§gõ×ïÿHÑ ƒ=pŒ¦eËx5š|ïv­£Z­Ì8yÎ6—µÂ$`ë,ÉÍ/¢ @yvòÑü²´\6Xð$xkpVõòìä£ÿu…x¼Õ_¯úyvòÑÿ6Žû_‡éóä©[ ÂmË9ÌÏg‚Ù¿"¼ïÝ0 XdÔ=‡Ù€.˜=püÙãpZ¯½}¸àQL{A0{àXTc˜3ë‚IÀÚûLñ Àì“çÓSÎV‡DÕê‰Àì£çi±w€V=_°5’¹ùéx6Ã(ÏN>™·—®ë•|²ë•Ù'ÏgÓÆW™ Þ½ÕËãÙÉGÿ³½äZ/ó¹iÉ3òa^83òìä“ù¦…¼‚'Áý6Å?Ƴ“þ—ª<$xk[Vµòƒ<;ùôûsbÿݶ|à𑈬ÍB`öÀ©ØÂ[½×vâ›Ö²êÕ~iZKªW{g'ŸüŸKwø$`­W¤Ôf=¯MK:õ̶¡ÿ“€µ^U=3fœ<¯æŽkÅóÚ²ã9òû&g'ÍïCËŽë‚'Áï–ºg'ý#Ä“àiíºg'ŸüïíŸö©”÷G®þ‚ס 0{àÛõ6„”]0 Xm#kž·!;AÕ ³ŽžÇ¥&«mdÕ3³NžíIÅs€­¦ñæÑÿAyvòÑ|ÛÖm@˜=ðm{¼ˆvÁ$`µ‘¬zF`öÀÑó4öÃ$`µ‘¬zF`öÀÉó¶uÃ$`«m¼ùçN9œg'ÍÏaHß˓୶±êäÙÉGÿËñ$x«ß[õòìäÓï_F³»^ð{úæñÌ"0{àTl넇7b×ß&«md=²Óî<×#àø³×Íž† ª×mÄÏF`öÀ±¨¶Ááyì>µ¨˜=pòµ®ÀHÀj`ÕrF`öÀÉóf°êå¼5p.~{ü}´Â ÏN>šßǦ–äIðÖ[¬êäÙÉ'ÿSÍ!«ó®Õ Àì“ç~–ž¬5ÙzãÓ&‹ÂÙ‡GãÇU¼5­Vvg'ŸüÏ’ ÞʯZú ÏN>ùß›¦ªù ô÷IðV籚ȳ“Oþ³=üí¦rÓò·ƒë×ÇöÖëscLW`·Â+*„Û%ûH(<¶¦6)ü” ðE;¦Š}ÑŽÇ »bœcx¬§¼@ä m¿à}z¾†!˜=p¬Gãé6Ì‹ êϬÀn…˜Ã4íÝ!’€Õ]Þþ)aøª ò'(W™Ò¾*´Ì8•ÔR^›ÑWÖóÜÿçIÀÚ©ÂúsŽÀì“çãì†IÀÆå‘¿ Óe8ÏN>š¿æÚzyücwog'ý¯+ē෼ËÚãäÙÉGÿ[ö-öþö¿,³yªp')×Ïwóg‚Ù¿"›.˜¬ÎIÔ=ÛçÜÏ=oC?LV'%ªž˜=pòœm¾j…IÀÖpüâÏq~Qž|4¿-§Í žo §«þAž|ôŒO‚·†ÓUÿ ÏN>ùG{ùÛÿ¶…“/ê1äÐ“ÜÆáx>óÌø¶½íáÅГ€Õ°„ÿTà¯w€ƒ=pŒæXúa°zx³Z˜=pò|žÝ0 x}V™ßG„'Á?f„»üc<;ùèýòáßÿköáÝðòìä£ÿ-»y¢ƒ¿ýïGX¹›´Æ=¼Ðöq˜žÏ<³¾mï§} ¦€IÀj#)áŸîx']{pö¡UçÛkæ3j?âƒ=ðÿ1¬ý0 xTV «U‚ÙGÏã`ÞwR÷|Á‹ÑLß|؇šš”g'ŸÌ¯+“à­fºîãÙɧ߿™]àùbgÑ3BXv°±Ì&û«æLVŸp ÿ”p{y\3ûÖªó¥œ>ÿñLágçZm°ƒMáo¾ wñÿ= ȳ“þçq÷ñKwöôdÕñ@õaXv°Éo˜ì‚IÀÖ àæ·YTg'Í/Ë‚ð$xëa«úyvòÑÿºB< ÞTýƒ<;ùè6„¿ýŸk8L«®o.žNñÄC0{àW„Í]9KOV]à”ìOÁÂgŠ N©éÐ>A€Ùe‹h³× «EXuI¶Z)–lô»Ïö:rÕð¯yZ_㋟§åÙ ¡<;ùdþ(בx¼±s^ññìä£ÿãË:tÿ‹¬ÃöøyvòÑÿ¹”ëÈÍþç÷âgº)¥Ö ¯^¶ÇN ÌøuÃgv©c+LV[H ÿ©À_w‡‚ƒ=ðÍ8Œý0 X;EU­Ì8yÞön˜|>+¶bÜüñØJ‚óìä£ùq,5ð$xk+NÕ?ȳ“þ§ âIð[>ìïñòìä“ÿìhwý¯³½¨±x}ßùxæ˜=p´½žörŠ„IÀê\„J¸cªðÚ?uÌ­:ߦ Ç·È4¤ø·¡ß{àÿ>öÃ$`uæ¨Zå˜=pò¼ÍÝ0 Øš0ºùý1;Šóìä£ù#¼ {y¼5aTõòìä£ÿs‚x¼5»\õòìä“ÿìã¡üí^ŽÙl¯Ãå}”Ó3ÁìoÛó:¯Ý0 Xm$%üSÂí¯™÷ÉâÏkælÕùöš™>¯™1Åø`ãß–~˜¬.W«³NžOó¸³âù,yL/þ³^˜73(ÏN>šß—ò¸sO‚·šéªg'ý+Ä“à­fºêäÙÉGÿgÖ¯ìàoÿË0Ø+Ç¿ååÏ<³~Ex-/L³`°:åS÷ Àì£çqë‡IÀê¬Õ3³Žž§iì†IÀ«1Ósóçðœ©@yvòÉü>#< Þšé©ûÇxvòÑÿ|@< þ1ÙßãäÙÉGÿKè öò·ÿuÞšÎYMsP8†åó¥Ž,®Àn…;…u Ñ~ †³Iá§T€O‹™*öi±·Ä4bVØ­ dA õ‡¾Š +°[!å5O] wû¼Û#ípKÁ1Çó¥ü¼tÃìoãû2mÝ0 X¡JøO®¬&îKÃÖÂj4Ý­aŽØ<Úz­0ÓykpÑuºøù=Í»~(ÏN>šßÂ}zyüøl¢Ûýƒ<;ùä« …Çȱ¯%†Ø­sسm Â • þ1ÁÔS“@ž|ôŸ¾ìÀCcº(íè÷k?öЯC®ÐsqÈz-|/çU˯á4»[ïÑÆû÷oãž¿P1–ìëbÇ!œëé‚IÀZÿ£êøs0¯“eæQ¢ºáì{A•W]Ý/À²ƒM~ó8‹bø(“”eäß_R«‚óìä£ù) zy¼Ñ*×ýƒ<;ùèþr¦Çÿœ0êÍrÝ?ȳ“OþÏ áoÿÓ?Ôæq ð~ÎÏ'‚Ù¿"¼š;Ð ˜¬¶uÏÌ8znø8|ÝóÊÚtÝ3³Žž0IØ“€£m¼øcÜŸÏ6ʳ“Oæ÷ò }O‚·ÚƺŒg'ÿ&Ù´µÕsºàIôF ˜=p,¶s7Ïé0 X[[-àŸî]8î¬ÊŸ ·3ÿd})aÎJ °Ì8•ÔᬠÇÜòò­>` ÏNþö?Ù/ˆ?úÃ'?V-ZŸnf=‡/Úw±ôd>Ê-2_?xzP@œ}x2Þ÷ò$øÇ"z—{Œg'ýÏÄ“à‹è=þAž|ò¿.û¿ï…œ´×b8uœÏï“0{àW„×½&« ¤„J8;ߨbˆ]°Žá_w5vÁ$`µ©®V8f=/Ù±ºV˜l5Ò7ŠFåÙÉ'óáŠÆ^žo5ÒuÿÏN>þþ5Ö˜µy°Ârã!ê,³ŽÅvÝ,‰Ûþr²§Ø@ž|ô¿…£ ]á‘€Õyjòלpr›}È£^g8þòÝ>!RÏl·ÏiÔŸfœ<Û'DÏ_Nh|­Ý|8Ș½ÆAž|4|9!ÒÀ“à­ÑzÕ?ȳ“þÏ/'DzüŸÙäñ øyvò·ÿuÈNˆtðùðq G#ûm Âp+…1&€+°[!¦0N ¦@BáÑp6)ü” }ØSºŽeãÝ—$*ƒü²}³/Çi+Úâ¾ê„ °W f0¦p‡°·ÕçÏÿy Ì›`¯À+   $¬ºT*ü” ]·ÇNy{¹o£3IT!Fy  «F* V`·BÌáœËN^Gë¯ñ:n¢.P_ð.¤½WfüºáëdHLV{ôUÏÌ8z^§~˜¬ö諞˜=pò¼Û‘ºç½i póë£#ŠóìäÓï?ËÑú—§û3‹¶¼ò(°[!á5m§pñÖp¤ZŠ ÏN>ùXèO„‚õ¶+~J…®kÄ› XíÀ숌+&@Bà±÷¢+T€½1ƒ)»¹GàÎà¯6ÎÞˆ±_ô²‰¡F³‹¾­ãtöÓ$hµå¬û†hvÑÑ÷ÔÐæ×}OY»[ÛQ÷ Ñ좓ï¬Ío¦IЧÑ`FC<ë°{bsh0»HX f=T€½1ƒ¥­Í¯g°d-®Ò¯g€ °W f°fm~@_oÛ~èõ>²ºç È¡×õ>ôºýŽ0ϦN‰—ƒýy·>J³‹~E:{k5Ó$huZTñ}ý4»èèû<š­NÖ}C4»èÛ÷8ØÂUÛlÍ&Fþy›>γ“æ¯#ÓÝ$¬I°z¨{bÓˆ °&€ê ìHl $3˜g{/ßyÑŸö9þ1š]t´>ŸåŒ¸I“ ÕVSñ}Úo Å7BGßëÐ$èQ›¡©û†hvÑÉw¶¡¬™&A¯FƒÞÇ?Ï:*À^À6Ž «Á¬g€ °W f°O˜ k[^=T€½)ƒlãKÀÁ´„©{SÞzIœÛcýÆ%Á~‰;‰éjP öƺBâ§”h]=ßÒvý öKÄ8·• !a­‰iU —`¿DÊâË=}YÌÛÞ´d?MKÇefá`¿Äż‡Ïµ$$¬ªõEâ§”h}ÌöÏcv¤8ó•ó¾_Á~‰çµ³ !aÕN­jáì—ˆYœCÓ*¾’ŲO‡1ï³ÃEOï‡!ïÑb4»èW¤˜ž°2 P]Ÿåà×]Ÿæmoší3›5ø> Ð|C4»èä;û}3M‚Ö;ÿ™@8ú¶dÖAö ÜüõÿÚ zç_É`¯@Ì`1ú„–*À^”ÁÖpµ¨–Áu—¾2óó¹‹ûCÏ«h0š]t´¾ìeOʤIÐjË©øÞ·~š]túåéM÷}KÀúnZ/x•?€ÙÇâZÃgïûh´²!@s Ñ좓ïÃSØýèÓµWSˆf}o³µ ¥ù¾h}M&ØÅr,À^ÀT´²D«ðÍ.:ùn8\ð%7zòÖ[])yŒg'Ÿù_úÓ#Aë`2ðÙ€‡}L€½1€}Ù ú-T€½É‚¹bæ›>7ñøB4»èXz WíkOoêŽV§Óµ‡ÃÙ‡'ïÙvËæäHÐ꛾^æÇlOBÔË¢“ïur·:Ÿ—K@ßï¥=ò¨{bçp@1ƒs.ß~›&_®]oã2ЉH‡û%R PIÐêÜNý1‚hvÑÉ÷ûŽ(:æ²Q)ñSJ´ÎíoŸ¹ý= 1~ô£÷W°_âŽsë/ ÊQkn즗é|¶%Í.:šBSÜ-@BÀzƒ×ݣ숌ZwHHš­ŽÙê¾!š]ôí{F›Uß7­.ST}c4»èè{ìgéÁZSôw…§§ÄÙ‡'ãa|Ñ-@BÀê+þAö Ä ¦¶>}=ƒ)ëQ+S~õ Pö Ä æ¬Oß#pgpNCšêªõŒ·‹þìÓÊŸ}ŒfýŠôºöÓ$hµg¬øFhvÑÑ÷¼4 Z]™«û†hvÑÑ÷6a÷Ñ$hkAîøÜÅ”?ë°{RaU¶[€„€Õ3V2Ø+3XwL€„€µBQÏ`¯@Ì`›GH d°ÿš?G Œ–óšJ›¦iÈÛ”fýºèås­/M‚V[ΪoŒf}@“ Õ–³î¢ÙE§_Î8ªóvÇM/£üåÍ.:•˜ËöÑÒÐG~yôKqž|4?…c™}Ñ‘ ÕÊ^/tˆf|‡]’ÝÁ‘°^oõ’GØ+3˜' A´:q[/{ˆf|/Xp$¬×z½ìQö ¤ ö¹?Aôj<=Q`Ûd {RçâKp™Vè°ªa=DT€½1ƒuÆHXàõ Pö ¤ ޏ3X‡pºê±G>Š×‰þ¿šüíÙb4»èÛú:[?M‚VgÂë¾!š]tô=M‚µ¦·î¢ÙE'ß›½ßLñ½¥•Re"< ,ÇóY‡Ø+˜›v;<=yk¼žÈ³“þ—âéÉ[ÛZêþAž|ò4mì©° aoÌ£Åü²?j½N@þÕëøÌ1\Ý ¯¨°—o& Öž¹Rá§ThÝ7º~önY”åJlg’ @ rlºBÉqlº†A©N¨{bÓ2a 1„)ôÀ´­c¤×éùBÅhvÑÑ»} Þš­uCßÍ.:ú^¾ÜƒÒî{É.©tCßÍ.:ú^³;Oši´ÑýH»,ÁìH¬3$@BÀè‚h€ìˆl&@BÀØI d€ °W f°g߱눜£yjð=?ü¡?²GÑ좣õs3Oí•4 Zm9ßÍ.úö½;@“ Õ–³ê£ÙEGßãl·ùußm5˜Q`C&X€½)€£©Í/HX ¦’(À^˜Átb$Œ‘§’*À^˜Á¼¬ÀÁ¹Læ†ã÷¥Úz_D€Ñì¢_‘ÞÍÍÎ%M‚V[NÅ÷—OwøFèè{=šý¶û†hvÑÑ÷ªzM‚6v '}~>ë°{RážónVƒ©d °W Z8ÂêC?ßô)öò`4»èW¢ÝÖ÷–î}½ôPö ¤ ÂÊX_‚$hµáSÊ~µ|¥ì:ó}BÁEëçòé/>v}=|KïóMù¤¤C‚ý1‰sr$A«Ýþz €hvÑÉwxõÑ‘xì,j“ø)%¾}ëß~ÿÏï×ÿþýÿôoûÇïë›Vo#ïoZ[«Ê·U‚å³J°fEñå`noe„%‚‘Cñðýó^ãõ°3W¨¬•|WØâÂl…þŸüçýí•oŒëU·Ž_ƒ}n푊°5޼ùã=’H/œg'ŸÌï˜ 뽬$ °W fpm¼­k=/—û%Rkyô½WâÀʃ„€õº¯W)T€½1ƒi^ ;ƒq?í®ÞrÑçúxU£4»èÛúx,ö¬DA“ ÕNAÿ”tû+aKo•?•_‘}Óý_ÿöç÷¿¼~ÿþïÖ?Z¿-jMå¹fËë\š­Î*Ôë)D³‹¾}OÃ`¯û¾éÇdÂßþýßÿ¯|7èÏÑ:,À^ÀñôäÍ|_ÏN>úË ….ÿc9šïòòìä£ÿëN¤n;€e /9íœÎ{IõMÏã|>Ÿ}ŒfýŠt¸&¤&AkgTJú§¤›‘×êâJþõ eüÉú¾´%+-Ä3»è˜÷ÖÔÒÚnZ¾c0š]t¬g“}–æ;»Äªr Py¾ š]tô=—³5fhô„ÕÌ øÏw8{,^¿ÿ#e3gg ›ÿ»è”Mv¹Xs²$èÇÁ/vXç[`¯@ `pzàÓ=]þ1œ}xò¾U‡­SBˆf|ŸæÑ>Í÷Ùr°. l;Õ숬#TqèÉêÍT{g'Ÿü‡ÕÛîIÇú”:€ °W eðåf½®·û$¿ +DT€½1ƒ}h9ÚXÏ`÷rN6E× ÛyšÆg#ŠÑì¢oëë4Ùݪ‚&A«¯žºïiÚûivÑÑ÷<4 ZíoÕ}C4»èäû8ûi´q›D˜Å³ °W põ9ºHX f=T€½1ƒõKÏ¡+ƒõË«»+T€½1ƒm˜!˜Á¶ÚkÇMo³h š]t´¾ö.Í‚&A«sûýSÒí«)ïµØ¿VUZuêŸÊÞRäg3š°‹ŽEpLM‚µ‘O½êA4»èä{ßûiôj,/D]ŒX`ö ÄÎð5ªnÖC=T€½wµ¼˜ k•¡š,À^”Á9BwÇ’ΪuܯóùórЉ\ŒfýŠtv0¬™&A«wÅ÷1õÓ좣ïõh´Úq¯û†hvÑÑ÷–Mp6Ó$h«¿~ |þWÞÕ„Ø+ëÝ$¬þº’(À^˜Á1`$>Orªªž*À^”Áz@wçÞøÀãž©ÚÂ9Ë´#Ð!Á~‰W”hü$_)ABâуn“ø)%°Oò¹~û%bœÇ‰JxtÌ;«.Á~‰˜Å¹”#Œž,Î_ã9—µS¼°Þ÷ã~èãý!ƒôªEivѯH{?M‚Ö¥%ýSÒ#û#Œì÷f{dÿ–8#ì¢ï"˜Æ IÐÚø¸^õ0š]tò½žý4 Ú'yÈGtö Ä®{š»HÃb%T€½1ƒë¾ânCÞEêÊ`¯@Ê`/ïèÉ`žÃr¦¶$÷þúó¶ËÛŒf}[Ÿ—ЂôÑ$hm|¬ø^ì¯(¾!:ú^ío!(¾Wû{Šoˆf|0=acPœøý1žÃyvòÑüÖt³~)@BÀ+  ìˆìM7Ì+ìÙýîõU8%T€½ÉB6–½3ø6àØ¯¥ÄexÓsI°_"fvS|OQà˜Ëiá¶ß@BâÑ’¶Iü”ðjSÅ>Pý–XËùÞÎRÅ%b¡œ*ABâÑÎwÖp\‚ýwË0–3Ñ}Ylk¸Ia_ÇX—éyÝJ³‹~E:œ:è£IÐê°¶ Jº}nàÝ }æŽVoOåñ˜±C°‹ŽE°M‚þ ®–îªÑ좣ïp…uLOx1†Õ7?ësDˆòìä“ù°xÖ-@BÀT+ €ìˆœ&@BÀT×3@Ø+2È®Jê¸38Žp¶Ò¼¯f¾–ÏwþvH°_â%Â#H0{5¥ÄO)ÑÚO|_x™lTùöFšÇ ]^Ø/ å

      cGd§5ÖþЇÐì¢3ßg?M‚^–; „ÏþæE °W 6ou °Zn%P€½)ƒmƒHX-·’(À^”AÖw툜süïú‘x~oÕ'Á~‰Ìˆ½b¾FzD³‹~%z÷›oÛKSJü”艭b®‘‰r‡ewuB%R¡„KúúŠ”­®þôOI·o¡xŸ1þtnÖVs l„]tVåñßÞçbnšGR[7X‚ýÉH¹Œ*ƒŒð2ÊÆ €Ù§"\¦þ @‚V7“(M:B³‹Î|·í>Ó ÅžC,‚'A«ƒ‚þ)iÏØJWi[A6ØEg`ïƒÒê¶E°gþa`¯@ |º[€„€µHÉ`¯@–ÁÖ_…HÐê0Ui¶š]tò½ý4 ÚFm” °W `j k˜RùAö dlPˆ$¬ºV0ö dœÎ÷ú$¬!¾"(À^”ÁÑ4Ç^Ë`üe/ˆ^»6ÖMô!–ì+²ƒÝ+h´úâ)蟒>Ѩb~÷¶Á.:Àh¿»•í÷§Réš]tò=ÙïnÅ÷ÔôæŒËsR`¯@f¡¼µFpDúE‡Ð좳¢kzãjÖ›ÞwZéaìÈ2°/ ’ Õ‡‚þ)鎙·ýj9ÇVo-çùÜ= aŠ »wº§ IX/|¥‚ìÈ2(·ÞvTÃìÞËZ¬4AÍ.:ùþrHº/¸eéÿó$èÕ˜tˆû k(À^À ñôä­‘§’Ƴ“Ï~ÿb6àg¤wY÷š]t*9{¯€é «íEÿùûîú'ØgÉŒÎJ±¥¥ e­ÔjP€½Y›S`·—Ôúµf»ª&M‚Ö¦rJúO…®½]¡?Â.:Æ3æ6P%ž9Û†]i`•jÑì¢3ßG?M‚^Ÿ©Éç) Ì«hPö ¤Æ–/–$öçƒÕ“(À^”Av`¬G€„ÀcÌÚ—(À^,ƒˆ¬£¹“ÿ½ëMoúŠ6¢ÙEGë«ý]º’&A«-§â¡ÙE'ßóÒO“ Õ–SñÐì¢3ßææ}Õw¹uþ˃öM<ë¨{RM3-HX ¦’(À^”A¶=¥G€„€Õ`*€ìH„‰n˜AX—·6ŽÏï§õ£p}ZhL!À ìVx%…r`Ñ&ABâÑ”¶Iü”è]’¶Šy—dØA/ì—H…r4m¡W å(ûö½Õ–`¿DÊâË×Ç;³ŸS»8×m`Ûò^€y¼¬˜=ð+Áö˜¿ IÐj§ JØÃò§ò´«¬?Ù´áòÌ.:•–ý™d­´¦´è[9ЯÕQ„f|gw[7Ó$hãØ±2 °W `‡H þj˜{RË 0¾µ @ö ¤ Ö–}–¥ÀÕNJã÷ýº)4¸Ëð¨l{ù*±^mörÜ%1ýÚÖ´¨öÖ¹®Sاé|´D Í.úémî§IÐjû]Ð*ô÷Ynð°‹Nñ|¹»²#ž}1›y¥Z 4»èÌwy°Ç÷Y´î_†‰Q`É?œà`¯@ \ÔÙ-@BÀš.P2Ø+28›¦L” ‚À¦¯j€ìÈ,|ÞòÖÝžË8ÜÛöz$Ø/‘9ÍÑé¢-Bhvѱ~•2Ì&oz{vÁöØ%ñSJôm?S)à¿‚ýYœKi’ Õ7j½B4»èä{œÁèHH<öu¶&¸û%²,Öþ$IÐêzŠRš]tæûpGgvÑ¢ûrÔäKcÎQ¼RQö dl «_¢e€ °W eðeò /ƒ/§ú2Ø+2hú¸Y5ƒù×Z^».¤5ÀÇ(¦ÿ0˜=ð+Ák?M‚ֶ䪮š]tüå[Øw¥úÞnz=Ä/‡hvѯDo.ß[|g,Ý%Ñì¢3ßGj$h55­¼š]tò=Ný©‘ —çß.Úµ(°=G½¸{²vH€„Àø¬9]`ìÈ20Ói•<Í*¤T~„f|‡}4 Úª9Qàý!½gÁƒìÈ8 šCBàSsf¨òƒìÈ28¡IX!jõ`¯@Ê`ž!.Р'oý}%BŒg'Ÿùß Àaï³Ý/zZGÙˆ"4»èdý°g< š­Î®h¾š]tômo稻N#âÚ´HÝ3À²ƒM~{6Iqhk&$ ˆ¡¸{RM“AOOÞšQÀxvòÙïãúymˆtÜô!wÍ.:+¹­Ÿ&A«½cÍ7@³‹N¾'o‘kÞJ©³ {² 6¯ÀÞ_$huˆ¡T„f|ÏöÌ€â{n—ßó0Éš °W  if  !`õе 0ö ¤ –¦¢’Á’†gÊŠ¶’(À^”Á:C×rø½Û¼qo½7îM‰®{cümƒÄ÷«³îÍç~—æò+¬¨«]ýë|ü±½ÿdÖ˜a0{àW‚×~š­võ5×[?Í.:ùÎÖ­ši´º1NñÐ좓ï°ÜÖG“ ­ýpQ |ŠvɬƒìÈ(÷œ·°zŽZ˜{Rk¹ç¼/ƒµÜñÝ—(À^”A¶#¸G f°Îiät‡øeÈxMlcص>¦`v+ÄÖeÄH(A¿€„€±OA `¯@–Á Ä Æ5ms¨Í€-½¯“hH!š]t´~}¼«&A«sOýSÒí³wûzÍÞ­:_$Óð¼²è-a/ý(E€Ð©² €fš­Nƒ)U¡ÙEg¾~šmÍ~Eýï/T€½)€pv¯[€„€5û¥d °W ep6­<)œiò|‚2Ø+epB1ƒ=\¤ 6âk ÇyÝDÑì¢_‰>úi´ÚrôOI·¿~Þëûûç5Ôªóíõ󙆼ÌKÔ"èTöÛG)û T<fœy^ûi´ÕnGp`|ÎcìH,OOÞjµ•0ž|òŸ-=ö°Úl%P€½Y$pe°ÿÕíµ×=¶‹>†çôH³‹~Ez·×{ š­Nº)¾š]tò}س͊ïì¦æµß7B³‹N¾íåÅvÚ¦Ì2E~>ó0ÏN>3¿B$¬)"-L€½1ƒiØ ÖQ=T€½)ƒ±œoíËà´ÛÜý¢åUf­_ßÒí£IÐj«Y÷ Ñ좓ïÑnïßcjsk‹,Šo„f|Oý0=akUáâ§A|æÙÉgæWH€„€ÕXj `ìHÌMí½’ÁÜÔÚ*€ìHdGýzbËfOÎ}ÝŠ–=ÿÍ.ZþruGòéýû/ï£å/ï£c¡]»Qß “9ýSÒb×fÀclÕù6!öÙ8E }!vÅPЮÞSÀŸO ó'†¼&îky²‹ÎþöÞ"»èTüÇÖÿËIУ6ÜS|#4»èÌ·=¡­Tûã0ÿ¶Òê!4»èäûûS#A¯Ælæ-0çc.`¯@€}O)ø@[þ˜¦±`¯@À%HBÀšÑÕ*&À^,ƒ ‘„€õ ´z€ °W f°;" kV»^Pö d”WBwÕƒKÀ:R¯¨{Rãä q\ _C<ÂøKë‚®ÃEoÓ$Þ¦Í.:Z?ÂÀ¯&Ak}’þS¡¿o™ÿ3sÇ”B§xVst Å³š ÏZµ@hvÑ™os¿•ê»ÜíTÎ&$pÊlÉ­cìHlåªw‹ ñù`õd °W eÆ„Ý$íj_ {RåyÉ®N{íù½6ÿ¡÷óMD³‹ŽÎϰo¢&Ak« šo„fýò´GºæûÚ"?ãXür€fJìûi´ššâû0מ4ßù^=åhmH«©Í.:ù>ûazÂÆÂOäI®Qƒ<;ù̼ý+•ý4— µÊŽÐì¢3ß+ c¹K-yL€½YvÍ×ʾ©êEpOÜ#L€½×rÁqUüö›Æ‡°â0‰®[æxÎU ǯ!œGî¶ABÀªµ’ÀØ+eвx\}£€±òZ}qö ¤ š6 ©M ‚R‘²owOPEØ+2˜ >E¶A¨9óMïËãÒ좓ssù¶„é «ó3ŠëÙž¾R\#töÃ'sxµÜô1¿ ÙEgåe+ š­öÛ4ßÍ.:ùn˜ITÊ;ÐꌚRSš]tæ{ï§IÐÖDZ8‹÷(À^,ó.­Â/vgU©ðÍ.:ùwÜvGBÀš@TÊ`¯@–=XSÊ~mê!ßç°`ìÈh«$¬Î–&À^”AvéqO-"!`M#+(À^,ƒr•¶O`‡ ž¼5ÈPªƳ“Ïü¯@ `Æ¢£üí#ë½N}†O™)\‚ý¯$±ƒ$$}±6‰ŸR¢oçéœÇYnÁ뎕Hq~9ÒÝçXÞËÞ[µ` öK¤,¦”ˆYLá9µs®±ø<†E¿, \‚ý¯$q‚$$¬ªõEâ§”è»ñ ëO_nê–Hqîåð¯7ν‡õV-X‚ýYå°3‹9Ìž¨³ëEOós2H³‹~%zë§IÐê`Ró Ð좓ïeï§IÐê@JñÐ좓ﰓª&A[ã§(°M¢ßŠ °W à€HX}-L€½)ƒ­i ©d°¥I$¥û¯d °W eí«éˆl¡ÝU7¨lýùZå£ €hvѯDÛs š­¶œšo»ÝÕ|tò½Ø3æŠïå0[NÅ7B³‹N¾Ú|Åw[‹69݃ °W  ©Í/HX ¦–&À^”A[›¯dµ¸Ê¢®’(À^”AÖæ÷Ä Ž°Öø…Ê'i¿èý8DÑì¢_‰Þûi´ºZ¨ù.§…z|tò½”ƒþßKšÄ©­*¾š]tò½®ý4 ÚZ,»ŽIöïPö ¤6ˆ§'o­’( `<;ùì÷oæÜô2ɪ‹Ðì¢SÉí£ÓúžæÇ”f^);P€½2ƒ¾¿Pkô”²oÉ>š]tæ{s—}̲ùÏ“ ÕVS ¡ÙE'ßöËB±}¶´•‘?ù¼`<;ùì÷OÅœtFz“ņÐ좳bkzÍiÖ×–ÆR+;L€½Yå ª™ Z}൲·»‡ZÙtô}M¯øzÙŸCScY/{T€½)ûEU/úìî”Z›W/yfœynêh¡Ùo -µ¦&ç8§¢Ö€ìHLOOÞzð”0ž|ò?7õ•²ÝÞÊþ'%P€½Y;$pepþì­úÛuz¶õÑ|€4»èW¢~š­µ¹šïìz’fš]tò=™ç#4ß“yÓ”æ¡ÙEg¾~š½ê­e‡çh`¯@ `./Ùj !`4˜Z {RË 0L-P€½Y-Ûv• Æ  ¶œãEOÛ)Úˆf­a ]M‚V[NÅ7B³‹N¾7s>Gó½­fË©øFhvÑÙ/ÿÔm_Ö6Ýôû ¾øåÍ.:•Øî±½·4ô‘?wÑF<;ùÌüÚ ZÛ  :B³‹–¾»ƒ“Ö­×›Vò˜€  [ ep˜c´²ô®=7JÙ#4»hé»;8iÝz­+e ȺRaF¨/Aôú¬9ÅŸ¿> x °W `ò&¸A¿€„€±ÁE `¯@Ì`j:V¦d05ëR2@Ø+2SÝ1ƒ%씚ò¿šÙ® Ö¿þý§2¦p öKÄ$–m%HH<^Im?¥Ä·zþí÷ÿü~ýïßÿñOÿö·ü¾? 0„ÛuέUåËÁ™÷%¶ÿ§qÍ öÂ~‰T(_®ãë-” ñØŽÙ[Aa öK¤,ÊM©Q¬“¹+m»á.›øŒ*H³‹ŽÞW{7^I“ ÕQ­â{¶çAß|gs8Í4 Z*¾š]tæ»<ÎÙãûlE]öpQö ¤Â4N· k˜ d °W YS:ê$ÜrÓÅ ¢ÙE¿í¶n,Zk¥ ȺRæ6“2@zÂj³§”<³Î<ÎÐŽ±ÿÏ“ ?Õ®²SA‹ ¡ÙEg¾·~šmìPˆû¸È§`¯@ Ìt °š%P€½1ƒmhÙ¨¡dp X³"õ Pö d´ì³Ð2»}ÃXù$­7=Ë5ˆf¬Oý0=au2¸€ ¸y̽]cîáþ"‰üÙIþõo~ÿËë÷ïÿnüƒß†çëgxž×TÀ/{àTLa+QM‚ÖGjÕ¡ÙEg¾·~šý8Y~&( lŸýSsn`¯@ ÜÙ-@Bà1ßÚ—(À^”Av¶·G€„ÀãLd_ {² H f°g‡#k-ýu(t9ÂEYÑ좣õ}±ßQM‚V[΂þS¡¿ñ ü#ì¢S•׺ö»fÊkÛúi´:ó¦ÔS„f|g×›iôcÂíK/ö˜†#ïˆ;Ø+PN:¶xL¸uf€ °W epì Ç”}_ {RÙf°˜ÁæîÕm´×®‚u_Ñ@4»èì—Ïýí2ÑeŠŸî÷˜ÿ|T‚ý¯$±»bHÛÀj/­š]tæû£#!aíú"ñSJÀ»®L{×•Ë û%R¡œæÍ}Ze<Óhxí¯ŒÍ.:ó}‚Ñ‘xü€Þ –`¿DÌbæþ$IЫ1!ö)Ë:Ø+°ø3< ß@BÀšSÐbÄØ+2[.BÔ2ÓC©ìPV2Ø+2˜H eíM® ɯ£÷ë±l¢I…hvÑÉúfOE4 ZÚôOIwL&œá½¾Ï­:ßææÇgP#ì¢SØ(%`Ÿ…W*³Î<¯ý4 z5ÖQ <¯sn`¯@  ÜÚÂÓ“·†ÕJÏN>ú߆r3RW—€5¨®'€ °W Ë`ƒba‚JÛ¹_‡ÿÿú­òáG`öÀ¯¯ý4 Zk/Kú§¤Ûß9ǵ›h?[u¾½s–ǦP#ì¢SL朴VÓfµÞZÅChvÑÉw8iÒG“ V; ,³hsPö dì £áV3ÀØ+2XH€„Àch_ {Rë Ä ŽÍ~Œ=‡h š]ô+Ñ[?M‚V[΂þ)éö×Ï9…×ϱµê|{ý¬Ÿ×Ï’9îP‹ Sìæ€I+‚Ý<|¦U=„f|K?M‚¶Úî(°Ž¢ÙAØ+Ð2î)HXm·–&À^˜†Ó·Úíº gž¼+$p¹Í‹yÓ~Møn»ØÒì¢_‘»Xúh´¶äSÒ?% Ÿ (ƒ¶iÇú“ö Ô3»èTZáxeM‚Ög´ZŠÐ좓ヲ'¼æ™}y¸oþÎGÛóìä3ó+$@BÀ8~ &€ °W e]~Õ#@Bౘҗ(À^”AذÓ-3Xæ¦ 'ót¯Žs{¬2{$Ø/ñJMÛ?¾H°í¿Hü”øöK¥aûÇ[¢i‚^(¨D*”òÕÔ[&å+¢·z¢ ìVÈr@%b۸˟_7\k¿ûçÚÚG¸û%bÛ4‚$$ƒò6‰ŸR¢oV<{Äð_Á~‰ç—‰zãü2ÕÜ[µ` öKdYì DÊb1÷(ìóMSÅ(Í.:™·j”4 Zç*蟒î˜,¼öGœÍ: “…I¬å#ÕQB\'sà¼\ô4 ²ò 4»hùËíFy³l` éHOÁjî~Vc0w —ôOIs*ÚtDÂæHBÂ~­?¥þŠ]ËyÏ#ÐÙß.[ÄîúŒJ¤¢ÜÊ×{Gƒ´Ù‹ÈÊÛ ¡ÙEg¾ËWy例ã[`z×¼ÇÈ`¯@@9úêhȲ†WΑkU¡ÙE'ß;øÈÐSáSsðU†*°[!Ë¡iÿDQHXË7Ê3 °W Ë`é¯I$hã–™$0Ëé=T€½Y«¿Ðo !`M³j1bìH„SuÝ‘„€±ÿQ{–@ö dN¬èÉ[3ÕJ5Âxvò™ÿ¦¹úzçhÐîçx=ñN†hvѯDÛƒª‚&A«=™‚þS¡¿^VôþgSÿß`œÂ±o±ÓÂÉn’«õs•JÐì¢3ß[?M‚^Ÿ©ÉƒLQ` ÍÑ’[ÇØ+XFH€„€q MË`¯@Ê ÌØt x´ª}€ìÈ2Ø!”A¸îVm^·‹ÞG¹¢ÙE'ëáØG“ Õ–Sóm¿V4ß}MmÝõ¥ýr©kª{Ù•™±¯Ç¯&ºÒŸî÷y A«ƒ«Zú Í.:ùÍ+ö4ßcË sI`-.À^,€ !`5ÛZ˜{RS9éË`*}€ìHÌ $3˜Ær-^>I{ !L-dmD³‹~%ºÜˆ`Ò$huV½ ÿTèïCð°‹NñLå4jGùÔ#@Bà1WÖ—(À^”Avme@Ì`ŸPÏž]ÛhŽQœœivÑÑúz×}4 Zm9ßãÒO³‹N¾§µŸ&A«-§â¡ÙE'ßv“¯Ønjo#ö‹eO:ȳ“Ï̯ «±ÔÀØ+2X6H€„Àã¬W_ {Rë Ä –ð ªS9×ýÇ´Éç¢ÙEGëKyvÀ„é «S(Škfœù›Î»HX³!J {² vH fðí*&ù-½›xú!š]t´þí(“&A«M¦â{2·÷h¾:ùžç~š­Nƒ+¾š]tæûè§IÐÖì÷-°ƒxÖQö ¤––]>¥ «ÁT2Ø+2XH€„€±£QË`¯@Ê`ƒøÁöEª çzчؗ Ò좣ó=yé£IÐjéø¶¿?£ùFèäÛþzæÛþ‚Œæ¡ÙE'ßóØO“ ­r˜vñ¨£ìÈØ V{©e€ °W e°ì «ÁT2Ø+2È~{bÇfO«l}‡h š]ô+Ñö”NA“ Õ–S¡¿|öíëÅ9Ã-q^çüß~ þ?ÿ+úb? N–íŸOBâñÚ$~J‰¾o¦.yˆè¯`¿DŠó°J>&óª´Í.:ó]ÎqöV££œoì}` öKdYýI’ ­NE˜†aœÄû`¯@ à,«Ro†awI÷o !`õK”Aö Ä ÎlOd kú±ž*À^,ƒH„ je¿èq”ë'Í.:YßÍ’%M‚V_Dšo€f|7l V|ö<¤â¡ÙE'ßY{ÑL“ ­éÇ(¾ ™?ë {²š¶@$¬SË`¯ÀÕþ4–Ÿ¹ñÖK‡ŽëÒ¡ó!QéG•x_føùžçp—ÄòëË×Ð; âæ­F»V0ÏN>ó¿B1€10W§B‹žÄ Í.ú•h{ ¸ IÐjÛ­ùhvÑÉ÷d¿uß“ÝåW|#4»èä;[õk¦IÐV7ý˜‡C<é¨{²šF;… «µÔ2ÀØ+2hºLEË é*-P€½)ƒu…R[ÙÛÿ6ê½>'û—Ä2=æ/<ì—HIlåÀ£M‚„„9TJü”­S‚ÓgJpÎã,Ûôî8Q‰ç—¯‹÷Æùå3ß½U –`¿DÊâËÇ;³°¿z|œ¼O‡xÓ"0{àW‚×~š­žÐ\oý4»èè{ìÓuß­]¡ø†hvÑÉwè…÷Ñ$èõ™Zñ2Šâ`.À^,€ !`Ð2ÀØ+2˜šL(Lé´rX@É`¯@fÁl6Ïá¦÷Y>ÂÍ.:•Þ Üáû˧x;|#4»èä€é Íeäa’O:Ƴ“ÏÌc$ŒÆRM`¯@Ê lþì !`49Z {RM'š• ¶²£ümˆ0-—Â9?·8Ø­ðJ (ABâÑŒ¶Iü”ø§ê-•†OÕ{¼°_"ÊVFz e+G½Õ–`¿DÊb/(YìáL´¶B}ÞùÏéñÇ›¢ÙE¿}ôÓ$hm­@ó=öÃì“kûT•æzJ«‚µîâ¡ÙEg¾Í“¬ªï4­/Üã0É1*À^À©ùFhvÑÉ÷ºôÓ$hãk‘IàØEo`¯@À °º\Z˜{R;Äӓߌ%%Œg'Ÿù_!+€ý×°[S<Ûp%žå×Q@š]ô+ÒÖNÞ/0=a¥ÍT]0{àäù´¦¦TÓV¦hT×Í.:ó½õÓ$h}f&˜Ÿ+·¸{bã0B$ô–RË`¯@Ê »ñ©G€„€>¼V3Ø+e°C)ƒ-õ’¿ÏsmïrúÐ缈6¢ÙE'뻵Ã÷ M‚VfF¾Ð?%Ý:C7þî}s«Î·ºõù–ýþnnŸvÑ©Ž­Ÿ&A+“4jÕChvÑÉw¶[´™&Aës3™Àv>¦pö d4ÌO} ! ÏÍè`ìˆLáºÂnúÜŒ–*À^”ÁØ0?¥e°„ù©G#þåR”(±LÛçqS ¸û%bË\¾Ú$HHÖ|4»èä{µNÞª¾³y´ZEñÐ좓ïmé§IÐÖ°8 ,rD‡ °W  ¼¡E€„€5,Ö2ÀØ+28 žž¼5(VÀxvò™ÿˆåa¨/oŒå¸® ±³W¬Àn…WRXA V?â‹ÄO)~*õ-±ƒ¿‚ý)Îì2ª> Ÿ®ÈV,X‚ý)‹µÜÌÞU/î'¼ùôËû­ø9ý2<$zN¿¼§Ë®Ó/W‰¿†pòWí]'ô×ÏW¶²7=H³‹~%Úº+ü M‚VûGšo€f|0=ae[u Àì3Ïk?M‚Ö¶3ð “%7Ž °W 0B8=p«?T÷áìÓ÷ !`u‡ÿ {² 6H e°Ú­årÑã´ˆ'¢ÙE'ë›ý–(h´Ú\*¾·µŸf|ïÖ2Õ÷n¯p+¾š]tò}Œý4 ÚþFu—Ï:(À^,€¦ÅýB€„€Õ`j`ìHœ ±Ô ²ËW•SÉ`¯@Ì`š÷ë¬f»¹^ìrȾÀ²ƒ¦× IÐj›©xFhvÑò—+çð·÷žþ@Ÿ²½†hùËûèTb¡oÓG“ Õ-ý§B¿ó¸¿Ö÷GØEgñدq¥ZŒ©!­ |” Ð좓ïiì§IÐÖˆçXÉÿ¬ùFØ+`ÝÔ >“u[‚Ú 4»èÌ÷GBÀz÷ke °W ËÀº­B/ûò®ˆ/~‹þ,ÀØ+ߣë !0>ß*=€ìÈ2hêÃ*ÂÜÔƒTP€½)ƒ¥©« ¬P)x\˜ÑW‘@ö ¤ 0>F°…{WÔ®ûEtïˆfýJ´uŠþ M‚VßÀšo€f|Û=NÅöŸ˜Úü‰â€Ùgž×~š½/œ( öâãìHÌOOÞj)•0ž|ò¿Œ ÇnÒ¾@ö d”;j;28ËbŽÆ¯ÓÚû8§¤ÙE¿}öÓ$hµÉT|¯vƒ«øFèä{³Ç‰Šïì©«µšŠo„fù>úi´ÕZFõx<ë¸{R{Sƒ_°L%P€½)ƒ£i¥d¬Î±’(À^ÌÂjNyŸ7} òFhvÑYéõ$`/ ž°:±ªÄÀì£ç3œ[í£IÐêêhÝ5D³‹Î|۫šï¦EÑ[`ñœ£ìHdw*õ°&”” @ö ¤ Â…DÝ$¬ %%P€½YMÛ» ÿ?ÄëΖFnam-1.15/ex/adc.README0000664000076400007660000000676606610761030013134 0ustar tomhnsnam The attached nam file (adc.nam) shows a simple comparison between a comparison between measurement-based admission control and parameter-based admission control. The measurement-based algorithm is the Measured Sum algorithm given in "Comparison of Measurement-Based Admission Control Algorithms for Controlled-Load Service", by Jamin, Shenker and Danzig in Infocomm '97. The parameter-based algorithm makes admission control decisions based on reserved rates. In the animation, there are two bottleneck links with capacity 1Mbps. Link 6-7 uses the parameter-based algorithm, and Link 0-1 uses the measurement based algorithm. The remaining links in the topology have 5Mbps capacity and are never congested. The key point to notice is that when presented with equal average offered load (in terms of the number of flows requesting reservations) the measurement-based algorithm, which makes admission decisions based on the token bucket parameters of the flow requesting service and on the measurements of traffic sent by flows with existing reservations, admits more flows and achieves a higher measured utilization on the bottleneck link than the parameter-based algorithm, which makes admission decisions using the token bucket parameters of the new flow and the reserved rate of existing flows. The 3 magenta nodes on the left are the sources of traffic and the 3 orange nodes on the right are destinations. Flows are started randomly between pairs of source and destination nodes. When a flow is started, a reservation request (white packets in the animation) is sent from the source (Node 8, 2 or 3) to the destination (Node 9, 5 or 4). The token bucket parameters in the reservation packet are r = 64kbps are b = 1. Admission control decisions are made at either node 0 or node 6. Based on the admission control decision, the destination returns either an Accept packet (green) or Reject packet (red) to the source. A source that receives an Accept then transmits data (the data packets are not shown in the animation). After sending its data, the source transmits a Teardown packet (black) to signal the network it no longer needs its reservation. The bottleneck links change color to reflect the last admission control decision made on the link. When reservation requests are accepted, the link turns (or remains) green. When a reservation request is rejected, the link turns (or remains) red. Monitors associated with the admission control agents at Nodes 0 and 6 display relevant information about the state of the admission control process and link utilization. Each monitor shows the number of flows with reservations in place on the adjacent link, and the measured utilization on the adjacent link (utilization measures are averaged over 2 second intervals). For the parameter-based admission control algorithm, the total amount of reserved bandwidth is shown. For the measurement-based algorithm, the estimated link utilization, which is an input parameter to the decision process, is shown. (See the above-reference paper for an explanation of how this estimate is computed and used.) Other relevant parameters to the simulation that created this animation: Flow inter-arrival times are exponentially distributed with average of 400 ms on each link. Average flow lifetime is 30 seconds (again exponentially distributed). Flows transmit data according to the Exponential On/Off source model in the ns-2 simulator. Relevant parameters are: packet size = 125 bytes, on time = 312.5 msec, off time = 325 msec, and rate = 64 kbps. nam-1.15/ex/algo-out-50sub.nam0000664000076400007660000431643506614161723014716 0ustar tomhnsnamV -t * -v 1.0a5 -a 0 A -t * -n 1 -p 0 -o 255 -c 15 -a 1 A -t * -h 1 -m 127 -s 8 n -t * -s 16 -v circle -c red -z 0.012134 -S UP n -t * -s 15 -v circle -c red -z 0.012134 -S UP n -t * -s 14 -v circle -c red -z 0.012134 -S UP n -t * -s 13 -v circle -c red -z 0.012134 -S UP n -t * -s 12 -v circle -c red -z 0.012134 -S UP n -t * -s 29 -v circle -c red -z 0.012134 -S UP n -t * -s 30 -v circle -c red -z 0.012134 -S UP n -t * -s 11 -v circle -c red -z 0.012134 -S UP n -t * -s 28 -v circle -c red -z 0.012134 -S UP n -t * -s 10 -v circle -c red -z 0.012134 -S UP n -t * -s 9 -v circle -c red -z 0.012134 -S UP n -t * -s 27 -v circle -c red -z 0.012134 -S UP n -t * -s 8 -v circle -c red -z 0.012134 -S UP n -t * -s 26 -v circle -c red -z 0.012134 -S UP n -t * -s 7 -v circle -c red -z 0.012134 -S UP n -t * -s 25 -v circle -c red -z 0.012134 -S UP n -t * -s 6 -v circle -c red -z 0.012134 -S UP n -t * -s 24 -v circle -c red -z 0.012134 -S UP n -t * -s 5 -v circle -c red -z 0.012134 -S UP n -t * -s 23 -v circle -c red -z 0.012134 -S UP n -t * -s 4 -v circle -c red -z 0.012134 -S UP n -t * -s 22 -v circle -c red -z 0.012134 -S UP n -t * -s 3 -v circle -c red -z 0.012134 -S UP n -t * -s 21 -v circle -c red -z 0.012134 -S UP n -t * -s 2 -v circle -c red -z 0.012134 -S UP n -t * -s 19 -v circle -c red -z 0.012134 -S UP n -t * -s 20 -v circle -c red -z 0.012134 -S UP n -t * -s 1 -v circle -c red -z 0.012134 -S UP n -t * -s 18 -v circle -c red -z 0.012134 -S UP n -t * -s 0 -v circle -c red -z 0.012134 -S UP n -t * -s 17 -v circle -c red -z 0.012134 -S UP l -t * -s 16 -d 17 -r 5000000.000000 -D 0.080000 -o 318.2deg -l 0.071276 -S UP l -t * -s 15 -d 16 -r 5000000.000000 -D 0.070000 -o 200.0deg -l 0.079706 -S UP l -t * -s 14 -d 15 -r 5000000.000000 -D 0.080000 -o 278.3deg -l 0.045510 -S UP -c grey l -t * -s 13 -d 14 -r 5000000.000000 -D 0.080000 -o 358.6deg -l 0.090627 -S UP l -t * -s 12 -d 16 -r 5000000.000000 -D 0.110000 -o 334.0deg -l 0.117749 -S UP l -t * -s 12 -d 18 -r 5000000.000000 -D 0.230000 -o 134.2deg -l 0.106716 -S UP l -t * -s 12 -d 13 -r 5000000.000000 -D 0.070000 -o 21.9deg -l 0.086388 -S UP l -t * -s 28 -d 30 -r 5000000.000000 -D 0.080000 -o 122.5deg -l 0.168530 -S UP l -t * -s 28 -d 29 -r 5000000.000000 -D 0.110000 -o 152.5deg -l 0.189062 -S UP l -t * -s 9 -d 11 -r 5000000.000000 -D 0.110000 -o 82.4deg -l 0.113803 -S UP l -t * -s 8 -d 10 -r 5000000.000000 -D 0.150000 -o 157.3deg -l 0.075837 -S UP -c grey l -t * -s 8 -d 9 -r 5000000.000000 -D 0.080000 -o 16.9deg -l 0.080061 -S UP -c grey l -t * -s 26 -d 27 -r 5000000.000000 -D 0.080000 -o 359.3deg -l 0.146459 -S UP l -t * -s 7 -d 10 -r 5000000.000000 -D 0.150000 -o 259.0deg -l 0.067218 -S UP l -t * -s 7 -d 8 -r 5000000.000000 -D 0.100000 -o 300.3deg -l 0.123208 -S UP l -t * -s 6 -d 11 -r 5000000.000000 -D 0.110000 -o 347.4deg -l 0.132438 -S UP l -t * -s 6 -d 7 -r 5000000.000000 -D 0.120000 -o 242.3deg -l 0.060220 -S UP l -t * -s 24 -d 25 -r 5000000.000000 -D 0.080000 -o 20.8deg -l 0.094547 -S UP l -t * -s 23 -d 26 -r 5000000.000000 -D 0.080000 -o 25.8deg -l 0.096259 -S UP l -t * -s 23 -d 24 -r 5000000.000000 -D 0.080000 -o 271.8deg -l 0.074913 -S UP l -t * -s 4 -d 5 -r 5000000.000000 -D 0.120000 -o 320.3deg -l 0.076366 -S UP -c grey l -t * -s 22 -d 23 -r 5000000.000000 -D 0.080000 -o 269.2deg -l 0.068148 -S UP l -t * -s 3 -d 5 -r 5000000.000000 -D 0.120000 -o 258.9deg -l 0.106820 -S UP -c grey l -t * -s 3 -d 4 -r 5000000.000000 -D 0.140000 -o 212.4deg -l 0.096938 -S UP l -t * -s 21 -d 28 -r 5000000.000000 -D 0.350000 -o 180.8deg -l 0.159892 -S UP l -t * -s 21 -d 22 -r 5000000.000000 -D 0.060000 -o 0.2deg -l 0.084128 -S UP -c grey l -t * -s 19 -d 20 -r 5000000.000000 -D 0.080000 -o 45.5deg -l 0.041863 -S UP l -t * -s 1 -d 2 -r 5000000.000000 -D 0.080000 -o 196.2deg -l 0.097434 -S UP l -t * -s 1 -d 3 -r 5000000.000000 -D 0.140000 -o 300.6deg -l 0.099550 -S UP l -t * -s 1 -d 28 -r 5000000.000000 -D 0.300000 -o 75.6deg -l 0.127320 -S UP l -t * -s 18 -d 24 -r 5000000.000000 -D 0.100000 -o 92.8deg -l 0.035393 -S UP l -t * -s 18 -d 19 -r 5000000.000000 -D 0.090000 -o 10.1deg -l 0.133212 -S UP l -t * -s 0 -d 5 -r 5000000.000000 -D 0.160000 -o 202.5deg -l 0.135297 -S UP l -t * -s 0 -d 3 -r 5000000.000000 -D 0.160000 -o 151.2deg -l 0.113704 -S UP l -t * -s 0 -d 6 -r 5000000.000000 -D 0.250000 -o 258.6deg -l 0.079882 -S UP l -t * -s 0 -d 18 -r 5000000.000000 -D 0.300000 -o 28.5deg -l 0.137893 -S UP n -t 0 -s 28 -S DLABEL -l Algo_Rtg_Table=1 -L "" n -t 0 -s 21 -S DLABEL -l Algo_Rtg_Table=1 -L "" n -t 0 -s 3 -S DLABEL -l Algo_Rtg_Table=1 -L "" + -t 0.3 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {3.0 21.0 0 ------- null} - -t 0.3 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {3.0 21.0 0 ------- null} h -t 0.3 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {3.0 21.0 -1 ------- null} r -t 0.4416 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {3.0 21.0 0 ------- null} + -t 0.4416 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {3.0 21.0 0 ------- null} - -t 0.4416 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {3.0 21.0 0 ------- null} h -t 0.4416 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {3.0 21.0 -1 ------- null} r -t 0.7432 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {3.0 21.0 0 ------- null} + -t 0.7432 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {3.0 21.0 0 ------- null} - -t 0.7432 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {3.0 21.0 0 ------- null} h -t 0.7432 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {3.0 21.0 -1 ------- null} r -t 1.0948 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {3.0 21.0 0 ------- null} + -t 1.0948 -s 21 -d 28 -p ack -e 40 -c 0 -i 1 -a 0 -x {21.0 3.0 0 ------- null} - -t 1.0948 -s 21 -d 28 -p ack -e 40 -c 0 -i 1 -a 0 -x {21.0 3.0 0 ------- null} h -t 1.0948 -s 21 -d 28 -p ack -e 40 -c 0 -i 1 -a 0 -x {21.0 3.0 -1 ------- null} r -t 1.44486 -s 21 -d 28 -p ack -e 40 -c 0 -i 1 -a 0 -x {21.0 3.0 0 ------- null} + -t 1.44486 -s 28 -d 1 -p ack -e 40 -c 0 -i 1 -a 0 -x {21.0 3.0 0 ------- null} - -t 1.44486 -s 28 -d 1 -p ack -e 40 -c 0 -i 1 -a 0 -x {21.0 3.0 0 ------- null} h -t 1.44486 -s 28 -d 1 -p ack -e 40 -c 0 -i 1 -a 0 -x {21.0 3.0 -1 ------- null} r -t 1.74493 -s 28 -d 1 -p ack -e 40 -c 0 -i 1 -a 0 -x {21.0 3.0 0 ------- null} + -t 1.74493 -s 1 -d 3 -p ack -e 40 -c 0 -i 1 -a 0 -x {21.0 3.0 0 ------- null} - -t 1.74493 -s 1 -d 3 -p ack -e 40 -c 0 -i 1 -a 0 -x {21.0 3.0 0 ------- null} h -t 1.74493 -s 1 -d 3 -p ack -e 40 -c 0 -i 1 -a 0 -x {21.0 3.0 -1 ------- null} r -t 1.88499 -s 1 -d 3 -p ack -e 40 -c 0 -i 1 -a 0 -x {21.0 3.0 0 ------- null} + -t 1.88499 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {3.0 21.0 1 ------- null} - -t 1.88499 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {3.0 21.0 1 ------- null} h -t 1.88499 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {3.0 21.0 -1 ------- null} + -t 1.88499 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {3.0 21.0 2 ------- null} - -t 1.88659 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {3.0 21.0 2 ------- null} h -t 1.88659 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {3.0 21.0 -1 ------- null} r -t 2.02659 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {3.0 21.0 1 ------- null} + -t 2.02659 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {3.0 21.0 1 ------- null} - -t 2.02659 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {3.0 21.0 1 ------- null} h -t 2.02659 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {3.0 21.0 -1 ------- null} r -t 2.02819 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {3.0 21.0 2 ------- null} + -t 2.02819 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {3.0 21.0 2 ------- null} - -t 2.02819 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {3.0 21.0 2 ------- null} h -t 2.02819 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {3.0 21.0 -1 ------- null} r -t 2.32819 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {3.0 21.0 1 ------- null} + -t 2.32819 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {3.0 21.0 1 ------- null} - -t 2.32819 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {3.0 21.0 1 ------- null} h -t 2.32819 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {3.0 21.0 -1 ------- null} r -t 2.32979 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {3.0 21.0 2 ------- null} + -t 2.32979 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {3.0 21.0 2 ------- null} - -t 2.32979 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {3.0 21.0 2 ------- null} h -t 2.32979 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {3.0 21.0 -1 ------- null} r -t 2.67979 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {3.0 21.0 1 ------- null} + -t 2.67979 -s 21 -d 28 -p ack -e 40 -c 0 -i 4 -a 0 -x {21.0 3.0 1 ------- null} - -t 2.67979 -s 21 -d 28 -p ack -e 40 -c 0 -i 4 -a 0 -x {21.0 3.0 1 ------- null} h -t 2.67979 -s 21 -d 28 -p ack -e 40 -c 0 -i 4 -a 0 -x {21.0 3.0 -1 ------- null} r -t 2.68139 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {3.0 21.0 2 ------- null} + -t 2.68139 -s 21 -d 28 -p ack -e 40 -c 0 -i 5 -a 0 -x {21.0 3.0 2 ------- null} - -t 2.68139 -s 21 -d 28 -p ack -e 40 -c 0 -i 5 -a 0 -x {21.0 3.0 2 ------- null} h -t 2.68139 -s 21 -d 28 -p ack -e 40 -c 0 -i 5 -a 0 -x {21.0 3.0 -1 ------- null} r -t 3.02986 -s 21 -d 28 -p ack -e 40 -c 0 -i 4 -a 0 -x {21.0 3.0 1 ------- null} + -t 3.02986 -s 28 -d 1 -p ack -e 40 -c 0 -i 4 -a 0 -x {21.0 3.0 1 ------- null} - -t 3.02986 -s 28 -d 1 -p ack -e 40 -c 0 -i 4 -a 0 -x {21.0 3.0 1 ------- null} h -t 3.02986 -s 28 -d 1 -p ack -e 40 -c 0 -i 4 -a 0 -x {21.0 3.0 -1 ------- null} r -t 3.03146 -s 21 -d 28 -p ack -e 40 -c 0 -i 5 -a 0 -x {21.0 3.0 2 ------- null} + -t 3.03146 -s 28 -d 1 -p ack -e 40 -c 0 -i 5 -a 0 -x {21.0 3.0 2 ------- null} - -t 3.03146 -s 28 -d 1 -p ack -e 40 -c 0 -i 5 -a 0 -x {21.0 3.0 2 ------- null} h -t 3.03146 -s 28 -d 1 -p ack -e 40 -c 0 -i 5 -a 0 -x {21.0 3.0 -1 ------- null} r -t 3.32992 -s 28 -d 1 -p ack -e 40 -c 0 -i 4 -a 0 -x {21.0 3.0 1 ------- null} + -t 3.32992 -s 1 -d 3 -p ack -e 40 -c 0 -i 4 -a 0 -x {21.0 3.0 1 ------- null} - -t 3.32992 -s 1 -d 3 -p ack -e 40 -c 0 -i 4 -a 0 -x {21.0 3.0 1 ------- null} h -t 3.32992 -s 1 -d 3 -p ack -e 40 -c 0 -i 4 -a 0 -x {21.0 3.0 -1 ------- null} r -t 3.33152 -s 28 -d 1 -p ack -e 40 -c 0 -i 5 -a 0 -x {21.0 3.0 2 ------- null} + -t 3.33152 -s 1 -d 3 -p ack -e 40 -c 0 -i 5 -a 0 -x {21.0 3.0 2 ------- null} - -t 3.33152 -s 1 -d 3 -p ack -e 40 -c 0 -i 5 -a 0 -x {21.0 3.0 2 ------- null} h -t 3.33152 -s 1 -d 3 -p ack -e 40 -c 0 -i 5 -a 0 -x {21.0 3.0 -1 ------- null} r -t 3.46998 -s 1 -d 3 -p ack -e 40 -c 0 -i 4 -a 0 -x {21.0 3.0 1 ------- null} + -t 3.46998 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {3.0 21.0 3 ------- null} - -t 3.46998 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {3.0 21.0 3 ------- null} h -t 3.46998 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {3.0 21.0 -1 ------- null} + -t 3.46998 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {3.0 21.0 4 ------- null} r -t 3.47158 -s 1 -d 3 -p ack -e 40 -c 0 -i 5 -a 0 -x {21.0 3.0 2 ------- null} + -t 3.47158 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {3.0 21.0 5 ------- null} + -t 3.47158 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {3.0 21.0 6 ------- null} - -t 3.47158 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {3.0 21.0 4 ------- null} h -t 3.47158 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {3.0 21.0 -1 ------- null} - -t 3.47318 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {3.0 21.0 5 ------- null} h -t 3.47318 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {3.0 21.0 -1 ------- null} - -t 3.47478 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {3.0 21.0 6 ------- null} h -t 3.47478 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {3.0 21.0 -1 ------- null} r -t 3.61158 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {3.0 21.0 3 ------- null} + -t 3.61158 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {3.0 21.0 3 ------- null} - -t 3.61158 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {3.0 21.0 3 ------- null} h -t 3.61158 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {3.0 21.0 -1 ------- null} r -t 3.61318 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {3.0 21.0 4 ------- null} + -t 3.61318 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {3.0 21.0 4 ------- null} - -t 3.61318 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {3.0 21.0 4 ------- null} h -t 3.61318 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {3.0 21.0 -1 ------- null} r -t 3.61478 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {3.0 21.0 5 ------- null} + -t 3.61478 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {3.0 21.0 5 ------- null} - -t 3.61478 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {3.0 21.0 5 ------- null} h -t 3.61478 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {3.0 21.0 -1 ------- null} r -t 3.61638 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {3.0 21.0 6 ------- null} + -t 3.61638 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {3.0 21.0 6 ------- null} - -t 3.61638 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {3.0 21.0 6 ------- null} h -t 3.61638 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {3.0 21.0 -1 ------- null} r -t 3.91318 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {3.0 21.0 3 ------- null} + -t 3.91318 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {3.0 21.0 3 ------- null} - -t 3.91318 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {3.0 21.0 3 ------- null} h -t 3.91318 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {3.0 21.0 -1 ------- null} r -t 3.91478 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {3.0 21.0 4 ------- null} + -t 3.91478 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {3.0 21.0 4 ------- null} - -t 3.91478 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {3.0 21.0 4 ------- null} h -t 3.91478 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {3.0 21.0 -1 ------- null} r -t 3.91638 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {3.0 21.0 5 ------- null} + -t 3.91638 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {3.0 21.0 5 ------- null} - -t 3.91638 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {3.0 21.0 5 ------- null} h -t 3.91638 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {3.0 21.0 -1 ------- null} r -t 3.91798 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {3.0 21.0 6 ------- null} + -t 3.91798 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {3.0 21.0 6 ------- null} - -t 3.91798 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {3.0 21.0 6 ------- null} h -t 3.91798 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {3.0 21.0 -1 ------- null} r -t 4.26478 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {3.0 21.0 3 ------- null} + -t 4.26478 -s 21 -d 28 -p ack -e 40 -c 0 -i 10 -a 0 -x {21.0 3.0 3 ------- null} - -t 4.26478 -s 21 -d 28 -p ack -e 40 -c 0 -i 10 -a 0 -x {21.0 3.0 3 ------- null} h -t 4.26478 -s 21 -d 28 -p ack -e 40 -c 0 -i 10 -a 0 -x {21.0 3.0 -1 ------- null} r -t 4.26638 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {3.0 21.0 4 ------- null} + -t 4.26638 -s 21 -d 28 -p ack -e 40 -c 0 -i 11 -a 0 -x {21.0 3.0 4 ------- null} - -t 4.26638 -s 21 -d 28 -p ack -e 40 -c 0 -i 11 -a 0 -x {21.0 3.0 4 ------- null} h -t 4.26638 -s 21 -d 28 -p ack -e 40 -c 0 -i 11 -a 0 -x {21.0 3.0 -1 ------- null} r -t 4.26798 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {3.0 21.0 5 ------- null} + -t 4.26798 -s 21 -d 28 -p ack -e 40 -c 0 -i 12 -a 0 -x {21.0 3.0 5 ------- null} - -t 4.26798 -s 21 -d 28 -p ack -e 40 -c 0 -i 12 -a 0 -x {21.0 3.0 5 ------- null} h -t 4.26798 -s 21 -d 28 -p ack -e 40 -c 0 -i 12 -a 0 -x {21.0 3.0 -1 ------- null} r -t 4.26958 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {3.0 21.0 6 ------- null} + -t 4.26958 -s 21 -d 28 -p ack -e 40 -c 0 -i 13 -a 0 -x {21.0 3.0 6 ------- null} - -t 4.26958 -s 21 -d 28 -p ack -e 40 -c 0 -i 13 -a 0 -x {21.0 3.0 6 ------- null} h -t 4.26958 -s 21 -d 28 -p ack -e 40 -c 0 -i 13 -a 0 -x {21.0 3.0 -1 ------- null} r -t 4.61485 -s 21 -d 28 -p ack -e 40 -c 0 -i 10 -a 0 -x {21.0 3.0 3 ------- null} + -t 4.61485 -s 28 -d 1 -p ack -e 40 -c 0 -i 10 -a 0 -x {21.0 3.0 3 ------- null} - -t 4.61485 -s 28 -d 1 -p ack -e 40 -c 0 -i 10 -a 0 -x {21.0 3.0 3 ------- null} h -t 4.61485 -s 28 -d 1 -p ack -e 40 -c 0 -i 10 -a 0 -x {21.0 3.0 -1 ------- null} r -t 4.61645 -s 21 -d 28 -p ack -e 40 -c 0 -i 11 -a 0 -x {21.0 3.0 4 ------- null} + -t 4.61645 -s 28 -d 1 -p ack -e 40 -c 0 -i 11 -a 0 -x {21.0 3.0 4 ------- null} - -t 4.61645 -s 28 -d 1 -p ack -e 40 -c 0 -i 11 -a 0 -x {21.0 3.0 4 ------- null} h -t 4.61645 -s 28 -d 1 -p ack -e 40 -c 0 -i 11 -a 0 -x {21.0 3.0 -1 ------- null} r -t 4.61805 -s 21 -d 28 -p ack -e 40 -c 0 -i 12 -a 0 -x {21.0 3.0 5 ------- null} + -t 4.61805 -s 28 -d 1 -p ack -e 40 -c 0 -i 12 -a 0 -x {21.0 3.0 5 ------- null} - -t 4.61805 -s 28 -d 1 -p ack -e 40 -c 0 -i 12 -a 0 -x {21.0 3.0 5 ------- null} h -t 4.61805 -s 28 -d 1 -p ack -e 40 -c 0 -i 12 -a 0 -x {21.0 3.0 -1 ------- null} r -t 4.61965 -s 21 -d 28 -p ack -e 40 -c 0 -i 13 -a 0 -x {21.0 3.0 6 ------- null} + -t 4.61965 -s 28 -d 1 -p ack -e 40 -c 0 -i 13 -a 0 -x {21.0 3.0 6 ------- null} - -t 4.61965 -s 28 -d 1 -p ack -e 40 -c 0 -i 13 -a 0 -x {21.0 3.0 6 ------- null} h -t 4.61965 -s 28 -d 1 -p ack -e 40 -c 0 -i 13 -a 0 -x {21.0 3.0 -1 ------- null} r -t 4.91491 -s 28 -d 1 -p ack -e 40 -c 0 -i 10 -a 0 -x {21.0 3.0 3 ------- null} + -t 4.91491 -s 1 -d 3 -p ack -e 40 -c 0 -i 10 -a 0 -x {21.0 3.0 3 ------- null} - -t 4.91491 -s 1 -d 3 -p ack -e 40 -c 0 -i 10 -a 0 -x {21.0 3.0 3 ------- null} h -t 4.91491 -s 1 -d 3 -p ack -e 40 -c 0 -i 10 -a 0 -x {21.0 3.0 -1 ------- null} r -t 4.91651 -s 28 -d 1 -p ack -e 40 -c 0 -i 11 -a 0 -x {21.0 3.0 4 ------- null} + -t 4.91651 -s 1 -d 3 -p ack -e 40 -c 0 -i 11 -a 0 -x {21.0 3.0 4 ------- null} - -t 4.91651 -s 1 -d 3 -p ack -e 40 -c 0 -i 11 -a 0 -x {21.0 3.0 4 ------- null} h -t 4.91651 -s 1 -d 3 -p ack -e 40 -c 0 -i 11 -a 0 -x {21.0 3.0 -1 ------- null} r -t 4.91811 -s 28 -d 1 -p ack -e 40 -c 0 -i 12 -a 0 -x {21.0 3.0 5 ------- null} + -t 4.91811 -s 1 -d 3 -p ack -e 40 -c 0 -i 12 -a 0 -x {21.0 3.0 5 ------- null} - -t 4.91811 -s 1 -d 3 -p ack -e 40 -c 0 -i 12 -a 0 -x {21.0 3.0 5 ------- null} h -t 4.91811 -s 1 -d 3 -p ack -e 40 -c 0 -i 12 -a 0 -x {21.0 3.0 -1 ------- null} r -t 4.91971 -s 28 -d 1 -p ack -e 40 -c 0 -i 13 -a 0 -x {21.0 3.0 6 ------- null} + -t 4.91971 -s 1 -d 3 -p ack -e 40 -c 0 -i 13 -a 0 -x {21.0 3.0 6 ------- null} - -t 4.91971 -s 1 -d 3 -p ack -e 40 -c 0 -i 13 -a 0 -x {21.0 3.0 6 ------- null} h -t 4.91971 -s 1 -d 3 -p ack -e 40 -c 0 -i 13 -a 0 -x {21.0 3.0 -1 ------- null} r -t 5.05498 -s 1 -d 3 -p ack -e 40 -c 0 -i 10 -a 0 -x {21.0 3.0 3 ------- null} + -t 5.05498 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {3.0 21.0 7 ------- null} - -t 5.05498 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {3.0 21.0 7 ------- null} h -t 5.05498 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {3.0 21.0 -1 ------- null} + -t 5.05498 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {3.0 21.0 8 ------- null} r -t 5.05658 -s 1 -d 3 -p ack -e 40 -c 0 -i 11 -a 0 -x {21.0 3.0 4 ------- null} + -t 5.05658 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {3.0 21.0 9 ------- null} + -t 5.05658 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {3.0 21.0 10 ------- null} - -t 5.05658 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {3.0 21.0 8 ------- null} h -t 5.05658 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {3.0 21.0 -1 ------- null} r -t 5.05818 -s 1 -d 3 -p ack -e 40 -c 0 -i 12 -a 0 -x {21.0 3.0 5 ------- null} + -t 5.05818 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {3.0 21.0 11 ------- null} + -t 5.05818 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {3.0 21.0 12 ------- null} - -t 5.05818 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {3.0 21.0 9 ------- null} h -t 5.05818 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {3.0 21.0 -1 ------- null} r -t 5.05978 -s 1 -d 3 -p ack -e 40 -c 0 -i 13 -a 0 -x {21.0 3.0 6 ------- null} + -t 5.05978 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {3.0 21.0 13 ------- null} + -t 5.05978 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {3.0 21.0 14 ------- null} - -t 5.05978 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {3.0 21.0 10 ------- null} h -t 5.05978 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {3.0 21.0 -1 ------- null} - -t 5.06138 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {3.0 21.0 11 ------- null} h -t 5.06138 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {3.0 21.0 -1 ------- null} - -t 5.06298 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {3.0 21.0 12 ------- null} h -t 5.06298 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {3.0 21.0 -1 ------- null} - -t 5.06458 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {3.0 21.0 13 ------- null} h -t 5.06458 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {3.0 21.0 -1 ------- null} - -t 5.06618 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {3.0 21.0 14 ------- null} h -t 5.06618 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {3.0 21.0 -1 ------- null} r -t 5.19658 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {3.0 21.0 7 ------- null} + -t 5.19658 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {3.0 21.0 7 ------- null} - -t 5.19658 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {3.0 21.0 7 ------- null} h -t 5.19658 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {3.0 21.0 -1 ------- null} r -t 5.19818 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {3.0 21.0 8 ------- null} + -t 5.19818 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {3.0 21.0 8 ------- null} - -t 5.19818 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {3.0 21.0 8 ------- null} h -t 5.19818 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {3.0 21.0 -1 ------- null} r -t 5.19978 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {3.0 21.0 9 ------- null} + -t 5.19978 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {3.0 21.0 9 ------- null} - -t 5.19978 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {3.0 21.0 9 ------- null} h -t 5.19978 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {3.0 21.0 -1 ------- null} r -t 5.20138 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {3.0 21.0 10 ------- null} + -t 5.20138 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {3.0 21.0 10 ------- null} - -t 5.20138 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {3.0 21.0 10 ------- null} h -t 5.20138 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {3.0 21.0 -1 ------- null} r -t 5.20298 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {3.0 21.0 11 ------- null} + -t 5.20298 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {3.0 21.0 11 ------- null} - -t 5.20298 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {3.0 21.0 11 ------- null} h -t 5.20298 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {3.0 21.0 -1 ------- null} r -t 5.20458 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {3.0 21.0 12 ------- null} + -t 5.20458 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {3.0 21.0 12 ------- null} - -t 5.20458 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {3.0 21.0 12 ------- null} h -t 5.20458 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {3.0 21.0 -1 ------- null} r -t 5.20618 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {3.0 21.0 13 ------- null} + -t 5.20618 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {3.0 21.0 13 ------- null} - -t 5.20618 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {3.0 21.0 13 ------- null} h -t 5.20618 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {3.0 21.0 -1 ------- null} r -t 5.20778 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {3.0 21.0 14 ------- null} + -t 5.20778 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {3.0 21.0 14 ------- null} - -t 5.20778 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {3.0 21.0 14 ------- null} h -t 5.20778 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {3.0 21.0 -1 ------- null} r -t 5.49818 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {3.0 21.0 7 ------- null} + -t 5.49818 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {3.0 21.0 7 ------- null} - -t 5.49818 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {3.0 21.0 7 ------- null} h -t 5.49818 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {3.0 21.0 -1 ------- null} r -t 5.49978 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {3.0 21.0 8 ------- null} + -t 5.49978 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {3.0 21.0 8 ------- null} - -t 5.49978 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {3.0 21.0 8 ------- null} h -t 5.49978 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {3.0 21.0 -1 ------- null} r -t 5.50138 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {3.0 21.0 9 ------- null} + -t 5.50138 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {3.0 21.0 9 ------- null} - -t 5.50138 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {3.0 21.0 9 ------- null} h -t 5.50138 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {3.0 21.0 -1 ------- null} r -t 5.50298 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {3.0 21.0 10 ------- null} + -t 5.50298 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {3.0 21.0 10 ------- null} - -t 5.50298 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {3.0 21.0 10 ------- null} h -t 5.50298 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {3.0 21.0 -1 ------- null} r -t 5.50458 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {3.0 21.0 11 ------- null} + -t 5.50458 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {3.0 21.0 11 ------- null} - -t 5.50458 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {3.0 21.0 11 ------- null} h -t 5.50458 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {3.0 21.0 -1 ------- null} r -t 5.50618 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {3.0 21.0 12 ------- null} + -t 5.50618 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {3.0 21.0 12 ------- null} - -t 5.50618 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {3.0 21.0 12 ------- null} h -t 5.50618 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {3.0 21.0 -1 ------- null} r -t 5.50778 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {3.0 21.0 13 ------- null} + -t 5.50778 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {3.0 21.0 13 ------- null} - -t 5.50778 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {3.0 21.0 13 ------- null} h -t 5.50778 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {3.0 21.0 -1 ------- null} r -t 5.50938 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {3.0 21.0 14 ------- null} + -t 5.50938 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {3.0 21.0 14 ------- null} - -t 5.50938 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {3.0 21.0 14 ------- null} h -t 5.50938 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {3.0 21.0 -1 ------- null} r -t 5.84978 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {3.0 21.0 7 ------- null} + -t 5.84978 -s 21 -d 28 -p ack -e 40 -c 0 -i 22 -a 0 -x {21.0 3.0 7 ------- null} - -t 5.84978 -s 21 -d 28 -p ack -e 40 -c 0 -i 22 -a 0 -x {21.0 3.0 7 ------- null} h -t 5.84978 -s 21 -d 28 -p ack -e 40 -c 0 -i 22 -a 0 -x {21.0 3.0 -1 ------- null} r -t 5.85138 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {3.0 21.0 8 ------- null} + -t 5.85138 -s 21 -d 28 -p ack -e 40 -c 0 -i 23 -a 0 -x {21.0 3.0 8 ------- null} - -t 5.85138 -s 21 -d 28 -p ack -e 40 -c 0 -i 23 -a 0 -x {21.0 3.0 8 ------- null} h -t 5.85138 -s 21 -d 28 -p ack -e 40 -c 0 -i 23 -a 0 -x {21.0 3.0 -1 ------- null} r -t 5.85298 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {3.0 21.0 9 ------- null} + -t 5.85298 -s 21 -d 28 -p ack -e 40 -c 0 -i 24 -a 0 -x {21.0 3.0 9 ------- null} - -t 5.85298 -s 21 -d 28 -p ack -e 40 -c 0 -i 24 -a 0 -x {21.0 3.0 9 ------- null} h -t 5.85298 -s 21 -d 28 -p ack -e 40 -c 0 -i 24 -a 0 -x {21.0 3.0 -1 ------- null} r -t 5.85458 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {3.0 21.0 10 ------- null} + -t 5.85458 -s 21 -d 28 -p ack -e 40 -c 0 -i 25 -a 0 -x {21.0 3.0 10 ------- null} - -t 5.85458 -s 21 -d 28 -p ack -e 40 -c 0 -i 25 -a 0 -x {21.0 3.0 10 ------- null} h -t 5.85458 -s 21 -d 28 -p ack -e 40 -c 0 -i 25 -a 0 -x {21.0 3.0 -1 ------- null} r -t 5.85618 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {3.0 21.0 11 ------- null} + -t 5.85618 -s 21 -d 28 -p ack -e 40 -c 0 -i 26 -a 0 -x {21.0 3.0 11 ------- null} - -t 5.85618 -s 21 -d 28 -p ack -e 40 -c 0 -i 26 -a 0 -x {21.0 3.0 11 ------- null} h -t 5.85618 -s 21 -d 28 -p ack -e 40 -c 0 -i 26 -a 0 -x {21.0 3.0 -1 ------- null} r -t 5.85778 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {3.0 21.0 12 ------- null} + -t 5.85778 -s 21 -d 28 -p ack -e 40 -c 0 -i 27 -a 0 -x {21.0 3.0 12 ------- null} - -t 5.85778 -s 21 -d 28 -p ack -e 40 -c 0 -i 27 -a 0 -x {21.0 3.0 12 ------- null} h -t 5.85778 -s 21 -d 28 -p ack -e 40 -c 0 -i 27 -a 0 -x {21.0 3.0 -1 ------- null} r -t 5.85938 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {3.0 21.0 13 ------- null} + -t 5.85938 -s 21 -d 28 -p ack -e 40 -c 0 -i 28 -a 0 -x {21.0 3.0 13 ------- null} - -t 5.85938 -s 21 -d 28 -p ack -e 40 -c 0 -i 28 -a 0 -x {21.0 3.0 13 ------- null} h -t 5.85938 -s 21 -d 28 -p ack -e 40 -c 0 -i 28 -a 0 -x {21.0 3.0 -1 ------- null} r -t 5.86098 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {3.0 21.0 14 ------- null} + -t 5.86098 -s 21 -d 28 -p ack -e 40 -c 0 -i 29 -a 0 -x {21.0 3.0 14 ------- null} - -t 5.86098 -s 21 -d 28 -p ack -e 40 -c 0 -i 29 -a 0 -x {21.0 3.0 14 ------- null} h -t 5.86098 -s 21 -d 28 -p ack -e 40 -c 0 -i 29 -a 0 -x {21.0 3.0 -1 ------- null} r -t 6.19984 -s 21 -d 28 -p ack -e 40 -c 0 -i 22 -a 0 -x {21.0 3.0 7 ------- null} + -t 6.19984 -s 28 -d 1 -p ack -e 40 -c 0 -i 22 -a 0 -x {21.0 3.0 7 ------- null} - -t 6.19984 -s 28 -d 1 -p ack -e 40 -c 0 -i 22 -a 0 -x {21.0 3.0 7 ------- null} h -t 6.19984 -s 28 -d 1 -p ack -e 40 -c 0 -i 22 -a 0 -x {21.0 3.0 -1 ------- null} r -t 6.20144 -s 21 -d 28 -p ack -e 40 -c 0 -i 23 -a 0 -x {21.0 3.0 8 ------- null} + -t 6.20144 -s 28 -d 1 -p ack -e 40 -c 0 -i 23 -a 0 -x {21.0 3.0 8 ------- null} - -t 6.20144 -s 28 -d 1 -p ack -e 40 -c 0 -i 23 -a 0 -x {21.0 3.0 8 ------- null} h -t 6.20144 -s 28 -d 1 -p ack -e 40 -c 0 -i 23 -a 0 -x {21.0 3.0 -1 ------- null} r -t 6.20304 -s 21 -d 28 -p ack -e 40 -c 0 -i 24 -a 0 -x {21.0 3.0 9 ------- null} + -t 6.20304 -s 28 -d 1 -p ack -e 40 -c 0 -i 24 -a 0 -x {21.0 3.0 9 ------- null} - -t 6.20304 -s 28 -d 1 -p ack -e 40 -c 0 -i 24 -a 0 -x {21.0 3.0 9 ------- null} h -t 6.20304 -s 28 -d 1 -p ack -e 40 -c 0 -i 24 -a 0 -x {21.0 3.0 -1 ------- null} r -t 6.20464 -s 21 -d 28 -p ack -e 40 -c 0 -i 25 -a 0 -x {21.0 3.0 10 ------- null} + -t 6.20464 -s 28 -d 1 -p ack -e 40 -c 0 -i 25 -a 0 -x {21.0 3.0 10 ------- null} - -t 6.20464 -s 28 -d 1 -p ack -e 40 -c 0 -i 25 -a 0 -x {21.0 3.0 10 ------- null} h -t 6.20464 -s 28 -d 1 -p ack -e 40 -c 0 -i 25 -a 0 -x {21.0 3.0 -1 ------- null} r -t 6.20624 -s 21 -d 28 -p ack -e 40 -c 0 -i 26 -a 0 -x {21.0 3.0 11 ------- null} + -t 6.20624 -s 28 -d 1 -p ack -e 40 -c 0 -i 26 -a 0 -x {21.0 3.0 11 ------- null} - -t 6.20624 -s 28 -d 1 -p ack -e 40 -c 0 -i 26 -a 0 -x {21.0 3.0 11 ------- null} h -t 6.20624 -s 28 -d 1 -p ack -e 40 -c 0 -i 26 -a 0 -x {21.0 3.0 -1 ------- null} r -t 6.20784 -s 21 -d 28 -p ack -e 40 -c 0 -i 27 -a 0 -x {21.0 3.0 12 ------- null} + -t 6.20784 -s 28 -d 1 -p ack -e 40 -c 0 -i 27 -a 0 -x {21.0 3.0 12 ------- null} - -t 6.20784 -s 28 -d 1 -p ack -e 40 -c 0 -i 27 -a 0 -x {21.0 3.0 12 ------- null} h -t 6.20784 -s 28 -d 1 -p ack -e 40 -c 0 -i 27 -a 0 -x {21.0 3.0 -1 ------- null} r -t 6.20944 -s 21 -d 28 -p ack -e 40 -c 0 -i 28 -a 0 -x {21.0 3.0 13 ------- null} + -t 6.20944 -s 28 -d 1 -p ack -e 40 -c 0 -i 28 -a 0 -x {21.0 3.0 13 ------- null} - -t 6.20944 -s 28 -d 1 -p ack -e 40 -c 0 -i 28 -a 0 -x {21.0 3.0 13 ------- null} h -t 6.20944 -s 28 -d 1 -p ack -e 40 -c 0 -i 28 -a 0 -x {21.0 3.0 -1 ------- null} r -t 6.21104 -s 21 -d 28 -p ack -e 40 -c 0 -i 29 -a 0 -x {21.0 3.0 14 ------- null} + -t 6.21104 -s 28 -d 1 -p ack -e 40 -c 0 -i 29 -a 0 -x {21.0 3.0 14 ------- null} - -t 6.21104 -s 28 -d 1 -p ack -e 40 -c 0 -i 29 -a 0 -x {21.0 3.0 14 ------- null} h -t 6.21104 -s 28 -d 1 -p ack -e 40 -c 0 -i 29 -a 0 -x {21.0 3.0 -1 ------- null} r -t 6.4999 -s 28 -d 1 -p ack -e 40 -c 0 -i 22 -a 0 -x {21.0 3.0 7 ------- null} + -t 6.4999 -s 1 -d 3 -p ack -e 40 -c 0 -i 22 -a 0 -x {21.0 3.0 7 ------- null} - -t 6.4999 -s 1 -d 3 -p ack -e 40 -c 0 -i 22 -a 0 -x {21.0 3.0 7 ------- null} h -t 6.4999 -s 1 -d 3 -p ack -e 40 -c 0 -i 22 -a 0 -x {21.0 3.0 -1 ------- null} r -t 6.5015 -s 28 -d 1 -p ack -e 40 -c 0 -i 23 -a 0 -x {21.0 3.0 8 ------- null} + -t 6.5015 -s 1 -d 3 -p ack -e 40 -c 0 -i 23 -a 0 -x {21.0 3.0 8 ------- null} - -t 6.5015 -s 1 -d 3 -p ack -e 40 -c 0 -i 23 -a 0 -x {21.0 3.0 8 ------- null} h -t 6.5015 -s 1 -d 3 -p ack -e 40 -c 0 -i 23 -a 0 -x {21.0 3.0 -1 ------- null} r -t 6.5031 -s 28 -d 1 -p ack -e 40 -c 0 -i 24 -a 0 -x {21.0 3.0 9 ------- null} + -t 6.5031 -s 1 -d 3 -p ack -e 40 -c 0 -i 24 -a 0 -x {21.0 3.0 9 ------- null} - -t 6.5031 -s 1 -d 3 -p ack -e 40 -c 0 -i 24 -a 0 -x {21.0 3.0 9 ------- null} h -t 6.5031 -s 1 -d 3 -p ack -e 40 -c 0 -i 24 -a 0 -x {21.0 3.0 -1 ------- null} r -t 6.5047 -s 28 -d 1 -p ack -e 40 -c 0 -i 25 -a 0 -x {21.0 3.0 10 ------- null} + -t 6.5047 -s 1 -d 3 -p ack -e 40 -c 0 -i 25 -a 0 -x {21.0 3.0 10 ------- null} - -t 6.5047 -s 1 -d 3 -p ack -e 40 -c 0 -i 25 -a 0 -x {21.0 3.0 10 ------- null} h -t 6.5047 -s 1 -d 3 -p ack -e 40 -c 0 -i 25 -a 0 -x {21.0 3.0 -1 ------- null} r -t 6.5063 -s 28 -d 1 -p ack -e 40 -c 0 -i 26 -a 0 -x {21.0 3.0 11 ------- null} + -t 6.5063 -s 1 -d 3 -p ack -e 40 -c 0 -i 26 -a 0 -x {21.0 3.0 11 ------- null} - -t 6.5063 -s 1 -d 3 -p ack -e 40 -c 0 -i 26 -a 0 -x {21.0 3.0 11 ------- null} h -t 6.5063 -s 1 -d 3 -p ack -e 40 -c 0 -i 26 -a 0 -x {21.0 3.0 -1 ------- null} r -t 6.5079 -s 28 -d 1 -p ack -e 40 -c 0 -i 27 -a 0 -x {21.0 3.0 12 ------- null} + -t 6.5079 -s 1 -d 3 -p ack -e 40 -c 0 -i 27 -a 0 -x {21.0 3.0 12 ------- null} - -t 6.5079 -s 1 -d 3 -p ack -e 40 -c 0 -i 27 -a 0 -x {21.0 3.0 12 ------- null} h -t 6.5079 -s 1 -d 3 -p ack -e 40 -c 0 -i 27 -a 0 -x {21.0 3.0 -1 ------- null} r -t 6.5095 -s 28 -d 1 -p ack -e 40 -c 0 -i 28 -a 0 -x {21.0 3.0 13 ------- null} + -t 6.5095 -s 1 -d 3 -p ack -e 40 -c 0 -i 28 -a 0 -x {21.0 3.0 13 ------- null} - -t 6.5095 -s 1 -d 3 -p ack -e 40 -c 0 -i 28 -a 0 -x {21.0 3.0 13 ------- null} h -t 6.5095 -s 1 -d 3 -p ack -e 40 -c 0 -i 28 -a 0 -x {21.0 3.0 -1 ------- null} r -t 6.5111 -s 28 -d 1 -p ack -e 40 -c 0 -i 29 -a 0 -x {21.0 3.0 14 ------- null} + -t 6.5111 -s 1 -d 3 -p ack -e 40 -c 0 -i 29 -a 0 -x {21.0 3.0 14 ------- null} - -t 6.5111 -s 1 -d 3 -p ack -e 40 -c 0 -i 29 -a 0 -x {21.0 3.0 14 ------- null} h -t 6.5111 -s 1 -d 3 -p ack -e 40 -c 0 -i 29 -a 0 -x {21.0 3.0 -1 ------- null} r -t 6.63997 -s 1 -d 3 -p ack -e 40 -c 0 -i 22 -a 0 -x {21.0 3.0 7 ------- null} + -t 6.63997 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {3.0 21.0 15 ------- null} - -t 6.63997 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {3.0 21.0 15 ------- null} h -t 6.63997 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {3.0 21.0 -1 ------- null} + -t 6.63997 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {3.0 21.0 16 ------- null} r -t 6.64157 -s 1 -d 3 -p ack -e 40 -c 0 -i 23 -a 0 -x {21.0 3.0 8 ------- null} + -t 6.64157 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {3.0 21.0 17 ------- null} + -t 6.64157 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {3.0 21.0 18 ------- null} - -t 6.64157 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {3.0 21.0 16 ------- null} h -t 6.64157 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {3.0 21.0 -1 ------- null} r -t 6.64317 -s 1 -d 3 -p ack -e 40 -c 0 -i 24 -a 0 -x {21.0 3.0 9 ------- null} + -t 6.64317 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {3.0 21.0 19 ------- null} + -t 6.64317 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {3.0 21.0 20 ------- null} - -t 6.64317 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {3.0 21.0 17 ------- null} h -t 6.64317 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {3.0 21.0 -1 ------- null} r -t 6.64477 -s 1 -d 3 -p ack -e 40 -c 0 -i 25 -a 0 -x {21.0 3.0 10 ------- null} + -t 6.64477 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {3.0 21.0 21 ------- null} + -t 6.64477 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {3.0 21.0 22 ------- null} - -t 6.64477 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {3.0 21.0 18 ------- null} h -t 6.64477 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {3.0 21.0 -1 ------- null} r -t 6.64637 -s 1 -d 3 -p ack -e 40 -c 0 -i 26 -a 0 -x {21.0 3.0 11 ------- null} + -t 6.64637 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {3.0 21.0 23 ------- null} + -t 6.64637 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {3.0 21.0 24 ------- null} - -t 6.64637 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {3.0 21.0 19 ------- null} h -t 6.64637 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {3.0 21.0 -1 ------- null} r -t 6.64797 -s 1 -d 3 -p ack -e 40 -c 0 -i 27 -a 0 -x {21.0 3.0 12 ------- null} + -t 6.64797 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {3.0 21.0 25 ------- null} + -t 6.64797 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {3.0 21.0 26 ------- null} - -t 6.64797 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {3.0 21.0 20 ------- null} h -t 6.64797 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {3.0 21.0 -1 ------- null} r -t 6.64957 -s 1 -d 3 -p ack -e 40 -c 0 -i 28 -a 0 -x {21.0 3.0 13 ------- null} + -t 6.64957 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {3.0 21.0 27 ------- null} + -t 6.64957 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {3.0 21.0 28 ------- null} - -t 6.64957 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {3.0 21.0 21 ------- null} h -t 6.64957 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {3.0 21.0 -1 ------- null} r -t 6.65117 -s 1 -d 3 -p ack -e 40 -c 0 -i 29 -a 0 -x {21.0 3.0 14 ------- null} + -t 6.65117 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {3.0 21.0 29 ------- null} + -t 6.65117 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {3.0 21.0 30 ------- null} - -t 6.65117 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {3.0 21.0 22 ------- null} h -t 6.65117 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {3.0 21.0 -1 ------- null} - -t 6.65277 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {3.0 21.0 23 ------- null} h -t 6.65277 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {3.0 21.0 -1 ------- null} - -t 6.65437 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {3.0 21.0 24 ------- null} h -t 6.65437 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {3.0 21.0 -1 ------- null} - -t 6.65597 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {3.0 21.0 25 ------- null} h -t 6.65597 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {3.0 21.0 -1 ------- null} - -t 6.65757 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {3.0 21.0 26 ------- null} h -t 6.65757 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {3.0 21.0 -1 ------- null} - -t 6.65917 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {3.0 21.0 27 ------- null} h -t 6.65917 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {3.0 21.0 -1 ------- null} - -t 6.66077 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {3.0 21.0 28 ------- null} h -t 6.66077 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {3.0 21.0 -1 ------- null} - -t 6.66237 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {3.0 21.0 29 ------- null} h -t 6.66237 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {3.0 21.0 -1 ------- null} - -t 6.66397 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {3.0 21.0 30 ------- null} h -t 6.66397 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {3.0 21.0 -1 ------- null} r -t 6.78157 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {3.0 21.0 15 ------- null} + -t 6.78157 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {3.0 21.0 15 ------- null} - -t 6.78157 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {3.0 21.0 15 ------- null} h -t 6.78157 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {3.0 21.0 -1 ------- null} r -t 6.78317 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {3.0 21.0 16 ------- null} + -t 6.78317 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {3.0 21.0 16 ------- null} - -t 6.78317 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {3.0 21.0 16 ------- null} h -t 6.78317 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {3.0 21.0 -1 ------- null} r -t 6.78477 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {3.0 21.0 17 ------- null} + -t 6.78477 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {3.0 21.0 17 ------- null} - -t 6.78477 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {3.0 21.0 17 ------- null} h -t 6.78477 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {3.0 21.0 -1 ------- null} r -t 6.78637 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {3.0 21.0 18 ------- null} + -t 6.78637 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {3.0 21.0 18 ------- null} - -t 6.78637 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {3.0 21.0 18 ------- null} h -t 6.78637 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {3.0 21.0 -1 ------- null} r -t 6.78797 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {3.0 21.0 19 ------- null} + -t 6.78797 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {3.0 21.0 19 ------- null} - -t 6.78797 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {3.0 21.0 19 ------- null} h -t 6.78797 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {3.0 21.0 -1 ------- null} r -t 6.78957 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {3.0 21.0 20 ------- null} + -t 6.78957 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {3.0 21.0 20 ------- null} - -t 6.78957 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {3.0 21.0 20 ------- null} h -t 6.78957 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {3.0 21.0 -1 ------- null} r -t 6.79117 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {3.0 21.0 21 ------- null} + -t 6.79117 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {3.0 21.0 21 ------- null} - -t 6.79117 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {3.0 21.0 21 ------- null} h -t 6.79117 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {3.0 21.0 -1 ------- null} r -t 6.79277 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {3.0 21.0 22 ------- null} + -t 6.79277 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {3.0 21.0 22 ------- null} - -t 6.79277 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {3.0 21.0 22 ------- null} h -t 6.79277 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {3.0 21.0 -1 ------- null} r -t 6.79437 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {3.0 21.0 23 ------- null} + -t 6.79437 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {3.0 21.0 23 ------- null} - -t 6.79437 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {3.0 21.0 23 ------- null} h -t 6.79437 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {3.0 21.0 -1 ------- null} r -t 6.79597 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {3.0 21.0 24 ------- null} + -t 6.79597 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {3.0 21.0 24 ------- null} - -t 6.79597 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {3.0 21.0 24 ------- null} h -t 6.79597 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {3.0 21.0 -1 ------- null} r -t 6.79757 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {3.0 21.0 25 ------- null} + -t 6.79757 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {3.0 21.0 25 ------- null} - -t 6.79757 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {3.0 21.0 25 ------- null} h -t 6.79757 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {3.0 21.0 -1 ------- null} r -t 6.79917 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {3.0 21.0 26 ------- null} + -t 6.79917 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {3.0 21.0 26 ------- null} - -t 6.79917 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {3.0 21.0 26 ------- null} h -t 6.79917 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {3.0 21.0 -1 ------- null} r -t 6.80077 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {3.0 21.0 27 ------- null} + -t 6.80077 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {3.0 21.0 27 ------- null} - -t 6.80077 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {3.0 21.0 27 ------- null} h -t 6.80077 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {3.0 21.0 -1 ------- null} r -t 6.80237 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {3.0 21.0 28 ------- null} + -t 6.80237 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {3.0 21.0 28 ------- null} - -t 6.80237 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {3.0 21.0 28 ------- null} h -t 6.80237 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {3.0 21.0 -1 ------- null} r -t 6.80397 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {3.0 21.0 29 ------- null} + -t 6.80397 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {3.0 21.0 29 ------- null} - -t 6.80397 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {3.0 21.0 29 ------- null} h -t 6.80397 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {3.0 21.0 -1 ------- null} r -t 6.80557 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {3.0 21.0 30 ------- null} + -t 6.80557 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {3.0 21.0 30 ------- null} - -t 6.80557 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {3.0 21.0 30 ------- null} h -t 6.80557 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {3.0 21.0 -1 ------- null} r -t 7.08317 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {3.0 21.0 15 ------- null} + -t 7.08317 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {3.0 21.0 15 ------- null} - -t 7.08317 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {3.0 21.0 15 ------- null} h -t 7.08317 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {3.0 21.0 -1 ------- null} r -t 7.08477 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {3.0 21.0 16 ------- null} + -t 7.08477 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {3.0 21.0 16 ------- null} - -t 7.08477 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {3.0 21.0 16 ------- null} h -t 7.08477 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {3.0 21.0 -1 ------- null} r -t 7.08637 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {3.0 21.0 17 ------- null} + -t 7.08637 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {3.0 21.0 17 ------- null} - -t 7.08637 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {3.0 21.0 17 ------- null} h -t 7.08637 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {3.0 21.0 -1 ------- null} r -t 7.08797 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {3.0 21.0 18 ------- null} + -t 7.08797 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {3.0 21.0 18 ------- null} - -t 7.08797 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {3.0 21.0 18 ------- null} h -t 7.08797 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {3.0 21.0 -1 ------- null} r -t 7.08957 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {3.0 21.0 19 ------- null} + -t 7.08957 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {3.0 21.0 19 ------- null} - -t 7.08957 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {3.0 21.0 19 ------- null} h -t 7.08957 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {3.0 21.0 -1 ------- null} r -t 7.09117 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {3.0 21.0 20 ------- null} + -t 7.09117 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {3.0 21.0 20 ------- null} - -t 7.09117 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {3.0 21.0 20 ------- null} h -t 7.09117 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {3.0 21.0 -1 ------- null} r -t 7.09277 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {3.0 21.0 21 ------- null} + -t 7.09277 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {3.0 21.0 21 ------- null} - -t 7.09277 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {3.0 21.0 21 ------- null} h -t 7.09277 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {3.0 21.0 -1 ------- null} r -t 7.09437 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {3.0 21.0 22 ------- null} + -t 7.09437 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {3.0 21.0 22 ------- null} - -t 7.09437 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {3.0 21.0 22 ------- null} h -t 7.09437 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {3.0 21.0 -1 ------- null} r -t 7.09597 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {3.0 21.0 23 ------- null} + -t 7.09597 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {3.0 21.0 23 ------- null} - -t 7.09597 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {3.0 21.0 23 ------- null} h -t 7.09597 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {3.0 21.0 -1 ------- null} r -t 7.09757 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {3.0 21.0 24 ------- null} + -t 7.09757 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {3.0 21.0 24 ------- null} - -t 7.09757 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {3.0 21.0 24 ------- null} h -t 7.09757 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {3.0 21.0 -1 ------- null} r -t 7.09917 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {3.0 21.0 25 ------- null} + -t 7.09917 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {3.0 21.0 25 ------- null} - -t 7.09917 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {3.0 21.0 25 ------- null} h -t 7.09917 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {3.0 21.0 -1 ------- null} r -t 7.10077 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {3.0 21.0 26 ------- null} + -t 7.10077 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {3.0 21.0 26 ------- null} - -t 7.10077 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {3.0 21.0 26 ------- null} h -t 7.10077 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {3.0 21.0 -1 ------- null} r -t 7.10237 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {3.0 21.0 27 ------- null} + -t 7.10237 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {3.0 21.0 27 ------- null} - -t 7.10237 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {3.0 21.0 27 ------- null} h -t 7.10237 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {3.0 21.0 -1 ------- null} r -t 7.10397 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {3.0 21.0 28 ------- null} + -t 7.10397 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {3.0 21.0 28 ------- null} - -t 7.10397 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {3.0 21.0 28 ------- null} h -t 7.10397 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {3.0 21.0 -1 ------- null} r -t 7.10557 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {3.0 21.0 29 ------- null} + -t 7.10557 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {3.0 21.0 29 ------- null} - -t 7.10557 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {3.0 21.0 29 ------- null} h -t 7.10557 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {3.0 21.0 -1 ------- null} r -t 7.10717 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {3.0 21.0 30 ------- null} + -t 7.10717 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {3.0 21.0 30 ------- null} - -t 7.10717 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {3.0 21.0 30 ------- null} h -t 7.10717 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {3.0 21.0 -1 ------- null} r -t 7.43477 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {3.0 21.0 15 ------- null} + -t 7.43477 -s 21 -d 28 -p ack -e 40 -c 0 -i 46 -a 0 -x {21.0 3.0 15 ------- null} - -t 7.43477 -s 21 -d 28 -p ack -e 40 -c 0 -i 46 -a 0 -x {21.0 3.0 15 ------- null} h -t 7.43477 -s 21 -d 28 -p ack -e 40 -c 0 -i 46 -a 0 -x {21.0 3.0 -1 ------- null} r -t 7.43637 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {3.0 21.0 16 ------- null} + -t 7.43637 -s 21 -d 28 -p ack -e 40 -c 0 -i 47 -a 0 -x {21.0 3.0 16 ------- null} - -t 7.43637 -s 21 -d 28 -p ack -e 40 -c 0 -i 47 -a 0 -x {21.0 3.0 16 ------- null} h -t 7.43637 -s 21 -d 28 -p ack -e 40 -c 0 -i 47 -a 0 -x {21.0 3.0 -1 ------- null} r -t 7.43797 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {3.0 21.0 17 ------- null} + -t 7.43797 -s 21 -d 28 -p ack -e 40 -c 0 -i 48 -a 0 -x {21.0 3.0 17 ------- null} - -t 7.43797 -s 21 -d 28 -p ack -e 40 -c 0 -i 48 -a 0 -x {21.0 3.0 17 ------- null} h -t 7.43797 -s 21 -d 28 -p ack -e 40 -c 0 -i 48 -a 0 -x {21.0 3.0 -1 ------- null} r -t 7.43957 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {3.0 21.0 18 ------- null} + -t 7.43957 -s 21 -d 28 -p ack -e 40 -c 0 -i 49 -a 0 -x {21.0 3.0 18 ------- null} - -t 7.43957 -s 21 -d 28 -p ack -e 40 -c 0 -i 49 -a 0 -x {21.0 3.0 18 ------- null} h -t 7.43957 -s 21 -d 28 -p ack -e 40 -c 0 -i 49 -a 0 -x {21.0 3.0 -1 ------- null} r -t 7.44117 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {3.0 21.0 19 ------- null} + -t 7.44117 -s 21 -d 28 -p ack -e 40 -c 0 -i 50 -a 0 -x {21.0 3.0 19 ------- null} - -t 7.44117 -s 21 -d 28 -p ack -e 40 -c 0 -i 50 -a 0 -x {21.0 3.0 19 ------- null} h -t 7.44117 -s 21 -d 28 -p ack -e 40 -c 0 -i 50 -a 0 -x {21.0 3.0 -1 ------- null} r -t 7.44277 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {3.0 21.0 20 ------- null} + -t 7.44277 -s 21 -d 28 -p ack -e 40 -c 0 -i 51 -a 0 -x {21.0 3.0 20 ------- null} - -t 7.44277 -s 21 -d 28 -p ack -e 40 -c 0 -i 51 -a 0 -x {21.0 3.0 20 ------- null} h -t 7.44277 -s 21 -d 28 -p ack -e 40 -c 0 -i 51 -a 0 -x {21.0 3.0 -1 ------- null} r -t 7.44437 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {3.0 21.0 21 ------- null} + -t 7.44437 -s 21 -d 28 -p ack -e 40 -c 0 -i 52 -a 0 -x {21.0 3.0 21 ------- null} - -t 7.44437 -s 21 -d 28 -p ack -e 40 -c 0 -i 52 -a 0 -x {21.0 3.0 21 ------- null} h -t 7.44437 -s 21 -d 28 -p ack -e 40 -c 0 -i 52 -a 0 -x {21.0 3.0 -1 ------- null} r -t 7.44597 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {3.0 21.0 22 ------- null} + -t 7.44597 -s 21 -d 28 -p ack -e 40 -c 0 -i 53 -a 0 -x {21.0 3.0 22 ------- null} - -t 7.44597 -s 21 -d 28 -p ack -e 40 -c 0 -i 53 -a 0 -x {21.0 3.0 22 ------- null} h -t 7.44597 -s 21 -d 28 -p ack -e 40 -c 0 -i 53 -a 0 -x {21.0 3.0 -1 ------- null} r -t 7.44757 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {3.0 21.0 23 ------- null} + -t 7.44757 -s 21 -d 28 -p ack -e 40 -c 0 -i 54 -a 0 -x {21.0 3.0 23 ------- null} - -t 7.44757 -s 21 -d 28 -p ack -e 40 -c 0 -i 54 -a 0 -x {21.0 3.0 23 ------- null} h -t 7.44757 -s 21 -d 28 -p ack -e 40 -c 0 -i 54 -a 0 -x {21.0 3.0 -1 ------- null} r -t 7.44917 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {3.0 21.0 24 ------- null} + -t 7.44917 -s 21 -d 28 -p ack -e 40 -c 0 -i 55 -a 0 -x {21.0 3.0 24 ------- null} - -t 7.44917 -s 21 -d 28 -p ack -e 40 -c 0 -i 55 -a 0 -x {21.0 3.0 24 ------- null} h -t 7.44917 -s 21 -d 28 -p ack -e 40 -c 0 -i 55 -a 0 -x {21.0 3.0 -1 ------- null} r -t 7.45077 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {3.0 21.0 25 ------- null} + -t 7.45077 -s 21 -d 28 -p ack -e 40 -c 0 -i 56 -a 0 -x {21.0 3.0 25 ------- null} - -t 7.45077 -s 21 -d 28 -p ack -e 40 -c 0 -i 56 -a 0 -x {21.0 3.0 25 ------- null} h -t 7.45077 -s 21 -d 28 -p ack -e 40 -c 0 -i 56 -a 0 -x {21.0 3.0 -1 ------- null} r -t 7.45237 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {3.0 21.0 26 ------- null} + -t 7.45237 -s 21 -d 28 -p ack -e 40 -c 0 -i 57 -a 0 -x {21.0 3.0 26 ------- null} - -t 7.45237 -s 21 -d 28 -p ack -e 40 -c 0 -i 57 -a 0 -x {21.0 3.0 26 ------- null} h -t 7.45237 -s 21 -d 28 -p ack -e 40 -c 0 -i 57 -a 0 -x {21.0 3.0 -1 ------- null} r -t 7.45397 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {3.0 21.0 27 ------- null} + -t 7.45397 -s 21 -d 28 -p ack -e 40 -c 0 -i 58 -a 0 -x {21.0 3.0 27 ------- null} - -t 7.45397 -s 21 -d 28 -p ack -e 40 -c 0 -i 58 -a 0 -x {21.0 3.0 27 ------- null} h -t 7.45397 -s 21 -d 28 -p ack -e 40 -c 0 -i 58 -a 0 -x {21.0 3.0 -1 ------- null} r -t 7.45557 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {3.0 21.0 28 ------- null} + -t 7.45557 -s 21 -d 28 -p ack -e 40 -c 0 -i 59 -a 0 -x {21.0 3.0 28 ------- null} - -t 7.45557 -s 21 -d 28 -p ack -e 40 -c 0 -i 59 -a 0 -x {21.0 3.0 28 ------- null} h -t 7.45557 -s 21 -d 28 -p ack -e 40 -c 0 -i 59 -a 0 -x {21.0 3.0 -1 ------- null} r -t 7.45717 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {3.0 21.0 29 ------- null} + -t 7.45717 -s 21 -d 28 -p ack -e 40 -c 0 -i 60 -a 0 -x {21.0 3.0 29 ------- null} - -t 7.45717 -s 21 -d 28 -p ack -e 40 -c 0 -i 60 -a 0 -x {21.0 3.0 29 ------- null} h -t 7.45717 -s 21 -d 28 -p ack -e 40 -c 0 -i 60 -a 0 -x {21.0 3.0 -1 ------- null} r -t 7.45877 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {3.0 21.0 30 ------- null} + -t 7.45877 -s 21 -d 28 -p ack -e 40 -c 0 -i 61 -a 0 -x {21.0 3.0 30 ------- null} - -t 7.45877 -s 21 -d 28 -p ack -e 40 -c 0 -i 61 -a 0 -x {21.0 3.0 30 ------- null} h -t 7.45877 -s 21 -d 28 -p ack -e 40 -c 0 -i 61 -a 0 -x {21.0 3.0 -1 ------- null} r -t 7.78483 -s 21 -d 28 -p ack -e 40 -c 0 -i 46 -a 0 -x {21.0 3.0 15 ------- null} + -t 7.78483 -s 28 -d 1 -p ack -e 40 -c 0 -i 46 -a 0 -x {21.0 3.0 15 ------- null} - -t 7.78483 -s 28 -d 1 -p ack -e 40 -c 0 -i 46 -a 0 -x {21.0 3.0 15 ------- null} h -t 7.78483 -s 28 -d 1 -p ack -e 40 -c 0 -i 46 -a 0 -x {21.0 3.0 -1 ------- null} r -t 7.78643 -s 21 -d 28 -p ack -e 40 -c 0 -i 47 -a 0 -x {21.0 3.0 16 ------- null} + -t 7.78643 -s 28 -d 1 -p ack -e 40 -c 0 -i 47 -a 0 -x {21.0 3.0 16 ------- null} - -t 7.78643 -s 28 -d 1 -p ack -e 40 -c 0 -i 47 -a 0 -x {21.0 3.0 16 ------- null} h -t 7.78643 -s 28 -d 1 -p ack -e 40 -c 0 -i 47 -a 0 -x {21.0 3.0 -1 ------- null} r -t 7.78803 -s 21 -d 28 -p ack -e 40 -c 0 -i 48 -a 0 -x {21.0 3.0 17 ------- null} + -t 7.78803 -s 28 -d 1 -p ack -e 40 -c 0 -i 48 -a 0 -x {21.0 3.0 17 ------- null} - -t 7.78803 -s 28 -d 1 -p ack -e 40 -c 0 -i 48 -a 0 -x {21.0 3.0 17 ------- null} h -t 7.78803 -s 28 -d 1 -p ack -e 40 -c 0 -i 48 -a 0 -x {21.0 3.0 -1 ------- null} r -t 7.78963 -s 21 -d 28 -p ack -e 40 -c 0 -i 49 -a 0 -x {21.0 3.0 18 ------- null} + -t 7.78963 -s 28 -d 1 -p ack -e 40 -c 0 -i 49 -a 0 -x {21.0 3.0 18 ------- null} - -t 7.78963 -s 28 -d 1 -p ack -e 40 -c 0 -i 49 -a 0 -x {21.0 3.0 18 ------- null} h -t 7.78963 -s 28 -d 1 -p ack -e 40 -c 0 -i 49 -a 0 -x {21.0 3.0 -1 ------- null} r -t 7.79123 -s 21 -d 28 -p ack -e 40 -c 0 -i 50 -a 0 -x {21.0 3.0 19 ------- null} + -t 7.79123 -s 28 -d 1 -p ack -e 40 -c 0 -i 50 -a 0 -x {21.0 3.0 19 ------- null} - -t 7.79123 -s 28 -d 1 -p ack -e 40 -c 0 -i 50 -a 0 -x {21.0 3.0 19 ------- null} h -t 7.79123 -s 28 -d 1 -p ack -e 40 -c 0 -i 50 -a 0 -x {21.0 3.0 -1 ------- null} r -t 7.79283 -s 21 -d 28 -p ack -e 40 -c 0 -i 51 -a 0 -x {21.0 3.0 20 ------- null} + -t 7.79283 -s 28 -d 1 -p ack -e 40 -c 0 -i 51 -a 0 -x {21.0 3.0 20 ------- null} - -t 7.79283 -s 28 -d 1 -p ack -e 40 -c 0 -i 51 -a 0 -x {21.0 3.0 20 ------- null} h -t 7.79283 -s 28 -d 1 -p ack -e 40 -c 0 -i 51 -a 0 -x {21.0 3.0 -1 ------- null} r -t 7.79443 -s 21 -d 28 -p ack -e 40 -c 0 -i 52 -a 0 -x {21.0 3.0 21 ------- null} + -t 7.79443 -s 28 -d 1 -p ack -e 40 -c 0 -i 52 -a 0 -x {21.0 3.0 21 ------- null} - -t 7.79443 -s 28 -d 1 -p ack -e 40 -c 0 -i 52 -a 0 -x {21.0 3.0 21 ------- null} h -t 7.79443 -s 28 -d 1 -p ack -e 40 -c 0 -i 52 -a 0 -x {21.0 3.0 -1 ------- null} r -t 7.79603 -s 21 -d 28 -p ack -e 40 -c 0 -i 53 -a 0 -x {21.0 3.0 22 ------- null} + -t 7.79603 -s 28 -d 1 -p ack -e 40 -c 0 -i 53 -a 0 -x {21.0 3.0 22 ------- null} - -t 7.79603 -s 28 -d 1 -p ack -e 40 -c 0 -i 53 -a 0 -x {21.0 3.0 22 ------- null} h -t 7.79603 -s 28 -d 1 -p ack -e 40 -c 0 -i 53 -a 0 -x {21.0 3.0 -1 ------- null} r -t 7.79763 -s 21 -d 28 -p ack -e 40 -c 0 -i 54 -a 0 -x {21.0 3.0 23 ------- null} + -t 7.79763 -s 28 -d 1 -p ack -e 40 -c 0 -i 54 -a 0 -x {21.0 3.0 23 ------- null} - -t 7.79763 -s 28 -d 1 -p ack -e 40 -c 0 -i 54 -a 0 -x {21.0 3.0 23 ------- null} h -t 7.79763 -s 28 -d 1 -p ack -e 40 -c 0 -i 54 -a 0 -x {21.0 3.0 -1 ------- null} r -t 7.79923 -s 21 -d 28 -p ack -e 40 -c 0 -i 55 -a 0 -x {21.0 3.0 24 ------- null} + -t 7.79923 -s 28 -d 1 -p ack -e 40 -c 0 -i 55 -a 0 -x {21.0 3.0 24 ------- null} - -t 7.79923 -s 28 -d 1 -p ack -e 40 -c 0 -i 55 -a 0 -x {21.0 3.0 24 ------- null} h -t 7.79923 -s 28 -d 1 -p ack -e 40 -c 0 -i 55 -a 0 -x {21.0 3.0 -1 ------- null} r -t 7.80083 -s 21 -d 28 -p ack -e 40 -c 0 -i 56 -a 0 -x {21.0 3.0 25 ------- null} + -t 7.80083 -s 28 -d 1 -p ack -e 40 -c 0 -i 56 -a 0 -x {21.0 3.0 25 ------- null} - -t 7.80083 -s 28 -d 1 -p ack -e 40 -c 0 -i 56 -a 0 -x {21.0 3.0 25 ------- null} h -t 7.80083 -s 28 -d 1 -p ack -e 40 -c 0 -i 56 -a 0 -x {21.0 3.0 -1 ------- null} r -t 7.80243 -s 21 -d 28 -p ack -e 40 -c 0 -i 57 -a 0 -x {21.0 3.0 26 ------- null} + -t 7.80243 -s 28 -d 1 -p ack -e 40 -c 0 -i 57 -a 0 -x {21.0 3.0 26 ------- null} - -t 7.80243 -s 28 -d 1 -p ack -e 40 -c 0 -i 57 -a 0 -x {21.0 3.0 26 ------- null} h -t 7.80243 -s 28 -d 1 -p ack -e 40 -c 0 -i 57 -a 0 -x {21.0 3.0 -1 ------- null} r -t 7.80403 -s 21 -d 28 -p ack -e 40 -c 0 -i 58 -a 0 -x {21.0 3.0 27 ------- null} + -t 7.80403 -s 28 -d 1 -p ack -e 40 -c 0 -i 58 -a 0 -x {21.0 3.0 27 ------- null} - -t 7.80403 -s 28 -d 1 -p ack -e 40 -c 0 -i 58 -a 0 -x {21.0 3.0 27 ------- null} h -t 7.80403 -s 28 -d 1 -p ack -e 40 -c 0 -i 58 -a 0 -x {21.0 3.0 -1 ------- null} r -t 7.80563 -s 21 -d 28 -p ack -e 40 -c 0 -i 59 -a 0 -x {21.0 3.0 28 ------- null} + -t 7.80563 -s 28 -d 1 -p ack -e 40 -c 0 -i 59 -a 0 -x {21.0 3.0 28 ------- null} - -t 7.80563 -s 28 -d 1 -p ack -e 40 -c 0 -i 59 -a 0 -x {21.0 3.0 28 ------- null} h -t 7.80563 -s 28 -d 1 -p ack -e 40 -c 0 -i 59 -a 0 -x {21.0 3.0 -1 ------- null} r -t 7.80723 -s 21 -d 28 -p ack -e 40 -c 0 -i 60 -a 0 -x {21.0 3.0 29 ------- null} + -t 7.80723 -s 28 -d 1 -p ack -e 40 -c 0 -i 60 -a 0 -x {21.0 3.0 29 ------- null} - -t 7.80723 -s 28 -d 1 -p ack -e 40 -c 0 -i 60 -a 0 -x {21.0 3.0 29 ------- null} h -t 7.80723 -s 28 -d 1 -p ack -e 40 -c 0 -i 60 -a 0 -x {21.0 3.0 -1 ------- null} r -t 7.80883 -s 21 -d 28 -p ack -e 40 -c 0 -i 61 -a 0 -x {21.0 3.0 30 ------- null} + -t 7.80883 -s 28 -d 1 -p ack -e 40 -c 0 -i 61 -a 0 -x {21.0 3.0 30 ------- null} - -t 7.80883 -s 28 -d 1 -p ack -e 40 -c 0 -i 61 -a 0 -x {21.0 3.0 30 ------- null} h -t 7.80883 -s 28 -d 1 -p ack -e 40 -c 0 -i 61 -a 0 -x {21.0 3.0 -1 ------- null} r -t 8.0849 -s 28 -d 1 -p ack -e 40 -c 0 -i 46 -a 0 -x {21.0 3.0 15 ------- null} + -t 8.0849 -s 1 -d 3 -p ack -e 40 -c 0 -i 46 -a 0 -x {21.0 3.0 15 ------- null} - -t 8.0849 -s 1 -d 3 -p ack -e 40 -c 0 -i 46 -a 0 -x {21.0 3.0 15 ------- null} h -t 8.0849 -s 1 -d 3 -p ack -e 40 -c 0 -i 46 -a 0 -x {21.0 3.0 -1 ------- null} r -t 8.0865 -s 28 -d 1 -p ack -e 40 -c 0 -i 47 -a 0 -x {21.0 3.0 16 ------- null} + -t 8.0865 -s 1 -d 3 -p ack -e 40 -c 0 -i 47 -a 0 -x {21.0 3.0 16 ------- null} - -t 8.0865 -s 1 -d 3 -p ack -e 40 -c 0 -i 47 -a 0 -x {21.0 3.0 16 ------- null} h -t 8.0865 -s 1 -d 3 -p ack -e 40 -c 0 -i 47 -a 0 -x {21.0 3.0 -1 ------- null} r -t 8.0881 -s 28 -d 1 -p ack -e 40 -c 0 -i 48 -a 0 -x {21.0 3.0 17 ------- null} + -t 8.0881 -s 1 -d 3 -p ack -e 40 -c 0 -i 48 -a 0 -x {21.0 3.0 17 ------- null} - -t 8.0881 -s 1 -d 3 -p ack -e 40 -c 0 -i 48 -a 0 -x {21.0 3.0 17 ------- null} h -t 8.0881 -s 1 -d 3 -p ack -e 40 -c 0 -i 48 -a 0 -x {21.0 3.0 -1 ------- null} r -t 8.0897 -s 28 -d 1 -p ack -e 40 -c 0 -i 49 -a 0 -x {21.0 3.0 18 ------- null} + -t 8.0897 -s 1 -d 3 -p ack -e 40 -c 0 -i 49 -a 0 -x {21.0 3.0 18 ------- null} - -t 8.0897 -s 1 -d 3 -p ack -e 40 -c 0 -i 49 -a 0 -x {21.0 3.0 18 ------- null} h -t 8.0897 -s 1 -d 3 -p ack -e 40 -c 0 -i 49 -a 0 -x {21.0 3.0 -1 ------- null} r -t 8.0913 -s 28 -d 1 -p ack -e 40 -c 0 -i 50 -a 0 -x {21.0 3.0 19 ------- null} + -t 8.0913 -s 1 -d 3 -p ack -e 40 -c 0 -i 50 -a 0 -x {21.0 3.0 19 ------- null} - -t 8.0913 -s 1 -d 3 -p ack -e 40 -c 0 -i 50 -a 0 -x {21.0 3.0 19 ------- null} h -t 8.0913 -s 1 -d 3 -p ack -e 40 -c 0 -i 50 -a 0 -x {21.0 3.0 -1 ------- null} r -t 8.0929 -s 28 -d 1 -p ack -e 40 -c 0 -i 51 -a 0 -x {21.0 3.0 20 ------- null} + -t 8.0929 -s 1 -d 3 -p ack -e 40 -c 0 -i 51 -a 0 -x {21.0 3.0 20 ------- null} - -t 8.0929 -s 1 -d 3 -p ack -e 40 -c 0 -i 51 -a 0 -x {21.0 3.0 20 ------- null} h -t 8.0929 -s 1 -d 3 -p ack -e 40 -c 0 -i 51 -a 0 -x {21.0 3.0 -1 ------- null} r -t 8.0945 -s 28 -d 1 -p ack -e 40 -c 0 -i 52 -a 0 -x {21.0 3.0 21 ------- null} + -t 8.0945 -s 1 -d 3 -p ack -e 40 -c 0 -i 52 -a 0 -x {21.0 3.0 21 ------- null} - -t 8.0945 -s 1 -d 3 -p ack -e 40 -c 0 -i 52 -a 0 -x {21.0 3.0 21 ------- null} h -t 8.0945 -s 1 -d 3 -p ack -e 40 -c 0 -i 52 -a 0 -x {21.0 3.0 -1 ------- null} r -t 8.0961 -s 28 -d 1 -p ack -e 40 -c 0 -i 53 -a 0 -x {21.0 3.0 22 ------- null} + -t 8.0961 -s 1 -d 3 -p ack -e 40 -c 0 -i 53 -a 0 -x {21.0 3.0 22 ------- null} - -t 8.0961 -s 1 -d 3 -p ack -e 40 -c 0 -i 53 -a 0 -x {21.0 3.0 22 ------- null} h -t 8.0961 -s 1 -d 3 -p ack -e 40 -c 0 -i 53 -a 0 -x {21.0 3.0 -1 ------- null} r -t 8.0977 -s 28 -d 1 -p ack -e 40 -c 0 -i 54 -a 0 -x {21.0 3.0 23 ------- null} + -t 8.0977 -s 1 -d 3 -p ack -e 40 -c 0 -i 54 -a 0 -x {21.0 3.0 23 ------- null} - -t 8.0977 -s 1 -d 3 -p ack -e 40 -c 0 -i 54 -a 0 -x {21.0 3.0 23 ------- null} h -t 8.0977 -s 1 -d 3 -p ack -e 40 -c 0 -i 54 -a 0 -x {21.0 3.0 -1 ------- null} r -t 8.0993 -s 28 -d 1 -p ack -e 40 -c 0 -i 55 -a 0 -x {21.0 3.0 24 ------- null} + -t 8.0993 -s 1 -d 3 -p ack -e 40 -c 0 -i 55 -a 0 -x {21.0 3.0 24 ------- null} - -t 8.0993 -s 1 -d 3 -p ack -e 40 -c 0 -i 55 -a 0 -x {21.0 3.0 24 ------- null} h -t 8.0993 -s 1 -d 3 -p ack -e 40 -c 0 -i 55 -a 0 -x {21.0 3.0 -1 ------- null} r -t 8.1009 -s 28 -d 1 -p ack -e 40 -c 0 -i 56 -a 0 -x {21.0 3.0 25 ------- null} + -t 8.1009 -s 1 -d 3 -p ack -e 40 -c 0 -i 56 -a 0 -x {21.0 3.0 25 ------- null} - -t 8.1009 -s 1 -d 3 -p ack -e 40 -c 0 -i 56 -a 0 -x {21.0 3.0 25 ------- null} h -t 8.1009 -s 1 -d 3 -p ack -e 40 -c 0 -i 56 -a 0 -x {21.0 3.0 -1 ------- null} r -t 8.1025 -s 28 -d 1 -p ack -e 40 -c 0 -i 57 -a 0 -x {21.0 3.0 26 ------- null} + -t 8.1025 -s 1 -d 3 -p ack -e 40 -c 0 -i 57 -a 0 -x {21.0 3.0 26 ------- null} - -t 8.1025 -s 1 -d 3 -p ack -e 40 -c 0 -i 57 -a 0 -x {21.0 3.0 26 ------- null} h -t 8.1025 -s 1 -d 3 -p ack -e 40 -c 0 -i 57 -a 0 -x {21.0 3.0 -1 ------- null} r -t 8.1041 -s 28 -d 1 -p ack -e 40 -c 0 -i 58 -a 0 -x {21.0 3.0 27 ------- null} + -t 8.1041 -s 1 -d 3 -p ack -e 40 -c 0 -i 58 -a 0 -x {21.0 3.0 27 ------- null} - -t 8.1041 -s 1 -d 3 -p ack -e 40 -c 0 -i 58 -a 0 -x {21.0 3.0 27 ------- null} h -t 8.1041 -s 1 -d 3 -p ack -e 40 -c 0 -i 58 -a 0 -x {21.0 3.0 -1 ------- null} r -t 8.1057 -s 28 -d 1 -p ack -e 40 -c 0 -i 59 -a 0 -x {21.0 3.0 28 ------- null} + -t 8.1057 -s 1 -d 3 -p ack -e 40 -c 0 -i 59 -a 0 -x {21.0 3.0 28 ------- null} - -t 8.1057 -s 1 -d 3 -p ack -e 40 -c 0 -i 59 -a 0 -x {21.0 3.0 28 ------- null} h -t 8.1057 -s 1 -d 3 -p ack -e 40 -c 0 -i 59 -a 0 -x {21.0 3.0 -1 ------- null} r -t 8.1073 -s 28 -d 1 -p ack -e 40 -c 0 -i 60 -a 0 -x {21.0 3.0 29 ------- null} + -t 8.1073 -s 1 -d 3 -p ack -e 40 -c 0 -i 60 -a 0 -x {21.0 3.0 29 ------- null} - -t 8.1073 -s 1 -d 3 -p ack -e 40 -c 0 -i 60 -a 0 -x {21.0 3.0 29 ------- null} h -t 8.1073 -s 1 -d 3 -p ack -e 40 -c 0 -i 60 -a 0 -x {21.0 3.0 -1 ------- null} r -t 8.1089 -s 28 -d 1 -p ack -e 40 -c 0 -i 61 -a 0 -x {21.0 3.0 30 ------- null} + -t 8.1089 -s 1 -d 3 -p ack -e 40 -c 0 -i 61 -a 0 -x {21.0 3.0 30 ------- null} - -t 8.1089 -s 1 -d 3 -p ack -e 40 -c 0 -i 61 -a 0 -x {21.0 3.0 30 ------- null} h -t 8.1089 -s 1 -d 3 -p ack -e 40 -c 0 -i 61 -a 0 -x {21.0 3.0 -1 ------- null} r -t 8.22496 -s 1 -d 3 -p ack -e 40 -c 0 -i 46 -a 0 -x {21.0 3.0 15 ------- null} + -t 8.22496 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {3.0 21.0 31 ------- null} - -t 8.22496 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {3.0 21.0 31 ------- null} h -t 8.22496 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {3.0 21.0 -1 ------- null} + -t 8.22496 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {3.0 21.0 32 ------- null} r -t 8.22656 -s 1 -d 3 -p ack -e 40 -c 0 -i 47 -a 0 -x {21.0 3.0 16 ------- null} + -t 8.22656 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 64 -a 0 -x {3.0 21.0 33 ------- null} + -t 8.22656 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {3.0 21.0 34 ------- null} - -t 8.22656 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {3.0 21.0 32 ------- null} h -t 8.22656 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.22816 -s 1 -d 3 -p ack -e 40 -c 0 -i 48 -a 0 -x {21.0 3.0 17 ------- null} + -t 8.22816 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {3.0 21.0 35 ------- null} + -t 8.22816 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {3.0 21.0 36 ------- null} - -t 8.22816 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 64 -a 0 -x {3.0 21.0 33 ------- null} h -t 8.22816 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 64 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.22976 -s 1 -d 3 -p ack -e 40 -c 0 -i 49 -a 0 -x {21.0 3.0 18 ------- null} + -t 8.22976 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {3.0 21.0 37 ------- null} + -t 8.22976 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {3.0 21.0 38 ------- null} - -t 8.22976 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {3.0 21.0 34 ------- null} h -t 8.22976 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.23136 -s 1 -d 3 -p ack -e 40 -c 0 -i 50 -a 0 -x {21.0 3.0 19 ------- null} + -t 8.23136 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {3.0 21.0 39 ------- null} - -t 8.23136 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {3.0 21.0 35 ------- null} h -t 8.23136 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.23296 -s 1 -d 3 -p ack -e 40 -c 0 -i 51 -a 0 -x {21.0 3.0 20 ------- null} + -t 8.23296 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {3.0 21.0 40 ------- null} - -t 8.23296 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {3.0 21.0 36 ------- null} h -t 8.23296 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.23456 -s 1 -d 3 -p ack -e 40 -c 0 -i 52 -a 0 -x {21.0 3.0 21 ------- null} + -t 8.23456 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {3.0 21.0 41 ------- null} - -t 8.23456 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {3.0 21.0 37 ------- null} h -t 8.23456 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.23616 -s 1 -d 3 -p ack -e 40 -c 0 -i 53 -a 0 -x {21.0 3.0 22 ------- null} + -t 8.23616 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {3.0 21.0 42 ------- null} - -t 8.23616 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {3.0 21.0 38 ------- null} h -t 8.23616 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.23776 -s 1 -d 3 -p ack -e 40 -c 0 -i 54 -a 0 -x {21.0 3.0 23 ------- null} + -t 8.23776 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 74 -a 0 -x {3.0 21.0 43 ------- null} - -t 8.23776 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {3.0 21.0 39 ------- null} h -t 8.23776 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.23936 -s 1 -d 3 -p ack -e 40 -c 0 -i 55 -a 0 -x {21.0 3.0 24 ------- null} + -t 8.23936 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {3.0 21.0 44 ------- null} - -t 8.23936 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {3.0 21.0 40 ------- null} h -t 8.23936 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.24096 -s 1 -d 3 -p ack -e 40 -c 0 -i 56 -a 0 -x {21.0 3.0 25 ------- null} + -t 8.24096 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {3.0 21.0 45 ------- null} - -t 8.24096 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {3.0 21.0 41 ------- null} h -t 8.24096 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.24256 -s 1 -d 3 -p ack -e 40 -c 0 -i 57 -a 0 -x {21.0 3.0 26 ------- null} + -t 8.24256 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {3.0 21.0 46 ------- null} - -t 8.24256 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {3.0 21.0 42 ------- null} h -t 8.24256 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.24416 -s 1 -d 3 -p ack -e 40 -c 0 -i 58 -a 0 -x {21.0 3.0 27 ------- null} + -t 8.24416 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 78 -a 0 -x {3.0 21.0 47 ------- null} - -t 8.24416 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 74 -a 0 -x {3.0 21.0 43 ------- null} h -t 8.24416 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 74 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.24576 -s 1 -d 3 -p ack -e 40 -c 0 -i 59 -a 0 -x {21.0 3.0 28 ------- null} + -t 8.24576 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {3.0 21.0 48 ------- null} - -t 8.24576 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {3.0 21.0 44 ------- null} h -t 8.24576 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.24736 -s 1 -d 3 -p ack -e 40 -c 0 -i 60 -a 0 -x {21.0 3.0 29 ------- null} + -t 8.24736 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 80 -a 0 -x {3.0 21.0 49 ------- null} - -t 8.24736 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {3.0 21.0 45 ------- null} h -t 8.24736 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.24896 -s 1 -d 3 -p ack -e 40 -c 0 -i 61 -a 0 -x {21.0 3.0 30 ------- null} + -t 8.24896 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {3.0 21.0 50 ------- null} - -t 8.24896 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {3.0 21.0 46 ------- null} h -t 8.24896 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {3.0 21.0 -1 ------- null} - -t 8.25056 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 78 -a 0 -x {3.0 21.0 47 ------- null} h -t 8.25056 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 78 -a 0 -x {3.0 21.0 -1 ------- null} - -t 8.25216 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {3.0 21.0 48 ------- null} h -t 8.25216 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {3.0 21.0 -1 ------- null} - -t 8.25376 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 80 -a 0 -x {3.0 21.0 49 ------- null} h -t 8.25376 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 80 -a 0 -x {3.0 21.0 -1 ------- null} - -t 8.25536 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {3.0 21.0 50 ------- null} h -t 8.25536 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.36656 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {3.0 21.0 31 ------- null} + -t 8.36656 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {3.0 21.0 31 ------- null} - -t 8.36656 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {3.0 21.0 31 ------- null} h -t 8.36656 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.36816 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {3.0 21.0 32 ------- null} + -t 8.36816 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {3.0 21.0 32 ------- null} - -t 8.36816 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {3.0 21.0 32 ------- null} h -t 8.36816 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.36976 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 64 -a 0 -x {3.0 21.0 33 ------- null} + -t 8.36976 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 64 -a 0 -x {3.0 21.0 33 ------- null} - -t 8.36976 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 64 -a 0 -x {3.0 21.0 33 ------- null} h -t 8.36976 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 64 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.37136 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {3.0 21.0 34 ------- null} + -t 8.37136 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {3.0 21.0 34 ------- null} - -t 8.37136 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {3.0 21.0 34 ------- null} h -t 8.37136 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.37296 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {3.0 21.0 35 ------- null} + -t 8.37296 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {3.0 21.0 35 ------- null} - -t 8.37296 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {3.0 21.0 35 ------- null} h -t 8.37296 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.37456 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {3.0 21.0 36 ------- null} + -t 8.37456 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {3.0 21.0 36 ------- null} - -t 8.37456 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {3.0 21.0 36 ------- null} h -t 8.37456 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.37616 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {3.0 21.0 37 ------- null} + -t 8.37616 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {3.0 21.0 37 ------- null} - -t 8.37616 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {3.0 21.0 37 ------- null} h -t 8.37616 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.37776 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {3.0 21.0 38 ------- null} + -t 8.37776 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {3.0 21.0 38 ------- null} - -t 8.37776 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {3.0 21.0 38 ------- null} h -t 8.37776 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.37936 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {3.0 21.0 39 ------- null} + -t 8.37936 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {3.0 21.0 39 ------- null} - -t 8.37936 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {3.0 21.0 39 ------- null} h -t 8.37936 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.38096 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {3.0 21.0 40 ------- null} + -t 8.38096 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {3.0 21.0 40 ------- null} - -t 8.38096 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {3.0 21.0 40 ------- null} h -t 8.38096 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.38256 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {3.0 21.0 41 ------- null} + -t 8.38256 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {3.0 21.0 41 ------- null} - -t 8.38256 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {3.0 21.0 41 ------- null} h -t 8.38256 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.38416 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {3.0 21.0 42 ------- null} + -t 8.38416 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {3.0 21.0 42 ------- null} - -t 8.38416 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {3.0 21.0 42 ------- null} h -t 8.38416 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.38576 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 74 -a 0 -x {3.0 21.0 43 ------- null} + -t 8.38576 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 74 -a 0 -x {3.0 21.0 43 ------- null} - -t 8.38576 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 74 -a 0 -x {3.0 21.0 43 ------- null} h -t 8.38576 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 74 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.38736 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {3.0 21.0 44 ------- null} + -t 8.38736 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {3.0 21.0 44 ------- null} - -t 8.38736 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {3.0 21.0 44 ------- null} h -t 8.38736 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.38896 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {3.0 21.0 45 ------- null} + -t 8.38896 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {3.0 21.0 45 ------- null} - -t 8.38896 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {3.0 21.0 45 ------- null} h -t 8.38896 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.39056 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {3.0 21.0 46 ------- null} + -t 8.39056 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {3.0 21.0 46 ------- null} - -t 8.39056 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {3.0 21.0 46 ------- null} h -t 8.39056 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.39216 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 78 -a 0 -x {3.0 21.0 47 ------- null} + -t 8.39216 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 78 -a 0 -x {3.0 21.0 47 ------- null} - -t 8.39216 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 78 -a 0 -x {3.0 21.0 47 ------- null} h -t 8.39216 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 78 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.39376 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {3.0 21.0 48 ------- null} + -t 8.39376 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {3.0 21.0 48 ------- null} - -t 8.39376 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {3.0 21.0 48 ------- null} h -t 8.39376 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.39536 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 80 -a 0 -x {3.0 21.0 49 ------- null} + -t 8.39536 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 80 -a 0 -x {3.0 21.0 49 ------- null} - -t 8.39536 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 80 -a 0 -x {3.0 21.0 49 ------- null} h -t 8.39536 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 80 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.39696 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {3.0 21.0 50 ------- null} + -t 8.39696 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {3.0 21.0 50 ------- null} - -t 8.39696 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {3.0 21.0 50 ------- null} h -t 8.39696 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.66816 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {3.0 21.0 31 ------- null} + -t 8.66816 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {3.0 21.0 31 ------- null} - -t 8.66816 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {3.0 21.0 31 ------- null} h -t 8.66816 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.66976 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {3.0 21.0 32 ------- null} + -t 8.66976 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {3.0 21.0 32 ------- null} - -t 8.66976 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {3.0 21.0 32 ------- null} h -t 8.66976 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.67136 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 64 -a 0 -x {3.0 21.0 33 ------- null} + -t 8.67136 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 64 -a 0 -x {3.0 21.0 33 ------- null} - -t 8.67136 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 64 -a 0 -x {3.0 21.0 33 ------- null} h -t 8.67136 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 64 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.67296 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {3.0 21.0 34 ------- null} + -t 8.67296 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {3.0 21.0 34 ------- null} - -t 8.67296 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {3.0 21.0 34 ------- null} h -t 8.67296 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.67456 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {3.0 21.0 35 ------- null} + -t 8.67456 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {3.0 21.0 35 ------- null} - -t 8.67456 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {3.0 21.0 35 ------- null} h -t 8.67456 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.67616 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {3.0 21.0 36 ------- null} + -t 8.67616 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {3.0 21.0 36 ------- null} - -t 8.67616 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {3.0 21.0 36 ------- null} h -t 8.67616 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.67776 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {3.0 21.0 37 ------- null} + -t 8.67776 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {3.0 21.0 37 ------- null} - -t 8.67776 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {3.0 21.0 37 ------- null} h -t 8.67776 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.67936 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {3.0 21.0 38 ------- null} + -t 8.67936 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {3.0 21.0 38 ------- null} - -t 8.67936 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {3.0 21.0 38 ------- null} h -t 8.67936 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.68096 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {3.0 21.0 39 ------- null} + -t 8.68096 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {3.0 21.0 39 ------- null} - -t 8.68096 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {3.0 21.0 39 ------- null} h -t 8.68096 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.68256 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {3.0 21.0 40 ------- null} + -t 8.68256 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {3.0 21.0 40 ------- null} - -t 8.68256 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {3.0 21.0 40 ------- null} h -t 8.68256 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.68416 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {3.0 21.0 41 ------- null} + -t 8.68416 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {3.0 21.0 41 ------- null} - -t 8.68416 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {3.0 21.0 41 ------- null} h -t 8.68416 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.68576 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {3.0 21.0 42 ------- null} + -t 8.68576 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {3.0 21.0 42 ------- null} - -t 8.68576 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {3.0 21.0 42 ------- null} h -t 8.68576 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.68736 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 74 -a 0 -x {3.0 21.0 43 ------- null} + -t 8.68736 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 74 -a 0 -x {3.0 21.0 43 ------- null} - -t 8.68736 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 74 -a 0 -x {3.0 21.0 43 ------- null} h -t 8.68736 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 74 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.68896 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {3.0 21.0 44 ------- null} + -t 8.68896 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {3.0 21.0 44 ------- null} - -t 8.68896 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {3.0 21.0 44 ------- null} h -t 8.68896 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.69056 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {3.0 21.0 45 ------- null} + -t 8.69056 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {3.0 21.0 45 ------- null} - -t 8.69056 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {3.0 21.0 45 ------- null} h -t 8.69056 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.69216 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {3.0 21.0 46 ------- null} + -t 8.69216 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {3.0 21.0 46 ------- null} - -t 8.69216 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {3.0 21.0 46 ------- null} h -t 8.69216 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.69376 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 78 -a 0 -x {3.0 21.0 47 ------- null} + -t 8.69376 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 78 -a 0 -x {3.0 21.0 47 ------- null} - -t 8.69376 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 78 -a 0 -x {3.0 21.0 47 ------- null} h -t 8.69376 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 78 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.69536 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {3.0 21.0 48 ------- null} + -t 8.69536 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {3.0 21.0 48 ------- null} - -t 8.69536 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {3.0 21.0 48 ------- null} h -t 8.69536 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.69696 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 80 -a 0 -x {3.0 21.0 49 ------- null} + -t 8.69696 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 80 -a 0 -x {3.0 21.0 49 ------- null} - -t 8.69696 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 80 -a 0 -x {3.0 21.0 49 ------- null} h -t 8.69696 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 80 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.69856 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {3.0 21.0 50 ------- null} + -t 8.69856 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {3.0 21.0 50 ------- null} - -t 8.69856 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {3.0 21.0 50 ------- null} h -t 8.69856 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.01976 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {3.0 21.0 31 ------- null} + -t 9.01976 -s 21 -d 28 -p ack -e 40 -c 0 -i 82 -a 0 -x {21.0 3.0 31 ------- null} - -t 9.01976 -s 21 -d 28 -p ack -e 40 -c 0 -i 82 -a 0 -x {21.0 3.0 31 ------- null} h -t 9.01976 -s 21 -d 28 -p ack -e 40 -c 0 -i 82 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.02136 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {3.0 21.0 32 ------- null} + -t 9.02136 -s 21 -d 28 -p ack -e 40 -c 0 -i 83 -a 0 -x {21.0 3.0 32 ------- null} - -t 9.02136 -s 21 -d 28 -p ack -e 40 -c 0 -i 83 -a 0 -x {21.0 3.0 32 ------- null} h -t 9.02136 -s 21 -d 28 -p ack -e 40 -c 0 -i 83 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.02296 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 64 -a 0 -x {3.0 21.0 33 ------- null} + -t 9.02296 -s 21 -d 28 -p ack -e 40 -c 0 -i 84 -a 0 -x {21.0 3.0 33 ------- null} - -t 9.02296 -s 21 -d 28 -p ack -e 40 -c 0 -i 84 -a 0 -x {21.0 3.0 33 ------- null} h -t 9.02296 -s 21 -d 28 -p ack -e 40 -c 0 -i 84 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.02456 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {3.0 21.0 34 ------- null} + -t 9.02456 -s 21 -d 28 -p ack -e 40 -c 0 -i 85 -a 0 -x {21.0 3.0 34 ------- null} - -t 9.02456 -s 21 -d 28 -p ack -e 40 -c 0 -i 85 -a 0 -x {21.0 3.0 34 ------- null} h -t 9.02456 -s 21 -d 28 -p ack -e 40 -c 0 -i 85 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.02616 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {3.0 21.0 35 ------- null} + -t 9.02616 -s 21 -d 28 -p ack -e 40 -c 0 -i 86 -a 0 -x {21.0 3.0 35 ------- null} - -t 9.02616 -s 21 -d 28 -p ack -e 40 -c 0 -i 86 -a 0 -x {21.0 3.0 35 ------- null} h -t 9.02616 -s 21 -d 28 -p ack -e 40 -c 0 -i 86 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.02776 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {3.0 21.0 36 ------- null} + -t 9.02776 -s 21 -d 28 -p ack -e 40 -c 0 -i 87 -a 0 -x {21.0 3.0 36 ------- null} - -t 9.02776 -s 21 -d 28 -p ack -e 40 -c 0 -i 87 -a 0 -x {21.0 3.0 36 ------- null} h -t 9.02776 -s 21 -d 28 -p ack -e 40 -c 0 -i 87 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.02936 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {3.0 21.0 37 ------- null} + -t 9.02936 -s 21 -d 28 -p ack -e 40 -c 0 -i 88 -a 0 -x {21.0 3.0 37 ------- null} - -t 9.02936 -s 21 -d 28 -p ack -e 40 -c 0 -i 88 -a 0 -x {21.0 3.0 37 ------- null} h -t 9.02936 -s 21 -d 28 -p ack -e 40 -c 0 -i 88 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.03096 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {3.0 21.0 38 ------- null} + -t 9.03096 -s 21 -d 28 -p ack -e 40 -c 0 -i 89 -a 0 -x {21.0 3.0 38 ------- null} - -t 9.03096 -s 21 -d 28 -p ack -e 40 -c 0 -i 89 -a 0 -x {21.0 3.0 38 ------- null} h -t 9.03096 -s 21 -d 28 -p ack -e 40 -c 0 -i 89 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.03256 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {3.0 21.0 39 ------- null} + -t 9.03256 -s 21 -d 28 -p ack -e 40 -c 0 -i 90 -a 0 -x {21.0 3.0 39 ------- null} - -t 9.03256 -s 21 -d 28 -p ack -e 40 -c 0 -i 90 -a 0 -x {21.0 3.0 39 ------- null} h -t 9.03256 -s 21 -d 28 -p ack -e 40 -c 0 -i 90 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.03416 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {3.0 21.0 40 ------- null} + -t 9.03416 -s 21 -d 28 -p ack -e 40 -c 0 -i 91 -a 0 -x {21.0 3.0 40 ------- null} - -t 9.03416 -s 21 -d 28 -p ack -e 40 -c 0 -i 91 -a 0 -x {21.0 3.0 40 ------- null} h -t 9.03416 -s 21 -d 28 -p ack -e 40 -c 0 -i 91 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.03576 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {3.0 21.0 41 ------- null} + -t 9.03576 -s 21 -d 28 -p ack -e 40 -c 0 -i 92 -a 0 -x {21.0 3.0 41 ------- null} - -t 9.03576 -s 21 -d 28 -p ack -e 40 -c 0 -i 92 -a 0 -x {21.0 3.0 41 ------- null} h -t 9.03576 -s 21 -d 28 -p ack -e 40 -c 0 -i 92 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.03736 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {3.0 21.0 42 ------- null} + -t 9.03736 -s 21 -d 28 -p ack -e 40 -c 0 -i 93 -a 0 -x {21.0 3.0 42 ------- null} - -t 9.03736 -s 21 -d 28 -p ack -e 40 -c 0 -i 93 -a 0 -x {21.0 3.0 42 ------- null} h -t 9.03736 -s 21 -d 28 -p ack -e 40 -c 0 -i 93 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.03896 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 74 -a 0 -x {3.0 21.0 43 ------- null} + -t 9.03896 -s 21 -d 28 -p ack -e 40 -c 0 -i 94 -a 0 -x {21.0 3.0 43 ------- null} - -t 9.03896 -s 21 -d 28 -p ack -e 40 -c 0 -i 94 -a 0 -x {21.0 3.0 43 ------- null} h -t 9.03896 -s 21 -d 28 -p ack -e 40 -c 0 -i 94 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.04056 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {3.0 21.0 44 ------- null} + -t 9.04056 -s 21 -d 28 -p ack -e 40 -c 0 -i 95 -a 0 -x {21.0 3.0 44 ------- null} - -t 9.04056 -s 21 -d 28 -p ack -e 40 -c 0 -i 95 -a 0 -x {21.0 3.0 44 ------- null} h -t 9.04056 -s 21 -d 28 -p ack -e 40 -c 0 -i 95 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.04216 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {3.0 21.0 45 ------- null} + -t 9.04216 -s 21 -d 28 -p ack -e 40 -c 0 -i 96 -a 0 -x {21.0 3.0 45 ------- null} - -t 9.04216 -s 21 -d 28 -p ack -e 40 -c 0 -i 96 -a 0 -x {21.0 3.0 45 ------- null} h -t 9.04216 -s 21 -d 28 -p ack -e 40 -c 0 -i 96 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.04376 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {3.0 21.0 46 ------- null} + -t 9.04376 -s 21 -d 28 -p ack -e 40 -c 0 -i 97 -a 0 -x {21.0 3.0 46 ------- null} - -t 9.04376 -s 21 -d 28 -p ack -e 40 -c 0 -i 97 -a 0 -x {21.0 3.0 46 ------- null} h -t 9.04376 -s 21 -d 28 -p ack -e 40 -c 0 -i 97 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.04536 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 78 -a 0 -x {3.0 21.0 47 ------- null} + -t 9.04536 -s 21 -d 28 -p ack -e 40 -c 0 -i 98 -a 0 -x {21.0 3.0 47 ------- null} - -t 9.04536 -s 21 -d 28 -p ack -e 40 -c 0 -i 98 -a 0 -x {21.0 3.0 47 ------- null} h -t 9.04536 -s 21 -d 28 -p ack -e 40 -c 0 -i 98 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.04696 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {3.0 21.0 48 ------- null} + -t 9.04696 -s 21 -d 28 -p ack -e 40 -c 0 -i 99 -a 0 -x {21.0 3.0 48 ------- null} - -t 9.04696 -s 21 -d 28 -p ack -e 40 -c 0 -i 99 -a 0 -x {21.0 3.0 48 ------- null} h -t 9.04696 -s 21 -d 28 -p ack -e 40 -c 0 -i 99 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.04856 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 80 -a 0 -x {3.0 21.0 49 ------- null} + -t 9.04856 -s 21 -d 28 -p ack -e 40 -c 0 -i 100 -a 0 -x {21.0 3.0 49 ------- null} - -t 9.04856 -s 21 -d 28 -p ack -e 40 -c 0 -i 100 -a 0 -x {21.0 3.0 49 ------- null} h -t 9.04856 -s 21 -d 28 -p ack -e 40 -c 0 -i 100 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.05016 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {3.0 21.0 50 ------- null} + -t 9.05016 -s 21 -d 28 -p ack -e 40 -c 0 -i 101 -a 0 -x {21.0 3.0 50 ------- null} - -t 9.05016 -s 21 -d 28 -p ack -e 40 -c 0 -i 101 -a 0 -x {21.0 3.0 50 ------- null} h -t 9.05016 -s 21 -d 28 -p ack -e 40 -c 0 -i 101 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.36982 -s 21 -d 28 -p ack -e 40 -c 0 -i 82 -a 0 -x {21.0 3.0 31 ------- null} + -t 9.36982 -s 28 -d 1 -p ack -e 40 -c 0 -i 82 -a 0 -x {21.0 3.0 31 ------- null} - -t 9.36982 -s 28 -d 1 -p ack -e 40 -c 0 -i 82 -a 0 -x {21.0 3.0 31 ------- null} h -t 9.36982 -s 28 -d 1 -p ack -e 40 -c 0 -i 82 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.37142 -s 21 -d 28 -p ack -e 40 -c 0 -i 83 -a 0 -x {21.0 3.0 32 ------- null} + -t 9.37142 -s 28 -d 1 -p ack -e 40 -c 0 -i 83 -a 0 -x {21.0 3.0 32 ------- null} - -t 9.37142 -s 28 -d 1 -p ack -e 40 -c 0 -i 83 -a 0 -x {21.0 3.0 32 ------- null} h -t 9.37142 -s 28 -d 1 -p ack -e 40 -c 0 -i 83 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.37302 -s 21 -d 28 -p ack -e 40 -c 0 -i 84 -a 0 -x {21.0 3.0 33 ------- null} + -t 9.37302 -s 28 -d 1 -p ack -e 40 -c 0 -i 84 -a 0 -x {21.0 3.0 33 ------- null} - -t 9.37302 -s 28 -d 1 -p ack -e 40 -c 0 -i 84 -a 0 -x {21.0 3.0 33 ------- null} h -t 9.37302 -s 28 -d 1 -p ack -e 40 -c 0 -i 84 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.37462 -s 21 -d 28 -p ack -e 40 -c 0 -i 85 -a 0 -x {21.0 3.0 34 ------- null} + -t 9.37462 -s 28 -d 1 -p ack -e 40 -c 0 -i 85 -a 0 -x {21.0 3.0 34 ------- null} - -t 9.37462 -s 28 -d 1 -p ack -e 40 -c 0 -i 85 -a 0 -x {21.0 3.0 34 ------- null} h -t 9.37462 -s 28 -d 1 -p ack -e 40 -c 0 -i 85 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.37622 -s 21 -d 28 -p ack -e 40 -c 0 -i 86 -a 0 -x {21.0 3.0 35 ------- null} + -t 9.37622 -s 28 -d 1 -p ack -e 40 -c 0 -i 86 -a 0 -x {21.0 3.0 35 ------- null} - -t 9.37622 -s 28 -d 1 -p ack -e 40 -c 0 -i 86 -a 0 -x {21.0 3.0 35 ------- null} h -t 9.37622 -s 28 -d 1 -p ack -e 40 -c 0 -i 86 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.37782 -s 21 -d 28 -p ack -e 40 -c 0 -i 87 -a 0 -x {21.0 3.0 36 ------- null} + -t 9.37782 -s 28 -d 1 -p ack -e 40 -c 0 -i 87 -a 0 -x {21.0 3.0 36 ------- null} - -t 9.37782 -s 28 -d 1 -p ack -e 40 -c 0 -i 87 -a 0 -x {21.0 3.0 36 ------- null} h -t 9.37782 -s 28 -d 1 -p ack -e 40 -c 0 -i 87 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.37942 -s 21 -d 28 -p ack -e 40 -c 0 -i 88 -a 0 -x {21.0 3.0 37 ------- null} + -t 9.37942 -s 28 -d 1 -p ack -e 40 -c 0 -i 88 -a 0 -x {21.0 3.0 37 ------- null} - -t 9.37942 -s 28 -d 1 -p ack -e 40 -c 0 -i 88 -a 0 -x {21.0 3.0 37 ------- null} h -t 9.37942 -s 28 -d 1 -p ack -e 40 -c 0 -i 88 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.38102 -s 21 -d 28 -p ack -e 40 -c 0 -i 89 -a 0 -x {21.0 3.0 38 ------- null} + -t 9.38102 -s 28 -d 1 -p ack -e 40 -c 0 -i 89 -a 0 -x {21.0 3.0 38 ------- null} - -t 9.38102 -s 28 -d 1 -p ack -e 40 -c 0 -i 89 -a 0 -x {21.0 3.0 38 ------- null} h -t 9.38102 -s 28 -d 1 -p ack -e 40 -c 0 -i 89 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.38262 -s 21 -d 28 -p ack -e 40 -c 0 -i 90 -a 0 -x {21.0 3.0 39 ------- null} + -t 9.38262 -s 28 -d 1 -p ack -e 40 -c 0 -i 90 -a 0 -x {21.0 3.0 39 ------- null} - -t 9.38262 -s 28 -d 1 -p ack -e 40 -c 0 -i 90 -a 0 -x {21.0 3.0 39 ------- null} h -t 9.38262 -s 28 -d 1 -p ack -e 40 -c 0 -i 90 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.38422 -s 21 -d 28 -p ack -e 40 -c 0 -i 91 -a 0 -x {21.0 3.0 40 ------- null} + -t 9.38422 -s 28 -d 1 -p ack -e 40 -c 0 -i 91 -a 0 -x {21.0 3.0 40 ------- null} - -t 9.38422 -s 28 -d 1 -p ack -e 40 -c 0 -i 91 -a 0 -x {21.0 3.0 40 ------- null} h -t 9.38422 -s 28 -d 1 -p ack -e 40 -c 0 -i 91 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.38582 -s 21 -d 28 -p ack -e 40 -c 0 -i 92 -a 0 -x {21.0 3.0 41 ------- null} + -t 9.38582 -s 28 -d 1 -p ack -e 40 -c 0 -i 92 -a 0 -x {21.0 3.0 41 ------- null} - -t 9.38582 -s 28 -d 1 -p ack -e 40 -c 0 -i 92 -a 0 -x {21.0 3.0 41 ------- null} h -t 9.38582 -s 28 -d 1 -p ack -e 40 -c 0 -i 92 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.38742 -s 21 -d 28 -p ack -e 40 -c 0 -i 93 -a 0 -x {21.0 3.0 42 ------- null} + -t 9.38742 -s 28 -d 1 -p ack -e 40 -c 0 -i 93 -a 0 -x {21.0 3.0 42 ------- null} - -t 9.38742 -s 28 -d 1 -p ack -e 40 -c 0 -i 93 -a 0 -x {21.0 3.0 42 ------- null} h -t 9.38742 -s 28 -d 1 -p ack -e 40 -c 0 -i 93 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.38902 -s 21 -d 28 -p ack -e 40 -c 0 -i 94 -a 0 -x {21.0 3.0 43 ------- null} + -t 9.38902 -s 28 -d 1 -p ack -e 40 -c 0 -i 94 -a 0 -x {21.0 3.0 43 ------- null} - -t 9.38902 -s 28 -d 1 -p ack -e 40 -c 0 -i 94 -a 0 -x {21.0 3.0 43 ------- null} h -t 9.38902 -s 28 -d 1 -p ack -e 40 -c 0 -i 94 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.39062 -s 21 -d 28 -p ack -e 40 -c 0 -i 95 -a 0 -x {21.0 3.0 44 ------- null} + -t 9.39062 -s 28 -d 1 -p ack -e 40 -c 0 -i 95 -a 0 -x {21.0 3.0 44 ------- null} - -t 9.39062 -s 28 -d 1 -p ack -e 40 -c 0 -i 95 -a 0 -x {21.0 3.0 44 ------- null} h -t 9.39062 -s 28 -d 1 -p ack -e 40 -c 0 -i 95 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.39222 -s 21 -d 28 -p ack -e 40 -c 0 -i 96 -a 0 -x {21.0 3.0 45 ------- null} + -t 9.39222 -s 28 -d 1 -p ack -e 40 -c 0 -i 96 -a 0 -x {21.0 3.0 45 ------- null} - -t 9.39222 -s 28 -d 1 -p ack -e 40 -c 0 -i 96 -a 0 -x {21.0 3.0 45 ------- null} h -t 9.39222 -s 28 -d 1 -p ack -e 40 -c 0 -i 96 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.39382 -s 21 -d 28 -p ack -e 40 -c 0 -i 97 -a 0 -x {21.0 3.0 46 ------- null} + -t 9.39382 -s 28 -d 1 -p ack -e 40 -c 0 -i 97 -a 0 -x {21.0 3.0 46 ------- null} - -t 9.39382 -s 28 -d 1 -p ack -e 40 -c 0 -i 97 -a 0 -x {21.0 3.0 46 ------- null} h -t 9.39382 -s 28 -d 1 -p ack -e 40 -c 0 -i 97 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.39542 -s 21 -d 28 -p ack -e 40 -c 0 -i 98 -a 0 -x {21.0 3.0 47 ------- null} + -t 9.39542 -s 28 -d 1 -p ack -e 40 -c 0 -i 98 -a 0 -x {21.0 3.0 47 ------- null} - -t 9.39542 -s 28 -d 1 -p ack -e 40 -c 0 -i 98 -a 0 -x {21.0 3.0 47 ------- null} h -t 9.39542 -s 28 -d 1 -p ack -e 40 -c 0 -i 98 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.39702 -s 21 -d 28 -p ack -e 40 -c 0 -i 99 -a 0 -x {21.0 3.0 48 ------- null} + -t 9.39702 -s 28 -d 1 -p ack -e 40 -c 0 -i 99 -a 0 -x {21.0 3.0 48 ------- null} - -t 9.39702 -s 28 -d 1 -p ack -e 40 -c 0 -i 99 -a 0 -x {21.0 3.0 48 ------- null} h -t 9.39702 -s 28 -d 1 -p ack -e 40 -c 0 -i 99 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.39862 -s 21 -d 28 -p ack -e 40 -c 0 -i 100 -a 0 -x {21.0 3.0 49 ------- null} + -t 9.39862 -s 28 -d 1 -p ack -e 40 -c 0 -i 100 -a 0 -x {21.0 3.0 49 ------- null} - -t 9.39862 -s 28 -d 1 -p ack -e 40 -c 0 -i 100 -a 0 -x {21.0 3.0 49 ------- null} h -t 9.39862 -s 28 -d 1 -p ack -e 40 -c 0 -i 100 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.40022 -s 21 -d 28 -p ack -e 40 -c 0 -i 101 -a 0 -x {21.0 3.0 50 ------- null} + -t 9.40022 -s 28 -d 1 -p ack -e 40 -c 0 -i 101 -a 0 -x {21.0 3.0 50 ------- null} - -t 9.40022 -s 28 -d 1 -p ack -e 40 -c 0 -i 101 -a 0 -x {21.0 3.0 50 ------- null} h -t 9.40022 -s 28 -d 1 -p ack -e 40 -c 0 -i 101 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.66989 -s 28 -d 1 -p ack -e 40 -c 0 -i 82 -a 0 -x {21.0 3.0 31 ------- null} + -t 9.66989 -s 1 -d 3 -p ack -e 40 -c 0 -i 82 -a 0 -x {21.0 3.0 31 ------- null} - -t 9.66989 -s 1 -d 3 -p ack -e 40 -c 0 -i 82 -a 0 -x {21.0 3.0 31 ------- null} h -t 9.66989 -s 1 -d 3 -p ack -e 40 -c 0 -i 82 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.67149 -s 28 -d 1 -p ack -e 40 -c 0 -i 83 -a 0 -x {21.0 3.0 32 ------- null} + -t 9.67149 -s 1 -d 3 -p ack -e 40 -c 0 -i 83 -a 0 -x {21.0 3.0 32 ------- null} - -t 9.67149 -s 1 -d 3 -p ack -e 40 -c 0 -i 83 -a 0 -x {21.0 3.0 32 ------- null} h -t 9.67149 -s 1 -d 3 -p ack -e 40 -c 0 -i 83 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.67309 -s 28 -d 1 -p ack -e 40 -c 0 -i 84 -a 0 -x {21.0 3.0 33 ------- null} + -t 9.67309 -s 1 -d 3 -p ack -e 40 -c 0 -i 84 -a 0 -x {21.0 3.0 33 ------- null} - -t 9.67309 -s 1 -d 3 -p ack -e 40 -c 0 -i 84 -a 0 -x {21.0 3.0 33 ------- null} h -t 9.67309 -s 1 -d 3 -p ack -e 40 -c 0 -i 84 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.67469 -s 28 -d 1 -p ack -e 40 -c 0 -i 85 -a 0 -x {21.0 3.0 34 ------- null} + -t 9.67469 -s 1 -d 3 -p ack -e 40 -c 0 -i 85 -a 0 -x {21.0 3.0 34 ------- null} - -t 9.67469 -s 1 -d 3 -p ack -e 40 -c 0 -i 85 -a 0 -x {21.0 3.0 34 ------- null} h -t 9.67469 -s 1 -d 3 -p ack -e 40 -c 0 -i 85 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.67629 -s 28 -d 1 -p ack -e 40 -c 0 -i 86 -a 0 -x {21.0 3.0 35 ------- null} + -t 9.67629 -s 1 -d 3 -p ack -e 40 -c 0 -i 86 -a 0 -x {21.0 3.0 35 ------- null} - -t 9.67629 -s 1 -d 3 -p ack -e 40 -c 0 -i 86 -a 0 -x {21.0 3.0 35 ------- null} h -t 9.67629 -s 1 -d 3 -p ack -e 40 -c 0 -i 86 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.67789 -s 28 -d 1 -p ack -e 40 -c 0 -i 87 -a 0 -x {21.0 3.0 36 ------- null} + -t 9.67789 -s 1 -d 3 -p ack -e 40 -c 0 -i 87 -a 0 -x {21.0 3.0 36 ------- null} - -t 9.67789 -s 1 -d 3 -p ack -e 40 -c 0 -i 87 -a 0 -x {21.0 3.0 36 ------- null} h -t 9.67789 -s 1 -d 3 -p ack -e 40 -c 0 -i 87 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.67949 -s 28 -d 1 -p ack -e 40 -c 0 -i 88 -a 0 -x {21.0 3.0 37 ------- null} + -t 9.67949 -s 1 -d 3 -p ack -e 40 -c 0 -i 88 -a 0 -x {21.0 3.0 37 ------- null} - -t 9.67949 -s 1 -d 3 -p ack -e 40 -c 0 -i 88 -a 0 -x {21.0 3.0 37 ------- null} h -t 9.67949 -s 1 -d 3 -p ack -e 40 -c 0 -i 88 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.68109 -s 28 -d 1 -p ack -e 40 -c 0 -i 89 -a 0 -x {21.0 3.0 38 ------- null} + -t 9.68109 -s 1 -d 3 -p ack -e 40 -c 0 -i 89 -a 0 -x {21.0 3.0 38 ------- null} - -t 9.68109 -s 1 -d 3 -p ack -e 40 -c 0 -i 89 -a 0 -x {21.0 3.0 38 ------- null} h -t 9.68109 -s 1 -d 3 -p ack -e 40 -c 0 -i 89 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.68269 -s 28 -d 1 -p ack -e 40 -c 0 -i 90 -a 0 -x {21.0 3.0 39 ------- null} + -t 9.68269 -s 1 -d 3 -p ack -e 40 -c 0 -i 90 -a 0 -x {21.0 3.0 39 ------- null} - -t 9.68269 -s 1 -d 3 -p ack -e 40 -c 0 -i 90 -a 0 -x {21.0 3.0 39 ------- null} h -t 9.68269 -s 1 -d 3 -p ack -e 40 -c 0 -i 90 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.68429 -s 28 -d 1 -p ack -e 40 -c 0 -i 91 -a 0 -x {21.0 3.0 40 ------- null} + -t 9.68429 -s 1 -d 3 -p ack -e 40 -c 0 -i 91 -a 0 -x {21.0 3.0 40 ------- null} - -t 9.68429 -s 1 -d 3 -p ack -e 40 -c 0 -i 91 -a 0 -x {21.0 3.0 40 ------- null} h -t 9.68429 -s 1 -d 3 -p ack -e 40 -c 0 -i 91 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.68589 -s 28 -d 1 -p ack -e 40 -c 0 -i 92 -a 0 -x {21.0 3.0 41 ------- null} + -t 9.68589 -s 1 -d 3 -p ack -e 40 -c 0 -i 92 -a 0 -x {21.0 3.0 41 ------- null} - -t 9.68589 -s 1 -d 3 -p ack -e 40 -c 0 -i 92 -a 0 -x {21.0 3.0 41 ------- null} h -t 9.68589 -s 1 -d 3 -p ack -e 40 -c 0 -i 92 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.68749 -s 28 -d 1 -p ack -e 40 -c 0 -i 93 -a 0 -x {21.0 3.0 42 ------- null} + -t 9.68749 -s 1 -d 3 -p ack -e 40 -c 0 -i 93 -a 0 -x {21.0 3.0 42 ------- null} - -t 9.68749 -s 1 -d 3 -p ack -e 40 -c 0 -i 93 -a 0 -x {21.0 3.0 42 ------- null} h -t 9.68749 -s 1 -d 3 -p ack -e 40 -c 0 -i 93 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.68909 -s 28 -d 1 -p ack -e 40 -c 0 -i 94 -a 0 -x {21.0 3.0 43 ------- null} + -t 9.68909 -s 1 -d 3 -p ack -e 40 -c 0 -i 94 -a 0 -x {21.0 3.0 43 ------- null} - -t 9.68909 -s 1 -d 3 -p ack -e 40 -c 0 -i 94 -a 0 -x {21.0 3.0 43 ------- null} h -t 9.68909 -s 1 -d 3 -p ack -e 40 -c 0 -i 94 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.69069 -s 28 -d 1 -p ack -e 40 -c 0 -i 95 -a 0 -x {21.0 3.0 44 ------- null} + -t 9.69069 -s 1 -d 3 -p ack -e 40 -c 0 -i 95 -a 0 -x {21.0 3.0 44 ------- null} - -t 9.69069 -s 1 -d 3 -p ack -e 40 -c 0 -i 95 -a 0 -x {21.0 3.0 44 ------- null} h -t 9.69069 -s 1 -d 3 -p ack -e 40 -c 0 -i 95 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.69229 -s 28 -d 1 -p ack -e 40 -c 0 -i 96 -a 0 -x {21.0 3.0 45 ------- null} + -t 9.69229 -s 1 -d 3 -p ack -e 40 -c 0 -i 96 -a 0 -x {21.0 3.0 45 ------- null} - -t 9.69229 -s 1 -d 3 -p ack -e 40 -c 0 -i 96 -a 0 -x {21.0 3.0 45 ------- null} h -t 9.69229 -s 1 -d 3 -p ack -e 40 -c 0 -i 96 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.69389 -s 28 -d 1 -p ack -e 40 -c 0 -i 97 -a 0 -x {21.0 3.0 46 ------- null} + -t 9.69389 -s 1 -d 3 -p ack -e 40 -c 0 -i 97 -a 0 -x {21.0 3.0 46 ------- null} - -t 9.69389 -s 1 -d 3 -p ack -e 40 -c 0 -i 97 -a 0 -x {21.0 3.0 46 ------- null} h -t 9.69389 -s 1 -d 3 -p ack -e 40 -c 0 -i 97 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.69549 -s 28 -d 1 -p ack -e 40 -c 0 -i 98 -a 0 -x {21.0 3.0 47 ------- null} + -t 9.69549 -s 1 -d 3 -p ack -e 40 -c 0 -i 98 -a 0 -x {21.0 3.0 47 ------- null} - -t 9.69549 -s 1 -d 3 -p ack -e 40 -c 0 -i 98 -a 0 -x {21.0 3.0 47 ------- null} h -t 9.69549 -s 1 -d 3 -p ack -e 40 -c 0 -i 98 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.69709 -s 28 -d 1 -p ack -e 40 -c 0 -i 99 -a 0 -x {21.0 3.0 48 ------- null} + -t 9.69709 -s 1 -d 3 -p ack -e 40 -c 0 -i 99 -a 0 -x {21.0 3.0 48 ------- null} - -t 9.69709 -s 1 -d 3 -p ack -e 40 -c 0 -i 99 -a 0 -x {21.0 3.0 48 ------- null} h -t 9.69709 -s 1 -d 3 -p ack -e 40 -c 0 -i 99 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.69869 -s 28 -d 1 -p ack -e 40 -c 0 -i 100 -a 0 -x {21.0 3.0 49 ------- null} + -t 9.69869 -s 1 -d 3 -p ack -e 40 -c 0 -i 100 -a 0 -x {21.0 3.0 49 ------- null} - -t 9.69869 -s 1 -d 3 -p ack -e 40 -c 0 -i 100 -a 0 -x {21.0 3.0 49 ------- null} h -t 9.69869 -s 1 -d 3 -p ack -e 40 -c 0 -i 100 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.70029 -s 28 -d 1 -p ack -e 40 -c 0 -i 101 -a 0 -x {21.0 3.0 50 ------- null} + -t 9.70029 -s 1 -d 3 -p ack -e 40 -c 0 -i 101 -a 0 -x {21.0 3.0 50 ------- null} - -t 9.70029 -s 1 -d 3 -p ack -e 40 -c 0 -i 101 -a 0 -x {21.0 3.0 50 ------- null} h -t 9.70029 -s 1 -d 3 -p ack -e 40 -c 0 -i 101 -a 0 -x {21.0 3.0 -1 ------- null} r -t 9.80995 -s 1 -d 3 -p ack -e 40 -c 0 -i 82 -a 0 -x {21.0 3.0 31 ------- null} + -t 9.80995 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {3.0 21.0 51 ------- null} - -t 9.80995 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {3.0 21.0 51 ------- null} h -t 9.80995 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.81155 -s 1 -d 3 -p ack -e 40 -c 0 -i 83 -a 0 -x {21.0 3.0 32 ------- null} + -t 9.81155 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {3.0 21.0 52 ------- null} - -t 9.81155 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {3.0 21.0 52 ------- null} h -t 9.81155 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.81315 -s 1 -d 3 -p ack -e 40 -c 0 -i 84 -a 0 -x {21.0 3.0 33 ------- null} + -t 9.81315 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 104 -a 0 -x {3.0 21.0 53 ------- null} - -t 9.81315 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 104 -a 0 -x {3.0 21.0 53 ------- null} h -t 9.81315 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 104 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.81475 -s 1 -d 3 -p ack -e 40 -c 0 -i 85 -a 0 -x {21.0 3.0 34 ------- null} + -t 9.81475 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {3.0 21.0 54 ------- null} - -t 9.81475 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {3.0 21.0 54 ------- null} h -t 9.81475 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.81635 -s 1 -d 3 -p ack -e 40 -c 0 -i 86 -a 0 -x {21.0 3.0 35 ------- null} + -t 9.81635 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 106 -a 0 -x {3.0 21.0 55 ------- null} - -t 9.81635 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 106 -a 0 -x {3.0 21.0 55 ------- null} h -t 9.81635 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 106 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.81795 -s 1 -d 3 -p ack -e 40 -c 0 -i 87 -a 0 -x {21.0 3.0 36 ------- null} + -t 9.81795 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {3.0 21.0 56 ------- null} - -t 9.81795 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {3.0 21.0 56 ------- null} h -t 9.81795 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.81955 -s 1 -d 3 -p ack -e 40 -c 0 -i 88 -a 0 -x {21.0 3.0 37 ------- null} + -t 9.81955 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 108 -a 0 -x {3.0 21.0 57 ------- null} - -t 9.81955 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 108 -a 0 -x {3.0 21.0 57 ------- null} h -t 9.81955 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 108 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.82115 -s 1 -d 3 -p ack -e 40 -c 0 -i 89 -a 0 -x {21.0 3.0 38 ------- null} + -t 9.82115 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {3.0 21.0 58 ------- null} - -t 9.82115 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {3.0 21.0 58 ------- null} h -t 9.82115 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.82275 -s 1 -d 3 -p ack -e 40 -c 0 -i 90 -a 0 -x {21.0 3.0 39 ------- null} + -t 9.82275 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 110 -a 0 -x {3.0 21.0 59 ------- null} - -t 9.82275 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 110 -a 0 -x {3.0 21.0 59 ------- null} h -t 9.82275 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 110 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.82435 -s 1 -d 3 -p ack -e 40 -c 0 -i 91 -a 0 -x {21.0 3.0 40 ------- null} + -t 9.82435 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {3.0 21.0 60 ------- null} - -t 9.82435 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {3.0 21.0 60 ------- null} h -t 9.82435 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.82595 -s 1 -d 3 -p ack -e 40 -c 0 -i 92 -a 0 -x {21.0 3.0 41 ------- null} + -t 9.82595 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {3.0 21.0 61 ------- null} - -t 9.82595 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {3.0 21.0 61 ------- null} h -t 9.82595 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.82755 -s 1 -d 3 -p ack -e 40 -c 0 -i 93 -a 0 -x {21.0 3.0 42 ------- null} + -t 9.82755 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {3.0 21.0 62 ------- null} - -t 9.82755 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {3.0 21.0 62 ------- null} h -t 9.82755 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.82915 -s 1 -d 3 -p ack -e 40 -c 0 -i 94 -a 0 -x {21.0 3.0 43 ------- null} + -t 9.82915 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 114 -a 0 -x {3.0 21.0 63 ------- null} - -t 9.82915 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 114 -a 0 -x {3.0 21.0 63 ------- null} h -t 9.82915 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 114 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.83075 -s 1 -d 3 -p ack -e 40 -c 0 -i 95 -a 0 -x {21.0 3.0 44 ------- null} + -t 9.83075 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {3.0 21.0 64 ------- null} - -t 9.83075 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {3.0 21.0 64 ------- null} h -t 9.83075 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.83235 -s 1 -d 3 -p ack -e 40 -c 0 -i 96 -a 0 -x {21.0 3.0 45 ------- null} + -t 9.83235 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {3.0 21.0 65 ------- null} - -t 9.83235 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {3.0 21.0 65 ------- null} h -t 9.83235 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.83395 -s 1 -d 3 -p ack -e 40 -c 0 -i 97 -a 0 -x {21.0 3.0 46 ------- null} + -t 9.83395 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {3.0 21.0 66 ------- null} - -t 9.83395 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {3.0 21.0 66 ------- null} h -t 9.83395 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.83555 -s 1 -d 3 -p ack -e 40 -c 0 -i 98 -a 0 -x {21.0 3.0 47 ------- null} + -t 9.83555 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {3.0 21.0 67 ------- null} - -t 9.83555 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {3.0 21.0 67 ------- null} h -t 9.83555 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.83715 -s 1 -d 3 -p ack -e 40 -c 0 -i 99 -a 0 -x {21.0 3.0 48 ------- null} + -t 9.83715 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {3.0 21.0 68 ------- null} - -t 9.83715 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {3.0 21.0 68 ------- null} h -t 9.83715 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.83875 -s 1 -d 3 -p ack -e 40 -c 0 -i 100 -a 0 -x {21.0 3.0 49 ------- null} + -t 9.83875 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {3.0 21.0 69 ------- null} - -t 9.83875 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {3.0 21.0 69 ------- null} h -t 9.83875 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.84035 -s 1 -d 3 -p ack -e 40 -c 0 -i 101 -a 0 -x {21.0 3.0 50 ------- null} + -t 9.84035 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {3.0 21.0 70 ------- null} - -t 9.84035 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {3.0 21.0 70 ------- null} h -t 9.84035 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.95155 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {3.0 21.0 51 ------- null} + -t 9.95155 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {3.0 21.0 51 ------- null} - -t 9.95155 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {3.0 21.0 51 ------- null} h -t 9.95155 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.95315 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {3.0 21.0 52 ------- null} + -t 9.95315 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {3.0 21.0 52 ------- null} - -t 9.95315 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {3.0 21.0 52 ------- null} h -t 9.95315 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.95475 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 104 -a 0 -x {3.0 21.0 53 ------- null} + -t 9.95475 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 104 -a 0 -x {3.0 21.0 53 ------- null} - -t 9.95475 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 104 -a 0 -x {3.0 21.0 53 ------- null} h -t 9.95475 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 104 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.95635 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {3.0 21.0 54 ------- null} + -t 9.95635 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {3.0 21.0 54 ------- null} - -t 9.95635 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {3.0 21.0 54 ------- null} h -t 9.95635 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.95795 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 106 -a 0 -x {3.0 21.0 55 ------- null} + -t 9.95795 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 106 -a 0 -x {3.0 21.0 55 ------- null} - -t 9.95795 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 106 -a 0 -x {3.0 21.0 55 ------- null} h -t 9.95795 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 106 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.95955 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {3.0 21.0 56 ------- null} + -t 9.95955 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {3.0 21.0 56 ------- null} - -t 9.95955 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {3.0 21.0 56 ------- null} h -t 9.95955 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.96115 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 108 -a 0 -x {3.0 21.0 57 ------- null} + -t 9.96115 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 108 -a 0 -x {3.0 21.0 57 ------- null} - -t 9.96115 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 108 -a 0 -x {3.0 21.0 57 ------- null} h -t 9.96115 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 108 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.96275 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {3.0 21.0 58 ------- null} + -t 9.96275 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {3.0 21.0 58 ------- null} - -t 9.96275 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {3.0 21.0 58 ------- null} h -t 9.96275 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.96435 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 110 -a 0 -x {3.0 21.0 59 ------- null} + -t 9.96435 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 110 -a 0 -x {3.0 21.0 59 ------- null} - -t 9.96435 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 110 -a 0 -x {3.0 21.0 59 ------- null} h -t 9.96435 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 110 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.96595 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {3.0 21.0 60 ------- null} + -t 9.96595 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {3.0 21.0 60 ------- null} - -t 9.96595 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {3.0 21.0 60 ------- null} h -t 9.96595 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.96755 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {3.0 21.0 61 ------- null} + -t 9.96755 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {3.0 21.0 61 ------- null} - -t 9.96755 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {3.0 21.0 61 ------- null} h -t 9.96755 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.96915 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {3.0 21.0 62 ------- null} + -t 9.96915 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {3.0 21.0 62 ------- null} - -t 9.96915 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {3.0 21.0 62 ------- null} h -t 9.96915 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.97075 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 114 -a 0 -x {3.0 21.0 63 ------- null} + -t 9.97075 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 114 -a 0 -x {3.0 21.0 63 ------- null} - -t 9.97075 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 114 -a 0 -x {3.0 21.0 63 ------- null} h -t 9.97075 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 114 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.97235 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {3.0 21.0 64 ------- null} + -t 9.97235 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {3.0 21.0 64 ------- null} - -t 9.97235 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {3.0 21.0 64 ------- null} h -t 9.97235 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.97395 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {3.0 21.0 65 ------- null} + -t 9.97395 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {3.0 21.0 65 ------- null} - -t 9.97395 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {3.0 21.0 65 ------- null} h -t 9.97395 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.97555 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {3.0 21.0 66 ------- null} + -t 9.97555 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {3.0 21.0 66 ------- null} - -t 9.97555 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {3.0 21.0 66 ------- null} h -t 9.97555 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.97715 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {3.0 21.0 67 ------- null} + -t 9.97715 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {3.0 21.0 67 ------- null} - -t 9.97715 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {3.0 21.0 67 ------- null} h -t 9.97715 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.97875 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {3.0 21.0 68 ------- null} + -t 9.97875 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {3.0 21.0 68 ------- null} - -t 9.97875 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {3.0 21.0 68 ------- null} h -t 9.97875 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.98035 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {3.0 21.0 69 ------- null} + -t 9.98035 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {3.0 21.0 69 ------- null} - -t 9.98035 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {3.0 21.0 69 ------- null} h -t 9.98035 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.98195 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {3.0 21.0 70 ------- null} + -t 9.98195 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {3.0 21.0 70 ------- null} - -t 9.98195 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {3.0 21.0 70 ------- null} h -t 9.98195 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {3.0 21.0 -1 ------- null} r -t 10.2532 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {3.0 21.0 51 ------- null} + -t 10.2532 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {3.0 21.0 51 ------- null} - -t 10.2532 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {3.0 21.0 51 ------- null} h -t 10.2532 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {3.0 21.0 -1 ------- null} r -t 10.2548 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {3.0 21.0 52 ------- null} + -t 10.2548 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {3.0 21.0 52 ------- null} - -t 10.2548 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {3.0 21.0 52 ------- null} h -t 10.2548 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {3.0 21.0 -1 ------- null} r -t 10.2564 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 104 -a 0 -x {3.0 21.0 53 ------- null} + -t 10.2564 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 104 -a 0 -x {3.0 21.0 53 ------- null} - -t 10.2564 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 104 -a 0 -x {3.0 21.0 53 ------- null} h -t 10.2564 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 104 -a 0 -x {3.0 21.0 -1 ------- null} r -t 10.258 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {3.0 21.0 54 ------- null} + -t 10.258 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {3.0 21.0 54 ------- null} - -t 10.258 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {3.0 21.0 54 ------- null} h -t 10.258 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {3.0 21.0 -1 ------- null} r -t 10.2596 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 106 -a 0 -x {3.0 21.0 55 ------- null} + -t 10.2596 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 106 -a 0 -x {3.0 21.0 55 ------- null} - -t 10.2596 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 106 -a 0 -x {3.0 21.0 55 ------- null} h -t 10.2596 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 106 -a 0 -x {3.0 21.0 -1 ------- null} r -t 10.2612 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {3.0 21.0 56 ------- null} + -t 10.2612 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {3.0 21.0 56 ------- null} - -t 10.2612 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {3.0 21.0 56 ------- null} h -t 10.2612 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {3.0 21.0 -1 ------- null} r -t 10.2628 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 108 -a 0 -x {3.0 21.0 57 ------- null} + -t 10.2628 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 108 -a 0 -x {3.0 21.0 57 ------- null} - -t 10.2628 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 108 -a 0 -x {3.0 21.0 57 ------- null} h -t 10.2628 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 108 -a 0 -x {3.0 21.0 -1 ------- null} r -t 10.2644 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {3.0 21.0 58 ------- null} + -t 10.2644 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {3.0 21.0 58 ------- null} - -t 10.2644 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {3.0 21.0 58 ------- null} h -t 10.2644 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {3.0 21.0 -1 ------- null} r -t 10.266 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 110 -a 0 -x {3.0 21.0 59 ------- null} + -t 10.266 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 110 -a 0 -x {3.0 21.0 59 ------- null} - -t 10.266 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 110 -a 0 -x {3.0 21.0 59 ------- null} h -t 10.266 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 110 -a 0 -x {3.0 21.0 -1 ------- null} r -t 10.2676 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {3.0 21.0 60 ------- null} + -t 10.2676 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {3.0 21.0 60 ------- null} - -t 10.2676 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {3.0 21.0 60 ------- null} h -t 10.2676 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {3.0 21.0 -1 ------- null} r -t 10.2692 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {3.0 21.0 61 ------- null} + -t 10.2692 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {3.0 21.0 61 ------- null} - -t 10.2692 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {3.0 21.0 61 ------- null} h -t 10.2692 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {3.0 21.0 -1 ------- null} r -t 10.2708 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {3.0 21.0 62 ------- null} + -t 10.2708 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {3.0 21.0 62 ------- null} - -t 10.2708 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {3.0 21.0 62 ------- null} h -t 10.2708 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {3.0 21.0 -1 ------- null} r -t 10.2724 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 114 -a 0 -x {3.0 21.0 63 ------- null} + -t 10.2724 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 114 -a 0 -x {3.0 21.0 63 ------- null} - -t 10.2724 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 114 -a 0 -x {3.0 21.0 63 ------- null} h -t 10.2724 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 114 -a 0 -x {3.0 21.0 -1 ------- null} r -t 10.274 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {3.0 21.0 64 ------- null} + -t 10.274 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {3.0 21.0 64 ------- null} - -t 10.274 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {3.0 21.0 64 ------- null} h -t 10.274 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {3.0 21.0 -1 ------- null} r -t 10.2756 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {3.0 21.0 65 ------- null} + -t 10.2756 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {3.0 21.0 65 ------- null} - -t 10.2756 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {3.0 21.0 65 ------- null} h -t 10.2756 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {3.0 21.0 -1 ------- null} r -t 10.2772 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {3.0 21.0 66 ------- null} + -t 10.2772 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {3.0 21.0 66 ------- null} - -t 10.2772 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {3.0 21.0 66 ------- null} h -t 10.2772 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {3.0 21.0 -1 ------- null} r -t 10.2788 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {3.0 21.0 67 ------- null} + -t 10.2788 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {3.0 21.0 67 ------- null} - -t 10.2788 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {3.0 21.0 67 ------- null} h -t 10.2788 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {3.0 21.0 -1 ------- null} r -t 10.2804 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {3.0 21.0 68 ------- null} + -t 10.2804 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {3.0 21.0 68 ------- null} - -t 10.2804 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {3.0 21.0 68 ------- null} h -t 10.2804 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {3.0 21.0 -1 ------- null} r -t 10.282 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {3.0 21.0 69 ------- null} + -t 10.282 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {3.0 21.0 69 ------- null} - -t 10.282 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {3.0 21.0 69 ------- null} h -t 10.282 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {3.0 21.0 -1 ------- null} r -t 10.2836 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {3.0 21.0 70 ------- null} + -t 10.2836 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {3.0 21.0 70 ------- null} - -t 10.2836 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {3.0 21.0 70 ------- null} h -t 10.2836 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {3.0 21.0 -1 ------- null} r -t 10.6048 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {3.0 21.0 51 ------- null} + -t 10.6048 -s 21 -d 28 -p ack -e 40 -c 0 -i 122 -a 0 -x {21.0 3.0 51 ------- null} - -t 10.6048 -s 21 -d 28 -p ack -e 40 -c 0 -i 122 -a 0 -x {21.0 3.0 51 ------- null} h -t 10.6048 -s 21 -d 28 -p ack -e 40 -c 0 -i 122 -a 0 -x {21.0 3.0 -1 ------- null} r -t 10.6064 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {3.0 21.0 52 ------- null} + -t 10.6064 -s 21 -d 28 -p ack -e 40 -c 0 -i 123 -a 0 -x {21.0 3.0 52 ------- null} - -t 10.6064 -s 21 -d 28 -p ack -e 40 -c 0 -i 123 -a 0 -x {21.0 3.0 52 ------- null} h -t 10.6064 -s 21 -d 28 -p ack -e 40 -c 0 -i 123 -a 0 -x {21.0 3.0 -1 ------- null} r -t 10.608 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 104 -a 0 -x {3.0 21.0 53 ------- null} + -t 10.608 -s 21 -d 28 -p ack -e 40 -c 0 -i 124 -a 0 -x {21.0 3.0 53 ------- null} - -t 10.608 -s 21 -d 28 -p ack -e 40 -c 0 -i 124 -a 0 -x {21.0 3.0 53 ------- null} h -t 10.608 -s 21 -d 28 -p ack -e 40 -c 0 -i 124 -a 0 -x {21.0 3.0 -1 ------- null} r -t 10.6096 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {3.0 21.0 54 ------- null} + -t 10.6096 -s 21 -d 28 -p ack -e 40 -c 0 -i 125 -a 0 -x {21.0 3.0 54 ------- null} - -t 10.6096 -s 21 -d 28 -p ack -e 40 -c 0 -i 125 -a 0 -x {21.0 3.0 54 ------- null} h -t 10.6096 -s 21 -d 28 -p ack -e 40 -c 0 -i 125 -a 0 -x {21.0 3.0 -1 ------- null} r -t 10.6112 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 106 -a 0 -x {3.0 21.0 55 ------- null} + -t 10.6112 -s 21 -d 28 -p ack -e 40 -c 0 -i 126 -a 0 -x {21.0 3.0 55 ------- null} - -t 10.6112 -s 21 -d 28 -p ack -e 40 -c 0 -i 126 -a 0 -x {21.0 3.0 55 ------- null} h -t 10.6112 -s 21 -d 28 -p ack -e 40 -c 0 -i 126 -a 0 -x {21.0 3.0 -1 ------- null} r -t 10.6128 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {3.0 21.0 56 ------- null} + -t 10.6128 -s 21 -d 28 -p ack -e 40 -c 0 -i 127 -a 0 -x {21.0 3.0 56 ------- null} - -t 10.6128 -s 21 -d 28 -p ack -e 40 -c 0 -i 127 -a 0 -x {21.0 3.0 56 ------- null} h -t 10.6128 -s 21 -d 28 -p ack -e 40 -c 0 -i 127 -a 0 -x {21.0 3.0 -1 ------- null} r -t 10.6144 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 108 -a 0 -x {3.0 21.0 57 ------- null} + -t 10.6144 -s 21 -d 28 -p ack -e 40 -c 0 -i 128 -a 0 -x {21.0 3.0 57 ------- null} - -t 10.6144 -s 21 -d 28 -p ack -e 40 -c 0 -i 128 -a 0 -x {21.0 3.0 57 ------- null} h -t 10.6144 -s 21 -d 28 -p ack -e 40 -c 0 -i 128 -a 0 -x {21.0 3.0 -1 ------- null} r -t 10.616 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {3.0 21.0 58 ------- null} + -t 10.616 -s 21 -d 28 -p ack -e 40 -c 0 -i 129 -a 0 -x {21.0 3.0 58 ------- null} - -t 10.616 -s 21 -d 28 -p ack -e 40 -c 0 -i 129 -a 0 -x {21.0 3.0 58 ------- null} h -t 10.616 -s 21 -d 28 -p ack -e 40 -c 0 -i 129 -a 0 -x {21.0 3.0 -1 ------- null} r -t 10.6176 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 110 -a 0 -x {3.0 21.0 59 ------- null} + -t 10.6176 -s 21 -d 28 -p ack -e 40 -c 0 -i 130 -a 0 -x {21.0 3.0 59 ------- null} - -t 10.6176 -s 21 -d 28 -p ack -e 40 -c 0 -i 130 -a 0 -x {21.0 3.0 59 ------- null} h -t 10.6176 -s 21 -d 28 -p ack -e 40 -c 0 -i 130 -a 0 -x {21.0 3.0 -1 ------- null} r -t 10.6192 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {3.0 21.0 60 ------- null} + -t 10.6192 -s 21 -d 28 -p ack -e 40 -c 0 -i 131 -a 0 -x {21.0 3.0 60 ------- null} - -t 10.6192 -s 21 -d 28 -p ack -e 40 -c 0 -i 131 -a 0 -x {21.0 3.0 60 ------- null} h -t 10.6192 -s 21 -d 28 -p ack -e 40 -c 0 -i 131 -a 0 -x {21.0 3.0 -1 ------- null} r -t 10.6208 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {3.0 21.0 61 ------- null} + -t 10.6208 -s 21 -d 28 -p ack -e 40 -c 0 -i 132 -a 0 -x {21.0 3.0 61 ------- null} - -t 10.6208 -s 21 -d 28 -p ack -e 40 -c 0 -i 132 -a 0 -x {21.0 3.0 61 ------- null} h -t 10.6208 -s 21 -d 28 -p ack -e 40 -c 0 -i 132 -a 0 -x {21.0 3.0 -1 ------- null} r -t 10.6224 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {3.0 21.0 62 ------- null} + -t 10.6224 -s 21 -d 28 -p ack -e 40 -c 0 -i 133 -a 0 -x {21.0 3.0 62 ------- null} - -t 10.6224 -s 21 -d 28 -p ack -e 40 -c 0 -i 133 -a 0 -x {21.0 3.0 62 ------- null} h -t 10.6224 -s 21 -d 28 -p ack -e 40 -c 0 -i 133 -a 0 -x {21.0 3.0 -1 ------- null} r -t 10.624 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 114 -a 0 -x {3.0 21.0 63 ------- null} + -t 10.624 -s 21 -d 28 -p ack -e 40 -c 0 -i 134 -a 0 -x {21.0 3.0 63 ------- null} - -t 10.624 -s 21 -d 28 -p ack -e 40 -c 0 -i 134 -a 0 -x {21.0 3.0 63 ------- null} h -t 10.624 -s 21 -d 28 -p ack -e 40 -c 0 -i 134 -a 0 -x {21.0 3.0 -1 ------- null} r -t 10.6256 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {3.0 21.0 64 ------- null} + -t 10.6256 -s 21 -d 28 -p ack -e 40 -c 0 -i 135 -a 0 -x {21.0 3.0 64 ------- null} - -t 10.6256 -s 21 -d 28 -p ack -e 40 -c 0 -i 135 -a 0 -x {21.0 3.0 64 ------- null} h -t 10.6256 -s 21 -d 28 -p ack -e 40 -c 0 -i 135 -a 0 -x {21.0 3.0 -1 ------- null} r -t 10.6272 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {3.0 21.0 65 ------- null} + -t 10.6272 -s 21 -d 28 -p ack -e 40 -c 0 -i 136 -a 0 -x {21.0 3.0 65 ------- null} - -t 10.6272 -s 21 -d 28 -p ack -e 40 -c 0 -i 136 -a 0 -x {21.0 3.0 65 ------- null} h -t 10.6272 -s 21 -d 28 -p ack -e 40 -c 0 -i 136 -a 0 -x {21.0 3.0 -1 ------- null} r -t 10.6288 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {3.0 21.0 66 ------- null} + -t 10.6288 -s 21 -d 28 -p ack -e 40 -c 0 -i 137 -a 0 -x {21.0 3.0 66 ------- null} - -t 10.6288 -s 21 -d 28 -p ack -e 40 -c 0 -i 137 -a 0 -x {21.0 3.0 66 ------- null} h -t 10.6288 -s 21 -d 28 -p ack -e 40 -c 0 -i 137 -a 0 -x {21.0 3.0 -1 ------- null} r -t 10.6304 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {3.0 21.0 67 ------- null} + -t 10.6304 -s 21 -d 28 -p ack -e 40 -c 0 -i 138 -a 0 -x {21.0 3.0 67 ------- null} - -t 10.6304 -s 21 -d 28 -p ack -e 40 -c 0 -i 138 -a 0 -x {21.0 3.0 67 ------- null} h -t 10.6304 -s 21 -d 28 -p ack -e 40 -c 0 -i 138 -a 0 -x {21.0 3.0 -1 ------- null} r -t 10.632 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {3.0 21.0 68 ------- null} + -t 10.632 -s 21 -d 28 -p ack -e 40 -c 0 -i 139 -a 0 -x {21.0 3.0 68 ------- null} - -t 10.632 -s 21 -d 28 -p ack -e 40 -c 0 -i 139 -a 0 -x {21.0 3.0 68 ------- null} h -t 10.632 -s 21 -d 28 -p ack -e 40 -c 0 -i 139 -a 0 -x {21.0 3.0 -1 ------- null} r -t 10.6336 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {3.0 21.0 69 ------- null} + -t 10.6336 -s 21 -d 28 -p ack -e 40 -c 0 -i 140 -a 0 -x {21.0 3.0 69 ------- null} - -t 10.6336 -s 21 -d 28 -p ack -e 40 -c 0 -i 140 -a 0 -x {21.0 3.0 69 ------- null} h -t 10.6336 -s 21 -d 28 -p ack -e 40 -c 0 -i 140 -a 0 -x {21.0 3.0 -1 ------- null} r -t 10.6352 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {3.0 21.0 70 ------- null} + -t 10.6352 -s 21 -d 28 -p ack -e 40 -c 0 -i 141 -a 0 -x {21.0 3.0 70 ------- null} - -t 10.6352 -s 21 -d 28 -p ack -e 40 -c 0 -i 141 -a 0 -x {21.0 3.0 70 ------- null} h -t 10.6352 -s 21 -d 28 -p ack -e 40 -c 0 -i 141 -a 0 -x {21.0 3.0 -1 ------- null} r -t 10.9548 -s 21 -d 28 -p ack -e 40 -c 0 -i 122 -a 0 -x {21.0 3.0 51 ------- null} + -t 10.9548 -s 28 -d 1 -p ack -e 40 -c 0 -i 122 -a 0 -x {21.0 3.0 51 ------- null} - -t 10.9548 -s 28 -d 1 -p ack -e 40 -c 0 -i 122 -a 0 -x {21.0 3.0 51 ------- null} h -t 10.9548 -s 28 -d 1 -p ack -e 40 -c 0 -i 122 -a 0 -x {21.0 3.0 -1 ------- null} r -t 10.9564 -s 21 -d 28 -p ack -e 40 -c 0 -i 123 -a 0 -x {21.0 3.0 52 ------- null} + -t 10.9564 -s 28 -d 1 -p ack -e 40 -c 0 -i 123 -a 0 -x {21.0 3.0 52 ------- null} - -t 10.9564 -s 28 -d 1 -p ack -e 40 -c 0 -i 123 -a 0 -x {21.0 3.0 52 ------- null} h -t 10.9564 -s 28 -d 1 -p ack -e 40 -c 0 -i 123 -a 0 -x {21.0 3.0 -1 ------- null} r -t 10.958 -s 21 -d 28 -p ack -e 40 -c 0 -i 124 -a 0 -x {21.0 3.0 53 ------- null} + -t 10.958 -s 28 -d 1 -p ack -e 40 -c 0 -i 124 -a 0 -x {21.0 3.0 53 ------- null} - -t 10.958 -s 28 -d 1 -p ack -e 40 -c 0 -i 124 -a 0 -x {21.0 3.0 53 ------- null} h -t 10.958 -s 28 -d 1 -p ack -e 40 -c 0 -i 124 -a 0 -x {21.0 3.0 -1 ------- null} r -t 10.9596 -s 21 -d 28 -p ack -e 40 -c 0 -i 125 -a 0 -x {21.0 3.0 54 ------- null} + -t 10.9596 -s 28 -d 1 -p ack -e 40 -c 0 -i 125 -a 0 -x {21.0 3.0 54 ------- null} - -t 10.9596 -s 28 -d 1 -p ack -e 40 -c 0 -i 125 -a 0 -x {21.0 3.0 54 ------- null} h -t 10.9596 -s 28 -d 1 -p ack -e 40 -c 0 -i 125 -a 0 -x {21.0 3.0 -1 ------- null} r -t 10.9612 -s 21 -d 28 -p ack -e 40 -c 0 -i 126 -a 0 -x {21.0 3.0 55 ------- null} + -t 10.9612 -s 28 -d 1 -p ack -e 40 -c 0 -i 126 -a 0 -x {21.0 3.0 55 ------- null} - -t 10.9612 -s 28 -d 1 -p ack -e 40 -c 0 -i 126 -a 0 -x {21.0 3.0 55 ------- null} h -t 10.9612 -s 28 -d 1 -p ack -e 40 -c 0 -i 126 -a 0 -x {21.0 3.0 -1 ------- null} r -t 10.9628 -s 21 -d 28 -p ack -e 40 -c 0 -i 127 -a 0 -x {21.0 3.0 56 ------- null} + -t 10.9628 -s 28 -d 1 -p ack -e 40 -c 0 -i 127 -a 0 -x {21.0 3.0 56 ------- null} - -t 10.9628 -s 28 -d 1 -p ack -e 40 -c 0 -i 127 -a 0 -x {21.0 3.0 56 ------- null} h -t 10.9628 -s 28 -d 1 -p ack -e 40 -c 0 -i 127 -a 0 -x {21.0 3.0 -1 ------- null} r -t 10.9644 -s 21 -d 28 -p ack -e 40 -c 0 -i 128 -a 0 -x {21.0 3.0 57 ------- null} + -t 10.9644 -s 28 -d 1 -p ack -e 40 -c 0 -i 128 -a 0 -x {21.0 3.0 57 ------- null} - -t 10.9644 -s 28 -d 1 -p ack -e 40 -c 0 -i 128 -a 0 -x {21.0 3.0 57 ------- null} h -t 10.9644 -s 28 -d 1 -p ack -e 40 -c 0 -i 128 -a 0 -x {21.0 3.0 -1 ------- null} r -t 10.966 -s 21 -d 28 -p ack -e 40 -c 0 -i 129 -a 0 -x {21.0 3.0 58 ------- null} + -t 10.966 -s 28 -d 1 -p ack -e 40 -c 0 -i 129 -a 0 -x {21.0 3.0 58 ------- null} - -t 10.966 -s 28 -d 1 -p ack -e 40 -c 0 -i 129 -a 0 -x {21.0 3.0 58 ------- null} h -t 10.966 -s 28 -d 1 -p ack -e 40 -c 0 -i 129 -a 0 -x {21.0 3.0 -1 ------- null} r -t 10.9676 -s 21 -d 28 -p ack -e 40 -c 0 -i 130 -a 0 -x {21.0 3.0 59 ------- null} + -t 10.9676 -s 28 -d 1 -p ack -e 40 -c 0 -i 130 -a 0 -x {21.0 3.0 59 ------- null} - -t 10.9676 -s 28 -d 1 -p ack -e 40 -c 0 -i 130 -a 0 -x {21.0 3.0 59 ------- null} h -t 10.9676 -s 28 -d 1 -p ack -e 40 -c 0 -i 130 -a 0 -x {21.0 3.0 -1 ------- null} r -t 10.9692 -s 21 -d 28 -p ack -e 40 -c 0 -i 131 -a 0 -x {21.0 3.0 60 ------- null} + -t 10.9692 -s 28 -d 1 -p ack -e 40 -c 0 -i 131 -a 0 -x {21.0 3.0 60 ------- null} - -t 10.9692 -s 28 -d 1 -p ack -e 40 -c 0 -i 131 -a 0 -x {21.0 3.0 60 ------- null} h -t 10.9692 -s 28 -d 1 -p ack -e 40 -c 0 -i 131 -a 0 -x {21.0 3.0 -1 ------- null} r -t 10.9708 -s 21 -d 28 -p ack -e 40 -c 0 -i 132 -a 0 -x {21.0 3.0 61 ------- null} + -t 10.9708 -s 28 -d 1 -p ack -e 40 -c 0 -i 132 -a 0 -x {21.0 3.0 61 ------- null} - -t 10.9708 -s 28 -d 1 -p ack -e 40 -c 0 -i 132 -a 0 -x {21.0 3.0 61 ------- null} h -t 10.9708 -s 28 -d 1 -p ack -e 40 -c 0 -i 132 -a 0 -x {21.0 3.0 -1 ------- null} r -t 10.9724 -s 21 -d 28 -p ack -e 40 -c 0 -i 133 -a 0 -x {21.0 3.0 62 ------- null} + -t 10.9724 -s 28 -d 1 -p ack -e 40 -c 0 -i 133 -a 0 -x {21.0 3.0 62 ------- null} - -t 10.9724 -s 28 -d 1 -p ack -e 40 -c 0 -i 133 -a 0 -x {21.0 3.0 62 ------- null} h -t 10.9724 -s 28 -d 1 -p ack -e 40 -c 0 -i 133 -a 0 -x {21.0 3.0 -1 ------- null} r -t 10.974 -s 21 -d 28 -p ack -e 40 -c 0 -i 134 -a 0 -x {21.0 3.0 63 ------- null} + -t 10.974 -s 28 -d 1 -p ack -e 40 -c 0 -i 134 -a 0 -x {21.0 3.0 63 ------- null} - -t 10.974 -s 28 -d 1 -p ack -e 40 -c 0 -i 134 -a 0 -x {21.0 3.0 63 ------- null} h -t 10.974 -s 28 -d 1 -p ack -e 40 -c 0 -i 134 -a 0 -x {21.0 3.0 -1 ------- null} r -t 10.9756 -s 21 -d 28 -p ack -e 40 -c 0 -i 135 -a 0 -x {21.0 3.0 64 ------- null} + -t 10.9756 -s 28 -d 1 -p ack -e 40 -c 0 -i 135 -a 0 -x {21.0 3.0 64 ------- null} - -t 10.9756 -s 28 -d 1 -p ack -e 40 -c 0 -i 135 -a 0 -x {21.0 3.0 64 ------- null} h -t 10.9756 -s 28 -d 1 -p ack -e 40 -c 0 -i 135 -a 0 -x {21.0 3.0 -1 ------- null} r -t 10.9772 -s 21 -d 28 -p ack -e 40 -c 0 -i 136 -a 0 -x {21.0 3.0 65 ------- null} + -t 10.9772 -s 28 -d 1 -p ack -e 40 -c 0 -i 136 -a 0 -x {21.0 3.0 65 ------- null} - -t 10.9772 -s 28 -d 1 -p ack -e 40 -c 0 -i 136 -a 0 -x {21.0 3.0 65 ------- null} h -t 10.9772 -s 28 -d 1 -p ack -e 40 -c 0 -i 136 -a 0 -x {21.0 3.0 -1 ------- null} r -t 10.9788 -s 21 -d 28 -p ack -e 40 -c 0 -i 137 -a 0 -x {21.0 3.0 66 ------- null} + -t 10.9788 -s 28 -d 1 -p ack -e 40 -c 0 -i 137 -a 0 -x {21.0 3.0 66 ------- null} - -t 10.9788 -s 28 -d 1 -p ack -e 40 -c 0 -i 137 -a 0 -x {21.0 3.0 66 ------- null} h -t 10.9788 -s 28 -d 1 -p ack -e 40 -c 0 -i 137 -a 0 -x {21.0 3.0 -1 ------- null} r -t 10.9804 -s 21 -d 28 -p ack -e 40 -c 0 -i 138 -a 0 -x {21.0 3.0 67 ------- null} + -t 10.9804 -s 28 -d 1 -p ack -e 40 -c 0 -i 138 -a 0 -x {21.0 3.0 67 ------- null} - -t 10.9804 -s 28 -d 1 -p ack -e 40 -c 0 -i 138 -a 0 -x {21.0 3.0 67 ------- null} h -t 10.9804 -s 28 -d 1 -p ack -e 40 -c 0 -i 138 -a 0 -x {21.0 3.0 -1 ------- null} r -t 10.982 -s 21 -d 28 -p ack -e 40 -c 0 -i 139 -a 0 -x {21.0 3.0 68 ------- null} + -t 10.982 -s 28 -d 1 -p ack -e 40 -c 0 -i 139 -a 0 -x {21.0 3.0 68 ------- null} - -t 10.982 -s 28 -d 1 -p ack -e 40 -c 0 -i 139 -a 0 -x {21.0 3.0 68 ------- null} h -t 10.982 -s 28 -d 1 -p ack -e 40 -c 0 -i 139 -a 0 -x {21.0 3.0 -1 ------- null} r -t 10.9836 -s 21 -d 28 -p ack -e 40 -c 0 -i 140 -a 0 -x {21.0 3.0 69 ------- null} + -t 10.9836 -s 28 -d 1 -p ack -e 40 -c 0 -i 140 -a 0 -x {21.0 3.0 69 ------- null} - -t 10.9836 -s 28 -d 1 -p ack -e 40 -c 0 -i 140 -a 0 -x {21.0 3.0 69 ------- null} h -t 10.9836 -s 28 -d 1 -p ack -e 40 -c 0 -i 140 -a 0 -x {21.0 3.0 -1 ------- null} r -t 10.9852 -s 21 -d 28 -p ack -e 40 -c 0 -i 141 -a 0 -x {21.0 3.0 70 ------- null} + -t 10.9852 -s 28 -d 1 -p ack -e 40 -c 0 -i 141 -a 0 -x {21.0 3.0 70 ------- null} - -t 10.9852 -s 28 -d 1 -p ack -e 40 -c 0 -i 141 -a 0 -x {21.0 3.0 70 ------- null} h -t 10.9852 -s 28 -d 1 -p ack -e 40 -c 0 -i 141 -a 0 -x {21.0 3.0 -1 ------- null} r -t 11.2549 -s 28 -d 1 -p ack -e 40 -c 0 -i 122 -a 0 -x {21.0 3.0 51 ------- null} + -t 11.2549 -s 1 -d 3 -p ack -e 40 -c 0 -i 122 -a 0 -x {21.0 3.0 51 ------- null} - -t 11.2549 -s 1 -d 3 -p ack -e 40 -c 0 -i 122 -a 0 -x {21.0 3.0 51 ------- null} h -t 11.2549 -s 1 -d 3 -p ack -e 40 -c 0 -i 122 -a 0 -x {21.0 3.0 -1 ------- null} r -t 11.2565 -s 28 -d 1 -p ack -e 40 -c 0 -i 123 -a 0 -x {21.0 3.0 52 ------- null} + -t 11.2565 -s 1 -d 3 -p ack -e 40 -c 0 -i 123 -a 0 -x {21.0 3.0 52 ------- null} - -t 11.2565 -s 1 -d 3 -p ack -e 40 -c 0 -i 123 -a 0 -x {21.0 3.0 52 ------- null} h -t 11.2565 -s 1 -d 3 -p ack -e 40 -c 0 -i 123 -a 0 -x {21.0 3.0 -1 ------- null} r -t 11.2581 -s 28 -d 1 -p ack -e 40 -c 0 -i 124 -a 0 -x {21.0 3.0 53 ------- null} + -t 11.2581 -s 1 -d 3 -p ack -e 40 -c 0 -i 124 -a 0 -x {21.0 3.0 53 ------- null} - -t 11.2581 -s 1 -d 3 -p ack -e 40 -c 0 -i 124 -a 0 -x {21.0 3.0 53 ------- null} h -t 11.2581 -s 1 -d 3 -p ack -e 40 -c 0 -i 124 -a 0 -x {21.0 3.0 -1 ------- null} r -t 11.2597 -s 28 -d 1 -p ack -e 40 -c 0 -i 125 -a 0 -x {21.0 3.0 54 ------- null} + -t 11.2597 -s 1 -d 3 -p ack -e 40 -c 0 -i 125 -a 0 -x {21.0 3.0 54 ------- null} - -t 11.2597 -s 1 -d 3 -p ack -e 40 -c 0 -i 125 -a 0 -x {21.0 3.0 54 ------- null} h -t 11.2597 -s 1 -d 3 -p ack -e 40 -c 0 -i 125 -a 0 -x {21.0 3.0 -1 ------- null} r -t 11.2613 -s 28 -d 1 -p ack -e 40 -c 0 -i 126 -a 0 -x {21.0 3.0 55 ------- null} + -t 11.2613 -s 1 -d 3 -p ack -e 40 -c 0 -i 126 -a 0 -x {21.0 3.0 55 ------- null} - -t 11.2613 -s 1 -d 3 -p ack -e 40 -c 0 -i 126 -a 0 -x {21.0 3.0 55 ------- null} h -t 11.2613 -s 1 -d 3 -p ack -e 40 -c 0 -i 126 -a 0 -x {21.0 3.0 -1 ------- null} r -t 11.2629 -s 28 -d 1 -p ack -e 40 -c 0 -i 127 -a 0 -x {21.0 3.0 56 ------- null} + -t 11.2629 -s 1 -d 3 -p ack -e 40 -c 0 -i 127 -a 0 -x {21.0 3.0 56 ------- null} - -t 11.2629 -s 1 -d 3 -p ack -e 40 -c 0 -i 127 -a 0 -x {21.0 3.0 56 ------- null} h -t 11.2629 -s 1 -d 3 -p ack -e 40 -c 0 -i 127 -a 0 -x {21.0 3.0 -1 ------- null} r -t 11.2645 -s 28 -d 1 -p ack -e 40 -c 0 -i 128 -a 0 -x {21.0 3.0 57 ------- null} + -t 11.2645 -s 1 -d 3 -p ack -e 40 -c 0 -i 128 -a 0 -x {21.0 3.0 57 ------- null} - -t 11.2645 -s 1 -d 3 -p ack -e 40 -c 0 -i 128 -a 0 -x {21.0 3.0 57 ------- null} h -t 11.2645 -s 1 -d 3 -p ack -e 40 -c 0 -i 128 -a 0 -x {21.0 3.0 -1 ------- null} r -t 11.2661 -s 28 -d 1 -p ack -e 40 -c 0 -i 129 -a 0 -x {21.0 3.0 58 ------- null} + -t 11.2661 -s 1 -d 3 -p ack -e 40 -c 0 -i 129 -a 0 -x {21.0 3.0 58 ------- null} - -t 11.2661 -s 1 -d 3 -p ack -e 40 -c 0 -i 129 -a 0 -x {21.0 3.0 58 ------- null} h -t 11.2661 -s 1 -d 3 -p ack -e 40 -c 0 -i 129 -a 0 -x {21.0 3.0 -1 ------- null} r -t 11.2677 -s 28 -d 1 -p ack -e 40 -c 0 -i 130 -a 0 -x {21.0 3.0 59 ------- null} + -t 11.2677 -s 1 -d 3 -p ack -e 40 -c 0 -i 130 -a 0 -x {21.0 3.0 59 ------- null} - -t 11.2677 -s 1 -d 3 -p ack -e 40 -c 0 -i 130 -a 0 -x {21.0 3.0 59 ------- null} h -t 11.2677 -s 1 -d 3 -p ack -e 40 -c 0 -i 130 -a 0 -x {21.0 3.0 -1 ------- null} r -t 11.2693 -s 28 -d 1 -p ack -e 40 -c 0 -i 131 -a 0 -x {21.0 3.0 60 ------- null} + -t 11.2693 -s 1 -d 3 -p ack -e 40 -c 0 -i 131 -a 0 -x {21.0 3.0 60 ------- null} - -t 11.2693 -s 1 -d 3 -p ack -e 40 -c 0 -i 131 -a 0 -x {21.0 3.0 60 ------- null} h -t 11.2693 -s 1 -d 3 -p ack -e 40 -c 0 -i 131 -a 0 -x {21.0 3.0 -1 ------- null} r -t 11.2709 -s 28 -d 1 -p ack -e 40 -c 0 -i 132 -a 0 -x {21.0 3.0 61 ------- null} + -t 11.2709 -s 1 -d 3 -p ack -e 40 -c 0 -i 132 -a 0 -x {21.0 3.0 61 ------- null} - -t 11.2709 -s 1 -d 3 -p ack -e 40 -c 0 -i 132 -a 0 -x {21.0 3.0 61 ------- null} h -t 11.2709 -s 1 -d 3 -p ack -e 40 -c 0 -i 132 -a 0 -x {21.0 3.0 -1 ------- null} r -t 11.2725 -s 28 -d 1 -p ack -e 40 -c 0 -i 133 -a 0 -x {21.0 3.0 62 ------- null} + -t 11.2725 -s 1 -d 3 -p ack -e 40 -c 0 -i 133 -a 0 -x {21.0 3.0 62 ------- null} - -t 11.2725 -s 1 -d 3 -p ack -e 40 -c 0 -i 133 -a 0 -x {21.0 3.0 62 ------- null} h -t 11.2725 -s 1 -d 3 -p ack -e 40 -c 0 -i 133 -a 0 -x {21.0 3.0 -1 ------- null} r -t 11.2741 -s 28 -d 1 -p ack -e 40 -c 0 -i 134 -a 0 -x {21.0 3.0 63 ------- null} + -t 11.2741 -s 1 -d 3 -p ack -e 40 -c 0 -i 134 -a 0 -x {21.0 3.0 63 ------- null} - -t 11.2741 -s 1 -d 3 -p ack -e 40 -c 0 -i 134 -a 0 -x {21.0 3.0 63 ------- null} h -t 11.2741 -s 1 -d 3 -p ack -e 40 -c 0 -i 134 -a 0 -x {21.0 3.0 -1 ------- null} r -t 11.2757 -s 28 -d 1 -p ack -e 40 -c 0 -i 135 -a 0 -x {21.0 3.0 64 ------- null} + -t 11.2757 -s 1 -d 3 -p ack -e 40 -c 0 -i 135 -a 0 -x {21.0 3.0 64 ------- null} - -t 11.2757 -s 1 -d 3 -p ack -e 40 -c 0 -i 135 -a 0 -x {21.0 3.0 64 ------- null} h -t 11.2757 -s 1 -d 3 -p ack -e 40 -c 0 -i 135 -a 0 -x {21.0 3.0 -1 ------- null} r -t 11.2773 -s 28 -d 1 -p ack -e 40 -c 0 -i 136 -a 0 -x {21.0 3.0 65 ------- null} + -t 11.2773 -s 1 -d 3 -p ack -e 40 -c 0 -i 136 -a 0 -x {21.0 3.0 65 ------- null} - -t 11.2773 -s 1 -d 3 -p ack -e 40 -c 0 -i 136 -a 0 -x {21.0 3.0 65 ------- null} h -t 11.2773 -s 1 -d 3 -p ack -e 40 -c 0 -i 136 -a 0 -x {21.0 3.0 -1 ------- null} r -t 11.2789 -s 28 -d 1 -p ack -e 40 -c 0 -i 137 -a 0 -x {21.0 3.0 66 ------- null} + -t 11.2789 -s 1 -d 3 -p ack -e 40 -c 0 -i 137 -a 0 -x {21.0 3.0 66 ------- null} - -t 11.2789 -s 1 -d 3 -p ack -e 40 -c 0 -i 137 -a 0 -x {21.0 3.0 66 ------- null} h -t 11.2789 -s 1 -d 3 -p ack -e 40 -c 0 -i 137 -a 0 -x {21.0 3.0 -1 ------- null} r -t 11.2805 -s 28 -d 1 -p ack -e 40 -c 0 -i 138 -a 0 -x {21.0 3.0 67 ------- null} + -t 11.2805 -s 1 -d 3 -p ack -e 40 -c 0 -i 138 -a 0 -x {21.0 3.0 67 ------- null} - -t 11.2805 -s 1 -d 3 -p ack -e 40 -c 0 -i 138 -a 0 -x {21.0 3.0 67 ------- null} h -t 11.2805 -s 1 -d 3 -p ack -e 40 -c 0 -i 138 -a 0 -x {21.0 3.0 -1 ------- null} r -t 11.2821 -s 28 -d 1 -p ack -e 40 -c 0 -i 139 -a 0 -x {21.0 3.0 68 ------- null} + -t 11.2821 -s 1 -d 3 -p ack -e 40 -c 0 -i 139 -a 0 -x {21.0 3.0 68 ------- null} - -t 11.2821 -s 1 -d 3 -p ack -e 40 -c 0 -i 139 -a 0 -x {21.0 3.0 68 ------- null} h -t 11.2821 -s 1 -d 3 -p ack -e 40 -c 0 -i 139 -a 0 -x {21.0 3.0 -1 ------- null} r -t 11.2837 -s 28 -d 1 -p ack -e 40 -c 0 -i 140 -a 0 -x {21.0 3.0 69 ------- null} + -t 11.2837 -s 1 -d 3 -p ack -e 40 -c 0 -i 140 -a 0 -x {21.0 3.0 69 ------- null} - -t 11.2837 -s 1 -d 3 -p ack -e 40 -c 0 -i 140 -a 0 -x {21.0 3.0 69 ------- null} h -t 11.2837 -s 1 -d 3 -p ack -e 40 -c 0 -i 140 -a 0 -x {21.0 3.0 -1 ------- null} r -t 11.2853 -s 28 -d 1 -p ack -e 40 -c 0 -i 141 -a 0 -x {21.0 3.0 70 ------- null} + -t 11.2853 -s 1 -d 3 -p ack -e 40 -c 0 -i 141 -a 0 -x {21.0 3.0 70 ------- null} - -t 11.2853 -s 1 -d 3 -p ack -e 40 -c 0 -i 141 -a 0 -x {21.0 3.0 70 ------- null} h -t 11.2853 -s 1 -d 3 -p ack -e 40 -c 0 -i 141 -a 0 -x {21.0 3.0 -1 ------- null} r -t 11.3949 -s 1 -d 3 -p ack -e 40 -c 0 -i 122 -a 0 -x {21.0 3.0 51 ------- null} + -t 11.3949 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 142 -a 0 -x {3.0 21.0 71 ------- null} - -t 11.3949 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 142 -a 0 -x {3.0 21.0 71 ------- null} h -t 11.3949 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 142 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.3965 -s 1 -d 3 -p ack -e 40 -c 0 -i 123 -a 0 -x {21.0 3.0 52 ------- null} + -t 11.3965 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {3.0 21.0 72 ------- null} - -t 11.3965 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {3.0 21.0 72 ------- null} h -t 11.3965 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.3981 -s 1 -d 3 -p ack -e 40 -c 0 -i 124 -a 0 -x {21.0 3.0 53 ------- null} + -t 11.3981 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 144 -a 0 -x {3.0 21.0 73 ------- null} - -t 11.3981 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 144 -a 0 -x {3.0 21.0 73 ------- null} h -t 11.3981 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 144 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.3997 -s 1 -d 3 -p ack -e 40 -c 0 -i 125 -a 0 -x {21.0 3.0 54 ------- null} + -t 11.3997 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {3.0 21.0 74 ------- null} - -t 11.3997 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {3.0 21.0 74 ------- null} h -t 11.3997 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.4013 -s 1 -d 3 -p ack -e 40 -c 0 -i 126 -a 0 -x {21.0 3.0 55 ------- null} + -t 11.4013 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 146 -a 0 -x {3.0 21.0 75 ------- null} - -t 11.4013 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 146 -a 0 -x {3.0 21.0 75 ------- null} h -t 11.4013 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 146 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.4029 -s 1 -d 3 -p ack -e 40 -c 0 -i 127 -a 0 -x {21.0 3.0 56 ------- null} + -t 11.4029 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {3.0 21.0 76 ------- null} - -t 11.4029 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {3.0 21.0 76 ------- null} h -t 11.4029 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.4045 -s 1 -d 3 -p ack -e 40 -c 0 -i 128 -a 0 -x {21.0 3.0 57 ------- null} + -t 11.4045 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 148 -a 0 -x {3.0 21.0 77 ------- null} - -t 11.4045 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 148 -a 0 -x {3.0 21.0 77 ------- null} h -t 11.4045 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 148 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.4061 -s 1 -d 3 -p ack -e 40 -c 0 -i 129 -a 0 -x {21.0 3.0 58 ------- null} + -t 11.4061 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {3.0 21.0 78 ------- null} - -t 11.4061 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {3.0 21.0 78 ------- null} h -t 11.4061 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.4077 -s 1 -d 3 -p ack -e 40 -c 0 -i 130 -a 0 -x {21.0 3.0 59 ------- null} + -t 11.4077 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 150 -a 0 -x {3.0 21.0 79 ------- null} - -t 11.4077 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 150 -a 0 -x {3.0 21.0 79 ------- null} h -t 11.4077 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 150 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.4093 -s 1 -d 3 -p ack -e 40 -c 0 -i 131 -a 0 -x {21.0 3.0 60 ------- null} + -t 11.4093 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {3.0 21.0 80 ------- null} - -t 11.4093 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {3.0 21.0 80 ------- null} h -t 11.4093 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.4109 -s 1 -d 3 -p ack -e 40 -c 0 -i 132 -a 0 -x {21.0 3.0 61 ------- null} + -t 11.4109 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 152 -a 0 -x {3.0 21.0 81 ------- null} - -t 11.4109 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 152 -a 0 -x {3.0 21.0 81 ------- null} h -t 11.4109 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 152 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.4125 -s 1 -d 3 -p ack -e 40 -c 0 -i 133 -a 0 -x {21.0 3.0 62 ------- null} + -t 11.4125 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {3.0 21.0 82 ------- null} - -t 11.4125 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {3.0 21.0 82 ------- null} h -t 11.4125 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.4141 -s 1 -d 3 -p ack -e 40 -c 0 -i 134 -a 0 -x {21.0 3.0 63 ------- null} + -t 11.4141 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 154 -a 0 -x {3.0 21.0 83 ------- null} - -t 11.4141 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 154 -a 0 -x {3.0 21.0 83 ------- null} h -t 11.4141 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 154 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.4157 -s 1 -d 3 -p ack -e 40 -c 0 -i 135 -a 0 -x {21.0 3.0 64 ------- null} + -t 11.4157 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {3.0 21.0 84 ------- null} - -t 11.4157 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {3.0 21.0 84 ------- null} h -t 11.4157 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.4173 -s 1 -d 3 -p ack -e 40 -c 0 -i 136 -a 0 -x {21.0 3.0 65 ------- null} + -t 11.4173 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 156 -a 0 -x {3.0 21.0 85 ------- null} - -t 11.4173 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 156 -a 0 -x {3.0 21.0 85 ------- null} h -t 11.4173 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 156 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.4189 -s 1 -d 3 -p ack -e 40 -c 0 -i 137 -a 0 -x {21.0 3.0 66 ------- null} + -t 11.4189 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {3.0 21.0 86 ------- null} - -t 11.4189 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {3.0 21.0 86 ------- null} h -t 11.4189 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.4205 -s 1 -d 3 -p ack -e 40 -c 0 -i 138 -a 0 -x {21.0 3.0 67 ------- null} + -t 11.4205 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {3.0 21.0 87 ------- null} - -t 11.4205 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {3.0 21.0 87 ------- null} h -t 11.4205 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.4221 -s 1 -d 3 -p ack -e 40 -c 0 -i 139 -a 0 -x {21.0 3.0 68 ------- null} + -t 11.4221 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {3.0 21.0 88 ------- null} - -t 11.4221 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {3.0 21.0 88 ------- null} h -t 11.4221 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.4237 -s 1 -d 3 -p ack -e 40 -c 0 -i 140 -a 0 -x {21.0 3.0 69 ------- null} + -t 11.4237 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 160 -a 0 -x {3.0 21.0 89 ------- null} - -t 11.4237 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 160 -a 0 -x {3.0 21.0 89 ------- null} h -t 11.4237 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 160 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.4253 -s 1 -d 3 -p ack -e 40 -c 0 -i 141 -a 0 -x {21.0 3.0 70 ------- null} + -t 11.4253 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {3.0 21.0 90 ------- null} - -t 11.4253 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {3.0 21.0 90 ------- null} h -t 11.4253 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.5365 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 142 -a 0 -x {3.0 21.0 71 ------- null} + -t 11.5365 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 142 -a 0 -x {3.0 21.0 71 ------- null} - -t 11.5365 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 142 -a 0 -x {3.0 21.0 71 ------- null} h -t 11.5365 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 142 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.5381 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {3.0 21.0 72 ------- null} + -t 11.5381 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {3.0 21.0 72 ------- null} - -t 11.5381 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {3.0 21.0 72 ------- null} h -t 11.5381 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.5397 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 144 -a 0 -x {3.0 21.0 73 ------- null} + -t 11.5397 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 144 -a 0 -x {3.0 21.0 73 ------- null} - -t 11.5397 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 144 -a 0 -x {3.0 21.0 73 ------- null} h -t 11.5397 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 144 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.5413 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {3.0 21.0 74 ------- null} + -t 11.5413 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {3.0 21.0 74 ------- null} - -t 11.5413 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {3.0 21.0 74 ------- null} h -t 11.5413 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.5429 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 146 -a 0 -x {3.0 21.0 75 ------- null} + -t 11.5429 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 146 -a 0 -x {3.0 21.0 75 ------- null} - -t 11.5429 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 146 -a 0 -x {3.0 21.0 75 ------- null} h -t 11.5429 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 146 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.5445 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {3.0 21.0 76 ------- null} + -t 11.5445 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {3.0 21.0 76 ------- null} - -t 11.5445 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {3.0 21.0 76 ------- null} h -t 11.5445 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.5461 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 148 -a 0 -x {3.0 21.0 77 ------- null} + -t 11.5461 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 148 -a 0 -x {3.0 21.0 77 ------- null} - -t 11.5461 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 148 -a 0 -x {3.0 21.0 77 ------- null} h -t 11.5461 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 148 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.5477 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {3.0 21.0 78 ------- null} + -t 11.5477 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {3.0 21.0 78 ------- null} - -t 11.5477 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {3.0 21.0 78 ------- null} h -t 11.5477 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.5493 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 150 -a 0 -x {3.0 21.0 79 ------- null} + -t 11.5493 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 150 -a 0 -x {3.0 21.0 79 ------- null} - -t 11.5493 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 150 -a 0 -x {3.0 21.0 79 ------- null} h -t 11.5493 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 150 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.5509 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {3.0 21.0 80 ------- null} + -t 11.5509 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {3.0 21.0 80 ------- null} - -t 11.5509 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {3.0 21.0 80 ------- null} h -t 11.5509 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.5525 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 152 -a 0 -x {3.0 21.0 81 ------- null} + -t 11.5525 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 152 -a 0 -x {3.0 21.0 81 ------- null} - -t 11.5525 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 152 -a 0 -x {3.0 21.0 81 ------- null} h -t 11.5525 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 152 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.5541 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {3.0 21.0 82 ------- null} + -t 11.5541 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {3.0 21.0 82 ------- null} - -t 11.5541 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {3.0 21.0 82 ------- null} h -t 11.5541 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.5557 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 154 -a 0 -x {3.0 21.0 83 ------- null} + -t 11.5557 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 154 -a 0 -x {3.0 21.0 83 ------- null} - -t 11.5557 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 154 -a 0 -x {3.0 21.0 83 ------- null} h -t 11.5557 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 154 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.5573 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {3.0 21.0 84 ------- null} + -t 11.5573 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {3.0 21.0 84 ------- null} - -t 11.5573 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {3.0 21.0 84 ------- null} h -t 11.5573 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.5589 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 156 -a 0 -x {3.0 21.0 85 ------- null} + -t 11.5589 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 156 -a 0 -x {3.0 21.0 85 ------- null} - -t 11.5589 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 156 -a 0 -x {3.0 21.0 85 ------- null} h -t 11.5589 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 156 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.5605 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {3.0 21.0 86 ------- null} + -t 11.5605 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {3.0 21.0 86 ------- null} - -t 11.5605 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {3.0 21.0 86 ------- null} h -t 11.5605 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.5621 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {3.0 21.0 87 ------- null} + -t 11.5621 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {3.0 21.0 87 ------- null} - -t 11.5621 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {3.0 21.0 87 ------- null} h -t 11.5621 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.5637 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {3.0 21.0 88 ------- null} + -t 11.5637 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {3.0 21.0 88 ------- null} - -t 11.5637 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {3.0 21.0 88 ------- null} h -t 11.5637 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.5653 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 160 -a 0 -x {3.0 21.0 89 ------- null} + -t 11.5653 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 160 -a 0 -x {3.0 21.0 89 ------- null} - -t 11.5653 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 160 -a 0 -x {3.0 21.0 89 ------- null} h -t 11.5653 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 160 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.5669 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {3.0 21.0 90 ------- null} + -t 11.5669 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {3.0 21.0 90 ------- null} - -t 11.5669 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {3.0 21.0 90 ------- null} h -t 11.5669 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.8381 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 142 -a 0 -x {3.0 21.0 71 ------- null} + -t 11.8381 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 142 -a 0 -x {3.0 21.0 71 ------- null} - -t 11.8381 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 142 -a 0 -x {3.0 21.0 71 ------- null} h -t 11.8381 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 142 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.8397 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {3.0 21.0 72 ------- null} + -t 11.8397 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {3.0 21.0 72 ------- null} - -t 11.8397 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {3.0 21.0 72 ------- null} h -t 11.8397 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.8413 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 144 -a 0 -x {3.0 21.0 73 ------- null} + -t 11.8413 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 144 -a 0 -x {3.0 21.0 73 ------- null} - -t 11.8413 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 144 -a 0 -x {3.0 21.0 73 ------- null} h -t 11.8413 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 144 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.8429 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {3.0 21.0 74 ------- null} + -t 11.8429 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {3.0 21.0 74 ------- null} - -t 11.8429 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {3.0 21.0 74 ------- null} h -t 11.8429 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.8445 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 146 -a 0 -x {3.0 21.0 75 ------- null} + -t 11.8445 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 146 -a 0 -x {3.0 21.0 75 ------- null} - -t 11.8445 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 146 -a 0 -x {3.0 21.0 75 ------- null} h -t 11.8445 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 146 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.8461 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {3.0 21.0 76 ------- null} + -t 11.8461 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {3.0 21.0 76 ------- null} - -t 11.8461 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {3.0 21.0 76 ------- null} h -t 11.8461 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.8477 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 148 -a 0 -x {3.0 21.0 77 ------- null} + -t 11.8477 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 148 -a 0 -x {3.0 21.0 77 ------- null} - -t 11.8477 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 148 -a 0 -x {3.0 21.0 77 ------- null} h -t 11.8477 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 148 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.8493 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {3.0 21.0 78 ------- null} + -t 11.8493 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {3.0 21.0 78 ------- null} - -t 11.8493 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {3.0 21.0 78 ------- null} h -t 11.8493 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.8509 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 150 -a 0 -x {3.0 21.0 79 ------- null} + -t 11.8509 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 150 -a 0 -x {3.0 21.0 79 ------- null} - -t 11.8509 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 150 -a 0 -x {3.0 21.0 79 ------- null} h -t 11.8509 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 150 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.8525 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {3.0 21.0 80 ------- null} + -t 11.8525 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {3.0 21.0 80 ------- null} - -t 11.8525 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {3.0 21.0 80 ------- null} h -t 11.8525 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.8541 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 152 -a 0 -x {3.0 21.0 81 ------- null} + -t 11.8541 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 152 -a 0 -x {3.0 21.0 81 ------- null} - -t 11.8541 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 152 -a 0 -x {3.0 21.0 81 ------- null} h -t 11.8541 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 152 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.8557 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {3.0 21.0 82 ------- null} + -t 11.8557 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {3.0 21.0 82 ------- null} - -t 11.8557 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {3.0 21.0 82 ------- null} h -t 11.8557 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.8573 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 154 -a 0 -x {3.0 21.0 83 ------- null} + -t 11.8573 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 154 -a 0 -x {3.0 21.0 83 ------- null} - -t 11.8573 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 154 -a 0 -x {3.0 21.0 83 ------- null} h -t 11.8573 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 154 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.8589 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {3.0 21.0 84 ------- null} + -t 11.8589 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {3.0 21.0 84 ------- null} - -t 11.8589 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {3.0 21.0 84 ------- null} h -t 11.8589 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.8605 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 156 -a 0 -x {3.0 21.0 85 ------- null} + -t 11.8605 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 156 -a 0 -x {3.0 21.0 85 ------- null} - -t 11.8605 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 156 -a 0 -x {3.0 21.0 85 ------- null} h -t 11.8605 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 156 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.8621 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {3.0 21.0 86 ------- null} + -t 11.8621 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {3.0 21.0 86 ------- null} - -t 11.8621 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {3.0 21.0 86 ------- null} h -t 11.8621 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.8637 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {3.0 21.0 87 ------- null} + -t 11.8637 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {3.0 21.0 87 ------- null} - -t 11.8637 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {3.0 21.0 87 ------- null} h -t 11.8637 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.8653 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {3.0 21.0 88 ------- null} + -t 11.8653 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {3.0 21.0 88 ------- null} - -t 11.8653 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {3.0 21.0 88 ------- null} h -t 11.8653 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.8669 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 160 -a 0 -x {3.0 21.0 89 ------- null} + -t 11.8669 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 160 -a 0 -x {3.0 21.0 89 ------- null} - -t 11.8669 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 160 -a 0 -x {3.0 21.0 89 ------- null} h -t 11.8669 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 160 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.8685 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {3.0 21.0 90 ------- null} + -t 11.8685 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {3.0 21.0 90 ------- null} - -t 11.8685 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {3.0 21.0 90 ------- null} h -t 11.8685 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {3.0 21.0 -1 ------- null} r -t 12.1897 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 142 -a 0 -x {3.0 21.0 71 ------- null} + -t 12.1897 -s 21 -d 28 -p ack -e 40 -c 0 -i 162 -a 0 -x {21.0 3.0 71 ------- null} - -t 12.1897 -s 21 -d 28 -p ack -e 40 -c 0 -i 162 -a 0 -x {21.0 3.0 71 ------- null} h -t 12.1897 -s 21 -d 28 -p ack -e 40 -c 0 -i 162 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.1913 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {3.0 21.0 72 ------- null} + -t 12.1913 -s 21 -d 28 -p ack -e 40 -c 0 -i 163 -a 0 -x {21.0 3.0 72 ------- null} - -t 12.1913 -s 21 -d 28 -p ack -e 40 -c 0 -i 163 -a 0 -x {21.0 3.0 72 ------- null} h -t 12.1913 -s 21 -d 28 -p ack -e 40 -c 0 -i 163 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.1929 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 144 -a 0 -x {3.0 21.0 73 ------- null} + -t 12.1929 -s 21 -d 28 -p ack -e 40 -c 0 -i 164 -a 0 -x {21.0 3.0 73 ------- null} - -t 12.1929 -s 21 -d 28 -p ack -e 40 -c 0 -i 164 -a 0 -x {21.0 3.0 73 ------- null} h -t 12.1929 -s 21 -d 28 -p ack -e 40 -c 0 -i 164 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.1945 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {3.0 21.0 74 ------- null} + -t 12.1945 -s 21 -d 28 -p ack -e 40 -c 0 -i 165 -a 0 -x {21.0 3.0 74 ------- null} - -t 12.1945 -s 21 -d 28 -p ack -e 40 -c 0 -i 165 -a 0 -x {21.0 3.0 74 ------- null} h -t 12.1945 -s 21 -d 28 -p ack -e 40 -c 0 -i 165 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.1961 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 146 -a 0 -x {3.0 21.0 75 ------- null} + -t 12.1961 -s 21 -d 28 -p ack -e 40 -c 0 -i 166 -a 0 -x {21.0 3.0 75 ------- null} - -t 12.1961 -s 21 -d 28 -p ack -e 40 -c 0 -i 166 -a 0 -x {21.0 3.0 75 ------- null} h -t 12.1961 -s 21 -d 28 -p ack -e 40 -c 0 -i 166 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.1977 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {3.0 21.0 76 ------- null} + -t 12.1977 -s 21 -d 28 -p ack -e 40 -c 0 -i 167 -a 0 -x {21.0 3.0 76 ------- null} - -t 12.1977 -s 21 -d 28 -p ack -e 40 -c 0 -i 167 -a 0 -x {21.0 3.0 76 ------- null} h -t 12.1977 -s 21 -d 28 -p ack -e 40 -c 0 -i 167 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.1993 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 148 -a 0 -x {3.0 21.0 77 ------- null} + -t 12.1993 -s 21 -d 28 -p ack -e 40 -c 0 -i 168 -a 0 -x {21.0 3.0 77 ------- null} - -t 12.1993 -s 21 -d 28 -p ack -e 40 -c 0 -i 168 -a 0 -x {21.0 3.0 77 ------- null} h -t 12.1993 -s 21 -d 28 -p ack -e 40 -c 0 -i 168 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.2009 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {3.0 21.0 78 ------- null} + -t 12.2009 -s 21 -d 28 -p ack -e 40 -c 0 -i 169 -a 0 -x {21.0 3.0 78 ------- null} - -t 12.2009 -s 21 -d 28 -p ack -e 40 -c 0 -i 169 -a 0 -x {21.0 3.0 78 ------- null} h -t 12.2009 -s 21 -d 28 -p ack -e 40 -c 0 -i 169 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.2025 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 150 -a 0 -x {3.0 21.0 79 ------- null} + -t 12.2025 -s 21 -d 28 -p ack -e 40 -c 0 -i 170 -a 0 -x {21.0 3.0 79 ------- null} - -t 12.2025 -s 21 -d 28 -p ack -e 40 -c 0 -i 170 -a 0 -x {21.0 3.0 79 ------- null} h -t 12.2025 -s 21 -d 28 -p ack -e 40 -c 0 -i 170 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.2041 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {3.0 21.0 80 ------- null} + -t 12.2041 -s 21 -d 28 -p ack -e 40 -c 0 -i 171 -a 0 -x {21.0 3.0 80 ------- null} - -t 12.2041 -s 21 -d 28 -p ack -e 40 -c 0 -i 171 -a 0 -x {21.0 3.0 80 ------- null} h -t 12.2041 -s 21 -d 28 -p ack -e 40 -c 0 -i 171 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.2057 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 152 -a 0 -x {3.0 21.0 81 ------- null} + -t 12.2057 -s 21 -d 28 -p ack -e 40 -c 0 -i 172 -a 0 -x {21.0 3.0 81 ------- null} - -t 12.2057 -s 21 -d 28 -p ack -e 40 -c 0 -i 172 -a 0 -x {21.0 3.0 81 ------- null} h -t 12.2057 -s 21 -d 28 -p ack -e 40 -c 0 -i 172 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.2073 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {3.0 21.0 82 ------- null} + -t 12.2073 -s 21 -d 28 -p ack -e 40 -c 0 -i 173 -a 0 -x {21.0 3.0 82 ------- null} - -t 12.2073 -s 21 -d 28 -p ack -e 40 -c 0 -i 173 -a 0 -x {21.0 3.0 82 ------- null} h -t 12.2073 -s 21 -d 28 -p ack -e 40 -c 0 -i 173 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.2089 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 154 -a 0 -x {3.0 21.0 83 ------- null} + -t 12.2089 -s 21 -d 28 -p ack -e 40 -c 0 -i 174 -a 0 -x {21.0 3.0 83 ------- null} - -t 12.2089 -s 21 -d 28 -p ack -e 40 -c 0 -i 174 -a 0 -x {21.0 3.0 83 ------- null} h -t 12.2089 -s 21 -d 28 -p ack -e 40 -c 0 -i 174 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.2105 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {3.0 21.0 84 ------- null} + -t 12.2105 -s 21 -d 28 -p ack -e 40 -c 0 -i 175 -a 0 -x {21.0 3.0 84 ------- null} - -t 12.2105 -s 21 -d 28 -p ack -e 40 -c 0 -i 175 -a 0 -x {21.0 3.0 84 ------- null} h -t 12.2105 -s 21 -d 28 -p ack -e 40 -c 0 -i 175 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.2121 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 156 -a 0 -x {3.0 21.0 85 ------- null} + -t 12.2121 -s 21 -d 28 -p ack -e 40 -c 0 -i 176 -a 0 -x {21.0 3.0 85 ------- null} - -t 12.2121 -s 21 -d 28 -p ack -e 40 -c 0 -i 176 -a 0 -x {21.0 3.0 85 ------- null} h -t 12.2121 -s 21 -d 28 -p ack -e 40 -c 0 -i 176 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.2137 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {3.0 21.0 86 ------- null} + -t 12.2137 -s 21 -d 28 -p ack -e 40 -c 0 -i 177 -a 0 -x {21.0 3.0 86 ------- null} - -t 12.2137 -s 21 -d 28 -p ack -e 40 -c 0 -i 177 -a 0 -x {21.0 3.0 86 ------- null} h -t 12.2137 -s 21 -d 28 -p ack -e 40 -c 0 -i 177 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.2153 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {3.0 21.0 87 ------- null} + -t 12.2153 -s 21 -d 28 -p ack -e 40 -c 0 -i 178 -a 0 -x {21.0 3.0 87 ------- null} - -t 12.2153 -s 21 -d 28 -p ack -e 40 -c 0 -i 178 -a 0 -x {21.0 3.0 87 ------- null} h -t 12.2153 -s 21 -d 28 -p ack -e 40 -c 0 -i 178 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.2169 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {3.0 21.0 88 ------- null} + -t 12.2169 -s 21 -d 28 -p ack -e 40 -c 0 -i 179 -a 0 -x {21.0 3.0 88 ------- null} - -t 12.2169 -s 21 -d 28 -p ack -e 40 -c 0 -i 179 -a 0 -x {21.0 3.0 88 ------- null} h -t 12.2169 -s 21 -d 28 -p ack -e 40 -c 0 -i 179 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.2185 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 160 -a 0 -x {3.0 21.0 89 ------- null} + -t 12.2185 -s 21 -d 28 -p ack -e 40 -c 0 -i 180 -a 0 -x {21.0 3.0 89 ------- null} - -t 12.2185 -s 21 -d 28 -p ack -e 40 -c 0 -i 180 -a 0 -x {21.0 3.0 89 ------- null} h -t 12.2185 -s 21 -d 28 -p ack -e 40 -c 0 -i 180 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.2201 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {3.0 21.0 90 ------- null} + -t 12.2201 -s 21 -d 28 -p ack -e 40 -c 0 -i 181 -a 0 -x {21.0 3.0 90 ------- null} - -t 12.2201 -s 21 -d 28 -p ack -e 40 -c 0 -i 181 -a 0 -x {21.0 3.0 90 ------- null} h -t 12.2201 -s 21 -d 28 -p ack -e 40 -c 0 -i 181 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.5398 -s 21 -d 28 -p ack -e 40 -c 0 -i 162 -a 0 -x {21.0 3.0 71 ------- null} + -t 12.5398 -s 28 -d 1 -p ack -e 40 -c 0 -i 162 -a 0 -x {21.0 3.0 71 ------- null} - -t 12.5398 -s 28 -d 1 -p ack -e 40 -c 0 -i 162 -a 0 -x {21.0 3.0 71 ------- null} h -t 12.5398 -s 28 -d 1 -p ack -e 40 -c 0 -i 162 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.5414 -s 21 -d 28 -p ack -e 40 -c 0 -i 163 -a 0 -x {21.0 3.0 72 ------- null} + -t 12.5414 -s 28 -d 1 -p ack -e 40 -c 0 -i 163 -a 0 -x {21.0 3.0 72 ------- null} - -t 12.5414 -s 28 -d 1 -p ack -e 40 -c 0 -i 163 -a 0 -x {21.0 3.0 72 ------- null} h -t 12.5414 -s 28 -d 1 -p ack -e 40 -c 0 -i 163 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.543 -s 21 -d 28 -p ack -e 40 -c 0 -i 164 -a 0 -x {21.0 3.0 73 ------- null} + -t 12.543 -s 28 -d 1 -p ack -e 40 -c 0 -i 164 -a 0 -x {21.0 3.0 73 ------- null} - -t 12.543 -s 28 -d 1 -p ack -e 40 -c 0 -i 164 -a 0 -x {21.0 3.0 73 ------- null} h -t 12.543 -s 28 -d 1 -p ack -e 40 -c 0 -i 164 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.5446 -s 21 -d 28 -p ack -e 40 -c 0 -i 165 -a 0 -x {21.0 3.0 74 ------- null} + -t 12.5446 -s 28 -d 1 -p ack -e 40 -c 0 -i 165 -a 0 -x {21.0 3.0 74 ------- null} - -t 12.5446 -s 28 -d 1 -p ack -e 40 -c 0 -i 165 -a 0 -x {21.0 3.0 74 ------- null} h -t 12.5446 -s 28 -d 1 -p ack -e 40 -c 0 -i 165 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.5462 -s 21 -d 28 -p ack -e 40 -c 0 -i 166 -a 0 -x {21.0 3.0 75 ------- null} + -t 12.5462 -s 28 -d 1 -p ack -e 40 -c 0 -i 166 -a 0 -x {21.0 3.0 75 ------- null} - -t 12.5462 -s 28 -d 1 -p ack -e 40 -c 0 -i 166 -a 0 -x {21.0 3.0 75 ------- null} h -t 12.5462 -s 28 -d 1 -p ack -e 40 -c 0 -i 166 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.5478 -s 21 -d 28 -p ack -e 40 -c 0 -i 167 -a 0 -x {21.0 3.0 76 ------- null} + -t 12.5478 -s 28 -d 1 -p ack -e 40 -c 0 -i 167 -a 0 -x {21.0 3.0 76 ------- null} - -t 12.5478 -s 28 -d 1 -p ack -e 40 -c 0 -i 167 -a 0 -x {21.0 3.0 76 ------- null} h -t 12.5478 -s 28 -d 1 -p ack -e 40 -c 0 -i 167 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.5494 -s 21 -d 28 -p ack -e 40 -c 0 -i 168 -a 0 -x {21.0 3.0 77 ------- null} + -t 12.5494 -s 28 -d 1 -p ack -e 40 -c 0 -i 168 -a 0 -x {21.0 3.0 77 ------- null} - -t 12.5494 -s 28 -d 1 -p ack -e 40 -c 0 -i 168 -a 0 -x {21.0 3.0 77 ------- null} h -t 12.5494 -s 28 -d 1 -p ack -e 40 -c 0 -i 168 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.551 -s 21 -d 28 -p ack -e 40 -c 0 -i 169 -a 0 -x {21.0 3.0 78 ------- null} + -t 12.551 -s 28 -d 1 -p ack -e 40 -c 0 -i 169 -a 0 -x {21.0 3.0 78 ------- null} - -t 12.551 -s 28 -d 1 -p ack -e 40 -c 0 -i 169 -a 0 -x {21.0 3.0 78 ------- null} h -t 12.551 -s 28 -d 1 -p ack -e 40 -c 0 -i 169 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.5526 -s 21 -d 28 -p ack -e 40 -c 0 -i 170 -a 0 -x {21.0 3.0 79 ------- null} + -t 12.5526 -s 28 -d 1 -p ack -e 40 -c 0 -i 170 -a 0 -x {21.0 3.0 79 ------- null} - -t 12.5526 -s 28 -d 1 -p ack -e 40 -c 0 -i 170 -a 0 -x {21.0 3.0 79 ------- null} h -t 12.5526 -s 28 -d 1 -p ack -e 40 -c 0 -i 170 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.5542 -s 21 -d 28 -p ack -e 40 -c 0 -i 171 -a 0 -x {21.0 3.0 80 ------- null} + -t 12.5542 -s 28 -d 1 -p ack -e 40 -c 0 -i 171 -a 0 -x {21.0 3.0 80 ------- null} - -t 12.5542 -s 28 -d 1 -p ack -e 40 -c 0 -i 171 -a 0 -x {21.0 3.0 80 ------- null} h -t 12.5542 -s 28 -d 1 -p ack -e 40 -c 0 -i 171 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.5558 -s 21 -d 28 -p ack -e 40 -c 0 -i 172 -a 0 -x {21.0 3.0 81 ------- null} + -t 12.5558 -s 28 -d 1 -p ack -e 40 -c 0 -i 172 -a 0 -x {21.0 3.0 81 ------- null} - -t 12.5558 -s 28 -d 1 -p ack -e 40 -c 0 -i 172 -a 0 -x {21.0 3.0 81 ------- null} h -t 12.5558 -s 28 -d 1 -p ack -e 40 -c 0 -i 172 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.5574 -s 21 -d 28 -p ack -e 40 -c 0 -i 173 -a 0 -x {21.0 3.0 82 ------- null} + -t 12.5574 -s 28 -d 1 -p ack -e 40 -c 0 -i 173 -a 0 -x {21.0 3.0 82 ------- null} - -t 12.5574 -s 28 -d 1 -p ack -e 40 -c 0 -i 173 -a 0 -x {21.0 3.0 82 ------- null} h -t 12.5574 -s 28 -d 1 -p ack -e 40 -c 0 -i 173 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.559 -s 21 -d 28 -p ack -e 40 -c 0 -i 174 -a 0 -x {21.0 3.0 83 ------- null} + -t 12.559 -s 28 -d 1 -p ack -e 40 -c 0 -i 174 -a 0 -x {21.0 3.0 83 ------- null} - -t 12.559 -s 28 -d 1 -p ack -e 40 -c 0 -i 174 -a 0 -x {21.0 3.0 83 ------- null} h -t 12.559 -s 28 -d 1 -p ack -e 40 -c 0 -i 174 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.5606 -s 21 -d 28 -p ack -e 40 -c 0 -i 175 -a 0 -x {21.0 3.0 84 ------- null} + -t 12.5606 -s 28 -d 1 -p ack -e 40 -c 0 -i 175 -a 0 -x {21.0 3.0 84 ------- null} - -t 12.5606 -s 28 -d 1 -p ack -e 40 -c 0 -i 175 -a 0 -x {21.0 3.0 84 ------- null} h -t 12.5606 -s 28 -d 1 -p ack -e 40 -c 0 -i 175 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.5622 -s 21 -d 28 -p ack -e 40 -c 0 -i 176 -a 0 -x {21.0 3.0 85 ------- null} + -t 12.5622 -s 28 -d 1 -p ack -e 40 -c 0 -i 176 -a 0 -x {21.0 3.0 85 ------- null} - -t 12.5622 -s 28 -d 1 -p ack -e 40 -c 0 -i 176 -a 0 -x {21.0 3.0 85 ------- null} h -t 12.5622 -s 28 -d 1 -p ack -e 40 -c 0 -i 176 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.5638 -s 21 -d 28 -p ack -e 40 -c 0 -i 177 -a 0 -x {21.0 3.0 86 ------- null} + -t 12.5638 -s 28 -d 1 -p ack -e 40 -c 0 -i 177 -a 0 -x {21.0 3.0 86 ------- null} - -t 12.5638 -s 28 -d 1 -p ack -e 40 -c 0 -i 177 -a 0 -x {21.0 3.0 86 ------- null} h -t 12.5638 -s 28 -d 1 -p ack -e 40 -c 0 -i 177 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.5654 -s 21 -d 28 -p ack -e 40 -c 0 -i 178 -a 0 -x {21.0 3.0 87 ------- null} + -t 12.5654 -s 28 -d 1 -p ack -e 40 -c 0 -i 178 -a 0 -x {21.0 3.0 87 ------- null} - -t 12.5654 -s 28 -d 1 -p ack -e 40 -c 0 -i 178 -a 0 -x {21.0 3.0 87 ------- null} h -t 12.5654 -s 28 -d 1 -p ack -e 40 -c 0 -i 178 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.567 -s 21 -d 28 -p ack -e 40 -c 0 -i 179 -a 0 -x {21.0 3.0 88 ------- null} + -t 12.567 -s 28 -d 1 -p ack -e 40 -c 0 -i 179 -a 0 -x {21.0 3.0 88 ------- null} - -t 12.567 -s 28 -d 1 -p ack -e 40 -c 0 -i 179 -a 0 -x {21.0 3.0 88 ------- null} h -t 12.567 -s 28 -d 1 -p ack -e 40 -c 0 -i 179 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.5686 -s 21 -d 28 -p ack -e 40 -c 0 -i 180 -a 0 -x {21.0 3.0 89 ------- null} + -t 12.5686 -s 28 -d 1 -p ack -e 40 -c 0 -i 180 -a 0 -x {21.0 3.0 89 ------- null} - -t 12.5686 -s 28 -d 1 -p ack -e 40 -c 0 -i 180 -a 0 -x {21.0 3.0 89 ------- null} h -t 12.5686 -s 28 -d 1 -p ack -e 40 -c 0 -i 180 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.5702 -s 21 -d 28 -p ack -e 40 -c 0 -i 181 -a 0 -x {21.0 3.0 90 ------- null} + -t 12.5702 -s 28 -d 1 -p ack -e 40 -c 0 -i 181 -a 0 -x {21.0 3.0 90 ------- null} - -t 12.5702 -s 28 -d 1 -p ack -e 40 -c 0 -i 181 -a 0 -x {21.0 3.0 90 ------- null} h -t 12.5702 -s 28 -d 1 -p ack -e 40 -c 0 -i 181 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.8399 -s 28 -d 1 -p ack -e 40 -c 0 -i 162 -a 0 -x {21.0 3.0 71 ------- null} + -t 12.8399 -s 1 -d 3 -p ack -e 40 -c 0 -i 162 -a 0 -x {21.0 3.0 71 ------- null} - -t 12.8399 -s 1 -d 3 -p ack -e 40 -c 0 -i 162 -a 0 -x {21.0 3.0 71 ------- null} h -t 12.8399 -s 1 -d 3 -p ack -e 40 -c 0 -i 162 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.8415 -s 28 -d 1 -p ack -e 40 -c 0 -i 163 -a 0 -x {21.0 3.0 72 ------- null} + -t 12.8415 -s 1 -d 3 -p ack -e 40 -c 0 -i 163 -a 0 -x {21.0 3.0 72 ------- null} - -t 12.8415 -s 1 -d 3 -p ack -e 40 -c 0 -i 163 -a 0 -x {21.0 3.0 72 ------- null} h -t 12.8415 -s 1 -d 3 -p ack -e 40 -c 0 -i 163 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.8431 -s 28 -d 1 -p ack -e 40 -c 0 -i 164 -a 0 -x {21.0 3.0 73 ------- null} + -t 12.8431 -s 1 -d 3 -p ack -e 40 -c 0 -i 164 -a 0 -x {21.0 3.0 73 ------- null} - -t 12.8431 -s 1 -d 3 -p ack -e 40 -c 0 -i 164 -a 0 -x {21.0 3.0 73 ------- null} h -t 12.8431 -s 1 -d 3 -p ack -e 40 -c 0 -i 164 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.8447 -s 28 -d 1 -p ack -e 40 -c 0 -i 165 -a 0 -x {21.0 3.0 74 ------- null} + -t 12.8447 -s 1 -d 3 -p ack -e 40 -c 0 -i 165 -a 0 -x {21.0 3.0 74 ------- null} - -t 12.8447 -s 1 -d 3 -p ack -e 40 -c 0 -i 165 -a 0 -x {21.0 3.0 74 ------- null} h -t 12.8447 -s 1 -d 3 -p ack -e 40 -c 0 -i 165 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.8463 -s 28 -d 1 -p ack -e 40 -c 0 -i 166 -a 0 -x {21.0 3.0 75 ------- null} + -t 12.8463 -s 1 -d 3 -p ack -e 40 -c 0 -i 166 -a 0 -x {21.0 3.0 75 ------- null} - -t 12.8463 -s 1 -d 3 -p ack -e 40 -c 0 -i 166 -a 0 -x {21.0 3.0 75 ------- null} h -t 12.8463 -s 1 -d 3 -p ack -e 40 -c 0 -i 166 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.8479 -s 28 -d 1 -p ack -e 40 -c 0 -i 167 -a 0 -x {21.0 3.0 76 ------- null} + -t 12.8479 -s 1 -d 3 -p ack -e 40 -c 0 -i 167 -a 0 -x {21.0 3.0 76 ------- null} - -t 12.8479 -s 1 -d 3 -p ack -e 40 -c 0 -i 167 -a 0 -x {21.0 3.0 76 ------- null} h -t 12.8479 -s 1 -d 3 -p ack -e 40 -c 0 -i 167 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.8495 -s 28 -d 1 -p ack -e 40 -c 0 -i 168 -a 0 -x {21.0 3.0 77 ------- null} + -t 12.8495 -s 1 -d 3 -p ack -e 40 -c 0 -i 168 -a 0 -x {21.0 3.0 77 ------- null} - -t 12.8495 -s 1 -d 3 -p ack -e 40 -c 0 -i 168 -a 0 -x {21.0 3.0 77 ------- null} h -t 12.8495 -s 1 -d 3 -p ack -e 40 -c 0 -i 168 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.8511 -s 28 -d 1 -p ack -e 40 -c 0 -i 169 -a 0 -x {21.0 3.0 78 ------- null} + -t 12.8511 -s 1 -d 3 -p ack -e 40 -c 0 -i 169 -a 0 -x {21.0 3.0 78 ------- null} - -t 12.8511 -s 1 -d 3 -p ack -e 40 -c 0 -i 169 -a 0 -x {21.0 3.0 78 ------- null} h -t 12.8511 -s 1 -d 3 -p ack -e 40 -c 0 -i 169 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.8527 -s 28 -d 1 -p ack -e 40 -c 0 -i 170 -a 0 -x {21.0 3.0 79 ------- null} + -t 12.8527 -s 1 -d 3 -p ack -e 40 -c 0 -i 170 -a 0 -x {21.0 3.0 79 ------- null} - -t 12.8527 -s 1 -d 3 -p ack -e 40 -c 0 -i 170 -a 0 -x {21.0 3.0 79 ------- null} h -t 12.8527 -s 1 -d 3 -p ack -e 40 -c 0 -i 170 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.8543 -s 28 -d 1 -p ack -e 40 -c 0 -i 171 -a 0 -x {21.0 3.0 80 ------- null} + -t 12.8543 -s 1 -d 3 -p ack -e 40 -c 0 -i 171 -a 0 -x {21.0 3.0 80 ------- null} - -t 12.8543 -s 1 -d 3 -p ack -e 40 -c 0 -i 171 -a 0 -x {21.0 3.0 80 ------- null} h -t 12.8543 -s 1 -d 3 -p ack -e 40 -c 0 -i 171 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.8559 -s 28 -d 1 -p ack -e 40 -c 0 -i 172 -a 0 -x {21.0 3.0 81 ------- null} + -t 12.8559 -s 1 -d 3 -p ack -e 40 -c 0 -i 172 -a 0 -x {21.0 3.0 81 ------- null} - -t 12.8559 -s 1 -d 3 -p ack -e 40 -c 0 -i 172 -a 0 -x {21.0 3.0 81 ------- null} h -t 12.8559 -s 1 -d 3 -p ack -e 40 -c 0 -i 172 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.8575 -s 28 -d 1 -p ack -e 40 -c 0 -i 173 -a 0 -x {21.0 3.0 82 ------- null} + -t 12.8575 -s 1 -d 3 -p ack -e 40 -c 0 -i 173 -a 0 -x {21.0 3.0 82 ------- null} - -t 12.8575 -s 1 -d 3 -p ack -e 40 -c 0 -i 173 -a 0 -x {21.0 3.0 82 ------- null} h -t 12.8575 -s 1 -d 3 -p ack -e 40 -c 0 -i 173 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.8591 -s 28 -d 1 -p ack -e 40 -c 0 -i 174 -a 0 -x {21.0 3.0 83 ------- null} + -t 12.8591 -s 1 -d 3 -p ack -e 40 -c 0 -i 174 -a 0 -x {21.0 3.0 83 ------- null} - -t 12.8591 -s 1 -d 3 -p ack -e 40 -c 0 -i 174 -a 0 -x {21.0 3.0 83 ------- null} h -t 12.8591 -s 1 -d 3 -p ack -e 40 -c 0 -i 174 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.8607 -s 28 -d 1 -p ack -e 40 -c 0 -i 175 -a 0 -x {21.0 3.0 84 ------- null} + -t 12.8607 -s 1 -d 3 -p ack -e 40 -c 0 -i 175 -a 0 -x {21.0 3.0 84 ------- null} - -t 12.8607 -s 1 -d 3 -p ack -e 40 -c 0 -i 175 -a 0 -x {21.0 3.0 84 ------- null} h -t 12.8607 -s 1 -d 3 -p ack -e 40 -c 0 -i 175 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.8623 -s 28 -d 1 -p ack -e 40 -c 0 -i 176 -a 0 -x {21.0 3.0 85 ------- null} + -t 12.8623 -s 1 -d 3 -p ack -e 40 -c 0 -i 176 -a 0 -x {21.0 3.0 85 ------- null} - -t 12.8623 -s 1 -d 3 -p ack -e 40 -c 0 -i 176 -a 0 -x {21.0 3.0 85 ------- null} h -t 12.8623 -s 1 -d 3 -p ack -e 40 -c 0 -i 176 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.8639 -s 28 -d 1 -p ack -e 40 -c 0 -i 177 -a 0 -x {21.0 3.0 86 ------- null} + -t 12.8639 -s 1 -d 3 -p ack -e 40 -c 0 -i 177 -a 0 -x {21.0 3.0 86 ------- null} - -t 12.8639 -s 1 -d 3 -p ack -e 40 -c 0 -i 177 -a 0 -x {21.0 3.0 86 ------- null} h -t 12.8639 -s 1 -d 3 -p ack -e 40 -c 0 -i 177 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.8655 -s 28 -d 1 -p ack -e 40 -c 0 -i 178 -a 0 -x {21.0 3.0 87 ------- null} + -t 12.8655 -s 1 -d 3 -p ack -e 40 -c 0 -i 178 -a 0 -x {21.0 3.0 87 ------- null} - -t 12.8655 -s 1 -d 3 -p ack -e 40 -c 0 -i 178 -a 0 -x {21.0 3.0 87 ------- null} h -t 12.8655 -s 1 -d 3 -p ack -e 40 -c 0 -i 178 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.8671 -s 28 -d 1 -p ack -e 40 -c 0 -i 179 -a 0 -x {21.0 3.0 88 ------- null} + -t 12.8671 -s 1 -d 3 -p ack -e 40 -c 0 -i 179 -a 0 -x {21.0 3.0 88 ------- null} - -t 12.8671 -s 1 -d 3 -p ack -e 40 -c 0 -i 179 -a 0 -x {21.0 3.0 88 ------- null} h -t 12.8671 -s 1 -d 3 -p ack -e 40 -c 0 -i 179 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.8687 -s 28 -d 1 -p ack -e 40 -c 0 -i 180 -a 0 -x {21.0 3.0 89 ------- null} + -t 12.8687 -s 1 -d 3 -p ack -e 40 -c 0 -i 180 -a 0 -x {21.0 3.0 89 ------- null} - -t 12.8687 -s 1 -d 3 -p ack -e 40 -c 0 -i 180 -a 0 -x {21.0 3.0 89 ------- null} h -t 12.8687 -s 1 -d 3 -p ack -e 40 -c 0 -i 180 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.8703 -s 28 -d 1 -p ack -e 40 -c 0 -i 181 -a 0 -x {21.0 3.0 90 ------- null} + -t 12.8703 -s 1 -d 3 -p ack -e 40 -c 0 -i 181 -a 0 -x {21.0 3.0 90 ------- null} - -t 12.8703 -s 1 -d 3 -p ack -e 40 -c 0 -i 181 -a 0 -x {21.0 3.0 90 ------- null} h -t 12.8703 -s 1 -d 3 -p ack -e 40 -c 0 -i 181 -a 0 -x {21.0 3.0 -1 ------- null} r -t 12.9799 -s 1 -d 3 -p ack -e 40 -c 0 -i 162 -a 0 -x {21.0 3.0 71 ------- null} + -t 12.9799 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {3.0 21.0 91 ------- null} - -t 12.9799 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {3.0 21.0 91 ------- null} h -t 12.9799 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {3.0 21.0 -1 ------- null} r -t 12.9815 -s 1 -d 3 -p ack -e 40 -c 0 -i 163 -a 0 -x {21.0 3.0 72 ------- null} + -t 12.9815 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {3.0 21.0 92 ------- null} - -t 12.9815 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {3.0 21.0 92 ------- null} h -t 12.9815 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {3.0 21.0 -1 ------- null} r -t 12.9831 -s 1 -d 3 -p ack -e 40 -c 0 -i 164 -a 0 -x {21.0 3.0 73 ------- null} + -t 12.9831 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 184 -a 0 -x {3.0 21.0 93 ------- null} - -t 12.9831 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 184 -a 0 -x {3.0 21.0 93 ------- null} h -t 12.9831 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 184 -a 0 -x {3.0 21.0 -1 ------- null} r -t 12.9847 -s 1 -d 3 -p ack -e 40 -c 0 -i 165 -a 0 -x {21.0 3.0 74 ------- null} + -t 12.9847 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {3.0 21.0 94 ------- null} - -t 12.9847 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {3.0 21.0 94 ------- null} h -t 12.9847 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {3.0 21.0 -1 ------- null} r -t 12.9863 -s 1 -d 3 -p ack -e 40 -c 0 -i 166 -a 0 -x {21.0 3.0 75 ------- null} + -t 12.9863 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 186 -a 0 -x {3.0 21.0 95 ------- null} - -t 12.9863 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 186 -a 0 -x {3.0 21.0 95 ------- null} h -t 12.9863 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 186 -a 0 -x {3.0 21.0 -1 ------- null} r -t 12.9879 -s 1 -d 3 -p ack -e 40 -c 0 -i 167 -a 0 -x {21.0 3.0 76 ------- null} + -t 12.9879 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {3.0 21.0 96 ------- null} - -t 12.9879 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {3.0 21.0 96 ------- null} h -t 12.9879 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {3.0 21.0 -1 ------- null} r -t 12.9895 -s 1 -d 3 -p ack -e 40 -c 0 -i 168 -a 0 -x {21.0 3.0 77 ------- null} + -t 12.9895 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 188 -a 0 -x {3.0 21.0 97 ------- null} - -t 12.9895 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 188 -a 0 -x {3.0 21.0 97 ------- null} h -t 12.9895 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 188 -a 0 -x {3.0 21.0 -1 ------- null} r -t 12.9911 -s 1 -d 3 -p ack -e 40 -c 0 -i 169 -a 0 -x {21.0 3.0 78 ------- null} + -t 12.9911 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {3.0 21.0 98 ------- null} - -t 12.9911 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {3.0 21.0 98 ------- null} h -t 12.9911 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {3.0 21.0 -1 ------- null} r -t 12.9927 -s 1 -d 3 -p ack -e 40 -c 0 -i 170 -a 0 -x {21.0 3.0 79 ------- null} + -t 12.9927 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 190 -a 0 -x {3.0 21.0 99 ------- null} - -t 12.9927 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 190 -a 0 -x {3.0 21.0 99 ------- null} h -t 12.9927 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 190 -a 0 -x {3.0 21.0 -1 ------- null} r -t 12.9943 -s 1 -d 3 -p ack -e 40 -c 0 -i 171 -a 0 -x {21.0 3.0 80 ------- null} + -t 12.9943 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {3.0 21.0 100 ------- null} - -t 12.9943 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {3.0 21.0 100 ------- null} h -t 12.9943 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {3.0 21.0 -1 ------- null} r -t 12.9959 -s 1 -d 3 -p ack -e 40 -c 0 -i 172 -a 0 -x {21.0 3.0 81 ------- null} + -t 12.9959 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 192 -a 0 -x {3.0 21.0 101 ------- null} - -t 12.9959 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 192 -a 0 -x {3.0 21.0 101 ------- null} h -t 12.9959 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 192 -a 0 -x {3.0 21.0 -1 ------- null} r -t 12.9975 -s 1 -d 3 -p ack -e 40 -c 0 -i 173 -a 0 -x {21.0 3.0 82 ------- null} + -t 12.9975 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {3.0 21.0 102 ------- null} - -t 12.9975 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {3.0 21.0 102 ------- null} h -t 12.9975 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {3.0 21.0 -1 ------- null} r -t 12.9991 -s 1 -d 3 -p ack -e 40 -c 0 -i 174 -a 0 -x {21.0 3.0 83 ------- null} + -t 12.9991 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 194 -a 0 -x {3.0 21.0 103 ------- null} - -t 12.9991 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 194 -a 0 -x {3.0 21.0 103 ------- null} h -t 12.9991 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 194 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.0007 -s 1 -d 3 -p ack -e 40 -c 0 -i 175 -a 0 -x {21.0 3.0 84 ------- null} + -t 13.0007 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {3.0 21.0 104 ------- null} - -t 13.0007 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {3.0 21.0 104 ------- null} h -t 13.0007 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.0023 -s 1 -d 3 -p ack -e 40 -c 0 -i 176 -a 0 -x {21.0 3.0 85 ------- null} + -t 13.0023 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 196 -a 0 -x {3.0 21.0 105 ------- null} - -t 13.0023 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 196 -a 0 -x {3.0 21.0 105 ------- null} h -t 13.0023 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 196 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.0039 -s 1 -d 3 -p ack -e 40 -c 0 -i 177 -a 0 -x {21.0 3.0 86 ------- null} + -t 13.0039 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {3.0 21.0 106 ------- null} - -t 13.0039 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {3.0 21.0 106 ------- null} h -t 13.0039 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.0055 -s 1 -d 3 -p ack -e 40 -c 0 -i 178 -a 0 -x {21.0 3.0 87 ------- null} + -t 13.0055 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 198 -a 0 -x {3.0 21.0 107 ------- null} - -t 13.0055 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 198 -a 0 -x {3.0 21.0 107 ------- null} h -t 13.0055 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 198 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.0071 -s 1 -d 3 -p ack -e 40 -c 0 -i 179 -a 0 -x {21.0 3.0 88 ------- null} + -t 13.0071 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {3.0 21.0 108 ------- null} - -t 13.0071 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {3.0 21.0 108 ------- null} h -t 13.0071 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.0087 -s 1 -d 3 -p ack -e 40 -c 0 -i 180 -a 0 -x {21.0 3.0 89 ------- null} + -t 13.0087 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 200 -a 0 -x {3.0 21.0 109 ------- null} - -t 13.0087 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 200 -a 0 -x {3.0 21.0 109 ------- null} h -t 13.0087 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 200 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.0103 -s 1 -d 3 -p ack -e 40 -c 0 -i 181 -a 0 -x {21.0 3.0 90 ------- null} + -t 13.0103 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {3.0 21.0 110 ------- null} - -t 13.0103 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {3.0 21.0 110 ------- null} h -t 13.0103 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.1215 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {3.0 21.0 91 ------- null} + -t 13.1215 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {3.0 21.0 91 ------- null} - -t 13.1215 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {3.0 21.0 91 ------- null} h -t 13.1215 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.1231 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {3.0 21.0 92 ------- null} + -t 13.1231 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {3.0 21.0 92 ------- null} - -t 13.1231 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {3.0 21.0 92 ------- null} h -t 13.1231 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.1247 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 184 -a 0 -x {3.0 21.0 93 ------- null} + -t 13.1247 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 184 -a 0 -x {3.0 21.0 93 ------- null} - -t 13.1247 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 184 -a 0 -x {3.0 21.0 93 ------- null} h -t 13.1247 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 184 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.1263 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {3.0 21.0 94 ------- null} + -t 13.1263 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {3.0 21.0 94 ------- null} - -t 13.1263 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {3.0 21.0 94 ------- null} h -t 13.1263 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.1279 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 186 -a 0 -x {3.0 21.0 95 ------- null} + -t 13.1279 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 186 -a 0 -x {3.0 21.0 95 ------- null} - -t 13.1279 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 186 -a 0 -x {3.0 21.0 95 ------- null} h -t 13.1279 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 186 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.1295 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {3.0 21.0 96 ------- null} + -t 13.1295 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {3.0 21.0 96 ------- null} - -t 13.1295 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {3.0 21.0 96 ------- null} h -t 13.1295 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.1311 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 188 -a 0 -x {3.0 21.0 97 ------- null} + -t 13.1311 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 188 -a 0 -x {3.0 21.0 97 ------- null} - -t 13.1311 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 188 -a 0 -x {3.0 21.0 97 ------- null} h -t 13.1311 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 188 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.1327 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {3.0 21.0 98 ------- null} + -t 13.1327 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {3.0 21.0 98 ------- null} - -t 13.1327 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {3.0 21.0 98 ------- null} h -t 13.1327 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.1343 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 190 -a 0 -x {3.0 21.0 99 ------- null} + -t 13.1343 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 190 -a 0 -x {3.0 21.0 99 ------- null} - -t 13.1343 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 190 -a 0 -x {3.0 21.0 99 ------- null} h -t 13.1343 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 190 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.1359 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {3.0 21.0 100 ------- null} + -t 13.1359 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {3.0 21.0 100 ------- null} - -t 13.1359 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {3.0 21.0 100 ------- null} h -t 13.1359 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.1375 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 192 -a 0 -x {3.0 21.0 101 ------- null} + -t 13.1375 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 192 -a 0 -x {3.0 21.0 101 ------- null} - -t 13.1375 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 192 -a 0 -x {3.0 21.0 101 ------- null} h -t 13.1375 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 192 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.1391 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {3.0 21.0 102 ------- null} + -t 13.1391 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {3.0 21.0 102 ------- null} - -t 13.1391 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {3.0 21.0 102 ------- null} h -t 13.1391 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.1407 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 194 -a 0 -x {3.0 21.0 103 ------- null} + -t 13.1407 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 194 -a 0 -x {3.0 21.0 103 ------- null} - -t 13.1407 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 194 -a 0 -x {3.0 21.0 103 ------- null} h -t 13.1407 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 194 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.1423 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {3.0 21.0 104 ------- null} + -t 13.1423 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {3.0 21.0 104 ------- null} - -t 13.1423 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {3.0 21.0 104 ------- null} h -t 13.1423 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.1439 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 196 -a 0 -x {3.0 21.0 105 ------- null} + -t 13.1439 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 196 -a 0 -x {3.0 21.0 105 ------- null} - -t 13.1439 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 196 -a 0 -x {3.0 21.0 105 ------- null} h -t 13.1439 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 196 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.1455 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {3.0 21.0 106 ------- null} + -t 13.1455 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {3.0 21.0 106 ------- null} - -t 13.1455 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {3.0 21.0 106 ------- null} h -t 13.1455 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.1471 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 198 -a 0 -x {3.0 21.0 107 ------- null} + -t 13.1471 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 198 -a 0 -x {3.0 21.0 107 ------- null} - -t 13.1471 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 198 -a 0 -x {3.0 21.0 107 ------- null} h -t 13.1471 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 198 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.1487 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {3.0 21.0 108 ------- null} + -t 13.1487 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {3.0 21.0 108 ------- null} - -t 13.1487 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {3.0 21.0 108 ------- null} h -t 13.1487 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.1503 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 200 -a 0 -x {3.0 21.0 109 ------- null} + -t 13.1503 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 200 -a 0 -x {3.0 21.0 109 ------- null} - -t 13.1503 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 200 -a 0 -x {3.0 21.0 109 ------- null} h -t 13.1503 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 200 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.1519 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {3.0 21.0 110 ------- null} + -t 13.1519 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {3.0 21.0 110 ------- null} - -t 13.1519 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {3.0 21.0 110 ------- null} h -t 13.1519 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.4231 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {3.0 21.0 91 ------- null} + -t 13.4231 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {3.0 21.0 91 ------- null} - -t 13.4231 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {3.0 21.0 91 ------- null} h -t 13.4231 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.4247 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {3.0 21.0 92 ------- null} + -t 13.4247 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {3.0 21.0 92 ------- null} - -t 13.4247 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {3.0 21.0 92 ------- null} h -t 13.4247 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.4263 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 184 -a 0 -x {3.0 21.0 93 ------- null} + -t 13.4263 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 184 -a 0 -x {3.0 21.0 93 ------- null} - -t 13.4263 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 184 -a 0 -x {3.0 21.0 93 ------- null} h -t 13.4263 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 184 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.4279 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {3.0 21.0 94 ------- null} + -t 13.4279 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {3.0 21.0 94 ------- null} - -t 13.4279 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {3.0 21.0 94 ------- null} h -t 13.4279 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.4295 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 186 -a 0 -x {3.0 21.0 95 ------- null} + -t 13.4295 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 186 -a 0 -x {3.0 21.0 95 ------- null} - -t 13.4295 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 186 -a 0 -x {3.0 21.0 95 ------- null} h -t 13.4295 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 186 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.4311 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {3.0 21.0 96 ------- null} + -t 13.4311 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {3.0 21.0 96 ------- null} - -t 13.4311 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {3.0 21.0 96 ------- null} h -t 13.4311 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.4327 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 188 -a 0 -x {3.0 21.0 97 ------- null} + -t 13.4327 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 188 -a 0 -x {3.0 21.0 97 ------- null} - -t 13.4327 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 188 -a 0 -x {3.0 21.0 97 ------- null} h -t 13.4327 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 188 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.4343 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {3.0 21.0 98 ------- null} + -t 13.4343 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {3.0 21.0 98 ------- null} - -t 13.4343 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {3.0 21.0 98 ------- null} h -t 13.4343 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.4359 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 190 -a 0 -x {3.0 21.0 99 ------- null} + -t 13.4359 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 190 -a 0 -x {3.0 21.0 99 ------- null} - -t 13.4359 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 190 -a 0 -x {3.0 21.0 99 ------- null} h -t 13.4359 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 190 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.4375 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {3.0 21.0 100 ------- null} + -t 13.4375 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {3.0 21.0 100 ------- null} - -t 13.4375 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {3.0 21.0 100 ------- null} h -t 13.4375 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.4391 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 192 -a 0 -x {3.0 21.0 101 ------- null} + -t 13.4391 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 192 -a 0 -x {3.0 21.0 101 ------- null} - -t 13.4391 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 192 -a 0 -x {3.0 21.0 101 ------- null} h -t 13.4391 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 192 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.4407 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {3.0 21.0 102 ------- null} + -t 13.4407 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {3.0 21.0 102 ------- null} - -t 13.4407 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {3.0 21.0 102 ------- null} h -t 13.4407 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.4423 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 194 -a 0 -x {3.0 21.0 103 ------- null} + -t 13.4423 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 194 -a 0 -x {3.0 21.0 103 ------- null} - -t 13.4423 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 194 -a 0 -x {3.0 21.0 103 ------- null} h -t 13.4423 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 194 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.4439 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {3.0 21.0 104 ------- null} + -t 13.4439 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {3.0 21.0 104 ------- null} - -t 13.4439 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {3.0 21.0 104 ------- null} h -t 13.4439 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.4455 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 196 -a 0 -x {3.0 21.0 105 ------- null} + -t 13.4455 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 196 -a 0 -x {3.0 21.0 105 ------- null} - -t 13.4455 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 196 -a 0 -x {3.0 21.0 105 ------- null} h -t 13.4455 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 196 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.4471 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {3.0 21.0 106 ------- null} + -t 13.4471 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {3.0 21.0 106 ------- null} - -t 13.4471 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {3.0 21.0 106 ------- null} h -t 13.4471 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.4487 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 198 -a 0 -x {3.0 21.0 107 ------- null} + -t 13.4487 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 198 -a 0 -x {3.0 21.0 107 ------- null} - -t 13.4487 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 198 -a 0 -x {3.0 21.0 107 ------- null} h -t 13.4487 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 198 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.4503 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {3.0 21.0 108 ------- null} + -t 13.4503 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {3.0 21.0 108 ------- null} - -t 13.4503 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {3.0 21.0 108 ------- null} h -t 13.4503 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.4519 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 200 -a 0 -x {3.0 21.0 109 ------- null} + -t 13.4519 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 200 -a 0 -x {3.0 21.0 109 ------- null} - -t 13.4519 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 200 -a 0 -x {3.0 21.0 109 ------- null} h -t 13.4519 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 200 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.4535 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {3.0 21.0 110 ------- null} + -t 13.4535 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {3.0 21.0 110 ------- null} - -t 13.4535 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {3.0 21.0 110 ------- null} h -t 13.4535 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.7747 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {3.0 21.0 91 ------- null} + -t 13.7747 -s 21 -d 28 -p ack -e 40 -c 0 -i 202 -a 0 -x {21.0 3.0 91 ------- null} - -t 13.7747 -s 21 -d 28 -p ack -e 40 -c 0 -i 202 -a 0 -x {21.0 3.0 91 ------- null} h -t 13.7747 -s 21 -d 28 -p ack -e 40 -c 0 -i 202 -a 0 -x {21.0 3.0 -1 ------- null} r -t 13.7763 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {3.0 21.0 92 ------- null} + -t 13.7763 -s 21 -d 28 -p ack -e 40 -c 0 -i 203 -a 0 -x {21.0 3.0 92 ------- null} - -t 13.7763 -s 21 -d 28 -p ack -e 40 -c 0 -i 203 -a 0 -x {21.0 3.0 92 ------- null} h -t 13.7763 -s 21 -d 28 -p ack -e 40 -c 0 -i 203 -a 0 -x {21.0 3.0 -1 ------- null} r -t 13.7779 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 184 -a 0 -x {3.0 21.0 93 ------- null} + -t 13.7779 -s 21 -d 28 -p ack -e 40 -c 0 -i 204 -a 0 -x {21.0 3.0 93 ------- null} - -t 13.7779 -s 21 -d 28 -p ack -e 40 -c 0 -i 204 -a 0 -x {21.0 3.0 93 ------- null} h -t 13.7779 -s 21 -d 28 -p ack -e 40 -c 0 -i 204 -a 0 -x {21.0 3.0 -1 ------- null} r -t 13.7795 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {3.0 21.0 94 ------- null} + -t 13.7795 -s 21 -d 28 -p ack -e 40 -c 0 -i 205 -a 0 -x {21.0 3.0 94 ------- null} - -t 13.7795 -s 21 -d 28 -p ack -e 40 -c 0 -i 205 -a 0 -x {21.0 3.0 94 ------- null} h -t 13.7795 -s 21 -d 28 -p ack -e 40 -c 0 -i 205 -a 0 -x {21.0 3.0 -1 ------- null} r -t 13.7811 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 186 -a 0 -x {3.0 21.0 95 ------- null} + -t 13.7811 -s 21 -d 28 -p ack -e 40 -c 0 -i 206 -a 0 -x {21.0 3.0 95 ------- null} - -t 13.7811 -s 21 -d 28 -p ack -e 40 -c 0 -i 206 -a 0 -x {21.0 3.0 95 ------- null} h -t 13.7811 -s 21 -d 28 -p ack -e 40 -c 0 -i 206 -a 0 -x {21.0 3.0 -1 ------- null} r -t 13.7827 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {3.0 21.0 96 ------- null} + -t 13.7827 -s 21 -d 28 -p ack -e 40 -c 0 -i 207 -a 0 -x {21.0 3.0 96 ------- null} - -t 13.7827 -s 21 -d 28 -p ack -e 40 -c 0 -i 207 -a 0 -x {21.0 3.0 96 ------- null} h -t 13.7827 -s 21 -d 28 -p ack -e 40 -c 0 -i 207 -a 0 -x {21.0 3.0 -1 ------- null} r -t 13.7843 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 188 -a 0 -x {3.0 21.0 97 ------- null} + -t 13.7843 -s 21 -d 28 -p ack -e 40 -c 0 -i 208 -a 0 -x {21.0 3.0 97 ------- null} - -t 13.7843 -s 21 -d 28 -p ack -e 40 -c 0 -i 208 -a 0 -x {21.0 3.0 97 ------- null} h -t 13.7843 -s 21 -d 28 -p ack -e 40 -c 0 -i 208 -a 0 -x {21.0 3.0 -1 ------- null} r -t 13.7859 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {3.0 21.0 98 ------- null} + -t 13.7859 -s 21 -d 28 -p ack -e 40 -c 0 -i 209 -a 0 -x {21.0 3.0 98 ------- null} - -t 13.7859 -s 21 -d 28 -p ack -e 40 -c 0 -i 209 -a 0 -x {21.0 3.0 98 ------- null} h -t 13.7859 -s 21 -d 28 -p ack -e 40 -c 0 -i 209 -a 0 -x {21.0 3.0 -1 ------- null} r -t 13.7875 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 190 -a 0 -x {3.0 21.0 99 ------- null} + -t 13.7875 -s 21 -d 28 -p ack -e 40 -c 0 -i 210 -a 0 -x {21.0 3.0 99 ------- null} - -t 13.7875 -s 21 -d 28 -p ack -e 40 -c 0 -i 210 -a 0 -x {21.0 3.0 99 ------- null} h -t 13.7875 -s 21 -d 28 -p ack -e 40 -c 0 -i 210 -a 0 -x {21.0 3.0 -1 ------- null} r -t 13.7891 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {3.0 21.0 100 ------- null} + -t 13.7891 -s 21 -d 28 -p ack -e 40 -c 0 -i 211 -a 0 -x {21.0 3.0 100 ------- null} - -t 13.7891 -s 21 -d 28 -p ack -e 40 -c 0 -i 211 -a 0 -x {21.0 3.0 100 ------- null} h -t 13.7891 -s 21 -d 28 -p ack -e 40 -c 0 -i 211 -a 0 -x {21.0 3.0 -1 ------- null} r -t 13.7907 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 192 -a 0 -x {3.0 21.0 101 ------- null} + -t 13.7907 -s 21 -d 28 -p ack -e 40 -c 0 -i 212 -a 0 -x {21.0 3.0 101 ------- null} - -t 13.7907 -s 21 -d 28 -p ack -e 40 -c 0 -i 212 -a 0 -x {21.0 3.0 101 ------- null} h -t 13.7907 -s 21 -d 28 -p ack -e 40 -c 0 -i 212 -a 0 -x {21.0 3.0 -1 ------- null} r -t 13.7923 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {3.0 21.0 102 ------- null} + -t 13.7923 -s 21 -d 28 -p ack -e 40 -c 0 -i 213 -a 0 -x {21.0 3.0 102 ------- null} - -t 13.7923 -s 21 -d 28 -p ack -e 40 -c 0 -i 213 -a 0 -x {21.0 3.0 102 ------- null} h -t 13.7923 -s 21 -d 28 -p ack -e 40 -c 0 -i 213 -a 0 -x {21.0 3.0 -1 ------- null} r -t 13.7939 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 194 -a 0 -x {3.0 21.0 103 ------- null} + -t 13.7939 -s 21 -d 28 -p ack -e 40 -c 0 -i 214 -a 0 -x {21.0 3.0 103 ------- null} - -t 13.7939 -s 21 -d 28 -p ack -e 40 -c 0 -i 214 -a 0 -x {21.0 3.0 103 ------- null} h -t 13.7939 -s 21 -d 28 -p ack -e 40 -c 0 -i 214 -a 0 -x {21.0 3.0 -1 ------- null} r -t 13.7955 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {3.0 21.0 104 ------- null} + -t 13.7955 -s 21 -d 28 -p ack -e 40 -c 0 -i 215 -a 0 -x {21.0 3.0 104 ------- null} - -t 13.7955 -s 21 -d 28 -p ack -e 40 -c 0 -i 215 -a 0 -x {21.0 3.0 104 ------- null} h -t 13.7955 -s 21 -d 28 -p ack -e 40 -c 0 -i 215 -a 0 -x {21.0 3.0 -1 ------- null} r -t 13.7971 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 196 -a 0 -x {3.0 21.0 105 ------- null} + -t 13.7971 -s 21 -d 28 -p ack -e 40 -c 0 -i 216 -a 0 -x {21.0 3.0 105 ------- null} - -t 13.7971 -s 21 -d 28 -p ack -e 40 -c 0 -i 216 -a 0 -x {21.0 3.0 105 ------- null} h -t 13.7971 -s 21 -d 28 -p ack -e 40 -c 0 -i 216 -a 0 -x {21.0 3.0 -1 ------- null} r -t 13.7987 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {3.0 21.0 106 ------- null} + -t 13.7987 -s 21 -d 28 -p ack -e 40 -c 0 -i 217 -a 0 -x {21.0 3.0 106 ------- null} - -t 13.7987 -s 21 -d 28 -p ack -e 40 -c 0 -i 217 -a 0 -x {21.0 3.0 106 ------- null} h -t 13.7987 -s 21 -d 28 -p ack -e 40 -c 0 -i 217 -a 0 -x {21.0 3.0 -1 ------- null} r -t 13.8003 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 198 -a 0 -x {3.0 21.0 107 ------- null} + -t 13.8003 -s 21 -d 28 -p ack -e 40 -c 0 -i 218 -a 0 -x {21.0 3.0 107 ------- null} - -t 13.8003 -s 21 -d 28 -p ack -e 40 -c 0 -i 218 -a 0 -x {21.0 3.0 107 ------- null} h -t 13.8003 -s 21 -d 28 -p ack -e 40 -c 0 -i 218 -a 0 -x {21.0 3.0 -1 ------- null} r -t 13.8019 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {3.0 21.0 108 ------- null} + -t 13.8019 -s 21 -d 28 -p ack -e 40 -c 0 -i 219 -a 0 -x {21.0 3.0 108 ------- null} - -t 13.8019 -s 21 -d 28 -p ack -e 40 -c 0 -i 219 -a 0 -x {21.0 3.0 108 ------- null} h -t 13.8019 -s 21 -d 28 -p ack -e 40 -c 0 -i 219 -a 0 -x {21.0 3.0 -1 ------- null} r -t 13.8035 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 200 -a 0 -x {3.0 21.0 109 ------- null} + -t 13.8035 -s 21 -d 28 -p ack -e 40 -c 0 -i 220 -a 0 -x {21.0 3.0 109 ------- null} - -t 13.8035 -s 21 -d 28 -p ack -e 40 -c 0 -i 220 -a 0 -x {21.0 3.0 109 ------- null} h -t 13.8035 -s 21 -d 28 -p ack -e 40 -c 0 -i 220 -a 0 -x {21.0 3.0 -1 ------- null} r -t 13.8051 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {3.0 21.0 110 ------- null} + -t 13.8051 -s 21 -d 28 -p ack -e 40 -c 0 -i 221 -a 0 -x {21.0 3.0 110 ------- null} - -t 13.8051 -s 21 -d 28 -p ack -e 40 -c 0 -i 221 -a 0 -x {21.0 3.0 110 ------- null} h -t 13.8051 -s 21 -d 28 -p ack -e 40 -c 0 -i 221 -a 0 -x {21.0 3.0 -1 ------- null} r -t 14.1248 -s 21 -d 28 -p ack -e 40 -c 0 -i 202 -a 0 -x {21.0 3.0 91 ------- null} + -t 14.1248 -s 28 -d 1 -p ack -e 40 -c 0 -i 202 -a 0 -x {21.0 3.0 91 ------- null} - -t 14.1248 -s 28 -d 1 -p ack -e 40 -c 0 -i 202 -a 0 -x {21.0 3.0 91 ------- null} h -t 14.1248 -s 28 -d 1 -p ack -e 40 -c 0 -i 202 -a 0 -x {21.0 3.0 -1 ------- null} r -t 14.1264 -s 21 -d 28 -p ack -e 40 -c 0 -i 203 -a 0 -x {21.0 3.0 92 ------- null} + -t 14.1264 -s 28 -d 1 -p ack -e 40 -c 0 -i 203 -a 0 -x {21.0 3.0 92 ------- null} - -t 14.1264 -s 28 -d 1 -p ack -e 40 -c 0 -i 203 -a 0 -x {21.0 3.0 92 ------- null} h -t 14.1264 -s 28 -d 1 -p ack -e 40 -c 0 -i 203 -a 0 -x {21.0 3.0 -1 ------- null} r -t 14.128 -s 21 -d 28 -p ack -e 40 -c 0 -i 204 -a 0 -x {21.0 3.0 93 ------- null} + -t 14.128 -s 28 -d 1 -p ack -e 40 -c 0 -i 204 -a 0 -x {21.0 3.0 93 ------- null} - -t 14.128 -s 28 -d 1 -p ack -e 40 -c 0 -i 204 -a 0 -x {21.0 3.0 93 ------- null} h -t 14.128 -s 28 -d 1 -p ack -e 40 -c 0 -i 204 -a 0 -x {21.0 3.0 -1 ------- null} r -t 14.1296 -s 21 -d 28 -p ack -e 40 -c 0 -i 205 -a 0 -x {21.0 3.0 94 ------- null} + -t 14.1296 -s 28 -d 1 -p ack -e 40 -c 0 -i 205 -a 0 -x {21.0 3.0 94 ------- null} - -t 14.1296 -s 28 -d 1 -p ack -e 40 -c 0 -i 205 -a 0 -x {21.0 3.0 94 ------- null} h -t 14.1296 -s 28 -d 1 -p ack -e 40 -c 0 -i 205 -a 0 -x {21.0 3.0 -1 ------- null} r -t 14.1312 -s 21 -d 28 -p ack -e 40 -c 0 -i 206 -a 0 -x {21.0 3.0 95 ------- null} + -t 14.1312 -s 28 -d 1 -p ack -e 40 -c 0 -i 206 -a 0 -x {21.0 3.0 95 ------- null} - -t 14.1312 -s 28 -d 1 -p ack -e 40 -c 0 -i 206 -a 0 -x {21.0 3.0 95 ------- null} h -t 14.1312 -s 28 -d 1 -p ack -e 40 -c 0 -i 206 -a 0 -x {21.0 3.0 -1 ------- null} r -t 14.1328 -s 21 -d 28 -p ack -e 40 -c 0 -i 207 -a 0 -x {21.0 3.0 96 ------- null} + -t 14.1328 -s 28 -d 1 -p ack -e 40 -c 0 -i 207 -a 0 -x {21.0 3.0 96 ------- null} - -t 14.1328 -s 28 -d 1 -p ack -e 40 -c 0 -i 207 -a 0 -x {21.0 3.0 96 ------- null} h -t 14.1328 -s 28 -d 1 -p ack -e 40 -c 0 -i 207 -a 0 -x {21.0 3.0 -1 ------- null} r -t 14.1344 -s 21 -d 28 -p ack -e 40 -c 0 -i 208 -a 0 -x {21.0 3.0 97 ------- null} + -t 14.1344 -s 28 -d 1 -p ack -e 40 -c 0 -i 208 -a 0 -x {21.0 3.0 97 ------- null} - -t 14.1344 -s 28 -d 1 -p ack -e 40 -c 0 -i 208 -a 0 -x {21.0 3.0 97 ------- null} h -t 14.1344 -s 28 -d 1 -p ack -e 40 -c 0 -i 208 -a 0 -x {21.0 3.0 -1 ------- null} r -t 14.136 -s 21 -d 28 -p ack -e 40 -c 0 -i 209 -a 0 -x {21.0 3.0 98 ------- null} + -t 14.136 -s 28 -d 1 -p ack -e 40 -c 0 -i 209 -a 0 -x {21.0 3.0 98 ------- null} - -t 14.136 -s 28 -d 1 -p ack -e 40 -c 0 -i 209 -a 0 -x {21.0 3.0 98 ------- null} h -t 14.136 -s 28 -d 1 -p ack -e 40 -c 0 -i 209 -a 0 -x {21.0 3.0 -1 ------- null} r -t 14.1376 -s 21 -d 28 -p ack -e 40 -c 0 -i 210 -a 0 -x {21.0 3.0 99 ------- null} + -t 14.1376 -s 28 -d 1 -p ack -e 40 -c 0 -i 210 -a 0 -x {21.0 3.0 99 ------- null} - -t 14.1376 -s 28 -d 1 -p ack -e 40 -c 0 -i 210 -a 0 -x {21.0 3.0 99 ------- null} h -t 14.1376 -s 28 -d 1 -p ack -e 40 -c 0 -i 210 -a 0 -x {21.0 3.0 -1 ------- null} r -t 14.1392 -s 21 -d 28 -p ack -e 40 -c 0 -i 211 -a 0 -x {21.0 3.0 100 ------- null} + -t 14.1392 -s 28 -d 1 -p ack -e 40 -c 0 -i 211 -a 0 -x {21.0 3.0 100 ------- null} - -t 14.1392 -s 28 -d 1 -p ack -e 40 -c 0 -i 211 -a 0 -x {21.0 3.0 100 ------- null} h -t 14.1392 -s 28 -d 1 -p ack -e 40 -c 0 -i 211 -a 0 -x {21.0 3.0 -1 ------- null} r -t 14.1408 -s 21 -d 28 -p ack -e 40 -c 0 -i 212 -a 0 -x {21.0 3.0 101 ------- null} + -t 14.1408 -s 28 -d 1 -p ack -e 40 -c 0 -i 212 -a 0 -x {21.0 3.0 101 ------- null} - -t 14.1408 -s 28 -d 1 -p ack -e 40 -c 0 -i 212 -a 0 -x {21.0 3.0 101 ------- null} h -t 14.1408 -s 28 -d 1 -p ack -e 40 -c 0 -i 212 -a 0 -x {21.0 3.0 -1 ------- null} r -t 14.1424 -s 21 -d 28 -p ack -e 40 -c 0 -i 213 -a 0 -x {21.0 3.0 102 ------- null} + -t 14.1424 -s 28 -d 1 -p ack -e 40 -c 0 -i 213 -a 0 -x {21.0 3.0 102 ------- null} - -t 14.1424 -s 28 -d 1 -p ack -e 40 -c 0 -i 213 -a 0 -x {21.0 3.0 102 ------- null} h -t 14.1424 -s 28 -d 1 -p ack -e 40 -c 0 -i 213 -a 0 -x {21.0 3.0 -1 ------- null} r -t 14.144 -s 21 -d 28 -p ack -e 40 -c 0 -i 214 -a 0 -x {21.0 3.0 103 ------- null} + -t 14.144 -s 28 -d 1 -p ack -e 40 -c 0 -i 214 -a 0 -x {21.0 3.0 103 ------- null} - -t 14.144 -s 28 -d 1 -p ack -e 40 -c 0 -i 214 -a 0 -x {21.0 3.0 103 ------- null} h -t 14.144 -s 28 -d 1 -p ack -e 40 -c 0 -i 214 -a 0 -x {21.0 3.0 -1 ------- null} r -t 14.1456 -s 21 -d 28 -p ack -e 40 -c 0 -i 215 -a 0 -x {21.0 3.0 104 ------- null} + -t 14.1456 -s 28 -d 1 -p ack -e 40 -c 0 -i 215 -a 0 -x {21.0 3.0 104 ------- null} - -t 14.1456 -s 28 -d 1 -p ack -e 40 -c 0 -i 215 -a 0 -x {21.0 3.0 104 ------- null} h -t 14.1456 -s 28 -d 1 -p ack -e 40 -c 0 -i 215 -a 0 -x {21.0 3.0 -1 ------- null} r -t 14.1472 -s 21 -d 28 -p ack -e 40 -c 0 -i 216 -a 0 -x {21.0 3.0 105 ------- null} + -t 14.1472 -s 28 -d 1 -p ack -e 40 -c 0 -i 216 -a 0 -x {21.0 3.0 105 ------- null} - -t 14.1472 -s 28 -d 1 -p ack -e 40 -c 0 -i 216 -a 0 -x {21.0 3.0 105 ------- null} h -t 14.1472 -s 28 -d 1 -p ack -e 40 -c 0 -i 216 -a 0 -x {21.0 3.0 -1 ------- null} r -t 14.1488 -s 21 -d 28 -p ack -e 40 -c 0 -i 217 -a 0 -x {21.0 3.0 106 ------- null} + -t 14.1488 -s 28 -d 1 -p ack -e 40 -c 0 -i 217 -a 0 -x {21.0 3.0 106 ------- null} - -t 14.1488 -s 28 -d 1 -p ack -e 40 -c 0 -i 217 -a 0 -x {21.0 3.0 106 ------- null} h -t 14.1488 -s 28 -d 1 -p ack -e 40 -c 0 -i 217 -a 0 -x {21.0 3.0 -1 ------- null} r -t 14.1504 -s 21 -d 28 -p ack -e 40 -c 0 -i 218 -a 0 -x {21.0 3.0 107 ------- null} + -t 14.1504 -s 28 -d 1 -p ack -e 40 -c 0 -i 218 -a 0 -x {21.0 3.0 107 ------- null} - -t 14.1504 -s 28 -d 1 -p ack -e 40 -c 0 -i 218 -a 0 -x {21.0 3.0 107 ------- null} h -t 14.1504 -s 28 -d 1 -p ack -e 40 -c 0 -i 218 -a 0 -x {21.0 3.0 -1 ------- null} r -t 14.152 -s 21 -d 28 -p ack -e 40 -c 0 -i 219 -a 0 -x {21.0 3.0 108 ------- null} + -t 14.152 -s 28 -d 1 -p ack -e 40 -c 0 -i 219 -a 0 -x {21.0 3.0 108 ------- null} - -t 14.152 -s 28 -d 1 -p ack -e 40 -c 0 -i 219 -a 0 -x {21.0 3.0 108 ------- null} h -t 14.152 -s 28 -d 1 -p ack -e 40 -c 0 -i 219 -a 0 -x {21.0 3.0 -1 ------- null} r -t 14.1536 -s 21 -d 28 -p ack -e 40 -c 0 -i 220 -a 0 -x {21.0 3.0 109 ------- null} + -t 14.1536 -s 28 -d 1 -p ack -e 40 -c 0 -i 220 -a 0 -x {21.0 3.0 109 ------- null} - -t 14.1536 -s 28 -d 1 -p ack -e 40 -c 0 -i 220 -a 0 -x {21.0 3.0 109 ------- null} h -t 14.1536 -s 28 -d 1 -p ack -e 40 -c 0 -i 220 -a 0 -x {21.0 3.0 -1 ------- null} r -t 14.1552 -s 21 -d 28 -p ack -e 40 -c 0 -i 221 -a 0 -x {21.0 3.0 110 ------- null} + -t 14.1552 -s 28 -d 1 -p ack -e 40 -c 0 -i 221 -a 0 -x {21.0 3.0 110 ------- null} - -t 14.1552 -s 28 -d 1 -p ack -e 40 -c 0 -i 221 -a 0 -x {21.0 3.0 110 ------- null} h -t 14.1552 -s 28 -d 1 -p ack -e 40 -c 0 -i 221 -a 0 -x {21.0 3.0 -1 ------- null} r -t 14.4249 -s 28 -d 1 -p ack -e 40 -c 0 -i 202 -a 0 -x {21.0 3.0 91 ------- null} + -t 14.4249 -s 1 -d 3 -p ack -e 40 -c 0 -i 202 -a 0 -x {21.0 3.0 91 ------- null} - -t 14.4249 -s 1 -d 3 -p ack -e 40 -c 0 -i 202 -a 0 -x {21.0 3.0 91 ------- null} h -t 14.4249 -s 1 -d 3 -p ack -e 40 -c 0 -i 202 -a 0 -x {21.0 3.0 -1 ------- null} r -t 14.4265 -s 28 -d 1 -p ack -e 40 -c 0 -i 203 -a 0 -x {21.0 3.0 92 ------- null} + -t 14.4265 -s 1 -d 3 -p ack -e 40 -c 0 -i 203 -a 0 -x {21.0 3.0 92 ------- null} - -t 14.4265 -s 1 -d 3 -p ack -e 40 -c 0 -i 203 -a 0 -x {21.0 3.0 92 ------- null} h -t 14.4265 -s 1 -d 3 -p ack -e 40 -c 0 -i 203 -a 0 -x {21.0 3.0 -1 ------- null} r -t 14.4281 -s 28 -d 1 -p ack -e 40 -c 0 -i 204 -a 0 -x {21.0 3.0 93 ------- null} + -t 14.4281 -s 1 -d 3 -p ack -e 40 -c 0 -i 204 -a 0 -x {21.0 3.0 93 ------- null} - -t 14.4281 -s 1 -d 3 -p ack -e 40 -c 0 -i 204 -a 0 -x {21.0 3.0 93 ------- null} h -t 14.4281 -s 1 -d 3 -p ack -e 40 -c 0 -i 204 -a 0 -x {21.0 3.0 -1 ------- null} r -t 14.4297 -s 28 -d 1 -p ack -e 40 -c 0 -i 205 -a 0 -x {21.0 3.0 94 ------- null} + -t 14.4297 -s 1 -d 3 -p ack -e 40 -c 0 -i 205 -a 0 -x {21.0 3.0 94 ------- null} - -t 14.4297 -s 1 -d 3 -p ack -e 40 -c 0 -i 205 -a 0 -x {21.0 3.0 94 ------- null} h -t 14.4297 -s 1 -d 3 -p ack -e 40 -c 0 -i 205 -a 0 -x {21.0 3.0 -1 ------- null} r -t 14.4313 -s 28 -d 1 -p ack -e 40 -c 0 -i 206 -a 0 -x {21.0 3.0 95 ------- null} + -t 14.4313 -s 1 -d 3 -p ack -e 40 -c 0 -i 206 -a 0 -x {21.0 3.0 95 ------- null} - -t 14.4313 -s 1 -d 3 -p ack -e 40 -c 0 -i 206 -a 0 -x {21.0 3.0 95 ------- null} h -t 14.4313 -s 1 -d 3 -p ack -e 40 -c 0 -i 206 -a 0 -x {21.0 3.0 -1 ------- null} r -t 14.4329 -s 28 -d 1 -p ack -e 40 -c 0 -i 207 -a 0 -x {21.0 3.0 96 ------- null} + -t 14.4329 -s 1 -d 3 -p ack -e 40 -c 0 -i 207 -a 0 -x {21.0 3.0 96 ------- null} - -t 14.4329 -s 1 -d 3 -p ack -e 40 -c 0 -i 207 -a 0 -x {21.0 3.0 96 ------- null} h -t 14.4329 -s 1 -d 3 -p ack -e 40 -c 0 -i 207 -a 0 -x {21.0 3.0 -1 ------- null} r -t 14.4345 -s 28 -d 1 -p ack -e 40 -c 0 -i 208 -a 0 -x {21.0 3.0 97 ------- null} + -t 14.4345 -s 1 -d 3 -p ack -e 40 -c 0 -i 208 -a 0 -x {21.0 3.0 97 ------- null} - -t 14.4345 -s 1 -d 3 -p ack -e 40 -c 0 -i 208 -a 0 -x {21.0 3.0 97 ------- null} h -t 14.4345 -s 1 -d 3 -p ack -e 40 -c 0 -i 208 -a 0 -x {21.0 3.0 -1 ------- null} r -t 14.4361 -s 28 -d 1 -p ack -e 40 -c 0 -i 209 -a 0 -x {21.0 3.0 98 ------- null} + -t 14.4361 -s 1 -d 3 -p ack -e 40 -c 0 -i 209 -a 0 -x {21.0 3.0 98 ------- null} - -t 14.4361 -s 1 -d 3 -p ack -e 40 -c 0 -i 209 -a 0 -x {21.0 3.0 98 ------- null} h -t 14.4361 -s 1 -d 3 -p ack -e 40 -c 0 -i 209 -a 0 -x {21.0 3.0 -1 ------- null} r -t 14.4377 -s 28 -d 1 -p ack -e 40 -c 0 -i 210 -a 0 -x {21.0 3.0 99 ------- null} + -t 14.4377 -s 1 -d 3 -p ack -e 40 -c 0 -i 210 -a 0 -x {21.0 3.0 99 ------- null} - -t 14.4377 -s 1 -d 3 -p ack -e 40 -c 0 -i 210 -a 0 -x {21.0 3.0 99 ------- null} h -t 14.4377 -s 1 -d 3 -p ack -e 40 -c 0 -i 210 -a 0 -x {21.0 3.0 -1 ------- null} r -t 14.4393 -s 28 -d 1 -p ack -e 40 -c 0 -i 211 -a 0 -x {21.0 3.0 100 ------- null} + -t 14.4393 -s 1 -d 3 -p ack -e 40 -c 0 -i 211 -a 0 -x {21.0 3.0 100 ------- null} - -t 14.4393 -s 1 -d 3 -p ack -e 40 -c 0 -i 211 -a 0 -x {21.0 3.0 100 ------- null} h -t 14.4393 -s 1 -d 3 -p ack -e 40 -c 0 -i 211 -a 0 -x {21.0 3.0 -1 ------- null} r -t 14.4409 -s 28 -d 1 -p ack -e 40 -c 0 -i 212 -a 0 -x {21.0 3.0 101 ------- null} + -t 14.4409 -s 1 -d 3 -p ack -e 40 -c 0 -i 212 -a 0 -x {21.0 3.0 101 ------- null} - -t 14.4409 -s 1 -d 3 -p ack -e 40 -c 0 -i 212 -a 0 -x {21.0 3.0 101 ------- null} h -t 14.4409 -s 1 -d 3 -p ack -e 40 -c 0 -i 212 -a 0 -x {21.0 3.0 -1 ------- null} r -t 14.4425 -s 28 -d 1 -p ack -e 40 -c 0 -i 213 -a 0 -x {21.0 3.0 102 ------- null} + -t 14.4425 -s 1 -d 3 -p ack -e 40 -c 0 -i 213 -a 0 -x {21.0 3.0 102 ------- null} - -t 14.4425 -s 1 -d 3 -p ack -e 40 -c 0 -i 213 -a 0 -x {21.0 3.0 102 ------- null} h -t 14.4425 -s 1 -d 3 -p ack -e 40 -c 0 -i 213 -a 0 -x {21.0 3.0 -1 ------- null} r -t 14.4441 -s 28 -d 1 -p ack -e 40 -c 0 -i 214 -a 0 -x {21.0 3.0 103 ------- null} + -t 14.4441 -s 1 -d 3 -p ack -e 40 -c 0 -i 214 -a 0 -x {21.0 3.0 103 ------- null} - -t 14.4441 -s 1 -d 3 -p ack -e 40 -c 0 -i 214 -a 0 -x {21.0 3.0 103 ------- null} h -t 14.4441 -s 1 -d 3 -p ack -e 40 -c 0 -i 214 -a 0 -x {21.0 3.0 -1 ------- null} r -t 14.4457 -s 28 -d 1 -p ack -e 40 -c 0 -i 215 -a 0 -x {21.0 3.0 104 ------- null} + -t 14.4457 -s 1 -d 3 -p ack -e 40 -c 0 -i 215 -a 0 -x {21.0 3.0 104 ------- null} - -t 14.4457 -s 1 -d 3 -p ack -e 40 -c 0 -i 215 -a 0 -x {21.0 3.0 104 ------- null} h -t 14.4457 -s 1 -d 3 -p ack -e 40 -c 0 -i 215 -a 0 -x {21.0 3.0 -1 ------- null} r -t 14.4473 -s 28 -d 1 -p ack -e 40 -c 0 -i 216 -a 0 -x {21.0 3.0 105 ------- null} + -t 14.4473 -s 1 -d 3 -p ack -e 40 -c 0 -i 216 -a 0 -x {21.0 3.0 105 ------- null} - -t 14.4473 -s 1 -d 3 -p ack -e 40 -c 0 -i 216 -a 0 -x {21.0 3.0 105 ------- null} h -t 14.4473 -s 1 -d 3 -p ack -e 40 -c 0 -i 216 -a 0 -x {21.0 3.0 -1 ------- null} r -t 14.4489 -s 28 -d 1 -p ack -e 40 -c 0 -i 217 -a 0 -x {21.0 3.0 106 ------- null} + -t 14.4489 -s 1 -d 3 -p ack -e 40 -c 0 -i 217 -a 0 -x {21.0 3.0 106 ------- null} - -t 14.4489 -s 1 -d 3 -p ack -e 40 -c 0 -i 217 -a 0 -x {21.0 3.0 106 ------- null} h -t 14.4489 -s 1 -d 3 -p ack -e 40 -c 0 -i 217 -a 0 -x {21.0 3.0 -1 ------- null} r -t 14.4505 -s 28 -d 1 -p ack -e 40 -c 0 -i 218 -a 0 -x {21.0 3.0 107 ------- null} + -t 14.4505 -s 1 -d 3 -p ack -e 40 -c 0 -i 218 -a 0 -x {21.0 3.0 107 ------- null} - -t 14.4505 -s 1 -d 3 -p ack -e 40 -c 0 -i 218 -a 0 -x {21.0 3.0 107 ------- null} h -t 14.4505 -s 1 -d 3 -p ack -e 40 -c 0 -i 218 -a 0 -x {21.0 3.0 -1 ------- null} r -t 14.4521 -s 28 -d 1 -p ack -e 40 -c 0 -i 219 -a 0 -x {21.0 3.0 108 ------- null} + -t 14.4521 -s 1 -d 3 -p ack -e 40 -c 0 -i 219 -a 0 -x {21.0 3.0 108 ------- null} - -t 14.4521 -s 1 -d 3 -p ack -e 40 -c 0 -i 219 -a 0 -x {21.0 3.0 108 ------- null} h -t 14.4521 -s 1 -d 3 -p ack -e 40 -c 0 -i 219 -a 0 -x {21.0 3.0 -1 ------- null} r -t 14.4537 -s 28 -d 1 -p ack -e 40 -c 0 -i 220 -a 0 -x {21.0 3.0 109 ------- null} + -t 14.4537 -s 1 -d 3 -p ack -e 40 -c 0 -i 220 -a 0 -x {21.0 3.0 109 ------- null} - -t 14.4537 -s 1 -d 3 -p ack -e 40 -c 0 -i 220 -a 0 -x {21.0 3.0 109 ------- null} h -t 14.4537 -s 1 -d 3 -p ack -e 40 -c 0 -i 220 -a 0 -x {21.0 3.0 -1 ------- null} r -t 14.4553 -s 28 -d 1 -p ack -e 40 -c 0 -i 221 -a 0 -x {21.0 3.0 110 ------- null} + -t 14.4553 -s 1 -d 3 -p ack -e 40 -c 0 -i 221 -a 0 -x {21.0 3.0 110 ------- null} - -t 14.4553 -s 1 -d 3 -p ack -e 40 -c 0 -i 221 -a 0 -x {21.0 3.0 110 ------- null} h -t 14.4553 -s 1 -d 3 -p ack -e 40 -c 0 -i 221 -a 0 -x {21.0 3.0 -1 ------- null} r -t 14.5649 -s 1 -d 3 -p ack -e 40 -c 0 -i 202 -a 0 -x {21.0 3.0 91 ------- null} + -t 14.5649 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 222 -a 0 -x {3.0 21.0 111 ------- null} - -t 14.5649 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 222 -a 0 -x {3.0 21.0 111 ------- null} h -t 14.5649 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 222 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.5665 -s 1 -d 3 -p ack -e 40 -c 0 -i 203 -a 0 -x {21.0 3.0 92 ------- null} + -t 14.5665 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {3.0 21.0 112 ------- null} - -t 14.5665 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {3.0 21.0 112 ------- null} h -t 14.5665 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.5681 -s 1 -d 3 -p ack -e 40 -c 0 -i 204 -a 0 -x {21.0 3.0 93 ------- null} + -t 14.5681 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {3.0 21.0 113 ------- null} - -t 14.5681 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {3.0 21.0 113 ------- null} h -t 14.5681 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.5697 -s 1 -d 3 -p ack -e 40 -c 0 -i 205 -a 0 -x {21.0 3.0 94 ------- null} + -t 14.5697 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {3.0 21.0 114 ------- null} - -t 14.5697 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {3.0 21.0 114 ------- null} h -t 14.5697 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.5713 -s 1 -d 3 -p ack -e 40 -c 0 -i 206 -a 0 -x {21.0 3.0 95 ------- null} + -t 14.5713 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 226 -a 0 -x {3.0 21.0 115 ------- null} - -t 14.5713 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 226 -a 0 -x {3.0 21.0 115 ------- null} h -t 14.5713 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 226 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.5729 -s 1 -d 3 -p ack -e 40 -c 0 -i 207 -a 0 -x {21.0 3.0 96 ------- null} + -t 14.5729 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {3.0 21.0 116 ------- null} - -t 14.5729 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {3.0 21.0 116 ------- null} h -t 14.5729 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.5745 -s 1 -d 3 -p ack -e 40 -c 0 -i 208 -a 0 -x {21.0 3.0 97 ------- null} + -t 14.5745 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {3.0 21.0 117 ------- null} - -t 14.5745 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {3.0 21.0 117 ------- null} h -t 14.5745 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.5761 -s 1 -d 3 -p ack -e 40 -c 0 -i 209 -a 0 -x {21.0 3.0 98 ------- null} + -t 14.5761 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {3.0 21.0 118 ------- null} - -t 14.5761 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {3.0 21.0 118 ------- null} h -t 14.5761 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.5777 -s 1 -d 3 -p ack -e 40 -c 0 -i 210 -a 0 -x {21.0 3.0 99 ------- null} + -t 14.5777 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {3.0 21.0 119 ------- null} - -t 14.5777 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {3.0 21.0 119 ------- null} h -t 14.5777 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.5793 -s 1 -d 3 -p ack -e 40 -c 0 -i 211 -a 0 -x {21.0 3.0 100 ------- null} + -t 14.5793 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {3.0 21.0 120 ------- null} - -t 14.5793 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {3.0 21.0 120 ------- null} h -t 14.5793 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.5809 -s 1 -d 3 -p ack -e 40 -c 0 -i 212 -a 0 -x {21.0 3.0 101 ------- null} + -t 14.5809 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {3.0 21.0 121 ------- null} - -t 14.5809 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {3.0 21.0 121 ------- null} h -t 14.5809 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.5825 -s 1 -d 3 -p ack -e 40 -c 0 -i 213 -a 0 -x {21.0 3.0 102 ------- null} + -t 14.5825 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {3.0 21.0 122 ------- null} - -t 14.5825 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {3.0 21.0 122 ------- null} h -t 14.5825 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.5841 -s 1 -d 3 -p ack -e 40 -c 0 -i 214 -a 0 -x {21.0 3.0 103 ------- null} + -t 14.5841 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 234 -a 0 -x {3.0 21.0 123 ------- null} - -t 14.5841 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 234 -a 0 -x {3.0 21.0 123 ------- null} h -t 14.5841 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 234 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.5857 -s 1 -d 3 -p ack -e 40 -c 0 -i 215 -a 0 -x {21.0 3.0 104 ------- null} + -t 14.5857 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {3.0 21.0 124 ------- null} - -t 14.5857 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {3.0 21.0 124 ------- null} h -t 14.5857 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.5873 -s 1 -d 3 -p ack -e 40 -c 0 -i 216 -a 0 -x {21.0 3.0 105 ------- null} + -t 14.5873 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {3.0 21.0 125 ------- null} - -t 14.5873 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {3.0 21.0 125 ------- null} h -t 14.5873 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.5889 -s 1 -d 3 -p ack -e 40 -c 0 -i 217 -a 0 -x {21.0 3.0 106 ------- null} + -t 14.5889 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {3.0 21.0 126 ------- null} - -t 14.5889 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {3.0 21.0 126 ------- null} h -t 14.5889 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.5905 -s 1 -d 3 -p ack -e 40 -c 0 -i 218 -a 0 -x {21.0 3.0 107 ------- null} + -t 14.5905 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 238 -a 0 -x {3.0 21.0 127 ------- null} - -t 14.5905 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 238 -a 0 -x {3.0 21.0 127 ------- null} h -t 14.5905 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 238 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.5921 -s 1 -d 3 -p ack -e 40 -c 0 -i 219 -a 0 -x {21.0 3.0 108 ------- null} + -t 14.5921 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {3.0 21.0 128 ------- null} - -t 14.5921 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {3.0 21.0 128 ------- null} h -t 14.5921 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.5937 -s 1 -d 3 -p ack -e 40 -c 0 -i 220 -a 0 -x {21.0 3.0 109 ------- null} + -t 14.5937 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {3.0 21.0 129 ------- null} - -t 14.5937 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {3.0 21.0 129 ------- null} h -t 14.5937 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.5953 -s 1 -d 3 -p ack -e 40 -c 0 -i 221 -a 0 -x {21.0 3.0 110 ------- null} + -t 14.5953 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {3.0 21.0 130 ------- null} - -t 14.5953 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {3.0 21.0 130 ------- null} h -t 14.5953 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.7065 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 222 -a 0 -x {3.0 21.0 111 ------- null} + -t 14.7065 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 222 -a 0 -x {3.0 21.0 111 ------- null} - -t 14.7065 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 222 -a 0 -x {3.0 21.0 111 ------- null} h -t 14.7065 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 222 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.7081 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {3.0 21.0 112 ------- null} + -t 14.7081 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {3.0 21.0 112 ------- null} - -t 14.7081 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {3.0 21.0 112 ------- null} h -t 14.7081 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.7097 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {3.0 21.0 113 ------- null} + -t 14.7097 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {3.0 21.0 113 ------- null} - -t 14.7097 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {3.0 21.0 113 ------- null} h -t 14.7097 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.7113 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {3.0 21.0 114 ------- null} + -t 14.7113 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {3.0 21.0 114 ------- null} - -t 14.7113 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {3.0 21.0 114 ------- null} h -t 14.7113 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.7129 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 226 -a 0 -x {3.0 21.0 115 ------- null} + -t 14.7129 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 226 -a 0 -x {3.0 21.0 115 ------- null} - -t 14.7129 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 226 -a 0 -x {3.0 21.0 115 ------- null} h -t 14.7129 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 226 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.7145 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {3.0 21.0 116 ------- null} + -t 14.7145 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {3.0 21.0 116 ------- null} - -t 14.7145 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {3.0 21.0 116 ------- null} h -t 14.7145 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.7161 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {3.0 21.0 117 ------- null} + -t 14.7161 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {3.0 21.0 117 ------- null} - -t 14.7161 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {3.0 21.0 117 ------- null} h -t 14.7161 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.7177 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {3.0 21.0 118 ------- null} + -t 14.7177 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {3.0 21.0 118 ------- null} - -t 14.7177 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {3.0 21.0 118 ------- null} h -t 14.7177 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.7193 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {3.0 21.0 119 ------- null} + -t 14.7193 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {3.0 21.0 119 ------- null} - -t 14.7193 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {3.0 21.0 119 ------- null} h -t 14.7193 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.7209 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {3.0 21.0 120 ------- null} + -t 14.7209 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {3.0 21.0 120 ------- null} - -t 14.7209 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {3.0 21.0 120 ------- null} h -t 14.7209 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.7225 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {3.0 21.0 121 ------- null} + -t 14.7225 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {3.0 21.0 121 ------- null} - -t 14.7225 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {3.0 21.0 121 ------- null} h -t 14.7225 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.7241 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {3.0 21.0 122 ------- null} + -t 14.7241 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {3.0 21.0 122 ------- null} - -t 14.7241 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {3.0 21.0 122 ------- null} h -t 14.7241 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.7257 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 234 -a 0 -x {3.0 21.0 123 ------- null} + -t 14.7257 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 234 -a 0 -x {3.0 21.0 123 ------- null} - -t 14.7257 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 234 -a 0 -x {3.0 21.0 123 ------- null} h -t 14.7257 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 234 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.7273 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {3.0 21.0 124 ------- null} + -t 14.7273 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {3.0 21.0 124 ------- null} - -t 14.7273 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {3.0 21.0 124 ------- null} h -t 14.7273 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.7289 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {3.0 21.0 125 ------- null} + -t 14.7289 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {3.0 21.0 125 ------- null} - -t 14.7289 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {3.0 21.0 125 ------- null} h -t 14.7289 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.7305 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {3.0 21.0 126 ------- null} + -t 14.7305 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {3.0 21.0 126 ------- null} - -t 14.7305 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {3.0 21.0 126 ------- null} h -t 14.7305 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.7321 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 238 -a 0 -x {3.0 21.0 127 ------- null} + -t 14.7321 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 238 -a 0 -x {3.0 21.0 127 ------- null} - -t 14.7321 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 238 -a 0 -x {3.0 21.0 127 ------- null} h -t 14.7321 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 238 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.7337 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {3.0 21.0 128 ------- null} + -t 14.7337 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {3.0 21.0 128 ------- null} - -t 14.7337 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {3.0 21.0 128 ------- null} h -t 14.7337 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.7353 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {3.0 21.0 129 ------- null} + -t 14.7353 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {3.0 21.0 129 ------- null} - -t 14.7353 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {3.0 21.0 129 ------- null} h -t 14.7353 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.7369 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {3.0 21.0 130 ------- null} + -t 14.7369 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {3.0 21.0 130 ------- null} - -t 14.7369 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {3.0 21.0 130 ------- null} h -t 14.7369 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {3.0 21.0 -1 ------- null} r -t 15.0081 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 222 -a 0 -x {3.0 21.0 111 ------- null} + -t 15.0081 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 222 -a 0 -x {3.0 21.0 111 ------- null} - -t 15.0081 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 222 -a 0 -x {3.0 21.0 111 ------- null} h -t 15.0081 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 222 -a 0 -x {3.0 21.0 -1 ------- null} r -t 15.0097 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {3.0 21.0 112 ------- null} + -t 15.0097 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {3.0 21.0 112 ------- null} - -t 15.0097 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {3.0 21.0 112 ------- null} h -t 15.0097 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {3.0 21.0 -1 ------- null} r -t 15.0113 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {3.0 21.0 113 ------- null} + -t 15.0113 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {3.0 21.0 113 ------- null} - -t 15.0113 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {3.0 21.0 113 ------- null} h -t 15.0113 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {3.0 21.0 -1 ------- null} r -t 15.0129 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {3.0 21.0 114 ------- null} + -t 15.0129 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {3.0 21.0 114 ------- null} - -t 15.0129 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {3.0 21.0 114 ------- null} h -t 15.0129 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {3.0 21.0 -1 ------- null} r -t 15.0145 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 226 -a 0 -x {3.0 21.0 115 ------- null} + -t 15.0145 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 226 -a 0 -x {3.0 21.0 115 ------- null} - -t 15.0145 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 226 -a 0 -x {3.0 21.0 115 ------- null} h -t 15.0145 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 226 -a 0 -x {3.0 21.0 -1 ------- null} r -t 15.0161 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {3.0 21.0 116 ------- null} + -t 15.0161 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {3.0 21.0 116 ------- null} - -t 15.0161 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {3.0 21.0 116 ------- null} h -t 15.0161 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {3.0 21.0 -1 ------- null} r -t 15.0177 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {3.0 21.0 117 ------- null} + -t 15.0177 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {3.0 21.0 117 ------- null} - -t 15.0177 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {3.0 21.0 117 ------- null} h -t 15.0177 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {3.0 21.0 -1 ------- null} r -t 15.0193 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {3.0 21.0 118 ------- null} + -t 15.0193 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {3.0 21.0 118 ------- null} - -t 15.0193 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {3.0 21.0 118 ------- null} h -t 15.0193 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {3.0 21.0 -1 ------- null} r -t 15.0209 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {3.0 21.0 119 ------- null} + -t 15.0209 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {3.0 21.0 119 ------- null} - -t 15.0209 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {3.0 21.0 119 ------- null} h -t 15.0209 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {3.0 21.0 -1 ------- null} r -t 15.0225 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {3.0 21.0 120 ------- null} + -t 15.0225 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {3.0 21.0 120 ------- null} - -t 15.0225 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {3.0 21.0 120 ------- null} h -t 15.0225 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {3.0 21.0 -1 ------- null} r -t 15.0241 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {3.0 21.0 121 ------- null} + -t 15.0241 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {3.0 21.0 121 ------- null} - -t 15.0241 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {3.0 21.0 121 ------- null} h -t 15.0241 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {3.0 21.0 -1 ------- null} r -t 15.0257 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {3.0 21.0 122 ------- null} + -t 15.0257 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {3.0 21.0 122 ------- null} - -t 15.0257 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {3.0 21.0 122 ------- null} h -t 15.0257 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {3.0 21.0 -1 ------- null} r -t 15.0273 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 234 -a 0 -x {3.0 21.0 123 ------- null} + -t 15.0273 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 234 -a 0 -x {3.0 21.0 123 ------- null} - -t 15.0273 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 234 -a 0 -x {3.0 21.0 123 ------- null} h -t 15.0273 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 234 -a 0 -x {3.0 21.0 -1 ------- null} r -t 15.0289 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {3.0 21.0 124 ------- null} + -t 15.0289 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {3.0 21.0 124 ------- null} - -t 15.0289 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {3.0 21.0 124 ------- null} h -t 15.0289 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {3.0 21.0 -1 ------- null} r -t 15.0305 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {3.0 21.0 125 ------- null} + -t 15.0305 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {3.0 21.0 125 ------- null} - -t 15.0305 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {3.0 21.0 125 ------- null} h -t 15.0305 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {3.0 21.0 -1 ------- null} r -t 15.0321 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {3.0 21.0 126 ------- null} + -t 15.0321 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {3.0 21.0 126 ------- null} - -t 15.0321 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {3.0 21.0 126 ------- null} h -t 15.0321 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {3.0 21.0 -1 ------- null} r -t 15.0337 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 238 -a 0 -x {3.0 21.0 127 ------- null} + -t 15.0337 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 238 -a 0 -x {3.0 21.0 127 ------- null} - -t 15.0337 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 238 -a 0 -x {3.0 21.0 127 ------- null} h -t 15.0337 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 238 -a 0 -x {3.0 21.0 -1 ------- null} r -t 15.0353 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {3.0 21.0 128 ------- null} + -t 15.0353 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {3.0 21.0 128 ------- null} - -t 15.0353 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {3.0 21.0 128 ------- null} h -t 15.0353 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {3.0 21.0 -1 ------- null} r -t 15.0369 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {3.0 21.0 129 ------- null} + -t 15.0369 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {3.0 21.0 129 ------- null} - -t 15.0369 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {3.0 21.0 129 ------- null} h -t 15.0369 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {3.0 21.0 -1 ------- null} r -t 15.0385 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {3.0 21.0 130 ------- null} + -t 15.0385 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {3.0 21.0 130 ------- null} - -t 15.0385 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {3.0 21.0 130 ------- null} h -t 15.0385 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {3.0 21.0 -1 ------- null} r -t 15.3597 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 222 -a 0 -x {3.0 21.0 111 ------- null} + -t 15.3597 -s 21 -d 28 -p ack -e 40 -c 0 -i 242 -a 0 -x {21.0 3.0 111 ------- null} - -t 15.3597 -s 21 -d 28 -p ack -e 40 -c 0 -i 242 -a 0 -x {21.0 3.0 111 ------- null} h -t 15.3597 -s 21 -d 28 -p ack -e 40 -c 0 -i 242 -a 0 -x {21.0 3.0 -1 ------- null} r -t 15.3613 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {3.0 21.0 112 ------- null} + -t 15.3613 -s 21 -d 28 -p ack -e 40 -c 0 -i 243 -a 0 -x {21.0 3.0 112 ------- null} - -t 15.3613 -s 21 -d 28 -p ack -e 40 -c 0 -i 243 -a 0 -x {21.0 3.0 112 ------- null} h -t 15.3613 -s 21 -d 28 -p ack -e 40 -c 0 -i 243 -a 0 -x {21.0 3.0 -1 ------- null} r -t 15.3629 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {3.0 21.0 113 ------- null} + -t 15.3629 -s 21 -d 28 -p ack -e 40 -c 0 -i 244 -a 0 -x {21.0 3.0 113 ------- null} - -t 15.3629 -s 21 -d 28 -p ack -e 40 -c 0 -i 244 -a 0 -x {21.0 3.0 113 ------- null} h -t 15.3629 -s 21 -d 28 -p ack -e 40 -c 0 -i 244 -a 0 -x {21.0 3.0 -1 ------- null} r -t 15.3645 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {3.0 21.0 114 ------- null} + -t 15.3645 -s 21 -d 28 -p ack -e 40 -c 0 -i 245 -a 0 -x {21.0 3.0 114 ------- null} - -t 15.3645 -s 21 -d 28 -p ack -e 40 -c 0 -i 245 -a 0 -x {21.0 3.0 114 ------- null} h -t 15.3645 -s 21 -d 28 -p ack -e 40 -c 0 -i 245 -a 0 -x {21.0 3.0 -1 ------- null} r -t 15.3661 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 226 -a 0 -x {3.0 21.0 115 ------- null} + -t 15.3661 -s 21 -d 28 -p ack -e 40 -c 0 -i 246 -a 0 -x {21.0 3.0 115 ------- null} - -t 15.3661 -s 21 -d 28 -p ack -e 40 -c 0 -i 246 -a 0 -x {21.0 3.0 115 ------- null} h -t 15.3661 -s 21 -d 28 -p ack -e 40 -c 0 -i 246 -a 0 -x {21.0 3.0 -1 ------- null} r -t 15.3677 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {3.0 21.0 116 ------- null} + -t 15.3677 -s 21 -d 28 -p ack -e 40 -c 0 -i 247 -a 0 -x {21.0 3.0 116 ------- null} - -t 15.3677 -s 21 -d 28 -p ack -e 40 -c 0 -i 247 -a 0 -x {21.0 3.0 116 ------- null} h -t 15.3677 -s 21 -d 28 -p ack -e 40 -c 0 -i 247 -a 0 -x {21.0 3.0 -1 ------- null} r -t 15.3693 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {3.0 21.0 117 ------- null} + -t 15.3693 -s 21 -d 28 -p ack -e 40 -c 0 -i 248 -a 0 -x {21.0 3.0 117 ------- null} - -t 15.3693 -s 21 -d 28 -p ack -e 40 -c 0 -i 248 -a 0 -x {21.0 3.0 117 ------- null} h -t 15.3693 -s 21 -d 28 -p ack -e 40 -c 0 -i 248 -a 0 -x {21.0 3.0 -1 ------- null} r -t 15.3709 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {3.0 21.0 118 ------- null} + -t 15.3709 -s 21 -d 28 -p ack -e 40 -c 0 -i 249 -a 0 -x {21.0 3.0 118 ------- null} - -t 15.3709 -s 21 -d 28 -p ack -e 40 -c 0 -i 249 -a 0 -x {21.0 3.0 118 ------- null} h -t 15.3709 -s 21 -d 28 -p ack -e 40 -c 0 -i 249 -a 0 -x {21.0 3.0 -1 ------- null} r -t 15.3725 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {3.0 21.0 119 ------- null} + -t 15.3725 -s 21 -d 28 -p ack -e 40 -c 0 -i 250 -a 0 -x {21.0 3.0 119 ------- null} - -t 15.3725 -s 21 -d 28 -p ack -e 40 -c 0 -i 250 -a 0 -x {21.0 3.0 119 ------- null} h -t 15.3725 -s 21 -d 28 -p ack -e 40 -c 0 -i 250 -a 0 -x {21.0 3.0 -1 ------- null} r -t 15.3741 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {3.0 21.0 120 ------- null} + -t 15.3741 -s 21 -d 28 -p ack -e 40 -c 0 -i 251 -a 0 -x {21.0 3.0 120 ------- null} - -t 15.3741 -s 21 -d 28 -p ack -e 40 -c 0 -i 251 -a 0 -x {21.0 3.0 120 ------- null} h -t 15.3741 -s 21 -d 28 -p ack -e 40 -c 0 -i 251 -a 0 -x {21.0 3.0 -1 ------- null} r -t 15.3757 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {3.0 21.0 121 ------- null} + -t 15.3757 -s 21 -d 28 -p ack -e 40 -c 0 -i 252 -a 0 -x {21.0 3.0 121 ------- null} - -t 15.3757 -s 21 -d 28 -p ack -e 40 -c 0 -i 252 -a 0 -x {21.0 3.0 121 ------- null} h -t 15.3757 -s 21 -d 28 -p ack -e 40 -c 0 -i 252 -a 0 -x {21.0 3.0 -1 ------- null} r -t 15.3773 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {3.0 21.0 122 ------- null} + -t 15.3773 -s 21 -d 28 -p ack -e 40 -c 0 -i 253 -a 0 -x {21.0 3.0 122 ------- null} - -t 15.3773 -s 21 -d 28 -p ack -e 40 -c 0 -i 253 -a 0 -x {21.0 3.0 122 ------- null} h -t 15.3773 -s 21 -d 28 -p ack -e 40 -c 0 -i 253 -a 0 -x {21.0 3.0 -1 ------- null} r -t 15.3789 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 234 -a 0 -x {3.0 21.0 123 ------- null} + -t 15.3789 -s 21 -d 28 -p ack -e 40 -c 0 -i 254 -a 0 -x {21.0 3.0 123 ------- null} - -t 15.3789 -s 21 -d 28 -p ack -e 40 -c 0 -i 254 -a 0 -x {21.0 3.0 123 ------- null} h -t 15.3789 -s 21 -d 28 -p ack -e 40 -c 0 -i 254 -a 0 -x {21.0 3.0 -1 ------- null} r -t 15.3805 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {3.0 21.0 124 ------- null} + -t 15.3805 -s 21 -d 28 -p ack -e 40 -c 0 -i 255 -a 0 -x {21.0 3.0 124 ------- null} - -t 15.3805 -s 21 -d 28 -p ack -e 40 -c 0 -i 255 -a 0 -x {21.0 3.0 124 ------- null} h -t 15.3805 -s 21 -d 28 -p ack -e 40 -c 0 -i 255 -a 0 -x {21.0 3.0 -1 ------- null} r -t 15.3821 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {3.0 21.0 125 ------- null} + -t 15.3821 -s 21 -d 28 -p ack -e 40 -c 0 -i 256 -a 0 -x {21.0 3.0 125 ------- null} - -t 15.3821 -s 21 -d 28 -p ack -e 40 -c 0 -i 256 -a 0 -x {21.0 3.0 125 ------- null} h -t 15.3821 -s 21 -d 28 -p ack -e 40 -c 0 -i 256 -a 0 -x {21.0 3.0 -1 ------- null} r -t 15.3837 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {3.0 21.0 126 ------- null} + -t 15.3837 -s 21 -d 28 -p ack -e 40 -c 0 -i 257 -a 0 -x {21.0 3.0 126 ------- null} - -t 15.3837 -s 21 -d 28 -p ack -e 40 -c 0 -i 257 -a 0 -x {21.0 3.0 126 ------- null} h -t 15.3837 -s 21 -d 28 -p ack -e 40 -c 0 -i 257 -a 0 -x {21.0 3.0 -1 ------- null} r -t 15.3853 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 238 -a 0 -x {3.0 21.0 127 ------- null} + -t 15.3853 -s 21 -d 28 -p ack -e 40 -c 0 -i 258 -a 0 -x {21.0 3.0 127 ------- null} - -t 15.3853 -s 21 -d 28 -p ack -e 40 -c 0 -i 258 -a 0 -x {21.0 3.0 127 ------- null} h -t 15.3853 -s 21 -d 28 -p ack -e 40 -c 0 -i 258 -a 0 -x {21.0 3.0 -1 ------- null} r -t 15.3869 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {3.0 21.0 128 ------- null} + -t 15.3869 -s 21 -d 28 -p ack -e 40 -c 0 -i 259 -a 0 -x {21.0 3.0 128 ------- null} - -t 15.3869 -s 21 -d 28 -p ack -e 40 -c 0 -i 259 -a 0 -x {21.0 3.0 128 ------- null} h -t 15.3869 -s 21 -d 28 -p ack -e 40 -c 0 -i 259 -a 0 -x {21.0 3.0 -1 ------- null} r -t 15.3885 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {3.0 21.0 129 ------- null} + -t 15.3885 -s 21 -d 28 -p ack -e 40 -c 0 -i 260 -a 0 -x {21.0 3.0 129 ------- null} - -t 15.3885 -s 21 -d 28 -p ack -e 40 -c 0 -i 260 -a 0 -x {21.0 3.0 129 ------- null} h -t 15.3885 -s 21 -d 28 -p ack -e 40 -c 0 -i 260 -a 0 -x {21.0 3.0 -1 ------- null} r -t 15.3901 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {3.0 21.0 130 ------- null} + -t 15.3901 -s 21 -d 28 -p ack -e 40 -c 0 -i 261 -a 0 -x {21.0 3.0 130 ------- null} - -t 15.3901 -s 21 -d 28 -p ack -e 40 -c 0 -i 261 -a 0 -x {21.0 3.0 130 ------- null} h -t 15.3901 -s 21 -d 28 -p ack -e 40 -c 0 -i 261 -a 0 -x {21.0 3.0 -1 ------- null} r -t 15.7098 -s 21 -d 28 -p ack -e 40 -c 0 -i 242 -a 0 -x {21.0 3.0 111 ------- null} + -t 15.7098 -s 28 -d 1 -p ack -e 40 -c 0 -i 242 -a 0 -x {21.0 3.0 111 ------- null} - -t 15.7098 -s 28 -d 1 -p ack -e 40 -c 0 -i 242 -a 0 -x {21.0 3.0 111 ------- null} h -t 15.7098 -s 28 -d 1 -p ack -e 40 -c 0 -i 242 -a 0 -x {21.0 3.0 -1 ------- null} r -t 15.7114 -s 21 -d 28 -p ack -e 40 -c 0 -i 243 -a 0 -x {21.0 3.0 112 ------- null} + -t 15.7114 -s 28 -d 1 -p ack -e 40 -c 0 -i 243 -a 0 -x {21.0 3.0 112 ------- null} - -t 15.7114 -s 28 -d 1 -p ack -e 40 -c 0 -i 243 -a 0 -x {21.0 3.0 112 ------- null} h -t 15.7114 -s 28 -d 1 -p ack -e 40 -c 0 -i 243 -a 0 -x {21.0 3.0 -1 ------- null} r -t 15.713 -s 21 -d 28 -p ack -e 40 -c 0 -i 244 -a 0 -x {21.0 3.0 113 ------- null} + -t 15.713 -s 28 -d 1 -p ack -e 40 -c 0 -i 244 -a 0 -x {21.0 3.0 113 ------- null} - -t 15.713 -s 28 -d 1 -p ack -e 40 -c 0 -i 244 -a 0 -x {21.0 3.0 113 ------- null} h -t 15.713 -s 28 -d 1 -p ack -e 40 -c 0 -i 244 -a 0 -x {21.0 3.0 -1 ------- null} r -t 15.7146 -s 21 -d 28 -p ack -e 40 -c 0 -i 245 -a 0 -x {21.0 3.0 114 ------- null} + -t 15.7146 -s 28 -d 1 -p ack -e 40 -c 0 -i 245 -a 0 -x {21.0 3.0 114 ------- null} - -t 15.7146 -s 28 -d 1 -p ack -e 40 -c 0 -i 245 -a 0 -x {21.0 3.0 114 ------- null} h -t 15.7146 -s 28 -d 1 -p ack -e 40 -c 0 -i 245 -a 0 -x {21.0 3.0 -1 ------- null} r -t 15.7162 -s 21 -d 28 -p ack -e 40 -c 0 -i 246 -a 0 -x {21.0 3.0 115 ------- null} + -t 15.7162 -s 28 -d 1 -p ack -e 40 -c 0 -i 246 -a 0 -x {21.0 3.0 115 ------- null} - -t 15.7162 -s 28 -d 1 -p ack -e 40 -c 0 -i 246 -a 0 -x {21.0 3.0 115 ------- null} h -t 15.7162 -s 28 -d 1 -p ack -e 40 -c 0 -i 246 -a 0 -x {21.0 3.0 -1 ------- null} r -t 15.7178 -s 21 -d 28 -p ack -e 40 -c 0 -i 247 -a 0 -x {21.0 3.0 116 ------- null} + -t 15.7178 -s 28 -d 1 -p ack -e 40 -c 0 -i 247 -a 0 -x {21.0 3.0 116 ------- null} - -t 15.7178 -s 28 -d 1 -p ack -e 40 -c 0 -i 247 -a 0 -x {21.0 3.0 116 ------- null} h -t 15.7178 -s 28 -d 1 -p ack -e 40 -c 0 -i 247 -a 0 -x {21.0 3.0 -1 ------- null} r -t 15.7194 -s 21 -d 28 -p ack -e 40 -c 0 -i 248 -a 0 -x {21.0 3.0 117 ------- null} + -t 15.7194 -s 28 -d 1 -p ack -e 40 -c 0 -i 248 -a 0 -x {21.0 3.0 117 ------- null} - -t 15.7194 -s 28 -d 1 -p ack -e 40 -c 0 -i 248 -a 0 -x {21.0 3.0 117 ------- null} h -t 15.7194 -s 28 -d 1 -p ack -e 40 -c 0 -i 248 -a 0 -x {21.0 3.0 -1 ------- null} r -t 15.721 -s 21 -d 28 -p ack -e 40 -c 0 -i 249 -a 0 -x {21.0 3.0 118 ------- null} + -t 15.721 -s 28 -d 1 -p ack -e 40 -c 0 -i 249 -a 0 -x {21.0 3.0 118 ------- null} - -t 15.721 -s 28 -d 1 -p ack -e 40 -c 0 -i 249 -a 0 -x {21.0 3.0 118 ------- null} h -t 15.721 -s 28 -d 1 -p ack -e 40 -c 0 -i 249 -a 0 -x {21.0 3.0 -1 ------- null} r -t 15.7226 -s 21 -d 28 -p ack -e 40 -c 0 -i 250 -a 0 -x {21.0 3.0 119 ------- null} + -t 15.7226 -s 28 -d 1 -p ack -e 40 -c 0 -i 250 -a 0 -x {21.0 3.0 119 ------- null} - -t 15.7226 -s 28 -d 1 -p ack -e 40 -c 0 -i 250 -a 0 -x {21.0 3.0 119 ------- null} h -t 15.7226 -s 28 -d 1 -p ack -e 40 -c 0 -i 250 -a 0 -x {21.0 3.0 -1 ------- null} r -t 15.7242 -s 21 -d 28 -p ack -e 40 -c 0 -i 251 -a 0 -x {21.0 3.0 120 ------- null} + -t 15.7242 -s 28 -d 1 -p ack -e 40 -c 0 -i 251 -a 0 -x {21.0 3.0 120 ------- null} - -t 15.7242 -s 28 -d 1 -p ack -e 40 -c 0 -i 251 -a 0 -x {21.0 3.0 120 ------- null} h -t 15.7242 -s 28 -d 1 -p ack -e 40 -c 0 -i 251 -a 0 -x {21.0 3.0 -1 ------- null} r -t 15.7258 -s 21 -d 28 -p ack -e 40 -c 0 -i 252 -a 0 -x {21.0 3.0 121 ------- null} + -t 15.7258 -s 28 -d 1 -p ack -e 40 -c 0 -i 252 -a 0 -x {21.0 3.0 121 ------- null} - -t 15.7258 -s 28 -d 1 -p ack -e 40 -c 0 -i 252 -a 0 -x {21.0 3.0 121 ------- null} h -t 15.7258 -s 28 -d 1 -p ack -e 40 -c 0 -i 252 -a 0 -x {21.0 3.0 -1 ------- null} r -t 15.7274 -s 21 -d 28 -p ack -e 40 -c 0 -i 253 -a 0 -x {21.0 3.0 122 ------- null} + -t 15.7274 -s 28 -d 1 -p ack -e 40 -c 0 -i 253 -a 0 -x {21.0 3.0 122 ------- null} - -t 15.7274 -s 28 -d 1 -p ack -e 40 -c 0 -i 253 -a 0 -x {21.0 3.0 122 ------- null} h -t 15.7274 -s 28 -d 1 -p ack -e 40 -c 0 -i 253 -a 0 -x {21.0 3.0 -1 ------- null} r -t 15.729 -s 21 -d 28 -p ack -e 40 -c 0 -i 254 -a 0 -x {21.0 3.0 123 ------- null} + -t 15.729 -s 28 -d 1 -p ack -e 40 -c 0 -i 254 -a 0 -x {21.0 3.0 123 ------- null} - -t 15.729 -s 28 -d 1 -p ack -e 40 -c 0 -i 254 -a 0 -x {21.0 3.0 123 ------- null} h -t 15.729 -s 28 -d 1 -p ack -e 40 -c 0 -i 254 -a 0 -x {21.0 3.0 -1 ------- null} r -t 15.7306 -s 21 -d 28 -p ack -e 40 -c 0 -i 255 -a 0 -x {21.0 3.0 124 ------- null} + -t 15.7306 -s 28 -d 1 -p ack -e 40 -c 0 -i 255 -a 0 -x {21.0 3.0 124 ------- null} - -t 15.7306 -s 28 -d 1 -p ack -e 40 -c 0 -i 255 -a 0 -x {21.0 3.0 124 ------- null} h -t 15.7306 -s 28 -d 1 -p ack -e 40 -c 0 -i 255 -a 0 -x {21.0 3.0 -1 ------- null} r -t 15.7322 -s 21 -d 28 -p ack -e 40 -c 0 -i 256 -a 0 -x {21.0 3.0 125 ------- null} + -t 15.7322 -s 28 -d 1 -p ack -e 40 -c 0 -i 256 -a 0 -x {21.0 3.0 125 ------- null} - -t 15.7322 -s 28 -d 1 -p ack -e 40 -c 0 -i 256 -a 0 -x {21.0 3.0 125 ------- null} h -t 15.7322 -s 28 -d 1 -p ack -e 40 -c 0 -i 256 -a 0 -x {21.0 3.0 -1 ------- null} r -t 15.7338 -s 21 -d 28 -p ack -e 40 -c 0 -i 257 -a 0 -x {21.0 3.0 126 ------- null} + -t 15.7338 -s 28 -d 1 -p ack -e 40 -c 0 -i 257 -a 0 -x {21.0 3.0 126 ------- null} - -t 15.7338 -s 28 -d 1 -p ack -e 40 -c 0 -i 257 -a 0 -x {21.0 3.0 126 ------- null} h -t 15.7338 -s 28 -d 1 -p ack -e 40 -c 0 -i 257 -a 0 -x {21.0 3.0 -1 ------- null} r -t 15.7354 -s 21 -d 28 -p ack -e 40 -c 0 -i 258 -a 0 -x {21.0 3.0 127 ------- null} + -t 15.7354 -s 28 -d 1 -p ack -e 40 -c 0 -i 258 -a 0 -x {21.0 3.0 127 ------- null} - -t 15.7354 -s 28 -d 1 -p ack -e 40 -c 0 -i 258 -a 0 -x {21.0 3.0 127 ------- null} h -t 15.7354 -s 28 -d 1 -p ack -e 40 -c 0 -i 258 -a 0 -x {21.0 3.0 -1 ------- null} r -t 15.737 -s 21 -d 28 -p ack -e 40 -c 0 -i 259 -a 0 -x {21.0 3.0 128 ------- null} + -t 15.737 -s 28 -d 1 -p ack -e 40 -c 0 -i 259 -a 0 -x {21.0 3.0 128 ------- null} - -t 15.737 -s 28 -d 1 -p ack -e 40 -c 0 -i 259 -a 0 -x {21.0 3.0 128 ------- null} h -t 15.737 -s 28 -d 1 -p ack -e 40 -c 0 -i 259 -a 0 -x {21.0 3.0 -1 ------- null} r -t 15.7386 -s 21 -d 28 -p ack -e 40 -c 0 -i 260 -a 0 -x {21.0 3.0 129 ------- null} + -t 15.7386 -s 28 -d 1 -p ack -e 40 -c 0 -i 260 -a 0 -x {21.0 3.0 129 ------- null} - -t 15.7386 -s 28 -d 1 -p ack -e 40 -c 0 -i 260 -a 0 -x {21.0 3.0 129 ------- null} h -t 15.7386 -s 28 -d 1 -p ack -e 40 -c 0 -i 260 -a 0 -x {21.0 3.0 -1 ------- null} r -t 15.7402 -s 21 -d 28 -p ack -e 40 -c 0 -i 261 -a 0 -x {21.0 3.0 130 ------- null} + -t 15.7402 -s 28 -d 1 -p ack -e 40 -c 0 -i 261 -a 0 -x {21.0 3.0 130 ------- null} - -t 15.7402 -s 28 -d 1 -p ack -e 40 -c 0 -i 261 -a 0 -x {21.0 3.0 130 ------- null} h -t 15.7402 -s 28 -d 1 -p ack -e 40 -c 0 -i 261 -a 0 -x {21.0 3.0 -1 ------- null} r -t 16.0099 -s 28 -d 1 -p ack -e 40 -c 0 -i 242 -a 0 -x {21.0 3.0 111 ------- null} + -t 16.0099 -s 1 -d 3 -p ack -e 40 -c 0 -i 242 -a 0 -x {21.0 3.0 111 ------- null} - -t 16.0099 -s 1 -d 3 -p ack -e 40 -c 0 -i 242 -a 0 -x {21.0 3.0 111 ------- null} h -t 16.0099 -s 1 -d 3 -p ack -e 40 -c 0 -i 242 -a 0 -x {21.0 3.0 -1 ------- null} r -t 16.0115 -s 28 -d 1 -p ack -e 40 -c 0 -i 243 -a 0 -x {21.0 3.0 112 ------- null} + -t 16.0115 -s 1 -d 3 -p ack -e 40 -c 0 -i 243 -a 0 -x {21.0 3.0 112 ------- null} - -t 16.0115 -s 1 -d 3 -p ack -e 40 -c 0 -i 243 -a 0 -x {21.0 3.0 112 ------- null} h -t 16.0115 -s 1 -d 3 -p ack -e 40 -c 0 -i 243 -a 0 -x {21.0 3.0 -1 ------- null} r -t 16.0131 -s 28 -d 1 -p ack -e 40 -c 0 -i 244 -a 0 -x {21.0 3.0 113 ------- null} + -t 16.0131 -s 1 -d 3 -p ack -e 40 -c 0 -i 244 -a 0 -x {21.0 3.0 113 ------- null} - -t 16.0131 -s 1 -d 3 -p ack -e 40 -c 0 -i 244 -a 0 -x {21.0 3.0 113 ------- null} h -t 16.0131 -s 1 -d 3 -p ack -e 40 -c 0 -i 244 -a 0 -x {21.0 3.0 -1 ------- null} r -t 16.0147 -s 28 -d 1 -p ack -e 40 -c 0 -i 245 -a 0 -x {21.0 3.0 114 ------- null} + -t 16.0147 -s 1 -d 3 -p ack -e 40 -c 0 -i 245 -a 0 -x {21.0 3.0 114 ------- null} - -t 16.0147 -s 1 -d 3 -p ack -e 40 -c 0 -i 245 -a 0 -x {21.0 3.0 114 ------- null} h -t 16.0147 -s 1 -d 3 -p ack -e 40 -c 0 -i 245 -a 0 -x {21.0 3.0 -1 ------- null} r -t 16.0163 -s 28 -d 1 -p ack -e 40 -c 0 -i 246 -a 0 -x {21.0 3.0 115 ------- null} + -t 16.0163 -s 1 -d 3 -p ack -e 40 -c 0 -i 246 -a 0 -x {21.0 3.0 115 ------- null} - -t 16.0163 -s 1 -d 3 -p ack -e 40 -c 0 -i 246 -a 0 -x {21.0 3.0 115 ------- null} h -t 16.0163 -s 1 -d 3 -p ack -e 40 -c 0 -i 246 -a 0 -x {21.0 3.0 -1 ------- null} r -t 16.0179 -s 28 -d 1 -p ack -e 40 -c 0 -i 247 -a 0 -x {21.0 3.0 116 ------- null} + -t 16.0179 -s 1 -d 3 -p ack -e 40 -c 0 -i 247 -a 0 -x {21.0 3.0 116 ------- null} - -t 16.0179 -s 1 -d 3 -p ack -e 40 -c 0 -i 247 -a 0 -x {21.0 3.0 116 ------- null} h -t 16.0179 -s 1 -d 3 -p ack -e 40 -c 0 -i 247 -a 0 -x {21.0 3.0 -1 ------- null} r -t 16.0195 -s 28 -d 1 -p ack -e 40 -c 0 -i 248 -a 0 -x {21.0 3.0 117 ------- null} + -t 16.0195 -s 1 -d 3 -p ack -e 40 -c 0 -i 248 -a 0 -x {21.0 3.0 117 ------- null} - -t 16.0195 -s 1 -d 3 -p ack -e 40 -c 0 -i 248 -a 0 -x {21.0 3.0 117 ------- null} h -t 16.0195 -s 1 -d 3 -p ack -e 40 -c 0 -i 248 -a 0 -x {21.0 3.0 -1 ------- null} r -t 16.0211 -s 28 -d 1 -p ack -e 40 -c 0 -i 249 -a 0 -x {21.0 3.0 118 ------- null} + -t 16.0211 -s 1 -d 3 -p ack -e 40 -c 0 -i 249 -a 0 -x {21.0 3.0 118 ------- null} - -t 16.0211 -s 1 -d 3 -p ack -e 40 -c 0 -i 249 -a 0 -x {21.0 3.0 118 ------- null} h -t 16.0211 -s 1 -d 3 -p ack -e 40 -c 0 -i 249 -a 0 -x {21.0 3.0 -1 ------- null} r -t 16.0227 -s 28 -d 1 -p ack -e 40 -c 0 -i 250 -a 0 -x {21.0 3.0 119 ------- null} + -t 16.0227 -s 1 -d 3 -p ack -e 40 -c 0 -i 250 -a 0 -x {21.0 3.0 119 ------- null} - -t 16.0227 -s 1 -d 3 -p ack -e 40 -c 0 -i 250 -a 0 -x {21.0 3.0 119 ------- null} h -t 16.0227 -s 1 -d 3 -p ack -e 40 -c 0 -i 250 -a 0 -x {21.0 3.0 -1 ------- null} r -t 16.0243 -s 28 -d 1 -p ack -e 40 -c 0 -i 251 -a 0 -x {21.0 3.0 120 ------- null} + -t 16.0243 -s 1 -d 3 -p ack -e 40 -c 0 -i 251 -a 0 -x {21.0 3.0 120 ------- null} - -t 16.0243 -s 1 -d 3 -p ack -e 40 -c 0 -i 251 -a 0 -x {21.0 3.0 120 ------- null} h -t 16.0243 -s 1 -d 3 -p ack -e 40 -c 0 -i 251 -a 0 -x {21.0 3.0 -1 ------- null} r -t 16.0259 -s 28 -d 1 -p ack -e 40 -c 0 -i 252 -a 0 -x {21.0 3.0 121 ------- null} + -t 16.0259 -s 1 -d 3 -p ack -e 40 -c 0 -i 252 -a 0 -x {21.0 3.0 121 ------- null} - -t 16.0259 -s 1 -d 3 -p ack -e 40 -c 0 -i 252 -a 0 -x {21.0 3.0 121 ------- null} h -t 16.0259 -s 1 -d 3 -p ack -e 40 -c 0 -i 252 -a 0 -x {21.0 3.0 -1 ------- null} r -t 16.0275 -s 28 -d 1 -p ack -e 40 -c 0 -i 253 -a 0 -x {21.0 3.0 122 ------- null} + -t 16.0275 -s 1 -d 3 -p ack -e 40 -c 0 -i 253 -a 0 -x {21.0 3.0 122 ------- null} - -t 16.0275 -s 1 -d 3 -p ack -e 40 -c 0 -i 253 -a 0 -x {21.0 3.0 122 ------- null} h -t 16.0275 -s 1 -d 3 -p ack -e 40 -c 0 -i 253 -a 0 -x {21.0 3.0 -1 ------- null} r -t 16.0291 -s 28 -d 1 -p ack -e 40 -c 0 -i 254 -a 0 -x {21.0 3.0 123 ------- null} + -t 16.0291 -s 1 -d 3 -p ack -e 40 -c 0 -i 254 -a 0 -x {21.0 3.0 123 ------- null} - -t 16.0291 -s 1 -d 3 -p ack -e 40 -c 0 -i 254 -a 0 -x {21.0 3.0 123 ------- null} h -t 16.0291 -s 1 -d 3 -p ack -e 40 -c 0 -i 254 -a 0 -x {21.0 3.0 -1 ------- null} r -t 16.0307 -s 28 -d 1 -p ack -e 40 -c 0 -i 255 -a 0 -x {21.0 3.0 124 ------- null} + -t 16.0307 -s 1 -d 3 -p ack -e 40 -c 0 -i 255 -a 0 -x {21.0 3.0 124 ------- null} - -t 16.0307 -s 1 -d 3 -p ack -e 40 -c 0 -i 255 -a 0 -x {21.0 3.0 124 ------- null} h -t 16.0307 -s 1 -d 3 -p ack -e 40 -c 0 -i 255 -a 0 -x {21.0 3.0 -1 ------- null} r -t 16.0323 -s 28 -d 1 -p ack -e 40 -c 0 -i 256 -a 0 -x {21.0 3.0 125 ------- null} + -t 16.0323 -s 1 -d 3 -p ack -e 40 -c 0 -i 256 -a 0 -x {21.0 3.0 125 ------- null} - -t 16.0323 -s 1 -d 3 -p ack -e 40 -c 0 -i 256 -a 0 -x {21.0 3.0 125 ------- null} h -t 16.0323 -s 1 -d 3 -p ack -e 40 -c 0 -i 256 -a 0 -x {21.0 3.0 -1 ------- null} r -t 16.0339 -s 28 -d 1 -p ack -e 40 -c 0 -i 257 -a 0 -x {21.0 3.0 126 ------- null} + -t 16.0339 -s 1 -d 3 -p ack -e 40 -c 0 -i 257 -a 0 -x {21.0 3.0 126 ------- null} - -t 16.0339 -s 1 -d 3 -p ack -e 40 -c 0 -i 257 -a 0 -x {21.0 3.0 126 ------- null} h -t 16.0339 -s 1 -d 3 -p ack -e 40 -c 0 -i 257 -a 0 -x {21.0 3.0 -1 ------- null} r -t 16.0355 -s 28 -d 1 -p ack -e 40 -c 0 -i 258 -a 0 -x {21.0 3.0 127 ------- null} + -t 16.0355 -s 1 -d 3 -p ack -e 40 -c 0 -i 258 -a 0 -x {21.0 3.0 127 ------- null} - -t 16.0355 -s 1 -d 3 -p ack -e 40 -c 0 -i 258 -a 0 -x {21.0 3.0 127 ------- null} h -t 16.0355 -s 1 -d 3 -p ack -e 40 -c 0 -i 258 -a 0 -x {21.0 3.0 -1 ------- null} r -t 16.0371 -s 28 -d 1 -p ack -e 40 -c 0 -i 259 -a 0 -x {21.0 3.0 128 ------- null} + -t 16.0371 -s 1 -d 3 -p ack -e 40 -c 0 -i 259 -a 0 -x {21.0 3.0 128 ------- null} - -t 16.0371 -s 1 -d 3 -p ack -e 40 -c 0 -i 259 -a 0 -x {21.0 3.0 128 ------- null} h -t 16.0371 -s 1 -d 3 -p ack -e 40 -c 0 -i 259 -a 0 -x {21.0 3.0 -1 ------- null} r -t 16.0387 -s 28 -d 1 -p ack -e 40 -c 0 -i 260 -a 0 -x {21.0 3.0 129 ------- null} + -t 16.0387 -s 1 -d 3 -p ack -e 40 -c 0 -i 260 -a 0 -x {21.0 3.0 129 ------- null} - -t 16.0387 -s 1 -d 3 -p ack -e 40 -c 0 -i 260 -a 0 -x {21.0 3.0 129 ------- null} h -t 16.0387 -s 1 -d 3 -p ack -e 40 -c 0 -i 260 -a 0 -x {21.0 3.0 -1 ------- null} r -t 16.0403 -s 28 -d 1 -p ack -e 40 -c 0 -i 261 -a 0 -x {21.0 3.0 130 ------- null} + -t 16.0403 -s 1 -d 3 -p ack -e 40 -c 0 -i 261 -a 0 -x {21.0 3.0 130 ------- null} - -t 16.0403 -s 1 -d 3 -p ack -e 40 -c 0 -i 261 -a 0 -x {21.0 3.0 130 ------- null} h -t 16.0403 -s 1 -d 3 -p ack -e 40 -c 0 -i 261 -a 0 -x {21.0 3.0 -1 ------- null} r -t 16.1499 -s 1 -d 3 -p ack -e 40 -c 0 -i 242 -a 0 -x {21.0 3.0 111 ------- null} + -t 16.1499 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 262 -a 0 -x {3.0 21.0 131 ------- null} - -t 16.1499 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 262 -a 0 -x {3.0 21.0 131 ------- null} h -t 16.1499 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 262 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.1515 -s 1 -d 3 -p ack -e 40 -c 0 -i 243 -a 0 -x {21.0 3.0 112 ------- null} + -t 16.1515 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {3.0 21.0 132 ------- null} - -t 16.1515 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {3.0 21.0 132 ------- null} h -t 16.1515 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.1531 -s 1 -d 3 -p ack -e 40 -c 0 -i 244 -a 0 -x {21.0 3.0 113 ------- null} + -t 16.1531 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 264 -a 0 -x {3.0 21.0 133 ------- null} - -t 16.1531 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 264 -a 0 -x {3.0 21.0 133 ------- null} h -t 16.1531 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 264 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.1547 -s 1 -d 3 -p ack -e 40 -c 0 -i 245 -a 0 -x {21.0 3.0 114 ------- null} + -t 16.1547 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {3.0 21.0 134 ------- null} - -t 16.1547 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {3.0 21.0 134 ------- null} h -t 16.1547 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.1563 -s 1 -d 3 -p ack -e 40 -c 0 -i 246 -a 0 -x {21.0 3.0 115 ------- null} + -t 16.1563 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 266 -a 0 -x {3.0 21.0 135 ------- null} - -t 16.1563 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 266 -a 0 -x {3.0 21.0 135 ------- null} h -t 16.1563 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 266 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.1579 -s 1 -d 3 -p ack -e 40 -c 0 -i 247 -a 0 -x {21.0 3.0 116 ------- null} + -t 16.1579 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {3.0 21.0 136 ------- null} - -t 16.1579 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {3.0 21.0 136 ------- null} h -t 16.1579 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.1595 -s 1 -d 3 -p ack -e 40 -c 0 -i 248 -a 0 -x {21.0 3.0 117 ------- null} + -t 16.1595 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 268 -a 0 -x {3.0 21.0 137 ------- null} - -t 16.1595 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 268 -a 0 -x {3.0 21.0 137 ------- null} h -t 16.1595 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 268 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.1611 -s 1 -d 3 -p ack -e 40 -c 0 -i 249 -a 0 -x {21.0 3.0 118 ------- null} + -t 16.1611 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {3.0 21.0 138 ------- null} - -t 16.1611 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {3.0 21.0 138 ------- null} h -t 16.1611 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.1627 -s 1 -d 3 -p ack -e 40 -c 0 -i 250 -a 0 -x {21.0 3.0 119 ------- null} + -t 16.1627 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 270 -a 0 -x {3.0 21.0 139 ------- null} - -t 16.1627 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 270 -a 0 -x {3.0 21.0 139 ------- null} h -t 16.1627 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 270 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.1643 -s 1 -d 3 -p ack -e 40 -c 0 -i 251 -a 0 -x {21.0 3.0 120 ------- null} + -t 16.1643 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {3.0 21.0 140 ------- null} - -t 16.1643 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {3.0 21.0 140 ------- null} h -t 16.1643 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.1659 -s 1 -d 3 -p ack -e 40 -c 0 -i 252 -a 0 -x {21.0 3.0 121 ------- null} + -t 16.1659 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {3.0 21.0 141 ------- null} - -t 16.1659 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {3.0 21.0 141 ------- null} h -t 16.1659 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.1675 -s 1 -d 3 -p ack -e 40 -c 0 -i 253 -a 0 -x {21.0 3.0 122 ------- null} + -t 16.1675 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {3.0 21.0 142 ------- null} - -t 16.1675 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {3.0 21.0 142 ------- null} h -t 16.1675 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.1691 -s 1 -d 3 -p ack -e 40 -c 0 -i 254 -a 0 -x {21.0 3.0 123 ------- null} + -t 16.1691 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {3.0 21.0 143 ------- null} - -t 16.1691 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {3.0 21.0 143 ------- null} h -t 16.1691 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.1707 -s 1 -d 3 -p ack -e 40 -c 0 -i 255 -a 0 -x {21.0 3.0 124 ------- null} + -t 16.1707 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {3.0 21.0 144 ------- null} - -t 16.1707 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {3.0 21.0 144 ------- null} h -t 16.1707 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.1723 -s 1 -d 3 -p ack -e 40 -c 0 -i 256 -a 0 -x {21.0 3.0 125 ------- null} + -t 16.1723 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 276 -a 0 -x {3.0 21.0 145 ------- null} - -t 16.1723 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 276 -a 0 -x {3.0 21.0 145 ------- null} h -t 16.1723 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 276 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.1739 -s 1 -d 3 -p ack -e 40 -c 0 -i 257 -a 0 -x {21.0 3.0 126 ------- null} + -t 16.1739 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {3.0 21.0 146 ------- null} - -t 16.1739 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {3.0 21.0 146 ------- null} h -t 16.1739 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.1755 -s 1 -d 3 -p ack -e 40 -c 0 -i 258 -a 0 -x {21.0 3.0 127 ------- null} + -t 16.1755 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 278 -a 0 -x {3.0 21.0 147 ------- null} - -t 16.1755 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 278 -a 0 -x {3.0 21.0 147 ------- null} h -t 16.1755 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 278 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.1771 -s 1 -d 3 -p ack -e 40 -c 0 -i 259 -a 0 -x {21.0 3.0 128 ------- null} + -t 16.1771 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {3.0 21.0 148 ------- null} - -t 16.1771 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {3.0 21.0 148 ------- null} h -t 16.1771 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.1787 -s 1 -d 3 -p ack -e 40 -c 0 -i 260 -a 0 -x {21.0 3.0 129 ------- null} + -t 16.1787 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 280 -a 0 -x {3.0 21.0 149 ------- null} - -t 16.1787 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 280 -a 0 -x {3.0 21.0 149 ------- null} h -t 16.1787 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 280 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.1803 -s 1 -d 3 -p ack -e 40 -c 0 -i 261 -a 0 -x {21.0 3.0 130 ------- null} + -t 16.1803 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {3.0 21.0 150 ------- null} - -t 16.1803 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {3.0 21.0 150 ------- null} h -t 16.1803 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.2915 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 262 -a 0 -x {3.0 21.0 131 ------- null} + -t 16.2915 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 262 -a 0 -x {3.0 21.0 131 ------- null} - -t 16.2915 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 262 -a 0 -x {3.0 21.0 131 ------- null} h -t 16.2915 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 262 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.2931 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {3.0 21.0 132 ------- null} + -t 16.2931 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {3.0 21.0 132 ------- null} - -t 16.2931 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {3.0 21.0 132 ------- null} h -t 16.2931 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.2947 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 264 -a 0 -x {3.0 21.0 133 ------- null} + -t 16.2947 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 264 -a 0 -x {3.0 21.0 133 ------- null} - -t 16.2947 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 264 -a 0 -x {3.0 21.0 133 ------- null} h -t 16.2947 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 264 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.2963 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {3.0 21.0 134 ------- null} + -t 16.2963 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {3.0 21.0 134 ------- null} - -t 16.2963 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {3.0 21.0 134 ------- null} h -t 16.2963 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.2979 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 266 -a 0 -x {3.0 21.0 135 ------- null} + -t 16.2979 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 266 -a 0 -x {3.0 21.0 135 ------- null} - -t 16.2979 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 266 -a 0 -x {3.0 21.0 135 ------- null} h -t 16.2979 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 266 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.2995 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {3.0 21.0 136 ------- null} + -t 16.2995 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {3.0 21.0 136 ------- null} - -t 16.2995 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {3.0 21.0 136 ------- null} h -t 16.2995 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.3011 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 268 -a 0 -x {3.0 21.0 137 ------- null} + -t 16.3011 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 268 -a 0 -x {3.0 21.0 137 ------- null} - -t 16.3011 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 268 -a 0 -x {3.0 21.0 137 ------- null} h -t 16.3011 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 268 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.3027 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {3.0 21.0 138 ------- null} + -t 16.3027 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {3.0 21.0 138 ------- null} - -t 16.3027 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {3.0 21.0 138 ------- null} h -t 16.3027 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.3043 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 270 -a 0 -x {3.0 21.0 139 ------- null} + -t 16.3043 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 270 -a 0 -x {3.0 21.0 139 ------- null} - -t 16.3043 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 270 -a 0 -x {3.0 21.0 139 ------- null} h -t 16.3043 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 270 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.3059 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {3.0 21.0 140 ------- null} + -t 16.3059 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {3.0 21.0 140 ------- null} - -t 16.3059 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {3.0 21.0 140 ------- null} h -t 16.3059 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.3075 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {3.0 21.0 141 ------- null} + -t 16.3075 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {3.0 21.0 141 ------- null} - -t 16.3075 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {3.0 21.0 141 ------- null} h -t 16.3075 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.3091 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {3.0 21.0 142 ------- null} + -t 16.3091 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {3.0 21.0 142 ------- null} - -t 16.3091 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {3.0 21.0 142 ------- null} h -t 16.3091 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.3107 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {3.0 21.0 143 ------- null} + -t 16.3107 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {3.0 21.0 143 ------- null} - -t 16.3107 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {3.0 21.0 143 ------- null} h -t 16.3107 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.3123 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {3.0 21.0 144 ------- null} + -t 16.3123 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {3.0 21.0 144 ------- null} - -t 16.3123 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {3.0 21.0 144 ------- null} h -t 16.3123 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.3139 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 276 -a 0 -x {3.0 21.0 145 ------- null} + -t 16.3139 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 276 -a 0 -x {3.0 21.0 145 ------- null} - -t 16.3139 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 276 -a 0 -x {3.0 21.0 145 ------- null} h -t 16.3139 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 276 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.3155 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {3.0 21.0 146 ------- null} + -t 16.3155 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {3.0 21.0 146 ------- null} - -t 16.3155 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {3.0 21.0 146 ------- null} h -t 16.3155 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.3171 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 278 -a 0 -x {3.0 21.0 147 ------- null} + -t 16.3171 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 278 -a 0 -x {3.0 21.0 147 ------- null} - -t 16.3171 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 278 -a 0 -x {3.0 21.0 147 ------- null} h -t 16.3171 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 278 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.3187 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {3.0 21.0 148 ------- null} + -t 16.3187 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {3.0 21.0 148 ------- null} - -t 16.3187 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {3.0 21.0 148 ------- null} h -t 16.3187 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.3203 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 280 -a 0 -x {3.0 21.0 149 ------- null} + -t 16.3203 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 280 -a 0 -x {3.0 21.0 149 ------- null} - -t 16.3203 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 280 -a 0 -x {3.0 21.0 149 ------- null} h -t 16.3203 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 280 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.3219 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {3.0 21.0 150 ------- null} + -t 16.3219 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {3.0 21.0 150 ------- null} - -t 16.3219 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {3.0 21.0 150 ------- null} h -t 16.3219 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.5931 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 262 -a 0 -x {3.0 21.0 131 ------- null} + -t 16.5931 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 262 -a 0 -x {3.0 21.0 131 ------- null} - -t 16.5931 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 262 -a 0 -x {3.0 21.0 131 ------- null} h -t 16.5931 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 262 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.5947 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {3.0 21.0 132 ------- null} + -t 16.5947 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {3.0 21.0 132 ------- null} - -t 16.5947 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {3.0 21.0 132 ------- null} h -t 16.5947 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.5963 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 264 -a 0 -x {3.0 21.0 133 ------- null} + -t 16.5963 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 264 -a 0 -x {3.0 21.0 133 ------- null} - -t 16.5963 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 264 -a 0 -x {3.0 21.0 133 ------- null} h -t 16.5963 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 264 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.5979 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {3.0 21.0 134 ------- null} + -t 16.5979 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {3.0 21.0 134 ------- null} - -t 16.5979 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {3.0 21.0 134 ------- null} h -t 16.5979 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.5995 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 266 -a 0 -x {3.0 21.0 135 ------- null} + -t 16.5995 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 266 -a 0 -x {3.0 21.0 135 ------- null} - -t 16.5995 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 266 -a 0 -x {3.0 21.0 135 ------- null} h -t 16.5995 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 266 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.6011 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {3.0 21.0 136 ------- null} + -t 16.6011 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {3.0 21.0 136 ------- null} - -t 16.6011 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {3.0 21.0 136 ------- null} h -t 16.6011 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.6027 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 268 -a 0 -x {3.0 21.0 137 ------- null} + -t 16.6027 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 268 -a 0 -x {3.0 21.0 137 ------- null} - -t 16.6027 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 268 -a 0 -x {3.0 21.0 137 ------- null} h -t 16.6027 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 268 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.6043 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {3.0 21.0 138 ------- null} + -t 16.6043 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {3.0 21.0 138 ------- null} - -t 16.6043 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {3.0 21.0 138 ------- null} h -t 16.6043 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.6059 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 270 -a 0 -x {3.0 21.0 139 ------- null} + -t 16.6059 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 270 -a 0 -x {3.0 21.0 139 ------- null} - -t 16.6059 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 270 -a 0 -x {3.0 21.0 139 ------- null} h -t 16.6059 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 270 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.6075 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {3.0 21.0 140 ------- null} + -t 16.6075 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {3.0 21.0 140 ------- null} - -t 16.6075 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {3.0 21.0 140 ------- null} h -t 16.6075 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.6091 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {3.0 21.0 141 ------- null} + -t 16.6091 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {3.0 21.0 141 ------- null} - -t 16.6091 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {3.0 21.0 141 ------- null} h -t 16.6091 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.6107 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {3.0 21.0 142 ------- null} + -t 16.6107 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {3.0 21.0 142 ------- null} - -t 16.6107 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {3.0 21.0 142 ------- null} h -t 16.6107 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.6123 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {3.0 21.0 143 ------- null} + -t 16.6123 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {3.0 21.0 143 ------- null} - -t 16.6123 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {3.0 21.0 143 ------- null} h -t 16.6123 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.6139 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {3.0 21.0 144 ------- null} + -t 16.6139 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {3.0 21.0 144 ------- null} - -t 16.6139 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {3.0 21.0 144 ------- null} h -t 16.6139 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.6155 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 276 -a 0 -x {3.0 21.0 145 ------- null} + -t 16.6155 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 276 -a 0 -x {3.0 21.0 145 ------- null} - -t 16.6155 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 276 -a 0 -x {3.0 21.0 145 ------- null} h -t 16.6155 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 276 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.6171 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {3.0 21.0 146 ------- null} + -t 16.6171 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {3.0 21.0 146 ------- null} - -t 16.6171 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {3.0 21.0 146 ------- null} h -t 16.6171 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.6187 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 278 -a 0 -x {3.0 21.0 147 ------- null} + -t 16.6187 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 278 -a 0 -x {3.0 21.0 147 ------- null} - -t 16.6187 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 278 -a 0 -x {3.0 21.0 147 ------- null} h -t 16.6187 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 278 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.6203 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {3.0 21.0 148 ------- null} + -t 16.6203 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {3.0 21.0 148 ------- null} - -t 16.6203 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {3.0 21.0 148 ------- null} h -t 16.6203 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.6219 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 280 -a 0 -x {3.0 21.0 149 ------- null} + -t 16.6219 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 280 -a 0 -x {3.0 21.0 149 ------- null} - -t 16.6219 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 280 -a 0 -x {3.0 21.0 149 ------- null} h -t 16.6219 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 280 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.6235 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {3.0 21.0 150 ------- null} + -t 16.6235 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {3.0 21.0 150 ------- null} - -t 16.6235 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {3.0 21.0 150 ------- null} h -t 16.6235 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.9447 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 262 -a 0 -x {3.0 21.0 131 ------- null} + -t 16.9447 -s 21 -d 28 -p ack -e 40 -c 0 -i 282 -a 0 -x {21.0 3.0 131 ------- null} - -t 16.9447 -s 21 -d 28 -p ack -e 40 -c 0 -i 282 -a 0 -x {21.0 3.0 131 ------- null} h -t 16.9447 -s 21 -d 28 -p ack -e 40 -c 0 -i 282 -a 0 -x {21.0 3.0 -1 ------- null} r -t 16.9463 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {3.0 21.0 132 ------- null} + -t 16.9463 -s 21 -d 28 -p ack -e 40 -c 0 -i 283 -a 0 -x {21.0 3.0 132 ------- null} - -t 16.9463 -s 21 -d 28 -p ack -e 40 -c 0 -i 283 -a 0 -x {21.0 3.0 132 ------- null} h -t 16.9463 -s 21 -d 28 -p ack -e 40 -c 0 -i 283 -a 0 -x {21.0 3.0 -1 ------- null} r -t 16.9479 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 264 -a 0 -x {3.0 21.0 133 ------- null} + -t 16.9479 -s 21 -d 28 -p ack -e 40 -c 0 -i 284 -a 0 -x {21.0 3.0 133 ------- null} - -t 16.9479 -s 21 -d 28 -p ack -e 40 -c 0 -i 284 -a 0 -x {21.0 3.0 133 ------- null} h -t 16.9479 -s 21 -d 28 -p ack -e 40 -c 0 -i 284 -a 0 -x {21.0 3.0 -1 ------- null} r -t 16.9495 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {3.0 21.0 134 ------- null} + -t 16.9495 -s 21 -d 28 -p ack -e 40 -c 0 -i 285 -a 0 -x {21.0 3.0 134 ------- null} - -t 16.9495 -s 21 -d 28 -p ack -e 40 -c 0 -i 285 -a 0 -x {21.0 3.0 134 ------- null} h -t 16.9495 -s 21 -d 28 -p ack -e 40 -c 0 -i 285 -a 0 -x {21.0 3.0 -1 ------- null} r -t 16.9511 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 266 -a 0 -x {3.0 21.0 135 ------- null} + -t 16.9511 -s 21 -d 28 -p ack -e 40 -c 0 -i 286 -a 0 -x {21.0 3.0 135 ------- null} - -t 16.9511 -s 21 -d 28 -p ack -e 40 -c 0 -i 286 -a 0 -x {21.0 3.0 135 ------- null} h -t 16.9511 -s 21 -d 28 -p ack -e 40 -c 0 -i 286 -a 0 -x {21.0 3.0 -1 ------- null} r -t 16.9527 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {3.0 21.0 136 ------- null} + -t 16.9527 -s 21 -d 28 -p ack -e 40 -c 0 -i 287 -a 0 -x {21.0 3.0 136 ------- null} - -t 16.9527 -s 21 -d 28 -p ack -e 40 -c 0 -i 287 -a 0 -x {21.0 3.0 136 ------- null} h -t 16.9527 -s 21 -d 28 -p ack -e 40 -c 0 -i 287 -a 0 -x {21.0 3.0 -1 ------- null} r -t 16.9543 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 268 -a 0 -x {3.0 21.0 137 ------- null} + -t 16.9543 -s 21 -d 28 -p ack -e 40 -c 0 -i 288 -a 0 -x {21.0 3.0 137 ------- null} - -t 16.9543 -s 21 -d 28 -p ack -e 40 -c 0 -i 288 -a 0 -x {21.0 3.0 137 ------- null} h -t 16.9543 -s 21 -d 28 -p ack -e 40 -c 0 -i 288 -a 0 -x {21.0 3.0 -1 ------- null} r -t 16.9559 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {3.0 21.0 138 ------- null} + -t 16.9559 -s 21 -d 28 -p ack -e 40 -c 0 -i 289 -a 0 -x {21.0 3.0 138 ------- null} - -t 16.9559 -s 21 -d 28 -p ack -e 40 -c 0 -i 289 -a 0 -x {21.0 3.0 138 ------- null} h -t 16.9559 -s 21 -d 28 -p ack -e 40 -c 0 -i 289 -a 0 -x {21.0 3.0 -1 ------- null} r -t 16.9575 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 270 -a 0 -x {3.0 21.0 139 ------- null} + -t 16.9575 -s 21 -d 28 -p ack -e 40 -c 0 -i 290 -a 0 -x {21.0 3.0 139 ------- null} - -t 16.9575 -s 21 -d 28 -p ack -e 40 -c 0 -i 290 -a 0 -x {21.0 3.0 139 ------- null} h -t 16.9575 -s 21 -d 28 -p ack -e 40 -c 0 -i 290 -a 0 -x {21.0 3.0 -1 ------- null} r -t 16.9591 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {3.0 21.0 140 ------- null} + -t 16.9591 -s 21 -d 28 -p ack -e 40 -c 0 -i 291 -a 0 -x {21.0 3.0 140 ------- null} - -t 16.9591 -s 21 -d 28 -p ack -e 40 -c 0 -i 291 -a 0 -x {21.0 3.0 140 ------- null} h -t 16.9591 -s 21 -d 28 -p ack -e 40 -c 0 -i 291 -a 0 -x {21.0 3.0 -1 ------- null} r -t 16.9607 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {3.0 21.0 141 ------- null} + -t 16.9607 -s 21 -d 28 -p ack -e 40 -c 0 -i 292 -a 0 -x {21.0 3.0 141 ------- null} - -t 16.9607 -s 21 -d 28 -p ack -e 40 -c 0 -i 292 -a 0 -x {21.0 3.0 141 ------- null} h -t 16.9607 -s 21 -d 28 -p ack -e 40 -c 0 -i 292 -a 0 -x {21.0 3.0 -1 ------- null} r -t 16.9623 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {3.0 21.0 142 ------- null} + -t 16.9623 -s 21 -d 28 -p ack -e 40 -c 0 -i 293 -a 0 -x {21.0 3.0 142 ------- null} - -t 16.9623 -s 21 -d 28 -p ack -e 40 -c 0 -i 293 -a 0 -x {21.0 3.0 142 ------- null} h -t 16.9623 -s 21 -d 28 -p ack -e 40 -c 0 -i 293 -a 0 -x {21.0 3.0 -1 ------- null} r -t 16.9639 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {3.0 21.0 143 ------- null} + -t 16.9639 -s 21 -d 28 -p ack -e 40 -c 0 -i 294 -a 0 -x {21.0 3.0 143 ------- null} - -t 16.9639 -s 21 -d 28 -p ack -e 40 -c 0 -i 294 -a 0 -x {21.0 3.0 143 ------- null} h -t 16.9639 -s 21 -d 28 -p ack -e 40 -c 0 -i 294 -a 0 -x {21.0 3.0 -1 ------- null} r -t 16.9655 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {3.0 21.0 144 ------- null} + -t 16.9655 -s 21 -d 28 -p ack -e 40 -c 0 -i 295 -a 0 -x {21.0 3.0 144 ------- null} - -t 16.9655 -s 21 -d 28 -p ack -e 40 -c 0 -i 295 -a 0 -x {21.0 3.0 144 ------- null} h -t 16.9655 -s 21 -d 28 -p ack -e 40 -c 0 -i 295 -a 0 -x {21.0 3.0 -1 ------- null} r -t 16.9671 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 276 -a 0 -x {3.0 21.0 145 ------- null} + -t 16.9671 -s 21 -d 28 -p ack -e 40 -c 0 -i 296 -a 0 -x {21.0 3.0 145 ------- null} - -t 16.9671 -s 21 -d 28 -p ack -e 40 -c 0 -i 296 -a 0 -x {21.0 3.0 145 ------- null} h -t 16.9671 -s 21 -d 28 -p ack -e 40 -c 0 -i 296 -a 0 -x {21.0 3.0 -1 ------- null} r -t 16.9687 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {3.0 21.0 146 ------- null} + -t 16.9687 -s 21 -d 28 -p ack -e 40 -c 0 -i 297 -a 0 -x {21.0 3.0 146 ------- null} - -t 16.9687 -s 21 -d 28 -p ack -e 40 -c 0 -i 297 -a 0 -x {21.0 3.0 146 ------- null} h -t 16.9687 -s 21 -d 28 -p ack -e 40 -c 0 -i 297 -a 0 -x {21.0 3.0 -1 ------- null} r -t 16.9703 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 278 -a 0 -x {3.0 21.0 147 ------- null} + -t 16.9703 -s 21 -d 28 -p ack -e 40 -c 0 -i 298 -a 0 -x {21.0 3.0 147 ------- null} - -t 16.9703 -s 21 -d 28 -p ack -e 40 -c 0 -i 298 -a 0 -x {21.0 3.0 147 ------- null} h -t 16.9703 -s 21 -d 28 -p ack -e 40 -c 0 -i 298 -a 0 -x {21.0 3.0 -1 ------- null} r -t 16.9719 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {3.0 21.0 148 ------- null} + -t 16.9719 -s 21 -d 28 -p ack -e 40 -c 0 -i 299 -a 0 -x {21.0 3.0 148 ------- null} - -t 16.9719 -s 21 -d 28 -p ack -e 40 -c 0 -i 299 -a 0 -x {21.0 3.0 148 ------- null} h -t 16.9719 -s 21 -d 28 -p ack -e 40 -c 0 -i 299 -a 0 -x {21.0 3.0 -1 ------- null} r -t 16.9735 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 280 -a 0 -x {3.0 21.0 149 ------- null} + -t 16.9735 -s 21 -d 28 -p ack -e 40 -c 0 -i 300 -a 0 -x {21.0 3.0 149 ------- null} - -t 16.9735 -s 21 -d 28 -p ack -e 40 -c 0 -i 300 -a 0 -x {21.0 3.0 149 ------- null} h -t 16.9735 -s 21 -d 28 -p ack -e 40 -c 0 -i 300 -a 0 -x {21.0 3.0 -1 ------- null} r -t 16.9751 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {3.0 21.0 150 ------- null} + -t 16.9751 -s 21 -d 28 -p ack -e 40 -c 0 -i 301 -a 0 -x {21.0 3.0 150 ------- null} - -t 16.9751 -s 21 -d 28 -p ack -e 40 -c 0 -i 301 -a 0 -x {21.0 3.0 150 ------- null} h -t 16.9751 -s 21 -d 28 -p ack -e 40 -c 0 -i 301 -a 0 -x {21.0 3.0 -1 ------- null} r -t 17.2948 -s 21 -d 28 -p ack -e 40 -c 0 -i 282 -a 0 -x {21.0 3.0 131 ------- null} + -t 17.2948 -s 28 -d 1 -p ack -e 40 -c 0 -i 282 -a 0 -x {21.0 3.0 131 ------- null} - -t 17.2948 -s 28 -d 1 -p ack -e 40 -c 0 -i 282 -a 0 -x {21.0 3.0 131 ------- null} h -t 17.2948 -s 28 -d 1 -p ack -e 40 -c 0 -i 282 -a 0 -x {21.0 3.0 -1 ------- null} r -t 17.2964 -s 21 -d 28 -p ack -e 40 -c 0 -i 283 -a 0 -x {21.0 3.0 132 ------- null} + -t 17.2964 -s 28 -d 1 -p ack -e 40 -c 0 -i 283 -a 0 -x {21.0 3.0 132 ------- null} - -t 17.2964 -s 28 -d 1 -p ack -e 40 -c 0 -i 283 -a 0 -x {21.0 3.0 132 ------- null} h -t 17.2964 -s 28 -d 1 -p ack -e 40 -c 0 -i 283 -a 0 -x {21.0 3.0 -1 ------- null} r -t 17.298 -s 21 -d 28 -p ack -e 40 -c 0 -i 284 -a 0 -x {21.0 3.0 133 ------- null} + -t 17.298 -s 28 -d 1 -p ack -e 40 -c 0 -i 284 -a 0 -x {21.0 3.0 133 ------- null} - -t 17.298 -s 28 -d 1 -p ack -e 40 -c 0 -i 284 -a 0 -x {21.0 3.0 133 ------- null} h -t 17.298 -s 28 -d 1 -p ack -e 40 -c 0 -i 284 -a 0 -x {21.0 3.0 -1 ------- null} r -t 17.2996 -s 21 -d 28 -p ack -e 40 -c 0 -i 285 -a 0 -x {21.0 3.0 134 ------- null} + -t 17.2996 -s 28 -d 1 -p ack -e 40 -c 0 -i 285 -a 0 -x {21.0 3.0 134 ------- null} - -t 17.2996 -s 28 -d 1 -p ack -e 40 -c 0 -i 285 -a 0 -x {21.0 3.0 134 ------- null} h -t 17.2996 -s 28 -d 1 -p ack -e 40 -c 0 -i 285 -a 0 -x {21.0 3.0 -1 ------- null} r -t 17.3012 -s 21 -d 28 -p ack -e 40 -c 0 -i 286 -a 0 -x {21.0 3.0 135 ------- null} + -t 17.3012 -s 28 -d 1 -p ack -e 40 -c 0 -i 286 -a 0 -x {21.0 3.0 135 ------- null} - -t 17.3012 -s 28 -d 1 -p ack -e 40 -c 0 -i 286 -a 0 -x {21.0 3.0 135 ------- null} h -t 17.3012 -s 28 -d 1 -p ack -e 40 -c 0 -i 286 -a 0 -x {21.0 3.0 -1 ------- null} r -t 17.3028 -s 21 -d 28 -p ack -e 40 -c 0 -i 287 -a 0 -x {21.0 3.0 136 ------- null} + -t 17.3028 -s 28 -d 1 -p ack -e 40 -c 0 -i 287 -a 0 -x {21.0 3.0 136 ------- null} - -t 17.3028 -s 28 -d 1 -p ack -e 40 -c 0 -i 287 -a 0 -x {21.0 3.0 136 ------- null} h -t 17.3028 -s 28 -d 1 -p ack -e 40 -c 0 -i 287 -a 0 -x {21.0 3.0 -1 ------- null} r -t 17.3044 -s 21 -d 28 -p ack -e 40 -c 0 -i 288 -a 0 -x {21.0 3.0 137 ------- null} + -t 17.3044 -s 28 -d 1 -p ack -e 40 -c 0 -i 288 -a 0 -x {21.0 3.0 137 ------- null} - -t 17.3044 -s 28 -d 1 -p ack -e 40 -c 0 -i 288 -a 0 -x {21.0 3.0 137 ------- null} h -t 17.3044 -s 28 -d 1 -p ack -e 40 -c 0 -i 288 -a 0 -x {21.0 3.0 -1 ------- null} r -t 17.306 -s 21 -d 28 -p ack -e 40 -c 0 -i 289 -a 0 -x {21.0 3.0 138 ------- null} + -t 17.306 -s 28 -d 1 -p ack -e 40 -c 0 -i 289 -a 0 -x {21.0 3.0 138 ------- null} - -t 17.306 -s 28 -d 1 -p ack -e 40 -c 0 -i 289 -a 0 -x {21.0 3.0 138 ------- null} h -t 17.306 -s 28 -d 1 -p ack -e 40 -c 0 -i 289 -a 0 -x {21.0 3.0 -1 ------- null} r -t 17.3076 -s 21 -d 28 -p ack -e 40 -c 0 -i 290 -a 0 -x {21.0 3.0 139 ------- null} + -t 17.3076 -s 28 -d 1 -p ack -e 40 -c 0 -i 290 -a 0 -x {21.0 3.0 139 ------- null} - -t 17.3076 -s 28 -d 1 -p ack -e 40 -c 0 -i 290 -a 0 -x {21.0 3.0 139 ------- null} h -t 17.3076 -s 28 -d 1 -p ack -e 40 -c 0 -i 290 -a 0 -x {21.0 3.0 -1 ------- null} r -t 17.3092 -s 21 -d 28 -p ack -e 40 -c 0 -i 291 -a 0 -x {21.0 3.0 140 ------- null} + -t 17.3092 -s 28 -d 1 -p ack -e 40 -c 0 -i 291 -a 0 -x {21.0 3.0 140 ------- null} - -t 17.3092 -s 28 -d 1 -p ack -e 40 -c 0 -i 291 -a 0 -x {21.0 3.0 140 ------- null} h -t 17.3092 -s 28 -d 1 -p ack -e 40 -c 0 -i 291 -a 0 -x {21.0 3.0 -1 ------- null} r -t 17.3108 -s 21 -d 28 -p ack -e 40 -c 0 -i 292 -a 0 -x {21.0 3.0 141 ------- null} + -t 17.3108 -s 28 -d 1 -p ack -e 40 -c 0 -i 292 -a 0 -x {21.0 3.0 141 ------- null} - -t 17.3108 -s 28 -d 1 -p ack -e 40 -c 0 -i 292 -a 0 -x {21.0 3.0 141 ------- null} h -t 17.3108 -s 28 -d 1 -p ack -e 40 -c 0 -i 292 -a 0 -x {21.0 3.0 -1 ------- null} r -t 17.3124 -s 21 -d 28 -p ack -e 40 -c 0 -i 293 -a 0 -x {21.0 3.0 142 ------- null} + -t 17.3124 -s 28 -d 1 -p ack -e 40 -c 0 -i 293 -a 0 -x {21.0 3.0 142 ------- null} - -t 17.3124 -s 28 -d 1 -p ack -e 40 -c 0 -i 293 -a 0 -x {21.0 3.0 142 ------- null} h -t 17.3124 -s 28 -d 1 -p ack -e 40 -c 0 -i 293 -a 0 -x {21.0 3.0 -1 ------- null} r -t 17.314 -s 21 -d 28 -p ack -e 40 -c 0 -i 294 -a 0 -x {21.0 3.0 143 ------- null} + -t 17.314 -s 28 -d 1 -p ack -e 40 -c 0 -i 294 -a 0 -x {21.0 3.0 143 ------- null} - -t 17.314 -s 28 -d 1 -p ack -e 40 -c 0 -i 294 -a 0 -x {21.0 3.0 143 ------- null} h -t 17.314 -s 28 -d 1 -p ack -e 40 -c 0 -i 294 -a 0 -x {21.0 3.0 -1 ------- null} r -t 17.3156 -s 21 -d 28 -p ack -e 40 -c 0 -i 295 -a 0 -x {21.0 3.0 144 ------- null} + -t 17.3156 -s 28 -d 1 -p ack -e 40 -c 0 -i 295 -a 0 -x {21.0 3.0 144 ------- null} - -t 17.3156 -s 28 -d 1 -p ack -e 40 -c 0 -i 295 -a 0 -x {21.0 3.0 144 ------- null} h -t 17.3156 -s 28 -d 1 -p ack -e 40 -c 0 -i 295 -a 0 -x {21.0 3.0 -1 ------- null} r -t 17.3172 -s 21 -d 28 -p ack -e 40 -c 0 -i 296 -a 0 -x {21.0 3.0 145 ------- null} + -t 17.3172 -s 28 -d 1 -p ack -e 40 -c 0 -i 296 -a 0 -x {21.0 3.0 145 ------- null} - -t 17.3172 -s 28 -d 1 -p ack -e 40 -c 0 -i 296 -a 0 -x {21.0 3.0 145 ------- null} h -t 17.3172 -s 28 -d 1 -p ack -e 40 -c 0 -i 296 -a 0 -x {21.0 3.0 -1 ------- null} r -t 17.3188 -s 21 -d 28 -p ack -e 40 -c 0 -i 297 -a 0 -x {21.0 3.0 146 ------- null} + -t 17.3188 -s 28 -d 1 -p ack -e 40 -c 0 -i 297 -a 0 -x {21.0 3.0 146 ------- null} - -t 17.3188 -s 28 -d 1 -p ack -e 40 -c 0 -i 297 -a 0 -x {21.0 3.0 146 ------- null} h -t 17.3188 -s 28 -d 1 -p ack -e 40 -c 0 -i 297 -a 0 -x {21.0 3.0 -1 ------- null} r -t 17.3204 -s 21 -d 28 -p ack -e 40 -c 0 -i 298 -a 0 -x {21.0 3.0 147 ------- null} + -t 17.3204 -s 28 -d 1 -p ack -e 40 -c 0 -i 298 -a 0 -x {21.0 3.0 147 ------- null} - -t 17.3204 -s 28 -d 1 -p ack -e 40 -c 0 -i 298 -a 0 -x {21.0 3.0 147 ------- null} h -t 17.3204 -s 28 -d 1 -p ack -e 40 -c 0 -i 298 -a 0 -x {21.0 3.0 -1 ------- null} r -t 17.322 -s 21 -d 28 -p ack -e 40 -c 0 -i 299 -a 0 -x {21.0 3.0 148 ------- null} + -t 17.322 -s 28 -d 1 -p ack -e 40 -c 0 -i 299 -a 0 -x {21.0 3.0 148 ------- null} - -t 17.322 -s 28 -d 1 -p ack -e 40 -c 0 -i 299 -a 0 -x {21.0 3.0 148 ------- null} h -t 17.322 -s 28 -d 1 -p ack -e 40 -c 0 -i 299 -a 0 -x {21.0 3.0 -1 ------- null} r -t 17.3236 -s 21 -d 28 -p ack -e 40 -c 0 -i 300 -a 0 -x {21.0 3.0 149 ------- null} + -t 17.3236 -s 28 -d 1 -p ack -e 40 -c 0 -i 300 -a 0 -x {21.0 3.0 149 ------- null} - -t 17.3236 -s 28 -d 1 -p ack -e 40 -c 0 -i 300 -a 0 -x {21.0 3.0 149 ------- null} h -t 17.3236 -s 28 -d 1 -p ack -e 40 -c 0 -i 300 -a 0 -x {21.0 3.0 -1 ------- null} r -t 17.3252 -s 21 -d 28 -p ack -e 40 -c 0 -i 301 -a 0 -x {21.0 3.0 150 ------- null} + -t 17.3252 -s 28 -d 1 -p ack -e 40 -c 0 -i 301 -a 0 -x {21.0 3.0 150 ------- null} - -t 17.3252 -s 28 -d 1 -p ack -e 40 -c 0 -i 301 -a 0 -x {21.0 3.0 150 ------- null} h -t 17.3252 -s 28 -d 1 -p ack -e 40 -c 0 -i 301 -a 0 -x {21.0 3.0 -1 ------- null} r -t 17.5948 -s 28 -d 1 -p ack -e 40 -c 0 -i 282 -a 0 -x {21.0 3.0 131 ------- null} + -t 17.5948 -s 1 -d 3 -p ack -e 40 -c 0 -i 282 -a 0 -x {21.0 3.0 131 ------- null} - -t 17.5948 -s 1 -d 3 -p ack -e 40 -c 0 -i 282 -a 0 -x {21.0 3.0 131 ------- null} h -t 17.5948 -s 1 -d 3 -p ack -e 40 -c 0 -i 282 -a 0 -x {21.0 3.0 -1 ------- null} r -t 17.5964 -s 28 -d 1 -p ack -e 40 -c 0 -i 283 -a 0 -x {21.0 3.0 132 ------- null} + -t 17.5964 -s 1 -d 3 -p ack -e 40 -c 0 -i 283 -a 0 -x {21.0 3.0 132 ------- null} - -t 17.5964 -s 1 -d 3 -p ack -e 40 -c 0 -i 283 -a 0 -x {21.0 3.0 132 ------- null} h -t 17.5964 -s 1 -d 3 -p ack -e 40 -c 0 -i 283 -a 0 -x {21.0 3.0 -1 ------- null} r -t 17.598 -s 28 -d 1 -p ack -e 40 -c 0 -i 284 -a 0 -x {21.0 3.0 133 ------- null} + -t 17.598 -s 1 -d 3 -p ack -e 40 -c 0 -i 284 -a 0 -x {21.0 3.0 133 ------- null} - -t 17.598 -s 1 -d 3 -p ack -e 40 -c 0 -i 284 -a 0 -x {21.0 3.0 133 ------- null} h -t 17.598 -s 1 -d 3 -p ack -e 40 -c 0 -i 284 -a 0 -x {21.0 3.0 -1 ------- null} r -t 17.5996 -s 28 -d 1 -p ack -e 40 -c 0 -i 285 -a 0 -x {21.0 3.0 134 ------- null} + -t 17.5996 -s 1 -d 3 -p ack -e 40 -c 0 -i 285 -a 0 -x {21.0 3.0 134 ------- null} - -t 17.5996 -s 1 -d 3 -p ack -e 40 -c 0 -i 285 -a 0 -x {21.0 3.0 134 ------- null} h -t 17.5996 -s 1 -d 3 -p ack -e 40 -c 0 -i 285 -a 0 -x {21.0 3.0 -1 ------- null} r -t 17.6012 -s 28 -d 1 -p ack -e 40 -c 0 -i 286 -a 0 -x {21.0 3.0 135 ------- null} + -t 17.6012 -s 1 -d 3 -p ack -e 40 -c 0 -i 286 -a 0 -x {21.0 3.0 135 ------- null} - -t 17.6012 -s 1 -d 3 -p ack -e 40 -c 0 -i 286 -a 0 -x {21.0 3.0 135 ------- null} h -t 17.6012 -s 1 -d 3 -p ack -e 40 -c 0 -i 286 -a 0 -x {21.0 3.0 -1 ------- null} r -t 17.6028 -s 28 -d 1 -p ack -e 40 -c 0 -i 287 -a 0 -x {21.0 3.0 136 ------- null} + -t 17.6028 -s 1 -d 3 -p ack -e 40 -c 0 -i 287 -a 0 -x {21.0 3.0 136 ------- null} - -t 17.6028 -s 1 -d 3 -p ack -e 40 -c 0 -i 287 -a 0 -x {21.0 3.0 136 ------- null} h -t 17.6028 -s 1 -d 3 -p ack -e 40 -c 0 -i 287 -a 0 -x {21.0 3.0 -1 ------- null} r -t 17.6044 -s 28 -d 1 -p ack -e 40 -c 0 -i 288 -a 0 -x {21.0 3.0 137 ------- null} + -t 17.6044 -s 1 -d 3 -p ack -e 40 -c 0 -i 288 -a 0 -x {21.0 3.0 137 ------- null} - -t 17.6044 -s 1 -d 3 -p ack -e 40 -c 0 -i 288 -a 0 -x {21.0 3.0 137 ------- null} h -t 17.6044 -s 1 -d 3 -p ack -e 40 -c 0 -i 288 -a 0 -x {21.0 3.0 -1 ------- null} r -t 17.606 -s 28 -d 1 -p ack -e 40 -c 0 -i 289 -a 0 -x {21.0 3.0 138 ------- null} + -t 17.606 -s 1 -d 3 -p ack -e 40 -c 0 -i 289 -a 0 -x {21.0 3.0 138 ------- null} - -t 17.606 -s 1 -d 3 -p ack -e 40 -c 0 -i 289 -a 0 -x {21.0 3.0 138 ------- null} h -t 17.606 -s 1 -d 3 -p ack -e 40 -c 0 -i 289 -a 0 -x {21.0 3.0 -1 ------- null} r -t 17.6076 -s 28 -d 1 -p ack -e 40 -c 0 -i 290 -a 0 -x {21.0 3.0 139 ------- null} + -t 17.6076 -s 1 -d 3 -p ack -e 40 -c 0 -i 290 -a 0 -x {21.0 3.0 139 ------- null} - -t 17.6076 -s 1 -d 3 -p ack -e 40 -c 0 -i 290 -a 0 -x {21.0 3.0 139 ------- null} h -t 17.6076 -s 1 -d 3 -p ack -e 40 -c 0 -i 290 -a 0 -x {21.0 3.0 -1 ------- null} r -t 17.6092 -s 28 -d 1 -p ack -e 40 -c 0 -i 291 -a 0 -x {21.0 3.0 140 ------- null} + -t 17.6092 -s 1 -d 3 -p ack -e 40 -c 0 -i 291 -a 0 -x {21.0 3.0 140 ------- null} - -t 17.6092 -s 1 -d 3 -p ack -e 40 -c 0 -i 291 -a 0 -x {21.0 3.0 140 ------- null} h -t 17.6092 -s 1 -d 3 -p ack -e 40 -c 0 -i 291 -a 0 -x {21.0 3.0 -1 ------- null} r -t 17.6108 -s 28 -d 1 -p ack -e 40 -c 0 -i 292 -a 0 -x {21.0 3.0 141 ------- null} + -t 17.6108 -s 1 -d 3 -p ack -e 40 -c 0 -i 292 -a 0 -x {21.0 3.0 141 ------- null} - -t 17.6108 -s 1 -d 3 -p ack -e 40 -c 0 -i 292 -a 0 -x {21.0 3.0 141 ------- null} h -t 17.6108 -s 1 -d 3 -p ack -e 40 -c 0 -i 292 -a 0 -x {21.0 3.0 -1 ------- null} r -t 17.6124 -s 28 -d 1 -p ack -e 40 -c 0 -i 293 -a 0 -x {21.0 3.0 142 ------- null} + -t 17.6124 -s 1 -d 3 -p ack -e 40 -c 0 -i 293 -a 0 -x {21.0 3.0 142 ------- null} - -t 17.6124 -s 1 -d 3 -p ack -e 40 -c 0 -i 293 -a 0 -x {21.0 3.0 142 ------- null} h -t 17.6124 -s 1 -d 3 -p ack -e 40 -c 0 -i 293 -a 0 -x {21.0 3.0 -1 ------- null} r -t 17.614 -s 28 -d 1 -p ack -e 40 -c 0 -i 294 -a 0 -x {21.0 3.0 143 ------- null} + -t 17.614 -s 1 -d 3 -p ack -e 40 -c 0 -i 294 -a 0 -x {21.0 3.0 143 ------- null} - -t 17.614 -s 1 -d 3 -p ack -e 40 -c 0 -i 294 -a 0 -x {21.0 3.0 143 ------- null} h -t 17.614 -s 1 -d 3 -p ack -e 40 -c 0 -i 294 -a 0 -x {21.0 3.0 -1 ------- null} r -t 17.6156 -s 28 -d 1 -p ack -e 40 -c 0 -i 295 -a 0 -x {21.0 3.0 144 ------- null} + -t 17.6156 -s 1 -d 3 -p ack -e 40 -c 0 -i 295 -a 0 -x {21.0 3.0 144 ------- null} - -t 17.6156 -s 1 -d 3 -p ack -e 40 -c 0 -i 295 -a 0 -x {21.0 3.0 144 ------- null} h -t 17.6156 -s 1 -d 3 -p ack -e 40 -c 0 -i 295 -a 0 -x {21.0 3.0 -1 ------- null} r -t 17.6172 -s 28 -d 1 -p ack -e 40 -c 0 -i 296 -a 0 -x {21.0 3.0 145 ------- null} + -t 17.6172 -s 1 -d 3 -p ack -e 40 -c 0 -i 296 -a 0 -x {21.0 3.0 145 ------- null} - -t 17.6172 -s 1 -d 3 -p ack -e 40 -c 0 -i 296 -a 0 -x {21.0 3.0 145 ------- null} h -t 17.6172 -s 1 -d 3 -p ack -e 40 -c 0 -i 296 -a 0 -x {21.0 3.0 -1 ------- null} r -t 17.6188 -s 28 -d 1 -p ack -e 40 -c 0 -i 297 -a 0 -x {21.0 3.0 146 ------- null} + -t 17.6188 -s 1 -d 3 -p ack -e 40 -c 0 -i 297 -a 0 -x {21.0 3.0 146 ------- null} - -t 17.6188 -s 1 -d 3 -p ack -e 40 -c 0 -i 297 -a 0 -x {21.0 3.0 146 ------- null} h -t 17.6188 -s 1 -d 3 -p ack -e 40 -c 0 -i 297 -a 0 -x {21.0 3.0 -1 ------- null} r -t 17.6204 -s 28 -d 1 -p ack -e 40 -c 0 -i 298 -a 0 -x {21.0 3.0 147 ------- null} + -t 17.6204 -s 1 -d 3 -p ack -e 40 -c 0 -i 298 -a 0 -x {21.0 3.0 147 ------- null} - -t 17.6204 -s 1 -d 3 -p ack -e 40 -c 0 -i 298 -a 0 -x {21.0 3.0 147 ------- null} h -t 17.6204 -s 1 -d 3 -p ack -e 40 -c 0 -i 298 -a 0 -x {21.0 3.0 -1 ------- null} r -t 17.622 -s 28 -d 1 -p ack -e 40 -c 0 -i 299 -a 0 -x {21.0 3.0 148 ------- null} + -t 17.622 -s 1 -d 3 -p ack -e 40 -c 0 -i 299 -a 0 -x {21.0 3.0 148 ------- null} - -t 17.622 -s 1 -d 3 -p ack -e 40 -c 0 -i 299 -a 0 -x {21.0 3.0 148 ------- null} h -t 17.622 -s 1 -d 3 -p ack -e 40 -c 0 -i 299 -a 0 -x {21.0 3.0 -1 ------- null} r -t 17.6236 -s 28 -d 1 -p ack -e 40 -c 0 -i 300 -a 0 -x {21.0 3.0 149 ------- null} + -t 17.6236 -s 1 -d 3 -p ack -e 40 -c 0 -i 300 -a 0 -x {21.0 3.0 149 ------- null} - -t 17.6236 -s 1 -d 3 -p ack -e 40 -c 0 -i 300 -a 0 -x {21.0 3.0 149 ------- null} h -t 17.6236 -s 1 -d 3 -p ack -e 40 -c 0 -i 300 -a 0 -x {21.0 3.0 -1 ------- null} r -t 17.6252 -s 28 -d 1 -p ack -e 40 -c 0 -i 301 -a 0 -x {21.0 3.0 150 ------- null} + -t 17.6252 -s 1 -d 3 -p ack -e 40 -c 0 -i 301 -a 0 -x {21.0 3.0 150 ------- null} - -t 17.6252 -s 1 -d 3 -p ack -e 40 -c 0 -i 301 -a 0 -x {21.0 3.0 150 ------- null} h -t 17.6252 -s 1 -d 3 -p ack -e 40 -c 0 -i 301 -a 0 -x {21.0 3.0 -1 ------- null} r -t 17.7349 -s 1 -d 3 -p ack -e 40 -c 0 -i 282 -a 0 -x {21.0 3.0 131 ------- null} + -t 17.7349 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {3.0 21.0 151 ------- null} - -t 17.7349 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {3.0 21.0 151 ------- null} h -t 17.7349 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.7365 -s 1 -d 3 -p ack -e 40 -c 0 -i 283 -a 0 -x {21.0 3.0 132 ------- null} + -t 17.7365 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {3.0 21.0 152 ------- null} - -t 17.7365 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {3.0 21.0 152 ------- null} h -t 17.7365 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.7381 -s 1 -d 3 -p ack -e 40 -c 0 -i 284 -a 0 -x {21.0 3.0 133 ------- null} + -t 17.7381 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {3.0 21.0 153 ------- null} - -t 17.7381 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {3.0 21.0 153 ------- null} h -t 17.7381 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.7397 -s 1 -d 3 -p ack -e 40 -c 0 -i 285 -a 0 -x {21.0 3.0 134 ------- null} + -t 17.7397 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {3.0 21.0 154 ------- null} - -t 17.7397 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {3.0 21.0 154 ------- null} h -t 17.7397 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.7413 -s 1 -d 3 -p ack -e 40 -c 0 -i 286 -a 0 -x {21.0 3.0 135 ------- null} + -t 17.7413 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {3.0 21.0 155 ------- null} - -t 17.7413 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {3.0 21.0 155 ------- null} h -t 17.7413 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.7429 -s 1 -d 3 -p ack -e 40 -c 0 -i 287 -a 0 -x {21.0 3.0 136 ------- null} + -t 17.7429 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {3.0 21.0 156 ------- null} - -t 17.7429 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {3.0 21.0 156 ------- null} h -t 17.7429 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.7445 -s 1 -d 3 -p ack -e 40 -c 0 -i 288 -a 0 -x {21.0 3.0 137 ------- null} + -t 17.7445 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {3.0 21.0 157 ------- null} - -t 17.7445 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {3.0 21.0 157 ------- null} h -t 17.7445 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.7461 -s 1 -d 3 -p ack -e 40 -c 0 -i 289 -a 0 -x {21.0 3.0 138 ------- null} + -t 17.7461 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {3.0 21.0 158 ------- null} - -t 17.7461 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {3.0 21.0 158 ------- null} h -t 17.7461 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.7477 -s 1 -d 3 -p ack -e 40 -c 0 -i 290 -a 0 -x {21.0 3.0 139 ------- null} + -t 17.7477 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 310 -a 0 -x {3.0 21.0 159 ------- null} - -t 17.7477 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 310 -a 0 -x {3.0 21.0 159 ------- null} h -t 17.7477 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 310 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.7493 -s 1 -d 3 -p ack -e 40 -c 0 -i 291 -a 0 -x {21.0 3.0 140 ------- null} + -t 17.7493 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {3.0 21.0 160 ------- null} - -t 17.7493 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {3.0 21.0 160 ------- null} h -t 17.7493 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.7509 -s 1 -d 3 -p ack -e 40 -c 0 -i 292 -a 0 -x {21.0 3.0 141 ------- null} + -t 17.7509 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 312 -a 0 -x {3.0 21.0 161 ------- null} - -t 17.7509 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 312 -a 0 -x {3.0 21.0 161 ------- null} h -t 17.7509 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 312 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.7525 -s 1 -d 3 -p ack -e 40 -c 0 -i 293 -a 0 -x {21.0 3.0 142 ------- null} + -t 17.7525 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {3.0 21.0 162 ------- null} - -t 17.7525 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {3.0 21.0 162 ------- null} h -t 17.7525 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.7541 -s 1 -d 3 -p ack -e 40 -c 0 -i 294 -a 0 -x {21.0 3.0 143 ------- null} + -t 17.7541 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 314 -a 0 -x {3.0 21.0 163 ------- null} - -t 17.7541 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 314 -a 0 -x {3.0 21.0 163 ------- null} h -t 17.7541 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 314 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.7557 -s 1 -d 3 -p ack -e 40 -c 0 -i 295 -a 0 -x {21.0 3.0 144 ------- null} + -t 17.7557 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {3.0 21.0 164 ------- null} - -t 17.7557 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {3.0 21.0 164 ------- null} h -t 17.7557 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.7573 -s 1 -d 3 -p ack -e 40 -c 0 -i 296 -a 0 -x {21.0 3.0 145 ------- null} + -t 17.7573 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 316 -a 0 -x {3.0 21.0 165 ------- null} - -t 17.7573 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 316 -a 0 -x {3.0 21.0 165 ------- null} h -t 17.7573 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 316 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.7589 -s 1 -d 3 -p ack -e 40 -c 0 -i 297 -a 0 -x {21.0 3.0 146 ------- null} + -t 17.7589 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {3.0 21.0 166 ------- null} - -t 17.7589 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {3.0 21.0 166 ------- null} h -t 17.7589 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.7605 -s 1 -d 3 -p ack -e 40 -c 0 -i 298 -a 0 -x {21.0 3.0 147 ------- null} + -t 17.7605 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 318 -a 0 -x {3.0 21.0 167 ------- null} - -t 17.7605 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 318 -a 0 -x {3.0 21.0 167 ------- null} h -t 17.7605 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 318 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.7621 -s 1 -d 3 -p ack -e 40 -c 0 -i 299 -a 0 -x {21.0 3.0 148 ------- null} + -t 17.7621 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {3.0 21.0 168 ------- null} - -t 17.7621 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {3.0 21.0 168 ------- null} h -t 17.7621 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.7637 -s 1 -d 3 -p ack -e 40 -c 0 -i 300 -a 0 -x {21.0 3.0 149 ------- null} + -t 17.7637 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {3.0 21.0 169 ------- null} - -t 17.7637 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {3.0 21.0 169 ------- null} h -t 17.7637 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.7653 -s 1 -d 3 -p ack -e 40 -c 0 -i 301 -a 0 -x {21.0 3.0 150 ------- null} + -t 17.7653 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {3.0 21.0 170 ------- null} - -t 17.7653 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {3.0 21.0 170 ------- null} h -t 17.7653 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.8765 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {3.0 21.0 151 ------- null} + -t 17.8765 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {3.0 21.0 151 ------- null} - -t 17.8765 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {3.0 21.0 151 ------- null} h -t 17.8765 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.8781 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {3.0 21.0 152 ------- null} + -t 17.8781 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {3.0 21.0 152 ------- null} - -t 17.8781 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {3.0 21.0 152 ------- null} h -t 17.8781 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.8797 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {3.0 21.0 153 ------- null} + -t 17.8797 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {3.0 21.0 153 ------- null} - -t 17.8797 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {3.0 21.0 153 ------- null} h -t 17.8797 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.8813 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {3.0 21.0 154 ------- null} + -t 17.8813 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {3.0 21.0 154 ------- null} - -t 17.8813 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {3.0 21.0 154 ------- null} h -t 17.8813 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.8829 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {3.0 21.0 155 ------- null} + -t 17.8829 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {3.0 21.0 155 ------- null} - -t 17.8829 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {3.0 21.0 155 ------- null} h -t 17.8829 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.8845 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {3.0 21.0 156 ------- null} + -t 17.8845 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {3.0 21.0 156 ------- null} - -t 17.8845 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {3.0 21.0 156 ------- null} h -t 17.8845 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.8861 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {3.0 21.0 157 ------- null} + -t 17.8861 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {3.0 21.0 157 ------- null} - -t 17.8861 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {3.0 21.0 157 ------- null} h -t 17.8861 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.8877 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {3.0 21.0 158 ------- null} + -t 17.8877 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {3.0 21.0 158 ------- null} - -t 17.8877 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {3.0 21.0 158 ------- null} h -t 17.8877 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.8893 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 310 -a 0 -x {3.0 21.0 159 ------- null} + -t 17.8893 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 310 -a 0 -x {3.0 21.0 159 ------- null} - -t 17.8893 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 310 -a 0 -x {3.0 21.0 159 ------- null} h -t 17.8893 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 310 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.8909 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {3.0 21.0 160 ------- null} + -t 17.8909 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {3.0 21.0 160 ------- null} - -t 17.8909 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {3.0 21.0 160 ------- null} h -t 17.8909 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.8925 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 312 -a 0 -x {3.0 21.0 161 ------- null} + -t 17.8925 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 312 -a 0 -x {3.0 21.0 161 ------- null} - -t 17.8925 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 312 -a 0 -x {3.0 21.0 161 ------- null} h -t 17.8925 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 312 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.8941 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {3.0 21.0 162 ------- null} + -t 17.8941 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {3.0 21.0 162 ------- null} - -t 17.8941 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {3.0 21.0 162 ------- null} h -t 17.8941 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.8957 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 314 -a 0 -x {3.0 21.0 163 ------- null} + -t 17.8957 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 314 -a 0 -x {3.0 21.0 163 ------- null} - -t 17.8957 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 314 -a 0 -x {3.0 21.0 163 ------- null} h -t 17.8957 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 314 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.8973 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {3.0 21.0 164 ------- null} + -t 17.8973 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {3.0 21.0 164 ------- null} - -t 17.8973 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {3.0 21.0 164 ------- null} h -t 17.8973 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.8989 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 316 -a 0 -x {3.0 21.0 165 ------- null} + -t 17.8989 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 316 -a 0 -x {3.0 21.0 165 ------- null} - -t 17.8989 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 316 -a 0 -x {3.0 21.0 165 ------- null} h -t 17.8989 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 316 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.9005 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {3.0 21.0 166 ------- null} + -t 17.9005 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {3.0 21.0 166 ------- null} - -t 17.9005 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {3.0 21.0 166 ------- null} h -t 17.9005 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.9021 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 318 -a 0 -x {3.0 21.0 167 ------- null} + -t 17.9021 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 318 -a 0 -x {3.0 21.0 167 ------- null} - -t 17.9021 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 318 -a 0 -x {3.0 21.0 167 ------- null} h -t 17.9021 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 318 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.9037 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {3.0 21.0 168 ------- null} + -t 17.9037 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {3.0 21.0 168 ------- null} - -t 17.9037 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {3.0 21.0 168 ------- null} h -t 17.9037 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.9053 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {3.0 21.0 169 ------- null} + -t 17.9053 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {3.0 21.0 169 ------- null} - -t 17.9053 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {3.0 21.0 169 ------- null} h -t 17.9053 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.9069 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {3.0 21.0 170 ------- null} + -t 17.9069 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {3.0 21.0 170 ------- null} - -t 17.9069 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {3.0 21.0 170 ------- null} h -t 17.9069 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {3.0 21.0 -1 ------- null} r -t 18.1781 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {3.0 21.0 151 ------- null} + -t 18.1781 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {3.0 21.0 151 ------- null} - -t 18.1781 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {3.0 21.0 151 ------- null} h -t 18.1781 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {3.0 21.0 -1 ------- null} r -t 18.1797 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {3.0 21.0 152 ------- null} + -t 18.1797 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {3.0 21.0 152 ------- null} - -t 18.1797 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {3.0 21.0 152 ------- null} h -t 18.1797 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {3.0 21.0 -1 ------- null} r -t 18.1813 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {3.0 21.0 153 ------- null} + -t 18.1813 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {3.0 21.0 153 ------- null} - -t 18.1813 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {3.0 21.0 153 ------- null} h -t 18.1813 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {3.0 21.0 -1 ------- null} r -t 18.1829 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {3.0 21.0 154 ------- null} + -t 18.1829 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {3.0 21.0 154 ------- null} - -t 18.1829 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {3.0 21.0 154 ------- null} h -t 18.1829 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {3.0 21.0 -1 ------- null} r -t 18.1845 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {3.0 21.0 155 ------- null} + -t 18.1845 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {3.0 21.0 155 ------- null} - -t 18.1845 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {3.0 21.0 155 ------- null} h -t 18.1845 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {3.0 21.0 -1 ------- null} r -t 18.1861 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {3.0 21.0 156 ------- null} + -t 18.1861 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {3.0 21.0 156 ------- null} - -t 18.1861 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {3.0 21.0 156 ------- null} h -t 18.1861 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {3.0 21.0 -1 ------- null} r -t 18.1877 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {3.0 21.0 157 ------- null} + -t 18.1877 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {3.0 21.0 157 ------- null} - -t 18.1877 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {3.0 21.0 157 ------- null} h -t 18.1877 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {3.0 21.0 -1 ------- null} r -t 18.1893 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {3.0 21.0 158 ------- null} + -t 18.1893 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {3.0 21.0 158 ------- null} - -t 18.1893 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {3.0 21.0 158 ------- null} h -t 18.1893 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {3.0 21.0 -1 ------- null} r -t 18.1909 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 310 -a 0 -x {3.0 21.0 159 ------- null} + -t 18.1909 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 310 -a 0 -x {3.0 21.0 159 ------- null} - -t 18.1909 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 310 -a 0 -x {3.0 21.0 159 ------- null} h -t 18.1909 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 310 -a 0 -x {3.0 21.0 -1 ------- null} r -t 18.1925 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {3.0 21.0 160 ------- null} + -t 18.1925 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {3.0 21.0 160 ------- null} - -t 18.1925 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {3.0 21.0 160 ------- null} h -t 18.1925 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {3.0 21.0 -1 ------- null} r -t 18.1941 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 312 -a 0 -x {3.0 21.0 161 ------- null} + -t 18.1941 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 312 -a 0 -x {3.0 21.0 161 ------- null} - -t 18.1941 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 312 -a 0 -x {3.0 21.0 161 ------- null} h -t 18.1941 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 312 -a 0 -x {3.0 21.0 -1 ------- null} r -t 18.1957 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {3.0 21.0 162 ------- null} + -t 18.1957 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {3.0 21.0 162 ------- null} - -t 18.1957 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {3.0 21.0 162 ------- null} h -t 18.1957 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {3.0 21.0 -1 ------- null} r -t 18.1973 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 314 -a 0 -x {3.0 21.0 163 ------- null} + -t 18.1973 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 314 -a 0 -x {3.0 21.0 163 ------- null} - -t 18.1973 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 314 -a 0 -x {3.0 21.0 163 ------- null} h -t 18.1973 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 314 -a 0 -x {3.0 21.0 -1 ------- null} r -t 18.1989 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {3.0 21.0 164 ------- null} + -t 18.1989 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {3.0 21.0 164 ------- null} - -t 18.1989 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {3.0 21.0 164 ------- null} h -t 18.1989 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {3.0 21.0 -1 ------- null} r -t 18.2005 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 316 -a 0 -x {3.0 21.0 165 ------- null} + -t 18.2005 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 316 -a 0 -x {3.0 21.0 165 ------- null} - -t 18.2005 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 316 -a 0 -x {3.0 21.0 165 ------- null} h -t 18.2005 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 316 -a 0 -x {3.0 21.0 -1 ------- null} r -t 18.2021 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {3.0 21.0 166 ------- null} + -t 18.2021 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {3.0 21.0 166 ------- null} - -t 18.2021 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {3.0 21.0 166 ------- null} h -t 18.2021 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {3.0 21.0 -1 ------- null} r -t 18.2037 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 318 -a 0 -x {3.0 21.0 167 ------- null} + -t 18.2037 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 318 -a 0 -x {3.0 21.0 167 ------- null} - -t 18.2037 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 318 -a 0 -x {3.0 21.0 167 ------- null} h -t 18.2037 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 318 -a 0 -x {3.0 21.0 -1 ------- null} r -t 18.2053 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {3.0 21.0 168 ------- null} + -t 18.2053 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {3.0 21.0 168 ------- null} - -t 18.2053 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {3.0 21.0 168 ------- null} h -t 18.2053 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {3.0 21.0 -1 ------- null} r -t 18.2069 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {3.0 21.0 169 ------- null} + -t 18.2069 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {3.0 21.0 169 ------- null} - -t 18.2069 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {3.0 21.0 169 ------- null} h -t 18.2069 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {3.0 21.0 -1 ------- null} r -t 18.2085 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {3.0 21.0 170 ------- null} + -t 18.2085 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {3.0 21.0 170 ------- null} - -t 18.2085 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {3.0 21.0 170 ------- null} h -t 18.2085 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {3.0 21.0 -1 ------- null} r -t 18.5297 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {3.0 21.0 151 ------- null} + -t 18.5297 -s 21 -d 28 -p ack -e 40 -c 0 -i 322 -a 0 -x {21.0 3.0 151 ------- null} - -t 18.5297 -s 21 -d 28 -p ack -e 40 -c 0 -i 322 -a 0 -x {21.0 3.0 151 ------- null} h -t 18.5297 -s 21 -d 28 -p ack -e 40 -c 0 -i 322 -a 0 -x {21.0 3.0 -1 ------- null} r -t 18.5313 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {3.0 21.0 152 ------- null} + -t 18.5313 -s 21 -d 28 -p ack -e 40 -c 0 -i 323 -a 0 -x {21.0 3.0 152 ------- null} - -t 18.5313 -s 21 -d 28 -p ack -e 40 -c 0 -i 323 -a 0 -x {21.0 3.0 152 ------- null} h -t 18.5313 -s 21 -d 28 -p ack -e 40 -c 0 -i 323 -a 0 -x {21.0 3.0 -1 ------- null} r -t 18.5329 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {3.0 21.0 153 ------- null} + -t 18.5329 -s 21 -d 28 -p ack -e 40 -c 0 -i 324 -a 0 -x {21.0 3.0 153 ------- null} - -t 18.5329 -s 21 -d 28 -p ack -e 40 -c 0 -i 324 -a 0 -x {21.0 3.0 153 ------- null} h -t 18.5329 -s 21 -d 28 -p ack -e 40 -c 0 -i 324 -a 0 -x {21.0 3.0 -1 ------- null} r -t 18.5345 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {3.0 21.0 154 ------- null} + -t 18.5345 -s 21 -d 28 -p ack -e 40 -c 0 -i 325 -a 0 -x {21.0 3.0 154 ------- null} - -t 18.5345 -s 21 -d 28 -p ack -e 40 -c 0 -i 325 -a 0 -x {21.0 3.0 154 ------- null} h -t 18.5345 -s 21 -d 28 -p ack -e 40 -c 0 -i 325 -a 0 -x {21.0 3.0 -1 ------- null} r -t 18.5361 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {3.0 21.0 155 ------- null} + -t 18.5361 -s 21 -d 28 -p ack -e 40 -c 0 -i 326 -a 0 -x {21.0 3.0 155 ------- null} - -t 18.5361 -s 21 -d 28 -p ack -e 40 -c 0 -i 326 -a 0 -x {21.0 3.0 155 ------- null} h -t 18.5361 -s 21 -d 28 -p ack -e 40 -c 0 -i 326 -a 0 -x {21.0 3.0 -1 ------- null} r -t 18.5377 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {3.0 21.0 156 ------- null} + -t 18.5377 -s 21 -d 28 -p ack -e 40 -c 0 -i 327 -a 0 -x {21.0 3.0 156 ------- null} - -t 18.5377 -s 21 -d 28 -p ack -e 40 -c 0 -i 327 -a 0 -x {21.0 3.0 156 ------- null} h -t 18.5377 -s 21 -d 28 -p ack -e 40 -c 0 -i 327 -a 0 -x {21.0 3.0 -1 ------- null} r -t 18.5393 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {3.0 21.0 157 ------- null} + -t 18.5393 -s 21 -d 28 -p ack -e 40 -c 0 -i 328 -a 0 -x {21.0 3.0 157 ------- null} - -t 18.5393 -s 21 -d 28 -p ack -e 40 -c 0 -i 328 -a 0 -x {21.0 3.0 157 ------- null} h -t 18.5393 -s 21 -d 28 -p ack -e 40 -c 0 -i 328 -a 0 -x {21.0 3.0 -1 ------- null} r -t 18.5409 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {3.0 21.0 158 ------- null} + -t 18.5409 -s 21 -d 28 -p ack -e 40 -c 0 -i 329 -a 0 -x {21.0 3.0 158 ------- null} - -t 18.5409 -s 21 -d 28 -p ack -e 40 -c 0 -i 329 -a 0 -x {21.0 3.0 158 ------- null} h -t 18.5409 -s 21 -d 28 -p ack -e 40 -c 0 -i 329 -a 0 -x {21.0 3.0 -1 ------- null} r -t 18.5425 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 310 -a 0 -x {3.0 21.0 159 ------- null} + -t 18.5425 -s 21 -d 28 -p ack -e 40 -c 0 -i 330 -a 0 -x {21.0 3.0 159 ------- null} - -t 18.5425 -s 21 -d 28 -p ack -e 40 -c 0 -i 330 -a 0 -x {21.0 3.0 159 ------- null} h -t 18.5425 -s 21 -d 28 -p ack -e 40 -c 0 -i 330 -a 0 -x {21.0 3.0 -1 ------- null} r -t 18.5441 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {3.0 21.0 160 ------- null} + -t 18.5441 -s 21 -d 28 -p ack -e 40 -c 0 -i 331 -a 0 -x {21.0 3.0 160 ------- null} - -t 18.5441 -s 21 -d 28 -p ack -e 40 -c 0 -i 331 -a 0 -x {21.0 3.0 160 ------- null} h -t 18.5441 -s 21 -d 28 -p ack -e 40 -c 0 -i 331 -a 0 -x {21.0 3.0 -1 ------- null} r -t 18.5457 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 312 -a 0 -x {3.0 21.0 161 ------- null} + -t 18.5457 -s 21 -d 28 -p ack -e 40 -c 0 -i 332 -a 0 -x {21.0 3.0 161 ------- null} - -t 18.5457 -s 21 -d 28 -p ack -e 40 -c 0 -i 332 -a 0 -x {21.0 3.0 161 ------- null} h -t 18.5457 -s 21 -d 28 -p ack -e 40 -c 0 -i 332 -a 0 -x {21.0 3.0 -1 ------- null} r -t 18.5473 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {3.0 21.0 162 ------- null} + -t 18.5473 -s 21 -d 28 -p ack -e 40 -c 0 -i 333 -a 0 -x {21.0 3.0 162 ------- null} - -t 18.5473 -s 21 -d 28 -p ack -e 40 -c 0 -i 333 -a 0 -x {21.0 3.0 162 ------- null} h -t 18.5473 -s 21 -d 28 -p ack -e 40 -c 0 -i 333 -a 0 -x {21.0 3.0 -1 ------- null} r -t 18.5489 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 314 -a 0 -x {3.0 21.0 163 ------- null} + -t 18.5489 -s 21 -d 28 -p ack -e 40 -c 0 -i 334 -a 0 -x {21.0 3.0 163 ------- null} - -t 18.5489 -s 21 -d 28 -p ack -e 40 -c 0 -i 334 -a 0 -x {21.0 3.0 163 ------- null} h -t 18.5489 -s 21 -d 28 -p ack -e 40 -c 0 -i 334 -a 0 -x {21.0 3.0 -1 ------- null} r -t 18.5505 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {3.0 21.0 164 ------- null} + -t 18.5505 -s 21 -d 28 -p ack -e 40 -c 0 -i 335 -a 0 -x {21.0 3.0 164 ------- null} - -t 18.5505 -s 21 -d 28 -p ack -e 40 -c 0 -i 335 -a 0 -x {21.0 3.0 164 ------- null} h -t 18.5505 -s 21 -d 28 -p ack -e 40 -c 0 -i 335 -a 0 -x {21.0 3.0 -1 ------- null} r -t 18.5521 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 316 -a 0 -x {3.0 21.0 165 ------- null} + -t 18.5521 -s 21 -d 28 -p ack -e 40 -c 0 -i 336 -a 0 -x {21.0 3.0 165 ------- null} - -t 18.5521 -s 21 -d 28 -p ack -e 40 -c 0 -i 336 -a 0 -x {21.0 3.0 165 ------- null} h -t 18.5521 -s 21 -d 28 -p ack -e 40 -c 0 -i 336 -a 0 -x {21.0 3.0 -1 ------- null} r -t 18.5537 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {3.0 21.0 166 ------- null} + -t 18.5537 -s 21 -d 28 -p ack -e 40 -c 0 -i 337 -a 0 -x {21.0 3.0 166 ------- null} - -t 18.5537 -s 21 -d 28 -p ack -e 40 -c 0 -i 337 -a 0 -x {21.0 3.0 166 ------- null} h -t 18.5537 -s 21 -d 28 -p ack -e 40 -c 0 -i 337 -a 0 -x {21.0 3.0 -1 ------- null} r -t 18.5553 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 318 -a 0 -x {3.0 21.0 167 ------- null} + -t 18.5553 -s 21 -d 28 -p ack -e 40 -c 0 -i 338 -a 0 -x {21.0 3.0 167 ------- null} - -t 18.5553 -s 21 -d 28 -p ack -e 40 -c 0 -i 338 -a 0 -x {21.0 3.0 167 ------- null} h -t 18.5553 -s 21 -d 28 -p ack -e 40 -c 0 -i 338 -a 0 -x {21.0 3.0 -1 ------- null} r -t 18.5569 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {3.0 21.0 168 ------- null} + -t 18.5569 -s 21 -d 28 -p ack -e 40 -c 0 -i 339 -a 0 -x {21.0 3.0 168 ------- null} - -t 18.5569 -s 21 -d 28 -p ack -e 40 -c 0 -i 339 -a 0 -x {21.0 3.0 168 ------- null} h -t 18.5569 -s 21 -d 28 -p ack -e 40 -c 0 -i 339 -a 0 -x {21.0 3.0 -1 ------- null} r -t 18.5585 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {3.0 21.0 169 ------- null} + -t 18.5585 -s 21 -d 28 -p ack -e 40 -c 0 -i 340 -a 0 -x {21.0 3.0 169 ------- null} - -t 18.5585 -s 21 -d 28 -p ack -e 40 -c 0 -i 340 -a 0 -x {21.0 3.0 169 ------- null} h -t 18.5585 -s 21 -d 28 -p ack -e 40 -c 0 -i 340 -a 0 -x {21.0 3.0 -1 ------- null} r -t 18.5601 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {3.0 21.0 170 ------- null} + -t 18.5601 -s 21 -d 28 -p ack -e 40 -c 0 -i 341 -a 0 -x {21.0 3.0 170 ------- null} - -t 18.5601 -s 21 -d 28 -p ack -e 40 -c 0 -i 341 -a 0 -x {21.0 3.0 170 ------- null} h -t 18.5601 -s 21 -d 28 -p ack -e 40 -c 0 -i 341 -a 0 -x {21.0 3.0 -1 ------- null} r -t 18.8798 -s 21 -d 28 -p ack -e 40 -c 0 -i 322 -a 0 -x {21.0 3.0 151 ------- null} + -t 18.8798 -s 28 -d 1 -p ack -e 40 -c 0 -i 322 -a 0 -x {21.0 3.0 151 ------- null} - -t 18.8798 -s 28 -d 1 -p ack -e 40 -c 0 -i 322 -a 0 -x {21.0 3.0 151 ------- null} h -t 18.8798 -s 28 -d 1 -p ack -e 40 -c 0 -i 322 -a 0 -x {21.0 3.0 -1 ------- null} r -t 18.8814 -s 21 -d 28 -p ack -e 40 -c 0 -i 323 -a 0 -x {21.0 3.0 152 ------- null} + -t 18.8814 -s 28 -d 1 -p ack -e 40 -c 0 -i 323 -a 0 -x {21.0 3.0 152 ------- null} - -t 18.8814 -s 28 -d 1 -p ack -e 40 -c 0 -i 323 -a 0 -x {21.0 3.0 152 ------- null} h -t 18.8814 -s 28 -d 1 -p ack -e 40 -c 0 -i 323 -a 0 -x {21.0 3.0 -1 ------- null} r -t 18.883 -s 21 -d 28 -p ack -e 40 -c 0 -i 324 -a 0 -x {21.0 3.0 153 ------- null} + -t 18.883 -s 28 -d 1 -p ack -e 40 -c 0 -i 324 -a 0 -x {21.0 3.0 153 ------- null} - -t 18.883 -s 28 -d 1 -p ack -e 40 -c 0 -i 324 -a 0 -x {21.0 3.0 153 ------- null} h -t 18.883 -s 28 -d 1 -p ack -e 40 -c 0 -i 324 -a 0 -x {21.0 3.0 -1 ------- null} r -t 18.8846 -s 21 -d 28 -p ack -e 40 -c 0 -i 325 -a 0 -x {21.0 3.0 154 ------- null} + -t 18.8846 -s 28 -d 1 -p ack -e 40 -c 0 -i 325 -a 0 -x {21.0 3.0 154 ------- null} - -t 18.8846 -s 28 -d 1 -p ack -e 40 -c 0 -i 325 -a 0 -x {21.0 3.0 154 ------- null} h -t 18.8846 -s 28 -d 1 -p ack -e 40 -c 0 -i 325 -a 0 -x {21.0 3.0 -1 ------- null} r -t 18.8862 -s 21 -d 28 -p ack -e 40 -c 0 -i 326 -a 0 -x {21.0 3.0 155 ------- null} + -t 18.8862 -s 28 -d 1 -p ack -e 40 -c 0 -i 326 -a 0 -x {21.0 3.0 155 ------- null} - -t 18.8862 -s 28 -d 1 -p ack -e 40 -c 0 -i 326 -a 0 -x {21.0 3.0 155 ------- null} h -t 18.8862 -s 28 -d 1 -p ack -e 40 -c 0 -i 326 -a 0 -x {21.0 3.0 -1 ------- null} r -t 18.8878 -s 21 -d 28 -p ack -e 40 -c 0 -i 327 -a 0 -x {21.0 3.0 156 ------- null} + -t 18.8878 -s 28 -d 1 -p ack -e 40 -c 0 -i 327 -a 0 -x {21.0 3.0 156 ------- null} - -t 18.8878 -s 28 -d 1 -p ack -e 40 -c 0 -i 327 -a 0 -x {21.0 3.0 156 ------- null} h -t 18.8878 -s 28 -d 1 -p ack -e 40 -c 0 -i 327 -a 0 -x {21.0 3.0 -1 ------- null} r -t 18.8894 -s 21 -d 28 -p ack -e 40 -c 0 -i 328 -a 0 -x {21.0 3.0 157 ------- null} + -t 18.8894 -s 28 -d 1 -p ack -e 40 -c 0 -i 328 -a 0 -x {21.0 3.0 157 ------- null} - -t 18.8894 -s 28 -d 1 -p ack -e 40 -c 0 -i 328 -a 0 -x {21.0 3.0 157 ------- null} h -t 18.8894 -s 28 -d 1 -p ack -e 40 -c 0 -i 328 -a 0 -x {21.0 3.0 -1 ------- null} r -t 18.891 -s 21 -d 28 -p ack -e 40 -c 0 -i 329 -a 0 -x {21.0 3.0 158 ------- null} + -t 18.891 -s 28 -d 1 -p ack -e 40 -c 0 -i 329 -a 0 -x {21.0 3.0 158 ------- null} - -t 18.891 -s 28 -d 1 -p ack -e 40 -c 0 -i 329 -a 0 -x {21.0 3.0 158 ------- null} h -t 18.891 -s 28 -d 1 -p ack -e 40 -c 0 -i 329 -a 0 -x {21.0 3.0 -1 ------- null} r -t 18.8926 -s 21 -d 28 -p ack -e 40 -c 0 -i 330 -a 0 -x {21.0 3.0 159 ------- null} + -t 18.8926 -s 28 -d 1 -p ack -e 40 -c 0 -i 330 -a 0 -x {21.0 3.0 159 ------- null} - -t 18.8926 -s 28 -d 1 -p ack -e 40 -c 0 -i 330 -a 0 -x {21.0 3.0 159 ------- null} h -t 18.8926 -s 28 -d 1 -p ack -e 40 -c 0 -i 330 -a 0 -x {21.0 3.0 -1 ------- null} r -t 18.8942 -s 21 -d 28 -p ack -e 40 -c 0 -i 331 -a 0 -x {21.0 3.0 160 ------- null} + -t 18.8942 -s 28 -d 1 -p ack -e 40 -c 0 -i 331 -a 0 -x {21.0 3.0 160 ------- null} - -t 18.8942 -s 28 -d 1 -p ack -e 40 -c 0 -i 331 -a 0 -x {21.0 3.0 160 ------- null} h -t 18.8942 -s 28 -d 1 -p ack -e 40 -c 0 -i 331 -a 0 -x {21.0 3.0 -1 ------- null} r -t 18.8958 -s 21 -d 28 -p ack -e 40 -c 0 -i 332 -a 0 -x {21.0 3.0 161 ------- null} + -t 18.8958 -s 28 -d 1 -p ack -e 40 -c 0 -i 332 -a 0 -x {21.0 3.0 161 ------- null} - -t 18.8958 -s 28 -d 1 -p ack -e 40 -c 0 -i 332 -a 0 -x {21.0 3.0 161 ------- null} h -t 18.8958 -s 28 -d 1 -p ack -e 40 -c 0 -i 332 -a 0 -x {21.0 3.0 -1 ------- null} r -t 18.8974 -s 21 -d 28 -p ack -e 40 -c 0 -i 333 -a 0 -x {21.0 3.0 162 ------- null} + -t 18.8974 -s 28 -d 1 -p ack -e 40 -c 0 -i 333 -a 0 -x {21.0 3.0 162 ------- null} - -t 18.8974 -s 28 -d 1 -p ack -e 40 -c 0 -i 333 -a 0 -x {21.0 3.0 162 ------- null} h -t 18.8974 -s 28 -d 1 -p ack -e 40 -c 0 -i 333 -a 0 -x {21.0 3.0 -1 ------- null} r -t 18.899 -s 21 -d 28 -p ack -e 40 -c 0 -i 334 -a 0 -x {21.0 3.0 163 ------- null} + -t 18.899 -s 28 -d 1 -p ack -e 40 -c 0 -i 334 -a 0 -x {21.0 3.0 163 ------- null} - -t 18.899 -s 28 -d 1 -p ack -e 40 -c 0 -i 334 -a 0 -x {21.0 3.0 163 ------- null} h -t 18.899 -s 28 -d 1 -p ack -e 40 -c 0 -i 334 -a 0 -x {21.0 3.0 -1 ------- null} r -t 18.9006 -s 21 -d 28 -p ack -e 40 -c 0 -i 335 -a 0 -x {21.0 3.0 164 ------- null} + -t 18.9006 -s 28 -d 1 -p ack -e 40 -c 0 -i 335 -a 0 -x {21.0 3.0 164 ------- null} - -t 18.9006 -s 28 -d 1 -p ack -e 40 -c 0 -i 335 -a 0 -x {21.0 3.0 164 ------- null} h -t 18.9006 -s 28 -d 1 -p ack -e 40 -c 0 -i 335 -a 0 -x {21.0 3.0 -1 ------- null} r -t 18.9022 -s 21 -d 28 -p ack -e 40 -c 0 -i 336 -a 0 -x {21.0 3.0 165 ------- null} + -t 18.9022 -s 28 -d 1 -p ack -e 40 -c 0 -i 336 -a 0 -x {21.0 3.0 165 ------- null} - -t 18.9022 -s 28 -d 1 -p ack -e 40 -c 0 -i 336 -a 0 -x {21.0 3.0 165 ------- null} h -t 18.9022 -s 28 -d 1 -p ack -e 40 -c 0 -i 336 -a 0 -x {21.0 3.0 -1 ------- null} r -t 18.9038 -s 21 -d 28 -p ack -e 40 -c 0 -i 337 -a 0 -x {21.0 3.0 166 ------- null} + -t 18.9038 -s 28 -d 1 -p ack -e 40 -c 0 -i 337 -a 0 -x {21.0 3.0 166 ------- null} - -t 18.9038 -s 28 -d 1 -p ack -e 40 -c 0 -i 337 -a 0 -x {21.0 3.0 166 ------- null} h -t 18.9038 -s 28 -d 1 -p ack -e 40 -c 0 -i 337 -a 0 -x {21.0 3.0 -1 ------- null} r -t 18.9054 -s 21 -d 28 -p ack -e 40 -c 0 -i 338 -a 0 -x {21.0 3.0 167 ------- null} + -t 18.9054 -s 28 -d 1 -p ack -e 40 -c 0 -i 338 -a 0 -x {21.0 3.0 167 ------- null} - -t 18.9054 -s 28 -d 1 -p ack -e 40 -c 0 -i 338 -a 0 -x {21.0 3.0 167 ------- null} h -t 18.9054 -s 28 -d 1 -p ack -e 40 -c 0 -i 338 -a 0 -x {21.0 3.0 -1 ------- null} r -t 18.907 -s 21 -d 28 -p ack -e 40 -c 0 -i 339 -a 0 -x {21.0 3.0 168 ------- null} + -t 18.907 -s 28 -d 1 -p ack -e 40 -c 0 -i 339 -a 0 -x {21.0 3.0 168 ------- null} - -t 18.907 -s 28 -d 1 -p ack -e 40 -c 0 -i 339 -a 0 -x {21.0 3.0 168 ------- null} h -t 18.907 -s 28 -d 1 -p ack -e 40 -c 0 -i 339 -a 0 -x {21.0 3.0 -1 ------- null} r -t 18.9086 -s 21 -d 28 -p ack -e 40 -c 0 -i 340 -a 0 -x {21.0 3.0 169 ------- null} + -t 18.9086 -s 28 -d 1 -p ack -e 40 -c 0 -i 340 -a 0 -x {21.0 3.0 169 ------- null} - -t 18.9086 -s 28 -d 1 -p ack -e 40 -c 0 -i 340 -a 0 -x {21.0 3.0 169 ------- null} h -t 18.9086 -s 28 -d 1 -p ack -e 40 -c 0 -i 340 -a 0 -x {21.0 3.0 -1 ------- null} r -t 18.9102 -s 21 -d 28 -p ack -e 40 -c 0 -i 341 -a 0 -x {21.0 3.0 170 ------- null} + -t 18.9102 -s 28 -d 1 -p ack -e 40 -c 0 -i 341 -a 0 -x {21.0 3.0 170 ------- null} - -t 18.9102 -s 28 -d 1 -p ack -e 40 -c 0 -i 341 -a 0 -x {21.0 3.0 170 ------- null} h -t 18.9102 -s 28 -d 1 -p ack -e 40 -c 0 -i 341 -a 0 -x {21.0 3.0 -1 ------- null} r -t 19.1798 -s 28 -d 1 -p ack -e 40 -c 0 -i 322 -a 0 -x {21.0 3.0 151 ------- null} + -t 19.1798 -s 1 -d 3 -p ack -e 40 -c 0 -i 322 -a 0 -x {21.0 3.0 151 ------- null} - -t 19.1798 -s 1 -d 3 -p ack -e 40 -c 0 -i 322 -a 0 -x {21.0 3.0 151 ------- null} h -t 19.1798 -s 1 -d 3 -p ack -e 40 -c 0 -i 322 -a 0 -x {21.0 3.0 -1 ------- null} r -t 19.1814 -s 28 -d 1 -p ack -e 40 -c 0 -i 323 -a 0 -x {21.0 3.0 152 ------- null} + -t 19.1814 -s 1 -d 3 -p ack -e 40 -c 0 -i 323 -a 0 -x {21.0 3.0 152 ------- null} - -t 19.1814 -s 1 -d 3 -p ack -e 40 -c 0 -i 323 -a 0 -x {21.0 3.0 152 ------- null} h -t 19.1814 -s 1 -d 3 -p ack -e 40 -c 0 -i 323 -a 0 -x {21.0 3.0 -1 ------- null} r -t 19.183 -s 28 -d 1 -p ack -e 40 -c 0 -i 324 -a 0 -x {21.0 3.0 153 ------- null} + -t 19.183 -s 1 -d 3 -p ack -e 40 -c 0 -i 324 -a 0 -x {21.0 3.0 153 ------- null} - -t 19.183 -s 1 -d 3 -p ack -e 40 -c 0 -i 324 -a 0 -x {21.0 3.0 153 ------- null} h -t 19.183 -s 1 -d 3 -p ack -e 40 -c 0 -i 324 -a 0 -x {21.0 3.0 -1 ------- null} r -t 19.1846 -s 28 -d 1 -p ack -e 40 -c 0 -i 325 -a 0 -x {21.0 3.0 154 ------- null} + -t 19.1846 -s 1 -d 3 -p ack -e 40 -c 0 -i 325 -a 0 -x {21.0 3.0 154 ------- null} - -t 19.1846 -s 1 -d 3 -p ack -e 40 -c 0 -i 325 -a 0 -x {21.0 3.0 154 ------- null} h -t 19.1846 -s 1 -d 3 -p ack -e 40 -c 0 -i 325 -a 0 -x {21.0 3.0 -1 ------- null} r -t 19.1862 -s 28 -d 1 -p ack -e 40 -c 0 -i 326 -a 0 -x {21.0 3.0 155 ------- null} + -t 19.1862 -s 1 -d 3 -p ack -e 40 -c 0 -i 326 -a 0 -x {21.0 3.0 155 ------- null} - -t 19.1862 -s 1 -d 3 -p ack -e 40 -c 0 -i 326 -a 0 -x {21.0 3.0 155 ------- null} h -t 19.1862 -s 1 -d 3 -p ack -e 40 -c 0 -i 326 -a 0 -x {21.0 3.0 -1 ------- null} r -t 19.1878 -s 28 -d 1 -p ack -e 40 -c 0 -i 327 -a 0 -x {21.0 3.0 156 ------- null} + -t 19.1878 -s 1 -d 3 -p ack -e 40 -c 0 -i 327 -a 0 -x {21.0 3.0 156 ------- null} - -t 19.1878 -s 1 -d 3 -p ack -e 40 -c 0 -i 327 -a 0 -x {21.0 3.0 156 ------- null} h -t 19.1878 -s 1 -d 3 -p ack -e 40 -c 0 -i 327 -a 0 -x {21.0 3.0 -1 ------- null} r -t 19.1894 -s 28 -d 1 -p ack -e 40 -c 0 -i 328 -a 0 -x {21.0 3.0 157 ------- null} + -t 19.1894 -s 1 -d 3 -p ack -e 40 -c 0 -i 328 -a 0 -x {21.0 3.0 157 ------- null} - -t 19.1894 -s 1 -d 3 -p ack -e 40 -c 0 -i 328 -a 0 -x {21.0 3.0 157 ------- null} h -t 19.1894 -s 1 -d 3 -p ack -e 40 -c 0 -i 328 -a 0 -x {21.0 3.0 -1 ------- null} r -t 19.191 -s 28 -d 1 -p ack -e 40 -c 0 -i 329 -a 0 -x {21.0 3.0 158 ------- null} + -t 19.191 -s 1 -d 3 -p ack -e 40 -c 0 -i 329 -a 0 -x {21.0 3.0 158 ------- null} - -t 19.191 -s 1 -d 3 -p ack -e 40 -c 0 -i 329 -a 0 -x {21.0 3.0 158 ------- null} h -t 19.191 -s 1 -d 3 -p ack -e 40 -c 0 -i 329 -a 0 -x {21.0 3.0 -1 ------- null} r -t 19.1926 -s 28 -d 1 -p ack -e 40 -c 0 -i 330 -a 0 -x {21.0 3.0 159 ------- null} + -t 19.1926 -s 1 -d 3 -p ack -e 40 -c 0 -i 330 -a 0 -x {21.0 3.0 159 ------- null} - -t 19.1926 -s 1 -d 3 -p ack -e 40 -c 0 -i 330 -a 0 -x {21.0 3.0 159 ------- null} h -t 19.1926 -s 1 -d 3 -p ack -e 40 -c 0 -i 330 -a 0 -x {21.0 3.0 -1 ------- null} r -t 19.1942 -s 28 -d 1 -p ack -e 40 -c 0 -i 331 -a 0 -x {21.0 3.0 160 ------- null} + -t 19.1942 -s 1 -d 3 -p ack -e 40 -c 0 -i 331 -a 0 -x {21.0 3.0 160 ------- null} - -t 19.1942 -s 1 -d 3 -p ack -e 40 -c 0 -i 331 -a 0 -x {21.0 3.0 160 ------- null} h -t 19.1942 -s 1 -d 3 -p ack -e 40 -c 0 -i 331 -a 0 -x {21.0 3.0 -1 ------- null} r -t 19.1958 -s 28 -d 1 -p ack -e 40 -c 0 -i 332 -a 0 -x {21.0 3.0 161 ------- null} + -t 19.1958 -s 1 -d 3 -p ack -e 40 -c 0 -i 332 -a 0 -x {21.0 3.0 161 ------- null} - -t 19.1958 -s 1 -d 3 -p ack -e 40 -c 0 -i 332 -a 0 -x {21.0 3.0 161 ------- null} h -t 19.1958 -s 1 -d 3 -p ack -e 40 -c 0 -i 332 -a 0 -x {21.0 3.0 -1 ------- null} r -t 19.1974 -s 28 -d 1 -p ack -e 40 -c 0 -i 333 -a 0 -x {21.0 3.0 162 ------- null} + -t 19.1974 -s 1 -d 3 -p ack -e 40 -c 0 -i 333 -a 0 -x {21.0 3.0 162 ------- null} - -t 19.1974 -s 1 -d 3 -p ack -e 40 -c 0 -i 333 -a 0 -x {21.0 3.0 162 ------- null} h -t 19.1974 -s 1 -d 3 -p ack -e 40 -c 0 -i 333 -a 0 -x {21.0 3.0 -1 ------- null} r -t 19.199 -s 28 -d 1 -p ack -e 40 -c 0 -i 334 -a 0 -x {21.0 3.0 163 ------- null} + -t 19.199 -s 1 -d 3 -p ack -e 40 -c 0 -i 334 -a 0 -x {21.0 3.0 163 ------- null} - -t 19.199 -s 1 -d 3 -p ack -e 40 -c 0 -i 334 -a 0 -x {21.0 3.0 163 ------- null} h -t 19.199 -s 1 -d 3 -p ack -e 40 -c 0 -i 334 -a 0 -x {21.0 3.0 -1 ------- null} r -t 19.2006 -s 28 -d 1 -p ack -e 40 -c 0 -i 335 -a 0 -x {21.0 3.0 164 ------- null} + -t 19.2006 -s 1 -d 3 -p ack -e 40 -c 0 -i 335 -a 0 -x {21.0 3.0 164 ------- null} - -t 19.2006 -s 1 -d 3 -p ack -e 40 -c 0 -i 335 -a 0 -x {21.0 3.0 164 ------- null} h -t 19.2006 -s 1 -d 3 -p ack -e 40 -c 0 -i 335 -a 0 -x {21.0 3.0 -1 ------- null} r -t 19.2022 -s 28 -d 1 -p ack -e 40 -c 0 -i 336 -a 0 -x {21.0 3.0 165 ------- null} + -t 19.2022 -s 1 -d 3 -p ack -e 40 -c 0 -i 336 -a 0 -x {21.0 3.0 165 ------- null} - -t 19.2022 -s 1 -d 3 -p ack -e 40 -c 0 -i 336 -a 0 -x {21.0 3.0 165 ------- null} h -t 19.2022 -s 1 -d 3 -p ack -e 40 -c 0 -i 336 -a 0 -x {21.0 3.0 -1 ------- null} r -t 19.2038 -s 28 -d 1 -p ack -e 40 -c 0 -i 337 -a 0 -x {21.0 3.0 166 ------- null} + -t 19.2038 -s 1 -d 3 -p ack -e 40 -c 0 -i 337 -a 0 -x {21.0 3.0 166 ------- null} - -t 19.2038 -s 1 -d 3 -p ack -e 40 -c 0 -i 337 -a 0 -x {21.0 3.0 166 ------- null} h -t 19.2038 -s 1 -d 3 -p ack -e 40 -c 0 -i 337 -a 0 -x {21.0 3.0 -1 ------- null} r -t 19.2054 -s 28 -d 1 -p ack -e 40 -c 0 -i 338 -a 0 -x {21.0 3.0 167 ------- null} + -t 19.2054 -s 1 -d 3 -p ack -e 40 -c 0 -i 338 -a 0 -x {21.0 3.0 167 ------- null} - -t 19.2054 -s 1 -d 3 -p ack -e 40 -c 0 -i 338 -a 0 -x {21.0 3.0 167 ------- null} h -t 19.2054 -s 1 -d 3 -p ack -e 40 -c 0 -i 338 -a 0 -x {21.0 3.0 -1 ------- null} r -t 19.207 -s 28 -d 1 -p ack -e 40 -c 0 -i 339 -a 0 -x {21.0 3.0 168 ------- null} + -t 19.207 -s 1 -d 3 -p ack -e 40 -c 0 -i 339 -a 0 -x {21.0 3.0 168 ------- null} - -t 19.207 -s 1 -d 3 -p ack -e 40 -c 0 -i 339 -a 0 -x {21.0 3.0 168 ------- null} h -t 19.207 -s 1 -d 3 -p ack -e 40 -c 0 -i 339 -a 0 -x {21.0 3.0 -1 ------- null} r -t 19.2086 -s 28 -d 1 -p ack -e 40 -c 0 -i 340 -a 0 -x {21.0 3.0 169 ------- null} + -t 19.2086 -s 1 -d 3 -p ack -e 40 -c 0 -i 340 -a 0 -x {21.0 3.0 169 ------- null} - -t 19.2086 -s 1 -d 3 -p ack -e 40 -c 0 -i 340 -a 0 -x {21.0 3.0 169 ------- null} h -t 19.2086 -s 1 -d 3 -p ack -e 40 -c 0 -i 340 -a 0 -x {21.0 3.0 -1 ------- null} r -t 19.2102 -s 28 -d 1 -p ack -e 40 -c 0 -i 341 -a 0 -x {21.0 3.0 170 ------- null} + -t 19.2102 -s 1 -d 3 -p ack -e 40 -c 0 -i 341 -a 0 -x {21.0 3.0 170 ------- null} - -t 19.2102 -s 1 -d 3 -p ack -e 40 -c 0 -i 341 -a 0 -x {21.0 3.0 170 ------- null} h -t 19.2102 -s 1 -d 3 -p ack -e 40 -c 0 -i 341 -a 0 -x {21.0 3.0 -1 ------- null} r -t 19.3199 -s 1 -d 3 -p ack -e 40 -c 0 -i 322 -a 0 -x {21.0 3.0 151 ------- null} + -t 19.3199 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 342 -a 0 -x {3.0 21.0 171 ------- null} - -t 19.3199 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 342 -a 0 -x {3.0 21.0 171 ------- null} h -t 19.3199 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 342 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.3215 -s 1 -d 3 -p ack -e 40 -c 0 -i 323 -a 0 -x {21.0 3.0 152 ------- null} + -t 19.3215 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {3.0 21.0 172 ------- null} - -t 19.3215 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {3.0 21.0 172 ------- null} h -t 19.3215 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.3231 -s 1 -d 3 -p ack -e 40 -c 0 -i 324 -a 0 -x {21.0 3.0 153 ------- null} + -t 19.3231 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 344 -a 0 -x {3.0 21.0 173 ------- null} - -t 19.3231 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 344 -a 0 -x {3.0 21.0 173 ------- null} h -t 19.3231 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 344 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.3247 -s 1 -d 3 -p ack -e 40 -c 0 -i 325 -a 0 -x {21.0 3.0 154 ------- null} + -t 19.3247 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {3.0 21.0 174 ------- null} - -t 19.3247 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {3.0 21.0 174 ------- null} h -t 19.3247 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.3263 -s 1 -d 3 -p ack -e 40 -c 0 -i 326 -a 0 -x {21.0 3.0 155 ------- null} + -t 19.3263 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {3.0 21.0 175 ------- null} - -t 19.3263 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {3.0 21.0 175 ------- null} h -t 19.3263 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.3279 -s 1 -d 3 -p ack -e 40 -c 0 -i 327 -a 0 -x {21.0 3.0 156 ------- null} + -t 19.3279 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {3.0 21.0 176 ------- null} - -t 19.3279 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {3.0 21.0 176 ------- null} h -t 19.3279 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.3295 -s 1 -d 3 -p ack -e 40 -c 0 -i 328 -a 0 -x {21.0 3.0 157 ------- null} + -t 19.3295 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {3.0 21.0 177 ------- null} - -t 19.3295 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {3.0 21.0 177 ------- null} h -t 19.3295 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.3311 -s 1 -d 3 -p ack -e 40 -c 0 -i 329 -a 0 -x {21.0 3.0 158 ------- null} + -t 19.3311 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {3.0 21.0 178 ------- null} - -t 19.3311 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {3.0 21.0 178 ------- null} h -t 19.3311 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.3327 -s 1 -d 3 -p ack -e 40 -c 0 -i 330 -a 0 -x {21.0 3.0 159 ------- null} + -t 19.3327 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {3.0 21.0 179 ------- null} - -t 19.3327 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {3.0 21.0 179 ------- null} h -t 19.3327 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.3343 -s 1 -d 3 -p ack -e 40 -c 0 -i 331 -a 0 -x {21.0 3.0 160 ------- null} + -t 19.3343 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {3.0 21.0 180 ------- null} - -t 19.3343 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {3.0 21.0 180 ------- null} h -t 19.3343 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.3359 -s 1 -d 3 -p ack -e 40 -c 0 -i 332 -a 0 -x {21.0 3.0 161 ------- null} + -t 19.3359 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {3.0 21.0 181 ------- null} - -t 19.3359 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {3.0 21.0 181 ------- null} h -t 19.3359 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.3375 -s 1 -d 3 -p ack -e 40 -c 0 -i 333 -a 0 -x {21.0 3.0 162 ------- null} + -t 19.3375 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {3.0 21.0 182 ------- null} - -t 19.3375 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {3.0 21.0 182 ------- null} h -t 19.3375 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.3391 -s 1 -d 3 -p ack -e 40 -c 0 -i 334 -a 0 -x {21.0 3.0 163 ------- null} + -t 19.3391 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {3.0 21.0 183 ------- null} - -t 19.3391 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {3.0 21.0 183 ------- null} h -t 19.3391 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.3407 -s 1 -d 3 -p ack -e 40 -c 0 -i 335 -a 0 -x {21.0 3.0 164 ------- null} + -t 19.3407 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {3.0 21.0 184 ------- null} - -t 19.3407 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {3.0 21.0 184 ------- null} h -t 19.3407 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.3423 -s 1 -d 3 -p ack -e 40 -c 0 -i 336 -a 0 -x {21.0 3.0 165 ------- null} + -t 19.3423 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 356 -a 0 -x {3.0 21.0 185 ------- null} - -t 19.3423 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 356 -a 0 -x {3.0 21.0 185 ------- null} h -t 19.3423 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 356 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.3439 -s 1 -d 3 -p ack -e 40 -c 0 -i 337 -a 0 -x {21.0 3.0 166 ------- null} + -t 19.3439 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {3.0 21.0 186 ------- null} - -t 19.3439 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {3.0 21.0 186 ------- null} h -t 19.3439 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.3455 -s 1 -d 3 -p ack -e 40 -c 0 -i 338 -a 0 -x {21.0 3.0 167 ------- null} + -t 19.3455 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 358 -a 0 -x {3.0 21.0 187 ------- null} - -t 19.3455 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 358 -a 0 -x {3.0 21.0 187 ------- null} h -t 19.3455 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 358 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.3471 -s 1 -d 3 -p ack -e 40 -c 0 -i 339 -a 0 -x {21.0 3.0 168 ------- null} + -t 19.3471 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {3.0 21.0 188 ------- null} - -t 19.3471 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {3.0 21.0 188 ------- null} h -t 19.3471 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.3487 -s 1 -d 3 -p ack -e 40 -c 0 -i 340 -a 0 -x {21.0 3.0 169 ------- null} + -t 19.3487 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 360 -a 0 -x {3.0 21.0 189 ------- null} - -t 19.3487 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 360 -a 0 -x {3.0 21.0 189 ------- null} h -t 19.3487 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 360 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.3503 -s 1 -d 3 -p ack -e 40 -c 0 -i 341 -a 0 -x {21.0 3.0 170 ------- null} + -t 19.3503 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {3.0 21.0 190 ------- null} - -t 19.3503 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {3.0 21.0 190 ------- null} h -t 19.3503 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.4615 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 342 -a 0 -x {3.0 21.0 171 ------- null} + -t 19.4615 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 342 -a 0 -x {3.0 21.0 171 ------- null} - -t 19.4615 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 342 -a 0 -x {3.0 21.0 171 ------- null} h -t 19.4615 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 342 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.4631 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {3.0 21.0 172 ------- null} + -t 19.4631 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {3.0 21.0 172 ------- null} - -t 19.4631 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {3.0 21.0 172 ------- null} h -t 19.4631 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.4647 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 344 -a 0 -x {3.0 21.0 173 ------- null} + -t 19.4647 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 344 -a 0 -x {3.0 21.0 173 ------- null} - -t 19.4647 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 344 -a 0 -x {3.0 21.0 173 ------- null} h -t 19.4647 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 344 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.4663 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {3.0 21.0 174 ------- null} + -t 19.4663 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {3.0 21.0 174 ------- null} - -t 19.4663 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {3.0 21.0 174 ------- null} h -t 19.4663 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.4679 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {3.0 21.0 175 ------- null} + -t 19.4679 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {3.0 21.0 175 ------- null} - -t 19.4679 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {3.0 21.0 175 ------- null} h -t 19.4679 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.4695 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {3.0 21.0 176 ------- null} + -t 19.4695 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {3.0 21.0 176 ------- null} - -t 19.4695 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {3.0 21.0 176 ------- null} h -t 19.4695 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.4711 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {3.0 21.0 177 ------- null} + -t 19.4711 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {3.0 21.0 177 ------- null} - -t 19.4711 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {3.0 21.0 177 ------- null} h -t 19.4711 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.4727 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {3.0 21.0 178 ------- null} + -t 19.4727 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {3.0 21.0 178 ------- null} - -t 19.4727 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {3.0 21.0 178 ------- null} h -t 19.4727 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.4743 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {3.0 21.0 179 ------- null} + -t 19.4743 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {3.0 21.0 179 ------- null} - -t 19.4743 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {3.0 21.0 179 ------- null} h -t 19.4743 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.4759 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {3.0 21.0 180 ------- null} + -t 19.4759 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {3.0 21.0 180 ------- null} - -t 19.4759 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {3.0 21.0 180 ------- null} h -t 19.4759 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.4775 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {3.0 21.0 181 ------- null} + -t 19.4775 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {3.0 21.0 181 ------- null} - -t 19.4775 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {3.0 21.0 181 ------- null} h -t 19.4775 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.4791 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {3.0 21.0 182 ------- null} + -t 19.4791 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {3.0 21.0 182 ------- null} - -t 19.4791 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {3.0 21.0 182 ------- null} h -t 19.4791 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.4807 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {3.0 21.0 183 ------- null} + -t 19.4807 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {3.0 21.0 183 ------- null} - -t 19.4807 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {3.0 21.0 183 ------- null} h -t 19.4807 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.4823 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {3.0 21.0 184 ------- null} + -t 19.4823 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {3.0 21.0 184 ------- null} - -t 19.4823 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {3.0 21.0 184 ------- null} h -t 19.4823 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.4839 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 356 -a 0 -x {3.0 21.0 185 ------- null} + -t 19.4839 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 356 -a 0 -x {3.0 21.0 185 ------- null} - -t 19.4839 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 356 -a 0 -x {3.0 21.0 185 ------- null} h -t 19.4839 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 356 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.4855 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {3.0 21.0 186 ------- null} + -t 19.4855 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {3.0 21.0 186 ------- null} - -t 19.4855 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {3.0 21.0 186 ------- null} h -t 19.4855 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.4871 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 358 -a 0 -x {3.0 21.0 187 ------- null} + -t 19.4871 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 358 -a 0 -x {3.0 21.0 187 ------- null} - -t 19.4871 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 358 -a 0 -x {3.0 21.0 187 ------- null} h -t 19.4871 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 358 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.4887 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {3.0 21.0 188 ------- null} + -t 19.4887 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {3.0 21.0 188 ------- null} - -t 19.4887 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {3.0 21.0 188 ------- null} h -t 19.4887 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.4903 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 360 -a 0 -x {3.0 21.0 189 ------- null} + -t 19.4903 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 360 -a 0 -x {3.0 21.0 189 ------- null} - -t 19.4903 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 360 -a 0 -x {3.0 21.0 189 ------- null} h -t 19.4903 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 360 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.4919 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {3.0 21.0 190 ------- null} + -t 19.4919 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {3.0 21.0 190 ------- null} - -t 19.4919 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {3.0 21.0 190 ------- null} h -t 19.4919 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.7631 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 342 -a 0 -x {3.0 21.0 171 ------- null} + -t 19.7631 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 342 -a 0 -x {3.0 21.0 171 ------- null} - -t 19.7631 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 342 -a 0 -x {3.0 21.0 171 ------- null} h -t 19.7631 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 342 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.7647 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {3.0 21.0 172 ------- null} + -t 19.7647 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {3.0 21.0 172 ------- null} - -t 19.7647 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {3.0 21.0 172 ------- null} h -t 19.7647 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.7663 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 344 -a 0 -x {3.0 21.0 173 ------- null} + -t 19.7663 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 344 -a 0 -x {3.0 21.0 173 ------- null} - -t 19.7663 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 344 -a 0 -x {3.0 21.0 173 ------- null} h -t 19.7663 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 344 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.7679 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {3.0 21.0 174 ------- null} + -t 19.7679 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {3.0 21.0 174 ------- null} - -t 19.7679 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {3.0 21.0 174 ------- null} h -t 19.7679 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.7695 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {3.0 21.0 175 ------- null} + -t 19.7695 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {3.0 21.0 175 ------- null} - -t 19.7695 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {3.0 21.0 175 ------- null} h -t 19.7695 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.7711 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {3.0 21.0 176 ------- null} + -t 19.7711 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {3.0 21.0 176 ------- null} - -t 19.7711 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {3.0 21.0 176 ------- null} h -t 19.7711 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.7727 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {3.0 21.0 177 ------- null} + -t 19.7727 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {3.0 21.0 177 ------- null} - -t 19.7727 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {3.0 21.0 177 ------- null} h -t 19.7727 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.7743 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {3.0 21.0 178 ------- null} + -t 19.7743 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {3.0 21.0 178 ------- null} - -t 19.7743 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {3.0 21.0 178 ------- null} h -t 19.7743 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.7759 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {3.0 21.0 179 ------- null} + -t 19.7759 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {3.0 21.0 179 ------- null} - -t 19.7759 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {3.0 21.0 179 ------- null} h -t 19.7759 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.7775 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {3.0 21.0 180 ------- null} + -t 19.7775 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {3.0 21.0 180 ------- null} - -t 19.7775 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {3.0 21.0 180 ------- null} h -t 19.7775 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.7791 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {3.0 21.0 181 ------- null} + -t 19.7791 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {3.0 21.0 181 ------- null} - -t 19.7791 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {3.0 21.0 181 ------- null} h -t 19.7791 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.7807 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {3.0 21.0 182 ------- null} + -t 19.7807 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {3.0 21.0 182 ------- null} - -t 19.7807 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {3.0 21.0 182 ------- null} h -t 19.7807 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.7823 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {3.0 21.0 183 ------- null} + -t 19.7823 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {3.0 21.0 183 ------- null} - -t 19.7823 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {3.0 21.0 183 ------- null} h -t 19.7823 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.7839 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {3.0 21.0 184 ------- null} + -t 19.7839 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {3.0 21.0 184 ------- null} - -t 19.7839 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {3.0 21.0 184 ------- null} h -t 19.7839 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.7855 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 356 -a 0 -x {3.0 21.0 185 ------- null} + -t 19.7855 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 356 -a 0 -x {3.0 21.0 185 ------- null} - -t 19.7855 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 356 -a 0 -x {3.0 21.0 185 ------- null} h -t 19.7855 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 356 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.7871 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {3.0 21.0 186 ------- null} + -t 19.7871 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {3.0 21.0 186 ------- null} - -t 19.7871 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {3.0 21.0 186 ------- null} h -t 19.7871 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.7887 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 358 -a 0 -x {3.0 21.0 187 ------- null} + -t 19.7887 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 358 -a 0 -x {3.0 21.0 187 ------- null} - -t 19.7887 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 358 -a 0 -x {3.0 21.0 187 ------- null} h -t 19.7887 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 358 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.7903 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {3.0 21.0 188 ------- null} + -t 19.7903 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {3.0 21.0 188 ------- null} - -t 19.7903 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {3.0 21.0 188 ------- null} h -t 19.7903 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.7919 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 360 -a 0 -x {3.0 21.0 189 ------- null} + -t 19.7919 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 360 -a 0 -x {3.0 21.0 189 ------- null} - -t 19.7919 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 360 -a 0 -x {3.0 21.0 189 ------- null} h -t 19.7919 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 360 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.7935 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {3.0 21.0 190 ------- null} + -t 19.7935 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {3.0 21.0 190 ------- null} - -t 19.7935 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {3.0 21.0 190 ------- null} h -t 19.7935 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {3.0 21.0 -1 ------- null} r -t 20.1147 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 342 -a 0 -x {3.0 21.0 171 ------- null} + -t 20.1147 -s 21 -d 28 -p ack -e 40 -c 0 -i 362 -a 0 -x {21.0 3.0 171 ------- null} - -t 20.1147 -s 21 -d 28 -p ack -e 40 -c 0 -i 362 -a 0 -x {21.0 3.0 171 ------- null} h -t 20.1147 -s 21 -d 28 -p ack -e 40 -c 0 -i 362 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.1163 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {3.0 21.0 172 ------- null} + -t 20.1163 -s 21 -d 28 -p ack -e 40 -c 0 -i 363 -a 0 -x {21.0 3.0 172 ------- null} - -t 20.1163 -s 21 -d 28 -p ack -e 40 -c 0 -i 363 -a 0 -x {21.0 3.0 172 ------- null} h -t 20.1163 -s 21 -d 28 -p ack -e 40 -c 0 -i 363 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.1179 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 344 -a 0 -x {3.0 21.0 173 ------- null} + -t 20.1179 -s 21 -d 28 -p ack -e 40 -c 0 -i 364 -a 0 -x {21.0 3.0 173 ------- null} - -t 20.1179 -s 21 -d 28 -p ack -e 40 -c 0 -i 364 -a 0 -x {21.0 3.0 173 ------- null} h -t 20.1179 -s 21 -d 28 -p ack -e 40 -c 0 -i 364 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.1195 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {3.0 21.0 174 ------- null} + -t 20.1195 -s 21 -d 28 -p ack -e 40 -c 0 -i 365 -a 0 -x {21.0 3.0 174 ------- null} - -t 20.1195 -s 21 -d 28 -p ack -e 40 -c 0 -i 365 -a 0 -x {21.0 3.0 174 ------- null} h -t 20.1195 -s 21 -d 28 -p ack -e 40 -c 0 -i 365 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.1211 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {3.0 21.0 175 ------- null} + -t 20.1211 -s 21 -d 28 -p ack -e 40 -c 0 -i 366 -a 0 -x {21.0 3.0 175 ------- null} - -t 20.1211 -s 21 -d 28 -p ack -e 40 -c 0 -i 366 -a 0 -x {21.0 3.0 175 ------- null} h -t 20.1211 -s 21 -d 28 -p ack -e 40 -c 0 -i 366 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.1227 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {3.0 21.0 176 ------- null} + -t 20.1227 -s 21 -d 28 -p ack -e 40 -c 0 -i 367 -a 0 -x {21.0 3.0 176 ------- null} - -t 20.1227 -s 21 -d 28 -p ack -e 40 -c 0 -i 367 -a 0 -x {21.0 3.0 176 ------- null} h -t 20.1227 -s 21 -d 28 -p ack -e 40 -c 0 -i 367 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.1243 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {3.0 21.0 177 ------- null} + -t 20.1243 -s 21 -d 28 -p ack -e 40 -c 0 -i 368 -a 0 -x {21.0 3.0 177 ------- null} - -t 20.1243 -s 21 -d 28 -p ack -e 40 -c 0 -i 368 -a 0 -x {21.0 3.0 177 ------- null} h -t 20.1243 -s 21 -d 28 -p ack -e 40 -c 0 -i 368 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.1259 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {3.0 21.0 178 ------- null} + -t 20.1259 -s 21 -d 28 -p ack -e 40 -c 0 -i 369 -a 0 -x {21.0 3.0 178 ------- null} - -t 20.1259 -s 21 -d 28 -p ack -e 40 -c 0 -i 369 -a 0 -x {21.0 3.0 178 ------- null} h -t 20.1259 -s 21 -d 28 -p ack -e 40 -c 0 -i 369 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.1275 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {3.0 21.0 179 ------- null} + -t 20.1275 -s 21 -d 28 -p ack -e 40 -c 0 -i 370 -a 0 -x {21.0 3.0 179 ------- null} - -t 20.1275 -s 21 -d 28 -p ack -e 40 -c 0 -i 370 -a 0 -x {21.0 3.0 179 ------- null} h -t 20.1275 -s 21 -d 28 -p ack -e 40 -c 0 -i 370 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.1291 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {3.0 21.0 180 ------- null} + -t 20.1291 -s 21 -d 28 -p ack -e 40 -c 0 -i 371 -a 0 -x {21.0 3.0 180 ------- null} - -t 20.1291 -s 21 -d 28 -p ack -e 40 -c 0 -i 371 -a 0 -x {21.0 3.0 180 ------- null} h -t 20.1291 -s 21 -d 28 -p ack -e 40 -c 0 -i 371 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.1307 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {3.0 21.0 181 ------- null} + -t 20.1307 -s 21 -d 28 -p ack -e 40 -c 0 -i 372 -a 0 -x {21.0 3.0 181 ------- null} - -t 20.1307 -s 21 -d 28 -p ack -e 40 -c 0 -i 372 -a 0 -x {21.0 3.0 181 ------- null} h -t 20.1307 -s 21 -d 28 -p ack -e 40 -c 0 -i 372 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.1323 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {3.0 21.0 182 ------- null} + -t 20.1323 -s 21 -d 28 -p ack -e 40 -c 0 -i 373 -a 0 -x {21.0 3.0 182 ------- null} - -t 20.1323 -s 21 -d 28 -p ack -e 40 -c 0 -i 373 -a 0 -x {21.0 3.0 182 ------- null} h -t 20.1323 -s 21 -d 28 -p ack -e 40 -c 0 -i 373 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.1339 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {3.0 21.0 183 ------- null} + -t 20.1339 -s 21 -d 28 -p ack -e 40 -c 0 -i 374 -a 0 -x {21.0 3.0 183 ------- null} - -t 20.1339 -s 21 -d 28 -p ack -e 40 -c 0 -i 374 -a 0 -x {21.0 3.0 183 ------- null} h -t 20.1339 -s 21 -d 28 -p ack -e 40 -c 0 -i 374 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.1355 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {3.0 21.0 184 ------- null} + -t 20.1355 -s 21 -d 28 -p ack -e 40 -c 0 -i 375 -a 0 -x {21.0 3.0 184 ------- null} - -t 20.1355 -s 21 -d 28 -p ack -e 40 -c 0 -i 375 -a 0 -x {21.0 3.0 184 ------- null} h -t 20.1355 -s 21 -d 28 -p ack -e 40 -c 0 -i 375 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.1371 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 356 -a 0 -x {3.0 21.0 185 ------- null} + -t 20.1371 -s 21 -d 28 -p ack -e 40 -c 0 -i 376 -a 0 -x {21.0 3.0 185 ------- null} - -t 20.1371 -s 21 -d 28 -p ack -e 40 -c 0 -i 376 -a 0 -x {21.0 3.0 185 ------- null} h -t 20.1371 -s 21 -d 28 -p ack -e 40 -c 0 -i 376 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.1387 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {3.0 21.0 186 ------- null} + -t 20.1387 -s 21 -d 28 -p ack -e 40 -c 0 -i 377 -a 0 -x {21.0 3.0 186 ------- null} - -t 20.1387 -s 21 -d 28 -p ack -e 40 -c 0 -i 377 -a 0 -x {21.0 3.0 186 ------- null} h -t 20.1387 -s 21 -d 28 -p ack -e 40 -c 0 -i 377 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.1403 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 358 -a 0 -x {3.0 21.0 187 ------- null} + -t 20.1403 -s 21 -d 28 -p ack -e 40 -c 0 -i 378 -a 0 -x {21.0 3.0 187 ------- null} - -t 20.1403 -s 21 -d 28 -p ack -e 40 -c 0 -i 378 -a 0 -x {21.0 3.0 187 ------- null} h -t 20.1403 -s 21 -d 28 -p ack -e 40 -c 0 -i 378 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.1419 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {3.0 21.0 188 ------- null} + -t 20.1419 -s 21 -d 28 -p ack -e 40 -c 0 -i 379 -a 0 -x {21.0 3.0 188 ------- null} - -t 20.1419 -s 21 -d 28 -p ack -e 40 -c 0 -i 379 -a 0 -x {21.0 3.0 188 ------- null} h -t 20.1419 -s 21 -d 28 -p ack -e 40 -c 0 -i 379 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.1435 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 360 -a 0 -x {3.0 21.0 189 ------- null} + -t 20.1435 -s 21 -d 28 -p ack -e 40 -c 0 -i 380 -a 0 -x {21.0 3.0 189 ------- null} - -t 20.1435 -s 21 -d 28 -p ack -e 40 -c 0 -i 380 -a 0 -x {21.0 3.0 189 ------- null} h -t 20.1435 -s 21 -d 28 -p ack -e 40 -c 0 -i 380 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.1451 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {3.0 21.0 190 ------- null} + -t 20.1451 -s 21 -d 28 -p ack -e 40 -c 0 -i 381 -a 0 -x {21.0 3.0 190 ------- null} - -t 20.1451 -s 21 -d 28 -p ack -e 40 -c 0 -i 381 -a 0 -x {21.0 3.0 190 ------- null} h -t 20.1451 -s 21 -d 28 -p ack -e 40 -c 0 -i 381 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.4648 -s 21 -d 28 -p ack -e 40 -c 0 -i 362 -a 0 -x {21.0 3.0 171 ------- null} + -t 20.4648 -s 28 -d 1 -p ack -e 40 -c 0 -i 362 -a 0 -x {21.0 3.0 171 ------- null} - -t 20.4648 -s 28 -d 1 -p ack -e 40 -c 0 -i 362 -a 0 -x {21.0 3.0 171 ------- null} h -t 20.4648 -s 28 -d 1 -p ack -e 40 -c 0 -i 362 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.4664 -s 21 -d 28 -p ack -e 40 -c 0 -i 363 -a 0 -x {21.0 3.0 172 ------- null} + -t 20.4664 -s 28 -d 1 -p ack -e 40 -c 0 -i 363 -a 0 -x {21.0 3.0 172 ------- null} - -t 20.4664 -s 28 -d 1 -p ack -e 40 -c 0 -i 363 -a 0 -x {21.0 3.0 172 ------- null} h -t 20.4664 -s 28 -d 1 -p ack -e 40 -c 0 -i 363 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.468 -s 21 -d 28 -p ack -e 40 -c 0 -i 364 -a 0 -x {21.0 3.0 173 ------- null} + -t 20.468 -s 28 -d 1 -p ack -e 40 -c 0 -i 364 -a 0 -x {21.0 3.0 173 ------- null} - -t 20.468 -s 28 -d 1 -p ack -e 40 -c 0 -i 364 -a 0 -x {21.0 3.0 173 ------- null} h -t 20.468 -s 28 -d 1 -p ack -e 40 -c 0 -i 364 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.4696 -s 21 -d 28 -p ack -e 40 -c 0 -i 365 -a 0 -x {21.0 3.0 174 ------- null} + -t 20.4696 -s 28 -d 1 -p ack -e 40 -c 0 -i 365 -a 0 -x {21.0 3.0 174 ------- null} - -t 20.4696 -s 28 -d 1 -p ack -e 40 -c 0 -i 365 -a 0 -x {21.0 3.0 174 ------- null} h -t 20.4696 -s 28 -d 1 -p ack -e 40 -c 0 -i 365 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.4712 -s 21 -d 28 -p ack -e 40 -c 0 -i 366 -a 0 -x {21.0 3.0 175 ------- null} + -t 20.4712 -s 28 -d 1 -p ack -e 40 -c 0 -i 366 -a 0 -x {21.0 3.0 175 ------- null} - -t 20.4712 -s 28 -d 1 -p ack -e 40 -c 0 -i 366 -a 0 -x {21.0 3.0 175 ------- null} h -t 20.4712 -s 28 -d 1 -p ack -e 40 -c 0 -i 366 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.4728 -s 21 -d 28 -p ack -e 40 -c 0 -i 367 -a 0 -x {21.0 3.0 176 ------- null} + -t 20.4728 -s 28 -d 1 -p ack -e 40 -c 0 -i 367 -a 0 -x {21.0 3.0 176 ------- null} - -t 20.4728 -s 28 -d 1 -p ack -e 40 -c 0 -i 367 -a 0 -x {21.0 3.0 176 ------- null} h -t 20.4728 -s 28 -d 1 -p ack -e 40 -c 0 -i 367 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.4744 -s 21 -d 28 -p ack -e 40 -c 0 -i 368 -a 0 -x {21.0 3.0 177 ------- null} + -t 20.4744 -s 28 -d 1 -p ack -e 40 -c 0 -i 368 -a 0 -x {21.0 3.0 177 ------- null} - -t 20.4744 -s 28 -d 1 -p ack -e 40 -c 0 -i 368 -a 0 -x {21.0 3.0 177 ------- null} h -t 20.4744 -s 28 -d 1 -p ack -e 40 -c 0 -i 368 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.476 -s 21 -d 28 -p ack -e 40 -c 0 -i 369 -a 0 -x {21.0 3.0 178 ------- null} + -t 20.476 -s 28 -d 1 -p ack -e 40 -c 0 -i 369 -a 0 -x {21.0 3.0 178 ------- null} - -t 20.476 -s 28 -d 1 -p ack -e 40 -c 0 -i 369 -a 0 -x {21.0 3.0 178 ------- null} h -t 20.476 -s 28 -d 1 -p ack -e 40 -c 0 -i 369 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.4776 -s 21 -d 28 -p ack -e 40 -c 0 -i 370 -a 0 -x {21.0 3.0 179 ------- null} + -t 20.4776 -s 28 -d 1 -p ack -e 40 -c 0 -i 370 -a 0 -x {21.0 3.0 179 ------- null} - -t 20.4776 -s 28 -d 1 -p ack -e 40 -c 0 -i 370 -a 0 -x {21.0 3.0 179 ------- null} h -t 20.4776 -s 28 -d 1 -p ack -e 40 -c 0 -i 370 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.4792 -s 21 -d 28 -p ack -e 40 -c 0 -i 371 -a 0 -x {21.0 3.0 180 ------- null} + -t 20.4792 -s 28 -d 1 -p ack -e 40 -c 0 -i 371 -a 0 -x {21.0 3.0 180 ------- null} - -t 20.4792 -s 28 -d 1 -p ack -e 40 -c 0 -i 371 -a 0 -x {21.0 3.0 180 ------- null} h -t 20.4792 -s 28 -d 1 -p ack -e 40 -c 0 -i 371 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.4808 -s 21 -d 28 -p ack -e 40 -c 0 -i 372 -a 0 -x {21.0 3.0 181 ------- null} + -t 20.4808 -s 28 -d 1 -p ack -e 40 -c 0 -i 372 -a 0 -x {21.0 3.0 181 ------- null} - -t 20.4808 -s 28 -d 1 -p ack -e 40 -c 0 -i 372 -a 0 -x {21.0 3.0 181 ------- null} h -t 20.4808 -s 28 -d 1 -p ack -e 40 -c 0 -i 372 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.4824 -s 21 -d 28 -p ack -e 40 -c 0 -i 373 -a 0 -x {21.0 3.0 182 ------- null} + -t 20.4824 -s 28 -d 1 -p ack -e 40 -c 0 -i 373 -a 0 -x {21.0 3.0 182 ------- null} - -t 20.4824 -s 28 -d 1 -p ack -e 40 -c 0 -i 373 -a 0 -x {21.0 3.0 182 ------- null} h -t 20.4824 -s 28 -d 1 -p ack -e 40 -c 0 -i 373 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.484 -s 21 -d 28 -p ack -e 40 -c 0 -i 374 -a 0 -x {21.0 3.0 183 ------- null} + -t 20.484 -s 28 -d 1 -p ack -e 40 -c 0 -i 374 -a 0 -x {21.0 3.0 183 ------- null} - -t 20.484 -s 28 -d 1 -p ack -e 40 -c 0 -i 374 -a 0 -x {21.0 3.0 183 ------- null} h -t 20.484 -s 28 -d 1 -p ack -e 40 -c 0 -i 374 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.4856 -s 21 -d 28 -p ack -e 40 -c 0 -i 375 -a 0 -x {21.0 3.0 184 ------- null} + -t 20.4856 -s 28 -d 1 -p ack -e 40 -c 0 -i 375 -a 0 -x {21.0 3.0 184 ------- null} - -t 20.4856 -s 28 -d 1 -p ack -e 40 -c 0 -i 375 -a 0 -x {21.0 3.0 184 ------- null} h -t 20.4856 -s 28 -d 1 -p ack -e 40 -c 0 -i 375 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.4872 -s 21 -d 28 -p ack -e 40 -c 0 -i 376 -a 0 -x {21.0 3.0 185 ------- null} + -t 20.4872 -s 28 -d 1 -p ack -e 40 -c 0 -i 376 -a 0 -x {21.0 3.0 185 ------- null} - -t 20.4872 -s 28 -d 1 -p ack -e 40 -c 0 -i 376 -a 0 -x {21.0 3.0 185 ------- null} h -t 20.4872 -s 28 -d 1 -p ack -e 40 -c 0 -i 376 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.4888 -s 21 -d 28 -p ack -e 40 -c 0 -i 377 -a 0 -x {21.0 3.0 186 ------- null} + -t 20.4888 -s 28 -d 1 -p ack -e 40 -c 0 -i 377 -a 0 -x {21.0 3.0 186 ------- null} - -t 20.4888 -s 28 -d 1 -p ack -e 40 -c 0 -i 377 -a 0 -x {21.0 3.0 186 ------- null} h -t 20.4888 -s 28 -d 1 -p ack -e 40 -c 0 -i 377 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.4904 -s 21 -d 28 -p ack -e 40 -c 0 -i 378 -a 0 -x {21.0 3.0 187 ------- null} + -t 20.4904 -s 28 -d 1 -p ack -e 40 -c 0 -i 378 -a 0 -x {21.0 3.0 187 ------- null} - -t 20.4904 -s 28 -d 1 -p ack -e 40 -c 0 -i 378 -a 0 -x {21.0 3.0 187 ------- null} h -t 20.4904 -s 28 -d 1 -p ack -e 40 -c 0 -i 378 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.492 -s 21 -d 28 -p ack -e 40 -c 0 -i 379 -a 0 -x {21.0 3.0 188 ------- null} + -t 20.492 -s 28 -d 1 -p ack -e 40 -c 0 -i 379 -a 0 -x {21.0 3.0 188 ------- null} - -t 20.492 -s 28 -d 1 -p ack -e 40 -c 0 -i 379 -a 0 -x {21.0 3.0 188 ------- null} h -t 20.492 -s 28 -d 1 -p ack -e 40 -c 0 -i 379 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.4936 -s 21 -d 28 -p ack -e 40 -c 0 -i 380 -a 0 -x {21.0 3.0 189 ------- null} + -t 20.4936 -s 28 -d 1 -p ack -e 40 -c 0 -i 380 -a 0 -x {21.0 3.0 189 ------- null} - -t 20.4936 -s 28 -d 1 -p ack -e 40 -c 0 -i 380 -a 0 -x {21.0 3.0 189 ------- null} h -t 20.4936 -s 28 -d 1 -p ack -e 40 -c 0 -i 380 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.4952 -s 21 -d 28 -p ack -e 40 -c 0 -i 381 -a 0 -x {21.0 3.0 190 ------- null} + -t 20.4952 -s 28 -d 1 -p ack -e 40 -c 0 -i 381 -a 0 -x {21.0 3.0 190 ------- null} - -t 20.4952 -s 28 -d 1 -p ack -e 40 -c 0 -i 381 -a 0 -x {21.0 3.0 190 ------- null} h -t 20.4952 -s 28 -d 1 -p ack -e 40 -c 0 -i 381 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.7648 -s 28 -d 1 -p ack -e 40 -c 0 -i 362 -a 0 -x {21.0 3.0 171 ------- null} + -t 20.7648 -s 1 -d 3 -p ack -e 40 -c 0 -i 362 -a 0 -x {21.0 3.0 171 ------- null} - -t 20.7648 -s 1 -d 3 -p ack -e 40 -c 0 -i 362 -a 0 -x {21.0 3.0 171 ------- null} h -t 20.7648 -s 1 -d 3 -p ack -e 40 -c 0 -i 362 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.7664 -s 28 -d 1 -p ack -e 40 -c 0 -i 363 -a 0 -x {21.0 3.0 172 ------- null} + -t 20.7664 -s 1 -d 3 -p ack -e 40 -c 0 -i 363 -a 0 -x {21.0 3.0 172 ------- null} - -t 20.7664 -s 1 -d 3 -p ack -e 40 -c 0 -i 363 -a 0 -x {21.0 3.0 172 ------- null} h -t 20.7664 -s 1 -d 3 -p ack -e 40 -c 0 -i 363 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.768 -s 28 -d 1 -p ack -e 40 -c 0 -i 364 -a 0 -x {21.0 3.0 173 ------- null} + -t 20.768 -s 1 -d 3 -p ack -e 40 -c 0 -i 364 -a 0 -x {21.0 3.0 173 ------- null} - -t 20.768 -s 1 -d 3 -p ack -e 40 -c 0 -i 364 -a 0 -x {21.0 3.0 173 ------- null} h -t 20.768 -s 1 -d 3 -p ack -e 40 -c 0 -i 364 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.7696 -s 28 -d 1 -p ack -e 40 -c 0 -i 365 -a 0 -x {21.0 3.0 174 ------- null} + -t 20.7696 -s 1 -d 3 -p ack -e 40 -c 0 -i 365 -a 0 -x {21.0 3.0 174 ------- null} - -t 20.7696 -s 1 -d 3 -p ack -e 40 -c 0 -i 365 -a 0 -x {21.0 3.0 174 ------- null} h -t 20.7696 -s 1 -d 3 -p ack -e 40 -c 0 -i 365 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.7712 -s 28 -d 1 -p ack -e 40 -c 0 -i 366 -a 0 -x {21.0 3.0 175 ------- null} + -t 20.7712 -s 1 -d 3 -p ack -e 40 -c 0 -i 366 -a 0 -x {21.0 3.0 175 ------- null} - -t 20.7712 -s 1 -d 3 -p ack -e 40 -c 0 -i 366 -a 0 -x {21.0 3.0 175 ------- null} h -t 20.7712 -s 1 -d 3 -p ack -e 40 -c 0 -i 366 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.7728 -s 28 -d 1 -p ack -e 40 -c 0 -i 367 -a 0 -x {21.0 3.0 176 ------- null} + -t 20.7728 -s 1 -d 3 -p ack -e 40 -c 0 -i 367 -a 0 -x {21.0 3.0 176 ------- null} - -t 20.7728 -s 1 -d 3 -p ack -e 40 -c 0 -i 367 -a 0 -x {21.0 3.0 176 ------- null} h -t 20.7728 -s 1 -d 3 -p ack -e 40 -c 0 -i 367 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.7744 -s 28 -d 1 -p ack -e 40 -c 0 -i 368 -a 0 -x {21.0 3.0 177 ------- null} + -t 20.7744 -s 1 -d 3 -p ack -e 40 -c 0 -i 368 -a 0 -x {21.0 3.0 177 ------- null} - -t 20.7744 -s 1 -d 3 -p ack -e 40 -c 0 -i 368 -a 0 -x {21.0 3.0 177 ------- null} h -t 20.7744 -s 1 -d 3 -p ack -e 40 -c 0 -i 368 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.776 -s 28 -d 1 -p ack -e 40 -c 0 -i 369 -a 0 -x {21.0 3.0 178 ------- null} + -t 20.776 -s 1 -d 3 -p ack -e 40 -c 0 -i 369 -a 0 -x {21.0 3.0 178 ------- null} - -t 20.776 -s 1 -d 3 -p ack -e 40 -c 0 -i 369 -a 0 -x {21.0 3.0 178 ------- null} h -t 20.776 -s 1 -d 3 -p ack -e 40 -c 0 -i 369 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.7776 -s 28 -d 1 -p ack -e 40 -c 0 -i 370 -a 0 -x {21.0 3.0 179 ------- null} + -t 20.7776 -s 1 -d 3 -p ack -e 40 -c 0 -i 370 -a 0 -x {21.0 3.0 179 ------- null} - -t 20.7776 -s 1 -d 3 -p ack -e 40 -c 0 -i 370 -a 0 -x {21.0 3.0 179 ------- null} h -t 20.7776 -s 1 -d 3 -p ack -e 40 -c 0 -i 370 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.7792 -s 28 -d 1 -p ack -e 40 -c 0 -i 371 -a 0 -x {21.0 3.0 180 ------- null} + -t 20.7792 -s 1 -d 3 -p ack -e 40 -c 0 -i 371 -a 0 -x {21.0 3.0 180 ------- null} - -t 20.7792 -s 1 -d 3 -p ack -e 40 -c 0 -i 371 -a 0 -x {21.0 3.0 180 ------- null} h -t 20.7792 -s 1 -d 3 -p ack -e 40 -c 0 -i 371 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.7808 -s 28 -d 1 -p ack -e 40 -c 0 -i 372 -a 0 -x {21.0 3.0 181 ------- null} + -t 20.7808 -s 1 -d 3 -p ack -e 40 -c 0 -i 372 -a 0 -x {21.0 3.0 181 ------- null} - -t 20.7808 -s 1 -d 3 -p ack -e 40 -c 0 -i 372 -a 0 -x {21.0 3.0 181 ------- null} h -t 20.7808 -s 1 -d 3 -p ack -e 40 -c 0 -i 372 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.7824 -s 28 -d 1 -p ack -e 40 -c 0 -i 373 -a 0 -x {21.0 3.0 182 ------- null} + -t 20.7824 -s 1 -d 3 -p ack -e 40 -c 0 -i 373 -a 0 -x {21.0 3.0 182 ------- null} - -t 20.7824 -s 1 -d 3 -p ack -e 40 -c 0 -i 373 -a 0 -x {21.0 3.0 182 ------- null} h -t 20.7824 -s 1 -d 3 -p ack -e 40 -c 0 -i 373 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.784 -s 28 -d 1 -p ack -e 40 -c 0 -i 374 -a 0 -x {21.0 3.0 183 ------- null} + -t 20.784 -s 1 -d 3 -p ack -e 40 -c 0 -i 374 -a 0 -x {21.0 3.0 183 ------- null} - -t 20.784 -s 1 -d 3 -p ack -e 40 -c 0 -i 374 -a 0 -x {21.0 3.0 183 ------- null} h -t 20.784 -s 1 -d 3 -p ack -e 40 -c 0 -i 374 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.7856 -s 28 -d 1 -p ack -e 40 -c 0 -i 375 -a 0 -x {21.0 3.0 184 ------- null} + -t 20.7856 -s 1 -d 3 -p ack -e 40 -c 0 -i 375 -a 0 -x {21.0 3.0 184 ------- null} - -t 20.7856 -s 1 -d 3 -p ack -e 40 -c 0 -i 375 -a 0 -x {21.0 3.0 184 ------- null} h -t 20.7856 -s 1 -d 3 -p ack -e 40 -c 0 -i 375 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.7872 -s 28 -d 1 -p ack -e 40 -c 0 -i 376 -a 0 -x {21.0 3.0 185 ------- null} + -t 20.7872 -s 1 -d 3 -p ack -e 40 -c 0 -i 376 -a 0 -x {21.0 3.0 185 ------- null} - -t 20.7872 -s 1 -d 3 -p ack -e 40 -c 0 -i 376 -a 0 -x {21.0 3.0 185 ------- null} h -t 20.7872 -s 1 -d 3 -p ack -e 40 -c 0 -i 376 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.7888 -s 28 -d 1 -p ack -e 40 -c 0 -i 377 -a 0 -x {21.0 3.0 186 ------- null} + -t 20.7888 -s 1 -d 3 -p ack -e 40 -c 0 -i 377 -a 0 -x {21.0 3.0 186 ------- null} - -t 20.7888 -s 1 -d 3 -p ack -e 40 -c 0 -i 377 -a 0 -x {21.0 3.0 186 ------- null} h -t 20.7888 -s 1 -d 3 -p ack -e 40 -c 0 -i 377 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.7904 -s 28 -d 1 -p ack -e 40 -c 0 -i 378 -a 0 -x {21.0 3.0 187 ------- null} + -t 20.7904 -s 1 -d 3 -p ack -e 40 -c 0 -i 378 -a 0 -x {21.0 3.0 187 ------- null} - -t 20.7904 -s 1 -d 3 -p ack -e 40 -c 0 -i 378 -a 0 -x {21.0 3.0 187 ------- null} h -t 20.7904 -s 1 -d 3 -p ack -e 40 -c 0 -i 378 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.792 -s 28 -d 1 -p ack -e 40 -c 0 -i 379 -a 0 -x {21.0 3.0 188 ------- null} + -t 20.792 -s 1 -d 3 -p ack -e 40 -c 0 -i 379 -a 0 -x {21.0 3.0 188 ------- null} - -t 20.792 -s 1 -d 3 -p ack -e 40 -c 0 -i 379 -a 0 -x {21.0 3.0 188 ------- null} h -t 20.792 -s 1 -d 3 -p ack -e 40 -c 0 -i 379 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.7936 -s 28 -d 1 -p ack -e 40 -c 0 -i 380 -a 0 -x {21.0 3.0 189 ------- null} + -t 20.7936 -s 1 -d 3 -p ack -e 40 -c 0 -i 380 -a 0 -x {21.0 3.0 189 ------- null} - -t 20.7936 -s 1 -d 3 -p ack -e 40 -c 0 -i 380 -a 0 -x {21.0 3.0 189 ------- null} h -t 20.7936 -s 1 -d 3 -p ack -e 40 -c 0 -i 380 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.7952 -s 28 -d 1 -p ack -e 40 -c 0 -i 381 -a 0 -x {21.0 3.0 190 ------- null} + -t 20.7952 -s 1 -d 3 -p ack -e 40 -c 0 -i 381 -a 0 -x {21.0 3.0 190 ------- null} - -t 20.7952 -s 1 -d 3 -p ack -e 40 -c 0 -i 381 -a 0 -x {21.0 3.0 190 ------- null} h -t 20.7952 -s 1 -d 3 -p ack -e 40 -c 0 -i 381 -a 0 -x {21.0 3.0 -1 ------- null} r -t 20.9049 -s 1 -d 3 -p ack -e 40 -c 0 -i 362 -a 0 -x {21.0 3.0 171 ------- null} + -t 20.9049 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {3.0 21.0 191 ------- null} - -t 20.9049 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {3.0 21.0 191 ------- null} h -t 20.9049 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {3.0 21.0 -1 ------- null} r -t 20.9065 -s 1 -d 3 -p ack -e 40 -c 0 -i 363 -a 0 -x {21.0 3.0 172 ------- null} + -t 20.9065 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {3.0 21.0 192 ------- null} - -t 20.9065 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {3.0 21.0 192 ------- null} h -t 20.9065 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {3.0 21.0 -1 ------- null} r -t 20.9081 -s 1 -d 3 -p ack -e 40 -c 0 -i 364 -a 0 -x {21.0 3.0 173 ------- null} + -t 20.9081 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 384 -a 0 -x {3.0 21.0 193 ------- null} - -t 20.9081 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 384 -a 0 -x {3.0 21.0 193 ------- null} h -t 20.9081 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 384 -a 0 -x {3.0 21.0 -1 ------- null} r -t 20.9097 -s 1 -d 3 -p ack -e 40 -c 0 -i 365 -a 0 -x {21.0 3.0 174 ------- null} + -t 20.9097 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {3.0 21.0 194 ------- null} - -t 20.9097 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {3.0 21.0 194 ------- null} h -t 20.9097 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {3.0 21.0 -1 ------- null} r -t 20.9113 -s 1 -d 3 -p ack -e 40 -c 0 -i 366 -a 0 -x {21.0 3.0 175 ------- null} + -t 20.9113 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 386 -a 0 -x {3.0 21.0 195 ------- null} - -t 20.9113 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 386 -a 0 -x {3.0 21.0 195 ------- null} h -t 20.9113 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 386 -a 0 -x {3.0 21.0 -1 ------- null} r -t 20.9129 -s 1 -d 3 -p ack -e 40 -c 0 -i 367 -a 0 -x {21.0 3.0 176 ------- null} + -t 20.9129 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {3.0 21.0 196 ------- null} - -t 20.9129 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {3.0 21.0 196 ------- null} h -t 20.9129 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {3.0 21.0 -1 ------- null} r -t 20.9145 -s 1 -d 3 -p ack -e 40 -c 0 -i 368 -a 0 -x {21.0 3.0 177 ------- null} + -t 20.9145 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {3.0 21.0 197 ------- null} - -t 20.9145 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {3.0 21.0 197 ------- null} h -t 20.9145 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {3.0 21.0 -1 ------- null} r -t 20.9161 -s 1 -d 3 -p ack -e 40 -c 0 -i 369 -a 0 -x {21.0 3.0 178 ------- null} + -t 20.9161 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {3.0 21.0 198 ------- null} - -t 20.9161 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {3.0 21.0 198 ------- null} h -t 20.9161 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {3.0 21.0 -1 ------- null} r -t 20.9177 -s 1 -d 3 -p ack -e 40 -c 0 -i 370 -a 0 -x {21.0 3.0 179 ------- null} + -t 20.9177 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 390 -a 0 -x {3.0 21.0 199 ------- null} - -t 20.9177 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 390 -a 0 -x {3.0 21.0 199 ------- null} h -t 20.9177 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 390 -a 0 -x {3.0 21.0 -1 ------- null} r -t 20.9193 -s 1 -d 3 -p ack -e 40 -c 0 -i 371 -a 0 -x {21.0 3.0 180 ------- null} + -t 20.9193 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {3.0 21.0 200 ------- null} - -t 20.9193 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {3.0 21.0 200 ------- null} h -t 20.9193 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {3.0 21.0 -1 ------- null} r -t 20.9209 -s 1 -d 3 -p ack -e 40 -c 0 -i 372 -a 0 -x {21.0 3.0 181 ------- null} + -t 20.9209 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {3.0 21.0 201 ------- null} - -t 20.9209 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {3.0 21.0 201 ------- null} h -t 20.9209 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {3.0 21.0 -1 ------- null} r -t 20.9225 -s 1 -d 3 -p ack -e 40 -c 0 -i 373 -a 0 -x {21.0 3.0 182 ------- null} + -t 20.9225 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {3.0 21.0 202 ------- null} - -t 20.9225 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {3.0 21.0 202 ------- null} h -t 20.9225 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {3.0 21.0 -1 ------- null} r -t 20.9241 -s 1 -d 3 -p ack -e 40 -c 0 -i 374 -a 0 -x {21.0 3.0 183 ------- null} + -t 20.9241 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {3.0 21.0 203 ------- null} - -t 20.9241 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {3.0 21.0 203 ------- null} h -t 20.9241 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {3.0 21.0 -1 ------- null} r -t 20.9257 -s 1 -d 3 -p ack -e 40 -c 0 -i 375 -a 0 -x {21.0 3.0 184 ------- null} + -t 20.9257 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {3.0 21.0 204 ------- null} - -t 20.9257 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {3.0 21.0 204 ------- null} h -t 20.9257 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {3.0 21.0 -1 ------- null} r -t 20.9273 -s 1 -d 3 -p ack -e 40 -c 0 -i 376 -a 0 -x {21.0 3.0 185 ------- null} + -t 20.9273 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 396 -a 0 -x {3.0 21.0 205 ------- null} - -t 20.9273 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 396 -a 0 -x {3.0 21.0 205 ------- null} h -t 20.9273 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 396 -a 0 -x {3.0 21.0 -1 ------- null} r -t 20.9289 -s 1 -d 3 -p ack -e 40 -c 0 -i 377 -a 0 -x {21.0 3.0 186 ------- null} + -t 20.9289 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {3.0 21.0 206 ------- null} - -t 20.9289 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {3.0 21.0 206 ------- null} h -t 20.9289 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {3.0 21.0 -1 ------- null} r -t 20.9305 -s 1 -d 3 -p ack -e 40 -c 0 -i 378 -a 0 -x {21.0 3.0 187 ------- null} + -t 20.9305 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 398 -a 0 -x {3.0 21.0 207 ------- null} - -t 20.9305 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 398 -a 0 -x {3.0 21.0 207 ------- null} h -t 20.9305 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 398 -a 0 -x {3.0 21.0 -1 ------- null} r -t 20.9321 -s 1 -d 3 -p ack -e 40 -c 0 -i 379 -a 0 -x {21.0 3.0 188 ------- null} + -t 20.9321 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {3.0 21.0 208 ------- null} - -t 20.9321 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {3.0 21.0 208 ------- null} h -t 20.9321 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {3.0 21.0 -1 ------- null} r -t 20.9337 -s 1 -d 3 -p ack -e 40 -c 0 -i 380 -a 0 -x {21.0 3.0 189 ------- null} + -t 20.9337 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 400 -a 0 -x {3.0 21.0 209 ------- null} - -t 20.9337 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 400 -a 0 -x {3.0 21.0 209 ------- null} h -t 20.9337 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 400 -a 0 -x {3.0 21.0 -1 ------- null} r -t 20.9353 -s 1 -d 3 -p ack -e 40 -c 0 -i 381 -a 0 -x {21.0 3.0 190 ------- null} + -t 20.9353 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {3.0 21.0 210 ------- null} - -t 20.9353 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {3.0 21.0 210 ------- null} h -t 20.9353 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.0465 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {3.0 21.0 191 ------- null} + -t 21.0465 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {3.0 21.0 191 ------- null} - -t 21.0465 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {3.0 21.0 191 ------- null} h -t 21.0465 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.0481 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {3.0 21.0 192 ------- null} + -t 21.0481 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {3.0 21.0 192 ------- null} - -t 21.0481 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {3.0 21.0 192 ------- null} h -t 21.0481 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.0497 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 384 -a 0 -x {3.0 21.0 193 ------- null} + -t 21.0497 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 384 -a 0 -x {3.0 21.0 193 ------- null} - -t 21.0497 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 384 -a 0 -x {3.0 21.0 193 ------- null} h -t 21.0497 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 384 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.0513 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {3.0 21.0 194 ------- null} + -t 21.0513 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {3.0 21.0 194 ------- null} - -t 21.0513 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {3.0 21.0 194 ------- null} h -t 21.0513 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.0529 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 386 -a 0 -x {3.0 21.0 195 ------- null} + -t 21.0529 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 386 -a 0 -x {3.0 21.0 195 ------- null} - -t 21.0529 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 386 -a 0 -x {3.0 21.0 195 ------- null} h -t 21.0529 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 386 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.0545 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {3.0 21.0 196 ------- null} + -t 21.0545 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {3.0 21.0 196 ------- null} - -t 21.0545 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {3.0 21.0 196 ------- null} h -t 21.0545 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.0561 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {3.0 21.0 197 ------- null} + -t 21.0561 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {3.0 21.0 197 ------- null} - -t 21.0561 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {3.0 21.0 197 ------- null} h -t 21.0561 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.0577 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {3.0 21.0 198 ------- null} + -t 21.0577 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {3.0 21.0 198 ------- null} - -t 21.0577 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {3.0 21.0 198 ------- null} h -t 21.0577 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.0593 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 390 -a 0 -x {3.0 21.0 199 ------- null} + -t 21.0593 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 390 -a 0 -x {3.0 21.0 199 ------- null} - -t 21.0593 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 390 -a 0 -x {3.0 21.0 199 ------- null} h -t 21.0593 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 390 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.0609 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {3.0 21.0 200 ------- null} + -t 21.0609 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {3.0 21.0 200 ------- null} - -t 21.0609 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {3.0 21.0 200 ------- null} h -t 21.0609 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.0625 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {3.0 21.0 201 ------- null} + -t 21.0625 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {3.0 21.0 201 ------- null} - -t 21.0625 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {3.0 21.0 201 ------- null} h -t 21.0625 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.0641 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {3.0 21.0 202 ------- null} + -t 21.0641 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {3.0 21.0 202 ------- null} - -t 21.0641 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {3.0 21.0 202 ------- null} h -t 21.0641 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.0657 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {3.0 21.0 203 ------- null} + -t 21.0657 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {3.0 21.0 203 ------- null} - -t 21.0657 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {3.0 21.0 203 ------- null} h -t 21.0657 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.0673 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {3.0 21.0 204 ------- null} + -t 21.0673 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {3.0 21.0 204 ------- null} - -t 21.0673 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {3.0 21.0 204 ------- null} h -t 21.0673 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.0689 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 396 -a 0 -x {3.0 21.0 205 ------- null} + -t 21.0689 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 396 -a 0 -x {3.0 21.0 205 ------- null} - -t 21.0689 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 396 -a 0 -x {3.0 21.0 205 ------- null} h -t 21.0689 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 396 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.0705 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {3.0 21.0 206 ------- null} + -t 21.0705 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {3.0 21.0 206 ------- null} - -t 21.0705 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {3.0 21.0 206 ------- null} h -t 21.0705 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.0721 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 398 -a 0 -x {3.0 21.0 207 ------- null} + -t 21.0721 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 398 -a 0 -x {3.0 21.0 207 ------- null} - -t 21.0721 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 398 -a 0 -x {3.0 21.0 207 ------- null} h -t 21.0721 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 398 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.0737 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {3.0 21.0 208 ------- null} + -t 21.0737 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {3.0 21.0 208 ------- null} - -t 21.0737 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {3.0 21.0 208 ------- null} h -t 21.0737 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.0753 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 400 -a 0 -x {3.0 21.0 209 ------- null} + -t 21.0753 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 400 -a 0 -x {3.0 21.0 209 ------- null} - -t 21.0753 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 400 -a 0 -x {3.0 21.0 209 ------- null} h -t 21.0753 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 400 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.0769 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {3.0 21.0 210 ------- null} + -t 21.0769 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {3.0 21.0 210 ------- null} - -t 21.0769 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {3.0 21.0 210 ------- null} h -t 21.0769 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.3481 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {3.0 21.0 191 ------- null} + -t 21.3481 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {3.0 21.0 191 ------- null} - -t 21.3481 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {3.0 21.0 191 ------- null} h -t 21.3481 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.3497 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {3.0 21.0 192 ------- null} + -t 21.3497 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {3.0 21.0 192 ------- null} - -t 21.3497 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {3.0 21.0 192 ------- null} h -t 21.3497 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.3513 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 384 -a 0 -x {3.0 21.0 193 ------- null} + -t 21.3513 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 384 -a 0 -x {3.0 21.0 193 ------- null} - -t 21.3513 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 384 -a 0 -x {3.0 21.0 193 ------- null} h -t 21.3513 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 384 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.3529 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {3.0 21.0 194 ------- null} + -t 21.3529 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {3.0 21.0 194 ------- null} - -t 21.3529 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {3.0 21.0 194 ------- null} h -t 21.3529 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.3545 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 386 -a 0 -x {3.0 21.0 195 ------- null} + -t 21.3545 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 386 -a 0 -x {3.0 21.0 195 ------- null} - -t 21.3545 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 386 -a 0 -x {3.0 21.0 195 ------- null} h -t 21.3545 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 386 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.3561 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {3.0 21.0 196 ------- null} + -t 21.3561 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {3.0 21.0 196 ------- null} - -t 21.3561 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {3.0 21.0 196 ------- null} h -t 21.3561 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.3577 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {3.0 21.0 197 ------- null} + -t 21.3577 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {3.0 21.0 197 ------- null} - -t 21.3577 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {3.0 21.0 197 ------- null} h -t 21.3577 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.3593 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {3.0 21.0 198 ------- null} + -t 21.3593 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {3.0 21.0 198 ------- null} - -t 21.3593 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {3.0 21.0 198 ------- null} h -t 21.3593 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.3609 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 390 -a 0 -x {3.0 21.0 199 ------- null} + -t 21.3609 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 390 -a 0 -x {3.0 21.0 199 ------- null} - -t 21.3609 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 390 -a 0 -x {3.0 21.0 199 ------- null} h -t 21.3609 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 390 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.3625 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {3.0 21.0 200 ------- null} + -t 21.3625 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {3.0 21.0 200 ------- null} - -t 21.3625 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {3.0 21.0 200 ------- null} h -t 21.3625 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.3641 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {3.0 21.0 201 ------- null} + -t 21.3641 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {3.0 21.0 201 ------- null} - -t 21.3641 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {3.0 21.0 201 ------- null} h -t 21.3641 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.3657 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {3.0 21.0 202 ------- null} + -t 21.3657 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {3.0 21.0 202 ------- null} - -t 21.3657 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {3.0 21.0 202 ------- null} h -t 21.3657 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.3673 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {3.0 21.0 203 ------- null} + -t 21.3673 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {3.0 21.0 203 ------- null} - -t 21.3673 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {3.0 21.0 203 ------- null} h -t 21.3673 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.3689 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {3.0 21.0 204 ------- null} + -t 21.3689 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {3.0 21.0 204 ------- null} - -t 21.3689 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {3.0 21.0 204 ------- null} h -t 21.3689 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.3705 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 396 -a 0 -x {3.0 21.0 205 ------- null} + -t 21.3705 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 396 -a 0 -x {3.0 21.0 205 ------- null} - -t 21.3705 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 396 -a 0 -x {3.0 21.0 205 ------- null} h -t 21.3705 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 396 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.3721 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {3.0 21.0 206 ------- null} + -t 21.3721 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {3.0 21.0 206 ------- null} - -t 21.3721 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {3.0 21.0 206 ------- null} h -t 21.3721 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.3737 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 398 -a 0 -x {3.0 21.0 207 ------- null} + -t 21.3737 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 398 -a 0 -x {3.0 21.0 207 ------- null} - -t 21.3737 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 398 -a 0 -x {3.0 21.0 207 ------- null} h -t 21.3737 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 398 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.3753 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {3.0 21.0 208 ------- null} + -t 21.3753 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {3.0 21.0 208 ------- null} - -t 21.3753 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {3.0 21.0 208 ------- null} h -t 21.3753 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.3769 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 400 -a 0 -x {3.0 21.0 209 ------- null} + -t 21.3769 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 400 -a 0 -x {3.0 21.0 209 ------- null} - -t 21.3769 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 400 -a 0 -x {3.0 21.0 209 ------- null} h -t 21.3769 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 400 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.3785 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {3.0 21.0 210 ------- null} + -t 21.3785 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {3.0 21.0 210 ------- null} - -t 21.3785 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {3.0 21.0 210 ------- null} h -t 21.3785 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.6997 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {3.0 21.0 191 ------- null} + -t 21.6997 -s 21 -d 28 -p ack -e 40 -c 0 -i 402 -a 0 -x {21.0 3.0 191 ------- null} - -t 21.6997 -s 21 -d 28 -p ack -e 40 -c 0 -i 402 -a 0 -x {21.0 3.0 191 ------- null} h -t 21.6997 -s 21 -d 28 -p ack -e 40 -c 0 -i 402 -a 0 -x {21.0 3.0 -1 ------- null} r -t 21.7013 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {3.0 21.0 192 ------- null} + -t 21.7013 -s 21 -d 28 -p ack -e 40 -c 0 -i 403 -a 0 -x {21.0 3.0 192 ------- null} - -t 21.7013 -s 21 -d 28 -p ack -e 40 -c 0 -i 403 -a 0 -x {21.0 3.0 192 ------- null} h -t 21.7013 -s 21 -d 28 -p ack -e 40 -c 0 -i 403 -a 0 -x {21.0 3.0 -1 ------- null} r -t 21.7029 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 384 -a 0 -x {3.0 21.0 193 ------- null} + -t 21.7029 -s 21 -d 28 -p ack -e 40 -c 0 -i 404 -a 0 -x {21.0 3.0 193 ------- null} - -t 21.7029 -s 21 -d 28 -p ack -e 40 -c 0 -i 404 -a 0 -x {21.0 3.0 193 ------- null} h -t 21.7029 -s 21 -d 28 -p ack -e 40 -c 0 -i 404 -a 0 -x {21.0 3.0 -1 ------- null} r -t 21.7045 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {3.0 21.0 194 ------- null} + -t 21.7045 -s 21 -d 28 -p ack -e 40 -c 0 -i 405 -a 0 -x {21.0 3.0 194 ------- null} - -t 21.7045 -s 21 -d 28 -p ack -e 40 -c 0 -i 405 -a 0 -x {21.0 3.0 194 ------- null} h -t 21.7045 -s 21 -d 28 -p ack -e 40 -c 0 -i 405 -a 0 -x {21.0 3.0 -1 ------- null} r -t 21.7061 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 386 -a 0 -x {3.0 21.0 195 ------- null} + -t 21.7061 -s 21 -d 28 -p ack -e 40 -c 0 -i 406 -a 0 -x {21.0 3.0 195 ------- null} - -t 21.7061 -s 21 -d 28 -p ack -e 40 -c 0 -i 406 -a 0 -x {21.0 3.0 195 ------- null} h -t 21.7061 -s 21 -d 28 -p ack -e 40 -c 0 -i 406 -a 0 -x {21.0 3.0 -1 ------- null} r -t 21.7077 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {3.0 21.0 196 ------- null} + -t 21.7077 -s 21 -d 28 -p ack -e 40 -c 0 -i 407 -a 0 -x {21.0 3.0 196 ------- null} - -t 21.7077 -s 21 -d 28 -p ack -e 40 -c 0 -i 407 -a 0 -x {21.0 3.0 196 ------- null} h -t 21.7077 -s 21 -d 28 -p ack -e 40 -c 0 -i 407 -a 0 -x {21.0 3.0 -1 ------- null} r -t 21.7093 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {3.0 21.0 197 ------- null} + -t 21.7093 -s 21 -d 28 -p ack -e 40 -c 0 -i 408 -a 0 -x {21.0 3.0 197 ------- null} - -t 21.7093 -s 21 -d 28 -p ack -e 40 -c 0 -i 408 -a 0 -x {21.0 3.0 197 ------- null} h -t 21.7093 -s 21 -d 28 -p ack -e 40 -c 0 -i 408 -a 0 -x {21.0 3.0 -1 ------- null} r -t 21.7109 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {3.0 21.0 198 ------- null} + -t 21.7109 -s 21 -d 28 -p ack -e 40 -c 0 -i 409 -a 0 -x {21.0 3.0 198 ------- null} - -t 21.7109 -s 21 -d 28 -p ack -e 40 -c 0 -i 409 -a 0 -x {21.0 3.0 198 ------- null} h -t 21.7109 -s 21 -d 28 -p ack -e 40 -c 0 -i 409 -a 0 -x {21.0 3.0 -1 ------- null} r -t 21.7125 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 390 -a 0 -x {3.0 21.0 199 ------- null} + -t 21.7125 -s 21 -d 28 -p ack -e 40 -c 0 -i 410 -a 0 -x {21.0 3.0 199 ------- null} - -t 21.7125 -s 21 -d 28 -p ack -e 40 -c 0 -i 410 -a 0 -x {21.0 3.0 199 ------- null} h -t 21.7125 -s 21 -d 28 -p ack -e 40 -c 0 -i 410 -a 0 -x {21.0 3.0 -1 ------- null} r -t 21.7141 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {3.0 21.0 200 ------- null} + -t 21.7141 -s 21 -d 28 -p ack -e 40 -c 0 -i 411 -a 0 -x {21.0 3.0 200 ------- null} - -t 21.7141 -s 21 -d 28 -p ack -e 40 -c 0 -i 411 -a 0 -x {21.0 3.0 200 ------- null} h -t 21.7141 -s 21 -d 28 -p ack -e 40 -c 0 -i 411 -a 0 -x {21.0 3.0 -1 ------- null} r -t 21.7157 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {3.0 21.0 201 ------- null} + -t 21.7157 -s 21 -d 28 -p ack -e 40 -c 0 -i 412 -a 0 -x {21.0 3.0 201 ------- null} - -t 21.7157 -s 21 -d 28 -p ack -e 40 -c 0 -i 412 -a 0 -x {21.0 3.0 201 ------- null} h -t 21.7157 -s 21 -d 28 -p ack -e 40 -c 0 -i 412 -a 0 -x {21.0 3.0 -1 ------- null} r -t 21.7173 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {3.0 21.0 202 ------- null} + -t 21.7173 -s 21 -d 28 -p ack -e 40 -c 0 -i 413 -a 0 -x {21.0 3.0 202 ------- null} - -t 21.7173 -s 21 -d 28 -p ack -e 40 -c 0 -i 413 -a 0 -x {21.0 3.0 202 ------- null} h -t 21.7173 -s 21 -d 28 -p ack -e 40 -c 0 -i 413 -a 0 -x {21.0 3.0 -1 ------- null} r -t 21.7189 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {3.0 21.0 203 ------- null} + -t 21.7189 -s 21 -d 28 -p ack -e 40 -c 0 -i 414 -a 0 -x {21.0 3.0 203 ------- null} - -t 21.7189 -s 21 -d 28 -p ack -e 40 -c 0 -i 414 -a 0 -x {21.0 3.0 203 ------- null} h -t 21.7189 -s 21 -d 28 -p ack -e 40 -c 0 -i 414 -a 0 -x {21.0 3.0 -1 ------- null} r -t 21.7205 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {3.0 21.0 204 ------- null} + -t 21.7205 -s 21 -d 28 -p ack -e 40 -c 0 -i 415 -a 0 -x {21.0 3.0 204 ------- null} - -t 21.7205 -s 21 -d 28 -p ack -e 40 -c 0 -i 415 -a 0 -x {21.0 3.0 204 ------- null} h -t 21.7205 -s 21 -d 28 -p ack -e 40 -c 0 -i 415 -a 0 -x {21.0 3.0 -1 ------- null} r -t 21.7221 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 396 -a 0 -x {3.0 21.0 205 ------- null} + -t 21.7221 -s 21 -d 28 -p ack -e 40 -c 0 -i 416 -a 0 -x {21.0 3.0 205 ------- null} - -t 21.7221 -s 21 -d 28 -p ack -e 40 -c 0 -i 416 -a 0 -x {21.0 3.0 205 ------- null} h -t 21.7221 -s 21 -d 28 -p ack -e 40 -c 0 -i 416 -a 0 -x {21.0 3.0 -1 ------- null} r -t 21.7237 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {3.0 21.0 206 ------- null} + -t 21.7237 -s 21 -d 28 -p ack -e 40 -c 0 -i 417 -a 0 -x {21.0 3.0 206 ------- null} - -t 21.7237 -s 21 -d 28 -p ack -e 40 -c 0 -i 417 -a 0 -x {21.0 3.0 206 ------- null} h -t 21.7237 -s 21 -d 28 -p ack -e 40 -c 0 -i 417 -a 0 -x {21.0 3.0 -1 ------- null} r -t 21.7253 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 398 -a 0 -x {3.0 21.0 207 ------- null} + -t 21.7253 -s 21 -d 28 -p ack -e 40 -c 0 -i 418 -a 0 -x {21.0 3.0 207 ------- null} - -t 21.7253 -s 21 -d 28 -p ack -e 40 -c 0 -i 418 -a 0 -x {21.0 3.0 207 ------- null} h -t 21.7253 -s 21 -d 28 -p ack -e 40 -c 0 -i 418 -a 0 -x {21.0 3.0 -1 ------- null} r -t 21.7269 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {3.0 21.0 208 ------- null} + -t 21.7269 -s 21 -d 28 -p ack -e 40 -c 0 -i 419 -a 0 -x {21.0 3.0 208 ------- null} - -t 21.7269 -s 21 -d 28 -p ack -e 40 -c 0 -i 419 -a 0 -x {21.0 3.0 208 ------- null} h -t 21.7269 -s 21 -d 28 -p ack -e 40 -c 0 -i 419 -a 0 -x {21.0 3.0 -1 ------- null} r -t 21.7285 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 400 -a 0 -x {3.0 21.0 209 ------- null} + -t 21.7285 -s 21 -d 28 -p ack -e 40 -c 0 -i 420 -a 0 -x {21.0 3.0 209 ------- null} - -t 21.7285 -s 21 -d 28 -p ack -e 40 -c 0 -i 420 -a 0 -x {21.0 3.0 209 ------- null} h -t 21.7285 -s 21 -d 28 -p ack -e 40 -c 0 -i 420 -a 0 -x {21.0 3.0 -1 ------- null} r -t 21.7301 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {3.0 21.0 210 ------- null} + -t 21.7301 -s 21 -d 28 -p ack -e 40 -c 0 -i 421 -a 0 -x {21.0 3.0 210 ------- null} - -t 21.7301 -s 21 -d 28 -p ack -e 40 -c 0 -i 421 -a 0 -x {21.0 3.0 210 ------- null} h -t 21.7301 -s 21 -d 28 -p ack -e 40 -c 0 -i 421 -a 0 -x {21.0 3.0 -1 ------- null} r -t 22.0498 -s 21 -d 28 -p ack -e 40 -c 0 -i 402 -a 0 -x {21.0 3.0 191 ------- null} + -t 22.0498 -s 28 -d 1 -p ack -e 40 -c 0 -i 402 -a 0 -x {21.0 3.0 191 ------- null} - -t 22.0498 -s 28 -d 1 -p ack -e 40 -c 0 -i 402 -a 0 -x {21.0 3.0 191 ------- null} h -t 22.0498 -s 28 -d 1 -p ack -e 40 -c 0 -i 402 -a 0 -x {21.0 3.0 -1 ------- null} r -t 22.0514 -s 21 -d 28 -p ack -e 40 -c 0 -i 403 -a 0 -x {21.0 3.0 192 ------- null} + -t 22.0514 -s 28 -d 1 -p ack -e 40 -c 0 -i 403 -a 0 -x {21.0 3.0 192 ------- null} - -t 22.0514 -s 28 -d 1 -p ack -e 40 -c 0 -i 403 -a 0 -x {21.0 3.0 192 ------- null} h -t 22.0514 -s 28 -d 1 -p ack -e 40 -c 0 -i 403 -a 0 -x {21.0 3.0 -1 ------- null} r -t 22.053 -s 21 -d 28 -p ack -e 40 -c 0 -i 404 -a 0 -x {21.0 3.0 193 ------- null} + -t 22.053 -s 28 -d 1 -p ack -e 40 -c 0 -i 404 -a 0 -x {21.0 3.0 193 ------- null} - -t 22.053 -s 28 -d 1 -p ack -e 40 -c 0 -i 404 -a 0 -x {21.0 3.0 193 ------- null} h -t 22.053 -s 28 -d 1 -p ack -e 40 -c 0 -i 404 -a 0 -x {21.0 3.0 -1 ------- null} r -t 22.0546 -s 21 -d 28 -p ack -e 40 -c 0 -i 405 -a 0 -x {21.0 3.0 194 ------- null} + -t 22.0546 -s 28 -d 1 -p ack -e 40 -c 0 -i 405 -a 0 -x {21.0 3.0 194 ------- null} - -t 22.0546 -s 28 -d 1 -p ack -e 40 -c 0 -i 405 -a 0 -x {21.0 3.0 194 ------- null} h -t 22.0546 -s 28 -d 1 -p ack -e 40 -c 0 -i 405 -a 0 -x {21.0 3.0 -1 ------- null} r -t 22.0562 -s 21 -d 28 -p ack -e 40 -c 0 -i 406 -a 0 -x {21.0 3.0 195 ------- null} + -t 22.0562 -s 28 -d 1 -p ack -e 40 -c 0 -i 406 -a 0 -x {21.0 3.0 195 ------- null} - -t 22.0562 -s 28 -d 1 -p ack -e 40 -c 0 -i 406 -a 0 -x {21.0 3.0 195 ------- null} h -t 22.0562 -s 28 -d 1 -p ack -e 40 -c 0 -i 406 -a 0 -x {21.0 3.0 -1 ------- null} r -t 22.0578 -s 21 -d 28 -p ack -e 40 -c 0 -i 407 -a 0 -x {21.0 3.0 196 ------- null} + -t 22.0578 -s 28 -d 1 -p ack -e 40 -c 0 -i 407 -a 0 -x {21.0 3.0 196 ------- null} - -t 22.0578 -s 28 -d 1 -p ack -e 40 -c 0 -i 407 -a 0 -x {21.0 3.0 196 ------- null} h -t 22.0578 -s 28 -d 1 -p ack -e 40 -c 0 -i 407 -a 0 -x {21.0 3.0 -1 ------- null} r -t 22.0594 -s 21 -d 28 -p ack -e 40 -c 0 -i 408 -a 0 -x {21.0 3.0 197 ------- null} + -t 22.0594 -s 28 -d 1 -p ack -e 40 -c 0 -i 408 -a 0 -x {21.0 3.0 197 ------- null} - -t 22.0594 -s 28 -d 1 -p ack -e 40 -c 0 -i 408 -a 0 -x {21.0 3.0 197 ------- null} h -t 22.0594 -s 28 -d 1 -p ack -e 40 -c 0 -i 408 -a 0 -x {21.0 3.0 -1 ------- null} r -t 22.061 -s 21 -d 28 -p ack -e 40 -c 0 -i 409 -a 0 -x {21.0 3.0 198 ------- null} + -t 22.061 -s 28 -d 1 -p ack -e 40 -c 0 -i 409 -a 0 -x {21.0 3.0 198 ------- null} - -t 22.061 -s 28 -d 1 -p ack -e 40 -c 0 -i 409 -a 0 -x {21.0 3.0 198 ------- null} h -t 22.061 -s 28 -d 1 -p ack -e 40 -c 0 -i 409 -a 0 -x {21.0 3.0 -1 ------- null} r -t 22.0626 -s 21 -d 28 -p ack -e 40 -c 0 -i 410 -a 0 -x {21.0 3.0 199 ------- null} + -t 22.0626 -s 28 -d 1 -p ack -e 40 -c 0 -i 410 -a 0 -x {21.0 3.0 199 ------- null} - -t 22.0626 -s 28 -d 1 -p ack -e 40 -c 0 -i 410 -a 0 -x {21.0 3.0 199 ------- null} h -t 22.0626 -s 28 -d 1 -p ack -e 40 -c 0 -i 410 -a 0 -x {21.0 3.0 -1 ------- null} r -t 22.0642 -s 21 -d 28 -p ack -e 40 -c 0 -i 411 -a 0 -x {21.0 3.0 200 ------- null} + -t 22.0642 -s 28 -d 1 -p ack -e 40 -c 0 -i 411 -a 0 -x {21.0 3.0 200 ------- null} - -t 22.0642 -s 28 -d 1 -p ack -e 40 -c 0 -i 411 -a 0 -x {21.0 3.0 200 ------- null} h -t 22.0642 -s 28 -d 1 -p ack -e 40 -c 0 -i 411 -a 0 -x {21.0 3.0 -1 ------- null} r -t 22.0658 -s 21 -d 28 -p ack -e 40 -c 0 -i 412 -a 0 -x {21.0 3.0 201 ------- null} + -t 22.0658 -s 28 -d 1 -p ack -e 40 -c 0 -i 412 -a 0 -x {21.0 3.0 201 ------- null} - -t 22.0658 -s 28 -d 1 -p ack -e 40 -c 0 -i 412 -a 0 -x {21.0 3.0 201 ------- null} h -t 22.0658 -s 28 -d 1 -p ack -e 40 -c 0 -i 412 -a 0 -x {21.0 3.0 -1 ------- null} r -t 22.0674 -s 21 -d 28 -p ack -e 40 -c 0 -i 413 -a 0 -x {21.0 3.0 202 ------- null} + -t 22.0674 -s 28 -d 1 -p ack -e 40 -c 0 -i 413 -a 0 -x {21.0 3.0 202 ------- null} - -t 22.0674 -s 28 -d 1 -p ack -e 40 -c 0 -i 413 -a 0 -x {21.0 3.0 202 ------- null} h -t 22.0674 -s 28 -d 1 -p ack -e 40 -c 0 -i 413 -a 0 -x {21.0 3.0 -1 ------- null} r -t 22.069 -s 21 -d 28 -p ack -e 40 -c 0 -i 414 -a 0 -x {21.0 3.0 203 ------- null} + -t 22.069 -s 28 -d 1 -p ack -e 40 -c 0 -i 414 -a 0 -x {21.0 3.0 203 ------- null} - -t 22.069 -s 28 -d 1 -p ack -e 40 -c 0 -i 414 -a 0 -x {21.0 3.0 203 ------- null} h -t 22.069 -s 28 -d 1 -p ack -e 40 -c 0 -i 414 -a 0 -x {21.0 3.0 -1 ------- null} r -t 22.0706 -s 21 -d 28 -p ack -e 40 -c 0 -i 415 -a 0 -x {21.0 3.0 204 ------- null} + -t 22.0706 -s 28 -d 1 -p ack -e 40 -c 0 -i 415 -a 0 -x {21.0 3.0 204 ------- null} - -t 22.0706 -s 28 -d 1 -p ack -e 40 -c 0 -i 415 -a 0 -x {21.0 3.0 204 ------- null} h -t 22.0706 -s 28 -d 1 -p ack -e 40 -c 0 -i 415 -a 0 -x {21.0 3.0 -1 ------- null} r -t 22.0722 -s 21 -d 28 -p ack -e 40 -c 0 -i 416 -a 0 -x {21.0 3.0 205 ------- null} + -t 22.0722 -s 28 -d 1 -p ack -e 40 -c 0 -i 416 -a 0 -x {21.0 3.0 205 ------- null} - -t 22.0722 -s 28 -d 1 -p ack -e 40 -c 0 -i 416 -a 0 -x {21.0 3.0 205 ------- null} h -t 22.0722 -s 28 -d 1 -p ack -e 40 -c 0 -i 416 -a 0 -x {21.0 3.0 -1 ------- null} r -t 22.0738 -s 21 -d 28 -p ack -e 40 -c 0 -i 417 -a 0 -x {21.0 3.0 206 ------- null} + -t 22.0738 -s 28 -d 1 -p ack -e 40 -c 0 -i 417 -a 0 -x {21.0 3.0 206 ------- null} - -t 22.0738 -s 28 -d 1 -p ack -e 40 -c 0 -i 417 -a 0 -x {21.0 3.0 206 ------- null} h -t 22.0738 -s 28 -d 1 -p ack -e 40 -c 0 -i 417 -a 0 -x {21.0 3.0 -1 ------- null} r -t 22.0754 -s 21 -d 28 -p ack -e 40 -c 0 -i 418 -a 0 -x {21.0 3.0 207 ------- null} + -t 22.0754 -s 28 -d 1 -p ack -e 40 -c 0 -i 418 -a 0 -x {21.0 3.0 207 ------- null} - -t 22.0754 -s 28 -d 1 -p ack -e 40 -c 0 -i 418 -a 0 -x {21.0 3.0 207 ------- null} h -t 22.0754 -s 28 -d 1 -p ack -e 40 -c 0 -i 418 -a 0 -x {21.0 3.0 -1 ------- null} r -t 22.077 -s 21 -d 28 -p ack -e 40 -c 0 -i 419 -a 0 -x {21.0 3.0 208 ------- null} + -t 22.077 -s 28 -d 1 -p ack -e 40 -c 0 -i 419 -a 0 -x {21.0 3.0 208 ------- null} - -t 22.077 -s 28 -d 1 -p ack -e 40 -c 0 -i 419 -a 0 -x {21.0 3.0 208 ------- null} h -t 22.077 -s 28 -d 1 -p ack -e 40 -c 0 -i 419 -a 0 -x {21.0 3.0 -1 ------- null} r -t 22.0786 -s 21 -d 28 -p ack -e 40 -c 0 -i 420 -a 0 -x {21.0 3.0 209 ------- null} + -t 22.0786 -s 28 -d 1 -p ack -e 40 -c 0 -i 420 -a 0 -x {21.0 3.0 209 ------- null} - -t 22.0786 -s 28 -d 1 -p ack -e 40 -c 0 -i 420 -a 0 -x {21.0 3.0 209 ------- null} h -t 22.0786 -s 28 -d 1 -p ack -e 40 -c 0 -i 420 -a 0 -x {21.0 3.0 -1 ------- null} r -t 22.0802 -s 21 -d 28 -p ack -e 40 -c 0 -i 421 -a 0 -x {21.0 3.0 210 ------- null} + -t 22.0802 -s 28 -d 1 -p ack -e 40 -c 0 -i 421 -a 0 -x {21.0 3.0 210 ------- null} - -t 22.0802 -s 28 -d 1 -p ack -e 40 -c 0 -i 421 -a 0 -x {21.0 3.0 210 ------- null} h -t 22.0802 -s 28 -d 1 -p ack -e 40 -c 0 -i 421 -a 0 -x {21.0 3.0 -1 ------- null} r -t 22.3498 -s 28 -d 1 -p ack -e 40 -c 0 -i 402 -a 0 -x {21.0 3.0 191 ------- null} + -t 22.3498 -s 1 -d 3 -p ack -e 40 -c 0 -i 402 -a 0 -x {21.0 3.0 191 ------- null} - -t 22.3498 -s 1 -d 3 -p ack -e 40 -c 0 -i 402 -a 0 -x {21.0 3.0 191 ------- null} h -t 22.3498 -s 1 -d 3 -p ack -e 40 -c 0 -i 402 -a 0 -x {21.0 3.0 -1 ------- null} r -t 22.3514 -s 28 -d 1 -p ack -e 40 -c 0 -i 403 -a 0 -x {21.0 3.0 192 ------- null} + -t 22.3514 -s 1 -d 3 -p ack -e 40 -c 0 -i 403 -a 0 -x {21.0 3.0 192 ------- null} - -t 22.3514 -s 1 -d 3 -p ack -e 40 -c 0 -i 403 -a 0 -x {21.0 3.0 192 ------- null} h -t 22.3514 -s 1 -d 3 -p ack -e 40 -c 0 -i 403 -a 0 -x {21.0 3.0 -1 ------- null} r -t 22.353 -s 28 -d 1 -p ack -e 40 -c 0 -i 404 -a 0 -x {21.0 3.0 193 ------- null} + -t 22.353 -s 1 -d 3 -p ack -e 40 -c 0 -i 404 -a 0 -x {21.0 3.0 193 ------- null} - -t 22.353 -s 1 -d 3 -p ack -e 40 -c 0 -i 404 -a 0 -x {21.0 3.0 193 ------- null} h -t 22.353 -s 1 -d 3 -p ack -e 40 -c 0 -i 404 -a 0 -x {21.0 3.0 -1 ------- null} r -t 22.3546 -s 28 -d 1 -p ack -e 40 -c 0 -i 405 -a 0 -x {21.0 3.0 194 ------- null} + -t 22.3546 -s 1 -d 3 -p ack -e 40 -c 0 -i 405 -a 0 -x {21.0 3.0 194 ------- null} - -t 22.3546 -s 1 -d 3 -p ack -e 40 -c 0 -i 405 -a 0 -x {21.0 3.0 194 ------- null} h -t 22.3546 -s 1 -d 3 -p ack -e 40 -c 0 -i 405 -a 0 -x {21.0 3.0 -1 ------- null} r -t 22.3562 -s 28 -d 1 -p ack -e 40 -c 0 -i 406 -a 0 -x {21.0 3.0 195 ------- null} + -t 22.3562 -s 1 -d 3 -p ack -e 40 -c 0 -i 406 -a 0 -x {21.0 3.0 195 ------- null} - -t 22.3562 -s 1 -d 3 -p ack -e 40 -c 0 -i 406 -a 0 -x {21.0 3.0 195 ------- null} h -t 22.3562 -s 1 -d 3 -p ack -e 40 -c 0 -i 406 -a 0 -x {21.0 3.0 -1 ------- null} r -t 22.3578 -s 28 -d 1 -p ack -e 40 -c 0 -i 407 -a 0 -x {21.0 3.0 196 ------- null} + -t 22.3578 -s 1 -d 3 -p ack -e 40 -c 0 -i 407 -a 0 -x {21.0 3.0 196 ------- null} - -t 22.3578 -s 1 -d 3 -p ack -e 40 -c 0 -i 407 -a 0 -x {21.0 3.0 196 ------- null} h -t 22.3578 -s 1 -d 3 -p ack -e 40 -c 0 -i 407 -a 0 -x {21.0 3.0 -1 ------- null} r -t 22.3594 -s 28 -d 1 -p ack -e 40 -c 0 -i 408 -a 0 -x {21.0 3.0 197 ------- null} + -t 22.3594 -s 1 -d 3 -p ack -e 40 -c 0 -i 408 -a 0 -x {21.0 3.0 197 ------- null} - -t 22.3594 -s 1 -d 3 -p ack -e 40 -c 0 -i 408 -a 0 -x {21.0 3.0 197 ------- null} h -t 22.3594 -s 1 -d 3 -p ack -e 40 -c 0 -i 408 -a 0 -x {21.0 3.0 -1 ------- null} r -t 22.361 -s 28 -d 1 -p ack -e 40 -c 0 -i 409 -a 0 -x {21.0 3.0 198 ------- null} + -t 22.361 -s 1 -d 3 -p ack -e 40 -c 0 -i 409 -a 0 -x {21.0 3.0 198 ------- null} - -t 22.361 -s 1 -d 3 -p ack -e 40 -c 0 -i 409 -a 0 -x {21.0 3.0 198 ------- null} h -t 22.361 -s 1 -d 3 -p ack -e 40 -c 0 -i 409 -a 0 -x {21.0 3.0 -1 ------- null} r -t 22.3626 -s 28 -d 1 -p ack -e 40 -c 0 -i 410 -a 0 -x {21.0 3.0 199 ------- null} + -t 22.3626 -s 1 -d 3 -p ack -e 40 -c 0 -i 410 -a 0 -x {21.0 3.0 199 ------- null} - -t 22.3626 -s 1 -d 3 -p ack -e 40 -c 0 -i 410 -a 0 -x {21.0 3.0 199 ------- null} h -t 22.3626 -s 1 -d 3 -p ack -e 40 -c 0 -i 410 -a 0 -x {21.0 3.0 -1 ------- null} r -t 22.3642 -s 28 -d 1 -p ack -e 40 -c 0 -i 411 -a 0 -x {21.0 3.0 200 ------- null} + -t 22.3642 -s 1 -d 3 -p ack -e 40 -c 0 -i 411 -a 0 -x {21.0 3.0 200 ------- null} - -t 22.3642 -s 1 -d 3 -p ack -e 40 -c 0 -i 411 -a 0 -x {21.0 3.0 200 ------- null} h -t 22.3642 -s 1 -d 3 -p ack -e 40 -c 0 -i 411 -a 0 -x {21.0 3.0 -1 ------- null} r -t 22.3658 -s 28 -d 1 -p ack -e 40 -c 0 -i 412 -a 0 -x {21.0 3.0 201 ------- null} + -t 22.3658 -s 1 -d 3 -p ack -e 40 -c 0 -i 412 -a 0 -x {21.0 3.0 201 ------- null} - -t 22.3658 -s 1 -d 3 -p ack -e 40 -c 0 -i 412 -a 0 -x {21.0 3.0 201 ------- null} h -t 22.3658 -s 1 -d 3 -p ack -e 40 -c 0 -i 412 -a 0 -x {21.0 3.0 -1 ------- null} r -t 22.3674 -s 28 -d 1 -p ack -e 40 -c 0 -i 413 -a 0 -x {21.0 3.0 202 ------- null} + -t 22.3674 -s 1 -d 3 -p ack -e 40 -c 0 -i 413 -a 0 -x {21.0 3.0 202 ------- null} - -t 22.3674 -s 1 -d 3 -p ack -e 40 -c 0 -i 413 -a 0 -x {21.0 3.0 202 ------- null} h -t 22.3674 -s 1 -d 3 -p ack -e 40 -c 0 -i 413 -a 0 -x {21.0 3.0 -1 ------- null} r -t 22.369 -s 28 -d 1 -p ack -e 40 -c 0 -i 414 -a 0 -x {21.0 3.0 203 ------- null} + -t 22.369 -s 1 -d 3 -p ack -e 40 -c 0 -i 414 -a 0 -x {21.0 3.0 203 ------- null} - -t 22.369 -s 1 -d 3 -p ack -e 40 -c 0 -i 414 -a 0 -x {21.0 3.0 203 ------- null} h -t 22.369 -s 1 -d 3 -p ack -e 40 -c 0 -i 414 -a 0 -x {21.0 3.0 -1 ------- null} r -t 22.3706 -s 28 -d 1 -p ack -e 40 -c 0 -i 415 -a 0 -x {21.0 3.0 204 ------- null} + -t 22.3706 -s 1 -d 3 -p ack -e 40 -c 0 -i 415 -a 0 -x {21.0 3.0 204 ------- null} - -t 22.3706 -s 1 -d 3 -p ack -e 40 -c 0 -i 415 -a 0 -x {21.0 3.0 204 ------- null} h -t 22.3706 -s 1 -d 3 -p ack -e 40 -c 0 -i 415 -a 0 -x {21.0 3.0 -1 ------- null} r -t 22.3722 -s 28 -d 1 -p ack -e 40 -c 0 -i 416 -a 0 -x {21.0 3.0 205 ------- null} + -t 22.3722 -s 1 -d 3 -p ack -e 40 -c 0 -i 416 -a 0 -x {21.0 3.0 205 ------- null} - -t 22.3722 -s 1 -d 3 -p ack -e 40 -c 0 -i 416 -a 0 -x {21.0 3.0 205 ------- null} h -t 22.3722 -s 1 -d 3 -p ack -e 40 -c 0 -i 416 -a 0 -x {21.0 3.0 -1 ------- null} r -t 22.3738 -s 28 -d 1 -p ack -e 40 -c 0 -i 417 -a 0 -x {21.0 3.0 206 ------- null} + -t 22.3738 -s 1 -d 3 -p ack -e 40 -c 0 -i 417 -a 0 -x {21.0 3.0 206 ------- null} - -t 22.3738 -s 1 -d 3 -p ack -e 40 -c 0 -i 417 -a 0 -x {21.0 3.0 206 ------- null} h -t 22.3738 -s 1 -d 3 -p ack -e 40 -c 0 -i 417 -a 0 -x {21.0 3.0 -1 ------- null} r -t 22.3754 -s 28 -d 1 -p ack -e 40 -c 0 -i 418 -a 0 -x {21.0 3.0 207 ------- null} + -t 22.3754 -s 1 -d 3 -p ack -e 40 -c 0 -i 418 -a 0 -x {21.0 3.0 207 ------- null} - -t 22.3754 -s 1 -d 3 -p ack -e 40 -c 0 -i 418 -a 0 -x {21.0 3.0 207 ------- null} h -t 22.3754 -s 1 -d 3 -p ack -e 40 -c 0 -i 418 -a 0 -x {21.0 3.0 -1 ------- null} r -t 22.377 -s 28 -d 1 -p ack -e 40 -c 0 -i 419 -a 0 -x {21.0 3.0 208 ------- null} + -t 22.377 -s 1 -d 3 -p ack -e 40 -c 0 -i 419 -a 0 -x {21.0 3.0 208 ------- null} - -t 22.377 -s 1 -d 3 -p ack -e 40 -c 0 -i 419 -a 0 -x {21.0 3.0 208 ------- null} h -t 22.377 -s 1 -d 3 -p ack -e 40 -c 0 -i 419 -a 0 -x {21.0 3.0 -1 ------- null} r -t 22.3786 -s 28 -d 1 -p ack -e 40 -c 0 -i 420 -a 0 -x {21.0 3.0 209 ------- null} + -t 22.3786 -s 1 -d 3 -p ack -e 40 -c 0 -i 420 -a 0 -x {21.0 3.0 209 ------- null} - -t 22.3786 -s 1 -d 3 -p ack -e 40 -c 0 -i 420 -a 0 -x {21.0 3.0 209 ------- null} h -t 22.3786 -s 1 -d 3 -p ack -e 40 -c 0 -i 420 -a 0 -x {21.0 3.0 -1 ------- null} r -t 22.3802 -s 28 -d 1 -p ack -e 40 -c 0 -i 421 -a 0 -x {21.0 3.0 210 ------- null} + -t 22.3802 -s 1 -d 3 -p ack -e 40 -c 0 -i 421 -a 0 -x {21.0 3.0 210 ------- null} - -t 22.3802 -s 1 -d 3 -p ack -e 40 -c 0 -i 421 -a 0 -x {21.0 3.0 210 ------- null} h -t 22.3802 -s 1 -d 3 -p ack -e 40 -c 0 -i 421 -a 0 -x {21.0 3.0 -1 ------- null} r -t 22.4899 -s 1 -d 3 -p ack -e 40 -c 0 -i 402 -a 0 -x {21.0 3.0 191 ------- null} + -t 22.4899 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 422 -a 0 -x {3.0 21.0 211 ------- null} - -t 22.4899 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 422 -a 0 -x {3.0 21.0 211 ------- null} h -t 22.4899 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 422 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.4915 -s 1 -d 3 -p ack -e 40 -c 0 -i 403 -a 0 -x {21.0 3.0 192 ------- null} + -t 22.4915 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {3.0 21.0 212 ------- null} - -t 22.4915 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {3.0 21.0 212 ------- null} h -t 22.4915 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.4931 -s 1 -d 3 -p ack -e 40 -c 0 -i 404 -a 0 -x {21.0 3.0 193 ------- null} + -t 22.4931 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 424 -a 0 -x {3.0 21.0 213 ------- null} - -t 22.4931 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 424 -a 0 -x {3.0 21.0 213 ------- null} h -t 22.4931 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 424 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.4947 -s 1 -d 3 -p ack -e 40 -c 0 -i 405 -a 0 -x {21.0 3.0 194 ------- null} + -t 22.4947 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {3.0 21.0 214 ------- null} - -t 22.4947 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {3.0 21.0 214 ------- null} h -t 22.4947 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.4963 -s 1 -d 3 -p ack -e 40 -c 0 -i 406 -a 0 -x {21.0 3.0 195 ------- null} + -t 22.4963 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 426 -a 0 -x {3.0 21.0 215 ------- null} - -t 22.4963 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 426 -a 0 -x {3.0 21.0 215 ------- null} h -t 22.4963 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 426 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.4979 -s 1 -d 3 -p ack -e 40 -c 0 -i 407 -a 0 -x {21.0 3.0 196 ------- null} + -t 22.4979 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {3.0 21.0 216 ------- null} - -t 22.4979 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {3.0 21.0 216 ------- null} h -t 22.4979 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.4995 -s 1 -d 3 -p ack -e 40 -c 0 -i 408 -a 0 -x {21.0 3.0 197 ------- null} + -t 22.4995 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 428 -a 0 -x {3.0 21.0 217 ------- null} - -t 22.4995 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 428 -a 0 -x {3.0 21.0 217 ------- null} h -t 22.4995 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 428 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.5011 -s 1 -d 3 -p ack -e 40 -c 0 -i 409 -a 0 -x {21.0 3.0 198 ------- null} + -t 22.5011 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {3.0 21.0 218 ------- null} - -t 22.5011 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {3.0 21.0 218 ------- null} h -t 22.5011 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.5027 -s 1 -d 3 -p ack -e 40 -c 0 -i 410 -a 0 -x {21.0 3.0 199 ------- null} + -t 22.5027 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 430 -a 0 -x {3.0 21.0 219 ------- null} - -t 22.5027 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 430 -a 0 -x {3.0 21.0 219 ------- null} h -t 22.5027 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 430 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.5043 -s 1 -d 3 -p ack -e 40 -c 0 -i 411 -a 0 -x {21.0 3.0 200 ------- null} + -t 22.5043 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {3.0 21.0 220 ------- null} - -t 22.5043 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {3.0 21.0 220 ------- null} h -t 22.5043 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.5059 -s 1 -d 3 -p ack -e 40 -c 0 -i 412 -a 0 -x {21.0 3.0 201 ------- null} + -t 22.5059 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 432 -a 0 -x {3.0 21.0 221 ------- null} - -t 22.5059 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 432 -a 0 -x {3.0 21.0 221 ------- null} h -t 22.5059 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 432 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.5075 -s 1 -d 3 -p ack -e 40 -c 0 -i 413 -a 0 -x {21.0 3.0 202 ------- null} + -t 22.5075 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {3.0 21.0 222 ------- null} - -t 22.5075 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {3.0 21.0 222 ------- null} h -t 22.5075 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.5091 -s 1 -d 3 -p ack -e 40 -c 0 -i 414 -a 0 -x {21.0 3.0 203 ------- null} + -t 22.5091 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {3.0 21.0 223 ------- null} - -t 22.5091 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {3.0 21.0 223 ------- null} h -t 22.5091 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.5107 -s 1 -d 3 -p ack -e 40 -c 0 -i 415 -a 0 -x {21.0 3.0 204 ------- null} + -t 22.5107 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {3.0 21.0 224 ------- null} - -t 22.5107 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {3.0 21.0 224 ------- null} h -t 22.5107 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.5123 -s 1 -d 3 -p ack -e 40 -c 0 -i 416 -a 0 -x {21.0 3.0 205 ------- null} + -t 22.5123 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {3.0 21.0 225 ------- null} - -t 22.5123 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {3.0 21.0 225 ------- null} h -t 22.5123 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.5139 -s 1 -d 3 -p ack -e 40 -c 0 -i 417 -a 0 -x {21.0 3.0 206 ------- null} + -t 22.5139 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {3.0 21.0 226 ------- null} - -t 22.5139 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {3.0 21.0 226 ------- null} h -t 22.5139 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.5155 -s 1 -d 3 -p ack -e 40 -c 0 -i 418 -a 0 -x {21.0 3.0 207 ------- null} + -t 22.5155 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {3.0 21.0 227 ------- null} - -t 22.5155 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {3.0 21.0 227 ------- null} h -t 22.5155 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.5171 -s 1 -d 3 -p ack -e 40 -c 0 -i 419 -a 0 -x {21.0 3.0 208 ------- null} + -t 22.5171 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {3.0 21.0 228 ------- null} - -t 22.5171 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {3.0 21.0 228 ------- null} h -t 22.5171 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.5187 -s 1 -d 3 -p ack -e 40 -c 0 -i 420 -a 0 -x {21.0 3.0 209 ------- null} + -t 22.5187 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {3.0 21.0 229 ------- null} - -t 22.5187 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {3.0 21.0 229 ------- null} h -t 22.5187 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.5203 -s 1 -d 3 -p ack -e 40 -c 0 -i 421 -a 0 -x {21.0 3.0 210 ------- null} + -t 22.5203 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {3.0 21.0 230 ------- null} - -t 22.5203 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {3.0 21.0 230 ------- null} h -t 22.5203 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.6315 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 422 -a 0 -x {3.0 21.0 211 ------- null} + -t 22.6315 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 422 -a 0 -x {3.0 21.0 211 ------- null} - -t 22.6315 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 422 -a 0 -x {3.0 21.0 211 ------- null} h -t 22.6315 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 422 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.6331 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {3.0 21.0 212 ------- null} + -t 22.6331 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {3.0 21.0 212 ------- null} - -t 22.6331 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {3.0 21.0 212 ------- null} h -t 22.6331 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.6347 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 424 -a 0 -x {3.0 21.0 213 ------- null} + -t 22.6347 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 424 -a 0 -x {3.0 21.0 213 ------- null} - -t 22.6347 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 424 -a 0 -x {3.0 21.0 213 ------- null} h -t 22.6347 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 424 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.6363 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {3.0 21.0 214 ------- null} + -t 22.6363 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {3.0 21.0 214 ------- null} - -t 22.6363 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {3.0 21.0 214 ------- null} h -t 22.6363 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.6379 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 426 -a 0 -x {3.0 21.0 215 ------- null} + -t 22.6379 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 426 -a 0 -x {3.0 21.0 215 ------- null} - -t 22.6379 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 426 -a 0 -x {3.0 21.0 215 ------- null} h -t 22.6379 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 426 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.6395 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {3.0 21.0 216 ------- null} + -t 22.6395 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {3.0 21.0 216 ------- null} - -t 22.6395 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {3.0 21.0 216 ------- null} h -t 22.6395 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.6411 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 428 -a 0 -x {3.0 21.0 217 ------- null} + -t 22.6411 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 428 -a 0 -x {3.0 21.0 217 ------- null} - -t 22.6411 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 428 -a 0 -x {3.0 21.0 217 ------- null} h -t 22.6411 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 428 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.6427 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {3.0 21.0 218 ------- null} + -t 22.6427 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {3.0 21.0 218 ------- null} - -t 22.6427 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {3.0 21.0 218 ------- null} h -t 22.6427 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.6443 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 430 -a 0 -x {3.0 21.0 219 ------- null} + -t 22.6443 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 430 -a 0 -x {3.0 21.0 219 ------- null} - -t 22.6443 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 430 -a 0 -x {3.0 21.0 219 ------- null} h -t 22.6443 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 430 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.6459 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {3.0 21.0 220 ------- null} + -t 22.6459 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {3.0 21.0 220 ------- null} - -t 22.6459 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {3.0 21.0 220 ------- null} h -t 22.6459 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.6475 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 432 -a 0 -x {3.0 21.0 221 ------- null} + -t 22.6475 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 432 -a 0 -x {3.0 21.0 221 ------- null} - -t 22.6475 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 432 -a 0 -x {3.0 21.0 221 ------- null} h -t 22.6475 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 432 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.6491 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {3.0 21.0 222 ------- null} + -t 22.6491 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {3.0 21.0 222 ------- null} - -t 22.6491 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {3.0 21.0 222 ------- null} h -t 22.6491 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.6507 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {3.0 21.0 223 ------- null} + -t 22.6507 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {3.0 21.0 223 ------- null} - -t 22.6507 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {3.0 21.0 223 ------- null} h -t 22.6507 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.6523 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {3.0 21.0 224 ------- null} + -t 22.6523 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {3.0 21.0 224 ------- null} - -t 22.6523 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {3.0 21.0 224 ------- null} h -t 22.6523 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.6539 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {3.0 21.0 225 ------- null} + -t 22.6539 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {3.0 21.0 225 ------- null} - -t 22.6539 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {3.0 21.0 225 ------- null} h -t 22.6539 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.6555 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {3.0 21.0 226 ------- null} + -t 22.6555 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {3.0 21.0 226 ------- null} - -t 22.6555 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {3.0 21.0 226 ------- null} h -t 22.6555 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.6571 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {3.0 21.0 227 ------- null} + -t 22.6571 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {3.0 21.0 227 ------- null} - -t 22.6571 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {3.0 21.0 227 ------- null} h -t 22.6571 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.6587 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {3.0 21.0 228 ------- null} + -t 22.6587 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {3.0 21.0 228 ------- null} - -t 22.6587 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {3.0 21.0 228 ------- null} h -t 22.6587 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.6603 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {3.0 21.0 229 ------- null} + -t 22.6603 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {3.0 21.0 229 ------- null} - -t 22.6603 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {3.0 21.0 229 ------- null} h -t 22.6603 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.6619 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {3.0 21.0 230 ------- null} + -t 22.6619 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {3.0 21.0 230 ------- null} - -t 22.6619 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {3.0 21.0 230 ------- null} h -t 22.6619 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.9331 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 422 -a 0 -x {3.0 21.0 211 ------- null} + -t 22.9331 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 422 -a 0 -x {3.0 21.0 211 ------- null} - -t 22.9331 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 422 -a 0 -x {3.0 21.0 211 ------- null} h -t 22.9331 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 422 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.9347 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {3.0 21.0 212 ------- null} + -t 22.9347 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {3.0 21.0 212 ------- null} - -t 22.9347 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {3.0 21.0 212 ------- null} h -t 22.9347 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.9363 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 424 -a 0 -x {3.0 21.0 213 ------- null} + -t 22.9363 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 424 -a 0 -x {3.0 21.0 213 ------- null} - -t 22.9363 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 424 -a 0 -x {3.0 21.0 213 ------- null} h -t 22.9363 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 424 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.9379 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {3.0 21.0 214 ------- null} + -t 22.9379 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {3.0 21.0 214 ------- null} - -t 22.9379 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {3.0 21.0 214 ------- null} h -t 22.9379 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.9395 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 426 -a 0 -x {3.0 21.0 215 ------- null} + -t 22.9395 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 426 -a 0 -x {3.0 21.0 215 ------- null} - -t 22.9395 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 426 -a 0 -x {3.0 21.0 215 ------- null} h -t 22.9395 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 426 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.9411 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {3.0 21.0 216 ------- null} + -t 22.9411 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {3.0 21.0 216 ------- null} - -t 22.9411 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {3.0 21.0 216 ------- null} h -t 22.9411 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.9427 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 428 -a 0 -x {3.0 21.0 217 ------- null} + -t 22.9427 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 428 -a 0 -x {3.0 21.0 217 ------- null} - -t 22.9427 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 428 -a 0 -x {3.0 21.0 217 ------- null} h -t 22.9427 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 428 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.9443 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {3.0 21.0 218 ------- null} + -t 22.9443 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {3.0 21.0 218 ------- null} - -t 22.9443 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {3.0 21.0 218 ------- null} h -t 22.9443 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.9459 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 430 -a 0 -x {3.0 21.0 219 ------- null} + -t 22.9459 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 430 -a 0 -x {3.0 21.0 219 ------- null} - -t 22.9459 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 430 -a 0 -x {3.0 21.0 219 ------- null} h -t 22.9459 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 430 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.9475 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {3.0 21.0 220 ------- null} + -t 22.9475 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {3.0 21.0 220 ------- null} - -t 22.9475 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {3.0 21.0 220 ------- null} h -t 22.9475 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.9491 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 432 -a 0 -x {3.0 21.0 221 ------- null} + -t 22.9491 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 432 -a 0 -x {3.0 21.0 221 ------- null} - -t 22.9491 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 432 -a 0 -x {3.0 21.0 221 ------- null} h -t 22.9491 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 432 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.9507 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {3.0 21.0 222 ------- null} + -t 22.9507 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {3.0 21.0 222 ------- null} - -t 22.9507 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {3.0 21.0 222 ------- null} h -t 22.9507 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.9523 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {3.0 21.0 223 ------- null} + -t 22.9523 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {3.0 21.0 223 ------- null} - -t 22.9523 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {3.0 21.0 223 ------- null} h -t 22.9523 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.9539 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {3.0 21.0 224 ------- null} + -t 22.9539 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {3.0 21.0 224 ------- null} - -t 22.9539 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {3.0 21.0 224 ------- null} h -t 22.9539 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.9555 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {3.0 21.0 225 ------- null} + -t 22.9555 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {3.0 21.0 225 ------- null} - -t 22.9555 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {3.0 21.0 225 ------- null} h -t 22.9555 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.9571 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {3.0 21.0 226 ------- null} + -t 22.9571 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {3.0 21.0 226 ------- null} - -t 22.9571 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {3.0 21.0 226 ------- null} h -t 22.9571 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.9587 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {3.0 21.0 227 ------- null} + -t 22.9587 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {3.0 21.0 227 ------- null} - -t 22.9587 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {3.0 21.0 227 ------- null} h -t 22.9587 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.9603 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {3.0 21.0 228 ------- null} + -t 22.9603 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {3.0 21.0 228 ------- null} - -t 22.9603 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {3.0 21.0 228 ------- null} h -t 22.9603 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.9619 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {3.0 21.0 229 ------- null} + -t 22.9619 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {3.0 21.0 229 ------- null} - -t 22.9619 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {3.0 21.0 229 ------- null} h -t 22.9619 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.9635 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {3.0 21.0 230 ------- null} + -t 22.9635 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {3.0 21.0 230 ------- null} - -t 22.9635 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {3.0 21.0 230 ------- null} h -t 22.9635 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {3.0 21.0 -1 ------- null} r -t 23.2847 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 422 -a 0 -x {3.0 21.0 211 ------- null} + -t 23.2847 -s 21 -d 28 -p ack -e 40 -c 0 -i 442 -a 0 -x {21.0 3.0 211 ------- null} - -t 23.2847 -s 21 -d 28 -p ack -e 40 -c 0 -i 442 -a 0 -x {21.0 3.0 211 ------- null} h -t 23.2847 -s 21 -d 28 -p ack -e 40 -c 0 -i 442 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.2863 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {3.0 21.0 212 ------- null} + -t 23.2863 -s 21 -d 28 -p ack -e 40 -c 0 -i 443 -a 0 -x {21.0 3.0 212 ------- null} - -t 23.2863 -s 21 -d 28 -p ack -e 40 -c 0 -i 443 -a 0 -x {21.0 3.0 212 ------- null} h -t 23.2863 -s 21 -d 28 -p ack -e 40 -c 0 -i 443 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.2879 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 424 -a 0 -x {3.0 21.0 213 ------- null} + -t 23.2879 -s 21 -d 28 -p ack -e 40 -c 0 -i 444 -a 0 -x {21.0 3.0 213 ------- null} - -t 23.2879 -s 21 -d 28 -p ack -e 40 -c 0 -i 444 -a 0 -x {21.0 3.0 213 ------- null} h -t 23.2879 -s 21 -d 28 -p ack -e 40 -c 0 -i 444 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.2895 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {3.0 21.0 214 ------- null} + -t 23.2895 -s 21 -d 28 -p ack -e 40 -c 0 -i 445 -a 0 -x {21.0 3.0 214 ------- null} - -t 23.2895 -s 21 -d 28 -p ack -e 40 -c 0 -i 445 -a 0 -x {21.0 3.0 214 ------- null} h -t 23.2895 -s 21 -d 28 -p ack -e 40 -c 0 -i 445 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.2911 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 426 -a 0 -x {3.0 21.0 215 ------- null} + -t 23.2911 -s 21 -d 28 -p ack -e 40 -c 0 -i 446 -a 0 -x {21.0 3.0 215 ------- null} - -t 23.2911 -s 21 -d 28 -p ack -e 40 -c 0 -i 446 -a 0 -x {21.0 3.0 215 ------- null} h -t 23.2911 -s 21 -d 28 -p ack -e 40 -c 0 -i 446 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.2927 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {3.0 21.0 216 ------- null} + -t 23.2927 -s 21 -d 28 -p ack -e 40 -c 0 -i 447 -a 0 -x {21.0 3.0 216 ------- null} - -t 23.2927 -s 21 -d 28 -p ack -e 40 -c 0 -i 447 -a 0 -x {21.0 3.0 216 ------- null} h -t 23.2927 -s 21 -d 28 -p ack -e 40 -c 0 -i 447 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.2943 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 428 -a 0 -x {3.0 21.0 217 ------- null} + -t 23.2943 -s 21 -d 28 -p ack -e 40 -c 0 -i 448 -a 0 -x {21.0 3.0 217 ------- null} - -t 23.2943 -s 21 -d 28 -p ack -e 40 -c 0 -i 448 -a 0 -x {21.0 3.0 217 ------- null} h -t 23.2943 -s 21 -d 28 -p ack -e 40 -c 0 -i 448 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.2959 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {3.0 21.0 218 ------- null} + -t 23.2959 -s 21 -d 28 -p ack -e 40 -c 0 -i 449 -a 0 -x {21.0 3.0 218 ------- null} - -t 23.2959 -s 21 -d 28 -p ack -e 40 -c 0 -i 449 -a 0 -x {21.0 3.0 218 ------- null} h -t 23.2959 -s 21 -d 28 -p ack -e 40 -c 0 -i 449 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.2975 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 430 -a 0 -x {3.0 21.0 219 ------- null} + -t 23.2975 -s 21 -d 28 -p ack -e 40 -c 0 -i 450 -a 0 -x {21.0 3.0 219 ------- null} - -t 23.2975 -s 21 -d 28 -p ack -e 40 -c 0 -i 450 -a 0 -x {21.0 3.0 219 ------- null} h -t 23.2975 -s 21 -d 28 -p ack -e 40 -c 0 -i 450 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.2991 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {3.0 21.0 220 ------- null} + -t 23.2991 -s 21 -d 28 -p ack -e 40 -c 0 -i 451 -a 0 -x {21.0 3.0 220 ------- null} - -t 23.2991 -s 21 -d 28 -p ack -e 40 -c 0 -i 451 -a 0 -x {21.0 3.0 220 ------- null} h -t 23.2991 -s 21 -d 28 -p ack -e 40 -c 0 -i 451 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.3007 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 432 -a 0 -x {3.0 21.0 221 ------- null} + -t 23.3007 -s 21 -d 28 -p ack -e 40 -c 0 -i 452 -a 0 -x {21.0 3.0 221 ------- null} - -t 23.3007 -s 21 -d 28 -p ack -e 40 -c 0 -i 452 -a 0 -x {21.0 3.0 221 ------- null} h -t 23.3007 -s 21 -d 28 -p ack -e 40 -c 0 -i 452 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.3023 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {3.0 21.0 222 ------- null} + -t 23.3023 -s 21 -d 28 -p ack -e 40 -c 0 -i 453 -a 0 -x {21.0 3.0 222 ------- null} - -t 23.3023 -s 21 -d 28 -p ack -e 40 -c 0 -i 453 -a 0 -x {21.0 3.0 222 ------- null} h -t 23.3023 -s 21 -d 28 -p ack -e 40 -c 0 -i 453 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.3039 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {3.0 21.0 223 ------- null} + -t 23.3039 -s 21 -d 28 -p ack -e 40 -c 0 -i 454 -a 0 -x {21.0 3.0 223 ------- null} - -t 23.3039 -s 21 -d 28 -p ack -e 40 -c 0 -i 454 -a 0 -x {21.0 3.0 223 ------- null} h -t 23.3039 -s 21 -d 28 -p ack -e 40 -c 0 -i 454 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.3055 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {3.0 21.0 224 ------- null} + -t 23.3055 -s 21 -d 28 -p ack -e 40 -c 0 -i 455 -a 0 -x {21.0 3.0 224 ------- null} - -t 23.3055 -s 21 -d 28 -p ack -e 40 -c 0 -i 455 -a 0 -x {21.0 3.0 224 ------- null} h -t 23.3055 -s 21 -d 28 -p ack -e 40 -c 0 -i 455 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.3071 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {3.0 21.0 225 ------- null} + -t 23.3071 -s 21 -d 28 -p ack -e 40 -c 0 -i 456 -a 0 -x {21.0 3.0 225 ------- null} - -t 23.3071 -s 21 -d 28 -p ack -e 40 -c 0 -i 456 -a 0 -x {21.0 3.0 225 ------- null} h -t 23.3071 -s 21 -d 28 -p ack -e 40 -c 0 -i 456 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.3087 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {3.0 21.0 226 ------- null} + -t 23.3087 -s 21 -d 28 -p ack -e 40 -c 0 -i 457 -a 0 -x {21.0 3.0 226 ------- null} - -t 23.3087 -s 21 -d 28 -p ack -e 40 -c 0 -i 457 -a 0 -x {21.0 3.0 226 ------- null} h -t 23.3087 -s 21 -d 28 -p ack -e 40 -c 0 -i 457 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.3103 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {3.0 21.0 227 ------- null} + -t 23.3103 -s 21 -d 28 -p ack -e 40 -c 0 -i 458 -a 0 -x {21.0 3.0 227 ------- null} - -t 23.3103 -s 21 -d 28 -p ack -e 40 -c 0 -i 458 -a 0 -x {21.0 3.0 227 ------- null} h -t 23.3103 -s 21 -d 28 -p ack -e 40 -c 0 -i 458 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.3119 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {3.0 21.0 228 ------- null} + -t 23.3119 -s 21 -d 28 -p ack -e 40 -c 0 -i 459 -a 0 -x {21.0 3.0 228 ------- null} - -t 23.3119 -s 21 -d 28 -p ack -e 40 -c 0 -i 459 -a 0 -x {21.0 3.0 228 ------- null} h -t 23.3119 -s 21 -d 28 -p ack -e 40 -c 0 -i 459 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.3135 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {3.0 21.0 229 ------- null} + -t 23.3135 -s 21 -d 28 -p ack -e 40 -c 0 -i 460 -a 0 -x {21.0 3.0 229 ------- null} - -t 23.3135 -s 21 -d 28 -p ack -e 40 -c 0 -i 460 -a 0 -x {21.0 3.0 229 ------- null} h -t 23.3135 -s 21 -d 28 -p ack -e 40 -c 0 -i 460 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.3151 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {3.0 21.0 230 ------- null} + -t 23.3151 -s 21 -d 28 -p ack -e 40 -c 0 -i 461 -a 0 -x {21.0 3.0 230 ------- null} - -t 23.3151 -s 21 -d 28 -p ack -e 40 -c 0 -i 461 -a 0 -x {21.0 3.0 230 ------- null} h -t 23.3151 -s 21 -d 28 -p ack -e 40 -c 0 -i 461 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.6348 -s 21 -d 28 -p ack -e 40 -c 0 -i 442 -a 0 -x {21.0 3.0 211 ------- null} + -t 23.6348 -s 28 -d 1 -p ack -e 40 -c 0 -i 442 -a 0 -x {21.0 3.0 211 ------- null} - -t 23.6348 -s 28 -d 1 -p ack -e 40 -c 0 -i 442 -a 0 -x {21.0 3.0 211 ------- null} h -t 23.6348 -s 28 -d 1 -p ack -e 40 -c 0 -i 442 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.6364 -s 21 -d 28 -p ack -e 40 -c 0 -i 443 -a 0 -x {21.0 3.0 212 ------- null} + -t 23.6364 -s 28 -d 1 -p ack -e 40 -c 0 -i 443 -a 0 -x {21.0 3.0 212 ------- null} - -t 23.6364 -s 28 -d 1 -p ack -e 40 -c 0 -i 443 -a 0 -x {21.0 3.0 212 ------- null} h -t 23.6364 -s 28 -d 1 -p ack -e 40 -c 0 -i 443 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.638 -s 21 -d 28 -p ack -e 40 -c 0 -i 444 -a 0 -x {21.0 3.0 213 ------- null} + -t 23.638 -s 28 -d 1 -p ack -e 40 -c 0 -i 444 -a 0 -x {21.0 3.0 213 ------- null} - -t 23.638 -s 28 -d 1 -p ack -e 40 -c 0 -i 444 -a 0 -x {21.0 3.0 213 ------- null} h -t 23.638 -s 28 -d 1 -p ack -e 40 -c 0 -i 444 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.6396 -s 21 -d 28 -p ack -e 40 -c 0 -i 445 -a 0 -x {21.0 3.0 214 ------- null} + -t 23.6396 -s 28 -d 1 -p ack -e 40 -c 0 -i 445 -a 0 -x {21.0 3.0 214 ------- null} - -t 23.6396 -s 28 -d 1 -p ack -e 40 -c 0 -i 445 -a 0 -x {21.0 3.0 214 ------- null} h -t 23.6396 -s 28 -d 1 -p ack -e 40 -c 0 -i 445 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.6412 -s 21 -d 28 -p ack -e 40 -c 0 -i 446 -a 0 -x {21.0 3.0 215 ------- null} + -t 23.6412 -s 28 -d 1 -p ack -e 40 -c 0 -i 446 -a 0 -x {21.0 3.0 215 ------- null} - -t 23.6412 -s 28 -d 1 -p ack -e 40 -c 0 -i 446 -a 0 -x {21.0 3.0 215 ------- null} h -t 23.6412 -s 28 -d 1 -p ack -e 40 -c 0 -i 446 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.6428 -s 21 -d 28 -p ack -e 40 -c 0 -i 447 -a 0 -x {21.0 3.0 216 ------- null} + -t 23.6428 -s 28 -d 1 -p ack -e 40 -c 0 -i 447 -a 0 -x {21.0 3.0 216 ------- null} - -t 23.6428 -s 28 -d 1 -p ack -e 40 -c 0 -i 447 -a 0 -x {21.0 3.0 216 ------- null} h -t 23.6428 -s 28 -d 1 -p ack -e 40 -c 0 -i 447 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.6444 -s 21 -d 28 -p ack -e 40 -c 0 -i 448 -a 0 -x {21.0 3.0 217 ------- null} + -t 23.6444 -s 28 -d 1 -p ack -e 40 -c 0 -i 448 -a 0 -x {21.0 3.0 217 ------- null} - -t 23.6444 -s 28 -d 1 -p ack -e 40 -c 0 -i 448 -a 0 -x {21.0 3.0 217 ------- null} h -t 23.6444 -s 28 -d 1 -p ack -e 40 -c 0 -i 448 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.646 -s 21 -d 28 -p ack -e 40 -c 0 -i 449 -a 0 -x {21.0 3.0 218 ------- null} + -t 23.646 -s 28 -d 1 -p ack -e 40 -c 0 -i 449 -a 0 -x {21.0 3.0 218 ------- null} - -t 23.646 -s 28 -d 1 -p ack -e 40 -c 0 -i 449 -a 0 -x {21.0 3.0 218 ------- null} h -t 23.646 -s 28 -d 1 -p ack -e 40 -c 0 -i 449 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.6476 -s 21 -d 28 -p ack -e 40 -c 0 -i 450 -a 0 -x {21.0 3.0 219 ------- null} + -t 23.6476 -s 28 -d 1 -p ack -e 40 -c 0 -i 450 -a 0 -x {21.0 3.0 219 ------- null} - -t 23.6476 -s 28 -d 1 -p ack -e 40 -c 0 -i 450 -a 0 -x {21.0 3.0 219 ------- null} h -t 23.6476 -s 28 -d 1 -p ack -e 40 -c 0 -i 450 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.6492 -s 21 -d 28 -p ack -e 40 -c 0 -i 451 -a 0 -x {21.0 3.0 220 ------- null} + -t 23.6492 -s 28 -d 1 -p ack -e 40 -c 0 -i 451 -a 0 -x {21.0 3.0 220 ------- null} - -t 23.6492 -s 28 -d 1 -p ack -e 40 -c 0 -i 451 -a 0 -x {21.0 3.0 220 ------- null} h -t 23.6492 -s 28 -d 1 -p ack -e 40 -c 0 -i 451 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.6508 -s 21 -d 28 -p ack -e 40 -c 0 -i 452 -a 0 -x {21.0 3.0 221 ------- null} + -t 23.6508 -s 28 -d 1 -p ack -e 40 -c 0 -i 452 -a 0 -x {21.0 3.0 221 ------- null} - -t 23.6508 -s 28 -d 1 -p ack -e 40 -c 0 -i 452 -a 0 -x {21.0 3.0 221 ------- null} h -t 23.6508 -s 28 -d 1 -p ack -e 40 -c 0 -i 452 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.6524 -s 21 -d 28 -p ack -e 40 -c 0 -i 453 -a 0 -x {21.0 3.0 222 ------- null} + -t 23.6524 -s 28 -d 1 -p ack -e 40 -c 0 -i 453 -a 0 -x {21.0 3.0 222 ------- null} - -t 23.6524 -s 28 -d 1 -p ack -e 40 -c 0 -i 453 -a 0 -x {21.0 3.0 222 ------- null} h -t 23.6524 -s 28 -d 1 -p ack -e 40 -c 0 -i 453 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.654 -s 21 -d 28 -p ack -e 40 -c 0 -i 454 -a 0 -x {21.0 3.0 223 ------- null} + -t 23.654 -s 28 -d 1 -p ack -e 40 -c 0 -i 454 -a 0 -x {21.0 3.0 223 ------- null} - -t 23.654 -s 28 -d 1 -p ack -e 40 -c 0 -i 454 -a 0 -x {21.0 3.0 223 ------- null} h -t 23.654 -s 28 -d 1 -p ack -e 40 -c 0 -i 454 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.6556 -s 21 -d 28 -p ack -e 40 -c 0 -i 455 -a 0 -x {21.0 3.0 224 ------- null} + -t 23.6556 -s 28 -d 1 -p ack -e 40 -c 0 -i 455 -a 0 -x {21.0 3.0 224 ------- null} - -t 23.6556 -s 28 -d 1 -p ack -e 40 -c 0 -i 455 -a 0 -x {21.0 3.0 224 ------- null} h -t 23.6556 -s 28 -d 1 -p ack -e 40 -c 0 -i 455 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.6572 -s 21 -d 28 -p ack -e 40 -c 0 -i 456 -a 0 -x {21.0 3.0 225 ------- null} + -t 23.6572 -s 28 -d 1 -p ack -e 40 -c 0 -i 456 -a 0 -x {21.0 3.0 225 ------- null} - -t 23.6572 -s 28 -d 1 -p ack -e 40 -c 0 -i 456 -a 0 -x {21.0 3.0 225 ------- null} h -t 23.6572 -s 28 -d 1 -p ack -e 40 -c 0 -i 456 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.6588 -s 21 -d 28 -p ack -e 40 -c 0 -i 457 -a 0 -x {21.0 3.0 226 ------- null} + -t 23.6588 -s 28 -d 1 -p ack -e 40 -c 0 -i 457 -a 0 -x {21.0 3.0 226 ------- null} - -t 23.6588 -s 28 -d 1 -p ack -e 40 -c 0 -i 457 -a 0 -x {21.0 3.0 226 ------- null} h -t 23.6588 -s 28 -d 1 -p ack -e 40 -c 0 -i 457 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.6604 -s 21 -d 28 -p ack -e 40 -c 0 -i 458 -a 0 -x {21.0 3.0 227 ------- null} + -t 23.6604 -s 28 -d 1 -p ack -e 40 -c 0 -i 458 -a 0 -x {21.0 3.0 227 ------- null} - -t 23.6604 -s 28 -d 1 -p ack -e 40 -c 0 -i 458 -a 0 -x {21.0 3.0 227 ------- null} h -t 23.6604 -s 28 -d 1 -p ack -e 40 -c 0 -i 458 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.662 -s 21 -d 28 -p ack -e 40 -c 0 -i 459 -a 0 -x {21.0 3.0 228 ------- null} + -t 23.662 -s 28 -d 1 -p ack -e 40 -c 0 -i 459 -a 0 -x {21.0 3.0 228 ------- null} - -t 23.662 -s 28 -d 1 -p ack -e 40 -c 0 -i 459 -a 0 -x {21.0 3.0 228 ------- null} h -t 23.662 -s 28 -d 1 -p ack -e 40 -c 0 -i 459 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.6636 -s 21 -d 28 -p ack -e 40 -c 0 -i 460 -a 0 -x {21.0 3.0 229 ------- null} + -t 23.6636 -s 28 -d 1 -p ack -e 40 -c 0 -i 460 -a 0 -x {21.0 3.0 229 ------- null} - -t 23.6636 -s 28 -d 1 -p ack -e 40 -c 0 -i 460 -a 0 -x {21.0 3.0 229 ------- null} h -t 23.6636 -s 28 -d 1 -p ack -e 40 -c 0 -i 460 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.6652 -s 21 -d 28 -p ack -e 40 -c 0 -i 461 -a 0 -x {21.0 3.0 230 ------- null} + -t 23.6652 -s 28 -d 1 -p ack -e 40 -c 0 -i 461 -a 0 -x {21.0 3.0 230 ------- null} - -t 23.6652 -s 28 -d 1 -p ack -e 40 -c 0 -i 461 -a 0 -x {21.0 3.0 230 ------- null} h -t 23.6652 -s 28 -d 1 -p ack -e 40 -c 0 -i 461 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.9348 -s 28 -d 1 -p ack -e 40 -c 0 -i 442 -a 0 -x {21.0 3.0 211 ------- null} + -t 23.9348 -s 1 -d 3 -p ack -e 40 -c 0 -i 442 -a 0 -x {21.0 3.0 211 ------- null} - -t 23.9348 -s 1 -d 3 -p ack -e 40 -c 0 -i 442 -a 0 -x {21.0 3.0 211 ------- null} h -t 23.9348 -s 1 -d 3 -p ack -e 40 -c 0 -i 442 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.9364 -s 28 -d 1 -p ack -e 40 -c 0 -i 443 -a 0 -x {21.0 3.0 212 ------- null} + -t 23.9364 -s 1 -d 3 -p ack -e 40 -c 0 -i 443 -a 0 -x {21.0 3.0 212 ------- null} - -t 23.9364 -s 1 -d 3 -p ack -e 40 -c 0 -i 443 -a 0 -x {21.0 3.0 212 ------- null} h -t 23.9364 -s 1 -d 3 -p ack -e 40 -c 0 -i 443 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.938 -s 28 -d 1 -p ack -e 40 -c 0 -i 444 -a 0 -x {21.0 3.0 213 ------- null} + -t 23.938 -s 1 -d 3 -p ack -e 40 -c 0 -i 444 -a 0 -x {21.0 3.0 213 ------- null} - -t 23.938 -s 1 -d 3 -p ack -e 40 -c 0 -i 444 -a 0 -x {21.0 3.0 213 ------- null} h -t 23.938 -s 1 -d 3 -p ack -e 40 -c 0 -i 444 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.9396 -s 28 -d 1 -p ack -e 40 -c 0 -i 445 -a 0 -x {21.0 3.0 214 ------- null} + -t 23.9396 -s 1 -d 3 -p ack -e 40 -c 0 -i 445 -a 0 -x {21.0 3.0 214 ------- null} - -t 23.9396 -s 1 -d 3 -p ack -e 40 -c 0 -i 445 -a 0 -x {21.0 3.0 214 ------- null} h -t 23.9396 -s 1 -d 3 -p ack -e 40 -c 0 -i 445 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.9412 -s 28 -d 1 -p ack -e 40 -c 0 -i 446 -a 0 -x {21.0 3.0 215 ------- null} + -t 23.9412 -s 1 -d 3 -p ack -e 40 -c 0 -i 446 -a 0 -x {21.0 3.0 215 ------- null} - -t 23.9412 -s 1 -d 3 -p ack -e 40 -c 0 -i 446 -a 0 -x {21.0 3.0 215 ------- null} h -t 23.9412 -s 1 -d 3 -p ack -e 40 -c 0 -i 446 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.9428 -s 28 -d 1 -p ack -e 40 -c 0 -i 447 -a 0 -x {21.0 3.0 216 ------- null} + -t 23.9428 -s 1 -d 3 -p ack -e 40 -c 0 -i 447 -a 0 -x {21.0 3.0 216 ------- null} - -t 23.9428 -s 1 -d 3 -p ack -e 40 -c 0 -i 447 -a 0 -x {21.0 3.0 216 ------- null} h -t 23.9428 -s 1 -d 3 -p ack -e 40 -c 0 -i 447 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.9444 -s 28 -d 1 -p ack -e 40 -c 0 -i 448 -a 0 -x {21.0 3.0 217 ------- null} + -t 23.9444 -s 1 -d 3 -p ack -e 40 -c 0 -i 448 -a 0 -x {21.0 3.0 217 ------- null} - -t 23.9444 -s 1 -d 3 -p ack -e 40 -c 0 -i 448 -a 0 -x {21.0 3.0 217 ------- null} h -t 23.9444 -s 1 -d 3 -p ack -e 40 -c 0 -i 448 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.946 -s 28 -d 1 -p ack -e 40 -c 0 -i 449 -a 0 -x {21.0 3.0 218 ------- null} + -t 23.946 -s 1 -d 3 -p ack -e 40 -c 0 -i 449 -a 0 -x {21.0 3.0 218 ------- null} - -t 23.946 -s 1 -d 3 -p ack -e 40 -c 0 -i 449 -a 0 -x {21.0 3.0 218 ------- null} h -t 23.946 -s 1 -d 3 -p ack -e 40 -c 0 -i 449 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.9476 -s 28 -d 1 -p ack -e 40 -c 0 -i 450 -a 0 -x {21.0 3.0 219 ------- null} + -t 23.9476 -s 1 -d 3 -p ack -e 40 -c 0 -i 450 -a 0 -x {21.0 3.0 219 ------- null} - -t 23.9476 -s 1 -d 3 -p ack -e 40 -c 0 -i 450 -a 0 -x {21.0 3.0 219 ------- null} h -t 23.9476 -s 1 -d 3 -p ack -e 40 -c 0 -i 450 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.9492 -s 28 -d 1 -p ack -e 40 -c 0 -i 451 -a 0 -x {21.0 3.0 220 ------- null} + -t 23.9492 -s 1 -d 3 -p ack -e 40 -c 0 -i 451 -a 0 -x {21.0 3.0 220 ------- null} - -t 23.9492 -s 1 -d 3 -p ack -e 40 -c 0 -i 451 -a 0 -x {21.0 3.0 220 ------- null} h -t 23.9492 -s 1 -d 3 -p ack -e 40 -c 0 -i 451 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.9508 -s 28 -d 1 -p ack -e 40 -c 0 -i 452 -a 0 -x {21.0 3.0 221 ------- null} + -t 23.9508 -s 1 -d 3 -p ack -e 40 -c 0 -i 452 -a 0 -x {21.0 3.0 221 ------- null} - -t 23.9508 -s 1 -d 3 -p ack -e 40 -c 0 -i 452 -a 0 -x {21.0 3.0 221 ------- null} h -t 23.9508 -s 1 -d 3 -p ack -e 40 -c 0 -i 452 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.9524 -s 28 -d 1 -p ack -e 40 -c 0 -i 453 -a 0 -x {21.0 3.0 222 ------- null} + -t 23.9524 -s 1 -d 3 -p ack -e 40 -c 0 -i 453 -a 0 -x {21.0 3.0 222 ------- null} - -t 23.9524 -s 1 -d 3 -p ack -e 40 -c 0 -i 453 -a 0 -x {21.0 3.0 222 ------- null} h -t 23.9524 -s 1 -d 3 -p ack -e 40 -c 0 -i 453 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.954 -s 28 -d 1 -p ack -e 40 -c 0 -i 454 -a 0 -x {21.0 3.0 223 ------- null} + -t 23.954 -s 1 -d 3 -p ack -e 40 -c 0 -i 454 -a 0 -x {21.0 3.0 223 ------- null} - -t 23.954 -s 1 -d 3 -p ack -e 40 -c 0 -i 454 -a 0 -x {21.0 3.0 223 ------- null} h -t 23.954 -s 1 -d 3 -p ack -e 40 -c 0 -i 454 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.9556 -s 28 -d 1 -p ack -e 40 -c 0 -i 455 -a 0 -x {21.0 3.0 224 ------- null} + -t 23.9556 -s 1 -d 3 -p ack -e 40 -c 0 -i 455 -a 0 -x {21.0 3.0 224 ------- null} - -t 23.9556 -s 1 -d 3 -p ack -e 40 -c 0 -i 455 -a 0 -x {21.0 3.0 224 ------- null} h -t 23.9556 -s 1 -d 3 -p ack -e 40 -c 0 -i 455 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.9572 -s 28 -d 1 -p ack -e 40 -c 0 -i 456 -a 0 -x {21.0 3.0 225 ------- null} + -t 23.9572 -s 1 -d 3 -p ack -e 40 -c 0 -i 456 -a 0 -x {21.0 3.0 225 ------- null} - -t 23.9572 -s 1 -d 3 -p ack -e 40 -c 0 -i 456 -a 0 -x {21.0 3.0 225 ------- null} h -t 23.9572 -s 1 -d 3 -p ack -e 40 -c 0 -i 456 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.9588 -s 28 -d 1 -p ack -e 40 -c 0 -i 457 -a 0 -x {21.0 3.0 226 ------- null} + -t 23.9588 -s 1 -d 3 -p ack -e 40 -c 0 -i 457 -a 0 -x {21.0 3.0 226 ------- null} - -t 23.9588 -s 1 -d 3 -p ack -e 40 -c 0 -i 457 -a 0 -x {21.0 3.0 226 ------- null} h -t 23.9588 -s 1 -d 3 -p ack -e 40 -c 0 -i 457 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.9604 -s 28 -d 1 -p ack -e 40 -c 0 -i 458 -a 0 -x {21.0 3.0 227 ------- null} + -t 23.9604 -s 1 -d 3 -p ack -e 40 -c 0 -i 458 -a 0 -x {21.0 3.0 227 ------- null} - -t 23.9604 -s 1 -d 3 -p ack -e 40 -c 0 -i 458 -a 0 -x {21.0 3.0 227 ------- null} h -t 23.9604 -s 1 -d 3 -p ack -e 40 -c 0 -i 458 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.962 -s 28 -d 1 -p ack -e 40 -c 0 -i 459 -a 0 -x {21.0 3.0 228 ------- null} + -t 23.962 -s 1 -d 3 -p ack -e 40 -c 0 -i 459 -a 0 -x {21.0 3.0 228 ------- null} - -t 23.962 -s 1 -d 3 -p ack -e 40 -c 0 -i 459 -a 0 -x {21.0 3.0 228 ------- null} h -t 23.962 -s 1 -d 3 -p ack -e 40 -c 0 -i 459 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.9636 -s 28 -d 1 -p ack -e 40 -c 0 -i 460 -a 0 -x {21.0 3.0 229 ------- null} + -t 23.9636 -s 1 -d 3 -p ack -e 40 -c 0 -i 460 -a 0 -x {21.0 3.0 229 ------- null} - -t 23.9636 -s 1 -d 3 -p ack -e 40 -c 0 -i 460 -a 0 -x {21.0 3.0 229 ------- null} h -t 23.9636 -s 1 -d 3 -p ack -e 40 -c 0 -i 460 -a 0 -x {21.0 3.0 -1 ------- null} r -t 23.9652 -s 28 -d 1 -p ack -e 40 -c 0 -i 461 -a 0 -x {21.0 3.0 230 ------- null} + -t 23.9652 -s 1 -d 3 -p ack -e 40 -c 0 -i 461 -a 0 -x {21.0 3.0 230 ------- null} - -t 23.9652 -s 1 -d 3 -p ack -e 40 -c 0 -i 461 -a 0 -x {21.0 3.0 230 ------- null} h -t 23.9652 -s 1 -d 3 -p ack -e 40 -c 0 -i 461 -a 0 -x {21.0 3.0 -1 ------- null} r -t 24.0749 -s 1 -d 3 -p ack -e 40 -c 0 -i 442 -a 0 -x {21.0 3.0 211 ------- null} + -t 24.0749 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 462 -a 0 -x {3.0 21.0 231 ------- null} - -t 24.0749 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 462 -a 0 -x {3.0 21.0 231 ------- null} h -t 24.0749 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 462 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.0765 -s 1 -d 3 -p ack -e 40 -c 0 -i 443 -a 0 -x {21.0 3.0 212 ------- null} + -t 24.0765 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {3.0 21.0 232 ------- null} - -t 24.0765 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {3.0 21.0 232 ------- null} h -t 24.0765 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.0781 -s 1 -d 3 -p ack -e 40 -c 0 -i 444 -a 0 -x {21.0 3.0 213 ------- null} + -t 24.0781 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 464 -a 0 -x {3.0 21.0 233 ------- null} - -t 24.0781 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 464 -a 0 -x {3.0 21.0 233 ------- null} h -t 24.0781 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 464 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.0797 -s 1 -d 3 -p ack -e 40 -c 0 -i 445 -a 0 -x {21.0 3.0 214 ------- null} + -t 24.0797 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {3.0 21.0 234 ------- null} - -t 24.0797 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {3.0 21.0 234 ------- null} h -t 24.0797 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.0813 -s 1 -d 3 -p ack -e 40 -c 0 -i 446 -a 0 -x {21.0 3.0 215 ------- null} + -t 24.0813 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 466 -a 0 -x {3.0 21.0 235 ------- null} - -t 24.0813 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 466 -a 0 -x {3.0 21.0 235 ------- null} h -t 24.0813 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 466 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.0829 -s 1 -d 3 -p ack -e 40 -c 0 -i 447 -a 0 -x {21.0 3.0 216 ------- null} + -t 24.0829 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {3.0 21.0 236 ------- null} - -t 24.0829 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {3.0 21.0 236 ------- null} h -t 24.0829 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.0845 -s 1 -d 3 -p ack -e 40 -c 0 -i 448 -a 0 -x {21.0 3.0 217 ------- null} + -t 24.0845 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 468 -a 0 -x {3.0 21.0 237 ------- null} - -t 24.0845 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 468 -a 0 -x {3.0 21.0 237 ------- null} h -t 24.0845 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 468 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.0861 -s 1 -d 3 -p ack -e 40 -c 0 -i 449 -a 0 -x {21.0 3.0 218 ------- null} + -t 24.0861 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {3.0 21.0 238 ------- null} - -t 24.0861 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {3.0 21.0 238 ------- null} h -t 24.0861 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.0877 -s 1 -d 3 -p ack -e 40 -c 0 -i 450 -a 0 -x {21.0 3.0 219 ------- null} + -t 24.0877 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 470 -a 0 -x {3.0 21.0 239 ------- null} - -t 24.0877 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 470 -a 0 -x {3.0 21.0 239 ------- null} h -t 24.0877 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 470 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.0893 -s 1 -d 3 -p ack -e 40 -c 0 -i 451 -a 0 -x {21.0 3.0 220 ------- null} + -t 24.0893 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {3.0 21.0 240 ------- null} - -t 24.0893 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {3.0 21.0 240 ------- null} h -t 24.0893 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.0909 -s 1 -d 3 -p ack -e 40 -c 0 -i 452 -a 0 -x {21.0 3.0 221 ------- null} + -t 24.0909 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {3.0 21.0 241 ------- null} - -t 24.0909 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {3.0 21.0 241 ------- null} h -t 24.0909 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.0925 -s 1 -d 3 -p ack -e 40 -c 0 -i 453 -a 0 -x {21.0 3.0 222 ------- null} + -t 24.0925 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {3.0 21.0 242 ------- null} - -t 24.0925 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {3.0 21.0 242 ------- null} h -t 24.0925 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.0941 -s 1 -d 3 -p ack -e 40 -c 0 -i 454 -a 0 -x {21.0 3.0 223 ------- null} + -t 24.0941 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 474 -a 0 -x {3.0 21.0 243 ------- null} - -t 24.0941 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 474 -a 0 -x {3.0 21.0 243 ------- null} h -t 24.0941 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 474 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.0957 -s 1 -d 3 -p ack -e 40 -c 0 -i 455 -a 0 -x {21.0 3.0 224 ------- null} + -t 24.0957 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {3.0 21.0 244 ------- null} - -t 24.0957 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {3.0 21.0 244 ------- null} h -t 24.0957 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.0973 -s 1 -d 3 -p ack -e 40 -c 0 -i 456 -a 0 -x {21.0 3.0 225 ------- null} + -t 24.0973 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 476 -a 0 -x {3.0 21.0 245 ------- null} - -t 24.0973 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 476 -a 0 -x {3.0 21.0 245 ------- null} h -t 24.0973 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 476 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.0989 -s 1 -d 3 -p ack -e 40 -c 0 -i 457 -a 0 -x {21.0 3.0 226 ------- null} + -t 24.0989 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {3.0 21.0 246 ------- null} - -t 24.0989 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {3.0 21.0 246 ------- null} h -t 24.0989 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.1005 -s 1 -d 3 -p ack -e 40 -c 0 -i 458 -a 0 -x {21.0 3.0 227 ------- null} + -t 24.1005 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {3.0 21.0 247 ------- null} - -t 24.1005 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {3.0 21.0 247 ------- null} h -t 24.1005 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.1021 -s 1 -d 3 -p ack -e 40 -c 0 -i 459 -a 0 -x {21.0 3.0 228 ------- null} + -t 24.1021 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {3.0 21.0 248 ------- null} - -t 24.1021 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {3.0 21.0 248 ------- null} h -t 24.1021 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.1037 -s 1 -d 3 -p ack -e 40 -c 0 -i 460 -a 0 -x {21.0 3.0 229 ------- null} + -t 24.1037 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {3.0 21.0 249 ------- null} - -t 24.1037 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {3.0 21.0 249 ------- null} h -t 24.1037 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.1053 -s 1 -d 3 -p ack -e 40 -c 0 -i 461 -a 0 -x {21.0 3.0 230 ------- null} + -t 24.1053 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {3.0 21.0 250 ------- null} - -t 24.1053 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {3.0 21.0 250 ------- null} h -t 24.1053 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.2165 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 462 -a 0 -x {3.0 21.0 231 ------- null} + -t 24.2165 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 462 -a 0 -x {3.0 21.0 231 ------- null} - -t 24.2165 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 462 -a 0 -x {3.0 21.0 231 ------- null} h -t 24.2165 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 462 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.2181 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {3.0 21.0 232 ------- null} + -t 24.2181 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {3.0 21.0 232 ------- null} - -t 24.2181 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {3.0 21.0 232 ------- null} h -t 24.2181 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.2197 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 464 -a 0 -x {3.0 21.0 233 ------- null} + -t 24.2197 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 464 -a 0 -x {3.0 21.0 233 ------- null} - -t 24.2197 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 464 -a 0 -x {3.0 21.0 233 ------- null} h -t 24.2197 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 464 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.2213 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {3.0 21.0 234 ------- null} + -t 24.2213 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {3.0 21.0 234 ------- null} - -t 24.2213 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {3.0 21.0 234 ------- null} h -t 24.2213 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.2229 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 466 -a 0 -x {3.0 21.0 235 ------- null} + -t 24.2229 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 466 -a 0 -x {3.0 21.0 235 ------- null} - -t 24.2229 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 466 -a 0 -x {3.0 21.0 235 ------- null} h -t 24.2229 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 466 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.2245 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {3.0 21.0 236 ------- null} + -t 24.2245 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {3.0 21.0 236 ------- null} - -t 24.2245 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {3.0 21.0 236 ------- null} h -t 24.2245 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.2261 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 468 -a 0 -x {3.0 21.0 237 ------- null} + -t 24.2261 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 468 -a 0 -x {3.0 21.0 237 ------- null} - -t 24.2261 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 468 -a 0 -x {3.0 21.0 237 ------- null} h -t 24.2261 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 468 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.2277 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {3.0 21.0 238 ------- null} + -t 24.2277 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {3.0 21.0 238 ------- null} - -t 24.2277 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {3.0 21.0 238 ------- null} h -t 24.2277 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.2293 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 470 -a 0 -x {3.0 21.0 239 ------- null} + -t 24.2293 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 470 -a 0 -x {3.0 21.0 239 ------- null} - -t 24.2293 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 470 -a 0 -x {3.0 21.0 239 ------- null} h -t 24.2293 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 470 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.2309 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {3.0 21.0 240 ------- null} + -t 24.2309 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {3.0 21.0 240 ------- null} - -t 24.2309 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {3.0 21.0 240 ------- null} h -t 24.2309 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.2325 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {3.0 21.0 241 ------- null} + -t 24.2325 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {3.0 21.0 241 ------- null} - -t 24.2325 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {3.0 21.0 241 ------- null} h -t 24.2325 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.2341 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {3.0 21.0 242 ------- null} + -t 24.2341 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {3.0 21.0 242 ------- null} - -t 24.2341 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {3.0 21.0 242 ------- null} h -t 24.2341 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.2357 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 474 -a 0 -x {3.0 21.0 243 ------- null} + -t 24.2357 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 474 -a 0 -x {3.0 21.0 243 ------- null} - -t 24.2357 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 474 -a 0 -x {3.0 21.0 243 ------- null} h -t 24.2357 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 474 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.2373 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {3.0 21.0 244 ------- null} + -t 24.2373 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {3.0 21.0 244 ------- null} - -t 24.2373 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {3.0 21.0 244 ------- null} h -t 24.2373 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.2389 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 476 -a 0 -x {3.0 21.0 245 ------- null} + -t 24.2389 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 476 -a 0 -x {3.0 21.0 245 ------- null} - -t 24.2389 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 476 -a 0 -x {3.0 21.0 245 ------- null} h -t 24.2389 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 476 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.2405 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {3.0 21.0 246 ------- null} + -t 24.2405 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {3.0 21.0 246 ------- null} - -t 24.2405 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {3.0 21.0 246 ------- null} h -t 24.2405 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.2421 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {3.0 21.0 247 ------- null} + -t 24.2421 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {3.0 21.0 247 ------- null} - -t 24.2421 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {3.0 21.0 247 ------- null} h -t 24.2421 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.2437 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {3.0 21.0 248 ------- null} + -t 24.2437 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {3.0 21.0 248 ------- null} - -t 24.2437 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {3.0 21.0 248 ------- null} h -t 24.2437 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.2453 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {3.0 21.0 249 ------- null} + -t 24.2453 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {3.0 21.0 249 ------- null} - -t 24.2453 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {3.0 21.0 249 ------- null} h -t 24.2453 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.2469 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {3.0 21.0 250 ------- null} + -t 24.2469 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {3.0 21.0 250 ------- null} - -t 24.2469 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {3.0 21.0 250 ------- null} h -t 24.2469 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.5181 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 462 -a 0 -x {3.0 21.0 231 ------- null} + -t 24.5181 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 462 -a 0 -x {3.0 21.0 231 ------- null} - -t 24.5181 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 462 -a 0 -x {3.0 21.0 231 ------- null} h -t 24.5181 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 462 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.5197 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {3.0 21.0 232 ------- null} + -t 24.5197 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {3.0 21.0 232 ------- null} - -t 24.5197 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {3.0 21.0 232 ------- null} h -t 24.5197 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.5213 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 464 -a 0 -x {3.0 21.0 233 ------- null} + -t 24.5213 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 464 -a 0 -x {3.0 21.0 233 ------- null} - -t 24.5213 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 464 -a 0 -x {3.0 21.0 233 ------- null} h -t 24.5213 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 464 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.5229 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {3.0 21.0 234 ------- null} + -t 24.5229 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {3.0 21.0 234 ------- null} - -t 24.5229 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {3.0 21.0 234 ------- null} h -t 24.5229 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.5245 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 466 -a 0 -x {3.0 21.0 235 ------- null} + -t 24.5245 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 466 -a 0 -x {3.0 21.0 235 ------- null} - -t 24.5245 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 466 -a 0 -x {3.0 21.0 235 ------- null} h -t 24.5245 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 466 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.5261 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {3.0 21.0 236 ------- null} + -t 24.5261 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {3.0 21.0 236 ------- null} - -t 24.5261 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {3.0 21.0 236 ------- null} h -t 24.5261 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.5277 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 468 -a 0 -x {3.0 21.0 237 ------- null} + -t 24.5277 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 468 -a 0 -x {3.0 21.0 237 ------- null} - -t 24.5277 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 468 -a 0 -x {3.0 21.0 237 ------- null} h -t 24.5277 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 468 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.5293 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {3.0 21.0 238 ------- null} + -t 24.5293 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {3.0 21.0 238 ------- null} - -t 24.5293 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {3.0 21.0 238 ------- null} h -t 24.5293 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.5309 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 470 -a 0 -x {3.0 21.0 239 ------- null} + -t 24.5309 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 470 -a 0 -x {3.0 21.0 239 ------- null} - -t 24.5309 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 470 -a 0 -x {3.0 21.0 239 ------- null} h -t 24.5309 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 470 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.5325 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {3.0 21.0 240 ------- null} + -t 24.5325 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {3.0 21.0 240 ------- null} - -t 24.5325 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {3.0 21.0 240 ------- null} h -t 24.5325 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.5341 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {3.0 21.0 241 ------- null} + -t 24.5341 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {3.0 21.0 241 ------- null} - -t 24.5341 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {3.0 21.0 241 ------- null} h -t 24.5341 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.5357 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {3.0 21.0 242 ------- null} + -t 24.5357 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {3.0 21.0 242 ------- null} - -t 24.5357 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {3.0 21.0 242 ------- null} h -t 24.5357 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.5373 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 474 -a 0 -x {3.0 21.0 243 ------- null} + -t 24.5373 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 474 -a 0 -x {3.0 21.0 243 ------- null} - -t 24.5373 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 474 -a 0 -x {3.0 21.0 243 ------- null} h -t 24.5373 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 474 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.5389 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {3.0 21.0 244 ------- null} + -t 24.5389 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {3.0 21.0 244 ------- null} - -t 24.5389 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {3.0 21.0 244 ------- null} h -t 24.5389 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.5405 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 476 -a 0 -x {3.0 21.0 245 ------- null} + -t 24.5405 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 476 -a 0 -x {3.0 21.0 245 ------- null} - -t 24.5405 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 476 -a 0 -x {3.0 21.0 245 ------- null} h -t 24.5405 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 476 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.5421 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {3.0 21.0 246 ------- null} + -t 24.5421 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {3.0 21.0 246 ------- null} - -t 24.5421 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {3.0 21.0 246 ------- null} h -t 24.5421 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.5437 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {3.0 21.0 247 ------- null} + -t 24.5437 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {3.0 21.0 247 ------- null} - -t 24.5437 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {3.0 21.0 247 ------- null} h -t 24.5437 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.5453 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {3.0 21.0 248 ------- null} + -t 24.5453 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {3.0 21.0 248 ------- null} - -t 24.5453 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {3.0 21.0 248 ------- null} h -t 24.5453 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.5469 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {3.0 21.0 249 ------- null} + -t 24.5469 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {3.0 21.0 249 ------- null} - -t 24.5469 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {3.0 21.0 249 ------- null} h -t 24.5469 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.5485 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {3.0 21.0 250 ------- null} + -t 24.5485 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {3.0 21.0 250 ------- null} - -t 24.5485 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {3.0 21.0 250 ------- null} h -t 24.5485 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.8697 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 462 -a 0 -x {3.0 21.0 231 ------- null} + -t 24.8697 -s 21 -d 28 -p ack -e 40 -c 0 -i 482 -a 0 -x {21.0 3.0 231 ------- null} - -t 24.8697 -s 21 -d 28 -p ack -e 40 -c 0 -i 482 -a 0 -x {21.0 3.0 231 ------- null} h -t 24.8697 -s 21 -d 28 -p ack -e 40 -c 0 -i 482 -a 0 -x {21.0 3.0 -1 ------- null} r -t 24.8713 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {3.0 21.0 232 ------- null} + -t 24.8713 -s 21 -d 28 -p ack -e 40 -c 0 -i 483 -a 0 -x {21.0 3.0 232 ------- null} - -t 24.8713 -s 21 -d 28 -p ack -e 40 -c 0 -i 483 -a 0 -x {21.0 3.0 232 ------- null} h -t 24.8713 -s 21 -d 28 -p ack -e 40 -c 0 -i 483 -a 0 -x {21.0 3.0 -1 ------- null} r -t 24.8729 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 464 -a 0 -x {3.0 21.0 233 ------- null} + -t 24.8729 -s 21 -d 28 -p ack -e 40 -c 0 -i 484 -a 0 -x {21.0 3.0 233 ------- null} - -t 24.8729 -s 21 -d 28 -p ack -e 40 -c 0 -i 484 -a 0 -x {21.0 3.0 233 ------- null} h -t 24.8729 -s 21 -d 28 -p ack -e 40 -c 0 -i 484 -a 0 -x {21.0 3.0 -1 ------- null} r -t 24.8745 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {3.0 21.0 234 ------- null} + -t 24.8745 -s 21 -d 28 -p ack -e 40 -c 0 -i 485 -a 0 -x {21.0 3.0 234 ------- null} - -t 24.8745 -s 21 -d 28 -p ack -e 40 -c 0 -i 485 -a 0 -x {21.0 3.0 234 ------- null} h -t 24.8745 -s 21 -d 28 -p ack -e 40 -c 0 -i 485 -a 0 -x {21.0 3.0 -1 ------- null} r -t 24.8761 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 466 -a 0 -x {3.0 21.0 235 ------- null} + -t 24.8761 -s 21 -d 28 -p ack -e 40 -c 0 -i 486 -a 0 -x {21.0 3.0 235 ------- null} - -t 24.8761 -s 21 -d 28 -p ack -e 40 -c 0 -i 486 -a 0 -x {21.0 3.0 235 ------- null} h -t 24.8761 -s 21 -d 28 -p ack -e 40 -c 0 -i 486 -a 0 -x {21.0 3.0 -1 ------- null} r -t 24.8777 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {3.0 21.0 236 ------- null} + -t 24.8777 -s 21 -d 28 -p ack -e 40 -c 0 -i 487 -a 0 -x {21.0 3.0 236 ------- null} - -t 24.8777 -s 21 -d 28 -p ack -e 40 -c 0 -i 487 -a 0 -x {21.0 3.0 236 ------- null} h -t 24.8777 -s 21 -d 28 -p ack -e 40 -c 0 -i 487 -a 0 -x {21.0 3.0 -1 ------- null} r -t 24.8793 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 468 -a 0 -x {3.0 21.0 237 ------- null} + -t 24.8793 -s 21 -d 28 -p ack -e 40 -c 0 -i 488 -a 0 -x {21.0 3.0 237 ------- null} - -t 24.8793 -s 21 -d 28 -p ack -e 40 -c 0 -i 488 -a 0 -x {21.0 3.0 237 ------- null} h -t 24.8793 -s 21 -d 28 -p ack -e 40 -c 0 -i 488 -a 0 -x {21.0 3.0 -1 ------- null} r -t 24.8809 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {3.0 21.0 238 ------- null} + -t 24.8809 -s 21 -d 28 -p ack -e 40 -c 0 -i 489 -a 0 -x {21.0 3.0 238 ------- null} - -t 24.8809 -s 21 -d 28 -p ack -e 40 -c 0 -i 489 -a 0 -x {21.0 3.0 238 ------- null} h -t 24.8809 -s 21 -d 28 -p ack -e 40 -c 0 -i 489 -a 0 -x {21.0 3.0 -1 ------- null} r -t 24.8825 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 470 -a 0 -x {3.0 21.0 239 ------- null} + -t 24.8825 -s 21 -d 28 -p ack -e 40 -c 0 -i 490 -a 0 -x {21.0 3.0 239 ------- null} - -t 24.8825 -s 21 -d 28 -p ack -e 40 -c 0 -i 490 -a 0 -x {21.0 3.0 239 ------- null} h -t 24.8825 -s 21 -d 28 -p ack -e 40 -c 0 -i 490 -a 0 -x {21.0 3.0 -1 ------- null} r -t 24.8841 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {3.0 21.0 240 ------- null} + -t 24.8841 -s 21 -d 28 -p ack -e 40 -c 0 -i 491 -a 0 -x {21.0 3.0 240 ------- null} - -t 24.8841 -s 21 -d 28 -p ack -e 40 -c 0 -i 491 -a 0 -x {21.0 3.0 240 ------- null} h -t 24.8841 -s 21 -d 28 -p ack -e 40 -c 0 -i 491 -a 0 -x {21.0 3.0 -1 ------- null} r -t 24.8857 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {3.0 21.0 241 ------- null} + -t 24.8857 -s 21 -d 28 -p ack -e 40 -c 0 -i 492 -a 0 -x {21.0 3.0 241 ------- null} - -t 24.8857 -s 21 -d 28 -p ack -e 40 -c 0 -i 492 -a 0 -x {21.0 3.0 241 ------- null} h -t 24.8857 -s 21 -d 28 -p ack -e 40 -c 0 -i 492 -a 0 -x {21.0 3.0 -1 ------- null} r -t 24.8873 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {3.0 21.0 242 ------- null} + -t 24.8873 -s 21 -d 28 -p ack -e 40 -c 0 -i 493 -a 0 -x {21.0 3.0 242 ------- null} - -t 24.8873 -s 21 -d 28 -p ack -e 40 -c 0 -i 493 -a 0 -x {21.0 3.0 242 ------- null} h -t 24.8873 -s 21 -d 28 -p ack -e 40 -c 0 -i 493 -a 0 -x {21.0 3.0 -1 ------- null} r -t 24.8889 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 474 -a 0 -x {3.0 21.0 243 ------- null} + -t 24.8889 -s 21 -d 28 -p ack -e 40 -c 0 -i 494 -a 0 -x {21.0 3.0 243 ------- null} - -t 24.8889 -s 21 -d 28 -p ack -e 40 -c 0 -i 494 -a 0 -x {21.0 3.0 243 ------- null} h -t 24.8889 -s 21 -d 28 -p ack -e 40 -c 0 -i 494 -a 0 -x {21.0 3.0 -1 ------- null} r -t 24.8905 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {3.0 21.0 244 ------- null} + -t 24.8905 -s 21 -d 28 -p ack -e 40 -c 0 -i 495 -a 0 -x {21.0 3.0 244 ------- null} - -t 24.8905 -s 21 -d 28 -p ack -e 40 -c 0 -i 495 -a 0 -x {21.0 3.0 244 ------- null} h -t 24.8905 -s 21 -d 28 -p ack -e 40 -c 0 -i 495 -a 0 -x {21.0 3.0 -1 ------- null} r -t 24.8921 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 476 -a 0 -x {3.0 21.0 245 ------- null} + -t 24.8921 -s 21 -d 28 -p ack -e 40 -c 0 -i 496 -a 0 -x {21.0 3.0 245 ------- null} - -t 24.8921 -s 21 -d 28 -p ack -e 40 -c 0 -i 496 -a 0 -x {21.0 3.0 245 ------- null} h -t 24.8921 -s 21 -d 28 -p ack -e 40 -c 0 -i 496 -a 0 -x {21.0 3.0 -1 ------- null} r -t 24.8937 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {3.0 21.0 246 ------- null} + -t 24.8937 -s 21 -d 28 -p ack -e 40 -c 0 -i 497 -a 0 -x {21.0 3.0 246 ------- null} - -t 24.8937 -s 21 -d 28 -p ack -e 40 -c 0 -i 497 -a 0 -x {21.0 3.0 246 ------- null} h -t 24.8937 -s 21 -d 28 -p ack -e 40 -c 0 -i 497 -a 0 -x {21.0 3.0 -1 ------- null} r -t 24.8953 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {3.0 21.0 247 ------- null} + -t 24.8953 -s 21 -d 28 -p ack -e 40 -c 0 -i 498 -a 0 -x {21.0 3.0 247 ------- null} - -t 24.8953 -s 21 -d 28 -p ack -e 40 -c 0 -i 498 -a 0 -x {21.0 3.0 247 ------- null} h -t 24.8953 -s 21 -d 28 -p ack -e 40 -c 0 -i 498 -a 0 -x {21.0 3.0 -1 ------- null} r -t 24.8969 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {3.0 21.0 248 ------- null} + -t 24.8969 -s 21 -d 28 -p ack -e 40 -c 0 -i 499 -a 0 -x {21.0 3.0 248 ------- null} - -t 24.8969 -s 21 -d 28 -p ack -e 40 -c 0 -i 499 -a 0 -x {21.0 3.0 248 ------- null} h -t 24.8969 -s 21 -d 28 -p ack -e 40 -c 0 -i 499 -a 0 -x {21.0 3.0 -1 ------- null} r -t 24.8985 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {3.0 21.0 249 ------- null} + -t 24.8985 -s 21 -d 28 -p ack -e 40 -c 0 -i 500 -a 0 -x {21.0 3.0 249 ------- null} - -t 24.8985 -s 21 -d 28 -p ack -e 40 -c 0 -i 500 -a 0 -x {21.0 3.0 249 ------- null} h -t 24.8985 -s 21 -d 28 -p ack -e 40 -c 0 -i 500 -a 0 -x {21.0 3.0 -1 ------- null} r -t 24.9001 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {3.0 21.0 250 ------- null} + -t 24.9001 -s 21 -d 28 -p ack -e 40 -c 0 -i 501 -a 0 -x {21.0 3.0 250 ------- null} - -t 24.9001 -s 21 -d 28 -p ack -e 40 -c 0 -i 501 -a 0 -x {21.0 3.0 250 ------- null} h -t 24.9001 -s 21 -d 28 -p ack -e 40 -c 0 -i 501 -a 0 -x {21.0 3.0 -1 ------- null} r -t 25.2197 -s 21 -d 28 -p ack -e 40 -c 0 -i 482 -a 0 -x {21.0 3.0 231 ------- null} + -t 25.2197 -s 28 -d 1 -p ack -e 40 -c 0 -i 482 -a 0 -x {21.0 3.0 231 ------- null} - -t 25.2197 -s 28 -d 1 -p ack -e 40 -c 0 -i 482 -a 0 -x {21.0 3.0 231 ------- null} h -t 25.2197 -s 28 -d 1 -p ack -e 40 -c 0 -i 482 -a 0 -x {21.0 3.0 -1 ------- null} r -t 25.2213 -s 21 -d 28 -p ack -e 40 -c 0 -i 483 -a 0 -x {21.0 3.0 232 ------- null} + -t 25.2213 -s 28 -d 1 -p ack -e 40 -c 0 -i 483 -a 0 -x {21.0 3.0 232 ------- null} - -t 25.2213 -s 28 -d 1 -p ack -e 40 -c 0 -i 483 -a 0 -x {21.0 3.0 232 ------- null} h -t 25.2213 -s 28 -d 1 -p ack -e 40 -c 0 -i 483 -a 0 -x {21.0 3.0 -1 ------- null} r -t 25.2229 -s 21 -d 28 -p ack -e 40 -c 0 -i 484 -a 0 -x {21.0 3.0 233 ------- null} + -t 25.2229 -s 28 -d 1 -p ack -e 40 -c 0 -i 484 -a 0 -x {21.0 3.0 233 ------- null} - -t 25.2229 -s 28 -d 1 -p ack -e 40 -c 0 -i 484 -a 0 -x {21.0 3.0 233 ------- null} h -t 25.2229 -s 28 -d 1 -p ack -e 40 -c 0 -i 484 -a 0 -x {21.0 3.0 -1 ------- null} r -t 25.2245 -s 21 -d 28 -p ack -e 40 -c 0 -i 485 -a 0 -x {21.0 3.0 234 ------- null} + -t 25.2245 -s 28 -d 1 -p ack -e 40 -c 0 -i 485 -a 0 -x {21.0 3.0 234 ------- null} - -t 25.2245 -s 28 -d 1 -p ack -e 40 -c 0 -i 485 -a 0 -x {21.0 3.0 234 ------- null} h -t 25.2245 -s 28 -d 1 -p ack -e 40 -c 0 -i 485 -a 0 -x {21.0 3.0 -1 ------- null} r -t 25.2261 -s 21 -d 28 -p ack -e 40 -c 0 -i 486 -a 0 -x {21.0 3.0 235 ------- null} + -t 25.2261 -s 28 -d 1 -p ack -e 40 -c 0 -i 486 -a 0 -x {21.0 3.0 235 ------- null} - -t 25.2261 -s 28 -d 1 -p ack -e 40 -c 0 -i 486 -a 0 -x {21.0 3.0 235 ------- null} h -t 25.2261 -s 28 -d 1 -p ack -e 40 -c 0 -i 486 -a 0 -x {21.0 3.0 -1 ------- null} r -t 25.2277 -s 21 -d 28 -p ack -e 40 -c 0 -i 487 -a 0 -x {21.0 3.0 236 ------- null} + -t 25.2277 -s 28 -d 1 -p ack -e 40 -c 0 -i 487 -a 0 -x {21.0 3.0 236 ------- null} - -t 25.2277 -s 28 -d 1 -p ack -e 40 -c 0 -i 487 -a 0 -x {21.0 3.0 236 ------- null} h -t 25.2277 -s 28 -d 1 -p ack -e 40 -c 0 -i 487 -a 0 -x {21.0 3.0 -1 ------- null} r -t 25.2293 -s 21 -d 28 -p ack -e 40 -c 0 -i 488 -a 0 -x {21.0 3.0 237 ------- null} + -t 25.2293 -s 28 -d 1 -p ack -e 40 -c 0 -i 488 -a 0 -x {21.0 3.0 237 ------- null} - -t 25.2293 -s 28 -d 1 -p ack -e 40 -c 0 -i 488 -a 0 -x {21.0 3.0 237 ------- null} h -t 25.2293 -s 28 -d 1 -p ack -e 40 -c 0 -i 488 -a 0 -x {21.0 3.0 -1 ------- null} r -t 25.2309 -s 21 -d 28 -p ack -e 40 -c 0 -i 489 -a 0 -x {21.0 3.0 238 ------- null} + -t 25.2309 -s 28 -d 1 -p ack -e 40 -c 0 -i 489 -a 0 -x {21.0 3.0 238 ------- null} - -t 25.2309 -s 28 -d 1 -p ack -e 40 -c 0 -i 489 -a 0 -x {21.0 3.0 238 ------- null} h -t 25.2309 -s 28 -d 1 -p ack -e 40 -c 0 -i 489 -a 0 -x {21.0 3.0 -1 ------- null} r -t 25.2325 -s 21 -d 28 -p ack -e 40 -c 0 -i 490 -a 0 -x {21.0 3.0 239 ------- null} + -t 25.2325 -s 28 -d 1 -p ack -e 40 -c 0 -i 490 -a 0 -x {21.0 3.0 239 ------- null} - -t 25.2325 -s 28 -d 1 -p ack -e 40 -c 0 -i 490 -a 0 -x {21.0 3.0 239 ------- null} h -t 25.2325 -s 28 -d 1 -p ack -e 40 -c 0 -i 490 -a 0 -x {21.0 3.0 -1 ------- null} r -t 25.2341 -s 21 -d 28 -p ack -e 40 -c 0 -i 491 -a 0 -x {21.0 3.0 240 ------- null} + -t 25.2341 -s 28 -d 1 -p ack -e 40 -c 0 -i 491 -a 0 -x {21.0 3.0 240 ------- null} - -t 25.2341 -s 28 -d 1 -p ack -e 40 -c 0 -i 491 -a 0 -x {21.0 3.0 240 ------- null} h -t 25.2341 -s 28 -d 1 -p ack -e 40 -c 0 -i 491 -a 0 -x {21.0 3.0 -1 ------- null} r -t 25.2357 -s 21 -d 28 -p ack -e 40 -c 0 -i 492 -a 0 -x {21.0 3.0 241 ------- null} + -t 25.2357 -s 28 -d 1 -p ack -e 40 -c 0 -i 492 -a 0 -x {21.0 3.0 241 ------- null} - -t 25.2357 -s 28 -d 1 -p ack -e 40 -c 0 -i 492 -a 0 -x {21.0 3.0 241 ------- null} h -t 25.2357 -s 28 -d 1 -p ack -e 40 -c 0 -i 492 -a 0 -x {21.0 3.0 -1 ------- null} r -t 25.2373 -s 21 -d 28 -p ack -e 40 -c 0 -i 493 -a 0 -x {21.0 3.0 242 ------- null} + -t 25.2373 -s 28 -d 1 -p ack -e 40 -c 0 -i 493 -a 0 -x {21.0 3.0 242 ------- null} - -t 25.2373 -s 28 -d 1 -p ack -e 40 -c 0 -i 493 -a 0 -x {21.0 3.0 242 ------- null} h -t 25.2373 -s 28 -d 1 -p ack -e 40 -c 0 -i 493 -a 0 -x {21.0 3.0 -1 ------- null} r -t 25.2389 -s 21 -d 28 -p ack -e 40 -c 0 -i 494 -a 0 -x {21.0 3.0 243 ------- null} + -t 25.2389 -s 28 -d 1 -p ack -e 40 -c 0 -i 494 -a 0 -x {21.0 3.0 243 ------- null} - -t 25.2389 -s 28 -d 1 -p ack -e 40 -c 0 -i 494 -a 0 -x {21.0 3.0 243 ------- null} h -t 25.2389 -s 28 -d 1 -p ack -e 40 -c 0 -i 494 -a 0 -x {21.0 3.0 -1 ------- null} r -t 25.2405 -s 21 -d 28 -p ack -e 40 -c 0 -i 495 -a 0 -x {21.0 3.0 244 ------- null} + -t 25.2405 -s 28 -d 1 -p ack -e 40 -c 0 -i 495 -a 0 -x {21.0 3.0 244 ------- null} - -t 25.2405 -s 28 -d 1 -p ack -e 40 -c 0 -i 495 -a 0 -x {21.0 3.0 244 ------- null} h -t 25.2405 -s 28 -d 1 -p ack -e 40 -c 0 -i 495 -a 0 -x {21.0 3.0 -1 ------- null} r -t 25.2421 -s 21 -d 28 -p ack -e 40 -c 0 -i 496 -a 0 -x {21.0 3.0 245 ------- null} + -t 25.2421 -s 28 -d 1 -p ack -e 40 -c 0 -i 496 -a 0 -x {21.0 3.0 245 ------- null} - -t 25.2421 -s 28 -d 1 -p ack -e 40 -c 0 -i 496 -a 0 -x {21.0 3.0 245 ------- null} h -t 25.2421 -s 28 -d 1 -p ack -e 40 -c 0 -i 496 -a 0 -x {21.0 3.0 -1 ------- null} r -t 25.2437 -s 21 -d 28 -p ack -e 40 -c 0 -i 497 -a 0 -x {21.0 3.0 246 ------- null} + -t 25.2437 -s 28 -d 1 -p ack -e 40 -c 0 -i 497 -a 0 -x {21.0 3.0 246 ------- null} - -t 25.2437 -s 28 -d 1 -p ack -e 40 -c 0 -i 497 -a 0 -x {21.0 3.0 246 ------- null} h -t 25.2437 -s 28 -d 1 -p ack -e 40 -c 0 -i 497 -a 0 -x {21.0 3.0 -1 ------- null} r -t 25.2453 -s 21 -d 28 -p ack -e 40 -c 0 -i 498 -a 0 -x {21.0 3.0 247 ------- null} + -t 25.2453 -s 28 -d 1 -p ack -e 40 -c 0 -i 498 -a 0 -x {21.0 3.0 247 ------- null} - -t 25.2453 -s 28 -d 1 -p ack -e 40 -c 0 -i 498 -a 0 -x {21.0 3.0 247 ------- null} h -t 25.2453 -s 28 -d 1 -p ack -e 40 -c 0 -i 498 -a 0 -x {21.0 3.0 -1 ------- null} r -t 25.2469 -s 21 -d 28 -p ack -e 40 -c 0 -i 499 -a 0 -x {21.0 3.0 248 ------- null} + -t 25.2469 -s 28 -d 1 -p ack -e 40 -c 0 -i 499 -a 0 -x {21.0 3.0 248 ------- null} - -t 25.2469 -s 28 -d 1 -p ack -e 40 -c 0 -i 499 -a 0 -x {21.0 3.0 248 ------- null} h -t 25.2469 -s 28 -d 1 -p ack -e 40 -c 0 -i 499 -a 0 -x {21.0 3.0 -1 ------- null} r -t 25.2485 -s 21 -d 28 -p ack -e 40 -c 0 -i 500 -a 0 -x {21.0 3.0 249 ------- null} + -t 25.2485 -s 28 -d 1 -p ack -e 40 -c 0 -i 500 -a 0 -x {21.0 3.0 249 ------- null} - -t 25.2485 -s 28 -d 1 -p ack -e 40 -c 0 -i 500 -a 0 -x {21.0 3.0 249 ------- null} h -t 25.2485 -s 28 -d 1 -p ack -e 40 -c 0 -i 500 -a 0 -x {21.0 3.0 -1 ------- null} r -t 25.2501 -s 21 -d 28 -p ack -e 40 -c 0 -i 501 -a 0 -x {21.0 3.0 250 ------- null} + -t 25.2501 -s 28 -d 1 -p ack -e 40 -c 0 -i 501 -a 0 -x {21.0 3.0 250 ------- null} - -t 25.2501 -s 28 -d 1 -p ack -e 40 -c 0 -i 501 -a 0 -x {21.0 3.0 250 ------- null} h -t 25.2501 -s 28 -d 1 -p ack -e 40 -c 0 -i 501 -a 0 -x {21.0 3.0 -1 ------- null} r -t 25.5198 -s 28 -d 1 -p ack -e 40 -c 0 -i 482 -a 0 -x {21.0 3.0 231 ------- null} + -t 25.5198 -s 1 -d 3 -p ack -e 40 -c 0 -i 482 -a 0 -x {21.0 3.0 231 ------- null} - -t 25.5198 -s 1 -d 3 -p ack -e 40 -c 0 -i 482 -a 0 -x {21.0 3.0 231 ------- null} h -t 25.5198 -s 1 -d 3 -p ack -e 40 -c 0 -i 482 -a 0 -x {21.0 3.0 -1 ------- null} r -t 25.5214 -s 28 -d 1 -p ack -e 40 -c 0 -i 483 -a 0 -x {21.0 3.0 232 ------- null} + -t 25.5214 -s 1 -d 3 -p ack -e 40 -c 0 -i 483 -a 0 -x {21.0 3.0 232 ------- null} - -t 25.5214 -s 1 -d 3 -p ack -e 40 -c 0 -i 483 -a 0 -x {21.0 3.0 232 ------- null} h -t 25.5214 -s 1 -d 3 -p ack -e 40 -c 0 -i 483 -a 0 -x {21.0 3.0 -1 ------- null} r -t 25.523 -s 28 -d 1 -p ack -e 40 -c 0 -i 484 -a 0 -x {21.0 3.0 233 ------- null} + -t 25.523 -s 1 -d 3 -p ack -e 40 -c 0 -i 484 -a 0 -x {21.0 3.0 233 ------- null} - -t 25.523 -s 1 -d 3 -p ack -e 40 -c 0 -i 484 -a 0 -x {21.0 3.0 233 ------- null} h -t 25.523 -s 1 -d 3 -p ack -e 40 -c 0 -i 484 -a 0 -x {21.0 3.0 -1 ------- null} r -t 25.5246 -s 28 -d 1 -p ack -e 40 -c 0 -i 485 -a 0 -x {21.0 3.0 234 ------- null} + -t 25.5246 -s 1 -d 3 -p ack -e 40 -c 0 -i 485 -a 0 -x {21.0 3.0 234 ------- null} - -t 25.5246 -s 1 -d 3 -p ack -e 40 -c 0 -i 485 -a 0 -x {21.0 3.0 234 ------- null} h -t 25.5246 -s 1 -d 3 -p ack -e 40 -c 0 -i 485 -a 0 -x {21.0 3.0 -1 ------- null} r -t 25.5262 -s 28 -d 1 -p ack -e 40 -c 0 -i 486 -a 0 -x {21.0 3.0 235 ------- null} + -t 25.5262 -s 1 -d 3 -p ack -e 40 -c 0 -i 486 -a 0 -x {21.0 3.0 235 ------- null} - -t 25.5262 -s 1 -d 3 -p ack -e 40 -c 0 -i 486 -a 0 -x {21.0 3.0 235 ------- null} h -t 25.5262 -s 1 -d 3 -p ack -e 40 -c 0 -i 486 -a 0 -x {21.0 3.0 -1 ------- null} r -t 25.5278 -s 28 -d 1 -p ack -e 40 -c 0 -i 487 -a 0 -x {21.0 3.0 236 ------- null} + -t 25.5278 -s 1 -d 3 -p ack -e 40 -c 0 -i 487 -a 0 -x {21.0 3.0 236 ------- null} - -t 25.5278 -s 1 -d 3 -p ack -e 40 -c 0 -i 487 -a 0 -x {21.0 3.0 236 ------- null} h -t 25.5278 -s 1 -d 3 -p ack -e 40 -c 0 -i 487 -a 0 -x {21.0 3.0 -1 ------- null} r -t 25.5294 -s 28 -d 1 -p ack -e 40 -c 0 -i 488 -a 0 -x {21.0 3.0 237 ------- null} + -t 25.5294 -s 1 -d 3 -p ack -e 40 -c 0 -i 488 -a 0 -x {21.0 3.0 237 ------- null} - -t 25.5294 -s 1 -d 3 -p ack -e 40 -c 0 -i 488 -a 0 -x {21.0 3.0 237 ------- null} h -t 25.5294 -s 1 -d 3 -p ack -e 40 -c 0 -i 488 -a 0 -x {21.0 3.0 -1 ------- null} r -t 25.531 -s 28 -d 1 -p ack -e 40 -c 0 -i 489 -a 0 -x {21.0 3.0 238 ------- null} + -t 25.531 -s 1 -d 3 -p ack -e 40 -c 0 -i 489 -a 0 -x {21.0 3.0 238 ------- null} - -t 25.531 -s 1 -d 3 -p ack -e 40 -c 0 -i 489 -a 0 -x {21.0 3.0 238 ------- null} h -t 25.531 -s 1 -d 3 -p ack -e 40 -c 0 -i 489 -a 0 -x {21.0 3.0 -1 ------- null} r -t 25.5326 -s 28 -d 1 -p ack -e 40 -c 0 -i 490 -a 0 -x {21.0 3.0 239 ------- null} + -t 25.5326 -s 1 -d 3 -p ack -e 40 -c 0 -i 490 -a 0 -x {21.0 3.0 239 ------- null} - -t 25.5326 -s 1 -d 3 -p ack -e 40 -c 0 -i 490 -a 0 -x {21.0 3.0 239 ------- null} h -t 25.5326 -s 1 -d 3 -p ack -e 40 -c 0 -i 490 -a 0 -x {21.0 3.0 -1 ------- null} r -t 25.5342 -s 28 -d 1 -p ack -e 40 -c 0 -i 491 -a 0 -x {21.0 3.0 240 ------- null} + -t 25.5342 -s 1 -d 3 -p ack -e 40 -c 0 -i 491 -a 0 -x {21.0 3.0 240 ------- null} - -t 25.5342 -s 1 -d 3 -p ack -e 40 -c 0 -i 491 -a 0 -x {21.0 3.0 240 ------- null} h -t 25.5342 -s 1 -d 3 -p ack -e 40 -c 0 -i 491 -a 0 -x {21.0 3.0 -1 ------- null} r -t 25.5358 -s 28 -d 1 -p ack -e 40 -c 0 -i 492 -a 0 -x {21.0 3.0 241 ------- null} + -t 25.5358 -s 1 -d 3 -p ack -e 40 -c 0 -i 492 -a 0 -x {21.0 3.0 241 ------- null} - -t 25.5358 -s 1 -d 3 -p ack -e 40 -c 0 -i 492 -a 0 -x {21.0 3.0 241 ------- null} h -t 25.5358 -s 1 -d 3 -p ack -e 40 -c 0 -i 492 -a 0 -x {21.0 3.0 -1 ------- null} r -t 25.5374 -s 28 -d 1 -p ack -e 40 -c 0 -i 493 -a 0 -x {21.0 3.0 242 ------- null} + -t 25.5374 -s 1 -d 3 -p ack -e 40 -c 0 -i 493 -a 0 -x {21.0 3.0 242 ------- null} - -t 25.5374 -s 1 -d 3 -p ack -e 40 -c 0 -i 493 -a 0 -x {21.0 3.0 242 ------- null} h -t 25.5374 -s 1 -d 3 -p ack -e 40 -c 0 -i 493 -a 0 -x {21.0 3.0 -1 ------- null} r -t 25.539 -s 28 -d 1 -p ack -e 40 -c 0 -i 494 -a 0 -x {21.0 3.0 243 ------- null} + -t 25.539 -s 1 -d 3 -p ack -e 40 -c 0 -i 494 -a 0 -x {21.0 3.0 243 ------- null} - -t 25.539 -s 1 -d 3 -p ack -e 40 -c 0 -i 494 -a 0 -x {21.0 3.0 243 ------- null} h -t 25.539 -s 1 -d 3 -p ack -e 40 -c 0 -i 494 -a 0 -x {21.0 3.0 -1 ------- null} r -t 25.5406 -s 28 -d 1 -p ack -e 40 -c 0 -i 495 -a 0 -x {21.0 3.0 244 ------- null} + -t 25.5406 -s 1 -d 3 -p ack -e 40 -c 0 -i 495 -a 0 -x {21.0 3.0 244 ------- null} - -t 25.5406 -s 1 -d 3 -p ack -e 40 -c 0 -i 495 -a 0 -x {21.0 3.0 244 ------- null} h -t 25.5406 -s 1 -d 3 -p ack -e 40 -c 0 -i 495 -a 0 -x {21.0 3.0 -1 ------- null} r -t 25.5422 -s 28 -d 1 -p ack -e 40 -c 0 -i 496 -a 0 -x {21.0 3.0 245 ------- null} + -t 25.5422 -s 1 -d 3 -p ack -e 40 -c 0 -i 496 -a 0 -x {21.0 3.0 245 ------- null} - -t 25.5422 -s 1 -d 3 -p ack -e 40 -c 0 -i 496 -a 0 -x {21.0 3.0 245 ------- null} h -t 25.5422 -s 1 -d 3 -p ack -e 40 -c 0 -i 496 -a 0 -x {21.0 3.0 -1 ------- null} r -t 25.5438 -s 28 -d 1 -p ack -e 40 -c 0 -i 497 -a 0 -x {21.0 3.0 246 ------- null} + -t 25.5438 -s 1 -d 3 -p ack -e 40 -c 0 -i 497 -a 0 -x {21.0 3.0 246 ------- null} - -t 25.5438 -s 1 -d 3 -p ack -e 40 -c 0 -i 497 -a 0 -x {21.0 3.0 246 ------- null} h -t 25.5438 -s 1 -d 3 -p ack -e 40 -c 0 -i 497 -a 0 -x {21.0 3.0 -1 ------- null} r -t 25.5454 -s 28 -d 1 -p ack -e 40 -c 0 -i 498 -a 0 -x {21.0 3.0 247 ------- null} + -t 25.5454 -s 1 -d 3 -p ack -e 40 -c 0 -i 498 -a 0 -x {21.0 3.0 247 ------- null} - -t 25.5454 -s 1 -d 3 -p ack -e 40 -c 0 -i 498 -a 0 -x {21.0 3.0 247 ------- null} h -t 25.5454 -s 1 -d 3 -p ack -e 40 -c 0 -i 498 -a 0 -x {21.0 3.0 -1 ------- null} r -t 25.547 -s 28 -d 1 -p ack -e 40 -c 0 -i 499 -a 0 -x {21.0 3.0 248 ------- null} + -t 25.547 -s 1 -d 3 -p ack -e 40 -c 0 -i 499 -a 0 -x {21.0 3.0 248 ------- null} - -t 25.547 -s 1 -d 3 -p ack -e 40 -c 0 -i 499 -a 0 -x {21.0 3.0 248 ------- null} h -t 25.547 -s 1 -d 3 -p ack -e 40 -c 0 -i 499 -a 0 -x {21.0 3.0 -1 ------- null} r -t 25.5486 -s 28 -d 1 -p ack -e 40 -c 0 -i 500 -a 0 -x {21.0 3.0 249 ------- null} + -t 25.5486 -s 1 -d 3 -p ack -e 40 -c 0 -i 500 -a 0 -x {21.0 3.0 249 ------- null} - -t 25.5486 -s 1 -d 3 -p ack -e 40 -c 0 -i 500 -a 0 -x {21.0 3.0 249 ------- null} h -t 25.5486 -s 1 -d 3 -p ack -e 40 -c 0 -i 500 -a 0 -x {21.0 3.0 -1 ------- null} r -t 25.5502 -s 28 -d 1 -p ack -e 40 -c 0 -i 501 -a 0 -x {21.0 3.0 250 ------- null} + -t 25.5502 -s 1 -d 3 -p ack -e 40 -c 0 -i 501 -a 0 -x {21.0 3.0 250 ------- null} - -t 25.5502 -s 1 -d 3 -p ack -e 40 -c 0 -i 501 -a 0 -x {21.0 3.0 250 ------- null} h -t 25.5502 -s 1 -d 3 -p ack -e 40 -c 0 -i 501 -a 0 -x {21.0 3.0 -1 ------- null} r -t 25.6599 -s 1 -d 3 -p ack -e 40 -c 0 -i 482 -a 0 -x {21.0 3.0 231 ------- null} + -t 25.6599 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 502 -a 0 -x {3.0 21.0 251 ------- null} - -t 25.6599 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 502 -a 0 -x {3.0 21.0 251 ------- null} h -t 25.6599 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 502 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.6615 -s 1 -d 3 -p ack -e 40 -c 0 -i 483 -a 0 -x {21.0 3.0 232 ------- null} + -t 25.6615 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {3.0 21.0 252 ------- null} - -t 25.6615 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {3.0 21.0 252 ------- null} h -t 25.6615 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.6631 -s 1 -d 3 -p ack -e 40 -c 0 -i 484 -a 0 -x {21.0 3.0 233 ------- null} + -t 25.6631 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 504 -a 0 -x {3.0 21.0 253 ------- null} - -t 25.6631 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 504 -a 0 -x {3.0 21.0 253 ------- null} h -t 25.6631 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 504 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.6647 -s 1 -d 3 -p ack -e 40 -c 0 -i 485 -a 0 -x {21.0 3.0 234 ------- null} + -t 25.6647 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {3.0 21.0 254 ------- null} - -t 25.6647 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {3.0 21.0 254 ------- null} h -t 25.6647 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.6663 -s 1 -d 3 -p ack -e 40 -c 0 -i 486 -a 0 -x {21.0 3.0 235 ------- null} + -t 25.6663 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 506 -a 0 -x {3.0 21.0 255 ------- null} - -t 25.6663 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 506 -a 0 -x {3.0 21.0 255 ------- null} h -t 25.6663 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 506 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.6679 -s 1 -d 3 -p ack -e 40 -c 0 -i 487 -a 0 -x {21.0 3.0 236 ------- null} + -t 25.6679 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {3.0 21.0 256 ------- null} - -t 25.6679 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {3.0 21.0 256 ------- null} h -t 25.6679 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.6695 -s 1 -d 3 -p ack -e 40 -c 0 -i 488 -a 0 -x {21.0 3.0 237 ------- null} + -t 25.6695 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 508 -a 0 -x {3.0 21.0 257 ------- null} - -t 25.6695 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 508 -a 0 -x {3.0 21.0 257 ------- null} h -t 25.6695 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 508 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.6711 -s 1 -d 3 -p ack -e 40 -c 0 -i 489 -a 0 -x {21.0 3.0 238 ------- null} + -t 25.6711 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {3.0 21.0 258 ------- null} - -t 25.6711 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {3.0 21.0 258 ------- null} h -t 25.6711 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.6727 -s 1 -d 3 -p ack -e 40 -c 0 -i 490 -a 0 -x {21.0 3.0 239 ------- null} + -t 25.6727 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 510 -a 0 -x {3.0 21.0 259 ------- null} - -t 25.6727 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 510 -a 0 -x {3.0 21.0 259 ------- null} h -t 25.6727 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 510 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.6743 -s 1 -d 3 -p ack -e 40 -c 0 -i 491 -a 0 -x {21.0 3.0 240 ------- null} + -t 25.6743 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {3.0 21.0 260 ------- null} - -t 25.6743 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {3.0 21.0 260 ------- null} h -t 25.6743 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.6759 -s 1 -d 3 -p ack -e 40 -c 0 -i 492 -a 0 -x {21.0 3.0 241 ------- null} + -t 25.6759 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 512 -a 0 -x {3.0 21.0 261 ------- null} - -t 25.6759 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 512 -a 0 -x {3.0 21.0 261 ------- null} h -t 25.6759 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 512 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.6775 -s 1 -d 3 -p ack -e 40 -c 0 -i 493 -a 0 -x {21.0 3.0 242 ------- null} + -t 25.6775 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {3.0 21.0 262 ------- null} - -t 25.6775 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {3.0 21.0 262 ------- null} h -t 25.6775 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.6791 -s 1 -d 3 -p ack -e 40 -c 0 -i 494 -a 0 -x {21.0 3.0 243 ------- null} + -t 25.6791 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 514 -a 0 -x {3.0 21.0 263 ------- null} - -t 25.6791 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 514 -a 0 -x {3.0 21.0 263 ------- null} h -t 25.6791 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 514 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.6807 -s 1 -d 3 -p ack -e 40 -c 0 -i 495 -a 0 -x {21.0 3.0 244 ------- null} + -t 25.6807 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {3.0 21.0 264 ------- null} - -t 25.6807 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {3.0 21.0 264 ------- null} h -t 25.6807 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.6823 -s 1 -d 3 -p ack -e 40 -c 0 -i 496 -a 0 -x {21.0 3.0 245 ------- null} + -t 25.6823 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 516 -a 0 -x {3.0 21.0 265 ------- null} - -t 25.6823 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 516 -a 0 -x {3.0 21.0 265 ------- null} h -t 25.6823 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 516 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.6839 -s 1 -d 3 -p ack -e 40 -c 0 -i 497 -a 0 -x {21.0 3.0 246 ------- null} + -t 25.6839 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {3.0 21.0 266 ------- null} - -t 25.6839 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {3.0 21.0 266 ------- null} h -t 25.6839 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.6855 -s 1 -d 3 -p ack -e 40 -c 0 -i 498 -a 0 -x {21.0 3.0 247 ------- null} + -t 25.6855 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 518 -a 0 -x {3.0 21.0 267 ------- null} - -t 25.6855 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 518 -a 0 -x {3.0 21.0 267 ------- null} h -t 25.6855 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 518 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.6871 -s 1 -d 3 -p ack -e 40 -c 0 -i 499 -a 0 -x {21.0 3.0 248 ------- null} + -t 25.6871 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {3.0 21.0 268 ------- null} - -t 25.6871 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {3.0 21.0 268 ------- null} h -t 25.6871 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.6887 -s 1 -d 3 -p ack -e 40 -c 0 -i 500 -a 0 -x {21.0 3.0 249 ------- null} + -t 25.6887 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 520 -a 0 -x {3.0 21.0 269 ------- null} - -t 25.6887 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 520 -a 0 -x {3.0 21.0 269 ------- null} h -t 25.6887 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 520 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.6903 -s 1 -d 3 -p ack -e 40 -c 0 -i 501 -a 0 -x {21.0 3.0 250 ------- null} + -t 25.6903 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {3.0 21.0 270 ------- null} - -t 25.6903 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {3.0 21.0 270 ------- null} h -t 25.6903 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.8015 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 502 -a 0 -x {3.0 21.0 251 ------- null} + -t 25.8015 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 502 -a 0 -x {3.0 21.0 251 ------- null} - -t 25.8015 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 502 -a 0 -x {3.0 21.0 251 ------- null} h -t 25.8015 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 502 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.8031 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {3.0 21.0 252 ------- null} + -t 25.8031 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {3.0 21.0 252 ------- null} - -t 25.8031 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {3.0 21.0 252 ------- null} h -t 25.8031 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.8047 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 504 -a 0 -x {3.0 21.0 253 ------- null} + -t 25.8047 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 504 -a 0 -x {3.0 21.0 253 ------- null} - -t 25.8047 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 504 -a 0 -x {3.0 21.0 253 ------- null} h -t 25.8047 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 504 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.8063 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {3.0 21.0 254 ------- null} + -t 25.8063 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {3.0 21.0 254 ------- null} - -t 25.8063 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {3.0 21.0 254 ------- null} h -t 25.8063 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.8079 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 506 -a 0 -x {3.0 21.0 255 ------- null} + -t 25.8079 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 506 -a 0 -x {3.0 21.0 255 ------- null} - -t 25.8079 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 506 -a 0 -x {3.0 21.0 255 ------- null} h -t 25.8079 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 506 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.8095 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {3.0 21.0 256 ------- null} + -t 25.8095 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {3.0 21.0 256 ------- null} - -t 25.8095 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {3.0 21.0 256 ------- null} h -t 25.8095 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.8111 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 508 -a 0 -x {3.0 21.0 257 ------- null} + -t 25.8111 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 508 -a 0 -x {3.0 21.0 257 ------- null} - -t 25.8111 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 508 -a 0 -x {3.0 21.0 257 ------- null} h -t 25.8111 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 508 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.8127 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {3.0 21.0 258 ------- null} + -t 25.8127 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {3.0 21.0 258 ------- null} - -t 25.8127 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {3.0 21.0 258 ------- null} h -t 25.8127 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.8143 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 510 -a 0 -x {3.0 21.0 259 ------- null} + -t 25.8143 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 510 -a 0 -x {3.0 21.0 259 ------- null} - -t 25.8143 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 510 -a 0 -x {3.0 21.0 259 ------- null} h -t 25.8143 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 510 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.8159 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {3.0 21.0 260 ------- null} + -t 25.8159 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {3.0 21.0 260 ------- null} - -t 25.8159 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {3.0 21.0 260 ------- null} h -t 25.8159 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.8175 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 512 -a 0 -x {3.0 21.0 261 ------- null} + -t 25.8175 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 512 -a 0 -x {3.0 21.0 261 ------- null} - -t 25.8175 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 512 -a 0 -x {3.0 21.0 261 ------- null} h -t 25.8175 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 512 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.8191 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {3.0 21.0 262 ------- null} + -t 25.8191 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {3.0 21.0 262 ------- null} - -t 25.8191 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {3.0 21.0 262 ------- null} h -t 25.8191 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.8207 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 514 -a 0 -x {3.0 21.0 263 ------- null} + -t 25.8207 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 514 -a 0 -x {3.0 21.0 263 ------- null} - -t 25.8207 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 514 -a 0 -x {3.0 21.0 263 ------- null} h -t 25.8207 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 514 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.8223 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {3.0 21.0 264 ------- null} + -t 25.8223 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {3.0 21.0 264 ------- null} - -t 25.8223 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {3.0 21.0 264 ------- null} h -t 25.8223 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.8239 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 516 -a 0 -x {3.0 21.0 265 ------- null} + -t 25.8239 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 516 -a 0 -x {3.0 21.0 265 ------- null} - -t 25.8239 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 516 -a 0 -x {3.0 21.0 265 ------- null} h -t 25.8239 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 516 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.8255 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {3.0 21.0 266 ------- null} + -t 25.8255 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {3.0 21.0 266 ------- null} - -t 25.8255 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {3.0 21.0 266 ------- null} h -t 25.8255 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.8271 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 518 -a 0 -x {3.0 21.0 267 ------- null} + -t 25.8271 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 518 -a 0 -x {3.0 21.0 267 ------- null} - -t 25.8271 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 518 -a 0 -x {3.0 21.0 267 ------- null} h -t 25.8271 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 518 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.8287 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {3.0 21.0 268 ------- null} + -t 25.8287 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {3.0 21.0 268 ------- null} - -t 25.8287 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {3.0 21.0 268 ------- null} h -t 25.8287 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.8303 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 520 -a 0 -x {3.0 21.0 269 ------- null} + -t 25.8303 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 520 -a 0 -x {3.0 21.0 269 ------- null} - -t 25.8303 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 520 -a 0 -x {3.0 21.0 269 ------- null} h -t 25.8303 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 520 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.8319 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {3.0 21.0 270 ------- null} + -t 25.8319 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {3.0 21.0 270 ------- null} - -t 25.8319 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {3.0 21.0 270 ------- null} h -t 25.8319 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {3.0 21.0 -1 ------- null} r -t 26.1031 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 502 -a 0 -x {3.0 21.0 251 ------- null} + -t 26.1031 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 502 -a 0 -x {3.0 21.0 251 ------- null} - -t 26.1031 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 502 -a 0 -x {3.0 21.0 251 ------- null} h -t 26.1031 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 502 -a 0 -x {3.0 21.0 -1 ------- null} r -t 26.1047 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {3.0 21.0 252 ------- null} + -t 26.1047 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {3.0 21.0 252 ------- null} - -t 26.1047 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {3.0 21.0 252 ------- null} h -t 26.1047 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {3.0 21.0 -1 ------- null} r -t 26.1063 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 504 -a 0 -x {3.0 21.0 253 ------- null} + -t 26.1063 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 504 -a 0 -x {3.0 21.0 253 ------- null} - -t 26.1063 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 504 -a 0 -x {3.0 21.0 253 ------- null} h -t 26.1063 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 504 -a 0 -x {3.0 21.0 -1 ------- null} r -t 26.1079 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {3.0 21.0 254 ------- null} + -t 26.1079 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {3.0 21.0 254 ------- null} - -t 26.1079 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {3.0 21.0 254 ------- null} h -t 26.1079 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {3.0 21.0 -1 ------- null} r -t 26.1095 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 506 -a 0 -x {3.0 21.0 255 ------- null} + -t 26.1095 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 506 -a 0 -x {3.0 21.0 255 ------- null} - -t 26.1095 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 506 -a 0 -x {3.0 21.0 255 ------- null} h -t 26.1095 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 506 -a 0 -x {3.0 21.0 -1 ------- null} r -t 26.1111 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {3.0 21.0 256 ------- null} + -t 26.1111 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {3.0 21.0 256 ------- null} - -t 26.1111 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {3.0 21.0 256 ------- null} h -t 26.1111 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {3.0 21.0 -1 ------- null} r -t 26.1127 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 508 -a 0 -x {3.0 21.0 257 ------- null} + -t 26.1127 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 508 -a 0 -x {3.0 21.0 257 ------- null} - -t 26.1127 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 508 -a 0 -x {3.0 21.0 257 ------- null} h -t 26.1127 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 508 -a 0 -x {3.0 21.0 -1 ------- null} r -t 26.1143 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {3.0 21.0 258 ------- null} + -t 26.1143 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {3.0 21.0 258 ------- null} - -t 26.1143 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {3.0 21.0 258 ------- null} h -t 26.1143 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {3.0 21.0 -1 ------- null} r -t 26.1159 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 510 -a 0 -x {3.0 21.0 259 ------- null} + -t 26.1159 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 510 -a 0 -x {3.0 21.0 259 ------- null} - -t 26.1159 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 510 -a 0 -x {3.0 21.0 259 ------- null} h -t 26.1159 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 510 -a 0 -x {3.0 21.0 -1 ------- null} r -t 26.1175 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {3.0 21.0 260 ------- null} + -t 26.1175 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {3.0 21.0 260 ------- null} - -t 26.1175 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {3.0 21.0 260 ------- null} h -t 26.1175 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {3.0 21.0 -1 ------- null} r -t 26.1191 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 512 -a 0 -x {3.0 21.0 261 ------- null} + -t 26.1191 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 512 -a 0 -x {3.0 21.0 261 ------- null} - -t 26.1191 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 512 -a 0 -x {3.0 21.0 261 ------- null} h -t 26.1191 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 512 -a 0 -x {3.0 21.0 -1 ------- null} r -t 26.1207 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {3.0 21.0 262 ------- null} + -t 26.1207 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {3.0 21.0 262 ------- null} - -t 26.1207 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {3.0 21.0 262 ------- null} h -t 26.1207 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {3.0 21.0 -1 ------- null} r -t 26.1223 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 514 -a 0 -x {3.0 21.0 263 ------- null} + -t 26.1223 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 514 -a 0 -x {3.0 21.0 263 ------- null} - -t 26.1223 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 514 -a 0 -x {3.0 21.0 263 ------- null} h -t 26.1223 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 514 -a 0 -x {3.0 21.0 -1 ------- null} r -t 26.1239 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {3.0 21.0 264 ------- null} + -t 26.1239 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {3.0 21.0 264 ------- null} - -t 26.1239 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {3.0 21.0 264 ------- null} h -t 26.1239 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {3.0 21.0 -1 ------- null} r -t 26.1255 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 516 -a 0 -x {3.0 21.0 265 ------- null} + -t 26.1255 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 516 -a 0 -x {3.0 21.0 265 ------- null} - -t 26.1255 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 516 -a 0 -x {3.0 21.0 265 ------- null} h -t 26.1255 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 516 -a 0 -x {3.0 21.0 -1 ------- null} r -t 26.1271 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {3.0 21.0 266 ------- null} + -t 26.1271 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {3.0 21.0 266 ------- null} - -t 26.1271 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {3.0 21.0 266 ------- null} h -t 26.1271 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {3.0 21.0 -1 ------- null} r -t 26.1287 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 518 -a 0 -x {3.0 21.0 267 ------- null} + -t 26.1287 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 518 -a 0 -x {3.0 21.0 267 ------- null} - -t 26.1287 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 518 -a 0 -x {3.0 21.0 267 ------- null} h -t 26.1287 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 518 -a 0 -x {3.0 21.0 -1 ------- null} r -t 26.1303 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {3.0 21.0 268 ------- null} + -t 26.1303 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {3.0 21.0 268 ------- null} - -t 26.1303 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {3.0 21.0 268 ------- null} h -t 26.1303 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {3.0 21.0 -1 ------- null} r -t 26.1319 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 520 -a 0 -x {3.0 21.0 269 ------- null} + -t 26.1319 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 520 -a 0 -x {3.0 21.0 269 ------- null} - -t 26.1319 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 520 -a 0 -x {3.0 21.0 269 ------- null} h -t 26.1319 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 520 -a 0 -x {3.0 21.0 -1 ------- null} r -t 26.1335 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {3.0 21.0 270 ------- null} + -t 26.1335 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {3.0 21.0 270 ------- null} - -t 26.1335 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {3.0 21.0 270 ------- null} h -t 26.1335 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {3.0 21.0 -1 ------- null} r -t 26.4547 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 502 -a 0 -x {3.0 21.0 251 ------- null} + -t 26.4547 -s 21 -d 28 -p ack -e 40 -c 0 -i 522 -a 0 -x {21.0 3.0 251 ------- null} - -t 26.4547 -s 21 -d 28 -p ack -e 40 -c 0 -i 522 -a 0 -x {21.0 3.0 251 ------- null} h -t 26.4547 -s 21 -d 28 -p ack -e 40 -c 0 -i 522 -a 0 -x {21.0 3.0 -1 ------- null} r -t 26.4563 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {3.0 21.0 252 ------- null} + -t 26.4563 -s 21 -d 28 -p ack -e 40 -c 0 -i 523 -a 0 -x {21.0 3.0 252 ------- null} - -t 26.4563 -s 21 -d 28 -p ack -e 40 -c 0 -i 523 -a 0 -x {21.0 3.0 252 ------- null} h -t 26.4563 -s 21 -d 28 -p ack -e 40 -c 0 -i 523 -a 0 -x {21.0 3.0 -1 ------- null} r -t 26.4579 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 504 -a 0 -x {3.0 21.0 253 ------- null} + -t 26.4579 -s 21 -d 28 -p ack -e 40 -c 0 -i 524 -a 0 -x {21.0 3.0 253 ------- null} - -t 26.4579 -s 21 -d 28 -p ack -e 40 -c 0 -i 524 -a 0 -x {21.0 3.0 253 ------- null} h -t 26.4579 -s 21 -d 28 -p ack -e 40 -c 0 -i 524 -a 0 -x {21.0 3.0 -1 ------- null} r -t 26.4595 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {3.0 21.0 254 ------- null} + -t 26.4595 -s 21 -d 28 -p ack -e 40 -c 0 -i 525 -a 0 -x {21.0 3.0 254 ------- null} - -t 26.4595 -s 21 -d 28 -p ack -e 40 -c 0 -i 525 -a 0 -x {21.0 3.0 254 ------- null} h -t 26.4595 -s 21 -d 28 -p ack -e 40 -c 0 -i 525 -a 0 -x {21.0 3.0 -1 ------- null} r -t 26.4611 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 506 -a 0 -x {3.0 21.0 255 ------- null} + -t 26.4611 -s 21 -d 28 -p ack -e 40 -c 0 -i 526 -a 0 -x {21.0 3.0 255 ------- null} - -t 26.4611 -s 21 -d 28 -p ack -e 40 -c 0 -i 526 -a 0 -x {21.0 3.0 255 ------- null} h -t 26.4611 -s 21 -d 28 -p ack -e 40 -c 0 -i 526 -a 0 -x {21.0 3.0 -1 ------- null} r -t 26.4627 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {3.0 21.0 256 ------- null} + -t 26.4627 -s 21 -d 28 -p ack -e 40 -c 0 -i 527 -a 0 -x {21.0 3.0 256 ------- null} - -t 26.4627 -s 21 -d 28 -p ack -e 40 -c 0 -i 527 -a 0 -x {21.0 3.0 256 ------- null} h -t 26.4627 -s 21 -d 28 -p ack -e 40 -c 0 -i 527 -a 0 -x {21.0 3.0 -1 ------- null} r -t 26.4643 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 508 -a 0 -x {3.0 21.0 257 ------- null} + -t 26.4643 -s 21 -d 28 -p ack -e 40 -c 0 -i 528 -a 0 -x {21.0 3.0 257 ------- null} - -t 26.4643 -s 21 -d 28 -p ack -e 40 -c 0 -i 528 -a 0 -x {21.0 3.0 257 ------- null} h -t 26.4643 -s 21 -d 28 -p ack -e 40 -c 0 -i 528 -a 0 -x {21.0 3.0 -1 ------- null} r -t 26.4659 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {3.0 21.0 258 ------- null} + -t 26.4659 -s 21 -d 28 -p ack -e 40 -c 0 -i 529 -a 0 -x {21.0 3.0 258 ------- null} - -t 26.4659 -s 21 -d 28 -p ack -e 40 -c 0 -i 529 -a 0 -x {21.0 3.0 258 ------- null} h -t 26.4659 -s 21 -d 28 -p ack -e 40 -c 0 -i 529 -a 0 -x {21.0 3.0 -1 ------- null} r -t 26.4675 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 510 -a 0 -x {3.0 21.0 259 ------- null} + -t 26.4675 -s 21 -d 28 -p ack -e 40 -c 0 -i 530 -a 0 -x {21.0 3.0 259 ------- null} - -t 26.4675 -s 21 -d 28 -p ack -e 40 -c 0 -i 530 -a 0 -x {21.0 3.0 259 ------- null} h -t 26.4675 -s 21 -d 28 -p ack -e 40 -c 0 -i 530 -a 0 -x {21.0 3.0 -1 ------- null} r -t 26.4691 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {3.0 21.0 260 ------- null} + -t 26.4691 -s 21 -d 28 -p ack -e 40 -c 0 -i 531 -a 0 -x {21.0 3.0 260 ------- null} - -t 26.4691 -s 21 -d 28 -p ack -e 40 -c 0 -i 531 -a 0 -x {21.0 3.0 260 ------- null} h -t 26.4691 -s 21 -d 28 -p ack -e 40 -c 0 -i 531 -a 0 -x {21.0 3.0 -1 ------- null} r -t 26.4707 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 512 -a 0 -x {3.0 21.0 261 ------- null} + -t 26.4707 -s 21 -d 28 -p ack -e 40 -c 0 -i 532 -a 0 -x {21.0 3.0 261 ------- null} - -t 26.4707 -s 21 -d 28 -p ack -e 40 -c 0 -i 532 -a 0 -x {21.0 3.0 261 ------- null} h -t 26.4707 -s 21 -d 28 -p ack -e 40 -c 0 -i 532 -a 0 -x {21.0 3.0 -1 ------- null} r -t 26.4723 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {3.0 21.0 262 ------- null} + -t 26.4723 -s 21 -d 28 -p ack -e 40 -c 0 -i 533 -a 0 -x {21.0 3.0 262 ------- null} - -t 26.4723 -s 21 -d 28 -p ack -e 40 -c 0 -i 533 -a 0 -x {21.0 3.0 262 ------- null} h -t 26.4723 -s 21 -d 28 -p ack -e 40 -c 0 -i 533 -a 0 -x {21.0 3.0 -1 ------- null} r -t 26.4739 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 514 -a 0 -x {3.0 21.0 263 ------- null} + -t 26.4739 -s 21 -d 28 -p ack -e 40 -c 0 -i 534 -a 0 -x {21.0 3.0 263 ------- null} - -t 26.4739 -s 21 -d 28 -p ack -e 40 -c 0 -i 534 -a 0 -x {21.0 3.0 263 ------- null} h -t 26.4739 -s 21 -d 28 -p ack -e 40 -c 0 -i 534 -a 0 -x {21.0 3.0 -1 ------- null} r -t 26.4755 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {3.0 21.0 264 ------- null} + -t 26.4755 -s 21 -d 28 -p ack -e 40 -c 0 -i 535 -a 0 -x {21.0 3.0 264 ------- null} - -t 26.4755 -s 21 -d 28 -p ack -e 40 -c 0 -i 535 -a 0 -x {21.0 3.0 264 ------- null} h -t 26.4755 -s 21 -d 28 -p ack -e 40 -c 0 -i 535 -a 0 -x {21.0 3.0 -1 ------- null} r -t 26.4771 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 516 -a 0 -x {3.0 21.0 265 ------- null} + -t 26.4771 -s 21 -d 28 -p ack -e 40 -c 0 -i 536 -a 0 -x {21.0 3.0 265 ------- null} - -t 26.4771 -s 21 -d 28 -p ack -e 40 -c 0 -i 536 -a 0 -x {21.0 3.0 265 ------- null} h -t 26.4771 -s 21 -d 28 -p ack -e 40 -c 0 -i 536 -a 0 -x {21.0 3.0 -1 ------- null} r -t 26.4787 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {3.0 21.0 266 ------- null} + -t 26.4787 -s 21 -d 28 -p ack -e 40 -c 0 -i 537 -a 0 -x {21.0 3.0 266 ------- null} - -t 26.4787 -s 21 -d 28 -p ack -e 40 -c 0 -i 537 -a 0 -x {21.0 3.0 266 ------- null} h -t 26.4787 -s 21 -d 28 -p ack -e 40 -c 0 -i 537 -a 0 -x {21.0 3.0 -1 ------- null} r -t 26.4803 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 518 -a 0 -x {3.0 21.0 267 ------- null} + -t 26.4803 -s 21 -d 28 -p ack -e 40 -c 0 -i 538 -a 0 -x {21.0 3.0 267 ------- null} - -t 26.4803 -s 21 -d 28 -p ack -e 40 -c 0 -i 538 -a 0 -x {21.0 3.0 267 ------- null} h -t 26.4803 -s 21 -d 28 -p ack -e 40 -c 0 -i 538 -a 0 -x {21.0 3.0 -1 ------- null} r -t 26.4819 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {3.0 21.0 268 ------- null} + -t 26.4819 -s 21 -d 28 -p ack -e 40 -c 0 -i 539 -a 0 -x {21.0 3.0 268 ------- null} - -t 26.4819 -s 21 -d 28 -p ack -e 40 -c 0 -i 539 -a 0 -x {21.0 3.0 268 ------- null} h -t 26.4819 -s 21 -d 28 -p ack -e 40 -c 0 -i 539 -a 0 -x {21.0 3.0 -1 ------- null} r -t 26.4835 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 520 -a 0 -x {3.0 21.0 269 ------- null} + -t 26.4835 -s 21 -d 28 -p ack -e 40 -c 0 -i 540 -a 0 -x {21.0 3.0 269 ------- null} - -t 26.4835 -s 21 -d 28 -p ack -e 40 -c 0 -i 540 -a 0 -x {21.0 3.0 269 ------- null} h -t 26.4835 -s 21 -d 28 -p ack -e 40 -c 0 -i 540 -a 0 -x {21.0 3.0 -1 ------- null} r -t 26.4851 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {3.0 21.0 270 ------- null} + -t 26.4851 -s 21 -d 28 -p ack -e 40 -c 0 -i 541 -a 0 -x {21.0 3.0 270 ------- null} - -t 26.4851 -s 21 -d 28 -p ack -e 40 -c 0 -i 541 -a 0 -x {21.0 3.0 270 ------- null} h -t 26.4851 -s 21 -d 28 -p ack -e 40 -c 0 -i 541 -a 0 -x {21.0 3.0 -1 ------- null} r -t 26.8047 -s 21 -d 28 -p ack -e 40 -c 0 -i 522 -a 0 -x {21.0 3.0 251 ------- null} + -t 26.8047 -s 28 -d 1 -p ack -e 40 -c 0 -i 522 -a 0 -x {21.0 3.0 251 ------- null} - -t 26.8047 -s 28 -d 1 -p ack -e 40 -c 0 -i 522 -a 0 -x {21.0 3.0 251 ------- null} h -t 26.8047 -s 28 -d 1 -p ack -e 40 -c 0 -i 522 -a 0 -x {21.0 3.0 -1 ------- null} r -t 26.8063 -s 21 -d 28 -p ack -e 40 -c 0 -i 523 -a 0 -x {21.0 3.0 252 ------- null} + -t 26.8063 -s 28 -d 1 -p ack -e 40 -c 0 -i 523 -a 0 -x {21.0 3.0 252 ------- null} - -t 26.8063 -s 28 -d 1 -p ack -e 40 -c 0 -i 523 -a 0 -x {21.0 3.0 252 ------- null} h -t 26.8063 -s 28 -d 1 -p ack -e 40 -c 0 -i 523 -a 0 -x {21.0 3.0 -1 ------- null} r -t 26.8079 -s 21 -d 28 -p ack -e 40 -c 0 -i 524 -a 0 -x {21.0 3.0 253 ------- null} + -t 26.8079 -s 28 -d 1 -p ack -e 40 -c 0 -i 524 -a 0 -x {21.0 3.0 253 ------- null} - -t 26.8079 -s 28 -d 1 -p ack -e 40 -c 0 -i 524 -a 0 -x {21.0 3.0 253 ------- null} h -t 26.8079 -s 28 -d 1 -p ack -e 40 -c 0 -i 524 -a 0 -x {21.0 3.0 -1 ------- null} r -t 26.8095 -s 21 -d 28 -p ack -e 40 -c 0 -i 525 -a 0 -x {21.0 3.0 254 ------- null} + -t 26.8095 -s 28 -d 1 -p ack -e 40 -c 0 -i 525 -a 0 -x {21.0 3.0 254 ------- null} - -t 26.8095 -s 28 -d 1 -p ack -e 40 -c 0 -i 525 -a 0 -x {21.0 3.0 254 ------- null} h -t 26.8095 -s 28 -d 1 -p ack -e 40 -c 0 -i 525 -a 0 -x {21.0 3.0 -1 ------- null} r -t 26.8111 -s 21 -d 28 -p ack -e 40 -c 0 -i 526 -a 0 -x {21.0 3.0 255 ------- null} + -t 26.8111 -s 28 -d 1 -p ack -e 40 -c 0 -i 526 -a 0 -x {21.0 3.0 255 ------- null} - -t 26.8111 -s 28 -d 1 -p ack -e 40 -c 0 -i 526 -a 0 -x {21.0 3.0 255 ------- null} h -t 26.8111 -s 28 -d 1 -p ack -e 40 -c 0 -i 526 -a 0 -x {21.0 3.0 -1 ------- null} r -t 26.8127 -s 21 -d 28 -p ack -e 40 -c 0 -i 527 -a 0 -x {21.0 3.0 256 ------- null} + -t 26.8127 -s 28 -d 1 -p ack -e 40 -c 0 -i 527 -a 0 -x {21.0 3.0 256 ------- null} - -t 26.8127 -s 28 -d 1 -p ack -e 40 -c 0 -i 527 -a 0 -x {21.0 3.0 256 ------- null} h -t 26.8127 -s 28 -d 1 -p ack -e 40 -c 0 -i 527 -a 0 -x {21.0 3.0 -1 ------- null} r -t 26.8143 -s 21 -d 28 -p ack -e 40 -c 0 -i 528 -a 0 -x {21.0 3.0 257 ------- null} + -t 26.8143 -s 28 -d 1 -p ack -e 40 -c 0 -i 528 -a 0 -x {21.0 3.0 257 ------- null} - -t 26.8143 -s 28 -d 1 -p ack -e 40 -c 0 -i 528 -a 0 -x {21.0 3.0 257 ------- null} h -t 26.8143 -s 28 -d 1 -p ack -e 40 -c 0 -i 528 -a 0 -x {21.0 3.0 -1 ------- null} r -t 26.8159 -s 21 -d 28 -p ack -e 40 -c 0 -i 529 -a 0 -x {21.0 3.0 258 ------- null} + -t 26.8159 -s 28 -d 1 -p ack -e 40 -c 0 -i 529 -a 0 -x {21.0 3.0 258 ------- null} - -t 26.8159 -s 28 -d 1 -p ack -e 40 -c 0 -i 529 -a 0 -x {21.0 3.0 258 ------- null} h -t 26.8159 -s 28 -d 1 -p ack -e 40 -c 0 -i 529 -a 0 -x {21.0 3.0 -1 ------- null} r -t 26.8175 -s 21 -d 28 -p ack -e 40 -c 0 -i 530 -a 0 -x {21.0 3.0 259 ------- null} + -t 26.8175 -s 28 -d 1 -p ack -e 40 -c 0 -i 530 -a 0 -x {21.0 3.0 259 ------- null} - -t 26.8175 -s 28 -d 1 -p ack -e 40 -c 0 -i 530 -a 0 -x {21.0 3.0 259 ------- null} h -t 26.8175 -s 28 -d 1 -p ack -e 40 -c 0 -i 530 -a 0 -x {21.0 3.0 -1 ------- null} r -t 26.8191 -s 21 -d 28 -p ack -e 40 -c 0 -i 531 -a 0 -x {21.0 3.0 260 ------- null} + -t 26.8191 -s 28 -d 1 -p ack -e 40 -c 0 -i 531 -a 0 -x {21.0 3.0 260 ------- null} - -t 26.8191 -s 28 -d 1 -p ack -e 40 -c 0 -i 531 -a 0 -x {21.0 3.0 260 ------- null} h -t 26.8191 -s 28 -d 1 -p ack -e 40 -c 0 -i 531 -a 0 -x {21.0 3.0 -1 ------- null} r -t 26.8207 -s 21 -d 28 -p ack -e 40 -c 0 -i 532 -a 0 -x {21.0 3.0 261 ------- null} + -t 26.8207 -s 28 -d 1 -p ack -e 40 -c 0 -i 532 -a 0 -x {21.0 3.0 261 ------- null} - -t 26.8207 -s 28 -d 1 -p ack -e 40 -c 0 -i 532 -a 0 -x {21.0 3.0 261 ------- null} h -t 26.8207 -s 28 -d 1 -p ack -e 40 -c 0 -i 532 -a 0 -x {21.0 3.0 -1 ------- null} r -t 26.8223 -s 21 -d 28 -p ack -e 40 -c 0 -i 533 -a 0 -x {21.0 3.0 262 ------- null} + -t 26.8223 -s 28 -d 1 -p ack -e 40 -c 0 -i 533 -a 0 -x {21.0 3.0 262 ------- null} - -t 26.8223 -s 28 -d 1 -p ack -e 40 -c 0 -i 533 -a 0 -x {21.0 3.0 262 ------- null} h -t 26.8223 -s 28 -d 1 -p ack -e 40 -c 0 -i 533 -a 0 -x {21.0 3.0 -1 ------- null} r -t 26.8239 -s 21 -d 28 -p ack -e 40 -c 0 -i 534 -a 0 -x {21.0 3.0 263 ------- null} + -t 26.8239 -s 28 -d 1 -p ack -e 40 -c 0 -i 534 -a 0 -x {21.0 3.0 263 ------- null} - -t 26.8239 -s 28 -d 1 -p ack -e 40 -c 0 -i 534 -a 0 -x {21.0 3.0 263 ------- null} h -t 26.8239 -s 28 -d 1 -p ack -e 40 -c 0 -i 534 -a 0 -x {21.0 3.0 -1 ------- null} r -t 26.8255 -s 21 -d 28 -p ack -e 40 -c 0 -i 535 -a 0 -x {21.0 3.0 264 ------- null} + -t 26.8255 -s 28 -d 1 -p ack -e 40 -c 0 -i 535 -a 0 -x {21.0 3.0 264 ------- null} - -t 26.8255 -s 28 -d 1 -p ack -e 40 -c 0 -i 535 -a 0 -x {21.0 3.0 264 ------- null} h -t 26.8255 -s 28 -d 1 -p ack -e 40 -c 0 -i 535 -a 0 -x {21.0 3.0 -1 ------- null} r -t 26.8271 -s 21 -d 28 -p ack -e 40 -c 0 -i 536 -a 0 -x {21.0 3.0 265 ------- null} + -t 26.8271 -s 28 -d 1 -p ack -e 40 -c 0 -i 536 -a 0 -x {21.0 3.0 265 ------- null} - -t 26.8271 -s 28 -d 1 -p ack -e 40 -c 0 -i 536 -a 0 -x {21.0 3.0 265 ------- null} h -t 26.8271 -s 28 -d 1 -p ack -e 40 -c 0 -i 536 -a 0 -x {21.0 3.0 -1 ------- null} r -t 26.8287 -s 21 -d 28 -p ack -e 40 -c 0 -i 537 -a 0 -x {21.0 3.0 266 ------- null} + -t 26.8287 -s 28 -d 1 -p ack -e 40 -c 0 -i 537 -a 0 -x {21.0 3.0 266 ------- null} - -t 26.8287 -s 28 -d 1 -p ack -e 40 -c 0 -i 537 -a 0 -x {21.0 3.0 266 ------- null} h -t 26.8287 -s 28 -d 1 -p ack -e 40 -c 0 -i 537 -a 0 -x {21.0 3.0 -1 ------- null} r -t 26.8303 -s 21 -d 28 -p ack -e 40 -c 0 -i 538 -a 0 -x {21.0 3.0 267 ------- null} + -t 26.8303 -s 28 -d 1 -p ack -e 40 -c 0 -i 538 -a 0 -x {21.0 3.0 267 ------- null} - -t 26.8303 -s 28 -d 1 -p ack -e 40 -c 0 -i 538 -a 0 -x {21.0 3.0 267 ------- null} h -t 26.8303 -s 28 -d 1 -p ack -e 40 -c 0 -i 538 -a 0 -x {21.0 3.0 -1 ------- null} r -t 26.8319 -s 21 -d 28 -p ack -e 40 -c 0 -i 539 -a 0 -x {21.0 3.0 268 ------- null} + -t 26.8319 -s 28 -d 1 -p ack -e 40 -c 0 -i 539 -a 0 -x {21.0 3.0 268 ------- null} - -t 26.8319 -s 28 -d 1 -p ack -e 40 -c 0 -i 539 -a 0 -x {21.0 3.0 268 ------- null} h -t 26.8319 -s 28 -d 1 -p ack -e 40 -c 0 -i 539 -a 0 -x {21.0 3.0 -1 ------- null} r -t 26.8335 -s 21 -d 28 -p ack -e 40 -c 0 -i 540 -a 0 -x {21.0 3.0 269 ------- null} + -t 26.8335 -s 28 -d 1 -p ack -e 40 -c 0 -i 540 -a 0 -x {21.0 3.0 269 ------- null} - -t 26.8335 -s 28 -d 1 -p ack -e 40 -c 0 -i 540 -a 0 -x {21.0 3.0 269 ------- null} h -t 26.8335 -s 28 -d 1 -p ack -e 40 -c 0 -i 540 -a 0 -x {21.0 3.0 -1 ------- null} r -t 26.8351 -s 21 -d 28 -p ack -e 40 -c 0 -i 541 -a 0 -x {21.0 3.0 270 ------- null} + -t 26.8351 -s 28 -d 1 -p ack -e 40 -c 0 -i 541 -a 0 -x {21.0 3.0 270 ------- null} - -t 26.8351 -s 28 -d 1 -p ack -e 40 -c 0 -i 541 -a 0 -x {21.0 3.0 270 ------- null} h -t 26.8351 -s 28 -d 1 -p ack -e 40 -c 0 -i 541 -a 0 -x {21.0 3.0 -1 ------- null} r -t 27.1048 -s 28 -d 1 -p ack -e 40 -c 0 -i 522 -a 0 -x {21.0 3.0 251 ------- null} + -t 27.1048 -s 1 -d 3 -p ack -e 40 -c 0 -i 522 -a 0 -x {21.0 3.0 251 ------- null} - -t 27.1048 -s 1 -d 3 -p ack -e 40 -c 0 -i 522 -a 0 -x {21.0 3.0 251 ------- null} h -t 27.1048 -s 1 -d 3 -p ack -e 40 -c 0 -i 522 -a 0 -x {21.0 3.0 -1 ------- null} r -t 27.1064 -s 28 -d 1 -p ack -e 40 -c 0 -i 523 -a 0 -x {21.0 3.0 252 ------- null} + -t 27.1064 -s 1 -d 3 -p ack -e 40 -c 0 -i 523 -a 0 -x {21.0 3.0 252 ------- null} - -t 27.1064 -s 1 -d 3 -p ack -e 40 -c 0 -i 523 -a 0 -x {21.0 3.0 252 ------- null} h -t 27.1064 -s 1 -d 3 -p ack -e 40 -c 0 -i 523 -a 0 -x {21.0 3.0 -1 ------- null} r -t 27.108 -s 28 -d 1 -p ack -e 40 -c 0 -i 524 -a 0 -x {21.0 3.0 253 ------- null} + -t 27.108 -s 1 -d 3 -p ack -e 40 -c 0 -i 524 -a 0 -x {21.0 3.0 253 ------- null} - -t 27.108 -s 1 -d 3 -p ack -e 40 -c 0 -i 524 -a 0 -x {21.0 3.0 253 ------- null} h -t 27.108 -s 1 -d 3 -p ack -e 40 -c 0 -i 524 -a 0 -x {21.0 3.0 -1 ------- null} r -t 27.1096 -s 28 -d 1 -p ack -e 40 -c 0 -i 525 -a 0 -x {21.0 3.0 254 ------- null} + -t 27.1096 -s 1 -d 3 -p ack -e 40 -c 0 -i 525 -a 0 -x {21.0 3.0 254 ------- null} - -t 27.1096 -s 1 -d 3 -p ack -e 40 -c 0 -i 525 -a 0 -x {21.0 3.0 254 ------- null} h -t 27.1096 -s 1 -d 3 -p ack -e 40 -c 0 -i 525 -a 0 -x {21.0 3.0 -1 ------- null} r -t 27.1112 -s 28 -d 1 -p ack -e 40 -c 0 -i 526 -a 0 -x {21.0 3.0 255 ------- null} + -t 27.1112 -s 1 -d 3 -p ack -e 40 -c 0 -i 526 -a 0 -x {21.0 3.0 255 ------- null} - -t 27.1112 -s 1 -d 3 -p ack -e 40 -c 0 -i 526 -a 0 -x {21.0 3.0 255 ------- null} h -t 27.1112 -s 1 -d 3 -p ack -e 40 -c 0 -i 526 -a 0 -x {21.0 3.0 -1 ------- null} r -t 27.1128 -s 28 -d 1 -p ack -e 40 -c 0 -i 527 -a 0 -x {21.0 3.0 256 ------- null} + -t 27.1128 -s 1 -d 3 -p ack -e 40 -c 0 -i 527 -a 0 -x {21.0 3.0 256 ------- null} - -t 27.1128 -s 1 -d 3 -p ack -e 40 -c 0 -i 527 -a 0 -x {21.0 3.0 256 ------- null} h -t 27.1128 -s 1 -d 3 -p ack -e 40 -c 0 -i 527 -a 0 -x {21.0 3.0 -1 ------- null} r -t 27.1144 -s 28 -d 1 -p ack -e 40 -c 0 -i 528 -a 0 -x {21.0 3.0 257 ------- null} + -t 27.1144 -s 1 -d 3 -p ack -e 40 -c 0 -i 528 -a 0 -x {21.0 3.0 257 ------- null} - -t 27.1144 -s 1 -d 3 -p ack -e 40 -c 0 -i 528 -a 0 -x {21.0 3.0 257 ------- null} h -t 27.1144 -s 1 -d 3 -p ack -e 40 -c 0 -i 528 -a 0 -x {21.0 3.0 -1 ------- null} r -t 27.116 -s 28 -d 1 -p ack -e 40 -c 0 -i 529 -a 0 -x {21.0 3.0 258 ------- null} + -t 27.116 -s 1 -d 3 -p ack -e 40 -c 0 -i 529 -a 0 -x {21.0 3.0 258 ------- null} - -t 27.116 -s 1 -d 3 -p ack -e 40 -c 0 -i 529 -a 0 -x {21.0 3.0 258 ------- null} h -t 27.116 -s 1 -d 3 -p ack -e 40 -c 0 -i 529 -a 0 -x {21.0 3.0 -1 ------- null} r -t 27.1176 -s 28 -d 1 -p ack -e 40 -c 0 -i 530 -a 0 -x {21.0 3.0 259 ------- null} + -t 27.1176 -s 1 -d 3 -p ack -e 40 -c 0 -i 530 -a 0 -x {21.0 3.0 259 ------- null} - -t 27.1176 -s 1 -d 3 -p ack -e 40 -c 0 -i 530 -a 0 -x {21.0 3.0 259 ------- null} h -t 27.1176 -s 1 -d 3 -p ack -e 40 -c 0 -i 530 -a 0 -x {21.0 3.0 -1 ------- null} r -t 27.1192 -s 28 -d 1 -p ack -e 40 -c 0 -i 531 -a 0 -x {21.0 3.0 260 ------- null} + -t 27.1192 -s 1 -d 3 -p ack -e 40 -c 0 -i 531 -a 0 -x {21.0 3.0 260 ------- null} - -t 27.1192 -s 1 -d 3 -p ack -e 40 -c 0 -i 531 -a 0 -x {21.0 3.0 260 ------- null} h -t 27.1192 -s 1 -d 3 -p ack -e 40 -c 0 -i 531 -a 0 -x {21.0 3.0 -1 ------- null} r -t 27.1208 -s 28 -d 1 -p ack -e 40 -c 0 -i 532 -a 0 -x {21.0 3.0 261 ------- null} + -t 27.1208 -s 1 -d 3 -p ack -e 40 -c 0 -i 532 -a 0 -x {21.0 3.0 261 ------- null} - -t 27.1208 -s 1 -d 3 -p ack -e 40 -c 0 -i 532 -a 0 -x {21.0 3.0 261 ------- null} h -t 27.1208 -s 1 -d 3 -p ack -e 40 -c 0 -i 532 -a 0 -x {21.0 3.0 -1 ------- null} r -t 27.1224 -s 28 -d 1 -p ack -e 40 -c 0 -i 533 -a 0 -x {21.0 3.0 262 ------- null} + -t 27.1224 -s 1 -d 3 -p ack -e 40 -c 0 -i 533 -a 0 -x {21.0 3.0 262 ------- null} - -t 27.1224 -s 1 -d 3 -p ack -e 40 -c 0 -i 533 -a 0 -x {21.0 3.0 262 ------- null} h -t 27.1224 -s 1 -d 3 -p ack -e 40 -c 0 -i 533 -a 0 -x {21.0 3.0 -1 ------- null} r -t 27.124 -s 28 -d 1 -p ack -e 40 -c 0 -i 534 -a 0 -x {21.0 3.0 263 ------- null} + -t 27.124 -s 1 -d 3 -p ack -e 40 -c 0 -i 534 -a 0 -x {21.0 3.0 263 ------- null} - -t 27.124 -s 1 -d 3 -p ack -e 40 -c 0 -i 534 -a 0 -x {21.0 3.0 263 ------- null} h -t 27.124 -s 1 -d 3 -p ack -e 40 -c 0 -i 534 -a 0 -x {21.0 3.0 -1 ------- null} r -t 27.1256 -s 28 -d 1 -p ack -e 40 -c 0 -i 535 -a 0 -x {21.0 3.0 264 ------- null} + -t 27.1256 -s 1 -d 3 -p ack -e 40 -c 0 -i 535 -a 0 -x {21.0 3.0 264 ------- null} - -t 27.1256 -s 1 -d 3 -p ack -e 40 -c 0 -i 535 -a 0 -x {21.0 3.0 264 ------- null} h -t 27.1256 -s 1 -d 3 -p ack -e 40 -c 0 -i 535 -a 0 -x {21.0 3.0 -1 ------- null} r -t 27.1272 -s 28 -d 1 -p ack -e 40 -c 0 -i 536 -a 0 -x {21.0 3.0 265 ------- null} + -t 27.1272 -s 1 -d 3 -p ack -e 40 -c 0 -i 536 -a 0 -x {21.0 3.0 265 ------- null} - -t 27.1272 -s 1 -d 3 -p ack -e 40 -c 0 -i 536 -a 0 -x {21.0 3.0 265 ------- null} h -t 27.1272 -s 1 -d 3 -p ack -e 40 -c 0 -i 536 -a 0 -x {21.0 3.0 -1 ------- null} r -t 27.1288 -s 28 -d 1 -p ack -e 40 -c 0 -i 537 -a 0 -x {21.0 3.0 266 ------- null} + -t 27.1288 -s 1 -d 3 -p ack -e 40 -c 0 -i 537 -a 0 -x {21.0 3.0 266 ------- null} - -t 27.1288 -s 1 -d 3 -p ack -e 40 -c 0 -i 537 -a 0 -x {21.0 3.0 266 ------- null} h -t 27.1288 -s 1 -d 3 -p ack -e 40 -c 0 -i 537 -a 0 -x {21.0 3.0 -1 ------- null} r -t 27.1304 -s 28 -d 1 -p ack -e 40 -c 0 -i 538 -a 0 -x {21.0 3.0 267 ------- null} + -t 27.1304 -s 1 -d 3 -p ack -e 40 -c 0 -i 538 -a 0 -x {21.0 3.0 267 ------- null} - -t 27.1304 -s 1 -d 3 -p ack -e 40 -c 0 -i 538 -a 0 -x {21.0 3.0 267 ------- null} h -t 27.1304 -s 1 -d 3 -p ack -e 40 -c 0 -i 538 -a 0 -x {21.0 3.0 -1 ------- null} r -t 27.132 -s 28 -d 1 -p ack -e 40 -c 0 -i 539 -a 0 -x {21.0 3.0 268 ------- null} + -t 27.132 -s 1 -d 3 -p ack -e 40 -c 0 -i 539 -a 0 -x {21.0 3.0 268 ------- null} - -t 27.132 -s 1 -d 3 -p ack -e 40 -c 0 -i 539 -a 0 -x {21.0 3.0 268 ------- null} h -t 27.132 -s 1 -d 3 -p ack -e 40 -c 0 -i 539 -a 0 -x {21.0 3.0 -1 ------- null} r -t 27.1336 -s 28 -d 1 -p ack -e 40 -c 0 -i 540 -a 0 -x {21.0 3.0 269 ------- null} + -t 27.1336 -s 1 -d 3 -p ack -e 40 -c 0 -i 540 -a 0 -x {21.0 3.0 269 ------- null} - -t 27.1336 -s 1 -d 3 -p ack -e 40 -c 0 -i 540 -a 0 -x {21.0 3.0 269 ------- null} h -t 27.1336 -s 1 -d 3 -p ack -e 40 -c 0 -i 540 -a 0 -x {21.0 3.0 -1 ------- null} r -t 27.1352 -s 28 -d 1 -p ack -e 40 -c 0 -i 541 -a 0 -x {21.0 3.0 270 ------- null} + -t 27.1352 -s 1 -d 3 -p ack -e 40 -c 0 -i 541 -a 0 -x {21.0 3.0 270 ------- null} - -t 27.1352 -s 1 -d 3 -p ack -e 40 -c 0 -i 541 -a 0 -x {21.0 3.0 270 ------- null} h -t 27.1352 -s 1 -d 3 -p ack -e 40 -c 0 -i 541 -a 0 -x {21.0 3.0 -1 ------- null} r -t 27.2449 -s 1 -d 3 -p ack -e 40 -c 0 -i 522 -a 0 -x {21.0 3.0 251 ------- null} + -t 27.2449 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 542 -a 0 -x {3.0 21.0 271 ------- null} - -t 27.2449 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 542 -a 0 -x {3.0 21.0 271 ------- null} h -t 27.2449 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 542 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.2465 -s 1 -d 3 -p ack -e 40 -c 0 -i 523 -a 0 -x {21.0 3.0 252 ------- null} + -t 27.2465 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {3.0 21.0 272 ------- null} - -t 27.2465 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {3.0 21.0 272 ------- null} h -t 27.2465 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.2481 -s 1 -d 3 -p ack -e 40 -c 0 -i 524 -a 0 -x {21.0 3.0 253 ------- null} + -t 27.2481 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 544 -a 0 -x {3.0 21.0 273 ------- null} - -t 27.2481 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 544 -a 0 -x {3.0 21.0 273 ------- null} h -t 27.2481 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 544 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.2497 -s 1 -d 3 -p ack -e 40 -c 0 -i 525 -a 0 -x {21.0 3.0 254 ------- null} + -t 27.2497 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {3.0 21.0 274 ------- null} - -t 27.2497 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {3.0 21.0 274 ------- null} h -t 27.2497 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.2513 -s 1 -d 3 -p ack -e 40 -c 0 -i 526 -a 0 -x {21.0 3.0 255 ------- null} + -t 27.2513 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 546 -a 0 -x {3.0 21.0 275 ------- null} - -t 27.2513 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 546 -a 0 -x {3.0 21.0 275 ------- null} h -t 27.2513 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 546 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.2529 -s 1 -d 3 -p ack -e 40 -c 0 -i 527 -a 0 -x {21.0 3.0 256 ------- null} + -t 27.2529 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {3.0 21.0 276 ------- null} - -t 27.2529 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {3.0 21.0 276 ------- null} h -t 27.2529 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.2545 -s 1 -d 3 -p ack -e 40 -c 0 -i 528 -a 0 -x {21.0 3.0 257 ------- null} + -t 27.2545 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 548 -a 0 -x {3.0 21.0 277 ------- null} - -t 27.2545 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 548 -a 0 -x {3.0 21.0 277 ------- null} h -t 27.2545 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 548 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.2561 -s 1 -d 3 -p ack -e 40 -c 0 -i 529 -a 0 -x {21.0 3.0 258 ------- null} + -t 27.2561 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {3.0 21.0 278 ------- null} - -t 27.2561 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {3.0 21.0 278 ------- null} h -t 27.2561 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.2577 -s 1 -d 3 -p ack -e 40 -c 0 -i 530 -a 0 -x {21.0 3.0 259 ------- null} + -t 27.2577 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 550 -a 0 -x {3.0 21.0 279 ------- null} - -t 27.2577 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 550 -a 0 -x {3.0 21.0 279 ------- null} h -t 27.2577 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 550 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.2593 -s 1 -d 3 -p ack -e 40 -c 0 -i 531 -a 0 -x {21.0 3.0 260 ------- null} + -t 27.2593 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {3.0 21.0 280 ------- null} - -t 27.2593 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {3.0 21.0 280 ------- null} h -t 27.2593 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.2609 -s 1 -d 3 -p ack -e 40 -c 0 -i 532 -a 0 -x {21.0 3.0 261 ------- null} + -t 27.2609 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {3.0 21.0 281 ------- null} - -t 27.2609 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {3.0 21.0 281 ------- null} h -t 27.2609 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.2625 -s 1 -d 3 -p ack -e 40 -c 0 -i 533 -a 0 -x {21.0 3.0 262 ------- null} + -t 27.2625 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {3.0 21.0 282 ------- null} - -t 27.2625 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {3.0 21.0 282 ------- null} h -t 27.2625 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.2641 -s 1 -d 3 -p ack -e 40 -c 0 -i 534 -a 0 -x {21.0 3.0 263 ------- null} + -t 27.2641 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 554 -a 0 -x {3.0 21.0 283 ------- null} - -t 27.2641 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 554 -a 0 -x {3.0 21.0 283 ------- null} h -t 27.2641 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 554 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.2657 -s 1 -d 3 -p ack -e 40 -c 0 -i 535 -a 0 -x {21.0 3.0 264 ------- null} + -t 27.2657 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {3.0 21.0 284 ------- null} - -t 27.2657 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {3.0 21.0 284 ------- null} h -t 27.2657 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.2673 -s 1 -d 3 -p ack -e 40 -c 0 -i 536 -a 0 -x {21.0 3.0 265 ------- null} + -t 27.2673 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 556 -a 0 -x {3.0 21.0 285 ------- null} - -t 27.2673 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 556 -a 0 -x {3.0 21.0 285 ------- null} h -t 27.2673 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 556 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.2689 -s 1 -d 3 -p ack -e 40 -c 0 -i 537 -a 0 -x {21.0 3.0 266 ------- null} + -t 27.2689 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {3.0 21.0 286 ------- null} - -t 27.2689 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {3.0 21.0 286 ------- null} h -t 27.2689 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.2705 -s 1 -d 3 -p ack -e 40 -c 0 -i 538 -a 0 -x {21.0 3.0 267 ------- null} + -t 27.2705 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 558 -a 0 -x {3.0 21.0 287 ------- null} - -t 27.2705 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 558 -a 0 -x {3.0 21.0 287 ------- null} h -t 27.2705 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 558 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.2721 -s 1 -d 3 -p ack -e 40 -c 0 -i 539 -a 0 -x {21.0 3.0 268 ------- null} + -t 27.2721 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {3.0 21.0 288 ------- null} - -t 27.2721 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {3.0 21.0 288 ------- null} h -t 27.2721 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.2737 -s 1 -d 3 -p ack -e 40 -c 0 -i 540 -a 0 -x {21.0 3.0 269 ------- null} + -t 27.2737 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 560 -a 0 -x {3.0 21.0 289 ------- null} - -t 27.2737 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 560 -a 0 -x {3.0 21.0 289 ------- null} h -t 27.2737 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 560 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.2753 -s 1 -d 3 -p ack -e 40 -c 0 -i 541 -a 0 -x {21.0 3.0 270 ------- null} + -t 27.2753 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {3.0 21.0 290 ------- null} - -t 27.2753 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {3.0 21.0 290 ------- null} h -t 27.2753 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.3865 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 542 -a 0 -x {3.0 21.0 271 ------- null} + -t 27.3865 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 542 -a 0 -x {3.0 21.0 271 ------- null} - -t 27.3865 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 542 -a 0 -x {3.0 21.0 271 ------- null} h -t 27.3865 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 542 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.3881 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {3.0 21.0 272 ------- null} + -t 27.3881 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {3.0 21.0 272 ------- null} - -t 27.3881 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {3.0 21.0 272 ------- null} h -t 27.3881 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.3897 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 544 -a 0 -x {3.0 21.0 273 ------- null} + -t 27.3897 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 544 -a 0 -x {3.0 21.0 273 ------- null} - -t 27.3897 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 544 -a 0 -x {3.0 21.0 273 ------- null} h -t 27.3897 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 544 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.3913 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {3.0 21.0 274 ------- null} + -t 27.3913 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {3.0 21.0 274 ------- null} - -t 27.3913 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {3.0 21.0 274 ------- null} h -t 27.3913 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.3929 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 546 -a 0 -x {3.0 21.0 275 ------- null} + -t 27.3929 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 546 -a 0 -x {3.0 21.0 275 ------- null} - -t 27.3929 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 546 -a 0 -x {3.0 21.0 275 ------- null} h -t 27.3929 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 546 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.3945 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {3.0 21.0 276 ------- null} + -t 27.3945 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {3.0 21.0 276 ------- null} - -t 27.3945 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {3.0 21.0 276 ------- null} h -t 27.3945 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.3961 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 548 -a 0 -x {3.0 21.0 277 ------- null} + -t 27.3961 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 548 -a 0 -x {3.0 21.0 277 ------- null} - -t 27.3961 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 548 -a 0 -x {3.0 21.0 277 ------- null} h -t 27.3961 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 548 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.3977 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {3.0 21.0 278 ------- null} + -t 27.3977 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {3.0 21.0 278 ------- null} - -t 27.3977 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {3.0 21.0 278 ------- null} h -t 27.3977 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.3993 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 550 -a 0 -x {3.0 21.0 279 ------- null} + -t 27.3993 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 550 -a 0 -x {3.0 21.0 279 ------- null} - -t 27.3993 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 550 -a 0 -x {3.0 21.0 279 ------- null} h -t 27.3993 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 550 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.4009 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {3.0 21.0 280 ------- null} + -t 27.4009 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {3.0 21.0 280 ------- null} - -t 27.4009 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {3.0 21.0 280 ------- null} h -t 27.4009 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.4025 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {3.0 21.0 281 ------- null} + -t 27.4025 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {3.0 21.0 281 ------- null} - -t 27.4025 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {3.0 21.0 281 ------- null} h -t 27.4025 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.4041 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {3.0 21.0 282 ------- null} + -t 27.4041 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {3.0 21.0 282 ------- null} - -t 27.4041 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {3.0 21.0 282 ------- null} h -t 27.4041 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.4057 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 554 -a 0 -x {3.0 21.0 283 ------- null} + -t 27.4057 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 554 -a 0 -x {3.0 21.0 283 ------- null} - -t 27.4057 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 554 -a 0 -x {3.0 21.0 283 ------- null} h -t 27.4057 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 554 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.4073 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {3.0 21.0 284 ------- null} + -t 27.4073 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {3.0 21.0 284 ------- null} - -t 27.4073 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {3.0 21.0 284 ------- null} h -t 27.4073 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.4089 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 556 -a 0 -x {3.0 21.0 285 ------- null} + -t 27.4089 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 556 -a 0 -x {3.0 21.0 285 ------- null} - -t 27.4089 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 556 -a 0 -x {3.0 21.0 285 ------- null} h -t 27.4089 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 556 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.4105 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {3.0 21.0 286 ------- null} + -t 27.4105 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {3.0 21.0 286 ------- null} - -t 27.4105 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {3.0 21.0 286 ------- null} h -t 27.4105 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.4121 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 558 -a 0 -x {3.0 21.0 287 ------- null} + -t 27.4121 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 558 -a 0 -x {3.0 21.0 287 ------- null} - -t 27.4121 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 558 -a 0 -x {3.0 21.0 287 ------- null} h -t 27.4121 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 558 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.4137 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {3.0 21.0 288 ------- null} + -t 27.4137 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {3.0 21.0 288 ------- null} - -t 27.4137 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {3.0 21.0 288 ------- null} h -t 27.4137 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.4153 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 560 -a 0 -x {3.0 21.0 289 ------- null} + -t 27.4153 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 560 -a 0 -x {3.0 21.0 289 ------- null} - -t 27.4153 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 560 -a 0 -x {3.0 21.0 289 ------- null} h -t 27.4153 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 560 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.4169 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {3.0 21.0 290 ------- null} + -t 27.4169 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {3.0 21.0 290 ------- null} - -t 27.4169 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {3.0 21.0 290 ------- null} h -t 27.4169 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.6881 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 542 -a 0 -x {3.0 21.0 271 ------- null} + -t 27.6881 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 542 -a 0 -x {3.0 21.0 271 ------- null} - -t 27.6881 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 542 -a 0 -x {3.0 21.0 271 ------- null} h -t 27.6881 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 542 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.6897 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {3.0 21.0 272 ------- null} + -t 27.6897 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {3.0 21.0 272 ------- null} - -t 27.6897 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {3.0 21.0 272 ------- null} h -t 27.6897 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.6913 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 544 -a 0 -x {3.0 21.0 273 ------- null} + -t 27.6913 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 544 -a 0 -x {3.0 21.0 273 ------- null} - -t 27.6913 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 544 -a 0 -x {3.0 21.0 273 ------- null} h -t 27.6913 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 544 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.6929 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {3.0 21.0 274 ------- null} + -t 27.6929 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {3.0 21.0 274 ------- null} - -t 27.6929 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {3.0 21.0 274 ------- null} h -t 27.6929 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.6945 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 546 -a 0 -x {3.0 21.0 275 ------- null} + -t 27.6945 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 546 -a 0 -x {3.0 21.0 275 ------- null} - -t 27.6945 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 546 -a 0 -x {3.0 21.0 275 ------- null} h -t 27.6945 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 546 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.6961 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {3.0 21.0 276 ------- null} + -t 27.6961 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {3.0 21.0 276 ------- null} - -t 27.6961 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {3.0 21.0 276 ------- null} h -t 27.6961 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.6977 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 548 -a 0 -x {3.0 21.0 277 ------- null} + -t 27.6977 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 548 -a 0 -x {3.0 21.0 277 ------- null} - -t 27.6977 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 548 -a 0 -x {3.0 21.0 277 ------- null} h -t 27.6977 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 548 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.6993 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {3.0 21.0 278 ------- null} + -t 27.6993 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {3.0 21.0 278 ------- null} - -t 27.6993 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {3.0 21.0 278 ------- null} h -t 27.6993 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.7009 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 550 -a 0 -x {3.0 21.0 279 ------- null} + -t 27.7009 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 550 -a 0 -x {3.0 21.0 279 ------- null} - -t 27.7009 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 550 -a 0 -x {3.0 21.0 279 ------- null} h -t 27.7009 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 550 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.7025 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {3.0 21.0 280 ------- null} + -t 27.7025 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {3.0 21.0 280 ------- null} - -t 27.7025 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {3.0 21.0 280 ------- null} h -t 27.7025 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.7041 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {3.0 21.0 281 ------- null} + -t 27.7041 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {3.0 21.0 281 ------- null} - -t 27.7041 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {3.0 21.0 281 ------- null} h -t 27.7041 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.7057 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {3.0 21.0 282 ------- null} + -t 27.7057 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {3.0 21.0 282 ------- null} - -t 27.7057 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {3.0 21.0 282 ------- null} h -t 27.7057 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.7073 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 554 -a 0 -x {3.0 21.0 283 ------- null} + -t 27.7073 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 554 -a 0 -x {3.0 21.0 283 ------- null} - -t 27.7073 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 554 -a 0 -x {3.0 21.0 283 ------- null} h -t 27.7073 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 554 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.7089 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {3.0 21.0 284 ------- null} + -t 27.7089 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {3.0 21.0 284 ------- null} - -t 27.7089 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {3.0 21.0 284 ------- null} h -t 27.7089 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.7105 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 556 -a 0 -x {3.0 21.0 285 ------- null} + -t 27.7105 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 556 -a 0 -x {3.0 21.0 285 ------- null} - -t 27.7105 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 556 -a 0 -x {3.0 21.0 285 ------- null} h -t 27.7105 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 556 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.7121 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {3.0 21.0 286 ------- null} + -t 27.7121 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {3.0 21.0 286 ------- null} - -t 27.7121 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {3.0 21.0 286 ------- null} h -t 27.7121 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.7137 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 558 -a 0 -x {3.0 21.0 287 ------- null} + -t 27.7137 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 558 -a 0 -x {3.0 21.0 287 ------- null} - -t 27.7137 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 558 -a 0 -x {3.0 21.0 287 ------- null} h -t 27.7137 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 558 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.7153 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {3.0 21.0 288 ------- null} + -t 27.7153 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {3.0 21.0 288 ------- null} - -t 27.7153 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {3.0 21.0 288 ------- null} h -t 27.7153 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.7169 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 560 -a 0 -x {3.0 21.0 289 ------- null} + -t 27.7169 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 560 -a 0 -x {3.0 21.0 289 ------- null} - -t 27.7169 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 560 -a 0 -x {3.0 21.0 289 ------- null} h -t 27.7169 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 560 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.7185 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {3.0 21.0 290 ------- null} + -t 27.7185 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {3.0 21.0 290 ------- null} - -t 27.7185 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {3.0 21.0 290 ------- null} h -t 27.7185 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.0397 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 542 -a 0 -x {3.0 21.0 271 ------- null} + -t 28.0397 -s 21 -d 28 -p ack -e 40 -c 0 -i 562 -a 0 -x {21.0 3.0 271 ------- null} - -t 28.0397 -s 21 -d 28 -p ack -e 40 -c 0 -i 562 -a 0 -x {21.0 3.0 271 ------- null} h -t 28.0397 -s 21 -d 28 -p ack -e 40 -c 0 -i 562 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.0413 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {3.0 21.0 272 ------- null} + -t 28.0413 -s 21 -d 28 -p ack -e 40 -c 0 -i 563 -a 0 -x {21.0 3.0 272 ------- null} - -t 28.0413 -s 21 -d 28 -p ack -e 40 -c 0 -i 563 -a 0 -x {21.0 3.0 272 ------- null} h -t 28.0413 -s 21 -d 28 -p ack -e 40 -c 0 -i 563 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.0429 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 544 -a 0 -x {3.0 21.0 273 ------- null} + -t 28.0429 -s 21 -d 28 -p ack -e 40 -c 0 -i 564 -a 0 -x {21.0 3.0 273 ------- null} - -t 28.0429 -s 21 -d 28 -p ack -e 40 -c 0 -i 564 -a 0 -x {21.0 3.0 273 ------- null} h -t 28.0429 -s 21 -d 28 -p ack -e 40 -c 0 -i 564 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.0445 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {3.0 21.0 274 ------- null} + -t 28.0445 -s 21 -d 28 -p ack -e 40 -c 0 -i 565 -a 0 -x {21.0 3.0 274 ------- null} - -t 28.0445 -s 21 -d 28 -p ack -e 40 -c 0 -i 565 -a 0 -x {21.0 3.0 274 ------- null} h -t 28.0445 -s 21 -d 28 -p ack -e 40 -c 0 -i 565 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.0461 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 546 -a 0 -x {3.0 21.0 275 ------- null} + -t 28.0461 -s 21 -d 28 -p ack -e 40 -c 0 -i 566 -a 0 -x {21.0 3.0 275 ------- null} - -t 28.0461 -s 21 -d 28 -p ack -e 40 -c 0 -i 566 -a 0 -x {21.0 3.0 275 ------- null} h -t 28.0461 -s 21 -d 28 -p ack -e 40 -c 0 -i 566 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.0477 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {3.0 21.0 276 ------- null} + -t 28.0477 -s 21 -d 28 -p ack -e 40 -c 0 -i 567 -a 0 -x {21.0 3.0 276 ------- null} - -t 28.0477 -s 21 -d 28 -p ack -e 40 -c 0 -i 567 -a 0 -x {21.0 3.0 276 ------- null} h -t 28.0477 -s 21 -d 28 -p ack -e 40 -c 0 -i 567 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.0493 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 548 -a 0 -x {3.0 21.0 277 ------- null} + -t 28.0493 -s 21 -d 28 -p ack -e 40 -c 0 -i 568 -a 0 -x {21.0 3.0 277 ------- null} - -t 28.0493 -s 21 -d 28 -p ack -e 40 -c 0 -i 568 -a 0 -x {21.0 3.0 277 ------- null} h -t 28.0493 -s 21 -d 28 -p ack -e 40 -c 0 -i 568 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.0509 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {3.0 21.0 278 ------- null} + -t 28.0509 -s 21 -d 28 -p ack -e 40 -c 0 -i 569 -a 0 -x {21.0 3.0 278 ------- null} - -t 28.0509 -s 21 -d 28 -p ack -e 40 -c 0 -i 569 -a 0 -x {21.0 3.0 278 ------- null} h -t 28.0509 -s 21 -d 28 -p ack -e 40 -c 0 -i 569 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.0525 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 550 -a 0 -x {3.0 21.0 279 ------- null} + -t 28.0525 -s 21 -d 28 -p ack -e 40 -c 0 -i 570 -a 0 -x {21.0 3.0 279 ------- null} - -t 28.0525 -s 21 -d 28 -p ack -e 40 -c 0 -i 570 -a 0 -x {21.0 3.0 279 ------- null} h -t 28.0525 -s 21 -d 28 -p ack -e 40 -c 0 -i 570 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.0541 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {3.0 21.0 280 ------- null} + -t 28.0541 -s 21 -d 28 -p ack -e 40 -c 0 -i 571 -a 0 -x {21.0 3.0 280 ------- null} - -t 28.0541 -s 21 -d 28 -p ack -e 40 -c 0 -i 571 -a 0 -x {21.0 3.0 280 ------- null} h -t 28.0541 -s 21 -d 28 -p ack -e 40 -c 0 -i 571 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.0557 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {3.0 21.0 281 ------- null} + -t 28.0557 -s 21 -d 28 -p ack -e 40 -c 0 -i 572 -a 0 -x {21.0 3.0 281 ------- null} - -t 28.0557 -s 21 -d 28 -p ack -e 40 -c 0 -i 572 -a 0 -x {21.0 3.0 281 ------- null} h -t 28.0557 -s 21 -d 28 -p ack -e 40 -c 0 -i 572 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.0573 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {3.0 21.0 282 ------- null} + -t 28.0573 -s 21 -d 28 -p ack -e 40 -c 0 -i 573 -a 0 -x {21.0 3.0 282 ------- null} - -t 28.0573 -s 21 -d 28 -p ack -e 40 -c 0 -i 573 -a 0 -x {21.0 3.0 282 ------- null} h -t 28.0573 -s 21 -d 28 -p ack -e 40 -c 0 -i 573 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.0589 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 554 -a 0 -x {3.0 21.0 283 ------- null} + -t 28.0589 -s 21 -d 28 -p ack -e 40 -c 0 -i 574 -a 0 -x {21.0 3.0 283 ------- null} - -t 28.0589 -s 21 -d 28 -p ack -e 40 -c 0 -i 574 -a 0 -x {21.0 3.0 283 ------- null} h -t 28.0589 -s 21 -d 28 -p ack -e 40 -c 0 -i 574 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.0605 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {3.0 21.0 284 ------- null} + -t 28.0605 -s 21 -d 28 -p ack -e 40 -c 0 -i 575 -a 0 -x {21.0 3.0 284 ------- null} - -t 28.0605 -s 21 -d 28 -p ack -e 40 -c 0 -i 575 -a 0 -x {21.0 3.0 284 ------- null} h -t 28.0605 -s 21 -d 28 -p ack -e 40 -c 0 -i 575 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.0621 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 556 -a 0 -x {3.0 21.0 285 ------- null} + -t 28.0621 -s 21 -d 28 -p ack -e 40 -c 0 -i 576 -a 0 -x {21.0 3.0 285 ------- null} - -t 28.0621 -s 21 -d 28 -p ack -e 40 -c 0 -i 576 -a 0 -x {21.0 3.0 285 ------- null} h -t 28.0621 -s 21 -d 28 -p ack -e 40 -c 0 -i 576 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.0637 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {3.0 21.0 286 ------- null} + -t 28.0637 -s 21 -d 28 -p ack -e 40 -c 0 -i 577 -a 0 -x {21.0 3.0 286 ------- null} - -t 28.0637 -s 21 -d 28 -p ack -e 40 -c 0 -i 577 -a 0 -x {21.0 3.0 286 ------- null} h -t 28.0637 -s 21 -d 28 -p ack -e 40 -c 0 -i 577 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.0653 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 558 -a 0 -x {3.0 21.0 287 ------- null} + -t 28.0653 -s 21 -d 28 -p ack -e 40 -c 0 -i 578 -a 0 -x {21.0 3.0 287 ------- null} - -t 28.0653 -s 21 -d 28 -p ack -e 40 -c 0 -i 578 -a 0 -x {21.0 3.0 287 ------- null} h -t 28.0653 -s 21 -d 28 -p ack -e 40 -c 0 -i 578 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.0669 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {3.0 21.0 288 ------- null} + -t 28.0669 -s 21 -d 28 -p ack -e 40 -c 0 -i 579 -a 0 -x {21.0 3.0 288 ------- null} - -t 28.0669 -s 21 -d 28 -p ack -e 40 -c 0 -i 579 -a 0 -x {21.0 3.0 288 ------- null} h -t 28.0669 -s 21 -d 28 -p ack -e 40 -c 0 -i 579 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.0685 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 560 -a 0 -x {3.0 21.0 289 ------- null} + -t 28.0685 -s 21 -d 28 -p ack -e 40 -c 0 -i 580 -a 0 -x {21.0 3.0 289 ------- null} - -t 28.0685 -s 21 -d 28 -p ack -e 40 -c 0 -i 580 -a 0 -x {21.0 3.0 289 ------- null} h -t 28.0685 -s 21 -d 28 -p ack -e 40 -c 0 -i 580 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.0701 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {3.0 21.0 290 ------- null} + -t 28.0701 -s 21 -d 28 -p ack -e 40 -c 0 -i 581 -a 0 -x {21.0 3.0 290 ------- null} - -t 28.0701 -s 21 -d 28 -p ack -e 40 -c 0 -i 581 -a 0 -x {21.0 3.0 290 ------- null} h -t 28.0701 -s 21 -d 28 -p ack -e 40 -c 0 -i 581 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.3897 -s 21 -d 28 -p ack -e 40 -c 0 -i 562 -a 0 -x {21.0 3.0 271 ------- null} + -t 28.3897 -s 28 -d 1 -p ack -e 40 -c 0 -i 562 -a 0 -x {21.0 3.0 271 ------- null} - -t 28.3897 -s 28 -d 1 -p ack -e 40 -c 0 -i 562 -a 0 -x {21.0 3.0 271 ------- null} h -t 28.3897 -s 28 -d 1 -p ack -e 40 -c 0 -i 562 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.3913 -s 21 -d 28 -p ack -e 40 -c 0 -i 563 -a 0 -x {21.0 3.0 272 ------- null} + -t 28.3913 -s 28 -d 1 -p ack -e 40 -c 0 -i 563 -a 0 -x {21.0 3.0 272 ------- null} - -t 28.3913 -s 28 -d 1 -p ack -e 40 -c 0 -i 563 -a 0 -x {21.0 3.0 272 ------- null} h -t 28.3913 -s 28 -d 1 -p ack -e 40 -c 0 -i 563 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.3929 -s 21 -d 28 -p ack -e 40 -c 0 -i 564 -a 0 -x {21.0 3.0 273 ------- null} + -t 28.3929 -s 28 -d 1 -p ack -e 40 -c 0 -i 564 -a 0 -x {21.0 3.0 273 ------- null} - -t 28.3929 -s 28 -d 1 -p ack -e 40 -c 0 -i 564 -a 0 -x {21.0 3.0 273 ------- null} h -t 28.3929 -s 28 -d 1 -p ack -e 40 -c 0 -i 564 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.3945 -s 21 -d 28 -p ack -e 40 -c 0 -i 565 -a 0 -x {21.0 3.0 274 ------- null} + -t 28.3945 -s 28 -d 1 -p ack -e 40 -c 0 -i 565 -a 0 -x {21.0 3.0 274 ------- null} - -t 28.3945 -s 28 -d 1 -p ack -e 40 -c 0 -i 565 -a 0 -x {21.0 3.0 274 ------- null} h -t 28.3945 -s 28 -d 1 -p ack -e 40 -c 0 -i 565 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.3961 -s 21 -d 28 -p ack -e 40 -c 0 -i 566 -a 0 -x {21.0 3.0 275 ------- null} + -t 28.3961 -s 28 -d 1 -p ack -e 40 -c 0 -i 566 -a 0 -x {21.0 3.0 275 ------- null} - -t 28.3961 -s 28 -d 1 -p ack -e 40 -c 0 -i 566 -a 0 -x {21.0 3.0 275 ------- null} h -t 28.3961 -s 28 -d 1 -p ack -e 40 -c 0 -i 566 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.3977 -s 21 -d 28 -p ack -e 40 -c 0 -i 567 -a 0 -x {21.0 3.0 276 ------- null} + -t 28.3977 -s 28 -d 1 -p ack -e 40 -c 0 -i 567 -a 0 -x {21.0 3.0 276 ------- null} - -t 28.3977 -s 28 -d 1 -p ack -e 40 -c 0 -i 567 -a 0 -x {21.0 3.0 276 ------- null} h -t 28.3977 -s 28 -d 1 -p ack -e 40 -c 0 -i 567 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.3993 -s 21 -d 28 -p ack -e 40 -c 0 -i 568 -a 0 -x {21.0 3.0 277 ------- null} + -t 28.3993 -s 28 -d 1 -p ack -e 40 -c 0 -i 568 -a 0 -x {21.0 3.0 277 ------- null} - -t 28.3993 -s 28 -d 1 -p ack -e 40 -c 0 -i 568 -a 0 -x {21.0 3.0 277 ------- null} h -t 28.3993 -s 28 -d 1 -p ack -e 40 -c 0 -i 568 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.4009 -s 21 -d 28 -p ack -e 40 -c 0 -i 569 -a 0 -x {21.0 3.0 278 ------- null} + -t 28.4009 -s 28 -d 1 -p ack -e 40 -c 0 -i 569 -a 0 -x {21.0 3.0 278 ------- null} - -t 28.4009 -s 28 -d 1 -p ack -e 40 -c 0 -i 569 -a 0 -x {21.0 3.0 278 ------- null} h -t 28.4009 -s 28 -d 1 -p ack -e 40 -c 0 -i 569 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.4025 -s 21 -d 28 -p ack -e 40 -c 0 -i 570 -a 0 -x {21.0 3.0 279 ------- null} + -t 28.4025 -s 28 -d 1 -p ack -e 40 -c 0 -i 570 -a 0 -x {21.0 3.0 279 ------- null} - -t 28.4025 -s 28 -d 1 -p ack -e 40 -c 0 -i 570 -a 0 -x {21.0 3.0 279 ------- null} h -t 28.4025 -s 28 -d 1 -p ack -e 40 -c 0 -i 570 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.4041 -s 21 -d 28 -p ack -e 40 -c 0 -i 571 -a 0 -x {21.0 3.0 280 ------- null} + -t 28.4041 -s 28 -d 1 -p ack -e 40 -c 0 -i 571 -a 0 -x {21.0 3.0 280 ------- null} - -t 28.4041 -s 28 -d 1 -p ack -e 40 -c 0 -i 571 -a 0 -x {21.0 3.0 280 ------- null} h -t 28.4041 -s 28 -d 1 -p ack -e 40 -c 0 -i 571 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.4057 -s 21 -d 28 -p ack -e 40 -c 0 -i 572 -a 0 -x {21.0 3.0 281 ------- null} + -t 28.4057 -s 28 -d 1 -p ack -e 40 -c 0 -i 572 -a 0 -x {21.0 3.0 281 ------- null} - -t 28.4057 -s 28 -d 1 -p ack -e 40 -c 0 -i 572 -a 0 -x {21.0 3.0 281 ------- null} h -t 28.4057 -s 28 -d 1 -p ack -e 40 -c 0 -i 572 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.4073 -s 21 -d 28 -p ack -e 40 -c 0 -i 573 -a 0 -x {21.0 3.0 282 ------- null} + -t 28.4073 -s 28 -d 1 -p ack -e 40 -c 0 -i 573 -a 0 -x {21.0 3.0 282 ------- null} - -t 28.4073 -s 28 -d 1 -p ack -e 40 -c 0 -i 573 -a 0 -x {21.0 3.0 282 ------- null} h -t 28.4073 -s 28 -d 1 -p ack -e 40 -c 0 -i 573 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.4089 -s 21 -d 28 -p ack -e 40 -c 0 -i 574 -a 0 -x {21.0 3.0 283 ------- null} + -t 28.4089 -s 28 -d 1 -p ack -e 40 -c 0 -i 574 -a 0 -x {21.0 3.0 283 ------- null} - -t 28.4089 -s 28 -d 1 -p ack -e 40 -c 0 -i 574 -a 0 -x {21.0 3.0 283 ------- null} h -t 28.4089 -s 28 -d 1 -p ack -e 40 -c 0 -i 574 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.4105 -s 21 -d 28 -p ack -e 40 -c 0 -i 575 -a 0 -x {21.0 3.0 284 ------- null} + -t 28.4105 -s 28 -d 1 -p ack -e 40 -c 0 -i 575 -a 0 -x {21.0 3.0 284 ------- null} - -t 28.4105 -s 28 -d 1 -p ack -e 40 -c 0 -i 575 -a 0 -x {21.0 3.0 284 ------- null} h -t 28.4105 -s 28 -d 1 -p ack -e 40 -c 0 -i 575 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.4121 -s 21 -d 28 -p ack -e 40 -c 0 -i 576 -a 0 -x {21.0 3.0 285 ------- null} + -t 28.4121 -s 28 -d 1 -p ack -e 40 -c 0 -i 576 -a 0 -x {21.0 3.0 285 ------- null} - -t 28.4121 -s 28 -d 1 -p ack -e 40 -c 0 -i 576 -a 0 -x {21.0 3.0 285 ------- null} h -t 28.4121 -s 28 -d 1 -p ack -e 40 -c 0 -i 576 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.4137 -s 21 -d 28 -p ack -e 40 -c 0 -i 577 -a 0 -x {21.0 3.0 286 ------- null} + -t 28.4137 -s 28 -d 1 -p ack -e 40 -c 0 -i 577 -a 0 -x {21.0 3.0 286 ------- null} - -t 28.4137 -s 28 -d 1 -p ack -e 40 -c 0 -i 577 -a 0 -x {21.0 3.0 286 ------- null} h -t 28.4137 -s 28 -d 1 -p ack -e 40 -c 0 -i 577 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.4153 -s 21 -d 28 -p ack -e 40 -c 0 -i 578 -a 0 -x {21.0 3.0 287 ------- null} + -t 28.4153 -s 28 -d 1 -p ack -e 40 -c 0 -i 578 -a 0 -x {21.0 3.0 287 ------- null} - -t 28.4153 -s 28 -d 1 -p ack -e 40 -c 0 -i 578 -a 0 -x {21.0 3.0 287 ------- null} h -t 28.4153 -s 28 -d 1 -p ack -e 40 -c 0 -i 578 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.4169 -s 21 -d 28 -p ack -e 40 -c 0 -i 579 -a 0 -x {21.0 3.0 288 ------- null} + -t 28.4169 -s 28 -d 1 -p ack -e 40 -c 0 -i 579 -a 0 -x {21.0 3.0 288 ------- null} - -t 28.4169 -s 28 -d 1 -p ack -e 40 -c 0 -i 579 -a 0 -x {21.0 3.0 288 ------- null} h -t 28.4169 -s 28 -d 1 -p ack -e 40 -c 0 -i 579 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.4185 -s 21 -d 28 -p ack -e 40 -c 0 -i 580 -a 0 -x {21.0 3.0 289 ------- null} + -t 28.4185 -s 28 -d 1 -p ack -e 40 -c 0 -i 580 -a 0 -x {21.0 3.0 289 ------- null} - -t 28.4185 -s 28 -d 1 -p ack -e 40 -c 0 -i 580 -a 0 -x {21.0 3.0 289 ------- null} h -t 28.4185 -s 28 -d 1 -p ack -e 40 -c 0 -i 580 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.4201 -s 21 -d 28 -p ack -e 40 -c 0 -i 581 -a 0 -x {21.0 3.0 290 ------- null} + -t 28.4201 -s 28 -d 1 -p ack -e 40 -c 0 -i 581 -a 0 -x {21.0 3.0 290 ------- null} - -t 28.4201 -s 28 -d 1 -p ack -e 40 -c 0 -i 581 -a 0 -x {21.0 3.0 290 ------- null} h -t 28.4201 -s 28 -d 1 -p ack -e 40 -c 0 -i 581 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.6898 -s 28 -d 1 -p ack -e 40 -c 0 -i 562 -a 0 -x {21.0 3.0 271 ------- null} + -t 28.6898 -s 1 -d 3 -p ack -e 40 -c 0 -i 562 -a 0 -x {21.0 3.0 271 ------- null} - -t 28.6898 -s 1 -d 3 -p ack -e 40 -c 0 -i 562 -a 0 -x {21.0 3.0 271 ------- null} h -t 28.6898 -s 1 -d 3 -p ack -e 40 -c 0 -i 562 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.6914 -s 28 -d 1 -p ack -e 40 -c 0 -i 563 -a 0 -x {21.0 3.0 272 ------- null} + -t 28.6914 -s 1 -d 3 -p ack -e 40 -c 0 -i 563 -a 0 -x {21.0 3.0 272 ------- null} - -t 28.6914 -s 1 -d 3 -p ack -e 40 -c 0 -i 563 -a 0 -x {21.0 3.0 272 ------- null} h -t 28.6914 -s 1 -d 3 -p ack -e 40 -c 0 -i 563 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.693 -s 28 -d 1 -p ack -e 40 -c 0 -i 564 -a 0 -x {21.0 3.0 273 ------- null} + -t 28.693 -s 1 -d 3 -p ack -e 40 -c 0 -i 564 -a 0 -x {21.0 3.0 273 ------- null} - -t 28.693 -s 1 -d 3 -p ack -e 40 -c 0 -i 564 -a 0 -x {21.0 3.0 273 ------- null} h -t 28.693 -s 1 -d 3 -p ack -e 40 -c 0 -i 564 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.6946 -s 28 -d 1 -p ack -e 40 -c 0 -i 565 -a 0 -x {21.0 3.0 274 ------- null} + -t 28.6946 -s 1 -d 3 -p ack -e 40 -c 0 -i 565 -a 0 -x {21.0 3.0 274 ------- null} - -t 28.6946 -s 1 -d 3 -p ack -e 40 -c 0 -i 565 -a 0 -x {21.0 3.0 274 ------- null} h -t 28.6946 -s 1 -d 3 -p ack -e 40 -c 0 -i 565 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.6962 -s 28 -d 1 -p ack -e 40 -c 0 -i 566 -a 0 -x {21.0 3.0 275 ------- null} + -t 28.6962 -s 1 -d 3 -p ack -e 40 -c 0 -i 566 -a 0 -x {21.0 3.0 275 ------- null} - -t 28.6962 -s 1 -d 3 -p ack -e 40 -c 0 -i 566 -a 0 -x {21.0 3.0 275 ------- null} h -t 28.6962 -s 1 -d 3 -p ack -e 40 -c 0 -i 566 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.6978 -s 28 -d 1 -p ack -e 40 -c 0 -i 567 -a 0 -x {21.0 3.0 276 ------- null} + -t 28.6978 -s 1 -d 3 -p ack -e 40 -c 0 -i 567 -a 0 -x {21.0 3.0 276 ------- null} - -t 28.6978 -s 1 -d 3 -p ack -e 40 -c 0 -i 567 -a 0 -x {21.0 3.0 276 ------- null} h -t 28.6978 -s 1 -d 3 -p ack -e 40 -c 0 -i 567 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.6994 -s 28 -d 1 -p ack -e 40 -c 0 -i 568 -a 0 -x {21.0 3.0 277 ------- null} + -t 28.6994 -s 1 -d 3 -p ack -e 40 -c 0 -i 568 -a 0 -x {21.0 3.0 277 ------- null} - -t 28.6994 -s 1 -d 3 -p ack -e 40 -c 0 -i 568 -a 0 -x {21.0 3.0 277 ------- null} h -t 28.6994 -s 1 -d 3 -p ack -e 40 -c 0 -i 568 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.701 -s 28 -d 1 -p ack -e 40 -c 0 -i 569 -a 0 -x {21.0 3.0 278 ------- null} + -t 28.701 -s 1 -d 3 -p ack -e 40 -c 0 -i 569 -a 0 -x {21.0 3.0 278 ------- null} - -t 28.701 -s 1 -d 3 -p ack -e 40 -c 0 -i 569 -a 0 -x {21.0 3.0 278 ------- null} h -t 28.701 -s 1 -d 3 -p ack -e 40 -c 0 -i 569 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.7026 -s 28 -d 1 -p ack -e 40 -c 0 -i 570 -a 0 -x {21.0 3.0 279 ------- null} + -t 28.7026 -s 1 -d 3 -p ack -e 40 -c 0 -i 570 -a 0 -x {21.0 3.0 279 ------- null} - -t 28.7026 -s 1 -d 3 -p ack -e 40 -c 0 -i 570 -a 0 -x {21.0 3.0 279 ------- null} h -t 28.7026 -s 1 -d 3 -p ack -e 40 -c 0 -i 570 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.7042 -s 28 -d 1 -p ack -e 40 -c 0 -i 571 -a 0 -x {21.0 3.0 280 ------- null} + -t 28.7042 -s 1 -d 3 -p ack -e 40 -c 0 -i 571 -a 0 -x {21.0 3.0 280 ------- null} - -t 28.7042 -s 1 -d 3 -p ack -e 40 -c 0 -i 571 -a 0 -x {21.0 3.0 280 ------- null} h -t 28.7042 -s 1 -d 3 -p ack -e 40 -c 0 -i 571 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.7058 -s 28 -d 1 -p ack -e 40 -c 0 -i 572 -a 0 -x {21.0 3.0 281 ------- null} + -t 28.7058 -s 1 -d 3 -p ack -e 40 -c 0 -i 572 -a 0 -x {21.0 3.0 281 ------- null} - -t 28.7058 -s 1 -d 3 -p ack -e 40 -c 0 -i 572 -a 0 -x {21.0 3.0 281 ------- null} h -t 28.7058 -s 1 -d 3 -p ack -e 40 -c 0 -i 572 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.7074 -s 28 -d 1 -p ack -e 40 -c 0 -i 573 -a 0 -x {21.0 3.0 282 ------- null} + -t 28.7074 -s 1 -d 3 -p ack -e 40 -c 0 -i 573 -a 0 -x {21.0 3.0 282 ------- null} - -t 28.7074 -s 1 -d 3 -p ack -e 40 -c 0 -i 573 -a 0 -x {21.0 3.0 282 ------- null} h -t 28.7074 -s 1 -d 3 -p ack -e 40 -c 0 -i 573 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.709 -s 28 -d 1 -p ack -e 40 -c 0 -i 574 -a 0 -x {21.0 3.0 283 ------- null} + -t 28.709 -s 1 -d 3 -p ack -e 40 -c 0 -i 574 -a 0 -x {21.0 3.0 283 ------- null} - -t 28.709 -s 1 -d 3 -p ack -e 40 -c 0 -i 574 -a 0 -x {21.0 3.0 283 ------- null} h -t 28.709 -s 1 -d 3 -p ack -e 40 -c 0 -i 574 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.7106 -s 28 -d 1 -p ack -e 40 -c 0 -i 575 -a 0 -x {21.0 3.0 284 ------- null} + -t 28.7106 -s 1 -d 3 -p ack -e 40 -c 0 -i 575 -a 0 -x {21.0 3.0 284 ------- null} - -t 28.7106 -s 1 -d 3 -p ack -e 40 -c 0 -i 575 -a 0 -x {21.0 3.0 284 ------- null} h -t 28.7106 -s 1 -d 3 -p ack -e 40 -c 0 -i 575 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.7122 -s 28 -d 1 -p ack -e 40 -c 0 -i 576 -a 0 -x {21.0 3.0 285 ------- null} + -t 28.7122 -s 1 -d 3 -p ack -e 40 -c 0 -i 576 -a 0 -x {21.0 3.0 285 ------- null} - -t 28.7122 -s 1 -d 3 -p ack -e 40 -c 0 -i 576 -a 0 -x {21.0 3.0 285 ------- null} h -t 28.7122 -s 1 -d 3 -p ack -e 40 -c 0 -i 576 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.7138 -s 28 -d 1 -p ack -e 40 -c 0 -i 577 -a 0 -x {21.0 3.0 286 ------- null} + -t 28.7138 -s 1 -d 3 -p ack -e 40 -c 0 -i 577 -a 0 -x {21.0 3.0 286 ------- null} - -t 28.7138 -s 1 -d 3 -p ack -e 40 -c 0 -i 577 -a 0 -x {21.0 3.0 286 ------- null} h -t 28.7138 -s 1 -d 3 -p ack -e 40 -c 0 -i 577 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.7154 -s 28 -d 1 -p ack -e 40 -c 0 -i 578 -a 0 -x {21.0 3.0 287 ------- null} + -t 28.7154 -s 1 -d 3 -p ack -e 40 -c 0 -i 578 -a 0 -x {21.0 3.0 287 ------- null} - -t 28.7154 -s 1 -d 3 -p ack -e 40 -c 0 -i 578 -a 0 -x {21.0 3.0 287 ------- null} h -t 28.7154 -s 1 -d 3 -p ack -e 40 -c 0 -i 578 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.717 -s 28 -d 1 -p ack -e 40 -c 0 -i 579 -a 0 -x {21.0 3.0 288 ------- null} + -t 28.717 -s 1 -d 3 -p ack -e 40 -c 0 -i 579 -a 0 -x {21.0 3.0 288 ------- null} - -t 28.717 -s 1 -d 3 -p ack -e 40 -c 0 -i 579 -a 0 -x {21.0 3.0 288 ------- null} h -t 28.717 -s 1 -d 3 -p ack -e 40 -c 0 -i 579 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.7186 -s 28 -d 1 -p ack -e 40 -c 0 -i 580 -a 0 -x {21.0 3.0 289 ------- null} + -t 28.7186 -s 1 -d 3 -p ack -e 40 -c 0 -i 580 -a 0 -x {21.0 3.0 289 ------- null} - -t 28.7186 -s 1 -d 3 -p ack -e 40 -c 0 -i 580 -a 0 -x {21.0 3.0 289 ------- null} h -t 28.7186 -s 1 -d 3 -p ack -e 40 -c 0 -i 580 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.7202 -s 28 -d 1 -p ack -e 40 -c 0 -i 581 -a 0 -x {21.0 3.0 290 ------- null} + -t 28.7202 -s 1 -d 3 -p ack -e 40 -c 0 -i 581 -a 0 -x {21.0 3.0 290 ------- null} - -t 28.7202 -s 1 -d 3 -p ack -e 40 -c 0 -i 581 -a 0 -x {21.0 3.0 290 ------- null} h -t 28.7202 -s 1 -d 3 -p ack -e 40 -c 0 -i 581 -a 0 -x {21.0 3.0 -1 ------- null} r -t 28.8299 -s 1 -d 3 -p ack -e 40 -c 0 -i 562 -a 0 -x {21.0 3.0 271 ------- null} + -t 28.8299 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 582 -a 0 -x {3.0 21.0 291 ------- null} - -t 28.8299 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 582 -a 0 -x {3.0 21.0 291 ------- null} h -t 28.8299 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 582 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.8315 -s 1 -d 3 -p ack -e 40 -c 0 -i 563 -a 0 -x {21.0 3.0 272 ------- null} + -t 28.8315 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {3.0 21.0 292 ------- null} - -t 28.8315 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {3.0 21.0 292 ------- null} h -t 28.8315 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.8331 -s 1 -d 3 -p ack -e 40 -c 0 -i 564 -a 0 -x {21.0 3.0 273 ------- null} + -t 28.8331 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 584 -a 0 -x {3.0 21.0 293 ------- null} - -t 28.8331 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 584 -a 0 -x {3.0 21.0 293 ------- null} h -t 28.8331 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 584 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.8347 -s 1 -d 3 -p ack -e 40 -c 0 -i 565 -a 0 -x {21.0 3.0 274 ------- null} + -t 28.8347 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {3.0 21.0 294 ------- null} - -t 28.8347 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {3.0 21.0 294 ------- null} h -t 28.8347 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.8363 -s 1 -d 3 -p ack -e 40 -c 0 -i 566 -a 0 -x {21.0 3.0 275 ------- null} + -t 28.8363 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 586 -a 0 -x {3.0 21.0 295 ------- null} - -t 28.8363 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 586 -a 0 -x {3.0 21.0 295 ------- null} h -t 28.8363 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 586 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.8379 -s 1 -d 3 -p ack -e 40 -c 0 -i 567 -a 0 -x {21.0 3.0 276 ------- null} + -t 28.8379 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {3.0 21.0 296 ------- null} - -t 28.8379 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {3.0 21.0 296 ------- null} h -t 28.8379 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.8395 -s 1 -d 3 -p ack -e 40 -c 0 -i 568 -a 0 -x {21.0 3.0 277 ------- null} + -t 28.8395 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 588 -a 0 -x {3.0 21.0 297 ------- null} - -t 28.8395 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 588 -a 0 -x {3.0 21.0 297 ------- null} h -t 28.8395 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 588 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.8411 -s 1 -d 3 -p ack -e 40 -c 0 -i 569 -a 0 -x {21.0 3.0 278 ------- null} + -t 28.8411 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {3.0 21.0 298 ------- null} - -t 28.8411 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {3.0 21.0 298 ------- null} h -t 28.8411 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.8427 -s 1 -d 3 -p ack -e 40 -c 0 -i 570 -a 0 -x {21.0 3.0 279 ------- null} + -t 28.8427 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 590 -a 0 -x {3.0 21.0 299 ------- null} - -t 28.8427 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 590 -a 0 -x {3.0 21.0 299 ------- null} h -t 28.8427 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 590 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.8443 -s 1 -d 3 -p ack -e 40 -c 0 -i 571 -a 0 -x {21.0 3.0 280 ------- null} + -t 28.8443 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {3.0 21.0 300 ------- null} - -t 28.8443 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {3.0 21.0 300 ------- null} h -t 28.8443 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.8459 -s 1 -d 3 -p ack -e 40 -c 0 -i 572 -a 0 -x {21.0 3.0 281 ------- null} + -t 28.8459 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 592 -a 0 -x {3.0 21.0 301 ------- null} - -t 28.8459 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 592 -a 0 -x {3.0 21.0 301 ------- null} h -t 28.8459 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 592 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.8475 -s 1 -d 3 -p ack -e 40 -c 0 -i 573 -a 0 -x {21.0 3.0 282 ------- null} + -t 28.8475 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {3.0 21.0 302 ------- null} - -t 28.8475 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {3.0 21.0 302 ------- null} h -t 28.8475 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.8491 -s 1 -d 3 -p ack -e 40 -c 0 -i 574 -a 0 -x {21.0 3.0 283 ------- null} + -t 28.8491 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 594 -a 0 -x {3.0 21.0 303 ------- null} - -t 28.8491 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 594 -a 0 -x {3.0 21.0 303 ------- null} h -t 28.8491 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 594 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.8507 -s 1 -d 3 -p ack -e 40 -c 0 -i 575 -a 0 -x {21.0 3.0 284 ------- null} + -t 28.8507 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {3.0 21.0 304 ------- null} - -t 28.8507 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {3.0 21.0 304 ------- null} h -t 28.8507 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.8523 -s 1 -d 3 -p ack -e 40 -c 0 -i 576 -a 0 -x {21.0 3.0 285 ------- null} + -t 28.8523 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 596 -a 0 -x {3.0 21.0 305 ------- null} - -t 28.8523 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 596 -a 0 -x {3.0 21.0 305 ------- null} h -t 28.8523 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 596 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.8539 -s 1 -d 3 -p ack -e 40 -c 0 -i 577 -a 0 -x {21.0 3.0 286 ------- null} + -t 28.8539 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {3.0 21.0 306 ------- null} - -t 28.8539 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {3.0 21.0 306 ------- null} h -t 28.8539 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.8555 -s 1 -d 3 -p ack -e 40 -c 0 -i 578 -a 0 -x {21.0 3.0 287 ------- null} + -t 28.8555 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 598 -a 0 -x {3.0 21.0 307 ------- null} - -t 28.8555 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 598 -a 0 -x {3.0 21.0 307 ------- null} h -t 28.8555 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 598 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.8571 -s 1 -d 3 -p ack -e 40 -c 0 -i 579 -a 0 -x {21.0 3.0 288 ------- null} + -t 28.8571 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {3.0 21.0 308 ------- null} - -t 28.8571 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {3.0 21.0 308 ------- null} h -t 28.8571 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.8587 -s 1 -d 3 -p ack -e 40 -c 0 -i 580 -a 0 -x {21.0 3.0 289 ------- null} + -t 28.8587 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 600 -a 0 -x {3.0 21.0 309 ------- null} - -t 28.8587 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 600 -a 0 -x {3.0 21.0 309 ------- null} h -t 28.8587 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 600 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.8603 -s 1 -d 3 -p ack -e 40 -c 0 -i 581 -a 0 -x {21.0 3.0 290 ------- null} + -t 28.8603 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {3.0 21.0 310 ------- null} - -t 28.8603 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {3.0 21.0 310 ------- null} h -t 28.8603 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.9715 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 582 -a 0 -x {3.0 21.0 291 ------- null} + -t 28.9715 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 582 -a 0 -x {3.0 21.0 291 ------- null} - -t 28.9715 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 582 -a 0 -x {3.0 21.0 291 ------- null} h -t 28.9715 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 582 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.9731 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {3.0 21.0 292 ------- null} + -t 28.9731 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {3.0 21.0 292 ------- null} - -t 28.9731 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {3.0 21.0 292 ------- null} h -t 28.9731 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.9747 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 584 -a 0 -x {3.0 21.0 293 ------- null} + -t 28.9747 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 584 -a 0 -x {3.0 21.0 293 ------- null} - -t 28.9747 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 584 -a 0 -x {3.0 21.0 293 ------- null} h -t 28.9747 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 584 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.9763 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {3.0 21.0 294 ------- null} + -t 28.9763 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {3.0 21.0 294 ------- null} - -t 28.9763 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {3.0 21.0 294 ------- null} h -t 28.9763 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.9779 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 586 -a 0 -x {3.0 21.0 295 ------- null} + -t 28.9779 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 586 -a 0 -x {3.0 21.0 295 ------- null} - -t 28.9779 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 586 -a 0 -x {3.0 21.0 295 ------- null} h -t 28.9779 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 586 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.9795 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {3.0 21.0 296 ------- null} + -t 28.9795 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {3.0 21.0 296 ------- null} - -t 28.9795 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {3.0 21.0 296 ------- null} h -t 28.9795 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.9811 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 588 -a 0 -x {3.0 21.0 297 ------- null} + -t 28.9811 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 588 -a 0 -x {3.0 21.0 297 ------- null} - -t 28.9811 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 588 -a 0 -x {3.0 21.0 297 ------- null} h -t 28.9811 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 588 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.9827 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {3.0 21.0 298 ------- null} + -t 28.9827 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {3.0 21.0 298 ------- null} - -t 28.9827 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {3.0 21.0 298 ------- null} h -t 28.9827 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.9843 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 590 -a 0 -x {3.0 21.0 299 ------- null} + -t 28.9843 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 590 -a 0 -x {3.0 21.0 299 ------- null} - -t 28.9843 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 590 -a 0 -x {3.0 21.0 299 ------- null} h -t 28.9843 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 590 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.9859 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {3.0 21.0 300 ------- null} + -t 28.9859 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {3.0 21.0 300 ------- null} - -t 28.9859 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {3.0 21.0 300 ------- null} h -t 28.9859 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.9875 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 592 -a 0 -x {3.0 21.0 301 ------- null} + -t 28.9875 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 592 -a 0 -x {3.0 21.0 301 ------- null} - -t 28.9875 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 592 -a 0 -x {3.0 21.0 301 ------- null} h -t 28.9875 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 592 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.9891 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {3.0 21.0 302 ------- null} + -t 28.9891 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {3.0 21.0 302 ------- null} - -t 28.9891 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {3.0 21.0 302 ------- null} h -t 28.9891 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.9907 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 594 -a 0 -x {3.0 21.0 303 ------- null} + -t 28.9907 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 594 -a 0 -x {3.0 21.0 303 ------- null} - -t 28.9907 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 594 -a 0 -x {3.0 21.0 303 ------- null} h -t 28.9907 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 594 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.9923 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {3.0 21.0 304 ------- null} + -t 28.9923 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {3.0 21.0 304 ------- null} - -t 28.9923 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {3.0 21.0 304 ------- null} h -t 28.9923 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.9939 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 596 -a 0 -x {3.0 21.0 305 ------- null} + -t 28.9939 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 596 -a 0 -x {3.0 21.0 305 ------- null} - -t 28.9939 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 596 -a 0 -x {3.0 21.0 305 ------- null} h -t 28.9939 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 596 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.9955 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {3.0 21.0 306 ------- null} + -t 28.9955 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {3.0 21.0 306 ------- null} - -t 28.9955 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {3.0 21.0 306 ------- null} h -t 28.9955 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.9971 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 598 -a 0 -x {3.0 21.0 307 ------- null} + -t 28.9971 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 598 -a 0 -x {3.0 21.0 307 ------- null} - -t 28.9971 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 598 -a 0 -x {3.0 21.0 307 ------- null} h -t 28.9971 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 598 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.9987 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {3.0 21.0 308 ------- null} + -t 28.9987 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {3.0 21.0 308 ------- null} - -t 28.9987 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {3.0 21.0 308 ------- null} h -t 28.9987 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {3.0 21.0 -1 ------- null} r -t 29.0003 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 600 -a 0 -x {3.0 21.0 309 ------- null} + -t 29.0003 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 600 -a 0 -x {3.0 21.0 309 ------- null} - -t 29.0003 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 600 -a 0 -x {3.0 21.0 309 ------- null} h -t 29.0003 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 600 -a 0 -x {3.0 21.0 -1 ------- null} r -t 29.0019 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {3.0 21.0 310 ------- null} + -t 29.0019 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {3.0 21.0 310 ------- null} - -t 29.0019 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {3.0 21.0 310 ------- null} h -t 29.0019 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {3.0 21.0 -1 ------- null} r -t 29.2731 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 582 -a 0 -x {3.0 21.0 291 ------- null} + -t 29.2731 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 582 -a 0 -x {3.0 21.0 291 ------- null} - -t 29.2731 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 582 -a 0 -x {3.0 21.0 291 ------- null} h -t 29.2731 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 582 -a 0 -x {3.0 21.0 -1 ------- null} r -t 29.2747 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {3.0 21.0 292 ------- null} + -t 29.2747 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {3.0 21.0 292 ------- null} - -t 29.2747 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {3.0 21.0 292 ------- null} h -t 29.2747 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {3.0 21.0 -1 ------- null} r -t 29.2763 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 584 -a 0 -x {3.0 21.0 293 ------- null} + -t 29.2763 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 584 -a 0 -x {3.0 21.0 293 ------- null} - -t 29.2763 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 584 -a 0 -x {3.0 21.0 293 ------- null} h -t 29.2763 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 584 -a 0 -x {3.0 21.0 -1 ------- null} r -t 29.2779 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {3.0 21.0 294 ------- null} + -t 29.2779 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {3.0 21.0 294 ------- null} - -t 29.2779 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {3.0 21.0 294 ------- null} h -t 29.2779 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {3.0 21.0 -1 ------- null} r -t 29.2795 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 586 -a 0 -x {3.0 21.0 295 ------- null} + -t 29.2795 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 586 -a 0 -x {3.0 21.0 295 ------- null} - -t 29.2795 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 586 -a 0 -x {3.0 21.0 295 ------- null} h -t 29.2795 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 586 -a 0 -x {3.0 21.0 -1 ------- null} r -t 29.2811 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {3.0 21.0 296 ------- null} + -t 29.2811 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {3.0 21.0 296 ------- null} - -t 29.2811 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {3.0 21.0 296 ------- null} h -t 29.2811 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {3.0 21.0 -1 ------- null} r -t 29.2827 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 588 -a 0 -x {3.0 21.0 297 ------- null} + -t 29.2827 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 588 -a 0 -x {3.0 21.0 297 ------- null} - -t 29.2827 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 588 -a 0 -x {3.0 21.0 297 ------- null} h -t 29.2827 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 588 -a 0 -x {3.0 21.0 -1 ------- null} r -t 29.2843 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {3.0 21.0 298 ------- null} + -t 29.2843 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {3.0 21.0 298 ------- null} - -t 29.2843 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {3.0 21.0 298 ------- null} h -t 29.2843 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {3.0 21.0 -1 ------- null} r -t 29.2859 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 590 -a 0 -x {3.0 21.0 299 ------- null} + -t 29.2859 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 590 -a 0 -x {3.0 21.0 299 ------- null} - -t 29.2859 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 590 -a 0 -x {3.0 21.0 299 ------- null} h -t 29.2859 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 590 -a 0 -x {3.0 21.0 -1 ------- null} r -t 29.2875 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {3.0 21.0 300 ------- null} + -t 29.2875 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {3.0 21.0 300 ------- null} - -t 29.2875 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {3.0 21.0 300 ------- null} h -t 29.2875 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {3.0 21.0 -1 ------- null} r -t 29.2891 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 592 -a 0 -x {3.0 21.0 301 ------- null} + -t 29.2891 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 592 -a 0 -x {3.0 21.0 301 ------- null} - -t 29.2891 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 592 -a 0 -x {3.0 21.0 301 ------- null} h -t 29.2891 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 592 -a 0 -x {3.0 21.0 -1 ------- null} r -t 29.2907 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {3.0 21.0 302 ------- null} + -t 29.2907 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {3.0 21.0 302 ------- null} - -t 29.2907 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {3.0 21.0 302 ------- null} h -t 29.2907 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {3.0 21.0 -1 ------- null} r -t 29.2923 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 594 -a 0 -x {3.0 21.0 303 ------- null} + -t 29.2923 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 594 -a 0 -x {3.0 21.0 303 ------- null} - -t 29.2923 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 594 -a 0 -x {3.0 21.0 303 ------- null} h -t 29.2923 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 594 -a 0 -x {3.0 21.0 -1 ------- null} r -t 29.2939 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {3.0 21.0 304 ------- null} + -t 29.2939 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {3.0 21.0 304 ------- null} - -t 29.2939 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {3.0 21.0 304 ------- null} h -t 29.2939 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {3.0 21.0 -1 ------- null} r -t 29.2955 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 596 -a 0 -x {3.0 21.0 305 ------- null} + -t 29.2955 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 596 -a 0 -x {3.0 21.0 305 ------- null} - -t 29.2955 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 596 -a 0 -x {3.0 21.0 305 ------- null} h -t 29.2955 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 596 -a 0 -x {3.0 21.0 -1 ------- null} r -t 29.2971 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {3.0 21.0 306 ------- null} + -t 29.2971 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {3.0 21.0 306 ------- null} - -t 29.2971 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {3.0 21.0 306 ------- null} h -t 29.2971 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {3.0 21.0 -1 ------- null} r -t 29.2987 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 598 -a 0 -x {3.0 21.0 307 ------- null} + -t 29.2987 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 598 -a 0 -x {3.0 21.0 307 ------- null} - -t 29.2987 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 598 -a 0 -x {3.0 21.0 307 ------- null} h -t 29.2987 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 598 -a 0 -x {3.0 21.0 -1 ------- null} r -t 29.3003 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {3.0 21.0 308 ------- null} + -t 29.3003 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {3.0 21.0 308 ------- null} - -t 29.3003 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {3.0 21.0 308 ------- null} h -t 29.3003 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {3.0 21.0 -1 ------- null} r -t 29.3019 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 600 -a 0 -x {3.0 21.0 309 ------- null} + -t 29.3019 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 600 -a 0 -x {3.0 21.0 309 ------- null} - -t 29.3019 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 600 -a 0 -x {3.0 21.0 309 ------- null} h -t 29.3019 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 600 -a 0 -x {3.0 21.0 -1 ------- null} r -t 29.3035 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {3.0 21.0 310 ------- null} + -t 29.3035 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {3.0 21.0 310 ------- null} - -t 29.3035 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {3.0 21.0 310 ------- null} h -t 29.3035 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {3.0 21.0 -1 ------- null} r -t 29.6247 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 582 -a 0 -x {3.0 21.0 291 ------- null} + -t 29.6247 -s 21 -d 28 -p ack -e 40 -c 0 -i 602 -a 0 -x {21.0 3.0 291 ------- null} - -t 29.6247 -s 21 -d 28 -p ack -e 40 -c 0 -i 602 -a 0 -x {21.0 3.0 291 ------- null} h -t 29.6247 -s 21 -d 28 -p ack -e 40 -c 0 -i 602 -a 0 -x {21.0 3.0 -1 ------- null} r -t 29.6263 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {3.0 21.0 292 ------- null} + -t 29.6263 -s 21 -d 28 -p ack -e 40 -c 0 -i 603 -a 0 -x {21.0 3.0 292 ------- null} - -t 29.6263 -s 21 -d 28 -p ack -e 40 -c 0 -i 603 -a 0 -x {21.0 3.0 292 ------- null} h -t 29.6263 -s 21 -d 28 -p ack -e 40 -c 0 -i 603 -a 0 -x {21.0 3.0 -1 ------- null} r -t 29.6279 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 584 -a 0 -x {3.0 21.0 293 ------- null} + -t 29.6279 -s 21 -d 28 -p ack -e 40 -c 0 -i 604 -a 0 -x {21.0 3.0 293 ------- null} - -t 29.6279 -s 21 -d 28 -p ack -e 40 -c 0 -i 604 -a 0 -x {21.0 3.0 293 ------- null} h -t 29.6279 -s 21 -d 28 -p ack -e 40 -c 0 -i 604 -a 0 -x {21.0 3.0 -1 ------- null} r -t 29.6295 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {3.0 21.0 294 ------- null} + -t 29.6295 -s 21 -d 28 -p ack -e 40 -c 0 -i 605 -a 0 -x {21.0 3.0 294 ------- null} - -t 29.6295 -s 21 -d 28 -p ack -e 40 -c 0 -i 605 -a 0 -x {21.0 3.0 294 ------- null} h -t 29.6295 -s 21 -d 28 -p ack -e 40 -c 0 -i 605 -a 0 -x {21.0 3.0 -1 ------- null} r -t 29.6311 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 586 -a 0 -x {3.0 21.0 295 ------- null} + -t 29.6311 -s 21 -d 28 -p ack -e 40 -c 0 -i 606 -a 0 -x {21.0 3.0 295 ------- null} - -t 29.6311 -s 21 -d 28 -p ack -e 40 -c 0 -i 606 -a 0 -x {21.0 3.0 295 ------- null} h -t 29.6311 -s 21 -d 28 -p ack -e 40 -c 0 -i 606 -a 0 -x {21.0 3.0 -1 ------- null} r -t 29.6327 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {3.0 21.0 296 ------- null} + -t 29.6327 -s 21 -d 28 -p ack -e 40 -c 0 -i 607 -a 0 -x {21.0 3.0 296 ------- null} - -t 29.6327 -s 21 -d 28 -p ack -e 40 -c 0 -i 607 -a 0 -x {21.0 3.0 296 ------- null} h -t 29.6327 -s 21 -d 28 -p ack -e 40 -c 0 -i 607 -a 0 -x {21.0 3.0 -1 ------- null} r -t 29.6343 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 588 -a 0 -x {3.0 21.0 297 ------- null} + -t 29.6343 -s 21 -d 28 -p ack -e 40 -c 0 -i 608 -a 0 -x {21.0 3.0 297 ------- null} - -t 29.6343 -s 21 -d 28 -p ack -e 40 -c 0 -i 608 -a 0 -x {21.0 3.0 297 ------- null} h -t 29.6343 -s 21 -d 28 -p ack -e 40 -c 0 -i 608 -a 0 -x {21.0 3.0 -1 ------- null} r -t 29.6359 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {3.0 21.0 298 ------- null} + -t 29.6359 -s 21 -d 28 -p ack -e 40 -c 0 -i 609 -a 0 -x {21.0 3.0 298 ------- null} - -t 29.6359 -s 21 -d 28 -p ack -e 40 -c 0 -i 609 -a 0 -x {21.0 3.0 298 ------- null} h -t 29.6359 -s 21 -d 28 -p ack -e 40 -c 0 -i 609 -a 0 -x {21.0 3.0 -1 ------- null} r -t 29.6375 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 590 -a 0 -x {3.0 21.0 299 ------- null} + -t 29.6375 -s 21 -d 28 -p ack -e 40 -c 0 -i 610 -a 0 -x {21.0 3.0 299 ------- null} - -t 29.6375 -s 21 -d 28 -p ack -e 40 -c 0 -i 610 -a 0 -x {21.0 3.0 299 ------- null} h -t 29.6375 -s 21 -d 28 -p ack -e 40 -c 0 -i 610 -a 0 -x {21.0 3.0 -1 ------- null} r -t 29.6391 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {3.0 21.0 300 ------- null} + -t 29.6391 -s 21 -d 28 -p ack -e 40 -c 0 -i 611 -a 0 -x {21.0 3.0 300 ------- null} - -t 29.6391 -s 21 -d 28 -p ack -e 40 -c 0 -i 611 -a 0 -x {21.0 3.0 300 ------- null} h -t 29.6391 -s 21 -d 28 -p ack -e 40 -c 0 -i 611 -a 0 -x {21.0 3.0 -1 ------- null} r -t 29.6407 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 592 -a 0 -x {3.0 21.0 301 ------- null} + -t 29.6407 -s 21 -d 28 -p ack -e 40 -c 0 -i 612 -a 0 -x {21.0 3.0 301 ------- null} - -t 29.6407 -s 21 -d 28 -p ack -e 40 -c 0 -i 612 -a 0 -x {21.0 3.0 301 ------- null} h -t 29.6407 -s 21 -d 28 -p ack -e 40 -c 0 -i 612 -a 0 -x {21.0 3.0 -1 ------- null} r -t 29.6423 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {3.0 21.0 302 ------- null} + -t 29.6423 -s 21 -d 28 -p ack -e 40 -c 0 -i 613 -a 0 -x {21.0 3.0 302 ------- null} - -t 29.6423 -s 21 -d 28 -p ack -e 40 -c 0 -i 613 -a 0 -x {21.0 3.0 302 ------- null} h -t 29.6423 -s 21 -d 28 -p ack -e 40 -c 0 -i 613 -a 0 -x {21.0 3.0 -1 ------- null} r -t 29.6439 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 594 -a 0 -x {3.0 21.0 303 ------- null} + -t 29.6439 -s 21 -d 28 -p ack -e 40 -c 0 -i 614 -a 0 -x {21.0 3.0 303 ------- null} - -t 29.6439 -s 21 -d 28 -p ack -e 40 -c 0 -i 614 -a 0 -x {21.0 3.0 303 ------- null} h -t 29.6439 -s 21 -d 28 -p ack -e 40 -c 0 -i 614 -a 0 -x {21.0 3.0 -1 ------- null} r -t 29.6455 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {3.0 21.0 304 ------- null} + -t 29.6455 -s 21 -d 28 -p ack -e 40 -c 0 -i 615 -a 0 -x {21.0 3.0 304 ------- null} - -t 29.6455 -s 21 -d 28 -p ack -e 40 -c 0 -i 615 -a 0 -x {21.0 3.0 304 ------- null} h -t 29.6455 -s 21 -d 28 -p ack -e 40 -c 0 -i 615 -a 0 -x {21.0 3.0 -1 ------- null} r -t 29.6471 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 596 -a 0 -x {3.0 21.0 305 ------- null} + -t 29.6471 -s 21 -d 28 -p ack -e 40 -c 0 -i 616 -a 0 -x {21.0 3.0 305 ------- null} - -t 29.6471 -s 21 -d 28 -p ack -e 40 -c 0 -i 616 -a 0 -x {21.0 3.0 305 ------- null} h -t 29.6471 -s 21 -d 28 -p ack -e 40 -c 0 -i 616 -a 0 -x {21.0 3.0 -1 ------- null} r -t 29.6487 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {3.0 21.0 306 ------- null} + -t 29.6487 -s 21 -d 28 -p ack -e 40 -c 0 -i 617 -a 0 -x {21.0 3.0 306 ------- null} - -t 29.6487 -s 21 -d 28 -p ack -e 40 -c 0 -i 617 -a 0 -x {21.0 3.0 306 ------- null} h -t 29.6487 -s 21 -d 28 -p ack -e 40 -c 0 -i 617 -a 0 -x {21.0 3.0 -1 ------- null} r -t 29.6503 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 598 -a 0 -x {3.0 21.0 307 ------- null} + -t 29.6503 -s 21 -d 28 -p ack -e 40 -c 0 -i 618 -a 0 -x {21.0 3.0 307 ------- null} - -t 29.6503 -s 21 -d 28 -p ack -e 40 -c 0 -i 618 -a 0 -x {21.0 3.0 307 ------- null} h -t 29.6503 -s 21 -d 28 -p ack -e 40 -c 0 -i 618 -a 0 -x {21.0 3.0 -1 ------- null} r -t 29.6519 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {3.0 21.0 308 ------- null} + -t 29.6519 -s 21 -d 28 -p ack -e 40 -c 0 -i 619 -a 0 -x {21.0 3.0 308 ------- null} - -t 29.6519 -s 21 -d 28 -p ack -e 40 -c 0 -i 619 -a 0 -x {21.0 3.0 308 ------- null} h -t 29.6519 -s 21 -d 28 -p ack -e 40 -c 0 -i 619 -a 0 -x {21.0 3.0 -1 ------- null} r -t 29.6535 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 600 -a 0 -x {3.0 21.0 309 ------- null} + -t 29.6535 -s 21 -d 28 -p ack -e 40 -c 0 -i 620 -a 0 -x {21.0 3.0 309 ------- null} - -t 29.6535 -s 21 -d 28 -p ack -e 40 -c 0 -i 620 -a 0 -x {21.0 3.0 309 ------- null} h -t 29.6535 -s 21 -d 28 -p ack -e 40 -c 0 -i 620 -a 0 -x {21.0 3.0 -1 ------- null} r -t 29.6551 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {3.0 21.0 310 ------- null} + -t 29.6551 -s 21 -d 28 -p ack -e 40 -c 0 -i 621 -a 0 -x {21.0 3.0 310 ------- null} - -t 29.6551 -s 21 -d 28 -p ack -e 40 -c 0 -i 621 -a 0 -x {21.0 3.0 310 ------- null} h -t 29.6551 -s 21 -d 28 -p ack -e 40 -c 0 -i 621 -a 0 -x {21.0 3.0 -1 ------- null} r -t 29.9747 -s 21 -d 28 -p ack -e 40 -c 0 -i 602 -a 0 -x {21.0 3.0 291 ------- null} + -t 29.9747 -s 28 -d 1 -p ack -e 40 -c 0 -i 602 -a 0 -x {21.0 3.0 291 ------- null} - -t 29.9747 -s 28 -d 1 -p ack -e 40 -c 0 -i 602 -a 0 -x {21.0 3.0 291 ------- null} h -t 29.9747 -s 28 -d 1 -p ack -e 40 -c 0 -i 602 -a 0 -x {21.0 3.0 -1 ------- null} r -t 29.9763 -s 21 -d 28 -p ack -e 40 -c 0 -i 603 -a 0 -x {21.0 3.0 292 ------- null} + -t 29.9763 -s 28 -d 1 -p ack -e 40 -c 0 -i 603 -a 0 -x {21.0 3.0 292 ------- null} - -t 29.9763 -s 28 -d 1 -p ack -e 40 -c 0 -i 603 -a 0 -x {21.0 3.0 292 ------- null} h -t 29.9763 -s 28 -d 1 -p ack -e 40 -c 0 -i 603 -a 0 -x {21.0 3.0 -1 ------- null} r -t 29.9779 -s 21 -d 28 -p ack -e 40 -c 0 -i 604 -a 0 -x {21.0 3.0 293 ------- null} + -t 29.9779 -s 28 -d 1 -p ack -e 40 -c 0 -i 604 -a 0 -x {21.0 3.0 293 ------- null} - -t 29.9779 -s 28 -d 1 -p ack -e 40 -c 0 -i 604 -a 0 -x {21.0 3.0 293 ------- null} h -t 29.9779 -s 28 -d 1 -p ack -e 40 -c 0 -i 604 -a 0 -x {21.0 3.0 -1 ------- null} r -t 29.9795 -s 21 -d 28 -p ack -e 40 -c 0 -i 605 -a 0 -x {21.0 3.0 294 ------- null} + -t 29.9795 -s 28 -d 1 -p ack -e 40 -c 0 -i 605 -a 0 -x {21.0 3.0 294 ------- null} - -t 29.9795 -s 28 -d 1 -p ack -e 40 -c 0 -i 605 -a 0 -x {21.0 3.0 294 ------- null} h -t 29.9795 -s 28 -d 1 -p ack -e 40 -c 0 -i 605 -a 0 -x {21.0 3.0 -1 ------- null} r -t 29.9811 -s 21 -d 28 -p ack -e 40 -c 0 -i 606 -a 0 -x {21.0 3.0 295 ------- null} + -t 29.9811 -s 28 -d 1 -p ack -e 40 -c 0 -i 606 -a 0 -x {21.0 3.0 295 ------- null} - -t 29.9811 -s 28 -d 1 -p ack -e 40 -c 0 -i 606 -a 0 -x {21.0 3.0 295 ------- null} h -t 29.9811 -s 28 -d 1 -p ack -e 40 -c 0 -i 606 -a 0 -x {21.0 3.0 -1 ------- null} r -t 29.9827 -s 21 -d 28 -p ack -e 40 -c 0 -i 607 -a 0 -x {21.0 3.0 296 ------- null} + -t 29.9827 -s 28 -d 1 -p ack -e 40 -c 0 -i 607 -a 0 -x {21.0 3.0 296 ------- null} - -t 29.9827 -s 28 -d 1 -p ack -e 40 -c 0 -i 607 -a 0 -x {21.0 3.0 296 ------- null} h -t 29.9827 -s 28 -d 1 -p ack -e 40 -c 0 -i 607 -a 0 -x {21.0 3.0 -1 ------- null} r -t 29.9843 -s 21 -d 28 -p ack -e 40 -c 0 -i 608 -a 0 -x {21.0 3.0 297 ------- null} + -t 29.9843 -s 28 -d 1 -p ack -e 40 -c 0 -i 608 -a 0 -x {21.0 3.0 297 ------- null} - -t 29.9843 -s 28 -d 1 -p ack -e 40 -c 0 -i 608 -a 0 -x {21.0 3.0 297 ------- null} h -t 29.9843 -s 28 -d 1 -p ack -e 40 -c 0 -i 608 -a 0 -x {21.0 3.0 -1 ------- null} r -t 29.9859 -s 21 -d 28 -p ack -e 40 -c 0 -i 609 -a 0 -x {21.0 3.0 298 ------- null} + -t 29.9859 -s 28 -d 1 -p ack -e 40 -c 0 -i 609 -a 0 -x {21.0 3.0 298 ------- null} - -t 29.9859 -s 28 -d 1 -p ack -e 40 -c 0 -i 609 -a 0 -x {21.0 3.0 298 ------- null} h -t 29.9859 -s 28 -d 1 -p ack -e 40 -c 0 -i 609 -a 0 -x {21.0 3.0 -1 ------- null} r -t 29.9875 -s 21 -d 28 -p ack -e 40 -c 0 -i 610 -a 0 -x {21.0 3.0 299 ------- null} + -t 29.9875 -s 28 -d 1 -p ack -e 40 -c 0 -i 610 -a 0 -x {21.0 3.0 299 ------- null} - -t 29.9875 -s 28 -d 1 -p ack -e 40 -c 0 -i 610 -a 0 -x {21.0 3.0 299 ------- null} h -t 29.9875 -s 28 -d 1 -p ack -e 40 -c 0 -i 610 -a 0 -x {21.0 3.0 -1 ------- null} r -t 29.9891 -s 21 -d 28 -p ack -e 40 -c 0 -i 611 -a 0 -x {21.0 3.0 300 ------- null} + -t 29.9891 -s 28 -d 1 -p ack -e 40 -c 0 -i 611 -a 0 -x {21.0 3.0 300 ------- null} - -t 29.9891 -s 28 -d 1 -p ack -e 40 -c 0 -i 611 -a 0 -x {21.0 3.0 300 ------- null} h -t 29.9891 -s 28 -d 1 -p ack -e 40 -c 0 -i 611 -a 0 -x {21.0 3.0 -1 ------- null} r -t 29.9907 -s 21 -d 28 -p ack -e 40 -c 0 -i 612 -a 0 -x {21.0 3.0 301 ------- null} + -t 29.9907 -s 28 -d 1 -p ack -e 40 -c 0 -i 612 -a 0 -x {21.0 3.0 301 ------- null} - -t 29.9907 -s 28 -d 1 -p ack -e 40 -c 0 -i 612 -a 0 -x {21.0 3.0 301 ------- null} h -t 29.9907 -s 28 -d 1 -p ack -e 40 -c 0 -i 612 -a 0 -x {21.0 3.0 -1 ------- null} r -t 29.9923 -s 21 -d 28 -p ack -e 40 -c 0 -i 613 -a 0 -x {21.0 3.0 302 ------- null} + -t 29.9923 -s 28 -d 1 -p ack -e 40 -c 0 -i 613 -a 0 -x {21.0 3.0 302 ------- null} - -t 29.9923 -s 28 -d 1 -p ack -e 40 -c 0 -i 613 -a 0 -x {21.0 3.0 302 ------- null} h -t 29.9923 -s 28 -d 1 -p ack -e 40 -c 0 -i 613 -a 0 -x {21.0 3.0 -1 ------- null} r -t 29.9939 -s 21 -d 28 -p ack -e 40 -c 0 -i 614 -a 0 -x {21.0 3.0 303 ------- null} + -t 29.9939 -s 28 -d 1 -p ack -e 40 -c 0 -i 614 -a 0 -x {21.0 3.0 303 ------- null} - -t 29.9939 -s 28 -d 1 -p ack -e 40 -c 0 -i 614 -a 0 -x {21.0 3.0 303 ------- null} h -t 29.9939 -s 28 -d 1 -p ack -e 40 -c 0 -i 614 -a 0 -x {21.0 3.0 -1 ------- null} r -t 29.9955 -s 21 -d 28 -p ack -e 40 -c 0 -i 615 -a 0 -x {21.0 3.0 304 ------- null} + -t 29.9955 -s 28 -d 1 -p ack -e 40 -c 0 -i 615 -a 0 -x {21.0 3.0 304 ------- null} - -t 29.9955 -s 28 -d 1 -p ack -e 40 -c 0 -i 615 -a 0 -x {21.0 3.0 304 ------- null} h -t 29.9955 -s 28 -d 1 -p ack -e 40 -c 0 -i 615 -a 0 -x {21.0 3.0 -1 ------- null} r -t 29.9971 -s 21 -d 28 -p ack -e 40 -c 0 -i 616 -a 0 -x {21.0 3.0 305 ------- null} + -t 29.9971 -s 28 -d 1 -p ack -e 40 -c 0 -i 616 -a 0 -x {21.0 3.0 305 ------- null} - -t 29.9971 -s 28 -d 1 -p ack -e 40 -c 0 -i 616 -a 0 -x {21.0 3.0 305 ------- null} h -t 29.9971 -s 28 -d 1 -p ack -e 40 -c 0 -i 616 -a 0 -x {21.0 3.0 -1 ------- null} r -t 29.9987 -s 21 -d 28 -p ack -e 40 -c 0 -i 617 -a 0 -x {21.0 3.0 306 ------- null} + -t 29.9987 -s 28 -d 1 -p ack -e 40 -c 0 -i 617 -a 0 -x {21.0 3.0 306 ------- null} - -t 29.9987 -s 28 -d 1 -p ack -e 40 -c 0 -i 617 -a 0 -x {21.0 3.0 306 ------- null} h -t 29.9987 -s 28 -d 1 -p ack -e 40 -c 0 -i 617 -a 0 -x {21.0 3.0 -1 ------- null} r -t 30.0003 -s 21 -d 28 -p ack -e 40 -c 0 -i 618 -a 0 -x {21.0 3.0 307 ------- null} + -t 30.0003 -s 28 -d 1 -p ack -e 40 -c 0 -i 618 -a 0 -x {21.0 3.0 307 ------- null} - -t 30.0003 -s 28 -d 1 -p ack -e 40 -c 0 -i 618 -a 0 -x {21.0 3.0 307 ------- null} h -t 30.0003 -s 28 -d 1 -p ack -e 40 -c 0 -i 618 -a 0 -x {21.0 3.0 -1 ------- null} r -t 30.0019 -s 21 -d 28 -p ack -e 40 -c 0 -i 619 -a 0 -x {21.0 3.0 308 ------- null} + -t 30.0019 -s 28 -d 1 -p ack -e 40 -c 0 -i 619 -a 0 -x {21.0 3.0 308 ------- null} - -t 30.0019 -s 28 -d 1 -p ack -e 40 -c 0 -i 619 -a 0 -x {21.0 3.0 308 ------- null} h -t 30.0019 -s 28 -d 1 -p ack -e 40 -c 0 -i 619 -a 0 -x {21.0 3.0 -1 ------- null} r -t 30.0035 -s 21 -d 28 -p ack -e 40 -c 0 -i 620 -a 0 -x {21.0 3.0 309 ------- null} + -t 30.0035 -s 28 -d 1 -p ack -e 40 -c 0 -i 620 -a 0 -x {21.0 3.0 309 ------- null} - -t 30.0035 -s 28 -d 1 -p ack -e 40 -c 0 -i 620 -a 0 -x {21.0 3.0 309 ------- null} h -t 30.0035 -s 28 -d 1 -p ack -e 40 -c 0 -i 620 -a 0 -x {21.0 3.0 -1 ------- null} r -t 30.0051 -s 21 -d 28 -p ack -e 40 -c 0 -i 621 -a 0 -x {21.0 3.0 310 ------- null} + -t 30.0051 -s 28 -d 1 -p ack -e 40 -c 0 -i 621 -a 0 -x {21.0 3.0 310 ------- null} - -t 30.0051 -s 28 -d 1 -p ack -e 40 -c 0 -i 621 -a 0 -x {21.0 3.0 310 ------- null} h -t 30.0051 -s 28 -d 1 -p ack -e 40 -c 0 -i 621 -a 0 -x {21.0 3.0 -1 ------- null} r -t 30.2748 -s 28 -d 1 -p ack -e 40 -c 0 -i 602 -a 0 -x {21.0 3.0 291 ------- null} + -t 30.2748 -s 1 -d 3 -p ack -e 40 -c 0 -i 602 -a 0 -x {21.0 3.0 291 ------- null} - -t 30.2748 -s 1 -d 3 -p ack -e 40 -c 0 -i 602 -a 0 -x {21.0 3.0 291 ------- null} h -t 30.2748 -s 1 -d 3 -p ack -e 40 -c 0 -i 602 -a 0 -x {21.0 3.0 -1 ------- null} r -t 30.2764 -s 28 -d 1 -p ack -e 40 -c 0 -i 603 -a 0 -x {21.0 3.0 292 ------- null} + -t 30.2764 -s 1 -d 3 -p ack -e 40 -c 0 -i 603 -a 0 -x {21.0 3.0 292 ------- null} - -t 30.2764 -s 1 -d 3 -p ack -e 40 -c 0 -i 603 -a 0 -x {21.0 3.0 292 ------- null} h -t 30.2764 -s 1 -d 3 -p ack -e 40 -c 0 -i 603 -a 0 -x {21.0 3.0 -1 ------- null} r -t 30.278 -s 28 -d 1 -p ack -e 40 -c 0 -i 604 -a 0 -x {21.0 3.0 293 ------- null} + -t 30.278 -s 1 -d 3 -p ack -e 40 -c 0 -i 604 -a 0 -x {21.0 3.0 293 ------- null} - -t 30.278 -s 1 -d 3 -p ack -e 40 -c 0 -i 604 -a 0 -x {21.0 3.0 293 ------- null} h -t 30.278 -s 1 -d 3 -p ack -e 40 -c 0 -i 604 -a 0 -x {21.0 3.0 -1 ------- null} r -t 30.2796 -s 28 -d 1 -p ack -e 40 -c 0 -i 605 -a 0 -x {21.0 3.0 294 ------- null} + -t 30.2796 -s 1 -d 3 -p ack -e 40 -c 0 -i 605 -a 0 -x {21.0 3.0 294 ------- null} - -t 30.2796 -s 1 -d 3 -p ack -e 40 -c 0 -i 605 -a 0 -x {21.0 3.0 294 ------- null} h -t 30.2796 -s 1 -d 3 -p ack -e 40 -c 0 -i 605 -a 0 -x {21.0 3.0 -1 ------- null} r -t 30.2812 -s 28 -d 1 -p ack -e 40 -c 0 -i 606 -a 0 -x {21.0 3.0 295 ------- null} + -t 30.2812 -s 1 -d 3 -p ack -e 40 -c 0 -i 606 -a 0 -x {21.0 3.0 295 ------- null} - -t 30.2812 -s 1 -d 3 -p ack -e 40 -c 0 -i 606 -a 0 -x {21.0 3.0 295 ------- null} h -t 30.2812 -s 1 -d 3 -p ack -e 40 -c 0 -i 606 -a 0 -x {21.0 3.0 -1 ------- null} r -t 30.2828 -s 28 -d 1 -p ack -e 40 -c 0 -i 607 -a 0 -x {21.0 3.0 296 ------- null} + -t 30.2828 -s 1 -d 3 -p ack -e 40 -c 0 -i 607 -a 0 -x {21.0 3.0 296 ------- null} - -t 30.2828 -s 1 -d 3 -p ack -e 40 -c 0 -i 607 -a 0 -x {21.0 3.0 296 ------- null} h -t 30.2828 -s 1 -d 3 -p ack -e 40 -c 0 -i 607 -a 0 -x {21.0 3.0 -1 ------- null} r -t 30.2844 -s 28 -d 1 -p ack -e 40 -c 0 -i 608 -a 0 -x {21.0 3.0 297 ------- null} + -t 30.2844 -s 1 -d 3 -p ack -e 40 -c 0 -i 608 -a 0 -x {21.0 3.0 297 ------- null} - -t 30.2844 -s 1 -d 3 -p ack -e 40 -c 0 -i 608 -a 0 -x {21.0 3.0 297 ------- null} h -t 30.2844 -s 1 -d 3 -p ack -e 40 -c 0 -i 608 -a 0 -x {21.0 3.0 -1 ------- null} r -t 30.286 -s 28 -d 1 -p ack -e 40 -c 0 -i 609 -a 0 -x {21.0 3.0 298 ------- null} + -t 30.286 -s 1 -d 3 -p ack -e 40 -c 0 -i 609 -a 0 -x {21.0 3.0 298 ------- null} - -t 30.286 -s 1 -d 3 -p ack -e 40 -c 0 -i 609 -a 0 -x {21.0 3.0 298 ------- null} h -t 30.286 -s 1 -d 3 -p ack -e 40 -c 0 -i 609 -a 0 -x {21.0 3.0 -1 ------- null} r -t 30.2876 -s 28 -d 1 -p ack -e 40 -c 0 -i 610 -a 0 -x {21.0 3.0 299 ------- null} + -t 30.2876 -s 1 -d 3 -p ack -e 40 -c 0 -i 610 -a 0 -x {21.0 3.0 299 ------- null} - -t 30.2876 -s 1 -d 3 -p ack -e 40 -c 0 -i 610 -a 0 -x {21.0 3.0 299 ------- null} h -t 30.2876 -s 1 -d 3 -p ack -e 40 -c 0 -i 610 -a 0 -x {21.0 3.0 -1 ------- null} r -t 30.2892 -s 28 -d 1 -p ack -e 40 -c 0 -i 611 -a 0 -x {21.0 3.0 300 ------- null} + -t 30.2892 -s 1 -d 3 -p ack -e 40 -c 0 -i 611 -a 0 -x {21.0 3.0 300 ------- null} - -t 30.2892 -s 1 -d 3 -p ack -e 40 -c 0 -i 611 -a 0 -x {21.0 3.0 300 ------- null} h -t 30.2892 -s 1 -d 3 -p ack -e 40 -c 0 -i 611 -a 0 -x {21.0 3.0 -1 ------- null} r -t 30.2908 -s 28 -d 1 -p ack -e 40 -c 0 -i 612 -a 0 -x {21.0 3.0 301 ------- null} + -t 30.2908 -s 1 -d 3 -p ack -e 40 -c 0 -i 612 -a 0 -x {21.0 3.0 301 ------- null} - -t 30.2908 -s 1 -d 3 -p ack -e 40 -c 0 -i 612 -a 0 -x {21.0 3.0 301 ------- null} h -t 30.2908 -s 1 -d 3 -p ack -e 40 -c 0 -i 612 -a 0 -x {21.0 3.0 -1 ------- null} r -t 30.2924 -s 28 -d 1 -p ack -e 40 -c 0 -i 613 -a 0 -x {21.0 3.0 302 ------- null} + -t 30.2924 -s 1 -d 3 -p ack -e 40 -c 0 -i 613 -a 0 -x {21.0 3.0 302 ------- null} - -t 30.2924 -s 1 -d 3 -p ack -e 40 -c 0 -i 613 -a 0 -x {21.0 3.0 302 ------- null} h -t 30.2924 -s 1 -d 3 -p ack -e 40 -c 0 -i 613 -a 0 -x {21.0 3.0 -1 ------- null} r -t 30.294 -s 28 -d 1 -p ack -e 40 -c 0 -i 614 -a 0 -x {21.0 3.0 303 ------- null} + -t 30.294 -s 1 -d 3 -p ack -e 40 -c 0 -i 614 -a 0 -x {21.0 3.0 303 ------- null} - -t 30.294 -s 1 -d 3 -p ack -e 40 -c 0 -i 614 -a 0 -x {21.0 3.0 303 ------- null} h -t 30.294 -s 1 -d 3 -p ack -e 40 -c 0 -i 614 -a 0 -x {21.0 3.0 -1 ------- null} r -t 30.2956 -s 28 -d 1 -p ack -e 40 -c 0 -i 615 -a 0 -x {21.0 3.0 304 ------- null} + -t 30.2956 -s 1 -d 3 -p ack -e 40 -c 0 -i 615 -a 0 -x {21.0 3.0 304 ------- null} - -t 30.2956 -s 1 -d 3 -p ack -e 40 -c 0 -i 615 -a 0 -x {21.0 3.0 304 ------- null} h -t 30.2956 -s 1 -d 3 -p ack -e 40 -c 0 -i 615 -a 0 -x {21.0 3.0 -1 ------- null} r -t 30.2972 -s 28 -d 1 -p ack -e 40 -c 0 -i 616 -a 0 -x {21.0 3.0 305 ------- null} + -t 30.2972 -s 1 -d 3 -p ack -e 40 -c 0 -i 616 -a 0 -x {21.0 3.0 305 ------- null} - -t 30.2972 -s 1 -d 3 -p ack -e 40 -c 0 -i 616 -a 0 -x {21.0 3.0 305 ------- null} h -t 30.2972 -s 1 -d 3 -p ack -e 40 -c 0 -i 616 -a 0 -x {21.0 3.0 -1 ------- null} r -t 30.2988 -s 28 -d 1 -p ack -e 40 -c 0 -i 617 -a 0 -x {21.0 3.0 306 ------- null} + -t 30.2988 -s 1 -d 3 -p ack -e 40 -c 0 -i 617 -a 0 -x {21.0 3.0 306 ------- null} - -t 30.2988 -s 1 -d 3 -p ack -e 40 -c 0 -i 617 -a 0 -x {21.0 3.0 306 ------- null} h -t 30.2988 -s 1 -d 3 -p ack -e 40 -c 0 -i 617 -a 0 -x {21.0 3.0 -1 ------- null} r -t 30.3004 -s 28 -d 1 -p ack -e 40 -c 0 -i 618 -a 0 -x {21.0 3.0 307 ------- null} + -t 30.3004 -s 1 -d 3 -p ack -e 40 -c 0 -i 618 -a 0 -x {21.0 3.0 307 ------- null} - -t 30.3004 -s 1 -d 3 -p ack -e 40 -c 0 -i 618 -a 0 -x {21.0 3.0 307 ------- null} h -t 30.3004 -s 1 -d 3 -p ack -e 40 -c 0 -i 618 -a 0 -x {21.0 3.0 -1 ------- null} r -t 30.302 -s 28 -d 1 -p ack -e 40 -c 0 -i 619 -a 0 -x {21.0 3.0 308 ------- null} + -t 30.302 -s 1 -d 3 -p ack -e 40 -c 0 -i 619 -a 0 -x {21.0 3.0 308 ------- null} - -t 30.302 -s 1 -d 3 -p ack -e 40 -c 0 -i 619 -a 0 -x {21.0 3.0 308 ------- null} h -t 30.302 -s 1 -d 3 -p ack -e 40 -c 0 -i 619 -a 0 -x {21.0 3.0 -1 ------- null} r -t 30.3036 -s 28 -d 1 -p ack -e 40 -c 0 -i 620 -a 0 -x {21.0 3.0 309 ------- null} + -t 30.3036 -s 1 -d 3 -p ack -e 40 -c 0 -i 620 -a 0 -x {21.0 3.0 309 ------- null} - -t 30.3036 -s 1 -d 3 -p ack -e 40 -c 0 -i 620 -a 0 -x {21.0 3.0 309 ------- null} h -t 30.3036 -s 1 -d 3 -p ack -e 40 -c 0 -i 620 -a 0 -x {21.0 3.0 -1 ------- null} r -t 30.3052 -s 28 -d 1 -p ack -e 40 -c 0 -i 621 -a 0 -x {21.0 3.0 310 ------- null} + -t 30.3052 -s 1 -d 3 -p ack -e 40 -c 0 -i 621 -a 0 -x {21.0 3.0 310 ------- null} - -t 30.3052 -s 1 -d 3 -p ack -e 40 -c 0 -i 621 -a 0 -x {21.0 3.0 310 ------- null} h -t 30.3052 -s 1 -d 3 -p ack -e 40 -c 0 -i 621 -a 0 -x {21.0 3.0 -1 ------- null} r -t 30.4148 -s 1 -d 3 -p ack -e 40 -c 0 -i 602 -a 0 -x {21.0 3.0 291 ------- null} + -t 30.4148 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 622 -a 0 -x {3.0 21.0 311 ------- null} - -t 30.4148 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 622 -a 0 -x {3.0 21.0 311 ------- null} h -t 30.4148 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 622 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.4164 -s 1 -d 3 -p ack -e 40 -c 0 -i 603 -a 0 -x {21.0 3.0 292 ------- null} + -t 30.4164 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {3.0 21.0 312 ------- null} - -t 30.4164 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {3.0 21.0 312 ------- null} h -t 30.4164 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.418 -s 1 -d 3 -p ack -e 40 -c 0 -i 604 -a 0 -x {21.0 3.0 293 ------- null} + -t 30.418 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 624 -a 0 -x {3.0 21.0 313 ------- null} - -t 30.418 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 624 -a 0 -x {3.0 21.0 313 ------- null} h -t 30.418 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 624 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.4196 -s 1 -d 3 -p ack -e 40 -c 0 -i 605 -a 0 -x {21.0 3.0 294 ------- null} + -t 30.4196 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {3.0 21.0 314 ------- null} - -t 30.4196 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {3.0 21.0 314 ------- null} h -t 30.4196 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.4212 -s 1 -d 3 -p ack -e 40 -c 0 -i 606 -a 0 -x {21.0 3.0 295 ------- null} + -t 30.4212 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 626 -a 0 -x {3.0 21.0 315 ------- null} - -t 30.4212 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 626 -a 0 -x {3.0 21.0 315 ------- null} h -t 30.4212 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 626 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.4228 -s 1 -d 3 -p ack -e 40 -c 0 -i 607 -a 0 -x {21.0 3.0 296 ------- null} + -t 30.4228 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {3.0 21.0 316 ------- null} - -t 30.4228 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {3.0 21.0 316 ------- null} h -t 30.4228 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.4244 -s 1 -d 3 -p ack -e 40 -c 0 -i 608 -a 0 -x {21.0 3.0 297 ------- null} + -t 30.4244 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 628 -a 0 -x {3.0 21.0 317 ------- null} - -t 30.4244 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 628 -a 0 -x {3.0 21.0 317 ------- null} h -t 30.4244 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 628 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.426 -s 1 -d 3 -p ack -e 40 -c 0 -i 609 -a 0 -x {21.0 3.0 298 ------- null} + -t 30.426 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {3.0 21.0 318 ------- null} - -t 30.426 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {3.0 21.0 318 ------- null} h -t 30.426 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.4276 -s 1 -d 3 -p ack -e 40 -c 0 -i 610 -a 0 -x {21.0 3.0 299 ------- null} + -t 30.4276 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 630 -a 0 -x {3.0 21.0 319 ------- null} - -t 30.4276 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 630 -a 0 -x {3.0 21.0 319 ------- null} h -t 30.4276 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 630 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.4292 -s 1 -d 3 -p ack -e 40 -c 0 -i 611 -a 0 -x {21.0 3.0 300 ------- null} + -t 30.4292 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {3.0 21.0 320 ------- null} - -t 30.4292 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {3.0 21.0 320 ------- null} h -t 30.4292 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.4308 -s 1 -d 3 -p ack -e 40 -c 0 -i 612 -a 0 -x {21.0 3.0 301 ------- null} + -t 30.4308 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 632 -a 0 -x {3.0 21.0 321 ------- null} - -t 30.4308 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 632 -a 0 -x {3.0 21.0 321 ------- null} h -t 30.4308 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 632 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.4324 -s 1 -d 3 -p ack -e 40 -c 0 -i 613 -a 0 -x {21.0 3.0 302 ------- null} + -t 30.4324 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {3.0 21.0 322 ------- null} - -t 30.4324 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {3.0 21.0 322 ------- null} h -t 30.4324 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.434 -s 1 -d 3 -p ack -e 40 -c 0 -i 614 -a 0 -x {21.0 3.0 303 ------- null} + -t 30.434 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 634 -a 0 -x {3.0 21.0 323 ------- null} - -t 30.434 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 634 -a 0 -x {3.0 21.0 323 ------- null} h -t 30.434 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 634 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.4356 -s 1 -d 3 -p ack -e 40 -c 0 -i 615 -a 0 -x {21.0 3.0 304 ------- null} + -t 30.4356 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {3.0 21.0 324 ------- null} - -t 30.4356 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {3.0 21.0 324 ------- null} h -t 30.4356 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.4372 -s 1 -d 3 -p ack -e 40 -c 0 -i 616 -a 0 -x {21.0 3.0 305 ------- null} + -t 30.4372 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 636 -a 0 -x {3.0 21.0 325 ------- null} - -t 30.4372 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 636 -a 0 -x {3.0 21.0 325 ------- null} h -t 30.4372 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 636 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.4388 -s 1 -d 3 -p ack -e 40 -c 0 -i 617 -a 0 -x {21.0 3.0 306 ------- null} + -t 30.4388 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {3.0 21.0 326 ------- null} - -t 30.4388 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {3.0 21.0 326 ------- null} h -t 30.4388 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.4404 -s 1 -d 3 -p ack -e 40 -c 0 -i 618 -a 0 -x {21.0 3.0 307 ------- null} + -t 30.4404 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 638 -a 0 -x {3.0 21.0 327 ------- null} - -t 30.4404 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 638 -a 0 -x {3.0 21.0 327 ------- null} h -t 30.4404 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 638 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.442 -s 1 -d 3 -p ack -e 40 -c 0 -i 619 -a 0 -x {21.0 3.0 308 ------- null} + -t 30.442 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {3.0 21.0 328 ------- null} - -t 30.442 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {3.0 21.0 328 ------- null} h -t 30.442 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.4436 -s 1 -d 3 -p ack -e 40 -c 0 -i 620 -a 0 -x {21.0 3.0 309 ------- null} + -t 30.4436 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 640 -a 0 -x {3.0 21.0 329 ------- null} - -t 30.4436 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 640 -a 0 -x {3.0 21.0 329 ------- null} h -t 30.4436 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 640 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.4452 -s 1 -d 3 -p ack -e 40 -c 0 -i 621 -a 0 -x {21.0 3.0 310 ------- null} + -t 30.4452 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {3.0 21.0 330 ------- null} - -t 30.4452 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {3.0 21.0 330 ------- null} h -t 30.4452 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.5564 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 622 -a 0 -x {3.0 21.0 311 ------- null} + -t 30.5564 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 622 -a 0 -x {3.0 21.0 311 ------- null} - -t 30.5564 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 622 -a 0 -x {3.0 21.0 311 ------- null} h -t 30.5564 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 622 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.558 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {3.0 21.0 312 ------- null} + -t 30.558 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {3.0 21.0 312 ------- null} - -t 30.558 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {3.0 21.0 312 ------- null} h -t 30.558 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.5596 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 624 -a 0 -x {3.0 21.0 313 ------- null} + -t 30.5596 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 624 -a 0 -x {3.0 21.0 313 ------- null} - -t 30.5596 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 624 -a 0 -x {3.0 21.0 313 ------- null} h -t 30.5596 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 624 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.5612 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {3.0 21.0 314 ------- null} + -t 30.5612 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {3.0 21.0 314 ------- null} - -t 30.5612 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {3.0 21.0 314 ------- null} h -t 30.5612 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.5628 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 626 -a 0 -x {3.0 21.0 315 ------- null} + -t 30.5628 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 626 -a 0 -x {3.0 21.0 315 ------- null} - -t 30.5628 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 626 -a 0 -x {3.0 21.0 315 ------- null} h -t 30.5628 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 626 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.5644 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {3.0 21.0 316 ------- null} + -t 30.5644 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {3.0 21.0 316 ------- null} - -t 30.5644 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {3.0 21.0 316 ------- null} h -t 30.5644 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.566 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 628 -a 0 -x {3.0 21.0 317 ------- null} + -t 30.566 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 628 -a 0 -x {3.0 21.0 317 ------- null} - -t 30.566 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 628 -a 0 -x {3.0 21.0 317 ------- null} h -t 30.566 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 628 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.5676 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {3.0 21.0 318 ------- null} + -t 30.5676 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {3.0 21.0 318 ------- null} - -t 30.5676 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {3.0 21.0 318 ------- null} h -t 30.5676 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.5692 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 630 -a 0 -x {3.0 21.0 319 ------- null} + -t 30.5692 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 630 -a 0 -x {3.0 21.0 319 ------- null} - -t 30.5692 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 630 -a 0 -x {3.0 21.0 319 ------- null} h -t 30.5692 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 630 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.5708 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {3.0 21.0 320 ------- null} + -t 30.5708 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {3.0 21.0 320 ------- null} - -t 30.5708 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {3.0 21.0 320 ------- null} h -t 30.5708 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.5724 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 632 -a 0 -x {3.0 21.0 321 ------- null} + -t 30.5724 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 632 -a 0 -x {3.0 21.0 321 ------- null} - -t 30.5724 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 632 -a 0 -x {3.0 21.0 321 ------- null} h -t 30.5724 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 632 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.574 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {3.0 21.0 322 ------- null} + -t 30.574 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {3.0 21.0 322 ------- null} - -t 30.574 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {3.0 21.0 322 ------- null} h -t 30.574 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.5756 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 634 -a 0 -x {3.0 21.0 323 ------- null} + -t 30.5756 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 634 -a 0 -x {3.0 21.0 323 ------- null} - -t 30.5756 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 634 -a 0 -x {3.0 21.0 323 ------- null} h -t 30.5756 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 634 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.5772 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {3.0 21.0 324 ------- null} + -t 30.5772 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {3.0 21.0 324 ------- null} - -t 30.5772 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {3.0 21.0 324 ------- null} h -t 30.5772 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.5788 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 636 -a 0 -x {3.0 21.0 325 ------- null} + -t 30.5788 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 636 -a 0 -x {3.0 21.0 325 ------- null} - -t 30.5788 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 636 -a 0 -x {3.0 21.0 325 ------- null} h -t 30.5788 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 636 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.5804 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {3.0 21.0 326 ------- null} + -t 30.5804 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {3.0 21.0 326 ------- null} - -t 30.5804 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {3.0 21.0 326 ------- null} h -t 30.5804 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.582 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 638 -a 0 -x {3.0 21.0 327 ------- null} + -t 30.582 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 638 -a 0 -x {3.0 21.0 327 ------- null} - -t 30.582 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 638 -a 0 -x {3.0 21.0 327 ------- null} h -t 30.582 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 638 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.5836 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {3.0 21.0 328 ------- null} + -t 30.5836 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {3.0 21.0 328 ------- null} - -t 30.5836 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {3.0 21.0 328 ------- null} h -t 30.5836 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.5852 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 640 -a 0 -x {3.0 21.0 329 ------- null} + -t 30.5852 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 640 -a 0 -x {3.0 21.0 329 ------- null} - -t 30.5852 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 640 -a 0 -x {3.0 21.0 329 ------- null} h -t 30.5852 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 640 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.5868 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {3.0 21.0 330 ------- null} + -t 30.5868 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {3.0 21.0 330 ------- null} - -t 30.5868 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {3.0 21.0 330 ------- null} h -t 30.5868 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.858 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 622 -a 0 -x {3.0 21.0 311 ------- null} + -t 30.858 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 622 -a 0 -x {3.0 21.0 311 ------- null} - -t 30.858 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 622 -a 0 -x {3.0 21.0 311 ------- null} h -t 30.858 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 622 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.8596 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {3.0 21.0 312 ------- null} + -t 30.8596 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {3.0 21.0 312 ------- null} - -t 30.8596 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {3.0 21.0 312 ------- null} h -t 30.8596 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.8612 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 624 -a 0 -x {3.0 21.0 313 ------- null} + -t 30.8612 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 624 -a 0 -x {3.0 21.0 313 ------- null} - -t 30.8612 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 624 -a 0 -x {3.0 21.0 313 ------- null} h -t 30.8612 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 624 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.8628 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {3.0 21.0 314 ------- null} + -t 30.8628 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {3.0 21.0 314 ------- null} - -t 30.8628 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {3.0 21.0 314 ------- null} h -t 30.8628 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.8644 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 626 -a 0 -x {3.0 21.0 315 ------- null} + -t 30.8644 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 626 -a 0 -x {3.0 21.0 315 ------- null} - -t 30.8644 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 626 -a 0 -x {3.0 21.0 315 ------- null} h -t 30.8644 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 626 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.866 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {3.0 21.0 316 ------- null} + -t 30.866 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {3.0 21.0 316 ------- null} - -t 30.866 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {3.0 21.0 316 ------- null} h -t 30.866 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.8676 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 628 -a 0 -x {3.0 21.0 317 ------- null} + -t 30.8676 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 628 -a 0 -x {3.0 21.0 317 ------- null} - -t 30.8676 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 628 -a 0 -x {3.0 21.0 317 ------- null} h -t 30.8676 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 628 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.8692 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {3.0 21.0 318 ------- null} + -t 30.8692 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {3.0 21.0 318 ------- null} - -t 30.8692 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {3.0 21.0 318 ------- null} h -t 30.8692 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.8708 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 630 -a 0 -x {3.0 21.0 319 ------- null} + -t 30.8708 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 630 -a 0 -x {3.0 21.0 319 ------- null} - -t 30.8708 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 630 -a 0 -x {3.0 21.0 319 ------- null} h -t 30.8708 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 630 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.8724 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {3.0 21.0 320 ------- null} + -t 30.8724 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {3.0 21.0 320 ------- null} - -t 30.8724 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {3.0 21.0 320 ------- null} h -t 30.8724 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.874 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 632 -a 0 -x {3.0 21.0 321 ------- null} + -t 30.874 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 632 -a 0 -x {3.0 21.0 321 ------- null} - -t 30.874 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 632 -a 0 -x {3.0 21.0 321 ------- null} h -t 30.874 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 632 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.8756 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {3.0 21.0 322 ------- null} + -t 30.8756 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {3.0 21.0 322 ------- null} - -t 30.8756 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {3.0 21.0 322 ------- null} h -t 30.8756 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.8772 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 634 -a 0 -x {3.0 21.0 323 ------- null} + -t 30.8772 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 634 -a 0 -x {3.0 21.0 323 ------- null} - -t 30.8772 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 634 -a 0 -x {3.0 21.0 323 ------- null} h -t 30.8772 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 634 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.8788 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {3.0 21.0 324 ------- null} + -t 30.8788 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {3.0 21.0 324 ------- null} - -t 30.8788 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {3.0 21.0 324 ------- null} h -t 30.8788 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.8804 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 636 -a 0 -x {3.0 21.0 325 ------- null} + -t 30.8804 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 636 -a 0 -x {3.0 21.0 325 ------- null} - -t 30.8804 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 636 -a 0 -x {3.0 21.0 325 ------- null} h -t 30.8804 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 636 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.882 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {3.0 21.0 326 ------- null} + -t 30.882 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {3.0 21.0 326 ------- null} - -t 30.882 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {3.0 21.0 326 ------- null} h -t 30.882 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.8836 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 638 -a 0 -x {3.0 21.0 327 ------- null} + -t 30.8836 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 638 -a 0 -x {3.0 21.0 327 ------- null} - -t 30.8836 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 638 -a 0 -x {3.0 21.0 327 ------- null} h -t 30.8836 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 638 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.8852 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {3.0 21.0 328 ------- null} + -t 30.8852 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {3.0 21.0 328 ------- null} - -t 30.8852 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {3.0 21.0 328 ------- null} h -t 30.8852 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.8868 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 640 -a 0 -x {3.0 21.0 329 ------- null} + -t 30.8868 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 640 -a 0 -x {3.0 21.0 329 ------- null} - -t 30.8868 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 640 -a 0 -x {3.0 21.0 329 ------- null} h -t 30.8868 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 640 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.8884 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {3.0 21.0 330 ------- null} + -t 30.8884 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {3.0 21.0 330 ------- null} - -t 30.8884 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {3.0 21.0 330 ------- null} h -t 30.8884 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {3.0 21.0 -1 ------- null} r -t 31.2096 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 622 -a 0 -x {3.0 21.0 311 ------- null} + -t 31.2096 -s 21 -d 28 -p ack -e 40 -c 0 -i 642 -a 0 -x {21.0 3.0 311 ------- null} - -t 31.2096 -s 21 -d 28 -p ack -e 40 -c 0 -i 642 -a 0 -x {21.0 3.0 311 ------- null} h -t 31.2096 -s 21 -d 28 -p ack -e 40 -c 0 -i 642 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.2112 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {3.0 21.0 312 ------- null} + -t 31.2112 -s 21 -d 28 -p ack -e 40 -c 0 -i 643 -a 0 -x {21.0 3.0 312 ------- null} - -t 31.2112 -s 21 -d 28 -p ack -e 40 -c 0 -i 643 -a 0 -x {21.0 3.0 312 ------- null} h -t 31.2112 -s 21 -d 28 -p ack -e 40 -c 0 -i 643 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.2128 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 624 -a 0 -x {3.0 21.0 313 ------- null} + -t 31.2128 -s 21 -d 28 -p ack -e 40 -c 0 -i 644 -a 0 -x {21.0 3.0 313 ------- null} - -t 31.2128 -s 21 -d 28 -p ack -e 40 -c 0 -i 644 -a 0 -x {21.0 3.0 313 ------- null} h -t 31.2128 -s 21 -d 28 -p ack -e 40 -c 0 -i 644 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.2144 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {3.0 21.0 314 ------- null} + -t 31.2144 -s 21 -d 28 -p ack -e 40 -c 0 -i 645 -a 0 -x {21.0 3.0 314 ------- null} - -t 31.2144 -s 21 -d 28 -p ack -e 40 -c 0 -i 645 -a 0 -x {21.0 3.0 314 ------- null} h -t 31.2144 -s 21 -d 28 -p ack -e 40 -c 0 -i 645 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.216 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 626 -a 0 -x {3.0 21.0 315 ------- null} + -t 31.216 -s 21 -d 28 -p ack -e 40 -c 0 -i 646 -a 0 -x {21.0 3.0 315 ------- null} - -t 31.216 -s 21 -d 28 -p ack -e 40 -c 0 -i 646 -a 0 -x {21.0 3.0 315 ------- null} h -t 31.216 -s 21 -d 28 -p ack -e 40 -c 0 -i 646 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.2176 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {3.0 21.0 316 ------- null} + -t 31.2176 -s 21 -d 28 -p ack -e 40 -c 0 -i 647 -a 0 -x {21.0 3.0 316 ------- null} - -t 31.2176 -s 21 -d 28 -p ack -e 40 -c 0 -i 647 -a 0 -x {21.0 3.0 316 ------- null} h -t 31.2176 -s 21 -d 28 -p ack -e 40 -c 0 -i 647 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.2192 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 628 -a 0 -x {3.0 21.0 317 ------- null} + -t 31.2192 -s 21 -d 28 -p ack -e 40 -c 0 -i 648 -a 0 -x {21.0 3.0 317 ------- null} - -t 31.2192 -s 21 -d 28 -p ack -e 40 -c 0 -i 648 -a 0 -x {21.0 3.0 317 ------- null} h -t 31.2192 -s 21 -d 28 -p ack -e 40 -c 0 -i 648 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.2208 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {3.0 21.0 318 ------- null} + -t 31.2208 -s 21 -d 28 -p ack -e 40 -c 0 -i 649 -a 0 -x {21.0 3.0 318 ------- null} - -t 31.2208 -s 21 -d 28 -p ack -e 40 -c 0 -i 649 -a 0 -x {21.0 3.0 318 ------- null} h -t 31.2208 -s 21 -d 28 -p ack -e 40 -c 0 -i 649 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.2224 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 630 -a 0 -x {3.0 21.0 319 ------- null} + -t 31.2224 -s 21 -d 28 -p ack -e 40 -c 0 -i 650 -a 0 -x {21.0 3.0 319 ------- null} - -t 31.2224 -s 21 -d 28 -p ack -e 40 -c 0 -i 650 -a 0 -x {21.0 3.0 319 ------- null} h -t 31.2224 -s 21 -d 28 -p ack -e 40 -c 0 -i 650 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.224 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {3.0 21.0 320 ------- null} + -t 31.224 -s 21 -d 28 -p ack -e 40 -c 0 -i 651 -a 0 -x {21.0 3.0 320 ------- null} - -t 31.224 -s 21 -d 28 -p ack -e 40 -c 0 -i 651 -a 0 -x {21.0 3.0 320 ------- null} h -t 31.224 -s 21 -d 28 -p ack -e 40 -c 0 -i 651 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.2256 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 632 -a 0 -x {3.0 21.0 321 ------- null} + -t 31.2256 -s 21 -d 28 -p ack -e 40 -c 0 -i 652 -a 0 -x {21.0 3.0 321 ------- null} - -t 31.2256 -s 21 -d 28 -p ack -e 40 -c 0 -i 652 -a 0 -x {21.0 3.0 321 ------- null} h -t 31.2256 -s 21 -d 28 -p ack -e 40 -c 0 -i 652 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.2272 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {3.0 21.0 322 ------- null} + -t 31.2272 -s 21 -d 28 -p ack -e 40 -c 0 -i 653 -a 0 -x {21.0 3.0 322 ------- null} - -t 31.2272 -s 21 -d 28 -p ack -e 40 -c 0 -i 653 -a 0 -x {21.0 3.0 322 ------- null} h -t 31.2272 -s 21 -d 28 -p ack -e 40 -c 0 -i 653 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.2288 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 634 -a 0 -x {3.0 21.0 323 ------- null} + -t 31.2288 -s 21 -d 28 -p ack -e 40 -c 0 -i 654 -a 0 -x {21.0 3.0 323 ------- null} - -t 31.2288 -s 21 -d 28 -p ack -e 40 -c 0 -i 654 -a 0 -x {21.0 3.0 323 ------- null} h -t 31.2288 -s 21 -d 28 -p ack -e 40 -c 0 -i 654 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.2304 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {3.0 21.0 324 ------- null} + -t 31.2304 -s 21 -d 28 -p ack -e 40 -c 0 -i 655 -a 0 -x {21.0 3.0 324 ------- null} - -t 31.2304 -s 21 -d 28 -p ack -e 40 -c 0 -i 655 -a 0 -x {21.0 3.0 324 ------- null} h -t 31.2304 -s 21 -d 28 -p ack -e 40 -c 0 -i 655 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.232 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 636 -a 0 -x {3.0 21.0 325 ------- null} + -t 31.232 -s 21 -d 28 -p ack -e 40 -c 0 -i 656 -a 0 -x {21.0 3.0 325 ------- null} - -t 31.232 -s 21 -d 28 -p ack -e 40 -c 0 -i 656 -a 0 -x {21.0 3.0 325 ------- null} h -t 31.232 -s 21 -d 28 -p ack -e 40 -c 0 -i 656 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.2336 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {3.0 21.0 326 ------- null} + -t 31.2336 -s 21 -d 28 -p ack -e 40 -c 0 -i 657 -a 0 -x {21.0 3.0 326 ------- null} - -t 31.2336 -s 21 -d 28 -p ack -e 40 -c 0 -i 657 -a 0 -x {21.0 3.0 326 ------- null} h -t 31.2336 -s 21 -d 28 -p ack -e 40 -c 0 -i 657 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.2352 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 638 -a 0 -x {3.0 21.0 327 ------- null} + -t 31.2352 -s 21 -d 28 -p ack -e 40 -c 0 -i 658 -a 0 -x {21.0 3.0 327 ------- null} - -t 31.2352 -s 21 -d 28 -p ack -e 40 -c 0 -i 658 -a 0 -x {21.0 3.0 327 ------- null} h -t 31.2352 -s 21 -d 28 -p ack -e 40 -c 0 -i 658 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.2368 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {3.0 21.0 328 ------- null} + -t 31.2368 -s 21 -d 28 -p ack -e 40 -c 0 -i 659 -a 0 -x {21.0 3.0 328 ------- null} - -t 31.2368 -s 21 -d 28 -p ack -e 40 -c 0 -i 659 -a 0 -x {21.0 3.0 328 ------- null} h -t 31.2368 -s 21 -d 28 -p ack -e 40 -c 0 -i 659 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.2384 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 640 -a 0 -x {3.0 21.0 329 ------- null} + -t 31.2384 -s 21 -d 28 -p ack -e 40 -c 0 -i 660 -a 0 -x {21.0 3.0 329 ------- null} - -t 31.2384 -s 21 -d 28 -p ack -e 40 -c 0 -i 660 -a 0 -x {21.0 3.0 329 ------- null} h -t 31.2384 -s 21 -d 28 -p ack -e 40 -c 0 -i 660 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.24 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {3.0 21.0 330 ------- null} + -t 31.24 -s 21 -d 28 -p ack -e 40 -c 0 -i 661 -a 0 -x {21.0 3.0 330 ------- null} - -t 31.24 -s 21 -d 28 -p ack -e 40 -c 0 -i 661 -a 0 -x {21.0 3.0 330 ------- null} h -t 31.24 -s 21 -d 28 -p ack -e 40 -c 0 -i 661 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.5597 -s 21 -d 28 -p ack -e 40 -c 0 -i 642 -a 0 -x {21.0 3.0 311 ------- null} + -t 31.5597 -s 28 -d 1 -p ack -e 40 -c 0 -i 642 -a 0 -x {21.0 3.0 311 ------- null} - -t 31.5597 -s 28 -d 1 -p ack -e 40 -c 0 -i 642 -a 0 -x {21.0 3.0 311 ------- null} h -t 31.5597 -s 28 -d 1 -p ack -e 40 -c 0 -i 642 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.5613 -s 21 -d 28 -p ack -e 40 -c 0 -i 643 -a 0 -x {21.0 3.0 312 ------- null} + -t 31.5613 -s 28 -d 1 -p ack -e 40 -c 0 -i 643 -a 0 -x {21.0 3.0 312 ------- null} - -t 31.5613 -s 28 -d 1 -p ack -e 40 -c 0 -i 643 -a 0 -x {21.0 3.0 312 ------- null} h -t 31.5613 -s 28 -d 1 -p ack -e 40 -c 0 -i 643 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.5629 -s 21 -d 28 -p ack -e 40 -c 0 -i 644 -a 0 -x {21.0 3.0 313 ------- null} + -t 31.5629 -s 28 -d 1 -p ack -e 40 -c 0 -i 644 -a 0 -x {21.0 3.0 313 ------- null} - -t 31.5629 -s 28 -d 1 -p ack -e 40 -c 0 -i 644 -a 0 -x {21.0 3.0 313 ------- null} h -t 31.5629 -s 28 -d 1 -p ack -e 40 -c 0 -i 644 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.5645 -s 21 -d 28 -p ack -e 40 -c 0 -i 645 -a 0 -x {21.0 3.0 314 ------- null} + -t 31.5645 -s 28 -d 1 -p ack -e 40 -c 0 -i 645 -a 0 -x {21.0 3.0 314 ------- null} - -t 31.5645 -s 28 -d 1 -p ack -e 40 -c 0 -i 645 -a 0 -x {21.0 3.0 314 ------- null} h -t 31.5645 -s 28 -d 1 -p ack -e 40 -c 0 -i 645 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.5661 -s 21 -d 28 -p ack -e 40 -c 0 -i 646 -a 0 -x {21.0 3.0 315 ------- null} + -t 31.5661 -s 28 -d 1 -p ack -e 40 -c 0 -i 646 -a 0 -x {21.0 3.0 315 ------- null} - -t 31.5661 -s 28 -d 1 -p ack -e 40 -c 0 -i 646 -a 0 -x {21.0 3.0 315 ------- null} h -t 31.5661 -s 28 -d 1 -p ack -e 40 -c 0 -i 646 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.5677 -s 21 -d 28 -p ack -e 40 -c 0 -i 647 -a 0 -x {21.0 3.0 316 ------- null} + -t 31.5677 -s 28 -d 1 -p ack -e 40 -c 0 -i 647 -a 0 -x {21.0 3.0 316 ------- null} - -t 31.5677 -s 28 -d 1 -p ack -e 40 -c 0 -i 647 -a 0 -x {21.0 3.0 316 ------- null} h -t 31.5677 -s 28 -d 1 -p ack -e 40 -c 0 -i 647 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.5693 -s 21 -d 28 -p ack -e 40 -c 0 -i 648 -a 0 -x {21.0 3.0 317 ------- null} + -t 31.5693 -s 28 -d 1 -p ack -e 40 -c 0 -i 648 -a 0 -x {21.0 3.0 317 ------- null} - -t 31.5693 -s 28 -d 1 -p ack -e 40 -c 0 -i 648 -a 0 -x {21.0 3.0 317 ------- null} h -t 31.5693 -s 28 -d 1 -p ack -e 40 -c 0 -i 648 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.5709 -s 21 -d 28 -p ack -e 40 -c 0 -i 649 -a 0 -x {21.0 3.0 318 ------- null} + -t 31.5709 -s 28 -d 1 -p ack -e 40 -c 0 -i 649 -a 0 -x {21.0 3.0 318 ------- null} - -t 31.5709 -s 28 -d 1 -p ack -e 40 -c 0 -i 649 -a 0 -x {21.0 3.0 318 ------- null} h -t 31.5709 -s 28 -d 1 -p ack -e 40 -c 0 -i 649 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.5725 -s 21 -d 28 -p ack -e 40 -c 0 -i 650 -a 0 -x {21.0 3.0 319 ------- null} + -t 31.5725 -s 28 -d 1 -p ack -e 40 -c 0 -i 650 -a 0 -x {21.0 3.0 319 ------- null} - -t 31.5725 -s 28 -d 1 -p ack -e 40 -c 0 -i 650 -a 0 -x {21.0 3.0 319 ------- null} h -t 31.5725 -s 28 -d 1 -p ack -e 40 -c 0 -i 650 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.5741 -s 21 -d 28 -p ack -e 40 -c 0 -i 651 -a 0 -x {21.0 3.0 320 ------- null} + -t 31.5741 -s 28 -d 1 -p ack -e 40 -c 0 -i 651 -a 0 -x {21.0 3.0 320 ------- null} - -t 31.5741 -s 28 -d 1 -p ack -e 40 -c 0 -i 651 -a 0 -x {21.0 3.0 320 ------- null} h -t 31.5741 -s 28 -d 1 -p ack -e 40 -c 0 -i 651 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.5757 -s 21 -d 28 -p ack -e 40 -c 0 -i 652 -a 0 -x {21.0 3.0 321 ------- null} + -t 31.5757 -s 28 -d 1 -p ack -e 40 -c 0 -i 652 -a 0 -x {21.0 3.0 321 ------- null} - -t 31.5757 -s 28 -d 1 -p ack -e 40 -c 0 -i 652 -a 0 -x {21.0 3.0 321 ------- null} h -t 31.5757 -s 28 -d 1 -p ack -e 40 -c 0 -i 652 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.5773 -s 21 -d 28 -p ack -e 40 -c 0 -i 653 -a 0 -x {21.0 3.0 322 ------- null} + -t 31.5773 -s 28 -d 1 -p ack -e 40 -c 0 -i 653 -a 0 -x {21.0 3.0 322 ------- null} - -t 31.5773 -s 28 -d 1 -p ack -e 40 -c 0 -i 653 -a 0 -x {21.0 3.0 322 ------- null} h -t 31.5773 -s 28 -d 1 -p ack -e 40 -c 0 -i 653 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.5789 -s 21 -d 28 -p ack -e 40 -c 0 -i 654 -a 0 -x {21.0 3.0 323 ------- null} + -t 31.5789 -s 28 -d 1 -p ack -e 40 -c 0 -i 654 -a 0 -x {21.0 3.0 323 ------- null} - -t 31.5789 -s 28 -d 1 -p ack -e 40 -c 0 -i 654 -a 0 -x {21.0 3.0 323 ------- null} h -t 31.5789 -s 28 -d 1 -p ack -e 40 -c 0 -i 654 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.5805 -s 21 -d 28 -p ack -e 40 -c 0 -i 655 -a 0 -x {21.0 3.0 324 ------- null} + -t 31.5805 -s 28 -d 1 -p ack -e 40 -c 0 -i 655 -a 0 -x {21.0 3.0 324 ------- null} - -t 31.5805 -s 28 -d 1 -p ack -e 40 -c 0 -i 655 -a 0 -x {21.0 3.0 324 ------- null} h -t 31.5805 -s 28 -d 1 -p ack -e 40 -c 0 -i 655 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.5821 -s 21 -d 28 -p ack -e 40 -c 0 -i 656 -a 0 -x {21.0 3.0 325 ------- null} + -t 31.5821 -s 28 -d 1 -p ack -e 40 -c 0 -i 656 -a 0 -x {21.0 3.0 325 ------- null} - -t 31.5821 -s 28 -d 1 -p ack -e 40 -c 0 -i 656 -a 0 -x {21.0 3.0 325 ------- null} h -t 31.5821 -s 28 -d 1 -p ack -e 40 -c 0 -i 656 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.5837 -s 21 -d 28 -p ack -e 40 -c 0 -i 657 -a 0 -x {21.0 3.0 326 ------- null} + -t 31.5837 -s 28 -d 1 -p ack -e 40 -c 0 -i 657 -a 0 -x {21.0 3.0 326 ------- null} - -t 31.5837 -s 28 -d 1 -p ack -e 40 -c 0 -i 657 -a 0 -x {21.0 3.0 326 ------- null} h -t 31.5837 -s 28 -d 1 -p ack -e 40 -c 0 -i 657 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.5853 -s 21 -d 28 -p ack -e 40 -c 0 -i 658 -a 0 -x {21.0 3.0 327 ------- null} + -t 31.5853 -s 28 -d 1 -p ack -e 40 -c 0 -i 658 -a 0 -x {21.0 3.0 327 ------- null} - -t 31.5853 -s 28 -d 1 -p ack -e 40 -c 0 -i 658 -a 0 -x {21.0 3.0 327 ------- null} h -t 31.5853 -s 28 -d 1 -p ack -e 40 -c 0 -i 658 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.5869 -s 21 -d 28 -p ack -e 40 -c 0 -i 659 -a 0 -x {21.0 3.0 328 ------- null} + -t 31.5869 -s 28 -d 1 -p ack -e 40 -c 0 -i 659 -a 0 -x {21.0 3.0 328 ------- null} - -t 31.5869 -s 28 -d 1 -p ack -e 40 -c 0 -i 659 -a 0 -x {21.0 3.0 328 ------- null} h -t 31.5869 -s 28 -d 1 -p ack -e 40 -c 0 -i 659 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.5885 -s 21 -d 28 -p ack -e 40 -c 0 -i 660 -a 0 -x {21.0 3.0 329 ------- null} + -t 31.5885 -s 28 -d 1 -p ack -e 40 -c 0 -i 660 -a 0 -x {21.0 3.0 329 ------- null} - -t 31.5885 -s 28 -d 1 -p ack -e 40 -c 0 -i 660 -a 0 -x {21.0 3.0 329 ------- null} h -t 31.5885 -s 28 -d 1 -p ack -e 40 -c 0 -i 660 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.5901 -s 21 -d 28 -p ack -e 40 -c 0 -i 661 -a 0 -x {21.0 3.0 330 ------- null} + -t 31.5901 -s 28 -d 1 -p ack -e 40 -c 0 -i 661 -a 0 -x {21.0 3.0 330 ------- null} - -t 31.5901 -s 28 -d 1 -p ack -e 40 -c 0 -i 661 -a 0 -x {21.0 3.0 330 ------- null} h -t 31.5901 -s 28 -d 1 -p ack -e 40 -c 0 -i 661 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.8598 -s 28 -d 1 -p ack -e 40 -c 0 -i 642 -a 0 -x {21.0 3.0 311 ------- null} + -t 31.8598 -s 1 -d 3 -p ack -e 40 -c 0 -i 642 -a 0 -x {21.0 3.0 311 ------- null} - -t 31.8598 -s 1 -d 3 -p ack -e 40 -c 0 -i 642 -a 0 -x {21.0 3.0 311 ------- null} h -t 31.8598 -s 1 -d 3 -p ack -e 40 -c 0 -i 642 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.8614 -s 28 -d 1 -p ack -e 40 -c 0 -i 643 -a 0 -x {21.0 3.0 312 ------- null} + -t 31.8614 -s 1 -d 3 -p ack -e 40 -c 0 -i 643 -a 0 -x {21.0 3.0 312 ------- null} - -t 31.8614 -s 1 -d 3 -p ack -e 40 -c 0 -i 643 -a 0 -x {21.0 3.0 312 ------- null} h -t 31.8614 -s 1 -d 3 -p ack -e 40 -c 0 -i 643 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.863 -s 28 -d 1 -p ack -e 40 -c 0 -i 644 -a 0 -x {21.0 3.0 313 ------- null} + -t 31.863 -s 1 -d 3 -p ack -e 40 -c 0 -i 644 -a 0 -x {21.0 3.0 313 ------- null} - -t 31.863 -s 1 -d 3 -p ack -e 40 -c 0 -i 644 -a 0 -x {21.0 3.0 313 ------- null} h -t 31.863 -s 1 -d 3 -p ack -e 40 -c 0 -i 644 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.8646 -s 28 -d 1 -p ack -e 40 -c 0 -i 645 -a 0 -x {21.0 3.0 314 ------- null} + -t 31.8646 -s 1 -d 3 -p ack -e 40 -c 0 -i 645 -a 0 -x {21.0 3.0 314 ------- null} - -t 31.8646 -s 1 -d 3 -p ack -e 40 -c 0 -i 645 -a 0 -x {21.0 3.0 314 ------- null} h -t 31.8646 -s 1 -d 3 -p ack -e 40 -c 0 -i 645 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.8662 -s 28 -d 1 -p ack -e 40 -c 0 -i 646 -a 0 -x {21.0 3.0 315 ------- null} + -t 31.8662 -s 1 -d 3 -p ack -e 40 -c 0 -i 646 -a 0 -x {21.0 3.0 315 ------- null} - -t 31.8662 -s 1 -d 3 -p ack -e 40 -c 0 -i 646 -a 0 -x {21.0 3.0 315 ------- null} h -t 31.8662 -s 1 -d 3 -p ack -e 40 -c 0 -i 646 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.8678 -s 28 -d 1 -p ack -e 40 -c 0 -i 647 -a 0 -x {21.0 3.0 316 ------- null} + -t 31.8678 -s 1 -d 3 -p ack -e 40 -c 0 -i 647 -a 0 -x {21.0 3.0 316 ------- null} - -t 31.8678 -s 1 -d 3 -p ack -e 40 -c 0 -i 647 -a 0 -x {21.0 3.0 316 ------- null} h -t 31.8678 -s 1 -d 3 -p ack -e 40 -c 0 -i 647 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.8694 -s 28 -d 1 -p ack -e 40 -c 0 -i 648 -a 0 -x {21.0 3.0 317 ------- null} + -t 31.8694 -s 1 -d 3 -p ack -e 40 -c 0 -i 648 -a 0 -x {21.0 3.0 317 ------- null} - -t 31.8694 -s 1 -d 3 -p ack -e 40 -c 0 -i 648 -a 0 -x {21.0 3.0 317 ------- null} h -t 31.8694 -s 1 -d 3 -p ack -e 40 -c 0 -i 648 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.871 -s 28 -d 1 -p ack -e 40 -c 0 -i 649 -a 0 -x {21.0 3.0 318 ------- null} + -t 31.871 -s 1 -d 3 -p ack -e 40 -c 0 -i 649 -a 0 -x {21.0 3.0 318 ------- null} - -t 31.871 -s 1 -d 3 -p ack -e 40 -c 0 -i 649 -a 0 -x {21.0 3.0 318 ------- null} h -t 31.871 -s 1 -d 3 -p ack -e 40 -c 0 -i 649 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.8726 -s 28 -d 1 -p ack -e 40 -c 0 -i 650 -a 0 -x {21.0 3.0 319 ------- null} + -t 31.8726 -s 1 -d 3 -p ack -e 40 -c 0 -i 650 -a 0 -x {21.0 3.0 319 ------- null} - -t 31.8726 -s 1 -d 3 -p ack -e 40 -c 0 -i 650 -a 0 -x {21.0 3.0 319 ------- null} h -t 31.8726 -s 1 -d 3 -p ack -e 40 -c 0 -i 650 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.8742 -s 28 -d 1 -p ack -e 40 -c 0 -i 651 -a 0 -x {21.0 3.0 320 ------- null} + -t 31.8742 -s 1 -d 3 -p ack -e 40 -c 0 -i 651 -a 0 -x {21.0 3.0 320 ------- null} - -t 31.8742 -s 1 -d 3 -p ack -e 40 -c 0 -i 651 -a 0 -x {21.0 3.0 320 ------- null} h -t 31.8742 -s 1 -d 3 -p ack -e 40 -c 0 -i 651 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.8758 -s 28 -d 1 -p ack -e 40 -c 0 -i 652 -a 0 -x {21.0 3.0 321 ------- null} + -t 31.8758 -s 1 -d 3 -p ack -e 40 -c 0 -i 652 -a 0 -x {21.0 3.0 321 ------- null} - -t 31.8758 -s 1 -d 3 -p ack -e 40 -c 0 -i 652 -a 0 -x {21.0 3.0 321 ------- null} h -t 31.8758 -s 1 -d 3 -p ack -e 40 -c 0 -i 652 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.8774 -s 28 -d 1 -p ack -e 40 -c 0 -i 653 -a 0 -x {21.0 3.0 322 ------- null} + -t 31.8774 -s 1 -d 3 -p ack -e 40 -c 0 -i 653 -a 0 -x {21.0 3.0 322 ------- null} - -t 31.8774 -s 1 -d 3 -p ack -e 40 -c 0 -i 653 -a 0 -x {21.0 3.0 322 ------- null} h -t 31.8774 -s 1 -d 3 -p ack -e 40 -c 0 -i 653 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.879 -s 28 -d 1 -p ack -e 40 -c 0 -i 654 -a 0 -x {21.0 3.0 323 ------- null} + -t 31.879 -s 1 -d 3 -p ack -e 40 -c 0 -i 654 -a 0 -x {21.0 3.0 323 ------- null} - -t 31.879 -s 1 -d 3 -p ack -e 40 -c 0 -i 654 -a 0 -x {21.0 3.0 323 ------- null} h -t 31.879 -s 1 -d 3 -p ack -e 40 -c 0 -i 654 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.8806 -s 28 -d 1 -p ack -e 40 -c 0 -i 655 -a 0 -x {21.0 3.0 324 ------- null} + -t 31.8806 -s 1 -d 3 -p ack -e 40 -c 0 -i 655 -a 0 -x {21.0 3.0 324 ------- null} - -t 31.8806 -s 1 -d 3 -p ack -e 40 -c 0 -i 655 -a 0 -x {21.0 3.0 324 ------- null} h -t 31.8806 -s 1 -d 3 -p ack -e 40 -c 0 -i 655 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.8822 -s 28 -d 1 -p ack -e 40 -c 0 -i 656 -a 0 -x {21.0 3.0 325 ------- null} + -t 31.8822 -s 1 -d 3 -p ack -e 40 -c 0 -i 656 -a 0 -x {21.0 3.0 325 ------- null} - -t 31.8822 -s 1 -d 3 -p ack -e 40 -c 0 -i 656 -a 0 -x {21.0 3.0 325 ------- null} h -t 31.8822 -s 1 -d 3 -p ack -e 40 -c 0 -i 656 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.8838 -s 28 -d 1 -p ack -e 40 -c 0 -i 657 -a 0 -x {21.0 3.0 326 ------- null} + -t 31.8838 -s 1 -d 3 -p ack -e 40 -c 0 -i 657 -a 0 -x {21.0 3.0 326 ------- null} - -t 31.8838 -s 1 -d 3 -p ack -e 40 -c 0 -i 657 -a 0 -x {21.0 3.0 326 ------- null} h -t 31.8838 -s 1 -d 3 -p ack -e 40 -c 0 -i 657 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.8854 -s 28 -d 1 -p ack -e 40 -c 0 -i 658 -a 0 -x {21.0 3.0 327 ------- null} + -t 31.8854 -s 1 -d 3 -p ack -e 40 -c 0 -i 658 -a 0 -x {21.0 3.0 327 ------- null} - -t 31.8854 -s 1 -d 3 -p ack -e 40 -c 0 -i 658 -a 0 -x {21.0 3.0 327 ------- null} h -t 31.8854 -s 1 -d 3 -p ack -e 40 -c 0 -i 658 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.887 -s 28 -d 1 -p ack -e 40 -c 0 -i 659 -a 0 -x {21.0 3.0 328 ------- null} + -t 31.887 -s 1 -d 3 -p ack -e 40 -c 0 -i 659 -a 0 -x {21.0 3.0 328 ------- null} - -t 31.887 -s 1 -d 3 -p ack -e 40 -c 0 -i 659 -a 0 -x {21.0 3.0 328 ------- null} h -t 31.887 -s 1 -d 3 -p ack -e 40 -c 0 -i 659 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.8886 -s 28 -d 1 -p ack -e 40 -c 0 -i 660 -a 0 -x {21.0 3.0 329 ------- null} + -t 31.8886 -s 1 -d 3 -p ack -e 40 -c 0 -i 660 -a 0 -x {21.0 3.0 329 ------- null} - -t 31.8886 -s 1 -d 3 -p ack -e 40 -c 0 -i 660 -a 0 -x {21.0 3.0 329 ------- null} h -t 31.8886 -s 1 -d 3 -p ack -e 40 -c 0 -i 660 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.8902 -s 28 -d 1 -p ack -e 40 -c 0 -i 661 -a 0 -x {21.0 3.0 330 ------- null} + -t 31.8902 -s 1 -d 3 -p ack -e 40 -c 0 -i 661 -a 0 -x {21.0 3.0 330 ------- null} - -t 31.8902 -s 1 -d 3 -p ack -e 40 -c 0 -i 661 -a 0 -x {21.0 3.0 330 ------- null} h -t 31.8902 -s 1 -d 3 -p ack -e 40 -c 0 -i 661 -a 0 -x {21.0 3.0 -1 ------- null} r -t 31.9998 -s 1 -d 3 -p ack -e 40 -c 0 -i 642 -a 0 -x {21.0 3.0 311 ------- null} + -t 31.9998 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 662 -a 0 -x {3.0 21.0 331 ------- null} - -t 31.9998 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 662 -a 0 -x {3.0 21.0 331 ------- null} h -t 31.9998 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 662 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.0014 -s 1 -d 3 -p ack -e 40 -c 0 -i 643 -a 0 -x {21.0 3.0 312 ------- null} + -t 32.0014 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {3.0 21.0 332 ------- null} - -t 32.0014 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {3.0 21.0 332 ------- null} h -t 32.0014 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.003 -s 1 -d 3 -p ack -e 40 -c 0 -i 644 -a 0 -x {21.0 3.0 313 ------- null} + -t 32.003 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 664 -a 0 -x {3.0 21.0 333 ------- null} - -t 32.003 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 664 -a 0 -x {3.0 21.0 333 ------- null} h -t 32.003 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 664 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.0046 -s 1 -d 3 -p ack -e 40 -c 0 -i 645 -a 0 -x {21.0 3.0 314 ------- null} + -t 32.0046 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {3.0 21.0 334 ------- null} - -t 32.0046 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {3.0 21.0 334 ------- null} h -t 32.0046 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.0062 -s 1 -d 3 -p ack -e 40 -c 0 -i 646 -a 0 -x {21.0 3.0 315 ------- null} + -t 32.0062 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 666 -a 0 -x {3.0 21.0 335 ------- null} - -t 32.0062 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 666 -a 0 -x {3.0 21.0 335 ------- null} h -t 32.0062 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 666 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.0078 -s 1 -d 3 -p ack -e 40 -c 0 -i 647 -a 0 -x {21.0 3.0 316 ------- null} + -t 32.0078 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {3.0 21.0 336 ------- null} - -t 32.0078 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {3.0 21.0 336 ------- null} h -t 32.0078 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.0094 -s 1 -d 3 -p ack -e 40 -c 0 -i 648 -a 0 -x {21.0 3.0 317 ------- null} + -t 32.0094 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 668 -a 0 -x {3.0 21.0 337 ------- null} - -t 32.0094 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 668 -a 0 -x {3.0 21.0 337 ------- null} h -t 32.0094 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 668 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.011 -s 1 -d 3 -p ack -e 40 -c 0 -i 649 -a 0 -x {21.0 3.0 318 ------- null} + -t 32.011 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {3.0 21.0 338 ------- null} - -t 32.011 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {3.0 21.0 338 ------- null} h -t 32.011 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.0126 -s 1 -d 3 -p ack -e 40 -c 0 -i 650 -a 0 -x {21.0 3.0 319 ------- null} + -t 32.0126 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 670 -a 0 -x {3.0 21.0 339 ------- null} - -t 32.0126 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 670 -a 0 -x {3.0 21.0 339 ------- null} h -t 32.0126 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 670 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.0142 -s 1 -d 3 -p ack -e 40 -c 0 -i 651 -a 0 -x {21.0 3.0 320 ------- null} + -t 32.0142 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {3.0 21.0 340 ------- null} - -t 32.0142 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {3.0 21.0 340 ------- null} h -t 32.0142 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.0158 -s 1 -d 3 -p ack -e 40 -c 0 -i 652 -a 0 -x {21.0 3.0 321 ------- null} + -t 32.0158 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 672 -a 0 -x {3.0 21.0 341 ------- null} - -t 32.0158 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 672 -a 0 -x {3.0 21.0 341 ------- null} h -t 32.0158 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 672 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.0174 -s 1 -d 3 -p ack -e 40 -c 0 -i 653 -a 0 -x {21.0 3.0 322 ------- null} + -t 32.0174 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {3.0 21.0 342 ------- null} - -t 32.0174 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {3.0 21.0 342 ------- null} h -t 32.0174 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.019 -s 1 -d 3 -p ack -e 40 -c 0 -i 654 -a 0 -x {21.0 3.0 323 ------- null} + -t 32.019 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 674 -a 0 -x {3.0 21.0 343 ------- null} - -t 32.019 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 674 -a 0 -x {3.0 21.0 343 ------- null} h -t 32.019 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 674 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.0206 -s 1 -d 3 -p ack -e 40 -c 0 -i 655 -a 0 -x {21.0 3.0 324 ------- null} + -t 32.0206 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {3.0 21.0 344 ------- null} - -t 32.0206 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {3.0 21.0 344 ------- null} h -t 32.0206 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.0222 -s 1 -d 3 -p ack -e 40 -c 0 -i 656 -a 0 -x {21.0 3.0 325 ------- null} + -t 32.0222 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 676 -a 0 -x {3.0 21.0 345 ------- null} - -t 32.0222 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 676 -a 0 -x {3.0 21.0 345 ------- null} h -t 32.0222 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 676 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.0238 -s 1 -d 3 -p ack -e 40 -c 0 -i 657 -a 0 -x {21.0 3.0 326 ------- null} + -t 32.0238 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {3.0 21.0 346 ------- null} - -t 32.0238 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {3.0 21.0 346 ------- null} h -t 32.0238 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.0254 -s 1 -d 3 -p ack -e 40 -c 0 -i 658 -a 0 -x {21.0 3.0 327 ------- null} + -t 32.0254 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 678 -a 0 -x {3.0 21.0 347 ------- null} - -t 32.0254 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 678 -a 0 -x {3.0 21.0 347 ------- null} h -t 32.0254 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 678 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.027 -s 1 -d 3 -p ack -e 40 -c 0 -i 659 -a 0 -x {21.0 3.0 328 ------- null} + -t 32.027 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {3.0 21.0 348 ------- null} - -t 32.027 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {3.0 21.0 348 ------- null} h -t 32.027 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.0286 -s 1 -d 3 -p ack -e 40 -c 0 -i 660 -a 0 -x {21.0 3.0 329 ------- null} + -t 32.0286 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 680 -a 0 -x {3.0 21.0 349 ------- null} - -t 32.0286 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 680 -a 0 -x {3.0 21.0 349 ------- null} h -t 32.0286 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 680 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.0302 -s 1 -d 3 -p ack -e 40 -c 0 -i 661 -a 0 -x {21.0 3.0 330 ------- null} + -t 32.0302 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {3.0 21.0 350 ------- null} - -t 32.0302 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {3.0 21.0 350 ------- null} h -t 32.0302 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.1414 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 662 -a 0 -x {3.0 21.0 331 ------- null} + -t 32.1414 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 662 -a 0 -x {3.0 21.0 331 ------- null} - -t 32.1414 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 662 -a 0 -x {3.0 21.0 331 ------- null} h -t 32.1414 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 662 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.143 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {3.0 21.0 332 ------- null} + -t 32.143 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {3.0 21.0 332 ------- null} - -t 32.143 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {3.0 21.0 332 ------- null} h -t 32.143 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.1446 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 664 -a 0 -x {3.0 21.0 333 ------- null} + -t 32.1446 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 664 -a 0 -x {3.0 21.0 333 ------- null} - -t 32.1446 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 664 -a 0 -x {3.0 21.0 333 ------- null} h -t 32.1446 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 664 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.1462 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {3.0 21.0 334 ------- null} + -t 32.1462 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {3.0 21.0 334 ------- null} - -t 32.1462 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {3.0 21.0 334 ------- null} h -t 32.1462 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.1478 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 666 -a 0 -x {3.0 21.0 335 ------- null} + -t 32.1478 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 666 -a 0 -x {3.0 21.0 335 ------- null} - -t 32.1478 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 666 -a 0 -x {3.0 21.0 335 ------- null} h -t 32.1478 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 666 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.1494 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {3.0 21.0 336 ------- null} + -t 32.1494 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {3.0 21.0 336 ------- null} - -t 32.1494 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {3.0 21.0 336 ------- null} h -t 32.1494 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.151 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 668 -a 0 -x {3.0 21.0 337 ------- null} + -t 32.151 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 668 -a 0 -x {3.0 21.0 337 ------- null} - -t 32.151 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 668 -a 0 -x {3.0 21.0 337 ------- null} h -t 32.151 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 668 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.1526 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {3.0 21.0 338 ------- null} + -t 32.1526 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {3.0 21.0 338 ------- null} - -t 32.1526 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {3.0 21.0 338 ------- null} h -t 32.1526 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.1542 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 670 -a 0 -x {3.0 21.0 339 ------- null} + -t 32.1542 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 670 -a 0 -x {3.0 21.0 339 ------- null} - -t 32.1542 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 670 -a 0 -x {3.0 21.0 339 ------- null} h -t 32.1542 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 670 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.1558 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {3.0 21.0 340 ------- null} + -t 32.1558 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {3.0 21.0 340 ------- null} - -t 32.1558 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {3.0 21.0 340 ------- null} h -t 32.1558 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.1574 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 672 -a 0 -x {3.0 21.0 341 ------- null} + -t 32.1574 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 672 -a 0 -x {3.0 21.0 341 ------- null} - -t 32.1574 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 672 -a 0 -x {3.0 21.0 341 ------- null} h -t 32.1574 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 672 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.159 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {3.0 21.0 342 ------- null} + -t 32.159 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {3.0 21.0 342 ------- null} - -t 32.159 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {3.0 21.0 342 ------- null} h -t 32.159 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.1606 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 674 -a 0 -x {3.0 21.0 343 ------- null} + -t 32.1606 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 674 -a 0 -x {3.0 21.0 343 ------- null} - -t 32.1606 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 674 -a 0 -x {3.0 21.0 343 ------- null} h -t 32.1606 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 674 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.1622 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {3.0 21.0 344 ------- null} + -t 32.1622 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {3.0 21.0 344 ------- null} - -t 32.1622 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {3.0 21.0 344 ------- null} h -t 32.1622 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.1638 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 676 -a 0 -x {3.0 21.0 345 ------- null} + -t 32.1638 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 676 -a 0 -x {3.0 21.0 345 ------- null} - -t 32.1638 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 676 -a 0 -x {3.0 21.0 345 ------- null} h -t 32.1638 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 676 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.1654 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {3.0 21.0 346 ------- null} + -t 32.1654 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {3.0 21.0 346 ------- null} - -t 32.1654 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {3.0 21.0 346 ------- null} h -t 32.1654 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.167 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 678 -a 0 -x {3.0 21.0 347 ------- null} + -t 32.167 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 678 -a 0 -x {3.0 21.0 347 ------- null} - -t 32.167 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 678 -a 0 -x {3.0 21.0 347 ------- null} h -t 32.167 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 678 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.1686 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {3.0 21.0 348 ------- null} + -t 32.1686 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {3.0 21.0 348 ------- null} - -t 32.1686 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {3.0 21.0 348 ------- null} h -t 32.1686 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.1702 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 680 -a 0 -x {3.0 21.0 349 ------- null} + -t 32.1702 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 680 -a 0 -x {3.0 21.0 349 ------- null} - -t 32.1702 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 680 -a 0 -x {3.0 21.0 349 ------- null} h -t 32.1702 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 680 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.1718 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {3.0 21.0 350 ------- null} + -t 32.1718 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {3.0 21.0 350 ------- null} - -t 32.1718 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {3.0 21.0 350 ------- null} h -t 32.1718 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.443 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 662 -a 0 -x {3.0 21.0 331 ------- null} + -t 32.443 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 662 -a 0 -x {3.0 21.0 331 ------- null} - -t 32.443 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 662 -a 0 -x {3.0 21.0 331 ------- null} h -t 32.443 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 662 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.4446 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {3.0 21.0 332 ------- null} + -t 32.4446 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {3.0 21.0 332 ------- null} - -t 32.4446 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {3.0 21.0 332 ------- null} h -t 32.4446 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.4462 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 664 -a 0 -x {3.0 21.0 333 ------- null} + -t 32.4462 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 664 -a 0 -x {3.0 21.0 333 ------- null} - -t 32.4462 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 664 -a 0 -x {3.0 21.0 333 ------- null} h -t 32.4462 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 664 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.4478 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {3.0 21.0 334 ------- null} + -t 32.4478 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {3.0 21.0 334 ------- null} - -t 32.4478 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {3.0 21.0 334 ------- null} h -t 32.4478 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.4494 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 666 -a 0 -x {3.0 21.0 335 ------- null} + -t 32.4494 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 666 -a 0 -x {3.0 21.0 335 ------- null} - -t 32.4494 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 666 -a 0 -x {3.0 21.0 335 ------- null} h -t 32.4494 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 666 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.451 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {3.0 21.0 336 ------- null} + -t 32.451 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {3.0 21.0 336 ------- null} - -t 32.451 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {3.0 21.0 336 ------- null} h -t 32.451 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.4526 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 668 -a 0 -x {3.0 21.0 337 ------- null} + -t 32.4526 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 668 -a 0 -x {3.0 21.0 337 ------- null} - -t 32.4526 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 668 -a 0 -x {3.0 21.0 337 ------- null} h -t 32.4526 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 668 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.4542 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {3.0 21.0 338 ------- null} + -t 32.4542 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {3.0 21.0 338 ------- null} - -t 32.4542 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {3.0 21.0 338 ------- null} h -t 32.4542 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.4558 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 670 -a 0 -x {3.0 21.0 339 ------- null} + -t 32.4558 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 670 -a 0 -x {3.0 21.0 339 ------- null} - -t 32.4558 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 670 -a 0 -x {3.0 21.0 339 ------- null} h -t 32.4558 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 670 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.4574 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {3.0 21.0 340 ------- null} + -t 32.4574 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {3.0 21.0 340 ------- null} - -t 32.4574 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {3.0 21.0 340 ------- null} h -t 32.4574 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.459 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 672 -a 0 -x {3.0 21.0 341 ------- null} + -t 32.459 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 672 -a 0 -x {3.0 21.0 341 ------- null} - -t 32.459 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 672 -a 0 -x {3.0 21.0 341 ------- null} h -t 32.459 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 672 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.4606 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {3.0 21.0 342 ------- null} + -t 32.4606 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {3.0 21.0 342 ------- null} - -t 32.4606 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {3.0 21.0 342 ------- null} h -t 32.4606 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.4622 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 674 -a 0 -x {3.0 21.0 343 ------- null} + -t 32.4622 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 674 -a 0 -x {3.0 21.0 343 ------- null} - -t 32.4622 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 674 -a 0 -x {3.0 21.0 343 ------- null} h -t 32.4622 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 674 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.4638 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {3.0 21.0 344 ------- null} + -t 32.4638 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {3.0 21.0 344 ------- null} - -t 32.4638 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {3.0 21.0 344 ------- null} h -t 32.4638 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.4654 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 676 -a 0 -x {3.0 21.0 345 ------- null} + -t 32.4654 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 676 -a 0 -x {3.0 21.0 345 ------- null} - -t 32.4654 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 676 -a 0 -x {3.0 21.0 345 ------- null} h -t 32.4654 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 676 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.467 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {3.0 21.0 346 ------- null} + -t 32.467 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {3.0 21.0 346 ------- null} - -t 32.467 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {3.0 21.0 346 ------- null} h -t 32.467 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.4686 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 678 -a 0 -x {3.0 21.0 347 ------- null} + -t 32.4686 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 678 -a 0 -x {3.0 21.0 347 ------- null} - -t 32.4686 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 678 -a 0 -x {3.0 21.0 347 ------- null} h -t 32.4686 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 678 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.4702 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {3.0 21.0 348 ------- null} + -t 32.4702 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {3.0 21.0 348 ------- null} - -t 32.4702 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {3.0 21.0 348 ------- null} h -t 32.4702 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.4718 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 680 -a 0 -x {3.0 21.0 349 ------- null} + -t 32.4718 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 680 -a 0 -x {3.0 21.0 349 ------- null} - -t 32.4718 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 680 -a 0 -x {3.0 21.0 349 ------- null} h -t 32.4718 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 680 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.4734 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {3.0 21.0 350 ------- null} + -t 32.4734 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {3.0 21.0 350 ------- null} - -t 32.4734 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {3.0 21.0 350 ------- null} h -t 32.4734 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.7946 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 662 -a 0 -x {3.0 21.0 331 ------- null} + -t 32.7946 -s 21 -d 28 -p ack -e 40 -c 0 -i 682 -a 0 -x {21.0 3.0 331 ------- null} - -t 32.7946 -s 21 -d 28 -p ack -e 40 -c 0 -i 682 -a 0 -x {21.0 3.0 331 ------- null} h -t 32.7946 -s 21 -d 28 -p ack -e 40 -c 0 -i 682 -a 0 -x {21.0 3.0 -1 ------- null} r -t 32.7962 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {3.0 21.0 332 ------- null} + -t 32.7962 -s 21 -d 28 -p ack -e 40 -c 0 -i 683 -a 0 -x {21.0 3.0 332 ------- null} - -t 32.7962 -s 21 -d 28 -p ack -e 40 -c 0 -i 683 -a 0 -x {21.0 3.0 332 ------- null} h -t 32.7962 -s 21 -d 28 -p ack -e 40 -c 0 -i 683 -a 0 -x {21.0 3.0 -1 ------- null} r -t 32.7978 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 664 -a 0 -x {3.0 21.0 333 ------- null} + -t 32.7978 -s 21 -d 28 -p ack -e 40 -c 0 -i 684 -a 0 -x {21.0 3.0 333 ------- null} - -t 32.7978 -s 21 -d 28 -p ack -e 40 -c 0 -i 684 -a 0 -x {21.0 3.0 333 ------- null} h -t 32.7978 -s 21 -d 28 -p ack -e 40 -c 0 -i 684 -a 0 -x {21.0 3.0 -1 ------- null} r -t 32.7994 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {3.0 21.0 334 ------- null} + -t 32.7994 -s 21 -d 28 -p ack -e 40 -c 0 -i 685 -a 0 -x {21.0 3.0 334 ------- null} - -t 32.7994 -s 21 -d 28 -p ack -e 40 -c 0 -i 685 -a 0 -x {21.0 3.0 334 ------- null} h -t 32.7994 -s 21 -d 28 -p ack -e 40 -c 0 -i 685 -a 0 -x {21.0 3.0 -1 ------- null} r -t 32.801 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 666 -a 0 -x {3.0 21.0 335 ------- null} + -t 32.801 -s 21 -d 28 -p ack -e 40 -c 0 -i 686 -a 0 -x {21.0 3.0 335 ------- null} - -t 32.801 -s 21 -d 28 -p ack -e 40 -c 0 -i 686 -a 0 -x {21.0 3.0 335 ------- null} h -t 32.801 -s 21 -d 28 -p ack -e 40 -c 0 -i 686 -a 0 -x {21.0 3.0 -1 ------- null} r -t 32.8026 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {3.0 21.0 336 ------- null} + -t 32.8026 -s 21 -d 28 -p ack -e 40 -c 0 -i 687 -a 0 -x {21.0 3.0 336 ------- null} - -t 32.8026 -s 21 -d 28 -p ack -e 40 -c 0 -i 687 -a 0 -x {21.0 3.0 336 ------- null} h -t 32.8026 -s 21 -d 28 -p ack -e 40 -c 0 -i 687 -a 0 -x {21.0 3.0 -1 ------- null} r -t 32.8042 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 668 -a 0 -x {3.0 21.0 337 ------- null} + -t 32.8042 -s 21 -d 28 -p ack -e 40 -c 0 -i 688 -a 0 -x {21.0 3.0 337 ------- null} - -t 32.8042 -s 21 -d 28 -p ack -e 40 -c 0 -i 688 -a 0 -x {21.0 3.0 337 ------- null} h -t 32.8042 -s 21 -d 28 -p ack -e 40 -c 0 -i 688 -a 0 -x {21.0 3.0 -1 ------- null} r -t 32.8058 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {3.0 21.0 338 ------- null} + -t 32.8058 -s 21 -d 28 -p ack -e 40 -c 0 -i 689 -a 0 -x {21.0 3.0 338 ------- null} - -t 32.8058 -s 21 -d 28 -p ack -e 40 -c 0 -i 689 -a 0 -x {21.0 3.0 338 ------- null} h -t 32.8058 -s 21 -d 28 -p ack -e 40 -c 0 -i 689 -a 0 -x {21.0 3.0 -1 ------- null} r -t 32.8074 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 670 -a 0 -x {3.0 21.0 339 ------- null} + -t 32.8074 -s 21 -d 28 -p ack -e 40 -c 0 -i 690 -a 0 -x {21.0 3.0 339 ------- null} - -t 32.8074 -s 21 -d 28 -p ack -e 40 -c 0 -i 690 -a 0 -x {21.0 3.0 339 ------- null} h -t 32.8074 -s 21 -d 28 -p ack -e 40 -c 0 -i 690 -a 0 -x {21.0 3.0 -1 ------- null} r -t 32.809 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {3.0 21.0 340 ------- null} + -t 32.809 -s 21 -d 28 -p ack -e 40 -c 0 -i 691 -a 0 -x {21.0 3.0 340 ------- null} - -t 32.809 -s 21 -d 28 -p ack -e 40 -c 0 -i 691 -a 0 -x {21.0 3.0 340 ------- null} h -t 32.809 -s 21 -d 28 -p ack -e 40 -c 0 -i 691 -a 0 -x {21.0 3.0 -1 ------- null} r -t 32.8106 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 672 -a 0 -x {3.0 21.0 341 ------- null} + -t 32.8106 -s 21 -d 28 -p ack -e 40 -c 0 -i 692 -a 0 -x {21.0 3.0 341 ------- null} - -t 32.8106 -s 21 -d 28 -p ack -e 40 -c 0 -i 692 -a 0 -x {21.0 3.0 341 ------- null} h -t 32.8106 -s 21 -d 28 -p ack -e 40 -c 0 -i 692 -a 0 -x {21.0 3.0 -1 ------- null} r -t 32.8122 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {3.0 21.0 342 ------- null} + -t 32.8122 -s 21 -d 28 -p ack -e 40 -c 0 -i 693 -a 0 -x {21.0 3.0 342 ------- null} - -t 32.8122 -s 21 -d 28 -p ack -e 40 -c 0 -i 693 -a 0 -x {21.0 3.0 342 ------- null} h -t 32.8122 -s 21 -d 28 -p ack -e 40 -c 0 -i 693 -a 0 -x {21.0 3.0 -1 ------- null} r -t 32.8138 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 674 -a 0 -x {3.0 21.0 343 ------- null} + -t 32.8138 -s 21 -d 28 -p ack -e 40 -c 0 -i 694 -a 0 -x {21.0 3.0 343 ------- null} - -t 32.8138 -s 21 -d 28 -p ack -e 40 -c 0 -i 694 -a 0 -x {21.0 3.0 343 ------- null} h -t 32.8138 -s 21 -d 28 -p ack -e 40 -c 0 -i 694 -a 0 -x {21.0 3.0 -1 ------- null} r -t 32.8154 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {3.0 21.0 344 ------- null} + -t 32.8154 -s 21 -d 28 -p ack -e 40 -c 0 -i 695 -a 0 -x {21.0 3.0 344 ------- null} - -t 32.8154 -s 21 -d 28 -p ack -e 40 -c 0 -i 695 -a 0 -x {21.0 3.0 344 ------- null} h -t 32.8154 -s 21 -d 28 -p ack -e 40 -c 0 -i 695 -a 0 -x {21.0 3.0 -1 ------- null} r -t 32.817 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 676 -a 0 -x {3.0 21.0 345 ------- null} + -t 32.817 -s 21 -d 28 -p ack -e 40 -c 0 -i 696 -a 0 -x {21.0 3.0 345 ------- null} - -t 32.817 -s 21 -d 28 -p ack -e 40 -c 0 -i 696 -a 0 -x {21.0 3.0 345 ------- null} h -t 32.817 -s 21 -d 28 -p ack -e 40 -c 0 -i 696 -a 0 -x {21.0 3.0 -1 ------- null} r -t 32.8186 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {3.0 21.0 346 ------- null} + -t 32.8186 -s 21 -d 28 -p ack -e 40 -c 0 -i 697 -a 0 -x {21.0 3.0 346 ------- null} - -t 32.8186 -s 21 -d 28 -p ack -e 40 -c 0 -i 697 -a 0 -x {21.0 3.0 346 ------- null} h -t 32.8186 -s 21 -d 28 -p ack -e 40 -c 0 -i 697 -a 0 -x {21.0 3.0 -1 ------- null} r -t 32.8202 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 678 -a 0 -x {3.0 21.0 347 ------- null} + -t 32.8202 -s 21 -d 28 -p ack -e 40 -c 0 -i 698 -a 0 -x {21.0 3.0 347 ------- null} - -t 32.8202 -s 21 -d 28 -p ack -e 40 -c 0 -i 698 -a 0 -x {21.0 3.0 347 ------- null} h -t 32.8202 -s 21 -d 28 -p ack -e 40 -c 0 -i 698 -a 0 -x {21.0 3.0 -1 ------- null} r -t 32.8218 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {3.0 21.0 348 ------- null} + -t 32.8218 -s 21 -d 28 -p ack -e 40 -c 0 -i 699 -a 0 -x {21.0 3.0 348 ------- null} - -t 32.8218 -s 21 -d 28 -p ack -e 40 -c 0 -i 699 -a 0 -x {21.0 3.0 348 ------- null} h -t 32.8218 -s 21 -d 28 -p ack -e 40 -c 0 -i 699 -a 0 -x {21.0 3.0 -1 ------- null} r -t 32.8234 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 680 -a 0 -x {3.0 21.0 349 ------- null} + -t 32.8234 -s 21 -d 28 -p ack -e 40 -c 0 -i 700 -a 0 -x {21.0 3.0 349 ------- null} - -t 32.8234 -s 21 -d 28 -p ack -e 40 -c 0 -i 700 -a 0 -x {21.0 3.0 349 ------- null} h -t 32.8234 -s 21 -d 28 -p ack -e 40 -c 0 -i 700 -a 0 -x {21.0 3.0 -1 ------- null} r -t 32.825 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {3.0 21.0 350 ------- null} + -t 32.825 -s 21 -d 28 -p ack -e 40 -c 0 -i 701 -a 0 -x {21.0 3.0 350 ------- null} - -t 32.825 -s 21 -d 28 -p ack -e 40 -c 0 -i 701 -a 0 -x {21.0 3.0 350 ------- null} h -t 32.825 -s 21 -d 28 -p ack -e 40 -c 0 -i 701 -a 0 -x {21.0 3.0 -1 ------- null} r -t 33.1447 -s 21 -d 28 -p ack -e 40 -c 0 -i 682 -a 0 -x {21.0 3.0 331 ------- null} + -t 33.1447 -s 28 -d 1 -p ack -e 40 -c 0 -i 682 -a 0 -x {21.0 3.0 331 ------- null} - -t 33.1447 -s 28 -d 1 -p ack -e 40 -c 0 -i 682 -a 0 -x {21.0 3.0 331 ------- null} h -t 33.1447 -s 28 -d 1 -p ack -e 40 -c 0 -i 682 -a 0 -x {21.0 3.0 -1 ------- null} r -t 33.1463 -s 21 -d 28 -p ack -e 40 -c 0 -i 683 -a 0 -x {21.0 3.0 332 ------- null} + -t 33.1463 -s 28 -d 1 -p ack -e 40 -c 0 -i 683 -a 0 -x {21.0 3.0 332 ------- null} - -t 33.1463 -s 28 -d 1 -p ack -e 40 -c 0 -i 683 -a 0 -x {21.0 3.0 332 ------- null} h -t 33.1463 -s 28 -d 1 -p ack -e 40 -c 0 -i 683 -a 0 -x {21.0 3.0 -1 ------- null} r -t 33.1479 -s 21 -d 28 -p ack -e 40 -c 0 -i 684 -a 0 -x {21.0 3.0 333 ------- null} + -t 33.1479 -s 28 -d 1 -p ack -e 40 -c 0 -i 684 -a 0 -x {21.0 3.0 333 ------- null} - -t 33.1479 -s 28 -d 1 -p ack -e 40 -c 0 -i 684 -a 0 -x {21.0 3.0 333 ------- null} h -t 33.1479 -s 28 -d 1 -p ack -e 40 -c 0 -i 684 -a 0 -x {21.0 3.0 -1 ------- null} r -t 33.1495 -s 21 -d 28 -p ack -e 40 -c 0 -i 685 -a 0 -x {21.0 3.0 334 ------- null} + -t 33.1495 -s 28 -d 1 -p ack -e 40 -c 0 -i 685 -a 0 -x {21.0 3.0 334 ------- null} - -t 33.1495 -s 28 -d 1 -p ack -e 40 -c 0 -i 685 -a 0 -x {21.0 3.0 334 ------- null} h -t 33.1495 -s 28 -d 1 -p ack -e 40 -c 0 -i 685 -a 0 -x {21.0 3.0 -1 ------- null} r -t 33.1511 -s 21 -d 28 -p ack -e 40 -c 0 -i 686 -a 0 -x {21.0 3.0 335 ------- null} + -t 33.1511 -s 28 -d 1 -p ack -e 40 -c 0 -i 686 -a 0 -x {21.0 3.0 335 ------- null} - -t 33.1511 -s 28 -d 1 -p ack -e 40 -c 0 -i 686 -a 0 -x {21.0 3.0 335 ------- null} h -t 33.1511 -s 28 -d 1 -p ack -e 40 -c 0 -i 686 -a 0 -x {21.0 3.0 -1 ------- null} r -t 33.1527 -s 21 -d 28 -p ack -e 40 -c 0 -i 687 -a 0 -x {21.0 3.0 336 ------- null} + -t 33.1527 -s 28 -d 1 -p ack -e 40 -c 0 -i 687 -a 0 -x {21.0 3.0 336 ------- null} - -t 33.1527 -s 28 -d 1 -p ack -e 40 -c 0 -i 687 -a 0 -x {21.0 3.0 336 ------- null} h -t 33.1527 -s 28 -d 1 -p ack -e 40 -c 0 -i 687 -a 0 -x {21.0 3.0 -1 ------- null} r -t 33.1543 -s 21 -d 28 -p ack -e 40 -c 0 -i 688 -a 0 -x {21.0 3.0 337 ------- null} + -t 33.1543 -s 28 -d 1 -p ack -e 40 -c 0 -i 688 -a 0 -x {21.0 3.0 337 ------- null} - -t 33.1543 -s 28 -d 1 -p ack -e 40 -c 0 -i 688 -a 0 -x {21.0 3.0 337 ------- null} h -t 33.1543 -s 28 -d 1 -p ack -e 40 -c 0 -i 688 -a 0 -x {21.0 3.0 -1 ------- null} r -t 33.1559 -s 21 -d 28 -p ack -e 40 -c 0 -i 689 -a 0 -x {21.0 3.0 338 ------- null} + -t 33.1559 -s 28 -d 1 -p ack -e 40 -c 0 -i 689 -a 0 -x {21.0 3.0 338 ------- null} - -t 33.1559 -s 28 -d 1 -p ack -e 40 -c 0 -i 689 -a 0 -x {21.0 3.0 338 ------- null} h -t 33.1559 -s 28 -d 1 -p ack -e 40 -c 0 -i 689 -a 0 -x {21.0 3.0 -1 ------- null} r -t 33.1575 -s 21 -d 28 -p ack -e 40 -c 0 -i 690 -a 0 -x {21.0 3.0 339 ------- null} + -t 33.1575 -s 28 -d 1 -p ack -e 40 -c 0 -i 690 -a 0 -x {21.0 3.0 339 ------- null} - -t 33.1575 -s 28 -d 1 -p ack -e 40 -c 0 -i 690 -a 0 -x {21.0 3.0 339 ------- null} h -t 33.1575 -s 28 -d 1 -p ack -e 40 -c 0 -i 690 -a 0 -x {21.0 3.0 -1 ------- null} r -t 33.1591 -s 21 -d 28 -p ack -e 40 -c 0 -i 691 -a 0 -x {21.0 3.0 340 ------- null} + -t 33.1591 -s 28 -d 1 -p ack -e 40 -c 0 -i 691 -a 0 -x {21.0 3.0 340 ------- null} - -t 33.1591 -s 28 -d 1 -p ack -e 40 -c 0 -i 691 -a 0 -x {21.0 3.0 340 ------- null} h -t 33.1591 -s 28 -d 1 -p ack -e 40 -c 0 -i 691 -a 0 -x {21.0 3.0 -1 ------- null} r -t 33.1607 -s 21 -d 28 -p ack -e 40 -c 0 -i 692 -a 0 -x {21.0 3.0 341 ------- null} + -t 33.1607 -s 28 -d 1 -p ack -e 40 -c 0 -i 692 -a 0 -x {21.0 3.0 341 ------- null} - -t 33.1607 -s 28 -d 1 -p ack -e 40 -c 0 -i 692 -a 0 -x {21.0 3.0 341 ------- null} h -t 33.1607 -s 28 -d 1 -p ack -e 40 -c 0 -i 692 -a 0 -x {21.0 3.0 -1 ------- null} r -t 33.1623 -s 21 -d 28 -p ack -e 40 -c 0 -i 693 -a 0 -x {21.0 3.0 342 ------- null} + -t 33.1623 -s 28 -d 1 -p ack -e 40 -c 0 -i 693 -a 0 -x {21.0 3.0 342 ------- null} - -t 33.1623 -s 28 -d 1 -p ack -e 40 -c 0 -i 693 -a 0 -x {21.0 3.0 342 ------- null} h -t 33.1623 -s 28 -d 1 -p ack -e 40 -c 0 -i 693 -a 0 -x {21.0 3.0 -1 ------- null} r -t 33.1639 -s 21 -d 28 -p ack -e 40 -c 0 -i 694 -a 0 -x {21.0 3.0 343 ------- null} + -t 33.1639 -s 28 -d 1 -p ack -e 40 -c 0 -i 694 -a 0 -x {21.0 3.0 343 ------- null} - -t 33.1639 -s 28 -d 1 -p ack -e 40 -c 0 -i 694 -a 0 -x {21.0 3.0 343 ------- null} h -t 33.1639 -s 28 -d 1 -p ack -e 40 -c 0 -i 694 -a 0 -x {21.0 3.0 -1 ------- null} r -t 33.1655 -s 21 -d 28 -p ack -e 40 -c 0 -i 695 -a 0 -x {21.0 3.0 344 ------- null} + -t 33.1655 -s 28 -d 1 -p ack -e 40 -c 0 -i 695 -a 0 -x {21.0 3.0 344 ------- null} - -t 33.1655 -s 28 -d 1 -p ack -e 40 -c 0 -i 695 -a 0 -x {21.0 3.0 344 ------- null} h -t 33.1655 -s 28 -d 1 -p ack -e 40 -c 0 -i 695 -a 0 -x {21.0 3.0 -1 ------- null} r -t 33.1671 -s 21 -d 28 -p ack -e 40 -c 0 -i 696 -a 0 -x {21.0 3.0 345 ------- null} + -t 33.1671 -s 28 -d 1 -p ack -e 40 -c 0 -i 696 -a 0 -x {21.0 3.0 345 ------- null} - -t 33.1671 -s 28 -d 1 -p ack -e 40 -c 0 -i 696 -a 0 -x {21.0 3.0 345 ------- null} h -t 33.1671 -s 28 -d 1 -p ack -e 40 -c 0 -i 696 -a 0 -x {21.0 3.0 -1 ------- null} r -t 33.1687 -s 21 -d 28 -p ack -e 40 -c 0 -i 697 -a 0 -x {21.0 3.0 346 ------- null} + -t 33.1687 -s 28 -d 1 -p ack -e 40 -c 0 -i 697 -a 0 -x {21.0 3.0 346 ------- null} - -t 33.1687 -s 28 -d 1 -p ack -e 40 -c 0 -i 697 -a 0 -x {21.0 3.0 346 ------- null} h -t 33.1687 -s 28 -d 1 -p ack -e 40 -c 0 -i 697 -a 0 -x {21.0 3.0 -1 ------- null} r -t 33.1703 -s 21 -d 28 -p ack -e 40 -c 0 -i 698 -a 0 -x {21.0 3.0 347 ------- null} + -t 33.1703 -s 28 -d 1 -p ack -e 40 -c 0 -i 698 -a 0 -x {21.0 3.0 347 ------- null} - -t 33.1703 -s 28 -d 1 -p ack -e 40 -c 0 -i 698 -a 0 -x {21.0 3.0 347 ------- null} h -t 33.1703 -s 28 -d 1 -p ack -e 40 -c 0 -i 698 -a 0 -x {21.0 3.0 -1 ------- null} r -t 33.1719 -s 21 -d 28 -p ack -e 40 -c 0 -i 699 -a 0 -x {21.0 3.0 348 ------- null} + -t 33.1719 -s 28 -d 1 -p ack -e 40 -c 0 -i 699 -a 0 -x {21.0 3.0 348 ------- null} - -t 33.1719 -s 28 -d 1 -p ack -e 40 -c 0 -i 699 -a 0 -x {21.0 3.0 348 ------- null} h -t 33.1719 -s 28 -d 1 -p ack -e 40 -c 0 -i 699 -a 0 -x {21.0 3.0 -1 ------- null} r -t 33.1735 -s 21 -d 28 -p ack -e 40 -c 0 -i 700 -a 0 -x {21.0 3.0 349 ------- null} + -t 33.1735 -s 28 -d 1 -p ack -e 40 -c 0 -i 700 -a 0 -x {21.0 3.0 349 ------- null} - -t 33.1735 -s 28 -d 1 -p ack -e 40 -c 0 -i 700 -a 0 -x {21.0 3.0 349 ------- null} h -t 33.1735 -s 28 -d 1 -p ack -e 40 -c 0 -i 700 -a 0 -x {21.0 3.0 -1 ------- null} r -t 33.1751 -s 21 -d 28 -p ack -e 40 -c 0 -i 701 -a 0 -x {21.0 3.0 350 ------- null} + -t 33.1751 -s 28 -d 1 -p ack -e 40 -c 0 -i 701 -a 0 -x {21.0 3.0 350 ------- null} - -t 33.1751 -s 28 -d 1 -p ack -e 40 -c 0 -i 701 -a 0 -x {21.0 3.0 350 ------- null} h -t 33.1751 -s 28 -d 1 -p ack -e 40 -c 0 -i 701 -a 0 -x {21.0 3.0 -1 ------- null} r -t 33.4448 -s 28 -d 1 -p ack -e 40 -c 0 -i 682 -a 0 -x {21.0 3.0 331 ------- null} + -t 33.4448 -s 1 -d 3 -p ack -e 40 -c 0 -i 682 -a 0 -x {21.0 3.0 331 ------- null} - -t 33.4448 -s 1 -d 3 -p ack -e 40 -c 0 -i 682 -a 0 -x {21.0 3.0 331 ------- null} h -t 33.4448 -s 1 -d 3 -p ack -e 40 -c 0 -i 682 -a 0 -x {21.0 3.0 -1 ------- null} r -t 33.4464 -s 28 -d 1 -p ack -e 40 -c 0 -i 683 -a 0 -x {21.0 3.0 332 ------- null} + -t 33.4464 -s 1 -d 3 -p ack -e 40 -c 0 -i 683 -a 0 -x {21.0 3.0 332 ------- null} - -t 33.4464 -s 1 -d 3 -p ack -e 40 -c 0 -i 683 -a 0 -x {21.0 3.0 332 ------- null} h -t 33.4464 -s 1 -d 3 -p ack -e 40 -c 0 -i 683 -a 0 -x {21.0 3.0 -1 ------- null} r -t 33.448 -s 28 -d 1 -p ack -e 40 -c 0 -i 684 -a 0 -x {21.0 3.0 333 ------- null} + -t 33.448 -s 1 -d 3 -p ack -e 40 -c 0 -i 684 -a 0 -x {21.0 3.0 333 ------- null} - -t 33.448 -s 1 -d 3 -p ack -e 40 -c 0 -i 684 -a 0 -x {21.0 3.0 333 ------- null} h -t 33.448 -s 1 -d 3 -p ack -e 40 -c 0 -i 684 -a 0 -x {21.0 3.0 -1 ------- null} r -t 33.4496 -s 28 -d 1 -p ack -e 40 -c 0 -i 685 -a 0 -x {21.0 3.0 334 ------- null} + -t 33.4496 -s 1 -d 3 -p ack -e 40 -c 0 -i 685 -a 0 -x {21.0 3.0 334 ------- null} - -t 33.4496 -s 1 -d 3 -p ack -e 40 -c 0 -i 685 -a 0 -x {21.0 3.0 334 ------- null} h -t 33.4496 -s 1 -d 3 -p ack -e 40 -c 0 -i 685 -a 0 -x {21.0 3.0 -1 ------- null} r -t 33.4512 -s 28 -d 1 -p ack -e 40 -c 0 -i 686 -a 0 -x {21.0 3.0 335 ------- null} + -t 33.4512 -s 1 -d 3 -p ack -e 40 -c 0 -i 686 -a 0 -x {21.0 3.0 335 ------- null} - -t 33.4512 -s 1 -d 3 -p ack -e 40 -c 0 -i 686 -a 0 -x {21.0 3.0 335 ------- null} h -t 33.4512 -s 1 -d 3 -p ack -e 40 -c 0 -i 686 -a 0 -x {21.0 3.0 -1 ------- null} r -t 33.4528 -s 28 -d 1 -p ack -e 40 -c 0 -i 687 -a 0 -x {21.0 3.0 336 ------- null} + -t 33.4528 -s 1 -d 3 -p ack -e 40 -c 0 -i 687 -a 0 -x {21.0 3.0 336 ------- null} - -t 33.4528 -s 1 -d 3 -p ack -e 40 -c 0 -i 687 -a 0 -x {21.0 3.0 336 ------- null} h -t 33.4528 -s 1 -d 3 -p ack -e 40 -c 0 -i 687 -a 0 -x {21.0 3.0 -1 ------- null} r -t 33.4544 -s 28 -d 1 -p ack -e 40 -c 0 -i 688 -a 0 -x {21.0 3.0 337 ------- null} + -t 33.4544 -s 1 -d 3 -p ack -e 40 -c 0 -i 688 -a 0 -x {21.0 3.0 337 ------- null} - -t 33.4544 -s 1 -d 3 -p ack -e 40 -c 0 -i 688 -a 0 -x {21.0 3.0 337 ------- null} h -t 33.4544 -s 1 -d 3 -p ack -e 40 -c 0 -i 688 -a 0 -x {21.0 3.0 -1 ------- null} r -t 33.456 -s 28 -d 1 -p ack -e 40 -c 0 -i 689 -a 0 -x {21.0 3.0 338 ------- null} + -t 33.456 -s 1 -d 3 -p ack -e 40 -c 0 -i 689 -a 0 -x {21.0 3.0 338 ------- null} - -t 33.456 -s 1 -d 3 -p ack -e 40 -c 0 -i 689 -a 0 -x {21.0 3.0 338 ------- null} h -t 33.456 -s 1 -d 3 -p ack -e 40 -c 0 -i 689 -a 0 -x {21.0 3.0 -1 ------- null} r -t 33.4576 -s 28 -d 1 -p ack -e 40 -c 0 -i 690 -a 0 -x {21.0 3.0 339 ------- null} + -t 33.4576 -s 1 -d 3 -p ack -e 40 -c 0 -i 690 -a 0 -x {21.0 3.0 339 ------- null} - -t 33.4576 -s 1 -d 3 -p ack -e 40 -c 0 -i 690 -a 0 -x {21.0 3.0 339 ------- null} h -t 33.4576 -s 1 -d 3 -p ack -e 40 -c 0 -i 690 -a 0 -x {21.0 3.0 -1 ------- null} r -t 33.4592 -s 28 -d 1 -p ack -e 40 -c 0 -i 691 -a 0 -x {21.0 3.0 340 ------- null} + -t 33.4592 -s 1 -d 3 -p ack -e 40 -c 0 -i 691 -a 0 -x {21.0 3.0 340 ------- null} - -t 33.4592 -s 1 -d 3 -p ack -e 40 -c 0 -i 691 -a 0 -x {21.0 3.0 340 ------- null} h -t 33.4592 -s 1 -d 3 -p ack -e 40 -c 0 -i 691 -a 0 -x {21.0 3.0 -1 ------- null} r -t 33.4608 -s 28 -d 1 -p ack -e 40 -c 0 -i 692 -a 0 -x {21.0 3.0 341 ------- null} + -t 33.4608 -s 1 -d 3 -p ack -e 40 -c 0 -i 692 -a 0 -x {21.0 3.0 341 ------- null} - -t 33.4608 -s 1 -d 3 -p ack -e 40 -c 0 -i 692 -a 0 -x {21.0 3.0 341 ------- null} h -t 33.4608 -s 1 -d 3 -p ack -e 40 -c 0 -i 692 -a 0 -x {21.0 3.0 -1 ------- null} r -t 33.4624 -s 28 -d 1 -p ack -e 40 -c 0 -i 693 -a 0 -x {21.0 3.0 342 ------- null} + -t 33.4624 -s 1 -d 3 -p ack -e 40 -c 0 -i 693 -a 0 -x {21.0 3.0 342 ------- null} - -t 33.4624 -s 1 -d 3 -p ack -e 40 -c 0 -i 693 -a 0 -x {21.0 3.0 342 ------- null} h -t 33.4624 -s 1 -d 3 -p ack -e 40 -c 0 -i 693 -a 0 -x {21.0 3.0 -1 ------- null} r -t 33.464 -s 28 -d 1 -p ack -e 40 -c 0 -i 694 -a 0 -x {21.0 3.0 343 ------- null} + -t 33.464 -s 1 -d 3 -p ack -e 40 -c 0 -i 694 -a 0 -x {21.0 3.0 343 ------- null} - -t 33.464 -s 1 -d 3 -p ack -e 40 -c 0 -i 694 -a 0 -x {21.0 3.0 343 ------- null} h -t 33.464 -s 1 -d 3 -p ack -e 40 -c 0 -i 694 -a 0 -x {21.0 3.0 -1 ------- null} r -t 33.4656 -s 28 -d 1 -p ack -e 40 -c 0 -i 695 -a 0 -x {21.0 3.0 344 ------- null} + -t 33.4656 -s 1 -d 3 -p ack -e 40 -c 0 -i 695 -a 0 -x {21.0 3.0 344 ------- null} - -t 33.4656 -s 1 -d 3 -p ack -e 40 -c 0 -i 695 -a 0 -x {21.0 3.0 344 ------- null} h -t 33.4656 -s 1 -d 3 -p ack -e 40 -c 0 -i 695 -a 0 -x {21.0 3.0 -1 ------- null} r -t 33.4672 -s 28 -d 1 -p ack -e 40 -c 0 -i 696 -a 0 -x {21.0 3.0 345 ------- null} + -t 33.4672 -s 1 -d 3 -p ack -e 40 -c 0 -i 696 -a 0 -x {21.0 3.0 345 ------- null} - -t 33.4672 -s 1 -d 3 -p ack -e 40 -c 0 -i 696 -a 0 -x {21.0 3.0 345 ------- null} h -t 33.4672 -s 1 -d 3 -p ack -e 40 -c 0 -i 696 -a 0 -x {21.0 3.0 -1 ------- null} r -t 33.4688 -s 28 -d 1 -p ack -e 40 -c 0 -i 697 -a 0 -x {21.0 3.0 346 ------- null} + -t 33.4688 -s 1 -d 3 -p ack -e 40 -c 0 -i 697 -a 0 -x {21.0 3.0 346 ------- null} - -t 33.4688 -s 1 -d 3 -p ack -e 40 -c 0 -i 697 -a 0 -x {21.0 3.0 346 ------- null} h -t 33.4688 -s 1 -d 3 -p ack -e 40 -c 0 -i 697 -a 0 -x {21.0 3.0 -1 ------- null} r -t 33.4704 -s 28 -d 1 -p ack -e 40 -c 0 -i 698 -a 0 -x {21.0 3.0 347 ------- null} + -t 33.4704 -s 1 -d 3 -p ack -e 40 -c 0 -i 698 -a 0 -x {21.0 3.0 347 ------- null} - -t 33.4704 -s 1 -d 3 -p ack -e 40 -c 0 -i 698 -a 0 -x {21.0 3.0 347 ------- null} h -t 33.4704 -s 1 -d 3 -p ack -e 40 -c 0 -i 698 -a 0 -x {21.0 3.0 -1 ------- null} r -t 33.472 -s 28 -d 1 -p ack -e 40 -c 0 -i 699 -a 0 -x {21.0 3.0 348 ------- null} + -t 33.472 -s 1 -d 3 -p ack -e 40 -c 0 -i 699 -a 0 -x {21.0 3.0 348 ------- null} - -t 33.472 -s 1 -d 3 -p ack -e 40 -c 0 -i 699 -a 0 -x {21.0 3.0 348 ------- null} h -t 33.472 -s 1 -d 3 -p ack -e 40 -c 0 -i 699 -a 0 -x {21.0 3.0 -1 ------- null} r -t 33.4736 -s 28 -d 1 -p ack -e 40 -c 0 -i 700 -a 0 -x {21.0 3.0 349 ------- null} + -t 33.4736 -s 1 -d 3 -p ack -e 40 -c 0 -i 700 -a 0 -x {21.0 3.0 349 ------- null} - -t 33.4736 -s 1 -d 3 -p ack -e 40 -c 0 -i 700 -a 0 -x {21.0 3.0 349 ------- null} h -t 33.4736 -s 1 -d 3 -p ack -e 40 -c 0 -i 700 -a 0 -x {21.0 3.0 -1 ------- null} r -t 33.4752 -s 28 -d 1 -p ack -e 40 -c 0 -i 701 -a 0 -x {21.0 3.0 350 ------- null} + -t 33.4752 -s 1 -d 3 -p ack -e 40 -c 0 -i 701 -a 0 -x {21.0 3.0 350 ------- null} - -t 33.4752 -s 1 -d 3 -p ack -e 40 -c 0 -i 701 -a 0 -x {21.0 3.0 350 ------- null} h -t 33.4752 -s 1 -d 3 -p ack -e 40 -c 0 -i 701 -a 0 -x {21.0 3.0 -1 ------- null} r -t 33.5848 -s 1 -d 3 -p ack -e 40 -c 0 -i 682 -a 0 -x {21.0 3.0 331 ------- null} + -t 33.5848 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 702 -a 0 -x {3.0 21.0 351 ------- null} - -t 33.5848 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 702 -a 0 -x {3.0 21.0 351 ------- null} h -t 33.5848 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 702 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.5864 -s 1 -d 3 -p ack -e 40 -c 0 -i 683 -a 0 -x {21.0 3.0 332 ------- null} + -t 33.5864 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {3.0 21.0 352 ------- null} - -t 33.5864 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {3.0 21.0 352 ------- null} h -t 33.5864 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.588 -s 1 -d 3 -p ack -e 40 -c 0 -i 684 -a 0 -x {21.0 3.0 333 ------- null} + -t 33.588 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 704 -a 0 -x {3.0 21.0 353 ------- null} - -t 33.588 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 704 -a 0 -x {3.0 21.0 353 ------- null} h -t 33.588 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 704 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.5896 -s 1 -d 3 -p ack -e 40 -c 0 -i 685 -a 0 -x {21.0 3.0 334 ------- null} + -t 33.5896 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {3.0 21.0 354 ------- null} - -t 33.5896 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {3.0 21.0 354 ------- null} h -t 33.5896 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.5912 -s 1 -d 3 -p ack -e 40 -c 0 -i 686 -a 0 -x {21.0 3.0 335 ------- null} + -t 33.5912 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 706 -a 0 -x {3.0 21.0 355 ------- null} - -t 33.5912 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 706 -a 0 -x {3.0 21.0 355 ------- null} h -t 33.5912 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 706 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.5928 -s 1 -d 3 -p ack -e 40 -c 0 -i 687 -a 0 -x {21.0 3.0 336 ------- null} + -t 33.5928 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {3.0 21.0 356 ------- null} - -t 33.5928 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {3.0 21.0 356 ------- null} h -t 33.5928 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.5944 -s 1 -d 3 -p ack -e 40 -c 0 -i 688 -a 0 -x {21.0 3.0 337 ------- null} + -t 33.5944 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 708 -a 0 -x {3.0 21.0 357 ------- null} - -t 33.5944 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 708 -a 0 -x {3.0 21.0 357 ------- null} h -t 33.5944 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 708 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.596 -s 1 -d 3 -p ack -e 40 -c 0 -i 689 -a 0 -x {21.0 3.0 338 ------- null} + -t 33.596 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {3.0 21.0 358 ------- null} - -t 33.596 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {3.0 21.0 358 ------- null} h -t 33.596 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.5976 -s 1 -d 3 -p ack -e 40 -c 0 -i 690 -a 0 -x {21.0 3.0 339 ------- null} + -t 33.5976 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 710 -a 0 -x {3.0 21.0 359 ------- null} - -t 33.5976 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 710 -a 0 -x {3.0 21.0 359 ------- null} h -t 33.5976 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 710 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.5992 -s 1 -d 3 -p ack -e 40 -c 0 -i 691 -a 0 -x {21.0 3.0 340 ------- null} + -t 33.5992 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {3.0 21.0 360 ------- null} - -t 33.5992 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {3.0 21.0 360 ------- null} h -t 33.5992 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.6008 -s 1 -d 3 -p ack -e 40 -c 0 -i 692 -a 0 -x {21.0 3.0 341 ------- null} + -t 33.6008 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 712 -a 0 -x {3.0 21.0 361 ------- null} - -t 33.6008 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 712 -a 0 -x {3.0 21.0 361 ------- null} h -t 33.6008 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 712 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.6024 -s 1 -d 3 -p ack -e 40 -c 0 -i 693 -a 0 -x {21.0 3.0 342 ------- null} + -t 33.6024 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {3.0 21.0 362 ------- null} - -t 33.6024 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {3.0 21.0 362 ------- null} h -t 33.6024 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.604 -s 1 -d 3 -p ack -e 40 -c 0 -i 694 -a 0 -x {21.0 3.0 343 ------- null} + -t 33.604 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 714 -a 0 -x {3.0 21.0 363 ------- null} - -t 33.604 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 714 -a 0 -x {3.0 21.0 363 ------- null} h -t 33.604 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 714 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.6056 -s 1 -d 3 -p ack -e 40 -c 0 -i 695 -a 0 -x {21.0 3.0 344 ------- null} + -t 33.6056 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {3.0 21.0 364 ------- null} - -t 33.6056 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {3.0 21.0 364 ------- null} h -t 33.6056 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.6072 -s 1 -d 3 -p ack -e 40 -c 0 -i 696 -a 0 -x {21.0 3.0 345 ------- null} + -t 33.6072 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 716 -a 0 -x {3.0 21.0 365 ------- null} - -t 33.6072 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 716 -a 0 -x {3.0 21.0 365 ------- null} h -t 33.6072 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 716 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.6088 -s 1 -d 3 -p ack -e 40 -c 0 -i 697 -a 0 -x {21.0 3.0 346 ------- null} + -t 33.6088 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {3.0 21.0 366 ------- null} - -t 33.6088 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {3.0 21.0 366 ------- null} h -t 33.6088 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.6104 -s 1 -d 3 -p ack -e 40 -c 0 -i 698 -a 0 -x {21.0 3.0 347 ------- null} + -t 33.6104 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 718 -a 0 -x {3.0 21.0 367 ------- null} - -t 33.6104 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 718 -a 0 -x {3.0 21.0 367 ------- null} h -t 33.6104 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 718 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.612 -s 1 -d 3 -p ack -e 40 -c 0 -i 699 -a 0 -x {21.0 3.0 348 ------- null} + -t 33.612 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {3.0 21.0 368 ------- null} - -t 33.612 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {3.0 21.0 368 ------- null} h -t 33.612 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.6136 -s 1 -d 3 -p ack -e 40 -c 0 -i 700 -a 0 -x {21.0 3.0 349 ------- null} + -t 33.6136 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 720 -a 0 -x {3.0 21.0 369 ------- null} - -t 33.6136 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 720 -a 0 -x {3.0 21.0 369 ------- null} h -t 33.6136 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 720 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.6152 -s 1 -d 3 -p ack -e 40 -c 0 -i 701 -a 0 -x {21.0 3.0 350 ------- null} + -t 33.6152 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {3.0 21.0 370 ------- null} - -t 33.6152 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {3.0 21.0 370 ------- null} h -t 33.6152 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.7264 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 702 -a 0 -x {3.0 21.0 351 ------- null} + -t 33.7264 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 702 -a 0 -x {3.0 21.0 351 ------- null} - -t 33.7264 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 702 -a 0 -x {3.0 21.0 351 ------- null} h -t 33.7264 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 702 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.728 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {3.0 21.0 352 ------- null} + -t 33.728 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {3.0 21.0 352 ------- null} - -t 33.728 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {3.0 21.0 352 ------- null} h -t 33.728 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.7296 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 704 -a 0 -x {3.0 21.0 353 ------- null} + -t 33.7296 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 704 -a 0 -x {3.0 21.0 353 ------- null} - -t 33.7296 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 704 -a 0 -x {3.0 21.0 353 ------- null} h -t 33.7296 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 704 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.7312 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {3.0 21.0 354 ------- null} + -t 33.7312 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {3.0 21.0 354 ------- null} - -t 33.7312 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {3.0 21.0 354 ------- null} h -t 33.7312 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.7328 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 706 -a 0 -x {3.0 21.0 355 ------- null} + -t 33.7328 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 706 -a 0 -x {3.0 21.0 355 ------- null} - -t 33.7328 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 706 -a 0 -x {3.0 21.0 355 ------- null} h -t 33.7328 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 706 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.7344 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {3.0 21.0 356 ------- null} + -t 33.7344 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {3.0 21.0 356 ------- null} - -t 33.7344 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {3.0 21.0 356 ------- null} h -t 33.7344 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.736 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 708 -a 0 -x {3.0 21.0 357 ------- null} + -t 33.736 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 708 -a 0 -x {3.0 21.0 357 ------- null} - -t 33.736 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 708 -a 0 -x {3.0 21.0 357 ------- null} h -t 33.736 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 708 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.7376 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {3.0 21.0 358 ------- null} + -t 33.7376 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {3.0 21.0 358 ------- null} - -t 33.7376 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {3.0 21.0 358 ------- null} h -t 33.7376 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.7392 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 710 -a 0 -x {3.0 21.0 359 ------- null} + -t 33.7392 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 710 -a 0 -x {3.0 21.0 359 ------- null} - -t 33.7392 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 710 -a 0 -x {3.0 21.0 359 ------- null} h -t 33.7392 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 710 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.7408 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {3.0 21.0 360 ------- null} + -t 33.7408 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {3.0 21.0 360 ------- null} - -t 33.7408 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {3.0 21.0 360 ------- null} h -t 33.7408 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.7424 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 712 -a 0 -x {3.0 21.0 361 ------- null} + -t 33.7424 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 712 -a 0 -x {3.0 21.0 361 ------- null} - -t 33.7424 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 712 -a 0 -x {3.0 21.0 361 ------- null} h -t 33.7424 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 712 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.744 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {3.0 21.0 362 ------- null} + -t 33.744 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {3.0 21.0 362 ------- null} - -t 33.744 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {3.0 21.0 362 ------- null} h -t 33.744 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.7456 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 714 -a 0 -x {3.0 21.0 363 ------- null} + -t 33.7456 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 714 -a 0 -x {3.0 21.0 363 ------- null} - -t 33.7456 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 714 -a 0 -x {3.0 21.0 363 ------- null} h -t 33.7456 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 714 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.7472 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {3.0 21.0 364 ------- null} + -t 33.7472 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {3.0 21.0 364 ------- null} - -t 33.7472 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {3.0 21.0 364 ------- null} h -t 33.7472 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.7488 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 716 -a 0 -x {3.0 21.0 365 ------- null} + -t 33.7488 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 716 -a 0 -x {3.0 21.0 365 ------- null} - -t 33.7488 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 716 -a 0 -x {3.0 21.0 365 ------- null} h -t 33.7488 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 716 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.7504 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {3.0 21.0 366 ------- null} + -t 33.7504 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {3.0 21.0 366 ------- null} - -t 33.7504 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {3.0 21.0 366 ------- null} h -t 33.7504 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.752 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 718 -a 0 -x {3.0 21.0 367 ------- null} + -t 33.752 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 718 -a 0 -x {3.0 21.0 367 ------- null} - -t 33.752 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 718 -a 0 -x {3.0 21.0 367 ------- null} h -t 33.752 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 718 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.7536 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {3.0 21.0 368 ------- null} + -t 33.7536 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {3.0 21.0 368 ------- null} - -t 33.7536 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {3.0 21.0 368 ------- null} h -t 33.7536 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.7552 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 720 -a 0 -x {3.0 21.0 369 ------- null} + -t 33.7552 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 720 -a 0 -x {3.0 21.0 369 ------- null} - -t 33.7552 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 720 -a 0 -x {3.0 21.0 369 ------- null} h -t 33.7552 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 720 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.7568 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {3.0 21.0 370 ------- null} + -t 33.7568 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {3.0 21.0 370 ------- null} - -t 33.7568 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {3.0 21.0 370 ------- null} h -t 33.7568 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {3.0 21.0 -1 ------- null} r -t 34.028 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 702 -a 0 -x {3.0 21.0 351 ------- null} + -t 34.028 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 702 -a 0 -x {3.0 21.0 351 ------- null} - -t 34.028 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 702 -a 0 -x {3.0 21.0 351 ------- null} h -t 34.028 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 702 -a 0 -x {3.0 21.0 -1 ------- null} r -t 34.0296 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {3.0 21.0 352 ------- null} + -t 34.0296 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {3.0 21.0 352 ------- null} - -t 34.0296 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {3.0 21.0 352 ------- null} h -t 34.0296 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {3.0 21.0 -1 ------- null} r -t 34.0312 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 704 -a 0 -x {3.0 21.0 353 ------- null} + -t 34.0312 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 704 -a 0 -x {3.0 21.0 353 ------- null} - -t 34.0312 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 704 -a 0 -x {3.0 21.0 353 ------- null} h -t 34.0312 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 704 -a 0 -x {3.0 21.0 -1 ------- null} r -t 34.0328 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {3.0 21.0 354 ------- null} + -t 34.0328 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {3.0 21.0 354 ------- null} - -t 34.0328 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {3.0 21.0 354 ------- null} h -t 34.0328 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {3.0 21.0 -1 ------- null} r -t 34.0344 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 706 -a 0 -x {3.0 21.0 355 ------- null} + -t 34.0344 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 706 -a 0 -x {3.0 21.0 355 ------- null} - -t 34.0344 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 706 -a 0 -x {3.0 21.0 355 ------- null} h -t 34.0344 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 706 -a 0 -x {3.0 21.0 -1 ------- null} r -t 34.036 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {3.0 21.0 356 ------- null} + -t 34.036 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {3.0 21.0 356 ------- null} - -t 34.036 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {3.0 21.0 356 ------- null} h -t 34.036 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {3.0 21.0 -1 ------- null} r -t 34.0376 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 708 -a 0 -x {3.0 21.0 357 ------- null} + -t 34.0376 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 708 -a 0 -x {3.0 21.0 357 ------- null} - -t 34.0376 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 708 -a 0 -x {3.0 21.0 357 ------- null} h -t 34.0376 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 708 -a 0 -x {3.0 21.0 -1 ------- null} r -t 34.0392 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {3.0 21.0 358 ------- null} + -t 34.0392 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {3.0 21.0 358 ------- null} - -t 34.0392 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {3.0 21.0 358 ------- null} h -t 34.0392 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {3.0 21.0 -1 ------- null} r -t 34.0408 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 710 -a 0 -x {3.0 21.0 359 ------- null} + -t 34.0408 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 710 -a 0 -x {3.0 21.0 359 ------- null} - -t 34.0408 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 710 -a 0 -x {3.0 21.0 359 ------- null} h -t 34.0408 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 710 -a 0 -x {3.0 21.0 -1 ------- null} r -t 34.0424 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {3.0 21.0 360 ------- null} + -t 34.0424 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {3.0 21.0 360 ------- null} - -t 34.0424 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {3.0 21.0 360 ------- null} h -t 34.0424 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {3.0 21.0 -1 ------- null} r -t 34.044 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 712 -a 0 -x {3.0 21.0 361 ------- null} + -t 34.044 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 712 -a 0 -x {3.0 21.0 361 ------- null} - -t 34.044 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 712 -a 0 -x {3.0 21.0 361 ------- null} h -t 34.044 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 712 -a 0 -x {3.0 21.0 -1 ------- null} r -t 34.0456 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {3.0 21.0 362 ------- null} + -t 34.0456 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {3.0 21.0 362 ------- null} - -t 34.0456 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {3.0 21.0 362 ------- null} h -t 34.0456 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {3.0 21.0 -1 ------- null} r -t 34.0472 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 714 -a 0 -x {3.0 21.0 363 ------- null} + -t 34.0472 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 714 -a 0 -x {3.0 21.0 363 ------- null} - -t 34.0472 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 714 -a 0 -x {3.0 21.0 363 ------- null} h -t 34.0472 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 714 -a 0 -x {3.0 21.0 -1 ------- null} r -t 34.0488 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {3.0 21.0 364 ------- null} + -t 34.0488 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {3.0 21.0 364 ------- null} - -t 34.0488 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {3.0 21.0 364 ------- null} h -t 34.0488 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {3.0 21.0 -1 ------- null} r -t 34.0504 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 716 -a 0 -x {3.0 21.0 365 ------- null} + -t 34.0504 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 716 -a 0 -x {3.0 21.0 365 ------- null} - -t 34.0504 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 716 -a 0 -x {3.0 21.0 365 ------- null} h -t 34.0504 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 716 -a 0 -x {3.0 21.0 -1 ------- null} r -t 34.052 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {3.0 21.0 366 ------- null} + -t 34.052 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {3.0 21.0 366 ------- null} - -t 34.052 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {3.0 21.0 366 ------- null} h -t 34.052 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {3.0 21.0 -1 ------- null} r -t 34.0536 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 718 -a 0 -x {3.0 21.0 367 ------- null} + -t 34.0536 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 718 -a 0 -x {3.0 21.0 367 ------- null} - -t 34.0536 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 718 -a 0 -x {3.0 21.0 367 ------- null} h -t 34.0536 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 718 -a 0 -x {3.0 21.0 -1 ------- null} r -t 34.0552 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {3.0 21.0 368 ------- null} + -t 34.0552 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {3.0 21.0 368 ------- null} - -t 34.0552 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {3.0 21.0 368 ------- null} h -t 34.0552 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {3.0 21.0 -1 ------- null} r -t 34.0568 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 720 -a 0 -x {3.0 21.0 369 ------- null} + -t 34.0568 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 720 -a 0 -x {3.0 21.0 369 ------- null} - -t 34.0568 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 720 -a 0 -x {3.0 21.0 369 ------- null} h -t 34.0568 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 720 -a 0 -x {3.0 21.0 -1 ------- null} r -t 34.0584 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {3.0 21.0 370 ------- null} + -t 34.0584 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {3.0 21.0 370 ------- null} - -t 34.0584 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {3.0 21.0 370 ------- null} h -t 34.0584 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {3.0 21.0 -1 ------- null} r -t 34.3796 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 702 -a 0 -x {3.0 21.0 351 ------- null} + -t 34.3796 -s 21 -d 28 -p ack -e 40 -c 0 -i 722 -a 0 -x {21.0 3.0 351 ------- null} - -t 34.3796 -s 21 -d 28 -p ack -e 40 -c 0 -i 722 -a 0 -x {21.0 3.0 351 ------- null} h -t 34.3796 -s 21 -d 28 -p ack -e 40 -c 0 -i 722 -a 0 -x {21.0 3.0 -1 ------- null} r -t 34.3812 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {3.0 21.0 352 ------- null} + -t 34.3812 -s 21 -d 28 -p ack -e 40 -c 0 -i 723 -a 0 -x {21.0 3.0 352 ------- null} - -t 34.3812 -s 21 -d 28 -p ack -e 40 -c 0 -i 723 -a 0 -x {21.0 3.0 352 ------- null} h -t 34.3812 -s 21 -d 28 -p ack -e 40 -c 0 -i 723 -a 0 -x {21.0 3.0 -1 ------- null} r -t 34.3828 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 704 -a 0 -x {3.0 21.0 353 ------- null} + -t 34.3828 -s 21 -d 28 -p ack -e 40 -c 0 -i 724 -a 0 -x {21.0 3.0 353 ------- null} - -t 34.3828 -s 21 -d 28 -p ack -e 40 -c 0 -i 724 -a 0 -x {21.0 3.0 353 ------- null} h -t 34.3828 -s 21 -d 28 -p ack -e 40 -c 0 -i 724 -a 0 -x {21.0 3.0 -1 ------- null} r -t 34.3844 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {3.0 21.0 354 ------- null} + -t 34.3844 -s 21 -d 28 -p ack -e 40 -c 0 -i 725 -a 0 -x {21.0 3.0 354 ------- null} - -t 34.3844 -s 21 -d 28 -p ack -e 40 -c 0 -i 725 -a 0 -x {21.0 3.0 354 ------- null} h -t 34.3844 -s 21 -d 28 -p ack -e 40 -c 0 -i 725 -a 0 -x {21.0 3.0 -1 ------- null} r -t 34.386 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 706 -a 0 -x {3.0 21.0 355 ------- null} + -t 34.386 -s 21 -d 28 -p ack -e 40 -c 0 -i 726 -a 0 -x {21.0 3.0 355 ------- null} - -t 34.386 -s 21 -d 28 -p ack -e 40 -c 0 -i 726 -a 0 -x {21.0 3.0 355 ------- null} h -t 34.386 -s 21 -d 28 -p ack -e 40 -c 0 -i 726 -a 0 -x {21.0 3.0 -1 ------- null} r -t 34.3876 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {3.0 21.0 356 ------- null} + -t 34.3876 -s 21 -d 28 -p ack -e 40 -c 0 -i 727 -a 0 -x {21.0 3.0 356 ------- null} - -t 34.3876 -s 21 -d 28 -p ack -e 40 -c 0 -i 727 -a 0 -x {21.0 3.0 356 ------- null} h -t 34.3876 -s 21 -d 28 -p ack -e 40 -c 0 -i 727 -a 0 -x {21.0 3.0 -1 ------- null} r -t 34.3892 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 708 -a 0 -x {3.0 21.0 357 ------- null} + -t 34.3892 -s 21 -d 28 -p ack -e 40 -c 0 -i 728 -a 0 -x {21.0 3.0 357 ------- null} - -t 34.3892 -s 21 -d 28 -p ack -e 40 -c 0 -i 728 -a 0 -x {21.0 3.0 357 ------- null} h -t 34.3892 -s 21 -d 28 -p ack -e 40 -c 0 -i 728 -a 0 -x {21.0 3.0 -1 ------- null} r -t 34.3908 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {3.0 21.0 358 ------- null} + -t 34.3908 -s 21 -d 28 -p ack -e 40 -c 0 -i 729 -a 0 -x {21.0 3.0 358 ------- null} - -t 34.3908 -s 21 -d 28 -p ack -e 40 -c 0 -i 729 -a 0 -x {21.0 3.0 358 ------- null} h -t 34.3908 -s 21 -d 28 -p ack -e 40 -c 0 -i 729 -a 0 -x {21.0 3.0 -1 ------- null} r -t 34.3924 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 710 -a 0 -x {3.0 21.0 359 ------- null} + -t 34.3924 -s 21 -d 28 -p ack -e 40 -c 0 -i 730 -a 0 -x {21.0 3.0 359 ------- null} - -t 34.3924 -s 21 -d 28 -p ack -e 40 -c 0 -i 730 -a 0 -x {21.0 3.0 359 ------- null} h -t 34.3924 -s 21 -d 28 -p ack -e 40 -c 0 -i 730 -a 0 -x {21.0 3.0 -1 ------- null} r -t 34.394 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {3.0 21.0 360 ------- null} + -t 34.394 -s 21 -d 28 -p ack -e 40 -c 0 -i 731 -a 0 -x {21.0 3.0 360 ------- null} - -t 34.394 -s 21 -d 28 -p ack -e 40 -c 0 -i 731 -a 0 -x {21.0 3.0 360 ------- null} h -t 34.394 -s 21 -d 28 -p ack -e 40 -c 0 -i 731 -a 0 -x {21.0 3.0 -1 ------- null} r -t 34.3956 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 712 -a 0 -x {3.0 21.0 361 ------- null} + -t 34.3956 -s 21 -d 28 -p ack -e 40 -c 0 -i 732 -a 0 -x {21.0 3.0 361 ------- null} - -t 34.3956 -s 21 -d 28 -p ack -e 40 -c 0 -i 732 -a 0 -x {21.0 3.0 361 ------- null} h -t 34.3956 -s 21 -d 28 -p ack -e 40 -c 0 -i 732 -a 0 -x {21.0 3.0 -1 ------- null} r -t 34.3972 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {3.0 21.0 362 ------- null} + -t 34.3972 -s 21 -d 28 -p ack -e 40 -c 0 -i 733 -a 0 -x {21.0 3.0 362 ------- null} - -t 34.3972 -s 21 -d 28 -p ack -e 40 -c 0 -i 733 -a 0 -x {21.0 3.0 362 ------- null} h -t 34.3972 -s 21 -d 28 -p ack -e 40 -c 0 -i 733 -a 0 -x {21.0 3.0 -1 ------- null} r -t 34.3988 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 714 -a 0 -x {3.0 21.0 363 ------- null} + -t 34.3988 -s 21 -d 28 -p ack -e 40 -c 0 -i 734 -a 0 -x {21.0 3.0 363 ------- null} - -t 34.3988 -s 21 -d 28 -p ack -e 40 -c 0 -i 734 -a 0 -x {21.0 3.0 363 ------- null} h -t 34.3988 -s 21 -d 28 -p ack -e 40 -c 0 -i 734 -a 0 -x {21.0 3.0 -1 ------- null} r -t 34.4004 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {3.0 21.0 364 ------- null} + -t 34.4004 -s 21 -d 28 -p ack -e 40 -c 0 -i 735 -a 0 -x {21.0 3.0 364 ------- null} - -t 34.4004 -s 21 -d 28 -p ack -e 40 -c 0 -i 735 -a 0 -x {21.0 3.0 364 ------- null} h -t 34.4004 -s 21 -d 28 -p ack -e 40 -c 0 -i 735 -a 0 -x {21.0 3.0 -1 ------- null} r -t 34.402 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 716 -a 0 -x {3.0 21.0 365 ------- null} + -t 34.402 -s 21 -d 28 -p ack -e 40 -c 0 -i 736 -a 0 -x {21.0 3.0 365 ------- null} - -t 34.402 -s 21 -d 28 -p ack -e 40 -c 0 -i 736 -a 0 -x {21.0 3.0 365 ------- null} h -t 34.402 -s 21 -d 28 -p ack -e 40 -c 0 -i 736 -a 0 -x {21.0 3.0 -1 ------- null} r -t 34.4036 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {3.0 21.0 366 ------- null} + -t 34.4036 -s 21 -d 28 -p ack -e 40 -c 0 -i 737 -a 0 -x {21.0 3.0 366 ------- null} - -t 34.4036 -s 21 -d 28 -p ack -e 40 -c 0 -i 737 -a 0 -x {21.0 3.0 366 ------- null} h -t 34.4036 -s 21 -d 28 -p ack -e 40 -c 0 -i 737 -a 0 -x {21.0 3.0 -1 ------- null} r -t 34.4052 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 718 -a 0 -x {3.0 21.0 367 ------- null} + -t 34.4052 -s 21 -d 28 -p ack -e 40 -c 0 -i 738 -a 0 -x {21.0 3.0 367 ------- null} - -t 34.4052 -s 21 -d 28 -p ack -e 40 -c 0 -i 738 -a 0 -x {21.0 3.0 367 ------- null} h -t 34.4052 -s 21 -d 28 -p ack -e 40 -c 0 -i 738 -a 0 -x {21.0 3.0 -1 ------- null} r -t 34.4068 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {3.0 21.0 368 ------- null} + -t 34.4068 -s 21 -d 28 -p ack -e 40 -c 0 -i 739 -a 0 -x {21.0 3.0 368 ------- null} - -t 34.4068 -s 21 -d 28 -p ack -e 40 -c 0 -i 739 -a 0 -x {21.0 3.0 368 ------- null} h -t 34.4068 -s 21 -d 28 -p ack -e 40 -c 0 -i 739 -a 0 -x {21.0 3.0 -1 ------- null} r -t 34.4084 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 720 -a 0 -x {3.0 21.0 369 ------- null} + -t 34.4084 -s 21 -d 28 -p ack -e 40 -c 0 -i 740 -a 0 -x {21.0 3.0 369 ------- null} - -t 34.4084 -s 21 -d 28 -p ack -e 40 -c 0 -i 740 -a 0 -x {21.0 3.0 369 ------- null} h -t 34.4084 -s 21 -d 28 -p ack -e 40 -c 0 -i 740 -a 0 -x {21.0 3.0 -1 ------- null} r -t 34.41 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {3.0 21.0 370 ------- null} + -t 34.41 -s 21 -d 28 -p ack -e 40 -c 0 -i 741 -a 0 -x {21.0 3.0 370 ------- null} - -t 34.41 -s 21 -d 28 -p ack -e 40 -c 0 -i 741 -a 0 -x {21.0 3.0 370 ------- null} h -t 34.41 -s 21 -d 28 -p ack -e 40 -c 0 -i 741 -a 0 -x {21.0 3.0 -1 ------- null} r -t 34.7297 -s 21 -d 28 -p ack -e 40 -c 0 -i 722 -a 0 -x {21.0 3.0 351 ------- null} + -t 34.7297 -s 28 -d 1 -p ack -e 40 -c 0 -i 722 -a 0 -x {21.0 3.0 351 ------- null} - -t 34.7297 -s 28 -d 1 -p ack -e 40 -c 0 -i 722 -a 0 -x {21.0 3.0 351 ------- null} h -t 34.7297 -s 28 -d 1 -p ack -e 40 -c 0 -i 722 -a 0 -x {21.0 3.0 -1 ------- null} r -t 34.7313 -s 21 -d 28 -p ack -e 40 -c 0 -i 723 -a 0 -x {21.0 3.0 352 ------- null} + -t 34.7313 -s 28 -d 1 -p ack -e 40 -c 0 -i 723 -a 0 -x {21.0 3.0 352 ------- null} - -t 34.7313 -s 28 -d 1 -p ack -e 40 -c 0 -i 723 -a 0 -x {21.0 3.0 352 ------- null} h -t 34.7313 -s 28 -d 1 -p ack -e 40 -c 0 -i 723 -a 0 -x {21.0 3.0 -1 ------- null} r -t 34.7329 -s 21 -d 28 -p ack -e 40 -c 0 -i 724 -a 0 -x {21.0 3.0 353 ------- null} + -t 34.7329 -s 28 -d 1 -p ack -e 40 -c 0 -i 724 -a 0 -x {21.0 3.0 353 ------- null} - -t 34.7329 -s 28 -d 1 -p ack -e 40 -c 0 -i 724 -a 0 -x {21.0 3.0 353 ------- null} h -t 34.7329 -s 28 -d 1 -p ack -e 40 -c 0 -i 724 -a 0 -x {21.0 3.0 -1 ------- null} r -t 34.7345 -s 21 -d 28 -p ack -e 40 -c 0 -i 725 -a 0 -x {21.0 3.0 354 ------- null} + -t 34.7345 -s 28 -d 1 -p ack -e 40 -c 0 -i 725 -a 0 -x {21.0 3.0 354 ------- null} - -t 34.7345 -s 28 -d 1 -p ack -e 40 -c 0 -i 725 -a 0 -x {21.0 3.0 354 ------- null} h -t 34.7345 -s 28 -d 1 -p ack -e 40 -c 0 -i 725 -a 0 -x {21.0 3.0 -1 ------- null} r -t 34.7361 -s 21 -d 28 -p ack -e 40 -c 0 -i 726 -a 0 -x {21.0 3.0 355 ------- null} + -t 34.7361 -s 28 -d 1 -p ack -e 40 -c 0 -i 726 -a 0 -x {21.0 3.0 355 ------- null} - -t 34.7361 -s 28 -d 1 -p ack -e 40 -c 0 -i 726 -a 0 -x {21.0 3.0 355 ------- null} h -t 34.7361 -s 28 -d 1 -p ack -e 40 -c 0 -i 726 -a 0 -x {21.0 3.0 -1 ------- null} r -t 34.7377 -s 21 -d 28 -p ack -e 40 -c 0 -i 727 -a 0 -x {21.0 3.0 356 ------- null} + -t 34.7377 -s 28 -d 1 -p ack -e 40 -c 0 -i 727 -a 0 -x {21.0 3.0 356 ------- null} - -t 34.7377 -s 28 -d 1 -p ack -e 40 -c 0 -i 727 -a 0 -x {21.0 3.0 356 ------- null} h -t 34.7377 -s 28 -d 1 -p ack -e 40 -c 0 -i 727 -a 0 -x {21.0 3.0 -1 ------- null} r -t 34.7393 -s 21 -d 28 -p ack -e 40 -c 0 -i 728 -a 0 -x {21.0 3.0 357 ------- null} + -t 34.7393 -s 28 -d 1 -p ack -e 40 -c 0 -i 728 -a 0 -x {21.0 3.0 357 ------- null} - -t 34.7393 -s 28 -d 1 -p ack -e 40 -c 0 -i 728 -a 0 -x {21.0 3.0 357 ------- null} h -t 34.7393 -s 28 -d 1 -p ack -e 40 -c 0 -i 728 -a 0 -x {21.0 3.0 -1 ------- null} r -t 34.7409 -s 21 -d 28 -p ack -e 40 -c 0 -i 729 -a 0 -x {21.0 3.0 358 ------- null} + -t 34.7409 -s 28 -d 1 -p ack -e 40 -c 0 -i 729 -a 0 -x {21.0 3.0 358 ------- null} - -t 34.7409 -s 28 -d 1 -p ack -e 40 -c 0 -i 729 -a 0 -x {21.0 3.0 358 ------- null} h -t 34.7409 -s 28 -d 1 -p ack -e 40 -c 0 -i 729 -a 0 -x {21.0 3.0 -1 ------- null} r -t 34.7425 -s 21 -d 28 -p ack -e 40 -c 0 -i 730 -a 0 -x {21.0 3.0 359 ------- null} + -t 34.7425 -s 28 -d 1 -p ack -e 40 -c 0 -i 730 -a 0 -x {21.0 3.0 359 ------- null} - -t 34.7425 -s 28 -d 1 -p ack -e 40 -c 0 -i 730 -a 0 -x {21.0 3.0 359 ------- null} h -t 34.7425 -s 28 -d 1 -p ack -e 40 -c 0 -i 730 -a 0 -x {21.0 3.0 -1 ------- null} r -t 34.7441 -s 21 -d 28 -p ack -e 40 -c 0 -i 731 -a 0 -x {21.0 3.0 360 ------- null} + -t 34.7441 -s 28 -d 1 -p ack -e 40 -c 0 -i 731 -a 0 -x {21.0 3.0 360 ------- null} - -t 34.7441 -s 28 -d 1 -p ack -e 40 -c 0 -i 731 -a 0 -x {21.0 3.0 360 ------- null} h -t 34.7441 -s 28 -d 1 -p ack -e 40 -c 0 -i 731 -a 0 -x {21.0 3.0 -1 ------- null} r -t 34.7457 -s 21 -d 28 -p ack -e 40 -c 0 -i 732 -a 0 -x {21.0 3.0 361 ------- null} + -t 34.7457 -s 28 -d 1 -p ack -e 40 -c 0 -i 732 -a 0 -x {21.0 3.0 361 ------- null} - -t 34.7457 -s 28 -d 1 -p ack -e 40 -c 0 -i 732 -a 0 -x {21.0 3.0 361 ------- null} h -t 34.7457 -s 28 -d 1 -p ack -e 40 -c 0 -i 732 -a 0 -x {21.0 3.0 -1 ------- null} r -t 34.7473 -s 21 -d 28 -p ack -e 40 -c 0 -i 733 -a 0 -x {21.0 3.0 362 ------- null} + -t 34.7473 -s 28 -d 1 -p ack -e 40 -c 0 -i 733 -a 0 -x {21.0 3.0 362 ------- null} - -t 34.7473 -s 28 -d 1 -p ack -e 40 -c 0 -i 733 -a 0 -x {21.0 3.0 362 ------- null} h -t 34.7473 -s 28 -d 1 -p ack -e 40 -c 0 -i 733 -a 0 -x {21.0 3.0 -1 ------- null} r -t 34.7489 -s 21 -d 28 -p ack -e 40 -c 0 -i 734 -a 0 -x {21.0 3.0 363 ------- null} + -t 34.7489 -s 28 -d 1 -p ack -e 40 -c 0 -i 734 -a 0 -x {21.0 3.0 363 ------- null} - -t 34.7489 -s 28 -d 1 -p ack -e 40 -c 0 -i 734 -a 0 -x {21.0 3.0 363 ------- null} h -t 34.7489 -s 28 -d 1 -p ack -e 40 -c 0 -i 734 -a 0 -x {21.0 3.0 -1 ------- null} r -t 34.7505 -s 21 -d 28 -p ack -e 40 -c 0 -i 735 -a 0 -x {21.0 3.0 364 ------- null} + -t 34.7505 -s 28 -d 1 -p ack -e 40 -c 0 -i 735 -a 0 -x {21.0 3.0 364 ------- null} - -t 34.7505 -s 28 -d 1 -p ack -e 40 -c 0 -i 735 -a 0 -x {21.0 3.0 364 ------- null} h -t 34.7505 -s 28 -d 1 -p ack -e 40 -c 0 -i 735 -a 0 -x {21.0 3.0 -1 ------- null} r -t 34.7521 -s 21 -d 28 -p ack -e 40 -c 0 -i 736 -a 0 -x {21.0 3.0 365 ------- null} + -t 34.7521 -s 28 -d 1 -p ack -e 40 -c 0 -i 736 -a 0 -x {21.0 3.0 365 ------- null} - -t 34.7521 -s 28 -d 1 -p ack -e 40 -c 0 -i 736 -a 0 -x {21.0 3.0 365 ------- null} h -t 34.7521 -s 28 -d 1 -p ack -e 40 -c 0 -i 736 -a 0 -x {21.0 3.0 -1 ------- null} r -t 34.7537 -s 21 -d 28 -p ack -e 40 -c 0 -i 737 -a 0 -x {21.0 3.0 366 ------- null} + -t 34.7537 -s 28 -d 1 -p ack -e 40 -c 0 -i 737 -a 0 -x {21.0 3.0 366 ------- null} - -t 34.7537 -s 28 -d 1 -p ack -e 40 -c 0 -i 737 -a 0 -x {21.0 3.0 366 ------- null} h -t 34.7537 -s 28 -d 1 -p ack -e 40 -c 0 -i 737 -a 0 -x {21.0 3.0 -1 ------- null} r -t 34.7553 -s 21 -d 28 -p ack -e 40 -c 0 -i 738 -a 0 -x {21.0 3.0 367 ------- null} + -t 34.7553 -s 28 -d 1 -p ack -e 40 -c 0 -i 738 -a 0 -x {21.0 3.0 367 ------- null} - -t 34.7553 -s 28 -d 1 -p ack -e 40 -c 0 -i 738 -a 0 -x {21.0 3.0 367 ------- null} h -t 34.7553 -s 28 -d 1 -p ack -e 40 -c 0 -i 738 -a 0 -x {21.0 3.0 -1 ------- null} r -t 34.7569 -s 21 -d 28 -p ack -e 40 -c 0 -i 739 -a 0 -x {21.0 3.0 368 ------- null} + -t 34.7569 -s 28 -d 1 -p ack -e 40 -c 0 -i 739 -a 0 -x {21.0 3.0 368 ------- null} - -t 34.7569 -s 28 -d 1 -p ack -e 40 -c 0 -i 739 -a 0 -x {21.0 3.0 368 ------- null} h -t 34.7569 -s 28 -d 1 -p ack -e 40 -c 0 -i 739 -a 0 -x {21.0 3.0 -1 ------- null} r -t 34.7585 -s 21 -d 28 -p ack -e 40 -c 0 -i 740 -a 0 -x {21.0 3.0 369 ------- null} + -t 34.7585 -s 28 -d 1 -p ack -e 40 -c 0 -i 740 -a 0 -x {21.0 3.0 369 ------- null} - -t 34.7585 -s 28 -d 1 -p ack -e 40 -c 0 -i 740 -a 0 -x {21.0 3.0 369 ------- null} h -t 34.7585 -s 28 -d 1 -p ack -e 40 -c 0 -i 740 -a 0 -x {21.0 3.0 -1 ------- null} r -t 34.7601 -s 21 -d 28 -p ack -e 40 -c 0 -i 741 -a 0 -x {21.0 3.0 370 ------- null} + -t 34.7601 -s 28 -d 1 -p ack -e 40 -c 0 -i 741 -a 0 -x {21.0 3.0 370 ------- null} - -t 34.7601 -s 28 -d 1 -p ack -e 40 -c 0 -i 741 -a 0 -x {21.0 3.0 370 ------- null} h -t 34.7601 -s 28 -d 1 -p ack -e 40 -c 0 -i 741 -a 0 -x {21.0 3.0 -1 ------- null} r -t 35.0298 -s 28 -d 1 -p ack -e 40 -c 0 -i 722 -a 0 -x {21.0 3.0 351 ------- null} + -t 35.0298 -s 1 -d 3 -p ack -e 40 -c 0 -i 722 -a 0 -x {21.0 3.0 351 ------- null} - -t 35.0298 -s 1 -d 3 -p ack -e 40 -c 0 -i 722 -a 0 -x {21.0 3.0 351 ------- null} h -t 35.0298 -s 1 -d 3 -p ack -e 40 -c 0 -i 722 -a 0 -x {21.0 3.0 -1 ------- null} r -t 35.0314 -s 28 -d 1 -p ack -e 40 -c 0 -i 723 -a 0 -x {21.0 3.0 352 ------- null} + -t 35.0314 -s 1 -d 3 -p ack -e 40 -c 0 -i 723 -a 0 -x {21.0 3.0 352 ------- null} - -t 35.0314 -s 1 -d 3 -p ack -e 40 -c 0 -i 723 -a 0 -x {21.0 3.0 352 ------- null} h -t 35.0314 -s 1 -d 3 -p ack -e 40 -c 0 -i 723 -a 0 -x {21.0 3.0 -1 ------- null} r -t 35.033 -s 28 -d 1 -p ack -e 40 -c 0 -i 724 -a 0 -x {21.0 3.0 353 ------- null} + -t 35.033 -s 1 -d 3 -p ack -e 40 -c 0 -i 724 -a 0 -x {21.0 3.0 353 ------- null} - -t 35.033 -s 1 -d 3 -p ack -e 40 -c 0 -i 724 -a 0 -x {21.0 3.0 353 ------- null} h -t 35.033 -s 1 -d 3 -p ack -e 40 -c 0 -i 724 -a 0 -x {21.0 3.0 -1 ------- null} r -t 35.0346 -s 28 -d 1 -p ack -e 40 -c 0 -i 725 -a 0 -x {21.0 3.0 354 ------- null} + -t 35.0346 -s 1 -d 3 -p ack -e 40 -c 0 -i 725 -a 0 -x {21.0 3.0 354 ------- null} - -t 35.0346 -s 1 -d 3 -p ack -e 40 -c 0 -i 725 -a 0 -x {21.0 3.0 354 ------- null} h -t 35.0346 -s 1 -d 3 -p ack -e 40 -c 0 -i 725 -a 0 -x {21.0 3.0 -1 ------- null} r -t 35.0362 -s 28 -d 1 -p ack -e 40 -c 0 -i 726 -a 0 -x {21.0 3.0 355 ------- null} + -t 35.0362 -s 1 -d 3 -p ack -e 40 -c 0 -i 726 -a 0 -x {21.0 3.0 355 ------- null} - -t 35.0362 -s 1 -d 3 -p ack -e 40 -c 0 -i 726 -a 0 -x {21.0 3.0 355 ------- null} h -t 35.0362 -s 1 -d 3 -p ack -e 40 -c 0 -i 726 -a 0 -x {21.0 3.0 -1 ------- null} r -t 35.0378 -s 28 -d 1 -p ack -e 40 -c 0 -i 727 -a 0 -x {21.0 3.0 356 ------- null} + -t 35.0378 -s 1 -d 3 -p ack -e 40 -c 0 -i 727 -a 0 -x {21.0 3.0 356 ------- null} - -t 35.0378 -s 1 -d 3 -p ack -e 40 -c 0 -i 727 -a 0 -x {21.0 3.0 356 ------- null} h -t 35.0378 -s 1 -d 3 -p ack -e 40 -c 0 -i 727 -a 0 -x {21.0 3.0 -1 ------- null} r -t 35.0394 -s 28 -d 1 -p ack -e 40 -c 0 -i 728 -a 0 -x {21.0 3.0 357 ------- null} + -t 35.0394 -s 1 -d 3 -p ack -e 40 -c 0 -i 728 -a 0 -x {21.0 3.0 357 ------- null} - -t 35.0394 -s 1 -d 3 -p ack -e 40 -c 0 -i 728 -a 0 -x {21.0 3.0 357 ------- null} h -t 35.0394 -s 1 -d 3 -p ack -e 40 -c 0 -i 728 -a 0 -x {21.0 3.0 -1 ------- null} r -t 35.041 -s 28 -d 1 -p ack -e 40 -c 0 -i 729 -a 0 -x {21.0 3.0 358 ------- null} + -t 35.041 -s 1 -d 3 -p ack -e 40 -c 0 -i 729 -a 0 -x {21.0 3.0 358 ------- null} - -t 35.041 -s 1 -d 3 -p ack -e 40 -c 0 -i 729 -a 0 -x {21.0 3.0 358 ------- null} h -t 35.041 -s 1 -d 3 -p ack -e 40 -c 0 -i 729 -a 0 -x {21.0 3.0 -1 ------- null} r -t 35.0426 -s 28 -d 1 -p ack -e 40 -c 0 -i 730 -a 0 -x {21.0 3.0 359 ------- null} + -t 35.0426 -s 1 -d 3 -p ack -e 40 -c 0 -i 730 -a 0 -x {21.0 3.0 359 ------- null} - -t 35.0426 -s 1 -d 3 -p ack -e 40 -c 0 -i 730 -a 0 -x {21.0 3.0 359 ------- null} h -t 35.0426 -s 1 -d 3 -p ack -e 40 -c 0 -i 730 -a 0 -x {21.0 3.0 -1 ------- null} r -t 35.0442 -s 28 -d 1 -p ack -e 40 -c 0 -i 731 -a 0 -x {21.0 3.0 360 ------- null} + -t 35.0442 -s 1 -d 3 -p ack -e 40 -c 0 -i 731 -a 0 -x {21.0 3.0 360 ------- null} - -t 35.0442 -s 1 -d 3 -p ack -e 40 -c 0 -i 731 -a 0 -x {21.0 3.0 360 ------- null} h -t 35.0442 -s 1 -d 3 -p ack -e 40 -c 0 -i 731 -a 0 -x {21.0 3.0 -1 ------- null} r -t 35.0458 -s 28 -d 1 -p ack -e 40 -c 0 -i 732 -a 0 -x {21.0 3.0 361 ------- null} + -t 35.0458 -s 1 -d 3 -p ack -e 40 -c 0 -i 732 -a 0 -x {21.0 3.0 361 ------- null} - -t 35.0458 -s 1 -d 3 -p ack -e 40 -c 0 -i 732 -a 0 -x {21.0 3.0 361 ------- null} h -t 35.0458 -s 1 -d 3 -p ack -e 40 -c 0 -i 732 -a 0 -x {21.0 3.0 -1 ------- null} r -t 35.0474 -s 28 -d 1 -p ack -e 40 -c 0 -i 733 -a 0 -x {21.0 3.0 362 ------- null} + -t 35.0474 -s 1 -d 3 -p ack -e 40 -c 0 -i 733 -a 0 -x {21.0 3.0 362 ------- null} - -t 35.0474 -s 1 -d 3 -p ack -e 40 -c 0 -i 733 -a 0 -x {21.0 3.0 362 ------- null} h -t 35.0474 -s 1 -d 3 -p ack -e 40 -c 0 -i 733 -a 0 -x {21.0 3.0 -1 ------- null} r -t 35.049 -s 28 -d 1 -p ack -e 40 -c 0 -i 734 -a 0 -x {21.0 3.0 363 ------- null} + -t 35.049 -s 1 -d 3 -p ack -e 40 -c 0 -i 734 -a 0 -x {21.0 3.0 363 ------- null} - -t 35.049 -s 1 -d 3 -p ack -e 40 -c 0 -i 734 -a 0 -x {21.0 3.0 363 ------- null} h -t 35.049 -s 1 -d 3 -p ack -e 40 -c 0 -i 734 -a 0 -x {21.0 3.0 -1 ------- null} r -t 35.0506 -s 28 -d 1 -p ack -e 40 -c 0 -i 735 -a 0 -x {21.0 3.0 364 ------- null} + -t 35.0506 -s 1 -d 3 -p ack -e 40 -c 0 -i 735 -a 0 -x {21.0 3.0 364 ------- null} - -t 35.0506 -s 1 -d 3 -p ack -e 40 -c 0 -i 735 -a 0 -x {21.0 3.0 364 ------- null} h -t 35.0506 -s 1 -d 3 -p ack -e 40 -c 0 -i 735 -a 0 -x {21.0 3.0 -1 ------- null} r -t 35.0522 -s 28 -d 1 -p ack -e 40 -c 0 -i 736 -a 0 -x {21.0 3.0 365 ------- null} + -t 35.0522 -s 1 -d 3 -p ack -e 40 -c 0 -i 736 -a 0 -x {21.0 3.0 365 ------- null} - -t 35.0522 -s 1 -d 3 -p ack -e 40 -c 0 -i 736 -a 0 -x {21.0 3.0 365 ------- null} h -t 35.0522 -s 1 -d 3 -p ack -e 40 -c 0 -i 736 -a 0 -x {21.0 3.0 -1 ------- null} r -t 35.0538 -s 28 -d 1 -p ack -e 40 -c 0 -i 737 -a 0 -x {21.0 3.0 366 ------- null} + -t 35.0538 -s 1 -d 3 -p ack -e 40 -c 0 -i 737 -a 0 -x {21.0 3.0 366 ------- null} - -t 35.0538 -s 1 -d 3 -p ack -e 40 -c 0 -i 737 -a 0 -x {21.0 3.0 366 ------- null} h -t 35.0538 -s 1 -d 3 -p ack -e 40 -c 0 -i 737 -a 0 -x {21.0 3.0 -1 ------- null} r -t 35.0554 -s 28 -d 1 -p ack -e 40 -c 0 -i 738 -a 0 -x {21.0 3.0 367 ------- null} + -t 35.0554 -s 1 -d 3 -p ack -e 40 -c 0 -i 738 -a 0 -x {21.0 3.0 367 ------- null} - -t 35.0554 -s 1 -d 3 -p ack -e 40 -c 0 -i 738 -a 0 -x {21.0 3.0 367 ------- null} h -t 35.0554 -s 1 -d 3 -p ack -e 40 -c 0 -i 738 -a 0 -x {21.0 3.0 -1 ------- null} r -t 35.057 -s 28 -d 1 -p ack -e 40 -c 0 -i 739 -a 0 -x {21.0 3.0 368 ------- null} + -t 35.057 -s 1 -d 3 -p ack -e 40 -c 0 -i 739 -a 0 -x {21.0 3.0 368 ------- null} - -t 35.057 -s 1 -d 3 -p ack -e 40 -c 0 -i 739 -a 0 -x {21.0 3.0 368 ------- null} h -t 35.057 -s 1 -d 3 -p ack -e 40 -c 0 -i 739 -a 0 -x {21.0 3.0 -1 ------- null} r -t 35.0586 -s 28 -d 1 -p ack -e 40 -c 0 -i 740 -a 0 -x {21.0 3.0 369 ------- null} + -t 35.0586 -s 1 -d 3 -p ack -e 40 -c 0 -i 740 -a 0 -x {21.0 3.0 369 ------- null} - -t 35.0586 -s 1 -d 3 -p ack -e 40 -c 0 -i 740 -a 0 -x {21.0 3.0 369 ------- null} h -t 35.0586 -s 1 -d 3 -p ack -e 40 -c 0 -i 740 -a 0 -x {21.0 3.0 -1 ------- null} r -t 35.0602 -s 28 -d 1 -p ack -e 40 -c 0 -i 741 -a 0 -x {21.0 3.0 370 ------- null} + -t 35.0602 -s 1 -d 3 -p ack -e 40 -c 0 -i 741 -a 0 -x {21.0 3.0 370 ------- null} - -t 35.0602 -s 1 -d 3 -p ack -e 40 -c 0 -i 741 -a 0 -x {21.0 3.0 370 ------- null} h -t 35.0602 -s 1 -d 3 -p ack -e 40 -c 0 -i 741 -a 0 -x {21.0 3.0 -1 ------- null} r -t 35.1698 -s 1 -d 3 -p ack -e 40 -c 0 -i 722 -a 0 -x {21.0 3.0 351 ------- null} + -t 35.1698 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 742 -a 0 -x {3.0 21.0 371 ------- null} - -t 35.1698 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 742 -a 0 -x {3.0 21.0 371 ------- null} h -t 35.1698 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 742 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.1714 -s 1 -d 3 -p ack -e 40 -c 0 -i 723 -a 0 -x {21.0 3.0 352 ------- null} + -t 35.1714 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {3.0 21.0 372 ------- null} - -t 35.1714 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {3.0 21.0 372 ------- null} h -t 35.1714 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.173 -s 1 -d 3 -p ack -e 40 -c 0 -i 724 -a 0 -x {21.0 3.0 353 ------- null} + -t 35.173 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 744 -a 0 -x {3.0 21.0 373 ------- null} - -t 35.173 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 744 -a 0 -x {3.0 21.0 373 ------- null} h -t 35.173 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 744 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.1746 -s 1 -d 3 -p ack -e 40 -c 0 -i 725 -a 0 -x {21.0 3.0 354 ------- null} + -t 35.1746 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {3.0 21.0 374 ------- null} - -t 35.1746 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {3.0 21.0 374 ------- null} h -t 35.1746 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.1762 -s 1 -d 3 -p ack -e 40 -c 0 -i 726 -a 0 -x {21.0 3.0 355 ------- null} + -t 35.1762 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 746 -a 0 -x {3.0 21.0 375 ------- null} - -t 35.1762 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 746 -a 0 -x {3.0 21.0 375 ------- null} h -t 35.1762 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 746 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.1778 -s 1 -d 3 -p ack -e 40 -c 0 -i 727 -a 0 -x {21.0 3.0 356 ------- null} + -t 35.1778 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {3.0 21.0 376 ------- null} - -t 35.1778 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {3.0 21.0 376 ------- null} h -t 35.1778 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.1794 -s 1 -d 3 -p ack -e 40 -c 0 -i 728 -a 0 -x {21.0 3.0 357 ------- null} + -t 35.1794 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 748 -a 0 -x {3.0 21.0 377 ------- null} - -t 35.1794 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 748 -a 0 -x {3.0 21.0 377 ------- null} h -t 35.1794 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 748 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.181 -s 1 -d 3 -p ack -e 40 -c 0 -i 729 -a 0 -x {21.0 3.0 358 ------- null} + -t 35.181 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {3.0 21.0 378 ------- null} - -t 35.181 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {3.0 21.0 378 ------- null} h -t 35.181 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.1826 -s 1 -d 3 -p ack -e 40 -c 0 -i 730 -a 0 -x {21.0 3.0 359 ------- null} + -t 35.1826 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 750 -a 0 -x {3.0 21.0 379 ------- null} - -t 35.1826 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 750 -a 0 -x {3.0 21.0 379 ------- null} h -t 35.1826 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 750 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.1842 -s 1 -d 3 -p ack -e 40 -c 0 -i 731 -a 0 -x {21.0 3.0 360 ------- null} + -t 35.1842 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {3.0 21.0 380 ------- null} - -t 35.1842 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {3.0 21.0 380 ------- null} h -t 35.1842 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.1858 -s 1 -d 3 -p ack -e 40 -c 0 -i 732 -a 0 -x {21.0 3.0 361 ------- null} + -t 35.1858 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 752 -a 0 -x {3.0 21.0 381 ------- null} - -t 35.1858 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 752 -a 0 -x {3.0 21.0 381 ------- null} h -t 35.1858 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 752 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.1874 -s 1 -d 3 -p ack -e 40 -c 0 -i 733 -a 0 -x {21.0 3.0 362 ------- null} + -t 35.1874 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {3.0 21.0 382 ------- null} - -t 35.1874 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {3.0 21.0 382 ------- null} h -t 35.1874 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.189 -s 1 -d 3 -p ack -e 40 -c 0 -i 734 -a 0 -x {21.0 3.0 363 ------- null} + -t 35.189 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 754 -a 0 -x {3.0 21.0 383 ------- null} - -t 35.189 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 754 -a 0 -x {3.0 21.0 383 ------- null} h -t 35.189 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 754 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.1906 -s 1 -d 3 -p ack -e 40 -c 0 -i 735 -a 0 -x {21.0 3.0 364 ------- null} + -t 35.1906 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {3.0 21.0 384 ------- null} - -t 35.1906 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {3.0 21.0 384 ------- null} h -t 35.1906 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.1922 -s 1 -d 3 -p ack -e 40 -c 0 -i 736 -a 0 -x {21.0 3.0 365 ------- null} + -t 35.1922 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 756 -a 0 -x {3.0 21.0 385 ------- null} - -t 35.1922 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 756 -a 0 -x {3.0 21.0 385 ------- null} h -t 35.1922 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 756 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.1938 -s 1 -d 3 -p ack -e 40 -c 0 -i 737 -a 0 -x {21.0 3.0 366 ------- null} + -t 35.1938 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {3.0 21.0 386 ------- null} - -t 35.1938 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {3.0 21.0 386 ------- null} h -t 35.1938 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.1954 -s 1 -d 3 -p ack -e 40 -c 0 -i 738 -a 0 -x {21.0 3.0 367 ------- null} + -t 35.1954 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 758 -a 0 -x {3.0 21.0 387 ------- null} - -t 35.1954 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 758 -a 0 -x {3.0 21.0 387 ------- null} h -t 35.1954 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 758 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.197 -s 1 -d 3 -p ack -e 40 -c 0 -i 739 -a 0 -x {21.0 3.0 368 ------- null} + -t 35.197 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {3.0 21.0 388 ------- null} - -t 35.197 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {3.0 21.0 388 ------- null} h -t 35.197 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.1986 -s 1 -d 3 -p ack -e 40 -c 0 -i 740 -a 0 -x {21.0 3.0 369 ------- null} + -t 35.1986 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 760 -a 0 -x {3.0 21.0 389 ------- null} - -t 35.1986 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 760 -a 0 -x {3.0 21.0 389 ------- null} h -t 35.1986 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 760 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.2002 -s 1 -d 3 -p ack -e 40 -c 0 -i 741 -a 0 -x {21.0 3.0 370 ------- null} + -t 35.2002 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {3.0 21.0 390 ------- null} - -t 35.2002 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {3.0 21.0 390 ------- null} h -t 35.2002 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.3114 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 742 -a 0 -x {3.0 21.0 371 ------- null} + -t 35.3114 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 742 -a 0 -x {3.0 21.0 371 ------- null} - -t 35.3114 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 742 -a 0 -x {3.0 21.0 371 ------- null} h -t 35.3114 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 742 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.313 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {3.0 21.0 372 ------- null} + -t 35.313 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {3.0 21.0 372 ------- null} - -t 35.313 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {3.0 21.0 372 ------- null} h -t 35.313 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.3146 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 744 -a 0 -x {3.0 21.0 373 ------- null} + -t 35.3146 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 744 -a 0 -x {3.0 21.0 373 ------- null} - -t 35.3146 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 744 -a 0 -x {3.0 21.0 373 ------- null} h -t 35.3146 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 744 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.3162 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {3.0 21.0 374 ------- null} + -t 35.3162 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {3.0 21.0 374 ------- null} - -t 35.3162 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {3.0 21.0 374 ------- null} h -t 35.3162 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.3178 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 746 -a 0 -x {3.0 21.0 375 ------- null} + -t 35.3178 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 746 -a 0 -x {3.0 21.0 375 ------- null} - -t 35.3178 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 746 -a 0 -x {3.0 21.0 375 ------- null} h -t 35.3178 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 746 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.3194 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {3.0 21.0 376 ------- null} + -t 35.3194 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {3.0 21.0 376 ------- null} - -t 35.3194 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {3.0 21.0 376 ------- null} h -t 35.3194 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.321 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 748 -a 0 -x {3.0 21.0 377 ------- null} + -t 35.321 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 748 -a 0 -x {3.0 21.0 377 ------- null} - -t 35.321 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 748 -a 0 -x {3.0 21.0 377 ------- null} h -t 35.321 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 748 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.3226 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {3.0 21.0 378 ------- null} + -t 35.3226 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {3.0 21.0 378 ------- null} - -t 35.3226 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {3.0 21.0 378 ------- null} h -t 35.3226 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.3242 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 750 -a 0 -x {3.0 21.0 379 ------- null} + -t 35.3242 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 750 -a 0 -x {3.0 21.0 379 ------- null} - -t 35.3242 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 750 -a 0 -x {3.0 21.0 379 ------- null} h -t 35.3242 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 750 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.3258 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {3.0 21.0 380 ------- null} + -t 35.3258 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {3.0 21.0 380 ------- null} - -t 35.3258 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {3.0 21.0 380 ------- null} h -t 35.3258 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.3274 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 752 -a 0 -x {3.0 21.0 381 ------- null} + -t 35.3274 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 752 -a 0 -x {3.0 21.0 381 ------- null} - -t 35.3274 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 752 -a 0 -x {3.0 21.0 381 ------- null} h -t 35.3274 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 752 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.329 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {3.0 21.0 382 ------- null} + -t 35.329 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {3.0 21.0 382 ------- null} - -t 35.329 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {3.0 21.0 382 ------- null} h -t 35.329 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.3306 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 754 -a 0 -x {3.0 21.0 383 ------- null} + -t 35.3306 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 754 -a 0 -x {3.0 21.0 383 ------- null} - -t 35.3306 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 754 -a 0 -x {3.0 21.0 383 ------- null} h -t 35.3306 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 754 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.3322 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {3.0 21.0 384 ------- null} + -t 35.3322 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {3.0 21.0 384 ------- null} - -t 35.3322 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {3.0 21.0 384 ------- null} h -t 35.3322 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.3338 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 756 -a 0 -x {3.0 21.0 385 ------- null} + -t 35.3338 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 756 -a 0 -x {3.0 21.0 385 ------- null} - -t 35.3338 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 756 -a 0 -x {3.0 21.0 385 ------- null} h -t 35.3338 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 756 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.3354 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {3.0 21.0 386 ------- null} + -t 35.3354 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {3.0 21.0 386 ------- null} - -t 35.3354 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {3.0 21.0 386 ------- null} h -t 35.3354 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.337 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 758 -a 0 -x {3.0 21.0 387 ------- null} + -t 35.337 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 758 -a 0 -x {3.0 21.0 387 ------- null} - -t 35.337 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 758 -a 0 -x {3.0 21.0 387 ------- null} h -t 35.337 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 758 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.3386 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {3.0 21.0 388 ------- null} + -t 35.3386 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {3.0 21.0 388 ------- null} - -t 35.3386 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {3.0 21.0 388 ------- null} h -t 35.3386 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.3402 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 760 -a 0 -x {3.0 21.0 389 ------- null} + -t 35.3402 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 760 -a 0 -x {3.0 21.0 389 ------- null} - -t 35.3402 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 760 -a 0 -x {3.0 21.0 389 ------- null} h -t 35.3402 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 760 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.3418 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {3.0 21.0 390 ------- null} + -t 35.3418 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {3.0 21.0 390 ------- null} - -t 35.3418 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {3.0 21.0 390 ------- null} h -t 35.3418 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.613 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 742 -a 0 -x {3.0 21.0 371 ------- null} + -t 35.613 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 742 -a 0 -x {3.0 21.0 371 ------- null} - -t 35.613 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 742 -a 0 -x {3.0 21.0 371 ------- null} h -t 35.613 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 742 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.6146 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {3.0 21.0 372 ------- null} + -t 35.6146 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {3.0 21.0 372 ------- null} - -t 35.6146 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {3.0 21.0 372 ------- null} h -t 35.6146 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.6162 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 744 -a 0 -x {3.0 21.0 373 ------- null} + -t 35.6162 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 744 -a 0 -x {3.0 21.0 373 ------- null} - -t 35.6162 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 744 -a 0 -x {3.0 21.0 373 ------- null} h -t 35.6162 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 744 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.6178 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {3.0 21.0 374 ------- null} + -t 35.6178 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {3.0 21.0 374 ------- null} - -t 35.6178 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {3.0 21.0 374 ------- null} h -t 35.6178 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.6194 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 746 -a 0 -x {3.0 21.0 375 ------- null} + -t 35.6194 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 746 -a 0 -x {3.0 21.0 375 ------- null} - -t 35.6194 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 746 -a 0 -x {3.0 21.0 375 ------- null} h -t 35.6194 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 746 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.621 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {3.0 21.0 376 ------- null} + -t 35.621 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {3.0 21.0 376 ------- null} - -t 35.621 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {3.0 21.0 376 ------- null} h -t 35.621 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.6226 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 748 -a 0 -x {3.0 21.0 377 ------- null} + -t 35.6226 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 748 -a 0 -x {3.0 21.0 377 ------- null} - -t 35.6226 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 748 -a 0 -x {3.0 21.0 377 ------- null} h -t 35.6226 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 748 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.6242 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {3.0 21.0 378 ------- null} + -t 35.6242 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {3.0 21.0 378 ------- null} - -t 35.6242 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {3.0 21.0 378 ------- null} h -t 35.6242 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.6258 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 750 -a 0 -x {3.0 21.0 379 ------- null} + -t 35.6258 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 750 -a 0 -x {3.0 21.0 379 ------- null} - -t 35.6258 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 750 -a 0 -x {3.0 21.0 379 ------- null} h -t 35.6258 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 750 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.6274 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {3.0 21.0 380 ------- null} + -t 35.6274 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {3.0 21.0 380 ------- null} - -t 35.6274 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {3.0 21.0 380 ------- null} h -t 35.6274 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.629 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 752 -a 0 -x {3.0 21.0 381 ------- null} + -t 35.629 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 752 -a 0 -x {3.0 21.0 381 ------- null} - -t 35.629 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 752 -a 0 -x {3.0 21.0 381 ------- null} h -t 35.629 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 752 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.6306 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {3.0 21.0 382 ------- null} + -t 35.6306 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {3.0 21.0 382 ------- null} - -t 35.6306 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {3.0 21.0 382 ------- null} h -t 35.6306 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.6322 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 754 -a 0 -x {3.0 21.0 383 ------- null} + -t 35.6322 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 754 -a 0 -x {3.0 21.0 383 ------- null} - -t 35.6322 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 754 -a 0 -x {3.0 21.0 383 ------- null} h -t 35.6322 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 754 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.6338 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {3.0 21.0 384 ------- null} + -t 35.6338 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {3.0 21.0 384 ------- null} - -t 35.6338 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {3.0 21.0 384 ------- null} h -t 35.6338 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.6354 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 756 -a 0 -x {3.0 21.0 385 ------- null} + -t 35.6354 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 756 -a 0 -x {3.0 21.0 385 ------- null} - -t 35.6354 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 756 -a 0 -x {3.0 21.0 385 ------- null} h -t 35.6354 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 756 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.637 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {3.0 21.0 386 ------- null} + -t 35.637 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {3.0 21.0 386 ------- null} - -t 35.637 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {3.0 21.0 386 ------- null} h -t 35.637 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.6386 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 758 -a 0 -x {3.0 21.0 387 ------- null} + -t 35.6386 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 758 -a 0 -x {3.0 21.0 387 ------- null} - -t 35.6386 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 758 -a 0 -x {3.0 21.0 387 ------- null} h -t 35.6386 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 758 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.6402 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {3.0 21.0 388 ------- null} + -t 35.6402 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {3.0 21.0 388 ------- null} - -t 35.6402 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {3.0 21.0 388 ------- null} h -t 35.6402 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.6418 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 760 -a 0 -x {3.0 21.0 389 ------- null} + -t 35.6418 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 760 -a 0 -x {3.0 21.0 389 ------- null} - -t 35.6418 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 760 -a 0 -x {3.0 21.0 389 ------- null} h -t 35.6418 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 760 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.6434 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {3.0 21.0 390 ------- null} + -t 35.6434 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {3.0 21.0 390 ------- null} - -t 35.6434 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {3.0 21.0 390 ------- null} h -t 35.6434 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.9646 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 742 -a 0 -x {3.0 21.0 371 ------- null} + -t 35.9646 -s 21 -d 28 -p ack -e 40 -c 0 -i 762 -a 0 -x {21.0 3.0 371 ------- null} - -t 35.9646 -s 21 -d 28 -p ack -e 40 -c 0 -i 762 -a 0 -x {21.0 3.0 371 ------- null} h -t 35.9646 -s 21 -d 28 -p ack -e 40 -c 0 -i 762 -a 0 -x {21.0 3.0 -1 ------- null} r -t 35.9662 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {3.0 21.0 372 ------- null} + -t 35.9662 -s 21 -d 28 -p ack -e 40 -c 0 -i 763 -a 0 -x {21.0 3.0 372 ------- null} - -t 35.9662 -s 21 -d 28 -p ack -e 40 -c 0 -i 763 -a 0 -x {21.0 3.0 372 ------- null} h -t 35.9662 -s 21 -d 28 -p ack -e 40 -c 0 -i 763 -a 0 -x {21.0 3.0 -1 ------- null} r -t 35.9678 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 744 -a 0 -x {3.0 21.0 373 ------- null} + -t 35.9678 -s 21 -d 28 -p ack -e 40 -c 0 -i 764 -a 0 -x {21.0 3.0 373 ------- null} - -t 35.9678 -s 21 -d 28 -p ack -e 40 -c 0 -i 764 -a 0 -x {21.0 3.0 373 ------- null} h -t 35.9678 -s 21 -d 28 -p ack -e 40 -c 0 -i 764 -a 0 -x {21.0 3.0 -1 ------- null} r -t 35.9694 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {3.0 21.0 374 ------- null} + -t 35.9694 -s 21 -d 28 -p ack -e 40 -c 0 -i 765 -a 0 -x {21.0 3.0 374 ------- null} - -t 35.9694 -s 21 -d 28 -p ack -e 40 -c 0 -i 765 -a 0 -x {21.0 3.0 374 ------- null} h -t 35.9694 -s 21 -d 28 -p ack -e 40 -c 0 -i 765 -a 0 -x {21.0 3.0 -1 ------- null} r -t 35.971 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 746 -a 0 -x {3.0 21.0 375 ------- null} + -t 35.971 -s 21 -d 28 -p ack -e 40 -c 0 -i 766 -a 0 -x {21.0 3.0 375 ------- null} - -t 35.971 -s 21 -d 28 -p ack -e 40 -c 0 -i 766 -a 0 -x {21.0 3.0 375 ------- null} h -t 35.971 -s 21 -d 28 -p ack -e 40 -c 0 -i 766 -a 0 -x {21.0 3.0 -1 ------- null} r -t 35.9726 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {3.0 21.0 376 ------- null} + -t 35.9726 -s 21 -d 28 -p ack -e 40 -c 0 -i 767 -a 0 -x {21.0 3.0 376 ------- null} - -t 35.9726 -s 21 -d 28 -p ack -e 40 -c 0 -i 767 -a 0 -x {21.0 3.0 376 ------- null} h -t 35.9726 -s 21 -d 28 -p ack -e 40 -c 0 -i 767 -a 0 -x {21.0 3.0 -1 ------- null} r -t 35.9742 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 748 -a 0 -x {3.0 21.0 377 ------- null} + -t 35.9742 -s 21 -d 28 -p ack -e 40 -c 0 -i 768 -a 0 -x {21.0 3.0 377 ------- null} - -t 35.9742 -s 21 -d 28 -p ack -e 40 -c 0 -i 768 -a 0 -x {21.0 3.0 377 ------- null} h -t 35.9742 -s 21 -d 28 -p ack -e 40 -c 0 -i 768 -a 0 -x {21.0 3.0 -1 ------- null} r -t 35.9758 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {3.0 21.0 378 ------- null} + -t 35.9758 -s 21 -d 28 -p ack -e 40 -c 0 -i 769 -a 0 -x {21.0 3.0 378 ------- null} - -t 35.9758 -s 21 -d 28 -p ack -e 40 -c 0 -i 769 -a 0 -x {21.0 3.0 378 ------- null} h -t 35.9758 -s 21 -d 28 -p ack -e 40 -c 0 -i 769 -a 0 -x {21.0 3.0 -1 ------- null} r -t 35.9774 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 750 -a 0 -x {3.0 21.0 379 ------- null} + -t 35.9774 -s 21 -d 28 -p ack -e 40 -c 0 -i 770 -a 0 -x {21.0 3.0 379 ------- null} - -t 35.9774 -s 21 -d 28 -p ack -e 40 -c 0 -i 770 -a 0 -x {21.0 3.0 379 ------- null} h -t 35.9774 -s 21 -d 28 -p ack -e 40 -c 0 -i 770 -a 0 -x {21.0 3.0 -1 ------- null} r -t 35.979 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {3.0 21.0 380 ------- null} + -t 35.979 -s 21 -d 28 -p ack -e 40 -c 0 -i 771 -a 0 -x {21.0 3.0 380 ------- null} - -t 35.979 -s 21 -d 28 -p ack -e 40 -c 0 -i 771 -a 0 -x {21.0 3.0 380 ------- null} h -t 35.979 -s 21 -d 28 -p ack -e 40 -c 0 -i 771 -a 0 -x {21.0 3.0 -1 ------- null} r -t 35.9806 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 752 -a 0 -x {3.0 21.0 381 ------- null} + -t 35.9806 -s 21 -d 28 -p ack -e 40 -c 0 -i 772 -a 0 -x {21.0 3.0 381 ------- null} - -t 35.9806 -s 21 -d 28 -p ack -e 40 -c 0 -i 772 -a 0 -x {21.0 3.0 381 ------- null} h -t 35.9806 -s 21 -d 28 -p ack -e 40 -c 0 -i 772 -a 0 -x {21.0 3.0 -1 ------- null} r -t 35.9822 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {3.0 21.0 382 ------- null} + -t 35.9822 -s 21 -d 28 -p ack -e 40 -c 0 -i 773 -a 0 -x {21.0 3.0 382 ------- null} - -t 35.9822 -s 21 -d 28 -p ack -e 40 -c 0 -i 773 -a 0 -x {21.0 3.0 382 ------- null} h -t 35.9822 -s 21 -d 28 -p ack -e 40 -c 0 -i 773 -a 0 -x {21.0 3.0 -1 ------- null} r -t 35.9838 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 754 -a 0 -x {3.0 21.0 383 ------- null} + -t 35.9838 -s 21 -d 28 -p ack -e 40 -c 0 -i 774 -a 0 -x {21.0 3.0 383 ------- null} - -t 35.9838 -s 21 -d 28 -p ack -e 40 -c 0 -i 774 -a 0 -x {21.0 3.0 383 ------- null} h -t 35.9838 -s 21 -d 28 -p ack -e 40 -c 0 -i 774 -a 0 -x {21.0 3.0 -1 ------- null} r -t 35.9854 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {3.0 21.0 384 ------- null} + -t 35.9854 -s 21 -d 28 -p ack -e 40 -c 0 -i 775 -a 0 -x {21.0 3.0 384 ------- null} - -t 35.9854 -s 21 -d 28 -p ack -e 40 -c 0 -i 775 -a 0 -x {21.0 3.0 384 ------- null} h -t 35.9854 -s 21 -d 28 -p ack -e 40 -c 0 -i 775 -a 0 -x {21.0 3.0 -1 ------- null} r -t 35.987 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 756 -a 0 -x {3.0 21.0 385 ------- null} + -t 35.987 -s 21 -d 28 -p ack -e 40 -c 0 -i 776 -a 0 -x {21.0 3.0 385 ------- null} - -t 35.987 -s 21 -d 28 -p ack -e 40 -c 0 -i 776 -a 0 -x {21.0 3.0 385 ------- null} h -t 35.987 -s 21 -d 28 -p ack -e 40 -c 0 -i 776 -a 0 -x {21.0 3.0 -1 ------- null} r -t 35.9886 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {3.0 21.0 386 ------- null} + -t 35.9886 -s 21 -d 28 -p ack -e 40 -c 0 -i 777 -a 0 -x {21.0 3.0 386 ------- null} - -t 35.9886 -s 21 -d 28 -p ack -e 40 -c 0 -i 777 -a 0 -x {21.0 3.0 386 ------- null} h -t 35.9886 -s 21 -d 28 -p ack -e 40 -c 0 -i 777 -a 0 -x {21.0 3.0 -1 ------- null} r -t 35.9902 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 758 -a 0 -x {3.0 21.0 387 ------- null} + -t 35.9902 -s 21 -d 28 -p ack -e 40 -c 0 -i 778 -a 0 -x {21.0 3.0 387 ------- null} - -t 35.9902 -s 21 -d 28 -p ack -e 40 -c 0 -i 778 -a 0 -x {21.0 3.0 387 ------- null} h -t 35.9902 -s 21 -d 28 -p ack -e 40 -c 0 -i 778 -a 0 -x {21.0 3.0 -1 ------- null} r -t 35.9918 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {3.0 21.0 388 ------- null} + -t 35.9918 -s 21 -d 28 -p ack -e 40 -c 0 -i 779 -a 0 -x {21.0 3.0 388 ------- null} - -t 35.9918 -s 21 -d 28 -p ack -e 40 -c 0 -i 779 -a 0 -x {21.0 3.0 388 ------- null} h -t 35.9918 -s 21 -d 28 -p ack -e 40 -c 0 -i 779 -a 0 -x {21.0 3.0 -1 ------- null} r -t 35.9934 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 760 -a 0 -x {3.0 21.0 389 ------- null} + -t 35.9934 -s 21 -d 28 -p ack -e 40 -c 0 -i 780 -a 0 -x {21.0 3.0 389 ------- null} - -t 35.9934 -s 21 -d 28 -p ack -e 40 -c 0 -i 780 -a 0 -x {21.0 3.0 389 ------- null} h -t 35.9934 -s 21 -d 28 -p ack -e 40 -c 0 -i 780 -a 0 -x {21.0 3.0 -1 ------- null} r -t 35.995 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {3.0 21.0 390 ------- null} + -t 35.995 -s 21 -d 28 -p ack -e 40 -c 0 -i 781 -a 0 -x {21.0 3.0 390 ------- null} - -t 35.995 -s 21 -d 28 -p ack -e 40 -c 0 -i 781 -a 0 -x {21.0 3.0 390 ------- null} h -t 35.995 -s 21 -d 28 -p ack -e 40 -c 0 -i 781 -a 0 -x {21.0 3.0 -1 ------- null} r -t 36.3147 -s 21 -d 28 -p ack -e 40 -c 0 -i 762 -a 0 -x {21.0 3.0 371 ------- null} + -t 36.3147 -s 28 -d 1 -p ack -e 40 -c 0 -i 762 -a 0 -x {21.0 3.0 371 ------- null} - -t 36.3147 -s 28 -d 1 -p ack -e 40 -c 0 -i 762 -a 0 -x {21.0 3.0 371 ------- null} h -t 36.3147 -s 28 -d 1 -p ack -e 40 -c 0 -i 762 -a 0 -x {21.0 3.0 -1 ------- null} r -t 36.3163 -s 21 -d 28 -p ack -e 40 -c 0 -i 763 -a 0 -x {21.0 3.0 372 ------- null} + -t 36.3163 -s 28 -d 1 -p ack -e 40 -c 0 -i 763 -a 0 -x {21.0 3.0 372 ------- null} - -t 36.3163 -s 28 -d 1 -p ack -e 40 -c 0 -i 763 -a 0 -x {21.0 3.0 372 ------- null} h -t 36.3163 -s 28 -d 1 -p ack -e 40 -c 0 -i 763 -a 0 -x {21.0 3.0 -1 ------- null} r -t 36.3179 -s 21 -d 28 -p ack -e 40 -c 0 -i 764 -a 0 -x {21.0 3.0 373 ------- null} + -t 36.3179 -s 28 -d 1 -p ack -e 40 -c 0 -i 764 -a 0 -x {21.0 3.0 373 ------- null} - -t 36.3179 -s 28 -d 1 -p ack -e 40 -c 0 -i 764 -a 0 -x {21.0 3.0 373 ------- null} h -t 36.3179 -s 28 -d 1 -p ack -e 40 -c 0 -i 764 -a 0 -x {21.0 3.0 -1 ------- null} r -t 36.3195 -s 21 -d 28 -p ack -e 40 -c 0 -i 765 -a 0 -x {21.0 3.0 374 ------- null} + -t 36.3195 -s 28 -d 1 -p ack -e 40 -c 0 -i 765 -a 0 -x {21.0 3.0 374 ------- null} - -t 36.3195 -s 28 -d 1 -p ack -e 40 -c 0 -i 765 -a 0 -x {21.0 3.0 374 ------- null} h -t 36.3195 -s 28 -d 1 -p ack -e 40 -c 0 -i 765 -a 0 -x {21.0 3.0 -1 ------- null} r -t 36.3211 -s 21 -d 28 -p ack -e 40 -c 0 -i 766 -a 0 -x {21.0 3.0 375 ------- null} + -t 36.3211 -s 28 -d 1 -p ack -e 40 -c 0 -i 766 -a 0 -x {21.0 3.0 375 ------- null} - -t 36.3211 -s 28 -d 1 -p ack -e 40 -c 0 -i 766 -a 0 -x {21.0 3.0 375 ------- null} h -t 36.3211 -s 28 -d 1 -p ack -e 40 -c 0 -i 766 -a 0 -x {21.0 3.0 -1 ------- null} r -t 36.3227 -s 21 -d 28 -p ack -e 40 -c 0 -i 767 -a 0 -x {21.0 3.0 376 ------- null} + -t 36.3227 -s 28 -d 1 -p ack -e 40 -c 0 -i 767 -a 0 -x {21.0 3.0 376 ------- null} - -t 36.3227 -s 28 -d 1 -p ack -e 40 -c 0 -i 767 -a 0 -x {21.0 3.0 376 ------- null} h -t 36.3227 -s 28 -d 1 -p ack -e 40 -c 0 -i 767 -a 0 -x {21.0 3.0 -1 ------- null} r -t 36.3243 -s 21 -d 28 -p ack -e 40 -c 0 -i 768 -a 0 -x {21.0 3.0 377 ------- null} + -t 36.3243 -s 28 -d 1 -p ack -e 40 -c 0 -i 768 -a 0 -x {21.0 3.0 377 ------- null} - -t 36.3243 -s 28 -d 1 -p ack -e 40 -c 0 -i 768 -a 0 -x {21.0 3.0 377 ------- null} h -t 36.3243 -s 28 -d 1 -p ack -e 40 -c 0 -i 768 -a 0 -x {21.0 3.0 -1 ------- null} r -t 36.3259 -s 21 -d 28 -p ack -e 40 -c 0 -i 769 -a 0 -x {21.0 3.0 378 ------- null} + -t 36.3259 -s 28 -d 1 -p ack -e 40 -c 0 -i 769 -a 0 -x {21.0 3.0 378 ------- null} - -t 36.3259 -s 28 -d 1 -p ack -e 40 -c 0 -i 769 -a 0 -x {21.0 3.0 378 ------- null} h -t 36.3259 -s 28 -d 1 -p ack -e 40 -c 0 -i 769 -a 0 -x {21.0 3.0 -1 ------- null} r -t 36.3275 -s 21 -d 28 -p ack -e 40 -c 0 -i 770 -a 0 -x {21.0 3.0 379 ------- null} + -t 36.3275 -s 28 -d 1 -p ack -e 40 -c 0 -i 770 -a 0 -x {21.0 3.0 379 ------- null} - -t 36.3275 -s 28 -d 1 -p ack -e 40 -c 0 -i 770 -a 0 -x {21.0 3.0 379 ------- null} h -t 36.3275 -s 28 -d 1 -p ack -e 40 -c 0 -i 770 -a 0 -x {21.0 3.0 -1 ------- null} r -t 36.3291 -s 21 -d 28 -p ack -e 40 -c 0 -i 771 -a 0 -x {21.0 3.0 380 ------- null} + -t 36.3291 -s 28 -d 1 -p ack -e 40 -c 0 -i 771 -a 0 -x {21.0 3.0 380 ------- null} - -t 36.3291 -s 28 -d 1 -p ack -e 40 -c 0 -i 771 -a 0 -x {21.0 3.0 380 ------- null} h -t 36.3291 -s 28 -d 1 -p ack -e 40 -c 0 -i 771 -a 0 -x {21.0 3.0 -1 ------- null} r -t 36.3307 -s 21 -d 28 -p ack -e 40 -c 0 -i 772 -a 0 -x {21.0 3.0 381 ------- null} + -t 36.3307 -s 28 -d 1 -p ack -e 40 -c 0 -i 772 -a 0 -x {21.0 3.0 381 ------- null} - -t 36.3307 -s 28 -d 1 -p ack -e 40 -c 0 -i 772 -a 0 -x {21.0 3.0 381 ------- null} h -t 36.3307 -s 28 -d 1 -p ack -e 40 -c 0 -i 772 -a 0 -x {21.0 3.0 -1 ------- null} r -t 36.3323 -s 21 -d 28 -p ack -e 40 -c 0 -i 773 -a 0 -x {21.0 3.0 382 ------- null} + -t 36.3323 -s 28 -d 1 -p ack -e 40 -c 0 -i 773 -a 0 -x {21.0 3.0 382 ------- null} - -t 36.3323 -s 28 -d 1 -p ack -e 40 -c 0 -i 773 -a 0 -x {21.0 3.0 382 ------- null} h -t 36.3323 -s 28 -d 1 -p ack -e 40 -c 0 -i 773 -a 0 -x {21.0 3.0 -1 ------- null} r -t 36.3339 -s 21 -d 28 -p ack -e 40 -c 0 -i 774 -a 0 -x {21.0 3.0 383 ------- null} + -t 36.3339 -s 28 -d 1 -p ack -e 40 -c 0 -i 774 -a 0 -x {21.0 3.0 383 ------- null} - -t 36.3339 -s 28 -d 1 -p ack -e 40 -c 0 -i 774 -a 0 -x {21.0 3.0 383 ------- null} h -t 36.3339 -s 28 -d 1 -p ack -e 40 -c 0 -i 774 -a 0 -x {21.0 3.0 -1 ------- null} r -t 36.3355 -s 21 -d 28 -p ack -e 40 -c 0 -i 775 -a 0 -x {21.0 3.0 384 ------- null} + -t 36.3355 -s 28 -d 1 -p ack -e 40 -c 0 -i 775 -a 0 -x {21.0 3.0 384 ------- null} - -t 36.3355 -s 28 -d 1 -p ack -e 40 -c 0 -i 775 -a 0 -x {21.0 3.0 384 ------- null} h -t 36.3355 -s 28 -d 1 -p ack -e 40 -c 0 -i 775 -a 0 -x {21.0 3.0 -1 ------- null} r -t 36.3371 -s 21 -d 28 -p ack -e 40 -c 0 -i 776 -a 0 -x {21.0 3.0 385 ------- null} + -t 36.3371 -s 28 -d 1 -p ack -e 40 -c 0 -i 776 -a 0 -x {21.0 3.0 385 ------- null} - -t 36.3371 -s 28 -d 1 -p ack -e 40 -c 0 -i 776 -a 0 -x {21.0 3.0 385 ------- null} h -t 36.3371 -s 28 -d 1 -p ack -e 40 -c 0 -i 776 -a 0 -x {21.0 3.0 -1 ------- null} r -t 36.3387 -s 21 -d 28 -p ack -e 40 -c 0 -i 777 -a 0 -x {21.0 3.0 386 ------- null} + -t 36.3387 -s 28 -d 1 -p ack -e 40 -c 0 -i 777 -a 0 -x {21.0 3.0 386 ------- null} - -t 36.3387 -s 28 -d 1 -p ack -e 40 -c 0 -i 777 -a 0 -x {21.0 3.0 386 ------- null} h -t 36.3387 -s 28 -d 1 -p ack -e 40 -c 0 -i 777 -a 0 -x {21.0 3.0 -1 ------- null} r -t 36.3403 -s 21 -d 28 -p ack -e 40 -c 0 -i 778 -a 0 -x {21.0 3.0 387 ------- null} + -t 36.3403 -s 28 -d 1 -p ack -e 40 -c 0 -i 778 -a 0 -x {21.0 3.0 387 ------- null} - -t 36.3403 -s 28 -d 1 -p ack -e 40 -c 0 -i 778 -a 0 -x {21.0 3.0 387 ------- null} h -t 36.3403 -s 28 -d 1 -p ack -e 40 -c 0 -i 778 -a 0 -x {21.0 3.0 -1 ------- null} r -t 36.3419 -s 21 -d 28 -p ack -e 40 -c 0 -i 779 -a 0 -x {21.0 3.0 388 ------- null} + -t 36.3419 -s 28 -d 1 -p ack -e 40 -c 0 -i 779 -a 0 -x {21.0 3.0 388 ------- null} - -t 36.3419 -s 28 -d 1 -p ack -e 40 -c 0 -i 779 -a 0 -x {21.0 3.0 388 ------- null} h -t 36.3419 -s 28 -d 1 -p ack -e 40 -c 0 -i 779 -a 0 -x {21.0 3.0 -1 ------- null} r -t 36.3435 -s 21 -d 28 -p ack -e 40 -c 0 -i 780 -a 0 -x {21.0 3.0 389 ------- null} + -t 36.3435 -s 28 -d 1 -p ack -e 40 -c 0 -i 780 -a 0 -x {21.0 3.0 389 ------- null} - -t 36.3435 -s 28 -d 1 -p ack -e 40 -c 0 -i 780 -a 0 -x {21.0 3.0 389 ------- null} h -t 36.3435 -s 28 -d 1 -p ack -e 40 -c 0 -i 780 -a 0 -x {21.0 3.0 -1 ------- null} r -t 36.3451 -s 21 -d 28 -p ack -e 40 -c 0 -i 781 -a 0 -x {21.0 3.0 390 ------- null} + -t 36.3451 -s 28 -d 1 -p ack -e 40 -c 0 -i 781 -a 0 -x {21.0 3.0 390 ------- null} - -t 36.3451 -s 28 -d 1 -p ack -e 40 -c 0 -i 781 -a 0 -x {21.0 3.0 390 ------- null} h -t 36.3451 -s 28 -d 1 -p ack -e 40 -c 0 -i 781 -a 0 -x {21.0 3.0 -1 ------- null} r -t 36.6148 -s 28 -d 1 -p ack -e 40 -c 0 -i 762 -a 0 -x {21.0 3.0 371 ------- null} + -t 36.6148 -s 1 -d 3 -p ack -e 40 -c 0 -i 762 -a 0 -x {21.0 3.0 371 ------- null} - -t 36.6148 -s 1 -d 3 -p ack -e 40 -c 0 -i 762 -a 0 -x {21.0 3.0 371 ------- null} h -t 36.6148 -s 1 -d 3 -p ack -e 40 -c 0 -i 762 -a 0 -x {21.0 3.0 -1 ------- null} r -t 36.6164 -s 28 -d 1 -p ack -e 40 -c 0 -i 763 -a 0 -x {21.0 3.0 372 ------- null} + -t 36.6164 -s 1 -d 3 -p ack -e 40 -c 0 -i 763 -a 0 -x {21.0 3.0 372 ------- null} - -t 36.6164 -s 1 -d 3 -p ack -e 40 -c 0 -i 763 -a 0 -x {21.0 3.0 372 ------- null} h -t 36.6164 -s 1 -d 3 -p ack -e 40 -c 0 -i 763 -a 0 -x {21.0 3.0 -1 ------- null} r -t 36.618 -s 28 -d 1 -p ack -e 40 -c 0 -i 764 -a 0 -x {21.0 3.0 373 ------- null} + -t 36.618 -s 1 -d 3 -p ack -e 40 -c 0 -i 764 -a 0 -x {21.0 3.0 373 ------- null} - -t 36.618 -s 1 -d 3 -p ack -e 40 -c 0 -i 764 -a 0 -x {21.0 3.0 373 ------- null} h -t 36.618 -s 1 -d 3 -p ack -e 40 -c 0 -i 764 -a 0 -x {21.0 3.0 -1 ------- null} r -t 36.6196 -s 28 -d 1 -p ack -e 40 -c 0 -i 765 -a 0 -x {21.0 3.0 374 ------- null} + -t 36.6196 -s 1 -d 3 -p ack -e 40 -c 0 -i 765 -a 0 -x {21.0 3.0 374 ------- null} - -t 36.6196 -s 1 -d 3 -p ack -e 40 -c 0 -i 765 -a 0 -x {21.0 3.0 374 ------- null} h -t 36.6196 -s 1 -d 3 -p ack -e 40 -c 0 -i 765 -a 0 -x {21.0 3.0 -1 ------- null} r -t 36.6212 -s 28 -d 1 -p ack -e 40 -c 0 -i 766 -a 0 -x {21.0 3.0 375 ------- null} + -t 36.6212 -s 1 -d 3 -p ack -e 40 -c 0 -i 766 -a 0 -x {21.0 3.0 375 ------- null} - -t 36.6212 -s 1 -d 3 -p ack -e 40 -c 0 -i 766 -a 0 -x {21.0 3.0 375 ------- null} h -t 36.6212 -s 1 -d 3 -p ack -e 40 -c 0 -i 766 -a 0 -x {21.0 3.0 -1 ------- null} r -t 36.6228 -s 28 -d 1 -p ack -e 40 -c 0 -i 767 -a 0 -x {21.0 3.0 376 ------- null} + -t 36.6228 -s 1 -d 3 -p ack -e 40 -c 0 -i 767 -a 0 -x {21.0 3.0 376 ------- null} - -t 36.6228 -s 1 -d 3 -p ack -e 40 -c 0 -i 767 -a 0 -x {21.0 3.0 376 ------- null} h -t 36.6228 -s 1 -d 3 -p ack -e 40 -c 0 -i 767 -a 0 -x {21.0 3.0 -1 ------- null} r -t 36.6244 -s 28 -d 1 -p ack -e 40 -c 0 -i 768 -a 0 -x {21.0 3.0 377 ------- null} + -t 36.6244 -s 1 -d 3 -p ack -e 40 -c 0 -i 768 -a 0 -x {21.0 3.0 377 ------- null} - -t 36.6244 -s 1 -d 3 -p ack -e 40 -c 0 -i 768 -a 0 -x {21.0 3.0 377 ------- null} h -t 36.6244 -s 1 -d 3 -p ack -e 40 -c 0 -i 768 -a 0 -x {21.0 3.0 -1 ------- null} r -t 36.626 -s 28 -d 1 -p ack -e 40 -c 0 -i 769 -a 0 -x {21.0 3.0 378 ------- null} + -t 36.626 -s 1 -d 3 -p ack -e 40 -c 0 -i 769 -a 0 -x {21.0 3.0 378 ------- null} - -t 36.626 -s 1 -d 3 -p ack -e 40 -c 0 -i 769 -a 0 -x {21.0 3.0 378 ------- null} h -t 36.626 -s 1 -d 3 -p ack -e 40 -c 0 -i 769 -a 0 -x {21.0 3.0 -1 ------- null} r -t 36.6276 -s 28 -d 1 -p ack -e 40 -c 0 -i 770 -a 0 -x {21.0 3.0 379 ------- null} + -t 36.6276 -s 1 -d 3 -p ack -e 40 -c 0 -i 770 -a 0 -x {21.0 3.0 379 ------- null} - -t 36.6276 -s 1 -d 3 -p ack -e 40 -c 0 -i 770 -a 0 -x {21.0 3.0 379 ------- null} h -t 36.6276 -s 1 -d 3 -p ack -e 40 -c 0 -i 770 -a 0 -x {21.0 3.0 -1 ------- null} r -t 36.6292 -s 28 -d 1 -p ack -e 40 -c 0 -i 771 -a 0 -x {21.0 3.0 380 ------- null} + -t 36.6292 -s 1 -d 3 -p ack -e 40 -c 0 -i 771 -a 0 -x {21.0 3.0 380 ------- null} - -t 36.6292 -s 1 -d 3 -p ack -e 40 -c 0 -i 771 -a 0 -x {21.0 3.0 380 ------- null} h -t 36.6292 -s 1 -d 3 -p ack -e 40 -c 0 -i 771 -a 0 -x {21.0 3.0 -1 ------- null} r -t 36.6308 -s 28 -d 1 -p ack -e 40 -c 0 -i 772 -a 0 -x {21.0 3.0 381 ------- null} + -t 36.6308 -s 1 -d 3 -p ack -e 40 -c 0 -i 772 -a 0 -x {21.0 3.0 381 ------- null} - -t 36.6308 -s 1 -d 3 -p ack -e 40 -c 0 -i 772 -a 0 -x {21.0 3.0 381 ------- null} h -t 36.6308 -s 1 -d 3 -p ack -e 40 -c 0 -i 772 -a 0 -x {21.0 3.0 -1 ------- null} r -t 36.6324 -s 28 -d 1 -p ack -e 40 -c 0 -i 773 -a 0 -x {21.0 3.0 382 ------- null} + -t 36.6324 -s 1 -d 3 -p ack -e 40 -c 0 -i 773 -a 0 -x {21.0 3.0 382 ------- null} - -t 36.6324 -s 1 -d 3 -p ack -e 40 -c 0 -i 773 -a 0 -x {21.0 3.0 382 ------- null} h -t 36.6324 -s 1 -d 3 -p ack -e 40 -c 0 -i 773 -a 0 -x {21.0 3.0 -1 ------- null} r -t 36.634 -s 28 -d 1 -p ack -e 40 -c 0 -i 774 -a 0 -x {21.0 3.0 383 ------- null} + -t 36.634 -s 1 -d 3 -p ack -e 40 -c 0 -i 774 -a 0 -x {21.0 3.0 383 ------- null} - -t 36.634 -s 1 -d 3 -p ack -e 40 -c 0 -i 774 -a 0 -x {21.0 3.0 383 ------- null} h -t 36.634 -s 1 -d 3 -p ack -e 40 -c 0 -i 774 -a 0 -x {21.0 3.0 -1 ------- null} r -t 36.6356 -s 28 -d 1 -p ack -e 40 -c 0 -i 775 -a 0 -x {21.0 3.0 384 ------- null} + -t 36.6356 -s 1 -d 3 -p ack -e 40 -c 0 -i 775 -a 0 -x {21.0 3.0 384 ------- null} - -t 36.6356 -s 1 -d 3 -p ack -e 40 -c 0 -i 775 -a 0 -x {21.0 3.0 384 ------- null} h -t 36.6356 -s 1 -d 3 -p ack -e 40 -c 0 -i 775 -a 0 -x {21.0 3.0 -1 ------- null} r -t 36.6372 -s 28 -d 1 -p ack -e 40 -c 0 -i 776 -a 0 -x {21.0 3.0 385 ------- null} + -t 36.6372 -s 1 -d 3 -p ack -e 40 -c 0 -i 776 -a 0 -x {21.0 3.0 385 ------- null} - -t 36.6372 -s 1 -d 3 -p ack -e 40 -c 0 -i 776 -a 0 -x {21.0 3.0 385 ------- null} h -t 36.6372 -s 1 -d 3 -p ack -e 40 -c 0 -i 776 -a 0 -x {21.0 3.0 -1 ------- null} r -t 36.6388 -s 28 -d 1 -p ack -e 40 -c 0 -i 777 -a 0 -x {21.0 3.0 386 ------- null} + -t 36.6388 -s 1 -d 3 -p ack -e 40 -c 0 -i 777 -a 0 -x {21.0 3.0 386 ------- null} - -t 36.6388 -s 1 -d 3 -p ack -e 40 -c 0 -i 777 -a 0 -x {21.0 3.0 386 ------- null} h -t 36.6388 -s 1 -d 3 -p ack -e 40 -c 0 -i 777 -a 0 -x {21.0 3.0 -1 ------- null} r -t 36.6404 -s 28 -d 1 -p ack -e 40 -c 0 -i 778 -a 0 -x {21.0 3.0 387 ------- null} + -t 36.6404 -s 1 -d 3 -p ack -e 40 -c 0 -i 778 -a 0 -x {21.0 3.0 387 ------- null} - -t 36.6404 -s 1 -d 3 -p ack -e 40 -c 0 -i 778 -a 0 -x {21.0 3.0 387 ------- null} h -t 36.6404 -s 1 -d 3 -p ack -e 40 -c 0 -i 778 -a 0 -x {21.0 3.0 -1 ------- null} r -t 36.642 -s 28 -d 1 -p ack -e 40 -c 0 -i 779 -a 0 -x {21.0 3.0 388 ------- null} + -t 36.642 -s 1 -d 3 -p ack -e 40 -c 0 -i 779 -a 0 -x {21.0 3.0 388 ------- null} - -t 36.642 -s 1 -d 3 -p ack -e 40 -c 0 -i 779 -a 0 -x {21.0 3.0 388 ------- null} h -t 36.642 -s 1 -d 3 -p ack -e 40 -c 0 -i 779 -a 0 -x {21.0 3.0 -1 ------- null} r -t 36.6436 -s 28 -d 1 -p ack -e 40 -c 0 -i 780 -a 0 -x {21.0 3.0 389 ------- null} + -t 36.6436 -s 1 -d 3 -p ack -e 40 -c 0 -i 780 -a 0 -x {21.0 3.0 389 ------- null} - -t 36.6436 -s 1 -d 3 -p ack -e 40 -c 0 -i 780 -a 0 -x {21.0 3.0 389 ------- null} h -t 36.6436 -s 1 -d 3 -p ack -e 40 -c 0 -i 780 -a 0 -x {21.0 3.0 -1 ------- null} r -t 36.6452 -s 28 -d 1 -p ack -e 40 -c 0 -i 781 -a 0 -x {21.0 3.0 390 ------- null} + -t 36.6452 -s 1 -d 3 -p ack -e 40 -c 0 -i 781 -a 0 -x {21.0 3.0 390 ------- null} - -t 36.6452 -s 1 -d 3 -p ack -e 40 -c 0 -i 781 -a 0 -x {21.0 3.0 390 ------- null} h -t 36.6452 -s 1 -d 3 -p ack -e 40 -c 0 -i 781 -a 0 -x {21.0 3.0 -1 ------- null} r -t 36.7548 -s 1 -d 3 -p ack -e 40 -c 0 -i 762 -a 0 -x {21.0 3.0 371 ------- null} + -t 36.7548 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 782 -a 0 -x {3.0 21.0 391 ------- null} - -t 36.7548 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 782 -a 0 -x {3.0 21.0 391 ------- null} h -t 36.7548 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 782 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.7564 -s 1 -d 3 -p ack -e 40 -c 0 -i 763 -a 0 -x {21.0 3.0 372 ------- null} + -t 36.7564 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {3.0 21.0 392 ------- null} - -t 36.7564 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {3.0 21.0 392 ------- null} h -t 36.7564 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.758 -s 1 -d 3 -p ack -e 40 -c 0 -i 764 -a 0 -x {21.0 3.0 373 ------- null} + -t 36.758 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 784 -a 0 -x {3.0 21.0 393 ------- null} - -t 36.758 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 784 -a 0 -x {3.0 21.0 393 ------- null} h -t 36.758 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 784 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.7596 -s 1 -d 3 -p ack -e 40 -c 0 -i 765 -a 0 -x {21.0 3.0 374 ------- null} + -t 36.7596 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {3.0 21.0 394 ------- null} - -t 36.7596 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {3.0 21.0 394 ------- null} h -t 36.7596 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.7612 -s 1 -d 3 -p ack -e 40 -c 0 -i 766 -a 0 -x {21.0 3.0 375 ------- null} + -t 36.7612 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 786 -a 0 -x {3.0 21.0 395 ------- null} - -t 36.7612 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 786 -a 0 -x {3.0 21.0 395 ------- null} h -t 36.7612 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 786 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.7628 -s 1 -d 3 -p ack -e 40 -c 0 -i 767 -a 0 -x {21.0 3.0 376 ------- null} + -t 36.7628 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {3.0 21.0 396 ------- null} - -t 36.7628 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {3.0 21.0 396 ------- null} h -t 36.7628 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.7644 -s 1 -d 3 -p ack -e 40 -c 0 -i 768 -a 0 -x {21.0 3.0 377 ------- null} + -t 36.7644 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 788 -a 0 -x {3.0 21.0 397 ------- null} - -t 36.7644 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 788 -a 0 -x {3.0 21.0 397 ------- null} h -t 36.7644 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 788 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.766 -s 1 -d 3 -p ack -e 40 -c 0 -i 769 -a 0 -x {21.0 3.0 378 ------- null} + -t 36.766 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {3.0 21.0 398 ------- null} - -t 36.766 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {3.0 21.0 398 ------- null} h -t 36.766 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.7676 -s 1 -d 3 -p ack -e 40 -c 0 -i 770 -a 0 -x {21.0 3.0 379 ------- null} + -t 36.7676 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 790 -a 0 -x {3.0 21.0 399 ------- null} - -t 36.7676 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 790 -a 0 -x {3.0 21.0 399 ------- null} h -t 36.7676 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 790 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.7692 -s 1 -d 3 -p ack -e 40 -c 0 -i 771 -a 0 -x {21.0 3.0 380 ------- null} + -t 36.7692 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {3.0 21.0 400 ------- null} - -t 36.7692 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {3.0 21.0 400 ------- null} h -t 36.7692 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.7708 -s 1 -d 3 -p ack -e 40 -c 0 -i 772 -a 0 -x {21.0 3.0 381 ------- null} + -t 36.7708 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 792 -a 0 -x {3.0 21.0 401 ------- null} - -t 36.7708 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 792 -a 0 -x {3.0 21.0 401 ------- null} h -t 36.7708 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 792 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.7724 -s 1 -d 3 -p ack -e 40 -c 0 -i 773 -a 0 -x {21.0 3.0 382 ------- null} + -t 36.7724 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {3.0 21.0 402 ------- null} - -t 36.7724 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {3.0 21.0 402 ------- null} h -t 36.7724 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.774 -s 1 -d 3 -p ack -e 40 -c 0 -i 774 -a 0 -x {21.0 3.0 383 ------- null} + -t 36.774 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 794 -a 0 -x {3.0 21.0 403 ------- null} - -t 36.774 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 794 -a 0 -x {3.0 21.0 403 ------- null} h -t 36.774 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 794 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.7756 -s 1 -d 3 -p ack -e 40 -c 0 -i 775 -a 0 -x {21.0 3.0 384 ------- null} + -t 36.7756 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {3.0 21.0 404 ------- null} - -t 36.7756 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {3.0 21.0 404 ------- null} h -t 36.7756 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.7772 -s 1 -d 3 -p ack -e 40 -c 0 -i 776 -a 0 -x {21.0 3.0 385 ------- null} + -t 36.7772 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 796 -a 0 -x {3.0 21.0 405 ------- null} - -t 36.7772 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 796 -a 0 -x {3.0 21.0 405 ------- null} h -t 36.7772 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 796 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.7788 -s 1 -d 3 -p ack -e 40 -c 0 -i 777 -a 0 -x {21.0 3.0 386 ------- null} + -t 36.7788 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {3.0 21.0 406 ------- null} - -t 36.7788 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {3.0 21.0 406 ------- null} h -t 36.7788 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.7804 -s 1 -d 3 -p ack -e 40 -c 0 -i 778 -a 0 -x {21.0 3.0 387 ------- null} + -t 36.7804 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 798 -a 0 -x {3.0 21.0 407 ------- null} - -t 36.7804 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 798 -a 0 -x {3.0 21.0 407 ------- null} h -t 36.7804 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 798 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.782 -s 1 -d 3 -p ack -e 40 -c 0 -i 779 -a 0 -x {21.0 3.0 388 ------- null} + -t 36.782 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {3.0 21.0 408 ------- null} - -t 36.782 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {3.0 21.0 408 ------- null} h -t 36.782 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.7836 -s 1 -d 3 -p ack -e 40 -c 0 -i 780 -a 0 -x {21.0 3.0 389 ------- null} + -t 36.7836 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 800 -a 0 -x {3.0 21.0 409 ------- null} - -t 36.7836 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 800 -a 0 -x {3.0 21.0 409 ------- null} h -t 36.7836 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 800 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.7852 -s 1 -d 3 -p ack -e 40 -c 0 -i 781 -a 0 -x {21.0 3.0 390 ------- null} + -t 36.7852 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {3.0 21.0 410 ------- null} - -t 36.7852 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {3.0 21.0 410 ------- null} h -t 36.7852 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.8964 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 782 -a 0 -x {3.0 21.0 391 ------- null} + -t 36.8964 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 782 -a 0 -x {3.0 21.0 391 ------- null} - -t 36.8964 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 782 -a 0 -x {3.0 21.0 391 ------- null} h -t 36.8964 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 782 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.898 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {3.0 21.0 392 ------- null} + -t 36.898 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {3.0 21.0 392 ------- null} - -t 36.898 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {3.0 21.0 392 ------- null} h -t 36.898 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.8996 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 784 -a 0 -x {3.0 21.0 393 ------- null} + -t 36.8996 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 784 -a 0 -x {3.0 21.0 393 ------- null} - -t 36.8996 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 784 -a 0 -x {3.0 21.0 393 ------- null} h -t 36.8996 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 784 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.9012 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {3.0 21.0 394 ------- null} + -t 36.9012 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {3.0 21.0 394 ------- null} - -t 36.9012 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {3.0 21.0 394 ------- null} h -t 36.9012 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.9028 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 786 -a 0 -x {3.0 21.0 395 ------- null} + -t 36.9028 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 786 -a 0 -x {3.0 21.0 395 ------- null} - -t 36.9028 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 786 -a 0 -x {3.0 21.0 395 ------- null} h -t 36.9028 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 786 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.9044 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {3.0 21.0 396 ------- null} + -t 36.9044 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {3.0 21.0 396 ------- null} - -t 36.9044 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {3.0 21.0 396 ------- null} h -t 36.9044 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.906 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 788 -a 0 -x {3.0 21.0 397 ------- null} + -t 36.906 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 788 -a 0 -x {3.0 21.0 397 ------- null} - -t 36.906 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 788 -a 0 -x {3.0 21.0 397 ------- null} h -t 36.906 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 788 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.9076 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {3.0 21.0 398 ------- null} + -t 36.9076 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {3.0 21.0 398 ------- null} - -t 36.9076 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {3.0 21.0 398 ------- null} h -t 36.9076 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.9092 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 790 -a 0 -x {3.0 21.0 399 ------- null} + -t 36.9092 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 790 -a 0 -x {3.0 21.0 399 ------- null} - -t 36.9092 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 790 -a 0 -x {3.0 21.0 399 ------- null} h -t 36.9092 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 790 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.9108 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {3.0 21.0 400 ------- null} + -t 36.9108 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {3.0 21.0 400 ------- null} - -t 36.9108 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {3.0 21.0 400 ------- null} h -t 36.9108 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.9124 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 792 -a 0 -x {3.0 21.0 401 ------- null} + -t 36.9124 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 792 -a 0 -x {3.0 21.0 401 ------- null} - -t 36.9124 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 792 -a 0 -x {3.0 21.0 401 ------- null} h -t 36.9124 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 792 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.914 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {3.0 21.0 402 ------- null} + -t 36.914 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {3.0 21.0 402 ------- null} - -t 36.914 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {3.0 21.0 402 ------- null} h -t 36.914 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.9156 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 794 -a 0 -x {3.0 21.0 403 ------- null} + -t 36.9156 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 794 -a 0 -x {3.0 21.0 403 ------- null} - -t 36.9156 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 794 -a 0 -x {3.0 21.0 403 ------- null} h -t 36.9156 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 794 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.9172 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {3.0 21.0 404 ------- null} + -t 36.9172 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {3.0 21.0 404 ------- null} - -t 36.9172 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {3.0 21.0 404 ------- null} h -t 36.9172 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.9188 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 796 -a 0 -x {3.0 21.0 405 ------- null} + -t 36.9188 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 796 -a 0 -x {3.0 21.0 405 ------- null} - -t 36.9188 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 796 -a 0 -x {3.0 21.0 405 ------- null} h -t 36.9188 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 796 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.9204 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {3.0 21.0 406 ------- null} + -t 36.9204 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {3.0 21.0 406 ------- null} - -t 36.9204 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {3.0 21.0 406 ------- null} h -t 36.9204 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.922 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 798 -a 0 -x {3.0 21.0 407 ------- null} + -t 36.922 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 798 -a 0 -x {3.0 21.0 407 ------- null} - -t 36.922 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 798 -a 0 -x {3.0 21.0 407 ------- null} h -t 36.922 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 798 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.9236 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {3.0 21.0 408 ------- null} + -t 36.9236 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {3.0 21.0 408 ------- null} - -t 36.9236 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {3.0 21.0 408 ------- null} h -t 36.9236 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.9252 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 800 -a 0 -x {3.0 21.0 409 ------- null} + -t 36.9252 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 800 -a 0 -x {3.0 21.0 409 ------- null} - -t 36.9252 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 800 -a 0 -x {3.0 21.0 409 ------- null} h -t 36.9252 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 800 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.9268 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {3.0 21.0 410 ------- null} + -t 36.9268 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {3.0 21.0 410 ------- null} - -t 36.9268 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {3.0 21.0 410 ------- null} h -t 36.9268 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {3.0 21.0 -1 ------- null} r -t 37.198 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 782 -a 0 -x {3.0 21.0 391 ------- null} + -t 37.198 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 782 -a 0 -x {3.0 21.0 391 ------- null} - -t 37.198 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 782 -a 0 -x {3.0 21.0 391 ------- null} h -t 37.198 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 782 -a 0 -x {3.0 21.0 -1 ------- null} r -t 37.1996 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {3.0 21.0 392 ------- null} + -t 37.1996 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {3.0 21.0 392 ------- null} - -t 37.1996 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {3.0 21.0 392 ------- null} h -t 37.1996 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {3.0 21.0 -1 ------- null} r -t 37.2012 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 784 -a 0 -x {3.0 21.0 393 ------- null} + -t 37.2012 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 784 -a 0 -x {3.0 21.0 393 ------- null} - -t 37.2012 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 784 -a 0 -x {3.0 21.0 393 ------- null} h -t 37.2012 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 784 -a 0 -x {3.0 21.0 -1 ------- null} r -t 37.2028 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {3.0 21.0 394 ------- null} + -t 37.2028 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {3.0 21.0 394 ------- null} - -t 37.2028 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {3.0 21.0 394 ------- null} h -t 37.2028 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {3.0 21.0 -1 ------- null} r -t 37.2044 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 786 -a 0 -x {3.0 21.0 395 ------- null} + -t 37.2044 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 786 -a 0 -x {3.0 21.0 395 ------- null} - -t 37.2044 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 786 -a 0 -x {3.0 21.0 395 ------- null} h -t 37.2044 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 786 -a 0 -x {3.0 21.0 -1 ------- null} r -t 37.206 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {3.0 21.0 396 ------- null} + -t 37.206 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {3.0 21.0 396 ------- null} - -t 37.206 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {3.0 21.0 396 ------- null} h -t 37.206 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {3.0 21.0 -1 ------- null} r -t 37.2076 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 788 -a 0 -x {3.0 21.0 397 ------- null} + -t 37.2076 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 788 -a 0 -x {3.0 21.0 397 ------- null} - -t 37.2076 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 788 -a 0 -x {3.0 21.0 397 ------- null} h -t 37.2076 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 788 -a 0 -x {3.0 21.0 -1 ------- null} r -t 37.2092 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {3.0 21.0 398 ------- null} + -t 37.2092 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {3.0 21.0 398 ------- null} - -t 37.2092 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {3.0 21.0 398 ------- null} h -t 37.2092 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {3.0 21.0 -1 ------- null} r -t 37.2108 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 790 -a 0 -x {3.0 21.0 399 ------- null} + -t 37.2108 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 790 -a 0 -x {3.0 21.0 399 ------- null} - -t 37.2108 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 790 -a 0 -x {3.0 21.0 399 ------- null} h -t 37.2108 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 790 -a 0 -x {3.0 21.0 -1 ------- null} r -t 37.2124 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {3.0 21.0 400 ------- null} + -t 37.2124 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {3.0 21.0 400 ------- null} - -t 37.2124 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {3.0 21.0 400 ------- null} h -t 37.2124 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {3.0 21.0 -1 ------- null} r -t 37.214 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 792 -a 0 -x {3.0 21.0 401 ------- null} + -t 37.214 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 792 -a 0 -x {3.0 21.0 401 ------- null} - -t 37.214 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 792 -a 0 -x {3.0 21.0 401 ------- null} h -t 37.214 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 792 -a 0 -x {3.0 21.0 -1 ------- null} r -t 37.2156 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {3.0 21.0 402 ------- null} + -t 37.2156 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {3.0 21.0 402 ------- null} - -t 37.2156 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {3.0 21.0 402 ------- null} h -t 37.2156 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {3.0 21.0 -1 ------- null} r -t 37.2172 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 794 -a 0 -x {3.0 21.0 403 ------- null} + -t 37.2172 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 794 -a 0 -x {3.0 21.0 403 ------- null} - -t 37.2172 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 794 -a 0 -x {3.0 21.0 403 ------- null} h -t 37.2172 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 794 -a 0 -x {3.0 21.0 -1 ------- null} r -t 37.2188 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {3.0 21.0 404 ------- null} + -t 37.2188 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {3.0 21.0 404 ------- null} - -t 37.2188 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {3.0 21.0 404 ------- null} h -t 37.2188 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {3.0 21.0 -1 ------- null} r -t 37.2204 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 796 -a 0 -x {3.0 21.0 405 ------- null} + -t 37.2204 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 796 -a 0 -x {3.0 21.0 405 ------- null} - -t 37.2204 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 796 -a 0 -x {3.0 21.0 405 ------- null} h -t 37.2204 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 796 -a 0 -x {3.0 21.0 -1 ------- null} r -t 37.222 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {3.0 21.0 406 ------- null} + -t 37.222 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {3.0 21.0 406 ------- null} - -t 37.222 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {3.0 21.0 406 ------- null} h -t 37.222 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {3.0 21.0 -1 ------- null} r -t 37.2236 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 798 -a 0 -x {3.0 21.0 407 ------- null} + -t 37.2236 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 798 -a 0 -x {3.0 21.0 407 ------- null} - -t 37.2236 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 798 -a 0 -x {3.0 21.0 407 ------- null} h -t 37.2236 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 798 -a 0 -x {3.0 21.0 -1 ------- null} r -t 37.2252 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {3.0 21.0 408 ------- null} + -t 37.2252 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {3.0 21.0 408 ------- null} - -t 37.2252 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {3.0 21.0 408 ------- null} h -t 37.2252 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {3.0 21.0 -1 ------- null} r -t 37.2268 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 800 -a 0 -x {3.0 21.0 409 ------- null} + -t 37.2268 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 800 -a 0 -x {3.0 21.0 409 ------- null} - -t 37.2268 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 800 -a 0 -x {3.0 21.0 409 ------- null} h -t 37.2268 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 800 -a 0 -x {3.0 21.0 -1 ------- null} r -t 37.2284 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {3.0 21.0 410 ------- null} + -t 37.2284 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {3.0 21.0 410 ------- null} - -t 37.2284 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {3.0 21.0 410 ------- null} h -t 37.2284 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {3.0 21.0 -1 ------- null} r -t 37.5496 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 782 -a 0 -x {3.0 21.0 391 ------- null} + -t 37.5496 -s 21 -d 28 -p ack -e 40 -c 0 -i 802 -a 0 -x {21.0 3.0 391 ------- null} - -t 37.5496 -s 21 -d 28 -p ack -e 40 -c 0 -i 802 -a 0 -x {21.0 3.0 391 ------- null} h -t 37.5496 -s 21 -d 28 -p ack -e 40 -c 0 -i 802 -a 0 -x {21.0 3.0 -1 ------- null} r -t 37.5512 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {3.0 21.0 392 ------- null} + -t 37.5512 -s 21 -d 28 -p ack -e 40 -c 0 -i 803 -a 0 -x {21.0 3.0 392 ------- null} - -t 37.5512 -s 21 -d 28 -p ack -e 40 -c 0 -i 803 -a 0 -x {21.0 3.0 392 ------- null} h -t 37.5512 -s 21 -d 28 -p ack -e 40 -c 0 -i 803 -a 0 -x {21.0 3.0 -1 ------- null} r -t 37.5528 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 784 -a 0 -x {3.0 21.0 393 ------- null} + -t 37.5528 -s 21 -d 28 -p ack -e 40 -c 0 -i 804 -a 0 -x {21.0 3.0 393 ------- null} - -t 37.5528 -s 21 -d 28 -p ack -e 40 -c 0 -i 804 -a 0 -x {21.0 3.0 393 ------- null} h -t 37.5528 -s 21 -d 28 -p ack -e 40 -c 0 -i 804 -a 0 -x {21.0 3.0 -1 ------- null} r -t 37.5544 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {3.0 21.0 394 ------- null} + -t 37.5544 -s 21 -d 28 -p ack -e 40 -c 0 -i 805 -a 0 -x {21.0 3.0 394 ------- null} - -t 37.5544 -s 21 -d 28 -p ack -e 40 -c 0 -i 805 -a 0 -x {21.0 3.0 394 ------- null} h -t 37.5544 -s 21 -d 28 -p ack -e 40 -c 0 -i 805 -a 0 -x {21.0 3.0 -1 ------- null} r -t 37.556 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 786 -a 0 -x {3.0 21.0 395 ------- null} + -t 37.556 -s 21 -d 28 -p ack -e 40 -c 0 -i 806 -a 0 -x {21.0 3.0 395 ------- null} - -t 37.556 -s 21 -d 28 -p ack -e 40 -c 0 -i 806 -a 0 -x {21.0 3.0 395 ------- null} h -t 37.556 -s 21 -d 28 -p ack -e 40 -c 0 -i 806 -a 0 -x {21.0 3.0 -1 ------- null} r -t 37.5576 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {3.0 21.0 396 ------- null} + -t 37.5576 -s 21 -d 28 -p ack -e 40 -c 0 -i 807 -a 0 -x {21.0 3.0 396 ------- null} - -t 37.5576 -s 21 -d 28 -p ack -e 40 -c 0 -i 807 -a 0 -x {21.0 3.0 396 ------- null} h -t 37.5576 -s 21 -d 28 -p ack -e 40 -c 0 -i 807 -a 0 -x {21.0 3.0 -1 ------- null} r -t 37.5592 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 788 -a 0 -x {3.0 21.0 397 ------- null} + -t 37.5592 -s 21 -d 28 -p ack -e 40 -c 0 -i 808 -a 0 -x {21.0 3.0 397 ------- null} - -t 37.5592 -s 21 -d 28 -p ack -e 40 -c 0 -i 808 -a 0 -x {21.0 3.0 397 ------- null} h -t 37.5592 -s 21 -d 28 -p ack -e 40 -c 0 -i 808 -a 0 -x {21.0 3.0 -1 ------- null} r -t 37.5608 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {3.0 21.0 398 ------- null} + -t 37.5608 -s 21 -d 28 -p ack -e 40 -c 0 -i 809 -a 0 -x {21.0 3.0 398 ------- null} - -t 37.5608 -s 21 -d 28 -p ack -e 40 -c 0 -i 809 -a 0 -x {21.0 3.0 398 ------- null} h -t 37.5608 -s 21 -d 28 -p ack -e 40 -c 0 -i 809 -a 0 -x {21.0 3.0 -1 ------- null} r -t 37.5624 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 790 -a 0 -x {3.0 21.0 399 ------- null} + -t 37.5624 -s 21 -d 28 -p ack -e 40 -c 0 -i 810 -a 0 -x {21.0 3.0 399 ------- null} - -t 37.5624 -s 21 -d 28 -p ack -e 40 -c 0 -i 810 -a 0 -x {21.0 3.0 399 ------- null} h -t 37.5624 -s 21 -d 28 -p ack -e 40 -c 0 -i 810 -a 0 -x {21.0 3.0 -1 ------- null} r -t 37.564 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {3.0 21.0 400 ------- null} + -t 37.564 -s 21 -d 28 -p ack -e 40 -c 0 -i 811 -a 0 -x {21.0 3.0 400 ------- null} - -t 37.564 -s 21 -d 28 -p ack -e 40 -c 0 -i 811 -a 0 -x {21.0 3.0 400 ------- null} h -t 37.564 -s 21 -d 28 -p ack -e 40 -c 0 -i 811 -a 0 -x {21.0 3.0 -1 ------- null} r -t 37.5656 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 792 -a 0 -x {3.0 21.0 401 ------- null} + -t 37.5656 -s 21 -d 28 -p ack -e 40 -c 0 -i 812 -a 0 -x {21.0 3.0 401 ------- null} - -t 37.5656 -s 21 -d 28 -p ack -e 40 -c 0 -i 812 -a 0 -x {21.0 3.0 401 ------- null} h -t 37.5656 -s 21 -d 28 -p ack -e 40 -c 0 -i 812 -a 0 -x {21.0 3.0 -1 ------- null} r -t 37.5672 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {3.0 21.0 402 ------- null} + -t 37.5672 -s 21 -d 28 -p ack -e 40 -c 0 -i 813 -a 0 -x {21.0 3.0 402 ------- null} - -t 37.5672 -s 21 -d 28 -p ack -e 40 -c 0 -i 813 -a 0 -x {21.0 3.0 402 ------- null} h -t 37.5672 -s 21 -d 28 -p ack -e 40 -c 0 -i 813 -a 0 -x {21.0 3.0 -1 ------- null} r -t 37.5688 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 794 -a 0 -x {3.0 21.0 403 ------- null} + -t 37.5688 -s 21 -d 28 -p ack -e 40 -c 0 -i 814 -a 0 -x {21.0 3.0 403 ------- null} - -t 37.5688 -s 21 -d 28 -p ack -e 40 -c 0 -i 814 -a 0 -x {21.0 3.0 403 ------- null} h -t 37.5688 -s 21 -d 28 -p ack -e 40 -c 0 -i 814 -a 0 -x {21.0 3.0 -1 ------- null} r -t 37.5704 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {3.0 21.0 404 ------- null} + -t 37.5704 -s 21 -d 28 -p ack -e 40 -c 0 -i 815 -a 0 -x {21.0 3.0 404 ------- null} - -t 37.5704 -s 21 -d 28 -p ack -e 40 -c 0 -i 815 -a 0 -x {21.0 3.0 404 ------- null} h -t 37.5704 -s 21 -d 28 -p ack -e 40 -c 0 -i 815 -a 0 -x {21.0 3.0 -1 ------- null} r -t 37.572 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 796 -a 0 -x {3.0 21.0 405 ------- null} + -t 37.572 -s 21 -d 28 -p ack -e 40 -c 0 -i 816 -a 0 -x {21.0 3.0 405 ------- null} - -t 37.572 -s 21 -d 28 -p ack -e 40 -c 0 -i 816 -a 0 -x {21.0 3.0 405 ------- null} h -t 37.572 -s 21 -d 28 -p ack -e 40 -c 0 -i 816 -a 0 -x {21.0 3.0 -1 ------- null} r -t 37.5736 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {3.0 21.0 406 ------- null} + -t 37.5736 -s 21 -d 28 -p ack -e 40 -c 0 -i 817 -a 0 -x {21.0 3.0 406 ------- null} - -t 37.5736 -s 21 -d 28 -p ack -e 40 -c 0 -i 817 -a 0 -x {21.0 3.0 406 ------- null} h -t 37.5736 -s 21 -d 28 -p ack -e 40 -c 0 -i 817 -a 0 -x {21.0 3.0 -1 ------- null} r -t 37.5752 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 798 -a 0 -x {3.0 21.0 407 ------- null} + -t 37.5752 -s 21 -d 28 -p ack -e 40 -c 0 -i 818 -a 0 -x {21.0 3.0 407 ------- null} - -t 37.5752 -s 21 -d 28 -p ack -e 40 -c 0 -i 818 -a 0 -x {21.0 3.0 407 ------- null} h -t 37.5752 -s 21 -d 28 -p ack -e 40 -c 0 -i 818 -a 0 -x {21.0 3.0 -1 ------- null} r -t 37.5768 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {3.0 21.0 408 ------- null} + -t 37.5768 -s 21 -d 28 -p ack -e 40 -c 0 -i 819 -a 0 -x {21.0 3.0 408 ------- null} - -t 37.5768 -s 21 -d 28 -p ack -e 40 -c 0 -i 819 -a 0 -x {21.0 3.0 408 ------- null} h -t 37.5768 -s 21 -d 28 -p ack -e 40 -c 0 -i 819 -a 0 -x {21.0 3.0 -1 ------- null} r -t 37.5784 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 800 -a 0 -x {3.0 21.0 409 ------- null} + -t 37.5784 -s 21 -d 28 -p ack -e 40 -c 0 -i 820 -a 0 -x {21.0 3.0 409 ------- null} - -t 37.5784 -s 21 -d 28 -p ack -e 40 -c 0 -i 820 -a 0 -x {21.0 3.0 409 ------- null} h -t 37.5784 -s 21 -d 28 -p ack -e 40 -c 0 -i 820 -a 0 -x {21.0 3.0 -1 ------- null} r -t 37.58 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {3.0 21.0 410 ------- null} + -t 37.58 -s 21 -d 28 -p ack -e 40 -c 0 -i 821 -a 0 -x {21.0 3.0 410 ------- null} - -t 37.58 -s 21 -d 28 -p ack -e 40 -c 0 -i 821 -a 0 -x {21.0 3.0 410 ------- null} h -t 37.58 -s 21 -d 28 -p ack -e 40 -c 0 -i 821 -a 0 -x {21.0 3.0 -1 ------- null} r -t 37.8997 -s 21 -d 28 -p ack -e 40 -c 0 -i 802 -a 0 -x {21.0 3.0 391 ------- null} + -t 37.8997 -s 28 -d 1 -p ack -e 40 -c 0 -i 802 -a 0 -x {21.0 3.0 391 ------- null} - -t 37.8997 -s 28 -d 1 -p ack -e 40 -c 0 -i 802 -a 0 -x {21.0 3.0 391 ------- null} h -t 37.8997 -s 28 -d 1 -p ack -e 40 -c 0 -i 802 -a 0 -x {21.0 3.0 -1 ------- null} r -t 37.9013 -s 21 -d 28 -p ack -e 40 -c 0 -i 803 -a 0 -x {21.0 3.0 392 ------- null} + -t 37.9013 -s 28 -d 1 -p ack -e 40 -c 0 -i 803 -a 0 -x {21.0 3.0 392 ------- null} - -t 37.9013 -s 28 -d 1 -p ack -e 40 -c 0 -i 803 -a 0 -x {21.0 3.0 392 ------- null} h -t 37.9013 -s 28 -d 1 -p ack -e 40 -c 0 -i 803 -a 0 -x {21.0 3.0 -1 ------- null} r -t 37.9029 -s 21 -d 28 -p ack -e 40 -c 0 -i 804 -a 0 -x {21.0 3.0 393 ------- null} + -t 37.9029 -s 28 -d 1 -p ack -e 40 -c 0 -i 804 -a 0 -x {21.0 3.0 393 ------- null} - -t 37.9029 -s 28 -d 1 -p ack -e 40 -c 0 -i 804 -a 0 -x {21.0 3.0 393 ------- null} h -t 37.9029 -s 28 -d 1 -p ack -e 40 -c 0 -i 804 -a 0 -x {21.0 3.0 -1 ------- null} r -t 37.9045 -s 21 -d 28 -p ack -e 40 -c 0 -i 805 -a 0 -x {21.0 3.0 394 ------- null} + -t 37.9045 -s 28 -d 1 -p ack -e 40 -c 0 -i 805 -a 0 -x {21.0 3.0 394 ------- null} - -t 37.9045 -s 28 -d 1 -p ack -e 40 -c 0 -i 805 -a 0 -x {21.0 3.0 394 ------- null} h -t 37.9045 -s 28 -d 1 -p ack -e 40 -c 0 -i 805 -a 0 -x {21.0 3.0 -1 ------- null} r -t 37.9061 -s 21 -d 28 -p ack -e 40 -c 0 -i 806 -a 0 -x {21.0 3.0 395 ------- null} + -t 37.9061 -s 28 -d 1 -p ack -e 40 -c 0 -i 806 -a 0 -x {21.0 3.0 395 ------- null} - -t 37.9061 -s 28 -d 1 -p ack -e 40 -c 0 -i 806 -a 0 -x {21.0 3.0 395 ------- null} h -t 37.9061 -s 28 -d 1 -p ack -e 40 -c 0 -i 806 -a 0 -x {21.0 3.0 -1 ------- null} r -t 37.9077 -s 21 -d 28 -p ack -e 40 -c 0 -i 807 -a 0 -x {21.0 3.0 396 ------- null} + -t 37.9077 -s 28 -d 1 -p ack -e 40 -c 0 -i 807 -a 0 -x {21.0 3.0 396 ------- null} - -t 37.9077 -s 28 -d 1 -p ack -e 40 -c 0 -i 807 -a 0 -x {21.0 3.0 396 ------- null} h -t 37.9077 -s 28 -d 1 -p ack -e 40 -c 0 -i 807 -a 0 -x {21.0 3.0 -1 ------- null} r -t 37.9093 -s 21 -d 28 -p ack -e 40 -c 0 -i 808 -a 0 -x {21.0 3.0 397 ------- null} + -t 37.9093 -s 28 -d 1 -p ack -e 40 -c 0 -i 808 -a 0 -x {21.0 3.0 397 ------- null} - -t 37.9093 -s 28 -d 1 -p ack -e 40 -c 0 -i 808 -a 0 -x {21.0 3.0 397 ------- null} h -t 37.9093 -s 28 -d 1 -p ack -e 40 -c 0 -i 808 -a 0 -x {21.0 3.0 -1 ------- null} r -t 37.9109 -s 21 -d 28 -p ack -e 40 -c 0 -i 809 -a 0 -x {21.0 3.0 398 ------- null} + -t 37.9109 -s 28 -d 1 -p ack -e 40 -c 0 -i 809 -a 0 -x {21.0 3.0 398 ------- null} - -t 37.9109 -s 28 -d 1 -p ack -e 40 -c 0 -i 809 -a 0 -x {21.0 3.0 398 ------- null} h -t 37.9109 -s 28 -d 1 -p ack -e 40 -c 0 -i 809 -a 0 -x {21.0 3.0 -1 ------- null} r -t 37.9125 -s 21 -d 28 -p ack -e 40 -c 0 -i 810 -a 0 -x {21.0 3.0 399 ------- null} + -t 37.9125 -s 28 -d 1 -p ack -e 40 -c 0 -i 810 -a 0 -x {21.0 3.0 399 ------- null} - -t 37.9125 -s 28 -d 1 -p ack -e 40 -c 0 -i 810 -a 0 -x {21.0 3.0 399 ------- null} h -t 37.9125 -s 28 -d 1 -p ack -e 40 -c 0 -i 810 -a 0 -x {21.0 3.0 -1 ------- null} r -t 37.9141 -s 21 -d 28 -p ack -e 40 -c 0 -i 811 -a 0 -x {21.0 3.0 400 ------- null} + -t 37.9141 -s 28 -d 1 -p ack -e 40 -c 0 -i 811 -a 0 -x {21.0 3.0 400 ------- null} - -t 37.9141 -s 28 -d 1 -p ack -e 40 -c 0 -i 811 -a 0 -x {21.0 3.0 400 ------- null} h -t 37.9141 -s 28 -d 1 -p ack -e 40 -c 0 -i 811 -a 0 -x {21.0 3.0 -1 ------- null} r -t 37.9157 -s 21 -d 28 -p ack -e 40 -c 0 -i 812 -a 0 -x {21.0 3.0 401 ------- null} + -t 37.9157 -s 28 -d 1 -p ack -e 40 -c 0 -i 812 -a 0 -x {21.0 3.0 401 ------- null} - -t 37.9157 -s 28 -d 1 -p ack -e 40 -c 0 -i 812 -a 0 -x {21.0 3.0 401 ------- null} h -t 37.9157 -s 28 -d 1 -p ack -e 40 -c 0 -i 812 -a 0 -x {21.0 3.0 -1 ------- null} r -t 37.9173 -s 21 -d 28 -p ack -e 40 -c 0 -i 813 -a 0 -x {21.0 3.0 402 ------- null} + -t 37.9173 -s 28 -d 1 -p ack -e 40 -c 0 -i 813 -a 0 -x {21.0 3.0 402 ------- null} - -t 37.9173 -s 28 -d 1 -p ack -e 40 -c 0 -i 813 -a 0 -x {21.0 3.0 402 ------- null} h -t 37.9173 -s 28 -d 1 -p ack -e 40 -c 0 -i 813 -a 0 -x {21.0 3.0 -1 ------- null} r -t 37.9189 -s 21 -d 28 -p ack -e 40 -c 0 -i 814 -a 0 -x {21.0 3.0 403 ------- null} + -t 37.9189 -s 28 -d 1 -p ack -e 40 -c 0 -i 814 -a 0 -x {21.0 3.0 403 ------- null} - -t 37.9189 -s 28 -d 1 -p ack -e 40 -c 0 -i 814 -a 0 -x {21.0 3.0 403 ------- null} h -t 37.9189 -s 28 -d 1 -p ack -e 40 -c 0 -i 814 -a 0 -x {21.0 3.0 -1 ------- null} r -t 37.9205 -s 21 -d 28 -p ack -e 40 -c 0 -i 815 -a 0 -x {21.0 3.0 404 ------- null} + -t 37.9205 -s 28 -d 1 -p ack -e 40 -c 0 -i 815 -a 0 -x {21.0 3.0 404 ------- null} - -t 37.9205 -s 28 -d 1 -p ack -e 40 -c 0 -i 815 -a 0 -x {21.0 3.0 404 ------- null} h -t 37.9205 -s 28 -d 1 -p ack -e 40 -c 0 -i 815 -a 0 -x {21.0 3.0 -1 ------- null} r -t 37.9221 -s 21 -d 28 -p ack -e 40 -c 0 -i 816 -a 0 -x {21.0 3.0 405 ------- null} + -t 37.9221 -s 28 -d 1 -p ack -e 40 -c 0 -i 816 -a 0 -x {21.0 3.0 405 ------- null} - -t 37.9221 -s 28 -d 1 -p ack -e 40 -c 0 -i 816 -a 0 -x {21.0 3.0 405 ------- null} h -t 37.9221 -s 28 -d 1 -p ack -e 40 -c 0 -i 816 -a 0 -x {21.0 3.0 -1 ------- null} r -t 37.9237 -s 21 -d 28 -p ack -e 40 -c 0 -i 817 -a 0 -x {21.0 3.0 406 ------- null} + -t 37.9237 -s 28 -d 1 -p ack -e 40 -c 0 -i 817 -a 0 -x {21.0 3.0 406 ------- null} - -t 37.9237 -s 28 -d 1 -p ack -e 40 -c 0 -i 817 -a 0 -x {21.0 3.0 406 ------- null} h -t 37.9237 -s 28 -d 1 -p ack -e 40 -c 0 -i 817 -a 0 -x {21.0 3.0 -1 ------- null} r -t 37.9253 -s 21 -d 28 -p ack -e 40 -c 0 -i 818 -a 0 -x {21.0 3.0 407 ------- null} + -t 37.9253 -s 28 -d 1 -p ack -e 40 -c 0 -i 818 -a 0 -x {21.0 3.0 407 ------- null} - -t 37.9253 -s 28 -d 1 -p ack -e 40 -c 0 -i 818 -a 0 -x {21.0 3.0 407 ------- null} h -t 37.9253 -s 28 -d 1 -p ack -e 40 -c 0 -i 818 -a 0 -x {21.0 3.0 -1 ------- null} r -t 37.9269 -s 21 -d 28 -p ack -e 40 -c 0 -i 819 -a 0 -x {21.0 3.0 408 ------- null} + -t 37.9269 -s 28 -d 1 -p ack -e 40 -c 0 -i 819 -a 0 -x {21.0 3.0 408 ------- null} - -t 37.9269 -s 28 -d 1 -p ack -e 40 -c 0 -i 819 -a 0 -x {21.0 3.0 408 ------- null} h -t 37.9269 -s 28 -d 1 -p ack -e 40 -c 0 -i 819 -a 0 -x {21.0 3.0 -1 ------- null} r -t 37.9285 -s 21 -d 28 -p ack -e 40 -c 0 -i 820 -a 0 -x {21.0 3.0 409 ------- null} + -t 37.9285 -s 28 -d 1 -p ack -e 40 -c 0 -i 820 -a 0 -x {21.0 3.0 409 ------- null} - -t 37.9285 -s 28 -d 1 -p ack -e 40 -c 0 -i 820 -a 0 -x {21.0 3.0 409 ------- null} h -t 37.9285 -s 28 -d 1 -p ack -e 40 -c 0 -i 820 -a 0 -x {21.0 3.0 -1 ------- null} r -t 37.9301 -s 21 -d 28 -p ack -e 40 -c 0 -i 821 -a 0 -x {21.0 3.0 410 ------- null} + -t 37.9301 -s 28 -d 1 -p ack -e 40 -c 0 -i 821 -a 0 -x {21.0 3.0 410 ------- null} - -t 37.9301 -s 28 -d 1 -p ack -e 40 -c 0 -i 821 -a 0 -x {21.0 3.0 410 ------- null} h -t 37.9301 -s 28 -d 1 -p ack -e 40 -c 0 -i 821 -a 0 -x {21.0 3.0 -1 ------- null} r -t 38.1997 -s 28 -d 1 -p ack -e 40 -c 0 -i 802 -a 0 -x {21.0 3.0 391 ------- null} + -t 38.1997 -s 1 -d 3 -p ack -e 40 -c 0 -i 802 -a 0 -x {21.0 3.0 391 ------- null} - -t 38.1997 -s 1 -d 3 -p ack -e 40 -c 0 -i 802 -a 0 -x {21.0 3.0 391 ------- null} h -t 38.1997 -s 1 -d 3 -p ack -e 40 -c 0 -i 802 -a 0 -x {21.0 3.0 -1 ------- null} r -t 38.2013 -s 28 -d 1 -p ack -e 40 -c 0 -i 803 -a 0 -x {21.0 3.0 392 ------- null} + -t 38.2013 -s 1 -d 3 -p ack -e 40 -c 0 -i 803 -a 0 -x {21.0 3.0 392 ------- null} - -t 38.2013 -s 1 -d 3 -p ack -e 40 -c 0 -i 803 -a 0 -x {21.0 3.0 392 ------- null} h -t 38.2013 -s 1 -d 3 -p ack -e 40 -c 0 -i 803 -a 0 -x {21.0 3.0 -1 ------- null} r -t 38.2029 -s 28 -d 1 -p ack -e 40 -c 0 -i 804 -a 0 -x {21.0 3.0 393 ------- null} + -t 38.2029 -s 1 -d 3 -p ack -e 40 -c 0 -i 804 -a 0 -x {21.0 3.0 393 ------- null} - -t 38.2029 -s 1 -d 3 -p ack -e 40 -c 0 -i 804 -a 0 -x {21.0 3.0 393 ------- null} h -t 38.2029 -s 1 -d 3 -p ack -e 40 -c 0 -i 804 -a 0 -x {21.0 3.0 -1 ------- null} r -t 38.2045 -s 28 -d 1 -p ack -e 40 -c 0 -i 805 -a 0 -x {21.0 3.0 394 ------- null} + -t 38.2045 -s 1 -d 3 -p ack -e 40 -c 0 -i 805 -a 0 -x {21.0 3.0 394 ------- null} - -t 38.2045 -s 1 -d 3 -p ack -e 40 -c 0 -i 805 -a 0 -x {21.0 3.0 394 ------- null} h -t 38.2045 -s 1 -d 3 -p ack -e 40 -c 0 -i 805 -a 0 -x {21.0 3.0 -1 ------- null} r -t 38.2061 -s 28 -d 1 -p ack -e 40 -c 0 -i 806 -a 0 -x {21.0 3.0 395 ------- null} + -t 38.2061 -s 1 -d 3 -p ack -e 40 -c 0 -i 806 -a 0 -x {21.0 3.0 395 ------- null} - -t 38.2061 -s 1 -d 3 -p ack -e 40 -c 0 -i 806 -a 0 -x {21.0 3.0 395 ------- null} h -t 38.2061 -s 1 -d 3 -p ack -e 40 -c 0 -i 806 -a 0 -x {21.0 3.0 -1 ------- null} r -t 38.2077 -s 28 -d 1 -p ack -e 40 -c 0 -i 807 -a 0 -x {21.0 3.0 396 ------- null} + -t 38.2077 -s 1 -d 3 -p ack -e 40 -c 0 -i 807 -a 0 -x {21.0 3.0 396 ------- null} - -t 38.2077 -s 1 -d 3 -p ack -e 40 -c 0 -i 807 -a 0 -x {21.0 3.0 396 ------- null} h -t 38.2077 -s 1 -d 3 -p ack -e 40 -c 0 -i 807 -a 0 -x {21.0 3.0 -1 ------- null} r -t 38.2093 -s 28 -d 1 -p ack -e 40 -c 0 -i 808 -a 0 -x {21.0 3.0 397 ------- null} + -t 38.2093 -s 1 -d 3 -p ack -e 40 -c 0 -i 808 -a 0 -x {21.0 3.0 397 ------- null} - -t 38.2093 -s 1 -d 3 -p ack -e 40 -c 0 -i 808 -a 0 -x {21.0 3.0 397 ------- null} h -t 38.2093 -s 1 -d 3 -p ack -e 40 -c 0 -i 808 -a 0 -x {21.0 3.0 -1 ------- null} r -t 38.2109 -s 28 -d 1 -p ack -e 40 -c 0 -i 809 -a 0 -x {21.0 3.0 398 ------- null} + -t 38.2109 -s 1 -d 3 -p ack -e 40 -c 0 -i 809 -a 0 -x {21.0 3.0 398 ------- null} - -t 38.2109 -s 1 -d 3 -p ack -e 40 -c 0 -i 809 -a 0 -x {21.0 3.0 398 ------- null} h -t 38.2109 -s 1 -d 3 -p ack -e 40 -c 0 -i 809 -a 0 -x {21.0 3.0 -1 ------- null} r -t 38.2125 -s 28 -d 1 -p ack -e 40 -c 0 -i 810 -a 0 -x {21.0 3.0 399 ------- null} + -t 38.2125 -s 1 -d 3 -p ack -e 40 -c 0 -i 810 -a 0 -x {21.0 3.0 399 ------- null} - -t 38.2125 -s 1 -d 3 -p ack -e 40 -c 0 -i 810 -a 0 -x {21.0 3.0 399 ------- null} h -t 38.2125 -s 1 -d 3 -p ack -e 40 -c 0 -i 810 -a 0 -x {21.0 3.0 -1 ------- null} r -t 38.2141 -s 28 -d 1 -p ack -e 40 -c 0 -i 811 -a 0 -x {21.0 3.0 400 ------- null} + -t 38.2141 -s 1 -d 3 -p ack -e 40 -c 0 -i 811 -a 0 -x {21.0 3.0 400 ------- null} - -t 38.2141 -s 1 -d 3 -p ack -e 40 -c 0 -i 811 -a 0 -x {21.0 3.0 400 ------- null} h -t 38.2141 -s 1 -d 3 -p ack -e 40 -c 0 -i 811 -a 0 -x {21.0 3.0 -1 ------- null} r -t 38.2157 -s 28 -d 1 -p ack -e 40 -c 0 -i 812 -a 0 -x {21.0 3.0 401 ------- null} + -t 38.2157 -s 1 -d 3 -p ack -e 40 -c 0 -i 812 -a 0 -x {21.0 3.0 401 ------- null} - -t 38.2157 -s 1 -d 3 -p ack -e 40 -c 0 -i 812 -a 0 -x {21.0 3.0 401 ------- null} h -t 38.2157 -s 1 -d 3 -p ack -e 40 -c 0 -i 812 -a 0 -x {21.0 3.0 -1 ------- null} r -t 38.2173 -s 28 -d 1 -p ack -e 40 -c 0 -i 813 -a 0 -x {21.0 3.0 402 ------- null} + -t 38.2173 -s 1 -d 3 -p ack -e 40 -c 0 -i 813 -a 0 -x {21.0 3.0 402 ------- null} - -t 38.2173 -s 1 -d 3 -p ack -e 40 -c 0 -i 813 -a 0 -x {21.0 3.0 402 ------- null} h -t 38.2173 -s 1 -d 3 -p ack -e 40 -c 0 -i 813 -a 0 -x {21.0 3.0 -1 ------- null} r -t 38.2189 -s 28 -d 1 -p ack -e 40 -c 0 -i 814 -a 0 -x {21.0 3.0 403 ------- null} + -t 38.2189 -s 1 -d 3 -p ack -e 40 -c 0 -i 814 -a 0 -x {21.0 3.0 403 ------- null} - -t 38.2189 -s 1 -d 3 -p ack -e 40 -c 0 -i 814 -a 0 -x {21.0 3.0 403 ------- null} h -t 38.2189 -s 1 -d 3 -p ack -e 40 -c 0 -i 814 -a 0 -x {21.0 3.0 -1 ------- null} r -t 38.2205 -s 28 -d 1 -p ack -e 40 -c 0 -i 815 -a 0 -x {21.0 3.0 404 ------- null} + -t 38.2205 -s 1 -d 3 -p ack -e 40 -c 0 -i 815 -a 0 -x {21.0 3.0 404 ------- null} - -t 38.2205 -s 1 -d 3 -p ack -e 40 -c 0 -i 815 -a 0 -x {21.0 3.0 404 ------- null} h -t 38.2205 -s 1 -d 3 -p ack -e 40 -c 0 -i 815 -a 0 -x {21.0 3.0 -1 ------- null} r -t 38.2221 -s 28 -d 1 -p ack -e 40 -c 0 -i 816 -a 0 -x {21.0 3.0 405 ------- null} + -t 38.2221 -s 1 -d 3 -p ack -e 40 -c 0 -i 816 -a 0 -x {21.0 3.0 405 ------- null} - -t 38.2221 -s 1 -d 3 -p ack -e 40 -c 0 -i 816 -a 0 -x {21.0 3.0 405 ------- null} h -t 38.2221 -s 1 -d 3 -p ack -e 40 -c 0 -i 816 -a 0 -x {21.0 3.0 -1 ------- null} r -t 38.2237 -s 28 -d 1 -p ack -e 40 -c 0 -i 817 -a 0 -x {21.0 3.0 406 ------- null} + -t 38.2237 -s 1 -d 3 -p ack -e 40 -c 0 -i 817 -a 0 -x {21.0 3.0 406 ------- null} - -t 38.2237 -s 1 -d 3 -p ack -e 40 -c 0 -i 817 -a 0 -x {21.0 3.0 406 ------- null} h -t 38.2237 -s 1 -d 3 -p ack -e 40 -c 0 -i 817 -a 0 -x {21.0 3.0 -1 ------- null} r -t 38.2253 -s 28 -d 1 -p ack -e 40 -c 0 -i 818 -a 0 -x {21.0 3.0 407 ------- null} + -t 38.2253 -s 1 -d 3 -p ack -e 40 -c 0 -i 818 -a 0 -x {21.0 3.0 407 ------- null} - -t 38.2253 -s 1 -d 3 -p ack -e 40 -c 0 -i 818 -a 0 -x {21.0 3.0 407 ------- null} h -t 38.2253 -s 1 -d 3 -p ack -e 40 -c 0 -i 818 -a 0 -x {21.0 3.0 -1 ------- null} r -t 38.2269 -s 28 -d 1 -p ack -e 40 -c 0 -i 819 -a 0 -x {21.0 3.0 408 ------- null} + -t 38.2269 -s 1 -d 3 -p ack -e 40 -c 0 -i 819 -a 0 -x {21.0 3.0 408 ------- null} - -t 38.2269 -s 1 -d 3 -p ack -e 40 -c 0 -i 819 -a 0 -x {21.0 3.0 408 ------- null} h -t 38.2269 -s 1 -d 3 -p ack -e 40 -c 0 -i 819 -a 0 -x {21.0 3.0 -1 ------- null} r -t 38.2285 -s 28 -d 1 -p ack -e 40 -c 0 -i 820 -a 0 -x {21.0 3.0 409 ------- null} + -t 38.2285 -s 1 -d 3 -p ack -e 40 -c 0 -i 820 -a 0 -x {21.0 3.0 409 ------- null} - -t 38.2285 -s 1 -d 3 -p ack -e 40 -c 0 -i 820 -a 0 -x {21.0 3.0 409 ------- null} h -t 38.2285 -s 1 -d 3 -p ack -e 40 -c 0 -i 820 -a 0 -x {21.0 3.0 -1 ------- null} r -t 38.2301 -s 28 -d 1 -p ack -e 40 -c 0 -i 821 -a 0 -x {21.0 3.0 410 ------- null} + -t 38.2301 -s 1 -d 3 -p ack -e 40 -c 0 -i 821 -a 0 -x {21.0 3.0 410 ------- null} - -t 38.2301 -s 1 -d 3 -p ack -e 40 -c 0 -i 821 -a 0 -x {21.0 3.0 410 ------- null} h -t 38.2301 -s 1 -d 3 -p ack -e 40 -c 0 -i 821 -a 0 -x {21.0 3.0 -1 ------- null} r -t 38.3398 -s 1 -d 3 -p ack -e 40 -c 0 -i 802 -a 0 -x {21.0 3.0 391 ------- null} + -t 38.3398 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 822 -a 0 -x {3.0 21.0 411 ------- null} - -t 38.3398 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 822 -a 0 -x {3.0 21.0 411 ------- null} h -t 38.3398 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 822 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.3414 -s 1 -d 3 -p ack -e 40 -c 0 -i 803 -a 0 -x {21.0 3.0 392 ------- null} + -t 38.3414 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {3.0 21.0 412 ------- null} - -t 38.3414 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {3.0 21.0 412 ------- null} h -t 38.3414 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.343 -s 1 -d 3 -p ack -e 40 -c 0 -i 804 -a 0 -x {21.0 3.0 393 ------- null} + -t 38.343 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 824 -a 0 -x {3.0 21.0 413 ------- null} - -t 38.343 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 824 -a 0 -x {3.0 21.0 413 ------- null} h -t 38.343 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 824 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.3446 -s 1 -d 3 -p ack -e 40 -c 0 -i 805 -a 0 -x {21.0 3.0 394 ------- null} + -t 38.3446 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {3.0 21.0 414 ------- null} - -t 38.3446 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {3.0 21.0 414 ------- null} h -t 38.3446 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.3462 -s 1 -d 3 -p ack -e 40 -c 0 -i 806 -a 0 -x {21.0 3.0 395 ------- null} + -t 38.3462 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 826 -a 0 -x {3.0 21.0 415 ------- null} - -t 38.3462 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 826 -a 0 -x {3.0 21.0 415 ------- null} h -t 38.3462 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 826 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.3478 -s 1 -d 3 -p ack -e 40 -c 0 -i 807 -a 0 -x {21.0 3.0 396 ------- null} + -t 38.3478 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {3.0 21.0 416 ------- null} - -t 38.3478 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {3.0 21.0 416 ------- null} h -t 38.3478 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.3494 -s 1 -d 3 -p ack -e 40 -c 0 -i 808 -a 0 -x {21.0 3.0 397 ------- null} + -t 38.3494 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 828 -a 0 -x {3.0 21.0 417 ------- null} - -t 38.3494 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 828 -a 0 -x {3.0 21.0 417 ------- null} h -t 38.3494 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 828 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.351 -s 1 -d 3 -p ack -e 40 -c 0 -i 809 -a 0 -x {21.0 3.0 398 ------- null} + -t 38.351 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {3.0 21.0 418 ------- null} - -t 38.351 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {3.0 21.0 418 ------- null} h -t 38.351 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.3526 -s 1 -d 3 -p ack -e 40 -c 0 -i 810 -a 0 -x {21.0 3.0 399 ------- null} + -t 38.3526 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 830 -a 0 -x {3.0 21.0 419 ------- null} - -t 38.3526 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 830 -a 0 -x {3.0 21.0 419 ------- null} h -t 38.3526 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 830 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.3542 -s 1 -d 3 -p ack -e 40 -c 0 -i 811 -a 0 -x {21.0 3.0 400 ------- null} + -t 38.3542 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {3.0 21.0 420 ------- null} - -t 38.3542 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {3.0 21.0 420 ------- null} h -t 38.3542 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.3558 -s 1 -d 3 -p ack -e 40 -c 0 -i 812 -a 0 -x {21.0 3.0 401 ------- null} + -t 38.3558 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 832 -a 0 -x {3.0 21.0 421 ------- null} - -t 38.3558 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 832 -a 0 -x {3.0 21.0 421 ------- null} h -t 38.3558 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 832 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.3574 -s 1 -d 3 -p ack -e 40 -c 0 -i 813 -a 0 -x {21.0 3.0 402 ------- null} + -t 38.3574 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {3.0 21.0 422 ------- null} - -t 38.3574 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {3.0 21.0 422 ------- null} h -t 38.3574 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.359 -s 1 -d 3 -p ack -e 40 -c 0 -i 814 -a 0 -x {21.0 3.0 403 ------- null} + -t 38.359 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 834 -a 0 -x {3.0 21.0 423 ------- null} - -t 38.359 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 834 -a 0 -x {3.0 21.0 423 ------- null} h -t 38.359 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 834 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.3606 -s 1 -d 3 -p ack -e 40 -c 0 -i 815 -a 0 -x {21.0 3.0 404 ------- null} + -t 38.3606 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {3.0 21.0 424 ------- null} - -t 38.3606 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {3.0 21.0 424 ------- null} h -t 38.3606 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.3622 -s 1 -d 3 -p ack -e 40 -c 0 -i 816 -a 0 -x {21.0 3.0 405 ------- null} + -t 38.3622 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 836 -a 0 -x {3.0 21.0 425 ------- null} - -t 38.3622 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 836 -a 0 -x {3.0 21.0 425 ------- null} h -t 38.3622 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 836 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.3638 -s 1 -d 3 -p ack -e 40 -c 0 -i 817 -a 0 -x {21.0 3.0 406 ------- null} + -t 38.3638 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {3.0 21.0 426 ------- null} - -t 38.3638 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {3.0 21.0 426 ------- null} h -t 38.3638 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.3654 -s 1 -d 3 -p ack -e 40 -c 0 -i 818 -a 0 -x {21.0 3.0 407 ------- null} + -t 38.3654 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 838 -a 0 -x {3.0 21.0 427 ------- null} - -t 38.3654 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 838 -a 0 -x {3.0 21.0 427 ------- null} h -t 38.3654 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 838 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.367 -s 1 -d 3 -p ack -e 40 -c 0 -i 819 -a 0 -x {21.0 3.0 408 ------- null} + -t 38.367 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {3.0 21.0 428 ------- null} - -t 38.367 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {3.0 21.0 428 ------- null} h -t 38.367 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.3686 -s 1 -d 3 -p ack -e 40 -c 0 -i 820 -a 0 -x {21.0 3.0 409 ------- null} + -t 38.3686 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 840 -a 0 -x {3.0 21.0 429 ------- null} - -t 38.3686 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 840 -a 0 -x {3.0 21.0 429 ------- null} h -t 38.3686 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 840 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.3702 -s 1 -d 3 -p ack -e 40 -c 0 -i 821 -a 0 -x {21.0 3.0 410 ------- null} + -t 38.3702 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {3.0 21.0 430 ------- null} - -t 38.3702 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {3.0 21.0 430 ------- null} h -t 38.3702 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.4814 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 822 -a 0 -x {3.0 21.0 411 ------- null} + -t 38.4814 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 822 -a 0 -x {3.0 21.0 411 ------- null} - -t 38.4814 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 822 -a 0 -x {3.0 21.0 411 ------- null} h -t 38.4814 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 822 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.483 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {3.0 21.0 412 ------- null} + -t 38.483 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {3.0 21.0 412 ------- null} - -t 38.483 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {3.0 21.0 412 ------- null} h -t 38.483 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.4846 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 824 -a 0 -x {3.0 21.0 413 ------- null} + -t 38.4846 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 824 -a 0 -x {3.0 21.0 413 ------- null} - -t 38.4846 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 824 -a 0 -x {3.0 21.0 413 ------- null} h -t 38.4846 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 824 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.4862 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {3.0 21.0 414 ------- null} + -t 38.4862 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {3.0 21.0 414 ------- null} - -t 38.4862 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {3.0 21.0 414 ------- null} h -t 38.4862 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.4878 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 826 -a 0 -x {3.0 21.0 415 ------- null} + -t 38.4878 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 826 -a 0 -x {3.0 21.0 415 ------- null} - -t 38.4878 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 826 -a 0 -x {3.0 21.0 415 ------- null} h -t 38.4878 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 826 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.4894 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {3.0 21.0 416 ------- null} + -t 38.4894 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {3.0 21.0 416 ------- null} - -t 38.4894 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {3.0 21.0 416 ------- null} h -t 38.4894 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.491 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 828 -a 0 -x {3.0 21.0 417 ------- null} + -t 38.491 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 828 -a 0 -x {3.0 21.0 417 ------- null} - -t 38.491 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 828 -a 0 -x {3.0 21.0 417 ------- null} h -t 38.491 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 828 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.4926 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {3.0 21.0 418 ------- null} + -t 38.4926 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {3.0 21.0 418 ------- null} - -t 38.4926 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {3.0 21.0 418 ------- null} h -t 38.4926 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.4942 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 830 -a 0 -x {3.0 21.0 419 ------- null} + -t 38.4942 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 830 -a 0 -x {3.0 21.0 419 ------- null} - -t 38.4942 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 830 -a 0 -x {3.0 21.0 419 ------- null} h -t 38.4942 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 830 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.4958 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {3.0 21.0 420 ------- null} + -t 38.4958 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {3.0 21.0 420 ------- null} - -t 38.4958 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {3.0 21.0 420 ------- null} h -t 38.4958 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.4974 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 832 -a 0 -x {3.0 21.0 421 ------- null} + -t 38.4974 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 832 -a 0 -x {3.0 21.0 421 ------- null} - -t 38.4974 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 832 -a 0 -x {3.0 21.0 421 ------- null} h -t 38.4974 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 832 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.499 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {3.0 21.0 422 ------- null} + -t 38.499 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {3.0 21.0 422 ------- null} - -t 38.499 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {3.0 21.0 422 ------- null} h -t 38.499 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.5006 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 834 -a 0 -x {3.0 21.0 423 ------- null} + -t 38.5006 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 834 -a 0 -x {3.0 21.0 423 ------- null} - -t 38.5006 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 834 -a 0 -x {3.0 21.0 423 ------- null} h -t 38.5006 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 834 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.5022 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {3.0 21.0 424 ------- null} + -t 38.5022 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {3.0 21.0 424 ------- null} - -t 38.5022 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {3.0 21.0 424 ------- null} h -t 38.5022 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.5038 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 836 -a 0 -x {3.0 21.0 425 ------- null} + -t 38.5038 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 836 -a 0 -x {3.0 21.0 425 ------- null} - -t 38.5038 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 836 -a 0 -x {3.0 21.0 425 ------- null} h -t 38.5038 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 836 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.5054 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {3.0 21.0 426 ------- null} + -t 38.5054 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {3.0 21.0 426 ------- null} - -t 38.5054 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {3.0 21.0 426 ------- null} h -t 38.5054 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.507 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 838 -a 0 -x {3.0 21.0 427 ------- null} + -t 38.507 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 838 -a 0 -x {3.0 21.0 427 ------- null} - -t 38.507 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 838 -a 0 -x {3.0 21.0 427 ------- null} h -t 38.507 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 838 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.5086 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {3.0 21.0 428 ------- null} + -t 38.5086 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {3.0 21.0 428 ------- null} - -t 38.5086 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {3.0 21.0 428 ------- null} h -t 38.5086 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.5102 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 840 -a 0 -x {3.0 21.0 429 ------- null} + -t 38.5102 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 840 -a 0 -x {3.0 21.0 429 ------- null} - -t 38.5102 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 840 -a 0 -x {3.0 21.0 429 ------- null} h -t 38.5102 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 840 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.5118 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {3.0 21.0 430 ------- null} + -t 38.5118 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {3.0 21.0 430 ------- null} - -t 38.5118 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {3.0 21.0 430 ------- null} h -t 38.5118 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.783 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 822 -a 0 -x {3.0 21.0 411 ------- null} + -t 38.783 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 822 -a 0 -x {3.0 21.0 411 ------- null} - -t 38.783 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 822 -a 0 -x {3.0 21.0 411 ------- null} h -t 38.783 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 822 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.7846 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {3.0 21.0 412 ------- null} + -t 38.7846 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {3.0 21.0 412 ------- null} - -t 38.7846 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {3.0 21.0 412 ------- null} h -t 38.7846 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.7862 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 824 -a 0 -x {3.0 21.0 413 ------- null} + -t 38.7862 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 824 -a 0 -x {3.0 21.0 413 ------- null} - -t 38.7862 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 824 -a 0 -x {3.0 21.0 413 ------- null} h -t 38.7862 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 824 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.7878 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {3.0 21.0 414 ------- null} + -t 38.7878 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {3.0 21.0 414 ------- null} - -t 38.7878 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {3.0 21.0 414 ------- null} h -t 38.7878 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.7894 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 826 -a 0 -x {3.0 21.0 415 ------- null} + -t 38.7894 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 826 -a 0 -x {3.0 21.0 415 ------- null} - -t 38.7894 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 826 -a 0 -x {3.0 21.0 415 ------- null} h -t 38.7894 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 826 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.791 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {3.0 21.0 416 ------- null} + -t 38.791 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {3.0 21.0 416 ------- null} - -t 38.791 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {3.0 21.0 416 ------- null} h -t 38.791 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.7926 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 828 -a 0 -x {3.0 21.0 417 ------- null} + -t 38.7926 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 828 -a 0 -x {3.0 21.0 417 ------- null} - -t 38.7926 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 828 -a 0 -x {3.0 21.0 417 ------- null} h -t 38.7926 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 828 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.7942 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {3.0 21.0 418 ------- null} + -t 38.7942 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {3.0 21.0 418 ------- null} - -t 38.7942 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {3.0 21.0 418 ------- null} h -t 38.7942 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.7958 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 830 -a 0 -x {3.0 21.0 419 ------- null} + -t 38.7958 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 830 -a 0 -x {3.0 21.0 419 ------- null} - -t 38.7958 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 830 -a 0 -x {3.0 21.0 419 ------- null} h -t 38.7958 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 830 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.7974 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {3.0 21.0 420 ------- null} + -t 38.7974 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {3.0 21.0 420 ------- null} - -t 38.7974 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {3.0 21.0 420 ------- null} h -t 38.7974 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.799 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 832 -a 0 -x {3.0 21.0 421 ------- null} + -t 38.799 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 832 -a 0 -x {3.0 21.0 421 ------- null} - -t 38.799 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 832 -a 0 -x {3.0 21.0 421 ------- null} h -t 38.799 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 832 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.8006 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {3.0 21.0 422 ------- null} + -t 38.8006 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {3.0 21.0 422 ------- null} - -t 38.8006 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {3.0 21.0 422 ------- null} h -t 38.8006 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.8022 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 834 -a 0 -x {3.0 21.0 423 ------- null} + -t 38.8022 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 834 -a 0 -x {3.0 21.0 423 ------- null} - -t 38.8022 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 834 -a 0 -x {3.0 21.0 423 ------- null} h -t 38.8022 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 834 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.8038 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {3.0 21.0 424 ------- null} + -t 38.8038 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {3.0 21.0 424 ------- null} - -t 38.8038 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {3.0 21.0 424 ------- null} h -t 38.8038 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.8054 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 836 -a 0 -x {3.0 21.0 425 ------- null} + -t 38.8054 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 836 -a 0 -x {3.0 21.0 425 ------- null} - -t 38.8054 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 836 -a 0 -x {3.0 21.0 425 ------- null} h -t 38.8054 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 836 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.807 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {3.0 21.0 426 ------- null} + -t 38.807 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {3.0 21.0 426 ------- null} - -t 38.807 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {3.0 21.0 426 ------- null} h -t 38.807 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.8086 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 838 -a 0 -x {3.0 21.0 427 ------- null} + -t 38.8086 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 838 -a 0 -x {3.0 21.0 427 ------- null} - -t 38.8086 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 838 -a 0 -x {3.0 21.0 427 ------- null} h -t 38.8086 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 838 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.8102 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {3.0 21.0 428 ------- null} + -t 38.8102 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {3.0 21.0 428 ------- null} - -t 38.8102 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {3.0 21.0 428 ------- null} h -t 38.8102 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.8118 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 840 -a 0 -x {3.0 21.0 429 ------- null} + -t 38.8118 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 840 -a 0 -x {3.0 21.0 429 ------- null} - -t 38.8118 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 840 -a 0 -x {3.0 21.0 429 ------- null} h -t 38.8118 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 840 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.8134 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {3.0 21.0 430 ------- null} + -t 38.8134 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {3.0 21.0 430 ------- null} - -t 38.8134 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {3.0 21.0 430 ------- null} h -t 38.8134 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {3.0 21.0 -1 ------- null} r -t 39.1346 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 822 -a 0 -x {3.0 21.0 411 ------- null} + -t 39.1346 -s 21 -d 28 -p ack -e 40 -c 0 -i 842 -a 0 -x {21.0 3.0 411 ------- null} - -t 39.1346 -s 21 -d 28 -p ack -e 40 -c 0 -i 842 -a 0 -x {21.0 3.0 411 ------- null} h -t 39.1346 -s 21 -d 28 -p ack -e 40 -c 0 -i 842 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.1362 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {3.0 21.0 412 ------- null} + -t 39.1362 -s 21 -d 28 -p ack -e 40 -c 0 -i 843 -a 0 -x {21.0 3.0 412 ------- null} - -t 39.1362 -s 21 -d 28 -p ack -e 40 -c 0 -i 843 -a 0 -x {21.0 3.0 412 ------- null} h -t 39.1362 -s 21 -d 28 -p ack -e 40 -c 0 -i 843 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.1378 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 824 -a 0 -x {3.0 21.0 413 ------- null} + -t 39.1378 -s 21 -d 28 -p ack -e 40 -c 0 -i 844 -a 0 -x {21.0 3.0 413 ------- null} - -t 39.1378 -s 21 -d 28 -p ack -e 40 -c 0 -i 844 -a 0 -x {21.0 3.0 413 ------- null} h -t 39.1378 -s 21 -d 28 -p ack -e 40 -c 0 -i 844 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.1394 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {3.0 21.0 414 ------- null} + -t 39.1394 -s 21 -d 28 -p ack -e 40 -c 0 -i 845 -a 0 -x {21.0 3.0 414 ------- null} - -t 39.1394 -s 21 -d 28 -p ack -e 40 -c 0 -i 845 -a 0 -x {21.0 3.0 414 ------- null} h -t 39.1394 -s 21 -d 28 -p ack -e 40 -c 0 -i 845 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.141 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 826 -a 0 -x {3.0 21.0 415 ------- null} + -t 39.141 -s 21 -d 28 -p ack -e 40 -c 0 -i 846 -a 0 -x {21.0 3.0 415 ------- null} - -t 39.141 -s 21 -d 28 -p ack -e 40 -c 0 -i 846 -a 0 -x {21.0 3.0 415 ------- null} h -t 39.141 -s 21 -d 28 -p ack -e 40 -c 0 -i 846 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.1426 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {3.0 21.0 416 ------- null} + -t 39.1426 -s 21 -d 28 -p ack -e 40 -c 0 -i 847 -a 0 -x {21.0 3.0 416 ------- null} - -t 39.1426 -s 21 -d 28 -p ack -e 40 -c 0 -i 847 -a 0 -x {21.0 3.0 416 ------- null} h -t 39.1426 -s 21 -d 28 -p ack -e 40 -c 0 -i 847 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.1442 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 828 -a 0 -x {3.0 21.0 417 ------- null} + -t 39.1442 -s 21 -d 28 -p ack -e 40 -c 0 -i 848 -a 0 -x {21.0 3.0 417 ------- null} - -t 39.1442 -s 21 -d 28 -p ack -e 40 -c 0 -i 848 -a 0 -x {21.0 3.0 417 ------- null} h -t 39.1442 -s 21 -d 28 -p ack -e 40 -c 0 -i 848 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.1458 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {3.0 21.0 418 ------- null} + -t 39.1458 -s 21 -d 28 -p ack -e 40 -c 0 -i 849 -a 0 -x {21.0 3.0 418 ------- null} - -t 39.1458 -s 21 -d 28 -p ack -e 40 -c 0 -i 849 -a 0 -x {21.0 3.0 418 ------- null} h -t 39.1458 -s 21 -d 28 -p ack -e 40 -c 0 -i 849 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.1474 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 830 -a 0 -x {3.0 21.0 419 ------- null} + -t 39.1474 -s 21 -d 28 -p ack -e 40 -c 0 -i 850 -a 0 -x {21.0 3.0 419 ------- null} - -t 39.1474 -s 21 -d 28 -p ack -e 40 -c 0 -i 850 -a 0 -x {21.0 3.0 419 ------- null} h -t 39.1474 -s 21 -d 28 -p ack -e 40 -c 0 -i 850 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.149 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {3.0 21.0 420 ------- null} + -t 39.149 -s 21 -d 28 -p ack -e 40 -c 0 -i 851 -a 0 -x {21.0 3.0 420 ------- null} - -t 39.149 -s 21 -d 28 -p ack -e 40 -c 0 -i 851 -a 0 -x {21.0 3.0 420 ------- null} h -t 39.149 -s 21 -d 28 -p ack -e 40 -c 0 -i 851 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.1506 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 832 -a 0 -x {3.0 21.0 421 ------- null} + -t 39.1506 -s 21 -d 28 -p ack -e 40 -c 0 -i 852 -a 0 -x {21.0 3.0 421 ------- null} - -t 39.1506 -s 21 -d 28 -p ack -e 40 -c 0 -i 852 -a 0 -x {21.0 3.0 421 ------- null} h -t 39.1506 -s 21 -d 28 -p ack -e 40 -c 0 -i 852 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.1522 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {3.0 21.0 422 ------- null} + -t 39.1522 -s 21 -d 28 -p ack -e 40 -c 0 -i 853 -a 0 -x {21.0 3.0 422 ------- null} - -t 39.1522 -s 21 -d 28 -p ack -e 40 -c 0 -i 853 -a 0 -x {21.0 3.0 422 ------- null} h -t 39.1522 -s 21 -d 28 -p ack -e 40 -c 0 -i 853 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.1538 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 834 -a 0 -x {3.0 21.0 423 ------- null} + -t 39.1538 -s 21 -d 28 -p ack -e 40 -c 0 -i 854 -a 0 -x {21.0 3.0 423 ------- null} - -t 39.1538 -s 21 -d 28 -p ack -e 40 -c 0 -i 854 -a 0 -x {21.0 3.0 423 ------- null} h -t 39.1538 -s 21 -d 28 -p ack -e 40 -c 0 -i 854 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.1554 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {3.0 21.0 424 ------- null} + -t 39.1554 -s 21 -d 28 -p ack -e 40 -c 0 -i 855 -a 0 -x {21.0 3.0 424 ------- null} - -t 39.1554 -s 21 -d 28 -p ack -e 40 -c 0 -i 855 -a 0 -x {21.0 3.0 424 ------- null} h -t 39.1554 -s 21 -d 28 -p ack -e 40 -c 0 -i 855 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.157 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 836 -a 0 -x {3.0 21.0 425 ------- null} + -t 39.157 -s 21 -d 28 -p ack -e 40 -c 0 -i 856 -a 0 -x {21.0 3.0 425 ------- null} - -t 39.157 -s 21 -d 28 -p ack -e 40 -c 0 -i 856 -a 0 -x {21.0 3.0 425 ------- null} h -t 39.157 -s 21 -d 28 -p ack -e 40 -c 0 -i 856 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.1586 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {3.0 21.0 426 ------- null} + -t 39.1586 -s 21 -d 28 -p ack -e 40 -c 0 -i 857 -a 0 -x {21.0 3.0 426 ------- null} - -t 39.1586 -s 21 -d 28 -p ack -e 40 -c 0 -i 857 -a 0 -x {21.0 3.0 426 ------- null} h -t 39.1586 -s 21 -d 28 -p ack -e 40 -c 0 -i 857 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.1602 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 838 -a 0 -x {3.0 21.0 427 ------- null} + -t 39.1602 -s 21 -d 28 -p ack -e 40 -c 0 -i 858 -a 0 -x {21.0 3.0 427 ------- null} - -t 39.1602 -s 21 -d 28 -p ack -e 40 -c 0 -i 858 -a 0 -x {21.0 3.0 427 ------- null} h -t 39.1602 -s 21 -d 28 -p ack -e 40 -c 0 -i 858 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.1618 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {3.0 21.0 428 ------- null} + -t 39.1618 -s 21 -d 28 -p ack -e 40 -c 0 -i 859 -a 0 -x {21.0 3.0 428 ------- null} - -t 39.1618 -s 21 -d 28 -p ack -e 40 -c 0 -i 859 -a 0 -x {21.0 3.0 428 ------- null} h -t 39.1618 -s 21 -d 28 -p ack -e 40 -c 0 -i 859 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.1634 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 840 -a 0 -x {3.0 21.0 429 ------- null} + -t 39.1634 -s 21 -d 28 -p ack -e 40 -c 0 -i 860 -a 0 -x {21.0 3.0 429 ------- null} - -t 39.1634 -s 21 -d 28 -p ack -e 40 -c 0 -i 860 -a 0 -x {21.0 3.0 429 ------- null} h -t 39.1634 -s 21 -d 28 -p ack -e 40 -c 0 -i 860 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.165 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {3.0 21.0 430 ------- null} + -t 39.165 -s 21 -d 28 -p ack -e 40 -c 0 -i 861 -a 0 -x {21.0 3.0 430 ------- null} - -t 39.165 -s 21 -d 28 -p ack -e 40 -c 0 -i 861 -a 0 -x {21.0 3.0 430 ------- null} h -t 39.165 -s 21 -d 28 -p ack -e 40 -c 0 -i 861 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.4847 -s 21 -d 28 -p ack -e 40 -c 0 -i 842 -a 0 -x {21.0 3.0 411 ------- null} + -t 39.4847 -s 28 -d 1 -p ack -e 40 -c 0 -i 842 -a 0 -x {21.0 3.0 411 ------- null} - -t 39.4847 -s 28 -d 1 -p ack -e 40 -c 0 -i 842 -a 0 -x {21.0 3.0 411 ------- null} h -t 39.4847 -s 28 -d 1 -p ack -e 40 -c 0 -i 842 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.4863 -s 21 -d 28 -p ack -e 40 -c 0 -i 843 -a 0 -x {21.0 3.0 412 ------- null} + -t 39.4863 -s 28 -d 1 -p ack -e 40 -c 0 -i 843 -a 0 -x {21.0 3.0 412 ------- null} - -t 39.4863 -s 28 -d 1 -p ack -e 40 -c 0 -i 843 -a 0 -x {21.0 3.0 412 ------- null} h -t 39.4863 -s 28 -d 1 -p ack -e 40 -c 0 -i 843 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.4879 -s 21 -d 28 -p ack -e 40 -c 0 -i 844 -a 0 -x {21.0 3.0 413 ------- null} + -t 39.4879 -s 28 -d 1 -p ack -e 40 -c 0 -i 844 -a 0 -x {21.0 3.0 413 ------- null} - -t 39.4879 -s 28 -d 1 -p ack -e 40 -c 0 -i 844 -a 0 -x {21.0 3.0 413 ------- null} h -t 39.4879 -s 28 -d 1 -p ack -e 40 -c 0 -i 844 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.4895 -s 21 -d 28 -p ack -e 40 -c 0 -i 845 -a 0 -x {21.0 3.0 414 ------- null} + -t 39.4895 -s 28 -d 1 -p ack -e 40 -c 0 -i 845 -a 0 -x {21.0 3.0 414 ------- null} - -t 39.4895 -s 28 -d 1 -p ack -e 40 -c 0 -i 845 -a 0 -x {21.0 3.0 414 ------- null} h -t 39.4895 -s 28 -d 1 -p ack -e 40 -c 0 -i 845 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.4911 -s 21 -d 28 -p ack -e 40 -c 0 -i 846 -a 0 -x {21.0 3.0 415 ------- null} + -t 39.4911 -s 28 -d 1 -p ack -e 40 -c 0 -i 846 -a 0 -x {21.0 3.0 415 ------- null} - -t 39.4911 -s 28 -d 1 -p ack -e 40 -c 0 -i 846 -a 0 -x {21.0 3.0 415 ------- null} h -t 39.4911 -s 28 -d 1 -p ack -e 40 -c 0 -i 846 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.4927 -s 21 -d 28 -p ack -e 40 -c 0 -i 847 -a 0 -x {21.0 3.0 416 ------- null} + -t 39.4927 -s 28 -d 1 -p ack -e 40 -c 0 -i 847 -a 0 -x {21.0 3.0 416 ------- null} - -t 39.4927 -s 28 -d 1 -p ack -e 40 -c 0 -i 847 -a 0 -x {21.0 3.0 416 ------- null} h -t 39.4927 -s 28 -d 1 -p ack -e 40 -c 0 -i 847 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.4943 -s 21 -d 28 -p ack -e 40 -c 0 -i 848 -a 0 -x {21.0 3.0 417 ------- null} + -t 39.4943 -s 28 -d 1 -p ack -e 40 -c 0 -i 848 -a 0 -x {21.0 3.0 417 ------- null} - -t 39.4943 -s 28 -d 1 -p ack -e 40 -c 0 -i 848 -a 0 -x {21.0 3.0 417 ------- null} h -t 39.4943 -s 28 -d 1 -p ack -e 40 -c 0 -i 848 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.4959 -s 21 -d 28 -p ack -e 40 -c 0 -i 849 -a 0 -x {21.0 3.0 418 ------- null} + -t 39.4959 -s 28 -d 1 -p ack -e 40 -c 0 -i 849 -a 0 -x {21.0 3.0 418 ------- null} - -t 39.4959 -s 28 -d 1 -p ack -e 40 -c 0 -i 849 -a 0 -x {21.0 3.0 418 ------- null} h -t 39.4959 -s 28 -d 1 -p ack -e 40 -c 0 -i 849 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.4975 -s 21 -d 28 -p ack -e 40 -c 0 -i 850 -a 0 -x {21.0 3.0 419 ------- null} + -t 39.4975 -s 28 -d 1 -p ack -e 40 -c 0 -i 850 -a 0 -x {21.0 3.0 419 ------- null} - -t 39.4975 -s 28 -d 1 -p ack -e 40 -c 0 -i 850 -a 0 -x {21.0 3.0 419 ------- null} h -t 39.4975 -s 28 -d 1 -p ack -e 40 -c 0 -i 850 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.4991 -s 21 -d 28 -p ack -e 40 -c 0 -i 851 -a 0 -x {21.0 3.0 420 ------- null} + -t 39.4991 -s 28 -d 1 -p ack -e 40 -c 0 -i 851 -a 0 -x {21.0 3.0 420 ------- null} - -t 39.4991 -s 28 -d 1 -p ack -e 40 -c 0 -i 851 -a 0 -x {21.0 3.0 420 ------- null} h -t 39.4991 -s 28 -d 1 -p ack -e 40 -c 0 -i 851 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.5007 -s 21 -d 28 -p ack -e 40 -c 0 -i 852 -a 0 -x {21.0 3.0 421 ------- null} + -t 39.5007 -s 28 -d 1 -p ack -e 40 -c 0 -i 852 -a 0 -x {21.0 3.0 421 ------- null} - -t 39.5007 -s 28 -d 1 -p ack -e 40 -c 0 -i 852 -a 0 -x {21.0 3.0 421 ------- null} h -t 39.5007 -s 28 -d 1 -p ack -e 40 -c 0 -i 852 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.5023 -s 21 -d 28 -p ack -e 40 -c 0 -i 853 -a 0 -x {21.0 3.0 422 ------- null} + -t 39.5023 -s 28 -d 1 -p ack -e 40 -c 0 -i 853 -a 0 -x {21.0 3.0 422 ------- null} - -t 39.5023 -s 28 -d 1 -p ack -e 40 -c 0 -i 853 -a 0 -x {21.0 3.0 422 ------- null} h -t 39.5023 -s 28 -d 1 -p ack -e 40 -c 0 -i 853 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.5039 -s 21 -d 28 -p ack -e 40 -c 0 -i 854 -a 0 -x {21.0 3.0 423 ------- null} + -t 39.5039 -s 28 -d 1 -p ack -e 40 -c 0 -i 854 -a 0 -x {21.0 3.0 423 ------- null} - -t 39.5039 -s 28 -d 1 -p ack -e 40 -c 0 -i 854 -a 0 -x {21.0 3.0 423 ------- null} h -t 39.5039 -s 28 -d 1 -p ack -e 40 -c 0 -i 854 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.5055 -s 21 -d 28 -p ack -e 40 -c 0 -i 855 -a 0 -x {21.0 3.0 424 ------- null} + -t 39.5055 -s 28 -d 1 -p ack -e 40 -c 0 -i 855 -a 0 -x {21.0 3.0 424 ------- null} - -t 39.5055 -s 28 -d 1 -p ack -e 40 -c 0 -i 855 -a 0 -x {21.0 3.0 424 ------- null} h -t 39.5055 -s 28 -d 1 -p ack -e 40 -c 0 -i 855 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.5071 -s 21 -d 28 -p ack -e 40 -c 0 -i 856 -a 0 -x {21.0 3.0 425 ------- null} + -t 39.5071 -s 28 -d 1 -p ack -e 40 -c 0 -i 856 -a 0 -x {21.0 3.0 425 ------- null} - -t 39.5071 -s 28 -d 1 -p ack -e 40 -c 0 -i 856 -a 0 -x {21.0 3.0 425 ------- null} h -t 39.5071 -s 28 -d 1 -p ack -e 40 -c 0 -i 856 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.5087 -s 21 -d 28 -p ack -e 40 -c 0 -i 857 -a 0 -x {21.0 3.0 426 ------- null} + -t 39.5087 -s 28 -d 1 -p ack -e 40 -c 0 -i 857 -a 0 -x {21.0 3.0 426 ------- null} - -t 39.5087 -s 28 -d 1 -p ack -e 40 -c 0 -i 857 -a 0 -x {21.0 3.0 426 ------- null} h -t 39.5087 -s 28 -d 1 -p ack -e 40 -c 0 -i 857 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.5103 -s 21 -d 28 -p ack -e 40 -c 0 -i 858 -a 0 -x {21.0 3.0 427 ------- null} + -t 39.5103 -s 28 -d 1 -p ack -e 40 -c 0 -i 858 -a 0 -x {21.0 3.0 427 ------- null} - -t 39.5103 -s 28 -d 1 -p ack -e 40 -c 0 -i 858 -a 0 -x {21.0 3.0 427 ------- null} h -t 39.5103 -s 28 -d 1 -p ack -e 40 -c 0 -i 858 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.5119 -s 21 -d 28 -p ack -e 40 -c 0 -i 859 -a 0 -x {21.0 3.0 428 ------- null} + -t 39.5119 -s 28 -d 1 -p ack -e 40 -c 0 -i 859 -a 0 -x {21.0 3.0 428 ------- null} - -t 39.5119 -s 28 -d 1 -p ack -e 40 -c 0 -i 859 -a 0 -x {21.0 3.0 428 ------- null} h -t 39.5119 -s 28 -d 1 -p ack -e 40 -c 0 -i 859 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.5135 -s 21 -d 28 -p ack -e 40 -c 0 -i 860 -a 0 -x {21.0 3.0 429 ------- null} + -t 39.5135 -s 28 -d 1 -p ack -e 40 -c 0 -i 860 -a 0 -x {21.0 3.0 429 ------- null} - -t 39.5135 -s 28 -d 1 -p ack -e 40 -c 0 -i 860 -a 0 -x {21.0 3.0 429 ------- null} h -t 39.5135 -s 28 -d 1 -p ack -e 40 -c 0 -i 860 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.5151 -s 21 -d 28 -p ack -e 40 -c 0 -i 861 -a 0 -x {21.0 3.0 430 ------- null} + -t 39.5151 -s 28 -d 1 -p ack -e 40 -c 0 -i 861 -a 0 -x {21.0 3.0 430 ------- null} - -t 39.5151 -s 28 -d 1 -p ack -e 40 -c 0 -i 861 -a 0 -x {21.0 3.0 430 ------- null} h -t 39.5151 -s 28 -d 1 -p ack -e 40 -c 0 -i 861 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.7847 -s 28 -d 1 -p ack -e 40 -c 0 -i 842 -a 0 -x {21.0 3.0 411 ------- null} + -t 39.7847 -s 1 -d 3 -p ack -e 40 -c 0 -i 842 -a 0 -x {21.0 3.0 411 ------- null} - -t 39.7847 -s 1 -d 3 -p ack -e 40 -c 0 -i 842 -a 0 -x {21.0 3.0 411 ------- null} h -t 39.7847 -s 1 -d 3 -p ack -e 40 -c 0 -i 842 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.7863 -s 28 -d 1 -p ack -e 40 -c 0 -i 843 -a 0 -x {21.0 3.0 412 ------- null} + -t 39.7863 -s 1 -d 3 -p ack -e 40 -c 0 -i 843 -a 0 -x {21.0 3.0 412 ------- null} - -t 39.7863 -s 1 -d 3 -p ack -e 40 -c 0 -i 843 -a 0 -x {21.0 3.0 412 ------- null} h -t 39.7863 -s 1 -d 3 -p ack -e 40 -c 0 -i 843 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.7879 -s 28 -d 1 -p ack -e 40 -c 0 -i 844 -a 0 -x {21.0 3.0 413 ------- null} + -t 39.7879 -s 1 -d 3 -p ack -e 40 -c 0 -i 844 -a 0 -x {21.0 3.0 413 ------- null} - -t 39.7879 -s 1 -d 3 -p ack -e 40 -c 0 -i 844 -a 0 -x {21.0 3.0 413 ------- null} h -t 39.7879 -s 1 -d 3 -p ack -e 40 -c 0 -i 844 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.7895 -s 28 -d 1 -p ack -e 40 -c 0 -i 845 -a 0 -x {21.0 3.0 414 ------- null} + -t 39.7895 -s 1 -d 3 -p ack -e 40 -c 0 -i 845 -a 0 -x {21.0 3.0 414 ------- null} - -t 39.7895 -s 1 -d 3 -p ack -e 40 -c 0 -i 845 -a 0 -x {21.0 3.0 414 ------- null} h -t 39.7895 -s 1 -d 3 -p ack -e 40 -c 0 -i 845 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.7911 -s 28 -d 1 -p ack -e 40 -c 0 -i 846 -a 0 -x {21.0 3.0 415 ------- null} + -t 39.7911 -s 1 -d 3 -p ack -e 40 -c 0 -i 846 -a 0 -x {21.0 3.0 415 ------- null} - -t 39.7911 -s 1 -d 3 -p ack -e 40 -c 0 -i 846 -a 0 -x {21.0 3.0 415 ------- null} h -t 39.7911 -s 1 -d 3 -p ack -e 40 -c 0 -i 846 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.7927 -s 28 -d 1 -p ack -e 40 -c 0 -i 847 -a 0 -x {21.0 3.0 416 ------- null} + -t 39.7927 -s 1 -d 3 -p ack -e 40 -c 0 -i 847 -a 0 -x {21.0 3.0 416 ------- null} - -t 39.7927 -s 1 -d 3 -p ack -e 40 -c 0 -i 847 -a 0 -x {21.0 3.0 416 ------- null} h -t 39.7927 -s 1 -d 3 -p ack -e 40 -c 0 -i 847 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.7943 -s 28 -d 1 -p ack -e 40 -c 0 -i 848 -a 0 -x {21.0 3.0 417 ------- null} + -t 39.7943 -s 1 -d 3 -p ack -e 40 -c 0 -i 848 -a 0 -x {21.0 3.0 417 ------- null} - -t 39.7943 -s 1 -d 3 -p ack -e 40 -c 0 -i 848 -a 0 -x {21.0 3.0 417 ------- null} h -t 39.7943 -s 1 -d 3 -p ack -e 40 -c 0 -i 848 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.7959 -s 28 -d 1 -p ack -e 40 -c 0 -i 849 -a 0 -x {21.0 3.0 418 ------- null} + -t 39.7959 -s 1 -d 3 -p ack -e 40 -c 0 -i 849 -a 0 -x {21.0 3.0 418 ------- null} - -t 39.7959 -s 1 -d 3 -p ack -e 40 -c 0 -i 849 -a 0 -x {21.0 3.0 418 ------- null} h -t 39.7959 -s 1 -d 3 -p ack -e 40 -c 0 -i 849 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.7975 -s 28 -d 1 -p ack -e 40 -c 0 -i 850 -a 0 -x {21.0 3.0 419 ------- null} + -t 39.7975 -s 1 -d 3 -p ack -e 40 -c 0 -i 850 -a 0 -x {21.0 3.0 419 ------- null} - -t 39.7975 -s 1 -d 3 -p ack -e 40 -c 0 -i 850 -a 0 -x {21.0 3.0 419 ------- null} h -t 39.7975 -s 1 -d 3 -p ack -e 40 -c 0 -i 850 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.7991 -s 28 -d 1 -p ack -e 40 -c 0 -i 851 -a 0 -x {21.0 3.0 420 ------- null} + -t 39.7991 -s 1 -d 3 -p ack -e 40 -c 0 -i 851 -a 0 -x {21.0 3.0 420 ------- null} - -t 39.7991 -s 1 -d 3 -p ack -e 40 -c 0 -i 851 -a 0 -x {21.0 3.0 420 ------- null} h -t 39.7991 -s 1 -d 3 -p ack -e 40 -c 0 -i 851 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.8007 -s 28 -d 1 -p ack -e 40 -c 0 -i 852 -a 0 -x {21.0 3.0 421 ------- null} + -t 39.8007 -s 1 -d 3 -p ack -e 40 -c 0 -i 852 -a 0 -x {21.0 3.0 421 ------- null} - -t 39.8007 -s 1 -d 3 -p ack -e 40 -c 0 -i 852 -a 0 -x {21.0 3.0 421 ------- null} h -t 39.8007 -s 1 -d 3 -p ack -e 40 -c 0 -i 852 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.8023 -s 28 -d 1 -p ack -e 40 -c 0 -i 853 -a 0 -x {21.0 3.0 422 ------- null} + -t 39.8023 -s 1 -d 3 -p ack -e 40 -c 0 -i 853 -a 0 -x {21.0 3.0 422 ------- null} - -t 39.8023 -s 1 -d 3 -p ack -e 40 -c 0 -i 853 -a 0 -x {21.0 3.0 422 ------- null} h -t 39.8023 -s 1 -d 3 -p ack -e 40 -c 0 -i 853 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.8039 -s 28 -d 1 -p ack -e 40 -c 0 -i 854 -a 0 -x {21.0 3.0 423 ------- null} + -t 39.8039 -s 1 -d 3 -p ack -e 40 -c 0 -i 854 -a 0 -x {21.0 3.0 423 ------- null} - -t 39.8039 -s 1 -d 3 -p ack -e 40 -c 0 -i 854 -a 0 -x {21.0 3.0 423 ------- null} h -t 39.8039 -s 1 -d 3 -p ack -e 40 -c 0 -i 854 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.8055 -s 28 -d 1 -p ack -e 40 -c 0 -i 855 -a 0 -x {21.0 3.0 424 ------- null} + -t 39.8055 -s 1 -d 3 -p ack -e 40 -c 0 -i 855 -a 0 -x {21.0 3.0 424 ------- null} - -t 39.8055 -s 1 -d 3 -p ack -e 40 -c 0 -i 855 -a 0 -x {21.0 3.0 424 ------- null} h -t 39.8055 -s 1 -d 3 -p ack -e 40 -c 0 -i 855 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.8071 -s 28 -d 1 -p ack -e 40 -c 0 -i 856 -a 0 -x {21.0 3.0 425 ------- null} + -t 39.8071 -s 1 -d 3 -p ack -e 40 -c 0 -i 856 -a 0 -x {21.0 3.0 425 ------- null} - -t 39.8071 -s 1 -d 3 -p ack -e 40 -c 0 -i 856 -a 0 -x {21.0 3.0 425 ------- null} h -t 39.8071 -s 1 -d 3 -p ack -e 40 -c 0 -i 856 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.8087 -s 28 -d 1 -p ack -e 40 -c 0 -i 857 -a 0 -x {21.0 3.0 426 ------- null} + -t 39.8087 -s 1 -d 3 -p ack -e 40 -c 0 -i 857 -a 0 -x {21.0 3.0 426 ------- null} - -t 39.8087 -s 1 -d 3 -p ack -e 40 -c 0 -i 857 -a 0 -x {21.0 3.0 426 ------- null} h -t 39.8087 -s 1 -d 3 -p ack -e 40 -c 0 -i 857 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.8103 -s 28 -d 1 -p ack -e 40 -c 0 -i 858 -a 0 -x {21.0 3.0 427 ------- null} + -t 39.8103 -s 1 -d 3 -p ack -e 40 -c 0 -i 858 -a 0 -x {21.0 3.0 427 ------- null} - -t 39.8103 -s 1 -d 3 -p ack -e 40 -c 0 -i 858 -a 0 -x {21.0 3.0 427 ------- null} h -t 39.8103 -s 1 -d 3 -p ack -e 40 -c 0 -i 858 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.8119 -s 28 -d 1 -p ack -e 40 -c 0 -i 859 -a 0 -x {21.0 3.0 428 ------- null} + -t 39.8119 -s 1 -d 3 -p ack -e 40 -c 0 -i 859 -a 0 -x {21.0 3.0 428 ------- null} - -t 39.8119 -s 1 -d 3 -p ack -e 40 -c 0 -i 859 -a 0 -x {21.0 3.0 428 ------- null} h -t 39.8119 -s 1 -d 3 -p ack -e 40 -c 0 -i 859 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.8135 -s 28 -d 1 -p ack -e 40 -c 0 -i 860 -a 0 -x {21.0 3.0 429 ------- null} + -t 39.8135 -s 1 -d 3 -p ack -e 40 -c 0 -i 860 -a 0 -x {21.0 3.0 429 ------- null} - -t 39.8135 -s 1 -d 3 -p ack -e 40 -c 0 -i 860 -a 0 -x {21.0 3.0 429 ------- null} h -t 39.8135 -s 1 -d 3 -p ack -e 40 -c 0 -i 860 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.8151 -s 28 -d 1 -p ack -e 40 -c 0 -i 861 -a 0 -x {21.0 3.0 430 ------- null} + -t 39.8151 -s 1 -d 3 -p ack -e 40 -c 0 -i 861 -a 0 -x {21.0 3.0 430 ------- null} - -t 39.8151 -s 1 -d 3 -p ack -e 40 -c 0 -i 861 -a 0 -x {21.0 3.0 430 ------- null} h -t 39.8151 -s 1 -d 3 -p ack -e 40 -c 0 -i 861 -a 0 -x {21.0 3.0 -1 ------- null} r -t 39.9248 -s 1 -d 3 -p ack -e 40 -c 0 -i 842 -a 0 -x {21.0 3.0 411 ------- null} + -t 39.9248 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 862 -a 0 -x {3.0 21.0 431 ------- null} - -t 39.9248 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 862 -a 0 -x {3.0 21.0 431 ------- null} h -t 39.9248 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 862 -a 0 -x {3.0 21.0 -1 ------- null} r -t 39.9264 -s 1 -d 3 -p ack -e 40 -c 0 -i 843 -a 0 -x {21.0 3.0 412 ------- null} + -t 39.9264 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {3.0 21.0 432 ------- null} - -t 39.9264 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {3.0 21.0 432 ------- null} h -t 39.9264 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {3.0 21.0 -1 ------- null} r -t 39.928 -s 1 -d 3 -p ack -e 40 -c 0 -i 844 -a 0 -x {21.0 3.0 413 ------- null} + -t 39.928 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 864 -a 0 -x {3.0 21.0 433 ------- null} - -t 39.928 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 864 -a 0 -x {3.0 21.0 433 ------- null} h -t 39.928 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 864 -a 0 -x {3.0 21.0 -1 ------- null} r -t 39.9296 -s 1 -d 3 -p ack -e 40 -c 0 -i 845 -a 0 -x {21.0 3.0 414 ------- null} + -t 39.9296 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {3.0 21.0 434 ------- null} - -t 39.9296 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {3.0 21.0 434 ------- null} h -t 39.9296 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {3.0 21.0 -1 ------- null} r -t 39.9312 -s 1 -d 3 -p ack -e 40 -c 0 -i 846 -a 0 -x {21.0 3.0 415 ------- null} + -t 39.9312 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 866 -a 0 -x {3.0 21.0 435 ------- null} - -t 39.9312 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 866 -a 0 -x {3.0 21.0 435 ------- null} h -t 39.9312 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 866 -a 0 -x {3.0 21.0 -1 ------- null} r -t 39.9328 -s 1 -d 3 -p ack -e 40 -c 0 -i 847 -a 0 -x {21.0 3.0 416 ------- null} + -t 39.9328 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {3.0 21.0 436 ------- null} - -t 39.9328 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {3.0 21.0 436 ------- null} h -t 39.9328 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {3.0 21.0 -1 ------- null} r -t 39.9344 -s 1 -d 3 -p ack -e 40 -c 0 -i 848 -a 0 -x {21.0 3.0 417 ------- null} + -t 39.9344 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 868 -a 0 -x {3.0 21.0 437 ------- null} - -t 39.9344 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 868 -a 0 -x {3.0 21.0 437 ------- null} h -t 39.9344 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 868 -a 0 -x {3.0 21.0 -1 ------- null} r -t 39.936 -s 1 -d 3 -p ack -e 40 -c 0 -i 849 -a 0 -x {21.0 3.0 418 ------- null} + -t 39.936 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {3.0 21.0 438 ------- null} - -t 39.936 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {3.0 21.0 438 ------- null} h -t 39.936 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {3.0 21.0 -1 ------- null} r -t 39.9376 -s 1 -d 3 -p ack -e 40 -c 0 -i 850 -a 0 -x {21.0 3.0 419 ------- null} + -t 39.9376 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 870 -a 0 -x {3.0 21.0 439 ------- null} - -t 39.9376 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 870 -a 0 -x {3.0 21.0 439 ------- null} h -t 39.9376 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 870 -a 0 -x {3.0 21.0 -1 ------- null} r -t 39.9392 -s 1 -d 3 -p ack -e 40 -c 0 -i 851 -a 0 -x {21.0 3.0 420 ------- null} + -t 39.9392 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {3.0 21.0 440 ------- null} - -t 39.9392 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {3.0 21.0 440 ------- null} h -t 39.9392 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {3.0 21.0 -1 ------- null} r -t 39.9408 -s 1 -d 3 -p ack -e 40 -c 0 -i 852 -a 0 -x {21.0 3.0 421 ------- null} + -t 39.9408 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 872 -a 0 -x {3.0 21.0 441 ------- null} - -t 39.9408 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 872 -a 0 -x {3.0 21.0 441 ------- null} h -t 39.9408 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 872 -a 0 -x {3.0 21.0 -1 ------- null} r -t 39.9424 -s 1 -d 3 -p ack -e 40 -c 0 -i 853 -a 0 -x {21.0 3.0 422 ------- null} + -t 39.9424 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {3.0 21.0 442 ------- null} - -t 39.9424 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {3.0 21.0 442 ------- null} h -t 39.9424 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {3.0 21.0 -1 ------- null} r -t 39.944 -s 1 -d 3 -p ack -e 40 -c 0 -i 854 -a 0 -x {21.0 3.0 423 ------- null} + -t 39.944 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 874 -a 0 -x {3.0 21.0 443 ------- null} - -t 39.944 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 874 -a 0 -x {3.0 21.0 443 ------- null} h -t 39.944 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 874 -a 0 -x {3.0 21.0 -1 ------- null} r -t 39.9456 -s 1 -d 3 -p ack -e 40 -c 0 -i 855 -a 0 -x {21.0 3.0 424 ------- null} + -t 39.9456 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {3.0 21.0 444 ------- null} - -t 39.9456 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {3.0 21.0 444 ------- null} h -t 39.9456 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {3.0 21.0 -1 ------- null} r -t 39.9472 -s 1 -d 3 -p ack -e 40 -c 0 -i 856 -a 0 -x {21.0 3.0 425 ------- null} + -t 39.9472 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 876 -a 0 -x {3.0 21.0 445 ------- null} - -t 39.9472 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 876 -a 0 -x {3.0 21.0 445 ------- null} h -t 39.9472 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 876 -a 0 -x {3.0 21.0 -1 ------- null} r -t 39.9488 -s 1 -d 3 -p ack -e 40 -c 0 -i 857 -a 0 -x {21.0 3.0 426 ------- null} + -t 39.9488 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {3.0 21.0 446 ------- null} - -t 39.9488 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {3.0 21.0 446 ------- null} h -t 39.9488 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {3.0 21.0 -1 ------- null} r -t 39.9504 -s 1 -d 3 -p ack -e 40 -c 0 -i 858 -a 0 -x {21.0 3.0 427 ------- null} + -t 39.9504 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 878 -a 0 -x {3.0 21.0 447 ------- null} - -t 39.9504 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 878 -a 0 -x {3.0 21.0 447 ------- null} h -t 39.9504 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 878 -a 0 -x {3.0 21.0 -1 ------- null} r -t 39.952 -s 1 -d 3 -p ack -e 40 -c 0 -i 859 -a 0 -x {21.0 3.0 428 ------- null} + -t 39.952 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {3.0 21.0 448 ------- null} - -t 39.952 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {3.0 21.0 448 ------- null} h -t 39.952 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {3.0 21.0 -1 ------- null} r -t 39.9536 -s 1 -d 3 -p ack -e 40 -c 0 -i 860 -a 0 -x {21.0 3.0 429 ------- null} + -t 39.9536 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 880 -a 0 -x {3.0 21.0 449 ------- null} - -t 39.9536 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 880 -a 0 -x {3.0 21.0 449 ------- null} h -t 39.9536 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 880 -a 0 -x {3.0 21.0 -1 ------- null} r -t 39.9552 -s 1 -d 3 -p ack -e 40 -c 0 -i 861 -a 0 -x {21.0 3.0 430 ------- null} + -t 39.9552 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {3.0 21.0 450 ------- null} - -t 39.9552 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {3.0 21.0 450 ------- null} h -t 39.9552 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.0664 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 862 -a 0 -x {3.0 21.0 431 ------- null} + -t 40.0664 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 862 -a 0 -x {3.0 21.0 431 ------- null} - -t 40.0664 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 862 -a 0 -x {3.0 21.0 431 ------- null} h -t 40.0664 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 862 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.068 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {3.0 21.0 432 ------- null} + -t 40.068 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {3.0 21.0 432 ------- null} - -t 40.068 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {3.0 21.0 432 ------- null} h -t 40.068 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.0696 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 864 -a 0 -x {3.0 21.0 433 ------- null} + -t 40.0696 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 864 -a 0 -x {3.0 21.0 433 ------- null} - -t 40.0696 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 864 -a 0 -x {3.0 21.0 433 ------- null} h -t 40.0696 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 864 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.0712 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {3.0 21.0 434 ------- null} + -t 40.0712 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {3.0 21.0 434 ------- null} - -t 40.0712 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {3.0 21.0 434 ------- null} h -t 40.0712 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.0728 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 866 -a 0 -x {3.0 21.0 435 ------- null} + -t 40.0728 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 866 -a 0 -x {3.0 21.0 435 ------- null} - -t 40.0728 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 866 -a 0 -x {3.0 21.0 435 ------- null} h -t 40.0728 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 866 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.0744 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {3.0 21.0 436 ------- null} + -t 40.0744 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {3.0 21.0 436 ------- null} - -t 40.0744 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {3.0 21.0 436 ------- null} h -t 40.0744 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.076 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 868 -a 0 -x {3.0 21.0 437 ------- null} + -t 40.076 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 868 -a 0 -x {3.0 21.0 437 ------- null} - -t 40.076 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 868 -a 0 -x {3.0 21.0 437 ------- null} h -t 40.076 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 868 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.0776 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {3.0 21.0 438 ------- null} + -t 40.0776 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {3.0 21.0 438 ------- null} - -t 40.0776 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {3.0 21.0 438 ------- null} h -t 40.0776 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.0792 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 870 -a 0 -x {3.0 21.0 439 ------- null} + -t 40.0792 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 870 -a 0 -x {3.0 21.0 439 ------- null} - -t 40.0792 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 870 -a 0 -x {3.0 21.0 439 ------- null} h -t 40.0792 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 870 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.0808 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {3.0 21.0 440 ------- null} + -t 40.0808 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {3.0 21.0 440 ------- null} - -t 40.0808 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {3.0 21.0 440 ------- null} h -t 40.0808 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.0824 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 872 -a 0 -x {3.0 21.0 441 ------- null} + -t 40.0824 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 872 -a 0 -x {3.0 21.0 441 ------- null} - -t 40.0824 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 872 -a 0 -x {3.0 21.0 441 ------- null} h -t 40.0824 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 872 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.084 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {3.0 21.0 442 ------- null} + -t 40.084 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {3.0 21.0 442 ------- null} - -t 40.084 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {3.0 21.0 442 ------- null} h -t 40.084 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.0856 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 874 -a 0 -x {3.0 21.0 443 ------- null} + -t 40.0856 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 874 -a 0 -x {3.0 21.0 443 ------- null} - -t 40.0856 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 874 -a 0 -x {3.0 21.0 443 ------- null} h -t 40.0856 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 874 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.0872 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {3.0 21.0 444 ------- null} + -t 40.0872 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {3.0 21.0 444 ------- null} - -t 40.0872 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {3.0 21.0 444 ------- null} h -t 40.0872 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.0888 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 876 -a 0 -x {3.0 21.0 445 ------- null} + -t 40.0888 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 876 -a 0 -x {3.0 21.0 445 ------- null} - -t 40.0888 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 876 -a 0 -x {3.0 21.0 445 ------- null} h -t 40.0888 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 876 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.0904 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {3.0 21.0 446 ------- null} + -t 40.0904 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {3.0 21.0 446 ------- null} - -t 40.0904 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {3.0 21.0 446 ------- null} h -t 40.0904 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.092 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 878 -a 0 -x {3.0 21.0 447 ------- null} + -t 40.092 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 878 -a 0 -x {3.0 21.0 447 ------- null} - -t 40.092 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 878 -a 0 -x {3.0 21.0 447 ------- null} h -t 40.092 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 878 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.0936 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {3.0 21.0 448 ------- null} + -t 40.0936 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {3.0 21.0 448 ------- null} - -t 40.0936 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {3.0 21.0 448 ------- null} h -t 40.0936 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.0952 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 880 -a 0 -x {3.0 21.0 449 ------- null} + -t 40.0952 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 880 -a 0 -x {3.0 21.0 449 ------- null} - -t 40.0952 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 880 -a 0 -x {3.0 21.0 449 ------- null} h -t 40.0952 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 880 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.0968 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {3.0 21.0 450 ------- null} + -t 40.0968 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {3.0 21.0 450 ------- null} - -t 40.0968 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {3.0 21.0 450 ------- null} h -t 40.0968 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.368 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 862 -a 0 -x {3.0 21.0 431 ------- null} + -t 40.368 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 862 -a 0 -x {3.0 21.0 431 ------- null} - -t 40.368 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 862 -a 0 -x {3.0 21.0 431 ------- null} h -t 40.368 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 862 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.3696 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {3.0 21.0 432 ------- null} + -t 40.3696 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {3.0 21.0 432 ------- null} - -t 40.3696 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {3.0 21.0 432 ------- null} h -t 40.3696 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.3712 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 864 -a 0 -x {3.0 21.0 433 ------- null} + -t 40.3712 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 864 -a 0 -x {3.0 21.0 433 ------- null} - -t 40.3712 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 864 -a 0 -x {3.0 21.0 433 ------- null} h -t 40.3712 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 864 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.3728 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {3.0 21.0 434 ------- null} + -t 40.3728 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {3.0 21.0 434 ------- null} - -t 40.3728 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {3.0 21.0 434 ------- null} h -t 40.3728 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.3744 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 866 -a 0 -x {3.0 21.0 435 ------- null} + -t 40.3744 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 866 -a 0 -x {3.0 21.0 435 ------- null} - -t 40.3744 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 866 -a 0 -x {3.0 21.0 435 ------- null} h -t 40.3744 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 866 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.376 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {3.0 21.0 436 ------- null} + -t 40.376 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {3.0 21.0 436 ------- null} - -t 40.376 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {3.0 21.0 436 ------- null} h -t 40.376 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.3776 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 868 -a 0 -x {3.0 21.0 437 ------- null} + -t 40.3776 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 868 -a 0 -x {3.0 21.0 437 ------- null} - -t 40.3776 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 868 -a 0 -x {3.0 21.0 437 ------- null} h -t 40.3776 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 868 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.3792 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {3.0 21.0 438 ------- null} + -t 40.3792 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {3.0 21.0 438 ------- null} - -t 40.3792 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {3.0 21.0 438 ------- null} h -t 40.3792 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.3808 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 870 -a 0 -x {3.0 21.0 439 ------- null} + -t 40.3808 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 870 -a 0 -x {3.0 21.0 439 ------- null} - -t 40.3808 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 870 -a 0 -x {3.0 21.0 439 ------- null} h -t 40.3808 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 870 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.3824 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {3.0 21.0 440 ------- null} + -t 40.3824 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {3.0 21.0 440 ------- null} - -t 40.3824 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {3.0 21.0 440 ------- null} h -t 40.3824 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.384 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 872 -a 0 -x {3.0 21.0 441 ------- null} + -t 40.384 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 872 -a 0 -x {3.0 21.0 441 ------- null} - -t 40.384 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 872 -a 0 -x {3.0 21.0 441 ------- null} h -t 40.384 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 872 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.3856 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {3.0 21.0 442 ------- null} + -t 40.3856 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {3.0 21.0 442 ------- null} - -t 40.3856 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {3.0 21.0 442 ------- null} h -t 40.3856 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.3872 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 874 -a 0 -x {3.0 21.0 443 ------- null} + -t 40.3872 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 874 -a 0 -x {3.0 21.0 443 ------- null} - -t 40.3872 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 874 -a 0 -x {3.0 21.0 443 ------- null} h -t 40.3872 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 874 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.3888 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {3.0 21.0 444 ------- null} + -t 40.3888 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {3.0 21.0 444 ------- null} - -t 40.3888 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {3.0 21.0 444 ------- null} h -t 40.3888 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.3904 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 876 -a 0 -x {3.0 21.0 445 ------- null} + -t 40.3904 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 876 -a 0 -x {3.0 21.0 445 ------- null} - -t 40.3904 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 876 -a 0 -x {3.0 21.0 445 ------- null} h -t 40.3904 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 876 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.392 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {3.0 21.0 446 ------- null} + -t 40.392 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {3.0 21.0 446 ------- null} - -t 40.392 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {3.0 21.0 446 ------- null} h -t 40.392 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.3936 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 878 -a 0 -x {3.0 21.0 447 ------- null} + -t 40.3936 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 878 -a 0 -x {3.0 21.0 447 ------- null} - -t 40.3936 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 878 -a 0 -x {3.0 21.0 447 ------- null} h -t 40.3936 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 878 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.3952 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {3.0 21.0 448 ------- null} + -t 40.3952 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {3.0 21.0 448 ------- null} - -t 40.3952 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {3.0 21.0 448 ------- null} h -t 40.3952 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.3968 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 880 -a 0 -x {3.0 21.0 449 ------- null} + -t 40.3968 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 880 -a 0 -x {3.0 21.0 449 ------- null} - -t 40.3968 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 880 -a 0 -x {3.0 21.0 449 ------- null} h -t 40.3968 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 880 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.3984 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {3.0 21.0 450 ------- null} + -t 40.3984 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {3.0 21.0 450 ------- null} - -t 40.3984 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {3.0 21.0 450 ------- null} h -t 40.3984 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.7196 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 862 -a 0 -x {3.0 21.0 431 ------- null} + -t 40.7196 -s 21 -d 28 -p ack -e 40 -c 0 -i 882 -a 0 -x {21.0 3.0 431 ------- null} - -t 40.7196 -s 21 -d 28 -p ack -e 40 -c 0 -i 882 -a 0 -x {21.0 3.0 431 ------- null} h -t 40.7196 -s 21 -d 28 -p ack -e 40 -c 0 -i 882 -a 0 -x {21.0 3.0 -1 ------- null} r -t 40.7212 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {3.0 21.0 432 ------- null} + -t 40.7212 -s 21 -d 28 -p ack -e 40 -c 0 -i 883 -a 0 -x {21.0 3.0 432 ------- null} - -t 40.7212 -s 21 -d 28 -p ack -e 40 -c 0 -i 883 -a 0 -x {21.0 3.0 432 ------- null} h -t 40.7212 -s 21 -d 28 -p ack -e 40 -c 0 -i 883 -a 0 -x {21.0 3.0 -1 ------- null} r -t 40.7228 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 864 -a 0 -x {3.0 21.0 433 ------- null} + -t 40.7228 -s 21 -d 28 -p ack -e 40 -c 0 -i 884 -a 0 -x {21.0 3.0 433 ------- null} - -t 40.7228 -s 21 -d 28 -p ack -e 40 -c 0 -i 884 -a 0 -x {21.0 3.0 433 ------- null} h -t 40.7228 -s 21 -d 28 -p ack -e 40 -c 0 -i 884 -a 0 -x {21.0 3.0 -1 ------- null} r -t 40.7244 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {3.0 21.0 434 ------- null} + -t 40.7244 -s 21 -d 28 -p ack -e 40 -c 0 -i 885 -a 0 -x {21.0 3.0 434 ------- null} - -t 40.7244 -s 21 -d 28 -p ack -e 40 -c 0 -i 885 -a 0 -x {21.0 3.0 434 ------- null} h -t 40.7244 -s 21 -d 28 -p ack -e 40 -c 0 -i 885 -a 0 -x {21.0 3.0 -1 ------- null} r -t 40.726 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 866 -a 0 -x {3.0 21.0 435 ------- null} + -t 40.726 -s 21 -d 28 -p ack -e 40 -c 0 -i 886 -a 0 -x {21.0 3.0 435 ------- null} - -t 40.726 -s 21 -d 28 -p ack -e 40 -c 0 -i 886 -a 0 -x {21.0 3.0 435 ------- null} h -t 40.726 -s 21 -d 28 -p ack -e 40 -c 0 -i 886 -a 0 -x {21.0 3.0 -1 ------- null} r -t 40.7276 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {3.0 21.0 436 ------- null} + -t 40.7276 -s 21 -d 28 -p ack -e 40 -c 0 -i 887 -a 0 -x {21.0 3.0 436 ------- null} - -t 40.7276 -s 21 -d 28 -p ack -e 40 -c 0 -i 887 -a 0 -x {21.0 3.0 436 ------- null} h -t 40.7276 -s 21 -d 28 -p ack -e 40 -c 0 -i 887 -a 0 -x {21.0 3.0 -1 ------- null} r -t 40.7292 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 868 -a 0 -x {3.0 21.0 437 ------- null} + -t 40.7292 -s 21 -d 28 -p ack -e 40 -c 0 -i 888 -a 0 -x {21.0 3.0 437 ------- null} - -t 40.7292 -s 21 -d 28 -p ack -e 40 -c 0 -i 888 -a 0 -x {21.0 3.0 437 ------- null} h -t 40.7292 -s 21 -d 28 -p ack -e 40 -c 0 -i 888 -a 0 -x {21.0 3.0 -1 ------- null} r -t 40.7308 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {3.0 21.0 438 ------- null} + -t 40.7308 -s 21 -d 28 -p ack -e 40 -c 0 -i 889 -a 0 -x {21.0 3.0 438 ------- null} - -t 40.7308 -s 21 -d 28 -p ack -e 40 -c 0 -i 889 -a 0 -x {21.0 3.0 438 ------- null} h -t 40.7308 -s 21 -d 28 -p ack -e 40 -c 0 -i 889 -a 0 -x {21.0 3.0 -1 ------- null} r -t 40.7324 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 870 -a 0 -x {3.0 21.0 439 ------- null} + -t 40.7324 -s 21 -d 28 -p ack -e 40 -c 0 -i 890 -a 0 -x {21.0 3.0 439 ------- null} - -t 40.7324 -s 21 -d 28 -p ack -e 40 -c 0 -i 890 -a 0 -x {21.0 3.0 439 ------- null} h -t 40.7324 -s 21 -d 28 -p ack -e 40 -c 0 -i 890 -a 0 -x {21.0 3.0 -1 ------- null} r -t 40.734 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {3.0 21.0 440 ------- null} + -t 40.734 -s 21 -d 28 -p ack -e 40 -c 0 -i 891 -a 0 -x {21.0 3.0 440 ------- null} - -t 40.734 -s 21 -d 28 -p ack -e 40 -c 0 -i 891 -a 0 -x {21.0 3.0 440 ------- null} h -t 40.734 -s 21 -d 28 -p ack -e 40 -c 0 -i 891 -a 0 -x {21.0 3.0 -1 ------- null} r -t 40.7356 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 872 -a 0 -x {3.0 21.0 441 ------- null} + -t 40.7356 -s 21 -d 28 -p ack -e 40 -c 0 -i 892 -a 0 -x {21.0 3.0 441 ------- null} - -t 40.7356 -s 21 -d 28 -p ack -e 40 -c 0 -i 892 -a 0 -x {21.0 3.0 441 ------- null} h -t 40.7356 -s 21 -d 28 -p ack -e 40 -c 0 -i 892 -a 0 -x {21.0 3.0 -1 ------- null} r -t 40.7372 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {3.0 21.0 442 ------- null} + -t 40.7372 -s 21 -d 28 -p ack -e 40 -c 0 -i 893 -a 0 -x {21.0 3.0 442 ------- null} - -t 40.7372 -s 21 -d 28 -p ack -e 40 -c 0 -i 893 -a 0 -x {21.0 3.0 442 ------- null} h -t 40.7372 -s 21 -d 28 -p ack -e 40 -c 0 -i 893 -a 0 -x {21.0 3.0 -1 ------- null} r -t 40.7388 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 874 -a 0 -x {3.0 21.0 443 ------- null} + -t 40.7388 -s 21 -d 28 -p ack -e 40 -c 0 -i 894 -a 0 -x {21.0 3.0 443 ------- null} - -t 40.7388 -s 21 -d 28 -p ack -e 40 -c 0 -i 894 -a 0 -x {21.0 3.0 443 ------- null} h -t 40.7388 -s 21 -d 28 -p ack -e 40 -c 0 -i 894 -a 0 -x {21.0 3.0 -1 ------- null} r -t 40.7404 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {3.0 21.0 444 ------- null} + -t 40.7404 -s 21 -d 28 -p ack -e 40 -c 0 -i 895 -a 0 -x {21.0 3.0 444 ------- null} - -t 40.7404 -s 21 -d 28 -p ack -e 40 -c 0 -i 895 -a 0 -x {21.0 3.0 444 ------- null} h -t 40.7404 -s 21 -d 28 -p ack -e 40 -c 0 -i 895 -a 0 -x {21.0 3.0 -1 ------- null} r -t 40.742 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 876 -a 0 -x {3.0 21.0 445 ------- null} + -t 40.742 -s 21 -d 28 -p ack -e 40 -c 0 -i 896 -a 0 -x {21.0 3.0 445 ------- null} - -t 40.742 -s 21 -d 28 -p ack -e 40 -c 0 -i 896 -a 0 -x {21.0 3.0 445 ------- null} h -t 40.742 -s 21 -d 28 -p ack -e 40 -c 0 -i 896 -a 0 -x {21.0 3.0 -1 ------- null} r -t 40.7436 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {3.0 21.0 446 ------- null} + -t 40.7436 -s 21 -d 28 -p ack -e 40 -c 0 -i 897 -a 0 -x {21.0 3.0 446 ------- null} - -t 40.7436 -s 21 -d 28 -p ack -e 40 -c 0 -i 897 -a 0 -x {21.0 3.0 446 ------- null} h -t 40.7436 -s 21 -d 28 -p ack -e 40 -c 0 -i 897 -a 0 -x {21.0 3.0 -1 ------- null} r -t 40.7452 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 878 -a 0 -x {3.0 21.0 447 ------- null} + -t 40.7452 -s 21 -d 28 -p ack -e 40 -c 0 -i 898 -a 0 -x {21.0 3.0 447 ------- null} - -t 40.7452 -s 21 -d 28 -p ack -e 40 -c 0 -i 898 -a 0 -x {21.0 3.0 447 ------- null} h -t 40.7452 -s 21 -d 28 -p ack -e 40 -c 0 -i 898 -a 0 -x {21.0 3.0 -1 ------- null} r -t 40.7468 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {3.0 21.0 448 ------- null} + -t 40.7468 -s 21 -d 28 -p ack -e 40 -c 0 -i 899 -a 0 -x {21.0 3.0 448 ------- null} - -t 40.7468 -s 21 -d 28 -p ack -e 40 -c 0 -i 899 -a 0 -x {21.0 3.0 448 ------- null} h -t 40.7468 -s 21 -d 28 -p ack -e 40 -c 0 -i 899 -a 0 -x {21.0 3.0 -1 ------- null} r -t 40.7484 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 880 -a 0 -x {3.0 21.0 449 ------- null} + -t 40.7484 -s 21 -d 28 -p ack -e 40 -c 0 -i 900 -a 0 -x {21.0 3.0 449 ------- null} - -t 40.7484 -s 21 -d 28 -p ack -e 40 -c 0 -i 900 -a 0 -x {21.0 3.0 449 ------- null} h -t 40.7484 -s 21 -d 28 -p ack -e 40 -c 0 -i 900 -a 0 -x {21.0 3.0 -1 ------- null} r -t 40.75 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {3.0 21.0 450 ------- null} + -t 40.75 -s 21 -d 28 -p ack -e 40 -c 0 -i 901 -a 0 -x {21.0 3.0 450 ------- null} - -t 40.75 -s 21 -d 28 -p ack -e 40 -c 0 -i 901 -a 0 -x {21.0 3.0 450 ------- null} h -t 40.75 -s 21 -d 28 -p ack -e 40 -c 0 -i 901 -a 0 -x {21.0 3.0 -1 ------- null} r -t 41.0697 -s 21 -d 28 -p ack -e 40 -c 0 -i 882 -a 0 -x {21.0 3.0 431 ------- null} + -t 41.0697 -s 28 -d 1 -p ack -e 40 -c 0 -i 882 -a 0 -x {21.0 3.0 431 ------- null} - -t 41.0697 -s 28 -d 1 -p ack -e 40 -c 0 -i 882 -a 0 -x {21.0 3.0 431 ------- null} h -t 41.0697 -s 28 -d 1 -p ack -e 40 -c 0 -i 882 -a 0 -x {21.0 3.0 -1 ------- null} r -t 41.0713 -s 21 -d 28 -p ack -e 40 -c 0 -i 883 -a 0 -x {21.0 3.0 432 ------- null} + -t 41.0713 -s 28 -d 1 -p ack -e 40 -c 0 -i 883 -a 0 -x {21.0 3.0 432 ------- null} - -t 41.0713 -s 28 -d 1 -p ack -e 40 -c 0 -i 883 -a 0 -x {21.0 3.0 432 ------- null} h -t 41.0713 -s 28 -d 1 -p ack -e 40 -c 0 -i 883 -a 0 -x {21.0 3.0 -1 ------- null} r -t 41.0729 -s 21 -d 28 -p ack -e 40 -c 0 -i 884 -a 0 -x {21.0 3.0 433 ------- null} + -t 41.0729 -s 28 -d 1 -p ack -e 40 -c 0 -i 884 -a 0 -x {21.0 3.0 433 ------- null} - -t 41.0729 -s 28 -d 1 -p ack -e 40 -c 0 -i 884 -a 0 -x {21.0 3.0 433 ------- null} h -t 41.0729 -s 28 -d 1 -p ack -e 40 -c 0 -i 884 -a 0 -x {21.0 3.0 -1 ------- null} r -t 41.0745 -s 21 -d 28 -p ack -e 40 -c 0 -i 885 -a 0 -x {21.0 3.0 434 ------- null} + -t 41.0745 -s 28 -d 1 -p ack -e 40 -c 0 -i 885 -a 0 -x {21.0 3.0 434 ------- null} - -t 41.0745 -s 28 -d 1 -p ack -e 40 -c 0 -i 885 -a 0 -x {21.0 3.0 434 ------- null} h -t 41.0745 -s 28 -d 1 -p ack -e 40 -c 0 -i 885 -a 0 -x {21.0 3.0 -1 ------- null} r -t 41.0761 -s 21 -d 28 -p ack -e 40 -c 0 -i 886 -a 0 -x {21.0 3.0 435 ------- null} + -t 41.0761 -s 28 -d 1 -p ack -e 40 -c 0 -i 886 -a 0 -x {21.0 3.0 435 ------- null} - -t 41.0761 -s 28 -d 1 -p ack -e 40 -c 0 -i 886 -a 0 -x {21.0 3.0 435 ------- null} h -t 41.0761 -s 28 -d 1 -p ack -e 40 -c 0 -i 886 -a 0 -x {21.0 3.0 -1 ------- null} r -t 41.0777 -s 21 -d 28 -p ack -e 40 -c 0 -i 887 -a 0 -x {21.0 3.0 436 ------- null} + -t 41.0777 -s 28 -d 1 -p ack -e 40 -c 0 -i 887 -a 0 -x {21.0 3.0 436 ------- null} - -t 41.0777 -s 28 -d 1 -p ack -e 40 -c 0 -i 887 -a 0 -x {21.0 3.0 436 ------- null} h -t 41.0777 -s 28 -d 1 -p ack -e 40 -c 0 -i 887 -a 0 -x {21.0 3.0 -1 ------- null} r -t 41.0793 -s 21 -d 28 -p ack -e 40 -c 0 -i 888 -a 0 -x {21.0 3.0 437 ------- null} + -t 41.0793 -s 28 -d 1 -p ack -e 40 -c 0 -i 888 -a 0 -x {21.0 3.0 437 ------- null} - -t 41.0793 -s 28 -d 1 -p ack -e 40 -c 0 -i 888 -a 0 -x {21.0 3.0 437 ------- null} h -t 41.0793 -s 28 -d 1 -p ack -e 40 -c 0 -i 888 -a 0 -x {21.0 3.0 -1 ------- null} r -t 41.0809 -s 21 -d 28 -p ack -e 40 -c 0 -i 889 -a 0 -x {21.0 3.0 438 ------- null} + -t 41.0809 -s 28 -d 1 -p ack -e 40 -c 0 -i 889 -a 0 -x {21.0 3.0 438 ------- null} - -t 41.0809 -s 28 -d 1 -p ack -e 40 -c 0 -i 889 -a 0 -x {21.0 3.0 438 ------- null} h -t 41.0809 -s 28 -d 1 -p ack -e 40 -c 0 -i 889 -a 0 -x {21.0 3.0 -1 ------- null} r -t 41.0825 -s 21 -d 28 -p ack -e 40 -c 0 -i 890 -a 0 -x {21.0 3.0 439 ------- null} + -t 41.0825 -s 28 -d 1 -p ack -e 40 -c 0 -i 890 -a 0 -x {21.0 3.0 439 ------- null} - -t 41.0825 -s 28 -d 1 -p ack -e 40 -c 0 -i 890 -a 0 -x {21.0 3.0 439 ------- null} h -t 41.0825 -s 28 -d 1 -p ack -e 40 -c 0 -i 890 -a 0 -x {21.0 3.0 -1 ------- null} r -t 41.0841 -s 21 -d 28 -p ack -e 40 -c 0 -i 891 -a 0 -x {21.0 3.0 440 ------- null} + -t 41.0841 -s 28 -d 1 -p ack -e 40 -c 0 -i 891 -a 0 -x {21.0 3.0 440 ------- null} - -t 41.0841 -s 28 -d 1 -p ack -e 40 -c 0 -i 891 -a 0 -x {21.0 3.0 440 ------- null} h -t 41.0841 -s 28 -d 1 -p ack -e 40 -c 0 -i 891 -a 0 -x {21.0 3.0 -1 ------- null} r -t 41.0857 -s 21 -d 28 -p ack -e 40 -c 0 -i 892 -a 0 -x {21.0 3.0 441 ------- null} + -t 41.0857 -s 28 -d 1 -p ack -e 40 -c 0 -i 892 -a 0 -x {21.0 3.0 441 ------- null} - -t 41.0857 -s 28 -d 1 -p ack -e 40 -c 0 -i 892 -a 0 -x {21.0 3.0 441 ------- null} h -t 41.0857 -s 28 -d 1 -p ack -e 40 -c 0 -i 892 -a 0 -x {21.0 3.0 -1 ------- null} r -t 41.0873 -s 21 -d 28 -p ack -e 40 -c 0 -i 893 -a 0 -x {21.0 3.0 442 ------- null} + -t 41.0873 -s 28 -d 1 -p ack -e 40 -c 0 -i 893 -a 0 -x {21.0 3.0 442 ------- null} - -t 41.0873 -s 28 -d 1 -p ack -e 40 -c 0 -i 893 -a 0 -x {21.0 3.0 442 ------- null} h -t 41.0873 -s 28 -d 1 -p ack -e 40 -c 0 -i 893 -a 0 -x {21.0 3.0 -1 ------- null} r -t 41.0889 -s 21 -d 28 -p ack -e 40 -c 0 -i 894 -a 0 -x {21.0 3.0 443 ------- null} + -t 41.0889 -s 28 -d 1 -p ack -e 40 -c 0 -i 894 -a 0 -x {21.0 3.0 443 ------- null} - -t 41.0889 -s 28 -d 1 -p ack -e 40 -c 0 -i 894 -a 0 -x {21.0 3.0 443 ------- null} h -t 41.0889 -s 28 -d 1 -p ack -e 40 -c 0 -i 894 -a 0 -x {21.0 3.0 -1 ------- null} r -t 41.0905 -s 21 -d 28 -p ack -e 40 -c 0 -i 895 -a 0 -x {21.0 3.0 444 ------- null} + -t 41.0905 -s 28 -d 1 -p ack -e 40 -c 0 -i 895 -a 0 -x {21.0 3.0 444 ------- null} - -t 41.0905 -s 28 -d 1 -p ack -e 40 -c 0 -i 895 -a 0 -x {21.0 3.0 444 ------- null} h -t 41.0905 -s 28 -d 1 -p ack -e 40 -c 0 -i 895 -a 0 -x {21.0 3.0 -1 ------- null} r -t 41.0921 -s 21 -d 28 -p ack -e 40 -c 0 -i 896 -a 0 -x {21.0 3.0 445 ------- null} + -t 41.0921 -s 28 -d 1 -p ack -e 40 -c 0 -i 896 -a 0 -x {21.0 3.0 445 ------- null} - -t 41.0921 -s 28 -d 1 -p ack -e 40 -c 0 -i 896 -a 0 -x {21.0 3.0 445 ------- null} h -t 41.0921 -s 28 -d 1 -p ack -e 40 -c 0 -i 896 -a 0 -x {21.0 3.0 -1 ------- null} r -t 41.0937 -s 21 -d 28 -p ack -e 40 -c 0 -i 897 -a 0 -x {21.0 3.0 446 ------- null} + -t 41.0937 -s 28 -d 1 -p ack -e 40 -c 0 -i 897 -a 0 -x {21.0 3.0 446 ------- null} - -t 41.0937 -s 28 -d 1 -p ack -e 40 -c 0 -i 897 -a 0 -x {21.0 3.0 446 ------- null} h -t 41.0937 -s 28 -d 1 -p ack -e 40 -c 0 -i 897 -a 0 -x {21.0 3.0 -1 ------- null} r -t 41.0953 -s 21 -d 28 -p ack -e 40 -c 0 -i 898 -a 0 -x {21.0 3.0 447 ------- null} + -t 41.0953 -s 28 -d 1 -p ack -e 40 -c 0 -i 898 -a 0 -x {21.0 3.0 447 ------- null} - -t 41.0953 -s 28 -d 1 -p ack -e 40 -c 0 -i 898 -a 0 -x {21.0 3.0 447 ------- null} h -t 41.0953 -s 28 -d 1 -p ack -e 40 -c 0 -i 898 -a 0 -x {21.0 3.0 -1 ------- null} r -t 41.0969 -s 21 -d 28 -p ack -e 40 -c 0 -i 899 -a 0 -x {21.0 3.0 448 ------- null} + -t 41.0969 -s 28 -d 1 -p ack -e 40 -c 0 -i 899 -a 0 -x {21.0 3.0 448 ------- null} - -t 41.0969 -s 28 -d 1 -p ack -e 40 -c 0 -i 899 -a 0 -x {21.0 3.0 448 ------- null} h -t 41.0969 -s 28 -d 1 -p ack -e 40 -c 0 -i 899 -a 0 -x {21.0 3.0 -1 ------- null} r -t 41.0985 -s 21 -d 28 -p ack -e 40 -c 0 -i 900 -a 0 -x {21.0 3.0 449 ------- null} + -t 41.0985 -s 28 -d 1 -p ack -e 40 -c 0 -i 900 -a 0 -x {21.0 3.0 449 ------- null} - -t 41.0985 -s 28 -d 1 -p ack -e 40 -c 0 -i 900 -a 0 -x {21.0 3.0 449 ------- null} h -t 41.0985 -s 28 -d 1 -p ack -e 40 -c 0 -i 900 -a 0 -x {21.0 3.0 -1 ------- null} r -t 41.1001 -s 21 -d 28 -p ack -e 40 -c 0 -i 901 -a 0 -x {21.0 3.0 450 ------- null} + -t 41.1001 -s 28 -d 1 -p ack -e 40 -c 0 -i 901 -a 0 -x {21.0 3.0 450 ------- null} - -t 41.1001 -s 28 -d 1 -p ack -e 40 -c 0 -i 901 -a 0 -x {21.0 3.0 450 ------- null} h -t 41.1001 -s 28 -d 1 -p ack -e 40 -c 0 -i 901 -a 0 -x {21.0 3.0 -1 ------- null} r -t 41.3697 -s 28 -d 1 -p ack -e 40 -c 0 -i 882 -a 0 -x {21.0 3.0 431 ------- null} + -t 41.3697 -s 1 -d 3 -p ack -e 40 -c 0 -i 882 -a 0 -x {21.0 3.0 431 ------- null} - -t 41.3697 -s 1 -d 3 -p ack -e 40 -c 0 -i 882 -a 0 -x {21.0 3.0 431 ------- null} h -t 41.3697 -s 1 -d 3 -p ack -e 40 -c 0 -i 882 -a 0 -x {21.0 3.0 -1 ------- null} r -t 41.3713 -s 28 -d 1 -p ack -e 40 -c 0 -i 883 -a 0 -x {21.0 3.0 432 ------- null} + -t 41.3713 -s 1 -d 3 -p ack -e 40 -c 0 -i 883 -a 0 -x {21.0 3.0 432 ------- null} - -t 41.3713 -s 1 -d 3 -p ack -e 40 -c 0 -i 883 -a 0 -x {21.0 3.0 432 ------- null} h -t 41.3713 -s 1 -d 3 -p ack -e 40 -c 0 -i 883 -a 0 -x {21.0 3.0 -1 ------- null} r -t 41.3729 -s 28 -d 1 -p ack -e 40 -c 0 -i 884 -a 0 -x {21.0 3.0 433 ------- null} + -t 41.3729 -s 1 -d 3 -p ack -e 40 -c 0 -i 884 -a 0 -x {21.0 3.0 433 ------- null} - -t 41.3729 -s 1 -d 3 -p ack -e 40 -c 0 -i 884 -a 0 -x {21.0 3.0 433 ------- null} h -t 41.3729 -s 1 -d 3 -p ack -e 40 -c 0 -i 884 -a 0 -x {21.0 3.0 -1 ------- null} r -t 41.3745 -s 28 -d 1 -p ack -e 40 -c 0 -i 885 -a 0 -x {21.0 3.0 434 ------- null} + -t 41.3745 -s 1 -d 3 -p ack -e 40 -c 0 -i 885 -a 0 -x {21.0 3.0 434 ------- null} - -t 41.3745 -s 1 -d 3 -p ack -e 40 -c 0 -i 885 -a 0 -x {21.0 3.0 434 ------- null} h -t 41.3745 -s 1 -d 3 -p ack -e 40 -c 0 -i 885 -a 0 -x {21.0 3.0 -1 ------- null} r -t 41.3761 -s 28 -d 1 -p ack -e 40 -c 0 -i 886 -a 0 -x {21.0 3.0 435 ------- null} + -t 41.3761 -s 1 -d 3 -p ack -e 40 -c 0 -i 886 -a 0 -x {21.0 3.0 435 ------- null} - -t 41.3761 -s 1 -d 3 -p ack -e 40 -c 0 -i 886 -a 0 -x {21.0 3.0 435 ------- null} h -t 41.3761 -s 1 -d 3 -p ack -e 40 -c 0 -i 886 -a 0 -x {21.0 3.0 -1 ------- null} r -t 41.3777 -s 28 -d 1 -p ack -e 40 -c 0 -i 887 -a 0 -x {21.0 3.0 436 ------- null} + -t 41.3777 -s 1 -d 3 -p ack -e 40 -c 0 -i 887 -a 0 -x {21.0 3.0 436 ------- null} - -t 41.3777 -s 1 -d 3 -p ack -e 40 -c 0 -i 887 -a 0 -x {21.0 3.0 436 ------- null} h -t 41.3777 -s 1 -d 3 -p ack -e 40 -c 0 -i 887 -a 0 -x {21.0 3.0 -1 ------- null} r -t 41.3793 -s 28 -d 1 -p ack -e 40 -c 0 -i 888 -a 0 -x {21.0 3.0 437 ------- null} + -t 41.3793 -s 1 -d 3 -p ack -e 40 -c 0 -i 888 -a 0 -x {21.0 3.0 437 ------- null} - -t 41.3793 -s 1 -d 3 -p ack -e 40 -c 0 -i 888 -a 0 -x {21.0 3.0 437 ------- null} h -t 41.3793 -s 1 -d 3 -p ack -e 40 -c 0 -i 888 -a 0 -x {21.0 3.0 -1 ------- null} r -t 41.3809 -s 28 -d 1 -p ack -e 40 -c 0 -i 889 -a 0 -x {21.0 3.0 438 ------- null} + -t 41.3809 -s 1 -d 3 -p ack -e 40 -c 0 -i 889 -a 0 -x {21.0 3.0 438 ------- null} - -t 41.3809 -s 1 -d 3 -p ack -e 40 -c 0 -i 889 -a 0 -x {21.0 3.0 438 ------- null} h -t 41.3809 -s 1 -d 3 -p ack -e 40 -c 0 -i 889 -a 0 -x {21.0 3.0 -1 ------- null} r -t 41.3825 -s 28 -d 1 -p ack -e 40 -c 0 -i 890 -a 0 -x {21.0 3.0 439 ------- null} + -t 41.3825 -s 1 -d 3 -p ack -e 40 -c 0 -i 890 -a 0 -x {21.0 3.0 439 ------- null} - -t 41.3825 -s 1 -d 3 -p ack -e 40 -c 0 -i 890 -a 0 -x {21.0 3.0 439 ------- null} h -t 41.3825 -s 1 -d 3 -p ack -e 40 -c 0 -i 890 -a 0 -x {21.0 3.0 -1 ------- null} r -t 41.3841 -s 28 -d 1 -p ack -e 40 -c 0 -i 891 -a 0 -x {21.0 3.0 440 ------- null} + -t 41.3841 -s 1 -d 3 -p ack -e 40 -c 0 -i 891 -a 0 -x {21.0 3.0 440 ------- null} - -t 41.3841 -s 1 -d 3 -p ack -e 40 -c 0 -i 891 -a 0 -x {21.0 3.0 440 ------- null} h -t 41.3841 -s 1 -d 3 -p ack -e 40 -c 0 -i 891 -a 0 -x {21.0 3.0 -1 ------- null} r -t 41.3857 -s 28 -d 1 -p ack -e 40 -c 0 -i 892 -a 0 -x {21.0 3.0 441 ------- null} + -t 41.3857 -s 1 -d 3 -p ack -e 40 -c 0 -i 892 -a 0 -x {21.0 3.0 441 ------- null} - -t 41.3857 -s 1 -d 3 -p ack -e 40 -c 0 -i 892 -a 0 -x {21.0 3.0 441 ------- null} h -t 41.3857 -s 1 -d 3 -p ack -e 40 -c 0 -i 892 -a 0 -x {21.0 3.0 -1 ------- null} r -t 41.3873 -s 28 -d 1 -p ack -e 40 -c 0 -i 893 -a 0 -x {21.0 3.0 442 ------- null} + -t 41.3873 -s 1 -d 3 -p ack -e 40 -c 0 -i 893 -a 0 -x {21.0 3.0 442 ------- null} - -t 41.3873 -s 1 -d 3 -p ack -e 40 -c 0 -i 893 -a 0 -x {21.0 3.0 442 ------- null} h -t 41.3873 -s 1 -d 3 -p ack -e 40 -c 0 -i 893 -a 0 -x {21.0 3.0 -1 ------- null} r -t 41.3889 -s 28 -d 1 -p ack -e 40 -c 0 -i 894 -a 0 -x {21.0 3.0 443 ------- null} + -t 41.3889 -s 1 -d 3 -p ack -e 40 -c 0 -i 894 -a 0 -x {21.0 3.0 443 ------- null} - -t 41.3889 -s 1 -d 3 -p ack -e 40 -c 0 -i 894 -a 0 -x {21.0 3.0 443 ------- null} h -t 41.3889 -s 1 -d 3 -p ack -e 40 -c 0 -i 894 -a 0 -x {21.0 3.0 -1 ------- null} r -t 41.3905 -s 28 -d 1 -p ack -e 40 -c 0 -i 895 -a 0 -x {21.0 3.0 444 ------- null} + -t 41.3905 -s 1 -d 3 -p ack -e 40 -c 0 -i 895 -a 0 -x {21.0 3.0 444 ------- null} - -t 41.3905 -s 1 -d 3 -p ack -e 40 -c 0 -i 895 -a 0 -x {21.0 3.0 444 ------- null} h -t 41.3905 -s 1 -d 3 -p ack -e 40 -c 0 -i 895 -a 0 -x {21.0 3.0 -1 ------- null} r -t 41.3921 -s 28 -d 1 -p ack -e 40 -c 0 -i 896 -a 0 -x {21.0 3.0 445 ------- null} + -t 41.3921 -s 1 -d 3 -p ack -e 40 -c 0 -i 896 -a 0 -x {21.0 3.0 445 ------- null} - -t 41.3921 -s 1 -d 3 -p ack -e 40 -c 0 -i 896 -a 0 -x {21.0 3.0 445 ------- null} h -t 41.3921 -s 1 -d 3 -p ack -e 40 -c 0 -i 896 -a 0 -x {21.0 3.0 -1 ------- null} r -t 41.3937 -s 28 -d 1 -p ack -e 40 -c 0 -i 897 -a 0 -x {21.0 3.0 446 ------- null} + -t 41.3937 -s 1 -d 3 -p ack -e 40 -c 0 -i 897 -a 0 -x {21.0 3.0 446 ------- null} - -t 41.3937 -s 1 -d 3 -p ack -e 40 -c 0 -i 897 -a 0 -x {21.0 3.0 446 ------- null} h -t 41.3937 -s 1 -d 3 -p ack -e 40 -c 0 -i 897 -a 0 -x {21.0 3.0 -1 ------- null} r -t 41.3953 -s 28 -d 1 -p ack -e 40 -c 0 -i 898 -a 0 -x {21.0 3.0 447 ------- null} + -t 41.3953 -s 1 -d 3 -p ack -e 40 -c 0 -i 898 -a 0 -x {21.0 3.0 447 ------- null} - -t 41.3953 -s 1 -d 3 -p ack -e 40 -c 0 -i 898 -a 0 -x {21.0 3.0 447 ------- null} h -t 41.3953 -s 1 -d 3 -p ack -e 40 -c 0 -i 898 -a 0 -x {21.0 3.0 -1 ------- null} r -t 41.3969 -s 28 -d 1 -p ack -e 40 -c 0 -i 899 -a 0 -x {21.0 3.0 448 ------- null} + -t 41.3969 -s 1 -d 3 -p ack -e 40 -c 0 -i 899 -a 0 -x {21.0 3.0 448 ------- null} - -t 41.3969 -s 1 -d 3 -p ack -e 40 -c 0 -i 899 -a 0 -x {21.0 3.0 448 ------- null} h -t 41.3969 -s 1 -d 3 -p ack -e 40 -c 0 -i 899 -a 0 -x {21.0 3.0 -1 ------- null} r -t 41.3985 -s 28 -d 1 -p ack -e 40 -c 0 -i 900 -a 0 -x {21.0 3.0 449 ------- null} + -t 41.3985 -s 1 -d 3 -p ack -e 40 -c 0 -i 900 -a 0 -x {21.0 3.0 449 ------- null} - -t 41.3985 -s 1 -d 3 -p ack -e 40 -c 0 -i 900 -a 0 -x {21.0 3.0 449 ------- null} h -t 41.3985 -s 1 -d 3 -p ack -e 40 -c 0 -i 900 -a 0 -x {21.0 3.0 -1 ------- null} r -t 41.4001 -s 28 -d 1 -p ack -e 40 -c 0 -i 901 -a 0 -x {21.0 3.0 450 ------- null} + -t 41.4001 -s 1 -d 3 -p ack -e 40 -c 0 -i 901 -a 0 -x {21.0 3.0 450 ------- null} - -t 41.4001 -s 1 -d 3 -p ack -e 40 -c 0 -i 901 -a 0 -x {21.0 3.0 450 ------- null} h -t 41.4001 -s 1 -d 3 -p ack -e 40 -c 0 -i 901 -a 0 -x {21.0 3.0 -1 ------- null} r -t 41.5098 -s 1 -d 3 -p ack -e 40 -c 0 -i 882 -a 0 -x {21.0 3.0 431 ------- null} + -t 41.5098 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 902 -a 0 -x {3.0 21.0 451 ------- null} - -t 41.5098 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 902 -a 0 -x {3.0 21.0 451 ------- null} h -t 41.5098 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 902 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.5114 -s 1 -d 3 -p ack -e 40 -c 0 -i 883 -a 0 -x {21.0 3.0 432 ------- null} + -t 41.5114 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {3.0 21.0 452 ------- null} - -t 41.5114 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {3.0 21.0 452 ------- null} h -t 41.5114 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.513 -s 1 -d 3 -p ack -e 40 -c 0 -i 884 -a 0 -x {21.0 3.0 433 ------- null} + -t 41.513 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 904 -a 0 -x {3.0 21.0 453 ------- null} - -t 41.513 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 904 -a 0 -x {3.0 21.0 453 ------- null} h -t 41.513 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 904 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.5146 -s 1 -d 3 -p ack -e 40 -c 0 -i 885 -a 0 -x {21.0 3.0 434 ------- null} + -t 41.5146 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {3.0 21.0 454 ------- null} - -t 41.5146 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {3.0 21.0 454 ------- null} h -t 41.5146 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.5162 -s 1 -d 3 -p ack -e 40 -c 0 -i 886 -a 0 -x {21.0 3.0 435 ------- null} + -t 41.5162 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 906 -a 0 -x {3.0 21.0 455 ------- null} - -t 41.5162 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 906 -a 0 -x {3.0 21.0 455 ------- null} h -t 41.5162 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 906 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.5178 -s 1 -d 3 -p ack -e 40 -c 0 -i 887 -a 0 -x {21.0 3.0 436 ------- null} + -t 41.5178 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {3.0 21.0 456 ------- null} - -t 41.5178 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {3.0 21.0 456 ------- null} h -t 41.5178 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.5194 -s 1 -d 3 -p ack -e 40 -c 0 -i 888 -a 0 -x {21.0 3.0 437 ------- null} + -t 41.5194 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 908 -a 0 -x {3.0 21.0 457 ------- null} - -t 41.5194 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 908 -a 0 -x {3.0 21.0 457 ------- null} h -t 41.5194 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 908 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.521 -s 1 -d 3 -p ack -e 40 -c 0 -i 889 -a 0 -x {21.0 3.0 438 ------- null} + -t 41.521 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {3.0 21.0 458 ------- null} - -t 41.521 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {3.0 21.0 458 ------- null} h -t 41.521 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.5226 -s 1 -d 3 -p ack -e 40 -c 0 -i 890 -a 0 -x {21.0 3.0 439 ------- null} + -t 41.5226 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 910 -a 0 -x {3.0 21.0 459 ------- null} - -t 41.5226 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 910 -a 0 -x {3.0 21.0 459 ------- null} h -t 41.5226 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 910 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.5242 -s 1 -d 3 -p ack -e 40 -c 0 -i 891 -a 0 -x {21.0 3.0 440 ------- null} + -t 41.5242 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {3.0 21.0 460 ------- null} - -t 41.5242 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {3.0 21.0 460 ------- null} h -t 41.5242 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.5258 -s 1 -d 3 -p ack -e 40 -c 0 -i 892 -a 0 -x {21.0 3.0 441 ------- null} + -t 41.5258 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 912 -a 0 -x {3.0 21.0 461 ------- null} - -t 41.5258 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 912 -a 0 -x {3.0 21.0 461 ------- null} h -t 41.5258 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 912 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.5274 -s 1 -d 3 -p ack -e 40 -c 0 -i 893 -a 0 -x {21.0 3.0 442 ------- null} + -t 41.5274 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {3.0 21.0 462 ------- null} - -t 41.5274 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {3.0 21.0 462 ------- null} h -t 41.5274 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.529 -s 1 -d 3 -p ack -e 40 -c 0 -i 894 -a 0 -x {21.0 3.0 443 ------- null} + -t 41.529 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 914 -a 0 -x {3.0 21.0 463 ------- null} - -t 41.529 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 914 -a 0 -x {3.0 21.0 463 ------- null} h -t 41.529 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 914 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.5306 -s 1 -d 3 -p ack -e 40 -c 0 -i 895 -a 0 -x {21.0 3.0 444 ------- null} + -t 41.5306 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {3.0 21.0 464 ------- null} - -t 41.5306 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {3.0 21.0 464 ------- null} h -t 41.5306 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.5322 -s 1 -d 3 -p ack -e 40 -c 0 -i 896 -a 0 -x {21.0 3.0 445 ------- null} + -t 41.5322 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 916 -a 0 -x {3.0 21.0 465 ------- null} - -t 41.5322 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 916 -a 0 -x {3.0 21.0 465 ------- null} h -t 41.5322 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 916 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.5338 -s 1 -d 3 -p ack -e 40 -c 0 -i 897 -a 0 -x {21.0 3.0 446 ------- null} + -t 41.5338 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {3.0 21.0 466 ------- null} - -t 41.5338 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {3.0 21.0 466 ------- null} h -t 41.5338 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.5354 -s 1 -d 3 -p ack -e 40 -c 0 -i 898 -a 0 -x {21.0 3.0 447 ------- null} + -t 41.5354 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 918 -a 0 -x {3.0 21.0 467 ------- null} - -t 41.5354 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 918 -a 0 -x {3.0 21.0 467 ------- null} h -t 41.5354 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 918 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.537 -s 1 -d 3 -p ack -e 40 -c 0 -i 899 -a 0 -x {21.0 3.0 448 ------- null} + -t 41.537 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {3.0 21.0 468 ------- null} - -t 41.537 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {3.0 21.0 468 ------- null} h -t 41.537 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.5386 -s 1 -d 3 -p ack -e 40 -c 0 -i 900 -a 0 -x {21.0 3.0 449 ------- null} + -t 41.5386 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 920 -a 0 -x {3.0 21.0 469 ------- null} - -t 41.5386 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 920 -a 0 -x {3.0 21.0 469 ------- null} h -t 41.5386 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 920 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.5402 -s 1 -d 3 -p ack -e 40 -c 0 -i 901 -a 0 -x {21.0 3.0 450 ------- null} + -t 41.5402 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {3.0 21.0 470 ------- null} - -t 41.5402 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {3.0 21.0 470 ------- null} h -t 41.5402 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.6514 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 902 -a 0 -x {3.0 21.0 451 ------- null} + -t 41.6514 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 902 -a 0 -x {3.0 21.0 451 ------- null} - -t 41.6514 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 902 -a 0 -x {3.0 21.0 451 ------- null} h -t 41.6514 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 902 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.653 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {3.0 21.0 452 ------- null} + -t 41.653 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {3.0 21.0 452 ------- null} - -t 41.653 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {3.0 21.0 452 ------- null} h -t 41.653 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.6546 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 904 -a 0 -x {3.0 21.0 453 ------- null} + -t 41.6546 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 904 -a 0 -x {3.0 21.0 453 ------- null} - -t 41.6546 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 904 -a 0 -x {3.0 21.0 453 ------- null} h -t 41.6546 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 904 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.6562 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {3.0 21.0 454 ------- null} + -t 41.6562 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {3.0 21.0 454 ------- null} - -t 41.6562 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {3.0 21.0 454 ------- null} h -t 41.6562 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.6578 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 906 -a 0 -x {3.0 21.0 455 ------- null} + -t 41.6578 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 906 -a 0 -x {3.0 21.0 455 ------- null} - -t 41.6578 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 906 -a 0 -x {3.0 21.0 455 ------- null} h -t 41.6578 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 906 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.6594 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {3.0 21.0 456 ------- null} + -t 41.6594 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {3.0 21.0 456 ------- null} - -t 41.6594 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {3.0 21.0 456 ------- null} h -t 41.6594 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.661 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 908 -a 0 -x {3.0 21.0 457 ------- null} + -t 41.661 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 908 -a 0 -x {3.0 21.0 457 ------- null} - -t 41.661 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 908 -a 0 -x {3.0 21.0 457 ------- null} h -t 41.661 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 908 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.6626 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {3.0 21.0 458 ------- null} + -t 41.6626 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {3.0 21.0 458 ------- null} - -t 41.6626 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {3.0 21.0 458 ------- null} h -t 41.6626 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.6642 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 910 -a 0 -x {3.0 21.0 459 ------- null} + -t 41.6642 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 910 -a 0 -x {3.0 21.0 459 ------- null} - -t 41.6642 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 910 -a 0 -x {3.0 21.0 459 ------- null} h -t 41.6642 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 910 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.6658 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {3.0 21.0 460 ------- null} + -t 41.6658 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {3.0 21.0 460 ------- null} - -t 41.6658 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {3.0 21.0 460 ------- null} h -t 41.6658 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.6674 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 912 -a 0 -x {3.0 21.0 461 ------- null} + -t 41.6674 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 912 -a 0 -x {3.0 21.0 461 ------- null} - -t 41.6674 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 912 -a 0 -x {3.0 21.0 461 ------- null} h -t 41.6674 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 912 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.669 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {3.0 21.0 462 ------- null} + -t 41.669 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {3.0 21.0 462 ------- null} - -t 41.669 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {3.0 21.0 462 ------- null} h -t 41.669 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.6706 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 914 -a 0 -x {3.0 21.0 463 ------- null} + -t 41.6706 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 914 -a 0 -x {3.0 21.0 463 ------- null} - -t 41.6706 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 914 -a 0 -x {3.0 21.0 463 ------- null} h -t 41.6706 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 914 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.6722 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {3.0 21.0 464 ------- null} + -t 41.6722 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {3.0 21.0 464 ------- null} - -t 41.6722 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {3.0 21.0 464 ------- null} h -t 41.6722 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.6738 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 916 -a 0 -x {3.0 21.0 465 ------- null} + -t 41.6738 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 916 -a 0 -x {3.0 21.0 465 ------- null} - -t 41.6738 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 916 -a 0 -x {3.0 21.0 465 ------- null} h -t 41.6738 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 916 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.6754 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {3.0 21.0 466 ------- null} + -t 41.6754 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {3.0 21.0 466 ------- null} - -t 41.6754 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {3.0 21.0 466 ------- null} h -t 41.6754 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.677 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 918 -a 0 -x {3.0 21.0 467 ------- null} + -t 41.677 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 918 -a 0 -x {3.0 21.0 467 ------- null} - -t 41.677 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 918 -a 0 -x {3.0 21.0 467 ------- null} h -t 41.677 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 918 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.6786 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {3.0 21.0 468 ------- null} + -t 41.6786 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {3.0 21.0 468 ------- null} - -t 41.6786 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {3.0 21.0 468 ------- null} h -t 41.6786 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.6802 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 920 -a 0 -x {3.0 21.0 469 ------- null} + -t 41.6802 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 920 -a 0 -x {3.0 21.0 469 ------- null} - -t 41.6802 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 920 -a 0 -x {3.0 21.0 469 ------- null} h -t 41.6802 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 920 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.6818 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {3.0 21.0 470 ------- null} + -t 41.6818 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {3.0 21.0 470 ------- null} - -t 41.6818 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {3.0 21.0 470 ------- null} h -t 41.6818 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.953 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 902 -a 0 -x {3.0 21.0 451 ------- null} + -t 41.953 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 902 -a 0 -x {3.0 21.0 451 ------- null} - -t 41.953 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 902 -a 0 -x {3.0 21.0 451 ------- null} h -t 41.953 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 902 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.9546 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {3.0 21.0 452 ------- null} + -t 41.9546 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {3.0 21.0 452 ------- null} - -t 41.9546 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {3.0 21.0 452 ------- null} h -t 41.9546 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.9562 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 904 -a 0 -x {3.0 21.0 453 ------- null} + -t 41.9562 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 904 -a 0 -x {3.0 21.0 453 ------- null} - -t 41.9562 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 904 -a 0 -x {3.0 21.0 453 ------- null} h -t 41.9562 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 904 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.9578 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {3.0 21.0 454 ------- null} + -t 41.9578 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {3.0 21.0 454 ------- null} - -t 41.9578 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {3.0 21.0 454 ------- null} h -t 41.9578 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.9594 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 906 -a 0 -x {3.0 21.0 455 ------- null} + -t 41.9594 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 906 -a 0 -x {3.0 21.0 455 ------- null} - -t 41.9594 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 906 -a 0 -x {3.0 21.0 455 ------- null} h -t 41.9594 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 906 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.961 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {3.0 21.0 456 ------- null} + -t 41.961 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {3.0 21.0 456 ------- null} - -t 41.961 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {3.0 21.0 456 ------- null} h -t 41.961 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.9626 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 908 -a 0 -x {3.0 21.0 457 ------- null} + -t 41.9626 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 908 -a 0 -x {3.0 21.0 457 ------- null} - -t 41.9626 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 908 -a 0 -x {3.0 21.0 457 ------- null} h -t 41.9626 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 908 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.9642 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {3.0 21.0 458 ------- null} + -t 41.9642 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {3.0 21.0 458 ------- null} - -t 41.9642 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {3.0 21.0 458 ------- null} h -t 41.9642 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.9658 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 910 -a 0 -x {3.0 21.0 459 ------- null} + -t 41.9658 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 910 -a 0 -x {3.0 21.0 459 ------- null} - -t 41.9658 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 910 -a 0 -x {3.0 21.0 459 ------- null} h -t 41.9658 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 910 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.9674 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {3.0 21.0 460 ------- null} + -t 41.9674 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {3.0 21.0 460 ------- null} - -t 41.9674 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {3.0 21.0 460 ------- null} h -t 41.9674 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.969 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 912 -a 0 -x {3.0 21.0 461 ------- null} + -t 41.969 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 912 -a 0 -x {3.0 21.0 461 ------- null} - -t 41.969 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 912 -a 0 -x {3.0 21.0 461 ------- null} h -t 41.969 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 912 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.9706 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {3.0 21.0 462 ------- null} + -t 41.9706 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {3.0 21.0 462 ------- null} - -t 41.9706 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {3.0 21.0 462 ------- null} h -t 41.9706 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.9722 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 914 -a 0 -x {3.0 21.0 463 ------- null} + -t 41.9722 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 914 -a 0 -x {3.0 21.0 463 ------- null} - -t 41.9722 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 914 -a 0 -x {3.0 21.0 463 ------- null} h -t 41.9722 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 914 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.9738 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {3.0 21.0 464 ------- null} + -t 41.9738 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {3.0 21.0 464 ------- null} - -t 41.9738 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {3.0 21.0 464 ------- null} h -t 41.9738 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.9754 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 916 -a 0 -x {3.0 21.0 465 ------- null} + -t 41.9754 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 916 -a 0 -x {3.0 21.0 465 ------- null} - -t 41.9754 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 916 -a 0 -x {3.0 21.0 465 ------- null} h -t 41.9754 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 916 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.977 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {3.0 21.0 466 ------- null} + -t 41.977 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {3.0 21.0 466 ------- null} - -t 41.977 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {3.0 21.0 466 ------- null} h -t 41.977 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.9786 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 918 -a 0 -x {3.0 21.0 467 ------- null} + -t 41.9786 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 918 -a 0 -x {3.0 21.0 467 ------- null} - -t 41.9786 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 918 -a 0 -x {3.0 21.0 467 ------- null} h -t 41.9786 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 918 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.9802 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {3.0 21.0 468 ------- null} + -t 41.9802 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {3.0 21.0 468 ------- null} - -t 41.9802 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {3.0 21.0 468 ------- null} h -t 41.9802 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.9818 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 920 -a 0 -x {3.0 21.0 469 ------- null} + -t 41.9818 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 920 -a 0 -x {3.0 21.0 469 ------- null} - -t 41.9818 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 920 -a 0 -x {3.0 21.0 469 ------- null} h -t 41.9818 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 920 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.9834 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {3.0 21.0 470 ------- null} + -t 41.9834 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {3.0 21.0 470 ------- null} - -t 41.9834 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {3.0 21.0 470 ------- null} h -t 41.9834 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {3.0 21.0 -1 ------- null} r -t 42.3046 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 902 -a 0 -x {3.0 21.0 451 ------- null} + -t 42.3046 -s 21 -d 28 -p ack -e 40 -c 0 -i 922 -a 0 -x {21.0 3.0 451 ------- null} - -t 42.3046 -s 21 -d 28 -p ack -e 40 -c 0 -i 922 -a 0 -x {21.0 3.0 451 ------- null} h -t 42.3046 -s 21 -d 28 -p ack -e 40 -c 0 -i 922 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.3062 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {3.0 21.0 452 ------- null} + -t 42.3062 -s 21 -d 28 -p ack -e 40 -c 0 -i 923 -a 0 -x {21.0 3.0 452 ------- null} - -t 42.3062 -s 21 -d 28 -p ack -e 40 -c 0 -i 923 -a 0 -x {21.0 3.0 452 ------- null} h -t 42.3062 -s 21 -d 28 -p ack -e 40 -c 0 -i 923 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.3078 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 904 -a 0 -x {3.0 21.0 453 ------- null} + -t 42.3078 -s 21 -d 28 -p ack -e 40 -c 0 -i 924 -a 0 -x {21.0 3.0 453 ------- null} - -t 42.3078 -s 21 -d 28 -p ack -e 40 -c 0 -i 924 -a 0 -x {21.0 3.0 453 ------- null} h -t 42.3078 -s 21 -d 28 -p ack -e 40 -c 0 -i 924 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.3094 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {3.0 21.0 454 ------- null} + -t 42.3094 -s 21 -d 28 -p ack -e 40 -c 0 -i 925 -a 0 -x {21.0 3.0 454 ------- null} - -t 42.3094 -s 21 -d 28 -p ack -e 40 -c 0 -i 925 -a 0 -x {21.0 3.0 454 ------- null} h -t 42.3094 -s 21 -d 28 -p ack -e 40 -c 0 -i 925 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.311 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 906 -a 0 -x {3.0 21.0 455 ------- null} + -t 42.311 -s 21 -d 28 -p ack -e 40 -c 0 -i 926 -a 0 -x {21.0 3.0 455 ------- null} - -t 42.311 -s 21 -d 28 -p ack -e 40 -c 0 -i 926 -a 0 -x {21.0 3.0 455 ------- null} h -t 42.311 -s 21 -d 28 -p ack -e 40 -c 0 -i 926 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.3126 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {3.0 21.0 456 ------- null} + -t 42.3126 -s 21 -d 28 -p ack -e 40 -c 0 -i 927 -a 0 -x {21.0 3.0 456 ------- null} - -t 42.3126 -s 21 -d 28 -p ack -e 40 -c 0 -i 927 -a 0 -x {21.0 3.0 456 ------- null} h -t 42.3126 -s 21 -d 28 -p ack -e 40 -c 0 -i 927 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.3142 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 908 -a 0 -x {3.0 21.0 457 ------- null} + -t 42.3142 -s 21 -d 28 -p ack -e 40 -c 0 -i 928 -a 0 -x {21.0 3.0 457 ------- null} - -t 42.3142 -s 21 -d 28 -p ack -e 40 -c 0 -i 928 -a 0 -x {21.0 3.0 457 ------- null} h -t 42.3142 -s 21 -d 28 -p ack -e 40 -c 0 -i 928 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.3158 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {3.0 21.0 458 ------- null} + -t 42.3158 -s 21 -d 28 -p ack -e 40 -c 0 -i 929 -a 0 -x {21.0 3.0 458 ------- null} - -t 42.3158 -s 21 -d 28 -p ack -e 40 -c 0 -i 929 -a 0 -x {21.0 3.0 458 ------- null} h -t 42.3158 -s 21 -d 28 -p ack -e 40 -c 0 -i 929 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.3174 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 910 -a 0 -x {3.0 21.0 459 ------- null} + -t 42.3174 -s 21 -d 28 -p ack -e 40 -c 0 -i 930 -a 0 -x {21.0 3.0 459 ------- null} - -t 42.3174 -s 21 -d 28 -p ack -e 40 -c 0 -i 930 -a 0 -x {21.0 3.0 459 ------- null} h -t 42.3174 -s 21 -d 28 -p ack -e 40 -c 0 -i 930 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.319 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {3.0 21.0 460 ------- null} + -t 42.319 -s 21 -d 28 -p ack -e 40 -c 0 -i 931 -a 0 -x {21.0 3.0 460 ------- null} - -t 42.319 -s 21 -d 28 -p ack -e 40 -c 0 -i 931 -a 0 -x {21.0 3.0 460 ------- null} h -t 42.319 -s 21 -d 28 -p ack -e 40 -c 0 -i 931 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.3206 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 912 -a 0 -x {3.0 21.0 461 ------- null} + -t 42.3206 -s 21 -d 28 -p ack -e 40 -c 0 -i 932 -a 0 -x {21.0 3.0 461 ------- null} - -t 42.3206 -s 21 -d 28 -p ack -e 40 -c 0 -i 932 -a 0 -x {21.0 3.0 461 ------- null} h -t 42.3206 -s 21 -d 28 -p ack -e 40 -c 0 -i 932 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.3222 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {3.0 21.0 462 ------- null} + -t 42.3222 -s 21 -d 28 -p ack -e 40 -c 0 -i 933 -a 0 -x {21.0 3.0 462 ------- null} - -t 42.3222 -s 21 -d 28 -p ack -e 40 -c 0 -i 933 -a 0 -x {21.0 3.0 462 ------- null} h -t 42.3222 -s 21 -d 28 -p ack -e 40 -c 0 -i 933 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.3238 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 914 -a 0 -x {3.0 21.0 463 ------- null} + -t 42.3238 -s 21 -d 28 -p ack -e 40 -c 0 -i 934 -a 0 -x {21.0 3.0 463 ------- null} - -t 42.3238 -s 21 -d 28 -p ack -e 40 -c 0 -i 934 -a 0 -x {21.0 3.0 463 ------- null} h -t 42.3238 -s 21 -d 28 -p ack -e 40 -c 0 -i 934 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.3254 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {3.0 21.0 464 ------- null} + -t 42.3254 -s 21 -d 28 -p ack -e 40 -c 0 -i 935 -a 0 -x {21.0 3.0 464 ------- null} - -t 42.3254 -s 21 -d 28 -p ack -e 40 -c 0 -i 935 -a 0 -x {21.0 3.0 464 ------- null} h -t 42.3254 -s 21 -d 28 -p ack -e 40 -c 0 -i 935 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.327 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 916 -a 0 -x {3.0 21.0 465 ------- null} + -t 42.327 -s 21 -d 28 -p ack -e 40 -c 0 -i 936 -a 0 -x {21.0 3.0 465 ------- null} - -t 42.327 -s 21 -d 28 -p ack -e 40 -c 0 -i 936 -a 0 -x {21.0 3.0 465 ------- null} h -t 42.327 -s 21 -d 28 -p ack -e 40 -c 0 -i 936 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.3286 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {3.0 21.0 466 ------- null} + -t 42.3286 -s 21 -d 28 -p ack -e 40 -c 0 -i 937 -a 0 -x {21.0 3.0 466 ------- null} - -t 42.3286 -s 21 -d 28 -p ack -e 40 -c 0 -i 937 -a 0 -x {21.0 3.0 466 ------- null} h -t 42.3286 -s 21 -d 28 -p ack -e 40 -c 0 -i 937 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.3302 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 918 -a 0 -x {3.0 21.0 467 ------- null} + -t 42.3302 -s 21 -d 28 -p ack -e 40 -c 0 -i 938 -a 0 -x {21.0 3.0 467 ------- null} - -t 42.3302 -s 21 -d 28 -p ack -e 40 -c 0 -i 938 -a 0 -x {21.0 3.0 467 ------- null} h -t 42.3302 -s 21 -d 28 -p ack -e 40 -c 0 -i 938 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.3318 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {3.0 21.0 468 ------- null} + -t 42.3318 -s 21 -d 28 -p ack -e 40 -c 0 -i 939 -a 0 -x {21.0 3.0 468 ------- null} - -t 42.3318 -s 21 -d 28 -p ack -e 40 -c 0 -i 939 -a 0 -x {21.0 3.0 468 ------- null} h -t 42.3318 -s 21 -d 28 -p ack -e 40 -c 0 -i 939 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.3334 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 920 -a 0 -x {3.0 21.0 469 ------- null} + -t 42.3334 -s 21 -d 28 -p ack -e 40 -c 0 -i 940 -a 0 -x {21.0 3.0 469 ------- null} - -t 42.3334 -s 21 -d 28 -p ack -e 40 -c 0 -i 940 -a 0 -x {21.0 3.0 469 ------- null} h -t 42.3334 -s 21 -d 28 -p ack -e 40 -c 0 -i 940 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.335 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {3.0 21.0 470 ------- null} + -t 42.335 -s 21 -d 28 -p ack -e 40 -c 0 -i 941 -a 0 -x {21.0 3.0 470 ------- null} - -t 42.335 -s 21 -d 28 -p ack -e 40 -c 0 -i 941 -a 0 -x {21.0 3.0 470 ------- null} h -t 42.335 -s 21 -d 28 -p ack -e 40 -c 0 -i 941 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.6547 -s 21 -d 28 -p ack -e 40 -c 0 -i 922 -a 0 -x {21.0 3.0 451 ------- null} + -t 42.6547 -s 28 -d 1 -p ack -e 40 -c 0 -i 922 -a 0 -x {21.0 3.0 451 ------- null} - -t 42.6547 -s 28 -d 1 -p ack -e 40 -c 0 -i 922 -a 0 -x {21.0 3.0 451 ------- null} h -t 42.6547 -s 28 -d 1 -p ack -e 40 -c 0 -i 922 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.6563 -s 21 -d 28 -p ack -e 40 -c 0 -i 923 -a 0 -x {21.0 3.0 452 ------- null} + -t 42.6563 -s 28 -d 1 -p ack -e 40 -c 0 -i 923 -a 0 -x {21.0 3.0 452 ------- null} - -t 42.6563 -s 28 -d 1 -p ack -e 40 -c 0 -i 923 -a 0 -x {21.0 3.0 452 ------- null} h -t 42.6563 -s 28 -d 1 -p ack -e 40 -c 0 -i 923 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.6579 -s 21 -d 28 -p ack -e 40 -c 0 -i 924 -a 0 -x {21.0 3.0 453 ------- null} + -t 42.6579 -s 28 -d 1 -p ack -e 40 -c 0 -i 924 -a 0 -x {21.0 3.0 453 ------- null} - -t 42.6579 -s 28 -d 1 -p ack -e 40 -c 0 -i 924 -a 0 -x {21.0 3.0 453 ------- null} h -t 42.6579 -s 28 -d 1 -p ack -e 40 -c 0 -i 924 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.6595 -s 21 -d 28 -p ack -e 40 -c 0 -i 925 -a 0 -x {21.0 3.0 454 ------- null} + -t 42.6595 -s 28 -d 1 -p ack -e 40 -c 0 -i 925 -a 0 -x {21.0 3.0 454 ------- null} - -t 42.6595 -s 28 -d 1 -p ack -e 40 -c 0 -i 925 -a 0 -x {21.0 3.0 454 ------- null} h -t 42.6595 -s 28 -d 1 -p ack -e 40 -c 0 -i 925 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.6611 -s 21 -d 28 -p ack -e 40 -c 0 -i 926 -a 0 -x {21.0 3.0 455 ------- null} + -t 42.6611 -s 28 -d 1 -p ack -e 40 -c 0 -i 926 -a 0 -x {21.0 3.0 455 ------- null} - -t 42.6611 -s 28 -d 1 -p ack -e 40 -c 0 -i 926 -a 0 -x {21.0 3.0 455 ------- null} h -t 42.6611 -s 28 -d 1 -p ack -e 40 -c 0 -i 926 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.6627 -s 21 -d 28 -p ack -e 40 -c 0 -i 927 -a 0 -x {21.0 3.0 456 ------- null} + -t 42.6627 -s 28 -d 1 -p ack -e 40 -c 0 -i 927 -a 0 -x {21.0 3.0 456 ------- null} - -t 42.6627 -s 28 -d 1 -p ack -e 40 -c 0 -i 927 -a 0 -x {21.0 3.0 456 ------- null} h -t 42.6627 -s 28 -d 1 -p ack -e 40 -c 0 -i 927 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.6643 -s 21 -d 28 -p ack -e 40 -c 0 -i 928 -a 0 -x {21.0 3.0 457 ------- null} + -t 42.6643 -s 28 -d 1 -p ack -e 40 -c 0 -i 928 -a 0 -x {21.0 3.0 457 ------- null} - -t 42.6643 -s 28 -d 1 -p ack -e 40 -c 0 -i 928 -a 0 -x {21.0 3.0 457 ------- null} h -t 42.6643 -s 28 -d 1 -p ack -e 40 -c 0 -i 928 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.6659 -s 21 -d 28 -p ack -e 40 -c 0 -i 929 -a 0 -x {21.0 3.0 458 ------- null} + -t 42.6659 -s 28 -d 1 -p ack -e 40 -c 0 -i 929 -a 0 -x {21.0 3.0 458 ------- null} - -t 42.6659 -s 28 -d 1 -p ack -e 40 -c 0 -i 929 -a 0 -x {21.0 3.0 458 ------- null} h -t 42.6659 -s 28 -d 1 -p ack -e 40 -c 0 -i 929 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.6675 -s 21 -d 28 -p ack -e 40 -c 0 -i 930 -a 0 -x {21.0 3.0 459 ------- null} + -t 42.6675 -s 28 -d 1 -p ack -e 40 -c 0 -i 930 -a 0 -x {21.0 3.0 459 ------- null} - -t 42.6675 -s 28 -d 1 -p ack -e 40 -c 0 -i 930 -a 0 -x {21.0 3.0 459 ------- null} h -t 42.6675 -s 28 -d 1 -p ack -e 40 -c 0 -i 930 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.6691 -s 21 -d 28 -p ack -e 40 -c 0 -i 931 -a 0 -x {21.0 3.0 460 ------- null} + -t 42.6691 -s 28 -d 1 -p ack -e 40 -c 0 -i 931 -a 0 -x {21.0 3.0 460 ------- null} - -t 42.6691 -s 28 -d 1 -p ack -e 40 -c 0 -i 931 -a 0 -x {21.0 3.0 460 ------- null} h -t 42.6691 -s 28 -d 1 -p ack -e 40 -c 0 -i 931 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.6707 -s 21 -d 28 -p ack -e 40 -c 0 -i 932 -a 0 -x {21.0 3.0 461 ------- null} + -t 42.6707 -s 28 -d 1 -p ack -e 40 -c 0 -i 932 -a 0 -x {21.0 3.0 461 ------- null} - -t 42.6707 -s 28 -d 1 -p ack -e 40 -c 0 -i 932 -a 0 -x {21.0 3.0 461 ------- null} h -t 42.6707 -s 28 -d 1 -p ack -e 40 -c 0 -i 932 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.6723 -s 21 -d 28 -p ack -e 40 -c 0 -i 933 -a 0 -x {21.0 3.0 462 ------- null} + -t 42.6723 -s 28 -d 1 -p ack -e 40 -c 0 -i 933 -a 0 -x {21.0 3.0 462 ------- null} - -t 42.6723 -s 28 -d 1 -p ack -e 40 -c 0 -i 933 -a 0 -x {21.0 3.0 462 ------- null} h -t 42.6723 -s 28 -d 1 -p ack -e 40 -c 0 -i 933 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.6739 -s 21 -d 28 -p ack -e 40 -c 0 -i 934 -a 0 -x {21.0 3.0 463 ------- null} + -t 42.6739 -s 28 -d 1 -p ack -e 40 -c 0 -i 934 -a 0 -x {21.0 3.0 463 ------- null} - -t 42.6739 -s 28 -d 1 -p ack -e 40 -c 0 -i 934 -a 0 -x {21.0 3.0 463 ------- null} h -t 42.6739 -s 28 -d 1 -p ack -e 40 -c 0 -i 934 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.6755 -s 21 -d 28 -p ack -e 40 -c 0 -i 935 -a 0 -x {21.0 3.0 464 ------- null} + -t 42.6755 -s 28 -d 1 -p ack -e 40 -c 0 -i 935 -a 0 -x {21.0 3.0 464 ------- null} - -t 42.6755 -s 28 -d 1 -p ack -e 40 -c 0 -i 935 -a 0 -x {21.0 3.0 464 ------- null} h -t 42.6755 -s 28 -d 1 -p ack -e 40 -c 0 -i 935 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.6771 -s 21 -d 28 -p ack -e 40 -c 0 -i 936 -a 0 -x {21.0 3.0 465 ------- null} + -t 42.6771 -s 28 -d 1 -p ack -e 40 -c 0 -i 936 -a 0 -x {21.0 3.0 465 ------- null} - -t 42.6771 -s 28 -d 1 -p ack -e 40 -c 0 -i 936 -a 0 -x {21.0 3.0 465 ------- null} h -t 42.6771 -s 28 -d 1 -p ack -e 40 -c 0 -i 936 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.6787 -s 21 -d 28 -p ack -e 40 -c 0 -i 937 -a 0 -x {21.0 3.0 466 ------- null} + -t 42.6787 -s 28 -d 1 -p ack -e 40 -c 0 -i 937 -a 0 -x {21.0 3.0 466 ------- null} - -t 42.6787 -s 28 -d 1 -p ack -e 40 -c 0 -i 937 -a 0 -x {21.0 3.0 466 ------- null} h -t 42.6787 -s 28 -d 1 -p ack -e 40 -c 0 -i 937 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.6803 -s 21 -d 28 -p ack -e 40 -c 0 -i 938 -a 0 -x {21.0 3.0 467 ------- null} + -t 42.6803 -s 28 -d 1 -p ack -e 40 -c 0 -i 938 -a 0 -x {21.0 3.0 467 ------- null} - -t 42.6803 -s 28 -d 1 -p ack -e 40 -c 0 -i 938 -a 0 -x {21.0 3.0 467 ------- null} h -t 42.6803 -s 28 -d 1 -p ack -e 40 -c 0 -i 938 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.6819 -s 21 -d 28 -p ack -e 40 -c 0 -i 939 -a 0 -x {21.0 3.0 468 ------- null} + -t 42.6819 -s 28 -d 1 -p ack -e 40 -c 0 -i 939 -a 0 -x {21.0 3.0 468 ------- null} - -t 42.6819 -s 28 -d 1 -p ack -e 40 -c 0 -i 939 -a 0 -x {21.0 3.0 468 ------- null} h -t 42.6819 -s 28 -d 1 -p ack -e 40 -c 0 -i 939 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.6835 -s 21 -d 28 -p ack -e 40 -c 0 -i 940 -a 0 -x {21.0 3.0 469 ------- null} + -t 42.6835 -s 28 -d 1 -p ack -e 40 -c 0 -i 940 -a 0 -x {21.0 3.0 469 ------- null} - -t 42.6835 -s 28 -d 1 -p ack -e 40 -c 0 -i 940 -a 0 -x {21.0 3.0 469 ------- null} h -t 42.6835 -s 28 -d 1 -p ack -e 40 -c 0 -i 940 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.6851 -s 21 -d 28 -p ack -e 40 -c 0 -i 941 -a 0 -x {21.0 3.0 470 ------- null} + -t 42.6851 -s 28 -d 1 -p ack -e 40 -c 0 -i 941 -a 0 -x {21.0 3.0 470 ------- null} - -t 42.6851 -s 28 -d 1 -p ack -e 40 -c 0 -i 941 -a 0 -x {21.0 3.0 470 ------- null} h -t 42.6851 -s 28 -d 1 -p ack -e 40 -c 0 -i 941 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.9547 -s 28 -d 1 -p ack -e 40 -c 0 -i 922 -a 0 -x {21.0 3.0 451 ------- null} + -t 42.9547 -s 1 -d 3 -p ack -e 40 -c 0 -i 922 -a 0 -x {21.0 3.0 451 ------- null} - -t 42.9547 -s 1 -d 3 -p ack -e 40 -c 0 -i 922 -a 0 -x {21.0 3.0 451 ------- null} h -t 42.9547 -s 1 -d 3 -p ack -e 40 -c 0 -i 922 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.9563 -s 28 -d 1 -p ack -e 40 -c 0 -i 923 -a 0 -x {21.0 3.0 452 ------- null} + -t 42.9563 -s 1 -d 3 -p ack -e 40 -c 0 -i 923 -a 0 -x {21.0 3.0 452 ------- null} - -t 42.9563 -s 1 -d 3 -p ack -e 40 -c 0 -i 923 -a 0 -x {21.0 3.0 452 ------- null} h -t 42.9563 -s 1 -d 3 -p ack -e 40 -c 0 -i 923 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.9579 -s 28 -d 1 -p ack -e 40 -c 0 -i 924 -a 0 -x {21.0 3.0 453 ------- null} + -t 42.9579 -s 1 -d 3 -p ack -e 40 -c 0 -i 924 -a 0 -x {21.0 3.0 453 ------- null} - -t 42.9579 -s 1 -d 3 -p ack -e 40 -c 0 -i 924 -a 0 -x {21.0 3.0 453 ------- null} h -t 42.9579 -s 1 -d 3 -p ack -e 40 -c 0 -i 924 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.9595 -s 28 -d 1 -p ack -e 40 -c 0 -i 925 -a 0 -x {21.0 3.0 454 ------- null} + -t 42.9595 -s 1 -d 3 -p ack -e 40 -c 0 -i 925 -a 0 -x {21.0 3.0 454 ------- null} - -t 42.9595 -s 1 -d 3 -p ack -e 40 -c 0 -i 925 -a 0 -x {21.0 3.0 454 ------- null} h -t 42.9595 -s 1 -d 3 -p ack -e 40 -c 0 -i 925 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.9611 -s 28 -d 1 -p ack -e 40 -c 0 -i 926 -a 0 -x {21.0 3.0 455 ------- null} + -t 42.9611 -s 1 -d 3 -p ack -e 40 -c 0 -i 926 -a 0 -x {21.0 3.0 455 ------- null} - -t 42.9611 -s 1 -d 3 -p ack -e 40 -c 0 -i 926 -a 0 -x {21.0 3.0 455 ------- null} h -t 42.9611 -s 1 -d 3 -p ack -e 40 -c 0 -i 926 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.9627 -s 28 -d 1 -p ack -e 40 -c 0 -i 927 -a 0 -x {21.0 3.0 456 ------- null} + -t 42.9627 -s 1 -d 3 -p ack -e 40 -c 0 -i 927 -a 0 -x {21.0 3.0 456 ------- null} - -t 42.9627 -s 1 -d 3 -p ack -e 40 -c 0 -i 927 -a 0 -x {21.0 3.0 456 ------- null} h -t 42.9627 -s 1 -d 3 -p ack -e 40 -c 0 -i 927 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.9643 -s 28 -d 1 -p ack -e 40 -c 0 -i 928 -a 0 -x {21.0 3.0 457 ------- null} + -t 42.9643 -s 1 -d 3 -p ack -e 40 -c 0 -i 928 -a 0 -x {21.0 3.0 457 ------- null} - -t 42.9643 -s 1 -d 3 -p ack -e 40 -c 0 -i 928 -a 0 -x {21.0 3.0 457 ------- null} h -t 42.9643 -s 1 -d 3 -p ack -e 40 -c 0 -i 928 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.9659 -s 28 -d 1 -p ack -e 40 -c 0 -i 929 -a 0 -x {21.0 3.0 458 ------- null} + -t 42.9659 -s 1 -d 3 -p ack -e 40 -c 0 -i 929 -a 0 -x {21.0 3.0 458 ------- null} - -t 42.9659 -s 1 -d 3 -p ack -e 40 -c 0 -i 929 -a 0 -x {21.0 3.0 458 ------- null} h -t 42.9659 -s 1 -d 3 -p ack -e 40 -c 0 -i 929 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.9675 -s 28 -d 1 -p ack -e 40 -c 0 -i 930 -a 0 -x {21.0 3.0 459 ------- null} + -t 42.9675 -s 1 -d 3 -p ack -e 40 -c 0 -i 930 -a 0 -x {21.0 3.0 459 ------- null} - -t 42.9675 -s 1 -d 3 -p ack -e 40 -c 0 -i 930 -a 0 -x {21.0 3.0 459 ------- null} h -t 42.9675 -s 1 -d 3 -p ack -e 40 -c 0 -i 930 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.9691 -s 28 -d 1 -p ack -e 40 -c 0 -i 931 -a 0 -x {21.0 3.0 460 ------- null} + -t 42.9691 -s 1 -d 3 -p ack -e 40 -c 0 -i 931 -a 0 -x {21.0 3.0 460 ------- null} - -t 42.9691 -s 1 -d 3 -p ack -e 40 -c 0 -i 931 -a 0 -x {21.0 3.0 460 ------- null} h -t 42.9691 -s 1 -d 3 -p ack -e 40 -c 0 -i 931 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.9707 -s 28 -d 1 -p ack -e 40 -c 0 -i 932 -a 0 -x {21.0 3.0 461 ------- null} + -t 42.9707 -s 1 -d 3 -p ack -e 40 -c 0 -i 932 -a 0 -x {21.0 3.0 461 ------- null} - -t 42.9707 -s 1 -d 3 -p ack -e 40 -c 0 -i 932 -a 0 -x {21.0 3.0 461 ------- null} h -t 42.9707 -s 1 -d 3 -p ack -e 40 -c 0 -i 932 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.9723 -s 28 -d 1 -p ack -e 40 -c 0 -i 933 -a 0 -x {21.0 3.0 462 ------- null} + -t 42.9723 -s 1 -d 3 -p ack -e 40 -c 0 -i 933 -a 0 -x {21.0 3.0 462 ------- null} - -t 42.9723 -s 1 -d 3 -p ack -e 40 -c 0 -i 933 -a 0 -x {21.0 3.0 462 ------- null} h -t 42.9723 -s 1 -d 3 -p ack -e 40 -c 0 -i 933 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.9739 -s 28 -d 1 -p ack -e 40 -c 0 -i 934 -a 0 -x {21.0 3.0 463 ------- null} + -t 42.9739 -s 1 -d 3 -p ack -e 40 -c 0 -i 934 -a 0 -x {21.0 3.0 463 ------- null} - -t 42.9739 -s 1 -d 3 -p ack -e 40 -c 0 -i 934 -a 0 -x {21.0 3.0 463 ------- null} h -t 42.9739 -s 1 -d 3 -p ack -e 40 -c 0 -i 934 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.9755 -s 28 -d 1 -p ack -e 40 -c 0 -i 935 -a 0 -x {21.0 3.0 464 ------- null} + -t 42.9755 -s 1 -d 3 -p ack -e 40 -c 0 -i 935 -a 0 -x {21.0 3.0 464 ------- null} - -t 42.9755 -s 1 -d 3 -p ack -e 40 -c 0 -i 935 -a 0 -x {21.0 3.0 464 ------- null} h -t 42.9755 -s 1 -d 3 -p ack -e 40 -c 0 -i 935 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.9771 -s 28 -d 1 -p ack -e 40 -c 0 -i 936 -a 0 -x {21.0 3.0 465 ------- null} + -t 42.9771 -s 1 -d 3 -p ack -e 40 -c 0 -i 936 -a 0 -x {21.0 3.0 465 ------- null} - -t 42.9771 -s 1 -d 3 -p ack -e 40 -c 0 -i 936 -a 0 -x {21.0 3.0 465 ------- null} h -t 42.9771 -s 1 -d 3 -p ack -e 40 -c 0 -i 936 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.9787 -s 28 -d 1 -p ack -e 40 -c 0 -i 937 -a 0 -x {21.0 3.0 466 ------- null} + -t 42.9787 -s 1 -d 3 -p ack -e 40 -c 0 -i 937 -a 0 -x {21.0 3.0 466 ------- null} - -t 42.9787 -s 1 -d 3 -p ack -e 40 -c 0 -i 937 -a 0 -x {21.0 3.0 466 ------- null} h -t 42.9787 -s 1 -d 3 -p ack -e 40 -c 0 -i 937 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.9803 -s 28 -d 1 -p ack -e 40 -c 0 -i 938 -a 0 -x {21.0 3.0 467 ------- null} + -t 42.9803 -s 1 -d 3 -p ack -e 40 -c 0 -i 938 -a 0 -x {21.0 3.0 467 ------- null} - -t 42.9803 -s 1 -d 3 -p ack -e 40 -c 0 -i 938 -a 0 -x {21.0 3.0 467 ------- null} h -t 42.9803 -s 1 -d 3 -p ack -e 40 -c 0 -i 938 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.9819 -s 28 -d 1 -p ack -e 40 -c 0 -i 939 -a 0 -x {21.0 3.0 468 ------- null} + -t 42.9819 -s 1 -d 3 -p ack -e 40 -c 0 -i 939 -a 0 -x {21.0 3.0 468 ------- null} - -t 42.9819 -s 1 -d 3 -p ack -e 40 -c 0 -i 939 -a 0 -x {21.0 3.0 468 ------- null} h -t 42.9819 -s 1 -d 3 -p ack -e 40 -c 0 -i 939 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.9835 -s 28 -d 1 -p ack -e 40 -c 0 -i 940 -a 0 -x {21.0 3.0 469 ------- null} + -t 42.9835 -s 1 -d 3 -p ack -e 40 -c 0 -i 940 -a 0 -x {21.0 3.0 469 ------- null} - -t 42.9835 -s 1 -d 3 -p ack -e 40 -c 0 -i 940 -a 0 -x {21.0 3.0 469 ------- null} h -t 42.9835 -s 1 -d 3 -p ack -e 40 -c 0 -i 940 -a 0 -x {21.0 3.0 -1 ------- null} r -t 42.9851 -s 28 -d 1 -p ack -e 40 -c 0 -i 941 -a 0 -x {21.0 3.0 470 ------- null} + -t 42.9851 -s 1 -d 3 -p ack -e 40 -c 0 -i 941 -a 0 -x {21.0 3.0 470 ------- null} - -t 42.9851 -s 1 -d 3 -p ack -e 40 -c 0 -i 941 -a 0 -x {21.0 3.0 470 ------- null} h -t 42.9851 -s 1 -d 3 -p ack -e 40 -c 0 -i 941 -a 0 -x {21.0 3.0 -1 ------- null} r -t 43.0948 -s 1 -d 3 -p ack -e 40 -c 0 -i 922 -a 0 -x {21.0 3.0 451 ------- null} + -t 43.0948 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 942 -a 0 -x {3.0 21.0 471 ------- null} - -t 43.0948 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 942 -a 0 -x {3.0 21.0 471 ------- null} h -t 43.0948 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 942 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.0964 -s 1 -d 3 -p ack -e 40 -c 0 -i 923 -a 0 -x {21.0 3.0 452 ------- null} + -t 43.0964 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {3.0 21.0 472 ------- null} - -t 43.0964 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {3.0 21.0 472 ------- null} h -t 43.0964 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.098 -s 1 -d 3 -p ack -e 40 -c 0 -i 924 -a 0 -x {21.0 3.0 453 ------- null} + -t 43.098 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 944 -a 0 -x {3.0 21.0 473 ------- null} - -t 43.098 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 944 -a 0 -x {3.0 21.0 473 ------- null} h -t 43.098 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 944 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.0996 -s 1 -d 3 -p ack -e 40 -c 0 -i 925 -a 0 -x {21.0 3.0 454 ------- null} + -t 43.0996 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {3.0 21.0 474 ------- null} - -t 43.0996 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {3.0 21.0 474 ------- null} h -t 43.0996 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.1012 -s 1 -d 3 -p ack -e 40 -c 0 -i 926 -a 0 -x {21.0 3.0 455 ------- null} + -t 43.1012 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 946 -a 0 -x {3.0 21.0 475 ------- null} - -t 43.1012 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 946 -a 0 -x {3.0 21.0 475 ------- null} h -t 43.1012 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 946 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.1028 -s 1 -d 3 -p ack -e 40 -c 0 -i 927 -a 0 -x {21.0 3.0 456 ------- null} + -t 43.1028 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {3.0 21.0 476 ------- null} - -t 43.1028 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {3.0 21.0 476 ------- null} h -t 43.1028 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.1044 -s 1 -d 3 -p ack -e 40 -c 0 -i 928 -a 0 -x {21.0 3.0 457 ------- null} + -t 43.1044 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 948 -a 0 -x {3.0 21.0 477 ------- null} - -t 43.1044 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 948 -a 0 -x {3.0 21.0 477 ------- null} h -t 43.1044 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 948 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.106 -s 1 -d 3 -p ack -e 40 -c 0 -i 929 -a 0 -x {21.0 3.0 458 ------- null} + -t 43.106 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {3.0 21.0 478 ------- null} - -t 43.106 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {3.0 21.0 478 ------- null} h -t 43.106 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.1076 -s 1 -d 3 -p ack -e 40 -c 0 -i 930 -a 0 -x {21.0 3.0 459 ------- null} + -t 43.1076 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 950 -a 0 -x {3.0 21.0 479 ------- null} - -t 43.1076 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 950 -a 0 -x {3.0 21.0 479 ------- null} h -t 43.1076 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 950 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.1092 -s 1 -d 3 -p ack -e 40 -c 0 -i 931 -a 0 -x {21.0 3.0 460 ------- null} + -t 43.1092 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {3.0 21.0 480 ------- null} - -t 43.1092 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {3.0 21.0 480 ------- null} h -t 43.1092 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.1108 -s 1 -d 3 -p ack -e 40 -c 0 -i 932 -a 0 -x {21.0 3.0 461 ------- null} + -t 43.1108 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 952 -a 0 -x {3.0 21.0 481 ------- null} - -t 43.1108 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 952 -a 0 -x {3.0 21.0 481 ------- null} h -t 43.1108 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 952 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.1124 -s 1 -d 3 -p ack -e 40 -c 0 -i 933 -a 0 -x {21.0 3.0 462 ------- null} + -t 43.1124 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {3.0 21.0 482 ------- null} - -t 43.1124 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {3.0 21.0 482 ------- null} h -t 43.1124 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.114 -s 1 -d 3 -p ack -e 40 -c 0 -i 934 -a 0 -x {21.0 3.0 463 ------- null} + -t 43.114 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 954 -a 0 -x {3.0 21.0 483 ------- null} - -t 43.114 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 954 -a 0 -x {3.0 21.0 483 ------- null} h -t 43.114 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 954 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.1156 -s 1 -d 3 -p ack -e 40 -c 0 -i 935 -a 0 -x {21.0 3.0 464 ------- null} + -t 43.1156 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {3.0 21.0 484 ------- null} - -t 43.1156 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {3.0 21.0 484 ------- null} h -t 43.1156 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.1172 -s 1 -d 3 -p ack -e 40 -c 0 -i 936 -a 0 -x {21.0 3.0 465 ------- null} + -t 43.1172 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 956 -a 0 -x {3.0 21.0 485 ------- null} - -t 43.1172 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 956 -a 0 -x {3.0 21.0 485 ------- null} h -t 43.1172 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 956 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.1188 -s 1 -d 3 -p ack -e 40 -c 0 -i 937 -a 0 -x {21.0 3.0 466 ------- null} + -t 43.1188 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {3.0 21.0 486 ------- null} - -t 43.1188 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {3.0 21.0 486 ------- null} h -t 43.1188 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.1204 -s 1 -d 3 -p ack -e 40 -c 0 -i 938 -a 0 -x {21.0 3.0 467 ------- null} + -t 43.1204 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 958 -a 0 -x {3.0 21.0 487 ------- null} - -t 43.1204 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 958 -a 0 -x {3.0 21.0 487 ------- null} h -t 43.1204 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 958 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.122 -s 1 -d 3 -p ack -e 40 -c 0 -i 939 -a 0 -x {21.0 3.0 468 ------- null} + -t 43.122 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {3.0 21.0 488 ------- null} - -t 43.122 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {3.0 21.0 488 ------- null} h -t 43.122 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.1236 -s 1 -d 3 -p ack -e 40 -c 0 -i 940 -a 0 -x {21.0 3.0 469 ------- null} + -t 43.1236 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 960 -a 0 -x {3.0 21.0 489 ------- null} - -t 43.1236 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 960 -a 0 -x {3.0 21.0 489 ------- null} h -t 43.1236 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 960 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.1252 -s 1 -d 3 -p ack -e 40 -c 0 -i 941 -a 0 -x {21.0 3.0 470 ------- null} + -t 43.1252 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {3.0 21.0 490 ------- null} - -t 43.1252 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {3.0 21.0 490 ------- null} h -t 43.1252 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.2364 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 942 -a 0 -x {3.0 21.0 471 ------- null} + -t 43.2364 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 942 -a 0 -x {3.0 21.0 471 ------- null} - -t 43.2364 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 942 -a 0 -x {3.0 21.0 471 ------- null} h -t 43.2364 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 942 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.238 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {3.0 21.0 472 ------- null} + -t 43.238 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {3.0 21.0 472 ------- null} - -t 43.238 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {3.0 21.0 472 ------- null} h -t 43.238 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.2396 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 944 -a 0 -x {3.0 21.0 473 ------- null} + -t 43.2396 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 944 -a 0 -x {3.0 21.0 473 ------- null} - -t 43.2396 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 944 -a 0 -x {3.0 21.0 473 ------- null} h -t 43.2396 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 944 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.2412 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {3.0 21.0 474 ------- null} + -t 43.2412 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {3.0 21.0 474 ------- null} - -t 43.2412 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {3.0 21.0 474 ------- null} h -t 43.2412 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.2428 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 946 -a 0 -x {3.0 21.0 475 ------- null} + -t 43.2428 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 946 -a 0 -x {3.0 21.0 475 ------- null} - -t 43.2428 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 946 -a 0 -x {3.0 21.0 475 ------- null} h -t 43.2428 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 946 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.2444 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {3.0 21.0 476 ------- null} + -t 43.2444 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {3.0 21.0 476 ------- null} - -t 43.2444 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {3.0 21.0 476 ------- null} h -t 43.2444 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.246 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 948 -a 0 -x {3.0 21.0 477 ------- null} + -t 43.246 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 948 -a 0 -x {3.0 21.0 477 ------- null} - -t 43.246 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 948 -a 0 -x {3.0 21.0 477 ------- null} h -t 43.246 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 948 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.2476 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {3.0 21.0 478 ------- null} + -t 43.2476 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {3.0 21.0 478 ------- null} - -t 43.2476 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {3.0 21.0 478 ------- null} h -t 43.2476 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.2492 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 950 -a 0 -x {3.0 21.0 479 ------- null} + -t 43.2492 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 950 -a 0 -x {3.0 21.0 479 ------- null} - -t 43.2492 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 950 -a 0 -x {3.0 21.0 479 ------- null} h -t 43.2492 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 950 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.2508 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {3.0 21.0 480 ------- null} + -t 43.2508 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {3.0 21.0 480 ------- null} - -t 43.2508 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {3.0 21.0 480 ------- null} h -t 43.2508 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.2524 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 952 -a 0 -x {3.0 21.0 481 ------- null} + -t 43.2524 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 952 -a 0 -x {3.0 21.0 481 ------- null} - -t 43.2524 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 952 -a 0 -x {3.0 21.0 481 ------- null} h -t 43.2524 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 952 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.254 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {3.0 21.0 482 ------- null} + -t 43.254 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {3.0 21.0 482 ------- null} - -t 43.254 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {3.0 21.0 482 ------- null} h -t 43.254 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.2556 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 954 -a 0 -x {3.0 21.0 483 ------- null} + -t 43.2556 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 954 -a 0 -x {3.0 21.0 483 ------- null} - -t 43.2556 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 954 -a 0 -x {3.0 21.0 483 ------- null} h -t 43.2556 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 954 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.2572 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {3.0 21.0 484 ------- null} + -t 43.2572 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {3.0 21.0 484 ------- null} - -t 43.2572 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {3.0 21.0 484 ------- null} h -t 43.2572 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.2588 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 956 -a 0 -x {3.0 21.0 485 ------- null} + -t 43.2588 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 956 -a 0 -x {3.0 21.0 485 ------- null} - -t 43.2588 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 956 -a 0 -x {3.0 21.0 485 ------- null} h -t 43.2588 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 956 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.2604 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {3.0 21.0 486 ------- null} + -t 43.2604 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {3.0 21.0 486 ------- null} - -t 43.2604 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {3.0 21.0 486 ------- null} h -t 43.2604 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.262 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 958 -a 0 -x {3.0 21.0 487 ------- null} + -t 43.262 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 958 -a 0 -x {3.0 21.0 487 ------- null} - -t 43.262 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 958 -a 0 -x {3.0 21.0 487 ------- null} h -t 43.262 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 958 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.2636 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {3.0 21.0 488 ------- null} + -t 43.2636 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {3.0 21.0 488 ------- null} - -t 43.2636 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {3.0 21.0 488 ------- null} h -t 43.2636 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.2652 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 960 -a 0 -x {3.0 21.0 489 ------- null} + -t 43.2652 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 960 -a 0 -x {3.0 21.0 489 ------- null} - -t 43.2652 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 960 -a 0 -x {3.0 21.0 489 ------- null} h -t 43.2652 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 960 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.2668 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {3.0 21.0 490 ------- null} + -t 43.2668 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {3.0 21.0 490 ------- null} - -t 43.2668 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {3.0 21.0 490 ------- null} h -t 43.2668 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.538 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 942 -a 0 -x {3.0 21.0 471 ------- null} + -t 43.538 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 942 -a 0 -x {3.0 21.0 471 ------- null} - -t 43.538 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 942 -a 0 -x {3.0 21.0 471 ------- null} h -t 43.538 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 942 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.5396 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {3.0 21.0 472 ------- null} + -t 43.5396 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {3.0 21.0 472 ------- null} - -t 43.5396 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {3.0 21.0 472 ------- null} h -t 43.5396 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.5412 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 944 -a 0 -x {3.0 21.0 473 ------- null} + -t 43.5412 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 944 -a 0 -x {3.0 21.0 473 ------- null} - -t 43.5412 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 944 -a 0 -x {3.0 21.0 473 ------- null} h -t 43.5412 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 944 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.5428 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {3.0 21.0 474 ------- null} + -t 43.5428 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {3.0 21.0 474 ------- null} - -t 43.5428 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {3.0 21.0 474 ------- null} h -t 43.5428 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.5444 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 946 -a 0 -x {3.0 21.0 475 ------- null} + -t 43.5444 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 946 -a 0 -x {3.0 21.0 475 ------- null} - -t 43.5444 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 946 -a 0 -x {3.0 21.0 475 ------- null} h -t 43.5444 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 946 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.546 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {3.0 21.0 476 ------- null} + -t 43.546 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {3.0 21.0 476 ------- null} - -t 43.546 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {3.0 21.0 476 ------- null} h -t 43.546 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.5476 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 948 -a 0 -x {3.0 21.0 477 ------- null} + -t 43.5476 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 948 -a 0 -x {3.0 21.0 477 ------- null} - -t 43.5476 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 948 -a 0 -x {3.0 21.0 477 ------- null} h -t 43.5476 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 948 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.5492 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {3.0 21.0 478 ------- null} + -t 43.5492 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {3.0 21.0 478 ------- null} - -t 43.5492 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {3.0 21.0 478 ------- null} h -t 43.5492 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.5508 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 950 -a 0 -x {3.0 21.0 479 ------- null} + -t 43.5508 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 950 -a 0 -x {3.0 21.0 479 ------- null} - -t 43.5508 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 950 -a 0 -x {3.0 21.0 479 ------- null} h -t 43.5508 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 950 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.5524 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {3.0 21.0 480 ------- null} + -t 43.5524 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {3.0 21.0 480 ------- null} - -t 43.5524 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {3.0 21.0 480 ------- null} h -t 43.5524 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.554 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 952 -a 0 -x {3.0 21.0 481 ------- null} + -t 43.554 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 952 -a 0 -x {3.0 21.0 481 ------- null} - -t 43.554 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 952 -a 0 -x {3.0 21.0 481 ------- null} h -t 43.554 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 952 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.5556 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {3.0 21.0 482 ------- null} + -t 43.5556 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {3.0 21.0 482 ------- null} - -t 43.5556 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {3.0 21.0 482 ------- null} h -t 43.5556 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.5572 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 954 -a 0 -x {3.0 21.0 483 ------- null} + -t 43.5572 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 954 -a 0 -x {3.0 21.0 483 ------- null} - -t 43.5572 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 954 -a 0 -x {3.0 21.0 483 ------- null} h -t 43.5572 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 954 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.5588 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {3.0 21.0 484 ------- null} + -t 43.5588 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {3.0 21.0 484 ------- null} - -t 43.5588 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {3.0 21.0 484 ------- null} h -t 43.5588 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.5604 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 956 -a 0 -x {3.0 21.0 485 ------- null} + -t 43.5604 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 956 -a 0 -x {3.0 21.0 485 ------- null} - -t 43.5604 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 956 -a 0 -x {3.0 21.0 485 ------- null} h -t 43.5604 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 956 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.562 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {3.0 21.0 486 ------- null} + -t 43.562 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {3.0 21.0 486 ------- null} - -t 43.562 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {3.0 21.0 486 ------- null} h -t 43.562 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.5636 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 958 -a 0 -x {3.0 21.0 487 ------- null} + -t 43.5636 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 958 -a 0 -x {3.0 21.0 487 ------- null} - -t 43.5636 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 958 -a 0 -x {3.0 21.0 487 ------- null} h -t 43.5636 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 958 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.5652 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {3.0 21.0 488 ------- null} + -t 43.5652 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {3.0 21.0 488 ------- null} - -t 43.5652 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {3.0 21.0 488 ------- null} h -t 43.5652 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.5668 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 960 -a 0 -x {3.0 21.0 489 ------- null} + -t 43.5668 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 960 -a 0 -x {3.0 21.0 489 ------- null} - -t 43.5668 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 960 -a 0 -x {3.0 21.0 489 ------- null} h -t 43.5668 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 960 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.5684 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {3.0 21.0 490 ------- null} + -t 43.5684 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {3.0 21.0 490 ------- null} - -t 43.5684 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {3.0 21.0 490 ------- null} h -t 43.5684 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.8896 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 942 -a 0 -x {3.0 21.0 471 ------- null} + -t 43.8896 -s 21 -d 28 -p ack -e 40 -c 0 -i 962 -a 0 -x {21.0 3.0 471 ------- null} - -t 43.8896 -s 21 -d 28 -p ack -e 40 -c 0 -i 962 -a 0 -x {21.0 3.0 471 ------- null} h -t 43.8896 -s 21 -d 28 -p ack -e 40 -c 0 -i 962 -a 0 -x {21.0 3.0 -1 ------- null} r -t 43.8912 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {3.0 21.0 472 ------- null} + -t 43.8912 -s 21 -d 28 -p ack -e 40 -c 0 -i 963 -a 0 -x {21.0 3.0 472 ------- null} - -t 43.8912 -s 21 -d 28 -p ack -e 40 -c 0 -i 963 -a 0 -x {21.0 3.0 472 ------- null} h -t 43.8912 -s 21 -d 28 -p ack -e 40 -c 0 -i 963 -a 0 -x {21.0 3.0 -1 ------- null} r -t 43.8928 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 944 -a 0 -x {3.0 21.0 473 ------- null} + -t 43.8928 -s 21 -d 28 -p ack -e 40 -c 0 -i 964 -a 0 -x {21.0 3.0 473 ------- null} - -t 43.8928 -s 21 -d 28 -p ack -e 40 -c 0 -i 964 -a 0 -x {21.0 3.0 473 ------- null} h -t 43.8928 -s 21 -d 28 -p ack -e 40 -c 0 -i 964 -a 0 -x {21.0 3.0 -1 ------- null} r -t 43.8944 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {3.0 21.0 474 ------- null} + -t 43.8944 -s 21 -d 28 -p ack -e 40 -c 0 -i 965 -a 0 -x {21.0 3.0 474 ------- null} - -t 43.8944 -s 21 -d 28 -p ack -e 40 -c 0 -i 965 -a 0 -x {21.0 3.0 474 ------- null} h -t 43.8944 -s 21 -d 28 -p ack -e 40 -c 0 -i 965 -a 0 -x {21.0 3.0 -1 ------- null} r -t 43.896 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 946 -a 0 -x {3.0 21.0 475 ------- null} + -t 43.896 -s 21 -d 28 -p ack -e 40 -c 0 -i 966 -a 0 -x {21.0 3.0 475 ------- null} - -t 43.896 -s 21 -d 28 -p ack -e 40 -c 0 -i 966 -a 0 -x {21.0 3.0 475 ------- null} h -t 43.896 -s 21 -d 28 -p ack -e 40 -c 0 -i 966 -a 0 -x {21.0 3.0 -1 ------- null} r -t 43.8976 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {3.0 21.0 476 ------- null} + -t 43.8976 -s 21 -d 28 -p ack -e 40 -c 0 -i 967 -a 0 -x {21.0 3.0 476 ------- null} - -t 43.8976 -s 21 -d 28 -p ack -e 40 -c 0 -i 967 -a 0 -x {21.0 3.0 476 ------- null} h -t 43.8976 -s 21 -d 28 -p ack -e 40 -c 0 -i 967 -a 0 -x {21.0 3.0 -1 ------- null} r -t 43.8992 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 948 -a 0 -x {3.0 21.0 477 ------- null} + -t 43.8992 -s 21 -d 28 -p ack -e 40 -c 0 -i 968 -a 0 -x {21.0 3.0 477 ------- null} - -t 43.8992 -s 21 -d 28 -p ack -e 40 -c 0 -i 968 -a 0 -x {21.0 3.0 477 ------- null} h -t 43.8992 -s 21 -d 28 -p ack -e 40 -c 0 -i 968 -a 0 -x {21.0 3.0 -1 ------- null} r -t 43.9008 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {3.0 21.0 478 ------- null} + -t 43.9008 -s 21 -d 28 -p ack -e 40 -c 0 -i 969 -a 0 -x {21.0 3.0 478 ------- null} - -t 43.9008 -s 21 -d 28 -p ack -e 40 -c 0 -i 969 -a 0 -x {21.0 3.0 478 ------- null} h -t 43.9008 -s 21 -d 28 -p ack -e 40 -c 0 -i 969 -a 0 -x {21.0 3.0 -1 ------- null} r -t 43.9024 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 950 -a 0 -x {3.0 21.0 479 ------- null} + -t 43.9024 -s 21 -d 28 -p ack -e 40 -c 0 -i 970 -a 0 -x {21.0 3.0 479 ------- null} - -t 43.9024 -s 21 -d 28 -p ack -e 40 -c 0 -i 970 -a 0 -x {21.0 3.0 479 ------- null} h -t 43.9024 -s 21 -d 28 -p ack -e 40 -c 0 -i 970 -a 0 -x {21.0 3.0 -1 ------- null} r -t 43.904 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {3.0 21.0 480 ------- null} + -t 43.904 -s 21 -d 28 -p ack -e 40 -c 0 -i 971 -a 0 -x {21.0 3.0 480 ------- null} - -t 43.904 -s 21 -d 28 -p ack -e 40 -c 0 -i 971 -a 0 -x {21.0 3.0 480 ------- null} h -t 43.904 -s 21 -d 28 -p ack -e 40 -c 0 -i 971 -a 0 -x {21.0 3.0 -1 ------- null} r -t 43.9056 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 952 -a 0 -x {3.0 21.0 481 ------- null} + -t 43.9056 -s 21 -d 28 -p ack -e 40 -c 0 -i 972 -a 0 -x {21.0 3.0 481 ------- null} - -t 43.9056 -s 21 -d 28 -p ack -e 40 -c 0 -i 972 -a 0 -x {21.0 3.0 481 ------- null} h -t 43.9056 -s 21 -d 28 -p ack -e 40 -c 0 -i 972 -a 0 -x {21.0 3.0 -1 ------- null} r -t 43.9072 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {3.0 21.0 482 ------- null} + -t 43.9072 -s 21 -d 28 -p ack -e 40 -c 0 -i 973 -a 0 -x {21.0 3.0 482 ------- null} - -t 43.9072 -s 21 -d 28 -p ack -e 40 -c 0 -i 973 -a 0 -x {21.0 3.0 482 ------- null} h -t 43.9072 -s 21 -d 28 -p ack -e 40 -c 0 -i 973 -a 0 -x {21.0 3.0 -1 ------- null} r -t 43.9088 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 954 -a 0 -x {3.0 21.0 483 ------- null} + -t 43.9088 -s 21 -d 28 -p ack -e 40 -c 0 -i 974 -a 0 -x {21.0 3.0 483 ------- null} - -t 43.9088 -s 21 -d 28 -p ack -e 40 -c 0 -i 974 -a 0 -x {21.0 3.0 483 ------- null} h -t 43.9088 -s 21 -d 28 -p ack -e 40 -c 0 -i 974 -a 0 -x {21.0 3.0 -1 ------- null} r -t 43.9104 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {3.0 21.0 484 ------- null} + -t 43.9104 -s 21 -d 28 -p ack -e 40 -c 0 -i 975 -a 0 -x {21.0 3.0 484 ------- null} - -t 43.9104 -s 21 -d 28 -p ack -e 40 -c 0 -i 975 -a 0 -x {21.0 3.0 484 ------- null} h -t 43.9104 -s 21 -d 28 -p ack -e 40 -c 0 -i 975 -a 0 -x {21.0 3.0 -1 ------- null} r -t 43.912 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 956 -a 0 -x {3.0 21.0 485 ------- null} + -t 43.912 -s 21 -d 28 -p ack -e 40 -c 0 -i 976 -a 0 -x {21.0 3.0 485 ------- null} - -t 43.912 -s 21 -d 28 -p ack -e 40 -c 0 -i 976 -a 0 -x {21.0 3.0 485 ------- null} h -t 43.912 -s 21 -d 28 -p ack -e 40 -c 0 -i 976 -a 0 -x {21.0 3.0 -1 ------- null} r -t 43.9136 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {3.0 21.0 486 ------- null} + -t 43.9136 -s 21 -d 28 -p ack -e 40 -c 0 -i 977 -a 0 -x {21.0 3.0 486 ------- null} - -t 43.9136 -s 21 -d 28 -p ack -e 40 -c 0 -i 977 -a 0 -x {21.0 3.0 486 ------- null} h -t 43.9136 -s 21 -d 28 -p ack -e 40 -c 0 -i 977 -a 0 -x {21.0 3.0 -1 ------- null} r -t 43.9152 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 958 -a 0 -x {3.0 21.0 487 ------- null} + -t 43.9152 -s 21 -d 28 -p ack -e 40 -c 0 -i 978 -a 0 -x {21.0 3.0 487 ------- null} - -t 43.9152 -s 21 -d 28 -p ack -e 40 -c 0 -i 978 -a 0 -x {21.0 3.0 487 ------- null} h -t 43.9152 -s 21 -d 28 -p ack -e 40 -c 0 -i 978 -a 0 -x {21.0 3.0 -1 ------- null} r -t 43.9168 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {3.0 21.0 488 ------- null} + -t 43.9168 -s 21 -d 28 -p ack -e 40 -c 0 -i 979 -a 0 -x {21.0 3.0 488 ------- null} - -t 43.9168 -s 21 -d 28 -p ack -e 40 -c 0 -i 979 -a 0 -x {21.0 3.0 488 ------- null} h -t 43.9168 -s 21 -d 28 -p ack -e 40 -c 0 -i 979 -a 0 -x {21.0 3.0 -1 ------- null} r -t 43.9184 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 960 -a 0 -x {3.0 21.0 489 ------- null} + -t 43.9184 -s 21 -d 28 -p ack -e 40 -c 0 -i 980 -a 0 -x {21.0 3.0 489 ------- null} - -t 43.9184 -s 21 -d 28 -p ack -e 40 -c 0 -i 980 -a 0 -x {21.0 3.0 489 ------- null} h -t 43.9184 -s 21 -d 28 -p ack -e 40 -c 0 -i 980 -a 0 -x {21.0 3.0 -1 ------- null} r -t 43.92 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {3.0 21.0 490 ------- null} + -t 43.92 -s 21 -d 28 -p ack -e 40 -c 0 -i 981 -a 0 -x {21.0 3.0 490 ------- null} - -t 43.92 -s 21 -d 28 -p ack -e 40 -c 0 -i 981 -a 0 -x {21.0 3.0 490 ------- null} h -t 43.92 -s 21 -d 28 -p ack -e 40 -c 0 -i 981 -a 0 -x {21.0 3.0 -1 ------- null} r -t 44.2396 -s 21 -d 28 -p ack -e 40 -c 0 -i 962 -a 0 -x {21.0 3.0 471 ------- null} + -t 44.2396 -s 28 -d 1 -p ack -e 40 -c 0 -i 962 -a 0 -x {21.0 3.0 471 ------- null} - -t 44.2396 -s 28 -d 1 -p ack -e 40 -c 0 -i 962 -a 0 -x {21.0 3.0 471 ------- null} h -t 44.2396 -s 28 -d 1 -p ack -e 40 -c 0 -i 962 -a 0 -x {21.0 3.0 -1 ------- null} r -t 44.2412 -s 21 -d 28 -p ack -e 40 -c 0 -i 963 -a 0 -x {21.0 3.0 472 ------- null} + -t 44.2412 -s 28 -d 1 -p ack -e 40 -c 0 -i 963 -a 0 -x {21.0 3.0 472 ------- null} - -t 44.2412 -s 28 -d 1 -p ack -e 40 -c 0 -i 963 -a 0 -x {21.0 3.0 472 ------- null} h -t 44.2412 -s 28 -d 1 -p ack -e 40 -c 0 -i 963 -a 0 -x {21.0 3.0 -1 ------- null} r -t 44.2428 -s 21 -d 28 -p ack -e 40 -c 0 -i 964 -a 0 -x {21.0 3.0 473 ------- null} + -t 44.2428 -s 28 -d 1 -p ack -e 40 -c 0 -i 964 -a 0 -x {21.0 3.0 473 ------- null} - -t 44.2428 -s 28 -d 1 -p ack -e 40 -c 0 -i 964 -a 0 -x {21.0 3.0 473 ------- null} h -t 44.2428 -s 28 -d 1 -p ack -e 40 -c 0 -i 964 -a 0 -x {21.0 3.0 -1 ------- null} r -t 44.2444 -s 21 -d 28 -p ack -e 40 -c 0 -i 965 -a 0 -x {21.0 3.0 474 ------- null} + -t 44.2444 -s 28 -d 1 -p ack -e 40 -c 0 -i 965 -a 0 -x {21.0 3.0 474 ------- null} - -t 44.2444 -s 28 -d 1 -p ack -e 40 -c 0 -i 965 -a 0 -x {21.0 3.0 474 ------- null} h -t 44.2444 -s 28 -d 1 -p ack -e 40 -c 0 -i 965 -a 0 -x {21.0 3.0 -1 ------- null} r -t 44.246 -s 21 -d 28 -p ack -e 40 -c 0 -i 966 -a 0 -x {21.0 3.0 475 ------- null} + -t 44.246 -s 28 -d 1 -p ack -e 40 -c 0 -i 966 -a 0 -x {21.0 3.0 475 ------- null} - -t 44.246 -s 28 -d 1 -p ack -e 40 -c 0 -i 966 -a 0 -x {21.0 3.0 475 ------- null} h -t 44.246 -s 28 -d 1 -p ack -e 40 -c 0 -i 966 -a 0 -x {21.0 3.0 -1 ------- null} r -t 44.2476 -s 21 -d 28 -p ack -e 40 -c 0 -i 967 -a 0 -x {21.0 3.0 476 ------- null} + -t 44.2476 -s 28 -d 1 -p ack -e 40 -c 0 -i 967 -a 0 -x {21.0 3.0 476 ------- null} - -t 44.2476 -s 28 -d 1 -p ack -e 40 -c 0 -i 967 -a 0 -x {21.0 3.0 476 ------- null} h -t 44.2476 -s 28 -d 1 -p ack -e 40 -c 0 -i 967 -a 0 -x {21.0 3.0 -1 ------- null} r -t 44.2492 -s 21 -d 28 -p ack -e 40 -c 0 -i 968 -a 0 -x {21.0 3.0 477 ------- null} + -t 44.2492 -s 28 -d 1 -p ack -e 40 -c 0 -i 968 -a 0 -x {21.0 3.0 477 ------- null} - -t 44.2492 -s 28 -d 1 -p ack -e 40 -c 0 -i 968 -a 0 -x {21.0 3.0 477 ------- null} h -t 44.2492 -s 28 -d 1 -p ack -e 40 -c 0 -i 968 -a 0 -x {21.0 3.0 -1 ------- null} r -t 44.2508 -s 21 -d 28 -p ack -e 40 -c 0 -i 969 -a 0 -x {21.0 3.0 478 ------- null} + -t 44.2508 -s 28 -d 1 -p ack -e 40 -c 0 -i 969 -a 0 -x {21.0 3.0 478 ------- null} - -t 44.2508 -s 28 -d 1 -p ack -e 40 -c 0 -i 969 -a 0 -x {21.0 3.0 478 ------- null} h -t 44.2508 -s 28 -d 1 -p ack -e 40 -c 0 -i 969 -a 0 -x {21.0 3.0 -1 ------- null} r -t 44.2524 -s 21 -d 28 -p ack -e 40 -c 0 -i 970 -a 0 -x {21.0 3.0 479 ------- null} + -t 44.2524 -s 28 -d 1 -p ack -e 40 -c 0 -i 970 -a 0 -x {21.0 3.0 479 ------- null} - -t 44.2524 -s 28 -d 1 -p ack -e 40 -c 0 -i 970 -a 0 -x {21.0 3.0 479 ------- null} h -t 44.2524 -s 28 -d 1 -p ack -e 40 -c 0 -i 970 -a 0 -x {21.0 3.0 -1 ------- null} r -t 44.254 -s 21 -d 28 -p ack -e 40 -c 0 -i 971 -a 0 -x {21.0 3.0 480 ------- null} + -t 44.254 -s 28 -d 1 -p ack -e 40 -c 0 -i 971 -a 0 -x {21.0 3.0 480 ------- null} - -t 44.254 -s 28 -d 1 -p ack -e 40 -c 0 -i 971 -a 0 -x {21.0 3.0 480 ------- null} h -t 44.254 -s 28 -d 1 -p ack -e 40 -c 0 -i 971 -a 0 -x {21.0 3.0 -1 ------- null} r -t 44.2556 -s 21 -d 28 -p ack -e 40 -c 0 -i 972 -a 0 -x {21.0 3.0 481 ------- null} + -t 44.2556 -s 28 -d 1 -p ack -e 40 -c 0 -i 972 -a 0 -x {21.0 3.0 481 ------- null} - -t 44.2556 -s 28 -d 1 -p ack -e 40 -c 0 -i 972 -a 0 -x {21.0 3.0 481 ------- null} h -t 44.2556 -s 28 -d 1 -p ack -e 40 -c 0 -i 972 -a 0 -x {21.0 3.0 -1 ------- null} r -t 44.2572 -s 21 -d 28 -p ack -e 40 -c 0 -i 973 -a 0 -x {21.0 3.0 482 ------- null} + -t 44.2572 -s 28 -d 1 -p ack -e 40 -c 0 -i 973 -a 0 -x {21.0 3.0 482 ------- null} - -t 44.2572 -s 28 -d 1 -p ack -e 40 -c 0 -i 973 -a 0 -x {21.0 3.0 482 ------- null} h -t 44.2572 -s 28 -d 1 -p ack -e 40 -c 0 -i 973 -a 0 -x {21.0 3.0 -1 ------- null} r -t 44.2588 -s 21 -d 28 -p ack -e 40 -c 0 -i 974 -a 0 -x {21.0 3.0 483 ------- null} + -t 44.2588 -s 28 -d 1 -p ack -e 40 -c 0 -i 974 -a 0 -x {21.0 3.0 483 ------- null} - -t 44.2588 -s 28 -d 1 -p ack -e 40 -c 0 -i 974 -a 0 -x {21.0 3.0 483 ------- null} h -t 44.2588 -s 28 -d 1 -p ack -e 40 -c 0 -i 974 -a 0 -x {21.0 3.0 -1 ------- null} r -t 44.2604 -s 21 -d 28 -p ack -e 40 -c 0 -i 975 -a 0 -x {21.0 3.0 484 ------- null} + -t 44.2604 -s 28 -d 1 -p ack -e 40 -c 0 -i 975 -a 0 -x {21.0 3.0 484 ------- null} - -t 44.2604 -s 28 -d 1 -p ack -e 40 -c 0 -i 975 -a 0 -x {21.0 3.0 484 ------- null} h -t 44.2604 -s 28 -d 1 -p ack -e 40 -c 0 -i 975 -a 0 -x {21.0 3.0 -1 ------- null} r -t 44.262 -s 21 -d 28 -p ack -e 40 -c 0 -i 976 -a 0 -x {21.0 3.0 485 ------- null} + -t 44.262 -s 28 -d 1 -p ack -e 40 -c 0 -i 976 -a 0 -x {21.0 3.0 485 ------- null} - -t 44.262 -s 28 -d 1 -p ack -e 40 -c 0 -i 976 -a 0 -x {21.0 3.0 485 ------- null} h -t 44.262 -s 28 -d 1 -p ack -e 40 -c 0 -i 976 -a 0 -x {21.0 3.0 -1 ------- null} r -t 44.2636 -s 21 -d 28 -p ack -e 40 -c 0 -i 977 -a 0 -x {21.0 3.0 486 ------- null} + -t 44.2636 -s 28 -d 1 -p ack -e 40 -c 0 -i 977 -a 0 -x {21.0 3.0 486 ------- null} - -t 44.2636 -s 28 -d 1 -p ack -e 40 -c 0 -i 977 -a 0 -x {21.0 3.0 486 ------- null} h -t 44.2636 -s 28 -d 1 -p ack -e 40 -c 0 -i 977 -a 0 -x {21.0 3.0 -1 ------- null} r -t 44.2652 -s 21 -d 28 -p ack -e 40 -c 0 -i 978 -a 0 -x {21.0 3.0 487 ------- null} + -t 44.2652 -s 28 -d 1 -p ack -e 40 -c 0 -i 978 -a 0 -x {21.0 3.0 487 ------- null} - -t 44.2652 -s 28 -d 1 -p ack -e 40 -c 0 -i 978 -a 0 -x {21.0 3.0 487 ------- null} h -t 44.2652 -s 28 -d 1 -p ack -e 40 -c 0 -i 978 -a 0 -x {21.0 3.0 -1 ------- null} r -t 44.2668 -s 21 -d 28 -p ack -e 40 -c 0 -i 979 -a 0 -x {21.0 3.0 488 ------- null} + -t 44.2668 -s 28 -d 1 -p ack -e 40 -c 0 -i 979 -a 0 -x {21.0 3.0 488 ------- null} - -t 44.2668 -s 28 -d 1 -p ack -e 40 -c 0 -i 979 -a 0 -x {21.0 3.0 488 ------- null} h -t 44.2668 -s 28 -d 1 -p ack -e 40 -c 0 -i 979 -a 0 -x {21.0 3.0 -1 ------- null} r -t 44.2684 -s 21 -d 28 -p ack -e 40 -c 0 -i 980 -a 0 -x {21.0 3.0 489 ------- null} + -t 44.2684 -s 28 -d 1 -p ack -e 40 -c 0 -i 980 -a 0 -x {21.0 3.0 489 ------- null} - -t 44.2684 -s 28 -d 1 -p ack -e 40 -c 0 -i 980 -a 0 -x {21.0 3.0 489 ------- null} h -t 44.2684 -s 28 -d 1 -p ack -e 40 -c 0 -i 980 -a 0 -x {21.0 3.0 -1 ------- null} r -t 44.27 -s 21 -d 28 -p ack -e 40 -c 0 -i 981 -a 0 -x {21.0 3.0 490 ------- null} + -t 44.27 -s 28 -d 1 -p ack -e 40 -c 0 -i 981 -a 0 -x {21.0 3.0 490 ------- null} - -t 44.27 -s 28 -d 1 -p ack -e 40 -c 0 -i 981 -a 0 -x {21.0 3.0 490 ------- null} h -t 44.27 -s 28 -d 1 -p ack -e 40 -c 0 -i 981 -a 0 -x {21.0 3.0 -1 ------- null} r -t 44.5397 -s 28 -d 1 -p ack -e 40 -c 0 -i 962 -a 0 -x {21.0 3.0 471 ------- null} + -t 44.5397 -s 1 -d 3 -p ack -e 40 -c 0 -i 962 -a 0 -x {21.0 3.0 471 ------- null} - -t 44.5397 -s 1 -d 3 -p ack -e 40 -c 0 -i 962 -a 0 -x {21.0 3.0 471 ------- null} h -t 44.5397 -s 1 -d 3 -p ack -e 40 -c 0 -i 962 -a 0 -x {21.0 3.0 -1 ------- null} r -t 44.5413 -s 28 -d 1 -p ack -e 40 -c 0 -i 963 -a 0 -x {21.0 3.0 472 ------- null} + -t 44.5413 -s 1 -d 3 -p ack -e 40 -c 0 -i 963 -a 0 -x {21.0 3.0 472 ------- null} - -t 44.5413 -s 1 -d 3 -p ack -e 40 -c 0 -i 963 -a 0 -x {21.0 3.0 472 ------- null} h -t 44.5413 -s 1 -d 3 -p ack -e 40 -c 0 -i 963 -a 0 -x {21.0 3.0 -1 ------- null} r -t 44.5429 -s 28 -d 1 -p ack -e 40 -c 0 -i 964 -a 0 -x {21.0 3.0 473 ------- null} + -t 44.5429 -s 1 -d 3 -p ack -e 40 -c 0 -i 964 -a 0 -x {21.0 3.0 473 ------- null} - -t 44.5429 -s 1 -d 3 -p ack -e 40 -c 0 -i 964 -a 0 -x {21.0 3.0 473 ------- null} h -t 44.5429 -s 1 -d 3 -p ack -e 40 -c 0 -i 964 -a 0 -x {21.0 3.0 -1 ------- null} r -t 44.5445 -s 28 -d 1 -p ack -e 40 -c 0 -i 965 -a 0 -x {21.0 3.0 474 ------- null} + -t 44.5445 -s 1 -d 3 -p ack -e 40 -c 0 -i 965 -a 0 -x {21.0 3.0 474 ------- null} - -t 44.5445 -s 1 -d 3 -p ack -e 40 -c 0 -i 965 -a 0 -x {21.0 3.0 474 ------- null} h -t 44.5445 -s 1 -d 3 -p ack -e 40 -c 0 -i 965 -a 0 -x {21.0 3.0 -1 ------- null} r -t 44.5461 -s 28 -d 1 -p ack -e 40 -c 0 -i 966 -a 0 -x {21.0 3.0 475 ------- null} + -t 44.5461 -s 1 -d 3 -p ack -e 40 -c 0 -i 966 -a 0 -x {21.0 3.0 475 ------- null} - -t 44.5461 -s 1 -d 3 -p ack -e 40 -c 0 -i 966 -a 0 -x {21.0 3.0 475 ------- null} h -t 44.5461 -s 1 -d 3 -p ack -e 40 -c 0 -i 966 -a 0 -x {21.0 3.0 -1 ------- null} r -t 44.5477 -s 28 -d 1 -p ack -e 40 -c 0 -i 967 -a 0 -x {21.0 3.0 476 ------- null} + -t 44.5477 -s 1 -d 3 -p ack -e 40 -c 0 -i 967 -a 0 -x {21.0 3.0 476 ------- null} - -t 44.5477 -s 1 -d 3 -p ack -e 40 -c 0 -i 967 -a 0 -x {21.0 3.0 476 ------- null} h -t 44.5477 -s 1 -d 3 -p ack -e 40 -c 0 -i 967 -a 0 -x {21.0 3.0 -1 ------- null} r -t 44.5493 -s 28 -d 1 -p ack -e 40 -c 0 -i 968 -a 0 -x {21.0 3.0 477 ------- null} + -t 44.5493 -s 1 -d 3 -p ack -e 40 -c 0 -i 968 -a 0 -x {21.0 3.0 477 ------- null} - -t 44.5493 -s 1 -d 3 -p ack -e 40 -c 0 -i 968 -a 0 -x {21.0 3.0 477 ------- null} h -t 44.5493 -s 1 -d 3 -p ack -e 40 -c 0 -i 968 -a 0 -x {21.0 3.0 -1 ------- null} r -t 44.5509 -s 28 -d 1 -p ack -e 40 -c 0 -i 969 -a 0 -x {21.0 3.0 478 ------- null} + -t 44.5509 -s 1 -d 3 -p ack -e 40 -c 0 -i 969 -a 0 -x {21.0 3.0 478 ------- null} - -t 44.5509 -s 1 -d 3 -p ack -e 40 -c 0 -i 969 -a 0 -x {21.0 3.0 478 ------- null} h -t 44.5509 -s 1 -d 3 -p ack -e 40 -c 0 -i 969 -a 0 -x {21.0 3.0 -1 ------- null} r -t 44.5525 -s 28 -d 1 -p ack -e 40 -c 0 -i 970 -a 0 -x {21.0 3.0 479 ------- null} + -t 44.5525 -s 1 -d 3 -p ack -e 40 -c 0 -i 970 -a 0 -x {21.0 3.0 479 ------- null} - -t 44.5525 -s 1 -d 3 -p ack -e 40 -c 0 -i 970 -a 0 -x {21.0 3.0 479 ------- null} h -t 44.5525 -s 1 -d 3 -p ack -e 40 -c 0 -i 970 -a 0 -x {21.0 3.0 -1 ------- null} r -t 44.5541 -s 28 -d 1 -p ack -e 40 -c 0 -i 971 -a 0 -x {21.0 3.0 480 ------- null} + -t 44.5541 -s 1 -d 3 -p ack -e 40 -c 0 -i 971 -a 0 -x {21.0 3.0 480 ------- null} - -t 44.5541 -s 1 -d 3 -p ack -e 40 -c 0 -i 971 -a 0 -x {21.0 3.0 480 ------- null} h -t 44.5541 -s 1 -d 3 -p ack -e 40 -c 0 -i 971 -a 0 -x {21.0 3.0 -1 ------- null} r -t 44.5557 -s 28 -d 1 -p ack -e 40 -c 0 -i 972 -a 0 -x {21.0 3.0 481 ------- null} + -t 44.5557 -s 1 -d 3 -p ack -e 40 -c 0 -i 972 -a 0 -x {21.0 3.0 481 ------- null} - -t 44.5557 -s 1 -d 3 -p ack -e 40 -c 0 -i 972 -a 0 -x {21.0 3.0 481 ------- null} h -t 44.5557 -s 1 -d 3 -p ack -e 40 -c 0 -i 972 -a 0 -x {21.0 3.0 -1 ------- null} r -t 44.5573 -s 28 -d 1 -p ack -e 40 -c 0 -i 973 -a 0 -x {21.0 3.0 482 ------- null} + -t 44.5573 -s 1 -d 3 -p ack -e 40 -c 0 -i 973 -a 0 -x {21.0 3.0 482 ------- null} - -t 44.5573 -s 1 -d 3 -p ack -e 40 -c 0 -i 973 -a 0 -x {21.0 3.0 482 ------- null} h -t 44.5573 -s 1 -d 3 -p ack -e 40 -c 0 -i 973 -a 0 -x {21.0 3.0 -1 ------- null} r -t 44.5589 -s 28 -d 1 -p ack -e 40 -c 0 -i 974 -a 0 -x {21.0 3.0 483 ------- null} + -t 44.5589 -s 1 -d 3 -p ack -e 40 -c 0 -i 974 -a 0 -x {21.0 3.0 483 ------- null} - -t 44.5589 -s 1 -d 3 -p ack -e 40 -c 0 -i 974 -a 0 -x {21.0 3.0 483 ------- null} h -t 44.5589 -s 1 -d 3 -p ack -e 40 -c 0 -i 974 -a 0 -x {21.0 3.0 -1 ------- null} r -t 44.5605 -s 28 -d 1 -p ack -e 40 -c 0 -i 975 -a 0 -x {21.0 3.0 484 ------- null} + -t 44.5605 -s 1 -d 3 -p ack -e 40 -c 0 -i 975 -a 0 -x {21.0 3.0 484 ------- null} - -t 44.5605 -s 1 -d 3 -p ack -e 40 -c 0 -i 975 -a 0 -x {21.0 3.0 484 ------- null} h -t 44.5605 -s 1 -d 3 -p ack -e 40 -c 0 -i 975 -a 0 -x {21.0 3.0 -1 ------- null} r -t 44.5621 -s 28 -d 1 -p ack -e 40 -c 0 -i 976 -a 0 -x {21.0 3.0 485 ------- null} + -t 44.5621 -s 1 -d 3 -p ack -e 40 -c 0 -i 976 -a 0 -x {21.0 3.0 485 ------- null} - -t 44.5621 -s 1 -d 3 -p ack -e 40 -c 0 -i 976 -a 0 -x {21.0 3.0 485 ------- null} h -t 44.5621 -s 1 -d 3 -p ack -e 40 -c 0 -i 976 -a 0 -x {21.0 3.0 -1 ------- null} r -t 44.5637 -s 28 -d 1 -p ack -e 40 -c 0 -i 977 -a 0 -x {21.0 3.0 486 ------- null} + -t 44.5637 -s 1 -d 3 -p ack -e 40 -c 0 -i 977 -a 0 -x {21.0 3.0 486 ------- null} - -t 44.5637 -s 1 -d 3 -p ack -e 40 -c 0 -i 977 -a 0 -x {21.0 3.0 486 ------- null} h -t 44.5637 -s 1 -d 3 -p ack -e 40 -c 0 -i 977 -a 0 -x {21.0 3.0 -1 ------- null} r -t 44.5653 -s 28 -d 1 -p ack -e 40 -c 0 -i 978 -a 0 -x {21.0 3.0 487 ------- null} + -t 44.5653 -s 1 -d 3 -p ack -e 40 -c 0 -i 978 -a 0 -x {21.0 3.0 487 ------- null} - -t 44.5653 -s 1 -d 3 -p ack -e 40 -c 0 -i 978 -a 0 -x {21.0 3.0 487 ------- null} h -t 44.5653 -s 1 -d 3 -p ack -e 40 -c 0 -i 978 -a 0 -x {21.0 3.0 -1 ------- null} r -t 44.5669 -s 28 -d 1 -p ack -e 40 -c 0 -i 979 -a 0 -x {21.0 3.0 488 ------- null} + -t 44.5669 -s 1 -d 3 -p ack -e 40 -c 0 -i 979 -a 0 -x {21.0 3.0 488 ------- null} - -t 44.5669 -s 1 -d 3 -p ack -e 40 -c 0 -i 979 -a 0 -x {21.0 3.0 488 ------- null} h -t 44.5669 -s 1 -d 3 -p ack -e 40 -c 0 -i 979 -a 0 -x {21.0 3.0 -1 ------- null} r -t 44.5685 -s 28 -d 1 -p ack -e 40 -c 0 -i 980 -a 0 -x {21.0 3.0 489 ------- null} + -t 44.5685 -s 1 -d 3 -p ack -e 40 -c 0 -i 980 -a 0 -x {21.0 3.0 489 ------- null} - -t 44.5685 -s 1 -d 3 -p ack -e 40 -c 0 -i 980 -a 0 -x {21.0 3.0 489 ------- null} h -t 44.5685 -s 1 -d 3 -p ack -e 40 -c 0 -i 980 -a 0 -x {21.0 3.0 -1 ------- null} r -t 44.5701 -s 28 -d 1 -p ack -e 40 -c 0 -i 981 -a 0 -x {21.0 3.0 490 ------- null} + -t 44.5701 -s 1 -d 3 -p ack -e 40 -c 0 -i 981 -a 0 -x {21.0 3.0 490 ------- null} - -t 44.5701 -s 1 -d 3 -p ack -e 40 -c 0 -i 981 -a 0 -x {21.0 3.0 490 ------- null} h -t 44.5701 -s 1 -d 3 -p ack -e 40 -c 0 -i 981 -a 0 -x {21.0 3.0 -1 ------- null} r -t 44.6798 -s 1 -d 3 -p ack -e 40 -c 0 -i 962 -a 0 -x {21.0 3.0 471 ------- null} + -t 44.6798 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 982 -a 0 -x {3.0 21.0 491 ------- null} - -t 44.6798 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 982 -a 0 -x {3.0 21.0 491 ------- null} h -t 44.6798 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 982 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.6814 -s 1 -d 3 -p ack -e 40 -c 0 -i 963 -a 0 -x {21.0 3.0 472 ------- null} + -t 44.6814 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {3.0 21.0 492 ------- null} - -t 44.6814 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {3.0 21.0 492 ------- null} h -t 44.6814 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.683 -s 1 -d 3 -p ack -e 40 -c 0 -i 964 -a 0 -x {21.0 3.0 473 ------- null} + -t 44.683 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 984 -a 0 -x {3.0 21.0 493 ------- null} - -t 44.683 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 984 -a 0 -x {3.0 21.0 493 ------- null} h -t 44.683 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 984 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.6846 -s 1 -d 3 -p ack -e 40 -c 0 -i 965 -a 0 -x {21.0 3.0 474 ------- null} + -t 44.6846 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {3.0 21.0 494 ------- null} - -t 44.6846 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {3.0 21.0 494 ------- null} h -t 44.6846 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.6862 -s 1 -d 3 -p ack -e 40 -c 0 -i 966 -a 0 -x {21.0 3.0 475 ------- null} + -t 44.6862 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 986 -a 0 -x {3.0 21.0 495 ------- null} - -t 44.6862 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 986 -a 0 -x {3.0 21.0 495 ------- null} h -t 44.6862 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 986 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.6878 -s 1 -d 3 -p ack -e 40 -c 0 -i 967 -a 0 -x {21.0 3.0 476 ------- null} + -t 44.6878 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {3.0 21.0 496 ------- null} - -t 44.6878 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {3.0 21.0 496 ------- null} h -t 44.6878 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.6894 -s 1 -d 3 -p ack -e 40 -c 0 -i 968 -a 0 -x {21.0 3.0 477 ------- null} + -t 44.6894 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 988 -a 0 -x {3.0 21.0 497 ------- null} - -t 44.6894 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 988 -a 0 -x {3.0 21.0 497 ------- null} h -t 44.6894 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 988 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.691 -s 1 -d 3 -p ack -e 40 -c 0 -i 969 -a 0 -x {21.0 3.0 478 ------- null} + -t 44.691 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {3.0 21.0 498 ------- null} - -t 44.691 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {3.0 21.0 498 ------- null} h -t 44.691 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.6926 -s 1 -d 3 -p ack -e 40 -c 0 -i 970 -a 0 -x {21.0 3.0 479 ------- null} + -t 44.6926 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 990 -a 0 -x {3.0 21.0 499 ------- null} - -t 44.6926 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 990 -a 0 -x {3.0 21.0 499 ------- null} h -t 44.6926 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 990 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.6942 -s 1 -d 3 -p ack -e 40 -c 0 -i 971 -a 0 -x {21.0 3.0 480 ------- null} + -t 44.6942 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {3.0 21.0 500 ------- null} - -t 44.6942 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {3.0 21.0 500 ------- null} h -t 44.6942 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.6958 -s 1 -d 3 -p ack -e 40 -c 0 -i 972 -a 0 -x {21.0 3.0 481 ------- null} + -t 44.6958 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 992 -a 0 -x {3.0 21.0 501 ------- null} - -t 44.6958 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 992 -a 0 -x {3.0 21.0 501 ------- null} h -t 44.6958 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 992 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.6974 -s 1 -d 3 -p ack -e 40 -c 0 -i 973 -a 0 -x {21.0 3.0 482 ------- null} + -t 44.6974 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {3.0 21.0 502 ------- null} - -t 44.6974 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {3.0 21.0 502 ------- null} h -t 44.6974 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.699 -s 1 -d 3 -p ack -e 40 -c 0 -i 974 -a 0 -x {21.0 3.0 483 ------- null} + -t 44.699 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 994 -a 0 -x {3.0 21.0 503 ------- null} - -t 44.699 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 994 -a 0 -x {3.0 21.0 503 ------- null} h -t 44.699 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 994 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.7006 -s 1 -d 3 -p ack -e 40 -c 0 -i 975 -a 0 -x {21.0 3.0 484 ------- null} + -t 44.7006 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {3.0 21.0 504 ------- null} - -t 44.7006 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {3.0 21.0 504 ------- null} h -t 44.7006 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.7022 -s 1 -d 3 -p ack -e 40 -c 0 -i 976 -a 0 -x {21.0 3.0 485 ------- null} + -t 44.7022 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 996 -a 0 -x {3.0 21.0 505 ------- null} - -t 44.7022 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 996 -a 0 -x {3.0 21.0 505 ------- null} h -t 44.7022 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 996 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.7038 -s 1 -d 3 -p ack -e 40 -c 0 -i 977 -a 0 -x {21.0 3.0 486 ------- null} + -t 44.7038 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {3.0 21.0 506 ------- null} - -t 44.7038 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {3.0 21.0 506 ------- null} h -t 44.7038 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.7054 -s 1 -d 3 -p ack -e 40 -c 0 -i 978 -a 0 -x {21.0 3.0 487 ------- null} + -t 44.7054 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 998 -a 0 -x {3.0 21.0 507 ------- null} - -t 44.7054 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 998 -a 0 -x {3.0 21.0 507 ------- null} h -t 44.7054 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 998 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.707 -s 1 -d 3 -p ack -e 40 -c 0 -i 979 -a 0 -x {21.0 3.0 488 ------- null} + -t 44.707 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {3.0 21.0 508 ------- null} - -t 44.707 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {3.0 21.0 508 ------- null} h -t 44.707 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.7086 -s 1 -d 3 -p ack -e 40 -c 0 -i 980 -a 0 -x {21.0 3.0 489 ------- null} + -t 44.7086 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1000 -a 0 -x {3.0 21.0 509 ------- null} - -t 44.7086 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1000 -a 0 -x {3.0 21.0 509 ------- null} h -t 44.7086 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1000 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.7102 -s 1 -d 3 -p ack -e 40 -c 0 -i 981 -a 0 -x {21.0 3.0 490 ------- null} + -t 44.7102 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {3.0 21.0 510 ------- null} - -t 44.7102 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {3.0 21.0 510 ------- null} h -t 44.7102 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.8214 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 982 -a 0 -x {3.0 21.0 491 ------- null} + -t 44.8214 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 982 -a 0 -x {3.0 21.0 491 ------- null} - -t 44.8214 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 982 -a 0 -x {3.0 21.0 491 ------- null} h -t 44.8214 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 982 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.823 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {3.0 21.0 492 ------- null} + -t 44.823 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {3.0 21.0 492 ------- null} - -t 44.823 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {3.0 21.0 492 ------- null} h -t 44.823 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.8246 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 984 -a 0 -x {3.0 21.0 493 ------- null} + -t 44.8246 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 984 -a 0 -x {3.0 21.0 493 ------- null} - -t 44.8246 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 984 -a 0 -x {3.0 21.0 493 ------- null} h -t 44.8246 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 984 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.8262 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {3.0 21.0 494 ------- null} + -t 44.8262 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {3.0 21.0 494 ------- null} - -t 44.8262 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {3.0 21.0 494 ------- null} h -t 44.8262 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.8278 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 986 -a 0 -x {3.0 21.0 495 ------- null} + -t 44.8278 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 986 -a 0 -x {3.0 21.0 495 ------- null} - -t 44.8278 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 986 -a 0 -x {3.0 21.0 495 ------- null} h -t 44.8278 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 986 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.8294 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {3.0 21.0 496 ------- null} + -t 44.8294 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {3.0 21.0 496 ------- null} - -t 44.8294 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {3.0 21.0 496 ------- null} h -t 44.8294 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.831 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 988 -a 0 -x {3.0 21.0 497 ------- null} + -t 44.831 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 988 -a 0 -x {3.0 21.0 497 ------- null} - -t 44.831 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 988 -a 0 -x {3.0 21.0 497 ------- null} h -t 44.831 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 988 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.8326 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {3.0 21.0 498 ------- null} + -t 44.8326 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {3.0 21.0 498 ------- null} - -t 44.8326 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {3.0 21.0 498 ------- null} h -t 44.8326 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.8342 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 990 -a 0 -x {3.0 21.0 499 ------- null} + -t 44.8342 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 990 -a 0 -x {3.0 21.0 499 ------- null} - -t 44.8342 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 990 -a 0 -x {3.0 21.0 499 ------- null} h -t 44.8342 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 990 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.8358 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {3.0 21.0 500 ------- null} + -t 44.8358 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {3.0 21.0 500 ------- null} - -t 44.8358 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {3.0 21.0 500 ------- null} h -t 44.8358 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.8374 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 992 -a 0 -x {3.0 21.0 501 ------- null} + -t 44.8374 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 992 -a 0 -x {3.0 21.0 501 ------- null} - -t 44.8374 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 992 -a 0 -x {3.0 21.0 501 ------- null} h -t 44.8374 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 992 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.839 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {3.0 21.0 502 ------- null} + -t 44.839 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {3.0 21.0 502 ------- null} - -t 44.839 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {3.0 21.0 502 ------- null} h -t 44.839 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.8406 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 994 -a 0 -x {3.0 21.0 503 ------- null} + -t 44.8406 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 994 -a 0 -x {3.0 21.0 503 ------- null} - -t 44.8406 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 994 -a 0 -x {3.0 21.0 503 ------- null} h -t 44.8406 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 994 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.8422 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {3.0 21.0 504 ------- null} + -t 44.8422 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {3.0 21.0 504 ------- null} - -t 44.8422 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {3.0 21.0 504 ------- null} h -t 44.8422 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.8438 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 996 -a 0 -x {3.0 21.0 505 ------- null} + -t 44.8438 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 996 -a 0 -x {3.0 21.0 505 ------- null} - -t 44.8438 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 996 -a 0 -x {3.0 21.0 505 ------- null} h -t 44.8438 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 996 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.8454 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {3.0 21.0 506 ------- null} + -t 44.8454 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {3.0 21.0 506 ------- null} - -t 44.8454 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {3.0 21.0 506 ------- null} h -t 44.8454 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.847 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 998 -a 0 -x {3.0 21.0 507 ------- null} + -t 44.847 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 998 -a 0 -x {3.0 21.0 507 ------- null} - -t 44.847 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 998 -a 0 -x {3.0 21.0 507 ------- null} h -t 44.847 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 998 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.8486 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {3.0 21.0 508 ------- null} + -t 44.8486 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {3.0 21.0 508 ------- null} - -t 44.8486 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {3.0 21.0 508 ------- null} h -t 44.8486 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.8502 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1000 -a 0 -x {3.0 21.0 509 ------- null} + -t 44.8502 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1000 -a 0 -x {3.0 21.0 509 ------- null} - -t 44.8502 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1000 -a 0 -x {3.0 21.0 509 ------- null} h -t 44.8502 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1000 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.8518 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {3.0 21.0 510 ------- null} + -t 44.8518 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {3.0 21.0 510 ------- null} - -t 44.8518 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {3.0 21.0 510 ------- null} h -t 44.8518 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {3.0 21.0 -1 ------- null} r -t 45.123 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 982 -a 0 -x {3.0 21.0 491 ------- null} + -t 45.123 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 982 -a 0 -x {3.0 21.0 491 ------- null} - -t 45.123 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 982 -a 0 -x {3.0 21.0 491 ------- null} h -t 45.123 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 982 -a 0 -x {3.0 21.0 -1 ------- null} r -t 45.1246 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {3.0 21.0 492 ------- null} + -t 45.1246 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {3.0 21.0 492 ------- null} - -t 45.1246 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {3.0 21.0 492 ------- null} h -t 45.1246 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {3.0 21.0 -1 ------- null} r -t 45.1262 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 984 -a 0 -x {3.0 21.0 493 ------- null} + -t 45.1262 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 984 -a 0 -x {3.0 21.0 493 ------- null} - -t 45.1262 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 984 -a 0 -x {3.0 21.0 493 ------- null} h -t 45.1262 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 984 -a 0 -x {3.0 21.0 -1 ------- null} r -t 45.1278 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {3.0 21.0 494 ------- null} + -t 45.1278 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {3.0 21.0 494 ------- null} - -t 45.1278 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {3.0 21.0 494 ------- null} h -t 45.1278 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {3.0 21.0 -1 ------- null} r -t 45.1294 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 986 -a 0 -x {3.0 21.0 495 ------- null} + -t 45.1294 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 986 -a 0 -x {3.0 21.0 495 ------- null} - -t 45.1294 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 986 -a 0 -x {3.0 21.0 495 ------- null} h -t 45.1294 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 986 -a 0 -x {3.0 21.0 -1 ------- null} r -t 45.131 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {3.0 21.0 496 ------- null} + -t 45.131 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {3.0 21.0 496 ------- null} - -t 45.131 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {3.0 21.0 496 ------- null} h -t 45.131 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {3.0 21.0 -1 ------- null} r -t 45.1326 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 988 -a 0 -x {3.0 21.0 497 ------- null} + -t 45.1326 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 988 -a 0 -x {3.0 21.0 497 ------- null} - -t 45.1326 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 988 -a 0 -x {3.0 21.0 497 ------- null} h -t 45.1326 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 988 -a 0 -x {3.0 21.0 -1 ------- null} r -t 45.1342 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {3.0 21.0 498 ------- null} + -t 45.1342 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {3.0 21.0 498 ------- null} - -t 45.1342 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {3.0 21.0 498 ------- null} h -t 45.1342 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {3.0 21.0 -1 ------- null} r -t 45.1358 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 990 -a 0 -x {3.0 21.0 499 ------- null} + -t 45.1358 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 990 -a 0 -x {3.0 21.0 499 ------- null} - -t 45.1358 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 990 -a 0 -x {3.0 21.0 499 ------- null} h -t 45.1358 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 990 -a 0 -x {3.0 21.0 -1 ------- null} r -t 45.1374 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {3.0 21.0 500 ------- null} + -t 45.1374 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {3.0 21.0 500 ------- null} - -t 45.1374 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {3.0 21.0 500 ------- null} h -t 45.1374 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {3.0 21.0 -1 ------- null} r -t 45.139 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 992 -a 0 -x {3.0 21.0 501 ------- null} + -t 45.139 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 992 -a 0 -x {3.0 21.0 501 ------- null} - -t 45.139 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 992 -a 0 -x {3.0 21.0 501 ------- null} h -t 45.139 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 992 -a 0 -x {3.0 21.0 -1 ------- null} r -t 45.1406 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {3.0 21.0 502 ------- null} + -t 45.1406 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {3.0 21.0 502 ------- null} - -t 45.1406 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {3.0 21.0 502 ------- null} h -t 45.1406 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {3.0 21.0 -1 ------- null} r -t 45.1422 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 994 -a 0 -x {3.0 21.0 503 ------- null} + -t 45.1422 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 994 -a 0 -x {3.0 21.0 503 ------- null} - -t 45.1422 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 994 -a 0 -x {3.0 21.0 503 ------- null} h -t 45.1422 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 994 -a 0 -x {3.0 21.0 -1 ------- null} r -t 45.1438 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {3.0 21.0 504 ------- null} + -t 45.1438 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {3.0 21.0 504 ------- null} - -t 45.1438 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {3.0 21.0 504 ------- null} h -t 45.1438 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {3.0 21.0 -1 ------- null} r -t 45.1454 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 996 -a 0 -x {3.0 21.0 505 ------- null} + -t 45.1454 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 996 -a 0 -x {3.0 21.0 505 ------- null} - -t 45.1454 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 996 -a 0 -x {3.0 21.0 505 ------- null} h -t 45.1454 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 996 -a 0 -x {3.0 21.0 -1 ------- null} r -t 45.147 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {3.0 21.0 506 ------- null} + -t 45.147 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {3.0 21.0 506 ------- null} - -t 45.147 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {3.0 21.0 506 ------- null} h -t 45.147 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {3.0 21.0 -1 ------- null} r -t 45.1486 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 998 -a 0 -x {3.0 21.0 507 ------- null} + -t 45.1486 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 998 -a 0 -x {3.0 21.0 507 ------- null} - -t 45.1486 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 998 -a 0 -x {3.0 21.0 507 ------- null} h -t 45.1486 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 998 -a 0 -x {3.0 21.0 -1 ------- null} r -t 45.1502 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {3.0 21.0 508 ------- null} + -t 45.1502 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {3.0 21.0 508 ------- null} - -t 45.1502 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {3.0 21.0 508 ------- null} h -t 45.1502 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {3.0 21.0 -1 ------- null} r -t 45.1518 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1000 -a 0 -x {3.0 21.0 509 ------- null} + -t 45.1518 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1000 -a 0 -x {3.0 21.0 509 ------- null} - -t 45.1518 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1000 -a 0 -x {3.0 21.0 509 ------- null} h -t 45.1518 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1000 -a 0 -x {3.0 21.0 -1 ------- null} r -t 45.1534 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {3.0 21.0 510 ------- null} + -t 45.1534 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {3.0 21.0 510 ------- null} - -t 45.1534 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {3.0 21.0 510 ------- null} h -t 45.1534 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {3.0 21.0 -1 ------- null} r -t 45.4746 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 982 -a 0 -x {3.0 21.0 491 ------- null} + -t 45.4746 -s 21 -d 28 -p ack -e 40 -c 0 -i 1002 -a 0 -x {21.0 3.0 491 ------- null} - -t 45.4746 -s 21 -d 28 -p ack -e 40 -c 0 -i 1002 -a 0 -x {21.0 3.0 491 ------- null} h -t 45.4746 -s 21 -d 28 -p ack -e 40 -c 0 -i 1002 -a 0 -x {21.0 3.0 -1 ------- null} r -t 45.4762 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {3.0 21.0 492 ------- null} + -t 45.4762 -s 21 -d 28 -p ack -e 40 -c 0 -i 1003 -a 0 -x {21.0 3.0 492 ------- null} - -t 45.4762 -s 21 -d 28 -p ack -e 40 -c 0 -i 1003 -a 0 -x {21.0 3.0 492 ------- null} h -t 45.4762 -s 21 -d 28 -p ack -e 40 -c 0 -i 1003 -a 0 -x {21.0 3.0 -1 ------- null} r -t 45.4778 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 984 -a 0 -x {3.0 21.0 493 ------- null} + -t 45.4778 -s 21 -d 28 -p ack -e 40 -c 0 -i 1004 -a 0 -x {21.0 3.0 493 ------- null} - -t 45.4778 -s 21 -d 28 -p ack -e 40 -c 0 -i 1004 -a 0 -x {21.0 3.0 493 ------- null} h -t 45.4778 -s 21 -d 28 -p ack -e 40 -c 0 -i 1004 -a 0 -x {21.0 3.0 -1 ------- null} r -t 45.4794 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {3.0 21.0 494 ------- null} + -t 45.4794 -s 21 -d 28 -p ack -e 40 -c 0 -i 1005 -a 0 -x {21.0 3.0 494 ------- null} - -t 45.4794 -s 21 -d 28 -p ack -e 40 -c 0 -i 1005 -a 0 -x {21.0 3.0 494 ------- null} h -t 45.4794 -s 21 -d 28 -p ack -e 40 -c 0 -i 1005 -a 0 -x {21.0 3.0 -1 ------- null} r -t 45.481 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 986 -a 0 -x {3.0 21.0 495 ------- null} + -t 45.481 -s 21 -d 28 -p ack -e 40 -c 0 -i 1006 -a 0 -x {21.0 3.0 495 ------- null} - -t 45.481 -s 21 -d 28 -p ack -e 40 -c 0 -i 1006 -a 0 -x {21.0 3.0 495 ------- null} h -t 45.481 -s 21 -d 28 -p ack -e 40 -c 0 -i 1006 -a 0 -x {21.0 3.0 -1 ------- null} r -t 45.4826 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {3.0 21.0 496 ------- null} + -t 45.4826 -s 21 -d 28 -p ack -e 40 -c 0 -i 1007 -a 0 -x {21.0 3.0 496 ------- null} - -t 45.4826 -s 21 -d 28 -p ack -e 40 -c 0 -i 1007 -a 0 -x {21.0 3.0 496 ------- null} h -t 45.4826 -s 21 -d 28 -p ack -e 40 -c 0 -i 1007 -a 0 -x {21.0 3.0 -1 ------- null} r -t 45.4842 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 988 -a 0 -x {3.0 21.0 497 ------- null} + -t 45.4842 -s 21 -d 28 -p ack -e 40 -c 0 -i 1008 -a 0 -x {21.0 3.0 497 ------- null} - -t 45.4842 -s 21 -d 28 -p ack -e 40 -c 0 -i 1008 -a 0 -x {21.0 3.0 497 ------- null} h -t 45.4842 -s 21 -d 28 -p ack -e 40 -c 0 -i 1008 -a 0 -x {21.0 3.0 -1 ------- null} r -t 45.4858 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {3.0 21.0 498 ------- null} + -t 45.4858 -s 21 -d 28 -p ack -e 40 -c 0 -i 1009 -a 0 -x {21.0 3.0 498 ------- null} - -t 45.4858 -s 21 -d 28 -p ack -e 40 -c 0 -i 1009 -a 0 -x {21.0 3.0 498 ------- null} h -t 45.4858 -s 21 -d 28 -p ack -e 40 -c 0 -i 1009 -a 0 -x {21.0 3.0 -1 ------- null} r -t 45.4874 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 990 -a 0 -x {3.0 21.0 499 ------- null} + -t 45.4874 -s 21 -d 28 -p ack -e 40 -c 0 -i 1010 -a 0 -x {21.0 3.0 499 ------- null} - -t 45.4874 -s 21 -d 28 -p ack -e 40 -c 0 -i 1010 -a 0 -x {21.0 3.0 499 ------- null} h -t 45.4874 -s 21 -d 28 -p ack -e 40 -c 0 -i 1010 -a 0 -x {21.0 3.0 -1 ------- null} r -t 45.489 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {3.0 21.0 500 ------- null} + -t 45.489 -s 21 -d 28 -p ack -e 40 -c 0 -i 1011 -a 0 -x {21.0 3.0 500 ------- null} - -t 45.489 -s 21 -d 28 -p ack -e 40 -c 0 -i 1011 -a 0 -x {21.0 3.0 500 ------- null} h -t 45.489 -s 21 -d 28 -p ack -e 40 -c 0 -i 1011 -a 0 -x {21.0 3.0 -1 ------- null} r -t 45.4906 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 992 -a 0 -x {3.0 21.0 501 ------- null} + -t 45.4906 -s 21 -d 28 -p ack -e 40 -c 0 -i 1012 -a 0 -x {21.0 3.0 501 ------- null} - -t 45.4906 -s 21 -d 28 -p ack -e 40 -c 0 -i 1012 -a 0 -x {21.0 3.0 501 ------- null} h -t 45.4906 -s 21 -d 28 -p ack -e 40 -c 0 -i 1012 -a 0 -x {21.0 3.0 -1 ------- null} r -t 45.4922 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {3.0 21.0 502 ------- null} + -t 45.4922 -s 21 -d 28 -p ack -e 40 -c 0 -i 1013 -a 0 -x {21.0 3.0 502 ------- null} - -t 45.4922 -s 21 -d 28 -p ack -e 40 -c 0 -i 1013 -a 0 -x {21.0 3.0 502 ------- null} h -t 45.4922 -s 21 -d 28 -p ack -e 40 -c 0 -i 1013 -a 0 -x {21.0 3.0 -1 ------- null} r -t 45.4938 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 994 -a 0 -x {3.0 21.0 503 ------- null} + -t 45.4938 -s 21 -d 28 -p ack -e 40 -c 0 -i 1014 -a 0 -x {21.0 3.0 503 ------- null} - -t 45.4938 -s 21 -d 28 -p ack -e 40 -c 0 -i 1014 -a 0 -x {21.0 3.0 503 ------- null} h -t 45.4938 -s 21 -d 28 -p ack -e 40 -c 0 -i 1014 -a 0 -x {21.0 3.0 -1 ------- null} r -t 45.4954 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {3.0 21.0 504 ------- null} + -t 45.4954 -s 21 -d 28 -p ack -e 40 -c 0 -i 1015 -a 0 -x {21.0 3.0 504 ------- null} - -t 45.4954 -s 21 -d 28 -p ack -e 40 -c 0 -i 1015 -a 0 -x {21.0 3.0 504 ------- null} h -t 45.4954 -s 21 -d 28 -p ack -e 40 -c 0 -i 1015 -a 0 -x {21.0 3.0 -1 ------- null} r -t 45.497 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 996 -a 0 -x {3.0 21.0 505 ------- null} + -t 45.497 -s 21 -d 28 -p ack -e 40 -c 0 -i 1016 -a 0 -x {21.0 3.0 505 ------- null} - -t 45.497 -s 21 -d 28 -p ack -e 40 -c 0 -i 1016 -a 0 -x {21.0 3.0 505 ------- null} h -t 45.497 -s 21 -d 28 -p ack -e 40 -c 0 -i 1016 -a 0 -x {21.0 3.0 -1 ------- null} r -t 45.4986 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {3.0 21.0 506 ------- null} + -t 45.4986 -s 21 -d 28 -p ack -e 40 -c 0 -i 1017 -a 0 -x {21.0 3.0 506 ------- null} - -t 45.4986 -s 21 -d 28 -p ack -e 40 -c 0 -i 1017 -a 0 -x {21.0 3.0 506 ------- null} h -t 45.4986 -s 21 -d 28 -p ack -e 40 -c 0 -i 1017 -a 0 -x {21.0 3.0 -1 ------- null} r -t 45.5002 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 998 -a 0 -x {3.0 21.0 507 ------- null} + -t 45.5002 -s 21 -d 28 -p ack -e 40 -c 0 -i 1018 -a 0 -x {21.0 3.0 507 ------- null} - -t 45.5002 -s 21 -d 28 -p ack -e 40 -c 0 -i 1018 -a 0 -x {21.0 3.0 507 ------- null} h -t 45.5002 -s 21 -d 28 -p ack -e 40 -c 0 -i 1018 -a 0 -x {21.0 3.0 -1 ------- null} r -t 45.5018 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {3.0 21.0 508 ------- null} + -t 45.5018 -s 21 -d 28 -p ack -e 40 -c 0 -i 1019 -a 0 -x {21.0 3.0 508 ------- null} - -t 45.5018 -s 21 -d 28 -p ack -e 40 -c 0 -i 1019 -a 0 -x {21.0 3.0 508 ------- null} h -t 45.5018 -s 21 -d 28 -p ack -e 40 -c 0 -i 1019 -a 0 -x {21.0 3.0 -1 ------- null} r -t 45.5034 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1000 -a 0 -x {3.0 21.0 509 ------- null} + -t 45.5034 -s 21 -d 28 -p ack -e 40 -c 0 -i 1020 -a 0 -x {21.0 3.0 509 ------- null} - -t 45.5034 -s 21 -d 28 -p ack -e 40 -c 0 -i 1020 -a 0 -x {21.0 3.0 509 ------- null} h -t 45.5034 -s 21 -d 28 -p ack -e 40 -c 0 -i 1020 -a 0 -x {21.0 3.0 -1 ------- null} r -t 45.505 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {3.0 21.0 510 ------- null} + -t 45.505 -s 21 -d 28 -p ack -e 40 -c 0 -i 1021 -a 0 -x {21.0 3.0 510 ------- null} - -t 45.505 -s 21 -d 28 -p ack -e 40 -c 0 -i 1021 -a 0 -x {21.0 3.0 510 ------- null} h -t 45.505 -s 21 -d 28 -p ack -e 40 -c 0 -i 1021 -a 0 -x {21.0 3.0 -1 ------- null} r -t 45.8246 -s 21 -d 28 -p ack -e 40 -c 0 -i 1002 -a 0 -x {21.0 3.0 491 ------- null} + -t 45.8246 -s 28 -d 1 -p ack -e 40 -c 0 -i 1002 -a 0 -x {21.0 3.0 491 ------- null} - -t 45.8246 -s 28 -d 1 -p ack -e 40 -c 0 -i 1002 -a 0 -x {21.0 3.0 491 ------- null} h -t 45.8246 -s 28 -d 1 -p ack -e 40 -c 0 -i 1002 -a 0 -x {21.0 3.0 -1 ------- null} r -t 45.8262 -s 21 -d 28 -p ack -e 40 -c 0 -i 1003 -a 0 -x {21.0 3.0 492 ------- null} + -t 45.8262 -s 28 -d 1 -p ack -e 40 -c 0 -i 1003 -a 0 -x {21.0 3.0 492 ------- null} - -t 45.8262 -s 28 -d 1 -p ack -e 40 -c 0 -i 1003 -a 0 -x {21.0 3.0 492 ------- null} h -t 45.8262 -s 28 -d 1 -p ack -e 40 -c 0 -i 1003 -a 0 -x {21.0 3.0 -1 ------- null} r -t 45.8278 -s 21 -d 28 -p ack -e 40 -c 0 -i 1004 -a 0 -x {21.0 3.0 493 ------- null} + -t 45.8278 -s 28 -d 1 -p ack -e 40 -c 0 -i 1004 -a 0 -x {21.0 3.0 493 ------- null} - -t 45.8278 -s 28 -d 1 -p ack -e 40 -c 0 -i 1004 -a 0 -x {21.0 3.0 493 ------- null} h -t 45.8278 -s 28 -d 1 -p ack -e 40 -c 0 -i 1004 -a 0 -x {21.0 3.0 -1 ------- null} r -t 45.8294 -s 21 -d 28 -p ack -e 40 -c 0 -i 1005 -a 0 -x {21.0 3.0 494 ------- null} + -t 45.8294 -s 28 -d 1 -p ack -e 40 -c 0 -i 1005 -a 0 -x {21.0 3.0 494 ------- null} - -t 45.8294 -s 28 -d 1 -p ack -e 40 -c 0 -i 1005 -a 0 -x {21.0 3.0 494 ------- null} h -t 45.8294 -s 28 -d 1 -p ack -e 40 -c 0 -i 1005 -a 0 -x {21.0 3.0 -1 ------- null} r -t 45.831 -s 21 -d 28 -p ack -e 40 -c 0 -i 1006 -a 0 -x {21.0 3.0 495 ------- null} + -t 45.831 -s 28 -d 1 -p ack -e 40 -c 0 -i 1006 -a 0 -x {21.0 3.0 495 ------- null} - -t 45.831 -s 28 -d 1 -p ack -e 40 -c 0 -i 1006 -a 0 -x {21.0 3.0 495 ------- null} h -t 45.831 -s 28 -d 1 -p ack -e 40 -c 0 -i 1006 -a 0 -x {21.0 3.0 -1 ------- null} r -t 45.8326 -s 21 -d 28 -p ack -e 40 -c 0 -i 1007 -a 0 -x {21.0 3.0 496 ------- null} + -t 45.8326 -s 28 -d 1 -p ack -e 40 -c 0 -i 1007 -a 0 -x {21.0 3.0 496 ------- null} - -t 45.8326 -s 28 -d 1 -p ack -e 40 -c 0 -i 1007 -a 0 -x {21.0 3.0 496 ------- null} h -t 45.8326 -s 28 -d 1 -p ack -e 40 -c 0 -i 1007 -a 0 -x {21.0 3.0 -1 ------- null} r -t 45.8342 -s 21 -d 28 -p ack -e 40 -c 0 -i 1008 -a 0 -x {21.0 3.0 497 ------- null} + -t 45.8342 -s 28 -d 1 -p ack -e 40 -c 0 -i 1008 -a 0 -x {21.0 3.0 497 ------- null} - -t 45.8342 -s 28 -d 1 -p ack -e 40 -c 0 -i 1008 -a 0 -x {21.0 3.0 497 ------- null} h -t 45.8342 -s 28 -d 1 -p ack -e 40 -c 0 -i 1008 -a 0 -x {21.0 3.0 -1 ------- null} r -t 45.8358 -s 21 -d 28 -p ack -e 40 -c 0 -i 1009 -a 0 -x {21.0 3.0 498 ------- null} + -t 45.8358 -s 28 -d 1 -p ack -e 40 -c 0 -i 1009 -a 0 -x {21.0 3.0 498 ------- null} - -t 45.8358 -s 28 -d 1 -p ack -e 40 -c 0 -i 1009 -a 0 -x {21.0 3.0 498 ------- null} h -t 45.8358 -s 28 -d 1 -p ack -e 40 -c 0 -i 1009 -a 0 -x {21.0 3.0 -1 ------- null} r -t 45.8374 -s 21 -d 28 -p ack -e 40 -c 0 -i 1010 -a 0 -x {21.0 3.0 499 ------- null} + -t 45.8374 -s 28 -d 1 -p ack -e 40 -c 0 -i 1010 -a 0 -x {21.0 3.0 499 ------- null} - -t 45.8374 -s 28 -d 1 -p ack -e 40 -c 0 -i 1010 -a 0 -x {21.0 3.0 499 ------- null} h -t 45.8374 -s 28 -d 1 -p ack -e 40 -c 0 -i 1010 -a 0 -x {21.0 3.0 -1 ------- null} r -t 45.839 -s 21 -d 28 -p ack -e 40 -c 0 -i 1011 -a 0 -x {21.0 3.0 500 ------- null} + -t 45.839 -s 28 -d 1 -p ack -e 40 -c 0 -i 1011 -a 0 -x {21.0 3.0 500 ------- null} - -t 45.839 -s 28 -d 1 -p ack -e 40 -c 0 -i 1011 -a 0 -x {21.0 3.0 500 ------- null} h -t 45.839 -s 28 -d 1 -p ack -e 40 -c 0 -i 1011 -a 0 -x {21.0 3.0 -1 ------- null} r -t 45.8406 -s 21 -d 28 -p ack -e 40 -c 0 -i 1012 -a 0 -x {21.0 3.0 501 ------- null} + -t 45.8406 -s 28 -d 1 -p ack -e 40 -c 0 -i 1012 -a 0 -x {21.0 3.0 501 ------- null} - -t 45.8406 -s 28 -d 1 -p ack -e 40 -c 0 -i 1012 -a 0 -x {21.0 3.0 501 ------- null} h -t 45.8406 -s 28 -d 1 -p ack -e 40 -c 0 -i 1012 -a 0 -x {21.0 3.0 -1 ------- null} r -t 45.8422 -s 21 -d 28 -p ack -e 40 -c 0 -i 1013 -a 0 -x {21.0 3.0 502 ------- null} + -t 45.8422 -s 28 -d 1 -p ack -e 40 -c 0 -i 1013 -a 0 -x {21.0 3.0 502 ------- null} - -t 45.8422 -s 28 -d 1 -p ack -e 40 -c 0 -i 1013 -a 0 -x {21.0 3.0 502 ------- null} h -t 45.8422 -s 28 -d 1 -p ack -e 40 -c 0 -i 1013 -a 0 -x {21.0 3.0 -1 ------- null} r -t 45.8438 -s 21 -d 28 -p ack -e 40 -c 0 -i 1014 -a 0 -x {21.0 3.0 503 ------- null} + -t 45.8438 -s 28 -d 1 -p ack -e 40 -c 0 -i 1014 -a 0 -x {21.0 3.0 503 ------- null} - -t 45.8438 -s 28 -d 1 -p ack -e 40 -c 0 -i 1014 -a 0 -x {21.0 3.0 503 ------- null} h -t 45.8438 -s 28 -d 1 -p ack -e 40 -c 0 -i 1014 -a 0 -x {21.0 3.0 -1 ------- null} r -t 45.8454 -s 21 -d 28 -p ack -e 40 -c 0 -i 1015 -a 0 -x {21.0 3.0 504 ------- null} + -t 45.8454 -s 28 -d 1 -p ack -e 40 -c 0 -i 1015 -a 0 -x {21.0 3.0 504 ------- null} - -t 45.8454 -s 28 -d 1 -p ack -e 40 -c 0 -i 1015 -a 0 -x {21.0 3.0 504 ------- null} h -t 45.8454 -s 28 -d 1 -p ack -e 40 -c 0 -i 1015 -a 0 -x {21.0 3.0 -1 ------- null} r -t 45.847 -s 21 -d 28 -p ack -e 40 -c 0 -i 1016 -a 0 -x {21.0 3.0 505 ------- null} + -t 45.847 -s 28 -d 1 -p ack -e 40 -c 0 -i 1016 -a 0 -x {21.0 3.0 505 ------- null} - -t 45.847 -s 28 -d 1 -p ack -e 40 -c 0 -i 1016 -a 0 -x {21.0 3.0 505 ------- null} h -t 45.847 -s 28 -d 1 -p ack -e 40 -c 0 -i 1016 -a 0 -x {21.0 3.0 -1 ------- null} r -t 45.8486 -s 21 -d 28 -p ack -e 40 -c 0 -i 1017 -a 0 -x {21.0 3.0 506 ------- null} + -t 45.8486 -s 28 -d 1 -p ack -e 40 -c 0 -i 1017 -a 0 -x {21.0 3.0 506 ------- null} - -t 45.8486 -s 28 -d 1 -p ack -e 40 -c 0 -i 1017 -a 0 -x {21.0 3.0 506 ------- null} h -t 45.8486 -s 28 -d 1 -p ack -e 40 -c 0 -i 1017 -a 0 -x {21.0 3.0 -1 ------- null} r -t 45.8502 -s 21 -d 28 -p ack -e 40 -c 0 -i 1018 -a 0 -x {21.0 3.0 507 ------- null} + -t 45.8502 -s 28 -d 1 -p ack -e 40 -c 0 -i 1018 -a 0 -x {21.0 3.0 507 ------- null} - -t 45.8502 -s 28 -d 1 -p ack -e 40 -c 0 -i 1018 -a 0 -x {21.0 3.0 507 ------- null} h -t 45.8502 -s 28 -d 1 -p ack -e 40 -c 0 -i 1018 -a 0 -x {21.0 3.0 -1 ------- null} r -t 45.8518 -s 21 -d 28 -p ack -e 40 -c 0 -i 1019 -a 0 -x {21.0 3.0 508 ------- null} + -t 45.8518 -s 28 -d 1 -p ack -e 40 -c 0 -i 1019 -a 0 -x {21.0 3.0 508 ------- null} - -t 45.8518 -s 28 -d 1 -p ack -e 40 -c 0 -i 1019 -a 0 -x {21.0 3.0 508 ------- null} h -t 45.8518 -s 28 -d 1 -p ack -e 40 -c 0 -i 1019 -a 0 -x {21.0 3.0 -1 ------- null} r -t 45.8534 -s 21 -d 28 -p ack -e 40 -c 0 -i 1020 -a 0 -x {21.0 3.0 509 ------- null} + -t 45.8534 -s 28 -d 1 -p ack -e 40 -c 0 -i 1020 -a 0 -x {21.0 3.0 509 ------- null} - -t 45.8534 -s 28 -d 1 -p ack -e 40 -c 0 -i 1020 -a 0 -x {21.0 3.0 509 ------- null} h -t 45.8534 -s 28 -d 1 -p ack -e 40 -c 0 -i 1020 -a 0 -x {21.0 3.0 -1 ------- null} r -t 45.855 -s 21 -d 28 -p ack -e 40 -c 0 -i 1021 -a 0 -x {21.0 3.0 510 ------- null} + -t 45.855 -s 28 -d 1 -p ack -e 40 -c 0 -i 1021 -a 0 -x {21.0 3.0 510 ------- null} - -t 45.855 -s 28 -d 1 -p ack -e 40 -c 0 -i 1021 -a 0 -x {21.0 3.0 510 ------- null} h -t 45.855 -s 28 -d 1 -p ack -e 40 -c 0 -i 1021 -a 0 -x {21.0 3.0 -1 ------- null} r -t 46.1247 -s 28 -d 1 -p ack -e 40 -c 0 -i 1002 -a 0 -x {21.0 3.0 491 ------- null} + -t 46.1247 -s 1 -d 3 -p ack -e 40 -c 0 -i 1002 -a 0 -x {21.0 3.0 491 ------- null} - -t 46.1247 -s 1 -d 3 -p ack -e 40 -c 0 -i 1002 -a 0 -x {21.0 3.0 491 ------- null} h -t 46.1247 -s 1 -d 3 -p ack -e 40 -c 0 -i 1002 -a 0 -x {21.0 3.0 -1 ------- null} r -t 46.1263 -s 28 -d 1 -p ack -e 40 -c 0 -i 1003 -a 0 -x {21.0 3.0 492 ------- null} + -t 46.1263 -s 1 -d 3 -p ack -e 40 -c 0 -i 1003 -a 0 -x {21.0 3.0 492 ------- null} - -t 46.1263 -s 1 -d 3 -p ack -e 40 -c 0 -i 1003 -a 0 -x {21.0 3.0 492 ------- null} h -t 46.1263 -s 1 -d 3 -p ack -e 40 -c 0 -i 1003 -a 0 -x {21.0 3.0 -1 ------- null} r -t 46.1279 -s 28 -d 1 -p ack -e 40 -c 0 -i 1004 -a 0 -x {21.0 3.0 493 ------- null} + -t 46.1279 -s 1 -d 3 -p ack -e 40 -c 0 -i 1004 -a 0 -x {21.0 3.0 493 ------- null} - -t 46.1279 -s 1 -d 3 -p ack -e 40 -c 0 -i 1004 -a 0 -x {21.0 3.0 493 ------- null} h -t 46.1279 -s 1 -d 3 -p ack -e 40 -c 0 -i 1004 -a 0 -x {21.0 3.0 -1 ------- null} r -t 46.1295 -s 28 -d 1 -p ack -e 40 -c 0 -i 1005 -a 0 -x {21.0 3.0 494 ------- null} + -t 46.1295 -s 1 -d 3 -p ack -e 40 -c 0 -i 1005 -a 0 -x {21.0 3.0 494 ------- null} - -t 46.1295 -s 1 -d 3 -p ack -e 40 -c 0 -i 1005 -a 0 -x {21.0 3.0 494 ------- null} h -t 46.1295 -s 1 -d 3 -p ack -e 40 -c 0 -i 1005 -a 0 -x {21.0 3.0 -1 ------- null} r -t 46.1311 -s 28 -d 1 -p ack -e 40 -c 0 -i 1006 -a 0 -x {21.0 3.0 495 ------- null} + -t 46.1311 -s 1 -d 3 -p ack -e 40 -c 0 -i 1006 -a 0 -x {21.0 3.0 495 ------- null} - -t 46.1311 -s 1 -d 3 -p ack -e 40 -c 0 -i 1006 -a 0 -x {21.0 3.0 495 ------- null} h -t 46.1311 -s 1 -d 3 -p ack -e 40 -c 0 -i 1006 -a 0 -x {21.0 3.0 -1 ------- null} r -t 46.1327 -s 28 -d 1 -p ack -e 40 -c 0 -i 1007 -a 0 -x {21.0 3.0 496 ------- null} + -t 46.1327 -s 1 -d 3 -p ack -e 40 -c 0 -i 1007 -a 0 -x {21.0 3.0 496 ------- null} - -t 46.1327 -s 1 -d 3 -p ack -e 40 -c 0 -i 1007 -a 0 -x {21.0 3.0 496 ------- null} h -t 46.1327 -s 1 -d 3 -p ack -e 40 -c 0 -i 1007 -a 0 -x {21.0 3.0 -1 ------- null} r -t 46.1343 -s 28 -d 1 -p ack -e 40 -c 0 -i 1008 -a 0 -x {21.0 3.0 497 ------- null} + -t 46.1343 -s 1 -d 3 -p ack -e 40 -c 0 -i 1008 -a 0 -x {21.0 3.0 497 ------- null} - -t 46.1343 -s 1 -d 3 -p ack -e 40 -c 0 -i 1008 -a 0 -x {21.0 3.0 497 ------- null} h -t 46.1343 -s 1 -d 3 -p ack -e 40 -c 0 -i 1008 -a 0 -x {21.0 3.0 -1 ------- null} r -t 46.1359 -s 28 -d 1 -p ack -e 40 -c 0 -i 1009 -a 0 -x {21.0 3.0 498 ------- null} + -t 46.1359 -s 1 -d 3 -p ack -e 40 -c 0 -i 1009 -a 0 -x {21.0 3.0 498 ------- null} - -t 46.1359 -s 1 -d 3 -p ack -e 40 -c 0 -i 1009 -a 0 -x {21.0 3.0 498 ------- null} h -t 46.1359 -s 1 -d 3 -p ack -e 40 -c 0 -i 1009 -a 0 -x {21.0 3.0 -1 ------- null} r -t 46.1375 -s 28 -d 1 -p ack -e 40 -c 0 -i 1010 -a 0 -x {21.0 3.0 499 ------- null} + -t 46.1375 -s 1 -d 3 -p ack -e 40 -c 0 -i 1010 -a 0 -x {21.0 3.0 499 ------- null} - -t 46.1375 -s 1 -d 3 -p ack -e 40 -c 0 -i 1010 -a 0 -x {21.0 3.0 499 ------- null} h -t 46.1375 -s 1 -d 3 -p ack -e 40 -c 0 -i 1010 -a 0 -x {21.0 3.0 -1 ------- null} r -t 46.1391 -s 28 -d 1 -p ack -e 40 -c 0 -i 1011 -a 0 -x {21.0 3.0 500 ------- null} + -t 46.1391 -s 1 -d 3 -p ack -e 40 -c 0 -i 1011 -a 0 -x {21.0 3.0 500 ------- null} - -t 46.1391 -s 1 -d 3 -p ack -e 40 -c 0 -i 1011 -a 0 -x {21.0 3.0 500 ------- null} h -t 46.1391 -s 1 -d 3 -p ack -e 40 -c 0 -i 1011 -a 0 -x {21.0 3.0 -1 ------- null} r -t 46.1407 -s 28 -d 1 -p ack -e 40 -c 0 -i 1012 -a 0 -x {21.0 3.0 501 ------- null} + -t 46.1407 -s 1 -d 3 -p ack -e 40 -c 0 -i 1012 -a 0 -x {21.0 3.0 501 ------- null} - -t 46.1407 -s 1 -d 3 -p ack -e 40 -c 0 -i 1012 -a 0 -x {21.0 3.0 501 ------- null} h -t 46.1407 -s 1 -d 3 -p ack -e 40 -c 0 -i 1012 -a 0 -x {21.0 3.0 -1 ------- null} r -t 46.1423 -s 28 -d 1 -p ack -e 40 -c 0 -i 1013 -a 0 -x {21.0 3.0 502 ------- null} + -t 46.1423 -s 1 -d 3 -p ack -e 40 -c 0 -i 1013 -a 0 -x {21.0 3.0 502 ------- null} - -t 46.1423 -s 1 -d 3 -p ack -e 40 -c 0 -i 1013 -a 0 -x {21.0 3.0 502 ------- null} h -t 46.1423 -s 1 -d 3 -p ack -e 40 -c 0 -i 1013 -a 0 -x {21.0 3.0 -1 ------- null} r -t 46.1439 -s 28 -d 1 -p ack -e 40 -c 0 -i 1014 -a 0 -x {21.0 3.0 503 ------- null} + -t 46.1439 -s 1 -d 3 -p ack -e 40 -c 0 -i 1014 -a 0 -x {21.0 3.0 503 ------- null} - -t 46.1439 -s 1 -d 3 -p ack -e 40 -c 0 -i 1014 -a 0 -x {21.0 3.0 503 ------- null} h -t 46.1439 -s 1 -d 3 -p ack -e 40 -c 0 -i 1014 -a 0 -x {21.0 3.0 -1 ------- null} r -t 46.1455 -s 28 -d 1 -p ack -e 40 -c 0 -i 1015 -a 0 -x {21.0 3.0 504 ------- null} + -t 46.1455 -s 1 -d 3 -p ack -e 40 -c 0 -i 1015 -a 0 -x {21.0 3.0 504 ------- null} - -t 46.1455 -s 1 -d 3 -p ack -e 40 -c 0 -i 1015 -a 0 -x {21.0 3.0 504 ------- null} h -t 46.1455 -s 1 -d 3 -p ack -e 40 -c 0 -i 1015 -a 0 -x {21.0 3.0 -1 ------- null} r -t 46.1471 -s 28 -d 1 -p ack -e 40 -c 0 -i 1016 -a 0 -x {21.0 3.0 505 ------- null} + -t 46.1471 -s 1 -d 3 -p ack -e 40 -c 0 -i 1016 -a 0 -x {21.0 3.0 505 ------- null} - -t 46.1471 -s 1 -d 3 -p ack -e 40 -c 0 -i 1016 -a 0 -x {21.0 3.0 505 ------- null} h -t 46.1471 -s 1 -d 3 -p ack -e 40 -c 0 -i 1016 -a 0 -x {21.0 3.0 -1 ------- null} r -t 46.1487 -s 28 -d 1 -p ack -e 40 -c 0 -i 1017 -a 0 -x {21.0 3.0 506 ------- null} + -t 46.1487 -s 1 -d 3 -p ack -e 40 -c 0 -i 1017 -a 0 -x {21.0 3.0 506 ------- null} - -t 46.1487 -s 1 -d 3 -p ack -e 40 -c 0 -i 1017 -a 0 -x {21.0 3.0 506 ------- null} h -t 46.1487 -s 1 -d 3 -p ack -e 40 -c 0 -i 1017 -a 0 -x {21.0 3.0 -1 ------- null} r -t 46.1503 -s 28 -d 1 -p ack -e 40 -c 0 -i 1018 -a 0 -x {21.0 3.0 507 ------- null} + -t 46.1503 -s 1 -d 3 -p ack -e 40 -c 0 -i 1018 -a 0 -x {21.0 3.0 507 ------- null} - -t 46.1503 -s 1 -d 3 -p ack -e 40 -c 0 -i 1018 -a 0 -x {21.0 3.0 507 ------- null} h -t 46.1503 -s 1 -d 3 -p ack -e 40 -c 0 -i 1018 -a 0 -x {21.0 3.0 -1 ------- null} r -t 46.1519 -s 28 -d 1 -p ack -e 40 -c 0 -i 1019 -a 0 -x {21.0 3.0 508 ------- null} + -t 46.1519 -s 1 -d 3 -p ack -e 40 -c 0 -i 1019 -a 0 -x {21.0 3.0 508 ------- null} - -t 46.1519 -s 1 -d 3 -p ack -e 40 -c 0 -i 1019 -a 0 -x {21.0 3.0 508 ------- null} h -t 46.1519 -s 1 -d 3 -p ack -e 40 -c 0 -i 1019 -a 0 -x {21.0 3.0 -1 ------- null} r -t 46.1535 -s 28 -d 1 -p ack -e 40 -c 0 -i 1020 -a 0 -x {21.0 3.0 509 ------- null} + -t 46.1535 -s 1 -d 3 -p ack -e 40 -c 0 -i 1020 -a 0 -x {21.0 3.0 509 ------- null} - -t 46.1535 -s 1 -d 3 -p ack -e 40 -c 0 -i 1020 -a 0 -x {21.0 3.0 509 ------- null} h -t 46.1535 -s 1 -d 3 -p ack -e 40 -c 0 -i 1020 -a 0 -x {21.0 3.0 -1 ------- null} r -t 46.1551 -s 28 -d 1 -p ack -e 40 -c 0 -i 1021 -a 0 -x {21.0 3.0 510 ------- null} + -t 46.1551 -s 1 -d 3 -p ack -e 40 -c 0 -i 1021 -a 0 -x {21.0 3.0 510 ------- null} - -t 46.1551 -s 1 -d 3 -p ack -e 40 -c 0 -i 1021 -a 0 -x {21.0 3.0 510 ------- null} h -t 46.1551 -s 1 -d 3 -p ack -e 40 -c 0 -i 1021 -a 0 -x {21.0 3.0 -1 ------- null} r -t 46.2648 -s 1 -d 3 -p ack -e 40 -c 0 -i 1002 -a 0 -x {21.0 3.0 491 ------- null} + -t 46.2648 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1022 -a 0 -x {3.0 21.0 511 ------- null} - -t 46.2648 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1022 -a 0 -x {3.0 21.0 511 ------- null} h -t 46.2648 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1022 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.2664 -s 1 -d 3 -p ack -e 40 -c 0 -i 1003 -a 0 -x {21.0 3.0 492 ------- null} + -t 46.2664 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {3.0 21.0 512 ------- null} - -t 46.2664 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {3.0 21.0 512 ------- null} h -t 46.2664 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.268 -s 1 -d 3 -p ack -e 40 -c 0 -i 1004 -a 0 -x {21.0 3.0 493 ------- null} + -t 46.268 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1024 -a 0 -x {3.0 21.0 513 ------- null} - -t 46.268 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1024 -a 0 -x {3.0 21.0 513 ------- null} h -t 46.268 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1024 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.2696 -s 1 -d 3 -p ack -e 40 -c 0 -i 1005 -a 0 -x {21.0 3.0 494 ------- null} + -t 46.2696 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {3.0 21.0 514 ------- null} - -t 46.2696 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {3.0 21.0 514 ------- null} h -t 46.2696 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.2712 -s 1 -d 3 -p ack -e 40 -c 0 -i 1006 -a 0 -x {21.0 3.0 495 ------- null} + -t 46.2712 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1026 -a 0 -x {3.0 21.0 515 ------- null} - -t 46.2712 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1026 -a 0 -x {3.0 21.0 515 ------- null} h -t 46.2712 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1026 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.2728 -s 1 -d 3 -p ack -e 40 -c 0 -i 1007 -a 0 -x {21.0 3.0 496 ------- null} + -t 46.2728 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {3.0 21.0 516 ------- null} - -t 46.2728 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {3.0 21.0 516 ------- null} h -t 46.2728 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.2744 -s 1 -d 3 -p ack -e 40 -c 0 -i 1008 -a 0 -x {21.0 3.0 497 ------- null} + -t 46.2744 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1028 -a 0 -x {3.0 21.0 517 ------- null} - -t 46.2744 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1028 -a 0 -x {3.0 21.0 517 ------- null} h -t 46.2744 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1028 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.276 -s 1 -d 3 -p ack -e 40 -c 0 -i 1009 -a 0 -x {21.0 3.0 498 ------- null} + -t 46.276 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {3.0 21.0 518 ------- null} - -t 46.276 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {3.0 21.0 518 ------- null} h -t 46.276 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.2776 -s 1 -d 3 -p ack -e 40 -c 0 -i 1010 -a 0 -x {21.0 3.0 499 ------- null} + -t 46.2776 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1030 -a 0 -x {3.0 21.0 519 ------- null} - -t 46.2776 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1030 -a 0 -x {3.0 21.0 519 ------- null} h -t 46.2776 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1030 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.2792 -s 1 -d 3 -p ack -e 40 -c 0 -i 1011 -a 0 -x {21.0 3.0 500 ------- null} + -t 46.2792 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {3.0 21.0 520 ------- null} - -t 46.2792 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {3.0 21.0 520 ------- null} h -t 46.2792 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.2808 -s 1 -d 3 -p ack -e 40 -c 0 -i 1012 -a 0 -x {21.0 3.0 501 ------- null} + -t 46.2808 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1032 -a 0 -x {3.0 21.0 521 ------- null} - -t 46.2808 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1032 -a 0 -x {3.0 21.0 521 ------- null} h -t 46.2808 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1032 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.2824 -s 1 -d 3 -p ack -e 40 -c 0 -i 1013 -a 0 -x {21.0 3.0 502 ------- null} + -t 46.2824 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {3.0 21.0 522 ------- null} - -t 46.2824 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {3.0 21.0 522 ------- null} h -t 46.2824 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.284 -s 1 -d 3 -p ack -e 40 -c 0 -i 1014 -a 0 -x {21.0 3.0 503 ------- null} + -t 46.284 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1034 -a 0 -x {3.0 21.0 523 ------- null} - -t 46.284 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1034 -a 0 -x {3.0 21.0 523 ------- null} h -t 46.284 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1034 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.2856 -s 1 -d 3 -p ack -e 40 -c 0 -i 1015 -a 0 -x {21.0 3.0 504 ------- null} + -t 46.2856 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {3.0 21.0 524 ------- null} - -t 46.2856 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {3.0 21.0 524 ------- null} h -t 46.2856 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.2872 -s 1 -d 3 -p ack -e 40 -c 0 -i 1016 -a 0 -x {21.0 3.0 505 ------- null} + -t 46.2872 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1036 -a 0 -x {3.0 21.0 525 ------- null} - -t 46.2872 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1036 -a 0 -x {3.0 21.0 525 ------- null} h -t 46.2872 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1036 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.2888 -s 1 -d 3 -p ack -e 40 -c 0 -i 1017 -a 0 -x {21.0 3.0 506 ------- null} + -t 46.2888 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {3.0 21.0 526 ------- null} - -t 46.2888 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {3.0 21.0 526 ------- null} h -t 46.2888 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.2904 -s 1 -d 3 -p ack -e 40 -c 0 -i 1018 -a 0 -x {21.0 3.0 507 ------- null} + -t 46.2904 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1038 -a 0 -x {3.0 21.0 527 ------- null} - -t 46.2904 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1038 -a 0 -x {3.0 21.0 527 ------- null} h -t 46.2904 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1038 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.292 -s 1 -d 3 -p ack -e 40 -c 0 -i 1019 -a 0 -x {21.0 3.0 508 ------- null} + -t 46.292 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {3.0 21.0 528 ------- null} - -t 46.292 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {3.0 21.0 528 ------- null} h -t 46.292 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.2936 -s 1 -d 3 -p ack -e 40 -c 0 -i 1020 -a 0 -x {21.0 3.0 509 ------- null} + -t 46.2936 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1040 -a 0 -x {3.0 21.0 529 ------- null} - -t 46.2936 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1040 -a 0 -x {3.0 21.0 529 ------- null} h -t 46.2936 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1040 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.2952 -s 1 -d 3 -p ack -e 40 -c 0 -i 1021 -a 0 -x {21.0 3.0 510 ------- null} + -t 46.2952 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {3.0 21.0 530 ------- null} - -t 46.2952 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {3.0 21.0 530 ------- null} h -t 46.2952 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.4064 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1022 -a 0 -x {3.0 21.0 511 ------- null} + -t 46.4064 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1022 -a 0 -x {3.0 21.0 511 ------- null} - -t 46.4064 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1022 -a 0 -x {3.0 21.0 511 ------- null} h -t 46.4064 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1022 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.408 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {3.0 21.0 512 ------- null} + -t 46.408 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {3.0 21.0 512 ------- null} - -t 46.408 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {3.0 21.0 512 ------- null} h -t 46.408 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.4096 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1024 -a 0 -x {3.0 21.0 513 ------- null} + -t 46.4096 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1024 -a 0 -x {3.0 21.0 513 ------- null} - -t 46.4096 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1024 -a 0 -x {3.0 21.0 513 ------- null} h -t 46.4096 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1024 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.4112 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {3.0 21.0 514 ------- null} + -t 46.4112 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {3.0 21.0 514 ------- null} - -t 46.4112 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {3.0 21.0 514 ------- null} h -t 46.4112 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.4128 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1026 -a 0 -x {3.0 21.0 515 ------- null} + -t 46.4128 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1026 -a 0 -x {3.0 21.0 515 ------- null} - -t 46.4128 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1026 -a 0 -x {3.0 21.0 515 ------- null} h -t 46.4128 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1026 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.4144 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {3.0 21.0 516 ------- null} + -t 46.4144 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {3.0 21.0 516 ------- null} - -t 46.4144 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {3.0 21.0 516 ------- null} h -t 46.4144 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.416 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1028 -a 0 -x {3.0 21.0 517 ------- null} + -t 46.416 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1028 -a 0 -x {3.0 21.0 517 ------- null} - -t 46.416 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1028 -a 0 -x {3.0 21.0 517 ------- null} h -t 46.416 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1028 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.4176 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {3.0 21.0 518 ------- null} + -t 46.4176 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {3.0 21.0 518 ------- null} - -t 46.4176 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {3.0 21.0 518 ------- null} h -t 46.4176 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.4192 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1030 -a 0 -x {3.0 21.0 519 ------- null} + -t 46.4192 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1030 -a 0 -x {3.0 21.0 519 ------- null} - -t 46.4192 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1030 -a 0 -x {3.0 21.0 519 ------- null} h -t 46.4192 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1030 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.4208 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {3.0 21.0 520 ------- null} + -t 46.4208 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {3.0 21.0 520 ------- null} - -t 46.4208 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {3.0 21.0 520 ------- null} h -t 46.4208 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.4224 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1032 -a 0 -x {3.0 21.0 521 ------- null} + -t 46.4224 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1032 -a 0 -x {3.0 21.0 521 ------- null} - -t 46.4224 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1032 -a 0 -x {3.0 21.0 521 ------- null} h -t 46.4224 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1032 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.424 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {3.0 21.0 522 ------- null} + -t 46.424 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {3.0 21.0 522 ------- null} - -t 46.424 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {3.0 21.0 522 ------- null} h -t 46.424 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.4256 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1034 -a 0 -x {3.0 21.0 523 ------- null} + -t 46.4256 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1034 -a 0 -x {3.0 21.0 523 ------- null} - -t 46.4256 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1034 -a 0 -x {3.0 21.0 523 ------- null} h -t 46.4256 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1034 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.4272 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {3.0 21.0 524 ------- null} + -t 46.4272 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {3.0 21.0 524 ------- null} - -t 46.4272 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {3.0 21.0 524 ------- null} h -t 46.4272 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.4288 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1036 -a 0 -x {3.0 21.0 525 ------- null} + -t 46.4288 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1036 -a 0 -x {3.0 21.0 525 ------- null} - -t 46.4288 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1036 -a 0 -x {3.0 21.0 525 ------- null} h -t 46.4288 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1036 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.4304 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {3.0 21.0 526 ------- null} + -t 46.4304 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {3.0 21.0 526 ------- null} - -t 46.4304 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {3.0 21.0 526 ------- null} h -t 46.4304 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.432 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1038 -a 0 -x {3.0 21.0 527 ------- null} + -t 46.432 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1038 -a 0 -x {3.0 21.0 527 ------- null} - -t 46.432 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1038 -a 0 -x {3.0 21.0 527 ------- null} h -t 46.432 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1038 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.4336 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {3.0 21.0 528 ------- null} + -t 46.4336 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {3.0 21.0 528 ------- null} - -t 46.4336 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {3.0 21.0 528 ------- null} h -t 46.4336 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.4352 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1040 -a 0 -x {3.0 21.0 529 ------- null} + -t 46.4352 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1040 -a 0 -x {3.0 21.0 529 ------- null} - -t 46.4352 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1040 -a 0 -x {3.0 21.0 529 ------- null} h -t 46.4352 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1040 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.4368 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {3.0 21.0 530 ------- null} + -t 46.4368 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {3.0 21.0 530 ------- null} - -t 46.4368 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {3.0 21.0 530 ------- null} h -t 46.4368 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.708 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1022 -a 0 -x {3.0 21.0 511 ------- null} + -t 46.708 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1022 -a 0 -x {3.0 21.0 511 ------- null} - -t 46.708 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1022 -a 0 -x {3.0 21.0 511 ------- null} h -t 46.708 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1022 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.7096 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {3.0 21.0 512 ------- null} + -t 46.7096 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {3.0 21.0 512 ------- null} - -t 46.7096 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {3.0 21.0 512 ------- null} h -t 46.7096 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.7112 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1024 -a 0 -x {3.0 21.0 513 ------- null} + -t 46.7112 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1024 -a 0 -x {3.0 21.0 513 ------- null} - -t 46.7112 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1024 -a 0 -x {3.0 21.0 513 ------- null} h -t 46.7112 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1024 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.7128 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {3.0 21.0 514 ------- null} + -t 46.7128 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {3.0 21.0 514 ------- null} - -t 46.7128 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {3.0 21.0 514 ------- null} h -t 46.7128 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.7144 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1026 -a 0 -x {3.0 21.0 515 ------- null} + -t 46.7144 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1026 -a 0 -x {3.0 21.0 515 ------- null} - -t 46.7144 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1026 -a 0 -x {3.0 21.0 515 ------- null} h -t 46.7144 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1026 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.716 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {3.0 21.0 516 ------- null} + -t 46.716 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {3.0 21.0 516 ------- null} - -t 46.716 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {3.0 21.0 516 ------- null} h -t 46.716 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.7176 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1028 -a 0 -x {3.0 21.0 517 ------- null} + -t 46.7176 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1028 -a 0 -x {3.0 21.0 517 ------- null} - -t 46.7176 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1028 -a 0 -x {3.0 21.0 517 ------- null} h -t 46.7176 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1028 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.7192 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {3.0 21.0 518 ------- null} + -t 46.7192 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {3.0 21.0 518 ------- null} - -t 46.7192 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {3.0 21.0 518 ------- null} h -t 46.7192 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.7208 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1030 -a 0 -x {3.0 21.0 519 ------- null} + -t 46.7208 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1030 -a 0 -x {3.0 21.0 519 ------- null} - -t 46.7208 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1030 -a 0 -x {3.0 21.0 519 ------- null} h -t 46.7208 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1030 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.7224 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {3.0 21.0 520 ------- null} + -t 46.7224 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {3.0 21.0 520 ------- null} - -t 46.7224 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {3.0 21.0 520 ------- null} h -t 46.7224 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.724 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1032 -a 0 -x {3.0 21.0 521 ------- null} + -t 46.724 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1032 -a 0 -x {3.0 21.0 521 ------- null} - -t 46.724 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1032 -a 0 -x {3.0 21.0 521 ------- null} h -t 46.724 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1032 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.7256 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {3.0 21.0 522 ------- null} + -t 46.7256 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {3.0 21.0 522 ------- null} - -t 46.7256 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {3.0 21.0 522 ------- null} h -t 46.7256 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.7272 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1034 -a 0 -x {3.0 21.0 523 ------- null} + -t 46.7272 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1034 -a 0 -x {3.0 21.0 523 ------- null} - -t 46.7272 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1034 -a 0 -x {3.0 21.0 523 ------- null} h -t 46.7272 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1034 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.7288 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {3.0 21.0 524 ------- null} + -t 46.7288 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {3.0 21.0 524 ------- null} - -t 46.7288 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {3.0 21.0 524 ------- null} h -t 46.7288 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.7304 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1036 -a 0 -x {3.0 21.0 525 ------- null} + -t 46.7304 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1036 -a 0 -x {3.0 21.0 525 ------- null} - -t 46.7304 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1036 -a 0 -x {3.0 21.0 525 ------- null} h -t 46.7304 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1036 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.732 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {3.0 21.0 526 ------- null} + -t 46.732 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {3.0 21.0 526 ------- null} - -t 46.732 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {3.0 21.0 526 ------- null} h -t 46.732 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.7336 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1038 -a 0 -x {3.0 21.0 527 ------- null} + -t 46.7336 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1038 -a 0 -x {3.0 21.0 527 ------- null} - -t 46.7336 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1038 -a 0 -x {3.0 21.0 527 ------- null} h -t 46.7336 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1038 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.7352 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {3.0 21.0 528 ------- null} + -t 46.7352 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {3.0 21.0 528 ------- null} - -t 46.7352 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {3.0 21.0 528 ------- null} h -t 46.7352 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.7368 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1040 -a 0 -x {3.0 21.0 529 ------- null} + -t 46.7368 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1040 -a 0 -x {3.0 21.0 529 ------- null} - -t 46.7368 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1040 -a 0 -x {3.0 21.0 529 ------- null} h -t 46.7368 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1040 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.7384 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {3.0 21.0 530 ------- null} + -t 46.7384 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {3.0 21.0 530 ------- null} - -t 46.7384 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {3.0 21.0 530 ------- null} h -t 46.7384 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.0596 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1022 -a 0 -x {3.0 21.0 511 ------- null} + -t 47.0596 -s 21 -d 28 -p ack -e 40 -c 0 -i 1042 -a 0 -x {21.0 3.0 511 ------- null} - -t 47.0596 -s 21 -d 28 -p ack -e 40 -c 0 -i 1042 -a 0 -x {21.0 3.0 511 ------- null} h -t 47.0596 -s 21 -d 28 -p ack -e 40 -c 0 -i 1042 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.0612 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {3.0 21.0 512 ------- null} + -t 47.0612 -s 21 -d 28 -p ack -e 40 -c 0 -i 1043 -a 0 -x {21.0 3.0 512 ------- null} - -t 47.0612 -s 21 -d 28 -p ack -e 40 -c 0 -i 1043 -a 0 -x {21.0 3.0 512 ------- null} h -t 47.0612 -s 21 -d 28 -p ack -e 40 -c 0 -i 1043 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.0628 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1024 -a 0 -x {3.0 21.0 513 ------- null} + -t 47.0628 -s 21 -d 28 -p ack -e 40 -c 0 -i 1044 -a 0 -x {21.0 3.0 513 ------- null} - -t 47.0628 -s 21 -d 28 -p ack -e 40 -c 0 -i 1044 -a 0 -x {21.0 3.0 513 ------- null} h -t 47.0628 -s 21 -d 28 -p ack -e 40 -c 0 -i 1044 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.0644 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {3.0 21.0 514 ------- null} + -t 47.0644 -s 21 -d 28 -p ack -e 40 -c 0 -i 1045 -a 0 -x {21.0 3.0 514 ------- null} - -t 47.0644 -s 21 -d 28 -p ack -e 40 -c 0 -i 1045 -a 0 -x {21.0 3.0 514 ------- null} h -t 47.0644 -s 21 -d 28 -p ack -e 40 -c 0 -i 1045 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.066 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1026 -a 0 -x {3.0 21.0 515 ------- null} + -t 47.066 -s 21 -d 28 -p ack -e 40 -c 0 -i 1046 -a 0 -x {21.0 3.0 515 ------- null} - -t 47.066 -s 21 -d 28 -p ack -e 40 -c 0 -i 1046 -a 0 -x {21.0 3.0 515 ------- null} h -t 47.066 -s 21 -d 28 -p ack -e 40 -c 0 -i 1046 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.0676 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {3.0 21.0 516 ------- null} + -t 47.0676 -s 21 -d 28 -p ack -e 40 -c 0 -i 1047 -a 0 -x {21.0 3.0 516 ------- null} - -t 47.0676 -s 21 -d 28 -p ack -e 40 -c 0 -i 1047 -a 0 -x {21.0 3.0 516 ------- null} h -t 47.0676 -s 21 -d 28 -p ack -e 40 -c 0 -i 1047 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.0692 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1028 -a 0 -x {3.0 21.0 517 ------- null} + -t 47.0692 -s 21 -d 28 -p ack -e 40 -c 0 -i 1048 -a 0 -x {21.0 3.0 517 ------- null} - -t 47.0692 -s 21 -d 28 -p ack -e 40 -c 0 -i 1048 -a 0 -x {21.0 3.0 517 ------- null} h -t 47.0692 -s 21 -d 28 -p ack -e 40 -c 0 -i 1048 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.0708 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {3.0 21.0 518 ------- null} + -t 47.0708 -s 21 -d 28 -p ack -e 40 -c 0 -i 1049 -a 0 -x {21.0 3.0 518 ------- null} - -t 47.0708 -s 21 -d 28 -p ack -e 40 -c 0 -i 1049 -a 0 -x {21.0 3.0 518 ------- null} h -t 47.0708 -s 21 -d 28 -p ack -e 40 -c 0 -i 1049 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.0724 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1030 -a 0 -x {3.0 21.0 519 ------- null} + -t 47.0724 -s 21 -d 28 -p ack -e 40 -c 0 -i 1050 -a 0 -x {21.0 3.0 519 ------- null} - -t 47.0724 -s 21 -d 28 -p ack -e 40 -c 0 -i 1050 -a 0 -x {21.0 3.0 519 ------- null} h -t 47.0724 -s 21 -d 28 -p ack -e 40 -c 0 -i 1050 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.074 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {3.0 21.0 520 ------- null} + -t 47.074 -s 21 -d 28 -p ack -e 40 -c 0 -i 1051 -a 0 -x {21.0 3.0 520 ------- null} - -t 47.074 -s 21 -d 28 -p ack -e 40 -c 0 -i 1051 -a 0 -x {21.0 3.0 520 ------- null} h -t 47.074 -s 21 -d 28 -p ack -e 40 -c 0 -i 1051 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.0756 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1032 -a 0 -x {3.0 21.0 521 ------- null} + -t 47.0756 -s 21 -d 28 -p ack -e 40 -c 0 -i 1052 -a 0 -x {21.0 3.0 521 ------- null} - -t 47.0756 -s 21 -d 28 -p ack -e 40 -c 0 -i 1052 -a 0 -x {21.0 3.0 521 ------- null} h -t 47.0756 -s 21 -d 28 -p ack -e 40 -c 0 -i 1052 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.0772 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {3.0 21.0 522 ------- null} + -t 47.0772 -s 21 -d 28 -p ack -e 40 -c 0 -i 1053 -a 0 -x {21.0 3.0 522 ------- null} - -t 47.0772 -s 21 -d 28 -p ack -e 40 -c 0 -i 1053 -a 0 -x {21.0 3.0 522 ------- null} h -t 47.0772 -s 21 -d 28 -p ack -e 40 -c 0 -i 1053 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.0788 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1034 -a 0 -x {3.0 21.0 523 ------- null} + -t 47.0788 -s 21 -d 28 -p ack -e 40 -c 0 -i 1054 -a 0 -x {21.0 3.0 523 ------- null} - -t 47.0788 -s 21 -d 28 -p ack -e 40 -c 0 -i 1054 -a 0 -x {21.0 3.0 523 ------- null} h -t 47.0788 -s 21 -d 28 -p ack -e 40 -c 0 -i 1054 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.0804 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {3.0 21.0 524 ------- null} + -t 47.0804 -s 21 -d 28 -p ack -e 40 -c 0 -i 1055 -a 0 -x {21.0 3.0 524 ------- null} - -t 47.0804 -s 21 -d 28 -p ack -e 40 -c 0 -i 1055 -a 0 -x {21.0 3.0 524 ------- null} h -t 47.0804 -s 21 -d 28 -p ack -e 40 -c 0 -i 1055 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.082 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1036 -a 0 -x {3.0 21.0 525 ------- null} + -t 47.082 -s 21 -d 28 -p ack -e 40 -c 0 -i 1056 -a 0 -x {21.0 3.0 525 ------- null} - -t 47.082 -s 21 -d 28 -p ack -e 40 -c 0 -i 1056 -a 0 -x {21.0 3.0 525 ------- null} h -t 47.082 -s 21 -d 28 -p ack -e 40 -c 0 -i 1056 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.0836 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {3.0 21.0 526 ------- null} + -t 47.0836 -s 21 -d 28 -p ack -e 40 -c 0 -i 1057 -a 0 -x {21.0 3.0 526 ------- null} - -t 47.0836 -s 21 -d 28 -p ack -e 40 -c 0 -i 1057 -a 0 -x {21.0 3.0 526 ------- null} h -t 47.0836 -s 21 -d 28 -p ack -e 40 -c 0 -i 1057 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.0852 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1038 -a 0 -x {3.0 21.0 527 ------- null} + -t 47.0852 -s 21 -d 28 -p ack -e 40 -c 0 -i 1058 -a 0 -x {21.0 3.0 527 ------- null} - -t 47.0852 -s 21 -d 28 -p ack -e 40 -c 0 -i 1058 -a 0 -x {21.0 3.0 527 ------- null} h -t 47.0852 -s 21 -d 28 -p ack -e 40 -c 0 -i 1058 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.0868 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {3.0 21.0 528 ------- null} + -t 47.0868 -s 21 -d 28 -p ack -e 40 -c 0 -i 1059 -a 0 -x {21.0 3.0 528 ------- null} - -t 47.0868 -s 21 -d 28 -p ack -e 40 -c 0 -i 1059 -a 0 -x {21.0 3.0 528 ------- null} h -t 47.0868 -s 21 -d 28 -p ack -e 40 -c 0 -i 1059 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.0884 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1040 -a 0 -x {3.0 21.0 529 ------- null} + -t 47.0884 -s 21 -d 28 -p ack -e 40 -c 0 -i 1060 -a 0 -x {21.0 3.0 529 ------- null} - -t 47.0884 -s 21 -d 28 -p ack -e 40 -c 0 -i 1060 -a 0 -x {21.0 3.0 529 ------- null} h -t 47.0884 -s 21 -d 28 -p ack -e 40 -c 0 -i 1060 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.09 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {3.0 21.0 530 ------- null} + -t 47.09 -s 21 -d 28 -p ack -e 40 -c 0 -i 1061 -a 0 -x {21.0 3.0 530 ------- null} - -t 47.09 -s 21 -d 28 -p ack -e 40 -c 0 -i 1061 -a 0 -x {21.0 3.0 530 ------- null} h -t 47.09 -s 21 -d 28 -p ack -e 40 -c 0 -i 1061 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.4096 -s 21 -d 28 -p ack -e 40 -c 0 -i 1042 -a 0 -x {21.0 3.0 511 ------- null} + -t 47.4096 -s 28 -d 1 -p ack -e 40 -c 0 -i 1042 -a 0 -x {21.0 3.0 511 ------- null} - -t 47.4096 -s 28 -d 1 -p ack -e 40 -c 0 -i 1042 -a 0 -x {21.0 3.0 511 ------- null} h -t 47.4096 -s 28 -d 1 -p ack -e 40 -c 0 -i 1042 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.4112 -s 21 -d 28 -p ack -e 40 -c 0 -i 1043 -a 0 -x {21.0 3.0 512 ------- null} + -t 47.4112 -s 28 -d 1 -p ack -e 40 -c 0 -i 1043 -a 0 -x {21.0 3.0 512 ------- null} - -t 47.4112 -s 28 -d 1 -p ack -e 40 -c 0 -i 1043 -a 0 -x {21.0 3.0 512 ------- null} h -t 47.4112 -s 28 -d 1 -p ack -e 40 -c 0 -i 1043 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.4128 -s 21 -d 28 -p ack -e 40 -c 0 -i 1044 -a 0 -x {21.0 3.0 513 ------- null} + -t 47.4128 -s 28 -d 1 -p ack -e 40 -c 0 -i 1044 -a 0 -x {21.0 3.0 513 ------- null} - -t 47.4128 -s 28 -d 1 -p ack -e 40 -c 0 -i 1044 -a 0 -x {21.0 3.0 513 ------- null} h -t 47.4128 -s 28 -d 1 -p ack -e 40 -c 0 -i 1044 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.4144 -s 21 -d 28 -p ack -e 40 -c 0 -i 1045 -a 0 -x {21.0 3.0 514 ------- null} + -t 47.4144 -s 28 -d 1 -p ack -e 40 -c 0 -i 1045 -a 0 -x {21.0 3.0 514 ------- null} - -t 47.4144 -s 28 -d 1 -p ack -e 40 -c 0 -i 1045 -a 0 -x {21.0 3.0 514 ------- null} h -t 47.4144 -s 28 -d 1 -p ack -e 40 -c 0 -i 1045 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.416 -s 21 -d 28 -p ack -e 40 -c 0 -i 1046 -a 0 -x {21.0 3.0 515 ------- null} + -t 47.416 -s 28 -d 1 -p ack -e 40 -c 0 -i 1046 -a 0 -x {21.0 3.0 515 ------- null} - -t 47.416 -s 28 -d 1 -p ack -e 40 -c 0 -i 1046 -a 0 -x {21.0 3.0 515 ------- null} h -t 47.416 -s 28 -d 1 -p ack -e 40 -c 0 -i 1046 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.4176 -s 21 -d 28 -p ack -e 40 -c 0 -i 1047 -a 0 -x {21.0 3.0 516 ------- null} + -t 47.4176 -s 28 -d 1 -p ack -e 40 -c 0 -i 1047 -a 0 -x {21.0 3.0 516 ------- null} - -t 47.4176 -s 28 -d 1 -p ack -e 40 -c 0 -i 1047 -a 0 -x {21.0 3.0 516 ------- null} h -t 47.4176 -s 28 -d 1 -p ack -e 40 -c 0 -i 1047 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.4192 -s 21 -d 28 -p ack -e 40 -c 0 -i 1048 -a 0 -x {21.0 3.0 517 ------- null} + -t 47.4192 -s 28 -d 1 -p ack -e 40 -c 0 -i 1048 -a 0 -x {21.0 3.0 517 ------- null} - -t 47.4192 -s 28 -d 1 -p ack -e 40 -c 0 -i 1048 -a 0 -x {21.0 3.0 517 ------- null} h -t 47.4192 -s 28 -d 1 -p ack -e 40 -c 0 -i 1048 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.4208 -s 21 -d 28 -p ack -e 40 -c 0 -i 1049 -a 0 -x {21.0 3.0 518 ------- null} + -t 47.4208 -s 28 -d 1 -p ack -e 40 -c 0 -i 1049 -a 0 -x {21.0 3.0 518 ------- null} - -t 47.4208 -s 28 -d 1 -p ack -e 40 -c 0 -i 1049 -a 0 -x {21.0 3.0 518 ------- null} h -t 47.4208 -s 28 -d 1 -p ack -e 40 -c 0 -i 1049 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.4224 -s 21 -d 28 -p ack -e 40 -c 0 -i 1050 -a 0 -x {21.0 3.0 519 ------- null} + -t 47.4224 -s 28 -d 1 -p ack -e 40 -c 0 -i 1050 -a 0 -x {21.0 3.0 519 ------- null} - -t 47.4224 -s 28 -d 1 -p ack -e 40 -c 0 -i 1050 -a 0 -x {21.0 3.0 519 ------- null} h -t 47.4224 -s 28 -d 1 -p ack -e 40 -c 0 -i 1050 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.424 -s 21 -d 28 -p ack -e 40 -c 0 -i 1051 -a 0 -x {21.0 3.0 520 ------- null} + -t 47.424 -s 28 -d 1 -p ack -e 40 -c 0 -i 1051 -a 0 -x {21.0 3.0 520 ------- null} - -t 47.424 -s 28 -d 1 -p ack -e 40 -c 0 -i 1051 -a 0 -x {21.0 3.0 520 ------- null} h -t 47.424 -s 28 -d 1 -p ack -e 40 -c 0 -i 1051 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.4256 -s 21 -d 28 -p ack -e 40 -c 0 -i 1052 -a 0 -x {21.0 3.0 521 ------- null} + -t 47.4256 -s 28 -d 1 -p ack -e 40 -c 0 -i 1052 -a 0 -x {21.0 3.0 521 ------- null} - -t 47.4256 -s 28 -d 1 -p ack -e 40 -c 0 -i 1052 -a 0 -x {21.0 3.0 521 ------- null} h -t 47.4256 -s 28 -d 1 -p ack -e 40 -c 0 -i 1052 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.4272 -s 21 -d 28 -p ack -e 40 -c 0 -i 1053 -a 0 -x {21.0 3.0 522 ------- null} + -t 47.4272 -s 28 -d 1 -p ack -e 40 -c 0 -i 1053 -a 0 -x {21.0 3.0 522 ------- null} - -t 47.4272 -s 28 -d 1 -p ack -e 40 -c 0 -i 1053 -a 0 -x {21.0 3.0 522 ------- null} h -t 47.4272 -s 28 -d 1 -p ack -e 40 -c 0 -i 1053 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.4288 -s 21 -d 28 -p ack -e 40 -c 0 -i 1054 -a 0 -x {21.0 3.0 523 ------- null} + -t 47.4288 -s 28 -d 1 -p ack -e 40 -c 0 -i 1054 -a 0 -x {21.0 3.0 523 ------- null} - -t 47.4288 -s 28 -d 1 -p ack -e 40 -c 0 -i 1054 -a 0 -x {21.0 3.0 523 ------- null} h -t 47.4288 -s 28 -d 1 -p ack -e 40 -c 0 -i 1054 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.4304 -s 21 -d 28 -p ack -e 40 -c 0 -i 1055 -a 0 -x {21.0 3.0 524 ------- null} + -t 47.4304 -s 28 -d 1 -p ack -e 40 -c 0 -i 1055 -a 0 -x {21.0 3.0 524 ------- null} - -t 47.4304 -s 28 -d 1 -p ack -e 40 -c 0 -i 1055 -a 0 -x {21.0 3.0 524 ------- null} h -t 47.4304 -s 28 -d 1 -p ack -e 40 -c 0 -i 1055 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.432 -s 21 -d 28 -p ack -e 40 -c 0 -i 1056 -a 0 -x {21.0 3.0 525 ------- null} + -t 47.432 -s 28 -d 1 -p ack -e 40 -c 0 -i 1056 -a 0 -x {21.0 3.0 525 ------- null} - -t 47.432 -s 28 -d 1 -p ack -e 40 -c 0 -i 1056 -a 0 -x {21.0 3.0 525 ------- null} h -t 47.432 -s 28 -d 1 -p ack -e 40 -c 0 -i 1056 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.4336 -s 21 -d 28 -p ack -e 40 -c 0 -i 1057 -a 0 -x {21.0 3.0 526 ------- null} + -t 47.4336 -s 28 -d 1 -p ack -e 40 -c 0 -i 1057 -a 0 -x {21.0 3.0 526 ------- null} - -t 47.4336 -s 28 -d 1 -p ack -e 40 -c 0 -i 1057 -a 0 -x {21.0 3.0 526 ------- null} h -t 47.4336 -s 28 -d 1 -p ack -e 40 -c 0 -i 1057 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.4352 -s 21 -d 28 -p ack -e 40 -c 0 -i 1058 -a 0 -x {21.0 3.0 527 ------- null} + -t 47.4352 -s 28 -d 1 -p ack -e 40 -c 0 -i 1058 -a 0 -x {21.0 3.0 527 ------- null} - -t 47.4352 -s 28 -d 1 -p ack -e 40 -c 0 -i 1058 -a 0 -x {21.0 3.0 527 ------- null} h -t 47.4352 -s 28 -d 1 -p ack -e 40 -c 0 -i 1058 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.4368 -s 21 -d 28 -p ack -e 40 -c 0 -i 1059 -a 0 -x {21.0 3.0 528 ------- null} + -t 47.4368 -s 28 -d 1 -p ack -e 40 -c 0 -i 1059 -a 0 -x {21.0 3.0 528 ------- null} - -t 47.4368 -s 28 -d 1 -p ack -e 40 -c 0 -i 1059 -a 0 -x {21.0 3.0 528 ------- null} h -t 47.4368 -s 28 -d 1 -p ack -e 40 -c 0 -i 1059 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.4384 -s 21 -d 28 -p ack -e 40 -c 0 -i 1060 -a 0 -x {21.0 3.0 529 ------- null} + -t 47.4384 -s 28 -d 1 -p ack -e 40 -c 0 -i 1060 -a 0 -x {21.0 3.0 529 ------- null} - -t 47.4384 -s 28 -d 1 -p ack -e 40 -c 0 -i 1060 -a 0 -x {21.0 3.0 529 ------- null} h -t 47.4384 -s 28 -d 1 -p ack -e 40 -c 0 -i 1060 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.44 -s 21 -d 28 -p ack -e 40 -c 0 -i 1061 -a 0 -x {21.0 3.0 530 ------- null} + -t 47.44 -s 28 -d 1 -p ack -e 40 -c 0 -i 1061 -a 0 -x {21.0 3.0 530 ------- null} - -t 47.44 -s 28 -d 1 -p ack -e 40 -c 0 -i 1061 -a 0 -x {21.0 3.0 530 ------- null} h -t 47.44 -s 28 -d 1 -p ack -e 40 -c 0 -i 1061 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.7097 -s 28 -d 1 -p ack -e 40 -c 0 -i 1042 -a 0 -x {21.0 3.0 511 ------- null} + -t 47.7097 -s 1 -d 3 -p ack -e 40 -c 0 -i 1042 -a 0 -x {21.0 3.0 511 ------- null} - -t 47.7097 -s 1 -d 3 -p ack -e 40 -c 0 -i 1042 -a 0 -x {21.0 3.0 511 ------- null} h -t 47.7097 -s 1 -d 3 -p ack -e 40 -c 0 -i 1042 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.7113 -s 28 -d 1 -p ack -e 40 -c 0 -i 1043 -a 0 -x {21.0 3.0 512 ------- null} + -t 47.7113 -s 1 -d 3 -p ack -e 40 -c 0 -i 1043 -a 0 -x {21.0 3.0 512 ------- null} - -t 47.7113 -s 1 -d 3 -p ack -e 40 -c 0 -i 1043 -a 0 -x {21.0 3.0 512 ------- null} h -t 47.7113 -s 1 -d 3 -p ack -e 40 -c 0 -i 1043 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.7129 -s 28 -d 1 -p ack -e 40 -c 0 -i 1044 -a 0 -x {21.0 3.0 513 ------- null} + -t 47.7129 -s 1 -d 3 -p ack -e 40 -c 0 -i 1044 -a 0 -x {21.0 3.0 513 ------- null} - -t 47.7129 -s 1 -d 3 -p ack -e 40 -c 0 -i 1044 -a 0 -x {21.0 3.0 513 ------- null} h -t 47.7129 -s 1 -d 3 -p ack -e 40 -c 0 -i 1044 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.7145 -s 28 -d 1 -p ack -e 40 -c 0 -i 1045 -a 0 -x {21.0 3.0 514 ------- null} + -t 47.7145 -s 1 -d 3 -p ack -e 40 -c 0 -i 1045 -a 0 -x {21.0 3.0 514 ------- null} - -t 47.7145 -s 1 -d 3 -p ack -e 40 -c 0 -i 1045 -a 0 -x {21.0 3.0 514 ------- null} h -t 47.7145 -s 1 -d 3 -p ack -e 40 -c 0 -i 1045 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.7161 -s 28 -d 1 -p ack -e 40 -c 0 -i 1046 -a 0 -x {21.0 3.0 515 ------- null} + -t 47.7161 -s 1 -d 3 -p ack -e 40 -c 0 -i 1046 -a 0 -x {21.0 3.0 515 ------- null} - -t 47.7161 -s 1 -d 3 -p ack -e 40 -c 0 -i 1046 -a 0 -x {21.0 3.0 515 ------- null} h -t 47.7161 -s 1 -d 3 -p ack -e 40 -c 0 -i 1046 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.7177 -s 28 -d 1 -p ack -e 40 -c 0 -i 1047 -a 0 -x {21.0 3.0 516 ------- null} + -t 47.7177 -s 1 -d 3 -p ack -e 40 -c 0 -i 1047 -a 0 -x {21.0 3.0 516 ------- null} - -t 47.7177 -s 1 -d 3 -p ack -e 40 -c 0 -i 1047 -a 0 -x {21.0 3.0 516 ------- null} h -t 47.7177 -s 1 -d 3 -p ack -e 40 -c 0 -i 1047 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.7193 -s 28 -d 1 -p ack -e 40 -c 0 -i 1048 -a 0 -x {21.0 3.0 517 ------- null} + -t 47.7193 -s 1 -d 3 -p ack -e 40 -c 0 -i 1048 -a 0 -x {21.0 3.0 517 ------- null} - -t 47.7193 -s 1 -d 3 -p ack -e 40 -c 0 -i 1048 -a 0 -x {21.0 3.0 517 ------- null} h -t 47.7193 -s 1 -d 3 -p ack -e 40 -c 0 -i 1048 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.7209 -s 28 -d 1 -p ack -e 40 -c 0 -i 1049 -a 0 -x {21.0 3.0 518 ------- null} + -t 47.7209 -s 1 -d 3 -p ack -e 40 -c 0 -i 1049 -a 0 -x {21.0 3.0 518 ------- null} - -t 47.7209 -s 1 -d 3 -p ack -e 40 -c 0 -i 1049 -a 0 -x {21.0 3.0 518 ------- null} h -t 47.7209 -s 1 -d 3 -p ack -e 40 -c 0 -i 1049 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.7225 -s 28 -d 1 -p ack -e 40 -c 0 -i 1050 -a 0 -x {21.0 3.0 519 ------- null} + -t 47.7225 -s 1 -d 3 -p ack -e 40 -c 0 -i 1050 -a 0 -x {21.0 3.0 519 ------- null} - -t 47.7225 -s 1 -d 3 -p ack -e 40 -c 0 -i 1050 -a 0 -x {21.0 3.0 519 ------- null} h -t 47.7225 -s 1 -d 3 -p ack -e 40 -c 0 -i 1050 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.7241 -s 28 -d 1 -p ack -e 40 -c 0 -i 1051 -a 0 -x {21.0 3.0 520 ------- null} + -t 47.7241 -s 1 -d 3 -p ack -e 40 -c 0 -i 1051 -a 0 -x {21.0 3.0 520 ------- null} - -t 47.7241 -s 1 -d 3 -p ack -e 40 -c 0 -i 1051 -a 0 -x {21.0 3.0 520 ------- null} h -t 47.7241 -s 1 -d 3 -p ack -e 40 -c 0 -i 1051 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.7257 -s 28 -d 1 -p ack -e 40 -c 0 -i 1052 -a 0 -x {21.0 3.0 521 ------- null} + -t 47.7257 -s 1 -d 3 -p ack -e 40 -c 0 -i 1052 -a 0 -x {21.0 3.0 521 ------- null} - -t 47.7257 -s 1 -d 3 -p ack -e 40 -c 0 -i 1052 -a 0 -x {21.0 3.0 521 ------- null} h -t 47.7257 -s 1 -d 3 -p ack -e 40 -c 0 -i 1052 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.7273 -s 28 -d 1 -p ack -e 40 -c 0 -i 1053 -a 0 -x {21.0 3.0 522 ------- null} + -t 47.7273 -s 1 -d 3 -p ack -e 40 -c 0 -i 1053 -a 0 -x {21.0 3.0 522 ------- null} - -t 47.7273 -s 1 -d 3 -p ack -e 40 -c 0 -i 1053 -a 0 -x {21.0 3.0 522 ------- null} h -t 47.7273 -s 1 -d 3 -p ack -e 40 -c 0 -i 1053 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.7289 -s 28 -d 1 -p ack -e 40 -c 0 -i 1054 -a 0 -x {21.0 3.0 523 ------- null} + -t 47.7289 -s 1 -d 3 -p ack -e 40 -c 0 -i 1054 -a 0 -x {21.0 3.0 523 ------- null} - -t 47.7289 -s 1 -d 3 -p ack -e 40 -c 0 -i 1054 -a 0 -x {21.0 3.0 523 ------- null} h -t 47.7289 -s 1 -d 3 -p ack -e 40 -c 0 -i 1054 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.7305 -s 28 -d 1 -p ack -e 40 -c 0 -i 1055 -a 0 -x {21.0 3.0 524 ------- null} + -t 47.7305 -s 1 -d 3 -p ack -e 40 -c 0 -i 1055 -a 0 -x {21.0 3.0 524 ------- null} - -t 47.7305 -s 1 -d 3 -p ack -e 40 -c 0 -i 1055 -a 0 -x {21.0 3.0 524 ------- null} h -t 47.7305 -s 1 -d 3 -p ack -e 40 -c 0 -i 1055 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.7321 -s 28 -d 1 -p ack -e 40 -c 0 -i 1056 -a 0 -x {21.0 3.0 525 ------- null} + -t 47.7321 -s 1 -d 3 -p ack -e 40 -c 0 -i 1056 -a 0 -x {21.0 3.0 525 ------- null} - -t 47.7321 -s 1 -d 3 -p ack -e 40 -c 0 -i 1056 -a 0 -x {21.0 3.0 525 ------- null} h -t 47.7321 -s 1 -d 3 -p ack -e 40 -c 0 -i 1056 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.7337 -s 28 -d 1 -p ack -e 40 -c 0 -i 1057 -a 0 -x {21.0 3.0 526 ------- null} + -t 47.7337 -s 1 -d 3 -p ack -e 40 -c 0 -i 1057 -a 0 -x {21.0 3.0 526 ------- null} - -t 47.7337 -s 1 -d 3 -p ack -e 40 -c 0 -i 1057 -a 0 -x {21.0 3.0 526 ------- null} h -t 47.7337 -s 1 -d 3 -p ack -e 40 -c 0 -i 1057 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.7353 -s 28 -d 1 -p ack -e 40 -c 0 -i 1058 -a 0 -x {21.0 3.0 527 ------- null} + -t 47.7353 -s 1 -d 3 -p ack -e 40 -c 0 -i 1058 -a 0 -x {21.0 3.0 527 ------- null} - -t 47.7353 -s 1 -d 3 -p ack -e 40 -c 0 -i 1058 -a 0 -x {21.0 3.0 527 ------- null} h -t 47.7353 -s 1 -d 3 -p ack -e 40 -c 0 -i 1058 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.7369 -s 28 -d 1 -p ack -e 40 -c 0 -i 1059 -a 0 -x {21.0 3.0 528 ------- null} + -t 47.7369 -s 1 -d 3 -p ack -e 40 -c 0 -i 1059 -a 0 -x {21.0 3.0 528 ------- null} - -t 47.7369 -s 1 -d 3 -p ack -e 40 -c 0 -i 1059 -a 0 -x {21.0 3.0 528 ------- null} h -t 47.7369 -s 1 -d 3 -p ack -e 40 -c 0 -i 1059 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.7385 -s 28 -d 1 -p ack -e 40 -c 0 -i 1060 -a 0 -x {21.0 3.0 529 ------- null} + -t 47.7385 -s 1 -d 3 -p ack -e 40 -c 0 -i 1060 -a 0 -x {21.0 3.0 529 ------- null} - -t 47.7385 -s 1 -d 3 -p ack -e 40 -c 0 -i 1060 -a 0 -x {21.0 3.0 529 ------- null} h -t 47.7385 -s 1 -d 3 -p ack -e 40 -c 0 -i 1060 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.7401 -s 28 -d 1 -p ack -e 40 -c 0 -i 1061 -a 0 -x {21.0 3.0 530 ------- null} + -t 47.7401 -s 1 -d 3 -p ack -e 40 -c 0 -i 1061 -a 0 -x {21.0 3.0 530 ------- null} - -t 47.7401 -s 1 -d 3 -p ack -e 40 -c 0 -i 1061 -a 0 -x {21.0 3.0 530 ------- null} h -t 47.7401 -s 1 -d 3 -p ack -e 40 -c 0 -i 1061 -a 0 -x {21.0 3.0 -1 ------- null} r -t 47.8498 -s 1 -d 3 -p ack -e 40 -c 0 -i 1042 -a 0 -x {21.0 3.0 511 ------- null} + -t 47.8498 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1062 -a 0 -x {3.0 21.0 531 ------- null} - -t 47.8498 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1062 -a 0 -x {3.0 21.0 531 ------- null} h -t 47.8498 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1062 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.8514 -s 1 -d 3 -p ack -e 40 -c 0 -i 1043 -a 0 -x {21.0 3.0 512 ------- null} + -t 47.8514 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {3.0 21.0 532 ------- null} - -t 47.8514 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {3.0 21.0 532 ------- null} h -t 47.8514 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.853 -s 1 -d 3 -p ack -e 40 -c 0 -i 1044 -a 0 -x {21.0 3.0 513 ------- null} + -t 47.853 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1064 -a 0 -x {3.0 21.0 533 ------- null} - -t 47.853 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1064 -a 0 -x {3.0 21.0 533 ------- null} h -t 47.853 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1064 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.8546 -s 1 -d 3 -p ack -e 40 -c 0 -i 1045 -a 0 -x {21.0 3.0 514 ------- null} + -t 47.8546 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {3.0 21.0 534 ------- null} - -t 47.8546 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {3.0 21.0 534 ------- null} h -t 47.8546 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.8562 -s 1 -d 3 -p ack -e 40 -c 0 -i 1046 -a 0 -x {21.0 3.0 515 ------- null} + -t 47.8562 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1066 -a 0 -x {3.0 21.0 535 ------- null} - -t 47.8562 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1066 -a 0 -x {3.0 21.0 535 ------- null} h -t 47.8562 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1066 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.8578 -s 1 -d 3 -p ack -e 40 -c 0 -i 1047 -a 0 -x {21.0 3.0 516 ------- null} + -t 47.8578 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {3.0 21.0 536 ------- null} - -t 47.8578 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {3.0 21.0 536 ------- null} h -t 47.8578 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.8594 -s 1 -d 3 -p ack -e 40 -c 0 -i 1048 -a 0 -x {21.0 3.0 517 ------- null} + -t 47.8594 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1068 -a 0 -x {3.0 21.0 537 ------- null} - -t 47.8594 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1068 -a 0 -x {3.0 21.0 537 ------- null} h -t 47.8594 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1068 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.861 -s 1 -d 3 -p ack -e 40 -c 0 -i 1049 -a 0 -x {21.0 3.0 518 ------- null} + -t 47.861 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {3.0 21.0 538 ------- null} - -t 47.861 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {3.0 21.0 538 ------- null} h -t 47.861 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.8626 -s 1 -d 3 -p ack -e 40 -c 0 -i 1050 -a 0 -x {21.0 3.0 519 ------- null} + -t 47.8626 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1070 -a 0 -x {3.0 21.0 539 ------- null} - -t 47.8626 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1070 -a 0 -x {3.0 21.0 539 ------- null} h -t 47.8626 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1070 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.8642 -s 1 -d 3 -p ack -e 40 -c 0 -i 1051 -a 0 -x {21.0 3.0 520 ------- null} + -t 47.8642 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {3.0 21.0 540 ------- null} - -t 47.8642 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {3.0 21.0 540 ------- null} h -t 47.8642 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.8658 -s 1 -d 3 -p ack -e 40 -c 0 -i 1052 -a 0 -x {21.0 3.0 521 ------- null} + -t 47.8658 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1072 -a 0 -x {3.0 21.0 541 ------- null} - -t 47.8658 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1072 -a 0 -x {3.0 21.0 541 ------- null} h -t 47.8658 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1072 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.8674 -s 1 -d 3 -p ack -e 40 -c 0 -i 1053 -a 0 -x {21.0 3.0 522 ------- null} + -t 47.8674 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {3.0 21.0 542 ------- null} - -t 47.8674 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {3.0 21.0 542 ------- null} h -t 47.8674 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.869 -s 1 -d 3 -p ack -e 40 -c 0 -i 1054 -a 0 -x {21.0 3.0 523 ------- null} + -t 47.869 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1074 -a 0 -x {3.0 21.0 543 ------- null} - -t 47.869 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1074 -a 0 -x {3.0 21.0 543 ------- null} h -t 47.869 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1074 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.8706 -s 1 -d 3 -p ack -e 40 -c 0 -i 1055 -a 0 -x {21.0 3.0 524 ------- null} + -t 47.8706 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {3.0 21.0 544 ------- null} - -t 47.8706 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {3.0 21.0 544 ------- null} h -t 47.8706 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.8722 -s 1 -d 3 -p ack -e 40 -c 0 -i 1056 -a 0 -x {21.0 3.0 525 ------- null} + -t 47.8722 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1076 -a 0 -x {3.0 21.0 545 ------- null} - -t 47.8722 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1076 -a 0 -x {3.0 21.0 545 ------- null} h -t 47.8722 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1076 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.8738 -s 1 -d 3 -p ack -e 40 -c 0 -i 1057 -a 0 -x {21.0 3.0 526 ------- null} + -t 47.8738 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {3.0 21.0 546 ------- null} - -t 47.8738 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {3.0 21.0 546 ------- null} h -t 47.8738 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.8754 -s 1 -d 3 -p ack -e 40 -c 0 -i 1058 -a 0 -x {21.0 3.0 527 ------- null} + -t 47.8754 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1078 -a 0 -x {3.0 21.0 547 ------- null} - -t 47.8754 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1078 -a 0 -x {3.0 21.0 547 ------- null} h -t 47.8754 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1078 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.877 -s 1 -d 3 -p ack -e 40 -c 0 -i 1059 -a 0 -x {21.0 3.0 528 ------- null} + -t 47.877 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {3.0 21.0 548 ------- null} - -t 47.877 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {3.0 21.0 548 ------- null} h -t 47.877 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.8786 -s 1 -d 3 -p ack -e 40 -c 0 -i 1060 -a 0 -x {21.0 3.0 529 ------- null} + -t 47.8786 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1080 -a 0 -x {3.0 21.0 549 ------- null} - -t 47.8786 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1080 -a 0 -x {3.0 21.0 549 ------- null} h -t 47.8786 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1080 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.8802 -s 1 -d 3 -p ack -e 40 -c 0 -i 1061 -a 0 -x {21.0 3.0 530 ------- null} + -t 47.8802 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {3.0 21.0 550 ------- null} - -t 47.8802 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {3.0 21.0 550 ------- null} h -t 47.8802 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.9914 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1062 -a 0 -x {3.0 21.0 531 ------- null} + -t 47.9914 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1062 -a 0 -x {3.0 21.0 531 ------- null} - -t 47.9914 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1062 -a 0 -x {3.0 21.0 531 ------- null} h -t 47.9914 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1062 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.993 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {3.0 21.0 532 ------- null} + -t 47.993 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {3.0 21.0 532 ------- null} - -t 47.993 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {3.0 21.0 532 ------- null} h -t 47.993 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.9946 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1064 -a 0 -x {3.0 21.0 533 ------- null} + -t 47.9946 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1064 -a 0 -x {3.0 21.0 533 ------- null} - -t 47.9946 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1064 -a 0 -x {3.0 21.0 533 ------- null} h -t 47.9946 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1064 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.9962 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {3.0 21.0 534 ------- null} + -t 47.9962 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {3.0 21.0 534 ------- null} - -t 47.9962 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {3.0 21.0 534 ------- null} h -t 47.9962 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.9978 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1066 -a 0 -x {3.0 21.0 535 ------- null} + -t 47.9978 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1066 -a 0 -x {3.0 21.0 535 ------- null} - -t 47.9978 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1066 -a 0 -x {3.0 21.0 535 ------- null} h -t 47.9978 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1066 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.9994 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {3.0 21.0 536 ------- null} + -t 47.9994 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {3.0 21.0 536 ------- null} - -t 47.9994 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {3.0 21.0 536 ------- null} h -t 47.9994 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.001 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1068 -a 0 -x {3.0 21.0 537 ------- null} + -t 48.001 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1068 -a 0 -x {3.0 21.0 537 ------- null} - -t 48.001 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1068 -a 0 -x {3.0 21.0 537 ------- null} h -t 48.001 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1068 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.0026 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {3.0 21.0 538 ------- null} + -t 48.0026 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {3.0 21.0 538 ------- null} - -t 48.0026 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {3.0 21.0 538 ------- null} h -t 48.0026 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.0042 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1070 -a 0 -x {3.0 21.0 539 ------- null} + -t 48.0042 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1070 -a 0 -x {3.0 21.0 539 ------- null} - -t 48.0042 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1070 -a 0 -x {3.0 21.0 539 ------- null} h -t 48.0042 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1070 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.0058 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {3.0 21.0 540 ------- null} + -t 48.0058 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {3.0 21.0 540 ------- null} - -t 48.0058 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {3.0 21.0 540 ------- null} h -t 48.0058 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.0074 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1072 -a 0 -x {3.0 21.0 541 ------- null} + -t 48.0074 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1072 -a 0 -x {3.0 21.0 541 ------- null} - -t 48.0074 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1072 -a 0 -x {3.0 21.0 541 ------- null} h -t 48.0074 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1072 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.009 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {3.0 21.0 542 ------- null} + -t 48.009 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {3.0 21.0 542 ------- null} - -t 48.009 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {3.0 21.0 542 ------- null} h -t 48.009 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.0106 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1074 -a 0 -x {3.0 21.0 543 ------- null} + -t 48.0106 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1074 -a 0 -x {3.0 21.0 543 ------- null} - -t 48.0106 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1074 -a 0 -x {3.0 21.0 543 ------- null} h -t 48.0106 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1074 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.0122 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {3.0 21.0 544 ------- null} + -t 48.0122 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {3.0 21.0 544 ------- null} - -t 48.0122 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {3.0 21.0 544 ------- null} h -t 48.0122 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.0138 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1076 -a 0 -x {3.0 21.0 545 ------- null} + -t 48.0138 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1076 -a 0 -x {3.0 21.0 545 ------- null} - -t 48.0138 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1076 -a 0 -x {3.0 21.0 545 ------- null} h -t 48.0138 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1076 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.0154 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {3.0 21.0 546 ------- null} + -t 48.0154 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {3.0 21.0 546 ------- null} - -t 48.0154 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {3.0 21.0 546 ------- null} h -t 48.0154 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.017 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1078 -a 0 -x {3.0 21.0 547 ------- null} + -t 48.017 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1078 -a 0 -x {3.0 21.0 547 ------- null} - -t 48.017 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1078 -a 0 -x {3.0 21.0 547 ------- null} h -t 48.017 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1078 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.0186 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {3.0 21.0 548 ------- null} + -t 48.0186 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {3.0 21.0 548 ------- null} - -t 48.0186 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {3.0 21.0 548 ------- null} h -t 48.0186 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.0202 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1080 -a 0 -x {3.0 21.0 549 ------- null} + -t 48.0202 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1080 -a 0 -x {3.0 21.0 549 ------- null} - -t 48.0202 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1080 -a 0 -x {3.0 21.0 549 ------- null} h -t 48.0202 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1080 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.0218 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {3.0 21.0 550 ------- null} + -t 48.0218 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {3.0 21.0 550 ------- null} - -t 48.0218 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {3.0 21.0 550 ------- null} h -t 48.0218 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.293 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1062 -a 0 -x {3.0 21.0 531 ------- null} + -t 48.293 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1062 -a 0 -x {3.0 21.0 531 ------- null} - -t 48.293 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1062 -a 0 -x {3.0 21.0 531 ------- null} h -t 48.293 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1062 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.2946 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {3.0 21.0 532 ------- null} + -t 48.2946 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {3.0 21.0 532 ------- null} - -t 48.2946 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {3.0 21.0 532 ------- null} h -t 48.2946 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.2962 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1064 -a 0 -x {3.0 21.0 533 ------- null} + -t 48.2962 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1064 -a 0 -x {3.0 21.0 533 ------- null} - -t 48.2962 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1064 -a 0 -x {3.0 21.0 533 ------- null} h -t 48.2962 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1064 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.2978 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {3.0 21.0 534 ------- null} + -t 48.2978 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {3.0 21.0 534 ------- null} - -t 48.2978 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {3.0 21.0 534 ------- null} h -t 48.2978 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.2994 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1066 -a 0 -x {3.0 21.0 535 ------- null} + -t 48.2994 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1066 -a 0 -x {3.0 21.0 535 ------- null} - -t 48.2994 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1066 -a 0 -x {3.0 21.0 535 ------- null} h -t 48.2994 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1066 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.301 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {3.0 21.0 536 ------- null} + -t 48.301 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {3.0 21.0 536 ------- null} - -t 48.301 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {3.0 21.0 536 ------- null} h -t 48.301 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.3026 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1068 -a 0 -x {3.0 21.0 537 ------- null} + -t 48.3026 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1068 -a 0 -x {3.0 21.0 537 ------- null} - -t 48.3026 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1068 -a 0 -x {3.0 21.0 537 ------- null} h -t 48.3026 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1068 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.3042 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {3.0 21.0 538 ------- null} + -t 48.3042 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {3.0 21.0 538 ------- null} - -t 48.3042 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {3.0 21.0 538 ------- null} h -t 48.3042 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.3058 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1070 -a 0 -x {3.0 21.0 539 ------- null} + -t 48.3058 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1070 -a 0 -x {3.0 21.0 539 ------- null} - -t 48.3058 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1070 -a 0 -x {3.0 21.0 539 ------- null} h -t 48.3058 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1070 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.3074 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {3.0 21.0 540 ------- null} + -t 48.3074 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {3.0 21.0 540 ------- null} - -t 48.3074 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {3.0 21.0 540 ------- null} h -t 48.3074 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.309 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1072 -a 0 -x {3.0 21.0 541 ------- null} + -t 48.309 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1072 -a 0 -x {3.0 21.0 541 ------- null} - -t 48.309 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1072 -a 0 -x {3.0 21.0 541 ------- null} h -t 48.309 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1072 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.3106 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {3.0 21.0 542 ------- null} + -t 48.3106 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {3.0 21.0 542 ------- null} - -t 48.3106 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {3.0 21.0 542 ------- null} h -t 48.3106 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.3122 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1074 -a 0 -x {3.0 21.0 543 ------- null} + -t 48.3122 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1074 -a 0 -x {3.0 21.0 543 ------- null} - -t 48.3122 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1074 -a 0 -x {3.0 21.0 543 ------- null} h -t 48.3122 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1074 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.3138 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {3.0 21.0 544 ------- null} + -t 48.3138 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {3.0 21.0 544 ------- null} - -t 48.3138 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {3.0 21.0 544 ------- null} h -t 48.3138 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.3154 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1076 -a 0 -x {3.0 21.0 545 ------- null} + -t 48.3154 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1076 -a 0 -x {3.0 21.0 545 ------- null} - -t 48.3154 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1076 -a 0 -x {3.0 21.0 545 ------- null} h -t 48.3154 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1076 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.317 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {3.0 21.0 546 ------- null} + -t 48.317 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {3.0 21.0 546 ------- null} - -t 48.317 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {3.0 21.0 546 ------- null} h -t 48.317 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.3186 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1078 -a 0 -x {3.0 21.0 547 ------- null} + -t 48.3186 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1078 -a 0 -x {3.0 21.0 547 ------- null} - -t 48.3186 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1078 -a 0 -x {3.0 21.0 547 ------- null} h -t 48.3186 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1078 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.3202 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {3.0 21.0 548 ------- null} + -t 48.3202 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {3.0 21.0 548 ------- null} - -t 48.3202 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {3.0 21.0 548 ------- null} h -t 48.3202 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.3218 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1080 -a 0 -x {3.0 21.0 549 ------- null} + -t 48.3218 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1080 -a 0 -x {3.0 21.0 549 ------- null} - -t 48.3218 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1080 -a 0 -x {3.0 21.0 549 ------- null} h -t 48.3218 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1080 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.3234 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {3.0 21.0 550 ------- null} + -t 48.3234 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {3.0 21.0 550 ------- null} - -t 48.3234 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {3.0 21.0 550 ------- null} h -t 48.3234 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.6446 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1062 -a 0 -x {3.0 21.0 531 ------- null} + -t 48.6446 -s 21 -d 28 -p ack -e 40 -c 0 -i 1082 -a 0 -x {21.0 3.0 531 ------- null} - -t 48.6446 -s 21 -d 28 -p ack -e 40 -c 0 -i 1082 -a 0 -x {21.0 3.0 531 ------- null} h -t 48.6446 -s 21 -d 28 -p ack -e 40 -c 0 -i 1082 -a 0 -x {21.0 3.0 -1 ------- null} r -t 48.6462 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {3.0 21.0 532 ------- null} + -t 48.6462 -s 21 -d 28 -p ack -e 40 -c 0 -i 1083 -a 0 -x {21.0 3.0 532 ------- null} - -t 48.6462 -s 21 -d 28 -p ack -e 40 -c 0 -i 1083 -a 0 -x {21.0 3.0 532 ------- null} h -t 48.6462 -s 21 -d 28 -p ack -e 40 -c 0 -i 1083 -a 0 -x {21.0 3.0 -1 ------- null} r -t 48.6478 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1064 -a 0 -x {3.0 21.0 533 ------- null} + -t 48.6478 -s 21 -d 28 -p ack -e 40 -c 0 -i 1084 -a 0 -x {21.0 3.0 533 ------- null} - -t 48.6478 -s 21 -d 28 -p ack -e 40 -c 0 -i 1084 -a 0 -x {21.0 3.0 533 ------- null} h -t 48.6478 -s 21 -d 28 -p ack -e 40 -c 0 -i 1084 -a 0 -x {21.0 3.0 -1 ------- null} r -t 48.6494 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {3.0 21.0 534 ------- null} + -t 48.6494 -s 21 -d 28 -p ack -e 40 -c 0 -i 1085 -a 0 -x {21.0 3.0 534 ------- null} - -t 48.6494 -s 21 -d 28 -p ack -e 40 -c 0 -i 1085 -a 0 -x {21.0 3.0 534 ------- null} h -t 48.6494 -s 21 -d 28 -p ack -e 40 -c 0 -i 1085 -a 0 -x {21.0 3.0 -1 ------- null} r -t 48.651 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1066 -a 0 -x {3.0 21.0 535 ------- null} + -t 48.651 -s 21 -d 28 -p ack -e 40 -c 0 -i 1086 -a 0 -x {21.0 3.0 535 ------- null} - -t 48.651 -s 21 -d 28 -p ack -e 40 -c 0 -i 1086 -a 0 -x {21.0 3.0 535 ------- null} h -t 48.651 -s 21 -d 28 -p ack -e 40 -c 0 -i 1086 -a 0 -x {21.0 3.0 -1 ------- null} r -t 48.6526 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {3.0 21.0 536 ------- null} + -t 48.6526 -s 21 -d 28 -p ack -e 40 -c 0 -i 1087 -a 0 -x {21.0 3.0 536 ------- null} - -t 48.6526 -s 21 -d 28 -p ack -e 40 -c 0 -i 1087 -a 0 -x {21.0 3.0 536 ------- null} h -t 48.6526 -s 21 -d 28 -p ack -e 40 -c 0 -i 1087 -a 0 -x {21.0 3.0 -1 ------- null} r -t 48.6542 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1068 -a 0 -x {3.0 21.0 537 ------- null} + -t 48.6542 -s 21 -d 28 -p ack -e 40 -c 0 -i 1088 -a 0 -x {21.0 3.0 537 ------- null} - -t 48.6542 -s 21 -d 28 -p ack -e 40 -c 0 -i 1088 -a 0 -x {21.0 3.0 537 ------- null} h -t 48.6542 -s 21 -d 28 -p ack -e 40 -c 0 -i 1088 -a 0 -x {21.0 3.0 -1 ------- null} r -t 48.6558 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {3.0 21.0 538 ------- null} + -t 48.6558 -s 21 -d 28 -p ack -e 40 -c 0 -i 1089 -a 0 -x {21.0 3.0 538 ------- null} - -t 48.6558 -s 21 -d 28 -p ack -e 40 -c 0 -i 1089 -a 0 -x {21.0 3.0 538 ------- null} h -t 48.6558 -s 21 -d 28 -p ack -e 40 -c 0 -i 1089 -a 0 -x {21.0 3.0 -1 ------- null} r -t 48.6574 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1070 -a 0 -x {3.0 21.0 539 ------- null} + -t 48.6574 -s 21 -d 28 -p ack -e 40 -c 0 -i 1090 -a 0 -x {21.0 3.0 539 ------- null} - -t 48.6574 -s 21 -d 28 -p ack -e 40 -c 0 -i 1090 -a 0 -x {21.0 3.0 539 ------- null} h -t 48.6574 -s 21 -d 28 -p ack -e 40 -c 0 -i 1090 -a 0 -x {21.0 3.0 -1 ------- null} r -t 48.659 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {3.0 21.0 540 ------- null} + -t 48.659 -s 21 -d 28 -p ack -e 40 -c 0 -i 1091 -a 0 -x {21.0 3.0 540 ------- null} - -t 48.659 -s 21 -d 28 -p ack -e 40 -c 0 -i 1091 -a 0 -x {21.0 3.0 540 ------- null} h -t 48.659 -s 21 -d 28 -p ack -e 40 -c 0 -i 1091 -a 0 -x {21.0 3.0 -1 ------- null} r -t 48.6606 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1072 -a 0 -x {3.0 21.0 541 ------- null} + -t 48.6606 -s 21 -d 28 -p ack -e 40 -c 0 -i 1092 -a 0 -x {21.0 3.0 541 ------- null} - -t 48.6606 -s 21 -d 28 -p ack -e 40 -c 0 -i 1092 -a 0 -x {21.0 3.0 541 ------- null} h -t 48.6606 -s 21 -d 28 -p ack -e 40 -c 0 -i 1092 -a 0 -x {21.0 3.0 -1 ------- null} r -t 48.6622 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {3.0 21.0 542 ------- null} + -t 48.6622 -s 21 -d 28 -p ack -e 40 -c 0 -i 1093 -a 0 -x {21.0 3.0 542 ------- null} - -t 48.6622 -s 21 -d 28 -p ack -e 40 -c 0 -i 1093 -a 0 -x {21.0 3.0 542 ------- null} h -t 48.6622 -s 21 -d 28 -p ack -e 40 -c 0 -i 1093 -a 0 -x {21.0 3.0 -1 ------- null} r -t 48.6638 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1074 -a 0 -x {3.0 21.0 543 ------- null} + -t 48.6638 -s 21 -d 28 -p ack -e 40 -c 0 -i 1094 -a 0 -x {21.0 3.0 543 ------- null} - -t 48.6638 -s 21 -d 28 -p ack -e 40 -c 0 -i 1094 -a 0 -x {21.0 3.0 543 ------- null} h -t 48.6638 -s 21 -d 28 -p ack -e 40 -c 0 -i 1094 -a 0 -x {21.0 3.0 -1 ------- null} r -t 48.6654 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {3.0 21.0 544 ------- null} + -t 48.6654 -s 21 -d 28 -p ack -e 40 -c 0 -i 1095 -a 0 -x {21.0 3.0 544 ------- null} - -t 48.6654 -s 21 -d 28 -p ack -e 40 -c 0 -i 1095 -a 0 -x {21.0 3.0 544 ------- null} h -t 48.6654 -s 21 -d 28 -p ack -e 40 -c 0 -i 1095 -a 0 -x {21.0 3.0 -1 ------- null} r -t 48.667 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1076 -a 0 -x {3.0 21.0 545 ------- null} + -t 48.667 -s 21 -d 28 -p ack -e 40 -c 0 -i 1096 -a 0 -x {21.0 3.0 545 ------- null} - -t 48.667 -s 21 -d 28 -p ack -e 40 -c 0 -i 1096 -a 0 -x {21.0 3.0 545 ------- null} h -t 48.667 -s 21 -d 28 -p ack -e 40 -c 0 -i 1096 -a 0 -x {21.0 3.0 -1 ------- null} r -t 48.6686 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {3.0 21.0 546 ------- null} + -t 48.6686 -s 21 -d 28 -p ack -e 40 -c 0 -i 1097 -a 0 -x {21.0 3.0 546 ------- null} - -t 48.6686 -s 21 -d 28 -p ack -e 40 -c 0 -i 1097 -a 0 -x {21.0 3.0 546 ------- null} h -t 48.6686 -s 21 -d 28 -p ack -e 40 -c 0 -i 1097 -a 0 -x {21.0 3.0 -1 ------- null} r -t 48.6702 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1078 -a 0 -x {3.0 21.0 547 ------- null} + -t 48.6702 -s 21 -d 28 -p ack -e 40 -c 0 -i 1098 -a 0 -x {21.0 3.0 547 ------- null} - -t 48.6702 -s 21 -d 28 -p ack -e 40 -c 0 -i 1098 -a 0 -x {21.0 3.0 547 ------- null} h -t 48.6702 -s 21 -d 28 -p ack -e 40 -c 0 -i 1098 -a 0 -x {21.0 3.0 -1 ------- null} r -t 48.6718 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {3.0 21.0 548 ------- null} + -t 48.6718 -s 21 -d 28 -p ack -e 40 -c 0 -i 1099 -a 0 -x {21.0 3.0 548 ------- null} - -t 48.6718 -s 21 -d 28 -p ack -e 40 -c 0 -i 1099 -a 0 -x {21.0 3.0 548 ------- null} h -t 48.6718 -s 21 -d 28 -p ack -e 40 -c 0 -i 1099 -a 0 -x {21.0 3.0 -1 ------- null} r -t 48.6734 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1080 -a 0 -x {3.0 21.0 549 ------- null} + -t 48.6734 -s 21 -d 28 -p ack -e 40 -c 0 -i 1100 -a 0 -x {21.0 3.0 549 ------- null} - -t 48.6734 -s 21 -d 28 -p ack -e 40 -c 0 -i 1100 -a 0 -x {21.0 3.0 549 ------- null} h -t 48.6734 -s 21 -d 28 -p ack -e 40 -c 0 -i 1100 -a 0 -x {21.0 3.0 -1 ------- null} r -t 48.675 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {3.0 21.0 550 ------- null} + -t 48.675 -s 21 -d 28 -p ack -e 40 -c 0 -i 1101 -a 0 -x {21.0 3.0 550 ------- null} - -t 48.675 -s 21 -d 28 -p ack -e 40 -c 0 -i 1101 -a 0 -x {21.0 3.0 550 ------- null} h -t 48.675 -s 21 -d 28 -p ack -e 40 -c 0 -i 1101 -a 0 -x {21.0 3.0 -1 ------- null} r -t 48.9946 -s 21 -d 28 -p ack -e 40 -c 0 -i 1082 -a 0 -x {21.0 3.0 531 ------- null} + -t 48.9946 -s 28 -d 1 -p ack -e 40 -c 0 -i 1082 -a 0 -x {21.0 3.0 531 ------- null} - -t 48.9946 -s 28 -d 1 -p ack -e 40 -c 0 -i 1082 -a 0 -x {21.0 3.0 531 ------- null} h -t 48.9946 -s 28 -d 1 -p ack -e 40 -c 0 -i 1082 -a 0 -x {21.0 3.0 -1 ------- null} r -t 48.9962 -s 21 -d 28 -p ack -e 40 -c 0 -i 1083 -a 0 -x {21.0 3.0 532 ------- null} + -t 48.9962 -s 28 -d 1 -p ack -e 40 -c 0 -i 1083 -a 0 -x {21.0 3.0 532 ------- null} - -t 48.9962 -s 28 -d 1 -p ack -e 40 -c 0 -i 1083 -a 0 -x {21.0 3.0 532 ------- null} h -t 48.9962 -s 28 -d 1 -p ack -e 40 -c 0 -i 1083 -a 0 -x {21.0 3.0 -1 ------- null} r -t 48.9978 -s 21 -d 28 -p ack -e 40 -c 0 -i 1084 -a 0 -x {21.0 3.0 533 ------- null} + -t 48.9978 -s 28 -d 1 -p ack -e 40 -c 0 -i 1084 -a 0 -x {21.0 3.0 533 ------- null} - -t 48.9978 -s 28 -d 1 -p ack -e 40 -c 0 -i 1084 -a 0 -x {21.0 3.0 533 ------- null} h -t 48.9978 -s 28 -d 1 -p ack -e 40 -c 0 -i 1084 -a 0 -x {21.0 3.0 -1 ------- null} r -t 48.9994 -s 21 -d 28 -p ack -e 40 -c 0 -i 1085 -a 0 -x {21.0 3.0 534 ------- null} + -t 48.9994 -s 28 -d 1 -p ack -e 40 -c 0 -i 1085 -a 0 -x {21.0 3.0 534 ------- null} - -t 48.9994 -s 28 -d 1 -p ack -e 40 -c 0 -i 1085 -a 0 -x {21.0 3.0 534 ------- null} h -t 48.9994 -s 28 -d 1 -p ack -e 40 -c 0 -i 1085 -a 0 -x {21.0 3.0 -1 ------- null} r -t 49.001 -s 21 -d 28 -p ack -e 40 -c 0 -i 1086 -a 0 -x {21.0 3.0 535 ------- null} + -t 49.001 -s 28 -d 1 -p ack -e 40 -c 0 -i 1086 -a 0 -x {21.0 3.0 535 ------- null} - -t 49.001 -s 28 -d 1 -p ack -e 40 -c 0 -i 1086 -a 0 -x {21.0 3.0 535 ------- null} h -t 49.001 -s 28 -d 1 -p ack -e 40 -c 0 -i 1086 -a 0 -x {21.0 3.0 -1 ------- null} r -t 49.0026 -s 21 -d 28 -p ack -e 40 -c 0 -i 1087 -a 0 -x {21.0 3.0 536 ------- null} + -t 49.0026 -s 28 -d 1 -p ack -e 40 -c 0 -i 1087 -a 0 -x {21.0 3.0 536 ------- null} - -t 49.0026 -s 28 -d 1 -p ack -e 40 -c 0 -i 1087 -a 0 -x {21.0 3.0 536 ------- null} h -t 49.0026 -s 28 -d 1 -p ack -e 40 -c 0 -i 1087 -a 0 -x {21.0 3.0 -1 ------- null} r -t 49.0042 -s 21 -d 28 -p ack -e 40 -c 0 -i 1088 -a 0 -x {21.0 3.0 537 ------- null} + -t 49.0042 -s 28 -d 1 -p ack -e 40 -c 0 -i 1088 -a 0 -x {21.0 3.0 537 ------- null} - -t 49.0042 -s 28 -d 1 -p ack -e 40 -c 0 -i 1088 -a 0 -x {21.0 3.0 537 ------- null} h -t 49.0042 -s 28 -d 1 -p ack -e 40 -c 0 -i 1088 -a 0 -x {21.0 3.0 -1 ------- null} r -t 49.0058 -s 21 -d 28 -p ack -e 40 -c 0 -i 1089 -a 0 -x {21.0 3.0 538 ------- null} + -t 49.0058 -s 28 -d 1 -p ack -e 40 -c 0 -i 1089 -a 0 -x {21.0 3.0 538 ------- null} - -t 49.0058 -s 28 -d 1 -p ack -e 40 -c 0 -i 1089 -a 0 -x {21.0 3.0 538 ------- null} h -t 49.0058 -s 28 -d 1 -p ack -e 40 -c 0 -i 1089 -a 0 -x {21.0 3.0 -1 ------- null} r -t 49.0074 -s 21 -d 28 -p ack -e 40 -c 0 -i 1090 -a 0 -x {21.0 3.0 539 ------- null} + -t 49.0074 -s 28 -d 1 -p ack -e 40 -c 0 -i 1090 -a 0 -x {21.0 3.0 539 ------- null} - -t 49.0074 -s 28 -d 1 -p ack -e 40 -c 0 -i 1090 -a 0 -x {21.0 3.0 539 ------- null} h -t 49.0074 -s 28 -d 1 -p ack -e 40 -c 0 -i 1090 -a 0 -x {21.0 3.0 -1 ------- null} r -t 49.009 -s 21 -d 28 -p ack -e 40 -c 0 -i 1091 -a 0 -x {21.0 3.0 540 ------- null} + -t 49.009 -s 28 -d 1 -p ack -e 40 -c 0 -i 1091 -a 0 -x {21.0 3.0 540 ------- null} - -t 49.009 -s 28 -d 1 -p ack -e 40 -c 0 -i 1091 -a 0 -x {21.0 3.0 540 ------- null} h -t 49.009 -s 28 -d 1 -p ack -e 40 -c 0 -i 1091 -a 0 -x {21.0 3.0 -1 ------- null} r -t 49.0106 -s 21 -d 28 -p ack -e 40 -c 0 -i 1092 -a 0 -x {21.0 3.0 541 ------- null} + -t 49.0106 -s 28 -d 1 -p ack -e 40 -c 0 -i 1092 -a 0 -x {21.0 3.0 541 ------- null} - -t 49.0106 -s 28 -d 1 -p ack -e 40 -c 0 -i 1092 -a 0 -x {21.0 3.0 541 ------- null} h -t 49.0106 -s 28 -d 1 -p ack -e 40 -c 0 -i 1092 -a 0 -x {21.0 3.0 -1 ------- null} r -t 49.0122 -s 21 -d 28 -p ack -e 40 -c 0 -i 1093 -a 0 -x {21.0 3.0 542 ------- null} + -t 49.0122 -s 28 -d 1 -p ack -e 40 -c 0 -i 1093 -a 0 -x {21.0 3.0 542 ------- null} - -t 49.0122 -s 28 -d 1 -p ack -e 40 -c 0 -i 1093 -a 0 -x {21.0 3.0 542 ------- null} h -t 49.0122 -s 28 -d 1 -p ack -e 40 -c 0 -i 1093 -a 0 -x {21.0 3.0 -1 ------- null} r -t 49.0138 -s 21 -d 28 -p ack -e 40 -c 0 -i 1094 -a 0 -x {21.0 3.0 543 ------- null} + -t 49.0138 -s 28 -d 1 -p ack -e 40 -c 0 -i 1094 -a 0 -x {21.0 3.0 543 ------- null} - -t 49.0138 -s 28 -d 1 -p ack -e 40 -c 0 -i 1094 -a 0 -x {21.0 3.0 543 ------- null} h -t 49.0138 -s 28 -d 1 -p ack -e 40 -c 0 -i 1094 -a 0 -x {21.0 3.0 -1 ------- null} r -t 49.0154 -s 21 -d 28 -p ack -e 40 -c 0 -i 1095 -a 0 -x {21.0 3.0 544 ------- null} + -t 49.0154 -s 28 -d 1 -p ack -e 40 -c 0 -i 1095 -a 0 -x {21.0 3.0 544 ------- null} - -t 49.0154 -s 28 -d 1 -p ack -e 40 -c 0 -i 1095 -a 0 -x {21.0 3.0 544 ------- null} h -t 49.0154 -s 28 -d 1 -p ack -e 40 -c 0 -i 1095 -a 0 -x {21.0 3.0 -1 ------- null} r -t 49.017 -s 21 -d 28 -p ack -e 40 -c 0 -i 1096 -a 0 -x {21.0 3.0 545 ------- null} + -t 49.017 -s 28 -d 1 -p ack -e 40 -c 0 -i 1096 -a 0 -x {21.0 3.0 545 ------- null} - -t 49.017 -s 28 -d 1 -p ack -e 40 -c 0 -i 1096 -a 0 -x {21.0 3.0 545 ------- null} h -t 49.017 -s 28 -d 1 -p ack -e 40 -c 0 -i 1096 -a 0 -x {21.0 3.0 -1 ------- null} r -t 49.0186 -s 21 -d 28 -p ack -e 40 -c 0 -i 1097 -a 0 -x {21.0 3.0 546 ------- null} + -t 49.0186 -s 28 -d 1 -p ack -e 40 -c 0 -i 1097 -a 0 -x {21.0 3.0 546 ------- null} - -t 49.0186 -s 28 -d 1 -p ack -e 40 -c 0 -i 1097 -a 0 -x {21.0 3.0 546 ------- null} h -t 49.0186 -s 28 -d 1 -p ack -e 40 -c 0 -i 1097 -a 0 -x {21.0 3.0 -1 ------- null} r -t 49.0202 -s 21 -d 28 -p ack -e 40 -c 0 -i 1098 -a 0 -x {21.0 3.0 547 ------- null} + -t 49.0202 -s 28 -d 1 -p ack -e 40 -c 0 -i 1098 -a 0 -x {21.0 3.0 547 ------- null} - -t 49.0202 -s 28 -d 1 -p ack -e 40 -c 0 -i 1098 -a 0 -x {21.0 3.0 547 ------- null} h -t 49.0202 -s 28 -d 1 -p ack -e 40 -c 0 -i 1098 -a 0 -x {21.0 3.0 -1 ------- null} r -t 49.0218 -s 21 -d 28 -p ack -e 40 -c 0 -i 1099 -a 0 -x {21.0 3.0 548 ------- null} + -t 49.0218 -s 28 -d 1 -p ack -e 40 -c 0 -i 1099 -a 0 -x {21.0 3.0 548 ------- null} - -t 49.0218 -s 28 -d 1 -p ack -e 40 -c 0 -i 1099 -a 0 -x {21.0 3.0 548 ------- null} h -t 49.0218 -s 28 -d 1 -p ack -e 40 -c 0 -i 1099 -a 0 -x {21.0 3.0 -1 ------- null} r -t 49.0234 -s 21 -d 28 -p ack -e 40 -c 0 -i 1100 -a 0 -x {21.0 3.0 549 ------- null} + -t 49.0234 -s 28 -d 1 -p ack -e 40 -c 0 -i 1100 -a 0 -x {21.0 3.0 549 ------- null} - -t 49.0234 -s 28 -d 1 -p ack -e 40 -c 0 -i 1100 -a 0 -x {21.0 3.0 549 ------- null} h -t 49.0234 -s 28 -d 1 -p ack -e 40 -c 0 -i 1100 -a 0 -x {21.0 3.0 -1 ------- null} r -t 49.025 -s 21 -d 28 -p ack -e 40 -c 0 -i 1101 -a 0 -x {21.0 3.0 550 ------- null} + -t 49.025 -s 28 -d 1 -p ack -e 40 -c 0 -i 1101 -a 0 -x {21.0 3.0 550 ------- null} - -t 49.025 -s 28 -d 1 -p ack -e 40 -c 0 -i 1101 -a 0 -x {21.0 3.0 550 ------- null} h -t 49.025 -s 28 -d 1 -p ack -e 40 -c 0 -i 1101 -a 0 -x {21.0 3.0 -1 ------- null} r -t 49.2947 -s 28 -d 1 -p ack -e 40 -c 0 -i 1082 -a 0 -x {21.0 3.0 531 ------- null} + -t 49.2947 -s 1 -d 3 -p ack -e 40 -c 0 -i 1082 -a 0 -x {21.0 3.0 531 ------- null} - -t 49.2947 -s 1 -d 3 -p ack -e 40 -c 0 -i 1082 -a 0 -x {21.0 3.0 531 ------- null} h -t 49.2947 -s 1 -d 3 -p ack -e 40 -c 0 -i 1082 -a 0 -x {21.0 3.0 -1 ------- null} r -t 49.2963 -s 28 -d 1 -p ack -e 40 -c 0 -i 1083 -a 0 -x {21.0 3.0 532 ------- null} + -t 49.2963 -s 1 -d 3 -p ack -e 40 -c 0 -i 1083 -a 0 -x {21.0 3.0 532 ------- null} - -t 49.2963 -s 1 -d 3 -p ack -e 40 -c 0 -i 1083 -a 0 -x {21.0 3.0 532 ------- null} h -t 49.2963 -s 1 -d 3 -p ack -e 40 -c 0 -i 1083 -a 0 -x {21.0 3.0 -1 ------- null} r -t 49.2979 -s 28 -d 1 -p ack -e 40 -c 0 -i 1084 -a 0 -x {21.0 3.0 533 ------- null} + -t 49.2979 -s 1 -d 3 -p ack -e 40 -c 0 -i 1084 -a 0 -x {21.0 3.0 533 ------- null} - -t 49.2979 -s 1 -d 3 -p ack -e 40 -c 0 -i 1084 -a 0 -x {21.0 3.0 533 ------- null} h -t 49.2979 -s 1 -d 3 -p ack -e 40 -c 0 -i 1084 -a 0 -x {21.0 3.0 -1 ------- null} r -t 49.2995 -s 28 -d 1 -p ack -e 40 -c 0 -i 1085 -a 0 -x {21.0 3.0 534 ------- null} + -t 49.2995 -s 1 -d 3 -p ack -e 40 -c 0 -i 1085 -a 0 -x {21.0 3.0 534 ------- null} - -t 49.2995 -s 1 -d 3 -p ack -e 40 -c 0 -i 1085 -a 0 -x {21.0 3.0 534 ------- null} h -t 49.2995 -s 1 -d 3 -p ack -e 40 -c 0 -i 1085 -a 0 -x {21.0 3.0 -1 ------- null} r -t 49.3011 -s 28 -d 1 -p ack -e 40 -c 0 -i 1086 -a 0 -x {21.0 3.0 535 ------- null} + -t 49.3011 -s 1 -d 3 -p ack -e 40 -c 0 -i 1086 -a 0 -x {21.0 3.0 535 ------- null} - -t 49.3011 -s 1 -d 3 -p ack -e 40 -c 0 -i 1086 -a 0 -x {21.0 3.0 535 ------- null} h -t 49.3011 -s 1 -d 3 -p ack -e 40 -c 0 -i 1086 -a 0 -x {21.0 3.0 -1 ------- null} r -t 49.3027 -s 28 -d 1 -p ack -e 40 -c 0 -i 1087 -a 0 -x {21.0 3.0 536 ------- null} + -t 49.3027 -s 1 -d 3 -p ack -e 40 -c 0 -i 1087 -a 0 -x {21.0 3.0 536 ------- null} - -t 49.3027 -s 1 -d 3 -p ack -e 40 -c 0 -i 1087 -a 0 -x {21.0 3.0 536 ------- null} h -t 49.3027 -s 1 -d 3 -p ack -e 40 -c 0 -i 1087 -a 0 -x {21.0 3.0 -1 ------- null} r -t 49.3043 -s 28 -d 1 -p ack -e 40 -c 0 -i 1088 -a 0 -x {21.0 3.0 537 ------- null} + -t 49.3043 -s 1 -d 3 -p ack -e 40 -c 0 -i 1088 -a 0 -x {21.0 3.0 537 ------- null} - -t 49.3043 -s 1 -d 3 -p ack -e 40 -c 0 -i 1088 -a 0 -x {21.0 3.0 537 ------- null} h -t 49.3043 -s 1 -d 3 -p ack -e 40 -c 0 -i 1088 -a 0 -x {21.0 3.0 -1 ------- null} r -t 49.3059 -s 28 -d 1 -p ack -e 40 -c 0 -i 1089 -a 0 -x {21.0 3.0 538 ------- null} + -t 49.3059 -s 1 -d 3 -p ack -e 40 -c 0 -i 1089 -a 0 -x {21.0 3.0 538 ------- null} - -t 49.3059 -s 1 -d 3 -p ack -e 40 -c 0 -i 1089 -a 0 -x {21.0 3.0 538 ------- null} h -t 49.3059 -s 1 -d 3 -p ack -e 40 -c 0 -i 1089 -a 0 -x {21.0 3.0 -1 ------- null} r -t 49.3075 -s 28 -d 1 -p ack -e 40 -c 0 -i 1090 -a 0 -x {21.0 3.0 539 ------- null} + -t 49.3075 -s 1 -d 3 -p ack -e 40 -c 0 -i 1090 -a 0 -x {21.0 3.0 539 ------- null} - -t 49.3075 -s 1 -d 3 -p ack -e 40 -c 0 -i 1090 -a 0 -x {21.0 3.0 539 ------- null} h -t 49.3075 -s 1 -d 3 -p ack -e 40 -c 0 -i 1090 -a 0 -x {21.0 3.0 -1 ------- null} r -t 49.3091 -s 28 -d 1 -p ack -e 40 -c 0 -i 1091 -a 0 -x {21.0 3.0 540 ------- null} + -t 49.3091 -s 1 -d 3 -p ack -e 40 -c 0 -i 1091 -a 0 -x {21.0 3.0 540 ------- null} - -t 49.3091 -s 1 -d 3 -p ack -e 40 -c 0 -i 1091 -a 0 -x {21.0 3.0 540 ------- null} h -t 49.3091 -s 1 -d 3 -p ack -e 40 -c 0 -i 1091 -a 0 -x {21.0 3.0 -1 ------- null} r -t 49.3107 -s 28 -d 1 -p ack -e 40 -c 0 -i 1092 -a 0 -x {21.0 3.0 541 ------- null} + -t 49.3107 -s 1 -d 3 -p ack -e 40 -c 0 -i 1092 -a 0 -x {21.0 3.0 541 ------- null} - -t 49.3107 -s 1 -d 3 -p ack -e 40 -c 0 -i 1092 -a 0 -x {21.0 3.0 541 ------- null} h -t 49.3107 -s 1 -d 3 -p ack -e 40 -c 0 -i 1092 -a 0 -x {21.0 3.0 -1 ------- null} r -t 49.3123 -s 28 -d 1 -p ack -e 40 -c 0 -i 1093 -a 0 -x {21.0 3.0 542 ------- null} + -t 49.3123 -s 1 -d 3 -p ack -e 40 -c 0 -i 1093 -a 0 -x {21.0 3.0 542 ------- null} - -t 49.3123 -s 1 -d 3 -p ack -e 40 -c 0 -i 1093 -a 0 -x {21.0 3.0 542 ------- null} h -t 49.3123 -s 1 -d 3 -p ack -e 40 -c 0 -i 1093 -a 0 -x {21.0 3.0 -1 ------- null} r -t 49.3139 -s 28 -d 1 -p ack -e 40 -c 0 -i 1094 -a 0 -x {21.0 3.0 543 ------- null} + -t 49.3139 -s 1 -d 3 -p ack -e 40 -c 0 -i 1094 -a 0 -x {21.0 3.0 543 ------- null} - -t 49.3139 -s 1 -d 3 -p ack -e 40 -c 0 -i 1094 -a 0 -x {21.0 3.0 543 ------- null} h -t 49.3139 -s 1 -d 3 -p ack -e 40 -c 0 -i 1094 -a 0 -x {21.0 3.0 -1 ------- null} r -t 49.3155 -s 28 -d 1 -p ack -e 40 -c 0 -i 1095 -a 0 -x {21.0 3.0 544 ------- null} + -t 49.3155 -s 1 -d 3 -p ack -e 40 -c 0 -i 1095 -a 0 -x {21.0 3.0 544 ------- null} - -t 49.3155 -s 1 -d 3 -p ack -e 40 -c 0 -i 1095 -a 0 -x {21.0 3.0 544 ------- null} h -t 49.3155 -s 1 -d 3 -p ack -e 40 -c 0 -i 1095 -a 0 -x {21.0 3.0 -1 ------- null} r -t 49.3171 -s 28 -d 1 -p ack -e 40 -c 0 -i 1096 -a 0 -x {21.0 3.0 545 ------- null} + -t 49.3171 -s 1 -d 3 -p ack -e 40 -c 0 -i 1096 -a 0 -x {21.0 3.0 545 ------- null} - -t 49.3171 -s 1 -d 3 -p ack -e 40 -c 0 -i 1096 -a 0 -x {21.0 3.0 545 ------- null} h -t 49.3171 -s 1 -d 3 -p ack -e 40 -c 0 -i 1096 -a 0 -x {21.0 3.0 -1 ------- null} r -t 49.3187 -s 28 -d 1 -p ack -e 40 -c 0 -i 1097 -a 0 -x {21.0 3.0 546 ------- null} + -t 49.3187 -s 1 -d 3 -p ack -e 40 -c 0 -i 1097 -a 0 -x {21.0 3.0 546 ------- null} - -t 49.3187 -s 1 -d 3 -p ack -e 40 -c 0 -i 1097 -a 0 -x {21.0 3.0 546 ------- null} h -t 49.3187 -s 1 -d 3 -p ack -e 40 -c 0 -i 1097 -a 0 -x {21.0 3.0 -1 ------- null} r -t 49.3203 -s 28 -d 1 -p ack -e 40 -c 0 -i 1098 -a 0 -x {21.0 3.0 547 ------- null} + -t 49.3203 -s 1 -d 3 -p ack -e 40 -c 0 -i 1098 -a 0 -x {21.0 3.0 547 ------- null} - -t 49.3203 -s 1 -d 3 -p ack -e 40 -c 0 -i 1098 -a 0 -x {21.0 3.0 547 ------- null} h -t 49.3203 -s 1 -d 3 -p ack -e 40 -c 0 -i 1098 -a 0 -x {21.0 3.0 -1 ------- null} r -t 49.3219 -s 28 -d 1 -p ack -e 40 -c 0 -i 1099 -a 0 -x {21.0 3.0 548 ------- null} + -t 49.3219 -s 1 -d 3 -p ack -e 40 -c 0 -i 1099 -a 0 -x {21.0 3.0 548 ------- null} - -t 49.3219 -s 1 -d 3 -p ack -e 40 -c 0 -i 1099 -a 0 -x {21.0 3.0 548 ------- null} h -t 49.3219 -s 1 -d 3 -p ack -e 40 -c 0 -i 1099 -a 0 -x {21.0 3.0 -1 ------- null} r -t 49.3235 -s 28 -d 1 -p ack -e 40 -c 0 -i 1100 -a 0 -x {21.0 3.0 549 ------- null} + -t 49.3235 -s 1 -d 3 -p ack -e 40 -c 0 -i 1100 -a 0 -x {21.0 3.0 549 ------- null} - -t 49.3235 -s 1 -d 3 -p ack -e 40 -c 0 -i 1100 -a 0 -x {21.0 3.0 549 ------- null} h -t 49.3235 -s 1 -d 3 -p ack -e 40 -c 0 -i 1100 -a 0 -x {21.0 3.0 -1 ------- null} r -t 49.3251 -s 28 -d 1 -p ack -e 40 -c 0 -i 1101 -a 0 -x {21.0 3.0 550 ------- null} + -t 49.3251 -s 1 -d 3 -p ack -e 40 -c 0 -i 1101 -a 0 -x {21.0 3.0 550 ------- null} - -t 49.3251 -s 1 -d 3 -p ack -e 40 -c 0 -i 1101 -a 0 -x {21.0 3.0 550 ------- null} h -t 49.3251 -s 1 -d 3 -p ack -e 40 -c 0 -i 1101 -a 0 -x {21.0 3.0 -1 ------- null} r -t 49.4348 -s 1 -d 3 -p ack -e 40 -c 0 -i 1082 -a 0 -x {21.0 3.0 531 ------- null} + -t 49.4348 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1102 -a 0 -x {3.0 21.0 551 ------- null} - -t 49.4348 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1102 -a 0 -x {3.0 21.0 551 ------- null} h -t 49.4348 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1102 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.4364 -s 1 -d 3 -p ack -e 40 -c 0 -i 1083 -a 0 -x {21.0 3.0 532 ------- null} + -t 49.4364 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {3.0 21.0 552 ------- null} - -t 49.4364 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {3.0 21.0 552 ------- null} h -t 49.4364 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.438 -s 1 -d 3 -p ack -e 40 -c 0 -i 1084 -a 0 -x {21.0 3.0 533 ------- null} + -t 49.438 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1104 -a 0 -x {3.0 21.0 553 ------- null} - -t 49.438 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1104 -a 0 -x {3.0 21.0 553 ------- null} h -t 49.438 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1104 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.4396 -s 1 -d 3 -p ack -e 40 -c 0 -i 1085 -a 0 -x {21.0 3.0 534 ------- null} + -t 49.4396 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {3.0 21.0 554 ------- null} - -t 49.4396 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {3.0 21.0 554 ------- null} h -t 49.4396 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.4412 -s 1 -d 3 -p ack -e 40 -c 0 -i 1086 -a 0 -x {21.0 3.0 535 ------- null} + -t 49.4412 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1106 -a 0 -x {3.0 21.0 555 ------- null} - -t 49.4412 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1106 -a 0 -x {3.0 21.0 555 ------- null} h -t 49.4412 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1106 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.4428 -s 1 -d 3 -p ack -e 40 -c 0 -i 1087 -a 0 -x {21.0 3.0 536 ------- null} + -t 49.4428 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {3.0 21.0 556 ------- null} - -t 49.4428 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {3.0 21.0 556 ------- null} h -t 49.4428 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.4444 -s 1 -d 3 -p ack -e 40 -c 0 -i 1088 -a 0 -x {21.0 3.0 537 ------- null} + -t 49.4444 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1108 -a 0 -x {3.0 21.0 557 ------- null} - -t 49.4444 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1108 -a 0 -x {3.0 21.0 557 ------- null} h -t 49.4444 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1108 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.446 -s 1 -d 3 -p ack -e 40 -c 0 -i 1089 -a 0 -x {21.0 3.0 538 ------- null} + -t 49.446 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {3.0 21.0 558 ------- null} - -t 49.446 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {3.0 21.0 558 ------- null} h -t 49.446 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.4476 -s 1 -d 3 -p ack -e 40 -c 0 -i 1090 -a 0 -x {21.0 3.0 539 ------- null} + -t 49.4476 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1110 -a 0 -x {3.0 21.0 559 ------- null} - -t 49.4476 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1110 -a 0 -x {3.0 21.0 559 ------- null} h -t 49.4476 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1110 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.4492 -s 1 -d 3 -p ack -e 40 -c 0 -i 1091 -a 0 -x {21.0 3.0 540 ------- null} + -t 49.4492 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {3.0 21.0 560 ------- null} - -t 49.4492 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {3.0 21.0 560 ------- null} h -t 49.4492 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.4508 -s 1 -d 3 -p ack -e 40 -c 0 -i 1092 -a 0 -x {21.0 3.0 541 ------- null} + -t 49.4508 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1112 -a 0 -x {3.0 21.0 561 ------- null} - -t 49.4508 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1112 -a 0 -x {3.0 21.0 561 ------- null} h -t 49.4508 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1112 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.4524 -s 1 -d 3 -p ack -e 40 -c 0 -i 1093 -a 0 -x {21.0 3.0 542 ------- null} + -t 49.4524 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {3.0 21.0 562 ------- null} - -t 49.4524 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {3.0 21.0 562 ------- null} h -t 49.4524 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.454 -s 1 -d 3 -p ack -e 40 -c 0 -i 1094 -a 0 -x {21.0 3.0 543 ------- null} + -t 49.454 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1114 -a 0 -x {3.0 21.0 563 ------- null} - -t 49.454 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1114 -a 0 -x {3.0 21.0 563 ------- null} h -t 49.454 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1114 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.4556 -s 1 -d 3 -p ack -e 40 -c 0 -i 1095 -a 0 -x {21.0 3.0 544 ------- null} + -t 49.4556 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {3.0 21.0 564 ------- null} - -t 49.4556 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {3.0 21.0 564 ------- null} h -t 49.4556 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.4572 -s 1 -d 3 -p ack -e 40 -c 0 -i 1096 -a 0 -x {21.0 3.0 545 ------- null} + -t 49.4572 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1116 -a 0 -x {3.0 21.0 565 ------- null} - -t 49.4572 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1116 -a 0 -x {3.0 21.0 565 ------- null} h -t 49.4572 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1116 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.4588 -s 1 -d 3 -p ack -e 40 -c 0 -i 1097 -a 0 -x {21.0 3.0 546 ------- null} + -t 49.4588 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {3.0 21.0 566 ------- null} - -t 49.4588 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {3.0 21.0 566 ------- null} h -t 49.4588 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.4604 -s 1 -d 3 -p ack -e 40 -c 0 -i 1098 -a 0 -x {21.0 3.0 547 ------- null} + -t 49.4604 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1118 -a 0 -x {3.0 21.0 567 ------- null} - -t 49.4604 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1118 -a 0 -x {3.0 21.0 567 ------- null} h -t 49.4604 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1118 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.462 -s 1 -d 3 -p ack -e 40 -c 0 -i 1099 -a 0 -x {21.0 3.0 548 ------- null} + -t 49.462 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {3.0 21.0 568 ------- null} - -t 49.462 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {3.0 21.0 568 ------- null} h -t 49.462 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.4636 -s 1 -d 3 -p ack -e 40 -c 0 -i 1100 -a 0 -x {21.0 3.0 549 ------- null} + -t 49.4636 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1120 -a 0 -x {3.0 21.0 569 ------- null} - -t 49.4636 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1120 -a 0 -x {3.0 21.0 569 ------- null} h -t 49.4636 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1120 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.4652 -s 1 -d 3 -p ack -e 40 -c 0 -i 1101 -a 0 -x {21.0 3.0 550 ------- null} + -t 49.4652 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {3.0 21.0 570 ------- null} - -t 49.4652 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {3.0 21.0 570 ------- null} h -t 49.4652 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.5764 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1102 -a 0 -x {3.0 21.0 551 ------- null} + -t 49.5764 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1102 -a 0 -x {3.0 21.0 551 ------- null} - -t 49.5764 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1102 -a 0 -x {3.0 21.0 551 ------- null} h -t 49.5764 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1102 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.578 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {3.0 21.0 552 ------- null} + -t 49.578 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {3.0 21.0 552 ------- null} - -t 49.578 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {3.0 21.0 552 ------- null} h -t 49.578 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.5796 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1104 -a 0 -x {3.0 21.0 553 ------- null} + -t 49.5796 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1104 -a 0 -x {3.0 21.0 553 ------- null} - -t 49.5796 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1104 -a 0 -x {3.0 21.0 553 ------- null} h -t 49.5796 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1104 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.5812 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {3.0 21.0 554 ------- null} + -t 49.5812 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {3.0 21.0 554 ------- null} - -t 49.5812 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {3.0 21.0 554 ------- null} h -t 49.5812 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.5828 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1106 -a 0 -x {3.0 21.0 555 ------- null} + -t 49.5828 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1106 -a 0 -x {3.0 21.0 555 ------- null} - -t 49.5828 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1106 -a 0 -x {3.0 21.0 555 ------- null} h -t 49.5828 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1106 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.5844 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {3.0 21.0 556 ------- null} + -t 49.5844 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {3.0 21.0 556 ------- null} - -t 49.5844 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {3.0 21.0 556 ------- null} h -t 49.5844 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.586 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1108 -a 0 -x {3.0 21.0 557 ------- null} + -t 49.586 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1108 -a 0 -x {3.0 21.0 557 ------- null} - -t 49.586 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1108 -a 0 -x {3.0 21.0 557 ------- null} h -t 49.586 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1108 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.5876 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {3.0 21.0 558 ------- null} + -t 49.5876 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {3.0 21.0 558 ------- null} - -t 49.5876 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {3.0 21.0 558 ------- null} h -t 49.5876 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.5892 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1110 -a 0 -x {3.0 21.0 559 ------- null} + -t 49.5892 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1110 -a 0 -x {3.0 21.0 559 ------- null} - -t 49.5892 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1110 -a 0 -x {3.0 21.0 559 ------- null} h -t 49.5892 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1110 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.5908 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {3.0 21.0 560 ------- null} + -t 49.5908 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {3.0 21.0 560 ------- null} - -t 49.5908 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {3.0 21.0 560 ------- null} h -t 49.5908 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.5924 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1112 -a 0 -x {3.0 21.0 561 ------- null} + -t 49.5924 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1112 -a 0 -x {3.0 21.0 561 ------- null} - -t 49.5924 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1112 -a 0 -x {3.0 21.0 561 ------- null} h -t 49.5924 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1112 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.594 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {3.0 21.0 562 ------- null} + -t 49.594 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {3.0 21.0 562 ------- null} - -t 49.594 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {3.0 21.0 562 ------- null} h -t 49.594 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.5956 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1114 -a 0 -x {3.0 21.0 563 ------- null} + -t 49.5956 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1114 -a 0 -x {3.0 21.0 563 ------- null} - -t 49.5956 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1114 -a 0 -x {3.0 21.0 563 ------- null} h -t 49.5956 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1114 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.5972 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {3.0 21.0 564 ------- null} + -t 49.5972 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {3.0 21.0 564 ------- null} - -t 49.5972 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {3.0 21.0 564 ------- null} h -t 49.5972 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.5988 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1116 -a 0 -x {3.0 21.0 565 ------- null} + -t 49.5988 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1116 -a 0 -x {3.0 21.0 565 ------- null} - -t 49.5988 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1116 -a 0 -x {3.0 21.0 565 ------- null} h -t 49.5988 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1116 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.6004 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {3.0 21.0 566 ------- null} + -t 49.6004 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {3.0 21.0 566 ------- null} - -t 49.6004 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {3.0 21.0 566 ------- null} h -t 49.6004 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.602 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1118 -a 0 -x {3.0 21.0 567 ------- null} + -t 49.602 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1118 -a 0 -x {3.0 21.0 567 ------- null} - -t 49.602 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1118 -a 0 -x {3.0 21.0 567 ------- null} h -t 49.602 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1118 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.6036 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {3.0 21.0 568 ------- null} + -t 49.6036 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {3.0 21.0 568 ------- null} - -t 49.6036 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {3.0 21.0 568 ------- null} h -t 49.6036 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.6052 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1120 -a 0 -x {3.0 21.0 569 ------- null} + -t 49.6052 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1120 -a 0 -x {3.0 21.0 569 ------- null} - -t 49.6052 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1120 -a 0 -x {3.0 21.0 569 ------- null} h -t 49.6052 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1120 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.6068 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {3.0 21.0 570 ------- null} + -t 49.6068 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {3.0 21.0 570 ------- null} - -t 49.6068 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {3.0 21.0 570 ------- null} h -t 49.6068 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.878 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1102 -a 0 -x {3.0 21.0 551 ------- null} + -t 49.878 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1102 -a 0 -x {3.0 21.0 551 ------- null} - -t 49.878 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1102 -a 0 -x {3.0 21.0 551 ------- null} h -t 49.878 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1102 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.8796 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {3.0 21.0 552 ------- null} + -t 49.8796 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {3.0 21.0 552 ------- null} - -t 49.8796 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {3.0 21.0 552 ------- null} h -t 49.8796 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.8812 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1104 -a 0 -x {3.0 21.0 553 ------- null} + -t 49.8812 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1104 -a 0 -x {3.0 21.0 553 ------- null} - -t 49.8812 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1104 -a 0 -x {3.0 21.0 553 ------- null} h -t 49.8812 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1104 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.8828 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {3.0 21.0 554 ------- null} + -t 49.8828 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {3.0 21.0 554 ------- null} - -t 49.8828 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {3.0 21.0 554 ------- null} h -t 49.8828 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.8844 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1106 -a 0 -x {3.0 21.0 555 ------- null} + -t 49.8844 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1106 -a 0 -x {3.0 21.0 555 ------- null} - -t 49.8844 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1106 -a 0 -x {3.0 21.0 555 ------- null} h -t 49.8844 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1106 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.886 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {3.0 21.0 556 ------- null} + -t 49.886 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {3.0 21.0 556 ------- null} - -t 49.886 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {3.0 21.0 556 ------- null} h -t 49.886 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.8876 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1108 -a 0 -x {3.0 21.0 557 ------- null} + -t 49.8876 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1108 -a 0 -x {3.0 21.0 557 ------- null} - -t 49.8876 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1108 -a 0 -x {3.0 21.0 557 ------- null} h -t 49.8876 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1108 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.8892 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {3.0 21.0 558 ------- null} + -t 49.8892 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {3.0 21.0 558 ------- null} - -t 49.8892 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {3.0 21.0 558 ------- null} h -t 49.8892 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.8908 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1110 -a 0 -x {3.0 21.0 559 ------- null} + -t 49.8908 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1110 -a 0 -x {3.0 21.0 559 ------- null} - -t 49.8908 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1110 -a 0 -x {3.0 21.0 559 ------- null} h -t 49.8908 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1110 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.8924 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {3.0 21.0 560 ------- null} + -t 49.8924 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {3.0 21.0 560 ------- null} - -t 49.8924 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {3.0 21.0 560 ------- null} h -t 49.8924 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.894 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1112 -a 0 -x {3.0 21.0 561 ------- null} + -t 49.894 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1112 -a 0 -x {3.0 21.0 561 ------- null} - -t 49.894 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1112 -a 0 -x {3.0 21.0 561 ------- null} h -t 49.894 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1112 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.8956 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {3.0 21.0 562 ------- null} + -t 49.8956 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {3.0 21.0 562 ------- null} - -t 49.8956 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {3.0 21.0 562 ------- null} h -t 49.8956 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.8972 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1114 -a 0 -x {3.0 21.0 563 ------- null} + -t 49.8972 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1114 -a 0 -x {3.0 21.0 563 ------- null} - -t 49.8972 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1114 -a 0 -x {3.0 21.0 563 ------- null} h -t 49.8972 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1114 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.8988 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {3.0 21.0 564 ------- null} + -t 49.8988 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {3.0 21.0 564 ------- null} - -t 49.8988 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {3.0 21.0 564 ------- null} h -t 49.8988 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.9004 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1116 -a 0 -x {3.0 21.0 565 ------- null} + -t 49.9004 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1116 -a 0 -x {3.0 21.0 565 ------- null} - -t 49.9004 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1116 -a 0 -x {3.0 21.0 565 ------- null} h -t 49.9004 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1116 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.902 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {3.0 21.0 566 ------- null} + -t 49.902 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {3.0 21.0 566 ------- null} - -t 49.902 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {3.0 21.0 566 ------- null} h -t 49.902 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.9036 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1118 -a 0 -x {3.0 21.0 567 ------- null} + -t 49.9036 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1118 -a 0 -x {3.0 21.0 567 ------- null} - -t 49.9036 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1118 -a 0 -x {3.0 21.0 567 ------- null} h -t 49.9036 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1118 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.9052 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {3.0 21.0 568 ------- null} + -t 49.9052 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {3.0 21.0 568 ------- null} - -t 49.9052 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {3.0 21.0 568 ------- null} h -t 49.9052 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.9068 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1120 -a 0 -x {3.0 21.0 569 ------- null} + -t 49.9068 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1120 -a 0 -x {3.0 21.0 569 ------- null} - -t 49.9068 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1120 -a 0 -x {3.0 21.0 569 ------- null} h -t 49.9068 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1120 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.9084 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {3.0 21.0 570 ------- null} + -t 49.9084 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {3.0 21.0 570 ------- null} - -t 49.9084 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {3.0 21.0 570 ------- null} h -t 49.9084 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {3.0 21.0 -1 ------- null} nam-1.15/ex/att.nam.gz0000664000076400007660000351400106611500005013411 0ustar tomhnsnam‹if6att.nam´ýß®í:“å‰Ý×Sœk {A¤¨—ü û>;+á(tvU!«ËmÃð»›!MjMi+1Ö+Û¨/ýåÙ¿£=DÉ1BœÿþüïÿüŸþùóÿú'}õÿ2þóç_þéÿÓÿùõ_þ×Ò?þû?ý?þÛ?¹_ç4ÖÿÿÿúÏÐë?–ŽLôûßþSýÿñONÿé__ÿ‡ÿòÏ0*å¿ÿÏÿøïÿþoïÿõ¤ÿõÿòïÿóô_Îú_þÇ¿ýç÷ÿnÑÿîÿùÿöoÿõý¿]õ¿ýÿüÛ¿ÿûû?ÞþëÒoÔÿøoÿÇû?\Òí#”|óeøûJ¹{„2Þ?Âtûóý#,70ö·ÿºõïÓí#ŒùîÆáöÆr÷ãÍ¿lº{¬q¾„åî¦þîßµÞ>×”þ~„)ß=Â4Ü>ÂTná~8NwÃqºŽÓípœoÇÝt?Hçûá˜ú[È|7Jç›Q:ߎÒù~”η£t¾¥óÝ(]nGé|3J—ûQšnÿºËíØM÷’-÷C:ÝI¶Üót£ãr3öÓ­¶ËíŒH÷Š/÷%ݾˆåvúÜÍžtÿÊÖ»v¹Ÿi7-ݽñõæ¼éfäÛá²Þþùûùœï‡ÑzÿOßNþ|;¸ÖÛö¾Näû·UåFÅ|7×»ò¦úä›±¹Þüs·E*ß×õöŸ½¯\ù~ ¯Æ?};ˆóý îìp3â†û!s? †·Wû__ÿí¿Ô›¶mŠþÇÿíŸÿûÿU÷>ÿú_þã_ÿýßtoó¿üû¿üëÿúöOëælÿ¯ÿÏfåÿcÿy{Œ!ôYKÂÿØÿ#@Þcˆ=…®;ÿcÿÀs¬Û?½ýGä©×ý©×ГlÅ!ö7ìÓþÔ)öÔûÆt ýÓeû+–ÐßpØþ‚Cìï×çý™sì™óþÌ¡ºlÁúû ý°?Ç{ŽaŽÐ?]¶‡.¡gú²?G‰=GÙŸ#ôO—í¡K虇~Ÿâ}lޝãþ¡ºl]BÏ<ô{AècaÝ«Øú§ËöÐ%ôÌC¿—>T?òº×¼5ôO—í¡K¬òö{AèC!¯{…\CÿtÙºÄ*dÚ+dŠU„~/ }¨&äu¯kèŸ.Û_±Ä*ä~ßþ#@Þ£„žbÜäcj¤½æ¥PE·GcU,íU,…æø¸=Æ«Ki¯K)4kÇí1ÆX¥I{¥I¡y8n1ÆjGÚkG ͬq{Œ1V Ò^ Rh®ŒÛcŒ±ùöùBãyÜcŒÍØ¼ÏØ£ûŒM±Ñ¿=ô›ƒyŸƒ94¢Çí1ÆÐSLÛ_pŠýýò>shôOÛ#O±9˜÷9˜C£ÚcŠÍÁ¼ÏÁýÓöSlæ}æÐ蟶ǘbs0ïs0‡Fÿ´=Æ›ƒyŸƒ94ú§í1¦ØÌûÌ¡ñ·Ç˜CO±lÁ%ö÷Û§Cìtºl¼Äæà~ÜbçÍe{Œ%6÷ä;A.Ûc,±9¸ ‡Ø™pÙc‰ÍÁý7ÄNyËöKlîǶ!vnÛm¾ Ë·­†ØÙj·ù‚.ß~\‚ç¥ý 6ÄNb9ÄÝíà{¸ÆØ9lûgCÿänƼÀÝfŒ¹ŒÃ~¸b§»ÝU =ÃöW‹y†Ã~ ‚çÀíŸ =Ãö¸1pØŒCìĸS¡gØ7æÿ ãË.p·Oè¶ÇyÃ~b§Ð}³z†íqc¾ß°W‡Øyu_ÒCϰ=nÌóö£ê;«î"ô ÛãÆü¾a?¨Á“ê~bgàíŸý“Û_.æ ûxˆ€wû.æÞ ûxž€÷Cí<ÕîÕ!xRÝŸCðô9½‚ªØ¨Û‰Cð”¸å†àYn?r Á3×~˜b§¹a?t ÁS×~‚'©ýp4OGûgžxöCÌ<Åì“!x2™_Abì]îG‚!x&Ø·îCpï¾ †Ø©`Ø7ïCp÷¾oȇàŽ|ßdÁ]ö¾q‚;ç}3<wÃûwîp÷Mëܵ.¯06–¦ìr‰eÈþ¹‚»»}Û8ÄöeÏ…K,ö-ÞÍ…÷p3–ßûÖmæ·{&[b™ì°oɆ`&»ç¬%–³ûVkæ¬{vZbÙé°o¡†`vºç¡%–‡ûÖhæ¡{ÆYbç°oy†`ƹç–%–[ûædæ–{YbYdÙ³ÈË"‡õÕÌ›iéÕr›;{Xb9`Ù³½ËöʞוX^—öZ•bµªì‰]‰%vi¯>)V}ÊžÙ•Xf—öê“bÕ§ì©]‰¥vi¯>)V}ÊžÛ•Xn—öê“bÕ§ìÉ]‰%weOîJ,¹K{­J±ZUöì®Ä²»´×ª«U%¿ÚdBï2íµ*ÅjUÙ3¹ËäÒ^«R¬V•=•+±T.íÕ'ŪOÚ+[ V¶=Å+±/íµ*kÕžã•XŽ—öÊ–‚•mOòJ,ÉK{LÁ:¸gy%–好j¦XÕ,{šWbi^ÙÓ¼KóÒ^cS¬Æ–=Ï+±{=IÁz²Wˆ¬û,NÁY¼Wˆ«iŸÅ)8‹÷y™‚órŸi)8Óö¹“‚sgß)8¾÷›‚#vO€S,N{œb pÚ3ÝËtÓž§X^œö8Åà´'À)–§=N±8í pŠ%ÀiO€S,N{œb pÚàK€Óž§XœöL7Å2Ý´çÅ)–§=N±8í pŠ%ÀiO€S,N{œb pÚàK€Óž§Xœö8Åà´'À)–ç=UɱT%í™nŠeºiÏ‹Sð›ã=ƒÉ± &í pŠ%ÀyÏ`r,ƒI{œb pÞ3˜Ë`Òž§Xœ÷ &Ç2˜´'À)–ç=UɱT%í pŠ%ÀyOUr,UI{œb pÞS•KUÒž§Xœ÷T%ÇR•´'À)–ç='ɱœ$ïLf0{œb pn×=ÅæÎž“äXN’÷ä#Ç’¼g9–eä=oȱ¼!ï BŽ%yÏr,Ȼ˟c.Þøsâóîòç˜ËŸw'>Çœø¼{ë9æ­çÝ-Ï1·<ïþwŽùßy÷¨ṣλëœc®sÞ}äó‘óî ç˜3œw÷6ÇÜÛ¼;Ã9æ çݽÍ1÷6ï~lŽù±ywXsÌaÍ»gšcžiÞ}ͼkew*sðþ”Ý{Ì1ï1ïnb޹‰ywürÌñË»›˜cnbÞ¿süòîá嘇—wW.Ç\¹¼ûl9æ³åÝ Ë1/,ïîV޹[y÷«r̯ʻ•cTÞ]¢s‰òî@嘕w—(Ç\¢¼û>9øUËîûä˜ï“wß'Ç|Ÿ¼û>9æûäÝ÷É1ß'ï¾OŽù>y÷}rÌ÷É»““cNNÞ]¢s‰òîûä ï³`bϱ{D9è½[bä}Œý¤W|#ïã)è=½Bºy{AŸêÄÈû8º°»…#ïc:êí†VŒ¼ÿ Wö²nBäÝ)Ë1§,ï.\ºp/#!öû¼Šyp¯ qÌsxmbO±ÏÁ˜·÷Ú:Çžx÷sÌlÛìyŸƒ1Ïðµ%=Åî/昿øÚ¾Çžb÷"sÌ‹|mõcO±û–9æ[¾Ž±§Ø=Îó8_GˆØSìgŽ9œywOsÌ=}Nbϼ{§9øõÌöÐÁsÌ벫ØSìƒ?øUÎ벫yüÁ/x^—çÄÈûà~íóº¸#FÞô;ùüðÿþúg·ÏÇÿó{ùÚ¿ýÏ?þ/ÿô_êuþ·ÞþÀöÏþçïO¾ÿCïŽ|øç·A~Ãî?=˜ÿôzùŸ»?]¬?]úóÿ¤»?=Zz¼ü«—ËŸÎú§m§TÿH=#.C®çÊQ€¿ÿølþñRÊ0LÓ¬ÿo},­kÿñÅüãõ–e¬ÿÖqZ¦~.·¿š|ÌC?”ušÇe\Ë2_ußþø÷þö¯?¯¦ïsšë;—-3»ùóÉüó©/c™—úŸãœ†-Á¸ùóÙþ÷eYó0Í9ÃÖN}óÇ{ SŸÆy™ça.ãÖtóç‹ýøiJûa(cÕO­ò›??Ú_ÿ¿ižó:¬k•`¸þùaûóöØ[û4dUožÊ¸n †7það¥u™§5÷õ5Ö!X®¯oÿóöè«/­ôõÜ1 uøã_úïÞ~õ`‘ê_"ç2äuYþšzÛŸÏöð›–:zû~H¹ŒË²…Ç7Þ~ã\Ö~Le‡a©Céöù³=ü¦¡_ÊRÇ^šrÍýýÏÛã¯Nùu¬e£Ž¼¡¥¿ÆßþçíñW]÷}ûiê—qº¾ýÏÛã¯,:}êâ3×ÔoWÒž—„íÏ?Ô¾¥Ô7׉¿.ã²j uóçíñ·–4eZêÿ”:„òõýïÞõíÕÂ×ÏU…e–õ:ö?o¿:|ë‹+i§2¯Ã_úm~°Ç_-›ëœk¨ó§Œ›m~óçíñ·–<®s?­Sªÿ³ê|óçíñ—òR+ð:ÖÕgNëfÜüy{üÕ—W5¨Ê—ºø—õ¯ú±ÿy{ü­uúOëÐÏ:yæíbŽ›?o¿aªcoªõ¿Š8”ü×û·?o?2©þk§úòêi¹ÿó㯎šºv­u ×¹¼^_ÿþÇíáW—ýª|Ñ¿zš+çþÏÛÃOz­Ú õÍ×8_åÛþ|±‡_†T_~Ý;Ô*\‹ÙuõÜÿüÃðKÓ0Ìy—Zý¶k2oþøCõ›×Z<ê X'oÕñ¯Õoÿóöè›§:|ê²['ΤSáþ¯o¾:y¦:ïj¨ þ×Ñ¿ÿy{ôÕÙSKw•½Ô:>Îãõõ¥}ý¶®Û•)åù«.õu¿·êÎ`º ˜ú*hÝ2—ü×:¶“ÞÆa]ð¦TÿÄWºCÝ€ê³ï3"Õ‡¬ËI-е¦®Ëµ¢î¤·!Y¥«g,_uÕbºêa~¦aku©»Ò9×ýÝpUg'½ Îú&—4®Ó×\êA'mÑÛNÒ§I)k¼n9®ãd#ý»Nký+Låk§aÞ·…û_êwÕ…²ê¾LéúÆwÒÛ€ÍÃ\—è<|Íc}׺僮Vuý[êâW·¿m\wR~¦¥TÕû¯aÕÝÿ’Úß®þùZ8†µþwõ¯<æÛQ0¾âZ²jÉ«ÏTæ´¤~ûxüµ·­ŒÓ¨¿¨t] vRy'-S®Õã«þ/•9–¦ÓRwf¥N¬±þ_ky,×™µ“Æ÷wW‡Á¼Ž_¥®uS5LG…KK­3u€éöæ~ˆoC¼J\7ò¹|•úgÖº;)Ç_®nÓt““kÕ¨ÿ§ûW÷>Ä«º9ûªãFW—ô½gXtÈÿ¹üU4wÐÛôù×aøªœú—YšÜuˆ¦±Žºð×[–{Ðûëv·Žk]÷'eµ:0ëÞ¡¾ûº \ëVðö¯6½ïzn*S?~é$uÿÞfoBu-ÓóT­Ó_‡àtßuã_çÊ— R+ØzŒo]ΦZNêÔt<Ü’ò»ÜCÖMàפeu×á¨MU³ª[]âëp5êÀô>¾sÒŸ¾rÝRdý{´¿]='Õ9W7ku,ïvwÒûøÖS·×uöuÐlÍ˯u­¹ZXò8OµÒÝ“Nã»þ{'½S=3Ôw7Kà¤GÈ: J}¼õ¯5`'½ðºËœëvû«–׺gZú6 ê+«ch®ë€ž§åþݽðºç¬‡÷¢ I=Žkáõ_1ÖMa®ÿU÷¥iZN¯nÕùû5Õ*PÿÔ¸ ª²žêëÒR¸¿Ž;éTÂë¨#øk¬gB}ÙÇ\©§ÄU· uhöºÜß‘æS ¯Õ¤®d_u Q‡â˜uu½Iõ‘RªùyÞ¾¼¾!½›HºrÔCöWªGÔZË–åuË[·©òë&x¼âóû_ê©ëe­M©œív€WmªCVÿ§k5¿Nóû–zèXË×PæE—ßVåÒV»ë¿£ÔE­P·ŠÏ§^g]Ýþ|Õ-H?[ðþLz"ª;ãºÃ·zwK: ñ:ûg-º®µ =“¬ëNk;¬–}tܦSyÒméPÇSžj‰\ŽÒ[ê:Gʤõk»mó†ô>Äëɪ UWƒºBÖ*[Ú(¨«ñº S]!ê8B7/§QPËÒ’¾êÖ *5´Gª;¡ŽÕº—¬‹Î\þò¯vÐzª˜u½_–¯º#™*ðûÕÕ¡UQ“úhug1Þ®™KÿNªÿ\-Ö_º}Íeûè`¯˜©®âC­u-­ÿõtûLK: ̬&˜>SûÓÔ*æ¨ç£¹/êTª3ù/[s'½q= ×eÿkª;ò±l'Ò×^UO™u›½ÖB1 ÷Ãi9íR´"Žã×\w;u—2SO{³:µöÕAw¯Óû×]V]Q¾ê´¯…s»8㵯Ee\t«“–÷i'縖Ê:ê©/ìX£ÊV êÊ[—ƒZ ÊmQYÞ«¸n†ºMYtË]ÇT>viªgɺ ¯3¥¾‰{Òû¯“b,õÝé;ªªã™ê™¼ê6s©Çäy¸/*Ë{×ÉV×ó¯±î·Ó2û硞 u¹«Ó²âÇ¿N©;é}ŒOº°ŒºF­¹nUŽÕ®2—ºziÁ«kEúËïØHëûÏë\×k•xÖøü­ø ž{¾Ž’uþë쵓ÞÇxÝ©êâòUׂiÞ¬Îý/W·)u÷\׺ì­Ÿ¡wÐûϵðÔMJݨÔm{ÊǦ N•Z>“Cúº\ ·Õi= ñ¤ç¶Z1ËR—íe:ÁZG¾.vC=bÕ¿÷íÀ\Ë{ÅÔ³EŸ¿ê¾¾j¾”c±rlÛihYþövÐû/k¿T1¾†¹þÖ|”Þ´MÿzúÑe¼Ž{™NgÍU_\ÝÏ•ZTj=žI ›Y]³:DêÎðþÍÍï¹ZœJÉ_µ¢Õ‰1®Ç)CÍïºE©{½:n·ë+oHï#\-–ú÷¨'ŸQ ÝÒÁªz­Çu®Ôª³ÞÖÓOue©¯®Š[÷ªùP¼÷:Ç^ Ñ*úý~îíŽ'EÕ™¾ä¥NàUËZjã)뛨µrÔg,÷gŸ·+t@Õ…£QëylÐäØ×¯S­Uê0é¿«î¯n·*o78©èujÕ"þUEZ¾7ãõÔ;̺Ôè©ÝXíÞnkÚ–uFò×Z‡rÝL ‚.ÌzXÑ7WwüÃíË{»œI×»ºM^ë6³6K ÏÇ8X¯µ´×J°ÞoÄÞnWÒa¾m#ëÌ[ꜯ/¼½¾z®›½IOº™Y Ôi?®vC=#èήîoŽÑ™õ™ô¬^K¯ž:n'ñÛÝI:eFÝ┯4,Û;ÿ>)ªâk®«C=Ò®÷{Ö·«’tKžê9£^ë±¹J<—ñ»HU½ëyf¬{ :xŒñ¹¾„ú/®ÛÕ¯ZDꜙÓwáÔct?ÕÍRkÏm-OïÙÛæ¾ÔôkQ×{l]#t ¬ËÞ†»ß¤÷N«œ$]aê"°]ÓÚ¢Ôº«ꌬÿç´}^p‡:mYêêYgä—šÁõÕÏmó³èb§źUSä^õt:yÖiZs_uIªdû)¶½zÖóÔVÕki®ËûýÙ,½uYÿ"«Zu›C¼ý‘×q­›ãqÖ£~*ù¯Äò…߇•î·†µ`õ2Æc1Vë½%êVK—ŸûÉüžÞÕ=`ÒÀëK`µ,½:Âgèõ¯9« u[?S:õú‡TªQWö5ÇØ:êñ¼žmêˆZR¾wER:ù+Iבµ–}íyùV}U§«®ìjò–¿Òµê4Öë¢^ÿÌW«.Sm,Ôu£J]ÔϨÛEã$›Þ“¾ZŠê_eªû²ªñí`´ÂéölÛ~ÛHšéA»î$u–ÞÏ›÷ÔP}Ù: ÓW­Uµ@Œëz”˜1Wô¤#]su²ËëߣžgôÏÖ‰3ÎÇ_W¥:â4ŒòM”úB{©çû:T­¼mÔcöêÙkßÛŒ÷Oõ+ÖpÝ6üºÏ[¦é¨VE£AµI'Í—Œú0j%RKC!uÿ³ýfÕ.U’£ºÃEc…)ßî®Ó{Ö˜·tMm);ê‘äXNµckuN®÷õô;fm3¨é¯AƒÖTޱ^y-1eU“£ôž@ÖºP÷yu2WÍën;ç³úu·¯†Gý+Þ¯§ÃxÞ/ÔÍ~Õª¬ÛþüXä×ý¿©3f¬êß»i8Uv=ˆNÓ×¢îCŽ3rš9m9™ö'$c‘NÒ:ŽëYã«n:4Ÿ<޶õдÌZµ‡Ö{/½Ç•uØh:²úu58Ìü*R=¡êYD·¶ÛöôuÚ°×·S'ÛWÖ¿Q]óŽÙ\kh=êÔ© c½L÷ƒá=Ĭ㪯[ªù+© 7,Ç`WÁëÙ_G¼ºÆæñ=Ϭ˱nëŽoîÕˆ/m\§ºÕí±– =¬Þÿß³Í*”Iz]oêù>%U}ê»Õ­WÖ¬ý¯Œú…zíõ9꿸–«º¬ÔeâXåõ­‘eÝóNz€¿' ôº¯«'†ºã[JºPwêJT±æb½¿rëkuÖ3I}†õðNëq²èÿ±èÖ6§¿Z^¨SD¤- I®z\†#Ù)u3ÔÒRWîºÙ>ú¹C½õA}Á©*•–A=þÃ8õxXßH}uõ¿Œ¡°œJ袾ûW=x¬ºÝ<ÆzVuUÓýRtËýÉ;‚ÐZÔ$­…¯#tâ[­YiÞ¢ÖÙ0¼Ò9 ­»”1—/=›–ñ;+¬Õ³nÛWÝ¿ÔÅ?ô= UgD-¦z8Ýžá(|«&v}ý7Mu»}ÓóBƺ¦f%×Ý)õÄ7VsÝò׿×Ö—TKe¹—ý†Žêëæ±ê¿Ô5ï8}/µèͲëß²î Ôi°×ÙU'ÚWý›Ô…}8²ÞªT]žkØ•Ê_m/ÔxZš³zñÚáR'ï÷ù»˜Q÷0ÛŽpÚCv1õü©¡Cý«ôõÀ7{:6—:¥7§I_æ=ꔈj¾´Ö¿`-–õl|ŒvÝ×w—´ü̓Ñ>Þ3Q5™sݯo¦GYÒ ò<¨W§ãö>+Hï¡èÖAR´ Ö]ݶ|å·­nÕ¯®kc¾÷®ßnÓÑ8×r•êñ­ \«Rú6ùÕ•­ˆ4lý¢÷ƒý”‹j?IU¢nˆêßcÞ®Ò~mÙ5˜®;¬ºÞOCú«cí…:£ºáú/Íãªêdž¯Ê”4M¬3POp÷ÓæŒÖu¡Î¯é+ëÙF¢ãý%=×Ìõœ¯ û‘p Fë\™êú롨.GºV5ÚÎEM£Z¸îGÂtêõÔ7÷U÷Dú7œcvÙ:Rô¼œô ÔÉTŸ´kùÒ¡ÙkGS«{ZÙGMê{Ù£„;ÔÉsLÚÜT«±v#¬ý|ø uK<¥-]©çˆd#Né¨n *à+WÕêùô0PêºXkÕ¬‡‹fv÷ænñÂT7kEæõHÛëÆ*i–µ©äþ ¾ç£¹î›T¡ú¬J«~xÏuXæA#ö÷~x:¤}+ë°JÚçPŽ#IR|ë¸(Ú—n,Íó9>ª¯H°ºþÖSDþ6tuWŸh.õ(fl­Ni=û×yQ$ú{Bð2tõדϰµN¨S€¤öZØëb ðq¦Lëª}ï[®›µëéõ~<]ôÐ1 ê×Ášƒ„vÁi;kÝSÎ*æ}µšO£}˜ê£L_õ-Õ%zŽ _R÷²Ž„Y×ÁØÆœbR=êiµªómíëJõí ÔÁPÇù\—ÆÍ{¿GF{-” hº®ºÎq-Ãó¶ LÚu:Þ¾sRZk[^ê†AÿcÉo§æE”õªƒlTãsRZÿÍuóú¥{‚E·ÜÇlž´Zÿ‚u·–í)*­ piš¼×óDI‡+ ùJQG»Ö™Å(ìËÙb´‘äK½”Ç#’' ,{MçºNüõQÁ urÙí ¿ª°Ó6ð¿[ƒVm«™Æ­DdC«s”4×]yÑæÞIÇô=Øu€Ö—X7î³e{œâÒz¤Mz¯5¦î>†VC'µØëSjžX–êçÆÅz¨c=kÃÙ8|o޵®þ-ëS2¬ŠS^ª}[õ0T÷ÙãÖMuì' –W]™ë‹™í)0­Û*©Ž£Z’Æt,£¶v©}›ôÜõ÷W!/Ô©²×=˜jO­þ¹ï^œº–ÔŠ§gïY›œïËñ{dZµÕ#|Ý'=Ü,‡ß[Ožõÿ·3M­ŒsÊLëäÐwþUwøY·Ç ¬ePdõ¼¤_ÃꔚŽ{Á×¢¶™æÌM«:›‹::Kݨjè:Ǧµ&ÕCe=„×½X>M´%SO^µ¬öê‹ÞË~ÊM“Úu6ë T›ã(Vºægõ ‡9 †±z NÕ^¬‹É—î1ê,8þ~iû²F#®¤M·÷ͧé=9­[º:ÿêß/«±]'𑜪ñW4‹Ð\8Y¨ó6¦Nç¬mºõä¡~èqP¶ 8l­ûňÎÙ©æç¤%¦Äá[õºLEÃJb­mÌ)<ÕÎàZ¾´•²®{ߊvB¯!ÔMåRîwùž–úï­3݈ª+xØëÊW+[þÒ¨­ß›8^åªÎÈz°\6wJ·å*¿‡§Y‹¨yuîk?ÀQŽëû›WmœÖ…†rŸås~Úk£I¯m0úØá¦iL­;¯: GÝß“Î^Ì–àÕºPêPÖï>6uOêlÔ¬°Ü÷ŒåS|ªmսʗV¸œòÑ•1ïí e³êrc¨~ÚÅŒjÕÓͨíÇ8ëæQ»’¦•å>=ÍýétšÔ0¿’¦éå;Ú¨êÔ1ªÝ©Ó«_òŽtnØ­ÄqþÒ¤|.ßýŒuw¶lm[Y¿VÈ÷ Òùžê°YÔ˜´Î‡¢MûIÿêº>ß|»°£Îéé AzTÚ ™¾í“úÊz5|êѲî½î;ò)<­g?¶_ó&oZ¿Oou£®¹I]„õúîQ§fmL˜ê1¢,ëvåèAÓoBu™×Ï u4þ~§<©î\³ö[OÚý”ŽsÒXõuó0Tæu¸w ó);Õ¯9êŠYOÌuâÖªw”õ:ªtwV'wÂ[õj<-ñº×R5jÜ/ÇH¯§m²ÕêZφè§-̨ÍËjÊÕ•f: öRGÿ°Ö£Ë2÷[›Î=éd:Ö¾TRÝTemÐ< U-ª«f£ž”Òýú—ߣӪŽn÷jÍËÚa½ä#…Õ³j]Æê¤©#ÕHaó):­U­¾ñékÑ®ÿöaj®£|Þܽ:tïnù=:ÕÝ¡¿ôË`MqžuK©‘§öÝÝò):ݾëü«Cq—c·W—¼Z ê¼$ýò¾ )çÓv=é'NC݃Ö5~*Çy+ëÑTgù¢KN6 Ì{tªUgžÝ´ûÛ?½Z~² U7«îîýË|ŠN«¸eÔFm•Ëßf}Ý eÚc6í­Nw¨÷±®ŸrêyK¿$ÔÎÁï®=uHG=ŽéÎà ïÑi=P鯣î;r­YúIÁ¡U]i´¡zÚ £QÖOÙiýûÕY¯]êE[›¿#ývJUÝÑ×±o<Õ©ÁQ÷;u…×¼§ÎÅ£Xi×ãº}¤±ê¿j¼Ÿ8ïÙé&ë·FY;ކ·¦­=†©ù:ŸU>e§úázݺ~ÕV·›Ë÷ÇSΛ·0Ïuþ,÷9z>…§zݶ0uG6«ç|¾~ÉzÔφÞBöëuO—¦±îµ‘m‹n_^a=}{ôE§jD¤ºÛ«;Ýr¾íö´°«›“ôê€ûíz~NëxÑìB· uqÑÉÃ\(Ztý×?cT¢ÓºÃH{®¡Ÿ¯ŒÇʬÉ]}m¹ êÆÛzª÷èTMÊ´Lu‘׿ºq=ÆÂª}§µ(Ô³kýßò}ÏH~Nõóõ:]´Á´þEêà>ù^<–^W°º›5Æú%:{M¬³67Í󱟭[Gm‚]µÓbP·âu2bêJW'ZEÕ½ÁöS×/ÕÕ-ôc†I/ƒtú2C#ÏQ¿§ÐÃÐx’´3C?u¬“Z—‹ûQuŠN‹~Z¢iÙªöW:‚·¢ùµn´w1Ú^ó):]Ô®™ôÃ5dûã`³YBÚÊ9ê÷uÙ8Ùœ¢SÍ kùª ½~üÝá6l×kÔÚ ýËÙ8n¢SõÕë÷¥+hôýùàTǺÚ_ú Ïdœ'ߣS-ÆÚ|ÿµê4Y‡#ãZµZÕ-±žqõ+uªë«>ÌðUÿCÛMÉ<ú]…^\PŸ´O÷îP>G§õŸÖvÕA·èë÷gš¹i€ ˜[—õ=ê}Ã^ÿ[ãd-ɺá<º¶J}™u +G“®ût?Ÿ¢S=dÕñð¥³z•ÇG cÒ&ʯâæ‚ŽêÔ6«'”ÕˆÑÞªïqU_á8Ž[óùöiØ=êô’~&«ç$=ËærvݱÕP=cÖµ^£®{ÔɈ©3§n‰j‰Ñ¿áüýq”n4ÃÖO‹ñ…M>E§õNÃRϹuñíó·:é÷ªêOL: #&Ÿ³Óº„jÊU«‚~ü½0ë×ûHt¡°Î§ètÖî—¡l_5i»l«Vƒö%ižºj#tºÿ8Ÿ¢SíÔO%õļ}Þf³®u4èz«£þ~°Ÿ£Smƒ®Û…©W•×åÈË´UuÒ£ÔðXŒ)8»ê3—¯­K¿)<†Õª­VóÖ£ïãu Oõ›–:³vWÌãñµUÝ«kÒ«Ÿænì÷û…Óg¥ÚªŸ€éHçïoëéAÇ™~ˆ¢¾{³>Ÿ¿+5o«Ã*鲕7X¶#I=*i æb¿O–êù¡î:¾´ÙTï¦IßóF· êõNéþ#„|ŠNµ@7¡úÙäøþé´&ûÚùU祦M÷…}: õU?³´Ï®½ñ( uª¾ê¸jÊ´ŸôçStªßÌõô–ô[ƒôíyŒúM=$êÆFWéû§šOc½ßÞö—¦P[ƒÚÑ¡7ûè~ÕÎÚûÜò):­‰úïNú©ã’ç­éoÿ ê°ª°hÍ[­ýÐ):-šÒÕ½q¯³dû—¿Â–º öêgêb:¤ûxJNë9¡þÃuµ™µ·&}oÒ=jj³½ºZÅz¨“£LžôžˆEÏ~ß_­jë§ÚKYî­ú| Nk‰ìµIS :vVeS»þ·õï>jòv:…I³¦}oÝߟñÕ Úë­2ûÙøv Ÿ‚ÓEÿuÔ2^¶n_¹›~ÂU‹k­>j¯ª¿obʤÙÃ—Ž }ާš¶S|­8›Ua¬§äT¿²Hú¡ñ¬§‘ïÓ÷\ÿ‚Ú£?ÔuC#þûzþÈtÑ££jµÔ£M>¾n©›¡Ý/[s­±]8}e:ÌzvIU+mÛZ§^F¿ÅÒ~ín0JÕ)8Õìaž4Kµ”¿Aoåêµk´Ž©3èõ>Öë§ ²š õŽÇ‰DO”Úµ­=z»Ü½V§oMµWB7Vulê…ÇvO—býLt»&oJ†=´žëºvAk®X7uƒxlØûe/„õ¨ÖÙØY‚S½V¥êò¥-09}¥I|­Ú{§÷?YOuªëÚ½”VmƒXuKöfThü3jÙWsü¾¯§Â®_¬®ó—NÛ—ÏßHu¢ÕkF˜ÁpJNõ 3ª½ '¿ôÝæ±}È Fí´}ÕuñG>%§Ã¢GãºËÕ³(GÜ©-I[·N%£Å4_>:Õ&îz׬¤ÏÇ"¨Õ«O‘ŠšM“áüŸ’ÓI·Pu;TOú-ûÑ2¢!ªnû'Ý¡FT>vZàTO$ƒ:á¥|[´³öZ©³“uyNÎÉé°õ†è†H¿98ò$Ífíµ^µË´¿÷†Srºõ¾è§¾u¥¥¡ QMÛô£·Q× Ñ(¢Ã)9­ÇÝéëÊûwƯѮw¨e0èçb÷;¾á”œj©ßrÕšZKÇÈó•éjÂ/÷‡æáŽÚ;1 _úíº6ˆŸ…Õ[ïð¬Û]mºº]o†Srºêm«£Ö½5d:.8Ñf<½SsÏú‚ï§àpJN·8§ü¥¦h¿~oØuöem9Õj¸ ÷ §èT?E©+¡~9éêü}‹O}¦Z¡ëÊØëàv•NžêŽ –ª¯zDÖ  ŽEPÛ"´yÒbó÷M‘/Ò©²k¸¥Ÿxjû^Ž Ÿ¶i×¢wÿMÆç¾Ã):]Ô^˜êA^ÿ'¥ÃôXtdhúª ¦-½C½u J®« ÞZ©ßíQºú/zàÔûÐîU?e§zÒÓר_ìÏùØëÁTã©I¿¿ï›|†SvªL–Q›¼·}èw7§Þo9hë·¶ñËÃ)ŽÒÙŠQ;»®Íµfê6ï»!^{{õ[r5ï»Ò†tìµpêîÞ>t›}öªè¬õª.Ù³UBOžîáïôµjGÇ›—¦…U[ûôrÅhNé©~“XO _úWÝYßyR} )õEÎÆÊ5œ><Õ.èíV½¨núÞÕ#—Õ¬–h÷}“C>[1º«SPÝ’¹¼w×d½o,×÷÷·° ù”'-z¥nÿõkÜ·£¼6öi“¼ÚɸTo8¥§Û5µð%Ý,ößvýö[O½~Æzïï §ì´n ô#¼Z’v‹F¿@ÔK’^"7,÷gæáüÝ©^›Ufí†P]§Io묯nkçìïSØáê4å­+´×ž˜ã¯§WÚÕ⬇½žò¾Ÿ¢ÓºЖýÊBŽ×Wª_¶ë¾m˜y8E§Z´zÔ–Šåûó2 (ë_M?MÊÛíš÷¨÷¡^gD=4§/½•fî¿¿·¯eU?Û,ÚÞ n†Stºh_ï0kEÑÂ~dÃjeúy™~`·¦¿n«~¡Î­Žõ¯˜ô6ÃRNɔޙª‡óEOÏÖjóúžôÃáek)\ÞlãA½*OíÄûh8e§ú™öª@jƒ°^§s˜“æ‹úÉ}ÝG¬÷ØpÎNu)¯+ó¸]Ü?ý\J7 Û3÷F->E§jyÖuwÛ”éjÿÜÔ‘ p _—ûhjxÏNõÛÝ…~ Ûj<>™šæ²õ h#Áb].1œ>;­Ç…¬›´Aoa˜¾Û£4<-Û3×­ÑbNÑé´¤õ˜´l‘ä±ÉÎz>¬Zÿ饭ÿé«Sm²œ´GÉÛ ­Âèuàêöè·\}Þ¿¿ÓW§ƒv:k-Ö3Dþ¾ÍL/Ø.P‡%=ìC9»Žz~X¿²Þòòæ°g½ˆC_ê~W¯Q÷ÎÑéö‘jùšt#\õÇñ[¿Bß>´Hýv%Ý=ê|:ÕDøæùýzÚ1«±§_èýßýý,Ã)<ݶÃúµµe¯Ãwƒb­›zÁöÊÕEûÞìÎ×ïj×K­Vzqùüî°×²^ësÞZÌêÂjhuúÆzkk*u ¬ÕW›µc<ë‡Ûý?ÚÀe Nlègu°ë]Ôºt¾]M©‡®E×XíL¹ßÂÓú¶5®ûÒj]¾ãAc<í<¯ÿ¸^¦r¯Õ)<Õ!^·ijn­…aš·›×µ±W³ûÑ~ Oë×·ý¥máúÒ÷t.z/ÝvtÖOï§ó)<ÕaO_ÛçŽê>›ÿA?5ÔMŒþÇý°Oƒ}Ñäaüš´ÛK›ŽŽÓ·~ÿTtû¡®A:}Ч{´|éåJz³ô÷p³:õº–i?>Ý¡N›˜U?ŸÕÛ\³zMß—,‹~­÷²êBol¬Î_f}ÕzÍaÒ;¥û·Z5ör•±žU h8E§zgI}_«Þ|±Ìß§í\œ·//ô k™OÑ©ÞL\Ï5_i»¸è{µÑ$G÷ëud­jnÞ’NÑé¢/ùkÒ•BÓ›ïMvßuJjÃx6šÅ‡stZ‡@=hÕ¿Ÿ^N8fh­ÑÚdªJú#/Ɔï=:6{r-_uu×ëÑŽ¦ŸE¯µYt1Õæ†-¢¹C>±žô¸¨®UO´GÕVZ&V=OZ-ÞÃ)9Õ¡¯UaQÏCÛûíÐ¨ÆØZÿ{=íJ¶0úéìš¾ôZCý”¶ôzܪÿM}‰škMÃ{nº}:[%úªKJý_ß>…Õ`v¿ÕAÍû¾×á”›úö×ís‚¿ƒ)õRW½C³ÎéѸg8%§z¾Ó¯¾=‹ÖTu½“/ëwµÚ2Üû³Ã)9ÕëDVÝxÔ=™¶ºµÝl­9uk¤_'k$a¼¾Spšõ—úúôçrÔH8FºÚØú‰åÖÓ7“æœæu»ö©®¥zèw!ÖprÕßµÉzt»_hæÓ8¯£°×€Dïò-ßWóÔù–µRÕÅCo–»oÞæÓ¹T¯À™ô^‰U;?¿¿œ«ë¾z³u3kg³:mÖ']HôRüUƒùcß_ ”¶RÔi¬·WXç/NµI¨–—ú'Òð}¹™~î¢ém5Œây¾•wÖݽfÕYo¾<ö꣖zMœµ€©x:ô¬ÞÅ©_m|÷hÆØëýº—̆wº—·J¢§,\õ^öïkOÔmлú³~áîS·áü½©æ¬Ãð¥ŸÔxL™aóçí>a0þ~çÔTGñªmŽªÇt|å»n³½z{z¹§q@:oZÔ ^ô>¤íÀcO¥CA/nÒžYgÚ=ßÍ[·U`½3O¯û¾ê¢îÕ§í`½jÂø-‚a9í^Ô·Kº¼×µÖ‡6ÿôC‚u»vH¯X16B§Ø´.Kº\~Mu ýr”âíW±´¹­è=xÆVý”š{ïá—v×èíqGs¢^‘«¿Ž3¨Ý¿óï›êYmPkv3Ó—Ã×Iú!‘.~úÁÊ=êÔçX6CöK[gÊôÝ“]·2u˜m™”¾W£VbÓ:dô¢½/ý0wZò1õþ0-RóvPoä§ØTïâ©[º/½Z2OÃ÷u:Ëf5Ôº­~ãf8Ü N±©šôõX¦­PÚxø9‹®úõT_wþÃfÌÝ£Þû¢Ç'M«u}».ôÀª?z§wThÚt¿j]né]µ­÷kÝîû]Ó÷Ô«£4ßÊzÓ–1BO±©¶„LUvý©¥ý†¡W ­UWf­Ë};Óp Mõ;½ºAÓýŠþZÕAZ·kcuk[=©Üß…:¬'k]“9½ú+«'5¼]%¯­ÏÓf z#ù=êt,ÕÏÿêX¯ëå6׎³ä²™¢ê¬éO+ÆÉzΑfõ¸¶ÏЗ1›¼º²ë7µEÀ“±­ZϘ¼µûLÚ\7öß÷Üé—´õ‰µÉP8Éø žzzǺðu†êù}}»–GWìzTÕŸÃÐõŽTÎWõêÇ(ã ¿â 7DÖºÚà½þà‰~غɇ:ŸJõÎy»ÓQoÓú4ôzyý-ĺÛ+ÿ â uö`¶kо¶Ü0wדdÙî±Ô½œ2SýqŠ:.õæ}Ý`|mšÓÖtÞkLa-Ìå”™Nú1b¡µ¸Ô•à;fÑäµ×.êAoÒœîÍ€r Móö7ÃÖ] ?yT˜íëý©¼Uæ{ÒûX׳kÿR L¯]9ö0zß謹ª0m¥¨ÓO Œú£Ozu›~”2ŽøfL¬ú ã¼ý.Î=ê”™ê—0S¯· êuZßf‡^®>¡^â?—l•óe½úÓ0s¿ +½ïíØƒj³‰†8zíîTî?},§ÐTw;õ ð¥––:íŽð é]Äê‹§íîµû§zM‡-ØÑˆR´@|ÿ C¢jïýU„Õê”™®:3–I=4ý‘—oÛ¤èôî„^^`º¿]¤œîê]õ7EJ_¸õ°¥75›¥Ž7½ÍQ/Žº/ÆårW¯>ÿò5kcAúNÜêj¼}¦¿ —ΨómHÚd•k­»øiLߢëEiÑDU%CªSë—¶,¯Yÿ‚šÑ}‡wu!Ýî;Я §d”…SdZG`%Õ3®öĕfåq‹GôLp{0-§ÈT?äMäê-‘ù­Zo[Ö²ªi0Æúù²Þ¢)®[¼¼ýí÷qY žíbŠúºßx”˧Ë.»a¦ï^}D͘‹þÎd¤?å”™jÔWš/ýÌcßn­õÓ]nô·N¶…rþâtÌ[w©þ¼­^.wÜe[ôFýÅÔí~ûÌ´œ¾8Ýîeç¯^o€‡£Õ.Ú¹ ¿\¢ŸÜ·Ž–Sfº]ݽê ?©Î´ï«J´{kû¾(oßlÞ%ŸFûj®:¼×÷ÌFç±þÚŠ~8`d¦åtU¯ÆNueþªÛ‹ºØ}3 ·©hÏ•ÞQ>îYøê¼_¯û–Y¯Ÿõ@x8C[ÇÉ´}=öéþÓÜrÊL×í·õãê¢÷ù»¬×1©?uwœãv‘rÊL'ýÀªŸuuÑBp<Õ¬ã~»K;£Æûe9e¦ú+Cõ¨^Ë‚~!<}âÛÙ‹6(égpF_.Ÿ›ÖbP6ÛUàzmÐÑu¢7ÕJYçf[z ü‘™ÎCR­ôžÔZÞûû!)çÌTñ¸l]Úáxt£é ¬ûë¢-éÃÜßg¦åœ™öÛõ¥#~»ƒû{» 1¿®eú{÷§¤r¾ªW›ìôwåô>ùò½BLëökƒƒ^á­÷ŒZš´Œ_³^4“ÖÓ+zw¯Þ´6ë/ ßÓ–SfšõŸíõÒØU/8Š•–1½Ô1m{dc­yLõ <]N¾4Oª;äÇÑßÖ ’u·5¬Éz¨Óå¥Ëöù¦ZþƒþDäqkÆ8ëO‚«Í¦'NkX>KÒ/:ÇíÖŒA¯b:q½^ÇOZv¸oÊ(§›zõ ÿª¼ÞÔ«­Ç\®ÍI·¾û=h¼C·0£Æu Ôk9>HzT^·K]¶öÎ{ÕO¿ZªøÕá—^ö°]0Ô^àvGÙ¤¿]:ªãq?@O7õêUfµŠ|-ú!×ô=môÇmŒZ4´Ž¹§ÈT¯’×_Ĩ[aýÒþÈ‘ôQæ-YÒSüb”˜Ó禃þJY¿m­\G#|Õ;«Ù¸ýrÄpŸÞ•Sfª?§kD-yj¯ÚH?ï×-c6jè)3ÕpS;²³v)ôù8‘ŒývÑá ¡¾þØ¢¡Õi³lhµª[Ÿåû~ÝE£LïrÓß@0®ÓÏ—Ö©ßX©ÿ\7îß¿Ã6n×õègè÷™TyÏLµ®Oº3ÖÛ†õ­#µÑßô÷¼òÖ}ÿag9g¦š†éª©.…¥Ùu­ÒVæQ;‘æy¸ÿ©œ>7ÕŸ®z}éëÓß…?¶þÛµÍzßÚ¢çÀû;Ë)3Õ_PS­¶ §–ï«ýµqE$z•ï4§¤Sf:mW×s®^N­Eî8œj `îõsºÿ¸ï8/ç«zÕ’Õˆ«c¡ôÓÑ™¨wdëyr›>¹µƒvŠê¿’¶nÚÿ¬ÌÿþÏÿþ¯ÿýŸ?ÿ¶ý˜õ?þUÿ»ÿòOýßþEÿ·ÿ÷?ÿ_½C¨ÿ'§úÿÔÿvÿŸþëÿü÷ÿÿý§?t¢|Lü“.ÈÓ_{ÜÜÈb¯Ä¤Ä~'Ž Ôßö}þ[3€ò)ð¯¿ó¼ˆeÝ>Î"=gw¥ í9jR¡Â€šªjô7ñÆ|wžfúÄ™œd¬p°¦¸zíoæ=nwÅnÄû±ðqÉXá`Mq5X“¬»B{ûý  ±ÂÁšÒ®SÏ ÝÛ[ü£– Ô’5oÞ(è®Ø×Ûº+áø˜ec…ƒ5ÅÍû·&¬Çí®Ø­„o÷n0Ä%c…ƒ5ÅRÙHÆ$ë®Ð­€gÎþL ÕÔUZ}æ ƒîŠÝˆ¯¹ð/ÿú¿*¶|CótãmhKX*TPSV½á"±µ»Bß7sŸŠJ… jŠªw¡ó&Vw¥æt”–Ó£nÌá©´l‰Êd iJº}êÆzûÝú¾yûtœR¡Â€Z¢êOTä•õ¨ÝÚß¿}\R&R>Gšr–iëgŒVYº+õÙ±†Š * ¨­êXBªÆŠUw¥>?+TWõ·Š–™ÔTU¯W¡M«î }Û¥Þö§5mÔdV.U(TS×9ö¶°p@ß—ÀÏ‹+¬)í²}ùÀ™\Ý…é=*V¸T¡P-YõFæ(è®X/YÆ,+¬-îö‰ k$tª÷°Ð¨%S…B5…ÍÃký挃îŠõ¢lÔ’±ÂÁÚâ.Û¯3’VÜîJ5 8¾9àB…}P5Xc°bp`½A€U2V8XS\½7ñfXwÅ>g‚ó­¯eU*TPSÖQË€7 º+öùa—Û‡µF,* ¨)ë4ŒedU­î }Ølü Â’±ÂÁšÒêõ´›\Ýš#W¬ P¡Â€Ú¢ê%¬©Õ]¡ÏŠ*TPST½×†8±º+öa›ñƒ2@Æ kŠ«×Š'Öäê®Ðç&¬ P¡Â€Ú¢ÎÛï¤p&Ww…>?*V¨Pa@-Qõ§2RâM¬îŠMoïÇe€Ö7¥uX“«»Bû‡æ¨0‘ò9Ò–sÞ>üåL«î }zPhú3‘ò9Ò”³äÜ»LllÈÇ> lp2™B`ÚzÎcá¼õîB||Jll‘ò9ÒÔr\§<ó }wž9øwA7Þ†¶%*TPSÖµß~E—2—º+ÓûƵ¿5iCU2V8X«U*ÎM·Üb© ×ñó°ÂÁÚãkê§D*/Ý•é=k¾}ÖÑR–‹Ö_QîpËL&V8Xk|ÍuW9ÑJmw…šçJ|QàB…5EÕ[= ëQ»+ÔÜ«ÿ@T*TPSTý5š™·|uWìs ¶Ö’©B¡>(»Ä”-‰Ýë0´žÑ¹BâÚO µ¢uW®ûÀP¦s…Ä5N9Z" üÍuªÁt®¸¶ÀKôÍA5ø›»y–ÁX ¦s…Ä5Î%úæ°|pÝÆj0›+$®-ð-îX >¸îc5˜Í×x(ÑÕàƒë>0VƒÙ\!qm×¥|3>;n6¦þtDèË °®ÜçVïôþÍw„lUu.U(TóuÕi6ÇîÃÄ*úÁuw¼}\«žs©B¡šÒê¯3dbmì®\çq§Ûǵ*9—*ª-í-X?¸ÎãÞ÷,Y5œK Õ”vÒßn§U¯îJMVêÿ“JË¥ …j ;ëoÒjWw¥:‹ÕY.U(T[ØyY"!V¹º+ÕyX¬Êr©B¡šÂêo…FJA¬nuWªó°XåR…Bµ…ÝЈT·º+õùƒ°Ær©B¡šÂ®y#ï «±ÕyX¬Ær©B¡ÚÂÎÛï’êVw¥:‹ÕX.U(TKصb¥ª±ßTça¡K¦ …j ;càó-¬Æ~SûûÌÿ–ÊÓ”TQ1Ñ*Vw¥>>*T[©L!0mI—>?·ÿ ®~SªªT¦˜¦¤yˆM|¬¢ÔÇGÅê)“)¦)é0³?ô±Jz0?ÞK)* ¨©iÑß×&•¨îÊ|~R¬–R¡Â€Úš.yð?VKæó“bÅ” ÔÔt"s+¦óùI±jJ… jjºLý~–`”©î õ>Qxÿ òÛŸ YÉXá`­/ãÜõ–»˜*,L¬p°æ[SÉ#«fwW¨ó°¹¿}ØÕ–ŒÖ`aî}^ª õ½ õÿÎä ‡k±iWÖÖ]¡ÞÃÞ'¦éú°~‰+®=È¢Üûx3÷q¬ë•Žndº Ö‘5H=vêC»£àÆ »`‡E¶1qjld j‚i éÜht¬ó°Aj{Ø1…‚èÚÝ]°Î 9&|J5GÁ˜CkAt?Ð]°Î›—q Õmäˆð)õþ3ÿJrhÒ"ÛøO©ö³ÎÌi ª9`çØŠˆí´‹ø {B2V8XsÌ94À£ÁGT{„ÖDp Û ®°€5ÉÇ kJ»ÄšÚr7¨÷°à¦›ŒÖ–6¶Ô€ûîFuŸ1<+®©îýx[Öè•Øâ@Æ k‹Ûy€§°Fu‡xcs…õÕ}šHKDwÁºƒ[ÐÈXá`mqcQð Û¨îP@€_à ‡k©›ú×Q´w¬7° +샸¡ f{T÷•aÆ+®­îÛ0€²ƒëŽlCFç ‡k뻄ö ˜·tPÝ·†¹Kt®p¸¦º)Çö àžìຣۓѹÂáÚú–XMÇŽvûœ$?| 'ØXá`mq—à®Û•\w0`»2:W8\[ß5x „ÖЂÖ7o(D÷eëp_Ææ ‡kë[‚½‡Ž ë ðHAÆ k‹»· ඬqÝ—nËØ\ápM}‡>XÑÁCEãºãgšŠæ>´îcÛÓƒê¼}l{J¦ ƒjëZ"ë>ºŸjÔ§€î¦˜Lùœi+ºF–(téoÔÇ'~&S>gšŠJ:štäãå²à ŠÉÓÖ³DV'tÕoÔÇ7®ùL¦|δ]²ûÛàÙ©!Ÿß?&¸ e2ås¦)çTüIn™óùAÁ=*¨)éÜ&=¸Æ7æóƒ‚‹<*¨)é’J`½ÃÎJé\ä<­×ß{ùó;X¡`­ÍcvÉÉ!g&V(X{tM³ÿ“,à9§1½Gî°ãd¬P°öè bçû§µÎ{Kì—„¢X¡`Íѵæ”YÛÿîÂôõþ‹ódTÈX¡`ÍÑÅÞ¿¬ß‡"„~¿.Š Ö]sdeOm ê<«þî$°d¬P°öð bÓýÓZƒu ­aQ¬P°ÖðêfÎ_Áìõž5ßK`œØX¡`­áÆ÷Okìé‡~-bQ¬P°öðZk#xœ? Þ³Þo•³±±gc…‚µ‡W{¿UÎÆÆ¾bC«X+¬9¼ÒXAwã€zÏz¿WÎÆÎž Ö^Qìý^9;û!•Ø*Ä k¯%²8bNÏõžõ~³œ­=+¬=¼‚ØûͲîGîEXc«X+¬9¼†~‰NRwÁGI°½ÈTaPmaÓ6èNu¬ó°Aêñ°Sù½¹¨ãÓ]°ÎÃböT”ŠÙ~ŸQíQ0-!aƒ.RwÁ:¤¶‡-©$¢3Ó]°ÎÃb6R”Šy”ŸQÍQPr t{º ÖyØ õxØ)´"D ”î‚}~XÐí RA“ö3ª= æÐŠ5eº Ö6Hm;æÐŠõ9º ÖyXД‰QAGù3ª9 ÆZ¢ÞIwÁ:©ÇÃΡ!jGt¬ó° w£‚–úgT{,¡!jqt¬#lÚvʱ!èt¬ó° Å¤×aPÍQ0 ±!èDt¬ó°Aêñ°± 2xPlÔ^©÷Þ£GE6W8\{(,±õ6ht¬3@Ÿ'HÅҥϨÂÆÖÛ Ó]°ÎéíaçØñô Õ³X+®õKÚÃ<„¶`t÷Õ¶sì2ê* Z2l®p¸öHXBË9˜_~D5GÂ;†€R£ºÊbmSt®p¸æHXJhÑóÖ¨öHx¹~®à¬q½kÙÑ=›+®­oì¨ÚŸê¾5Ðes…õgÚZ'ÁPÿ#ª9Ö—³êjîÄ×¹àNŒÍ÷AßÐîôÃÕ}kX³&+®9ÓÖÂ4V„AµGÂ˽v5wºëŽ\p§Ëæ ‡kë;T÷X˜Ó¨Þ[Cã6W8\k¦•úg#êbDŸQ­‘PúÜ=b'‰ƒëŽ\ì$Aç ‡këó°tï º#ë§s…õgÚRë,ûŒj„%¸{ÄN×¹ØI‚Î÷AßÐN‹¦ª;r±pšÎ×Vw îD0—áভ‘ÕþÕ Ðe s…Ã5+Y µ‚í¡ŸQͱ†àî;©\wŒa'5:W8\[ߘOˆõ‚T·2`ŸýйÂá>¨Üéa.ÎÁu+æâйÂáÚú.±xº<¸Þ{O—t®p¸¶¾1ok¾:¨î[ÃÚ¯è\ápMusÜbÎÓÁugæ<ѹÂáÚú–Ø)=7®;ÛÀ1›+¡ÖAxPÝ·†}ÓIç ‡k«;w| [Ö¸îlÝ26W8\[ß5v²@Oñ9xzEOñl®p¸¦¾CÌCÆZvªûÖ°¦]:W8Üuƒ' Ðák\w¶›+®­ï°ÌLO§»póã5ýõµ9}r ¸TaPmeKðÌzCð¬zl®p¸¶¾±Dëè?¨î[îB s…õՂg6Ðl\·Þ€~$›+®­ï䂎Yã:µ,ÝWHëLÁ¥ ƒj*[úàitsJÐÅ@Ý6W8Ü}C§aìó™ƒê¾5ì:W8\[Ý<¥ô÷Ïk9½ëÕÔées…õõ-caz{Ý…ëÔ2ãr*ë´Æ¥ ƒj+;}Ð'+AõÉØ\ápm}C_…‚_×T÷­aw3ѹÂá>¨<¥€zãºu ôÐÙ\ápm}נϺ¼ëÔ2ãÖ6ë´Æ¥ ƒj*;öAŸt Ç ó†:l®p¸¶¾Á/3Pÿ¼qÝ™úçl®p¸Öå€e^W›êÔ¿×7oób;§ä;̺Hèÿc-@d¬p°ö(ƒ~ès7®SsÆûJfª¸TaPme§ :…cÐ!CB6W8\[ßà÷4¨Ïݸn½}n6W8Ü}ב—ytjz›Ÿç3\ª0¨¦®St@‡»q÷5Ý>­éos©Â Úʦ z„SÔ=B6W8\[ßàwU¨Ãݸnn6W8\[ß!/¼´£»P*&3\ª0¨¶®cÌ@½íÆuÞ×ý/~™Î6—* ª­lð¾Ôœ¢®è²¹ÂáÚú¿¯C½íÆugèm³¹Âá>è;EN~Áœ£»P*f2\ª0¨¦®s ¾/ÐÕn\ç}-÷µÑò´¹TaPmeƒß©¡®kãºo t]Ù\ápô zƒ|w¡:³ L ¸TaPm]§Ø©u³×y_÷¿\hzÙ\ª0¨¶²KOô>º õUgzŽOÃ¥ ƒú kpOú·ëÎпes…õõ]C§Ý —ß]¨Îls.UTS×%O» /Þ¸ÏïkºŸe¦+Î¥ ƒj+; +Ïóè.T§zþ —* ª­kôûIзm\w&€¾-›+¡SnÐÃï.Tg6€y—* ª­ë|_ Þ¸NõºŸe¦Î¥ ƒj+[±<¯£»Pêú2\ª0¨¶®ÑoQA¿v Þ¤„úµl®p¸ú†Üƒ wß]¨Îls.UTS×5ÝÐo\§zÝÏ2ÓçR…Aµ•-!÷ô»Õ©^ ßÅ¥ ƒjë:†N·AO¹»P·úß\ª0¨¶®sðt úßëÌ®ûQ`ºß\ª0¨¶²K9Ûõ˜Ø¨½2Ž‹ÈdÊçL[Ñ5ä€W£:ï t¸¸TaP-]Ǿgƒî|w¡:o KÈTaPm]‡àys¼®S¯Ê½Æn€LõAÙ9ÍaÎáA}¬Y˜oHeÊçL[Ñr0Oë :ï ó´ÈTaPm]ÇÈ 6êÇwêóÛ³2UT[×%x‚Å<îƒë¼¯ûÖr¸ÉTaP”#ç7Ì+Ow¯[5 s ©Lùœi*Z$Ñê.Tç=a.™* ª­kŠxQ¾»Pz…¥dª0¨¶®Á»ä@Wûà:ïë~…µÖ,̤2ås¦­èò0_ð :ï óÉTaPm]§q?·q>»î.Ø÷×õùGâl¬p°âF —h Ñ]¨Îb€…/cZSd‰Á—Ϩ¶®kÈÀ ƒúX¶0{ʔϙ¦¢¹Ù 5بÎ{­A.UT[ײ‚AFw¡:³ ]ÈTaPm]Kèð ÚX§+󭙚XL¦|δ"‡WÔÀjÔç÷„X\ª0¨¶®sèð´Û» Õy[`4À¥ ƒjëº ¬,³;#· ûô(NÈ\©LùœiÊ9ô¡+è]5êã[+&S>gÚŠ¦È‰u­Õ)R kÅ¥ ƒjëšC‡ª ÇÞ]¨ÎÛó.UT[×aò+*˜´6æs©£V*TP[Ò1tNM«F}|Q eÅdÊçL[ÑÐåZQ¸»P Ö\ª0¨¶®Ë:³"¶îÂ|žR`H… jKzc}œÕ†}¯)g•ŒöAÜЙtVÕÙ°€Îê°®Dª0¨¦®íg8ÞZw¡>VÐd2ås¦­hù* بÎÛ@.UT[×âïVÁ|õ…|^À|•ɔϙ¶œSäüÚúô–Póɔϙ¶¢sèüê¼'ÐøãR…Aµu]çT0úkÌç)fT¨ ¦¤cŠœSQ«ªQ'hT1™ò9ÓV4GòTÔ¤jTç=&—* ª­k œSÁÔ¯1Ÿ§ûQ¡B€Ú’†îÁB-•1t·j©p©Â ÚºÞÐçÿ†ÝfÀH:ýS¡Â€š²N}Ÿx§éîB}\Às?“)Ÿ3õ÷S`î÷B>×)0÷c2ås¦-g¤À£>¾xð¸ÏdÊçL[Ñ1°ãC”Æ|~õ`ŠB… jK:‡vüàá´Q_>x4e2ås¦©èÜv¦ oژϯ4N©P!@mIsÄŒFQúøòÁ#“)Ÿ3mEýBŠZ|s :¡“)Ÿ3ä\2­»«»@•÷zKweM÷— Öö‰Œ Öú‘Á0öþ«ßÁZ çybb…‚µ‡Wèfôd>nlAÏåL¦|Î4]R ‚6gc>WÐç¤B…µ%Íi¤ucu¨7¡ŒS­­+¬YƒØ¹¿Zkq]òÊÄ k¯¹¬´~Ÿîõž5ÝK`NZ.V(X{x±ùþi-×kY2+¬9¼Ö>û'AÐKlÌç2 š‰T¨ ¶¤Ù_bAóë…|~LÐüb2ås惜‘3ØéÒ Þlî'©­)+¬Y£Øû[È˰Z‡Ða Š Ö^K´×ÐYô©P!@mI—ÈŽìPiPïõ÷£Ê2®ÈX¡`-e§>û+hÌç!€ù\¨ ¶¤CduTPïõO·¯¿\±~+¬­¬ÿ*hÝ4äóÀ¬*S>g>ÈÙa9õõ^ý½{Y ¯• ÖT6•Èz…å«Ô{Ö{K´.+¬­ì)®X(x@½g½w›Šá±±BÁšÊæ¨`”u@g]ú{ à ÖVv¾;Œ>më.ÐýQgN×™*ª­ë”1ë.ØÁê1„¨~…* ꃰkHØ`¦×]°Îéía‡>°Ö‚ Ôõ*Á½A\ ;› ÖC*…˜ít¬3 ° *JÅbèϨ¶°9G„æEÝûü°Qêñ°Ó¼#˜î‚uË‹‚T0üŒj‚y Œuº Ö6H=v™‹_e±Xç€zuëþY‹ì°±BÁšÃ ô‘}7ïPïYïýýb¤l¬P°¶²9´?Œf'ÝëL0,è‰RƒÅ[ÔaCûÃhÓ]°ÎéÇÃN‘ý!–ÇPoÄÞ?k16V(X{Ì¡ýa4éè.Xg`±L”Š5’|F5…SÀäBS™õÁ½®ÅÒ•Œ ÖV6Ç6³Á¼£»`a†3A*ÖöóÕ6Ò·†3c¬ey¹×u4uåb…‚µ•]b»˜`òÑ]°Î0cš ëVùŒj ;ÅÎö {ب½Rïï(ƒ¸~‰+®­îÛc¥î‚u†˜©XÑgT[ؘz³êìó:W8\[Ý%¶AfvÝë 0` R±N£Ï¨¦°sè$ŠzÉêÐMfs…õÕ-¡MB4í.Øç—†¦·1*ÚsôÕ6vÀ»WÀtêÕà‡(t®p¸¶ºkh“Íú Ö¶`x£¢HQMa—WäÖpwÛ¸¯ï'kwËæ ‡û /3½ê.Twš©›+î_êÏ[Bê‚iQí‘ðŠÛÜ™nÈ×¹à†œÍ×ÖwÙ/"…yÝë,Aê÷Æö `¢Û¨î4þ+¤s…Ã5‡ÂÚÇ6¹Áô±»`¡F¥1*ÚûùÕö¼¹5 <5®[ÀÓ›+®­oÌsèFu§˜D³¹ÂáÚꎱCD04í.X§,€ oÚÇNÔ ÚÂ.±Czúm\oš¡§_6W8Ü}CR°‹¢QÝ·†}„Kç ‡k©;÷}ÈÉÓÝëL5,ER±¾àϨ¶°CìÄž~®;ͰÓ/+®­oÌÈĺjªûÖ°¾:W8Üuƒ{<Ì;¸ik€Ðø(Î+®­o죜hsEwÁ:¥ ë‰R±FáϨ¶°Kìº ×-c˜»@ç ‡kë3â±Î°ƒê¾5¬7ŒÎ×T7õA#³I®[Æ0›”ÎײÌçjfó?£Úc¡Ï•˜!rpÝÊ€"t®p¸ú†Î•XÃàAußÖ2Hç ‡k«;ƒÌ,=¸neÀÌR:W8\»’…úÛÀO >£Úca …1çຕópè\ápM}s,îÀzHªûÖ°.R:W8Üuƒ;éòw®W@—Î׬d9Ôò~óÕ eÚö"œ‹?º U¯«ON_…lÌeþfn´ütE •)惤Á;èäå ƒ…:yl®p¸¶¾¡Ð ìÔ>¨î[Ãzµé\ápmu§àátù×-¶ ËÏæ ‡k/¡Æbð´Ï¨öXXƒ¦è™7î†|±¿¿\îïÉ3s.UTSÙ¡Z! í8í6Ôvds…Ã}Ð7tìëcíÝ…ê½5ðÃ:W8\[Ý<ö‘Dãº5Œ$Ø\ápm}Ë83MèîÂujÙý-š¦eÎ¥ ƒj+;Ð$‚æ j’²¹ÂáÚúÆ"Ðû=“õ]ÏAuëXûç—¸Âá>¨èò°¯Òª[ǰïÒè\ápmuƒß•¢)JãºõLQØ\ápM}Ç>æ1 >ã:µ,ßWHë¤Æ¥ ƒj+›bê>ŽA× uÙ\ápm}cA8öÙßAußöá+ÁS ˜L4®[oÀd‚Í×ÖwØ…“Rujz Ÿ'j\ª0¨¶®cÈ»A#‰ÖY!†{¬30*¨­êónPGw :™¨£Ëæ ‡këËíÁoUÇàµ]èתl®p¸¶ºÑ¸Á´§qÝb¦=l®p¸úN‘Þˆ`ò×]¨Îú¦”\ª0¨¦®S ¾/0çi\g(÷XΗ* ª­lð~<Ô-Ÿ‚.1ê–³¹Âá>èòÄÀ€§à}sègÀl®p¸¶ºÑ›À$­qÝz&il®p¸ú® /Tí.Ôç5͹TaPm]§ ×fh뼯ûL14.UT[Ùà-”h 1Ýw4…`s…õõ^:fhëÎ0Ccs…õõ]#nX4Oí.T§ŠÙ/—* ª©ëœbnž½°ÎÛšî°\*TP[Õà}™hö0=w4{`s…õõtËÇò›» õõ´=ÇçR…Aµu ^8&’ë•4‘ds…Ã}Ð7âƒEÓéîBuV0IçR…Aµuƒ>˜E6®ó¾æÛ§5“H.UT[Ùà¯hò0w4y`s…Ã}Ðwynsw¡:«èŒs©Â Úº/AóÈÆuW0ds…Ã}Ð7䀣éîBuV0EçR…A5u]rÐ“ÈÆuÞ×ý~ÑÌ!¹TaPmeƒ·£™ÃôÚÑÌÍ×Ö·ôDŸ¹»PŸWÔçR…A}Ð5x†“È%x¿/šD²¹ÂáÚúŽ!g1˜Jwª3ÀKÕÖuŽ9‹`ùÂ:oë~·hæT¨ ¶ªkÄùB}ðFu*èƒs©Â šº®ÁûEÐ|l ^ç‹æcl®p¸ú†œ¯`VÚ]¨Îls].UT[×!è|¹cã>¿¯ÔßofÌØ‘Œ öAܱ&À˜¡Q{eœÉ”Ï™¶¢%bw¡x£:Kh€s©Â Úº¯iAÇ5x‡38²¹Âá>è²»‚Ùsw¡:³ŒÉ¹TaPm]—˜Ý…Žë-÷»D3o$c…‚}wøh¶pú96kY“&S>gZŠ.uHäîBu–Ìõ&S…A}Ð5èqa)ãÁuË –2Ò¹ÂáÚú¦ÇLœ» Õ™ X:N¦ ƒjë:„<.0dlXo9¸ß#Z#™* ª-lI“§¿/^Æ¡ö >- `”@eÊçL[Ñ1db6÷AuÞfs“©Â Úº/ cŃëÖ,V¤s…Ã}Ð7d#æîBuf‡“©Â Úº¯lcŃë-÷;D+Udc…‚}7b‚)ÍA}\°Œ†Ê”Ï™¦¢©‡X~pP÷„ådª0¨¶®)dl£ÏîBuÞ–Ò’©Â Úºofóăë¬û]Œ'²±BÁ>ˆ1¶Àa9ý¤U¶° ʔϙ¶¢SÈØÂüíƒê¼'Ìß&S…Aµu#ÆK8ïì.Øç×…¦³l¬P°¶¶±KØÁÈ«a½7v¿ÎZ™* ª)lîCæ èr7êcÙ=n&S>gÚŠ¦ùú¯ê¼'ÐåR…AµuÍs œÇu¬W°°ô ÖÖvÈ[ÕfüŒfwaŽ÷cAþá#ås䃚úb8 :Ý…¹Ý¡”ÿ~CôÏo@…µ% þ æÐ%û©¿ß š™!+샸! Œ õqmÃ&S>gÚŠN! 4²ÕyO ‘Í¥ ƒjë:G¬p®Ù]°Þª †°d¬P°¶¶+«+§;Ÿ×¬yˆ‰”‘¦”CðgМpý4AêïwÖfLHÆ û nÈÓÓ¯¢Z«˜ 0™ò9ÓV4‡ A0hTç=¹—* ª­kèVÿpŽÙ]°^ýSW2V(X[Û¢5œVœîÂ|\ О!*TP[Ò)d‚¹@£>¾(0`2ås¦­è±áD aŸ_œ±BÁÚÚ†®™§˜Ýë½20s%c…‚µµ]} mhiÌç’v´P¡B€š’–òXÀT Q_˜ 0™ò9ÓV4G<8hX¯\y+¬­mèÎóp„Ù]°Þ+óV2V(X[[&€Í,;ñ¹\½,D¤|Œ´¥œBVh³ž~¼ÔzE ÉÊdÊçL[Ñ%bÀkÃze 4XÉX¡`mmCך‡C¡î‚õ^a‘±BÁšÚŽ}À›Xó¹d],T¨ ¶¤9d€®`£>¾(Ðd2ås¦­hè&sØC׃Ã~ +¬­mè¶íp†Ñ]°Þ+2V(X[Û1`€Ýù\²Àö*TP[Ò9bÀÎ`Ã>½)ؤB…µU ]° {‚cèÖjØ$c…‚5µ+ÊìNÄçi&®D¤|Œ´¥Ì‘c+ì\~`МR oE… j«º“ö¬¦ÐE¿°gEÆ kk;ŽW`0ؘÏS L©P!@mI—Èñ vZöyj> *¨­jèÊ\Øc™B÷Р+¬©íœÇ0ÀjÌç©&XT¨ ¶¤9-~÷!ø©@ƒæñxQw͇©¿¿{´F>H9f¿²‚ í êVªû ¸GËÀfs…õŠ]6 û,sàOØe¡B…5U]ràÆ-ù<·À¼… ôAÒ%ÐuÐßWËdmPoV¥þ~¶Z>+›+®-î+É!|Û]½µ¹øÉWÃT¨0 ¶¤¡«0ak Ü1 ;XT¨ ¶ª³p…£–},-pÖÂ¥ ƒj˺¯h›pƒºÅ*ÝAËÇfs…õŠÝ*YKàº>ØÆ¢B…5U]Ý œº¬þ®]˜Lùœù gà…v³6¨;£òýLµLl6W8\[ÜÐÅw°Ñ²n”ƒm*TP[ÕÅ?dÁ¡Kƒ:³ L]¸TaPd´ÀÌugÖp?c-³•Í×wíß}ÜO0Ýú~—ù§G-.TÐQ#‡,8 ÎäÂÂ2UT[Ö9`Í‚ÔX÷×?ކ7Hç ‡k‹ë^Ñ‚z®/¤30˕ʔϙrF¶¯XWÛußýx?¦ »…Î×7.h@¬êŒÌÉ"S…A}5²ÑÂZ±¨;¦û±et®p¸¶¸ïÞQËå€:ãó\ÈTaPMYsÙ`CÔó혬-,›+®-n*3³+§»p‡Ã|`4±±BÁÚâãD;ÏtèÖA“uÓK8yQ¡Â€Ú¢|]ÌÔz!ª…yZT¦|Î|3²‹Åú†¨[­î'ÔdN2W8\[ÜiIÌΜîÂõêÖHÄÆ kŠ;ô‘½,Öñr@Ý‘pÿ°“%-›+®-nN…ÙMÒ]¸ÎX›_ØX¡`mq§ÀŽm)8¨Þ+Ë÷O;™Ú’¹ÂáÚêα-m4«ï.\o0`­l¬P°¦¸%¶ h ~PÝ¡pÿ´“¥-›+®­nŽí¢!swázƒËÄÙX¡`mq§À~ oª;îŸv2µ%s…õÕ]‚†`*Ú]¸Þ`ÀB\6V(XSÜ1ò¡7ŽÁ/§òýÓN–¶l®p¸¶ºCpÃÌñº × `ìHÆ k‹<üþbÃöoM ‡‘ØV8ò­œìŽÁòýx˜ÌÑKæ ‡k«»·dÁà´»p½éæ¼d¬P°¦¸Sì|Úc ëO5Ð £ƒ…~P8´éƒô)øMP¾“5zÙ\ápmuKpÓL¨» ×›n` NÆ k‹t0zÌlXwª¡$,$°­pä¸ca ~Ó’ïÇÃdŽ^2W8\[Ý5x¬¶t®7/ÀÎ2V(XSÜ9èoÃúS tyé`!m…#_çÀQûüÜ%߇Ù½l®p¸¶º%x¬&ÙÝ…ëÍ 0x'c…‚µÅ§ŽÚ¦ëÐÀï =רÖ8èt‚IEÃúå Ì*è`!M…—>x¸¶ t®÷æÀ2V(X[ܼrOòÝìO8Ð{ ƒ…¶5:Ê`"Ô°þ„3!:XH`[á1vĈ¶ft®óæÐN2V(X[Üizûæ{b» TqÿùŸñæaóþ°Ë ›6lú ûçw°ÂÁÚÒ.™k•t°[ËPs‡øAãØÞ 5Öu`¬I l*¼ö±3\´»¨»p½z6C‘±BÁÚâÁ3jñ4°?á@‹‡ØÖ8h܃ÑfÃú¯ 7é`!m…§Ø.ÚÅÕ]¸Þ¤›ÎÈX¡`mq—à5!ØŸp  A lk´ïÁ€³aýWFœt°À÷ ×ÿKß7€YùÞÏ/:¹fåo€…¶5~åíHì.\¯°! ”|¬P°¶¸%z˜CŒž7°_Ô£ç7ÀB?h;Ì!QòÖuH˜ü`!m…ÇhP‚Âo`¿¨!†ðo€…¶5~íýì.\¯°!­ª|¬P°¶¸kôÀŒ8>o`¿¨!ŽÏo€…65NÁ0 íß°þ«Cbûß ü pô ÓÎðØ-j3ü`!mƒßvG»l» ×+lHS0+¬-n‰šˆ«öögâªýXH`[ãXà5F¼aýW‡´FüXH`[á)zAÜ÷7°_Ô÷ý7ÀBÛï)ˆö3w®WØök>V(XSÜÜGM Ĺ|û3q.,$ðƒÆ±ƒÌýöä¾ùä ë¾:¨ýä7ÀBÛ §èAI8ÞÀ~QCŽß lk¼s#Ú9Þ]¸Þì@ÝùX¡`mqËzih¶ñânÈ»‹_O{ù—lp©Â ÚÊŽQ»ô„sÔE=a:XH`[ã`nì˜é.X¹‚ÿüXHà…£GD0;j`¹³#:XH`[ãuÿñ&ZNÐ]ÀNeúûzi–ÉX¡`Mu‡>ê÷€¦ðvBAS˜ØÖ8\#MToX¿ª!mT¿ØV8Gψ`xÔÀ~UÃ#:XH`[ã1 îïŸØ:07°WÙÒ}Á´ŽËd¬P°¶ºSÔð]á!l…‚®0,$ðƒÆ±C"ØE5DoÆBû¨è`!m…£Ÿë¢éQûÅLè`!MKó$ÐhãÅõêZ¾/—Ö™ŽKÕV6= Ô.Qµ„é`!mƒ±5ØBU¢¡MTt°À G1`tÔÀ~å£#:XH`[ã1èI ÁF{•m¸¯—Ö‰ŽŒ ÖVw z¨sY¢vê\ÒÁBÛsk°‡ªDïzC»¨è`!m…Ã_Fƒ GûÅL8è`!4ž"‡ñhäÕ]°émLò92V(XSÛ1E_˜m4°·jÜßøl&d¬P°¶º9è÷ ®ðµBQW˜øAã˜ß6¨Ñ+ Ñ5:XH`[áð§ý`zÔÀ~ñÓ#:XH`[ãÒ'bžØ]°Îª¦Ÿd¬P°¶¶SÐKc£×{e÷×–›™—* ª­lôKÔm£3ê¶ÓÁBÛÇî°D;ÿÆèhï,$ðƒÂQ/ Låد<`*G lk¼…˜Óv¬·b€©2+¬©í”¢>%˜Ç5°÷Ò¦{,—‡Œ ÖV7z +šfLQ M3è`!m£WR ™\»SÍäè`!4¹hѶ»`½š&Êd¬P°¶¶sÔEÓ¸ö^Ú|/ƒåA±BÁÚêF/bEsŒ)jÞ£9,$ðƒÆóBt­» öõ¼=Éc'c…‚µµÞô& ì¯`ÒI lj<÷1ÿ,˜}w¬·^€I=+¬­múg`Äùâz¯l¹}Z3ßäR…Aµ•ÞŒ¦sÔ²GÓ :XH`[ã’˜^uwÁ:kꬓ±BÁ>h=‚ùfûë˜oÒÁBÛ1ç,˜xw¬7-À|žŒ ÖÖvŽ:g`²ÙÀÞK»ßIš¹&+¬­nôêk4»˜£†=š]ÐÁBÛ¯e$:ÕÝë­ ¯NÆ kj»Dï¤AÓÍ%z…4šnÒÁB?hs%ƒqwwÁzÓÌæÉX¡`mm‡¨+ æš ì¼´r¿›4SM2V(X[ÝrÌP?½a½Zúéd¬P°¶¶ÑËRÐÌm‰Þfnt°À¶ÆÓn‘~­»`G«]¢þùªP¨®²¤|ûª¬WpÀ4žŒ½jû3¬­íó"Ñ øÅõÖˆû¤™s©Â >(»D,"4:ý°Ý@ʨP!@MU×>æ>‚¹DÃzë.˜K±BÁ>h=Tƒ¹ð½ÔÍ…é`!mSÌ} v t¬7-À¾2V(X[Û!è>¢¹p{+Äý®ÜL…ÉX¡`muK ™BýýX°Î¾ û¸J ©*¨­êóÁ4¢a½—¦d¬P°¶¶Ñ+‘Ð4xÞ¦Át°ÀÇüÆ`{@wÁzÓìe c…‚µµ]£/ LƒØ[!î÷fLÆ û n Ym`ÒÓ°Ï«˜óP¡B€ZªÖqsq±üáÀz/ ËØX¡`mmÃ×Kaùïö –ÿòÁBÛç˜×ìè.XoZ`ý l¬P°¶¶Áßã߯õÖ‡ûÝ£•ý’©Â >(òÁì,~wÕ\!°äŒ ÔVuŠyXîp`½—…ål¬P°¶¶sÈ‹fÓÝë¼20Igc…‚µµÞý¦½Ø{i÷û+ëec…‚5Õ­{Y%ö¹‚aù*¨­jŠù`˜/~`½—…ùâl¬P°¶¶9äÑDcÓî‚õª–ñ²±BÁÚÚFï÷3³ì½´ûu×JÌØX¡`Ôy4˜;~`Ÿ+æs¡B€ÚªN1ól¬÷²0Ï– ÖÖv ùÑL¯»`½ê…%l¬P°¶¶k?кTº t»*œ†2UTSÖüi0%k\o&Üof¬ˆŒLõAÙ˜-šá§_ž5Ð §B…µUÍ1[´hÖ{Y EKÆ kk;Äl™`„×]°Þ‚€Žl¬P°¶¶e˜hM)Ýú¼$€ý3dª0¨¶¬Ñ_•@S±û†r¿C4312V(X[Ý)ævxÃ>ÏЧB…µUCnê~7¬ó²P÷›Œ ÖÖ6öëÑà®»`½W¦Œd¬P°¶¶«î I}(Ýê, XË ™* ª)ëb6h~7ìóÛ­o*TP[Õ²¹PÛ»a½²ÚÞd¬P°¶¶±ëõ£‘]wÁz¯ ÉX¡`mmǀͅ¶r4¨S¸À^.UT[Ö)fÆ€®÷éWaÍ·zÞT¨ ¶ªKÈŒAýî†õÊèw“±BÁÚÚÆîxfuÝë½20Y$c…‚5µ-}ÄŒ{8Ô)\`—* ª-kŽÙ 7Û°Ïo tf©P!@mU‡˜]º² ë•-Е%c…‚µµ]ã ”º Ö{e`úEÆ kk;Fì°y£AÂvop©Â Ú²Î!»uöñm¡Þ!*¨­jìÆvÔ7,±;ÐQߌ ÖÔvŒÝ&Í<º Ö{e`BCÆ kk›"vØbРNá{ ¸TaPdÝÏœ²º µ„û¼è\!qmysÈAÍÙÓo¶š+hÍR¡B€ÚªÆîfGmÙ1vÛ9jË’±BÁÚÚNÇÌÁÔ©]`Î¥ ƒj˺„Ô@lØçéÚ‡T¨ ¶ª±k¬QëpŒ] Z‡d¬P°¦¶SŠœjÁ¬¶AɆµ\ª0¨¶¬CìT š\ û<½@‹‹ ÔV5v«2joM±{ŠQ{‹Œ ÖÖvŽœ¼À<±AÉŠ\ª0¨²Ž£OE¿óhÔ<oë¶K´ÜßÝ>[)›+®­nìZZÔæš"—½¢&*¨©ê»–5¸æØE¯¨ÁEÆ kk›Ýß©ÿ‘Ó¸×)ýÈ‹as…Ä}8r²#ÛuÖ0³åR…A}uYÔþ~³RšFõÖ…±¿_o¬ †Í×V7v-juÍ‘K^Q£‹ ÔVuœmÑ`±AŸ'š,r©Â Ú².9JØ8ߨîÔJ÷SÖò»Ù\ápmuc7y¢f×¹µº¨P!@MU—!pºEó™u¦Ðp©Â >È9Ý¢íÝêN­|?e-Ç›Í×V7v"jw-‘ëQ³‹ ÔVu Є¦AéF4\ª0¨²†`r£ºSk¸Ÿ²–çÍæ ‡kª»ÆîéC-™5rûjÈP¡B€Úª‘˜Ñ4¨3½À†KÕ–µ„`«l£ºSëþÐÙòeÙ\ápÔ=í >väº ws}³ž‘Í×8r3)¬¡Û®ÐLKõAÖÐYìílTw–÷³×r¹Ø\áp-us¹ô¨30‘LõAÖЮk”;¨î ˜î—áÇйÂáÚêFnà®ê Ìê"S…A5eM}hÿ…5uTw7SÎ+®­näFГ9 Î@ÀL2UÔYC۬頺ƒ`¹‹±©¥s…õՖÂlìé.Üáp%}Hl¬P°¦¸9òù=hÍPg–aÞ ™* ꃬ¡½ÖÊqPÝv?kȲ¹Âáþ¥î¡ÃöC‹•«%õÞF6°ÖÖÑÿ]Áâäô•­ã>+$®=Ìrš™½"Ý…ë°µ… ÖwŠlEÁŒƒê½²é>{_LmÉ\ápmuçØf!ØÚбÞPÀ1ÈTaPMa‡ÙŒ‚ýÕ÷9ñb)Ëæ ‡k«›c›Ñhß]¸Þ`ÀÚØX¡`mq§È® Ì·ª;îsÍÅÔ–Ì×Vw n‚¹qwázƒ‹¹ÙX¡`MqKm°<ö ºCá>‡[,mÙ\ápmu‡Øf!svg¬7°P–LÕ6ô‰TwÜE‹©,™+®­îÜ,ƒ¸îÂõ–²±BÁšâޱSê 6l¯Øûœ0ðŸß ü ph;³cð;”é>[¬ÑËæ ‡k«[‚Û±`àÙ]¸ÞtóY2V(X[ÜØÑºÇl±Õh¨/Ææ ‡k«»¤•ÙÕ]¸òîvº:ÍßÔøÔÄE¦ …ú mèöŒÁ~&#ò3‹™+Õàï.ÜdÏ´l®¸¶Àkì ì‡èÎX¯œƒÝ\ª0¨¦°SÐqíò†õ—Ð1§ƒ…¶}†6ÇLÁï«&#ZµÆ.›+®­n …ƒM'Ý…ëÍ °G†Œ Ö7èi‚™DÃúS L%è`!…Á>™)øÅÕÜß>íjŽ^2W8\Sݹ…ƒý'Ý…ëÍ °]†Œ Ö7¯\ß©»€>æÁÀ~ ,$°­qÌœƒµÕ/f`²Ææ ‡k«Ü’;[º3Öyih—* ª-¬¶O}§îÌu§ꓱ¹Âá>èÛî±eÃúï L.é`!M…—>v¬ˆ¶u®7áÀn'2V(Øq׿®¬e¸eû~!Ã-cs…ĵ&®IÒ]À~Em:XH`[ã`ÀFð ë¿:0„§ƒ…¶žb§·h\wázU lÛ#c…‚µÅ]‚§7ÔÜi`Âæ,$°­q̱søÕq`Ïæ ‡kª»¦Øé-ØjرÞt#¹TaPmaKðôÚ/®?Í@ÛÍ÷Aߨé Ì2Öo`œI l+<7}¨5ÙÀ{ƒŠ~|G²&é`!mƒ_OG{f» ×+j`‹/+¬-î=ÀOûE ´xè`!-‡>‹`Áñõ_óÁB?(ÝX÷|€Ý¢Á|°À¶Æéï_>"xi··ªûOœ42U(T[ÚàGðÑÆïîÂõÖ ¬O Ö·DýÌ@;À~ÑÁ 4>XH`[ãP¸6?4ªÿâ°î:W8\[Ý)x<Ä<öÆõW Ìb§s…õõ]ämïÎX¯œa ëdª0¨¦°ï?'Ï0úº3ן˜1Iç ‡û oìLˆµ•X÷½%|°À¶Â)z&Ä‹ì3,¼àƒ…¶5^Hmï.\ov`}ël¬P°¶¸cÔßÁLàìÏ Ì情¶5§XÏõ‹ÖÃà ü pôà‚%EØ/jXTÄ lk¼\'Úrß]¸Îì¿`c…‚µÅ]ƒo ̉ðƼûˆ÷õ¼ïûž¸Á­”ˆ ÖT7÷Q‹´ØsØW-v:XH`[ãí7%Yß wê{ƒæÇßË“©B¡>:zc­gê¯ÄXï+®­n½±x³qýUK7é\ápm}Ç ÷~Á4ƒ·×[(òýúc\ª0¨¶²SÐ<]õu“AWÍ÷Aߨëê;°~%Ãûø`!m…çèLÞد:`òF ljL[º Ø«jÃ}­´¼2V(X[ÝtÏP‹}ˆúʨÅN lkŒý±î¾ë¿:¬¿øAáè™ÌáØ/>`G lkè3ÏÀ–ɽ횤ƒ…¶_'fš ì—s0Ó¤ƒ…¶5.}!¦ÜÝkVu ûçw°BÁÚÚNQcLÞØ{iÓ½ –­CÆ k«;GI0¾(QÏ/è`!mc­@h[j‰ÞðŠ6¦ÒÁB?(5&ÁŒ³ý↜t°À¶Æërä‚™wwÁz«Г±BÁšÚŽ)úÒÀ€³½—v•»o’±BÁÚêF¯ýE£¡1š‡ Ñ,$°­qèÚ_´åw ^£‹öü²¹ÂáÚêïõAÓã×-;hxÌæ ‡û ¯žJhÍÝë­`ë+¬­í<¾™ñ‹ë½2ãw,‡KÕV6xg5ÁƒØ\ápm}£÷ø aqûu ‹é`!M§>æœÛº Ö«e`³+¬­íöƒ¤¬ ¥»P·²ó÷Ï¿ü(b2…À´%ÍQ3ŒˆØ›ëýȲ¬2V(X[Ýè%àh4E34¢ƒ…¶5.û2$ó¿»`ÍZƒaÿüV(Øm£§k0-n`ùãb:XH`[ã1fCÛ2º Ö›` +¬­íµ!Á¨¸—¦þæyÍ ˜Œ ÖV7z=MÑô ‚è`!m×ò×ï´BІõÖ 0¤ c…‚5µƒ—O¡Iñ‹ë¯`PÌæ ‡û oÌ„ 6t¬7%À62V(X[Û!xlóá×[)î÷‘f8Ì¥ ƒj+üé4ú™ƒ‘ý°¹Âá>è»0Íþî‚õÖ0š c…‚µµ^ä…Ãsô' Ð`˜ØÖxмÁVî‚õ¦ØØ@Æ kk»ÝH4n`o­¸ßAš±0+¬©îÒÇœ20šhX¯–Ñ+샶Ñ ˜].Ñ_-@ÃK:XH`[ãsÊ‚YvwÁzÓ ÞÉX¡`mm‡èK£áöjÙýNÇ †ÉX¡`muK `FѰ½BRBA… j«:Ƽ1Ð9oXïeÎ9+¬­mðn)4¸ oðÀÜ’Í÷Aߘ7̱» Ö›`êNÆ kk»ßZ¾¸ÞÚp¿s4K.UÔeÇm¦ û¼:€Y*¨©êÚÇ1Ð'oXïe>9+¬­mør.0£\£?ú€f”t°À¶Æ9äˆESëî‚u¦𱓱BÁÚÚ–è )Ø{i÷ûF3£$c…‚}Pw)‘¢f§U6W 0‰ B…µUËVÊIWPulN÷»C—é ª¸lV&TP[Ö)fß‚ÁCÃzs ÈX¡`´ Ú·hê»F”}é`!mç}íè.Xoá[ÈX¡`mm£¿¢‚¿kìwI–ûùfƾd¬P°–º¥ïcö-œØçŋ͸P!@mUS̾Åâœë½,,Îac…‚µµÍ!{1Lw¬W½° ÖÖ6øÃ`ÒÛ¸Þ+» VÌK¦ ƒú lÌ^Äû\½°8‡ ÔVuŠÙ‹XÔp`½—…E l¬P°¶¶KÌú ÆÐÝëU.,4gc…‚5µMÑð3Èì½´û±`El¬P°êƬ/,t(§ß›6+9p¡B€ÚªæGZáÖyY ÎÆ kk;Äüƒ`RÚ]°Þ+Ãb]6V(X[Û2¬´¦ŸîÝ}à¿o,À¨~…* ª-kô·OÀôñ;sa5f®µù"c…‚µÕb¶ fˆØç¹€Ùá\¨ ¶ªsÈ–mÚë- ˜MËÆ kk»Äl™`:Ú]°Þ+ò\6V(X[ÛUûnHý>Ýê, Xk™* ª)kþÄ Œ5®·$ÜO0+#S…A}P6ævþwÃ>ÏÐý¦B…}PUåäܼÕ]˜ãö ógÐ?¿ÔÖ4‡D4MhXo‘Ó2V(X[ÛØ/mD“Ðî‚õ^–Û²±BÁÚÚŽý䬹ë€:Ë,ÖÝE¦ ƒjË:ŬC0P8ýÚ¶ù¶À8 ÔVu‰Y‡`”а^Ù£2V(X[ÛØO=DSÐî‚õ^Ù’±BÁšÚ}Ä:[cÔ)\`o —* ª-k™[h’аo ͨP!@mU‡˜¹f ë½,0C c…‚µµýæ@4ÿì.Xï•i-+¬­í1·À¾˜u ØÃ¥ ƒjË:‡,ÔënØçÒ:ÝT¨ ¶ªKÌ.]î†õ^èr“±BÁšÚ–ØÏ Dºî‚u^š'’±BÁÚÚ¦ˆ]6Ä4¨S¸ÀŽ.UT[Ö² P÷ðôûÂfé½C*TP[ÕØµ÷¨oXbÉ£¾!+¬­mìJöhŒÔ]°^Ù3/2V(X[Û)b€- ê.°gƒKÕ–u‰Ù {ذϥ ô©P!@mUc·¯£¾a‰ÝgŽú†d¬P°¦¶cŠiÁð»Aɦß\ª0¨¶¬ùuóOº×ú ½»@‡ûð“/ï©L!0mE‡˜Iz† û\°@Ç ÔV5v 8êޱ‹µQ·Œ ÖÖvŽdÁx¶Aræ³\ª0¨¶¬Kì úZ û<½@W‹ ÔTuŠÝJ:ZSìžgÔÑ"c…‚µµÍÃ!6èóäB3D.UÔY×(/÷'cós™FÍãñ¶n;m×w§è­ÓÖ Ø\ápmuc—%£ÎÖ¹‚õµ¨P!@mUc—%£žÖ»~õ´ÈX¡`mmçÀQ Ô)]`ŠÈ¥ ƒj˺ä1PfÁO:Õ-[Ã}9´¢6W8\[ÝØ]¾¨·5EnÈE-*TPSÕy½Ð¨«Aéf]\ª0¨²ŽK €­ÜêN­û»UWËàfs…õÕ]ƒŠz1särQÔ‰¡B…µU]"‡/0iPgz‰ —* ꃬ¡ÃØpܨîÔº¿?qµ Y6W8\SÝ%vÕ!êÆ,‘ Q/† ÔVuH…•utfoè~”Êp©B¡>È9w¹Lƒ:U f¸TaPmYKèÜv7ª[±¦ûJh9Ýl®p¸¶º±KQ#f‰\ˆÚ0T¨ ¶ªkäÜ&3 êL/0šáR…A}5tî{bÕZóý”µÜX6W8\SÝ5rëês¯¡›¬P£›KõAÖÐ ì1lTwÜßF¹ZÞ›+®­näžÔ5\Cw× ¶!—* ª%ëØ÷¡MÖwPÝApÿÜj¸0t®p¸¶ºCšyÇšîB}ÿÕ`dªP¨¶°‘+6@ãð€:3 sÉTaPd í»°®ƒêÌ®¬ÿûݬ5Œ:W8\Sݹ²´¸èó+=.2UÔY#û.°Ýè ºƒ Ý‚Ô[u–ØÖ7gfOwÆ~{“Œ®#2UT[ØÈ×õ !s@9†92dª0¨¶¬SdK öÅTwv݂ԛ#– ØÖw~ý ©ã¤»p½Y†5Ȱ±BÁšâÖ·±M‰]Û¯gì.På½n§¼8Ýîк—ØÖ·Ä¶ Ádº;c½Á€åèdª0¨¶°AÏtr¶K9)f.,$°­pèÛ1°Má ºí>žN½9xÙ`á€m}×à¦,ØÐ]¸ÞÌûÈX¡`MqÇ uúº ëO6ÐÙ¥ƒ…¶}O†ö-Œ±ï³rêYl _:X8`[ßÚö†;º ÷yfÀ d¬P°¶¸1tw_Tªö.›+‘CÚ2ƾ×ÊÉj60‡.,°©ïÔ§Ä3¥» õíÚ»ËÓûÓævذ洱±ÂÁ>h9°Å;Zº3׫ch+ ¬­mЀýó†õëh¡ÓÁBÛ ‡¾;Cûp¦Øw\Ûo|Þ ³dŽ^6X8`[ß1tf‹7¸t°7ãÐŽ6W(\[ßeàº$Ýüž9S|:XHàcGc0 jXÿÕi,$°©ðÜnÑv—îöfÚŸÃæ …kë;L\³¤»€ý9Ú;t°À¶Æ1×ÌÜ^TÿÅ¡›+®­î;eD;_º3×›oh§+ ¬­í{e ¹³cýyz;d¬P°ÚÆNp`œÙ°þKM:XH`Sá%OÑÞ¢îöfÚ Åæ …kë[¢' Ð…h`Î.,$ðƒÆ±l6¬ÿêÀh“ØVx ž0¢M\ÝìÍ:´ëŒÍ ×Öwž0ÀSrûs<%ÓÁB›¯1¹ÇâÍÕ{qp¾Éæ ‡k«›¨®TwÂîÁ“~ÚDrÑÈX¡`mmC_Ç›»3×›hÓ$+ ¬­íH=Èw'¬?@ߌ öAÛØ–Í6×/bh¼É' ‰l‹ÞYÛ]ÀÎ A[é\¡pm}ǨùiØŸ˜ŸÆ lkK¢À¼¾aý²ö|°pÀ¶ÀÁ÷†™î/¬_Ò0Ë ÖÖ6t-A¼}¹;s½r¶[³±ÂÀšÚîMÆþt¸¯é–KùÂzÓ5)ÙX¡`´^À&ˆƒë¿5°âÈB"Û"çèùK2°_ΰ$ƒØÖ8v½F¼¹»€½¢ö]Ó¹BáÚúŽÑ‡¥xcÞÝDõzÞû‹g¬4ƒ ÖVwŠ™=°/|ý•ô…,$òƒÌ1¿ìë9¸þë;{~,$²-ò= bùÑöK– ñÁBÛï?ôHúž¯;SÍÙAq½O ªP¨¶®ë8mXΤÝ;ZO Qÿü U(TSÙZF&jÀÕ]ÀÞŠ|÷—ȱ±BÁÚꦘ?‰G9èÞãQŸ,$²-s¬ÝløkXÿå|°pÀ¶Àܱ;aýÒžd¬P°¶¶Áú ¦p9TϦû2i™YHd[æXÛÉ}°{‡ØÕŒxó#,°-pè&<œÜ¹~uG£I6W(Üy 1ªîÎÔô6¹:—* ª©ë~q -ÕëNXçmåþ^Ë6 B…µU ž´P¼Ï,¨ Îæ …û o¬Ǫ]Öî¿ï»Ä›Iùd!‘m‘ƒ×nàyY#û‹š—ñÉB"?È<‡V¶`ˆÚ]°ÞrF¾d¬P°¶¶sÔPòö–t/ƒåıBÁÚê/AÅ“‡4ÛñäOùAæØçZhÓn ^+Š·íòÉB"Û"oÁCÊFö4¦ä“…D6eûýÛ"RjÝ]°Þò&ìd¬P°¶¶9jS‚ e{ËG¾—ÁrxÈX¡`Ôg¦kÝ]¸É®h?rÙÙ\!qmƒ—%ãÉÙ‹ÐäŒOٖٹ/ùGMÑ£{ýðÚ¢ÉXá`miC·!áñúÎõ×b4\gs…Â}7tN6[tgª·ƒ!•ÊÄ k+»P“éî„õÖáá^ËH£B…µU ÝïGnc,h‚76W(ÜyÇDLYº öõ¼=)"c…‚5µ‚—Iá™|#ûÅÍäùd!‘dŽY¿ÁFî‚õfØVBÆ kk;D_È7²·\ÜÏ9;gs…µ^P§pS4x‚S8>YHä™fàÒ]°ÞÂÆCd¬P°¶¶Ákºðœ¾‘ýêƒ&õ|²È¶ÌSÈô6nt¬33Ð&2V(X[Û%fúâ!}#{oí~ÎÙ=›+®-pððümŠFNpþÆ' ‰lÊ<÷i‰,s`0Ô°ÞÂCd¬P°¶¶)¶È¡)ýœb•ÍèÙ\¡päâ¢=Ý™ê-`ƒ —* ª­k‰½.4¹óý³Ãx.UT[Xï§+~”Í^úñ£ˆK õAØ¿íyFFܸïë##fs…Ä}˜šÖt¬·î‚!Ð^Ïßùd!‘dŽÕô`×KwÁzk0Ø£CÆ kk»F_Á7²÷ÖîçœÁ³¹Bá>+”`æÖ°Û–d %nT¨ ¦ªK³xÁ¨a½—Æ@d¬P°¶¶ÑkÎà~ þN ÄóÉB"Û2ç˜ÅìËè.Xo{HÈX¡`mmKÔâEÃøFöÞÚb¬>ÖÆ—Í ÷AàeŽ”0b;ý¨²¹V€*蓪[ãçæÕîBíí#6ÄýóK\!qmy§aކj ëÌ4T#c…‚µµ nÐÆ†%¸ø¢m l®P¸ò†NÀÑ>—îŒõ&Ú–CÆ kJ¼{mgX#ïë~gnw2P¡ò9ÔµÏ)²?³É†}^uÁd’ ÔV5…úwÑܬa½% ÎÈX¡`mm£—ÂM kð·‰ð¦>YHä™c+Y´•¥»p½©¶Þ°¹BáÚòN ï\Xc¿P4ÜïíÎ6W(\[à›$‰‘W6î¶^VZÉ¥ …ú$mÈS“Êõý.us%sJ*TÐUCN9ž5¬· ƒá+¬­­óäúBÖÓï; «3„Í×x‰yäÑ¡îÂõ&ÚÑÄæ …kÉ;÷ÁO‚û²·úÞoÒÍî:W(Üc69SØç… )¹P!@mUsÌÇÅ’³ë-XrÆÆ kk;„ŽgÑæŠîŒõÞØ ÂÆ kK;NÔ¼¤»pv!?Éwè\!qmc‹Ú¶ðâzKÃýÞÑlY S…@}6äæ‚ÁÙ}\ÀØŒ ÔVu޹¹`¨sp½·¦:t®P¸¶¼ÁÌ,ÚQÑ]¸Þk;@è\¡pmy×·o">íì.Ðíª­Ä~áöÂÙ\¡pMyKì§bÂa^wáz¯ Ù\¡pmyÓøvËûÍá'ßAÔ²M´þSìŸßÁ û m ¹mQjPgu{”¸TaPmY‡˜»ˆFûüºÐÀKÕ6ö‹;pØPb?b‡ l®P¸¶¼sÀA»<Ô™b`›—* ª-ësgP˶qŸ_jØr©B šÂޱ_&ÍÚ1öc°YËæ …kË›#ç\°¡A)¶#p©Â Ú²–Ø9õ÷ùu¡Ž"—*ª-ì;碞WãzÓ 5½Ø\¡pmyçÈaMÌÕ™chdNÆ k+»äHø‘S£æñxa·]ÑûôÞmå7t°pÀ¶¾±»ñalŒ\9Û_\ª¨¦°Sìz|Øúšb7ÎÃÖ›+®-ï9¡¡n£:5 MuÉXa`”R â‚Ÿâ4ª[¿ŒK^“6ÐÁÂÛúÆîm‡š)r:lÓp©B ÚÂ.‘3‘5ª3ÉÐŒŒŒöAÙý[ ΗÝ…êN0ãžÌd¹¶t°pÀ¦¾sìªfج™#7 ÃV —*ª-lW^[Jw¡š[»µÐp©B¡Ú‘/â4ªS½Ð‡ŒÖV6r£øQÃÎt«–qÃ`²ìp2VØ]c]ÔkÜ纅ú_\ª¨¶°kä$†8êL.4Á!c…}P6t[ÂÕ›`ú︷–N lê»Ä®…-š%rã&lÐp©B Ú–ÈI qÕ™dhŠCÆ û lä$†6Ø6ª;Á’1s-¿–ØÖ7r¥l†/¡{Ê`7œŒÖTví#AÚPרî8ÈÆ³|/:X8`[ßôüQÚNº/¨¹@þè K… ú$êwˆCø¶»p7ä/±SËu>~°Ë¥ …jK¹ð 6Á×Ð-Z° NÆ û l䨀ö*6ª[·ŠQ-;‘ØÒwé#Wü ^íAuÆhÖ²±ÂÀ>(ÚÝ[Õº Õ£1À “†ØÖwŒìnAì :c´ÀØXa`me§Ðîì;°î@0Ú‰²±ヅ¶ž÷Ï|hUÝ<ûFJ'+®©oŠÜ>:aÕ™l ÆÆ û lh;¶*Xw¢}/Ù¸t°pÀÏï@Ù]¨Æ„øÉÉ—ÊÓ–4¯ÔžªîÌõjØÆÆ kk;…6¹`ŸÒug—Ñô’MqÙ`á€m—)>üàÏo@…µ5mõP×ü…íߺM8¶9,°-pèsI´‘áÀº5ÌHųYØ`á€mKl×mèÎ\¯†í Kc»S°›áC®­nÐ#BÞÆõçjöòÉB"?ˆ9ZÀ-#%ø9âhôds ³Á›}ðhíÄè.`oÖ¡­#c; #Ÿqm}‡XèŒ:êëÏ8ÔSç“…D¶E.¡óÛ`T s—àiÈjõ0Ç0,ðƒÀËÄëí.T³óú'½¼dªP¨¶°cð`í&ê.`¯œ¡íOã;À¢ÝOŸqm}CÂÝ9cð»ºÑØH ¦¼l°pÀO‡vÁh2Ô¸þZfC|²È¦ÈS;ÈEûŠº3×›shÔ”b.´ ê3®­îÜ• VÏ üð«u øÏo…¶%úö=˜¿5®ûîàŽOÙy å¢íFÝì½=´?jšb£múŒkë»ödû¤»ýy‡Z>|²È¦Ìs0"A³ÎÆõçšvòÉB"Û"§Ø¹#Ü‚Ô]ÀÎÛƒ{¦æpËÔg\[ßÝT ÆO#ûó5~ød!‘d^Ÿ¿Ýþ‘/Ѩf[ü| .U(T[Ø`f‚æõë44±ç“…D¶EžBǺp]wæz% íú›çИ€›þ>ãšê.}!Ÿó» Ù/g¨7Á' ‰ü sl³†ÌëÏ:4gæ“…D¶Eα£]¸c±»€½¹‡¶Xj«)“+®­ï8“OûÝ…ìÎ;Ø¡à“…D¶ešühÖܸþëCÓf>YHä‘Ùî`w!o»í¬ö ËÐä“…D¶e~VîÁí.`¯ÄE¹‡ÆKì¤å …k껾VO1Uº Ù/o¨Ä' ‰ü sì ‡æÏë¿>4æ“…D~9X‘QãøýêºÇâ†úÆt°pÀ¶Ä±/ý¹Ý™ë7´—xbg^´•ø3®­îëΪ}füå1Aßwgf¹·­~ôÍ2)Ÿ#m5GžؘÛûù»ËåG~%(m)§ É;•쯸¨SÉ' ‰ü sÌäAP×}h Ÿ,$²-òMTÑ̨‘ýUÍŒød!‘m™ƒ—œ„[ô» Ø[{Ño Ö%æy¡Ÿ|Ƶõ]Ë÷ùõÓOü^еOQƒô™²_3AŸùÈB"[ïníci8ÚAtpý×öýYHd[ä!x–Gƒ©ƒì×L0˜ú²È2 ºèGÝìÕÍ(÷Ð8öÅ1úQȇ\[ß9jÐvþAöËhçÿYHä™c'úkÔ:¸îëC[µ~,$²-ò=8låÙ-ohþ÷ d!‘dŽ™tÑ[º3×›"àÇ8kû¶ýçC®©nê§àJ yƒÞ}þ÷z`ã‚2+ö£s…µÎQ³ LK²_À´äÈB"?È;—‚mq×_=Àθ_ ‰l‹YHd[æ`þ ö{\ÿõ_¿@ùAdµF9½×Ý…ùþ°?§~?é<3C§îÂMÖÓ‚Ü?¿Ä ÷¯p<îø÷áÿã6ü©ö¨£gs4ÑkdñD=>ù*òOɶÌKŒ†Mì­Ìƒ19,§‚Í ×x :n°A?D=iØ ç“…D~9渡…CôâP¸§OÙ¹ô‰™?vg¬·Ú¡q)+ 샴Q3 KÙ¯ðhXÊ' ‰lË<ÍL8Çkdoù°î³¶L 6W(\[à53Ñì£Dí~8ûà“…D~9ff¢íš%z.ܱÉ' ‰l‹<–H_L8Ûí.\g ³h6W(Üy£^1šE7²_åÑ,šOÙ–y‰zÅhLÚÈÞüñfyll®P¸¶ÀkÔ+F£¥MSàh‰OÙ”yŒÞ³ǤìÎ8&å“…D~¹„lhxÞ]¸Þ"‚†ýl®P¸¶¼%ê·¡i#{/n2„°| 6W(ܪ'ß]¸æÝ0 ÷Ï/q…µå½qû9™Ý5üáÌŽOùAæ”yQMw¡¾?îç©Ý8æï,ðÃûˆº sÿqþ úç7 Â€Úï?z]ÜÐÈþÆí?à“…D~y ð£])Ý…ëmÐ.6W(\3po¾yùYHä™cŽo´Ÿ »p½©ö?°¹Bášò®)jL¢Éq#{ÍØ©š¹1›+îƒÀSÈCC·Ó/­›ë1š¹q©B ÚÂæ˜ã‹FAë½04 bs…µå-1Ç,mw®÷ÚÐ(žÍ ×–w|[.?5O»3ôí7æ/¥|§ÎåDM5ýEýó+T¡Pm]§¨a†æðì­Æü5Sx6W(Ü×ÐY Ú÷y@c6.UT[Ø%æD¢Eãz/ (Ø\¡pmy×Eγ» ×ympþÎæ …{/ïðÕ÷9êä@ñÙ{qÆ8»‡+îƒÀ¡]”S|cŸ+R°¡ò9Ôuíí Ûüë½+È5çc…µ¥-!ß&œv®W¿ Üò¸BáÚò¾_<ðqï[w¡n×Õå¿ï±~+ ¬­lôwt°ÈòìM kßîÄ~+îƒÀ1G %Þ¸Ï+”IЩB ÚÂ.1G ²Êß¸Þ ƒ¬ò_à …kÊ›ú#Žþº ×[! ¨ò¸Bá>È[F^WVw¡:kÔBÆÇ k+ý",©|#{S˜Á÷9å/p…Â}8æ‰AQÄ÷y•€‚:UT[ØóÄ âë½0(„ø®P¸¶¼cÌ‹F©Ý…ë­Pôû \¡päWJôHÓØõyÀºÆøXa`me—вʿ±Ïï òÉÙPùj‹º†¶uƸ7È¿±Î»Âüq>VXSÚÜÇ̰hÆ×]¸Þ;ƒ2É_à …kË›ÿè€uؼQÒµØð±ÂÀÚÊ1¯uÈO?6n¾1Ô çR…@µ…-!¯¶Ç×+`¨=Îæ …kË;żšh¸×]¸ÞkCÃH6W(\[ÞYϬ¶ŠîBuJÔÂÇ k+»Ä¬ÔÃmÜç7†:¸\ª¨¦°C²`÷¶q½†º·l®P¸¶¼±Ÿ£gPÝ…ë½643cs…µåÝ>ðeµTtªSÂÐö2VX[ÙÚà¢ãP{FÔ^¤Bås¨-êÚu ¾â ë•.ÔV$c…µ¥]…ŽFº ×{gh”Ãæ …kË;G¬´5¡QÒ…ö&±ÂÀÚÊ®!+öO¿¢l½1Ø^äR…@5…-}ÌJ@ÍÅÆõ^j.²¹BáÚò‘³.í6ª3ÇÐl—ŒÖV¶„κ°ָϳ uÀ¸T!Pma§ØYu¿×{a¨ûÅæ …kË»DchøØ¨ÎCãG2VXSÙ±UpÔ£yaŸçjÐP¡ò9Ô5f£Î̺G6fÈXa`mi‡©úõÐ6ü†Íã1nûõæ÷cù{¿žå×ÒÁÂ?Ùwòƒ}’ÿüYHä¿dþcÚ§‡®£÷àqŸxÜÁÃü•ëÿ½‚ÍÙLæ ‰kŽ·)hº£éYãúÕÍÏød!‘D^˜†hwÆn×he=ðpü[2V8X[Ü;Ù†[±º Ø™pï›+®­oñÒ‡þgî× ìÖvØý¢ƒ…¶%Ghܸþ»C3`>YHd[ä9v¶ ·eu°7ïÐ>26W(\[ßu&ûIÝ…ìÏ;Ôã“…D6ežƒ ¶7®ÿúиOÙ9ÇN¹á&¸îöæÚ´Çæ …këûþcâW©»ýy‡:a|²È¶ÌÁ¬M…×}h.Ì' ‰l‹¼ÏцÃîöæÚ!Éæ …û ïÛΣ݅»!ï~{l£úohÔ¸±¯Ô?¿B Õ”vÙn{fZ)Ý…ì—4Ôþá“…D~9v¼C£÷Æõ_¾óÉB"?ˆÜpÃÆy#ïH¿5dç|²È¶ÌCðíNî.`oõ@Û©Ù\¡pm}§B6Vº Ù/o¨Ä' ‰ü sìö94®ÿúÐN>YHd[ä9˜ÞÁÖq#»å öŽùd!‘m™— YmVî.`¯Ä¡ÍÕl®P¸¦¾kŠš¨çÖÈþA=7>YHd[æX|7–4®ÿúÐÖ>YH䑃 êÑ¿À~qC-z:X8`[âôƒ¢­áÝì•7´—Í ×Öw|ÝÐEqXº 5½Í¸ÏÝ .U(T[Ø9ê¡~q#ûeõ‹ùd!‘dŽ{°]¥qÝ×7¬ðÉB"Û"/у#05²¿n Ÿ,$²-sðæ˜ðÝìMô‹ 6W(\KßÜç¨zÇÙŸ  wü d!‘dŽÁΠƒë—7°7èÈB"Û"у#6d¿¼aÓ/…D¶eÞ‡þ ¤»€½I~Cç …kë;m<4g:Èôî`ÓïÛú÷y·!7º™2ѹBáÚÏQ» 4ç²_@sþÈB"Û2»5À·ƒë¯`Û/…D¶E^£‡H0Í;Èþú¦y¿@Ù”9m{FfhÓ]È^ËFí4ŽÔt®P¸¶ÀCÔÝùƒìÏÐÿ²È2ÇN‘`'áÁõëØKø d!‘m‘Kô ÆyÙ/C`œ÷ d!‘m™§þ;_ùØúî.Tó§)bÓ“©B¡>;WQ0Ã;ÈÞâ1‹’eV°¹BáÚ/AÓ µè²[zP‹þÈB"?È;Ÿƒ„×}`+á/…D¶E^£ÇG0Ó;È~3½_ ‰lÊœ·ûd˜ÑMw!{5®µÓ:L³¹BáÚ/¯‰t¯Fwá&{âýä:WH܃®‚ä¨ï‡ |²È¶ÌÁž°Uóàú¯lÖü²È¶Ècô|ަ¦ì×y45å“…D¶e^¢`4Ðkdo1n‹6ã<6W(\[à5èºÁ&}ŽúÒ°IÏ' ‰ü sÌuû5®ÿúÀŽÍ_ ‰lŠ<ôi`†Ý…kÚL ÷Ï/q…Â}7jj¢¡i#ûU Mùd!‘m™õ«™ÙXw!{óc2Æ›åY°¹BáÚ—¨÷†f CÔö‡3>YHä™cÞضypý×6nþYHd[䱄úc¢owázKšI³¹Bá>ȵ6ÑLº‘ý*fÒ|²È¶ÌS?ó²±îBÝ''Åc2…À´%]¢n1š@7²WrŒ_H0óg6W(\[à5jf¢áÒÍSàp‰OÙ”¹Ä;Kôf¸×˜OùAäÐ ‰fçÝë­ÉhÔOÆ kK½ð úÙ­ðpÐÏ' ‰lË\¢>1šA7²79¬ßú°ü56W(\[à1꣱R‰&)p¬Ä' ‰ü óü—uÇÈ ÷}‡ÍÈ Ù\!qm£·=Át#ûµ Í ùd!‘d^B¾D´õ£»p½UmUas…µå]£1š>7²÷âVCË[cs…Â5û·›[ÑLwášNÈýóK\¡päZðh :FC*8å“…D¶eŽÞ£‡ûì/h¸Ï' ‰lËœS胨hËGwázEmQas…µå-Q+ÍÙyq©¿ÂLÙ\¡pm_¿ãÈ eº ×[<Ð‰Í ÷AÞ¨SŒF¡c4ž‚£P>YHd[æèeZp¬ßÈþÂÆú|²È2!)ÚìÑ]¸^B›SØ\¡pMy§>jd¢‰s#{‹‡qD0óf6W(ÜC{4ëxa½¥Í:ÈXa`mi£?õ§uS8EAÓ:>YHd[æèepòÜÈþ¢&Ï|²È2Ç,Ìh?BwázíŸ`s…µåƒ&Œ6²·pÇ3es…µžFj4Ó]¸[•¿{m? ’¸T¡P¤]©iAwázë2šn°¹BáÚòFï#ƒ³æFö‹š5óÉB"Û2/1Û2ÚÐ]¸Þì@;&Ø\¡pMyç>‡Ü$4BjÜ­¦ ¬‰KõAØ  Gøì­ÄÆqË ðÙ\¡pmsèó14Îxa½ù€¦d¬0°¶´ÑkÝà೑ýYŸ|²È2ÇLÊh·AwázSíŽ`s…µåCÛ>4/zaŸ 4,¢Bås¨-ê hXßÈÞ2alÿͨžÍ ÷Aàü–ÃýýÑ7FY¶‘ð÷LøÑGFT¨0 ¶¦óÚ+ iPãz%MƒØ\¡pmyÃã¡Ññý¹8:æ“…D~9dõ†û5º ×™p ›+®)ïÒ¯¡&B4skÜçeܸT!PmaSÔCG[ٛƩÊlx`s…µÎ1£Í€×›hÄæ …k˾ Œ—èOßÀ1Ÿ,$²-s ½áîÂõ– ´£„Í ×–wŠú‘hßÈÞ‹3v«fÏæ …k òÑѰm 8ÓhÐÆdÊÇL[Ð%thCƒŸÖ{QhîCÆ kK»†œÇp“@wázµ mj`s…Â5å]Óòí¼}Ü&Ð]¨û+ëY= d¬p°¶¶9j@¢±{#{“ÂØ–š¡;›+îƒÀ5ªê.Üç5ÍÕ¸T!Pma‡˜ ‰Æ=ë½04îas…µå-1{,_w®·F q;›+®-ïuqÐL¸‘½glÌD˜Í ÷Aà)ä^ !Åé—åÍZ†F\ª¨¶°Kȃ}óÆu^웳¹BáZò}óm¢ùjwáz¯ ̃é\¡pä- ¯å­»P· ëô²)ýyl¬0°¶²ÑŸ*Bc˃ìM cçd…–t®P¸¶À¡m˜J¼¨ÏÓL$¨Lù˜i Z"Ô!oXo] r6VX[Ú1æˆE#¿îÂõÞQÒ¹Bá>È»d^ƒ[w¡:ëØŒÇÆ k+ýí!4<ÈÎ”ÈÆ>ÔÊ&é\¡pŽùa`qpŸ§C©B Ú®!? !®·B€!+®)oêc~X4>í.\ïµq/+®-oJ#¯«»P5ìcc…µ•bFè“Üç7ºädª¨¶°%f„ùÁõ èÓ¹BáÚòN1#,šóu®÷ÚÀ\’Î ×–wΉ׷Ò]¨N [lØXa`me#×ì öø‹úø¶PkœÊ”™¦ ¹mlQG<‡ 5Ø'c…µ¥M1Ÿ&êu®÷ÎÀ’Î ×–7ÀÖƒê”-°÷ƒÖV¶„lؼmÜç†z·\ª¨¶°cÌF@ÛÆõ^êܲ¹BáÚòÆ~#!œ9u®÷ÚÐŒŒÍ ×–w^ñ.ØóqP6}°±ÂÀÚÊ®!¶O? n1Ô\äR…@5…UÃ’iÔu®÷ÂPc‘Í ×–7vO8é.\çµÁq›+®-ï±Ц„FuJÚ—@Æ k+;2ͺîD}.`¨±ÈdÊÇL[ÐØÆõcí×°HÆ kK»Dιh¤Û¨Î¼B3]2VXSÙÒÇι¨ùÕ¸Ï3 õ¾¸T!PmaS¬ ÎWãz/ u¾Ø\¡pmy‡ÈA ÍÕ™chèHÆ k+;Æb¨AӸϳ µg¸T!Pmac<ÃÖL‰]˜ [3l®P¸¶¼k`. ÷;Ty¯qp׫·mÏo{õ,¿–ŒöAØÀ Îõù…Á‘#+ ¬©ì˜˜FGw¢>¿-Ô”a2åc¦-èæÂ.9ì.Ða{Ôr3¯vlÎߨ ¸³­@Æ û—´° Ã-÷jy~¿±È.vÏÆÐE˰yFÆ û×;vkN§½1á`í¹[†Èùýè aÝUѸGi´":X8à& h7ª³2¢‰6+ ¬­ì3QPë¯qŸßêüq©B Ú®Ó¨ hÛvú3̸“f´œj:X8à6 œ¹6ª3ËÐЕŒÖTvJ1õÿ÷ù¡î—*ª-ì9Ž¢¹U£:ƒ®ÈXa`”‡@µE{¶Ö­]“Q­4€Ø8rç$ìÿMþ]ް÷ÇdÊÇLSйliÑìªQÙ…†Wd¬0°¶²©Ÿ~ÜUk·7¬;³Œ;YHd[äÐGUhSÉuçœ1Ö&s ³ÁÂÛϱ£Q¸U£»€½Yö–йBášúŽAÛÍ/ןqh‚Á' ‰l‹úÜ î/ƒ/c¬ÍÖ¦ƒ…¶ÎÁÓF´k£»€½Y‡¶™°¹BáÚú–B¶#º ùõ¡\âY(|²È¶ÌAÍâ×}hÇ' ‰l‹<ÏÑ™îöæÚÓÃæ …kë»Îäs~w!ûóõ&ød!‘M™§ UŽFŸë¿>4üä“…D¶E‚§h?Rw{sm bs…µõ{ò‰¿»ýy‡º|²È¶Ì1Ž×}hÀÈ' ‰l‹¼Ï ÑÖ¯îöæÚ«Ææ …kê;¿ÿÆ7åÜß]Èþ¼C½ >YHä™c»ÂÌí×}}prÇ' ‰l‹<Ï ÑF»îöÞÚÈæ …këìÀúÖõa8ü¨sÍ×–w*äSw!ûe u*ød!‘m™ƒ–?6®_ÖЈ”OùIäàÛC­ÍFN›ëŸ3ÏÚä“…D¶e^ƒ'éhOfw{“m"es…Â}Ðw\xÝwÝ…ê¯ 1îŸ_â ‰kÊ»¤…ì]u²_P¿OÙ–9_¡aãú«÷óÉB"?ˆ¯Pƒ¾‘ýÕ5èùd!‘]™):]ÎÇùøæ)*óªêO˜¶¢%æ°…› » Ø);p×6›+®­ïuØP£¸‘ý’ƒÅ|²È2Ç<´W¥qýíVá“…D~9š»¢ÉR#û š,ñÉB"Û2¯1#3ÜtÞ]À^‰C›äÙ\¡pM}×tÚ`?¾‘Ý ûñ|²È¶ÌÁxm j\ÿõ¡MA|²È"GOh€×È~yC<>YHd[æà•4áÿîöJúM›+Դ¦»p¦ÇÒ¥ut÷±?J—>åÚÏA¯ >Ù_?ÐàƒOÙ–9ئ¶¶5®ÿúÐæ6>YHd[ä5zˆD“ÒFö×4)å“…D¶dûà-VáVº Ø[CÀ/lè\¡pŸô¥æ5Ý…ë¯!P¾T¹îAá'ùÒÇ\[àíªPf¢Û]ÈôõÈ7Ÿã =+ƒ¦s…µίö!˜ÜÝ…ù>+>¶ãÉT¡PmY‡ eŒFvÙß÷€‘Ý/…D~9fƒ­Å×}`sñ/…D¶E.Ñ>.0ã?È~u3þ_ ‰lË<ÍÁM ?doé%ÉÜM¹BáÚ/QÏL˜²_ßÀ„éÈB"Û2¹Àîƒë¿>°‰ûÈB"?ˆõŒÁHú ûeŒ¤,$²)sÊѶO0-=È^›ŒÚixAt®P¸¶ÀCÔÓ#¦ƒì×70bú²È¶Ì±Æ´Éøàú¯l3þ²È¶È¾ñßÿ(“>ÈnB3é_ ‰lËìÿ?É™îþÀúò)9+$®-ðu£Á<ú {‹ˆq½¬•FÓ¹BáÚ¯Qs̘²_‚ÀŒéÈB"?Èk=2*›Õ{pÝׇöÅþYHdSäì;ÿýBéƒì/ `(ý d!‘m™óôWÐô¹Qߨï/ïs£žK ÕÖ·¦”à5®¿:c ›+$îƒÀeá¦æÝ…ì­ÎÆ=ÔVÎOç …k \¢¶&š‚ä¨ñ§ |²È¶ÌÁ®9#‡¶º®¿2GÉ~,$òƒÈ%ä2EÃóîÂMÖò rÿüW(Üy£þšJ7²¿ñASi>YHd[æeIÜð±»½ùaÜ«nÆ¥l®P¸¶ÀkÔ5FC¦ÍUà‰OÙ”y6ͧ$«aþàúËG”üç×ÈB"?ˆ¼ ̽»p½% ýÙ\¡pmy£÷ÁÁ¡#ûËúóÉB"Û2—¨gŒæÑìÌý1€Ûñfyml®P¸¶ÀcÔ3F3¼![¡Ÿ,$òƒÌãÛÖí󰦻p7äݨةcú¦îÀm *U(Ôicv<ú)½þOÙyJ³ý£»p½ÕmWas…Â}7ê.¡í*ì¯Ìh» Ÿ,$²-óôŒáNŠFöVçlŒ7Ëkcs…Â5.}Ð3†ÃÑÍáp”OùAæ…Öt®·B·+´U(¸T¡Pmi£WíÁ=ì´‡‚OÙ–yƒñ:kº ×[ŸÑN 6W(ÜygbTÞ]¨¯²3sb}.U(T[Ø´àá¶”FöVd+ò±¬K6W(\[à1´¿Fƒºö5zVNGÆ û m0Ý€³æÍÿଙOÙ–9z!Ü7ÑÈ~ñAû&ød!‘dC=´ÑnšîÂõ*ÚýÃæ …kÊ;öÑ÷†Fúì-FÐcúl®P¸¯Ô¼«»p½ÅÍçØ\¡pmy£¿^§Ìc4ùƒSf>YHd[æð ‘hÇD#ûí˜à“…D~y õ¯Eûhº ×+Bhß›+kÈKŠå]Ý…j>ì²¹J}–àGÙÜgT[Ø1j¸£]ì­ÊFÀcöH°¹BáÚOÚÞÎ˹º ×[•Ñ\ŽÍ ÷AÞhž¦Ëc4ñƒÓe>YHd[æð›hÊ8G l´ …OÙ–y ™îáÖ¤îÂuŠÜJÅæ …û$ïÊ˹º Õ[™±Ln\†çÓç2¹Ï¨¦°S5ÝÑîˆFöf„똽l®P¸¶ÀÙyoýÏÒ¸ÆõVe4cs…µå^SwELCÐ¥ƒ»"ød!‘d9Âá^™îÂõ– ´·‡Í ×–wœB“æwÛc¬dŽKÕvŠZíhËI#{3ÂÈ̆6W(\[ày …ÊhTÔ¸ÞŒ@£"6W(\[Þèp®ÜÈþRæÊ|²È2‡<àp#GwázËÚxÂæ …kÊ;÷kÈABó¸Æ}^2Ð4ŽKÕ6E=`´¢‘½a¤ f7›+®-°çÝ÷? ‡×›h8Äæ …kË;¤Gu” ½ æ£þ(¢B…}5Ú}…ÆósôwÞàxžOÙ–¹ÄßhOLwázk0ÚÃÃæ …kË;£áÛ9d¢É*ŸCDº½hKI#;³AGÑíè²Îkl®P¸¶ÀžKßÿ,j\g:À1›+…­tª·c1—*ª-lôBW8ŒŸ£¿“‡ñ|²È2ÇlôhLwázeíØas…Â5å]rÔíE{Ù[.’!„u^cs…Â}x¹œh˜Ù¸Ï›4ÊäR…@µ…B6:œ¯5®·£ù›+®-o‰ù»ÑžîÂõ^ÚãÀæ …kË;mH8„od¯ŽãÌŒàÙ\¡pžBöš²5îs-C36.UT[Ø%äïÂÁOãzu ~Ø\¡pMy×>æ‘EÃìîÂõ^¾³¹BáÚòæ §ÃìÕ±ÁÂÚ7°¹BáÚ}È…DãŸÆ}®ehøÃ¥ ú l ÙXòÓ¨Û£NðÃd iKZbÖ#šG4®·4 y›+®-ï³n¢Áuwáz¯ ÚÙ\¡pä]F¿Ê ýºÝ_©¿÷Éi€$c…µ•þ4¯±ŸZ› Ì0˜Í ÷Aà)g>û8%àćKõAØòÜ6ö£´§QŸ_,ëa2…À´%]c>#@4®7ЂÍ ×’wêûÏN«» ×ymhºNç …kË›ÒâoÀ.Òƒê,»`)+ ¬­lôßÐü÷ {SÂÐÁJé\¡p9¸hÀspŸ^0Þ!S…@µ…-1Œv®÷ÂÀh‡Î ×–w|ûââÓ D» twµf§NÓ‰š6êðõϯP…BµuBÎx8øï.\oåè\¡päÝãy§6TgíÛGÙXa`me×%Ž&f÷yqó22UTSØÔÇü[0+;¸Þ ³2:W(\[ÞòoÉwáz ìP s…µåÍcàó6°/ì :% l cc…µ•-1{ÌuîsS2UT[Ø1æ…‰ÎÁõ^˜èйBáÚòN1/,õw®WÀÀÖ:W(\[Þy ìpÁ†°ƒê”0°#ŒÖVvY5 G~pŸ‹è“©B šÂæ>dÕÀîxã:/ vÇÙ\¡pmysÌRˆÆ¦Ý…ë½60æ¥s…µåráuWuªSÂÀV06VX[Ù1f) nã>1ÔÀåR…@µ…B–l26®WÀP“‘Í ×–7ö3)᪻p½×†Ffl®P¸¶¼KÀR@»jês CÛjØXa`Me‡>f) Vcã>¿1ÔhäR…@µ…M!K6×+`¨ÉÈæ …kË»ÝBÌéÅî.̲ƒ¿Ÿô'Mã\¨0 š|¸-¡Qº…ö%±ÂÀÚÊŽ1õO?Do¾1Ô]äR…@µ…b>ê,6®WµPg‘Í ×–w™¿ÊBM·Ó©]P×-* ¨­é0à̼Qº…†æd¬0°¦²%…ÌØTlÜÇ7[Š\ª¨¶°±.€íÄû!ØNds…µå-C$,¿x:°J|…Û>Þɸv¶¶´t°pÀGì45oT§ˆ¡±9+ ¬­ì²`[±qŸËj*r©B ÚÂÆ.Ó‡ Å»œ6Ù\¡pmy×HÅE?yQÝòeܨ9[»[6W(Üq#>š™7ªSÀÐМŒÖTvL!6÷¹„¡–"—*ª-ì+s#õ]w¬;ÃŒKg˧ƒ…~8rêEcÝFufšë’±ÂÀÚÊαS/j5îó¢L,S‚ŒöIÜØq.Úá×]À^í[é\¡pm}×™l¡tòÃÉMâ±¼Á’…D6eƒv>šË5®¿j ÉŸ,$²-ò<ÔE[þº Ø{{h"›+®­ï˜ÈFJw!ûó5ød!‘m™ƒÉ 6®?ïДOÙy í¢Ý•Ýì½=´”Í ×Ôwê ÙNé.dÞ¡Ÿ,$²-sÐäGÓæÆõçš7óÉB"Û"±3H¸Ï°»€·7F²¹BáÚúN#ÙTé.dwÞÁFŸ,$²-sÐêGƒÑÆõ_òÉB"Û"¯±3H¸ã®»€½¹‡¶²¹BášúÎþ ýGn[ã¦Í%Õÿc·±¹BâÚo¯”yîï.d¿°¡^Ÿ,$²-s0QAóçÆõ_š@óÉB"Û"§ ‹ Faw!ïÓ/ß}h ’ÿüYHd[æ;K‡›t» Ø[CЮb6W(\[ßZ…¸öJw!ûå µ„ød!‘dŽ¥Ñ°¿qýׇÆý|²ÈO"S!ÔCnd¿¼¡2Ÿ,$²-ó´,¢m»Ýì•8´Ï˜Í ×ÔwÉQËuÞÙ/o¨óÆ' ‰lË ²Ðð¿qýׇÆÿ|²È"Gƒ,Ôªod¿¼¡V=Ÿ,$²-ót†¢=ÒÝì•8´©›Í ÷Aß×/­íä† ]éÑ]°ÅzÚÝ?Â¥ …j+;Í1eÓ-×2çÖ{ÚõxØ9ê_¡>w#û«êsóÉB"Ûc"£­6ë¿>´Ù†OÙyu{0kdw•ƒƒ1>YHdSæ5x¯Pø»„îöV:ôC 6W(\[ß4¤Ðú1ÜVz+OhXoýˆQÿ€Ôت$ª­lN1ec×Ót¬÷´1êñ°CÔÆDCFöë$zðÉB"Ûc"Ö¤7¶5®ÿúÐÖ6>YHd[äu<Д´‘ýUMIùd!‘m™ƒ÷Y…¿ê.`g’À/±¹Báþ¥ïñ¸ÓTxK¨P¨ö`˜÷ŸYä%£Ý…¼A_³ùæ¹õ}ônÈng¹l®P¸¶ÀKÔÔF#°FöË%ñÉB"Û2;£ÐnÒÆu_ÜOÊ' ‰ü rÔø@3óFö;43ç“…D¶¥O1ǺóCª5&–>G­}0{>È^AÎF¡7<+:W(\[à!꽂ÝAö§3ØýYHd[æ`›Øb|pýb 6ÿYHd[ä1z>þƒìc0áÿ²È¶Ìs‰­Lhø|½g\¢eEÏt®P¸¶ÀkÔu£šƒìÏ0ªù²È2ÇúŒÀ؃ë×7° öÈB"›"§>z$³Ýƒì×70Ûý²È¶ÌÛ´0#¼îBöjœqe™:Ò¹BáÚ—¨ÑšôÙŸ! Iÿ d!‘m™ƒF`ìÁõëØû d!‘DŽžrÀTï ûeLõ~,$²-óƒÓAöjœuAœuæcs…µ^ƒÞêËdw† ¾ì/…D6eÎÁ° öàú¯lƒý²È¶È)zʃœƒì—!0Èù²È2—ÂŒ÷º 7½ BIç …kË[¢ï Œp²÷â&CëHÍæ …k <­!ØIÎQóv’ùd!‘dŽYC`wéÁõ_Ø_ú d!‘m‘§´2“²îÂõjšì±¹Bá>È=££É^#ûUMöød!‘m™×¨ó††NìÍã÷ÛÍȉÍ ×xèƒÎlÔQo6êùd!‘m™c×£m›×}}hãæ/…D~9öMAÛ%c9Èúð¸÷ûiÇ›v®·à¡1/›+®Ùˆ5ø×výä“Ò¹£7꣹t#û‹(šKóÉW™J¶eæ·¦éÏïŸë.Ü y7wêº|SwàÆ6«0•*ª-m‰¾34nd¯V®Fí±¬L6W(\[à1jÉ£ Þ ­àOÙ–9ø¹Fº-ðVêѨþÂãþù%®¸¶¼áûÊа¿‘ý„†ý|²È2!(ÚÒ]¸Þ~ mYas…Â5å-}ô½¡1#?¿¸Ò÷†–‰Éæ …k œ¢f<–hG£|²È2Ô ¬»p_ܳ2;6W(Üyc_î@7=Tm†îz s…ĵå^´7©4²[ßá&>YHä™×Ìl]ê.\¯ø ­Vl®P¸¶¼c4å@ÛSÙ[›ji6§°¹BáÚO!‹ÍB_XoÉ@£P2VØi£ç—hÄ Çù|²È¶Ìs,Û€î5:¨þºãþù%®¸òF½$´ó§‘ý5íüá“…D¶e^rÈöƒu®WàÑþ56W(\SÞ±ðhSJ#{ë²±&™-)l®P¸¶À)¶‘@3ÛÆõÖf4³es…Â}7˜oÀ}c4\…û$ød!‘m™óDÆ» ÷áÔ)1Fo„{”Ù_èÐ%>YHd{X ±À Ú¹Ö]¸^ÑD;íØ\¡p͆”ÑÿªóG )Ÿríñ0E´!¥‘½ÕÙX–Ìv6W(\[à¹P“ÛîÂõG–4³¹Bâ>ì.\¯ä q'›+®-oôîR¸õdŠþ²ÜzÂ' ‰ü s$ˆ÷zu®·G¹~‰+®)Ðä@3åÆ}^“ÑD™KÕ6G'ÚÓÓÈÞŒ0ê¤ÙÑÃæ …k <Äìu40l\oF !›+®-oôX¸bŽþ<Ü Á' ‰ü sÄ^· u®·\ -Sl®P¸¶¼þמ?j6™OßMë§Ü?¿Ä÷Aà`~wÇ4²73Œziöư¹Bá><çHyGSäÆ}Þô 2—*ª-ì³×Ñ`³q½†›l®P¸¦¼Kµ5°ö’Æõ+Ö^Âæ ‰û pÌX¶u®·£íQl®P¸¶¼9êÿ¢í%콸ÅÂ:`°¹BáÚ}Èy@ãÍÆ}^,Ðp“KÕ¶D|_ÚȆòë/X Ïæ ‰û pÌë6ht®7/І6W(\[Þm+Èêí.Ôíîl=ir}ÉXa`me£¿@ ·:¬¡_t,ÉØû›l®P¸ÇL^4ËlÜç)&™\ª¨¶°e¡æ)Ý…»!ïÆAÙÇÁ›§÷öé—*ª-íñÏñä²q½Ý š\²¹BáÚòN1{7ÚÑ]¸ÞkC»GØ\¡pä‹_mЮéFu–_´mšŒöAÙeÞË ãÒøîB5‡Á.¸çR…Bµ…ƒK¨½°ÞêoWóèÀ„ jËý)_¸Ñi ý4nIFâe¶9±¹BáÚ¯±  Ú÷¹„£1;—*ª%ìÚ÷± L€®·£`:W(\[ÞË!¢BÝ…ë½6°±‰Î ÷AÞeñ§Øw~P= ØxÎÆ k+;¤!¶S€ʃë-Àåv6dªP¨¶´%’íÀÙúÁ}š p²N¦ j ;Ʋ0ô=¸Þ C_:W(\[Þ)=D{ƒº ×{m`/+®-ï¼Ü°E÷ :«Ø£ËÆ k+»jÈ×]¸Þú0Þ®æŒJ Õ–v„pœ~pŸ×0L'S…@5…M)挃9ïÁõ^˜óÒ¹BáÚòæ˜3mê.\ïµíKt®P¸ò™Buªù°? Ì”úì€ü$0ûj ;äÀ-\`»óAu–]°ß™ÖVvŒ8ŒpypŸW0ˆ$S…@}6žß]¨Þü‚"2U(T[Ø)fÝ‚éîÁõf˜îÒ¹Bá>È».òþ$ƒ<¨æÃþ$ƒ$S…Bµ… ý¬k¼¯ª»pù€öѹBáÚò.”ìoPgÉûÆÉT!PMUs3mÑœ¬qŸ—\4%ãR…@}v 1ë¾»P½%‹¸T¡PmaSÌ G£ÇÆõf=²¹BáÚò†~P4Þ@Ñ]¸Þª6|йBáÚò7ìe>¨ÎÚ63³±ÂÀÚÊŽ1ËMÉ÷yu@32.UÔaõ›–qß]¨Þꀅ \ªP¨¶°sÌ GƒÇÆõf<²¹BáÚò®Oì¬;¨Nñ[ëØXa`Me‡óѧqŸËáp©B ÚÂzîzÿ³ø¦q½†Æ7l®P¸ò–Љ‹oÕ|ØÅ7\ªP¨¶°%0z°ïë},]xß—*ª­ê8<‡˜?JÕXÂÀ¥ …j ;ÅL/4ahÜçy€æ \ª¨¶°sŸx~}w¡nš9É“)惤!» N†Ð/â©›+®-ïêû1x›W£:ëÚçEÆ k*[ú!ŽÆÃZwNX%¾ÞØÝi%½—®÷/Ò¬Ö:X8à§ç ÷G C£zK.–0p©B¡Ú¦˜“ˆ& û\kÐ|KÕ6ô«}x¶PB¿‚‡g l®P¸¶¼c1{À÷¬[¿ŒË^W+Í¥ƒ…~ØwñNºFu–_´•ŽŒÖVvꉾ}w¡zë–1p©B¡ÚÂÎ1«Í÷y*  —*ª)ìØG2LôÝÕ-\Æõ£«å&²¹Bá>ˆxahKÒ ê.´%‰KÕV5Çl/4]hÜç×…f \ª¨†\J,VxA·-œLˆ”Ï‘¶œã:Öa¾w£>?*æz3™B`>H±¹ÐÖ˜FuÊÚCÆ k+;¢üûæ†uWVãVÑÕ²l°pÀ¶Àsþv">tê» soqü»Àü(R B…}Ð4äpÁ¡Âø1*ø„Ï' ‰lŠ<¾_JÙ©t²?.ÐÝŸ,$òƒÌ±S#jz4®?.PÛƒOÙ9'ÞgnÝš¶ÇÍ7;î;~cÓþK¦Û’—‹ö/ia¦[®9“ÛOp°ÂÁÚl*ÜÍkwûeÝnÓÁÂÛ-Ôfl\¿è F#Ÿ,$²)ò´×™[ùîBöÇzüà“…D¶eùQ[°qýqƒ|²È¶Ès&ï¹» Ùð9OùAæØµñ×}¨‘Ç' ‰l‹¼UÔWxÓ¶Êw"üç·ÀÂ?HüÚ¸0Zv» tè¶‘ËÃîØ<c‡}¿©lkgAÆ kžÂÜå–k®Ikab…ƒ5ØœÆH;ÐXúuv½}X«D’±ÂÁš,Êú[®žïexýÊ=‹+®=ÄòH¶fº Ùß> vŸ,$²-ó5¶Qk´‘ýÕ µFùd!‘m™§e¤5õÐ9xÂ…„Fö‡j$ðÉB"Ûïnúå¨#ÖÈþpC-1>YHdSæ%§È×±fß:DΨ?ÑÈþpCý >YHdûÝ•àò{mì7Ôkã“…D¶e^¢{"Ô¡hdd Ÿ,$²-ó]IzÐmkdwdÀnŸ,$²)󚣛-Ô jäüü#êÃû^ù½'Æ2‚Ø\¡pmÇh¹GPì ôÅ' ‰l˼DwD誑½q‘ñf Ø\¡p-«ˆÑBžs²?&ÀsÎ/…D¶e†56ŽÁsÎAöÆ…Õ£hœrè\¡pmÇè¾<ŒdL€‡‘_ ‰l˼Áèaä {ãÂøàÙ:ŠÐ¹Báš§ÝW€Çƒì ðò d!‘m™KÜcǃì ãkeëBç …k <…fGt7ß±éíN8|°±ÂÀÚÒ®c,ÚFÙ{k“¡ƒqð s…Â5Î9…ŽŒÑ-|wázãºw@ì½8ãûró Áæ …k œ×‘¹eï.\o< G 6W(\[Þ1º@ì½8ãpó€Áæ …k <­‰¹ì.\ç7WàÝ/›+®-ï’C«fô$Ô]¸ÞkCOnl®P¸¦¼uÛU˜»ÉîÂõFºûes…µå¦Ì< u®÷Úг›+®-ï80[ž» ¶CПM¦ …j+;%fuwÁzO£;Ô#EwázE=±¹BáÚcáõ㤻 6[cá'_J“©B¡ÚÊ.û¢’:ê» Ö›e1ê÷ÃŽ±aûúº»`=icÔï‡*£&Nwáz¥5Ø\¡pí»ö¡ý¢»p‘ ~²‘Æ~šyËŽP¨¦¶ãðÖC0º ×[PC„Í ÷/y¿÷å÷SêP¨öX(±ÓoÔËë.\oŒ¡Þ#›+®=&Þ2)¦=¦5tXævѧëÇ!·¦]\õw›ú®‹à?ìÜ÷çö9•õ£ÛæÀ¬0¬þ›-õ`¦šv²sœ#³+ü »È®ð8,¬þtsªXFóv$—‹Ò¸òÕއ:]¢pùÚ–¶¸±ª ªþ‹­ýæ£[–Z(JãzQè_FA[ÖXUUýÅ–aÚÁ4ì/;“‹Dyf½ /c -h(*ªÿZ±Žh~ìÂÆfÄìbvÂ^Æ—aP—2˜„Õ´ýxÑ—™ÁK£ö—Ãû« « ¢ª]ÇÐjM ý°8}—gÔ‹@n¥AQ!Pý·ÚBëL4òÃîÇI Ìä]Õ‹AnaUATý÷Ú÷ëóØÛÄÒ¸òÕv¨Óô«Vð1uë¡UAT5´Û[‚«WiXo $×Z˜„5b;±a›+Ê®7æ—CA+ɱª ªÚ}´Þºµ9Uµ½õÖ6†UQÕÀîÓÚsËxiTïbs;VDÕ;þ»áÁ·4ªw±©Í¬ ¢êcSAnûa½«Í­`4+«ÇvŸB÷BjšýQ»Ç/†L²¨)€©†´ŸÖÐ]š`TûRSÓ+j `ª!ºÎ>ÀíÖÔzªö¥æ&VÒÀÔC:Çnüä¤z²öµ&§TU£ú¨¢S†åU—¿;ϰ,*ªu›Fî¹¥4ªw±©g,XDÕ[%–ÔÒ˜Ó£OŠyÀbQ!P5¦ó´ÏÔšZÓ¹ÒÜâ¢B jL—nØ©Eµ4¦s¥¹ÕE…@õ˜^2WoÏÿåU÷·V*Õƒ:G&Ôä–êDß?¹§bU!T=¬ÛåS’o/ª¥Q½1Û°ª ªØmt>>wk8ÕÇ]00“i `ê!ÝœOaÝ«§j_jn¤’¦¦Ò©§™úíKc' f¥bQ!P=¦ÛºQ?~iLçJS£”E…@Õ˜óÙüÆžRNt쎷#Ûôt"ËtlŸz¢SúÏî(NußFîž* ê}Qnz]¶UŽR¢YaØ?ã5…õ¥;iQØ{’†ÕîÚ¹—›`Jƒº»½¼ØùuhiVV`qwé*g9ÌÝ4‘¬0¬:Àöéø´ 4+”†~¶™À«‚¨Fd·Xdc3MiXïjcêÏÅîãÞ»¥a½‹ÍM4Q55…¿©jÃ`éº>ÙØ|PÖ»ÚÔäµtÓe¹yû÷DÕ>óµüû·CwBj¢}SU‡A]©iöGí.¹'`¢Å]\5¼Cpˆ¥æÚÕ¿ÜÔ&wrÕðŽÁ›"µ:ü¨þå¦ÖÜÈÕÃ;Ç&‡Üqªþåæ ÚÈUÃ;Õµ’šÍJ㺧%g_ÚÈÕF^ Î^¥Q^ÃäL˪‚¨j`÷EÍ]¥Q½‹Íͳ¬*ˆªvßwnæ*ê]ln–eUAT-°[7Ǧ‚ؼUÕ»ØÔ «‚¨z`÷ЋG¹9öGuzdss,¬ ¢ªí§Õ>äÎû£z›šcaUU ìÐõÜ´UžQïRS3,‹ êAcÓ@n~=Uïbsó+« ¢êݧ…›³J£v?ý0ïÏ®¤)€©†t|:ÞúÍɪ<£ö…æfU”÷I5œSׇ~nB=UûRsó)i `ê!c7}n6=UûRss)i `ê!Ý—ÀÐÏÍ¢§i7†'§QUc:ÏÇ^‚˜¡Jc:Wš›IQTTéÒ]¾ûæUÓ¹ÒÜdŠ¢B zLçȽŸ›LOÓ¹ÒÜlŠ¢B ZL÷iš¹iêÝwî>=Ñy®GŸõD—.ôŸŸSóã6wGöoê´âër¸—ٖúÿºÿÓ¿t¯†Õ\Ü׃kþošÖã%aê‚Kã^ŸRã®@®àµþœ—@øt¯W"À´+«xïÿtIøt÷ÅD…—UQµÐÎã2®ÜÅ–F=ÞM¦"K³Â°Zl—a›7ðrKÃŽÓÏoö´ZVtþEÜ!+¡eQ!P-¬ëP_Z@.µ4èô:Ep'¦¨)€©Ft醑ºÐÒ˜–þRVDUúuÃÂ]liÔkSáûeUAT-°[×>…ùv`Ô£whb&XDU» צ¿w/¶4êeÂ~½.Olÿ`{5²0+ «ÅvŸÿ=€—[öwîb «‚¨¯#»ü÷ïßí6îbK£^gï·CûW W ïPD¢.¸4®Ñ+À´+«xëINÐ—Æ½ÎæD€iW W pß-Ý@^piÜkfíÕr¹>?ßõÿ{ØJxaUU í²×ZžQµýåVXQTT ê¶9»ßŠê©ªuð[aeUAT-°ÿfðñO"ñíÀþ¨™H…50ÕNÛ1iZó’8{?¢(*úú ·ê<ÍÃÔk‚õ€/­î¿?¦9kÏ¢prµÁ5޵ùÍNtžG2å™5Š@w~3š†U±uÝòzKã% [á¥]\5Àû¶¢\·ûië Â˪‚¨Zh§áò…¢·¯µ<£Gkà ÅVQµ¸Îýµ»ãí‹-Ïê7øª©šû¯ùÐX +j `j!]ºåøìr¥¥A‡×{ã;EML5¢ÃrLØÄ…–Æì´ç¸[!eUAT5¬Ó²ÿ9HëýÀžªZºXVDU»¬x±¥Qk¦ ,« ¢j]—e/¶´êlï.–î‰í¬úPK³Â°Zl·y›ÉË- û;w±…UAT5²Û¸ÜÅ–F½ÎÞDhiW W ïÞM+zÁ¥qÒÏã®@®àa½³Ènøt¯³9`ÚÈ}àõ¿nX/ï\÷šN{±\.ýóÃ]ÿ¿‡ý2¼¸*ˆª…¶Öaà.¶4ªZºXXDUûo²±ßƒ¿ØSU‹@·˪‚¨j`—uü“D|?°§ÚY9‰dXISS é¶šŸâ»ÐÓ¼dÎÞ(Š j1Ömn’oõuŸA†—ë`{­_Ÿa…aµÐŽkWglærKÃz!©ØÂª ªÙ½~–¹ØÒ¨þH.´´+«…wê—½àÒ¸þH*À¸+«xÜë&ЗÆõ@r¦]\-Àó?x&/¸4®÷2¾\.•𪠪Úeܶ‰»ØÒ¨ÞcH*°°*ˆªvÞö™»ØÒ¨ÞcH.°¬*ˆªvÝvûü¬[=Uûa$VÒÀTCºïýN]hiLçI$QÕbºîõ`.äRAÝþæþøõ‡iÐvÛá>^Þª;|w†ŒZ¹ñ®@îëènÿÃØ­ä—ƽÎÚ@€qW W ð4¯Þ ·|ºF3Þ­Ó®@îëŽåðüøz½9‚÷~¼:ºÿÀÃÿ&µÏí®@®:Ò–eF¹Ò¸¿‹1ÎXUU íÞo+w±¥Qq0R‘…YaX-¶S¿ äå–†ý_íÅ*ºü¢î•в¨¨Öa® lhú*k¬gw¦[ÜÈU<Ö3î±PTi½5hISSè´õ9Jã ã­!K»¹j€—®¨‘P³ÓÒ3·Æ,« ¢êa}‘H!ÆírMQ¼zyáÖ¨eUAT5´[×ÿ)¹¼?fOUm`¾5fYUU ìÜyÇ#Ý ìZë Ì® VQÕÀŽÓñú8s{•F}”Ì'j. YaX5¶ÓzôØB—[vš~³§PÑõæ:5´(*ª†uéÖ»ÔÒ óë½Æ­˜’¦¦ѵï{nÆ*­úûÄñúIy{bû«teñ¬0¬Ûý| c.·4¬Ú;s+¶¬*ˆªEvºÍnºØõº…B‹»¹zx{jî*O¢º7¾3Çþ3{Ç}g–}SUC:½`‰1{ºF#Ò­1K»¹V€7n4”FU>nÜiz:¸éMUU ìò‚%Fîé^wÄÈ¥]\#ÀÓŸ^Â÷G»[#w™.Ÿ‡x[DÕ»Žó„Ž„Ò¸×‚Å«=óþ\êÿ÷°•Ъ ªZpt•F½<Þ½|j^»'öø½F+²$+ «ÆvÚë‡<˜Ë- û»­#b˪‚¨Zd·n9`#n±Ò¨jÛçéVQÕÀöÓqÒ:3 J£{æ;cwrÕðËŽ…Ò¨jWí­q˪‚¨j`ǹGGBi\cÏ|käÒ®@®àG/ 5Ê3Ú™Ý ¹Q ’ò>©†s^·‰üýKã;å[ã•vrÕ/ËÒS¡4æ¥mìý‹¢B ZÛë¶nǦëûÌŽ×cöûk–ß?Vÿ ÿá[÷£¦>Œò°P°:¾öúõ?äg+ êÕÖáåcn{­_Ÿa…aÕavÇ—î E¡~Rb…aõ¶ ;{S”F6zÞnÞǼ,˜¬zïëúÝ¥aÊVîV†UAT=²óDÞq¥a½«©?»¹Gyß»ß~d£WïÞýöY0ùϨø¹è½¾W†ü|‚¨ê¶}$÷½¥qÕVU§ç®¢ñ“zØ ® ¢ª¡w÷h÷›7Ü)wZÚõæíF»¹Fˆc7Ene;ÕΫ€'×6ÚÈUÃ;Íc¤'&¹¼ª¹©ý/î äªá]º¥qÝ:xrüÒ®@®à¥GGDi\ÿ‚s#˜vrÕoãäeùnàÓuëáÉL»¹z€·è­‘Á§ë_pnÓ®@®à}?`fGYU-ƒÝÚý²ª êëÀîÿuÝ|çOí%Kãêï+ÜÙü~ VcÜok^ri`íí…“/ì†ÝÙ(Áª ªØÚîÝ ¥a½føÜ­Ëª‚¨zd×)ÙØVÖ»Ú˜z^ìØ­·-êÙÔnVQÕQ0öOÍo/å¥qœï©ÙzЮ@î래½&•[ÇÞSÕÑ0ß:aV†òŒ:ï$1Õƒº_Þ †li\}¯ðÖ=ÃãVÞø,¬Æxî6û{·Ö‡SõDn}`UAT5°ËPO#¤ÆBi`u»9xiW Wð<‡~¸Ü¤{ªÝOîûs.i `ª!]»-ò&br68UûRssi `ª!ÝêûÄo_óØÒk/Ú$)Š ª1Ýûn¥~üҘΕæF)Š 1mŒsé‚Síôvº[ ÚÈÕûö*x+gpªþåæ’ˆ´+«…wèö1rO¤¦ÙÔ{Wgë_–Ç×Á¥YaX-Ow_ײ'% }ד¬0¬:À¾Ósä„S×é=5Aâ®@®àéèÈB–ÊÒ îhxÝ,0kÁeYaXõ»ÓKwÑ¢<6È ÃêlëÐ5­4®G¤Ö`ÜÈU*öØŸ{¶xOUGÅœ's;²Ùk·öd´+«†w Þ˹mÙ©ú—›KlÑ®@®ÞàM‘Û眪¹¹í äªá]{÷}ì›KÆ)_ûc˜%ƒ—“õ@ϱY8·«¼."kÅa¡`íͲ„<¾–µYqèv Ö‡Ûàœ#skÍ9UûÎÈ-9¤)€©†tkï=uG”ö^UËÞ´+«G¸žÒÝg¥Ý+NN ã~~A¹¹j„§i¸TZiTuƒ{'í«‚¨z`÷ÍNû¥²>¥Q½‹Må§`UU ì<÷‘ÔW09QÕ¹Ø\"VQÕÀ.]h*¦&J£z›J£Àª ªØi‰b˜œcOÕ9 -9Dzª ªØýï ßŸcOÕ»ØÜ˪‚¨j`×92`“Sì:19⨨Ôõ8ç„ÈL”ÆÔ’·R((*ªÆtëBSkrÍ:UoäÖ,VDÕ;vþç`’É‚Ót†@.[€¢B zL¿µ¶–F}üR³ ML=¤ûnç¥oíNÕ¾ÔÜúOš˜jH÷îò¿wgÿtÁuº4ªùߟÜP¦¦þ;ÍÇ—,‘‰ïæ™’ÍÓí.ë4“ÓäeÁdí·›».´ä¶-?ª=ÌR›ÔÀÔC:¡ ÝòÌÆ@.SÌÃBÁFˆ7ÿ\ëÜîåǽn¨ÔnÚÈÕC<Ï ;.J#»—¬ô¬j#™vrÕ¯ë: (:&Jãªå¬›c˜vrÕo±[#8Ê“ê^lrô²ª ªØ}]Ñ‘P×{7;;riW W ðÒõ\vh<”Æu/87zqW W p¿n187‚ÜîuÅûÞø…UAT5´ÃØOäX(ë\nr䲪 ªÚuën”FuÞ!ÊZ˜†Uc»càLŒì =Uïj“£f…aÕØî5! …vÌn°;¿Yßý×Mõ{®ßßTãûC~ô/|ÿá!¯ÿMÿÇÿºãµºÿk~¶È‚ÉÇ÷M”ÿÑ}|K‹»èÒÈ×]h^LÖ]ï>î¢K#_—d(и,˜¬zžþôA®òc™À0î@®âÚRN]piÜéÛG0Â4,¬ÆxXêëôÔ%—þ6ë¯÷¼®Vv½°ð°»W›ž†}½iùçŽÃñ™lèrKÃNÊÃѽزª ªÙe_¹‹-Ú©9“›¡…]\=¼{Á¥q¯å-$À°+«xêö¼àÒ¸ýQsY©Ó®@®àuØÉ .{™Ò•s{†û<ë¦a¡`5Æó¸ è%—þݙӮ@®á­>Á@\÷:¿C!ÆeÁd5ÌKw}†!.º4²ÕÏq/м,˜¬zp»[nÆyXÛÙ 3 ëAÞ»‰½æÒÈ×<ÞËEuožçÿ=t5Ȱ+«†x¹ˆºàÒ¸½·ïN˜vrõ{G5ß puõÊâÍî@®à}tún¸ºñȆUQÕÐnã¸s[õ’ª#" ³Â°zl÷m/·4¬÷$3ÿáÕŠÙ^ï×§`¡àׇU¦äþµü²âü€÷Ðãb V‡Û¾3öó•vìÒãvrO3:(J»WœÅ{ýhå ä*îÿëº œ¿®ûМÄŸ“õ0÷ÓDŽ‹Ò¸KNäOÈ‚Éz˜‡ËQ#ÈØ(ì&'òã—“õ@þËŠ7Gôè¿ûwsDã²`²èy˜ÙÑQ¹÷AùË‚ÉF ×èÍ’ÑóõPæEgG4. &+Oÿè£)|˜F5ÎÃ!¯Ö ÇcÚô¨¾mgWÉ«hаP°:èú~ކ9ywŸ²“ƒœ»ñõ³°voÓ®@®â¡Ø{¤4²{ÉÓëKÖîjÚÈ5B<Âw^iäÞØfÜ›,xY0Yô4»½Á7==}v÷åÊÍ@ã²`²èåïÉgP —Ë©b/7à »¹zˆWt)ÏìõA–=–†Õƒ»M‘Òfx )ë^pvɃ]\=Àûþg’G†ouÂ[~ü®@®à¡›"µãô>]÷‚“#˜vrõ÷ýN.¥q™Îï/(R+ 1Þò®+ûûÛs« ¢ê¡Øû­4®s¹ÙÙUQÕÍ0[¾ašÔǹñ _ÇzCLÿî…þ ß¸,˜¬´yŸ¸Û¢4ªÝª¿‡YVVíÒ¯èœ^øÛ|ù«Uv¹²ßàa«˜e…aðN~ S~Ьª7²s$Ë Ãê±­ïÃcSYy†­ÏÍÙ—†…‚õ ïOî‚¢\e+Ãs3̸,˜¬z<Ï``&¶Ò°Ú‹˜÷faVD5"»ºÇ ܧü˜ÝgnÓ®@®â!ÒNšÞ¢¬ß|Ö¼%xŽÚã‚¿> !®O²ÌâüÇä27ryF;5stsÖaYaXý[ÑË-ϬþfòÍಬ0¬ÜmØÈ)²4îãÀ©×µê›s: 1ŽömgÉÒÀn/fvZ‡]\=Â{Þu¥q»öGS4IÀ®@®àiÉë-Ïìe¯®$M¶g·¸ÚÛ>¼+kÄwZÈ;®4îuñdæ^LÖÃ|ýRrÑ¥‘M—Ù@ã²`²èõϱ/Pœ×?ç¨@a¦a¡`=ÈÛ0 [¡ÒÀGÏÅ‹ÓB+»_ØxØê¬Ì²Â°VxÛLÒ{«Hi`}²¿¹êÁ®@®áyðΓ¹àÓµ¦ù{!æeÁd=ÌS;(#=Ÿ²×õ}¢ð«lŠ6Ó®@®b÷m­›Cyrßå¸9’iX(XòÚ/ì5—F¾>ß@aÆeÁd=ÐÛñ%fh¡. ;+IÒ{» VDU#»Ô&8jb+{-/1í äêîǽßJ#_ß y•ù¾Ø§þ]¿´+«‡x˜"gåÇpu½F¸ô†]\=ÀSÏMhåíÔíÞì ³Â°Fh§ÈqPù±;Eú“Ò#UQõОÿƒæ±Ò¸útssÞ…]\=À z«•gV/ÜœXVVî:ÿéÏBFouõ çæè…]\=À›W¢»9|·§’׋ùìæø…]\#ÀÓÎ-¥Qv™ôÊÆ²Â°zl÷¿/è"³CuµßìæÜ€ª‚¨Fh/_^î³Ò¸—ÆëâÈ÷µ^áñ×8üùüÍ`¡`åó7ýõpUf<”gôòÂ1vYUU»ëz™$:‹ý°Û ÆàGÝ×6©÷Þ¸- üû¼ÊÜh´+«ÞfÛ2’×[žÙ뾟 0 ë!ÞÆ½æÒÈVqáf˜qY0Y ôÞ-îim÷}Êן 4/ &ë®îÜE—F¾¾ØõjgõýžºCúÿ=tm‰¦]\u™Þ§~ /¸4®ž3¸`ØÈÕ¼ô#yÁ¥qõÇ®›†]\õEö}=s«:O}¼·2Uºû÷œÔïçcÒ«9—“õ9sc¿Ò¸YöN6TDUnåá¿n<ˆ¤ÆCiäÞØºÝß“•1üžú™¥Q/-¡ïaœ†Õñâyüæ ®²õìÍAŒË‚Éú Þž:²€‹.ü¸=F0̰+«†¸ï—¼àÒ¸ãcšß¹ã°P°ã©ëÁé­4¬Ÿq»öç_žìÚùíëS°P°:%÷ÓÑÑŠÒÀßf½Až»Ê.ö¶¶âÁ¬0¬Þµ[ÀË- ;*Ûì›±EUAT5²Cw¬žÌÅ–FíÔ'æ{¡¥]\=¼{Á¥qõvƒ›†]\=ÀãQ£ÂÖŠÒÀn¹#¹¸Ñ®@®á©ûóÆ2„«[3ÃØôK»¹j€Çîr=pÁ¥uMeO²>ÃýÖ—qX(؈ñ´‘w]iÜëüÎ̼,˜¬‡y˜ÝwÛoºÊ‚]6и,˜¬zìFô, <ª7ÊÍ9vrõOõå]lX”F”D³C—“õ@/óBŽŒÒ¸Ö\ts,ã²`²æ•¥‘Ýúóö:¿¤ŽfØÈÕC¼ ± ð‚Kãºõçl€aW ×ð2±7^idk¶¿9Yà²`²è©î. QžY·®Ç0+ k÷éS,Àˆ(|}’dF1/ &ë®x£FiÜήmgG1ª ¢ê¡}>ܶòµCãe6do )ãÿº:‚aW WñvœÆÇŒ‡Ò¨^-0;xYVVí<ž‡0ƒ¡4®¾pÞ¼´+«tôýƒçs+<«kÜü ‡îAÏ•ž¿o[Ô?! &ëãmñÍñV]}…»9Þ`W Wð²ì¨(|ýé ‘ŒË‚Éz Wvd”Æíìv£ª ªÚ­oOè~g ýa÷?]ñÐñ÷›yÐAÃBÁêo·t—]Þh¥Q/]EÄ]³Â°zlûÁmð¼7‚Oùw‹Í `ÚÈÕC<^š‹Þ?ìºõdJã3%¸$ã°P°úÓ­ó0¢—\x\”ÐÊöö¶b˜†Uû G±ºÜÒ°Ú!h÷b˪‚¨zd·yç.¶4j§>iÝ -ì äªáÝ»?•D"¾•Õ›Áî…f…aõàÞ9]7£[ÝšVÅ&]ÚÈÕ< yÁ¥q/Ó¹²ZÏpÿ€õ=5 +1ÿëú£~ˆ]riàß™ˆ1ï äêÞzç(–›®îur‡BŒË‚Éj˜ûn˜Ù‹.l•jïš—“õ@³Ûw3ÐU¾Î÷P qY0YôôT^çæS¾&Ê_.¬có´Øÿï¡«a†]\=Äóº‘\W/õÜ 0ì äê^W§æu3ÀÕÕ+7 »¹z€wö‚KãvvÆ#^TDUC;Ìmâ’ì©Î¿©:"²0+ «Ævû¼Ü#¸Ó¿ýåX»zõ½ÉrÈÓC^ªüxhÜÕ‡çOÈ‚ÉJ”§ÿú£í‹»æò [åÄ{aÆa¡`=ÈóøçTu(ÊU¶j^7Ì˂Éz ×if/º4òñì†vrÕý¾‘\÷ñJÄðòdŒ{Æa¡`=ÆûУ—\xØ~½ç5µ²ó•=Þ ÖË¡8+ «†w\Žs°¡Ë- ;)»ì{±eUAT5²S7nÜÅ–FíÔ'Ä{¡¥]\=¼{Á¥qõ2ÕÍî@®àé©kñí .[ót܆]\=À{‡^piÜË”®¬˜Ë3Ü?`í¡ù°P°ãyô’KÿÎîLŒiW WðÒ]>M\piÜëü΄˜—“õ0ûÈ^tid«@u3и,˜¬Ú/×ÝŒóSå‹Ï4,¬y¿¼l\siäkï墺6O‹ýÿ½ÿ›wr•·É¦ÿÖþüÂÁªäõ —#ÖJ¯G“«vXØ'dÁduÄ­Ó‚þ~¥qõŠÝ½ñF»¹F€×ž¥‘­ŒñÍ‘ŒË‚Éz —ˇg€‘QW/Þɰ+kxwŠ¿9’«l¥äoŽd\LÖ½±#£4ng§4³ãUQõÐ>wqã¡4r§6ÀÞÁ°+«†xó›é÷Æî©^ÊÄà…YaX=¶ó¼“ƒ¡4½8,¬> l{ÿèà~ä• ÛvÐÇ+ŒÛAÛ?õ÷;»>÷ð Y0YùàÃ7½ àr²ûp¤„¸X”F¶¶)÷~?^LV¿}¼~°Ü´°ú6ãÁŽÝ…}€‡­Í0+ «ÎÈûü÷CÐ8®²µU¹9ŽqY0YÇ+|ÍåÖ—Ô›AfYaØ?áý‰ÂÞo^šb?n‘þAï?óÄð¿q2¶¼,˜¬ÜÖó]wô>@³PiØYy®»3eÒª ªÙa…‡Cidk*¾3„?! &ëבœJã>ÆÅ볟ï̘€…‚•E韊±U9Øq¸°ð°Õ³¬0¬^ö–+«wûÝœ"`W W pßym÷|ºµåáÅQ…÷L»¹z€ûe!g´Ò¸n§` Öc<g@C“ZiXmwrofUAT=²ã¾·[i\ã`™ Ïðø€µÊÏ`¡`=ÆÛ8s¢4ª¾rÞ¾°+«†wèØ .«¯œ÷L»¹F€· ]0J“Rs®ìtaàaëFYaX=¼ý±õÃf´ÒÀ¿ó3Ó®@®áa\È;®4î±x~_<4CÀ®@®àå’O.¸4îeß÷úá{œŸáþkß2ú,¬ô7ü“×¹6¤ª•÷ïã}¿éGù÷Óðö/Ìßÿ¾ \Lևܺ÷ä$T÷º›€¦M\LÖüïΦ…]eëÍ”›ÆeÁd5Ðc× à¦¥4¬öÖö½« ¢‘­©5j®/ ¬OA÷'ÚÈÕ#< öWÌ$qÊ×ô3Ið²`²è©î.û®4ªþ}s–€]\#¼ÛÆn„J#ç››7^LÖ=oðÍWùÚ¦ò2Ÿ¹6]“£åŒ9vrõ/ìÍWW–¾9YÀ®@®àãKRÔ*]×ÚqßÜWà²`²æµ÷Z¬ïÎÉU6š'îÎɸ,˜¬zëœôñÍ £ºz…éæ„»¹z€Ý集ûHzsº€]\#À߯µCSE•?ÞN°+k„xÉmPiÜ^Ý­ÜܶÁ®@®à©÷¥ïM§|ÍÑ3/ &žþ´#ùtõ—ÀïdÚÈ5¼ äú\÷’(UªÑÛ3|<:ÖH¼ècÇa¡`µ}ê×…\?Jã9èUÊô悇ÃBÁú8Ù¯4n§´´Ýœ&PUU-iNã|äÛÆ]Í·õýh®þþÃ7=îÿMÿã^LÖïæi_Ùu´4òõ­íWõùï?<õ°ÿ{èêhƒ]\ýfžÇ™¥‘­<ÅͱŒË‚ÉúX^/«?rÑ¥‘­§¼›ÆeÁd=ÐõÀê,«ïoN°+«Oû´p+jiÔËñÈòϲ°FlWö†+Ïp§m¸ïÎ,+ «Î s·¬ä½VWßß›hW W¿s= {d, ¬ŸB}ï—vr!\Ï“¥K÷óϳóÓ¨ìÔ_ØxØúFYaX}ìWW[4oΨ*ˆª‡vºäàÅ¢4îñ6ÆË¤Ï½Å ‡…‚õÙan¿IM¿óß·’¡ —“0/èÀ(Ïî8¼ny­ê4\Ô‡wÐê,ª‚¨ú,±ü¶d¾¿_/ϪûFѤtWµWûõ!W WÍ0†áé5<è`a¡`k¤íà}QViI½{£ª ªÙõ’!@æôÒÈV5øæ:„Ë‚Éú:´-;·ÿ+z9áÙ¬²¬0¬>ˆ÷ÕýÍÍA\åk!ĸ,˜¬⥾å=!–†”¹íÞã,« ¢ªCxéŽ×à˜E£4êuv'–8ÚÈÕÃ;‘ÌX(ª_îÍ‘ »¹FxÿöP#ã·ºj_ïÝñ »¹V€gpA. ë¾^8)E{ía ‡…‚ÕÇ­¸¼¼–µç­eìÚ Þƒ…‚õá6Žúߘ Õ)ëM¸‡;­÷ ºzGî@®â‰ãKãêSÐÍ5 vršð) ìÞMPÑ®@®áÍ#•g×½ÞdÞk™Ö…trøþý²*²«š®_üüN|C»*ØÈÕ¼tÒ=È\ݺ|nØ »¹F€/MÀˆ({É¿®êLÛ3Ü?àÙˆ0 1>ÃÔΧ4n¯6àÜÜ©Á®@®àuØÑg™ÒÀÞ[Øé‡/ØÈ5"<®èRi`÷гtëæl©n>ѽéêÞŽ“°y­4°ÚÅpw"†]\#Âè¬VžY½Çéæ$̲°jnfíê·'ýÕ‡á 6Ž¡Òû÷V¢7ö¬¼,˜¬Žµµ >q$ŸlO·3ŠÁ÷žmyY0Ùs­É@wIiÜîu3ÃÍ[šUQõÐöÞVâ^êàt£!™=àeÁd}Þì§š½Ô9h|Ðs÷˜ƒÆú ÿ¦ŸþçŒüåk^LVË×ë0¯ä¦¢4®ñ ÞÜñ²`²~sÛŸã» ªÊþaé —“õ@£÷ÞG«¸èì<ŠË‚ÉF ÏÛòn¥a»i^¿27îøp{}r†]\}bƒÏ½É ËéZ7Ƚ / &ëÃxj?æÂ¤YN7pÉÉD / &a^<úîF£ÊÆww£Ë‚ÉF ÷æ5%äñì,»}«#÷|Ʋ°zlçžÝ•g¸7ZKnnáhX(ØòÝf7pU\tv‡Ë‚ÉF ÝGì›;Œy÷~À›  Öƒ\7¸Åº4rࢳ \L6ý·ÍÚ`T¹¿ì¡ . &ëÞz÷‘òæ¼QåzÑ8qà²`²èydÓ‰¥‘{}Rº›ÅeÁdýI»¾‚Å݆¥‘¯Ç“½êõ™¯½>ùÐÕ‰vr±3²«à½ý²‹ {Aæ6ûM½C¢ç+{y«]Ÿ•QVVo=„›Ûä—Fv/yz}Éê†]\+ÄpçAidkù¸Ù-Ë‚Éj ·®žû- ¥q¯—L,x´+kxýÓûÄlÞNÙ:dïÞæ—“ÕÍÛÖ_2QÈíWÙºè{S/ &ë#º¿|> y†*ìy:_ÝË›œÚþ‚vrõº#*«Îr77p´+kxêƒc8ùrÊî˜X^ m G»¹VˆíïpÜÝY αýww°+køhRÂ:JêÊ‘s¿>ä äê[Ša#ŸšÊ3ëNjɇ<˜†5†ïS*Ød–FîU_p[ »¹úøgw·}sK<^j†//ùæ†vrõQn:õ«9éýª ¢¡z{3y󹥺ããŽxUV¼ûàBÃBÁú¼l¹(—Æu†Dv ª‚¨úð]ûÁ¾7Ÿ «û C>Ò°P°ãÝó”F¶ÚonÓpY0YŸ'ÖÙ©ÜܨU×û~Nz£»¹úHöænîÓ¼g£›Û4–†5‚;ýfþÞ~®/zù¬ ’„`YaX=¶ûS†˜ÎJ#ÅÃéUñðîŒË‚Éú¼³SZi\mûssFUATc ç·@·\iX÷À«y½À—6g=¸0,¬†xïztÉ(댈äúƪ‚¨FhëGš¨ÇÎÒÀýúóó|[Tv»°ð°µf…aõðöýˆÞl¥½“`²³í äêF󾸗A;UçÓpÙÌ Ã±½œƒóvʤ4ªwµÉüÌ Ã±=¾Ö€%LJ½2•ìüÄ~ƒ‡­N¼,+ «‡wªÇY2ëDiØQ)Hß\ÔPUUì|iÓx{s^Õù>LöIf…aØ. ¹ú–ÆíŒTçÍý. &ëa^ú10„³OUõEöq‚e…aØ.=Rù;Xº‹{]}aW WñºzÇÞ'ªìŸËž'pY0Ùôqv,³.—F½þ|È.vrõðÖw™eyVµßìæî—D…@õ¨îËïyï?c–†u?–´ôøò>õ¨…–†…‚ÕS‰ãòðZžÔX_¾Å`¡`c¸móe'³Ò¸ú“nN¾°+«ünËÿ~ö?0±‰ø• uBKnñ Y0ÙôÑXå¥JÃúwôøúŽžÕ Ã°P°2gdå¬EŰ °P°1ÜÆPj"ø¸øÃöëÀí€J£ê³üíï äê¿Z¿nìÌVÙ; V¶Ó;èn> â°P°â)¸9K>žnà’Sm2Ÿ“0÷=ÉG­Ó \ròi‹—“0_ ©ï'Ë3{éU|ý¶Î²>»óÃÕÞ&ç]\åMòðQÜ¢ž Ê3ÉGZ Ö‡ð¼xÓÜ]öªl}Úéæº‡Ë‚Éz —¡gבÒȋή}¸,˜lzÙ•¤4rࢳ«. &Þš6-èydq¿é~÷‰—“õ0¯Ct†Î®ƒëí² !. &Þ£·Jv)¬rÝ(®àRˆË‚Éz ·)úf—ÂíiGn]tv)ÄeÁd#ÐÞ‡¼ïNÑ›÷Yì»34 ëAÞÝ—îî7ž‹ ÖÈÈî7pY0Ùtýü “bÿeçè´Ÿ]_«ˆEv}ÅeÁdõ÷ºeDó¥õè½| í äªù’¡j”¦ÏÒÈ×z'3ãó²`²>”ûyb·]¥‘½oL-ÛŽ¼Â¥miW WñÐÁ®ÒÈî%ï¯/YÛ"Ò®@®âÞ”Fö.yí^_²¶o¡]\=Äc(’›‹Sv/¹}ÉÚÖ‚vrõOßÿÏÜ*]×zzº¹¯ÀeÁä?{‹ßpŒÇû*ãªî-¦ã|ÌÇßx46¬ÿ-ÿë7£/Ÿ—“õQ7÷¡#ºž–Æí/¿ ²þî@®àe&WÓÒ¸îgWØÈÕ¼ô¡mEt--ë]pzí‡]\#ÀƒWˆº»4UÙzλ¹4á²`²þØ»¬±Ý[pËR×Ù-ì äê#¹~‡Z]cLÜ|FæeÁd+ÌÁ#Óór•ý³­Òó2. &ÞC_åÊæ#N706’u.^LÖüv»˜”FŒìˆË‚ÉF û?4²^_]¼^-€°+«x‹~C ½VÙ?@3½â²`²èua—“ÒȵÇn—@\LÖ½w » ”FŒŽì"ˆË‚ÉF ‡è6&»V90:²‹ . &ž~s’ï§`Î(/µ²0Œ›úûÍyëò\[U¶ÿ¦ÿõûƒº ò²`²å¥[½á|s%<å:4Vn%äeÁd=Ðý]d“ô).:9Aó²`²èqÉÍhiÝß"òë·­†û¼êó ë1žú™êJ#÷ú>æîôŒË‚ÉF Gxª+ì· ¯;AÕÉvrïð$WÙ½äñõ%«Ó2ì äê!ž7ø‰ª4²÷þð6½nÕžiW Wñ2±;üò »<¿¾`í‘f…a­ðìâQÙ:Àáæ‚‡Ë‚Éz ×}!—Ò¸×Yî`W Wð6ÅÖÑàâQ×½àìb»¹F€gö®+Ïp§næoN,+ «‡w?Àž–JëÍ7ï`W ׈ð¾’SZi\︭ô »¹j€×îÏã"1WÖ½Üä ³Â°zp{v4”Æ}Lhê$ٱ˪‚¨zh‡ãMWj©(û˜Éú—§eÜ[ÚpX(؈1z·•gÖÙ™D…@°®Nƒû½MÃévÆsá½m/ &a>¾“L¥MJãªKæÍ4í äê§Ì›”Æu/8™æ¡]\=ÀÓqæ¶d”î÷ŸÕóù‚+»\ØxØê4Á²Â°Fx7·küæL\e«/ãæLŒË‚ÉF üÑÝ™xú{”-2î@®àÙÉ݉ç§6iý‚³31ì 䪇r¬g.îÔ›c9裒¿ôÜý×ýÏ:‰ ‡…‚õÁ¶°wGiÜN™åoÞ˨*ˆª‡öx#›ÜË3|mCÖ# 6‚<›”ò¬ŽÊ-qsCE¢B FTí\ÁÝèrò®~Ÿe—5º>ë‘ή—³Môƒ×Ò D–†Õc»Íc ¶ÙìVU½«Íæ·XVVí~·o/»¥QâÝ”7÷,+ «Ævë¦[J£^Ÿ†‰5Œvrð^ÞÇz{y(ê †äR³Â°zlv0”ÆÕ_R¼9xaW Wð8]zïˆ yiäë—À^µ²oÛÅ=ȇ®†vrõO=¹Z”†íWµ¢Ya¥irÔLÃBÁjº%,ïÝkyRcQ?†KÁBÁÆp;^œ ¦ Ò¸u¦Ø°)vr¯äZÖýë1«†a¡`ã~ŽÊÃkyQc;å/ê äêƒmO»yÿù—ÝVðéð‡]¦ÍN—¶ZØoåÓqX(XÛÓÁoO˜¥uwuð>>ÃãÖÏ£Ãa¡`#ÆSlyŽîJÿ>‹C›6ØÈ5"<ÏèΪ4°wÅQ÷÷‚/b¦( l5Ýß›ÛhX(XÁm|p§RžXwDd7V15ûdð–jD¶c·>¥Ý+ÎnÕö#ÓLýj¹F„Š•˜(«7kÜL¤À®@®z^ûÞu¡µ(»y×UGÄþ|>ÉûpiàÇ.ûåû²· ˜†5»µ•ù÷ö•¥õqo#L»¹z„ûu%§ˆÒ¸zõÿÞ”F»¹z€·àî=dìj&ÌCí äá ®õÉgŒÓõ/9›pæeÁd=ÌcpMnÛO7pÉÉ­;/ &aGpy. ûx)ãå×ïm&XVÖîBî-Ë3 ÉÇ# 6B̮Υq;¥ãæ^UQõÐNwpöݽD•ý#CÓ» \L6=:KÝÍGŽit—›¸,˜l„yéÙmPidl¤·n¸,˜¬zîgv#T9pÑÙÍ. &^‚3tz‹QåÀEg÷¸,˜¬zƒ¿az)¬òQxµÎ©K/…¸,˜lzr§Ž›‹a•­ŸðæbˆË‚ÉF /ùÓ·w¢¥Q;™þEÁÍm3Ë Ã±Ý¢Qv£QeÿÎKo4pY0YôzäE t@iØí''ò<,tŸ.èã´ì¬Ža5Â:E·†Ùý[•c!»ÃeÁd#Ð{tk˜Ý¿­{p‰NïßpY0Yô¶þyÕÚVTùÚ8m+pY0Y ôú_×/ö"³\iÐAÉðݘaTTêð·ëœ½¿òõ³¯Ú>÷ùâäCWƒ »¹FˆçÜa–†uÏfÝ— |yêuÛÊ`¡`#ÄÇ)kÈ Wôú¼HL,+ «¼Úðí[ìÇo§,oGóý~ì„kóýÜÿSW30,¬³ñøJ—ö(ì5·_?ÙpyIçu¢†wrïÁoœåžoe÷’÷×—üúé–wrõOó qêìWv.yéº×—üúŒwr¯*MÄŠ4=¤_\ie…aõàÎ]pÎ=ÙþÊîxè_‡×ϵ¼+«‡xé{r]·Wϰ+kxý“Æ%&ˆÊ·ÆŒ=ϲ¬0¬Üë ‡Àh(«÷ݽ°+kxD˳«÷ªÜ| eYaX=ºûqv ö`Tøz_0r4,¬¹ïØ{®4n§Ô>ïͬ*ˆj„vžÈgÎÒ¸ú´~ï™vrõ÷µ4 =q–Æu/8ù„L»¹F€þ5êy³4®sÁéçcÚȵüçdü°ãHî¯ØiGã[ž]+Ûyo@À®@®>æãëŽÈþ²4èïmLì„ITTêÒ7=ÁeiàQon…aW ׈pm9¤ö«¥Ý+º¿<·%ÁÝ_i`÷‚³ÛÕ¨›} xÓ5†Ä²²[ÊÒÈî%§wÁëñõÛ äê1^û]ßJ_‹7Ì‚LÃBÁFGl+ÏæuE,ɨ*ˆª|“ë›]bkQú‰óMX[ÍSBo¥qõ~¸››°+«x'ÇoyVõüïÝk¨*ˆj6¸Èg÷¿Õµžoî€qY0Y óØ×ùä&x¼¾l_r2ÏÌË‚ÉF˜ƒ|rë~ºKNnÞyY0Ùóæ¼Fvo¹;]çc>éåŽvrõ÷}lVÎ> p`Pd‘>@ F‘ÿ¼Ìì,N¶>sP[ ˜†5‚{<ŽsKuid÷äìôö‚—“õ@ðZ]žáÀ%g·4,lyØ¥º4rà¢³Û \L6½9/ÜÜ^T·SÚànn.PUUí8DgäôÖ¢Ò‘ÞZð´`´ë=z‡dW¿*ëµqºf~õÃeÁd=ÐÓý ³Ë_•]ÿpY0YôÌ®%åÉ \pvõƒ]\#ÀstÊHOÏó½ÿÒÓ3O F±ÞVnÝ.úxrW?$‘ßd°¬0¬Ûegky¥¦~&ïÒíö õÌá¬0¬Þu»ô7¾( ûÛaô²Û~ù¾[/lÿ`ಬ0¬Ü©ï¢Ó{rÛvʃs Y¯´Þi›6ÚÈ5B<Ç> ˜Þ°²{ÉÃëKÖ¶k´+ë†Z0~ØárØ:²§*ìFb| mH»¹ú/7ÛKhº, «7lßšÜaVÖîܳì“vÄôz@¨ÛkÖ£<Õ¯;1ƒ¢4¬•¼º7ˆiX(XñR¿4ÈìXKÃê•Ý[ûk˜†5‚»»¥ó{#¸ÂÖóý½LÃBÁz·ï¥‘Ûµ–ÆÕÅÍ]6ì ä>@¨=ki\÷‚³{lØÈ5¼:§Þ›ƒ+«—¿îÍÁ,+ «wÈm{yfݱ}Ê`YaX+¸#º\”¾f¦˜ކ…‚ ¯±.ºo/ ì‹ô“ «1ž»ØöÙMÄézçf7´+kxYÉE¹4®{ÁÉMí äF—åÒ°ÝO ØB ¨¨Ö~èɹ4®;’ÚÈ5ì={ß\ÝNؽâìê†ÃÁzŒvµ(Û)¥ï›kª ¢¡]"ßɯkÕu.7»ª¡ª ªÚuÃV‰Ò ­ô‹rÖ½õŒD…@õ ŽìúP×ÙÕ UQÐÂëBi`çzÓëË ÂêÑ{³Íêæ VÕññd½bKË Ã±„6»‚Í¡kÍ®`¨*ˆjÅõھƥÇNøúÙèW[ý|arµÖ1–†Õû)7fu(ê †ìRƲ°Fl§ ÛÒü¢kd¢I¯•õb^ aWWÿÍö‘\u~ÙœrOué&ò~øewô7ûq‡z2535–†Õ³·&r˜†Uîr èj˳ªoÇï…UQõÀ.äÅ–gU{.¿VÐÀÔCºv¥¥A«í‹Ië^HITT ê:Ô"q© ×þßǧÆ^Ÿ Ø棽¸«ä÷« ÃðýÏî¡þ_U\@=¢ú/ÐOuÍú-·Û!Mª[¥¿Õqüox=´>" &¿dßôt}…ýx¥G­MõîPƒ]AÜ?Ãí'¾óñ:nP”F¾n ŒË‚Éú@^§?5I(ÐU¾n @ã²`²èmZȰ4n§ÿ€w§ \HÖ§ýé¤s`d”F>.˰+«Žã¡›½gnŽäS6oŽd^HVGò0l={É¥‘Dòðêu£»aÆed=ÌS7’·_iÜé±=|µ?¼9_à°P°>cÌÃÄ‹ÒÈôU"­ºÛÅ=Èù×}dØÄÕ¼Öwæ Ë-«æÒî†vqõðîλwÃ[]5£v7¼°+ˆ«†wìæÑJãÏäþœ ªì~aàaká…YaX=¼=;Jãv¯ëo7Ç.«  ¾þ¼Ý7:ÔWÙŒÅþ‡îñ›í?÷ߦ~8ý#²`²>Î&³qïî(«êxt=`ÃŒe…`õÈ.cχÒÈVòçæÆeÁdýŽ^j—ä¥.ÛÐãñ²÷xnUûô4šá eÁd}Ü­].t¥a'¥ŒxsUFUAT=²Ûå¬!äî(l%ÀnÞѸ,˜¬zŸ'pž/ ëU†Ay m¯÷ëS°0°>eFÝQ¹àAÄ2 °0°:Ô¦îï>›¹§§§fpw4í äê!î/)ª·çøÒ¨Ú1toE¢]\=¼c÷'³¸ºúç,nvr#» ,ll(nî\yY0Yt=n[FK;EÜôºO»‚¸F|ç]œK{×›ÝML¨*€ªÇvîþœhŽÌÂóõÙùE·áÍYvr_?ÜnÓªûØ +¸O£a¡`#Æ*&ÐB7{›ì»ë «Ï^ÿÈÚÞ8ªÛ‰þ o(|ÿáA«ãn—“õpKþ¤&I¿›¿áGçï÷þ¿ãuåýÏ ä/ºhW Wíi˜Ö¿Ç@wßzÉñÏàÍ»¹úü¶‘»µò¤v^cU~w »‚¸FpçHKq~sY]ÿ‚ÓÛK\H6‚|9C ض•ƽ ^Wó‡åp¯OÃ4,¬NÄs×Áw^id·;0=Wð²@²:”çnéÙ»¯4²ÉÙƒ—’0ŸoÞS›ÂÒÈÖã½,/ &ëÜošÝ6†ëWÂŒNÌü´ËÉF˜·à|”ž6ªì_rzÚÀed=Ì5›ÎÝ‚¥‘­çœ›Ó. &«Ï¿óÔ…ÍIŸŸ †G#åxX0;ƒºõâeÁd}ó5ýýÎ{­}/ÕÀË‚ÉF /' ï¥q5†éU‘áf¶‡…‚õItZØpiàoóeWe·+{|µo0ÞRYaX#¼kpñK︪켚1ìJ’ºß‚]A\=Às?° jid}ö¹¹€]\#Äš)Ïî¤ýn7Ó90+ «/ró¥ëÙx—FvSîdõQvqõỌ^KìÝíZ•­¹çæv —“õ‘¼E_jå({ý‘•vqõq¼®yÛ•Æu.7?MÀ® ®Þí8¢’{-lM@7ŸqY0YŸ&êÜÜVù±zµÞaW W±ó!­»ñþg«ÌÃ,+«OÞ·îÎÂÕu.7? î ®މܽ—Æíôùìîã. &«Äré€DÖò [sû½¥‡…‚ ï;¹l”Æ=¶@úùëS°P°ã¿Ùb¥[.©íóô:‡¢ò>ªNÂK¿ü~£ ÈP•Æ=zûw.¥†ÃBÁFŒÙu¹4®9 Ò»V@5» ìz\Ù(ëßÜCð²`²1õîl±«4ðñ þ÷ÕêÊŽWö¶>I ¬0¬>އcfÇãÒÀ}ÿ³/y¾àƒ‡ û[ /Ë Ãáu¸»®²¾zÞÜî@®>AŒýŽˆÒ°ÃëuóîðEUAT}ðNnÃëÝ5®ÊÇO6¿zj¹»Æá²`²>„ÏV¦Û 4¬vÜÀ½ÖVD5†ð> •FµOeÉ?¹±¬¬Ú­·LK-dlj!c:æGEùû}û÷{9ÀhY0Ùh—n¿ýèRÕþéòÏY,+«G¶¾äË,™¥Q¯ÏoÈ»¹zxWö‚KãªÇÜ 0ì ä¾|ÓÙ‘”F¾ž«øê¸qº¸ùÐõ³®@®â­7ÏUº¹}ªªzgÜÝ@Á®@®Þ½[Á}IiXï–qV:ÒF-À4, ¬ï¥¢î¢\ð¤þrÇ®ºƒæKãI¹›Ù þóðv¹äÐYBáOظÿäj‘ÿÒ òxgZïYVÖnmàeÒ¿¥ageœS¿>¢ ¢‘=Þ †ZJúw٪ܾ³\6V¡ »)¼è‘ØQXXjkÇîÐJãêG£ÝÛQÒ®@®à¾[ÐJziàoóåô{°ã~aàa«fYaX#¼ãB>À•ÆU»o>pÒ®@®àMP–'×ê—»—R¥]\#À½s„í͸º×d 2î@®àqüsü2ETWm8º;EÀ®@®àбòáDybG­™ ©~}D@5âz”a±ÇíÒÀÞõfs0ë4¸íÜ\-ªl5—Ü\/pY0Ù±O9„¸J{##û„u³‰£÷\#¾±O„ãJ{×›}î\çKÞøÝqõøÎß™E–äêvJsÉÍUQÐw“è*Ú©¥Óœûõ!W ÷Ox/x!ï_!Xc,\¾¶ê¥q/M\¯¸ùþ[®pÿ€­; †…‚õ?¢ÇeíKëþöz¾îVžúg¸À«c 6bütÊ"°G+ÜiÃâî®vrol5²4°Z%:Øi¸°pøe_e…aõð®SÞt¥õƸ9KÀ®@®áØ“@: ±þÝI@™\H¶‚<“ÛµÒ¸z¡þæövrõo±ç­tƧºþˆˆÊ_“’ ‡6ÛéÜɶÄ.7<¡aa`=À{š‹ÓÙ“êúœÎŸà²@²äéy'ˆ$PößÃBÆ¿½ýw(¨*ˆjÄõé+Po¯¥qëÃ8·ÆÁ®@®à#Êí{J#»ÇÄç÷j¸,l„ù¸?¨|i\ãç»ûÌË‚Éj˜·®ÿ³%föl§ìŒìž—’0;Ø–TVË–ßë¡bUAT#²—¯!ÛËÒÈþ`ÈîˆyY ÙóÖ”{˜ æéÛ —óü½& ë1î‡àÎ"ûäqÊþ°È>yð²@²æà×xÒ¸S>öœÆÑÝé / $ëa:o4ßܲñÞÜÂñ²`²è)x£¤·pUöÇFz ‡ËÉF˜÷àÞ0½Ñ¨²Éé. $ëa§àìœ^«ì_rzÄed=ÌÓðç%zhv®òµ£šqY0ÙtðsùÝÆú<Æ4^Üë{vê^vq×å)¥—†ÕWïÕýYUÕˆìœãÓ‹*{CaR†˜º­€]A\=ÀóÀö‹•þ=fƒip£]\#ÂcpýLoÚªì ‰Yjê– vqwTûe÷ઙÞVًâÄWÝ® ®þ»-ݵ·+žîe5n7Rõ‚×g¸ÀÆÔCÃBÁFŒf1&^µS›˜nfýaW ×oèûWá}jiÜ^»à»ûjØÄÕû ¹—*ë]nzﻂ¸Fx×ÈÇñÂë|i\ïrÓûØÄÕû¡É!º—Æõ.7½}€]A\#¼ìbQWï^º¹¸Á®@®àù²¯~õHt·àZá±{ÝyWÙi»°ð°õ£¬0¬ÞÐWÛò{‡-ô—üÞvqõðîߤGöûßwÒ‘½ì âáÝÈ¥¸<³ÞŦw,+ë…–Jp5¡½.—PFކ…‚ÕïÝš{³[³ÓõFDvkF»‚¸Fxÿ¶[³Ó­£¿©¾›[3ÚȵlQp¯ÞtªúŽú^ʼnvrðÖ/¾B[Ò¸ þ;nnÌXUUlÏnrJãڛݒ±ªª؉mK(ÏðÃ4Ξö {ˆ\XVÖ/º,Ϭ=²{]•÷Q+¨ðƱ4²õ-²{{]^LÖ=Œ¡å,½Û­®=*Ò{]T@5;9/óß܈UWß?ß܈Á®@®àq]¸­MiÔñØ–cû0–‚µ"ËÖ²Kÿ>š0ÅwÚÈÕ#<¹/òÝ]Þª\+_íöî.o¸,˜lzØýI"ýHQUç¶K?S°¬¬Ùi!׋ҸõqåE^äæú»¹V€/½ï'žJã^Þõmgµž»g¸ÀÆs 1>>7oOéG·ª:7\úáe…`õÈÎc`w–~ª¨ªs­éÇ –‚Õ#»Ôã:¤”]ö·´DÔÝYUU캱œò ë_Q9ع¿²ñ«ÁeYaX=¼Û1S‰½Ò¸jÁînvrG>l–$ÞbŸóš‡ |íu_Õð0°úa³°;*¼é¿ÜDnNKãOò !þ-ŒO å™Ukþ·˜qVVn?dþ¤4®ú«ÝJ÷ð®@®à¡ÿsÄ<²ØWW/=Ý\ìaW ×ðõ#gÄ”VÙ:éæ,ŒË‚ÉF Ñ™­<³ŸoÀfaÕÃ:N9£•ÆU¯»30ì äŽ}É4œa- ˆ×a$<\ë‚#£"ßzó–«ßuk(‘.:\^¨7‡Cþú, ¬x‹=w¦sø[ðsåù,>. $AŽmYÓ‰üêúœëëþ„,¬y~@9¿âíÁçW<\H6Âz I§É÷!öã¥å4, l8¶ôg<ªk\ðÝG}p›³n>|¼-až.+*–f¬ê£çÿ{GåYVÖˆmðSàùÛü¬v~ç†ËÉF˜cOºébϾ÷A¹wx>! $[A^È'¼Ò¸©-›+Þ7oeºûTú¶¬†¹ï‚Ÿ\O?‰œ²ûeŸDxY Ù sèI$[n=]ÿçË\yY ÙrûP¦óðt­Ûï^ï!/ &a^ƒ|ÙçêSöo¿ìs5/ $aŽt~¤*ëþxé· qXXpßïl§Qiäú²!³^ñxqr2§ ØÈ5Bì>Gv÷ò§ìßvÙÄ/ $a£{Údòâ”­œü{Í¿ÒÁ¤ Où¸¯Oç¦Ó†¼,l ï{šëµ.{9#®¼LÏðø€ëÜù¯b ÃBÁGŒ__²Ûf{/÷¾l ÷™²»—Æ8eÿÎΦ1xY Ù󜙓yŒ FF²áÜÐf“ˆ§ìOrÙ$"/ $« ýйïß˽/ë£yƒ~éDF•ýQ—Ndà²@²æ)¸QL'å†ë‘ÏÖpN'åpY Ù³7˜ï&ŒwÕ¾™/o™º›/z[6¼9ß8¸×3{ºÖïw¯k–—“­0à ˜ÒÈît”Ïá²@²æ± îÓÙÏ*ûó\:û‰ËÉF˜Ý'Ÿîfæ¨Êþ%§3G¸,l„Ù}î¹›9ªrM<¼ºä›m/¼,˜l:ø ¦Ó]U~ ¯’·užÓŽVU“]°+ˆ«¾ÖOÇ!nøª#y>äÇTôý‡oz\ÿÛþ×ïÿMún—“õñ6¹ÝÍôN•ý‘œNïà²@²f÷ðn~§Ê¹((}LL¶üÓY©*{óѪÌsjN vq»€ÝÍÔN•ýŸ.ÚÁed#ÌîsÉݤC•Kž_9p7ë€Ë‚ÉF ÷à/˜Î¡UÙ»7åÆV3h°+ˆkØMŸÝLìLnânb—“õ@ÏÁWJò‰¹=”ä;¸,l„y >¡¥;UönÀýõ­§u`W×ðÜÂ¥S:Uv.xí”@¨™ØÄÕ¼ ùÄ^·¿ÌôH†vqðÎÁEú‘ºÊÞxè•q¦>éÁ® ®àu'Ÿ˜Jãzã!ý„»‚¸zx×.¸À¥Ÿðªì‡Agêóì âvß¹»#®rM¬¼|Nº¹#ÆeÁd#Ð#ú¤T×»ñÒOv°+ˆk„wŽmÔòUön¼Q¹¡ÕÇ ØÄ5ü½4r}ü¥qÕñp÷½ØÈ5¼…vÂÑ'£Ò¸Þ —~’ƒ]A\=¼Ûñµq/«Bz÷AvqðŽ‘}pø±³4®ó³å“aWׯýqì䮽<³ÞXH?d°¬¬Úƒ}ìÞ>/£4ìð(“¿zu£Âët…×G•à[×G. ë}ay~-·õ¿¿]¨LN”Æõîâtrvqõ~ÿm_ÐßM(ظ›÷ßÝR÷+í5Ï£²>Üu¹¸ùÐÕ}ìþ‰ñMWñ~|²{Û­4ðïG¡×ó`W ÷ÏËy¿í/Àu7sÕõVÐt®vq^*›V›û#Iiê”èËçÌÃ]׋{ùV”>nYW × qh^È&£N×»Õ²É(ÚÄÕÃÛ³™¥qíÛ-ûH̪¨F`§ëÔ´S”F&-u¸ëvqÒl¡]\+ÄKpö^ϾêäPew6S¾Ô§N°+k…8òPœNꜮ7›e“:´+ˆk„—M’”Æ}Ìh3•ÒaUAT#´lz¤4®½Xd“9¬*€ª6T˦qû>Hª_QP°N‘g´üóouÍ1üEUT#°—}#ÉÒÈן Jàà²`²höɧ4®=*ÒÏi¨*€ª¶­CÕ²Kãê%¥{µwÚÈ5<ìþ:™NWu<š&°Ü9Ë Á‘e÷ã¥qíû,ýô€ª¨F`ë“Ô}Q·3VË{ý"¼,˜¬öŒ ã6r¹èҨν–Nœ³¬¬>€§.´ßM?HT×¾ÛÒ¨*€jöò €·s¤¥QAN責¬Ùudw契3è9vroX:gSUg8¤“6,+«Gvî~ëÀ¦¼4®žÂ¼ù»¹F€'«OßTÕ ùü Ë Á‘=Žà¢ S¥qõ[âf! vr»ßø½ù41»GœÝ|˜ a¡`ýQbÞý}Y>9VUçŽKgÇXVV¾Ëäoò)†ª:ךÎ1°¬¬Ùµ ¬iéG´ª:ך~FcY!X7²Ôö¦m§TSonÆPµì=Õíâìtonª«ÿd7· °+køò¥ï·ûJ£>>2ýlî6-°¬0¬ÛíH Qý™¥qõ›âf?)ì äZ^Ø­ciäÚŽ¶»]\LÖ÷»Ûq<'T§* ;ÌZî逷ëCæõD¢YÉ0, ¬¾ÿv{å‚5ÈÂÂÀÆ==4VPZ¶ºGÚaó²4,lÄxdÈ( ¬V2ožèA»¹F„k/u.Di`÷Š“ç„ Ûñ-"ª›¹4®»ög»¯aW ×ËtKúÓð Ìïjk KhЕ VKñÛº °0°z(Ͱí=9Gäê÷Æ>ô`å¸4¬ßIùáÔJ7 ë÷FÔ__ð n~ö£Ó ƒ…¡Æ&hJãvJåf: UQЮ‘‡ÄtÁ¿²îHX”!¦N“4, lÜÅAWùÒ n¦ö-ö,……Õ¡6v^÷ð½ÌÚéê³Ã½Ìí ä»ÕtÄɺãAùÖ UâpXX½—îrjÿ UÎÆnŒm*£°0°1Ôæ%t/'Ÿz»Uúë3¬0¬>r§~B J{ƒ!Û u³MBï¹F|óÞ°v…ÒÀÞõFÝß ¾¼Îùö#QiToøfŸßXVÖ Klû­ÿ—öC¶aᯋ$«ßRÕ&´zPµúÁCî¬( ì]oÔý½à}îN³ù‡*ïÔÜÍ?à²`²>2æÜ?”gµï¦õ×g]ïW÷rÖµÚ»¹z< o¯aµ b>><‡ÁBÁÆH öhF[XJ{sPºçfFrO)ˆkÅ7ö mŒ) ì]oÔý½à£áæq½ï¿íZö8€e~5‚xß/ðƒÍÃ]¿ÿ’÷ zûë}}ÈÈ5B<ÁJ6«XåÀªŸÍ*â²`²è#==}•†õ¼µë_/xj2Ÿ†…‚­›Å(»q^Ÿ—Ùœçsì×gXaX#¶k(õîú+ ì,Ïù6Åy]"Ë~4å#ˆkÄw ¥¾Â½„¥½øFÝŸ ^ê×)¨‡™ÒÀƒvÁw¾`W WËJ€…ÛóJ{C"ÝOØ`˜÷uÞbè†V¡ðhyvÝÑd/—˶>–öCÔý½àXñP™×õæ…êÖ¤üõ1Y ÙÄÇb„mÒJ;Ã8¿«Œ¹ù¼Ï›®áàËÑÆÕÒÀÞ}—î´]¶Ðt™}Wð=׊oìU‡h;li`/¾Q÷ç‚×Xé3Ý4T]ŽˆÊ_“’õQ±ÞÉawë'U>&ÌùÕ”y·~‚Ë‚Ézp­YWhžÈ5.x =~¥_$}Ë5r¬Ö5¿Þu·Ÿ —“0‡¶pé^û=¸ŠÂ¿AƒÏéšî›²>¿í¡ÚJ´Ð&kŒ‡¿P¶¢ÊþL‘ÎVà²@²æ?$aQÝë#oÀí[¤¾/1U×ÙòE&\L6†E¬¾’~Ûeß‚óqú}÷‡$, ¬ÎÆÓóqŒoß!¹Ö‡Ô³§½çªCxêÆ`™;›:e2Φ…xY Ù sèÉ4û2Ôéú?_ö[^H6n½9ô-Ï âcÂ}B¿™:eë#N÷ÒB¼,˜l:”NϾTYgßÂaa`+À=[F/ü@_-Ó‡»vÃÕ=ÊA«qˆí äZ!¦±²ÉÍSö×¼¨|¹æàãX—,.œò1à†W.)}LHÖ—½>Ô”mš‚õ.–lÂÀú×»y¦›©ÍS¬xÉÔ&/ &U8Óï’ž®?sFå¯ÉÉVçàJì 9ewå_¯|êsì äº!ö»l–þ”ý9.{&Î?9XøÎÉNÙ_õ²E2^H6¿Å{ÆIþ€ÉÆhŽ•²Ò©ä » I:“ŒÃBÁVC eË©¾§yºîT”~S“—’­ o±y9›®?eÿæ‹Ê?×<üÍR3å½Söç¸ly—’õ¡ñ|\úÛE†Ò¸Ç†dÚÈÕ¾ÇJÞ!ÉÆ˜8¾c|¼ãôöÁÓ¿ìlËJ—ªìG"] Àedã× u[(;CõÅüÊúkSþú, l8¸æ¥ë†UögùtÝ—’0¯´Pg•ÆíÕ†–{g)Ñ®@®àè®0]¢»Ât}—’õ0±î…ì±§ëÏoÙƒ1xY Ù ò‘zD8-®4𬶓åܯ¹¹F„½"ÃÝŠýx) N¯Ö»{ 6‚|u²UÖ¸;Æc ™.ðƒø™î†˜ƒ/Áå»!pY Ùó|ÊKwöTÙŸ‚Ò=¸,l„y fßÒ‘9øNK¾"‚ËÉF˜×`gVºº7_v,æÈHW÷pY Ù 3Zó-«.&I÷ëC® ®ÞàÏ–nµ¨ß³·¶¾S æYVVîÒ³é}•ýY-¤Çed#ÌÁ3¢òå¦åÚSgÜùr. $[aÉ"di\ofKMaW× ¯?§+ÿ±®ï_B/üÃnà{®ày6·»Éùꪉ•»ÉyØÈ5¼£Óyã%˜*ÍçqY Ù 3š ,{ü|X:UQкGÞu7ËKUöWåty —’­0/dU·4®·2§«Ð°+ˆk…7Ø1žî¦¨²·2ÊŠ¯/u¬+ˆ«øñ“p îÒ¸îÊœMÈî@®à>˜M—F«ìˆQizˆYW×ð|OW<ªì/éŠ. $ažBýµÑBci\oáHFaW×ïÌ^¦ JUön»I¹Õrì âÞúÈï–N¾WW]8’îׇ\A\#¼{ð1]©[¯ç?[3ZºR‡ËÉz˜·!ç+uUön»Y¹Õ:ì ⺦ª2mxé'_D‚Ý6¼÷\#¼£ÝMÛÝL¼W×›ÕÒ‰wØÄ…8»­ ï÷pùþ7¾˜uxí—gx~À»žR£á6À·a#ÆÁ<ò•Ð-ø²D¾ŠËÉF˜Ù’AiÜîuºõnUQЮÁ߬SFƒº®²·z*Ó¥^b†]A\7ÀT5± ¯·(§«Ÿ°Û†÷žk„w³›g»›9÷êz‹r:绂¸Fxƒç´åkŸUö'žtí—’õ0ïÝZಙ÷ýú!&,‚¨Fh‡ào–®}VÙ›Ù•[Y¯|® ®`ªÈÕ†×[0ÒE9ØmÃ{Ï5Â;…Ú²Ò¹öêz F:×»‚¸FxçÈÓáWi\o4¤ r°+ˆk…÷1©So–Æíôž¬»G…â²`²f¶@P·ûIœ å T@uËgÛÐz2OêådØmÃ{ÏU¾IŠ}á£4°ž‡»÷IÚÈÕ#Ü×S‹©ï†”v¯8è^.xA»¢J«‡!Þlã¢]\cHô¡@´¡¤4®·{Ê6ÀЮ ®Þk–8¹¹4²»ï^ï{õ³®@®âÈ!:éìézûÞl –vqðNÁ"@¶ 攽m„òÈ­¶ÀЮ ®`´f\×Þg+ܬ*€ª~{îÏÞûFÚ›¬1æÈ‹ãébüézóB¶O»‚¸Fx—•-m—F¶¾(‘“¿>& &[F;¸Jãz÷G¶ãŒvqõð]h»“®NfÒýú+ˆk„wÕ-¢¥q½Ÿ-Ûñ@»‚¸nx©úk^s‘¯£jÚ;ªØÙʧß|GèTIêáï[t7_‚YaX#¶K¤ 5_ˬ®w3¤k™°+ˆk„w¤ Â•íÒ¸ÎÏ–¯Äî ®ÞÐ~:]Ǭ®=¥«˜¨*€jv <´f»NOõ‘éfªíf…`õÈŽ×o7¨óxò} Sõ–‡ä A0+ kÅ6”fH'ü«ëM3é„?ì âá ½®¹–Æõ‡tvq­ð¢ÉóÒ¸ö‘Nõ£ªªØÑ_!ó}¦Uu–‡t£)Ë Á‘eó¤¥qíaÎꢪªØ%” K'«ëý`éD#ì âáÝ"™°p­4®·2¤Ë~°+ˆk„ןÄóMzêL`é&=T@µ¢zMQ“ÒÈG|&«<¸,˜¬ú¨…SYýòÌÚëDºA¢ò>ju%ÓŇêz¿Vºø»‚¸Fx§ÙŸsÓ}Uu&²t£Ë Á‘E»Ë3Û%û›mš4,l…Mê—Æµ'²t UPÀ®‘„X¾ü0…òîùòì âêáÙü]i\{,¤³¨*€jvðß‹ÍÒ«j¯ùJ:Ë ÁZ‘$ò9Ü9”¼ÌçpaW×oä°¾|Úf^ýÛ!³!Qyµ‚ê¿ò–¯ñVÕ¹¿ÒE^–‚5"»EÊòy°êzwW:»‚¸zxö²4®}C¤ŸxQUÕìÈP¤ eUuî±t¥Œe…`Èι6]Ï©ªs­é‚Ë Á‘].]ŒÄƒyid+1|3—€Ë‚ÉF Ù‡ÈҸ歑äEUT=°Ù„J6—Fuî¶tbœe…`È>ÖHêh´ò̪»»»'¹±¬0¬\ê ² ®}‡¥wITÞG ÆÞÌg±ÎÞ™ƒ¿> !^ü’N>'^UgK'ÅYVÖŠl`ƒ—oo>?j8ÿüb¯Þ&_‡+\·¢ÇS}ð°0ðŸ§#¡|wTwü뱯Á`a`c¨m±¥}x½ªé·±“¹¹{”ì 亦RBm€íU3ÀBÕ6¸wT=°[7†–øà¥q+fPþú˜,˜l„¹$\ÒĪ:ëfº„ȲB°Fd‡À£Z¾ï»²îJ¡|ÃyT«hXX_å£î®\°ºÕ5“rqvôÖSÇJ•Æu×Ìì1X°+kø8Úïñ³ý]ᓇ”þªk •.ÕVÕ™ËÒÅZ–‚5~¯5Òˆ—wÿŽ2/è7 3oÐí• Ö‡YlŠ ÃÂÀÆPÛ½õÞ­ªTùh0?>³ UUpY0Yô>²QéJvUù']ÊfY!X#²c`²L·nï±ûmPnd=´¬+ˆ«Ï”AvT.· ïåGëÉ"Hi\5q·f»¹ú ‡ûJ!†9a`ã6žÝúþÍ¢H•­5îfU—“@ÚóÕý=Ò`—/ﳬ¬ÙÍþ”÷ÝduuÝI"›¬†]\5ÀKiÙꔥ^«DWÕДÏ=Z1švq­àöÁ 8™²>åÀd–LYó²`²èÑOœ¤û)NÕ™Ò¢ì×gX!X+²+™™+ëNhÉL"í äž.ß, ÞG/ü@_&ë¬6_܃|èÚvr/çÙôë'ë®JÄÔÂ_Ÿ‚…o~&&]ï>UgB˼aVVlß/¡›}¯àdÝ 4­LêÜ@ÃÂÀF€Ù,DiÜÇ-1P9VD5B;E^Õö9êÖ·²îHPŠÒ“ºó¥aa`#À›[i¸—ß9åcS2½ºä›ù^LŽZŸ$’YˆÓun¼d‚UÛðÞSÐîk`’ȾÂq²î-§4lLú ÃÂÀz€‡ŸF…÷Ï~/Oè·WO n.µ²Sweçï>l5¸,+ «Vr¢nÿÚUïßáøV- ƒlŒæÖ³‰®*fõl¢ —“£ÖW¢l:¦ºÎìžMÆ jÞ{ªÚH%]y,T_n©ª7«OJqzÒ' Öĵ‚;FÖ¡ñõ:¤ÏëÏhãëM¹0,l„x 1¯ä”fæ"Úĵ⻇â}ѧ4°w½Q÷ç‚Ç.òümä?YwŠPŠp“zÏѰ0°>"Æ>ä†ÛãK{#"ÛÏu³¯ª½çñ…»ùK{×u/x¹ô\iÔá±µÖ{ùƒì×gXaXc0Ì‘DA¶9þdݹaV&­o‡…ÇÞ ·œ—vî¶t|ÐM¿œôžkÄ7ö>o¸‘½4°ߨû{ÁۘͲ9ϪzóC6éɲ°ú`˜"mWÙÞõªº3ƒV7Ö:¬iWWmÔ]¦!ô}Yï=× C¬*¯<Ëÿi`/ ìM Q÷÷‚ÇX»Ü¨ÀZÇë {u/¼[_6RÉfâj­Ð¹Ôl&UQb <¸¦û©OÖn´Þ­£‡… r<¯¥_.|Ï5ÆÃÞƒkû;w±y7ÚM\Ø CÔý½à>ð”os­¬;Ê´¾µÑ•†…õûbBO*Ñ´ ®~_Ì—¯>"om–F~ /[1wÚ/îA>ôÖmL¹m€ïºFˆ¸@ ç/;Çž£ž¥½‘u/82ó¤;& $ëãb‹¥‡»lãMuÝŸ/ßzƒËÉú\±M¡ §_î|Ë5ÆD¬?Ú=Vž]o¦ˆ²¿—{ùºò”TÙ¿ëÒOv¸,lŒŠXF7ÝBV]ÿ®‹Ê_“’õ £KåIÕßÛÊ©_QQõ)xïB£7ýêì[®1býá¶·ÒÀÞ$u/øø‚´? §÷§oSZúÑ—’qK—§ÛõªëOhQùëc²@²1WÌ‘ çßo|Ë5ÆD°)?ÚVػިû{Á[ðÑ.¡¨²ߥ3¸,lŒ‹XÊ<Ý)[]ÿ¾‹Ê_“’Õ¹bíºHÓï ¾çªcb6îŠ+Ï®wµQö÷r‡‰lž(«o´ï5{Ю@®1ÆØ³s:tÊî´–Nñ²@²æXe"Ûí{ºþÏ—=혗’­ 7ÝÙŒñ)ÍÃÀeŒyY ÙXñBG¤ß-}Ï5FEìÜÑpCfi`çzÃîï¯+ÙWS×]C’}@´+kŒˆ-–ªH§2OÙ_?²©L^H6Â+dfÛÌO×ÿù¢ò×Çdd=Èý±ñ¦²°¥qü·çþfƘUQ­ÐŸË³e¥Sö—ælY‰—’õíDêÞN¿ßýžkŒŠ)–»J§`OÙŸˆ³)X^H¶ÂÊ]eßA8]ÿçËž>ÎËÉVnRêÐÓÒÀ“öëÝ<£•vrÏÁb|¶*vÊþ|œ­Šñ²@²æ56û×? VO8aw`ÝËwô.ji\ý™éÞ»³´+kì*Bïz¤OExÏ5ðLÃf‹5§ì¯ÐÙb / $ëabÍÙ—ÂN×ÿù²ß…àed+Ècl2_OšjE¡Âîdt¿²np’ȵ"Ltgëç§ì¯ÐÙú9/ $ëkÈz(}‚È{®1*Žã³©Úci\=Åt³V »¹F€§`Þ8]Æ‚•«|—’0‡º¤Ò¯dž®ÿóEå¯ÉÉÆÜVL¡µT ×K0ÓÔeªì®ùF\H6ÆEèÕÁôé5ï¹Æ¨X·Ðš—­•V×]C²µRØÈ5¼Óþ鞊*?ÐW):"®xuÙ°+ˆ«xì‚õ„tt Ö¯òuR\H¶ÂÊÛd_á>]÷çKd‡—’ ÷Á¼Mº±¢Êþz—n¬Àed#ÌS0ž.LWÙ›ã&eîT—=ØÄ5<³±éòã¬å˸,l„ùhø£Š ¥qõÍÐÍ"ì 亦ÞMhì/ ÙÏ0ñr仲ä`$Ý2.±Äf¾!—’0ïÁ,oº’^eoјU³B°+ˆ«xê‚ÙÍtul –+òÕ1\H6ÂkKËž­qºþü–ý˜/ $Až–“/§WÙŸßÒåt\H¶ÂŒVpJãvJCïÍzª ¢¡ƒy·t‰·ÊÞò±(Ë’š¯€]A\#ÀK0ï–®3MÑJEºÎ„ËÉV˜Cy·hwwi\éˆÊ_“’ |ʦ«ì/éÂ4. $[avÎ&ºYlª®³„dKM¨*ˆª‡vî‚¿Y—­îVÙ[>”/Qëµ]ØÄ5ÜÇRšù ÈLúç+ ¸,l„9ÖÚ•=‰çtýŸ/ûý8^H¶‚|6O—L«ìOCé’). $a®Ó† é¥qÕ´Òýú+ˆk„wþnébi•½Nù\¹^*…]A\#Àl¹¦4îc^±âª ¢Z¡åŠó¥¥9XMÉ—–pY Ùs¨i.X×<?ýÕM^H6‚<~/_쯲?ç‹ý¸,l…m)ë­Îé–ØÄÕûß5ê¾ÝÄ›ÜÕ5n»»ïrã²`²æ>x{¤‹ýUöî]oj:vq¿ú‘/.Áš`¾@ŠËÉV˜#iùü™hKð éÏêò²@²äèi’鎊*ûÓPº£—’0Od›Myf½u:ÝIJB°Fhƒosõ¯×Q5g¼¸ ¶Iùëc²`²æ%xk¤ÛUªìÜK§ 75k »‚¸F€ƒ_Êס—`é5_‡Æed#ÌÑ£$Ó=UöïtO. $aÞC‰ùh§Mi\oIwÁ® ®Þõòøøö!•¥Q§O/R±9öë3¬0¬ÛØAkÙ£aV·yùîá0¸,˜l„¹N=醠*{ t¯ÜËjâvq¿v•¯ô¯Áâv¾ÒËÉF˜ÇÐcMº]]µ4˜t¿>ä âá žÞšo ª²;囂pY Ù 3Ú*V×»;Ò­m°+ˆk„w æäÓí@Uöáu ôf ØÄ5ü\[¾½k¯ùB4. $[a¶Ï²énVH«ë-é )ì âá *šïY©²¿p¤{VpY YóF¶ˆ•'Õ»3Ò m¨*€j„µï9øn…¿ÊÆ}q·ÂË‚ÉF ‡`.>ÝTeouVôf ØÄ5üâ`¾ø¼ë­ùâó6®¬,l„ùøÊUh,ë­Îéº(ì âZá ¦<Ò}*[ð»}ù>\H6Â<‡JÑî¥Ò¸Þݑ]A\#¼Ëo©ãí¦óÒ¨æ¢ïô+Ô!ϲ°Vl½†å»ÝUì~²Ý¸,˜lz ;ÒmVUöv@Ê®Þd»‚¸F€÷P>]o®®·4§ëͰ+ˆ«‡wžyšoNÙƒßìË7§à²@²f´e©4®swä[¬`W×o¿²uòÒÈ¥#[ÛÇeÁd#Ðc°Ü‘n²ª²w‡(`z‹ì âZF‹¸¥q•ÍvRýúˆ*€jv ¥FÓuÐêz?Xº »‚¸Fxƒçôæ{Röàwó=)¸,l„9´ˆ6*•gÖ[•£ì×gX!X#´[ð7K÷£ì¡·Oå‘@ïF]A\+Àhɶ4®½\¤ ̨*€ªvëºP¶=[÷<]ïËV>iW× o0Ûží@9eÊÉv ð²@²æ>’m÷%•Æõ–‹lí âá½¼húö´¥QÕVý{§å¬0¬[·Žz³?â”»m~u·ÝìàeÁd+ÐÁÉ'ÛFuÊÞ죖‚µ"»—Êì+Uv—žõõңΠ°+k„˜-w•Ƶ׉tqUPÀ†>¤™/ÌÍ¡³Ró…9ØÄ5Â;EZxÂí¥q½5"Ý»‚¸Fxç@>ÝÖWUg•H÷õ±¬¬Y¶ÜUמÄÒÅ9T@5ú˜c¾07‡NðÌæ`WWo¤TÝe»£Ô¾ÃòÝQ¨*€jD•Í—Ƶ®t.UPÀ†>Æ–Od/¡³âò™lØÄ5Âk~ƪ»Ù»³,§È|óË Á‘esK¥qí_, CUT#°¡o*å³`Kèd¢| vqõð®½ÿÄ/wWÕ¹ÇÒõn–‚5"; çeè/Vv˜µ–Š:”wãfµð@ÃÂÀF€ÙÔGi\û–H'jPUÕìå#¥@Ò£4®7…¥“4°+ˆk„7V¢N·ôU·»ülP[. &a^f²Y®4®zwÜmîƒ]\#ÀCº¨¾F–âtQUP­¨FÚmÒ¯bVÖ]„weuWk;4, l˜Mà•Æ5ï‡|ºUP­ÀîfûÎx Ý›ølGe§Ç1¿Z!xë.ðqnóãŸú„ ÃBÁúÁŽa¹-«)Âõxwƒ…‚õá¶Ÿg¥:Kãú[’ô陸,˜l„¹µ0»KãºÛ’l×#ì ä9Ùt#GUÍIº“ƒe…`­ÈFÎtH¿\Yoc² ÊŽG]hXØ0[ý(koOÒµT@µ;F¶RÃë­”>)¬¿¯cµž@ÃBÁúV*,O¯e5Ñ·Í= ÃmÈöÇҸmׄ]\+À\Iºw(–€H7±¬¬Ù-ReI¿y^YwÅœ•¥Xߞ°0°`¶žY×^7ÓÕWT@Õ»¶ýé¢=²N7¡ªªUòÈÒ°îݵ(·­º”Ѱ0°`¶ØV×¾ÇÒ¥AT@5{iÕDŠl¥‘O Ü- â²`²hûœ»…ÁêªwÆÝ ì äÞK[º®ªÎz‘n…cY!X+²‘ŒVú¥Åʺk…ò‰Y}¦aa`5À{w9ûIÑ—Fö'´lY—“@Çž´“U…ʺSZ²¨³Â°FpŸ&H÷Ū3¥eã`VÖˆìI7dß°;Yw:Óz/µö6ì|$éf*òtÝ{-™Š¤]\#ÀG—lïKEí»"Ýûª¨VTi‡ô‹v'ëÞeZs•V Ãaa`=À}àDçt¡ñTÁ­4¬¬ÙÀ ‘~)ìd½°wÊÓR¼8, lxYÉç÷Ҹdz •m`UAT#´O½œ@þ©4òcòظQ93^L68ß9]:UgBË`VVìО(Òoà¬;™õ¯gÉ¥…¿> îC;’ð{m¥G­5é~}ÈÄ5â‹æFÊ3ë,Ù<‰ a}ê­²z¥‘ýe"‰ÄeÁd#Ðs /[ÎNuÅÞ½* ì-Ù—ÅhW׈/›Ü+ë,ÙT$ª ¢ê¡#i¸ôk'ëÞi£r «#—†…§cb/”vîµôÛ´+ˆkÄw‰<·ÍÊÖ£»Äž‚&eœéá…aa`#À±÷ò¥½u¿>ä âêñúÈî,Ûz²îpP°¨á¥aa`#ÀChwní, ì ˆl/*í âñ]"[ˆlŸÙɺÃA ⇆…o±-D´{«4°7 ²íf´+ˆ«ÇwŽœ–ïÓ™cçmíJ5¼4, l8Øí~) ì ˆt»ì âñß;èBÝWxÖ®÷æ‘´+kDxaÏå( ì^qн\p(“.¶Ì—½nÌMÊ_“’­QñÛÄõv¾4êôXŽV¬¡€e…aØFÎßÊwÈͱ§Ù]d‹¾dÀ°0°à-öXm=+ ì-ré^9ØÄÕã»ôClÉ_OíêƒQ…Ý%#è~eÝàR$kD8ààåÙu¯7È^.7òô’/-—ï/™Ë[ºL„ËÉÖ˜[ J£z‹\¶ ‚e…a­ØFZ¶ÓÍ¿KìT¤]d‹º`а0°à)”è ·Ô–v¦ž|0ì âª;Þ—ã^jåÈ5D¬ä®V×~óÕC\Hvƒì,ÙÞ‚ªz“p¶¹€eÛàÞdØFŽÊ7,/¡Cv¶N™x}Bƒaa`#À±÷|ÂmÀ¥½)8Ý· »‚¸ú’±ö±Œbò¹w]}@¬±"_ºZ¿±$Z¾^ËÉF#/5ç›U+ëNÊͱª7 žBÉ©p hi`ošH÷¬Â® ®ßÕ;¨º»Y ¨²Ñ/Ÿ”¿>& $aެÓ'ëå oæÄ–î=Áed=ÈÙl - ìÝ{Q÷ëC® ®ß!øÎGúåÎ*?ÐWçÝîÖ ·’ߺ:SÀ®@®â=6§“ÃUö§¶tr—’0ÇÚ/Ò}TÕõ§¶t'. $A¾dmp. ìMoéŽlØÄ5â{¤j¸—ûJ#»ÓÛøzzÓg ÖÈ5B|98Ib–Fv§¶|â—’­0‡Ré®Àm >ö§ûqY YòÞÅž¤•äÊŸvýÒÀÞôu¿>ä âñcOÒùŒ[•ýû.qÃed#Ì¡Š`¾Yi¿|6ÆüùÒíJ¸,ly‰=IGߌ( ìÝ{éW9`W׈ï{ÌË'„ªìßwé„. $aŽ•‚ºlEuÝŸ/ßGËÉJÿýO]Û&3È¿òñ€óÝÊÄd?! $a¾}×§4°w“ä^Nâ]A\#¾SðQ/—ú•ýé-—ú„,l…9´ùÎu)üºþô–ëSø„,ly–±rYä_ÙŸÞrYäOÈÉF˜c§ý„ßô( ìÝ$¹WSxW׈ï|¢Î%†~ezË%†>! $ëaîcÕÂ\‡Å¯ëOo¹‹OÈÉVƒÏ8¹Lò¯ìNoÉLò'dd#̱C–Âþ¥½›$÷jï âñ‚‰‹\þíWöo\þí²@²æXÅ0×ÈòëúÓ[®•å²@²ä%øŒ“KØÿÊþô–KØBH6Âzm9ÞI_ؾI²­ÿ¼+ˆ«Çwèb‰‹dšóWvodšó²@²æÐ3N®™å×õ¾\;Ë'dd#ÈÁ7Ä?^ôøš_׸à[Ø%oøç]‹òìzëH”ýú +kÄv &õÒU§*?ÐWÍdõ‚µwzÔ¤ì âžcÉ·|ª~f§ó©z\H6Âk0È5eýºþÏ—kËú„,l9öZ~ÿz!5‚ì=š&åK½<Ë­CxÙ s0’.¡VÙ_¢Ó%T\n}W6¼Çà|u¯ÊÞR2+K”š‚]A\=ÀcKræK"c° /‰à²@²æX#G®Çð×õ¾\—á'dd+ȱãÆ×“½äè2”ƒä â›7÷°»moËú˜˜ëó:têWi\w3t¿>ä äî‘ÐÝ.l°Ø’n稲7KìÊ]§æOaW×øÝÜzdw³>Ë‘ù8. $[a[n¼2Ç•¿ñ . $A½TÖÝNƒ*V¦ |¹æ`Ž3ÝçSe•îóÁedchLdóWyf½VºWe…`õýàì¾€z·WæmÙËÙ®,¯·+êÞ¼ déœ*;#¸ï”1¡`W×øÝ‚ŸŠÈ·-ÌÁr¾m—’0oè{8¥qý¥?*}LH¶‚-e»Cª˜8SŸ}ÈÁ¤iº7«ÊþÒŸîÍÂedchìhÇ^i\o î0„]A\}˲¸/hßíqz[ÖÇÄÒ¯‘-Kðc‹6XuK·NUÙÛôÊ P«°+ˆkünÁÏ©äÛM–h·BºÝ—’0O‹Ì·NUÙŸåÓ­S¸,l…9T\‰6Ô•Æõfút ì âáužÑï6™T·ÞÖd»¹F€ÝªÿÝ®´åú®å÷í÷®üõ1Y0Ùôœºl+]•½uzPni5ã »‚¸F€ƒßÊ7š,Ñ>…t£ . $[aÞÈê|i\u†Kº_rqðO”Í÷¤UÙŸ€Ò=i¸,¬‡9´i‹ö)–'Õ»3Ò]•¨*€j„Õaï¶•T×ÝþdÛJ`W ×°[¿Ûæ·^ß6·>Aùëc²`²èàÌ£äÏõÞÄ*{ÛŸñõ ­w&® ®àاÙnô€¬±‚= ¸,l„ùøU;/ëmÒ¥~ØĵÂLߥÛŪìO@év1\H6Â;Y!ÚDX×»;ÒM°+ˆk„×­›ßm[¯¯^›+tPþú˜,˜l:xƒ¤»Ûªì­ÒÊc®ÞÛ»‚¸F€÷žm{(ì¯ÐéV \H¶ÂjK×ã«ë­Òéz<ì âêáÝ¢¦§»º¶à§ó]]¸,l…9’ ÷ú•ÆuîŽ|o"ì âáuKÛwû¹¶!Z¦ÉžöƒË‚ÉF Çà ’nB«²w‡(Ocz ì âžB5t‘¿ºÞò‘.òî ®^¶h^÷±±?ª ¢Z¡ –“ÒÍV[ð žùf+\H6ÂJ‘öÊý¦ž·%².GٯϰB°Fh·ào–îcÛb¿šòP w±Á® ®`´@^W™Ñ’ê×GTT=°{J½§«ÌÕõ~°tvq­ð¢µÛÒ¸ÎJœ­4£ª ªÚ`U#ÝJµ?2›o¥Âed#Ì¡#  v¥q½•8Ý»‚¸FxÇàï–n¥ª²÷Ã)ÏWz#ì âfkµ¥qíÕ8]YFUT#°±7ÓÓåÎÝyÐNº_rqðÆŽ¿Ñz²Ç>Ø{£õ—’­0‡Òëц¤Ò¸Þr‘n ‚]A\#¼{èw»Ñz²‡Þ¶í•½ñvq­ÏdѰ4®½d¤Kœ¨*€ªößðŒ¤ÓÓu·Óu~°tÝvqðö[lyËö@œ²¿Td{ xY Ùó@6Æ”gÖ»7²}<0+k„6ø!átÿÃ){¿š²SU»hW× 0Z ,k/Ùr&«  ]"9ßt%èt½¥"[ ¢]A\#¼±WG£}¥q½Ÿ-Ûç@»‚¸Fx÷ßÑ‹¼X]ù¾«êLaéžO–‚5"{¤‡¡öŠÒ°ßbýÅÚ$Ûû> ]݀ѰP°Þù•Ç}}ý„©’A{Áö”.p jû³ÝQÕïåþCwô 6îãÐ.7_©®7ÆÒõØÄ5Âú h¸b_×[/Ó°+ˆk„wd®ÒžUuVÌt§'Ë Á‘]§Èúží1¨¬?‘õ¯'2}^€a¡`c}ÊÃk¹—ß.”uLW#ªk¯™éZª  ëû6 ¿˜P°q‡>Ë™/L¡ÓAó¥ØÄÕÃ;‡N{€Kãzëeº` »‚¸Vx÷P«A÷ºÕ@MóÏ—£_]îÝ׎aW ×pà)¨Ëögν¿!É÷g¢ªªU¶ÚS×þ¹Òµ)T@5úja¾05‡N¬ÌW¦`W×ïqäõ.ei\wú º_rr­ûùè|ûUUI,ÝŲB°FdÙºOi\ûKW©PUÕlè“nù ÕúDZ¾B»‚¸zx—zTôÖTi\w ˾廹V€ýa¾«ªÎ$–îÀbY!X#²c(Í”.,™|áUPÀ†>+–/,¡ÓýòEØÄ5»Ē Á÷"JãºSXö=ØÈ5˜qÓXKd Kwb¡ªªÕHã\úMûÊ~‹¯SÏ<^/÷úΚ,§aa`#Àlê¹4®}?¤å¨*€j¶6wQ½7¥ÇŸß j‚]\=ÂkǶ •ö®8Ý‚´^¾Ý Ô!Jãz[†tÝvqñ`§Iï–MV;Çr·j²°Fp‡@/Ý.öï q·x‚ª‚¨FhÇ@Ê&Ý0VUgKwŒ±¬¬Ù)’²I¿ ]YwòR¾J¸ªû6̦GKã:wZ6™‹ª‚¨Fhý/ˆä»nöÀö#ßuƒª¨VTèù—û*ëÞ_Ê×ËVµÚGÃÂÀj€‡ŽM…•Æuî²dâŽUQÐޱOW©OÕ¾#Òej˜‚µ"ªÏf[ñN·»¤)˜f<^L¶Â™Ò³oú¬7•M2Gj%6|œ«„}»¶<ý1&rð×§`¡`+ȱ'ádîñtU#™zdUAT#´3×ÓõßSuÖŒlf…`­ÈÆJµ]¬³©4®¿ZDå¯É‚Éz˜û.pH¿Xy²îzÑ+ ‘V¢Âaa`#Àöˆlù¯¢Î—-ÿ±ªªÕX™.Ù§yº;-Ù©ÉË‚ÉV˜#ɇQêæ¬²î½6¼¾‰7usFÃÂÀF€ÃÞ±·ëJ«7HÒýú+ˆ«ÇwèÓo¶¶vªÎœ–-®Á¬¬ÙX‡x²ût³YPþú˜,˜l…9’Ⱦ¦t²î|¦ÜÇ›:?а0°à!VhоüS؛Ѳo+Ñ® ®ßyŠÝé\e•kZãeòèf®—“@/‘'¹Y™)ôa¼Äž‹”ñ¶éㆅ,˜•;OÈ—#!Œ;/ê~}ÈÄ5â»Ã©ÕÒÈ×(” ÆeÁd=Ðc··+]2¹VezK'×pY0Ùt$÷‘~mádÝ N¹±7u aa`#ÀCìñ9ú>@i`oŠË¾À@»‚¸F|/_YF’V¥‘w]6ц˂ÉV #yÙö“uï;e¼mú8†aa`#ÀÁW@£}᥽;/ÛÈN»‚¸z|§>ø˜—NU9p×eB¸,˜lzˆ<æe›¯OÖ½ï”ñ¶©ã˜†…_Œ¶4—öî¼l6í âñ€˜n>Yw8(aØôð°0°à-¸MIgܦËW„‡ï%˸á²`²èØÓG´Õ¹4°wçe{³iWWï|®¸äJiäî§ JÁ®@®â~|†‰WäNõq_LË®7ß‘ƒYaX#¶±‚Jº´_]c«”¿>& $[A<8çß1˜c'÷MÊT¹©S0 £2]2Y<_¾Yl®Ìéd1. &޽ñîÝ/ ìÌCù— `W׈ï²–ºñõ,¯âCõ ûõVÖˆm¬"˜î¡˜/Ÿ5—t. $AŽç—Ù`ŽeFgå>Þôù†…­G+ÙjÇ|9ýÇ^6²Õ\L6{•7ÜÄ_Ø[:ÒoÀ® ®ߥßKÝüz–WqU½Å#È~}††5b«´*%r½ h¹|hÕ\6¢ò×Çdd#È‘s ó¯Í,±Ôþ¬ÜÇ›:?а0°à§äÒWiäÀ²‘-×á²`²èPŽ8üFJi`oéH¿B»‚¸F|×H3ûfsU½Å#ûj3Ë Ã±µ ¤›«ªë/éö*\H6‚É_¦ßPŠuÑÌÊ]¼ë³ë âêÁ]ƒ/õ*ùì?o£”öf³¨ûõ!W׈ï»)Ò5Ž6¶'IøëS°0°âPj-Ý·V]ÿ·Kw®á²@²äàë½ÑwQJ{÷]úåØÄ5â»'Št†¸Êþ}—Îã²@²æPn"ݹ¶nÁçütï. $ëA~œv ¾$QØ»÷¢îׇ\A\#¾£÷2uw3ÅVeÿ¾K§ØpY Ùs¨Êšï]«®ÿó¥»×pY ÙrðUÔèk¥½{/ý^ì âñõÎÅên¦(Ø¿ëÒ ¶BÚvÙ®”míåó})¸,¬y¾}I¢4°÷ë¥ßê€]A\#¾Sðù#ý]eÿ¾K?Fã²@²æÐŽ0]Öß§Ø^>_ØÇed#ÈspG˜NºUù(ƒ}7ìbY7\H6Â;™-üÚOi`ï&I¿§»‚¸F|÷àc^:[QeÿIg+pY Y óØÅÿÙòóéúÓ[¶ÍËÉF½fŠî^v³Âþä–Mnâ°0°âàÛ¾Ñ÷&J{7HöEÚÄ5⬬dóAãÓ;|ƽ‘Má°0°âгM¶}ºþ´–­Fó²@²ä%øl“ÍŸ²?µe³Ç¼,l„9öîz¸·¿4°s“¤_F ]A\=¾ý勘H«4²{ƒ¤ón¼,l…9ôl“-ûŸ®ÿóe ÿ¼,lùÈéùݵÙó(NùÖqñÜùx¸óxqò¡«2ì äZ!>>f !§ì¯ ÙJ/ $aŽ7nó/ ì­"Ù÷hW׈ïË ¥3È§ì¯ Ù 2/ $[aþéçWÓñrLÇÇËK…ÝSUN÷Ò‡þüõ)X(؈q¬àm:]ÿɶ ñ²@²ä-¶³ÈžMqÊîJ=½^©õEur{¯Dw÷ §ö×èl݇…í ØK¥½U:ûí âêñØÒcyrä«;®^ìuJ;Àù¥úõUÕlÏjÊ3ìo|Òµ%¶BÊgûÇëg Íß.ÛAÈËÉF‡>¸è_o#ÔE®Êî²¼¼^–Õ5vr­ÓòÙjÿ)ûó{¶ÚÏËÉF˜ç œ®DWÙ[B”êõB4ì â^‚yùto®òU<\H¶ÂÊËgÛaO×ÿù² ±¼,lyšäÇ;Ç©^Ø`º?{´È)»«ÓözuÒ'zÖȵ~¹`º?Ý­QeI·kà²@²æ± Âé^‚*{«“r¾ÞI»‚¸F€û`¾?]€ƒ±|—’0ÇZƲ̧ëÿ|Ù^f^H¶‚Ü–Þ9±õ—…{*Ê3ìÎmù66~9¸]žagÒ\:e2V3,,+k×ûÔdw³6Æ ù: [!åÓÑcð ã|o4. $A>>#ãMïóëé½}¸»°Áù=ÝñPeºLw<à²@²þëM}0/–.cVÙ›6{e6Vó °+ˆkxæÅÒ•Š)˜9ÎW*pY Ù s¨ïJÙZé]×Sð ß|ß5. $ACy±à)6øx—.—NÁl¾^ŠËÉÆ¯7‘ôòÌö—Á†TûYVÖí|RJñªì­Jƒ5»‚¸F€×`>,]ø˜‚ã|á—’0‡Î5ÎwqOÁ3‚ó}ܸ,l9vQ¾PzÀþ‘®“Ò°0°âÐZ­—Æõ–t­vqõðÎÁÆÁt‘mŽtã-£5«Â²B°FpƒÏ‹é¢Ä|ôJ×$hXØ ñB¶é–Æõ—Œtc1. $Až¥•/aVÙ_6Ò%L\H¶Â¼’…íÒ¸ÞÒ‘.Äî ®Þ.Ú•Fö–å«…z•vq@ÏWiæh!]¥Áed#ÌÁc´òåÆ*ûwHºÞˆËÉz˜ÑtyR™-_-GUT#¬Cð÷J«ìýdZžQÍKÀ® ®àè.PYæôÊLîç (¸,l„ùò9= «]·^p‡%áaW×oì|²|©u™cÓOºÒJÃÂÀVˆ#™µpõ½4®·p¤»`W×ïûÙÒ•Ðú¼ó³-¯Ã —AYVÖnì›ùòÆËèç«4, l…xŽ,péÄ{u½#x‡]A\=¼kô¸·t´ÊþÌ“.ƒâ²@²æHN-\/ë-éb>ì âáö«§+ Uö~8åvÖ  °+ˆkøèrñWºt…£Êþ‘®pà²@²æãY: ±4®zÛÝ=¼vr­o‘ÝDº¶Q]ouN×6`W×oô½t©y ~{$_kÆed#Ì¡Œ]´û <³ÞÚœî•`Y!X#´[ð7Kט«ìýjÊççõ 3ì âÞ÷Ð<•¯4®»ddO„]\=ÀÛå³ @¦4®³dä‹F°+ˆk„·­péâòÖÇ&žtm™†…­‡2ÂÑ~ƒÒ¸Þ‘î€]A\#¼SìgK×í·ÐϦìUõ¢=Ë ÁZÁÈúViÜî[ýûžTRýúˆ*€j¶öÆBÇð•Æu×á ûõ!W × p$Ñž¯ÃU×[‡Óu8ØÄ5Â<¿-ß±?<”ï‡Àed+Ì¡D{´K¦4®ww¤»z`W×ïL´§"ªìüpëëíºÑ»‚¸V€Ñòai\{MN;QUUìÞÅRëÁƒKãºëqö DØȵI­çKœÕõÖãt‰vqðO¬Ë÷šìÁO8å›MpY Ùó@¶•gÖ»7ÒÍR,+k…ö±%¹œõÑžU»<àô·*<=Þ¾›ÿÎh»öö¶\’†5Â;Ån‰|'O•½­Ž2Sê}<°+ˆkØÞRß-ÎWW]0îçaW × 0Zì.kï'Ó¥yT@5»„JBé‚qu½­Nºb »‚¸Fx×XM(ßUe›“nŽÂed+Ì¡Œ}´e®4®ww¤[ü`WW o°(”m܉üd«r#«=;(*­O!uWßdŸŠ êAíºH-ÝápºæÚ›îo`UT#°—¯‡…ìÒ¸Þ–-¼Ó® ®Þ!T›ˆvj•Æõ~¶lgí âá ~+ÝšsÊÞâ Œ3µ3‡vqcJÚmxÝ…"Y‚§Ý6¼w]+ÀhI»4®½Xd ð¬*€jv Õ&²UáÓõ~°lU˜vqð†^®vh•gÖûѲýd0+«‡¶~+Ý6rÊÞ"¡Œ1µi„vq­Ç²ºÉºð麋D².L»¹V€Ñ:ki\{¡ÈV…YUÕìåSÊ@õ¯4®÷ƒe‹•´+ˆk„w e„:årÕ,CuŸ-ÝèD»‚¸Fx/o¿Ýz\õQ[þW“ì×gX!X+²hݯ4®ò‹Ý¬R²ª ªZ¸Ÿ¥<ÃÞ\£MêsË ÁZÁ ¥u³UÊÓµßl’UPÀ^¾ ¢Jãz?X¶pF»‚¸Fx·HZ7ÜÆR×[x³m7´+ˆk„w·¦ò:áfû¡OÕYz³ Ñ0+«GÖžnïV'­ ìnq40^^ÙDÚ*J#{³Œ2´ÔFÚĵŒ–üJãÚ oº@‰ª¨F`‡Pþ2]œ¬®÷ƒ¥‹“°+ˆk„íY)Ϭ·ä¦ûkXVÖíÜs˜¥Q%7Û5 ³B°Vdc<Ù‚ouÅ7[îEUAT#´l…¯4®½6¤ë‘¨*€jör* PÞ+ëý`éj$ì âá }/ܲR×[Ò-6°+ˆ«‡wìü¬x¾±±ªöêïldY!X+²hÝ´4®³>d«¼¨*ˆj„v%nÓ…ÈêÚ7Cº ‰ª¨F`ÇHâ6_‚¬®óƒåK°+ˆk„7ô¡»p§Ji\ïgKwÖÀ® ®ÞÙOÜæ{«ê¬éfF–‚5"ËHJãÚ¿Xºœƒª¨F`·H,_Ê©®7¥K9°+ˆ«‡7ôè­F—'ÕûÉÒ¥sT@5ÂÚû °|]U©+Ý`DzB°FdÙ$si\ûK§ÄQUÕlè³uù|øú \>!»‚¸Vxwã7»ÛVÕÇ=ÖïXË Ã±=^P¡ ¦¥q½["]à…]A\#¼K –³<¤›ÀXVÖˆìJÓ¤3ãÕµ±t^UPÀ†>Q—ωO¡³ ó9qØÄÕÃ;es³l›RU½å!۩IJ°Flû@Ž&ÝLSUgþJwÓ°¬¬Y6Z×üÅò™[T@5ú„W>k;‡NËgmaW×ïñÑ*g¶Ív|TÕ›¿²-,+ kÄv $jÒ-Uuæ¯tÏË Á‘e¡¥qí,¶EUT=°KèkRù¤íú:S>m »‚¸Vx#‰šlOBU½ù+Û”À²Â°Fl‡@&!Ý”PUgþJw%°¬¬ÙÝWó/ïVö[¬¿ØËw'Vå Â]­@Ò°0°àÐW¤òéñ%ðe¦|rUPÀ^>É $CKãz?X:y »‚¸Fx×@:!Ý–PUgK÷%°¬¬Ù#qéL¹é× +ëN`Ê‘y»Z‹¤aa`+À©:í¿4ì¬4æÔ¯¨‚¨FdÙtsi\{H'ÇQUUìÚÿnîÞ/œ–†ý_ßaþÞuþÀòÐÕÐÒ°PðŸçcÑ¿–Õ¬àzô c°P°1ÜÆ@ö*Ý SUg¹L÷°¬¬Ù%°¸§_a¬¬·TnÚ»èjm–†…³9øÒ¸ö´ž® ªªØe,AÙâleýIl|=‰©éA 6– ¨<½–{u¹Ös0Y(Ùp[ ©—na©ª3­§{XXVÖŠl ©—÷°²î”>+k…Z²¦aa`=À[è³ùRÊøD¾‚ª¨F`‡È,ÿª£ŸËÊ·oTÕ¾Ëòý,+kü^S —•3¬²î}»(‚Z®¥aa`#À³ý®sw3˽ÞèËç¸QUÕìʸ+ ¿ìî?Yç{ªêܼéæ–‚5~°=ðd7ª²î«|juWKi4, ¬x㜯S‘ó…J–‚µ"Ù+«¿ QYw hµp5»KÃÂÀF€·MG—_(»¹F„w6{^ؽâ {¹àÀ¦!]¨Ú#§·æ+U,+«…¹~¯Ð™Í²oœ¬;7hef-‹ÃÂÀF€ÇÍl–vïµd*6ì& `ïºF„'8[Ù½ä(ü{É£1ÓUSufˆlÙf…`Á0G,”‹U{ùOÖ›öN™vô» †…ÿø÷‚÷œvrõÑŽîK'wOÕ½Ùì.Ì ÁZ‘< e;¹OÖ¹ýË‘;v-üõ)XØðë©‹öG—Vo¶¤ûá)öÄ’-\¾ !ž­=º{ ÙSuî·lFf…`È.‘'‹lÓñɺ÷ÚëV”±ÓÇ. >ŠùX+oi`ovÈöÏýn?$gA\=¾CÙJfëNÖ£2ÎÔðÒ°0°àØ[:ávµÒÀ΀H÷×ÍÃZ6³½óï¹F|—Èþ,Û”s²îp˜”q¦‡†…ÇÞy·º”öpÔý½à£˜7¿.?ß|—âT{¨—Ÿj¾÷6í äêÏÆcgïR“óŽ ®>|Ç!°CK·Òœ¬{·½½Sæ•ð°0°à1´C 7¨”öDÔ½\p,GÛå*o§{½ã˜Ú/ &óÄÚŸD§wA\c¯pºædÝ»îõ(;­‡…;[£Ý%¥½u/8˜¬MÖO7pÏ%ßëâeÁd}ž˜úÐ60Ûßøž«ã)rüDºéèdÝ»îõ(~ì”ð°0°à`_j´•§4°7 ¢îå‚ciÛlí»º{.[ýÆeÁdcžXBÏÙæÄ÷\cGÎLH·óœ¬{×½Åo0)á…aa`#ÀìƒsiÜÚ¿Þcú°+k8ö`íB* ìÝqQ÷rÁ±»t‹L…³Zö5ÈЂÑú\<÷¡-w¶Ûö=WÉsä÷|+Ò{a|=ÇNÝÇÓ°0°ài µ.™T©òuvƒ’*¸,˜l:¶éî‚T¥;/ìþ^p¬ê“n1â’ò×Çddc:^CO6évá·\cG^öÎw«Í¡ÓÞ½Ãc§>.Ѱ0°àè3X6sµ§µlÞ vrÇúèÃMv¥½i8ê^.8ò›ï¢©®?¥¥ûhpY YŸ†—!ä|—ó[®1ˆCo¦Û+ëNjÊÖ•hXØð<'âlj°Ê©-›ÄeÁd+СLE¸«±4°wçEÝË£½[¥qÝ©-߆ËÉÆt¼†iÒðo¹Æ þ—,ÛÓü„å3aW WðÚE“éa¥s[:AÈÓ‚ÑV¬cyŠh›ni`ïæ‹º¿«§›«ëÏnQùëc²@²>#¯cèé&ýòÁ[®1ˆƒÏ éäÕê=˜&á¯OÁÂÀVˆcÒÑnèÒÀÞˆº— U‹ÓÍŽÕõ﹨üõ1Y ÙkôQ¡K–ª|l.¾Ï—ÃÊ ¸,˜lLÈÎá+ÉÕTW[ï=Pw7óXUö'¸t —’­0ǧ_/ÿ[ÐK{Ã"ê^.í-ëOpÙ£ÖxY ÙCôi![V¨r`‚ËpY0YŸ”7çý„äÖE׋÷XÝÝÌfUÙàòÙ,\H¶Â{¢Žöû—ö†EÔý½àXñ8ÝÆ[]¼eäedcTlÁ99[aضàô–-0аP°1!;/‚$·-‚¸ú˜p_Õènæ²ØŸÚÒ©,¶BK[D_ª( ì ‰¨{¹àPÚ"ÝÊ[]°¥Ï@ÄedcTŒÑ´EºÀPéÀì–.0ð´`´>'ïÎK7É]‹ ®14ÖXæ"Ÿ8ÜÝ\YRþú˜,l…9–¹ˆ¾ÄRØQ÷rÁhÛmi\w¼åÏrÄedcTl±g²|!§ÊÇ÷½tc•\H6¦äÐ UùMßrÕQ±tC0o‘Mž²?½eÓ†¼,l…9–·ˆ¾ËRØQ÷÷‚cÅälkïéúÓ[Tþú˜,lŒ ¸(RžarËÖqpXXŽ—.ôæMú}Þ÷\cDl±Ù8›/¬°?±eÓ…8, l…8’µˆ¿ÇRØq÷rÁ¡‡±l[ïéúÓZTþú˜,lŒŠ=ø0–­ßœ²;µ¥ë7¼,¬OÇ}è œô+½ï¹ú¨èÇ`Â"›2]ÿ·‹Ê_“’ »ïw7ë5Uö§át½—’0op¢»4²7¿Ê´©>àÁ® ®à=8!§ÓšC0“—Okâ²@²f´­¹4®ÿóEå¯ÉÉzG÷ òîfÕ¦Êþü–.Ûà²@²æ1§SôUöæ8å˜b=A»‚¸F€Ýó+»›yÍ1˜ÊËç5qY Ùs¬tœíš>]ÿçËžžÏËÉF¶RžaJ×mhXØñΦºË3ìÍn³2kªO{,+«7¸;Nç_ƒûÌtövqðÆêÅÙéÓõ¸ì— xY Ù rôe´î[Ž`qÊôå)aóq×-·¾¦ñ­AF]\#ÄÁÓòÕ°*»Ó{¾†ËÉF˜§`ž)]ª©²·|hçªÑ°+ˆkØ=$´»™=ž‚ Ó|ö—’­0£Ýâ¥qýŸ/û^H6‚¼ôÁe¯½ìéa>dwÙ^/#zYW × qðÙ<]Ϋ²¿„¤ëy¸,l„yíÉoiÜþrë!iØÄ5»šéZ^•½nW¡&‚`WWðìžuÛݬÌÁ”¾þËÉF˜cý0]°ƒ°4®÷óå¿eÂËÉV£§$¹9eo•î»×«´dÔÈ5BëÇË—¤çXƒ[¾"MÃÂÀVˆÑ.…Ò¸Þ îª€]A\#¼3[Ô-ϰó³õ½5߯²B°FpƒiÒtáÎýBSþú, l…8–¿ñÐ;£9ÿ9^H¶‚MËgh:iwi^/ÍV˜YX ؈rðtŸ|3ż³Üéf \H¶Â¼‘-6¥q½:Ý»‚¸zx£ç2äû(ªì-ÒÚÎJÍe® ®ààaîùRô- ¦KѸ,l„9x°O¾¡b‚É×tK. $aC ãhMi\ovK·Á® ®Þkúý•ÆûîùÕ†p9f·éžpÿþú,lÄxÞ]¶£¢ÊÞ ¢ 65Ï»‚¸F€ƒ'åç«ÐK´*˜®Bã²@²æuˆLAéÚ]uëwXívqðÆN§Ê÷«\έé'Ý®BÃÂÀVˆÑ¦Ò¸Þ‘n¹‚]A\=¼—š6ÒŽPžaoÙX^^®Ñ?Á²B°Fpáúby†½yçFI”†…­Ï‘Û"]Jª®·`¤KI°+ˆk„7xØW¾wbc9¥|ï. $[aå/£5¥q½»#Ý»‚¸Fx—àï–®éWÙ[8^¯ÊFIvqÇ>ép£fçþ4)}LH¶Â¼Gnt™£ºÞâ‘.sÀ® ®Þè1jéÚþüÎ@¾¸ËÉF˜÷Ðfûuc†ÑR]çîÈ·§À® ®Þ­þné’s•½nS%uO »‚¸F€ÇPN-]Þ¨®7«¥Ë°+ˆk„.+–gØ¿/Ò•P¶BŒVÇKãz3Zºš»‚¸FxáŠmy†½ŸíõÓ‘QbfY!X+¸h… 4n÷­ŽX=UPÀn¡LZ:Ñ^]ïK'ÚaW×oôp·tÁs ~¦!_ðÄed+Ì‘LZ¸ ^×[*Òe{ØÄÕûÁß-]ñÜCï„ ² ©»_Øĵ¼DfŸt=ãú¡_uÉHW3PUÕìÊ¥SìÕõ~°tŠvqðÆÎÉ»QëÜcŸ¼¸QìÄed#Ì3Zÿ.ë-ér=ì âá]ƒnérg•½åâu²Ï(v® ®`´"P×^2Òõ T@5»G’’ù¤zu,ŸT‡]A\5¼Áµ-[Ý .ÙÒ&Ì Áê¡íb¯ÔDKÝ¥q½;"[š§]A\#¼±ïɤkšöˆ×Y(½  ³B°VpÑÒJi\{‰È‚XUÕ ìqž.tgi\õ&»yd(í äž"ÙÞt èt½õ7[¢]A\#¼s( -i—Æõ~¶l žvqðÒ%×ÒÈÞBñz<è5bÚĵJCf‹AëõËÝêb‘-±ªªØãù„:d³4®»P$¥]\+À‘Sµ¿Ò¸Þ ‘®U®@®`¶öW×^%Ò•JT@5»DRºù*eu,_¥„]A\#¼¡ï…›YJãz?[ºùvqðn”nº§´ªÎ‘n*eY!X=²¡Œn¾˜Ê‘æKi,+kĶ %Óe´êÚ Dºˆ†ª¨F`ûãšú.Liàùç÷b>dC»¹V„#)Ý|‰²ºÞò›.Q® ®ÞЇ®Â½,¥q½Ÿ-Ýz»‚¸FxÑÊ_yf•©ìn•’D…@­°2åéèª:ûšt4Ë Á‘e+R¥qíÕ7]?CUT#°¡ÏXåkgSè0É|í vqðÆ^"Œv”Æõ~¶tÇì âáe R¥qõ![>CUAT+´~Ž<ß[U{uȷ粬¬Ù™­E•Ƶ±tå UPÀ†¾X•¯šÍ¡/@å«f°+ˆk„÷é Bu²M×vªkO`éʪ ¢Z¡õÓ·ù¾»ª:ÓWºñŽe…`È.‘c¾¬S]óËuPUÕlè‹Iù‚Î:Ç0_Ð]A\=¼±òqºì` „ÛE5¢Úù š|7XU™+ÝƲB°FdÙüri\{îJgÃQUÕlè›HùLø:`/Ÿ ‡]A\#¼sà17ÝMSUçK·Ó°¬¬Ù%N¿—~¨Ãüó{½|hPÎÜìÕâ.ì âÁeÓ ¥qí),´EUT#°¡oõä¶KèÛ7ù„-ì âêá]»Àƒnºß£ªÎ–nø`Y!X#²G§ôžliXwSŽƒìÕ }?&Ÿ]\ßdÉçQUÕìdÍãw{ªú¸¾÷åP7Ë Ã±]¼éªyU,]6gY!X+²‘ýmúµÈè†Q9¥°Wë84, ü'À¿‘8N)œ–ŸÊyÛ»·>à±{Üë!OËÃÿ¦ù¿é­Íÿ½Š ±ø¿WƒM^–ƵçótªUP»xäÓíUõfólÿË Ãê±Ýú@j%]宪3›§ËÜ,+kDv,=ZbX-iª7½²@¨E-ØÄ5‚Ë&0KãÚóW:ÝŠª¨F`'k¿Û=PUgöJ·°¬0¬ÛÅÏ«ä‹ÜUµ'š|•›e…`È®‘¼Júպʺ³× ÌŠji‹†…‡>ˆ‘ϸnLäó­¨*€ªöQ]Á ó¥a½),ÝE»Â¸Fx?µ’¯wWÕ™ÄÒo–‚µ"I­¤ß£©¬;Ę̂–·hXØpàÈð|ípÂ/²¬¬ÙHi'Ý5¨î0˜”ñ¥&³aWW îÖu+˜{ÿeÇá¦Ë:§êŒ¯l]f…`l ìÓ}Í'뎯Y·Z‚ ‡…“ Á‹ú¸ÏæŸý8sxÀév—Þ æø^L6~¼À¹šé”þ©:wr6§³B°VdÈtŸïɺwñ¢LZ² ‡…õ÷—f“÷³c¿là\¾tâõT1–ͼ¬¬ñƒM`ãhyVÝÑ¥4Mêt»‚¸FpçXÇQ´y´4ð¨-ÄI÷ëC® ®ß%²ïg†~ÝÀ¡ié¼ã©:7p6ñ³B°Æ/¶G6þÙ>Ï“uo`¥gpÐoÖ$ØÄÕ㻄òuùÊFuý;.]ÛÀed#Èwó=YKèÝÝIiƒ:‚aW×n°/8ÚéTØ»ãÒY°+ˆkÄ7–MW6–%¶sÏ×6pY Ùrä Ù|ÕKyLÊXõ1 ÃÂÀV€76aUù1&f0û¹z~m 6JGÀJ{3Pºc vqõ!¼öSl{’NüTÙÈÜ%å¯ÉÉV˜Cít!tícÏ ùR(. $AcuѰÒÀÞ¯—îYƒ]A\#¾î+WÝÍôO•ýû.þÁed#̱JJºæ\]ÿ¾KWqY Ùr¬ÿ;Ü VØùõòk°+ˆ«Çw»Â$TJ#û÷]: „ËÉV˜C»Âtõy‚Ϥéú3. $A6hDûîJ{÷^ºQvqø®±g|:¨Êî}—Oá²@²æÐ®0]ÝÖà~>]Åed#È{è$ÜâXØ»÷Ò=™°+ˆ«Ç÷ñèM>––Föï»ô£4. $aŽ¥ýÓÒêú?_ºDŠËÉF§à®0{«òÑ'ö'Àro¸,l„9øvC´o·4°7Å¥ûŒaW׈ïå¸äé¿4²?½¥3¸,l…9ô¨—®Hï—#NÍŸ/]“Æed#È{°NqVÙŸÞÒ)N\HVüwÁ÷u¢}¥¥½).ÛK»‚¸F|Çàu61tÊþô–M ñ²@²æÐu¶6}ºþÏ—­Nó²@²ä)XgÉf’OÙŸÞ²™d^H6Â;Ž"ÜÄ[Ø›â²]Ç´+ˆ«~5k¹×†ñ÷ñ-§‚n•îÿ›þ7~ÿÚ6‹—“á¶ó8Ùtä)û³}6ÉËÉF˜CÕ½tGÄéú?_¶'‚—’õ ÷î;ŠÝ½úÅ)»³}º~ÁËÉF˜ƒïŒE{ÈK{3~¶çvqøNÁD»‚¸F€÷`¢,›V?eʦÕyY Ù sè™:Û@uºþú‘m¡âed=ÈC|ˆÌÖáNÙ_?²u8^H6Â<3pÙÑ);sÜÜ)s§úH »‚¸F€§`j(W‚©ä|^—’0Ǻ²j§ëÏoÙV5^H6‚¼Ÿ"Ó…¸*ûó[º‡ËÉF˜÷`ïPºFTeoŽë•¹S}¦†]A\=ÀcÌ ¥3Éc4yšÎ$ã²@²æÐcd¶Sítýù-Û«ÆËÉFƒ/ùæKOUöç·té —’0ÃÏï5P÷‘ršÀ³pX(X=áßBüñÒ•§*{ëÈ ¬Oês5ì âƒxŽå‡òéú1˜¡Î§ëqY Ù s(?”nƒGôåqY Ùrð…õ|}¯Êþ4”®ïá²@²æ=§KOUöæ¸Q™;ÕçjØÄÕ<3¨ùt2. $aŽu¤û§àˆùŽ@\H6‚< _ª²? ¥ëO¸,l…y&«’¥qû˸@ª¨°+ˆk„wþnéÊS•½%D9 Y¯;Á® ®àå7ÀÄJ#?ÐW\Ýy¾¸ùÐõI‚ur/± g¾ 2kù‚. $[ae8Ó=œSðÕ|'. $[AÞÐLViàiþIê=ß|;/ö¶>Y ¬0¬Þè -éu•ý…4] Æed+ÌÙ¶P×ÙåÛ,`WWïÜ·tiºÊÞ·*Psn°+ˆk8x´n¾œ7+Xùr. $[aåŽÓ-Èsð˜Ú|2. $AŽ4”®ÿWÙŸ†Òõ\H6Â<¢]!¥q½%$ÝÅ»‚¸Fxçàï–®üWÙûá6%jJvqOˆÎWòæ`ñ*_ÉÃed#ÌÁ3†òUé*»wH¾*ËÉV˜#Yãp¯Bi\ovK÷VÀ® ®Þ£<=õ—†öƒHŠUQõÈ.}0Ÿ®ôWÙ»%´Â„šdƒ]A\#ÀÁÓÍóÕÑ%XÌWGqY Ù ó˜xòe»êÖ þ{ã%ݯ¹‚¸Fxƒçbå)ªì/ÉQùëc²@²æP3Ú^S×[–Óí@°+ˆk„w æ1Ó-Uv~¸¥{½vqçÏí–`!%_´Ãed+Ì;Y>(ë,ùrì âá ±•¯ïWÙ_8Òõ}\H6Â{ÿ,ÚXS×»;Ò@°+ˆ«‡wíƒÌté¹ÊÞ⡤rõÂ3ì â~_"_OZƒ%”|= —’0×£ÜzÍMYYžá^ÿùîž²IÃBÁV²:S×[¡ÓÕ$ØÄ5Âä âþ¿—»LäÏ&ˆkŒÞàç~òå=ôùœeQ~7õqvq­£µ­Ò¸öÚœ®Ä¡ªªØ=”N—‡ªëý`éòì â*áÿëºÐkLá’wi\oÚÍ•èyW×oð“>Éò¯ìýpʤTyW× 0Zt)kÏe¹­  CéÉ\Ýâ×õ~°\Ý‚wqð.¡¼Y´È]×›ÇrEyÞÄ5ÂülO²¸ù+{?œ²¾+¥MÞĵʛ媿®=—åj´*€ª¶ï"M}É„ú¯ëü`É„:ï âáíCi‘hõµ4®÷³åªÅ¼+ˆk„wظö¢Ò¨ƒØ†¿çy$ٯϰB°FdƒäIÖ3eï–Pâ T3yW×ðI4$¦¿®7‘妼+ˆk„÷ob“(TüÊ9çåæwʼ+k…x&sÒ¥qí}NîmZ@5{#ZÓ.ëM9¹<ï âáÝ®i«4ª½ ';ÌpVÖˆlð‹QÉ"ü¯ìÜ«¥Ï»‚¸V€‹%sx[iÔN»Ïn5Ç»¹nx©bÊË«3N®ôC«/ƒ›TõÀ}$»›/ûT×Û<¦Ë>°+ˆk„7ôU¨pñº4®÷³åŠí¼+ˆk„w lòr-{¿ª³çzöpVÖˆìJ릫>Õµ±tÍUPÀ.¡´nºÞS]oK×{`W×oè‹.áªui\ïgKWÙaW×ïæ§u“½M¿ª3…åš›pVVìÈ–OJãš¿X¾Øƒª¨F`ûP:7]è©®÷ƒ¥ =°+ˆk„7ö:F´\]×ûÙÒåuØÄ5Â;Rb馦ª:SXº«‰e…`Ȳe“Ò¸ö$–.ò ªªØ5”RH'É«ëý`é$9ì âá }2$\M-ëýléê/ì âáÝ)…t7SU),ÝÎIJB°VdѤsiÜë †H’vrõOÝQÚ€>ˆ]W½Ón}À›wr÷‘¤X>Y^]{N§ÊQUÕlè+,ù4ù:’+Ÿ&‡]A\#¼¡Ïƒ„k©¥qŸ-_û…]A\#¼lŠ´4®}«¥º¨*€jvõ÷bé.¦ª:»›tË Á‘ } $Ÿ&ŸB‡DåÓä°+ˆ«‡wîY›t³BU¡îV`Y!X#²lv´4®=¥s¹¨*€j6t’>;‡NÆÏçqaW×ïH+¤«éUuî±t9e…`È®¡‡²tº±ºö]–N6¢ªªØÐ©òùDã:!#Ÿh„]A\=¼WôíäRyR6߉ëEUAT#°ý”w7 V]uÜMƒÁ®@®`{¶é² UµW‡|§˶Á½Å‘=’kЋˆ¥a‡ùç{Ùü¿^+}׿µ*IÃÂÀV€‡.ð*WiÜGâ}œß‡¿> 1f“£¥qíi'ÊEUT#°¡ï äÓ¸Kèèœ|vqð.~Ò&ßRUg¡H÷ƒ°¬¬ÙHSú‹}•u‰AY}ÔÊ fÓ£¥qí["ÌEUT=°kï§mòõÞª:wYºà˲B°Fd#Ùáô«;‡êÞ_£rãªE3ØÄ5‚:Ì<ŸÌ]„çS¹¨*€jv <ú¦ ½Uuî°t¥—e…`È®Gßü«%ëùhçSŽÝÕÒ fÓ£¥qí["ÌEUT=°›¿+û¸Ø¿7ÄÝl#ª ¢¡déZoU ,]ìeY!X+²‘G²ô‹%•u'¯Y™Õº f“¥qÍ["ŸªAUT#°kà‘,]í­ªs—¥Ë½,+kD6ò^kúÕ‡Cuï¯E¹qÕÄ-ì âêÁÝbæsâ{äˆÉ|Rœe…`ÈΑTBºM´²î@ÐNÌRÓ_4, l8p,[>·¸G:Ë'YVÖŠld–n­¬;6e„©™¶Ì–OKóO%ùù‰ç`×ýÂ>ÀÃV÷a,+ «†·ïç/¥³Œ§êÜkÙ4#Ì Á‘ÀÌò¬zwÙÖ)·¯–­¡]A\#¸—Ã0ßïg+Ïì4ÿ$AÚ¹æp·þÙîx¸ÿ÷*º¬+{Ä÷ÿ^Å7pJP:ÑØ‡žOÒ™F˜‚5FîÈ’§{ïNֽє‚÷¤­g8, ¬¸~mëh+ <þdƒ˜<ÚÄ5â8Ï&;Uû¶HgÅ`VÖŠlàY"Ý¿t²î¦”¾'}à°0°àØÌm *Ï®w£e›˜`VVmäá:ÛfÓ‡²!›R ÔÀ²¬¬Øúž µy, ~aXØp¬·5ÚþRž]ï~‹²¿ñ#Ïùn·\#º—ƒûÒÈד;¡\. $aŽ¥—Ó¥·år ­ùó¥«o¸,l9Øëm9* ìÝ{驵=¤[¤Þrõø®CûáÒY‰*û÷]:+ËÉV˜Cvé’Ü:’ÒE9\H6‚<Åž;¢ÝG¥½{/êþ^ð„üc½;úfõæ}Y=lè»`V([9e ÉÖCxY YŸ/úà ”éTý)»?`:UÏËÉV˜CÏëÙ–ÂÓõ¾ìl¼,l9ö¶jôõ•òìz³r”ý½Ü1xOgK‘§ü@_¥³ê_õäC× ‘´+ˆ«¯{•¥~¸örï¹Æðý›„dÊM§ì´l¹‰—’­0d¹4îqÁóÛîׇ\\+À±gétéæ”ýå9[ºáed#̱>¤lsìéú?_¶A–—’Ý CGŸµ1ž?Þüê±é€÷é?ÈC×—<n#|þâ|,æ×²š½9¶™˜+k ¶=¸äe!NÙÛ`-ÊÆM1ë âꂳDº"4üÙR@!¶BJòf±O×ÿí²Ç²ò²@²ä1–¦È׫ìOAéú1. $až‚Ŧt7D•½ùM9‚Pï…€]A\#ÀÁ×ýó5¡*ûó[º&„ËÉV˜CÉÇl›ðéú?_¶Q˜—’ »¥îf¹Êþ4”.!ã²@²æ=˜4M·CTÙ›ã”3õfØÄÕ<º%»õØ*?ÝTz¿>& &ëÎ1x~E¾(Te!I…pY ÙÏ¡¶¬t‡óéú?_¶É™—’ ÇzÔòEä1¶Ï×iXØñL¥û!ªì-$ÊI¦z7ì â^ÑâfiÜþrÓ!ÅXØÄ5ÂÜw§ëc¬O(_® aa`+Ä¡ö1eJÓ;±«ëþvù^l\H6‚¼ŸÒÓÕÍ*ûKGºº‰ËÉz˜§.˜{K7CTÙžç¿äåÄ©&-hX؈qýêT½)ë­ éjì âZá f7ÓÅ)˜ÿÏCpY Ù s¨«W.X}ô˜‚;–ôIü¼,ly >ž§K§UöWtí—’0¯Á´iº°Wew é•ÉSÍVа0°ãcgHÕÈJãz«Hº¦»‚¸VxƒiÍt¹i VXòå&\H6¼GÒšù^÷êú+HTþú˜,¬yf+½åÉõWtmvqð~‰,?–Fv׎A™4Õ„ 1޽Z­>–ÆõVtµvqðÆNË——‚oýç«K4, l„x>8¦ë¤Uö'¶t—’0¯{äI—?ª[¾+À® ®Þ-ø»uÙi•Ý•C‹„š¦ aa`#Æ{(Ÿ-8–Æõntvq­ðÆò™ùÓ¬©ä L¸,¬‡y ž¿’¯”VÙŸƒÒ¥R\H6Â|éŠ ¥q½õ#]ü€]A\+¼Áß-]&­²»zL¯#¡WIiX؈ñÈd& Ž¥í{ãN‰”†…­Dz™ùòÒ¬¨äËK¸,l„9¸ä¥+¥KpJJiXØñ¥#(#”ÆõÖtÙvq­ðÆr™ùi•ÝY~V–%õ š†…õ¯lý <¹þ¤–®xÀ® ®ÞèáWéÊÝÚ“éÊ. $[a^Ñ‚yi`w”.ñÓ°0°â1”ËL=ªë­é¢ì âá‚·Fº0Ze÷ÞPžrõÊ( 1Žn‰Ó•¥5ºÃL—–pY Ùsl.Ž–s˳ëNléú3ì âáÝ"óOº¦ty‡ûï™LIô먼ZA½Ü ÄÛ®¥‘èË£ñÖ:Ö |˜^ß Ã°P°å=”N“Ö=”oM“`W× opFOWõ«ìÎéÊnJ/êÓ°0°ãíúóþÉ‘¥qÇãT¼WóÏV¯¸‘û‡l̸,˜l„y`KŒåvo‘|U”†…­ÇÞ€Š¶"”v7>éæ 6BÌÖKãÚ[ t5UPÀ^^!j^¥í_ìN•ކ…­“ïé–‰*{O¯„Baa`#ÆÁÓÉò•Ð*û«FºŠËÉV˜c‰hBi`wJ·Mа0°b¶²X×^=ÒuPT@Õ»wÁ¼pºŒ_ewRS*zŸ†…÷÷îT*ì®Íéê !E–/4WÙ_5Ò¥f\H6Â+œD»ʳëÞ év ØÄ5Â;E¹t tŸüu#]ÿ$Qyµ‚Ú?¢úxíø¼BiàùçÇzÏýú+kExE8øÕ†ÒÀîÝß žƒ‰ìt×L•Ý-„RìÓ›fhXØk–=K»[ˆt–†…o± k´A¢4°ûÛ¥[:hXØ1[¡+k¯téz"ª  êßù{LÚÜÔ.«Ž„ñQd"eJ#»3°RvP{{pX؈ñåÔ ¢Sس%#6B<Ær•Ñ‚xi`÷·Ë–ðqXØ1\Š) lMÄ7JG0+kw &ñ;eÖö•§ìNjZN\ÛWâ°0°ãÈiÒ7ê'ìÞÙz !>º.ì=U¶ÇòTÇ£yˆê²„Y!X#²l¶<»Þ=‘.*Ó® ®Þ¾¦–³%åSv9-Y«îÑhXØŠ1[}) ì,ÉÙjÌ ÁÁcy©l ã„Ý_-[ÄÀaa`+ij¿¸e›ÒNÕY.²]i0+kD6òMÇDé»4°»\d‹õ8, l„x‰åyÒ•äSvÝúp˜•¦ÕÕxY Ùò°³¹~*äþ¸}·ßm«Oð²`²hßcÔÝ›>áQ뽈º?¹‚¸µøV–âh~rmÃx˜½ m˜µ"ëÚ G;±O·¾¦-÷Cl)åŸÇdd#Èõ±±øsÒyQ#‹?ÐÂÑF°wïC/Xž8eÇ$XžàeÁd=Ð}?²=¹©«‘h1 [1öäÑÑc“­=L¢ç´+ˆkEוGG›´O·þ QöW‹ºoÃed#ÈÞWȼ½v©«“.ÚˆÃÂÀFŒWW6í<Ýú PÌE_‰iY Yòàt;gSXú„kƒ"ÜÆF»‚¸V|]©H´‰ítë7N™Î‹ºNà²@²äw&ý}cyúT_;qmð0+ kÄvõmˆÝía©«S.ÚІÃÂÀVŒ]‡‚²HèkðêÛþŒÊj¹è«0- $ëA½]ÊÞþšTÈÕam Âaa`#Æ£gËnR9Ýú P¦ô¢®¸,lysM£M§[¿`e¸-ú8¦ed+Èù˜N…;Í¿›•²r•åq¼È/óàÕ,—“0ïÎÝÛ’ ¹ºÄEWpXXñä,ã…Ïñ2Üé=sQúç9Z(Ú´¯·+Ú tºõENé3YÔ±ŒËÉFggÅÂÛt“ ¹:ÿ¢}B8, lÄØYÑ ŸdØ1÷§ <-mzwí—ÃýXÙ­Ï>¥­gÑÇ2- $ëAÎßÛäzœR!Wç_¸-‹†…»¢øiÈåÃöÌ ‡à²@²ä™Ýá§Bžµûל”аP°å muJ…[_ß´}µ ed#ÈÞgo¿S*äê nÑ¢aa`#ÆÎju=ÚËp}…‹Ÿîñ´P´èÝ•÷…ZfgqdTràUË´,¬yñö“{›DR!WçI¸¯…†…ÿ;¹B«.© Æ(ýó-m…Úw>U]g²?Wåi¡h#Ћ3ûóöä¤B®ÞÂp 1^g¸ö’ Ú1Ã#žŠ6B½¹î`ø {©}4*ÿ<& $ëA^½m£Þ¨TÈÕûîÚ¢aa`#ÆÇоˆ‘ ú¥Þý ä Û>Ì_Â?OÁBÁV˜“$^›Ë´c‘ çxZ(Úµó4&|”½z+ŠñÃlžŠ6íl†v7Ÿ¥B®ÝÂx¿ 1Þœ©`¼|”éú Œ—xZ(Zõæ<“ hos[?Òæi¡h#Ѓ/t÷ú¥B®ÎÂp{" 1½w/\ÙÈ´c†+<-m„zòîdÂÕºL›óéW­ãi¡h#ÔÎ#špA†Ó%ÜCÀÓBÑF ½ÝÿÞNáTÈÕ/ÜÜLÃÂÀFŒ7º"“ ڱ؅ËH<-­‡zï¼çáÂh¦‹]¸0ÊÓBÑF¨gbᆂýò}b{º„[ xZ(Ú´÷½oÏp*äê‚ns¦aa`#Ƴ÷ü \µË´c†«v<-m„zqΓpÙîO•pÕ—’­0ûŠáî ;n`¸ƒ§…¢@oÓå\øÔ`*äz{H±äÕn¿À‡ùâõ8ðP°eg)ÉÛŸ ¹úH wîÓ°0°ãùõU ´˜› ºþ8 —  …¢P{߉ ¡OÚq£Eèh¡h+Ô¾RR´é„÷0Úô-mÚû¢·+>ruÁ‹6òã°0°ãytn6æû͆>š¹ú螺ûG·>–aX(؈òâ=zŒž©œ´ã‘=Sy€жBííC–úOÚq£¥þh¡h#Ծ΅pÝ ;îa´ËîZ(Úôî­¹FÏ Oú¥Þ­yž®Óðe¾xý”‡…­ ;«¢Þ7jR!WŸÝÑ—€pXXqß{Ò£W'íx¢D® …¢PÓéSvÜÃèi / $[aö•Nº`#ã ×o`¸•ñZ(Úôä=?ˆÄžtõ‰2(*5S¡aa`#Èî7l£Uþ“vLÁh•ÿZ(Ú õûótw Gë— Nظ‡­ß‚x€޶Bí«(Y¬Ú4zÂŽÕÎK¿C½9O5ã_ÓF 7oª=Š=iÇF)zû-m„z÷vJFû Nºúp•§–š{Ó°0°äÁýNs¸ÖŸiÇT ×úyZ(Úµ³'Ú5zÂŽÕ.Ú7ú-mz‚OÜÒ§ìXëÂÇ„¸,l„yö¸»èÑw¦««òÍAýà›†… {Û Ãhï+¦ñ4. $[aöÕ8¢í¢'ìXå¢ £ÐBÑF wo¶>»Ê´c= Ÿ]ñ´P´ê±ó^Ã'²™®®vÊ÷õóX6‚œÍ©3 TÀýe 2§V4, l…ØY±‹W 3]_âhžжBí+#EFOØq£-£ÐBÑF 'o–>»Ê´cÙ^ñ´P´êÙÛ>Ítuñ_”¥TM»iXØòQÛÆ>:” X}¨´~& ‡…‚ oìY[*àê“;|:HÃÂÀVˆk͇V™6–üæC+žŽ6‚ílÁ ÷>gØñÜw?ó´P´èÉ)‡Ï3íØ‹zéß«öVqÃçôÞ‚hø”ž†…ÿ Œ÷{ß ‰Á~Kë£yòLÂ'°‡\}¾®ÊÓJ­ÔÁ® ®à=ÄL\}j‡]iXرwANÞõ8|ˆËÉV˜}eýp¿s†70ÜñÌÓBÑF goY?ÜF0ÍÞõ>ÜFÀÓBÑF¨7¯>ÞÎtuáß”eT­ÑѰ0°äÝWÖ÷ž§®>PÂ'Û4, l…Ø[ÖºNÞCÆø¡+O E롞;oµ9ÜEiÇjn#ài¡h#Ôãèš-áóÀùãЧãÎiXØ ñƧ‚®.û» µlDÃÂÀF¯_xâSW'H¸u€†…­;[oãÇ­³÷x1~ÜÊÓBÑF¨kEìs-Š7à²@²æÕ®–4ŸfX}”4ŸÒ°P°ämq-GáSÀùã¨G^‡OiXØñîÜ`„›3fWeuîî#¡wfÀ® ®`_…ÙÛß ¸:9Â4, ¬‡¸vŽ}®ñáÃUï£4|´JÃÂÀFˆ«G\ÍÍ™>– ‰èCøyŽŽ6‚=îÎÛ>Ã^FçzÇ•§…¢PO®)|ü·L®§uøôvq­ðz øáΆÅw"<+µ½³†… ÏÞêrøìoñžuÅÏþxZ(Úµ÷ëkñÃìL;Ö¸ði6O E¡^{´“$puÍ·¾Ð°0°âÝWÀŸü-»¯>ù£aa`+ÄÞ~¸Y ÓÕljRjÐ[hXXòñ¥Fðœ2}ÊŽÕ-|¸ŠËÉV˜'´³!pu ÷bа0°bø€2ðk8rª,+kwòU“Ãç|®Þµð9 !ö¾†n¾X]g´³’øê°+ˆkØû»øAj¦ŽðA*O E[¡^Ñ>†TÀÕu(ÜyAÃÂÀFˆ7sj>C½~};@EUAT+´«k…f¸òlœ²¬¬\û­×S ŸèÙ³!Êþ<à Á¡í¼ëyí_Étõ™¬ôö6‚ìýð_üÈ4ÓŽû>4åi¡h#Ô£«ŒénWH\[…âý4, l„˜=KŸnåÑ>ÁCUT#°—RQÐN\½eá< !v~å/~t·9??¹Ãed+ÌÞ]E¸£bó½–5+5½Ÿ‚†…­ »êÃîƒóTÀÕGø¨Ÿ†…Ãç_©€+ðyË ÁêÁõþ,Wülß÷W³’‚éû°+ˆkxð½]>@ÊpuZ„hXØñ˜úéîTÀê½ký±q ¶‚ìª »ÈSWá#}6B<ùʗᳺ}òÃ'u,+kwñî†Ã ™®N %Óû%hXØråÛˆçÍ í•S“(üó, l„عOñÞ¦®®jáÓfVCìëˆt,Ž5-zÊAšòµ©´ë|´y~î<pu»ã…ž‚…‚ ÷ήËp—ÄIW×%#P{$pXزïøá“®-;á“ ¶BìY‚¼íu©`_ŸŠû—‡BÝ€´+ˆkDwòÕ+½Ç¶©€«3#zÐŒÃÂÀFˆéÛô)Wï²WU™iW× 0{à• ¸²ôDè`VÖ®ïËëá®>/¢8, l…ø²SCÞÐNýRowÚ^º |˜/Þ2 [aÞó#Ú x²µs´vqõèöƒ·ž=Å?éÚscQ&´zˆÃÂÀÕ cÇáeˆ««|ô‡Ë7ÂVˆÙÓ®TÀ•å'z:³B°Fp/Ÿr$ιRë]ô's8,lÙUtŸÌpuÿ=™Ãaa`#Ä“g«m¶<ÙÚ£9ÚnI»‚¸Ft}¿­ìnéH\Ñ6B\ù\áyë¢s'\™Ñc9˜‚5‚»½W‡ï_’Jû:3ÿζÖWºhW ׈¯ï õá#Ï®>.¢Gž8, l…ØStvXžlím±¤]A\=ºCç+º{û8RWgF´ó‡…­û2ðs†«ûöð3 A†ÏSÛËOüì“e…`àú>C?™Ëpõ®…OæhXØ ±gûm¯<ÙÚS#Ú_I»‚¸FtgßqŸ·™#puf„ÛOhXØ1|Ô• ¸²¤…æXVVîØyŠ<᾿ÌÖf[¸÷vqèö¾"·É pu®…»"hXرïmñÓ¢ W—ði !†R¿Ÿ›ÚIëqË ÃZáu•)ãG®<1Â,+kwö•ÑÂeö WïZ¸ÌNÃÂÀFˆW¡ÇÝ` ¸vïâ-4, l„xõ|õ#Üú—ÙÚ®'Üû»‚¸FtáÂu*àÊ’.´³¬¬Ü©òîÇé†ËÀ®Þµp˜†…­³EÕTÀ•O¸̲°FxÏ«¹áV©ÌÖ³p¯ì âÑ…ë©©€+ËY¸þ˲B°Fp}°ŒW''ßG!ãÕI6B¼õ`ÓF*ØÚl ÷˜À® ®ݹ÷¥oáZ†«Ã!\@£aa`#ăëÎ)¹þîavÿ‘yfÜ·Ê/×”þÚ*¯ÖwpY Ù ²ï)®RΞæx’e…`àŽŽì8~>ŸÙÊĈÐî ®ݼAƒ:çÞ.\çJ\áºË Á7íø}Xì͵TÀzËQë»v4,lyq•6â…Ï ×¦F¼ðIÃÂÀFˆ}¿ðûŒÙ­?èGe ¡7pY Ù²ç§âí™­=Âý°+ˆ«Gwˉ©€+·-\þdY!X#¸¾¢Tø%¥ìÖçšòݼU-Þã²@²äÉQâˆOg¶6ßÂçÓ°+ˆkDwöÿ‡kt®Ü¶p…Že…`àúÊRáw<²[Ÿk³2‹Õú2. $AÞ=ùwøô4³µù>>…]A\=º+\PL\¹má(Ë ÁÁuÕLâÝñ٭ϵE™Åje—’ {¾m?àËlm¾…Oø`W׈n¥í¾¹Ô“a½­ µÔCÃBÁFáÂI*`{nÄ =,+kוxÇ_BÈn}AÓ>Ö¤Ö‚qY Yòæéb‰Ÿ?m®<~»‚¸FtgÏ8|”‘ÙÚÕ†Ï2`W׊®ëݽpÿkvë“mS¦±ZDÃed=È{çY ÂUÊÌÖ†D¸L »‚¸Ftû‘ìÊK…[»2ÐÔ:. $A¾¼Bòý‹?©`_—;ýÍï)Á®@®ßJ]sª‘aíÆµ&,+ k„wñÔÙÃuàÌÖV´p!vq­è.dçc*Üêj¶vÊ:©VÒpY Y òÚuæÔh|ádk+ZôMÚÈ5âÛ;ktÞÖÇTÈãïÊukâ°0p5Æ•e8Znÿ¸\cY‹ÖÛi÷6¼a׊®'— wkžn}IëïÇÙVÊ?ÉÉFgÉÛ„” ¹:é¢}S8, \±½L„ —«ÏpE˜voÃv讞|9Ü”vºõ)§<Ž6ý9GËÉz#U®)}ÂÕ)mž¢]A\+¾ž”#Ü9uºõ¡,–›º ã²@²do[¬·a&ruXD{|pXØŠ±kÓmñ9Ýú Pfô¦¯´,¬yðöoz;;R!W‡E´‡…®mE´åtëƒB™Ò›ºVà²@²ä=OŸpuPDóiWWïxÙ®gã©pëB™Î›ºNà²@²äÑõÈ‹éŸný‚•Ѷ©£—’ ÏÎ Ä{Lž ¹:÷¢'û8, lÄØYÿWŒÇK$7R5cžŠ6½»öÑŠÓ­Ï>eÈmúX¦ed=ÈùZ\WB*äê<‰6Rà°0°cßB®_~OÌžyáâ1. $Až\µ¡èiÿéÖgž2Ü6}Ó²@²dg³œû=rm’„ýqX؈±³æ."O—žÚs/\Gæi¡h#л+# Lg·:I6eÈmúX¦ed=ȳ7Ÿôö¦B®Î¿ðù4 1v÷ÂûyðîíÃ%{žŠ6={2’øuvë³Or»>–iY Ù²ùÕÙÆŽØ¬ d\G,Ì ÃZ±õe{î3õTÈÕµ-Ü@ÃÂÀFŒ×®µ¤‚Îýâ=Y!âi¡h#Ô¾ó€ðùÞ¥ݾƒá>\HÖƒ¼x›ê¼- ©«30ÜuAÃÂÀFŒïÝ ‰2í˜}á*O E¡}éuø0u½‰jø<•§…¢@¯ÎÌÏÛ1’ ¹: ÃM.4, lÄøú£ñHÝ%´c†«E<-m…úò Ê÷[ý_w}«ã_5øÊâ[ue„Ï×λ» Ÿó´P´>,ÖÁ™QyÛ‰R!W׌p 1½w/\áÊ´c½W¸xZ(ÚµïP#~¼^>GhßÃðy0O Ev­ûÞ%ßìF'˜© ƒ.œó´P´~·Î»Õ×y2ýúÙðïg ¹:O E[¡v>d½íŽ©«¬p‡& 1vNuÑ“ý­wæ(ñ³}žŠ6=:óbo[i*äê-ôÂïKvwí„«&™v¬¢áª O E£cöní•ÀL;Öçp%§…¢ÿ„úrÑ®ãƒx{÷w°16œ'VáVŠmq&Xñf žŠ6½9÷Þ>ÞTÈÕ[è…/yï¼ûÜp%0ÓŽ®ò´P´¾nìÎR¸Éû;XÎùûpŽÇw¸˜iǰ —yZ(Ú µï€0Ü_‘aÇbî°ài¡h#ÐÞW¨¼ÍÓ©«·Ð ¿/yñnÃeÌL;»p“§…¢%Ú¹S wÖÃÙýU¸òšiǰ W^yZ(Úµó,6ÜÎ’aÇbnhái¡h#л¯ÐáîVO…\»…nø¼ä­ë½Ùw´|~ÒŽÅ.Z>€ŠV—èÿdW’~•áKXιºí˜'Ê«R÷AB¸@ÊËÉV˜}OØh×Ð ;n`´oèZ(ÚôäÚÑó«“~©w¿–|NÁ+ü2_¼~z…ÃÂÀÕ sï_”1®.s^ø}É‹·’-öŸ´cÈE‹ýÐBÑÆ3з ¿œó%l çÕYI × OÚñD‰Ö  …¢­PûÊѾ²vÜÃhgÙ´P´èÝ;½£'n']}ªŒÊãJËqXXrï}'3\=iÇŒVF …¢POpÙ<}ÊŽ‰­õó²@²æÙ[¼Œ¸tu*_UTÛpXØ ²ï$=Ú÷uÂŽõ(Úùõ-mÚ G«¢Yv¬sÑ¢(/ $aÞ½Ñ2ÿI;Ö£h™ÿZ(ZõÐyËÑÓ¶“®®v³²Œªûg6‚ììXˆ¶2ž°cAŠ~ÖóZ(ÚôèM¼ÃuÑL;V»p]”§…¢POÞy-ôgº¾&Å+ý<-m„zö¦Þáã¶LWW¼EYJÕí Av¶,D{Oر&E?¤ú-múß­'R÷—KfŽShXØ ±·Œ.‹fÚ±ì‡Ë¢<-­‡š.™§Øñ0 —ùiXØqï-!…OÚÎÏø×Ö"åãÙú9 [Aö•¢}¢'ìX‹¢_~€Š6;r©3‰TÀÕ‡Iø…†…ÏÞU9|Š’iÇ*>Eái¡h#ÔËWqSA;îb¸öÌÓBÑF¨Í ]°Mô„ë÷0ü%æh¡h#ÐÞLüh0ÓÕÅ_ùü¾~2HÃÂÀFwöŒ-põ¡>¤aa`=ÄSçMz§U™v˦aa`#ÄÎ³ÛøQÉììxŸ”à²@²fo—~üìoöö»ÇÏþxZ(ºjìì¡ tõQ>-¡á2Ȱbïá@¸i ÓÕG‰’ë-4, ¬y&ô˜2pu‚„ViXر÷ˆø)Éâ}™ ~JÂÓBÑF¨Ýååð±ßâ®Õ†ÏýxZ(Ú µ¯ì>+Y&_1|VBÃÂÀFˆ/Æ»×[u»’ë­°+ˆkxe(SW'GøH•†…Ãg ©€_OÕ‘;aY!X=¸Þn¢ðŸwã>á£aaàJˆ±S†twçôI>aY!X#´79÷dºúÀPr]½€†… =z™ ¸65âG§4, l„˜=SHŸnå‘>AUT#°î·FÂçx«ûý‹ð9O EWC(”®ÎŽð —An„­{÷(á€LWy%³ÕÿiXØòæ*gºSWáãR6B¼ûžwá“ W"ás–‚Õƒ»uÎfü¤4Óõõ'~TÊÓBÑF¨‡ÙõÈ Ÿ|d¸:AÂ'4, l„xôVŸÃçÑ™®.ôJ®«ŸFÓ°0°döÈ1põ>$¥aa`#ÄðÉA*àÊC$|ÒÁ²B°Fp½O¼ðéèæ}t„GqY ÙóêëkŸud¸:9Âg4, l„ØûšBøðyóµý+¹®~ò »‚¸V€}ÅLïùb*àêƒ#| JÃÂÀzˆ}3#|Þ±;áÓ•ïQ#¨£«­6^„Ïpí~Å‹ð4, l„ØÝ)> Ý}çJÚ¥†Ò°0°d_uÍ{ú• ¸:AÂçu4, l„Øù&I¸ŸáÊÊ.ó¬¬ÜÍUò‰W‡3\]ÕÂÕa¶Bìy€†»}2ûúÎÈ¿bÕ¸FtwoA-|"šéêÚ®d[úy( [Af½RW—Ÿð1 «!Þ»Rõ§\´ö~•å'Zy‡Y!X#¸¾x† Â'\}fD Â8, l„øòy±ï»hRÁ֞ўÚÄ5¢ëì{Ÿî®_“é»NgZºL»‚¸F€}}ïî3®TÀÕ¥'z*‡ÃÂÀVˆÙâu*àÊÒ-¶Ã¬¬\ß÷9Ãuà®>/¢u`¶BìÙšD{|N¶öĈ6ùЮ ®ÝÞÛú>ô<éê3C©¨gž8, lÙWõn¥O·ºøDãhW× /{D Ø^zÂG0+kwòU*£•ö®Þµh¥‡…­{¶&Ñ–ž“­=1¢==´+ˆkD×Ùˆí=ÛJ\ÑÓ8¶Bì*¢…O3N¸²¤EÏ2`VÖ®ï3á"ð WïZ´ŒÃÂÀzˆ‡ÎSD‹¶šœlmA‹v›Ð® ®]g[°÷Ø%pufDŠpXØ 1[¶N\YÒÂev–‚5‚;{ Ñ6ˆ“­Í¶hí âÑ]7×”W€3\á 0 !öôÀúÏÒ§[¹s g°+ˆk…—­¨¦®,gá 0Ë ÁêÁ‡Í±ø†Oç3[[ÌÂÇó°+ˆkD×ù!Špe2ÃÕ9.MÒ°0°bW§ª¿X ¸ºœ…Ëë4, l…ØW~—(3\YÒÂJ–‚5‚»õàql*ØÚ‚>=†]A\+º¾êz¸89:»jÃÅI6B W£RWæ[¸zƲB°zp§ÑÑ?xËle¶ÅOÞ`W׊®/7WÎ2\áÊ !^=w.üšÀéþ#ó̸m«è»«|m«Pkg¸,l™­˜¤®,?á Ë ÁÁÝÿ¢_»ëý³§ýÃÿÃÿx͹ÿw œŽ>"òÿ{!\ß|Ýáš8ì â“zq½0nËnu‚ô2õÔŒ—’ {~Î3^RÌlmH„kа+ˆ«Gw÷¼oo:Øú`è•a¦¦\4, lØur®xí¾“¨pÉ vqè.+Û*” yüÍ4¨î&6b¼z¶®î~–·ë8Ðh¨õìž‚†bì â*wmú_× Î$ÜÛÁ‘ ¹:ÎbM'ÀÂÀVŒ=û?w›ÁÛuüøO´Êñfk#-Væà]A\ã®y›@½ë©«ã,Ö ð, lÄØuã=üýeûÁù¸÷žy¦B®"vLû, ¬ßº~t=î½so×Ûuâ=J…\DìíXظw›ëä=4ùuoG€÷¬ r5±ã`a`ýÞ ®b’» ý뎯0ã®ã¦B®F"Vz~ÖïÝØ{>ìæ®[¾]çÆ5–ݾáîÒqŠä·ÐBÑÆ œw¶.š ¹v ƒ¥Ü`a`#Æ««Öè­Œ^\ß‚Nt3ìnáT—§…¢õ8õpñ5ruÈÅÊÅÀÂÀFŒ}%oýõâú²…pΛaÇp g½<-mÜÀÕ±ð— ß®3eg¾Óæ}¨†s_žŠÖoà<ìðþ%tõ÷·v]<-m„ztìü…ËëÛ„+ óè}¶†k <-mÜÀm€·1© £.¼ùâi¡h+Ô¾x¸3oÞGa¸ÃÓBÑz —q†w© £#¼Wâi¡h#Ô¾L3^™Ê°ã†kS<-mzóÊáíã²ywáí#O Eë¡^‰a-$e¸~ã¥$žŠ6=Ò¹© {ý¢Ûúˆ¡…£•>âöäÝè…÷Ô™vLÅðžš§…¢q={·áü3Ó¯2?…Öò´P´êË‘›µV‡ë™v¬záŠ&O EÞ½{êpú’iÇt §/<-­‡zë¼;›pJžiÇD §ä<-m„zñ>™b¦ÎyZ(Ú µ7Ý犙vÜÅp®ÈÓBÑz¨÷Þ»4…sÅL;ÆG8Wäi¡h#ÔtÚ•>åú=ŒçЏ,l„yþó³(T¦˜éëéT¦ÈÓÂÑz¦¸/ÞýG8SÌ´c"†3EžŠ6Ƶ·Ó#žÀdÚ1à O E¡Þ½71œ”gz¨ü|J¯¼E¢§ä4, ¬ù¿Øy÷ÓÑ,ñ¤÷/š%>@ E¡ž½r4K<éêèP^þPsD6‚¼;—£pÒrÒŽûMZ …¢õP¿öÞhR› º::”bÔD‡… OΜ3œ¯œtýþ…–h¡h#Ô³w¿MÂOº::”—„Ô‡… ÔP:0/<éîµ5³B V3ÂÞ›ÖG“”Þ¹… §(8, ¬äÁ+‡“î“®N>å½45åÆaa`#È#›O¥¾Ö§ ‡…/Þm\8Ìtõî)ïèéù AÞG4J\á̆…õ£scÏü2]½{ÊktzÞGÃÂÀF_ƒÅò§TÀÕQÎøhXر3 ‰'|Îg©òž›žíÁ® ®`6gJ\á,†…õû~’;¾k›®Å½ŽÛ´Á® ®^gM/žßM¾–:%j~GÃÂÀFgß–Í›+¥®ÎŽpvGÃÂÀFˆwß:ÞO»oâ…wÅ4, ¬‡xî|6o¦” ¸zï¹ !¾T¤‰f*àê˜ï‰iXØññÇXž” ¸zï™ ë!öÍðžxq‡ðŽ˜e…`ÐèñAút§îx· l>ð a¡`ýÀc{4 M\ᬙ†…a||NË’R¿&ˆúéÝxRDzB°FpgßV8œmd¸z×ÂÙ !ÞØ 4píÞÅsf6B §G©€+“.œÎ±¬¬ܵóåáT.ÃÕ»NåhXØ1œ¥®Œˆp"DzB°Fpç•ÝV¦B‡ß-öÇŸîÐ_Ü—xà^ÖÈ5B¼úêùá<9ÃÕ‰ΓiXXñÖùvÁáLysüVlC¦Ì²B°Fpÿ~NƒÉâ2\½ká,ކ…ÃÛöTÀ•N3XVÖîæ*£ÅSŒ ×îZ<Å aaàjˆ©gòŸß_mó‚eÿD·Õ£»Ã;öTÀ•ùÎ0XVÖî4‚©T°•/ºÆëg°+ˆkDÞI¦®Ü¶ðΗe…`àî X(I[ áºì âªÑºã矰Md*àÊm‹nzaVÖîä™ÑŠÎÉÖ†B´¤C»‚¸Ftáýc*`û¶…÷»0+«÷õ&8–»§‚­ …h©vqèΞgZ4>ÙÚÕFaÚÄÕ£;tže7šGœlíj£‰í âÑÝ<å·èV÷dkWÝëÒ® ®Ý LÚSÁvZu¨µÈ€ÃBÁzˆÇËÿ¿ßB¦‚­ ˆðŽvqè^îÛ÷»œT°•«oÊ`WWî4xXwaäíúV3oÖzqwtyH|ýγ Ñ°P°>(fßLöæmo×5†Ý›ê_7·±QÛÉ·ËÞ¹ôé¯<ýKe©¡»¹ú@[v×@óîTÝuYÉ=Ú¯{ü:õä|³«')t?3Nwœ÷©€/WJûË0|ÊãKù¦]›—“Õ†íqÍ?y]t*ä÷îŠ3 ÿ‰òo,r›Æ0w¿ËqaOçLym+¦@ G«+Þ4t;>R!÷úU7Ži^LÖÇôXý哿Q=VC¤yTó´p´>ª§qfGH*dãS­£—“õQ½ =<>RA_÷¼Ô¨æiáh}T/ÓŸyhT/—& »&øÖ1 »¹úx^7zÿ˜ ÚZ“w½ÐÂÑúxÞ.ý;ÀèH…ûJâîf`ëh†]\u4Ï]};Ó8šOÚZ‹Gó´p´:šçáï‹úT°3ÝýžœP¡¦a¡`=ÌÓ°’“0îþ»}Ø~Õù¢î¯ÊÝl,¬*ˆª/óå}f[” úú½÷Ìåæ‹WLÃBÁF˜—t©€_Õç¥vnÀeÁdµ¨6ÏGÙd˜Fu/7dûu.ñï¯×=ÿ7ýߨ[Óš§…£õ‘wdÜÌb”>Ñá¾-¥uÝ$Q!P#¨ûÊÎTÈÿÐ»Ž‰_w»¸/ñÀõಮ@®â%oÛÀé– ÚÚ"7.ÐÂÑz°ûü#HÈÜK…Úií í äêáê¥ÉÖ±<Ôë|­c™§…£õ`óHŽŽT¸jCIëh†]\=ÀS>JRáŽÊ"ÔøäƒYaX#ºùƒùTr“ ¸×æEk:†ÃBÁFëUõÖyº”©ïºIš—c ÖÃ<|âáë¥-îQ´˜ÿö\µ.Ű+«x©üOób‘aõmºæÅ‚†…‚õ ¯øüHŸª¾Ki}ÜÁ®@®Þ ©€ßë3‚YVÖïåÀxl¤>¾¢FVÚxY0YóÎλôéêÐÖuvrO3ùpN…û®j‡Kû‡Û¿ÜÞ0ë äª^û¿}=È>á|ç¸Ô‡…‚õ —6ÿôH{ù¤%ò°£]\=¾cùiO&¾cùLåtìîIËëýy  ÖC<­ ¹°¥Â}¡™…˜vrõÏ<(R!W›ìÃØ†…‚õ(¯ÃN‹T¸× 4qY0Yó6]Vdòï”ÇþþYzºÿþ÷¿îKÖ§¼çý÷øï?0é+*. &ë+ê<,ìc ò¨mÈšŸ\4,lDyÞØg@*äëûâ·•÷ñZy?ÌÝzjÁ®@®>¯óWH†YßÌ™~ÿýõ¢—ÿ²¸©3μ …£õÇʲôf:vo¤µÍ9À¶€¶>×ü=ÞK¶rÊ’ïåúï^Z§®¼,˜¬¿õøŒU«I…«|x³µ´³Â°zt/f»ô)[S¤u‡„Ë‚Éú³{[wt»‘ ØÈ±š·H<-­‡z¯ÞÅæÖGëÃíml~^ñ´p´¾€ìºÃK…{½‹ÈŽvrÕïÝ‘¶Ë]*hk`4®ÑÐÂÑêÒ±wÕorµ®Ó'm×éháh=Øù·Àýh*hkÒ4n¢ …£õe¤ªßÈh}*žökÖÜV%Zм,˜l„z²[ö‰§«¶Q7>iW ×pÞÐ09V*ØN½o9! ë!þþt+µë.?‡zÛ®Þºç a¡`ý8vôéG*èê[†ãvß(©Øà°P°>šÇ¾zàÛº­Ët9³§¶u<-mŒiz”>ekMjÝÔá²`²1ªÿ¼al3.¿–󷽺uA¢B FXá§u*`ýí‹Öý ëAžŽ·ÀðTÐÖÔx„÷-­{«¹_ë’œi=j]‘iX(Øóåã2_/r©P_Mì;¶£ª ªؽò“Öy¾œã¾>CE­È4,¬yYþ|ŠƒZ‘3m­?­+2O GëÁ^»Ë’Éu†/oÇQÙ5. &ë¹ÈzùíR¤~˜ ùuê5Þ~°¹èÉÓÂÑú˜ÞŽ·–¹’ ùò¶ÜçšwºûÅ}‰®vr¯Õªµ®Ñ™ÖgJë MÃBÁz˜÷£‰©pµºuë0fYaX%ºóÿº®ïѽQ*àK§˜òâ¿ÿÎUî_ò¬Dø Y0Ùˆóúþ0î×[üT¨ÕWçþ¶ù¾ªÌ»¹J›fnáA Ä6’®@®>Îú½²Çjª-¼á×feº-5ž“õ8ÇR»¤¾f~ÀIѰP°ä>sI}ý¢Û·;§òƒâãÿ½xu4Ó°P°æñø°´eIÛ©¥û¦-Ö°P°â©ÿsÇ,®~Í/¼\аP°äùòU "¹I|‚™ÞâfÁDï;ÖïÊ>7Ò'<½¢ŸëYf§é¾ÀÃVW`–†Õûõ°êŸ úxƒ÷æš3<Íø%f] 1 [aþóB³“Èp.k®ÜN‚†…‚õ oÇ‹ ÔÜK…;+icëJÁ²Â°FtÑmOúd¯[lhŸFÃBÁzˆ÷c‹B=›Sáz.9¸™ÀeÁd#ÌËÀž«¤BžÔØzDÃBÁj”û®”~¿O{9ïG²ÚÈ5â»lì— Ùñ¡ºàšÌË‚Éz ûãç§¹c›TÈS¯lX²;-÷%¸¶ZЮ@®âã³øÜc$²g\Ä}¼,˜lz¼4»úTÀú§ÅOyZ?åù%ë>^L6â\qY0YôÔ½7ŠV~:ÙN]è P8,l„ø’Myp*`kÚ˜»?@ G¡>~˜{p§Öß nÝjаP°äž‚©€õ‡ÖEƒ†…‚ ÕRb벑iëÙÚºlð´p´lx¦~ÝÅ›öýÖEƒe…aðnîíKpלåê'§íâ¾[÷Õ=3ì äê!^‡Ê£5û˰µµæ<-m„úòùd›Ÿ ¹>:öÛÑ¡&&°+k„xA{%Ò§«å:­½0+ «Gwë*}­û· ç™&}4,ly†7BéSÎÕð‘ܽá²`²èüÙ(ð)’ Úº‰­Ï>žŽ6‚}¼è mÞ¤DÍÛ\LV¿19¬ëñò¿_»W*£kžGޏæ{¸ý÷€'ã«ÐÂÑÆÐ;¾¯È=BS!¿·lÔSŸ†…‚õ(o—_Ö!¶ƒ©€õ•£uKÃBÁFV,5O¬?Q[‹ 4,lù˜#Ø®%°^¥hÝfѰP°ä±+ ãËÅ çïæÑÚ¸\à°P°äË×zˆÉ— XË A†'_*à㉊-0+ «îgÇ×ùü„u¹gÙ²}Tm¶lïÿv˃5£yZ8ZpÃå[“_W,R¡V¿„8Ï÷ÝË=jA†]\}À¹áåžÔ@8?5étrqv´”0õ…T¨õË]o/wVÃ˺¹Æ8óÂÛ-¼¨8¾6I¹¹Æ8ƒŸù©€µGRë…e…aõq6æ»Îú£(Ðd>¦rþ É¼ÿ+­ ÿ[ôHð´p´>àÆãÍÀ:V*è뎪¾=@ GÁÞ/¯<EÔTÈ—·£”¯ß.Ý'=tÞÌþùáÂGháhå§ _öõ-žïSÔTÀ—v|å+jKÿ)÷/ÙÈFpY0YÓÓTÕCåØXR~€Ž6B½[~oέ3{|âë¦úÔš\î@®ߥûÓuL= 3mýòdë³§…£`_~í›™ƒ© ­"ZWžŽ6‚½î_ì§õ@ì1oZZ³ ØÈÕ㻎Î|ÐWØI…;¨Ó¯±»¹F€Ÿ¦ F©pëuÏ´JÌÿO¯×k2ÿûëÿ;~îcøoäý÷urð´p´qÑ’Túdë÷/XAó²Áúäw¬ܬs¥Â­_°Ïý½Þ­CøT¸õž.ãE¾¼aPFøç1Y0Y/wùééž.+×ïØ/ð¦3t§^sëF™†…‚ÿÜÀË%¯ì L6.úH©5Y W_=·µúuk*²]ÞªÏ]öT*ÂÓÂÑÆèØ[Äà‘Ì—®>:öiaWþTÈ“zÉ­+ 6¢[cÉûézÆG,çeÁd=̽³KâŸVÁ?OÁBÁFˆ· îÒHmMÀÆÞ’háh#Ø»÷‡Ý‚{¤SvüHp“ÄË‚Éz ‡úYZã®c¨J5î:pY0ÙôRœ£AE¯> ¢dÕ‹—“8o^Ö vw™¶*—­»;žŽÖƒ=vîÇmp—eÏL îïpY0Ùtþ9ÄžêïJ…¬7a5¶¤á°P°åÙ½ën¤³ìÁ4. &>~·l M­ŽÖnV^LV{Y§Ñ[­ V 'Gé®±ý-­ꩯ–QZÄL[ÏðÖ‘§…£`îgm0AÌrœ`Ý.N ". &ßç6@+îÛÍ©UŸOì™âNúç9Z8Ú¸…«ûAÌñ³ìwÁ—“@ïsmÁkÍ=3ý·ŸoÍ4oîV0ÂeÁd=ÐKW=jݧ/‹Ú§ó´p´ì~‡w¼© ;µÈÛºK§a¡`#ÌÃrœ—aÍæ© L«µEþZ8ÚöoLӧ왈ÑÝ4. &ë^‡éò Z'SA_'Ìíg•—ùæ‹WÇ4 ëaÞ®ü'RåTÈÕß”Z®›ÿ÷YÔävr|ìŸxz§‚>îžùs á=O GÁžÞY"ËJüú’õpûþNkbˆË‚ÉFœç?¿ODm:2ml›7<-m{ugžÁºR–ë‹Þz»è©U%ØÈ5B¼¹ó èÆn»4JT–»èÎŽ§…£õ`ïþ*z°®”åúø¸ÿÚ ZU‚]\õµÂiÏÃÓ{¯ç“~%œsÿ»ö/ÿ×ÏV·O Gƒîøí_¬M"°•¶¶vð´p´jwR,gîÎ_^»Ûù¢3aW W ñÜMÛ#‘ Ù­OØÚjwÇœßÜ7Ž© ;­C§u³‹ÃBÁƨ^/÷¬Ÿðq¸~› 5ŒyY0Ys¿UçJãÓð¤­tãÓðZ8Úvþàúë>’é§ñ¢•M 6‚ÌnéSá¾J¦–€ ª ªZv3Ÿ ·v¹ÁÔUQõЮý›%AR¿JKÓÝÉvsï . &[qþóS\ÈV8»µaÜ£ª ªÚ©‹®©`;õIÑZ$¦a¡`#Äse‡ÖšhdXŸ­™ A^*Ùrk®‘aý’[s  6‚ÌîÝSáVÖ¶h¦ª‚¨Vh/VÈÑA*è—z›Àdx].ðaNÖoœâ°P°æ­s;¢ÉÜöñåLce‹&s4,l¹¹ô(ê«Îºc©ª ¢½|$áëä(jíbƒ‰ª ¢Z¥ß¼J}]q ÷Å …£õ`ïƒgS¹­‹`&G¢B FPá¼(ðõh•ÉähX(ØòÇÇõ¿Ï‹RwJ£VkDz°FxáŒ(p÷[§c28–†5»z¶eÑÜ-«•õ,š»¡ª ªØ¥ƒ·è©€k-˜RÀ¬0¬ÞýÏÙ)´9;iëíÓÆÍÙ´p´ìþ¸‰Ôj©pµ:sã u0+ kD÷] †Ú½Ò'=ŒZÉ$Ãëz³ùòõðP°æìõJ…;*â±5 f…aè_ÃÊ~©€õâ\c¡‡…‚ OÞ›Fò¹Î…æ›]Pc>‡ÃBÁVß¿Z‚†§Bž¦ûMüé®ÛÅ}‰nurõÝŸîjó–éw>CmÝhX(ØóX9×h]“3¬ç6­k2 [AvŸc秺kƒâ7-Ý/îû‹N«`ÔÈU¿¬æ†·îÞÔ@?ÄM¹¹Æ8›ßËÄ÷e»T°¯%~¼)5ViW ׈ïÎL¥O´>úÛÁ°«ÁEYaXc;ÝáÖíõ§ÅñûÁ,¬²éúƒ\I0³ÕI­ ®@®ßã[&PÒœ ¶S7R­I> !ž\] ±“ÚS­Ï¸ñ~*«Ï!ÖWK7<Ý_±>›>K 6ÆÚ6’›ˆT¸—o`(&Úæ‹|ù0‘Ö9ÄË‚ÉÆˆsÓË=­õû,Sþ& &£n÷dtÁ#ÑS­O’ûop÷úƒa`c¼yáûÏ÷êp›;gòå„‚õ±6_vB7–Öƒµùï¯1Gk4,l„®)¥î”–ŒÖË ÃZá]ÈáíÎïAÔ[S¿–÷þö½Ö1. &÷lWJŸêq†r3囫`VÖŠíD̤Âï´æs$–†Õ£» ìV;}Âïg2•À®@®a¶<‘ X?Èn-¨Ð°P°äÍ‘R!×F4­[Ö……‚õ(¯ÝH>:RáNï¨ò»™Û~‘/¿›©V®pY0YOíÜôÞÝÓê~pí6{-jÍ•2¬ÏìÖ\‰†…‚ÿܾ÷%ç/®`·O0Ù˜ÚÇ«\3b*ä^sÍý“¸,˜¬z*íg­Û ¿®ùõºµ a¡`#ÈG·ì§BžÕ‡k듊†…‚(ç—¶°….rõšÃÀíxˆjÝI…;¨srr1±ÎdKP*ÜêG[˜¶}CGšP°âýï¼™MÜþñ%ìÛÄѰP°¾ßB K÷ä²Z8äø²ÿýõïé´tÿ~8h¶*D<-m »Áy@Ý»¦RáÖg¶Ïý »¾C × 0Ûâ• ¸~ÅNø}Å—÷ x*dý¼©9iÀeÁdchÌ×uîû7@Ru³,ïç¼¾dã”—“8¯Î#jg£S*àúŒ¶f¹aßê)k„øøÙJ¬*pýŠðyÅk7ørooH*àú»Yü°sÁVGÅÚδÁÙt’ ¸~ÅNø}ÅÞ*{ðàì„»ËC:;{€ŽV ªk·9w\ÁöÓoac8ÍYÜÃ/²>ìŸ×8,¬G¹wîăŜӵÆr[9‡—“­0¯¾•.x´zž5#x¸ú½Ã´p´¾Ò ö0ÁÆàÍ֧ƶÀ“=NšoJ\}´+kÄ÷x‘KWS!kw®5Á¦]\#ÄÞT§ •¬O×±$‹Ö¼,˜l…yãRÁ^¯iä[û#ŸÄ`¡`ãñ±± ¥@°>(oB+*Ÿ®gÇÊʼ,˜¬Œar&:Áw:¾…áMÍ‚ÅðöDÙIÿÝ|Å`?ì ä®oiÎ{­OgÚ3I¢õižŒ6b½¸7ê}ìÈ%Ëžè“““õ@¯õÖIGk§™öÜÃhí”§£X{³‹pñtý³ö)_®Ù½3ˆžbdÚ3ª£§<-­§.k½£«µNý=m ëá²§¾'– øòã´å5gy/äþ%ï´àrèvÙˆóøçÕ!ªtšéN«÷6NiX(ØóôN÷RᾪVÇ/ZC/hѰP°ãz%¥µ\šik¥k-—ò´p´ì¥Zíh-˜fÚñX L×Å\DÏ.2íy„GÏ.xZ0ÚØxl|…£õ}óéUªŒ÷ñ)S;ØÑ2O F±^ècýTÐ/õöû‡Þ¯uÞ˯¥¨¥ 6¼ºÓ­h)ÓžÁ­1ñ´`´ëÝýM¸ô±îµ:ZúàiÁh#Ö—/ 2E© ë“q½ŸŒz¤aX(Ø ³÷FO™³üBo¯9»ûýoœªg̰+k„¸~ßZÅÛ?NÅÑHžŽ6‚]ß=¶æ‰™Î—½“y"O G«ÁÞºãgJ<Ë:©=åúdÜo'£vNK»¹Fˆ{8ÏJŸ²czåŸÇdÁd#Ðóô[ºšnnà’Ÿ‚ÇfcÉ7°ú«Óúßê`yɇcÇnž`²>±{Mð<ò¤ëo­žFâ°@°>¯ûéxzéµÕ*bìÏ3¬0¬Ü|,ŠuÕ¥BµÆ·ÖF@ 6¢¼ Åkî^ôC(©p‡ß+F¾Û³Â°Ftw´¤œ ·>é‚%pØÈÕ< ºËL¬Y¿u_LÃBÁFÇ—Ì}"²þš{ã×,pX(Xý–Å6åŠTñM…[›{á 5ì äÃx¾ö³}ÿŽ`*àiÒ ÔYºýS_òh cZLÖ²3=¦w³ou‹&w,+ «â­ý'ç= ²?ϰ‚°FlÿýßrR*\}44&t°+kxfORׇDô܃†‚­¿ 9DH…<οÛÀÏÇçáÿ¦í¯û\_$XW ×q^…™$4l§ ‰æ¤™†…‚ï®5>œ8~šÄXÚ‚‰3ì äê^:g¶á<K\_Ø¢‡v4,lÄNõSw÷ [si‚e…aðN~I˜³[›sá„vr;³G‹éÓ­ß·èY(ì ãêñ]}«C4Q^=³-š&“¨¨ÖK'0‘v¦®O´hšLÃÁFŒ{ö¬6pýæEO—iX ؈ññ£ÝØib*àë¶:åiáh#ÔãË~ f⣩€ÇU+³fzèû ý2³¯–&xZ8ZoöÛƒb«Â:î0-m ¾ÏH]ÆK…ÛÝŸì·QUÕíì*#Ä ŽëìÊËãG6b|m´ªK©€õo៧`¡`#Èl})nmÞ«a¨*ˆª‡öò%äUæô¿ÌÛòœã…=Ä®®,+ k„÷ã=`âõåTÐ/õö¢÷|ÑÓ>̯.4,l…ÙY ‹Ös·ÎY]ŠÖsiX ؈1[ÀK…k/lár#ª ¢¡uö!ü.{¦ëKÛ|¿´é†…‚0_>gN”HS×§F´¦KÃÁFŒó&ëÙJ…¨ØzJÁÓÂÑF°§‰+½¦B}u³Ý|n?¦þ<¢ ¢Z=ªØgDR!÷úühýô . &†«Û©€kèh5žeaè®G}¢W©–,9ôrl·õ~¥BV÷ñÍß)£a¡`#Ê9¿«G¹¿§ÕJÅ^É–š?¶´ý-(4Ñdø(ÛÜüXKó ãb_=OçàMVkO¼à ª ¢ªÝ;¸Pœ ¸¶  Û0+kDwx³ß7ý¦‚=^C¹¹ÜÆeÚÈU¿‹¸w—Ö"bQ 6†„kw;äȨ½6DÏ8PTÔêÇoP«X°ô~µÛ,¼Ã¬ ¬Ýý²Š!ÕÕTÐVFßX~€ŽV‹Â{ý•O}© ö­Ÿlu ¶®Ó®@®>˜ûÎQç —ÜO¶¶°Kî0+kÄ.`§®Ý´`ÁfaèÎà rðI_7¨ü-mÛ‘p†Ki'[›xÁRÌ ÂZ±EÓŒ·{ù*¤j› Ùú=×¶J3/ &ë7ðò²È÷9xúTkƒ-Z0@U!T#®#º™z»‹kÏMŽ2[‹B49bYAXýž½ëAÝñd¶vµÑË Â±=¾- ×§‚½æ³H [!žà,9ô±=û÷Èçr{žŽÖsûü%TîaŸ ù½ AÛØÈÕÇ󴸎Ibm§ºk—{®pýõ‰¿ÿï÷{ß³_V_1õÃëý/j(Žý* ëcíøÊ#sÎwAÙgH*`ýœºõ©GÃBÁÆ;Þ8Æz²S_ïÔGþ-­?óæÕµíö#ýªKŸ@z‰,p¯M¿Ö×ÞpX(XŸ%ËàÚÕ;‹ÏoÖ{¶ÚÅ©NØÆ­­TÐÂÑÆ<>¨MmßRá¾FØwI»¹F€§üÎ)ôÆp*`}V7¾áŒÃBÁF7°¸}Qg´w$°gB;éŸçháhãîÎà/s¦®¹àë§8,¬y= à'‹RAëS¥õ;K¼,˜\4–ð”q>jOKÇ¥h4\F¹6‚|œ…€ß›J]^ùrÑ®dÇyÚôf§µ²67'¬™6ê¿Í +O GÿIXß—½®ìèL6fËæJÕœgf¿ì6 9kútõ>¡Ö$vrõû¶U+/ÍÙp¦­“Öl˜§…£`»gçÙçE|;ºh ˜a}Ôµ¦€4,lܺýOUœJ×2íqÑt§…£«Áî/}uÈm¿ð¬Ö£Î£˜íSž_òªï5p¹ t»¬—Æ·Ú/·¦Å®ÏÃhZLÃBÁú`ÞÇ÷†iHýRoËk¾èýæ‹W·14,l„y­õ‘4§(™Îw=Sãiáh}áØ"Ö5 xP3” üó,¬ èåÿýë ÚŽ ¸~ÅNø}Åù34Tö“ øØ|AÉÎ ÃÞ5§î~ ]À.g…a•Wyÿ¹sN `c@,s¹MFÞÇyÓ/õö9}ÀÃÐ]á—ùâõ9ÃBÁV˜«¯=5•HÞt~F¯X‰äZ8Ú6¼ÁO\[6B Î ÃêáÍoµbç0©€/â»ÿaÒaè?åñ%+. &qîÝUÄP¹èM{f_¨\ô-­{ð>`CÙÈ_S>ò-mDúò Е wùÍu>¥¬ÃEý粺r ª ªÚñòabû™ Ø3BóЂÑF¤½§ }¨Må-[ÝÖ¨òŒ- ­‡{º¾OÀզ˫yw¯ª¶`W ׈ïè}°F³“³µtU2ªìãÅ=È—®eØȵBܳ©=3ÏkÿÖäñ¶¸ß\ÔxÀж†ôõAuÛ+ÔåÐë8oZý˜Ë Û>̯nhX(Øó8“Ûæ·›Š•:üI\_D£ÇU4,lܼÅ]U þ¶ë»öäþ°´€e\¦!0êû©…4/¢ª ªØóȱm*d½õ¦u/NÃBÁV”´ñ!p§Ÿ@47kð´p´j¸V’ ¸Sº![k;,+ k„w}m=±·ÀRëëÖ÷ÖhX(Øò^‘[S÷ ë“£5u§a¡`5È}7Íè¶3pý’ƒe 6‚|y턨7¤¶!%’háhµPÒwïV&æ4}Ê/ôvÉÏî°_ÜË篴s[ÚÆ5óåKy_oìS¡vÚ:Ô˜†Ð®@®Þ~½#8xdtÒÕ!1v÷CM;0Âa`+ÊÕ%¨19iëC>ÉÈ´p´lïZ°Åã„»ØÚäñ-m„zíí\cbrÂúæ¨11Áa¡`#Èð6?p§ô¼4¦%0+ k…×.µö*°gâ9éŸçháh=ÔœK¥®hîDz°Fx×ÚJßœùeÚz^·f~<-­g~»ÓO…«ÿXAcf2Þ£\\}4SÖhSÁïq%eÚÈ5â[}o¥uŸ¼ûÄeÁd#Ðûå-¤1+ôK½M 2<îøòƒZú ÃBÁz˜§ë§~>ðTÐêçÝNxê.ða¾xuÑ a¡`#ÌÓîÍÁ†½“®Ž©¿ê²AÃBÁF˜é­x*d¥¢Üž<À®@®ây°—üæ-F†»ß¤’Ùa°¬0¬ÞÊÎ¥}‘åÚˆï.`W ×ñî©JzE~ÙeîÁê›]¬¯j4Ÿçeöè¹ÀA÷ç!W W kß“ M©p§þ÷Æ•ü,OÃE¾üÖ³z4Ë‚Ézžî§Ç{zÒñ³²`²1ê_»[°-ít—<Ý_²z˜ŒË‚ÉÆ¨sÓó=­ž˜­¹# ““õQ·Íï×옦–TÐê{2'<-øò$êjGÃBÁz˜÷a·œ©`¹›­@ëvr­ø.äY@*Üáwç ]À®@®àÉ[ vž¤BµKn>¼ a¡`#ÊóÈ0¤B®_sôLd?Þ…Ç`¡`5Êc‡ÖWÒ'ûÚ¿Ÿ¡`êA´+kÄw¿äOß'|¿îõÛÒ@Y!n5Ñ: ë÷®?Š„\ÇL*dýë³M>8,lDy#Ÿþé“í.‘Ìv‡…‚­Ã]T©ëàÿ^òÙÅH¦ÖO¨O7qX(Xý5ëqÈçÓÔÝ Ö‡ò°øŽz½§n©€«QŽžâ°P°äˬRÞT¸ã¬­C§<­ùò~º>’iY0Y-¿èížÖÇÜñº0' &£Î›ä³ê6ž¬­yõ´p´ê³ÅŽjI¬®I­M-8,lyÐj@*`ÏÈV0 …£Poð¦<²õùÒÆ<—“õ@O}åK„­Ûò ë­Ûr 6‚¼T^nlÝãf¸zÉá=. ëAž»?¿äAí72m½Òߺßàiáh#ؽª4ï72¬·Ûµî7hX(Øò?ºÓ§ìÑý. &ë^àGJ*àîþd¼ùȲ°Þð£2¾GƒÇBnæp¹Œr»lÚ[¥‹odØZŠZ8xZ8Ú õÌ6%¦BžÕ›ØØG‰ÃBÁzAmó§;zu嘲ýZ•þýõ*]öÿþ=]c‚ã´p´1íþL…\¿‹Nø}ÉóÊ–rS!«ë]sõ™†…‚q4ŒsâTÈõkv—Kf“ÌTÀ•L8)fYaXcDlö}k>#ΰç¹üˆÇ´p´ê͹*;›ÅS!×Wå`»¾Eð5lD9ÿÄs=ÊÎôTÈõkv—K>>×@us§ÖKŠýç8,¬w=¬vÖÓ|4ú¥«ä®E¥~­qW;cYaX#¼ã×TSAÉûíçš+Á<-mL¾i@PBÁÆøøûÛÜTa5ÓžHG+«<-mŒÝY¾7ö5¬m¬6j´Ò2m ½ÖBO GÁÞGo°£yJ¦=—ÍSxZ8Ú ö†nîRë©|ëv”†…‚õ ï—¾ïïwK©`_}õýMgëævrÕøNÝeÛøýéW*Ø£Göï}k=¬£]\#¾Kõ¤µññwÒÇFcÞÀÇß´pt5ØØ pe¨FßK2=wúúÃÑÚšü]†ú Z=L ؽbkGÿÑ»cIŠÖ±O¶6Å£…lÚÈU“ˆ)ÿxë„£É o^Rw¿×Œl¶`VVoï¬Ï³kd$­çм,˜l…Ùý3´éú{•'k0C{€Ž®{«º µc”uN;Jz€.Cý­ïüö¨Øemê‘a…iáhcðM³çùíMUÞî2úVê`k {–½àwÐÂÑÆ-Üѭݯ;xOuƒín'lÕÿÞ …£õ[èøn@ëÎ&ÓV'nëÖ†§…£`{O™‚ít'ì!Núç9Z8ÚõêÞ£FŸçQ½c„DŸ<-mÛ{:lH:aÏ ¶$=@ G롞.ïB!¯ ¤B¾6ßþhÑ<]ÜÃ\nÜŸ‡\\#ÄSé~Ù«>åÞX“ÌyY0Ù ´s›ì°;aÏtÒ?ÏÑÂÑF¨÷Þ¦‚¶*6­{jžŽÖƒ=çÌ–Û¦‚ÎË¿™ÞF÷Ô<-mÛý¬nªçÚ]lÞSã²`²èÝEwÔóÇï%šã#º£æiáh=ØKWmTjÝSgÚ3F¢{jžŽ6‚=ÑͰ© ÕO%ð<_á÷/Uª«5 a®b u÷Ôß×oÝðñ´p´ì¿_¡²˜›7é¨4†§…£`¯—·ì‘v TÐ/õv:fx^.ðå§Âõ†…‚0_^êašÒSA×W½õ~ÕS÷4,¬‡ùý‚è÷mé=^î¸TD5â:¸·0Ñ<ÓyZÉœ§…£­`¯Þ%9ÚG’éú·Ý/pêZAÃBÁF˜W÷&š~gÚ3:¢ù7O GëÁÞòm|…úûæùT¸ýkÉîvFYž÷‹|ù•bu“Ë‚ÉF˜é$6}Êž±ͼqY0Ù ôD>¿ßîz­‚YD*èNu­™ ·Ï?Q¢ùüæuÑ|ž§…£õ`ï]OýRoR3¼tøòÁ~uõ§a¡`#Ìëî s´ÈéúE÷÷­niX(X óÜÍÞnØNé+ÕR¡“Ö•[ßDâeÁd#Ò‹·ƒ·Wlmƒ~Òõ«öÊ~"É9SA¿ÔÛT(Ã˾ü8°>:`X(XýñÓ@`+}*èúØðÊ?aÙ;ê“H½3ÒÞýTÐõ«öÊ—‹ÞÐ-i*àK í¢yY0Ù“w± –P²\_9Æû•C«ŸÐ®@®úJçÜ_^|F–#Ádc\ìtRŸ ºéé>Òúê ÃBÁz˜‡ükFPj*Üë ,ÑOK»¹úäzçî6úzÚ÷²1*&÷4XÜ8éúPžï‡²VÚÀa¡`#Ì9ŤN¡S«£¹õ܇…‚õ GïV‡I¬/•# 6‚<Žèá]*àú¸7â°P°äã‹æX©+p}\‹s8,¬yªýÜRã†hª}ˆ¶qC»¹F€=°RQ*`}âµ·hX(ØòÖ£ÏéTÀúwvZw4,¬yîz´ ¸>.¢¥  ¶‚üçõÓZãdYaX#¼«³x~5+ËžQáµ´´õpïpõ0pm|D«,+ k„wè½÷Î[ÔJ…m}ð¡¹÷€- m® ¤~ÝÉ‘«b°¬0¬^ûô´¹‚±_¾FjLÀhý‚e…að®“w¹§×ÙöL»pzý€- m|oÉïv͵åýò»—Ê_[«Ë<-­†zéàº@*àÚZ¬cÀ¬0¬^¶" ¸¶Ö+0+ k„÷øÀ™®¦Âö¬pÑ4û [@Ûø´ü®ÌÈ·#R!_?ë0Ùý÷ÿÕ¯û\+Ñ®@®âk “´¦ÂöŒh²ý„- mü’Éc[';½)\ëí äêñí»ÕˆokWÑÉ×û÷¡ÒÚVD»¹F|ÇÅ3~ƒ}.'[ÁFÚÈ5â;¹¨ÑjÑi¿Î¸†ñö ­Õ¢'lm#àÖxnm8;ÌkÓ/Ø(³Â°zl‡Îý$Ö2NÛ3(¢µŒ'lm+àµ>„ÖjÆI÷²µšñ-m{~o徯ۦ‚_äï^¿µÌL»¹V|ÝU¿p¾=\ÞE¬ÌÂp¾ý€- ­|¼ì¿/w¥‚­huvr«ñ%“Ö2ÈžN¶°Ë`c럎ϖTÐÇußþòUóã§…£­`ƒ S©P—ßÂWy½Ù]Ö‹ûþmu#Ȩ+û'¼ñ@l·°ºŠNGi‘rrqv9×þ¾™)ì«Â:õXïí äñE+Ré“çßD[ù‡e¿À—_qÐ ÃBÁÆ\vÊkw/«‰ë´n¬,˜¬¸ùrú}?W*Øêqº?¹¹F|‡Ñ5££5®ì:†D?$Ô —“õIí§‡{ZÝÏcÏÊ‚ÉÆ¨»¼|ô}ÛU*Øê, v‰Ñ®@®ߥwmƒ¢­™­^o´×vrõø®—¯UB©°‡QûÊO–×kÊ{¢ÿþêf—“õPoãì uø˜ ÛõËž”ËV÷¸,˜l„zr.øÞÝr*äIm£lÝßÓ°P°å݆§B®^³~_ò6‘§©p‡á·¨\Ní,¯òûâõqAË‚Éú&ÑO/÷´q7ï">-Év}AZ•IÝvá²`²úó)˶ìML6Ö¤}bsªTÈõ5)šºáh1ã[Xr~‰ŒKÕR!ׯ٠¿/ù(,SÇhowro Ã§]Ù®OîM™Üjž‚Ë‚Éú‚´_j¶Ä  6&JþÔ) wø½b¦±›e…aèî—">ØfœÝqÒ–·S^÷‹|´R¼`ZLÖwsnzëîi-¹\»Î—›D+~_Ãê"ôŸ<³ÁLV'ÊÚͽk¢û™O×qÉýý%k›"^LV'J€îiíy½ž¿[ŽÉ‚ÉÆ¨[œgã¾æƒT¸ƒ:¹Ûš%hW ×ðñÂ0ÕÔ ·~Á±&ŒµHVVoŸôÙ ¥‚í.ÝËÈî ‡…‚õÎ5Z§=áë%C•Úháh=Ô£s–ヵ®¸q5¦a¡`#ÄÓ·4¦‚V–ä„·ñgs6^}Äa¡`+ÌÎt]©kiÇ'ì˜~Ñ–¥háh#Ôð#%ðµg™yÒ°P°äÅ×<1Äz=Owê›'Ê­}–·k[Æå—ÄW5È´,˜¬gg~z¾§7õß­£6¶©p=ªàN—“õÒ˸.ì LÖ'÷ä­DÏ£NسìO¤ …£PçDë J…ÜkÁæN&^L6}|×ê N…똆Ëý4ÜÕ0Ó²`²þÀòÓë=Ý«»¤iØaZ0Úw³ó@;xê|žUÉIÿŒ§£õ@Ï—3e»TÐÖ ¸­ÅFžŽ6‚}|—žkxK…\ŸŠÑ&=^L6}¼ŽÃµ‡¦Bµ‡mkG+ [Q®~-¶±|žekÆäòšéW\þswöŠ“x¼Æõ²¦B®º`§ó:MSžÝ]¬sÏ?If­üá:7O Gãcþ3 ™:w†#¡¬sÓ°P°äÕYŸñ6¦B®?`£²¼,˜¬JçuE×$¡`clT¿ÐÛZDŸ«ß¹m-¢Ï[uÝXDÿZÖ½\>ÎÔvSA{èhEš§…£`¿ÆÌUwS!ëÁo®Hã²`²èś܇kƒ™öŒhm§…£­`¯¾Q® f¹>BµA\LÖíÝ!„‹(ëà»äp …†…‚­ {×ÿp]0Óy+}·aj® ò´p´ìz×XH¹þâxN[ FD\L6½:wá\+Ëõ©εpY0Ùt}«ÞZ¦É´c"†Ë4<-­{«ïÕ³ÄëcW¦b0KÄeÁd#ÐýÄ&©»ß>(m]\#Ä£»œMÄ?¾4dOÁh"ÎÓÂÑF°éí*äÚø',°+k„Ø[ŒDfØÈí›"yZ8Úõæ.YE«™öLÂhµƒ§…£õ`ï½óYï+û©Õv¶Ö¯ à°P°e¸p>áÚr.t°¬0¬^ø©«C ¿/yDϰҧëY—òÏc²`²12ŽÔ˜ûÐB*äúÈpÂ?aØ9ä„‚­(;ó©p9æúCêÆ’.ÆÀ®@®â㜗ûDF*äú°pÂgŒ·nXÐ"¬¶lÝêÛD¿Cò5¬Œ­ÛjT­©ÉI[?uÔ˜š<@ GëÁî;ú\"ôK½íÑÊðv…/_øWCMÃBÁF˜ÇZCjëþè¤=£#¸Az€Ž6‚½ŒÎ1-ñŸtu„ìÝýÑC ÃBÁz˜‡~ñ†9X=éúE÷÷­mEqX(Øóñmm샩€Õ#ÇÖO”à°P°ä…®u¥‚®Œá~d¨»Q 6œËFýo6ñåw(R!Ïêv4ÿ< ëQ1v~u!}¸õë ~cßJwΩ i}û§æý>O Gccš£c¹¿å‹õ©ëãà ÿ„áàWD¾†(ÏÞ9è}]?tý¢½òå¢×Ë3ðfÙo|§æ~]óp÷lÍò>~ÊëKÕ—jxY0Ù‹;æ‚™ö¬Ñ\§…£`;KÄÑÃÀ­þݤÖãÀháh#Ô»÷C"ÞÏ ¤‚®/zÑo#øeçSK(Xót¤šÔ9• ÷uÅÇc0­^8,lÄØ[ïbǯ'였Ñó?@ G¡~/þD± }ºê ^suvrõ# iv&šÑOG}-ƒbÙ=k\´ûït«+F´ý‡…‚{Oð‚'ìY-‚­ÐÂÑF¨·=±J¬¯ž­gl4,¬¯ssçLç£_¹úZÖFþNm‹vÑnuÕˆöÑá°P°ãÑÙ%ì39aÏŠí4áiáh#ÔùÇä¨SÌTÀÕU#|îJÃBÁFÿÖé˜w2Où…ÞÞ¾ìîÓÅ=ÌåÆýyÈÈ5B¼ºRìhóßéV¹h÷ 1®~A¦¹6Wÿ„Lsmާ…£`?Tƒõ=¤®/sNøç)X(XòÒ{×åØË®®/sóí2W²?ϰ°FxÇÚç“›«r™vL½pUާ…£`O¾ŒÕÛ\’ ¸>ý¢í04,l™-%¦O·û=ºd Ÿ¨*ˆj„v«¾ÎÙZÞÊ´gÚEË[<-m{sÍpy+Ãú i-oѰP°äuòî—Ã…ŒL{ÆF´ÁÓÂÑV°´, ¸:>Â…  6‚¼WŽþZ“’ ×/9š”аP°ä­ó®ûá4;ÓGÂóï+Ä\šÍÓÂÑF°'߃0¼kÎp}|DwÍ4,lù8u†6¢©`‡×4ù[ôkÞ6î@®ßÅý\æÙ%sî…ólžŽ6‚ýñi˜ï7¢©€í"·qfYaX=¼{ï.‘DÓÀL{FE4 äiáh#Øð4pet„·Ì,+ k…×Ù…}w*ÃVf¤ž£…£P/ÞMs8×Þïö3œkó´p´l8©J\›ˆÑ$e…a­ð:Ñ£¯fØ3ôÏs´p´ê½›|›¹húwµ±Lþ`VÖ¯·Ýx¹¿qÚ«‹'ìNúç9Z8ZuïíxôöŒ§Bö\µ×þyÐÎ6¢=W[ò÷v'míd÷vÐÂÑV°áwÉR!{ncô=µ'lál=ÚCW=‡mÜœ´g÷ÐÂÑF°‡K¡ ù&A*hõ+4'¼/Wøe¾x­ „ÃBÁF˜ø‘ž>eÏØˆîCpY0ÙôñíIîõþTȃöhý" ×£ìX5–ûUC+Üý^tu®÷sP+ÝáðŸ0·ÂF˜÷KÿVç?Ù×Û-ãÍ1Pc¡ŸvrõøŽ½{NZÆÞ½ '-ØÂÙF¼§É1ž£µþ“­h±ŸvrøÎËÑÛ+¸±—fRáê= m/ùЮ@®àÅš„SÁ±~€Ðœ >` gñ®~ñµµÈ1¾»n†y%k¸,˜lz_=+sð8åd«+]ð<…vrõøNÝ»M|Ï&ð?Sù‚Ò¹Ö]_·{™ÙW2O Gÿ uCDvÅÖ>;ù½ûž¯¾×ŸRáÖŸW±·µhW WýÃ~´gƒ·N0Ù˜Û×Z#§© _êmjyÀc×]àlNÆ÷µpX(ØóèNL¢eáL{ž¬Ñ²0O GÁž=•‡ð¡tf«Ï×è©4ì äZñ]ûèתN¸ºÐ]¯,tj=˜§…£ý€Û[/ÄLÇ/%¶p¶1ü®ß®G:ŸSA×ãý@­ÆÐ°P°æú ”­Ç>×obUÿè¹O GëÁž»Íµ¤®Ê’ª&±vLÄI›äê†÷[8[_Týö¬]·šµÌÇ’´…³8 ÞEµ¿_Tõ!xÐõ%j¹_¢ÔB [aÞÐãÒTÀFq·ùˆ—§…£PWß„i>›'ïƒ |:ÆÓ‚ÑF¬/ŸhÎBRáê Æg7°+kxñ•`£_h;aÇ3eÕžWjæ[8ÛØ¸m­ÀÛ«‰À1@HZ0Ú~«·J}?è¤ëÏÚýþY«–UhX(ØóOh³íYþÃ'´ØÂÙz¼/ï9' é“­?‚",+ kwv5Š„À²;οåÝrËxÈcß]äË/ªg†¸,˜¬?¬ütO«Õÿ%?1Y0Yukç;ïîGZ̮㒇ûKV+V¸,˜¬:?=ÞÓz´ö3L Fãn\à$9´±+hNíyZ8ÚöäNe£­U™~©·›»%+|˜/^}¸Ð°P°f6KN…ûš+–Ó£ª ªÚÅw6ëìK…ëXáfeñÔã‹Ó‚ÑÆƒÊM/ÊU—çË=~k¹à´þswø’£½»OÇ¢.™®¯pëý §îpiX(XóÇ7ó¿NÓ'[[å‚ +‰ Zaõ½ÕíÊ®cÂmÊ\V««<-­¯Ç~zW®Z-­nƒ7«ôÒ‚ÑÆÈ›á~…ô)W× ¡»_ƒÔ„vrõï~¨– »~ÕýýUëy0. %‘žÝ›€p;Ûõ«”x¨.\J¶"½{žƒÁÌ,«¯-í×§¸?¨‚¨F`]=XI}ÌŽûÌi-äð´p´²Xÿ÷ß¿ßóCöœgÈaÏy†,ÿ›þoÿ·(y„ŽV†ß?ûòV÷×›æT¨µ¹ÙßÓª ªØüyꥑTÀê)bÛk.ÀBÁV½öÎw‚– yRçšý€…‚(ïÎps©ë×ì„ß—œ?3Bõ¿§®åPÇþ°P°1.Ö=IL…\¡ÃÏ:b`#ÊÛŸO¦‚®_´Wþ½èü5Gìô)°>š›ÎË€…‚õ‘ÑG¶G}Ú-°~ÉM£{ ¶‚¼ùž$Ëýòytö†ëë²¾Ù~á¼í56‚<Òg}© ëk\ì€2"‡úhØŠ3}Ô— º~ѱsÏò¼¡§f©€ë+sèœïX(ØÇ9öÁ¿TÀõ•Ù ÿ< ׃LµˆûƒÜÔÔþ‚ ¶‚ì­ xÏ)SA×׸ØájDŽõ ²èÝ[𞦂®_´Wþ½è¡ïÑÓÄTÀÕ¥9vüù,¬ŒapNîhí3Ãj;Js퓆…‚•Ï?ý“GgÅ!ÖÈÆÀXœgîÞ3æTÈõÁ;BJ6â¼VäÖòg†ëÃ9Zþ¤a¡`c^¾´Œd~c‡üôq*ìz¨Ýôû²_µ(^®Ír}Í—kqY(ÙkEn-×f¸¶rD‹µ,+ k…×¹uéî·.êæ3ÃÝe~Pmâ<-­‡zvþžLàÍ©°ë ›þ ÓÞÇ•`²k¶2ž ¸û½‡L%Ÿe…aðöΑ*Üôû²ß?ñw3ÔôÕŠ_ô5Ά»#_îpe_¯ ¿h}Þ¡¬0¬1"àþTÀµMEôp’e…a­ð²Ç|©€k‹è±$Ë ÃZáuöF ÷O}µòaφÂIÿ@–¾2ÿZø–ËWô'tøxe…aðýTµ'³ï[.ÕYéõ¾F“ Ù3A¼öσ¶p¶1±/?dÎ>wK0ÚyôQ*äÚ\ iÁ®0®ámñ޹.xâ’iëki­'.<-mÛû®@øÍù,{ncøÝùlál}ÉË¿è–]£õ1²ÒöTȵ%$|&»Â¸F„ÇÝ;æ¢uÕL{h]•§…£`{ûÚeéPæ²ì¹^ûçA[8Ûˆörùš1ò©ÏTÐ/õîE© Ã|óÅ«;& 6ž,‹3•uA£Á±Þ-¤¬Õ'l.¤ð´p´lgvþ°E–=·1üi‹lál=ÚÛpYS¹Öãíò™Îì=†]\#¾—“×ï[RÁޝÇÕÀuPÀ®@®ßÉ…‡«aÙö¬rájضpv5ÞàÀËp÷Æ­ Òe´Aº ö´ìÙYõz(ËžiûŘglál#Ú׎aýíNß.}ÙÖ£%Úž»¹F|· <šN[}´DOÒaW ׈ïî®Î„«¤Ùö` gñ^Ü{ôh)}¿¼ÏX™†ÑR:O GÁÞ\EŽhÙ¾ùŠÑ&3ØÈUãûß r'áÑ¢Ýi{&J´h÷„-œmÄ»wïj‚õè“öLÃ`=úZ8Ú¶÷…ùèW]NÙ˜6ÍßuyÂÐ6Â=»³˜hÕã´=ó&ZõxÂÎ6⽺79Ñêi{¦e´€ú„-œ]7XŠ,Ã}m€ ¨Ðe°¿ õ`÷¾÷Òãß\:eÏèµ´´­p¿ ß¿ûž öu§¿Ý­¯êÓ®@®ßÁ½§ŒVøNÛ³æE+|OØÂÙF¼½/röÊTQ·ÙY®OÃø·£ž°´p/½gù¾Úz²Õé|·•vrø®îmd´ÆwÚži­ñ=a gëñ:ô]×T¸ƒº_й?¹¹Õƒïð—1ö,tn¼ 4Š—Ñþ7"ÞÏŽ%:ú¶àÉÖ–¼èë‚´+kÄ÷ãìHE2¶g© WR°…³xϵÊu{y/ÛÆ½l/ï=` h÷¾òþrÞI{¾ð·óÁÄ­ˆ{’òð{ §[]½ðÏS°@°âã‡)ÁêX*è÷Ý£*z4,l…Ù]þ dÛó  <` gñÞéV¡TÐ/õö £ פë0_¼þ`„a¡`=ÌÕo³µW©ÇÞû$©yZ8Ú ¶³¤çþšC*hÏSÜÿ<‰ ˆ‚ ˆëŸ¼ëˆ³C+}Àõ9¹ÝÏIuh³¬0¬ÞÞYnj)YgÜ3ã%ë'pq#想âþ¤kÿñ“Eöítã?OââFÄgwÞ8F[ʲ]Ÿ›ûýÜ4F8- %‘>ŽŠ©»T¸Æðh=cÄeÁd+̯Ù2¾ôðwã|+þí®xM9}Úž%5^ ÀÎ6îãÇ׆‘S“TØÇ¢÷ïâài϶€¶ð¹s'¦á†µlWWÕ±SÖkuxã²P²éc U]¢œo+¿ÝÁóÆ+f÷LöxÅì \@ܸ—£û6\ζgº‡KÂØÚFÀÝg(Ᾰƒ®Oø^YJôá ÃÁV”ó6¸WäàçêR÷—5 ùÀ A¾þº$TzJîYõâE³'pq#æµ¶Úö²ð¼ûV½†ª0O GëÁ^ü™wÈe»¾ö Ê¢ªn\J6"íÞùÅ+gþSƒxáì[8Ûˆ÷äÆãÅáŒ{æd¼8ü. nÄ|q'¨á–¢l×gæ¨Ìy}„Ó²P²éê{ÝÅÊ,[maÅJ\L6½öhT*`}ÓÚÚ³EÃBÁFw÷~2^ºÍ¸gÅ‹×nŸÀÄõ˜¯Ç7z±Ž‘TÀõaíq¡a¡`#Èù þÉÀ–SáŽ/xºY§‹ü2^]=pY0ùO˜Â1ßÓú˜;P8Y0Ùu3^ªMŸ¶gIŠ×˜°…³x_~í‚(l¥¾¾ Á”âhX(Øòñ!]¬;)p}õvSѰP°ä}p=¯Æû畚¼e×±Ø-÷‹dZL6žWnz½§õâÁÃÁú˜Û:w¡&^cϸgÝרŸÀÄõ¸õ¹01¨ snŸ5$·Ï/Ãÿºÿ›þýC€8-mŒÂÑ™ç{ûÕR!×Wëp. %qο¦Q{Â,÷OíÓÓ§ëX veåSs|žŒ6í}ï¼åÀa›Ý•‰ø‰Ã¸€¸óu@Ko©€õmuk±†…‚ o¾Â•»Ÿ,rõöÅ{àpY(Ùˆsµ(Ûzİ]ëš÷¿ÙxĀ˂Éz }%BççÉßêåK~Dµ4p}fGë»4,lܺqú=†#>û øx¹uäŸÇdÁd+ξâ»?/r}ýôÊ?ÉBÉFœáº`*à×í¸:&Ë Ãá½|‘¨¦®¯pÑ& AÞ}™¼»9,r}ÞyåŸÇd¡d5ÎC7¸¾ÚçýÞóÛIT´sÊõ1­Äð²P²qÿ&gåm{J…\sÑV-^J6âü÷‹üHQà„»ßÚR€YaX+¼¾Ïï÷ËP™4¼Ý˧À”=ru@„Ë ¼,”¬ß¿¾¿ôŒ2oc¦Â~±wKÜY꛺‹œÑ×@$¸,˜l„N°S׿v° ³Â°FxCêóÈ×—5„“ßS®ÏêhòËËBÉÆý[Þãâûd2ìðšÎ?ÙÖšûÒ®@®_÷B}wð®™½²fêK [afSöTÀµu3Xb€YaX#¼›ïcõýý*ÿ'Ó{û/ï ×-N¹¾dFë¼,”¬ßÀap7ÖôÊ:¤N‘l×§õ Lku–à²`²êß_Ê"©k³;\È]a\+¾°Êj¤Ã“3ý W‡²\ŸÙáê. %7puîŠ^S=ñúÔ•©mLœŒ6¢MHR!W&x¼¤»Â¸z„¯¿.½—>íú¸˜´!§F—…’­HÃ)v*äÚØ`W׈°÷cn /Rx}dÌÚ˜ÓãŒÓ‚ÑF´wßf1žÿd¹6>ÂÙì ãêžF÷^#ü¦Å‰×GÆ¢ :5Î<-mD›Þ¦B®ðþv…q¯³Ã Ÿ«föèȼ)€ÝŸ‡\\#¾îO…ß Èv}Þ­Ú”ÖG1- %둞‡Í3’£çr™­ŽŒèÁì äñ½üŠÚ÷5æT°Õë–ÄaW WïrþÆÃð;5¾|é/ôµ½ªø-m{t=öÂ5ÕìVGG¸¨JÃÁFˆ¯ßs_AI…<ýî ¡·à°P°eø³-©ë×ì„ß—¼yÔñòavk#9^?¤a`cTì—,•x‡+²þÉäs·]ÜÃ\Œ·ÎhW WñÚÁï¥Bþ‡Þý>áéNûÅ}‰®>B`W ×ñ±à¾K’ ¹¾¶9áŸ0üÔÕ×°å㇗À車®_´W~_ôäIFâeûìVWäpÝž†‚q1ml{n*dõ\¼½¥—“ÿú}ш.FBÁÆØpï:½ŸóH]¿h¯ü¾èÝ“óÅF²[á³ÖÇÅÖõl¯g*äúü ·§â²`²¾flƒ3¡ô>Y…’Á1ú*“ѳ†ì޳¶ò|Í£^æÁ÷å‘~ž££Õ/“è^¹jí‹Ã6ýÒT‘2Ó׳>ªHÉÓÂÑÆ$Ï_¶âî£`´1Í'Wy'|b›ÝêC+|dKÃÁFˆç™mdN…\dyåŸÇdÁdc®Î¬;úÕº¯ecp쾪èAhvKÆ ¬FjÚÆÓ‚Ñz ÷Ι »ÛwSAׇt¼é˜§£XO¾S*çiîÅµß m/rdYm]j/rà²`²qgfènN]¿‡ñžfžŒ6b½û-ïYñ ]7°©r*äúÈ‹¦÷¼,˜¬ÞÁ±ë@ G¡œI­û=‰TÐõ~¹ãZ0Úˆ5]õH…üÞó2uÚÈ5B<ûÎ+¼ýoxqÖ ÂÅŸ“®‹pñçZ0Ú¸‰Þ¦Ÿ`?ø {R'ýó-­‡zøøÕ5 ´” ¹6ÅÃÅ0ØȵB¼Ã © Õ‰ÒÜ5ÂËBÉF {_yÆ{~å™x)3Óõù/eò´`´uW¸a$t}äE[ŠÆÁÛplò?aÏÒló€Ž6Æ]vL…\{„ ¥°+k„øØÙ­ © ëS0Úá—£}f_ËV %¥x5:Óõi¯Fó´`´ko³Rô ¡Sö¬v^ûçA[8[öˆ—SA×–½x©”†‚ÕÖ¾qìgv5J6FÆà¬£Äë™®ºx½‘§£«±öÌðh!ýóª{²ÎÓJ¬[h+ØÎ¢Uôu²SöÜÆèZ?a gÑ^œu«x96Óµå:^Œ¥a`#Êë⽃ÑRl¦=S1ZŠåiáh=Ø^¯I] ñ QvïŽk2íÑb O GÁ^Žmäx£ŸëH…;ßO”Ö¯‹À¬0¬]:O]›~ñâ QÞÜ›èpé Ûž¹.<` gñÞ¶Aè+J©pÕijñ«O´+«xœ[çxžéÚ$Œçß4,lDytoà a¶=Ó/œ>` gñžÜÛ˜h­c¾~ù_Wëàiáh=ØKç^ÿ£yáry?«rÙѼ§…£õï%›~žµ`ÏÙžVúÃþïÿþÃÿ›õO GÃov¯#Ñn¹¼‰S¹‘Ñާ…£`{?»h÷R–Gd{ÿÒ¶p¶íËWOÝd*\ýW(w¿°+«xí†Ï õ¢d†¦‰ÛwZ‚òÏc²`²g÷~,œ6¯{kN›°…³x{OlÃmsYö,w^ûçA[8ÛˆöÜ®"Ð{Ù}MÈã§V 9hX(؈ñÇ H&š Û3Ãô¶p¶ogcv¸ëo½Ôf+31Ü÷÷€-œ­G{ëfÏ Ò+ÓFÍŸ³[^øç)X(؈ñ¼ybîÎnõŠÃ­Â4,lÄx¥ó¬ôIë{zÈÓ‚ÑF¬Ùd+îë&Xjˆª‚¨zh÷Þµ¡‹·«f¸:óâýª¸,”l„ùrÜí÷Sa{f^8OyÀÎ6⽸vñ&¹}ñ=´ã]r¸,”l„yu?Ûçl{†Gxóü€-œmÄûøedîC=©5 jý¶ «Qžºüíÿz”ßÿI…\¿f'ü¾äÞµãwPžpuí·Pò²P²12Æ>7LÝKiãiç´p´ú–ÏÔß¹Ç&‹P°1>–l¤L{}Ì"Ÿ8,l„xu%,áÖÏ®®áÞO^J6¼»w1ÑúÆiÅÜåv¶8ž°…³­x¿K®_ R¡¾V:¬ó“UQõÀöƒ+twP¦®Î=·üó˜,”l„y¦ëé“ö̺hyãZ0ÚŠõeBš'SA¿ÔÛ¯"ž»¹k;Õa¾x-ãÆa¡`=ÌŸŸCŠ©°=Ã#ZÜxÂÎ6âÝ{Gu°·6Ëõ!²Þíhvr{3Ÿ`ùè„­B`céZ8ÚõüçãT© ÓÖ¯´– xZ8Úö2Á-Æ© ë“q»ŸŒÚ™7 [aþóa¦À‘á룖)pаP°äKD”½R{V»àó …£õP½{#ííyM…]Ÿ…ûý,TÏ¿yY(Ùˆ´;ÐÑ–Æiô]óÒ)ÑP74,lDyÿÍî‘~ùô OÃ}åd—þ¾ÀÃÖG2Ê ÃêáæÚ‡ãš÷Ï™¶rÍÖý3O GÁ^x'š ú]¤vÏ4,l…ùÏë*Ì–nº|ãóõÅVjKGÃBÁFWüP"ö‹½½Y^®õ˜ë׿գ\JÖ#=wÕ†¤Öís¦=‹]tûÌÓÂÑF°/‡ÿPù<v}ˆŒÊàSkþ¸,”lDz›¼‘—¢³]¿êI‰‡ZˆÆe¡d=ÒËÖû¥TÐù&¢{<žŽÖƒ½Ü9òÝ›Òè# ÓžXD<-mÜÁñÝðD¼^ù†O{bç…©€¯uyæ„“†…‚»·»n^¯Ü¼òüê×ÝŽXbc©€ë¡ˆžäѰP°~ó¶irݽA¹{åùÁžgvߟ Y F{®‚ËBÉÆ <òMì(p}ÌE¬hX(Øòî{@¹_û•÷ã£\‘ ¹>ä¹. %ëw0¿&Æw¤B®ºð . %q†_?{ÃÇ·¸40r}Ð…SW\J6nॠ‚Ø€¦Ö?œÚºe¦a¡`#È«okë>L…\½}ñƒL\JVã£y ×b̽¢t‹ß³€º>Nø¸ä»´Ö¶^L6nààÌ¢iõ)×—ÌhZÍËBÉFœ+Õûæì÷”ë“;šýò²P²g6—LüZ&,÷…YaX#¼—&$‡L…\½qá¼——…’õ8p®— ¸60¢¹)Ë Ãáíð¶ç¥YV®¸=+…]a\#«½ålN‡Ë‡?Œ!ÍYVVïg é® ‡pfò‚°Vt/ÍN@oq*àËB–ù,/ó§¼¾äùÿßm€aY0ùˆóÿ»‹3½‘O…\›wáÔv…q‘LoáS!׿^8é€]a\#Âôî2reLÄ÷ð+Œ«G8ÿÚ&ØÕš Zÿ±Í /ËÎæ?^1 ëažÇÙæ`ÃìI×/z½¿èþy  6Â|y‡ëû„?ìô*‚õ ØÈÕã»\ Çßg¢©`«×MœaW ׈ïlÅ·=qÎîqÁ7aÍ™3 !^Gð˜-l§– [OiX(¸b(Ý/C\uÑêì–nuõø®ý@&ü©p«s.\  a`#ăk#N³[áÜ™†‚_~>ÈESáVÇD8y¦a`#Ä«g»Ož³[ñ왆‚õoðã9°þÑˆÖ  ëAÞçmþH…°SÁ^' ²ÁÀa¡`uñXçü1 ì‰ YOs78,lDùz< ŒTÀú™SëP¦a¡`=Èkå7”Zc¼n—Ž;9¥]\#À;ºóL…ÛÏ¿;D¥c|í.ò¥c\ûma^Lþæ†pô÷ô¤…cëVLÖGÝ6­ä~<®ã’‡ûKÖZ…yY0Yu~Zy;Fë‰\ÏoÞb²`²:ê¶®Ÿàs*è—jýHÎ:]àÃ|ñÚ‡…‚ÕQ·õÇ×X—Qͦ¶LQÞòôÿ=®:£·…—“õQׯ=º'H|©Ô*}eëò)÷/y4âLË‚Ézœ‡JKcΓ]«Ó˜ôð²`²æ©ÿ“¶R‘δU‡i 5O GëÁžGzÅKÝ÷±u™æiáh=ØËñs àI}=ö¡F6O GëÁ^ów4°,.ò >O ¶¢¼³Éa*äú5;á÷%Ï~&€Zò2mý`hë’ÇÓÂÑÆøX¼e gV› ¹>>‚‰¸–;¾†(¯ÞBŠ3YN…\¿æ`~¿mý†Þ>¡`=ÊÛQéÇ2åTÀz£fknOÃBÁ‚ü¾äÕù¨ –}¾†õq±{çut£±_?¤yÿ¤jÝjð´p´ê~ ¦‚~]öH>¹iX(X óÞu#[žI…¬Q+J8,lDÙû¤ nOØ3ƒ‡AÐÂÑF¨/bÂTÀz¯p㣇…‚ {Ÿ°Á­þ {FFp³ÿ-­‡:+Û%¥ö\tpÇÿ-m„z­6J6îïNÚª6îï …£õ`×ïÊ —TОˎ>yZ8Úö¼¡˜TÀÝïî‘y$²¬0¬Þ¿í{ÔqøÛG=yZ8Zöx9$’¬TÀ¯ã±H8““8î§atë‘iÏðˆn=xZ8Úöîž0Ñ­G¦óɺõàiáh=ØÓñþxÌ™ ú¥ZßøY× |˜“u4‹ÃBÁF˜g÷|‰îð2íÑO GëÁž;÷î1ºÉ´ç²£[žŽ6‚=»Wëè£qžÝë^ôÑÈÓÂÑz°—Ú[7­ê [œÖ5O Gë¡ÞÞô÷YWúT_÷o¹‘e…a­ØV W­yûø1ÂÛÙ×:yZ8Z öö¿ÿþýM¸R!ïôós|œîvu»×7F5Eä]\#Ä{ŒTÐÇÓdæºÑ¡…£õ`»÷¡äð„«ßë[÷ {ywê>1ÄYaX#¼Ç÷o°ä*°~Ù”> Až'8±J][w?2î“Á`¡`=Ìc·zÃJßtý¢ûû‹¾O€…‚0»³ËPø+×/y¸¿äûôwrõOc¥“£uUΰ~Öº*Ó°P°äm†7D© _ªõÁ…m¼À‡ùâõ0ðP°æåòF!­¾Ý±r°Û:G–Ñ<*m!,+ kÜ64)KŸì¨Ü²ÖUQõÈnÇG±9œ Xj´®:4,¬yßpH¤‚íÔ nÁ4,l…xGsÝTÀú¨hÍÍiX(X rßÍ#š†¥®^r4qÄa¡`#Èke»Ý¸"Ÿ°¾Gi\‘qX(Xrß9³%g¦› ¸>.‚¹9 Až}k²7ÕM\¿ä`nŽÃBÁFágu*`ý;}»  Öƒ< OêôÁV?zÝYÀ¬0¬Ü÷ì÷©húTDÀg˜†5b{)öûŸTÀÕáޱѰP°dxÿ“ X›­û5–†ÕÃ{=I!v>©€ë#"ºW£a¡`#ÈÎM`t«æüa—ðN vrï•ߢmݧe8q­08,¬yêztï“ øµ¶Ý<Ÿ[wj,+ k„~6§®\px/Á²Â°zxgø±‘ ¸vÁÑÇË Ãá]|‹Cø—áÚGq,+ «‡w9¾Ú­e©`ް›meëÒ »¹F|/ çß/f©`k×^{aW WïÚíàj– ¶z½ÑÅvrø.žõ!¼øf¶z½ÑÕvrøÂÛõTÀ—î ¥‰ÿßÓ]åþ%…\LÖã¼]>2ð}õ$ì«ø¯‹†*öÀ®@®ߣˆOUXÓ'[ÿý¬m¾À—WËëýy  V~Í!"/÷ò ÇbceÁduÀ ùgæ¹U(ò»ïZ8qX(Xò|œQûíT¸õñnëE¾4€¯ZqY0YÚz»§750,lŒ¹e&sT¸ŽKÞï/yWƒLË‚ÉÆ˜óÒ{wO÷êB7¯#L Fëãné¼+çž ²þ~ã.‡…‚(÷ »ÙH…\¿f'|¹d4iO…ë˽2MôÓ‚Ñú’ä§媵=îwx…iÁhå#ïÿè¥G‡´P°1¿/?„T`Rá:¢¬¼2ØkEåhÁhc²¸éI¹j­ <,, %ëãní&²bòënãŒ&m©€»Kó•hò´p´z ÇnáËNm}o£1ØÐÂÑz°ï ¸Ù=aë.6nw …£P¯ðIŸòõð€Õ¸,˜¬zìgt»” Ø3:‚Å×háh=ÔÓàܪ{Ël©õ&6VqX(؈òèL-¼å»TÈõkvÂïK^ª_ón}²dÚñ³ á' O GãcsVü…ÇTÈõñ¬•úá`Aúk؈rþ6WÎL]½h·ü{ÑóPÝL·> 3íÑѧ!O Gë#dÎø\¹-t}„Dk„n9zhñ5lÄ9ÿ2WÅK]³W~_ôæ­jzËK© ë­‰ùeïÂ$”lŒŽÝ[ˆõÖ­RA×/:Zk—É÷Ø ê¿–õ@Ÿ¥G.;LýR­nöù ¿Ì¯&´4,l„Ù»£‰¦X¶ö­IO G«-ã²;Ÿ²ÑÓ¡¯ecxì‹wCÍ´2'øíRÚšiñtê/h=Ø«wOMÄ3ìÕÁÞŸháh}.®¼©J6†ÇäNò£ÙV¦=£:šmñtê/h#ØÎd¸è‘aÏ¨Ž–=xZ8ZŸ‹[çÜCFO‚¿–õá±y÷½ÞÔ%²#Òáž¹'lál#Ú{õà¬u›ºÕ$¡u›ÊÓÂÑV°ábP*dÏ š°…³õhïGIÜ?¥‚ö ’è®§…£­`;÷fáÊ^–=C$ÚVø„-œmD{_áíH*hÏ ‰n¢xZ8Z öÔy·:Ñúï){†H´ü„-œmD{önHÂÀÓvŒ’ðð [8ÛŠ·sO-ºŸ²çNFËîOØÂÙF´á2v*àþrÑHᇅ‚õ ÷wãÞhŸ¶g*F7ÚOØÂÙF¼{÷Ã7˜Cžt®C‘9ä´p´ìÙ»õ oµOÛ3H¢[í'lál#Þ«»Ì"OÚ3L‚Yä´p´ì¡woþ›íl{Ix³ý€-œmÄ{pW‚yäI{†I0|€Ž6‚]ÿäæ½öPÿ=áæ½ö¶p¶ïuDw®©€õo¶îµiX(Ø ²ûÑNׇջЧëØÂÙz¼ÇÑý4ç6Ùö\w8·yÀÎ6â½¹¨ðv;Ûžëo·°…³õxþØ'²“J…í¹îðð[8Ûˆ÷:¡œTÀ¯ÝÎÈ="YVÖ¯û49¾ç;ßkq ‹ðžï[8ÛŠ÷x±‰öÄTÐ/õ¶t›áýÚuùH¢úh¤a¡`=Ìó´zÃì—;éúE+ߢTŸˆ4,¬‡y]p±Kû:‚Àôvrõøîýî\‰Â…ëLµŸáÛ¯5²¼rþãÕ²5 aþxß-¡îçyZí¢•/\ªT VÃ4feÐiÕ ^JÖ#=N=𾦮Ž`ÂÃBÁz§Í`SáVí`ê–«ü~á^]3pY0ÙóVùaöÖ¥9Ãz5»ui¦a¡`õ³óÜç²Ô¤–ž÷|y²g{ú_÷ýö¿A-ô<@ GëÃnž*§­Kh†ë71º„Ò°P°äž)©€_ËÑ͇©[g6Ë Ãêá]û -ÿ¥Ö'GcÁ‡…‚ |¸÷ûi— ¸6*¢ËË Ãá]{´¶š ¸>"‚Õ` Öƒ¼ŒXe5pí’ãµ` 6‚¼ºVcU5rýšÃ•`\JÖã¼w=¼áL}½hj›ÌÓÂÑF°ûJvÖºÅȰþXmÝbаP°äÑõ ôŸ¤B®ÏÂðÉ. %q®½eغ×Èp}hD÷4,lysî5¼1©ë#|x„ËBÉjœ—ë ?±CJ\á= A{:ïYW*äú틞Ïñ²P²çյ͈ïO¹>6¢{g^J6â¼;wÞîTÈõ;= ãe¡d=Î=¼ Mü*à ئf…að^~xˆI¦RA_ï”>@ GÁ]»æxvrÊõu.šü';wÑìäkÙˆó4³§·©Gul48ã°P°e8£J\[ë‚ Ì ÃáÝœYI4û;åúÄ‹f¼,”¬Çy4—JlŒxîDz°FxGg>Îû²\¿qá¼—…’8Ó9T*äÚÈg}°+ŒkDøòMçï[RÁ¾~žgº¹ÞÆ Úȵâë܇3ê,×çF8£Æe¡d=ÎãÐ{6,Ñ|:³G­þ÷á„vrøþÍk¨”z¼üÎøm^ÓšPÓ°P°fç¾-œL£k+N¥aW׈ð4{xÁn­“­>@‚íZ´+kÄ÷òuŒïÒT°Õ…-š?î@®ß͹B„3è,×f\8†]a\=ÂÓ°¹h*ØÊˆˆ§Î°+kÄ—NDS!×î\8u†]a\#›c3Ü4g·:$ÂY3 !¦s¤Tȵ›Îê`W׊ð†¤îŒÓÁÖžŽÖC=®'^8çÈnuö…“6B¼¹BÞ´e·zÁá] ë!^&×S/¼«Ènõ‚ÃÛ 6B|yS¨¨¤>~éd#‹@¸,˜lÄyw$Ñ {‹ìVFxsAÃÁzˆ×nÕ© ­y¶n0xZ8Zö>Žðe§‚~°¼~*‰ 6O GÁ>z7¨3²T¸Óð[:½ÿŽçÔmùòOõAˆË‚Éê7ô~O«‹é±Óç`¡`uÌ­¹Åž*S§Â­_rßÝ_ò¬™—“Õ1 û{zQÑWhLLÖGÝ0:öáCßÌöóïîëþ3USÍ_ä©kQÆe¡d}̹eítê˜òû"-m ºå]—BŠTÈÿÐÛo8g·Ÿ.îKq´`´>òrg¸åO]û9ש_¯ðûƒqZš‚ÃBÁV˜WòÌ2®cdlÊ ÓŽY £õ î§÷{zPŸ*¹ƒ¤£‘·£éÓ­_ñÐ)ÁЧ7- %ÃÎ+÷Ê5kÇë¸;7vnZ0ZuÓä[ï¢'l'ì¸feß?hE™hÁh}äùieã?he™uš«’›Œ6†ÞîzÑ“Çv\ó¤„CM“yZ0ÚznZÙ§j¦ìܲò³DƒšÂͳ÷襣õQ·tìQd*`Ç5+ÛôAM.xZ0Zy~ZÙ¦jr±ôÎßM FCoa±Ò'<«­po´+kE>K…\¿f'ü{Ékï=ÿè|M©«—>óÂÑȯa}`¬Ç‹oÜùU*äz”ðû’áº]*`ýÓÖJ# ÿïKv.EáSÞoaý’·o¹úܡÐñRúdßýßÌaª ¢ê‘Ý— ± — ¸öSÞñ%‚†…‚Õ oýÇÏÈÉ©€;e^4†f…að?͸T°:5 ¶Bì=åñö•¤‚Ô§FTþyLJ6í-¶¸;VRA×/Ú+ÿ^ô¿ÿε&¤‚®_t´ŸÂ/G[ƒ¾–õÑ1tÎc/wËC*èúE{å÷EÏÎ"Žû\;tý¢£‡ñ~9ÚlóµlŒŽÅÛµâ=/O]¿h¯ü{Ñcç=Ó蜧ϩ «>1wËáΣ¯e}tŒÞÊH°txÂ×]T=|€޶Bí=1ñ¶¤‚®i¯ü¾hxWš øúj³¦a¡`µò²‹skmñúZ6Fóâ=„ñ¶i¤‚®f¯|¹hçA°Šžu#øVδp´1>Vïq—·k%t}|xåß‹ž¼{ôp>›e+ÔÍí¶p¶>D^+%Ún“ º>D¼òOTwŸ~-vVà»ØAàöwoò²`²fï’çí–J]Ï^ù}Ñ—oA}_ÕMûª¾ê¿R/Bî@®1(¼‰}¸r—eÏÒ}Eî [8Ûˆöâ­x;éRA×§`´ûÏ/wΊ„P²èÕÙl{8aÏ|×øZ8Ú 5Ýi™ º>>¼òïEÏÞŠU¸öŸeÏò®þ?` gëCdœG-î>ÎTÐõ!m>õËÑ7j¾–«ödÌÑ‚i¦­oÕ´Lyº õ´lïë\ÞfÜTÐõâ•ß=ýùäS0Íp~Exâ ¦4,lŒ oY3|à™eÏ*íµ´…³õòô|ù¦¸9Y¼õX¡dc„\>ÏTMSA{–¼h­—§ËPAëÁ^ºÝ;øÂ…Ól[×Ý\8}ÀÎ6âí­†['²ì¹“áæ‰lál}ù[g}ýökÙ!—ß` ¨©  I¸ê»|üØA GÁ^ª5åæ"_¶=ËH¸È÷€-œmÅÛY[74eÙs'£ß-yÂÎ6–¿Í·×¿ÿµlŒ­ºn­OfÚ³Dë“ùÃÎ -­{=š<ƒ/\ì˶g û°…³x{«[]´5r­W·¢öσ¶p¶¾ü­£3E~ãkÙ!“w‹®Rf:×tn‹r­UJžŽ6‚½¸“ßp5*Ûže$\zÀÎ6âí­…»h×zÍ(jÿa gñö¢/üž²çNF¶å [8[vß¹³³è‘Âi{feôHá [8Ûˆw~ÂãíÖ?íÒZÕ8mÏlV5ž°…³ûèÍ…£ïœŸ²çNFß:ÂÎ6¢=»w¯]°BzÚŽÙ®>a gñÞÝT´BpÚž{­í{;J²<^sÓýÏWßeæe¡d#Òóî\@¢ïŸt}:Î÷ÓQ3 aÆ_;LŸt}h,Ê SFÖ£¼ö£w0÷÷ƒYr¦ëCc½j”iX(Øó4yGsô-¡Ó®ŽMuj>ŽËBÉF¤w÷s0ú6ÂiׯzWâ¡æˆ¸,”¬Gzs¿ânÔÞf×5O 5i¡a`+Ê+Z¨IÜÇ­Å%žŽÖ L{ç^¤ÃÍÂÙ®þ~€è­Â¸,”¬ê?ÇHÝë¤ùô…§…£`ÏÞ'b¼»4Ûõ!2(ƒ¯”“…’•Hïÿë>>ÅgºW}ßx÷KׯyT¢qßu÷,lDyñ.ÓÁþ¯·]¿j¥j t=! %[‘®vÆ4í>Þ´UlÚ}CýJÀBÁz_gçd'J*dýš£òÏc²P²g÷þ9Öö¶ëS°¿¿j¥+ì Y(Ùˆô<¡=?©€ë“0Ô¥ô,lyƒ[~R!×§`¬Ké Y(YóÜ­hÏO*àúÐu)= AvÎ’hvr¸× 9“œÀ®@®àm¨J…\Ÿy±&°'d¡d#λs$GwÌ®莙†…‚­ ;wÌÞžµTÈõë³{BJÖã|íìGvù©õ±Ñœ™à²P²çÉ·•s7¦B®ÞÁ`?ã²P²çùÏñ+“—,óŸcL&/¡a¡`#Èë{9bŽ!RA¿ÔÛy’áy¸À‡ùâÕ$›†…‚0ÙTú„ë«\8ù£a`=ÆkçÛ4»\S!××8¯üó˜,”lÅyAÏ R_> L›à²`²ç?½¾L)#Ãõ§I´”AÃBÁFŸ(Àj©€_³dæJ,+ k…·’`72²\Ž„ ¸,”lÄyöåØî.øTÈõçH¬sÿ Y(Ùˆ3\~I\›€ÑrË ÃZáu–0Â¥¢,×§^¸T„ËBÉzœ·ÎYÂð¾Í‘ ¹>õÂ/ à²P²gº¼• ù5° »Â¸F„+5¢æZÜV©¸4—âhX ØŠ1[ÖJ\{ŒDËp,+ k„wqÖ-”É¡¿¥¶-΀WþyLJ6â¼WR½æ"\–k‹[¸»Â¸z„¯/Æ#Õ¬TÈõÅ-\Ãe¡d+Εjkeh¿|ÚXâ¢u!–†5ÂÛ;“iﻊ©ë$ü~%. %q¦ -©k \¸4»Â¸F„g_>/ e¹¾¸…ËB¸,”lÄÙùÝ5÷› ©ëwÐ+ÿ<& %q¦k-©k30\‚]a\5ÂýåÓ$H‘%}Âõ¹­ á°@°ãÁ™ðy_gN…\¿}ÑW°yY(Ùˆó¸{æH´övºG‡ùÍÆ³µø†ÃÁFˆgç$‰ÖßN¹róÂå7ÚƵ"¼¢ÍN©€õyרž…ÃBÁF/ŸŠBÊY©ë$Z‚ãe¡d#Îgƒ]íÉçý¼D*äúŒ~ƒ—…’8ï£çÉ-tžnõ9­tâ°@°âž®¦B®=I¢•NÚÆ5"Ü;‹Ñ2Ü)×ï]´ ÇËBÉFœgñÂû}”TÈõ;ý¤ / %qž²x˜ ·ºÄE«8,l„˜®¦B®-rÑj'í ãv®ÉÑB§{y‹Ö9qX ؈ñ櫹¿=“ ¹zûÂßËáe¡d#λ«>­%Ÿnuy‹“qX XñÐÃÕÙTȵ.\N†]a\#—/z"…ÙTÈõ{.&ã²P²gçwŸÜ_öI…\_à¼òÏc²P²çÙSºˆ×“³[[ââe¶B\y±¬µ¤œa}öµ–”iX(Ø2]žM…\›!^÷ç!W׈ðêÌEÂÅä,×ï]¸˜ŒËBÉzœÇËû¾@Ý0nu} :iX Ø1]6L…\»yáB'ì ã®|´¹Æ9þùˆ0Tâ¤a`#ÆÓ{ëöý»É©`_?6ÝŒ‰ ûó+kÄwöÔ+âµÍìV—µpq“†‚¯ÎzE¸¾™åÚÍ —7aW׈ðåsàH¡0rõÞÅ‹›¸,”lÄy½­Æ}ò$òðãŸK>Ýy¼ºÿÄ×·m¬+k…xñ<8Ùêó#ø-ÚÈÕã;õ®RP¸tœÝêÓ#\;¦a`#Ät%6ríæ…kǰ+ŒkDØùUÎxÝxr~\ ^7Æe¡d#ÎG%¯¶_Q?Ùêâ|Gvr«ñÅJ°e„•§ssɘeËø6²FxW‘-\,ÎnõɮӰ@°bºöš ¹vóÂÕbØÆÕ#<_θ¿Ï;luM ¾–N»¹V|] p‘8»Õ)®Ó°@°âÑY г\»yá:1ì ã^]Y]¸À–ÝêWØhX Ø1]¯J…\¹yñ ì ãê^×v-œ5g·:$Âi3 !¦“ÐTȵAN›aW׈ðêÚN„·ÃÙ­‰ð~˜†‚õ¯£ëaÞLd·zÁáÝ !~¯ÄßçùéS}žük›¦ª,+ kÄvó<æâÛˆìÖC|AÃÁzˆ7×G*â¹Í÷ɇøSކ‚õïûYTÀýü{󔟨¯tÞPýóGµu‚§£ÿDº! ³rÕêÙÚù)3ŽŒV‡ÞÐåߤ© =%ÅSßÄ?aÇ5/J8´Êî´`´:ôôª\µVÅò7±8Y(ÙxÚÜ– w~k¼å%gyÞ.òËàò™G Fëã®ïØ7ÞS;V"-¿R72<-­=?­åWêVæühG FCoD;´Rá:fË¢LD­hð-mŒ<7½*W­ †ü¡!Œ6FÞâ*LJ­Q}þ„³eS&¢ú¸åiÁh#Ò;Ú” ×18”«W«3<-mÌq/½vÊU«Õ™üíŒÖGÞл2åð[Õ'\Ÿ-«’bMê’§£H/ìKˆ¿ð8ø–iïÛoxÈSÂT¸ÿÈû_î>åõ*¿ÌÌk#—“õ5ÉO÷´ºí' ÖgɸúÖ#åŒìO;÷ÞÀBG*ØWµçæÂ ë÷nØ.Û7¼ùV8oçã/<¾ÑæíF{ÃðÝKœ»Ñzn¼Ñ°P°>ÞæmÃú…—É7Þ¼ÍGoxw7w[È/¼öÞ³ç¡U*äùwݤÎÙhX(Xpkï܇{ÏÂR!ׯ٠¿/Ù×sâî’yË·Øê¬k§B®Æ"\Š÷Âá“ÌoacÄ­\-O]³W¾\ôŽ>JR¿Þa–¿£¹ùáGÃBÁFÆï%oý†Î¡`}0oƒ·Té- §‚®_´W~_ôè]ç¼¥ÛTÐõ‹öÊï‹>Þ]»öRAêE·¶ò²P²1 Wß^#~˜ù­lLÃu‚;SA×í•/íÜz¹ËÍ© ë‘öÊï‹ÞV¸$œ ºzÑnù÷¢÷®¡¥BÕkn-ûѰP°> ÷ÞÛ¡¼(SEÏûådsz埰m}þZ6 WÓ'\Ñ¢í>8wá³óoe+ÈÞÎuokr*èúÈ·SïËŒÞA¡`#Ϋ÷ºsöˆ¦‚®Æ9ÞØê•ãmüßÊú¾n_IP¸_ã[ÙÜ.›>åúÐðÂç%ÝàÌSÜ-j© ëí«sËá×0¾–Õñ<æ^{n+”¬Žçÿdgžân×K]^ù}Ñ«·}ÑÛ” º~ÑѦ)¿ì]û…’½ù63án›¯e}D÷Þ]n´*sÊÝ弑ªËåuú”Ǘܫ糼,˜lÅÙ¹Û‹ÖÄNÙ³xD«bOØÂÙÆ¢·;·7Ñ÷>¾–õ2ö›oÑ Ö¦Oس|ËÓÐÂÑj“õ8µïaé~{RʉÞgûõìú÷׫êߺ7ÝýÉÏs´p´1ø†Õ;Ãéh¶¯@X:ú€-œmÄÛ›uÁÒý);îd¸xÿ„-œ­?ÆÉ—q„_úZ6Fˆ·0ØÃ{ÂV »x …£PWŸ4Í5‹ñO»;V²àiÁh+ÖβBô\ê”= ˆ×þyÐÎÖ£=9Û7£-ê'왎ÁoL=@ G¡« Ts]+Ûž ®k=` g[ñvVŸ¼•ÏTÈž éµ´…³h{P‡ûy£žcN—_ô´§dô háh+ÔcÍn-fÚš­åOžŽ6‚½¹óÞpa.ÛžÕÏk¿¯Û[† wCdÙ³ŠxíŸmál=œéû(”¬ìÙÛß}Wì”=‹_ôƒpOØÂÙV´«›øÖòm¦=Ë_´|ËÓÂÑF°½;íxõlönXÝô媙o¸,Ëž€„»Á°…³%{®nšK•ßÛÆØvÀx!>Ûù¬—-Ä?` gñ®7ç´Z3mÝÊ }¹jgßø¢<$õ1ò÷[%ßÚ?ÚÂÙÆZR-‡¶Vµ¿–½»Ÿ’áRk¶= `ø-€y÷Õuâ}šYvD$Þ©ù€-œ­í¥«nÓš ÛßÛúè^:wn>³É¶çq>´yÀÎ6â]ÏoZ–z¦¤ßWí}%úµ†Sö´«ËjëÙu 5‘d4,\ ²ç¹>dr?ïܮÝ÷ߦ‚îõ€4w ó´p´¾x¬½»>ÏûÞ6v=åh>õͶç~ã[8Ûˆw½·÷|„O#³íyÊD¿]ùŸí+³†¿ØuÊŽˆ„{â [8ÛXMªEÅèŒ6Ævý0¨õä7Óžg{ôä—§…£­`»‹ÚáSÔÕö>E]ýuøõ{Ûˆ··<~Ò~ÐŽÇMü5žŒ¶bí-±ÆOõV*æµßÑÞ½µ¹ø©Þ÷¶ï­~ûͶg ôÚ?ÚÂÙV¼Ý…ÖðIS¶=K`ø¤i›Ü…ðIÓ÷¶o÷Ê=ŒÜÜK`ôµ&\L6]tóÙØöqÝìÙØ¶p¶ïz{¥Ò¯Ÿ~dÛ3!çØÂÙz¼÷z‘ñ´£'d™vLËð‹M<-mûè=‹Ü© ó}ìÈÒf¯=` gñ®×ºškÛÙö¬~áÚö¶p¶ï©so+£åÖL{FI´Úú-mĺþ4h-ÿ¶cŒ„ËOØÂÙF¼ë¯Ì·¤NÛ3N¢©'lál#Þ›ûÌ3ØvÒ/õî÷3áågó¯¯$0,¬‡9 ž,3¤Âö hyä [8Ûˆ·¿¹0ØÛpÒõA²Þu ¡a¡`+Ì×aM”RA¿2¥»ßl-‹à°P°f÷û¸á4ý´³0œ¦?a gëñûÍySwF!±1O€Ž6B=ÏÞæMí¼CÝ€dûÅÞ®{ç.õšèËW¿ÀËBÉz¤§n÷F:úâéiׯzWâ¡>qY(Ùˆô2x#½(‘V7{Ù®^õÖ)ñP·z¸,”lEzF3TÀýeÉcr Öƒ<ßÅö¥©€ë—ÝIÓ°P°ä¡öK)Í›ŽL»ÇæMO G[Áö6Æߢ9íúb×+˨º›Æe¡d#Òÿþ¶£9výª%Z6/ %ë‘^:o‘0Ú|Ò/õö¢3¼]OŽs²Z‚qX(Øóè>Wjßjƒêi×Ǥ »RþyLJ6"=¯Þì•<éúð˜ï‡‡Ö‚ÃBÁF˜/ÃĆ4ðµ6Èl¡iX(Øòæ~ûÆÛÕ™ »>enëË3- %ë‘^{ç¢m‹Ìr}®÷3PëB ]\+Ä»oňæƒëÇ!™1ÿ¢ù AžÜçhäi×gŸV½TŸ¸,”lDz®®4gÞ™Î7ñöL¨5óæiáh#Ø‹»•!ÚšwÚõo¿_ñÔÆ<^J6"}y!ƒ8æLüú´ÄÔ‘'³¸,˜lÅÙF›O»ºèí²œê›ZJÖ#½õÞ„0Þ÷˜íê<Ü{e†«Ù . %‘ž¼éJ¼é1Ûõñ¡TÀô–G\J6" 粩€_ËÿÈåÞ,+ k„×½b„›I7çäS*Œz') ëQÞûÅæpsc¶ëW=)áPÏ»qY(ÙŠ4›È¦®MÀhâͲ°Fxb6·M…<½·ã—|ºûÕ}‰®>ó`W ×±wEŽw2îÎõmQæ³zðJÃÁj”çnYÉa‘ w¾_}ZG1Ì ÃêÑíg_ŠãîþK…¬—V[;yY(Ùˆó²›ÍT°¯îÞý<ÐÞ˜vrõøÝÊöV¦B®‰h?(/ %qzp” ¶:.‚›6ÚÈ5â‹×ÂSA¿Ô»)rÂûz…_æ‹Wy4,l„yqÁh5C-É;åêÔ 75ó²P²çqð-Ëî>¿TÈõköÊ?ÉBÉFœ/¯ž [¢TÈzšÞ¼Ãe¡d#ÎÎ^o3eú„ë##Úÿ‰ÃÁFŒ÷ í¤L¬_rþy  ÖƒùÂûe\J6â<Žl·j*äúôÊ?ÉBÉFœçíVM\Ÿ‚ÁþZ 6‚|yÙ¦B®NÀø®—…’8oÎ]óâlVM…\¿ƒ^ùç1Y(YóÜÍh¿j*àú 6Øâ°P°äÁ¹Q §€Y®OÀp ˆËBÉFœ}…|w»jú„ë÷/Úa‹ÃÁFŒé”5ò«®:€I6ì ãZv&ÞöÔTÈõ.ÚRËËBÉFœ//³"uTÈõ.\ÊÀe¡d#λ/ÿs7§¦B®ÞÁpC-/ %[q®¼ÈÓZ4ʰ>4Z‹F4,¬yé*rsÑ(˵ÇI¸d»Â¸F„{_ÃÝa ¹:AÂ]á¼,”lÄùòê;RâJ…\”„Ër¸,”lÄyòU2Ü}ì©ë’hï=/ %q¾´ ÅÄTÀõ‡I´üIÃBÁFéRb*äÊã$^ü„]a\+¾‚œû…TÈõGIô^J¶â¼ƒMª©`;í‚››jiX(Øñæ,{†køY®/Cá>. %ëq^/¿—JTÄSן#Ñ> Aö¦%“²Æ©O¾Õ»Å÷Ê?ÉBÉFœés‡Tȵ'vø¤v…qO®¾Ýå¾o×`åÔðéK–ëC"|ü‚ËBÉÖíÛÑVãTÀê lnަa¡`#ȳgîÅϸ²{ÂG»w'>‚Äe¡d#Σgv„Ïs|í>„]a\#¼ô¡[*äÚ ®0®a»iªù„p·³òæBØȵ Ÿ¥B®=;Â'W°+ŒkDØÛø>µÊrý¹>µÂe¡d#Λëa>³Ênõé>´¢a`#Ä•e¨ýx)Ë•›?\‚]a\5ÂK×ûŠlá²ü)W–·pQžv…q«g™ˆ–ãO·:é¢õx6BLW·S!צ]´O»Â¸F„éª`*äÚ´‹Ö1iW׈ðzMí¾/ ¦~m‡åf+ßXÅÄa¡`#Èž÷nÃEÌÌV×µh“v…qõðötÅ*rmÖEkl´+ŒkDxråÑòÏéV‡D´þƒÃÁFˆÙŠJút_wîï§Ï[ë?¬*ˆj„Ö»‹ˆV&N¹6ߢu ÚÆ5"¼{’pº|ºµÙΗqX XñàJÄÙÆÁV/7œiÀ®0®Þ©ó<9£}®'ûzñgº¹oA÷ç!W ׈ïÇ/Z~¿kO<½ïœò“aûö)/9?þß]ŒiY0ùˆóÿ»‹ó<€OæT°¯FþáûÝÉÏC®@®1Ž/Ÿü¾Û.luÞ›iW WïÜmžøÛQN¶z½Á~ÚÈ5⻸žsÑSÐÓ­^pô‡‚ïìc#}ÂóoC=è`W WÈ]Eà,&nmHÄhX XÄËâÊcÜo'_`Ï/èg·‰pEŸ†‚õ{·ö“'Äájhv«.‡Ò°@°âÁ5;¼ïÁ½]ßìªVçX WªhX ظuëW¯]üyŸãÞFßù†·­ó ;û:½ 4¿ð>-è‘ûÞÙ#¤^»™­ë¿á -¨¤Âm7ø;¯ûÌ—yð½ÖWõ-ýgú…2wrÕå¨{d‡e¡du5ZûÎ5Ý…è7<¾?½TVRáï ÓýO½Î]•ß?õªm’yY0YÎ~z¸§µ­À2ZºI…ëÌ£2M´ªô´`´u ½ô¤\µV~ûoûÙ³£C0ùO<.=ÂñŒ6ÒÙµåpŸ8½á -ñ¥ÂuÄbV¬U% £y覗{zЊˆk¿/0-­éabKŸ©€×¼*áPžŒÖ‡žŸÞ”«VãñäaÕÕTÀ¯@~ß*?@ Gÿ) ¿/Ûû÷ÞD¡dcŽïle8°ãš•nÐÊuÐ‚ÑÆ÷Ò½’Ä Zl;ç¶ÆM FëCoœØÂv*`Ç5÷J8ÔšO FëCÏOÊU«5qvn?Ü´`´1ôœ«^ôˆâ„׬¤‰ƒšÜò´`´1ôÜ´’q jr;¹—&/-­½É¹êEXNØqÍJf4¨ùO FëCÏO+™Ñ¨æäù×âÁ j*èë QÔ¶š§…£õmõä~xï£`´>Ï—uƒƒ úÚËJ žŽVrÖu…O¢Ò§¬fÏí§g4,¬èuõÖÇ”TàÏùV*èÚEûåß‹ÞoÚy¨“ yT +Aøç)X(XÛà­«{^RAׇFø´È-{P²è=ÐI…\ÑsÄmìáãœTÐõ8‡ζËOÑ 6†Æê=𺤂®Ç9|Rä–ößÊF · >ÌI]¿h¯ü{Ñ»wö‹¤O¹~Éá£/>þÖGÆ>zwHÞ€TÐõ‹å¯XÕôTÐõ‹¸åðó·²1:vçƒÐ]¥O]½h·|^ôÖÞ Ù[ðN]¿èh•Þ-‡OÛ¿–Õѱu“ó©â.¤§‚®Ú+¿/z¦Ë© _ªña ¹_/ðaNÖ+Ÿ8,lŒ ïí.ý§‚®èyÅÖÙo_…÷ÁF˜Ý ´÷@!t=Ì^ù÷¢{÷í­Í§‚®_tô@aë+M)áÝŒP²>:z÷í-C§‚®Ú+¿/Ú›n«_'Ü' Aúç9Z8Zm[Ýr#·ÙJÖÇôpü`4VæHì ´“þyŽŽÖ‡Ç0û¦¸w‡.¬_qnýáöçBÉÆ5ÏÎGV´åkYŸ„ãñF¸Þ¥‚¶![WižŽÖÈä܇E{h¾…õá1ùâg›§l ¼æãÍ'lál#ÚÇž|º¤‚ö ëè3‘§…£«ÁÆRñ2Ôýå.2Å.ÃÜ +Þâ|ØF»ä¾–á=¼Q65j§Á)×׎øû¿OØÂÙúyå•dž/”¬î HŸ°'ÎцƒhÁhct¸ú‰âÍwßÂÆØðáDNÙçhËÁ¶p¶íüYu0HîjnÍé O GÁ>:^Èmu*lãF¶§ØÂÙV¼‘hOÍ){¦d´«æ [8ÛŠöŠî®Së_·oÍhX(Øòâ®®D3ÜL{V¾h†ËÓÂÑF°·ÚC{*“íúº×Ê<` gñvž +{Jµ3/Þû襞££õH¯cí¬¤=˶g„„“°lál#ÞÞƒíhç){îd´‡ó [8ÛˆöîÜg7$‘ÙöŒ’pù€-œmÅ۹ώ6Ξ²çNzíŸmál=Ú¼kMÜý¶È0»l–†5Â;¹7}á´1ÛžIN°…³xû: ÂýëöÜÇhû´`´iç§¡ü´}ôhùé[8Ûˆ÷îÞd‡3šl{fd8¥yÀÎÖã½{“”ÄT}Cã”w2üù§'lál#Ú½{C©Øzq$ÛõYÙPyÀÎV?ˆ²íùåa£ò7ä{y¼­1ä=Ïò¿îÿ†….uÂó´p´1«ßqiO«÷ê'QÚÓêlál+Þ¾4/þ2Y–=ë”×þyÐÎ6¢½¸÷Üá]¶=ëT¸D÷€-œ­Æ{ï:wÞ-cœ¶ç^FËOØÂÙF¼û¯:²Õ&3왓^úç9Z0ÚŠ´{Ï-‡ž¶gFFË¡OØÂÙF¼gwÞ-jœ¶ç^F«OØÂÙF¼½¬Ñ÷kOÙ3+£oØ>a gÑ^Ý;Ìh}ô´=³2Z}ÂÎÖãÝã½n© _êm†ûý ¿æGËppX(Øsï~{Ë0©°S&\>zÂζâíL&£o럲çNF¿Zü„-œmD{poä—`)ú´=‹Ÿ×þyÐÎ6â7¼¥‚®.Cw¿ª‰$ [aöæìášÔi{¿hMê [8Ûˆ·ó¥èÇJ2ì¹Ñ¯•<@ F[‘vçKÑÚöi{¾hmû [8[÷Ð{söxAjp×_â©lál#ÞÎì†?ÇsÊž;éµ´…³h{_²i¨mgÛ3+õílál#Þ«;™ פwý%^“zÀÎ6âí)!\qͶgœ„+®ØÂÙz¼ÇÁ½ï§ï£;U§ïØÂÙF¼Ý¯&Ä‹SÙvŒ“xqê[8Ûˆ÷L7Ĥ‚îõ©ÓÚÆó-m{uo½ÃyåèN£â‰å¶p¶o÷› ñ¢I¶=“2\4yÀÎÖã=yßúoHv&÷Æ>žì<` gñ~ïM¾Ý$}ª¯|uê¾fža…a­Øº79á2I¶=s0\&yÀÎ6âín—'’Ùö\w8‘|ÀÎÖã=»Ûgã‰M¶=×Nl°…³x¯#¹þ¥ÂÞOr»šå¡¿È—_6P ܸ,˜¬¾; ‡{Z­ÐÍ[ÏÊ‚ÉÆ¨Û8QJ}}9—JïxZ8Zöâî!ާwÙö,Máôî[8ÛŠ÷‚ö^¥¾Î¦[Œ†…‚ ϳïÆ_¥=í{wÏ¡1\w7:ÝÊ?ÉBÉV¤Ý;àpö¼x_þmÈž°…³­xû:,½]@©€«“1Ü·DÃBÁz×ÎÝÉÐ)ˇšFg»>'e’«I4. %‘î'v»ž Yí`hÎ0hX(؈ò0°Y@*äú5;á÷%thšS0úzåiׇó¬Lµ®‚ËBÉê'¨ÿ“í?mο…ñ¼_s"ÕJýš)·?ÞšÒ°P°æ­«|1¶5Uɰþ‰¬ÖT…†…‚ ÷ÎT¥áíÏl×EYŽÔ‚&. %‘öe›áóßâ ³q†]\+ÀîmsøÕÃlׇŪ 8µ„ËBÉz¤÷Á½;R2Lý}¡lׯz»¿jým!\J6"½º—çp£¶ëW½+ñPŸƒ¸,”|é±ûßÑdŸÝ©€ß¤ï÷<+ k„wp/Ρó‹]c§ ·Ûgà#²P²iö¹>ÝÊÀí2pUÕíæ~î…É/v}@ôÊP»m#DJÖ#ÝÞç^¬¥ùbׯzPâqÛÐüˆ,”lDz*|¢”q_¿?=ÜVýZjÈ‚ÉFœ7÷©L¯ŒèÛ3Á‹]ÊùÚ}Wí#²P²éaò®Ò±.Ä‹]¿jå(â¾ñY(Ùˆôî^¥Cý‡»~ÕJÅù¾ûðY(YôØíŽM87Éì±Þ}Ÿóü<ä äñÜ«s¨³ób×G…RR¼ïë|DJ6"}ùøØ÷;þT°µ‘ÎO`W ׊¯óØ+r¢};£-²åLûZ8ZõÔ¹7¡ÞÅ‹]Ÿ€Jñö¾sñY(Ùˆô¿›§ö 'ýó-m„nLŸ°zþÕÖ·ø,lÅØ½oVÎOî»/v}*g÷=‹ÈBÉz¤çã'.¸¦´TÈõÑj¤{DJ6â³ã~e_¹ìËVw,+ k„wvÎ’ðÞyùxñøo¹ }óŒËBÉFœç¦ÎÛ2• ¹~Cm^ÈBÉzœ×Ë{ˆÈF4r}l„7ϸ,”lĹwnž½i©ëw0ÔL÷ˆ,”lÄy¶ÊÛ“”,×ÇF8IÁe¡d#Î+Ûý—>áúý 5,> ë1ÞŽZ+˜R¥‚ÎÕ)â áç9Z8Úöå‡;‘¼*r}†SA\J6â<ø6vîvËTÈÕ;oÅe¡d#Îô¦?ò+ÿûyµö4v…q­/p ´g¡‹–5xZ8ÚöâÌSÂùà¶8÷üá|—…’8¯¾<ÅÝHœ ¹¾ÔyåŸÇd¡d=Î;æB®-wá¬v…q÷Î}y8ãÎrýÞ…3n\J6âìÜÏyûáÓ'\Ÿ{^øç)X ؈ñÇ'€ A*äÚì ×4`W׈ðå÷;‘ò@*äú½ W4pY(Ùˆóæ\.¼/¤B®Ï¾ð ¸,”lÄmÎNŸìÐý«•ü OÝ~ÿ¦¡º‡£a¡àûOª†äþ^ÖŸOÇç9Y0Yp}G×¢R!×–|¯ûó+ŒkDxð¥ÀáÊÙ)Wï]¸rÆËBÉFœGg ì}K+rýFß,ãe¡d#ÎúÚE*\Ç"7Ü/rÚF€—“0ÓU¨Tȵ….Z7£]a\#ÂÎÀpÍì”ë‹\´fÆËBÉFœwߺì}§3}Âõû} ‡‚õ÷½³Ò­šrmöEkf´+ŒkDx˜ÉŽÇT¸ãý}kíÏ„YaX#º—ßtEŠ{©ëëZ´ÉËBÉFœ'gGIsÔW©O¹~½òÏc²P²gºÆ— ¹¶¾E«’´+ŒkDøRƒcú•RA¿ÔÛ/égx/ðåÇôðP°fgõ"Zø=åú"-üò²P²çÝY½ð¾ú ¹~£¯«ó²P²ç®l¥B®,tñZì ã¾Tž˜N¥TÐõenº_æôðP°fgõ"\îÌr}Š„Ë¸,”lÄ~³>}Âõûý 1^}Õ‹x%nX=Õ€xv…q_~&)i¥B®ß»p—…’õ8tM rmd„«°+ŒkDxr&$á Æ89·†á . %q¦“¨Tȵ‘Nû`W׈ðîÜÁ…S¾,×ï]8åÃe¡d=ÎÓðþrð÷¥ðT°vûšK÷4,l„xtnàÂÉH–k“/œŠÀ®0®aç,âyÈä|ã,žˆà²P²çÑqÿÂoßîëôð_3È·ðÏS°@°bz_Ÿ ¹6ù™ì ãêž/?²¼ó“ ·:$¢/)á°@°bzKŸ ¹6(ÂIì ãváè›3™­ˆè›3´+Œk…·GÏ"S«;•æÓS 6‚¼;÷Åá/˵YNð`WWðÒ»ökÊꣿ½Ýê¼óÂ?OÁÁVˆ'ôp,p}ÞEóhX(ØòðçcøL™"Ã×Ï]0e  6‚L'¤©kË[8…†]a\#‹k×~g!»ÕÅ-üÒ !^½/v¯ùÑ´þÎe*äw¡zK‡…‚(¿…ͽ̙ ¹~ÍNø÷’×Á3õÂ/lu‡_€]a\}D¬ãàηÈR!×GDôÅ77ìjBÁF”—MòR«Ïþæ´”†…‚ ¯®¤)Ü›žÝêÜ 7§Ó°@🿯x›Ñ9-¬Š­·û»šó¼ ×r4Ï£a¡`#ȃgƒï>Înm ÇÛiX Ø ñŸŸi`Ré ¿&È@žøÓ°P°d´ÿ1}²Õ1áur…qõðî£ç ï"Ìnõ‚Ãm„4,l„Þ·¥Vî]ó>“e…aðn®]¸{0»Õñn¤a`5ÄCoRׯDp»³Â°Fx½I®³j• ¸»l´¡JÛ´p´jW A´y0³Õ‰m¤]a\#¼Þœ1XËåú€^ï´V0§]\u\ŒÝèÜó»[‘RA×ÇE´Ê-‡ûú¿–@ã§V© ë£c»Ú¾‡…‚0{ó wÛW*èúxöÊ?aÙ»JÖÝKV)NÜݳÕíháh#ÔÞ·Žg¥ñ§Å.t}|x埰ìÝ~ %ö¾ênúJ]¿èh§š_޶È-ëö¿/æíFJ]¿èh•_Ž6m-ëö¿åàmàH]¿èh׉_ö>h…’@÷ð“%}ÊVVëã—“@ÏÎ5ÚÝÈ‘ º::ÂÝ'nÙý˜JÖ=uÞʼ·å"t=ÐÑ6·îÚþZ6½8×h÷¡}*èz £n9ÜNüµlÚ™u:룩€ûËêTtqX(ز÷Ô4ÚËqÊÆ36lÿ|bmϬ Ÿ<` gñÞ'´;1p$H?% ëAžoº/GMîÒK¼õ€-œmÄÛûâjô+ˆ§ì¹“Ñï >a gÑv¿¸?6ȶgéóÚ?ÚÂÙF¼Ý¯Š—K&wi ^.yÀζâíL'£ßFzÀÎ6âíØ‹2°ÕzÆê#ƒ2úÔb [Qv?{ÃIûêþ¢IEHÜ)­–­) Ë ÃêáÝz÷Kyá(d»> Gev«\J¶"íÞÔ„«!›û³ñjȶp¶ïiuõ/÷=Äåy»‹û9þP@¶ë£oRƵšþã²P²qÝöñÔsÚ žú?` gñ>ž1à1J*èki’:üáiáh=Ø»kqr¾åöVïÚþìÀA×§ù¬, j円‚{çî)×lv÷Wâ5›lál#Þóäš-Î׌Þîê®[+u=ý½ïl×Gߢ kµ>ËBÉꜻÁ»i ¿·yÚõ«^•xh93/ %‘Þ¼Ž¾r•éú5oJ4´‡‚(ïæW¬k'{,t3V” ]\=¾×o1›ºTÐׂ´}€Ž6‚=ºƒÑ«N»>wenkY/ %‘ÞÜÁèK'§]½ê­»¿jõ•^JÖ#=LÞ@/J µS¾LׯY90SûÄqX ؈òî^9¢=´§]¿jåGí åe¡d=Òã¿\ôÑ’ ú½—¡‡4,l„yr/ÐÑÑÓ®åhAmåe¡d=Òîõ9ÚE7;;¥­vÐÑ®0®áÙ]‘Qªj'×iׯZ©­©}\¼,”¬Gz>~¦«¾aT°jGÑ)_ó ¦£ˆ—…’­8{WçpGÑi×G‡RûRû‰xY(Ùˆ´sUr7æ¤B®¯üó˜,”lÄÙ= •²¨ÚL”éúØP*Œj' Q>^Ú¤Ê_©p‡Y݈fyÛ®òûG¢ôÕ™–“Õ7üô~OëS{ïYY0Yu‹·úìmRJ…\_¢U¼,”lÄÙÝÂn¬:íê=ܵҗzæËBÉF¤ç>×ÛD” ¹>:¢O¼,”lÅÙ½-ˆ6>v}thUFµ ËBÉF¤·â§Ã©¢Z†-ÇDVÕpY0YóÚ l¶™ YíoÏqY(ÙˆsïÌÛ¼ÍT©ëw0ÚÿÅËBÉFœïmËt}­SrMµû ‡‚(Ïö ííUˆ,×g`¸ ËBÉFœg¦¢Ô‘Ô.¸S®ßA¯üó˜,”¬Çy»¼ý‡dW©ëc#œâ²P²çÁ™§xûöR!×ï`¸×—…’8/Î]]8Ìr}l„óA\J6â¼:wuÞÉTÈõ;îéÄe¡d=Î;½ãO…üÊ3ÿ ÛsØÆ5"Ü;wtáü$Ëõ{ÎOpY(ÙˆóàÜÑy›#S!×ï`¸¡—…’õ#}ʹOÿç²f2åì絋ù÷×Ëîÿ7ýßnµlã²`²1ìþÅŽL~R!פpº»Â¸F„g NÕöʧj¸,”lÄyó¥îžçTÈÕ;ïÓÆe¡d5ÎKG§—©k30šÓ®0®áÁ™¤E“áS®ß»h2ÌËBÉFœG¸}?r}öyåŸÇd¡d#ÎtŸ ¹6£%ÚÆ5"¼:“´h¹á”ë÷.Znàe¡d+Î Ûä• yü½b¨/ ‡…‚(§Ú\ïX*äú5;áË%û²w÷ J©ë˲WþyLJÖ‡FÿñI. ²“ ¹¶4GkQ´+ŒkDxp¦«Ñ:Ô)×ï]´ÅËBÉâ\^3¶•—Ü CcrfØÞ—ÖR!׌è‹v¼,”lÄ™®¾¤B®-^÷ç!W׈ðæË°Ãµ¢S®Þ»p­ˆ—…’8ïÎ Ûû f*äúŒ¾4ÊËBÉzœºú’ ¹6Ãõ"ØÆ5"<ú2ìx­(ËõÙ®á²P²çÉ™Hy_&N…\¿ƒÑ yY(ÙˆóÜÿôTÈÿÐÛ/mewŸ®î?ñÀÕçì ä!þøåq À• ¹¶È…Kr°+ŒkDxóåªñªË°ù¶àñª . %ëq_Kp¿Ÿ ¹~½òÏc²P²gºŽ‘ ¹6ÕØÆ5"<9¿p #ËõÙ.aà²P²gï7r¼ŸH…\¿ƒÑ¯$ð²P²gº( ¹2ãe ØÆ5"\ù‰ÎöÆXùÅËö. %ëqžœß^p¿]Ÿ ¹zÃ_àe¡d#ÎÞãè ötyd+n=Ãæiáh#Ô¿Œ Ô_R!×»pÅv…qOÎ0\-š&g2®á²P²gçgDÜŠH…\_è¼òÏc²P²çËg¯ÌÅ9Úø’aÏ2üÒÓ´p´j¸“ ¹¶Ø…+G°+Œ«Gxv~A$^5šoýÅ«F¸,”lÅyöÔJ”ÅH}òt_]xÿFÏ·ðÏS°@°bçGZÜ_âH…\–xåŸÇd¡d#Ît©+rm‘ ç`W׈°ó-ñÂÜìüØI¼0‡ËBÉVœ7Ï¢¬Ìõ­ÊÓ­.q^øç)X Øqåw¦Û+só姛ɮËÁ®0®áÅùõ›xMnq¾D¯Éá²P²ç¾÷,á*³[zá7*iX Øñ¸Â%ÄTÐy\ôdá“§…£`Ó%®Tȵ•.\”ƒ]a\#ÂÎï8Å rÿ?m÷’于+jx*Õgä½Í3”ÛÃüGpWZTZ¦  uª"OÄù– ¦H|hqÖŒäpY(ÙŠ³kn>¸šÝj?>¹JÃÁFˆ÷ÞÛ3G«ž™öôqѪ'O GëÁöÞc¯É­®û§â9ØÆ5"ì¼/+^*ZwOÅKE¸,”lÅÙ5ÁŸÍnµŸ ¥a`#ÄSþ,A¯vD± ­R!÷FŸßv / &ž•ŒpQ.˵^.\’ƒ]a\#«k†­ôöúÊìVß=/üs,¬‡Ø{9p¼X´¹îYŠ—Š`W׈ðQ¡NÀ¤Â?ÿnÍvXVÖˆîàšê…OPf·úÂ…PÒ°@°bº ¹öÊ…k°+ŒkEx‚ †© ùÏÀîïäiáh#Ø«k >Þ—Ýêû>ßGÃÁêm½Ë±5i˜µ9ÏùUyÌn~ÿzüzÿœû‡‘ÿû ZL>ÂñZÜî¼þ(^\Ø]× ÅK °+Œ«¿Ó{ï^‰V#3í銢ÕHžŽ6‚=ºfeáÓŽÙ­vGáãŽ4,l„øùë!åô _{"¨‚CÃBÁF7ÏÔ!~/»µV?„GÃÁjˆ×nôäZá“4§[}`/üs,¬æZk—Ïì‰Ë9¬>ŠCËò—¸,¿À¤&[7ÐÂÑjºµv»g| Ÿ8ÝêOè…î‚‚õ÷ºï‹/HIëd;m®µ¨…ÃBÁFˆ'×èÝR}ºÕ6ÝSÃÁFˆù/—´¤B~üx—eÑ®@®b_f>ærÂÓð÷~(†Ý¯õÎzø³šð´`´éÝ•jEwUŸnõí‹n«Æa`=ă/‡ 8aG³Ø”§æ<-mDzv¥pѨ§[mѨ8,l…xK©© ­òEcý÷Z8ZŸ’ ûàê9¢gNØñîÊë­æs<-m4ëýÛ•#5åÎk‘ŸEæ×\ÿ€—®»ÂGö—W ÖÃ<ºN/‡÷£žnµ»óÂ?wÁÁFˆá9k*àIm­³l 6‚ì›[† œpµ‹[º^é=ÕÄ™§£­HoÞŽ9¸DwÒõnnøÜÍ©É3 av`oI=Ýj7Ý“ŠÃÁFˆ}óËð&öv¼}£òb«óžŒÖ#=¹N؆·¦žní ïMÅa`+ÄÕ}/§½øÖxRA[ª ýs-­O§ËÎ  |› ÷ñî`¹vrÖ<ûæÙJ2®ž8aG'7)ý§:3áiÁh#Ò®#¶á-Á§[íè¼ðÏ]°@°â÷Ï]QºéýjªBÇÓÂÑz×콄,zà„ï଼ÞjêÌÓ‚Ñz³Î÷aU‚TÀÇ ó÷U× a¡`+Èži`xÃñéV;;/üs,l„ØyCVô Á ;Þ½Ey­Õù O Fë‘^z_VÝq|ÂŽgÖVúÕtƒ§£HÿÖ¹ÑyU*hkðn ò´p´žr8ïf o@>aGQæµ›æiÁh£Y¿q¦éòK·T »¹zcv^gßêaG³PÖŠuÝ•§£õƼßJÅV‹S_;f}›†…‚ ¯®”#¾‰<Ãõ†ÑwJ›SW«xZ0ÚŠôŒ®±¥®7Žèª ëAvÞ ßMžaGÃPŒuÿO F‘ž'8Mý¼?~û·5¦a¡`=ÝØÖѹƒÌ»G;ô¬ý~aùç6Y(ÙhÏ—>‰¨}¥¾\‹óùSÖÙîUîò¨—ëpY0ÙŠ3»>°£¯S–çu#O Fë‘Þ‡·á˜ü9Ãê5Íù3 [A^œý³÷ØA*èz_>+ËBÉF GßDEÙŒ¤•Ȱã TÖŽu3O F‘>. Í©p÷¿M!¯¯à”Ÿw¾¨ûcOd¦^cLª‚¨Fh×·²33Ìp½ƒ‹ÎiX(Ø òîì’½ç9RA×»·ð!\J6í¼McQºäE ³óôèÒ/J¿YÒ?÷Ñ‚Ñj¤·nôÍý;áSAךG|û>/ %[f7i§v4eæºh»cn £Ho¾ÄÙ¿Q;t½yDw—ó²P²hß‘Ìðæòv4m‰TÛ¾q-­Gº‡§¯©€»¿j 2݆YaX#¼£/¯óïN]û¢›žyY(ٴﬠ{ñ†'©€kM.8ùYaXõ†´­ßò)èõo…±œº¯¹o;N®Ù^ÿëþׯÆ,ûZ8ÚhÉ»7oönN]ý¼òÏm²P²hvWëž²§yD7?Þa gëÑ^zo>çÝL˜ ºÞD¢; yY(Ù´owI|ûØ){šGtÙ¶p¶mçÿ†¬TÐõ&â•n“…’@{w˜„·e¹Þ<6‘Ý` g[ÑÞ¸‰@*Ôë#Ó–eŸHW WïêfÚ>y¹Áζâí\w ïŠÌ²§· ÁÎ6¢í<*àßg˜ ºþJ†7Gâ²P²èmõv#áÉb¶=¯cx²xƒ-œmÄÛ»Ó'¼U2Ëž×1¼Yò[8ÛŠö‚®¥6ºyEkûÍiQZ8Zõ6Õìöéy¶=/dxz~ƒ-œmÅÛ9k o Ì²ç… o¡¼ÁÎ6¢ý>_ÂféÙ®·’†Yú ¶pv(ÞÈ<ýÃ3ã^ž×9;X¢›a³ìiy^ûçF[8[oÇG¥©}5é•fu÷K†‡øùy uŒ¡a¡`ýÈ‚[î?Ëj´÷r²`ò[4ž=¼ äHîK×xC&ç´®¡^‘mO¿®WÜ` gñön. ïÑÏ²ç— ïÒ¿ÁÎ6¢½¸óêpí3ÛýcpY>íÈn¯}Þ` g[ñžÈi©p=öð¹ÇÖûZL6Æ\7=~¦ÕúÍ~ÜžÊÉ‚Éj«Û»jµ¢¹XvÚž± Z,»Ãζâí¬(D‹œ²ç—Œ¹Ãζ¢]›µ'OÚh$QúùÔïŸÎ¡– NÛ3‚E— î°…³Õ‰ÇÞ µœµµ ÐFãŽo:r§ÒSA÷Æ{Óx–þZ8ÚöÛŒ%Ýx ò”/«°¯yßœ‡öéâ>Ä×ͺ¹Fˆç·r$Un?mÏ-·ßa g[ñv–S£*OÙóKFTÞa gÑ^ÜëÝÑ¥»Óö ŽÑ¥»;lál#Þëñæ<¦LŸšwëM§<Íä½ÌMd˜/îC¯ýs£-œmÄÛ{D«S:>uVeÇ/>Ôz‡-œmDû}Ù€Z>ízÇ_¾Ãζâ=Ë?©pó3íþÜä ä^Ü¥¾èÊi{^–èʶp¶o_©/|¾ø”=Ýž×þ¹ÑÎ6¢½ºgJÑÅØÓöt{ÑÅØ;lál=ÞCïž­‡KÙƒ·ÚPʾÁζâíÜ=Ö}Êž·2z°û[8ÛˆvµnÛ¾,–mÏ[^»ÁÎ6â]­s5/ÔdúxìãÓfÐ.òháh+Ø \‚Om}±uဧ…£`/î"I¸Î:xkŠ uÖlál#ÞÞ#äÑ{"NÙ3ÞDoЏÃÎ6¢½¹çOá5›l{Æ›ðšÍ ¶p¶ïqðÎáãEÀÑ]ðŠo°…³­x;çð‹òÔj8z_Ðq‡-œmDÛ{´¼aA!Ûž·ÒkÿÜh gñ^½søxjt×câ5ªlál+ÞÎ9|ôÚŽSöü’Ñ‹;î°…³h{O˜7Ô»³íy+Ãõîlál=ÞS7:w)wŸw)«}I–õægÆpX(؈rß;£Ü¦Õ:`–ëÏ섟ێ†¯Áß` g/äâœKU MÄ{ácC©ov—µâ¥¾lál=Þ‹ûÄv¼mOÓ²o°…³x·õÜÆ—TÐõã6ð Ë~˜^аP°fïu ¥œÅ]¶ˆ—rn°…³x»O[Æ •ËìMYã…Êlálõ.–}ÙG†ß_[Ùõ·åwç1$üþõ˜Yo¿3ëù¿ÍxÛqZ8Zo«ûøX|rmÏ/ž\ß` gñîCGÃ/þý!ùT¸Ïú°$– Ú:÷ßZÈãiáh£5¯ÞRJü›l×ßÁQy»ÕL—…’­Hïè‚p*àþò¾0KØ4,¬¹ÿ¯ëú·ov#¼'íy C¼[háh#؃sâ½µæi×ßÃIyÃ?'xwÈBÉF¤Ww%64ÒžšßB G[Áv§Ò±K&žv½‰ÌJãû\.½CJÖ#ÝîL/4C|Òžš!ÞB GÁÝ™ž²h¦Üvð´ëMdQßçÒDzP²饇7¥‚î7¦i Ó-´p´ì ÍQÓ«{=$Õ¼+kØåÅî5xÚõwpUÞîÏ·Ü! %‘ÞÝIM¨ðñ¤óHÔT~£õ`¿ý:¶— ¶Sû£ üs,l…ØHÇŽª?íú[¨l¸Rªß! %‘žÜyc´ì‘iÏ;-{ð´pt5ØÜn‰·X¯{G^ßÄìŽW÷!¸Þ¤Y÷-ʮ◎ßì9b‡Ÿvõ-œ:åý.åŸÛd¡d+Òîú`´²”iÏ;­,ñ´p´ìñØví§O«àMûÿo€…‚OÞÙJð´ôÓ®¿…½ò~—òÏm²P²éÙ=[‰ï2íy£Å;žŽ6‚ÍV Ò«Û)ãwkUQ­Ð¾U¨j]¦­[Z«u<-m{÷N ƒ'çŸv½«”NT-qà²P²é ®¤¾öûL…ƒ†…‚ ¿tùfsŽà~Úõ¦¡ìDQÎoß! %[‘È]l©pµ«kÙuÇ»¹Ê®»ðܹçØQð§]oÊÆå ø²P²Þ”gxV• XïçZç4,ly]?Ÿû¨o*duÅ1,ÿÜ& %[qv't‹Òm¨ÓÀÙy¨zR6ž(‡“ï…’Hï×,†ÈøSAwêàÚ:K¡a¡`=ÌÝ/äßTÈõ—0v,ùY(Ùˆ³÷xôXòÓ®¿„‹òz«»ìpY(Ùˆô˞ͺTÜVéA¿3<­Wøa>xuÆMÃBÁF˜Ç·Ã…Ì„;ÃÇï7Ü„›†…‚ Ï»o ½Sz:½)Ïö™„°üs›,”lÄÙ{&9zRöi×{:mƒ…ºY—…’ë‘†ÖæË(?ÏÞ2[ X¶Œo#kDw¥·˜¤‚®$ûç‘D-ÏѰP°æmW|RÁ>ZÅðáŠÖõ)ØÈÕã»æbTML…{-EAõO\LÖk kï+¹£§B®Ô^ùç6Y(ÙhÎýÛvE¦ša=ñl­€Ò°P°äÞ#• º:ÌÝçD-çÓ°P°æË…ÅHÑ6²ºé£½ÐŒËBÉFœ_]Î}ä?r½Ÿ‹]Sp‡,”lÄysW‹¢Ûº2] ûÏ/¡ZΧa¡`=ÌÛå–i¤d› ¹þ †Ë̸,”lĹwŒ¼§ýS!×_Áð ¸,”lÄyz~Y™XéI|ü|3¹8…Ë‚ÉFœý~¸þyÀÕ70^þ¤a`#Æ«sè½J!rýç _ÿ€ËBÉzœ÷¾z©fc]#ËÖÞôƺ. &ëu½÷ÍQâu½÷åûñº. % zpÎQå™Õ5“,×A¯üs›,”lÄ™ž¿¦B~tI38ã†]a\#‹ozŸmï‹/Õ϶qY(ÙŠó.§¥‚í´Ÿ¯yù†…‚¯Î ÷&TÈõ—$|{ . %«qîÑ­$éª^®ø/3¢ÌÎÃ+;?ØUMã`VVMàþpå%rm‰ÖŠhWWo½Ýà{-¢e¢ ׇŽh•‡‚Îyµ÷f•TÈõŸ/z / %qÎå'jód*`õ‘[·{â°P°ä—ï²u­TÈ•..\ˆ£]a\#«³j-Ãrý·‹–áxY(ÙŠófçn»1NøòµÓ2!Êò<¾ÊãCžÕi/ &qÞ|Õ¡IySÔ+z婢[þ¹MJÖãœlÿd*àú`Üñ‰ÃBÁFéòl*äÚp-(Ó®0®áÁY‚[‚ÅäS®ÿv^ùç6Y(Ùˆó諹ï^J…\ïâ¼òÏm²P²ç·£ÞÌb_ÿò-Op­‡…‚õBQ?/èÊTÀÕ‘$ºå‡…‚–L/4¤B®%Ñ¥ÚƵ"Ì.3¤Öwž7.Œà°P°dûæüæu‘¾r}ó² 1Þ}%O÷Ía©ëµWþ¹MJÖãËót•§Ç»÷Ë«…8\L~ sC8æÏt9M½ü€‹o\õ^a˜ ¹>FE¯]äe¡ä·_ðùÌ3û ïöìþ‹Ÿ/Ÿf{×>aW ×0½Æ• ¹6¬†Wå`W׈ðæ+ýÆWв\ýíâ+E¸,”lÄyw–~½·‡¦B®ÿ‚ÑOyY(YóØÙ󾿹 ×;¹èŠ A¦×^R!׺9¯ûs“+ŒkDØ79‹/9ç9ñu"6bì¼·×}3k*äúϽM–—…’­8Û)FóBQ†«\x¡ˆ†…‚ /;º( 8¯ ®Ü2 AÞœUÉð:F–kãHxv…qïÎ/¼ˆ‘åú8^ÄÀe¡d=Γóêi÷å©뿠Wþ¹MJ6âÜ£+/éÕ­#Ñ¥"ØÈ5L/ ¤B®uqáE ØÆ5"<9+Dáúw–ëÝ[¸þËBÉFœÙâlzu»¿ê7SJFUAT+´Îâ›÷²æTÈõ—#zÁ4/ %q¦ ³©+[¼” »Â¸z„í§ö"²Ý÷´—aW׈og§Íåã ׺¶hñ˜e…aðVòÀöºf–k/\¸¬ »Â¸F„wÄÆ‹š³ó&œxQ—…’­8/Žß/|+ÐéÎßoøþ¹ ¶BÌVaSWz·pÕ˜e…aðÒe«Tȵ¾-\hƒ]a\=‹óâÝx‘mq^Ò/²á²P²çÝÓ‡/¬Énµg ßXCÃÁFˆÙº`zuk}[´Š‰ª‚¨FhéZU*äZ¿®®Á®0®á…­¤¤W¸þË…‹?4,lÅxtüvñj²[ëÑâWÔа@°âµsNžÃÕŸ,×^¼põv…q÷žI]üž‰ìV›„þ¹ 6Bü›¼` ©`S6ï?]ó2ì äZñ…k)©k/]¸ú»Â¸F„ó:üÁ_^• yþûå¨;¬hX(¸åcÁîc”¿òqÊýã¡ß»¶Ó—‹û¼dÊ-cÜêZ!~¤ÛÜÝ´©'µY៻`¡`ýš”uñ'â÷wd·:B‡/ð a`½!oÝâÉ)¢Kv™­ŽÑÑ5;Øȵâ ×S!ׯèpv…q­T°#שGµck=%NÃBÁF”ûÕeçãTÈõgŽ>ßWY%| Fv«}qø 6Zż;Fð"cfk½qx•vrø:o¯Ž—_7×mÐñê+ì ãê7'lË€ö>BÁF£X]•6er®ëÏnµ—ðÂ?wÁÁzˆ÷ÞSi ¯Øe¶ÚOD×ì`W ׈ïàšØ)¹ ~:»Õá…î‚‚_ŽÏ ×¢¦B~ Kfw^/îaþêjvro®3| 1»Õ6>ÑHÃÁjˆ‡ntuÑJ§[}àè %6B¼yúâð±ƒÓ­=pøÜ ë!î'OGÞ¸}ºÕŽîÜÆa`#ÄÞt;X:áî²*Ý@ G¡Þ=}rxëëéVÛ†þ¹ ÖC<‰wNÞ¾¿ß!•ðª–ñ²áãPu=îð׿£ó0+ külkµwkÍÅ3[Û@náiáh=köÞDãÝŒü„Gç’£wcE*d½gÂ?wÁBÁú»²ŽÞ%Òη_#rõ™½ðó‘E%èGzeûKŽHœ8YaX£=¬®™_§¼Íº»y—»R!×ÛYt£†v6`¡`ã×Û½K—ʆ‡·½© ëí•ÿÚyrÜ}à «_à¢y*èz4Â+ýn9º;è[XouÛQ”×âSA×Ú+?úå"6bv ÚJ·Zk<-m´ß!j÷éˆ ¼3“T°:¼¶Î¤hX(ØøíÜ[ÿ¼kÛ© ëowxAÞ-{G+¡d+ÐÞTÜ»fž ºþÐ^ùï¡wߨ­¬ ½mD~ºµ/36fù{íK‡i>ì 䪗’üƒIhxCá·²þ†;ŽÀUô*?ÐsÊì.ëÕ=ê’¿ºeÖÈ5Bì;eïÞ&ü„ž+³§¾Ž|ÔÊO G¯öîÌôÃ[c¿•Õv7výä}·ƒ‹']Y¶Ï/‹¶¦ÃBÁF˜}÷ÜûyŸð4ÀÕëTÐõc42¼ìø0¼özã°P°újÝ gÌBÉF›ƒç<©€¯Sxd–†ÃBÁF5ÅèbÉ [UãrÉ ´p´ê{6óŽ}çÌ›½“4¡d=½·¨ØÅVNØñF(ß@ G¡fg˜©p;e+BÛ|˜UQ­Ð²)Ÿ°·X\ô:aOC .{Ý@ Gë¿áÐUíÆæI[K3Ìháh#ØýóõÌ2D*h=wÎðÚ]àÃ|ðz¨aX(س·’æ­b§Bö¼‰^ûçF[8Ûˆöº£Y*àãmùýÿ£æ)4,lùØFæü© ­¯u¦ÂÓÂÑV°á] ©=ïatĶp¶íZìO¬¯…5®Nà°P°äËðõ¼"êcß±9ª ¢ZáYq*hGžËó´p´lo±5ºaê”=?côΕ;lál#Ú댮Ӥ®wsÑ•% 6‚¼WO²·;2íy£ÅžŽÖƒ=y ºÑ-Y§ìù£›²î°…³­hÏè:a*`ýml]Ù¤a¡`#ÈÃÛÒU¿ËtžÍ~Ü[ÐZ¿ãiáh#Ø—¯|C%šTØž~/\ZºÁζâ휈Gwvž²ç—ôÚ?7ÚÂÙz´çÎ=• >²íi%áÂÇ ¶p¶ïÞ›é„kzóu¡Ý}ÀÓÂÑF°Ë豚M*`}}¹µÊDÃBÁFg÷d&rtn*β°FxGw枆gÛÓ,ÂÓðlál#ÞËÊmÞL…º«Cvv×áâþЇ­&t°+k„×½í=>ñζ§Y„'Þ7ØÂÙz¼÷‰^íL=\~ÊìZ_Òý‡ùàÕZ 6 çI©€ÃÊÌåu,+ «†wê:÷ÒÅÖ OºÞ&¦ÏmB[%Äa¡`#Ìó*ú}&ìcÔð!7j,Ñ®@®ßyñ6ã`‰ÿ¤ëbþÜ(´? a¾\<ó}U lµY‹´+«Ç·ïð¢x*ìz«X>· µ”ÏËBÉF¤¼^› »þÔ«µ_Æe¡d=ÒCw¹¬ «aœìô芾¯üÜä äñíÝC_´*wÚõV±)íMíšqY(Ùˆô‚^RaןzWâ¡•‹xY(Ùˆô:^"MIýP?>t†·îæƒ×; ÖÃ<^v>C¥—TØÕƱõJ³Ó F¼,”lDzuvJÎÂK*`}᫱T„ÃBÁF¯¯S%ÛT¸Ã_Š)1Ó®@®àiDë.éÕ­·ˆh¡vroÎ;K©€ë-bаP°äytöÅÞéj*äú3‡§Ø¸,”lÄùòDbI¬/ ´Žy4,lùrK1P©M…;L¥¾rÉò6\åçåñê|—“­0?÷ |¿ª“ V»&µuŠvrø:g’ÞºVz…ë}P¸GÃÁzŒ—ã“§X:” ¸Þ»Eó7 ¶‚Œ.9<]oîí­—¥B®7‹p—…’ßï¸5‹š“¥Âí.O Í"qY0Ùs^~Áöp§BÖÀÆmç8,lDy›|¯It:™ázÿNÒ°P°äÝ9ôÖ×S!×¾ðš. %ëq^Gçt2pí ŒÎFXVÖïîÌÃ3‘,׸ðL—…’õ8ïýŒVR[Qkõ‚§…£PÎD9<éËrí% Où`W׈ðìË•ãó½,W»ø„—…’8/è¾âT¸ãñú}zù²¼ùò•h5ÅÀeÁd#Ìô4*rí Oü`WWðÜÑ~*äÚGç$´+ŒkD˜,¶¤WõX˜ü°…¡±4³Â°VlvÞ” ù1 8×ãeÁd#л3s‹NFN¹ö~D§"´+Œ«G¸?º@Rë)aã  6‚|¹çŽ™7¥‚¶º¢ÆÙÞ ´p´ìqô¼)ÁjòÉV“`9™vrøÒó¦TÈ•_.<Ó£]aÜj„¹Í­e„GµèÔ¸‡Ë7ÃF”/»q¿¯Ë¦‚­¾wÁ22í äêñ\óšhÉ-³ÕÇ–ÜhW×ï‚îÎ~º»køŒV>N·ˆh釂õŸnì+K,­9w†õ¡¹5ç¦a¡`#È“«{×—²[má !®ÞäÚ:«ß&5¸,˜¬Ú5’†K ¾)\aYAX#´³g¸‹Ïe²[{àød††‚õçobsƒTÀVY¥u>ÃÓÂÑF¨áq:°öš´æ,+ k„w™]½PtU%»Ã¬NøÏ—O»|iV#ŒÓ‚ÑonˆvGÒ¢$_„ÃÑ‚ÑzË[zßRV´ª™]Ç#/J4Ô5=žŒ6}|á‘*³ü¹k_]h3måá­Ã O Gë?â:øúio1ç I>·›%ò¤&IppX(ØøùV_gç­èüÁÛË ‰Ù_*è‡úq5ÃÛzóÁ«) ë¿_–¡¬® ñ£Yô+—„ÂnàV׈ï裼•¢'¼ùúMïäý¯—Ü0“åú±gwÛ.îó‹ j· »¹z£ØGW§é® \àêQŽÖÌe¿~(fþxCgkæÂÓÂÑ꯸t³7³õN×RAëe˜Ö9&/ %>–ÏÀi`*èúC{忇îûžR¥‚®?ttè—£óí¯å·Öñ|æeb£!”¬·è~{ž ýTÀÖÔµqrr-­‡ú²¦$Œé•íWõí>áý_®«VÃLÃBÁjÐ-ïÝgY[fýo¬,˜l4¸mF'©€õ­ÓV Öƒ?´5Ui©xZ8ZöäM‘ÂÓ‰,[?có„â[8Ûˆ¶7¹ Ï)²ìyêèŠØ¶p¶í˹#bˆI¬¯¢·Š4,¬yî3ððŒ3Ëž¦žsÞ` gëÑ^.•s¨ãK…íø´o¼Ã¾ÁÎ6â]?‡Ôš‹d:g“™‹ð´p´ìc,ÀrÕTÀú@К]Ó°P°ä•ë§BÖG‚Öê Q>v‰)S*lONõn°…³­xÏlÑ&rµxáç#ù^*àG۸ܔe…aq¸Ôúl]½gn[O¦Ý2¾­®¾²•ÊAk™ô[XoëP­,5ÏV²íéݳ•lál=ÞÛä¶Ã³•lç#lyé[8Ûˆ÷R)}·&ÐÖǪÖš†…‚ _¶*u*\ý‰Øȵ¼‰F*ØáÑ}ØÿÔšÁ®@®ßÝ]/ ÏM²íéÝÂs“lál=Þûìž÷„³Žl{ž;œuÜ` gñ>^°ú• ú¡~œTdx.ðå~Mµ“¦a¡`5ÌkçLÓ£u¤¶²ôÆJÒ ´p´j8KJÜýUM¬f…að®•UÙÆÚÑ ;ÚDt—Ò ´p´ê­r_c[ò|ºZÎØ–:³ª ªÚa¨. ¶öÈ™¶2˜Ö™§…£`¯x… öpyî'5öñ*_Njhu ^J6"½UWRZ»çL;H¸{æiáh#Ø;×ߥWô‘îX×L¢B zPÇÑÛUD§Û™®¿uÊ©u®ÃÁF”ó˜Ô *°^ïkœóá°P°äcÁJìSÁG'n»¹F|7w_-výÕSn®P E¼,”¬Gzš«wÓµfË™Î?âÇc­Ù2O GëÁž;o&Îá2íxìpÇÓÂÑF°/¥UbXI¬ÏÝ[B Öƒ¼vÎŽÉ;“J…¬ÿ|ͳ?\J6â 7TÀÇ´’kÊ,+ k…weóüTÈõ&žšà²P²ç]#þs·žM¼Ò+\D8W¤a`ý·ÛŽ{ȘRߺw•­:ÍH–«Ÿßˆ ¸,”¬ÿzû€NŸî¼±½P*äz,Â='. %«¿ßÖõp‡‘ ¹þÌÑ>Ž—…’õ8÷ô» Y«µöF´+ŒkDørKû÷©a*ØãS@ܤŒvr­øÂ½[*äZ‹ˆöÇ´+Œ«Gxè+“±æ¾8˵'÷İ+Œ«Gx잣SßK]ýŽã¾\àË¥DjGAÃBÁF˜çÉæh=ò¤ë½~~h­‰ÃBÁz˜§Î\-jÎ(²{äôúM–ñ”‚†‚/ä’^Ùêã†G<ØÆÕÃ;÷9~¤Â­>pxÀ£a`=ÄÛ> ïܼ÷hûtáFü„÷ýíNø_ œ=¼s„N¬OÎs  VÛñÞï+:>§®?r0£Àa¡`=ÈãT©š¶¶ä W¿‹nÉ4,ly¯”6[[r†ëmÉ4,¬y†ÛE*`-eimÇ,+ k„n©€kmÁ,+ «‡w›Ì™]kÛÍì#2îM7^ØÈÕãëù6n¹¨*ˆªÄuø¯´!ü¹ãå,$†”Ýñ¼mÚÕs{¦õçý §ý¿íÓôßtlø¿òw»…Ž>~Áÿ{ôt~B{ìTÐ×¼ ö ´p´ì·< õÛàLš†…‚Õ Ï]G?t*èÇ@2ƒaÆa¡`=ÌËÒ£œ x~¼&e\LVã¼tûÌ>t*äiúû _ÙÓÝ/îC<ðîcû¹Ê§/þÁÓYÏSÇÀµ{Øëï_ÿïñ×#áØÿëþ7îÿ z,xZ8ZÍë–ùÈ¿¨Ÿ0î¬L"[[Ë Ãêí--õZÚ,¹>ÿrmt¿åwøß4Z‘àiáhµ½­ýq 2ô¦‚íÔÊ[cƒÃa¡`=Äãðv ä _#1A¦a¡`=ÈÓ±ìîSA³‡ÖAêZ8Zö<¼9dZt†í,Ó‡=ê­-š†…‚ ¯o›†¾PRA[m£q¼ŽÖƒ½\>tʼˆ© Yqs÷ÁÓÂÑz°×÷UUªegÚzìÖ–ÍÓÂÑz°sel#© ;­ÑÜ®iX(X óÖ½Ÿ:€ÚôIëÝØ¢qX(Xó4öè8ž ø2ïþ\ìY»áUžò®Ö¾xY0Y­}m•߯±ÇØžµq; ÚÈÕÛñ2ïè«— ø(ZŽdoË‚ÉzœÏËÓ±—/ò¬u÷Íý «½Å> Û4R!OãçrèŸ;^܇xàZc¦]\µ!ïÓÔ³}\*äqWùt§‹û\1ë äê!Î_;Ä^¼TÀ]uù9ÜYÜ@ Gë†ãó5­Áv|¦5Ø<-­{ŸGø±SA_Óq*Ø<-­{ü¯Ë_ð„Æ•ôÊ*«4m£ ­ ¢*Ýó?vÌw›CãI*\íy›†?œ†Õ£»‡— ¶ öÚÑ3M—†…‚õo Ý£¥‚¾î%üTY»¹Ø©²ÿïÁ«a¦a¡`=Ìûº‚/^*X½]´v4,l„~ùR« ‹ÍÝ «Aî{¸]¤Ö¹±%ã°P°äý-7FZò ýò¾‘¾µ%ã°P°äqÝÐv‘ 8?òûj@sK¦a¡`=Èë²£#u*ྲ})œ[à°P°äÚqàÖ¿¯ÿ2!†]\eƒæøßW‡µS7½ Ù~œlZóåk÷[çìþ[ÔXÜ@ G«MnèÆíïS_JZÑ~}•÷‡<*¥›;dÁdµp3ôì«’^ÝîsÑ¢õÅfUAT½ —«*ˆÑ4ð¥$¤-Šl¯òø{½ ã²`²Þ„çc.öp© ¯#Õ/ó´p´Þ¨×u_ÁT°—CGL‡»¹z|·DR!«ë|Íã ë]ÆÖ×NÆ6w™¶vĵv<-­6é±{Yä#;ô£7útT±5Ô8,¬Î!Æ~ÈGAzu³ýØ%¸æ»Ò—þû»QFO Gë ¯ßw²óO…[ß]ÕwŸ4Ê'þ¹ML6ž›î?ÓŸ¯&ù'Ç­›œ,˜¬·ºáØ>ÉåЩõñ°1íÇa¡`u§ËæI"éHÜ©Ac¢t-m„zC‡Âôê^®÷¤o Ö;eØŽ?ru{_x¬¢a¡`#Ê;œ¤W¸þÄN÷ùÀËÛb(ÕÏeÚØ×ÜÏñ´pô[?÷|ìÍžn6'ßÂzƒÞö·ƒåTûÈôµOµžŽÖÇÁý¸*œ¥‚¶ê­s7žŽÖ[ö>Ú»Ò›“è []jkÍÓÂÑj»žúË7˜ÇNmõOÁ¾Ž6‚=Ãocz•­*[cÂË‚Éj2 ù86 H…)Ÿ²}ìœrž×ÿKmþý zùZ8Zo~ëÛÉ êU_ŸÛŠìƒ\á7—“@_.OcÊX© ÕoQp?]àÃ|ðj›¦a¡`#Ì«»«Žv§™ö´ŽhwÊÓÂÑz°·ãûäX"™ ø˜Ždî‹Ë‚Ézœs=[RA[%¦Ö‘§…£`_×m‰’ ùýXZÉn?_܇xàz YW W ñÜ[5©ÚU*Üéo*Ž”Ú`VÖˆîŠ6‡T¸Úó6¶^˜†Õ£Û/Õš|c_|ÒV-©±/¾ŽÖƒ=N—„) ¤‚¾Þ…þñ¼M¿\àÃ|ðj¨iX(ØóKuh© ;u{ck‹¦a¡`=ÌSgvI­£ÞtùˆÒÇ;ZÇ= 6BLŽ%éUÕ·uèƒ]\=¼ó6 TÀ½úÈ%  Öƒ¼À¯]*`ýŠ‰ÖŽ‚†…‚ {¯™ŠÖ=gçMýzq/çH´ª'í ä!f{·ôêêm¢µ7†]\+ÀîF¬užt½U”_õË­B«tâ°P°æõfbI¬^§Ð<èѰP°ä­ÛÑ!$ðñ’¬ß§Ý?wÁBÁF·íâRçy:Ø'Ó°P°ºÆ<{†uPkõs¦úñœ'ÃïVBsʋ˂Éz›Ûá¾(ðsžÎô,+ «†w¹ž'Ê ©€/Ç¡¡Ê / &ëqó ªª— XÏ.‚ðÏ]°P°äëy`HM|YpR¶wÝ«¼>äÞˆ2- &ëqžà0½ÂÚw™Ovè/ì´õØAúòÔhÁ%î¬$­å!–†}ëæ.[=¼Ð¸ŽÐzï¼Ã£v*`%1jÎ2XVÖ/<^§®=p4¿`YaX5¼kW3G½“¶vO7Žz7ÐÂÑ꨷öý÷p© ­Çn\^¿ŽÖ[v¤/Ü T*d=m\4Ãa¡`=Ê›ç§W·3ޔƩ / &ë=G¾ \zImuJ F7ÐÂÑF›ÞxtIýh##9"Ò°P°Þ¦Ç~ˉ©`Ó“qÇŠŸ´+«7ãñø(8n§‚Ö‡ÖÖ\ƒ†…‚0OÏOFK‰î´V/+m\§÷oªR£+O Gë}Ñ´å"…“½þ†Hi‡…‚õ÷dî߆Q)L¦­ž®5…áiáh#ØXãI¯êeR‘‚YaX#¶»µe¹µu²Õç ¤hW Wï’‹Ô,8°5¢¶ÎÜyZ8Úõ´£³†TÀÇlu#':¸,˜¬§ <\§ÖO.µ&4,¬7æµ›áÔ3ôuw•0ó´p´Þ¢W:-J¯²>QkÍä`W ×hÏëbË­³÷ ?ؾã²`²çíZ@ÆîTÐV—Ôšqð´p´ì­rž¹u$ÌðÑÙ­àHHÃBÁz÷å¹C˜Q1Þº#ÖIm[~æc›ô–ßÂéßã‹åháh5Òÿìœ\=Ýéí5ú¤“ÎÍŽ˜`ýÜG Gë?b¿Nhj ø´ˆ$éç6Y0YóЯhOš Xÿ$埼¼ÊëC6Z4. &q6vŠœ ù̓×ðt׋û\3ë ä!žžç¼€ÅÀT¸õÏ^ʽžZ‘•—“ÕìzÿLkUÑm˜GVLÖ[ÝÜ=7=0µ‚TÐ×Ïr~<ÿ6vø0¼újÓ°P°æe\à4&ôCµ®sû |˜^ 3 až{vlM…ü\Í¥Ò 6¢¼_®í'ËH§T>cÝZºøÖ›ñØè`’ X_OlþhX(Ø rånœOŸpgŒ«3êháh+Ô3ZÕJ¬÷u8 6‚¼Mpb” ú9£¢’9 ÖÃ< =:¦Öo·j±iX(XòÜMèp’ ø(VOÎѵ€4,lùmþÇôÊÖÛEk¯LÃBÁF/Ç6™;´µë¥5Ïàiáh=ØËaSµðT¸“Ò8K÷0+ kDGRwʯÖ:0¬ÞË'a‰$•ðsÉEÙà2N¯òüõCÞ¼,˜¬Çy%WÒ‹ª½rK$(*jDµ[Ñ¡9°ö{µ¦,+ k„w¬îpmM#2}ÝgH¥<-­{‹‘šGgx:v$‘i\L¶âì, F—D2l%ÝAúç>Z8Úõ> EðTÀž‡n:¼ŽVBý¯Õwål`òd¯ ÌBn€…‚£5Ê6ÍCžìe 0á]\#¾Sõn¶¦®ùI[‰LS×| -m{¡“¤TÐÕ:>8Îø0¼Þ¢aX(Xs%éö´ŒÐøw,l¹3KOM“ë'«$Mì`¡`+Ä»5ö5M³Ÿì1– Ð<›wrõøýŒ¦C©€õ5­Öކ…‚ Ù*RáÖ¿ý1.ùrâGM.pY0Ùó4±õÙTÈÏí¹HIùX(X9v÷+G~.›+é|®}<*÷Ïsí}÷¿õ¬Ü¿Ývs‡,˜¬ÜuóK¯ok÷Ôä!ÓGª¼ìää§…£õ7|„˜TÀzßßšrѰP°äÁ=û‹N2íiÑéO GÁ^gv M…<©#@kn@ÃBÁF”óW© |*`}SQkɆ…‚õ OýòUþ¬9ùdô!nJаP°ä¹¶A¼uÌp~äGU[G@ 6‚ü,4#«‹é¥š‘Ùq»²¿àaë!FYaX#¼ûÛg¥˜Þ8Ãú®ŒÖÞ˜†…‚«AÆf–e¯985æé2Ð_Ðz¨× ]ðzºp«KüƇw­o Ë Ãê?Ûvì‚[[*hk ÕúŽð´p´ìáY%& ©€­_±u¢ÃÓÂÑj¨ûn¬n9ol×'}Ý´ µëháh+ØÕN¤±eŸ´ãÊòh˾ŽÖƒ}ÜŠˆÓ«Ü¿bcQ›—“Õ¢vß_ŠÌ˘ úú%õûþÇýæƒW; ÖÛs^q¤&n©pµ} ÓL˜†5¢;]º}d#ôCýØ$2üû×|¹âSí˜iX(ØóñùX¬¾“ ØøFo–§þUÞ²¶QÿY0ÙŠó[åÊ42ß4Óàiáh#Øûâí;‚k`']‡Ïo¢¶†ÃBÁz˜Çù²V àS_ŽÆ*[N㫼>d£ïÀeÁd+Κ¥ÖK¹­Ù A¾ôLªŸ Úºì¤u~ÂÓÂÑú åyÖâûJczA¯È‡Ïu´–EYUUoÄóüvÉ%ÓSdX/f·ö4,¬yy¹ï…xçRA?ÞŒì'hX(Xï#–Þ<üÝ:»Îl§¾"­ók Ö[ò ¿|©€»¿­¼LgÁ²Â°zx7¸E¤Ö·‘´¶a 6‚|ì¦FèT¸õOLÓE¾tS'Õ¸,˜l„yÞÐ$ðcåJy4,¬yC×oèë— 8ÏÔ¹½K8,¬¶ä¡ËŸÐê¨òa*d}•¼±â‰ÃBÁF”R*4T§‚}ì‹:¾†d´+kÅ÷zNƒ¬'ŸtõÜi¾À—oÚÀ‡ÃBÁz˜‡ãä&¶¢“ XŸ©៻`¡`#Èp>”^áê¥ÙÑ Žvr­;׋ ©€ë"¸‚ÃBÁF/rpk ©õaºq9‡…‚õ(=šÕ§Wwý›ß¼6ЬNËEý岬UQõÐN=:r¤WW¯2µu°+«¾¦üQ®ù¹W4ßí´ÍwËö<ÿ7ýÚïŸïý¹ŽÖg¼ÓeÑͧ®ÿˆÑ‰†…‚÷zëÑéc*àÎX3mòò´p´ê…í’Ò«Û)+¦­(ª ¢¡GrŠž ·~ïÈ´}Þ,«‡—–“õ1ÊOïŸiµç\r~É‚ÉF«ƒ»ûTÀµ×$:<±¬0¬Þ­zlëà”ikÇeëàÄÓÂÑz°»ÁÙ^*`ëWl¡ò´p´êy'~©`¥/j¥²¬0¬Ümá¹N*hc`ó §…£õÚ¶ŒhÑ>°>õk]fØÞNV1« _ºz{Þû­'§¶z¸Ö8O G[¡®žolÍ7ö—[c>f¡­ùO GÁ¾~š»SA[¿ckÆÁÓÂÑF°çþòCrÇOørÌQ¹Ogî^åþ![‘¦eÁd+Î+˜+¥‚íÔÑ¥5·£a¡`5ÄcW;ÝšÞïß}‚²;^LVs»teŧ1·;a½jÒ˜Ûýƒ+—ê4&w_ÃzkàC2¥TÐÖxÒ˜ßÝ@ GÁ†{»TÀúÖÌÆþ‡…‚ /œ!¥‚ÎYÌÇÆyÝ ´p´ìáòMÞïiRÁ>æœãŽ-)Ñ®@®_x‘&ò¨NëוpX(؈ò¯ý¤B®?³~>ò²€+)©`« 9¸ðC»¹oM¢|`ì‡+Ÿ¸6Zñ{’HÍL2ýlmÔÄ„†…‚õiɇ03Ó’ë#¨´NJXöc€ã¬ÞŠÇéí”5!ÉtN„Ð O GÁž+GºZ'$×›0wêQ Öƒ<{{üh 7_rû’ÙpÇÓÂÑz¨—~GGíTÀž‡n<ºŽ6B—¹±òx*d}#HcE‡…‚(¯ôÚZ*è‡j}ía¾Â‡ùàõ0ðP°fzøN]ý<Ì<\àËjMÃBÁF˜ÉL4½ª—Ïøb8ofYaX=¶ë:Á#v*hÇ¥ßá<ƒ§…£õ`o¾O¦zÇÓª{Z3˜­þåµÖ †§…£õqŸK_Dí!ð¥(E•KpY0Y-˜L]ý+Ù=ÓIçI›u—x´gºŽVõ?{A³‚TÀúj|cƒÃBÁFg÷Ðì¦OÚÓ6‚Ýô ´p´ìãŠ|lÖ– Ølgš7ÐÂÑz¨ûn†¡SA?TëŽó>ÌѺ‡…‚0O3¹ wܵŒæ”çé"_îÕ Ó²`²zV0@ÏŸéI ÇñõBNL6ZÝ2à M*èêàór/§_ÕÜ€†…‚0ï;¹Ò ×Ñ2ÖÏ-cVƒLË‚ÉÆËí¦·Ïô¢…c8¶´r²`²Þê†÷]ÉLÚ?¼oðeÒ~.£Ü A¾Þúˆ$Щ ëý‘r€šôÓ°P°æë~E`‰7ðú€?ýz^ºx<à^-Ëà°P°^”육¤‚¶fÇ­ó*žŽÖ[ôx\‡¥1©€õn¿5ñ¢a¡`#ÈëŽöt©€ëí›iX(XòÚ©€;e?kk–Á²Â°FxÇ ]:O¬·ˆÆÅ~ Öƒ<•\¹µ7ž‡ÊËÑÚÓ°P°䱺èÓš_d:W)É3¿7ÐÂÑF°7tI¯n½uD>ØÈÕ¼Œ3ÚË¥Ö¹µ_¦a¡`=Èëñl• øy(žš÷ѰP°>ï[á¡$ð#%¹¡e…a6¼õh×– ¸öÀÑž˜e…aõðnp¯– ¸S¶&¶öÂ,+ k„w-±B[¢NùRú~yäÓ]ú‹û\0ë äê!ÞÙ#½ºQÎkäpY0Yææ®{ž|ø~ÞŸ öñ‚Ÿs‹–)hW WmÆs7‚£rzUkw(Gs˜†5b;M莖TÀú,¦q AÞ\-8˜¦lµQó4Úȵ⻰;†R!Ïê„î‚…‚(ï»)rý™ðß#÷#¼Û$rý‘ƒdüpp·××°Þ0ú ÞÄ’ ¹þÌNøùÈ× D3´UŒnÌŽo …£ßòãçcï•K}ƒïŠP°Þ¤‡ë}­ØÌÿd£\6õ§]\#¾S¥ÆÝšvfX/Ú´¦4,¬^+ôOv¦Á½…_Ãz»˜êcZûåézÞ`úTpjî—yZ8Z¯[LãóhPxºð«’ Xë•[_m–†5Þ‘å¹¥€Y7NýP­¯®/Ã~˜^1 ëa^Žƒ“T%'nýþ¿eü¼¯WSâ²`²º·>@OŸiíàÌ?ygeÁd£ÕŠ¡j/©p<~duŠ˂Éz˜Wïd8Z0ʰ5± Ò?÷ÑÂÑF¨½“´hÕ(Þ‡vÒ?÷ÑÂÑz¨·#Y¤(SáΟӹÖõT˜†5¢ëõDk‰ö4‰h5‘§…£­P›å—ÖùCfr8€]\#¾»sø‹l3ìiÁ£’7ÐÂÑz¨÷kSFFíTÐV±¤5×àiáh#Ø—ë;€:èé.ù0Hí G0‹¹ŽVÄ%ßïŽY© =io …£õ`÷»{ Ž'íyìàXp-m»~K`ãXpÒGQpùX'n n …£`op5,rõâçh‡…‚­(ÃE¶TÈõgvÂ<Ô¯yl̇Ëi¿J{Žæ<-­·!Ÿ¬Äªƒ©ëí#XÐôÃÁ²ñ×°åÍŽES¦L{G4eâiáhuY}É_¿ÆžP°Þ>Æž^ NýP­¯z,ËÎè¯ßia¦a¡`#Ì£;¿‹&ÓãèΔ¢É4O GÁ>Š6Ø’r*`}oRã"8 ëAÎwO@%úT°öÀ­K 8,¬‡xöfÑiJ†¯LMTxZ8Úµw€ÎU2ìyèà.†háh=Ô ÚÓ¥VßXÖÚ3³¬0¬\¸—K¬~¢­¹_¦a¡`#È“³f¸fØóÚE§®<-­‡úqA-:œ¤‚vÜžyZ8ÚöÒ“‹ÕOwŸá*´'Ñá•§…£õq{Yû~ÈJÜ);/ZX–†µÂûvŠ`3|Lˆçï·hýÜ Ažª».Z‡ØL{^½èËÓÂÑz°÷ÅmG‡ØLçââÇóŸ­C,O G«Á^»Á=|‡Â“öh až.aF¶\¤‚~¨úϯùË7Cô0ðP°æm{¼TÐõ¶¡äQ{i 6¼/ÞÖÜpqÒÕ¶ñûߟچf ¶Â|Éh€)@*`ý~S^ y~ȳ:káeÁd=ÎÃå>²ï粩`§ã-Á¦Þ´+kÄwèÑ…ÿTÀúªDãV 6‚<º§?Ѭ9ÓÕd>$jÎLÃBÁF˜gïÈÜ—•åú02~Fô ³®@®âãò0,½O¬¿|­ Öƒ™†…‚õ /]¥»hí“3\}äpŸLÃBÁFá.ð£"2p=2Ë ÃáÝ+ûýZ{ã ?xäúb–†Õû½Z*àÚG{a–†ÕûÁýY*àʇû_–†5Â;Ì`_– vøeW®çeYaX#¸ÛF–¸SáË_©_¹hs¯òó¢Íò‰n““Õ«ôò™.o'|†ã\£dÁd½ÕíûŽŸ©`ûÎ ÃÃ=ì äªñݺ¹ÐT°Õç Ž÷´+«Ç·ï&pM[{Þè€O»¹V|wtCL*`}²„î‚…‚ Oì‚ô ?¾B[hW ׈ðâ\íè|;aRWEtï ëAzç® ç²k*àú#׉qX(Øòâë½ ‚©€ë\ÂÄa¡àz™©ã{ù =12¥WW¯z´¥°+«ÿnãRÙ;ÐÚÍg¸úÈánž†…‚õ O}eQ»µ›Ïpý‘£Ý< «eŠmšóÅ0Ïõý2ê³ý˜“þþõ(Íÿuÿ¦ÿ=yãiáh£Ù9[]tÜ›œ?at؃]\=ÀsÏv÷©€»¿é 3:±¬0¬^¸§O\yàðÈIJ°Vxw²2øtáwz…'m®ÛZ•§]\ã—£+ò©ëÏì„ÿyŠTÀµ·#š±¬0¬Þ"–a¼¥º½ä« ©ö ¬çKž‰ŽêÁàmÈöcDúýë×—ÉÔ¿h,G²öáƒ7ÐÂÑê·eõ¥)áD0õÖÍYVÖx÷Ö…\¡øsk_Ðj®q׿EÕ\ææiáhõ'Üëúh ö^ÿdFk°o …£`{»þ`~xÂÆ¯Øš"Þ@ G¡>®zĆïTÀž‡n ¹ŽÖCÝ÷£ct‰VNö1Œ;V  ]\#¾Ëâ½»X)àdkÏ­Ю@®ß¼cŠËmSA÷ÆèÚ˜‘ß@ G«ù>ô»§1çÂ'[mÁÉ0í äêyÞ.ò£ò¹L?šE¾nƒÊçxZ8Úvý×ÖŒn¨_ˆÚšÑñ´p´ìÕ“fDgò'[}ƒSyÚÈ5â[¿Î¶5gêöæÌ<-­{x]5´5z7®ß@ GëÁþp4›Jð>u¦<žŽÖ¼i©% Ícb¦¡|%§Ü@ Gë-{®ß»ÚÚgÏ×LíÇŽöÙ<-m{ÞàÞ/´õB¶öÙ<-­{¹þÈŒ ôCµî:_÷ |˜^ 5 aá1&½Êlr$‡EØÈÕÄõ¨[/`*hý¡[;  Ö[ò¾MhÃH|Y䤚2. &+ÍùßïÐen¬“K|^nùX(XiÌ¿òäªuÇÖTž®~zì”öO¾\j·ªA¦eÁdeÃLˆî?Ó›޹rL/* &áØsQB¯Ù~ìèøýëÑ=/ÿºçþ÷?ôw§…£÷p÷•é»Ïïáçµ·§ëøÇÏ?â®–“­†ç¥•Ëÿ{µáõÇçò@Z0Zowý€¦_éÕ}¤çÉq[Âx,lÄxöÒCK‘O×Ñ,f¥Å}®RÝB Fëo·Ÿ^”§þ\Iú¥Oû´`´Þò†Î·“!´”õt¼*Ñø¼iæZ0Zoy~zSžºÁŸ¿aoŸmžeXݲÜ< ¢a¡à·ß¯|dð÷+ºÖ_ï©{6 f-!ôCýx ?ÃÛ~…Ÿ©‘¦a¡`#Ìp{NÜ}ÞhÐüþ±¬0¬Þyõ¶âÐÒÒ“®¶‰½ûÜ&Ôt€†…‚õ0ÏÝ OŒSA[ëU­ÓyžŽ6‚½”gÅ"ñSþE?Ý-vº{qâëf]\=Ä˱ќ› ¦B&味»W÷W¹ïzëðKk޲Z ¦5ɧ]\µIœwbËé®7ˆà‡Û ®«}ëZÞàˆTÐõ‡öÊχÞéJs*èúCGËã~9¸ôõ5¬7޾£ Ø© ë핟=Îä¤$î¨ÔsçP0+ k4‰É› yKí© ëM"º>à—£«¬_ËF go6ä­.§‚®?´Wþ ôÀö¸z‡c‹ 5»N…«½}؆UHúavLÑåϯe£E\n3!f§©€êYîäeÁd½mŒÜÙ %ëmct*°º\Ûºp†ÃBÁFÃXرI ØhÛŽ®ë¤®9º…ÃBÁz§qÓäT°ºQ¢5­§a¡`=ÄóX¹—¸µ{˰~Ï]k÷FÃBÁFs½…IáRÁê­¢5å¤a¡`#ÄûÛ Óg¸Ú*Âý1 ëA^àþ-ðõÐ0Ó#Ó°P°dgÕ·‹­:õ—‹«•»4‚òÏm²`²fo5¸îtž‡vÒ?÷ÑÂÑz¨×ñíP6“cdøxh.Ã`YaX#¼Þrdt½,Þ6]2ãiáh+Ô;š¥Ö‡“ÖTކ…‚ ÉQ*àÊ NäXVV/¼>›^\Ï[=0ÇËBÉF”_ƼïÏTÀ‰Îã~P*U¦a¡`#ÈïÓI*[δuQkºÌÓÂÑF°½Ë/áíYöüŒá 7ØÂÙz´÷ê%øÍ”½z|ó…§…£­`;3èðŽ—,{~ÆèIÓ;lál#Ú“yƒAóÊìÖ¿C½ùr=—Ú‰à²`²zÒ4@OŸiu³Õû%¤Ì$h³yÜBJÍ`W ×xC޽:ž·/:§Ï´§ÎéyZ8Z_{ÞçÊæ¶è{"˜l´çºvx?Þ¾x[^xCO F«‘ºŸ~¦Âö4ëè¤ù[8ÛˆwïœfDw@ž²ç—Œî¼ÃÎ6¢½¸§ÑiÝi{ZItZw‡-œmÄ{ud]¬bqÒG:²ì`ÅâZ8Zv߻ӨèÄî´=?dtbw‡-œmÄ»ú¡—ÖšÅI{šI°fq-mû²4Ž­¨ž÷挭¨Â¬0¬ÛÅóEìÓö¼$Ñ û[8Ûˆ÷æqƒóÝ“ö¼‚Áùî ´p´ìëNlqõdk/ctu•vrõøÝð·Ù9™‘ ¹¼%.ewŸ/îC<ðÒý¹ÉÈ5B<¸g-áYb¶=}Qx–xƒ-œmÄ{t'áH¶=]]¸rƒ-œmÄ{sµáYy¶=Ïž•ß` gëñ'÷»ž(fÛóÜá‰â ¶p¶ïe@·š¤~^P޽§¼¼ÊëCõ1—“8×?Ø<wwÿžÇÜ` gëñžüÛoÂyI¶=ÏÎKn°…³Õ%îaò˜«ïß±÷ñîWûM9×^“ÌÍØ w-­·ÀíÒ±KÝéÕ½\™P>ñ o¯ðø€û~ûàÐ °P°ú¹¡òLV³žîº‘3ݧ o^I¯°ºR׺݆vr·nߨ-©ëÏÜÃ3ì9½Ãò™TÈ£úÈ­) «{KþÉöbvëÖ’¯aµ-Ý!ƒk}© êÇ;·Þ/ða>xm}‡…‚0ï«7ÌÁµ²“®=ôÖuŸZ[)Ãa¡`=ÌùEª´™ W;ÑßX‰…YaX#ºî©TpÙ&ËõÑnÚš í äê!:ww-½žvý©‡ÏO­^yY(ÙˆôDÏøRA÷úzEë<õZ8Úöìþ¢îÓ®7‘Qi|Z:ÇËBÉF¤÷ ÍšSwFóhÌôo …£õP_>‚UãÓ+]oÊ÷ÙÔ%6¢¼¸GÄhQû´ëO=+áÐJÚ¼,”lDúís!_çR!ëRc9‡…‚Õrâ8å/29*ØkGÇÌQhX(XoÈSïÎ6¢ë2§]ýåÅÖVexY(Ùˆô:Âéh*hë³7­I4O GëÁžýU`š” ÚXÉlNîxZ8Ú¶·â\E9aëW Ò?÷ÑÂÑF¨wû8~ëjÊ {ÚIÿÜG Gë¡^àÁ<°~H¼5ý a¡`u›Â¸ Ë‘Goj·4ç÷æœ=nÿMÿ›úsxù”ïò´p´žó./þ‰7ôÑ¢É$†…‚õ·{Þîh£„L÷—-|T‚ÀÓÂÑF°+u¶Ö¹òZ-XµN–qY0Yï:Ö¹‡sšTÐÖëÒš‰ñ´p´Þ¦·®v‚¶9Ë´ç±£¹O G[Á®\)Ýš‹eøèõV°DÃBÁz÷ê•Íõ^ÝýÛÜSó´p´ÞWïkÕní«3}´™¼íëZ8ZmÙSçZpqïJ¯îµ¢‡lÚ¢]\#À/ßô&†•TОv o …£`{Wµ:ß^³TÀµöÞ‡ÃBÁzûãÎØv¨TÀõGvÂ?wÁBÁFÇK V:Nø8/°¥^L6âì\Óòn9K¯p½eDwÉá°@°ãêô§1{>éœòL³çháh5{ž†žÍRëXhMéhX(XoÑCÏNaS ?wž¾dë¶W¹ȽÞ;ã²`²çÁ™Ïy·N¦B®÷vÑíž¼,”lÄy¾tHHñ<ôC5>i±uû>̯7h 6Â||™ KöS×zºøô„†…‚ ¯Îé‰wsj*äúÏÝOËËBÉzœGo¾f¸Þ4¢Ó@ 6‚ ïÿM¯pýÇ‹nYÆa`#ƹhÄí†H}}hhÇ ´p´>=W×ô¤aÂåúKžqã²P²Ñ¨×^ŽHýP?æGù¡ûî_>Å¢fÎ4,l„ysvÐÞÝÖ©ë/Jt‡ø4î,,¬Gy‚+©€»_öýÞ›æŠË ÃáœÓ’ð,;Ëõþ-<ËÆe¡d+γ·OŽ.fºÞÃõŸ{8ufBÃBÁF˜á9k*`ûý‹Ï±YVÖïêœ÷…ç×Y®ÿpáù5. %ëqžûÍ'Gç×óå¶FÈήYVÖïe2QM…\ÿáÂsk\J6âLOžR!×ZFxº»Â¸F„ßÒnª|1ïåOGU/pY0Y¯]Ì»³ËOöæÚÇë£ò%ÐÎQ$<ÛûVÖôBçö©k¯`x6»Â¸F„b*·U'ò°ým\zÍê§œÕWw{\%»›ÆiW ×ñê|=Âir–k"œ$î0®á•ΆR!מ8œ¿Á®0®á¼2BdS«#is ™†…‚ ¯;º!°þÈ­;/hX(Øò{²B%É™~¾|TŽLÃBÁz†ü!ÌP†üöÌß¹O¼åÍìT}3p½ÃˆVdiX(X½ÐzÚf×øž‚|çê½Å^Ù§Õ<îí•Òtó¸GÃBÁF7tI¯®þÀ­£ì 䪞¯_ÿ~2죿wlÑ”vr­øÚ !­CÇ ×ß¹àÐÃBÁF¯BNa¤‚~¨‡þ>?ôx…æƒ×z  6¼¬ž‘´‹­˜žlåÝ /™Ò®@®ß~×ÆÒ«Z}ÚàJÌ ÃZ±ÈÒ`*ÜIéÒ+™0+ kE>7” Y¿û¨ñ¨ Q†ó÷TÀJÏÓ:߀YaX#¼«#Ž/AŸnµO‹®Aã°@°bvz”^Ýî¯÷A&s¬*ˆª‡v€ÓöTÀµ×-:Í`YaX#¼ƒ+÷.6ŸnõU‹®6ã°@°bte1½²ÕÇ®„Ò®0®Þqt oÑuÐÓ­>pt!‡‚õOe©Z>:áÇO=¸~ÄË‚Éê Ò?ÚÕ”£ëG§[mÑ V8,l4å ¥W·3ö!¶NèpY0Ù óæ˜©`?_¿q1ì äêñ›Æ¡:J*Øk“`ê>4,¬‡xÙè/´u'TkoÁÓÂÑz°W¸}¤ÖonmÑ4,lyYŒô¢¹Ê–Ym¬n.³Á®@®ߢ÷ýÌ?½ªÕ§Ö)XVVí~|.ì×RAçUV4wãiáh+Øìn*`}×@ëª3 A*w×·yÎ-cå†< 6‚<™}}ó> ìŽ»V9g¨ýµžõ0þ÷íU¢ŒÓ‚Ñê›ô¬<õ¢dž`Z0ZmyžfÞRâ ñ¢ÄAÛ~F»Â¸jkóºÚÇŒµ­5K×m0-­7µÎY, î°9]Ç#kŸ€ÕvÙÜ@ FëÍÎOïŸé¡/¿átGeké–~dÁh½E÷¯ÿŒîY8áú3mºz-­7i?Ý+O­Í0—¾w®nZ0Úhz}åVãÜç„õ s 6‚ì{½£»²ëhƒÒâ´E[^J6Þm¯<*Ϭ­ûý“ÉŒ›ŒÖ[Ýà: ߊqÂŽgVæUƒ6¼ŒÖ[žŸVæUƒ6\†Á™u¸iÁh£éÙ5çæ]*'ìxfe’5¨“BžŒ6šž›VæYƒ:;VoÖᥣõ¦7ÂéA*àNYãoMgXVÖïp=£E.ŸôC5¾nº Wø0{kY‡…‚0_ âös¥BžzeÝ.»Ã~qâëAf]\#Ä›oŒŠn?;ázç6vJ¿©Ö‘xZ0Z£ü´2}õV·;7-­7½yš.è÷+K©€/Çã>ßõµ…<>dý i¼,˜¬n0]–#Ã…ÆÖT°âåðábk*»¹z;^öܲ’ WõNy/òø¼;[­kà²`²Þúéé3­6Öã+êœ,˜¬·ºudÓ¹TÀz-´5¥a¡`#Èö"[ëö®Óu´‹ùs»PKG¸,˜¬¿Ú~zùL«…£µ¶\•“õV·m•^#¼$ôüW v°ð²P²è}†7™¤‚®?´Wþ{è½òÑ™æŽ?Ãzͨµã§a¡`½eì“w™Û»=&t½e„7ô¸åè–©¯e+Е¬.¼ù&tý¡½ò󡽓b÷F–TÐõ‡ï¾qËá _ßÊjëX»n€7²¤‚®?ttWÏÚM[$H…ô†Ö÷SáÓ_sþ|mê6®Wùymª:jã²`²ZS ÐÊ-²ÚßòÎÊ‚Éú«2Ô*ñá}M© ë¯Jt3–_ö&¢BÉF {oºèÝ/• ºþÐÑM^ë°8s:o"*”lzÈ­&©pg%5jܳ޽säŽî¥þZÖC<ÎNýÑ$tõ¡Ýòó¡Gç èÞ ’ ºþÐÑ,ë¸8û£èÖò¯eõë48_íè&í¯e½EO“¹¤uÞ“Ùã ·dL»¹F›X}‘7mJ6ÚıT…ÿRw—•*ª`ÉÓÂÑoE˿Ǟ½~xsýײÞÛZ'çk<åð5l4éü½;l©)ò¨>sëê [QÞ½RxR›m£A·Ojo°…³x{WÀ£Û%OÙóKF7LÞa g[Ñ^ØõÙTÈõ72º¤¼îöT®õÖ×°>¯Ýº…P°Þ0¶nð6ºp¥&Ûžî#\©¹Áζâ휕‡7/gÙóKzíŸmálã…¬l÷o=øö5l4¹¶ÔÐ^¸É¶§a‡ 77ØÂÙF¼½›1:ç~šTÈŽ_2¾iü[8[!÷Î9K ½üÖÈÞ¹'á N¶= ;\Á¹ÁÎ6âíݺãÝw• ÙÓ°½ö϶p¶mºŠ“^åÇN´|“ UzÂeÁdýlÒ¾¸íðŒ7Ûž×1<ã½ÁÎ6¶wWø°O–=¯cø¸Ï ¶p¶íÕ¡…«gÙ>ÞÊeG«g7ØÂÙj¼·®wÏ¢ÉÓöü–щä¶p¶oïîË艶Sö¼•^ûçF[8ÛŠ¶;½Œ¥NÛóVF‹RwØÂÙF¼ï'< >mÇožßa gñöîÛž…¶az›”!¿†Oî¢Qx%ÛžŽ/¼Àrƒ]Fû Ûˆ÷æž·‡‹¢ƒ»/ŠÞ` g[ñvÑë”§VÓ‘,;~ÉðWžî°…³hïîD^{nµ˜mÇ[_`¹ÁÎÖã=V÷ì5—\ÇêÖ·æ’+O GÁÝ3÷ppt¼âEÀñHwH[8Ûˆwå¤á_7¥sÕ»¼NÙÓzíŸmáìj´©ë¦ÊX÷òñDV–§î"_¾ªw#´\ƹ]Ö ýtÿ™.‹–—Ð=í ¯eÛ3†…W„n°…³Õ-þÛ8÷ì/)˜l¼åKõ ~k©?Óž¡7Zêçiáh#ØîL;^|Ý…Öxñù[8Ûˆ·÷Àkðꢶޚ ýs-­‡zr¯beÛÓi‡W±n°…³x¿±Êóä.Æ+Ï7ØÂÙ¡x3µçý|ybçIÝà½\'ìéF‚7sÝ@ GÃ}L7¾è–mO'^t»ÁÎÖ3íé}‹2³¬ò-l4‘Ý»9*^xζ£ùÅ Ï7ØÂÙz¼gï±èàuy'ìéGœôÏ}´p´jw^Áʶ§ ¯`Ý` gñ®–X›kü™>{ýx‹`kŸ§…£`_F1äÈuz•èÇ¡&»Ó‹û z9†ýÜä äZ!îéy*lÏ.ìß` g[ñvVE–Ï#ºf•aÏ ã¤£PW‹‰í+„Ùö 1áÂlál#ÞÕbbs5{¾nÚ´™h5›§…£õ`/]m£_s}5ÓÖï¤£`÷îuõðÒA¶=odxéà[8Ûˆ÷\›¯7×Ï2íi&ÑúO GÁö9³³íi$ábö ¶p¶ï·Ÿ’©eîñÈ¿÷USÛ¨aW WðÚצ4Íõ§L{ÞÃhý‰§…£`µa·½´šmÇ[/­Þ` gñ^Üy_t™iO3‰Î yZ8Úöꮑ‡‹#Ùö4’pqä[8[w¾pœ¼i#vo¼8QûçF[@[¿"äñ¡ó±TÐG;™?N~ƒôÏ}´p´Ñº7wOÕdÚóØÑY O GëÁÞG÷Œ)šfÚóØÑ$§…£`OÞ„'|çi?ØOó¥Sž®ò öë«·pò²P²éÝÝaGÓ¿L{H4ýãiáh+ØÞT'~!d¶ëMdRŸlXJV#½wÃF'P©°ó+Ó‘‰ß¶€¶šøíÝÜ{›¶R½Uo'<íz3™•¨Õ³yY(YoÚ}磗gvý©%Zq•—…’HÏîî:zÛÍiןzUâ¡¢xY(Ùˆô² Û\R_Çd_ ëAzw½ ä´ëMcûÜ4Ô›@xY(Ùˆô0{sÈ`ä¤êÇ7å|èýgs7j 8,l„ùeë$’,¥Âî?!šâá²`²žÞ óqøéiâ0v*dýnÊÆóã8,l4èÅäþ³¬mwÊpý‰îå½¹høB˜Ó®vÏs§tüzË e¡d£i¬›wH ÖzOºÚAÏýçZ«ôâ°P°zi»}S„‚õ–1öÞYJøbˆÓ®·çAyS´]’¼,”lDÚ¿–\8éz‹?·h­&ÃBÁF˜/yˆ©U*àk¾ÈLiX(Øòê †OøŸvý Tʺêù~^J6"½¹'ƒÁ–“®¿ƒóçwP+ùã°P°æ©»D¶¦žòÇŸ/Ëóò*yÖg‚¸,˜¬Ï§ëYHää_*è‡ú±qdx~#¿¼šÕѰP°ÑœÝ[þ—œv½¯ÓJjjÆËBÉF¤—ÁÛ ƒ§ŒNºÞ<öÏÍCÍžiX(س{›_ø\ùiWÇ¢MèÕô—…’H_î%C Œ©Í”ß”æª(O Gë£á|2G+Sa×[H¯´=5½Ãe¡d½UÏËÛîfV˜áÇë2qsB–†5Â{¥0'ûRa×…VëQ÷oà²P²éÅ[ ì‚+)îŒ=O­k)<-m„ºg×4Së%ª üs,lyt'vÑãž§] •}¯êaO^J6"=ïèâD*`Ï;è¤£Pçu±¥«TÀÕ÷0¼ØFÃBÁFwïÝ!ᣞ§] µJ±º¿—…’õH¯Ç§s±U TÀõÆ]·¢a¡`#ÈÓâmÎýçæ¬î<ízÓP¶«G;yY(ÙˆôÊ.O¤®7Žè‚ ëAÞúê%“­3•L[‡ŽZg*<-m»²ë·u¦²½Ü4Ôq3 6‚¼TojÍ ?\ÂBeÐ<-m»²‰£5Þ*;"ZógØÈÕ¼û*­îæéV¹æó±8,lÄxÑ,4p½YDóf 6‚ìÜ4ë>_š ¹Þ0¢gbyY(Ùˆóeôã–Oò­ïIχ]7­Ë',+ kÅÖ—¿…g$®¿vÑ +A^þëºÞ7–Æ’ä'Üýí–Rdœ†­†—; ]Æ·Þ§Åpß!—Qn–8WoíišWÿÉGjåï“@³)}zu+ï_lB«‚¨µÐr§ù‹ØÖß:/üs,lÄxw×›BåŠ'íyëBåŠ[háhåýÿìþ؆ð8Y¦{ÍåêcËôš“Ãí¿îãð·íSHn°´õØ_n @fì©Õ¾¹±Èp‡,”lÄž´§®uÿ¡"Î ÃZáu¼7¢¤B®¿ ±[\î…’8/öZTc!ç)×_½X!çY(ÙˆóêLlCņ'\{C¥œ†­†—»q¦Œoý‰Ý’s‡\F¹YÖã<ôowôAõ†,×_½p½—…’8ûv¹o»H¯põ÷ ^Ðq,lÄxufÊá q–ëí"<#Æe¡d+ÎìIÎTÀz?ÿÜ AÞœg-½ws¤B®¿€±ûDî…’õ8tU ½È×'Æj¸,˜lºØš@*d%m¯bÀ®0®áÁ9õ O±³\ÿíÂSl\J¶â|d‰ýßøå•©ç¿'Fn¹¸ VNõþÊ#{¼>p}Ì]p,l4eç9)÷]>©ë#vìþ¡;d¡d#Ît…+rm0 ×ä`W׈ðê,d„ FY®ÿvá‚. %qÞ}†÷r™ô ×ß½Ø}87ÀÁzŒ§î±{ ¼‡#tÿT‡÷‘$ÃËzòàÕ¶LÃBÁF˜é:b*äZ'®|®0®áËÍ,H1rõ·‹×=qY(Yß81M¹Œ1ªeŒ-¿&ÇõY[NÇÿ†ÿGó½Æiáh£å9?Öå¾3*rµMﹺCJ6â<»·uÁ”™~¨'€^ö œMs% a>¶s?¢üýNüôÊâçôé·ËðÚ]áíqiÏj††…‚>Ô+÷Ÿeµ,0·Eq²`²ÑàVgµ6¼––åZ®^Iƒ]a\#Âö|µymª\ÑÖº†»¹V€}åðø Z–ë‰\x —…’8ï›/Õê•gVk[Y®§-^ùç6Y(Yóœ'ÂŽT«ÿœj© :ÓÕÄe>'.j{¦a¡`#ÌôŠT*äÚH^Cƒ]a\+ÂoevlÑ=Û×_[v¿ÁÐ6>VNз.¥e¸>xG—ÒæÑ~ ›—Ò¾…­ û:þøRZ–ëCwx) —…’8;?êë¾n6r}èŽ]‘{‡,”lÄ™^œJ…\WÂËi°+ŒkDØyeJ|--Ëõ·/¼˜†ËBÉzœçÇ©Ý×̦B®¿}^ùç6Y(Ùˆs¿ïIóÅ™}¬ÿû×îÏM®@®ßÑW“‹¯¦e¹ÒÃÅ×Ò`W׈ðä+ÅW²\ýíâ«F¸,”lÄyöí"q_ß› ¹þ Æ®¾CJ6âlÖ®›ïÞÈl­‡ ß¾»¹F|Ùšxzu?ÛÈUðQUÕ -\ O…\<µ{ØÆ5"¼;»pÝ>Ëõ#\·Çe¡d=ÎëqÜ£>Ø)Û«” ÉŸrýôÊ?·ÉBÉFœ‡Å3ØE¯ïÈluðˆÞß»¹F|ßK§XÙ>Ûº‘¡¹h˂ɡP3ûë3£u´\ϲ#g­ðÂeïTȵ±:\¨‡]a\#³³—é³\§ÃEz\J6â¼zJná;h2[C¢—ÐÀ®@®ßÝYr —è³\{óÂzØÆÕ#¼uÎ’[¸8Ÿåú[.Îã²P²gºL˜ ¹Ò2â…MØÆ5"¼ør¸¦yÀõ_.\Ò¤a`+ÆìÖýTÀú™ÖÃ4,l™.²¤B®½zá²ì ãêÞ{ßXñ’Ðþò},ã· —„pY(ÙŠóäÙ¹¾q&»Z¾†î‚‚­³;|SWû·ðžd 6‚LOMS!×z¸ðdv…q­+ÒØ‰µTÈ“Z4m=cGÃBÁF”oÝqGáR!ן٠—\BÂ÷¶d·Ú!‡/n¡a`£Ulýüñ·›sqá(¤ÏÙsV†»K‡L]¨ÅÓÂÑú¥Zûöì>¿ß öqŽøð]³Ö °+«6å?\J…\ø¢µ,ÚÆ}‹ðóyó5’TG/l4 ×ber£^2“Ùjwìunr…qðŽ®HÁ¥Ò“­öÁµRÚÈ5â W Ó+\ë!¢UM˜„µ¢koÇo­hž°¾‡ ±¢‰ÃBÁFWWhQº4}P^}U/üs,¬‡¸ïí¯¹¤yʵ7/ZФ]a\+•¯¹7VÚN¸úÞE+m8,lypM÷£gÿO·úÞEÿã°@°bô”fze«=UJ»Â¸VxŸñE6<¦B~Ì~`q»4o …£­X?×™*P*èÜÅõ`íêZ8Z­]õÃù­ŽQµƒ7Q¦‚îß±ñþÌháh½e£'‰ Ÿ4=ÝZ·>jŠÃÁFˆáyT*àN)ˆ´ÎûXVÖïæÉäÂÇÇN·Ú¢çÇpX Xñ˜¼òðþÛ-ù·óÞù xP^Œ¨ûs“+kE¸r´uÎ7^²pý­ ÏøXVÖo¾ëK;SAÃ_þúÌ^Ç |¯·a 6ÂìÊ%¢‡mzçÀ=lC»Â¸FxwW|£GN·úÀÑ3 8,¬‡xò.v±ÝA'lÍ ÷Ý@ G[¡¾®7³ÓTÐý±D¶‘sjžŽÖçÔ=9M¯²uX¸uFË‚ÉF«ž<³‘ðá›Ó­õxáÓ78,l„xf£TÀÏÎÊä`W ׈ð2ûFÁàîÍöŒ'Núç>Z8ZõÜõžþ"zçt«o_ô !>&•T1 îµY@å \L6Â<¡{8Ÿîlî'‹^ßxq]£'-N·ÚŽ£G-pX Øh—=õßW’SÁËCÜNÚÈ5⻯®WιÅðÏ]:³ADï绸®ä8¼g:»ÕÞ4MÃÁz“XÌ}ÿ­Uäeð4àp™e…a]±eê,E|­RHkq—“@¿ßÛD•+–r9U­ a¡`#̳ï6ñs7_ÎüŸîqcA­›ï#ÏnµÓ ï$§a`ã§[Go_£gÚóbGçè<-­;_eY}OæÏïI9㽸®£áÔÙ­¶ºðNj¶~:x& ùÚà Ù?. &ëÞ¦N4RAë"ëJfG<-] vuO±2{Pï;9áqÿë’Šg>éõ:båÂÞï…¤ËP·ÓêÇ‚ô¬<µ:nyƒ££¦7÷/@k/ÙÕ;êæÕ\LÖÃ\Ý]ÝšÝíÞN)šÛѰPp%ÈÕN4zãÇÁ:Þ½Ey­ÕýJ4,¬wŸ^xUžXÝY´wL F îý½†²ÑýúšLÀÝŸÛdÁd#гïô«2ŸÐïbȰ£qlJ»S7bð´`´ñ†»é]yju¥yÏu\ŽŒ6šÞþ\Ð'ꀩ€²öÇÝa­¥K\LVã̯G†…‚0û.° j>aGÓPêj“V½ŒÖ#=˜ cŽž½Í®ã‰•ŠÄ¤•©xY(Ùˆò\Y¶iÎ7²œ«k˜oà²`²hߥYáŒ'ìhJMiÒŠ‚7ЂÑz¤GߥC᳌'ìxf¥Ô1i5ÇhÁh#Ò®ë‡Â’²ëxb¥‚2i…0^JÖ£<ùÎü†Ïqœpý™÷N‰†V_»Œ6"=÷ìÀ’ ùr®L¹$`ï ºн>ò´p´ëår"Ù‘ ú¡~Ìi2¼WøX)Ü>ù¹  ¶Â¼y6,GÏIœn¿¨µè,ïãE>öV?x5éÀeÁd#Ì›o(Œžø9aGo§ì?™ÔŠ1O F둾–9ÍéU®¿ƒóçwP®@®bôìÄÓõå1Ñ#:ƒw™p׿Ýê. %¿Þå@±à–^á~ûë=_[Ef÷õÂ>ÀÃVó–†5›»6.ÝJ­oÎqY0ÙˆôîÛ¸=ëqÂŽ—O›l«k4<-­Gz.e/bN*åÇ8|j™Þ÷‚îô®Þ–s-­Þ–3,“kk`ødÆ WÛÇÞ)óâYí>xZ0ZoÕ«7 uï O=k½^Xþ¹MJ6íí™Ü»ÍSA×Ú+ÿ=ô6õð–×TÐõ‡ŽîÒõËÑmý_ËzëØœo¸;m*èúC{åçC_ÇV¦S÷êþžÖµt 6ZÆNïJM]oÑ­´~9ºSþkYôÞÑ»]SA×Ú+?zò®¨(™ÁÛ†ÆTÐÕ‡ŽïÂôÊá£_ËF똽ۿ¼%SA×í•χ»Î9|»wÃ¥‚®?ttŸ[ïÂÿZV[ÇØ‰W:H…Ü]ªàq‡- m„Û[to>L]o×Ñ“n9|˜âkÙô6¢ky©€õ|©qõ‡…‚­ ¯hRš Xÿ¦AcÃBÁz{ï¡B÷öÎTÐõ.#º'Õ/{S0¡d#Уs•Þ¹’— ¸þ—qX(ØòqÕ'µ” wTÞ¾ÆÕ+˜†5¢»xÓfïåTÐõ÷.º¯Ú/{gBÉz ÷IïÖÙTÐõ‡Žî÷õËÑF_ËF  ™é§Â¶îÊhž¡Ü` h_¼é†w«r*èz+‰î¯öËÑ#]_ËF · Í÷Së©hë …†…‚­ ³ù~*àîï-aæ',+ «‡w¼ù†wÃ}*èú‹=$à—½³¡d#Ðce¦Ý:7ÉpýÕ‹ÎMhX(ø-ÈÏG^YLô€ßײÑ0~WlÑ“© «í–/ ïO…<ôWðó‰½Q£GUNÙÓö¢‡Uî°…³ö±öt&öƒ5n<Ü»«|˜‡_Ê?·É‚ÉFwý^ÊcªßÂÆ#;‹á[9¾–õ½ç¤ne6n;ì äñ}&Ö߇J¯ê£ßŸ>¼­‡·XVVíÞ»Ë6á*j¶=}¸Šzƒ-œ­~ õŸýè…†csÅ'û÷—~ä2Ç{²¿å?|ùßÐý7é³}žŽÖ·#íÞórá˲ìIdÂ×!Ý` gïûàž‘‡×¨²íIdÂkT7ØÂÙF¼ÇêÕ­ë&™¶héçS»v†G7ºj5?ˆnteYaX}qgŸjUƒæ5©ïi£!/Þòf|Å!ÛŽN)¾âpƒ-œmÄÛ{ZØ{@=²ç— _ùuƒ-œmD{s—ò«—Ùö /áÕËlál5ÞS×Õ¦Í+j§mõ‚­+jwØÚj–=uƒ·~^/9mO7èµ/Ïí,ÏjûÀ´lä”=ñÚ?7ÚÂÙjn2uãHÿ’ÂÙFw2ºgìѵ×ÓötƒÑµ×;lál#ÞËÄ®ô¤BÖOÙµ®Nñ²`²èÕ[ž ¯O¶ç…Œ®OÝa gñö:ÞèxÊž_2z§ã¶p¶mw1*º©à´=Ý_tSÁ¶p¶VˆSA÷z3i­kß@ Gëw?¸ &ÑÊöi{ºÀheû[8[oܽ÷º‚è•¥§ìù%£—–Þa gÑ®–›× OÛÓF× ï°…³xWK­ë'7FK?÷ÑÂÑF°7w±$Z}=mO­¾Þa g[ñvy¢Èž²ç—Œ^!{‡-œmD{wÏŸºàJÎi;ºÀðJζp¶ï¡Zøj¯ugûxî ¹6ççF[@[ϼ‡Ñ]4 Ww¥1^5¾ÁÎ6¸÷ÎåÕQo>eÇ/é¶n´…³h»ÈðBÎàî½ôÏ}´`´ë™­§Bî”-6ÍUnØÈ5B¼¹Ë$ášëà®/Æk®7ØÂÙF¼½×_DïÖ>eO§çµn´…³õhîë/âë7Ùöt|áõ›lál#ÞOš)§Wù:Põm\LÖsìqr—HÂõÖÑ][Œ×[o°…³†í½¸C›¨Ißè¾ü2|;ø¶p¶m÷Åñµ›l{º¿ðÚÍ ¶p¶ï|L±¶Ù:x„ît‡í/m-;À)w€ãU~ì ðjú‡Ë‚Éêá£=}¦õnu›YY0Ùhu»»N.<þ"k¸ð|ƒ-œ­Ç{rÞѾõý”=c×þ¹Ñζ¢ížD†±²í ‹X7ØÂÙF¼G×<4•YG÷7îþÔ^„†…‚õñË-/Ÿeµ<5àdÁd£Á¹/´ŽÞ'÷ÅÐñÂû ¶p¶oßõÐñ[ñO¹þKúíŸmál#ÚîË•â‹xÙö áE¼lál=Þ³ûòâxexvWAã•álál#ÞîK&âëÙö´“ðºÇ ¶p¶ïáíóMTix¾œÈúø!ÛÖÊ0 ëuáÙ} p¼R9»«rñJå ¶p¶Ñ¬ýGÐÃuøyqÏ–Âuølál#Þ×CÑÈŽÖTÐõã]mc~)× |˜½¹ —†…‚õ0/îËtãÅ¢Å]‰‹n°…³xûp‡K¡Ùö¼ŽáRè ¶p¶ïqºt#ßßr˜JxS‡ö-¿“Û«¼?dýb;^L6âì½¶¸aÖ¾xg¨ ³ölál+Þ+¹ý,:à~9 6bì>ÿ¯û-î»hãu¿lál=Þ«ûÐb¼2²º¯ž‹WFn°…³x»Oŧ«ûN£øò[8Ûˆw^ò¥ºÀTÀ¿¦²öqÒû…¾~àO]$äiáh}Ëm÷b«uç­›`Z8Zo|Ûqéu_r*ÜéñÆ|ú†q–÷¾¿ÈóàÕ¦‡Ë‚ÉF˜ÝÇâóéÍ}ÑP|>}ƒ-œmÄ{šœvø;§ý`?U]Î콿îž>7eÿóÕ¯ð²P²éÕ»?̹/ò¤®´î¤a¡`#Ê—ñÄJD*àÇW%‡Ïܺx‚Ë‚ÉúòÉcï,¹2r½m8áË#;§G %–Í{RC‰å[8Ûxïy†–è î§]ï¦GeÐÓSZJÖ#ï…ç¶È¥B®¿ŒÑM}n8º û[؈òq8•K­?tT¾<´w'½sÃ`*äz ðó‘3éà1t5ÎnùòЗ<š¹ƒ"öƒý¸z¹ä§ž.òa¾:´à²`²ñνw\QJLêè§]ï£g¥÷Wsi\JÖoY>/›§z¡`£qìì‚TÀýeŽÙô@ÃBÁjç®s ¢·XŸv½5/Ê{¢íäáe¡dõ œ»±2Qn­/Ícv'þÑÛrO»êUùµŒ”—…’æ±9“Ýài¯a½qô½{ôV6«¨÷qžv=ЛòjK¼,”¬7ŽóæS,ÙL6šÇâZÂwþv=Ô»ò#j+ؼ,”lDzѼ#°~Uc¦„ÃBÁz‡Þ‹– yTßÁÆís8,lDyð&á«æN»úòjkÛ0xY(Ùˆôê½Ã×Dvý©{%Úâ,/ %ë‘÷@½Ùå´ëO­,rª÷ºð²P²ig®\—=áNßÓÛº2{-­n+šÇcÒ9ÌϪ`aïçÏø°÷ü3ÎÃï†òþ¿E¶xZ8Úh|«{èŠ^~qÚõWfR^FujËBÉF¤½5Çà‚õ {^'ýs-m„NÔSwÙ43±`YaX=¼ÓèN¢7œvýýSÔûxY(ÙŠ´sŸRp]ý„=o_peýZ8ÚõæÎw£× œv½(õyõ’^J¶"]Éw[·1œ²Õ>Z7Òßa hëážÇõË|Zm×™¶>ØÑ:Áàiáh+Øît:zËÀi×ßHeG½c€—…’H×Ö÷°ç}qÒ?÷ÑÂÑF¨šXE6°õЭUdžŽ6BýŒ4²;½Âƒ6Èì°]Ù_ð°õ0£¬0¬^wi): Ÿk{»›çà¸,˜lÚ=ETVÙÕk2N»>¦(K’ê%¼,”¬—4ÿäQ-ö‡=vâ`ŸíßÛ1¶ó†ŒçBxù=­²z.äíÛVÞ»{ÊŽ$=|&õ[@[Ï—iôö¨ÑE¦=ÝS´DÁÓÂÑV°½%Šð}§]í Fe!Q½Í‚—…’HÏÇ.^l_z*d}×Kë^z^L6}ù²À÷•ïT°ÇðÂ핦]\+¾Õ¹Jsµ-ÛVW×\m»Áжî-…ïÀ9íz§mnP÷â²P²é^nO/p¯¿1Í[hX(Øò±´ÅÝá‘ Y½$¾õÚ 6¢ì^ÖŠ3×Ù›Fk™¸,˜lÚ[–ߘuÚõžN9^­Þ—ÅËBÉF¤÷<(ºê”éãGü=àÅ­:ñ´p´ìzÒZ¢_ëock‰~]«yXk‰þ{ZöÖUKÍ5¦l;RÓxé[@Û ¸»ì½’ë´ë ¶‘PÝóËBÉF¤½gÁ¼×Z¥BVKaùç6Y(ÙŠ³{Bt*Óža&ºÅÓÂÑF°çÊ9³æZ^–õm¦Íµ<\L¶í,}Äï·:ízŸ§l±To·âe¡d#ÒÞC™JÚ®ÞkuÊõ>Ï+ÿÜ& %qvwÓÑÅ­ÍÝßE×¶pY0Yô~ôÿõí½œ&r½qD/Ôáe¡d#΃7O/d;· ]¸ÁжN}SAßik.Tó´p´lçaX÷;©ëo¤Wþ¹MJ¶âì£õêL{™hÁš§…£`ï» +²Õ7ÅäŸÛdÁduçØÒÕkXEÔ“Îíc‹¨7ÐÂÑj«^ºÞÞRÒ\i:eu‚Û\iâe¡d#ÎÎ[ Ü—Š¥B®ÿ‚Ñ‹ÐxY(Ùˆ3^[O¯´#= / Ü@ GÁ>¾¦ÎUÇR!wÇæêy´+k„x™ÙjM*äz_­0ñ²P²º{éÎ)˪fwCÎg™ãï_{ýoú×Ñ'~>†§…£–·:KAÞ›S!×ÛtôvF^JÖãÜ÷;[¾J…\[¢%7^JöÅ*]•‘~°·©gy\/òõ‹tj®‹Ëe¤Ûe#ÔÎ{8Ü·`¦B®¿,Ñ›;yY(ÙŠóÛp5Oú‘Ð|šq¶–4qX(Øóêœ#GË™§\ïí¢åL^J6â|«ŸÍì”gÖ¶„žrõ ßÝÉËBÉzœº~’ ùñÎ`Åv…q¿uL©8ÃV‡ßV)Æa¡`½N< Ωq¸¤–åú â•?>3Té)ŸºžÐmJB§NèqY0Y½õ~Éws?¢P²ÑoŒ¾9·û~âTÈõÑÄ+ÿÜ& %qÎÇ-žÉâW×¥¤Â?·‹ÖË]`VÖŠîBYSá ߇ëöª0 1^¶Æš ¹–…«Â°+ŒkDxuÖåÂõÏ,×»pý—…’8{oäÑŽ<ëýÅåî#süðÊ?·ÉBÉzœÇ|¦«$¦BVŸ¹½ú‰Ë‚ÉV áâx*äZW.çî0®áÑY ×—³\ÿíÂõe\J6âì¼×Ç}»*äz7ç•n“…’8ÓÅÚTȵ70\^†]a\#Â}ž<ôCý8®fxܯðÃ|ðz¯ ÃBÁV˜¯våG*àN¯¨¶^Sr-m„ú¸©Š[xH…\íâ‹%¸,”lÅÙY’ó~­"rýŒ~aƒ—…’õ8OýÆÖ˜S!×Sýp]—“@¿W¯¡Å©,wu?hm vrõ•©ipÎÃ+SÓàšQ…·zî0®ÑˆÇÅ›Ï/n8éjv4uŸ³#5g¦a¡`+̾h|=*Ëõ;¼…ËBÉFœ×¹¿” ¹þ zåŸÛd¡d#Ît}<r­£ WôaW׈ðöS‰í}©€‹•COîHÄeÁd#λwü Þˆ‘åú`ÒLôƒur­ûªÌñ…©,×’ðÂ. %ëqž×¨¹?z• ¹þ zåŸÛd¡d#Ε£¾í €seCiû . &¦—zR!×Fíðâì ãžœ{£Ã SY®wsá…)\J6â|\Rm»¹Vˆ}å>÷'äR!×G¯üs›,”lÄyrV Â+Y®uráõØÆ5" ×ÚS_ “Ìê [Av։«Y®¿ áÕ\J6â|I¿™Û»SA?Ô#ÃÓxóÁë͆…‚0;? áþ_*äúHâ•n“…’8Ó¥ÚTȵÑ$\\†]a\=›óÞüxaysÞÎ/,ã²P²çÉñûÅoªËîã¤âo!ñ[øç.X Ø ñ^f/ÔÊøv½swúxÝYëÊ8O G{ƒýþ¦´/”l—ËŒ)kx™vË(·ºFˆŸÚpH2r½Ó÷Ê?·ÉBÉFœéE‡TȵA;¼L»Â¸F„ˆ/‘lÎ)Ä—HpY(ÙŠóæI2ÂW©e·:d‡ïR£a`=ÄmHd9<ríå ðaW׈pl‚â>3’ úÚQGáiáh+ؾº\¼Œ¿;o‹—ñqY(ÙˆóÐ{zæðMjÙ­ösá«ÔhX ØñËG¼¾¯Š§>¦Q¹¹ŽOÃBÁVášx*äÚp®âî0®açG:â¥åÝy;[¼´ŒËBÉVœ]9e®£ßT—Ýjÿæ…î‚‚Õ¨[ßÒUÕ÷ç6^RǪ‚¨z`½Ÿw íO¹òV„Kö´+ŒkDØùMŽpíí”ë¿]´öÆËBÉFœGW^½_êt«}Zô‚)6B<ûnÉüýËs]S*àjÿæ…î‚…‚­ /äfßT¸»‡·ç=Õiº¨¿Þ!ë=© ¢¡]|·pñø”kƒG´tL»Â¸F„ýÜÅA©‡Ç7¾·‰ìNóÕý\oÀ¬+k„xssÑëºN·:jDïëÂa`=ÄýQÆ.fJ\5œðÏ]°P°ä~ö,vG÷ÕŸîôhïƒGóÆz ¶b ×·S!×hEžv…qÏ[‰‰Âk*àË÷ØÊ 7Yž–Wy~È«zšŒ—“Õek?ºjlÞë˜RáVÇ/üs,l4åémJ­–ž´uÁvãjé ´p´ìcçÆc–G|_/p?ÿÍÊw0ÓÓz¡4ÿj¨qZ8ú-Ô Ù»ÜòüéÕŠTȵñ*º¾B»Â¸ê'kÿ¹#üã G¯÷îÙ>¾ëétkø²'ÖCo­ïT¦#ê­§[퉼ðÏ]°@°^Cº üå„aÜ;SïhÍ)Ãõ Zs¢a¡`#ÈÃÈíÛK…:|~ÚÖ=†¨*ˆjž†¥®¼nái#Ë ÃVÃ[.”&êý §[í|½p_ .#Ü ë!ž»·¯a3SÆ ×ÚDtÂȲ°ÕðÖZpôÐÿéVÛCôÔ?—n…ËØ5€©€õÔ¤ñâB 6‚̯fÂ4,l„yqÍ¢‡¤O·úòEOIã°@°âNßS׆ètƒe…a«á­´àøÓÅwû_ü„) —n…ÏÝ„_ÏR¡vÚØÑ:Ÿƒ]\#¼Ç}áÔ¡T¸£ò³ÙŸ{XaX#º®«ÆâgòßÅ]ñCy4,¬‡xuÝ?²únà‰¡a`+ÄšÁ§Ö³“Ö9 AžVϯ¾ûø„Íü†s™“ž¯có=üYsð´`´i×6ñ}í«ï†˜øÆvÖC¼ùÖ{Âwlž°£Y J‹S¿xZ0ÚŠt1³¡–ø3|lKøôÌÍkü¸,˜lÅySÁ>žxؾvnrrøæ/euó/On¦B~æöÔaS Öšn— ÒÀô4®z«dëtvrf<¸&|áøÙ­ŽÔá­ø4,l„x|vòߎæíVÛå öçSÂí®n°´pûÖb×òž°#)•|K6N F[‘^)FxsEfkCvxwì äêñÝ;ß [ÙU ^fzÂŽ61)ÍM 2O F‘öl§ ï±Ø{W»ˆî±`YaX#¶ÃÛÍ L1.ÃÏœ)ű¬0¬Þc—?´À VO¼ƒðÏ]°P°âÅ—Q„¯3Ͱ£G›•ÎRï$pZ0ZôÖ9?"½Pï„ϼ(áÐV¨o £­H»r·à.‹“­Ž"Ám´+kÄw¸pûº ÷Øéµ|Xÿn+\Ю@®ài ç§©°­ON¶Î«ï°´€/¾ÙHôÚ·vôr«Òj»n £HoÇòõ#Ôç_1z·W*èçæ$êB2^L6"½;í½Ð*½ÊõgŽ^s¶õ¾ åÃ×Y°£AoÊ»¢í ¹ŒVêý£ö7LÖ[t?íèô*°žÐ4NqX(Ø2»Ž–^]+¥i\úãeÁduñïíš †¯1:aG§±+ý‘¶õåZ0ÚjÐ3»Ã!ò8žhžîÒ]܇xàz¯Áº¹zˆ‡Ë†èïËŠ©`ÃU&°UPÚȵâëšž„/0:áúk·(û#È4-mDzyW±™w¶rÁúñ [óÌû[@Û¸ïÛá;NØÑH”m~‹š<ó´`´écÚFIL¬ïHoÔž‰†‚õqÐ ïÊ«Mn:n iÁh£½±ûfRánÚÊôé®Ý‹;>ÜQïžaW Wï˜'ç¼7ž=ác#YL…ý`?Ö‘²¼öùzG¶ZÄÄeÁdã%akTéÕÕw–·Õ`W × °¯¸¡ìÍz»çëž}ÇgÃûD³[ï‘×AéìÕ7„§£õaÕO+…À¾ìèžéS7-­7éyÜÉÞT¸ÓçW°y=še…aèŸëñäàá*]¶­iZs•î[@Û ¸k~é¾Çî ïÕ 8Í3Ìl{"žaÞ` hë¿äâ»*Æ}ãØ~«RõžL¹îñÐT½‡§…£õiÅâ;%î¾Ôì/l‚ž YO£›'¸,˜l¼‡ÛæÜ§ìpy»Ë+ô¬Õìš/ ãe¡d#Ðìl(½ºÝßÏÇÌÝPUUíê;áï¾(í ÷ºF“ ørýjYèÉò:½ÊëCÞõ—“õad=N\w°¥‚®¿Ð^ùç6Y(ÙxS|Ž»¯ýyÂîT1<Z/¥á 9Çõs-müŠÛ'‹© ‡ãUüwex¯ðÃ|ðeù¹  6¼ÏÎ^É{P*èú½‰—…’­@/ìÆÀTÈ“öÌÍ{iX(ØŠòó¼páÏÍ·œRka©pÕ%ÿÖµ;ØÈÕ³£|½)·Q4r½±9áç#î"`¸œ–mÏÐ.§Ý` hë/÷6y7P97¦B®·'|ydoåaR†*uÓå69gñ^ùç6Y(Yß·w.˜Ro¹P°ÑœçÞj˜ ºþÐá ¨ÛüÌù‘ú_*d½xÔ\³ÄeÁd£uì;¼á+t½u„÷¨íÝ€ö£BÁzœ÷Î;RN7¼Ý~– ºÞÛyåŸÛd¡d+ÐÞ]ñÞM{© ë­Ã+?úØR­Õ§‚í´^´yo íbö¾€‹Ò˜Õ­C™®7f¯üŒóìœÁ†O |+[^ÐêT*`='h­§ÑpäfXÏC—‘MN(Ym{ç=JéÞ— ºÚšÝò塽3+ï}m© ë‘Ž^2÷O†3/¡dµEï]ß³ÑJ6ZtïœZ¹÷1¦‚®·h¯ü|ècŸ U³K…{º™*#/ &«•ÆôõhØ{R×<ƒ=åîó6Ôæù+í ä]Æâœ­Eç|-]Æê]ž÷^<˜ ºÞÏEoKäe¡d=Ð}ïÍ÷•»ÉÞ®=K]h¯üó”}Yyø Àײþö ¡d£qÀó×TÀúÉùÆ7 A®Õp'‚'¬­A 6‚¼8ç'î ÛRAW_¿ð-sÿdß,"|üçkÙèæÖ†P²Þ8†Á™l¸¯YGw*¼øó½m´îÑ=”E53í飫š<-mû’\CÅýTØž.0¼(qƒ-œmÄ»Zn_oËvÞÕñé# í n7ØÂÙV¼½)w|Ae­$j_žÛwÚ<~-J–=o|øb”lálc¨Ü½³øòÕ÷¶Þº·êÒDóg¦=ƒŽ“þ¹Ž6‚Ý»`xµ&Ûža!¼Zsƒ-œmÄ_ÒK¯´gÀ ¯Dò´`t-ÖžQ2¼Ää.ðÄïHܼ7…(iƒ~©N–ïzüZlál}Ü&ïœ/¾ž÷½m´íêÒDûªïv¹:¸2Þ„ŸÝ` g[ñ®¥ÜÍk‘[õhQ”~>õêÞù^ ɶg( /…Ôíæ5Ôïi} uóîá5ÔÍ?P†×Po°…³—Ò{/Ž’:èWŒeÙ3äxíŸmál#ÚûõàäN*äúñš‹ÓÝ.îan§û1Ò¬+kd#»{æ^þÞÖ›Æ^[j_>hϘ^æiÁh#Ö£{L¯8eÛÓFÂ+N7ØÂÙV¼ÝÅíð"p¶=ƒcxø[8ÛŠ·óJÒðÕYö ŽáËÿn°…³hûwo†WݳíéÇo°…³xoµydû"H¶==Uxä[8Ûˆwu¡¢})8Ûž^0¼|ƒ-œ­Ä{ý¯ëªµóƥɧíx/ƒg½î±…³x×6M5–‹ÿhÇ›¬ßB F[±vg‚±µ²§íy'cke÷ØÂÙF¼«¥ºÆœ§íy'cg„î±…³xïÞ™e° ö´=ïe¬ v-œmÅ»z}Oײ¦ð¤f2ºk¢í|Ó-´p´R›ÿg÷ƒ»óŽ-…õY^÷Wy~ÈÚ ¾;dÁd#Îျ“/½Âý¥o"®¼ Öƒ¿…Ê!°;d¡d#Ò»]Pj­BL/ Ìïï`kvrõσw—TðÁÓ®7‹Uipj²ËBÉF¤s’ÜZP*äé¯iPËW4,lDysgt±ÕO»Þ66¥Õ©É. %‘¦þTÈzÁNQ`W Wñ2âÛcSaׯ®49uS/. %‘¦³ýTȵÆžŸÀ®@®âëAVff*ìjÃøMò?69uW). %[‘F“ÐT¸JÓhM™QUUí:]÷ !w×¥Â~°ŸÄ)ïWù@¾rãÞ²P²iólO.²{Ôf0» a¡`+Æ›·5+kʽXO»Þ2¥Í©#. %ë‘Þ† -r¥Ö $­e9 6‚|Ùü ¤D©p«/`8‡£a¡`#Ƴwû@ð²§]ýFåÅV§$¸,”lDzŸ¹¼(ê£elX‡ª‚¨z`÷ÎÃ)×((WK<ízs˜”†¦NDpY(Ùˆ´o†ãÝ-–^]}9±u{ì ä^ܽqìœýÓ®7‹YipŸOÙß! %‘^uTç®TÀõÆÝgDÃBÁjÿµÙ]oHÜ]Z#¹Ž6BÝ»ÁEé95Ú½s@Y”÷»”n“…’HçÅŽÚeš yÔ^—Ö}±8,\26]-ƒ¬S'Ø8\¹6‚||=†Û#œ ¹Þ0œðå‘KFÎÝr©€ë£`p +hþÊÛ€þzBÁFSöÎM¼›¡R!×ÃÝÀÅËBÉVœÝyFôˆÓ®Ù«’ hA^JÖ#Ý=:{M¬¯7N·qX(Ø òîmÎÑ N»Þ46¥ÑiSA^J6"=9÷”z·ø¥B®¿(Ñm‰¼,”lÄy­ìÍo,lœpý% 6pX(Øòæ®ÓEoe8íú+¸+/·š‰â²P²éÝ™ï{wR¦B®¿(ÑÝŸ¼,”¬ÇyèkM5ë2m]ÐÖZ¬ãiáh#Øp© ðs>Ï”6XVÖï裄¯9íJO7<þO=z±/ %‘væÑbÌรµØÈ5<;³fïÞëTÈõß.º_œ—…’8ç…FdÃC*ÔíoËG9‚ôùÅë/îóK?ê¼vrÕ[.üððV3­a%YaX£•mÞjCøòšÓ®wòÊÆ%õî^J6"]9gÚ^*›ñÛËÁ¸,”¬Çyì|Ó3÷qŠTÈÕ_0|„—…’8Ã¥ÕTÀǼ+³¬0¬ÞÉ[Ï _ˆsÚõNNÙŽ§^‡ÃËBÉV¤W_Ç./×B¯H¸ ŒËBÉFœ×-ª¦®½‚Ñ"0Ë Ãáõ.dG÷e¸ÓëpÍ»€xZ8Zµ³Ä®ÿ:§ìáê/ì ãñ=ªCØfTÀžFá¤£P³å§ôêÖ:¹h± UQ­Ð^cK¬¤‚ÎÉᧃîÍë<-m{v&qáªd–ë¯H¸*‰ËBÉFœwg‡®bd¹ö†k°+Œ«Gxöí±Š—/fß|=^½ a`#ÆãsÒþýêa*ØGÞ2¼OQ›;aW ׈/==M…\{ëÂjØÆ5"\;·Ó<Ý›÷JÖÒ<ÛÃeÁd=Ð ;wJ/n­Y„gz¨*„jDöøÖ<µd˜ wÐf­Kœ°+kx½Dt"iÏHó´p´ì‰\øM…[o>÷ù¼ôä#r­¿O—`WW?²´ìä' «7àµc/—zÂðô ½Â•ß->aYAXãgë{ǺXàâµTÈêL´ù²8^J6â<Œž^BùýÔÅîÌNaã}›Wój7ì äñW÷㽨ê /ÎãpƒÒØÔ¡y½| Áll^ùç6Y(ÙøW×0]ÜÍlµÁEWwaW WïVÝýß<åÏôQ˜?í5ižóó´p´lç5ÞÛÜR!×_Àè t¼,”lÄyrªÎ½T°Õ—ÐéþÜä äñu÷Ñ Àæ~ù¢\L¶íLÃ'ååSg9Y®¿|^ùç6Y(Ùˆ³sö¬nµrzkц…‚­»ê½áÞìV;¹ð / ë!ÞûÁ÷~„'íYV«-í“v\J6â<8Ó8ï5©ë¿`ôêJ^J6â<¾n9XüÞ«+­Ç´pY0Ù óîé™Ã‹êÙ­ösáUu6B¼Øç9Û«EY®÷ráj. %qÞœùò¢<ó¢Æysæž^ùç6Y(Ùˆó±K ¬¿¤‚~¨Úí¹››¯ð1Cûåõ^†…‚Õ0çA¹©p«ý\t£ !î퓌Í%¹S®÷rÑ’/ %qžèúK*èúû·|~ÿôÖ ÃBÁF˜¯;ø¸Ý§[}ÿ¢Û/pX ØñâÌ1¼Wl¦B®÷EÑkAyY(Ùˆóê¬fDkŸ§\ï墵O^J6âì½ØÕ{Çf*äú/½”—…’­8olÑ6²u$¬­ÎÌË‚Éz ûî1½¤Î5<Ý£ X[ÃÎN·6R…·œá°@°ñÓõöý-ÍìS~üxïû€šë×´+ŒkD¸ò¹‰æÚõ)×»híš—…’8¥Dî ÚTÈõ_Ð+ÿÜ& %q>NóyFÕØ*ÁðzNСb«¼,˜lš.§B®uuÑ6í ãZÞÐe*`õík-©â°P°äË…æHµ=rý‰®ð²P²ç¡ã_à’ßTÈ•_°ább^J6✯˩•¹”T¼¬ë\\¸Æœ ¹Ö}†«â°+ŒkürÇXu9p½óŒÖÃiX(Øòì¼Ü{¥k*äú+½†–—…’8/Îa5\Ïr½# ÅqY(ÙŠ3z¾äé®ÎÂK¸ØžåZ÷.µÃ®0®ñ˽\‰MÜ€• ú¡~êäøßk½^àÃ|ðzBÃBÁF˜wçN«ðjF–ë¯Hx5—…’õ8Ÿ÷acWò¦B®R^ùç6Y(ÙˆóË7€˜TȹCÁU#\L¶ ™S!×F”pYv…qè1·§ë\± WÚGûféöB; ¿Ýbwp굃 ë÷x´Ö&iX(Øòê^®edÙÓo×2pY0Ùôæœí„‹ÀY®õá0ì ãZöÍSeëA9søƒ§c#0W£M…\i-ue\JÖÀi° :ÍÕÉ ×»Ïhu’†…‚ ûj÷ÞsLO·òù¸öªg–ë .\õÄe¡dã÷[œãH¸ê™åZ¿®y®0®á=Prí‹ ÛëDY®…"\%‚]a\ý§«Ü8Þ^ ªÜßÝ^¢a`#Ƴëíðž(]l‚š^áZ[ O¨YVÖøÕà©i*àÇÜTše…aõð.¾³‚îmÏo0–ǧB6[ZËÌv…qŸn°#Ü<ëX.÷lm-:ç`YaX#¼•Û™Ûç×ÛŽžÀ®0®áÊ­ÄíIÏåž_ãyÃ)Ë ÂZÑu Ƚ2Ϋ­7»óã}Û¿‡î‚‚—sÚÄÚ]*äúqÍÿt?{^1ë ä!^6O+ï£ÏnµM„7ÒÓ°@°bxQ"½Âõ6±lz„QVVï6 žÞœÝj{ï ¦a`#Ä—!ôû9W*Øãlì÷3ÏŸ›\\+¾®T"¼Ý1»ÕÞïHÃÁzˆ÷aö4áèT.³Õ&ËÁ®@®ßËçý?©p« "¼a‰†‚o®^"¼M »Õï a`5Äc·¸B]A;ÝêG—ÐpX ØñîÚÐ]é:ÝêG—ºpX XqÏNBS᪫h“fÚÈ5<æó¤ÐQ„TÀú7žÀa¡`#ȳk^]õ;Ýêk]÷Ãa`#ÄèL?½²õ×.V—€YaX=¸CWÏ%–çN×n ës8,l„x®ç H§[}àè  ë!ûz/ܰ„tºÕŽ."á°@°âÊ7 ZÓµìªë­éì äímÚÍéÚyˆH}âÖt†…‚ WîwoM&²[oÁlvrõÏìk— ÷ÑÃX'ª‚¨Fhá×-ðãyßoélîXVÖï1¡ÖcRáÝ_Qÿã-îC×wWùy‹»¶DÇË‚ÉoanGÿ™Ö–{ÆüÝb  6Ú\å2±Öá(»µ(8¡ª ªÚ¥CצRá:ZÃð¹5hk=¼,˜¬¿Î~züLkë2ãr\çËÉ‚ÉF«›|Ûszçîµ?xí|ëuÞ EOxä2 ôŠ¿èûnòÖdD…@õf°Î¾u)ïæ™'¼M\œ µ…àpª‚¨ú/¶u¾×»Wä ;—(½+øðÞûžØ»ný„ÇgIøû¼=ìãŒÉø^¤kžfÀ®@®ÞÔöÝ÷ÃyWÃOxêFß Œw ø ;w2x׌žðq’éÓS¡n¤²“µŸ>îdÕæ[´+«¶´©--°Vò„ã™L×þTw_íÚ»îðW`qóäô “7hfO»¹zK&ßâ™w=ãoì¬>r=NøùÈ»·¹9çq©ëœzúá`éäkØhqǾ$jØÿsÇÎ[ŸrN;S!×cœ)OãñmD¬Y¿ýzìlÁ™ý—¬ÞئãSrÔÈŸ wО¸5S]\=À³·ŸˆŽÐî. ~Ô ÍÓÂÑz¨ïKP3ìyè`iÿZ8Z5Û-§ÖóÀÑ4€†…‚GE¨ž.®ñÌ­}3. &ažÙ;°§mDÓ"žŽÖC½u<¬¤‚6nKm yZ8Úö\{eš‡ÃíåF(ó±£Ã!O GëÁÞ»Úç|›‡ÄL{;:(ò´p´ìë6b˜I…ì¸s9:4îc­ñµ_ËF w÷ÅÝóEGžŽVƒ=wƒû Ž'Ý?æøG o …£`oî288ž´ç±ƒƒã ´p´ì¾ÚCµŽ'íyìààx-m»ÚE5ާ|<µyNppäeÁd#Л»¿Ž'íiÁÁñZ8Zv>Á3© «_Þì•ÝÑj«¦a¡`#ÌÇ)6p€I]heת:(Ò°P°æ|’ ZRA×zýüÐêpHÃBÁF˜w§í¡3]èíóC«ý3 aö}¨ÞÛÍ¥W·¿L>™~vrÕèót|‚m˜5¥³½?’˜ñ°çá¿£á0ü7{þïC0n°´ ü߇V7¥¬ÛO\ÿ£ ë¯ö´-h§Ÿ ¸þÈÑaІ…‚õ  .XŸ^ÝúG‡(ØÈ5¼x¿g¹zËÐ}Ü.ªQ°+k„¸rø¼9 ˜+§¹›³ Öó€å8(5¬»:žNù÷{ÌÎöókûÝÿÆñ¿I=ip-­7»etöÑ$ Ãõ1šаP°äÍ™ØF“€å¥‚fÓsÉTØ×÷›ß` hësà LR×ZHtðcYaX½=oð0’ ¸öÀÑae…aõðîð’ ¸öÀÑe…að²sÈT¸j¦Ò:ç…]\5ÀK÷þQlj¸;íë»A wwØÚêp·t—ÏÓŸ¥‚}¼&Æu:ÑìvrõÝ+8<§‚­>o0› ]\#¾Ë[.Hôȧ[½j+Ø#Ó®@®àÌÒ«ZmÁl f…aõؾ‹ìÊï›b# ëcÜ0¹Æ¸`J|²Õf̉iW ×hÆëºSA[ù`cyþZ8Zö¸,ä’ ÷ñ’ Øp‡ª‚¨zhçî­^LµãL[]}k;æiáh#Ø—o´~Ý2R¡VnжbTD5[Îè°œb¾N’>ÞkÑœUð´p´žY¬Ý¿{© ?ãDö4,¬7éu™\™K´J‘Ýúå=ƒ²eXû„/ &ëaÞztòÿæí¸hg˜ôã3s~æñÑ4惞–­b=›Ü§n—“õNÃùÅ]ï,õÏÝß[âœ7<ÝqæF¿S]ûë9X°ã<á㦯`cÏÉË‚ÉêK½GõYSAÃç‰õ Óþ³®š†…‚õ0GßÉõD©­YI[ïÉË‚Éjï¹NÞBxGÖTÈ£–ʵ&8,¬7çyªV0›s–­”¹±9ã²`²Þœ×¹º¸×èõò©Ñý~c˜aW WñÖ-èë— ¸Ó_’æ.ƒ§…£õncëg6CJ…<ŽùâëÈ}ºóÅ}ˆ®¦°+k„xÑÜ(ðó5’9ØÈU#¼u—oÜ\*ÜÇ·r2í äªòö8„vn© HD»äháh½5÷Ç mÔë— ÷ú#2/ &ëaèÆ‘^åG&n¸·h\LÖ=Ò­#òõ7„Z4. &ëž.sx¦y¤‚®Ï”J³Ú¢iX(Øó¼’£w*ÜUY_=Õõ¢þz‡¬¶dTD5B»ôdnŸ wR†ÔÆ©Ì ÃêÑç…íÔR!=Ïü¡A4wĸ,˜lúøÎÖ©¥V÷Î6wÃ4,¬yÝGô‘SWO䄃LÃBÁz·e{¸T°zJØÚ#Ó°P°âý¸ýœ S¡ÊטL ª ªØc87t¤B¾Tô”Úa{¥ÇƒîõÒO Gë¢îÚRwŸk§Í]1Ë ÃªMyïàn-°ž6vÄ8,¬¹ï&®sK…ªÿtm]1í äêá–·‚Ó†‡ëÅVëεa 6‚¼Ï`¿– ¶¶Q-Ú Ó®@®ß‘}ëRáê/Gc/»¹êí^çÎÅ­S7e-Y>6¿-Ço·uÿ^‹¾?÷¾} - &ëímî*ÕâÆö6_oŸ¸Q vrÏœo§‚Vw±4OxY0Y"ì{ß³ ùÚ)c¡¾ÁÐ6Â=²ÉK*àK^Ù14v¯òü­XÓ²`²çu!{¼T¸Ï²²Ê4ö/îüpß?ýs“+«÷ЦrÄÃÝþëºe‡‚TÐÖ^ܦ,æZ8ZùÿÙýåR ¨M…m}ë§­û¿ÇÐVº¥ø°/p;Imm€nmÝ<-­·îqz[XÅZw¶¯Ul¬uß` hë­{:>ŠG b©pµ‰´ º¼+«·èùe~O¼ˆ© ;õ·kíf Û±‡|ëÕqËø±à½å¹Zÿïe™Fý Ò=¶€¶þªpï” Xß–ÔÚŸÒ°P°äé¥Q=S*èëª?åiáh½?辩Œu÷yçl{o »e”[]½=ÏëÛpÈt>ÚÅö}v÷s,lyÛ¿K¡õ(òõZÃû‘ÆåâæjM'`W Wñzü€/î±I?Uï)hX(Xñ–¯6æ¦ó© ­ ,­EžŽÖƒ½;XÈ44¶õÜÍéó ¶€¶ð¡›Ñ./®>)lë¢iW ×ðÞÃ/b*hkKc÷q-­»Ÿ.É ’ñ§‚¾~Nèã^óq½À‡ùàÕPÓ°P°æáø*Ùۥ¶šGk/}‡- ­V~†a:JÆëª‹y‹øxl;É[Ä×õ_ž>îÿ-FLpZ8Úh‚oc"2l Kù#"£Ë ÃÁÝ/Õ `²™Jø¹F¯l6÷Wy|Èz­‡—“ÕJÏ?z‡GÙTкé²53 a¡`½9O]¹·ç˶‘ YßuÙÚœiX(XoÌÓñ¡%ljŸ ¸~|uê”-—eËø¹Ž6ôXM¡›ó¯l?^Ã;pY0Ùõòj$ÑÈn§lVkÌ3PUUír°X— ¸3¦'­ý2O Gë}ór¹[éëv‘ õñ®XFUAT½ _?BdC©€§#'8\LÖãœ?ˆIRëÉÖ² A^èR@*h«bÔZÀàiáh+ØÕs­ã_¦­Ý­ãO G«ãßøø¼$ø2¦ÖÓÃÆî‡…‚Õ=v¹ÜÇM¦RAjªØ:äeÁd#ÒÛó2“J…½Â¿æÇÎì4^Ùíq·žþ½rœ†ÕÃû/a†GÒTÐz×:úÓ°P°æé¹<<rg$pͳ‡lm=ܳ³¯÷ ¦é•Õ+úc?Ë ÃZÁEGþT¸õö¹Ï»tÞ‹ ão_¶ׯÅß¾lí·ò|ð~$H\½E/C¦D©`¹ËøáüBk»¹z|ש'“¢T¸Ïk;˜Že…aõènÞ×"8Úe×ê7<\L¶Âü<”ARA_ï1þ¸!qš.ða>xµ%Ó°P°æ±Z#k­³}ü„æõvñÑú[@Ûø<Â…ëTÐÓø7¡zm$ž®ðA¼Þ®aX(ØóRؘٙ5g×Óã+q¸,˜¬‡y¿|©œ¨ ¤~¼&?ÌÝ\ÎÀeÁd5ÎSwM™‰!<²ã¢¦`ÚÁË‚ÉF /— oa*dÏCÇz^LÖÝO#˜õ§‚½þ~È,‡…‚õGÍÌ‘RaW¯œ–«|Ù ¯v¸,˜l„º~#Vcÿ<\¡š÷^Dûg\L6½,d1&ný^ùé*_Žúêa¦eÁdu¹9@oŸiu°Ž[89Y0You¯ËvÀ› Ùóª³\L6 ²©€õ;šZó Öƒ<=Z¦JÜ«¿^ca ‡…‚ OÚ.RoßúalmÉ4,l9ߦ„助õ†Ñœßâ²`²è¥ŸÑ `*àY™¶–,iW Wð:¸Õà "ËÕK™¦ýãÞLµ!î@®âq@G‘TÀúžÄÖq†…‚ /3Û½¥B®Þdï’qY0ÙôõÒX"¿O…\}çîã ¨ÎH`W Wñ¶ÃK©Ç]O³;÷÷!¸ÚaÀ®@®âýØÇÌUGR!? ÌTA‡†…‚(+[tI…\f'ü|dxèKÜýí§d†j–†5Z=ä¥B~<ñ‡¹^ó »¹ê¾Ìi_GôÕ V[ÅÜ3؈SÁ“ôïëM?7¹¹F|wtÊ” WOºÛ¦x´+«x8®³ ¦ý©p;õ[ ¼,˜l„yÜÉïéNè !nµ½g4´+küp—­`À š ÷‘_×õ…G} Öc1e.ÓË =†ÔæÌ—“@‹¯ÓBNØóú·ÌÜ@ G¡ž29J…[} £Éì äêž·LRA;>ÑyZ8Ú6;¤¤ÂÕJ. ª ¢ê¡]^®t’TÈG*¾‘ƒ. &'x Iíyõ¢ÃO GÁf‡“T¸•—0:ø¡ª ªÚu7ËÔ=qVE-ý³hOŒª‚¨z`7¶ ^\=çn-[°¬0¬Ýãk`æ“ :ל¬O•…ó5žŽ6‚=ìäNˆT¸Ú CãÆ ˜†5¢;mÜp‘ µÒ«E‡6TD5ûò…"ÙIíyÛ¢)O GÁÞ7tqá„—aâÆü':Oèx— Øš4ŽÐ7ÐÂÑjÃX†c¢Ëtêø,¢#SÆô _6ç+WŠÌc!÷Y¿Œ˜—“Õ«ˆ—ü'h,M{mpÈØÃBÁú 2-ü^§‚¶FÀÖÞˆ§…£`o_fÉÚ´aq~Ówž.îå4µ6g ]\=ÄóµoF˜TÐõ‡ž??´–tá°P°æîéRë%äÖ¾™†…‚ oÕ»(ZûæL_·¶P}3O GëÁÞÆ·~ŸiÑÛå°ÚãZT‹¦a¡`5Èk—¿lÌ¥¡© Ÿ¹"•:ó²`²š:¯ÇéVlàN¯®¾ 1Ñ ]\½);h§®?r0ÍÀa¡`=ÈãÜ£Í"põã#ávLÃBÁz§nBÛE*àú#G[2 Ažvt°N|YQ޶ÎË«¼>äQ÷pY0Y÷^ãLdŸe¤ªu̼^á‡ùàµD‡Ë87Ãzsžán.p÷·rÍtË,+ «‡w;¸TÀµŽvÈ,+ «‡7‘šËèS![åÔæyÈ ¶€¶Þ'ïó¾|©`ËhÆ ’á¾vrõæ¼W·~7·çýºõícª¹9ó´p´Ú˜·®[Á®.lµq{fÚÈUóÖoÕ½U­­ù´¯ ·Ts¾ÃÐÖôÐ-hö™ XŸW6æË8,¬^ûËQ-Z&­U÷¿ÿõÀëR?õeú7ûfc¢v .$®7¾qƒç˜©õ¯qZŒÃBÁz”§ËöLâ…I¬ÏSZ_q Ö®yßÉ´1nýʧyÿ¼ =jAÆeÁd=ÌK·¡-#°–ص¶d–†5Â{L©|ñÏ]$è• üÚ¿q£ë¸¸Þïï×ûÝ™œ4öƒµÎú-ÝE>ÌÃWß\LÖß›|•ÚJR_û<®}ß ‰«í{¿~ ²:/ 6À¬0¬Ú ÷îøj–æ¦îŒrUcj~-­7ãþå´;ó¦<ø§å°öžãZ8Z÷p]´AZI*h«xÕÚ¶yZ8Ú öÀÎ1R!OjÕ8-Âa¡`½³žÖjÑ´µIgúºqjÒ<-­7é™ÇÓ‹Z?±½ôŸw-h«Y´+«·åùr·3ª¤‚>Ž ~ª6~1Þ` hëÍyévº• Y/;¶NyY0YoØk7£ãJ*`+¡i yZ8ZõÖWv¤6·é,ëåÇæ6Ë‚Éz ÷Þ{We¸Uï/Oý1§imÕ<-mû¨ªsƒy*d½kjÍ>hX(X‰òþ_×õ•½wm}ÇSîþÖ:‰žƒwr篘€¹R*ìaþË_žúO^†ù×x=Ð0,¬‡ù¥Ï ”ô*çßÏ:Ïï“õ@OµJÓø„­L¦i¼…ŽÖC=ç‰!ÖߥB?°_tÑ4,¬GyérðN…ûøñ¦ ùÍÙ 1®nní5–êNãÖN—“õ@¯GÏÜ©€õ }k®AÃBÁz·K‰Š¸SAW5/Ê&65× a¡`+Ì3:–¤î´–ñÅøÇÓÂÑF¨ë{þ[;èíºuÞ<î¡yZ8Zö^»¡µÎ°^8ií£iX(X rßá/b*hõ¢šöîãZ8Zv·TÀZnÞØžaVVïп%ŒT[ÎôÑÏ-ï{ø¾hË<-­{<6.`³«TÀõ«—–òÖÒs+°6Þ@ G+g²Bö¢ØŸO]þÒÛ ÓÂÑzã›66KO¬çó  Öƒ<_+òHÇ” úR±ÓÖU–µ°§‡­ío¹ÇÐVö·ü׉NÓSAWÎ.ÛçÍ`jJÃBÁz³^¶Ê–‹Ö¾#ÃÕ»PÂ} ëA^/_‚þ>sL{¼~;—è®@®ß n©€»¿LfYaX5¼C·ÓCHz¥ŸÅ:làãeÁduÐú‰NÉSAW/O Ï#xY0YoÓýL§ú© ëOŸ ¾ë¯Â““o]=Êö€]*ØÚiçh¿L»¹z|§c3.–p¦ÖÓÂÆ‡…‚ gÁ¡$t§/q1Þ ‰ëãàâ¼Ñ'Ü®3\½†"Ü®iX(Xo×Ës˜²üôÊÖ¯ZöÏõðP°Z«tËk÷Yþ|/Çîñw;¸±®ûE¯t.$þÖ+]}cNÁdý-ߨÜ<½¸FûkŸOà²`²f¸ÿO¬¥Ð­ãË Ãá=.aåæ>©=­"<_»ÁÐ6½nx' üº’ /wàBâzÒ»ç/RA³ÏÓ»ïQSa;®} wØÚêÛ3vK-9kî®NÛóàÑîê[@[øàºU/:ôžìã…4îŒˆŽ½´+kÄw|Û†õ Ù>úTó²»xrƒ- m|ðQ,øõNÇÏ;Öþ…~¨ œûÿÜG Gá®±±¹Ã®?´ÛI¸Ã¾ÁÐÖ>ï=[ËI…\½ÿ.Z}Âa¡`+Ê;[¯H…\}æh]k\޲2ؤ‚VkÊ_t{<-ýÖ>.=¡¿¢P°Þ¤—Ëý@êôçn“}ìë‹v—iµ2ôE»ãiáhýGܯ{cÒ²TØÕk±Öá"_wb«o . &«¡žºn 3„TØõÇ•ÇÖò^L6B=ÙÇYÚ»“îþ6`A ëaœcK4s<áΨÚ4æŽ7ÐÂÑF¨÷ÊâQcúxÂŽ‡öÒ?÷ÑÂÑz¨ÇiE_ÄTÀ—;›¨¾—“õ8;.^ií?Î+nê—ù†ûžŽÖƒ=_‘w1´ã±Ã=O GëÁ>®á²Óô «3£æ„‡…‚ ¯;ü"¦‚>2uóÆ·p÷ÁÓÂÑz°×ãNNn ¹ÞBÂ3\L6=zÇ€p?iGû÷Ó<-­{;l.mzÊÇ+ס¦B®Þ­pY0Yÿ ÷ÚQÍÓî¼Ä6Þ1á²`²è¹£[G*äîoe„iÏ´+«‡¸z Kk[ž+÷š´¶dÚÈÕC<ìtú• ºzqß:]àË&~µÓ°P°æq¦óTÐõ‡ž??´Ú–iX(Xó²Œd— ·vƒN¼K¦a¡`=Æ•ûš»äë|ë‰Ã}2 ë1ΗÈa=\*`=;lí“iX(Øòâìíý[*àú#G{d Vƒ¼ô}¥ÞÕØ’O¸zA_´%ã°P°äméÕ­?p°Ó®@®àÑ+G[ñèº|'܆YVÖ/ÛÒ«[{ÜhëEUAT=´Ó0£ f*àú%«¶wG»éâZ8Z=O°WÅžÔˆŒ#L GoݾJÕ;ÃŽ‡Þ”‡žÕPã´p´ÑøÜö®Ø‹‘|A G Gëoïwp L[»™" ÿõݯ±©G‘ïÑÕÕÃÈk¿Op‚ ºz–?œÕð²`²ú’¯Ã±%L¯éꡦeÁdým÷ÓãgZ+¬Ç,‘ƒ…‚6·ñéuzÅ{ýeùffp.$®÷«»wü '«YöôOÑâÞ¶€¶ÞÆ÷nvõ«Î)õÓõf$áô=Ëžp„ølmõgÜòuS\j™ ÙóØÑ,þ[@Û÷\=xÔšþ¶ã®˜púw‡- ­¼ïޖǹ±øÔ¯‹—Ü`|.¨®ÇÿøØRa{ZLt@¾ÃÐ6ZúR=@Ú:tž¶çÁ£Cç¶€¶ðüÕFrJ…íyððàyƒ- m|sÿšáÁs¸|žÏ¾Ž$>xÞ` hëß`€ƒçXk‡Îlm}ØG÷ 6³íi+áaó[@Ûhã›{L›Ùö<—ÏvõzžmºÈ×­çjË‚Éjo²_>? ÍÌÒ+]èYyh­ÓÆa¡`=Ì}7zãHžvý±å±µi$/ &¡žÝGtFsÚõÇ^•ÇÖæ3¼,˜¬‡zè7xHO}Ü75 ™È¶€öÛ¸ø”iêòÈó\ú›>f};ô1ëëïVæÿf=*wàBâj¾ðOw&ÛÁÙÝ wÆ*NãüîZ8Zå§}÷…:8Å;aÏC'y7ÐÂÑz¨—úÖžÖviÇÕ‰ávÍÓÂÑz°×n…ÛH*hÏcG[6O GWƒÍÍ”ÊX_««Ì쎗ËH·ËF û÷¸©R*äúC‡gw¸,˜¬zë&?´š^аP°æ}€êTÐǺÍçÍëÍùÅ ¶€¶ža¬}O&ù©p¥WãJ󸬄†…‚õ6½^dY~*Üꇧ%4,lÄxGÇëôêvZyä‹—“õ0o“«»OG²[máù [1àÕŸTгöš´-YÝ" &‘^]­9<óËnµm„§~4,¬Çø}K0Õ5ï׉û{úE׌˂ɟ¯•ýG÷ÇŽ;-oîò[ò˜›t9?ü¯û7)þýçÔi™-Ì ÁªÙlß×Q“ix*ìËC?]–÷éUþg¼ÖÜxY0Y}¯ûþøÆ6O¬¯H5pX(ز3ÆÎù{zuë,8Ю@®àýmß4<ôQ0šÉ©Ã ´p´ìñ8 ˆ½€©€«F w4,ly}Û®Âô®?r´Ó a¡`=ÈÓTܼMÍÐNÙÈ—›çhwØÚF¸¿|ÖüR׿˳_+R×Ãñ«lœŽ6B}܇Äeü©Ÿ%:j†BÃÂÀú,e†G•TÀZ=£udYaX½ ÏÃâê-¼Õë'¼²Ó´ô «Åëæ‰%ì ä?ÝZÙÁÕš¼Ì®p†S–†Õût¾qÔ[ £öÖ%Ÿ0Ÿ²¤Â6æ~í©Ö ¶€¶ÞD¶i¦<ö1·ü­êƒ¿Áж¾ ÙK*àë«Ce\<-­g]Û:¢£a*`£jÀyZ8ZmÓCw=÷„Ô§RA_öj‡¯÷¥°ç‡½ªÑ¾ÃÐ6â]½§µ9iãL_k/r-­ö"C‡¿‘© ¡·µ9n"@iáh½]÷®488KÎêåP02K†YaX#¶«¹)­q¢u²Õç δhW Wï?%ÀÕÿRAë·Îµ-yY0ÙˆtõîŠæÑo¸Þññ®—æÑ§…¢õÑïÃg¥¨ÑïåëLóJŽ~<-­·ëy˜à’ z8ÒÑ÷ßñ„× ü0|†?…š†… _u0uƒTØú žøVàû÷z£¾×c¾\¾áü© õå«§½öò°g=â7ØÚF¼‰9¯M…­–¯¾˜Žó´p´íu™Ñ.0°º³£¹Ó¦aa`=ÄÛ>³ij*äëôK®o°´õpïË‚¶TÀêr_s‹¦aa`5Äc7Ø«í=ôIM£½¾7B>?×,‚ÍŸ›?æA¾æ©°ß' wOwØÚú™¿ÎN•†žîñ-U2ßK…m¼ï­iê ´p´z|eùŸÞwy*6úc.6®Æ†é[p!q£uÃCY*àîón¦Ö¡f…`õàcmáì‹w¨^‡ùÅÀ{.$®}ÄÇ™ôJ…ócWñá‘§…£­`OxÏ— ¼·^Ÿæ>û\H\ú´ÔV$¾èV¦Ëwòæ ®[¹·‚¾O*Øñxhnœ„]A\#ºÛg•© ÍA¸9¾7B~ÔtÐ *pµ„öÅÒĶ€¶ñùý“8Ü`9¿ ŸŸ½y°¼׃¾ìµo}Ñ·d܉›û–;p!q=èëû­—\K_Ë‹$¹vÎÓÂÑz¸÷¡>¡jnãûuŸÀüéfÂ/Úø¸¸ô¼ˆ eX©pkG$CÏÇmåÿÜ& $ëe;7<(<¨Á8î°æddµÅMÝtiÏL‘ víSX7äã+­²ÁË‚Éz¨ûi£sÌTØfFÒœߣ ª«¯û4w÷ë¬dsþQóæ9/¸Ìÿ ÿ›cŸÞ-¸¸Þ‡mŇÉTà×Ïi~Ü/õxâ×K­~Ë&F>u-­‡{ì–K¸Ùºý‰?\ëN ¾{¥êãPÃÍÓÂÑF¸çúB|{w›u39nïnoÑÕõÀOCq›¤ô‘}î°ZgiwØÚF¼§òЇ/ðTÈjý´u΀ÃÂÀFŒçòNÂ/óúTÈÕ'ŽNE&–‚Õã;oµõÕo:ë¬#ïôéPÂ7õ-º ºøåH½Á\*ôµ0Me€<-­{ͽ6iM…¬>uûD—“õ@oèè’^X#¡liXØð´Ã/`*huïØÝO GÁžíƒ͹G†í#œ}ð´P´è}¶Ï ´÷ÏûË”ë½y´÷ϸ,˜¬zî:ºÇK]=Xï¥o …¢PÏp——^åîóÖ¥ö^švr[ À¾.´£]D{èh¡h#ÔÇÑu´Úž ¼×Çöu‚[p!q=èý9GÄ À© <²µl}-m{^Ùñ<r÷W—e2ÚÈÕC<Œ3<ާ‚>ª5Æõ ÙO E¡Þ¼yMxhÌ´ã¡ÃC#O E¡Þß.áJ¨§þ€­+VçŸvfÿ„ÚSß` hë!»·q€ËFÆ—)AÇf#wàBâFЫ¥§æld¬qš³žŽ6‚=?×r‰ÉX*`mŸãÓG\LÖã<õ ½øœ {\?'ROy»ÊóàÕPã²`²êÕ;‡³¿LWnÑé»]Ù½«æ~4, ¬n¹›ó‰—a2Np.‡Ýç½äwÿ¯þMðÿ ÖñáÂ{tAuõ:Âyîßʪ\Òñ眉KxZ8ZÝ籇sùTе—§ï•·Rа0°d<»I­f Í ëa^ûR«9uóÀEÃÂÀFˆçâ@T|Ëî#ÁÓ?6ÓP}£a¡`#ÆÇ—‚°î-p­QÄ;dÖC¼Ï}È$(rý‚©¾^í¿3joqƒ- ­§»|Tpµíåù¶€¶Ñ+µƒæ”`»ÎÃ2'ÀeÁd=λ« ‰'‡[¹Ã«!'€]A\#¼ëˆöý©€k­hXX ñÒu½ Û(7/\Üa hëïÙW0½ºJßÚa°ªªØbÉ«ìdùÈÆ?/îµVvn …£­X³Ý\*`»i„»e˜‚Õƒ;tö¨÷M—Þ>aãeÁd+Ò=¡J…íxî脨,l´¸iÆÇÞTà®—%œ5Ü ‰A?–S³¾T¸õV²*íoVƒMËÉÆkî…7å‘=;+ $«-níŽB"V N|í? úõ ´p´êâUÁ>å£q¼ló‹ö ´p´ëÇ‹§z©Àû£—¶î•Ž'©·àBâFÐW MNÜõèÑ”á\H\úн}-“êÂ3}ý=©.œ§…£`ï—á-êœöôh&Ÿ[IsYç\H\-í¬¾O™¸§‘éÅUK¢­ó^˜‚ÕÛóÔ½Íf¨ÎãºX:|Þ›;ž޶‚]Ù—sþŠÞ"@*äjóðÂÏGv~HÈ=»K…\}äè„Ô G+-_ÂF³p~øÈ=iL…\}b/ü|äÍŸÑ„³ëŒ×oìî‹o¶üíRskžŽ~k!=wöò]ô]Ö›ô|½o J§S×#=tJ¤ÕiO G[ᆗ‘R!«Õ¡Ö•/ 6ÞÂíLqF±îp’” ú²åU»Ìgè {}ØF½é[@[÷êLÂó” wúBLó\…§…¢õ@oÎA+œEgØñÈÑõ¿h¡h#ÐÓgK© ¯›ï¨§…£`ûFðâ95 ëaé”)½ÊÆ·æ4—“­@{Ó¼ðÄeœ¼ SxâÂÓBÑêI£mÆr½á-ùXó“÷Á¬oÌò[›ý—“¨­ï]P]o…“÷³ñÉÆäûÄ0]àë):uªAÃÂÀF7ï žfdºúȳ u’AÃÂÀzóŽ#0©I]}äE‰…šˆÑ°0°䩇‡ÚTÐÇï·Ûç~£­`/ž$/>ƒËðxì %§p¸,˜lÄùø8¹×-ö³hŠmÑ»Ž6¢½{3ŽpÞ›éj¯·*Ý©šõÒ°0°dûÛPÍSå W_Ãø\—“õ8/¾O ¹SÑTÀêbsòLÃÂÀzˆ×aAÑTÀÕ§Î4, l„xu}ï͆¦®>p8q¦aa`#ÄÛÛ–ÇЯO 8nÑÕõÀo£¯‡öÝ©€«-%œlа0°bß—‹âƒàæûòF|¤aa`=Äû`o)j3\}àð HÃÂÀFˆ7tDI¯nõqÃC ì âªáÝ»þ­“àÀS7ïymïÑÕÀEm®$“ Ùñ“a{µÿNk=ô¶€¶ºÖÁw×®øgûÚh.sÂÕ—>šËà°0°zºøŸ[¹à/þó h¯ùjoøiMÂN¸û\JjMÁ`VÖî6¹úÐp=í”mbì”6¡ewØÚFêÇ{×{¤} mm½ öpB ¸òÊD'0+k—M¦Ó«[yØhêϪ¨V`'xûl*èIÛؼ痗“õHC_¶ap‚•õN_"mŸ^Ý` h[!_àØTÐ5]n]9¾7B>úÒÜðh=‰cxIJB°zpÇÕÚpÒ<ƒÈ¬–=7O!`WWîÔÓ»RA_n{{å²=…=?ìñ°?\Y{‡- ­^X»Oƒµ¢9]Îl­u„óeØÄ5ZóûAnô›Þ÷Ýs£ß¸¸ômp4éð,%³µ&ž§À® ®Ýyð–Ü5çTØ£ž*6—ÊyZ8Úˆöè-–¸+­©°Ï®ÁÏ£'G §Ÿ™­5épþ »‚¸F£XWºd™ »Þ(â•V7_4øž6¢b€µÐTØŽh{éËc¯ly&ò5©ÁŠJ7ØÚú’ØrY@fÞáh½q/ žå¥Wû˜ÉW½qéé ¶€¶ÑN6g²_XùžÖÛÉÊ¿—©°ãRíýÉ ¶€¶ðm\ñž üáš_RÇ+}¨@ 8O Gáv}Ë2^ÕÛœŸo¯òõϪš–’õk7¬¢Þô`ø¾8é–’wÙƒ­ç¤Â>žùsßѾu.$nÅÜ;M—.2} ¹âŸ¸òëÅÊ@Á6ný½\”7~ׂËÉzÇꆕCý½ú²ïC¥þ•’ç.Å+f™v½*^üçN\HÜù²y^òpÉ=»õ6¢‚îÕi. $/¹Þ•GÖïû±”ËÉÉF‹sÏu»h4ÓžW%^½·BþvVد——NŸ> Ð^¸ÁÐVÞÿ×uýO¥SA«g$Z ·ÐÂÑF°W ¶dõt«=àÔ)}ëçIÁ²@²2„Eà^yäÏÉÓCöMÓݲ@²ÑâFïJ[lYéI»‚ØÙ€›p!q#äÇr›+ ŽUž¸¹–ÒV¸ 7‚~\,CnK…mì-nÛÑw -­ìçûg÷ãînâ±ùïw5”Øü÷&\H\oâý>|xž±~>òêŸF‡ç^ÓêN¦ãs¯;p!q½ÌÎ-5îÕ•Tȵv_rÂÁ­:_ÃFŒ[€Ü‹6©«1¯3Í‹/ ‹mùVÎüsó¡ØÎŽo]ãqWöåÖÛð².Þ^(^£YÎí3Ïû°?_©6 ¯ôß•jjgÁÓÂÑz¸Wç,(\œÉp§8£ôÏ}´P´þ"®ƒ+Ðñõôï`£e î´<^ YÏMÕ&=*MZQxZ8Ú÷<ÂË£© FýŲ¾´»úfDášéå>#»‰Ëyȵ]ÇQZ(ÚhÙ›^ÑEËw¼’“òJªEžŽÖý9'áo†-$\äåi¡h+Ðó_MÛJ~lUýT9Íô4_é=þ’þ¹Ž6Â=º'ñªMÆ/䢼j͆§…£p;çÏáòz†/dìpÕ-´P´è}z¶kf;}*ìË=¸o¯LƧµÀÇ72¿;p!q=óÛûÚî›ó× Ï{3]ÿÀz|ÞËÓBÑzóÞ}u­ðòKu‡`Tþ¹MH6‚\MÞ¿˜>fÜ\.iž>Þ ‰ÈRÛ|þœád¦¯cxßÍî«ÛÆ—ëöÕ›hÇÎSÞB Eë¿ýý6j®þ-­v$}w‰ ©€ÉÒ î]áeÁd#΃w(ˆNÓOÚÑ8¢Óôh¡h+Ô¾úx\w>áúo^y¾Š6¯“âVÀRAGZ×ín …£`¯ÞLt‚~ÒŽW1:A¿Š6BíÚ†ÞS‘]Ç‹ÝTÁËÉFéE»ô*;^ÂèJ#/ &ë~ìš@§·© ¯`tN~-m„zòæ4Ñ*ÓIEÃßÔ «2Ý@ E[¡ᵺTÐŽ—1ºÂx-m{óN^¢E„“v¼2Ñ" ´P´êÚL¿½°wâÇë¸27 ü܉ ‰«…½¾ß½ïŠ]*hÇk]g¼ŽÖ[øp¬Ïƒe²TÐŽá&ºçZ(Úõèœ3Æk!™®ÿŠñZO E[¡ÞœoL¸’iã|as-„§…£`OÞ >\LÍ´ãe SyZ(Z½pìß\éØqò›ðhùÈ–ȼ;;ôíÞþ›ôBþ ¶€¶Ñþ6ºÞ’ ÚÑC…‹D<-m„zïášK*hG.ñ´p´ì±óNkÂ5æL;z¨p™§…¢PO“³]‡ë™v´pý‚§…£`ÏÞ¥‚p 4ÓŽ.ò´P´êÍ+‡K ™~¨Ÿféçs-¹\o˜U  4, ly÷N6ÂõŠL;^Ãp½‚§åÿÓvnI®ë<²žÊÿÎð[7Ë= á ÿ¬²¨²Š6€L9ùÒ+º÷WŽ/ uh_ìéŠ6èägE“…N~êѦBRË£¥A?CöQy„VƒMdžïà¤3p­xóÕYJÝü›lp òÆÒ|î­¢óïÇçÞôhS¡©å§­Ò ÓIHŸÕ`S#™ÑÃu«ètÞœÙíæÜÔ`Ó€ý|Û|ÝêÚÓÕÏ[=*»®ü>]ÿ›þ7Þþü]¸)á~‰nFûUø”[E rÓ£M…öçùüçJÞh9¥Sóáähq¢j°©À©Ì´U+sº8ŸW=?Õ¦·2Ÿ"ËÏœ¥A§#ƒ>'«Á¦§2 SU­ÌéȘœ!ç¦×ÔàVæ“`_äeX¤iªÒ€Ýt ¾ô›H<£!.ë©ètTÌÎps3=j°iÀÈàü¸‚GùÒ€³QÁ'Ô`Ó€}‰ïW48¼:ãØM>Ttúõg¸¹©5Ø4à@äQ{¶, 8ôiX 6 8x‚:|h‰þðTáÙ`5ØTàHã­ÝIw;PiЯ+îTWéÉ&#JÏ`”Ìç0*:]‹îÎâéf0Ô`Ó€‘W(J†¨¥§k}¨VƒM$~ŒÒÜuiÀù*G§Ûåd“‘}×!váŸ>ðU°›9}àSƒM$Þ^5”%JNç¶PƒM$žô·†•>ýŽ Ýug=Ø&dûµ’uºCë3¾¯à|­£ó÷r²ÉÈÁÈk€hæ¥4àt*Ò¹"5Ø4àHblQº²¹¢ Î6>W¤›ìKü€Ö º<òÀf]sMÄ ôc§÷þÝè4Q§‚N©Á¦OØ™M–œ~;:Ù©›H¼BgþXý÷j;LÐÇj5Ø4à@âvAS-¥§ßŽN©Á¦»×ëí7¹'¹:°4äñþ›E}‹è+{^ì'uûÞ‘¯Û„ì@nq: 4`'ja±—>XS`q±°‚Í\Tnºº±‰ 5×$Ü@Þ×>ªºÍ¤üe?±Ÿ¯©äùq$oÐ'ßÛôôd“‘©ØPfÏÑ;8ì9Z6 8’X{*- 8^ÛèS´k ¬/îm[ߥ¶êÒÀ“Cfï7%ÜMrn ¤ÂCjiÀÉaÕb¬)°Áˆ®7û oæ( ;$ûõ»'ì”Ê&vp:ÚØD€l°{ËýIi?Ÿ ÙÁ˜çJN¦ ›¿cMõÅŲÿlæâÏñþcób¬)°´Ã¬õ”•†ì¿þË^®ٿ﫹Gél²Ý<~sànT;Œ£šmBv0§›ôð^p²ѹ-ÖØ@Ü;X{býT;ƒ3&Üx¶Û„ì`‚ãðÑû›ö°ÞåpƒQ(Ni”œL:£Åš‰{W[‰JþFAóiTºIé~Ž`€t_}¨XoÁf¹—N\“pýA=nM:ÏÖ‹,>—œÌnú¯Åš|¶ù·ú®ìÝ.›Vµ{t@›Iç3N'†+ü8It‰ápSƒE½©T¥a‡¿üämÈ=Ø&d£|¨'ï—<]±c'Wªàde¥óJZ¬)°þgèW¶ X±I°ÁWÅÜVÜsÜ@Ýq–{JƒÍ~-]sM Ô]‘:.ɯØì×Ò©|1×$\_Ýùú Ï«•¾ptþ¼Ú…nRººÌÛ^ɰ¦“¬› :Ë*æš„ kù!¢üE‡…ìè£G›ˆýçúSÍ¢4ðíSj>z´éÐÁʱ¾ù»d‡žù°Ù~º´àü‘GN69Ù$²£Óä›-ztž\Ì5 ×Ww™ÈŽNüUlökéÌŸ˜k®¯îýŠôqºb³_KŸ§Å\“puo«ÚóPöè/ï§­z´éÐÚõ:D¡™¢4làw£è×χ6ꮎq ?kˆôpÕ…nRº"Ýç7áeñÿýxoäü©±ìü Û„ì`‚Þoj‡HiØÀ¥-8šöh}ŽÔÖÛZJ~8Ìþýáë-,\ÏVé+פ’ç!ª›wY‰žl"²oz‚Á³ó“ÛÍKŒaÔ’MDö-ìëÁQ«YÛƒmB¶›~¯ÃЬ§¬¹cçæÓqp&ºWÛÒ“MDv×S<:?Ù+E×1©6°d‘ƒg¯d5jG_#‡ØÙzT¸)áä+tbÍ;7#NÆqðr™z²‰ÈÁ$GÁNÆqðr™ÿÈØ©&›ˆì¸ÛíuU‡JÃ>¼ ó6U*ü¾´ðÛþ~aâ¥'Ü”ð@s8ÉËžw4´<¡ðKO¸)áäã[SèÜ¿£ƒ'BÏü; M‡ŽÄ†Žþ¬ kçæ‹ “àÜAN6ÙßÅ`°“ˆüi>t”l"r0âàªëØÑкÄzºÀM $_¡ó(ëܹùñrʾØj²‰ÈÁ$ÁëõóOý­åa²‰Èþˆnwm-¸4äõ·2Þl…•»ÞŽÜâÆvEsMÄ $Ñ#?íÚÙÐrÓ/]馤ªß0ýʦZ*<ô‹žNµô€›î‹>^Á:²ÒÓŸÌZß`0ëµüì‹i»QYgO+ 9ýÅ(øõ“Gü(ÀÁ*š…ü¬ Ý”ô`¨,Ø {¿JCΆ mWCÁ´Û÷Kp ±Ú¬Vrª1 þýÉóß¶®ìÉ|>>µ•^u'ópSÂýq2ƒ~eØ7Tr:Nh«¦Má_‚#A?ÁÚ‘JCN5FÁ¯Ÿ<ã}d¬phDÓGÆpSƒqrÇÂTØÞSr:NhG¦{¾¯X˜ »†JCN5FÁ‡Ÿ<* ¥á^îíl!FÌ5×Ë OÑi„åÝó¥K#ô€›ˆ>€‡ÔRr:iã ¾‚§ Ó€Õ¶•ÒÓ_Œ‚_?yêpkIièOð玴Ê^‡?ì ûüî²×mBv0J¦§ïAØSô5ʰœíåé7%<ÌáÓåÐ ~6‹¾ôC›  çø_¥C;$ŸâëB7%=еý£ö¯ÒÓ‡v¬¡`4¯ep¤1–V€]e¥!g¿ÿþä;X| -  ¬ (úÒm*´_}¾ØŸîüìæ;˜§‹Ï hÌ^ˆÒm*t ôVVÎKÃ=þbQ>AN69˜€X-›ï@ýì‹L~ÓUý †2{ O´©ÐþÈX', {8¿#cÎ]6§Oˆè§Oˆ=঄¢/™7aô±¢ƒ΢_¿ú.¯ƒ–¿ì'ös ¤’׿´òûr•»ËÉ&#,Ж¦ FmjÒ£M…Öëõí*bUÞã[tð£X˜N÷Æö‡ócÀïGŸ +P™>êѦBGRãuº¶ÿØïM—<ï¡Y7ÚÓ£M‡ŽäÆN¶´/²‚)ÃÞ5Øm*t ôøÚ¥?ólÓ§ üéf9ÙddoyLÚúªiÀÁÀ¨E€gžôs ~úú´ÊŸ«éôAçJ^ç#ùÉÜðþØP“MF¤¾g‹ì³›NäU4°!Ò‰<=ÚTèHj¼€C»V*ØgCtz´éÐÜ`ç š?JΧ ïZ×£M…Ž„§{KC•9™¢ž®Wlp°—¸| v÷ðÜ·Ó…&§þ=ÙÓu@sbl’zGË4›¤î€6:?"Ò¶‰ V黳J»ž‰h“¡#µ±¤ j=( X¥Qô¥ÚTè@èùù¥÷–øèN_À؃mBv°ÑÌØÐf¯ú ‘MD²™õ ,×lf½ÚTèTjiy®{ÛÂÆÏFâ³…Å.ðVð¯à‘èX’…í÷ÛÁÀªÍvüu@› í¯|7ìžúη/ÁþÈx&z¤…®Ò ·!= B[r´©ÐÔ#š&c«;øŠlU ÚTè@jЃ±JV}é‡6:]>Ø îŽ&"[Áí€6:z!t6rGç_‘ÎFv@› H úØ–ì |C¶)»ÚTh_èá=o(ªíh`"²•£hS¡#©ßú5ö¼ýæUЬ~éF69z»ÒQè,, úæWIÎÚ!; M‡Ä>¼¸¬IH– l/tU6:’Ë!°whì`à¢èK?´©ÐÐ3z,¢+^ l/tÅK6:’ú­‹Rz¥£Û¿_ÑëôF}þ7ªÖ£M‡ä^'±™³4h`“a-¨ЦCb?ÀtŸõ­h`“¡³¾z´©Ð¾Ô#hØ`oµÙÁÀ7dïµé€6:M7ÑuºÎûÒu:=ÚTè@êmcB{¥A«ë3ì€6:{Bs{tÆzD3´|ÆZ6:zF3,tÁ«¢ŸÔOS¦‚×c5ãÉ|âƒr—lp$2–@e¯ ÛÁÀDAÑ—~hS¡¡4J×+˜(tMQ6:úæõ`›aiØÀÞ»#;°MÇŽôF¿$]Z¬èlÙ{\õÔÍ7©Á¦û"OW4J׺&´¶Ã׺ôhS¡#©±ü){9Ú¾!{=Z´©ÐÐ7ôœu~´›Ò«è|Mâ åz´©ÐÔã®ÿt­«¢ëW¼*k]z´éБؓ8é[tðO§ªõhÓ¡±'´æ@;*:ÝËoNàk1Ø4à@äMQÓEÅ -¢ñEE=ÚTè@jìòaúÚМCúíhS¡#¡ÑÌíH¨h`§ z´©ÐÔë Ft9±¢}œ.'êѦCb?ÐJíJ¨èt{œ}Ë—Z 6 Øy¾¢uº”8£¥3¾”¨G› H^µÅ—Ç+Xñèò¸m*t õ¸Š‹r¥A+]JÔ£M‡ÄÞÞ°P¾HRvð!iö¥#Û„ì@p¸ H{f¬<÷ýËÛb°iÀÈ š§¦KŠ3ZBãKŠz´©ÐÔèåU¼¡¢-†ö"èѦBRJ\¢Ò\iØÀ×;°MÇŽô¥>ŠÒ€ÝÉ‚/½À¦û/W4oJ*:Ý[¦ÏZøv5Ø4à@䛸ÑÍÈÒeÊ.ËÑeJ=ÚTèà#¢÷xñ¥÷Šv,ºô®G› H-/ø•ýœ0£²H©› É m¯°û¥4àl³âý:j°iÀ‘ÄYÊût x³äñé°m:t öŒ.HWg­óÅž±ò섾Ôb°iÀÈè›7|irAKq|iR6:½Ô/·/ÇëË©B—ÛõhS¡#©ÕE¾Ò Óý›.LªÁ¦G2/RÇKiÀéþM{tÔ`Ó€}‰ï›OSy iiØÁÚÿÍõ©]è&¥²ßÐ¥‰¶‘Tt:i'DpM$j°iÀÈèt|¹ý>‚y0¾Ü®G› Iý7Dº\ÑéöBW€Õ`SS™eŽ—Vät{¡=:jp+òIp ñs¿)°ß§l–œ/°w`›¾ ‹íÔ©ètºÜËõé¨Á¦"×)Òöо]`×£M…¤ÖWOKÃNw¾æ+'›Š)%¤Q›KiÀéÞBsÔ`Ó€#‰ãœëÙ’z»³„_zMö%^oèJDr*: «³M¹v5Ø4à@䤗lç^ÙÚUg£‚¯]©Á¦G««@¥A?·O¯Àž®\©Á¦2Ã7€ÒŽŠV"Ú¡G› I¥ŸQãPiÀéjD[Ô`Ó€‰ïèÇ£]2~='ð=2j°iÀÈk|µÙÎ¥Ë(œn%tE 6 8½|’/sWt>Eø2·m*t$µÖQp:MhÓ†l°/ñckËÓ=S^òä…ˆ,øÒ l*p rjÆý¦øúH­ß_»ÐMJ„ÐŒ3m”©èdq®Wgª»ÇA5Ø4à@äï ƒkiÀÏ«.†Og«Óž\9Ùdä@çíñ/Y­4à4T¢K‚j°iÀÄYbã|Eðx‰»´¨› ÉŒ¥óQIiÀé¡1j°iÀÄw4×L;b*:ÝGœ#›ï‡QƒMD>Þ¸ëì©¥!¿¿Wf©•“MF„_=}Š‹ÂJ~Þ¿?~ ZÏÞm¦'›ŒèÚ(UÕ=ÚtèHlmí£4àdY¢k5Z¬)°¸C¸&ñí¤2–w¤+@œîRtH 6 8øxÑÓpûˆ ÝP5Û¥h7”k l ì‚$ÅN$Í+8üf'RæZ¬)°¸w0)÷™½Ð+–£3ñœ:¯›ì½åŠ$h PÅf™ö‰¹&áꊓ¤¥'S™Nêj±¦ÀâÎÈ9”®2Wl6è2³˜kn ®8-Qp2è4Šk l$îC›×/ ùzØ2eÕˆl²}¹ïH“®ˆnÔlÞÑQ-ÖØHÙQœ„( zK„Mï Щ=Útè@ì;ÆÐgð N9ú®Åšû&îKƒÍ7,ÓïHn ÛÎÞN2·J_¦_íöó'ü×nJx0èä€@WÁ*6[è2˜˜kn ®ø¼Xp2Ièó­k l$î|3¾¨r‡ù÷ç~¼Üc¸:eŽîñVN69X7Q°s¹×è˜jŒ,›ì·õ†HéÂFÅfK]ÙsM ÔÙÌwHTn:nWgœ¹‘¼œl"²?›aðÍùÉîÆ¼ŽZ°iÀÁx«·„ËÙ¥a»‰íoÊðØ&d‚GOìk²3½ýM|§>‹½ôÁš) •ÕhÃ}åæsop&µ¿7©É&"K' Ÿì5t‰CÉ&"#î0™E©ÂҰëÉΦ8;°MÈö ù1ýD©b³‰.4‰¹&áFê®ç=Æ×ºróùç¼è;‹É&"û ( žŸìÖ†ã¢%›ˆŒ¸{~–œï&/®Ò“MDDN:í¿8ÿïìà™ÌÓçÿl²ÁWdÁ`+!;6›ƒl)DÍ5 7R aY§ßÎÍçŸS²˜¼bˆžl"²/òíOsƒäøXöæ,X%Ì—Žl²Ákü­,¬—~Üd–€.pSÂÑ'(zf—;7Ÿ–NÅoòJ‰z²‰ÈÈ(Æc]k;7ýÁ?QâG)¼r—žl"²/r½|Wå) 7ÿÁNµkòÊhz²‰ÈÈú€´4ìgÌø©÷ä|-'›ŒH Ö `ÿHiÈ£çXfÁ—^`Ó€Áš ìK) 9ýÅ(øõ“ëk ÏeNr‘à/z¼B±kzÙ¹ùjä'¯´¨'›ˆì¹z­«ÎHRr6ä`ðë'«$¥!§?™u¨ü¯Òégp0,ÆÃÉJbc/ zÜNÏl:˜Ç†=>ÙóÆþ¿O:ëÙ&dozÿß'½‘îdÞ¢²sóuéÕMžs@O69ÔË ?—~ Eu'úpSÂ#ÑÁ„j·) 9]­Qðë'ßÁÊ+jŠ) 9ýɬg×›t³5 ØõM•K£4Ü|ñpêñ“g{ГMDDÞš£uNÒÓa‚?ùyPÙ~±âºÄóæÃNÒS1XsÉ2б˜56 ÜÙxoÉÎÍgˆcQ˜|‰Õd‘‘ïà‘ õk”†œ Öb²L«v«6 Ø×x¾Añ8m1©Ü|PxfWb9ÙDä@dÔ•‡:7JCN‡m6™'lßC8Ó€(΢­3ÖNruö%V“MDD~«BèΕó+£ÿ±À}þP)'›ŒH½‚!-êÜ( 9´Ùd~`Ák—þìk¼€IEºÒ³®Wøœ€aÑ—~hS¡][ú²5þ‡“[]’ÛL¹ýΔåãÏ wîìîÀ6!;}#Þ¢†ŠÒÓùB{@– 7Ø€/ÁÆØZÇ×—Ãm ñ\a{ö; M…Ž„CŽ+h\) 9û„¼×æ~ÅöA¶àK°¯ñLf8JøÌ ·ݿßm*t ô„Å^°A¨4ät0Óž¦ûŒ º7à;p 1˜Ð kÛ ºº­G› ýÀ ثQr:˜i{ÉzÅÆmZÿìk¼¯.5GÌÒ ‡g*>w`›è}xèWs* :h?`Ñ—~hS¡©Á|]Õ®``Åco¾è€6:Œ QŸIiÈé:M[cÖtGÀwà@ãåuC®Ä\òöñ ô¥Útè@ë5»x_’èÃwE«}øÖ£M…¤ó£´§‚ÕŽ6òèѦBûB?®àÁµÆ”†œ®Ñ´›çqƒÆßPô8Ðøð$§&cPt>ù<‡m*t$5v¢]S |CöRžhS¡¡gð ŽšoJCNg! ~ýäeþõ‹Ú™KÃ~b?_ YÉãõHÞ¨ëî]ÿ8:Ôd“‘ßFÇáGcñ9ÝŽø8·×K5y°Ò ÅŽÎÞéѦB»R߯`-õrî`à²nÎhS¡#¡Áã7j++ 9…(øõ“kK›²ô]xØCr¶fßnJ¸»X߯˜!œî|ü ì <‡Ó)¼ ,{l ¯ÚTè@j°VÆú•w0ð YÇr´©ÐÐ xG­“¥!§³~2xŠ£K;z Õ‡O¡:‹¾ôC› ,ÑØ­tÃæ—`8ß®hʃÍàíh`±c3xЦBGRk ó¥ßõâw@› }C+’lúG+›þï€6Ú_ïn˜™î×üŒÃ«³š^iÐÀÊÁf; M…¤+©lÁ¾!ÛGÐm*t$4zª¸’e‹¯tÙ¢ÚTè`½ÃLÝt'ë—`l<—tiB¬4h`ØÑi<=ÚTè@j¬*I÷Tì`à²]ЦBBhˆÎÖv4°r°5€hS¡ýõnÀ|ÿtÃó—à`lè³»å/;lA=–îÀ6!;|Atêq@óV|êQ6:’ZÛŽTpþ éN§hS¡¡ï虈®[T4°TÓu =ÚTè@êuÛ¶û£Õƒ½M°4ìÉ]öN_‚Øm:ôÛˆ‡Ÿ­ ìµ_‚ýá1^ÑÌ]º¨è'õ“«¦‚ÇcÈôd>ñAáB 6 8ùððµ&É[4°’Ò©i=ÚTè@j°ÒîÜîÎ l†(úÒm*t$4z̧ëZ l†t]K6:zÉ|¹¥¢Óop–R7ï¡›ˆ|hÒ$¦Kƒ¦ N×£M…¤KílÓòV;¶m¹ÚTè@è=)Óµ¸ŠV;º§G› íK=ý̤ŖҠÓot–R7u ›ˆ< ©0º0Á)oº G› I­í+. XíØ–åhS¡¡Ñî~¾~8^¹‹×$º~¨G› H½õ€Ik¥_Ý4ÛùÒ…m:t ÷‚~HºŠXÑéã\mì×Õ`Ó€‘ï`j‰/ZLh’ž/ZèѦBRƒ¶?|ßíï€6:=yÒÏŠÖ$ºâ©G› íK=ßP2]ˆ«ètÅónívâj°iÀȘZâ³Ò3š…å³Òz´©ÐÔ ëµ– |C}é‡6:¾¸‚.iU4°&Ñ%-=ÚTèHê»´ÜYðí0:4Z5Ø4à@â;𽣋Y~½ÅÑÂÍv¨Á¦"¯`öŽOüÏh¢›OüëѦBGRk¯%( ø†ìÛ?ЦBB׃ÐUÊÖ$ºj¨G› íKåOÐzrùƒM7ºþ­ÅšH; ®VtúÝîŽnfC 6 8½×˜¯©,h ¯©èѦBRƒ7ñÓ7H,è Áô‹aЦBGB£™:º [ÑÀšDdõhS¡©çQZ¬/ 8ÝTh{lp ñýxt)¶¢Ó¯·:Z¸É#5Ø4à@dôêh¾Ž² u¾Ž¢G› íK}GoZákƒO¾6¨G› IåèкqiÀéZGWºÕ`Ó€‰G4GGW+:ýzG 7§¡›‰¼Yd\ƒÌùf±Šþ/ÚÅzÀM k{IŽÞ‰Î­îh‘†/ZéѦB£{s;Éê¥ešJŠlp 1zÛ_ë®h`÷¦kÝz´©ÐÔXž µA”¿Üt’о 1×$ÜHÞ-¤{ªû黸mgßžðáí'ÿ’§ë‘üdnø–|éF69zEóÏ´™ ¢³Y29 ¨o%PƒMDF/öç«‚w´ ÆWõhS¡}©×í&{Yù§4àtצËUj°iÀ‘ÄÏðá´Ò ¨õ%¹·h¿Â§áß°ÛŸpºpSÂß$?£ËèÑÛqrøžhŒ6‡T4Ñæ=ÚThÿʱjcW~F²ƒ9ÛJ ²€JCvìÓéÉ&#çB«¬e°Î,ø óÛµt3Üwà@â­5ÑÆ¡ŠNH'³ëÛ†Ô`Ó€‘ÑçQx'ÀŠV¾y'€m*t õŒÍº<]ÁiI—§Õ`Ó€‰Ñ{yÑŠ¾×ÁˆôhS¡#©±rj.+ 8&´N 6 8ø–óhëPE§Û‰“iôCj°iÀ¾Èíȶm€S˜·:Cè~÷Š~V Ç¡þù†÷l²#½±m¨àtO¡mj°iÀÄèÕ¼è¾âÂû‡ôhS¡©1j-+¹é$¡½pb®I¸¼úᮬ=«¢ÓýÄ9ûæ,5Ø4àTä«ÒÒʬE_XZzÀ[¹¿‚û––‡ØµPðókŽ:—…k l0¢¬¸D×ý+8ýjtá_ 6 8’M“Ж¬úroÉÒ£M…¤¾c©fÔ!Yp:MhO§lp ñýx7g\øÇ’–¸u²¾!K 6 Øy½Š è¥'›[ðcM ÄMŠ0§ ;Ùýl§ z²Éȑг´ŒVp:=ØÂŸlp 1ze+mÃÚÑÀBÏÚ°: M…ޤ†²ø°E¯4àlšÐ¦B9Ø4à@âÌâÓ¶~='ãšvä`Ó€#‘±¥ˆ­­îàd·f+«b¬)°¸ –²gK};8ýjl©O6 8¾’•µaìh`ýamЦBR¯R‡NùËM·ÖR¤æš„ëË{C_K£-;:ýtNZÁ5`ÈÁ¦G"kK’¥'[BcM İì1[ÔÛÁéWc«zr°iÀÄ#”Ò„]"¥§«ëk‘ƒM$F_D£M;:ûz?›ûG-ܰM 6 8Y\¶) 8YÙØ2“k l î=K¯KïðmzLWi]º Ü”p·.ýŽ™”ÙbÓN§ [l’ƒMÆõŠåÜPƒHiÀéVÂZZä`Ó€}‰ô©9º:½£Ó­ÄË?ºAœlp$²¸|Sòs?„'1×DÜHâZ‚èbÓpxnÛß±éR“k l î€e@èÚGg_¯}¨Á¦OR‹BùËM¿ë©PsM äE²ýÎ`p„•ú¼x˜eB1ÖØ@ÙÍbÒ%èŠN·cÇXâ Õ`Ó€#‘µUšÒ€“‰AW•´XS`qëéùIÕ4•†=>¯™Þž'Ã*¬Â‰¹&â‹Ë.¥Ç“‚/i±¦ÀâNXòŒ®UpúÕè"‘lp 1ö.ì,( 8Ý+h/„lp ñ‚$Ïh`Åf;ísM Ô§«KN–4:½®ÅšëÞY^ï;ÖÑuYþø‡ž³bÞJ#CÝ9ÇŸŸ{ žÚèÁ6!;q,ÙE×*8Êt½A 6 Ø—xÆÞ„ËÕ¥§k<]`WƒM$¾!•eÚa»`ï®ð [5Ø4à@â;žÑ>…ŠÍÖ4Ú¨ æš„¨ûÀŽÆtú¬‚“ùF'Ï´XS`}qïÛóº÷‹KC¼í‚_zMŽT†|zòŽÝÝç'Õ`Ó€‰0˜/ªß‘¨’/ªk±¦ÀFÊJ›íJÃæßoöÙÄ>;mõ³[2““MDDž¶o§|§¸4ðùwÆéXîÁ6!;R\›b- 8YŠè”°k l î|C‡óè}:·¤QáÀ°€Ù¯޽öÁ'²ïØíN|&[ 6 8+²UÓö‹ŠÍv?Ú!æš„›ª«2D¶ò®¿ç„·IWÉóýHþanôL`¹•ø<Ù7ºàèõ3Ú_Önѽ“•›‡.ÎûŸ³[ –“MD~û|¯Ÿü¸i?ŸÉÈѾ«÷=²ƒ5éñ:þª®°+ üÉýTzþE/×#z£>ÿ€¿µÊѦCûr¯âViÀñÎÍ×Ü´XS`qG ×ËÛt*6‹hŸŽ˜kn î4 ›Ú¢Xnº‘,7g‹rëñr²‰ÈÈØû|EhE^ŒàëAZ¬)°¸¡=£ü¥f³6“h±¦ÀFÊByHºí¯róy683Ø­ËÉ&"û"?®“´¸RðÕK¬|QÒ£M‡Ž¤Ö–XJN6º$¤Åšˆ;!I&ÚPR±ÙÒF;JÄ\“p#u¡Ý¢V¹ù²6: ¦[”—“MDD'vKNfˆÖbM Ä} Ç8ÚRR±Ù|£=%b®I¸®º+vïÛ,´só¹æ<5{Õ5=ÙDä@äq•=K‚ž³æÔhÓ¡©ë[(®Ôlî±…b1ÖØHYèPǶ¶ìÜ|ÖÍÎ|ö²•z²‰È¾È7ä6N:¼c“oGçƒÕ\“p#uÕÇÏÒ ¯‰ÍЦCGbC'¶ßeçæsϳŒyÙK=ÙDä@d¤ÝNïØlþ±ùa5×$ÜHÝUëw( ù•¼Sy4ôd“‘¡¨˜ÄöeìÜ|Þ9Ï9Ì^ŠMO69yÑ:)JCFi±y WÓi×JÍV 6í*ÆšëZTþQoÚof2²?„‡t´a›vn>çÖϳyqƒ79ÙDä@äú|“òú¦ÒÀ®]Ù½S]঄G¢¯˜m„( yô¦# ¾ô›h,Oi•¤N'âôhÓ¡±‘«éŠÈŽÍvC¶$¢æš„© 7XkþÎÍ7Ç ¼ø«…šl"r òŠEâ°[º4ät…c Þr°iÀ¾ÆãuN– },_Ù”\Eo^æåÓ• ,úÒm:t ö€³iKìÎM'ÊýêÌmw<ËÉ&""ƒ§°Í´4älÒÎX9Ø4à@ã;tdÍ›;7Ž‹/±šl"r òŠI`OdiÈé°`mœr°iÀÆp3ÝK¾³¯Áõ|7yºIé¾ìœ¢bû•þð³©ýl²#¹·]×Uô1+#ê)ë€6:{€Ž†¬¡vçæûŒ³¸.îª-'›ˆˆ<>ÄI™Ò ƒÀéT’m:t 6Ú^…:‚KCN·uÖÄ,›h<ƒqÈèí¶îépšá­†_zÂM Ï$—+͆t]•¥Û„ì@ðeÖ–›¡°Á×»ØÆYZô³Ø0|(û–soØ·'ûý‚ïKG¶ Ù‘ÞX&ŽvF.k¶C°èK?´©ÐÐÐŒ|ãä^fx÷ºÙü DM6Ù¹¾¤kí+ 9't7âýŠ%–éfÄïÀƠݶ V00÷hªm*t$4”±¦ûµîà{wçà|÷Dzšl"r 2ÚÚö@•†œÎºmK 6 8Ð8Ë›îC™.rݳ¬)K¾t#›ˆÉŒe'hKÞýðxf¼ÄѦ<=ÚTh_èló‡; JCÎ>!ß´µÞ <ß³õ8ÐøU´ÐØbË_òáQò·ÓTE¯×}¢ïþ)P6:ÒúX[¸*+Dëᶘ_ñ|H 68(áœ/ÜVú6c~J@ÒÂmºIéð‡ëÌ5¥¢Ò Ýœ.péѦBGRc‡NÚúXÁÀnN›õhS¡¡2ÃY3BeoÓqý˜q<Ý0×mBv ø‚¥–ànáÒÓ ¿´^ ÉÈ÷74* 竊•í2|U± ݤô@øÍ¦ ¬St ¢ó½†¯èѦBûR?@[ í©®`àÒ®j=ÚTè@èî˜bK·• í4lé¶Û„ì@pôú'ÇþÖ3\rºß àK/°iÀÆhN‹®¾<²­—%_º‘MDŽdÆlS´½‚HÙõhS¡¡Ñ›rÐö¾ÒÓHw$>îXÆ“nHüìhüïÿt=<`¡É±— Ì@®2Ðm*t$5–þàœ§/0ð 9ïi´©ÐÐ70>'kŠ/ô# Ÿb$}é‡6:¼n\- 9]ð¸^Û'ËOp­¶_ƒo†hR¥A‹—8í‚6:49p±ø†œG¬ ÚTè@hð ’E—_2°Ôq5—d‘™Ñk,Ð.áÒÓÅŽklî6 Ø×8½ˆoŸ#\Òî— ,s\ήÙDäHfìÔÍYñ^`àrf¼.hS¡¡ôÄ¥û_è|¡#Óý]ЦBR£—³ ý“¥!§‹×òùcy®ãókp ñòö†¤$_÷B3…Ë×uA› I€®”óñο!é}ì‚6:úŽ ¹Lÿ ,v\ª¿ ÚTè@jðRu¸Ï©4ät¶p­YO06 ¹Î¬¯ÁÆ›Ú[öäý泆Þ.hÓ¡#µq·é4}ÑŸàÏW‡Wöz;²7êöüpZÏ6!Û—|¸¡<:÷_ÑÀV@çþõhS¡©ÁÚ:gÄ{Ýœ³âuA›  }(~˜.çº^àçÚ7~šˆçÚzMFtVW:Ë_23ÑåY9ÙDä@fôÂ!´;µ4ätEâj;€MŽ4^áȃtð¾èÀ>x;¸{JìÀ6!;|~`†/…Wô“úéwWðzœ‰OæÂÕ`Ó€‘ÑèŽ.h˜DW åd‘#™± !ç } ‰óvA› ½¢BÚpPÑÀNôhS¡}©ÇÛ+>×Ü|Vô–TùôÏ^ØÖ‡mBv¤7@òƃŠNwïJ7øPƒMDÐ’ ]¬­h`i¢‹µz´©Ð‘ÔXJ–sH¿ÀÀîÂy¤» M…„Ѱ†¶yT4°»Ð>=ÚTè@ê-æÐ„ŠNW¼ÙYJÝžlp ò<´ðÕڊΧ _­Õ£M…¤g´EzDßCáMÒz´©ÐÐàåY¼Óc³(¼ÑCN6Ù—ùø®¦Ž_tºÚ-Î2êžÃÕ`Ó€‘Á¶,¾…^ïÂ×±äd‘#™±œí®`àÒi=ÚTè@è =Ñ%ðŠÖ#º®G› H}W—ßJƒNW»»³ŒºgB5Ø4à@äÌqðéè M¿òéh=ÚTèHj,ÇA›¤+ø†´MZ6:ú¡. • ¬It%K6Ú—z–V8Ëìí024Y-ÖØ@Úýhtõª¢Óïæ<‘í×®Ô`Ó€‘G4}Dgžg4ÓÊgžõhS¡©A7m@ŸÑÇ x ºm*t 4za]µšgpE¢‹Vr²‰È‘Ì“´œYpº¡ÐX5Ø4àHâ´”Ýå/7hk’˜kn ï ~8ÞÈQÑéÖrs¤pÓÑj°iÀÈ´¼B½´È˽õhS¡}©ï×›´ºYpýÉW]5V 6 8’ø`Õ<ëUöûùèYÉáHÞ¨?ü@f1Ùdä@ê8MhWÒýî×´)IN69’«a¡vµÒ€ÓÕˆ6Ø©Á¦£gnÚ‹tǰÎòé‘Ä\“pÁׂxcÁ,¤ó¾9ÙDäHfÌæD—»ïü þnM—»Õ`Ó€#‰ã´ö7åîûŸƒûûoþ¦ÜÝmBv ø2ÂõzÞ‹ GÓçàÈ×j²ÉÈ‘Ôh6ÚU4ÑF;=ÚTèHjÌ»€š0KN·Ú6ª›Hü@£:ÚcWÑi˜äM}‹l°/òzE+)´c…m ´C6:’›'´· ‚ÓP‰ö¨Á¦Çé¹o¬kœîúÆY G›‰¦YiŸ]Eû6m´Ó£M…¤nRfiÀéšD[FÕ`Ó€‰'ôã]Y“]E§{·Sµó-vj°iÀÈsvSÁv‚ Ö£/ì=঄¢/ØŒ¡‹Üœîât•[ 6 8Ý i;Z@çÝHr²‰È‘ÌZŸZiÀÙáuj°iÀÄë(v]–.þ,üÒnJ¸/9xAoö‚.z8E<ßè¥Åšˆ{¤þ‡Ò€ŸcbÔù5´XS`qoX¹Š®lWpúÕèʶlp 1z,oîªh`å¡Í]z´©Ð‘ÔPJ6þ•œîÕ(øÒ lp ñŒ~<ÚrôÀ:ÅNyÃw©Á¦G"kKò¥'›m!ÐbMÄ•—áKÃ~þâYj“MF¤^⦸ýÒ%Ö N']bUƒM$†ï1¦}] ,õ´±K6:z…Rø°ã¯4àt¯¦-Šj°iÀ®Äÿ¾úñXûËŽN¿žSÎpÍ/r°iÀ‘ÈÚšpiÀÉ~ÍÖ°ÅXS`qå•àòîÓtõZ68y{èTVœ, 8l9U6 8½„›µU2°È³®"=ÙDäHf­ß¬4àtfrr°iÀÄ øíX—K%'ßnüù#•ðŽ!j®I¸‘ÀØÄÖ§wp²G³Õi1ÖØ@Ü;ÔÙM—LwpöÕè’©lp$qvÃÚySËß–ŸŸ\¢ÐÔÒnJx úŠ%ëQëSiÀé„aÍZr°iÀÄW®*©—N~é 7%ÜývC+$¬•hG§û·S-rDr°iÀ‘ÈÚ*piÀÉÎV­ÅXS`q(mO—Qwpº³eT9Ø4à@â Ë%£œÒ€ÓoÇz†ä`Ó€‰·‘ž×žï ß~ìJ?àe ]~þùƒž®ÿV÷ñößèï|•#ÊèÀÛøèð)Ѳk¡ÙÑéå¯]lp4_´¥ÏÒ€“MŠ-ÕŠ±¦À¾‰ûú±›ÙW9;LÈFÅ %Úé¢çNwV¶è)›H 6£ö¤Ò€ÓoǪä`Ó€}‰‡Cô÷žÜÒ`Ÿ÷çï.–{éÄ5 7PwwgÖ‚RÉéVçUÜó‚˜kn$ðmÍtµ³‚“yA×:µXS`qG,¿Nà*8Ý/èœlp*ñü”øs¾mØÐó¼åÛ† ¾Ž??øößäÆöß|s\•<^—#ùÉÜðn !'¿é|šH=aYuÔTp:Mhÿ”lp ñÁ0û½Û¹4ØlsfÍÙj®I¸ºèM¼ïd€šOÇ«“Âòm'j°iÀ‘ÈÚ miÀñÜà+ÊZ¬)°¸+–>§ ›œ~5º°©›ìK<^‘ô9n) 8ùv'=j°iÀÄ7`“£-Â5Û3h‹°k l¤lÖ²ñEU~<Þ`äx6Xø¥'Ü”ð@tq…°4àd¡+šZ¬)°¸–$¦«™œ~5ºš©›H µšâÒ€Óýƒö”¨Á¦/H’˜ö°Vl¶‹Ð&V1×$Ü@ÝÊaò…¤q²‚|I‹56÷å0éR§_.!©Á¦ûOW$±†×óKN—3Ú ›H|Ck´¥¯b³öô‰¹&áꊫ¥'K]åÐbM İœv¯àô«Ñiw5Ø4à@âËù EÛÒ€Ó匮2«Á¦GºEÝ$¥?¹_ͨèñºÑõùÜXM6:ûŽäØh¿]Åfûm¸sM Ô'µKNv: ¯Åšë‹;_‘ŒÏ‰ü Ýöx"¯›H ¶Î EÅÒ€ÓoG—AÕ`Ó€‰¤}†vUUl¶ Ñ¶*1×$Ü@Ý ËøÐYá N–4:'¬Åšˆ;#Ÿùà N—3:¬›I¼5ZÈ^. Ùýx§_1Ö“MFŽ„~…(’» KC~LJ}é‡6:ÐúÜzÅû~*6ÙBxã˜kn ®8«]pòÙè,¼k ¬/îrErl'2ðœn t^ 6 8øv·<ðÍÔÒíƒ|çUO69z„¶¼Á[á¡Gló€Ñ—~hÓ¡­+oüY wïüsM Ô×JN>]÷ÐbM Ä]°4]óX ÛNÔ<Ô`Ó€‰W Ä»R*6›m´-EÌ5 7R÷¤–èÎÛÊæßÏö±Id¼zM"î¹NN6Ùù~°€«l¹¥°ú³þ÷ ½QŸÀËz´éБÜH^óDí£‚Ã¥èDåC‹56÷†å5éªG§_®z¨Á¦H ˆ¶Ul¶ƒÐ> 1×$Ü@ÝÍ®j·, 7Ý=n7g_rur²‰ÈÈâZBiÀÉ¢F×>´XS`#qc{çùºG%¯#œ­{ÈÉ&#B®gýÞñQl¶°Ñ1×$ÜHÝYˆéÆÊ͵ÁY.Ý´œl"²/ò*Îp—œ,mtF^‹56÷gÎgã+XÔØl¼œl2r ô4‰ý£¥Aûßð¼ëU6:I¸Ñ¦ ŠÍvÚ$æš„© %Üè.ÆÊÍwÑܴٛœl"r ò‚e€è´|'û”×bM Ä} é ÚAQ±Ù|£-b®I¸¾ºõyUÓZi¸ù\sÞXº»;9ÙDä@dqJ°4àdÆÑ)L-ÖØ@Ü95ÓåæŠÍæ]osMÂÔ…šO馤ÊÍçÚìÌb·¼!'›ˆ‰ŸšÏgØ+í ̯‰¹&âº×k~ÊàKt;6ž|NÍ5 7PY{èÆ™ŠÍçÛâÌd/ÿ.› ,N£”†œÎ82ñ£æšˆH¼À…é“Ò ý¯w:éÓm:t öœêørÝŽÍ–7¶^§æš„¨»ÄU]¥áæËÛÝY7½<¼žl"r òvs“ЭTt°±èK?´éоط[~Èã«J;6›lYIÍ5 7Rw+nŸî“_~d¬4ìéw‘½Öm:t¤6r¤¦vn¾Ò9Ϯܽ|±žl"r ò `«4l`p è×Ïž·JÂógh¢ß˜( yöb9|é68Ëk7d/JÃ}6Ë­ºl‹šk"n$0’maËa;6ÛþØz˜šk®ûxàPï ×-?&#CÚôÐ>•ò›ïNwÆê/kb°iÀÀ+V½‚UJC½aÁ‚/½À¦û· Ú8Ø$\å¦ 1›„sMÄFòBltÇf 1[(UsM Ô ¼Ûê±sÓ¥g¸:‹¥»BÈÉ&""3¶À£í¥!g«Ýñ!›h<ņŠ/rõ}ý=7ª2õj°©ÀÌw(hc;vn>÷œ·ú#YM69yͼµû,¹²y䊦 ‹¾ôC›‰½b‹3ÚRQrºÔ±] r°iÀ¾Æ#d°†îŠÍ矣Ãê ¬›Œ¶Q¢éÒÓ!Ášºå`Ó€Wh³¶ã› G‰Õ—XM69ù†Ê¨•·4ätX°îc9Ø4`_ãi„b8Ö»sóAá(±ºËÉ&""£%¨ç´4ätX°6Y9Ø4à@cyÄYôÕIë’Õ`S™~±FYp‚ Îp[ýq,› <ü–55—ýC­Õã·νþê寗1nÂZ7%üMò3ºÜ=ºwÍr´éÐþ0œ¯ /õ@—†œn´k[ 6 8ÐxX•uûÒp×ßÕÿm`¬u`¬Gò³¤ó¤»“\N6ÙŸÞ8úñÝNÀ×Äò×|Iµ‚¯‡¤Ÿª¨ªG› í[æí>Ý'49˜Þ#8áb¯Üti¯NL㯠j²‰È‘È . ^¸ä–!*Ø`Ç›·Áº§ØpSƒõ§Ý×çíµn)Ü”ð`(Îà­Ih“BiÈiB÷U¨Á¦£4Úˆ¾‘ƒ½ë 'z¶ ÙÜ+æe M•›ïºãøy×õ×U5Ùdä`E…ÑÓgt»â> VÄ£Í&œÇz¼ÝD6:ˆP·ÛºuŸÐdä`z?€äÿ‰¾©ÊÍ£=/ëæoXj²‰È¾Èõñ]wLiÈéä¦zÔ`Ó€7·žÐó^4´Á¢ðKO¸)áä`evÊT0°FÓ^=ÚTèHèÞ¥´2VðsÒŒŸšÉN{åd“‘¥M>å/6ßVœ¬ôê/Òb°iÀÀh«=Ú3SrºÑ]>j°iÀÆëË쫨(—ü< Þ¤Ep9Ùdä@gÐŽC[ì*ØGh“m*´/ôýP{´Ð”†›¯rNêëáŽg9ÙDä@ä–¹„ÛhJCÎæ ßù£›h|x×]Sw+ ºZŸnÊj¡m*t$5–ô¢m£÷ MÑÆQ=ÚTè@èyþ-¾]?ì¯Cý€ôm|üɪû(ŽàhЦCR/ ß í\* 9]ðèf+5Ø4à@ã{6Q¾¨/Ux°Ü}Q`ê7%<ýñ6iT5ŠŠÎwýû«WÐFº×+&ð–n=ÚTh¿®²^'ñ74ÚÓ+Ú<ŽöŒ•†œ.}t—›lp ñá™vUê¼4phÉ£“þ=঄¢£Ç|:ë¿‘¹ˆ’¿³¢ÐFæõ=ÜSY™õhS¡ƒ¥zÎâöš Œè;˜úprbom‘¥!§  ¾ô›ìk\NѹÆKCüºïY§»œl2r$4†ÑyéÇŸWÌ£Hç¥õhS¡#©1'íõ|Þ†Œ¿!íöÔ£M…„­q¨ó¿üÓí y `ªmP. 9] éžj5Ø4`?Öxl BÝ×39ÊZçM-ôFɇߌ†‹t6ýñçUöhq¦³éz´©ÐÑðx³r«òé}üÑ_¢_¿t2ÐîÆÇ‚3´¿Q6:Yç0n•VÖ~þxvªšçF¾=Å>ÉÁ’/ÝÈ&"C½½å 4ätÿ¦ïePƒM"Žõí(¡ª~v‡ÆxM“ÜçkZ;|ÑÓç¥ãlM« Ü”pw¬ü£?´á˜ÉÈÁH9¼¡£)• ÄLlQ«ÚTèTj?ú@ƒݬÅv£ƒ5Ùv@› |´β“Ù²õŽÎ㺵®ÚTèHj,EßJPr6[è‹ä`Ó€ÓËùjê‡6[¶šÚnJx&,`%€íýžŒ”e—T¶ º£5•-¨v@› I%O½UÄÛ0[Oû²; M…„^ÑOÈúv4°-¢èK?´©Ð‘ÔXqnà. 9ÝÙžs9Ø4`_ãúj"°D³ÕÉ Ì¶:Ùm*t 5ènc]Ù;XìX_v´©ÐÐj@ùK–:ÖØ '›ˆÈŒÞÓæ„Io]Å¥!§‹ ¾ô›h W˜I;ÔN¦ßiCT¶ ÙÜw4¯É–(w4°*±%ÊhS¡#©1!k{ßÁÀ¾Âß; M…„~¯‰\;Ø[XWF´©Ð‘ÔogC‘+cGo?zèK?´éÐØ0Õ‹öΗ†œnæl»¿l°¯ñ€–YGåN†¶q}éÈ6!;ÕiÌŽ~R?-Mû9nãOæï[`ä`Ó€‘4)M>+Øjé§m*t$5–”fûev0-±3ЦBBhÒŠöcT4-Ñ~ =ÚTè@j¸\F³w2²µ°W÷`›È}G« ´w¢¢Ó æáì\nÒT 6 8,ðåÊÎW&¾|¨G› H ZNÙ~Ÿ |C¶ã§ÚTè@èš¹¢½ ¬I´÷@6Ú—ú¹‰*½)¥!C[ Ⱦtd›È=¬à‡¤m0ÓÕÙ¹ÜÌ©lp rzeȾ0ÑåÚµƒòåZ=ÚTèHj¬À6¤ì`à²-)ЦBBOèAŸözT4°&Ñ^=ÚTè@ê´µï|å¶²CÿíÙÊm¶ Ùàwµ¢4èt‹¹9{—›jRƒMD^ÁÔ)_µQ[%Œ>üjÌ:wuÀî9 ‚s9ø¦=ÚThߣ>>ÄŸÐDä`D£]ǼácD[xyÇm*´/õ”:MÏW§Ô´y¾šØmBv ø°ˆ-¥A§Ìàì\nªI 6 8yÜòyløL(þ”}ià³·s`_:²MÈŽG“ÕtYqBËh0úõ«§:Nîž&þïÞà€Þ0ûðÃ1g+݃1¡ð]z´©Ð~ô4¡oð…çoÑÁdœÑ,;m¦¨h`û¢Íz´©Ð‘ÔXñ5Ú”|; i5H 6 8ŽPéâþztm_6:{Eg íY©è4Øç¦}Õ`Ó€ƒMe{ÖL˜ŽŒ—Æ›G÷'#úËqöë‡?ÐÂ]âŸÐ’6Œ>üê •{ð$ñ§ãä†Ù‡Ž9ŸÑŽ®Ò€@E_ú¡M…V4SÆ›@¾Eû«ÈŒ>ÛÁ›æ+X;âMz´©ÐÔÕ¢2½•œ{´MO 6 8x¤û¬Ó¦²¡PuÚt`›>¢õaÚCVÑiÀ79ƒÏ­©Á¦ûËŒp,f:t06&´JûVfÔ§£¿«…Ò=s tלm*t0ªÁ7ŠxЗä`D¿_ü­²¼U4v èK?´©ÐÔ‹ÖYpzðN5Ø4à@â-dÓf·ŠN¿ÞìháÖ-Ô`Ó€‘3_Æy—Û†Þ>ßúéó7¹éѦC[ʬªâi²£QVly ÖŒ¦x –m*´/õrÂô›³‚¸%æ N—i|é6 8’ “hdEоôC› H=lU‘§ÐÃÛ¼Ýö-ü9MžÿüA/ÓÏuþ?‹éÕUz#ßžèëôΞ–#ûI­À•ZÏ6!;’û°{‰^Q( üÉýx7ÎŽžîGôF}þ@p5Útè@î -€ÒÞÓŠN·¯òî–.Ô`Ó€#‘ñ¦ÖuZÙP´ÇºN;°MÈŸÁú'ï[P³ïÓ£M…ޤÆê ´#hù“cºêAj°iÀÄ vpFýÈ¥§Ñ)í VƒM$V{nË_2—Ò—ÉÉ&"2ÿ,ôâ·/J¤‡&¹ù]=Útè@îZ:¤±­Ióõó ÷m±j°iÀ‘ÈrëciØHD;6;°MÈö¿_Á¢'ï·º£VÞo¥G› H}[ àŽöÓTp*Ñ~5Ø4à@â;s¢nÞÒ€ÓP‰ö«Á¦G£'´¶¢P‰¾ðJ6:zBCÇ«ó£Ýó`E§û·“£÷Žj°iÀÈ™ùâ¼ï>Ãû6kÀÓ£M‡ŽÄF놴]éŽz]x»’m*t õò€Ö'ô÷ )œíݼ!E 6 8ø¤acfiÀé·£­¤j°iÀ‘Äh.‰ödV4°»Òw‰éѦBûR¯W°xÅ›+:Ý» ¦oTƒMDÆ x7G§k ¾ô›HŒ^~Ï{“*:Ÿ"¼7I6:’3½¢îÆÒ€ÓiBû1Õ`Ó€‰ÅõµÒ€¯?Ø÷g|Xì¥ÖØ@ÜÜñhß×FN·'«ã›¾Ä\“p#±YA[+8Ý<èb«lp 1!óîŒ5yw†m*t 5x¥j•* 8&´¹K 6 Ø—ø¾—Å{ØëS³söõ­j°iÀ‘ÈÇŸâyÀÒ §'ûã­;{žöüd¿;|/Ù&dGzkËh¥'Q]öÓbM Ä=”_´Ò€Ó ›.ù©Á¦£ðŠ6kÚ# G› I ¥”aÃNiÀÙ4á-Fj°iÀo¿”˜¶³NPñûÙwŸìºÿ}Yþþ7ý[ë‡m#ù¿Orô ›”¾IóŸFìU¤kûÌv;ßaâØÔ`Ó€ƒ)~‡ig¾øu¹CK¦»»òE9)ÕÔHXÈ_Å—ã*8ýdt9N 6 8}Ó¯ß?V4KM×ïõhS¡#©¡Ü:l¤) 8ÝWQð¥Ø4`Wâé*.m•œ¬ol)NŒ56wC ¶p_ÉéÄprZnÕ^Í5 73ø°Å·œN ¶ø&›HŒµ°Âö‚Ò€Ó5DÈÁ¦£GºZ¿£Ó¯ç$²ÜZ½lp$26?Ø2ÜN¶¶'Æšˆ»b H¶*´ƒÓ¯ÆV…ä`Ó€#‰ŸÇåË6¥a_}Kòoòô¡›”îË~Mp¨Û 4àt3aír°iÀć.M¼4èìë-WG 7ŒSƒMŽDÖ\JN6¶@$Æšˆ;BY7ºb±ƒ³¯FW,ä`Ó€‰ÁKùwÆ*Ú@`ø¥'Ü”ð@rìi&ØÓQp:]XŠlp$1P }­;öyö0ËŒ­j®I¸ºw41ÍÖìwtºM{y^÷\¢›‰¬­ß”œlÕl½IŒ56w…ò›td§Û4[‘ƒM$†ï¾y[¨›ªldƒÆé—®t“Ò}Ù‡«Ö²Pp:eX“…lp ñ HõцË›mÖ¬ãRÍ5 7Pw@“ö¬ `G§[µ“üuMr°iÀÈXÒ‚.ïAYº¶'¥š€{¸,UQ#+ 8ݦ骞lp$1˜°çßžÜÙÐæ Ó/]é&¥²oÓ ¯Í. Ú4ç/ûî€6:{Áª#¨_¤4àt}¢ .j°iÀÄ÷Aè>- 6‰Šh¯¬škn ®¸ \pòÙè²µk l îÏOóEëJo-;_´îB7)Ý~<%àÒ€ÓX‰.Z«Á¦GO`˜^à\4°a³×Nw@›‰ùÀQ³YiÀéD¡íqj°iÀÄ7¤ÅÉÚú.ðŠÍ¶m”{éÄ5 7PW\n/ 8þl¼=@‹56wZõ5öÒС­š·t¡›”½ÔÂFìÂ'Þ  ›HŒ°aŸYiÀÙ·ãqj°iÀÄ÷°óѶðŠÍvÚ.æš„©û\òµ½à¥¡ß‚¥ÿ|{ºIénû4jëðå/7ÙÂiÛ€”jª?¢§ë 7NX*Ù²OXºÐMJ„ÇŽ>´e ‚Ó¹B[Ô`Ó€‰oÐÕ+°û¬4àtóFÁ—^`Ó€‰¤Ó˜¶áWl¶}Ó>|1×$Ü@Ýãë³çžªw“Ÿ•ýÄ~NùUò2Éõ‡ïf?åd“‘#©µùÒ€“m›6h±¦ÀâÎqÿ‹*vE»ßí‹*¶m:t$6\§:áÕ¨t(*â½]è&¥Â/XжTpº6Ñö5Ø4àHb¨t[þJNã#Ú¤¨›H|_ˆŽî¨Ø,B¢ Ä\“puð[\ìS÷;ˆŽ¦ÏÑ‘›h–“MFö¥žÅEøÒ€“‰6 h±¦ÀFâÆçÉ/  ÄF´a@6:뛢 œNÚ0 ›H<Àɾæ®ùx'ÄOKjîêB7)=~D ¡tKDÅfÛ7Ý!æš„¨;­h¸Á>¾¾³­{þ¼u»‰f9Ùdä@jq1¾4àd§ÍZ¬)°¸ ÔàÃ*8ûj¼q@ 6 8’xs<>gÆÇ•⶯Bµ~»Áo?ScX¦“ÃMÒUöðû‹¿F_ú¡M‡Ô¾ã–iÞå5¯ŠHölÞåÕ…nRz üŠ¬è‰ŠÍöoºCBÌ5 ×Ww9¾8«yż4l`ï^>ïÝnTN69’úmKZ‘*ý¸Ë­H]è&¥ûV¤<‚ÒÆ NB'Ú¶¡ÅšŒêÛ›LcÙX°»xˆlp ñÛ¨O8¾–ë¹Éö}ÂñÕ…nRz üTVø¦‰ŠM¶r¾kBÌ5 7Pws.$Xþö¹ÊæßÏöùb”Å»Å=ºÈÉ&""Ë-¥A?gǤ´q¨Á¦2‹ëò¥'Kí#ÐbMÄ…ª)¼‡`Áîäç=j°iÀÄ+næ-HËá¥âl›æ-H]è&¥Â?ã…¢þÚü@ª|Ÿ„˜k®¯î}k ÏB úºÊÍ·ëÕ Ü‚·œl"r$r|ìùÂYPÑé†Mû Ô`S™oP„A[ öCÞO ¥š€;!0ÚF^±Ù’FûÈÅ\“pu¡»µþñq v•›/gg¡tÝr²‰ÈÈâÚeiÀñÜàk­Z¬)°¾¸ëÉSðw“Tn:îWgœ¹õ>9ÙDäHä X„içç €¼õSÌ5 7P÷ö<KO•þüv³¸ðÔmB¶_tZÅU†Ò€“EŽ®Šh±¦ÀFãù.ö”}ª´,üÒnJx y½ÐáæÏ–¡Î–͉÷óÏðéö4 ü›-ÛDü¨ùÆö¯*¦Ñ—~hÓ¡µç‰9œ ß¿¦róýûæDn¡ON69)ïÑöÏŠÍöpÚÿ)æš„¨{—¦ÀË_n²¡Ð{)ÕÔ@ØõБ¦ê( ý þl€ªìûŸlw¥>ÿ‚5ëÙ&dû’?nÈjìDûþ¥6_ØFgÉtK"j°iÀ‘ÀHf6hUl¶´Ñ-1×$Ü@ݶɜð.W:0ó&oæ¹{^¶ Ùä r绲+7Ÿ³3µÝŒ½œl"r*r²jО ìÛñ¦ 1·Õ÷7P÷W¾yÛácßJÒÙ·x³Ï_žõl²]Éçë q°%¾› ¶È§æš„© •¢ØÖÕ›¯ož-Ы“èÉ&""î—S¥¸JlJ§“s]঄¢Oð‘·oít`É[½%ÏÛ{°MÈ$?^Ú%´Õîàé91?ýè³¾Z=Ùdä@çpgÐ…í›ìte[Í5 7PÚÙæÊŠÍ7ÏAáU©ä`Ó€ß>(±Ì—›¿îO{½nëþT«Œ·ÿÖÿMÓ¿ÿquŠ£]঄»åÑùv]¡å“µ îà|)b=ƒz²ÉÈþ¿Ý€]„Þ±ÙrÄV¡Õ\“puèäí­öWWÞ˘¬ŸK^óµ%_º‘MDDgÌ5‡v]•†åg2ûXM69ùškÑΉÒÓIÇ6{ÈÁ¦ûˆ–¶ÊWl>$>WŸ÷e~X 6 8xZÔòÒ°o‡Ìœª²ßƒmBv 8[ ^ÿòœÎ@¶;AÍ5 7Ò÷Ø­Iª–¾¥=—I›î7%<}}:uïy”†ÌÅ“oèÉ&#§B«ÚZ™óýer6®Lf¹•ù,9ù­Ñp7KiÈÙ¢ƒ?ù¡¶­”† l‡´Ý¦Û„ì·1òûÃÇC–âKšìê±^ø"» ¿4d`¹#ГMFN…V¹¦[™óåi¾f2ëÈ­ÌgÉ‘ÈØÚ›ÿKCNç ~ýä-Sz„JÖ:ÚÛÔƒmBv°DÏPN‚îù êÇ.ÑóçEÉìD{ò"v=ÙdäTh•›º•9_îg!ÍdÖ‘[™Ï’}‘'´sí ( 9(øð“Ñdì * XêxOS¶ Ùþ½=Ö)û&áCzº«“Ž¥a—O–v`› Žæ•–Ï{€?'4G’/ÝÈ&#§B«:Z™óÝåsýx¾f2ëÈ­ÌgÉÈh_1ÚðRrºà±=:ó´`[-Û¢ó%8ÐøÐ¡3Ìru,Ó׎ììçç›>}¿/îé7%Ü·ÖM+tdæí2|=,x*ÃŒm*t0¸ R’’EiÈÁ.~¶Ì"'›Œ =üΗO#úüÕ#;:ç/™§Í†!…›IY–èV´ t鬟­)OŸv(¶ŽÜ*}–ì‹<'ËÇù"ÑœLÅó%"9Ùdä@èé¡mtå/8 ›èÆ¿ùЪ¨›(7B}é‡6:z°í½ç¢4ätO¡¯æ¸¯ØfEßÌñ8Ðø±‚» [ñ®ätWaëÝb®‰¸¾Ä«¾ÊVvº£ðµA9Ùdä@êx”àŸßöÚX G› Iåö鯫ü T}é‡6:zkÝŸÁïW‰”†œî)(ø¥óˆå‡Q°iÀÆêêZiÈé®ÂÖÅ\q‰o@hêj¥Aç‹_ Ô£M…¤Öö”¿\à Ò­r²‰È‘È›­ZùnCià7ÿgñâD¸)á~[ìŠÞO¸8;‹{ZY±†[þš1×$Ü`X?Fhýg °•û¼tb`Å\q}‡Ç<4u”Ò ….þèѦBRcE¾]¢‚oH7LèѦB§B Ëó­Ô› u”¦=º•ú4:zs¢ŸÁïw´”†œî((ø¥óMCþV™ïÀ‘Æ‹²ÎVnº§°uA1×DÜ@`½±¢üeo3oý4A¾¸ ¢Û„ì@pØbA­*ؾ颕m*t$5–¢úÌ)œC¾7E6:zó'|Å»¢í›®xëѦBRƒ§nôV–òœÎú™övÌwàHá­FøTøöa¯eŸõÝÉX$CÖv±°€,ìJ¡¦€ºŸkÙ_^×õ˜•}L ‰:ã: M‡ÄN_£ß÷j¶Ö¸ä/º³èK?´©ÐÔØŠípÛÛé=ÙDäHdԙƚv4°&…hS¡©ÑÇ2ÐKuJCN§ { Ðr¥\“p…kå< \еd¬AVäwny5×DÜàÓÝÑJ[)ÞÑÀÅ–Š; M…¤Ý›lÊv)¶¥ÚTè@è?¤ ¿FiÐù.E»L: M…ޤÆ|ið==¥!g³ÿþäÛõ%†ÊùPøÑC&ólt›þæÙ8üthí£¯súììÛˆ&ËÙÂñŽ–'¶pÜm*t$5–NcGL®1@N6ÙyQôt½~FûåÎq¸‰Ñ&CÓ|D+kl«è$ˆœ®7':õ7/1Ø4à@ä ­yÒ†”5`ð†=ÚTè@jÌŽÎvV.ðÙžB=ÙDäHä y/Âs³»•œ0úÒm:t¤5Z_¦]ƒ ¬ý´kP6:z‘öŠ–† l߃¸µ!=Údè ƒÑ£ó«Ý\ÍóX)E› Œ¼Ó¨!±4è4¦ñjâþz*›ˆ|¸ˆ[ã.* ˆghK”m*´/õ6üÒí‘Ü=K7HêѦBGBkퟥ»^+|é6 8’+°¯^lçfÒ+9aô¥Útè@kôZyÞ\ÑùË›ƒõhS¡#©ßò»*3åt0ÛJ+¥l*p ó)Øfó „¢³åºY9ÙTdÿ<“Ä;¦3àh“¡ƒA7¡¶Ú“^Ñip~w¶oǃMD>¼h q – lƒ´ÇQ6:’køº:?ÙÍ€MèËé0úÒm*t 4úvo®h ’¡ Òz´©Ð‘Ôèä†ö*”œžƒèî 5Ø4à@âøñx»nE§›Šç¼s«Aj°iÀ¾ÈsúTö>Ch§ÙŒº}x§™m*t õ ÚEÎoG¾\N69MŠÒÕùпo&´EU6:z¤öåÒ€Ó …6\«Á¦Oha‰6LVtº¡<-ÜD¼lp 2úF6o;™Ñê?ï;Ñ£M…¤Fï×çT ¬s´“J6:’Zë²+ 8YëNøÕ`Ó€}‰—+øñxoOEg_ï'Àú¨…›×PƒMŽDÆN—t‰tywÈkJ¤j°iÀÄèóØ|Á+‚tÁ_6:zxI­(•¼M>iÕNN69Ò=ÅÓf¡Š¶lÚ,¤G› IdBq#YiÀé¶M[ßÔ`Ó€‰G̺·§—†ÎåF 6 8è3õ|sA‹v|S6:óÒ…µ›Ït]MÌ5 7’Mîо‡ŠV"Ú÷ G› H½" rÜSpgÐ.5Ø4àHâéõñDo¯–þä~~Îm¨ÛÉpDoÔçð7@9Útè7¹?{ÕF1&#GcsêÁî…ÿÑ ùõ›h‹ÕÕ1.ú£ú±@?Gÿþêû]JiÿQE§ÝçÜWà>RƒMö‡óý–«x'Á-žóV=ÚTè@êa”Ö‹KNƒ;ºÂ­›HŒ>"Âû*Xhÿ‘m*t$µÖ›VpÜÑn:5Ø4`?>ºO7m@`2r0.64k N@àïÚà¯ÆÑ‡_ý5Ú)^4ð«QôëW/èì¦íiÆŸ9M 6 8Ð÷Ej$( 8ÙOXÔ`Ó€‰áWOhÏTES„öLéѦBGRcõ5ÔOWp:Mh lp°m?°ŠÒ‰»ß¾Fã^h‚özþW£èß_½^±Þ’Y4ð«QôáWk==¥_°£Îƒ¤Åšëäõ†®´+´¢Ócvb÷ ­›ˆŒ¤2N¸4V$/p¤!暄ɋ–Õh]EÓƒöÐéѦBROPY ¶°–œÍÞt«›ìDë„6NÜK÷5: :ähÓ_E§cnq–{÷ä§›ˆ¬µ;”¿Ü$² ÍRª ¨°àM»VpË£Ýj°iÀ‘Äh½–õQVòÕ/ÊwRv`›ȾŽÂ›æ*:_êyÓœm*t$µÖPYpa àK/°iÀ~Lô¸¢µ újÚ¯ÑþÀx hÁ¶ûUt:æ>¯ÒÙO 6 8Y[u/ 8‰4h—€k l îˆUsè²u§Q]¶VƒM$†‹ËlÛC%CñûNa¶ ّܨwžvpU4aÐ.=ÚTèHj¨x»ûJN£ Ú¨›ÄE³ºVd2t00–×^¥yg¬4èç ËÓ$a_:²MÈöH{ÜÑíó{`7]Ü>ïŠËO 6 8Ôw$9wÂøRÁadwÂö¢Åšˆ«55”¿Üô›Ñ. 1×$ÜH^´«—íÒ¨d(–c_QìÀ6!;’{‹AÇß °i+¹vMOò4þwþ7,ËÃÿütCÏŸÇÇ ò¥ÙddWéûõŠ•+QûdiÀi@Ç>å`Ó€Ýô­)¢Æ“¡ƒ1 åJÖC¹£Ó1÷y‘ö”r°iÀÈZIùËMB Öô¢¥š€;AåJÚ…±ƒ³OF»0ä`Ó€#‰Ñµç ÚRKƒb þ)å.pÂÅÁëCPW_iÀéla}ˆr°iÀÄ+Zbr;:ûzÃçyèÛää`Ó€#‘µÎŒÒ€“½„u’ˆ±¦Àân ôÀ DûHvvP8í#éÁ6!;\fpÔö7nÖÜ ;:³`_âì@@ Ÿ¥AC6 ¿ô„›)ŽU¦PãgiÀéla­ªr°iÀć{m¿o‚) ö™9ÞSg,÷Ò‰kn îVthwߎNÃ"oùt€j°iÀ‘ÈXE‡5¿ìà$4b­/b¬)°¸ÓäHãËΆ"ÒøÒƒmBv 8v¤dÍ•›E¬CÍ5 7’µK°Wbìh(Bá—žpÂŬ¶ƒ:UKN§ ë­•ƒM$¾@ǶíØ,(bŽÔ\“pu·{9ŸuÏð5øz¾y Þkôÿ‡Ë[´ËqG§ÑÖðyû™k5Ø4ààûiMå/7‰·XKŠ–jª/ìpàØ4¤ìl(Æ" )=Ø&dG‚cõDÚ&1`%`Þ&¡›IŒÖÙ cv4e¡ðKO¸ áâàe¨ƒ´4àt¶°žW9Ø4à@âaâC/ãàè ›Å[(÷Ò‰kn îÖq”LJ“zW*ݱ£4à8 àí#Z¬)°Áw›Ñå óH…qÀ óH¸ á©æ2+†£·?ShóˆìèÌ‚‰´L‰=Kƒ†f ¿ô„›)Ž•)QÃgiÀél¡-ªj°iÀÄwäû¹rä÷ììØ8"à›vÔ\“pu·;Cófñ"˜6åùB? âïK©à$& ])Z¬)°þwWMªœ¥CqíIé7!<Ðü-p´%åÏþ<¡)b®I¸¼T-‚m¤¥gŽ7¾ªÁ¦§+=ŽUÖOóÞÌìZŸd‚yyîD{MÅfÁÝ`#æš„¨;å¹Õ ^Ú|Ü ­õ6”¿Ü$ Rª ¨Á7[ÐÊÑ F…CÛ?íÃè7!<Ò+Ñ>Œ N§ íÃPƒM$Æî¬€­“¥§¡möTƒMŽ$Æ›(X?âxx' X?b¶ Ùàk^;:Ñ$U±Y0@wI‰¹&áê>^µ#Ñ]E¥aÿ`?__1Õ98ÉO憿º"«É&#ûROb+BiÀIˆD['´XS`qoê·šKƒvw’ó/Lw@›‰.i—J…C1(íRé7!<Õ\æùpôö—%Ú¥¢;:³à@â*£ÁÆÒÒ€ÓX”¶ÂªÁ¦§+U΢PÖ±ÙýQë“ì@ð©[zN&7ÍZ±Y4Šr/¸&áêÎXq‘v“Tp$Ñ^-ÖØ@Ü/.ÒN’ ‡öjÚIÒnBx ù]jË(¹é<¡}$b®I¸¼+ž_½²Ž¿ ö‘Ž¿pÂÍHñ‹n¾©ØlG¡ÛoÄ\“p}ugmu¿üå&; íERM@ „ j ïC˜¡wPNøÔ`Ó€‰ÿ¼Ô¡ñ•­i´{©Ü„ð@ó Èæó훬n|?˜kn îféÞòǜߵž#o[ί¢—éß—»=G…K—BKN]ºÕbM >Û¡~¦(‚–œ®œtÙV 6 8xÅOM´á£Â¡“6|ô€›hþ¹w{Uî0ÿÎÂwLƒó}°¯ªÉ&"G"ß ¸ïÓå‹'vòÕ¯ ÑìKG¶ Ù‘Ü@>•o&¨Ø,@¹—N\“p}u—¤ÿø‹*î’ÜçôEW6:KrÑÅ Næ]OÔbM ÄÅNït) ÃùJ¢˜kn ï„'RiB…CAí@è7!<Ð|©¼½b³­„v£‹¹&áFêÞ‘`™¾C­róÀsvBZ÷`"'›ˆˆ¬-•¿ÜdfÐÅ-)ÕÔ@XøjùµÚåpµ|¶ªÑµÚpÂ}ÍïW$•J»I+6[ßh;©˜kn .v!·çDqƒ‹ÊÍ×¶ÅY5ÝÈBN69Y\2* 8ž|‰K‹56wFR´5©b³ùF{“Ä\“pu— ©§΀7‚Tn>ל'˜ýNN69{+™/ŒÜ‘ׇù²ˆk l îÏæ¥ÍÁ–†}Œe¹ãl²}Á×r€¦­2›-p´YFÌ5 7R7®~‘;^ý.ŸzÂNgŽÕ`S#™<ʼnË$*7ßCVgwr­r²‰ÈÈõ†YciÈn¹ðtK¦l*p ²6ç]þr“ÝšÎÐK©& Â.Hf‚¶ Ul¶qÐ^!1×$Ü@Ý;™8Ñ_¹ùjæ¼ùzs+wr²‰È¾ÈäÁ¾4Z±Ù k£b®I¸ºtx¦ÛÒ*7ãÕhn.^N69x”çD­ãù:ÎZêõd“‘‡ù}ý@>k÷ÞÁÏø¹Çç¬á»ÚtèHêCK¶¶ëigOãï|y{Li¬«Ý||ÂÇ þõÖÃM ß4ÿ¿Ošãg–Ñ >Ü ÿ„ÿ‹ ¸~9ÙTä`tO?ÒÆ >NI•u@6:¹®…w×îÜ<\r²—ƒ|¨É&""‹ «å/8 —X‹­škn ï_˜ggavË(¬r«³~ºu=Údh_í,9Òv V9Ú±¡G› \ÝrÂÅ<ƒ× LNÚgp× 9ÙDä@d´mu—†œ®v´™Y 6 8Ðx³vì­Z;<_éæ«³ˆºu+=Údè@m°¼K»cæÃóXñJGûcôhS¡¡¡«sx‹þ f'þü•CM69íÉBmï¥!§«íÔWƒMö5^°/mÙ¸ÀÌ£½1r²‰È‘ÈÈI›wê/`ý`vÂÑÇr²‰ÈÈòdniÐAçé´m:t öˆ­Ìh§Aù N—9º7BÌ5 7Ð÷m,«² ËÛ P%Aåd‘™A¯mõª`àÒn/=ÚTè@h´Ïm5( 9tw„l°¯ñýp7Ÿ&ÑU40éôœm*t$5vΦí^÷zb¥ _z´©ÐÐhã!ÚnPr: é 5Ø4à@c8Ø ÓFwxç¦ÓFz´©ÐÔZóTùËÍ¿ ï÷’“MDDÆn€;Ê_pöõø 1×$\_ßõà¨Ód`Jƒf6Ò£M…¤«2´{ ‚ÙGôhS¡#¡—öª’Gë·ž4y¤G›ˆ vz ¥!§KÝ“¢›h|Gƒtn£¢åŽÎmèѦBGRcQí"ÀC$ÚG G› -Ì0¶RoËÝðɦÀ¢[©…èVêÓè@j´¹m¦) 9]ðèþ5Ø4`_ãÇ{ÁJ•Fz¼—~Ti$=ÚTè@j¬JCû6.°ÔÑF9ÙDäHdôDçŸ+Xèèü³m*t õŒ­Î¨¾ü§KíÜsM ô½ƒ)>UWÑù,ásuz´©ÐÔ`5ŒvT0ð i3m*t ô=ÑiþŠ::ͯG› íJý¸¢ 㨾4ätÁcíûr°iÀÆÛ›Jº;"KC¾¹F²³÷ZêÉ&#BnÖäsKƒv6 Ým*t$5–IbM2;ø†¬M¦ÚTè@è =i²%¬ ì*l «ÚTè@j°³î;( 9›-t«„lp ñ}÷BðîÓÒ}…¼¯UO69zSvt²G» ›ìï€6:2/о¯Ê¾ küÒ“MDŽDFSvl•pG; [%ì€6Ú—lb†jÊ_pº§°-@j®I¸¾èaž­ VòúisÝð1]þD>é~aPÍ5 7øËkÝ­ïv¸=:Þ°É+žõd“‘¡G4ùÌÖ«v4°]³«hS¡©A÷Í•´ŠîàüÒnÑhS¡¡g4ùÌÖºw4°ò³µîhS¡©W”Ì–awtºµLΖå&‘Ô`Ó€S‘…w·"ç; }ƒyt+ôyt õM@³5 ì,l°ÚTèHêí8ÿÜEt–>{›í7‹ö`›íÞ+úŽ™ËX+ôörÖ Ým*´?´‡+š©rÂ&×Ò±£ó—¶tt@› H=ŒÚ2giÈõ#^…¥Y9Ùdä@è­Ú°–ŽN³‘¹YR5Ø4àTdáû ­È@Є¢[™…èVèóè7­_‚leÈá>{‹ôí'wûüŽË¶ÙÎü>ÿ7ýoÿ}I7úí7%<ƒZw¢­Z ç­zt+÷it 5æ(eû`³?Ýø '›ˆ‰ŒfôhOQEa í)Ò£M…¤¾/`0Æz*lXo€œl2r ôŠ–iOQE§¡óˆ›ï(RƒMNE¾hÑŠ „5(º•Yˆn…>´~ u(Ú„1 ¾Þ…¡G› íK=‚&i¶Ÿg[8ÛÒÓm*t 4z%oàQoàÒ£M…¤ÚÚ{iÈÀ&Îúäd“‘¡·ÇcŸOÉsq¥!O7¿PÙózd?©ÛpØ&drOh}•öÌUt59O2ùŽ95Ø4àTdáó8­È@Ä„¢[™…èVèóè@묯ò6˜µ}ð6=ÚTèHj¬ÚG÷ŽèK|g m*t ôv—¿Ì\Y°;Yð¥Ø4àHb4KÛ+Ji›¢m*t õ Ty·QEçq)ï6Ò£M†´~ 5UÚ©XÑÙ¢´\)îVÔ`Ó€S‘…¯kµ"çs…~¬ºú<Ú×zº¢UÚc4¡žÞc¤G› H}C¢;¾Óuãæ_ou•“MDŽDF³°´´¢œ¶ƒêѦBRZ[viÀiLJÉÕ`Ó€#‰Å¾³ÒŸ3p:åÄ\q‰G°Î¸*ˆCi—m2t õ„®EW'zöÇó•”—›3µý-›ˆ<ƒ…YÞ¥4¡ÆÞ¦¤G› H=ÆwmOèS[|ã¶m*t 4z=7ïp¬h`M¢Žz´©Ð‘ÔËFéÀ3>%V3|é6 8•Xg`k5N£$Ör'æ¶ Ÿå¯ ½€w‚U4ÑN0=Údh_ëùŠ®ENšÀ·ëVt# ÎÔv´lp 2ú|#ï›Q×ïÓ£M…¤F/šç LÚÙ¨G› Iý:ŒKN·nÚ­›HŒfXŸÝŒ%dX“kl ï„_i+RE[6mEÒ£M†´žÑuÈ9ºúöÜŠN·mÏ_ág1Ø4à@äKeÓÞ˜ v ¾ô›IŒÖ\i§×ŒÚnx§—m*t 5ú2ï^¬è|5âÝ‹z´©ÐÔàeJ¨‹¸4àtE¢}Ïj°iÀ‘ÄjÏTiÐY€Äû¼Ô`•`E·Utþyû‘m2´¯õrE+‚´M´¢ÓÉ)öû&Q5Ø4à@dôInÞ{´ vÞ|¤G› H\n´siOÌ’8AXð¥Ø4àHâÃ)Pò¬uiÐ?u`¯3¬²—¹a?žìÇûÒ‘mBvªw¶ÏÒ¤Ê}®u«Ð$æ¶"Ÿå£/ñÜŠ¢}}é‡6:’*nÃVøÒ€³uŸ7ï«Á¦§ i­ÈiÄO»éÔàVä³à@åœ"¼Í¹¢Ó9²8á­¯²lp ò¬¹ò¯54ñ/=ÚTèHê;7Ó®£ N£PÚu¤›I¼Bqë9ªÜ4.b=Gb®‰¸ÀèkW¼ñ¶¢ˆˆ6ÞêѦBGRC¾Ø”]p¡àK/°iÀÄj+ZùKNc"Ú='暆ë+|¿¡ålÚÔ\Ñéüp\*¾¥Y 6 8ËÇÑ£;–Ü¢ýEb®I¸‘¼T°æ¢ÊM7iÖ]$暈 Œ°ißgEÛ3íûÔ£M…¤Æn«‚=Á¥§[4 ¾ô›I¬ö•nÓ´WN 68PYlˆ* øù‹GK‹56­X6CîðŠN Õ ®ü!,›ˆœ\i´<ÚKtO4,øÒ lp$1TÖãDœ…B¼“H 68Ð}Š7zV4ÑFO=ÚTèHj¬²‡ú¬KNC!Ú®›œJ,t˜µ"g‹ïŠSƒ[‘Ï‚}•×"WÖ±¼bö,Îåû•Õ`Ó€#‘'©é©4à$æ¤MZZ¬)°¸#TËãMœ}5Þd¡›I Õòx‹E§¡m±PƒM4Fã]³¯ñ¼kV6:’úYb™'É›}‘~Ÿ·4ì«oâøæeá.t“Òý×…+^fdo5OwÚz¯·JŸ#ûŽ–À3Žïí¬èìëÝMËwvªÁ¦G"k­8¥'ñmÒbM ÄÕúÊ_nÑF 1×$ÜH^¨€Ê»,*8‹h›…l"p¤1XCå}œ ÄD(úÒm*´/õ¼þõø–œ®C´+Y 6 8x@ à´Í°¢Ó ÚY<}“¡lp ²Ö†Sþr“-š6 I©& Â&÷å쳂6Y<k ¾ô›IŒUöh‹E§4m±PƒM4ž±rêƒ, 8´sS 6 8øp‰†ÆCVtºk8SÚ÷½©Á¦G"c…ÚhQÁÉîAÛ,´XS`q± Ý9]¹ëïß&wòýOÒ{}>_úCô•£M†~ú„ “ó«Ûóð ±bí+¨àt÷§}j°iÀÑ4ŠY¼« ‚³ùÇ» Ô`ß4Þ~ñ(ž¦ :ãaüï+K nÅÒ€Ó¹Ìù+;€M$ѲgL{¡ÓHÅIo;¶´`Ó€#‘µ®‚Ò€ãh…tAȱ¦Àâb';®›ùÅÖµÅY-?º M†vb+ }w~u«õëÎÐâÆ•Ÿ¹é¼ãªÏz®I¸ÞžÿƒE·hôË™ LìôÕïÓn=(vƒô¢›”î¸Ažø­J&¼ ¬4ìÀàsî^µ.hÓ¡ƒaÞYƒZfKNWUÎäÛlp$ñœdÜ ;>×¾ùkî¥×$Ü@Ý­!söÈ: ȽãÔçÔH°iÀÈZ3KùËMBrÎz£¦š€ û€ŽÔ½/.=œ˜Ë¼r´ÉÐÁñE¯×Ïè·°ù÷Þ®X)™óš¼Àé´ã¼&À¦ûGˆÛõ.þz&Cûcîö³þ›ÜËäÊK…ß¶ÈmÙ4Y~. ÿÑ?àìB7)Ý_÷žÿßBooiÀÙd$ÝÈÀ¦Go±À}ö¿à\C£-óóÏú}þoúßðá¤*üø£¿†_zÂM D–£ßœ{‡zPàËmJƒ܉}òJž.h“¡ƒ ƒE¶´'»S·äˆ¹&áaí,«Â³ÄdèhPLàD¯¢) ÊÜP?hìî5ØI\p6Ixï³lp00»Fù6ÇŠÍÂ[”{éÄ5 ×WwÒºQÊ_nòÑhjj ,˜€/t)ÉÀj†’/4™¼ ì{r¤3Tœä>œnÏ´ÓG 6 8’xÇ2zYLiÐÀÀ ozZ8d=(¥Áfë0ʽtâš„Œ‰+àО€ N>íÐbM ÄEÃl¸¿4h`ÂÑ—àhtc2:Ò;Ò† {yˆ÷0¨Á¦¯7°wu’MWWä  þ ‰é±¥õ¤½ü¥¡‡ipš~éJ7)=.¤þB7¼Tl¶Ò/b®I¸¾º³¸J[püÙøª²k l î€v2¢m¹¥A+ÝL £ùË ¿FZcç>º>c‡(º.æš„É æcávßÒ ¡L·ÏÒ{òÊ_ì0ÿ®Ÿ¯¸xÁÇ+.ü©'› ‹ÉÆÒm)›mvtcŠ˜knª®ÔbÐj|õ†ÄÖ=ºUú t ·¶°Wþr“Ø¥¾~-˜…ƒË_2°ÓÝÊ(™¿—ð[r0*V(²àkzó mÕ|MO 6 8’ËhSqiÐÀ`¦;Í—+’Q¦-ë›í%´g]Ì5 ×·-@êò&‹o°þ^¶«³@“¾T®ró¸Íy¿ut-ur²‰ÈÈhѶdmäkÀ:ïÉêÀ6;Rªèð…Ô Nf ]FÕbM ÄÁŠÜÁ]4°áÑ}ç8ú f×M†´žÐrÃêüj7°¯hàW£èׯž‘¬7mЮØl³¦Úb®I¸Á˜Øê´Ù~MßRV¹ùÞ7;»ª{r’“MDD†«´´…³¢¡…_zÂM×–‚KNvAºt­Åšˆ»¢Å´%µ4h`¡iq4Z'2:ÐúVà^ÌÒ ó_Í÷èÞ·ößàÒ•Ó¯bUt´lœ«Ü”p ÜoHýÁ+¢¹ûxÅfaʽtâš„©;ý¦>e7v”†>î2ùÛ*·³Ë‘½Q·¿ i9Û„ìHò‰Lé{ô*7òîNüèZ)åd‘‘ß/ z¹îïWo ½\]è&¥G£þº â~xÖ# ¬éNˆpÂŵ6“ò—›„Ø´)FJ55PÑŽéò— ¨t›7Jæ¯ìÿ–é ÖáöÕÒ ¥QôëW/HmØ,ΣÛ!Ä\“pƒ1q‡Êmôml•›«ʸ©s9ÙDä@dÔQAwymdh¿CÙ—ŽlÓ±#µ¡rï2©àx%â=&Z¬)°¾—àþ@«K¨£ÉdhH¬7 Äó+6Y\C¯*‡–-Òl!· Ü„ðHóóA8ÃäíþµÒGo­cÁ—^`Ó€#ÑUŸ½·jGC!{uU¸ áâ3ž¦`M8;üÙJ3¬¡A›6át›„Mà §ßýšŒä‰kÚ€ºc“hv ª¹&áê> tïâMþÎòS§ÎEN“?†Õd‘Ýoµ5Ì7¿u¯ìZ‚ºWúí¿åÓô±•><`߇nRºû€ýIŸz‹’?ÇðCûbºÀM÷çüMl ,ÀЧDÑ—~h“¡¥¯ ƒ½Î®4ä4foà“ƒMŽ4Æ3{¬—q‡CÑëeì7!Ü#o70áI?Ìû=:)z[OùËM&gýHÿþ_ÓäÂi?’H^¯¢^xQöíð=Uuô`› ÕØØúvn/NÔío8j²‰È‘Èiåü´Ín‡o ÷¢õÙu›‰6ióɇâmÖ}ÒnBx 9lµ`/„ÝÑÐçd¯„í7!' ¿ô„›(޾?ÞGXrºM²W(ÊÁ¦Gã%eÖû¸Ã¡†õ>v›h>CDöN±›o7«³‘ùÃZM69¯’Ñþ”7bðþ”pÂÍÕÓò— }LöbõlÓ±#µÁJ™3)ßn¢+ 9ÝlPð¥Ø4àHc¼RF{7+Údhïf¸ áæ‡ä§a}þF‡ŠÆÏƨ<_À?ÈÞ‚/½À¦û2‡â²à–·ÒpÓývubwõ“MDŽDÆ3ð´wdÄËø¼{¤Ü„ð@s¸~-›¥A#Ÿ†_zÂM3ðè}†¥!§û:{£lp qn: ½s¥#û9ïúë7!<Ð|Ô–†Ò°Ýk‚¿±bt`› žî çýF^‡ÊçÈò´á¨Ü”ð@ô/&Ð5ë ‡–-ºfÝnBx¤9Zô¼nÀÒ ¡…_zÂMÇn×ǯ- 9Ùñù[Rå`Ó€#ñä"í7ªph§§ýF=à&„š¯‡ÀþãΰTô6eˆÛ¾vöôœ2÷ù뾺ÀM 4¼:j—J–†›§!nŸgüäwÔd‘#‘`‘:ÑÁ]ÁÁ6â/ýЦBûBO‡Ò²à‚ÃÒpó‘18cÎÝåd‘#‘ñr$í™ð">ïé7!<Ð|{Ë_2¨¢ìKG¶éØ‘Ú`뀳żÝ)Yr®¢àK/°iÀ‘ÆxÞœöýU8¦Ò¾¿pÂÍAK5ÝZÁÀŽNw¤êѦBB/PA’½Jrçæ{º“Mþú¡&›ˆ‰Œ$i—΄»%x›N¸ áæw¨<†_‰YrºÏ àK/°iÀÆø;4¼Ý¯Â¡ý…¶ûõ€›îk>ƒždºïjN/˜`Ñ—~hS¡#¡Wdg\Ñ]>*7ße¼{ÜõCN69y§#Ë_ö8ü&i›’éRó|$oÌß’/ÝÈ&#GRÃGÞ£3ãF Þ£ÓnBx 9ú0ƒ«úƒ{D¶w½ªÁ¦GãÙ,ÚíWáÐVN»ýzÀM4×{]JÃ~®SïÛî79Ùdä@jÐdO·ãU09Ñ yz´©ÐЇú¼àBÌÒpóØiù¬Åìg5ÙDäHd¸"ÛpfÜ Á›pzÀM4GŸð@/"- 9ÝÒé»SÕ`Ó€#ñTmç«ph+§í|=à&„ûš/Wt+ Ý |N}é‡6:ôׯÎOv‡vßE_ú¡M…„àJ_@_ðB&_A_FüM—Ðð@ó¬8aÔÛÅ~¥!§» ¾ô›hŒ¿;Â;q–ÃE•Ù.C;qzÀM4ßìî²þØÒ_£äKðá'?Ä™ÕÒ 'ï7ŸÏËÉ&#ƒãçfK©Y¡4h ¡-z´©ÐÔñÿDŸfßîÔÔ£M…„FßÅ@ï”+ 9ÝékðÞÀª+ ¾û·R.¾B Ó€£ah÷M…C;8í¾é7!Ü×ü~{€“œö)T4°PÓ>=ÚTè@jÐözu~²;´+8ý†'šìôhS¡¡ÑkÚ|ÂÛ}l¥!§Ÿ¿tnõ/Á¦G׳øÍ]«ù7¢JC¿Ù•/Þ·êB7)ÝßêŽ_ÏλCîZéí†w‡ô€› ö{Ö²ï tq·¢í†.îêѦBGRcy­›ó“ý¡}ÇRÁ'eôhS¡¡X2¾.¬4äìò7œÝ)Ø4`_ã¿q›/¢W8´âÑEôpÂÍ4_F×À*Xõè˜m*t 5h¤7*XõèÖ =ÚTèTha)º•z›‹Ã§¹È¢[©…èVêÓè@ê­OZ- Zøèºn¸ áæw4EgÞ+˜9tæ]6:´UÑ6÷ ?Úè®G›  ½`áµs$x»R¦4ä4XEÁ—^`Ó€è)”.V4°ÁÐ¥Q=ÚTh_êz´5½Ý)Sr:8Pðá'/è–uwG r?>C[Ñóí[rÃþü7ô¥Údè`€ŒXŠìDy£¢Ói~¢¼¡G› I¥Èh—xßö‰ëѦBûôLj¥…Ð¥É4à`dLèQŸ.æV4°µÐÅ\=ÚTèHêC½AôîqiàOîçGΧ:BÖ#z£>ÿ@‹¾ôC›Ƚb‹ß%Sr:Qðá'?àøÃ¹véæ*ØÉNàôh“¡ƒrxµUVÓ- ýØF+¬Gw¡›”î×£+–o?Q²«h „¢Kvz´©ÐÁÍtûCßn€Ð£M…Ž„n Ž*?~²ê­·ßüå>fp]?Þ²¾*Oí÷èhl ¹YÚ RÑ@´J{AôèVìÓhWêáŠ^7Œ^“Tr:¦Qðë'°W~™¾4ð<|úyècdæ%B: M†ȈŽøôŽvq¶Ým*t 5è#e;6v0ð ÙžhS¡Ýmš¾îKp02¶7ªu]u¥!Û8Í>üj´vÄÚ„v4°!²6¡hS¡ƒýþÖ¸ªñRÁF6zͰsty»¶§4ät.¢àÃOÆ‹^Î=7ï<¾Ãüæ Þy¼Údè`€Ÿ.’8œJƒ~R?ýê:B†ã>þd>ñ¾+K6 8ùÏ%½Ÿ¦áùWwø“û9g=ÔŸ=Ñõù|¡åhÓ¡¹h!—õíh :e=BЦBGRCe@ºMmßmTë€6:ˆ@@?ºÝ¶?ù$Ø·+ZÈe‘;سXGd´©ÐÔ7¼LçtWßÜ,B…±Çä„5nA6:P{D¿#kÙÛÑiüá¼âöä`Ó€‘§×¡Hr}niÈÏÑô馢Ówþv@›i–?Y;ÖŽÖŽÕm*t õŒ¢®ÎOv6œCºe±ÚTèHh4‹ìüh×˹£ÓõŸ÷rv@› H}Ðèc½~Ž>µÞàÀ>¾|ÞÇßЗ~h“¡µÿ<ƒôi ùÂ$´Ó_Û®Î"ÔƒmB¶kúG«Ã¬%uG§áÓ݉Ëܺ‘lp0®á“3k ÚÑÀ^ÀZƒ: M…¦¤™ƒ>ýhÑuÃpCsX¬IoG{#kÒë€6ÚÏ5 ïíö"[“íëa€ G«Ó-5¸'™ ¶ôÕ‰¹Õh“¡µÁg\»Í¡;8 èK?´©ÐÐZÕfÝz;:ÝÌN”à¦ØÕ`Ó€‘ß‹ð*wPEíÒ£M…¦¤–Ùm>üj™Ýf/m>áÔ«h`+§zz´©ÐÁ¹Ã ø-ùÒÀó=ñç*‘Û­{УM†½÷—•eæ&;& ­ßÙnCÿ6s}é‡6:-yÑNÊÎ6ôñæD nÚZ 6 Øy¼¢Mà´™¢¢­‹6SèѦBRß°ª%j + øæÅ6,øÒ lp$1š¾¢=Xã -eÐ,=ÚTè@ê/ÀÌN´äž^*ˆ;'¤qO/z´ÉÐÚ`ÛÅ¿ƒíE_ú¡M…Ž„FË.´¬¢Ó-|tVS7Á¤›ˆ¼ÜÀÏwe- ï¼%A6:¼pü„Íf<–àý…¶ÙèѦBGR/R»[iÀi´DôÔ`Ó€‰W¼Ø²8A‡^YÁ²Åè¸7ßЗ~h“¡µA“6ÝE>¢ew}é‡6Úzº¢k’³³ø¾±ŠN·poŠ»)%5Ø4à@dð:÷^оíõУM…ޤ^Ä¥üÒ ·}ÿdÒ>{L´éБØZÓUiÀé&NÛÄÔ`Ó€‰G¼2ä4 Üs„º'=Údè@í LIó.ŠÎY´ËC6:ì @ûûJ¾!оôC›  îµÎèð}„ÆKÞjêæïÔ`Ó€‘ß˾*;Ít쥿m§Ñ£M…ޤ~K+Éì4•½ýêŸû>t/Ù÷`› >J½m¥§1íÆSƒM$>>‘Dy«åù‘Ç­ yv[?ò£M†öÕž¯h €6ÒÌéë,úÒm*t$5ZFÝx¥A§[¹7ÉÝ<žlp ò KyÓîŽ >öÞiÜj°iÀÄ#ꦽJ LÚ«¤G› I Õ²`[iÀÙ4áwj°iÀÄ^ËrîOü-p«B?ÿüø[ m2t 6ÚjÁ[hf´i·ÐèѦBR/h5‹6áUt¶,MÎ$÷-xj°iÀÈ÷;nÐfƒ N7oÚl ›H¼¢i×+ëRªè|Šð.%=ÚTèHj­ƒ­4àtó¦=wj°iÀĸ†õ¸:ᆿ>ÀjÐä8_ßЗ~h“¡}µ´­‚7Ï,hƒožÑ£M…¤¾¡¥Úá¸`“3É}£lp 2–r¥=ËÛ[‹˜kn ïe÷a3UiÀénBÛ¿Ô`Ó€‰×ô'ûßÍÙÿü5yóä“çïô×d9Údè@mØáO[ Ø+O[ ôhS¡#©Ñì>ík¬èt7q&¹ïjTƒMD¾£Ù’›#²{DYÀ·Nx’ôhS¡©× Š5èJw§›7]éVƒM$~`Ù}ÔÙSpºyÓ^$5Ø4`_âû?nŸÃÑÝ+ظóåúÒm2t ¶¸”Yð3Žy¿›Å^ú`M ÄÐ*#m««èt»v¦µoªSƒMŽDFó#´¦¢­š¶ÃèѦBRP鄯mWp¶ ñµm5Ø4à@âͱ>,7Ï:Õ·ùÆ~þùÃ^nÿ=~nF~üÏßû¦øëñèK?´éБØZ«TiÀéD¡Í]j°iÀÄ3øïíþ9t¹ù‹Æwxô¥Údè@kq¸4à$:¢ëÚZ¬)°©¸@,G[è*:ŒV'är×jp+ñIp 2Ú‡Â{îhGï5Ò£M…¤ÖVáË_nѶ1×$\_Þõ Õ¥`[TiÀÙ‡ã\j°iÀ‘Äw0´x8›´;ˆ+ؤQô¥Údè@ë[-xÉ^–- :ðYô¥Útè@ìñÅq´g ‚“Ȉ¶ h±¦À¦â;ê•õ&Vtºæ;‡3ß™¨·ŸG"£E?Úĵ¢¼‰K6:’zþ%¢gºJÞŸ‹Ü¤_zÂM ÷_['¨ÐÊ›Ž*8FiÓ‘lp0¬g¨Ð ûüJN£QÚ™¨›H|°&Š:úKß_ïóü«ðùÚÂÇ'ü¬঄+üÒäÕ‰þýµãžD¤4úÒm2t0¾Åæ’Ò€“À”6Ãh±¦ÀFâ¢UWÚ¦¸ÂÍ2´MQ6:úU]iÏQ§{7í9RƒMö%~\—W¸(y ¾4èiôô±î'·#|ÃnÂ9zÀM $×YKNÃ%Úz«›H|k¯ÃÍÙ¶Ý¥£¢mE_ú¡M†Ž´F—ÿÛçÅ·9Wt6SfÇô曜Õ`Ó€‘ÅnžÒ€ã‰wi±¦ÀâþT!¥žÒ Ýïö…óH6:zʼn7=fh‚о#1×$ÜHÞXß/\GíŠó®#=Údè@ëkœE Ã¥§amqVƒMŽ$+݃ÓnxóŒ¬ÃèK?´ÉÐÖw´>HÛÉ+: ‹¼ ±›ŸSƒMD~@nÞ}TÁIhD›´XS`ßÄ=hðŒ[†ûÕKÍÝnuzÌÛô¸Õéq¿þ7üï'‘=ùÉ÷.t“ÒÝô»¾lPŽäéw0ëŠr°©À¾Ê×+T¥½o;8[6hï›l°»€þã&‡µÓÞ· „Ь÷­Údè@ë[ì_<ï}ÛÑÁó¬÷­ÚtèHì:M –õÒ€ÓE‰5ÙËÁ¦§ÇQÝð»cŸÕ‚áý¡&–Ûê«â¶òžãê¢þåó:4ø»Z)GÉ—ndS‘#QGÛ*²£ÓSWèñJr°iÀÈbÛXiÀÉɇµ¹‰±¦ÀâÎP]Ÿ¶¸íà4èd-nr°iÀÄXþ6N—œ~;Öê-›IŒÖT¯¤£mGç1=íhë€6:Õ.Vg£ö× ø3¢èVk!ºÕú<:Ò-è³- ;:Ý­gŽ{w9Ø4à@dä$¶«Wjسíêb¬)°²b ^iÀI,ÄZÅXS`}qoØVÊZ×*7‚Xçšškn$/X½§}k;ØœYßZ´ÉÐÖXZheðGóiaô¥Údè@k¸õ”õÌïètƒvP×1/›‰<1Û:½c³mšíVsM ԕÛíJƒ~~¸÷|Þ"(› È0øÒ l"p ñº8Ê)HúÏTî0{¦½J^®òñî3w]–“MDŽDFʇN¿Ötõ5F¬ üb®I¸º7ÈjÁ{ +8ÝDh¡l"p¤1fµ =†3Ö§Ì{ Õ`Ó€‰Ð À{ +:›!¼ÃP 68PyBKÕ^\ï–Ÿæ¤"ð…¿P6:ÐzFÓžNh8ú[_ò˜¾ôC› hDt‹õ mØt‹µk l¦¬Ì²W˜/Æ; ¥TP#agäèá9zýÝ®öħaü1Ð<üíNM69ù™-x‡a§¡&í0TƒMŽ4ÆÌ´ÃpÆrÒ¼ÃP 6 8XîÕ+ : 5i¡l"p¤ò¶ I{. ý8MtU÷¡›”î×÷æšàóNRnî¾¢ó™Ã›:õh“¡ýA¾®Ÿû¾ƒ¶4Ø,ú¤~Å\“pSue6¾Vß$¥m‡Zl«î)l$îŠDÌôk•›GŸƒ׺{ œl"r òá*8…•¯4à4þ¤Í‡j°‰ÀÆr_iÐipD[Õ`•'°VÍÛ—ìa˜ó¶C=Údè@ëåuΖÙËJC¯?üs`~Þ×…nRº:/b£YiÀÉNã´XS`£Q½±2Ýü[±YìIwÿй&áênåáIå/zômº,ùÒl2r¤ô œéG0*7BG'¼õ£ 5ÙDäHäm%~ª<ü‚cý‚›ÿàçŸÿàÿþÛç:¿ü7ú×ÜWøìš}éÈ6!;Rs¾xEá@mÌG‚‚/½À&¯¨-ƒ6|VtøÓvO5ØDà@å­‰[xYqiгóùxòï¾_A/ ïP­hà¤B{Tõh“¡ýrÉ{€KûÏî6Óæ3)ÕÔHX€Êw1Wl2£ÜK'®I¸‘ºP¿¬‚×ß•¸+vôògªmù‘ü›uûÒm2ô›Ò'™_Ý–J1ªð¯ƒTn‰çô1Æw9ÙDä·ïwøÉí6m2r0½GÈ]Ã;v+8[7xÇ®l"p00ÆA<±M†F†Ü±[t:èPð¥ØDà@åWåäÓ¡áôãô÷¹blO¾| ¾ô› iŒV‘hwEçÚÅ­G› h-ö啜œh¡k l$îœSùþþŠÍNtƒ¿˜kn¤.vË/}«[›ôÝÙÿÝz‘m2tpÒÑ«ó«ÛSðá#"….þq—ÊÍO ÇQw<ø1‹šl"r0SVÈ`Ä;™+8 Ái'³l"pphØüºÂ9b2t02ä†ÚÒ ³AÇ›€Õ`}•×÷G¾….÷õýA!¡Ë½ ݤtߪ³ÞâãÚPktã†êÍß@¯àíôó¡Ïôü#èr²ÉÈÁ·ÿ´Gå¦;âýêìµî""'›ˆ‰ ÕÞyk§{"m`UƒM4žF¨¨ïlþ…Vœïá÷›¸Ç6=ÚdhÿL£çW·qôá#‚ Þ…\Ñiˆ@{Õ`ý€woâh2t0Á¤¤=8)÷¸Y±ÉÈ7׋¹&áêb§+þb¤ FÄè 6?£M†–Oí•Ì[­*>ÓÏPTnÍNÈå/žj²‰ÈÑL9¦ôE¥¡?œÃ2iè—®t“Òƒ#á+ ÓÞÊ NcRÚ[©›„°Ê /N&CûSò!·)–a´µR 68Pù’ù¾ý¹4Ø, ¡»µÅ\“pu±ƒ1ùNónq¦´?†åh“¡#¥W$J¢Ÿ}¨Ü<â¸;±L ³˜l"r ò„®VgysÏkœn}(øÒ l"p ±Ü·Rtº‰Ð^5ØDà@e¤¯•o~@}¢|ϰ˜kn .Éò7hT0°¬Ÿ7ÉÃr´ÉЩҙ—Çq¦¿ýäVè| q\K¦³ŽÜÊ|–‰¼`F«³S»i£Jv[žYð¥Ø4àHc¨šÆû*8[‹x߃l"°«ñt}¿¸\ç{ØéÏ/ø9MD³/Ù&d»é­éŠ4×ÑM‹;6Û·Ù¶E5×$Ü`@S¸¿?cG_# ¿ô„›HŽ{èvp$­W'þò6Ãh“¡#¥!›¶—ê „Æj(ëÍ ÀÅd‘‘g¨ü@;vpº‰³Î9ØDàHc,_š^rŒ¢àK/°iÀÆHk Ý5´c³}›mRsM ÔÅ"rºËwÛ‡ã¬q¯ î€6:RIHÑ—3ïÜ|qnÓZÅd‘#‘Ø÷ƒïw( zp#r}é‡6Ú×úv…J&t {§Û5[ÖƒMŽ4Fûáfgd¸ëFE#E¿~õ KWÂ7c—†œ(øÒ lp02°˜–î´ÛÁÀè¬î¦Ð&CGJƒF ¸“¶4h`²ý¿Þ&CGZOHÄÞÊ»só€Ãñm.Îb²‰ÈÈ 8žš{gl%%7¿95XãÀñG7ëPsMÃÆ6Øà;yKCN7@|é6 8Ðøp_®ä†œÒWŒ¾åÅ+{]Žì'uûîá¤Û„l·q߸{4¾­í®_³MÈöÇà€TèÖÎ `ÎÚïÞ‹Ùm2´kMÿ‡žÅ±ÉÐÑø¸#Øê`Áð¸cÁŒç F‡˜l"r ò 5 £}´¥AçCF~5Xì@/Þ, 9ÝpÙ»Bå`Ó€ƒ‘±]A Œ 'ÿìÞS´£‘¢_¿z|YATEÿÒÀÃþµÓv…pSƒ¡2c•¶½lçcðqu¶[>ÊÑ&CGJƒE¸o·4h`R²ÝÆ8š¾&ê{t õ‚„ìE†›n]Ͼáh1Ø4àH`4ö@;&Kƒ3Û)> èÃ>èUx¥!§;9{{Ÿlp02¶7´ÍÖ¥¡?Áu3l²•ýŽìºý׳MÈö%oXguöpwTW0°:ûŠ{QH´ÉБÒ`ný, Xö؆UžæL†´°\2|ãYiÈÙÒG_Ò&›iÜ<üð¶Tu©Þ>ñÝÎs4ýÒ•nRz ûvåÞKöo_ò( ùøÃ¿e¿$?Üç'b›È=!ÙHú­›Gד¶û»£šl"r ò …“ÞÒç/#s2Yò¥ÙDäHdÔ3A+:ZòÎ[ÇC›º nBx ø‚yò®Nlí! X3z8ö÷˜h“¡#¥Ñ¤µWŸówÅMZ£è Fóá&CZƒ7÷ÃЕ†œFª(øÒ l°¯1bA£ïš°3ÑÃ)E-îš!æš„ˆ ×®iGsECÛ ¿ô„›(:éµ ¢%ºKmú9•IѦBGBc·x–lwižP¿ÀÃñ{¸×ït@› í{k¦›ºlf2t4>À:"ܬ]è_ £_¿}e½Ì­4ätÿfƒMFd{§/íÚ¹ù.¾:Ñ¿n¨É&"G"¯r¯Già[ñìþÙµyÚ¥ÒnJx$:j ›g* šèö™pÂÅA÷úà,~¾ÞKvû ‹~©½¼%‘¿D› }‡Š·p7é Ö*áþöÒ 8E_h4}÷÷èè#N×¾Š>qmXe?ãÇùŽa=঄û7‡M+XFïI, 9ÏØ«å`Ó€ýq=C>~þz¶ôÄ?<%Ü ]N69õPð” …(üÒnBx¤8”òå»+è>Å´<Ç’MDdFÛàFýÒ „¾^FÓ×ûŽ´Æ²†h«ð üîÌš„*=PÑÀ™E_h4ý¶Ê÷è@kð=øfÏÒÓ¸ _zMvÆ+]•Úý ÜËMžY.Ùãð›ooB‘µP·#ycn|7æ““MFN¥Þ­Ô(4¾JN69R:Û¸¾pV84Qøá—¯è Aïš* Pœ¾"kÿÙJML† ºñ¢ÎðÒ ¡ …_zÂMÔNÒÒ S$Š>üjÌiAßI°¤ïܰè×P;}/Á·è`xŒ !¾6¦4è|®ó—ÝÀhþmž¯Ñ~غLhÖ…v^‹Ȅݖ_Â[rz:@Á—^`Ó€çgŒ£¼d£4ì›_199H¶ Ùþý¥Ë²MòõæW©õèQñZ¼ýĦÿÖ@•pSƒjÅ1«éÐÁüIˆ_xa+Їi/ìrÇ“ ´V4‡ƒôÍm ÅÃôÝm=à&„GŠ£ô´ÿ¸¢ðE~5Tíå/¬©à\þÊšEM69+h+‚¯Ž* ˆãé ¯`4ÿÜØ×è`—| nÚRÿ-Ú ⛜ËnÓWOk±¦ÀÚê=Ÿå/ÚÃQöKä![ö¿0« à‘â¨Í€¾j³¢¡=…·ŠKá­âßÀ#ÅQwm®h`ÑCѯ_ v•ÒWzÜßïû}øÍÃïIiú” 6ò°m·?ÿ|žïÆg^ëß§t7®û: ø C¾EoÍ ðÅ=¥A‘ }ÝŒæßcûj-¬ô¶ZO¿¿ZV–“[¥Ï“ýò>£µºuá[t0üj¬wš¾˜¨‚s}5Ñ}MüåDߢƒá‘ºM÷oxu~´¿×oèmñ>Xô¥ÚTèHjÔê‚ÞÇV4p¤o‘ƒÑü _£ýãÍzE Jt›Ä·h€¬„ó‘ðm\¯áøã¯’î7!<Ð>޾Áãƒ4þ\ƒMDÎ’zçmÒ• í(û%4nw¤]Ò x¤8ê=ñ~·wèßÑÈפªèoÿ)ŽzOX÷Ž6`Öã=_±Ö{ú.« ÄÄ(ºýͺw³Ú¨Á¿ô%›„“òÏ×þäÓè` ê½»¥ao¿Zé8Ö“MFŽ¤Æ«Ðl¯Ù‡Žwl¯Y¸ áÁœDÍÒtÃÈ×è` ¤Û=¾fÛµv4º³ït@› HšúÎ;Žw82áiÇñ?8¼šÐŽc<ÒõÇy¿Û?©?`Û ýêC¸ á¾â·+h˜¡ýÒ;:_«h¿ô?4f¸ðÀî(©à\ú¾¯hÐqAßøõ5:©õó|ŸË‡¶w¶Ñ¥ Ü„ðHstKsŠÛŵ£ÓŒÔ±°rLuyŽA9Ø4`?ú»¡Îcºàkt02R³êW^‘áÏÅtqÐwÖw@› H]ÝžÞÑw­ãn«‡×îäãb­ºp´Û„ìHnØêC{¥w8²²^éù†Ûi¯´h;û؇v4²²O3t›)Ž:X§÷Ž6Öé=ßR/åùΑERlçH¸ áÁHYÀnŒÚÑiDµ8¡šgÁ“ƒMb@ÔÊKÛë¿F#½–‘îpÙÑ@4…¢/ýЦBGRcÈìM;8ßèK›: M…Ž„îp;wièÃaÆ4ëXû‘½Q·¿à/!z¶ Ù¾äz·tùƒ†BVÖå=¸“vy+àÞ°W‘}+dGC!+ûZHx«ø7ðHqÐAÂÛÔ+ØÝi§ú€ßôJ÷¼ìp(de{^ºÀMFÊFtK׎NC×Õ‰‰]g—l°l¨ —ïøŒ ôñrº7gGa+{Ý|´©Ð‘ÔXIÏ1;»7 í` lEÑ—~hS¡¡SÃØnÖ ‡b¨ðÚÈt Üêòôt{<ÿùÿ¶.é·%J÷€›,­¸{Œwù àÑXDýìÃ;Š-Ù§ºÀM_Þª8*rEÛ0íQ–ç²2»ãä6Uôüýüóÿ=_{zü›R·ÿÓÍTt¤6 “%-kÑpSƒ’z¿è2Ž÷²&á< ¿ô„›iŽ:?Ж¯Ò ³°þvuÎ ®­I 6 8YÖîÕJ|ó ä,¸•Xn%> ԥ̷;|‹ÆúÀ=ßq4¯« OM(úÒm*´/5VVYì†|hy_zMN ¡_8©+‰ x'õˆNy'µh~ͼ+¹¢ó¥ F~õŒ¬ïNéZR*ŠOQø¥'Ü”ð` ¤þÐ/KÆã²q|Ê7–ô€›iŽúi辩ŠNãÔ›¹¥|5Ø4à@äãµ?¡å‡i3×2þ–åúùç}ü÷ñþýÿ>¤CUø“û¹>ן=üA?©Ï?àÆPz´éÐ~”=¢np¾¡ä[t0FôåÒ°¿ú[öëw§NÜýÜá‰í/ÙÇ›A£µ F_ú¡M…†x> ¯káx›¾³M6:ZÛ´SpšW ÛŒÔ`Ó€‰³*Þ&û fhýøîù–5’ØÁ¦¸èU1!<*÷'|Xo.üö¨ÂÔ`á± ÄõösÚ´_°öq¬lð[0iø¥'Ü”ðHt¼ºI÷Ç›‘“ ÝwÔnBx ù F|cE§'›ÑÙ\§‡l°/ò„öõóîõ íëçÝëz´©Ð‘ÔêÖ«Ò  E_ú¡M…ޤFLb'®*›À{N\V¦G›  ý€Ž‹³Þ¹Öé Nm|é6 8øûðøž€ ‡"U~øå¯l˜?ð÷šåÛ?ÿÜ’ã·Unÿ-~ ZÙÓÓ(÷9…x¯[âÔÂoOø}ƒºÃ¸Ü”ð·;Œ_?}€U¾CÆyêÎþ¢×h:¦œ“@•î6ê7!<ÒµiÓM¢v©ñÍKÁ¸Ev5Ø4à@äã}÷wiÐ@°J{ÖõhS¡#©ÙûÍR¹5°ldä"ÒJ~.Úã @_ú¡M‡Ž´k?|ßÜt¼Ï3< èK?´©ÐÔ?g(aWiÀiÌŠ‚/½À¦GãN(ºÇ Â¡¸ …¿~ù=mŽ=ïz¯ðè—ÓðÃ/KÙj¶\õUç°UƒMöËÓ Õ|ŠLÈÔÀûE‡Øt¼ 8 ªQø¥'Ü„ðHsÔÉK·±Vt\{i·¢®›ì‹<£÷ ðÆæ½o€·6çè/:”ð@ðÔÍ»Çet+Û|¼ß5 ùPô¥ÚTèHjm“OiÀY¨À·%©Á¦x¸G[±çÜr|ÞŠ=豟îøÈ:¿è˜×ÒÆ›9ß!ÑnBx ù„þ髊N¨ûçéî÷W©Á¦"ÏØá‹6õUpz”¡M}j°iÀÄh=oQÑzÞ¢š£¿è˜QÀ#ÁÕýO¥Açkÿàƒm*t$õ›ÅQæÏ¯ìíWßßçã77Ÿw`› 9-à.ŸÒ€Ó@_zM$^q!¦4èqø­L½-{KýÕë¾a·?á&ùzÀM ÷Ÿ¢&èî +š¡›-¾Eƒð1Àº Â¡°îè7!ÜÏ’ÏÛ ºÒQhJx4\P¥<øsó%s†«s¤ äÖ‚MöE~>&/n\( üxúе\ô€›ˆ~C6yÞYúçâöhcérÓ‚MŽÆ|I'lÒn'lÒz´©ÐÔõ²\ÿ´D_ÿ^¶;Q¾¹¶¾Û„ìHpÈ1÷ᔜž=èÎ!5Ø4àHb4¦;‡ô¾sH6:zBetçPE§!“sH÷û†Ô`Ó€‘SWê}_è·zÀM4_Þk±±‚Ó˜‰66ªÁ¦G?Ðï·xo›ù±GMJ®Î\ÜÑÏ=è…Þ°?à }é‡6:P¼ŒmN( 8ÝÅév 5Ø4àHâ;4Qh×h?ÏC£Î3ªÅšˆ›Z:÷fq"  DÛùù^=ÚTè@êÇ/ÌÎÆ:úaÝ–¸ÑY=ýÀNŽ6ÚWû~¿#ß­RÑi@êLq¿WE 6 87KÑM¢ôC =à&„šš¬ÆÒ€³}–·\ªÁ¦£¼¾Zøä§Ðφ;°MÈŽÇ̨©¿4àt¶ àK/°iÀÄ[_¹´æY808`öᇧyšóýn¾-Õ‹~é 7%<-žEp¶°Ñ &ô<>;¥BÉÑ&CjÏhQŸîX¹cwyÎ:å÷«¨Á¦G"cyÚ}Ÿ‘“9mÖbM Ä…ýÉt“Ûý` ˆOät“›m*t õ]ê²,¹i0r/¸&áúÞ°û}Q‡2&dûÖÊûv7ç0ÝÜ8ég>×ÎmËþùç,Ó;gxìVçO×Lõ€›þvCÖk¾¬˜5íÔ) 8‰to‘lp°$¥îØ/zïÇ&õ$Ð¥{{ÀM ÷E_&Å,D_Ý +vW'ŽvG=ÚdèHmÔìqsB7ñVÑiÀûp¦»›xSƒMD~w>ê|·~õó§]·z´éДÜËíñGûg Úq«Å~”˜ÅFâ¢-êt3hEkÝ ªG› H8¿qÛV¶;G¾qÛv`› Ù¸x·m§‡:Úm«›HŒ]N ÷Ì”œ};¾ËG 6 8øýY0U?Ä Þhq¢B6:zëÓWÞ¯]þ²ƒ‡JÏß ®G›íg<ÖÃUÙ[ô7çdèŸVfг3^ã›^‘£M†ƶØ!\p—ÒŽf-ÖØ@Ü;šF§›N*:ÛaG'1í·œ¨Á¦G"c–"Úļb·œò&f5Ø4à@â2¸ÀÝ1¥§Á ¾ô›ìKü¸Â–…ûàìzîbQáÀþáu'¸Ë…m2t ö +¿9ѾoC|ÞXw÷Þ„¨Åšˆ; ©Ú•_Ñéâ„}O¾lp 2–à-‡,!@;Å\“py'¨ì ›ÙKN÷Ú~¯›H|è¦Ìv<玜Ñ_(°–6Nζä/r´ÉÐÚZKùËMv”zéB55öIæÉ·TöuÆÃ¾ãM?E®y¯Ÿ}Ê=ÞíR_Ã/=ᦄû9¢Çý×éžÊŠ}>Ä9Ì_s/¸&áCzÅ‚ ÚsTÁé*D{ŽÔ`Ó€‰Á»¿PÿqiÀénÍ:¦—ëû­bÇô—`Wâ\ôšzwtÔ; ×Ò+›ˆ||45 â¼û|™ohÚ{q"-_h9Údè@í¤\û…U`g_‹\*£€žl2r$õ-ü¬I`'Q(kcM Ä¡”=mØÁÙW£ír°iÀÄ–²GÝ“¥§ßŽõ{ÊÁ¦£/hÒ¹n×^<ë¥áä`Ó€#‘‘“Ûõ¶c³“Ûö¦æš„¨‹_·u_œðÍÄèÅU£g•÷‡±m2t 6ØôÅVªwp²K³uj1ÖØ@Ü;îñ~¸®mÎÎäºáä`Ó€‘µUõò—›A¬ @Í5 ×—÷vƒªN°÷¦4àìÃÑn!9Ø4àHbÄèÅöŒìØlf›FÔ\“puÖú,žpºú&w®ð|gž®Ÿwæ7ô¥Údè@mmM½üå&û3ëÐRM@ „°”4[ýßÁéÆÁVÿå`Ó€‰wÆh6+ÑÑUQûŒ{cÏOöûËX—Žl²½¨àœJN7jÖ’%›I¼¡k¤ß±ÙVÍ:éÕ\“pu6ï$´X¯Nháæ+ؤ«éúÒm2tª¶ò.ÆVìk` 9‹dz+ùwô@v±¡4à$Nb}b¬)°¾¸C½Gø>;Óåg~’·éòóÏö}þYAÆsÆ•w8Ü×ü¹‡›E_ú¡M‡ŽÄ~ ¡e¶¸Ý´qÚ×nJ¸k‹ûGךJNO(øõ‹o©yòVåØ.ûùg•cúßm‰Îï/v};td›í^÷~“~IÓ€ƒ…äéF›D©t§Žškn îW§ílr³úħ£úº‰}=ÚdèTmå팭ØPdJ?N݇ÞJþ=}„ꮼݨ‚㵉7i±¦Àºw.ÃvíÆ°[xõáM›t¨>¼uú^ÿ[‚]VÏ6!;q–mC}¼¥§¹+Úy¬›HŒ…º´¿mÀ"]ÚÞ&暄Ȼž[þ¸ Ÿ½ÊpG?çݨ½Ë°Û„ì@ïû„¹NÝmÏÛ±Y؈r/¸&áê:š²0×iS˜Ü¢^…£ó´ÂúÒm2t¤ö]^%+ <ˆ¡ÏW÷:°MÈ×úœÊ_n1Ò®,)ÕÔHX­_º4à4,¢Þj°iÀ¾Äã 2[ð¦·óÇð¦75Ø4à@â;Ž >ÓÒ€ÓoG;cÕ`Ó€#‰â?ß-V±Y®NÔáæ™+Ø¿ïNhচõh“¡}µ§kÜñó…=«¢ƒ{3NÛ³ôhÓ¡±ó·ŠÎÛ³¦ìÕŸóæ,=Úthߘ5ÝâO¹“´1«‚“Å^ú`M Æòˆ”NœëwAUl¶›£ÜK'®I¸‘ºùE~§-zÓ»3CçÑë7%< ùx«Ðß߇M¼U¨ ÝÑý$=~šàotB>7!]á@ðä\-ñ†¾ôC› ©Íi›L§]Ú&£›H¬µ”¿Üd'§M2Rª ¨°›$kscï Ý¹Ãüûs?_c29—JÝݳ¸œl"r òŠTUèn¨ŠÍB%ºJÌ5 ×W«„Ñ¥mhÅá ÛZ¬)°´[ŸÏì»=N?·³Ãàðô«q}è&¥ûçìù × ³¾¹ùþ Ï¡ùêÄXnÆ_6:äbDiÀñ²Ïû6´XS`#qïØwœæîÑ 1*ÚÏ´ÒèK?´ÉÐÖv¡ý1œÎÚ£›H|tp,ŸÏíSupl†…Ÿn ÿã翈jXþä~îìžêw;¢7ê°ôhÓ¡#¹7äÕYê¡‘ 'ßñ$æš„¨‹¦D§Eptssó!¯r(úÒm2tªuvÎFoÔm…NϬóàœ†3uäVæ³ä@ä¯t߸ÙMÆU8z½ºn:N6:P{úQyGR'‘(íGÒbM Ľ¿ÙÔeþºÊ‹>gýuØ&d‚]2Idww";•®~“ñmm›Åüt_›˜kn4¬ã+—¾ð€U´Ÿ<ïÓ£M†´°Pƒö€Up²…Ó0-ÖØ@Ü×Í™×KÐÞBTNëo8›ÞxÏ/G á—žpSÂ#Éc{ÿ¥{ÒTô…GI6:ÐzFj²tUÅf» Ýe%æš„© ÖdGo?qæ Äý(úÒm2tªuvZqÊõþ=Äû7L#ÿcNíx¦ÈtÖ‘[™Ï’‘·{‚ž7Ð{W€ u²lešŸþЧŸ›¤‡Ç^‘øxX¹¿½Ñý5üÒnJxpRYߌí2_ØýЦøÑ´F/½@ÉuÌ<Ðë`ô¥ÚdèTë,äðÚW2¡óíûæ™Î:r+óYr$rü²ÕðÇáaéAYÿVƒMTù)‘¥4ôÍÎ8«í3]è&¥ûÞC^î, :,t‰V 68ÞÓª/ã—†Nžó„.t“ÒáÁ |ãdiÈ£WËaÁ—^`Ó€#Áb _¯h P¥«ãz´ÉÐÖw°Ø29‘ûä¯"w°l£/ýÐ&C§Zgá5}÷ëþ ÓPuø<Ã×Lg¹•ù,9ùñ:›ËZKC‚?_ƒQÙËxdoÔí/øë´žmBv$ù+Ñ4£–ýœ2·Ïþ –}éÈ6!;Ò=AÒf„ŠNVÚŠ ›쪬ìx-Gf–ôE¡—Pûê+z½žRºñmÇf¿–í}SsMÂÔ}KJË,x;<´šµàu›îf;î×h> ½J;úY¯Ò?ô(F›  ð}µÅ9M^X·£ E_ú¡M†NµÎ|ïWgíË„ÎÃþãÝÇE¦³ŽÜÊ|–‰ŒÃÙí/l{–škn îzݳëÛµ¥!gy/úš]9Ø4àHã&øVùÏwòs©_äK7²ÉÈÐÓ¡h£º£4t ;0{ÙLëÙ&d’Ëš¥A§gV|é68P9y²é¼£tG¡(ë(í€6:ÐúZi&§9ù+È4¥ÀèK?´ÉЩÖYí™è3¡ó`tqÂÜLg¹•ù,9ùvlÌNÀäåAwr0¡àK/°iÀ¾Æ7¹k°4èlS¡Žr°‰ÀÊèµ(´ËqGE_ú¡M†´nR3[iÀ¯ø_d¿“ƒM4Q[S—™Ü¥¹¢ME_ú¡M†NµÎB öVÝßo˜nÛÎ¥ik¦³ŽÜÊ|–ˆŒ¾SäDGo·‘–†œnÜ(ø¥ò4KÁ¦G¯ÐÂÌGwpºÌ±ÆQ9ØDà@ãôÐÞºG¬³N68Pù–iWÝŽÎ? íªë€6:Òúx@Ù‰KC߯÷O«ÝVè>t“ÒáW´ëdª&O\ÑÊ&оôC› i½]õóŒ>>§ÿÕO¶-V?ÿ|²L ã´7ü~ûÉŸðéC½’—õH~27¼?¼Õd“‘©`ݽ+¸4ä4nb¯7þ^¥`Ó€#¡GlFC÷’Ý›‡ÿN¯Ãê/j²‰È¾ÈÃËs°&Ñœ§¬IT68ÐøÝî¤3ÝUøõwÓYîôhÓ¡}»Ýp›°0’·Û ‡k¿£³m¶SƒMõÖdy£]EçÚh§G› h=»ùãt©ë?}ÍÎg'HÚÉ÷ë‘üdnx7°““MFޤFËßwg€¸‘]E3E_ú¡M†NµÎ<öþèßo˜K÷›†e:ëÈ­ÌgÉÈ3vPY°ßÍä X~å¾4>9!©›ß®h ÚEÑ—~hÓ¡ƒïø@vqþÊ–Ã=%aN‚¿³EN6Ùyº‚FˆÙ«}¸cEG }é‡6:ÐìGs\oïS”¿à4ÞE¹/™oZ°iÀ‘ÂMaZvQ%¯N(¶sï¸?ÄíÆŽb®‰¸‘Ä‹ÔÂXpz¤ M—j°‰ÀÆrûbiÐé‘‚¶\ªÁ&G*?ÀCÐìünŒQÙÀaf_:²MÈ?¼6£±/– ÌÚt©G› h öeÏÎÖíÖm¦Ã36q(Š¢/ýЦBB£Ï‘zF ?ä8<úI(ø¥ó ú!‡/Á‘Ƙk6VpºƒÓ¦@5ØDà@ã;XPç­{îà´qO 68Py}ÍÁý¥áæu%gå\ý‘¬&›ˆ‰ =Y@?.P¹ù^)ZòáC³¾Ôé~Œb»eiÐÀ‚¢/ýÐ&C¿ »öWë†Gû£Ï’ƒ™öt;¿Ø¿Èh:<Ç[(úÒm*´/ô|ƒ<ôýî•› §Ýÿá‰r²‰È©Èé*ŠÞÀtƒæ ô=ÒÓˆ™~a¾A3›á;pôñÀ¹Çgç?÷GÞ”ÎY=ºú4:»ô’wÎÎØ’¼sV 68ÐXîA- :=œÐ¾Y5ØDàHå̳qÚ3[Ñþ<ï™Õ£M‡Äké»*»èÛôhS¡#¡A³oN®è|YâÍÉz´ÉÐÖX> ¾fèß _þ‚Óø 徾ߚÞü•ÿ߃Ow‡òy£hgc‚7ŠªÁ&G'n˜/Œ¢•ìUç¢Ø&d‚Ë-—¥A§ó…¶‰ªÁ&G*geîÓ>Ί"0ÚÇ©G›ˆ}èË^ÎòáÂÒûF¿UúýIÿǽÝ~þ“ÿîÿ{.}Ÿ.¶ªô'ø³‹£²ï둽Q·¿à¯×z¶ Ù‘äh"“vÏVtž–àí³z´©Ð‘Ô›My³›pÚU0|ýYiÈ“3#Ïߨ¦› 쫼€÷!¬ÎÀp«XËáŸx¦ èK?´©Ð‘Ðëwögß^ÑÀ)ŽöƒëÑ&CZƒ/îxYÍ6n:€AOú¦JiÈéYŽ~fÁî™ã_ù}¼ŠMi‡n§g9Ú¡«›hœ˜¾0è.‰ à ®m:t$6j£Ý¹Kû4´Ê›«›¨âðšDJ¾y‹ ¾ô›œJ,ôhµ"§_ov´ð§ ÜŠ|ˆ|LÏ)ÝJ¿“óX—î¥ï€6:Ðzª/QÝœõˆA±4lw~ñòc¶ Ùàès*¼{¦¢è‘vÏèѦB§Rçáï‘À¿"í‘У[©O£©ëõYüˆvʾÀ+Z¡ En_‹³/ºIM5Ø4`ÿë軼G¢¢ÙM{$ôhS¡#©ïØšÄWÂ+:ÿŠ|%\6:’Z3mÑ2TiÀé¹…öm©Á¦_o€Š,pSè Z_Ù6· Lm¶Ñ­ÚTèà Žh5‹vWUt:ÿîÎhv“wj°iÀ‘ȯ~PÅk¥?{?¦O§ð³”èÉ&#:oe{åÝ÷¥açMš}éÈ6!;}€÷èT4ÝÑ=ÚTè@j°HË;Gþ<ŸÅv´qDN69’ygh­¯4à4º£=ƒj°iÀÁ×»cw‰ }z/0hn÷ ·^ÁÀ¼FÑ—~hS¡ƒ/¸¾Îƒ¢ç„KÃþÁ~¬YìäuýCþanxW“MFN¥öª+ëúÜu¶Ô=œ…Ã?c‰Áo:Ÿ"?^GÅ{¥ça4ûÄ…žl2²¯ó„Þ„Ï›Ø*˜'´‰M6:•XüiÇüyÇÝJ}IQÎú+yë§åäeDz²ÉÈ‘Ðo¯0¨œw½ýêùÓ¯fÑ—~hÓ¡#±ïÐ^‹ºÑKN´^ 6 8;_¡–­ò—ë¾ Ár/¸&áFòbWÏÑwîL‡Lq¼·¢èK?´©ÐÐÅ85Mß|^ÑÙ*ô¸:cÎ=w«Á¦G"Ïájñ½lúójøû üÆ^ÖmBv 8¶ÿ¡^Ïò—›®ú´9UÌ5 7w{³Ê_2°ц29ÙDä@æê¿¡M’®tN<à[$Õ`Ó€}‘çëËVüi:}QD_ýEÿôUz´éÐÔ7©ù¦üå¦1(ísM ä^úJò¥!¯OòÇ’A%?†¿äû“Dr²ÉÈ‘ÐZgkiÀé ¡½¸j°iÀÄèU¼AtF³à ¢z´©Ð‘Ôè%L´pFïÁä½€z´©ÐÔI<þ}ª²ƒóÔyûT¶ Ù‘àh–¶ôWt:Ö ßЯ›ˆ¼Äbû@Ûn*8 ”hÛlp ñKh †ÜÒ€ÓoG[ˆÕ`Ó€‰W´ƒöÿU4°wÓ@=ÚTè@êZߦÝ^3z—)ïöÒ£M…ö¥^®hzŸöWtº8%;ß=¬›ˆ|[¡%‰.·VpºÐåV5Ø4à@bìĺÒÊ_núåh˜kn&¯¬:ÜÈû\èG]-[J55öÍ^¤rr‚îxw¦\r²‰È‘ÌòBeiØWÏ`z¾¼*'›ŒIöÉÐÞŒ½%—÷fèѦBRÏhý¶ÜVt 9gßp«›ˆ|ǪR´W ‚ÓM•6 ¨Á¦cvÀ~Ò€³oÇ;ŒÔ`Ó€}‰ïòŠpiоs÷|[6:[[.¹IJW±¥TPaÑgxcÑ«Ù>œ ¨ï+RƒMŽDÆÒõtõº‚ÓyAW¯Õ`Ó€‰G(]› JN·|é6 8X_’, {ÛL¥…T9Ùdä@êíØ®»©¤4äiú=§¶&ý¸Ù[äó¸‘l²ßä>#ÊêÀÛ=åð)ã<ɾàÑ¥Ú NâºP«ÅšÍ4@i*ÈœÑF=ÚThÿjòû}Pϲƒ1rG‹ª´¯íŽyNÍÁwµ©Á¦G"cõ8Ú-QÁéòI»%Ô`Ó€‰µ¥ò—›F‹´©JÌ5 ×—w­×I.Ÿw¨Û·ùùÝ®›wùöDß–ŸKIæé¿Ém+yt¢f|é68Pù^”GßRÉùr¿^=Ä]Ž;°MÈö[~sàíI¾ý”2CCû£“P‘6`h±í÷;…æ jˆ¦ýZ ÄC´_K6Úl×aQϲƒ1‚¶'ÐîI¨xt¿:lß:)æš„ ŒÕ)i T§K'íRƒM$ÛÿQãaiÀi˜H[%Õ`Ó€‰ÅµëÒ€“®µk±¦ÀFâ¢6bÚšSÑÀúN[sôhS¡©áýŽ6ö¡ˆwVu“ j°iÀ‘ÈP¥’÷Tp¶ ñ¾5Ø4à@âÇ3®ë¿. yøý½²žq9ÙdäHh,׉úâJN' íäSƒMö%~\“»Ï{ *z[îW©J6:{À*‰´‹¤‚“Јöh±¦Àâžþü¾Ã¡4Øg&ux·…³ÜK'®I¸‘ºPyˆwçTpºIÓî5Ø4à@âÍà 3Å•œ~;ÚÆ§›H,.–œ,>t‰S‹56÷%Ûøúf§Ž.pªÁ¦»?®W4‡Îºevtzõ²b^FS6 8ù†¬Q}Çf3kUWsMÂÔÕcJN—ÖÊ#›H,®!”œÌ ¶æ!Æšˆ›¼ð¾4¶Þ±ƒÓ=ƒ­wÈÁ¦ö5EèÒ Ó=ÃËÏxIL9Ø4àHä;0;XOóŽÍv ÖԬ暄¨»Õªd…òÒ€“凯ìËÁ¦¯P2.tìàxfÐe1ÖØ@Ü–îa3ï;8ýjlæ]6 Ø—ø¶%šu¯ó•†ìÝÎ}úAA9ØTà@åÛMê°- øêÍó®àhÓ¡#©ÑÎÖI±£ÓíÔI4º> 9Ø4à@äAh-©YÄvÅXS`#e‘ô;îô( 8 €XoŠlp ±¸$Sp±%$1ÖØ@ÜzS±ÌáQòqÓPùRz°MÈä>¼5ýÁ$pº‘¾‚Ÿ¡ÐǧÞO7ÒëÉ&#:/ñ3`ûta«¢;8]ŒØª¨lp ñ}úuKƒÍöiÖ^¬æš„¨+.2–œl#lQTŒ56lÃ/¬( {v7ÔÓ÷lt@›í«=\Áf(üÒ°ßÍ^àñ°«¦ù’ã€5Pò%G5Ø4à`d H5õ5îØlIfj®I¸ºÉM½ûW£kŽÃáÊ[Q¦+ŽZ¬)°‘¸¯¡+¹P¸4d¿Uþô-ÈЦCZÏR+PùËMó´wIÌ5 ×m„þ‡½‰÷PÓ¡£Qqàür†Âþn}øÙôgß¶¿ñmlàg£è×ÏÞ®j’zKNv©¥i5Ø4à`@o7Ü3-¥AÃoâémd¬õWßð »ý ýè7%ܽ'…¡¯½ <^ßSéÂ.©Y¬ÈzÆÅXS`ƒk{/KúÙL &¹ØpPpæÒ -ÖX_Üzu ·Ó•œî~´P 6 ØŸzãuGF¦C#CnŽ( Úï…=oéУM‡Ä*tM|„:aOÔÄÕ`Ó€‰G¤øB[õ+6Û¯i¯¾˜kn îŒt›àþžÒ€Ó™A;’Ô`Ó€S‰ ²ÌyPÙÁå<çØ­Öß°ƒ{Æ*<ümwt0NÄeñÒ€“”.ãk±¦ÀFâ¼—ó'7q%ßk°±ÇùçÖŠA@à&®èqvOQþt<öãɃ9¨g›è½õ.¾õ b“]ï=sMÂõÕ6ó¬4Uøä¯qçhØ&dGŠCéÇêèÞž²s‡ùw¢|´„ßoÇ!r´„R‹É&"G"? ö!Tp²Ñ.-ÖØ@Üͳ,Í$–Ì=>¹<ç?Þ=!Ç)Þ­Åš ‰­ö'+ß–œæèz³l°™–‡zb˜Œ qM±4àp>Ÿ¨j±¦Àâ>56¼Vl¶LÐŽW1×$ÜH](VsÆ‚AMåæqÏ͉¨\?˜œl"²/ò|¸RQÎ) 8]xè”lp$qs Qõ?WðÕ/î€Ö£M‡¤¾w;Eù©4è ótºh¦G›ˆ-.A•œlÖtÉL‹56wBo´ºb³­švB‹¹&áêÎPkµ3ü[*7ߦ'p]-r²‰È‘ÈH;ʉšd§ ]“TƒMöÝ€Ïßîg–xõ·ZɺÛ¿U²þýÿ-ÿ»ûFýŸÔè7%|Óåÿ> ½íÑ eͳ4ìmK]?\ÎÖj;°MÈöçúlV´ApA–~Ú(¥š€¨ºù˲mÊÙUýkP*7_ò'g3q‹Ér²‰ÈÈ·ù0/>œN¿ ±£ÇÉÏÕ?ꯞöãÉýÕ¹Û„lm^ĹßÒ€“@œÎUk±¦Àƒy~ +zg@i¸ùì[œyíßäd‘‘Ä Nû{*6ÛDhƒ˜kn îö.›°å³4訓í^ÇÄýß°ÛŸp³ë=঄’?äagiØOìç”ÜXøz$oÔ¾,ËÉ&#ûR߯XҌηWp²ŸÐÙv-ÖØHÜ7‹®*×^ÑAfùt®]6:»ž¾ £rómûánmYN69yÈ£ÄFªŠÍ¶nÚI%æš„¨;ÞÕ¶ÜÒ°}WÇy7±m:t ¶8»Zp²™ÐÙ`-ÖØ@ÜJÑÍÛ•›®l?áãšé–ãäd‘‘ OX©îÈ…|'¼Tb®I¸¾ºëõ¦çKCv+QçÏ r²ÉÈÐ7(ID÷bVn>ï<û“›ƒ““MDD.Ó8áX‘û)N˜#Ä\“puákšèë0×CbÖéó<!f¸)áä°M™ïUªìð—ŸïVêB7)=ý޳ù¼ÊÍ>ÏP⦌äd‘}‘àE'î{}2]Ù¤Dá—žpSÂ#ɧAEÖ«4è-=Isuz´éÐØÛÝ)º&ÂÒGoæ°àK/°iÀÆÃî|_^eC{ L¿t¥›”ÉŽ$>àV½wœåî·ÒÀo&ç}{=঄ûÞÇŒ$XhgHÅf‡Ú"æš„LøÖ“«³»…Ç!©Ç 8üÒnJx ùIµÀ-w/îÜÐÑN³ÒÓí‘nŽSƒMv¾Ýôß¿ÿzh—:E>òEv+!'ó‘=È&#GBç½.¬#â…ÍVQΡ的¨{ÃReìíÝ/4´v¢ðKO¸)áä#”³A»¡^Ü ô@£M@¥!§k(×·Ôlpðíæl²Åo£¼Q8´wq%˜NpSÂÑsÍO¦¬áÐ*Hf¬Ÿð<9™±VÑÙц{´ã©4ät=äš´:€MŽ4‘Ðíyzq—·œ¨*ð‚S,¢ª@'¸)áNUàI»1H”¹~Á%–Í\w‚›Ì ÄísÒÿK޾æIk|¶ پ܃:q[òówÂT³˜k"n$1˜=CÛJCNw1®c©Ø4àHcè" ´èÅÍ'ßù4öpCs['ÒØ=঄sÆR p‡FiÈÙð#›J:€MŽ4 ÄxÆ‹»LÐ÷„pÓÌD}é‡6:ø€@ºït½ Â7Oà"®ô€›î‹>‚ý¶p?HiÈé<çZX:€MŽ4Æ38|å Ò·ñqÿô»O;þ{ÑMJO…Wµâ¼¸@ZëtŽµÂ¡ùNçX{ÀM >æ„íÜOëv4ΩÕm*t 4Úô‹v”†œ.°\£L°iÀ‘Æxi“¯üyÛ-YVù’AºIéðÇ2ûGúù¬óø2 Ú”³œl2²ŸlhÉíD²y<^´î5'’Í=঄ãûð¸º*o[xx0 ¿ô„›žŠ.³æµ‚›œwÂ+ltֹ¡•Î:÷€›|LÐ@ûÛ*˜à´ÃM6:zˉnŸQòìLiÑ‹wÛÙ÷alØã“=ûQe¶ Ù~dy|ƒN“Þ. :X¨Xô¥ÚTè`h?€ ¼Eç—;ƒeSÚ¹5§w-°èK?´©ÐþœëÍŒOÿÉôq‡ao·/ Û·¶œ¼”¿ Útheš½4‚–†Þ»èôgEkþÔ£M…& VŸæ½-sÚÍ¢/ýЦBûB/ïϪÎÍ ŒúܬG› H V6½ÀõŸTpþ yŠm*t ôðêÐdjKƒ~žùoŸ#êÓùål²ýývùór¦&iXøñX§Kwö€› rtݦ iUŒ%_º‘MDŽdÆj´3§‚åöæèѦBB?2;Çþ ½ÆM'Tô6‡O;‹¾ôC› íK}O;åv2}ð¿§.+}é‡6:’óÙÒ.Ž &"íãУM…„~nÊNáòüæoZœ{ÀM $GCú”~‡÷sú”®G› H}¿)K˜¥á®þI©’‡éH~½“æk5ÙdäHf4¡| ìæt‚O6Ú—zUçÊ_rþ ùdˆœl"r óˆF6tz¯¢±A§÷ôhS¡©—»:}Sömô<7•<ÌGò“¹áÛàÒl2r õ<ÀðÇòЦ"},×£M…¤NûÁöùBç™ÖcOU8éD“m*´/õa«Uõø”?ì'öãã;yXŽä¹ñÝ@ON69úzøˆ’wJƒn©¿²ïýaOvPïÀ6!Û¯<ð¨È'B*XúèDˆm*t0´'q–¬ü% Ú““MDŽdĉßÒ ŸÔO+ß>2VÇ¿â/Õb°iÀÈ3Þ™Ê7hU:°Ã<¼Æ=“w`›H¾äïœO¥Vzè@?ŸKíB7)=~»ö_èµ+ :ü¦§=‚=঄QIÚ·¯átûñ@Ó t[6ÚÝ·ë€n—lfuGg›Ïxuv5o —ƒMDNû{öØ‹I¼¤êŽÎ¿Uí€6:úŽfؼêŽNGÇÍv^VU6 8y½¿DÝèSø“û9ŠªùÉq8¢ëíSpQ´éоÜ7qv²ü“ͨÊÁ¦o-£ºl{iÈÃoø(*ÈÁ¦*£Q ›²®ät¡sî2róÕj®I¸ÀÓ ^˜Ù«—v8°ÄMÎçË,G›É=k½¥!¿æ Êÿ¡'›Œ=£e46M½£=…MSw@› H½BKœ‹, øvHH²§r°iÀ©Ä´z+rº±8Én%@nE> D>VD·•l*‹³©øBËѦCGr§­FçÓÓ;}û˜³8=݇nRz$|~cùÙõ¿êÙu¸)án‚ú_è‚f™ØõŽN×û³Ðzéi9Ø4`dÿ;MÂ+øÍYÁ}™'4_³:k¡/´m:t ÷‚mÄW0«^pFñu5Ø4à@bд͗6rúíœ÷0ü€˜k®/ðX½RªœXiÀWoD|‘ÇÓ£M‡¤¾Ý¥E‹Ò€ÓÉG—YÔ`Ó€‰'ôOgþ+:ûz“·tº™5Ø4à@dl£ÞÿOÛäÈ®ël£žÊé¹áºh~C¹=áþ]iË6#H‘Š— ,àœ' † Š’ezºÕ6®Hƒ]†¸VxÏ6|¤á˜[ôHØê;¼í—ÿ%ÐŒ£õuɸMž_1^¼+°úÙ¸(ü“36ôî=º.Eº:Äi”ZˆFÃŒ­ ïØM ò=%‚m­$Ø ´õpOÃ-î’€«³J¸†[!®×G›ËtÓýB£ \¦ËÀ‰ëÓáýæaD€\›\â% 4ÌØh׫/öVIÀÕß.\EÃŒŸ™ òU>¶úÌ_¼€˜a3ÐÖ>Ã+2$èû4€ª#áiÆÑF°Ï›‡`UpuÄ ×‘Ð0c`#ľ¾·ˆKO·úË…‹Î`—!®ÞÕ9>»_)#a;ƹð«p6m#àçEC° ¸ÚÃE;4ÌØ ñm« tÿ* üp?O'…ž†;}ªÇÐ'A8Í8Ú÷æZ€»«æ$àZW‰×ùÑ0càjˆa…Fâî¯À)ŒbYÞ&VîÒ­2c†UìŠm^bÝZ±K°h¿ÕMõ/puB WìÐ0c`+ÄG6޼Ӆ„­¿SÞ|MÍ8Z/Õ-¾}X÷ ¸:Ÿ„7UÐ0c`£Aƒk‹$`{N‰×B±,#X#¸«¯Œ®ƒ¸ú«…ë h˜1°â͞󾩃[}æoê  6m=àë{ƒªƒú\_þjÅÕAñ4ãh#Øàª" ¸2Þ…« X–¬ÜóV7àq´¹ô‰â?™8#q=¡;~$`—\í(á²3f l´êÑÎ9¾)<Û1±Ä Ï 6m#àÉê?d¸ð¼Þ>Ù«zá²3–ek·’Þ]Ë-áWk k%GŠÂ?Y0c`=ĸC®´ˆpÍË2‚5‚[½Ñ¿½ú¸û\Œj­&Ø ´­€»–Üñ’ÑV™C¢ðOÌØq‹ÑôÄ÷ó¶y¡§ñNŸèùô6 §Gá—dHÀ•/\B²Œ`àâË0$ìîo«V<‚Ë “­P/õ0¾ÓZØñŽp[­`—!n5ºÀ[ e„e”–AÒ2Î_Ðz°÷Ñ·ä —1 \äÂE ,ËÖ îk+UÞ"›ùxsa.g$®æöqw΃ñªQ±«sJ¼f—&íÛ{ßÒ¤ŒKjÁèv¹•=âyåŸ4™a²hø–„}°ŸwÁŠ<=ä×G>Õ¼.3L6B½8r»ø‚ÂVr¥ø!°Ë׈.¸¤H¶¶x Ë2‚5‚{~Exµ Ú1¸yéŸ<šq´ì¡zàþ0 ¶Öï¢ÛÙh—!®]p%‘\éyÑÊ'˜ekwò.°½¸‘ =.zí\Í8ÚöŒÍè ëÏÜš¶ÁaFÁFo/ÂcÎD‘¤Ïîcæ]ìIÚãa¯ê*;Ãf ­®±‡nõœ1¸ØÚd='€vâ­¹|•]?ÍÕz0ÿ¢;«"Õz4?g$n4èÛ0Õ[´Qj­9'ÐŒ£õöÝ«côˆÒ¸ØZoŒžÒ@» q获W[A÷ÙÀ÷sêXèi¹Ó§zü9ÑþäÑŒ£pß>Iƒ)(’ }0ZM GÁ^î6f[‚^Nƒ|.²¶n¨¤àŒÄõ¹±ß<•Žè™‹­ ÑCh—!®Ñ¤ÝÛÑ¢ÝE;zb´h—@3ŽÖƒ=Ü6d¿ß=&ÁÖšFt³í2Ä5¢;y“èp]©ÐŽF®+áiÆÑF°çJÞÑ\X*²þÔÍ•%¸Ì0ÙôæX­„7¬.¶ÒÃ;Vh—!®/ºÖé„ð™ÅK>ª(ã€<´˜@Ë0A[±®½;Ô\ä(ôñ3¾7Ž/Jh˜Q°æúMÆÍõ»¡úÕ§öò]‚Í@[_ ŒÝ†.£“°½Û\ýÇÓŒ£hOŽå`|c¶°µù%¼3 vâêƒÇ=ºÖ|>»xÉõ™%|x1–aþ‚®ÆX“Á®Î.á–n†0¯žžâ~ýàåÂk$èj0Âu4Ì(Xÿù¦ì’ Çáo´{Û©(ø´Þñ2fœB uÎHü-ä-qÙ4]AÊ'  8#q£)NÞL¸ÀTèjÿ ——Ð0£`#̳«Ò­•ä\~síwÚKVEîþ ‚Øekütα:ž>Nî!i×:¶:+&Ø ´Ú‹Ï†ëÇù–0g$®·Â¹;äûé$lc“¡ùµú ›¶p×ÛÚ"W¦9/·_à5!x9´ .feàŒÄõË<–Þ3iG†¯âÂY›¬ßñN‚66¢ôOÍ8Úè9ó_%À'µ ÷Åò&Áf mE|GÆ}¹ç!`9•ÝY%ýæ2pÎHÜ©–¾”$;a| |Ý]´hë§àÐT™âOî¶_ÞÈC´7×[pðgÉ$ðz@üöëÁçWÁ°´$áñØ€Ka°Ë ÷­«¼xA7fÆÑF÷½xí=¾øç®Ý€^Û°º\ûš,Áf ­·¿µw&Q Ëw€­·Àµw%hÞS‡/w¬´ÀöuÍZ¹Åè‹u žfmüˆKýJs>\p³,МgàŒÄõ|¸\Œ:{÷çnƒgNpŸax¹åÝdµL}㆞²1Ù4¿&—&ë½q{uFÄ!6zºóñÈŸN‹4»CÃŒ‚õïøD„­þ€íé \f˜l„>'’ ;åüSû<ކa>o¹ªáÓI®÷Âðñ$¸Ì0Ùˆó^ßåhΕ ^ö Vl®”3×s¥¢WwøìVë %|x .ËP·Ëjã;wQ/¼¿qÙÖ"£}‡#Gg¨n„}xíFÊe/wvõšèù§âÖ`ôüflüvµWëš×Em$©­ £šq´lo-5¼ƒThWo!¥àŒÄõ÷Þêa|é²]>(–£3T·Âþ*0 ®€ ‡F =÷wúT? ,xšq´îÅ™øÄ7/ÛÓRâ'ÿrt†êz؇~Ægm$tk©öEÆ™¢3T7_;]Ýžµ ³YâhÏYÐ0£`#̈ŸøIè®6ÏYRt†êzàÇÞ¹FŽVÑ/yšþVUoÏ]ìùaêù´+\2lÚêÑö>*¸¶Ÿ5ŽÃ€OãHè®vOASt†êꙄü„þQhÿþ%à~Ã=~¨¨4o8àe†ÉFœg|A™~¸Ÿ³ý«LwúT? N3Ž6½8·C£[<—ìé³Òµ+2lÚÆœæÇïe;yý–«{áÓ°â,ºgbhXq¦è ÕIm]á¿*q½ûOçlÛP"!{{Õb¢<g ®|Óž\¾!û Ë·g­pòçœñŠMÑÏŒbíÀ›¡ºøÕ¹¢ ïæÙÓ^v­-ê1OÀˆÝß/öäjqeÚ¼ë?Î@Üh‡»¿0/iÝÕ‰â%­¡ºø¹²›ß|`ñ’õ¡¥ùÄbÍ8ÚˆuÿºœõB8 üp?¯ ½ôúP? ®lñ4ãh#Ü«z@e2º«_ÆK|):Cu=ðKçÎæ–¡KçΈ–¡):Cu#ð·:{Y$à³ÜÝ~ƒË “8ï·;ŽuUò8ÿý„o3D±—‡}¨çPgÍ›¶ž3ðQÁÕózÎ÷H›¶Þ×~—›IÐúáÃö"9žfm{rWm½[¨$ìY?$¥òhÆÑF´gwÁÓ»EHÂv<·—þ‹öÖ`šq´íb#·R(þÜ^úõØ}/¹“ÀÏí¶_Íd^À1am4“Ù]sWÜ)þànûõà‹·nå/Š“Àî¶ÿ|ïܓ޻ÈIw$ìIí—Í…ªšq´1 .ð”Šq¶ÑJÎ-id Œ„툷—~=öæ?Þ2¾tÇ 8kƒ ´mÚzKéá©& úxê˜ÃaFÁú@ÒŸ/î; ãhë±füð À6Zõè?aÞ'¾tG‡\´©ígØ ´oîÄ;¾C|éŽG_µG×ö‡3lÚzÈË«qÀ–mL ͉7žf­»¼¹›tHÀÇ.¿Ù"nž„Ë “õ8Oîý…è¶ÜEw·þÛ˜KÁ‰!w—ê£{sízðèî\ ÎHÜ9|$Aþ©k6Üh˜Q°æÙ½µÝ½hWûˆ¾ —‚37B~®¡€'KIÐF¾Óz6fmÛ½ö  mµ’ör`ÎHÜù¢7.IØúäùņk‚Í@Û 8üh ÛÕƒÂïxçèŒÔ¨/“[¯“ îê¡áurÎHÜ ú‚ÞW#a;úh|?0Áf mÜ»bŸ¬¼lW _”£3R×£¾ö•Ÿ´}Ѽ>>¶Ü!Íxšq´ìúU¥Íe¡‚»†ÃpY(g$n}Gïk’°b|?6Áf mÜ»½?i~Ù®>kž£3R·¢^&ÚKr7¿(Å_QŸªy\{IAçˆ} zºãñÈг§h˜Q°ce%^ž,ºk'StFêVܽÅ÷á¶cþ‰ªI°h[wWâï°\¶§ůŠÊÑ©Qߪ³r{µ¼à®Ù'\-_÷jÚÜ^-GàzзÚÎä…Û­v®ø‹Âm‚Í@Ûøà/!ÆK·EwMDñÒmŠÎH݈ûè_Ú†·… ~ô¢ao eàŒÄ ×Þ‚ú¢t[lG/—nlÚFÀW]+^¼-º«Å‹·):#u#î»Þ*¸«†7†2pFâzÐwxí™}ö#d½ 3 6Â<8ÇðxÕö¤Ca¼h‹§GÁý5–xѶè®a*^´MÑ©q¯W'Û7„ îÃB8#q#èõ²Y{¥¼àç£+ÅŒâ?™8#q+èÞ¼šXlÇЯ&&Ø ´€oîC=±èž«¡ž˜¢3R7â^/œ}±]Qt×Èß®HÑ©«qŸ;|iŽ„­e¹íE¼Ì0Ùu½dÖ\2¿p×4-™§àŒÄ ÏÕ¬¥½‚{鮾®àæèŒÔ¸ã‹r$ìj —ñ2Ãd=Ô}ç_ …ˈ—îj&á2bŽÎH݈ûÐ;›x¸ÖrÙÕæ.µàe†ÉF¨gv.´\º«™„ -9:#u#îøe »Ú\‹O¼Ì0Yõàå+¾ð¼tO3‰/èS=þ€:áiÆÑF¸çœ© =ídT[¡Z¸OÑ©A_Oýø9ﺽäÍûÜþLˆ>ýÕ©€)\‚Í@Ûø-½¹?Å¢§íxn7}{ìÁ=ÌFÏç^¸cÀš”KMiñ4ãh½•”O¤3Ã=.ð,ˆ^o‚ é›ÛnXœlãÇ<ÏbÓ+º#ä~üöè ül$ ÜÑf¥émN3Ž6ZÊæNóýI ÝÑRò+?_[l#æ»>åvéŽÖ²(­E_¶%ØŒ³Õ¢ÌÛä̯ZV›\o+ÛìÏ‚â'—ŠîˆùªýžzÌñ6ãl£­ìÞ„¢aÕÀõ¶²wþ©s *º#æ›ö{ª€lÆÙFćÛ‹@ïÀ4zÝïô©@mãxšq´îÙ?qƽÞP¶Nk„êr‚Í8Ûˆøº»xø´rÁëMe땦¢(pšq´î¥ëݳ}üøÏ¥;ŠV¥UÿdØŒ³ˆ¯ÍjÈ)ò/ª}̳ØÛø°Õóhãw†Í@[ÝUŠà“‚k}~é~¿]‚µhëm°w—‚ÂñËîŽçVÞdk®‰çè Õ°{×øñºøe»=|j"Gg¨®‡}p/—Ýe¶çÑãåࡺv÷Ê3^¾p׳ÇO $ñ åõÈg¹;H’ÐÍãí|ŠÎPÝ <¾úLw5šxq;‰g(oD~¯ßiÕ>¹ŽŽ·ÄÛ'סºøiÜÀg|HÐýí7LJ GÁ®~ë‹T¦tv´“†L&g$ný¼Ÿ x¼‚íh+ÑC! 4ãh=ØsçN]ZÒÆÙñÎòicÏPÞˆý™ M&z "fm{v',-Éâìxsù‹d1‡g(oÄÞŸÅ—G÷£W»Ê_eàŒÄ ïÞDÑ}’ƒ„íè¨á(6ãl=Þ‹ã¦ìöÑr¿=§ÒXâ+¢¡ºøÛÛ˜µ Ú¸¡yE„§GÁž½É¹ûÌ ÛñC†Ï*eØŒ³x;nÈn_‚ÝÓ3Ö ):Cu#ðÕ–›W¡Kõ®âæU(žf­{í¼+¡Í{:Œ„íø!ÝöO¢Í8Ûˆwõ»;ß,úo_ªŭ5ŠÎH݈ûíÕÌÚ™íèžá?žfm{^ÐGhHØúÆSûÉ<Í8ÚŠ¶s¹é?ÿH®w›ø¹Í ›q¶ïóóîȳP$lG;ñÒ¯ÇvÜ.ýE®ð®ñ»¡ —Ã3”7šÌî](Ç+BÅv äñŠP‚Í8[}ÏdÙºÊé„öÓŠßÓz3ÙzçßЗ„íã”lÆÙF¼á• t÷ ÏÈêfl„ùöž¨DÂvü„ñÊU‚Í8Ûˆ÷y[ð $´þS6¿7•@3Ž6‚½Î2\­*tµG†kUh˜Q°æûû— z ÛñÆëT 6ãl#Þ£oq¿ãEO¹ÞÃ/¦áe†ÉF á%tµ7†ËRh˜Q°æÙ¹k(’»þ6IlÆÙF¼ñ+Gvµ•Ä×»p™Q²éõþ^+hñEÂv´ð¢1ÃfœmÄ{ö&|áÕÌeW[Ix-ƒ—%‘^+EÜæuÌEë?bó:&f­»Ç'ª$ìj §×x™Q²é±RÑjέ/ºÞ@ÂÉuÍ8ÚvÆ9Rú.Ø{S/ÏÖ }6m+ä𔕄]ë•ñD/3JÖ#=¸÷"¢ÛìÝÝ)ØF{ ÎHÜùýSI¨óº$tG¿\´~©ý2lÚVÈ wçØÕ¾_ÞÀeFÉF¤—ÊõÍ.ÚÕ+½øO&ÎHÜ ù„?©KBwôKõæi­˜a3Ð6B_ ‘ »¿“A¨E%f¬‡yìý§ÄãG]/ÞÑD6­‰¨uÀœ¸uø2]k*ñ¥%fl„yu§ ‡é.ÞÑDvµý©cIÎ@\úÔWß$n_ñÜ:Ù¾âÉÀ‰AŸzOº>"uÁóñk~èžÍg¤ð2Ãd#Îþ¶ξ' 'ß 6m#àûìjØÑs;\o$у;x™a²çyÚ\qŽžo¸àú3G8àe†Ézœ—Î7P‡7Ü/¹þÐá÷ša´êúåzí‰Èr»‹e˜À‰HÎHÜúì¯ãÛîE®·”ø¾;žfm„[m §{ÔÇ?a{} 3 6b\¿­°=á+¸«'†3¾ œ‘¸ôµóå"ñ3E®÷Æø!<Í0Úõ8z‘xj½}VÀê“ñB\f˜lÄù¼ÛyN€„­Uùâ|C‚Í@ÛøâʳN7¹ÚŽ7ài†ÑF¨ÏU)rÏš„íh#ñ½ö›¶ð­wåØ ;íE®·’øV;žfm„ú¬ ÷OIØŽ6ß÷M°h_VlU˜„è“þ6ÀqâF;ÜkwF´WŠí´âÕƒ›¶ð­œ+¬ðôE{Ê¢µBm¨MÁˆ«=?‚¯Ú“kåð­Ý« 7Î@Ühˆ“¯ÜÞÁ¼äqþÛÖxÛ*ö¾ÝíÛ7»µm†Í@Û wíræRÖe;¬p)+Ãf m|s.gÃg!.ÚÓ/w­Óë-<g n ´^|ë´BÙ °ÿáÎ%gg n4ÄÛ—o!;¦rßyWÊñ*Ù…;:g¼J–‚3×Í~t.ÜÂÇ#.ÚÓ µŠê •ÈSpâú°ÀµÜ •È·~r.®8q£!âËM$ìN9—Ò^$ÃË “PÏÞEr¼@váŽß1^ KÁˆ1ß|ëäø’‹ötK­z=è <g nŒ³~\+¿ Z½fëwçR6€37"¾ÒD®ŽYáú^f˜¬‡zp¾9?ZsÑž&¢VhÕ5rÎ@\ïó\+¼j’?LîU•g n4Ä]ó ']í=ñB f¬‡yìÜÕmÙývl‡>ÿý„¸óF6ãl+àøe7 ¼ÚPÊxša´m÷) ÷ñ+¸£™¸í׃ÏÎwàH Üñàá³@;|Þ `-%a™F¯¶ð†å%žfmD{qo¨»F‘ÀÍÄmÿ=øt¾‰=}Aw<¸Ûþ‰Ûá#z[o)S?¡wIØ“úÜ훤xšq´í~Іîh&áã?Û´xS¶ðQK€m|qçßî3p·}{pwfå>uAw"2ÐÝ<Í8ÚhÝ‹3¯ ì’À$¾©ëµŽl#à«s¦캒ÀwÛ¯ß7lY„\oßñ½<Í8Zo$‹÷õ˜ÀN ÜÑHâ[€^»å¤ì÷¶pwI]Ë ÞöèHàŽ€»í׃'\ØD?ÜÏŸùʃ¯ú¼Âe7.šJ Gíäü.kuŒo޹>œÄ·Gð4ãh#ÖÞ×V[‹$pGŸŒï‰zí–sñßÛõ€ãRØí}‘'°Jwü–nûõà —Y‘À#Õ¦ŒTêjO3ŽÖ›àÚù–~ {t…®·î†Mº›qö[¸_Ï=x:ñóößÛF3Ðiý‹ž}Ëœ†Ý¨Bןºa;*Áfœm´ÀÍ—Ô·¼Úð½m´ÀòÂGBº¶¾)¾å´ú÷¶’b#Á—]îŠÁmë »Û gÜvTÎH\ï™Ûæ-ÞÅßøÞ6šá–7Êî“wD‰pþÞÖc²»ph#¡~جØV+üâ¸YŠÎH]ïAûîlÝuÆÙjkÙ;÷±‚ðÙ­ËvEÜ­ÿ¤êŒÔÕÖ²w“wL ¤ØFkqov‡Ì]¶+âá#s9:#u#êë O,HàæÝã­)Q ÎH\ó|rá~€­7–Þ}Ê |èï²]Í<|•[ŽÎH݈zýË íi×¥[-½=íÊÑ©[q‡Ÿæ$a»~S·þ“ª3R×£>ô >õ"¡»ZLaŸ£3R7¢¾úÓÇxÚ^tW‹‰§í):#u#îÎ=Ò†—.Ûõ›†/ ÌÑ©[Q÷'IñÒ@ÑÏyiA—RtFêzܧÁŸ¶Ç—KEwýªñåRŠÎH݈»ûØö›ªo"]¶ã7m¸{3Gg¤nD}òçIñ’Ìtûˆ^­§ÆK2):#u#î›?s/S‹îúUãËÔ‘ºwøëf$lWOuë?©:#u#ê»??—¦ÛGj=5^ KÑ©ëqŸGÿŠ)¾R-ºëW¯TStFêFÜÝç´Âïo^¶«§ºõŸT‘ºu~¯†Í“Õ¯†¥èŒÔ¸oþS¼B0ÖÁñ AŠÎH݈»û|_øàËvõÔð+À9:#u=êK}£ã‹*äÒùWñ*dŠÎH݈{ùH=îm`tk0 w˜hÆÑÕ`cK2ÞŽ.ÔRŽIÑeÔ¿Ò­¸{—§ZR¯¸l×oêÖRuFêFÔgÿb ^ò]nŸG¨ ‹ñ’oŠÎH݈ûy1=ðd´cpŒ¾6@3޶‚í­´Ô¾w…§¥ö•¢3R×㾺m‡o¨¸l×o¾£"Gg¤nEÝ¿òŠ×׋îãõõ‘º÷É[ h©}­î OKí+Eg¤nÄÝùöfÃÝ)—íúMÝúOªÎH݈zà%…x}½è®ž¯¯§èŒÔõ¸oy¯}mî OKí+Eg¤nÄ=ðšB¼Ò[tW›‰WzStFêFܧʗLÛk_[í;‰íµ/<Í8ÚöýÓ ¨J ÝÕAãU˜‘ºw÷[!-5Ç¢;:hKÍ1Eg¤nÄývSÏ A;ºi¸ ƒ§G«_”ÛòxD{If.ö9KüþóÿŸ»^Ž«g–ÿ©™t‚Í@[o{ç_4Æ‹$»»ÐR$IÑ©qw¿$ÓR,ºkÔŠ—StFêFÜÝoý·,×w÷¢´e¹ž¢3R7âî~M¦¥8UtW›‰§RtFêJÜçÿºÎýâ@x¹þÒ]Ï\®géŒÔ¸Ã`$èsƒ-`FÁF˜Ý'Öà Ɨîj"Ác–ÎH݈ûyÉ4p @‚®6–ز%f¬‡¹w•gç/ÝÕD‚Ùy–ÎH݈»ûðh8K|é®gf‰Y:#u#î ï®Ò?Ü'^®çîô©@yé6…f­G{¸œõ Ýñä½”ÏyŽÍ8ÛˆøýLè¾ø½R$&¢®<øp§‹úû>oà¤ÐŒ£pß¿‚zŒ„îh(£ÖÕ¥O‚Í8[ø8»| èw<÷¤ÅDÍÅñ4Ãh=ÚSçÀµ_yâ¥;ž|Ö‚¢&‡ 6ãl#âö·OÛõÓí#¢¿Y/nU—&qžý#wðXøKw´Ei!Ê¡ð›q¶ñ}wµìðz¾ÀõV^ÐÃe†ÉzœçÀ”ž¸£}¬ZÛS‡<Í0ÚˆöâŸ!ƒ§_ºãÉ7-(jãN°gë_zÿÈ<§öÒO¾kQQ9 6ãl#âÞ€‡Ïîüáõç´òƒrp'…f­G{¼#Jxãþ¥;ž\+>(Ûö96ãl#â«¿·Ž_ºãÉ-*j™*Áfœ­G|Ý㹵ꃾaŒ§FÑ>ß“Àž#¡÷Æ—ÖsoY:Cu#ð›(×Ê'úæqÑMF+üè[Ç 6ãl=âûèÊãû™Ew<¹VøÑw3lÆÙFÄ7øÖ ûÞ=a;j 6ãl#Þ ›¯ôÄíD+ÿè»Æxša´í¾,Bî’°­Ämÿ$ÚŒ³xo=~º'¡ßáR•¡ºòîÂ/Þ«u|GDË—ÒJµ}9ùuúoøß0üWžýÿ>E&g$~Æåÿ>5Èó}ä>) ÛÑ‘Âû»6ãl}è'o:¡%‡êöîe;žÛmÿ$ÚŒ³x/ؽ;z¿fÙîyë”…ž[ǶÉákuÔšq´jxÂIOZ?,Ûž''Ð £õX7osoÿ“°?døØB†Í8ÛŠ÷>¿E‚Ö»ùÔYÍ8Úv?a·¥_òíÀ&hÙ@Âvt÷ør'Áfœmü’³7»tŸå a;~Ëð” ›q¶ïímÊ./‡û]ÙàÅe‚Í@Ûùíˆ,h!BÂvtÍø*Áfœ­Ç{ì¼ (÷9¶ã· ÿɰgñ®ÜêùÅzõ¤­$¾\ÅÓ £X/Þ¬Þ}d‰„íø!ÃG­2lÆÙF¼÷·š#lÉZìcÒ™¡+V¸Ì(Yôý =hÝGÂvüŠñõj‚Í8ÛŠweFh_¯N]¥¬Ñ¾^ÅÓŒ£`÷ÞUŽûÜ# ÛÑqÂç53lÆÙF¼ñ«avuŒ¯áá2£d#Ò³wq_¿Ûñ+Æ×ï 6ãl#Þ‹w«_›‚Ճȗ]ÿ-ã'‘3lÆÙF¼ñ‹`vµWÆ—îp™Q²éÛ[; Õ/=iÇo_´ãi†ÑF¬ïY[mFPÏ×_¶£7ºíŸD›q¶o÷o¯‘»Ú#ã%¸Ì(Ùˆôím4P¡„íøã’›q¶ïÕ¹²ñ¿AÂvôÈð{#6ãl=Þ ¾Ü@®öÊx‘.3J¶".5 »¿í&Ty 3 6ÂÜ{ñÒH±%^I°gñ¼ H÷\$lÇÀ~ñ,ÃfœmÄ_h aW¿xy.3J6"íH*#‹ó7l(Œài†ÑF¬Ý/kj)¼úVße;~H·ý“h3ÎÖã½öð: »Ú#ãŸÌ(ÙˆôíòP‰„íè‘ñÒH‚Í8Ûˆ÷è]@ºßú$a;~ËðÛª6ãl#Þ÷oŸƒÿ{úµÇ|þ/g$nÄ_Ü!aWGÂxI .3J6"½z“Àx9ªØŽQ0^ŽJ°gñö¾ûî©™„íø-ÝöO¢Í8[÷†¯:°«½2^+ËŒ’H{“ùx™d«|·ä‹* žfmÄzu®n–îÅ®µ†•;\f”lEz‡'Q$ð_÷s•¸ÐÃ>Ñó¨ã5žfm„»”I€/ê’°§¿.ƒ{½O3޶¢í]ºÇ‹RÅv Qñ¢T‚Í8[÷Ž/9°«C`¼P—%‘½Ëšx‘¤ØŽ_1^$I°gñÆ/ÇHØÕV_DÂeFÉF¤áë0zÒŽß0¾|ÄÓ £­Xž_±áU¦"ÏÇÏø!‡ŠÓ?y4Ãh5ÔCw^~ÌWIГÒ>Ú“l¼Ì0Ùˆôm'èS »ÆC:|.•>t—æS:x™a²çrnyƒ ü> Àî^KÁ‰«w¯ Ýè-Œ„«P—]ÓÃE(¼Ì(ÙhÞÓâšµÜ]}_ì’볌›þÉ£F¡Æ/wIØÕ^¤ãeFÉz¤}g$Â/.n½i„ß[‚à ‚ãW¸$ìjïËñ2£d#Ò³oõ¢uõ šK®77ý“G3Œ6Bí½õ"¾*¿ìj /Êñ2£d=ÒCçK;Â/s\r½y„ßæH F¡~¿U ·€)¸y­Zó&g$®/`_ó}/p½„¾ãeFÉzÛ{ßÜ>|Éõ‡ŸN F¡>ÏfNzoiÝѽèΡZ÷tSpFâFÈß(>=™@3Œ6B½NØÒäŸ<õÏn«‡O½lz°‚8žf­ÿˆÓy­8pË„=M}QûöÎøÀËþâï_Õ !g ®~;$‚÷Ú“Ëîþú9×è>ðYàz3 øÄËŒ’ß~ÃÛ3¯ð߸Ñßß_/À­l¦ÛYý»®ÁÓŒ£õ5Í´:Û`|¯ Ðžf2hmPï” 8qcxõãÚÇRÇIí=«kí?z|ÉÕ†?{œ@3Œ6†Ø þ32ÎÖØÙ»ro¥ÚóÜ“íìL Î@\ïñ|Öž\޲òç¬öøð©UwC‰[M å/ÙNë=~'øïÈ@Üèó·+SQõxÉØ>¦i®ôdàŒÄ ¯Î•ë¤ ´ê&_¡=eÑZ¢ºo37Z?¾jO.cþú97ìydzÂõ+|†/3J6Ùͽ¸tÿ† Äõþ¾ôð  û>RÁ ƒ 6m#à£síßp.´§¡lZ+T·œ3pâVÄ}ËËøÎ"×G”ø N<Í0Úõ†Þº%A{šÈ®4‘IMpâÕˆW·–®é9½¿eÃIN<-ƒÝNë¡^Ggjßã/´£‰LÖþÔä$g nD|rµíø¹Î®7’ø¹N¸Ì(Ùóú–ïàÚ?}{®È…vÎHÜúîÌãg* íé“ÚVפžªÈÀˆ[÷åñµ«ó5Ɔ#µxša´êãt vuFÂ>»åüṿXU&Ø ´­€¿ýc6rIÐãñÜvÿ9Áf ­ï@oÞ—³âgB íµ}ÜI03pâF ?_¶€M"Ïêé¸ý“h3Î6¾ôðÓ8$pǃÇOkm»oæß™ÿ£÷ν”wà ;b?yâ·ã'«¾·õF¸÷üÀ Üñàñ3-ûìKïý›Å7Ú½a4iÏ­îŸÜ·ý·ã§Ÿ¾·F¸¸7`Ü[è$pǃ‡YŒó].ÿ^Ú‹îÝÓ±{¿•îˆIx£8`‡O@lµŽÝàžŽÝ[Œ$pǃ‡· ÇnvNÇ¸§c÷ž Ü“ðfZÀv²Œ³õFØ÷ÎYmÒ~Kµ™ôþüî-¸#&á½£€>_°ßÒù“¿Tý¢Wïäàßq ×cß*ñÛñCD[ÿ-çûFþ*á‹vŸõ×{IàŽß2\¨öÛñ#9Ûø-ÝçÁü%¸#àáڒߎØêá­q½3¼÷°Õƒƒã¸Í¿öðÛÆ´m»µüšgnõûÏß~?®ÿý›È‡ñ¿A-Íæè Õßʳ·‡÷Ž+î9‚q¶Þ§ÑÛ=Ã{k[³¦ó dŸ„ýË–½ ±mRäizÈ¿æÉ«™\f˜l4‘Ý›þ„ ø[o"³»J¨uµ|ÙÝí+®€Ÿ£3R7¢î.‹…kø—ízr·þ“ª3R×£¾¸ë@á]‚Ëv=yxŸ Gg¤nDÝ]øo\¶ëÉÝúOªÎH]úzn¢`GGºu4í‹‘=Eg¤nžQCÂvý¦ný'Ug¤nD}Ñ„HØ·ëß’è‚O³Ä×_õ\7g$nÅ|Åg$tW/g1):#u#î ‡kIà‡ûù„`¡§åAêñÔO3޶ÂíMÛ̗íêBný'Ug¤®G}»]Ñ KxIè®OÖStFêVܽÉzüøÀ6øÞø‚‘ºõÛ5°… ÝÕb⋤‘ºwo²?»Ql×oêÖRuFêzÔwxÆKzRÎ/u¸Ì0ÙˆôàOÑãËÑ¢»úf|9š¢3R7âîÞ^ŒŸÚGÞ?•¢3R7¢>ù3#­°£—¼Š~.»tÉ+Eg¤nÄ}óçêñ5RÑ]¿j|”¢3R·âîÍÕã'óöÍŸïÆÏæ¥èŒÔ¨ïþŒ4^ö*º«§ÆË^):#u5îSw±_Hè½ÑfÚíäè ÕÕw*§nô/NÃEKwu§pQ Gg¤n4x÷Á mÊVë^¶ç7×ÍÑ©QŸü ƒpáñÒ]Cd¸ð˜£3R7â¾ù—ªábÌ¥»~Õp1&Gg¤^;î°Œùø7~ÎÂaéf؈²ûŸ–©‡õ/Û5ºõŸT‘ºõ¾ó/¿ÂeõKw‡á²zŽÎH݈ûû7|p°KwýªáXŽÎHÝŠ»³ Cå²]=5üŽJŽÎH݈úì_¸ Õ$tWOuë?©:#u#î»].€]ºëW ÀrtFêz܇Ο†Ë½—îj3ároŽÎH݈û4ã‹H$tóSYí°¡º^&÷Ò´¡3ø  ¥˜‘ºÑà²/<ÝÕYã…Ç‘º÷±s§ï ËÕÑ¿(kX®¦èŒÔ¸÷þi;^+º«ÍÄK`):#u#îå Càá¶Õ—Ú%åè Õ­°»ó÷†õêè_•5¬WStFêFÜo'Ä«3EwuÕxu&Eg¤nÄ}‡V­ééÞ»ªÐ—&ëažçããe¢»šH¼,¢3R7â^fQè„ÞýíR§ 6m}a:ùÇ7,L‹îi. Ó‘ºÞÔgÿáá†RÑ]Ï_ ¥èŒÔ¸/Õ…é©ú\/7|‘ª§è ÕÀûϱ6¤êEw5šxªž¢3R7âŽNÀè)iNá2Ãd=Ðëïƒ>~OB?àOþ×D´O”©/dØŒ³ˆ/çq^ÜÛà$è^ï6­ï°'ÐŒ£`o~ò!¡Ÿç¼|8q¦è ÕÀïo'j/ôùäë„Âñ4ãh+س{×’OõÍŒKw †Ú—áÔ÷22lÆÙzÄ·®öy«ö±Ï»+ÑKþ œ‘¸¾èߦÝÝÊãÔ‹îh-»ÖÕÉ3Áfœ­·ò½ó'‡ñc¤E¯?ùÜiQ‘öO¢Í8Ûˆøìɧ𑺢;ž¼×¢¢¨K°g_Áy-=å{Y•ŒÃe†Éj ç®óßáÓs—îh"ƒÖü´³s6ãl#â‹ø#ºtÇ“kßÑQeØŒ³õˆ÷½ød¹tÇ“OZT´c,6ãl#â‹T ïé_ºãÉg-*ÚŽ~†Í8ÛˆøããìˆÙ‡}–}&fl„ù¬¯Cj$ðaü[¿Šç.ô¼<éßo#œ¾VBI Gëáÿ\>î¹2¾{éŽ'× êÞ}†Í8ÛˆøæUâÛÇ—^òE+D¨›Ç6ãl=âóùž)rW„­× Úw33lÆÙV¼WðtO‚V϶ç(p™a²éûµÓȬ»ÀÓ1HíÈ´.3L6â|¾CŠÜ’"a;zbx+-Ãfœ­Ç{™6ôæ ÛñÜáM ›q¶ïµsÎþ­vý¹ã[:6ãl#ÞÃ>S@‚¾]aôV#(öÒ {=ìQŸ#lÚF¼o'Ú@™ [¯}}‘&ØŒ³}ñ†S’?àÏ爊½ wûTÏ¿ 7q¼-#þm„|v¦(þ½V¶c(tÛ?‰6ãl#Þ·óU ÔŠ„íèšñ”0Áfœ­Ç{ëœ)¡Õ„íh'ñâ›q¶ïÛÉ*P*KÂv´“x ž`3ήÆWÑîôã,íU“[FûÛ÷â]ñ¸O°Ý2~ "Áfœ­Çû~l´R#a×»eà 3ÁfœmÄ»÷¦ƒ“÷ì Ûñ[ºíŸD›q¶oüJ„} „3t} —%‘ž‰wÃB§ØŽ_è$ØŒ³x/ÞÄÛ}&‰„íø-ãg©lÆÙF¼÷½@#aW{e|Y —%«‘^î§AK3¶£G†—”6ãl#Þƒ7çvŸJ"a;~Ëðiª ›q¶oüR˜„]í•á<^f”\4r,#m¼5Û¼|ϰe´¿±€/Þådxù~ÙŽ!0¼|ϰgñ^½ËI÷ñF¶ã· Ḛ̈gëñîñevmŒKð2£d#Ò½w9.”\¶ãW J2lÆÙF¼ïrÒ}l—„íø-ÃÇ3lÆÙF¼gçr2^.¹ìj¯ Kð2£d#Òµ;kÚ %—íøÃ…’ ›q¶ï͹œôG'a×Ëø1ú ›q¶ï_v aW{e¼X—%‘¼«›x¡¤ØŽ_1^(I°gñ¾§;U0=éó ÜïÒ ¸xÇÓŒ£`ã—À$ìj—Œ/Üá2£d#Ò«wi_´Ûñ+Æí 6ãl#ÞåbÁ£Û ^mù“ÇÞ›Äǩٶ¿ø.3JÖÃûû° e Ûñ+Æ—§ 6ãl#Þåæà+$ìב:Ø› 4ãh+Ú𥠻Ú'ã T¸Ì(ÙˆôæLá§Å®ÿŠ ‹Ó›q¶ï ¿ô aW[I|Á—%‘^½¹H<«,võ©ã9%\f”¬GzÆÏé$ìêSÇ3¸Ì(Ùˆôï{–Ès$äù˜&äáÍša´jüC®ýŒ Ó"\f”lDzß°GòHÈõæ>G˜@3ŒÖC½Ì=öÌ ¹þÐñƒVxša´êrð]¶ž´·¿Xœa3ÐÖ¾v®¹±á J‘«­¤á$ žfm„ú߃–GHàF¡¿¹®“a3Ð6~Ì\þû“Gçq%àE;—Žþ¥Ò=Íàôý%ŸËsHÈÓÑihr†§Gë­zönºó÷=;Ûž;Õù£—nG"$l³ÂÕ>ü¥è ÕõƲøLÿ$ü’‡Ü{HÐãð7œhw½/Ó¿ßõ®.3pFâo?fK\fMW—9Ë8ÁqFâz#_—þ“’À'}àjo‹ 6m#âgÑÚXHàŽ'·ò­_Ñ6m=âÇÎB$Ý*´Ï )ú[Ø¿ÒÕÀoÝ™êcž„~ßìÇ>Gg¨n~[ॠøá~>ôyÑ˃>ÔãèA‡ÓŒ£õpîÑ+<‡^¶9x5Ï¢9:Cu#ìðùˆž´ëÁÃi ÎH\ù4ÌøöBB7ç‹ö¶ž¢3T7Û.…5ºëáãí=Eg¨®¾¼=m5$ôs¢¶¿ÍÖÐâSt†êFàϳØŒ„~Àæ5CËú´öøj“`3ÐÖC¾vþ1,>ÈÝÕ^âƒLŠÎP]­NmÛùµäáwkC üVø³4ýûÏãwÝþ[þ×ïÿþs4™ÿû™ œ‘ø—ÿ{o{wí®HÐÆ±åÖULÍ8ZíýûÐWnÛiv¡HÍÁÆÓŒ£`OøNIï­d±u8IÁ‰ëÃÉxn!'f¶Ñ{šŠ ›¶ÞÊ'xç$Aw'BP fl„y…÷HzÚ÷_7”$Ø ´õä¶òõGzÒFiFð4ãh½u/ÝâνÃ+ðKw\a°k›ñÚú;Ãf m„|ÞÝ!//½þèk§=º¶ ̰h!”±0ƒ! ü5õàÆp<Í8ZÁWøXHOZæÃðë™[nÎ¥ |0>GjN¦à2Ãä·®øzèü 2LVÆå¿®“4hôxÑG¨û8|äØ ´•äÀ'l#!!Ÿ-BÿäÑŒ£õ¶=vº‘°ÙÏ?d‘×þ.æÉ«Á†Ë “PÏ#vÀþ“Ñ-°ãÕuÐv‰>Ï)4ãhe;!b«ûfŸóë_ºÛà8#q½i—úÈÕ Û¨4®"slÚFÀˇ¹a ùõFjÌFÃŒ‚õ(Ÿ¯) ¼ô¤ë#ºNO¡GëÁ.7²!û" Ûñš~| I°h_ñs0 ¼þbUCê`3Ð6"î¾-Ì?ÓÀOî¶ÿ¼\á‡SHØõ6Þ0&Ø ´•:É/~ž5Eþ˜ ´õ&¾­ÐIžžn§7Àæ¼.3LÖ—![9r¿Íú‡½èeãf?Åmþ¯ûß¿_q3"’€3כߎŸŒIØçï M!à2Ãd5Ô}×豕„]{ìøŒ€—&¡FQô”/‚¶«x™a²èÞ=5†3â˾ÿЏœ8Gg¨n„}C';ô¤]®Ø¥àŒÄõëîŸ$èó„Ãï!LÜ ‚§GëÁÇú«]íKÑ=¯7 ,):Cu#ð 6¯¢'\¿e$œ âe†ÉFœ·„‘„îj$ñA>/l?|O8Šîzøx‘¢3T7ïàÛŽ¢»>žp¤è ÕõÀ¯]½Å7'¿ŸÓÁ%8#q=èÛðz›SÃ'AÏÇöôçJXóÖC‚Í@ÛŠ÷Š®%“°ï{Ô°x‚Í@ÛøyDšô’À­SíézÎHÜú†.%Ó“v´•x|Ûœßqh¨€l5Üc7xƒT.»~Ís|Pɰh‰–ª\ø}Äú|¤xïô©@RhÆÑF¸ß;l ¿pëôEóž‚37‚ éI;ºfx ÿG¯h›¶î?’°»¿ƒ¢°.3L6Býþ;↓‚ë ªöÁO3Ž…6’ÜŸÛj%ñ.Œu“¬‡zšÞŠð_Îï$hc>hÎJð4ãh#Ø‹û ?ñ=‰K¯_J¼Mwûþ¸¶#‘a3ÐÖC>ƒ;äá݈Kw<ú¬=º¶‘a3Ð6B>b'xzÂÕ¯4$%p™a²çuq7íð~Ï¥;šÈ¢5m·'Ãf m„|·¿&Ùž–¹ÞPây žf­Çzü“exWíÒÍdÕš‰¶§–a3Ð6B>½•xQÉ`¡”¾9ÄÓŒ£õ`oç1 ä† û¬¦Ï»ÈÛv—óäÕ`Ãe†ÉF¨á-„­ÎÍ­ 3 6Â|.Si Úñ}„mâ¯w$ÔÅMÎH\=ýÐ÷NÓÕÈÞÍpœ‘¸Þog¯1u/zÊǨ=«uxšq´ëeç—$hO#éµF¢®B2pFâz·èê‹‘júº»¿þãlj«MqêÎOH » {š•üä’÷ñ.æÉký/3LÖCÝO4?! äüî((¥ÂË “õ8å;¬qg%'noÏh˜Q°嵇§€$pãuÓæÜ5Ãf mE|‡'—$ðú“dzâi&´Í@[øèžyÝé=mÇs»éÛcoðt„îxðp5ëŠ m½¡LÝŽ'IÈŽ ÈöI9§íádØ ´Õd>‚Ï ®Õþ§©_Ñ6m£ z7(ÝûÍô¤"wó6yÍ8Z½ÐpšFçD_ð!l£•”Õ$pœ„íˆxxo?Ãf mŒUûx|ÿ øÛ »/¿ç¹¿úûσßÿþ÷—Ýÿß§ àmÚgPþïC+œË:Àíl¶ã× oÃgØ ´õn~º¹¿JOÚñØámášq´ìû˳ I„]ÿRhÃ\œ`3жî\L5”"Ç]fíň¡ºöۻʠ9™„íh/ñ\"Áf mÜ»†€Šíi+ % ¡ºö­G¯“IØÆOÚ¼¼ÇÓŒ£­hÃ÷$lÇs{é¿Ç^«ï‡¶§´kõ½¥ö”6Áf ­·“Õ½LŽg‹íPÂÛè9:Cu½ò±V ×Íå±ïi£µlÞœ<¾*¶£™Ç—@ 6m+àÞ ŽøD±]M<¾ ‘¢3T×þ7ÙàN›’µ­äæ²p˜Q°å³Û¯'wê0Õ~ÆO3Ž6B=ÔN"·Sî3MÐR \f˜l„z¼CSC!¥èžm6RRt†êFàñ vµ½ÄË(p™a²êmvO¿îB ÝÓNŠ():Cu=ð;~I®¶—øê.3L6B=îî6_ÝÕNâk㡺øÍ›«Ä™Å®¶—ø.3L6B½»s•†fÑ]í$¾ÀLѪ«Ÿ;ø2‚}rÐâçýÖñA‹mÛ]‹n<\´ÙZ·RpFâFÈg÷_]úQ†¬|º*¾ÊѪßj››­Û>íj1^ü'g$®‡¼ïýSEx1téžö_ åè ÕÀ/þµV8C¿t×Ç3ô¡ºøá}²Æ¥—îzøpÚ˜£3T7ÿ6Ò ²Æûueç5Á¨¤.3L¶}ËŽÕòùþ©Óßz(®\ž@3Ž6b}»•æ’À=Ÿêˆ'è8#q#è÷Ã^ÈRù%×›J¸Vž@3Ž6bíø"csV>8>jØœ•gàŒÄõ }y“ ÷V »7~ÐÖ·Q2lÚêÛ(ó8bküô„ë=3¼/—& {vÚñÜäº5tøûµ›÷G±ù~óáª;g$®¾}ÑÕ!75.KljMñ~ ¹OsÉõFÞ¨I G뱞ºz¾‹|ÏN@gÒhÆÑV¨pšI‚öôÇ]ë»n<ÎH\aÝúÞušÞëí°Ÿð:#u£1:Û¢;G¹Éõ*^óºûñÉû»SñuwÎHÜø9wxDO{Ò·~Ú“7<Í8ÚŠöÏ­HàŽ'wÛ>÷Î$ߤ¼è÷"2®ñ¡&‹«FdàŒÄõ†8õïµV#æÇq¬-±¹‘`3ÐÖ«óä^²¹s!¸£çÇ“8¿_ l£‰ÏÎ¥f$É"¡W=‚¿ýö©VÌ úvæ[ïʃ÷Â>G•Ýèœx›ö[ç|=ø¾¢ûm½/ð- ZßÛm_†ãiÆÑê;²s9ÝìñŒ³F²»O½4œ}+zõ‹Õ{'μ®=W7lÚzÈײ=  Iسž¤4àxšq´ž[­gM{hŒ„îh(£ÖPÔ ä›¶ÑÀ§‡“°Im€®à2Ãd£uïþ#\ñS…Ew´’Ik%êvf‚Í@[oÝ[7ôùkn32­ÂÓŒ£`ßhP픞võ£¾Ç7x^òíg5„Ë “PÏþóÏñs²EwtÉEë’ê&i‚Í@Ûùyá*´FHw´•Ui+jmO3ŽÖý»+JñíŒbßÛÀ¡ºvw‘#¾­±ß>ú^{ôøi—¡ºö›ÌÒ=ª¦‡«ÖìÌ2†Uóî¥ó•dêõ…vµŠpÁ>g$®·ç¾óÞ-û w<{Ë™Ž$ž¡¼ùs;;ûÐÍ-Þæ™3Gg¨®~ô¨ðÜy鮇Ï9:Cu+ðxG‚¾o®ƒ– 4ãh#ØçÅüØI‰„îj)ñù4Eg¨nþzsò¦:VáÍ¥©Ž•Ã3”7bËúAkg¶£ÑÄ×ü 6m#àÛëjíL·zRûª?g$®¯úø2Ž}üž#r鉆ëm{¹åû  ÛÑ)ã Ï›¶ðévVr›}ûÜÛ´³—ß…½v¯WÆlÚF¼—Ñ9Ž„Wœ…®öÊðz 3 6¼y3ðøZsÙ¼™l|­™`3ÐÖ¾â—$lµ™´/xà2Ãd#Ôçµ¶¨]Aî ü€Í»˜`—A®`üÊ€„]mñõ \f˜¬‡z«ù¡}-³=>žðyË¿y-“3××2ϯHB’Uvµ­ÄSl¸Ì0Ùhßøùœ„]}ìx—&ë¡ÞogÙ«]ðñA ßSàèp™a²çiBNç$ÜNMÙ›¸Ì0Ùób÷”æebëM#¼N„Ë “Õ8¯Ý°b—$äñœÄ‘ë–šq´kp†JO¸þÌá¬/3LÖãÜß¾LI•HÈõ§çw 4ãh#ÖèÉ…„l|«ªqBÄË “@¯ 6YzÉ[õƃæEè…ëï³\ôïî‹>Õãè?#œfmü›oÆ ¯ˆ.¹ÞÏÃK¢šq´ëaر)ÙŸ<Ž·ê(1 ý€?Ÿ+'úþn߯o–öO¢Í@[ÿ1Çéí<hª)rù1?´“æ©.3L6}%pµíðyÜKw´‘Ak#ÚiÜ ›¶òóŠàІ=ŒŽr…ÔÞ‹\ûu…”>˜$àŒÄÕ/†DôIÓÕ†8u=g$®7ÅévÓ<ìè) ÝÑ‹f­i‡f3lÚFÈ'g / ÚÓV­­èOÀ‰ë½? ¯š®i]§yÆëŒÔƸ{3Û–ÃÄïèH›Ö‘Œ¸'à Äõ¨Ï¾ ^²r7õ&ñ^ÛÀɰgëßkúÜÚ.À:_×Ô uFêF#œ{pE…­ŸHk¯áiÆÑV°)¼ThO+éÕ6¨î¾¤èŒÔžï×õÙÕÝ’yñ&摺ޗó8òH1 {þÛ3‡„N GëÑ^çùÖζ¡Ò„À'ßðƒqu<Ùzw.^J\vw[â9:Cu½Áô“3ì …n4˜Û[ $ä׋ʅ®û0>åýGuÇË “@»ÓÎð’ó²]­;|X Gg¨®‡}pgoáóe»=¼dÎѪ«…ìmXÏuÐf¼9:”®tþª¿ÿüå·å¿îÓðߢ÷ÿ œ‘¸ÑÝ W¼špá®ßÔÏÿäò å­ÈOès¥$l½\Þ~6Ãf m|_À[$h³©´nÙ¤àŒÄõÃŽÏ¡Ièæ5~íùŠÎPݼw5ÚPi½pׯ¯µ&ñ å­È¯è#Õ$lÇð> ža3Ð6¾ ßçëzÈ·ê#_¬dRt†êVà½u£.¼³páž_µáÔYÏPÞˆ<üÜ6=iGO 7O GëÁžÆÙ=¾Ä—ìEwõÑø’=Eg¨nÞ]fŒoÿ]¸«‡Æ7“x†òVä½KSÿ±p¸£³Æ´§à ĘW¯ l/LÕk¥ÚË 6m+àþµiCí«ð®Á±¡ö•Ã3”7b¿{7K㇠.Ü58Æ-'ñ åõÈÏ]o.ƒÜl5Íe°¹¯gÍe0n}\°ûƒ$äAíHÍ{šp™a²èÚÇ%Ú‹/φX“Q¼ø’`3Ð6>ù‹/ •ÆÂ»¦¡†JcÏPÞˆýüZ˜"ÎŽ‘€’ yÜ /3L®Æ» ƒ}žwù­“B71Rtôït#ð{®‘°£b¼Ð•`3жî.uµÔt ïéH-5Ýž¡¼ûçƒ@[$tWOoc¤è ÕÀß.†B•ŒHàŽîÚPìÊÀˆ[1w×^ZŠ»…wuÕ†ânÏPÞˆýâÏJãûËýøn¥³Æ÷3Rt†êFàÏÃM¸ä—„<ÍK·%u±‡ùnß.$U×H 6mýÄg_\{5m«©½X¿Ü¾y0AKõp™a²þ&ÃrÞ"„ühëÝ}íÜ¥‘–*wá]³DC•;‡g(oÄÞQÎýbo§ð®‰¢ao'‡g(oÄ_Ë$aWÇ™x.3L6Bí(06oæül&ÛÇѱ}3'g$n}ñ/ÔJÞ…wõΆ’wÏPÞˆýŽÝ“¢'lÍÕÍixšq´êÁ9ŒÇ‹¯Å®‰ñÒ+\f˜¬‡zsg¡Þ=éYï0ÍëB¸Ì0ÙŠ´?íìâîÂ{F¿–wÏPÞŠý†^È‘°m&¼ÔßЬ$ðê ÒPÆÓ £FrÖ>¡oÒ’À{k¾l~8g$®—Xþ-QÀ½‡q´ÑVVÿ†\Ã&Bá]ÃaÃ&BÏP^ýî}±¥¸Ux×Ó7·rx†òFì÷[A³¢ a[¿kóB(Áf ­|ïÎOÉA‡vø=¿€MJ)8#q#è÷Wè,—|¼Û2È–šq´ëþþ:²`{Éõ§WlhÆÑF¬7…,|šðÒ‡óZòþã_¨ììñ'ÔÆ`3Ð6B~¥YȺäzC W²hÆÑz¬‡~€/z¨¾]Òš÷\öÙ+Ï[çPyO†Í@Ûø-§¬„îèò›ÖåÕ¹!Áf m…Ü—õÄkM]ï™ñbS†Í8Û·“v§/y›à™7 ¼Ó+©Í+<Í8Úø!÷Å=T…5^º£ËïZ—Wçù›¶z¾nûóÓZgAÿót<žüoUïÿ;ÿùËOóÓÿ†íj+ÿ÷!*8#ñ3.ÿ÷¡)ŽÃNÜ^ôä_;Ä5]|½¹Œ½Ö\ô)"g ®-ãêLiý“ÛŸ=uþ+~˜äâqÔ kÛ)8qýf÷lѰ |ñŽgÕÀh›À)8q#êî½ è1‡‹î¬ mÿÉĉ!/_AN£$p³,ÞœdàŒÄõ`ö¿¯Ö°/yñŽ>ª~üVÝ•LÁˆëM}ð&6 ÚÕG½øO&ÎHÜùâN^6/ÞÑ\fµ-j[À)8q#ê÷ ÐÑiøá~~òBË>Õ㨠<Í8Z÷R¿¾=o)¸YÒnÎ[2pFâzÐ×ÛŠšýIàfi®9oÉÀ‰ëyËZ¿»}-¸«½„çÐ œ‘¸ÞÒ¯Ï3âöTéIßûl+O3Ž6‚}}€·-DÂvp™a²êÑ™¶¬{†Ñ™aµ¬{2pâFÌñI- »ÚTâ©8\f˜l…ú~ø ³oB?ÜÏëµBÛ¾]¡¬7n8Í8Ú÷æ­‰5¬z îè“ «ž œ¸ó¿z aW{f|Í—&¡÷hÛzxáŽ~¹+ýRmÜxšq´îÉ»ÜiX_ÜÑ'˜8q#æ+xÓ›žòtžnÕ§ÐŒ£•­ú_{s.sZ–ó¯ ƒ-‹y<Í0ÚhÙ»w¥Ó°wïz¡a!Ÿ3×c>•]5Ü!k´ñs¶ O¡G[ÁÆ/ˆIàÕŽÙ°ÇÓ £h',HàÕçnXèài†Ñz´çaòÐ õÀ"gN-âiÆÑF¬'oZÒvß¿Ðkµ‘†¤O3Œ6¢½®®–/¹ÞFâµ@<Í8ÚˆuB"E¯¶‘†O3ŒÖ£½ 3ú„) û—ýüµé"OÝ]>Ì“W“?¸Ì0ÙõØc«i$äzwŒ—ñ4ãh+Öµudóšf©fðÍk<Í8ÚöyÛp„­ÿŽí»7xšq´ìÍ•d·T£ ]í-娛q¶noËöÖäé;ZHx 3 6‚|+hcŠ $èzÛh¨‰$ØŒ³pï®D¤¥&Rèúc7ElÆÙz¸·qÏê$èNIVÛ34Ì(Øóä›ê!…®·Ž†‚H‚Í8Û wåI{ÒWh½Ã´'}xšq´ì£ÓàÞf¡'lüˆAø' flyCïP“°‡íoÏ^ù¢ÿš¾ô½¡^[èú ÖP°M°g+ŸÞ;ì ÿc2R×;þÞUN‹µ/¨ í˜ÃKj<Í8Ú¶3ýkض*´§•¨_ùèÕ=Ù‘º>ÒôY}vuOoŸ¼ÎHÝhŽÎ1±a¤Ðž_Ô°¨{ ):#u£9úõUÓ-ùügÌx‘ºÚû¾$AkEŽæå+fl„yF×ýéI{šÇ¦6>=Ô 8qµËpõ냖 ýÃÝé¡_g¤n4Å¥–|6–Q.ÙKë(x™a²辫NkÎò/º:PEs|8Ì(Ø ³³¼ß7»lGOœ;µŸkE>¼ô^}v­(Ñ÷½7èŒÔö8;‹ñÅËö<¹Z´Â^ŽÎHÝh~]-Ø ²ôŠÌâÍ&:#u½=Î=ÝøŽ`¡=Ï­–­ü‘‚3×Û¢WëƒVûø‡{“ÀÎHÝhŠè4Ž„|¤0ñ» r­;³¡ø6Äe{‡Z£´úRŽÎHÝèñ~]­ÑŒ²±Èß»ã&Ÿ}üë’À½Â\þ¦ßàêþÒ¿ÿ±;Iôÿ¤ŒÔAÀ­öÆH莰ûñ¿G»ó˜ìò¬M=­¯aÀaFÁz{w=Ü¿µDBw4ø®X÷·>âFÐwIÒ¿kEBw<º=ú¼c×'­GáŸ,˜Q°Ñ@VïÂ!°ÃFBw4øæ`oU#p+èîCAêLü¶yGBw<ºÿ{ôipç…þݺãÑö•üx|ëíeݹ•뇄îxt?~{ts{³ùþ‰Êù5SÐ |¼Ì0Ùh"çGLQEî‘oÀ"Øe«¯Í¦Û‹÷¨©Œ¸Ñ4Vw™ºsoùPøÑøëÑ7w•Ú¿'CBw<ºÿ{ôytWdý$tÇ£7ìɸñ–£E\oêóèM¬{&$tGÐýøëÑ7w9Ï¿÷@Bw»Ü¿ÀøùãÂßThsx†òz£YF÷|êß4 ¡;MÃ~‡o9BÀ OîL@7ÞJã$tGÐýøëÑ_W!NŽÒÓ=uEÃŒ‚æá.×4l>Ü5žøùŸ\ž¡¼¾.Zvo&êÏÿˆëmfí&WÇ Ÿ”,p½‡JÂe†ÉFœÝ¥±†}Ÿõvóe­u7ìüäð åõ¾¹NÞ¬¿áD#7ÚL9µƒÚI!ß#ŽÚýÁÓŒ£P»kO ;„ëíúÎZ¿”—Ä3”·"¿c-ò4ÿÍmÚ‡8æ‡}û‡œ“mÚú©¾+¸zx|=?܉´hSÄîìý-ǯ¸Þ{¶avwΆHá˹Ñ]Éáʱ‡nÞГÝþö°ÞÚy—î¿>w­¶r4Ì(X­ÜrÿYVwd7w¾áÀÇ6¾%*È#9^/¼xW?Š× “x†òFìÝ[ØñH/Ü5@Æ_!MâÊ[‘÷/ÿâûï ãûIÞ’à y€/3L¶=ëH$èÛ}ÚoÙ@±—QØëaÏú‘“›¶~ܤ\¬í³ªì£¿ÜReÏáÊmÝ}.ÁvŽîúaýüO.ÏPÞˆüê¯Ë4ìêÞ55ìêåð åõØO½¿ÆÑPøü%·–ÂoÏPÞŠ½·Æ¡æHê‚îúaýüO.ÏPÞˆüíe2Èê$ä_Tyî²—énêùÔ‘&Áf m…Û_iØ×+¼kˆlØ×ËáʱwݺàîR‘­>Ú¼¿”`3Ð6½ø‹a •ëÉ_çl©\çð åØû¯zhÙ¯)¼§£¶ì×äð åõØÏgµ ·k@BvuW§ý“h3жÂí/4T~gq³¥ò›Ã3”7bï#¾e¿cÝ ¾–ýŽž¡¼{÷+ÃÑë<.Úì¯Qü'g$n„|õW*c³¿øÓRËáʱ÷¿¨ÝR.¼«³6Ôƒsx†òzì—ap5Ñ»l.ÚÕa£w¿¦àŒÄ­ûO %±Å_†h)‰åð åØûß1o)ÞÕY Á9©QÇõ œ¸õÅ=¬7©¾xdz«§ÔÕ)8q#êë†OzIèeÒè° {ŽÎP]MØÇÁ=Jñދw4u‡]=Ô›‚3×›û°ú‡öø Ç‹w<ûªF;‘‘‚3·¢¾€÷½HÐ5~µî×¥àŒÄõáe<_ž‡ž$ß' ØÙÆœ¸ÞÌÇÁŸÁÄÏ6^¼£‹ª›_oøO&Î@܈úÚê‘Àí%~Ä.g nÅü¶{ª‘À÷óÕn…^ ê²PÿýêêO3޶ÂíÏã'/¾Þƒ¶NíûÚy€œ¸õí¾yZ^Ðé/ŒlÚzÖr݆´ª[°áÛmHØú»|Í—ò$ÐŒ£õ>•k ‘g/IàŽùÇÿdâ Ä­˜oî™3\F/x}ÚzeR+\xšq´îÑ¿ÞÒ½xÇü£oçhÇ.RpâFÔWïâÓîèžñÓ‹)8q#æ[õ~Îö*KÁÍÍ¿æ*KÎHÜÈWüï6½xG'Uw¹Ô£)8q½©ÏýÛž®¶Uð{Ö«meà ĘÎ*Kà ¼þƒ6œ^LÁˆ1¿]û‹ª‘À­¥¡²•37b¾ èÆ$lã6™ÖsÑ 4ãh}þœ7ç 4pòîè›~ü'g ®·ðåv×,jíLwô͆UÎ@܈ùè\Žý‘À­¥áÀbÎ@܈ùûÉÜ"ty?‚[„fà ĘïÞ,Ñæîh- §3pâzÌÏ}>èꙞö¹¼>gCÍËþ›¶ž´¬÷¯¤bÞù#aìçZh‘·é.Ÿê¯¯äp™a²Õ¶wç`Õ°Ò¿_‡4b×ùxša´íÛ½½¨•2 ¼þS¶¬ñ3pâVÌÅÏ Üb.öxtËÅÉ/ö˜3pFâÆ> àS $h½ µŸ]ÁÓŒ£>y—øþHàŽ«áUŠ œ¸óûÇ~1¯“°³ýüy¶WSp¸Ì0ÙuB¥“^ë*´xša´íÍY»j©®›³ÔR/ÌÀˆ1ßðÉt}Þ‰ŸWÁÓŒ£­`{ …þÉHàŽÞÓð \Î@\ù–PV&WÆr8žfmD{t–e[Jáw „ ¥ð œ¸óÙ[–õ¿¯Gwü  ofà Ɲ·Tß$îç9¹ÐÛò õøj¢‚§G[áöV v{ ^özð4Ãh#Ú{¥`ðÍ>϶;—T-û<8q=æ{ç-¤¨³²þârÁ?¨ÿÉĈ1O¨+“Àký³¥ާFÑ®ÕÄÚë²…ÖÈöº,žfmÛ[Ji¨Ëî“· ÑP—ÍÀˆ1Ÿ½«{ÿKÖ$pÇÚðzxÎ@܈yBá^  †xša´íZ¡¦½XXèú`/âiÆÑV°½¥”†baÁý¦¡X˜3Wc>u½³”x^ÿA^ÄOÁˆ1zðiôqÐ`ÀʰgápˆmL­u«šq´lgݪ¡~áÕ‰>^ O FÑž½u«x!üÂ?e¼ž‚37b¾8ëVרIàŽy'þ~ Î@܈ù‘tï#¡§ÜÝžvJ†Í@Û ÷äJPâG€.º>ÑÇÏeØŒ³p'ÔðIàÕÙ'¾÷@3ŒÖ£ÝwÞB¡¿zOwü”~ü'g nÄÜ{{gàn¸cæñã?™8q#æÃêÄÕŸS=tÑõÁÐoÿ$ÚŒ³p÷MHÐÇ/9·zà0£`+ÌøÍxuÖ‰oò$Ð £hÏÞŠl|ƒçÂ?e|ƒ'g nÄ|y R¨‘Hàýª4–‹ÞÖ;}˜Å×gJ8Í8Ú÷æ+ÆÆY]t}º‰Ÿ³Ê°gá†oM‘ k“Nx; 3 ¶Âì-ÃÆ·Ò.¼:áÄ7Òh†Ñz´‡ÞY†mÙD+xý§lÙDËÀˆ1]5ª†ƒl]ÿN²eØŒ³­pÏv ¶ù±‹¶j™Í‰¥àŒÄÕ׺§¡v›Pû¾e¡Y¸yßO3Ž6ÚwÂ~ ¼:V5ì£ái†ÑF´g ¶e­àŽi§a-g nÄü¼(ˬڷцÇ-\=v-g$n}saÎj^t}¶Ö̰gëávHHàÕßÒOÿäÑ £h{ï­nÙÕ½·?·ìêdà ĘO®rUËéªB×;fÃñª›q¶îÙ[Gi(€¼ú[6”¿ñ4Ãh#ÚΩ!pÂôeï¾zAËB×`Ë›q¶þSN …%xí·l)ˆái†ÑF´á‹nô¹l@ Ð0£`#Ìðóe7z„שHàæºÍ¶ œ‘¸^a›&ßê¬á(A¡ëckÃY‚›q¶Ñ}j'$ðêèÚPóÁÓ £h;g÷ÀAª?{î|«†ÍÅB×`Ãîb‚Í8[ÿ)çGYS#«øaûx±O{é.g$nÝ{WwKucöÝzÝRÛÀÓ £h—f®s'!ÛhAù'Mf˜lÚ9Á½ìÙ·ÆnØB+t}xmØCK°g?åyN wÁ0 ÙÑþ‚—"ãe†ÉV WðÑFô¨­ÛÛÏcÂe†Éz¤ôᘗ|{c³ÅB‚®?¶ßþI´g?¤wÜóï ¾ìÅ·úh(ɺþØ 5ù›q¶ñSÞk‹˜ú=í’Áƒ~%Ø ´õ²Ôêí—þͲ—Ý»R´–ª|¡«ÝR–O°gë}gvì„l”ü[—5p™a²è3u8Ú5âU6ðqðu‚¾}—&qvfhþíÈíÊÐZŠÃëâQ[ªÃ 6ãlã—ÜFìJŒ„ìèæÑÕ#\f˜lúöâ âõ!pµ›Çßx‚Ë “õ8oÎy<°-ö²}W¶µ”‚7çÕg-µà›q¶ñSÞ®ÌBœ OgâŽ<Η&qvÎ/ ±—½ÎØôæ%¿>¦)lÑîô±½‡§Gë 伆Y¿ÑvŽyÉÞ©<ºæ:á#ÒpÁ…eÃmÂyV $ù²Ñ  ¹ŽhJ väª?ßÜ Î1ß_†|ÙºJó¢á(=é{5ì'ÐŒ£õ6Òß>Š’H¸Ã¯û)“iAÑ.ƒ\+ÀΚ£¿hð²o×áF$n5Áí2È5~<çk UÕŸ=L¯“¨] øá~3 ½mwúT? txšq´þS{ IØçO9íÐy%Áf ­|±«ä|» uÒ~¸Ÿï¯,ô¶ßéS=þ€:uáiÆÑúï8¥@͸$ÜíoòÒ>ô¾wwùõ¡wm»/3LÖÃ<ϾÄ97þ¹Û0€‡k´±¯Ð<ÉàiÆÑú¸­#¶å‘‡¿Å2¬·Àe†Éj —n¨miµ¶ê‹6 ­­:f­»l !!ß×ú¨va3Ð6Â}ÞÌHÐz·iÎnhÆÑÕ`#Óë·h¿k÷»î½À×ÿö[¼‘ø[Ä¿ÁÕSoËIжß~ÌÝ‚ä/yë·ÛÙ_ò¾`8 Ù¨ø7öI¼Ì0Yí•Û8$´lú›‡%öñnöøZîša3Ð~ ù+(×é”Uç—Íð¹tœõ¿îã¿¿1aÉЪ­±VùjîöÕRs·‡Ë “õ68¯e7ÓÇ¥àå¤ÀR~Çí÷wþë7½ ¦è Õõ6X­O5·Á{±Ç8fn`—A®bèãÒC­{ ª2DU»wcBÇ#¡ßGgÜ ‘£3T×ߟgë±³. Ý|øæŒ!Gg¨nþ|ÕAÿ\|rIOÚÈqšsâšq´þ#s½´[Ãû€ÃVŠÎP]ü8Îø®OB7¾}ØJѪ«ù÷>ž—ÝÇ—7¾¼²—ƒíë«C-ÿÆ®¾SËU9:Cuµ\µO¿ƒ4v#a¹}ûØ›`3ÐÖçum Œ„~dûxìM°hë!Ÿ)]$ôîoË8ê&Ø ´õ/øîIÂîþŽZÀ¸Ì0Yõ> {%=éãe°ñó‹í£I‚Í@Ûˆ÷8b ù8jÑØàù¢eãiÆÑJ¬ÿýݼÂ[ |þºŽxð‹^ïô‰žàs¸ShÆÑz¸Ë#ð±IГ6´Ç.3L6"½¯è‰„}îÞclÌH’pFâż%aFB7÷kÌ,¡º²ÆüÇ3zò!A{ÎÝnÚ~ºl0?™8#q¥âÓwMÔ¸”ëHœ‘¸>Lû[¹8LûÛª8¤è Õõ1`>7áp³4 ¹Ó+Xí¹E‚Í@[oçË^¯d··óåvcî笼½•'Ø ´õ¾nîË=[À§ðãÓ\‚Í@[oäkõfÍöQ¥ØÆÅCí£J‚Í@»pèÄ/#îh*ñŒe»]ç²hëßç=’°_›ùÀQ<Áf ­â;¼kÒ“>ÏþnŸNO´(xšq´ÚºûÞÝuÂ3æeß'Üœ™£3T·ÂޝáÀÇý¯´%ÚËAÇ_zÑ'zþ­•'ÐŒ£pozò!a»ZJxÚÌѪëa‡=‘°_7†‰Ö²–ÖÒßåƒ,¼ÚÆá2Ãd#ÔÓ€ Iè®WÙâ#yŠÎPÝüùª¶ƒ’Ð]\Rt†êzà§iEg\$ìÛ.ÜçMÏ}uø~à½>¾dàŒÄÕšv?×EoÆöÍVô²‘°•´eÿM[–ÿ´ûzslÚzCœ—· pè-úÙÌ+ï+ƇÞ¡ºøm‚w$ø¤§Œí#@‚Í@[ø2øçÒød·Ü.˜­5—ød—¢3T7¿OØœ”„Õó/¨!O°h«!»ó{ëȶBÂ.?ç§w§šÛx†Í@[x¿Ôn.hÍQ.ú<‡­ieØ ´õxÝ$ÓÔ:ÿ²_{KŸOiý³Wa÷§½ª‡3lÚê!äq,_Æ®Hؽ>#7¯{2lÚz wôÔCOÚxìæ3f­{½+X÷Ú„íh%á5O†Í@[ø¼nèq„ýÚ²Žß 6m}üžÏ‹#ã »v³RÓø`3Ð6Zøûkݰ|~16‚'Ø ´õ€¿_—ÉÙNâ#8žf­{}|ñÒ-IØÇZJ½Íªi0Ë “PïºC’°»¿£°a.3LÖC½Wâ!gwvgm”¶ç%):Cu=7Ùî{˜ª ûv²ëó‹…ÿðMâã÷VÔñ8#q#æðy‡žtu(ŒÏ•h˜Q°>¢ìÝŒ.°‘°ÇE;´xÉû]>Ì“Wo¸Ì0Y õÔoWoà†ïK7\4ß9:Cuu(™ºÛ'¬Š„\¹¥­%L G뼿½Ö IÈõ§Û 4ãh#Öû„MaIÈÇ)ÿñÓë+ÍywÍ8Zõ°,ø„nji¼St†êoƒ÷+4¥è8ßO¾/Ù÷~þ®óòßöÏ¿2”‘IÀ‰ë“Zù$°‘ ¯iö½vB×2pFâêËÔ]=&¢ÎA㹄…âŒÄõ±ñ<1ýEéiOzÁ£½%âiÆÑV´7xC!;žÜmÿ=x9 ÌhIÐÕKöþ=÷ã¾äû™ÐÏßWL‰ë#V@Ÿ4}RãÒè¶Â@û-*·_áQa$®wþyA¯THОŸµŸÕ'àŒÄ>ä×M_Ô¸¸‹Ûf ­7Äå,Ùà*p$dõ´ykÑ3 Ö£¼®øú= |ÖÇØæ‡ ›¶¾¬ÚÝO<—-vg€ÛÓÙ¡ºÞÐ÷Ñ=X¹s,xí2ɦä0Áf mDü¼b š‘ÀOî¶_^> L;IØ®V_â§è Õöâ^I¸8zÚŽÖO<Ýt<Óÿž¶¢½ÁC¸ãÉà íÜMú·d ­. ÿ­”½ƒm8GØjS™û¡~ö¥9g¹tÏ›üñœ%Gg¨n~„oÀ{ëWmÝöHÁ‰«ùùÜŸ÷açPº«Å„çÿ¡ºÑÚׄMDºñ~K±û‡]ØãOhëþ ›¶òaê¡ ð½Š, 4ãh#ÔÞ\.¼ú,´9`5/?SpFâzÈGw6^^¶ëÑÃ9:Cu+ì>å"¡—“ÒæU ébŠÎPÝ üÛ늸t±àæ%DÍébÎH\OG÷Ê+\µ¸lWG .rt†êz[Ÿ·Ë2]º«£Æ³ô¡ºøaAï»°Í6Ó¼c”£3Tׇ™ žõ’ ›ršsu<Í8ÚhãÞ½…pe´Ð®Q1^ÍÀ‰!ßë·›·¯Š^ÿHEÓ)Eg¨®~¾}Ë¶Ô ¡»>¾LJѪ[{—­¼Ó7wšsu<Í8ZŸ@—Î?~Å3õ¢»ÚJÝ=ל2âiÆÑF+ŸýùK$äQ›“[ Up˜Q°åyÄf²$äí/¯×.¶»}¿ D[èdØ ´p/»+ ¯*/ùì-ŸÖQÍËÊšq´ërÍ.%!ן:œ{'ÐŒ£Xïè&B‚vÜf?<ü~œM+P¥àŒÄÕ£!}ì4][q¯C·ÂqFâzSn—tàÒ¼õÚß7I[ÏXÞ~ÙzÀ _ô8.ð®JŸôUDû“`3ÐÖ̱ÜàŽJgIÀ¾cל‚ãiÆÑF¨ËUWÈñ–^o$~ûõàe¸©FÂ66v›73lÚê-´ë¸íè“¶ÞħaE¯ÙH؃þàíkÍ›¶ðyIH%HðZ‰ü& ÊÀ‰ëaŸ'ðDOÙx¼yÖ„Ë “­@÷èÃ$lco>‘a3Ð6¾Ö΂¶ÏõÅ6vJÛçú›¶ðÝ{ÄŽïMÂv´”ð~}†Í@[ø2y¸·bIØŽo!gØ ´€Ï;xc}Ÿˆqš8#q}Sóü~'2¥'m>w{ž3×[ùÚèã$lG÷ “Ȱh¯^.Ùœ„¯· ëø°. ÇÓŒ£­`×Îß·çáëã¬OéU{ž`3Ð6þVÇ¥áëkœ¡98fl…ÙY kØo(¶9á´ï8¤è Õ°ï zñ@ÂvtËø¢'Áf ­|›_;oØz(¶§­4ìR§è Õ­°×ª)íkÍíý“ °µf‚Í@Û¸ãó—Í«ÍíñÂÐÇ£¢í«Í œ‘¸¾Úܶ„e Ý|ööç¶¿¯KNˆ®·ö½›Ðk7¶£›Æ×œ 6m#àSíjŠöeP±;í(tû".3L6BOµHØÕÇŽ'ˆp™a²êú¤Ù¾ *º9¶/ƒRt†êjà·Ÿf‘°«í%œâe†ÉF¨ë_h^mŽËù›@)8#q#èŽô§5¿ð³Ü¹}~3±5OÁ‰«ÙøÖ?~SHrE®vÐpJˆ—&ëí»ï^ãê üØ6?ÞÁòÅá«¡ºwÇ'Ý›œ—~vOû×ñgŽÎP]ü0ÔôæLñÒ˸hÞjÏst†êFà'ß ^v^òñ@¿"× 4ãh#Ö«;éoÈ‹îi( ÉbŠÎPÝüíû‚Å3 ¹Þ\Â+þšq´ëq8rý©ã+O<Í8Úˆõ6<ÓDÔVþ%ŸyÖŽÜÌO G뱞ºÕÕ®ãkŸ"×[H|ñƒ§G뱞o—WcÎ2‘ oƒh—ØŽ½°çÃÞõµ}‚Í@[_Ù/ :Ÿ"A÷«þ܇;~¿åiÕšwÎH\}?¢«·rnj\ÖŽ3×»þ²%,¦HèõKÚÇénß_1W% 6m=äkN4IО¶¢^«·kÏÀ‰ë½? /šÞË9îöƒî·>„©1“À×ü°ì¸ÞéS=þ€šâiÆÑêKÕÛ:,ø“‘ºÑ÷Ç„e= Ý1l©7û¨Ëã›¶òu¯5ÿâ½—4 Û ˜~òO~Nž¿ÿ<ž|øo8ªãƒžÞ¦è ÕõwÐ+¡‹ÞŒ]x'¡¯ÿ{êîöý–=mäʰh«}hïvwêNüI௛kp+– ›¶ñ¾ëáK ¸ãÉÝöíÁo5!Ô~$ }\•ÜeOýÝ>Ñò´t(Ãf m´•ro4p%DÂ6N¦6¯à2lÚVÀÝ9¢{%DwtÎð.`‡ëÛˆøŒ®ôÑ“6;*ßzÂ/THèŽxÇ—´{_.³fû$lG× ¯R2lÚê¢vÐ}ža²ñÐs-j­¿è·µÉßcw¤Š×¸> Žç`ÜË#A»zî§áŽß¿¦6” œ‘¸ò \#£§l '­…=¼Ì0Ù ôˆÎIØõOû4d± 6m#àÕw·Ûçø±úÒOûŸ`3ÐÖ>¹3äx¥ØÝíÇ–QRt†êzØkù}{¥þ*Jóžr†Í@ÛwuåÝvá7hƒ†Ë “õ@/;8=¦§Ü©óî7Y}‚Í@[÷º è „m½~ÞžZfàŒÄõärݶ~HèF¥ºØÓ£ ~¿îãó¦UŽÍ@[oæÛ”°÷@Bw<ú¤=úç]“›¶rÏ×/>¯ÕóeCáÏÒéï?K'šþ×÷ÿþ£Ž·8#q£)n ¼šG?\óûÍÓò õøzÈá4ãh#Ü{ŸšIà÷ª.§ÈÀ‰[A_ÝÃmpCé¥;†-õB«ÏÛI96m=äûy'1.Ù¿É"%–Oöî-¹PRt†êêúÏȨY“àqÓ£ZoOÁˆQ__{(â y\ô2d±§ýnß.&Õz†Í@[MøÜ)ø åÌ*6m£ î|â'ŸÃÊ‚MYRpFâzÐû~ÅÏ$tsû´yžËѪë/E[ìÓÐÏF³},å|ø¡ºøÅŽº‹9$lc“³¹•a3ÐÖ^^o‚-Hà½1~5—[RpFâFÐÏ|`Ù‚m4–ÖbK¿Ž3˜fm{F×*éI;:f¸Äš@3޶‚=Ãw@HàúéºBÏý>ÑóèmN3ŽÖý¹—îÊ ÛÑN­ ›¶ð½¦¥'mT´šWâp™a²iø*œ„]îø;¿Æ¤GÑÞákdzÚ·ñïmJ(øÌ“WGm¸Ì0Ùõ°‚° =ý1|ô&g$®‡|9¯ƒÇµò ¬ßÛ›6f\2°* Ã\úŠ ¶ ö¶î¹~†¾yiSps¡yi“37‚¾õðtŠn¾ÕœfàŒÄõ —× 3 Üóèñ93g$ný¼ï xdŸ­^øÕüž^f˜¬GzëèTO¾÷Tz‚§G¡ÐUÌ}~è yHƒ„mœ£h?\’`3Ð6~Ëåí¸$.ÿ)øÙ±Ùžfm„{E×í^ô6‰©ð– ]_oñ~D ÎH\ÿAwÇ—›SÙýö‚ï°}¾É¦9•ÍÀ‰A/¯]áʃ/Úñ¥Áæ,y¿ä•¨Ä³ä œ‘¸ú{Žåp0nßè%Ã3,´qÙLk^˜@3Ž6~Æ^zÙËÛ^+*1¼lãQsb˜a3ÐÖÌáýòTÏ)tL{ 4ãh#ØKíük{ë.v§T ¾hÛp™a²êñu2³n §|‘±çâhÆÑF¬'±Ý*~]²1¯7—¿2lÚz¸çq„gô$ðÃý\™¹ò¿åNß.xTÇ<Í8Z= ûÏ>/í™GýT\Éxæs!2•ŒgÿýŽý_CùpK ÎH\½¥ÿŸ^Ùšÿ¢qá÷¬D$ñŒå?t‘°„°}ÈM°h¿ßIZt“Àƒ×¦ ^Z± f­‡{}¿òÖ¾×Ç¥‘Ÿòûöö`3ж^Ý4þf4/¼Umûf4ÏáËëÁß–Wð!ë+ò1E;tQˆ§Gë±.p@ó-xoõ¢æL1g$®gŠû:$ôOü92.ðÑ%‡g,¯¶ø©[æÊ¼ÑZàû£û¿“¢Ú9èyö|سÚÜ3lÚjcŸúó½ à*—mÇ[׿ 4ãh½q÷ËIàæ™‰Öá<g$n´ðó›È®IÂôçnQð4ãh=ÚÃu):l G‚vôÌèÂ3f­'ç‹È<=é±ÿÛ‘³p—îç,<‹N8Ì(Xó8/àÙ†ml±5Ï‘xšq´ìu…Ï4$ðNŸ šgH<Í8Z¯§î-%A×…v´’ðx§Gëm{ú s: º³RËæ\$g$®·ï> ’ ;­Ö•w?¦I¯– ïR ^¥Â;ýf•‹•3àiÆÑú˜ºÜFlLªC‚>fÈœ¡%Ø ´­xïðé—nV»›‡ œ‘¸ôu½Íh°:: þÍ‚.ã/ìù7ÔI-g$®Ojë6£ÇD¶Y~mÊlÚF;??Üý£Ÿoñaz? üžqâÆ­ œ‘¸ú{ÎÝû½Ü¨tÙfm¦±eØ ´õ€÷ç¥°Õ øì™Èí3¼Ì0Yæ¡ï]qŽ.v.¸þÌÑÕ^f˜lÅyÄVèIÈ“²\mÞS€ÃŒ‚(ÃG;zÒÆê¬uˆFÃŒ‚õÁù~‹!ä™IÈÇŠšJâe†Éz çó\tÉA×7)¾X,¥àŒÄõAd^_÷½*$ì~øë:âÁ‹¼Lwù0OÞ8Xf˜l„úv§è ÕõÀ¯}Â➺yæ‹•OŠÎPÝ |HÀ>,6Ïšxšq´êº`#áª?aëì2È5|;T‡™äIÐFa°95ÁÓŒ£õ`ïðNH‚6Ê‚ÍCžfm{‘]‘„küˆ­ƒ\f˜l„y\¦r¼yàë‹<$‡g,oyóQ£w¡;mæm»Ñ0£`5Ìk·Îèr& {ÒHk6f­G»œ:GÌ7$èsEöûfl–L GÁ>«é¸9‡„lüŒó$^f˜lúq½$j¦!Á¿?à,™‚37¾ìÐÙ†|Vt%ÝŸ4™a²çá~¤ñÐò8ÌØÞNB>ÇÕéÓæjë—&ë?á¸oð^N?ÛÇçsÀ_ P):Cu=îÓ¾b yÑÑKÞŸòxÈãÛŸ4™a²ú®Å:÷8E#Iúc{í„=¶ë›¶ïûX…Ú]!¡›ªÅ^ö©žAOlÚúX2ŸßR.ùHÐ÷•n©š37B~^ƒÜ¸ý³×q‡…nnÜ6ÿ 8#qýÝŸoÃ<: ¼¿èÃ=g$®}ëî÷£ƒ~¸æ™éßÿÝ‹>ÕÑZ¬%ÐŒ£õp÷ç$„ËßHȃ>5æœx™a²šmýnô”Ûæ6 —&«Gõ·á¼ìu˜ Ö¢—™x=õyúoûß¿ŸÑX`æè ÕõÎ>ö¯æ [“ÐûY+±{îö‰–¿ †=Áf m„¼Ü\@°^Ô¼ðɰh[¯ÝÍß:¡ÙÌÁ[§´›¶>­ÛÛ;Ô¼VhcO»ybÃÓŒ£õ¶].%E€HØF¿i­[%ÐŒ£õ¦=ßN킆@¶ÑJڇ޼gx¯$Awç6P# fl…¹^Kj#‹m–LZçÈ›¶>¬ýÿHÐæoÙ >#´" —&ë£É¾mè^I¾_þù|Å:ßåS]Œý¼Ì0Y õÞOõëÿ[Ç‘ ïoG,`ãH ÎH\GöóÎ(\C¡'l,VÛ6f¬·ìa€W‹I؃–W¶¹hÆÑF´Ç¿%BBï­l§y;'Gg¨®~\jµ×ÖÁ¤ÈÆò©u4Ë “@ß¾ Y—‘õ3C͋ɚq´ëòZà H‚îôþòÅà37B>׿ªÞ>€Ý|ߥ}OѪëŸoßEFå±$ðÃ5ßž[—;}ª½u[JÍ8Ú7zî!!wZ¾Ù:[‚]¹zˆ—„Qn¼ôÅø37‚þþò7pü^‘üGï›¶òu™“„{d?ÈE<Øe«x+ï/ »# üœw?&°_ $8#q=èû°`+Æ$dÇÅ ëªê–Oý“h3ÐVOªFpí¤û eœÐ6m£ .8·$Aõ’æŒO3Žþì¹û¯ëo¯r`›m$ÛMÁΡGëÁt®COú¨Ç({fm9Z’Í@Ûˆ÷òÒ10´ãcVë~Çïï³~œÏ²pFâŸg´˜¾uš.§Ûï‰îö$h5oªÐ0£à·ßðõÈ+ü'd mô÷ ºÆùsïåQTBOmUj¯äl½ÔÇSW>æ3Tÿ¼UþË—»Áa}‡|¾‘íîp™a²ÞoÖy‚Ïð$ðó¼Ã§½³BoÃ>Ñó¨ÁÆÓŒ£õpoçær¹Jžô:`Ó*;‡fmD{›Ñë`¶ã¹CË÷_zÁ2Ãd5ÖýùR/°?ÒSžµ¼¯y ÃŒ‚õ(Þ0:z¹³¶[‡ ›¶îsCº#ÏúÙ¼ŒÌ°h?÷ +xýÉã Ô¾‹ÁfÛ$tã-¢ö…B ÎH\]&ô㆞+IЮ‘%:ŧàŒÄÕA?uÎãÅK[ZæÛ‡*!ë3²ãÕìmTNò¨áN°háÝ÷­Å³•‚{n犧+8#q#è{WHà®Gˆ8#q=èg5:}ÒÓ6Ï/fþ¡úÛÜÿšõ,({§ÿ¨å{æ[)Ζï™ïÿ–ÂÿFýÿ”ƒY8#q½9®gµ:|‘ÀÏz¸}C_|àÍÀ‰A߆gæ+ùÞ`›¶îr‡t¶ »ZJxžËÀ‰Awdt_Lu›#3úb®ËáËë+ÝíñQìÖÁ…×/¨ÜfåðŸ:¦ãiÆÑz[ß|7%;|Q\^ð4ãh#Üçdl%$è^Ÿ‡šÛ6žf] 6rÖ—Ñ6Žn·g+ ¶Œ÷7¶ð¡ó–µâ»—mNÊÍû9:Cu#ìã  IÐŽîÁhÆÑF°o.Í6ß·¹lO;ñë?©:Cu+ìõÅ~{N~ñýíø0'OâË«¨¡Ü¨m•qö—”|ÿ+ã ÿ›FõU¢,œ‘¸Þ(ûs ˜‘ ëׄ†³¹šqt5ØÈ¬HFûì@ó„Ìæ2lïol=àCÿöš30Ÿ+º9 ·çs):Cu#ð瀙 ÚÑAÃùžfmÛÝȺ÷7âù\ÎH\úŸ‚HÐÝßQXÔ´‰†ëažà]’]}èð0‚†ažFôѶ±éÞzâ&fmE{ÂOí$ôRÿüc¶§%):Cu#ð{„CB÷<|Ã\™¢3T׿쵣¥ÍÃK¡Íô§y€ÉÀ‰[!»‚Yn*üpÿþ´–½ðíŽöüê‚3g$®‡}=¯”‡žF"÷V‹i=G•‚37‚¾ÍÐÄ–|ìJX7íÄsq¸Ì0Yó6îÐÌ–\æp2—&«÷3 åMËá÷¼‚2ˆÌ]ÑÏ4è÷Ÿ¿úºý7üoèþ[ôJ~ÎH\=Yóo,˜áÓ1 ÜsÏ~<‘ÈÀ‰ë~ë×Î6Ïh7ïDlžÑ2pFâjÐÏwøÁ”ný¢ÍÃK ÎH\^Æë³ÒÐ<ºÙš÷ st†êzkïçOðèH/;L#t\OÁ‰[A¿ÕZ0»z$ìÛÚ]%{'ññÀw£©'àŒÄ˜O+|F"wú“·Î¤ 4ãh=ÜÃ~‘T¬$¡×¿¾÷wû~s:®$Ø ´­W³ÅöÄ¥àV÷iO\2pFâzârÞ¬-—ÑÓ¾ÿž°:_†Í@[oåã´y–øFÂ¥;:è uP­’a3Ð6B>¿³&çE7'æöä–Ï·¤5(’Àã_Œæ8#q£ßj\¨e ¼~Uúþ o×™¨i"žfm„ûíPp(Ÿ_‡d>¯'ÚÇq<Í8Ú ·¼ñïû3 Üx›¤}¥Ÿ`3ÐÖ#¾–Ï¢Àv÷^r KïþNá&<Í8Úø!·»}ø'o]_éñÍ… BŸ7nÛÍ• ›¶þKn·o©aÒAô1Q˜ù'Ñf ­ç±ûíºOL‡'AŸ«ÌO7Ø~1N%Ø ´õö½Oºc’°§×`%¼ÈûC>Ì“×Ö&[¡žÁY7 ÚXý5¯ð4ãh5ØÓñ!d !!«Aµ6j8Ì(Xr_Ž»÷HØFëhÞ'ɰh[¯½!×:†\tý<á1$fm{_ÐEo¶£•„‹õ6m=àCÿJþ@•ö™è|.Õ5WxRpFâḞþ99àŠ<—ÝY›/Íež¡ºöñöÊh"acbûÌ™`3жŽžƒHÐêšµyÞDÃŒ‚0ßÞÍ=$lGûˆÏ™ 6m=àÓP¿b«}/ºyIJ}OѪëŸñ#! []¼¶ßp™a²ê :’€Ïü:tÃe†ÉVœwtÕ˜„=t•ôçc_ò>?ä_óäÕQ.3L6B½oèù†„]í‰ñY.3LÖC½<Î €fzž™À3dŠÎPÝü*öÊQ%Øwz’Ù\„ÅÓŒ£õPoç¶rÿ‰„íøðÙ¾ÜõÇêD™¢3TW߸ð«Ê«£íùF6g$n´Gx7"A×!6w~<Í8Zö¾á«$ðiÔfæBïÛ>Ñó¨áÆÓŒ£ÕpÏÇK?ÐVB‚>'ä1gþäÑŒ£õ`¿½ç…Zc_òÑk΋nP‹ìšq´ë›ÛÓí?qx9‡1±kUz£’k7¯®Ñ.ƒ\=ÂÓv;.…¨¼üÉó8@cAÖ³¥öŸO3ŽÖÄóˆ!vÙKOüpÍû´÷ýNŸèùÔpãiÆÑz¸Wx+!AëÙR{ÛÆÓŒ£`ŸÇÞ€i/ Z­¸4çêx™a²é_Z '>èç&Ú‹"6m+â¾fABw<{¼Ú2oýljëQ/'Ä! úœ‰k¸áO3ŽVƒ½tîŸ2>¨\ø}"Ž+IwѾ<÷£ t¿ôeTž€3W7Ï"ú¨é“— n3Ð6â¶€«š$hσOÚƒÏjÀpFâFCô볦/êï¹èÉŸ„mœÝoÎYð4ãè·ŒåöØî¾éþ)‰ëßóÂÁ+‹Â{¾#Ú²²ÈáËÁ_§„l‘ïzü†\7‡g,¯¼íi~ZÔ5×C/ùþ³¢*¢6m=ÜÓôv9ÐL÷Kí/È´ 49¸Â(žfmD{Zž©9®x±ÝÞA¶?ÔP¾ÈÀ‰ë›.;¾g’°;íäIûx—&«­{íæúª¿µ}_¸™é·¶ïœ‘¸Ú¾×nó'ùñåçÅW¿jÐwüñ*”¶øLÁ‰ëm½ìžA7ŠHàÆ4ѼÕa3Ð6">â÷ HàŽ'wÛ·ŸÝ=4^£¸xG;_Õv®U(RpFâF{YVpŠH‚¶&ºæÔ6g$n„ü|s ºiIwtÑðnkÀoo#l#âÛ ß #;žÜmÿE|¸ýš ´õˆ[½âÜœä÷dnǬ2qFâê>ô?Ý›X„·¡¶ÞZÆó®Xè`N·šbû4”3׃>/¯ CÏ$äóÕð ¹âO Gë±^º·7{p ¼àýíÔ&®gàŒÄõ ¯åÌz'Òxm®Ø®ö¯Î¥è Õ°/+<õ";ZLCÒ˜37‚¾U7¾H‹n]ÛÓÆ¡ºøœ~‘ õŽÔž4âiÆÑF°÷\¤»è­«ŸiNH îj‚á|4g$®þž[·û£ÎG/Ýõðá|4Gg¨®¾OÈêHàǯ:@³Ñšq´î÷75p¹è¥»ÚJ8ÍѪOÈèHàÕÏDhÆÑF¸÷œV õ_²9J GëÁzÿNù/ý,‡n6åÏѪŸo•bÐAøáZ×q÷ýƒ>Õã¨íO3Ž6½ø§ˆxj>ܪµ¶ÏÍSt†êzàÇ~'[$èáøE?ù"GL°hñ®åøb14î¦_ eàŒÄ /;8Ó"A×KC‚˜`3Ð6âí¸}£})TtWc‰/…Rt†êFàáY. úèCúW2s4Ì(Xóù=èazÚÆ~Vó!¥šq´íe¡ „|üŒtµ —&«qÞ»evMáµæ¥ðçÕC±ûþnßo ÔVš6m=ä}¿¹C^ö\ºãÑíѵEO†Í@ÛùT{ ±yì¾ìÎ*7ß9:Cu#ìkïnéá…Ï¥;Z̨µmÝ“a3ÐÖC> þñ<œ…_ºãÑ'íѵ<Ãf ] 9²,!^ÿNEßÏwýñ†³:…¦è2èßéêm¸~QyíÝò½|ÿ WQ¥§Ü뇨ZËÀx™aòÛÏx{èÿ32T7ºþ /Ö°=®_n Np):Cu£ëûùMåõ‰ènÚf ­·ÁiìÁ Ú8oÓœ¶àiÆÑz°ç÷/¥GÚ¢÷ÖQ„ö‘6Eg¨®~·t÷WãGµq4Ì(Xó^Þ…ÖWIØÆ@Õ^N°h/ïd««$lǃǫ 6m%àýÝy•²ÆGOÚñØÁÒd Í8ÚöâM|Ü™& »~#]0AN¡GÑ^Ñ,=éúS»åÛC{gw˜„íhÛÁÊuŽÍ@[o%}õååÆ)þeYZãŸc3ÐVŠ>ƒ;ãh£Lî*ªŸ€„>蛳­[I8#q#ês¯Œ“ÐÏÝ=ùÅ«oŠ7¦²/ÛÑAƒ©lŽÍ@Ûh+û‚/ç“Ðm%º£û? \úp¾D‹Ý) ¡;žÝ¿ývéhAÂv´ôøê'Áf m´•ñuÔQ"Ÿ¯Îzè¶¢U†Ì0YO±†i‡UŒÄ&²zÓñøúçùmL«mÇ×? 6m½­Œ7‹nô‚p½­Œø% [ªÚnp™a²êeŃ$äéõÔÚë¦C·o¯›êmo3ж½¡spvµ•ÄWp™a²jwvܰ¬/xgDùbaŸÃ3–×C?yË5ñjx¡­Go¯‡gàŒÄã—$ìj'/xà2Ãd#Ôî<¹¡rUpW×ôó?¹Õó/Hû'Ñf m…Ü»j(æÜÕ;£ï,¤ñŒåõÐ/ŽKZ¿XŠ.ŽËN¿XŠæðŒåàÕ‰£}1ZpÏg¬â‹ÑçI` ÎHÜú\¿8ô‹5Rá]m¦a”Ã3–7‚¿º?Ö_%ÜÓn⫤e«Ží«$®}íû„ô—ïj3 É{ÏXÞþâŸ`²›Â»¿!»ÉáËëÁßê3É7ÙÍv{ëËþ zSv“Ã3–7‚_ŸKÚ³›í~a¬ýi±xv“37‚^ŸI¾Én ïj3 ÙMÏX^þ^ŸKÚ³›‚{ÚM<»ÉÀ‰[A­!'HÈG•él-°ãxšq´ëÑ¿®üç³$pG#™”F¢åá 4ãh#Üç ÕÀ­^´Y?kÝ¢NÁ‰ë!¦<’ ûÛƒ£†n<Í8Úö¾»% ÚñØáÁO3ŽÖƒ=Ö÷çšGÇúµy0I°h럦Ü)IÐõ/dć<Í8Úöâ¯AÆ·$.þ?ŸÓ)øðÀ£jU«œ‘¸rká¯^nÿûý’²Vš-ùæp–~ç+ßÜÿþ=Õ“zð*g$n4ÇÝùiéøÌVhG/ Ïlxšq´ìùþý Øö ÞуôK‘µR^ ÎHÜûPû’bø\$ [ï?íç93lÚFÀï_Ÿ€ÚIðŽÖ²©­E­åeàŒÄ°ï <%÷Ö±èæÔ9g$®}üù\|·àâ-fW[ŒZÜËÀ‰a‡gÿ$èc²‘+4Ì(Xsåâ¤öäpu=p81IJŒað•2Ê™I±wãÚ3“›¶ð½{ª1ç.HÐçp÷ù-­‚Ý?ÙóO¬ZÀ3pFâúÊ; ÷š¾©qéá6m£!•eæ=¿Ø¶ÑØÞïá2Ãd#ÔÓvIÀÇ ßÖ‡Gâ™\f˜lÄyžÁ§}HО¾8h}qWƒ€3WC>”{Ãa  ¸ÞL¢^f˜lÅy÷5m÷Ÿ½83÷‹].B–ëIàFêھт3×›J_.€GîÀïÛÅHÁ‰A/·Þ ‹Ó$pG{‰—ÕSpFâzЇòd¥”îxôx7g$n}öŽéþ’ Üñèñbc ÎHÜú^Û,ùb"-¸±üb"ÍÀ‰ëAËd‘Ó üþ踉4g$n½r†î›yô´­¥aM°h럺·VŽ›D îxô†I4g$n}öŽç “è4{GņI4g$®Ö‡i9÷¾×^_ ¥RŠOCY¡ÿûÿoÿ[ÎQñÿ>Å%g$~Æåÿ>5Æ„)š~ˆlj§Gë}®|¶³¹ì~ÉG%gúPk¯»'ÐŒ£XO=<"¿jŸ¸O3Ž6ÂO‚èiW{dCê—&¡^o¯N‚,‘ÀóŠ…§;}ûî¶±”@3ŽÖÃý¼ˆ“k’À«í¤!GÆÓŒ£p¯›¬!Û$dÇçQÇùa¿^ËT’›¶žðEÁÕÑu9ßBÚ ´6˜°Ò!W;Oà O3Ž6½·eIÈžV²*­D_ñ6m£ËûñMÁõèM¼4ãh£u7¬‚ =‰É§EßËà›¶ïuÀ‰7 ºþÜ Ë…›¶ï_¢"››%Íŵ œ‘¸^\ÛÎK/€ 8 ºÞXÖ 6m½‘o³ooÈÙ ]-Áf mÄ{Õ80•*ô™‚ l 6íj¼¡çðeÄ[t¶Œ8Ò–ÿÆÖ#¾Ÿ;Ð#þ$pÇ“»í׃Ÿ‡¯ ÇŠIàŽŸ‡Øî 0ÐV?*g$nüœë-'ÂÖ =£àç…as2Áf ­—!×~F﬿l÷º3\­)´«†ë58#q½û¬Ó^!’ ¨ÍëZ<Í8Ú¶ãËéí+ÛÕñéñö•mŠÎPÝüâ\bù§¼lwÕ)\ô\ý{ýMÁ‰ë?çVM(¾¨Tœ¸«%Æ 8#q#è£7· WÉ·±úƒ¶×É3pFâFÈ—¿Î"¡»ÚK|˜¢3T7¿V ­í+¹‚{>r_Émx›¶ò}¬YÛ³ÿ‚»=œýgàŒÄ­ ‹ÜUçÛß¿A†ªôáiÆÑF¨áKt÷wNµÌBÃŒ‚0oþ‰!¾Ä*ú±Z¶Ï…÷ö%VŠÎPÝ |µjÛ¾*¸k /„2pFâjЧÎñYÃæ•Ð¥»ZLx)”£3T·ïO£Ë¡ wµ™èr(g$n½Š·¯† îj/áÅP ÎH\zßW‡˜æ¥Ð…ŸÏne<¼JÁ‰A‡ç¸$èûï ÊÌhÆÑF°gÿ ]y^¸«DWž)8#q=èCï_×FÓÅ w=z4]LÁ‰A_üÉh8k)¸ëÑÃYKÎH\úøIÃhÁ÷ó¸XèixЯkgÔéO3Ž6Â] fÀƒ$ìqü;l"»ÈÓC>Ì“W§N¸Ì0Ù õžïIÐ%©Ý‘Y žfm{žàs= ÜÑ!µÛ«ÔO3ŽÖÃ=uþü>œŸÜñà³òàjv‚§Gá^àÓ;=mÇc/Êc«Y \f˜¬ž{Ÿ¦í< ³÷z8½´ì±Ôßûÿºÿ ‹5¸fàŒÄõ&8wÞÑÄ›ï {}9ßœ¥áiÆÑF°÷ ÝýH–ùæ }Pª|ñÒK ÎH܈ú8y£Þ«¼º]Ptdzûñ×£»GDoA‚v´ópòƒ§Gíäöž!bß—|^¬Ð·ªñ2Ãdõ]èi^wxa$®7ooôf™ô€­:œ£aFÁFçœ`’ Ίñ4ãh#Øç¸äO^»Ê«òí™e¡õSEí™%žf­ÿŒëTù4U{¢PhÇc‡<Í8Ú¶{ŽiÈâ×ú!Üoòøž±¼ú­ëÁ ÚÑb“0žfm{à‰ ÜÕRüüO.ÏXÞ ýmsu(’„~ÀŸ¯õ)ö´Ýíû×ãÕ&Áf m„|ö~Âig¡4œvâiÆÑF°·Íݾûð΢;ÚÉ®µ}`ÁÛ ´õïçîÀÌ–}Œ†Ÿ.NiÎÆÑ0£`#ÌSïnÙñóšE¯·¹ÓZˆz\3Áf m…üíÂ_Ôâ§ÐÕv^ú aFÁF˜o»•ô”o/½mp]­£ô|У¾5‡§G±.¯×ÃNÆ'­«4æAÃŒ‚(oõ›)¾XÊÞ<ºÿÅR>‡g,¯ïÈïçך‡iÕ÷µ§ÒÊ4<hZÿÛþ7ôÿþÓ‰3k?™8#qõª¡¹ƒ HÐÕ¹!Zà€ÃŒ‚Õ¾?ß¾ƒŠ«ÐSwõxq#Gg¨n¾b%AW[Kt• ‡ëaîá'’èA÷FÏi>I•@3ŽÖƒ=t¾¤;º²¾à# ´¾¯^Zãe†ÉFœ{ÿØOØ.þ\âüp…&lI•{Ú;$pcñÚ¾g’‚3×3й\†,’À/n¦àŒÄ ŸW$ w HØÆa(ý“G3Ž6¢ývÝ n,¿@±9\f˜¬á˲ç|¸9)7'+8#q#è|ò¡§m¤â_Ìš 6m}@YÊY1`Ÿ„=,å1Q0,ò¼?ä_óä¥ü“&3L¶B½`«¾$äc :·ua¥j<Í8Zõ:Üv0UöÐÿe<¢‰yéò¯yòj³†Ë “PµãÚ_dÝw ~ YwÎHܺo›'^¤>ázŸŒ©á2Ãd+ηӠ­ øášŸs\žô¡@Ià4ãh#ÜË€Þ¬#a¿^Åí1âiÆÑz²½ž“j£HCiºÈÕ.ÙP›ÆÓŒ£õ–½áô´ŸqÀ.kà2Ãd#Ô·ÛbQË_¸Yi^¸gàŒÄõ±ävƱ­æ¥¶îÛ ¥ýšQû'Ñf ­·ñ=!u%W;gCʧGë{‹ûõ!Ô×K^o?æZ²ž²ž\K™dø¯ûßô×1?Æ$g$®6õ;?ᜠHÐçcÊNÚ§µ ›¶ïþqA*f‚ wzîÝ:±%ÐŒ£ÕImío÷}`F+t½™ÄÙ ›¶Ñ¼Ç·KP`yÄ…›ç)[‰œ‘¸ô¡ŸÁ‹W´ù{¶.ºSpFâú¸2Œbá ÛĽèc ;a·q3lÚz¼Ë…’¸º: yT²ðæ­8Ì(XHÆ¥þîbóè]ð³ûûy^äè3¯·*#®^µ×ºy ‡e¤›a+ʸœN‚Ö·Ïš7hÆÑV°wô4Cžf¥æ}ÉËC>Ì“7‚ –&롞†z‘ª9û+¸94g8#q=™æ^ï!›ÅïÖJU ÎHÜhéû†íž$äY›ušG4Ì(Xò<ß.’ÃV§ }Lî#æ4æO¢Í@[Jæž·ÒÓ>ØÏ)O‘íÚ 5Ý†Ë “¦]¹j£=œ+¯œ¶'€p™a²襛¡+_p§ÿ„Í«u<Í8Úu}ÁÞœý=V½àä/Áf ­×ËùÒð4í‹ÞfxnF7÷š³Ê œ‘¸ÞÖósLÀC/zÀ³$ ژ˚§v<Í8Úø—×UCŸæœæ"ZÑ»¹Œ†§G¡Fç$ô”;­ÆßœE]¹Vˆwרä?"ùGoðD‡mÜZÝœžáiÆÑúï¸ío‡¼pSú&ÿâ&t<Í8Z÷>W^diŸq mŒzÍ3.žfm>{‘ .Ù<çâiÆÑF°ßnníóNû`Ío ,ó]>ÑÃ׃–&¡>/¸A-¼ì­ëð4F‚>›Èô!ghž|hÆÑê¹uüÝË^hJI>_{E&Áx™a²þöÐýz°ÆÌÕºã‡!ž+°6'M­ö’Ö” 3 6¼ìàă}¢;2]J GëÁ~;8ÞN 4Ì(Ør·‚Ó;´±kÍIhÆÑF°—œƒ‘ ogkµ›6–EØûaïê>O†Í@[ÝçÙ¦qÃfK$dÇ·Ô—õa¿î#­ä'Ñf ­¾žÁ7Ô L Úf ­÷ùÉ÷øx^69¿©OÌà2Ãd=Îs7€g_ô9lÐ¥žfmûµQ:©EÂû¿Ókⱋ¼ìwù0OÞ6Xf˜\ 50Õ‘‘6Í ž–±þ‚6‚=½61[&$èó8ýç.ÓºÓ“a3ÐÖã½v•ÏÝ´7îBwZlnÚh˜Q°æõ¶ó) o/>iW®°ÇÃîõuG‚Í@[_wlý€ÎàIدs™¸…žf­·îÍlïÊ€ž´ã©Ãë™mYÀ4ãh=Ö{Y*K$lã¹›+xšq´:ŽìÝp; Y o/âho÷­½°÷ÞÕhgØ ´õx÷}ÚIÀçzéS 5ÁË “ÕQdï"t^òÒ£› {Ö{zsÁÓŒ£þâži¢iÎEw·e/,ÑIÁ‰ë]gèwpÞ@‚v=x4ßIÁ‰!ßk!oMy.Ú|ðÖ¤'g$þ6°üÅe<¿.9Ìã_1÷MßʰUª[)0Žÿ²ží¿^ÿXr ÎH\oŠãíÂqÔÀE÷|é4>äfàŒÄõ Oà ºHà®Gº8#q#ès­Õ“Õ—ŒZ·à0£`#Êk®°‘° íZ ƒ 4ãh=].6²Lÿíþoá#I‘×ñ.æÉëÍ-¿ÅºYÖöÜÕÇìæ¬­àæÈלµeàŒÄõöýv,—›Ü˜ÛŸÿˆg&xšq´Þ—ٟ󄳒‚»=œ•dàŒÄõ ¯#|å@O»·F¬æ%O‚Í@Û x½•7ãïoÇ1qãxÎH\ÇËý=¸š2 Ùña¡uºÛ·7àÔq<Áf ­›Œà³‚«cíºLh›¶Þñ·~WÄIÐfnØ\ÉÏÀ‰ëÝ~+ï£Ö¯$àûc£ÖÜxšq´Þº÷a/`IÐfi^xgàŒÄõÖ½ß.éCå@$póŠˆæä-g$®´ó+ôCGC¸™¶ãI8#q¥¥ÿêð1‘m²oÉShÆÑF ßñi> üpÍ›Ö'}¨ÇÐà §GëáîÇú€Ò6u¾p³[¶MI8#q}@é—·—ËASç ?~Ñ8q¦ÐŒ£õ6>ÜOýJ’$ðú'Ö'ýz'òó<…fm„{z{§—£¼¿àÄå(8#q}Hޫרe¸W€çOÛJÍ9 žfm´ðûë ‚; ÜÑ57¥k~.^¥ÐŒ£õps}@iÎQÆÛçÊ«<¸%g$®(cù²wÚ¥&!«÷µm¬'ÀŒ‚õ¦=¯¨!kì$l£&Ö¶5B3Ž6¢Ý¯èâ= ÛñÜ^úöØ8í&A¿ôçïl4/ð4ãh£œgÀëxô½bŠª>àiÆÑoÁ~=ö2‚; ãh½,Ó N[IзcšÚE«´×ÃÖ^mʱhñ®^‘ßÜ' m¼0ßÜ'ñ4ãh=ØëúöŽ$nù^ðÃ5/•Ùº;}ªÇPçGáÞð4I‚ÞþòñÐÞú;|§®‡ 3 Öü·nki$hctj®âiÆÑF°á# úÈ…?¤j­Ñ0£`#Ìî'¼v,tgm 5¯3pFâzÈwpýŒ°£3†k~h˜Q°ä~q¶ëð*½Ð®Ö;˜„37Bþš PuJzÚk^ñ¼ ù@_³á2Ãd#Ô¯}š›Ëªïï£êªp™a²æ¾›j×üµ&|]ÿÖW8áK GÁ>_<ƒÎè$pÏç<ùH ÎH\zßÕ s­ÙÈE;ÚJ4I GÁvœ¥mÍJ.ÜÕN¢YI ÎHÜzå»­«È >ïKBÔøÒd†ÉVœwh=‡<Í8ÚõþÖ¾Q™_¡Ï6²JÝ›S?<Í8Zö žhèSAó䈆Až¡É*=Ýs… M¯Ñ0£`#ÆðÁŽm HÍC4žfm{ÝÁ;I$hcHjÝþJ GÁ>¯ñBC$a[Ç­§'hÆÑz´—nt Öá%Lëc_x —&qn $ðúGe·ñNßnR§F<Í8Ú÷†_z‘À>)®·m8Í8Z÷ NRéƒÓ§côÍI5–e k„÷6,}úáš7ºÊýŠýßè¯Ý¥±Íúu—†:pàiÆÑF¨¯†f¨$èsLš?M/Íy5žfm»v§9­^k{<ÍY5\f˜¬z{¼ Œ¨Ö o/k—lo‹°×ÃÖßΰh«oG÷å4&®¢ð’Ï’0#Aݱ9‹ÄÓŒ£õn³¯¾_Ñ»ÐxÁ[EHÐÝßê5ð¡aFÁêï7tå@>.›&A;š]t @3Ž6‚=ÕÞÌo-Û\ô½Ø +ܤàŒÄõ÷ïwl‚&ƒ‹6F¨ÖÉ fm{ÙÀ96 úuÀN{És[=ô¬·n<Í8ZöЃ‡@zÊŽ·á2Ãd#ÐsýÃ-ÍãvÁÍ£ÍãvÎH\úØ Ð øx{hBVÌð2Ãd#Îå»ðÀ" {ÔÓÖÒYÍ8Úˆö\+7g#ã}”Bæ"h˜Q°æm4åÖ•ã ü€Ü‰ÆË “õ8Oè霞rµi„°Ë ×ñØc'•—¼Õ_o5¯ð4ãh=ØË²€“´¹&hNn2pFâzÈ×y‡& $àc³>Ïoà2Ãd#Îeðnû°g½Û´îV%ÐŒ£Õ½ªa=O—Ç?´Ù›Çí œ‘¸ÞÀ·~€fj$àz§ ç–p™a²çµþV~ó,Yp3Ålž%3pFâVÐ7xK?\ó;Ûv§Oõøêx‚§G«á»®ÞÆ[ð 7[Jëž‚37‚~n}à rïöô Ïni8+<\%ÐŒ£õŸqá žö}·×slÚFÀôK‚6¶ [g†šq´ì© °µ Ùñ¡„m¿Û·Ãõ£ì›¶òYé¾w >©A)Û6@›¶ÑǼ&&A›‰OëZ>g$®®çÇ©lÃÁVj/yOóô´ëŸÕØû‡üzÇAÍMà2Ãd£ß¬à‡ž²±­ÕÕã¨ÁÆÓŒ£pO3|\%›ù|óŒ3×g„Ý1é)wZ³y(» rõv½ïþg´14Oxšq´ìu€wEø9!쟷±›‘ œ‘¸:ˆL]_[©¶¶ð‹®$ÜÂhÆÑj ÿ·”œÀ³; Úø[s’šq´ìsÁ„¬8°—bZ % 4ãh#ÚËŒ.e°ëÏí¦_½Ú[¶­)ÔŸËuä†^f˜¬~òqêûü2ŽÖ[õð¸°1Ï –÷©œÓ<7¢aFÁF˜o_ÖÄÌ0$hãlžñ4ãh=Øã4“Uøáš·^î Nu2Ç=<Í8Z÷o%$èîï`.ªe£aFÁz˜gï,Oö m·šÓ½ œ‘¸ò¡‡N4$àêÅHñ¹.3L6â¼Là܉íi áÝÍœ‘¸òeZ¡ ø˜g6ä†ëA^ß¿‚´×÷Oàí œ‘¸ôû‚Ô)IàžG'8#q=èÛ9SW´±tjN¸ñ4ãh=Ø»cÓ­yXÙo+Õʤña%g$n}wZñae¿}í¥òèña%g$®}îúÜAIÐÆªµuXI G[Áž   ¸þzí>)U´åNÍ8Z=r°gÅô_ñµ•)ž“÷ÛïËݾ½cüŽp›¶õKºñUÁåOù Ê0€[ ãhu'äŸ=¢CÂ@ÛË`µ“¿VÒwåòÓQOö‚—~¹—Ó­ãïM¶Ó¿ÿtÊÙŒœ‘¸z6cà3% úX~º¡£yvGÃŒ‚õ†=¬ø´›^¿«tзsÛÚr!f­‡{ð 7 ¼úàC×)®-hÆÑF¸· œ’ ½0Ýœ¹âiÆÑF°Ï9˜“ í¥ÿ‚=yﳉgRßÓz°Ëg}€ã ÚXY7Úxšq´l÷F ÝY%éæ$g$n„ü¼õ8á «-¥ašÄÓŒ£`ï3x $A»ZIxìÎÀ‰ë!ߺÚáßæñ{{\ñiåÔ<~ãiÆÑF°û×~9b]F>/{DøÂË “8û{Lx¢Üê[Íód‚Í@Û xí¤æYrsÞ|Ü0KâiÆÑF°|1Þ[}§¹ ˜3×Ë€ûí[®¨)žîêœáä$g$®·ô}o¹°}Í;Exšq´í¾)BÂv<·—¾{é๠ºû (…ÃŒ‚Õ-³¥ëŸ  ï˜hµQ/Ý\{“´53¹èJ¬ãy fl„y]à©+ üܬ°ï çÜ)8#q#èûO§Hà÷ŽKSpFâj"¸ôølŠž¶«µDÓÀ ›¶ÞÊGxK¡}Œ†Ÿº¹}£aFÁz»ž:ûþ–æ$ªÀçi/ãδx—&ëÍyr';Ñ%ÍE›kÔÖEM ÎH\=·L×¥[›:f/]I}ÎsS¿ÿ<Žnÿ ÿ««gàŒÄ.¿@ÓLzºµÎÓ£aFÁFw¿]ç€Y6‘ ]&z°3g$n„üñ!&LFO¯Þ4ü~yñEßΠë#,œf­‡{ößòψgç}‰C7*®¶p<Í8Z÷2¬ðy˜îù´[<ƒÈÀ‰AŸÑ= ú<Ñý¹êÚ¼ I°hë™É²Á'zÚ®†ž5lÚz_ï_‹DlóÿÉÛ\/˜4W/sù=œøx•3×Îmgô”þæô.3LÖ½wþi'7$ÐŒ£õ¾SÞLĬ^²óÎÞøxÑŽ€D‡Àšq´þ3ž/"#WQô¤‡éoa)z/==à_òÔeÚý“3 6Â<ù“†èJá«_GºùNß.P'<Í8Ú÷ú–4à&ö‚[Û¶í{ÎH\ŸØøDF‚>Š&ròEÃŒ‚õ¶=v½{(‰.Ë.ÜÑ)¥Sª$žfm„>¯“ «m$œ‹ aFÁz˜§ímðÀØ?ûc‡i¯ñ4ãh}¬žö:î‘€‡_xCŽÔh˜Q°Þ¦çÛ!D7$W9ô}p Ø8#q#ä÷ûýi_ë}2œ÷Áe†Ézœ—}7¸ãZ€†Æ3׃¾` óVö¸üåò϶ò'owù0O^¼á2Ãd=Ôûð–ëàÚwÁË ë%¿†ö3Wƒ¾SžæIз½ åØáÐíÂ^[¿Õ3Ãf ­Ç{á-…žvý­‚¾S*•ZÇË “PoΩ8ºÀ¹äúEsCß+‡³ôPãmÚê%|PpíÞ„}<ËiH›¶ÞËý¸D“„ìyìQyìY w‚Í@[÷ÒcÓz³RÙnNÔÐ.ƒ\=Â븀§´±©Ù<áiÆÑz°·Nžù:Ë!a¿vÆpÉžf­G{kw€77íB×ÏÇ›6žf­{ü¯ëáM‚î*'2ƒ¡N€a.3"®+’ ;«Õ6„$áŒÄõ—O Âætp§ŽOiH Í8Zõ8Â×J$ìê½gÑ%^ Í8ÚŠöþHÀµVñ 3 6‚<ÁWº$lGãðÒ¯Ç^ê÷_6Ï47 ÃÍ3MÎHÜh+ç½0Èe: ÛÑVbÕ…«å@h=Ú|Ž$Aë'Úgv<Í8ZùXï};Ži~Œ£õ62;ö"›‡Á‚ß·jpÃ`ÎH\úÒOà&N‚.Û5fúöމ§G+UþÃ>ë˨¶ðßÕÕÑÎÃßþþ”Ëøßô¿~ú¯S‰&áŒÄ•c¢ÿôµ[ ©æ vOiá%N¡Í¤­y‘“3×”Í=C„SðÍñ­ß¶]²$œ‘¸òÝ»n g²›ãó³Í¹lÎH\ù¾{ïanZ î¸V²ahÉÀ‰«Aï»~ƒÏp$ðÞøE›ç朑¸:7—Kì Ã"=mWk‰Žç6m½•÷Žo¶Žçîzôèxž‚3׃>ô¯÷Ü1 ôí\…v¶Ÿ…½ö¨®ƒ2lÚF¼ÿ¯?/¼ü˜Öý_ñù3g$n}ª~#¹}þ,¸y=Uóü™3×çÏaõ§Dá ´à®öžA3pFâzKñ=m׃‡gЛ¶ðùös‚* $ðû'ï?³ÿ-RÝèC=þ€:âiÆÑz¸§Çg50ã! ¼ûÛªÆãxšq´>†/½° g+¯ßÖ?î*½sVs<Í8ZoÝ ~Þ¡§íxìMyluº„Ë “õP—Ê;°C’ ¢~ÿqƒ½}I°hë#É:Lðžîh(»ÒPÔÄO3ŽV7Üúµ|+fïôŠápêCwþ˜Ã©ïÝ¿sêÿÛôÜ!g$®wûmÐý‡„ÝOÊQ·Kú»|˜'¯.3LÖC½O;ö¡IȯÛPqFÃŒ‚(¿½¼ôu!Œ„=ë©v”þÉ£G«Ñºòj .¯$AßkT l8fmûü!‰% ÚñØÑl8f­»?Oÿë$hã±[« 4ãh+Ø38©$A;ÚH4N GÁž{è¤Nîô£½­‰HÍ8ZõQâ„N4$èú=¡ñéO3Ž6‚½ à‰†íxìðôˆ§GëÁ«TóôXhã±›§G<Í8Ú öžhHÐŽ6žñ4ãhµR4ŒÃ™‹ìÆÙ²±ÌgÑù÷ŸG½eü7%Ló}g´À ¡ºÑçÚ»;͹C¡·šs<Í8ZöŸ…IÐçïˆÌÐ0£`#ÌËÛ**k(tõ¡Ã9f¬‡y†Ï¼$èã¡Gd¶€†[aFϹ$èjÛç h˜Q°æÇ© Ä”B‚>÷—­£}"ÄÓŒ£õ`—÷ð€¥qô=¡•ôSpFâzÈ×óÄ/tC“Þ[Þº›‚3׃¾õ=4y"WoOŒç{p™a²ç :­“€µ×ðélÎDà2Ãd#ÎCõUÇö‘{«ßrÝ>rgàŒÄ Ÿ+Rl}„n€íµ‘¡ºøÅõù†ø*²Àõ‘0¼Œ„Ë “õ8ッ^߸þÌá\f˜lÄÙñŠPs ¸;^´iN3pFâFÐá+4’ôëô™vÐo…ÝölDo3ÐVã=vSõb±æåÂÏó|“–¢¤àŒÄ Ÿß¨F¶ö wÎÖFž@3޶¢]_³6'„—n‡Í aŽÎP]|ïx3«u½ðN?äÚ:}&ÐŒ£õpÛÛMØÀv^tãÉÛ[y‚Í@[ù8öà‘ÝY£VóHž37B~¾,+‘I¦‡ýzmW>õO¢Í@[÷|»«ÕRHàfòÙÜÆ3pFâzЗûä Ô–~¸æ-—Ã>Õã¨!ÇÓŒ£õp¯ó„­á¿äe·Aø}©Œë=8#qýçܺڌߜtú؈0›‚?‰6m+Þ¾O“¹‹¨/¹ß…• ÿä}B'œô¤ÏP£å›¶ÞFöiBç?$ìQMÂÛÓ6<Í8ZöÔݾ5Œj'$ðiþëÕã¨áÆÓŒ£õpåÊI\+!A¿ZÁš6\f˜lDúœù< ú^”­BhÆÑF°wç Ã3äE[‹øæ92g$®‡|Z*/ô¶·ïBëÇÛÛ7žf­{¾]¯„j'$pÏ÷Râ-<g$n>Å“ ÎÓœ˜àiÆÑz°xÇ$AwZÊÓ<˜ aFÁz˜×sY(!aO½öØ—¼ÝåÃfgàŒÄ W¾Ý>d?®_þ4>5Øp™a²è{U²&#!wúoؾ’L°hëáÞÑm„žr÷wš ÕªÁ.ƒ\5Äs‡o$lã¿æ6a3ÐÖÞ¯´‰€“%ý‡cÍ/3LÖã<”=&`!aŸ³ùþéÈq{ÃN°h_^«uĺ€|Lº#²î‡—&qÞ±‘ž°çˆñ®lIh¹uÍ8Z½ÖÆobzD¼ºÝ6m=&åÓËÃ>éT¦¢÷§>•ÅôïýfmWçè Õõž9•û½€Íœ„í87îœxšq´íÁû’‹»‘°ëÏïøÓ²ƒiÆÑF´÷Û[V ê ¼~oì8(GtõÆ §Gëá^¦ [û#!«%ŒÖr%flDÙÛaâãu¡ïëj܈3×C¾xø#A{<>lgàŒÄßkϘ% ûv²F;76Žïܨ;dàŒÄõ˜og'‚>: ܸܩ=æ 6m#âë[!7šoõÏP¶æ8#q=èûéi{<>š'Ø ´Õ€ƒËUtg_§;|{uHkÛp˜Q°ZàpËÚkTZ£[ÊgN6m½Ñ9>Þ<´^xï9 ZSpFâFÐg÷À[/ÜóèáÁ5g$®}8Rlù‘„Þ[Óesé4Gg¨nÞ>‘ÞZí(î=A•;ð2ÃäZ˜Å0è^}èæ ^f˜¬zJè‹ôÄÍ[;Ú‡‘ œ‘¸tt—¤§lœ%hFà2Ãd+Ð=¸O’ ëwÞÇ<Í8Zv9îÍaIàõÓþã¢'PçGá>k±È Û¬—4—îrt†êFØg÷±ñåNÁíE;4£.vð4ãh=Ü˸á§yúÑV>ÿ”íùI‚Í@ÛùcŽ@Lõ$è³óìˆÔOÍ8Ú öžëIЯF‚ÊO–½‡ÂŒ‚õ0¯õúûl¹Ö«Ží“eÎHÜú4 Ëê$l#û‰Ò?y4ãh#Ú3ºhOOÚñÔá­†uGÓŒ£õXïð% Z_²¶/tð4ãh#ØŽ †öÁ{¿×é÷ÏÉTûè¢3T·^2 í%¼ÐÁÓŒ£`ËܸÌ)öù3~¾s³}“3·b>BYðñØÖM¾ñÜ.3LVã¼öó½ïðtyÑõWoÃÓeÍ8Ú¶w&ŽÚkíó£Íc6^f˜¬z„·ô10 È6†aF· zÊÕG·f°Ë ×±{©]§_´Yyi]©§àŒÄõOSíˆqëjý¢]]°§àŒÄo¯+ñ`k1úýÛŒŸ_^·»}ªç_ÐRì ›¶ò¹Û¡Ó x8žÙx¹<>CÂe†ÉFœgðªà%/#t2#×£ž~á2Ãdã\ñ«hx¿) Ý?z¿Ó'zþuhÂÓŒ£õp/]}C¨9çYÇЛsž œ‘¸ôá>Jå[7–/úö²vqâïŸzØûaëß É°h[ñ^±S Ùq¥ÁÔ+g`F=Üp›¶ú>N|Rƒ2zoìpÛ ´68×ßvl^é,Ž¡æ•NÎHÜú†M€è {Zʨ´”Y 7œfmtz·=)ö¢Gn3ÐÖ›ßzIû—xž’`3ж>a²$äûÌ[~'Ø ´pï|£€î蘫Ò1µ Žšq´nÿxÎÁ îê˜á<g$®}žü~8 /¸ëÑÃYxÎHÜ ºü~Ïׇ[IØÆ;N­grhÆÑz´w¯yw# ¯xð4ãh#ØÕkVÛ“”ú¥¥íIJ‚Í@[/ZoùO0ÕߥüœeIµ”9yþoû߸ÿ×e롺޷Û=˨DŸ^¿§ez\»z;ð«®Oð4ãh+Üo#-¬ëûü)÷Oǫۻ~‚Í@Ûø‚ßT"÷V­°y7,g$n}÷OŸáUJÁëÝsî”î©®Qð4ãh=Üûä¾ù7¾>)¸ãÁ{åÁÕÕ žf­†{ïü_­ gËîxðAyp-[N Gáþ-g#«ì$äcf˜ [ 4ãh#Ög©Xd'AßgÐÖ@Í8ÚöíƒÐ¨ žn^OÞšš¤àŒÄ­ ¯àº/ ÚÑV¢Õêšq´ìó8 p¤§ìø8ì<Þíû…9êp’`3ÐÖÃ=t¸öH‚ªµfš‚37B>àK?ôÄÍù¡¹j•‚37‚¯ý Ñ0Jßžzg)$hãøLsn…§G«/íÃT›ÕZ˃ÚhÙç‹Íй‡nLísf‚Í@Ûˆ8¼äC‚®7”p¡*fm»örYsò]hÇ`N¾ñ4ãh=Øc×Ãi$ð#«úüÞ~óâO3Ž6 /f’ ]2Z‚M GëÁžà¥L´ã±ÃX<Í8Úö«Ó Vgô´Íƒ'ÍËÊ›¶pxÎM‚î´bzó: 3 ¶Â\ßm_¼OCƒŸ§ßöÕ{ŠÎPÝ |- l^¿º~)øÄÉ>͵^Ù¼¤üž6‚]­ï6/p ]ìøO3޶‚^* «ã`xyƒ†ëažk•´æTÛÛã™6\f˜lú5ùbÖb$èã„L°hëñ^ºÚvsóº¦ÐŽf^×àiÆÑF°ÇÛK#˜3$í×0o­¤àó$ñþÀËæçÿ}ŠwÎHüŒùÿ}ŒùÛùWÜb²àåýœ¶6¯&3pFâFCŸ!€ e 4à2'Áf  9j‰³È9µÀAÃ#Ýa†/Hе‡Ž/mÐ0£`=Ìë܃“Wtõ¡Ãù6f¬‡yƒçQ$èêC‡s?4Ì(Øóìê'ñ‘¹ÀçÒàS>Ù<4Ãe†Ézœ]_X‹̾o•ÅÇe°Ë ׈ïPûRcûY‘bwVm¼ý´HŠÎPÝûùI;ØÄB®7•ð\—&q^gì˜GBv|u`žïöíýU 5Þf ­¾#ÁßÔ ” ß6m¥ Nÿu÷ûÇÙ ¸Þob Y†Ì0ÙˆsïËB‚ÙÂKö4Ui»j¼Í@[éë1|SðþsÍæÜ‰g n´Âéµ0@œa ™Úˆ8ùý“&3L6â|~?—Ž=Íc×ڞ뜸ÑßÝøÒiOþyÿøÀw8Î@\o‡îˆ{35zȃ¾0kK/`FÁF”o‡nç HÀõ*v$"Cf˜lÅÙûåDw’MÂv´/ýzìóCø|•„ì;zm`ú\‘Kˆë“A´'ÿ\DûÅÏ»¹¡8q£ûŒõÛíëi/ÝÜ÷n¬§eé ÕÀOî¼wEÂvŒ[^úõس;}p/sHàŽçޝÏúy匣fRÞKCfß$pǃ»í¿:÷xëÎIàõoHì‡nwÆÑzCú~:Š>êÞx¬+Çf ­êúÅ'÷"Í ‘À-Üm¿|öÖÁüÙ Üñàñ4kðWñ Û×´Þ3ÇNGB{ÙçÂjGCK‰+!üêÞ¯`7Ô¬¾·¶âN%ÂÅ™B›™~s&g$n„|¹?­"HèýyÄõó¼Ü¾JѪ}tñÎî$Žq¶Þ`&w.8ÚÕÒcÛÑI8#q½©œßRE&C £†âÍ) üiq;¼½›`3Ð6Éê]ÆkpßÛF3Ù_UfÐk[$ì~ÐŽryïòaž¼šÂe†Éz¨gwê/^Íþ³6”¯RtFêFÔ—ž’À=q‰§µ8#q+è º¬BÂ6Ðö‚PŠÎP]/ ÍÞij¡\;û¿DÜpÎcö¶aÑŒÐõƾôÃm¥ò9îC™CKÂ?œ+•Úû•/üp?ߺTèeºÓ§züuTÇÓŒ£­pÏî3¼*¸kX ¯2pFâFн ÷j™ž´ççlØOÉÀˆ_6w3/á îj,á5\ÎHܺ{¥å^ë“°]ÍÅ­ÿ¤êŒÔõ¨¯ƒ?E/Šîj1ñ¥QŠÎHÝŠ;|·Œ„íj1ñ½¸‘ºuG_j_Ýl1í«£¡º¾:Z·ÞwÔ{nÿ&û°øÊ«è®A ~TfÝüj¸>Rðsid¶+^ÉÀ‰ëÕâíqO4è'e¤®_ÛàNLVE÷<{Ãr Eg¤nÄ}œ}×÷€üKžüLxE]pWG ¯¨3pFâÆÏéŸ3›ÎhXl¤èŒÔ¸ï=þÔ ý€?¾Š½Ìwûþý-}ÒÀÛ ´­ûKSáRFÁ]½4\ÊÈÀ‰ëAßGw™´ayWtW/ïRtFêFÜ'>/fì“?-3RtFêjÜÿõ¤·yY}éeÖ˜°Ë꡺º¬î;Ö_ü^º«Ñ„·stFêFƒŸýÃXxvéžg¯ÃrtFêzÜË{¹Øä—„îzöp➣3RWß¡íûó¾ÞÁŠûZô²[Ï$uY~Ogõ¿WH«CpŠÎP]‚{ÿažx®w鮟5œëåèŒÔ¡à¾–U IàCõ{[ËcqpEäßÐ*§ 4ãh=ÜÃíÃð¨j Üñà›òàZ•*fm…ûu×%ê ,ø¯ûùŠ’B/û>Ñóh«˜šq´îÝŸ-F«$^o'k§´­F’@3ŽÖÃ=Îþ±;¼N¿tÇ“÷Ê“««ô ›q¶ñé<¡†¬_’°û[µ UwͰhñ‹[z⎆2hP8œfmEû 7ìòëœè58Ì(؈òì_cÆ«Ew´QkzjÍ#Áfœ­G|îÝeC½£èŽ'Ÿ´¨¨ÕŽ›q¶ñŽÎiXÎÝñä³u1Ÿ`3ζ"žPý!¡ß'y`å*Eg¨®W®æ­ä„ö£FßA!A©U”~=5¼~B‚6ž:J¿Ê>‚Â8Z=+÷ÏžÀa­)KÿÖq`«b-j_í$Ø ´€ŸÛú°d–Üé¿dsާG¡†4IÐŽ..ÃâiÆÑF°áõ5tý±ãUA<Í8ZöН­‘°Ïí¶mÆÙF¼÷û»Ó “/$ôþük{]îö©žA8Þf m…ü-W®uŠn~÷¶}­“¢3T××:k5Ûl^ëÚH¬š×:ë^[F5¯uÖǹàOOݼÖy¾ƒãh}­S·›×:ßÓú²á× $ìNÛqm_éÀe†ÉF¨á{#ô¤Ó||GO3Œ¶b^‘ ï'¶PkJ<Í8ÚöägÂkÊB;†¾ðšO3Ž6‚ß‹"a;zd|-ÁfœmÄûü"1p5L‚®7“øO3ŽÖƒ½ã·ýHØŽ2¾]™`3Î6â=N;^3)¶£Äk& 6ãl#ÞøMV¶ã·Œo'ØŒ³ÕxÝûÊ W0¹ô#Éü¼Õß\.ɰh«¥’O!•JÏýim…?Œt lµlç(®í\t§†‹Â?Y0£`#Ì£wò /Ú/Û1Ñ„Wí6ãl+Þ÷rbL‚îÏýŠO½±uÝž@3Ž6‚=Õj­ëöá~c¿Õ#£«v8Ì(Øóì]A†Wì—íè‹á{†Í8Ûˆ7|íK‚®5’ðz3 ÖÃÜßîέyIØŽŸ0¼VϰgñƯyIØÕV^©ãeFÉF¤g=;¾J¿lǯ^¥gØŒ³xŸ·†ßú$AÏÚC‡åŸ4™a²zÃ?z9O§¼Òë·µÿV~DzXÚÊštùýfP÷ß`E3×[`ù.0leJ>N¶ör1 —&q½sX|9]ìê|_LÃeFÉF¤§ÍÕ¢Ã+»×[Gxi—&qÆ/’HØÕÖ_ÚÁeFÉz¤Ç[-±D"W[G|U—&qƯHØÕß0¾ªƒËŒ’HŸŸˆÀMá$dÇ—ÚWõ‚ŒY uÎ@\O¸z«Â¢†e„ÛŒ³V8»r߆ªÂý£äæ /+ài†Ñ¾Pƒ6ue°ƒÃçõQûnt.þ®ïGËŒÍ*IÈŽ^¹uZW—w8qcõã½öä2æ·_Ó¹eÕPš+vu Œæà2£dõ}†a\½sŽÿgd ®²SÿZ‚@^ !•¹ úFCÍ8ºkÜ GÆÚÓD­ý© ³ \ÆûÜøèËÖâõ³"×Êx O3Œ6B=­ðu |ÐÏ%¶/ÐlÆÙFÀgoæà_B‘Àî¶_¾øJSñ`‘ëÍ;^ÄÓ £6²új&þ…ß‹.÷÷ Snx½ùùíÛƒ»'wªFw<¸Ûþk‚ðÉ(Yo€sãÅÑ"×›v¼:ЧF¡.W³ ³4¸£]»íÛƒ¯àdþEÏΡ5ž¥Í³7"ñŠÃ÷¶ÑL×VgCE Èõ`ÇKxša´êÕ¹Üsç /ú|hà,ô¤{ý8WóU2 4ãhýw\nç]/¼€Ï‘ïÓ¯•Òd†Ézm霫¥†Ú÷¶Ñ>Fg–OE΂%rÚemdóí"ø‡ë?¾V§‡ÜÝ`!Áfœ­ÿëëÎÌ›:$äAOV ½Iz>hc–ÁÓŒ£X{“¾†rÎzÛJ­µ’ø^~ŠÎH݈úÖ£s¶±ýÖžJ%Ø ´­€¿ò‡Otûéõ"wúOÙ~~=Áf ­‡{sç=îe* ÛÓ3öôStFêFÔ½¹U¼Â¸-î玗3pâzÄ÷nÃçX$tÏw'²Ã‘º÷Þ™µ4÷Þ=ó7ìj§èŒÔ¨+ü„ |èÿÞ‰é¨ÐÛô ôüê4ЧGá>?®ŠMpIè®OÎStFêFÜñI. »ÓšK{j—&[¡®]Úž˜Û¸¦¤=1ß··Ù –˜l5àc׿—š_º§_ÆSó‘º÷Å(ƳóKw={8=ÏÑ©ëqï÷O/ÝõìáT1Gg¤nÄýý*cÜÂèÒ¤k°¿à_åèŒÔ¸Ÿ_І¾ßOï­ÎÔz3A ÎHÜúûŒKÔ/ÝÕ`‰zŽÎHÝŠûŽÎÂHØç“Ï O~mÚzÀ‡É?gijǢ{KCö˜¢3R7â~~…·¶#!ŸWoÈiÍ8Úˆõî_Ä3õawÏþ ™zŠÎH]û8ù×ñL½è®ggê):#u#îëÏ»HàæÝÞÍcÎH\úÜàŠ4 zÔj—Íet¼Ì0Ùˆô€=‘HOxêÿŽg¾5Boó>ÐÓ—Ïü“G3Ž6B}î…`×Í$ô¡úY†mÑŽ÷©+þ›q¶ñÛÄ€YGГ¾]÷øöS{[¥=¶~L8Ãf mÅ{‚Ï8$ðÿŸ¶;I’DZ¼•œÓô›úfXKy3ìï†D…Ëð~0©²›–ù… N±Hª×wù¹GJ>-<Úw>ìGÍM¤B^LíÖ=«` ÏÖ#þüÐ6m‘œ xòC‹Šº¼°…gçïN…mì’ñîv …GÑ>à)ŠcqŸõz;9z­ ªKû[x¶ñç×ÍiKãTèÀ“ZTÔE}€-<[ø~²yË´TȽ¾[ÿ¸ °…háž6òÜ*ôu ‰œ< °…hñ^^Í›“VNý£jwÿeüŸøÅæ?¡<&®Þ×¢Oš^ž)~Åeè¸0q½)cmý{ê–ég—Å›¼EàÂÄó35©°}˜ðg˜láÙF¼ù ÙTØÀs·/ÀláÙj¼çû3YÓ·ùÃGÖô-¢mœŸ7H… 4”æ|G„-<Ûˆ7› »þÜíëï[x¶ïáq%k¬OnÖì½³”\˜¸tðk’í³”Û®ß®Ü>K‰°…gñæ§jRa/gsŠ)žmÄûÙ³«TØ@;ižFØÂ³õxÃÊž]¥Â®-5©a Ñ6>/ìÙU*l ¡´Ï láÙF¼pÀtÌ GôSÃŽYa€-<[÷ÄèSa÷¿ qÚô„. K6"½€C¥cj2¡_vLMláÙF¼×¾jH~9ÇçíEîõN.LÜ:^• »új¶Ïé²°d=Òóį"¥UŽyå¯[ˆ¶ñ™_ŸJ<9l?|ao#N…½èÏíÝü@ ¶š }æ]F»Ú´¯èrk·¬Þ×;Ï×™Ræ;#DÛh"üÅB*ìZ¸Kº,,Yô2_ïW'7z÷Îø[ˆ¶ñyà.ÍR!_›‰Œ[ëI>-4Ú5e– »úJ¶¯'é²°d#ÒÇ 5êöEM–ëÍ£}Uç…Fë¡^çÇßä}Ù~¶Ô®-<þàÉ/z ·b¾s'©ë ¥}ÆÊ§…F¡^°o²à#Í/½õÐÈë˜Sf¹úÐŽI%Ÿ­ÿŠÛ0’»Ö}àÝ1¤oà§Òc:ŸmüŠàÇÆñäEÃËÇöä\¶{k#?=¢ U7~Ñç¼äsܽg0n{PßÌ,ËS>Í‹WgtYh²êü–4Þq¿èkÉÄÌë¤Â†`ó†]¨ºñ‹‚kÅ;ñ_ú8êGübÖÍJŸ¿C Ñ…ª«¿éÒÏ¿A¦B‡¾ùeŠÑ…ª_ç‹I5ÜTà§ûyX¦õI_êù´±(€m„ûØÉµ¢TÐæ+ä­q…àÂÄõÛÌÎP§Â6ŸÜ[Ñ…ªëalj?¥BÏÝÖÌJct¡êVàWz~/¸1åu'&#l!ÚFÄ7|nÔ>y×ÖšKûä%Dª®~êëÓu÷xšqóWu§¸0q#èûÈ•R¡›ÏîQCt¡êzà—©>¢º[{Æó›Ê™šv‘¸0q#èµü¨,]ê³^ÿ` ×C¾öõ¯¿ƒÉúÕ\ÒV›.Tª®~Ë%íž•ßM…úÉË\¤‚/&+ß§…GÁê8þ|>£âïÂCt¡êzày¡¾˜©€{½µ¸;>-<ÚuõÀ–»C9ª;÷Ü Ÿ­{íû‰?À§B?aóû@Ç›}©×_Ða Ñ6B~}"˜›K…~Ÿý¶÷§ý¼žO[÷DØB´«!ç=eȇÇÖIÞ°£—aÿN7¿np[oN%Þ:Ðf­Íh‰Ä[ˆ¶ò>ê§‚6nÁðÎUháÑF°é£~*huñê©ÐaaÁz˜§ùO˜Õ¦3{(æü;€m»²ÖÝ¢§ç–Rj“¦ËB“8çM“Ä l*lc åŸxØB´õ€Ï;…h3©Tè£ÞG]öôó§ö©^A y€-D[ùÒïôJI*ðÓýüäc~òáI?¾-¦®tø´ðh#ÜD’^ÍTØÆTÇߥØB´õ€oüO…}6“…nº,4Yõž“©°÷ÆŸ4 °…h¿>:À\§Â¼}å` Ñ6žGùTØÆƒûg'¶m5à[ß×pw—rÛÆÈàîR"l!ÚFÀ—•ýj¦Â¼¹K‰°…hß&ö«™ Ûxpw—a ÑÖ>ö5Üߥd»ÿÝMëPè²Ðd#Ôü—2võ±Û»º,4Ù5ÿuL…­>¶¿¡ËB“Pïó½Ìôë-×?t:õãÓ~œŒÓ;¾-D[ý²Z ®Ô_õüU¢-D[oƒyÃ=±p‘Jº×Ÿ{ÏÏ=ötÚù­ü¿ñ°…h_ñþ¿Oñ¾~L^>&òYaø¹Œ—D  …Gëm{Þrf7´1Ùöæ£háÑz°—~áÎ+S!W?Bê˜ óiáÑF¬§(ËTÈõ§nŸ óiáÑF¬7»]ûgÃY>Ÿz¤háÑz¬×½–¤swØëÛ·OËw‡Í§…GëÁÞ÷ÚBÏìL«“w¨Ù°°`5Ì{¿mä!&tý¶ü©_´ —“ê\˜¸ºÐkÑWMŸÕ¸ì &®7Åa"Àé]F{Ó{Ñ` ÑÖ›!Žï¾êAÙé¸0q£^gæˆs“_zœFvj*öø;XÒ2j´ðhý‡gvÊ+½ÓÀS£òë¡×ò ð׉£TØÆc{ó]ûyY15"£õ&rÝo’ÚóG䈱­¦ÿöy·7My§Ü7|†zf¤ºº0Yh²Þðf¸Q7™î‹TÞP ×C¾T_÷p°<¾Y{ðÖÒM.LÜùQÝÝcÙòøªžöàîÑ,&®wàkÞÖÄ\§¯ÞÊìYÏØB´õF¾®3}Á xrØ~=øã‹6¬¾<8ðéUÇ( ×[Ë–ïb¦ R­¥=ÍÛíi%‚mD|€³mp*"8ðä°ýzðy£ü©À¡VÞ2wˆ…&ÎÛ ™Ã{*ð烓æ%A¸0qefò£Ï#Ü¡4®_:ðb.Ú‹ùy5c Ñ6Úy>ìÄ›W¥‚®¿ž“Á“^É´ðh#Ø>Gi\v¿t ¬Z;ù¼èޱ…hë!_öè“ ºú%Çɧ…GÁþûîðÍŒ?œ7hFàÂÄõAsy¬ç9}a*èz[iïÁ—·  Zx´Þ·a$¿˜© ÏùæÈìLذ°`#ÌB^G’ñó±?Áîn„O Ö»áfu!ÏÇ6ÚH{†?Úë­ú ¹½ëÈðy€Ô¸ÖÑwÐe¡ÉFœrþ2½ËÆPë˹FÈB“@o+õL\míÝ]š¬Æyèlj!N…m´wf;¢m<ÿ–Äüp*làÁ›óÚ¶m=àÚÀáôYz§ÇnÎúУ`?6—p›TÐÆLÒ;BУ`ïhÓ†3g©°VÒœñ‹°…hëÇ™=è¤Â®~ÀÄ3XØB´­€?¶"S—ê7}¾:#·Na ÑVWëøÕ~þÉɸÕ2~þÉI€-D[oàSµÎìŸdxðöéI€-DÛ8}¨O­.YÝÓ6,,ØóŽŽ”íS“lí£}j` ÑÖ>ó‡øTØg3ùôÿÄ„. M6B½íìÁ&võ±Û‡Hº,4YõÂfRaW»}p¤ËB“P/uI|%/©Ëvº,4Ùˆ3„I…]míã"]š¬‡zWîè’ ù¼ÁøP‚gHäÓ£X“G—ôן¹}D¤ËB“õ8ç ÓycK*äúS·ˆ|Zx´ëúúj{Uý–/# ÛÓ~œ“R;[ˆ¶r¢® ß\}×÷ýB*l Ñ6ÚàŽaí“…,×ßœöÙŸ­Çú¸6ñ ø©‘&r(MDí\l!ÚúûŽãc¯àj <è´ðh£ŽìºAz§Çõ·”R´í ÃüC^ºº cÂÕ0ç§ô¨sìTÐÀ]×ãøÄŸÇ06%Ô!¸0qõeoÑ'Mßµ¸ÜßãfâÂÄõ¦8=¾uÆY…üÒ3ö}á†Y÷‹Æ>§Û0ÀÿÒKÿ„I_y½âÁë©R!ÏZFÇÛ·ÒaaÁzƒÞàñ^~¤ÂŸš¶j  …GëÑÞÙ«šô&Ïܺ÷y!Ó£H/ {š xn”~=v>)Kœ §Â®?6L¿{ãÏtRׯ°uLÑl!ÚFûÞùs¨TàÀ“·OþöíªZ—¿ZùÌÉ?û˜vH„h¾€ÃYóÒš@ë c?c2n¯£;¥¾õY¿æÚ?ÿü™õlë¿ Ï`mø Á…‰«[þ¦¾ß¨SÌTÀ½¾È;- …G«]ìÔÃÓ“Ö™ñM?›67Á…‰!‡{ðÖ òMCÞ:IÁ…‰ë!ÐN¼yž|ÓЃ·æÑCpaâzÈÇìXšçø7&n…œ=¥‚~Þ Ë8ù´ðh#Øð|¶y1xÛf3q/ct¡êFØ[Yã~*pä³lí3–\˜¸ôk?s]˜ j/Í ñ]¨ºö\å¡N¸RC-¦yª 7‚ŽÇ¼y®8áÞ îŸ‡èBÕõÀ/¾äjžgj3ͳó\˜¸ô?ÍM=zóü<&®ýú<uš›ÞmëæSÿü<À¢­ÏÎ×úíž/®3ÚRÚ§‹¶m£…¯õnÅ?Y\×çÛ9“'‹!ºPu=ðۀϣÛg/Y‡¾}ö¢ U׿.ŒàuêïÕm[þ>O V{ôyræ"ôc ¹v@çç¿øf/§­ßfa ÑV›÷·^¿ xêŸöóLž¶ì‰°…hë!Ç?uÞ¾âÉ8ðàƒöàÚr'€­‡{vö6ö¬ï‹qϼù´ðh#ÚàÇ¥áékz—ŸIHÖœ›. MÖ}Ð'S© ÇnžòiáÑF°á¥:—J †YÛ‹è͈„àÃíÅçßÄÜY*là•lNùEØB´õ€OôÉT*èê‹Ù<dÂ0W¿:âžüMËÛ­‡nžú±aaÁz˜gú*tõ¡›'}lXX°æ¹–ÔòOø²]ÿ†cÂ` Ñ6¾MÔÉS*àóî ëÒìöù]šlŹ~Ê=ç˸¹ƒÓ=ç‹À…‰A?öÜ)6ðV¶Ïùl!ÚzÀ—Ç—uó§TÀõ7³yÊG—…&qæÎŸÒ»[âæ¬Çx°‘±y¾—áú37Oøè²Ðd#Î3ø]Ç”/Û½RàøbÂG—…&¡æ+©°«Ý>Òe¡Éz¨7à‚÷|/ã×þµ“@ì"qaâzÐû=Û;’,W?làèIø´ðh#ÖÇÄ-K§Bž”>Ê_IgÂÕ(¯}?pû¾TÈõ¶ÑÜaУõXŸÛˆÍ#ðsíOjÒ´ðh=Ôù¦^ '2ð]ƒizÚ£ ZOa ÑVï8oÁgW_öyXÙ¶m#(çÙ°q™Õ ÚO=òį™ÈÏ?Záò¯3éÿ7õ?ÿ·/öƒu¡ºPuõhÛ?~¡OSŸ®yíÙ´¾Ñ§zþµ7äÓ£ÞðºÈ‚—‚J…Œ¼@Ú ÜC 6ߢm¼ø8®Üô&ˆ~ó·…gm>‘H­ßsèŸþðiáÑz°—aá¦CS!#mD;(;”ÝEâBÄõWÇç^{òQý5GpMÒœøGOôç"n4ñœá·¦ÏoyìA‹‰V[Á…ˆMÇGíÉËyÄë×Ü&¬‰·' – ããÏ-D\oâëñ'ÅË23}MÀ7jÆ€O Vƒ½ =û±SI¿2™Ú± y*ìå´'ua ÑV—€Û0ä¥T*hcW†w@ Ö÷ùQ;´Qòs›O 6‚/ fñRa¿OMK>У­hìô`*là¹QúõØÛ¿Kÿ|á‰ÉÇ ^¸¼>öäÔ33K©°6Óšk [áZCó'¨)«TàÀƒÃöëÁ¸ª§#RÞœGi°[§Úh(+¼˜‚“©ÀëÞž Ù–ññE}*pàÁ›³¸ÝžL&ØzKYtÐÇ×ô©À€7ç9¶…>¥M}.§fæ4œ V?¾-+:œ5ç‘ ¶Þ®×þÏ9+̼yô³Â^¸¼>+\á9Pó²mÅ? Û¾p‹À…‰ëïé:€³‰öêÁ6ÞSxÔ¼æ\G/joÝK‚ 7šÊFŸ ÏÖ›ÊOƒš—š™†޼،À…‰ëMeÁ޼½àC°¦Ï,Ú×ÉÙ†"Þ¼)%F¦®G}ïÿœYaι2ÿšä2g\¸0q}¶µãßËlŸoíøW'Ûç[¸0q£­£s"GB+ÛÐÚžÒ Ñ…©Q_Wú¬+8Ô`šç‹¸0q#èðœ^Z¤ÂF~P\ïBuaêzÔ¡~ …{¾{ßsÏw#paâFÐá9i{ö9ÛPsiÏ?‡èÂÔ¨ÏËûôˆ•ÈÍðY©»Wè²Ðd#Î>Ql_ez3Û×E!º0u+îhþ¬½Ärlð| ×»P]˜ºõ½èûùRaOê/êÞ†@ V¡{ÿ¸Nˆ¶ªH…½ŸÍ+¢]˜ºÑÊ'|>Ôºø¿ñ³ˆ6Ú_k^ü‡àÂÄ 7Ĺ×D·Žü¤ík¢]˜º÷¦[—ÿ75™Öå.L\ú0Á³ÆöUÑ­C ¦yU£ S7â>ããFkàÆ¡&ÓšÁ…‰AßáiLûdýÖ¡ÓÅ ¦B‡ž½}r¢ S7â¾¾®[üÜËôÞÜ`¦­)¤?; ×»˜ßá˜ZßG£æÒ>µÑ…©ëM}Ù6z“Iný¨þÆ ×ûcC)¦wø<û¼¼Ñ¯ÛÞÔù4Ÿ­·ïmÂÍðŒÕÏ+Ï듾'ÿþ€šÿæÓ£pïøz´9›qàÁµûõÔ ,Ÿ­‡{ïgz˜ üú-7òT%&®÷Þûui'5™ h-Ú•rjâ•O 6Úø÷àíÉ¿¬O®Ýo¦§þláÙzÄómóÜÔY*ôú“/½u’` ÏV#~ô=Ü¥´'XnxòA‹Š–^‰°…gHS¦w|ê•-‹7½ŒOú2óÐú”Zx´üL>XkXoÚ6&®NTŽ~Á““ÍéÃ[ÞÎI{óµäa„-<[oæC§%›³X·<ù¬EEËaEØÂ³õˆÃ£“Ö©ÀO×¼tYžô¥ÖñZx´îÞ¦wÛ<êîÅl!Úz>ô¼[*ìYßyîÍУõæ=h®ͺ¥‚~¾:¤\a-<ÚößÞó:“ùqzàóö~w_§…Gë=ɼ£94Å™ h%­‰ÙZx´Þ¶8ÇŽæÚRAÝš!  …GÁ†3ìpž-6ðÜÍùÁ[x¶ïudÏ]SAëíŸqóiáÑF°k7Š»g$kíŠD÷„„. M6Ö0ðÜq*ìú¯Øžóް…gñÞgòÈž h&Íó>-<Ú6Z.ÂÓô©°FÒ^^°…gëñÞ¦?‰Öü/Ó@3ižÿñiáÑF°áÊœ-N… 4’ö,w€-<Ûˆ÷õ1&br'to$ýI©\˜¸òk:Ϭû¥Âž•ó›j%ŸmD›¾.Kï4Ð ¶/'ù´Ðh=Ö;\ä‡ O©°N°½`` Ï6â=îäep*h½™øï|Zx´ìŸï(RW© Ïad.ÞÙ°°àj˜{^F¾ óyhü8Ùñì2ØßØz)aŸÁ¥»#U’íú+ãH•ØÂ³öMO:¤‚®¾”͉6,,Øó.ÚI’lÍ£=I` ÏÖã}ÐÓ © «¤9E†…a^ØY†ôN£=9§…F±~tN¬C*póŒ¬;9 7‚~ ³ìöõz¶«¯eûr. KV"½þ÷ï·B'~‹õ— ¼–‹õ[x¶oú²7ôkÍDYªÀ‚0?.±c,ySg¯Ç[¥GÈB“8ó×_©°k¿aëª1B–lDúqScõ• ¸Þ:ÚŒ²Ðd#Îü¥W*ìjëh\0FÈÂ’õHӵ趥⠮·Ž¶µb„,4ÙˆóN¦[—‹/»Ú:W‹²°d#ÒyÙÂ+ަ‚~.CIEÝ \˜¸rl¢×¸N|Éõ7²q¡B ÖC=ò—\©°«ïdûB‘. K6"=<{lNæ&ø¹âÿ÷_%朂paâFÐgh‚íXÈd¹úN:V2|Zh´êšù9fØY®?tû›O ÖCýȃ0R7éÝ=‹ÑïPG,,؈ñÍAÓë,×FûüšO 6B0SMþvysì\˜¸ô¹ÇFÆöi_–ë-¥}Þǧ…Fë¡þù}¸û‡Ò;=ªCA†—õ þ!/]mÙlXX°æc¤¿Œ©À¯iê¼-*&þ'è¿qÙ®*ýx7FMÙ¿ò¶?ÿ<ßœí¿þ~·îOq‰À…‰ëñù5'Ò’)½Û'ûy+v–—ýM~]L¬®<è²Ðd#ÔëõÜíuÁ,ãï ©]µ¨,.j¬p!âú;ãk¯=ùª†å: CÅ…ˆ«ípèÇ[K…Œ<ö ÅD+Q‡àBÄÕv؂ړkuÎøAÇ…ˆíp[¸õ¬TÈÈck—´Z."n´C×.Sµ9ÐÐ_Ÿ ¢âBÄõv8Œà¸Ü\ƹiä¹-(Ú$("nD|ÇF Þ2>ô 6wî!€­7ò­ŸÈïf*h#¡éîQø´ðh#Ø9ÄL¦¶Z*3&®}Ÿkç-ÝÝI¦ÝGîî„O Öƒ}üýT«;9žŸ[úù¯;áÓ£`h OÁ¦Û/wa ϶ç½zíÁËän*ðúƒãöëÁ×™ž$M¿íÞüsð]˜ºÑZ6t-¼ Ï6š <¼5/‘ojàÍ‹ä]˜ºõéJ×p+U©Ðõ;Ä¿(²…àÂÄÕÛ8ÁS¢æìÄmCíÖ»P]˜ºÑÖ·?Åjât1ëæ]ÿt1D¦nÅžvJ… µ˜ö¤Vˆ.L]ú|¥A¸SÆTèH‹qLwCtaêFÜá9R{jk~\]ûM›÷ŠÆèÂÔ¨/ïjVVîrÏiÀÈܯB‡…1Þþ<7:ôV¶ÏÑCtaêFÜwt¶Øž «lýéÐ]˜ºõe‚g‹ŽYzÖ¡Ó>KÑ…©qßñyKû|1ëг·ÏCtaêFܸs¬Ž²~íÃù9:K]…èÂÔõ¸¯>ª¶Ï³µ™öcˆ.L݈û‚÷bí룬#mƱ> Ñ…©q_òf¿TÐsF²vÙ^·Â>N{Ò«¶m#ÞûcÝÅ-¾dúZkìÜêK€-DÛˆ÷ÏÛçëëß[Jˆóõ]˜º÷­ÇgGí«Ó¬C}bûê4D¦nÄ}ÁGéöuRÖ¡go_'…èÂÔ¸_[<¨å¯TàV'öMé.†.¯—ïöïÈÚ—¨Y‡šMû5D¦®7ù}Å»øö¥RÖ¡go_*…èÂÔõ¸ÞÅ·OiŽï&Û§4!º0u#îõ‚õ7üQ¯ú~ÓÉÇðÂåÕN~®«xš—œ«Ä¥M*ìöó'ä³¼îoòyñZÆ—…&«oÐ4Ô“š_¼A7½þ û ^¸üŸ7è7:c¾Of3Ž[ÏÙ¿ò¦?ÿüùi·í¿ùóð{ƒÃ§à„èBÕõÎe<àñº=Ù~ëçÿû|ƒC¶n‚yÙãã-Õa ÏÖ{‚óž(vÊ4:ðäƒ-Ùa Ï6"¾°¦é~]ÂCKóòe¡Éz¤ç_u5§¾nh#£Öþ´ÄW„-<Ûˆø‚¯·š“^·<¹z7––òа…gë_z¼ÿnιÜ:ðäê•aZÆ%žmD|Å{•ælË­O¾(O®æZ"láÙzÄ×ïUšó,·<ùªEE˲DØÂ³ˆoÜ5mz‡Õ¯þ¹WádWH®á|ŸqF• ÚL¹'‚¸0q=ä]œÞìÁznÿŠ>À¢­¯æóGÔ¶’ ÜLa¹[y.LÜhå;:õ©°Ÿí…–@ °…g«ñžûøÀiˆTØÀs7§O"láÙF¼s}ƒ5Ô§îÕ‡vÏNháÑF¨á¼#œ…H… 4‘æìI„-<[÷0þ¹”7E¹uó¾ ÷$%Fª®NTæaÚéÃ}*ðá±±—6Q Á…‰­α÷TØÀ[Úœ)Œ°…gñ^O£UMSÁŸ²ùÀm{♽þ†ÞÌpaâFØéÓÚôN×?2ß> …Fë±áÒœRN… üÍ©ð[x¶ïùÏ é´µO¶vÒ¾ö °…gñ† Ip?6ð[6"láÙF¼éë¶TÐÆôîÕ&ŸmûXÙ«¶TØÀKÙ¾Ú °…gëñžà)\›J… ü–Í5µ[x¶ï¼q–ºBN…~vU ym` ÑÖ×õ:4´¯0ÿþ˜´&Ÿm4oúŠ!½Óg©«6,$XòÜ£3îöÎÜ£3×öN€-<Ûˆ7¥ »ÚJÚ×7tYX²éþµ¯m² üŠík›[x¶ïíÙ²«„TÐy¿Ö§«,Ük>-<ÚöQû¶™m“íê+Ù¾²¡ËÂ’õH/{qÞià7l_Óði¡ÑF¬éÕôNWÛGûäš 6¢ü¸8…2KM…<žwfͧ…Fë¡^ù³ÔTØÕŸ±}nM—…%‘ž±×¥}VåzóhŸVói¡ÑF¨tîÑ>±ÎvõglŸVÓeaÉF¤lÙß>ÇËr½y´Oòø´Ðh=Ô}”ÞéêØ>ÉcÃB‚(/ØÔ£}~—åzÓhŸáñi¡Ñz¨÷Û'Y®?tû̃O 6B½`Ýtûp˜åúC·‡|Zh´ꃿ=1øéšußö7úTÏ? G›N ÖÃ} XÝ>(f¹ÞFÚ‡E>-4ÚõþúÈëB®åf{9“XŸw#û‹¹¸0qµœ» ýLßš \Ï~±5&®6ôezÜ’ÊzôTàú<þ› GàÂÄõ Ïëcܤ”9RA?Îvk·¬mGa§­_Ìa ÑÖ{–¥¯Ú¾iäïœ×Äù´ðh½y/ã†ËpvøEç Êx9º_zfŒ†3%/:oìåÍ7SAý·w–@ Ö[ߺƒ­NüÒÛ ¶>xAü¢°õÁ À_zŸÁ€4¯–ý>[sü6ì?ÝvÖ÷ëeß²¾ÿf„ãôߪ7¸0q}ÀÙ—?G=Y/ü^Ë÷û_x>-/Þ™£#_š¬Çùº©…ø¦w¹Ìph}G„-D[ï=Öq§?y*pó wÈ#paâFÐÃi"• {êõÁ7ëûøÔß.UÐj#1ºPõ?]‹'4“ÊZǵ^GQ©‹¿Tàƒõšz—­!¸0ñ?oÒãÑþO*T]êöñ OïSA/ڔн&áËB“H¿í 猩ÀŸµÞ( ×G¹ýñÙV·’ Ü<¼ìî#paâjз«ôÊ›òÿÂC_¿ñÌûkÞøkqEû-háÑúï8O·›M…üœñ³‡[ˆ¶:@üÃgþ¼6º±¨õOÉCpaâFÔ¯¥-wö– xööÙþ6¯ä^%½ËWNî ù´ðhu’¿Í{-{êŸãSp½…¯ÓŸä ­#϶q`Úß‘ØB´õ€ïSí¹?àÙ¾¦ËÛ§MPþ€ØB´­€ÏìN%ö8iI÷[žßäóâp“e¡ÉF¨—W*…µL~ºæõ ûòFŸêùô`ÓiáÑF¸á‘Á1%Ìøs``N cxáòzèkÛuÄO=<Îw±¼py5ô{¾OžÜrRÁ#úu´û ^¸¼ü|Ý6¹í¤‚‡¿½åñÂåõàÜAzs'-‘ãÂYá°zt§ñϬŸÙ¯dþšÙ—É{ú•^¸¼ü ï·ýJæ¡Çwô+1¼py=øóó‹Öœ¥]*ìG QÛÙ¸¯%>œø¢÷0¸0q=æKÏíS w‡Î§…Gë¡þðDV°··ë>­îÜÁæÓ£õ`ß'#xKéTЃþ;z´ðh=ØÇUL%¶‘TÐyÌ9˜-›O V7gýxåÍcвf=o‹[óO¹þ7þoXþô ÄèBÕÕvø/ê;ùõIml÷¾ô´ðh=Øãüg{+ØãsuÏ 5¬¿îc¾ãåèõWfËzÞ«²e½ÿ×›üL½GµÐ£ UW·~ç¾ÖL_¿´b?ÔÝÇÚ:9&®¿øÏ"m‘™Þõú£ÿ´)åѵõq„-DÛù6Ó˜©À_;¨x+ã[ˆ¶ñõº}™6R¤>›ÉÏÙ ÞàF—…&ëqÞFò<½Ë4µVn?†‚ÞNÚhÕ|Zx´ë#_Ÿ@Û§BN¾‰ë’]¨ºøí¿¾¿nMaö‚©°{ëÑýw”.TÝûQî0ùú=M…=é?©¯w ¡…GëÑfòðóë뻳ãlt[{~ì<Íß/{^ÿ ÃüŸ¶Š±…h+‹Ÿø8Lü1ºyˆÁÙ™GéBÕõv>^'^©+·TàFË»æ Â…‰A|l6¥B7«¾þ14Dª^ <7ATÞìĜɭ(½ üwºÑ¿çëð˜ÉŠTàõ—µ9Ë„ ×[û<ü)úù&ä!5À¢m…¼òáÞo†ÓŒ×oõ §¸0q#èW]ˆ¸ÄHmŽÔî¥Q.LÜùZßÖçŸÁd}xl"Î`Bt¡êÕÀsgeàÍÃ?ƒ ÑËÀ§ë3˜yÿxÞ &ãõþÑ3ƒ‰À…‰ë­} ”R÷ZQä‹Á”O Vªó?öUõûùIµNýÈ¿f®…¿?)žÝ|û#paâú»¿^ß?¦Ô©ÀÍ¡Ô=ňÀ…‰ï~þM™ÉÌTàæ0êÎÂFàÂÄ–^¿íÅ?»X·÷ž‹8µàÓ£­p¿¤un*ì«Gü¼Ë¿@À…‰ýJÀt(xmtöLã¶q"Ó£õpïoáæŒ@©À‡Ç† ÞØ 7‚^¿‚Í=tîõ{ÌÜ#g€-DûOGþ”c¹Šó묶òŸ{0NýÚûóóÏ}Î{MÓ»–]¨º:Æ ýó/ê î¦Ïç¶.Ôu,á"l!Úê»?ôš-½• ý„Í‹vŽåi_êõ´7¢m„üøs0ÖßÞ¸1Gôv·´ðh½GÊé orÛW“·J Á…‰[1_ȳÏTÐÕÞÐ1i°§uÌš¶Þ¥üû•øC~*tk‚蟮ÄèBÕõ†>=¶ÊsúÄTÐ׺ösÇåîÊl!Úz¼ç|º‡øà©°‡ù÷Ç,ÞÐ[^Ÿòi^¼:U¡ËB“õ>eÎs j >º¹ètWbt¡êz_Öêæª/:ó¬[³Ï/:ó]¨ºøc¤§)S‹ö¦fúx£/ôúj÷§…GëÌrmÈçõŠ©G-eëîÈÙ°°`=Êëµ´b.“Sa?{*Úò>À¢­|ëR"8øóûAŸÏ û}ªçPΧ…G[á®N𿘦dÝÌÕø§)!ºPu}´Ü¶êQ“/¦)Yïլ͓”[ˆ¶òƒžeN… |fáxÓßn6˜ÔÎ%Bª®ntÂùùçŸ ?«رRç©€{}”sσø´ðè??äã±þ)T]èrE’™ NïöãÉ‹où¹‡§|™—¯¶º,4¹!Ô¼ôõŸ§VÛȨ¶‘å{\¿œf…I“ë?¦×ßûýšïs#TÝjŒµCBþ܇ÏÌÑp¶m=àǰògå©ÐÏÆòù^ÿz"À¢­OlãÏe¬YP¦û9ݳ >-€­{+n:⶯)áÇîÏŸÁ…‰«÷?ü`8©°ÏƒºÃÎ*CpaâzÌ—œ`æ•{RA«¹wŠ/ MÖ{”eØÉ)ñTÐÆ¬Þ›È …GÁ^ÀeTKŠ0ú¬OéýÙÍ\˜¸õuå§ÄR¡WŸ½ÿú: t\˜¸õuf§ÅRAÏZwØ,¿zÙârW·Ç_Me¹Ašl4’k· 7k• ˆw{®ð޾÷í¹B nE½øI%ýÚð¢l^œû¹°§ÓÞôùl€-D[ŸÍæ½¼u}*äsš<š¼ù“|Zx´Þ¶óG‡x“ðTȽ>1ô/l!ÚF¸‡ZæÞ½|È´‘Ãs/ø´ðhµÆ3^—‡S‡3!ÚF+9&vÏ {ÔŸÜ=àðiáÑêÑÛöµÑr~—ôòa÷¯yõ°{.ïîÃϧè;&|\˜¸> ï3?– üÇýüÙÜ#?÷ú¤/ôújoŧ…Gë/ý¾=¶R¾©À§IY]fzî·'}šÙ×ÃM§…GëáÎߤcN!Ra5ÿÔ'À¢mœ>‰HÝko¥{âÆ…«ažz0KåI™Þøó¥!&MƒxáòFèç<ÿIm>ºwÞ‚ Wç(S_æÚˆ©êÚ‹'YÄ —7Z{™scå«oٚݛO§þZ¸1m!Úz¸‡þχ Xó•Û¾œ5Ua Ñ6Ž®ðÛ+Ù†^ÍöÒFŒ.TÝû6qo¯pÜ8ôðí5Ž ^¸¼úñ1)åM¿RÁ›ù}1yŒá…ËÁ|U‚±ÔH|®¡Gæêˆ/ M6â¼,ôÉn*p³‘¸§é¸0q}š>þ1'êw6¾þnzŽãýãk!ÿ\w|;2ûiZçŸëæ‘Ã"\^-ßLÓÛaeJh„hë]Ìt}û<KÅÝ1{Œá…ËÁßÑ$k954zÇ 2†.¯É•—ô.¿¾ÐĪÑaaÁF”ç5`¦› þZU/ìsÿA¼py#øÀ+äž?>¯Ë;ÍxóÇ\˜¸>\þ×Ìùãò¸0Æn3®Do /\^oñÙ§naøzíf»VücàYøÇ°{q«ÅÿI7ÐÖÙ¾Ìñipò¯9l!ÚF+¿.&ncH­UJü{/ø²Ðd#ÒËŸ]ÌåQæ¡îб<Šá…ËÁßwnÎ.ò8ýNþ•;îæþÝ~Ýq§¦l!Úê=Q-ø¡àå½1¯ ä[¢ˆ¶m½ ® ³9Ç}m˜9–è1¼py#ø×yMâ9…TÐóùìŸ/˽ðyèŸøó»!j ×;}ÐtµXóa~&.L\oŠÛHν¤BîõŒ½?a` Ñ6Â=½vK°VC©ÀÍ«?Ýë¸\˜¸z¸`Úò]Ëó¤/žÇü ]ó¹Ÿþèóôï×Gã–\˜¸—}¸Ž.›®OY¿†¹ŸþèÇößxŽDƦ£]¨ºþžϯq:˜TØFZÁß1ØB´­€çÌi+ÿ,ë?åkÿ[ˆ¶î¹~K´{Êx¯®[ü£Ÿ­gå±I’”öOþüÆöÇ£ñóðF_êùôöM§…G­{Ù©ŠTØ“úÞø3,|Zx´íIï4ðÔ­‰›¹2-ì3¥uäÙ¾F •zB„-DÛøº“gµ© ¡–Ò<À…‰ë!G· x¶^øé~žxæÞpXŸôÛO´- ´ðh#Ü#;#‘ zP§îì%>¸1!À…‰ëMým3)m_*x ÁjƒÑö †àÂÄõ¦¾ü-nòÖBËß*!o- 7‚~E¢îJ¾èó~÷¦¯[ˆ¶ñ…¾)+½ÛÀsÃôë±Æÿö™7_ïZÆ^íZ´}™!¸0q£µl+Ü)6/ž3u-Í‹ç\˜¸z¼|Î[œ™ï‘m½µäM™Ä]*hãŽF÷2”O 6‚ývX…³˜KÞëix÷"”O ÖgåÛsVÎÉ~¦Â~œðúóà‡?.\¿þ?&®7ñm¡ÏkÓ»çwB` Ñ6¾¿.Ö&•±RaËïÛY¼?÷¶Ç*™³¹)•ö®Î®n|œJ|:q#] ×'†GN‘3÷ð¥õåšóa€-D[øÒ÷¯pœD*èkôñÇt/|"l!ÚF¼·Æ1:ÂTÀg+>,©Ü}7_š¬öÞK?ÕïmqÏNnÝ̸g'1ºPu=ðÃUºæµ–TÈÀ÷²Fí„‹¶ÊŒ°…há†s}kÍç¶{+aí®úÄèBÕõ°×qbæxŸ Û|t÷L%Fª®ž#°/Æß«g½WËy_ôé¶m£¥ÿùbõ÷›?RÏúkäÞµa ѶùÁ.Y•‡ºEX/CÎÕË § ý§šË¤Â6† ÷Ì…O ¶¢=sóÌ©µûfÜ©q:,,Xò´ ôMØ©À u;ÞEâÂÄ ¯½H˜ \yüÕÍ[ˆ¶ñùïW>‰Ë ùï÷2‰Ë ]¨ºø=‰ïÆN¼¥íûÈCpaâFÐ׈ÐVp©ÐÍã_}†èBÕõ‰ù¼Ô?r韚gzUaýõì+}/yz·ÖÞ¾ >¢­n<\æ€_S˜¸ÞÁ,ÃDßc› ¼uÇîà\˜¸ô±–Qt¯>3mö[îõg.LÜy^0 å©ÀƒÒî „-D[Aÿý ôU]*pc_ÌëÑ\˜¸ÑÌ×ç8ÎÊTà§ûy¬Èô¸¼Ñ¯«æõž…N 6Â}g ¥‰R÷êËãOmñiáÑz¨×¡v2ý‹ågÆ—Ò±üŒÀ…‰AG¸;iÝl{ãÀ‹¹*/¦ZœàÓ£p×—´þÔÖúØ üS£¢f¶"paâFÐçWNÚ^– {µÊG–ÇíMþ1/^íÅé²Ðd#Ôë@_á§zBGj"&n½ž?ðg/üz5öö•\˜¸¾øYîÊÛÓ‡Y‡zDXïBu¡êzkßú‘½$¶™¡ðïa Ñ…ªëí}C« ž4bÆëý£' 7ÚúT/¹‰7{0w"1&n}™ÀÁÚ‘ÖÊxÿ»›€—ÔâÓ£poµÛ›Ý9–L÷‰ºs,|Zx´ì= S‘ ¼ÚJ>-<Ú ÷ÊÞƒ“ Û¾Ø=¢ U7°–K^m/Ž5(Ÿ­‡ûµ‘—´>½Éç¦Òùã(ÿÅ~>-<Úˆu¿°‹…©°ÍÙ¦¿Ì¢ U×W?ÇPÕý«Îc¨Îfý‹Î\˜¸tp²âYrذïYpòiáÑF×ru\Ô%[*ð+)dѬ}± 7‚¾Õ>yà^ýdúzðºúáÓ£Õ:¯}®ìm‹ÚÂ÷œ™¯þj¿2“ÿþÿ­ÿþÓß»Ê>ô´1ºPuµ¯ýÇW7Ýû×*·nu-þµJŒ.T]íÖa¨§øÜSº[7ût÷”.Fª®·øaª—ÍÜsº[¿º±ãóLÝ=©‹Ñ…ª_°„K{võ¦Ï|ËdLéÕ[ˆ¶ÞÃŒÃÅ»=ãwÓõçnOùEØB´x?î¡dí”Iïøé~Þ›tÏŽ'}¡×ÐfÑ´ðh+ÜÕEè3—ñq¸4_nKœ¹„èBÕÀ¯3Ô¯´çXoºþ~¶'Y#l!ÚF¼¯ºoCX*du“³w¬GyöƤB¯÷„S¯õ„Ú®ž[ˆ¶rh‚âÈòÝtõ…t¤ù"l!ÚF¼§z¢Ï¿äÌzNà|¾zÅ¿ä Ñ…ªë+Ÿi_Àåè˜TЃ¾=Ë{r'€­·òyzl*'%…S×?+9 Oúq1¢n>-<Ú 7z =‘ h%­ÇHháÑz°—í Î«R÷úf,÷\O 6B½¯äÞ/´Qßt÷Ù|Zx´ìõÙg³¤B?áÏ]T¶§ñi_êõÔÖ` ѶBþÚ×MKA¤B?aó‹îÓô´3{þ #ät[ˆ¶òÚNz÷H¹Ö6£»Jº,4ÙôþœÎúïeTkqý¦7þyk²=Í…½Ÿö¢¯ql!ÚúúfÛÉ#|z—]îi ]š¬7ìmßÈÃ{*è^I2ú§$lXX°æý*ýSw‰¦|o¶h™ž–'}¡×PÛ4Ÿm„›=Ƥw¹ÚBšGE²+$×ñu(–YäK…mÌküµÉ[ˆ¶ðcáo K…þ|t↶]¨º>9zv-´Ñ`Zé×S`ѱ9&ÛÖÝÿ÷ÔïMûNø¦½¡!ºPuõzÇõxÜ‚ÃùE…GëË1ìŠ_*ìz¯è¨TØB´€o+özâ{’^öÏJ‹ºIK!Ì[jháÑê¹õ¹žMÌ¥ÂÖ[ ?ça Ñ6>NØ›ƒïºyÙ럯ñ&µ·m,JÜ“Ú[ˆ¶ñc‚Ý`÷—½¿j9Œ4A*àë0ffƒ/ MÖÃáqÿ1m y*ôþ<3Éö´=íK½þ‚ÚØB´ÿ òÖ‚·þ|ãykÁ]¨ººüdzl© ~Ö»dزÐd£OµP»—$·]ÓÚ—$¶m#àóHÍA¦®=­YS¾,4Ùˆsþn7±(— [¿ÔÁ]K  …G=öñXû±¶y¦B?áÏ£|¶§ýi_êõô٠ߢ­7ð|&й´L…­÷€_,‰l!ÚFÀùË¿TؽR¥ûbÑJ—…&ë¡þ;'ÞÏ;ɳn>-F.Çõk›¤Â6R¸îc2¶m½¯ ÷½|Á×.Tè³új~±å+&®Ä¹2î¯÷çÏÛyiùlHwöõ¿ñÌ¥ÍzÇ¢ U×»–m¾Üá­ö,™^´y½{Ç;_š¬÷)[ýÓïþ‘s«=Ý?rFàÂÄæ½Ósj©°¯}1ì\`.L܈ùQ+ ûg+Ù6aþÙJ€-D[ïYöáxoä´J–¯†ò)æÏ ðiáÑF¬ÇƒH…­¯¬üI>-<Úˆöu7)3Í‘ xn”~=ö+…G)š¥wøqB‘Vè£ËB“ÕƒÛ^Û“àO‚}Oë­ú˜Vn]$r5ØŽbŸmĺzí³Ò}<.NÞÉsî[ˆ¶>û;ŽZ©Ò?ûËv¯¥xýs?º,4YmÛ{?íìš_*l#Ëë-UУՆýÏ>Ø[½RaK&÷µ[ˆ¶Ñ¼¯«§˜;ÿSaî>±a ÑÖ>ä]&Ì o*ðÞH}‘â…Ë¡‡§›­«Ê›6Ý»® Á…‰!?VîŸ ù'>MðÝó”Zx´ëñšáj© ¡FÒºÍ"&n„|fúé6føþÉ Ÿm{¯]*㟪ŒÕÛ¿üS•[ˆ¶ðûl³æš }0ÞL½8Fª®¯‚¦¹>&1K̼yYý³Ä^¸¼Þê§«VÊ«{§BîÕÌ_­°…háþsÏ4oV|”Á=)°…h[È™¡TÐÖéÏhEàÂÄõþ|¦O¸Ò;Ýÿ&'i“D6,,XoÙó\ϸ—@óÛh¿”ÍK \˜¸ôk'q‹A*èiÒ7e|~ßרkeÍ\˜¸ºÓ²EŸ5]+Aîó6ÑqaâFSä/´Ra÷ÊöŸ/–‡tYh²êåïÉvâÒpù{\¸4 Ñ…ªëS‰…?ÏO…m\—è_ŸØB´–¾Ö'ã_¬Å3íXX‡ºX^¸¼ü£º:ô¯V2nn[q¯V"paâz³¾õ`œ¥m*ðÜbîš<&®·ôyóÒeżyå` Ñ6¾¿j7¬Í_©ÀO÷óˆ”éyy£Oõüê@ʧ…GëáÞúÇ2‘|H䯧Y™éÞô¼>é ½þ€n>-<Ú÷õyxî7z¯o‰óÏÎl!Úú°¹Un ôçø¶Ç|?dz||Zx´Ñ¼ÿ¦´h« l_ÃÏ.^â*(À¢mœ~t!ôãpìŸQþî·'þü8¼:#ŒÀ…‰ëY¾}×tuÚ¶]_Š¡âÂÄõ¦¸+}e• üz‰fÎvï.&®nû2Aïûqš›FZË¡µ–Ekç¸0qýýÇõ¥×ôUË:ÐqaâÆûÿøš%_ž ùZ£ôÔ$?Ÿ­·Ác:ÉóQ­¯Í;V—k ¾ç«ëþo>1ÿ «Þ†èBÕÕñèH'­SRa?¦Î¼V.L\ùp­˜‰³SAç7~ì³îÆò†?¿’®ÕšCpaâjТOš®Õšûƒ)L\˜¸: ýÓwúöTàú!ÿ¾‡[ˆ¶ñk‚Kݘ xòæÇYóâÚB´õˆó#OZ¯¤?]óÛ|ËüFŸêù´ÉV--œ§GêƒTöM~ºŸHgzYÞè×eºZr2€m´ïý€ÃÝZ«¾qàÁWåÁµœg-]KVâ&×TÐ@kAé.Žm;§–8‘J… µ“Æ“wQºPu#ìp©´q“ÄË6ݹM"Jªn…ý0gßîµY†¯™ìÈ\œÑe¡ÉFœw|‘ÝžÍú žÇf{íŸöóÂnuä °…hë!ŸáŠcã& — ½•ùDéBÕ°_s}æz-öõmŸÖÇþuf€-DÛø<Á]K{f3ëÀ+:h¯¨:a °…h!_fòò-´qß½{Ñɧ…GÁF뤭ÛÜ^6Ô6^T¥ U·Â¾\‹NíróKn¼@íx‰ 7‚¾×gûþKÖÍ ©ý)–]¨ºø×¤ˆ´(öÙMV{÷1áÂÄ•Lÿô¥¯}ûÓÖÊ405§µø´ðh½/#˜_iÝúû²‘‘¨õZÃ(]¨ºökÿ%¯¤’ ¹Wßž/ê@¶m+Ü<~¶§o³AíéÛ]¨ºø­ºû‹nÖ͇÷'pCt¡êFà¯yo/B*äqùÍ ÿü³½Žoöë[ê\1À¢­\؆O ®wÇȶ…hëmpëåO®u­ß þE®5DªnžžÑIÝ+…!Š 6Â|Õਧ[Sësï±Ü[ˆ¶ñ­Vàÿ"ù”qã­ù"ù ·‚^¯ðûS­kýlë©Ö]¨ºøžRH]í›Ó lXX°柟LïøU„;H‰Û.&n½~4÷‹ÌÓV?ÞúEæ)Dªn~bçpRa5~îiû{P‡–{"ØFÀW¼BÑž{Ê:ôš¶çžBt¡êFௌ¹C)¶>ýbgU€-DÛxýSÅ_$û²~µ–m#'ûBt¡êzà÷«XÁÜ0“ h1°ÝÚB´€/xò¶=³µ?ŽjÔZK{f+Dªn>` üšq—ÿ|Zx´î£~]ÄKÿãyåB¥­´/ýCt¡êFà—×ÊȆ¦¾êBÔ.]šlÅž²8–¡ÇûŽehˆ.TÝüŸŽ…¶ }Ü*?îÜ |Zx´ì­röó‹•ÐñVÇþ0"± °…h«ÿ÷† ¯‹q)ò8êÛl¯ïöë3]Z¸#l!ÚV¸ÍÓjî4ù ×GžÖ<9_šlÄy¬lrö¯3ox›×™¶m#àù`=q?L*ì×DÚ6žZx´mþ&žTØÀs·îÊß>%ÊB“õXü¡=¶¶"öOHø²Ðd=Ô#¿÷K…]}ìö>›. M6B½íýErê¦Ï ïǯ¬ø³S¶m#Þýpn*ìdzþt_—Nüïq»H\˜¸z¯#”ôÚK~L©(K‘_yŠj©ÐOøóIÔ»•¯O;0ο %3#l!Úz3™Ç×ghXçþROÇï†×¢·Íôº=é ½þ€únòiáÑF¸Ñróòlþ³M‡·> °…há~$2iµËTèÀ‹¹k/¦šï °…h!ßÙËËTÐP[i^GàÂÄõ/Ï kž’ ݼñÚ?Ç Ñ…ªWÏ-—^ÓC{Mµbw„]ýÛùôØÈ)©¥Ò~]µû§±d|ëK|9q«¡àÂĘo37‹• ùZìXJ|‘zãÓ£­XéS¡×_ÍmÐ^Mm{A„-D[=‹;¬}î¯f}ÈŸ$Þò4’x›ÿ›ÿý—þûûÑà.&®'nòg «¯}{øþÀtõjOóiáÑúk¿NÕËýKÃŒ›³ ÷Ú0&ný`ï_H…m,ƒÜÛ.ø´ðh#ÚÛ#÷Î:}– ý„?ÙÞÞN†dõü zÀù¶m#äÇ@_Ó¦‡ÞÍæÕx.L\ú6np;o>¿uë@{™µö¢=À¢m„¼~¼â‹Èö<¢p|œ’‘ Ñ…ªëßëgýÓ–ýyÜo'O["paâzП5÷ꇽ¹WÀ…‰A?jim÷T1Óæ(íž,FàÂÄÕý„æášj*ìAÝ™ê¯GØB´­€?¸=e[ÏËÞÑ"6\ÏJ… ¥¹a ÑÖÌaàç›S½¡;Qa Ñ6">£eU¸¦’ h*͵ [ˆ¶ð ðŒs*ìúƒ·gÊ#l!ÚzÀǾžOðNƒnÜœÖz§A!¸0q#èÃBßú™ |Ö;Äf» ´…h«…ûk®¼Êaz—§Iÿ)³½-Oûù…uÚ` ÑVëo øªáêômw:.LÜxï§:Û—?Ù6®Åð/l!ÚFÀ¯T<±tø¢é‹ˆôNi_ûðiáÑúï8=>dFšÏ¦Â¼}` Ñ6¾Žä½Ø© å©ýÈù²Ðd#Ò8&8V<Óö­ŽO€-D[øÏ»ý5l›sWU'Dª®ÏMÖ­~RÖ¿àɺ™,ð/xBt¡êF{ßWöÖâTØÀ‹ Û] -D[ø6?β¶§B?áÏcQ¶·7ûR¯¿ ¶ó[ˆ¶òu/OÞj3ãϹ'oµ ×{ôýqœ4H…mÌ÷ý3—[ˆ¶ÞÊ÷gÇBÊ+§?ÝÏïg¦÷þ~]„¬œN 6Â}¥©Û:R³Ðf» ´…h[_ùÜTèæ<Ë?9Ñ…ª]ù>Ð÷ꤚ l?|cOSa}yûä6À¢­¿¢G_?ïç_Æe=çžØu«]¨úŸÀ¿>‡œø Ñ6ZLù•iÚ•,÷êËÿÅ•[ˆ¶Ýâ-…ŽÇ=rB|Zx´:rN=1‘ ûõܬ%_š¬¶ì4V­nÞ™rËg5ʹ·¦УXï2¬yÕmW›Hó¬Š/ M6B}ŒÜÝ©ë ¤yGJ-6@SV ©¯ÇþôÚø—7|Zx´Ñ¶¯ÏÄ:I*h=Oê®îУ`ç[Qx!SAÝJwq´ðh#ØÔ‰´¯%Ÿ]Ÿõ6¶¯%é²Ðd=ΜÈm®XÞösZÉ«YÆèBÕ°_û̉[OSAoeë†ÙZx´ìõO)”¶¼Éöµ þI0—7¶m#à× ðÌÊS*lèÅ„õ.Tª®‡}þ»§5œÿî cÍù´ðh#ØÏo?°JéÐOøs—•í}xÚ—zýµ[ °…h!¿®‚&NeSA-Å=çÓ£õ`/²mz• ÝL«û§†!ºPu#ðse“¬j˜i ½4O ù´ðh#Ø{ý踮²¼í«²[Jû\%Dª®~]+§êýs•LŸ¿é§›¡Ü36,,Ø3}ðI­>´{ÀdÂõ0oWÅ<“ ÛÜÇw"l!ÚÕ€‡›2ÞÕVÒ/É:ôðíó’]¨ºøéù»Rrn©°WïýyòŒïc‰o'>éõâ\˜¸^1>®­-ÌQ(¶1PøGÏ[ˆ¶ÞÈÜK´6oŒÍô<¨-åÆ÷é‰?¿ˆZ~—¢‹Ä…‰«÷&·è³¦ïj\Ö‰Ž 7šâfÏÉÝ«À Ÿ#Æ%dÿ2. M¶âü¨÷°ö‚¦B?áÏ럻‰¼Ù—zý½—åÛB´?>¸ÄXǦ¾šÉ‡ýþ¥7]š¬Æyî{ðTCó~ø›Fú¾Uëû%Ø!¸0qu4kÑ7M´7~ S7ã¼B/}kZâ†ë/Pk^‚/ M6â¼Ìì"f*lc=â.¾FØB´€?.JçmH¼‘»ú¾kcZŒ.LÝègqýPŸ]ñáŽÇ…ˆëq°lûŠ›üèÕ¨hIÉ]˜ºÞôA}v-k8#ºÌlÐ…©ÍñQê ¥šS¡Ÿðç¡.ÛÇø´ŸßºÑÛ#ߢm…œž{K…Ýÿ¶VÆ/ M¶B}-’Ï_‘r6&ôpvägÝøñ†çýòçŸ0Ú6&ntµ¸>kºÞÓæi"&n4ÅýÑûý¬÷0ßmýP–å)ŸæÅëo=[šl„úØá1­¹yëÀذjcƒÞ¾ù¶m+äìD© ‘×rÓ^ËrýÖEâÂÄŽ×wM/—¿q¯5&®7Åq©•dýé•lS7z%À¢­|æ?x*ì^ËIúÃM—…&¡¾¾:Â+rüÊËuh¹šJ…m¼‘þU`€-D[ÿ)—ë3¼ÔõKÎYˆ“ˆTØ@HÚ'?¶mý§\ûÇOɨªÿÊÛãû‡¤Ö Ûè¶ýoe€-D[ÿ)·ùuõ%Ë‘ YÍû~‘šáÓ£X/wN…|Ý,òi#¤ÚÀ§…G±ÞFúËTàËïûÈÛa ÑVw†ÎO摳ôN`û̧…GëÍ{Ÿé­Ra¿¤{ƒX„-DÛøNßÍšÞmý­ôï  …G[цà o’M<9lÿ>øÁŸ¦Â>§3uöJ—…&ëmä˜à½Îð–¼Tà@ißKˆÛÍÀ¶ñëóÆÜ½~©ÐGÇñ×£Ó‡ùôNW[xûÔ„ 6ZÈUãâîßJ…´ÇÖ3oßàK°˜3kX*tàÑqü~ô¥GŸ¼aƒUzÇëîØÛŽ=Ï[m+ÿìZzͽl¸m£u/"l!ÚVÀщlÃN¹Tè@Çñ×£_gɨ[rRú“»÷EØB´Ær)£nöIõ/z³n¾£þEoˆ.TÝ <ºöj?GqãЯÚ~’"ˆ*oD~Áí鵬ŸÛÁǃ”¼ëBu¡êFà|ºÞžpÈ:ô¾¶'Bt¡êzàÑÓ°í§‡–zæ®ï"q!âFÄ{|rÚžÒÌ:ôž¶§4Ct¡êFàgüwmÏ”dzOÛS%!ºPu#ððÏÞ ùU=‡ýbx¡òVäñ"A{:9ëÐûÚžNÑ…ª¯g ¾H'gýzøëÛ—Ä- !ºPu=ßvôø¢Õ‘çÈ<ÔS:ò1¼Py½Ñ=¸nõwÍ8ÔSâ|Ë •·"¿Ó7§ŸôÍlþÝë¶m#âoÄä{Ö¡Ñ©=ù¢ U·?’“©© ¯'ß>U±ÜÛÍø´ðh+Ø+Ö¯4lìO^}?=§?ŽÏ'9’¨™‡RG5†*¯—;Žë[hÌßUˆ¶ÑÚW|Ü^ðÈz~O7rÁ#Dªn~[^»(ÇžnzíûˆLa*x¨É´g9ƒx¡òêϺö#¾ÜhNêß:Ô&›“ú1ºPu+ð;ö>­ÚûT.d^ô ¯¯Ù¼›GšŒ#›Ä •7~Ö ·›Ø·µÉævŒ.T]ü0À³IGjãæ¡fÓžÚâ…ʱñ1ª=¡wóPËiOèñBåØïøÞ¾ŠºyèéÛWQA¼Py=öã„wöމkæ¡§wL\cx¡òFìÁU¦#›zÛÖXâϧÆèBÕ°ïpWï™[fi4ž¹e /T^ýt}3œ™´I… 4›½ Õ…ªaÇw’zf–™‡cfà •7bí½àÖ¹S¡Ÿðç:Åš›Íð´/õú ê¬2À¢­‡üyEktJ︹åÂ?°FàÂÄõ /õ»N¾èܳ<¼§sÑ…ª¿Î~]i¸ùÛtOQ›O ÞôtÚóÇŸóƒOüb¯?¡¶õ\˜¸z¥\‹>iºÞóg嘸0q£)î:”¶—¶ný„?ŽÛýèoÉìK½þ‚VØŠ°…hë!_ñÙ‹£ú‘uàÑíÑÕÚG€-DÛùdN…<úª=ºš°…h[!_ù£Tè׺³“%!ºPu=ðÛðhë¬ã^©ÐOøs›¹Wo›£/õú j¢$À¢m„|ÆQG)"óÀ{ºkï©^ˆˆÀ…ˆQÿs"ž¸z¹pàõ,^"paâFÐ× î]f­wQÓRYÞÒC{KÕœT€-D[ùÞG”«RÁ×ßÑ¡W;u$À…ˆQv*-öðH¼ÐR€¶m#àÏ­O¬c]©Ðëoè0ho¨v -¢m„|~.‹>%¢¼[æé3¹8~…¶üàca/§ý÷³ ] -DÛˆ÷QüNô‡“ÚÙªs–\ˆ¸õç0Ö©–TèÀ :k/hiw¶m=äG/ˆ<ûÌÍEÍéåú\ˆ¸õž(zjÆ™ž]Méã\ˆ¸õ­Ùó­ôNçnÏœ&Уõ`=𲄓þ©°õ_Ò_¬ˆ°…h§·“ôNŸ­…Ú¶Ù°°`#Ì š(ƒ++©°öÑ\а…hN Y)þTè'ü9ySpÃö´ŸÓR*¶m=äÓŽÂx)+6ÐVšKp¶m#àã¶qG†üÖ¶²kmE[lFØB´¯èü¯¦¤K{("®níù‡çLí+æšùžÒÜ•ïyhÞþ[O~V/=ŠÑ…ªÿ¹ôèšë£ã<êüqñcŸÇÿ†ñÇVdpaâêePÛÜ/ìéx*l}ÊüÅ2"À¢­÷‹ó€æ=ð:P*ðú¯é¨`…àBĘ?n²#ÍÍSa¥}M` Ñ6¾¡i&ÿ¶Þ^ê[ˆ¶ñk× u³s*pàÉaû÷Á—Ç}X¤u\*l _i_ØB´õ–’¿¼H­¤¤z•öP.D\½ck[¦ƒý Ñ6ËŠNÉ+çŒÍܱrŽÀ…ˆ1ßÐY9^tK4óöra.D\ùÊ_Â¥ÂÖ _,<é²Ðd#Ô¸ò,:3^ÿ=‹Î\ˆ¸óå›wû¢3ÛÕ¦Ò¾ä¤ËB“Poà|Ö³ÜÌ8ÐHËÍ\ˆ¸óÜè QI…müžÍvh ÑÖ¾ñ?©°«ïfû’. M6B=‚3pÏr-ãÀ[éX®EàBÄ­˜Ó¥¤ÂÞËæÃ4¶m#à‹µTàÕ—Ó±ÈäÓB£hoè ܱÀÌ8ðb:˜¸q#æ;¸¯{ÐÞíMý×l¦»8Zx´ìûlÞùòpŽ¢¤Âõt›÷M-<Úˆö..= úŒ×ºAÏržO 6¢ý¸в6òò#ÿ䔉{ù´ðh#Ö¸®ÄOú¤Â:@Øîm!ÚFÀ¯/[2wѦÂÖü‹Ý¿¶m#à9ŸTàÕ^Б«âÓB£­h×Öòþ<ÕþvñƧ_ÒŸ§ °…hëÏ_PdîXN… ¼—í;­l!ÚFÀr>©À«o¦#Wŧ…F[ÑQŽ<Õ1ÖVÃþ4äùÐ5,ÿüó\-ÿôáøo7÷…hëÓ¸yƒ²Žw7])ÚOÜEØÂ³—?ª#œ;±œñ–ÄÝÇ— Ý\è6ë]¨.T]_–{nß[ÓÈK:ª]€¶½>F¦® ú¤éc¯GæàëÂÔ~Ûˆˆo)Èøö¯æÍ¶·~Ÿ諒ƒ2?íK½þ‚:”ØB´s×êí[íoi†ê‚wÔC¡ S7:\WW£Vš;Æ]“6èÂÔöxLäÔ¿ôÄ߸šÞlà Ý´7Tý1é²ÐdýW|ž3$•ÍRa?z,^½/&®Ï§a%¸RAʾéžö'ü#f\±aaÁFÓžÀ-e½:`ªÃB¶‘®U̓Œj¹"D¦®˜¸>«É„QÛ8tL3šªhÐ…©íqfxѶîtìš¾m$(ƒr5ÿ¢ S7š:®«ËÚQ-äLº4lÐ…©ëM}~|ð•SÞN}Z>Žžþª|€-D[ŸQ̯à²ö§?ÝÏóÏLÏÓ“¾Ôó¨³ >-<ÚhÞ3¶wlà¿mäÅœÕ×^Mj‡èÂÔõî¶A×Óeäñ›¾^!ZÞ9º¹O©YïBu¡êú®×Ã/h–¢ág¦nt¸ÄhßÛÈ“ë¹!5ᢠS7:\ß4}RǤ³8ÃÖ…©ëíq]þÜ¢EìIJޫ5Ë/º°[ˆ¶>õZ¯1sΘ {8~çÑïÝË-ÏûS>Í‹W9]š¬·î­çïâL>©/ÎÛOl!ÚFć¾™08ðä°ýzðëPu[[*pàÁÛ÷ãá6!ÚFSYgúîªTàÀ“ÃöoÄ÷þ`ÿšB´õˆï×ÞZJ>ðøûÔ¬"¬ï¼ÛW´{mß3H°õÖq\Mæ„*ö•ÉþXûb& ×ç‚Gþ9mV• yR¸"Ȇ…+-ûø¯ï‡ƒÞ@RƒÒ«Þô|<éÓÌþçP‡Ð£p_— Ñ:íTÀý#ãFhBháÑV¨Ñ¢Lé¦Tè‹:ܸdáBĠóâÆEåË~6Ö²2Jªn…}CÛ:~Ø+:Ðbpü÷ÑïÚŽ±I…êOî—’Þi`pk¾pÖá±Tà¸ýK¦—áI_èõÔY9Ÿm´”y,"«ˆéçýõ¬"Ÿm{)¶ÕPj/XÿUÈZx´ê>`ŸÓK…ô€­G ›p|M(DÜ ú̯z¤B7¿‡á¯Ø„èBÕÀ£Ã}ÃÑËôŽ×[LƒýûàÓ€fWΦBÇ»f¼ùò®·–iØà×´½~u¨©·×Bt¡êVàÿ\qEKÃgÛøJ·? ` Ñ6>¢¹¡†ƒº©ÐîÇ_ž•¼ó—© fè;5B 6ÚI™&°³mõ¶_”°Cô2æßéVØÍ½Á_Ôƒ¦åO!˜¶YpZ¶-DÛ÷ _,0«–ÞÎW0Ø|8ºo¾¦ŒƒAßþ,r‰u¡¬C–öºPˆ.T½xfB »5ii/¯ØJÈ]¶pxª¿¤êö˜¬Ý Žÿ>ú<ÂGÑñ#שÐGo=-Þ‚7_SÈÁõö2x¶¨½:”u¨wi¯…èBÕÀË"ü}zǶŽÛ¯Ÿ§2.¬bE¦¯­I3ãÌ^G 6Z =ñŸ Zÿýå >-5•H—…&ëo繇‘\"n4’ŸI´§ú³µðöTˆ.TÝüRKõ»Ó·™6^|wú–O 6‚ý7kFLàfÝz‡¾Hà†èBÕ›OKá~xtÚ¦þ…ŸcI…]‡Ú3CtYh²1vîhò¯Á 7žü¨ìû"ÏO°·òÀ«Øí)ç¬Cg{Ê9Dª®·˜uB÷›àa!âz“Yÿ®m‰¹¸õñýíZØÛsq!ºPu+ðµŽÀeÉtN-Ì, Ÿm¼Ÿ;¿D)D\o&|~_­~è·dÜœ>·ó],/T^o3ÛŒN1ðº“q£ÍÀ'4Õâ~‹GÆ¡¨ã|Ë •·"žî¡ÑN>Ïî?[ ·‚ÎÎ]¤‚>›Ë§"‹;߆…aþ»r!æZ²~þ{³\ˆ.TÝ |¥øùE®e{~×oán— °…h#ÿ.¸ðmBÄõ¦²£Gz=—`íõ;v|Ë •7"?< òŒ…Q*é× ¦Ïl/ca§½ý9ÛÚB´•/”üàèõƒÍ„ààú A{Þû|ôúqÊq¹F韞“¡þ_c™³Ó Ñ…ª/|F±W;uaÆ‘ ïby¡òzäîy†úN‘oÒ !º0u+îèÇS‡ÚŒã–©^¨¼ùÇûDÝB“—Iç ÇÝBC—…&q^© Ýôîž'ˆÆš¿‹‚…[1®^´õMÊ/óPèHùÅðBå­Ø£gˆ—eêq¾‹å…Ê‘ßfTÈõþ°}+ŸmÄz-oYéáTàæò܉í\˜¸ô¡¯_×ðE>çæ¡Ž±=ŸÄ •7b€Ò«ÚñÆ¡Žç»X^¨¼ùõµ–¶7?ú >I”íe~Ú—zýíTA„-DÛ9ÜÏ8/YG^TGÞ%F¦nÅ]ýë…msãЯŠó],/TÞˆü¾°óÞ©°õ«OÝéúZx´ò ¶ö0Žp—>k]ú¬5ô¬]ã¢u¥ÝÚB´õ>ŒpJÀ‘Z¼y¨clO-ñBå­Ø£)ö(oúaÛï  â…Ê‘ŸðEA{ãæ¯~ìçZ j!#ˆ*oÄ>Ÿ8<ýðö{SA¿^(ÖåÍ|Yh²éçÎtʽ© ßtýŸq:ÓËúN/=és>-<Ú˜»\QhîÒ|¦æÖ9À¦Íôî„o Ñ6Ú÷†¯GÛ“ê7þíIõ ^¨¼{ø`ºÞU/¾qä‡mà»X^¨¼ù#  –Þuhìo/áÅèÂÔ­¸?wx|^úzK7Þ«#“»°@ ÖÃ=Žxz·ùÀá­ãÒ®Kj#°…h!ÇSŽbFÃZÚQËÑ…©[qG·z꣫3ÇŒC£Îw±¼Py#òï‹cVNÇçík•ÉQ9á…ʱßñîÆQÖwüu”5bx¡òVìÑëjZS½õþÆ¡wç»X^¨¼ùúÕßÔPÇÎÝyЍ1¼Py=öÓ„ç ÷ O*{2î1¼Py#öðAöY}vuœþ~£ŽÀw±¼Py#òK@‰,½ëÐë¨ï…èÂÔ¸ããˆÚ—é)² Îy2d!º0u+îèjJ_ªãkÆ¡_ç»X^¨¼ù¹Ç'­Ž||æ¡÷Õ‘á…ʱ¿^*⎟TÐV«ñïTŠÀ…‰ë¿|·:9õ‘ ê&‰›^¨¼ÑܯªyÏKj§‚>Ï_íÜT<ŸmÍè™u™qè-Âù.–*oD~ÁeŽ”ü¼àëmGN>†*oÄþ€³ž,ÙŒ'‚Ý‘iÑ…©«WüþÓñ©†#}HáŽæš¤R¥‚Õ ÿŸmt0ùÞ6âðTØÀpÛ] -D[oÝÏO’Ñòlé]‡ÞLG’0D¦nÄß ïIŒgêщñ^¨¼ûy}OŒÓÎNg¹×_Uÿéé[ˆ¶K®F_,Gl!Úú(º]UæaäTØÀhÔ~ˆ:À¢m4ñå‘qa}ò$ú ü9o{}³/õú jÙ!À¢m…|EÇÏí#÷Ç¥~äÏÏžñõmºØëOèwDàBĨãâ=%¶ÌC¿£Æà •×c¿÷hŠ>› èÛòØB´­€Gœ´O¼¨“Ú AçãBĨ_7÷÷¥‚Þ'¢EY$Ãëü„OòÒÕ¹9l„9¢º˜Þu¨'t”FCtaêVÜçkRÔë úæo¥Bö‡ßë]¨.TÝ üµæ‡ç|ÑãEÏžœVüËöóÆZñ/À¢mü–øžÏ•™Æ·E<ÕIh.D܈z½Ðâ/¹füúI¯oúñJ®¸0q=—³ï;ÖmmZ·UnÆ|ѓ⤢E*làõo/¶ØB´õ?²é(žÃkÏ \ˆ¸óþµœ |bê%pÊs Eæ®|UÇ u 7~Ïi%¶SA÷ÆÔ_À…‰ëCÐßjá)øUÉž*q /TÞhîüª_*ìçïJ«VØB´€/àœ¨½tv,àÔ¢½rƧ…GÁ^á±ßs¯JæhSG9}J€ W£>öýÀ®k§Â¶F"E>Fª®£ÿx4KÔ\¿¹mà-m®ßDØB´vŽo#r\¥róÀ;ºkï¨z‘J.D܈úô¸s˜”kI~ºŸü¦×ãI_êùôˆÓiáÑF¸ù9ÜTØg‡813Ï|Yh²êuà—?R¡›W£»K71ºPu#ðžiÑ ~%Ÿ ¾Þn½Ú×–x‰ 7¢ÎO³¦Â®¾¥ÍÉa¾,4YuþRÔÀõ«vcÄÍÍdPÛ vaD.D܈úc¨`¥äR[I3w21&®¯‚†¿Y ­Û¾^£uc&´"l!ÚF+»†’J…]í›Z|Yh²j|ëã”›:Cug¯z J.DÜŠúJÝ|— xTÞ÷vA:,,ØòqWÇ© õ¼˜Mϧ…GëÁù·TØÕî¯=OH—…&[¡®ßnÛ»³áY7wL5ë]¨.T]ŸŽ¼¦w\tóÀˆ£nQW¯ Á…ˆÍ}=Êž…˜ÂÊúõ2‘X¶m#ä;¾¿iPº:Ï<Ð\fµ-ª³ð\ˆ¸z-Þ8^_U7£÷ÊÃÆv%lŽ .Т­Oæ¦ -(ãšSë+-ÞEâBÄF¾7H°ÒîÕ§ö'>ø´ðh#Ô¾V™ÕS;ntóÀ¸£nöRϼ‡àBÄ­¨ЈÙ^}Ìr}ìi/?òiáÑz¬+;ÓüɽJ"ËŸÚc è¹üL~*p`¬i¿M "nÄ|ú³Wœ˜ß›ŸI¬…½Û5Dª®O çO{è{v´ÓQ7Œ<úþHítT.DÜhîË™í¥Þ,×GŸöZ/Ÿ­§˜®¢ý8/Xó/™ÇŠõÒ§ã'c8®÷–€ï~.LÜxó7ôì¢ê\9ãÀ`ã]$.D\ï—Ë.µ× ³\ƒÚ †|Zx´ëØô½zÚ™¥¬×_ž½W‡íÈR„-<Ûˆø„¦—ÔĬzÎúÆ÷Ç»H\ˆ¸óóØ÷Ã?é>8ï›E!¸0q}è\ðK-'­oxI­Á¨ç¬Cp!âFSß*éo²×× ßd¯#p!âFÌw4‚ŸžMü íç~Cp!âVÌÙÙ÷TÐú®nÍ€O Öƒ½ÚïŽ?£jNôýùT.+ÖïX¹»ê›\jƞϑKÀ…ˆ1ŸÐ…=~&98ðƒ:NSGàBĘG$‚R¡›ÓY+Dª®OÅ×üQI¬u_RG+Àžm4ôÝ|¥''ÔTmÆë¿¦ç„o.D\ùví«çncL…n¾ þ-˜!ºPu#ðÃxâW7Ra-¦Ù~=÷8²7a§ÂžÏ¹âBÞ= W¿ž8n?_ŒáþžB´Fþ÷>o^Ö6ãÀXäÈÚFàBĘÏ`Z¥á0~*p`,Âñ."nÄ< — üìqnòO ¶¢]Ÿöû ïß7êÉ•‰]¨º¾ Úv4ãâÈØfx‡Û\ˆ¸ÑØ÷?g0YÛíy,íøP"÷glù´ðh#غ1 ¿!809înˆÀ…ˆë1ß’¡©À«£#‰Ë§…FÑF'äŽüíŽN‚éÛ[x¶ïÍiáçÄSï¥ã„{.D܈ùßb>1a¾ÿëæ!ºPu}~¸ï=óœ ¼Ú):æ|Zh´Ñ̰/÷¤Ë3^ÿ)=éò\ˆ¸ó£e?EòTÀ×nÕƒYÕ§ËB“­8£I¬Ym!jB%ãÀ‹ƒã]$.D܈ù°c¦gmôºôÉô°ÿ¾7Nžg|ŸøÅ^Bí½#paâúù‘}Òt5…}äCuL\˜¸Ñÿ%ˆUɬ›³ U2Dªn~¬t0þªd¶Ù_•<Ê5©À«s8G™‰O Öë‘Çôç 1Z=’`Íûï†!^mì˜ÁD–§6 7b¾ 9Uµ%ê7MeøAq¼‹Ä…ˆ1ßl*×~qF¦‘Ö~µL 7B¾/üÂ^*ô^ßuÓlw¶m=ÝtõRW‡OG1’O 6ø£ìƹü>½ÓóðûÔ^ÌlïKi/§½Óq¾-D[7šo/DNàXß^…äËÂ’õ8÷Z¡ÁoÇJüŽí÷z…àBĘ_W,¯ûxÑ3Zƒh¯pÞxµ{m/pÐB£rAkíåÍ^ûöòf.D܈ùŠæÆñ«‰R?hû¥J!¸q#昇ï)yÑû+×ɺò5øé~þÔR¦÷7:³?Aï°è´ðhã—Üÿd!y›nÝX︷DØB´ÕuÚÔ_˜æsÝM:y‘ üÇÍ^!3½oOúB¯? ·p:-<ÚháÕõT൹„cW@-4ZöУ)e¼Þ› ø)q¼‹Ä…ˆ1G¿Òp‹U*ðúê¸~+"nżþÙwIöÖÏôãÈ_°…h7…œUŒýûà¬Rì4TªRW;òö [-4Úh#袧½¸–mà‡l¯­EØÂ³­xoÜÝt©‡C-OÝö¾?íSÍ@6Ý¢­njÁ/ßÊ×O‰~±¤á¶ºTàÀXŒã]$.D\Ý9ò_Ø¿§mãÁ‘;^ MÖ;«±sáž*RÆ«ƒš£ŒÄ§…FѮ޺ñE!)ãÀOé($EàBĘdñSWÛŠ£úÀ§…FÑ^Ñ\‡£òqà§tT"p!âFÌŸåÖ@R¡ŸðçÓåÙ>ÞìÌžB¥ØB´õO‰±TàÕ×Ó‘ÐãÓB£hO`§âIæMøSz’y¸q#æ+:1t¤ 2^m+ެŸmD{'†ž…fÆvâXhFàBÄ­˜¯Ðž—öû˜nú*ÝiÇ…L¶ðl#Üå"–XÈöµàsùØ_ˆÀ…‰[1_ÞcN+dùñÜßÒ¿ñžÉ°°`=ÎsÀê8xuØq¬êù´Ðh#Úã+ýȹ9*ô®wR™>†‚^NZÿNc--<Úhá3½V— xîæ2à¼lä]~© geÞðÅÖDº,4Ùh IØTàÕ)‰#y̧…FÑÞ±Á}Q‡I}Òºƒã$nw¶ðl½@<#¹‡m´’ãê´™—ç¤×¼Ýþ}ð¥_Їo·I<8l¿|ª‰ö?ÈöÙyŸkEþó¸0q}"¸LX6PMÃÜt½OÁí.О­w*Ë~%ÈSÒY )ã·ôtø´Ðh}äY®/0{Y!ÚF3{ðYÃõV‚và0ýz쀢H*ðj;qsø´Ðh£‘PÏÝ~ÃG–ë`û ´Ðh£#9*Éÿ} [o#+˜Çtœø_Ñ” ãÈ€-<[o'ëRYø/ibØF;9 i ç\d¦«ñöŒ °…gëáÞ(Úê  ºäúCãtG 6B}ݱÇ;‹ŸÞe}ïŠÿº,4Ù 4š‹i®(l=Ú¥·îšB.LÜ ùF®­¦‚õ_Ó]æÓ£õLÉÞCS)Ï‘L×û?lj‘[x¶Þ¶÷ÚúÚ_2Ë4ôR¢x‰ 7B¾`“@Ç‘L×[ŠãÄH€-<Û ÷Á­T¦BîÕaþ‹új€-DÛ7¼În/çdÛz/ýŸqˆÑ…ªëaÿ逨'/Ò»\5qº‹£…F[¡¾Ò¯Ão°¿¿Ñ5ø¢¿>î›h#l!ÚFÄáœL{¥5ÛÐ{ ë]¨.TÝûŠMÅGt2]?gtláÙF¸¯>‹˜H­WŒüI>-tFèÂÔÕ¯C´è‹úìêÛ?åÛó©º0u½=Nýñ[c]k˜ |X”¥ÖM듾Ð먟m„{(¢ýíµ†/ùúR23Õ™ [O|‘¢ °…h?儯±Ú‹Y¿¡¼…6Fªn~ÆeŽÛoél7µ+ןÄèÂÔõ!´AßÕgŸÕÈ,µ½º]˜ºÑw¼öÖ^AÈ:ô2µ—Bt¡êFà1YÉœTà§ûye”éCû€›:“æÓ£­p¿¶3ò©€ÏYч/åùKlXX°d¬Î鸋o»ÀµïÕ¶\yv¶ðl}PƒíA}nm{û|ï„¡êÂÔVPœHï84(´×U"paâVÐgx8kÎ~f¼:0¬ý¨ júƒO 6½€™8õˆˆz×ßm#o社ûêê-D¦nô¸¸®gÕé켂¹²]˜ºÑ÷…^¶IžsÚ;·à × NKæÚ¯»m¤¹èiau  Ñ…©ëM}ŸM’óK…­­R¾ÈTÒe¡ÉF¨¯£§Äµf*h#ãì^!óiáÑF°ÁΤýzÁL#ï㪽³Þ²p!âVÄ÷ß÷'äî#þ·Ý[ÛË܇üct¡êzØ×kx NùSAWßOÇB…O 6‚=€gÙ{µ[Qûðl#o§Z3˜Õn4ïEm$ê2(ë@#Áñ×£?6Ø‘®…K…=-¿9§?}Ê”‡Ð¹Ä‡?ôa(&®Bãã3¹ŒŒm*àkRñ¡$æN2óe¡ÉÆk¹ èk‰_” x-Ûï=jÀñw^ˆ¸ô :~/Q*tàÑqü÷Ñó5v´´P*àZwd²è²Ðd½‰Lƒ|wï¸åç4–µG"¢m„;ßéWÏ4\6“ ½úFznÉqÏío ÜúAQ“dî²I…Ç_¾nܪ[*d£™»k…¶m£¥làÚ¸ån’Tè@Ki¿VÆ=W2p#è;¸bk¹ö$:tÿ}ô¹ÿó-bî0ëÏr1w¢ U×—mȇ?{wö0ëæe6Ízª U×_Öy¸9¡TÈFÇîÏdØB´pOಹ垜Tè@߈ã];ŽOF…ˆAŸwòÆàTÐzÍý9€m{‡WD«öSþ¹¾%:ÐNp¼kÇñ™¿q+è ¸½qÑöj¨³Üç•gûCÿI”[ˆ¶ð…Ÿ°H…m|ÇŸh °…h¹9òôÇobòÏì*'ãÆåI?n9UÍ|Zx´zh¾Á^»\w>"²³m!ÚFó›àD~wP*t`lh¿ö¨o¿ž•[A?ÀQ > š2DØB´€óó|©°ÑÁŸŸ °…h¿îøà•˜R!#½á¦ô†jå À¢mŒl8®}¡C;Ⱦœ‡¼¹¶m£ pJ¿ -:0@´ß-×€ã¹`!âVÐGlhÃ7î§Â®Ž¶m=àëu/7;ž ½×ßO^?À¢­çôW~’6¶1*û“˶m£_›©ÛöRÏúëãßo` Ñ6šøT=ùEÙ*ëg‡xn壖­Bt¡êFSÇ?–„_qš úÛ/gmÀñ"q#èûŸó#´,s¶õ£®_d™l!ÚFÀ4ëÔpõf*ôz[qÜŠãŽKü¸ô­/*â¼ja¦Ÿ3"^½0&n„|X+³"5%Û×@4}ʱø«)¶m#à3;A™Þi ?lÏ«òiáÑF°4ÁÒp“g*t Çñ®w|1[A¿*â¼ÃË© õ·ÇäšO 6‚}}ß…™O…}õƒë§~Ð_7°…h¿.,`––SaOú‚Ù]çÓ£ëÑ&&=Ëh×GG²6À.ãý­|¿f›Ìm©°†‚ÒÇF“ —§BzïšqÇGz¸ÑVÆ?)8Z–yÞܲq·0ØB´€Ï+»ú› x9›‹Ö8ݼóè{ÚŠösAº¿.ú .Cîùɧ}©×_Ð8ߢm„|¡ïH… 4”~<6œ,ÄocN…Œ>íIã¸ã{e Üh+ðq}‚š.̸•tsð],/TÞˆü^¹ó‹bD¶û߀VŠ ËB“P_;a˜iÎTØO:üé/|úß.|0† \˜øŸ˜?ý Ï„„GëMåx\óÁ*B¤7ï!v—O"paâFÐ8ÁŒß- ùÛ¯ÅnÀ{¸)DÜ:|Ã…^ÆWwMf;q¾‹å…Ê‘§—Ò;]CÛKWlXX°> šQmÞÏü=m´Ž¥²IÅ_øÉ´q»»ðç…GmdEs’xñQˆ¸ÑLÖâÅ!îÎöuªãó}ÏþíÀxò¯p}·äß:ã¸20ãРã¸40†*o´ö!6\ZŸ ½þ¢6à¯Gç±Ra×FOGé. MV[ÉÚ£7I·\²Ÿ h%8Þ5ãŽÏˆ2p#èàÍ'ž+=oêVp¾‹å…Ê«“—µs·ž¯2p£Íä{`õù³ûœÇm[A÷ŸôˆÑ…ª«ó„ÿ"Ýÿû«I¢/ÒýA|ûïx£ÉÃ×çôê³keç~XÏM«ÿxtrç¹;‹ÃëÝä€^Bëøp×ÛÌpA‚Þ×ö$ÝÍC-¾=IÄ •·bÿgK?­pãWAjæ\éÖEâÂÄ­ £¥nu!¦Þ‹|ãP7ƒó],/TÞˆ<¼¨u?îM›“šV¼‹Ä…‰!_*܉ޛ>|$¦yé°°`cøG/¹v|î äºþÛŽ7  í Ç ^¨¼{ósþ½9·üHQ³6çУXÃÕ༥‡ÆMœïby¡òVäÑ4­Çn;Q¼‹Ä…‰ëÃш^íø,×Ëø¼ƒ³á?•öò;þÿ yî`¦¡Ä·7&-¸0q+æxÆÎ‘^Ï<4ˆ:Òë1¼Py#öóMšwéÜr}0mÞ§@ ¶bfGõÌ®n<;Šó],/TÞˆ<¼•©õ0ÔMCiëq¨\˜¸òz¾û‹ú×øv®àc¯øEý+Dª®×¿Æ]P»ª0™Æ£þñô+2µo#¹åjÏÞ¾$€m¼¢ðMzåÂ7žÊÅù.–*¯G~ª.ê›uæó"æãqÔojÔ1¼Py+öh õÜèMC#jëÕÕ!¸0q=0 SÀ˜!TÞh03> :*v™‡žÞQ±‹á…ʱ‡oŸZÕº†šÉ8ôÃâ|Ë •·"_]‘ù«¥7§À­øãÉñŒ‰cCIæ¡áɱ¡$†*oµšW*Q:-£>þÀ¦Áþb/.#í†át«n òo`àFû¨—¾©ƒeu°^¨¼û¾à ¿&28ôÃâ|Ë •·"_Ï…¹k‡^X=ù€ï?tìÎÈ<49vgÄðBåõn~«Ský— ~A÷ôºj™‡:JG­#†*oÅÍêµ(êÆ¡¶ýSQA¼Py#òkuEæ¯3ezaQüñäx>ÒQÏ<ÔQ:*ð1¼Py£Õ\»+/žõ…—Tè'üùâÍlOãÓ¾ÙŸ?¡P|[ˆ¶1²ÖOAù˪ \o-K'#U›.L¸ª61¼Py#öšŒlÿšÑC?lû÷Œ‚x¡òVä«þ/6dýê¿ì› Bt¡êúf‚eÀ³ÀÍ岌C=es¹l>úæ.—1p£µWÃòÍŽ|on}6ã:E¢ S·â>{-þü¨îë†n|Ø•-7=MOúB¯?Ðë1gÓ£p/x.ØQÝ[à2«ºà •7bßÚ¥¾Gê'ënùa­ â…Ê‘¯×W¾ÙMy¨‹tì&ˆá…ʱßÏÉõ¦áTà³¾¯¨Ùîm!ÚFÄë%-ÿ.‚Œ_­åg ï"qaâzÐ×Ͼ;J}+\r•úbx¡òVìÑ[ÈÔÃiêWošp¾‹å…Ê‘¯W´¾ÙZyhhrl-ˆá…ʱ¯—´üîŒC%Šw‘¸0q#è+ž v”úV¸&ä*õÅðBåØÃÎ곫søþ&‹ç+rA¼Py+òøÂXåõ­™‡:Jœïby¡òFìï©lJQ®ýca©°‡G³a}ä,¢­|«´ü; ¶ç9›ÊèÔ|r5&n}Àó’ŽB_æ¡ÌQè‹á…ʱ‡ošÄoûML8ßÅòBå­È/Ô}ð©€Ï Âç«C2=ÍOúD/_MðiáÑBíˆÈ¢Øå´÷õ+Â÷…º¶‡lo·ãØó Çö^¨¼¾«h›&òÏ*<Úxñ§Ç`º~únàœ7·åVWL¦þ¿Ó÷ÿƒÿFãÝ¿ì©×î9àÓZâˉOú¬.&nļ^Ýóo«Ø<¹Ü¼­"&nýÚAK¼8ðAOðƒ7—92~ºŸ·Bfzz›ë^êùôÉ"mü’\àðÔ¯7¼Dë©_ÇðBå­Ø£Žö¯XÞ8ôöÇ2ˆ*oD¾ Öµ_&óÐìȱ_&†*¯Ç~¿¶*oœ{Ð+½‘ è…w¥V»1>-<Úø%G¸jâ)ÑîxÒS¢á…ʱ‡onÔgWצ;üª¾‹å…Ê[‘ÇÓvŽ-!™‡z_Ç–^¨¼ûùqÀ‹ô©’Tà§û¹$“ééxÒ™ýù zÔé´ðh#Üë Õøe|_Ÿ6—c2^ôæ^ôôQƒN 6~IøKn®2ûŽW’=eö^¨¼{ôKnžŒîø—Ü<Ÿá…Ê‘?^YjR±:vn4=µÈ` Ñ®œ¼©Œ94»p죊áËÈÇë±?F« À…ˆ«÷$lãõÁ:æ8'D[o.#~u¨£þ|óPÞ^â…ʱ”å8ÕÄTÐõ¦½ʧ…GÁ®ñü‹zÜXß%öE=.Dª^ <4 µßa{ó@·¾«c†:ÛÀ˸ƒQÇï õTAGøûq®*h /TÞˆý£8Ä©i¥‚zÈæJŸmû@·-zîN½yà%=Ô@Ÿ¾àBÄõ¨Oø•‰žJ\æ¡ÔQ‰‹á…ʱ¿Ö1Ä/T¦wÚ踚é.Žm›ÔMÝkåw"š 6ÂŒïqÜñxóõ¾péÕŽV¬DàBÄ­¨£iîæRs¦Íå–»Ü 7BþvÄ‘UL]};›3¡lXX°æ/`;î»yà­´·R½U,"nE½–©t×õ3 ½•(ÞEâÂÄ;·¾Ÿ ¹×§Uþ] ¶m#Üôäg*èZgØž°eÂ0/ø¢^¯2«““Ìà¨ö°êä$"nD}e×°Ò;möþ ¸0q#ä×Gnf?úõM¹*¢ U7OÏv¦‚®v‹ÍZ6,,Ø ó#v|îU¦œ Ë‹©éÔ§åìÈþ¶‘ß¿õþœ Ëö2=íK½þ‚Þºù¶m=äK¾8ÔO¤Ÿõ1¢Ùîm!ÚFÄñmŽË¶nóguB¡.}"p!âFÔÇ×AÊ(§Â6F‡f» ´…hŸ° ¤Î=Õ›Ÿn\ÿ5x‰ 7b¾\éÞ}µ© õçvß²@ 6‚}}LÊÔ4'Ä3nÎôÝ ñ\˜¸ôˆªRÁCzU½]+"nDý@÷á&¥zÄö«žBp!âzÌÏ0‘³Ì©À¡—´9? ·‚NÏ4§Â~>ù·vùÜH·è¸›êæÎE=ï¡ÞL‚ 7ZËøj-Œ©€¯ üæfº,4Y?.±Î¦´úÁ6ÈŒnªSW´ú=ZFï"q!âÕ˜sóÌeÐOøssÉö²½Ù{þ 5£`—!ÿÆ6B¾þ5‰Å ¬›#¾¿¢ U7¿á'ŽÔ­£úZ™OõÈ~}V.D܈ú>@Ã~ó–¬ ×‡Ðæ=YtYh²矴:ó6žTÈçó§4™ÿ !>-‚½†KªSã2Žw‘¸q+æ3{7O*lãè’{R„-DÛ øëc✬á‹(姯Žùí[h¡Ñƹ`EÙæ]Ø· l[¯šz°p!âêL¥´'×êU{¿ÒmáÙF+\Ñ aû&˜:”öM0!¸q#æzRßH¢·ò ¬³9î‘Á…ˆë1z´~Ò^ ¿ñê(Ñ^ …FÑÐ3í5ð~Êöx.D܈ùˆæSÕÉŠzßóï&Žw‘¸q#æËkzÈH»§>gùæ†îBly}õS´bR*tsC»£ U·?³7`¦ÂžôÚf+ÝÅÑ£­hƒCG=ìÆë#£‚ 7b¾Ñwê¦ÂÚ J?›_ K^¶ñh¡ÑF#ÙÑ´2~£v*pà­o¿ <"®Ç| (B¤¯¶Gñ„O V÷¶ïã°‘»*áÑF#àºß-µ?7J¿{Snž2UÆáÒQ¦ŠÀ…ˆM…_îI…}­O¨E*º,4Ù 53g*pൄí׃OhZVD¨—Ûß8ðÒãx‰ 7 ÿÀv*í]oˆ߯ßNÜz5paâFÌß²ÖÜÊQòW,©ì(øði¡ÑÆÜêúf(q"!<Úh$ùS§Ì i©ýÁaûñà`éÁS\Ë80Gq×"p!âVcáïL4Ø~=øŽÖLðëáS-±ýbû\ˆ¸ÞX¦Ç¥X´Sà©ÐOøóÍ5ÙÞ¦§}©×_PÇü[ˆ¶ò€¢f*ðêØé(Æòi¡Ñúˆ?h‘ ù¼Á6ZɈ–{ð]©ùÁqûñàhåÄQùÎ80p:*߸q£±LüÍt©ÀÆÛ¯G¿ÜpÑ}*p %âx‰ 7K@0x­'÷6ù´ÐhcüÙÐÔuóQ"‚m´’Í‹;êlš £Î ·bþ|3òÞš¬çìÞAÞ[¢ U7~ì¸áòøTàõ7Éqí}.D\ù<‚‰OOám¡¢§ìƧ…F[Ñž_/é ùTà§ûy¹œéí¾Ôó¨Ã'Ÿ­úó„æTÛOÊ~oÍdB󵎪[Æ7ÞQu‹À…ˆ1G¿Üpx*p  Çñ."nÄü:Q4½öîOùÍ ¾)¿ûýÏý«Ë®=µC\ívh Ñ6PNI^7e >-4ÚŠ6þM—Ökúo7eÜT3p|Zx´1Úïôtªðl£™ìhªÖQp›w4Íä(¸EàBÄõ˜/èWwî-OŒ™8ÞEâBĘÃÛG›OÎdº<7ïìL.LÜy@-%xuätÔ€ø´Ðh}Z&°;î;øÞ6Z ú[OùgA¿ë)ÿDàBÄ­˜/H3tÜ\|ÓËùsC›ãêâ[x¶îM-ã—\§FÍöë¹Cp!âFÌá³Òe©ù”LC£&Šw‘¸0q#ä;šÍw” 3^9ÅB>-4Úˆ6úUUO½jA¯HõÔ«"p!âVÌwhÜl¿7ö¦ëãOûű¶ðl=Üë0˜öϦØ{ÌWXì—½nÿº©ûï®Ô oÛk>¨¸>OrU:Yï"qaâÆ¯9¾ró‡Ü›ÿ¼_–çkgƒîâháÑF¬*a©À«ƒš£‚ǧ…FÑF¿ê©Þ­è žê].D܈ùuwdu(V3)úŨ™®i¸ÝÚ³p_çñ˜EÇTØÆQp±4À¢mÞ×Ù~f{Ýð´oóç}btaêFÔ¯­ãθŒíó‹U©À«C›£ÈƧ…Fë?ã†~eÓS`ÛÐoUz l¸q+æXNÙq›k¦ë›ã:×[x¶î~ô1¶1ØûlØB´€ <ð4—3nîúw—#paâFÐá}®íwdúA›¿£ S7¢Ž~ÚÔS’ݰ„z ²|Zh´íMä;ªƒ†|Gu0"nÄ|;à÷§¹>˜q¨Kl®FàÂÄ cÅ5§ßº5œîâh¡ÑV¨ÑòFûõ/Ù†ÞXïBuaêFÔ ›©Àk¯§ ˧…FëÑÞ,ì¸6ÓõWÓq!m€-<Ûw¾$•y¿^*p£¿ò_ ` Ñ6">pgÕ\¥Î84Ô7W©#paâVÐÑ­®½6ú¨…¥l#?¨ã;p!º0u#êuÈTàÕ1ÈQ?åÓB£hó‹b©°{m—‡¿”G—…&[¡Æ²âŽ‹]3]ì7»ØÂ³pïx’¶½nšuhäi¯›†èÂÔ¸`žÖq÷X¶¡‘Ö»P]˜ºõý„¢§Ìy`#ô9ù´Ðh#Ú–¿rÜØ™éz—踲3Àžm…»²©î‹g¶ ¿À` Ñ6>á9ñöj[Ö¡ñ§½Ú¢ S7â¾àëÙæÂrÆÏ·hœna9&n_ºJ^„%7>-4Úˆö¥j=—fº:yn °…gá>ðÄa{ý'ëPÕ^ÿ Ñ…©«q?ú_cµV•oê[«Ê!¸0q#è}YVߢ§à´~ü¦ëï(nw¶ðl#Ü«hYæTèÈÔž!Ñ…©q_л«ò+ôçî*mj~ÓÆJ«•îâháÑV°ñ kåíÆ¡î°µò‚ 7‚Žír\xÓõ·»@[x¶î^î·'moê a½ Õ…©ëq®CíÄû SA]"Jwq´ðh+Øø|¿¹tëPØ\ŠÑ…©[q_a½5§uã§ûù ºßηA(Gäçh­Zx´nzÎ9ö9NŒÌL9_šl„ú±)Ëš¥Ìêh¯wߘÂí.Оm„{ÅS*ÍE‰[‡º©æ¢DŒ.L݈ûFÏ¥wè7¥#TÓXtYh²ê…½?5¶9Éwï¬Ñ…ªal²:rµÜ¡ÞUwÓõ·»@[x¶îqÀS*Í5‰[‡ú«æšDŒ.L݈û8Ázs*+ã@·¸+Ý¢šÈâÓ£pOXK=Ó¥^»uÓõ··»@[x¶îGF’“_Nm¬©ÜYq>-<ÚöúÚ @Ù€ yþ‘§¯×x-<Úˆõ'®e¶¬#ƒ‚£Ì¢ S·âŽ'®Ú†YFžCyôta€-<ÛŠøNN¹¥‚6Fw¢O 6‚ýØdMOÚ/!»éú0ß~ Y„-<[÷t•6΂s{ìƒÁ™Osiz+šXsˆæ2ŸmüŽãÀÍT§BϾïÓŸ^çÓ£­XãÛh†æºtÖ¡Ù¬w¡º0u#îxž =Ñ>+î½×æ&êbŠO ¶¢=SÕ© ùCs~O 6‚}îÈq›ÙM×gí×™EØÂ³p?væëñ±+Éü”§°?õç¿ÿMƈ™7BþÀŸßœlïÃÓ¾Ôë/èC&ߢm„|Ç{ïöìzÖŽpÔúX}FÈ·…gW#þ]uJoäoŸRú< ò×íBô2êßéVàgra 405—3ø´ðh#ØØ÷™Ýtur\ha ÏÖÃ=OpöÑ‘õÍ:ÐNZW«æ|láÙVÄÑì#œ5M… ¼˜íÙÞ[x¶oì³-Žkžnºþbâvh ϶ÂÍ®4¦‚Vsbîê(l„yÅ~BÇuo{~_™rH¸õýmåå^cу¡ S7¢¾ÕŠÿw?Õ\9š·Ú{ÓJwq´ðh#Øð&%GVöÂ~Ñ35%˧…F[ÑØYÍTØõׯ‘Œ °…gëñ^°×8îѺéúðŽÛ] -<Û÷P»€Ò]¼Ìtuo.]²aaÁV˜±ŸÐñ½âÛF†öU8ÁÐ…©QŸj•ù{ l.í,oW[|si‡O 6‚=ƒÙ@<}œ pÚÓÞ¶ðl#Þ –TO¨·fÝt}ÀÁí.Оm„{/XTÖ©Ÿ¹½m¤ÜÔ>VM†èÂÔ¨ï Øƒ7—–·kx­¾°¹ÄÀ§…GÁ>À ,ž9N… ô„íï[x¶ïuà×þÒ;~e VÒGBºH\˜¸ôLªc„úuÔÛFúÂ]íiÕüIˆ.LÝŠúñ»ý–söãEOhî±½n´Nh¯½n` Ï6~ÊMˆÁy¼TØ@oÛž~ °…gñ¾úCZ&ð¹uxg–ذ°`#ÈôR@*èó÷›˜å 6,,Øó&dÉôõíBYã't$ÓláÙV¼Wl²£øU¿ôyÛÈ„áP§#¥Þ…êÂÔõ¨oÃõØÍõ Wû¿æŒ:lyó1í¼m y½ÚøÔÍä!º0u#êôÜt*èê¨ÓœOgÂ0Ï`ÚË‘KßÞ.G¶Æ›ö\z€-<Ûˆ÷&Ú?wÛÈ 9¨¯»: Ñ…©[Q_ÉiÒTÐÕW³9µË†…a>À‰#­»àºÉ‘Ö °…gëñÞ'°Ö¯èR?OvÛÈ 9ª¯»:R†èÂÔ­¨ÓÓi©°«ïf{. K6"ýø)‘– x/Û€¶ðl#Þ;xkW¯ö'ê8™mäœÔ7^,CtaêFÔù)ŸTصwÓ‘¨¢ËÂ’õH36ùö|7(ÛHQ·½¯jï¢ S·¢N¾KÌlWÛJû“. K6"ýsŒœ˜§O|^W<ÌÒ]šlÄùÀæÝžÏÖdyõMW{í]˜ºuú*-võl_[ÒeaÉŸ#½öÿõýó;!¬]7©ÐOøsY?ÛÇú´/õú ÇÉ [ˆ¶ò+™N«d§ÞKD~ÉLÛ“¾Š-§ÿ±iÇУÿ„Ú‘]±ËÅÙëWœfj p}0kªY„ÈB“ÿü„‡^É?¡ðhã%ŸÁõµº³ûó‡d62öª…æõãl8L¦nDŸI…]ƒÛrH!²°d#ÒW‡VÜO\})·¾W^ÊÛ?bháÑÆ Ûƒb—uýǯ¸CƒXS©ìׄ¦ZYˆ,4ÙÄò/(4YŇL¡©›Ú?Bçaׇ­WË6«:[ Ñ…©QŸ±ÄN[Áé!×Ûw[Å)†m„zs;êFÆÏ_syØH#Që«:cÑ…©Q? …Scä!W›Jc $†­‡zìÁEHã÷6ÒHô2…:U Ñ…©QÏw?Ÿ?è§cIKî±à‹Ù_ôUOà¥ÐS!Çïk©Üÿ³õo‹…çý?ú¯€ ×çÞ øª=¹:ûghöÝX+{Èõ>¥­XC Ö'àã2ÓG!âFoÞ=×z»ùÃFúAõ˜ýúqKz˜.L݈úUpá¥JS!#EýÃÇk.DÜèhqüО¼Œùï¯9õКª±˜øë]V[51†­w´S¿ÑG!âú+?·iµ^†ý°ÎjèÕ®P}ëCtaêFÔ¯Þ0?É {Ð÷”6Û] -DÛøUàåOS!oç0h¯¾šöÀ…ˆë#[>*ø¨.§K¦´—»²\#Úë]|Zh´1²¡+Aügžm¼ðàc­w²?ldlÐóê~…]˜ºõ> ®¦˜þ\¼ }ù­r³î Â…ˆëAŸòÑÔ]J© Gõ¹ý{«ø´ðh+Ø`.®ù¼è뻪Ä=?© ˆ4ï›ùSaSBÿFÊ[ˆ¶ÑÁ[×Z¯õ~ØÈè  ÔÙlˆ.L݈z> ŒløÝÍ©Ðñ¡ñÚé(\ˆ¸ôÛªˆo]J]í®PÚ±wó{Ú 6–üÅ‹½/zÉ;RA¿#J¿žzScêN Ï×B?l¤³R’lúØ¡ S7šá1¡-~År*t »j¼: "®¯ò—kC±7­·•eÀ²zxUöAïôâ}*ðII³ÝÚ³ßräï9H8ðöçW/اB¯7òüñèhn¯¹Œ—éþ1ñ y¸0q}R{Þ6Aþ=…ˆ[OŽ®ÄÛ÷~oëËÖ£k·cPC®Îš³„ÇŽ%²åÙLC­Å»H\˜¸ÑZø)ŠTØ×“S+tYh²Þ¡lãFu„ˆO>KNÇÉïm£q/hE¹á†àTè@ÈqüõèpƦo­ËfèP•Ù\˜¸ÑÊwp}Õz4 ·ž]_ÁÓ}áÙúû¹ðRBÝ)ùçÆÝTè@Èqüñè3;q“ »×ö^ûÓMtYh²ÕJÐ}$Í[2 u((ÞEâÂÄõeŸÐ…þê7Ë:óåæE~ÆÍoàºù¸0q+èð’Sßu¨w‡+ºäÄñ×£ÃÕ”ö=Ù6Û¢Bˆ.LÝè_vtµ‚ÿ¤BÄõ¦~ }©Ÿ zK›“¸0q+èð:NÝ÷çÆéTè@{Áñ×£Ã%„ö-7Ù†ÞQXïBuaêzÿrÌèj ÿI…ˆMèwÝ+ÿŒo©cå ·‚¯Cñ›iS¡íÇŽVÚwÈdzGÛ÷È„èÂÔþå@—0Ž›Œ ¸zhü|‹ÆE«9÷9•sö¸ýµF_þëÿ7Žã¿ÿ»öçœëÿþ„Ì ƒ½bðPïwfè±Ç›R¸q¨§jM)„àÂÄÕ>öŸ®[®NM…^}gZð×££%ŠöMq· õS°Þ…êÂÔ{S—qê9÷·ý‹“îA¼Pyutú[@{.9fàF›Ùêµrw>çÖÍÒωх©Wãν6¸Œ;Ðdpüõèp}khÝ÷xÛHslßù£ S7Ì®çÚÓô7~6ÆñØ©iú\˜¸tô|㪎IÚ*÷Æ¡1 ç»X^¨¼>¢=–2òܪÎÀõ63<ꌔŠq*äëÁ§/½¸ËÜ´ðh#Öã#gÁ܉wËóù+öÌ­x´ðh#Ö×yh¦Øœ™¿uh¶Õœ™Ñ…©[qS­-÷ï§BºB<:˜jm?°qÛÐl Ö»P]˜ºÑ`f|çBkÁõÆ¡ùVkÁ5&nÜrá¸ äÆ¡¹Vû!A¼Pyc¦¸`ÉÏçI¸ÑföúŽ4w-êÖ¡Q©¹£ S¯Æû5„2î@“Áñ×£讑öb÷=d{±;&n´—Í«·_íqãPïØ~¹G/T^ïÛÇM}·¶„ëmf¬¾¨eêÛk`!º0õjܹ`(ã^o2 øëÑçêFÉo x™·âîà_O¿ ùiÇŒCý;Šw‘¸0q£\ÁD¦ãk# Üzòê ï›z/…7z™ [xî[¹q¨h¿q%ˆ*oDþ€³ŽòcÖ‘±ÉQ~ Ñ…©[qG³ €H…t58þûèÏOŽñ a©à¡®çO/…Û7hdýžæ¿ë4Btaêú5 `æÇñÁn=yu‚ýMá—ÂëÍ_Ë Î:Ô»’né ø.–*oD¾ž§ý¢^“uhxj¯×„èÂÔ«qç~¢Œ;ÐÕàøëÑß<ãURÁC] Î?žÏD´W´³ Oíí]˜º1@­`âÍñÅn<ùVcS)£ðFGߨ2¨Ï®¦Æ2 N8ßÅòBåÈpVR=ùçÛ©Ð&ã¿>÷xVÒQþÈ<Ôäå^¨¼Þlò'»¸EÖTèP'ß^ Ñ…©ëÝü ÞìùR 7Z |SŒzVD½¾íÆ¡Nç»X^¨¼ùzÆù‹‚_Ö¡öÞ^ð Ñ…©qß`¼==vá§ûù3’÷ªo{ÒÏ;ÛÕÜŸmD{¯¦ß¿)}dO¥^¨¼{43Ö~õßC½#Îw±¼Py#òõÒÊ7•ùÌ_}ض‘ø.–*oÅþºÖ•vUB*duwz+ÜEÁÂõë–zJÿ‹¢jÖ‘!ÚQT Ñ…©ëm{'xòÒž€Ì:0ص)†š~ °…gŸ–€ M*xd ðÔ—bx¡òFìá[Àô´o¹ªNý°8ßÅòBå­È㻡; 2Íp¾‹å…Êë×G-×Àq]ô±uÏýY^ýîW¶.ÿÿøÿæÿ©3\˜¸1ç¨×:¾¨6g·Û«Í!º0u£/ØðlL{N9ëõ±{ìµyšQ°…gßá3žÂ[æ¡Qç»X^¨¼{øf@5Ù®^ƒ{ãЋó],/TÞŠ<¾M̱5$óШí8à •×c¿âËÊöRÄ ®ÎÆAë…Õ:ŸmE{`§òSa—”V°…g[ñžjú©à¡wÓ±#!†*oÄ~†ë?ž sæ¡Ù€£Âà •·bÖگܾqè‡Åù.–*oD~‡TG~<ëÀØ4jý°š°…g[ŸÙùåTØÀØÔž°…g[ñ~ÝÔĹÿ-ôª}¶{Ëídzâ›ÿ„o>.LÜù—"ýÌCƒ‘£ à •×c¿Á@ªã´~³úŸ7lá»X^¨¼y<-àØ@”yhúëØ@à •7b?¢·ä8®Îøé~±ó5ãü¤/õüz‹§Ó£pOp¦ÝQáÈ:0ûZ”Ù€^ß°…g[ßÙ‚TØõÙ—£²` Ï6â=ã• GM?óÐ$ÀQÓá…ʱ‡o&t|?`ƒÏu¶ð],/TÞˆüЧyúö=D™G&ž=D1¼Py#öûOašï¶Í80X•É€Þâé´ðh#ÜXÚÀ+2©° ¶»@[x¶ï½ÇÓ뎂u桞ËQ°Žá…Ê[±G¯ƒÔ'êºt‡OѶð],/TÞˆü€'{†ö 2™‡†$œïby¡òFì§ëÍÅëýí»=µx` ϶â=ƒÇΦ›20âͦ…GážÁ:^ÿJ… LÚëv¶ðl+ÞëoéÓ Úç§ù°Ö^½œª•îâhaÑúöé}Á«GŽí™‡†dÇv€^¨¼ÑÈÑ‹q=ŸÈ84×Âù.–*oEÏ©9¶ešk9¶ÅðBåØï+8Slß’±¿}ïÚqµoɰ…g[ñÆ¿i1(3E#àhÝkWæ\F¼Ù´ðèj¸çs¯Ç§_ò.¼æXÏy ð-ÁLOW¯øñ‡Ì}âx<ñ‹½þ„žt ÀË€…ëGãp}ê5]Ÿb\;H¨¸0q£)h.¿¦Â&ÿíeã[x¶ï£G˘®ý@¼åŵ(†*oľ »WŸ]Íüeùaø.–*oD~ÄÓéŽý‡™‡f£Žý‡1¼Py#öÓöf}óF•ãíûJƜԱQ%ÀžmÄ{Eëj®í¼#Àµ]"†*oŽÙñáŒC}$Îw±¼Py#òžÓ«‚êT2óP‰ó],/TÞˆýãV4Ò„TØ@O Û] -<[÷Øh>ÜS¿¿y¨Äù.–*oľÑXvmyãP‰ó],/TÞŠ<žoß/tóPÙ¾_(ˆ*oÄ~šØ;RaŸÍfbî›àËÂ’H?nè"ÃSacRs?žmÄ;àV±TàƒÑ#ºïC Á…‰«ýz-ÛÓ;÷NÜ´1J´Ò]-,ÚõŠç{Û+ø7Ͷpþõôš1U5õS27ÍWp¾‹å…Ê«Ÿûk§=ù‡*oôêøíôŽC7ͶÚw ñBå­ØÓ÷ ¤Â®Î»šwNðeaÉF¤4³Þ\;½m`ÎÕ\;°…gëñøÅq|áæOùc)üî§á‰_ìõ'Ô#„àBĨp=ÃQ7½yd$rÔMƒx¡òFìá[Ò=»nx¡<»‚x¡òVìéõÇTص1©½jÊ—…%‘^áòˆãÊø›zÇQízÕ¹b.D܈úW1ÕÒ›‡zÆöji/TÞˆ=|µgÀÍC=cû ^¨¼ûÌ¥·WKo»ÚGÂr& KÖ#=pQÄq-÷ͽã¤v½êÜ%"nD}„3Žžé—]5Ò^¨¼{øV^×΀ÌC=#Îw±¼Py+öô X*ìjÙ^·£ËÂ’H_Õ¨_o¿ýæÞqV»^uî 7¢~mà£^?› \=Ký޹¶m#âÛŸs ¼ÚtƟݯ6 × ¦cµ2Õ{kÓãóB¯Ÿ~W›æÓ¢­Pã™]G}w„‹€®ún /TÞè[ø5˜TØÕ‘¿½rD—…%둞úž“;v`dšÕ¶ß¡Ä •7b?¢¼çî›æ[‹:™SWC¸q#êSö]¦B¾>ÝpP7‹òi¡ÑF¨á‹w]ÅÑÌ#¯§§8à •7bÝÿB¼ª=ôsæOº`>€m»aÓ’ú[ªß<Юjg«¡¸q+ê;wWT*äzŸØ¾•‹O ÖC=Ã7¾ºÊ¡™‡úBG94†*oÄþº}€xcu*h ODé.ŽmÞ6ã¹÷æþpS;[u 7¢>Ü}9©«}¢c3Ÿm„¾‘ÑUÍ<Ô:  1¼Py#ö+zkÚ¦t\êÚ3Ó@ŸˆÒ]-<Úößþ¼úÄüØ6?s«|Zx´ž.Ÿw8™å¸ôæágWÇ6}~€ 7ù%³›µ²\‚`º‹£…Fë¡^ðë×<õ þâ «à •7b?¢É,ô&ÓTÐÀÔzÿj-<Ú öc ¥Z› úT?ýŽžŽ|š'ŸáÏ¡æÂ ÃÛ½>ëÅIT§‚^ùæô:Ÿm{dovMïtomGõïÒÀ…‰«wûÿÓ¯üÃÚ«ëÖŸ~ììó0ä´OÿßüïüoèõlUˆ.T]ÏY­3ž³r\Ú—y`ðQ2éWöEàBÄ>`±a®€?èsµFýG*ðY:í.Тmü˜¹G¯Gÿ¸G*ðú“ãöãÁk×Ó¸k1ëÛµcÖÚ\‹áÓ£õV²Á;$\7^eè®fµ/,ñ."nE}ª}oyÛ8ñÍ¢mÄäñ9 NN64ð5g’ù´ðh+ØhéK]}ëRmÝóIÞEâBĘã[<—"eè°Ô­ùú•H¸q+êX*/i¾hzJ2ô9w™iT6,,ØøómB¬ R*`õmo…»(X8°bx3ø¨vªúð±ßîTq¼‹Ä…ˆë1ßް9îRÊ<Щªûûõ›”"p!âFÔ,Å—ì4;ñ› ºÚ¹6'«Ù°°`ã_•bZÆ7ºµ—è‹duˆ.TÝ<¼Ï¿Z*8ÐÕ:.ÅŠÀ…ˆ1Ôêkƒ„^>Vóa™ºZõè€~-S.DÜŠ:˜žË¥š&L]ír›S›lXX°ñ n`W¥&ïô{žßœ·ßwÜîmáÙz¼z,tµ‘4§îذ°`+Ì<8îÉ<ЩªâõA"p!âFÔ'zÆ1½Ûú{óMª4ÀžmÅûqèÇY¬ûtÐýåë¢Ø] -D[ßlqÌèÄ¿1&8ðö8À…ˆmü'ÿAÌæ>s¥;3s̆…[A^©yØTÀj÷çγaáÀVˆá,¦ç"¡Ìãú¡NÔRy.D܈úŽNIùúŒc»#_ 7b~ %sü6žTàÀê¸G("®Æ|ê¯Ã‹Ü=¬©ÐŸÎÛ£ UW§„S?ìÐô¤µ’qÃÕÁ¾µ’A‡…­û±ã©6v¶_ÝtóõkéÕáM;)‚ 7¢>Ù“ÂoÊ7Œ@íeŒ\ˆ¸óüµlæýG©À´ýæ¦\ˆ¸óêuBþ:é­_}×JºÖ¿ Õ…ªßj¹$pu$j-ðÐaaÁÕ S+%e ¾°½Ä‚—ÿ·bqÅW*x`ÔWsÊêõd!¸q=êCfgñ+R¯QûåM!¸q+æàA‡öÃj·Ý[+·f½ Õ…ªa±¤xk ù†«ãPk ™ ¶‚ŒglÛo˺y /Tspê]Y!¸q#êüZlz·Ï·f¡Vù²°d#Ò3º¾o¯fÞ8ð;¶W3Cp!âFÌ´Ø¡&lÔ³n¼þƒ6à]$.D܈ùõÕ„ú¥ýx÷m#ã<®w¡ºPu+ìÜ m*àó¹ÿ^,ÔÊv1¬0X#¸ÕÁTàÕ1§½ª@ 6¢}T.Zø¢¢yãÀOÙ^Ñ Á…ˆë10Þp§Z*p`¼Áñ."nÄüoŇXEÿNˆUä]¨º^E§^°J^í…6>-4ÚhæËvçŽ"[ÆŸÒQd‹À…ˆ1_Ñ« ð»¾Rbû-e!¸q#æ”TàÕ÷§»8Zh´í©GÓ)ŽòCÆŸÒQ~ˆÀ…ˆ1^‹+Z?º¹1À_€Ñ…ª[GóXꛤޅvã@§ˆã]$.D܈ù„형J‡:AÌðþ[MúÓR2½LOúD/_°ðiáÑê…³ ö¬Øzg{P"Ò£ÆrO^•¥>-4Úˆö&œ¢ùNõU¯,¼qàÅñ."nÄ| 5Ÿ'È0ÐnZ7«¦láÙú°†Û»öÜå„óõCÎ3¿–— ½ÿÝ‘A¬BØB´ÿT ¾²NáÙÆ;¿ aµ¼ŒWÇdG%O ¶¢ý¸V‹uÜ,ú þDn¶—ãigõü z7Ë·…h!¯\ÍòUát®ìÑûªp ·b¾¿÷´œ‹™=[Éø÷Ílu» W(®Ý ­áצ^—ö‹ZCp!âF̬vÔ|`(Ãõ±}íµyƒš^ °…gScØ´çÖWgXãÁmáÙz\ö¤¯Îx{#ø´Ðh#ÚZ?r”ç3 ½Žò|.D܈ùüL'‘ös¤BÏ3%Dªn~çø}¹©À7©ý¦ß\ˆ¸ó€2o*ðZÇè)Oói¡ÑF´74ï¨fø)Ò\ˆ¸óMàãw^¦~ÐöÛ:Cp!âFÌxÓ¢c FÖ‘aȱ#Dª®~EOÝ{*„+v„ÝSäÓB£hhJÏQÌ8ðS:jƒ¸q#æzg…:>ëHf¼þƒz.ŒÀ…ˆ1H§¯¾ŸŽÄ5ŸmD{C×üŽ´jÆŸÒ‘VÀ…ˆ1ÏiUæei©ÀwÇ»H\ˆ¸óüIxâ‘‚TУ¾ë •îâháÑF°‡ ö¬Øê ™ià±QúñÔü$b*ðjîH~òi¡ÑF™F(­¾ëú…]™^ÎŽÄè^=WvØÂ³p£!j¸Ú-8Ðsãx‰ ¯Æœš¨-côVŽs^Æü܈ù‚žfC·û§‚†žæC 8Žj£`¯lø A*là¹aûõÜš¸rdÆ3^3yq>-4Úh%Wò·:Ò«=¬~çX¦ë#&nw¶ðl+ÜhžÐQ‚È8ðæ8J¸q#æÇëÚ!ÒîTØ×~ºÏ=¡çy.L\¿ýj¿â0@¤ÂŸö£¸Ý| ñ{Zoâ;mx§z§§n?²”RWÇLGÉ„O 6ÚÈ¥ <×Ñeº>b:î£ °…gWÃM­ñ”¯¿9žêT^†ü܈9ÿDH*lý÷üâ$K€-DÛø &îñíÜ©°ë#c:l;ÙoñÞÀÜ=¾U<6oØ.Ÿ»:ö¨©jýÒÂL×ûpÜîmáÙV3áW_SW§(Žª1ŸmD{¿¢}¾”¿)óó™à}È]ìž»Øå¿ñßÿâßrJ]_f{< ó‡Î;Ëëø&ÿ˜_vS]˜,4Ùõu µÄ ˜š8Šó¸ñ?1ÿ}òc@sÔí·|oëmå(“¤¯v'ŽòŸmELlzJ˜zS¡§„ ·b¾C³*Çõ™®ÏN÷7ØÂ³p/ó+cúý™ìT¸ã¢%¨³¼NùǼøµ×»n¶,$Y?h óòÈj¶ñ€k­Í›ÌŽÇ9!ížÉV¼‹Ä…‰S‡uäþ˜B’GÞèùnáÙÆ{³åÔ—zÎfì}ßùÏs²þ·þo½!ŸcB·…h=v@Í2xu2娵òi¡Ñj´ç¾¡éˆZ»Pï¼éú°ŽÛ] -<Û7\Oœ÷ñÞ44* x‰ W‡¹é)iáÙFS ¨è¤¯½öŽJT-4Úˆö‚m©j¿½î¦ëýIûõu¶ðl+Ü•B«¿èwÛú‹ã/úEØB´€Ã®Ö]¼7 uß­ûxCpaâÆÀ³k×ö+¢¶ÑTp/¯#_ãÕ.¼=[@ Ö£=ôX>°ý:®›®wàí÷qEØÂ³pÃÅ‹æ ö· u'°Þ…êÂÔ¨¤ëSW_Îö2C-4Úˆö ­éguš¬^ uÓÕW³ÁîmáÙV¸7øÕiÍR߸y7K‚ 7‚§e›÷ªß6ôƒ6ïVÑ…©ëQ¬­O±Ô^<Óõ7·»@[x¶n~Ò-½ÛÐÛÙœ- °…h[GWÉÍg2nú5a½ Õ…©Qç'URa÷¿%GZ*ˆ. M6B½B«MÇEP7]ïÛo‚а…gá¾ö S³W©À¡®°9ï ·‚ŽæÆz´à“ ùAÛO8ÄèÂÔõ¨OÉŠÕ³Ìꪎœ™®¿¡¸ÝÚ³­pã‹ÎöLVÖ¡´=“¢ S7â>ëÎöÃ<· ½ °Þ…êÂÔ¨oغ³ýr‘›®¿¤í·‹DØÂ³pïpßÒž]¹pèõlO®DàBĘøœ¨9‹˜ñ³Ü>;7‹ ׃>_•&æ&ÉT؃þ¹7wFØB´€Øú¿…!t½CÄí.Оm„{Âןí­¬C]V{F+D¦nÄ}¾6HÓÎp¤Bž´ùg+ÜEÁ«1¦f™Ë0CÃNsz</ÃýnýÚÈ;’ ¹ÚLPøõÈ;–˜h?UÓõ®»ýX}„-<Ûh!ûëwdÝ– |ìµÔx¦×õ>ÑëèS*:-<Ú 7œr¤;³Žô±Žtgˆ.L]ßÜÉí¬„ÁêdÊæ"Ä6Í%>-<ÚöO÷Èþ†c*ôþ|[V¶×íi_êõô6Í·…h!‡W9ެì/IÙ\ˆ¸ó šVµßÓqÓõéIûE¶ðl#Üøé¨÷dêÛë=!º0u#îëÀÝå‘ ùºõðÓ·àý[Sø´ðh+Ö3:r¶vòÖh×F 5W` Ñ6B¾cùØö£ö7]ï ÛÏÚGØÂ³Õ æåº¿{<­iç¯y\¹õáâãß ZþôÛábt¡êzK\{<×^tÌ:4H´WCtaêFܧ×bˆTJJ…ýÜØI+ØB´€ÏP>Òsª?ÓÕ®Ës¬?Àžm…¼.|Ðlõ³h·=¿¿eùbÞúööä—{ýMïU"taêFÔW¸3o¯;^8Ô¶—#p!âFÌh“”çÔv¦ë/(nw¶ðl=ÜzMШv,j Ï6òrꫯ6ñ]˜ºõOjõÍõެ#/¨£Þ¢ S7âŽ][ê9¿½×zpØÂ³p£wï´øå¶‘tT_½‘GèÂÔ¨ãG–…„¬C/h{%!D¦nÄœ¢Ïjc׃Ïr'µ5ê1À…ˆëß©{½ÒÛë©„V¸‹‚…žÎ<9ïK ©çßôq :,,؈òüçª*Zò*ÛgÛ©©+º,4Ùõ2Q·¼¤ÞA”îâhaÑF Wpê§ìQ¿pÛÈ 2«#–ºe1D¦®WfŽþÚ£7ízu#Op¶üî\œÿ‹Ÿ}zÓößð÷“@],/\^ý2ì| àløuË©°‘ßuU[ºß#D¦®÷ùêùzÔ—ÒfyòM‹ZŸ Ñ…©«Q_úž=ÙLm¬/½äZX´êêÚ/¿¼m¤‘ìjÔªa1º0u#ê\„h=hší“ý¼Wå…ާœ´üøZ——…&¡~ìãL@SAoeë´9€m„z·íôj_¢•¿nx÷^}ÛµXŒ.L݈úŽw&³Ò™è]ø¾™û ¼™zÿM§…Gá>^÷°Q2©Ç™zV/ MÖ=LØÔÛqÓåm#o¤ZÃØÕp‡èÂÔ­¨¿rLœ}ËßD×zêÆW~R^yupàÓ£_2nâì©(§)SA¿‘¬# |Yh²é[C9®t¼mämWSn»ºd Ñ…©Q?àÞ¤ù4NÆ÷rQÞKõ(N-4Zöx ´ÊT*àçúŒTM  …G[¡~n}fä‘RA_/ÍøiúÚJwq´°h+ÔàŠUÝö ^™yÛHï§&¦w5A¢ S7¢>ã+Öæs&·ô‚›ÖÁêœo Ï6"¾­µ¯Tðƒžcû¦rÄ —W+w˸£Éûæ d¦ž±9ɧ…Eíüsjá^½¥ô¶‘>Q­ìÚžÍ]˜ºu|aß|ÔäÖ~Q+¨'M"láÙzħ\q¶_âxÛ@[9zµ%jû5ctaêFÔ´™·Ÿ{Èx½µZÊZ=ô@ 6¢½åùó(u*tsÐoÖ»P]¨ºø\µ_×wÛÈ ª§ÆµÝo1º0u=ê3¾' ýàí/ª–hV=DØÂ³ˆÓÓC© ŸS~VR‹O 6‚}]¡RïTÔ}FêeU·¼˜z[Û¾£ S·¢^œ2¡•€æÇW¬>¿<þ"P€-DÛ÷vMù‰·÷¥Âôo¶»@[ˆ¶p4“М*Ïô©~ú-3|,ø4OÞH”³aáÀz—ë499ý– Þ<@ôEò0†.¯'—\é·_vÛÈØ£×ÔÝ¢!º0u£É磃ÄËäRa"lw¶íjÀ‰Ùæ2ÞÕnqSúÛZ°ipi'lyoKèÕ¾DÝ(šmä}Ôó×ê^Ñ]˜ºõ+[ýC*ú¢>¼‹Ä…ˆëA¯Wôü©Ãµ:àû‡¶m#àVys\}uÛÈûy¨o¿º½3D¦nDýú(8÷©TèÀŠã]$.DÜúßïV±ò†™¾¦AëÂÌòiáÑF°óÕ˼Cg©  m+ÝÅÑ£­`c‹MÇc·]ïªö^ï½uGèÂÔ­¨ÓÓ©°¾ÊŸ¦ °…hߎÊ+äOÓfû9Í¢¥il!ÚFÀá+ÔÂéŸûèÒ; õ¸ÝÚ³õ€oC@Î3½ë½ök~•® °…hë‰Úm@’ 7Ñ¥BZ Ž?Ý©6(S 5-”éúl¥ýü0Ÿm½šµü“ X}èV¸‹‚…!¯5ÃK9îœ ùìVÇ?Ï{»{?<Ýõ\æüØêTŠì É5B<ý© Ò $Ù¦"í’[ˆ¶ú±Ëe›Ðliû=§ Üh*ìÓÓé]zéæ#ßtYh²è‘ZJ\í§›+hlX8°â¾XÝ­õçzÅTèÀkˆã]$.D\úþvùÙçÕŒ¿š³?ïš#Wsl!ÚFÈG0ëŠRO… t°ÝÚ³xÏp¿"3:ðvâx‰ 7‚¾.ØÚ^Z¸/ÊÕ§‚îÒŸmû™_¤$‹SaçúÓ§çö'¹l!ÚFÀáy7|T=6ж±°…g[ñ¦'çSa¿ÆzZI. M6B}À»ð«S¡cNû­Ì!¸q=èùžmbº5t}ÜiOóiáÑF°±åksŽø°3T­nä Å5‹޴ŸúOï4ð–´_VÀ§…F[±¦g\SaWǘö<1]šl„ÿž¬ºùÏè©ÐÑÇ»H\ˆ¸ô«ªĻ‚F˜æ7ŸmÛî¨î¡9ÅáêHÓœâfÃÂï`ê¿-$vý]q\r` ÏVã½ö=šúk¸z>z½ësÜš‚ 7‚>‚©¿öüömý_s~;žmĽç¿"$6ðr6_ma Ï6â½ ’†èS¡¯&Žw‘¸q#èôÌ|*èþó>5 6¼¡‰¨æÄöm}`sb;ž­Ç{èÑUeÃñ©Ð7Ç»H\ˆ¸tzÞ2tíÍlεÒaaÁF˜¹yËôîžü÷Ë­j¢ A5û¼ÏrÚ0ôã³ÞîÉÛó¶ÖÒ^N{RODØB´ÕÓoñ&%‡Ë€}QsN;Â.þ…m´ï^µë—Ûè_ѵ/Žw‘¸q#è[­”àMµÞtuˆiM´ÒaaÁV˜¹)ËTÀ•¡¦5ÅJf…ÁÁÝÁÌS{zõ¶ëïG{z5ž­Ç{àL~¯~*t »kÿ$@.DÜ:?M™ »Úïµ'Wé²°d+Òè–Ÿ^MÁ««˜Œ÷¾Šx»T/TÞˆü¦¡)íûóKõ±=¥` Ï6â=?>2ÂÙˆ› ûñ©Ì?K³#/ͦN|Qw‡àÂĘ?¿þÿâÜÍmÏçƒ>ŽßŒw‘¸0q+æ5#Ÿ xüwf ¶‚Œæ´¾B“ ½>(;> ‚ 7‚Î/€¤Â®Î°ÚË6tYX²iôj™AV©‹øñÏeUÄ[ctaêVÔ‹Ñ’uþã–¯çÓ‹ã>@ ÖcýØDË(5¥w·6â´×ÆÈ®\+Àh‚ûÕqF;é~ëÀ8ƒã]$.DÜzu¯¼¿Š3¯L{ ‡. K¶",VFõFº‡Æœïby¡òVägh”l> rËõñ¦ù8H-<Úˆõ|Ú¬k¥R᎟{)÷5XlWH®àõÕ˜?gî5êrѹ‹B®Y¼ñ³úÙ+J½h1Fª®ow˜¶šëÀ®N¨šëÀlXX°Ñ¸ù%¿TصÐQ¨¤ËÂ’­H£Uœö«CoÏq¾‹å…Ê[‘‡?ý¢oÕ.Þ¹u`±€ã]$.D\ú<¾¦õßodL{~ìrü»å°Õí‚\¡¸Vt¡‚£ôžåêPÓ^z§ËÂ’­8Ã5}#Z­É:ðâøëÑŸk0Zå=üó®'æ¾^¨¼Ñløõ÷TØÕJû®º,,Y½2wç‘þ 7Ú|í:úª·ŒÞ8ôòã|Ë •7"¿-ÀÔ¤yçkfkC}óÖW²+׈.¹”šÞáê ß^ýeÃB‚­Ã…üS™©ÐnÇQýM ìŽÒu /TÞ,…þà 7<|ë:«WçÞ8Ô$q¾‹å…Êë‘_ËJá/rµ{l/VÒeaÉVœÑ3 _(M…¼œ8þzôy€[ £Òšy¨StTZcx¡òF³™Wf5-îó7%Õÿè²Ðd}ä\f4UÚþù`n5ô^¼öktozóÛ/Ò â…ʑߡ­£°–åÚ(ä(¬ÑeaÉVœÁmËgaS¡Wߟüõ螣uT3=Žª` /T^ïÒÏÌù‡"®7ø½5ÏqìCM²ýØ ^¨¼ù¼wóÌ’Ž¥Ÿ–Ï»ænzïç'}¡×Pç\|Zx´nhµÕ~L*ÃûïÐüç@ݘŸú­dx¢—?¨¹ñ[xöŸ`;b²jÏ]æ(^?$”CpÃV¨8jalXH°1ž]Å*æï'<ÛxÉ<{਄ešE8*a1¼Py+öèê4E¿–8ãÈ빘8†*oD~ÅXýéõÎüâÏ%Ѹ}Ú›ûÕîŒ^¨¼{l)Ú~°,Ã@7¹i]°š °…gÓ ØÞµçÖWɉi ÏÖàÖãË~G=+óPßâ¨gÅðBå­Ø£7ºªÙxýÒìŒCƒÎw±¼Py#òþÃ:*ÿ™‡ Gå?†*oÄþªBU‡¼æ³4ºÉCë‚Õ^€-<[ò`{è{,ßÑǹ•ï(©â—eõã­þŠ]š¬/§·«8Äü…goúò§0+~™‡:qGÅ/†*oľW]«ë—ègq¾‹å…Ê[‘Ç7Î9¶ d[Pbx¡òFì(¥é8‹”e Ÿ´>Xoï|[x¶1¹€íQ{nuŽ»÷`š·…gë-ðŒ#½¨˜ ê\%Ñ^¨¼{4…¬ÀQ×t‡F œïby¡òFäGü‡ulÉ<4j86ÄðBåØÏX ¹ý”K–~rÒú`už` ÏÖÇ<ÜžµçÖÛáæyq[x¶Ñ5u^ù+<Ò¹xŠw1¼Py+öhY?G£®52ý°8ßÅòBåÈoø^]Fê›28ßÅòBåõØ=–Cn? ”e ŸÔ¶5jÌláÙú˜‡ÛÚ–›QÝŽuôgCa]v’ w¼nûðÐ}~äç™âóâÏ͛گH–…$[? ïÊ#«S–£GÓÇpÓž­§ÔaáFDH²Ñç p6ÝS/Î<4OqÔ‹cx¡òFìá[xÕ)œ~}Æ‘Ös /TÞˆüÛGY;¿õ#¾Y }›ÖÍCó¸ömZA¼Py£ÍLxɺ}sâÍC³‰ö͉A¼Py#öóïØÏùîez—§þw’õçms/³<íü°ë/¨1çÛB´!ÆW /§DŸrsúBTï{/Zá|Ë •7ë+#LýY…‰ï?šŒÂͧÂÆëæÃþ 6<žmÄ›~Ö?½ÓÀSÃôã©ñ"û†¾›‡æíú‚x¡òF‹¹¾ýS"ÑÞÿ=ÿ°WêçŸ?ƒô;®Ë¿×ÿ\ |ø¶âmÏz›i¥»8Zx´úIÅ­?ð„kß¼iøæ‘ÙœcÓp/TÞhé8ݵɨ¾þ:à‰×¦ ¢zŽ!&nÌGq}×t}M ï@_“ê“‹ ‡¦t8ßÅòBåõ ép%¤þ¬ÂÄõN`@“Sø•©°)RóU vóíSÛˆ÷µQŽy‹C*ìús·_ó± \6vì~¼ydàØýÄ •7ÚÌŒçõÒ«Þl.šfà|Ë •·b¿ƒƒª¾”Q—ÃãÓdµ— ç»X^¨¼ù,á÷!¤ÂzJØîšíö; ¶ï ,%áw-¤Ââ Û¯ç¾v/@ÍPï_Ôjé€ïql« â…ÊmæÀs1zYM¸ãØLÄ •×c?‚_tð|žëÆ¡— ç»X^¨¼ùLâã·¤ÂzÊæÛp»ýúB‚mÄ]2ÍZHÔu¼b‚é×Sã)½sQ „—õë¸Þ…êÂÔÖ‚ßPïÙZ’y¨Wwl-‰á…Ê[±ÇRž_Ý8ðFµð],/TÞˆ<\Dmß0˜mëÑ¿Ø28Ö/bübÓ C7¢¾¡÷éÀw9¤ÂƦæ;(ìÍ Ï6â½ÃÝ—ã#7ÊŸ^þ¾¡ãÛ¬ñb¯?¡~¢""nE€Á×;¤ÂZKó­"ÿìó óp*l³_q]ŽÑ…ªëÍeÂ?yç©Dfš>:*‘1¼Py+öx©À±s(óÐôѱs(†*oÄ.¶ïÅÏ64õ.T¦nD}DËðiøTØÀàÔ|Š¿Á†K³xOðKäøhÊÍ×'2S¯Î’ÔÅu.DÜŠ:XœÁȧ®·–ö{¶ ÿh§€šyh4uPcx¡òF›¹¾-qÝ ðéE=Óäç‹z® Ïþ´ÈéßoÚÿûÿf}/kÖ§³µÿ½qã¶÷ixÚšÿ‚:ý °…hWCNÞgRÆé{=»dbø2òßñFìáÚxûÑŠlCS˜öÃ!º0u#êW¶çúQ™ŸºåUò~åŸï}?åå”7}¯<]š¬ï”Ÿv°èˆŸ’O… ÌÚO÷Ãvû'<¶Ñ°wü è¨Îsõ•tþäk}¶8©SQ}€ 7¢^öŠÃOï4ÐÆaúñÔ×°ÿk³.8¹ågçͺâ$¢­7’kE»y9½¹j¶¸•íbXa°Fló%´+‘S!WŸ…_ŒïLw섚ñ­ÝŽP!º0u£© 8¯ŽúÆËÌCËœïby¡òFìáíV훳 -`½ Õ…©ëç¼æ -m7®ˆ`­eÆËæíæºy`F8«ÓM5) 7¢¾`ø†×Tȵ¡´ùRZnþ—°ã¼í‰vk*äjŒQøñÈhyܵK.óÀ¨ìÚ%à •7šKýòÛ/öÉÍõÛcÛõdzÓOӦ†âÒ~V7D¦nµ¼F3«ÓD½—¹xhšˆó],/TÞ˜níh[KÙ¨_B$ØÆsün@ˆ¸ÑÚñ#K›úƒª_³»y`ºµ¨s9}î€ ¯FÝìÁü;çú½/v*./·1¦¢Âõ—sªú[+)ºÞR–úg–¾Ød–u¨oõdz£=nî9O…Ä×»P]˜ºÑb"v³¦wÿ[qCtaêVÜç÷’ПßÔ}‹\¦Íã¾Gn™ª¶ü7É1ð?ò×£Ïh5>0#<Û‘æ€nW˜ºÑÌx¾¨¾Dêwù²LºVuF§.láÙFkY©i)¡¸F©×å‹}YK}uþž¬]˜ºwxkÌ€n/O… ÍX`½ Õ…©[Qǧ[ŽíΙ‡æ,ŽíÎ1¼Py£c<Ð|’Px¶ÑfŽ?óÚö¡l_õoZÿžd£m"ØzÀWü˜ã[`7Œþ›:³P‡¤\ˆ¸uÀ]˜ºwìtÇ L¸Ô%è^+œµÊ]˜,$Ù ò€Žü›6:‘À‘¶»vžUѶ"~ ß5]ïÅó†™ú“ÃöëÁñ©–znNÿF!zCë<ª“!}ÌçÛ³¦rà5þö]gY‡æ*í»ÎBtaêVÜÁµá³g©À‡ÇÊû`[.D\ùî s|ç¨[¹]ïBuaêFÔþ†ÜôŽC³Ãö½Ä¸q+æÐÆ„öëÿ2 ÌQº‹£…EëÙ¸,3§ŸåSc-dÄËûŽ/âe˜³¨·áëßËÀ…ˆQÇ«{í[ûŽê÷ÿØÙ ·b>€[“{u¾¢.)ŽÇ‡ÃÍùŠç»l¸q+æèžª^k,j6ë¨1¼]ïBuaêFÔ«$ï½3m¼¢­ôã©ñ|¶ñ^p¸°ïØe¢ S7¦.+Z¥„ó8B´¯ÞÓÚ…Eïæ§¶<ŸÀË<0k™Õ)‘>öàBĨ×÷°¹w–ÓqëB±»@[ˆ¶ºkxï¯}Tg¼Çvó7äR!«S ÷wïø²Ðäj ¡¥DóÊ[‡Æäæ-”1zô¯tµGù§ƒËÆoÈ¥æä8ÞEâBÄ­˜£Û’àÓ©°¡9¬w¡º0u#êCm­rÏ…ZwQÞ40ÍjýêÙ?¯Ú ZĵÂÊ­C3rXïBuaêꤼ¾³¼õ’l4püÞ½Q‘ëCèNkÕ›ñÕ´EØÂ³ˆ×?{ïß^vëЫ߼½,F¦nŽ-H]cmzgþ¸£Éúq¼‹Ä…ˆ1_Ábsû7{oøa½ Õ…©[Q¯M‰zçž¾›®D0ýzjøÔgû^çŒCÃ>Œw‘¸qcÂR½Ê«õçm4ïc…ç,³:gÑGЋÿUXèh.DÜŠúNßñ” <7–žºW+"®ÇüúN04SlÞ¬µ×¿Ðìß«‚ ·bÎý>– ˜lµä,"nļúeæ{¬÷jÝ40 ¡ôã©ñkó®á[‡þæ]Ã1º0u«µÛrì4 Á…ˆ1Ç? Ð¾×ìÖ‘q®}¯YŒ.LÝŠ;šRT\êÎnx‘p¼‹Ä…ˆ1Ç?Õ¾}øÖ¡™ ¬w¡º0u=îcC¥¨ýóU7ŒIê:ZýxU.D¼uâ6¿2â×ú3¹úš.ãM¤Ëh»i+Ô Øk96µdþ›Z"p!âF̸êØÖ2âÛ ÛZBtaêFÜGpÞ²© F]èü·»@[x¶~釆ýömЏq#æÏKSh«J_‡uA§~h+"^ºZñ÷ï}«ûfü»Ÿì2Üߨú豺eæž5ïO|{Ì™Vë-tm7mµl°êÙ?”q`–åØ? 7b_Ô|±æm›sÏfýóë‚t®.TÝ{í¦Ôoömð>Ƕ­\ˆ¸s´îŒ)18Ðwµã1"nÄÿ’¡c+î¸ãÓÛö­¸!º0u#îoG1ó—(ãgïµpwñi¡Ñz´§>≩àåÄ =»úmÇ\ˆ¸õ¼³2½Ëõnó½š|YH²æœ!®Ú-4ÚŠ6þ™¥æ/9ßú Þšíe|Ú{þ…?vh Ï6"^ÝvO?ÇÖýåÓóz*sf‹Ò]-,Ú 5zéUó5÷· Íi›/ºÑ…ª[aG‹ŽˆÓЦø;#p!âFÌwpß—:F¨_†Ívýçt|6žmÄþ§c“ót c²cs.D\ù°µ,xuŽåØǧ…F[ц×Tí_>¾u`†5i³7µ°…gÑsó7bnòa½ Õ…ªWÃLWïß´Þg9v FàeÔ¿Á˜Oè>uµÚ¡~ÀñÆÇ»H\ˆ¸óîÏ7­?×Ûù v‹³Öåê­œN ¶¢öjßMžuh¢Õ¾›ƒ«5µjª~f7ÛÀ’·»@[x¶o¼’ÜüÁñ[¦²‡6MÖÛ8ßžmDü¹«“rx&tm‚õ3Oú8oÓN2,ØrÀf±TàÕ±Þ±ÉO 6¢½Õ?Ô{Ãí»9³òí»9Ct¡êÿŸ¶wIr×™v§²û ¿aëj7¿¹ü œùOଲ¨²Ì2€L9ÙÜ—õ”#Å $ÈHøã£?_uø9<×îi˳ß6øüßmøùÿÝ•=>“VÓÇ$~…/·>>áÑѧÜ”ð@ó{r²úÆÎYáùºuÆÏÙnBx ùµ¤¸%<÷5à|P~é 7!Ü×ïÚºz6w˜ƒÑÕ28Ñ•ûƸžl*r ôÑÍ)éß( :¯F'ps5Ø4à@ä~¼ÒÀÓØê„P6:RûG„¼a¶Ò¡¨Š7Ìv¡›”?¢É‚oÞ¬p`Çá—žpÂÍ'Ôb€¿0Z8ðAO<ÚnBx 9Þ{»yñ‰?ÐÑÓeòâœëÙ¦cŠ¿e£ ô„yi9d¢­è„uI6:P»Ú–T¶ÓÒ€ÝYÉ‚/½À¦G£=ˆ'œal8'œa=à&„𧆢óvÙÊÞ¶ñ½¿Ø&dûvÙõ:¨=¥aû#å oD¶ Ùþ_ñÖÌϯh‹ã2{Áƒ»ªt`›Ž(~ÀðÛ-møüV8°IàðKO¸ á‘æ÷dÿÆ…_éuE|hè—®t“Òá;8;JOãÙŽ=Údè@íIêƒ,ïÜ4¢¥m›b®I¸‘¼h)í„Û§Â8ö„ݧÜ„ðHs<ÿÈ» ×·ÖxõãÝ„]è&¥Âãq¡Û·ëv4¼Z¼ÐÍêr´ÉÐ‘Ú ºÉÿEß Ö-~é 7!<мƒ¿ 4ðl—?ã‹Ð£M†Ô~@Á ìÉ+ 8Ûíy¡lp*±Ô¼ÑÊ ÌÞJ-…·r÷5¿¿%gâø„÷Þé°l罄]è&¥ÂßðŠÚä(îh¯t`¯÷šý×’;°MÇŽŸ• ^. X»N¼“ÜnBx ùV1Ïø#*<ÝíO¸#ôh“¡µ'¨Š »ÄJNw|Úצ›IŒV1O˜O*˜-'Ì'=à&„šÏ¸«Ÿw·U:´Ïóî¶.t“ÒáÇWÙ+Ã¥¡{ýÝ‹#üÁ®g›Ž(¾‚Å5âáÒÀóµëÌÓÈ=à&„šw°w”žîö'l)z´ÉЩÚ'íEÓ*ûŒ,¸ÕYnU> ö%~\¡,Ø™G+zkõ –§3¯8v`›ŽÉ=ÆëÇžŸÊ~~ÊQêø‘“MF¤>$MTŽÒÀ}à„÷¤Ü„ð@óŽ/ô5ÀPÊkü÷âÕ£M†ŽÔ iÄê¥a¿ô„›hÞÁ]PxJpEèÑ&C§j§ íòÉ># nu–[•O‚#‰çßhç/õ«G+úê}½¯žiì7%<’üËKoX( |úýžÂ«!:°MÈßîiÊ–¨3OcVtzZ8ó6f¶éØÜ Ú^xÂáSáÀ|ÂáÓnBx ùŠ×ˆùWŽ+=c׫!ûšëÙ¦cŠ£÷Nà/©–†íÏ ž}éÈ6;×[w 8!7‹>¨¬…çï.ÿˆý@‹ñ¸K©4ðôÄ€£/ýÐ&C§j§è+kÌ># nu–[•O‚]‰×ë …€ü˜;:¥øG0{°MÇäF;ÜxÿÔ#ëýÂ>Õƒm:v¤7\~ç_ÖÝé@uóB´@q9Ûtì@ñ Œþà×RË;¢èG^; M†Ž´Öû‘JO÷uÞGÕm2tªv°ÖÀô3²àVg¸Uù$8xræ'ÞÜÑù®Ž³/Ù¦cr£iü1ÔÒ°uf_:²MÇNõJpnvѵ¦íð|38aMëo%ÿh~‡@úáÜ â(/­ã¾šÛm2t¤¶ÖèUðõ³#†Å^ú`MõŽÝ&¹¦4ð4pâ;Ð&CGjc™7’tŒÚÑùžŽ³/Ù¦cr/Oƒè¾²Ò°‡C÷CS·®äu<’7ꤱõd“‘#©Ñ üdiØ@øD?aÙƒm:v¤7X÷=aHÛá@ð„Ã/=á&„špÝ—6t§!”wHp íÁ6;P|Šó¸{ÔÚÒvpL±–41ÖØH\½­«4ðÉßjÎÒºÀM Dïàz) <\y·N´ÉÐÚX¸íFòîëg4jÅÑ—~h“¡©ÁþayGaý|b´ÉБ֙å´jgmS§íP=ئcGzgßò¬jG?û¬ªÚtè@l±Ý¥4à8Š¢í9b¬)°¾¸Ã5¢~ѹ“ÇçáèÓˆ8ÝÙm:t µÞßRÞÙiÈt•#'›Š) elO¼i¶£ó‰Ô¬Ûtì@nôÄ¿/XvÚð¯"ö`›Žè]ý…ÿiÈš,¿0@u`›Žé­µ¸”œìé´%G‹56w Žgü žmgÜ z´ÉЩÚJWK+60y7Nv+÷ìHo,ãäæ²ÜÇávt¾£ãìKG¶éØÜð{ÄÞ§t_?ÜÙÀ޳/Ù¦cûzjw¥§Ëà‰š£m2tª¶²6ÝŠ ,‚|M½»•û v ÷­Ýü“B•œ/ü“BÐ&CROàº={ëßàj F<üÛpÐ&CGZ/òjiià›'b¼kë¼=঄¢ßÑ3;_³F¾(ˆu`›Žé™6ýã™?ÄïX*`_:²MÇŽäÎ @ç+ãÁèoôz®þ¿’w ›”¾éþu_  {qÃW÷0YÑyüг/Ù¦cGÃ|…c”Å‹QÜCe¥{ýêíõÛ„ì@r,YÂ[uV,ïÀ;uÔ`õ~—Ò°Ó˜ŠwéÈɦ"JǶ¶óŽ‘ ì~Áó†5ØTàHd´$É*˜*¼¡¡Ûtì@o8åœü9V8³³/Ù¦cGzc–÷¯Tt>}Ðo|€]è&¥GÂCv‡.ÀJÎÂØ.@9ÙTä@çäƒoÜi÷ëÑ7ä½ir²©ÈÒ X{?á–ªl ´âíRئczo™t'¯nHèV*«î77hs+ ]覤Gª?·Õm„¥áÏÏ9~øÕ•|俆_®þ‘GM6ùȼ£ó“Û Ù~¾,¢?ó KE§óñÌ‹,ØíWü‚ýçC¾~÷v/¯îCšˆLðûa‚Z±éø^h¨Oò„ ðužðªÁ&ûŸï¡wÒ•†~@Þÿ''›Š(}ð¢‰sè^±±ºÑGe#1ÓäFdn‚» Ý”ôHõïÑ÷SVn¾ÍÎÎèo5ÙDd?ÞƒÁËçŸ|s·ÜJNã½›7gü7œ*:›pvû •ìö+~Áöã½GÍãÈ>¤‰ÈÁÇÚDOXòXËå Kžœl*r ³ØàVÞÁÎ÷;oÈÓbMƒä•›ÚJÃN§oÅ““MEŽ”ÆZó¼Ͽ￿ùOõ«²ïoÙÙ“þüÑ_™õlÓ±µÔhÀ›+ˆÖyÓc¶éØÞ覓¬~Ì»¢Åúû›ðíàÖLºÐMITÿI‘ê®Ð- 7šN<æ¯'j²‰ÈÁ)?®ÎOöã1ìøƒMÆÛ«>ó6¹JNHÞ&''›Šìè|ûïßW«Ï¬MîÅξ!k’ëA69PúeðÅ9/ð¦ÝfwCü¼<¿ØÀ¦òð ¡Ÿ“ʽ覤ŸsDʬä]´/n¾¢ÎRýyyêA6ÙÙ°S»µÑÒëó·Myñ©såÊ“ŒÕýàßl"r0–£#ÿiÿÑ/8ݶHûQ°‰ÀÆzOiØé¦EZzME”¾ƒD·ïõWç;zÈzø…¢Ïɦ^tSÒÕ±ïvÿ%ß®Xþ›,—¿Èél'Ëå=Ȧ"û_ð¦/;—†Îv˜|éF69P ØWwrÏ\78æÝÄ mzÀM‡¶u¼%ó”U˜ÒpŸ¿Xp=Ä¥×DÜèËa‰ ²hô"§+)Y4êA69ÐyAAdãÅNWR²ˆÑƒl*r ô\þÝ+ V7VÀèÀÝ [=^d,\糄”;‘$TƒMöGÆ0'¿‡Öݨp倲/òÅç'ε•œ*ÍŸkådS‘ýѶµ^½±qwçö hܬsC›÷‰E%§2ó 9ÙTä`hl_Pé( {ø Tž>lÓ±½gl Ÿ\‡âÝgc ^E{¿úüÃ[঄;ÏnýÐÁ´Q¯à œbÑ—~hS¡ƒá½ Ó3TÜö~ ‹àÈÂWJÃVòµˆ>l²£A>þ_+ýbOèO$n / Ý]¥Î_pþ‚ËR¦;—´üp·Þ©&„#p”öÊÒp¯ÀÿK~¬Gòs£ûZ«É&#û}a8úþí¦„W0=N—+ØQô¥ÚTè`Žßµ_ÐTà`r?°í¿B¿¼£ó]‘½ù¿ ÚtèHì,”ü&ÓZéÁ«ßdZ»ÐMItDzsÄE¾ö ÆPĵڥ¡ç;}#ø?øýP*TÁM÷?è¬êÑ–ˆûáæÂxo@Ñ—~hS¡¡Agq%â}GgŽÛ»ùç‚ÒÒÐñ‡Ã_?=}„õ|†ûžÞ)w>ÃÝmB¶YÝý×4!<˜A`Í–öBU00éQô¥ÚTèHèYò/ Û|©¢Û„l_ðÇÍW¿•†LJöÖºøæKèKë4ð@ôœ>tv~#8K¾t#›ˆɬu– |@îrÀ.hS¡#¡ïê¼|iØÀêÇ×:°MȟѨ›¸Ÿ¬4ô|í;sµÚc”gnVÀÑïè²Mç`+Xé¬m*t$5æE¸²ŽíãCBá7$o2í‚6:z{Q\™„- ;_OäŽ;°MÈv¿]o7tåöÁžä;Xÿpøá§?ôÉãÒЫ‘ö®M|÷¡›’î¦Mn×ÝŽñjBx0ØM§šliiÐÀÞÃæx; M…¤¨-°4``ïAÑ—~hS¡¡õÙ×Ò°·_­ÌëÉ&#R/hUޏ֭4t`åÃá/½ïèFŒÃMD×g2KÃNÇ Õ“MF¤F ~lY¡’m†­*èÉ&"G2c2lÇä6}é‡6Úú¦O§•†NC: ¨'›ŒH=¡¹(6¹½£‰È&·; M…¤žÑ˜­ÖìèíÜ8|2²èK?´©ÐÔo²`á³Q;;›Œ|.JO69’<šÓ9ÖO:ÇÚm*´/õp×¶lPÉÀDd«z²‰ÈÌhXC§@†tDN69yA7Z:§WÑÀØ szz´©Ð¾Ôã òø£KEãƒ>ºèѦBRßÐ >‹W40>èøm*t uÒæöM;ø¦Ì7 áð¦Å»Má7¸ú@Gt´ÐgF9ÙDä`„o)CåÍ:¥a»û/nêÁ6!Û|uËøÉüô÷Íæ8>ŽO)º‡s-ÖØD\ kìÂm´õw’{éÄ57ø*î8- øÑd7òmBÃNÜ9°Ãƒmð›[:áMŠFË€ÆÀW6qSÑùBÊ'nôhS¡©gôdGgn*:Y¬׫³¸‰5Ø4`ßÝ4ÍèÂJöÛOŽFÆ¢µS”†<ýǫԢG›h 7öÝÜÅÚ_òi%‹õ‰æìNx“âåW4%N§T+X´éœªm*t õ}…ÞsSÉùÔäM7z´éоÖó=øÓìŠN7É›³ûºùk5Ø4à@d¸Ò7-»«Ç|xó/[÷pü¥/Þ¤ø@yuú½¼“Õ®ÈÉ&"2O7hÅæ­N•œ¯}¼×I6:Ðz—9Ê;9]ý†Ï˪_™sMÂά¨_Ue*>X“¾ªÊôÁ›ÿ§*óRgkZ«Ï뇭×3Ž59¾þ7=“㓟ÔïB7)=—h?ï‰Ë)v8´ó×St·Ê‡”¿¿Ö\Q-¨4l׿÷M «Û„ì@ðÇ„Ä'œ•œîÌ'¬z´éоÖÏ#¾´¨\tºCOÎÎïæIÕ`Ó€‘Ó+׿*U|ÔüM‘¨Þ¤øH{ý ¥#öÄ!ð&ÅÊoÇ Yq¿4`wCfÁ—^`Ó€‰áºkIX޽¬Î1ˆd_:²MÈŽä>œ¾UW'”†þ¾»z¨ûÏ|dŸ¹$—³MÇ_Ð2Õ-ñWtºÙ/NáVºÔ`Ó€‘×ÝÎ+ÙàÏûàMŠ´‡Øýôº{Ü©phƒÇñ—¾x“âå·S•ÌRp²ÙŸ0´¨Á¦û¯× OX;_%CÛ<Ⱦtd›È=ˆ«ýåœN•ÕÙÑÜò¢˜kn$pVøª–[ñÐVs¢–ÛoR| ýæ¿Ï\€SáÐVsâ œ>x“âå'­á¢4àtÛ¡-"j°iÀÄ«ºê_túõîÎëuÔ`Ó€‘Ó«ú¿ª¡U<´þ¨¡õÁ›i/¯E•†}ý\.ú¦‚&'›ŒHýȬ_*~[ªÆO9°¯ }ð¦Åûm¥÷+’óÆÝ.¥§;mÏQƒMöÇ÷}„³UgJ:,„gJ:}ð&ÅÚOðMO”t*ØÝXð¥Ø4àHbøu¦V\ñÛ¸®êZq¼Iñö3–D¥§k!m…PƒM$^² ü|Ͳ²Ãȇd_:²MÈOLøªÄPñІs¢ÄÐoR| ý#¾éaŸDW¶ÄPÁÉæs¢Ä ›ìK¼?Ú¦­þ•l8gj—}ð&ÅGÚk Ý¥§ó†.Í«Á¦ß²«üÎ×Ð*ÚvØÚã–'!H¶ Ùàék _¼\)4ôÁ›i¿·O"ºÐPÁéæCÔ`Ó€‰gÜÍr¢‚ù8ä’ çD³Þ¤ø@ûË ¢ÕîÒ€ÓyC—çÕ`Ó€]‰ÿ-ôH~ŠO¿îàt>²éW9Ø4àHb¼ÌÏWÑv<4ù*Z'¼Iñöнvxɵ4àtÞ°Eb9Ø4à@bq¾¸4àg`9ÊòÛb¬)°¸3–aó«;8]ìØüªlp qšKü¦:¶ã‘îDu¬Þ¤ø@û4›x:·½³·Ÿ®íÇéÁ6!;\œ­, 8\þøìªk ¬/îíŠÆÙìÞN¿›Ý“ƒM$N3YßÔfv<´Üñµ™Nx“âÿhÿgsJ Óà/ÖSý®maÚðÿþÅÏM?† åçcô1u›ïú˜†[šé;wÞÙЖ@æ{°MÈ–‚7Û‡¿Ä°¹ÏœllæSŒ56÷÷)òX¥§_ͼÉÁ¦Gue¾ÍÒàŸäÏïHlðÇíz„Wìö7®¾Øz¸)á‘ì¸/WíxhæËUð&ÅÚߣ7M¿p´ïäé¹ Î ô¥Úth_ëAœ&/ 8Ùpè´¾k l î KËÑiåá†Ïé´²lp$ñòš±_\“¿£Ç×:ôçN’z¸ÝŽð »ý w…î7%Ü?àôÁ£»™œa˜äpSƒ¡8C‘¾`}G#?|ô~¸{âè7%<Š8}òèÁ^3Ãç›’ Fq}¥4àd§¤ëAZ¬)°¸[î]yéSiØnÌðÅeU=ئcûzغJ_ƒ¾‘8»óÛ»ÛtlM…Ù‹û»Ý,â¸åûµtSÒƒAxʼntÙ¦‚“5Š.Úh±¦ÀâN“ÐmQìøLTü=9³ÜK'®I¸º3¶‚ò?ïhdέîŒv³µ]覤¢‹3Í¥'3ÎŒk±¦Àâ>îõÊÚ*6ž'ü b®I¸¾º“8 TpòÙ謕k l î|øJƒÍ†]sMÂõ£×ýAÎ%x,d®‹z­%Ïu·[ÿ»ÿï¶ü·ø9þpSƒQ‡—lNÜ~°ãŸä'âußIßàvûîÝ]à&„ªËÏÛåí.Ñߤ ôh“¡}­çk~„8QǪØl¢ Yb®I¸º7¹•µ4ìáPko œõW×#y£þðÝ‘,'›ŒH=Àfê÷;>_ð†›»šºI‡pÂÕÇYîU) ÜݾrÙô€›ˆ¾BÓÄœéòGÅfË+]ÿsM >ÜzÛ* ÊÿJC?ºïé—®t“Ò#áGxfýÕ ìiÃç=ÍßÔd“‘#©gxžÜ}ØMãU<°›îVé&ózÀM÷U®e²²Ei°Ù:HWYÄ\“pu‡mÚ¥Á#cr‡›åë7!'äF‚r²‰È~­{/Ü»›Û}\µd‘ƒWóÒÞKP|¸’ðøK_¼iñþ­ ÷û¨ôW•†›Ž–ñêŒCwO““MD¦; ¾9?ÙµÇ=ÏåJ²‰ÈÁtŒÚ³diÈÏeä.=þÊɦ"û:?¶¨Xe?+ 7ƒ3ä\Üœl"²?³aðøù'm˜×~>鉩ýÙÏ9ø©xüÅIOn¿âè?òõ³·þ݇49˜à5n’YtJCò $ùÒl2r ô– –vœ—>y‡¹oZå;°MÈŽ¡',‰•›ÏÅÉ™åþÀV“MDö.<;?¹-Á¾>ß/ƒ76ÜƒÅÆ†Œ~}ÃvÂ…1Ù(boH9b•”4³ˆ±¦Áúâ^¯B0]r§»“ä‹ d¶ Ùä·]:Fo~{'—¬0ûõÇúÃ'îî[;øå8ü5XÆE½¤š – Ê]±NÕ›¯Ö‹³xþ=ÙDd7JÀÁ«ó“½’÷xÁ J69qÛ͉ڻ)JC& ýôõÏ>)̲ïøp¯<Ÿeï„7-ÞͲÿãÏè¸Áoï( 78üõÓï ¡h!, Ü Þ¾i~ì7!ÜMFû« Â@Å„ì`}|@9gÖƒ¼sóÝ)ñ^ñXO69Ø‘Q°Sâ¼âñx»‚©J”l"²?ânpj¿æ¤¼Ã©‚³_?|DÝ37wurçK…ç«Ó‰NÅ.pÂýuuB@yŒ2!<æÉ;¤§sý;9¨3‘äK7²ÉÈ‘ÐPæ™í8عé8]¥ÕKòëÉ&"û; v\ ƒ—Âo3–h…É&"#îöŒîrê»Ç.§8üÒnBx°<д~Ò6!Ü-ÏNne½4d`QeÓþr²ÉÈ‘ÐPr‘m Ù¹ù:â˜\Ï>£'›ˆìo0Øq]Œm4öㆥa²‰ÈÁˆ›ÐÖ‘É]Nýa7ùŠý¥]à&„ûÁ~­’2ufBx0Zæ‡Ö’ø"ßÿ,ªÊLqÅ_]\Ê…iBx0Lê•e²®®ÒGïg³àK/°iÀÆXô ÷Š•wpú{QîëOòÌsygçûÌ™”y¶éØÁQ§pKC~ÆR»€Î'Å\q‰g4ý‡ßFP80aø{ºÀM4_Á êÕY <7ÿNÎV>ºëÓm½_‚ï`Å×ÉÄÿéL, 9Õ¿~ò#¶•‰¯p`>‘‰ï7!Ü&“:7\rºb³Ùl1×DÜHb4¯ˆ_R80gøëKºÀM4/x€[YKCNW?¶û£[—iÀư·üæ?ýa}h5ý|*ÿ¢/¯ݤôHv°—É©¬üé”- 9((øõ“'0µz¦²RáÀöx¢²ÒnBx0Læ×Í~ÓǬÖùÖ©Ê~Îüñs&þ|ïT¸)áæw,g7¡–†œNM|aÁh0op¤ñ*/v”~ý­0éŠ4z´ÉБÚòvßÒ°¡}’n&îC7)=]Ü^ÞÁé¤d;Γ§6¾*ãÍày¢ˆ§G› íŽyøMéJxšNñzÀM DG/B;GKCNç$Ý슂ѓªiÀ‘Æ÷`ûæÂ¥½}½U¾td›è­¯Š•wv’œ©åÉɦ"GJ£•z¸¡°4l(é—®t“Ò#ÙÁÚá^rº¢à×Ož•åÓòŽ}šÍK—>XÓ`ƒñ0£¦µÞ –ÓµÞpÂÍÑ[®ÐßÒÓ9H÷$£`4jp q‡òciàé¶x¢lªG› ©Ö=&×Ó窼x€ã/}ñ&ÅGʃ¥´?¾4ätf¢àߟ¼ÞvT«KÃM÷H¶º.暈ë‰åŠÖ–NT×—¿7Ðéªë=à&„šOXny. 9›‡|—6¦¯ýi<ÁK)__¯ôépu¥°¾Þ…nRz$Ï}Ó‡ k%OÓ‘¼17¾?ÂÕd“‘#©±Ä}ýÁ=mïdÑ—~hS¡ƒífÆ„¦pøŒŒO½ž(:U<´`Ÿ(:õÁ›hÓù¢öýõí¿ÿ§¸¦ÝnJx ú=‹¯®gKg|P}é‡6:’Z{;DiÀÀúM_<¡G› íï:Ï;^…†=Ó€ý‘ñÓ¾+/*”w:´®ž¨ˆt¡›’è>àç'¾ÐZéÐÊÍZ»ÐMJ„_ÙäÏg ?s‰u…úâôKWºIéþ=Ö1 o÷Í®§=Æ,|cÑ—~hS¡ƒ!z?é›xi_‹¾ôC› ìö‹Ölp02<¥y¢ÐPñЦv¢ÐÐoR| ýŠ2ù2f¥C»&_ÇìB7)= öiê—x6r¾‚ó9ÙDäHf,/69‹¡›¹z¤Ý[,úÒm*´»ëL׿VE̦»#cºŽðÂÇ×Ñ*Z<ø2Zº)éîi¯Î>ÙjÃŽ–¶ÚÐm*t$µö«Ò€oˆ¢/ýЦB‹ß M?f÷%8iR÷›²Îއ–¾¬Ó oR|¤ýëæ&A³4èçp¹}àç}¥=Ø&dGz¿¦ý©Ý+0wôV’¿IØ—ŽlÓ±¹Óf}•eë:;Ø)ÙºN´©Ð¾Ô7Ðc†z¦K¾!оôC› U]®'k•¼m5à , ëÉ&"ûaÔ {:Œ~÷Kp0.Òlù7…Ê"|¥²Þ¤ø@ûC]s·aiÐéöxâFÆlÓ±¹³v—}meë7• llùFO69’ËW²—0î`à¢èK?´©ÐÐi]eßÅØÊïŽ6H¶òÛm*t õvÙxùà[Þ±×ídWÁîÅ—/lV3ø¦jXéÐæÅ ûÐMI>çCmq/ zú]ýT¶|=ÙdäHé qF7T†÷Œ… 8ûÒ‘m:¶/÷¶Ví› [-ÜÑ@ÀÀV ; M…ޤÖ^G[0ð Ù›n; M…„¾¡É§+é3ØÑyÀ@ : M…¤Þ,¢iœ3|ŽsÚSÝ‹;Aùë7ìíè|5ÅÙ—ŽlÓ±ƒÏ˜v<í„.›i¿‹¾ôC› H éŠw0ð Qô¥ÚTè@hô Ò–‹]MiÇ…œl"²/óx(@h.+ :_ñøÓz°MÇ侉+Iå ̺ü%'›ˆÉŒðœP̽¿zç¾ÁºÚTè@è´ûjÿ„tå|<¶/…k]9×£M…¤žÑd']Ñ­è'õÓ öûè8KOætÕ`Ó€#‘±ôÕân+n€WÑù¶‚³/Ù¦cr§m4ûl¡‹G#Z,á‹Gz´©Ð‘Ô˜-Ó MÝëÀw0°¹ èK?´©ÐÐi{Òþ é²ó¸¢Çºî¬G› íK=]A2_­ètƒYœË]ªÕ`Ó€#‘±\؎ηþ±lÓ±¹oh..4Lpb.4èѦBRƒ;´¢4``sAÑ—~hS¡¡³¾µý ÒEÊi·ºF)'›ˆȼˆ+Påœn-«³gù‹´–kn 0º4ÓÙÿ ]ãè俜l"r$3–½C=Õ¥+оôC› Þ“Æ× §;˜­âë†z´©Ð¾Ôó %Óõ¬ŠNW»»³ŠºÇo5Ø4à@äL'ñ‰ÿMtó‰=ÚTèTêÃ%Wud¨nÍëf6ôxÿ9ýü\q5ÿÏ]¦+ûë]-VéÓãHß°õo¸]z«øwô@vô®+¾€8{_Š® êѦBR/(™.mUt¶þÍWgauO‡j°iÀÈ+RóyéÍÃòyi=ÚTè@jô¾"ºÔ2?À‰BWZäd‘#™µ%ÏÒ€o‡©¢)ÒªÁ¦Go­l¿çCY3Ç|è^øô‹¿içèÀ6!Û—{³ø +Cåœn*·ÏÏ/f‰¹&áâ”ny'› ‡–“MDd†/­¢++ ̺²¢G› I}—9KN·º,«›H¼¢.ªTtºÎ Îúé½Õ`Ó€‘Ñ—5ø\ô‚æ^ù\´m*t 5|å]\©h`ªÐÕ=ÚTh_êõz“–ÝJN×:ºN¨›H 7lЕ•ŠN׺ÑYDݺŠlp 2x£ ŸíßÈù×ã“ýr²‰È‘ÌÚ2PiÀéä£ Wj°iÀÄwpµ ³ú+ˆÏ“3§Ý”¾˜kn ðc>•«àº]uY95Ø4àTâ«0¿å¨üwX|“—ëÀv´>ÅöÏ_Þ?%];©h`3¡k'z´©Ð‘ÔØ²tu&£› «àl]â+j°iÀÄ#šÏ ëS~=g)õËSj°iÀ‘Èø5[Ï9¼ϺӟàO¿ú—=/GöFÝþ‚7w`›H>= ÈƒN…VpºÓ©P5Ø4à@bô¶¾€RÑÀ–BWPôhS¡©(u—ÖJN·º¨›H|GSGt™ª¢Ó¯ç¤Ñü"•lp ò0hð6B?|ÞèÀ†r÷6?~Ö³MÈö%\h#¤³Îœn+tÖY 6 8ø&®û”w2°¡ÐÅ*9ÙDäHfm³4àtK¡ ¯j°iÀÄÃó”©}¡¹4ôƒI»ÉÊìËÜ{ƒÖ¿àg=Û„ì@rôüM×_1GäruŸ{PsMÂ^à˜ƒ~·v§ç{÷róön÷¨ÒmBv ùMޤÆk*“Öù¯rW<M^|ä?ÊÝnB¸«ú|½b·OØPɆ®öîàl¡«½r°iÀÁç°:ê* 8ýv¬áI6 8xB‹@¬=dG§1˜W÷öN?r°iÀ‘ÈÚZiiÀIÆÖvÅXS`qg¼H3»;«—mÝñÀþä–ýÝ÷Þ»ÀMT/7¼¹;k{B~±½¤ŠbliÀé>Å–å`Ó€ƒÏ¶B¡ž¤Ò€ÓoǺ¨ä`Ó€}‰Ñºë6™¡˜hñŠènt¨Åšˆ{¡•-ïàdb‹Äb¬)°‘¸x bqwT/e»ã}Éõ¸Ow›¨~°\òÀ†*t-z§û[‹–ƒM>߀U8PsSiÀé·cíXr°iÀÄèÛ&´seG§ûÔã³®qE6 8«p°ÅÐùøâ¹¿W±¥P1ÖØHÜÏc—ŸïOëÕÝüÜÔV¸ áê ø6Íäî¬íéáÀƲÀla{§û[Ø–ƒM>ß;C\AOiÀÙ·£-Gr°iÀ¾Äƒ¸2Pp¼Œò• -ÖØ@ܘ*Ã_¡|±,UFWH*8t…D 6 8ø|X—ìQ) 8̬«F6 8Xœ>- 8™ÐtºW‹56wó ‹»ü´ûÑåè4ò°b§t:¬›|¾;”W€‹¥§“™.ϪÁ¦?îB“\i°OwÕðׇÏr/¸&áúêÖg…e™¼Ò€“å’Îñ¥›H ö‰ å™Ò€ÓoG”Ô`Ó€}‰§ë ,À´Q£b³vjˆ¹&áêŠÓi¥'KþÓbM Ä¡ôŸú«àt9£Sj°iÀÄ3rö¦‹Í›Í6ºÚ,æš„¨»bgo:?w|mÔŸotvN‹56÷ùÌ\§sÎÌ©Á¦ûÏ7àðÆW%+6™m|YRÌ5 7Rwkÿ”¾qYúü;"„Ïsv›¨.NR•œL:©¦Åšˆ;aGf:¡VÁé G'ÔÔ`Ó€‰à<Ç—j+6[ãèZ­˜kn ®8ƒRpüÙøŒk l î;ÏÑÙžý­Éì«ÑÙ5Ø4`_âçGV=+ 6›mt±OÌ5 7Pw„Îs|B¢‚“ùF§#´XS`qWä°AW2*6 t)CÌ5 7PW|ö, 8 ôYY‹5Öw˜ŒÎWl6è$°˜kn ®8D/ 8 ô‘B‹56wE:AY±ÙP 3”b®I¸º÷Qé+ w˜?ÛçN¼õxþùanøet#29ÙDä?"ób ÎOv÷øu»ZG69qØ ‰ükEîäOXZ¬)°¾¸w´ߦ4l÷püÅ»<=Ø&d‚È™€NÕVl¶ÚÓ¹Z1×$ÜHÝÙhs^åæ‹›×'îF®r²‰Èþîƒ'ç'»±Ð}šµd‘ƒ‡öã† ,Dô{.=Ø&d‚ß“)ŸÍ®ØdåàÓÙb®I¸º¥W­¼cóÙ7;óÚߟÄ`Ó€ƒÅä.ÎöÚÖl£#›ˆ ¶mX>ÏeþÞåÒÇÏ'†óWEËÁ¦û*?¶k ”¯h”†¯ôüë=Ø&dG‚O ¦ù–ûîWÍÓ¯ÙÃ}Ч4ìÙ&<úÒm:t ö¤ûøúUÅfû+]ÀsM Ԡtm§­Ü|Oq^]}Õd‘ý˜;/oŽn”ÿ˜Á¤J69q ˜‘"Þ( X÷qø¥'Ü„ð@ó”â ©›­It%UÌ5 7R÷lˆ^s) {|NÃ飵´Â×G ŸŸð9ˆ:ÀM 4_üâÕÙ·ü€wã¦ËÞýê,¨~¸«&›ˆìм\¯+¶&ñŃíV}¾(ô`›~CŸ¶qáî»;Øapø¥'Ü„ð@ó É7²N›í5¬UCÍ5 7PWê¥.ïØ|ÅsJþ“·%ÊÁ¦£µLº¨°ë½Þ´x_úáúJØþýªçý;øêÍ£ó‚hÓ¡#©å9³Ò°¯¿™`Y¦ON69²ÆNÎFéÆ%V°»;ÞÊÉIÔ`Ó€Ñãè‰,jr{ÚWIÔlÓ±½åÙœòŽNg!ŸRƒMŽd†Îê^Ytò5ϽŽÉrjÉ—nd‘‘Wô¬~"ÅWáÀ,<‘âë7!<Ò;.Á|¥!¿HQÓ¡lp ñ}Â4FKCN1 þýÉãæ*T¦ŸJÃΖéI39ÙddtÔ·²­…m[Û¹ù2í˜Ö'¯1@O69y“7g²’žO–3YÉpÂÿh~øåéâdp4HÀ')ù§_°°¿¿~²º_°4äô'£à×O®¡´ÒùVøä' O[öz°MÈÆu‡üoiàéÎx"o­G› ¨´IÓM” 8ÑïŽõ~òšÛä`Ó€#_·2éë¥Á×ÙrS—úàM‹6õÃ5ŠÌ4à`´ ÷½ m¬…ýÅ(øõ“Ñë^ÐvÓÒÓŸŒ‚ò$¯¼”}ѪzQ}æCˆ6ÚÒÉ g_åØ׆Eû≠»œl*r¤4’ö¥; wn¾7:½c“[•““MDDÁ$ÚUXrºÜ±0=™h<)H´Y±4äô£à×O^Ñä‰j@…§kƉZ€m2t0@¹oAß_i¸ùªñpÖ#·Š('›ˆˆ ÞP÷¡•†œÍBºuÓ—À| ö5ž·òüyÑøæ‚ˆ¹<üÒnJx y‡uiàÙšw&µ®G› ¨ …¤tÓÜŒEwg™ÜD 6 8¼2nD+ 9]¥éÖ9LßOõ%8кê˜o-šÁlÏÑxö%V“MDDF›ÓÑvÒÓLw`ú‚™/Á¾ÆËß<2]ñϺõðsVÒ&£ûàM‹Ä_ZñUYÇcsï°|ºXätÖQ6:û„4'<ê•ü,~ŽAøx¤®G›h úhSÞrxÈïsíŒE_ú¡M…„žÀ¹SÏúÓ‡VrºE¢à ¦¯ûh¼@ùùõJΧ ïQ×£M‡´k’´Ó´‚)ˆ¢/ýЦBûB¯húSøÓ™Srºp à ¾‚9BÓ€Y+©¹’Ó)xƒ¬G› j-J?þ‘ÛÓ¿Hœö€ÿ‘üx :Xí£ý¦ëøçkŠÕè€6:½m†* 9]ûèþ-Œæ M4^ óáiEç ß “i¶éØÜ`ý µ ” ÌB}é‡6Úú~ˆh·KiÈéL¤tP0}MÓwà@ãCdó‰ûMKÀýod#l èB7)=}P{òJƒÎ—¾NÂlÓ±¹Ç\£è¼^Ee}é‡6:¬[Ò¦ï ¾!оôC› ^€¶”†œî5tà F3³¦¯X䄲¢óåÛtì@îË š|diÐÀ‚GgQõhS¡#©±Ýèrd‹¾ôC› í ý@ëѶ€ÒÓEîd@ÁhÜ4àHã?ÑŒ.…Zá[eÿg R¦P{ÀM D ¬ÓçiE§{Ìëi¶éØÜ[·°BÑ9ëŠv:g­G› I%øè®¨ ¾!Ý¥G› ½€ >´‘¤4ät§¡{_P0}·Ûwà@ãõ`L“ Kƒ’?o½þŽðŠÝþ†›é7%<ýfœè2AE ]&УM…v¥^¯˜ ‚n°ÜÁÀ7dŸ°ì€6:ìC†JJCÎ>!݃‚éûÒ¾GgaÞ™zæOWdúÐMJ„ŸÑÜ›¹ÞÑÀÒÇf®; M…ޤÆÒÎlw{qwpþ énÜhS¡¡ôˆÄ–½vôVƒ°ìÕm*t 5ع7©•†œî(øB‚éëǾûß®h „ÍZïh`¦°YëhS¡#©±Ó(ê+ XìPô¥ÚTè@è¿©kQÉkG‹[òê€6Ú½@o½a­]ôýL_‚ƒ±1£96¹£aÇf"; M…¤ l¿öV¶c»ÚTè@è=U°eŒ ¬l£ÚTè`½Ã:Òè[š¾ûcc¸¡Gp:•WÑÀ°£Syz´©Ð‘ÔXˆÎ6ßî``å`Ûo; M…„N³Vû'dë;X9Ø:@´©Ðþz7`=]ôuG_‚ƒ±‘fؾÉõVú&ôcçz»ÐMJ„_ÀDŸ‚ДŸ‚Ô£M…ޤÆÎF¨—¬4`à¢èK?´©ÐÐ+z6¢ë ,ÙtýB6:Øh°@ú>²/Áþد¨t ¢ŸÔO.Šý'ã¦'ó‰ªj°iÀÈ70[Ã'MG4IÈ'MõhS¡©Áâ;ÛS¾ƒoÈv•w@› =¢PºâRÑÀšDW\ôhS¡©§Yîu+ üv!2—^¸)áè ú9éêKE§ÛÌäì_nD 6 8ùþ\Dž•ñë쉛_èÌò‰ûMTó‰{=ÚTèà+‚E}ÔIW0ð Qô¥ÚTè@è;š1¤«~ ,wtÕO6Ú—zº¡dºUÑébê<ëá—¢Ô`Ó€‘Á{ðûh4G×1&4oÏ×1ôhS¡£¯ˆåñØËv0ð Ùë: M…„†oæ ‹  ,wtT6:zklÛÈ’ëÀK‹^<;è/û±4ìõÉ~üa_:²MÈô^Ð/I×B+:ݼœÇYüJ¨lp ò:CÛ-~ êf8éj΄V/øjŽm*tðA‹ {iľ!{mD´©ÐÐè +|)¸¢óåŽ/ëѦBûRÏšl£+”.¦wg•v3j°iÀ‘ÈX²¸TõÅÑl]x™ÑB_xÑ£M…>#f9¢/FØÁÀ7d¯Fè€6:½E„¯ÚV4°’ÒU[=ÚTèHêE^'* ¼~Ç¿ ßW®pSÂ#ÑïREiÀî×dÁ—^`Ó€‰W4‹LÉ+:ýzÞknjL 6 8ùŽe‘‰›‡l4L·f´˜Ã·ôhS¡£Ïˆ9Ü®ÎOv[3z =‡ˆm*t 4zÝ_¯h B +ãz´©Ð¾ÔËUkÈ( 8ݰh ‰lp ñð U×d–þSføÿ›?漟ôéùßéëF¯­ ÿ÷Iët“Ò7Ýÿï£îhÆžö"Tt¯àtU£Óçj°iÀÄ`«Z}- 8ývt½X 6 8’øµ¾õc–ÜfÈZ³üã–基Ôÿý“ÿê-…ŸuÞ6ÒÇúùVö¿¥m:²7êöüѬg›H>B“Wi°Ïk膿w°ÜK'®I¸ºè[S|y@^nú7&¼„£ «Á¦"¯ÐzOW>†5›gÊRª ¨°w,ÉFgá+8ýdt^ 6 8ø%Ùà"niÀÙ·ãËÎj°iÀ¾Äã1Ó´ŠÍv Úƒ&æš„¨‹>§ÅEG¬éãæ¤sý’¨lp$²¶vPp²oе-ÖØ@ÜKaÒuŽ N¿]çPƒMŽ$~è½a¥¡? Ð×Ö…nRz <òîQ0/ 8ݬQpû‹ŸEs ^û›ççòñéež}éÈ6!;!óˆŽhK^ÅfÑíÉsMÂÔ•?’]öø»TËÞöî€6úÚ¯Ÿ½`'Úô8âZdiÀI¤D×NµXS`qïXI„®›VpúÕ躩l°/ñ„õÁ^Ò€Ó G»WÔ`Ó€‰oH~ž6Vl¶ßÑB1×$Ü@]ì\MWM'ä J—L¥TPa',uLK'ð“ÑÅR5Ø4à@bäUÂRpº”Ñ–5Ø4à@âIÓÆÁŠÍ3Ú9(æš„¨+.Ö”œ,itqI‹56÷e5ùÂRg_/,©Á¦ûÏÈã4D¡¼4àôÛÑ¥}5Ø4à@â’¢ƒ›-h´ePÌ5 7PW\G( 8YÒ躇k l .ØÎ€KNç]UƒMŽ$þö ËJ•~œ²RºIé‘ðXpA—•*8ݪé²Ò¼¦i”3±Š æ3&11×$\?ñ>¯P$Ï'Þ¿X›h-ïÜd”Ñya)ÕT_Øy åLFxA®;“VƒM$¾m´õ·DþgiŸê×»nKûöŽìO%xýß0 ¿fóÿû¤óFŸý}ƒ‡_zÂM ßTÿ¿Oªi*茫b³™v`‰¹&ácZœ|- 8ùlt²X‹56y ãL¢xA.t:“(VƒM$^Ó<Å™2~Åf³®ã‹¹&áêŠ3ƒ¥ÇŸÏdj±¦Àúâ®ÈCg²˜+òì™,¦lp ñ¡xý929m[ö/rÚÖnJx ùˆœ÷éº~Åf ]ÙsMÂÔ]‘|4Ú…Yî0{vÉ}:W’Ín†BN69yÒàLyE.Ä9“@VƒM$þ›^&+ýêŸÓϧ;°MÈŽ$Ÿ OI§Ž+8‰ŽPì¥ÖØ@Ü;’¤ ý›í"´¡BÌ5 7P÷lzt#é†Í÷ç ¸Ù-—ªÁ¦ûCïGŸIßóÎ¤ŽµXS`qG$EA—ú+6›kt­_Ì5 7PwšÅÜ|®9“ÍnQIN69Yœ, 8™qtS‹56÷œ˜éŠhÅf󮉊¹&áFêB'fº£rÓ¹6\Yì–8äd‘}‘7i^°¼s“ùF§1¥TPaõyÀòÎUø"ÙmBv ø„äèjhÅf‹]sM ԕ¶I”wl¾¬ÝœÓ­'©Á¦‹¥'˸ÔbM Ä}9¾Z±É\ã‹¡b®I¸®ºg1Dgá/ 7Ÿkƒ3‰½ ¥žl"r òœGÃ'ì¸;7ÿÁ£#…—êÑ“MDDFnU óì;6›wl¢]Í5 ×W÷–ß*x"S¹c³_˦*Õ\“puoJ÷byÇæSmr&±—鑃Mž²·ìÎévø³rý¼ôWx¦ë7%<=¿këDörÇfsM_ª¹&áê.yäv„¹só98;“ÛËéÉ&"û"ùu4'2l;6lŽMÍ5 7RŠ‹YÛÚÎ͇Ãòy -îj,'›ˆˆ…Q¶ë‰ûâ l²Áó[jNäÚvl¶Æ±É65×$Ü@]hIf=U›¯nά^üÕB 6 8ø¹—ξó|;ã¿F¥«ó ð¦Å»Múª…Î"Vrº¹°¦69Ø4à?ÃûW‰q{ïm¼Þü“öZ§Î}û†kõÓÞþÿ,ïþžÕnJ¸?íÇ:®±†´›¯Sޝiq‡žœl"r ò8ý®­¢kÉìEk + 9ЬçM6 8ø~+}°®¬›~»ñê e_b5ÙDä@dÌÎ Ê;8´5KÍ5 ××w:ܬÿ9žaÑ—~hS¡¡óö3žÅËŸŒŽ‹eñ×f1Ø4`_àzå§ÎXrºŸÐÎE5Ø4à@c0ÕJ—¬–Ã5ðñ¼£‹Vz´©ÐÐ@Kû»â¶‡žeÈËj²‰È‘ȳ:UPö64¤ 9Ùdä@ê<þ¡nËÒÓ¥Ž6ˆªÁ¦C¾"¸<ÀEŽ. ÊÉ&"G"ßÄa~iг·?›ÈÉ&#GJ#åWÞî¼€7 ŒžIË_1Ôd‘}‘×kÞŠòEֹⷖŽÛˆ6íÜoZ¼Ÿx^Áþ"Ô¾]ÞÁéCÎÅ\“pƒÁ –Æ®¬·`=\n/¼½@6:Zj*.ïØ|ÑsÎm«?ŽÅ`Ó€0·‹KCNçm…VƒM4>ÜÞ£É*–ì²,úÒm*t$5v¢íëá–þx‰£ z´©Ð¾Ð÷xìF]³¥!§Ÿ6úªÁ¦O¸nÐYÑû›ß$štVT6:«ëÒ‚ÃÍÍñü£=r²‰ÈÈbqyg_w=‹¹&áú>2£×>=èL]E3NÕéѦBûR?À2mˆy\Ñ£í‰Ñ£M…„ûºa qiÈé,¤MÏj°iÀÆ3x>áóÏ@>Ÿ¡G› I…Š´“à1£‘>í%УM…„^±ó ld- 9…´÷V 6 8Ðx»,wËb‹îl* üÉý|ßÄ\öãˆÞ¨Ï?Т/ýЦC;rÿûõÞF`²pÙXð¸ìF´©ÐÔXÙ€³ür/Èy zMDŽDF£s.-úBo+Óð©¾Æ¢/ýЦBRO¯^M‰³§4äé¹Í~r-œ´#uA›h=ƒ¦2Ô_rºsfþ`Ó€#ÁL™±{¡M…KÙuA› H Å8+Á |CÎMÐm*t ôŠŸlÿ l,\¶¿ ÚTè@jð‚$¸¡4ätÁãš&þýo·+–3æš&¾ûßnhÜÈåH_h`±ãr¤]ЦBGRcI%ÎÂñß3qtA› = õG®ÀòB‹W`é‚6:¼† nú( 9]ð¸>•ð¡‰W6 8ÐxAJ\:ú…;.Ým*t 5´É’f™_.ð9·L²‰È‘Èè!èJÕ±^è|¡#ëX]ЦBRƒ­¶h?By§K×AñïnX&‚k øì+<ÜÐ…ÐÄ+Ÿ†Ö£M…¤ëêÎüs|I/pþ IkR´©ÐÐ#z¢+X ,utK6:½!íD( 9-(øõ“4ßC׃*úIýT–­àé8 ŸÌ'>¨©Á¦ÿ‡Œ¥{¸•¯ÁÁ@^Ñ<ÐŒ+ŸÖ£M…ޤÆNÆœÕîvÎl×m*t ô=gÒ嫊vº|¥G› Hýx]•~ýPè]ê'$›ê_äãðдÕ÷a›í˽…Êw ÊúæOƳï-tA›ˆ}C³¯tŰ¢ÓðãæÄ5nZI 6 8y@“¤tyeDË |yE6:;XpŽÝ_.°s–Ýd‘#‘Ñ4 ]—­h`§ë²z´©ÐÔ êç£Ë…®vƒ³Œºy%5Ø4à@äÍ“ÒÅ•®'ÐÕ=ÚTè@j´mŸ¯V40 éz¡m*´/õºrhi í"Õ£M…„¾‰=Æå:7¹¤›싼À«ÑžŠŠ¾í©Ð£M…ޤÖúmJNW:Ú!¤›H|/4çÝ „G´›B6:zÀRÿtÓYß{²§ ÚTè@è]h+VE§›Š{¹¹5Ø4à@dôR5¾r]Ñù÷ã+×z´©ÐÔ –×E] ¥§› íÃPƒMŽ$_.å ³ Lº0«G› H}Gsu´Ù ¢ÓµÎ‹¾ÜÓ l°/òú··JS ªàcWS RƒM$F¯¬ãkß l%tí[6:’zPWÝJÃ~þêñúwx|Ó©ÚmBv$8–E(¥§ëmQƒM$qq³4h`e¢K²z´©ÐÔãÜl…?¿ã§«d¾(ÈêѦCrOhšvüTt.Ÿg¹ï÷QƒMDÞ’JNÃ%ºl¥›HŒ^xÉ×»+•èz·m*t$µÖ Qp:Mh÷†lp ñŠ&úé2lE….ÃêѦBRo•Gibià“ÊœïœìÀ6!;Rü*w7–ür˜ýúá´TA}*:<&'¤ñG‰l°?:®EM¶¼sÓ¸ƒ."‹¹&áòPyvp”œ}8Þs¢›IŒ–'èâqEÛ ]<Ö£M…öþ÷­^ª\íMÈÆÈv¤>ÜY´;¬Ï>7Úm:t ö„&«hÛLE§,Ú6£G› IÖ i¿]E§;×ìD2n®C 6 8yÁê…´Å ‚Ó ƒ¶¨Á¦¯PMvø”œ(øÒ lp ñ=ÒÓ.ŽŠÖ7ÚÅ¡G› íKý¸¢ÅÞ«ó£ÝcUE§řپùK 6 8Yë‰( øú[þÑx8´XS`qoX…®qWpúÕè·lp 1Ö‰Û¦JN7Ú襛H<¡aÚFPÑÀOÛôhS¡©g´üus~´%Wt:QVggr£d5Ø4àHdm•¸4àd¡«ÚZ¬)°¸®&ÐTYzû5EV1×$Ü@Þ;–GM$¥§›m{QƒMv%þ·Ð¢y7¶Š½£å­bw@› Iö³°ö—N'uÍ/r°iÀ‘ȯhEä. {zÅçå† Ÿ-||Âoüÿ>*­‡›¾iþŸ4×–WË;7Ù²Ùb°–jj0˜(‰L‚wpöÉèB°lp ñˆ%‘QïEiÀé·cÝ"r°iÀ‘Äq^è|uG»£â|µÚtè@ìÍØ³Æ† Ä/¬±¡ÚTè@jqÁ¬4àd3a |b¬)°¸+”L¦‹{;8ÝHØâžlp ñ¬åbGg»êâ„®áB6 8ùþ>;dR;úyýÉí“…í|§T¶ Ù©Þ2£H«vº ±Ö9¸Õù$Ø—ø&®š•œì$l•OŒ56w»ÖUú¾MiàA$~þež.pSÂѱc6[U­Ütãf‹ªj®I¸‘¼h‘uíètÛv‚.×C$›ˆÿN=an¹Û„l?³|ÓÖ+Ë;7ÙºÙꪖjj0”ïØ–ÇVVwpº‡°•U9Ø4à@âZHdD;:ÝCœÀµÉÁ¦G"cé{ÔŽSp:AX‘l°/ñ3ý,ó –ûÌ ³Ì2«æš„¨+.˜•6¾À§Åšˆ ·Ò×ììëaºé.èC7)=’]]:+ Ú'_”ûÔ`SS™e…àVätM¢K×jp+òIp ñ„–Hhw\E§‘ϺÉ!5Ø4àHd­Ç¬4àt‚Ю85Ø4à@âùÄp¬|Çf1ëWsM ÔW~KN¢"ºR­Åšë¾2þº­?wy/u?êÊS-~ü7ýûoÿ[üÄX¸)á~jlت{Êk5JÆâC˜~éJ7)=˜ëh¦ËËoׯøK]]sMÂäEKE´}­¢ÓðÅ‘Â7¯©Á¦û"ÛM×I4@Ûµ+6Û]iö˜k®¿a[Â~¸î²Û¿Ü3óûüÏeøïþ¿qúéDpw¬.t“Òý=k©{«4àlYæýfj°iÀÁÜNÚ¢¿òTxØùÂ?ÒnJx ºÖQÞ¹I@M»G¤TPa'¬LI›*8ýd´©A 6 8xAÊ;´‡½b³Í•6±‹¹&áꮷ玷Nþð^Ùë¶òÜ7ú:ý;þÝ–ÿnACb¥§Ç÷ôKWºIé‘ðZÿViÀ鯂_¿Xlp( 8YšiC†k l0X­„ö TpúÕhŸ€l°{Ïë?.”»æ“ßý11ݤ8íb¯Øl'¡mìb®I¸º[@(³•œÚü¤›I¬-§–œ¬ÁtùW‹56wz%ÉdŒÒЃ6ÝoÜ#]è&¥Âc66º<ÍÐd¡‹Áb®I¸¼+’ü¥Õ›í"´§ZÌ5 7P÷Že8QóEiÀéBÛEÔ`Ó€‰µ­òÎMvºþ&¥š€ »À;_SžÞŽñ®Á×”»ÐMJ÷…Ÿ Ç;€+6Yâx °˜kn¤.tI#_tªàl%â‹Nj°iÀ‘ÄúÒMiàÏÙñwT|UrÒ£M‡äïÁzñ…»º‚Ÿ3ðö©vxÚ^-'›Œé¬5v”œ.I´E 6 8X\.+ 8ÙSéòžk l ‰´+µb³}š¶¥Š¹&áêŠô¥'Ÿ.(h±¦ÀFâþÉù 릕~ütºiºIé‘ðÚòfiÀi쉂å^®Ð<äëNß}‰—ÈÀñf¡ŠÍ–9Ú.$æš„©;A˜®;Up:躓lp ±6ã]޹ɼ óóRª ¨°KööÌ75§Jß¼õ?/6HkN]è&¥Âß‘ÏI;o*6[âhë˜kn¤.–£‹"œ.ptQD 6 8øqCÊYWg“ö׌;Ì¿3ãs;Îâô?¯þz¡&›ˆì‹¼xá›/¬‡§Î³%Ž/t¡›” ¯Mˆ—¯û|_‹56wD²D´‡¨b³½„6‰¹&áêb§:…¼b¡=AsMÂä}ÏËú‹ñÆÍ÷¯ Õ_ˆÕd‘‘H‚6\Tl6ãhË…˜kn¤îŠ aº·róáðpš[‘“MDŽD~®î³Ÿ3]êçãon­ìk”«¦é—®t“Òÿ4üþJsßš¦«1ßn~}Æ-Ïÿø¬„ÿÜ~1Ž¿©ðOÒt¡›”î÷Bßÿf—…ŽJ¿zóè›úF¶ Ùþ"ðArMmãϯÖt„ÝʼnáÒ€“ß‹b_¿wB²ht)¿b³}—®å‹¹&á£w†R<ÎÏõ;u+7Ýs×›³›»g9ÙDd¿‰íŽ\”Æ—¿Á?vâr¾lô 6¾â”jiÀÉÏ¥SÀZ¬)°¸$‡C;Q*6[Éh+Š˜k®¯î£F‚Ê[âJ.§ï·ë7%ÜW(³C·çVn¾u Φäšåd‘ƒ‘=ݤé¾Ò€“eŽÎNj±¦ÀâÎHÚŒvITl¶ÈÑ> 1×$ÜH](mF72Vn>×Fg»U!9ÙDä@äCnRô diØ·åóüø%¯Ó‘üdnx•P“MFv¥®×W`(Ë󕆖®Oç(ûÐMJwázCÎÕtûÝÎÍ'åìLwÏñª'›ˆŒî9;»õû›|;º€¯æš„¨» ±2Ýé±sóá°8Íó¼êÉ&"û"ׇØ2‘YßöÎͰg„òRz²‰ÈÈï×–µ‡—VËŽÚ]঄û;àöìësmÖtÁ–wò6JV úÒm:t0ÀÛL°®è·³£hýtÕ¯ Ü”ð@s(¡ÍVývl¶™³ Mj®I¸‘ºÊbbi°Ù¯e»mÔ\“p#u·té}率GÛíù»êûÐMJ6Å:z ‘^Á#–ãÿ»û+´šl"r0º·Ë^uM¥!^¼Ä‚/½À¦G#Go¶ìºc³õŽ­»ª¹&áúêtôfíó;7ŸrŽÇòî`9ÙDä@ä7#”(¿Xús#¯Ÿ¦Þ7¹Ñ.t“ÒýMpA?.jV/ 9]íX½lp0¸‘»_è ìŽÍÖ;¶«æš„¨»BY;¶yaç¦3ã'¨ú¸ŠúXM69ù­h?@y§SŽí`PsMÂõõGè,Â:kwn> ƒæÝXN69ùAQ—z®ðëoŽU—xÖ£M‡öC‹úž‘Î\r6 i?³lp0¤ïÐá„õ…îÜ|:N·»/±šl"r òcÖg¹JCV¥/2t]è&¥+Ø,û-KCNç#k•ƒMö÷´]9 m±+ =œ:§ÛûÐMJ÷÷4BçÖ=ºsóeÐ1!Þݱ-'›ˆŒî×ö(¹”¸¼ƒ6Á?SEß§#ú ­|Wf9Úth÷Ud‚=;l÷ÀÏVöãzdoÔí/¸GÃl²ÉW(¿4:‹¶á­Ø<|x?ÆS“MDD«‡´£‚óˆ‰7cèѦBûB¯hß,ê½. 9ý„´]\ 6 8иÃCå,uƒ·Ô¹)=ÚtèHî;²@ÓþåÊÍ;§ÚôpÃ9ÙDä@äÃͪšÌniÐAo‹¾ôC› HÕ"iOÑ ~AÞT$'›ˆˆ,¶¸—wpöõxS¾˜kn ïã®tÎ}{4šytÒ_6Ú—úÖiÇý˜9gíãУM…„°ÜRPr: é.5Ø4à@ãÚh",×—†}LfÊlØ&d‚o™ 5]c©h`É£k,z´©Ð‘ÔØy“6ƒU0°äÑv0=ÚTè@èížmæ¿4ô«_P>_³èÀ6!Û/„ßÑ€m›) 9ÝièN5Ø4à`Xo—Ëën•- ùõ‹¿ÿþäÇ=Àљ݊Î×i>³«G› íŽÃû»ÑæB›Ø`|À»Øäd‘‘Á€sjùÓaRÞÁé’r/Wtõ·\÷I™àAª„iÀÁ˜ÁLŸ±«h`± Svz´©ÐÔ`UvÛU0ð iÃm*t ôŠžèlEoÕ±ŸG»uÙ~=ÚTè@êÃ^¥¹<¡4èçf5}š/_ÜùÐmB¶{P¯W¬B7ß”†œn0l¿l°;¦Çz‰?°0±9é l.lNºÚTèHj,§Äzîv0ð Y×]´©ÐÐZïe Z;Ø\Ø‚V´©ÐÔãË@#Ê¥—†í¾7öE  Û„ì@ðc&öcfpÿ”tÛÐΞžÛ­¸o¨ Ü”ð YÐÌ[ØÑÀnÖ: M…†÷¢8 4p?)[ÑéˆÞ Ûð×9Útè@n­]³¼s Ã:Lõd‘#‘Q; [¶ÝÑÀÆÎ–m; M…ö¥¾Ý–ßã¨è¡—M²yû ¬§lâ¾ÚTèà3‚Ž•+éøÛÁù7¤MЦBBèa—­ùíè|’Ó5¿hS¡#©u®4ìíÞ½¿¶ú_òc>’ŸÌ ïÆ5r²ÉÈÔàåh·qy§ËÛ­æš„é æeц×ÒÓ_Ì6G·l¶ðÜ•^=j'g?¿~òŠffÙÚŽ–}¶†Öm*t0 A÷ Ýø¼‚E_ú¡M…„¾£‰¶¿£›-Àw@› íš3ÆhSa/%øìá†&©ÙBöŽ~R?9Õ÷5úxN9öº"«Á¦"7lDÛKCN÷A|øÉhö•.œ h¡ˆ/œéѦB£›Ù¬/x„ϯ¬1XO69¹1·‰œÁ;øø“EÞàèQ].+ ûêÏùäd“‘ý}{ÿ¤EFP:Õh2ö‘T4#Ñ>=ºû4:!Ó"=qšŒZ.t§ ›D* yöV¥Óy/5ØTàHe´ªB»^*:FW'Ìu“æj°iÀÈ+Z¢k¦Z&䋦z´©ÐÔwh5¢û7v0Ú±-ЦBB?мmo©h`¤í-z´©ÐþÖ ¯è«„¾Âúãb¼Þ=U·*ÃuóTÝj5=oÌÝÙ›aëSâ‹ÎÜ.pSÂ}«Ù8€C÷ŠTtº%:¯DùN5Ø4à```e…7ŒhA7èѦBR£Woñ¦™ŠViÚ4£G› IÝúÿ æúÑǾJÃv·˜óO”ãï^çŸ( µ7DZò±Ò°ß¢_?»üŸï¨ª``M¥{ªôhS¡ƒñ±¢óœvVUtº->œýÖM¦«Á¦"ßÁÒ_¹ÑJ5_¹×£M…¤FïÄãÝ( LÚ¢G› í§kœø8ÿB¥íi@¡½¬·ëÕY˜Ü|lp òߎªH;¡¾J«G› MI­ªÔ~øÑªJí„^‰Ç»%*˜à´[B6: ³ÖüSðÍy,øÒ lp°þm4TÿG#㎎9º^ÑéÆrs>¡{ÊRƒMD}ˆ´Ë¿‚=–6úëѦBGBOâ¢ViÐÀîM—âôhS¡}©gøÊAº¼\ÑÀšD——õhS¡#©RëAiÀé^H›%Ô`Ó€‰GôãÑ…åŠN7•ÁÑÂ]¡Õ`Ó€‘1Óß‹UÁÀ²¢/ýЦBB£w%òUÊÎ' _5Ô£M…¤Þ®¿–U”KNW:º®›I >mΗ‚*˜(t)H6:úŽ&FéxE§›Êè ;…ƒMöEÖZ¢Ë6Ÿ$ôßr°iÀÀ轈|­­¢„®µéѦBGRkë°¥§› ]9VƒM$žÐ ]άèt…›-ü%C 6 89ñßìî5­``•CÑ—~hS¡#¡i^¿4`·ï_zM$ÞœBÊ7ÑKÃv?ßo¹÷`› ŽZYèJwE;7]éÖ£M…ޤ^Z©U•îŠ~þèñª@_ú¡M‡ŽÄFòθå¤4àd8a’QƒM$~ ygÚQÑé×›?ká; Ô`Ó€}‘×ëM\Ê, Xúé¬m*t$5êÚ£ý|Å/¬ý=঄’Ç‘ÍEÒÅÁ·+Ìüè”® й&áFòÎ`4=x‘c qœ28Á¾td›>ˆÍå D¥´ƒCN69’)\á&ªÒ€ÓP _zM$žÐj m‘©èôë9I ß £›ˆ<£–/ÚVPÑÀRDÛ ôhS¡©ÕÍå H(ûÒ‘mBv$÷(-Ô—œ†J´µ@ 6 8êöÃ-T¥§[ múRƒM$~üÉØ©Ü G´{C6Ú—ú~E˼WÖöUÑéDqNm¾éK 6 8lkãOÞáG› H}Ãj…´¹ ‚Óí„6¨Á¦XŠ5O•œn'´ÝK 6 8x|uþºQr©k2m%?/hœ$èK?´éÐÖ‡æ>‡ª4èt¦8±­ïûRƒMŽD^¥†ˆÒ€Ÿ3eÔ8´XS`qÑk^x+RE5mEÒ£M…ޤŽÓ~ßød*Û#ßød:°MÈŽ_WþOèÓw+WðÕÿ’§oWÖ£M‡¤^¥>ˆòÎM–þÆ 1×$Ü@Þ;V?ÅT·ÄeÙ¦I…߇ŸŽÄ鿳Ç_76ø8y3pßbÆ#zƒn Íj´éÐÜw°:Æ»ŸèͰ¼ûY6:’³Ê ÎøÒ€ÓU _zMv%ž®7ÌYÀ¾vpý³v/1ÖØ@\,WÇ:½*7ÝHX£—škn$/ØvAûBwt¾¦Ñ¾ÐhS¡#©àÏZÊwtz†uʤ®¡\6 8yÂJܨ1»4àt!b­är°iÀÄIjî Òξ:1çyû‘žl2r$uöBÊYóÑŽ®¤9k>ê€6:[kæ)ïÜ0,â­GZª ¨°w,†cmG;8ýd¬íH6 8’ífaý·;ˆXÿm´©ÐÔàu?¨ñ½4àtš°V}9Ø4àH⇼nYøËΫ+¸ö`›í+~Ó{yJÃNã#Ú¤'›ŒH-öò”œlÞ¬÷HŒ56wÄJ%¬f§_5ÃÈÁ¦OYîþ¼Gt‡oÛöO£Ð#ÚnJx$:–ÅG-Ú¥§†5•ËÁ¦ÏtAâ»wì³.<üõޱÜK'®I¸º‡ûþ4ÖÊÒ ÓT¢·‚zUl9Ø4àHd,…Ávp²Y³61ÖØ@\mU²¼sÓoÆ–QÕ\“p#yñ Ö.·Ã¡Í™µËu›î‹>\'©©²4àl¶Ð6P9Ø4à@âÛ„l«ÚŽÍ¶i¶YMÍ5 7Pw«µ´‘hG§sÃ[@]‡€lp ²ÖÒPÞ¹É6M0¤TPa'¬0B«+8ýdt±Z 6 8xY€å—í"Ù±Ùrƶ‘¨¹&áFêþyÒQUŸOW ?«·®>­G›ˆ½Ž¿ßðïùÂl¿“¯¾Íà´ß¾Û„ìHn´‚H;ã*:ݨ½UÔ­[«Á¦"cXÔ^VÞ¹i0OûáÄ\“p#yµ>†Ò€“xˆö]h±¦ÀânÄU”ÕKN¿mPƒMö%oHNžöÕWl ÑÆz1×$Ü@ÝÌÉ󦡊Nvg¤ù–!5Ø4àHd,'OW¤+8YÔèz´k l .æ?¢«¢7ýftQTÌ5 7wÍs—' ±/g',±b®I¸ºÚMyç&.'I©& úÂNWhY૜}2¾ª¡›H|ƒÚlàÒxiÀé·£‹ùj°iÀÄCž¹<á¬Øl1£m‚b®I¸ºâDviÀÉg£ïZ¬)°¸ÛCÚ×Ì={õܳîÞVÉÛ= Ÿnâ:ß ¦G›j-«&¶R§ë]ÿTƒ[™O‚‰õ)ìÒ°ƒ ÊùÔ{¶ Ù‘àHXH»Ø*6ÛJh›˜kn îá®E»4à4ؤ³îj°iÀÄ,éC§†+8™tbX‹5Öw¾Ý¡è‚ïTªä|Ÿæ[•ôhÓ¡S­eÅVêt¢K jp+óIp ñˆ$ÙhsUÅf›m¯sM ÔÕf\Ë;7ùht~XJ55vÅ2@h!¦4àtžÑ¥#5Ø4à@â;’¢k÷›Í4ºx/暄뫻\¡š5Ÿ%®àø³ñ9b-ÖØ@ÜälåóÜ~5:?¬›Iüt{ ¯ . zrœ†çï9Ö“MF”†ªTt¿b³u®à‹¹&áêNbn¡o+w˜?ÛGsËíæt†<ÜL±œl"r$òëe½ñú)]·n:¯5]·îéºûÏÿÿ¿k°XLí%àÔ6öm¸6ìÇ“} – =Û„ì@ïòòYù Nw:+¯›H¼þi•eå+{sÆ­Ÿ’Lç³òØ&d‚‹³°¥'!(5ÖbM Ä} Y Ú T±ÙžM»Ä\“p#uW$Æ »p+7ݯ§Eäáæ‹åd‘}‘Wì†>W¼bWð¹b5Ø4à@â ÉÑž•ŠÍfmZsM ÔoÈ*A7‹Vn>ãg.»u;9ÙDäHäg:dþ«+ûzX„—;v¡›”Ⱦb 9:]¿¾Aü¥ŽN׫Á¦?4]ò¯Øl±£kþb®I¸¾º÷+”&¢{Á*7_è¼(·˜''›ˆˆ,N‚—Ï >i¯Åšˆ;€>+m‹­èqþ­üÙ;Æ:$¦#¼:K¶?áŠÜnJøÉÏè2{t~o¬JᦄCqF² ´)¢b³¥Ÿ¶Eˆ¹&áFêÙ†}s•›/û‹³¡¸µe9ÙDä@dq¾º4àdñ§óëZ¬)°¸5Õ«s+–,l«·°ùã¸Ü”ð`«Âéwî¦ÂïÛˇR¸)áÁP|¼ÜêšËšJƒžž“gþøÃõ‡?öúdÏûÿ>)®g›½éýõ~ƾÂeKƒv-4ùÒl2²?²×;°tÓö³ŠM¢Þ&æš„¨{’¹'úg+7 hÆ«*¹‹´œl"r ò ­Ÿ”wn23èr”jj ìò*2ËrÍ¥¡‡wmŸÏ“w¡›” ¤OôVn>½z®›““MDD§öKN&#]ŠÐbM ÄE.»ãM:›mÓ´KGÌ5 7R÷eìS½!Tø“ûÙÒ6×7Ñ•úóüEYŽ6Ú•{¾Öwé¼ðû´Ç}'wX•˽Û„ìHn(s9:»Ÿ—SÛ¹ùN╼´šžl"r òÖé¨L ”†¸+Îf4: M‡vóóáYÕã,å ,|“³ðyÎ)=Ùdä``¯Ð‘›mXܹùLœ9îõd‘}‘ŸugYÉ»4Ø,\b+ôj®I¸ºtüó~®mTn>>—ÁÖ«kÈÉ&""ØÎ ÷O•†åVg2ûXM69ù~¼DI”G, ýŽ×ÏQçéhºIéð̲¶ž”wp¶ÖÑÍ2j®I¸‘¾pÁ6Ô•>y?ú '`¶ Ù¾âÏÞ]±U¯4pà—Ãì××g’JÃöh¿È€u`›Œ”AY$, 6‹CØ’¦škn îeض›Ç Ÿ_¯îÖ"'›ˆˆ ^"7…•†œnˆl›lp qu+†¥ í$Ø´g]Á‡ý𰃱¼³ß £_?{EÒul¡{Çfë3[éVsM ÅJ×±=w;7_›?§eÖ«¿Ò©É&""?f­¹²4ä º¥Ù—Žl²#¹ÁŽ ¯¢éTP®‘ît”ƒMþ£ñï¯èŠO· (ØþàG(ñÈvníÜtÐýü™Ë’;6äd‘‘gl¢ÍP圎f¶}KÍ5 7˜}3šê¡›Qì``< OkÙß¹ùHþœi\¯þÈP“MDöEžÀævØ_r6žiç¾lp ñíOiE–V¬ìÍq3]¥iÅl²ÁÁ6Xؤ]r:DX_¹lp ñ5±Î盯tŸ“HëÕ_7Ôd‘‘ï¯W0d…ÍÒПàÏî´ÊžÆ#{£nÁ::°MÈ$‡ª¼Yfz9D>·±äK7²‰È‘ÈòtAiØÁnK³/Ù&dû‚ƒ÷ËÁ¾íòNw”{éÄ5 7Ь|Ð&Ž Îç ïãУM…„ž·Ž ÅÉüå¥a»‘G¿~6Ú܇ZŸKCNG4íÖÎÀç/ƒ ƒ&1érì|x^/ÓtAV6Úú5WNóòFÍééã]¯îùJÌ5 7÷zh|Ô\[_Zv°„ÞëÏž[øí _ý©Ü”ð@s´ õö—†œ®Ñt; ¦j¾c9nºØ¶ü9O¨ªmr²‰È‘Ȩ3„7¼.‡» ½«2húá—#¾‘¢róuÚ›î9EN6Ù/-ó]ÿ MJƶ¸±¢¼ƒÓn¹t¿ØWÜ@ßûsUšýµãt·tE‡#ãt¿t¸)á~Ïôòö|¹$©TöGþ8z…ɰl²ƒ1þÈ–¨Ngy+:è¢bÑ—~hS¡}©W¬¤Ê›;*ˆžh‡m*t$4êƒâ[nÖãµÙ–Î7ݬWÄdÅ7Tn?y[º›““MDöc¾õ†‡í¼]BÆ6Úv…”†œFQt# ¦û¿§çº}e¢Kï.| C6:’ ݯ¬ãª‚óoÈ{®ôhS¡#¡Qw"ß5TÙÐ’Ó_¿J®Ó},+˜­v–»[ ¾ô›ì‡iòíSº„Œkô´«¥4äti¢qP0Ý×ù8Ðx;ò+ýK¥aß\÷˾«l²}ÁïW4NWn+ØÊéÊ­m*t 5æ¡Í±‡§šãœvÇÊÉ&"G"£E¾ƒöNœ·èçKþÑñ >ß2"¡²Ûu:º›wKƒ–?}é‡6:{Ä¢³Ïûßf³òÎV(¾=ãòÝÀ_q}ÓZÚ¾ÐóŠvºb®G› H Úèhƒl; í‘Õ£M…Ž„Æ“É¼=áýºOä{½.xº‹‚Kƒ–iúvc=Úthÿˆ~¿C3’ïdþýà,`ÿÆW!¡ÓòfZ>ÇÁ[WKCNåFÁ¯Ÿ¼õĆ+Éi³ÂþY$7 ÿýå4~ß·1º.ZÑÀI×Esô Ü·X<;ãMŽB~é 7%Ü_Pø•¯H?òÁr¾ ýÀÄ o©èÍÖ2 J{ˆm*´¿e>°û¸ùû¾G?=€ÐÞoÑÁT\°î?¸ñ¹4äTf|øÉ`6˜¯’Vt®3_%ÍÑ߸,$ô`”h[ Ê;ø’t‡šœl"r$r³ž/J¿¿ô¾(ýXÑжˆTt¾Ãð=ÚTè`˜Þ½UñJÃvŸƒü¦úØmBv°¯C·>ð7ƒ|Å~.xÊãí8ߢÝA½\ÓÊÏNf+;øÑlé@áÑÐÉA·àçˆÒïhÜÁÀ·DÑ—~hS¡#¡ñ¬6]ïÝéÐ(¡/M^®h—­˜Vr°bŸ-˜êÉ&#ƒdDss¬ÅeG¡kqé€6:’úUõ]]Wöø\U?^Ž¾Ã§G ¿=á~ÿ|¸)ánP²\'ô`ͺt¾FeSñtåwG?š­üè/,:z$¹¶Õ¶4`à[²]¼ЦBBß'pggËÕ;Ø&Ùru´éБب]“õêìh`›d½:ЦBR£—!£·ù”†œž×Ùë‡ä`Ó€ƒÍm ¦½E_£ýqŠÈ§½E;}Ð?±Š‚~éJ7)=~È^ÎVØwxøUÏVØ»ÀM DÇL§lSlåñÛ«'›ˆ‰œ'èΚŒvø6+:ÙðKO¸)á®]gyö·+/U* 9Ý.Qð¥Ø4à``£epÚƒ¶£Èõ u@› I Ö iCÑŽ~R?9’+x¾ÀÇVa7þSƒMD^Ñêë`ØÑ@ÀÊZ: M…¤Æ Ôtûñ¾!Û€Üm*t$´¼œ^öóWÿ½bà €žl2r uKiièÐñ ¦_ºÒMJ÷…°H½J©¼qÓ¨‰½ûIŒ56жE\ÝÅ-IWtÓÐ.ÊhS¡©´”Éšãvt1ÝœPÌ=Ž«Á¦"o¸ Ëþ¥A_×!•SA 68’­‰Ò¾¡µ@ð¾!=ÚTèHjìtÿy9ò;èwpþ é&úhS¡¡SÁÆëÅH0ýÒ•nRz ü ëлÁJCNç{›™lp 1ì4A7¥AоôC› If i_E§QÓà„cnîC 6 8Yn) :šhÛŠl*p$3ÚdG[±Ô Ã[±ôhS¡©±>Ï«‘¹BåñJ¾t#›ˆ‰Œ7Sð&üJ‡â$úÒµ>t“Ò}áG´cž7ÑŽhï9o¢Õ£M…ޤF{i›aE§»ùè„ îQ 6 8yDk‰´¹fD»üywm*t 5öp.}5Á¶}é‡6::½Ïþ ‹^…?W¥ñ*¶èõ€›ˆžÞ‚³ÏºV>Â}ºt­\6Ú—zB¯Kæý ìæ´ÿC6:’AhëXE§;úä„ îqF 6 8ù!5`•|;¬I˘lp ñæ?øòË„6,òå=ÚTèHj¬ÎEwìT0ð éž=ÚTè@hô†d¾v[ÑÀ†B×nõhS¡©´Èðy¶NÿÙYJÝ£‹lp*²Ì£ÒJœn*´«F n%> $FŸCåÓÓÚêÇç§õhS¡}©gh¤»ZÐ0†îjQƒMF¯?æKZó ]îé’–m*t$5z¾¤M.ú‹³„º!lp$òÓñ~[<÷Ìð3ÇžS¥z¯ï{vêçÆ–uúpLiàîzt‚}éÈ6!;U\f–hÕN·oÚÞ¡·:Ÿ¯n]…%¶4àçÀ¸ýý½_¸xåd“‘ξûð—}«_ð¶5Ìܶo8NÿýÛ4þýƒÿîÁÚ±±ÇçûfŸ¯’Ú‡ÇÚÂÇ'ü,঄š£ï(ó­}‘˜¯héѦBGRcnJºu¨‚oH·éѦBBÃ7¦ÓåðmºæËáz´©Ð‘Ôh¶ŠvÒÌ`ãµ÷ª´HƒMŽDÆJ+¨¥4à4`¢4j°iÀćN]…¶4à<\¢ ¼r²ÉȾÎË««ÐÍ ì&t{…m*t ôMZÛ,ï\×éÎr/¸&áFò¢e+Ú(³À=¿´QF6:zBÉ´Q¦¢ÓõáŒ:7lVƒMŽDÆB ÔnRpºÑ5Ø4à@â-"Ц‚Šά´©@6:z¥%ÍÒ€Óí„.ªÁ¦£-œ¼iA›!y/’m*t õæA•^±_øäÖ&¾x Û„l_ñg*Ejï) :Ûh—Ïi`IRƒMNE–Y{Z‰ÓÕŸ6#©Á­Ä'Á‘ĨS†¶pT4°þÓ&=ÚTè?R¿ô¸=a†eöÈóá9SnÛŠ4Ô´Éüßô¿Ûãç!r÷ ›”ŒÂíÝfY½·4à4¶¡+Ôj°iÀÄhC+o‰[ÑÖPÞ§G› H=£µÚ±UÑéNûyt~-5Ø4àHdÌÔ‚úžJN×"Ú©¥›H¼eFØ€®G¯oI×h5¢ëÑz´©Ð‘Ô¯t„êfûÒÀŸÜOS彌GôFÏoz´éÐÜX¸AWKWl曆¥b®I¸‘¼h M;†VôjÞ1¤G› H}]=3˜#Kåò·iWò3àŸ$èK?´éоÖw´I˜7 ݱ–ÛåsE!° ©Á¦G"ce&ÔzSpºèÓf!5Ø4à@bm!½¼s¯Ÿ 2,õÒ…jj$,Z¿£Í+ l©´yE6:z†¦]Œ~».ÏŸt-ZÌ5 7n¦Í+w¬ýuùœÉ¬+j°iÀ‘Èñ ûÇ£kМ¬ntZ‹567¾Ÿò›.³ÊÖùoú̺ÐMJd .fÒ CmaÑ£M…ޤÆ"eÔAVpº¹Òž75Ø4`_âÇs Ñè N—~º­›HŒö\ó.¡ÖÁ¼|΋!5Ø4àHäUœpiѲBhiÀIX@nµXS`ƒï6¢ç'ÚQÑÀ¼£Ýz´©ÐÔ“ÖUp¶‡ðv.5Ø4à@â+»Ð%Û N× ºd«›HŒ6[ò.Öº¸¬ÎpsS#j°iÀÈÚj\yç&[];”RM@ „½£uCÚpPÑÀÄ  z´©ÐÔÈ>û}JN7Ú¡¤›ìJüü‹Â²Pyç¦Ë[ÇRsM äEŸ'¥M;:Ÿ²o1ƒMDžÐt[ÑÚÑÀ÷c+ZЦBGRCé<¸R_pº¾±Þ9Ø4à@bm®¼s“`ˆ-j©& ®Ù%_”[vz°}QnéC7)=^›P/ïÜt¦°5×$\_ÞØØ†–”KNW8¶.›IŒÁÙËNV:¶À"Æš‰ûZ²GòêM=É ñ±ü€?;´+{yÙ•úü Á8–³MÈ$¿E7îòJzëvìÓÎ0ü­à°ÜK'®I¸ºpÓk/ØÑÙZ¿~þɾ¹@6 8y‚ªÞt)dgk=] ‘ƒMŽ$~朔÷”†ãçolèC7)=k„ ÷¥§S†µÈÁ¦GkKf¥'+[âcM Ä]€Š:0KƒÍ6k”{éÄ5 7PîÒbÝ;:ݪ?ÿdßk!›ˆ|Ç$³w$ñ×á;Ú¯ƒÚûK±žmBv ùò]е¾œFGl­O6 Ø—xÀºÖ`CiÀé·c]r°iÀÄÚòdyç&[*]L•RM@„ípsPièÇá »õ¨ݤôHøð9YãìŽÍ¢#Ö9«æš„¨;¢•ZÖL´£ÓØè³ÿÉ·ÉÁ¦"REY4·zÑœ¿ùmt *š¼¨Èßÿôl²É¡ÎWÞ&ðv?˜Ñ.1×$Ü@^°Ùµè”œ~8ÚT¤›H¼"%Ö>»c³}„5Ъ¹&áêÞÑ mÙªètqŠË¾aK 6 8Yëc(ïÜdfЮ )ÕÔHØ(î^@á¯ÁÕõœoÌ‹·1û˰žmB¶/ùˆ5¹ò&—kåM.j°iÀ‘ÄG“‹ÈcVú6gÖ׿áëB7)=~|-'ãõ³ðk]N®~ÝñŸñß-Ð}ƒ?¹ŸgeE¯ë½QŸÀ]Ž6:{‚Ì\¼s ‚ã͆÷ h±¦Àâ^ÃüÞ\l†Òöe1×$ÜHÝ×7“ùJC6€/<]è&¥GÂcÕ)Ú“1bNÞ“¡›H¼hh¥gߎ÷Ì©Á¦׃¦î"äÒ ÝŸ|þúæhÓ¡±ÅåáÒ€“›.gk±¦ÀúâNWÄcDÛñ+6Û¶i?¾˜kn î ÚìhŸÀ[Ÿ¦?#h›€˜kn$/äÀíP¥§ûmàRƒM$§ß‰>ý\Js­ˆÿ>ý쮾•|[~—ž?gõÊ^ïGööTõó¸)£l²¹ÿ®BwÆôw Ý]è&¥Âkë–å›lÚt•UJ55)ÐþðŠÍ6lÚ .æš„¨‹=lËׯ'ì™X¾~­›IüŒ»Çg÷Îç×V÷¯·¥Po|œ~nRîÇôliàAg;td›(¾B¦ ØUp$ÑN.5Ø4à@âíª©<¬›œ°®ÝD~É3ÖáÍ×g¤gš¯.j±¦ÀúŸm†ÚiSôŒµïÒ¶h1×$Ü@]°Ãõ¥”œÎbÚI£›H,N¦—œÌ7:ù¯Åšˆ»@Mž|â¿‚³¯Æ'þÕ`Ó€‰³++¿)·†ÄésTu¾jØnJx$z<®¿¨¶T´;N¾¨¶èѦCb?ƒ¶:Vl¶eÓfG1×$ÜHÝ;‚ý¼,ÆTî0{IÉ}Áspº¹Õ,9ÙDd_ä·w{ýƒ®ºHö7mºæ"¥š€‹FérËÆM7kºÚ"æš„È{¸å{Zi°ÉšÃÛéÄ\“p#uÿ¸ø…¥•J¿zkÙ7…•l²Éç²Û}ž'Á &•›î÷«³'¹…9ÙDä@dì]A¾° /õÁØ×ï]¡’ŸÝ­àtY¦³»j°iÀÁx57Þ/U±ÙÂL¦Ä\“pÿ¨ûûs×ínTѼ0Ö ëuB–`úÚÊÍ—³›³Pº y9ÙDä@äK¼Ñ‰ã N:q¬›HŒ´CðöŒj/à b®I¸‘ºPZâó>4iWn>ãg.»‰y9ÙDä@äª}ðéù ŽçŸœ×bM Ä•g[Kƒ~þà¿sã‹ ±l*°/ó±‹óµý;d¿æ‹ûb®I¸ºÚ|Uyç&3ŽÎ®I©& ÂŽÐþFwSVn¾WŒÎ.äf…åd‘‘§'_Ù¿CÎI¾´/æš„¨+NB”œÌ8:i¢Åšˆû€•tTåæsÍy¿àæÚhåd‘}‘ˆy¯Ê= 3_—sM ÔÔfßò޾²B—r¸)á‘äØŽNûTp²ÈÑI-ÖØ@Ü J\Ò#•›/o³³pºçe9ÙDä@dÌŽBŠ µã¾8R¸‡9ÙDdWäûµMìëÊÎ;ûù:@•uç.pSÂ#Í•µËÒ`³½›mŠRsM Ô]€“Çܱɯ¥™j®I¸º+´(³Ì›/pÎ Ù7ﬧ'›ˆˆ žr`[ciÈ£‰³àK/°iÀ¾Æõ•K嫎¥ažpš}éÈ6!;|P¦dKƒÍÖ96¬æš„©{×UKC[Khú¥+ݤô@øÉÎÑÆØ›o.ÎÕÙƒ/·šl"r 2zƼ:Û‹ç±ØÉÙöB›5å`Ó€W zJgðwl¶Þ±)|5×$Ü@Ý;nà/¶•†oÛüKs=Ø&d§‚gë2ë3ýýéRäDºƒBËÉ­ÐgÉÈÛµ:;diÈé*Ç:8å`Ó€}Ÿ÷[¨›cKC‚?®K;ûq=²7êöÜ@£Û„ì@rä= ºr²c³­…-¨¹&áêV‡ð¹«Ò°-…~¦«Û„ìTðl+dýÉ¿2[ýÎZ:¸Á³œÜ }–‰üºãRö6EièOðç9SÙáÈÞ¨Û_ð—=Û„ì@r´k µY—†œîå¬3\6 8Ðx=\±**³•~{|ÞhÑñˆÞ Ûðµm:t wÍü _n* Øc`ö¥#Û„ìTðlodMã¿2Ýg Üà`ääVè³d_äñp„Õ,JÃz+Î×Z:°MÈ¿mgQÝ›M¥AßòìKSЦCb£YïÑÙÔÝÓÌ8b›: ¾ô›h<ÉïL/ ÛýÍ<ºýÙÙî¶ìÜ|¥vÜ|ƒ ÊÉ&"cc>®¤¢òaièÛ¹î'|––>»ÐMJwï¸wõÄ1:/h6íN(è¯fÁ‡Ÿ P'ªG•"'ªGØ&dGcäe§ø»nŸï×ÝÁϱ7}úÑgvõd“‘!7Ýw³sóÍÆqb~è¤&›ˆì¯ÓÓˆU¦Øn¬/Áþ¨¨\]³Ba1 >üäø‰£oŠ• ¬t|Q£Û„ì`Œ`6Þ";^Ìýì¤cÑ—~hS¡¡ïPË0Ý®P¹ùrçø²7)'›ˆ,ј˙îÎúŒ ´mu*ì/FÁ‡Ÿ<¨sÔ¥aKŸ[ïÀ6!;#Øf{eM›ÓáµÑp±ãm›z´©Ð¾Ðó5»_è|~}>\ª3I³ër²ÉÈԷ̨q:³^ÑÁWÌ`‡Û…þ%8P4¯Ð.â ¶\ÚG¬G›  Ô£øæèÊÍNÃÕ š·=ZN69yFhÃqiÈéúÒpóÀÃY’Æ–|éF69·E¼Åš uµ4è«Sb:_õUƒMd{©àÆÿÒ³E~r~}Ñ™TÑÁfÅÃ/=ᦄ£ä𘋦öV4°ÒC=ÚTè`¹><£˜6íO> ÆØÝ·G—†œþbüúÉ ã‘îGª``ž°O¼t@› íû Ì”òu¡Šf ]Ò£M…ö×ûá!Åd1 8ÛC!ÊËÊJÃöMƒ_\²ÖmBv 8Øäw—†œüúÉ ÿ‰nKº£ÝôÃ/ЦB«Çðù&ôïÀÁ`^ÁŒ¯ÁUôsç&n}é‡6:½¥mÀ, 9(øð“ѸƒN¥ßèN§ÒõhS¡£ÑC趤;ܽ¢/ýЦBGB‹íË¥!_ý¨ã¼5úñ7ý/óß Ø¾Üëá}¿$r¢Á§’Ÿ4ŽŸî: Ñ—~hÓ¡ýèãqÃRt‡ÿwà`pŒèrze‹Zïã|QK6:zÊê‡_ä{+<ºÉè|¾·Ü”ð@tÐEê+ØégÇôhS¡¡·îuó¥!§KÝ쯛iŒÜéâÅãpMT¼ìÑÅ =ÚTèHj(h:ÑÔRÉiøq¢«E6:ÐúoÔ®*cT40cè2†m*´+õã ú_Øn€ |CöѱhS¡¡_i…¢¼sŸß隸BàÒ l*p¤qr¡ÂùºËÎöM;çë.=Ø&d‚èºÄAw4°“³EÐhS¡©§Ð-P;9ßÉé¨hÓ¡#­Á滫³¿xŹœl·|o»lp 1ÚiFW@w4°*±ÐhS¡#©±Æh¶[dßE_ú¡M…„~LÐMw^ìä|µ£[/: M‡öµ† ·xãuy㦫нôÁšh 7¶°¥Ï ¬rlé³ÚTèHê?NUñsgõ·ì×ï­s¨—·4à|ìÑ/v@›  zÄbý;8¬°~hS¡©°ÒG¯vô“úi*î+õ1}wìsã$5Ø4`· þ¸ý­/«\ v0:Ð;¾œ¤ÁŸËJCN·q|é6 8Ðx¹[žÝÑÀ:Ê–g; M…ޤÆÜ«lk˶B}é‡6:º^á'|·4l?á}þ)ßl²#Á³DÊy[Íßb„Ÿ·d„¶š.pSÂ#ÑÑÂû•´íè4ñzéýó€l°/ò°è6‘U/¼•†þŽžöß½Ùuû îbÒmBv$9X pÎ1nE( 9¡Pð¥Ø4à@ãÚûC»*ˆŸh‚m*t$5æfûäv0?¡èK?´©ÐК1d-L;ØjY S´©Ð‘Ôr÷DiØW§¢ó…çCN69’ͽ9T×oº£Ó˜Éy¾Ñu›ÊÁ¦"/hŸ]°­h`U¢ ¶z´©ÐÔ+f"á[¡vô8ÿNÃ?§­±û¾a·?áÚzÀM w†aèî=ËöŽU¥ØvÞ  (úÒm*t4qЪíÞÐnoÞ½£G› íL*Y:aÚŸý<%w´u޶‡Vt¶ùޮήîŸ6Ä`Ó€}‘Gø¦BöÂè¬篌î7%<|ËT¼ý¡¢ó…•·?èѦBRÃíÈ´i„{i+’m*t$õ¨®Ì—†]‹"íó÷0ô`› Ž•`ÙÙ ¬Ol‹l´©ÐÐ3vÌã›7w4@Ýn^å zÀM ÷y}ðènÁ>ƒ†­Ý”ô`0.èNú*: 1G'vuϨj°iÀ‘È£ÔW°ë\`Á—^`Ó€‰WðØÁ¾œòî{fÙ—Žl²#¹ãÏø¨²ƒ éÏÛˆ:°MÈŽ«Ò¼E®¢ãm‘Ó£M…¤¾£ ~ÚöYÑÀnKÛ>õhS¡}©1ßîÕnÒ›*'úZÕ`Ó€¯`Ïߨ]ÑH\:¹Q¯€t¡›’îŸ6úìþv7f˜¶›ÍµtSÒƒá¸%BeÇÒ€Ó°’veªÁ¦`½žwUU4°åÒ®*=ÚTè@ê Ì3óNÁж\Ú)¨G› H ¶øxµ7í^ÁÀÖ‹¢/ýЦBGBƒ©Áý÷¥A#[Ëân\îQ£ Ý”ô `Àé«ûÛýµµöVI馤ÃqA ´qµ¢ÓdßÝÙÙÝ¢„lp*²Ì“ØJœÆ8´‹R n%> $¾£5zÚ VÑ@|C›ÁôhS¡©h»mX­h`5¢ «z´©Ð¾Ô3Ø‚ãø©üô â}é‡6:½ ‚78ÎØÍ ·‡³”º¹25Ø4àHd¨J{íJÎ6Þ¨›Iœ[¾ðVxØi}ÚØnJx :ú˜oí©h`Gч_¦mP`iÐùjÊ»õhS¡}O÷<£±í¢úŒjÄ­v¢zÆl_':¡åd‘#‘'dà+ìÖÊYð¥Ø4à@b½#¡4ìçÀ¥> 9ÙdäHj´é—voÏØƒ‰¹Id5Ø4àHä;âÑ^¬ ‡%ÚŒÕnJ¸/úrE·YÚTÑ@ØA»ƒôhS¡#©±S"j>- 8=sÑvY5Ø4àHâl Ù7Û«3.ÜlGE§å„7H6:ú¿ƒ¾siCF§ámÈPƒM$>t=ÿg¾¸ do•Ú‘Ò·ÈÉ&#G:£æÚ¶YÑi¬tsÆœ›ŒVƒMDžP{~ÕCià“w¦ÿ掊l²ÅgTp¸ß¾¼³ßÍß}±Ìhf¶¡U4ÛÑ64=ÚTè`„l]K@¸äåý²¡ÀE_ú¡M…¤Æ¢%Ú(±`¡í“sM 佣•jÚPYÑé†8|–·SªÁ¦ûÙþå!_õMÈöGÇzE+B´‡¦¢Å™öÐèѦBGRk-l¥§)Út§›H|›Å>”Ò ývÏèѦBRpOËÍ[–|±0øÇÙ‡•ßxGÊúf8p7pÞ‘¢›ŒƒëvƒŽu‡Î>üp´)“¶9Vty8 cß䨛ìÇJëtWOn²ƒaú.¾0ZUø6ô~†—ÒhÕnJx :vÍìx, 8Ýh¦lp$±ÖÞQðõ³í€Å^ú`MÄEën´«ª¢à޶UéѦBR¯hZ—ho/ ØZpøá§c¢œ°“V4p ¥oŠÓ£M…FÉŽNñVÿÒÐQ‚Ã_?ý0¼ô®ÿ»XmËYU}ó®l°žÞ¯èÙ?`˜îìû;ÙÒ.š Nω´‹F 6 8•Xjgke†iÚˆ×ÞÊý<»à¶k–œMÞ`ª›I¬5•œÕ´aI‹56wèp‹BièÀ–‚Ã_?ýuâÝ»\ôãWëöwWöóU©wöíÉžÿ°/Ù&dCeDóõW'Âsó'\šz´©Ð‘Ônð( ˜•8üõÓ'ÔöB;Ó+:Ýk—ÏK«ïKWƒMγþ¼oBx0²×´™ÓŽš N¶GÚP£Åš›Š+s—¶â¦¡ nå•[O‚#‰çàÃ}Ó»WÉãóÓýýÁß4ïéѦCZßÑl¬—RòOWw,…wÂç¨G› Hý@E´{·¢ÓEÉYC}ï®l°¿k?®èièÄ=®¸?<ÐbÊ»ÃP0À›ÃÄ\“py«_É]D×mò­5_·Ow½ýwûYD–çYkÏ) 8`x;‘k lôÙ°ŽjÔ \p¼ÐÞe5Ø4à@â uöӦɊ6SÚ4©G› H}´ÊH|Ë¥A§ÅY}¯µlp,h Oˆš ìfÞëôÀ>¼×I 6 8xóÈÜ’¥§«3íïTƒM$~ 9lÚñTÑÀÊL;žôhS¡©Çÿþýkmý¼4à$˜ãêýr¬)°Î>òC½¡9Zö†o <ØdÁüÎÆY0ï6 “xøéÜüðçz¢¬¦çy«.?އeýw¢üœgÁŸÜÏôVô0<ŽèúüŸsí]ЭÔ_ ¹4pæü‘/tŒÎÐsÜ‘À¦"ƒ÷[ V½Ò€Óõˆ3v›H¼]X0܉Ÿ ’g(°n•}~Ö‹é¿›ØçàèÅvó ö¥#Û„ì@ðí%84 ;^Øg6qøë‹a¹—N\“pu“K÷iÂC_àtÛæŠ¡À¦G£õ¨«³ó}Î ¼Ðé>âháø:€MD¾cYfÔœRp:A8;M°iÀÄð-äW/öõð›U·\õ¢›”îË~Û¤VÈÒÀG÷›žµpöa›(~ÓFKŽC²Ž+Çšˆ;ÑgRÿ¥fÁgR—cM”Å: ¸Bë œF\¡µØ4à@â­+r^«: Œ<-ÜÄœlp$2VàAK¥§„óXu›HŒ^²ÁÞžùbCáL¿t¥›”È.®µ–œlÕ\mXŽ567|!c_—9Çü ›mÖœe^Ï5 7Rºï¬º¿ÀéVÍUÝ;€M$>œÛ5~¨Ò Ó­ÚÓÂMÆ©Á¦"ƒw ^¨Ò€Ó ¹·:€Mö%ànÞêäÊF6hœ~éJ7)=]\€/ 8ÞXyÀk l î¡Hø ›lÖ¤A\Ï5 7PwÄŠPtÙº‚Ó9A—­Õ`Ó€#‰Ñ"gé{¡Ó­ÚÑÂ1ôu›ˆ<Ç•—o¼•íŒo¼Ø&d§‚Kozj‡ökߊ.Æ·º‡”_°äŸ³Åøf® ÎöÞÌ¥›H,6:”œ„H´1C‹56÷u»‡æ1¯Ò Çg”ôñZ’ Æùß°ÛŸp³=঄ÿ‘üŒ.‹G÷²íY)Ü”ð`(Þ±ºm]©àt¡­+j°iÀ¾ÄãuD7Ãæ•J¯Œ N?íÃPƒMö%žnz3Cy‡#[ø F¸)á‘è@¶šï©Ø,@·Žˆ¹&áFê¢õ¾Å ŽÜté”>={é‹7)>P~;†ÊŒ~¥§ ¾ô›Iü€C;îeš’îNäžYôhÓ¡¹ÅžÒ€“€‰¶i±¦Àâί ¯?.Ô_ô¬N¹³á‹®Õ.t“ÒSÙ•FžÏ²KíGròg¹µÖ£ {Ê•7ÀTp¶.ñ5Ø4àTb(¤9áïzÿÙñIà„¿«Þý$>Ò)ÜÒjt‹ ß©&æš„©‹nÙ‡‹^phÚàøK_¼Iñò+V¸E=Å¥§ûí‚VƒM$»ƒJNBUÚͤŚë‹;ßàªâÓGÅC»Ê ÓG¼IñöðAèÉo¯Ú¨É÷Wi±¦ÀfÊʼ)¶i`J›iÄ\“pyáPñ„ûq~ƒ†Ççktiø¥'Ü”ð@tè®Þa3—'ðö)ÕÔ@ØíÕ‰d âo­Üäç‹ÖöéwŒörþ¶§&›ˆˆ¼ÂaÆ ͼÂûô Mº)é‘îXZ‰¶ÐÌX7o¡QƒMŽ$žUÉÙ»ý®ªùðÆc¡ÜK'®I¸ºw<Øàmóß³yÛcºIéðbJiÀÉ|¡ý4Z¬)°¾¸Ë™,ü½••›îß?æcdàn‚r²‰ÈÈžï?áï¨xhç>áïèƒ7)>Òzp†÷wTpº‹£àK/°iÀ‘Ĉ‘’ng©Øl§ûYÄ\“puG<÷ÇÛ+Ù»Oø»ÐMJ„Ÿ‘ïÉ_¼X¹ù6ss60¥V“MDD×îKŽ%Þk Åš›ŠÅ_Ø•–¼Pÿ…]© ½Õû;z üгNÂ+Úpüë×Cw3ó•äê9á Éb®I¸Áà¸#å6/ºs³¼›…(÷Ò‰kn îž'¬UËŽ8N8«ºÐMI÷Ÿ$%t?ažQÐý1³Þ  fåæQÓàÄcnUKN69Y[Z.ïÜ$r¢ áRª ¨°#’ö§Ýþ›­Ï´Ý_Ì5 7PwÂÓS'|I­Ê'|I}ð&ÅÚ¯Õ€¯Vp2銡k l$îú;_n£ü§5äÿûiɪÁÀ}C¯ÓOËú^XÑ·ÅÛCvø0Gø†­ÂY7%Ü¿( OÝ_Wë+ J¸)áÁP¼# dÚV[±ÙŽ@ûjÅ\“puPtëàü»ê*7g'u+¨r²‰È‘ÈxJ愯¨â¡ö„±¨Þ¤x_û»¸`Vp²ñÒ>-ÖØ@Ü ÉVÑfÏŠÍÖ:Úî)æš„¨;Ã«Æ cÀñÝ¥dÚðt¡›’é~hÆúû~ÑM\ÉÛýÛÚvb=Útè@ëçâ?,ëïos<Õ6oìeýÇþ?®ÿóÇ÷k[ùø*M¾t#›Œ­­ƒ”wn²¯ÐU)ÕÔ@Ø4ûüEõ~HË/³¸ŠÚnJx$:’Ö¤MŸ›mä´ëSÌ5 7R9kò÷yUn~À:žbG7×y!'›ˆì‹üx{¹NU+ Š‘NôÃ÷Á›h¿Ý°$}O¤4pÿšƒ/BéÀ6!;P|\QÅî&@*øå0ûõá¾;þNØÃ6­ÎŠåV'åd‘ƒÑ±Û9oó«ØäÛñ>?1×$\ß}ñØÌ4ÊéaBv0,Ïy-¼>¹4èà¨uúÒg=ÚthWì Š%AíÞô°sóEãî,G^EUO69ùÐìó½u¤4Ølá`.j®I¸ºÓ}6¸ã¼4äÑ[æXð¥Ø4à@ãèî=- XÝØÛZ; M‡Ä^%Ù™~nÓvÅæ«›7è¼â•lp$pöñÎæŸw´+éét´éÐØ‡Æ‡ïP¥Áf› kØRsM ÔEUWgòùëò!l%t·¶l°¯ñí6! 2ÛͺsÓo7;JL-ùÒl"r ò–‡J– Ö¯±c³iÇ6Ô\“puÑÎÍ™tî†w;dÊ¢I‡‚/½À¦/+²LxCÂ=…Tn>å%&÷"'›ˆˆ|GŽÒl={ÇfÓŽ­h«¹&áê>â>Ïó©·„˜gSoЦCûb?¯íS6l•†œ®pl™lp 1dÑc¡*6_Ý&76VƒMN®³ý"14$7Ä~‘Ò£M‡Ä^2öé¼Åpx-õï¾úEÖB 68y…Î{lóÉÎÍ'áèÌn_d5ÙDä@ä;¸û¡ ¥!§{ ¾ô›ìk<Љ„uêïÜ|PLÎps 9ÙDä@d¨C‹5%VlþsÁ6¹£X 6 85Ю­}=„/:ßVºIéì|Âåþä~,'îèy9¢7èöZô¥ÚtèHn0C‡zYKCNwÖ~+›i x£@S‘E_ú¡M…Ž„>¶G\•y¤Š~þè¿ÛíY$5ØT`_æi»ßDiñ+ Ú]`ú¥+ݤô@vÐp[mKCN>Ö,›h,õÚ–wl£::Lî^¨› Œí±WgDø ÇÎwÞ9 G›  ­Î5–î,t~T 685 ¶àÒÓ™B;™Õ`Ó€}g°JC›*˜}´@6:I*ñŽñÊÍwgÈMn€!'›ˆˆ|xBöà^ièOðgÇteÏoïßlÔí/øbëÙ&d’oÏê¬Â¥!§KmnVƒMŽ4ÆÚU0Ï`º€÷èѦBB/7d‘¦Í•›N’Å r'7à“MDŽDŽ.ºü¢à]Áϯ÷ñ®ËÓo9Ùdä@çû Þ Þfèéžo*ËÍÛTüA­g›HþH¦o [s~?ÍùºV¸)á¾èËuÁ¶¾PÑÁ/gÑí¯ÖùùÛE | ‚lp02 .¾a;&ÏÓ熦r²‰Èî¥ÿÀÙõ7ì1:ã„îüsk;ØcFoñGˆžmBv$9vˆ¡Ía h{˜m*t ô4ÂQ_D\ò—¾("v¡›”Ÿ†û'uvH¿³¤!‹~ýj0qr©†Ê;8ÝÔQî¥×$Ü`T,Pâ—îoªÜ|Cw|•³ç©É&"A(ðUÄ/ÉÁ¸¨wÄ.ž'^¸( ÜÌ'؇Ž_é7x±“ûøÚŽ‚Ù Bܷ׺ÀM†ËcB‡ üðGiàÀpÙ¿?üù|¼´ZW409é£m*´?FžÏ+{ÍJCN7Gº;.ñÌ‚h=ÁÙÕ/†íx`-YÜ…ÊÝ-{ÀMTÇì ´£º‚UŠöTëѦBB/`R•/:V4°þÑEG=ÚTèTj]§_«tºj£àVge¼Ð ý ;Ðz}5i×( z|²?_Œ\áËz„oØíOø+v¸)áä<Õ:»¥™<МåÝÝËüè¤Ü„ðHu,ÛJûÙW´Ã„w´ëѦBûBßóÛÿ¿¨ùÞ×çO—Ã/о]è&¥ƒ×_ mÅåœnšt#4ÈEP&áú¦ÉòëÙ²úýø ðÏ5&ºÞ:=ÚTèHj4ئ‹c „­tqL6:’O^.n4âFÜìé®ÕÖ}Н Ü„ð@u°3‰nä¸Ã=>t+‡m*t 4Œð¥ß;¾Ÿó•ßpSÂ#ÑÁ´+zÿFiÈéÞNß‚‚ÑÌ€iÀƵ¶"¼¢4ìÛa:Ê®®èÀ6!;ü¡.©–R|;©m*´/õ³?ò4ÔË÷ÐèѦBBßðTÔêîÁ±âój½ºñ™{zì7!Ü÷f<, Mßÿõ8&#j¶¢+ÖãLá"BW¬õhS¡©'0tB/Y( 9(øõ“ýîšr^iÐÀÀ£‹z´©ÐÁèÐö”wnþù 9ÙDä`y† üÝ_qƒ1ñ@G]˜®h`™£ Óz´©Ð®ÔÃõzÃgô€ÒÓÁ‚ÛŸüœ&Š¿Ú_ü”bË ˆ.)Ó“MFކ£³Æ Lp¶ÀØm*t 5h½s¢:ן¿ƒ-E_ú¡M…v7‡mÄhp02f°¥Ï 6¼´úNÎ~1 nrº>³÷fíà|­c/ÎÒ“MFކÚŠÄ–\v4°Ò±%—hS¡©a¿ÝƱ³ƒÏx‚~éJ7)=}EÏlÍ|G5[3ï€6:Ø“f¢}ÿbïûŒ;˜ª§­+;úIý”)­àõ|Ûù‘µ`Ó€#‘“‡ÅÎWäv¶ÁæùŠ\¶ Ù¾à·ëŠ…{žƒÌ«íä4ÜCÁ¯Ÿ|CûØÚÖŽÖ¶¶Õm*t0:bàÝCÚÀw~é 7%<|ãw:ÛTÉÓõ÷œôçwWö:ÙÛyãù¼:Q¶ Ùä>#ÊèÀ½üìpÓžwM FÞ†zÎv½•œ Þmþ4×rMÂõCÞÛ4¨Çš ÙÁÈ@omDïn( 9Ë(øð“ÁÞ ºÐ·£óí–®ôu@› ŒЇö ” |C}é‡6:M7±& ,þ¬I ÚTè@ê;š÷`Ý:;:Ý]fg×òc01Ø4àHä»6 ^2².ÎnèfÛ:°MÈB]¾:p’? =€¾aòKp‹mÖ¥&dû“fnàöB×n+èÚ­m*t$5–If¯PØÁÀ7d/Qè€6:zDË.´ñ£¢œ6~èѦBGR/bÏXiÐi˜pwâ7¢›ìo.Ã-ôU‡_‚ƒQ±f)õo Ε5~QpîB7)=мiiسŸ½?îÕ£M‡ÔÆÜÃìå• lŒìõz²‰È‘ÈòŒziØÀà@чŸz-isSE{.mnÒ£M…ŽFˆ¼X^öõ7S-+ñËÉ&#ûR7ô#Ò†¦ŠNƒ§‡•¹ 5Ø4à@äAë²) ØuðàK/°iÀ‘ÄÙvõ¡Ò¡ 7#t¡›”îeÆá!ÞqM‡ŽÆËC¤-üïFѯŸ šúÙ;?v0î±·~t@› ŒqU§KÃÆŠ~ýì ÌuòÖ·ñxõt)ÐÖ7=ÚTè`„Ô'ýTæ’Ò€Ó-’vèÁ¦§Ó›¶T4P ­zt+ôit°o%\áže:t4B° {‘ÆоôC› ý-ļ]j<^Õ-Ѽ]J6Ú—zÐÚíâ©èlϺ_ÀÓj°iÀ‘È£Ô SpºÒî5Ø4à@âlÃàëã ¬Ft}\6Úß½§­‰Ð^•ïÑÁ|êüEèû$0ùÒl"r$òa;Q]·^ú°”ÿ®£¿ìûíÈÞ¨Û_ðGµžmBv$9j¥FÍL¥AaоôC› Hýs5k]Cn÷®á:oà¡Þ=×ÚÈúó4Éòó-]òŠVFhÏQE§AÍàlåþò$›|>Œ ;wZ‰Ó †ö©Á­Ä'ÁÄ÷¬2²Ï=ÚÖ0ÝÑuŽö5èѦBRƒ^ä«ó“]ƒ@çßF_ú¡M…Ž„žá˜fñb77Xé@l0z±›ìÀ6!Û—|¾f©Ço€•¾}Ðõãk`_8»ÐMJ„¯ô–äÙ}"à DæCªéãm<ûÒ‘mBv$øÚˆoÎïòáØžwÕ¹5Ô`Ó€1‰5®´Vä4RõŠ\îF©·"Ÿ"OhõŒv Ìh™™w èѦBGRc¶{¯àçÝgô.}é‡6:zÆÝö¼Í«Ò¡œ·yu¡›” ¯õ\–œî¶´KT 6 8¸æBò·Ðn^PãïŠIráûÒ‘mBv ø=Ž"÷I;x*8 ›hlp$1zgíG«è4lòê¡þÆ(›ˆüºuWÒwPÞÁ[ný¡ _º‘MFŽtFkt´Ýh†í5´ÝH6Ú— §éۤа_zM¾¢IpÚZYÑ@±¶VêѦBRfÐV£ N7mÚj¤›IüCçÑ Ý8cIÒ'Ø—Žl²ÁGt¶\Y;hE§QÒòyðùfP5Ø4à@ä ­ÜÒ©v¨Ð)=ÚTè@êM Ò^ÅŠ¦ íUÔ£M…ޤ†œ·°U¸4àlŸåÍÍj°iÀÄ+ÖdK»j*8Ý¿iWlp ñ¬Ê.³·»Þü-0IL_zÂM4 kÒÍYîÜÒlE§‹ÒêÄniV 6 8y3eOÏOøÑYSÑËfø¾mðqúï6þo¸?ÆJ_æ-þ÷ö'Ø—Žl²}Å×Ãë‘ViÐyXÃûÆôhS¡©Ñ‡0x/äŠÞŽÏ{!õhS¡#©µVäÒ€Ó ‰6O«Á¦'[ß8Ã*Û¿‚é gX¶ Ù‘àZŸUiÀ×Ï%{éƒ56wDËß‹—úñ<¿ô„›h~xUã* ØÄiç’m*t$5v&§ 4œ.J´F 6 8~Á„6kø¥'Ü„ð@óVÛ¢ \œJ´K 6 88Ig~càzr„“Ô¾%'›ŒI¦ÿ¯Î2íT+:ßx“­m*t$5úüÕ°}Ç?7†û;âÁyö¹ªõÅ›µ=঄’oÏ˺ JN7º/B 6 8’µdœ°'V8¡ž°'ö€›h>cçqÚ3WÁ×ø„K;æ´XS`Sqƒ Ý QÑé1À ÄüN5¸•ø$8y½A«m”«à4$¥rj°iÀ‘ÄrÏYiØY@zÂ)''›ŒH>?ÇÛŇ'ãp”¶‹ëѦBGR`=:Ñ¢¿:L~Y(ŠÂ/=ᦄ’ë½~å ¬Q'LŠئc»z×ê`íú;:ÝÎG'Nð"<9Ø4à@äë=dM];8ÝÎYS—lp ±ÜUÞÑéVN[ºä`S#™oÀ)È)Y¸­—;öi¦毹—N\“p#uÑÆ7Ö/¾£ ‰õ‹w@› I½€¡ÝâÄ0þ¾·¡¡ …_zÂM $ŸÐÂ8oÝáÀÀ[A»ÀM4¯÷|MW§fË¿ÞX¶ÿ=Ï¿:ÙƒmBv$¸ÖÙVp¼óÒN<1ÖØT\à°Â6ùìè4ôw2nn‹ÜJ|ˆ¬õ[•wn:1Xƒ˜škn$/h78aÛáiäÏ›Ã: M†NÕNÎ+lCñŽÍâ¶£XÍm>ÇÔEMè‹ç¥AC¡( ¿ô„›HþÀLhŸLiÀéºÏvöÈÁ¦û2¢*³`ygç‹ÿ —c¶éØ‘Þ+xF½xÜÕ·Ä?ùÅ+²=Ø&dG‚c¡ k*ÝÁIÔÏZJÅXS`Sq3 Û)´£ÓˆßIÊ»}Brp+ñIp ò°a{ÁŽÍÂ$ö5×$ÜT]i‹èG?ÆŒç{[{°?j}’(>Æ)©}1b­£;8]êYë¨lp$ñ j¼¿·4ð|pàìÃ?X‰DŽèÒÀƒŠÓy/w¸)áÑhÑÛu[ѯY¾ƒ·w@·‚ŸGjOÐ¥7p+\iÀÙºJ7ïÉÁ¦GoÚ_¡*™P`gG+Ôù'úÐMJdyKN/¬ñXŒ56p\£V&oº"yU…L`¸•ø$8Yy»Ay§fö.1ÖØ?Ê~ú±¢˜ñÓ>‰žÞf]Ñ• Åt¬)ºÛ„ìLp©µ¸|ú˜RC´žl*r¤´¶³©4à4ªc{±ä`Ó€Ý;¼Æaë.¯7wªÜê|Ôxkû‚ÿþÅÃó .?ï³]è&¥û£o8 -ÖØ@ÚV£B=†¥§_vEªÁ¦Gã *Ú7š?³-„¶Áõ€›ˆ>{Ý´ºQ³­„nZÕbM ”hã½uÞµÅTr¾…ÀèK?´éБև9²NçÈ}ÃOßì¹Ë3éµNÿ¦Š{&¬ô'øó#M{¼^ìJ]Â2l¶ Ùä3TÈâMœîà´iC 6 8x™Cî7Ö‚ÊöV§/Œr²ÉÈ©Ô2Ïe«s:Mh—¨ܪ|HŒGw´qÂC$ÚÆØmBv$8’ᦻä*6 —è691×$Ü@]°èÄuÓËxâ%¸iø¥'Ü”ðHr¨Jxæ’¿ŠÎƒÓ·üu`›ŽÈý€cêÉ‹©Ý2øBÓ›šºUp=ÚtèHn­Ïª4àd }aZ¬)°¾¸ó«ËÒö¤ NcÚž¤›H|ƒüÕNÙÇ r‡ùwD|´ûŽW§ƒkv·B9ÙDäHd¹Ã§4ìôxÅû’äd“‘S©ežíVçt-¢]æjp«òIp ñÛ3Ññ™vêÎÇÖÏäpE;u{ÀM D,Ý«Y±Ù1‹nÖsM Ô_§Íð\xâF´ù`YKŽW8ýÒ•nRz$;æ2XÜ#–Œ`Ág_:²MÇä~Kæù1$j, 8^œx“£k l .vT¡mv3÷Ó.;1×$Ü@^è~Wúù‚ ›GüÇ"Ðñ,á¯Ëb°iÀÀ‡ÇLýƒn¬Ølæ›Å\“pSuµâVäz~j®ýÆþÜ…Þ þ=þù9NÜUÑùV}âΨlÓ±}¹±ÅŸö2.À†M;•PûˆzCÖ$þ’÷ÊÍ÷¯%ßÜäd‘#‘1g m­àtRÐVQ5Ø4à@âqB ºƒm9\9lÙt ›˜kn î„ÕYOÜ}TÑùŽqâò£lÓ±¹Å¾´Ò€“=„öÑi±¦Àâ.Èá/Û­Ü|÷˜}É&Ôd‘#‘±”íž«àtjÐî95Ø4à@â{ßNièá¡ò¼å¨ ݤôHx,Šwùÿ¢×+–E¥M œ,¥´%A‹5ÖÿnëmD‚˜3—¥Tt:$Î\—Òm:v 7ÖFËך"t­\Ì5 7÷ç .Ε†Ž,¡' ‹]è&¥Gƒ)®›7gÚÃñ …¦ô­œ•›‡y‹@º‘¿œl"rðý´Å©òÎMö,º”&¥š€û@R0´Yµb³”íVsMÂÔó £·ì´'”_ô]œì+ 8gtrR‹5Öÿn÷ 0Wñ¶ˆŠMFï‹sMÂMÕUvR¼Ø3T®½:»±{«Ü|g[=Ó=ŽÉÉ&"pÁN¼t¢èŽÜá牴XS`Sq¯Î‰÷‹fáý³=ïßüM·°ݪüÚ×úq<.|uºb³u“.P‹¹&á¦ê*m‘6°9RøWžTn¾f:OÔÏî¡@N69ø€·YŸñ- }3ú,³8[Ý…nRz ¼6­UÞ¹ÉrG'á¤TP3aÓ½uô¶÷À{´PE›L¾t#›Œè|¸Ýõûâri°ÙFE×ÂÅ\“p#uÁ´n<°‘]ùû&*7ߤÎöçfäd‘ƒ¸ÀÅÎu€JG6§u€.t“Òáï¼è~ÛÒÀŸÜÏ÷ lèñv=¢ëÅÏeÕ]Ž6Ú•{º^‘<[ß±Ù²ÊVÆÕ\“pSu•N¹–­kªÿøñ®ðǯ§ü|<8ø~· Ùj=·—E۹鷻Ý%¼Dšžl"r òVX†VüÑYñ½DÏÖÎÁY;½\O´éÐÜ rlcë´;6[AÙJ­šknª®®‹ð£Àч‚?*¬”˜GCè³;7_á%––|éF69yÅN°„?îÅ~ÌðŠÏ^Q¹ÃµsrÖN/ Ñm:´ÿ)ohömí* 9á(øõ“oHvŠuNìØlÑg­j®I¸Äáç.ÒÏfp0‚‡²â³}h;7_=Å—XM69yÂ3/ì%Q;Xßg}ssz´éÐÜhêÒ!ÚJCNg! ~ýäI±ž’›­r¬©DÍ5 7X•XÅgûø{y°?‚Ÿ×®þã^o~޼F‰zÄ%þûÿ Ï(qùŸWú±Óá{ú¥+ݤô@øAYÏ- 6×lõYÍ5 7PwfÔ|_r:Ù~9Ø4à@ã;б®ö›GŽUsq³$r²‰È¾Èãˆd¯i“ôÎͰã“Z¼"šžl"r 2ÚPƒšƒKCNçëg–ƒM4‰t¥k<äÂ?ïÓ,úÒm*t$ôVS>’Uö1&ú–}éÈ6!;üޤ²ióÎÍ—;Çq³¸U/9ÙDä@äС¾ÞÒÓ…‰µ"ËÁ¦ûO=̼¥¡?Áץʇë‘]©píèÀ6!;’K¶Ò•Æ öºÖ¨G› ½3•Ý”† ì.0ûÒ‘mBv øv‡yÍD“º5òW¯îô'øó¤¬e¸Ùuû þb¢g›I>·ßS˜Ë«ôc»„0—×…nRz ü„dBh#þÎMƒžÁ9~,n²IN69yÆÀ°½4ätf=ór°iÀÆ=\祡‘ÔèERþ>©g›IŽvh_Çt(ôű{Ïp´©ÐÐ(“JÛä+7_ð-7Ç''›ˆì‹<_Áó?j]. 9›'¼ÛZ 6 8ÐøvÖò¶¡» vôøüÍ_1­ðq˜ðÚv×t›þGò3º,ÝÍÆÍz¶ ÙÁ@<Ôn£­‹6¿Ì‡Úx¼  èK?´©ÐДa¦ýþ•›o^=ÔÍ}ÊÉ&""/ØÎ…Ú»Ë;8ÝPî¥×$ÜHßÛ¶FoÛr,swo™sÊ=঄ÛNxô6†|}ÏU]®+ïhÿÝÞ/ªŒz´éÐÁäYÁ­….Ÿ¿ýêOþ?–üYjù³Ò<Ù·oÎë$Ÿ0¦„#䥄hÃ[c¶¼éѦBûB/W(ÙK÷µTn€ŒWgCwÓr²‰ÈÈWwCy'ÛÖÙÛ#ôd“‘#¡G,ìE{\JCNãHº-G 6 8ÐxÁP‰¯=W6uðµçl²#Á'±C¡4h ö }z´©ÐÔÓŸï(¬9WúÕ˜ÎWœ;°MÈ$Ÿ¡BÝÂU¹ùfîdÂ7Å.'›ˆˆ¼Œ`28{®›Ý¬h`;GÑ—~hÓ¡±WôxKWA+Xùè*¨m*t 5è¥;*ø†t¯ƒm*´/ôz¨þ æJÃÍW<'«²º¢œl"r òmWiô2Ò õ޾‚D6:{§ ]ï[Gpµ£Ë}r²‰ÈÌ ·‹nt¨`àÒ­z´©ÐÐèÚ^9QÞÉÀ$¤ïÉ“MF΄VÖ\¥¯¿ûЬN¤› É ¦òÐîæÒÓÄÝ­›hüPµJƒ~ÎÀç­ºJœm*t$5ê¥KZ |Eº¤¥G› íK}¯€£õ |CÚ[¯G› }S׈JƒvÙÓ…-=Útè@ì·¤wwðe—û¡Âmã|ÑEN69’´}£w~”†œnäô5%j°iÀÆ3¸úÓ5­û nátIKN69s?:• ¿áv6ó r²‰È‘È“¸NQ4°£ÐÕ=Útè@lìæ ø²òN§ }=‰˜k®¯ïãŠ×éêUEË]½Ò£M…ޤFëW |Eº~¥G› H½EæÊ+UJÃö—ÿ/®‚éÀ6!;KYÑý'Ããíñ6N· èѦBGBÿ¹ØUU4¬h`§‹†z´éÐØ#–”†/š( 9›/üÝj°iÀÆp?]™}Ìhz—.ÍêѦBGR£Iiº<[ÑÀW¤Ë³z´©ÐÔ zïÚèm¶nÆ£²f_:²MÈŽÇWt'@[9Ý  G› ½¢UÚyPÑÀVN[ôhÓ¡±ÁIáKTJCN·súÞ5Ø4`Wãù*/•ýœ…]”ç‹Zr°©À‘̨-Ôîh`g µЦBRh^…5ìh 8eÍЦBRƒWQ¡7…”wpºØ±w›¨¹&áfú ½?ÀOè§½rÇc~æhq÷‚:5×$Ü@àåÏ墢bÖŽN÷¶”%› É ¶jеÙ¯ötq¶ÚTè@êuк_KC~.r·O'ŸÓŽÝhÓ¡­X‚¾œ¡4älC¡ï“ƒMŽ4F÷@Ö;³£ÓMŹVÔµÎÈÁ¦G"j³$þ¢|gow‡}¾–øt#x¸)á¾æ·í^Je±³4l?¬9_¤íÁ6!;\]…+ :œØÊ¡l*p ópc=¶¾£¨‰­†w@› I½@±žë v·ÆJΣ&}é‡6:Ò«°° Z;˜/l‹V´©ÐÐ#šd}b;ˆ%YŸX´©ÐÔà}¼ðÝ.¥!§§|é6 8ÕXèÕlENOÎÝÒ®¿TnE> DÞ2WÒëéKŸ¼‘ñŽú=Ø&dGŠ¿j "§DiØÀ)€vxô`›./á—žXÛl*p$óˆ®$‹7kÜ’@…3f~8ØøJ{€v4p€a=@ЦBcëEaû%çZ$a&õd‘#‘Ñ*>ëÖÜÑ@Hƺ5; M…ö¥°C€ScþsuXyã¦5нôÁš›h |3ÖÝ]?ZH/ißÙ-Æšë^ù?·‡z?5!;\ú.Iá9Ì~ýðš~øÃƒ»qh…?f¿~8Ö¿A7Òî``d{i; M…†öˆ6ÐFÇŠVSÚè¨G› H½ dÚèXÑ銽:[ÐRƒMö˜Í?¢\MMÈFÇý&µâ•ì¦~Xð¥Ø4à\bákó°Ê'Ø¡3ëÍ6!;k‚p‚·!uçû!Ý’Úm*t ôMž8…ß°YÑù®Å6õhS¡}©Ç·Fˆ«Ô4ºN>¾pÉÉ&#û{ù³Ò¡=`˜Œ‘Qk(, 8Ýi ¤lp$1š?§ ,¦´ÃC6:k–a›:+Ø Ù®N=ÙDäHd´Ã€¶áU4°Ò6<=ÚTè@j}M¹4ìt7ä+ár²ÉÈÔ+Z¡Íaî±ÎÛ\¾5L 6 8¹Þ:¨²ÿ”œîÝ´aI 6 8•ˆ6è*rE ?]FÖ£[¡O£©±Æ$¾G¹‚½›nSÖ£M…ö…ž¶……^ŽÒ ½›v èѦBRhæŸ6GTtºø?œ¥ÔÓj°iÀÈ–@G‹á¥§› ]¼WƒMN%¶Aº.[ÑÀjD×eõèVèÓèHjÌß~u~²[•­àüòÍÊz´©ÐÐËËÅ jI- |œýÍÙjCÓõ ý„n E_ú¡M‡äNêMûg¤ËœìžêYð¥Ø4àHb´‰¶tTt¶ÇN7G éƒMÆDÕd[•ƒÍn…V²[­¿a‚?À„?_MžÐê)_MÖ£M…ö¥†^(ã› ÁïÇ7ªÁ¦c'ÔTUÞ¹éÞJ»ÀÄ\“pyÇøêÞK—_ç·›¿cÓåW5Ø4àHb´:ƒZ7JƒNwìÁÑÂ_&Ä`Ó€‘'0ëÌ×^g´ÜÈ_õhS¡©gì:,g—ö›j*ØDPô¥ÚTè@è͘оŠÖ$Ú·¡G› H}@Û ]¬àtS¡ë‚j°iÀÄôãÑ®ŠN7'íà{6Ô`Ó€}‘—+˜uæk‚ Zãk‚z´©ÐÔ3§â¦öÒ€·Œâßù÷Ååòr²Éȑί£¥ÄŽ[òv§ÖCê!Ö£M‡Nµº Z±åŸönèÑ­Ø§Ñ‘ÔØ}A¨uª4à4”¡Í^j°iÀ‘Äh·0sReí7w'u¡›”È>ae+Ú\PÁidJ› Ô`Ó€#‰Ñe‰ö#Ut™:é5ߤ›ˆ ç´¯¬± ¢ó}–7èѦBR5S¼ûPp—¢äK7²ÉÈ‘Îw(–æÍü•œG¥¼›_6:ÕZh¥jÅ–Ú¦G·bŸFRc¡4j¿,ïÜ4¡ý¢b®I¸‘¼G/^´èåÛ.Y, Ó/]é&¥²‹ÍT¥;»‹½ôÁš‰;©½=¥a_=K M¾t#›ŒìK½^ÁÒ,o“©h "EÑ—~hS¡©oZ÷IiÀéZDÛeÔ`Ó€‰_«‘âÕ’òÎ̓~ú5ØTàHc´hCû+:Byÿ¢m*t$µÖL\p¶ñög5Ø4àHbôúþBÌʆBP˜~éJ7)=}Œ¯.Ø7ÚÙXÁI@JûµXS`q'0Gue«ß•<½vØvPììi>²ŸÔí¸çîl²ÿÈ}F”ÅûëiÍê Ù&dcp½.¼qEw¼Q6:zż.‹3ÛÝbuçëJ¾t#›ŒéŒö©Ð.æŠBHÚŬG› IšøÛ¾+Šl`ú¥+ݤôTvYcA«y½Ó­jp«ôIp ±Ø\pJÒNf-ÖX_Ü»¶è[Þ¸Hœ´:q’;~åd“‘™¯¨Á…n}¨ètrll~ãƒlp ò »Œ¶ Þ“ç¨Yð¥Ø4à@âô-ÙoLˆ•„‹ß˜»ÐMJ„GÛßèFˆŠbRºB6:zkÔ]®RÞÉÓç)ùÍ…0j°©À‘Ê´  ­H¥§a(Ý<¥›H,¶—œ„¢´mY‹56wž´uÈõ•ÑM+N:ǩ巬¨Á¦ŸoÅœ´Çîž<þË‚/½À¦G?03êÕ3£úèÌó…/½Þö_¸)áÁ÷¼£éø«³.¹Åõûá¥pÉãûôhS¡#©µ½%¥§¡Ý £›I §{ÐÚiiس›‹?_òÕ£M‡Ô~,ê¢liØÀïFÑ¿?ûqmhÑíEûKN¢]ÚרŚë¶Ç \˜ùV•ŠÎVæùê¬sn` ·Ÿ"ÐëN¼Ó®‚³©Á;íÔ`Ó€‰·Ä€°Sì€ÎnyúÆÆWéP$ÊÛøºÐMJ¾)ÚtzsÖ&·dü8Ü}Ç£(úÒm*t u½¡:ÐZaiØ@ÐA8q4í_û¨½ ÖÚä^Ñéæ,ܾÅ] 6 8y}=Èwû»ç?8?àëuû~÷ ½Nÿ>àm oªèÛò‹ý>Gø†Ýþ„›ì7%Ü÷ªôÑ£·ÁÙë{BkÞ=ô€Ê¿¼yHÌ5 ×EöQ_P~;Sƒ™~® Û·DºW¶bŸ Èð×úÊr/¸&áFêâ>Þ/YéPÉû%»ÐMJ„G{Ei“ûãð`HÒ&w=ÚTè`ñÛ †¨¦C»#d¹Š=Q¥'+*ëácMMÅ‚tÖ¿£Ó׫dËÀ­Ä'ÁÈÃëý®0H¿yAºgöÜÑHÌ1{1‡wê7%Ü Òúâѽ\ýr±FZÖª´ƒÓ°—µ*ÉÁ¦»{Õ?î,ÿ~¦„³}Dj¶+wÇf/Û–«æš„¨ ^†ˆšÐKN'5k›—ƒM$žñ„7íéÞé[Ä1} Ï{ºûÐMJ„;ºJN–$Ö&Æš›Š Dº¬a~G§q£S wíòrp+ñIp ò}y¥Q>Ô'w‰·@—¸sl'oO³J/ë€6:Òº ‘ö„íà4¦c=ar°iÀÄd%bûLwl±¦j®I¸‘ºX«4ê/ 8¬«]6 Ø—øvÅ“·´1z§CáíŒîC7)=~˜¡É)$»f¨/I´JŒ56H‘_P.“7 Œ¼ÃZ&° ÜJ|ˆ4@Ñ;íÙÖbM ”¡•Ï34󿆱lp 1Ø®‰VkJN¿]_RƒM$^°š·ºUl6çh¯›˜k®¯ît…Ž|&sºBŸÉTƒM$¾aÇ ´lPpúíèB‡lp ñ€ÄÕ´‡b:ôãøsŽ7Qˆ¹&áêêS¥aÓü²„Z¶ Ùàâ JiÀÉ<¡3>Z¬)°¸ ´ÑÉživ:×#暄ȋ,Aôõ;Ì¿cásÕdqÜ«›éQƒMކRp5¦4àlfðõ#5Ø4à@bä¥uÞ6Q±ÙöL'Ä\“p}u1Ã+®D ¤t²R µï¡¨S€"íWpºOЉJ5Ø4à@â:Ó »•›ïž#ÀËäd‘‘‘WzùJrÅfK]JsM ԅ¯ñ«W)ÀWWïèëa’]^ÝnJx ¹8¥]pÐÃ^g¿£¡m„½Ð¾ Ü”ð@rmÕ¦¼s“ …®1I©& ®P¢“/TpöÉøò‡lp$ñ¡7wú¸`|q¯[¥?ÁŸWÿÊ^ÞØ•úü îѯÛ„ì@òròá»î*7ßÃ'8ð#f5ÙDd_äU\q( 8Yéè ‰k l î±±1Y4oÑpƒçJ&ßêM>7~îÀ6!;|B²F´I¨b³, ísMÂÅÔUÕZ£îöóÕ’ðVí¯àèâôxiÀÉ¢G§óµXS`q/âÊî‹) XêîÞRçØ&dû’߯ˆ“ˆöºTl¶äÑv1×$ÜHÝ^¢éÔ~…C Úï7%<ºèŒîØ«Ü<ì?Ž’ãÂÍnÈÉ&""kSæå›ì+t‚_J55vÄsüµB•žï%?IÏ{‰?Šõl²Ég$xeý/›¬C¼FÌ5 SW•#o5†v:»ßÞªý<J×ÑM©•›î'ëç¦uuÏ„r²‰ÈÈâ¼yiÀñ‚ÄçùµXS`qï[eñ¾Ú‰wuKýz#;td›(¾]Ž/}R¶4pà—Ãìßþ¸iFÞÉS±Ù~H[yÄ\“pýañ¸AGcççú½Ë•›/Ëž÷ß=»ÊÉ&""ú Kæ̾ðlx^›(^ß_<º{ÌzîZ9Ì~ýð9vÒ¾ŠÍVÚ¹!æš„ ÔSæ…¡®×ù±Ä{7 >üdä}B¾´róÅnt~±{°’“MDÆÅŠ×èb[…o9Ÿ‹¹²ØÖnJ¸ÿvêÁs"Ú·L‡vÇÊV |@Él¿Üë ÉS±æ›­¤¬;DÍ5 ×ÿj«ëEý(p´ò£à×OnÈÊ?: _ݼqóUÔqlß[ò¥ÙDä`\ ¸Ÿ€­áíphýdkx]঄»+ÿzÐD@›Œ–ÉE°î›­y¬=DÍ5 7UW×9ùQàhFÁ¯Ÿü³àèZKÃÍ×»ÙYIý¹§&›ˆŒ‹;n(`kL;ZéØS¸)áÁýˆÓ3û”A´¦û£ä6(m¥ÁfkkZPsMÂÔ3'h›_iÈéx`×[œ¥cãr“p…WàüGWwl2èr£škn îËíÃý"¥!§ãmqY‡+61РÅ4`_ãa„‚!¶#`çæ…#ñÝë ГMDŽDFË&tá|g_#3ÏéÒyºIé~84ÌXÔÂv¹ ÆÉª°Þï›ìÕ™2þøP“MDDFóÌ´¥¢¢¡á Ã/=ᦄG’cßvS—†œÎDüû“GÌÜŠ7—7òí ´ª•YO6Ù_¤ÇØ…ÄFb&áúCyœ?mMÞ¹ùrwwRwÝ“MDŽDFóÁ´õfgCKm¾éC7)=}½T¨á·4äl6ÂàÃOFj¸»4l`Ù£È{°MÈ–kÐ3ÃöE} õ9àÒ^Ô›OG‰»¿†¨É&"G"£\Ú¹·³¡E¦_ºÒMJ÷eŸÀ^BØV[rº`£àÃO^ÀnË. Xøèvòl²ý{ºA¹ º‰çKp0¨7§.4gøtY¥‡uÉóé².t“Ò#á‘ìícÞ¹é*u¿:û™»xËÉ&""c…(Ö˼¦“†%_º‘MDD÷¼í¹¼£ó¥šïÖî€6:[æo¤N÷”ûÒÛ·ØV¤ï¸¾[ŠÚù”u¥C{ Ÿ³îB7)Ý~¾ÞÔ ÕÒ°ÝFåoÒÀØ&d§‚gm§¯Ü|3wv°»k¨—“[¡Ï’#‘±< í©ŸÓ›•Xô¥ÚTè@è˜lAõ¥!§; Ý 0c¶.º ìKp ñ|Ó§ÛKC‡ö¾TÐ…nRz$ü¤Î_—† ì1|Þ½Û„ìTðlo¤Û*7ßgœ•õî62ÈÉ­ÐgɑȘ¯uï• ì2(úÒm*t ô‚½t 74”†œî4tƼb`ºMî;°¯ñr8¾¨ºŒKr?¦Xvô}<¢7êó¸1µm:t$7ž¶æ‹`•mç|¬ ݤôHøøAÇo*JÙ›dßT”:°MÈŽ‡êt×NåæÛº·Äº?9ÙDä@ä‰Ð;Kv`bÉ—nd‘#‘_§Ñë\¥aÏ‘1}Zôvø}náë>þ_zÂM ÷ëј͇ïdýŠ ‘ÃAWÕ±_8,N<âž¾ôhÓ¡#¹³bÇ>×é iEa‹¾ôC› H½€åUÒÊÎãeÒl²SÁ“¸‰ï­Ü<qzpþ6£&·BŸ%G"cå ºe´‚•‰nÕ£M…„^ñ3oÓªômÛ]?!_Ø´ºÐMJ÷…_õåÝÒ°¯¿‘Ÿ¬(-'›ŒI½ÂÁ}‰I…aÔÝ £Üó®m:t ÷ =èÑÅéŠÂ(º8­G› IU:è†Ì ¾!оôC› =àÉOÞ½UéÐVû·ºÐMJ„KLNLõ皈ÒÓT ¾ô›h¬¯¦—†në¼@N69zAÍÒtqº¢]†.NëѦBRkfÊ;7ÿ‚ôK=z²‰È‘ȸw—wn­Çç蓽…wnu¡›”/¾°¥¼ƒÓiC_1#æš„ëë{¿ÞÁ=‘/GWvº¿ðÅh9Ùdä@êZ, Ë¤ ì.tT6:4ðÒÆ ì0(úÒm*t ôˆ§UyQ¥C{ o#êB7)=´ë߯_KW,Fs_zM4Ö—îJÃÎö™G9Ùdä@êÍ¥Ò•°{ZùaÑ—~hS¡#©±#Ý{‡O_t¬m*t ô=ò{çÜ]ô¶¹üÜÆ­3‡èѦBGRƒÙSô¢ÒÓÙB_›¤›ìküД]…y¤U}é‡6:;½Ð˜ô@·bÊÉ&"G"£§Oº|[ÑÀBG—oõhS¡©Á¸«38ü… üù›zÄ\“p}W0³ÄWiâ›E_ú¡M…¤NPß¹t'`ßîÔ£M…Ž„Þ®žRö ”>y_ñ›f‡l²Åè‘“®ÙV4°µÐ5[=ÚTèHjpGtV¾?±”†œn1(øÒ l°«ñý:‚)%º °£í…­t@› HÞô¸O¶²µ£9ÈV¶: M…ޤÆ2ð5¥!§ó½YC6 8Ð+µ³N¼·Òr¸ ±V<=ÙDäHd0D'¢w4°Ð±‰èhS¡©Ó‹÷Õˆ-®ìh`¡c‹+ЦBûRß°ÅmÜ/oÜt¡cocM ´=Þ}Xsè>¢üî³åÊZ *8ÛÁy«lp$±ºh_ôsMš•F5ØTà@f°Ó5–œNÚΨ›Hœz«¿qrTz°êãäèB7)=~CêÑ ©ý-q"Óézõ"SK”£M‡ŽäFë…´Õ±¢“Ujº:…jß訛‰ŒÖ i?GE‘)íçXÖQŒ6:zEËX´GiYÑT7íQÒ£M…ޤ†x¼ufIü,øÒ lp*±Ð„ÒŠœF§´qF nE> d¾cYÔ‰Yp:Ehï¨l°/ñz›à¸nöâ:wi®t D¼É]›;°MÈŽ$G«†´yfEÍ"¼yF6:z@óƒWÖ¶¢÷Ùó†0=ÚTè@j,‰G{gV,#F[gÄ\“p#yobJiÐéþMgÔ`S™'¬8‹Z^KNçmÒUƒMŽ$~ubiÞ/) z|ºR?Æ2>]Ç#|Ãq>ºÜ”ð@røÎBÚCZÑijÆI ûR5Ø4à@ä7,^$í‡ V¼Ÿ®³‘úñ†žmBv ¹ÖùSÞ¹ÏíåïÅR/]¨& ÂÞÑìåÍY0Ü£÷zðüÄ(оôC› I䬂ÓH”¶ƒ©Á¦ƒW« ¾âÒ€ÓoG;¡Õ`Ó€}‰ïµÑ( êàb^èj<¡¿†Nììû~Õ`Ó€ƒï—Döqqe=8Ç›ÉÝý‰wàh±¦ÀâŽh~‹¶íÝчxÛžm*t$5Vû¢8œNÚ£›H0w}–¡_†¨àl<ðe5Ø4ààã=¬m©ØlÓ.1×$\_ÝYœ- 8™ÉtþV‹56rŸð©Û2ñ™[1×$Ü@Þ-‘¦||¾4l÷Û`_:²MÈŸ‘< í©Øli£#b®I¸‘ºwË7fVî0ÿ~¶^áéæ´k<ÜZ¥œl"r ²69\Þ¹ÉþA§²¥TPa–tER¸4àt÷ ÓØj°iÀÄÛE_Ê·¡KÃN÷OZ÷`›í ¾\‘™B;G*6^èOXGÄ\“pu´×µ=–†›ï³³+¹Õ9ÙDäHd,¯Dçž+8™tæY‹56wÀ²?tÖ¹‚Ó„Î:«Á¦oéV嫹¥a{̾td›¾LȪŒvB–†›¯p‹³vºÇi9ÙDäHdm¶4àxã“ÆZ¬)°¸,-D<X60õ`ö¥#Û„l_ðõ:›+m©Ø,ì¤= b®I¸º7$-Ä7ÁUn¾¸y-äîyON69Y›ù.ïÜd£óôRª ¨°±£ï›ýŸl¾ÉÐëѦCbC™=ÚBP±ÙÂF{Ä\“puW(_A7jUn¾¨9/\=ÜCˆœl"r ²8)[p²¼ÑId-ÖØ@ܶŸI ¯‰ø›r¶ Ù¾àwà’ÆÞŠŠÍ8Ú\!æš„¨;@© º¡¨róÅíá,›îON69Y›1, 8Yâè §k l î'¿ÉnV6°°ñÙÍl²Á/•^?Ì’oº**ûzø˜Â¾Š.t“Ò#Ù_ã\öHgièOðÇ„_eOÃõý¤nÁ_Nôl²É$)Gû\*6ÛÊi§‹˜kn î %åè–ÂÊM·ñáæþú¡&›ˆì‹,O‡—72°ÃðI|9Ùdä@è’7¢-›Í=Ú# æš„¨;By#ºsªróy783ÚÍ/ËÉ&""O7uʶ4lgz|“g–“MF¤^€¤_º®Ødöñµk1×$Ü@Ý;”Ô û*7Ÿy£3§Ý¨œl"r ²>¡Xv2óΤAåd“‘©§ÿ®×8‡…Õ6›}\iUÏ5 7Pw„Î!h‹Ë‹«Oð”†62-Õƒl2rð g,q‹öДwð襺Xî¥×$Ü@ßC"D–8+ ½N”Ï™­“I¿^t“Òáïwai´4Øl%å*¹z®I¸ºàT‰7{üroWì E§]^ìt%Ó.=È&#ûŸðvkvh;IiÈéZÊuÀt›h< ‡U®xùÂf“š«^ê¹&áên õ¾4ätl­) 9Þœ¨Ø4à@ã naÇÇ‹tº¶‚áF'lõhS¡ƒ¸‚[6ê() 9rœ ¦Ø4`_ãù •¥P£Ã‹‹eÓè„ð|–“MD>˜‹¡s· üd:}«G› ½B¶´(üË]nƒ8v) :H¨±èK?´©Ðþ'¬W¿©Jj. Щá ÆÖ£M…>à’õ¦±!LiÐÀ¨£/=ÚTè@jmz®¼s/Hgåd‘}‘ë%F€£4h`dÐQ’m*t 5x¤SœC>û§G› ½¢ñ ’®+Ð!©m*t$5v ¤H Œ:…¤G› í }иƒñ*tˆ§G› H=BCšN÷Ü3ë7K¾t#›ˆ‰Œn³ô™³¢7·ÂÏDÓ9õhS¡S©•·F|Ôúc_üÙÛ.ú°?ª}’ýGð—(Ûv;,WßE4Uü´á§ís.×ÿ–ÿݦÿ¦@•pSƒ¸¢g úLWÑÀrBêôhS¡©hÄG§)*X¨è4…m*´/õãöºÇPæ¼+ ý þ¼xWö0Ùuû îá®Û„ì@ò<àñgéŠÎ'–Ö£M…¤žÐ0›ÎU40%éüm*t õ<âñ§éÇüŠüiZ6:ún¼t†¨¢ñAgˆôhS¡]©oõR`T³ê ŒöDÝm*t$urIÙùƒÞÎö;qÏôz°MÈŸÑ(›MÊíh`B²I¹hS¡©ï(™Ííè'õS¨ºOG§9ÎÍÉÁ¦û"ß®h°ÇÐw4ðýØz´©ÐÔ#Jfè;:N?•{<—ƒMDž^WM£giзÅs…þ:à‡7ø†Ýþ„wRì7%ÜÍ}2ô‡G÷η[Ý^”pSƒ¡8£Q›²ØÑùRB§,: M…¤¾£g6e±£³…j¼:+ —°ƒMD~Ü‘¥õDsíŽ&âxó&¢{°ë7%2aœI†kŸ¦÷/Hذp`#Ä#4W†s&©€«/ž;ËÆ…×CL<¹GùƉ£{eÛB´€¯6n/zŒõ_†«/¡{ýdž…!Þ°¥ šH\} ÝY 6,Xñ}þÅß $þµÙŠk„÷اîh…©§gŽöóÚ¸;Å|Zxt5Ö´ÌKêÚKâϱá2̰â ë.ÜK¾ Wß?÷’ ¶BÌϤvGßV“7Ò|Zx´îZ™Ài®TÀÕWИcÃÂõ­Ð58·{…øãœ³oC˜s·ÿÔÇ›Þì"paâzÓ[+…“ç¬Ùw¸^£7ò²\V¬ÜÊÒïìžÝ‡ Wû}wÆ ¶B\»0©=ã°Ž£ -ã` Ñ6>AËa8³š ¸Úó»sÁlX8°brŠ$p¥—s§t¸¬0X#¸ÜÜHzw«ý›;™Cv…âêá$7•s¹ðQm þDU‚jv‚V½þÄB†k?™?±À†…!Þ ¹°?±áJ‹p§¸¬0X#¸;4ö¯q3\m î5.¬‡x'OÞSWZ„{±Áe…ÁZÁ¥OØSawZ‚¾}™A—…&¡>> ßñ²x© µËÄM>ØB´xÏPÏì^Ñí3Ô͹tdW(®^î >½»•nνޠªBPÕÀ]¾Š·Eø¢‡…˜fLû<¥fËe»Bqn‚&ÚîµÌ Û?›{%Cf…ÁÁù—4¥ÕmÁöÛ¥"l!ÚFÄô¨~ýS*pàÉaûòà {Æ’ »ŸþfqEçœåéM~š¯Í³ø²Ðd£¬ÀèÎèžl­ƒö¦tÙ®P\#ºä¥z*àJíM-Ya°zpûn»7üjªTàõîͧnûoåcØFÄûø éw^¥BBŽã¯G™)õT°•~ýÀv…â ƒ»òMïn¥ßð®Ó¹ªT#° úÂá¥wxßüW.á6Ü} ¶â ߈_Í“ xtÿUNCŸ¿vÎ,öJ~ÍÅÑÊÔBpaâF{9ö¤xsþTȃ–Õo^¦°aaÁV”¬—{ûódkƒ¡wÿ“í ÅÕ£;ô7 ¥Bú<ÿ%HŸ2 7‚> ¹Ç%E©ÐGÇñ×£HÒÜ»™{²µÖíÝÍe»BqÕˇaAžø¬Lˆ¸Ñ¤wd‰åÝN:ÙZœ½JlW(®Þ.Fôö_I°õV1¾ö(ýé>6Ù>›Ûâ¾,4ÙŠ30Gòï\e¶Òšý[WdW(®ñö­üYŒq£]l¯½Æt?p§•gÜX¢ðiáÑF¨‘j®?³µ&íNö“]¡¸zt'zŽ ½Ñæ¡ÒæÜŸmÞFðïÕg»3~Ê»õ!ºPu}˜yî0’×mBÄ3“ÿ@fk}‰{ €ì Å5¢ ¦¼ê8¦ñ÷²\˜¸ò¹ï™¥kìù7­³„¤aÛ:DªnüœË„üœháÈÅE;Õ†ñŒC1ÁùG,/TÞøEé‹„TÐ×\°–6|Zx´ì¥û8e›~gü5wàM¿ù´ðh#Ü—bÚ$6ºñ —;ð]¨ºø &ປ—‹fXÊ8êf 9BtaêÆ¯¹lüùg*t¨)ú§Î!ºPu#ð+2y†wÀ/.:yn¨ÎÉ8ÔqþË •×ÑuÀßTÿÂ%ëHslX¸„èBÕ­À# xûú⢠—†¢ŒC­¥¡ì#†*oü¢+<¹kY4fj ‹Æ^¨¼{h~‡nú¿Ü |™ð¼mz·¡æ‚ëP]˜ºñk¾]ÊXL§‚~î7=¿ŽÊKðiáÑz°·ÿ-V1™‡^ü†eL /TÞˆýˆÌ§áj‰—;Ás—†<Ãvý(÷úõçâê†ÅLæ¡æØ°˜‰á…Ê[±G&ÔðFúË}û:iÍž i ù†]¨ºñƒ.=yÇ$ôÑVÈ=¶m#Þy׎Wm|¡#Öv©à¡W´aaà •WÖ±ëð9Œ?ÉsòP'àOòñBåØÏøç_©ž<ôôþ•j/T^}ßᯕasòÐÓû6A¼Py#ö ÞçøçÁ'=½Ä •·by­(I½TÒÏ)ÂðuúqÚsaÏO;ß'ø¿¯A§ÛB´xÿïK¼¼¤ansòPkñÏm‚x¡òz[öžÝhRa¿Ž+ñÚ:Ÿ­·ôq|]‹DZÙ¤ÂÆ¿Õ^Ñiòr•ŸæÁ«3Hº,4YoØóqñ%±…¤‚¶Öbí-;&®·îµë¹í$òkO–Õ´Ù°°`½a¯su»¡½igÜŠÛ›v.Lü£i¿ârTd Ë®ëKÖçï?Òeÿ™þŽÅƒÑ #t¡êF{¼|œ¶w— ý - 8íéÍγªÅº ¢­‡wÚ£k;¶m=äûw,-i×ÌÏÞkÏ®']#p!âFÔß>ÚÆ¤S_3+¼éE.L\Ÿ9ï;Ü¡·d¹34˜AmjŽ;"®6õ©ëÆ[st­k9áë´`  …G¡žðáÓ¿•pò@3Õ6¨m$„àBĨïøêßD8yàÙ'50ÚB.D\z?ã¹?}òÀ³Ïj`´dv.D\úÐ}¤¶XÝy¦ÒôæîœO Öƒ=Îü©V*ð§kž˜—+}¨Ï? †›O ÖÃ=ud¬¶éç/ù¼nœ×¶ù´ðh=Ø+šE€“BéîÕ.ª=—@ 6‚—²¼2´þÜíÝŸmûø¦57Íœ ýúä¼yŒ.TÝü2²³ž©°×Ó­ÖJ[lOÖh=ÜÛñUfÆ3výÁý™Ú[ˆ¶p~²3½ÛÀsû³´¶ðìZ¼‰«"Ú—|­>e^ zÒ½šž  …G«©Ùiïé3«TØú÷ÞoLl!ÚzãÞp°tä“S¯¥?‚ 7b~œü"NhSAëm¥}Χ…GÁþˆ³ðÏ”'á¸0q+èh7gèaûòÜè\ß|Hô) Û&¸qõæî¼òòßX÷lµ‘Ï]N:Ý ŸÓ®?¸áa Ñ6ŽNUð=ªôn¿¥s-žmÄíÅVš'´ÿR3"nÄ|C9¾%˜ øAý›™!¸q=æ=ñ– »û[,³–œ|Yh²êÏÑЖ›'¼˜þåf.D܈ù¸Ûxóró¤Ÿ-å[f¬u±I‡…aF“ì k‡ˆí‚ ·bþ1¿ç­îOýÕò÷¶mWÈYKûÏg-ì硟ºa­–íÚSãòë©/'OX+‡Tà@H–<¸q5qâ¼6X>v»l=´õ ±; úÛ²Þ“ ¹—¸G• [¿V¸yg-€­î¬ÍCÀ’8xµ•4,åù´Ðh£moè:§aŸqà§lXÆGàBÄõ˜+´TàÕ¶Ò°²äÓB£hO¯—‡±BKü¼J¢Ÿ˜‹Jº,4Ùˆ3:ßnYVŽØ„»eQɧ…FëÑžzhºÓÌòslï©ÕÈ´ðh#Ök„TàÕ6Ò°¶áÓB£hÏ·óK… \j5oWûr:El!Úán Ê®àj×ú|c¸¶m£ Ì-SW߆91Ÿ­G{.;bjt¾|V£'Ÿ>Á…‰[1ÇæþÜh–ë#±?9:_¾@É¥B®>tCË|läã!m´ëK6äŽ2]ì†äQ€-<ÛwN§=©°ëW5úgk|Zx´í}`ϧRaÏÒ—Ç®|‡²=}žéΪšnN GàÂÄÕ‹ çå8 =ìË_uÖ‡¾úrô²¿ÿüÕ÷ågö0ÎÿúMLˆ.T]ß_X†…œÅL]ïi’¯¶ðl}±ä£Ü¼~Ex´ÞÕ^>+ÎI ¦w¹ë†T&Ÿ­‡zwn’k+¸iÉ®ØÂ³poXÿ×ÙÈtý±R¶ðl=Ü[7Ó'©ÀÍ[›§?¸0q}Œßà‘Á½*É´ù{6¯K"paâF;ßÉÃ|z—¡Çvg¨l!Új¸—nè/g*ðgQH¾I€Ö­„àÂÄÕneé¦z_ÞÚ±œ8rî»c Á…‰-}ßèïh*pèѽK.L\ú°Ö»—æ–žñçKZ¹&ÐßÒ#paâzÐÇÛ„ðuœt¿¨{l'¾¼e6ÿ‰Y‹yˆ.L]Ýÿöèƒúì‹™|=U¦n4ÇïÖÝoÆ¡7ÉÝñFàÂÄõ _ «Y;Êéݾ´–¢°&ËËx•óðKù& M¶B]n°³öÀOy1'õµW;s‡®_š^>û#ôÙ…©ßÿIýž_Ô°0tõFöÁx=w~ƒ¦®î,Ïu;îÂÔg_à¹þ« S7^¥¬ˆñWRœ6òä›=êº0u}6êÐÕ/x ê¼hÚàù"® S7"“ë*¬[Š3¿½{¿ýM–ŸÇþ×ë—’ÇèBÕõWõãÒs^&ðèºá﹋éW†×þ æ“WΆ…aÀ=PåÀiïΪ®äm«2F¦®¿÷}TŸ]ÛU\æqáëÂÔöxìÉs«pR¡÷VÚµ¹‚(Fª®o̸ÊðW‡œ6ÒdÔõÑ &êBtaêFG€ëê2cPuy·Ž« S×;‚-^÷WМ6òäêiÐÆèÂÔõöèÐõÅš…Y&t2íÐ…©íqæoÁ¤¯f}£/çÕ…#Ÿm„{ç¥þŠ®ÓFоbÔŽÆÄèÂÔ×Ö·NÓGuy´ìèÌÑ¡ S×ÛãÚ-ôÝ—Tàõië•IÍŽðiáÑF¸÷™?•N…n^\×¾ Ñ…ªëË€žÄH}ýMY‰>--<Ú öÀ/ðK…´mâ:¬•cÙ7J¸ô­6Ñl03]o+þ“O Öƒ=Ne ¿[Ü— zÔº¹ ‘/ M6" ×~ø‹×Ëý>âö#ОmÍá9êâR¡Žã¯G_Ð^C9⩎ãå£ç²åswZWÕ<ÿfÂƽÂso¼ø0:ÐBpüõèüè\Á— xt=úÏñ»TèÀ£û«שéý•q½©Oo‡ak‡TÐÏ÷s`®wذ°`+Ìh±´£Œ,z½…8ð×£Oðf=^ç• xt=ú<òKSS¡›»Gnýª U7šûüšI‰ûTØÓ³9Îä‡\˜øÇžÃåÑÑ´ÿ°7Z }uŸ ºÖ£û3lXX°æ= ‚1:БãøåÑJ S¡\g0, ǘ¶ÞZæã£„úÂTè@Èqüõè3ºp¦BÝ_»¸Î :×ÇXBÄög­¶«2ÞÓ•;V1¼Py#ò;¼¶ÀKS¡ÍÇÿ=ßWÊ­ÕK…^ô†2ÃuéÑöî?ÈÀõö²Œè°Ñ°í¶\>HPkë o1¼Py+ò5q‘ ø¨¦›˜¹º,4Ùˆs9» m»eùÚ@ho¶m#ÜËëº>F†?ðów¨›tYh²z'ºð³|³ö±ñ3Yé7‹[Û“p¸0q+è+2ÖøS*®öÛþœ ]š¬Çy…wg*Ök‘re>ÒP|à •×»Ãu#ßpþœmæHÜð&U©ûéïµ×ÎmÃÕ¾œ*‡ˆG -D[=oæÁGW·˜V81ÞP“qèò_WÄ •7^ÿygÿªB´G3e  0p£ßºìMðòd©à­[3ïdùbx¡òzìó­ÿ¼ÉQ*d¤±OJcWc` ÑÖÇ >+x™ezý”hþ­¡üpÃX¸þÕ…©ëÝîv|æšù‹ Ñ6Þüa¥×$¤ÿus©FÑ­dz[®ô@]<óiáÑF;A'þþËl¶ÑLÆêG3î$ö3 o ‰ý^¨¼ûϯ[ÐRÎÛç'"îÚ¯ç†w„êœ35HœÄòBå^f¡ÿªB´‰ÑQ½>L£^S¹çÞ7ß™¹ÃÑ4þÛþëÇóɿհEàÂÄõ#ÿÛ±ðbfGRaz¢¸9©Ã§…G¯<’âõCBÄ¡bƒhÚ"6qwžkÛ¶BR¡wjÈ=œ[ˆ¶ÞRö_5ì-dš5ì-ÄðBå­Ø£iÝ ®ÃKý°8ÿˆå…Ê‘‡WÒhÂ(½Ó@ïèNsÁ²;}[ÖÇÐ>5„² ·ÚÈÆNå¤Â"îÎûåK¾ 7§a·hÿœö3w‹bx¡òF“áWk¦wúYΖ†èÂÔ.fcw¹Â£ÇFσø¯V%ØúÚ|?nm6ýúMx<£r Í¿ÿün¿9Ñiú׋ó]¨ºº<ߺ~€»ÿÖåÉ?k܆u"o]ñBåÕ¾÷‡ßàNÆ¿åuòÐOëßó â…ʱ‡ë˜üçÎOùa¾½Ä •7"¹~‡Z¼ü#£‰5ïF&VGÕ­›À¦Øp/77~JÇÜÔ¿µvòP÷ëßZ â…Ê[±_Ø%©°GÿßòNsDØB´€¯xÚÑ¿+xòлäß â…Ê[±G³&xIs*ph¼ÃùG,/T^|?à¹Ê÷ä¡vãOùñB娣+yïÆi–­µyç4¢] 7µüØðýrx!ÙP;Íá­¸ã+=ÿ~ÞÉCó0ÿ~^_ÆþoÄ~ÅSþ ðÉC?­?Ä •7bgj½' u”(þˆÄ…‰WCN-bõ½=ûN®NïòôV¥3¬'cú^å5:sx£}ïø2Ì¿“zòÐ`äßI âËØßãõØø)-9å÷/N˜?mKN9†*oÅMÏz‹cN¼õ1!¸0ñjÈ©•¦ž 7ð¯gŸ^¯*©ô1ö±½ñ½Ç?"qaâúÀ:|!Ö&sx£µ6anÕfš¶jcø2ö÷x#öøéê–ôOnIÿÆðBåØïäÕô.Cƒj?m!ÚµpS+OoÐ/O~”)1O(¥ï­ ·ž­ Á…‰«W›ÿèxbÖ_«Ìá­ÆŽ§×6T3J ª1|û{¼û±žÒoß]ë ýöí¥\˜¸t´§á>â‡^VœÄòBå­È/d©à¡Iοž~Ƴz›>óPWƒóX^¨¼¾lñ·–­U o´ûzº¹}“i¬'›Û7™"paâVÐÁÌXÃÝí'Žôd ··ñBå­Èãkœ† ¾ÌC/kÃßÔá9¦†½øÌCeÃ^| /T^ïæ'ü´A˶…×ÛýTO~¶o€LõÔgûH.LÜúŒOY¶@25™†-iÆ[dÃneæ‘×µe·2†*ot6x±tËV…7Ú}=+Ôžžê9¡ö´p.L\úÜá Ø†Üpæ¡&ÓžñKIZvp2½® ;81¼Py£å ¯3¬¬ôv*póö£æÄ|.L\OÌÏøÁ€–Ä<…7šÌŒW25d*g<Õ’©Œá…ʱ¯'„ÚóóõHâò½Ñ7'æ#paâFÐ×ggÀ½Á!ºÕ·ß>£ U×oŸ˜ñzÕ–¼üŒW|¶»‰á…Ê~¸ÕÙ©¯ã­¤<À¢­‡;tT[ò ž-<ð샘DâBÄõ¨Ç¸ˆÉæTÐ×ý=RŠ<€mïWü§îwøåTê‘û[x¶ñu!gáRA Å›;  …GÁÞáöÝpÐûä†2©PïQp!âzÔ'´Gsé]šŠ;¡B—…&žà JÃÑâ“ɬ¶@µG‰À…ˆQ_&î "òëÆYÖ¢‡ 6¢¼¡½šüI ¼’­;Ã'–Ó¤‚µÒ\Ä—…&‘&ðWt¯n2}ݲc­nø´ðh+Øøø¨n7¨'lOeÔ¤½z¾6"nDýRÍY+¤‚‹{…ç…GÁ†ÓÞ ç ³4“UmƒêP` ÏÖ#¾\Êq9K…TÐ@Cq¯oø´ðh+Ø#ܾýÇ Oh(ꎔz¨0"nD}aWФwz~¾<_Ε?¶m½òg9tÚò,p§÷UÍKJ>-<ÚhÚ:ÿv/+3 ôƒîe%ŸmŸûnž<Ъ»Ûê±Í\ˆ¸õµÇ“Þþ#›'_ö¾S£ÖBDàBĨ¿Âg,‘SAwZ¾±yYφ…a^à.¥á¤àÉMD­'PÏ †àBĨÓÇ© «MŽ gÂõ0o}ñZ6ËÆ”ª=` Ñ6ÂM_§‚®¶÷:ž 6ÂL_)¤‚6ξ5¯oø´ðh#ØXæËsl4½ÛúÒ©Á~Ú³­x£Ó>÷zrÛ°I”{5Ɇ…„ù‹£]ÿNr´Kjû<¿9ÆÝß>õõ9ŒÖ§¥ƒxáòz#܇õÖt[]yì×ô ËB“8ƒIWÏqÎTà@7Õp5"nÄ|:Nè1¦׿VvãTd€-DÛˆø|ÙsáÌO…=‰ô¯O¾æŽp,ñý‰Ïzþ?&®ï\>+ÃX«¦w·ÞºW×lXX°Ò®ç??ÓöÞøÎTà@è=z„ 7bÎÏ ¤Â6–Q9[ˆ¶ðq„z_Fã×_L_J#BšlÄyš¸ó×TÈýô÷*‡µç~ºÚ—ÃÚzG·…h+ë?®`ÿ¾Ó÷kç; ˆ¶m£ Î;8 ©5 Ê1ó 8þˆÄ…ˆ1_ÖJçÝ–Ì|ÑǼ{úV…Ý–Ì ¡…GÁÞ*¥vÍÙÌ®gîšÓ™A¸q+æX.É—Î|ÁõÓ—ÏŒ…&q>NàQ«ÕROÓ_ ßûsgzî—+} Çл:-<Ú 7yÁš âWeˆÿ^c Ñ6æk8¾)x¯6Á>¯X™¸q½ö=š@ÆïzIŒ–ÞKj‚p!âFÌ/w°Rß©À¡Ø›´Â…ˆ1?>JÁ[Ò§BF^Ï]{÷ËÇ~DâBÄõþLJN{òïWm<ñŽ 7Úá‚¥|=w¥¯v,þ[“‚p!âFÌWvŠ)½Ó¯c¼Ä]šlEžd¡‰«TØÀs£ôßc˜:u/1³Œô%½ÖQ}¯XÂ…ˆëƒƒ´'/—?—_s§W »jÃç-Ô¼]µ\ˆøÇúzòÍ*ã?¨q½Ëzþ¹ûj©°Lä×û³Û÷l!ÚVÀ±=Ï=€©ÀyŽ?"q!âFÌó…}ĬM*l`\v'›pÚ½ vŸ6¢=Âë*8” xpØ~=8ZwѰ{7,àèÓ°y` Ï6ÊŠ™Ç¯ŒLt(Þ».ƒp!âVÌál*œQI¼œþTn»ï÷i#ÞûŽ©À»¿J\Þ~)ŸmE^XÁ‰±Tàõf‚Û¯ßgvmr*ìîÒŸ°ªª£t¡êz{/3}Ö&J*pàÕoØþ‰À…ˆ1?î—£…§Ÿô÷¨±š=Æ¢­Ô²?q4é>©³µ:rgÍþ+—ƒp!âF+GWœxn2½ÛÀ8äÏ©¢tÃ>þmÚ våÌçåŒW§+ ûÉ|Zh´mt—Ov¦·?3>.Xf¼ióq\°ürÓæc.DÜh,+šîÄoOü ÞûЃp!âúnĸ¡]­¿hâ¾­·•)`ÿ'xµClØ·âÓB£hôl~z·¥a"ÀžmÅ}sÜe™6WÉÍ•¸0q½#œF0±×P&uß6š xŽÈsÕx*pàÅÇñG$.D܈ù‚&jv2^íÆ6ø´Ðh#Ú—ï³6PRÝxÃÖO.DÜŠ9ºÍá.NË4Ô»ƒFàÂÄo¯ç˜_*é×G”½ÎÃXØóÓÞõLg€-Dû#Óùzð­·’çÛÌÞBI…~­ð"nÿ„èBÕÀ•uÀ< ÿäE*p`ˆó~«#"nÅœ¿q• ¼:ciØpãÓB£h Úgû¦œ Mïò¬üˆ7γ²aaÁV”ÑÄrÃ[Æ9aÃ[.D܈9»ì2½ËÐŒÐ]Ò` ÑÖS)ó„n:ú ÜïÛF3œ©«XåkE/xïqü‰ ·bÎß­J^,›vÙø´Ðh#Ú}›*½ÛÀÙ°¿` ϶âM¯‘H… õá°þÕ…©W£^#7TÑfú™è­À†2Ú» ø [÷ŸRÂ?¶” è²¼Ÿ‰ Â…ˆ1°ˆ¦ÙŒW † Y>-4Úˆöåó¬mÍTàfÞªyC6&nÝ‚ð>É6ôƒúŸ„èÂÔ­¨cE$ Å‘™®A Õ‘¶ðl#ܸät|2/x}rì/"nÄ]Î6L60,7ÔKØÂ³xì‚§¯Žú »÷|Zh´ím‚‡÷Þýû÷fíß½w 7‚ŽnøvhíXz§‘Ÿ³ár°\ˆ¸qpÑÙ«+ZåC¢/~pü‰ ×c¾v;47Tǽâ:Óõ9n?máÙF¸Á§M+¸µÞTq 7b°Ç™ ¼:ê7ìÍòi¡ÑF´GvéXz§¹¹à. MÖõ®•WE¬ÂÅã ,bÑX.LÜjÞÇÊý0e*øÞ˜`5V3Œ.o£—O¤‡Vîº\˜¸t¸:.ªM… ­'`ýª S7¢¾`ûjy†~%Óõù-n?máÙV¸Ñ >×Ë„V¸Ç‘¸q#æëëKû=0Ù6_Îö›`Bt¡êÆ´¼‘¬©`h…îöjªâÓB£F¾ãÛÌ›»^(ëÐÈëP]˜ºwp§¹áŽ’lC#?¬?BuaêzÔ·~f- G;2]ýÎvØÂ³p£çtŠ´6ô*„†­[x¶ï ߇ó°dêý,!º0u+îàì¼¥¢"ãõÓRQ 7bþVCÍ©2Kž“tæøì¯‹À…‰A/¡hªcÙ ëšÊXø´Ðh+ÚÈÞgÓ)•L×Fý¦c*¶ðl#Ü;œ½m¨©È:Ò_5U„èÂÔõ¸óKÒ Œ? %|Zh´ë_Ôº+µ2=îJ­\˜¸t~iB*ðê ÑPRÁ§…Fщ¦C*™®> §TláÙF¸g8ذ—uhäñoÀ…èÂÔ¸T”3÷ù÷Úlæ6ˆ.TÝ <žJpoògˆÜ›ü¸0q+èü]ÄTàÕ£a÷“O 6¢}¹tŽs !t}(j8<` Ï6Â]=±ß\’¸‡Þ›«#paâú&ó¾Õ¿ÛÓ¾»ŸusˆhßÝÑ…ª«ÿ1à- ÿÎç©CS.÷Îgßõ_¦®ö1?:ž.wïóŸ:4ø»÷ùctaêFÜáKü{ '^§ý[ ´Ðh+ÚXÆ|RŸZ[‰žt}€Û@[x¶î€ÝÃTàµß²a×3€mD{Ås·îÝýS‡ºA÷î~Œ.L݈;tµSK9âI×_N=b„-<[wß#fÆЉW_Oÿ†P-4Úˆö@¾Î6òu¦×~ÚB´­p㠔λÇ|êH?èßcŽÑ…©q‡Ž«´”­œt½/ô×­DØÂ³­poeNÜ8ùׯIÜœÁ…‰a_ñ: ÷^Ü©Co¨{/.F¦nÄ}»Î?÷Ïw©?Þ¥i˳Ïü. ÏuÙÿ-F[?ìaP›LÆça*ñþ‰¯j*1&®'{ààJkÚüÄÍ©5m‚ ׃>9Êæ´ù©¯ÑN>£ U·íÈù ˆNº>ðWEØÂ³õ}ñœ°·¸üÄŸî×k¤þF¢·R³sÿàçhÛÍ´ðh+Ü;vÚý¢¦ÝÏ^k|ÓÏ•ñïßõf¡ S·š"¬곫ÛãÏo±°uaêúXô,Ôaoí§B¯w/ã¨u]jÔláÙFÄË"XæþxÆŸÝË@ß Ñ…ª[qÙÉ•TØÇ[´q+žl!ÚFÀ}ƒúP§œR¿îuÚH§8©]®Z‘¢ Sׇ:‡>«Ï®îyÌùSYT]˜ºÑñ ’jd² Z>[¯ °…gë_úëÔB3õ.§´•Um‰jù]ˆ.L]ïú¦>{Ùó^~Ó…¼Ñœ ºW·mÚ·Çù´ðèŸòòØ;ÿ§¦n½üÛã©ÐnKMЍƒ\€]Æü†mDü¸ˆ¡Þݪ;ØêÕü§ ´•©S[¢þzFèÂÔî×õ¼H÷Ëo ¶x>4Ðq¹ëø´ðh£»]þO)LÝxù÷kwKútQ*ô'ü½.ùч«}¨Ç_P¸¶m=äk.pý—ŠŸ6ÒXFµ)ª[Ã!º0u#êG΂XD è[Ü¥|Zx´ìZÁµÜD{ÚH3Qó “Ú«„èÂÔ­¨£k,¸Ž 6ÐZüõ¶ðl=Þ[_¹Å½}M›iýLsûš–O 6‚}ì83¥w{ü{hâ)>-láÙF¼W4‘âO\ex;ý‰«[x¶ï \Ý7ÜP˜màÍœ;õ½W÷ØCtaêFÔ÷•] x;ýu ¶ðl5ÞC×ñfžöH~}pÚ1•\˜¸š8Þ¯ gd—SA?ßž˜§Ã‚¶=¢©w¦ð´ŸÐ)Œ°…gñÆj¤ZkiRawÆ¢¸½(Fª®¯èûõrÔŸu n*ô'ü=)–íy¾Ú‡züuº` ѶZ:šDqçÃO»: ¹³á|YX²éËTœ”ÛL… Œ@îœl„-<[÷å†MF¦-½»ÏâÐßÿŠ—d­ƒ¹*üzÊ—ÍÏߥ®6Ö‘. K6~Åñ£j†·{‘qós+Í»¸0q}®3ÌØÄÞq÷åÅÞÈE›© Q¬µÔ4€m¼=KÏ®®J…=*=ࢰZx´íË „‘óN\%Ýizº,4Ùˆ3?á »ö6¤éé²°d=Òc‡Í¡wľìa¡&S×[ž;'J—…&¿á‘äÍÝS!÷ÓßO¨]Q2¿½ä×+JÔ Û\ˆ¸z¥…×®—ÿ¸ºíòk¢«RŽ;ÛÕ~ÄŸá¦ËÂ’Õë,†ó3ÌŸQˆ¸ñÆ“Pé®÷$þ¤]–l…ùµè¥¥³S¡›×œ·§âCt¡êúòt<¾ÕÇ›´¦BF^ËM{çÕZ.DÜÑp\½ü]Í¥ûî–9nÆN…®ï–5àH\ˆ¸Ñwí;8ð'ü³]’ýé~º,,Ù˜F䛥˜ïNùØwp½LÝ€¾˜ƒÚ¼Õ…vÖæã¯G±LŒ?;ŸåúØãOÏói¡ÑF+™>¶Bx úŒwjónOÏóiáÑúÜgš&n "2З,ÖQ©™“\ˆ¸>÷qག\âuù5ѲCÇUé©Ð.Ç~ï¿…ˆë#òù-#æ/*DÜèkçm.øýñ©Ð ãøåÑk÷×4oûeÚ˜Ë6oûñiáÑF;YFzî4ø ×¶'}láÙFÀWx ç SîO'O´ Ó°‘–åêD¥a'O 6ÚÈîÃøó²™FAÑôá2"nLÝp|Ôž\m„ÏK[É“+!âúüçüh3,BÄõWh΋`fPSݬ?õ‹Ûþ­¤û¶p8„Ç%½ã@Çí˃£«6<ë– ˆ¸?þìþÙß,I…ÄÇ_ž‹bŸ1'‹L>ëI&·ý´…h¯çÄÝUOïp}䯠ËÂ’0Ïà~£?œid¸œ´±Xu.D\Ÿ¹9ðY{ò2q ËDÏs7fn3ºÝƒ‡Eˆ¸ñ -EXxuÈ™îÔÌÒJä\˜¸rø÷ìД{*ðú¨a¯¶Ê$îÛFÀ× œºMÚ±èË“ìXøåÑá•2œO´ÿʼ¡+Ç7§R¡1oÂÊ´mR‹¤~Gßg`ò(ãñþoÓ¿é'2ÿ6}w3&®ïp.t–¬¡0%Ëõ)¢¿2…O Ö{¬¥çÌþôo¦‘EKK|\öˆÄ…ˆë[® @ð\~Îkm8©¨3úsOûD^{Ajˆ.Tý£Ë*žšÊ*Ÿý®¯(–Þ®†Û£q£ïÐ=N|["80eñï§ÀvC=à}Û øŠNµÔ+²>¾z˜ ˜jáøëÑG8ïx¤Ú l¿|Æö R|™Fb¢µ•Û›‘¸qc€†ñU[Ùê×F,ôr’TÐꬹ¹† 6µòŒ7a—Cˆ¸ÑÇ.ÇuJÄù¦Â6*°Üö#Тm5t»Ý?žün4•Ý Ç“û©À1 ¶~[ Š^ |ß6ŽnÌ:¾ˆ›Þq`öƒÛ—‡×œð®A*p â°ýzðãûMúÜí 2}L¬¾þší' l!ÚFæmç' S_»q^º3&®çÖžŸ×"®wˆ+\xä/2ÎvgÄܯ?BuaêVÔ7r¦942_QwjÔ]½\ˆ¸¾$tàZ6èãœWXt‡ãBĆ8ÀûËp>80­ðïà¶ÿøÏ}Ûø8¡3Pü“ީСÇ/§là4s*p æþ-•>ˆÖp7AÆ­âÎí1¼Py£µTÞ¤¿î”ñj†"paâz:d…סxÁƒq«¹ …=þXÙ†&t°þÕ…©QßàM88ÏŸ è×ý¸ oð ϶o©»Á…O…¼¡8þztø!<Õš ¼ó†]› >Œ5¨¢òíRíTEqþË •ׇ£m#ïØ"®¿§¼×°¦Â†ºtX„êÂÔö2¢éÿÁÆû¶ÑZà…þøôŽÍ·/Žn-àITà@ŸÛ¯‡¯éÀÓ.©À‡í˃ƒ?gË…1Ûå@Y­;ÇùG,/TÞxI».¹¹t#×=Ví]šlÅyaפÂ6 pÚk l!ÚÆ¨ Ÿ,Á7Ÿ…ˆMÝîo8ämh¦ëP]˜ºÑ^64Ç=¡Å!³Ö_4;wjCW7Ï6ôºVþ÷è;\ÞpïWÆ¡qç±¼Py½ÑìCuRqc›{û0ð÷nýª S¯ÆZÑ¡„ýë Õ^‹+AoÃõZ”½ı(DÜj.ôóÈ©°‘. á´sˆ.L݈úøŠ:©Ò-v?*ë­S^Ç«ü4^¨Óe¡Éú¤kŸÐMÿÍ÷m£‰ÌÕ©è-ôÌ[ƒÐ-ô^¨¼{ø¨BÃí]û%RûaqþË •·"?ÓKRçì+·x!&n¾cV_¦Ioïh"Ã_}åפB‡fêþú…}C÷ÑðMc!âÆ˜z\ïÁ‹0u£±ÃEpc*lhÒëP]˜ºÑbvtÐïÄ}[m-c×U—7ŠNšÇø‹‚x¡òFì{tÇnSŸ]ëÚOúaqþË •7"ßX0«%“zôÆþzô±:?m¯ 9uhhrWüèüŠ!âj÷þƒW×cíµ/Ýhìp} \ј Ta½Œ:W/£~K7ZÌ„æµ_T½>‡`­eJ1RÁCCª¿$ˆ*oÅþºë˜§Ýýx¬ò¾,4Ù 5ºçЩÍDExçÑÁ?by¡òFä7t꥕è‘U‡}yp|Ã×]UrêÐÀ]Uò££QÑ!âÆ8ºU×`íõ0Ýjêè8í¾\ì´¡Ù ¬—QçêeÔoéFÔ¯ŸSbVMŽ}G?w$<[H_¿wàF™ÐÉC³"™P/TÞˆ=|˜?8™ ªqþË •7"?ålšV(tâdzSË„háÑêA?öqÑ®ílþæ?ži®XsÅÇï—lÆùßO?¬.^²mT~»íG -DÛjßðÖ ¿¶éÔ‘™‘¿¶iì'°Wtì™ ×ç£ýoÞù«²(ºÑbàrž ­ÏN… µFX„êÂÔ¨ÏxNÝ](|ê¹rÂüUý…Â1º0uãMÁ¼·ÿO‚m´—úÅ 7ʳNšïú˳‚x¡òFìáCIø¹òTàÐ|ç±¼Py+ò3·ö6òë]½ ¿¹^Çs£‚õäÞqý:]¿QÁÄ •7šËöüQ™_æL…mµôöoŠÆèBÕ°ïpõ¿¼ìÔ¡Ù¯»¼ìGGë4ñ² !âÆLf‡ëü…qÝj1hõûŠéÓ†Z£ûk 1zõ[ºõ¡^¹Ö^6|êмÝ]6£ S×ßÔ¬ëõ=U'`÷m£½ xÕGC1bæ¡™RC1b /TÞŠ=ZŠ oZ«CjÆ¡Y;Î?by¡òFäëuwwŠŸ3MŠŸcx¡òFì'¸š¢¡.1ëМÆ_—8 wÿ:ÊL„ˆãÓÏ **ºÕbè7§Â†Z£û^ñ½Œú-݈z½äñF½yÖ¡Ù¬?BuaêÆ›º€{5þÛÿ ¶Ñ^ê7 Ý)­Ì<2d·”VÆðBåØÃg"ýŸ8qè‡ÅùG,/TÞŠ<¾-¡ÛzÕ|桹Î?by¡òFìw¼Â_g™uhN㯳;|¿ß_gÉÐõ¸pÅ¢6ú©_î8mè7…õG¨.L݈z½\ñFzÖ¡9¿ =D¦®ÏÇÆò›f¤«nÃFS©_ñt§ø4óÐd¦¡ø4†*oÄ>Šß}‘ úaqþË •·"ÿêHõœ©°zíu¨¶m#àõšÅ;§ 2ÍNÄðBåØÏø~üä®éñÊņšÎ±~ÇÙšN†nÅÝÕvÝè´¡ßÔý}£½Œú-݈ú¥2’rÒ8òs¸î¿núG ®Æš[ç^Æ™«7œ.Ñ˨ßÒ¸oðN|K êˆ×,¶Ô ÆðBå­Ø£;ñþ¯íœ8ôÃâü#–*oD~¯æLntfÝj6~ýòìxAC½~æ¡dC½~ /T^o7S‡Wøë ³þú©^£w£˜¢[G‹Ñ´!Pýdãi#?*®—açêeØoéFÔë•h7ʯ³Mlüå×!º0u#îõ«ÂîéMxZK‘Àß(dfèFäá³¼½ŸàMaÿˆå…Ê[‘Ç·´7Ip桉Î?by¡òFìg|KÛ_ì–uèõ»Møy-%ÁÞˆ<\ð§Â†æ°þÕ…©Q¯×EÝ(Î:47ð‡èÂÔ¸×/âºS26áUQ-%c£¬–¡‘‡Ï ª›Ïê)Nšàü#–*¯G~®EÝ)PÍ<23h)Pá…ʱïñíJÑXÖ¡7Ö_46ã÷ĵ¨Rx+òà†¥ÿ«æ§ Í `½Œ;W/Ã~K·¢¾Q‹ÆR_›ô¼qþü®)«Ôí>m„º^Ïu£ 8ëÐ4Ì_¢ S7â~|1ªº\´½Vu&“õ'üýRÁóå|«áÈìï_Ðï¶ °…g[§Š¥Â>ÞPjy]šl„zÂ7ãê8g¼r®¥Žào”¹3t+òàV|Ëz2­0pþË •7"z´¥j<óÐ ç±¼Py#ö ¾í/,Ì:ôÆú güf¾–ªq oDþ-϶M懰òm!Ú!¿å¹ ñ<.¥U(œ³¤cæ8Íñç¿ø×ý7lÖçjct¡êFkÄ¿ÚPÖ=_¯æ«,`ýª S·â^L%?~Ôæ ã3=N±¶mýÎø9যôŽK°7úº¼ÓgxtZh´ÑºëWÎÝ)pñ:È–W€¿qp¡ë‘_:´ŠEßW§u‡Ö8ÿˆå…Ê[‘ǧ åôK×´”ÓÇðBåØ÷pKC•hÖ‘7¶¡JtÁïük)§§ðFäë5y7Êé—ëÍpÛ÷9[„êBÕÀ_’€f4ZRL¿-+ëÀä`Óæz7Ï·…g[‡KXZJD¼ ²¥Dào£3t#òøÍp g/üvµ†³!º0u#î+\DÑP¤˜u¨ÍÀú+îøh-%ÑÞˆ¼£žMŸ ëã*~OVË1€^¨¼ûëA2ÖÝA©Ðj×F?}*É·…gë_;xó³¥HqÅëðZŠþF94C7"ßñÕPþ¿â÷d5”ÿ‡èÂÔ¸Ö'Ëä²µX·žUlöåÁYÅf+~ WK)1…7Ú‹£~£¡|~Åïj)Ÿá…Ê뻇ëqÃûØuj컑_~;¦z¿ÿ|îÀu?-rìÏMï¡áãÂÄ69ä¶äÓ¯mÉ_R«Î6¶^›É¨+>-4ÚŠ6¼¥ÒR¨´âµ8-…J£´š¡‘wÜOä?J°:îøñ%Ñ…©ë÷ ®Ÿ¥ ¬òðû´õØÕ+`îÔäQx£±;¶VêPWü’––:Ô^¨¼û­ƒSú wndœepÒoܰ…g[ß._¿ô}þ9îë÷Ÿ¿öø[Tõó|«ÜJ><÷âǯ“¯¬oc©÷‡nã…èBÕ­¸ã[) u ¾ßR§°UóÖwʺyǽ>þºßÍq7Ž¿î7D¦nÄßÝk©ˆÚð[BZ*¢bx¡òF쯥ô¬{R¡ãÓ¤}ê\2ÀžmD¿e£¡gÃoªh¨Ç Ñ…©ëqß;¿DaÇÏì·”(ÄðBå­Ø£õ´Úû¤NÝ/ås_Sî~ûh Ï6âÝúÿö}ã¬õ»ê•O 6¢zo(Ùñƒã ¥ !º0u#îãöZ)}ùEÛ`gyz®ðfýˆ£…G±väÀñ-ÂTðÐøƒóX^¨¼ûÏ}MÚ;ª.²ôŒ‹Öéªk£[x¶ñœ¯ÀG‹Raã¾ÿDT€-<Ûˆ7~Ò²¡äcÇO+6ÜŒ¢ S·âþ±aÂ*WÉôñàû—ïÄ´—«ðiáÑj°§O^ú7©³ Aþ=ê]˜º÷œúãg*Ra¢û,H„-<Ûˆ÷X=vcãä¡ÖâßÀâ…ʱÇO>ùOƒœ:0åÒ¦êY[x¶ñ™^¤– üúšÒÊëBpaâFÐßn1*l ktBˆ°…gñÆ}øKáOx=µÁH-„°…gëïÑñÙ0ŸÞîçí˜ùòZh´ë “G5}3j› 'ÿ”¿6“ßÞöoöøø#"nD}s,x­q*ìúëã/‘ް…gñÆKÒÝ•º¯ÿ–{§õ²êÒ“O 6¢½ »{î âi}¡;ƒa Ï6â½Â9„qPûpmÏóäë=áޫݬ¶ë‚ 7¢¾©¼¶56кkr#láÙV¼~ak*tý~¬5¹!¸0q=ꃣöÜ]zêÀ(¤¶E5™` Ï6"Þ_"κ}(úþ¾ë‘í}¼Ú‡züµ™ØB´_J|IÙæTØÀÀïÏ’ØÂ³­xOð„EMÚ®þÉÃþ¤Î)´mý\ˆ¸õLâEé°¶¶ðl#Þxy¹¿ØùÔ!H­TSµ¶ðl#âëßL¨ÿö[.‡<åAyÉòþ\¹ýûaôaóÈM,êÜó´÷åjjþ j´ù¶mõ¾jx¹t»ü”+ ÞÖÒðvÃØ÷IsóÖR.LÜz>6®h[KÙæ°}yn<‰­^ôñ;h¦‚÷MòKü‰ ·ZË«ä–tçûGÈ¥¾ù”÷ýMþ5Þx=ÉòG°›eõÎìjËç¾…[Ž&>ýÛ¾÷m£uoè |#60ët#‰°…gëñóµg#¤œ Hý«*ÕÈøÒuWü`?¡¶ï\˜¸>s车«íðøü Õ¢m4ÄËf ëPPzÇ«ÊÒ©9Iuo–O ®E›Y5QÄúù̵҃ 6¢<€;² õã õ¶ðl#Þ×N¤² Q/õ–=bûšK÷V2þ¶fÐ[w.D܈ú„îÈÂ'®Raoû¤X„-<ÛŠ÷t”ÿ2?p— Ý̹õG¨.TÝ<~(ÒdìÔá^ˆÔc¶ðl+âôÒ TØÕaß_ÐD—…%‘¾ú#•§¤Â†|YM€-<ÛŠ÷OU6uª¢7îƒüYMèí;"®/½§n9†ÎI:—ÌçbÉÄô3@ŒÃ¿ÁÜBt¡êzƒœÐ#‹øa¨TØ@çâ?Ä` ϶âM/"I…]&ü¥/tYX²éÜ^k(ÀÈ60DÀö#ОmÅÞœ:uhÓ÷ˆm®-ݪŽ>zûÀ…ˆQGÏ'â§ÎRaoÿ´\€-<ÛŠ÷ÇÒ„W)‘ñNÍ´·×IðiáÑF¸7övfz§«ÿè-lEMXûw_§ Müúw_láÙF¼¯·&V†Ê^*õ–½£i_½ÈEoݸq=êsw¹ƒr™O*éñïÝüè‡üà{a¯Oû³òh Ñ6â}"¨öWÚTSßkÌòðl$u·‘O 6BžpÆ®¦Â® 'nláÙV¼é;¥©°k¯MÃþ.]–lDúX±Ró¥ï¬#?ÿˆå…Ë¡¿|дQš xü¼¶ðl+ÞyGm×:ñ<'\óŒ3O~–ýw0ì–~¹­ëûoé¶¶m+àðf̤Þ8êùniô:SÖûò\ˆ¸õa™XÆ0¯åëI¬bˆÀ…‰[Aï¹{Ó©ë³Zÿ†:Ÿm„½©? Ÿ ˜ÓúOðØÂ³­xÓKRaWçµþº,,Yô‚ÜoØ+^Ð}ц½â[x¶ï‰»ëš ¹Þýù·Šù´Ðèj¨¡©à¤M'µYÀ›–¾×&TøGÄ™øGÌoàFÔÙ¹¶ô.÷“š×ÌöÒ«›ê}€-<[¯‚ÂmíKMw]~É œôÀw¤Â&þ»láÙÖ›³°‹DRaW'°ü“…%ë'j—\ÖÂ|m„ˆmd}NM¨g%SOêjõÆ!Ï[ˆ¶q´äÌ_Œ³ 7:4ãØÂ³­xã%gêM“ÑÆÁ­~R'VF#çãBĨoh·Òk¯Z-²làÛ Ó—ÇÆ*Mý•DY®ÏcýµD|Zh´ÕB°íhÇéèTØÕ>¶åPw€-<ÛŠ÷NN”¦‚Ff(³6ýQwê"p!âÆZ ÇíÉËœRùs2ËÚʯN”ýÅxt¹ü%›ecr¿¯ôŸQˆ¸þäë°°GJ!Úz_µ¢—#4”*­hYNC©R€-<Ûˆ7vÍEC¡R–«£NC¥Ÿ] 5´QԮ{EosèÕs$øGÄ™øGÌoàFÔÁ{(‡ÜSa“6Ø~Ú³­xƒëÿ¶T¦‘sÓ†c5É ×'›\û(ÀÇÁëòçdVË•^{ü5~t¹ü%›eëÅyÕÃóÊASÁ[C½SÌà —·‚?±‹Sa¯P{qe€-DÛX Ìô>Kx¶ÑPæcè$·I…=è%~^úG ¶¢½Ð7ÓSëî·_¾LômÁTàÀƒûwê×õãH-±þ6ëº7p£ü6À¢m4rô’¥†ŠÐ­~l¨ °…g[ñž¸µ•©ëɘ~ÄÑB£«¡†Ro_n}Kyè ôV¨¡S³ú"ÿˆù ÜŠú±¿FüôW*l½³ºñɲ[ˆ¶ðÜ`óog˜H ½6Øë=x.DÜÈyà¸:ySwÕ·nfO …gëkª­Cw”ð ×_ ­‡§ËðNo*p ä°ýzðνÁ;„©À÷o"oüCåsW'Xþ£tYX²Ñ¶‡£ Šzÿc*ôë¸F¼»2Dªn½á¯¡è|CoÊk(:°…g[ñ†. j(9Ïr}…Ó8Zht5ÔȺj~[@¼­«ô½’pP? ðDœ‰ÄünD}¦ù Å™FfW“6Ö«å¸qcF;oà ȸâ¾m´”®í‚7“SۯؗI<¸Ÿz[ÑOþ³Ù®lþ“tYX²Ñ¶ÁÛ [ª·7°´µ¥z;ÀžmÄ{Ç*ôüžY®gþj_>-4ºjhZÕ«Ó*½A¯¯Ô|àgâ1¿ëQß»ûAý2™F&'Z E?X ×§U{_Ù²÷gÄ„g-e@g'x¾:xýÁqûòàôêðTصñ¡¡¦. K6šÈx©¢ûšQj¾~=ÓÏÆ7~Ïã5ß¿` ѮƛºçPFx%aûõààõ•-uá;X4ÛR` Ï6 ¿R1öó¥ÿrq÷úJº,4¹êêŠÁ_±åúTÍ_²Í§ËP·ÓV¨xÅ Þ:écûÁónýØ>¼àBĨÏ3öƒjÝ”¾Õid<Ó²kú¥¸q#âçç<ÿæUEõ̘gl¹ÆwÌÿ™; Ûôo2úîå5;ù2*¸áG,,ØX—-h‚ÔÜø¾m´Žëå´¬³é]?ºØßÔ7÷àJˆ.TÝ ü?“:üèKâƒ:ñ]!Ôâ³\ˆ¸õ‰¾Ÿ– XóÀöëÁùÛ©°«KzX~„ÉÂ’&RÛ$¹Q‚»×6n”àØB´Õ€Ï]­®²ùXÖIwV™’DâÂÄ­ƒåî©“zرÓ&ÊÚÞT.D\Î]–,¸¨l£¥`7UûKMO¹Þݵ¦´Ðh+Ôp™6¼)• ˜›ÀöëÁÑ+kýÕš§]çݵš|YX²ÑDfhj¡…éG-4Ú 5º‰Œ§ÂSÓpؾ<8üJ®Z Ô{ mݰ}ypzÝU*ìç‹33«Åø²Ðd£qïàáÿ¶C¦‘÷FËZ©¼Cp!âzć\?lê,\]60 ÇíG -<ÛŠwýKCk5dÆÍb/þˆÄ…‰[AG‹ ೩°¡U¬?BuaêúŠm¸ä"íUÕ¤=¹ºÕvß6ZËøÊÖL_[b…ü—ìŸöÑ•oü‰ ·ÚÊÈž¿ Ѷ T'ÑP9€W6TFòi¡ÑF¨§×Vå¼w*äã»1ß~ÅæCê´ðh+ÖØù†µ¾”pÔúnõÜt.D܈ø Î:[J3®/aïÔþFàBĘ/ûTÄê߬óˆöÚß[ˆ¶ò Zp.z ¬zûæ‰Wß!þˆÄ…ˆ[1¯×`œÓ|uóDï[–ëá¯K7¿þÕ…©[q‡Sµð~*p U Û¯‡ ‹á³l©°¡ÆëP]˜º±ÚÐò4m-®^YH°f]‚ÚR<`׉¶Tói¡Ñz¨Gð:Ά¶¾ÔrÔ6ïÕû$Bp!âVÄÁÓg-•ׯOn[*¯#p!âFÌ{¬¨iéÔmÕ‹ÎO˜iáø#"nż^Žqmþz÷¬Có,½{ˆ.L݈{Þl:/xç080G„í˃Ó? jŒ°þÕ…©Í娓6õöƒY7›zûAƒñ’¶ç ðQ4áÙFÌ¡+;[j™GìòË–bf>-4Z_S}=Þ~…¢í¼ù²a/h„ïÕµ¡º ·"¾ÑkÈSS\DâBĘUÞ“V ×zÙè wêÙ|Ýh-<Ú5º R¯éU¿¨m`-Û@[x¶ïjmÖßÔÍ´#ëÐ:´#D¦nÅ}¢oÚ¦Ö@°}yptÖ©•K[/(\›åÿºxŒ.LÝh.G‘:´òŸ©É:4IôŸ©/¹a»5vZkÔ·mcb¾×“ íg(ºÞ`&ì2Ì–Š ¿RrÕ~Pu""nD¼ç—g§¦· uå¸q#æùâÊútQrušq`Þ…ãH\ˆ¸s¼²Â_ZžuhÖå/-Ñ…©[q‡++àýÄTàÀ8 Û¯‡ëÖÕbý½Ü…R›uÁú#T¦n4—±:¿h?t“ñg3ì_6¶º‰À…‰ëSÆi7ˆ®l¼oeþ( åâfüÙο԰ß)ÃåÓB£hc7’¶ì®Lø½žÚ¦Ð¬¿˜¸q+âXEKSnÆ«/OSn.D܈ù ¦rûN}r} º‚9QþˆÄ…ˆ[1Ç+Züe¬Y‡æ·þ2Ö]˜ºwø:[|;180ðÃöåÁÑY-Sl¼£\‚ëP]˜ºÑ\v|kÁ8!ëÇw1Նà !º0ucz¾ƒ{ — Þ·õö2”µ¦¯Mt[Êqù´Ðh#Ú=VaÑTŠ›q`ÊÕPŠ 7b>âÛÐþÚʬCý­¿¶2D¦^;óòµ2êæoêÖ˨sõ2ê÷t+ì}—+80ÁöåÁÑÝø¼V*lhÎë¯ö2áÙVX¦n4 ˆóìüæë7ã+s.ÿA…]˜º>_œgtåå¿áì¾m´ð†ä¥W§GÆk Þ3ìÁ‘¸q+æüêÖTàÕÙ.N?âh¡ÑF´?÷³jrçÏóñ¬š\>-<ÚöŠU¶4åfXV4TåFàBÄ­˜×§ý퇞²žwAírBX„êBÕÀopyKC…kÖ‘™\C…kˆ.L½wæmxeÔ¡Õ¬—QçêeÔïéVØáª"xO780Ç…í׃£•¿ œ/·{ÔúXµ—}âëÂÔæT-Ÿë-ÿq‘¬C«9ÿq‘]˜º¾]:´øGÛÒ¯ø»oëíeéÁ…¨ºÐßÒœ•:ìG -<ÛŠ7XÈÕR„žñêz§q´Ðh#ÚZV„q§–8þˆÄ…ˆ[1¯ÏBÛOBeZ\Àú#Tªn~„k‹ ¹—z¹òBî]˜ºw¸î·Ó†~½¹Op™ ®?BuaêFÔg|ÛUÛÐ1FÒ/sõG¨.LݘèÎhÿÒ¼û¶Ñ^Ð;~{5h¼¦èM¹ü‰ ·bίN^™66Õtói¡ÑF´W°,ª¥ž;ãõŸ²¥ž;"nÄ|‡Ë¢ t¼ µ¡@7D¦nÅ)´D·þ½ÁlCóX„êÂÔõ¨¯^梥.õ=ëмÖ¡º0u}εöh)ŠZ¥®îÛF{é/[#ßì²Èös67~ݹñ%‹\˜¸s°´hP‡;½k\ÑÛ~ø#"nÅœ_Ö ¼:cl(GçÓB£h¯ëƒréÝþesUÔèœ}á~•óðõ.…- M6B TÍž{Û‹»þ<ëæt­?Bu¡êVàñ\®:æë­|Âó¡°þzv¸p>Ä• šßÂú#T¦n´˜y:ܦû!2ý¬üéõ¡³é‚ˆ[x¶n4ÙÒû+¸W°T¹©‚;"nůmñŸAË:´„óŸA Ñ…©ËÏÝàòßøwß6ÚËòqk&«=ÓGÀ·o³®æt>-<Új$N!LÝh(è’YÍÊ3t݉Û@[x¶o¬ªé¼BÆ«+Ï†Ó |Zh´íK±ìüåïò;ü¿ÿ|®‹M¦é_?½à!ÏÏFò­;qÓ8Zx´ë×,œVjž ZtúËäCt¡êzà·n¨þ ´¼^Éšuhøõ˳£s øk*lhÑ ëP]˜ºÕbV Çmº±%ÓÕ…gË•-¶ðl#ÜàíÛM•æx‡uS©y.DÜŠ9¾¯íë­¬#‹Î†£r!º0u+îóE_¿îQô9÷”'ýñ³Ž¿?èÏòûÿ¨Ó®Ì?åïëÚ_~ÿyÁöøêÄ+&®/A·- ÑÆhýöÓû¶ñÜC}/Á=»¦n4uô‚ÿAÝé3&/è5ùü‰ ·bÎ?’ ¼ºÅéG-4Úˆö —ø5øox{Cˆ.L½wj NöqÐ6Í3=õoô=þ€>€Òé2à7h+Üè7i EÝZÙ.÷ÌÔ^!X„êÂÔ¨/@·Õt#Ñå¶s)‡Ó8Zh´jð,hË =éÐr$"nÅ|çžþ#‰Y‡qþ#‰!º0u#î+¼¼m¸¿:ëOøëœÿ´§7{¸|C_ ñmáÙVÄ_~ήm*èaÑ˨ÇüÜcaïOÛØf °…h[ñ~¥*‡áËO™GŠ5Ÿֲ̽ÿü”Ã`§Wòvðð7*¼;¹Kœ¦7|8’7¿Âhß|\˜øGÈ[â2kz9 ]~Ï Ì#ècœ>ÿDOÆ9ðG$.DÜz‡Ðb­NÉ©g×¶ËçvyËqA>]Æ»6¢½]Ö³_§B¿9ŒgN8'?缞íþ ?ÿÅÏ@¡wY‡=öÚÂpÎ/æò&ÿš¯lYh²‘PÍMaöTÂÄõV²ç½àz?¨­ê‘Ì8Лàø#"nÅüµ §ÉL…eÉ`ýª S7â=ô/5ÛÐo ëP]˜ºõ âšîËt=}ƒÛ@[x¶nt§Î)Œ¾=xØr3"nÅ?ߤålõ™mÖ¡Ô ¬?BuaêF܇Õ>ƒ‘u }óvTàšRS¬¶ðl#â‡yRWC8ýˆ£…F[цOe6œmÜñãM gCtaêFÜáCBêÉua¿\ÈTûMaýª S·¢~éÍIŸyOþt¿W‚ezÚ®ô¡>ÿ€Þ·ÐiáÑÕp×ú­–«Ò2]›ß6Ý•`—á¾a[áÞª=Öy!¿;ŸçÔ\yÖóLhçèP]¨ºxôc5-§ívô“/-Çí"p!âFÌ7x^îÿ(@¾Š­>½Ýµ©³¾¥ÓB£­hä °TГÒFn”­Ñe¡ÉF¤CeçrV^éÁÞ'ôµiøÞeˆ.L]ûÒ_1h9ÌsâÕN?âh¡ÑV´ñ d÷ ÁS‡–nî‚1º0u+î¸ì„ï½H… ý¦°þÕ…©QÇÂûoÒËr}5á¿I/€m…º¯¾>çLß}ZýÔ¡u„û´zŒ.TÝ <ºí?5uâÀJÂj*"nÄ|Äkbµ‘ºõyêõõÄïÃïKmÝa Ï6">ÕS,çtÓF!}š8Á‹Zÿ7ctaêFÜÎ ¤¯Îsýçh¡ÑV´ñê!mKU-]=uh† ëP]˜º÷­ÒÞ õ»¨§ ý¦°þÕ…©[QŸ é¹ÿ⮓®Ïtý7wEØÂ³­pïàDÑ_âÀtË_‚ ¯Æœ{hº :2ôû|ÇèeØoéFÜ7¼zHë¸Ô=ÐS&º½6‰ÖE|[x¶ñþòÕVÉv*pàõ›‡àBĘTU¦¯Î Õ ´Ðh+ÚxÅ–»ÈüÔ¡‘Â]d£ S7â>`Å,›:ÝÒ ¶Nº>ÝÂíG -<Û÷ˆïƒôZSÑ{Ÿ?$^§Ÿ úWÍßø8%Ðåçž®øÁB݆‹À…‰!?Jˆ_üK=i•nù& MV/¦Y†|í¸©ÝøïÚëùCKÙßþòã?ü7¬ÿ+$ºPu«òË5RW'Ÿ e&|Zh´m|+Ø_2˜uh¶â/ Ñ…©qñ\–¿@6ëÐ\È_ ¢ S7â>Á;6þëO˜-Ú\K] ØÂ³ˆço«¯GL…­ïùíG -<Ûˆ÷‚Œ ‡ë³\_Öâô#Žm„: ` xuÐo(tàÓB£«Ñ†¦*þú©ÁQBᯟ ÑË ßÒ¸ïxîprW xb¥¡Z0D¦®ÇO8i¶žWEÓ6êÕ1ꤜ. K6"o0$^¥“ êÝWEØÂ³­xóKaRWG †>-4Úˆö±¿YNêS«óïL×'W¸ý´…gážð¼¿~'ëÐã¯ß Ñ…©qÏ_ƒ!Þ¼ è ÝFDØÂ³xc—ÿ´ØÁKtZNìØÂ³p¯3<TëÔÕOÖÙÕ¦4}m` Ï6"¾MæöÏ’_#qà¸å”;õµl¿%¢m„{DZþâ¬Cc¿x'D¦®Ç}êÁü,~T7v}üi8b` Ï6â•¿uêð£ÎR&ìÚ…–Rz>-4Ú õ™Z^L_üdxq´É•¾ø °…gŸö¦I*l=kpc³'ÀžmÅÏÍú·ï³ <þíû]˜ºw|%Ûi®.¼þ~.Ú࣯~ø´Ðh+Úè,¿×ÞNµTbª}cÓo?máÙF¼±ó-g&ðäyË¡…[x¶îý˜ónN­·’æ;«háÑz°çÚâ{=sm_ãÆ^O€-<»oîÎwqh öïÚ‡èeÔoéFÜû€3Š©ÐÑ^}ôµf€-<ÛŠø1þ†Mÿ§LÕÅOÆÇ¿ô¾ý´…h[GW²ð¡ÐTØÀüÊ–5ÀžmÄ;Wþ-þHe*p ¥¸?ÕûcC{U-' fðŒ|Ë‘‚[x¶ÑNÆËȶ¯ÔË'Dº¼ö¤ö„núG ®FšÌúO=ÿý–ÕI¡vŠUÏIØeÄoØê÷¨ŸU”ÜÁXx´ÑPVt3>ìœ ˜YùiØÂ³xo=4±j8ÿéú¥áD€-<Û ÷+1K*îH…}MÔЊRl!ÚVÀwx&Ûk3Y}ÉsèÀŒpÒf„z¾o Ñ6B¾›=ÔÃë©Ð¯!ñà}ˆ.T]üó7ju{*èzŸØP”` Ï6Â݃¥ uWKícW7ê®láÙF¼_á®-!üÏÊsëI >-4ÚŠöhÏž¡öß$“ecä¶¶m+Üh…Ä¢½”jéìRûòß~Ú³xø©—<¥ŸõLŠÛ~ÚB´­ˆØÐÐPY˜íç»3Pë é²°d+Ò32éy.¾Oz>žúbç»U[¬õù¹þ÷ŸÏç^ŸÙŸñ÷ÿÖG†Úi§ü‰ 7~Ð,yi(Ÿ[Þ>˜cÍØ`ûh Ï6â½\: ˜µiÚž °…g[G àkRaoÿ²„[x¶ï½²vm¯XÌ´þb¶W,òiáÑz°W~å_*ìê,Â_¯H—…%[‘Þ¡™ÏÞ«3µeíÁ ú†Z¥µ7ºj•láÙÆo9à[Æþk² fZ+Ôš¶ðl#â3zC|Î;6ðöøÏ§ØÂ³­xÓKgRaWûXÁ]–lDzΨÎû¤Ž åS¿ìÝðW,¬µ¯Ü¨X°…g¿%|$¸á–t²¨=‰š)åÓB£­hœþ ,¬—>üüO© ¶m=àÛ19aøàx*l «òx°…gñîÁ´tÃ.n¶kZÃ.]–lEKKï›:—Oý²‡A˜Xs’õk!Öœ„èBÕ•¿áš Û{Üö#Тmí ýÅÛÛ¬¾¶Ëçÿ“9™ýûÏß1³ÿ·ý„¤û7XÍd1+¼ð# ¬W}oè`æß¿MmÚñÁLÿ%(Y¦ÇêÌDÍÿØÂ³­ˆ£Kmœ×o?Év½‡j¸þ$ÀžmÄ{ž‘YUCéC–Ÿ':û/ýªŸ~ÄÑB£­PWòôw*¶ZÊîN…B.LÜ:§?vuEâ¯O ËÂ’­HC[\K§ÞcóñÔ/=Øu¤I=×l¯óÛÊúìÆý¸0qãç\Ñ]EáÃVûºÍ‡[x¶ï ßUôßf“õú´jÕ¦ú]6¶ðl#âùr,âm0©°)l?máÙV¼ÙE2© µQ­½°‡ Öü_[QÊcR!×çÆþš>-4Ú5¿‚%vu¢æ¯»¡ËÂ’HÐ>ùÒ©wÊ|<õÅÁÙ¥ÿê¡ý3 }_„êBÕŸôz•ÏïÚá ¿ä—œ¹;¶+ÏñÉ']²þ„¿îy+tí¯vVŸAÕØB´OàY.üÊTØÀÌÁÕI€-<Ûˆ÷ïq$nýW*l`ìñ×­ØÂ³x/=·,r}á/[ãÓB£P…TÄl*è~úûµ…ðú†_Âz߀ ·"ŽîsùËù²]¸ù‹ùè²°d+ÒP=ÈÒ©÷ì|<õËÞáIϪMzôÙæÎFmî O5é´ðhã§ÜÑíDøŽƒTØÀÌÁ5C€-<[÷Úu+8ãq ž6к‹#láÙF¼{hûÖ_"xÊÕÞ_#@ 6B=¼—ÆÐnå̲µÎn¾–3¢m…ûºN ÔÁ¥ÂÎuÒ_n¤j¯ß‹°…h[_È)ØTÐȼxÒ&ÝÚÌ$"nEÜ1×뎵ªÆµûX,ðÊŽ3ÞýLòjŽháÑÆOI/oülk„‡áo¡¦ÀßÝ[Qküŧ]ÿ ýŶðl#Þ3ºC®ý–êe#§ ü–°ý´…g[ñæ×Ù¥þ”ߦíõ´ðh#Ü ´Sî¯ <åú2Ä]@ 6B½¾BM«„K…~]+ðŠøbt¡êVàwòîB*hdn¬]ƒ1k»"!¸ñjÄ™ˆeÈ«=–»l’/—Án–HoXQHß©ë§ò©_víª¿aÞ]xÚÀ”Í]a Ï6~Ë}¢Ú¥>:Ào3ˆÖÚ@¾,4ÙŠóFßÿL>è•Tnûh ÏÖÞwhÍ |çR*l “rßa Ï6â=@5 þŠÌS®OÝ%™´Ðh#Ôã+Ô´òÃTèÐÄØ]:£ U·ß4lûe­Ÿ-ñG$.D܈ø´€=–»rò´i•»r2žmÄ;gÙ€sB7uRÃ=l?máÙVÀ'vÉg*ìêì.TåËÂ’­HÓï[K… tSîkâ"láÙF¼±+—¾×²­äe¯Xù»"ó”ëC¼»$3€müŒVžÐ­Ï42Øh—¼Ìj¾>"nD|Gw[ݵ“§ Ìܵ“¶ðl=ÞC7]ª{¾4ñö-O{ôꇳÊv+ñþ‰Û¸0ñzÌÞf(ƒÌ×üû#vò¶ð œgú „ìäsCy0]–lDºG‹7àÀRaCƒûæ²[x¶oìÔH?©óLݪÛçíåÇ·’UíõǸ0qãͺV‹Óz/ä·_ó&]†›H—Á¾A¡>rwÕ^Ð_=9 ©Rý$Ÿm…+iØ É42™ÚµI‰ºE ¯FœYýY†¼öâ4Ô¬Òå2ØÍ²é-Úð׫føýõª¶ðl+Þp1¼Ÿ“ X…ø7¢láÙFÀ°˜¿j-výåñ_a ϶âÐéÕ“àÝàËÞ°B•`–ëC¼¿LO 6~ÆœNùóô™ºÀ­Óº5S ·"ˆj(ŸÌvuþà/ž¤ËÂ’õHG²nV‡›öÏÅŸ¶™vpëP]¨z5ìÜCeàŸcšvMHû†½ ü=Ý ük Ï6šø]{ÔP•œåúäÍ_–̧…F[¡ÞÁ)ç¤M¯Ô~¶©l?m!ÚFÀg¬(§aË$ÓH_¢Ï;wÄzð½ û-½wfÍiõêᯔ¥Ëe´›e#Òp¢ÿf¶¡·Ç 3D¦nE¿Ù– üé~/Èô¶½ÑÛñä?@ÍsòiáÑF¸ó.ñ¨g*lýj? :Ÿ!#Ò£h6óiò?7J¿¯î…÷©RKØþ{ð¥Ã iüuÃY®O8ý…Ã|Zh´Þ´—~ÀhÿŽF¦‘æ§XÔ=\ˆx5âÐ8¬f"Ôîd©çÛüzu®^†ý–nÅ-ó×g»Úaù«ˆé²°d+Òhõ’ÿØT¶¡·Çp*D¦nD},_Vñ!?§öc÷åÅi/"¦ËB“õDòr¹¿€3cm´£D”š¹OÌaûòàXÍ…¿Ò7ËõɿԗO 6ÚÈ‚ÒoØlÈ4ÐüöNk"%þˆÄ…ˆW# þZßå­zÓžQùk}Cô2ì·ôjÜ™5³eÔkVC¥/].£Ý,‘^ÁŠ”†ãdÙFÞž†e!º0u+ê9¯™ ZßlÏÆòiáÑF°·‰¾˜ xüû˜ÏÿÏr“x³€ï+»Æ2¶12´×†ØB´õ€¯Ø··*C³\ŸrúKCù´Ðh#Ô=XáÏ~g™ÉöÚû®æ¿#p!âÕˆCspÕlÖ¡y¬¿j6D/Ã~K7â~TÍ1/†J…=<ññk*%ëûð¦ÇÍgÏ¿¡öã!ºPõjØÙl­}ϯ—açêeØoéFÔGøZ xÃ*8ð“ÂöåÁ«}ÀÚö¬çºRåü#Tª®ç™×©RàÏ© Ï6Z:zFirÑ®38Å…éG-<ÚöåNHkbî¯*Ìr}ê/+äÓB£P¯`©„#"ÓÈôVyu+""^841÷sfšÜú‹9Cô2ì·t#´¿ÑaÒž\-•È64Ë‚õG¨.LÝŠ:¾á1hÏ®O´ý˜¬,æ¯ÚPš¢ S·âþº%{ì¾­C³=“ç!wìÛ¿¾ûýþuÆ24'A·g“ù:C<»Ç©Äû'ž×¸ÿût>.Lüˆùÿ¾Å|ïé¶©ÀëÝn_ü˜ÌéKnˆþϲ¬—Ë%´SÄnýª U7ÖB{¥0Æ¿ R>ú [ï[¶«]ñ—f¹>õ×òi¡ÑF¨°vÅ¿G‘i¤·R÷ÉÔ]Š\ˆx5âÐôÜ_é™uh:ä¯ô Ñ˰ßÒ¸ÃU‚î³?™6»q/þˆÄ…‰[!Ç7BÔu…šÖÚ®‰ÄÊüÖ¡º0u#î¿…äMÅTàÀ<Ñ¿ºMôŒ¼ðl#à ´ÑßP—åêøÜPǧ…F¡^_5êœb§TÐzʹ½D‹O ¶‚ VUøå™Fú(u£FM•GàBÄ«Gf‡ •ŸYGä†ÊϽ û-݈{­î®ý¬r¦¡9Š?"qaâFÈw<ï/âÏ:4Ãòñ‡èÂÔ­¸ÓË)SawéOZ(]šl…-_Á7SqÿîçÞ{Y 'ƒîÛzÀ÷î8Q÷› û~Ù™NÍ‹“%ÏXöß’•å_o¬ò³m”h¸íG -DÛøðª)çFM=öú^J¶÷µ°÷§=êóñ[ˆ¶ï,§ðçÆ3tV›öÒ«Ùñ\ˆ¸q8_ÛPú™uhVë/ý Ñ…©q‡‹íü×ðdúMý_ºÑ…©[QÇsðþªþ¬C[Uˆ.L݈;½2½ÓÕé- ?¢`aÁV˜á xÛ080±õïwîse÷ÊŸužm|'ä£6ù4öNlaûh Ñ6¾aú {™F^m eÕÍ\ˆ¸qå‘ úAaýª S·¢Žïçû+˳M°ü•å!º0u5î[×µ_µ½€òÔÍ£jnýòì}+.80sqï!þØôôªðìÆòŠÉqCá0úÏy|*iíŽ9À?•4¿µÙýþûµ8mœâ…Ë«%±?~u}Û^ÏËÑ~`ª÷­El'n>{k[.LÜ :Z7侥洡áÚ}OMŒ.L݈úŒo»«dO®ÝU²1º0u+îðŽ%œ§O {î †­[Ð]Ew=8Á6N¯ KÝ)y´æj6:,,Øó^ÝÅi®ð9qhòVø„àÂÄõ©hÜÀ?v³®ïy2—æý˜uó¿Ÿ¹ÜøoÓa.L\oŒ}®€ ^„“ }ÔKÙüø#&^:±¸¼Œ94r¶!F/£~K·¢>±+[Ra»fÍ9¶m+àø®|ç­ >udöé¯ ŽÑ…©qïá­Ex#80uï¼üØèöœDžmOu»+D2½Dî‘\ˆ¸sô÷Ô^ õ‚ÓF~Pÿe÷1º0u+굋{›7ÑO‹Ü›è¶m#àŸŸ…áÕü:4¹kþbtaêVÜñ«A{v}º¸äZ”N«E™ò’î;ÖFèÓE¾-<[ßézJNx¶ÞR†ú–h{ À©Cï¿» F¦nÅýMá:´TØÐ ëP]˜ºõú¾âßo:ykŒNêÓaýª S7âŽoµ¨®Î¼èÕµÏF©—WÐB£õ±hÐmw Á6Z °ÿÜ^ž“õg#»‰£?Bu¡êFàçê¦ÎÍù¬C®s>D¦nÄÞuŸj=mh uŸkÑ…©Q_«½LsñÏåç°ß‘j®ý °…h[¿®u÷¯?çQ‹¶LyøÏµhñ!µÿŽyzÈkG•Ï:·wû©Á9Ý¢†Üžq¹ï„x=zuò¢}%H½"Âþ y³mD|{¾BÔëpSOú†®Û~ÚB´Õ[|·áz`äËoÙ|ûÆ)?û÷b?Þõ´ðh½uü]ÜTØÝ_mï™. M6BÝókÒ;Mgýå¸q+æèvœû4ëiC“Y÷yÖ]˜ºõKΉõ}¤TèOøû7h»<Ø/WûP¿ w,|[ˆ¶ò/ñw—ofZE¸Ë7#paâVЯ¹U{ý3kë#ê ¸ŽXµu„tº-D ¹½þÑ6oÔë7^^]Gh÷yª—oDØŸ!o¶ˆÏ4Ÿ´É§ÞÀó–꼦q´ðh+Ö»$vufë¯b¡ËB“P/ðþxC©Öˆ×Ç4”j…èÂÔ­¸£ûãp1e*lè7…õG¨.L݈úŠowøkA³í1û‹ACtaêFÜ7x¶â¾"ãÀ ¯]u¨^@ Ö£=õðvgCṏ́ט4Tß„èÂԸõþ#±Ù†~Sÿ¡Ø]˜ºõ€"¹ôŽC½¢¿¾/"nÅ|ü›üÿn­~I'äéÿ| CžþÛïµÃúoÑ Y2þûŸ|?Ý{Ðk߽ѿföÕ1”O ®†?ý—œO^Šú^åÔ:Šû#âí¶ñçþùöšTð½Ñ#Þ¹{'†.oÿ8$C=;œ ÜŒîœ{Žá…Ë¡_á‘Ú_²5U “nTlEàBÄ­˜£›sþó Ù†~Pÿ‰Ð]˜z5ê6\7ߦ’ácn´ä2Ü<¹ u»lÄyÃççþÚÛ¬CÓ\ímˆ.LÝŠ;žÐé´9£ºéŸu`î¥cS·üláÙzÄçO¥ûË,æúÎö2‹]˜ºwÇç%üEY‡Þ#IQˆ.L݈û4ÁºÿðsÖ7U=›¤naØÂ³«’Æðáá2Þ×EíÐs€]Æû†mÄ{Åéþmºߌjئ Ñ…©q‡¯oØ“žá¸¶¤#p!âVÌW¸7Ÿ´Þ\ݾÈ:Ð+NZ n^ØÂ³­ˆ£[€ðéÛTØ@¯è?4` ÏÖã½t¯ÞœR-Ÿ ùÈ{h7ýˆ£…G±Æ—Bþ½PGaŽ+4"nÄß mØö_ð ņmÿ]˜º÷ü9/≾TØ@è?‰` Ï6âuãþÒÐìý¥¡tYhr-ÎäMÄ"Ø×_æhˆ.TÝ þÓdvï¶ï;ð˜å7Ûåž­ïCòê›\˜¸öõØ`îÕ¼û0ç^+ïŒÏGÞ½ÿ·ÿ7vÝÏ­Ç|­Ýï¥q´ðh#ÚÕ}å;…1Ûõ¼Ä÷[jüú#Tª^ <ó~çoQÿÚ'Þ¸–šO‹w#­{ïЭÿF{¶É­£=ÀžmÄÛqË›¿ŒgÇ¿$ØPÆ¢ S·âŽoÿøbg˜ÜjË8ýv€-<ÛˆøÐe|³>€îù=ÊÙ÷=òÍÿºßd¦OW2~í¶nãH\˜¸ô\ Á§ÇSa+ Ø~=÷ôQ¶N«@Èö3"µþ€. K6ZÈT½ÄøF…MÖÍY³[„êBÕ?Šlʇg¾>å£ß°3£ûœþmü}F÷ ýÛø¶ðl#ÞðD¥á‚ôÈø°hs }FN§…F[ÑžÁSKKê ì+¸¶ÂíG -<Ûˆ7¿ú vuÐô×LÐeaÉj¤÷®G§kîäÓ®ÿŠþä[x¶ïa‚;î^븵‘òÔ>pÕºWm¤Œ°…g?.Y¦žéL®§–Û£FØB´ˆO=qøø\*pàÉaûõàü=üTØÕ.Ü]yÀ—…%MdA'î½ØÓºo÷^l„-<Ûˆ÷НÜ'Oè¾µT¸z>1žmD|›ŽÄæ¤mPUÏ'kyÍÓ6özÜö#ТmœÈ/80ê¸O':lxD¢mD|¯¬Ú÷`O[ï Û7a#l!ÚVÀ'´‰Ãç5SM¶ÿ¼ïÐĽ{ÿø´«“÷î1_–¬7‘/òwÌ80\jùLõÈ`-4ÚŠ6˜Äݥ®O‘ý‡#láÙê½,{vQîcüÚh&—Ý4Ê`*äáÙü&æ¶e-4ºjê®|m³¢µµž /#~ ·‚nþùë NX»oÑßûœ–ø7[ ¶oþ¦e*ìj_åÞjåËÂ’H¿–O”ï½Â¼ä3ǽZF0æ•ÂxŒ“c^)ìý¿á¿i8ßö/E!¸0qõ’‘½¯ßzÑ^xrêÏ'»ïµ÷nýª U·¿€}øäÝâ>m /„íG -<ÛèY.¹°ÚJí­`9¨~êõ…ɨmaªÇÔ#láÙVÄÁ›Fð³Þ©°Eûˆz„-<ÛX¬íè£ûr1†­7”¡ë¹u©ë wñI-4Ú5¿Œ#vígl(>¡ËÂ’H_>aÏ:ј ü¸`'éP]¨º÷ßyuŸ¯?u`¼TÇuf` ϶"~ üýëßíó÷̳¶ü{.ûu ó´ñÒm?m!ÚFÀ'ð8 ~!@*l`‚Û@[x¶ïyâü¤B®ôþ*%>-4ÚõQ“CL‚§‚î§¿ŸQÖQ«ÈYõ¾$"nE]sû+ò]]ùëÂè²°d#Ò[e£îF…R¶2ˆö ¥[ˆ¶p~ÝI*ìg3™©Õ2tYh²êœ®Ú|GŸ’ì#8—‚íG -DÛ 8Z Ÿ?O… Ì¥Üçæ#láÙV¼ñe¥û†ˆS–gÚìU½"ž­G|ì°"[–ë“L Ÿm„ºßɹÌTÐÈÜU«[ÕÞ;"nDü¸o‚x»v*hcšé¥q´ðh#Øcoo^4_ÐvÒUþÔzE[.LÜ 9¸»ÝP¨™íúе¡P3ÀžmÄ{B÷Zí¹õá½ÆÂ=A„-<Ûˆ÷gµ¯ì1ã:ð´=òiáÑ®pÓ ?žû®üzêÛ×ö f¹>aóW òi¡ÑFYr¶;42Ôê†Vu9 ·">3Xô¶ûTÐÀ\Ð{E-<Ú ö‘íYŸøú¬¾9fÃQ}3¬ÿ–ÿ†q3K 2=)«_~„ÉB“­HÓËSaWGX~=uí2Ú¿©ŽZ: ¯'ß®\¶¦­°ý´…g­dïéÛ}©À½ÖÎm?máÙzÀ§-y€/ÃI… ¼<þK|láÙz-éÔA'<ÎéÜ•gkùàîUX²Ñ®û‰[Ù˜ ¹:#n(ÇäÓB£P`i‰C!ÓÈp }ZfUS$¸q#â• ñºÀƒ6Æöö²@>-<Ú vm·ù ´^J/ Ì60•‚íG -<ÛŠ÷Dß{JL¥ü›f¶ðl#à3Zñ_L• xyüjØÂ³x/Ðþ{CY`–냼¿.O 6B½‚ûïþLq¦‘nJ; ±ê«›\ˆ¸q~Mc*ìNËÕµWbÒe¡ÉV¨_gú¿ í×Áf»36±o\¢ U7¾£³oEf¶‰¬¿"3À¢] 8÷Ô\òþY_;~yC³=îWû@ó_л¾]†üŽm…­2ñÁfX;ø‹`láÙV¼Wúne*p`íàßf °…g럚ϣOùÖ¾qyYs:lùë¯æŸÿý¿~Ô3(™î—¿óã¹ó ?uWü`?¡Æ;&þò–¸ôš^¦ÛÊßXÃÂ×.~ë?ñ¢ S×£¾vhU‹¿b8ÛÀ»ã¯°…gñîѪ|Ó580¹òïØÂ³€Ó+†SAk}a{•3l…;bܰËiä•™´¦§î3DàBĈ=qmb¯o6dynuÛÐ2 Ö¡º0u+êÇLâñÿTØ£6·¿qkŸmD{ËJí³]ï¦JíláÙV¼çÚÀÐ~ü-ãÏsì¾vYíÇß"paâFÐk·h·ŸoXíK´ÛO7°aaÁV˜×÷úB>'<ÇDÓs+|–;µ—ºq/|€-DÛ ÷‘CÙ{µ+»ÜQüïÿóü1ûÃÓp–˜þïkÄ?½·ñG$.Lüúÿ¾ýòÑRk¶©Vã陈«3m8L§…Fëí{ëêÓÌö#%Y‡Vhþ#%!ºPu+ðô£©°«ïÿ@ ]–lEzW˜þ3ËÙ†ViþSË!º0u#ê=XÙÖP žm`íÛ@[x¶ï ËÐh;zyr–ë£L?âh¡ÑF¨šÐó‡ô×(gÝwÜú#T¦nÅ}|ý¤œÓ^©°ûQ[±eyZ¯òÓã·y¡›~ÄÑ£X_ŽjÌ_è./rWw4ÁíY}òãÏzi[–çç¯øígtÓ8Zx´k¬4Ì6#Ëõ9²ÿpŸ­‡zïfxá? ‘uh1ï? ¢ S×Ç½ÛØsáÙV{Á Â6Ö2ÌÙvå¹7#Þ|\ˆ¸ñ›ü4œäÙ{¨›õãaÃB‚­(£gUí}TW:ÙFú؆cÝ!º0u#ê¾Aê?ÿšõãHÂn¯_ýç_Ct¡êVà'ëEj?<•áK‚uzŠ. M6â<½~Ʊû¾á0åz¹cñ:äNkû=÷ñóŸüëõ⟬?áïGKò«9wWûP¿ .Ól!ÚVÈ_U”»¡R!{%߆Ÿö ­ø´ðh#Ö—mLk<öoÈr}žé?àÀ§…F[¡®~ão9â?æð~÷²½ØñsÑ…©q¿${ÍŸTË=êU;œ¤ž{å¹7}q€ ¯Fœyd  y­Ãj8è@—Ë`7ËV¤_{Ñã¿´ ÛÐÂÁmAˆ.L݈ú:Á‹øDc*tháëP]¨ºxú ‚TØ×õ®}yn3Þ~(&Ãõ…ûT ]šl´­§¢¤úZM€-<ÛH‚o)vÚ‘‚m´”ËuY”ËæR!×Wk0ýˆ£…G+±^þý43¬*ÙyÆá%×§öÎC!´Ðèj¨{cÞÓxRí…_§õ¤“jAxñ[¸rRíW¿|ÇvB#:´8vž.‰Ò…©½ËeU/Yk{&Û÷dJ.D¼q湘2äÕE2,—ñæÉe°›e+Òì«TÐãðWtö±¡‘ñy|ßìñ'¾OƒpaâFÈü&!ç)Ø—­Œ§`£t¡êFàGøœ \Ù‘ Xý8KRbláÙFÀg¬:Ïyæá%ׇd硇Zh´êײêËpÙ|ÃÒŸl¤ÂZ¯Xб…h[áÆ‹!çL^:4už3‰Ò…©[qz`]Y” üé~OÍyÔŸÞè§úüFCgÓ£­pƒ5œÎmû¬´ÚÓM_màBĈóOǤ®®"`ù& K¶"8Ö¿ôc*»˜+ïÁú(]˜º÷m£—¤¯Ïf½u1¶ðl#àǯI» ½Ãƒ6çôºÜç)O“¾th‘éü@\”.T]o)=|dÒ:•ïõ4/™1{obˆÒ…©QÇ>Ïì=µñ’ëÓ7ç¹Zh´j¸4Ò{zã¥#3 ïé(]˜º÷,ôoÍf™Nh%›ºTŽÀ…ˆñ1çi͗ͧ5£taêFÜ'´2ßsKÌý›…6åâ(¬=å‰áÙF™'úÞU*ðI}ð›n¶m#âË« RN„¥B¾¬®>ž;ÛózµÒÅçÐ_I¾-Dû#Ü-Aټ̾}ý)í5Šóºž— Ma½ü9¹zùƒÞÒ­*­óž³xÉÕ©¡÷ E-4ÚÕ–2_sûå¢m´‘u€[ ó”ÈK‡(ÎS"Qº0u+î`y¼aý¢?K£YG _:4w%ŒÒ…©?éç•wœó'/ûxòß-XÖ—7bl!ÚFÀw´4ß0L¬%ü;=úÑì†Îû¶ð¡ÿ8ºÉ+ Ïøs$š¹åã|Zx´^:þüm˜§¬R!#SŠ]™R¨é·[ˆ¶Õº¡Â·†êå,×'ž0ýˆ£…F¡¿;oD¼h¸4ÒyÈïeC“eç1¿(]˜ºñƒŽx]†ÿ”KÖ¡y›ÿ”Kˆ.L݈û×eÀ{©À©„“f@gWþ-šÛ´îÏ| ¯f7ãÆúáFÑn.Lܺ}>þïí™Üµuà Žp0ýˆ£…F¡Þ°-_<ùv¡Ñ2ÿ1ŽlCc›ÿ Gˆ.LÝøAw|GÙ_òžuhl󗼇èÂÔõ¸—³´Ò¦TèPjÖ¡º0u#îÏ•x!úK±„-¾ÐzÑp…€¿¶6ÛHCl¨® Ñ…©M¥,`UØfؘ$6ÙŽœÚo(…Ë:Ò%6”Â…èÂÔõí½qú(AdUÚܧ&~\-G<À” º×»ùØŸm/SõW9dzóýU!º0u#î;80Ã+­ î¥øË³ nþÂÀ]˜ºõƒâÍÅ_’uh ð—$„èÂÔõ¸Oùœ ±r-¶þ&µÜñiáÑF´ûòÓ¬·+†RaÏí®ä›Ž[Vúç»ùõÂû>—|þv¿ÿwüó×^þý<Ôï•pÚ^ø¨÷·nûh Ñ6Ê‘ÏF"ÞkºÞRxrØ~=øå¦~Ú~V*th”ðïÅ…èÂÔC/\Iï44îû«b"p!âVÄ7vÉC*l /wWjà´»fõ>mE;à}*ô'üuÍ|ÚK§­'Ô4B€-<Ûˆøò±‹ÀÛöÌøñsNßÊœnl{FàÂÄõœÓ´öì¡Yˆ¶ÑZ.·'ÓöËR¡Cc§¯/D¦®Ç}î&pà÷—‚d?ýÅ !º0uý5k_l¯v¼O¥áAÔÔ8ëÀ`¤èláÙFÄ“~ÿ–pÖ¡ÔK8D¦nÅÎË7ì¯fùUöWCtaêFÜ?V\¬ Öùc”µ¿:Ï—]DÎQ˜TØ¿ÿ‰v€<ãËPàëÞ‚øˆÄ…‰íäøq»/´~/_û&%Ÿm{‡}ÿÙÀ¬Ãç¨ Íjþ6ÀžmDüøèUýÛ)ydûüvŠºÊô0è™áŒ/ïøñµ—çŸÐ〠×o2p賦«YÊyýXñJAîÓV3<r˪Ù}¶si\ŸÛáúŒÉXiˆ[¥ ÷ãH\˜¸±6ÜzC&n´GªÂ_Í’uhÆï¯f Ñ…©ëq_ºi3±èd.étëP]˜º÷×'U¾çZrF´áv§l[¿éûBt¡êFØû€³w©ÐyÝ¢ÍÕy@€-<Ûˆø°bóÑU›ª¹L##ÒªHjŽ8&®ÏGú¦éjYõ’Ï;3qaâFS„7‰ÝõfËå#6Z·Õ\q ¯†š^øËC² Ñþú½Œû-݈»£Ú_ •uhJꯅ Ñ…©q_ñm.ÿùǬã´v…~ú1Àž­G|=¦éc7j‰†ó-êŽÞkÊÙËŸµôÃö;n¨í|ýü€í]ûh Ñ6ï»ëˆ3 E(þˆÄ…‰[!øõ ©Ð¡‘È_k¢ S7â>à[èþÊ¢¬C#‘¿²(D¦nÅOyi©ýØiÖë£ÑÚi#º: °…g§o/¦‚îþ6sY[¢lXX°fô€»n{­l²½r;&n„.=í´ÒSuÕŸms\n?A´®õó,ígˆ(ºvx?§¡ *ëÈÑP¢ S·â¾’·‹SA?|ìfýˆ£…G[Á~åX[Å©À!ùÆ&w.L :íÈsu`’Õk8õ°v€]Æü†­G|ëëtûneÖ­‘âÆneˆ.TÝü0s—^¡Õ\K¶¡ñÖ¡ºPu#ìøgÑj"6üÓb 5!º0u+î+˜&VÏz/3®öPí·¶ðl#ÞG*´ðrïˆfÜì›wD#paâVÐ_.ó7»ý‹™>n#(ö#Т­Ô`{\²ä¦ÂÞÕj…_‡ÜØ ŠÀ…‰m|›^A¯|:ïm'8®_ Ö{–CÂ߇‰l¯ãÕÎêó/è ߢm…¯VôZlø‡Œ -BtaêFÜ÷œ³¨k:5Ë•m`ì‡íG -<[÷Þ-¶}c»?ÛFÞ¢}»?À¢m¼þ5ôö ÿ½þAñö ÿ\˜¸tÇöê¤å¸Ô³ÛYrE“öî«'·láÙFÄ/ë¬Ú”eѦ,z;Ï+ÛúÐ?kC¿ÞÌù¶m+äx¤¿ª%ëаï¯j Ñ…©qÏ‘O¶¦Â†~ÿ‰Ü[x¶ïúNkû¶Æ¡qȽí ·‚¾Â#¨ÿôgöR¡ÃΠ iê\<ÀžmEüH ê´Ðÿ±TàÆ©Ýæ¯$DØB´ˆ=qøjúTàÀ“ÃöåÁ«Ë¶ö:›SϯþÎÑ¡ºPu£ÅŒ•z²{áÙ~ö,u'œ. K6"=£{'þíÁl¿¢{0ÀžmůÞñ—× oŸ+¶_KyMˆ.TÝü²À-÷!ÉS&,ZòP="a Ï®Fœz‹~p`Øw_ÿï°á)Eð;¶qücTðýü©À'‡í׃_ š9uØ© Ÿ=pËÇ#l!ÚFCáW¤Â®ÎUüõtYX²é±ëÁäì¤=µv–ó´$'l?máÙV¼Á͆Mûñí«PÆ[Ó°i` Ï6âTÉóÔé‰ÖRÔcœ¶ðlõtA?VvïÚ?MD †ÂߺO…]í¾ýtYX²ú ¨~<–¯Ã6©KÌ1O¶c’9æÉÃ6ý~[ºÿöiéG¨.TÝh„óŽÆêÖŒv.ô´‘¶¶ðl+Þà^ÃÖôøö%kTóoMØÂ³±aEÓøîï³1l£¡ìhÂ׿כíjOëßé¥ËÂ’õHOÃvð1–TØÀëî?}` Ï6â=õÐ/©NëÕq>ËÏdÏïGÜÉàÓB£Pó÷RaWFÿN]–lDzéù“ÀTè×ב8 Ñ…ª[¡üL…þ„¿@"ÛÛòf?Õã/è] ߢm„|3xøñ•TØõ§áØÍ´ƒZñ›û¶ï}âfyS!ׇjšO ÖC=wàæCr:ÛÀ2ÇŸœ°…g[ñ>~Êõ¯tø£óÎÇ`—\zŸÁ®¿•„ãö»Ï­ŽšŸÔõ™ß~ÚB´­ˆÓÓê©°kUÃf]–lEº²±}ç°Í|= §\£wã¸M /\Þ ýöò¿L~òÚpl2ËÏwó÷™ˆç&ù´ðh#Ö#xU~H(60«‚íG -<Ûˆ÷´B³Aÿ¦Q–ëó*ÿ®Ÿm„z~þŒÌÏ|¤ÂžžÏ=>ö)oëU~š¯÷#lYhr5ÔÌýœP×§<þ}¨û#Üí¶ïœÏ¼ÐàÎEÃW¶«³5ÿ]–lüˆpéä¤m@éƒÁR¢Ý8¹¢ U7ÂŽ–²ÀǼÒ; Ìü§Óø´Ðh+ÖÓ%½ûeÌiþ‚ï=þ½˜klo[aïOÛšËóm!Úz¼—Ûœóo:g¹>âøwù´Ðh#ÔùH'/Cú¢Ñ²5ÿéÂe€»VDâÂÄ_ó•8fÝ£VÄüÉ~ßÌÉòövÚú@Ÿ¾:(Ðe¡ÉV¨Áñ¦¡`#ÛÀäÕ_°` Ï6â=¡WÊÁÇ­Rasÿ1±[x¶ïí¯û&¢yÙGmcu|÷׃d¹>œù Bø´Ðhãg\frÎëEÕ‡þs„Ký=7N†èBÕ_tÅï3u_Z—ñúˆ¹wʈ©w„tºŒø Ú÷gM±¦*ëדXS¢ U·.èµì ^à“íúD¥¡ÀgÙ¶-<Ûˆ7ú9üàU*là·„íG -<[÷ʯ–I…]ÍöÂò#L–lEÚ¬l¨5ÉruvÕPl§…F¡î§ÚÜçNÁIæÍ»ðnœÄðÂå­àƒÛipòEè&ÿ‹lCóeX„êBÕ_t¸~™sƒb*p`ÖÜ+³fuLæÓ£p »'60uóWØÂ³xÏ ÝPo‘íê ï¯¶ ËÂ’H/ÐŽZC1D–ë“ 5Ÿm„zwÔà<ᅮήn[dݼ¯½Ø"Dªnü¦—¯ã’êRa¬¿Ü"Àž­Ç{°¬5¾ø¹Ðüù7¦³µCÿÎtˆ.TÝúMé©°«Ã›»”. K6"?YK¬ûI…=¨ Áör%>-<ÚˆötlÞÕ¿¡˜·Ø>¿¡¨Ž Ù6Æ·ý´…hWÎÜQ/ jþJ€» ø Ûˆ÷Š¥•ðiø‹¾\0JÛˆM… hþMä]¨ºñ›nGqñØ*lýý¼q]A€-DÛøçÎq9ëÏ÷èk–ðÆ&r€-DÛrÚòõÁÉ[Ãö1]þìÙŠô Nfm¸×Gäê¬Û~ÚB´­€£}h»¥ú^ý†~˪a¯>Àž­Ç{Ïçk²¾SŸåúä ¦q´Ðh#Ô#žãôï5fšVù÷Ct¡êVàé›H©°«Cë‹. K6"]ýïÔH\Ϊ Ó÷-ã%!ºPu#ð38MYµ!Y5÷ÚÉq7ýˆ£…G[Á>Æc=çÖ~©R¶­AâÆµJ!ºPõjØ«SÿŽúžÖoØRçÓe¸Ûi#ÔüݵTØÕÑÇ¿'H—…%[‘ÞÿúέD© Uíò·ŒïÃ?ØãO¨‹ù\˜¸þ¹‡>jz9·:Ï¡ëðìæä-d8õc¡|²®¹!Fª®ÞDÿïô_U˜¸Ú Ý€ÕÕàËÙ ½Ã]›i+ÎÓæX°ý´…h¿åˆ•£¹+N¹ÞJÜ¥´Ðh#Ôè~ü»¥§]ðÝ{¥|YXr5ÒÌ õ2ÒÆ¯Ø\a—ѾcŸñ„˜»”ëÔ¡‘Ø]Ê£ U7¿.äåÚ‹Þ*W´oLŸ¶ÞÛ7¦#l!ÚÆo¹¿¦UßÓ4­µb'mf:Z«ÅBpaâVÈé»`©°«Ã›{ïŽ/ K®Fš¹Á[FÚÜÓví;¶p¨¨Õ_qqÊÕ1Ç_r@ ÖCÝwx¹¶»vîÔ¡„»v.Fªnþ•Œ¿•ÎÍ9yôW¿ÿ|ŽÆÝïíjýÏø ˜Y{=’íýÝÎïPy€-D[MDzðYÁµÝã¡ïW¶-DÛhƒ#6dº·êO¹Þc¹÷êh¡ÑF¨Ïú~Úõ„© ÅŽ—~ÄÑ£­`cã%žc{ÑsÎÝ»ÿ§ Ì©ÜÛÿ¶mã·\ðMw%שCƒ¼»’+FªnþU¹D«_H…n–/5×^ÄèBÕÀcßÈó—œr}|s×ÐB£­PÏÕW(gŦ¼¶:²býò,ûy…fc`Εb¿ð÷ ÁlïËÕ>Ôã/ñ¦ÛB´­£7¯tʸ¯æRúZ±|󵓴ðh=ØÏŸ†š“xÑ×K…*¯N¯½:êO™u  ®ZTË[ˆ¶ñkV/ o/0ªçêÛ l!ÚFÀoŸñ>?• yVºù‹YtXX°eþÎq*ìî/{BÛï¦ËB“­P¯Ü‚ˆTÈõ‘Æ_ÅÁ§…F[¡~ía¼¦Â>næøºþh?©‚ 7b~$"ˆ¦‚fi(ýˆ£…G[Áç–pöEo“="Ü(ßȶֻÞ(Þ ËB“_‘¿Gœ »:ùw¶é²Ðd=ÔÕï9´×È\+{¾ç£š+dø´ðh$Ø”*“÷H×û<a l„¸ïÉ)¿]+‚mß-k«öÝ2>-<Úøç½5” »Úú7´è²Ðd#Ô×OëÑ>§‚Êßç¿ß·+žÙãoèA.LÜ ;vѾ‚|ÑûPÅÚwɲ~´—q#ï’…èBÕß´V”Ù¾0ÖæÄíû|Zx´ì ü&>=yÑ•ªô9íi„úqB› 6~Áy_wjdªÍÚS#|Zx´ì¼ÇÉ<° |ú{lÞIó[ˆ¶ñ9_%Å<‘œ xrÿöy¨×’4§2þ|éóçy‰\˜¸ÑZè µTÐZæ¡}qɆ…ë×̹.øÞÑ6ÚÇ^ÙTnŸ[ÎöÑ–ö™%¬‡y¹ìFR¶PS!?[Çøeãþƾ/ŸmÄš>“J]m îÙl„y[¬&}cß*ËGãøöÐíW|Zx´ëõ¸ä¦Ú}ø7®²\ý;W|Zx´k»p¤}¾´^+0F愉. M6â<›;½72ñY®·*žO 6b½¼.‰ ¥?S¡?áïílïû›}°Ï?¡.½l!ÚFÈ7úBz·×½[ˆ¶ðí2F2V©€«} !C—…&qîgòêE4$øóãY®w®þ 9ŸmüŒ‡M­},Ã=ô%¡E õAo]÷F?Ñã¨ýŸ.Ã}ƒ¶ÂýœHÑŠÕSwj§Ú^`ϧ…G¡¾L,kéTÀõNÕ½ü§ËB“õ8ïp^Ò¿ó“íkû îý„èBÕ°¯¯©<ë6ÝôŽgº¶Üöoô=þ€ºHåÓ£pß•£NˆS©Ê3ù\˜¸t¬×‚§÷¶˜wá¥wÚ[oðãËB“­HƒÛð®Ù…ÞÐ_½¼/6”~=öºÀ½öªõÚÚ¢þÔÞoÖz?mYa Ñ6áŽuÚÞDÇØ÷#¹™Ö㑯¦$nû½h|Jâ¾ó-ã@Y´6¢¥½háÑÆ/™s¼ÄýÄTØFª y4¢m|ÞËi/OxêfMqsž0Fªnþ¸3‘ymZ*l½Å´_÷a Ñ6¾ÕêÛ3…'Þ)[S7ò„´ðh#Üù®DâÝf©°vÛ@[ˆ¶ð›ÁÝôÐð áÏËfêhýyÙ]¨ºþ›ãVò¬$J¦™íNM¢ðiáÑz°þ{— Û|Úçž¶m#àÿÜV*ð§û}%±çeÊz¥õùô€ÓiáÑF¸—Ê:âÆŒ3ÛÆáéög€-DÛøÆß J®çSnl¬ØB´­ˆÏðpì_Íf=÷WßïLi_͆èBÕ­Àïô]ÇTà@“í׃_î]'M÷Sa‹™` ÑÖ[Êt|ÌŠX š zÔŠ8Ýò#Lš¬z§±rYÀB‚m4‘ϼù—›Y‡zBÿr3Dªnþr»''Õ” ú8n³s3d¶m=Þ3¼'æÞ¶Ï´™²iÞ¹À…‰!ç/–Saws ÚŸ. M6B½Ô.Ôj_of[ë©n¬6é²Ðd+Ô+Ø‘¸+G2 ½Ž(þˆÄ…‰!çOÀSaW[ŠÙ@—…&ë¡^{îä;½Ã×B[1ðiáÑF¨‡œ7'ɸ9¯ož“DàÂÄõrðçg©~–Äó¨êãÓcš9æ’®yü=ìùóútGsùß·ÀDèBÕÐüï[{œ¶»Óïò=zÙëL|RC-Æ=lFàÂÄõfƒþ”x¶­ôFR}TòøÏÛS_Çâö~.LÜúQÀÀ<œ h-þcͶm5àS×áùïÒþÄ¡¶â]Ú‡àÂÄ _¿ÂZ §B·~ÒöÅ}Œ.T½xæ9Ö2ìÀkê>a—!¿cßþº-:ÔZÜkÎ]¨z5ðÌc­eØÛeЙvò;¶𾧯áRa9ÉíËJ«}éa Ñ6>®à¯é^¶±eݼ а…h?fþÜí±Tè½1R´oíÅèBÕÕùÔ_¾G«wO…þ„¿¤9ì­ï®v®¿|þm%a Ñ6Úúqy ñàR*h½ßj>n5õk¥D¿ù¸6‚M_;§wèÝKþZx´ì¡Ã·¸KÆOx){í¥Tü¶m#äýÆžb¥Â¾Qn?ßú¡ÄÇ'¾ê£f.L\3‡©v@ûJ?ÛÀûé_éØB´FtNþt¿¿žsn*ãýTŸ@¢ðiáÑF¸—êÉŸ)Ĭ=ÖN®ŠÑ…ªßÑe§?±’màõ'Vl!ÚzÀÇn€;÷EÆWtR^QuºÂ§…Gáð ¼?c;^/.®¼œþŒmˆ.TݶöM—…&롞s9#ñLA*ìYf¼ô#Ž­óy¡-‘ Úv›Ó'|Zx´Ñ´?Ç]â 0ëÝ_]4qþ` Ñ6Ú7}õ5ÞsæÇ†¿Fº6Zö¾“Ó© Ò,áÓ£õ`/Ø4Ç¿`_^wé _ÚÇ;]šlÄy·/i_Èd¹þÔþ• Ÿ­Çz(Öþ•L–ëOí_ÊðiáÑV¬+› ís¾LÃmóœO 6‚½¼~HΡݽ-ÔyB*àç ì댚§6tYh²ñæÉMõ'„¥þÑw}žÞÜzçáO)°aaÁúÏ÷Q%Éš™n`§áž—²aaÁF£KÔ¢Tࣾjn¯6 °…hë+Ûm=­ç+C9QüGï=Z—Ö¡´©°÷±½ð7À¢­¿=;}n“ ú•]aÍÇØ°°`#ÌËήåL… ´Ø~ÚB´Õ€ìê’FÞjÞa—« EÕCÛ w&ý’Çåý™y9êÓ>-òq›\˜¸:˜Ïù ©Ì‘+¶ñ6¸¶mýõéç™=íK…ÝY…>ÍÖ]¨ºÑÎÑfî€g¸µ¸ÇßZx´ÑÆ+<ˆ[Ò© ÍfâÅ‘¸0q½}—oÓŠÌS¡?áïÇë³ÝÏWûú I­<>¢­·òárý4go)ô0¨IïßóR—‹ëÀ…‰«"{ôUÓµrê|§ãÂĦ¸-ðÛï®b?uà-Ú´·H:ߢ­‡|äO@Sa«‹·öi3]šl„z·ÚÝûá'¼–»öZîj°paâzG‹ëC§é}¹Ð&ËT]˜ºÑ§Ýlç­ùÒ~®óGF=ä#LšlÄùòQÚj3ºuìëÆJ9Dª®¯$jç²n¬”Glˆð¯“Ù°°`£}»hÄžTÐHثݫޛDèÂÔa ×õÙõVx|J—« S7šãå\+õ‘ Ü챚“6¸0q½«ŽƒÍÕ¹„{›*ÃõqÙ½UE—…&ë{ÁL»Þ餑·rTßy­z9F¦®÷µ}RŸ]«6žóo¹º0u½9Î[õ2“SÛùrv¾~‰8µ Ñ…ªëýíR¿ì¡}[ÞîK r¸0q#è{@‹I…þ„Í{h‡ùÍ~ªÇ_PÓ¶m½ƒY{;GÑž™ÌòQŒ°QS“|Zx´ëáb“ïÖ8ñaQ~É“–7ú‰@mÜ|Zx´îÕž2·''²\o$þôŸ­Çú9æö©°{µ ãF¿` ÑÖ§ÌÛqöj°æ'cæ]Âß>ßåßö» :;“¯a‰Ð…ªëmqçïY§w[¯Èº±×Χ…G[ÑÞè[á©À'‡í׃¹qê–[*pàÁý{…¸í¯= ØFSK2{y©ÐëîÀÏG_º®RØ>¾¶¾Ò>¾EØB´Õ¶²týÂß:H…´ÿ®Žû·ò¶s|'ß”H…ÄÇ_oÖàÉÏôŽîOÛâ6Þi Ï6ÚÊŠûޤj*tàÑýùà¥À1®aS’ýõä+Úmù7 ¸Þ\ú^¹› [›Û+Ž#l!ÚzÀ‡ncü©°»¿WŸ6]¡ËB“P÷äddz—Qå”ÛiÛÕ¾~Dxl!ÚjæÃï® C^Ì2qaâúØ;þÝ_‚m¼=ãëÌ:k»*øÓýž–ÌôØ]éC}þ½«¢Ó£pO38oÚ £ekNÐ`ûh Ñ6gTÜÙÈÓîŒJ¬ö„dŒ.T½vâ>Ju {­×®k Á˘ßÂ×M×îtZÎã\L\˜¸Ñ׀͔Tè½ñµoÅèBÕ)цÎ[üu_ Üh2;Xàè=:rÊc¯7õlïöë“Aú’‚o Ñ6z.Ÿ\]RŒlYh²ÞþF8ÍìÞÓ;mhàwŸÌÑ…ªa?&¢¼ŠéTÈHk™•Ö¢NYl!ÚúkïÀWç+ã ¿ž¨-DÛhƒà¦S|¹žª¼<î]ñ\˜¸ò},§A´äx¶Â´'Çl!ÚzÀ§~"4¦‚ž´¬{s&_šlDNvîŠG^ˆ£çA¼Py#òµoÄÜHôex9ý‰¾[ˆ¶ð#‰p/¡¥öãY7?>Úžê Ñ…ª[çó¤‡ÞÒ†Z¡^¨¼ù¹û˜¸3[Y7¿DÕžÙ Ñ…ªu5”mòô?_¥áÛÆSûÖ>]šlÄù¨YãfR¡Cý¢?¢ U7N g|Þå¿Ù!F¦nD}Ýàæî_þgj2þõˆ.TÝ<¼™ÐP¾úöíÂJ£i¨`á…Ê‘çç0RawJ–áFæ…. MÖC½Œð©%yämÉÄðBå­Ø£k¤†jíeÄW õÚ1¼Py#òµÏ¦ÜÈÃ,öWHndaè²Ðd#Ô<[oIdzER1¼Py#ö;>Aòg¿²~‰þ~ †šý Ñ…ªë_Âvj!w*ðI6n ØB´ˆ÷}Ù£³^YïÔŸóFÎ+À¢m…|A9\—Ÿ h,°ýzð^Q·¤22uê ¹Œ^¨¼Ñhf|ÛÁŸ¼Ë:Ô­û“w!ºPu#ð \NÛ£5Ì©ÀëokCñ5l7œþ!ØVÄwzut*p â°ýzðÏ 4¤¾2õ0 ©¯^¨¼ÞhžA`gLS¡C}Œ?Û¢ U×ëÒ·~fwaB´SΔheSÛga-­p*À¢m„{:ÊÔxG SAëÕAí#ù´ðèj°¡‘¨!Gšy¨/oÈ‘ÆðeàïñFìg|!Ðùw2tç-;1¼Pyc0ZÀTIù:‚­7š½ÇgG ÙÞÌCaoÈöÆðBåØ/xÐÖÈ<ôô i^¨¼ûý2å îWgù8~4S7¬ù´ðh5ÖkwýRgê˜ ûú±¦¼¶m+àøLÀŸ8yèÕôç‚x¡òFìk×`4/7NÚ¸ªu¹@ ¶‚mÞ»ß^pÊõþÐ]@ 6bŸ?hXÚ<ôZú—vA¼Py#öǧȈuß© ‡ç£_·3>®oøåc!Úü<&®kö蛦ksçµ;꩸0q½)öðŒ»Pâ´­ìQ{©DŒ.TÝ ûô>ÒñŠ%Nû5¾vìíÕ!¸0q=æº à/—8m¨¹¸o`ŒÑ…ª[aÿX½Ð–‹Ãuò?;õÕ¾\ °…hŸà›0ЇRaïPëEI´ðh+Úì¥V*èç‹ùeöß¾ƒ¹8x³æE/;<÷¯Â³n%ún¬ÂCt¡êzRhêž-}ø=}¥]B{¶ô|Ízæ§õw&Þÿü®Û1úòÑá ^¸üLJ‡/ΚѮWx´þ¢Ný€½¨p>þE×o§º‘C˜ê_×¾‘CÑ…ª¿iýÊžé¬#ß0‘Ñ…ªëŸxhj˜%ezxÿ,)Dªn~‡׆9AÖ-…îë¦Â9Aˆ.T]|þ® 3í— ûrÅæÇ€ñ©+ñþ‰¯zR'&nÄ|§yþq5ëPƒñ«!ºPu#ðËë]¢òN…þ„¿V'ÛSÿf?Õã/hµs¶m+ä}=¸~£ÉÍÿ[ˆ¶ñü©æî|*pàÉaûõàpÎν³\ëe•y]óNN.L\o+k¯cëåjÐJoÞ°ÐÑ…ªàÈ},=ã@>hý¹Zýǧ…GëIØõÈñ2»-!ÚF;S¼îmÀuª¯u½ø#&n„|ÆS þ@Ö¡~ÅŸÑ…ª_"òÇ©à{£ÕÜÉ~ÇðÂå?²ß¯à¯#<"¹/8u sµÎ]» ¢­·÷ ÞpoÚgê!ÝÛö¸0q}l;æ»ÑÃd|:ŽqÎÛ%ë¿å¿qû7è ©[ˆ¶Ñ8+ÒpòúäwhÖÞ!õÜu.D܈úô* b¥¥žŸoÐÀ¬££ËB“8ÏhVÁ]¬“i¨¯BñG$.LÜ9~D±Wû½ßÀ—rQßxu` ÏÖ#¾ecÔT*psAÔœ<‹À…‰Aá)sÃ'4˜UmŒê®\ˆ¸õùã8>/'’q¨Á¸s"¸0q#è>El8’Ÿy ÁljkÔ{˜\ˆ¸õ5 ¥ Þ¼ÃøFB$†.¯&D¶î¸=‡ºÊM½­Þõy.L\mñ[çÒݛŧmý íÛÅ1ºPu#ìÜ»Ojï® ªYºÈ]íµ15žmD|Á'ìÞué‰Cï¨w]‚ 7‚¾Îì]ÀTØÐê¾q!Fª®‡½¿Dg¡O~9ŒUdŽ2=wWú@? ¥»háÑF¸ë_‘jΜxÞ´óiÞ\@.LÜzýË:ͫ҇ݻ* Á…‰Aßç€F*øg·8WG!¸0q}e4ÔIܘ¦õƒ7¦é!ºPu½½#žãq/I3½ªî%i.LÜzýÛ£7¦Y‡ZŒÚ¢ U7_ÿòEû)ãP›q/‘"paâzÐÇü‘-橚TàúVlûq [ˆ¶ñe¸üž¤Óc©ÐŸð×$ÆiÿÞ ó²5ÿ5ä|[ˆ¶ò©ÇÔ¹Ï_:ðèƒöèêd=À¢m„<`i— üé~òLÏïô¡>ÿ€p:-<Ú÷¥BšµºH><{f/ŒBt¡êúÒhª×ŽßXM—úëaû>:·/Bt¡êFƒ_àƒ£þƒL§t“Ö5ªK£[ˆ¶ò€ÄQ*p sœ•ÎQCé´ðh=Üs‡çüëЬC¯§¢ U7?Àtÿy S^ÑE{EÕuh€-DÛ 9¹Ðø%Üi¹Sh^ÿUyýÕQ‚O 6~È%`N‘ ý ¿j9Ûóûkù°€: °…h!H>¥ÚÊ®´½³¢Ó£õp/}ÀЖ ½ÞR–Nk)ê ` Ñ6B—÷ZaŽv‡Ëi÷—l?ë—[ˆ¶ð| ’ئÂÖüF` Ñ6WÃ×,¤ÂZŠûvˆ[ˆ¶ðuGd¼/L…]o) }x€-DÛ 8:éD󪩠õçnÏóiáÑF°ÇìNàò©°×Ò}²?¢m|©ÜÚrcu­ßž}c5Dªn„}È™½TÐÀëéÎGòiáÑF°wt>k/zgÀ‰o'Ž?"q!âzÌ·ã;JÔ;&R÷ÖËéÅ‘¸0q#èãþ¢þåf¶õ¯)ÝXnØB´­€Ïä\g*h CtghŸM‹J 6‚=¡KÍEí ÕÅ}ÆWÇ‘¸q#ækå÷¼‘Oɶñ}¶ö|J€-DÛøçAjZ>eû<‡L˧ØB´­€£Ë{4™Ÿ è Ý[|Zx´z©Ù«<ŒÊ€%§jŽáø÷ŸO}ù×=7c­™[„.TÝh‡;šùÀ¯9Iô*þ ZBp!âzÌ÷¡ÒÙÞÈ¥f»>J4äRl!ÚVÀ+¿f{.u;Ðôå¹Ûs©|Zx´lt1èO¥îèšÊŸIåÓ£`ÏhŽiS;A½mÏh¦Ç‘¸q#ækõ~­Ù묛UŒíÙë]¨ºø­ò«¶g¯÷·“zV‡èÎ^óiáÑF°á~¼!{½Ã}bCö:"®Æ|ï:4Õ„_Ö“ øAý· …àBĘó“À©°Ÿ#ÅÈL]óe¡ÉF¨?³´´Í™7¯ºhÝœ Á…‰[Ag'ôSAÃJ_žÍGú“î'¼òþ¤ûÞÍ9(£ÕïÿÔí{ Ühàó‘I=ÚÊ—ÄûªTГòÔí7gñe¡ÉF¤ù»©°µa§}O†/ M6BÍß×H…]áÝ»1|Yh²j49è݉9i ÃöîÄУõ`÷ô”}z£Æ¿Õ@ 6b}”'3oI…m¼4Í·¦DØB´­€oìý‘Tص±Æ¿«Ã—…&¡F_Þ ,wÊd²y7‡í É5B<¡}“{#紫ù{‡/ M6B=£¹Vÿ.Ή¿£'"nÄ|Gøž¨ôNcŒûz«Zx´löH*èjèÝ·¡Ã‚0ì|¤¯öþ›Zh´í¡þí¬ö}àS¾ÃüõR•ö}à]¨ºx49ܰM–qàjØ&‹À…ˆ1?ŽÏ3/áJ… =°ý´…hÿÌ™ó6Ë2þìgîVŸí 7k›ìúØÖxï=PC‡¿º¶Â\™ÞÙ×Ëxu¬oØÕãÓB£hohpÑ:(5·=Ôn›h¿–-¢mœ”Oïrõtï#]!¹zˆÇŽŸO^}öø´Ðh#Úµ£ 7öÆZÉÿ=„[ˆ¶zTi?§ÙÆùõ5§Í<Ìï?Ÿúú¯ûošþõ‹>7‹À…‰ q\¸o©ŸCäï•Ä*=>-<Úˆu@R7xõ‡lHFói¡ÑF´—£è÷ùÚ|_Öäþ¤á*úSÿ…óE÷Å&\¶—ñjhþ zw·…h!¿œà ”¥B>^Ë/îuL|Zx´ë­Róqc£%ÛÀHìßi °…hß¡žÊ_7vÀõÇ_7F—…&ëqžr¹©À«¿bCšO 6¢m&InÖpµëk(¬¡ËB“­8WJnäù§ÚQ›yþ[ˆ¶p»eß(²™®ÍÄêüüU6|Zx´ë眲½4¾œ­¦w¸S_š'ø´ðh#Ôµ …n¤ž§ZqüÔs€-DÛøŽ%H*?2]%J?láÙz¸çZ­ïÄè|©›ý–-<Úö†¦Güé¿lW»>ò. M6B½céwÉi†ë]Ÿ»è”. M¶âœ ÜŒã^KžàY.àšïTèæš×­?Bu¡êzà×&vÙ¹>Ú4ì²ói¡ÑF¨?‹ã‰9©¬›GšÚsR!ºPu=ðσ;ΧÂ>V«äÝÉ[ˆ¶ð½{M9ÇÔRA?+¿hÍ<]` Ñ6âÝ×sºí£gÖÍ·³}ô Ñ…ª¡‰§—ò€Ÿ3­a£îRÒe¡ÉFœ3“ÄòÜTÐCÿ7úh gÅ×ü†UdÏ?¡;&®Ÿ•q苦«¸£v€j Ñ6â²bóÃ^›ªGe2= ꃟøòžU²ÇŸèÕ$^ˆ.LÝhЏ¾©Ï®®—÷uæëÂÔæX¹í¦}¯õüúAµ7÷o¶òiáÑF¬?ïÿ!.ßöËU:ß§Ìí‹·[ˆ¶òŸÿA×ÍаWy¿è~eïե¾NÇ9{Œ1¶mã·ÀÌ |%4ÒÇîjþýœi”.L]9]úÚ©ÏþýdÑSßùº0u£9^ŽBo_¦nôŠöÅ2ÛÊp½wqn+GÈB“õ8÷˜Fð(yÙH ™ÔöW>ù#T¦®¿÷}VŸ]]QôŸ7×°’ð/ýõj²Rð1vù‹Þ±•ï*ýâ#š\qü ÂÔ.`«±ð“öóÍ]$¦Â6¾Ãо¸ °…hë?æ0‚Ó8¼Öúe'I¹óÛTèæÖaûÜ Ñ…ªës )•”·W› i1»ÖbÔôd.LÜè`}ë4ý#;tùAÁ#W¾ ^²18í­³Ÿêóèý9ߢmý˜0>(xÙå^~Ê•<ÑOÝé „ ”\˜¸žpš6t|v¼›ÂÔ­gÙMQˆ¶>øÏ9±ÊÛõLD|TO5â!º0u½ãrè“úìjNë¼à©: ¡÷@¼äœ´eVܦõ©Vc©pŒ-D[ïWΈS[Jùè·t£k9îC¤"§¢Û¯ß°.Þõ¼È={3(ö屉»X¸0qãÊ™8bK¢m¼?;Ø£WCüÉËq^Š[¯ž ]Jþzô~â”§BÇ_>‚«Cß©ô_ù’fE\ˆ¸ÞÆ—éµ¢ UO§Â~î0Mß{ÛÆ²ï \˜¸søåÇKnÓ;4ܾ<øÆ/‰M…^tþzôõ²‰@Z–§7Ž`ßH(DàÂĆþ±‘EÌk/[¥ãjOjóiáÑéì×cï•…PóQ/®¯Ç3>̯fø˜=/„ò"nÏÛ|Ëïäsÿæ·F`È|𛼾M±ö#¿9:ÐíâøëÑñ#x¹p*tàÑqüõèãö7 Ý— {Üþú¢×=ó‰ËU~š¯ŽtYh²¾B\'päo9ƒDÀõn…çrŽ‚áTè@ûÆñ×£ãçðòÒTèÀ£ãø_{Ù:ô½ÇgŠBÄõörìt´"™ôî™Lº,4YïQ¶œ­´œß!àF Y÷Û3r½•¬¯«t†ß5.s¡ 7‚§ýÛ*ÛõþF¥º§}c%Dª®¿¥{‡®øÎ’p½Áä›—¨5x©À'õÉoÔØB´ˆÃ[¶x}_*pàÉaûõàµôíM¸lCï§ó£(]¨ºÑ·,è4Ÿ; 7Zú —ÉÂÕ}©À–î/KÄmø-¢mD|ã×=¥w¼þà-õŽ;œ”kØF̸õ‚6ðX^¨¼Ú½ô]®üg3¸ÚØûn€kNðº­Tè@s÷—œá¸¿ì™a1G~Q*t æþb¶¾ƒÓgþíþ‡^RœÄòBåÕM‘¾›ï:©Û ¿kßç{ô`¿ÿüå×éßöß8ýë'uµ£ U7zß\i4*3p£'¸à¬:®Tà—n¦È‘dzÛ®ô@o.tºŒ÷ Ú÷QÙF­I~]ÿ¶#’ém¿Òzü=ÜtZx´îË—„iÙ¨Tè×Ô(/“£ U×ߣ› %E'sþ+ƒx¡òúPÔà´á7ÚÌ´Ã/«;5uêPƒw§¦bt¡êFàáý£Î]EwâHso¸3ˆ*o¼¬º:ÅWJBÄõ63\>ÓÊË–¤‚·Zü\O/TÞŠ=º“ä/¿:q¨Åãü#–*oD~|ÝÄÚRN%þº飓ÏúÞ•ú~è½Zs£ UW+ûg"ùfžTàz?Ù~¥P„-DÛhé—/ºòRU©à¡²!Ñà •7bïæùkTOê!qþË •×#?vÕ%È…kæ¡vÓ°pá…ʱ‡7™ü•«'µœÄòBåÈÕéê,YÖ9Óö}ðnÏ’…èBÕÀ™v™OÞq¤Ó>2ÍßS7þˆÄ…‰ëSÉq®-éŽÌ#dKº#†*o´wøD¥¿ÂÿÄ¡Ö_ãÄ •7"—+¹ËCOÛzt¿~yr|£ÂŸÎ:ÔÁû³Â!ºPu=7™yîÏZ>ü=]oïS/_[’d™‡úɆ$Y /TÞˆý@¿>0¶ÑµÞz@ ®F›YäZFzIa½ 8W/c~O·ÂŽ/†ö?2ôí¿«iîþG /TÞˆý± Í]ó¥BÂß¼e{ïßìËw0ÕÕj€-DÛ 9ý:ËTØ@ïˆÒ¯Ç^à|^K.5óÐ@ÚKá…Êëå¢Sþ–ßÒë%—g‹<~Ø)·È¥ÿ-¥û]Èoz "†.¯Þòã׊:½^x´Ñ µ¨þ£@§ ØîÃ@1zó{ºö /(hØË<4^7ìÆÅðBå­Ø,âS¡£ö¨Újú!À¢­‡|î^kΩ ‡E¯$ÈøþŽ?ÙãO¨)“\˜¸>Z;ôYÓÕ3;s·’«ÇSAÏ­ä. MÖ“vs¾š‹ù3 7^úߘi؞뛜wv€cx¡òFìáºîN­CÕ_ÑÞpðX^¨¼y¼”¨¡âd¾,VæF '1¼Py#ö;“ÞéþÒhh9$>-<ºlî•—F¼ ú%ä}/\^/y˜]}ÞŒ©Õ™L뵑tXX°ÑÀËû€îHMïò¤=²~DÁ‚­(ã» E$s½ÚàNI /TÞˆý6¡S¡†2’¬[£Œd†C5\2’qhŽØpÍH /TÞj5ø6Cç/¸Ë<2Gl)¸‹á…ʱßGv060[ôg.l!Úzþe©Ÿü»Q4EÑõÖ²ŒÕ Ìb’¬Cï/& Ñ…ª[Gox™Ôî]ÒdêÞqþË •7"?áyµ†:ÁÌCÝ{C` /TÞˆý¶òwdS¡C¯¬79Dªn~¯d{o¦Í¶õ£Þ8N¢ U·ÂޝΊ‘2½­ ÅH1¼Py=ö+¼rmÙáXá•kËGˆ.LÝŠûGj“–cÏöõs^´${€-DÛ 8¾ÚnØEÍ<ôš6ì¢ÆðBåØ/kÀ6A*øk»anrÄðÂåõMŽu‡¯-)¾ÌCýdCŠ/†*o4üÝ8ô§™² ô–þ4S€-D[ø†_0Õ² ’y¨Ÿl؉á…ʱ¯Ÿü¹± ²]ŽÎŒ¿ÿaèP]¨ºø δäÉ2õ‘ y²^¨¼ûêÒõFføR`]k6þÄp.LÜ:|ãX(8ÎÑnÀy…æ“´¸0q=äõhÛScõ;\Ûc¶m#à=¾³âOgzAýIà]¨ºøjÉoóÎ(™õâH\˜¸r~R)öóÉGj*Œ. M6B½àӡΟðÝ/™žÊ»Ù’ñá…ʱ/ï¢BîŸ7 Ñj!l!ÚV¸ç€¼]*ø×KÊÌ9FàÂÄõ|ãžK«¨ß+J…n¥’o|k)Dªn´w~Ò.vuD‚åó©‡nÈï¦wêÐýÉé]˜ºZ÷£ïÜ_Th²ÚćnÅÓõþL×ÉC!÷gº‚x¡òF쪤ִˉ›?lkÚ%&®½?®–æµN…lL½šOˆGØB´pÕ³=Ïuêyÿ…\£ U7_/CjͺdzA½I—[ˆ¶ðù,ž=ËðõçÌc…ã«'©Ð}áåÇ‘¸0qum4ôËlvç­çMOØè[OœУÎO[¤Â¾¾š¬tK„-DÛø¾=ßœ§=}}uÜwü¤7*³›/'а…hëº8|§M*pàÉÝ× ÃkeK˲¤wÜÊúµ'ˆBpaâFk™^u€”íŠTÈãs*ñ­WiÞc  …GëÉ•aîÙ/m£‘ÌÛß…õý’TàÓóÅÿvÝF¦÷åJèñô÷’N 6Â}¤lÈwµ¦‚7;Z?ÿˆå…Ëë“ñ/ß4£eW¾|Œ–] °…hë­}JZš3ˆã[UÈ׎±=ƒ 7‚^fã‰{ '~Œ¡ìMÐ]¨ºÑ»ŒX ‡{/î”ëwÝ-<ÚhãôE*h£ClN¬ðiáÑV°ñ w®v|«À±ûBw²6&nýsã“–Íßö ©ÅC¶m#àGâ&ïwØ7lú?csòOùëïyâû;žOøüþ õ#6!¸q=êSÎh1Sû©À¯£s["†.¯ÏW¦aã§¶R¡wj¦òFN.À¢­^-?LÓÑÚçA_ýŸ¹œ£ ›r.g~û°Ÿ_v茠—7ä‘ç‚zàMí5øôc»ÚI–ø#"nôÀûë¨"/§“ Þìend¤bxáòz“Ïßš€šü®6y5Eò÷)‹JÃÙ»Nm•jŠ$"®7ùœO'¦ÓÒ;g¨+5 ȧ…GÁž¯ójR•R*ôAÿ-ÇÜNú«}¨Ç_Ðη…h£!gÝÔúóê»9¨/¾ºdÀ?£ÞŽQ_rv'ôñƒîß^ÐæœŸmûrIíú†TèOøëO™í½{«Ã?Ôã/èÃ&ߢ­‡|éáéyá'¼›“úâkç“Cp!âVÔ'úFT*ð§û½½ÌùÉç7ú©>ÿ€ÚÌù´ðèj¸É92àf¹ùŒT _þ&¯¯†–ïÔÝw«œ:Ð9.Zç¨ÎZl!ÚF{‡k‹ü%œÙ6ߥö"Î]¨ºö^÷7\€{òÀˆ¤¦ìÕëoCp!âVÔùÛ©ÀQiSF%½w¡Ó£popoî¾Ï&ã@§¸k¢>Y¤Ó£õp¯Ý¥¼•^ø“õaÔÊ[{ï»7û‰æ¿ ö(¶m+ä3»ê764Áú#Tªn…½zî-‹Ìwå¿Ì ‹\˜¸>=_{<­8©“uº˜ùúÐß÷ê¼B-FàBÄÆ>â‡ü;mUïo:ùúÔÚ¤ÞÞ‚ ·¢~*Rv[Ra_¾ÿÑ9®ùÉÇ_Ÿ¸‘ˆÀ…‰ýËŠ'gµÑÔLÓõjšN½È9"n´tüæÖ–ûx2¼¥³Úè½z.D\ú–sÆÜRTð½UÔq£Ð(†.¯w4Û1^Ͼè ~™®+Ú&°Eª™@ý®¢[x¶ñ&½]%ÊÊy§‚?¥iegìcxáòÆ›4ׯ‰nO gÝüiÛÈ!ºPu£Õo—ü4¹t7ÛÏIÞÈ®ÝÀ…‰ë1ß‚lâY©}ŒxÄÝÒTÐ×Á”µÇ˧…G¿c?–?o\ã~#o¢ U7¿ ÷è>F*h ½¸w_ø´ðh#ØÛÌ®^L…­?÷ªË[ˆ¶ðŸÙêVâÄ%ÝÉ›Iïö%]/\^ˆŽÝ²³·RaONÛù  …GM½þ¤öiÿ©‹–ùûNfó´?Fª®¾ÿýY¨3®TÐúeâÍóÄZx´ì_¹牧µ÷<1Fªn~© ÓÍóēڋwž@ 6‚Íß/Jïö¬—G4ïsУõyJ¿¾š6éz„TØ¿˜µÛ!—üäk‰O\Ÿ–‡àÂÄ­~¼=ý_¿{U\òY›d¹å×C_&¤eP*lã»!ÍË·[ˆ¶ÞJ^+^>½áO÷ûRüÜÿØ®tF¿ œO V/ÌŸ›<Ì7Gh²ÑF¦È\âgþ™Ø ü\˜¸>hŽôõC*èîoàa­yذ°`½uôƒ‰é6&ônúG ¶‚ýÚÀcÕ¦vß/õ½Q£ U7ú’#åN½*+¸Þbn\ò‚ ·ÚzeÞÖ¾žÏtµ7t¯æÙ°°`#ÌG™ 1™œ ºÓW#7’à¸0q#äüÕN*l­¡ÜX£Ñe¡ÉF¨wpvŸ°Mï40λУõ`Oà‰Ïuf©À±Æ[.D܈ùVIâçSaÅ}\2¢m-«w\`– ¼ÚTZ®^ Á…ˆ1ß_?(m÷5úþž²ò`¿¿ÙÇn×ó/¨ «[ˆ¶ò¬¾ÔÊnu’’ñú Úp|,"nÅüUÍJ¶¥ž?ç÷ÜÁ-û›&³ û›¸q#æ›Ù¡Ü8Œ–eõí¼qO 6b½×.%hßKÎvu„÷ï$Óe¡Éz¨·î•ïeÝ |œ”Ïô>ŒWú@? ¶l>-<Ú 7ZJÛ°iŸq`yÖ°i 7b°õ ¼:…mزçÓB£h—Wï¼Ëvgäo\{¢ U×k;·ãKƼ;ŸR!wj—å·_!¶-DÛhå—;ÍX¥©ÀylCQJ^ÆünÄœ_Ü‘ »:Ãò—¤Ðe¡ÉF¨Š:RWŸ¦b>-4Úˆvíêü;e¯ÿ”-e¸q#æÅ©ÀkofKQŸmEû8šL<àŸ ÛØ7rÛ@[ˆ¶ð}À6š6ê÷ËŒÐê ¶éù´Ðh#ÚŸ{Ñ´zŸ}üX½Òê}l!ÚFÀÑ‚¹†’ˆÃF†Šˆ}úøº:¯"‚€ŸÁ”lKEDÆ«#OC=ŸmE{ÄÆKüö„TØõq§áÖ‡[ˆ¶ðJŽðNñÉ~ù’çÀ-=áÓ£pl¦¯ô Û—|Zh´í© Hݧ¯ö‚þ-‡Zh´íϼ#/~ê×z ^ L_^¡ö"û[ˆ¶ÑÒ7$WÕ²G|ÒõÎпIa ϶Âýœûp¿=› }z6•/«†lïÃtµ4ÿ½…óm!ÚzÈ¡µNCò„- ù²°d#Ì=WŸ [ûoì/Ðe¡ÉF¨ÇË"‡•6N…nÎ}ÚSÞ!ºPu+ðØb¾¡† ÓõA§¡ˆ Àžm„{†ó Õ°']ï ýå°¶ðìj¸™ùã2ÞµÞ°!ëM—ËX·ËF¨/p RAW_È–º‡[x¶î# ÆüšP*lã,~ëGháÑúþõÖP6XÓ›ûÜÙ©[ÂdWH®Þœ§Ê¶Tgº>¾4”ØÂ³p÷K±Güî©÷³²û9ÃÌ|µ4ÿ½eóm!ÚFÈ/W?Òi©°/Ɇ¾/5þ>ñYï²#paâF·=A‡#ZJL2]Ûqûh Ï6šø¦O…þ„¿çѳ=¬WûP¿ ÷*|[ˆ¶ò÷m’r©ÐóÊ. Ñ…ªë_ú×å¬k@Sã_ÇõñèY¶R}Ô㢠U7âf ðš™ ýšpQ>­ð’óf¯âEïPî9'ñg¯¹Ñp#û½^®¨woУõv½ö=Öø6¥ñ©-$׃9¶¥Â6êJÛÇä[ˆ¶õS>û⣩ '%›é—a²Ðd#Ò£ýÒ´ß®|Òcÿ÷#~ cg²c¿â{ü ½ À…‰„¼!.c§éåâäò{nQU[ù»/Ôç&n´òãÂæ!¦‹½ C|ÃöH–«ƒeÃþŸmüŽ{µnGÄŸ½u »¸ùeOØìÕ±ù÷²g,á¨\}Ù;Ö›8’³öÞC蠟XëbWîu¼1a˶±!Ú>a °…hë/æž?MÛ/I…¼k åsTxsÅÃÖCÍu…ä!^Àþ ¯×xÙÛÎÏg¤BõmÅ©˜\˜¸ú‹Î]&’ñó—}ÔÁw‰SAwV¡Yëîv.L\Ý*™ÍÆË† íÀb¦/»jñq¸â‡zþ å Á…‰«K)‡>ªº6GþÁ7¾.TÝè[ÀruÇØŸÝóg)©°;¥æ»}nÅ—…&ë?ã1G楔Ò;Ü©äö¢ UןKXYCP*\£¹´štYh²æc„ Öo¥ŸôÉwsáY„-DÛˆ8¿z+½Ûõçö´Í¹ö±£¥íS!?—h_O“µï5ðiáÑzYÆËTàÆ¬íÆH W?‹1¯ãÌ~y„h­e]ÆùTðÇŒv¦'Ýbxáòzð·®8ªÏÛ¬Ê´Ñ ÜØ®ŠÀ…‰!gϳR!LëÜ. MÖýœÞ;óTàùÅäìË<"qaâz)Í~”(Ó®öæÓY’ý³‚iÿ}}¦ñ÷”}§¥›bxáòzÊißФR¡ú0}£¼+&ntû̯ÀJ…<;ŽŸ¾tã\*p£ƒl¡Cpaâj{ùÑwö†^*ìëÊÛŠŒÑ…ªtޝ‡?6°¨/’0q£ÅÔ¾Ø:§;å¼GûåìL뜎/ MÖÝ£+Qºï´ÍæÝœð‹Ñ…ªa?îö%&¢RAO“^ö‘ñq¹â×›jô àÂÄÕ‰´G_5½ì _q™{:.LÜhŠùü±ô#v¯Î¶ÚKV"l!ÚFÀ/%+f—ëOøŸ6Òmáú#Tª®‡}xûæ;gþœ üÈ,ä™.LÜzßsçD©_%TÚÉÖq{—×§¬’…/ MV!?tý]û"+ëæ–Bû"+Dªn^ùP'nþªí)¨ ^¸¼Ñ¹ì—j6RV7•¸žã:õq/õþÐG£ÉGèBÕ&\GMÍ+¤‡ÿðh/\^oòãõ9¬Eo*t³«l_°‡èBÕÀ/¯ iµ‘ Û8·Û¾J °…hßþZ#:ÒZÖI!ºPu=ðÓô±@œIfý³§ïõní3É]¨º>¬^¯ôæÍÆRÁ›¿ë¹d /\Þhõóøúm9gRa_nÍü˜Že|êJ|~âúwÍCpaâFÌ×Káé¨K*ð§û=­™é©¿Ò‡úüzÈé´ðh=Üóqmyê› zC&î1¼py#øüyX*ìîï%¥Íé²Ðd#Ôõ|Oûi¾”Ò·4#paâVÐWúÆ`*p£~¤}G3À¢mD<ß¼ÏÜrL<9lÿ=øÒïüIz*ôáˆË·4ÛÓpµõø jw` ÑÖÛÊ2\3¥¬¢úTðOùû³g|ßðƒ=þ†ô\˜¸v8'ÕÃÈ:Ò£7ä0Bt¡êêÙeÙ½—ðh£½¬õ3´72™Ïï÷õÖ @ /\^þúyº¹;ñäT/\^ßmØ/õBÔlÔ?ß¡oŸ¦¸‘¢ËB“õF¾_ŠTHog*l#©ØÞ«ØB´­€WŽ5O%²ÜY¯dëd"À¢­ö#Ët¥µ\÷„§ù _¿€¦­Tè°°`µU¯ù€^ϬNnÜzêÓRêû¡ëÝvŒ.T݈û±¨Mÿ”¿·™ŒOëû:…ÚÌ#paâFØç íXü™³SÞÔM{Sµ…x„-DÛùö1Õ'ÎÆOþ:ægãA¼py}í.ß—ç¥oRÁ/뮾¬z‹À…‰ëm¾ßGö$7v÷7.±¦æ|Yh²êáúÅmÎ7¶•ºm˜GØB´õ.e8.à1H…n¬²ÚOG„àÂĨ£ÛCî*ˆL[/P{D.LÜèY¶‰½Û— zt÷©ñ]¨ºö=`Æ• þ51g‹¸0q½ƒmPj½o*ðIÿEÝö#Т­7ôñÈVR—Ñ©Àôð@.L\úÔì$¦B7׺ͻ 1ºPu#ð==š Ûh2nûõÜôizz§ŸOï0 ­.ø´ðh}šÆúUíݬ›•8í3Ý]¨ºZض^ ‘Þ !ÚF·r^JL¥†¢†ôV.LÜúÒ“wÌSAÿªÚg 2>wWüú¥3½•àÂÄÕ[Æ&nŒvÇ÷K¨/“0q£ë]öÂ;#š ÚˆyëÉÖZx´ìcwŽ¹çš ˜ù÷Šl!ÚFÀ÷jo{#é:½•‡ÙshÒ5Dª®~Þö‚1ö“5ï\ž‡«|¨û?cÃ’. M6B½àÔ¼!í7W7žo¤ý"paâzЗÏ5(1í·¼]mó}Ýžö Ñ…ª[¯-DÛÓ~Ù6šL{Úo™ð-mÈ+dhë y…e®A·§r¶>+¯ã7" ÜhåKý€e{Þryûüû÷"®ö¼eˆ.T½xê"´Œ»Ñfn,Ÿ#ð2ê·p#èkm’~'_tèæ†ËtQˆ.T]O]*s–Ñ© Ó¼øçÓ£V~ù¦=i Gý‹ÿ[ˆ¶ðµÇ·¸ü‹ÿ¬C‘ñ¢ U7?îÜet*dýj^úÓe¡ÉF ЩÀ»¿²\ÞŸO ¶Âý:ŸH©gO…ü, ¾å…Û‹ðù´ðh=Ö[¾å„X…— ÛœpºõG¨.TÝûç²–˜×ÊúóáGrV+À¢í 9-£u}ð‰! 7Eþì&Ù 5:^6$á2^yRp|Zx´–¼‘LÉøë¼M¿ž›¾ÀL­N!šÅlXX°Ñ<ø ËTØÕNÄ¿¦ËB“Pï9ÙTèOø{YC¶çñj_¿ª3|[ˆ¶òˆÌ`*øç/š¿)ÅLkÆðÂåÕ/J¯{7“áÑz›y^j˾$º~þðÎå)¸0q#ê•‚¯ælÕþ±NJV±aaÁVÇ÷ió æ~ýJõ÷ÚC˜!ºPu}‹ç9]`'’S¡#褠êD+À¢m4õ.Øí´‚]u®•q=/vã8C€-DÛˆø±OJ­¿N<9l¿üòñ8N"<ôðlàßn7ò÷¶mµ$hëúý[ ÑV[øÖõ‰®5!~êæZÅ­?Bu¡êFàçzCý Ó®·tÆ0¢­Ç»ÿYÞ‘×û©° ŒæwHZ4¤Â6v×Û;¶m#àÓk‹°zH…ûì wâb‡ì É5\=QҾܫe9íË[ˆ¶ð Î:vÞ½†ÓcûnCŒ.TÝ{.m#&’SaCëP]¨ºöõµÐdT¹¥~îÂŽßn k-ÌãËB“õ8Ïü>¶ú¶OKè²Ðdõ"¶z<„½¾Ð9ߘ\ݲd¾ÿ7ý7,fR)Dªn´Âœ;%ægRa£š'<õy}Ó¯×[b„.TÝ ;}.” »ú"ùgptYh²ê£ä—Z5— Ü‹oTüñÂåõÐ×ïa¼1s^®Ãç×~ñÆÄ9&n}¦'$SëkÏ;©Ô\˜¸>ÃXÆ#Q»Nú(}öaù.¶£ûMöÝÏøo3¡ U7Úã:Á½€!—uèeò/äBt¡êzà×¾U½~˪6Ÿ¥>i£ˆþÄçýŠìñ'Ô¾7&®w¸¾tš®2þ௉ ­F:ú4*S°Ó^ú«} ù/¨ýW€-D[¯e\ûþ{ 7ÞþúöóÞu¯õ\w¦½!ºPu=ðÛ°Ðg1©ÀR²ó¯\˜¸ô©Z¡zc©‘õçOúó?%¯5Bt¡êFà—W)9a÷,îþ·‹¨]m¼¼É¯«õp³e¡ÉF˜÷Kšî{£½ä.ãC§Ô–ô2^é=þ€Þ¥ÐiáÑz¸«#ÄË¿ŽþõJ€-DÛxÖ»ûO霶ññÛS_¦«þö9íQ y„.T]_¯8øYå'54ýÈ×…ª-ò8¾ÈÝ^H…>ê{Û7vF"paâFÔó§uªý@ÃY l# fQ̬=Bªnôç-Æ6ϵèñ³NÛßübxîNú$ Dª®¶È½ë—ÚdàÆBúäŸãê°°WÒA¼py#ø+ÒTàV¨Ø¾’ …Gëáî‡WªžRÜ‘ ùÈ]~+yn®H  …G±®”Y5ïÿŸrý©Ý´ðh#Öûëzα˜ ýZÑÎ!¤B¿nͯ{¶—íjêñÔ>*À¢­ÿšÃþšðA„ ½“ûíTÐêÌöÎp` ÑÖÊgUy¥’ ¼³6žÛWYA¼py+ô¯ÝDJÍl*äqÓ÷µÎÔÜ~µŸêñŒ Óm!Úê ˯‚«£òسiáÑFH–#ò½ •>†ÎÜÂ×¼y›[ø6üÖüŽú•bA¼pyõR±}<æ,¼mŠTȃ^Ù¸µÂ—…&ëaþ-³8!ö«ö”VS@ Ö£=wë‘­éõׯ],Ÿ ½7ÍöBÿ]¨ºøjAÈÉVæÍ=³“­^¸¼ü™œ¢Hïò4ét¶×áj_ožÔ¶¶"l!ÚúÌÇG ×6µ~ìŽ 7Zaž²PˈS¡›ýWs tŒ.TÝüÊ®‚H=jcusé_š¬GzéÀŒ­?­šiäÝœ´wSÛ= Á…‰ë­CŸ5}Qã’«{™¸0q£)ŽËíJs=èþš¢óêï#l!ÚFÄógÑëÇ«µSןÜ_Ù¿ço‹s7ÈS¡›ƒ[óæ~Œ.TÝh1¯ª3J¾"½ÃÖb«9ɧ…G[¡îùUΩПð÷+@³½.W;—a¦o‚ÆðÂåà_¾ÙFË*¤B7[N{F$Dª®~»|W—˜ þ)¯?Éøº]ñÌC |.LÜ{¾ “zX!º>¾qÎ"&nD=àDzÇ'Çí׃ϯEÒZ#¶YWݺD °…h-eø‹éTèfŸÞžÑ…ªëK¥ü^êk$LÜj3+7OŸ ùúúÓvl!ÚF¸·íÍñs>©Ð¦â?¢´ï—RN.L\ú³ ‘½ÄK…~4òâ4À¢m„|ƒ÷uàíÿTàFú¨½l!À¢mD|‡÷£àÒ‚TàÀ“ÃöñàÛ¿¡ž"i\F¿t£•7.¢cl!ÚJ[ùÅó'ù˜Æ©À¶âÜévÙÎòŽmD|‚«Šà­èTàÀ“ÃöëÁáé§wÍÿ­%bóª?Œ.o´™µØî&•¿hc’ëÇ/ÏMŸ§Â¾. 9«Š[ˆ¶ÑP¶êÚ¸îÿû¿â3Ö¢?„­,÷ŸöHy„‰[-e.›!''÷²ó¾ëÆËÉÅØB´¶²÷ìÉm½¥ôðŠÜ›v~áÐȉóX^¸¼úãÜólu*ì^ï^Üö#ТmüÙ0Ï…¦Â6^R/}yìíï%ÜN…m$*O}Õ¿©©öŠ!ºPu¥dÙÅoʯæüÕ§l‹ðyÜTØõ¶è/Jª®÷êcOÿI…hë-}?Jóh)lלºíG -DÛ øÇ3™y¨glH`ÆðÂåàOµj‘Æ“´/éapýª U7ÂŽ§¥Òcý’›Ù€]¨ºø‘»BJ…lŒ­«:º,4Ù ô¥â‚YÆù²Ÿ{.Ã÷µcg.L\ù4¾&é¤]úTØÏêó]] 7b\\p#K—y³`äF–.†.¯gé¦y8zsm%à?±Ÿ […h­}^*½z{ùo¶¾q%×ÿFàÂĘïõõQ{ #ëæ„«=…¢ U×?w Ø»Àw<¤ÂÞRçÝ1¶m#àyf‚÷r/ÍóäæwCt¡êVàùÙºTàùá¿m øñG$.LÜúç}#´Dc¶_ã4-ÍH—…&¡®Wÿ·§¹æjî,W.LÜú‚oI5äu3õ‰ yÝ^¸¼üíÒuÑîëIÿ”¿O2¾ oøÁC4FàÂİß*æ¥êR!£Ekz‘. MÖ½ôÏ©?õnžTàÆ¯èÇ‘¸0ñjÐÉ©ÿ¯a¯õ‰ û1ü×зóFðá3¯ÎSú/Ûœ 5žÓÒ…ªaŸ+=úc¶õþñFŠ1À¢] 89%]ÆüµÊ`¦Ó#ð2ê·p=•¾À'ÔœWR¼lè…õG¨.T]oíëçÇ€h9Æl¯©?Ç` Ñ6>|Ô³éYÏ“€¯oélzˆ.TÝ<|4hÒ^#uæ˜mè%…õG¨.TÝûçmÄÜWÖ‘6Óü Ñ…ªÿ¼X—” X/¥51@v…äZ!F—Dþ‹zV`×Õ­?Bu¡êzØ·ãÆjµN*ðaü+b*ZK¦·ñJèñÔÌ Ÿm„ûr…6+a” Üè¥n¤º"paâFЧú–Q{¾%ëæ Üžo Ñ…ªGìùïwÈ´ù›zñG$.LÜ 9=U” û•´ %¸è²ÐdýBŠmÙËòóò‡üý(Òs¨8&û¿ÿÌÓ¡Ÿ±s²jÜ"paâFÄsç •?‡þ„¿oùe{{ÛiÍêñ'ôΖo Ñ6B¾o—˜“’ ©Ð‡ãÍoÏ~Έ–«}¨Ç_Ðß|¾-DÛ yýØO{–5ëÐÀìϲ†èBÕõÀŚ“ ÿE=™F†fÿU=¸0q+äôq*ìêíOkÓe¡ÉF¨‡ˆR¥TðÀ0´ªÃÚ­DàÂÄ­°¿J¡Ii¤Â¾|Hü#Å’ñm+ññ‰÷ú.e.L\ߥÜÇÙz‹nTÌfù9ìÜ’Y>-<Úhß—ƒD´ì{*t`¢µk-½çÛB´«!‡&ˆþ]²¬C“,ÿ.Yˆ^†ýžn~]à!´¡²-óõhïÔH|.LÜûe£‚°ã” ÷yqÞ·¹u‡Œì ÉUüÓxñ4¶{ìÔ¡—Ò½G£ U7°õ‘ üù«ÎÔ-›Zx´îa¦§>S÷ÆKÔœ´ Á…‰A?Îq¯†N…>èU ~ü‰ ·¢^O"¶n‘¸Ù+¶n‘…àÂÄ çãZõ¦î¸z:z½Á4ÜRÞwkÏΖ§ÂÖKÚ³ü¶m£­¼}Á–´ýž =g¾¯TšKbt¡êFàý²g;gÝÜ” |X´ÔS¦÷þJèñô)­‡»/3ÚÄc'~IlÏiÄèBÕ?r —‡ß装0q£ÉôõüVëN܉#3÷N\.LÜúQ×Ï̆¦ÂRw7¢mO-¸·ùODÝÛü1ºPu#ðëD.ðM=jÙœæªd¾,4ÙŠ4^¯áÞ¨8u¨™¸7*bt¡êzà‡_o– ÜèÛ åBpaâFÐÇúøÜžEF|UäÏ¢‡èBÕÀÞeÉKëo[Š_'»íiÝ\˜¸ô…[X ùX oÌjðZx´ëõ£Ó’sÃúÑJhɹ[ˆ¶ð^n–Þm` ò×ÉEØB´­€×CÍÛÃå{ÐÃþ}øiÞ®ˆÀ…‰ëA»–ý)è¬?áï/Q¶÷7;¯ ¿ =À¢m…Lœµì…fÜÊ›ÝÙ á…Ë[¡ß¡ ‹»Ðü”ëCÿÿ§í^’\×u,€Nåö:aý¥æJõ0ÿT¦E¥eÚ7¨NEœ¨wW*`Š?€”»Ò<€mÄú³¢€¶™8¾í›Y¿31À¢m|kØÕ}©ÀëCC]b.LÜ :\LàÏSdúýyŠ\˜¸ô9`ë9:0øÚà¯NÎl!ÚFÈ—žJLŽ û¾‹å…Ë롟—]…¯½ýS*'>¬ZÚÿl3Ó;ýcf_ÝØâÓ£­popçâOXdxIgí%U‡Ñ[ˆ¶ò˽5¬O3¤ŸÆ¿jâ×çœ,¥¾ú®×‡„èBÕÕ3rý”O=2¯OOnÌ»Ú/~Á…‰ÞDkÈËeÜX`ÜÈËEàÂÄ /ôKz·•¼Ô]šl…ßQô§@³ŒC«6© Ð[ˆ¶r~Ž%öão¢e†è²Ðd+Ô ·'òCnTØB´p_>NÃÊf¥†œ†4\.L\úÜü¢ÌEæ­-³;)Š^¸¼ü×> áÜð…ý˜Ñvã³]íný{ñtYh²õ ¢Ke81™ ÛèÛª¶m#àc­DûFâ#ãõ®¶%ñ 7‚¾쩦wéd[6„Ct¡êFà7t%§Ra¯©?õ` ÑÖ¾ôÇY}µì¿+øk=Á»½+¢­ïK^*œ›%Ò»ü<›=}yuî܇Á§…G­»z¾éÆð2Ô† {À¸0q+èüÔTàÏ×gàîóiáÑF¸™31– zü ½[ˆ¶pþ~S*ìëüжO` Ñ6°Û” ¼új6ì’ñiáÑV¸Ñ%>œ)H… ¼˜þ G€-D[ø:ì îßSɶñî´ï©ØB´€µJÕ{*ëån^ãÕlÙQáÓ£pOcÀ¦u*ø£ÀfØ[î1¼py+øë«ÀŽr"0ô°ýª}äÂ3¾oWü`?¡w.¸0qõë6}×tuR±æ[õ˜¸0q£)™kâO© '-sí–»0Yh²ém`oG¦ÂFfÿ6j€-DÛø'N[2™G‰–”A /\^þ† p«6À•þ‚û‘\£– z<ª‚¹•u¶m㇬ž »±]›ñ×ÉÛ¬åÓ£p¿Z7g¿3½ËÏ:þ[Â]Z>-<ÚŠuíÀhû.íV]ζïÒØB´€O¯Ó¿œ¯Í¤‚'u–|àóóŸ/ü`?¡÷%¸0q}ÝãÐ{MWç(ÛQy@Å…‰MqÝÊÉ!-aíg¿òýë[í ƒ[ˆ¶ðm"o¼§‚® ù‚[ˆ¶otÛŸ1È60Hø3¶m=à;ç=öC+mÏÐe¡ÉF¨ÇéKZ2™®¾“-©‚[ˆ¶ïec×u¥Â~Xuíi!ºPu½*mçE®¾þýBº,4YmáÃc(W&Ä/œúe*[Ì«ö<‘®öæ¿ M#l!ÚFÈÇÚ‘æÕ÷iW[Š{íÍ—…&¡^'“n>¬yÊj¥hûiÍZx´kþü5vµ‰¸gÝ|Yh²êþq¹ó‰V þ)ß"r÷7^ñ“}þ µuGàÂݯÙ7gg=ô‘Éà&"l!ÚV¼7¨÷vŸ£<åz?è>H@ 6b½ h—Ò3>yàÅœÔSy.LÜû:s :R!_—h¬2”[ˆ¶îjyÞŠþÔͺ‹æ}Œ.T]]Ñ}þ õò®Tè³¾MãÇ»H\˜¸õçoD.[L>©Þ^oa ÑÖ;˜aé‘©À'‡í׃o—Ê_ÒÅú©ÀŸî÷CsCç+}¨Ï? Nnù´ðèvòzì}cÿ”B´õ>Ž ÚNÜ·0Ÿ8ñE‰¸:GäÓ£pOÏß’x³k*huêé–_±žíZb·,4Y­Æ5÷Üu4÷ùw<¶l~ÿù|o¿_*^ÿüÛ$"Dª®O#Fþt?¶QŽÒ¾L °…hoý+ëH*™Mïô0){XüÓL¶+ü$]6¬‡yz åoH\ fýZTD\ †èBÕõeúÍ%’÷€Sëõ?wv¯#paâFkß/Åòœmà?{> é;p©À°4ìFàÂÄõt~ûp3¥"²Œùå«Íïÿ–}/ñù‰úP—1¿…1{nÕX*äcsÿËL¿½Ô-€mÅúµ7Fºç)öÔëû‘yÂÜ?®úÁæ¿¡Ž!ºPu}!äà{•×ûÛ¼ûFÕ…ª-²z±LûB(Û¹7ç.„l!ÚFÀ/µó”’ºTÈõŽË]@ Öc½Œv¶½½(-Ëõ§öW¥ñiáÑF¬kŸ˜¾³Zjß(¸³ŠÀ…‰Aß±¹›¿<-Ëõ¦â¯OãÓ£­X£9â1Û×íHbê1Dª®‡}°_iX‡¯µ‹íï¬Ã#paâFÐÁÃlyœ¿è2ßAÌ&gjŠî›bt¡êÆ/:OÜV*ä‡þ‚¶§Ýª7¶çÝîÓF°]OêóTàú ä·»@[ˆ¶qþÑøTàÀ“ÃöëÁwðRŒUíjÕk&ös ÑÖÍË’ð»}£°nûè­˜•u!ºPu=‡µö«¶EǙ֗½Žà|¥ay˜ñg`îâO 6Þ }§ç#RGˆÛ)¶m=âû£Z‡}c˜u+¯c¢ U7°ÌJ^}G–‡|Zx´îqçVŤB•ŸÑ ¿yšŠÉáícÕ©°ÕuÕÓà|Zx´^¼Ï#õgl´éù’–¥d“SAO“š¾;ðùÑ¿á×ï¯z¨ù¸0q=%ëÐGMßÔߊý›Lõ›hoì1EàÂÄ—ˆ¾Wc„œ¶Ã´/3½ 7^¡ã •±è%Òy¤ïsQí1ÒÿüÿÏú·ÅL„.T݃6z‹¢m¼D×ÖûÆõ™6 IƼüéç+žOp?ÿ„¾‚À…‰¯®/š®÷çÇ’“Š W›â³ð…Zò‘Þe¤W\µ^qWa ÑV›¡ß4¼×:óñ‘ïp§êÂÔv8MX—è¾3㤑h×^ ­Ž'&n´EXÿý®íw½¬Ñ¸üžõ‹öÚ÷÷OÞ<Ó¾ÁÄ —ÿØâ=~ξ3YaâF?0¿ŽsÓŽ¥BÂßguùÄëÐ_íC=þ‚Þûòm!ÚFȰ6Ó]@yÒÀ˜1¨» ½6ÿÑ…©/®«‹Æ^Ûuþù|]˜ºÑ/‡v9¹¸TÐjêóF 1¢mÄ{8á ½7æí§Óct¡êj"~ì{p?Ú]×{ÒÈ:©ï¿¶ £ S×û]‡>«Ï®mŒý€n:taêz?ÐÛ_W¿‘_=ézÿåO°FØB´x×ZR:>zžG“kÍct¡êFà?·vy‰£S‡Þ9ŠÑ…ª[_Ùûõ©°Ÿþ,lçe"l!ÚzÀ¸|óá-P>msƒÇ­w¡ºPu#ìe ¯*ï´ÍGo®Ë‹Ñ…ª[aŸ©%)©€¯ÏMº|h–žL 6Býy‰sw7óG§8}ß¼±»à —××ÃñÑ7âÍ‘© {µÍ4ßw@ ¶Zzå¬e×EÜš›/Ÿ*Ès¶m}Sn>Ö[Äí­TÐÀ@äÞ”ãÓ£W3`s+¸Qqc[.&n}F·å%…©Ðþ°¡Æ[]p+è¯ÚÒíÚ©°‡Eíü'æK‰O|6z.LÜŠ9ºê¨M…4ô†âÖåQÙºñm ®ÏÏ—¹2—»qw?×Ì2ïe¿KÜ…Îz)?#îB‡èBÕÀÓWÿ© }kÇ‚ 6Âü¹,'îß.Ûuˆû^‹Ó¾¢ U·ÿ±«ÀÚ¿Ít~òY0ǧ…GëÁ^ƒÿÌá©°õÕáC­¶m}Ä_{tÊßp4”€M¥¯×Vž Ñ¿}›uhÐôo߆èBÕÀ¿ȱ|÷.K¦«Ã§{… 6Â<ÕNÜØ_ÉøÑD¶oÇØnì¯DàÂÄîp«Z΃pýÉ·¾²ººsÖ”€ë };>¯Î½[-úuô¼¯w¡ºPu#ðSOž#¦‚¾Ü‹ûñàÙÖÂÞŸö¨§'l!Úúu3ÛŠN‡ð]'!âzKÙ/Ÿ‹&MoSa7V·OËl!ÚFÀóä¶×·?Ý7¦7šŠÛ~=ø0¢¾h¸ºm›qàÁaûÕT†ÚàÜ|e#Ã6šÊxÝþ°#ûÏÇgý ?çpnò¿Ù‡šÿ‚r¾-DÛyµÂÌ™]*p ±ÀöëÁ×|pü³TàõÇíÎmû/eØFSÙzv-E*ìéXç“‹@"paâzÈ~|¨~IÃÕXÙeøºµ’õa¿êù•ãoè=b„.T]¿2çLJʗoéëGÝáQÎIþNu°{m°ÐçtZx´¾ðüºûǪ®¶Ä鹟üÓ¬¯,ÂGÿ2fÿØ%úýçocY÷ŸUíï^ѦöŒ1ºPuu :=ÆÚ2±ù^†­¤?øŠuêøýU/>3¤æ)´³Ž§ý0öpÚO;ÆèBÕŸt©ßؼñwêfýmóÆ_Œ.T]íܧGí“’í×3l£ÅÀµæî#²§ 5vXïBu¡êzØ{þ6Z*ìÇ߆+kó/ M6BýÚh%]¡–Þéßå–V¯™›È8ö~ؽk¾-DÛˆ7\8 ŸŒI… ½•°Þ…êBÕ°o—ÚÕR©àŸò÷Üù”›ÌtÅ3{ü ½­àÂÄõ°µêáÇ×Oj28ßÅòBåÈ?+³?½ÛÆÕ[Í'háÑV´øÇô/é²n^ŒÛ¾¤ Ñ…ª[GküÙ¿çÖ€·~Õ¾‹å…Ë¡? ¸+ÒTè¯)/q-` Ñ6B~Iî0ޤ~¾Fã—œæ“|Yh²çñ8§Í]<§B‡ºDÿÂ?Dªn¾VÀ}ã&•‡:DœïbyáòFèÇê[¼5Ö'\O½EÖ|Yh²çëiÒÙ¤TèÆy–lóÕ>Ôã/¨Ãf€-DÛù¼Ãݹ×e¬½±ë¢ U7 «Sõ›G~Õ†+l‚x¡òzä§Ëîe/:òó6ÿáAÝ@çÓ£­XoìúðTØú'+šËÚháÑj±Õ”·ç¡Î¼aS1óPذ©à •7Z:|,Ç9Ö‰C=¢ÿÓ›A¼Py#òKuEzg§+óæÙÖ;]1¼py#øðQÿH'5ÿ-HA¼Py+òøüÔ¿¯~½ýtü-ü¥î«‡èBÕõÀÏ}uÉtg+fî«¿ë­˜^¸¼üêñó•ÂÏí¥‡ÞXœïby¡òFäëèߨø½^Y{gý¿!ºPu#ð+<«oÙ+È<ò»¶ìÄðBå­Ø×fõÍG?OÛü]Ýzª U7¾á©ÿ®ä|)xª½¯þ]É]¨ºøýR ƺý.úþ¾“íq¹Ú‡zü½ŸáÛB´Á“nh)#>Nz­SÖǵÔ×C7*MCô2ê÷t=îËPl+4²}l©²K4"paâVÌáâ–m²ÌC“†m²^¨¼{øD|l;64€õ.Tªn…ߦiØ“Ï<4hØ“á…ʱ? ç¡ÙL¯ÍfôÞæÐYÁ¦Í ô®†o Ñ6B¾Âõ-; ¾éÙ²#à •7b÷óß„rÚP/ ë]¨.TÝû^Ý‚¸“Êüщ-ôüS /\Þ þq¿õ€Tè½Ñrn\^¢ U×k ÖÇq,Z/Gm?D“më…½qŽ&Dª®·÷õ±Á3&Ö/ëOøû5&Ù÷«}¨Ç_Ps~¶m#äõo*ßI:­x^¥%éà •·bî¿ûïH;mdZà¿%-Fªn…=¿O‹ö>]|`*ìë¸ÄºÅ0¢m|ÂËtj 2ÍÂj bxáòFð—\í™ ÚzOÛ«T#paâÆìq HÈ—Q¯O¦‡6PK ì2æwl£•oõ½÷ödö dlÛ“Ù!ºPu#ðû€ ¦øµƒ©°ëƒ’ÿ¶Ä[ˆ¶p|›­¡`fÝáMë–‚™^¨¼ûíò½ZõC*t ƒìµR­Û°…h!ë[îí©½ È_µ§öBt¡êFàñû;Z²Ù™‡ÞÔ†lv /TÞˆý‚ïƒ5¤U3¼°ƒöÂêIÕ\ˆ¸õ½¾ÖžcÚꉔ9¦]¨ºø=wð¹6|]ç²Çeä©Ð}/ßw‘¸0q+êxENC2;óPÙÌŽá…Ê[±ßÁï¸ô<z½Ý4\?íÀu$íɱ¬›[…íɱ8¿Óž£èF›z~B5ºy©W{28Dª®oçí¯\0ëû$éݾ\9[|/ËÓø&?ÍÃ×Û:[šl´ñqb§QSa»2íéß[ˆ¶ðšÝž ;hý*ï™0>-<Ú 6¼IÝñÝëY¶ß]¨ºþ‚}žè"aâF›Á/jj©ÏÈ<4Ïm¨Ïˆá…Êë_÷ÙónCßëåwù’ì)Ÿ9.Éþù/~Ï‹ü´Mk€ŽÐ…ªͲZ¡ÑžV>l«Å·g•÷ú‰Úö¬27¦¡ÛrÌx·ð¥ÂÖç7n °…hm|C7h2<v}R×İ…hß?>ÓDË%g»>±kÈ%ØB´­€¿®kc¶L><õ/Wžô4_é=þ€Þ¥ÐiáÑj¸¢ev¡G*ôçÛóüZ³H%Fªn~€ói 5' ‹šòÒÖ.!¸q#êSÏ®9H… ŒCîZ‰[ˆ¶ðúuxíµ§½£îZ‰]¨ºø½ØýØ8÷è௒¥7Î"¹í.ТmD|‹¨ïHt]«Úéjµ)!¸q+êók¾øe.ê¿§ùEïG®›ù­³TàÆ2Ñw‘¸0qã÷ÜÁt‹£V'80Ôù«ŒBp!âzÌûÇsË¢þ…‰<ÏýøÂ„: Íò/š¿äñÑ%f{Ú®öñEŒãhñ°…h«{¸|WpuÎÒ÷Û¢m´Áz¥B{¥Û©C“-w¥[Œ.TÝüp ü×YQ{ Ç©?ÔYh{G„-D[Ý6Ÿû1¢P,|}Õ QµÈ-"n4ôKÔIeÈ-ÑæBŽ» øÛ8½$"½Ó¯·ó.|yæú¹àæRÂSÏ/>IïBu¡êFcAKê­Oüaˆ¶W\ñÂå­ÐïØôQ¦ÿêžE–ãÜ+3F}ÒÅ·…hÓ\+‰šûeeÛB´6¸ò OÒ;ÞïO{ÍL.LÜ :œüóÿ:²nñÿÅèBÕÕ⿹ßîüEh²ÑZ¶ICª8ëOøûÔ?Ûóxµs’åùôñ™o ÑÆBNªS*®OÏÛë«"ì2àwl+àxVÞ_ÚzòÀúömÙÿ¶xÖ·þp!âVÔw»™·Wµv}…ë¯j‹°…hçW‡¥Â®@þš6¾,4Ù uu_»¹,ùÄswµQë’Cpaâúë¿‚[ÝLh8ÊzâÈrÜÁw±¼py½½¢7™;*S?hCÍf.D܈ù¸°3Ú©°I Zž. M6B=Á›¶ [üYzÃUë Õ þ[ˆ¶òùš(笛S?ݯO~Òóv¥õùÔ>œO ¶Â½³7÷Sa½`{R"À¢m|éé`©ÀëãNKíZ.DÜŠù%­G«0IoV=ݨ‰á…Ë[Á?æü¼£½© GeÔ~™/ M6"ÍϦÂ~(?âl']šl…šž»J…]›Ï6dÜè²Ðd#Ô{@‰P*t³~¿½º)Dª®~êGö¦~*l`ŠåÏEØB´­€ƒ›ãŽ„TàÀ«¡x""nÅ|A§†-ÙÎÌ#“«–lg /\Þ>?• »:"ù“otYh²êÝoH¼eøo¸q#æËÂΤ¤Â"(À¢m¼V˜u'Ó9]ªœ¾¼œwòœ|Zx´îKŽ“ö-îTðOùûŸ÷+žÙãoè½J.LÜ ;˜ÿiÉsf¼:5d9ù´Ðh=Úó™á¤íë§‚ÖûÂölŸm-enH'gxoÒɸq#æùðØôW¾ûщïy8ôßþêOwØ󮫬Oz-©ï"qaâVÔѼœŸM… ̱üyå[ˆ¶ða¬üœg€ÿB·l››n½ Õ…ª[a?jV­Oy´ùþôÈø3›?ýî«Äl…n» ´…h¿–¬Ð>nž ¾>µ]êÔVDpaâFØÑe­¿Œb®M÷Û«(ø´ðh+Ø`Ù~K ż€›’-5¸q#æåÑhâ5WÙ~# ï"qaâúA¬yÁÁsÓ ½#ß*™,¿ÝÚB´­F>¿7òï'®\Êòó‡6ÝÅÑ£­X×?®x£(k¾œŠ~–Ñp‹²bxáòFðw¨¡7`ÎrµÉ4œ`æÓ£õX/±€%ë¿"'bùJ€-D[¿$jÉ¥+ó¤ö-s¾mi9~Ñ9_Ë5ÿŒÃýôoÑg!ºPu}N±T«)Ú«z–ê…íU=¶mãõïÁÌ{KUOÆ)CUO.D܈ù[a «.&<2:·TõÄðÂåàW—þ7JM2þ¨eú Mø´Ðh#Úù^Áæzr}f±¼Ê§¿'úÚëël!ÚÕp3kcÊ€ÿ¦'À.~Ç6~©,§H…||û„{¦O Öc½ÖÒïíµk-…Ý^ëÀ§…GWƒM­(Ã]p*øtîvÚˆv-cОn»ÖêýüÙv>-<Ú v¥DèFÒ7ÛF§Ûîm!ÚFÀ÷¥Ø%©ÐÍÕT{yCˆ.TÝüÒƒ¯‘?ï›mµ7lOûÒe¡ÉV¨ù©ÓT൑§%å».fö„ïmÚˆöVÙ&¼‘zÌ6ÐúS¶m=à3võ­ôïÊÒe¡ÉV¨Á ª–Ùír Ðz'öcù´Ðh#Úü­žTØ×ѶE` Ñ®œ¹ÕS¼úVú7¨èrìvÙõ±Šº|&ºøsIátÌwæþœZöÿ†íñÏÈëfzR~C¿Ü…ÉB“õHïôMžTÐe‡±}cŠ 6Â< ëÿ>I¶«ï¡›„. M¶BMßlH…ýPº¥[$tYh²êqCf7 ÷efy~>ô·B*7ÝÅÑ£«±·¿`ßþ®ô×h?(ô×hsè¯Ñn£hO môƒÕ©°çFé×c_n£àUO¦‚Êßë¦3¾ W<³ÇßÐ[J.LÜh-óDzƒ¸MœõãG]¿Ÿ$mß&Ñ…ª[ßÞ'lÄÐl áïå‚í ¸0q#ækÿ¾akÎøuSƒy°9†.o„ž¿ › »:MôoÓe¡ÉF¨w{r¦ÌÚLnS}ÈÕI"Nwq´ðh+Ö8Ù‚¿™œ »>Ùòê¦áyœðh5Úè¼þsºÂ@œQ÷ï—‹Qxe»©à©á¨N µÔB.L\o'Ï=ræu|©ë} Lwq´ðhõËËo6§—úúØm´ÑDŽòkb9æ‹^®»x”,Q*ìg‡2ö_¦QíÙ­[ˆ¶ñ[®óß´žsÚõEo Dãç _ônvR7î%<éã}ÿÖ¸ývh Ñ6ZÉíø6ÜwÒõþ·»@[x¶1.\lάêëc·Ñz+¹\æ=>¾o‡½IÎ:¯ü°<û‘GÿO?^ñ§û}Ò“éeºÒzüµ™ðiáÑF¸×WÚ’·«‘ ÞÜÝlß“ â…ËëÁú×F# ø˜\}«ðÊ]˜,4ÙˆóŒ<þ³']ïÁý‡#láÙF¸×‰[Ì’ ùÚ[±Jp"l!ÚF¸ êµÉ©Àšc?ÞEâÂÄõ —®ÛêRðW© ë¯&nw¶ðl+Ü+=Á› Üh)í©é\˜¸ôË-¤ÌR¨ ?LJ‘Z Å—…&q>Š:¨Wl¦¯wƒ —ƒ†àÂÄÕëˆN}ì_=ÊG¦û\Wå-±¼®ê‡Ÿ™Õ¿MŸKDàe\náFc¬œ_j>;wÊÇøð¥•·ž  …G[±žÈå„© «Ì¿'ë2¾¼Íðöø½–¾ŒÑ…©/>®¯ê³« Çq2_ ç!OºÚZDFØÂ³7訚¡æHS³«†ìn.L\ßYó‘ê$LÝh0ÛMjÝEP§\Ÿ!º« háÑz¬§·K6Y»³©àÚŽí{mǽå^¸¼üÊéÑæ“˧\ŸÁtG ¶b½’kçRA#½á¦öµÚy–]˜º>sè»úìeÜ/?)”2h8~Òõùnw¶ðl}J1 3ÿǦn4Äã#&ã㡯Ç3¿À|†æwcoÖ‡¡]¨ºÑ1.öåa͇ÞO¹Þ»O½УX¯àö{ï.ºÌ4ðþ¬½úvªu—!º0uãÝÇõAÓ‡òí¼ü¤¯ÍRJ2¶Q$ÙžJ °…hÃP.ø þœÂÔ÷¯}„åF¸þçià\˜¸ôùñª|e}È(øå+ EKÏô:^é=þ€ú†òiáÑF¸û­ÒÆo¤3n´”ià\˜¸ôË×(­IܪÍYÔS?Y®O‡`º‹£…G[±Æ2B-EÒÙF†ŸIÜÔN»º{;膶C¦n´Ç©e~_æ#þSò'>ôZýk¦×åJèñôñN ¶Â]«ç¹Q ’ñúL¨¥$&n}ɵe“¾’Ï3àŸŽJ…~ýIyŸ½ŠÑ…ª«Ÿ½ZªÀßIÞV/S¿“¼À…‰­>î½ ê¤Fsi¾ *&®‡|AѺïƒ:ièÁQ¼‹Ä…‰!_öT*윹ýò~ÞØ9 °…hßÀ…KÛl#S\µ"dP;–]˜º¾pqèj†uÐßÿ^Zàº0u£=î}O1¸¶#rg/”O ¶Âž\Íô-—cã•Â}O.L\ùÚWn_¾³šñç£ÜP>-<Ú÷Öø¬ê§®Ì³t…j} ¶ñ]˜º>ÀáúöPŸ]Ý$^'´.Ä¡ S7ÚcÀ†K*ðÚPѲQħ…GWÃÍ-Ã)ãmn´´—…èeÔïéFàgp¿Âé\¦¡ñÅ»H\˜¸òõ²éÿ-ƒûÈ´û^Š,ÓßÞùGSÉöÖ_í§züuæ` Ñ6Æ8¼ì/?%£2xuºÕ°Áʧ…GëõCëQáÃü)…h¯77” ýÚ³óZ!ºPõ¼Ö%49¡¸êsÅ\#²9ù9׈Ìë¿í¿qø7 Vht¡êzÊo=¶D¸‡S¡sE?ÞEâBÄQiGëNÝŒ0u}`‚wÐüéÊKbyÉJ>-<ÚöcAßN5Yñq°7:ÐÆqüõè–r|zÙ3:L;NÉ¥BÂÒpÀÇñ˜ 7Úâ<¯¾;mžqè5r§Í#paâVÐ/‡d9w §ÂžFõ-:õm¹ê›ÿ†:Æ…èBÕ­°£C¨ãôc*tà5m8'»]NÐ>• ý ¿ÞãœZ¬ïö“}þ‰Òîm!ÚzkÙpÒ¿WPõ¬_Ö뭥娌·7'àVÐt8ò§¸3Žtêþw.LÜz—ˆàÇñR¡-Ç_þ*m%}Ê!½Óèïf{ÛJ{}ÚÆ¥'¶m£©\> Ì©*H=<[ø·¼âbˆ[ˆ¶ïÝÈq÷I…¼š '•`¼åª nƒÜÉÐïÈݹÐ[ˆ¶ptCÄqt+:ÐÊqüõèk}÷¿½`!ëæz{ÁBˆ.TÝh3—»Þ9©Ë2êõ½!ã`—¿c«ñ^7/Íuê¯_“—䊰…hdq^~¹éµF"n4–.Ü …?öB~óhÄ”B.LÜúø|ý©·a§7Ç9/ÞEâÂÄÕ¤ßúXÐ}|u+DÜh.xŠË»ñ¿^?[içÞ}ÿ[ˆ¶ð>y‰øí²TØ×F~×îm!ÚVÀ"‹þo+äîí© G¥Ü¯ýJ¾,4ÙŠ4¼M¡æ(?÷¥BºAïü8¾"DÜú¯šñsƒ©ÐGÇñ×£pzÕ½ÍâH/îÞæÁ…‰íeéùm©ÐÍiVs5^Œ.T]­Æ[{üöJüdX*tàEõjsàøÞ™q£µÃ·@:¥B¯?º=úVßjiÞS<õç–Å×B‚öÅ[ˆ¶ÑZ6þÞy*p¨[÷nú‡àÂÄõµó0 Ë[|^'D\o.|Ó¹ã4D*t sÁñף穵J9:ðèþ“ëOú>—s_ŠOýŸ|ÑóÌÞ#N…}ìÊ}ï¹Ú7·#paâú´h˜¯å|úïÖœüSþ¾Ý’ñm¿â™=þ†:ÐEàÂľk©Îu›w‰ß¶ý¿O\š7‰l!ÚÆ0·¢›þë}¸ÑT.³\Î÷SAO½> e|\ñƒ=þD9Æu‘¸0qõ¬¢Gï5½@_qÙV:.LÜhŠÇYBjÉ\*ðQû›Ký"l!ÚVÄ_ePߊ úüîû/ö:iµ_¹q³W„-D[÷3/„Ìn7mv«)­c?”c>-ó”mãêƒöÌS€-D[òÇ‘¿''DÜh…—çÓ€© ‘bÐíÈC.LÜ ùs ǼQ%¶1Bxé×cßGg^‘ xl”~5”i%GDx´ÑH&óo7n!;éê¨Öp Y„-DÛˆ÷ÖÓ÷UR÷“R¼zÒûx¥Ÿföõ!“N 6Ì Ü­m¸![ Åžú?cx¡?>ÃDLØfÝÜôhO؆èBÕõÉñr¬Œt=x*ìaÕóXß§ïŸøl¼ý¸0q½¨­d½¾°`ýÕŸŽ{py¥Z©ê‚íFY€-D»îé¯ýÝý˜^ïIû%Ýrmž\ƺ]6ÞÅÜTn¸ëmdw¬Wm4V«2&ø–E{nõJ­CýKµ‚x¡òƺÔGûæ”Õt¹ûê{æ·9cŧ…Goÿ6ô†k̸ÑPŽë݈‹ŸTЃÖÛ¶¯Øè²Ðd=Ò3| ˆZ]£Þ`vâPw‚ó],/TÞˆ<O<öC™`ÝØÉ§ËB“P× øï£;q¨™øo¤ â…Ê‘»nàûˆß¾ó1_/x ï{ØB´õ==Üp7Ú‰CÍç»X^¨¼ÞØþ‚<¶ñ¾ö„[ˆ¶ð\îE½Ä0ºþ"ݸ1&nD}œ+½Wû™†l©Èï¹ÈöC ¸0q#æÕŒd{ÑÔrù –h/› Ñ…ªaŸ?ztæfQæÍÃ*76‹bx¡òFìá;zõÙµ[;Oùaîí â…Êë‘g×U¤7Ø|W½tG 6BýxU'<¨û\Y6&£í;]ùz ¦-DÛ÷u¶c” êö»bx¡òVìуº­·öÞÆpð],/TÞˆüðjõœôE*裺êk“iϺØB´xÏìˆTÐÐh䮨ŒÀ…‰!_¸coØãÍ<Ô56ìñÆðBåØÃ·?à龜ºFœïby¡òzä·Ï Gæfïö¹wÇÜìá…ʱÿ˜,Ñöz·WÑâØs·zù´ðh+Ø=·ø*²±Üh/ °…h[áF·^fµOT§0‡úDœïby¡òV䋈ÙI…Ý«M¦ýã@¶m#àãkðí8NÞ3$Þhõè¨ûábã‹õ†”ãv¹îçËN9ÆðBåõßuÿÌ=ð’_{ýžööôW.LÜ z­jª= –mc•î¶_ÏÝ_VÔêÝ,Åïßæ»nº‹£…Gmd€·w[²G;ð•?ÿzzøž†ë½3…ç»X^¨¼>ÍØÇÙ/-QM°­h‘Bå×uÄ·^Ò왇f iö^¨|5ö¼õ{vµV¥yË —¡n†(/Õuo{’7ãÐ|ËäÝ—êÚ“¼ Üú §»ZR™‡:Eœ==zyIË·2…¦áë1¼Pyc0ø]…©m~Ç‹² öëw·+ƒQCaC /T^ýö 'KÓ;}ù ÕG7™íýÞŸ¶¾¡a ѶâMÏ—¦Â6fëÍyÞ[ˆ¶ð鯅³¾‘™ üé~}ò“Þ×+Õß? í}У­p¿v/IIÒTØÆiòæän„-DÛøˆg§ü• ' ýþJ† ^¨¼{ôv ‡úìÚÀ‰#?¬ƒïby¡òFä'<ƒä¯ q`>°)ómk=€m4ñzn½½ÖæÔó¢ëëÀÑ^k£ U·'ÁÔcµ^åä¡ùÎw±¼Py#öðmgþÏÄ84Àù.–*¯G¾±Ìt¥7VdíŸ Á…‰[A¯V|Ü(ë;ydÖpú>ˆ*oľŸáª¿ìäŸò÷©AÆ÷·éïÁB-ÿ Á…ˆQ? I¤ûCæ'^Žõ‡2Ó#N§…G[á®—%?+íN<¿AµÒ.&nýcŽÄª´;íãý™¿]êÝ|ÝD„-DÛ 8ž°ö—~<4JûK¿‚x¡òFì§žZT’ ø¡Î¼š aháÑV¨Áʆ†QŸ8´¼Àù.–*oD¾^os£.öä¡™.Îw±¼Py+öð2 ¡Èñ䫳ÝþÑ«Si5Á 7¢¾Á)ëyPæézÌ7,ùÛ?eÆ«GœN ¶Â½ÐÓ©ÀÇá/[R I[~îñJèñô®…N 6Â]5W•fZZx‹J#l!ÚVÀñ YæÉC㳿,3ˆ*¯Ç~8¾¯@ý¸{*pcNê¶»@[ˆ¶ñ|Ãñ^ÓÕ‰zÆ'‡í˃Û3¾ñ óÓ6‚’õþ1]õüQÓão¨i¯]¨úG{i ͬòÚIçOÙùËùOšþûo â…Ê«%ñÛËJ©¿¬Pu£"ªÊSÁë—·ôËÛâH;p!âÕ¨3«œË«ºß¹±:;À.~Ƕ¾²ËnSa?”5Ìbaº,4Ùõ—Ö´”«xEfK¹j /TÞˆý¼¢“ÒA›8ª•&¥°ÝùmxÂ+DÛŠ8žyi(‹Ï<4ui(‹á…ʱ?îâ­®d–‡º’ÑŸïù¦]«:íR7Bt¡êÆJç7•×û÷õ¸j4öíöÌ+Ô9—cË¿å¿ßï.mzivˆ.Tý£8ûòðµMž†À U7^Ö/Åj8I‘ùút½hÓuýE.DÜŠún}7>êvâÖLïÆgÝ‚xáòFè·í•î!}!-ø8j‰“³Íôoô=þ€¾è Ó£p¥ÓPn£÷VÁeüé~_¯?ò“¿¥Mr6æ÷è­œN ¶Â —cµ”ñøM-eü1¼Py=öã£vöùFÆ’eü¸0q}—·zïœ{ñ+<Úh+ø‡¨Z:eZáá|Ë •·b?“ 'RA«qh¯ö ËB“H§TRÁSôQ›¢ë'l"p!âFÔ§Â='TRëƒÜ³5¸q+æE6¬bìLI©æbl>-<ºìaýëÀ?–y‹q?òÆsÞb\Ÿy’íñ34Wíû~û#ÞDû#à7l+â×T=§ú-8°š”õº‘Χ…Gážá’½–ó™‡ÖA ç bx¡òFì¼d§á@Sæ¡)Qæ^¨¼{ü²Ã–³™f]³6ÐOzDàBÄ­¨ƒ;ÝŽ“©À«³®¦3¸q=æþ寖¢ìé­¢Ü~‘вcx¡òFìkÄ­ÝTÐz›ißæÓ£­`GÔ¦‚:FµP¯À…ˆ[QGϧá%˜©Àޱ¡x4"nÄÿ[K]æ‘©¥À.†*oÄþ·"’ž“Noý´w2ê1¼py+øø.oC­]æŽrU{auƒ "nD}ßÈ[© ù€{C†O Öƒ=?°-uO¥Q*ðú¨ÔR# ·bÎOJ§()À;Ét>-<Ú7þ¸–Ê‘ùr1|mÐP9à •7b?EäÓSÁ½×¦rj-@.D‹:+ÛXÆ\ï½îäI#ð2æwp+æ·ù°ò¤™>^¢ß ^ž”O 6‚½Lô†TàÀØßP| 7bŽa­%u—yh jHÝÅðBåØ_vìyɯTðÀë¤vŒzâ."nE½Röz'}”ñê`Ô”>ŠÀ…ˆ[1}m‚óëTÐâ×d¼Wü`?¡îtEàÂÄõ/ãÙÑ»|­€qs.ø¨ï¸í.ТmDüHR3ê©ÀI@C-@.D܈ùp9?ò¥_9Gçc깎!ËG—µ2è.ŽmÄzª´ç¡3­>íyh>-<Ú 6ž¤h(¸XЄ렎öz¹E.DÜŠ:ØWµä¡3̰òиq#æ+ºg†W-¤Ÿ†z‹\ˆ¸ó½ÒÎÛ“qË^i+íÉ8>-ùÌÍòi¡ÑF´g8=ÑRa‘y`ôWÓZz}E.D\¿-ãÃ2¨cè’ç¢Ã1]y[øçúoý·è×–ØePîØú÷¤×íÄ2æD ™á\ˆ¸ñú£ßŒqʤ~ІŸ\ˆ¸ó½¸Û‚xP<Ûב™xT‚” {œÔÒÒŒ÷ÃRâûÿ¬¸í"qaâzÌÙõé ®ŽøîŠ.+Öïí£þœ{Æk#}KÆO ¶¢½™µ¯7Žgúøèù¼q€-DÛˆwN{mÒ£·ížQÁx‰ ·BŽ.ZWMÃþö±S«·Âñ."nÅ|+RZUC¶ã´íU ¶m#àºûˆ×Ø¥¦° Õ¸q#æãqÔ˜÷ušTÐjM[îÂd¡ÉV¤_]øØ8/È}ŽÊGÆô÷ŸÏœÆ3éÐ?¬ƒhYÂß_Ì!7’õjêñŒpÓm!ÚFÈç׳Èí'ÿ²m ø7Îþ…èBÕ°çô™ßvI… ͳ`½ Õ…ª[aG'C µA¯.ß*ƒø´Ðh+ÚèiΆª Œ?eCUP.D܈ùf4ÅŒ©ÀiVCf.D\ùþ¸ìÛÐê™R¡[%Úk±bt¡êFàãâî6ö9ãym;ø¾þû™-þnRjÝËI ÆKwq´ðh#ØüônWÇ e _–lEúc'‹Wôvê×’Wô£ UW‹Þ~ø•^T“ xüå@ûcœè¸q£±h:/ÖK ûþ2Ã\ˆ¸ó¥Z"Ý^¯rêæ5qÍõ*1ºPu#ðÇA}`²)ã³Þ½TïðÒ]-<Ú 6¿Ä&xuø÷—ÐB£­hƒé·†² ¯ÿ” eA!¸q#æÛk¾òÜüØ>ßžœj:Þž~ú™ ýüï·äõ)y¶ë¡¾Î´æüä[¯®—…àÂÄõ˜÷ÉÚTàÕ÷ÓŸd …F[ÑþH0óJ)Níݵ1ºPu+ðwý²2û§»­•™Ù°…h?–¶Õ©aÿx(3!uôì«Ç9¼tG ¶‚ f&Ê(Nòýe!¸q#æã±ÿÑÿ WÚôùÍ7ûöýÕþóÐýó&[5臮'Tð.&nD=Ÿ¶¢>«¼ºèÌ:ðì8~yôª=ö;ágÍÃðmÖì•»0Yh²ÑDê9÷ö"S7S@ÍE 1ºPu+ðü,s*ðê¤ÜŸ …FÑ^‡Z3o/º9uh:ë—gÇýcPæBúle­M…¼tG 6 z ¿¡„âÄ)–¿„""nÄ|Gg)«:‘Ð×?;8IÁíÎmã !Ú¿-<Ú 6¿Ì#xµ+o(OáÓB£h癲ëö >Nù¡¾4íW|DØB´pOì} ôNû›Í»WtYh²¾¢/× ëïLË'Nú9ØL_¶îì.Оm5ì™_ñ[FššÀzs®^Fýžn¾výSsyĸc¼»:‚. M¶ ž©j©Èxu„o¨ŒàÓB£h׳è7*ó²žÓHìʼ]¨ºø ùM>ñsÒµñ§å?¶ðl=ÜS¿Â㦿4/ëÐØë]¨.TÝ<;ýÞeõjNØ“]!¹FˆR<©À«cOCjŠO 6¢=÷Pǽ¨ :;Ét½Äí.Оm„û¸<ŽY«” ûºA¬² Ñ…ª[aÇG…‡{û>ëOø{±y>æ8¾Ù‡zü½¡óm!ÚFÈ×ZmDsÒ8ÓÕ±Ç2fÂ0¿ò¤Ó»é5ÉxÚc_ÚãÓÞõÍÁ[ˆ¶¾A8? –opœtuÜiøG„-<[oÞ3ž\ôï8Ðý Z÷§Ç›N ¶ÂÍNþ¥‚®t K6,,Ø3?• Û¸‡¢=` Ñ6>eüË î—,<½{*làõ§l!ÚzÀ×Ç1C<Ð/³Ï¼cß×ø’/W[oΪ¶ÀrÃ#t½âvh Ï6~Èq-ûAZ "ÛÇÊíñeèF "À¢m<uP—7Žì®—S+ÊpãÐnˆ.TÝûÒcÖ¤tXåÛy‘gö^V*l ÷ïÁØB´Ÿr…êò<‡œJ»:úlj/®ö‚Ýt±l€-<Ûú)??´|l¶­{šó±¶m}ŸiÝŽ¢(âçÖSaë/}ûgâ#l!ÚF G¯"Í)¶þ/AS¿ºÝ«#¦_ïBu¡êVØGöÖ{*l£½´§ l!ÚzÀ·G_ûAÛSc77kšSc¸0q½7ßú# 4éyš1ãù'Ÿtz¾DëþÏØÝ˸‘ïpÛ] -DÛhæÃër¡ñËdhÚsÖàø1§|‹à6üKŒ“9~fÛø5³ÞÛUó©¡Á,± Ñ…ªëE6~Wyu·IúAŸ^]P¨E%Çgîƒ 7Úúd7’5ÛTNqi¹>-<Ú öNgu:4éᮦø.–.o„~]±×?Cø²Ë+ ‰Wñfûxw‘¸0qcV„]¸Øro¦ë{!¸ÝÚ³×g‡¶ÌZ®)Ítõ±[î) °…g[á®]ÂÛžêÌ60ÂùS¶m+à+82¯êàc´ðÛp¾‹å…Ëë¡ßÕs{ùJÖ"°ùûò¹½|%Dªn~÷üꔨ|YK»:^ j¿«ž @»å‚Î[x¶ñSN¯ íS©ÐŸð÷}ÖüþO7û©Aƒø¶m#ä38`ljŸ¨7ñz–ܯw¡ºPu+ìÕc7j+²nE7j+Bt¡êFàK[˜•©°©¿"À¢m|ƒªK[®’Ìt}(j¸K2Àžm…{-KZ•Â~Ù ¨5 tYh²¾w³o•jøõ ÙÖ_Éõ ¶m£mïXîÃqÒ½´™ÉìTØFPÚ“ð¶mëÇÜàVC½IæÍiÄ‚“^¸¼üýßãQ9Â7çEV.Òþ8çý=ì/øùŠþNnË]˜,4ÙŠsõwl¬4yáÏ.+!”Ti„ WÆå_}|uå¤rûTØã¨W±d|úÀÇ'®õåA¸0q£¡ÐI÷õ·/º>[Æí.Оm„›^8Þiõ‡l,v€…[a3áGÆ_ö<ÀóoÅ‹‡fÞ2Š0^¸¼ñ»Æ+#þhëgm½3"&nŒÊ•Ïxž“¬M™dé-ý€ëÓ7TîÂd¡ÉFÓ®-ÚZsî/»ÚÕ:3î²Ðd=ÔýÌ<ªÅX'Ð/6ž€ðæò_<ÔÁzsùa¼py㇭|…0g«ʾàÚ{ï½Q6BšlÄùRHJ:ˆþ²/WÙñòƒ©à¡&èMn†ñÂå–Ÿ­J…]íÐ9¶Yh²êú/Ù˜HþÃóN 5„ ·‚ŽìŸzï }ÁõΕ»0Yh²gz¦*½ÓÏ_pä¥×`aÁV˜çJœ“_/[}ìÆÔW„,4Ù 5v€ÃqûÁŸ= ø´Ø›R{ñÏ>uX¸)µ0^¸¼þÃ>ÿç̆TÈï¼òÊ."d¡ÉúFÒpÜIÏ<› ÛÜkÌ<ö†íÃ^¸¼Ñhfð‡Å_¼ì Ÿã5lke MöV /\^ÿa§Ûðw¿ìÛ u”"¼ìKî6ñH…nŽ퓦]¨ºÑ`ö×>e3 òqG$wƒO ¶b½š±nßÂÈòñÔ=uƒO Öc=×p7Y?ºñùëòñÆb Dª®/ò‡4WµˆÏÿí±ônëëêÖo¦…Уf~Ô©R?i– xrØ~=øñå'æg7Ò»Ý_æ·í.ТýÑR^ž?Ñ@ü1…hëM|™ìLV{!i– í—6x£””O 6b=¿ª¾X÷¥ŸFå—<éi¸Òzüu’§…Gá>’îÌ3ù©°õÞ¤õ.[ˆ¶ðã¬%õüB*pcÛ¿ýàE€-DÛˆøå”N*äõ/õÞLNw¯î¯xØz¨¹®\+ÄX鎿š6Ëõ¡Æ_N˧…Gë±^Õ]ëûTY?–fë×éÝØ§ Ñ…ªï_«VÖi¿TàO÷û8œéiºÒ‡úüzÐé´ðh#ÜÇJÔuN*p½˜çÎ-&nýøh÷RéTèÆ"­õ>ì \˜¸õ9àRéTèÀ³{¯ÚþÅ/”ràTÈõ1Ô_Ã̧…Gëû'ë^Û k½zœ„ë-|›^Ù^ÊÅ©QåFæ³´vš¯öS=þ€º…` ÑV®×÷á‹‚«yÒm¾nÞ_ÁfÜ{‡çKÂßg烯W;³Ï?¡N„l!Úú‹ŸqæÏY>øÛxí#4Ä,i*èaüKe~´ÂŒOÛ?ØãOçãÂÄW×wM/‰W\òn!&n4Åeeo¦Â6Ž´otØB´­€_ªY)äTèOø{›íùqµõø FÈé¶m=äûå¬5å,~*d`”˜{e”Pgã¶m½«uàƒ‚÷j#Ü;"n´Â€íTàÚzóζ Ÿm„{ž—¾á ~–‘V2jMPv.DÜxíq|Òž\aíË@Ç…ˆí®ÀðW]eûaÔæÞ(¼ Ñ…ª«aïóDõ×P^­Ìý”‘Ö¢íPôÚAÆ\ˆ¸úú{pmÁÜk'úG®Æq\ˆ¸Ñ‡WÑïdj*ø§ü½Z/ãóÛa”óhÔóoè1&n…½R9Ñ^|yÚPÏë]¨.TÝ;Už ûñ— bí%ðe¡ÉF¨×Ëqˆo fwõÿ‹Ž8v™Þuà½ßÔ÷^'ø¶mý×|Îqè§SÁ¿«_â]$.LÜ ûƬ(K…;(½`kÛ’kø¸ËY™ ÛËÚë:ct¡êFØ¡Ïw†v?V*ô'üýÌöòfêñ´Eg„-DÛùåZ/Új9ºyt»y¥£ U·¯°ü§ÚO¾>-½:igÚCpaâFØáÂE܉›/S{M\/\^ýpܪÊLÄ¥Âîõ|ps1¢mü¸ôƒZ÷ |Ô§HͶm+â3$:4"ùwpBt¡êFà'z%Kz·ӯǞ+댕Â'õç8ßÅòÂåÕ*¼~8.Îaþ¬B´õ¦~|Ôˆµ–NïìCˆšÿlXX°â½ÖönldÝ<òÕ¾¢ U7¿^ª‘Y'ÊR¡?áïÐl/ÃÕ>Ôã/èaçÛB´ïGñïéVgií‹56,,ØøDZ6,ÜÙu[®E°ÛÀÞu‹á…Ë[ÁßÙy¶TØP÷ê¾!Fªn„ý¸ªƒx×Mz§gõm¾¡‡/ M¶"=cãìåy÷ ïˆ7ì0-×Äʫ߰Ãà —·~WøÒÎו*l =¢ôßc¯Gμ!vý±Ý×Fà´ûN$­7’õ(ˆ§Þë 7l—ÎÛ9(Ÿúx/—¸ÙA—…&-ä覨7#¤ZˆûJ‡¾ì£xï#<¯òoFdÝÜajߌÑ…ª[ç_¤‘ h1°ý÷àÛãÚ2v%RA?ã—^¥}… ÖÛÇv”w0ïkL…ml…¹í.Тmüøü7õ„Tàú“ß¹Á!&nîá‹PÒ» ô0ݹix¦)4Ú võZˆ»KY‡ÆKÿîRˆ.TÝ <º6Æ/¶I´Ø~=øúêpiY¶TèOøû—íe|³Ÿêñôaˆo Ñ6ÚʺƒÃ~»E*p 3o¸–#&®ŸnÙvt§Æ}ÁÖËž,2/åH„Ç»H\˜¸ÞXö ]Ž»/)$ØFcÙÀ ®ãz*ðzÈ[ÐGàÂÄÕÆ2°§ B‚Õf2<¯!ÆZ9ðqpæÛ¨Ùº¼çËB“­8ov»k_àŸ¶±GÓ¼À°…h¯–@·ït—¯¯ý÷‰róFg.L¼ôYû9›²dø¡¿=ÍgYháÑV¨+»c76°Nܸ׼}+&n}$x¥B~nÿŽßâæ¢´Zx´ëã;tÌCé°Ñ¸ù°s„-D[Ÿ¼>fté o- Ï6ÊŠ§îܧ˜îÎ]¨ºøÊ”öÆÞÕP›ÞØºŠ°…hë?ï«¥­|R!÷ýß:ð£¡d{y³/ßûUû•[ˆ¶îKõ/k×*8ÐRüûm!¸0q#èù³¼ÄËBSa?¨Ûîm!ÚFÀóaaÞô0ô8üÍ—?ÞÎŒ/ó¿~Mx.L\ý®†G_4]Rô+Ý¢m4Äc¶ÂLâ¥Â6&ÎÍÉÇ[ˆ¶ðK‘8k£=x}”hH„àÂÄõ Wgˆ76‚³ýÐ6óÛ·é²Ðd#Ô{Þ™ÞéA]ζϖé²Ðd+Ò={5¶^Œcï7À¢m¼òQž;»¿ÃåƒB3wï—O 6Â=ÕJQÛ÷"³m í{‘¶m#àü-šônWÛIÃÆ]š¬/F†£béZz^Ž Ë9á9Þ¥ ÂÓÃöûŸÍäßb —?¢ó¿o qŸÿ6®I×õ\쾂Mn|¥§}é` ÑÖ»•ñÁ_§ž¶_ÓÔJ€´ë'}»Ñ­‡àÂͰ‡ú5èV‡Þ°÷˧¿¼6Â=½>oE»Ä5úþ¾«|î£lïöq ÙØB´­×öÚ·ÚÇÚìðÆV{€-D[ϰóÀ!„h-eì–rck6ÛÆ:¢}k6À¢m=î¾^㤡QÅ»H\˜¸rpK¥e7<㵑³e/œO 6½¯ðxï¾£øÔqsׯM5Á` ÑÖC~ù>)e?½ÃGYÊ·²Èö¼]šlŹÿŠ9*§‚þUµlÆ×wüÉBžDàÂÄõM,‡ÞkºúÂOýNÇ…‰Mqø8AKÌdûèÁGJÒ§ ´…hGô÷ÊE»_,ËÈäÇ}ÁX„-DÛ 7=Á‘ ûñ÷bÒÒ2tYh²êc½CÌL§‚¶ÚH{B=&n„|»ì‰Ñn·Mÿ”¿O63¾W<³ÇßÐÀ 7Ÿá”K½¶ð´¡îÖ»P]˜ºõyØnÎÈÕ gºŸôJ Œ¯ãªç_Ðb ×gÍ}ÒtuÖ< &n4Åñµ1N¹K3òª>ö)¯ó»¼>ec«“.—±n—­@¯ðç¿ÃùäabQ‡ £}óqaâFØ/;A¬¬l*pë8^{>9&nžµJ…­MûoäÚè²Ðäj¨ œûVá÷Ç®L‚Ü÷ ÇèßCÞ¨Qç'ÛRa«ëÚö!]šl„z‡7Uü ÂŒCÝ ;A ׃Žö)ð=`éM†ÞJØîmáÙF´§ ÖÝ{©GŠ35&n¾¦A›ÿ¨ôž6ôƒÂzª S¯FºƒP†Ýضmßú°Ëß±ˆ/=}o"8ðä°ýzðm of§7/RiÞ†À…‰ë­e½\ûOÛUM…õè°~yvtÚ¢MˆÔ»¨OŠ ¬w¡º0u½Ð3ëÌ. |ò;¶õàøôŸ@`èÆk WÀÎZ¬Ú5fÛìwÛÏÓ„èBÕ­°ã ~ÿvËúù­mâvKˆ.L݈û¿LþMÜŒóûÊÝÄÀ…‰ëAß3ØÇ,Ú›¤Î³ ½§°Þ…êBÕ­°ã›þí—Í1,ù7`BtaêFÜ?ï0àí3fzSÝûŒ¸0q+è¯Ï_#¹´åf‡L?Wß>Ç{çj‡[ˆ¶ïëN#µ‚0ËÇÕjÜB>-<Úˆõ‚/¥ý[ŒY‡:Cÿcˆ.L݈ûŠOEÝ»éÛåt`¥;ôï¦GàÂÄ­ Ï:í&ÿTèOø{i¶×õjç+ƒ¿ÞLÑÚB´_öG­±³áÚ˜L×Ç †‹cl!Úz¼wx3ÊŸ¹Øë[t7r!ºPu+ìÕY{`¿Üë=öß³#Íi€\˜¸ôßèòo¦g¡ý›é!º0u#îãþûý³ G›6©Kÿ[ˆ¶òqæ§R¡C³.ÿˆ]˜z5îÕéKÃC™®O® °Ë€ß±x_.V'3M…ý{D@ù ð‰¯{‰ïO|ÕoÕ‹À…‰ë7êíövË*èý²q1|ù1o”AóiáÑFû¦§¡Ó; Mpýg‡"paâµ›z{úÀÍi{:&n}]­>åFáy–ÍÐ/÷Þ¨<çÓ£XoøF¥?ߟuh~åÏ÷‡èÂÔ­¸?Ç Þ¿TÈú0Ñ|(‘. M¶ åßZ®Ëtu2ÛrX€-D[÷ÏL¦Z\Ý^UqêÐÈ㮪ˆÑ…ªñmwUÅ©C½¡»ª"F¦nÄ}Ãk6ÜIÐS‡žÝÑ…©ëqïë¸íéŠS7_ÖætEŒ.TÝ<~°Ú¿s~êP£qïœÇèÂÔ¸/Õ²¹ö€S‡{ Fªnþí.YÒZ:úÑh毦} Fª®~¨÷cíSÉa‚Ý?“ŒÀ…‰[A﹫¼TÈVÖº6°…h[á>–¾Ü/꤂ï­g÷ó],/\^Í^ŒÃzl©?ö ûúì¬TDØB´õÖ~|r„yÙvz§Çvß@ ¶‚ý¬£^Ú˜ Üxòöë&CpaâFÐë«£ËÒñºÂ˜'ò²4Dªn>Ô¿s%¹÷\Ï­ç^Ývh Ѷ"οI=8ðä°ýzðm;ÆEíôßf°{Áñ.&n´–úuN7¶/²u.þí‹]¨ºz ÀO·;±ß$!Úz‹™¦Wꎴ¦K…mµÆæµh€-DÛøç‡Á˜kÑéóJAæZ4†.¯¯E§u­ô¾íkÑl·•¶¯E§·Ûz(¶m½µÏcÜ¿Í6ðàþÕh€-DÛ xm±{c=:W?ðzc= 7‚~©‰fíÿ§wüé~?µéíq¥ôøzÈé´ðh#Ü[m÷ìÆÒ"ã@KiXZDàÂĠﯠ³Ž¡¥ºß›K¦·þJgµ·†N>-ÔçЛ:mü’ô«YÒ; ÌOÜ7ÊУ­`ײI7ö83^v8ù´ðh#Ü;x]ªÿ¼ÓF:ØEí`µÛct¡êƸ‰ó«Ê«Ûc à…Êëmrƒë>îZ» 8ØçÖ»P]¨ºvøD¥ûïÆçMŸÕY"Ÿm„ûøÖF½çõßàuÚÈ ºëï¿ÞÌCx¡òzß‹óûCzu"“‘\]˜ºÑ&— ìy{wÍíœ0uë]¨.TÝû: =¯ûÊí¯÷a{¯ôaêŒO Öý?°½¢†k[NyAýõWïTˆá…Êÿíó¹u7©°Ei{¹P€-DÛø€®Ôý9¡lë õ9¡[ˆ¶ðïÉ¥'WoÃ=u S•NQ_2ØÂ³ˆ/hÁ\u“ x7ýÕB¶m#à—Ý?ÚÅx©Ð¦2iÍPïUø¶ðl#â[mˆh߀~¿¢Ñê ý;жm5àÓc¸ô°¶qR¡›gÕš· bt¡êFàçûš¹SÞQ-G¤®ú#láÙFÄ×nêî5ÿ©CÍŽæÑ…ª¿œ‡¥ÝŽ— h2‹Öµ5h„-<[xßà¬È½ú£CÙkK…­Ì7vé²Ðd#Ô×áuía*tàõܵ×Soá|[ˆ¶rþú!vµ¥øW=tYh²êí¯Æð{/Õ|ýÁi?¬œ]ó1ºPu}?vzuW”½ûô?o³¸ùº,4YoÞÓúºmt‰M*ì'ûµ Ìòðx\åC]ÏÆ÷5ÔlYh²êjõOóBgªnË4¯tø´ðh+ØXâߦÊrýmôïSñiáÑz¬g ô¤}œòöA2Dª®’ËxIe°2®©Ð᯳ªlþÍ~¢ù/¨x€-D[oë |`¿ã#½ãúTóÆí$¶m+ârüîTèÀ³ãøëÑécg*ègŸ;0Ç{6,,Xo!ù66Þ®I*ä#áðí¡Û·zø´ðh#Ö|×~YC*tàmôß3áÀýwQp#êù†: êŽk RÁïÐ_¿`u-ð]Aé]ÖTÍñe¡ÉF+¹nÉP÷×Ëqr³Gño òiáÑF¬Wôü¾çæ„TðÀÙpíƒC÷_¸CÁ¸owÏ­ ©àëïÑ_Ÿ¯[çm¦‚Æ¿ …æ—=Ã?ØãO¨"paâê!}Ôô²dóï÷Ü×$#ió ú±5;²³!ºPõËÃOô_U˜¸ÞmG"–xÉQ*h`nÒ]-<Ú6ºXñ\²‘Þu`¬pào¹÷AŸ&lÚå_gzþ¦¸Ê'E†ÇtůŸÑ#€ ×G9‡>kº>ÊÍä¤Dz—‘ŽvÑ:ÚYý5ù¶mã·„ñUÃ=(½W/3ÿÑ7z\„‰â±?N¼]+t}ðtß @ 6Ú <¶5ÜhHц²½Îi1öÞS5 _`{º€. M6⼯ä=§TÐH'¸i >¦àÂÄQ ×wMW‡µ|Û&®7Å}@Çø¶®TØ@7ë¾e,ž­ûîN¶\êJѶ²ôä¬D*h=SÝžJáÓ£­`_©³ŽT¥BÂß«Ã{èßíãLÅó/èMœo Ñ6B¾‚[cøµn©°>Å}]„-<Ûˆ÷Q‘AÝðHnÜ@ݾS` Ѷ"¾qgËy§¯ìS1í×o¹ƒ#¦cUˆ¸úcÎ~‡cïNþI›w'?€m{èáá¸×†cmÕvêÀ°ÖkÚVàa ѶBŽ.M´Ù•šg?m`Xƒí.ОmÄ{„7ñáÕ}*p  woK8l÷¦2Ã6">Á;Öð¾A*pàÉaûõàóòÚÀâ^4tÚã¤%ëCÿ¦ç»;òßPÛJ„.T]ÝÄòð£Êk3¡ù±L|]¨ºñ*]–ËœlA*èú´Âã …GÁ~Õ5r®ýKïò°êdÍdz·/\;þ€þêóm!ÚÆk㳆kÉõÓ&^Á[<6ðFÂtG ¶~Ç<[ÞÔr½%§yûC_ršwÛþ ÿõó¿aP êbt¡êêIÂ~Àº÷‘'¼>«öúèÓZß4\K+ýà{Î,D[Mrœ8µÇ*ŸünHÆ ŒPuãeŽ2¸í¿}@<ö¤LÌèËcïàôÅÎ?m`EáNçGØÂ³f2¢)CøBîTØÀoé¾H<žmô)šsÚ0l£¡,¹ !ô㞉•tXX°æ­£…Š¥w{Ô›Gó·Zx´m0é/˜8m ×vLDØÂ³­xÃeâð±³Tà@KíWÀ÷‰<ã­Ç{ çªSAW»@w~ 6ÂÒ»þÌUˆðh£Œè¦?ƒ“m ñù38¶ðl#Þü½×TØÕÆíß1¦ËÂ’­Hƒ‡î­>qh¨Äù.–.¯‡~âïS¥Â®6ÿî]–lDÌ.êϨ®ã'|6ˆë]¨.TÝ ;z,Æ}r÷´­go?»û£o|]¨ºö©²vc;6ÛÆÇÚ·cl!ÚFÀ—J=Uóvl–õÇnÞŽ¥ËB“@o`}LÃv[¶«£³. K¶"™ WùÏ×ï^Õ‡ßûÂõ­è£u÷³6<¨ËÍlCƒ¬¿"¿÷|]¨ºöùQÙÍ¿±¿œm`òï0ØB´€Ãå þB¼l›m¥½/Dªn„}¬¾Fw¶÷3o]8g{?†.oŸ¾%— »:ðo$ÒeaÉV¤Ñ­­†Ÿœ:ô5|þ$Ê®oD.”÷ß’mhëå“sÏÈ–ÏÞÏ~ã|oˆ.T]ý`Æïéø³Rt£½Ãu&þªëlCóÝuˆ.TÝûVýUïd02Í21¼py#øèÍu}€ÒWL;úÃzø.–*oEÝZ÷ß •m¨£ôß 5ÇÛ‰§;w­H<ÏDñJ¤Â6’ƒn» ´…h¯'do dšlµ ùÂõ­øW·n” d‡`ýïÙW~Ö:vuè÷çÚé²Ðd}º²öÕ5˪ Š®·ñuà1Ã_&uóáÝúåÙ7p@êµÎWoãc­ÌÓmw¶m£±Ô“<·²¾Ù‡:ô–¬/àߨ+¡èFðçú›ÚžôÍ:ÔÍø“¾ëŒoë4ÔÄdþÙ蟠ܚ˜^¸¼Ñp–×[kÔ€øo½Ëðs3í·Ûá]{G—…&[qþèz‰• ëçeÄʆ]¨º^Ù°®ø: ¥˜‡ã g›á9˜¿¼!ëаë¯g¯§Ön婳ľ)Q ø7ªb(ºÞp¶ÏÜ 1Suèáý™ê/ÏÎËUytÞÏ[w E1™‡¦ E11¼py£É÷+4™Ù”áÛûŠM P¹ “…&ë›Û€/füekÝh$ÀÐö†­ž£öë¯gÍ( »ôÏgþr›þ$#]šl´‘¹‡'.-µÙ‡&.-µß11®oÅÿ¹áÀ¼Î(¶± Ö~ S€-DÛx=ï}§î(óÐÀßPwà —7‚ÍZü÷\nØÀÏ%lŸ·†Î溋ì>G¡/ßEk®» »Br9ኯfýEºÝhÛ®H…m$[Ývh Ñ6^ÏÎß(öËúÑaÏ+GïBu¡êVàñ”®¿@*ëÐêÇÙùþ­>üFÑB–ëk ÕŸ­wçûãcBÈ;¶ÀÀ­GÇ÷´ýõÿ]ÿZá~|ßvìG•ÿ=ðœç+Ãßþ¾þýøïñó/ó$Mˆ.T]ïºöz±Ë­Š·ìCÓü–Š· _¸¾ÿËÝÖ:ÅQo–ëó~ÿM½|Zh´Ñ…ÕK£nåàøVS©\Ëv£ø*ÛÀ¼¶»@[ˆ¶p ¼¨½5ëМÖ»P]¨ºñ¦ÎõBÝö¢}Šn´šü1Þæ|*è~ú›¬<øœ§ã?f¼Ç_PW`¸0qc~‡ë“¦«õ{½åF½nÖŸoÒØ?8zª U7zã¾jê¯*LÜèÖmbaÚ~¹Èûë£ß(K °Ë˜ß±?JÒ.!Ç6üýìg¹>%õ߰ϧ…F[­û9€_¡ïó<÷ËWèñžÕ7§ï"qaâFÔ<õQåõÙè¡ÏŽã¯GÇK ›N1dZ¤·œbò…ë«Mgy =y»442ŽÎÚ8Zn v‘¸0quJêÑM×öìp|aê>˜rêÐâÖ»P]¨ºõ"Íh¼«Ý¤øìƒqü÷Þ …‰[Q?¾•¶êQ_s`rëzt`¿?æ°NÖtãÄ »í׃ДT;ø¢Öèg¸>·ƒå.L–¬.ä>w&n4íü•·z‡2|ªõánûõàõÑöSK§íæ¸/eÑ…ªoiõÓ´Í•³§md0š+g#l!ÚÕ€#¯è¦½Fz¯8×zE·ýzðzIÝÃy§¬[çEùÂõ†s¹Éšr-ÚôEŸ'nØ1fÿ•h¡ÑƬkã¯V„‰[­„^á™ ûñ×s±êRù²Ðd#ÔûHÏ*¦ÔVÒž°…hëïðΜ6K<¹;Ñúcã»Zî³Õ§í Ázª U·ZÌGõ%í`ø‰çgÿһܸÄ<&nÝqQ—ûÄì©C "XïBu¡êVà±D±ûsU§\Ÿl¹¿W@ Ö§ˆýHß[¢mµzÉb*ìêd –Ëpóä2Øí²ê .Äs|©ÀéŠ?9‰Ûîê$†mD|žè™ TàÀ“ûÓž}½póΧmN8ü.Ø®o4ǽVîcn§ ûî{Àct¡êÆ8ºƒ9(GG˜¸þè»ÿš¬7ôa(îÑçožöQ‹3s«7Cpaâê•‚Ë'ÎàŒŸm£…ÏèfŽ¿®‚`­œŸJ…­-²nä´èrìvÙ õu+tº=úþ~±O¶‡õjgõùÔ9K€-DÛx-wt}'â…hëme|lp[™µ¶¢îQdˆù¦Å\ݤ°…h!ï_Ë-½0©pW}‘åa¿Ê¿æ¡«­›. MÖkbaz||§Õñ(ûäÉB“V/òý™±øî[{n,Dª® ã\[ï¸Ë?„híeÃÕwÖëìØk¬ºU` ÑÖCŽîeù©ÜÄa» ´…há†kmu+Bí§úwwnœ, â…Ë¡‡Wšþ]øé²°ªµÿ>|ˆ.TÝû‚÷éþš‡¬}ã õê†j€-DÛ9\Zæ?FyâÐkŠó],/\Þ ýÆ­`K…|¤´¾,án”ÝñiáÑz¬çººð'ùfà+n½ Õ…ªa¯–%Ü8 8_Óð•÷³áˆ` /\Þý4@½‹¿d#Ëõ÷Ô_³Á§…G±žñ…€÷"ëf¢¹}÷"DªnþÙ}q/›L…Þ?kûE™1ºPu+ðpqEÃOþ)òf|ßð̣ĻH\˜¸öcŠT­N„¿Kø’«uí‡Êçú…Ð~½ Õ…ªë?èòØà‘ÿ­–u¨÷õo¬…èBÕÀ÷#ÜMj¶©‘?x ˜Ôn Ä»H\˜¸ö…@O…}òh‰ÿ[ˆ¶ðêÌôÎ.2ðIŸ›È!ºPu+ð6ToÊP]¾¡ܲk¹$#ãHƒqð],/\ÞøQ{Eöîz*thȃõ˳/ðˆ·¨#Þ®?ü޳:n”x‰ ×ì˲òT¡êV{ßÙ5L©°aÏ_{` Ñ6¾Wlw2™‡½†„L /\Þ þ ÙðGç.2Z" —s§Â†V¨°Þ…êBÕõtíñ}YÞ'ëPßë?ÞµöøÛª×êQNõuÔS¿‰£ S×Gìuàÿ¬ÂÄ?­ððÑqË<Ô7dÜbxáòVðÁÉ^×— »>éh¨G °…h‡ëKý7f™`½ Õ…ª[a_°iÒ¨L“>:ö}”:ñ ùS!ë ͇è²Ðdã7\ɇR!ו_ϼáÛ#þ,{ÖùÖüõ–ÅYö]¨ºÑX¶ ?‰Yö¬›_‡iϲ‡èBÕÀïø`××z§¸£óèUŸ¥ëc„.L]|5+{#^¿µ=` Ñ6þÀÒ%ø·.t-_Ò~{n¶¡–ë]¨.TÝøEû•2M…mÖoOõØB´õ}‹m¸3/¡ÉF+^Y)Ú7ùR¡?áïKòlÛÕ>ÔüôpÓm!ÚVÈÑ} ø¬J*l`½ï?c` Ñ6>âÅþ"¯¬C“‘Wˆ.T]?b¿Mcµº´ð—¥lè Ý_•§…G[Á†w¡š¾â’ýúNÎô¦¿ï©GÊBtaêFäë/7Ê ³M¾`½ Õ…ªëßøªtÔV¥j“õúênêµÕÚÇØB´­×KÚ‹¤²í^ú‹¤Bt¡êVà±3eø÷–^tµØåN1ã¡CsŒ†ZÆ]¨ºñ›ÖK]n¾eê|a½ Õ…ªŸÙ¥4é®Oñ*€ø´ðh#Ø ôYÆèBÕ¸Ó£é®6w2— ¶Âg+oô@<ù´ðh#Üô´Mz§kƒ?ÕD‡…«UÄ?òq wôZÜœ2œŽIç’·ß§ŸŽjùoù·|´ê.&þñÒWó{+:#e±R¡C]•;£ U×ßû¡º›Ú¼A6TGÎæý1>-<ºlævGúö;R·hذ°`#ÌõÛ8Û3ÿŽþA.LÜú÷$î%á°Á/¥{I` ÑÖ>æ™yõ|*p}?ùÆ¥ù!¸0q=èS߃AǯËN<ºÿ¢ï\˜¸ôã-::®/CE¶ñÏD½ärÿ——½?í㱿÷‡Íéû\˜¸ñk^ï•£f‘³ü|îñËú¸ý -<Úˆõ\­ßkžÞO—¯Â<÷ˆóû[ˆ¶ðeLJYíË›_S½,Žw‘¸0q#èëõ(þŒO–ëï¦?çç…G±Þ&l0îµÁ¸œ-¿èã õ|*ðk ¤ßÁ…‰ë¿çܳW?éFúY÷¢O ¶‚.Ù½h\mâY:Y‡Þ…êÂÔ¸ÏÐÑÛ˜g¬«mÈnðiáÑV¬g~ñH*ôI/;ðã]$.LÜŠzåΡ;›A×÷­ïlEàÂÄ ×Ó…© ÇA}‹N|z›Ä]?^¯‡<&®çOú®éêÙ|Ìm©¸0q£)îèÌbÕGg=ê;::;ô.T¦®Ç}y°Wq/ºÿ˜÷ó¶š3tŒ [͸0qã÷<¢/zÑ#6 õç~³\ŸÎù³¿|Zx´>L,g±±¬]~Ϋ¸%O·~ëTÆùßðÐç‰!ºPu£…/ Ø­4ìPfx9v(#paâFÐ×íØÚz(óÿ~×TØúÚ~/m„-D»pîM]xÈïÜ2ö£ƒk¹–[Æ(º÷½iñG¯ÇñVêª%¸¾:¿±Ü °…hë?æzÙ”ã]ì˜ þ)G3>÷Wüd'³çŠÀ…‰cageÊ ›74çA"ð2è·p+èèZËÖ|ÖÙ…C=ûÐÓ÷-R=ŒÃeÐIWKN¡ f¼”°¾Â” ý Ÿ0f{®vfŸBïù¶m#ä38‹Æï£L…]ŸúïÑŒ°…h[Go¤ô÷Soãh΢å~®]˜z5îÔœHöç;ôåb÷;¹>]üm„{ Û?[—…=z Ñ6b²öðÜßßêÉ3èQAëým.LÜû¶Ã³ŠI›UèQ?t`tž´ÑY:ߢm„|Ggþ-©³¬]yKê,D¦®Ç}{»®ÌÒò[Ûå–8k¸hÈnñiáÑF¸‡îÐýWsž<Ð-Îj·¨–BEàÂİ;¸f¯¶L… ÌýÝWrFØB´€O<‚ÎÚª‡üБhÑF"=ä|[ˆ¶ò€Ä\*ðjŸØPäÓ£­p³!æ5©ÀÍÍçæ *"paâú[-mv#ƒ›mã^€ö n€-DÛhå)ÖôŽ×;¬¦üm.D܈ùy§:Y™´T-RÚ>±Üµ_¿|H€d ÑÖ¾?zx²²h“5äYýUôÕØB´f…xÙÕŒ?ÔD\{n•O ¶Â]¹óV^5ëÕiV˧[x¶ñÞ¹m¹+2óÀryS—Ëz¯€ 7Â^ËÝHNîµ|Ðäd€-DÛ8XÇÚ”›Ü? bj2"nÅü5‰£]‘Ÿ ý A³=ïïö“}þ #æt[ˆ¶òˆ-þTèÕ¨%9` ÏV#¾=òeËúüð|…üXOüaíRøù.–.o„~bo:§wŠÜ{å´ðh#Øù"ÞMÅ© å©Û¯WæËB“H_¶&iq§B¯?ËC~´Ùa„-DÛ9ß3ö³üvF°y·–/ M6B°ß™ÞñÚ8ß²O@ 6¢ý¹î¡eNÜÜkÍþ„àÂÄÕìϾ‚÷Æøic¼{c|ëáùƒ{cœaë­¼ð…¦û>øSFž^yÔÉ`€-DÛùøº‡’u¥h*ðaùÛc.fW™^Þè=þ€:#äÓ£pó÷ÝRa×{ÿn!_šl„zéùn©Ð«ƒ}ÃNa„-<ÛŠ8Zšî>ª{ÚÖDûaÝ]¨ºöu†GÍM5Õ‰JÖÑgÔF}¢Â·…hë!~}Š¾á– Þ¼ŸóÆva /\Þþö2îc¯[ý#Éíç^CpaâFÈÇéH¢?é’³Çò¸û&º¹¸uë]¨.TÝ<}“9½ÓÕ™—cœ 6Â<¿~EÒÍó©°Ÿì×è”—é*꯯¥Úø²Ðd+Ôw+?òµ¤% l!Úz¸ÇÏýÞÆaÆ©$Þ¶!Ÿ­o~ 7mËðúÜVÿçß0¤Ë_cÝ$[-{Eûlï%ö§ ôó÷þOM?Ðe¡ÉF¨—×ì’sÂ?ô3=}[¥ùí.ТmÄ{ʸ•’uk}vc+%Dªnþ2Skij|l³ïÔñZx´ë2õY~~Pfà¦êù´ðh=ÖÓåÛÖœÓë© ë¡ÿÐ}„-DÛˆ÷P­˜»±K•u¨ôoS…èBÕÕ+ ·)Wû¯«¾QuîûæÕÔ¹ï»þLì×T“¾( Ñ…ªëK“iª–öÆžuæéø÷Cmwö¬cxáòF‡Àß?H…}ýaiû¶m#àGž“»ë› ÝÜUi߱хªW_]ñûë²\ 58ðé2Ü7h+ÖPÅaÃ']Ÿùoàˆ°…hëñžìüÉ¢f¨]J¶ëîÀ»H\ˆ¸òi€ºþ+ËõÓŸãÓ£XϯóÉœ=÷TÐÏ­INõrG Ö§ãóQD½ª>x¯N7o\²‚ ×[øòèË)'qcuy»×c%o¬†èBÕ­Àc„†Ó¬§]޳†àBÄ­/ÐÈéODf¹>ù3‘|Zx´ëãKÔ»‡S]¢ÿÖä\˜¸ôÏù7Y—kIP¥Côo²†èBÕ­Àïeài›YËåB•á÷Ú3âfV€-DÛøòqj„¸™•õ‡žõlßÊ °…h!_G°GŸÕ®K]zfèq¼‹Ä…‰Aß YbÓ‘âlWçZM‡Š#p!âVÈ%.ñ³@©°õÆÒþ9£[ˆ¶𣀅ùÁ„ôN Ó]-<Ú öJ.×H=Œë«)VÆ—õŠgöù'Ôµ~.LÜù}Í éÐe¶ë=¡ï"q!âVÈ+ýÕ­ÄŒÇhol%FàÂÄ ¯è’¿´28ð‹ú¯Û Á…‰A?.€c~,!60Ávh ÑÖ~L=©»CéÝ^φm­[ˆ¶ð§N¼×"ô¤<öË8è²Ðd+ÒØÜ¯ùxÑóvS«öJªCC¶×¶»@[ˆ¶ñ[Öwvk¶·3Ö ß°[ 7‚^ûXÇ­ƒ­öÅ‹[¶m#àû±w@¼Í8¶ñ¹í.Т­|?nô#Öñ¼è©_ÿ>P¶Fèß °…h¿å‚çÄü¥YÂßGül/oöõkÂêfP€-DÛ 9uŸ ü¡Ì“ïìJðiáÑF¸W°4®xÑ•‘þÎ^Ç^»HöÆVG€-D[ý-é»é ¬{‹ƒ ÖƒüÈ_œ"^s »>/ñ_Ïa Ñ6Þoðì®Ø9u`,Ûµ±L«×‰°…h!*sª;x'^Íüx´ðh#Üù‹»´+™R!ë/fë5R|Yh²èù躙'qÓ;~}lÞ!â\˜¸zfáG¯Tÿ´ïkž60Ò»÷5#l!ÚV+w|ðkÅSa#=l¿ž;`W3xµÿöïÆУ?šÉå±kîŸRˆ¶Ñ¾ù[±©°Ÿ˜È|Yh²êých`mŸ¶ñº7oGØB´õ€÷œ Îß'?Z)ë)Ó*PîÂd¡ÉÕ@3/À*CýË~OÇgy}\å§yð¥\†š'—¡n—­Poà|dÔ^u˜m` í.Тm¼¾¤#+©´ç¿Ñæã½ÉøÚ—øøÄG£yàÂĘûÔâÛTàã߀ëް…h[ÞçÆ¼ÓM§ýì°Æ™ƒw‘¸0q#æS¥Œ­=}ÚÕi¬;ýÌ—…&¡ÞÐ=XúìÄ«ëJö,€m…ûØüµ¿oåßÒ}ÉI/J#9áu¸Â¿bÆõŽ„ ÖÃŒvþ%ö"úS”dWH®âÚ¢éF‚2ÛõµoC‚2À¢m<o…VÈœ ù¡¯›Ë¯#l!ÚF¸§J¡Cs¶,Ëz+iΖÑe¡ÉF ß®Ê°zkâ&ÛÕþÏŸ¶¡ËB“Pî—3“Y7o‚hOM†èBÕõää°¢û0þ\Y¶AÇŸ+Ëös/ƒüŒ}ØÀ î†ÄÁ6Þ¢z?ýY¡>¶ä¿,Ì`#|@!¶QrÔ|°"¢m|°)äNÊjÔ—=aScÿ®p–ëã˜[˜O 6~Çò3Úñ˜“>’Üó1¶m#ÞùÎbw*là…÷WŸØB´€k„zG5«Õ®Úû%5Nû"L*xý ÿ‰¯ã~°ÇßPwì"paâúO:]nr¦l£§B®÷´þ>-<ºkæ>zíÚJ§a÷Ÿ.—±n—­Poäå{*è~R«UN|}›C<ÕüÔ9l.L\ýV›GŸ5]2§~¡ãÂĦ8ŒÐ¬°áÀV¦ë³«†[¶m+Þ3;}– Û¸*»=í` Ñ6>³ÂE~|è…Wv¥›SŠÓlÍ{šó‰\V8¬ñÛÍ 4ýóç³\ý‰D>-<Úˆõñé8â®F*hd[´¬\™u‘¸0qcN‚뫦«ŸaûÑw¾.LÝhŒëÌ..N…}‰eÑ!ºPu+ìvBêÆ9ÊL×'U¸ÝÚB´xfµ‰åY¨oèâ[ˆ¶^¸ñ%ä´Âëƒ[;°ü5Üùk°›d£uï—uÔüõ‡l?i‘ñqVü¤×íJèñô“N ÖÃ=³Óç©«ó{н<1= »Ú®ý™sº,4Ùh=X÷µê«`gïw§w™dîêV] GàBÄõ…ŒoõÉõ·rXØ… ©°Òàö‹[ˆ¶~¡ÆÏÏÄÿ9…©ýÊ8Ò3©À}؞ʰ…h­e4oíh®‘»éMd‚w9àäH*p Ô°ýzðuÄÆ5ÿöc¦‘—²W_yµd&D¦n m¸>¨Ï^îD¾~ÒÚ%òí%9sír¡öŠ>-<Úè©6ôÅwü”ÂÔNkÃÒ¢ g¨3]ßQj8D` Ѷâ½ÒwñSƒ„?ý€ÛþÌ?Á6"ž¯è¢¦R¡Žã—Gß¡Åìôгêògy›êSÝ©°ŸãÏØ¹5ýF‚>À¢­ËÄ~9…GëïÏ2Áï¾} xt=úüªl#”¤Â}>ôJ¬Z »Br¶1ÓX|EŸ ½Þ6Zv–ì[½o-—/ü:«b%GS¡_{nbb7Dªnô±;º#ÑP @ÀWiß̉xû‰Ñ,ïè—×ÿÆ‘Q>-<ÚŠ5ZÓáØ7H…t[8þ÷èë]?8Öš©ÐGoØ“XOC2÷­SakoÏÝvº,4Yoàk¹ÇI¬¶Èö±[ø=ÛÝ^n × .Öc‡¶:Ùô&¥×Ëί5yÝ.È’«íë„î4¤1 ¸ñ:Ò÷5Ó;]íCü{±lXX°fô7ô§è²mÎèÛ“t!ºPuý½ÜÀ)¾H­7–íÕƒ=´é¥:‰ÊruæÚpO ®ÆzцƳñåMµãg4îá,C=(ýª~=ñq6ïùTÈ“öÈ^¸‹‚…íݶôçËêò`¼‹Ä…‰5¼§Ö1'àFc9ΫUSA«-¼½Ä–. M6"½™S´…ãç‡Ü«ƒŒ¿rœO 6b ï)úÓÁÙ†ºB8Dª®wƒ{ÀF—q½Áìoµä¤íùTè9úýáÛS !ºPu#ð}õŠþþ,×û ?ŸmÄÞi(ÙÈ8Ôµà|Ë •7:Æå=ð7TBr¦²Ïp<üÛ>ûÛ·ì¾÷¶íÛ>!ºPõïÿ]ë‘wbÓË…~Kç9˜YX²åÇø\R¿ø• \ÿ?Ud Ñ6">mðêÛ—¸èÐKéÛ˜Ó…ª(÷IŽüª¾‹å…Ê‘¿ŒÎ„º³T¸«Þwey¯ò3½øÔ¿ž„ÈB“¿ùðÑÓwúkiůÜ?z¸Ïòí#\tè½÷í#„éBÕ¿O—~âþ¤B“õ×½‡÷'œÕOꪜG¾âx¡òFä/_à ¥B>­|ɱ5V@ÅУXÏøÂй‹pᡎŹ‹Ç •7b¿€Œ³FñeCo(®w¡º0u+êuó&ðõ¹oÒ—x¬¶[NÚõ6@¹¯ ë"×»D_IW -<ÚŠõÌ,TL… ̰æï3¬¯¹ÈYh²¾:Áéå;ý5 ñ”\Oš¬·ºáo¹w9ÿxhvouFñBåØ÷¯iá·¬©øêCBSùU -<Úõ€¯}é“‹þLÉß¿&Ò˜> Ó…ªŸ7lÄ„WU_éo¯O[¡ÔE6Zb[©T-DÛø%xó­eç:óÈÚ²sà •7b¿—šÊe©°‡åo’ÿ1»Èø¶–øüÄ{£µàÂÄ­˜ã{þYÖ¡nן Ñ…ª?JƒëÓä:DôËv{œÔ&sêÛÛµ7›ÿ†>RGèBÕõ…‘ƒßUþëåk‡^ÙŒ¿‘ßêndøCt¡êzâfØþ*T]ïÆKég#çBûæ-Ù¡ÌCÓ†ìP /TÞøY|UíÏâfœüYÜ]¨ºøqÅÖQXÕtE¶®`¨]ö]¨º>°:ø^åõÚx\-Eæ…Êmr:na~Ì4x¯¯‡ýx‰ 7‚þ™2b¦.3 ¹Ë^¨¼+ö¬üå—'g~Ò¾ÚPeyhàk¨2ˆá…Ê-fÇFíYµË<[z§‘¾}Їuñ¢ S7mXõgWw#ÇÏ3 ¬r€û´¾š›*ÈQ*¯¿GS­º£9ßvÈFÈ›ÓmtYh²èß9mÈ)gênrÊ1¼Py#ös-‰Úž˶ÑfÚÓb¶m#à>]|øÓb™GšKKZ,†*oľ~(òƶòT?Xxc[9DªnÜIÚÔ9iYì” ™Lú$CÝ;á…ÊëÓR?ëO¯.­ç¼Ùãà…Êë­2<ˆ¼-ž êÌ6õcx¡òVìw°D<©– ÙÈ:å.Lšlú5}dí:¦wÛøâèíÒ[ˆ¶ðlÙÓ÷ßRÝ'Í2ÐJ@ùõÌø-¼ç·f¾¤aƒ7†*o´—ãø+qo'ôñäÓ—Œxû>--z­{Ñn…h­eœ.Ý"õàÉi_¾‰ùÑã.ùɇïŸøª÷Џ0q+æøÔ»TÎöñ{.”’Þ.Тm|†…>Ô^K»ºäÔë]bÃ8Þp7¢¾D\ ‘ »C/žX6W>øåëÝ-}ÊËXØÇ.œ1W °…hå:=gÝГ B'mÕßP¾-DÛùÇñJÚâuWé̽;ˆ|Zx´ìñq™gQ µSA/zäÙHæwz=èõ£8¯‹£…GÁþß·`÷#:ò úØPþ–©à‘Ç¡w~ŸN7ùQN¾h"<ððýõð#¾'ç¿+çä®|Ѻrõ¦œ\ˆ¸Ñd&ϯú7ýÉæ¿¡·ï]¨ºz£§‡T^]˜/sÏ×…ª-®*j¨ú]>/ÊfÖýÆðÂå!c«,CoÔDl½Í¬h^º¥f9ãPÔq¾‹å…Ë¡‡SvmdÆ‘‡o©ŽŒá…Ë[¡_¹‹õTÈ}ÊѾŰ®Û¢­‡{ëW{vc鸽ûòcÞX:ØB´­€£;/-ÀY‡ÞN‡ßûÂõè_®'­hRa×Uµ/Äl!ÚFÀçz-SûNIÖûKE:q§$Dªnþs´c®92oý®wÖ1¼py#øp²´¥Ö6ëP'ÙRmä ××£¿5±äÅG*x¨ñ4,bxáòVðÑ¥SK¹ó^ßxoñ»`_¸¾ýñY`B<œ zPØö#|Zx´~¤bÿ\˜1÷ 2¼©-û1¼py£¥óWÜVäïÚ—çF×-•Y‡šdKIe/\ßh5Ge®ïò{‚¦wÚØ n>ÀJ—…&«ÛîÃãóª7ÖŽÃV›Èðàï,¥Â~6ï/ç§Û÷Ãø²Ðd#Ô¼FmÙ ;}h jØ ‹ò…ëñ¯V<4Ô˜¥B‡~]‡ßûÂõ­è_Ž?s®I…ýd¿÷œÍ~“õ××f|Yh²jþöi*ì‡VÛ¼éË—…&¡ÞàÍ—–ͯӇúĆͯ(_¸¾ÿÚþKsííi›¿­[ïBu¡êVØñÃΛCNè§ï£>„²e¡ÉF¨wxg¡!³qòÇ/¹}ý%od6‚xáòzðûcJʼë4¶Q‹Ð|Gk„-DÛøˆo26쨟>45ì¨GùÂõ­ø×öHšÏ„œ¶õ۶ߣ U7Â~ýÆ;ç.‘TØÀØ4›´Pø²Ðäj¨¹5çe°÷Ç—ñ¦âeÈoáVÔñ’úä¡y€?IÄ —·‚¿£M?K h88þzô š9.UNïtuÓpt-<Úh'Ç¢‘˜˜NmŽŸ­ õ\˜¸šTÿÑñœ@C†ôô¡ùbC†4Ê®o4ùë’sCT*l`³|ŸÄ”r& MÖS¤ý^;î'„‰ë­d¨ÈëFéËÉ#ãCéK/\Þ þÀN­§Â>žý÷NOÞ!™[ˆ¶ðœ™"^g ˜¿Àvh Ñ6~ÉOS»©ð¡î«%5ä ×·âÿÚt¤dS!ƒéLM—òiáÑF¬g|³o(‚É>49ü.Ø®oÄÃ2ž{¢S½$Žw‘¸q#æ{=©Ñž¦€a{š:Dª®þyÙ1¿º!>ô²¶TgùÂõø_ηRÊ4S!Ï'çÖ–òiáÑF¬lg°%Um£H¸=U` Ñ6Ž®’Vu8Ò;tµÛ] -<ÛŠwu«ôFrz¬'¨n$§Ct¡êFà|ùÕR“‘}hj©Éò…ëñßzð­ò'ÁÆ·úL½‡lÉ‚ØB´€×çëí™°±>åmÏ„EàÂÄõLXÖ©7Ñ—A^!ÿú!xô;¸ÞЧߌiÉ>fê[²A¾p}#þãÌÞ±N… ôþö[ˆ¶ðËU©¯XëØ“6Ö3±!¸0q+ä膣º3:˜Kå”ýáx‰ 7bŽ_øÓ”Pš|ߨ%¡ä ×7â¿¡UZ ›ì:ȆMö\ˆ¸óëeßIotýÇlø6J-4Úˆõ¥ü€vU\*ô'ü½àcÌþfêñÔö` Ñ6B\dÕžCÊz®'ùZ"|#‡¢ U·OߟN…ýP nìªÓe¡ÉF¨kוÞÙRŸk‡âïì©GàBĘ×/®º±«žõ<Ñbù Ñ…ªßðWõïêf»ò޶ìéÒe¡ÉF¨áâà^-Öû•7WÏ~¾‹å…ËWCOÝ-C¼B »ºxö;¸óå£^š—½X.uÇÓ÷ãÍÉ‹[ˆ¶žºXøÛ¡©°«Ý¢—. M6ÚöTû0úÙ[á‡HRC!Îw±¼pùjè©Û¡eèW¨a#7/Ã~7b~|§ËüM›37ŠæŒE.LÜúqâ“Xx¡ùÛ«©À«Ýnö0Ÿ­ÿëådk{5xý§lÙŽÀ…ˆ1_³e¯ì€3)u¯Œ. M6â<¡Û {e¯¾“ ;e|Zh´íÍ6!ˆsØTÐý¤¾Ë…7ü©žaVã¡ SW?ïЇ‡úìKå'¥nZ•^}76Ûøtùs¶ÓÆ 4/{³©à¡‰DÃÎr /\^¿*ûÜ©|ú[ºÑpÖ­›æÚŒ÷V]óm.LÜúQ+À»È=20å.Lšlz‡:܆ÍêC®O†6«ù´Ðh=Ôû±+KÜ­Iô€½Ú¿ªÛ§!º0u} çÐõÙ˸_~Rp¶%ÿñÚ»Ù’}àÓB£õYÄþØù¿¥0uãå?*&x7©§BPîÂd¡ÉF í«Þî$Möë­iVÞ5 °…g[á~ý’¼Ï¿¤‚Ê__›ŒÃÛ½ ™=þ†>®àÂİÏ3y+4ÒNj/«n¿…èÂÔ¹®Ïš>¨“Ú}ùº0u£9®¨îØäK…>¨%wö'#p!âFÐ7xj‹oª¤B¯?zËÖ羡)šåûøo<6šîå.Lšl´‘KÑ4$Ú3]‚2í¶ðl+Ü;<ÚÕÙ¾ÌÏŸ{¯Ï)uN¡“DàÂÄÕ°”kÙÆ:m¤—]ÕaY›öÇèÂÔÕéGßÔg׺€ñÑÛú¸.LÝhùŠÔ ³TèÀÈìßësàø°/DÜ úP)” þèÚ篇ÐoÔ9ñÂåàÜò•ô묭7tXX°dxý‰ï¦B^NÿFùó̵d ½Ëõ¡ß_è@ 6ZÉ< sІO<0“ÛÕ™œ¶;‚ 7¾€Ù=ÿÆói/þ¨œƒÞÌ#taêÆ×ÕÉР¥É~t4%äÐ…©ížœãû¬é† ÿ1nûsÍÛ 8^J®×PiÛ-'Íàp¾‹å…ËWƒÏ«½)ãÌçœõB|¹Œv»lîWð,E*tàÅñ¿GïPf¸¡T㤫ƒC­F„-<[o)ýÎ ·|ìôëÓ¹qP§sj‰YŒ.L݈|®.ü»þ§LZFõÕ’q1º0u}*êÐÕYÑ eŸ~FE4ÃêÐ…©íq„sÏø&w*t`ÌhØŸÇq|SDˆ¸ô…[¼• ˜]€r& M6=Áix.Wü`óŸÐÎÇ…‰3!\_5]ï³f¸Ä¢å‹Ÿ§LÍ7uj®–ùÆèÂÔÕòû±Ï{­ÌŸU˜¸Ñ ,`HC*ÛÈÜY-òÔ||ˆ.LÝè`}z¨Ï®Õ+ýŒ¿h ‡C¦n´Ç -q¤\R¡×çŒ-Ù"o¨ßfàFÐÉõ›éÖÎ’S:,,Ø 2¼ ‚§ÌR¡-Çÿ}èñÄù¨Ï,Ô¥\öë£óÔëc¿šÀ Ñ…©ëf°ÜyËÖ|¶‘Ž\ÝeÔdeˆ.L]žºº:–‹£Ëo vå 'BNüqéˉgB‚x¡òú<}кÇï*LÝè ÈUyé~(¹¿æ*B.+ÖïÄO¯¤w›C¨Ýp4Ž`[‡XxÚ&:r=ú‚ço'}:¤¿‘ ˜&}¢¿˜º0u£Ñ EêòM=Ö7^¾íUzzª S·¢N.ÇI…\íνDdWH®âN3ã›Y©ÐÞ°aÆ[Îip=è#|ŽcŸ,zýÑøëÑ/[6į§ÂºñY$Ô×3D¦n4šñ’¨$}ª)øÓýžï;ÛÌr¥3k}00€m…íð¢çTàи‰ó],/TÞŠüÊ-9I…\EA· r…ä!žÐd‡c,:05lïÁxËdn½–íh/íɶñδ—öØB´€ÏhâÃ±ë– hå [µ#œuS_!ýXiÆ¡þç»X^¨¼ÑhÈ ¾ôWûroB’Ë ‡ÕwÂÑ I}i¢îݦõF1sS9îó¡¿}‰ÄévA®\+Às@z'¼uðNr*†*oÄÝlo8•z¹ù³ÖW7œK Ñ…©áŒnáuBÄö2¿Ž1 ë׃£Óù ¥|uÔñ­ aý·ÿþÖõ¢§þ„¿o¢äïMë»ýdŸB]ØB´o34þx·Á³[íϽÛàdWH®àˆ4I*x¤oÉñÄðBåØÃ[íx&98ôÃâ|Ë •×Ç ùV¥6í$àz›™óun¿8ë;*©À3X™ž¶+}¨Ï? ¶>-<Ú7¸ônÈf·ÚŸ{7dÉ®\#ÀÇ™BèEoÈ7dêÁò 1¼Py+öè^[ÃQèŒC?lÃaè^¨¼ùëºöAÝŸ/û ÔÝp6,,ØæzIšðl£yìØ®›w'6»Õ^Ü»Kv…äZ†wÝZò óÛGÅí~»!Ïà •×c¾7-,ðÚp t.D\ï—ž_Œ&DÜh+¾;ѰI»Løú¾a—6†*oÄÞJ}À)«TàÈÛr04†*oD~§ý-9¡ÌÛØßï?¼“Šá…Ê}å‚–ðèíFY ¸ÞjÖ¾’nØOÌ<ÔÛ4ì'ÆðBå­Ø£[~xN+8ÔÛà|Ë •7"ßã“Uõ¥Òó™Gz›–üE /T^ï+×ìÍðjGáÙF›Ž5ñþ¨TØF­£Ûîm!ÚFÀóÇ"fµqÉ9â>oÑ9âß u柵Çú¥>¸ÞTüöëÁ¯{S´]ÆTðPçÕ°Gà •7 ºÁÖp&óЈԉá…Êã)ú…Ζ»¸Ñjr%óëÅ©Àõ¡éÆw—Cpaâzз¾9Ö°™šy¨'hØNá…ʱ‡w=®RÈ8ÔÅ7\ßà •7"?à+ù†ÔMæ¡.¾!uà •×¨­v’ª-DÛh4¹Òù=ÙTà@/ã]$.LÜúoH¶¤6|—¼%…à •·bnH6\n‘qè‡m¸Þ"†*oD~ÅWÅ )ËÌC=|CÊ2†*oÅþÕê §¿Rá®úöU–§ý*ÿšY×ãM–…&ë—5ÂôüøNë£ÝqÌ' MÖ[x÷‰ã3¡é†gœîâháÑF°{xG¶%×¶ã餖\[ /TÞˆ=š“ÑçCê$úRñXùY[îgÑ…©[Q¯LÒod«²m"·g«l!ÚVÀñ­£Ù_H‘yh„ó],/TÞˆýMà¼Ç=üû>Š’aaÁúì –‡ï²þÊ}ÜÈ´Ðh£ÉÍ—îûK›k?Š‘åãžowûa >-<ÚŠ5˜'ò|É4z}æÙôÖ]˜º÷Nµ¤ÓwœÞñúÚòmã\ˆ¸ócô™õwhȳòüêÖ¿ÕÛï ª†¼V¼í¦»8Zx´m¼PÉ_ƒ{òÐ"Ë_ƒÄ •·b¿¡M}Õ~Y½wY+ŸÄôÛ¯¯ÑÍǤ§úa1?ÞEâÂĶ‚ßñÜpJáä‘eaÃ)… ^¨¼ûþуS/íì‰õl.LÜzÖ`x¾Fœ ˜Â8ô.T¦®¯Žú¡Rà7„h †_È™ û¡_5—Ÿòe¡ÉV¨á:†"ë“Gƺ†*ë ^¨¼{ü²í†“' ¥8ßÅòBåØÏ`ò¸¥.ðÔëãiK]`Œ.L݈ûæ=Ÿ…N…Œ§½ Õ…©q? ߈_ÃHmlð¶~Ã#€m{ƒ“õ %˜' KþÌ ^¨¼û·»Ä­¥Œ¿*èĵ‰Øš Zx4n{ã¯ó>yhà¯óâËÀßãõØ0ÔT‹5<ÀtLS-Vˆ.L݈;þÕ–Š /zi©Šá…ʱ¿, 8yêTÐÆ®CsrO ¶‚ÍO÷¦¯ŽJ ij>-< 7«J² 845ÔxÆðeàïñFì—J¿r«>`X*/é­]˜º÷ú×`o¤ ‡zªíF2Dª®~ È'¥¯ö’ y0>-< 7«¼¡ 8Ô;6gÄðeàïñFì{p¯·)ÿ˜u lÉ?†èÂÔ¸Ã9BùW¶Íq£½,Dªn…}Ç*W§ý{åªÞ˲ñƒ:å.Lšl.Ü|§ÕµÑx9{a>4*¿žy·G›ò^•/«ÞÊzØÂ³V2ã"†=óÈØÙ’aáËÀßãØ/àiS¶q\À푦lcˆ.L݈ûåÖUNÞ.´±ßÕœmäÓ£­`£EåþÒãlCSXïBu¡êFØK˜7±¥BFPîü28¯šlú¨Q_µ³zSÞ™Ž_q:¶A~þ÷¿]Õ°þÛíV Üvh Ñ6®àKõÒ» 4Tþ{æ)"Ÿ˜ ½:?lÉ„ØÂ³õV2áß»i)r™.ÉíṴ́¡È%†/7b|¾½ýv'£©4ðŽz¯»rÐà¸&4Ù5=u› úñ÷+²ÒÍlXX°æ lÑèT© Æá½¯lš"2o©Ðk½wSÎ0Àžm´ü+6-µ7þ­÷–Ú›¾ ü=Þˆý†N åER“(™ÞQ”îü4:émÄzg_ “ xj÷}3s_Ùæ¸•i›¯_â çÙláÙz;™ëà¸Q?1_?ç¾®äú‰½Œú=Ýü‘WÒ~Ô'³üÜíøýωGù´ðh#ÖãeBÁJǦB7_¡öTrˆ.T]?A•iè·Dñ."nD|6›Žoe»:5ߊÀ…ˆ!ßð=ÄYëˇr“"<Ð#.Zøw‘¸q#êûðúI)•ÿ© ÿK-?›ñe½â{ü }ª€ ×Ëú¦éjYÃv­}ã$šRaCcœ7A` ÑÖd;ý·­¿÷;œ|sŸÙÌ4Ôݧ6#p!âFÄ{(wÐt2Ûõ¹åd.D\ïi÷ÏìÛÇï¹åw(ïjm¯±sùoûý?ê ¢ U7Zãñ9}Rñ[3õlèyàï_øüÓ»üþ_=îãëˆå÷kÞüx‰ ·‚ާTVuŠk„LL¬uj„ 7¢^?­svêîÁ;üãCíZ´M“^PõØÁÞEâBĨ_kVII¸TàÐ êM†àBĘãö× Ï4ò‚zóã´ðh#Ø;¼«2öj·¢­€Nx9Õþ¼‹Ä…ˆëQ? { ^Å›A˜r*¯ÝÚ³xøTÈ™Ø;mèõt&ö"l!ÚFÀÇ Îº…0úþ¾¶Íö:]íC=þBiw¶m+䯞œµµŸ ܸ‹¬=)‚ 7‚>Á ~Ç·îSÁƒZ‰øw‘¸q#ê ¾à÷n“Ÿ84Vx·ÉCp!âFÌW|ZîÍ84ySA!¸q#æµ+Ûnìáž8Ð1ú÷pCpaâFÐ÷KË—äGó²S>vûWÝÅÑ£õX|SK=‚ðñyûTðÀ ¤W––x‰ 7¢Þœ¬M…þ„¿Or³½¾YÉêó/¨3Å[ˆ¶ò‘¾ÏŸÞmhr'(láÙF¼g|[kW;µ'Ï<ðzn껯öå¸q#êÇj]y*ðI¯Œi.ˆ°…hW#þ,ú6?Ì?&|­Ý ^{zmv*p $îþ{€7÷qÒS‰]$Ô9s€-DÛh„¾ît'É2 î$Y.D\ùø€7ž~ae€Se™¯ÛCƒÔTY.D\=¯r\PËí¸„hÍ%i^ôîÜ}‘m*pãÉÝöëÁö†SkKý;{Ú|Zx´ÑNF|—Ï™Ì8Ô!ºS“¸ñjÌ©÷ü–1ÞMØ~=øïÞ4|¬øäž¼W‡ 5³ 7Æ ô…;[áÑF+ço§w»Ú!6ìcÓe¡É`¨99¦"ÔPGèNŽØÂ³õxOø'<>Ÿ{ò@o¢8ªÏ Á…ˆëýà4ÔöUšoÇgØzs9+~qÒ§jRa“:—8õíM?Øü7Ô¾ñBåÕÍ~ÒŸ^MÍýÀ •7Z%ÿC©°‘GŸõȨæ1¼Py£Uâü¢?}ûËïºb}°ãM©Àõ…¼‹Ä…ˆëCÓ¼Ž?©Py½'XŽDh½'ØÕž@]ÓeyôUŒºª‹á…Êë=ƒßTþã*¬×ï:`ã«%éÝ®¿M Ÿ[‰°…gë½À2,?§Py£X±YjËuý'Ž<û®‡F|/TÞè`~èO¯îÚ-ëöø';R/”ÿc#!¸qëeZØuK©°õ¿Qo` Ñ6úÞ],yÞ!¡òFs¹–\2.œø“W8Éè/ÐY¯w´)Uùí%:!ºPuý]lqÝr©ü‰#±×ÛºšX‹á…Ê냩ƒô§/·•/?,¸ºv|+%80$áx‰ ·^¦]'• ”üõ]¶m}0]Gt¿Áó •7šË¸‘+1RAãôÆ- °…hñžŸËæÚTØF3o?ø` Ñ6¾T®´º³Ã›q=og‡7"nÄœ^˜Þih& ã]$.LÜ 9¶-ÝòY‰GÆ =󨵎á…Êshœ×3gÝ^?lå¢Â¿¹¢zR\ýQ¶y(nw¶ðlc:·¡ÇžŸS¨¼Ñ ØÇs­×mkZÔPH` ÑÖã½õ¯}QÒ…y©°Ÿì÷©b–÷ù*gõßgL& M6B=ð3]©ÀëÓ¡–].DÜŠ9Zéõ@ËiSa›"·Þ…êBÕ°Xv±åƒ'ŽŒ@z}„~>7†*¯Oæ¼^ÃðqüêòâÙEýVuù¿]n³;Hï"q!âú„nál”ã'*ot—í ÒÍ™©°Ázû>X«ÛçtYh²êu¦'ÐSÃtCê?"nÅœ~+64HÃzª U¯†Y¹P†Ý8ËÔ^q`—!¿cW~ø?~O÷½Ê÷VkiþYŒ^†ýžn~Ãj Z¾`sâÈØoTÒ©[h1¼Pyc*òÓã¡ò§§.?,X[àøhX*ðúT ásgó¶ƒ]W`„ÊëÓéýÎÕ>ÖÆÀõ®`zx*ÝŸJ«;éÙ®NK§Gÿ}ZªvtYh²ê™_Ž– Ý<ÂÛ^J¢ U·¦F*®2¬*®"p!âFÌGp.í/¸ÚGpJ꯷âÓ£`ƒhŽÏp¥w|p» ´…gñž+Y—õJÙ6J{½R€-DÛø²Ó«~R?Çå[­Ä§…FѾœkaÝ~ž ˜` ß'Xú­í|Zh´í žúKòM­üµa!ºPu#ðš;o¨"Ê80¹j(#ŠÀ…ˆ1‡§*jb^ÿ áù8ÞEâBÄÕ˜/€J‹Tàµa¨¡B$€mEÏMzïm?q`•N[áÐB£h¥ æàÙ\sêæÔ\£ U·æ…ýE'ôXþ¢\ˆ¸ó ÝÝÇ?^™ ‚üŸÝ Á…ˆ1¨"H^†üÕ´Ðh+ÚôTv*lí±Ûð|Yh²ê OüLÊ€)‰†¤ò‰W§Xþ”r-4ÚˆöÛjÖšºóɧ]d¹ÓÉ|Yh²êé¯8ó]Ð’†æœ‹2çÔvO˜½ÍÊÄPÛû  …F?äæ7ÊNè[ýu!¸q#æs}×­¹ÆëÔ÷g#Uu¡ºPu+ðôÒ†TØjgÛ\Á—…&[¡FsxúªšOÊ8Ðiáx‰ 7b¾šãýò—“>ÆŸ/‡nÔ¿DØÂ³p$ØSW§Éþ€Zh´m'j¨~ °…g[á63¨7ªß²|<õL-ãÓ£Xç=¾ê¼Ù-ìi#Cþ®ùê®jˆ.TÝ ûÆÞN…ÝOïòQí©ë sÉÔóOŒz;Ð…©«\ïÕg×·ˆö…¯ S×Ûãø@³äêζ^"˜q`Šã]$.D܈y_Ï’·WÃfš‚Âzª U·ÿñ«+4³þPßÓõ™¶mWÈyµ™O~›¾<7˜åßô5:^nˆ·×,8ÞEâBĶbWõ5Ôf¦‚®¯ZJJláÙV¸G+Ü7JJ³\_·økJù´ðh#ÖGÕ3»’ ™ êôSÍR„èÂÔõi¿CÕgW“c@™fùèÕ¡ §_¿èÌŠqã-šÍÈÇ,ëï~{‘#Ÿ]5µX° 7ðê4”9FàeÈïàz"îY>FÏ 6ZÊ™lêàöqsm*p`‰ã]$.DÜj)Pb¢å€ÀmÚh)V£î©èU¥™®O°p» ´…gáÞgÌnH_eè'u¡ïíEèÂÔI'®Ïê³—ãOù›R‹@ËG¯¾ú8]þ¢Dºü9Ûi½›}^ÉÄþ-…©ëoÿ³œ†\A™ h† µŸ¸q#æy{Œš#K…>¨›× x‰ 7‚>À«|<ý– xt=ú~—aÜŽ1úÛwô„pæ'õÙ[ô.T¦n´™+ìi(/Ít}ÖÕP_` Ï6Â=õh;Ÿô¶¢n'dh+ýòðXÉFK^"ÛHßµ¨Ý‹>FèÂÔõi´C_Õg×>ºù£ƒ×—´T g¼:!m¨æÓB£iô —°à¿¥0u£ëZzíj*ðz3l)ºÀ…ˆ[1_ù9§TèÀŒ®!]†ã ¥`Üú ï[ày¡TèÀ£7dâ¦ãÓlÈôbÖ'úb÷àé…Cïüºcò"LÝh3ÇÖ øEx½{Ì›]õ‡wè??Àœ|Ãvt¶‘—iSÛ»º!¢ S×›ÌP¶Y†½:‡Áé2æDº x;mD»ŸéÅ`©À9@C[.D܈9üú๋ôŽÃhCÖ¶ }îÛVÀᥢºþ±KŸ xt=ú„ŽŸ«>Âé/蟼sãŽI‘q£½[ HÔ7•×73<¼C=ü]¼¶¢½@ ¸éÑ_²¡®Ürï•»0Yh²h4Ùpà{}­ïk \ïBuaêVÔá/¹à,J…®? øåÑ_ÙÚÇ}S¡?áïïý’»ðñjêñÔeP€-D[?ô¹Žü !âF;?.1ä~):ÐÎ>œµÎhÅ® è9ÚÌSD‡Þ¹uO‘†0u£ÍÌXECyp¦ë3ç†úà[x¶î.£Ðsdzj"ó@;wè—‡Ç.”hIÁ­ðë &m'5 ¢ S·š X¼ÒRt»bÕ¥-%·|Zht5ÚÀRhø>ùïk±Ö(]ÆšH—±n§XÃ5¥ê‚~[BÆ¡5Îw±¼Py#ò[Îwu2§ïn•Q¨¿<ú+½Jû®u*t`e1k+ } Í·…h+¢ M;7Ü‚CÀõv¾=àÜŠ15Ww·2L·zç×xM¬0u#ð=·œ2½Ãúd¨¹” ®™šh.]-öåÁ±R¾†jìL××( 娶ðl«ÌX/8=ôw]_Cd¾Ú“¸ôËÃË+<±Ÿ hæ8þzôˬ¤|m*l$,êNâ¤fšCtaêFkÏQ¯¯àFe-¤÷‰Ã k8ýqýîfÚŠ5:yk¸z-ãÐç»X^¨¼yô˜ª#·ŸÞq Sl¨J@í–ÀîÛú"h[Àé²ã\†q£©,#·Ô920·õ–gÓe¡ÉV ¡²²–3™®N%ZØÂ³p_®æ$å€Ra#ý«º-1©Ù«]˜z5êи¦. õS™·¾1ÝÀ—‘'óeèïñVìÑ:­I™$ê ¡-zBé.ŽmÄ=Ü€PMï6ô ázª S·¢ŽÖ}·|W$ëÖÃßú²ÈVέo‹p|#ú;¼ªÀÓä©ÐeEC†Æ[îè#àzÐ÷c#þÙ‡¿ÿË/ ­1'´Ž1ã÷ŸÏ^ìY:Øÿ>KåR¡?áïCƘƒ¾]íC=þ‚:˜ØB´õµÜÞ£å`ƒ¾˜SWþ Ýh.ý yÞZí,WWFþZmº,4¹èêjîmc;€éúª·ËX3í2Ú7l#Ü—ëŠIÉ•TØÈ¸¦jZ(D¦^:4k8“yh=Ôp(!†/C·b–š)™á^ÝÀÝ/ÇìA¥»8Zh´k¸î~VÛ‰ºY”qè%Âù.–*oE~ÿ‹<énáTØ›2DgyWùIf¾”»0Yh²ê \;ëç`õoîÕVÒ¿> ¾p}+öðíxÆ<:°tnHöãø.õ"nýµûW[9÷ÚÊYŸ»,Øt|£¯ P}ÞB§…GËæˆË$„©M]5»Ëúwtê®ê§ËÂ’­8C¥}-gU2]_}âvh Ï6Â}¹Ûš”»-mhb¨‚è42­®p¾‹å…Ê××úÚpQÞ}u~¿ °»B”.cN¤Ëx·ÓV¬Ñ"6üÀw*pè%Âù.–*oD¾!~Ö§üzèšò;üWì÷j%Ä­o‰q|5úðz/AIW˜òûKgP¯Ö–¬úA>Z’Þam®Õz†Ì ‡U—%kþ0k}Ý ¯ëÕ˸Ñ0¬2Ó_ª~ÒÀß[ª@ 6b/G!æÅJ&ý…ð'Í5ý…ðA¼PyãwE7öñ³©é݆~V\ïBuaêVÔÑ:­EŸùqÇë´þ%òx•îoD†ë´ðŒs*t`.äO–;pül‰q#èG);ïHB*äêÌÈyˆ‚í É5frke=Øp•ž0q£u¬è³·4û¤I‘·4;€mÄúR›MÚ¬-mhÜôW~Ÿ<4ò—~ñBåß.³õÎêÄ¡ÖÿA« ^¨¼ù…PX®ÞŸ¾ÕpZü¿çïÁɨ~ëÝÇW­Ò› EÆ¡¿žüçj»Q·2ÿ–†ùëÝ |Ë •×§™gÿ¶åãßô­çG7-ñBÄ'»ÞÖ××ûËž]О ¹2·v—à³]!¹F¯ÕƯ&n´tWWÙêVëz³ 4;TîÂdaÉFœë5}7ÊzOšq¾‹å…Ê[±G“æøy»TàЋó],/TÞˆ<žn¨ó]#§ƒ¿<=šòw|4*:‡yz<—á?.sòÐ|×\&ˆ*oLf¼á7|pŒäÏ¿ÐK¸…g[Ï]Ýô¹S™Oòþ’]E›ÞåêÔ×[÷Ëv…ã-ýþšžëR/ÆdàFÛØÐ©º·Ìò¤vç-³  …F[±~ûd|ÈÃñC®9ý2ä%×ö#÷ó¿aü¸,àE×+ånÔpž<4êûk8ƒx¡òúÏ:€#ÏCÕÔÍKxu×ð™Þ\ˆ¸ñGH]k*|h@vø—çGkGv}¼Ðͯqø—§Çs`þS'M¢ý§"‚x¡òúD#óìß¶|ü›¾ñæö0ó×g÷Ù ¯ÄB`²+$×h =Zä¿W‘O>T·ëî& ùFӰꨆRæLW×-îBf6,$Øh%#zµ”žOT/k¥èF ™^/½9ÿßµù¹ót¡ñ¢†2àÌCC~Cp /TÞøYášKuÏOý<ÉC3iœïby¡òVäñ¢–*ììCC†Ã=ÿö6½/Ó[yv<»Öpâ#óÐ<ºáÄG /TÞ¸¬¦åËX$ßxo¯w¢×<æÂØõ×çœãg œ?.Jý«*2>Ã?Øü'ô¸óqaâVÈ`Bæ¯ÜÏnu!ã­Ü'»Br­w­ÃÏŒ7ž¼~eû­³@ßhÚôþTÐÕeŒûØl´’Ú½ä Ÿ4&®7±^…z§®~t07ÔÕÇðBå­Ø?WÔÀgYóVÀ’Ù×gYÕm‘l¹K·ÝÚB´­€?8Þ½©­—uË—gF‡7uË\ý”׉CkPœïby¡òFkéátËÉ‘ƒ‡Fþ–£#cn×õú*Ho8=œeôø—§ÇÓÒ í2­AÚÅðBåõÙ̈׶|ÎŽä[ïíMó”CÆ û*QÑ—GþÃdWH®Ñ@îX',Øzd¼Œ°å0Ç7Ú4ûFz—«/ êvA®p\£…€×cïFé€Þ<îãFÛ¨Ÿå¸u<7ûÇp³}Ý}kñ»`_¸¾ÿziøã.£ãTAÃq—^¨¼û\BÏÚrQÝàÊ6°…í.Тm=K€*Nï6´œÃõ.T¦nE=ääR*|hi95··ºn´¸¨Óã_ž¯‘˜Õå\Y9– ZÎá|Ë •7¦e \tÙò9>’o¼¹—jok¾:(ó`ý•½ÔÖ[«;î¢`!ÁF©ß¶~ëìÇ7ÚȆVGºÏeºÚüܧŒØ°`£•€×‰O¿ÿT~Cõ3Ýh!õS:·ŽugZ"9ü.Ø®¯Çª—þß9Ê4á§FZ3ÅðBåØÃ…õêù4õÓY'ý°8ßÅòBå­Èã%¤-‡±²õj-‡±ò¾X}Ñáø UzÇ¡y£ƒ¿<;^z þ´ú¡ÕÌC³vœïby¡òúL!óìß¶|ü›¾ñÞ^Ê›­)”û¬M†«3x÷Y6,$Øh#õ{ëo6äøF©Ÿû¸uL8ûÐŒÌáwÁ¾p}#þõ2ò;Gc&üBËј^¨¼{þ'ˆRC?,Îw±¼Py#òøF­¾LÖõL+Ú§5ë™jwÄÿéúóã[B©Ð¡à8üËÓ㙸†c™‡æd Ç cx¡òÆlaÅKž¿mùø7}ë½ÅJªÜ‡2\Ÿ¹°a!ÁF©_ŸëàÇ×ÛÈ\/–¿uàt¾^÷]™‘9ü.Ø®oÅÓþþÓÙ62n» ´…h¯×±Þ©ÍŸñè–Úü^¨¼ûœÁë%KêÒuÆWf¸Þ…êÂÔ­¨“+S!?ôΫýÍ<„œUH… ¬ÿòüèÀ|7bŸ;1ã»W©À­à4ð—gÇKgŽfš¶7/Œá…ÊëÊÌ3ß©òÑïØÖƒïmR¸¼ÑKŽXÉÏ –¾§®.=P¸‹‚…M¯yo:£Äñ6r\EÿWnÕoø¸Vz·¡É®w¡ºPu£ÙÔëŒï$Ë<´Üh8Hà •·bÕ̸+°3\»+°Ù°`cÒŽW17åàøzYŽûFê“ö±×&¨ê&ÛõÉ/nw¶m+àx‘R˱·åz!}eÒëð»`_¸¾ÿz¡ââë¯qm)¾Žá…ʱÇ7­[Ê—ñŸMåË |Y¸žêüøêS*t(8¿ ö…ë[mO¾=Ô–¯n0e™ŠµW‰á…Ê드/¬m*çøFÛ™W`öçÿ Iv׿ öÇÒ)Ï+Ç·Zì_óÐõ Dø´Ðè@7dRžZ-õ[êõ³·î,×+¼+ó‡ßûÂõ>`™É?­ÐhãͯÞ)Œ^ðúÓ–Âè^¨¼û-¤ø7>4j´/µKŠÿtǧgR¡CÑqø]°/\ßj=øvv¯¶}}obƒëZ“ÄðBåõ¾~ÅË^›J»9¾ÞvV~ùe*ì£ÝS‹Fé²Ðd#Ô=4³ö~fâ`Á¬L6Ôu0]–¬O«ayQžYý"ÑZ/i½uzi½^ëkÏJ=~ì ×7zÚãcßÄŸVh´ñÒVÊ1‹•W¼À²¥Z9†*oÅþ£ÒV±œíë£Ó*–×1¢(7¼õ;5¿kå²Û†¡¤w ®w¡ºPu£±×KïGY¯·èV¦Ñ ÇQbx¡òFìçÚÙ«örÎlôörÎ[ˆ¶1ø,ç¤Õ¶lëÁ«¥[wjÛ9¼ÕзÊÚ^ÆùV^E-â¤ËB“P_>Iø,D*\`®»*ÓhµH™O 6VŒ0½}§õ{×zé­£gëõòÝÊ’ËáwÁ¾p}£·=®œ%þ´B£7‹¨bM %¸1¼py#øàE®®¤B·~Ú¿ ö…ë[ÑÇÓl §Öë=±•e@é…^¨¼ûíRMH*M…]_ 4”·ØB´€÷H©MÃÝðƦ]öÔ•O Ö§x0==”§.[ÈëG¬—Þ:ë³]ï:­L‘~ì ××§xÛÄÀ?­ÐhãÕŸúˆ ÓTøP«l© ò…ë[ñÇêU\H…üº.¿ ö…ë[ÑÇÓ> ç ¶ëÝ­•yRù‚^¨¼{lÎá¾zCGØ^é†ÕMº,,Ù˜p ò <³z6w«"Þ:²]o¬Œ×¿ ö…ëó,€Z¡ÑÆ[¿Wk{oUhnŽ£—-šA¾p}=þ{½ŠïNmõ~½[²2f4ÔVÇðBåØX"Å}ym†÷U9¢÷’|Zh´>êá´r8A/0ßñl7Èpø]°/\_ööLwÀ?­ÐhãÕŸðLJC5Ò^_ÇÜ)GŠá…ËÁ«£xP‹b²ýÐòîí%1tYh2j{zÑPdº_/« Ð E¦1|÷{¼û’Z‘é~ù”w~ô»ö%êû ´*‚m|Ŷ0fe>§VSdˆ”S ú~)ŸmÌç`Z)‹ÿXp½~ÄúÄ;%Ι·Þù¾‹å…Ë“¹ Ml ¿«Ðhõ½ß0:4夣|áúVü?–ZÚ*±h«ÄQoîÿ”¿®O|z[‚f÷ù7>ð."nDÝQ ßPsúжhCL”/\_ÿXÌ9Lóݧül4¿§øy—?У­XïpÓ«=Œ:…Î|ý=j' Î¢#p!âÕ¨·ßàöq9ÜGÄÕ"²æ+íèh7ÓF¬á ^ôÞ³TÐÀS{oËÛú_77ÔFœ>Ô‡7ÔFDùÂõVƒ A÷åî¥|Yh²çê®âßø3¨ã¶åzò@/Þ«C„¶á‚ ¯Fx‰ÒGÄë}"JÄ›×Ý~D»™6bM¿ü)4ðÔ(}yj|³Ï_¤pòÐv™¿H!ˆ.o4™íÜf½Í¬ù‡ÍE—ëÑ'þt¶?üúÜòSC¿ÕÛ~=ø>¢£ò¦×¹“ÛÃÒ_;Ås·e~;µsîã<ÿˆ1¿Ð…©ëMfèñ¢QGÕmậѨuêÖ|.D¼uâݯ÷íÞ14:DD»™6bÖqÂ×&¤‚žÚ{ÙÆï%¶ä‡G‰eK~8È®o´šiG$½UßÈ>ЫOú˜¡èÆèÂÔÈ/øÎ¢z1À¨N2ôë³:h¨3\ˆx5êÄ£ð¯÷’(ýoÞBæ#ÚÍ´k¸í¡DÝ%VpgÑ}7À6lèÎb[N7û@Û–Ó ò…ëë­_!Íúx¤n¿ kŒE/Ôý—[x¶ñßcœÕ‘HdèÏWu°Pg¸ñjÔ‰G¤?"^ïQú#ÞÄÝ‘pß°pà6#|84n”~=õŒw‡z)¾Cš} cÙôNKMr…èÂÔö2_®ÓÐ EýÇ NùÙ§ Æ]þsP´ðh#ÖpvÁîëŸälOøGàBĈ¯øv¨z_ɨϲVtSQ¯mÓ§Y¸ñjÔ‰Ä?"^ƒ¼ÇÚqÚ}Að}ÚˆõÆ>Öž ˆµ÷Äü6=ðí8½lCß5Ï~}Ì\úˆ¬n††èÂÔõör½ÛMÝNÉäKÑjãfÃ)º,4ÙŠ3úÊ»ËͦkQReÄDñ."nD|À7šÕ›ZFu ‘ùúˆ¹èU>ê ""^:ñððGÄëã÷È3N»ï^¿O±ÙGžSA±öž¦Þ™·Mêõ¤-š¼Zôrм‹Ä…ˆmÎw¸Kû2 õâîâ¾\ˆ¸ñׯçàGz—ÇùoÒöñÐÙ^Þì\Í{ü5Þ|[ˆ¶~FÇ' W+‘¦ã²C*.LÜh…õëþfA›: ÒV˜*XôŒ¸¾® À…ˆW£N<åüñúÈì>š ÓîûòïÓF¬w4áN Ä¥ÿžzîñ ‡Q@¥v‡ÙfzêT/ÌÑ…©ëíeF³„þÂûLCó ï"q!âÕˆ •GÏU<Õ༌ø-\Ÿ 9ôMÓÕ=¡ùHüRqaâFSñЮM‡&uÀÈ<0©PÓ(x‰ WïðúÃyekÏÝLmew*<ß O…_æÖ‡>ˆª»ä!º0u#òkFîÔxÆÍ#l^¼‹Ä…ˆ[1¯½Híg˲mþžn½ Õ…ªaßà,ÅðP$=ò¸×¿ª{ýx‰ 7¤ M% •‚ÏÝLëmåwãz}4ôsºòGàBĈOøþœz]ŤNu3ôèêQÛ¼‹Ä…ˆëcщ× ô¨ÉÇs7ÓF[ ùlbzçÞ\?÷©~ó1"nE½¾?מºÈºÙ·§.Bt¡êVàÑ7éfuSA#]:Œw‘¸q#â;¾ÎuçE3~t_‹YIçÏ‹FàBÄõ˜ç¿@€E¨Q?¿àSFõ¢5ê¸q}pý°‘Ý· g}>ž»™6ÚʈoϹ‡^~wâ""nÄ|‚ëÅà ©À'½­´Ÿ´°…h[G_ 4yž =Q¼‹Ä…ˆ[ßÑ6Ÿ?I´Ø~=øŒo†¸s燆}wî<"n4üã`ƒzîy2¢îAouNaD 7&,3ºÅ­lúéß4¹MmeÇ÷pÝÙ­ŒC/¿;» ·b>¡9|ª 8ЙûCà¶ÿ$Á¶"޾@h•E*hhØGñ."®G| h‡Oˆ¤Ú l_¯jsXdöݸq«±à)ýLŽu0Q±õêœÂˆ:"®OXvôÓzþ1ߦ]m¥8K¸åfxÌá~ÿùCoÿ~&ãϸ,ÿ©ó•loOûëcg{ ;·Âõ°ÿ§G›i—á¾cÿß·€÷—€ó>› ¿žzÿ0Ð{âI=#taêFS×Z·ø÷5©üõÙ¿|MJÝjɼ޹œxþþʼnìñ7Ô­–\˜¸ö /÷wYdš^¸‹,"p!âÆXt¹+‡´j¢m5t¤sßlših~î¾Û4"nD|Æs ŒCÓ\wÕY.DÜx=Ñ{ªákP„F-¥þ¡¡¿ñsSÇOuå¿×>×ó7 Íê(¤®ü#paâF؇Cô«|õ› wô€Åû‡Þ§túK¡ S7"¿ÃÙgEÎŽ—žø+r"p!âj׸?h¢Õ} ÃVËŽv¼h…e*h¨¢x‰ ·"^Y¶œ»9“Z/3j ‹ï/O~ï"q!âFÌûz"§¹6ôÔ¡î·Ì™Y£ U7 p¿™œ ]o3-zª S·âþÊp¾„ó¢g8Wì.ü9qhFñ."nüœpê-ƒL ýœ(ÞEâBĈ/=6JÏu¬Ó&Ñ'^ëx‰ ·bŽï-zËfOÚñ–͆àBƝx^g×—ézØW47²ªÃœzSqŒ.L݈üQêÂýxw*t`záлP]˜º÷šáß ú£ûœ3r—84Áð–…àBÄõŸ³‡‹ ЂËTÐÐωâ]$.D܈x?S£^`¨ €Œ ï"q!âVÌñt—·@÷Ä¡ †·@7"nļþá°¿ÄÑ®&ŽÔÍ‹¾öù­¿ôË{Vêš~Q÷."paâFØG4q4=êŒTý˜Ã鳺]]|è]¨.L݈üžÏŸõ´”ZõzêÀ¬Î¡w¡º0u#î×om“ª0RC“/oýH.D܈9\p€–½¦‚†~Nï"q!âVÄÁ¼×¬^ 9ê‹£Ì9ð."nÄÜqS¼·ˆñġɗ·ˆ1"®Ç|x )/ý–µ4íÔ‘È¡w¡º0u+î•1úN^=ãùEzpóê¸q#æ=ž t× @ÒÞ‹w‘¸q+æh.Ðû»“†~Nï"q!âFÄ4¨^·:ªóóŒã?Žw‘¸q+æøžñÃYÄxâÈøï.b Á…ˆ1?ŠF€ñ¹¥X'ëú@t«X'D¦nÄ}3ËCvu9šõú¯êÑ»P]˜º÷¥ÒÞïÔxd¼>ïj©ñˆÀ…ˆ[1ÇS¤îZ¦/ ñ×2EàBƝhÂnU[‹>K_Ñ´Žw‘¸q+æøæeï­’Ì84 @ñ."nÄü¸ç–y¸>¶±êj¾ ¢­^ °ðm=î+OÛ(Üzª U7ÚùQÁÌÓ[*DzÌu[*ÇBtaêzÜǘ]ôU€^…1Öö/[ô.T¦nĽ¯´÷;Gf»8ÞEâBÄ­˜ã9iwa݈W3ù ë"p!âFÌ4CªçÔµQÆ—Ç»H\ˆ¸sü3=þ’ÝŒC³]wÉn.D܈9| |d*lhêë]¨.TÝ ûN[Ê»²L½ZÊ»BtaêFܰ `Ñu½ c¬ÈjÑ»P]˜ºw°  ¥à(ãÀä«¡à("nÄ|Å Ü…u#^Íä/¬‹À…ˆ1ßÀôô¢/2ô©ú&yx‰ ·bŽï×»Kv3M¾Ü%»¸q=æ||;`*lhêë]¨.TÝ ;ZÐRϘu`êÕRÏ¢ S·â^™”Þ©gœ.n5#ŸmD»k0Ö‡>ÑU‹¦ÚÙÀ½ Õ…©qÐŒ†ÚºŒS݆ں\ˆ¸s¼Ã]C:9 ÷Ü5¤¸q#æ#Xƒ±è­E]e˜êâx‰ ·bŽoÖ»«Ó§ëµì•©®»:="nÄ<¢3úÑs‘+HláÙFÄg´Ãý‰Ó†–°Þ…êBÕ­°ƒEME»Y¯¿FME»!º0u#©Àk Œ–’]>-4ÚŠ6Xò²e#jíÅTÛ¡oÑ»P]˜úGÜ_‘9jSÇ~Ò§.Ùߟu9üŸÿâßã¿õßöñ}£.Тm4Æ­j¨cÎ8Я4Ô1GàBĘo`MÊ¢nºLúZq+;x‰ 7bŽvÔF"ãÐìß}F""nÅ|á×¥¦B¯Îÿ[*jláÙzÄçÇÏÏýåãóÛÞü÷wÈ­w¡ºPu+ð`PSó\K[Ü*cÑ…©q(N^]àtG 6¢=€UW«Þyé•síì{‹Þ…êÂÔ­¸£UW EÌ^¡†"æ\ˆ¸óü%L} °ýà[¶Íaºýè[ˆ.T]?þ6O`áÕªö_“º0×¾Ò€w‘¸q£©ãßõŸKÉ8´Â@ñ."nÅ< ø:zuá°»@[x¶ñy®v\ç ÀFb~Û ·×þ3!ºPu#ðµ+AnÕêϵÜÅ­Zý]˜ºw°Ø­¥V?ãÕUFC¥>ŸmD{E‹ÝŒ–¢&éçÚ½-zª S7â¾Ån-•ú¯¿B-•ú¸q#æ;Xxµª/Ò¤æ‹çÚ—jð."nÅ|Fg££r @¯ÊøÓýþõLïý•>Øç·0õ¾…N ¶¢—¹¹Ï\eZX¸Ï\EàBÄõ˜/ R¡W—-G"láÙVÄ/Ë-ÖšTèвÂþ'DªnþrÇ3çfý€6{Ùì?ø¢ U·~T´È´áhRÆ«cÃÁ$>]F¼6¢]ûšèÓ1kíš©;§c"p!âVÌ_ 8ÚqªTèfÇÕ~,Dª®[g´ÊT_$ªÕkí+¨ x‰ 7ûüJ®Ö–Z‹²ÔRKð2,ZÞVq—õZǧ…FÑŽ8]’ ½ºdi9` ϶"¾b52Û¨?¹>_Y*ùའՅ©q¿|Ú5œDÊt}©Øp)Àžm…»R#së0ÒZÛå¿u)D¦nÄý8uÃÌ—•6÷ h*th™è?¿¢ U¯þ¨ÔsZeÜkcËù2>]F¼6¢]ûoà ­TàÀB±álY.D\ùöËû6µßšÔ´mÆë?¨ï"q!âFÌ{°ø©éLBÖksè¦ ¶ðl#âèíU›1±P;ò ½Ê£w¡º0u+îXíÓ¬ŽCêL4Óõùnw¶ðl+ÜhíSË1­¶ßëHˆ.L݈ûQ€ÏL‡–6÷°c*thþì?¨¢ U¯þ¨Ô#eÜ«³hœ.ƒN¤Ëˆ·ÓF´¯©ýõlúÌI¶Ÿ3Ü‘„w‘¸q+ä` aËÉžŒ‹ï"q!âF̰†pÓs¡êôVûþsÞEâBÄ«1‡[ÊÍúQ“󭧈Þrf—ì“Þ‘Óé2Þí´í€öTèÕEbKõ}€-<ÛˆøŠÕ6ÔÝgº>±m(¼°…gá>jÌõ.ü÷ÝzöUyùáóϬó÷ÿêí»V×߀w‘¸0ñzЉٸ‹úOÆeZ¥øOÆ…èBÕ­, l9Ä’ñêZ¥á Ÿ.#ÞNÑÞ7h…¥×÷êgʳ]_§8ð."®‡|¯}ëýo)Ñpbh¯Ý™Ö€w‘¸q#æ— Ÿj³}åØº~„%ãÀ¼yý>oÖO°ði¡ÑF´p.4«ƒ¾ÞÀ+/OƒÝÚB´­€œI…^]¦´œ_ °…g[GëWýÉÕýƒ¬ù7‡Þ…êÂÔ¸XÝ`Ãá’L×W §KláÙF¸'°~ Ïy–6õH*ðZ;i9¹Â§…F¿äÜ#aÓ×E²]Ÿ.;ð."n…|¶{†S©À·Ç»H\ˆ¸óË£ký]™èëÊ‚^7¶)³q½S¡ÓB£±hÓN ”á®Ïj›NO„èeÐoéFÜ×zéwûĬïЪ¥ S·âŽÖ­¹ÏN¼ôê¼Ù}r"ÆžmDüò9qN¡z*èúü ·»@[x¶|ì_¹Ún<ÿœ{îÆŸóç¿ø÷øéµ¶ÿ¾/®^öµÓºkw¶m+à`Íž ºØ`é”»vÿ…W§Ì8ÝÅÑB£_r†J§üß*xÙÕé²ÿcA¸q#äµ/‡7”xáÀtÇ»H\ˆ¸óËÕ1µ‰~¯LôõNeÅŠæÇC™ë mD-#ßÔ2¡ïÛË6P‚„Û] -DÛ øêÞÂý®¿˜Í…ûA¸0q#è;TÅã®ð~ÑõÉ2nw¶ðl=Üý«âqlŠ—6µ&8xuöæ­e¡…F¿äå;ÁÖäjÐWõꛓíúÌÍw‘¸q#äµ»Pš«™_8ÐÍâx‰ ·‚—ñLƒ2é4‚ŽÄÌ^™!gÓB£±hÓ ‚Ëp;´îbæ(½ ú-݈ûåØÝõ¯/º:ä» `cláÙF¸g,ÇîØ£-mjÅd*ðj;ñVz†ÐB£_rrìþ[²_v}2áÀ»H\ˆ¸r0æ/õ|éµÔ_èc Ï6"~©ïªÍFe¤w)–«žƒ2QÑ»:-4ÚŠ6šaw×¾tàíq×FéÂÔ¸ïP¾×]šö¢ës omZŒ-<[÷ðÀÒŽ-¬‹ ¦[ʰ†Ë÷öŒvÒR„ŧ…F¿d¥ý·¿ìêLÂ]p.DÜyD%S*ôê\¢¥+ÀžmDüz›ge4)s ½KÑ4Þ¨LTô.…N 6¢=ÏïÎôwzÍe/yzµôú¼Wnþ÷3qS—UÙ6¶QÝvh Ñ6~9”Ë)|I]ŸD4ÔëØÂ³p/X̱qUÚÔTàÕiDCa Ÿmü’—ÏGY£¼‘MÒßœË&ù¯“ Â…ˆWC~íi•¢çƒ_^Z¥h€ýð¶ðÚù¾;µ@Òw Å@¸0q+èxâqV&œz7¾¡)¼I™êÝ8mD›_Á”Þmm„¸SxE—…&ë¡X®±¡J'ÓõiUC™N€-<Û ÷òêGXßpO…þ„¿¿’K~%ç«Õç_P[w€-DÛy¥w[²/»¶ós§h´7Pî”ñiáÑÆO9@ù]ÿm†/»>Ivà]$.DÜ 9šßm©±ƒM@¶ðl#âžß]”©¦º™œq`Ò¶(óAu/™O 6¢=cyƆòœLמ†úœ[x¶îžÿLÚüGïØG¬Úú(›{ÑÆ^ž—îâh¡ÑF¬/_õ®M~Veò£Ï6w4Eª]¦©O6é´Ðh=ÚÓ娧Â%tuÔi)Ì °…g[ááÉϪM~Ô¾$ëÀ$b×&jg` Ñ6B>€©]|Ÿðe_Fù–+€²]ŸB´Ü 7~Îi‡b¥ÈEù*Ñ‹5”îâh¡ÑV¬ñ”—òm}ž™ñú Ö?¾?·>ÍäÓB£±h“j•Ê`»Ôí5Vvî;¶ðJ|µ”ådº>‡h¨Ë °…g[áÆ_Îï&¾ôú¢ïµ9„Þ{óm!ÚFÈW0ñ…ï^ì´­ê'Û¯7“VóC—…&?cmÃçN½Ïdï›Ü©öáÓ£pï 8ÅTÊZ”ïá¼h`²†Ò]-4Zõ<`[ÓŽ…üËžÐ]»Y‰ˆšDË4”îâh¡ÑÆïˆ•Ý6žÁâÕ¦3À¸q#䶱ᘾlöÎqz—¡Ì+wa²°dý7\† zmZNe»ÞøZŽEàBÄ÷ˆ·bRA Žħ…F[±¦o ¤ÂÖVï764è²Ðd#Ô3:iU dô+‡3 ¼1(ÝÅÑB£XïØâ£¡6=ÓÓ±IB±»@[ˆ¶ïÚIËæY¦ÎϽ ãÓB£õX¯tÑ´~§õk$3 üŒ(ÝÅÑB£XÛ³¿;•ãëe e¾ ¥ã¶m#ÞXº¶©Žy“žM…̸q+ä#w¿5ò³›Z©{ÄtYh²èì¥Ü{]‡ Œ5î­.º,,ÙŠó½-ó ¾-úæHÆÇ鯇*Hæçþ?ÔÇQ61¼PùÈ·gÔŸ^=ȵ.ha úíTÐÀˉÒ]-4úã§¼<õðS •7º€Íœ¶Ýª¾Îv}0n)¿ŽÀ…ˆ!?¾@ÜÜM­îÉxá. ¬Gyëll›ô±MÝÍ8òRNú;¯nnÄðBåõ±ÍÁÏúÓ«uª[nîÊ(Qöµ© Q¥»8Zh´>¶m¿¤0u£ gRAW;-wf„ 6¢<›n{Jd»T{ÍÔ”]šlÅÝ6v§D2 ¼(mÄú(c¬Oô”­¾IŸq¤×[ô>U¨ÅðBå©ίúÓ«ETÛ‚åð%¦‚®¾Ÿ ŸxäÓB£©Ã:ü”Bå.`à ™ñÛÒ;m„ÜMwq´ðh+ØXꨡ x»,äÍLCEp€-DÛˆ7=™› º:Ït' Ù°`=ÊÇÆ1‹›Þeàçs§žé²°d+Î`C?¡©ç‹2Ž 3›>Š©­:†*¯ÏÖü®?½úÍÕ}À’øWSAó”îâh¡ÑÆK4\γÍ_ËßslÏ!'¯^·'¾wÇ<ÑçËÿ¿¯á>¶ìôï}ö<<®vf·?û{¼é¶m}‚¼pbÇñö•7Ì83døþ¨TØÀdÓïU€-DÛøŒŽ î¢ˆÝþ>C{MlDy©ý„'íNœgø݉s>-4ÚˆõŠeè–‡>qS753tC¯÷®êÆf /TÞŠ<–Bÿ]˜ ˜£ tG 6b½­à@¹kƒ‚ì­–pÛ] -DÛø>Bcƒ»¸"ï‚GVq¬Æ¸ôh6Ê›ƒ?i`Àñæàh¡ÑF¬,µèEšêVÒ‰#^æ8i‹³ ^¨¼y4]„~Þ.40àx?Ê@ 6b .'ñ[iÒ;]lü—éУ­`/Ô2“TÀÕÇ[C‡…1¦—>¤‚®þ|Þr :,$؈26ñ'ô³\ýùüù|¾,,ÙŠ3–dYô’ugäÄ‘a\/qÿøfeË •7"_ý>^s)Âi ¦¹!¢mM;))aõòŸ“º+”îâh¡ÑF¬÷šÕO\Ö½utXH°ã¾g'õSAW>olDyÀþdõIú7Y@ 6b=b‰ƒõ¡OFÔý§Œ#ù~8æã{],/TÞŠ|ídvsÖ÷´AÝõ°…h[G35ÊÒI½Rí¤ ¥»8Zh´ëKxóë'\Ú½ùu:,$؈1=S ºúóy³ëtXH°åÝñæwOÖ½ùÝZh´ëcuT¯ÔžÔJmí{t?öüþ².œ9åUkzç$a¾º¿âaëw®+$×úù°ìÚjd×Ôý•Œ#³±EŸì©[,1¼Py+òè‘waÄis2waD„-DÛ 8šÎD?ê– p¼Ÿ¢  …Fë±zðü~­ÜÅf—1¤‚®ÎHÜ¥lXH°ñ ¢›žîÜÿ!swêŸ. K¶âŒe–<ß’OŽ aú)ÑOæu±¼Py#ò—/³“ªRaײ†¢‹[ˆ¶p0³Ê-t½»r€.€mÄzÆ2Kîâ‹ W·FÜÅlXH°ãË,5T_ —O°è?_CñlD¹úÁ¬ö€¡òå©öô?]šl…Mâ¹Sÿ™ÞwêŸO 6b}¹dßœ÷Eêú?ãÈÌI?øüñ¹À.–*¯G~ì±<‡» ÃÕÆ]À†…1¦'ÖSAWw1lD™ŸÖM…]füÉhº,4Ù 5šRr'¢3 ¼+îD4ŸmÄzsŽÚ§Gý^€ïTv±¼Py#òËBMõ¦®4îä4lÄx·Æñk³.6;…œ º:ˆ¹ÓÞlXH°ñ ò3`©°«C˜?oG—…&¡f'¿Ò» ¼)îŒ]–¬Çyê±íBwF-ÃÕnÔQcÃB‚èv¡;¥6]>†euuîŒlEy…~>e±¥^p¯œb¤üÌ¿ûý/úÃ/¯~Ë'€­^ç {å©Ëwðõ#NàžoCj.۵Ѫ!1G—…&ï ø 冤Ü~ !)ǧ…F«WÞýÐ3ùm´Ù/mHre¸ÒU7$¹Ø°`#ÆôF*èêÏçλ°a!ÁV”ghci{;¨ü¾±dÄy·fÆ·ZÚ÷#Ú¼Py#òÇýÇÕY™ûÆ ýÞ¨t©z/B§…F³2˜ž”§V7î§ãˆ.‘­7½y@ö4Q®îD¬7ºg"öýú¢ò\Ïð¨KXsÔí¿á‡XôC!ºPu£ùÑS0© «-Û6bÃB‚­(cU´›QMaÄ­C}è5¢Á •7",—ª#»2YÓ¯°È00$¬Êh£n…ói¡ÑF' Ó›òÔêÎÅ<dZh´ÑôVdÓº!וáê8éÎu±a!ÁFŒÁ—4d`fèÓ· 6,$ØŠ2¶ií>zŸaàíÛ•[]òi¡ÑF'ŠÒ¿¡ÿúÔê8¾<À-8˜­7½ãÃð¬Ëé´N£õ|5—kÛ:u'ü2\íïÝ ?6,$؈1= ºöóùÓlXH°epëôí$ÞûK dX¢L½¾Rç1¼Py#òÇeȇŒôÙq*øéïåaè]¨.LÝ üë]¢áI…|¼Lß>”Ý~îˆO ¶bmÒº³_®;îìlÅÝêõ‹z?2Щà—Ñ¡¿~7øvuü1Æṳ̀w$³>Ú‡ðBåõf³>° >÷Iâ ‹-¿¦Žø|Zh´¾6]KS†ßT¬–‰è3~¼ýk.ß~º×ÿ¦þß×8ÿû“]¨úšÿ}k„ǧ‘¾kÒ{u@Î<Ðw9ôί;zFaêÆÛÉØPk¥B®O'ü'Ìø´ðh+ÖØ~¶;Q˜áê”Â(dÃB‚•”HG2ë/£Þ¨sájýet诇Ÿ±mâU ·:Ê00¨ÍßµIüði¡ÑF3yÍÁûooùš#ó)ëéõ¨ ÿ7ÌÿéòqXi€z:ö#ÿ˜ h€½óëŽqR˜ºñ“îÐ@æ?²uý4Œ5"ølÑe¡ÉVœ±=ow¾p…¾æØ/dÃB‚­£Ç€ûUÕìBæÑ¡ÿ=üÖcµ îCÆƃEjÔ}L>-4Zo&Ûñ5Vº,îÑ—~=3ҚߣËB“0Oð½~_ÍG6<<ð6:ôί;f¬ÂÔ­ÀC;ô ‡Ä²\ N‰ñiáÑV¬¡z’uƒ¾@ÙdeÃB‚­Ã;ô»þ2ªÛ™^F‡þzøÛ'Þ•a]M,d •’JýkD|Zh´ÑLÖ£b}žþöZ‹Xoy(Ë-p;b=?Èí÷ÿèoãZ»•Þmw¶m#à;XŽöøþSêÙ÷mŸ ñΔÓeaÉVœÑ]þA¯¤øHݤ‚¯÷½sëžaêVà7°…£“SAÍÅ}KÀÞ#Û¡ “3 ôÝJͺþÍ>-4Zoû4‚í= ™ hîœ8í>n›¶bnz:ÿcÓ<<Ð :ôέ{vŽ„©ŸÙ'gSAÍ¥_O½"»i Ç[3 t'»ÒS©ùY>-4ÚhÇ®(ñÔX*h }¸Ïºá´ûûmZõðx [jžoÖ§‚:A‡Þ¹uφ0u+ðà²> ˜ h.(ýzêÙ{ðŸ<áz8æ‡ÒSi/f-4Úhì úTÈùÇ·]Ƥ_šlz Üåç'=ÎjçzâóÛFñÁBË'„àÂÄÕúK>hº¶=: 'øàÓ’é]ºUTîÜ2:k–l¼73¼‡¤W‘|l릂f½sëžzaêêåv?úL{„‰[mÜþ‚O®·t˜~=õŠmy—ž00}Pæõêõø´Ðh£}åRÌÄE*lãøjsÂ%¢­¼Ç¦>î¢óFz‘IëE´ýÿZx´>éíY³{µýõt—ÝÖm4¾<9¡^7– ýÚ—ð®J‹Ñ…ª[‡w¾‹°ÔeOæ©›Cïüº#¹(L]Ÿº§öå³ßÒF3bûß“2 R—UæZɧº®âÓB£­H£Ë=s¤VBœúÃè[îÜDå ×7¢gµ…„úi¬=zsJ.D܈øe¹Ì9~‘ éWµÃÕC¡ S7¦£¸¾©Ï®UŒüè` >ž Xè{O³ã´ûvÆû´ñú,p OÏÖ$zSÁ3"‡ÞùuG•„0uc6· üWH˜ºÑh6,‘ç=}ÂÀ¼H+9ÐAÐB£­H£µ4 —Áœ:4rø]°/\߈>\:á-¸›sèj¾¶×J߆-õBoHï20—ó^‡ËîKsoËÆ«ÓÃ)U½äè£Z%<0rè_w”z S×grCf=¯0u£Ñ÷½òŠnR!?w¡Ç~" Ñe¡ÉV ±40z{Á †Ïîê¥jÝÿ©C3,‡ßûÂõŸ­ñž¸È24Ëò¹ˆ°…gÑ.¯AWG|mG^Ÿ•—‹ß¦;?ý‹K„F[±†Ó|zÒGH*x`Hvè_wÔ S7Ï/I…ýø{hE,tYh²jè{‡øÝMÂ5\_wêРæð»`_¸¾þ³ŽpÕ‰÷ˆØICÊw‘¸q#â=š±AohH qÞ{%´÷þáû´¾ÜpÂï)¦n´“ã$·ð)úuä$m…èBÕÀ_?MÏ««H…ÝG Ö…ùÂõ­ø\ø™ úu~ì ×7¢?WwÚër2n57~yr4å=Í|ÒPP¼ç™Cp!âÆðºìôŸSˆ¸ÑÊÙw–¤w˜Ìx/ZÁeïµÓ·e£…¬h6ÁQÓ"LÝh#õäí­Š‚ìCãhKEA/\_ÿ_ Ðp#ð©C¿®Ãï‚}áúVô«í‡úv¿<ù îÆŽF©›ZE?]Ê.ÌféÑ_æ¼Ý—UÔ³;n» ´…g¼‡r¨ c½¡ô•uÌ; ¦¡ºk¯Z"àFÈ4/¥ÕªŽ™æ1(Ýùi4å%4ÚŠõ‚6ïAk‚jýiÆæ Û—p£Y#G0u½B,ëãcRßžuÈU(Gd~ÿùë?¦Ãýø¯7 :Bô22÷t£=N;4#m©Àò…ëñ‡¯Ëh¸ÕÿÔ¡_·á^ÿ(_¸¾ýêÎ]{ LÆ¡1Å_O|<Š>’ ‡G<úåáÑ 'Z š úEQ¼‹Ä…ˆ ý¸±’zsD*p`ÚÛ¯¯Õöb/n…L*ÃW壟®¿?þ aÚý±‚û´ëmÞøÝ©ÐöÝp}É„~^ÞSI&LÝûöÚ TM¥B~¶•ZéE—ËX·Ëz Ÿ—ŠòKšRáC³Ü–’¬ _¸¾4ÿ­¿FúõmY‡~]‡ßûÂõè÷ø~£»$.ãÐÅ/OŽyÊ@m4šÎ"Ãx‰ 7ÚÊßáˆ_K‘ ˜ 4ܨñƒÉ-Qˆ¸tpÿ¾o1½ËÀD×}I$*»?‘r[¶â<¢¿t!:иqünpŸË“¢¦n„ýšýÊߨú¼ìpä’O>-<Úw½>êV¹aö¡ÉâÿÓv/K®ëº–@e÷^¡÷£y>¥zèW§>¿2-*-Ó8 MtîqöHL‘ Ržrà _¸¾øâ˜^zu±(ëȯëùBZ”/\¿ýa›õýž> Ç@ýûÏçËõÓÿ7ýy7ézôÍ öf½Œ=W/#O?ÿ¿¯Ç«kš«U3¥_(~yr´ºfÒ[äd¼±`uM‹~yx|ƒÍSÚŸýg«ùù³üG°/\ßèoÐBÓæËêyŸÚo« °…g[ÑF«›~Q%ÉVw³^ÏàðWÈ7¼©¹&ž€AßÐù©V)¤n7f˜ ¢ô£™†K§„F[±Fë›n“I…4p¿œ^(DÛˆy½êÛ>(ãÇø³˜¯Oû½½¸q=æK‡×Myjá³¥EžZø _¸¾øN,c=©S£ßÃuGž/ØFùÂõ­èãuSÍUñ‡º³æ8.Z75é™õ†ƒž?oÑ/oszŽ?eškxŽ?ùÂõf×…7_™ihÖÑ|d.D\?¬¸ŒxjÓ|Œ…€meDË¿´ô]ÝúÍ40é@é2ÞÄʲ2Ú~Úh%µKÛÏ=Ñ6I½º¼ùÌP*p(ÿEñG$.D܈ù‚×Ryjî³ Òžšû _¸¾ô¨OÃ]¹©Ð¡Ì·ÁûÂõè¯x-•2zMÅk©Püòäø¶§ç¤Rö¡äÑsR)È®oµ´–M[êÔ_Ú¯Cñ2îT¼ úÜHk6<;@_'!âÆ“ïä²-aÉÖ3£5DzQ…þ‘†®¿›k½þ¹ù”L*p(k¾Ë9"nļ^Æz«*<ûÐx×à?‚}áúFüá«.IN…åa þ#Ø®oE®–i¯mÏ8ÒµÑ~­WBß:K“}(óœ¥ ò…ë-]Cm¾kwÅ"›/Û °…gëYÍZ¿Ô’ƒ€[OÎ.­m=5ºÑŸ…¢m¼–õªâæÓ'©À¡D¬ùÞñ\ˆ¸ó."pÕZ¯xm¥«Ö:È®oľ¬Ò˜òéó¦ß„oðÁ¾p}+úpA{ñiÆ¡¡ Å_O^¯VôœðH…¥` þ#Ø®o´¸~±ù®àLC²ùºà\ˆ¸ñíï¥ìH…nž°kÖ¡ºPõS)¯‡Çk;Û+Ý ¸‘ £_nÿbõmZê­vÃñ_Žßõ"D\E·Ëb'å»’©R–,/㻼?å^?¡J—…&[ÆwNšŠešo4Ö "nÄ|€‹6\¿^Yé*ø ò…ë[ñG‹6> úuüG°/\߈þm´WžfJPüòäø&ç˜Dö¡™†ç˜D/\ßj9hц–„é/툗> xw*^ýnDüX¤}Fœr¿\*äMOi²½LWû‰æ? §½|[ˆ¶~µ7ŽÏ®îùlxun{Ù<7áq õFòôŽ›KÍø#&nLkWyÿÍîðËÁ„ˆ[O¾°_"!ÚF;¯×*7IMhš?Ï 7b^/y¼UÁ½áu¾® î _¸¾øJ߆q¤B‡~Ýÿì ×·¢×=¡ÕÄ©À¡œÅ/OŽ×=yνdšÊxνùÂõ–³ƒkÖòËêïlµŠ Ù~Ú³­h¿vÃH—¦ÂŸ-å{vÝŒ?"qaâz¹ãUèí'-¸õähe~õ©q½ïõ*kÿy®ŒCy$Š?"q!âF̼lËS{¾ãÊ®Úó _¸¾ô¶ß–Of¤B‡~Ýÿì ×·¢—m5—pgêåQüõäõrå['v²e þ#Ø®o´¸ìºùžøLC¹dóUñ¸q#¯Á‹ºÛ-pãÉÑK¨[.¦n´ózÙ²ÿlÔ~½ÖÎlÚ¿û 7b¾á" ÅЩ𡜦ÁûÂõ­øƒ"®¼gùu[üG°/\߈þŽˆ4—DgêÎPüòäøj¹Þëçöë% vNã:ä ×·ZÎ5þ_ßÜ…ÝY¶Ë™\Ö`—Q¿cëØáêem‘Lï'/Ï]K&QükÀYø×ˆ;q5™;¼b·ùÜ7ž¼vÍí¹v¸tê¤þä÷qµc»zEªût׉C©dë·Bp!âFÌë…mwêtO¬uºQ¾p}#þð]‘½öBi]ûi›d³þÕ…ª[aÇ÷ä[Ë\OêÇPüòäøJ¹ãXÃéCÙ£ãXC”/\ßh93˜‰i¿¬¶L“e(AíG -<ÛHfðj½æ¢nn=9úaµûúøîˆq£…׫ÑÜGGNJfZ/-Á…ˆWcÞS‹˜Ë ›3vwýuŒ^†ýžn¾^Qt§8òô¡áÚQå ×7â_»äò/Ë´žLP÷z’׬?Bu¡êVØáùæâÂGÿ{ò¾^Ôu§–üô¡üÑQKå ××óš¯k.ïdàÆ“G|hG˜ºþ¾öõú(w ù‰C™ Š?"q!âFÌ'|ØQ5vúPO樋ò…ë[ñG÷‡Ým59È:òë¶ø`_¸¾ýÞn®½:q¨ŸGñË“ãK¶ŽZÛÓ‡FXG­m”/\ßgñZ¦æÚ7n´yü“ÂÍuª'U­w ‡àBĘ×wqïÔ>Òxꀢ|áúzüø‚1øöáTØæÒ¬?Bu¡êVØá ¨æšŽ‡:I¿<9¾"d$6ZíØéCÃSƒÿö…ëëÃë€WI4×Ô0p£Í8óƘTØÆ¾œû¦›» øÛøÆ¾£#½ÓÀcÃôå©ñý§ÖÊÔ‡r™ÖËzCp!âFK™ªÛ 7 Q†zÍÂB”]¨ºøã’Þu¦©W´Q.Ÿ™zámùØPKÄùG,/TÞj-ø¶MsýIÆ¡±Å_OŽ"ÖUg8\ï/ªd]ž:à _¸¾‘5âEí@¼úäÌT£|ð;¶ñ²¾]Íó•¿QÓ1\núÚ\nTtØB´­ãÛdÍeÃõ¶ŸJ†âH\ˆ¸ó±«n“ݨá;\ü5!ºPu+ðè%1øå‘©À¡_ç±¼Py#òøwJ]Ecãõ*šJ2à) ò…ëë)Áxlûó¦6B“Fƒù°½äj¼ÞÃa÷ðͺ…àBÄ˜Ïøæ’§ˆ`Ä·š]EA¾p}#þµK3þzaü’´TàP'óX^¨¼y|—ÆS¼4^oæ¨tñžâ¥ _¸¾ÿãÚD¤[•nmÔ“³ºùÇ->éåmæ`ÿÀýˆ£…F[ÑÆ š‹•Æë} •ªõ¢¨\ˆ¸ó©Ã· ÚK&àˆ|³þÕ…ª¯Áÿ«4îõŽQ|ߨâ?‚}áúFôáuÚ^/ÇÑ»öƒÊ_ûÈ_ÞOöù7ôÎ="nEÞ>pU‰Mü³ºªÄ‚|áúFü'x${%QùŒ‰Á¦äjϧ…F[ÑÆ‹\•*£©Oðbpó…?!¸q#æ ¾ŒíØÖž€³æ7¶µcx¡òVìÑãìúìjÅOÆ‘¶ÄòBåȯœÎè§®ýð¬`×S½wÐ…©[‘¯OYÏWª½âjº^V°Ù½Y{ÅUˆ.T½x`Ï¿½ uªèêFjˆ^†ýž^ ;õ#%e܇g›?ßÔ“^»7ú‰@Yétñ´îN×µûèÔuÆÒÞµW2ju(eÃB‚(ã_˜i¯Ç›¯'ù+é.Š?"q!âFÌûz?Õ^: —…1¼Py#öµKþrQu`þ¸Ô*8”êâü#–*oE~…uýЮѩ~=Ù]=•Ö{ö]˜ºy|5¿½¾m¾Þ`QIvÛëÛBt¡êÕÀ‰zûñ¥¹þ=.ÿWÀcô2ì÷t#ì—5}ígn-gûxO¿c±DâÂĘÏxµÀ¤äëú¸:ƒûîë¨$Öú˜J§…FÑ^ðkG]Ò \QÑÎ?by¡òFìWtóZߦú¸„+ºõËzüG°/\߈þ'‘³žDê=Íæa“žåé}M.DÜŠ:¾y½8ªPçëý,•Íßÿì ׯÆßH$ËÅËÈ›#I£]Fi—¿cëá^:¼V@¹.hT Ý3¤³’q¨eî|Zh´í¡úSÞª[ðÊW=X/\߈ÿˆï ê—ÑàGpr]ôqOoóº0u+òøZg{êr½n£²¸Ñ^€¢ U7?½æO¤Ï¨¥ÂžŸÝÙ÷mÂfü‰ W¿7.ø˜ª\þòÛ&”¦ŽN«2î•ò#L–l´n`ü\ÈïÚË‘¼îÃSŽà •7b¿Uç¿7ª3–· ¾?|³~yv|‡F¿ÁÃxK7t—cÓ‡jýMÐ…©[­_²r”n.×Û*£©£t3†*¯Å^ ME×ÎÚãËîJ¨–àe¢veðSëïø´Ðh#ÚÀ¾Õòß§õ”ÄðBåØ+G2:ôš¶ßÙP¢¬_&a¼§àuëôOSp!âF‹®«8Ç G™ÕúvŽÎ–eV1¼PycP­_Ëp£~€¢ ŸªN2¨ª[+:ïÛzeäSw9ø´Ðh#Ú—½ VÑC*ð~ü«) ”3½½Ñzü5ëåÓ£«á¶ÆÑ[Ø+¾UèÚÀòËØßôø×SHï^ÞZOÀéËSã)Ì®§0z¯¸£™À¨§zÇ¡ S·Ú ¾Gà(õY¯lTòG©O /T^Ïb6à ï6ÁÖMÃçn´Ã3ê¶R®ë™À¤$ê–]–lDz‚×L}sÖˆö®;n³ÞuéÐ…©[‘¯¾@·Ê¶ëY}û—u• ùÂõø¯ðÒcûGÖ3¼±Ë÷7VÿÄ:Ÿ­Gþ-=)Õýƒï©~ñï[x¶qüîcÏ.êþö•cÖ&í#–*oÄ~ÀW`¥oQî2¼¥Êµ7ú§‚ù´Ðh+ÚõTÔ¿g½_ÏXýëPoÑ…ªŸáYµëKðÙ:È]ï|õÐGèÂÔ­ÈãU ޼}†ç¥ž¼^¨¼û îÛ›?Q{ØõNrï”þW]É ËÂ’­HãÅí{¦ûu•¡Ò9¶Ÿ@ Ñ…ª«Ÿº_p|ÀûôëãÞë]¯ú]˜ºy|UÀ±½qúЬڱ½å ×7âßoä]±TÐÏfÓ1·òø²Ðd#Ò#¾þ¢T«=q`P”áN›™ÐB£­h×Fç¾Ýi?ɱÿ>5Ú@[ˆ¶ðß›ñ¨·–¥‚µ—²Y~„ÉB“­H_:Ö]ˆ©ÐŸð÷w2Ûûxµõø ZmZ„-DÛù§‡‹žê½÷fXúYp£ÿÀ…ˆQßðUÅ]1µ)ÿ‰cr@Vý²b-4ZvßÁ«í·N:ðz.Úë©•‹DØB´÷øz¢ãŧ¼žÆfŽÚÌCtaêFä'´giþ2^¶WTÛSÐÎNóeaÉF¤|iÅñåÊÓÚ‰±ª­Gã}X+t©Š$},€mÄÿøZóçÀN¼úC.]§¼÷%ýˆ£…FëÑz|Ô|éW‡ü¥ëµ!_+"а…h!¸+néîÔwòÆ2!Ÿ] 54`îú€©ö&ù—¬9K7è#šÚŸDàBĨO=8Z¢ßmJ Œ;­_›  …F[±†'öÍ_›:q`ÜQ®ñT¿5@ 6¢}=G;îŸ v&mØQ¯*Á…ˆ[Q/xlùôa*týåôèP]˜ºwüð¶ç»§ŒBz‘¼ÑÃDèÂÔÈïà"ü9•TÐõ±¨ù0´Ðh=ÖølS[WWjÑY›2GV/u¥ÃB‚(ðÀÙ~!AÖÑgU‡6µ°…g[Çrü¦ïë¥BFžýª S7â>k…ðµú© ^°õc´Ðh#ÖÇN5¯è ²±,Ñl?m!ÚF¸W|±°ý@öÉÝá¦vµz—€ ·¢>cyË÷—R¡×;CÏ·£btaêFÜ/—ïq¶ORAç’º/=—Ó‡O Öc=uà’!|}{*h`øi½t>€mÄš¾–ŸÞék¥(m‚O ¶‚ðå“Tè@èøhKŒ.L݈;~³¿ç³-§¬ÿÕ êü>D¦nDþr½g%405ïþði¡ÑF¬gt½£=40µ^,@ 6b½TÒÁ[»ÓRÉ­níB„èÂÔ¸_?{fÎ9—NsªÓŸiÃ&ný›ý6+T'?¶ðl+âàÊaËweR¡ã~ƒþÕ…©qß+ÓYÿ®O¦ëcPû®Ÿ­ÇzîÐUÚ]yju[sîÐõN”~ÄÑB£X#8rzv"²Œ>žˆ]˜º÷^®uÜôqòÀÔ«ã›:÷ŒÀ…ˆ[QG—k>Æ’ ’‰Ñ…©qŸÀåÚö}·LãPó¾ŸmÄzþøÔmç-ÛÆr\³ý´…h_Àõqø~ûTÐõ÷¦ùVþZh´룴‹ú¡ÁTàÓóÁç/¤Ï#Ïp¥ôøzã¦Ó£­p/ü-ÂTèõ ˵½¢ S7â¾;-Ÿ·I…^ÿU=_æ‰Ñ…©[qgoЦ‚~ËsS™ Ö£¼t••ÿ†òòv;®•W5o(ói¡ÑV¬_K¤‹vRa?Ùï‰OÞ«êßäCýõÕá’. M6Bž.‡? ȨZ¿n@ 6býùñyZ¡Är)A»‰Z)` Ѷ¾BË2 w¥Â6ÚI³ý´…h[·4]Å)ËPItn§„èÂÔ¸Oà[ËG™R¡é«ãƒR1º0õj܉EeЫ‰lsa .Cí…(Ïè6fsQJ¦$¶¹(…O 6b½€Û˜ð]RA™J?âh¡ÑF¬W~ MzÇŸ/ã—¬êVñŸmD{ëÁdpÑ}„Üj‹ÇÍö#ТmÜ¥wUýdH¨-4ÚˆõAÀŸUM ¤¯(ýˆ£…F[±®¬ÀܨÑ̶ÑDšíG -DÛ8º÷ì)ÑÜ ÅcW}&ŸmD{ªNZ>’ ˜*8>ï ·bž¸ªa³L<Õ°!º0u+î’û´×Âf¸:eh®…eÃB‚Ï`qÏÞ«¿ ¾$¸Õ*m=ú#T¦nÅ-îi®AÎtuÊÐ\̆…Q~íת{Þ–ߪ{f}¼\À2½üëDâBÄ­¨ƒ>í5ß[í&?Í7ŸmÄz |àï§‚&iÍ_MçÓB£­X×ö)ÏiÔÒ\ñm`ŠÛ@[ˆ¶ð€ªéTèÕiZƒý´…gW#~Œ˜ó÷“ò[Î5óLj{úÛsÀœŸ¼¾æ}èOø{gµåag¹Ú™Ý¾ÙeÄ™vñ;¶òü)5æ÷›RóbDâBÄ­˜/6~ëHÃV+Ü¿u¤!D¦nÅ}ƒ}­bF_?àÚü¸ý@¬ÇxïÀâÌÝ8 :ëÀ¬¸A„êÂÔ­¸£Å™»ÒVÔ}‡LW_~DÁB‚(×>ç?аµT¶•~ÄÑB£Xh­ öÔjѽ•~ÄÑB£­Xƒã®ë(CÖ«SÏA†[x¶ñËÑ¿ÊTgÖ¦:êÊwÖ)êMÔuï[ˆ¶òó\auªƒâ080ap|œ1"nÅ­ÐôœÕÙk'RnÕ Ñ…©qŸ¡ Íö“:®NšOê°a!ÁFŒ°Bs7Ú‡èÚ±þÕ…©WãN<úR½öÚ´×aÃe¨½°åÚÇcýGu2]ÿÛêði¡ÑF¬7¬Bsé´§Ösïêù‹VúG ¶bUhzéd»ºå9¤` Ñ6pÎ%½ãµšë€Ÿ­F{î:´Z°áèE*tàÇlСº0u+îPµ`ó¡‘®¦¯­‡Fè°`#Æ=Z-h´=е#)ýª S·â^YtÖ9éjúÚzT‡ 6¢\»mÚ}Lç¤Ôµõ˜N-4ºkæq—2ØÚèÞ.—±æÉe¨ý²êצé¶ýTÐãß«øñ!ª!¯o¥Ý?íñ°ÿ÷-Ö|[ˆöïÿ}7V’¹tʂפ·ìê1—VúG ¶Ú6V’é9uâÀ¤¬ý8T.DÜŠyÀ‘¢TèÕ©™ã0T„-<Ûˆø –6|¨=xýr|a>"nÅ,ôŒ:õú;ä9£ S·âŽ•¶‹:áꤸõXlÄxÁJŸŸdÓÚ‡è+³kÒ¡º0u+îà|ªù`ÔIW'Å(üˆ‚…Q^d$ö|ã´ŸÅ1#ù;!¸q#äÕ“QçBAë)´“Ö ZO¡ÐB£«±fžæ*ƒ]]…€å2Ö<¹ µ_6B½c°K§õ~z¤«Ç[ZéG-4ÚŠu­Úᜲ¶ƒ:q`>Ü~ *"nÅÌä=Ç N½:#v‚а…gëï;°¶W÷ù{u¨ì/Ÿ9¶çÃ8þˆÄ…ˆ[1+`=¢N˜ ;DÅèÂÔ¸÷Xì®Ì‹ÕUð WçÅ(üˆ‚…1° Ø¥Ó{+}»¡¯¶òèP]˜z5îÄ]eЫóâÖCht¸ µ¶¢¢EÇ­gþN˜·žù  …F±®},æ/·o?uâÀÄ¡ý8T.D܈yå×¼s*ãÕ‰ƒã(T-4ÚˆöÖÂzèœ:¾:èÄèÂÔ­¸Cµ°ÍÇsN¸–È6Ï¡ÃB‚§QÆ^=)›Ì>Wµ¿àÏÿþ_ÿCïzUU_=øÓ(?Âd¡ÉV +«TîsP']{OšOAÑa!ÁV”ÍÄ¿£öú¾§z;ÏiW3VÏ·ŠBp!âFÈkÏq:;éê;Ó~è,€]5óðVlíÕi—ËXóä2Ô~Yõqˆ(z5]m°¶ðl#âljîÑ–Tè@ªÚ ?BuaêVÜ¡ZµöC9®&­Í‡rذ`#Æôã-© «¹Tó‘6,$؈òÕLy¾árÚõªDâBÄ­/ȳ(••^/¸z&âÌ¢šÏŸ Õs­ô#Žmüˆ§8ÊhWs4Çé>]FÛOÑ®}’ãÎ9ˆa+m<ç "p!âVÌÑ Êsb¸|ùÃè`]§ láÙFÄkŸÏ¸U?ÔjÐoUç‡èÂÔ¸¯P½J{m~†«¹1 ?¢`!ÁFŒ7´^Å˜í©»C­ Ý£?BuaêÕ¸KÝË Wç$Íåùl¸ µ¶¢Ì?³ž |øû‰gíl!ÚúYûaƒ6¯=߇9íúì¯DâBÄ­F¾CóVô‡/¸zàœ¦iã™>0T«è[éG-4ÚøÎ,”Ñ®Îg-øtm?­G{¬}xâNÕÆÙŸ£ê?"nļ§­ž¢ÿ±GFWÅ?ŸmD{À ½|uèYæ}ž:ô]˜ºw¬Ð«¹ =ÃÕ`s:lÅøµó<¸UÒk¦ÿÿÿ9þùK÷ÿúå÷?ø·é¥^Ùžøø5;Îc|¿—øúÄj¯\˜¸óÚçPüeèãå›"Ö쯹 ¶¢ŒÕ|9>9sÚõ9ˆã›3!¸q#äÇîH­—‚¿'wÑ'Ça‚ŒWscÇQ>-4Úø#ŠÃS¡W35OY{€-<ÛˆøZ©qr—[ÕúâFù& M¶ 5µ[g¸Öõµ[³a!ÁFŒé5´© +?Ÿ£î— 6¢¼CEMžÏœv5Ið|ø "n…*j‚¿!õOe¢©Ð«Wƒý´…gë?åd/åìÉs?w–83èG-<‹5£`´ uuk.qeÃe˜½°cza*èêÖ\Ɇ…[QÆN{®†Îv}äòÜ  ·BmÈŸ‘yÁE‹©Àk“sO±%ŸmüŒ+¿r.½ã•·ÒWòǧ…FÑÞÐ +O!ZÖÓSˆ¢ S·â>AY墽@FÌ',?ƒéG-<‹5£€® u5Gk.ùcÃe˜½°ãc!çÙ|ùù~×ñŸÂÑGýþóžúC÷ß°ÍÖ·uyV^Âvø ¶¢Œm:JæËmŸV&Ü\Ɔ…[Q†¶]—Áž!­fÀžÛ`#p!âzÈçÛ\•ܽL.0¸è)9Ëx5 vœñi¡ÑÆÏQB” ½š{ŠŸláÙFÄGl—ª¹<$ÃÕL¡¹<„ ®Æ˜y*  sw™Ï3„èeÀïéú™†y¿ÎÓE ê@<×.ôèP]˜ºÑÜgl»Ðs3d¶ëI„çnÈ\ˆ¸rl»pWÒŸrèyÁke5Í]-’euàñÖŠ]!¹Æo·#ûƒžû´²\[ñ\¨Å§…Gc±fÔ^”¡®¼€Žj6\†Ù ë1~æ¡ÜË¿Ra×;Ñü‰ ·Bí\Á—¾¾à Yev]Ê’éúkŽÛ@[x¶ñ;^ÂÍØ¦.ƒ]}Ù›7ÖÙpf/lÄx†ç\·°d»ú’»®a‰À…ˆ!_ Å9ø²¼±— ½ºìâÙz °…g?å¾A‚ã´s¦ë«ã¸s€-< 7cï£ vµ{mÞ­aÃe˜½°ãµC—‰ôõÕYMsÖÚ‘uþÕ…©qï¡e"×¹òlׇ³ü‰ ·B-Á÷\½àéR?ÍZ'N…ž‡ùž¼Æ¢ U×׸ףV€»Nœ ½ž_¹Ö¸CtaêÆ›4c‹vŽ3¢™®çŽC¢¶ðl#Ü ´¦ä:$šízë9% ·BŽ­)¡÷K¼àËR ô©pÕön(]!¹Æ/·ƒ¥í'Ž2=Î/b9˜oùÐ]ñƒ=þD¯îì‡èÂÔ?‚î‰L¯>»º °åM\]˜ºÞ·[p3–:Ô"“l×{Àü‰ 7B>@ nðAî||Äs˜'e®ü{[á³×ÊSˆí çço¿ÿG}ƒ¶êS›íG -DÛø%ói–j_Þ^çŸiä­Ô>EÝÑ…©ë}yƒ>ªÏ®®mÇÑ'®.LÝhŽ3´üë9Ç–éêôÁs-Àžm4Ä|}øïˆ¶x0æ_ó˜Åþþó—÷?3µqý×oúÊG /\^_ûØVdÑwÎ/ÛµáÙwÒ/"n¼ÿ+´€ŸVÁÛ&«6ˆª *ÙhØ~ÚB´õ_rïÐ…CÏ®Ç^;5qk×#D¦nĽ‡=§I2]‰ÇIláÙV¸™Ð³“®îL>þµâ£¶m#â²Të;À“íúØæ9Á ·B-Õ§}_påÞŠ[›Kö5ñ·v–ø´ÐhãgœÁÊÂöJðL#³ÂYsáÐ…©ëS¬}ÑôAïÅxe×…©Í1O$¨ûâ©Ðq¹ûúð7öôCt¡êú¼vß°Õ[ô€ã^ 5çEß/üøZj*ðqRãÙ9oüáæ?2«+¸1¼Pyõ]ZºZÆõÒŸ6Ò lj£Å=F¦®öí-ú®>»6õÿ†á•V\¦n´Gè›Éø©¢fn´¤Â6Î"º7ˆ"l!ÚÆ/9a]º¾øñ!±ôn}âØé]®þþDèÂÔ­¨o+ç©à¯oqÝ?ˆ.¯æGK·€…fí‡NèvGµbÐö¡btaêÆ`Šëê–ë ­/þè;_¦ntз3]gN»¾nÔ€?"q!âVÈ‘/üØa 3÷sRay@ó>T„-DÛø%[ôy·è¥BîÔŸÒõ_„-DÛ ÷å‹«¾;üñé¤TàHÒ5ê)>z†ðBåõÈçM.êžezÇk#g³5€mE\Ko? qÚH61©¹ŠVu£ S×sÄ]]ª´²™Ÿþ]înÐ…©íú\~,öckº«¾#õñ±˜TàH—¸è=®šôÇðBåŸtWè:u×K«l?õIÝ£¿qÐ""n}Ñ ã!R¡Žã•åÍ뢿§jcÐvnl¨%"®7–¡ßø5è©ÐÆÒ^>߀·Ÿ÷aàFаš«S3/­JôÇžÌQôÌÁ£xwA ^’Ÿ 7Ž¿¿q‘ û™ ;©éßn¡ËB“–=ƒsçMïÂÕ¡'ãHW¸éý¬š;ÇðBåÈçT‹X ™ ûºÜÂ+ãŒÑ…ª„ýõ𗣬Nˆ¸Ñ`VlúßP®\ÚäݳT>ú¥CgîýÅðÂåõ½¿¿Î »:t´¯ÎÓe¡ÉÆ;´eçB[›Ïöµ¶¶6` ÑÖ>vØRŽç;Ë'ŽŒÐ»ž¨ó•^¨¼ù^ÊÁ ˜S¡#]{íuÞ~˜˜Aᥜ®N…<:Ž¿úÂëXÄiW÷Í=#Bp!âFkûFÇ÷p³ t.S§÷]j•Eˆ.L݈ú ¯ áÕ¿©ÐwÔQ¸ŒãígR¸ô ^ ‹S¡Žã¯Gß_s#Ú¹‹TèOø{ö•í©¿Ú‡zü5k °…hë­eê±U)Ï×Oé^½óR‡£^¨¼ùÞ1Æ«9S¡×ßSO!*Œ;Ž¥1p+èöØþÕîéò•¶ºÚM—…&†K9ð‚ÜôŽm·_¾€©¢qå¦:­È8Ò¥èEb‹: ÅðBå&³~¬ê³nžGmÖ¡ºPu#ðljQò¢n*øçï:³¤#paâúbô´¡ËF ¥z©ÐNÇ͸çT'7ÚzånþõÿéòE4k0m_ÿ§ËB“­@£ës å–©ÐÖã—GŸÊî–¶u1]¦¸ÃöeoñÆÖE€-D[o+3ô-_mûŒ}ÃWÝ ×k­çã€øó§ÔRŠ)'syp›²?ÿ›þÇý¤·Ä]¨ºÑ±RKÏ(³dгž «3Å]˜º^-’¿æM]X"n´—[Bó|ðÄ‘¨/úoª¦1¼Py£ÍìüE.!âz›YàÚNÝ^PSÿŒ[é;åÿ1¼Py#ò—rZÖç·R#í]¯H_Ôu×^¨¼þ¶>Çò²q£ÍÀņŽS#ËõêJ{ÇùG,/TÞˆü†½¬Ž/7eiízÑñRêP]˜ºñ¦îàèä9CJÀõö²òWaÓ›'À¤ÕéG -DÛ8\ãå8#µ^/®t.ŽSR1¼Py#ò#8í0æ©j ™q¤ƒÑ+&5…Œá…ÊëÝã:£3ÇArn´¸ðÈqP-ãP{oÿðM/TÞˆ‘ yûÛKúh0Ùžû«}lÉ@êØB´õ…e4\Í©·£"‹i Ñ6Ú`.%#–¦Â¾(£•5ØeÀïØFÀ¥Œ{‹Hú [歉ƶ^¨¼{¸€Ïq&ãÐë8à •7"?a9†¾a¨~<%ÛÈ m”–©S±]˜ºõ«¢l/)É20&MÚ˜¤÷1|[ˆ¶‘`Àø¬áj¦»ŽL[ˆ¶ÑñÉ‹c‰úСñ±B¢ S·âŽ.-êR€žÙmøÎ?by¡òzä÷]où¢G*xý‡õèP]˜ºø±Z¦}gÍ7óÐ ëXóá…Ê[±çyLý°Ž•1¼Py#òø]sú"ÕÇ÷&RÁ×_Y×·2BtaêFà7|&ïX´>?j…¼°ŽEë^¨¼{´Ês’xÿ¼¨œÀ?by¡òjä/Ÿû²æñÆÎžÖàWt&¼èól­µGØÂ³õhwý«¸´Ì™ [¿rÊ¿<a Ѷ>££iÃ]ü©àÉñ!]˜ºø)`y3½ëÐhÔ¾6£ S·âŽ–'â•Ê©À‘_ÕqÚ?ˆ*oD~Ægd]óNÐÉ[åU7v‚‚x¡òFìá2Å–úSÁ]eƒþÕ…©ÿ¼|‘¸0yòÐ;Õ¾0Ä •·bÖ·âeî©À¡Îç±¼Py=ò}‡Ï†ÛwANê,Û·A‚x¡òFìx}¬áC©àîÒñŠ]˜ºøËõ¬ 0R?ÏÙŽ+I„êBÕÕÛ;Öüy hˆm_Œ?y¨/k_Œâ…Êm®‘ÆÏ§¤‡)œÄòBåÈã¿kûÞ_Ö¡!ª}ë/F¦nÄ}…Ìô_àH Q ú#T¦n~g×a§ÂônÌ]?a Ñ6¾­ìïTØÀƒÃößsGì6¥7êuÛwÊBp!âz[:tUµýŠ©‡FRœÄòBåÈ÷øJû®üÉC£iû®|/TÞŠýÌÞõK…Ýýõ¾´½Jº,4Ùõ/`ëI?¾K’ H]ôG¨.LÝüˆžÆ‚«ÓSaY@sU}ƒ gB´€ÿ¾ÜÊ÷TØÀƒÃöë¹gx§Ã³µ:໇ž­Õ^¨¼Ñf–ªSò|ÈæÄ‘’ã®#µ˜ †*_<’~9ê82%0ŽB޾Œý=ÞˆýpYK*ô'üý¤p¶çíÍ~ªÇ_ÐS0¾-DÛù†n.µ|)|=•ñ|À)F¦®Þt²G}13U¢­·˜üÅ?(-plÃøN³g>†*oÄ_óYÚkOêÜqýª S7â>¢{-ŸCJô4 ú#T¦n~»ü®”{×SaO½¾¿Ÿñy/ñþ‰zB ×G¦qD÷ šOj3l£±à“cózÄ{vÇÞuˆ.LÝŠ;˜(yŽ Ÿºõ³Þ90å ׯFŸûA€2ú½ñôþÄèeäïéFà럎rú¤‚‡RG™R /TÞˆý†î´|Ž-<Ô8¾%£ Sן¿Ü ²Žá ßüôì ÇðBå­Ø£å8Ær‡Z1]öú*ã”ç¤|”/\ߊþÊÝeM…üLŠ[qk˜O 6b}IÂõ٪ƎEo'«ò^¨|=òÜš¥2öPZ਷ŠáËØßãØÃ»Ðí‘pµ¿$2Dªn„}‚·@¾í• ÈÇß%‹Ñ…©‡jzn*È:”xî*ò…ëчoïóTwLÚSzŠ;BtaêVÜÑ͹ö*ì ¸Ñ©Y„êBÕ°ïð΢÷”zb³£Û ú#T¦®~†Ïhêº~QAÖ¡^²ÁûÂõèã·&zvë3õ•ŽÝú^¨¼{t³«½Ò6ÛPoÙ^k¢ U7Â>Ákà ŸrLô–ŽïPÆèÂÔÀ¯hWæÚœ«_ »µà •·b® {îˆÈ:4Jyn‰ò…ëÑÇ/ õ”d§µ1¼Py+ö;9úõDqÿ;Dªn~G—+ÛϵÌÀ-[Íú#Tª®‡ýù;úçoSÁ)BƒþÕ…©ª¿ë­ Øì#)‚k6È®oÅ].öÜÓ‘uè×õÜÔä ×7¢q[fz×õ#.§½¼-¸êñô‹>láÙFħ€Z•ô®CI™£Ð&D¦nŽçof¦B7VÿFì2óqaâFØçW:É)UIý«*G°O|®øÁæ?¡‡œ W¿÷Ö¢š^¦—ßÞpÙõ\O1ftÓ¢A„êÂÔõóÏÁ†ü« 7ú€µºx«& ûPŠê© ò…ëñG¼ºîdÉ:ôë6ø`_¸¾}8¯ñ\²œy YÔDXOøp!âFÔ÷‰_Õ JšÚ+2Ö®¾»ë¯È èzàWø3“³¾\°¨Í}E?ÕØ¢?BuaêFàñu¬†’†ôÎCcTÿˆå…Ê[±GS?c N½n#ëÈOëºp#È®oE¿zÁÌß«|ôj‚“y`œšÕAPÍn"p!âFÔ§jaÀJ˜¬C£T{%Ì:×wvý•0Ý<üeÕÙ8i¨7wôÜw‹þÕ…©ßð!ÖS‘}h”òÔcùÂõ­ø£uNƒþô»}x«ÅuaK/\߈þ²Ž Œó éõ‘jQ‡A=¿áÛ³­ˆÃëB®Ò»ìçŸôë²ß­Ú» _¸¾ÿkòµÇ¹Qƒ”õNÅoT ØB´õo¾K×^”u(1k¯?ÚpaâFØë—,Ý*ÃØêWÝ*Ãò…ëñ‡Odzî=É:”xn> ò…ë[ÑÇWè—gÈV5ÿP³Ê\ˆ¸õjÝÁ­º»ƒGrWÙ] /TÞŠý`ÿ°í§Âî/o+íBæ[ˆ¶ðúï꣬Íeþš”ݨ> Ñ…ªß#6Ó;ubž½ï^¨¼{tWÄsGÖ¡¬ÀsG/\ߊþJ¯`K®Ÿ¹Qz` Ñ®GÉ#-Ô/ò>Ÿ½žmZ6¦ßãDý®G}¯×3ܪ.Ë>”‹yªË‚|áúVügzab*pà}m/eÝá/°ÏzMÀ¢®hïè -ú#T¦n´˜€ò¦ôŽCéd{eV.LÜúo^ºŠT²tî"• _¸¾tóÒxaõ~rÂ7ÿüG°/\_¯žßéÈðh£ÑÌpB¹© ¥šÄç'¯ge»šòÕδˈ߰­ˆã+ýzCÔË(³ec þ#Ø®oÄ¿^Cr£ª,ëÐÛ^U¢ U7¿Ã[€®òš/fp•×ùÂõÕøo|Ëãz«S‡~]ÇWQ¾p}+úøஎ´Zzvòõ!kíÔáPËÍBp!âFÔ«E wê)3 UŽrÊ ^¨¼{àëQîJ›S‡«æJ›]¨ºx|ÙßQì‘yh˜rÔzñBå­Ø¿r(Òþq*ìkµ kß;¢mÝtÜjuêлä¸×*Ê®oEÞrÜò@nЫ‰‡žQàBĨ/ø†”£˜òô¡ÌÀQLå ××ãßwøJ·£ðàô¡AÊQxå ×·â®tëE%ê 1§ýº þ#Ø®oD¿‡»üAíòÕ÷Ð~sP;eu´ °…g[Ç—Œõ_T­1;}¨¿lðÁ¾p}#þ¿+2ÿ÷¿ç‡r§Â_¶`Ƽt“O¤ŒÇ¯;îÿúáç?ù×oGzü¿oÑ?ô_8•»È޳½ŽWû@ó_PÓú[ˆ¶rtÏ«¹²l«ïÑ_Z‚ ·BޝÏ;vOÊ ;ÈQ¾p}#þðÑòNz5§ïñω{.¶‰ò…ë[ÑÇ/Ô´FO*t•[½ŠJ½ˆ?"nDþº…§d(óH^à© â…ʱ‡¿…>jÚvìÉÝYƒþÕ…©ëòޱV(6”#Àú#Tªn…­êQ—äÔ‹ÈO\_÷wàH\ˆ¸ó>bÓ>½óÐðá©9ˆá…Ê[±wF<—8:”9®qŠò…ë[ÑÇwFÚ¯á?y +S/^SoáÁ…ˆQÇ¿%â©1;}('sÔ˜EùÂõø_^ª¯ã·û6›L?{³qäØ@[ˆ¶oú¶}*ìç9R‹ è²Ðd+Ô˜>â7U§’0DâBĘçîþo‰ùãåéó/z¬ëÿþóGŸúc &zû>ðYŸ†5Û@[ˆv5âPÆî)¨ðÒWAM_ÿ¦oÄÿRƒ«xo¸^†QI<Õ{A¾p}=þ#ºÛp[r*p ¯l¿ç9"nÅßxòtŒøö¹« #È®oÄ?¤(½óÐë)fŠá…ʱ‡?:ÿÛ'*üªv÷#z&¸E„êÂÔÀÏÕ*©5Y·Þ©E!ºPu#ð º ¿¨ã”ºá—q`œÂñG$.D܈yõC ·j Fx·…¿<=º­—]¨·¨œ:œÿì ×7Ú~羫,hÜð¶ÁûÂõÕ‹%~|øÄ’«°†ãëígê°csl»f\_ÿ¼³í 7bÞW‹¥nÔdJÚk Bt¡êVàÑEbü²äTàÀ›Ô~Ís.D܈ù/Yºvº'|O±Å=?~õ»«Hbºž6® Pž*‰ _¸¾>ÀNcu¾s«Ò€ãíÿwŸ¼½“ ¦S¸q#æ+ºLŒ_fš øAÛ¯a Á…ˆ1ßánÒ³35íp/ãÙ˜Šá…Ê뱟´‰º¹ xSÛ"¸q#æÿ†»TàÀŠãH\ˆ¸ó†;:=[QÙ‡ÞSÏVT/\߈ÿå¾ JeP*äãé//Ór&>-<Úˆõ‚.ÌàËÙ©ÀžÇ‘¸q#æ+¸>Ðp“Z*ðúê¹."nÄÿ¨®kaÆÈ]A¾p}+þÕæ;­óåCVc÷½èؿӢ U׿¬_§ïþêxëî|Zh´íúÊò­MÖå2«¤^®ÜA¾p}+þè2˜cé=ãÀ«äXzÀ…ˆ1Áe°†+ÔRIŽ?"q!âVÌñòœö½½¬CCRûÞ^ˆ.TÝ<ú ]×qùÿ­ëÀ|/\ߊþ†žOÕŸþ“þÚ•úú–g÷ø#ê‡êctaêFäviRW2ÇîŸmD{ÁËq<»Ù˥ΰ–†yÎmùÂõø¯èN‡cg/ãÀ«äØÙ‹À…ˆ1ßÀކ‹SÉŽ?"q!âzÌ׆Ûÿõé˜úuôÓƤUñÔD2D¦nD¾¯œÙvìH¦¯ŽLŽT>-4Úˆö°Ð÷"S?¥c5"nÄ|Dw9ðûèR½¢ã&½\ˆ¸óy‚ûs=/R?R|ú@Ÿ¸é=®º¢ S7"ÃPßGÍxµgÄéG-4Úˆö .ózvP3^ÿ)=;¨¸q#æ;ºÌ‹ß• øA7YEàBÄõ˜oè×ú\ç‚7ükw®“ÁA¾p}+úðj£ç#­§ŒH»>Þ©³Ò]˜ºù>¢Ø!½óÐêQÿˆå…Ê[±çoD¦¯æŽ T>-4Úˆöe—°öÀ¼Oøù@5_Ïúþ>fg{ë®vf·oö#Тm…\ÜõìWgHÁûÕ¸q#æøñtϾiÃée϶i /TÞˆý‚/òz¾›ýz*°õz¢¡.Æ„èÂÔȯè"¯c)ãÕAɱ‰Ä§…FÑÞ&x(´¡TOÖ’mHÒSu¾-DÛ 9¸®îÙ³Ë80 9öì"p!âzÌ÷ü]ÅgéžâTà㨼Ÿ'½Wú@? v*|Zx´î_R÷|f5ûÀ4é㛺ô¢ S·"ÿ|‹˜×ç¦Â¶Òÿ†èBÕ°ì8¦¯ÿŽR>-4Úˆö¸ÂIˤ%-jjžu`ðŸµÁ_MÌl!ÚVÈÑÍ#ÇÆtơ߱1 7b¾àKé»>Šª/ÙF¢EçÔ¢—]˜ºù€ ÇTൎѳQʧ…FѾìÖºóYëÎõ\qG—EW­[Ô3E¾-DÛ 9ºœëØ—Î8ðö8ö¥#p!âjÌ÷®{e-´±©ÐŸð׿rÚÛvµ³úü Z–a ѶB¾A9¨º8¯žâ=écEáË7¼ö#Оm„»(]Hï<²ä塚â…Ê±à ‹I÷ÕŸ>p•ÚîŒ.L݈ünX8¶FO¼švµoŒÐB£h/ð Ú|†7ãõ±hï´±HKÍháÑV¸hm?ÀxÒõ‘¨ýc„-<Û÷ /œ{¾Âyúõžp76†µ-ÿ]˜ºùŸ=Õ§ü²žr‹(_¸¾ÿ€½ÅTàÕñ¨}O4€­G»?¾áü»bœ?Y c¶ó:?åú¯ß~†ýý_?¨ÛD§=+¿£ƒ~ÄÑ£«Ñ®¢í§Oº>µ[Œ°Ëpß°p'1ºy‹Œ{4FªnÞ°ð|‚óô `P3õœ1º0u#òG-Ç3ðßf]þQ›oÍòpL¸¾6˜lïã›Ý¿èï_P×l!ÚáveÒpu¢Øç#ÀL\˜¸Õ ù[­©À«ÙPûq-4Úˆö‚-n/êè¬.öeº>:ãö#Оm„?BäùØëéĬ?zW¡ S7"¿£ ¬í›•'^}AÛ·*h¡Ñz´‡[ñk?ÈvÒõ׳ý$[„-<Û÷ˆ¯ø-z·¢.igx5ýÅW“•]˜ºyxÅϵ]9à_ßríWùÂõø¯ØªHû1Ÿ“®¿°íç|"láÙúœeXB‹~Öçþs~Ž~ì÷Ÿ¿?g?ÿëþ›æog ¡ºPu£%nøº…ã;‚§ôcú-:êWctaêzäǛôWÍŸtý]j/›°…gážð9ŒãKp§4½ÐBý\Œ.L݈üÜó×uS¡çßu&¯I‡èBÕÀVdÖÒ½ì š*9ŠÄOºúØŽ*ñ[x¶ñSîøTI?¡~bîô«=ÀÚuzÿ¢.2†èÂÔõÈO˜—âå4,_‹‹Sa÷—@ZQt€-DÛø1GhÞå©VÌtýíÇíG -<Û÷øÑóu£ÓÞü^ïWÔ5Ì]˜ºṳ̀ñú…‹½³ë9Sa×ß~Gj€-DÛø17h¦è©Ëtýíw”‡ØÂ³pï 6jùìJ*t½¥xôG¨.L]ûÜË®ž˜œ>ÐãE.jÅXˆ.L݈üNñ}é—}ýÄ·,b¾|[Ëìu¶ðlã§œŽÁ™wkN*èI+m–a²Ðäj¤a¢ák"e°®Öñ%”½ ú-݈ûNÈñÝî—½cóCG±E¦ë/½£Ú"Àž­ÿ”Ëq!7ð 5|À!:Ð ŸˆÑ…©qV[¿±î”m½béÆºS€-DÛøNÇñó—=£Ó}óF½sþԆؠ?BuaêÆoŠ_“ë¹tþô”TŸ^½s>F¦nD¾òE¤ëO¹ˆ¶Ú 8–Ÿø´ðh#Ø;87Ä÷û/veºµÒ’u=,·VZBtaêÖoºó+–R¡_UbµUˆ.T]üÚsÆ–ËÉS¡×_§ýõìG–R­xÔ*À¢m´–þÙ ü¦‚îô1ôÆQå\˜¸ò|]ÐÈáh©ÀÆÒ~t®úÅRÏ»/LÝú.1tpQÎËžù ]éiÏ].DÜø=pY§åñTè@[lСº0õ¸_ž}e÷/B´sTÎ1? • [¹ÿ“V¶m#à;¸}ŽýÙ[7‚]®gQ7ë@ÏåYÔ Ñ…©ë¿én7]: è¹ôG¨.L݈;Q:ö3Ù¨KétYh²ê£V‘ùÝ£TØ@ Û@[ˆ¶ð[ük(áºØèâŸgß"ë@_ëÙ·Ñ…©¿é‚®AÏ®îZdèkôG¨.L݈;}ý?½Óµ×±gÁ†…[aÞÁ1bÖúCu5Û@_ Û@[ˆ¶ðˆTèR‘sk 'Àž­G|ïÀõ2¼6ñe¬Ý¦¿žå­:GàÂÄtÌZ.N…^Ö\‡èÂÔ­¸L ‰û _>ŒGÜ Ñ…ª[s×>è^›‘ßÚÝñ›>]·eïàm™k§¯ëwe‡èÂÔõõí}œø¿«0u£ÅOè7ü¹¬TØ@z×ü™¯[ˆ¶ð€í³ôŽW“;϶ŸmEûµPômnë?u’e#!õŸ; °…h[á÷oð‚ÿ—½€û7®ÝÛ¬½¬g÷6D¦nü¦+¸Órw*t ‘nСº0u#î[¥½ßØ|ζq}«ó9À¢­|ø÷“$ƒ‰VûñK¯ŽrÍÛÃ1¶ðl#â=:ÝjÞ~é@·Ø¼5¥ S7â>€[--7O§BºÅýª S¯Æ½¶½Ðº!ùEŸ¿çÈÛ‘¡Ëhß X•ÁÙ»'ÿ²a¨qO>Æ¢m¼ìë4‘uô!Jªn„MZšëþp`Üo.SÂ…ˆ1ßÐ(=R.äéÀ¨ß ?BuaêVÜG$ci­ yÉÕ±¿µ:$„mÅÞÀiÿøÁË6AôÜVùôA”.L݈|%é÷–æüÑ@ÆÕX™B ÖƒÝ÷ׂ3N=D*ðãúýέ’#&n}3ÅÆÓƒ4”l5 Â…‰[!÷+Ú‹g^z=Ýj/ž‰Ò…©qÿÜ/gϼôg£ù~1¾³t&Æ¢ÝrVÙLñèÆºÅþr’ý5ä>ÛŠ8º)§¯Ë+Çyé@×Õ ?BuaêFÜ'tS®±\æeYWc¹LŒ-DÛ8¿"¶‘‰:K8bl!ÚFÀ´/o.³xéÕ>±¹È"ÆžmD|Û ,^:l5XDéÂÔ¸ó RakëfÞòŠYh²jtÃY_V>qöÒ¨A„êÂÔ¸ï×%EÒgÂR¡?áïãPŸå–«}¨Ç_Ð;¾-D[ùQ’ ½:y*ZláÙFÄÑuO1 ¼Tá©e‰À…ˆ[1¯´òÕÙ®ŽCíµtYh²ê ÛúlúH]*ôêÛãøÀ^”.L݈û²ëžRA÷ã_sù•‡üäë?ØãO¨ b.LÜy@}BzÇ«#§®‚O ¶¢}9wÃ*ÂI…~]¤ …èBÕÀ×*ûo³ µií­b–]˜ºwú†yz§«Ãû&?l…ùÕ¼YÛä©ÀÓ-m#kÌÐVêû¡çíÿ¾F;@ª~Äý_ã¾#cEûu'/û8ØG½ï$"®7õ±ïÁÜ\ßä[ÔÅò¬ùmƒþÕ…©[qßÉ~/z÷?\eY¯½£®¢[x¶ñcœ‡¶—'eÊåÚë“Bt¡êFàGtãÉSD0Ö–ˆn„èÂÔ¸ó7ãSaWóºöº,4Ùõ<°·áSa_7Whå¶m+à#”„6ßnò²ë©\óý&A¸q#äGm„{ðêŽSÖD®A„êÂÔ¸GÔ>¤B¯f\žª[x¶ñm†Š®¹^#ËÏ7h£ÖkÐe¡ÉF JÒ;¼6 ø#"®Ç|êhäô\>’íúøã¹}$"n„<`ÿ=½ãÕ~ÐS7À§…F[ÑÆ–œÛ+²\í Û+è²Ðd#е"õ[øÖø*BtaêFÜgl^ôû/²]ïðG$.Dü#䯰Ÿ»×Üçc…lÉ?éáÿþó¹<ü~ù¡Ó·ƒBt¡êúvд¡ Ùž]æ¬W Ïs€-<Ûxÿ÷àÚ·—³\,Ú÷—é²Ðd=Ðs÷q†X¹’õ¼>Fª‹y„êBÕ­ÀïàRÓ¨¿›j…Ö ~'ºI„êÂÔ¸÷ô’¾ônƒ±‘O ¶¢Ö•zvõ³ä ž]ý]˜º÷Zq"Ïv5 u"À…ˆ[!ØFM…^M¶<À¶ðl#ⶆݾõ›åjÂÕ¾õK—…&žñ"Þö²’¬C‰V{YIˆ.TÝü‚}ÛÞ·™u`òìG†èÂÔ­¸cççÜ~¶ëƒçà~.DÜyÀnSzÇ«ƒg—ŒO Ö£½ôí:X›íz3ñœ¬À…ˆ!Ÿ°EDßVBÖ+?¨o#!ÀžmD|…và\Gà²]o* ø#"®‡|EKÕ=‹Zk¾@ž5­\ˆ¸ó€uŠTèÕÔ³Â` Ï6">@é¡ëXC¶«¯§ë\C.DÜùŒmtÍõjYÞÔál¯ý›ýDóP³•[ˆ¶¾Œã½†ë=í¦…G-pyÝWNZ‚O…Ý]ÆMâÞAˆ.TÝ ûÂ_FH…^%< ¶ðl#âàW ›¾œ HôG¨.LÝŠ;6ß÷”Àg»>6{jà#p!âFÈ·×îéšèTØÏ‹Ñ&öýÖ¸0q=æÛQ†Ì«M… ÿƒ6ü«K€-D[Ïäp|Ôð^m†[?Ñq!âF+é…ß©°ë]–§`="n„üXÏæÕÇ¥BZʤ6C=à¸qãÕ‡ñY}ru_u;¾ GÅ…ˆípÃVo<µ¼Ù®¿@žbÞ\ˆ¸ò=`q5½ãÕ©gQ˜O ¶¢­•µ×Ådx/õ¥W—)"p!âzG‹ã«úäêóη…g­ð¸5—:EI>Í3·÷6žéµß®ô@Íiù´ðh#Üàglš>˜ XùhСº0õjܹ›¬¸eퟷeQtýPÖ~9KªZM…]O†<嶸q£­¯—¤…µ‘ ݬ2õo‚„èBÕ­Àc׋ù–äwðöß’|ˆ.L݈ûŽ­é¥2zMb¶ëojþˆÄ…ˆ«!ïóµ ̯•¤ÂÖ_#ÿWV"l!ÚVÀ±­Ä®½*ñ´k-ÅU–‚ 7Bž¯ÒãM1RAÏJoèŸñe¡ÉF¤ÝCîáTèOø{_ÕåGßßìãLÉó/hËζm=ä}?Cý‰£ñ´ëo¥£1"n„|@—Ë;´Ì,¶^öä/‹°…h¸[i>wêõ×sè´×SÛCˆ°…h[!ŸÙeƒ©°¶Û—çF§nŽu¹S¦?Žu¹]˜ºÑ^–œ™·.wê×gç­ËÅèBÕÕu¹~c—=¦Â®¢ŽzÍ\ˆ¸ÑÖ#–XR¡WPÇâP„-<ÛˆøÆ®Kï405±átså=¶‚F¯2K<9Ž¿ž|_/y"åîùTØãø×¾?zñ)§[}‰ÏO|Ö'û¸0q£µŸ$æ.ô§Bþ¢c÷ýáÝ›1ºPu=ðÃQ¯Y]ö|5ëÄÇIm3g>¼ ‡›ÿȪ®¶ÄðBåÈe›ÔÅTà@Ù^\Ù€7—U3l#äSO/L<9Ž_ž|boT¤ÂÖÑ,¶m£©Ŭõ~qÕûE½©8Ò³ŒzÇ¥.ÅðBåÈ5­ÜoP¦BŸÕ·ôÆç3CpaâúÀ°¡«Ñxg*p kl¯@mÀÛ³0p£¥ïèê(^%š xrÿ{ò±GJ,\•á§]_tqÔ†‡àBÄõÆr,Ó×Ç#½DLý)ƒ[¨– ý ?H’í±»Ú‡šÿ‚÷[ˆ¶r,ƒô\:Ÿm {½ûUÇÔ]˜ºõ~Ú׳õíkŽ!ºPu+ðèôÚQ`—qèWm¿1ˆ*oD~Î70ðN§Â6Š›íG -DÛ øô^ŽE» `ùœåÑîXæ™m Ñ6½ƒ#©qΫ|ò þñäÄuÁ¬C}nûº`ˆ.T]ÿUùÛ&é†~QGÍa.D܈x¾Èx”<v½¿u°…h‡n¼óխؽq¾²\ˆ¸ò [Tk¹mý‚ãëFŽÕéÌC®cy:†*oü°3ºtä(˜Î8ôößÄ •×#mV·Üaþ¢;|²îXÌ<Ô$+‚1¼Pyãgíñô®k^Ïús\æ¯Ë<7ÁCt¡êFà‡â¾-b­p¶/o+±X8&®— oOœz:>½Û“^úÝL?âháÑF ŸÁ û¦å©Ä™«F©|p½n²Ù~ÚB´­__!q,íf‡K»1¼Pù¦ØÓÖ¿<ú]ûõÜ >hß…É:4@·ï„èBÕõj»mûHi‹¼[oé{NÜõj˜ °Kœ¹‚”ʯö½Ž•¯[ˆ¶õkâ+%ŽÞÌCÝ‹c‰7†*oÄ~Àçí;Y‡ú¯ö]¨ºøca“zD*pëºs}E /\^Ÿßí ¶¤ÜéƒGyäbã‹T޵ÇÌC¯«cí1†*o¼R+ž^;VÜ3uŽ÷^¨¼û¡ðaª}qöä¡§o_œ â…Ê[±÷ÈôâÁ«í_øqZ™YQ™ ÛÈ´Ý• ¶mã×¼|±…r°5ò3嘾ý’Íô#ŽmÄš¿Ì– ûù;ŽÌÅA¾,4Ùõçzqaðä¡.¶}a0ˆ*oźªéîó >–?,kÕñ´Ÿq{Ê·”¶mý×ìßV(ë<©°k@ûê_šl„zÄgí+S'½öí+SA¼Py+öÏqŸ|is*x}OóÎÓ1º0u#ðõ7Ö¦NÞ¼ÁÝ¿6Ä —Wצ†¾áLeûúÑÉCïlûúQ/TÞhøÛŽö8 ×!§‚ÞZÇ]Î1º0u=ðÃmç5]¶úÂÇ×aVÒB@*l#ó/`ØB´_sÐ×hÒ›¢ói›bƒþÕ…©ßጩáªÈTðÀÃ;х©ë»ÑÖýƒ§mfcîšÁ]¨ºöù•¨RÖÁR!?+@‡oKÍô#ŽmÄzѾeÑßOíÀ“ÞÏýª S·]¢fÍgRÁ)õoVÀÅðÂåõÙØÔÁ©LÆ©à–Ó ¿¾GzGÇ"áW»Ç"!]š¬VQþäthná¸æ’¢ë½Kõê_ÿÜèr‹î@±aaÁF˜g83ßô6¢Ÿ:y 4è¯x_îµ£éÂÔÀc·A4]ø÷‡ÏG÷ÍÜAJ…=Íe[ÆÇ¡Äç'Þë£r.L\‘ç^£ÛõÖ¨8y 56诇ï«Å7fŠY73EÿL1Dª®Ñóˆ¦è ?«0u½ ›ç> …Nÿ”¿oßg|¯xf¿¡7š\˜¸öMý[îµK_o3ž;ù†yÏ|Ý<¼ÕàÙöͺÕßÚø ò…ëëÑ_ŽÒFjj Ü8óàÏil!ÚzF³{¼ùL*äáÙ=~[ðÏÁø´ðh£uÃû/ž Þë/Y{7=[¼A~ù›¾}ì¤ÓEQ/Þáñl:f gÛ1È®¯ÿ´ëq!5ÑKnìàßHQ#paâFÐÇj­Ðéäz9ä0lßSÿt2DªnþãÞ8Þ­<'~™xM&ÓãôF?ÑãèA§Ó£­p£3OYCÖ¡®ÑSØä ×7¢¿ìpÑ]§Ý©K×YÂ_ŽÓßÎ=œg|³¶m#ä{µ÷Ö$8ûÖÀqkä ××ã¿ #Üä{­É«kÌYšÎ¢5Ò~ÚB´­£é»§¼$ëÐ å)0 ò…ëѯ^Úukb¼UOÑÜšÇðB娝 ÜÙ Zg£®3gxiWí¥UW™l!ÚVÈ7òêÕ…FsUOÁÐvýð^åEu|±5Ê®¯ÿ°{7Á¾g(ûP_àY ò…ëñ^}k1%¸Q¬tc(&nŸ ©7»¨×Þœ<ÐoZO¬^z‚ 7¢>ä:îTÐCÿWºù±¼”ññ?J ŸBïbpaâ!wÄeê4½\F¹üžh‡§B/ëÐÀä©Ñ ò…ëë:G™õ—¢mt3¾TãYÌ>4b{V'ƒ|áúFü—ñokžsñЋ¾\âÁ»,|}tšzuèÓß§\ˆ¸ñƒæÛ÷kãªãÜB¦‘ž`Ðzu (&nŒ«¸>jºz eG‹Å\õºY‡ºßÿì ×7ÆÕü mæO+L\íÆnÀ窎MÓÏ{Ä{$Ê®oÄÄ×Rkò§ý¾Ž5ù(_¸¾|]¸ý¼“ñIÍ´ù\ˆ¸upýÖSõ}êÈ;å©ûŽò…ëÑ_ñÙ‚c#êô¡>Ó±å ×7â¿á³YÇþÅéC¿¯cÿ"Ê®oÅ_Ê]Ô>_Û¾8y çT‹VÔÛCp!âzÔû¡öqÿ®Å‰?_©oGDý{´ðh#ÜcÄWzç¡.Ò±EÄ •7b¹‚¸Nœ úqëÜQ¾p}+þøšbûõŽ't“j‰–z¹c.D܈ú†OÕ‹ô§½µŽEú(_¸¾ÿ_Jp¬ž>ôû:V£|áúzü‡ú¾·¦µCýRÜ[ÓÚ _¸¾ÿúwn-¥ez=KiA¾p}uƒãÇ?—iRãÿ›<‡—cÔýýçïð2Mÿ–ÿ~òYý;!¸0q£]îÃßæé×Å.ÿYïÓ¶úÿiï]¨ºzâ{{¼»÷¬²dz<«,A¾p}½Ù ¾Šã™ez~Ï$(È®¯ÇªsôV:8 øpâIƒ|áúFüÓ±Ô+xoõî±6&n½~ë­|ZáNÓ•ƒùÂõõøWO8ÝÈuª„nd:¶m=Ë™{´ª/4N>ê™k³ý´…hM|€ëq:´Š6xýÉÛk¯ÇyÙèµs©Ào.úk°á Ñ6šJ>^D® KÿY‡W­$§:'ôs°ÿ½ÿ€YT` Ñ6ú±€À¼ú&6ð†Âö#Т­|;jĘפ¼ùÚ’[ˆ¶ptFèXPÉvgepÍú#Tªn„}é)b*ðç³]ôô§¶|Zx´îë Ÿvn*þ“þÚmúô¶·2¼]C¬&å!º0u#òØŸãwq¤wèÛ/‰°…gëñÞáÅ®y¹6ÛHŸˆëP]¨z5ìÌ™\vý(Á h€]†üŽm|ƒ{tÏ©®ì×{ŹÓû\õLWˆ.L݈üΉ®H^X„àBĘÃKgí{YÙ†zÆöݬ]¨z5ìÌitv wlŸþØeÈïØFÀ·îÕ=縲ôŒ½Þïª3Ò]˜ºypá¥át}*p otÜ  Wc>uºß¼_~ÚPÏëP]¨z5ì̵º2ì@ïØ¼Æa—!¿cñÕÇQ¹ÓzÆAïwµyiŒ.L݈<šªãÇçÓ» ôŒíçþ#láÙF¼—âÂOVqÈ)wêcûËC"l!ÚF¸¢0d hß¾8us—»Y„êBÕÕÃoSw$.½¡ç·hÎôñýüÿºŸNÌÚcÁ…‰ rC—Û—»O£Û×»Cp!âFÌwtS'¤êå'Œ8þˆÄ…ˆë1ï{|ž¾è¶&uú@V4é9—¶&£ S7"? ìûTØÝß,k›/ M¶B½¼Ó´ú“~¶•ºC@ ¶‚½£©\ûÎå©#éPûÎeŒ.TÝü®q;¶sN¼Þ[9¶sBp!âFÌ§× ­5úþ~p#Ûó|µõø zï·…h!¿œ& Þ/ õ=§P×[CtaêFäù›Q©°«£ó_šl„z«~QÅ¿Q|êÐ@Ô¼Q£ U·n)8vÏNŠÚwÏBp!âż~‡{ôMïÑÕÙPö^qÕû\uF¢ S7"Ï߈J…]íÛ·Ïè²Ðd#Ô#¼ÂíØ$Î:Ô+¶o‡èBÕÀOàJ®gëlx»Öê{g¸q#æËÇ•ž´ý³l_› mÿ,À¢mürH”xéT*|`ÚôANMÑCtaêFä7t×±Q”ñêxäØ&âÓB£hïè—c‹(ã@—èØ"ŠÀ…ˆë1;xÆåØ›Ïzî¹H;ÿP]¨ºøa‚Þ£öý¡,?;ĺ?D—…&[†—=·ï>0ÇþÔéPˆ.L݈|ÀÊ*ðÚûãÙ±àÓB£hÏøL«kÞšË:Ò:¶æBt¡êFà/sU{òöuó,W{Åöusº,4ÙtÀ"h*ðê›éX¼åÓB£õhO¾¡Ý¾K‘uèlߥÑ…ª?®ò$^˜Þi}‚å¿ã0€m»ç.7§B®v„íKätYh²è \Jñ¬Ôf¼Ú :Öiù´Ðh#Ú ¾‘Ú¾!‘u¨lßÑ…ª[ŸËÀÓǧKqÌÏÿ”º8` Ñ6¾aë(ŽÚLW{CÇ-ŸmÄ:`™3xµ7t,Ïòi¡Ñz´çšWzO2]k#žÅ>-4Úˆõ²± &Saù«¿Ð3À¢m|Ýþ~KNý{*èUyoNxé®ð“-4ZýVýÓH!âú;¿ãdÞÿ²ó«¨—å¦Bׇâ;ýÆèÂÔß"›•Yšâ¨¶sµò$"®÷ã8>©O^Æü–y ãBÄv¸ì•dÙ?áζ‘tú'ܶm#àùËlÔûZR¡_NâU3!ºPõj๗[¿¯¿žK‹»£Y:—Yí¹Ô Ò\ˆ¸1ZÀø¢áƒúm˜Yx®³¦èz½u3=0BÄõ÷Ý–ÛfÓ;ļDâBÄ­˜Ó—´Ra?çÎu!Ž. M6B=c C[ûþk¦×rUßy½C À…ˆëcŽoê“«KïÛŒ.(à¸q£!nh]‡ã Kþ>ΦVudzy§Ÿèñô^–N ¶ÂŽkƒ>:¨«ˆ<<4èP]˜º÷½ÃÖøU™®¿žk§¾ûj3À…ˆëý-Ž«ËüƒÚ÷\diÀ…ˆ q¨Ü\yk7ëzwk7D¦nÄýÕ» õÒ;}ùhúÇšíu(íþizr` Ѷâ=¡‰…ã\Õù™¦ê½ŽÚ­÷-|[ˆ¶òÛsT­dèÕEíAÝmŽÀ…ˆcŒ«‹ZƒºÛ¼£   ÷ø¦wH¶bq U·nô®N 6½`í5ë']ï·Ní`µb¤\ˆ¸‘Á¸º}0–ýáåçDknTüãdF*ðWgK-<ºj`ÂÏS•áF ö“` xû% ܈yÄîY*ôj‡èÙ÷ °…g[G×Cõ­x}äÑõP¿<¹93÷ˆ=ågõý82èG-<Úh%ËÆß«H…¼õž}–]˜º÷­eéÔHïWp×q:Ç7V0p#æ{©Ð«}¹g—%ÀžmE=«¡nø}L´rÿ{òÞqìùgüšÜ2wýcx¡òz›tÚ³E”u ðì…èÂÔ¸à tɰTàÀ»Ú~– Çî0p#æèqmüäSz·ˆ·“›Çeàï´¤B¯ŽHž=¢[x¶ÑRàGuKơ籼Py+ò肨g—(ëÀ›äÙ% Ñ…©qßГ›ø©œTà@ïè8OãŽûš¸ó\3j8¾‘ ˆ9Žÿ=ù±ôŸ ½Ú³{6-láÙz[™àåbGõÜô¹üϬŸ‹á…ÊW#ß©#’³(ÓÆ7áÜ›E|ºŒ÷ Úö.Ô5œ‰H^‡<§9`¼a^ˆ¸ó \6j(BOÄÜqTdšÁcEøy©°õDÔ³_„-DÛh*{©Ð«ã§g÷"ÀžmD^¢wÔ¶f9qþË •×ÏæL;ºˆ¦ú[z×ÛÌÜmX·ˆ_ï• »Þ½´_Ka Ñ6>  tžEô¬W»Ïz€-<ÛŠø ¿ûŽ-£Ì[_ɾ³eà •c¯ÿ®®ã-ç£?‹/Øç["ð ßÀÃÛ"Žó ‡Þ%lj…^¨¼žÌºt‰o{ 7ÚÌq‚†yZ*l`4…íG -DÛ ø«´ƒTöŸ {|ÎÑ¿ßdÛŒ?"qaâFÌ/»Q” S!?¿q8Q/…  …G[±ØÞJ…^Í=s¶ðl#â<´9ö¡ç ÎÛÐ!º0u+îèf‹ãÌ\Æ¡_ç±¼Py#ÝÚÑZÚö‹²¸Þf–㦿j?Ðé}ŒZÿŸíêÜÂut."n…œ~aY*l S„íG -DÛøouS1t¤‰ßΡ¸·Bù´ðh#Øã÷´Ž=ÿÌCC¨cÏ?†*ÆÞèµ<§çÎG¯v‰žãsøGÐoàVÈÑ.Ç1ÑŒCï’ã h /T^Ϲ–Ý‹jÿ"7Ú̼`ƒcÿ?ÛÆç&šíG -DÛø†o»8ö£3õêŽýè^¨<{£óõœ¦;½Ú³{ŽÓEàA¿!GwéjºRCïÎ?by¡òzäWòizƒ§ùo½øc1:ÓÛp¥ôøê8ʧ…Gë—9Ãö¨Ùj\;~Ý¿q='ZrjX„‰¯N·³«hRaד GõO€-DÛø÷„ŽÝùu‚“ Çæ|ˆ.LÝŠ;Útp^*päWõ\ëà •7"?ã«/Žê«Ì«jó×=ã;ÕW1¼PycdšÑM =«S§0Üh5Ç]faG*l ƒo/H °…h[ÇîñœÏv}Þå96 7B¾ã‹ö޽ãÌC¯cï8†*oÅí¼ðR½TàЈŠóX^¨|5òĶ2îë“þ:UÊô6tÿ¤W}_O—ñ¾AëÁÞ:|™ÑQ”y(}q”ÅðBåõäkëÁAÏ'»¸Ñjzp«ÄQ+‘m ‰i¯•°…h[Ç–ë=…1.z7àH\ˆ¸òq¡/Á¦ŸÕ·óÆÊq€-DÛˆø4Ñ—ISOÛ—Ç72õ™‡ÆhG½A /TÞh4pI^ã™ ÊtqþË •¯F~œþ¥WjÉzî –cgmú÷ÓZÆnø7ê™zÆ'ýum¶Ë°3í2æwl+âôJTØÏÆòížêfù& M6BýQ›Ê,—Ü.…ž•y…£Z2D¦n̉ÐÓz¾aJÀƒeèž«LЪÏU&¶ðl+Üû §ÜÙŸ zõ-ãÛ|ÅöøzÀ…‰ëµ ú¢éjuÇv4*.LÜè³vöÌBx´þáeÀŽz´>Õh¸q#æp™^ Ê÷qþË •·"O/J…]ËCeLtYh²êß™sÔugÊ@uÝ1¼Py#öØ—‘]WGe»žÏ5àH\ˆ¸òÞ¥÷ÔŽíxy”§v,†*oÅÝ¥Çk‚SC?,Î?by¡òFä—OÛ믲]›Ú«¯è²Ðd+Ôø º£&8óЈä( Žá…ʱ_±e†Ë^Ra×G¥ü‰ WC¾t¼›æ¨½:yhDj¯½ â…ʱG«F‘8qè‡ÅùG,/TÞŠ<½4%vulj.¨áËB“PðpÚ^U›uhëPÇØ¾U£ S·âŽn{é<-‰9qäWu|#ˆ*oD~ÅWÂÚ ƒNz_Û ƒ‚x¡òzìû_–i_l?yèm_lâ…Ê[±—e9qèÅùG,/TÞˆ|ÃmíøæX*xèÅùG,/TÞˆýØ?w™Ÿü÷]欷ßÙ|âä%Äg£Y¯ô@oñtZx´îË…¶”º²TÈÇÙ3‹áháÑF¬|M¦}¥ýä¡á¨}¥=ˆ*oÄ~ Ø Iï:Ò%:v—btaêz܇¾çî½§B®¾©í´ðh#ÖKwé]‡Þ Ǻcˆ.L݈;~ó©g­=óÐêXká…ʱŸŸïñÄp*h}þå>ç@ 6‚}Yè¡lü¦B®w‹Í»Õ´ðh#Ö+¼òâYqðE5ÏŠc /TÞˆ=~m¨g‘=óP—èXeá…Êë± Væ¹²TØÖ;å?£ U7ÂÞCëŽ}Ó,×;ÉöS>-<Úˆ5þ¥LÏÒ^z–vcx¡òFì§€ô®C]£c;#D¦nÄ¿hʳö•yèék_1¼Py=öÓÔC…f-Y½àx®äXuÈ<DzC /TÞøaуmÍw«dÚÌ6Ü—«„àÂÄõÏÓšô†#Å3%‹À…ˆ1ï&òjI*h³µ¸Wy"paâFÈëu7æas½pâÆ<,Dªn~ذ¢ðN«µ+––üanê±ùTàÆÄÝ}Þ?¢müœðEÃÕ2’yŸ¦/=‚™Eób§ аþÕ…ª[­|ù{ýå/÷y_8~ˆÐ³ê0ãw¬{Vbx¡òêåKþD/ó]¢­·È¥Ã¦Ž-Šzá+ØÜ'/—©_øÎ®ÇJ=þEœVDF—…&mdßàN±}"šu3ßòÏDCt¡êzàóG‹NËñÍ“Ê_?-ü×#¾-]dwûŠ?"q!âFÔëGØüóÑŒ›-Æ=]‡êâ·>ÊÀ à8´èCE¹ò}ÁGr9i*è¡ÿ…>‚’ñíï…Åß?¡®JGàÂÄÕ[Ðô½ÓôrÕõõ{Ö[¢íb}m“ŒÝ÷Š#ÿÒE.L\Oq×c“ú‹ 7:—£dŠ;gL…%íóÝ]¨ºø¥‡˜AM`ÔÝØÌ×Ó€½Ws u36"nDý2adÝVzÁWrét*h¤´N@݉À…‰c)®šÞëCÒ>óuaêzKßz¸¦ÁqõÉoé¤vjr 7¢>‚Ë:›Þ¿¨¹Ý6‘‹yÓ»Œ´ÄYmçjv ×{_Ô'W³—íXðæêÂÔf¾à«/j¬zAçɯ誾ÿjÙK.D܈ú.4ÜÈuÁ±…¼žôÞ<Õm¿~îä˜ëËijn ×[Ë,Jù—¦³~t/½ý­¥ö¥é]¨ºx`âè^$Íøñ.Mß·ÕÝ‹¤¸0q#è—žZƒßk• xSwíMÕ¯äŠÀ…ˆ[QÇ7yÚW²½§í«G!ºPu#ððÆw{1S¶;kIÐ_΢ U7Â~I’:ê¾úþù¥nÚÎz€-D[ ÷Ú ø4£ýö³“¯vÛïßRú]­‡àBĨ;Ø·4×í6ô~Âú#Tªn„}ÃgI›ÚØõÈoØ\cëÔeuõÚ­\ˆ¸õþ÷P9åMþt¿>y¦·n¸Ò‡úüZŸ@ 6ÂÝpÒ®S¹Vrpò@SÕv¨]E‚ 7¢¾Áã¨ã’–“ž]]QW¯h Á…ˆQÿLxYú©›S/w–£ U·?±óÝTØ×G¿kÿ=÷p©i¤•À¤BÂߟ|Ém}~³ŸêñÔÑ(À¢­V—c±fFZoáÃ犎KZNèµÏÕª_Cp!âVÔ«wWܘ õÃä7¦F!ºPu#ð;ž5¶ß\qò@£Q7íÔ‹+Bp!âVÔ7ò#t¯Ð­{<¾VB­gNþZ¶äbGØB´ˆpuG‡í¦¯?y{‰÷:^.Ö mަBÂßßú97òíjêñÔl+À¢m´• Ÿ@·ßàsò@7®oê/h.D\-¿ZÇù#™ûhèGÉËÖç×hñÛÏ”áßO¢Ž1¼py£M.;½j78Ð5—7Øpß(DÛˆøPlœ xtÿ{t¼à¥y›þ°ëýnßký®:i¡ËB“õV2uøÜ\ßÇQ3‹Ì×{Ü~P»óDâBĨ×ÏŽú×ZüøE·ï¯©5&n½g/Ÿ¥ÂÎ}µ "¢m>:Š×Ò§BF öS xó#†mÄ<ˆ9^§Ÿ xt=ú ¯›9®ì;y C×7DÕ,1"n4˜úí7–‰§ëG+]zû2qˆ.T]ßÌ™Vp¹ÈqZMfßÉ‹–© ÏB»—Zù´ðh=Ø3~uŒã2°“úµ¦@½ ,"®¿œó€ÎÌÛO2pãÉ74»h?§ÇÀõ–¾Ì;ôƒ¶\4” \ï³ø#"nÄ]rìãd»³6 ›õG¨.TÝû‘Z0+PRa£³¿r&À¢­|%ýé ~6“™¬pYá°FxËШW¬¤¯w€ŽËaBp!âFÌáe„®yC8ÛH÷‡ëP]¨ºöe›ºšvöê™q Áàø#"^9s'ù ‚uYÙ¶m#àðòAûfm¶¡÷³}»6Dª®‡}ëÁPÃe©À7´ýš’\ˆ¸ó½m›ÞéúêØkæÓ£­`£+Ž’„ŒC/gûõjA¼Py#òàðìY[9l}vugi%ÀžmÄ{EgDúƒ«ChÆÇ‘¸q+æS¥ëò¯ªloW[Bð¯ªØB´­€×˜tîõÃímÕæûÎd³þÕ…ª‡×á…‡F"GiE /T^üÞ Ô¥¹TÀÏᕹ”Ȇ…Aî+KÁw–÷·ÏÂþg91"nÄ|@×µðk½R?hû…d!¸q#æG9ÔWuÍ‹¸YGÆ Ç"nˆ.TÝ <º¾å(’Ë8ô«âü#–*oD¾¶lygù<ã@éX>À…ˆ[1ßì˜ßX>϶1¿ð/ŸØB´€¯Ø:nËmj©À«oë¸\ˆ¸óíãâ¦EÖ¡ñ¨}Ó"Dª®~ëÐö=‹l½bû–E„-<ÛŠwÏ^ûO…]ïÛ·,"l!ÚFÀGl)·åºÀTà@ŸˆãH\ˆ¸sxeѱUtòP—ؾUÄ •7bÏßrIïv§¬žÝØ(âËÂ’H×Jol80µo…àBÄ­˜ÏìÍ–TØG¯ÅÜ"âËB“PoØ’bˤ©Àá§ýòÔ\ˆ¸ó_Rlß:yhèiß â…Êë±ï;x¢Õ¾zêÏf3l¤ÍÖG¨.TÝ|_Ùä¾±_tâµñß±[@ ®Fûùc’î#(ƒ=vssÂçWRÁ_Ÿøñ˜ ^¸¼ü*ÁóìîŸ_2«ä]žÝ}>-4ÚŠ5¾ ä( Ê<”o9 ˆbx¡òFì/¥ý´ûÌS¡Yתe]êì?À¢m…œ_ž ¼Úo9Ê*ø´Ðh#Ú• ZîTTŒXÚï*¨°…g[ñ~Œ»R¯m䣟Êt¿]é'zøzN§…G¡žÁ½·†Q¥¯¿8ŽÏh…àBĘ_néæ ¤‚®fX޲ >-4ÚˆõŠïs:*³2eVŽÊ¬^¨¼û^ÞíÊ+䪢 ËÂ’Hïèþ›£‚"ãÀï訠ˆÀ…ˆë1Ÿ:pÿ­áÛY©Àñ§ý«_!¸q#æô:„TÐÕ1ÈQ<Á§…F±†3|Çž~Æ«}¡cGŸO 6¢}ùÞ-4ZöÒK'ž…ØŒï¤c!6"nÄË<!2½©»ÝÏý–`åö÷ü £ÚŸDàBÄ?"Þ–¡SŸ¼\Ø|ýœ—ÛÓ9k¦© «Ý¬c¥—O V¿tÿC¯ôRˆ¸ñÒ¬ô¦¯6AÇ 5ŸmDÝGs,N6048Ö¦láÙF¼·£^“yÍV*pãËÍö#ТmEüµÚA»¼/úþ^Ûå®°³ŸêñÔ•¼[ˆ¶òZ»rIÈ40ô 긦.SGàBļ ÆGõÉË%šËω¬Íºö2]Í€{|Zh´‘··°RH!âúKfmŽÝ,ûqì•°a!Áú‹¾þ.ìý~’{U+M·³ç>Ò“íè¹þ‹ÝÏÿ蟱´ 7Zß8££¼ã~¾¬£å¬–¥ý´…h[!Çj æ™:ªEíÕõÇ\ˆ¸ñòÃøª>y™Y½~ÎÕdæ¦àåýÄÞ °…hoЄí–8¶3]MQ{|Zh´žX­Çý°ÔwGˆ¸ÑJÐ-cÏ>æŠí¿zv1ù´Ðh#Ú¯Ôr•hz‡ŸÇt'îõ§tYh²çmƒ¶AKØÔ µ¬‰Ï¦%>ê~Z€-DÛ 9VRä8×i Ôw¼ôYZ.DÜHØP|ìÔ'/cþú9wl;ͱûŸéê8ìØýçÓB£ìaw¼~H!âÆK\üC<1ž zÐ' îsî|Zx´ì- Ô"x5éq”ˆði¡ÑF´‡ÉÕïf¹šø8nÞåÓ£XOð.šçžÌÌ×óžQÝŽÒoÉŒÀ…ˆ[QÇ6Ò65cÓ{“ Ü1õ½.½? À…ˆ[Çöºµ'™®¦'ŽÚ>-4Úˆ5¿†#½ÛÕQÇQyB—…%‘ÞñÝǽu™úÀQí`ÕT0"nEÛ qœiÊ4ÐNZ8é-<"nE|'/…¥‚žæ¿lóã Êø8_ñƒ=þ„Z« ×—8ôEÓÕÊ“½Ã6H5™®ŽkŽª>-4Z_âØóÜ•ùC ×_û}Â×’uxSgƒ™‰UÔù`.DÜŠ:–vj3W;•LƒÄ¦Ž@zCÀ…ˆ?î $®¤‚F^Ð]{AÕ5ß\˜¸r,)wl½fºöþx¶^ù´Ðh5Ö{×!«žóA']-§N}çµ.<"nE¬[h8¨– \_hwàH\ˆ¸sh…ɱCpÒÕw³}‡ €mĺÀÍ]õåù8— ¼ÞJg%÷î¨Üd·I…ýlÚýÍú#Tªn4˜ƒ§NÄ˸Ïúoê^Aˆ°Ë˜ß±ˆ«ùÔig*pàÉ›×&ön®¼þîõ“6¹wk=&n´,÷tD:i ÍêÕN9p!âVÄÑ“ÞúFžó@qüю㣳q#æÐç?=»b']MµÚ·Åh¡ÑV¬g°}ãÇíR­¤ýPæÞ•¢Ô5•TàÀ¸Ù¼Ô`7/33l½­ôØ<ÅqZã¤>\í 'í¼F.D܈8z\?¨•ÞmàÝl?a†Ûø¸&<ÛŠ÷ÑÑ?k› »¿d†wíG -DÛ ø¶püPR*p ©àø+äÓÀ!„h!_°Eæöªù“úBu¼Ÿô>%"nE=‡ßH4òöƒ' xûe ÜŠù öä«Ök©ëžÙzDØ~ÚB´€¯àJsÑTàõ¦â8F´÷û«Šžu|:øqÛÕ÷¾Üð;Fª®·˜úL±§Òø¤î\/àSGþ\ˆ¸qôœ•ž—«{oÞQ4ãŽ++¸óéÒ»°vƒR¡›ß]lÖ¡ºPu#ðy­œxy\*lc$m¶¶m+ààk䩥ȸõÝ©¦ˆá…Ê‘_ª]Œ{+nXª/i«}ynlA±½ºù¤qtViý À…ˆ«5Î'Ný9Ë'¿…Í]ð3éÝR—öÃ$°í¸v‡`ëñój?ñZ¶TØÀ8Û@[ˆ¶pta[ŸãªK‡Œ? ú#T¦nE½ò‘œKþÙÖxÞXò°…h õgGAùIC§:‘›ô~%"nE\n8ï‘ ;qüÑŒ;.>bàFÌó. ñެTØÀ(Û@[ˆ¶pô×tjeƒ¥Z1¼Py+òµEÿVËXûÅ­–[ˆ¶pè[Æ®™Æ!uF1é}K.DÜŠ88ùl8à” ¼ÞsyŽfÁ¸ãÞ6nÄü¸«ÿÆg¤Ë)ù=õàÒpÃ}H©À룜ã&§\ˆ¸þsNð&‹£Ð4ãЇóX^¨¼yè#‚®rê ýZÞ¤&ÿ³ÞÖp!âFÄÑÉ~Ú!½ÛÀ`á8¦ÚŽK˶ïc{…¹e– ÛÈäšíG -DÛøR=„xg³/óÖFÂ;^¨¼{p]¾á:°Tà@ Ð~‘Y.D¼sn!Ä× =û8rˆþ5ìnÝ<¿ì'½ÛPÖå8¢ S7¢¾ Æ fR Ž?šqÇÍ} ܈ùÎ/´Hþ|K‡é{‘«ûÿ€o6-<Ú 7¾qáØòÏ<4â;öücx¡òFìáím¼ü/84êãü#–*oEþùÃ2ï®O…m=z»þzò^ñfþè}篽ïBÀ^¨¼~—C湿lùð÷t£Éïè†Ú“}œ¦M$»8þhÇñú%!âzÌמ^8’ »šò¶W»Ðe¡ÉF¨p·ÈSq áuDàBĘø.†£ óPöå(ˆá…Ê[±G·^·ódʾôÄðBåÈÃwE/Ú(­.ïfÊ`ýòäøòk×^¤–y$ûò©ÅðBåõÜ1óÜ_¶|ø{ºÑäÁO–4#Oï6áö£Ùv\`~ß¶â½”É ¯Æ+ã×”€Wã 7‚ίÛI…]M|aù& M6B½á›¤Ž"ŒÌC㜣#†*oÄ,8ð\Mµîpâ…ëP]˜ºõLÛ?•mhð‡õË“ãkàŽRµÌCi—£T-†*o$;¾”ÜþÑŠ®7ù ýÒwÃm©Àô Çí¸ã{܈yϯ›J^K<õ^|Zh´íÞ;õ”eéy=5G1¼Py#öùzÞv{*hc)Ù]$À§…G[ÁFû,õ—ÔocË8òyîc‹á…Ê‘ŸñUdG9iæ¡üÅQNà •׳¯ ý¼†ç£Üh5+¸ïè)ZËxu@uÔ¬ñi¡ÑF´ë÷w y6¼âÃSÈà •·b¾Fx o*p¨oÇùG,/T^|u¹äF Uýî'ÕÞáËkŽ‚ÇÌCc’£à1†*¯¨Ç³Ô*!áÙF[?îi=Zû—ÁÃJ–;w¿Kþ{Tø´ðh«Tç7Šì(ºÑPjyRWSG ŸmD»¾ë}§ fÇË%ãIŽjÁÌC©‹£Z0†*oµ›é„§³<>üÛ2l3ýˆ£…G±¾äF_»Æ;_7?ðQÍD3=¿Ñ‡™ÿ€>ÑiáÑF¾ˆ~†Èón5”d‘Wåµ_ªw¾î¾úk¼øtï´îË’…1g/ J…\ŸÁô#Žm¼”õ+|nT»Rt£¡Ôë"îIíxA§J*†*¯Ä~ü÷C nëE{/JÎ[¯Ú ã…ÊD¾ ΰÏê»õyœ>²¢ßþöûüoø¯Î~ýzh¨x˜[ø—ÿ}m‘K-ìÞÚ½—ueµ{¿zï·ÖÙ¾xhÒÒZgÆ •7z²ËeÓ”S”©ë“—Æ£Ÿ!´ðh%ÝxÚè. :$)®âàÆ“×oÄòVx²t£‰Oµ3·¾¬m,¤ûj°BháÑF°g¸Ê ¹ ëÅ#CEsV/TÞŠ=ÚàÁ©À¡ç±¼Py#òø§½šKl_<’4—؆ñBå­Ø/P³iö÷’¦—\Ï`úG ÖcÝwø¾Qk%Ó‹‡úÇÖJ¦0^¨¼{´r/óLï6ô³âú#T¦nE_Hj­š|ñPߨZ5Æ •·bm6zÑÕN²ù”PŒ-<Ûw½Ã[,ùÒŸmeü]•gèP]¨ºø^Éo®SyñиÔZ¨Æ •7boâÅž©À¡ç±¼Py+ò×—êûŠuæ[¿ûÒŸð÷ƒwÙž‡«}¨Ç_Ð;x¾-DÛ9þÉ’æJÄ¥­•ˆa¼Py+öÐB{óQ§]O ZÏ:ÅØÂ³p×7€½%ˆ/J`ýª U×?ôø°cs|À÷ =›ã1¼Py+öèpë h/úa[/A ã…ÊW#ßñŠÍʸ?Ôþë¯ê¬‘‹±Ëˆß±xãŸèi.~zñP.€óX^¨¼{hÁ½ùìЋ®g­‡‡bláÙF¸ß–e:æöõp9™407¯Ù°°`#Ìõ½ÙTÃåˆZÒëP]¨ºøßSrì[øÖ¬gß:†*oÄž_”ÞmègÅõG¨.LÝŠ:¾¤Ùµ×Èdþ=521¼Py=öc¯µ;6RG|»Ð³“à •7bkÀS=y¨å8ªbx¡òFìñOy{v:F|eÙ³Óà •7b_•ìÙßË<Ôrû{1¼Py=öþ¡cϢ؄¯CxÅbx¡òFìñ»5=KÁ™‡ZŽc)8†*oÄ~*$Yk~ÎVæšlÿ*©g55ÌS¨^¨¼{üÆ>ϲÁ„£Ñ³là •×c?3Vb¬V¡•Sßä™ŸÍøç“<ó³^¨¼ñ³.ý3öÏ…>ÊUlzå×ç¥BÂß‹f²=W;o”AýIù¶mã×<>ðK<$ù¢ñÓõžÉ䌮Â3™Œá…Êë?ëÒOØK _µñ¢ñuþö’™šú¤5uu†Ê§…G¿äÔc/覽 åÄîB/hlþüö‹Ê_ÃrâóÛ(”Ýí+þˆÄ…ˆ?hÃñNÇZÂß#ïYkˆá…ʱ_'¸ójß¾Í:Ð,Z? ®3ØB´ïØ, áœËÅÞÑÖÒü Øt«ÚǨd¸qý]»çˆD½ÿ&xo,–øoî‰À…‰ë7÷¬ ÇF‹H+~Wºg)†*o4ø|œîXÁûÒ…µß&™ {Òª¶¼w`†Ð£hOØŒ´á,ÁËžGxÀÐOºª+ ™ºÝMíÓÕ%†\ˆ¸þ‹n6…i¨©¼Øð¦ù›R/ˆË®]‘FàBÄ_4_9L<Û– û:ŽÒÎäØB´«‡š¹º\¤|èåÅ×ËÒ©-QºDàeÔïàú5’Û±ò:쓞é™Ï)ÝSºé'¥†?—š†èBÕõ|t»|¢†±ûï=>D«+ÊÍú/h/ƒÚÕýº\ˆ¸Þ¿ìÃZv^¼9]ÆÍ»ÁÝsº\˜¸þí ž»8n4Í<Ð`Fµ5ª{˜¸q£©oô­ºTØFàßb °…h«ï»Î]×Þ<ÐX&µ%j»€!¸q#êèš.¼Ý•Þi ±4oÒУ`/Û=êßîÔþ¶Öâž У`¯p†è¸líä·RßYÔ¶ÏBp!âFÔ÷‘½• x7›7Î"l!ÚzÀû¡'/ߦ‚îôçö/;‡àÂÄ­Ã ¹ã棓ÞÏE{?Õ{Bp!âFÔǹ,hsÏ6˜ïWnxgž´ðhuÖÙ÷Çn?ó6TØýëÁß›É)/ëU~š¯7o¶,4ÙhÙ+>óQ÷%ÕûGNx+ÕMõö‘\ˆ¸õ£¤•9QN…m$¶î ~„-D[ø0 ¹ã¤úÉEÝÉRÏ©‡àBĨ…¡Ì¹r*l ¹´Oñl!ÚFÀéÓåôN?G oÅÚþ)>l„yƒ“pÇùÿ“¯¿“k§¾ðj 7¢¾Ï`oÒ>½Ï6ðV¶Oïl!ÚzÀÇáãªÞ?ã×jAÞ?&n}„rÇ '¼¡½úú«ãf.D܈:?±M…ý|fj:N—…&[¡~} ƒ³&‘ úX7 /¥ØB´õÅ”qǧ>í—Wœ<ðZª5êÕ!¸q½•Oü)D*ìêËÙ>ñ¡ËB“­PãÙ¸¾$®•c<ÐLÔJõú„\ˆ¸u~V› »ÚXÚsqº,4Ù 5žÎj׊°Nh&j‡z‘D.D\ú<Œô9D*ðëOÊ›ýDàÂÄ ã§_2œ<Ð`Ôòõ:†\ˆ¸õå5ѧ¬Á¥B>ÎÕ|k,þuC>-<Úˆõ¾b?dí©Àõ%2þˆÄ…ˆë1_ðXŽû Nx7õºµ+"nD}îÁ–ŽO´—öƒï!¸q+æÏuîTè×Gç6ŠÑ…ªë«, ~úÍqøýäUm4êÑ÷\ˆ¸ÞÜ×£bèbÔ" õ¨ô‰/*Ž?"q!âFÌg4Á§ž¼ý0s.D܈ùþÑyñ’Æõí¼/+9w’Æ\ˆ¸ó­Ó—†3Á©Àë?¨ã4s.D܈ùån-Vâ• h-Ž”1"nÄ|ÇІÁ©ÀÖÒ~–9"nÄüò­Zª› ݬV÷§é!ºPu=Mß»Àóƽûxv^ ×ûÞƒ cÃ9ìTàÀkÚ~‚<"nÄüs¶ËKÒ3´G’ 7b¾¢ #~;8ÐZGÈ#p!âFÌ_µD”¨ô?’NÜ¢-º,4ÙŠóNŸÆ¥ïþ*ÂxÓO>-4ZöÐõà4È1õ<ñúOé˜z†àBĘè4Ho+Úщ?(Ž?"q!âF̧‰[n– ¹Þ6×ÈУX,P¤¯ö…í +´ÐhõZ¾!oaø-ìÕöáÆ¼ïqL©~ÿùËoûï©ÝáßÏ{§MÁct¡êêü‡§àŽõ¦†ˆöõ¦\ˆ¸ñò¯è¿y!8ðƒ¶ß‚ 7b¾åÊ[ã;õî¯d‹·Âa Ñ6º–£ˆ¨šO4W$Ÿr}dn.I …GëÍ»XL^™Û×Qh¡ÑF´{p=ϱ†zâÀÐÓ¾†‚ ·bÎ^©yÑ»v5ô0©=쉯û?ØãOhË)!¸0q=#Çõ­Óôr&qù=²uíÕo¾ú'ò ´o÷mEtXXðÇOøzä‘þ Ñ6z’ÝP‡õŠ¥†DâBĘÏèŠuû؉WGúöý¯Zh´í]±nßû:q`”oßû Á…ˆWcN\ˆ|ѺŽ_9• h+í—e…àBÄõŸs8>AT};Û7ØNú9$oÔ ¶Zh´ë€mªTàµÒ³½Æ§…FÑÐ_ÇÖZÆŸÒ±µ ·b¾W•^ô.&7Ü – ¼ÞVwŸ…àBÄŸsž ÁÁ±w—éj7ëØ»ãÓB£Xló¤¯v³Ží)>-4ÚˆöŠ®l:¶¦2ü”Ž­©\ˆ¸ó\h¸§-8Ðâø#"®Ç|ì6ò¾C*èj_ˆÓ8Zh´ë\ûñì–d¼Ú:öJø´Ðh#ÚGK[INÜ©ï£õ›O 6B=¡&]B˜ »´=Œ,ooòÓ-4ÚˆuÀ^C*ðêïØ#áÓB£õÿqÍ_€ßô:Ö)Ç‹óûÏç*Øö3 ë_!Û÷˜èBÕ†øyþ˜·¿3~áåíïDàBĘ£¿5\õš "Ú/© Á…ˆë1ŸzhÙԳ˓éÚ0áÙåáÓB£X앤¯þŽ=>-4Úˆö.›z6a2^ÿ)=›0¸q#æÇ}ÚZ#v£ž?ÛGEè÷™}3þˆÄ…‰ë%ýz‰dÃýÑ©À—¨ýæë\ˆ¸ÑÎh©Ú³ý•éêøãØþâÓB£X¯¯¹ý@º«;øx¬E~­jÍú6–z¾”r7z•]¨ºÑ¯¬ècÛ1ãÕȱéȧ…F­|S=ŽÆ|džc.D\ùŒÞÚp}*pàÅñG$.D܈y¿ð…R¡_¸ ¢ U7?@«ØžýÞLWÇ~/ŸmÅú5 â즂Îâ—>Ë¿ã˧…GÁØÌK^}kpúG 6¢=ëâž ÈŒ£½c2"nĽO¼á©ÀÇ‘¸q#æØ„ÖsÖ$ÓÛßÛ©}a{[™Øþfmë³Þ«àBĈ¯ØN„cã7ÓÕ¡Þ±ñ˧…F±Ø#L^ý!{›|Zh´môÛž}ͽáß³¯ ×c¾ ß&høbK*pàmÿÖL.D܈96£òÁÉ40òÌê°¦ö*¸q+âyg6tuôqì'ói¡ÑF¬Gp=ܳŸœñÚéÙMæÓB£h£ß9ñìj.èMŸž]Í\ˆ¸s,áôÀÉ4Ð .j«·ð\ˆ¸ñ [”uì°eºÚ:vØø´Ðh+ÖÇ* õJØTèæê½ÿ:Û]¨º¾‘¼lÇ÷ ™W¢¥ÿºCâ]n¶m£©lɦ¯úŽ­d>-4ÚŠö ¶oüÖµTàõv⸓oE?õäÙÿ^ÑÛO=û߸q½±¬ÃJÞdKýü9Ç߇àm òiáÑV°¡Ù çäV¦´pUsNµŒÀ…ˆ±E|u ¡oÅfºšâô#Ž­_ö¹N{h¢m4’écnO¬ʺy«¼¿(D/Ã~O·ÏßO^Ͱ[÷|Zh´mô ƒžmûýNŸgÛ>"nÄ\?èÔ_oߺ¿©ƒ²ÞÂp!âVÄ7ò–l*èêéØHæÓB£X£ßôl$¯Ø×ú<ÛÈ|Zh´í ýÆ g yCïWõl!GàBĘƒé²:QzÑ´ÖîÙ½Ëtí©=»w|Zh´ñ3쥯þ޽;>-4Úˆ68âàEò/z‡æóžuäLW›Ÿc™O ÖFøóžåØûò’g1–O 6¢Ýœr"nfÝœÈû·Ct¡êúvàŽ ; ³z ?§Ô 8ðG$.DÜx&hþçYQÊtµ¯u¬(ñi¡ÑF¬?âºé~¹”“¼hʧ…G[áF§Û޼ûÔgùŽO 6¢eV U¡z¦ø¦zWGir.D\ý9ÇûXc¥ê¤«=lûJU-4ÚˆuÀzO*ðêÙ¾N@ 6¢î¶—³vgÌJüm1ºPu+ìØ*^uz¡wzq*p —m/}Á…ˆ?'ö½ÇáIW{ÚöÂZh´ëãl#õv»TàÃðWþXÔoezÛßè'zü}| Ó£pï36@´×ƒž6ÒÉâú#Tª®‡½Ç¬eƒ«¸.4º°„䥺ÙöRÂ\ˆ¸õsb Kí‹á']íjÛÃh¡ÑF¬‡ o1üÔE÷Rx„-D[]{l¸o¨@¹ÐèrǦ¾óÚ¢ì‰ï<Ž?"q!âÆ„}$ıRxÒÕ÷¾}¥0€mÄ^·jßæ9q+I¹±ÑÄ •×#?€CPW£¼hìCž¬»Òß³‚ŧ…F?ã±˽—8ú¤OüW*‡àÂÄõ€—SÚw!NzñÛ÷!‚x¡òF{‡çŽ%Û·z|=V~cÅ6&nLð"¬ }œ”Á¢ùs‰©_ïèMø ÖÀžÝ;VÅ3½ñŽuñ^¨¼ù‘¿ — yïKˆ!ºPu#ð`Î5ÀeA/ž}:–3µGÇ"b /T^ýÊáx~®òwëE»øe>øýh3¿ÿ|¶™gÐ8þ~IDÍHcxáòzV:.Ø”¯xø£§z7vg¦>Õû‚;3õ^¨¼Þ“MÝk:Mª¹K…ýœ& +·V0&nÅà9Ö]3½LŽ•×^¨¼yìæÑ†mù}Ü2Nžù¦‚‡ºǼ=†*oü¬KñB±¦y¾þ¨¬‰Ÿm„»û±aßòBWÉå—¬?ÏñŒ=»b.Dª®ÿ¦s÷\Žü¡C¯¾c¢ S7â>Ì—Ÿ•q[V*éNÝÛ=í½/ìõi÷úD&À¢­Oaf욯†]̰˜‘Þqäíw¬ÃDàÂÄ÷gÁçŽÅ’ÌCo¿c±$†*oÄ~­¨ò×eû¸'ó{'à/ŠÀ…‰ýviQÃ&ò½ôøìÅ1)Í<Ô“Ò^¨¼þ*5¼¨ŽÕ¯åÕó×7õÎâWˆ.L݈;}– Ú¸½Õ=oäÓ£`ox+w,dj*Žå‘^¨¼ûýµšÙ±«x–ËÍ/Úä:ž^¸¼>d¯ùÄ%3ÛH>IXñºfz®ô@íeø´ðh½¥¯Ç·‘‰RA¿ëÐN/Ñe¡ÉF¤‡ˆÝÌTð½ñ^ÞÙ‹á…˽ʈ'¤Ž»ÌCÑcÉ.†*o4ü‰¹æpèг;–BtaêzÜó-„Ä)ô¤u“þa”. M¶"§ê޵€ÌCíıà •7b_ûê‡{JzùvÓó2$ÞŒ”. MÖ½×+3ïÌŠ2onܘÅðÂåõü%_}FN¿RÁ›§To$1¼py5øS×oÜéF*äë;Åš$EØB´ÕŽfê‡jÂx££9yk<ºÑÑñÂåõ¶ÞÏKÀ«š ¾Ó7ÁüÝL.LÜû ïû¶Wòœúþš$ö>^í¼Uýü Ú~F„-D[ïf†¾¶™áï׳md¥þ~=À¢m|Xø…©Ð¶2imEÛ̈°…h!ÏSÚl:²ñö¸×"l!Úz¸Ï¢¦çàLª°O>¬ÚrN¦÷ùJèñÔ€óiáÑz¸ß>éFéÓ;çÑßÛßóiáÑF°§}?Zg’mã—ôw&¶m#àÛÀ.M…=è9~+ýˆ£…Gë ø¼Lä5¹TÒƒþCf{_ {}Ú£Þºl!Úzëž·W%7¯*üSþúfžø®—þ©Sž\ˆ¸õåzXŒ=·ÏøQ¹1²'÷!ºPu½wYÆ nííµ\'´™Mmêä'"n´ö·òR†þTØÇ/ú›OS–[ˆ¶𽇛y{•ÅÉE½ÚQ­±Á…ˆëQ_ÇÊýþ<1ÓפŸ—)FàÂÄõþ|ð쥽¦åä«Íeï:µ-j%-!¸q£¡ïø(Ú^fqòÀ³÷j`´"‹\ˆ¸õçw¸ ü©°¯ÛÚ´‰[ˆ¶ðýX„g®6§Â¼}•<À¢müsM˜7„îõÚ0ÿ W‡Ð¹[Vöë™ [ÿj“¿[‰°…h«­|îêGfn”Uœ¼>eüY)õÂ3{ü mF‚ ×Ã^ûÔ½¿3Ÿkß&ó÷å´ðh#ØÕ*wGží¼{ý}sÏÛGØB´õ^|è®§”ݬTØ—£I>äs,ññ‰ë ç!¸0q½‘ËÀ_ M…>ŽÚ†íœŸ|ºÚšÿ‚t¾-DÛ ù+ß'­È¥Â¾ÓP<>?ÙþŽÏO|Õ;–\˜¸Ñµð­TØÝßûIKé²Ðd£yçÏ~ðê?RA«H,4Yôxœsd&V©°« ¤=¤ËB“õPçk`©]_*pý‚€}v€-D[ï±ç®üxÀíb„TØÆ&‡·†"€­·ïy\èU©Àõiëú‰\ˆ¸óË8”Ñ=ò3{¾ Á7R>-<Úˆõ¶ÓëR­¤½b""®Ç|Fî@Ÿ ¹ÞRÚ³>-<ÚˆõQ­K-8H´’öR‰\ˆ¸ó3[ö¾SWŸÜ³k‚ ·b¾qçi©;õ±oÌ.l!Úz¸¯—¹°’«TàúôõNZ 7b>a©JKqG*pàål/K Á…ˆ1_È“¶ô._ßNÞ\3À¢m„›ŸÒ¦wx5¹x€-<[÷õÖVŽ• xrGv ·b¾Ð÷Sz‡åßÌ °…hÏ_¹!.u¦Â6ûCÿ"mˆ.T]_¨}&9äÉD*ðê+êšEàBĦΟP¤Â6ºø'B¶m=àû±öÎ,6H…­ÎioÔHðiáÑF´&o©À»¿}%Þ¤“O 6¢=ƒý·c¾¹Ï`'è˜nØÂ³x/7o¾™q³jÑ=áŒÀ…‰A__+Á¬ªÈTàO÷ûÐÓåæ²\éC}þ=ätZx´nþL9½ÛÕžÐ1¿§ËÂ’ÕÏf/]w”[-þÚ,ùwÌß±[~éþm?ïÍ?ýœ|.L\–,ÝX9<è¨òO®™7Î'„àÂÄÕ×~éÞî°±Þûö…¦¯¾DíËL´Ðh#ÚKýX²{ÉãÔÍñؽä£ U7ú–€…ƒTà•ãYð …FÍü-™ ,¤ÂÎiáÆ\숰…hëÏ×k¼RA“º*¾ž-e»â×[;Õ^<&®gq ºzc¯úÚ÷ÇÚ&n4ÅKœÛ×Nú¹?ó庱@ 6bÍ_OIïvuth_âËÂ’Hw‹ SA¯cßi¯£ë\˜¸ò}„:’öõˆ“®¾’í ´Ðh+ÖõìÛ»ÀyâÏÌ'ß­I[à Á…‰ëAõ(·ØàÍI¦»Ø ¢m„{ï&àzÀûr‚R¹ù{ïûŸ¸~;@.L\ŸvµÓ8w–ô2n¦¼±¤ 7ú´@§cA/ÓÕ!ȱ Ç§…F±>nvä.Š¥B?ÆŸãÞâ‚^ˆ.TÝèY ý×r^¦+ÍŵœÇ§…Fë|ìÉ%)é]îÔááF%M„-DÛ÷ŒL|\“úósµFâ˜Õói¡ÑF¬·…¾]š ¼·Z÷Fo.L\ï»§®^NãŸüdÝ’ýÓŸ]¨ºÞÚ§€¤6x§Ô[ÞIÆù´ðh=Üs‡åø¢ò‹ænéÝ66ïn ʶmã·œ±U||]ï^ú³>¼1(ãæ=ÝcP.L\ƒ²Nœn¾èqâ©Ðóšä÷ÿð¢ U×ßÑeAúÛ–ÙÕ‹Î707ªSëKÁ7vØl!Úú¹v} <8ðä°ýzðž?Æ¥?Þ iåθ0q£µôØê>û|ÑZèo¡¦¯7DÇÞ/l;jH¶ñc®Ï¦B¬ O­oH¸ëþháÑÁþ{ì­Ù-Pˆ¶ÞJ¶Ï»4yióv¹˜ò{žâNšù´ðh=aÞÆíÝæ­dúè`9«@[ˆ¶Ñ¼¯û'¤Â†TàO÷{Ûçs¸Ò‡úüzÀé´ðh=Ü{ÿZñ¤m†¥BÂÖ§÷~¼Ú‡zü5à¶m#ä—~œ3´¾Ðéæù´ðh5Ø?4akž¿žvg,`ùg°1ºPu#ìÇYê”*øåŠåK{ÿ¡¯‡®/ÅèBÕõ¸÷hæÙ¾xpÚP“i.ýÑ…ªaŸÁ¡ö©òi#Þ>YŽÑ…ªa§I© ;¥Á=ŽÒaaÁF˜s½;³3¸q–»‚4¢­N:ס~Ö¼%ëÖFͼ%Dª®7õa}æ,R¤‚žŽ‰-um%¢­7ô±ÿØÐ'f,ãç–1c Ñ…ªë }\&þ¸Ÿ yxG΢ U7éaã*àçVPÏÈ…a²Ðd=ÎÓp=ÃDÚÑO…þ„¿/e»Ÿßì§zü5ܶm#äüæ8²–¬?ÐçG©YKˆ.T]=“¿uÂc¿«qßÖü³æiÍ/Òþ¯ûï7%ôæ ×ä<âÉb{v1_>9PûQÛ³‹]¨ºø½6Ÿ ÛX>wï)DØB´€o3y÷)´ñÜÞ=³Zx´ìúá·¹ó|Ù­¼šŽÜ9Dªnž¾© {Ô§þ§Þ¯Wý`óßЪMbt¡êFzó›Ê—eà¡YŽÓ\]¨ºÞ"—|²„¸Â˜ Ûš¢ßX Ñ…ªëËFëQðÃÝ£K…nü¨7¶#paâzc_Ç¥Â6¶rüY]€-DÛøçqDVV—iã¹ÝYŸ­{»\JëS¡›‡cüyˆ.T]ïÌwþë™ û5úÓ:º,4Yoã;ýÕLÝiëÚîî„ 6¼¿¾8BÚŽK…=ìZóÈr¿¿É¿æÁëfËB“Õ¹ÉÖå;n¬¾)Ï8‡cƹåçò3×ìþë÷¿õÉ/k/\^íZ·®ºþéÒ2žçúwD Á…‰ëAï/æ¬ ?¸™¥øg'A¼pyµãÝúíòÃ’Ëf2þt¿¦á|Sû+}½ UÛ}  …G[áÞ¨Cs*àc_˜™Mðe¡Ézœ‡ˆÞ0ú¶n­ß‡ájê`÷'¶m#äùžâ&|*lcZï.ˆ°…h»¦”\ vê@78jÝ ¶Sa Ñ6B¾Á›ÀíûX§<ú¤=º¶‹a ÑÖC>¯ëW(¥T/yêÙ=m*lãÅ÷¶mã§©°õ9î¥[ˆ¶ðŸp¥wüÕ;3E>-ÇæD.òó¨Ýðm¡Ø?ûäÓ£&> "pÁO*l +l/T °…h_"–†RÁ?eóË%ÃrÅ3{ü ½àÂİ£¥Ãp‘Uz§ÖÒ^Ƨ…G«ÁÞ»aóÎöùÐÉ›wVøçCA¼py#øKe>äߪ8më‡õoVÄèBÕ°¯•Bÿ\è´õ…ÿ\(¢m¼~ë»æòÐkÚ>óâ…ËëÁïû¢X´~{Âú¹WpháÑF¨¯eÖß²ÿ>ÓyٲϴzÊç"£9@sîÚÀ«ßœûGØB´Ÿòz-s9þ”ŸïãðíîõøZx´ë­gçΩ°FÒœòGØB´õ€sµ÷NÒŸùcÞ<³êæ±¼py#ø—+°Y«}©ÀŸëOý÷+ ü •1ºPuu©ò‡¯&¡7¦[Y7‹ üÓ­]¨ºÑà×J‰ÒéV¶_/m²E—…&ë¡;|ÁÂ1ÑÊ<Ô5:&Z1¼py#øôIK*èëïÊšjñiáÑF°¥9êúv*p=!½±2‚ ·‚NŸÍ¥Â®öŠísPº,4Ùõqÿ5ÿäUœöe.Ç«Á…‰«—zícþœ^×éyP †|Ú9@t?]Ö4ü¦¡z`"t¡êFsäOuSaWߢö :]š¬‡zÚ«9ÜyJÖ$Èþð²cž¢ U×?¿¥`dB© '_¾¼>þüO 6‚]+ܸ“¿eܨ¦¾‘¿EàÂÄ ×£s×oR¡Gª¿ƒövµ4ÿ=è|[ˆ¶òi#ך¥‚}%1ãÃþ†_¾4¦öä¸0q=Ãõ±Ótub>ò,*.LÜhŠ«Y«yc.ËG#ÿ²[vcŽO Öc½ŒP¨Û§É\æöi2]šlÄùø./wR• ýš¤'„!ºPu#ðÖÂÛ§ƒY®7—öù Ÿ­Çz È8S¿šx™2Ÿ­‡{ëzv®™ {Ô~È)2ŸmD{«îö÷àY7ù{ð]¨ºøýxÎÂA*èË™qíCc_ØëÓÞ˜óm!ÚJ¼§]—?‚Â+ÎJ=¬úsg||ï÷tŸ áÂÄ•™àS?Ω죚î]æäó÷ŸÏtü7ý7Îÿ~~Œr½ãª UWªa~ù·‰’º®TèÏáyfvº1¶m½軑<@§‚îôÕTob„ 7B~)åcmG¤w¼þ±éqºÒ׫ Õ>—O ¶Â½ßÌÊõ~ÐÏÑsü–”{ç)1¶m#Þ—õ|ÎâØ‹>®£§®ÿ¦õ¡Ç¹pc Ñ6~̼þv‘gúšu*ðzLpûïÁ¯ áUz§‚ÊßOg|œ¯øÛ‡½Õv WîuþÕ'ö/*ø@Þ:ˆÀ…‰[1ßøÃ*tóÌ?s Ñ…ªϧ—‰‹Ãv®«àf©Ð‘À82£]¨ºþ£nSµèäÆXukoõÆX¢ U×ÇêgbEž7¦niÇÆ}>ôÏï•?Bu¡êFÜ?<-GÚ?› -G °…hë=ÌþvéiÌK…~¼Fû÷©¼Ñ…ª«ï»NÚÇÔSG¾}LÑ…ªùub©À‰»»À-¢mD|®Öpù³˜SïÔŸÓŸÃDØB´Õq´ï–½ò{zWÔNÚœ x×ÔBpaâz+ïù)@*ìW[a%.|Yh²êy£×,¤×SÐÕ!¸0q=èCÞí¢Î+R¡[/þ)Q.L\ïȇã³(ÔˆTà@ƒi¯èÁ…‰M}˜Éµ© 'mŒptðe¡ÉF¤/g½Yã}*psŠåÎT"paâzÐÇy§B©À˜n Ÿ¸0q=èS_YÙºÓ‘gxtGG 7‚~ÜÃFÝHK> û‹E¿x>ù~¥ôøjç§…GáÞj³NÿÊJ¶Í‘¿¶¢ U×Ãþ¥<7ˆ¾¹qÖ‘¸0ñjЙKCe̽ܯ• 7Ö´"ð2æ·p}24_ :(‹©ç¨+,|Zx´Ñ¾çÚ¢³ýŒ›âù~ /\Þhæ =ÉMï¶öÝÉÍé²Ðd½•/¹m*ðêƒ;rr>-<Úw¾!ˆ¶F‘ ùúNÒVVl!ÚF¸WöÐó¢÷zèOö³nf´þd?Dª®ÿ¦ë2Œm©àͧ¿12ÇðÂåõ‘y]^â´Š“TèOø{x¶ÿy±/—°ªm>À¢­·÷­ßÑ;êd²t½¹6|cç¤ë¦}!'¢­6öáKý:+I®àãñV’a Ñ6¾ôü¡(úþþsf{š®öõÚW­C°…hë!ï{ö6|*èY[ u×ðe¡ÉF¤÷‰ÝDRaë•77šv€-D[ø0nä©[*hm‘ß?ßäËB“H)'qÖ– Úh!Þ¹f-ö¢ö/îO#l!ÚFÀkÓV.˜mãµñ§‚¶m#à‹½Xï]s<á£ü–ïxù²Ðd=Î}_;‘áN¸OûÈ-»o-ÄpGØB´õ€Ÿ×¸òº’árê·!çFO§…G[á^¹Yk*äçÕ¿U ¼T;€­Çz´FöwÀõgnÏþè²Ðd=ÎS?±û¾TØ—b]í®¯i+ñþ‰¯êáˆ\˜¸z0bœ¶¿ë’ ýµŸMÜ0 Á…‰ë-}žGò “ úù‚~]÷º1VØB´x/ׯ5Pæg©°/µÒÚñÜi/ññ‰[À…‰ë1_·×N4eÚ ø"äܽٯºjŠ` Ñþ·'(½‚«Ùĺíl[ˆ¶Þ·~ewX©°ÏçA-mVÛaˆ.TÝ{N*xy~*èaП<ãóø†_îûP3Š\˜¸þú7蓦Oêï¹Ó·¤Ò»­çYþ­´ZxôÇOyyì…þS ×_üýøP5]I®½Ý~=ø«šˆ³3u‘{û©ï̯2Þ]Öï™3¬^¸¼ÑÏWARA#¯Ñ¬½F³v>.L\†ôEÓ=.»¢­÷èûLŠmõ šºcœãf¡©Ðë—;è\˜¸õ¾èˉ©ÀgýÑÝë ¶mutêâ?ò@— ÞºúçÆ0Ä —×›ûXëzý³‹Ó¶~Xÿ#Fªn„}]ZM*øcÉufŸ â…ËÁßWv*“ Ûj7þé]¨ºöiéIA*pó}½‘ÐÄðÂåõÐÏÝÈ^XO…mŒ Þý€Zx´íž¾ xn”~=öq.u6¸ñò»WŽ#l!ÚFCáù#¼Ø˜ xòæ5éiž~î• Ý¼¬ÓŸ7†èBÕÕÅŒ¾² ëÞ $ÐFC‡÷Gà5µônͼy-§›·´m8Üð’W*pàÉaûïÁ—®ú©ùòV[þõÕ¼‘š‡èBÕõne'öK$D[oê˥ʗ——§‚G®öÌ*bxáòF«ÙÐܨyeaë­&_ŽÀ\*M…m¶Hÿ"oˆ.T]_è]×{©‰YcÖæ£Þˆ˜5†èBÕõö¾Õ¤ôƸšõk}'q\ Ñ…ª>cxÊüñôüE¯^¸¼|4Qm_ÍØ¶j?é_ΈÀ…‰ë!ßá\¯}=#ÛУÃú#Tªn„žºw­«»ûõ ¯Ê“»×w#paâFȯwö±±Tèæ¸áO"Ct¡êz¹Ãƒö¥¤lC¯iûjRˆ.T]mïsÇÞvHï2ôš¶žˆ°…háFÇÑæ¼LCí¤¹J0&®VOÎÝqn˜F}’Ôgþ˜ƒýþó—ŸÆýð_¿þÛÔ>7Fª®ö¹s‘’¦B7 w6£ U×»~ªï³¹3êS‡¾9£ŽÑ…ªÿ¼üš–SŸ¸ùìÞœú¯·HoNMÁ WKý)õ|ùVu¾Þ€—Q‡àÂÄõ¾½ßëk¾îŒúÔ¡×´9£ŽÑ…ªë­}è냪;©Î8ô¢6gÕÃPï{Ýi57‚>á™L{ju¨Å´çÖ!ºPu=ðãåZoÞZr*øú½ÊóvÅß›«Cj.LÜûç5¿ÄÌ=ëy÷ä{¥£?sÑ…ª %ìzàéÞ<)mæ´çýj¿]À¯‡o Ñ6B>ï—_”´S˜ ý ›·£.ÝÕ>Ôã/”ö#Тm„˜øç§Y‡^Ñöùiˆ.TÝ<›ºç§Ïcõ÷‡{~ ׃>©©ªôö¹ÎJ‹iŸ*…èBÕÀ¹©{ª”q¨Í4O•"paâFÐ×™¿b ½·J}ý«í!ºPu}E&óÜyÞ×À×^Õö9jˆþ5ðnÝhñ«xéºæ•ØK¥ôøjúȧ…Gëá^ö׉VR™ }<®ÏøöèÙ^†«}¨Ç_P` ÑÖC¾›ÖÜ~1úõrbŸ¢ U×ûô5Ÿôc.!¥¿þª¼Å¯\˜¸ÑÚ¯÷¦©ÀŸî÷_4ÓËøF¿®XÕCN§…GáΕYÄq(¶ÑPüÃg€-D[ø6ìpûnžeh)“ÒRÔIŸm„{Ù«t©°õvrcu1À¢­|ïvþˆŸ ýÙP¾/ûs•[ˆ¶ž§äk>©£}*ðúWjuàµ\´×RÛtް…h!ß>rqVŽrÚÏ7gff(|Yh²ê¡[ÉÓãTÐÀKÙ:© …GÁîG¸+iÞÓ?uà•\µWRÛѰ…h«­–ḗnx5ïì©#ñ~è?ÿſÿƪo|.LÜhŠ—#ŤEƒTØÇÊÕÊ]íÁ…‰«ëËsC†½_ xví5ÒvÚ#l!ÚF3ßzi*p}¨¸Q‚ ·‚N_9H…ýì·&êz]š¬‡zœk{šî™`¦$Ü=äÓ£õ`O]méÔ+gxìæ\™O 6‚=nï oA)ÓÇ(¿sW”l!ÚF¼k›kwFÊŒë åÎH ×g'ó´I~¯'ùãá¯yts’ßÿ$ù¿XŸ_B„êBÕõö8ÓLjTÐÚxìר°°`+Ì;› ýÚ©§ß!ºPu=ð˱Ã,ëL…m$*îrÔ[ˆ¶pv” ºúz6çnlXX°æ€Ñ8¸öØw²>-<Ú ÷bÙ7fÚY~.œŒ_vnLµù´ðh#Ö¿«}ä¥ÇTà¿î× ÏI¯ý•~šÙ×ÃM§…Gëá^»Ëb,g*õ²·‘†˜ödݬ%ô§=!ºPuãG=LGÛ$M…||| îìòiáÑz¬·êV¦?Å̶‘MùSÌ[ˆ¶ðããòÌú­TØÆé¯; °…hëžÕãV¸¤Â¼½2'À¢m|^­tÓ¿&“áéØe.ÊÐe¡ÉFœ÷-4b~’õׯHÌNl!ÚjÈ×î8”É,qI… ¼“Í¥9¶m+àôa>¶ÚO5˯§î¡°u i½Üynö%­kHtXX°ú­¯µ›È¿žÐd£9×5^ôŒæ•pùM*lào.а…h¿åfî·ÜXÂ<飙p–G¶m#Þ{­ŒÅ=q:mc˜qOœ"l!ÚzÀûž½$˜ zÔj¿Üë˜|Yh²é!`>º¹Žé. ˆÑ…ª¿\XFšc§ÂÞÍæµ[ˆ¶ð¡Ø‘TØÀƒ·O l!ÚFÀ«ÅŸþ´p¨–ßøÓÂ[ˆ¶pþpŸ »ÓêýI ]š¬‡zœjGý½w¶«ÝÞwÓe¡ÉF¨çÊOb†’us%ÓŸ¡„èBÕõÀOü'vµ½´—tYh²êþUK@™:¤BîÔAøÆ„'À¢m„»\fãm^œö±ñ}>åÞ½Á…‰[1ßßcN[LŸ.+›ÃÊÜê …G±æg°©°«½`{ÞM—…&¡^Ùµ7© Õ\Œ¤]Á¼Wüz³º‡ ×C>/=?©J…nŒ þt0À¢m„|_¡¨}^™ågæ3|{üK>-Ô¿`}£µ‡èBÕÀO+¿Ñ¤BïeòÜ6Fª®~œzr²› zÒJŒÜ:_š¬Gzz+à$½Ÿ©Ð¯‹ ľ%Dª®~Žx?S¡×¿»¹.Z=†Ú³ØB´õ¯ÓÈ}AS!_GhZ·` ÑÖ×ù™í$v¯>øö` Ñ6¾ò»ÃôŽ?]{“ìóNµñ¿ç_P[8Ÿ­‡{ÏŸjãÍœSA«=•{ºÏ—…&‘æw©°Ý_×` ÑV>ÿëºéãÌ'§ë~Ùõ¯†µvÝ1¶må†ñ¼ÏWº|å£ïž2Ÿ·%¦¿]ñ¡û­&Ù”v¥ U×Ûb?ÕÊ3œ/ÿË>’ð8Œ±…hëø/Q*ìî¯R€öêÓe¡ÉF¨-Tfê“ [ïý[Œ-D[øØmÜô'²‘£8“¶[ˆ¶îë ©L…}Y#Ô6ò×½ÄÇ'®]%„ 7bN5Ó;m|0ÌߣðiáÑz°gþ›™ ÛH|ü=J€-D[øBo'éî”’ëm› ÖÜ®›Gz§óÀmÕ|Zx´ìmÚ¸©k*äê©LG¾Í§…Gë±Þ÷û2¦B>2ù/5‹7:>-&&Ã:êÿœ»Úþxò9wµãÏ3Ë—/p="qaâGÈÿ÷%äÛ<²ßûTØ5þøû«]¨ºº¹Öïãsü-Õ~Ô|R{;J­öã¤öÏñ“ õ“õþGàÂÄõ`Ÿvו û8±“ûÜ\˜¸ó¡»^OÃz‘R¡›ÕœîN Fª®~ËjûS‹TàFÇîžEØB´ˆoëÀĦžõëÖ±©‡èBÕõÀ?CJnÎs½¹].L\Íí†yþ(™â=ãæôÈô\˜¸ô}ῦ©ÐŸ°Yy´oöS=þ‚ÚÁØB´õÎeY7zî• ü×ý^R›émz£Íì«çÓ£pïìÁ?½Óf&êÏZ"paâzÈ×¥¾^éîÉ3Þýíõñúq>-µÌ‚Ra_³!ÚÐ` Ñ6žomb.¥7óOï"W.L\ úØw#»µ¤Â6ª‘Ü­<¢m|ø¨×çõç§~ÝÚæõç1ºPu#ðÀ ÔÛ½œ¸™y»—\˜¸ô‘ÿš¦Âî´i…¿s¡ËB“Py¹»}— wà¶n>-<Ú÷>’'Ì© ÕSîY>_š¬Gzê_—=s&n© Ÿ›ü#w±6¢­Î8ÇåoÎ ™ úHð¿ï2¹û‘[ˆ¶Þ¾×nægU©Ð¯_îý^츽;êñÔØB´«!ç ðe¸ŸýàH] Ë`ß X'ñ™ïe*ì~ú뫊ç>åå*?̓׃͖…&¡Þgîðž ¹Ó— üII€-D[÷¶p›Hz‡ígt7j²+$Wð¾/즑 Û8ÄåoÒ¶m5àS·ŒÔ&’ Øø%½­:€­‡úúÒü ö¸üÍ™ŠÇ>åõ*?̓WƒM—…&¡Þ?.*eu#§ýÌRŸG¹xÝH„-D[ø@%SA¿¥»#áÓ£`çÏcga©°í!÷ì1¢­|z[ie´“TÐy-€9£  …GÁÞj”þÖmcwÂߺl!ÚzÀ—©ü kqä¤ÓˆÛûÇe.åˆås?"qaâê œ]-ÓÔ¸|T\˜¸ÑùïP*lu ÐÿæÓe¡Éz¨·cÿ†—×§BžµŸÐ=aÂÕ(ÏÝf¯;»›ó)kQß»Ûs-Bu¡êzW0õÒßdÝüYýAˆ.TÝüG•qì›'¸Í´}¸0q=èWž³ ‘ úR¢¡ŒïcaïO{×»ö[ˆ¶Þ­¯óÎCS¡_kˆ½Kˆ.T]oèùdwLJ…^¿|iŸ´*Du4 °…hë!ߦß/¦B}Ö]íÐl!ÚFÈןò¦Bï­ÔÈŸ®‡èBÕÕ~ýØ)a¾¢éM¾>6«cáËB“Õ¾öÇwé¹­$ºy)»…ÇèBÕžÓ"bŸ˜ h1Í}y„-D[oéÃ2Ð×1S_//ü^ù¸¿U>êóhib-ØçŸPg¶m#äËÊÎzRa?{ü>NúÓµ\˜¸Þy¯k@‚Ÿ Ý\fòONBt¡êzà÷nâŽ?©CÝD  …GëË>¯Ü(rý©ÛGM>-ì¤ï{mu`ÏÏ=]é=þ€ÞJè´ðh=ÜÃô𯳶¹R?]ã†àåYö¢õùÔpóiáÑz¸Çc\ ¶’TЯ—’Ö´é²Ðd+Ò3{tO…}üˆû·ŸÑŸ•ØB´€ÃƒBsÎ=—»³î\˜¸ò©[ÈC|*hèÁ[×MBpaâFÈ—K­uÝ$ËGR¿SNø´ðh=ÖóÑ]ñÆTÈÆ”Õ?ZØB´pãïMs>/å`ÌëÀl!ÚzÀ—ëm¤n08ôèÍx.LÜúñ©Mâl>ô¨õWþ%º,4Yôú9Ó:ðµûx1ix€-DÛø:°§©°/5¥ßýàK‰ÏOüó+ÝH\˜¸sà’o÷¨¹¾Ý“ÍÝÑ Á…‰ëAŠÊÝãæ¥2»öàÍÃf€-D[øÞ}´rZWžíÜk­Ô®<À¢m<ßêKðS!£²?M °…h+á^þuÝqmq59´Q'ç[¡…GëÁî§‘>Ú§³±Ò”[ˆ¶ñí…sÖRAW?»ùóàë~¹©è{Š„ 7B¾×&?Î.üe£±³ ±…hëºÚiw>¼s|ŽÝ]8Ÿ­{¬~úÕߺÇëWTW—‰­;À¢­|ê&r;Iýì©ffÛfÂõ0ÏûÊáSa_Gbn¢ U×þn=})"xí*‘z»Ò—‚{5?áÓ£õp#—ùÛùöYxAlç!ºPu#ð#(8Ðbv¥Å|_· ¡…Gá¾|~4ڧ¾l#}/f]ºßJõw||â³ÑÈpaâzÌ÷ËÂiÅ-•ö«xî{ièÏ“÷%Þ?qí¾ \˜¸rÜá©Ïôir*p#%òÏïl!Új+ï»ËÖ&#µMü\™‹…|Yh²ç£€úR¦7ªçܽI„-D[íKúnìùùU*ôë5/7ŒÑ…ªëM=–žÙbRa› ¿¿­‡èBÕõö>Î;{J…m>º{ðŒÑ…ªë­}*‹°î'¸éÝõ_Ô˜Уh¯›ÄÞ%ëæáï]Bt¡êzï2_6%h#R*ôaWçÎÙ}¨Ç_P[z€-D[oë×+ùhÝb*t³½ø»ô]¨ºøõíSL¤5úu]ØÉ„èBÕõNæ¸à„7±{Åü8¼tý^lñÜãïÿ{>÷síùÏÿw\;4ü×ïÿúEïaBt¡êFcÏE¥¼•ÿTÐÆF¶w¿"€m{£§]©°ÍáŸ/†èBÕ°ïwXGÒ¬¢õ3×H¢ U׿ 3y»%4ðš¶nУõ`ïǧn*lã¹ý z€-DÛ 8ô% ÏЙéÚ Åž¡“O 6‚½÷ü(º9BøÏ]¨ºø¡ro˜ h/­}x-<ÚöŸI¤w¼×ß “ \˜¸ô¾šñ»ÎÓ6‹{àŒ°…h[gA© »¿mVÒ°I‡…ëaú?ì¤Bï/5I¼!3Fªnž>ø¤‚®¶–æ“ 6Â|9šKsR¡S¸3\†èBÕõÀü'v÷WF.é²Ðd+Ô3uØI|¬|{h÷HI—…&ëqž†Úý¥®?ssM—…&qÞGnãH… Ü%ÜOWûR‘>ª¡æÛB´•o´á³‚OúOùñâð;]NÉ««¹3øØB´•›ðü@æÏ)D[íçiáöU©‘Ç^”ÇžÕpóm!Úúk߀¯ ¾¨AÉ_%ÚB´õ6¸äI±O…mÔ¼ºÇ>-<Úˆö7A´«J… -<Úx+W4WkκïÓz٦׺iª û¸én'¯DàÂĘÃ[ó<'ÓU…ãžéDàÂÄõïðÀÖ<ÙÉ4ôà(þˆÄ…‰!‡{­æ‰Z¦¡ožªEàÂÄÕùà0q J =xë’U.LÜùZ?½êíÍO¹~º¹7Á…‰ëAïúПÞí~ÿKˆÞRÄ?yè¯òa¾–±ðe¡ÉF¨ÇúÉïÐyâP+i:CpaâVÐ_—r¦@© +‘‡7üzLX›…àÂÄÕ™}Ôt­`ìï-<Úˆ5¿L…­~ñìN÷` Ñ6¾/ìn0¶‘­ù»ï[ˆ¶pz'˜Þdã¡ý]7]šlN2Ûg•Ù¾vSÄyeˆ.T] ûô\UäÎRaCÞ¼™£ U7¾}\yÃ8O;/ÿPæT@[ˆ¶pþ” ûÙVæ°É—…&ë¡îÙÃOz“»¿U0Ö€Év…ä!^êûôîáòÔÍeu÷p£ U×? õ2@ÿ€™uèáÛÌ]¨ºZ—6 Ëq˺iüø{/Ä“ŸŽá¡?^¨õ÷«’¿{ÓÇÉÊG¨.T]ýÁôœ²3‰TÈÏ:úž²Vøˆ£…Gëï?¾›ÙZ©“¿FT½|x«¸Ü<¢UéÐaaÁF˜g<ЭÅ"'<ø¢<¸V*@ 6½w3oµ9íW ŠvHaXK|}âú²i.LÜŠy½vÁŸÂ—uÂÊg°)\ˆ.T]üÔä‘'4ðñÔa»â×ÛÔ GàÂÄõä­Aß5]+2øÁñj—ÖÊ«¯÷ºc§ôºZÝU--<ÚˆõQIͲRúf›?= °…h&zB‘ xrØ~EüXjfÚB´õˆ/Ky*äþ¬9ø¨=ùé~€-DÛˆøöQaHÌR²n^píÏRBt¡êz–²ÂïQ{o¾›pþþ6,,Ø s-Îîd/Óµ×±=ÕcÂõ0oô„)tõ¡›“<6,,Øó勬ÝüTàÇböçU¿ô¸¼ÑOôøj/ͧ…GáÞ'jnš øØ6øÖã¹Óiº,4Yó>­ÔŒ)pý™›“<º,4YóÒu=u`I\}ææ±/ M6â||9—÷¦Bî§¿ŸP;&>jÇÄW5Ô|[ˆ¶ºAÕ‚o ¾©A¡Ó£xl P·ÕR_×ôh‚!¸0q#è3”.4§À'\ïªZs`¾,4Ùˆóq¶˜7ö¦BFÞÉ]y'w5Ô|[ˆ¶Ñ½ÂøÔ)x_¾‘—ßre¯ß¤ÂV÷n¬;EØB´Õ §–n鿦qýµïû› ¦BF»×b¢<"nüX×g&„©°‡¿å"^˧…G[ÑÆA›÷”Nùù3þv¼M¥Zx´ë /Ñ´>6ÐFPúõØ+6¯„³µ—¼³s“ôNáhΨ`¹yjv[6šÞe[𲉒 ¹þÂ4oüУ­Xã#œë¤¯7GVwàj¼^ú¢ó­â­Æ.ô¨½‘îÂ@¾,4ÙøÑt N0Ó;4>DâBÄ­ˆÏØk¯?¾èËçY¹`*pó +w ×Ï¥£¯‡¥Â†Zbûj[ˆ.L݈ú¥.•„§‡Lóô!&®}íàŽ±=ÍÊ8ôèÍiV.LÜúPTâñflëå(ßV­oÌØø´ðh#Ø3<‚:2¢¬# Å‘…èÂÔ¸¯¯FN™s¦B>j‡?o°½3QæÓ£õXo=éÝ®wБ³ñiáÑV´ùùZ*pàÉaûï£\œi Ñ6"^ý†¨Ì¶qÿ›¨ °…hëŸzú¨“ ûRíõÑT2>­%>?ñY-#paâFÌ«_ ñ™ÙKû˜` ÑÖ^¿<Üß«\k³>§ wúº,4Yõr|“š6=K<|ÿoL(Ù°°`#Èü1vµm´wtYh²j8ÛiO¸³Ýéöwrî]¨ºöõø>13M… =z{ê¢ U×ÃNpÒ›ûì{Êò×# lÄ8ßc¬H>V¿ö7½mG_®_ѪháÑF¸‡‰:¼§¾¾Š¬”„O 6B=Ü>rý}lÏJø´ðh#Ö—#w´Ñ=:òKGf¢ U·?ÀÝwk%Ô‰á®t„ZT-tßÿõWÚå.swů—»hw܇àÂÄõ*…½×tíNúuïG:.LÜhŠCí”ÌYÉ^-k½3+ Ñ…ªWu¹­u'^ï¼æAé¼´*ȺŒø Ú÷ N~Úó¸L#/訽 ÚgBpaâFÈWxNØ^tzê@c™”Æ¢–œFØÂ³ÕˆoݱBŸS¿æœ¼Ä"¢mDœ>©Mmüx§â´ðh+Øü.8ÐL`ûõàxq{ë©=ŠöÕµ†5žm4•c󄺑ž ÜXÇwWDØB´ˆÃCœ§¤wx5›ó+œnž¸h#ÚÕ[Bn¬”z7•fýª UW ã·¾\yç¥ã [o1ýÛö:i²œ ŠzóD?Fª®~ø\G`¥ˆÃÛ·«Ü)"Ÿm›>Hïô5Ó'N€"paâzÈG¸×jOÊÇÏéoÙ6Fªn„}¥'E©°¡GoO¹Bt¡êzاnbçç©°G¿3³Ñ…ª[a_ù9c*ôú·ðæåj_ « c€-DÛùÂϹÒ;<øª=¸š,òiáÑF¸/uj´ ºyŽÚŸ½„èBÕõÀÏÇ27 H…=|{¢ U7¿Õ/hôç03på‰?‡ Ñ…ªë_ªwªÝÉb–ê½dw²˜]¨ºxäîMŸõcÖþ°“£Ñ…ªïv– »×·ýÉc€-DÛ8p§PÍ:ÔZÚÕ]¨ºøef§¿©°ÓžµØB´õ€o{¡4ôëØ¡v“ͼôø¤{}åÓ£`÷`M.zZ#½Ëjñ1áËB“­@ã©{n¾]ÏçWúÀöÜ|›šß¦B?þ¸˜›‡èBÕÀç3±¼£© ¥q´ðh=ØgM;1¯M…]ÿŽ™#°…h[_ÈUÛ© ëí¤¹Ö<€m{±í;9x¶VÒžƒØB´€¯ìríôNͤ¹Ê<€­Æzïzv>› ڸě„У``R‚—ߦÂIsÙp„-<Ûˆ÷8ñ3ØTèOؼÂsÞßì§zü­3‰°…h!_&r› x3[óîZx´잟¿¦Â~®;_EjϺù²Ðd+ÔèÜšqŸt½…4gÜ´ðh#Ø‹mßȸO»ÚFšóm¾,4Ùõ æíÉöiM¤9ÛŽ°…gëñè™k*èîo¥ž•m³aaÁF˜0 qdÚÃŽèŽL;ÀžmÅ{eç«©°õž` Ñ6~ì;wüRA«¥èþ}ÊZx´lúô tµ lžÒ°aaÁz˜ómóÄl5tí¡Û3l6,,Ø3?uJ…]}êö„. KÖ#=]棌Ä)ð±Œ81s=º,4ÙŠó«ô˜²¢ ¹ú:Ç2ŸmÄšŸ¡¦Â®¾‰íy5]–lEzc禩°N` Ñ6~ljÒR¦TÀõ®¯9Ë£ËB“­8ïÜ…²TÈõޝ}uO Öc=K,ÄW*èîÒ?ñfЏ0q#äuFÞÝê Ù>‡aÂ=7M}É+”³;æFY®‡£}rħ…F?â6q¯?y ‘Ü‘¢f¹Žö•O ÖÄ…Ÿí¥ÂVŽJ—…&¡WnGý’±Ï¬;&Ð úuÊ¥»Ú×[´3Œ¶mõöò¼×pí¸ÛÍÇ…‰í{Çu|û£×îUeF;îš ½þ}áe¸Ú×ë¨ÕF` ÑÖ͵ßo'ÙêÈqó\{î 7‚>ŽXOÞ>·Î4òîÚ»¯ò Á…‰ëyƒ®^e´¨q™z:.LÜhŠ–Ýãé싞¸7ïµÞ\;Ž~ê@¯8k½¢::ØB´õ_sëv8äÍ'HOxôE{tµk °…hë!ßíbVÿ´jÃçìøÎ´Š. M6â|ÜFîS?ß›|Ÿ/Q‰À…‰A?Ö©“·TàÆ­ŽþIg€-DÛˆøBŸ¦wxn˜>{ý÷#ÌôÌ08ðà)m“Ý8çØJCùÅ{~B› xòÆdùמwö¯)D[¹…þï{ô½oLò9¶ÞTF¸6vâ/»³ÖœÝx”.TÝ;Ü»ò— =zãêd”.T]û¿Jí#Ñ\âè‹Bt¡êFØ´“i޲ =zû€¢ U×Ã>_ŠWi=d*täû%ŽÞ=DªnþR÷ÇšÕ¥ºæçK–õJêó”ô#Žm„{éÉ‹ºöñ‚;#õüvJÖn†í#uˆ.T]ÿM—€á.½ãУ·Ô¸0q#è+>`´ÔY‡¾}¤Ñ…ª?¾‘ÆÜ"N…Ý_~TÎÖvŒ-D[øúñQTbf´N—ÑßÎwÛ£\˜¸ôü PâÖY*l µ4nùÅØB´€ïx¯Õž½dj-íÙKˆ.T]üv||‰¹c™ h1;­1¶m#àž¶ç‹Y‡ZK{¢ U7¿ïì ¶qPÑŸ¹ØB´õ€×kÏüú·”öü<À¢m<ïsGÿTØ@KiÏZl!ÚjÀûîòÒ ” xðæÁ3¢m|‚¿ÐÝ>:õúP–M«hÕzñ[ˆ¶rþð“ ûùØßŽN¹M¾,4Yuß pënž:ÐJv­•h=x„-DÛ ùNÞGH­þÝZx´lþ8Ÿ »úZ6g'|Yh²êîJšg™§^%×N{%ÕÜ$À¢­‡|èvR• »ÚRÚSAº,4Ù 5ž6Ï-Oh%½ÖJ´¹e„-D[ùs/š™P¥B>ÎîP6”q´ðh#ÖöBûœäóó. M6=OìIY*lãWôO&l!ÚVÀgn.• ¹þ>¶'€|Zx´ë©[Èß…^ÙÓ½TØ@ûkŸ¦ØB´­ßÒ¾ ÕŸYf¹ÞJÚSK>-<ÚˆõQØM|Ý_ôžڤwºÞú32>-œrý©›‡€Zx´ëqÈýi*hàúªuÐêP¾-&®ÜSÛ¦«Õgß¿Cô‹t[ˆ¶ÑWìSiŽ12Óȃ«Q»ð\˜¸Ñq}ÖtåS(¿ú7\¦®7Æüu3âÀ™ yðE KùàP]˜ºÞôU}öA̸ðuaêFsܰAÚ‘MLJ$ž¹ÕN"ŽYÏ)Àxèýöoøoù·© ƶm=Þó>Ñ“‹Tàãßú1+ °…hë_:~N” xrØ~=øñÕQfO…}ݽ ½›¶m£¥äƒðÌ|+8ÐRÚEÜnÏÌ ¶ñ9 ML…<:Žÿ=:ÜTðd(½ÙÀc;²8z#š¬7“µ HßR¡îÈ ×Ú3®^X=l¿ ×›ËöycmàÜ>Ëig€-DÛh* ýž­7”ÛÚsñlwV#lÖ¡ºPu5ì#;WIWzèæÅÏZx´ê!š3ÚÓ†½9§Ñ…ª[aßÙ=y*ì5þðe¡Éz¨{8“hŸAœ8ÔLÚ×±ƒx¡òFä/h´1(:rYûø£ U7¦DíSÏlC¿iûì3F¦®G}¸Ò’€TèP“iÏ^Bt¡êFà{4‡iŸüŸ8ô«¶Oÿƒx¡òFäñ;öùã€_UïÈCt¡êzàÇò-{/"¨Ëþ|Yh²h<‡qäc'Žü1†*oÄ~ÁTG&“yèé©L /TÞˆý†÷_í¹{ÖŸ °£}O”#wÑ…ªëŸ|Hu¤3™‡~WG:à •7b?âýY{Ÿu¨á´gð!ºPu#ðÞ™µç‘Y‡¾= Ñ…ªëŸ'ü…r¤7™‡žÞ‘ÞÄðBåØïxoãHo2=½#½‰á…Êë±_&¼ÃqŒ² ~ºg”á…ʱßùÙYzÇÇúí4j)¿šVòiáÑz¸× þ"—#©ÉzýÑ·N{t5¥ °…h!ßáæ8Ò™¬®–d«ÉL€-D[ù†Žó‡øTØÕ¦Òž˜Ðe¡ÉF¨gp€ô$%3v1²'%áÓB£h/Ì ¤ôÎÚ/èÜî"³Âaõà¢ñ$ ‡]mŽôƒ. K6"0²¤¯>·cDäÓB£hï;B;f0Y>V‰­ëÛ§0|Zx´ëõ¸R».Ÿ ýšK÷Bt¡êFàçzà©A*äjsqLgø´ðh#ÖG_ÅØSávúTÉ›‰Ðe¡Éz˜·nštû&ËõÆÑ>‰áÓ£XÏÐé™ÄdºþØŽYL€-<[÷Þc½µ#ÓÎtý±¹v€-<Û÷øñObV’uóú&V¢ U7ÏwR!_ÏìÆJº,4¹hâtáBcðcªšéú;ØÂ³õº©Óþ½MA›AÍ™ÏEÇs.ëžšÈØÿë'«qèq¹¥«|îzìóCøtáEƒ2œµýÉý€½™ )ÊËž>¶~yãÚ©7wT‹°…hëm0nŒ7:¤B>NüÞâÏÑø²Ðd#Ð+øJâ¹æŸ¾’øÐð¢÷ëTȯÍí´Ï¶½ËûSΟüß—öA—…&íã_=žß]aŽd©Ð̓{ŽÑ…ªë/æ|YN'uÝ©°§g{!¯ï†àÂÄõ˜/ŸŸ'6öåóSÇÄÆ¢ UW³ñ9Af˜{½—Y2Ÿ§VËñ»ÎýO—þ3dœÿ­ã Ñ…ªëð6|lbÛdÖ^Æß"l!Úz7° w N…<è?¥7¹ ËB“Õ¶½ôëÎ}èTÈÕ“;Ca ÑÖÃ=¬µ›»#9íéHȹ=I.L\íK~ô?ö¤B7÷¸£ U7û>ÐÓÐTàÃò÷*³ÏLïÝýD? ·u:-hnǼgN…lò†™. MÖ½»Ĥ*ô¤U)ú3Aº,4YôÚ-+»ËK…ýÜPRî s÷Õ!¸0qµ·^»í#ät#§lœ pv#|Yh²Þ¸‡áõÞ°Ö!R½ÖGezÞé_ôøj°ù´ðh#ÜÛGÝ©]g¹û[á%µj²+$Wñ¸îÜ1&r§wJî‘1¢­‡;Y€Õ>Rá>Ò‰ÉÛ’«xæ·ŒTØFM’¿EØB´õ€¯ùÎ?fÚ” |xe“Ńgzßè'zü5à|Zx´î­g·“TØÏ‘üy²Ø¾l!ÚjÀ·¾£ö€©pë{Ì{QÀv.°h§Gø²Ðdµ¤ž¿ÓZúÖ÷àf>* M6Z;_Oﲚï¹çtXX°åñr›>©SJ…}YqÒ¶÷¥Ä×'¾ê±ŽÀ…‰ë1ŸÆ…<µ–âNø²Ðd=Òó:pßÈTÈF’íïFl!Úz¸× Àa7r½Jª9U ËB“­@oÜ—1²Ñ>ü]H€-DÛ÷ñÑ&^þ” h#ÍòÚC˜qhaÍv^¨]ó6ÿ êÓüWüóe§ Fª®îüðôþ5¶19õ ¶í÷çõàXãÚ<ÿ¸-ë/ýÎï­RaÑö÷²¶m#àëÈnÞ©°s5ÇL}-l!ÚFÀá—§5]ËòõÝ¡%l¶m#Ü{Y€qÆš |ÒKÿT;À¢­F|ï¦1&»:e¨¡4®ÖEØB´ÕÌóZaÒ³¶-Û¹bn;z«aú×ý7Nÿ½— Á…‰ëͰk›OîLâ´õ»ÿOÛ¿,¹®ëŠºî«Œ:#{è.«8eGìʧ´ÿ´´¨´L ý¬Ìˆkô/µ`‰”ft%ÑÂÐ6~zu>4E¤Âö´>G§¶¶€¶ðç/ÈY©°]jØÚFÀ[ì¿S¡÷ÖÏy9wÐFTWsÛ¸á‹ýTا’—ÖZ·m%>?qýèC\H\ù4¸O›„‡ólçßÓlóç lm}tÉß+×ûé6'ŠË•&¸¸òÕ?=GgÐl»î•è ÚÀÐ6¾­ü,” Ý<¯u}m¢ ªë£ù¼ôô¨˜ »z˜¨ÿýCßz•Ô±—“õ{LÎ1òù¡Q|9½2‘“õ@¯Ž³ü×W*Y\3¼Ni` hëk”uz°SP*dÇ}6qY0Ù¸·ñ sz§OM–Ê¡Œ¾J{~Ú›qcó¶€¶~c?Þ†BS}*ôþÔL .Sšè‚êúþøœÀeJÖÍ)âú2¥‰.¨nþã[Ð2%ËÕ£¹ñeʶ~‡““õ@o“7ÐÑ93ËŽ‹ŽÎ™¸,˜¬úñ_×þ†ÔPòÒ;=“q ic h‡BN "Åeë§¡ƒCï~ ó×1ý(¦B®^rhðà]\=Äcç9y¿‡G×ùÐø= »¹F€§ ¯±¦7ªr‹Ãmlme?ó‹ŸO€g0nõ‰Ž°+kÜÒ§¯5B)œTØÏ– Í=5Â…Äõ›zÚÛÙn*ôów“¿žøí»ñÍ~ªû_Px lmý6ŸdtRúx1ÕÆÐ6nòmÆŸÏTàÓü7l·Êš/|:Ó;ºÿýÇiáhýŸOã8´õJ…ýœáGzÏØ×c¾äÏ–p·J*èYÛ+]¿¿qY0Y9yð^÷rÍ>|ÏjoYÏ}[þ»ÿ¦ÿ󃑸¸~®ÕÓ5×÷#«£Éþúޤ‰.¨®Ïmq 'åTØæ¥__N4ÑÕõ°oš/x¹ùEàª6¶‘5¿¾o` hëÃÖ¶F§vɇûï—¯÷ð^ݬ­^Ûè‚êê“Ùï¯SbG•ôŽ›—~y@l‚ ‰A4X¸¤B7 Ú—×\mtAuuøêûñ£µœš/Û(“\ž/ZØÚzÀ‡ýó|Üž%r§ÿ”—wZ-lm#Üû2ŽŠR¡ç¦õëÓh]P]ч¥~Hèú<šõs38‘6ÑÕõÀŽ"_ŸJGLJ…¯O¥MtAu}¨ß^8„LI©°»¿”(6‘â²`²ꉟŽRaoÀ¸>6°´€ç÷˜“™íTàã¤Ý)|áËýD÷? §…£õpÏŽˆ_ÃçêǸ¯à lm=äËð±^Á†”lï3þ‚ÖøZØÚFÀç‰_ݦBÂÖ úún}·Õý/è!çmm=äëÄNõéžöû]žà²`²çmèùýC*ôó'Ê¿Dz~£ád?Õý/¨án` h!_k-Õ×çËíüÅùïÕõ ³.$®Æ|èö~’ã`*l#/yyüna hëïO/ÒæúTا¥Ç©ï¶_Ÿøª&TšàBâj:%''Ñ+Oïö+ Fœ§…£h¯µãôׇ”lù™ëCJ[@[RÆiŧŸTà㬭83ÝwoôÝÿ€pžŽ6½·M‚ùˆTГv“\N¢ð²`²éixÑÌÎ!týåØ}߿᧖wí Q\HÜùú‘_Çïl«{×ëC7. &롞÷e&¹OK…mÌÁ—÷—-lmµkwÈ©°ç¡”3çƒç£³oéÿùû{vÓ¿áwõóÐWkMtAu}Í–_jÅÍÄé]Vg‡ë« ÖŸøµº2¾þįÕæõ'¾- m<¿ë[õ¤BîôŸòúZ­- ­‡û±®ì4œ yßâ •€´p´ë­/N·€9lŸo0­ÑDT×'Ê Sa?/}Dp\L6îp~L…mTНß lm5àÿVŠ¿‚M…nõ´]_}·ÑÕÕAeì÷£æÜZ6²ñ ]^€·°´õû¼ß?oަgROú¼|9¯ÔÂÐ6"¾—Ù)?ºÙ¦|y¹ÒFT7F–·w"sQ*ì½ùg@{þZØÚú>ìÕzvJ…nõÞ˜C›è‚êú>œšG%nôçaÜYñ—é2Ü7hý&?÷XØŠ%ÛÆˆu}ÅÒÀÐ6>},ûÁùs<½o;·¤€óg]P]U¦ÇÇvγީ})7ó¶€¶ò¹Ÿè‡4vžú‘­ÖOC[@[\æ²àm.ü¯ï‡šè‚êj5r\»½æ6ôê˜þË>ù½¿á÷ŸÏ¶þ¿áÙß }K·•.¨®ß‘ë´Þ]¡«C@¶OÝ;Ê)¨¾ŸJ||â½>è¶À…Äõaw]7þYJ…îøÄ•q ‰.¨®ßì~£çTاº¾ÖØÏ%¾>qcóÒ7bþÊ·2%¿—Übµ› ýüæïÍãýr¶wuÿ úÏÉÛÚú¹Í+¼‰>èÉóš¢Ëƒâ¡ï÷ŠùÞÝ ƒb]P]ýM§üúr÷’ {YàmW\H\]L †óôn[ŒËÓPZ8Z¿Ã‡uÄo”Tàê›`ÿèõLïèþÔpó´p´îGƒýP*t3ëy/×FT×?N3½¬H…}¾tj9ÔÂÐÖ>uü€¦‚~õœa£ . &«œi÷[{5Æ”!óûÚó÷Ÿ¿?äÚÿ÷û=IãýUMp!q}!1wÕ×Þk³n¦ä¯µMtAuýÑŸÇñþ¢\½Ý³^-q¿½Ù§ãXêf¥- m„|ú¨÷cÓ[¶^ÓëÓ[[@[ø2ôz?vgå@¯oTšè‚êFØ— Ïl§7~ÓË)ù¶€¶>‹®}½_æú,šõNý9oÌ¡ lmý&_ùA1v§¬Êo å¸,˜l„zYðåm*pszyaÞׇ”Çéë…Ø ” ÝL–_Ÿ=›è‚êúݾm~Ϥ7'ŠËw{ \H\½ÛçnÿÜ—SH…|~ލLH [@[½Ççn^è-\*lc—uyëÙÂÐ6¾Ö›B/æ‡~nKàFó6º ºø~¨mA/o…Ûœ¢/o†Úè‚êúxÞ/§%v;tØÓÞ¶ÁàBâú­ÎOþé~þ˜_•——,8,¬ßÚ?é§ÂÖû©o,VØÚÆ}=”(°ÅJ¶ë߸°Xi` hëÇúÖóú¬™us)t}Öl¢ ªëCK> ÓaÙ¡Tȧ*¥Õ€Ž6nòǯjS¡Ÿ¿¯÷½Qø÷p²Ÿêþô€ó¶€¶òé³C›9§Sãs´gζ€¶p~J…ýZácó&. &¡^ËvOlìÎ´ã•ØCÆÏ]êz°àBâjKOD4}Pãò˜q\H\¿çùµAavU© ÷öýï°—·‚ lm}Õ6ïgØ%g*ô¼NÁµÑÕõÀ/}Ùƒ|ìJ^gß…A·- ­-K~9*¦w\y|8_öZ-i hßËnäb?¶‘X¹¾Ii` h뜾ù-öSaÏc‰oOÜ(Ó´À…Ę/÷–åê ¾Ã§|;¶IÁeÁd+ÎCaƒe™ŒŸÞÔW<7™¦3½£ûÐomœŽ6½Õ^}ìζ±µ¿>v7°´õ€o >¦w[ŸäoŒÜ<-­F{é¦ÓYnfÖ {˜ÿ6±Åc™åa~“ÍׂÍË‚ÉF¨ù'2¶:û^GxY0YõóUôŽ8ú6ßñ9,oöSÝÿ‚î¶€¶òÁ½ o㻳j™—7òmtAu=ìã~džÜ§Âv]zx7ßFTWÓÖË”ßhýx¨éÂßÕ÷“Ï[ÌqŸ)“D?þ×jB¯.¨®&ô–éüÁlêqJ…îy1ç…¡ ‰.¨®Óþ]@n¦N…üœ6Æou±ëË žŽÖc=ï_c¯Tè®%>ð6ÑÕÀ»òO…<*‹óë› 6¢<½&3v¢W8 ” zÒâq9wÅË‚Éú¸ô“½4¼žH9lkü»žKi£ ªaÏoÇwp©°däõg[@[x~7.»hK…ÞïC!ܹÓFT7?û׳ñEPÖ]_5ÑÕõÀ?†S¡[?ë±½‰.¨n~œÐ¥\*àN ¯/?yZ8ÚuõÀÈõiôQm©½>6°´«wâ/z?Êæ³R¡÷Öhx=×DT×sqÛT¼/ÛkeÙxô¯ï¶ØÚê#´vøP› Ú8vqu‚h@ GÁ®¢éú"èÐÏdÜ"¨.¨nžŸáRawZûò¼ÌË‚Éz¨ûnâ'ŸTèæióËg]P]8מŸ‚Raƒâ婳…- ­ßéC‹DH*ôú;±‡ÇÙ>ŸìÒR8-lm#äcí$çåÕJ¦÷_sEW+<-m»E¾)ºã>Ù´ûDË”µ°´õýÀO@©ÐŸ3ÄO lm}Ú¬Ž(×gÍÓ³ùü¦8iò´p´~ŸÞŠ,hÓ;¼'‚ØE8. &q~Õ®°½ZzÇŸ®ù6…±;Ó;ºÿ=Ø8-­‡{^Fx‚O}jÑšÝǾ°ÿýáŸõA».$®Ûó©GšoRaÏ;åû•_Ÿ([àBâzÌ—m¥· ©°ÚÉõíN[@[WÖÙ»—r¯cSa;.<¾þn` hëß?s…>›éÝîÇ¿«˜"²<gy7w_5qY0Ùõc£çúTØú=rc‰ÒÀÐ6¾ÕªÓ×Gïl×?Špaôn` hë߆Ó*œÙ¤¥Â>µ¤j'ªÇ±Ä·'nlyZàBâFÌ÷°’3O*lÇÍŸ1ØÚê©¢uÛötØfôIäÎë1ßæGçõãß ¾ý§'·…- ­.”]þà7#§‚´öˆË«^LVŸ÷ÇñAr› üÕ:Çm½[ØÚƽ/Ò;­S×Wm háhãöÞ*øõ5Ûa?3(Æ‹#ã+6^LÖCÝó3p*ìêe‡× ¼,˜¬‡zØ›}¸™&r§N×çǶ€¶n|ìKï´vܯiX(X] ?Æ|´q_õ}_QΙÏe€yçÿýŒ{öhÒ× MtAu}Í0®§cÍháï ßßñÓ[SÔ‰¬.$nÜ~}ÕtuÖ#Ž ‰ëƒá”_(®»SaŸGqpÇÐDT×G€©Úœx}ÒŸªM~×'ý¶€¶~Ÿ/ûSØ»%ºÙÈ~ýNo¢ ªëwúÇ{ïçNÓ»=éc×åœoZ8Ú¸Í÷ã)ÂTؽõ]Lm¶°´Û»Ö.w}_N­¬¿ÇîÀaœ§…£õ»;†¯îÁãÉŸ,?Ó¦ÖgC.dxZ8ÚˆõéëH&%rýªã鞎Öcwáà-’ Úñ¥€ñ ?÷¬Z¸[àBâú~0 oš>©qW7nÅ©úBëä¬÷§ÆPpÜDT×_^–€­Ü¾¼t[¹5°´€ïyp®HíxDÿÖ÷GtV—¸¸1èúõ^Ó5.[ãBâÆ »™µ¥‰,«7ù’O Gë±Þö–ptÍ’ |V‡«‹­¶€¶ñüÎ\r5” Üqånûuá{»/[cJ…nNø×ëcMtAuujÞºÞ»8÷Oq©ÀëwL|nöÛñu?a«ÏèÖ¾ùÆ æ© _ƒ™†3~>{§%WšàBâêb(¢«gËèé÷ôný‹¡TàŽ'(¼Šûg×ýxT„Äg(¯,ÀP*ìڿñ²`òÇñºèu ÇpmãYGº®” »³&å˱6º ºö¾{= ©´Gý>Ïø4•øøÄõ”V\H\FŸÝKì,! mÜ,sm)RëW·_ž‹‘äÜ™ ÜqáñÕJ¿6HܦBÂæK’¦ùÍ~ªû_PGŶ€öÇM~ºðÊnâÆº°õ§s8 娯6º¹†»¼)o£ ªëãù0VÖE7æ€mÜ1ž_¹¤B7 f×W]MtAu#ðû» ÐváTàúJúzŸs [@[øØÍx#r*pÇ•»í×…Ÿ¾õ‡ìBS!?×lèΗ“õQ|ÄCáhãÆÎo9!÷A©À}ö¹¾k` hë9ø©ŸùµJ*tãy¿¾Êj` hë!Ÿ»ÞL¤Â>/›±MP[@[Uæ®þþùë+ì?/=¿ï\6ÑÕõÀ/ûR‚Sa›Ëýëãy]P]`w 1ÜúpØÖ¥_o~h£ ªwûR[Ü^ŸH³ý|’”W´]ŸI[àBâÆ­î­âÄ{NÛu»„›‡Ûè‚êú­¾v#½H…mÜ¿¾„i` hwWBºp§L¶=÷Ê…^™&º ºvï^7žØZ«K€™­¸¸òZUáFGK¶]wK¼§¥‰.¨®‡ý‘¿ÒfŒRa»î·þÓTT7ÂÞ×"®ï‘²nn|¯ï‘šè‚êúÂñ±7·±;TèÖÅÇõ×µ»ËhñÆ…l›7dXÿiª ªëµôÇøñâ psŠèÆ@óÊÄ EŒôo›ÞbÍ›Ùi9³¿àN«+u–†5Âûñ"3p#ú¨¦/oìC[àBâVÐ+›¢}PÙv%ný§©.¨®‡}ã7Ñ©°Ÿ—>¢[\L6B½/‚ÐÌ\*pýuÍ™žÖ3½£ûЃÓÂÑF¸?¿ æY¶ÏO,ƒy–&º ºø¹>^Oµls}ºžkÙ7Âþpo‚.d[²îºgâÙ–&º ºøí¿®ë«;•«ù–—îºk‚ù–§^ .æ[(Ý|}—u5ßòÒŸe‘|þ„Ê·´ÒÕ•|Ë/_Y¯&-þpóG ã?-q!qãn_êÓÇÅ$×KßïûCÉÑV€Vº ºøGƒ®TèOØüxïô8Û»ºÿ…ï+÷6¶€¶òÍ?ÂÓ/Ýõ Ó­tAu=ð}ç^*Es_/Ýõ “_­tAu#ðû‹”ÁMv*èWã“h! &‘vO£Ñ´Àî¹I¢YF¸¸tÇìbNà¥ç:µôÓTT×?œºS‘Li*ä}Àš¹ônZ8Úˆµc»{1óÒ]Oh0ÓJT7ß ‰‘Þq×óÏ¿´À…Ä /Õ!ýF ëûÅw_/þF ‰.¨®~¬&oìÆÁ}éñ­Q \HÜzyn[žgù¼×Åè lm#Üû»…¨–‘T¸êÏx©Ã…wrõÏ|ö9½ÙOÖü¼Æ´åÝÜ}5̸,˜l„úôJè!L…m|ËäúàÑÀÐ6Þ"Ûœ ý ½ôÞßöÉç—«yò¶€¶òu&Ç¿T¸Æ³suÄÆeÁd=ÌK‹g*tÇÒkwˆšœm` h!otKï¸ãÂíÂÕd!O G[ážé’U*ì^0¯—ÚØÚFÀ¯Vl+œ ý ÿ9³=¿íÉÎ/©V7ñ lm#ä¯Ï·2ÙÍô.ó_¶÷ã§Ìö<½Ù§W2êáæmmå¥Ý!|Öp5£±l×ïµEÆ7ºc’X´IBÍU7°´çN¨’” ý ¿ôlÏïÙÞÓ'ÊÕ‡¿- m„|jsL…î˜&Ú4¡- lm#äóÇaO,ß‘íýçì¿4¯ç;ØÚFÀ×#BÐö;ËÆOyuûË‚ÉF ·Á=~Ç YwŒƒ›6êƒ o hë!œößо*¶qöíú~°- ­|Û_vO&ÙSa?æõÒ@[@ÛøúQG‡Fï,ï+üíŽÞ¸,˜¬ºï–‘N®§ÂÖïëE¶€¶ð•SaïkräæeÁd=Ô}çݶºÓë©°÷H¸,ÐÂжþ “©°éærÒ´…- m|öyÜTØŽ;%\‡ia h[¯ý𗂇mÌ —‚-lm#àKO'|Ra;Íp¢ª…- m|ÿ´9ZÒH>þÝ(\)¦…- mD|ÿ$;Z.Iî¸r·ýwáûw_ÉŠCz§cx¸PÒ€ŽVÞÍök+ýC hë·÷°xWœñf¶õ©çƳ- m|?ÛŽ0¾o` hßN¬LÿF*í×ë9´ww.]‰ÏO\X\H\}X?õø3¶c ŒïŒØÚúM>ñ[µTØÏÁðK_ò &. &[¡>}¤-^fyÚ[oÑê%O G±~Ô‚×7òÓ£¶ º¾‘o` hëŸù q*ìê3߯ã²`²j|+œ [»ìx\L6BíÎîÆ :ÙîNCXÒi¢ ªaŸj«ÀëI“l;FÁxÖ¤- mœÏ?¤Â®Ž„ñ¬ . &¡Þ+Ð\î!òðL4~Û®^O˜ð´p´k<õ »:ëÄ&¸,˜l„zsN”ñ:ü)¥V›kÂ.›àBâzÈO­,HÏtz‡_ïJÒ>¶ôïðö„G=1EÃBÁzBjé+CÈ„ÔÒ›ãt. &÷ó4âiËTàƒ>@]Ï·6°´››Ï6¤Âî”l× . &ë7÷Êo RaW/;¾¡ÁeÁd+ÔïK·íY7_—y}ÛÞDT7¿­ð.!´57d|Îøùý‚zÐàBâê»H"ú¨éj“êº=øÅq*t×Í_×7ÑÕõ†ÕGîŠ#U!q} xœÆh-” Û¼¯¯âšè‚êúJn[{~ÞH…¾o5WzÎk¢ ª«÷ûÐ þ)5Ó„ûrÐÂÑF¬7Û¾±ýÍô4ÿýŽÚ¿—ùŒŸßø½ªán€ ‰«U™ˆ¾húC‹ËÐ8.$®ßŠù³Õ!6ÜJsÈõ›<ÜKÓ€Ž6b=:“<ñý^¦=7ɪÝ$›î¸¸þØô‡¦÷êúd°ï•{Êü¹[ý²{ÙÎöùöêá¶×N³ÕäÀ0Õð ñR×w%Cþ`t!qãÒkwyü'Ð6†Äý#<àbùEo#¼6Lí‰I¯ÅDÝ?´À…ÄÑÖ¯š^Î̧ßÓ›³ÝYðëåÅ&º º>´Œ]ÿ¦Bâúà2vßÅ ý —g¶×ñÍ>}äË:n h!k?h|‡˜ |VG€[Û¶€v=âh¬ ùóVÉ/\‹wMô2ì÷t=ï9޾éOî¸eÜöëÂ÷/C»ç]K¿_oGɶkžsë?MuAuc ˜g¾k,ºc˜´ C;o h!_kû¹xN$¸ãéwÛ¯ ðôôŽ;®Ûo¿n•ÇD‰ÚÆ­ò¨…üF2'ãú•Çí×…o|Z!xýÂýöß…OÜ% ÙÈ/Åma hë+¡i¨­„â‹TàŽûÄm¿.|g º·Mî¸p·ýã¶o$ä[Ï&L›w+t!= àú(>ïÛf×.ž€Êº¹‹»ž€j¢ ªë·Ì³H…mÆüêÊ¥- ­¯\–}qAæYSa÷§Ë7°´õGs™+SôÚ`륭ý|θÖèû]˜kΰ¬¹Ïqþ¯ûßö•rÝòÓÐÐ6Æ«‡·”àÎÞ¤Âv܆ñ¬S[@[|Öι^¹P‹lýNY‡ú(~}õ¼ž†¬çW­ÑÕs]PÝüÿ8/B×ÓÍ^»øø"´‰.¨nþê©À{k¡xy:j ‰ë³ôš?>8nzÐó¹•5¿‚o?·òï¿x~"âßOûÐ×¹mxay}µ»ö‘\4¦wÚx«çõµ.O GëÏÿc¬ïq¯îå²½]Û÷¡ëê^®- mÜÝÊW¬n,F³í¸Sâ‹Ñ¶€¶~‡oË£Áh˜ Þœ)nŒåmxayýnß^<Ö9“Þñq­È·m]¦×õLïèþÔÅO G÷º»@okËvgÜ*7Ûšè‚êjØÇ®{-e^’ z|ÚÓ× ?žÏÇþdóŸP‚ÞW—Ð}ÓtíxÈØí¯*Fq!qãVìçê€~u?wàçyÛÏ5Á…Ä ïg•Ðcñ©ÀÍ_ôêþ&¸¸º´;|ÕÞéçl1’›D 6îmwŸE¸}ø°]Órø¸s]PÝ{þ®NuI~ÑËA;& G§M@Ú±°&¸¸±¤ð뽦k­Pc~sŠ ‰·"¿óO…]¸Âù ^L6Bín wk¶kÀ ¾o£ ªëaïkýU7šÍÜuíñ~óF¼ ¼ùGƒ¢e*ô'ü=×’íÇ›}þ®€º”k` h!ߪ¢×³D‡nÕ®g‰Úè‚êVàë[óë‰èƒ7·¸×Ñxay}·Ø{"ã‡[Ûz¢âúOS]P]¿ç‡ác—Î¥£2þ¼öMFñ´p´îitO§á6šCwLK£6-©Ëõ¶€¶ò™Ï2¤BwMIñ I]PÝ|}6½œsê“Ñå”k[@[ŸBwãr§MÚ1ËÃöLCñ×}µÑÕû|«ž¶¸‘Ⱥë!gšè‚êzàGw§q¯ýªÚqÑÃvÝ3ný§©.¨n„}„‹$©Ÿ×7ŠÜ(ìð´p´ëÙŸ ¸úʼë½újà Ê[±wîHㇺÛõˆºõŸ¦º ºöÇÂÖR!×Ôx1ƒ§…£õXOŸ5z2ã5ªÞ_«^wò]-p!q}¡>9>”Ô]ÎvMŽ …õŸ¦º ºq¿÷þi<µžõ=¹³Ø/EЧ֛è‚êFàs·¹©Nþ|œ¾¿}år.€§…£f®¿à˜¢»p. 랇ôB. ‰.¨nÜç«IO6fÝõÆ“MtAõjàÉãFeØŸì÷ôt–ÓYÞÕ__Ý árîë²ê×)½¤‚~é-ñ´p´Þó6í%ïáat.où—Ìú–‹#óË¿ÿÑÖº.$®Ïps_MŒÜÈþeÝ5KijMtAuýéŸë_E¿‘ížÏ_¯Ìñlw]PÝüéÃjXR'ºë®‰'¤šè‚êFàWÿ¦ñB6ó®ÛæB¶ /(¯Ç~ž¹Fòœg*ìsš:žÚÂÐ6>ºg ©©¬?/ýY¥BSSMtAu#ðÓJ·«¦Â6î˜ëm¶ lm#àÿ¬áÎ3¤B÷Ü-r$MtAu=ðÞûÜÝG–ÞdÇÝï~ÃeÁd#У?×ß#eÝu—Ä÷HMtAu#ðõ>õKõ¬».>¾To¢ ªëô¸Ë#ôþ¶ï/JÉøcyÃç×§QÔ•K \H\OPôUÓÕyî±4Å…Ä[qøxq¶sɶqàóúÎ¥- m|ªüú:ÛÆ…__@7°´€ŸßKO·Žd|?^ÿýá¼Ñ;ÒDT×Sßµ‡{þèmÿ¼ ¹ÐM…í¸ãËó¶€¶þ m-š:R¡?á¯{­Ã~¼¥æÎŸèSÛQØÚFÈsJ‘|§V*ðIír¹ñ2°¶€¶ñqöFÜý¶®TàŽ+wÛ¯ oÑ‘ Ýq—oÚ]®ör4°´{…;Mz·ëwÊ…·êxé ¯£»O[Ñæß¨“ Üo·}\øÔu+ÜÍ‘ zûko)fû oÝ~’»®í¬pX(X½?¦®EÁ<z} Ùzm ÑJý-lm+äøþ;v§Ý(—³¼,˜¬~eêöƒ[ä„  mÜ#|Ê ¶ïˉ^L6B=¿^‘‰Õ”S¡?áïŰlooÉð\¿Ûÿ‚nÞÐ6BÞ¤c%¼côµÑ[í¶i‚ ˆƒáùŒ¿þ°õÛ¥ûl(’ûI…]XÂ+^L¶B½Ük*WÊ,‰Ç‹-ö¼,˜lzõÎ:ñÞ”CwŒÞ“6zk»¶€¶òSC9sÒ+ô^gü~4åêµ¶€¶ZŘžÇpèTèŽ[eÖn-×ÓÂÐÖoñ¡w¯eãm)‡î¸ôE»t­)¥…- m„|4çâë[ù~æ¿úooI¸¾•ÇeÁd#ΧWªûßë­ƒ-lm+âÞÛ— Üqånûuác~ù7xj6øùÇÎû6Á…Ä?¶ ¯K_&úÐ6nsoù6Ül’éÎøõn“&¸¸ò©wÖçü­I©°õ ùzKU [@Û¸·Øïï9l×½þ`]PÝû²Ú ÏëÛËLïÇn‡¯cbÆ·7üüYXußÓWO;Dô‡¦kÝ·ÿpoÛ£»i+¶ãù7›µ°´héi*lcç¶ÚÚz‘qZgüñ7îw ³‹6&¶gžˆ÷&¶ÑÕ«asdeÔ­û%ãÛvÆÏŸâÐÑxó[¸1Çyõ¡ë4]_pmÕ‡4Œ ‰ë·âLçµR!wZFõj&vr­oƒ,v.+ú8þu;×ýÈ7G¶w4ÿ#Ô¸- m„|pvóûeSa×o|ØÚVÀºC"¶cñïìh` hŸYl¬ï>ð M—O аP°ä‰îLï´kéÆZâBⵃÍ"âžeÔ -£ÔÝH[@[_ûñQûðãBâÆ]¸| Ý\5,ãækã/WÃZàBâzóܼzO ÚEoϸcõãÇZââÆþ »þÒ;íXýÄ›yZ8Ú vƒòc*tó®×+§MtAu=ðK_i8ºQ;Ͷž@¹Q;m` h½5wkk*lÇ#oÉm` hŸz÷Ð/WgÝõxÆËÕMtAu#ðî6›x‡]¶­õF]]PÝ»w@•︯)ó´p´ìÉ9rÅ+ÊÙ6êaû§¡- m|/ù¸r,]¸0›uψx¡0ÛDT׿v¯OŒµ¥T¸Ï´ÖÖÂ`W ×ðÞ|vI¥ô¹øz{W[@ÛŠøJ÷§ÂvMòný§©.¨n…}Û‚R;n˜x¿Þ:T¶)7J§Ù®¯R.”NØÚÆRýòɱ’ˆ—N³íX¥ÄK§ lm#àcu w1¥7Ͱ}ºð­ ¦îô[ðrÕ—§…£­{¤:|‡;ºRWï‘€ýºðÓ[£°Úo*t×ò;^¶n¢ ªë]Àë2Ñs²€¶q«îd¹ZgÆ;ý1º\éäiáh½Ê¹®ÎÔÕ•*gÆ • Uθ€¸q‹?zº`˜ Û±T‰×9ØÚVÀù†˜TàŽéÓm¿.<ʇìYIî¸p·ýwáÞ»P[~œZþûŸÂµå&º º~«?øm*ìç<4£•e\LÖ—X™&÷Våeß±{dôPâåðl;Æñx9¼- m|ñ÷“ÄËáYw(ñrx]PÝ<^áLïtu\‰WeiX(Ø W_–éÊy3À¶îo:H…n=ö7&šè‚êVàñZx*líF¿QÁÇeÁd=ÔÛàî8ºP½Ïºg¿P½o¢ ª[ÇK@©°kƒù…Â. &ëÐ6à{pmë©¶ÖÜ(ˆgÝ5ˆÇ âMtAu+ðç/sn§Ï©Xƒy¼È‰Ë‚ÉF¨ñš[*èóMr“~]õô|쟇 —~§Âþe¿G{É#Ê›ü4w¾¼êŸf²`²1zÏkMª({Ÿ6îkw,Þ;¶9ú•¯w5ÑÕ°¯þžËxIy;o«­ ã%å&º ºx¾à– ¼º8¼P(äiÁhcP\}à+§•Û¸Mø*a*ìê*%^ÛÄeÁd5ÔsW­\nêM’ ý I鱤^Þì]Ýÿ‚vÞÐ6Bþ¨¯Œ®/I³îº_âKÒ&º ºxGóúl<¥Ÿ×…nÁšè‚êzà§þµ†1êÐñ3_‡ülƒšú§-]µk@æ9tÇÀ¸j£:6°Ëˆß± J ©ÐŸð÷œè/ýñf?Õý/¨sh[@ÛùèÝ]ÙæfÝ5Å·¹MtAu#ðŽÒÈõ´Ît*/Ôæ¡xZ§‰.¨nþ”?¶¦ŒðQÁC®ÏFá háèj¬]Š6‡ª+ô¬;æ¢M›‹Ôõy»ŒøÛ ùâj´¦}þÜeõF¹~à®-mÄúÑ Dœ ½>ï÷6ïëKDÞÐÖC>wÞí•,nÖ÷ôñý4Èõ,n]PÝü`Ž+×Ï8ruŠrl@ GWcíš6{mÚTåÇG«ÓOßkÓº$o`—¿c!]³fø`†ëÓOø / &qÞ_‡&ƒ^ô¼Âý,© Ï»d®§.$nüš³Ü…«MYwÌhWªMMtAu#ð§b¶5ùŒÚS¤žÐ:èúÄæ·ÚÂÙF¸¾éaÖDu›åúXë¦ÚÑÂÑz¬—®‡S'z†·™© §ùïùxÜ»¼:yÃ3ûüj¥.$®~é5¢š®ÿž½¿¤/gÝ5„Ç ÀMtAuõÐê?~ÄU!qcx}ù±ø³,×G—ø3žŽ6b=O¾)Ù½ý>Ñö>âÆŽ-ÓžûoÒî?5#Ñ7†r¿>kúÇòíõƒ.ÞÄÞ•BdÖ]ãa¼ÙDT7Æò½E‹ýY…Ôõfí|Ù„À~âe÷v]ìÆ¢?Óž ,jÈÕ´‰.¤®1}U¯]­[¯ pqãFÏŸ“%w©Àç¿Ä¸ui` h[ßð%n*pÇ•Ç7Eëžñ#[‘Ra÷z6ñz U[@Û¸Säoˈyodž[àeÌoáFÐg*'¾Ë´çɨӄ~›·Ð…ÔÙÙ¯oêµkßû§ï­¥Ø; S!¿†[è5ŒóººSþ€©OÐ6á;ÑTàŽ .¾…öÛñÜ`ëtî%¢§• Ýqévçû»ÍÀÃpé]ô«¾|‚—“{¤§û²ŠH××@ÚÉxZ8ÚöäÎhùwÊ©Ðä…Mþ½ÿ÷6¬'š3=%G7ÉìÎ`ù³©Ð—îÇÿ.}ëÜYÿZ3ºãÒ/,“·nÄg3qý~Ù:wâÀ¿&L…î¸ô +ð­Ÿ|vþ“À©°õüÆ æ¶€¶>$nû"Ä»|/‘ÙšTØÆ{@¯g™ØÚÕ€£¹š2â{‰iüöÖ•Y¦xó[¸ôÓK°ŽýTèOøûOšËzCw¶wuÿ ú}ÎÛÚVÈWçä>¼œ Û1–Ç]7°´€Ÿ¾kÜŸ'.¿æ:Û¿lN7Ê–o”þ,?Í×ZLV§ûŽ`Ž—[½EþÙøþ>v}ÒŒ§%ZØÚVÀô¦§BwŒßƒ6~!Çmm#äûGÉ¿©°ãwø r [@ÛøôZ¹a/âI…þ„¿ß+s¾WƳÕç_ЇqÞÐ6B¾ŒpJ<twºU°L~\Hܘòoª)^í%pãf9½»kPO…îË'm,ׇDÞжBîÌ¿ùOϦ®åñS¿-lm=à}׻砇6i¹ýCwŒå³6–k­Œ-lm#äýLçjSa_®»œcna hë3Pß{ÓÀñ7n•Á›}»p$àÐ#ù¢äê€ØÀÐ6B¾¿|ÍÕ¦?}'ããçÌú°–ú¶ë³¾Hl¢ ªqçË©°Ÿ Ü‘,¦ð²`²êesN@áóa;òp‚¹…- ­|à³p©°k÷É…Ü!. &¡ç½ObeÛqÄ“X lm#àŽï^ΩdÜ<y9§Ò·‚îÜB\Ø&«s)~a›ÜÀÐÖþlóc÷>©°»¿u¶cÃeÁd#Ôü,Ÿ »zÙñµ . &«§Y–qÛ—ôƒ>H y÷:ìëÌ¡Ëüò_÷¿¾ÿïßܬޝMtAuã.tƒŸ6=lsÊ ë?MuAu=ì¿ J…]}â‹7\L¶B=ÒýQ©°v‰Ë}]-lm#àîÓîS[©°]¥[ÿiª ªa/NF@G*³Ûé·ÊÕ3•ÿ䦅£@¿h$–ÞágÞñëÇó®§ïpY0ÙˆóêÜ‹\ØüßoÌ7¶~¸,˜l…z¥{¹Ra;æšxZ[@Ûøv®09™Tà{­{ø~0ér6©.$®}v ƒ?l×ä>ßFT7ÂÞž óBM ËÕÙçBQ€§…£X{÷:î~¨ôN;†ÃxO GÁv»‹¿äaùò:w€ÿiË Ê‘xïsw×E*lÇ-ïi` hë_ºÁý{Æ…Y7WCaý§©.¨n¾w1‹úªiñ¥^ÑŒë?Mu!u#êC¥õFÎ0ÛF“Äõœa[@Û ø«ÚU¤ºßg‹LÛ™ÞÕçP§QžŽ6Âý™“´Yw ‰ñ$m]P=x*OûåÊoÒ¯«vŸ>‰¿çÀ]÷büMÀxAyã~YΉ(ž˜Ë¶c@'æØÚzýòøXÎQ5‰û´qŸìåjò b*lã¼~À²- ­|íý Ðx6q}k¤µg¡x6±‰.¨nÞ›ty¨£¹º6ϸëWõó?myAy+ò§ú5Ú˜åçYÈ‘m äiáh#ÖcO§DSa;æÏx&·- m|Z¨û”e*lÇD?ÚÀÐ6>ðÎ9´qÝ—÷û<-m{ùhâ!k«ã‹Nqþ§-/(oÄž?”›Þm×ÏêךêBêVÔ{×b%Þ[Ÿåú´o®çiáh#Öo¶<^˶cÒWãØÚVÀ÷Ôðøww S¡Oúˆuãìv \H\úã¼ÿÁ*Z©à]ÓÐ…r\^PÞˆý0¹†óøi‰,ׯøq ž޶b]9`x£ø™íçï8 ¥O\L¶B½¹Ÿšx[EÖ÷¢j÷}žë?MuAu#ðŽÓÜ¡¦õpœŠŽó?myAy+ö®<â…®þ,WGÅ mý<-]5Y‡+£]ãÕC\.c}]6BýYÞ{*²îã=MtAu+ðSxª§âqÚÙ>ß»À~ãiáh#Ø[å7 ÍÙ6«ë…æ¶€¶ðí´úäj†©à]£Ö…Šg^PÞˆ=_ÍJ…]‰â58\L¶B½w¯«vô+©í'¼úa  ¶¢ìÏÒÄ»V²îšçã]+MtAu#ðû)úg–9}¢k-‚×+×ÙvÌlñÊu[@Ûø-«gÊ.W®3m\÷åÊ5O GÁ>' °"d*x×€x¡‚Ú†”7bÿð&‚ãu½lW—ñª. &¡Þü)· ™wÍn4Úð‚òVì7×Üü‹~Ÿ›Ëô ×nX]wL-¤òsøûßq•”´p´ú3®Ýäß ÆË³ïº ãåÙF¼ ¼{8_›ÞáúýÎ1ó²`²g>‹• [ý/çÞxY0Ù µm¯¼ëŒWñ‚òzìó'ªãI8ëvÈõ‡3œvk@ G[±žÑ,V*àóΠʼ5 …£PO•7>_ÏÔvu$ çixY0ÙõìßOÅ«&ïÿâU“F¼ ¼{:Ó” Z½c®fÇpX(Øó’Ðè·xüµã©ÐÏINî•émtAu#ðߦ>œ;äú<Ί5 …£õX?ßö‚'PSÁ»FÂxú·/(oÄ~ÜþúÒº¯øõCÞÏècxay#ô:Ü|èOø{ÃT¶Çîlïêþ´®à¶€¶òŹÇê¹ÚL÷ãߌ¡}ÜrìÏøùã–zÀàBâêgY"ú éZKãš?L…âBâÆ­¸ÙéÔë9¾,ë7ùõ$O Gë±~&tçk*tLj5j#–zƒ7°´ïßÔSï/z\àÄP*h£Ëør:‹§…£ßq¶»¯'³²\àãÙ,ž޶b½˜±¾œQÉðó¢¿}úrF…†…‚ /|ƒazÇ#ꤨZgdZ8Ú·3mà®—¼äÇLJŸÁÔXÖÏùM05ÖDT×Ò©ÝP¼éà·ã¬ÝŽjS\@܈úàܺºs{/zª¿¥åF(ófzïF¨ /,oü®‹BºÐÑ”yÇ=¹¨7¼ºl ˆëQŸ»O¨¤ÔÑ÷F&¨- mD¼ŸñTM*pÇ•»í×…îçóB‹P~A^ý&_Õ'HÝ5°…³[eœà,S*hë.Ìøø8ã;»ÿ µ¢ß׳´}Ót5a3S(•°Éôóéßúº/'lxZ8Z}·ù:OþK ‰—¾Ðƒ¸p´1\­þýÐ…6¤ÌׇÚß*ø>d5ÀĨ×®g&3í¸Ë§^»ËÕÒ¸¸1IøõAÓÕÞ•y«®ø¸q+nçùíëør#•õN½ôy¨¶€¶ò·OIaM7©à#—ZÓ†ZàâFÔÇá¯YˆyÏ~*èñiý=|šÞð}þ uÓÜ×ÇÜ€>kºZ]^&ÜÐ6nÄ•î?Jïô¹ª€µMñ´p´ìWo‘éáÌq£ÓÃmxay#øùx~uÈu¿-ü^o¹ÂÝ[’ ÛqCÆ{bØÚúo¹žzm™W¿è™~Ñ\*è߬Òÿû¿ùë žíi)ìùioúÃÙÀÐ6~Jo>!^=X?º›ÀòA \HÜyþJ"™]Mnü ×Ó lm+âÝs’ Û1ÐÆ[eØÚFÀ÷O ¹ÛTàŽ[%žá_7߯Ðÿâä?úÑOΡ6^6̶kÄŠ7§7ÑÕõ[ñ1V›ßÃiÊTàõ[ñB~Õm_(¶qoIÕßš” Ü1l]hªj ˆ[1ßð¤s*pÇ]î¶_>ÓyÛôNïu•¯›ýùæ¶€¶q£œÎêqY„TðOùû³$ËÞðÌîÃ: ‰a_{çÃß…}ïÀèÐL_[@Û økÌ"úSoú@›ééq¦Ÿèî«m<-­göýö¦Øjã×ã4Bë+mãöÛq´¡4¸c0¹Ð Û/c~×»n{U¼…£õ[e&gLâÙël;†Øxöº- ­ß'ùåéärV@Û¸SFoËß› Üq^hàm ˆ1ßß΃®ôS÷ý߸ò~á=wgzG÷? ®•yZ8Ú wýê×+Y7 À×KMtAu#ðç3Ï¿½šÔËã ržŽ6‚½93dfÕTàõŸòJ›m \@\ù£>‰ Ýõt†ðmtAu+ð3žµInÜ2×óMMp!q#èî¸Ä|Øæ“t¹ÈÜFT·Âîíº‰—>Ü1%ÅKMpq#æ“3ÕèBNâýÓMpq#æ¹M“Û]¤‚”;åú–ˆ—“Hó øTØÝ__U6àeÁd#ÔÞ„p¼gå°]óŽ[ÿiª ª[a_œsfh` há~|¼Õ‰K°§ÏËY“Ñ…ô*O FÑÞF÷¯# o;.{Š×šè‚êzàG>s–Þíêír!߇ËBÉV¤>1œ Ýs›\Hj7ÑÕÀ?úÓ¼üíW½úþÙ?ºû«è\x¶ç¡°·§½îöÿ}‹9o hïñþ¿oñn¦Ó7†™çF8Ú¸I÷üBûí+GûëÚÁv]PÝüZ.ß°¼Þç§«°´O GëÁž{="žfʺëN‰§™šè‚êFàg÷û Ý¯àN>©ãâõw‡·°´ˆïçÑ·{§w\¹Û~]øêNx^È“½}­Å¾Ï/äÉšè‚êÆóàûRŸKµ\§F \HÜ úsuA¾9ö¬¯£ôO;Z8Z_œ/û'ÉqK@[¿M–Á½<¿å{ûœJe`‰gùšè‚êFàç=‰©ÐŸð÷S˜Ùž§³}þ¬¯ºri` h!wosÃéÃLwÆX~=ƒØ7Bþv^ÙÏ¥ÂÞÐí.i` h[÷u#vZJRvù9}NýÓŽŽÖc½v›{w¬eÝ1ÎÚP¨ö«5°´÷«s×%2í£oÎl‚ ‰!|ÍYñ£©Y®?›ñ³©<-mÄú1¸b?µ—åúUÇÏíñ´p´ëGç´Ý“Ή^ñ´A*ðsÕKx´À…Äßs8õ«°¥ßLïŸ!ÙÚo[@Ûˆ÷¸¸ÆªY­¢êñߣé·ÚÂÙF¸÷18£½èÓK\¨ýe*p3ÁtygÜ7~Ïü…-´+º9]ï!k¢ ªë=dÇæ·.œ¾Ètý½pü¢-œ­ßç[ßëÃ}zM µ©JîzúÃÛÁ¸¸ñ{N¾-Ê…c™®ß*v4°…³pïß»&—+/{s­à®tÓgºzÙWÚéØÂÙêO¹uî:^¸Så°­¡ðz¯J]PÝ{™-m*ðN퓾¼o@ G[áv¦Çüë”—=¹–nÚºþàÇû[ØÂÙÆO¹ôtSC*l×CïÖšê‚êFØWçŠÙ¿TyÙoßQ`6Ì©Àsaó{ÏÑÕ­~\H\ÿAûîãí‡ÜVÿÐÍùíòV¿.¨®nõÿm=GºS%öùG¥:lZØÚÆÞ¿šš°©ÐÇý³ºß~ÎlÏËÙÞÕüôã¶€¶òÁ·A ì†^öìÏ€F,îs£ –&¸¸ñƒîÇ‚ÈÞŒTØŽ‡?ÜSÒÂжþpZá³;‡îxøWíáW7 lm#ä«o“ØýÙÃis‹%+R¡[CâDK]P]}oÁö|ÍÉ¿kU~8Ó}òòcºþ»]ºÿõëïÿUó!mxayý–öÏzyF™øé£Cw<­›ö´–öOC[@Û ùꞧÛ݌?ÝïWžé¥;Ó§oš«[]žŽ6Â=¾RQ_·r—mž¡^=rÔ7B~zQ!“#Nýì´ÝØÌ6O Gû‚%Ëx»&çxB´‰^Fýžn~ugâgÔ½>-½6i'ÔZØÚFÈýùÐðÆ·SРLAê®—“õPýÀgXS¡?­¯OÎÜp[@[Ï ÕÏ]Ï ÕÏú\Ï 7°´{|ÿºùÊÉTØÆ‘ «oÊl@ G·÷<Àû‡TÐÆ“sy×ÃÓÂÑÆ­½|œõÀÒµÙv<“ñtm[@[øÔ-ð,Ÿ ÚqŸ„—&<-m{<§PsЩ´{}÷šñe,ññ‰÷ú³.$nÄ|:/¡$p*ôü‹BoÌúiª ª[¯Ÿ£½œÂš>_?Ç¥°ZàBâFÐ×׻ʠóo©°ÇçùëírèËtÖw6ÿ uÁÒDT7Â^ÿœßdÖtú$^íA'³šè‚êzàg~— ûµËÂvž¸,˜l„zïEשÀõ ÜÅK[@Ûˆø\k.»¼óÌ´ñÜ\Þyò´p´ìåáIâ;ÏlWŸÊø¾—“PW¿ó|9}5;>•|9ÕדXËç;4¨mþòù j›ÏÓÂÑúý½,¯“€P&?ös;|﫹^‚h ‰7ø:ÕVà×w›ßW>ë÷ÞåÝf \H\¿ÑϯÊBÖ±©ŸSDÿm{}ñÍÓÂÑF¬çÚNçòb0ÓêÏxy)HÃBÁF˜÷ÓhäÉ…TØÆ$|ýÄE[@Û¸o‰/ºWç³_tã²`²gÇè./»WÇ7Ü./»[àBâúªäU•f:óÒ¼)ÍÁ.ó™Ýö"Òj¼¨f…aõ{úÑtf'¶õ¼ÜÈI5ÑÕ­°ÓÛ²TÐÕ‰=¼•¤a¡`#ÌîóH©°SzüU[@Û¸û–ûhF*lÇ…Ç”4°´õ€oƒs±íoèM…]¿ð È lm#àóè[`º÷¾'zqƒáÝi†_«(jwJÃBÁÆï·Ô*B×w§Ù6fõë»Ó¶€¶ðý•Ùð1ÉTð½µP‹ó?myay#øÛënÇÚŸR¡?ᯓÏa/Ë›ýT÷¿ æØÚßCþèþûÖÅ7A¸s'zCWà©€«ÃmhÏÐ 6~¿¾ZE¼¸'>éV²ä➸™.¨n¾Ö6|m³v²3\l³ÖÈÐ6îøÔÞ¥|æ ßËfïe³KùÌV¸ø÷|æSŸV÷Œës<鎙mÕf¶¯9ûF¶€¶qŸ/›s`‰%%N¶ã%%ÙÚzÀûÁ¹Ç &%NvýƒI‰F¶€¶ð•ïüN…®¿võjÓz+\H܈:¿%O…­.õ¯%šÈ‚Éz¨‡î#‡J%N¼yäýb¡/,oŸ_à¦Â®Þ3ñe9. &¡«G›nl>‡ÏÃ“àæ³‰.¨n~?…€öm¦ú¿vÖ¢~ŸéåñF?ÑýèAÇiáh#ܵò÷õùéë ÖÃ_ŽÓ°P°æ‘_Ц®]ö…e8. &WCuþ”q”_ðZ§R ¸ŒòeØò2³k×TÈzÖþú‚›§…£õXOŸ«>rÉ=QßOxÜXp·À…Ä­°Û‡Æ®/µ³\¿YâkmžŽ6b½씞 ¹~ÕñeO G[±öìºHsË ~M¼Ú‹íÅ€êÈÍÓÂÑßß{²×N±õý±Â´p´~óͧs"+ÊTÈÕGæÂ2˜§…£«±Æ–•e¨;µªp})ÌÓe¨oÐF¨ÇÁ5¦†ûA2ìx{åYT§/žŽÖÇT¿=(¶þœO°,˜lÜzû›¯Èö¬TØzùðb[Y#[@Û ø+ÿIqNþt¿w‘gzÏô®>ÿ€>´â´p´î^•LïöyF ªMtAu#ìû»®È“TØŽÇ3ÞÓÀÐÖ¾t=œœzѳ39åN üÑkçL ¸÷À/zXà¥`*èsqZÀò´p´~÷­S¥QèÆ*"ÛzíãÆ*¢- m|ñ=îþ=å‹~U±¨”kz·÷$+,n ‰?ç£ÅdŸ Þl¾±Rià ËÁß*ýê7Ö*Ùv ñµJ[@[øcÿ²,Øë zÔ’V×4pY0ÙˆôùWP}*ð§û}Û–éu:Ó»úüz°qZ8ZO.=Ö}9ûô®¯)ëy‘5e}ø]fý>=“~Z¢ /,¯Ÿ˜ØÞš…ˆµm*èÜT¶’+ržŽÖŸü_Ù¦ÂÞW+èz—“Póóp*ìêeÇW¸,˜¬°ûžgÖ¶&]œž¿a·Mó¿§d†ÿ÷Ñi+Ì ÁªÃh߾ʂµç¦BÂßéãº×³½«û_ІÒ¶€¶ú„÷{n lHïò«ÆŠõ<ð²`²è¹ÁN2ü¾¿¾‡îÆ>¸/,oÿ÷„¤‚®ß3núuÕËè¼jo:´ãª£Õóí ˆp´q‹¬Î‘Ð]ãNí¸ìha¾ïOï"f~Gáh=Øýž°ç2©;½6r9OÒÂÐþ÷뽿d´}ã¾lÜ#ÛÐ`ÊIÿ”¿'K2¾>ÎøÛG´ô€7À…Ä­°?øZC*ô_ø{~4Ûëv¶w4ÿýñämm=äƒwZ‹/‡Óyg­úryÞ7B¾¾ªºLê+´¾8èGWÐã“Ö¯6 …£õ`îY"¼úOߦ¨Ü%áNò&¸¸r~©’ ÛHv__b5°´€O§j2%}ÈûÇ>ÑœtZ8Úˆõþ!tu• \/™ßY¶À…Ä ÓÍô.»Âp2¢- m„ûü!²îrÈõ'3\xi@ G뱞zºÿ;´ñL^íZo@ GÁ.OÞsy¶ipoâ™¶¸¸ò=ÿˆîÓR›uË;̸¸ôýÎ\í5ò¨=AQø§, ¬×‹¿\ä¶–÷Üñ­e \H\¿±çj¯Óõ­å|jzž·– lm#àKm6¾±Ýɸñú¥Û¸¸ô½cÝ9¤w= á-O \H\ú²×ÒÁ%m*hãn¹¼çiáèz°ÁrImµ¾{£ÊÃÓe´oÐF´G÷<¾ñÉ¸ë© o|ZàBâFÐ7÷hßød<—¾@¸¼ñi ‰ëA_sCwÀ!´1?\=–Ñ€Ž6‚=쯬bÏM¤‚ïQëÆ©F¼°¼¾ý\gÿàÞ~fÜóÆ·Ÿ-p!qãŽ_jK¢»¡ŒwJÖýÎ^ˆ§…£pïïÛ#ÛSaëã†ü¶€¶ðGWy#R¸Ç#´žz¿Þ™ÂÓÂÑV°ý™²ð.?ã®q0¼Ëo ‰AÇ÷Ë© Ÿ#áLîñiX(ØóÛLf ‘ |ÔE~¦o÷ÇéÅ~êÖ‡§…£pOEK;Uîɰ‘9ˆÒ?íh¡h}Õý˜ý)Èp&%㮑/œIi ‰w·ïtvÛñPÊC©nspY0YõÖ×>x9’ic潜?áiáh#ØœLNïr§þŠwrà lm#Ü㈯ZS;ÊQy(ÕÕ6O Gážx)• Ú¥./yZ8Ú öGû-™ŠÍ¼ù­“©Ø6¼°¼¾(ÜNçy tO*l}þ¹‘¦j` hwûý»Œ¯Â3î·&å1U×à<-m„ûT²ƒš—RaŸÞY÷ñhfü1—øöÄ­ua\H\ùð÷Þlû Ú1E÷< háh#Øû‡ÀTD*h#ap5Ò€ŠVçÊò çêSA¿âõC\Hܺ»7xÿ ÚñPFw= háh=Ø}ïÝõx§øTÐŽËŽ.LÐÂÑF°8í“Þåî¯ eªhW ·b4Û“¾þ|ߪû׳T-lm#àse3y9mrÐÆór5mÒ€Ž6‚½L¥ ¦M¾Ówד&Mp!q}ØŸ–;hU–÷ƒº_ÚÊoôP5 …£[œOò¤ÂÖ¦ë©)^LÖC=t«sèïÙ3íÃ{vžŽ6‚½¼žäí!… n;øþd®Ì)ÑŸ–¸¸t6‹” x?ÎõíF¹œ÷ÂeÁd#ÎóGv€JÅŒ§ŠÓ·Ÿðr"††…‚0¯‹%ߨŸfy¿7¾ N×7¨<-­ÇzÂ7{© «7HxƒJÃBÁF˜_4q`#½»û[üÓ  6bLoyÓ»\½-›tØÈ5Bü€Ç¸ô.÷ýß5kŸZz¼ÙçO-©‰Ú¶€¶îí£°ÄåC¦Ó òKǹ|H \H\úÜ{yáíb¦«fx³HÃBÁV˜_s-U­J>î Št¡­‰.¨®'Zæý#¸`â,ôSý¶÷?FÂÇ ~šO>Ã_oo6nîÙ7‡·‰~^îFniX(Ø2ßË›Þmõøìä´p´íý­©è**¸Ñz}õ×ÀÐÖ#¾t›k oÌ3\}$Ãs 6‚¼Ø©ÓË{Æ W/9¼i¤a¡`=Èkï›à ê W/9¼ ¦a¡`#È9ï–ÿR¡Ÿ‹h`鲉.¨®¯¨×½<­NS«…ËËëiÖïíGú~Ók÷²'>U‘ üé~/‡ôv¦wu3 <-mü”ÓB/ÇRawÖƒ~}!ÙDT×þ½íH…m^úõýR]PÝûôñ¶UpRκ٭~}Rn¢ ªë“ò¶ØM›—'å «éáË“2 «÷öX?${c,ë'NoŒåmtAu#ðëë¸"Õ©”J|ÕÓjYߺRïw]¯ µÑÕ«qÇr¤eÌõ·¬ôöFŸ^^Qö®—é2Ú7h#Ô×r+±¤B¦¿û¤x~²½ oöÍA¿Ãy[@[y?Ž®»Û›¼{Á§æl— Ýk//>Ûè‚êÆ/êxÍÑåÅç¡ï?+»ôla h«Ëα‡q©€»ïOþÕE'Ì Á÷ó×;õf¾OðN¥¤‚V÷!×@ háhýW|~(L­¿àý#ß\Ïb*ä_4÷o~,u²½½ÙOuÿêN¤- müŽûK÷¤÷çHwýÔÁ!÷¾²Ìööf?ÕüÔpó¶€öG¸¯eVðAÊFÛÚÆ=X=»x'q>øüäš‚h¢ ªëß¾{­‹S¡ï Ž N(·ÑÕÀ?*¯ªº¾TÉ´ñbˆËKžŽÖƒ=>etuœ vOn|¹¼˜‡]A\=ºs~;š L…n¼n¤1[àBâFÔé'1½Ë¯yž<`W WñÒÓÉ‹ôN?óʤ~=éÒÀÐÖ“.;¦¸‹pë½ ×óò¸,˜lÜØžÛN…=jÃÒ”5©æqY YÏE»á‡rÉj&zËgP0Y Y½ã¦·¯ÓÂ]p¯ïzÛÎôù Ú}×€Ž6Â]±o, ÞLl__A4â…åà¯Õ5ÊåUÄ{>¥êÆOW¾ÒeÖTس¾²ºZn@ GÜ'¯ËÞªo,½¼fCpýï¬}RoG¼¾jk‚ ‰ëAò×Á;®*Ÿ ÛØ÷\m&h@ GÑgºÜŸ ÛqÝÑ.…)—´AZ8Úˆv}¸º³`ÉüžÀZé†ýF¼°¼ü±ð¢F*ð}™ûåÅ™»î~¢ûPÃÎÓÂÑF¸{<'™ Ûè|¸œKma h[ ·DÆ=°^TËôØõgút&Z5yZ8ZMzìA±Ëéçõ+~¾4›ÛV_==Ú߯ 'g›àBâúå9“ ¿§p´ñÄO+¾ÊO¾OÇoEÇû“¸¸ôi×¹m*dµ…ZÁÂÀFŒg|$Iïvõœc§Q@\L¶B=³YöTÈ՛à ¿.Ù½C '2ÝYIÍË)‚¸¸>A²¿¤¬~Kϵ¼ÜØy̵ï¥ÜØy4°´€µv‚Ë9¤¹þN–ëY¤¸¸ò½@N6© õÇçú ÉÓÂÑz°—džÜ©ÀÍ ßå)§.$®}åGÃTØÖ»z} ÇeÁd#ÔcWSA›ÎåŠh \HÜyýE×'͵þ.‰ë“f \HÜúºÂÓO*èê—".Lš<-­Û~ÿx4åÞX㱉Â?­`a`#ÀýBwm¥Â6¶Paû§¡- m|ï{‹© õÔõ O GÁžG4ç Øñ@F;VÐBÑV '¸ö‘ Úqxé¿Po0,¬zëë½j—w‘Ï5ï)ó˻ȸ¸ô±¾u¿¼¹É¸ù‹^ÞÜ´À…Ä /þÄ@xs“q×ýÞÜ´À…Ä ãÛ„TÐÝßAmmhX(Øóc…»±RAOZ¾ëz . &«‘ž»ŽÞ’¥‚6¨«ÛÈ´P´ê}î°¬e*äý Þ·=êåTkZ8ÚŠu% u}Û~ØFÎÄ»9Mí¸ìè–º-­ï÷ž[¥Áî^+Éq*{û¼¤ÉÅÞnþoø_?þíÇþï[PZè‚ê{hþïË}8ÕwÏÞY gÞìO¹±nà ËëƒÀ4«ËT°{ËÄÌ­…aW׈îhç…oÌg™6V&—ç3žŽ6‚½Zï…¸¼õÈlíÖï=`W׈îc†çÝTÐŽ›"¼Zàiáh=Øó)Â,ßSAï¥ï•Ýu4°´xWmßYœ_éñøÖú}kÒDT׿쇰À®¨TÐú€u¹—«-mŸ×SA?¬oG.¯EhX(Øó~Æ ìIí¸;¢}. háh#ØøŸ ºz‡„%4,¬‡ùÑÙ=Ô7ÆéL¯‚¼ºq(´1»\nwâiáhõ£œK~s>÷3 $÷ˆ§³^ö¾'¢²¿©pëÁÐ^30«? - $C‡Þ”K^ô`l¬,¬ÞÍk—³-Á©àÏcØÐ܈–·‚OïDSAkkëË»g 6ÂŒoRAW/:º¥Ãa¡`=Ì}5tuátÐÆ/xuáÔ€Ž6‚Ý7èíI…n|—û’Úè‚ê}I¯Ð Ïõ™\ÒÿØùß7Aý?û?ùÏð¿õ÷½·zdàBâj¿Ö:ô=:/¤~¦FzbŽüi& &ëþ0|Œ²ä‚-óç1‹\°µá…åà/fþú:"Ãõ&¼ÀeÁd=Î{38'§wùù~î¯o,#`W ×ñôÑÖ . ²n>ˆ×MtAu}¢§âsc\>þ°;ëG½œ‘o£ ª÷ûì«°tÎbä<±©óôæªç@£ìOVVÿѦS†kcKÿ”¿ŸuÉøÐ¿á;»ÿ õii ‰[a°YùTÈÕ%ZµY§ÓŠ›¨Ì¾àñãCäz;ó^½±Ún ‰·àìW½u…TÈÕ[0Z qÃÑRÖM؈q~U%V®H…\½âh…eOµuâÇÖc<Ϲgp™õîo? .²ØÚú{žg~™š Ý<p}‰ÝDTW‹ùë¼ ½ ®þh®Îa5¼rϰqFéŸv´P´èGÏßÔ©Ð÷=ÂJïy›è‚êzàÝLá©°÷ýÇ·Åù§.$®Ï>çB"¼uʰãùôÒ?íh¡hãæöÍ áýÁî:.8¼AÀed#ȯž j™ÞíiÏíÐ[߸¸óíô.¢– xßî=Èê. &[qö­ÿ»߭÷®¤Âû_žŠ6}j9b­© « ½°Ôæi¡h#ÔùíMdI*p³dx¹õ¥.$®.ù]_K8\]ô´ãN‰.úÐBÑêýýïonøÆ x?*í= gzG÷? -GÐÂÑF¸—ÚG‚¯.³ÚqD×Ù h¡h=Ôýà$£ë‘ƒv\tt=Ò€Š6B½°méÞçÞ¯ù–ƒÆ3}ú–‰¶i@ G«gmö¤ØêüÕï"i h·Ÿó#÷ñåðAïùDã{²ñåpZ(ÚõöZ÷aÙÛTèOØüD×0¿ÙOuÿ ê‚¡- ­‡<·>£ëøTàf5õê¤ .$®ï@†üí2¬É7²g$\”‘P]§5°´õY-€¯ ®®¨†¡§mmãÁŸ¼ëµð.8ÓŽ "¼ æi¡h#Ô3ÞY˜ÞíóðµD¶°´€ïpûž zø›°œ. &‘Þ¼©£pÆ!ÓŽç1œqài¡h=Ôãä݇„3™v\t8ãÀÓBÑF¨ó–-G¦Bÿ…s™¶x³=<Þì'šÿ‚:ˆ4°´õO}ý(àå}HÆõuÔõ]O Gë;éôI&= ºö±ñáüPžßŠ£¦4hXظ§ç½5·ð˸ñÎÔ+¿¸¸ô‡wïk2]»OÆN¹Õ] [A~°kÕTÈþÌ\_a7°´õpÏ£w¥^egºz‡ôÊ­§®±iXØòæÃëëLW/yPb¡®®iXXòÒáyòTØÆt{=¿ßÀÐ6Þ`&Oþô¾}áäÆ „§…£p¯¯¶f; úù@®ì&†§…£õMÌaS‚2Ôêyy CÃe˜/ÂÆýÌ/™RaŸZØR¯- ­|t+ ¸v‡Ä7/4, l„x? Ïu¿¿äuC×¼©€«¡¯ÒiXXÿñòi0r!– ÛX+]_@6°´€®IÖ½ÅH\½C›"6B¼i[¤VoŒËë¶B¼Ñu‘TØ“öðÝ(çð´p´íÇF¯¾Ra?–ç[¤ÀUc[@[ø6|¼D—Y5f¸ö<ÆW4, l„xá„D*è½[åÛàt#ÒÀÐ6âmÅäòRz{¸nðJvqÕðn]·ÐëÑTØ6×^^Eó²`²êѵ¼ ¯ ¸zoDWÐ8, l„x¡%¶M¬ŒúW×Ï0+«÷xCWoCöfJ…ý*$cG°ÐÂÑF´‡ Îŧ‚^µ®Ø ã~’»®Ë4,l…yöÞÔÞãh©°·‡—>]6»lNláe>Ì Á÷„{œóžoIï´ãŽˆžÊñËÑS•÷e+Òî›ÞS3©°×í¥_—Í®ñÓ»[¹›£;V@U_E¹ Ã?ÂÑúm<Œ®eg|e?ŒŽ…\|]ϲB°Æ=±zÇŸèÁ:€6î‰üöL.e› ºÓk_×SÍMp!q=ä#½ÐOïòù²¹ýI[@Û ÷RÜã[íÌîÙÄÏüxÔýiä âêÑÍŸ\è°W*äýTÚÙ€Ž6bí^„÷€™v=‚Ñw©4Á…Ä­o޵Â÷›±}ÍlåaŒï_aW׈®{aÞÁfÚu[„7±-p!q#ä_7¥7 é7V|-p!q_ÐïïmËpמÊðNvË _sõèÎ=^3N…=L?ÝG~;ëãô¦Ÿ¿¦î›è‚êêkj"ü¬òƒšýe2¬.¨nÜ‘ÞuZ8[8û;Ñwµ°´­p;vxñ¬VfkÃU8­»‚¸Ft— ­–¥~=&T}†…‚ ¯µWáÞH eÜúBÎõ¼P \H\ú2~¤ù¸õòö•iûÒÃ;길ôÇx{¥­)ö.ýûß²¸¸ôß°¦wÝ/á­v \H\úº÷è‘íÙ©´_¯ŒÓÞT?.%¾>ñÏÿ´Ä…Ęþy4¼øÎ¸ëv ¯¾[àBâFÐ×]o¥>ÿšÔ‘§…£õP¿ŸcV[©À÷9è1³ëĸ¸ôÙÿô„׉w]zxØ7‚¾ôd4nõ³Ô£ö¾­U 6- $ë9<7¬½¨é¡ccedýŽÛÞ^¢Î,5S»–ð"¹.$n}"+–©pëwɦÜ›lXHÖs/|oš ÚȾ^ÞQó´p´Þ·½í}‘ÜÏ(¬<Þý]7x¶FÁ‚çË­_ð¨„âûæ¿…,¬<ÞxR.ùû¦ü)û60nY Ù¸ã|ŸJzÇG}ùqµÃ¦- mEÜrÿK*tǵûñ×¥o#Ü]ýwÝÇQÕµWW“C^6MYß²Þÿ·üoû;oüí^i ‰+“د>Žøï)$®ßèýZë¼¼¶ØyÑ{îÛ‡ë..všÐÂÑz°‡îuZÚE¦Â>¯Z©ío+]P]û8;;ÞÌp*dõÙŒÂ?­`a`#Æ‹/_äN8§B®^±þ»ä©[ÙLb*äê%Ç’Ÿ8–Õ¿ ë·ÅÔœwǼ¬[Ù­c^]PÝ üÌf†S!×n7üºd÷BçÂ.'ãæxc£Ó†–7î–™_{§ï­‹¿¼kh ‰Awæ§¼9×ôWÐX–Øí ow]+¾p†8r5±Ôó/ü°§á[Y‡Œ»‘è‘¡f¼°¼~·ÌÞ"­7Gš ¹z·„Óº^Ø; 1ö•½©×TÈÕ+ŽÃû©žaÕ™q<ð}™6f~ÿ{ü¯ÿ7<ôÙ«‰.¨®g½æÅµgÖ oÃúû6’ÁJÓ]WZ–z×ð½ÓrúJ`n÷NMtAu#ðÓG˜ÜŠdÞü]olEÚðÂòFðçWþ•jTNþt¿f»zzëúØÕçP'cžŽ6ÆÄ•]œ÷Çzj{†Ž¥?}øããÞÎúô¡¯»žËgÎk¥ ª+ŸÏûå¯ç’Úh§7¿ç~9EÐ7nö­zpðÎŽ0ó®±üÂŽ° /,¯ÿ|€:½‘ Ü1¦oʘ®6¸ð´p´n_ "\¤Ë°ñEéŸv´P´>寃o{îºwƼ¹ÄØÉ^¿¥çN¹¥¿Ÿ iB Gáö¥cÃ…ÜÓ‹@í:vÚ©…,¬ùÑû·9±Æüî¸;zåîøÞ–ß„޶Âík{—ú3ì¸CÂÅ~žŠ6íÌÝuѲs†ë—OßjÝHRµá…åàoøŽ2½ÛÏ;æû…_Þã²`²ê­¯m£KìTÐÆ#¥ÚÑBÑF¨}uŒp?ÂVë‹Ê?Ídd+Èþüù…”Næ]#ß…”N^XÞþR{?Ññì„w7[u>ŽÒ?íh¡h#ÔÎü¸ùf[kW7ýÓŽŠVÝwƒs¨ onÚqwD77 h¡h+ÔÓ«îŒ;I½êK¨LÏCAÏOzTËN háhµàôÏöí$£ýXìx£Y h¡hã®^F¾ )ºU7¼Þ@ÕFT7¿:·6álÉA×ÇÀp¶¤-m„Ú×°mì;çz2|L—’õ ÷ƒWŽn!ÚqgD÷ h¡h#Ô“wÍŠô¾¾ÍêQú§-m…úuö†I›¥‚~žÞÐ\_Z8Úv~i Ú"• }Ò³¶×»»šàBâúR»ÿü*´[?hÇÝ­7 …¢¼Ú´tŒSÑ ÔA;†Àhª-­‡z½Ëëð2ÓŽû#¼…äi¡h#Ô“7ÎAeÚq„sP<-m„úAo RA;îðn†§…¢­P¿úΰäB*t«ˆ|#1ÒDT×?vÞé·‹&F2]0㉞Š6B={ç„ðž}œ3{|ÏÎÓBÑF¨Þ•NxÏžé§ú­u.Ãóy^?¿“RݱӰ0°äãàܦ ´ãÎoexZ(Úõè]ã„·2™®Þ“rÛ©6‚|úÊv6úþþö¿lÏóÙÞÕý/¨Óa[@Ûùâ]}„÷™v<Œá}#O E¡Þ?¶–¦SAzÆìrA§…£õ,ß´ySäáMz¦«£ß¢ «ê†…;zÛ@îx*èóv:¼Þ€Ž®›Ýä–ñîžS/¼=o`—¿cë!Ÿ½ÝÇñôS¦ÓL8ýÄÓBÑF¨'¯ÜE³ ™®Ž~ë÷aUÏа0°äÙ9\{ÏJ§wÙ1îExó²`²èÍ» 'š2]½7ÊM§¦™hXXò’_0Î8N]¿7Âç¤ÐÂÑF°‡Í¥V/: ÿ´‚…­oxOE*ðÎ(ïÜéià Ëë»Å·÷p!)ÉTÐÕgS†U5JÃÂÀÆý=;w‹îÓô© #Ÿ—þiG GÁÞà€-q© ·¿êÅsù<-m{°óNÇÎågX½è(üÓ 6B<Ö?àt#›Ÿyó½Z7²ùmxay}á÷}I9o%3põÁ ×^iXظ¿÷¥d¶ô¤ÂÞw_s×7z‘ZàBâV̉Ðxý$ÓŽÙ&\?áiáh#Øv¬ç&œ×Ø—u¹‚¸Fx©Þâe*àê.·Ò°0°bº‘ ºSêi׫&4,¬‡yí¦›ãç §93\}ôÂiN¶B\;~#w¿9>oÄ ËÁ‡s¸©€+sM4ç ³B°Æp²—s7eØŸM<|ÿÍ®ŸmÅa¡`=È®¶„pJÿí{uúDMèì¬Únõ,;â©ü W§ðx.—“8O¾lQ8ãœáʰN8³¬¬ÜÍܦw·~;„sÍ4,lÄxÿù^ÙTØz?éõ÷á¶°´€Ã ÅTÀ•g0œeY!X=¸ãé5>÷‹•©`Ÿ»œaæj«°+ˆkDN¾¤¶¶x²ˆe…`à>FÇ­®:e¶v+„ËN°+ˆkEw…³ß© Get#eË‚ÉF¤·É“Ì eÞ|IñœP^X^Ï ½Ò«_~ÕëI‹×Tý}9t9iAÃBÁúý=u®_³µÛ#œ¡‡]A\=ºóäY1‡3o™­]m8õ»‚¸Ft—ü2ÕêOrÝÐñ¶TàÆHtý rMp!q#è›gþ §†2[»E¹!ØÄÕ£»À«ÍôŸ[¨õ1 Aþì='÷™ßEz÷××w~Kîx$ß~• Ü1èÅßÛÕ7îõɱ¾‹§C3[þâùPØÄ5¢Ë/ûSawZÇõÍ . &¡>­Ð¿úFvt9m¾>€7ò£ lm=ÜkçØ¹Ä3H™­=‡áì âÑ]*¯1º³sɸ1(ÝØ¹´À…Äõ ?ÞÒ¢ÄZ5ôó÷ü÷?%××<-m{ÿJU7N…;ÌÓ÷Wì.çTÍù»js. $«ï¾öÃå’Ënž×ÏWé|¼µVT: o­Õ[àBâ?çéÒGöçH6ó}Ħjì©pë¼)¡PZpY ÙxÌðÚ)—¬¶H<ö62NH6î¸õµêE6/©÷ìÄ—Œ;.žŽ6bo^Ò;­¯Ånì¹xZ8Zö¶ç¨Jm*Üú“Ø+ϸZ[Æed}(uÃÃ÷KÔ»nÛ9Y Ù¸ã–Í¹š¹° Íx§t³ÝÙƒò´p´îÕµ% ×Ú³[¿?FåÎÓMËÉÆî…'å’ÕÅöð­¡Ý²@²zÇÝé#kÔ¹ÝTàO÷{:%Óë|¦wõù´±´-m„»ÁÖ3xudŠo™ÐÂÑV¸]{ÏhwÍáÖÇEyеê/ $«ã©V²bƒ–²»Ñ¹CôÊÉÆ7öZ_žïËï.:ä}T¾ Ô‡½>ÎöSÝÿ€–ñha h÷žß¼ÌO¼~Êùôq¸äÀ§=±·€´ÑÕ?š@Ê‹'ÓòÒïØÆ³¿œŠ%Ø;SÁ?åïë’Œ?º7|g÷¿¡¯§àBâFØ®¬H´ßðp«sÄCÉ] Z‰—’Ö k¹ í¸ù?Ù—»pËÉÆ·UÊÄ׳ž‡äßOC[@[x¿÷XÔWU›²ªÒºMÙ1!"ÂÀÆmA7N¥B®^±þ»äÙÛÌém§H…\½äpˆŽvÌÞ„õÛbö6Ÿz»4R!W¯Ø ¿.yõM"î\*äÚ%Çk†N8Ü;|6n‹‡oq×õR!Wcì…ÿ.yÙ÷d},•ö¦…ãßúßžøöÿ´Ä…Äõ$Ò²w[W-õƒ2¿ïæÿùÜF,ÿõÝÿÆÍì„ià Ë륊eð-k܉ÿTÈÕ‡(\«pÂá†ð›°>P-t¥"r5Æ^øuÉ \wKïò ]ñb!. &ÏŸsãNf¸{6~}Áp”þiG E¡·¿È[þH…\}Ã'>ìq¶bì[¨»«*©kWì†ÿ.yuf8Âiâ ;îd/ýÓŽŠV_,ðoÖôíÂÇîÁúͼú’ñìp†1ç‡yZ(Ú¸3Ê·ìSg0îÁúñpæ9”ÁHÏi?çì~ËBZ(ÚôHxÓ;=Lê–óÀ·ñ ßëUûŸP3l-p!qýa|L¾ÅL¸qülÜ#§ÓÒÌb4´ñ±Ü(ýÓŽŠ6B›"¸#±© ûÓ¯Häåiáh+Øl±0°c¸×!yZ(Úôï_8Ù+ž6M®Þ!wò½ÍWe™¹ë¿âÖ¿p| ÆõŒU¦[ïFÒª.$®§®¶Ó¹zfš Ú1‡…7Ï<-mÜÝÎÌt¸]"ÃŽaÕKÿ´£…¢õåï6±E a`ãÎØa8O‘iÇíÎSð´P´jgÖ4Ü”aÇínâi¡hõ!œºÎ·UŒ¿¹ «wÆ?×{ÒÄýv‹TØúÂæòK9ÐÂÑV´¼{"úð|“À—íÀaoÓ›ýDó_ЦĶ€¶ò½,@¾1#¶ãV‰¾`eêNß¹f’ž© ëÓL8UÛ€Š6îg&Ú¹yÀŽß0ú6½´P´19ξ tôßMظ3òÑTòÅ/©À ÜõWÖ4Á…Ä »¾ŽÊ ªå'ïÌ~…[¿•é¾lEúá µûm©ÀÁvÛ¯ _8/ž Úx åÕl~Z8Ú¸KÎ\Y8ŸÐŽ9=šÏo@ E[¡öåÊ¢2ØñFd4 …¢@oÞLK´òzÐ{ŸüðmTÒ?íh¡h}Ñ×ûNI‡ßVpÖï~¯< /öHî˜Ão$ ØÞåp´ïjÎõØúõX\H\-€Mù DŽ¡5Z—9hÇô=È:õ¾Fœðaºv„#úžæ´P´1hOø7Š6’ÉÛ=-ê´czŒuÐBÑÆýQ9úqãHa[îM„߯ØÆ½ýù-)¨„wÐŽ2ZÂk@ E¡v¶ùxÛHS×Ãðè´P´è½ìÃ?MßëʇgñÂòúpè¼ ?Ñæ‹ƒvL;Ñæ‹´P´>ç䯀[>Áhýé&oÚ/\Ë´cì×ÅxZ(Ú µ¯ÁÊÛ±š Ø1v{éŸv´P´èÙ»5í¢EõLׇxQ§…¢­P?ðd*p£Üq£tÚ7‚N7E¥wÙx$oôr5°´pã½TÐÝ_š*BÒ°P°æÍ›« ×Åo(^ãi¡h=Ô£³ËÔÛCž Ø1§{éŸv´P´hoú"\TÏ´cNÕyZ(Úµ·vïÿë‡”ÂøOK\HÜùèM<‡Ëë™~ªßZò2¼Í'øi>y£¸NÃÂÀF«…”uÓŒï¿à ×M[àBâzÚlœ¼yøp rô–¯â5HžŠ6îogSoôÍsì˜Õ£Ÿßi@ Ev×­Â ·™öL3ñžÛ¸¸rïI¿xûE¦ )/ýÓŽŠ6B½yóúᮀLWgöEY2¨ÉU¶‚¼—òÐ×¥B×;n¼ð¨ .$®G}êœ%šx­zò–ãµjžжBí+Ñx.¥vü†^ú§-mº÷ÎŒáF—©÷Î1áFžŠ6Bí-ÇÿTkÇ7>’Û·">6èI®G/mxay}ë>MÞ#᎗LW—U«²^SsÛ4, lÜá³³Vof˜¼Åûx3O E[¡æëÔ©À÷ß‘­¯ó´p´nßÛîÃï?àú#þTlZ(Ú ôÃ;Çû2n%ÍÃøéʽ¹ÐpË\¦«ÀpËO E7ÉŠŸ£K…íZÆOé5Ñ…Ô­¨¿fw¢y$ðóç\Év ÖÛ…§êñòýPnÜ›÷yW潿2ÓÕëCY «%Öƒí©ëöé`Ì©—é¿éýüß°èiç&º ºžtž«ß~¸Ñ]“qÏ(åÆOWî-Ä…;Ýfw³G¸Ó§…¢¡je[OSŸëML³, «…êënôЏ~wäOL;&²póÁâ-¶Ç›xZ(Ú õÃùˆ‡Ûò2]yƧ®ÿþÄèMy4, lypç÷/tdÝõ,Æ_<ºx_Bï¸ÊtýÞ‹w\ñ´P´q›Œç}zG÷JdþyÎt§D \H\_°.㈶ž¦®ÎìáfYÖ×"KõEw˜Ýx*go†?Üž—éê|3(™o6‚ìý.h¼Ù`ñ–¨ãÍ<-m„z墥ºß?°å;d<Ó»º™uMžŽ6Â]ýðÒÂ}Ö]CŸ[?]»7nmË´cnmãi¡hë6YжÇTÀÕ)=ܨIÃÂÀÆ"¤ú‰;m(„®ßkµà{£Cl=¿ˆàñu}ýU7-p!q#è½·hnnËtu5) 4µµ†… W¿K{§å`­V§ï´4ÑÕÀ{_ZoªÉ´cš 7Õð´P´j¶á*puª ·ˆÑ°0°â¹·û–îœÆÍ¸5FÝ9Û†–7B_­²ßè]ʸk†÷â?-q!q+èÞÒl¸í*ÓÕ™^©têMW4, lyß]c5ßTÀêA¦(üÓ ¶Bì-/…{–2í˜ÏÃ=K<-m„zóÕ9¼ýl©€«I¸†…õ?ªuú½Oó±x{B‰¿Y¨.$nÝ[  ·meº:±(…6½i‹†… ïŸHÆJŽ©€«K¸HJÃÂÀFˆ½oÛw=eÚ1©„»žxZ(Úµ³ŒÙ;;ˆRW“ =O4, l„xym:¿Ô–üËuû†sÉ Æžƒú»<í“ Bÿ´£…£­Xû»1ãýeó‘æÊìµM]H݈ûê zeìSwˆ™®ŽPJuMaa`#ÈÏB1•Ñ Wçñpe”†…{ß®ï¾yx¿²ï¾ái¡h+ÔlgV*àê<î%£aa`=Ä[ÞýºÄ ^p½ w£•g;Ÿ­LUñwp4Ñ…ÔtðæÂmH™®>ŽJKoB¢aa`#È“/×®Qf¸:i…k”4, l…x˜VeSôÛåþ„÷•èï?Ÿ]†¿íëÃ4þ×Oú¦(ÛÓ÷+¾Bÿ´£…£«Ñf›3ÊxïcÒöõýÏ7KšèeÔïéFàgOÁß‚” ¸º`7MѰ0°âZ»ü­~‡Ì[Î~‡6¼°¼üÓ]¦)tõÑQ ^zÛ A† Ù©€ŸÎÈÞYVÖîæ+æ„+Á®þjáJ0 «!ž»nïççN«¤‚V½ëglÐÂÑõ`SEîPGáS =IÍx+ÔMØñèMuGûtºöëý&ù¿ÆBÛ â°0°d¶d ¸2DKì0+k×Yóõ¶\¤®>rÑ&6Bì-£UõìV‹xQvqð>¼yÐhƒÈAWG4-Ú ‡…­ Ûß8†Ÿh¹ñ€+£Z´Ø³B°zpûΓdŽW¿¸úÈE«_8, l„¸÷eß¼õýTÀÕß.Ú‘€ÃÂÀFˆ½ßz—˺:ª)·›Z,Çaa`#Èpu'ped‹V£`VÖîìIÅSô\Õ¢)z6B¼ørÞp*àêo-Yã°0°âGõ´Å*ÈÁ禆oÃü*H#^XÞ>œ‘M\ñ¢d˜‚Õƒ;T²x7²Ç™V·Ùcž޶‚ýp Oáìq†«SK8{LÃÂÀFˆ§’¼åÇTÀÕß.Z0Åaa`#Äl.+½»æøv!󆪨V`}9‹pÞ8ÃÕŸ,œ7¦aa`#Ä«+gá.Ô¤®ývñÒ !~ŒŽuJ´›â`Ÿ¯]f¬‚vq­è¾^XO½ý8øüüé6Hÿiª ª«¯nžG8;› ¸2•„³É,+«ßÔcïK…3É®þjáL2 !\I"wu,pu ×óhXØñX_^è¨Èlm" ·TÀ® ®ÝýÝbàÙ€TК¹q¦¡ .$î 9tH½Œù/›O¨|ä —üŽoú“ÍCŸýZèeÔïéêß"ü¤òeâô£²åTÀ•¥A¸òB°ê‹Ÿÿ©ÿÓ ªû¾B@?˜ÞñóœË}Ű .$nì+_m¸x—áês.ÞѰ0°q_ûޏRW’áŠÑõ^ú -÷`#Ä›cåîcÛÕÚB2ÜÇÆ²B°zd'¼Ò• úù« duކ…‚­0³u®TÀ•uF¸.DzB°Fp_]#\“›Þ>7¯ÿjáš !žË ÁêÁ]=ÃO¸6½«µç.\›fY!X+²î¤PüƒF‡îxà6åS?gÔÂÎ6">¸2ñôr†+^8¹Ì²B°FpçOϦߟ•éó¢o%–[àBâFÐÏ–:ÜÙÚˆî€]A\+ºO 1| 4»Ãü÷³}}µÖ4œ'ë_s磚³ÀedýÌî•KVϬ«{~ É(ãõij´)PÿqZ0Z?€°æžìwH6žïÏD'˜l_OoÍùúj¢©ö¶€¶žf_߾§/ÁÂiö W5á$;Ë Áê÷ó£÷duÂ)™­Í®áÖØÄ5¢;8Ê©NÙf·>¼ÊÀ©n‡qY Y_ ¸áI¹duí¹¿ƒƒ…ûmrŸ¹Ë… ÇIÒTè“:óÝ9Û7¢>¯Þ¨ûÏQ¦Bw\û…óµÕ1ú‡»2vµ6˜†»2XVÖ¸)ÖÙ3ô‡™e·>vÌÊ ¤Ï­´,l ý^xQ.Y¿×¼C´WHÖwS[7à…¸þ°lƒ''.Ûf¶öh‡ë¶°+ˆkEו“ Ÿ·ÊnýNV>}4†ed}(rÃå’ÕÚß6:s^Y ÙÆ30LÝ_Îè#!0ez/ÉŒÇ;–»ÿÿôÿz#‘Ñ×SÛêØmNjΙ­Œñª3ì âãÜõÛcÊnõ1;åT«u¸,¬?à–ΰÚJ{ãT ëAöt½†Kξ&ÒpÉf…`­Èž+<_sÕ7¾pðOùûçMóì1öoøÎîCËÍ5Á…İO®Mvô|ÍáÖ‡¹áû:©£. $[A~5i@žTØûÍñµ0z½4ÕWWtKþ\íÆŽžP8ÜúM¢äá'-MÀËÉÆ½9Ò”áúßÁÖ¦˜hvqõèöãø÷€g*RoêxtÐãt¦Ÿèî«71O G«ûâ€=+¶Öï¾ä¢´p´qóM®§Ñc‡[‹”üíd–’ ¯§3HP·b*ðß„™RýÊú4®¥¾íú¬/ šè‚êúâ ÷¼O$Þ ¸õEÉNê—’õ›{¨|;÷NNb¨|GáNZ¢- m|xÝörûúÐ y8Ù[#_õ8ôñ9Û|>3‡=ÛÙÞÑüôó¶€¶òɵˈ6mnõ¡œ:åq×ZgxY Ùr>™Š5B§Bµâiþi [1ÞØŽßTÈÕ+޶„/cçZ¡F[$·~+WS!WÉh“ªŽ¸ 1¦[TS!W¯Ø ¿.yvô¯Å{·>„hyu­e‹—’ûb™Ú²• Ü5pøùŸ¶¼°¼zï2o·c*äê#mÐtÃÞñT؈±÷–·‰2rõнðß%OûÎ|}a*h=Qqù¥‹ háhýþ˜øHíî{ÍèNâ—ËX_—­P»2ÑÛíOZ5Ѹ§aY ÙòàÌ xÛVS!WÇ»h§­Žqº [1vf¼Ý°©«Wì…_—¼½ |™Z*hÇè}\Z8Ú¸?\o° ÷Øn}ÐPž”I4- $A^}9wßj*äÚCnµõÂáÃM7a=Æsž¥¸7«¥‚v<Ñ÷Á5 …£`¿^\ /½ëçבùÇ&º ºxOš)ÞëœÝúЧ<ï“~‡Ó²@²z2p™ßþ>z–ñ&lÜÎéÅÛ{›Þáêìâu_ì~«­ûõv©°ã^øµ|-lálãY&÷€}!ušyרw!uÚ†–·‚¿Sè ¼Tè½ñÓ^?<ØFT×ûÉæ‡/¿ànÝN…\ÃÝæN8|÷&lÜÜžC„šÍgç¼I™„g} §ed=ÈË^ÓóÕ© õœòõ,;O GÁîé'ÿËSa×Èø; [ØÂÙÕxcMYe°EO”.c Òe¨/ÓF Gç6ÁÛ‰Ÿ ¹:†8áð«nÂFŒç •»Î´cÌ ç®yZ8Úö¾pO5¥‚ôN“Ëg±xZ8Ú ¶/wîD]N_y³_²®ÞìMôíê h¡h#Л{à¾Pw\7÷Èw¡ìØDT·ÿQM‹ŽY7?ër½èØDT׋ŽùÛ.ÜiÒTÈÕéÒ ÿáø®îÁúÍýÀ+K© »¿ì U £a¡`#̽3™}¡–íúOx¡ÖÀÎ6â=ÔŽ.Ó°²"Öka™6&â(ýÓŽжBÍ:Lìø ÃçyZ(Ú´÷õ#ÞSÆ©«Óaø`´Ž¿°ìlÄ8‹æÊw© «“K¸äHÃBÁF˜Oo£gªI© ]¸ÆÓBÑF¨ÝjÞìTÀŽßÐKÿ´£…¢­@ゥä;²SëëÇ;o÷n ‰ëAß:gFÕ{T7ruN Ÿ.vÂñ÷Þƒ­Ó•°TÐÕ&\½£a¡`#ÌîòZ¸'ÓÆ w£ §.$n„|Øœ“A¸î˜iÇ„®;ò´P´jg—`øývü†á7ð´P´hç 6÷™îTÈÕ1| Ý wÎâ¥0°c¾V— »:ÁÄ+Œ¸,”lEzþ›©ïs¤ïgåºzZÏôŽîÀˆ5M G[á~¥U˜³M÷%¥wÙµD÷b6°´_òáM€‡ ó™v,Â…yžжBíK€‡_ ”aÇoý²gZ(Úôö± ñYï´uÓ2|[@[-Á¯]7¹föhqø€÷‰ÝZAE«Ã¼,˜¬ÞÚÿhgmÇûjTÈÕ5pôm$nØÛC! lĸwÖvâ5øÃ®='ñ µ~kýMظ1VçkÊ”²ðÇûFR!W¯Ø ¿.ù±àµÕTàúŠæFU¸ .$nÜ'o]'ÚõpÐŽi ÚõЀŠ6BíìKöžJì˜É½ôO;Z(ZtÿÖ¨M4¥‚vÌäÑ–©´P´ê¾w­?¢í\ŸË£ý¼,˜¬¯?zßëŠÂ¯Ù¿ 7ÆóŽc¿›ÞñIOmÆíŸ†¶€¶žì÷o[ãéõ¶˜7Ô]m‹i‚ ‰·ùä­E»5Ú1‹yéÓUûZ£o¨<`Çœ}GeZ(Ú¶gú7Š6îé·Æ~¢i*´c!mõj@ E[¡ÞÄí—þ|é•o§Âž•]ãO47 …£h/¾ ]¸éë+¿p+RZ0Úø|ïm -å&lÜkm¸Þvsà®5H´ï¦ .$n}ó¿¢ !í˜Ä¢_ŠZçáïI½TÀŽuˆ—þiG EëƒÈÐÕ–îÑßP(Z¿§‡·# D_V*hÇ:$ÚMÖ€Š6BÝ»Š_z²\/4)ð´`´ñ(ú^:þœÎMظ7&g]#^î¼åíx¹Ÿ§…¢?BýŠÇœs}›ºFø]<Æ=óùûÏgbkûoúßãwíÞi鸸¸žœß1оêõ€÷¶—þiG EÏúÛ¢)´cò ÷Pñ´P´1ø^aþŠÉMظ7”æSw=\KO GáÞ¼wž6éÓÌN?Õo/ 8îí?Í'o4~Ѱ0°äñôî-¦(Ÿ Ú±J·ð´P´j_ºI¹›Õ·Ðpý7 ¿‡¶-mú­ãœèèIí“Â}H<-m„zòÊáö˜L×F¼¹S†R5EÃÂÀF«å¹ÕøŒï¿à Wã[àBâVЋOUpgÞ{ÜŸÿi‰ ‰ë»Üñôæ3¦.Ÿ Ú1­‡» xZ(Ú¸½½âʰ­¾ã÷€Óº—þiG E®V½Ž2ÜÕ“iÇä}KZ(Úõæ­„›M2]Ú{eÍ îÍiXXòT­vÝ(ngÜ5¥‡‹Û-p!q+èÞ D¸P­Ÿ¿ï÷e½±ìv?îÓë’STÿõëïò_ßë+ŽÌ?åïswÆçí ßÙýoÁæq!qgØ¡†ú WLK§,˜Ô-8Oü:m„ÛûßxóR¦ësn¼y‰§…¢­P³m©€«‹¦p+ !ÞOÜï}MÝi—|ë}µ-p!q#ä«·,îËtíY”Œ›Þ'FÃÂÀF«eö[-kµÖ~«å£ /,¯·|¬‡k°ê”QP_<ž•k¼~áUØĵÂË7Y¤??&\{H \HÜúÃû´tÑþ²Íwl}Q–Ïzw [Afëý©€íõ@¼?e…`àîIB?} |¿!¾¼à —õ~¢ûÐ œŽVÃýè:_Q&Zv>àêC-<ã°0°âÕ·X\•Å¢öåérõkÜ7úÔ~ŸL¦ïP‰ó?myay5QðØïðœaz—ÕGòúáH^L6žŸÞu^ÏÝ>š ¸6ö…^qXØñèüüy¸5í +Òè‹¶ÐBÑV¨½é^¹h-?sÐÕEÙ!ªít8, lnÜH\YózÙŸ6¬¬ÜÅ·œy(Ë­×ôì­ÞE{±ÚñÔE{±ÐBÑÖo8úV/îãs© ëKð¡¿´pt5ØÕ=V´U耫Ã\´U‡Ë0_„­³}§©€«+®h§, !^_ãþ—aÿz3Ö!wz¦ør;V [@Û·÷ËéáV΃®>,J=SmäÄaa`+ÈlƒS*àÊÊ+Ú³B°zpûÞY$Ý”…b_>y'zE[yRWoˆhó ¿žï‰óvW¦w·:;EÛAiWׯ÷£ëáNŃ®ýtk§„B]Ò°0°dü}Ê¥õ¬¤® ÆÑ˜‚5~¸ù#Œu>øù—Ã:›àBâzA£_|¥ÀhCÌW•hG  ÷õg† ë‰9ð}Jy0 7?-q!q+è¾úë0hëP^}¥)oãm*àê²#Ú*ŒÃÂÀƯçý |¸!ò «Ë­L§/öaXXò÷T¤®,Â= ,+k·§«î© ÕßíF«O G[Áv²‹7 d¸öˆÄ›hXرóU Þ~ÍTÀÕß.ÚaŠÃÂÀFˆÇµ>…OÇ쾞o»?\A\#º‹/ë®Çe¸2„«q,+[ .X£-Ã[Ÿ7â•ež.Ã|ƒ¶‚í:ê/{f¸:w„Ëž4, l„x} ÅP1¶‘¸^øl` h[?õí"]}© «Û'¥€¦w"Ò°0°dënèKïnu< w ® ®ÞÍ1³vÊ„­Ï›c5>³B°zdÇÎ[7 ÷fºú¬)S“Þ!HÃÂÀFábu*àʃ.®³¬¬ÜÁUf‰WÖ3\]…Kë4, l„xô¥å½}H©€«¿]¸sІ…O£ãÙPrVz}fk³†×ýiä âÑ·òÁàêßþtß&ÐÕožŽÖ+ß#\GN\yJÂuo–‚5îåÕ—‘×H3\=Â5R6Bì{Ñ»1+pí·‹·’Ѱ0°âͳ ÷ g¶6„…aWWî„SA¿æ ª@:õ# [afK©€í§#^eY!X#¸Î\R¸,šáê¯.‹Ò°0°â×^†{aDzןð÷¤v¶×éÍÞÕýOèw2o h!ŸÐN¦ôîV§épëì â᫊p ù®Ö&ép 9Ë Á‘Å+º© kt¼ MÃBÁV˜Ùzn*àÊ$®?³¬¬ÜõãýNXíy:—Y·/‡cnÔžØÚFÀ¾Ü|¸.šáêc.ŒÒ°0°â¹ó$ŽÃÆ™­Í"áNcØÄ5¢ÛûĽ©€«  pë !†«a©€+sH¸zDzB°FpG_²8\¹›}oœWîhXر󰭷!põ ÷Oа0°âý,•9.Ü^œÙÚœî/†]A\#ºpy&peH —“XVÖ®ïëÛñRÒì{iv¼”DÃÂÀzˆ—2¿Ï•ö—Ó+WliŸ§…£õÒþÒÏïÁ¦êJ~^ôFÖ•hX(غ£=ý®ánÁÌÖæp» ì âÑr7Û÷ð^x³|*èQI‘^>/ &[‘f b©€+su¸€Ç²B°Fp}ŸŽ—’ßË~ãµ$6B¼xrká.¶ÌÖÆµpì âZÑ];peP çßYVVîê9ÐïþÉlåy‹·ÿÀ® ®ÝMd§w·:Y„3ï°+ˆk…wpüjñ—"d÷—ÌOÅ÷e«rÜtVwr¸,lyßjüvy~-ü’'ÏýE\¿ÿü¥·õ¿¾ÿßðo/¾ê;æÊ ¢®Ø? mm+àlù pe¬—;XVÖ îé°(ôÒºTà¿ÿéÿû¿ùkÚ*ëëRêÛ®÷zº­‰.¨®'ÝV߈ã%¦Õ÷ÒÕx‰‰†…[Û³’ 7]­®…Q¸éŠe…`­Èºú;e¡îò²[Ÿ³We5 nópY ÙòùÐXuRÕ#ýpÎØü§%.$n­”¥¶G£xee…`õà>Gî-Þô8e»A.Ü»‚¸Vt]¥% Ÿ7Ïn}€{(C§ZõÇed#Èp¾;på‰ ççYVÖ îþÊ%òP*p}Þ¸sv©.$nݵL7 9WžáN!ØÄ5¢ûðdä⇢³[à6eèT ¦¸,¬yc³´éÝ­ ráœ2ª  Z}íó>ãz§«"Ë>¦]ï«h` háö,Ûkµn¬`Y!X+²vcÅ­¤}Æc”7²ö-p!q+èèaØT¸ÕyäÑ)3”Z©Æed#ÈpV6peF g‘YVÖîÃ3"‡û,2[ä°+ˆkE·öô Όׇ¶+ θ¸ô×—ž˜õTÐ¥ùë€ý~’»®0,l…Ù•Œ ŸáÍn}”J­Zã²@²ä­ó|$Üp°µá.Ú@»‚¸Ft'ûpðlÜëƒÜl\\HÜúþùÊÚ¸=y¸õgpTžn­ÅËÉFGq¾¬V~¹p…f…`õÈöÝä¹}£Çœ·~+(8œµ / $Aæó[©°×é\Î˵°´€7ÈÁ¤ßM4wÔ€޶ÂýøÛ¢§;SoËýrïsÐùLïç<ž¾V–j@ G„úBDÅ.¹¯_Ñóöûpü`kW´PN»‚¸?Üérø‡Ž6íɵ-Ž¿;Üú\«µ÷iÕ:^H6‚Ü ;• ¼6ð_Ȫ5 …£požÙ*|ä1»ŽÇð¡<†Zž˜—“õ0§“"|2ïpë¡Òï°¨ë]\H6‚Ü;›™½Ç±R!¿Z  d8, lÄx @RÁÖÑvÚÄ5¢Û ÷— \›Fîä,yZ8Ú÷츗£µçsÛ‘qkDkÏ0+kEÖÆÏ/nuˆß:eVÒGbZH6‚¼Ì5è-Ì©´gu5tà[_âëÿüÃOK\H\=ù¸å¯PsG±R!Wgìèé1Öïëѕ޵9Üúƒ¨‰5ĸ,lyðÕ§ÜÇWR!Wo‹è‰¶b¼Ð5ƒTØûà?}[*^¯u4°´€ÏÚk“ xЖåW»ƒpX(ØòâÊex±¤Â­uJ-~ÑZH6‚ì=˜í=È’ ¹:ØEÏÞà°0°ãé”#N¤Â­ßJU~QCŒËÉFß‚ÙÝ•ž ¹v[„éqX؈ñâZ0G[½·~S(éÉE1- $A~8º¼-¦©«·E´+‡…õÏ®´j¼)vv¾Nm[”ÛM 1. $A_½ LcM*èéùû=Ø~ ¶€¶ïÉÙJçí1M…\} Ãm±4, lÄx^ÐmT*àNoW¼¼õãiáh#Ôά_¸È:Ÿ>±˜/š*³ò´P´h×{Êâ­Þ³sk¹) áE6hY ÙòcñL†Wš2]T®t5°´xo«o2ôv¬§B®N-á&{Öc¼8ÓÙáÕrú$ =Ö…‹T<-mÚu%Ü&¼8_¶)•ŽE½—qY ÙòäÜw{{XS!WŸ¿pÛí2³°0°ãy°fÁ;]G™Þg“•m;j` hñ^¼­¦Þ© í¹qL„§…£`;ËáBw†K¸ÔÍÓBÑV ÷õÌó¶ž¿vÞ ™Þ_x^iž }Vo‘oco‚ ‰ëIYÓ”!w<•áVËæÛйÛËS!WçÈpGüÚùrWá†ø{°þ<®Ýó< 7kg·¾ÔÓ"¡.œpY Ùò¾»Ï£¤‚v<~áC4kþä$÷d G[ÁöåÃMëàÍâ…Û"xZ(Ú´ëíwñÞøÕ÷&¹ù÷ßb±ê£3- $Ažœc’rÉ-ç©kω~]ò¼–wUiÉ´Ñ,y¹ÒÂÓÂÑú1élc¿byÑaã‚מ°„£çpý¨–Q5­LŸoª¦ÅÓe°/ÓF¨#Ê-­7ƒ­§ïiš¿a¼Œ§…¢õ@?:_ÖÔ}"!ruð¢xô,, lÄxØœãF¸Ò’iÇ®´ð´P´êÓzÔ7½wv<áî;žŠ6í=¬èm•O…\} ÃÝýÏ®f6b|z13“ÜMíxÃ)ižŠ6Bí,±‡[ï2ìxÃÍw<-­zóæ×¼'R!WŸÂðaŠ­÷í‚Âg)îÁFŒÝ™µpÕpjCÒºa \HÜùè݆SŽ™v zá”#O EëoóÛö.é¥Óàq\r¢-§RrãÙÒý~Æùßß° |MtAu½Ä·¾¡ÇM…= ÚÀ}às7”øúĸ¸ñä;[mÂ}ŠvÌÁáNEžжý(G*¥œéý¹Y¿¼ßîzJ™§…£`/δ÷Ü]*äê¢'|Tp[YX؈±;UnÈØª™ê8þÓ7Bþpfââ‰åL×<ñÄ2O E+¡þ÷ÿÔuÞ½z¬Xò¢÷oøÖL¥ÚÑBÑV¨}}A±Æçìx\b­ÏMh¡h#ÐÞ—xñ¦B®Î1^øuÉÃôjOfNæÂž¯Ñ™¾ÕÇnf|Ó÷sEûßøž h¥ ª+îýžåu_„[{ð6VÇÚÓ^´kJ5¨5Â…ÄOµŒÔ1NŪU/Ú1­ÇªUMh¡h#Ô³7«À¾hÇ´«À6¡…¢­Pû*)±~íìx\bÛMh¡h#ÐÎ7ŒºQ§B®Î1^øuÉû9þ¤óËÆ.ZXÿýúÎ[›_´c ›ÐBÑV¨½ý&±Bú‹v ¤±BzZ(Úµ³‡ª µ*¿àúã|¥wZ(Ú´ó½¼îÚ©«?¡~]òX ÆÕÊô 7žñ«•鎅DXßöã€GCHܸ±goŽ6VR{ÑŽ&VRkB E¡^¼9ÚX׋vÌ0±®…&´P´j_Þ&Öfý‚3L¬Ñº -mzïD¿‘ \Ï’]ýØE[@[é:yâµßòj%󅻿šX%ó‰×vW+™®ßæƒ÷܆÷t*äêH;´ÝV:Ížî^”é;½]kÍE‚üv—õ©ÿû/þ›þýw¿mUŽº ºqûõ\¾KíXî„‹Ž<-m…Ú™»ö,¼èúr'سЄжBíKõÅδ¼`Çr'vª¥ -mÚ÷²ÿ!üTÈ•ŸÐ¿.y¬ãF‰4㮵B¸D:Œµýã)÷Éä-S…›ˆ2=ìmÁŸí¤Çr†Ÿæ“7ZˆhXXÏ ³gk}!Æmظ+oå$\dÌ´c² yZ(Ú µ7÷îQÈ´c÷(ð´P´jg›qì`Ü vLã±£qMh¡h#Л·ønÉtuˆ^”±_MÅѰ0°ä±wfñã•ÀL×Ǥx%§…¢PçJ {f-|o,|/¸kÆ ËëÉÏÑÙ;'ó‚Pì¤LZ(ڸ˟lôÅ«éÝ6.úŠ~ºroj(Üè“iÇj$ÜèÃÓBÑúV&Ëð/Y^øMÞLfoù1ܧ”éê<¿* 5ÿDÃÂÀÆ@R-§ßèBÉøþ ®pJ \HÜúê¬Ä à™v,¬ÂpžжBíKb{ž¤vü†^ú§-mºZà=¦±p£R¦3d¸Q‰§…¢õPO7nTÊtušQ>Š«·)Ѱ0°äj óFGÆ]ÓK¸£.$n}pæ²ãEÇL;¦˜pÑ‘§…¢P;{mÃçe¦j_s”þiG E[^èN¶TØÆU_ÐOWî-w„ÛZ2í˜Ãm-<-­oÕ³ÌþåußÓõú4{ÃÒE{r2]Ý7eÙ fýhXØFªUÍwÍêᎋ¸¸ôÕ[· ×!3í˜ÙÃuHžŠ6Bý𕸦jCv”þiG E[^ÑŽœTÀçâÓCDÃÂÀFˆ7o#Ü’“iÇ\nÉái¡h=Ôsï,Ä[r2]{PúN¹íÔü Až?ûò¡T蓺AºóÞ¤¸¸õj}í˜ÂåôÙ[„—ÓyZ(ÚuõÌÖ‚ú\=´u§ ¾ëX/TqÕÕ¹1ܼ»‚¸Ö­áÍÀuÊý¬.˜2]Ÿ»â­[<-m…úc9F¶ne>ÿ’_Çë;­[mxay=‰3»ÚÓ/œ œ«ƒk”þiG E멾¹Þqq§+‡áûdõ–5Ãý[™®._{ejPë4, lŒ„o,Ü·0{ëôñ¾žжBÓ!¿0ô±…Tàê zù+mlm#âÛ#— ¸º wõѰ0°âÓ{Ž×vü-v>g€|ؽßéiÜ“â¿Ayoœlo 8ܼ6{Ϣě×xZ(Zÿ—ÎÓ¼vá\p†«óKô‹âMh¡h#ÐÃkçÁ|—$ô3uöíÞ8è¹ z{Ò³>ð´p´lo¹8Ü)˜éêzlTjµÒCÃÂÀF«%ÿcP 7ø,Þ¶xƒO E¡žªïB¸Ñâ³¼íû¿ïç®·ødkË,/»º² 7’Ò°0°q{ÌÞ¬u¸§1ÓŽ•G¸§‘§…¢õÔÊRÑE…èzbeyxk¤án»LW'™IyfÔ ããázÈÃÍ>§g™æ¶BÌŸËJþt¿~ö0ÓsÿFïêóè#N GáÞ¼UâpçÔâmc‰wNñ´P´jßRÉÛ1šÞØêˆîpeY!X#´Þ¯Ä-3íXn„-yZ(Úõè-à„›Ó2]µ•Ú¾ÞšFÃÂÀF§írH\µÃm4, l…xp¯3Âô2WeÆÖ œŽ6Âí{»i1píQ‰·YÒ°0°â¹|RÈþ—Ìwz¡óF÷K \H\ßx¯Þ/JÄû,WïɨxŸ%O Ewøâݬ„ÛŒ2íøÃmF<-­¿®}}<§ÝçË0µlÕ#TûÁ¨ß>Ÿšù¿Çÿúþ¿þ³ªõÓTT7îÂú·î´û®ç?<¨n⟶¼°¼1Ú>¼ƒK§'ávÅL×~½A‰…Þ¬HÃÂÀV}eÕpI†«³w¸„†…{¿joèz,Ί@¼¡‹§…¢­P³Í~©€«c\¸=‘†…Ã] ©€»¿T!Ó…Á²B°Fp«ð; ‰ó»¶¯o¸ñÝÏ&º ºžÛxlÞ!)Üê—éêÌ=(KuãMÃÂÀúݽu¾Òj¸#ÃÕ1)܉AÃÂÀFˆÝ_ç÷eÚñˆ„{ŠxZ(Úõà+«z;(SWgîpÏ' !¶¶ß9ß¹Õßrý€g \HÜ ¹o` ·¿d¸²` 7¿°¬¬\ï`î•ËtuÎVöz§ Aö½N&Þî²Í®zD¼Ý…†…ï/O@_Í• Üàî¼V¬ /,o…Þ—wööS¦®>6áP6Büð®¡Ã­.›»„nuái¡h#ÔÛGßSíÎpeþ׺YVV î¿ßæ™2™§‚ô•ùÕ£ñ háèj°ÏH´ñï²k %eÛ¦6"âðG ¯ÁF{g›‚û W*hu2¹~<­-mÛu`(\á>àêª4ZáÆaa`#ÄÎWHx»ÓRW»h? !ž|ÝGñ–˜ƒ®ùñ–˜´P´j¶0Ÿ ¸²<Š6À¬¬ÜÙ[ ŠvÑtu¶Vj¤j A~ΦcßéÕ×5ÿ~ùõkëÿ÷_ü7ýûïþû7ëÃÅÇT}ÿi‰ ‰A_k:ô.;G^ùÿç”É*Úf’Ýê:#ÚeB»‚¸Æ-ñp•ÖÜ]t©€k?\¸ïïì]ˆG†´úÚ¶ëF·+Þ„õ;£‡ ò©€+³v´f…`­àzó|ÑFŃ®>ÑZXÝóѰ0p5ȯŸ<(|àÏŠùïê=)ÜF/~OW;¼ú>·kp§gRA×Gè𙟴p´q“¾l´7怫+Žho  !]…@w÷_*àêÔíWÄaa`#ħ<ÖÇ“ Ýìõ½Ü‚ÔFT7ÿù: ¤…ã€íuS¸f…`à.ÞJU´Eô «c’R UDqXØòêËDÛ4¸úhDÛ4pXØñ¾—·FçmHo q7ÚñÂòVðÙ®ÀTÀÕ¹<ÚLjÃÂÀFˆ·úà>e•ÕÓ& 9e³B°zd¸Nœ ¸2a‡ëÚ,+k×>P|£G#Óêïv£Gƒ§…£`ûÎ]„û†Ñõ€„Û`W× ¯w©í=èꪔŸÕ>P6‚<ùŠ=Þ.´TÀÕ‰9Ü7GÃÂÀVˆ'ÇZBYÙ«Gz¶6={ÝŸF® ®ÝÜÀu¬¦‚¶ö8×;m[àBâFÈWW0^€ÏpeM®¿³¬¬ÜoˆL…nv“\~»e]PÝ ¼¯ÇëB¯b¦«“¬²òÒ;iXØ rƒV©Tèæ‹ ¯wy5ÑÕ­ÀÓíX© [¬p§×àûìP¼ið½G'ÞŠ4T^›y£é>­·" ¾£`ñV¤{°q?o¾¬·»5põ–ó§+v$|Âgí¶¶¬Ž¶£]A\ý;ßHîv¾ë7ð·<¤®,KÃ-,+[ .ظS†·> ÇÛxº ó Úöèë6 ÷Âd¸:w„{ahXرómÞ>ËTÀÕß.ÜJÃÂÀFˆ=‡Àǧvµ6Ù…O±¬¬Ùå•Wå>¼ þ)m-Íø.á·¥ÍýGûÓ?p6B<8ÖÑÊs¨Ÿ¡ÚÕÚ²ÔËþ´a…`­È:g¾xó@¦kóH¼u€†…‚­0û:¸¼½«©€«ƒO¸Û–†…Ã}©€+Óu¸/ƒe…`àήß,Ü’á{ûF¼#vqð®£c‚ 1ÉlmΟ1]A\#º›+¯£f¸ò¬…˨,+«wéÊu ù–¹¬ó÷‹þ³Çwû‰æ¿ Îp lm+ä¾Ì}¸náꃮ[Ó°0°âÁ³ŒW÷ò;€~Ý,îÁ®@®àÅ1ã…ûÁ3[›A á°+ˆkD®”¥®Ì!áÊË ÁÁ]}Ão¸’áê¯.а0°bWs®’ŸÒ_I”ÝÓ´üýÔëxÞO½ª¥\H6‚ìøxD¼osWkZ¸o“e…`­ÈžšÀ©ïÓ§BÂß;©Ç|GŒg{W÷¿`„·´ŸSåLE=½Ûû¯¹nl+@[@Û øêZ"‡ ¦®®9ÃS Öƒ¼~ÖSÀš^Ö_?!XÑk` h‡BÎTóÎW­/Fõ<–ýã(kwp ñZS†k`¼ÖDÃBÁÕ c•›2ÈÕG#\k¢á2Èa+Ä›g¢,Gõלe·¾Ö?ïYÏ»µ•—’ ž¢H¸÷;³µ5¸ùvqèξ¢H¸¤—áÊ̮豬¬܇§Y#þþ“ìÖŸµYyŠÕ2. $Aö¼c&ÞK¸ºÞÙo&„]A\=º¸d“ ¸ò³…KL,+k—}§A*Üú³¶(O±ºyÆed#Èž_.Ü ôðœäŒw±¬¬Y¸ž ¸ò›…ë,+k÷áÚ[„ÏLg·þœ)_\\Õ=2. $AÞ{‹xCPfkÏ[¸#vqõènð~>påg çXVÖîÞà‰¾¥'¸š;ºõ~¡¸¸ôÉÕ}ß)ƒ²šÎn}€S>¶ªya\H¶‚ìÉ9‡{V2[äÂM+°+ˆkE÷ô‰É¯U“ë‡J³ý,ìŽß«¯×O•¶À…Ęï%ج‚¥ÂÞ”|¿òë廸¸óáU󞺯öå÷ÀíÃÞÔión†Çí ~’;¯…‡…‚õ0w'…>”w¸ÕÙeê”yKË ó²@²äÓ«uîwSÁÖf˜h-švqèΞM`´r°µ«V@hW׊®«·NÙ³ª‡š·þ°õÊc¬¥yY ÙòcÀçéTà}¯´kô4œéÝÿ€:áñ´p´îµøoJ…=~O™Ü9éÔ€ŽÖ£Ýwžý`´u°µñ.Z¢]A\#º}Gp·>ÖÊ(ª¥ñyY ÙòhPãN²îÀõw7ÜHÖ5Á…Ä çÏ|Öúq½§á^ðâÚóDÏLnýöSš³ú¯HËÉÆ¯·øÖJî“4©_stø‡…¯ž™5Z¾=ØÚL­ßÒ® ®Ýüù9nq› zІÍë+r\LÖ#=¸áÑínJ7ÜC*pY ÙòàšM£ß;kIN…\6£]Ô8, lýv›c Öá¶6pF ñ´+ˆkDwö<î³!/×{ä×ÛŒ› ¹zŸEû‡qXØøí\-ÚáöáíÃJ£äC|hY Yò8x6Lá&Ìí_°ÒqöPïc\H¶‚ìÜ0y[sS!WŸ½h71 1n Iþœ¤?’[YžŽ6Â}þŠt,>øÓý^Ïôô8Ó»ú°ÃÓÂÑF¸WW}5Ú{¸õ!oSS}¡ed#ÈÞsPÞ.éTÈÕA/ÚØÃÂÀVŒ_Eßé뉗,wz"ÿzê¥- ] 7XW ÄûF=´ˆøšètzË?÷Ý´TðOùë,sàs÷†ïìþ7Ôµu \HÜûè)–†{“·:)ÌJËÉC»qY Ù ²3íámYO…\o¢]ö8, lÄxÝ<ð_©°bwØþih hßœëÉÎÙuš ¹v‹ÄeiXXñìú¼j¼O6»õ‘N)ì>Ôq—’ ;Ká²|†Ï &ª0ÏÓBÑF G×n<Ü—œÝú¡´O=Ô—’ ÏÎŽ/o¯o*äê nO¦aa`#ÆÎÒM¸¾›adz®ðò´P´h> ûüfU,ñÑÀÐ6ÎçÒ»m\÷ÄG[@Û ¸kÿîÏn}~Ñú#õÑš–’õ /Î¥£»¿:ru† ·„Ó°0°ãaÿñÀÞ©°}ìõª lm+ྊp¸•&ÃŽé<ÜLÃÓBÑF ½gܼ­æ©«Ïb¸;ž†…/®i0ܸÝú”¢u¥ê4- $A^:Õ˜ Ûè#¹ž"m` hwVƒÃýKv vá&žŠÖ½z¹y›ÏS!W¼p¿< [1vµ<†[®³[î”ûmSÇ \H6‚<ÂiÝô.ß‘‰Ê?Ídd+̾^¸c)ÃŽ0ܳÄÓBÑF  ÿîÖîTÈÕa.ÜNÃÂÀFŒÞA#œÎ´ã ç£yZ(Ú µoÏîãȰã7 wrð´P´h<žÞé½ÏlùÖß}=íÏÓÂÑV°{<{ž <_yǦý[àBâzÐÞS­Þó8©«óŒ~]òPË\OñfÛØ‡_Oñ6°´?î‘Ó…³¿¤0°qS‹sBg¥3í˜ÔÃYižŠ6Bíìmè¢ÝwÓ‡ƒÌß0ÞÇÓBÑF WgnÉ{"'rõ'ô§KƦ©°ŸÐ4/. &C´/Å?®u6nç*)ýÙ—Bå¤qY Ù ó~®ö9h|ƒo¼•üÀÇ}%öå†Îô¼¾Ó¿èþô‡§…£õpoή†pÓãvúL–=¯„ÛyZ(ÚôàìÂV®ùãôM*äÚO?0´ù’½ñóB÷`#ÆÓk-ÜmO½ÿz_^írçH~[@ÛŠ·7®dÚ1Á„ë<-m„zöî‡Â®Lïéša +\<-m…Ú·Ç÷GÃÂÀjŒÇî£U³ìê¢ÅD^H¶ÂìKþD›JØ1ÐEÛJÐBÑF ‡ób¦#«‡Ýý GTÍ‚—“?B} Ǿ!ÚÇçïYüîÈ9¿Ìiwä¿ÿâ¿áCÿß ûÚè‚êÆ]è}·„÷$i*äê<à…O—üÌ@‚ïüJmT¯¾©¬-­æ‘ÇΗJˆž3¾ç·óçAA¨þtÐõH¸þÔ€Š6B½x7ãÑšêA;V7ÑšjZ(Ú µ/‹í"?`Çãí#o@ E>}`)õ¥BžÏÊ·äéåúdZ8ÚˆõÙ±÷ž×M…\\¢GŒÇ¾QXXqß;O¶„ Pí˜X¢¨´P´jor)ZÀ>hÇÄ­`7 …¢P;»Ä¢½ûìx\¢Ýû h¡h#ÐùC¥èÎ6z¯_÷]y]PÝ ¼snôâM…\i¢çŽÿÁ¾´oôØñM؈ñâ,„+Qí˜e¢•¨´P´êó)îË:òz#ÿëÏÊŸ>o¥>ìzo #-tAu#î+\‰Oï²cn¶ð²@²fgKdôÄÄ;†¨ègWÐBÑz çíÑÈ åaøžPÎìïÀõÇ>Å'®÷gÀ¬¬ÜÎYÃV¨§ÒS!Wgp/üН¯Âàuq÷Þät¸¸šiÇÜ.®ò´P´^ñò[¿¶QݹLǃ²¯9¦¬oãïjc|ü÷ÙçüÓTT7î·º3Ñ`“ Ú1BGÛ‚ÐBÑF¨Ç]"U©Ì´Ñ=p¹RÉÓÂÑV°}¯1ˆ‡:`ǰýªRZ(Úôì}^ÂX™®®meɤ¦ßhXØòê]D‡‹~ÃÛ),6‚¼O`Ù2t÷7P¥V 6Â<¡MMéÝUGº¨ûÓÈĵÂë„âuìÉûö¤x›§…¢­P{óUáv¬L;–¤áv,žŠ6Bíìáõ˰cÎöãi¡h#Ћ7µnîÊtuäW¾…§·vѰ0°äÍ7z›IRW'•pû [!vWâeëÉû°xÙš§…¢­P{3UáN£L;&”p§O Eë¡ö½?~¨ÏûŽùø©>\H6‚ƒ¶€¶r¶%½±Õ9<Ü7òB°Fh;{3«›q½k ‰[Q÷Ü÷dÚ±8 ÷ð´P´jçæâÝJ‹ómmñf%\H6Âüðִ­J™®.N•Ö½Q‰†… o3Ú$‘ ¸ºn ·uа0°âµó• ½­>©€«¿]¸9‰†…÷Þ²a¸Í ÓŽi$ÜgÀÓBÑF¨½oR‹7)­Þw’Å›”xZ(Úõä­f…›”2]NFežR÷á4, lùãØ,ÓÔ‘áêtnê aa`+ÄûÚ}sd*ô^ûï¼õ²‰.¨nÞ·ðð6X¥w·úÈxÝÓõzËBáN‰L;¦­p§O E럸[Wߺ?Ü|w6îå‡w;î Ë´cw†ñ´P´êÇé;»D?pu‚ wа0°b¾vŸ |FÙžž޶Âí­Ì*C´Þëøð½ómUVcz§# A\gœÝl©€kãQ¼õކ…Þm}¸oæqz}=„ûfxZ(Úõ^÷{e<ú}kÁ^÷bͺ·óõÿõË¿ÿ¨ûoÒw,™ž”¡?.ÿ4““­Hhé>p÷W‡dZ XVÖîì[އëÝ®þjáz7 !¦[ÕÒ»\Pge ¯âXW× p--p§Y&ëÆœz§Y¦‰.¨n~ÿòÞȱ}õ‡Ý÷5ùï?ÓÇò»&7³Ý.Û¿ìÿû¿ùë•g}]ÎúÎæ¿¡Ñ-tAuýÄ~UùrùúQÙŽÏTÀÕE¯þi ëɵGþ6ú ªýæÍ9†‰2íX­‡‰xZ(Ú 5ÛÊ ¸²– ·^°¬¬Ü­óöÂm®þjá¶ 6Bì}Å_¼nó½0oUb¡7ÂѰ0°dëí(Kïnuî ·ÀÁ® ®Þ©|À³¬ÙÞ¿Sñ}u~ý0k \HÜŠ¹·–n×Ê´c²·kñ´P´j¶Y$peÒ7·°¬¬Üyy=%×ýqø7/ÚûN»x›Ýæ{Cܪ”þõ&;6~¿Ï^°1)ëÖ{n4&5ÑÕ­À»6ÞñΤ W‡»pkÒöð-ü}©€«ëšp'& ëY“ìb¿]yÁaã.~¼>Ðû®ã˜‡ÿœzó2ý7??´e|—-Óý3õúmôÿÃÌ/|góŸÐÍãBâzj4 ÷š®¦7¶üM 7nÅÍÛîœÌ´c%îœäi¡h5ÔS×ùÊÕÑ¬Q£½q0+k÷u*žxW îío¼Ý9“|àU Œó?myayã7\çÌÃ}a\{Ã}a8, l…Ø;ÚE›£º¶ð}hù<-ÛÃÂÀF}¯u7d¦®> ÑR6B ÷þ¤®ÌVÑ^%˜‚5‚ë;¶.üpuT‹þqXØñÃ[*ŽöçtuTÓ¶óZw. [A®íun´ƒúþ.ßÛ+.·ƒµÑÕõÀ÷ëu÷ ¦®ŽLÑFG¶B̶¤®L)Ñ–˜‚5‚;ú~´h)ý€«ÓI´–ŽÃÂÀVˆ½…ÌhóØAW§m1«îöhXØò49žŽNyè´ÜêÁîÕÌÏtvÔýiä âÑõ½!ÐÝ ” ¸:üD[špXØñgA†«»z§¶Ç^¯º¶°´­»2OáŠëW£èÇ`V¶\¬ÔZ·:MG‹Ã8\ø"l…؛ጶŒtušÖ6 jú‚†… o«ãéˆv£lm¢Ž¶£Ó® ®Ýa?wÿŒ.óî„TÐÏӹ׺ÙW>´°´­xûòõÞv´TÀÕá>Ú@‡ÃÂÀFˆ‡×’…«L¦‚73}7êªmxay+øl•2°= Ä«ª,+k÷ô¦5%tuöVZ2Ôv¶‚<þ ÿŸ÷ïWlr§ x7^²ÑÂжÂí:/`¾Cñ6 !>}á÷þñ…T°µiô´í âÑ]\/Aw·Œ¤®=ñ&6B¼úŒp“@†+Ót¸E€e…`àæ/rΓº"üiŸÏƼçøú¼°˜þûwÓÿö?öÉãÿ¾…øôõSí8KœÿiË ËïÁÿ¿/Á»Ÿ©^¾†àxõš†…õû{ì<ÙÕpctfk³I¸3vqèÚ¨“ ¸:—„[‹hXØ1\oO\™OÂý,+k×÷*ºxauôuÆ «4, l…Ø“ÀwÏf¶6 …ÛgaW׈îÊ6Ф®gáÖ6B ×%SW†´p•e…`õàN¾7"Å "“¯k1^¡aa`#ĽcæŒwof¶6 …Û7aW׈îàËÿx ê©€«ÃY¸€†…Ÿz ¡äv*ìsA KÊ7°´­€ohŠ;pe §äYVÖní=S·ÊÓç—6-]n¢ ªwõÄõ“ëÜV‡L…$ÕÇ$\aY!X#¸{Êš:ž w˜ÿ.÷{§þCùŦV÷pY Ù²o÷®,¾¥|¸@»‚¸VxGÇ“nÊlm ÷Á® ®ÝÏ|=V|ZNïÿS´øÔÀÐ6Φ½Ó»k?%ñ$=ª  Íßh«Ìuá£ÔËÑA^™7¶N™‘Ôº. $[AöMvá*Èâ{a|¼ BÃÂÀVˆ=¹Ÿp7Öâª*ÄÛ±`W׈îþ¢òhýŸ½öc;YÈüóÆøv:öV  .$®§ÿW8™ž ¸2O…“ÿ,+«?/ëè*F†Wf·>CõÊÜ§Ö qY Ù²çk¼iu ÷#Á® ®]ß›‡ãé Wž¸p>še…`à>\¦ð´ìÖŸµAyŠÕj . $ëA~xùÅ7®CsñÎ ØÄ5¢›¿S‚~¸>ú¬. /à?-q!q#êûr…ý`{*tǵûñ×¥³ ÔôîVèpºUP{âô¶h®7üSþžëÌø6¾á;»ÿÿi‰ ‰[a­ ¾>‰Ó1÷ûö,ÿ¤ž7Ãf{Ÿ þÓ7b>¹²•ás£Ù­¯A”—ojá—’ {ÎæÆÛ|®³®ñ>ØÄU?:=–>Ç ‰7œN\™ÃIl–‚5‚»¹RFá™Ù­³2©U.\HÖƒ¼å¯¡ÌjN5þAÙTàƒþð…ퟆ¶€¶ñÍñ^ÓÕýJÆWî¶_î9 ï¯Ú\Žã V°+ˆ«Ï‚Û<Ñ¿œ€¶q?óŸônï'å¾ï(n”ªZàBâz©j[=÷`üˆ[vëÓÌ¢L`j± —’­ÛqÂ+Þ`“ÙÊoo±]A\5ºs×{Øðٔíß«r£iõ^H6‚<8Žf„ Ú[»%¢mÚÄ5¢»xØð ŠÃ­ßåFÓr¸¼,lyu4´‡k®[»%¢EWÚÄ5¢»¿­Š<î‘ [íñ»qL¥…- ­|_«ôßïæ ÇHÓ<~OCÝ8ùJ»¹F„{ב®h£ÿáÖG¸ïç>¶N1- $A|+÷ñšTȯ;:„ÃÂÀFŒGÏþ#Z>ØÚL­Ó® ®]wN¤‹æ=»;Í \æ³.¨n„ݵ› ·¥nm@ZºNCõpÓ²@²dçbü;üy $rm¬ ŸaÁaa`#ÆÏÖ:Zø;ØÚh­üÑ® ®Ýã€`6<¶k„së?MuAu+ìÞ|” ÜØW]o›j‚ ‰Aw(w4H…\û¢g#pX؈±ëøIøhÄáÖ§ðï¼uú8BËÉF½§E½ñ©«·E´‰‡…­Ïtâ+¶ÚÍt'a×ÀжîI¼†Mný)ü~‡l>8Ó²@²äqtnX¼=¡©«Ïa´‡…ïß'­ÝÈÑ.Öíߣr»©ƒ3. $A^^9;,7“ Ý|)úõ¼R]Pݼ÷Ìœ·õ2rõyŒv‹â°0°cWCn¸ðpëOã÷!oëôAš–’õ O]±pÄ*„S÷16aU¶€¶î¾²œ¾‘ðØmcYz#ßÑÀж>»gÈxn/ë®Y&žÛk¢ ªwÞ ÷3n}$ü>Ýl:Aâ²@²äebÛ\S!W'õhg. [1ö銳?psxŠó?myay#ô¾bZ¼ë#ÃÆ…GéWÈצ…¢@ïo-#Óe©°ŸW= I>\L6B½½ÞÕ ½4ö¸¯/¿>Žkži–_ŸxŽÉ—ó+Mp!qõüÊruÒñ¯KvûŠ÷Òg·¾ù~Å[§Nì¸,¬‚û¯è¯' ¬óÐ;×"ñ—ϸk6÷ó?myay+ô¾,WíqÊp}Vw9ñ´P´èÙÙDì=4’ ¹úzá×%Ÿ¶À)ŒT¸õïûozn—’ÁÚ7¤†ÝrÛØY‘wÙdØñä…ûlxZ(Ú ôùK,P)ús]:lßW¦×k`MtAu=ð Ÿ„O…m|ßázñ - mœO§w»ûÞ^|«t€Ë‚ÉV¨][ÿ©TÈÕyÁ Ÿ.Ù•pàÉn}B×®X=ƒËÉú"d|Iæðѹ{°q#;Û{Â=’vLèá.IžŠ6=ùNâ…Æ¬»¦òx¡±‰.¨nÞ÷*ÿ©TÈ•gÇŸ.yûKãP/Mþëæ÷¢¾Ï‹™^úîL?ÍìëS9N GwˆëõEñÃS‹ïU@ÏÿÛ Òë¦ed+ȵâÔ­BéòöQÚïÃëBi^XÞX–¬ž$Æ…3£÷`ãnyÔŽýOe¸¶›i#ÖQútÕ¯z7RpL…ü<€ØÛ6^¯’ò´p´u‡øòíáý ;–€á&}žŠÖÇŽµáçE(Z¿;Vß!FÿqµTÈÕÏ ——ìš /Tï2ïšb.TïÚðÂòÆM>¢?ª ®q{Ÿ>mÀîRAןI7ýºêÓǬ!;|&"ÃŽp„OEð´P´q7ϵådô7Š6îißq]ÿ9ÁTÈÕ§Ð ¿âüð$å.œl¼1ö.ÂUǵ6>GåŸf²@²æ^R§‚îû¿=ÆÇ<øÈ;ôáŒïlþz¨y\H\ùãs)‰³½·d~IÝ)66°´€;[ØÂ' ½wm>[ÀÓBÑF }‡ÑýÇŽS!Wg/üŠóèË yaa`#Æûlǯ®ƒeÚ1Ë„ë`<-m„šm©Mï®ã ¿h—’ ?|L"úé“1E-¦Ïóøx¶w4ÿ}>ämm+äÎŒ“÷lw*äê >Ž»‚¸F„7ïãÎùfÚ1Ü…s¾<-­‡z«&foë¶ÓÂtxà§ÛðÂòVðg|– |ÐÎ;ÛǶ€¶ñþ•‰czSAk½·:'ØÚF¼ÍlávLáo•ð´P´èW‡7”]H…}úxÄÇ#¹åGr*ñþ‰Æ­Ý¯Æ¬—–!ß'†áÛԥˀƒtîË´jo³f¸¢´ÕÞ}•šÉɵ0sï=)¢\Ý(„ßÔ»‚¸V|ýÝ_*ÿ™w­W/TþÛðÂòFð]lrdØ1:…¿ÐÃÓBÑF Þ”bíYÈt}†‰‘æi¡èP¿â‘ߌØëÊ4äNÎÿåg¦_þ-ùþé½þ¡Ú6º ºúª¥ëœÇ½o¡H…\¢/ÎÀaa`õI_ºÞ›—ж´ã™‰ö4 …¢PÞ%p´{ÐŽ_1Z‡m@ E¡öµò}«õSDÙ­þ‚ñOEñ²@²dïH…\ýý¢¯ÊÀaa`#ÆÞÑ9Zëβc˜‹–ºyY Ù sí凇­u´ã'Œ»ÐBÑF¨í’ÞöíTÀŽÎKÿ´£…¢õ@{_´æ=ŸÞáê}…í âñ¼{äh‰û ]´ÄÝ€Š6B}úœ-SÏIíø£U¨´P´jßB&ÚØÀŽ.ÚÚ߀Š6=¿Î[~ ôÆÃ6®úFë@]PÝ»ó•vîÓø©kONø8, lÄxÿ81XŸLýT¿8.ùœ0xšO^¯©â°0°dïÖ0ZP=hÇD­¨6 …¢P?¼‰»háé ¿b´ðÔ€Š6BíkGŸÈ®cžŸàed=Èð8Ÿ”.XÝ;èêh·*躧aa`#È£/¥t! éêãw! ÍÓBÑF¨'_J)ÚÍÀŽß0ÚÏ߀Š6={·á V¦cR¸‚ÅÓBÑF¨½Ct¸,ëê5YØÄ5¼ùrJ2Ñ™vŒtáL4O E롽 ÑžÄvü†Ñ¶Ä´P´hïº<\ÆÊ´c@ —±xZ(ÚuïMv‡+³™®ŽxÊÇrõÂ, Až|ï éèL;F»p:š§…¢P;­vvü†áf;žжí­¬‡kY™vŒIáZO E¡^¾P‘ Ý< ÖO×îÍf†«Ë™®ÖC§Lêž–†…Õw¯-ãZ[òÞ©d!ºqwŸês3éºßßÐ4æ÷g:£Ï? §…£poæ'9®à=ÙÞ\a8ñiÇŠ!œùæi¡hýgœ|Í@á–ÕÝuü‚ážU\H¶‚ì͆ f™vÌ‹á‚O E[¡öm½¼uëTÀýéî`*í4, l„ØûÛ… í“«5`”H¨É+ØÄ5<Žî¥L¯-eÔllÖ«‚Q[¨éض€¶òi_ÍìË׈¯yð_v}}êÖÀSOzk[Øþih h뇧Ù[o—)'gYîB™’§…¢›Û××ï|ϰã7 7¿ó´P´ho:²‹ö8dº:ë^èqài¡h+Ô®ˆ»ÿ%puÕîØ¡aa`#ħ„ ö&ºô®?áï³ùgóélguÿúÍÛÚFÈ·}¤æ>B— zþ›¨/çñ²`²io%4ܺ“éê¶`Vtµ¾CÃÂÀzç®G{`RW‡¼pÓ !î½Ëèp7ÉìÌZ]è&ái¡èj¨Ñ÷ú•ÁV×è7^HØÂ.Ã}Ƕ"î*ÂÇÏ&ÍÎ/\8ÄÓBÑV ½õå¢õæ¿L;¶^ú§-m„úœÜÃ^9— Þ±>]Ôõ©ð¸¸öÉ÷ƒ^hÌtuõ¤mìÔJ Až'´¡.puõn¤aa`#Ä‹·0Ü™6»³WáÎ4žŠ6B]íW9äp·åì<|¡Û’§…¢PWûît¦e}¿îåë'enÿo¢ ªëþThc*èê$£m¥ÕÒ [AfûS×&™xç" !î}Óm¸í#Ãyd긶¶BìmÊ 7‹-îíg¸[Œ§…¢P;_z¡ÿ1ÓŽ9<ÜÿÈÓBÑF¨go Üš—éê°ÿ} `4æÑ°0°äÅUp7`¥®N'áŽ1¶BüpM€ázx†«ÓI¸NÃÂÀFˆWo©%ÜH³¸·šáFžжBíZÃÍa™vL%áæ0žŠ6B½sg¿ˆ ½×Ÿ™_sh£ ªë k÷Á3Åñ WÇ¿pqœ†…õ{{í¼OMíÇËtmI3vÊLÝÒ°0°dçg.”iWï>(^¦åi¡h#Ôã‚6¥®®JÃ-K4, l…Ø»ò÷Ó¬£w4 ÷Óð´P´êÓÖ›¨½¥®N'áj! !^¼›p_G¦«ÓI¯ÌS꾆… ïߌÇÊô©€«c\¸±€†…»ßÅ®z¯›÷ W½yZ(Ú õ^¡y6]Ÿ]8¿‡¤ŸcÑ~Êî÷Ÿÿß~òðñïWœþôÏ.öð}»Bÿ´£…£õh?:WÚ.^ÌpmF‰—iXØqï›[Ã¥Á wíÀLae…`«Á½ÜbôÈdº:]Ï”24\†ø"lÙyÎÜÛð ¸:ú„[4hXØ ±·â.ngÚñˆ„‹Û<-m„zñý„áb`†«H¸HÃÂÀVˆí½ß9¨ò¨6 Þ9ªÒDT·ÂÎV4SWæîp–e…`«Á»KÊðVçíQY¨ù".C|6‚¼ùÌÞÎ’TÀÕA?Ü CÃÂÀVˆ½ æpÁcó>"á.žŠÖCýÌE‘oÆIo²9\£O[@[/hopy8peB —³YVÖ¸—ûDئ±õ+°M£‰.¨nÜÕƒ7ÓnEÊtuŸ”¹KÍÑѰ0ðÇÝ}ŠÄ~ppšõ&¤üv·1ÿ†ùínÓüßãýðŸuû5À…Ä›oô—ü3\Ýy† þ4, l ¬“«zçî·I\ûíâB4, l„Øûf»x‡ÐæüàÔ…!žжBÍv(¤®¬jÂ,+kÌRËsK8}¬Ÿò3²¯Ÿÿù»Òÿàq1_£ÕDT7w•n›Êtu€þžP2š¦hXØ2Ûµ‘ÞÝêÌn3]A\+¼ÜB ºÓ~º[­-p!q5äkç;qíîõJ\]ÊD»ÓpXØ ±ïiù¾¨Ó;LØžcÃý%0+kwôVI£}i]}4¾'’ô®46‚<¹Îö‡Û¸úhDÛpXØq~qùÆÜTàêïwçU¿Mp!q+è®b›»)pu*‰vNá°0°b¸s#pe:‰všÀ¬¬ܵç7¬©ÐÍ‚ÇåÍv]PÝ üÈ7ɤB7ßÅu¹Á§.¨nþá-UG»º:h} Ú&‡…«AFË5e˜Í'3Š¿®|oá^„Ÿ ¹S"qû§¡- mÜ(›¯8mV:àêª!Ú¬„ÃÂÀêaÿ¹üã"$®–Nßt쵌©ÐŸð÷ S¶§îlgõùjA'í2æwlýìóÈ×C§wìÅüxyåæŠêr·Ø¡›«’ËýbmtAuý)í;_õÝÛ!› ¸º£ô¯+>½„ÿþñ¬T°Ú産îO#WWŸpúÓ‹þ¨§\Hܺt_#Úì}6†ëÝeÛòR¡¿ž®¡°…]FûŽm wpwT*`{Tr³¯ëu~ë7Þ¬~е‘Ò ijò†…çÐõ”pÚê;÷î?£]A\#¼Î×~x›aSW¸hû. [!ÞþõO3÷ûÄúùifý.®¼Øô‚ýÓÐÐ6îYƒF®¾%]ô˜!Ì Á«8ÇÙÅpóòÕ¸ ØöªôîV.6Ú Æª¨V`]á~僮®!” ªÚ­ŒÃÂÀVù®µTàç¬Öo×׃>t®Všx¿]†«‹7/üÓ ®†¸27GÏ@lmº‹‚¤Ý2¼×\#ºCï\iŽÚªJ¿‡‡ªý]û§¡- mœm’O\Š¢mý8, l„îL\Y…»YVÖnå%³·:‡Êi«[-p!q+è®Ê|¼³1ÃÕI;ÜÙHÃÂÀVˆ=/Ù‰ó;ØÚ´=çG»‚¸FtW_k®·G>põÉwõÓ°0°b¾í(¶±‰ Û? mm+àlóQ*àÊÄn–bY!X+¸õ^¦ë½ÐÃÛ;£:¸º‰.¨®¾A7qz³Ÿ?é8|o »ÞÝÀÐ6Þ÷Žç§S&rµ˜–ÙÊD?N»‚¸Ft?[T¸æçqøXôcoÙi‚ ‰ë]c¥ÁæVßâøÙeÃõ-Žƒo£nŸËpuÛnŸ_ß÷8B*àj(Â(hXX/a>|ð'$~ýÒ£·û²mدÇÚ{Ãï4§ãåcÿuØ»Ñ8ÜDT7Æl¶ )½»öê&Þ2…ª¨Æ½øJ„áv© W²p» WC\YBÏg’3[[’zÝ2¾”[†÷škEמVï4£eÛ˜ý®7£5°´€û^wån¸M\Šâ-Â4, ¬‡x*\«Ìk´~ßvA6Êð´p´l¸å$pe·Ȱ¬¬ÜJýNG¶£\¼£- m|t­ç ®>&á¶BüJþcÙÜTèOø{ËS¶§ñlïêþôš·´û¾„ínwM\Áà º4, l„xö&./tÎdü9¹|.ýoõÍð´p´n¶%pew̰¬¬ÜÕ—'÷sd¸ú«…û9hXØqÑ%žN=>ßNcÜ9JÜÀÐÖ Ó¾Õ´”øAâÌÖ’2ÑïBЮ ®q7o£#ºá£U™­]møpì âZÑ=AHU*ì=7°}þvwz¿ØÚzÀçîc-¶'eýµ,›“ØÚFÈ}Ûîp{öíaÃenØĵÂûár2Þß'îËm2<-­¯6¾„›k‘9_¸µ­ºÐ S»îãö 7Èœ¯Yß§xÙ¯·Ç}öë­egpZ‹¤ð±¥ÌÖásK°+ˆkDwù8™›K…mdá¯çØÚzóÑök¾¾+¿®úáZ|Æ+ò®ÝkñŠ< ƒÅca<ÁdãnÎïòß,› Ûš¯¿·- mÜó~šð‰«ÌÖVá#W°+ˆ«Gwé<¹¿ø»X³»/¼¾%³Aã<›œ_ÿ£Þȸ,l™o|H…]êâí¸,˜l…Ú·’ ·jd¸²6 7j°¬¬\ß§´ã‹ï®ñŽ6B<{² r?èÃñì)BÄ›òaW׊îì™íÂo}Ìn}昕9I„iY Ù2\vO\y6Âm,+k÷áYÆß–Ýúݰ(÷™Úä‚ËÉz×SQKÿé½˙­ jáæeØÄ5¢ËVÉÒ»[ùÑÂ5=T@5;y&Íø ²[Δôöj©—’ W_†v½¤°Vß(v½¤ÐÀжîÈÿÄ[:3[ÜÂ=°+ˆkD÷áÚ/ÇÓܶ¶x’›e…`­àih®½"Ó{ë>Ü_ÑÀÐÖ;,ÖÇã=ÞX)Ëûe«>†éŸv´p´qoo®Š}§,6ÔŠivë·òyØ^-šâ²@r5ÈdѦ ´1i_/65°Ë`ß±õ€?NyS$ç ¹þ,Æõ<-mÄÚõî1ÚU–ÙÚBÉëþ4rq­è²™ïTÀ•¥R8SϲB°Fp'W1ö;k¼~$»õ‰DùT\¯Ö™pY ÙòâÉÂ…[²2[{ÞÂ=Y°+ˆ«Gw+¿ÑÈ”I3[»ÚpvqèòÙ–TØÊ/w'G„Ë‚ÉF¨ÏGÌâ§ø²[׿N1Õ‚. $A^=ïˆæËný‚{%jÞ—’­ {2á²ifkC\¸n »‚¸Ftù=i*ìNÛ6^ßIã²`²êGwúštÆ3öïõh'ço(ðuÇõ ° .$nÄ|ì=#tô$ÑáÖG»QGµT>/ $[Av¼0 \¹>ØÚˆ­]Ó® îGt_a˜òêå ÷_Ÿ9ÿrûëa~ÿùüíÆÿÿŸ¯¦ë”ªF]P]­l<ºÓ§Š¬ÃOñ×ôþ¬lˆýÓÐÐ6ô‡')>up¸õ‘Iiçô©‹–’­ ;RáÊóÁV~»pé™vqènÎþNï9‰TÈãß::ÚÃÂÀzŒûžõQ*ðýõ|ßÑ™ž—3½£ûP žŽ6Â=z²áîøÃ­pJÚ ÞѸ,lÙ‘…—¶6ÊEëF´+ˆkDwòýlî~þTÈÕ1Î ÿ´‚…—o àÞÓtØûÏ·0øOK\H܈ùÒ»6(ñWÛt}¡ï·ÚÚF¼óªãˆ÷TE*äêSé…_—üú¦ö©œôŽ?Ýï§ò3=?Þé_tÿúS‰ÓÂÑÆ²y‚áS,‡[_x(ƒþ0Ò²@²dûý#—K ‡¼w^}»5.×ÐÂÑêëBC×£“0°~s £³-Ô{º%rõнðë’'W3Zô´ÅáVC±tÊ£]Ê?ÍddãF>B&~=a`ãF6_(~£—å÷ûíÛxq¹™¥-mÄÚ{¨ÕÛ¥ž ¹zwxá¿KŸû6SÕØù¶ˆÑ–ý›°þóƒkÕíj>Üú`¤´³ Z_3/ $Ažœ›o3k*äêmá…_—<»î‹h7ëáÖc<(¿žÖÏÊËÉÆ}1ŸúN Ï¥•‘î翵þGþ$ëˇ¾íúø±-£ÍêeÄïéÕé×Å/¾t´·ü&¬ß(“ëËóáîçíßÙJkÐúŸyY Ù²3½®?N§ï¤äSqT’§…¢@oò!;[R¡÷úußéÊi¢ ªë]9“oïîãNïpíÉ wžÓ® ®qc»¾nîˆ>Üú§õʆed#È«37ª¬ÿ?åS!Wo /üwɳ3a®¡fØ1F‡«¨<-­gªæ~DAa`ýfžÏ 9÷;^SáÖŸ>%ù<¨=º¸,lyð EîÆíTÈÕÛ ¿.Ù™ WKçÓÁ6ûÙ‹¾8¯-mŒ‹o)îé¿7óêÙ Æ»Pgç´ºh_j*. $[AvžKô6'§B®Þ^øï’g‚8\»Ë°ãÙ‹¾N¯-­‹+ão[¿åê·ò2xö$ñþÈÅ9©.J©c,åŸf²@²dï.oÛl*äêmá…_—|ú®5“9J}þÔ'•ïâi¡hãîpf…ÃÒeñn¤¢/k@ ECóêÛ¥…›×ïÁÆñx€°lb*tó{™×3¡MtAu=º<œ[Boë^*äê­â…_—¼,xïZøÖ²<æöÜ~ïZwÛñ¶Èƒ6Êm¾lg<¿Œíù'Ôma \H\<×nsŽTáÌ]¦³M8sÇÓBÑF¨{_Â#Ü!‘aÇo}GYZ(ZŸ#×Á——÷,߃;c8µè~ïÈxø­Ä‡ÝJ?ô!¯ÝY~š;ßéa†eÁd#Ô#ýbÎí˨¸Û^S!×î;7üºä½JÍ9MïòëŠï¯K^F8› Ú1ô‡Ç<-­¿ücͯq;…ù—–ü$î+²ßþûi˜åÓ¿ŸÓ8ðÜDT7¦W&2Þà~ËÕG½‡³¶§\¯Þ‘áúÓoŒài¡èj ¹ÎÝ2ÒÕ[à Ÿ.Ù›% çÕ3íšÂyužŠ6îŽñõ2çRA½vãýáëpÆwvÿêh××ç°€>jºº =ÿžÈ*§ ÊuYŸºÎ/7'a`ã‚§ÿ …Ä~rVc¼ û©«Áö¯Kžw˜|ßb*ðYOx†íŸ†¶€¶q“8Û(ÂÍ~ç·µÛË/ýÓŽжíÍu†ËT™v¬Âe*žŠ6BýðnJÃ¥×L?ìáë¾¢ôO;Z(Ú˜}gHãgÂîÁÖ½q¾ë¾§×+‚Yßr¸ØÀ.£}ÇÖkÛÞŽ¼/C ·¥—¿C±XÍô:½ÑOtÿêœÎÓÂÑú¦ãùª–ßäÓ¨'ŸòkdÖœÐ?^#3þ·<ã=èwa]Pݺ+bTÈÕáÊ ¿.Ù×µî¬Þ]Ç:Ç+ÿ4“’õIá™E © k‘py”§…¢PÞüV¸äŸiÇ*'\òçi¡h}m¶ùÞ]?!|6îÙYÃô–K…\½b/üºdgãZ¸}[CRüÍà<-mÜïn1\yÍ´ã W^yZ(ÚõvZ¯3/éO…ýË* ¾C_—³ž_­™ÿ†îº º±n÷ó«Ê«%«Í÷Æóø9ä{°1{íodÃ!¨®>Bÿ¶w¾ó îCœ©«áö¯Kœ]ãá:ýA×Çîp¾-mÜÎN¾èa–vü†Ñ×7 …¢@ç…*øªÞTØç£Ô†[ØÚVÀ½ûÆh;ÇA;Ö;ÑvŽ´P´:?þ“} rïD lÜÞ–x)§B®^±~]ò:Á…ÆTÐŽÙ%Zm@ Ew‡«÷0|\hóS¿œ—’ ïkõúÎîmÿâú*Ãa{VÔuE­Õ¡Ûè‚êêÎ.Âo*¯UþéÞŒj´±à ³W´± -­Ï¹}çK|F_´q¶.xäï6,ØhÚ{04ÐA¹·-ù´°h#Ô`‘¡÷ÜÎ ƒº÷ ]´°h=Ðc‡.CÝ™ÆwÅŸm„zDóLî}ÛLW{<åë’ú®-lù3‹ÌÚÂÈtýUñoaðiaÑ®PÓ61¾<5ëN¿}œ.›:_gbÍçÁO{zî`¿Ï¤ù@x.L\ŸŸŽ`¡÷ × ï;J?âhaÑÆK9£Ù!÷^y¦‘ѽWΧ…E¡>.}¤ÕQ¤VÓC^ø Ö÷ÇåcAÛo&ØFÛØÑ­÷~s¦«ÍnV~Duý†…[A^É›F© Y“{«‹O ‹ÖC=õŠîãm~C”~ÄÑ¢­@£)÷>y¦‘нOΧ…E¡>> @½g4¸úÂܸ 5¢mD| ­¤w·:û@ÝG+× ïˆ6høêÒTà@Àí׃ó÷Saw«}Ún(]šl´4‘ìÞä?d`îáÞã§ËB’­0cûî£úá^÷gehaÑF tÿÂ]”i`æá.âÓ¢õÅø´Ø9¼c3l£¬Üš·TÀÕÜ]¥Ç†…!ÞÑV×y l2]ýõ%j~— ÖƒúùWÀ«÷äÞª‰äðú®ó<`;th…a*àê4Ê]Ɇ…­{B_ve7C¯Ëtõ×[•X¨lX8°ä#™@½‚=½ã½õ6ß‚ 7:Ý]t­d˜·º‹Vø´°h£}nųŠö2]ïŸüE{|ZXt5Ô´2Ðjß —a¦Áea+Äw Ðê"³}ìðô”šËG -DÛøF­QNïnõUqU“]¡¸FxwtÞ]R˜éêO·)¡P÷2ذp`=ÈGÖ˜l¸+lÐ  ]’l…ù˜3ê§±?é|ƒÙø·àüÍ_M¿[¬z¤g{¥ï·¶m#âCõJî¢åíºn}øvW}°aáÀVˆâ<ê·íS¡›Ë,·þÕ…ª[G÷”ä‡^€ši`€Ò8ZX´jðz´89pµBáËY›gÛ˜¿ÌxÝ_L=ïFn|‘/ MÖ·–Ë]fŒŸP8°Ñ˜gt·Ü]ä›éê{²…^∅A^ÐÝrwV¦~ß]„ŧ…E[¡>6†¿YuñrçùãÚ/wž?ÿ¶ÿ†iþ·=]þ†€ÖkxáKœ7*,,؈òú‘ïæ”1e¸:/u—1±aáÀVˆÑ·»<6ÓÀÔÈ]˧…Eë¡^;tãÐ]¸™éÚˆ²wÊP¥N4ذp`#È=ÿÄx*ðñ9¥ûR¦~Ò{¥ôøjï̧…G[ᮑܩ˺Ñ9Ý© Ñ…ªG¿çì¯[á5¾»rl°„½»iä•£pYa°ÆkW-¬ºU¿Ëáõ¼>vÌ=ô³m Y7Žè‡èBÕWrý¨&Ö›®o9–¯?ë‚Ó]¨ºÑÞ7l¯Ü]É´¾}lBïdQøòÄèÛ]$›i`¶ê.’åÓ¢¾|Ãržî²±{°Ñ.­Ì>põ5q `Ãeˆa=Ä[n$ú §3]ï)K}½lš 6‚< ÐûÑ+­B]l—Ã[úœe1¬0Øjp™— |omšë_ÃLÓ¿F»Y7Â>¢]îzÓL}’»à”O ‹¶BÝt–"§®*îâi6,ØñõV£Ï-·GeùØ@ûüíî\ŧ…G[±þø ‰Å¦ÛÛw:¿7ŠMCt¡êFà±)¤»œý»¯“Ýæµ2§*ïlxA‡€^]Ô ¹ »*zWÖnz-/l¹ò¤ç/¶KU›3µŸÀÑ…ªa_©ÕnéÝí´NÉ/_ž˜[;– ¸²Žq׺qYa°z.i[òï&<ÚhÅàG¼ý½øiA/]’l…ÛGK½SWç0îât6,Xñ…åTl¦w¹:n+³.½È”ì ŵÌ­TJ\éÝ•U\V¬Ü£Jäw5Ÿ6}ÌU†ÜÉ/Ç\e8:û¿~ÿoØ–ßj>u€Îº~÷^þˆÄ…‰[QÇNª¹Ë”2\}WÜeJlX8°â m׫úê=Ç6ܾ†‘ ¸:ÉFáG,Xißã¿®»ÜhÍ)âM]ýõ”w])<€…A®«m®Ïûáٞ³ýxéÀDÇ/Qßè¸0q#ê4#ñ•éý¹ÕáÝW¥Çw…âZáÑF½«¿Þ÷ìÂKšŽ¿}Æö¨ÐŠõTÀÕ¡ÑWc 6ZÇgM«ªð¥wú:±±¦0Æ¢í 9¡ °xj}Åè«'¤³_cìeà"h§<ë÷ÜÞŸ:‹–Ûì#†kEö£¾ˆUBøÒÍ™]c a”.TÝxJá÷'§”>é£òn’J=iE•×_EÈB“önJùNýÉÕé—2ÓUŽñ]¡¸ÊöÅ/»£Õ%øW˜¸Ñ6v¬tÅWQø‚«“_Ea,ø#Ä—H<ûÐq˜õtï–[Þñþþó÷'ü§ÿ¦é÷K+F8t¡êú‹Ó¦k(ÕÎZiúŽ{¶#puç; 6B‚\¡¸FtÉå©€+?›¯\‘Î ƒ­˜oùC¼èJdzvò«)K6\†¸6‚+DªnYOú¶þ©µÙ‘ï`+kE¶¨0*’yŸì{ɾ{ÖøÑ¾[ˆ¶nn Szw+/ˆ»àŠª A5;Cû-þŠ¥ W'£îŠ%6,Ø 1~VÉ_›uh ê¯ Ñ…ª_^Óç±ÿÖ#åÊy9z¤!ÿ¨¿ƒêÏÿàŸQ(–ícÒøý¬ð'¤C‰ïO|4ºé\˜¸snÝz*àjGå®´gÃÂoÈM¾Ãf/¶6Qò6ã»Bqè’·óSW~6wù—«w2Ií%yã%3ì_jÝ(É Ñ…ª[ŸÊÀ³JòÆëç9§Ï±õÓ»!´ðh+ØÐ×úüå®ÎPÝålX8°âÛ D+òRW;w !l„øò7Zæ<ú5%øþþe{íÞ&þyAñü jÎ?À¢m„|‚6ýE¶Gs —kwÞû KfkÓP÷!²+׈îe­Í(uH\}'ÜÅlX8°âÙ¨Âk¢RW~»†*.6,Øñåê|Zº+:0vLÚØ¡&êl!Úzȡľ¿nÈ•û«6˜¨ÜG öØ{î=íéíëìúïåÞÓfÃÂÈmGî‚åÌÖ†gwÅ2ÙŠkE—¾Q™ ÛÈ…´o°ØB´€Ï«Hb‰FÖÍCûí%!ºPu+ðÜz©TÀÕ9’»Â‹ ¶BÌÝ1N\¼Ý;Ü\V¬ÜlI…­6ˆ;I¢[ˆ¶ðår!%)žJúÙ}+7=íµ› {Úûa\Óc ÑV.è{âX6ß½£=-Xnܽ£Í†…[MúòÖ½î©ÐŸð÷yÓ9°,W;³Ï?¡…|[ˆ¶òõøB’V¿Ø~ÙE–©{ûu¶m#Ü’|vüÉlmõå>ùCv…âêÑ»º}™ ¸2ero·rYa°Fp¥33‹©°‰’?#` Ñ6>`[)î½íû<½o› 6B||ê¥Ò»«É3[ëÞÜõädW(®ÝyAØNy\u9˜Ý£#ú6K<çCÊ=£º¤ËB’ “·/SWF÷v+—kwEöO¶Zgè[µ [­lX8°bø+(Çêÿ0à ¿ÎåiŸ ã…ˡߑ­+wsfkݾ»Â™ì ÅÕ£»tÐGÉŽëWEe·>’hgÁÕ™2]’l™¼]œ ¸2ž¸··¹¬0X#¸ðíùÞo[¾p¨sÃùG,/\¾ú§ÿµü¨õÛ]ÅÏ:~ßámüxW^Fý®'ø—ñš=¢ìÙ§ÂÎeµÖ À¢m4ò ÉSi3Uuy˜ÙÊÀë¯r&»BqèB'º h½¡ € ¶B¼›!¾³çmõ™ïìyØB´«çVø”!7ÝöÚ¤» ùÛùå•rWý.ÀìÖ—×u×u±¡®Êé²d+ÈØÆ•»¶ Õ!Ö]YÀe…ÁÁåo§Â6æŒí›Ü¶m#àð—>F—qhåÕð9º^¸¼úµCÒàîS™­MQÝ)È®P\#º}eœ]òO—_š%¯>Žôó•™¾W®¹íG -DÛŠ·½~§ä ÛÀ<Õ_r` ѶíØ*%ÇúMÙ­NœúN™’©y>º,$Ù2¹J"p¥ówWupYa°Fp§WE)– {\ô`Êm¢/ñþ‰÷zâ4&®'N× ÝÂÝÕ)º“qhÆ„óX^¸¼ÑÜgdãÇ} %³µù“ûD ÙŠkDw‘áÐ}ÅZvëCË  Zêò…. I¶‚Ì­XIl¾ 6\V¬Üãr¼gyÿø­f7ï—Íy±yî—u¿w”õÿúÏc /úr3¯ø%¼yEÜÒ^¸¼þ»n}ôûî:÷ÌÖúQw¡;ÙŠkDw‚¾n¦)êwe·Þ‡ŽJï¬Ncè²d+ÈK@…F*xè l¨/‰á…ËÁŸ‘ûV6‡3\ÆÜ[Ã\V¬\úöj*lå‰ïl Óe¡ÉF¨äÚwí{fk㊻øì Å5¢[»h¤}ãl{¦~Þ·OÜ7ãÓ£õ`lR2wÍ>vû˜{f¸0q#èÝsI½a?ø¨×ª¸íG -DÛˆ8o$vu ñïèÐe¡ÉV¨‘ûSÝ¥ñ™­ 6îÚx²+׈=ý7¿e·¾àº®j¯K9µj‡. I6‚<]n™¿^‡ÿ»µñéå˜>þþóÿŽëð÷ßÿÉ¿aüØIÿ”¿ÏpúüàóÏìñ7ô.:&n„ýrEoW$<4ª7ìéÄðÂåà_ÊLî×¥‚­uƒîZ@²+׊.”Ûs_Á’Ýz¸(«ºÿN—…$A>ÒßÌëRaëEA~ûh ÑVÞ¿}ñ™µ›‘ÞõcÞØ§¨ct¡êVà‘”·”çdkŸ·–‡í ŵ¢‹LÝÝ´œn½ãÓîùÐv‡ù²d#ÈÓÁð¥'©ÕD‚~DÁ¯øœÑ¿ÙuòP/çßì â…Ë[Á¯çAüõ%'kwNþ¶+׈îåA¼×ˆœn½¿Sn£˜´Y_’lù2y¤}t0úþ~µß˜ŸûÍ>Ôã/è³;¾-D[yž9ònCI…\d¼¸ÐaáÀFŒ¼ÌÁ¿ëuòÐÀâß÷ â…ËÁ¡9»6Ψ³¾ìV_œ¡SºWuÚG—…$A>*“y‡‘S!WßIïùi:,ØŠñÌï¼¥L'[›/yk™Ø®P\#º‹•޾QËtÊǽ›‹™háÑF¬? nˆÛ.Y‡Æÿ®KŒ.TÝ <´G<(c¡>ÕÛ°¤ÍÐ+#–>×cËB’ ïö×oì œ¶^VÒ¾+a ÑÖ>tXf>› ¹6”»ÏóÒaáÀFŒÍ«oT3r} q—3УXOЖð¨ôÒêT:»õoPúRu.M—…$Až'óE¹QyÚQWÒ^£ U7¾€× (-åãäf*äjχÂ(X8°ãí’Qᔆ§Â«P¾¶Ž9¿‘c‰ïO\ÿhZ.L\½ väJ÷QÅÓ­÷J1ã¤OAزd½a—"âùë/Ø|+âi­ã{óh¾1&nÄ|÷ãG¥ûS×éY®v(üˆ‚…1Æ®Æõžï:Ýú‹8+¯¸:&Òe!ÉFù7v§wûrïL1Þ®ù™—7ùi¾Þs°e¡ÉF¨ù™„TØöØnù& M¶BýjÖ¬[ïRÿºß|Émd½Òzü#ØlZx´î Ü!v×M—-¿/»¼ô#ŽmzD†Dï©®Ó­/ZQŒ:ë ËB’­ Û Ï7å{ç‘+KàT§ÂôüŠ—~ÄÑ£õ%âÔc?#|.-ru^ê=JG‡…-Ü{w3M—èìžÎ]Îħ…E[†òÞã[§[ï딲ŒIoËlYH²ä¥6¼ÞÉROoŸÔüº #K¢ U·&=гh©«Ÿ÷ølÄx‹èÇ/è¾ 6ø¬ãÍWØFØB´õ ÈŒí ûkô2 3î*=>-,ZoÚ3ôMLÿq¹ü¾äoñÜ×!Lí=è²d#ÈXÝ:|-½ÃÕþÎ}fŽì Å5â»`®Ò"ô¢š¹:«ñÒ8ZX´h ÕÑpp+»õ7O+Ó[2[’l½×= • ¹úž¸Ïo±aáÀFŒ÷®^m8žŸù§üýTžñÃ?ÙçßÐç¸0q=ì—ÂuNz7½ËÆ"Ë+?Âd!ÉV˜wè­q.eYÜ¥K|ZX´hðøøS*äÚOè?±Å†…1FJL-`¹æ¨Ô^ÌêhH—…$Až{xáñ—Ðe!ÉF˜7ðXzÚ7ruÊã> Ì†…1Þ±9šÿŽ”Cô©Ót}‘Ç·…hëáÞ°ú$w‰î†ú¸kté²d+ÈhÿìÞ÷Î4ÐÙ¹÷½ù´°h#Ô#ºBwrdú˜Dþ.>y•|ZX´ê +…¯§B®Ž-î÷lX8°ãjJõƶ`ÆÍ=ƒæmÁ\˜¸¾-¸¥}î¢è 〻.šO ‹6Zw¾Ÿxß{*ìþòÔ´{êl!ÚFÀk¯Í9¸÷»/›lö(ãÞî¦ËB’­0ƒgÑSì©«ãŒûà=lÅ?÷C×¾ä륅E«§î‡>–ùw®­"Ï3cyyž£ÛàŸÙäØ3²]¨ºñê¯G-#óŠÚTàF^Ê?"qaâVЕ$ïÖ€TÐê$¾ùª¾,4Ùˆôõ«Õ”²ÀTÐÕ¹¥òufµ”‘ ¶‚Ì.£J]Ÿó¸k¿haÑF¨ÁÓÞ#†' ü†ÞC†´°h=ÐC‡nÖxËFOXû{ËFhaÑF¨\õVàTàÀ@î¿Ï8&n­Q:?µ²1ËÕAfVF/=Ø\W(®`pûÛ_–i`xAéG-,Ú 5vtÀ{ºð„ßÐ{¾0€mzF3PîÒL’»€”O ‹6BÍß=Nïö“ý~|1ËÓr•ôéwj¨Ù²Ðd#ÔG‘õBÚTàÀ(î¿J7&n}»ž2ì¨%KÙ~v€µ`‰. M6B½ƒ)þr¥Lcº»\‰O ‹¶B½‚ã»=ÓÕyªòql½ Öƒ<ù¤×ÞÃ;ÅI|Zxt5Ü´¿_Cm÷KÞSÊô×P·ÐV ÑÓHî‚é­v÷LóiaÑF¨ûZÆúN½]ÖÍ¢U·~yvôþKüöóTàêË~ãÚö[ˆ¶ÑZhë•RÝÜí2[¯ûr…â~„÷ò¸µÄÐRŠ®×pŒù»’ÀÛß¹Ÿ hÕ°ýzðÝøÇ¯QO¬ýÀ‡àÂÄž¤Zâr§Ô*ëfSo/µzn¼³u¡êÆk:³+¢RA«I”¾<5´Ûë¿!ÃõpøoEàÓ¢÷ýÀ³¿Ö4ÓÀ$Ö]kʧ…E[¡F'õ®NÔ6eâ£8dX8°äuG±†ª¾Œ©ÛU}¸0ñjЩ=(ƒ^Ÿ ú?Ö€ÛþÏF1l+âØÞý ¼—ê{†«K~DÁÂÅz[œ¿Þû.m´‹íµ-Kû€j*ô'ü}/2ÛÓ~µõø úη…hë!Ÿ:´xß]š˜i ¸Kù´°h+ÔP¹‹ÿž ók”~ÄÑ¢@÷hÕyëš3]Ÿûëšù´°h#ÔG–ŽX9’ ZŸ ·—»ðiáÑV°Û¾Sp›q`ŽÝPp ×'RYgNàË'¿c[­ÛÆG£¤®NYÝhذp`#ÄZFè>léÚ¯7wJ,Ô-v6,ØòŒ^Rä®Î40Qp× óiaÑF¨ôü“6ÛSWæš>ô×¾óiaÑF¨×ËŠW3Œˆ Å«¸0q#èXÖ=Š’ÞÝêðâ>:Cv…âZá}¬~©f»QœåãwûrðúFi0ŸmźÉÐ‘Í„Þ è¿Ê†O ‹6½£û^î³3™®Î˜´‚u/— Öƒ<_²_zŽ;…Á™V_Â;•Á¶m#Þ=¹Ì6½ËÀ Ò]L—…$a®Ö°ò <³:"Η<“=3EéG-,Ú 5·x2°:#õÂ(X8°âË …¬ú½TàÀÄ¿¡ò0&n[³ §|RW_÷¹$6,Ø1PÂØ~¨`¾,¶~þSŽþÕ…ªëÅó Žþƒ3™®NTµz uC” 6Z÷nðû«Q3]ŸÞø«Qù´°h#Ô5p©ÀŸ¿ã·\ÂÚ=>-<Ú wm›ÿNQ~ÖŸÓ8lýª U7úí Ï(†+c^¹ºË÷ØpéFXoÛ z™ÿÜÂ^æ¿d–O ‹¶BnâºÏdº:¦ß›~‚€ ¶‚¼CË´?pµ/rŸ`ÃÂ÷h \ÛUgÓ™¦L(ýˆ£…E¡®$›nT½-•äͪ7>-<Ú 6¿v,xu~ÚP󯧅G[áÆ²,î²±åí£½úTÉ]6Ɔ…!Á¹»ä~ÁI’»âž. I6Â<£Å;XP º:MRšœ^Ά…A†Ï‰-Z «Þc\’Ê©ûך„èBÕ°Û=Ó­ê±eƒ—†Ò1º,4¹jn¦¦ˆõÓý~|"ÓóüF?ÑãèÓ=:-<ºîY›G.¹ËöGûÒD¾ÏÙÝô%Ôõwm!ÚV°±]swEäRùН~DÁ­£ç Ýåë™&8îòu>-,Ú 5÷hC*àÚkâ?ŒÁ†…!Fï¤õž.èí®þÂS>-,ZõÚ£o-3¦î³dºú¢,ß›~ƒ ¶‚¼šÓö/ ¯ŸéØ»ö#Тm„›\ó– øùÔ#¯FË ƒµ‚»€Kqÿ†ë%ãX[ÎÂú#Tªn„= ¸0xW[Ø6EòiáÑV¸ÑÓîÚõL#®»xO ‹¶BíTºkO3\ܵ§lX8p5Ä´“:eˆ« .CLƒË7ÂFˆôò“AyõÔu¦«¿žÒÜô#lX8°äã3uÝþaÜ,óÑöOãØB´­psëÙRWf¦îú;.+ Ö .x'½~+‹>ò­µK¯î\¢ U7Â~$`™©°‚ö}–[ˆ¶ð›Hû\î¶0G\ÿ¹º,$Ù ó ¹Zï§Våe¸:aBáG,XñÖ#¬¿¸ôp«£¬»¶”ì Å5Â{œÚ}NîÆíK'”á.g3½ÏõüöoÕ;æLÛ_ªàcsýlÛªù/¨Ù»\˜øGÈ[â²kz9mºüž•ŒU{ùj¦Ÿs„Y¼Ê†…[¯ –3pWRf¸2íu×QrYa°úµŒY¥¾ å#ßÂvQýÜË9ÕÐ6öÔ)A¦Y J?âhaÑV¨ÑÜûÕ†]w¸tßßý\ 2í0RâêtÑ}|Š —!n„¯hÍŒ»d|þŰ(ù\½bœ 6‚üYiG,fÞÞ&çßzý;ÅÌ!ºPuWàiUŸ_ý®}ynn-b*àÊ”É];Ée…ÁZº³Ù_Ì—áÚ¯æ/æcÃÂïØæ#zØ$põ·saÃÂõeÊÞ}T+Ð*à ¶Þ6v~‰Y*lãÁÛKãl!ÚFÀßJã¬U¡»²v¿W¶×WîÊZ>-,Ú 5Z1ã.Éß±.,Jê\/Ègàµ{§îÔ#fš‘úëCt¡êVà¹5P©€+ó½ÿl,7.a°…hï¹…ò©€«½ ?¢`áÀVˆkmº¹šñ´sÛøœ*ݨfŒ°…h‘L«÷äãÉÖWÞ£lW(®]nUOzw+S~o W‚jvÆvû¼õG'\ýɼõGtX8°⥇çuîºÐS‡æFîºÐ]¨ºxð,¬»Àü¤«3e?T-/§Ã­ c7h™v*àêÌÈ[XN‡…!¾\úe].:¯È‘€¾±{ÒÇE';Å~ÚB´«ñfV–¿vy¬êÅ» øÛ8¿H-¶öò´—Öñe¡ÉV¨‘Ò ïùÝ“­Mû½xÙ®P\#ºà)oíÜ W&ÿÞÊ92+ VîpÉ2jÐRW5wÕl„ømm.UüE·§ŽL÷ýE·1ºPu#ðÇíg´røTÀÕ9©·~Ÿ ¶BŒ}1oRgŒêè—éúl·¶m#Þゾ1 ÛYYÂ_çè§½lWûPó_PCη…h!Ÿ´÷ìÉÖ&KÞs°lW(®]na`*àÊtÉ]ÈÈe…ÁÁ¯¸B [SW‡w).l„ørk‘5Îjg¯÷]Hpûh Ѷâ½Ã ?ïŸu` ÙµDŸsðm!ÚFÈ?kµˆ¥ÐY¿ÄRè]¨ºx»ÜìN±n¶ì`{±î€vôëØÑA÷e©?°}ÙÉRG‚­—:rã! VoÏØN°»ÌqfNî"G&*÷Q#¨ÝÇv/m_%Û¿íD»À:ãkWâûŸüß"€ ?bþ¿o1ï_Ò 6³µ%–û,ÙŠk´è;’á.dÌpµ_s2²aáÀFˆ¬¾=‹ ¸úÛ¹OO°aáÀFˆG¬¾`WAz?1‚ûô¸ý´…hñžÆr$î²d½¾ÀZ{m¥÷|[ˆ¶òÛ˜u—9f¸2Sr9rYa°Fp2>æ5e©°…¥Û~ÚB´­€ì ŠTØúƒßØX °…h[ß¡‘×]ä˜áê¬É]äȆ…!>ò‚•®©S&þêþwf+ÿd²+׈îQ‘sÌ¡¿Íñò5*}žÏäkTöégqÙÿôFëÇ‹÷GOÝB­XN\}éÜ5ÖlX8°þëMä:¢TÀ•—Î]÷Äe…ÁÁ=Rê«ñ›#{¾¹Ú²ÏõôoŸï†‘^žŽE1s#%60àù7€l!ÚÆ9س€ó t×QMo+Ї=wl„x€·PÉé'ñ2[øP÷ä Å5¢{œ!a®°Sa×ß¼†Ì@€-DÛøjwGçkâ.<™ÞN‘èð„ 6B¼/@ᮉÏlí tÅ“]¡¸Vt?dÄš‡¬?»‰\ñ` ÑÖCn¿&wjfãEipA®ÜÖŸ=Qç-˰ž×‹¾‚Û3"eÃÖl‡$ü—÷f÷˜·Œ_Þ¸,¯×þízÖZ­o ËB’ ÷ u—5p¥M¸w…¹¬0X#¸–ŒuïÏØçëý;ÂlX8°â Iƺ Ý3[›¹+ÝÉ®P\#ºµ­ŠûeÙ6&'íûe¶m+àPõ6£W7³[?´ûEÔý_º,$Ù ²}láΦd¶õÖqcS2À¢mœ»Å— ¸2l»·$¹¬0X=¸ 2ùög¶6¢¸k€É®P\+ºÐQ~ÿžá‚í”ù÷ Ù°p`#Ä=’mò_H˜Ýúø1)#“ÚÓe!ÉÕ 3÷ÉÊ@c‡/À.ƒ}Ç6NÞ-K\EÜ»{\V¬ÜãÄß=/í$ÂÙáç>nÿÖÿ†}ü­}ÕG¾Ÿõ$µÛ~ÚB´­ˆ#;#î¢ÔÌÖFmwU*ÙŠkD÷¨ÁDÚó®ývzŒh°}yp(G«lðé·te·>ÎÊ«(lYH²Õ:ì4âö¥²4»³Ó`—Á¾c_±¤¸{§=ÕÑнÏÎe…Áê§k×cÁ쎄hë­bíT³»²q…¶¹ü¥dW(®ÝZº¯Ên½W^”þ^íÞè²d+ÈÜíTÀ•®Â½Åe…ÁÁ̳ͥשÀž­ýÐøÑÍ3iáÑúñõØ`nò¤ÂîþŠrh[StYh²Ñ´ù;©°•—ñÎ~ ]šl…úUåIú¬L*ìqÑ{¨Œ¯k‰O|µ6&nÄ|{U[};WÑ~§w–üÛþyû¥Þ|Zx´ë}Cæyî{>²[Ÿ3mÊlLÝ ¤ËB’õ oæžà²ÏíºÍ6P+?ù´ðh+ÖÀIuýgf+”ì ŵ¢ËÝÍL\ùÙÜ»¯\V¬\þæZ*ìêÉ¿%H—…&[¡Þ€Ð]e›ÙÚ[ç.³%»BqèÚĹù©í;Ùq6,,Ø sO¬‹J[kî2.²+׊.2‚ú/–Èn}–¹+óWµf€. IÖƒ¼ÈlÍ]”‘ÙZ“pWe]¡¸Vt‘îÝä:»Õæ°uJCS·Îè²d#Ès‘ç#¢Ìö3…=~ϳ´Ÿ¢ŒÀ…‰1?6d~ñþÛúqÌtÎÉǯ9ÍÿöŸÿþŸ±ž>àþ)_Ÿ:Ó[¥ŸhöÕpÓiáѵPçüç—¹ÜOÜô4èIÄloCiO{Õ7Ql!Úú6ʾ"+w©Cfk#Œ»Öì Å5Zó†ÌýW d·>º|?³Ïêž+]’¬yêŽôïÜm*äQÛÀôÂ(X8°ãYûy N¶öÚy+Ø®P\+ºÐÚoTWñN·þÊ)'m2Ç—…$Ažg¬›Ðz6­Äö”«/ ?¢`áÀFŒ,…ê®8åãé™…´ðh#Ö´Úöý;Ýú ¨”H/ú¨Ç–…$ëAî;ðË“ÇÔÛóMûÓþe•‰ý©oËU?Øü7´ÜQŒ.Tý#ì-¡YU¾œì_~T°T=À— ¹Ú¯zÏÒaáÀÖ‹ƒYz÷mßט€y7nÙî×ðº]µŠ~êó¡Yêû!TÝhæfè]çS®·îmçZx´kè³î“{§[p•ª¨EóÒe!ÉF/GìÌI‚ÿ“ݧ¼‹»ú.ªëä]¨º1I€ù½Sù¾ìº/¿*˜VRf«GS!WÇ\~DÁ­7çUzK)‡O…|ÙbÕðУ9C>¬Ë}]„Ê-e5kZÛK|N¹:üú‹|háÑF¬w(é=ëxºÕuï•¡]_±e!Éz‡~Æ& ³:iP›t¶‘wqÐ_uµ'‰á…ÊëÓ?êO_Î2/¿+˜\@Ï…¦B®ÂÞ£¬tX8°>” Ãð •7ÞüÌ)îꛯSž6ò蓵Ÿá…Êo>ÎÏúÓ«³ïaEÓ&^¨¼Ñ*¡z¹O²œn}Uz—E7[’lyÇRða²TÈÕ®Ö{þ Öchº>xåþ‰ 7š"XÉà.ýÌ00꺋?ù´°h+ÐPnV& z—Š}jë”yÓ¢wªlYH²dð¢ø´^*äêP€Â(X8°ãùHéQo6LnLøš¯dŒ°…hïky¦;éå¬çë‚zrz9Dª^ <­~°Œ90̸kùtífÚ 4”ïtŸ§±H=oëû:„©Ý6]’lyx•YPnHMï²5"Lù™ßí£‚ãùô„o ѶÂe:á#Á©«#»û3lÅx#—§‚¾ì£}4Ž97ŽåŠìñ'ŒFÍÇ…‰ë i‡¾jººž*.LÜhŠÕ}“sptïŽÎoWû›åxéG-,ÚõåâEÚX*thN ë—g¡)¥»6Ã@ûs×ÃòiaÑF#!Ÿ­Oïpu(CÝG+W¯9žwþ["LÜhûkYG8Üœ ·>sWjW}bÆ–…$ëA^ª[Tç›íÞ†Î40²¸·¡ù´°h#ÔC=?Ô¾Ošuóetë¯gG¯7B7§B®v|îÙlX8°Ñ>®u ÆÙ¸†»‚–©6É»³ÍMÑõmîe‚âí/>Ï0Ð÷¹ËÏù´°h«ËôAO´¸¯Mn¤Þ›¯1°…hM|Ýûº :й·ué²d£a_ Öq§‚žþš­øœ. M®Fšw¢¹ tmðÂfÃe˜a#Æ×sîÖ<¾Ó羜ηFZwÑï廟sWýÒe!ÉzjvŽ(ÿÞŸ¤L—æ./玟pîreÙöoú=J;ÝFˆ.T]oÚë€æ™Ü{¹™F÷^.Ÿm„zÂó§þj…¬÷Ï>jÿ^çÖ¡ºPu+ð+Ô}ã·«¼h°–¨óg¸þ^úk‚ù´°hã7Üj[çkéÞ È4ðÆ»7ø´°h+ÔX•;|\>ru~æ>áφ…1®åñÏϽ'zÈGWz”г¶Dé²d+ÌàIôÀ|*äjÃ@á¿GÞªÙð;{¸Y‡FZÿÌ]¨ºÞV6°Ç]!a`Pt×HóiaÑúé6BÅ£þK,îÁF˨fÛÏþɽc—i ësïØñiaÑV¨Á uÐÓò©«…_<£i ÷vI¦†çÞ.áÓ¢Öq”?p3-©Ð{c·øF–(Dªn¾>'ißGß^Ãú8|ßk?n ×·ª.Ÿm±æ#î*émvw™4]’lLF6î° Øxwön`*h`XwoaòiaÑV¨w´..FO>iíãN}€-D[øŽ]C‡_Ä‘ ¹ò:âpùÈÌïç–=è±öÒ8Zx´Õ@ʺµùÁç RM¶_>€#˜«7ÓÀˆàÞëåÓ¢6V º Ü3 ÌBÜ5î|ZX´>wÚ¡[`nMº-£V°{69÷^÷!s÷V7]’l´‹œ ö£B´­öž0F/öH…\mÑ(üzä Ì>ù· 3]]ü[Ð|ZX´Ñ:°ê2A~†ßÐ]’ϧ…EýÇåãel´Œý•}£e™R¡G·ô¥~%Û[ÿfêñ:=Ôt[ˆ¶ò¹ëÐ4ˆ·ä¤Ñ[@ ‹¶B íÉà7z¤B®¾(üzäÝ òÖWœôp\;÷Ùªó3÷×ãë!I­×£ÃÂv1‚·Þ¸·ÌOĽ[æ´°h#ÔЊÖ]âŸÝú/è®ñçËB’ÕiÇÌí„[­âpëúq|¹=º~ ëÆGçCð2Þ·p#êóŠFÿ¤v*tàÙýß³Ÿ»ã„õšÚTàj+o°/ŽÖKzk,N˜*xk,haÑFóÞÐ&2h?£¶ÐÍ6ÐB`úòدl­¼"zn_Ÿ½½4$FªnµtÝá-Ž;éêÄuPfÄZV„ ¶‚ ]Úƒ_s’ ¹:7Aáò‘ëó4wËIóloK-,ÚjÅ–<ë¬õ)_DÖië[ˆ¶¾Nè;úDGˆ¶ÞNN˜¹îêäR]³g˜¹âxsê´¸ ú-܈zÝøÜ}¯¾¡‡^tþzôabg‡Sa÷ú+ڜՎ°…hm<Áà=ywÂõÑØ}ö.€mz'­Þ"Ê,Wg€£2µTjdW(®`t_Ú[†sÒÀDÊ[†@ ‹6B=£e-ÞÒ²“ÞoiY-,Ú˜úU¾ózãsF Ûj# : ô‰‚þJ<0 qè·î˜Y ¯Æ}à•Ù–17zØöò༠ù-Üyå÷lÿO¦Íçvã—çžÐWtÔ_"5™–yàuèBç†F¨ºÑbÀ£:ÞKN˜¿¢ô#ŽmzGË2¼¸']Ç*ßœUëoé°p`+ÈhY†·Pñ¤9¬·P1€­‡zèДnç,¾=éú«â.¾  …Eë3ï,óÞó~¶ÚZœ±Oú€«¦2 罌67­X†ü–n¾Gë3öYxu É<ððýõðØ‡•Ý×_œ00¨£ô#Žm´’ ÜžôÕeº>*ø«êø´°h#ÔsO.zN]CÍÊäL^³aáÀFó窵×ó0¸±¦vÛåƒëqËÇf#î*b>-,Ú˜CÕ~Æ–,]ùÜ·t«}_f–¬ hS¡?áïç{¹\íÌ>ÿ„uº-DÛùŠm õJ¨G{µ·P½ð# l„˜_“ ûÚ±Òjwl!ÚFÀ÷ëU~_»©e¢YïÔ1øF‘h€-DÛ 9vè²Sf¬êæä&ºpúG ‹Ö=Öʘڿ%tÚÆSßøšÐ>òu¡êê5móØ£éEw¡k¦© »Ð•O ‹Ö'°cmo¯eK˜ºñvà´Þ„%ÓÕ‰šöÝN5³Ã†…[Aþ8B+Xß>÷ØQ l!ÚVÀ¹')RWgÜ(üˆ‚…!žjÃW×Z:¢[û«Bù´°h+Ô—²PÖýõ©ÐÅú[ãºX×[5ߢm…Û~óÞ¸tÂÀ<¥q´°h#ÐðÅY9UT¿4¶9Ãvë¯pϵ‹†nÜgÊѰ¥KÍ%€7ïåöâ—'G‹ÜÜã‚– ¸+¸ù´°hc]³læ S7ž½~5|s¡(Á6ÞÌêç&fÝ|ööZÑqÃvÑÓ ©€«“X÷ñ6,Øh;x½¿,tD¯p÷—…Öé;u¸Ý 9ØÁú²dºúÂìJóS3ÅlX8°ä©rÂøœ_º/s›ª)b/ýˆ£…E[^À ·û¦òÓ†&­°þ wÏÇ…‰AÐjwñó„&pýÅÏ|ZX´>ñË2·²|î[ºõìh É}zâ.m´í«Ç@O"¤®N¡Üg'ذp`#ÄèyswýínúËoé²d+Ìh§Ô)=5í—éÚK2tJ“S“~lX8°dôª‹óL×_a9Ÿ] ucUžQ øþv¼E6\¹6&Jkí4µ»ò[ˆ¶Ñ6èŠé~¶ºŸÿ’ZWɧ…G[ÁÆÒ‘èi‰TÀÕ7Ü}¾ƒ ÖC-,Ú 5Z¿æ>‘’éê\OëÿÕ lÙÞ÷¿sÍp¶¡¬?Bu¡êFØûzú­½J8ëæþ€[=û°°‹äRa?ã2SKûè²Ðd£™ ;4йËú2\§ºËúذp`}f=׆¯;%ï \¯xŸ«%3çÐë®ÚÊ40ª»«¶ø´°hãEœÑš÷á‚LWGvåѰaáÀFlKÔ}¹z†¥q´°h+ÐØ•Gèy‚TÀÕñÊ}‚ ¶B\Ïn¶zfÝXÜúëÙѲw¡û ~£Â_çN—…$Md ¦ç.›ß>½ªO•ÜÅclX8°1¹Ûê°ö’eŠn´ Ê«¹d9ãG³ž¾_TÒ|ki.L\úR[—Ÿc®».k©­É½ò#L’l…Ýyvµgº:;U:)½¤ ¶‚\»[ëNí[Ö¡ÞÖ_Ï^-ß¹Sžõc¦ÿ~ÀÌ­?Bu¡êF£±Í\wuÓòöUV}ŒwW7±aáÀú¬dÎS´vRt«}ìÔBëTÀÕ†ç. gã•+î Zâ>ð@—…$a^ê÷‘´—feÝ| ÛK³Bt¡êVàÑ]wqx¦«S)e,ÐKÃÙ°p`#Èä§TÀÏ×fä•dqYa°VpÑ™»@9Ó@ç®PæÓ¢PïX–Ì]Ó”áê â®ibë!¦•T—!®ývþ"p6\†¸ÖC¼ÂŸ¶<…ߎѨ3çµ~)\ÿˆå…Ë¡ïëK´×8eš*ùkœBt¡êVàÁ=s~¦«=–ÒÅêõ÷lX8°dr½M*àÊÄÉ]Äe…ÁÁeWͦw¹új4”úÒe!ÉF˜§…Z4› ¸:š£ð# l„þº¢þimuš·Ö¿#ØÀ?byáòVèë£l{©ïz)Oû¯?í Ct¡êzyäzì^Rw¡S?Ýï›Æüª.W:«ƒµ{Χ…Gí|Á΂»‹ÊÖ·ÛÕô)Ž»¨Œ 6BŒÖûº+$Á|VC$]’l„™\æ” ¸2Ku—eqYa°VpÑIµ»h=ÓÀ Õ]´Î§…E¡Îy=âoRa«½ý/õØB´­€C{ãpÅ}*àê²…Q°p`=ÄúÍJÇ7èSCKœÄòÂåÐ÷üZÚôŽàü½¨©ýæâ\˜¸tlth(ÆÏtµ·R¦¿z->l™\A– ¸2…rW¼qYa°VpÑyº»¤:ÓÀÔÉ]Sͧ…E¡ÆVàîÒ¼ [κ+óÈ®P\#¼à ahx*àêdÉ]²Î†…!†?^Ú©3˜ž§BGfHÿì ×·¢hòØ.G-k3%ÿe¹!ºPu+ðè÷cáÏÆ¤ÂV¼þÏÝØB´€\KF,ýÝ.W|õ¤ºâG$.LÜ úËîR¾íòÝT}âê.äã²Â`«ÁŠîS™®Î{6eQ 0 .CÜ[A†fØþJÉ ×^ ¥$¬‡xï°b´Ð>põ·s `ÃÂ÷õœé]·†Ö;Ũ!ºPu+ð`Î>è«uÚ‘uhuàðÁ¾p}#ú8@ºÏl€õóJC?°Av…âZÈ…+© Å@s¹ Ÿm»úõÕ;eíY‡V°þÕ…ª[Uá|-*›óûÓ›lóñýöoúï§«Œ+­³ý|ƃ?"qaâÕ˜WgB½·B8ÃÕY, —Á¦Áe a#Ä3V»€ž|H\ýíÜg5ذp`#ÄõoÐÞ)ÃÞë_¡½S†à —¯ŸVìY†½³Ó9îâT.[†¹‰µ‚‹~ÚvÔúdd [<þ#Ø®oDŸ~æ'tmT;¥Õ×ñdX8°ä xq´á\_Øìxl,ÝvA®P\#º•ÄêRÕ½’©¼Sª` ѶήËO tGîÃ|ZX´j,‡;8K‚h€ªUªÖ®~®ÿF-ðÉCóQ-p/\Þ>üYØIŸ0iKÆS‡&Lÿì ×·¢öUÞ34']>)õ lyì ŸÒª÷*œlm…º W(®Ý©GFw­ê W~6o©*™kwÆÊ¼…ª'\˽…ªtX8p5Ä´3eˆ«¿÷T.CÜ!^ì4ì¢ÈÓÖVî¢È[ˆ¶pxBÝR}ydJÚR|Ä •·b–†ÌúÃëÊŠ—V8üG°/\߈>vS™ÿˆR–«“SmI­¯¹®P\+Àȶƒ÷B…“­MN½7*°]¡¸FtÉEž©€íŸÍ]”Jf…ÁêÁí;¬öÀ[zÂÕ_Í[J‡…!¾|Ò‚S‚• Ú˜0µŽУ­`ÃU-e¨§Í”þ#Ø®oÅÿµ‘Hùq*äçršô#ŽmźR—ðûŸ»cÖøûÏÿ;¾”ó³Z¶½Õ³Ô¿îÖ¡ºPu#ì#–AÏõ¤®ŽÅÞ“HtX8°b|ƒÇˆãäÑÆ:#òˆå…Ë[ÁGjA¼·…œlmuà½.„í Å5¢K.M\YxK}ɬ0X#¸X9‚·Ê7»ÕßÌ[äËv…âZáí¡‘=²“ ¸úÃyÏÑaáÀFˆ«· Þª6=}hþßPmå ×7â_½:áF{Ö¡‘Û_ã U·O¯5L…­.JÝò#Lšl…¹ Í{OÅÉÖ&LÞ‹*Ø®P\=ºCÕ~øk"3\™2¡ì#†k·‡ÖÞpa}*àÚxî> @‡…[!¾l²îM…þ„¿Ÿ¢Îö8^íC=þ‚ÚØB´ðœ¯¥à´þ±ñ[õ¦1¼Py#ö¯·ˆSsŸÞåjW¥$&ÔclW(®`üècC%{æ¡yiC%{ /\Þ>¹ò0pexwWJrYa°VpgdöWIf¸ú«¹«$Ù°p`#ÄËRÿáܧšO¶6õ÷kf»Bq­èrO-¤®ÎMQø ¶BL/—M…ÝÕRþ"_º,4ÙõúJÉÒîÈM…,fm ‡›o ѶB>ü…|쿇|=¦/kùú·Óþû»ñü‚Þ÷?õ'üýÑ×üèË›ýT¿ O¢ù¶m#ä—ZSb1r*|h½ÕRLä ×7â_=Z~ïÁp=©m¯šùÂõõøäòÏTÀ•5‚»\•Ë ƒ5‚;@¼pá}*àêô …Q°p`+ÄìºÚTÐÏ610kÙ°°`#Ì#¶6wéØ×”üEzlX8°âj©ÂÔ±^x£5Dªn~ë}¿ÿlyfkI÷ár²+׈î Ïï}~¤·ëž9øG,/TÞˆý‚í» ø2\™.¹ë÷¸¬0X+¸4$º«÷2\ýÕÜÕ{lX8°âHWû*f¶ÒÓùO*’]¡¸Vt_• ã°™/î¹ïÉÙÃýLïÝïÿàŸ~7õiÇA¯#öžgük‰÷O¼×“M¸0q=æS‡§SZêQ³(-õ¨A¾pýø_âs©ý6w%þ¿×Y>Þ£Õÿþó×ÿùa‡ÿ~]ýÒô]¨ºÑ4{h‰ç¯Ëpmtðׂ±aáÀFˆ§Ï”Í6ý¨Jfkãê>‚\¡¸FtÉ»ñ©€+?›»z€Ë ƒµ‚‹çé[Šê²uü-UuA¾p}#þ ´:×ÞE}@<Üaþk.ßëõFå;G«ºt¦ËB’­ Û_=]wG†«Š»€ƒ 6B¼a["h¹e*àêoç®eÃÂõÏÏôŸ—ÈlmÔFÝG+׈nƒ-õs#-å1¼Py+öPÝžÒTôkv³[P¦NªÔõ2]’l¹òº³[roZg¸:¤¸7­Ù°p`+į¼&c8ð1¶R÷¬é²Ðd#Îä=àTÀ•!Ö½gÍe…ÁÁ=yRÊ-O© U峉'>õWü`?¡·ä\˜¸ž½t胦—Êå÷D6[Ü'[2[›†¹¶]¡¸?Ýëqóó§&n¼èämÃTÀ•çÞæä²e›X+¸Õ ¡U?YÏ[|¹ê'Dªn~E–J÷¡_2|°õYù¾Î÷Õ&lx[^¿_åËÊy,r __VÖ[ö¡?á=MW; úùôvÍ·…hóƒ\(0Lúáɯ̜ùaú7ü7õÿ~<å¬ìª U×[ãÒ![oî*÷ÌÖf î2w²+׈nß_Þõî뻾‰Ÿ-Ï@–c2—ºóàÒÿ¾ùПð÷wfÉ c¹Ú‡züµQØB´­s7¿SÛoгžË ƒ5‚;@»mîK;³[lWeW»tYHr5ÈÌûeÊ@«IÌ;÷âØe°ïØFÀÇž‘ ÚŒL ˜ÙlÚÌFù¶m#ä ²箿^ j6ÙŠkE×¾ àìþÝûõËÌý»õ\Vl5¸ÜÕ}á'üý­Ëö´¿ÙOõø zÍ·ËXß±¯+8"¤ÂFØ~ÚB´€Cw’+Ý~uç²A3¦¹SæbêlÛLv—ûd¸Úõ»Ë}ذp`=ÄëåâJÞçRÁ?å¯}RÆ·¹¿â™=þ†º(ŒÀ…‰a'¤®Œæî" .+ ÖîQHTë˜Ý•e·ÞÏ Jªn:Ñe!ÉV‘;/ÜÕò+´³â/—'»Bqè^j‰y×ǧ‚:·QíÜÔuJ.LÜ û1?gž L>ýõøÄC¶m#âÇhÌÕV*lcòß¾J °…h¿œŠþì¯î|Ø!ËÇH³1èG-|ûï]æÓ£­Xã—`tê¤C¿5ûÀؽ¨c·~#jˆ.LÝŠ¼}øÎL¶ñÛ¿` Ñ6¾!‰>ÿOÙ­áZ9Œš¡ËB’­ s·4RÛC® †Ë ƒµ‚»¾‚ýkÙj¦»c8w¹~dû7ývHƒqVÆÇ]vOzÞÞè'zü#ÈlZx´î½æÐþ¢ÇÌVú!Õ#ÙŠkE7×B©îküSackûçl!ÚFÀx— ézÔìÓ¥]ŸŒ©éŽ]˜ºùãPlmæ¡cé—qe·:Š/2?PóytYH²ä»¤¾(ò¨mixáG,؈ñee~¿¨0lm„q×@’]¡¸Vtí¦;»[Ù6VVí»[¶m#à—[‘ˆ7Œ¦Â¯*‹^¤ß¢ S·",ô™#¤Ÿõ-èöl!ÚÕˆ×æ ZQ–>ÕÞ°ŒE)FÚô‰6[.Ý*A>¶‡©7/¤šlŸ¾vÇYMÞÝQ©kS~DÁÂÕÆ±v°iä®á<ÙÚdÄ[ÄÉv…âZÑÙÛá©°»¿:/Ö&>_šl„zÄ÷Œîç=}`ê¡Wí©·óÆèÂÔÕ›}ÖnêÙC€m£ÉLÐÞ˨t&ú›9aûˤÌj¡æÉe [e#ÈÇ­A¼{[R!W‡D~DÁÂów?SaW»l÷ž-_šl„zÃóÕ³>Ìh‡Nèªg} ÐŽÄèÂÔÈïP¾Ú{ƒÍéÖ{¾EéSõΖ…$ëAîÑKuÑ[4R!Wû>ïÅtX8°ãZBµy‹1ÓÆ8мÃ@ 6‚=ûÄÔ;»R¡_KÞ}c1ºPu+ðPjoVºkuÖ—Ýz×§¼ï›:í£ËB’ ó79RawZÁkóÖ _šl…zÄŠÓ:eœÑÊ×O¹6θ/K ÃÂoH2Ò[¥w²µäž·Lí ÅÕ£;äûz.¥ù`èiwÆ`Ò~44Fªn„ú¬´û˜ùéÖ•M®Ô5]’lyÂzge[îãöTÈÕ¾…Q°p`#Æ+zO|+p*lcQä¶¶m#àÛÖÿéÕZÁï‰ëO~ãZ›\˜¸ôÛhuì°1ÌxéG-,ÚtN¯P¿œ Ý\ݺõG¨.TÝ<=““ÞéN[~µgŸØ°°`+ÌØŽ|>;ru€GáG,ØŠ14·öž(?ÝúÞæÝé°ùl¿ž{Àé“^õ U‡Ÿ80 ÁñW#9–ĮÑÖKAÆ©rmÉ{³(¸Ñʱo²{¯O8Ýêkù›úú« Hº,$Ù2X¡<±^Ð9^¾MeNSý%|ZX´èõã]!n{eý:…$n{…èBÕ«çŽ/ƒ^CyôÓá2Ô°ã\ýÀ¼×+80Êøo$ Á…‰ëAŸ ¯‰»žŸn}¬é•QL]ÍÐe!ÉFÁ’w­d†‘Æ]-ɧ…E^·(PJÜS!?wÙÆo)…öº|>-<ºkÞ±í2Öµ×Å}Òœ—qn„ü ÒôŽ›_hmßÛÀ…‰AŸÐýÇE_©ÐáÜ¡?BuaêFÜ¡/T»OüŸn}XW¶d7uŠM—…$A^Žôõ³i_F„1gDrj|<èiþ÷{€ûßçXs‘™$ñ‹“©°ì–Û~ÚB´­Ÿ;;ê®éž.ßݲçgîªn>-,Ú4ù@Kz‡ë³3ÿ!º,4¹gfAGi}s´½…O—±¾A[ÁOjc—ÞY_î¾´&Ã(üˆ‚…1æ—ˤw[owê|l!ÚzÀçÝt\Ü– ø=.‹Ñ…©[qGvÙü÷MÌàU!«’ƒÚÔT]’lùrE(§,´±¢öÒ8ZX´êJØú…d¸þú…ðiaÑF Gl_ ¾ù ruLw_ÖÀ†…1þ, !VdÎoɸoÏ}§"3Dªn¾öµŸö «lk…Õ<¡;Ž V&€ VóñMIfT„hëVUüN…7Zù nÛ{®†L…^o‹-×ZÆèÂÔ¸ƒ³AÕÕ N«üEWtYH²æÏLK®æË·frÁU€-DÛ 9¸³¼(S,½eoØ>- ?¢`áÀFŒ÷Ã(¼b«ŒNC±U.LÜ ú†ü˜þÓ¬®þó¬|ZX´è¥·ð=÷.¦BÆu‡þÕ…©q?7åk¸zç;î*ºåí ¤ÖäÁ]Eǧ…E¿"zi$zcN*äêhæ¾ä‡ ®ÆxV'•íwÒŸ¶ñªÜ¸•>F/ã}O7ÂŽf6ZJ»4³ÑRÙ ·b^[›Ý©bÌúó'}:§–1†èBÕÀ/àn¨çZÐTèÀL¡?BuaêVÜkyßöJ¸lYÈöJ¸[ˆ¶phûÙ}ÃXvë[¹Ê^Ïn„š, I6‚ ûrß{a`è¾ù€O ‹¶fvÝ•™Ö îÊN>-,Úõ†îéøK³Ýý½‡´ŠCº,4Ù5¿¦,½ÛÝ_2šW G—…&[¡žÀµå ­ Ô z¶¡õ¬?Bu¡êVØ,ùµiɯòÉÿ赫œ#¸UטuàÝl©k Ñ…©ë?éŠëóŸú_pŒ÷ŸûçÓ¢@èlªó–Üeº>{ð—ÜñiaÑV¨,»‹^› ¹š+uß\ˆ…1žÀ_Ï_ª»^ŠÊžWóJuù´°h#ÔŸÅMÄêÆ¬ý¹¶1À¢í 9­®ñúàÖ –¿†›" v“|#ÔwJ1¯Ïm­A 1ùô×h·ÑV¸Áª˜¦ZƬ×̦ZÆ]˜º÷K2íÛ¡ÒöÏdù˜ì|KÅ·ï„O 6b vÔ¦¬jÕ×zI™sxÿÅ-|ZX´è#ãõü )×ú\äŠ÷2^í_J÷ø´ðhë‡d—-—Á®Ï‹ýµÖ|º v3­‡zërµa*h`EÒ8ZX´êž_f˜Þq`¶ÐR! ·bæ^ÐkÂS!WGu÷ÍælX8°ã|)ý® óùÂä•ïAÿürC÷ߨoÿ&=°]Ê[¿4 ¿ü“…&‘¬*ž~ƒÈ†fƒýwˆðiaÑF ó•÷´+ÁS!×~B¾<òˆÍ~áˆ.tí¢§;ųÛÛ%߫ۋgCt¡êF3 (AMïxW›¿·”Îòi¡Ñ`´­E‡û¼Ãö*‚¶gïîãtYH²æÚ}·Šd³L'[ŠdCtaêVÜéŦ©°µ×òF‰,]š¬_.°aEú?(r6ÚÆåt1§l34°žv›òiaÑV¨±óÅîûw2 ̆Ý7ððiaÑF wlé¶ rõ-Dá¿GÞ»Úkx§’0ëÐdÖ/ÏPu– ½:ïk©— °…gë |ïÐó¨î²õL³?wÙ:Ÿ­è{‡¯óàWG¨ºñð–r@»+áÀFþ|HþÛ̬ý»ªYÖ·yÛ¿¬Ê§Ë8ß X38ós—Üf˜C¹Knù´°h#ÔàÉöEyõ½z„ÛK?âhaÑV ÁyZÆYoÒ¶þBá×#¿Ù6fOMuPû íÕ7UAØÂ³F²ôà{Þ)]ˆº5˜éú<Ä_ϧ…E[/¡op`£ml¯Y;å¼_*äãàôÀ q´ðh+Ö`i‹¿r?ÓOõÛu gó¸¦p®ÇÔPsaáÀVÁOµø‹3]ïGýEˆ|ZX´êÛ£w_å´WSzéG-,Z ôÖuà=úATÈÕa…_PG•Þñê\©¡þ+€­N;¶nÀ&ëèÏ(ØhÑ#ºé Ì”ÔZÌ“&w(ýˆ£…E¡F3…ÚÈ¢­µ²\Áej ­³Ø®P\+ÀàŽ¢»Xí¤±¥q´°h#Ô3¶ZqŸ <åú¼ß}80€mÄ:¢$zu4l(]‰°…g_kõø7ŠOý9ŒÃ׋ÕÛ‹ct¡êFà7h–ã¾µà„¡Á{oA-,ÚôŽNF¼…‡']ÝWeÖ ¯Ȱp`+Èà>—»ð椑Ý[x@ ‹ÖCÝW·³ÏY»·˜ì¤·˜,€m„ººYy£`èÔ¡Ö¡ºPu#ðz Ó[{sÒÕpSºVupdí £C®wËü¤ÞÏ»e@ ‹6B½ ©'oÈI½Ÿ· $€] 5ï&â2ÒÕ¼¤÷òd:\F¹¶bŒ­]¼§~Oè’¼ç~haÑz ‡jÅò){÷»Nèì¼û]´°h+Ô—´oó™ö[×NûyxôûgÚ¯] Á…‰WcÎMà”Q¡àsÞôg¯ûÕ>Ôã/¨+Ç»Œù 9§Â©ŒwmžºuÊXíºÙpéFØr.þµ «›ç™®ÿ~îzZX´j°H^ydõ&®½0ýˆ£…E[Þ¨EY©€ûË#SÊÈè°p`#Ä—Ã_ÃöóžösH™¾f²Ú¿Ì‚ 7b¾àSŠ/ëõ¡|뵡\M„ØB´­£iwíB¦qÆ]»À§…E¡+¸{å‘Õ‚ ã J?âhaÑÕ@«´ÊPW'©ƒ2ŒéÓ2\†¹6‚|ÜeG+ÒJ\ÐÝUelX8°â}xŸ‚Ð>jtÒG^v§Ø@[ˆ¶oô~wÈ€Þòê¯áÓ¢õPš:t—(dÀÝ% |ZX´jî9ÎTÀÀŽÒ8ZX´è‘…Lï´:ÀÜIžòiáÑV°¹EY©€«ƒ¹»ŒŒ 6B<£ÛÂîÚ¦LW'¥£ uîÁ†…[AÆ.Íñå¤ës%ÿ'X"l!ÚF¼Wt7À]g“i`w×ÙðiaÑV¨Ñé´»4aD?Úë/MàÓ¢PoØÆ‹ûxèˆ^–Ó8ZX´hlã­+L\ÄÝ•lX8°âIOït}BÚ°À§…G[ÁÞ¡é‡ÿS?']Æýßú‰°…hëñž:p´õמfº:C”]ë±aáÀF‡×²ûüÛ¿ÑqÊú.¶¥#¢m…ÝBt×Ef˜œºë"ù´°èj¨iUe Õ³¾^¸ 3 .ƒÜ!þxSXELÓˆ½&þ&º,$Ùó„õýÒ.Ô¥a†k¯ˆ¿ð‘ 6B|»«<ذp`+Äà­qþ°L÷»0ŒO ‹þõ+ùÂ…©ÓäçÞóW:^–ßþêS÷{xf1Ïþ„èBÕõV8_¾kM>hqÚõ!·á‹!¸q+äÛ ÿ–×sâýE÷h5‰V?¡Ž‘™®ŽêÊ6¶^Óˆ…¿öYÿÙæ #‚ût3Ÿ] 4­6¶ tuå…Âe˜ipäFØñ޹þÒÇL}‘»ô‘O ‹6B=ö슫TØú•}7 Ål!ÚVÀ¡üŠ¿Tl~»‘H_¸KÅØ°p`+Ä`©‡¿Ê4ÓÀj¥q´°h#Ô3´cÛòí”Ó®Nw[>ž‚ 7B¾ %RîbõLW§6Ju†^ªÎ†…[A~•“Œßo·ø]ýÚãz û1Ìÿ~Fß;.z=³—õ'ü½ª$ÛÛþf?Õã/èsj¾-DÛù†í&º‹™æ·/NèÃŒ»˜‰ 6BŒ6pWæÍ঻¿0. I¶Â ΩŠÆ²]Ÿ›6TØB´­€Ð(€ÖÙ§®.pÝ'ذp`=Ä úÉ[ùô‚Þ;ä/ŸæÓ¢P÷ÐNyÓ§j²]Ÿ™¶|¬&"n…üõé(ÎÜRA]Ó·K'ÿðßdæ ?ØãOçãÂÄõÝ/‡Þkz9ºüžhåƒû\M¦kcÍ®$SõS5lX8°þ•§eè¿ 0qã}çW·¦Â¾Ž”´ªÜ[ˆ¶pnáe*àp E¹¬0X#¸¶ Óy«3\ûÕüÕ‹lX8p5Ä´Seˆ«¿ûœ.CÜ!ž_…c_ ÖœoË…ckžƒÿÖgÂgMZIK’SA×gþ:j>-,Úø¨r§é#]Ù®/ø#"n„|EËkÜ'^2]:*i ý¼ l™\È™ ¸2%pžrYa°VpÁå÷¦-¿ðÂËÌ·µýu¡OcpaâÆò×gM×G®^¼Á¸0q£)îÜ󩀫Ó&÷‰ 6,XñÚƒ“±^®ÔtýÚƒ³T~„ÉB’­0¯Ðϧä“ô:Å W×X(üˆ‚…!ÐÃîªÛ-ôWÝòiaÑF¨ùõ~©°µ5Ë*Eº,4Ù 5”CñW(f¸2yt×'rYa°Fpgl«=W ¸ÚÝ»OB°aáÀFˆ´”ÁZÍÖ­—OØ£5J?âhaÑV¨Á<’¿P?ÓÕ…¼²„ÕËôÙ°p`#Èä2³TÀ•Î]Çe…ÁÁå×<¥Â®Ñ •ZtYh²jèfX•V†«Ó{w•¬‡xë°m*´Î:põ·sW†³aáÀFˆ{t/É]D»õ讌»Š–O ‹6Bý¹š¤Uil—u?ÿ)µJ#À¢mœ¼-Ÿ Ø»ýe\V¬\t®ì® Ý°ÏÀïÚÍ0Œ™QõP†¸új¸ë4ØpâFØ1v‘\§˜ ¸öÛù++Ù°p`=Ä`ñª¿Zûå´¹–š¸ç²Â`‘à2vËÞC[}ÙÜ»{\V¬ÚJnÂU©€«/š»… ¶B¼Q÷ÈRW&=î==.+ Öîp ™Ïž÷ë¡ßú'í;5À~œ¾LÜ3½ïWú@?PÒ8Zx´îËÖý"ëT°G5ÑgËë>‚\¡¸FtÁOËø÷¦wðÿÖ4]’l…Ý\q—³dº2œî]§ Nj^“ Æ‚ÌØƒ,C\NÝ»¦l¸ q#l…ørã'i• {Üÿv>ÆÕ³eô%Þ?ñùÀÿ÷5Ò|\˜øóÿ}‹ù6‹tSÁÖwM1ÙŠk´hòîM*àÊäÓ½ÛÄe…ÁªÁýéÂѬ¿·È⤫ƒˆ–®ÑRmtX80dÆæXâê«áÝΣÃeˆa+ÄÐ'ÔàjTÀÕ€·~… 6B<kuw5áÉÖF o9!ÛŠkD—¼ ¸2nx÷;Ȭ0X#¸ 8Èy÷úw¨Pã§Í(/±–/f»Bq¡3vfŠðÖ^ ÷VÛŠk„û@(¼› ¸úÃywœé°p`#Ä—‚¹ûÕŽ©`k£…·8“í ÅÕ£ÛwvyæÙ±{·ëN¸2^x·ëȬ0X#¸=”Uso×pµ;ón×ÑaáÀVˆMì©Ó²ð _aI…~ýy_‰Ñ…ªŸzjQB*àêKã-¢ø¡‹áÝe7a+Äìˆ]h Öß]†x²•AÊ]‡Èv…â?yo"pågóî¥Ya°Vp_w¿Oß;ü!¿Çõ¿ÿ|ÖLÿ†ŸÿÅ¿ás7>øÔÿmG{4C^‡MWú@?`™M 6Â}9TÂÙ2N]]ó*³9u—› ®™¶_\†¸24ùw¸épâFXñ@Nœ§®ôrîD?—k«Óu'ù3\]6¸“ülX8°âXæ—ÞÕÚüÇ[”Hf…ÁZ‘ÿ&æW„owÇ©ýo¶ò†ñ›—«~°ùoôê¼8†*o~B’§øvq*àêâÞàfß·aüõ÷ï/O>þut¼‹×#l!ÚFÄ—x¯éúp¸ôà“Ãvùà´­—ò¡í¡Ë¿SÄe…Á­b[±1fTǘ²ï¸ØØä˽5`§Xü{PlX8°ñóíÈUoÛÉÖ&4ÞB7¶+WîØ!©d|O=puTu°aáÀê§$~Ü…=pÑ6ÚyC*p¥Ÿwo qYa°Fpxv_¯› h°ýzðždÁ÷ߦ¶/>`ó€I”}ÇÅÿÚå.ÄTÈGÊý˵ö háÑÆ›ó¹åGÜvÎúµÓ#n;‡èBÕ­ÀCÛþmç+ó„á×GPüÅ£#r¢Ã_<Êe…Á“šcOûÉ„[¼³‡D!ÚÆ[·)ÒE¶ú²Çxá;4nùï<åêà¿ 0€müûǸÅÙh÷nŸ³ÑȆ…ë!žºèðÝõ”™­õ¡î‚J²+׊.wß.pe…åÞgä²Â`õñiêÑ%¼ò¢m´ŠIL¹oº8ÝaÖÖ™g'¡|øi7BM–…$A¹U5©€«ƒ’»ˆ ¶B¼có¬]Ÿgéø„ì4l·f¸:’º·[Ù°p`ã÷›‘}wÙgfkc©»î“ì Å5¢»"¼2–ª·9d¶Þ_*7ìïê ¶|ünÇeTŸ=üøûÚ<ºœ2ÛóÒã§çùoœÿ½žÓʶÚû4Ø@[ˆ¶pòFh*àÊüнqËe…ÁÁݱ\û¢×uõå+ø‡ÏÝ@ÝL\šÜ{–lX8°þûÍÈ‘Šãh©€Íw£ac…Ë ƒµ‚‹%Æ–YLÕÊç.`ë´Ô´:%ÊvgŠÜ¨’Ñ…ªë¿éÒÉ2aßíø+ûÈ®P\#ºGŠº¶tPÞoýˆvëýg¯ôÌjr. I¶‚Œm§»·D2\LÜ["lX8°âé™] ^½Ÿ zúþÀ7¾À—…&[‘æî¶¤®L Ü»C\V¬\¸<Ë*,ÛÐ8 ëP]¨ºöÕ.½³£‘mã˶í;¶m=à+9Ëœ ¸òZº³â\V¬\¨ŽVéòô[²[Ÿ ÊÌKMBÑe!ÉF{䨻¾,³µi¾»ÀŒì ŵ¢‹–ùOeK`ýª U7Â~½4‹rÌ&ôôœ’~½$"ãÏ/¶½ðƒ=þ„ºèŽÀ…‰!_Ь’ÿˆZ¶¡ÖëP]¨ºö Ú2UFtý¬vvëãv ššˆ¥ËB’ #w2û«VVèŽcÙ ÙŠ«Gw»ÜÑEÚ"M…ý,á%[|ÚB´€_NWÓÒè©ÐÞÙÑ…ª[Ǧ%ø)ªÍ=ʘ ·Þ§ÎJo­æ³è²dã÷±=Owþ;ÃæÓýæ²Â`à"Åäþr“ *Îö×›]¡¸Ft—îóý)Ù¬Cý¦?%¢ U7ÏOm¦Â¢ Yº,4Ùõ†|Ë5»õñdQF*5K—…$AÞë__k¨úɬýÛ5”ý]¡¸Vt}3ý RÿÇgSÏz ­Û~ÚB´Õoæîûq´˜w25²šóÂ(X8°Þª÷¡‡'þà_¾¯ì3¶ßsl£ÅðS©°¯­‘–°…hw%|{Æ/øúKRvChaÑF Wð*ô°@*äjïí;ß ¶b ÍÐã÷rÖ™W÷ö’Ÿ³²ñKªµð-„­ÿ†#¸'áÛ1~ÁÀ«íÛ3¡…EÀ 0Zµž ¹úzû í`áÀFŒ¡ªç§©~],)îßÃÌ0ÐÜÜ»˜|ZX´ñ¢ñвÖTÈÕ&ç«Ä €…[1ë/ ^ØúçN•ïXžÏÛ)P·2\onþm4>-,Zÿ§|JéW&L…ý\ú _–>c~æõ*?ÉÌ«ó#º,4Ù 50ÃÅëÿ^îÛÇ)ë×TØG®cøräuw€-DÛø!×Z!ñù[ºWÞ™6²n^úG ‹6BÍíÜ›•Óö§îÝJº,$ÙòŽôKhà;µâÖ“v¯3 48÷zO ‹ÖÁùRn½'îýy»:ÿŽŸmz°è­£^¶ñÔÍG£žzõοÖÃQ,]9õË_kRÖŸ© —Ò½jæÓ¢õ¾ Ÿ)Á«A..6”»Sè^vwO ‹6~Àíü:ïâ9ÓõVç_<óiaÑF¨/÷sÒô/zݸբ©¯íƒVã` Ñ6~I0?æÎ§gxÝu>-,Ú 4{}” xÏÝ‹:>-,ÚõŽÎÜiŠL?Ó+Ã00Ó|ZX´êuÄ6ÅÝ; ^÷^Ÿm/qí´Ú+u-õ'üýS¬yˆé·«}¨ù/èá¦ÛB´ÏhrÏÆÉ4ðBºÓ8|ZX´jp/ÔŸÈ9¯Ý­3îDŸm„º~ÙTÎZ¿ÍëF*gݾ.T]OååGPÞk¸º@=p ܵ~P] òiáÑz;ß:4çìΜeèÝ™3>-,Úu­¸úÖñ˜¬[Ö­2A¾p}#ú—ë@9¹ºTÐÀ(äÎ0òiaÑF¨§îÃý'ð²^ï‡NëõFη…h!ŸÁµ¼?©›éz‡èOêòiaÑF¨Wú¸TØV'ØúÝŽ(]¨ºvzê8¶Q!Õžò°…hßÐŦ;éi ·r'½ù´°h#Ô;žµòŸ¥Ì:0ðôÚÀ£®íl!ÚzÈŸ?5cŸ zÜû |ZX´ê˽XœŒ}*è§ú­‰dxPjfõ]6,Ø r­8èüùÜ{ ™^÷Ÿm„ºš;ew6ÓÀKèÎÂòiaÑF¨w4ãÞ[ÈtõETÊZõ6,X rß_9䦋S¡ç¹ÍÆMuÇèBÕÕTwß Õ=†;)ÁÓ·~Ø;)Á(_¸¾Ñð't¿ß›û>é껪|éJÍ|ÓaáÀFgòQ¬TȃV×||Œ/ M6½ o‚û¤Þ›à …E¡¦§tÒ;}Œ8×û(Ú3Q´ðh+Ø=?k™ ݼƪ9㣠U×ß_î±âdçSAWí¶£@‡…AîÑŤ7ËzÒÀïçͲТPO×ÒÒZ!úþ>(œMdy³ŸêñÔž;À¢m„|ÞÀÓ›e=éê ©\¥æXé°p`#È º/áMý4ðûyS´°h#Ô7-œ ¸×v7½ð# ¬‡xÐÏ›]=éꯧ\Ù¤æVé°p`#ÈùVVŽ2pµUx³ªtX8°â¹úe„[ɽìïÉF¯÷‹ò…ë[ñ_¹9œTÈ^‰Òžy °…háÎ}§¨©°ÕWôÎÔ:À¢m›M¢‰àTÀÕѺfÃÂõºugT3]ýõv%j>• ¶‚\ÿ\G{z/ë93Iú6Â#Tªn¬DASe©€«¯£;¹Ç†…!ž/ûÇœìRaϯ­L_“Y¾]‰÷O|Ô·Õ#paâú¦ú8£ëGwB5Óµ7fì•ö§¦SÙ°p`£aoô¸ó ΣÁç¼Ý ?¢`áÀFˆwlé¦!SW;wâ” ÖC<õè±;qšéê‹§575mʆ…AO=áפwZ_^µßÆ@ ¶‚½@oŠ;¯7½Ô{9w^ ÆBL›ó—qK鿽.ÙßìCÍ¡j¦]FûŽm„|®ýjOæeÛ¨åiOæØB´€c¥€èvFzw«½“{ÿ…ì Å5»¡c"|WD*l`xq_qa Ѷ>Ùøät¶ÕqæNr:À¢m›±»“ÓÓÛL}Tw'§Ù°p`=Ä3z§~UA*ìúËè¿b!¢m|Ârî|éüvRMo!î|)l…˜»y‘ ¸úÛ¹·[ذp`#ÄGQa):wf?ÕöáÎësYa°Vp±MtwN?ÃÕ_ÍÓgÃÂ/µ½óöœ~¶¯=§` Ñ6¾ƒù†¼s¶žÎŸx°…hë·;ÿó½q§ž7 ¿s'ž™¨ÜG vÐПvÎpí÷ò'žÙ°p`#Äü„b*l¥QÜIƒÒe¡ÉV¨_›¸Äóê©ðŸô×Õ©óUÏîñGôÓö!º0u#ò³è8_w~t›í½~DÁ““_©€+#‹;YÇe…ÁÁÝf°“ö'ê²]íðüi:º,4¹êÊè.…Éìøìû?S]^·Œ1Ë-#ÜæêÑÝù ˜TصFÑ6¢ËB“«¡®4d÷vkfk ýßJvË·¹Ft'lÁçÎe¸ò³¹3F\V¬\~Ö%v§l9ÜÈÑe¡ÉF¨ùù–TØÕÎÍŸ%¢ËB“­PÄžT°µν!Ev…âªÑ:râ%°ý³¹EdV¬Ü ™{7ŸN¶Ö¼»OlW(®]òZ?p¥1xsdV¬Üõ¨\fÞ” |úûÝxEØB´ÕÒÚ¡ïqλr²µ—Ï»Âv…âêí¹­-ðÙúS>x`¦ëháÑF¬W Grg4O¶Ö2¼)M¶+׈î¶B-ÙÒ<åz›pç4háѱþ‹ÈÐ÷e¬ëßöÊG—?å.?ÛMÇ/¹®ÿ¶Ÿÿè¯øÛP¢ Uׇ«ÁzÇoä#3\ý9ýùH¾,4YÝd áM—eµÖ5yÓedV¬ÙËL¦ÏåÓ ™~®K†¯/^¦Ç’îº7: :-<Úè..£¥:òóÔûøí&V7ýˆ£…G {‡æºþÔä)×;:wn2€­Çzì€ÒZö,³•.ÏŸ>#»BqèÎÖ\÷TÝ žÌÖžÖá!»Bqè"*¼þÇNù>yjÅS*t½B÷NµVŒ.L]ÿ9§yá­à—»BíÄ»3ÌÇ-øÃüú°ÈÇŒcÎñ8²¿ÿüåçíßôßoVmÐçI!ºPu}¶4_‡b&1Saw—FHL¿†èBÕ°C/ºÿñbçgJ“zßC*ðYo*nûh Ñ6~Èåµj¦Ô¤B~>öôåΑöBˆZx´>ìÌ4< îrùH m(N…®pÜšF„èÂÔõß3ßNÀJ‡ÿ¹ëHM]ÜŸGˬ[1º1Z†èBÕõNv].?(ew*ôq/ËøíÁO||Ëêgöù'Ô$e.L\ßÀõ©Ót57°®#&®÷Yë†T«Âi?w‹èÇS¡k³”[#P€-<[ÿ%·~Ã:ÿöf¦‘&ØkMPMýDàÂÄõNÅ¡šÞwj`†…¯ S7ã°A› ½·&.í›Ë!ºPu}j±M3‘úrcfÄ-à?zïès©°}­Ü¾Ÿ` ÑÖÛÈ>`ÓO|ÃèE/Õ/|ßXRdýùîäoG—!ºPuã7=ŽS '=vŸW©ðúòS¿Ny}yŒ.T]ýMǾŸù‰øTèæÏÚ¼‰£ U7\~ÏìÙSawÖ£7I1ºPu=ìñÉÇLš§Â6½9Ý£ U7ÂþÚNà”ê¤wyÜõÝ›lOã›ýT¿P®0¶muÑèÀ' ô lt\˜¸ºb‡Ïë<ˆ³ŒárKÆ÷5Fû#À¢­¿ø_>ñNœ_dÝüAÛç!ºPu#ðõ}—ö °uÑ>¿ˆÀ…‰ëAŸ:4Žo^¤ÕæÒ¾ëa ÑÖ»ô©{Õœ2é©°ÕYË-€\ˆ¸ò¾§ïD¥¯7ܾ<øÄŸA§B7»–öÙˆ.TÝè畾ý’ h1î}#‡ ·F!ÚÆ;ŠoEãû:©ÐG÷oI=S’ÜŸSx´ñùrŒ4CO…ýü1{Ò²å‰ ×û•yúøqq‘õc¸ /-l!Ú!=øNæö‹¸ñ‚î ]‘ ý¹ÎÍç‰K¢]¨ºþ–Ûuí³®·¯ï­½}Ò ׃¾¢³‹†…è:Ws 7–¢!ºPu½“Ùè«—ôN#î¯. Á…‰!‡ ÿÚb»ÜQX{tÿê"Dªn„} ¨dH…>7\õ_vŒ²=ÍWûP¿ .0l!ÚzÈ÷]16¬é25—†U] /TÞˆüåÄmLJ…nÍnŒ§!ºPu5ðSw9ÀOZ'¥Â~ãT:°æ^.L\:NÝå«7´É@*t¤Áøç11ºPu£±¯øDÉ=—9uèáÝs™]¨ºø~€»÷†¡õä¡§÷­A¼PyµTeꯎC§§–Ìçá’çLݿ忾ÿ×/z7¢ U×;â~ééõG©ÀB8·ý´…hÁ²Ók›ROÛ¯ßáÒ?A=õc­×“>1ºPu£Å\yVް üþ¾œ<{Þõjêñôaƒo—A¿c„üïÁ‡c³šù ÑÖÛÊ0¼Ú -‹Ÿ ý y¶§íjgv±R&¶m#ä>yñ¯e²Žô- k™]¨ºø_*ù×2Y‡Þ¿– Ñ…ªëþ×亲>ãë°†…Ræ¡Ð4,”bx¡òú;åêêR&zoÕÆµ/ÃBt¡êú2l:ö¯fL*ð¾û«*¿LOû•>Ðã¨ÍO ÖÛù²nü¶’ Ý,joç!ºPu½¯9ÑÃLY§¿|±¦h1™ž»7ú‰@mç|Zx´ÞÎÏBÞò+½Ó×7ˆ¶jäÓ£`o{Ï7¶ñàÍ{Õ¶m=à¼ö§.7 Žß­?Bu¡êFØŒ4s¡ž Ûh/í †[ˆ¶ðeÛ¹?aœm¨­¸ÏñÆèBÕ°o ¢• ý5»%Nl!ÚúôpÛ^—JÑÒô©ÐŸð׎ë´ç·œÈõ uƒ!À¢­·òýrxš–L…<ú =ºš» °…hc!'MpË€ë÷UÞ˜—ØeÀïØúþÿ¾<û¬aÖSŠ¿%ÛÏß3OˆÖ¼ìüšuç¤w·1¼py½ÓÝ·ÚÜ¥}Ý’mãgm_·ØB´÷Ÿà.׿o‘u ëš´®Kݵ°…h«!Ÿ»ã¶î‚+ºyü¨y±£ U7?Õ2.Í‹ÅÓ6^ÒæÅb„-DÛ 8<…nØ>;yà-µ·TÝ< Á…ˆQ_«Õí‹ôS‡ÞQ÷"=Fª®¾_‘IKÝTØÇ¦i3ô‰ W'ŒsÏ_¤ÂîþŠ#Y«¾,4ÙhÞ[m¨hž›Ÿv§í;5ÏÌù²Ðd=ÔÄO…ýê¥hóº,4Ù õΟѦBÏ3 <Ñ…ª?>¹FtR÷½Öb2=¿Ñzü½•ÓiáÑz¸Ç_[ùg…Y‡ÚŠV¢ U7ÜÀ@l/© mhoätYh²émæw‡©ÐŸð÷­ælÏë›}¹ÔYíÈl!ÚzÈóV³:0»KîÒ»¬6“æ2A:,,ØŠòÆïÿR¡ dÓˆÚsØB´Oä»ô.OZ3i® ¤Ã‚­(ø´UN–Ÿo#µt‡/ MÖ=÷;{€I…m¤ÕÛÆ[ˆ¶ðyçN R!wúc·Oûl!ÚF¸×=ΤÂÚ‰| °…hßТ”·]c«Æ(¶þàíµQ¶m+௡’’ÇL…|9AK¾òiáÑz¬—‘¼FH…lt‚í ›[ˆ¶n´Ú.žK… ¼“°ý´…h‡‹8áÒ™TØÀƒ»K~"l!ÚzÀá‘Ø?û^¯iÝoUûä›O 6‚ ×Ëâ•©ÀfÒPs ·bþ(Ú©ŸN¦oûö]x>-<Úˆ5‘– ûºKD[\ØB´€¯µ¢äöÅe¶žÐ¿¸ °…h¯Ô¼±¸Ì¶þà7—¶m=à[þÄ÷Ô@*øëïI<óÄ —×KØ6þº-¶Ñ/¶¯7l!ÚFkg°{ñ¯7³ ¼¦þõf€-DÛøqGok*²ñî´ï§ØB´po7ÊЖ÷ÙÚ‰y` ÑVÏôÍ{þˆc7ëÃç–ùÜ_mßÍ?¿äø3 5úÙ]¨ºÞwz!½Óê’³=ïÁ†…ažÐsCÎ#ãÀ»ÓóˆÀ…ˆ1_ØËÙôNõ>÷·¦}Χ…GÁ^kñíkðlWßKÿ œ. M6BÍ_ŦÂ~>öH]{Óe¡Éj¨—nœ*}HóÒï´Ÿ¯ãÏÊ\úEØB´­€Ó—P©°«íĽðãËB“­P×ïµlÏ)¼y#R{N)ˆ.¯æ”–nªå”š×ܧmtZÍkî[ˆ¶ÑÚ—×±†oán®d=åå¯FV»Cé®öõ}m¥a ÑVWܼ×pmÒ¶äSâL[ˆ¶Ñ·Ïƒ³ò>§](ÜY¾,4Yu°jM^}nÿj;€­Gûý84eTH…}L7ç:šØB´­€/³ŸTðÝ_-+sæ ×gmÃr9ÀÈIΤÒîõ¡'ãËPâë_†€ 7šúåJÞ òø|ì™ì …Gë±»ž\ž úr`d|¯øõëÜê49&®O”ú¤éêLyìv:.LÜhŠã ½öþ4P–ë/?ħ…G±Î_8aŽ©À}¢Ò>¬ØB´ˆß#ä­©R!×Û‰!ȧ…G뱞&lѰÌtý±V‚¶ðl=ÜóåöTÊî|*ägÄ·/ɵWУõÉÃ<· l^²ç^*OÙöc Þ~×"¿#±~ë`Œ.T]_ªÍë5C÷nô)×P÷vt-tõL@ûÄ+ëP{ñO¼Bt¡êFà󗨻©ÐÍRó¦tŒ.Tý#Ëû MòF=ð¿}ד?^¨ßþ¾Pc÷¯{òFG¢ U×Ûä¸~”V§aYÂæ]kwµõø jØl!ÚFÈß¾[M¯S¡éÆéûÚ>×Ñ…ªëŸòg”©;U©ÐõO£d{íßì'šÿ‚ÚÖl!ÚFÈG|öèŸkdj/þ¹Fˆ.TÝü ÖÁ•u/zÙùSTèæ‚ }¢ UW7«× ^û“kÙ6íéµ]¨ºþ*ÍǪ€Xø¢ÑÌ ?wwÐPLÜ\BpaâÆ¯¹–ÃÝý]ÍTàÆÚ¼a Ñ6"ž¿ÝËàRÏú“7—ïEØB´õˆ/ÝJ/ôLnìÚ5W¨FØB´ˆ÷µú½ö$f¶Ÿ/çø} ݞŌÀ…‰1ÏÓ!ê\.ºñ‹¶ÏBl!Úú tÙØ)—ôN_´LŸm´ïmæOšS¡›+óö ˆ.T]ü:ÖK™Ú'æëÛgöÃûgæ!ºPu=ðÛo¦ƒ;ü§Â6Ôö‰Kˆ.TÝ{íûŒ7ºõl÷Ó¶÷ë¶m=àùnqnï˜ =oé|Ïs·÷ì!ºPu#ðÇç3¸[u©Ð­ÄèmÆ]¨ºø±ýCêþv?”ÝjüCjˆ.T] üÖu¯Ï7Ò6ìR¡?áï ‚l¯ÃÕ¾Þï©u4¶m#äÃÌNÔ¥Â6gÍ)Æ]¨ºö¥‡[zïÝj?pIœ*ŸŸŠ$NCt¡êVà7öÆn*lóGmÞ’ŽÑ…ªaßFîøŸ ù™8î¿MrÛ'-|Zx´뽞piŸšgýXkW`§æ!ºPu=ðãRÝ•¾1šf]ŸÞKl!ÚFÈ·üŠþÑÓõ^{V› Ý|IÛÇŠ]¨ºþ›zûÔhº”^7²gF¸0q=èóøª×á,`RA__$ÞÂ+&n„üµ®c•_¥w{ìµUt–×éM~š‡¯œ- MÖC½ ;{C!¶±…Þ¾` Ñ6ž«Š©P*ô¼qö=5×>x†èBÕÀ_fen(¤ÂZŒ#$À¢­| €R_ùº1tFàÂÄõ oC%3c•m#¿}c¡ ·b~í¸HÕ?©ÐÇ#ñÿ­½d{U?„¤vè¶m#ä…9´YËÛAôoþöI Ÿmûr"µi– \ßÖÊôº¼ÑOôøz—B§…Gá~»}‚TZ• x-WíµT§*¶m#äÇÁ3æ+6ðjú熶m=àù.Zn6;úþÞV²½nWûP¿ v*¶m#ä}N›Þíœ#ç±l!ÚjÀ÷ó¢HâpŸ »Óv ›ç(|Yh²êË‘3Z~9ú6¿(½îoöS=þ‚Öº#l!ÚFÈùCO*ìjKq˜|Yh²úeµ½ÛŸÏBí€FžüüÞ¢÷ÿŽþòãö쩆C§ÖÄñÂåÕº¸}ÆËt™””L…þ„¿¿CÙÞú«}ýÊ’ÚÕØB´õwÿZ£E#R!?w­©|Yh²èmávW©«íïbé²Ðd=ÐÓQŠAîSÁ_×—Ì<†.¯÷às?’wNSA«›÷Í»½|Yh²ÞÌç|1>qñš ÛÈ¡4/º#l!ÚFÀ§Zê´}?æÄÕ$äIoÕ>Ðãè§Ó£pç/ã› Z}+›ÓÔ|Yh²éeÙëÖTØÆÙ¾Þ°…h¿äªxc|*x³B÷Æ %†.¯ÏPÖ‘½MšÞi£Í¸éG-©A9îÌ`ÚB´6x)§!ÍøSaÃrûJ%À¢­|ï>æ*Ì•Jæ»ç~{ ××({Gλ§B^ÏE{=g­•ØB´õ¾ÇW _Ô ôÛ¢m¼ú}qË-‘ŸåNïÅÛSù¶m#ÜÕÔu{^b¯V/µ'&l!ÚVÀGö?v§íõ¶'&è²Ðd#ÔkÏÍŠ§B6^Éö\~€-DÛ wmØžʶñÖ´ç€l!ÚFÀ·Ú²¤=±oµé}{."À¢­|þ×uüõT*ìNÛvl\FÈB“õP÷ü U*l£Ž½q"c Ñ6^Ýhœ¾lµ4N#d¡ÉV¨gîd*òsßSæ–8Zx´kþl*¶ñ>6Îcl!ÚVÀ鳩TØÏsæÍ#d¡ÉF¨ùó¨TØÕîÏ9û‹…&ë¡æÍJꦟãÁׄZs>:Jª®d¤Ÿ¼]ç/"L­eZ+#d¡Éz û…=qM…ý\¨þü§Ô w€-DÛøç-N´™Éx)=¶o#CûÌ$À¢­|*¿àH[»_? ~”hÓï|Zx´ëãÃÌú‡T؃º5ÜZ·c Ѷ¾³k+RaÛÏ=w3¿,ú¤?yk[.L\o-ó8A3eª'Ëz§ÒžëáÓ£«±f–'”ÑÞLgY…ËvVkql#àÓÀ.}H… <8l¿ž{³ç'í‹ù,×›·5ϧ…G´‘ËcoìGˆ¶þàË„N"œu=[+—…»&Nïp§&xo,äù´ðh=Ô+Ü»ú'ßëuæ \Üß>ýÑ…ªa¿ì†RrÈ©ççƒË´'¾ù´ðh#Öpë_îdj&Î"ø(]¨ºö !üsÙlCîŸÍ†èBÕ°~§ž6|f[OCÞ?l!ÚFÀÃÀÜ=“TèÃð·›T<ùiooöÍA9ߢ] 9sb[z=¥öQzô{ºö}ø3®Tèæ—*Úg‹!ºPu#ðsñM fÞ3ãæ¯z#óà —7B¿,¾ˆÓǬCíÆ?} Ñ…ª«ï»©þÃ6O Ozx÷2Fªn~©ì5·O OûØ$;æ2¢m|{Íf8Õ’© ûNÏog|Û¯øõÚs-‚ WNSºô½Óô2}ù=/·CsŠRa[[ ßû_Ÿ¸ö™Ý \˜¸šêî»} ÿ ÂÄõ׿ïðYµ{9sêÐ`á^ÎÄèBÕÀ)^f5X*ìË£Ú7%÷¡Ä÷'>«Uš!¸0qµF³ï¯ß ¦­RÁ›-¦}-Ä —7ü‚OÝë÷S?†½éû2µyý£ U7 ļTÐÖ°šñ}|Ã/_¢PGÕ\˜¸òaÀÇ÷ºýÔ¡öâ^·ÇèBÕÀO»ÝÖÝ•W© ­“ñ}ºâÃåCej ×W3}Öt½1_ƒ¦âÂĦ¸â* )ëÐ{äO!…èBÕõÀ]e¼;ûwyÚI#-fÑZŒô\˜¸Þ8ôUÓÕe^¾ÆŸi Ñ6â€ÏxýkëqÀgþµuˆ.TÝh޹¬líÔÀ/¹¤gÏ;ÀCNkv?ëêq´Ž)ÆèBÕõ%ðø;¥/"SÁ?ìÌÞÎ â…ËëÂ<Ìì’‡TØ£V¶Ú^©@ Ö£½KtCu rg·SîNË;l÷ÃV›ÊþqÂŽ¶š8q£N·}5‚ 7‚ž¿ÎÜ­H4Ø~=øq0ZO› Ü82Õ\a Ñ6šÊ±qN­M^rÜ~E|ÝØ½­m#â¿t1¸ñäÍ5—CW=rØ\_̰ÕÊè!o°2{,!ÚzSé/Y!ÚJ(ºùÕ°æU\Œ.Týc÷zø­6%j®.fØêòs>wûyÓ­áºa>nÜéV.L\MŸ"}C8üSþ¾x^óâyzÃöøzØpaâFØ—ÚX×¼/tÚÑó¶ï ÅèBÕ°£CuÃ}Nï·OÒCt¡êzØÇ¼Bœ}¥ÂF½a¦¢ U7Â>|4€8/÷ä¯UhŸ€ØB´õ9̸ÔV_Í›E§m¶–æí¢]¨ºÞÒ§¼IG,I…}]Ȱ ["l!ÚFÀἫ{Ûâ´Í¶Ò¼q£ U7Â>Ö6/üÕg©Àõß´½l.¢mD|Ak z´D$6ð†Âö#Тm|­Ÿ§o_MŸ_â ®Bt¡êVàÑı{_ô´¡nÑ}Æ-Fª®‡}îh_”ÎÀ í‹Ò]¨ºøã -³-6ÐCº«è"l!ÚFÀáíýB¶¡—Ô_Á¢ U7Â>×§¤íé—ù-Ç`¾¤ é—]¨ºø]”ÂEi©°Õ]La Ѷ¾ðS©ÐÍÖÒž~™·ú`מ~¡èFà«Û‚Õd½¥oøŠÚ}4:Fªn„}¿¼ m;¦¿µüXV÷ùUK½?tcë.Dª®Ç}é?JhÙÆlúmÏ6ØB´€e{Ð{äÏ7fÝìÛó!ºPu+ðµœ@{¹W¶Íµ½à+Dª®ï"-hÿâÏ9.èkêO9òiáÑFßê³ÆöÌWÖ¡ÔŸù Ñ…ªßë·»´gz³~L޶ïW{¦7Dª®~Fv)6ðªú3_¶m+àõ–Þžã]¯‚¿wrQs¼!ºPu#ðÇÖ Ô·û“ŽY‡úGÒ1Dªn~E§0þÜW¶WÕŸû °…h2<íYÞ¬#¯iC–7Dªn~Çצþì× Ü6Öžý Ñ…ªëߺzÖžíÍúÑjæœí Ñ…ªWß‹3˰?ã÷Ì]{Ui^ý®g6~ê.öó÷¨ Gº,4ÙhÞS=ОõʺÙkµg½Bt¡êFŸñ)©?Ë›õg§8·³¼!ºPu£ÅÓw鮾¦þd#l„9χˆ5°©°­NëFõnˆ.T]ûÞãÓP~7ëЫéÏï†èBÕÀ;]— »úšú“ŒtYh²êÏÔûó\Y‡Ú‰?Ï¢ U7Ïϥ®¶–‹. MVC=výÑîÐ)?«E(Õ0Yhr5ÐܬPlè…tg´bô2è÷t#ð—£/”Im*äjkqÏÃù²Ðd+Ðõ)aóÿÔVr|˜’·ÄÑ…ª«Kü±ûýTùÆŽTàÆžSû]#!¸0q½µ÷]Ï_½¥B·Þ¥ö•gŒ.TÝü°@ý¹{ùsÊվѽüáËB“@¯ØÔÐ=?åêC»çà|Yh²èa\øeÛ©ÐG=AæÇ‘¸0q#ê—lÖØ“ ÜXÁÞ5#paâzÐÇ¡ú5ç£fÖyÖø½É´š!ºPu#ðÓåF:VÁY*ô'ü}:åF³\í¬>ÿBi?m!Úzȧ. ':ðè«öèZéP„-DÛùå ­$úþþès~ôí;|²\må¶m+ä—Ž…U³ ý ô=?úþf?Õã/¨ýy€-DÛù2Ð+nRã_!Rqúq8¼ï®ô@8m„;`º• ¼SžûÎ4‘O ÖÃ=o;}I‘ ¼³²67–C1¼py=ôËHÞXyÉG5/¡ý'¯9µò’/rVñQzÇÇãιoãCþûþJ_¿¯nñiáÑzã[÷êµ­wÞüÌ›+Ïo~ /\Þ >9oö'o—cq´b›Tè@‹´©nÂØB´õssô\S}Ô]Í“ØB´oy®• ú9Û?~LÞ1À¢mÄ{åVhûµ©ÐŸð÷¦²å¦2½ÙOõø zÈù¶m=ä;ÞûëWv´;œµwSÝâÓ£p/3;í™ ÛØúhOרB´€o/œ–ÞO…þ„¿†§Ëme¹Ú‡züµK °…h„ü”ߌào5è³Ú<óì>es5ü›þë×?Ó£²„êBÕÕšž©ëÑ 8Ÿ xÜ[¶mõõŸº|q-1Ÿ Ûxðæƒ[ˆ¶ðëAÖŠ9üóÙó5~Äõ~/\^~ß­äT|*è×,Öþ_šlDzœÙ»L©°÷³yw,¢mür6…4M…ml5Oœ#l!ÚzÀ‡Ký>iÈO… <¸ª` Ñ6^½i¬}ª2ToìjŸªØB´ÕuÊ4̹fŘëçß³Ï;îçïù3?O}£ U××)ãXëmÛ‡·l¿iûð` ÑÖ_þ‘?L¤Âî´ŠïöÁ. M6B½Ï„I¸Þ¼þ)_f^Ÿçã.øÁCo߸0q=ìS­Ü¦}:1 P[ñÏ%ذ°`+̵‹ÚgÓåPþ·í°ö9]šl„ú¸i†›‰L…~‚yYÔ]¨º>;™/ׇQ2©;uÞs#Ï` ÑÖÛùÌŸT¥ÂV_Ïö© ]šl„úòé_Ê„*òÑUqS|Zx´ëýÕ‹ª$Raßž=õ¡{ÓŸlþzÀ#t¡êúªÛÁ÷*¯ÎØ–#åËÕ…ªë-rÈóÍTÈõ÷È?GæÓ£XOìÍõôN빓öš€Zx´ìã³°ÌâåTØFªÊm?m!ÚFÀ·üqiòþ­“޼4 Ñ…ªëK“µgÏñÓ;}ÝX§-Mø´ðh½•6³æ²¶ñr6—ŠУ`_ÞeÖͧÂúBw½„-DÛø2Òs½©ÀáþF–:&n=F*¤ÂZ‹ûˆE„-D[øv¹÷‰’ùM…¬¯ïÛÓÕ|Zx´ë†ÃEó©°Fâ®õ°…hŸ*ãÃUf¶õ¬ìef€-DÛøZ+Zj_hfÛHƒ·/4l!ÚFÀ÷íFâB3ëÏÁáûíËÌ[ˆ¶¾ÄÜ{új-öóýùùO©‹Ì[ˆ¶ÞƯ8iÅVÜx9Ûšvð;¶ð±v@¡}©™m 7ô/5l!ÚVÀ7sÞ¾¿»_>Šþu:Û¾Á˧…G±®&Úo,ë3nL®n,ë#paâFÐ?óá´eýþ™Q¦-ël!ÚjÀçnD'âî¥æiî^jFØB´€×ê+Û—š§­ í M¾,4Ù5±– [‰›—˜|Yh²êž?…M…­>vóÄ›/ M6B=ÖŽÚ4OºO»ÚBÜSn¾,4ÙuÀD*ø+÷@›Уpó'Q©°«­Ä=õãËB“Pç !©‡ÞR¡_'•¼{1ºPu5)8üyk*ìj{ñ϶é²Ðd½ÓúÞUñÞ§ý¼¿¡ÿz·|{Æ;&®7ï1W‚R+žS¡¿Î“‹µCpaâzK?f@ÜZêôŽOŽÛ¯˜¯3&®Ç|úH}ÐÏqüŒÀ…‰ëÝË4™‡o¤N²¬f’oäNø´ðh£/ÅðÉ[údú9 _PÜYûØB´xovÊ =W•e}—¤=Yŧ…G±¾^-ÀÙâN…}¹ÛëûçAÖçõnïxÿÄõ{ÏBpaâzÌçÞÎÓ´'³ül)cOÍòiáÑV¬óoÏIþ·Eæy Ë}>õ¤ûçï8|Ve|¯øõ«Zjw WKzôIÓÕìé<Ìt\˜¸ÑËæªÃš?YåúáÏVóiáÑF¬§Êé.w~ÑÇ‘âéÑTÐHû›µö§fg#paâF‚닦«½9à2qaâF+ßì"¨öM‚,×ßMÿ.Ÿ­Çz6~² ºÞLnd9l!ÚzŽc™°u `© í|Zx´Ñ¼çѶ› *OÚJÊf|Xßðýõ]N5W ×G5‡¾iºšO^–žŽ 7šâ‘­¦nú¤ïW-™—éa¿Òzüu…̧…Gëá^áÍοO•ñÎØ¸³Sà —×C¿ ú†Ýªí24×¾aÃ*†.o„þ’c&MŠRa_VˆÄÙ\.L\ŸÏíÛ𶦂·¾ãq§¯‰á…Ë« ~é®WÒÞ×TðÐãû{› ^¸¼ü=5H=ju™Íó¾,4ÙŠôÆÞôL…= zUÖÇîM¿Þ­õ/1ºPu=ìý´ÑwãRëÓ¤ömÄ[ˆ¶ñÙ¾ ´½ä¤å݉ý?ØãO¨Í<&®.Ø=ú éê×/µ‹:ý¸0q£)î• `š 6NÚÊ4œÝÖ[N7³Ï?±ª!À…‰M×'Mß´¸ ÝDÇ…‰ëMqèæèé]ïŸí|f'3bt¡êFàÙÛÄé]FÚˬµ—] 9ߢ­¿ÿ8¾hx¯Î‰žŸeëÂÔv¸àËè†eîp¹Ê¯ö5,scxáòzðÇ®²‰töî é“FZͪ¶Iµë Ñ…©ë]CßÔgW[äØW·züº0u£9Îà¼Ô½|ÒȃïjX´â¿]˜ºÑa}êÔg×ÊÑ–qAg]˜ºÑ×jdÜ[Õ©À­¤æ=ö[ˆ¶ñ­ú{º7ÁSOÛ¯¿d1;jº8ËÝe€–0°…h´“¿Ÿ†ýS ÑÖøtá8Eù/zèè©À=(nûh Ñ6~Ìm¸]}®®¢3<9lÿ=ø<Àÿpeq*pàÁÝ%ÑŠm½©äÒyjÍr*pàÉÝÅÖË|)0 ýšB´ˆóǶTØÆõ¸ícr€-D[øÒõì¹TØ×“¸¥¢ U×§BˈŽpîà [_w®G\†uTK>ô3彿|ègÛãÐÿýGá…ËëoÓ FþÉ\¶­yc:¢ U7Â>®üšŽTè£ÞEúñG$.L܈:<ðÏ£×­Úý¶ŸnÑ…ªaÏ_§%N5Ra?w.ž_/'N‘l!ÚzÀ·ÏOh'IY·vÒnL’Bt¡êFàᜎ?‘›mó%mOå†èBÕ°ÃóGš!ÛPßèO4l#>Íð/|)ºöò‹æ¼³'~Édýc¦§áJèñô.†N 6½ÕöDý’©ÀUµÛ~ÚB´­ˆ`wîß%Ú€3/ͧ&^ ;y»  »1|ÜØêˆÀ˰ß­°k2æ½V©ÀûËøÁ»‘+&®=â$\zÇë“°¹×&aê>>-<Ú 7žeoØáÈ<4R7ìpÄðBåØxîÁ¿©—uh*àßÔ Ñ…ªŸ{°cÇ/ÊIt WüDàÂÄ _ï:`!K…t’ƒÖI–ö#Тm…Ïü6ìåíõíª;{y1¼Py#ö¾öo_gê ýÛ×!ºPõjà~†ucKø'üý}Íö<¾Ùljïç_Pgívô;¶ò»-– ¹S‡¤›y¶m5Ü[7À©Ç†m¥“Gz®†m¥ ^¨¼ûúçnl¦n×;õk}£35ˆ*oÅ>àÖTè@9i=¤6m°…h!?.½g̦¶º±öRß]¨ºvàK2ç‹äß\:yè=õo.ñBåØï' hYß¿fòiYß\˜¸ô¾ßèÁ©Àûýo› ˜‹ezž¯ô@íeø´ðh#ÜõÃÆ7²¾'½¡þ¬o/TÞˆýüq“-ùxâÀ[êO>†àÂÄ Ó—zé¾¾J¬j-<Ú 6¾Fò§Oz?ýiÇ ^¨¼û¡;VÄ3Ì©°õž«ýìu„-DÛ8~¸%“y¤¹´$cbx¡òFì_‹0ViIz·ŸÒáë¯z£(&&nż~ƒO{N ëfÕv{N Dªn>ï2ë×R]¤DâÂÄ ¿}lˆ³¤N~¼JÜTŸ­‡{ Xa¤¯>xÃʈO 6Â=ò²© Gåw¼‘r¡ËB“H~œ€¶ßJ&)G)¶m+àVWƒŸ‹M…mdpšÏóFØB´õ€O]¿±ð̶>,ÜXxØB´?þ JôVݪO7óà0çéæšsæëÏ«3/'³bt¡êêÙ¬m^ ~Ú]©ÐŸð÷¾<Ûózµó©Ìç_Pçm¶mãõ?¦)̳“©°~Ë}æ3¢m|™+ýíå`ÆŽëÆr0&n½þ1ŸöÜÇô@óÇÚˆ©\˜¸ôîÍáÓð©Ð^qÓzEuY` ÑÖC>+X•Þk=—vë´ë½¢ÿV„-DÛ8¸ZÁO¤wxl÷ÁˆZx´ì}ÇeÿÚp®& Û׆¶m=àKWÁo¬ —ÎLGÞXÒe¡ÉF¨oôp×m©Ð¯oqÍ¢ U×לË<‚Š´¼í,Y/§` Ñ6ZzÀ2"x§%Æo,ø´ðh#ÜÇ×{yi÷TȾ’mß,°…hëáFkúá“`éM6º©æók|Yh²èë×0¸û»ëå$Gñ oƒ7À¢mÄ{@göþ¥e¶ëãMÃÒ2À¢m|FO~ÂgRao¦ÿÌT€-DÛ øõ( % ™®¿™ 5 ¶m#Þ—ü ) ‘ x3ýÙ“[ˆ¶ðËöë »TèOø{uNcßÊ£õø ¥ý´…hë!LJ†„Õë_*0n$«È®\#ÄãÈ/ÊM…>ôÚÚ,ÛK÷f?ÑüÔEN€-DÛù÷#“Öh÷_e¼þ:.½ö:j—_УpóS=©°«/¦?AE—…&¡^êŸ'kOÃfݼ´= ¢ U×Ó°??*;á“ Û(âlOTØB´–¾Ü• è­?Ôn¹Š°…hë!߻ڂ§=;˜mcŒhÏØB´€ós?©°kƒPCÆŠ. M6B=ákËEëNôû•2¼—£ö^ê·+EàBÄ­¨”‡¥BÂßÇŸl/ÓÕ>Ôã/1§ÛB´Ï؉ûÓ²Ù:CZ6À¢m|YÉû®© ÔÁ·ƒ,~ûh Ñ6â½ÕÎòµ§e³]€üIYº,4Y uÄm[éjƒÎ¬ŽhZËæËÂ’õHwô#úó°§| 5”ï#Žmĺï¹õw©ŸÛQã·± ¹h0€mÄzÆWñþ ÁNx'õm×f$!¸q+ê3Ô›¸Ó±§\/ÝùØZx´z\rïòõ³Q»åŸ2¿@[Þ…þ™ÉwÏ鎞4 â…Ë«iÓ½{û¢)ç› ýÙÎgn¶:¢m„<ß6@<ê™ [_\¶Q°…h½ívmã”{*ìœ@Ù˜[¶m=à=?ß› [›¶g©ù²Ðd+ÔxÚÔåâɳ Mb©Ë“\ˆ¸uhÿØ¿)áê<È¿)À—…&[qžÁ¡>G› rÜç#l!ÚFÀùIÞTØÕ^КæËB“P/hÇýûÇ”Ž[]:Ðû©5‰êÝ¡¶ðl#â—s;”o*äzèÎKУõX?o«äÎ]Siï;:Ú7Ö®Äû'®ß—‚ 7b~ùi– Û8tÙ¾° °…hë/_+%]’—JûÕ[}4•Œ¯}‰O\ß<Á…‰1¿| Š4µJ… 4ÿ”0À¢­<ßeÇ,2O…­ž-n¯ …GÑ>VS̲–TØÆ«Ó\Ža Ѷ¾üm®‘ÎÓ¦Â>&³Ó×)~Ö×áM?ÕCMŸ„èBÕõ]?ª¼ºB™†‰¯ U7Zd¾ƒ‹»£” þú61÷ÃbxáòúæÌ”?]íü‡xOi7“ÚnÔ_ˆ.TÝèp~Vyu =­+_ªnt[%%wcU7]o2¡®éè²Ðd=Ôs7Zô]«,ëÝJû¶Ÿmĺ§§YÒ»ýšŸÓC|Zx´mþê3võ…ô¯™é²Ðd#Ô³Iߨ@Érýuôï ðiáÑF¬Ë+™5òöÒOìm*lãul_‰ØB´õsù<Ã\÷,Ÿ[›ÌuO /\^_÷,ó+ Â)_~ÑûŒíéáw¯¤ÂÖ_Òö;c"l!Úú‹´ ^¾v½Ô1}ío$ll!ÚF¸ýŽŽXˆš {~¾–_‹nTÐFàÂÄõîjÍ'4‰7±¤Â®¿›þ d"l!Úz#ߎFæ ©°‡íG -DÛx_»å¸}ú™íNÛÑkŸ|Òe¡ÉF¨gp‚â8¾Ÿ h$þ‹Bp!âFÌ—!`ºœ þÕZ˜Sý\˜¸>nnÇq"fþ*öu–EL¼…èBÕÖ¾½ÎQ²á©ÕìÊ>ŸmÄz_°n«a¹™m£<º}¹` ÑÖ¾wè\?ÑŸ „."ˆÀ…ˆ1ç/–Ó»mœ–»±È°…hw¨÷oŸd¹Þú÷Oø´ðh#ÖÓ¾9þÅ}¶ë=aÃâ>À¢müØz¼q™‡z€ðÜçíÔbà_—+~°ÇŸP‡Ì\˜¸òͧ,êУw) š˜ÀñG$.D\‰ùò¯ËwÖ0sA©°÷әʱ…h[Çá7†¼èÍÙàg‡S Å{ê9"nüœ3¸²rçÉ^8нy² \ˆ¸ó]\á‡-S?¨÷”h.D܈ùúJÁÑRM©Ð¯ëVš,Jªn~‡Æ ü’‚ÍÏ®¤ÂÖÖ†­9¡Yh²þ+öº|óæƒ^8ÐÙzóAA¸q#æ=?±’ üùƒ+çà#&nݾX¸qƒö%?·i~ÿ_Öm-<ÚˆõÞ2_ƒp¡®Ôst©Ð'uÇ­ù`.LÜøA§:~D/:ðì8~ytzž/vm\öf'#d¡ÉF+YД7MöÂßÑ›& Â…ˆ1ßôÍĦBÞLïHî=öKÂõ¨Ã1ÇO(¦7xnœ~=vW¹_åFNu¨ÇkϨÒe¡ÉF )+àhS/ür’†V1¥ UWj¦ž<šölH5gxR͸q«­¿æžœC­© ­®6ãëú†ÇÜžˆ8&®Á÷雦«Éàa¨Îöݸ0ñ¸¼}šéaâÆ[°í‘ ¼:Ò5l×ði¡ÑF´4ïÙ°U“qà§lت‰À…ˆ1_lœpž¶~ÑH¯²k½ŠºP‰À…‰ã¬o¦—ˉW\Ð1·…h 1ß§ß©ÕBþSê(ÑzdŒ-DÛ—w4=é½Ó‡„e¿~V–´I› ý9å«w‰Ì!z÷{ºø1`ƒ/xujѰ1ɧ…FÑ^ÐÜPCò6ãÕçnHÝòi¡Ñz´§€Å~*ðês7$)ø´Ðh#Ú—ËJhÝ`*ô'l~±hë¯ö¡AíÀl!ÚFÈV)©À«M¥auŧ…FÑ>FâÝP.5í•Üž›~ÄÑ£õXçÛȈ5z¿;W{©ùz&J©“l_˜„èBÕ_ô÷÷gn¶§B®¶Ã† >-<Úˆ5¼/ÛP¾“q«Ü)à‰á…Ëë¡_:ûgm=Øþ¢t͉oÃ?ØãO¨aÀ…‰ëé7‡>jºZÙ´t3Ômù÷ò³\ïü›ù|Zx´õî¬ìyx*ì^ÝŠ¸±~°…hë ÃåÈtPßaâF[· j%3 Þo1„ñÂåÐç‹7«C|†þBCK¬–ÍÙL×;®†ÝÙ[x¶ñK>ûêm‡éÝŸoÿü¥‘dy›Þä§yøz´Ù²Ðdc’r|Î{Xg}ƒãÜlËßÿË›mëü[’Õÿ¼”“^Nà —× Êxs©¡¾v¹æm*ýaC…m /\^ïÖ[—7lÿdºÞu5ìÿØÂ³pOkí缑ʺ¹Úž Ñ…ªŸù5ß©À¡—Ôûµž0^¸¼ú[C7ìyfºþª6lzØÂ³õpããECö¯Z¦q'÷ 7‚^»ÛîFîb{{öŽš»°…hï±¥bÃÖþV+µ÷Û@[x¶îy„»•†ŒKæ¡×³!ãà —·‚?ýí†Ò ¥Bž;¢ßNíg{[Þì'šÿ‚Þ½ðm!ÚFÈ/¥ë¬KR_> ýñ{f}[K}÷ä>efWsñÂåÕ©¾›jûÒÍg’¶Ñjðl·?[×_rݵ¨û“u1ºPu½Åô—ú_R¯+D[o1ù:IòZ:<w& ˆ.oÿøÈsA Û\É4§bt¡êFØ·ˆ…R*x¨ÕøWyA¼py=øC?BiMÿyº“¶æÕßÞ¶Âöø½ÚׄèÂÔÕ2D¾«Ï®¶Èa¨¦×üº0u£9. –eïµæ¨P;iàÁ÷N ‹Ú‡èÂÔæˆë½úìÚé½~X« ¿.L]oŽã¥,“²VM…|­ýV¾ß¾ÀæÓ£XWnÌ:ß|÷¯,#MdP vÊ+"®¿ö8>jøP¶”˯Yâü'SëK°ö#˜¶m}Í;ÖïóÿžÂÔw¬M*üGàRQwLíÇëE¬…W*tseÔ¾h Ñ…ª-fÅÖ- ‡ÔNië“ú&éïi„.LÝ2p}VŸ]+õþÑWö‹*DÛèz7tMä‹0uãE‚·Öܵ§möŽÍÕ1ºPu=ìÓ.tý'¾Ni0‹ÚÕ°‡èÂÔõþË¡¯ê³«[&Ó¯Eq]˜ºÑá}0wÐiC¯’û ÷]¨ºöãзJ8ú¨zíÎ!¸0q#êà Eí{µ£p™F^R5o<¨9ï\ˆ¸Ññ¸š4Ô:˜i{ãcoH…ýjˆ´S?t@P„©ëoÐŒn‚û‹ÔNêrÝej1ºPu}¡1wìÖ(<Úh-#¸X÷<íz;ïÿ©¼EjŽ$D¦®÷¹]ÝÔm¹^Äï×…©íñrw’Ù{5|féüß¡ˆÑ…ªWÃN¾§Œ|o<ýË}‚ø2ö7yõrŸ~^_ý;gWðEo`.C­!Q ž6Ò¨[`ƒºy¢ S7ºw\WwdFur:×!øuaêF?³ÏüTèÏuøMýQ7eBt¡êzà—®~…M{69ëæÏÚžMÑ…ª[Nõˆ·ñ¥‚žµu[~„ÉB“H_¿ÓÇÊ6¦B‡š‰?S¢ U׿^¿ÄZ·§B‡ÞŸsÑ…ª_àN½a¹´.pÇØ°\ Ñ…ª‡·¬ýTÙ¶~Ô5T!ºPu#ìÇv;y— þzh“¹Já…Ëë«Ô­ÌB2·Ã¶ëW”_öƆX /\^o÷[¾÷Ÿ—[N}}tÞ6ÊÖ܉ÆËŠ3p#ä>rû×KY?{Û×·éÆz)Dªn­ÃõW›nÕúüø#&n„|} «¼3è©àŸòׯ–d¼ï¦7ü`¿¡·õ\˜¸ö O<ø×«Y‡^Sÿz5Dª®~ﯩ6Ò%4©ÐŸð÷ôL¹ÑÌWûP¿ ¨¶m#äà w1 ÷-dxQõEUÛz.LÜûˆ'~ü™™¬C¯©?3¢ U¯ž{º ¼±IîÇ˸Sñ2ìwp#èZ†ë8] xt=úŠßº2©ý£Þ`èeVµ—ÑL.LÜh1[}á~N¬ý™¼¬›õ¹õG¨.TÝ <¼¼nÈ\géÜ2×!ºPõj๗!”¯÷‘-÷8ÀxËÝmíßÓ7òÖ™ïþj¬™Y뼌ú-\ÏXïûжõ^m1ê¥%YÚ:ŽŸ>tŸÉMbºýäÍÞ½=ÝÄ —W_×oÁ§%Ü¿=ümüõä#žÉóß×uòÀdlS'cÚ°‚ 7ÌX=‰Öž¶>uh*æÎ[ÝDoŽB´Õ?xÏ‹Pu£ÅLwÓ¤B†&ÿ­:Ÿã 7‚>£1ÇoaIï8ðàþ{†|£<÷^ŠTèÀ£ãøÃã³$!âzké;øP7~sD*tàÑqüõèõoJœú¢êZZãÔGÇñ‡÷ßÙÅÀö2ë üŠTèÀ£ãøß£õköO?½œ xtÿ¹kî¿Y‹ëí%¼ëTÈÆú¥¹2<¢m„»G›¸šàù8ÑÞq àöåÁñ™¨;G}êÏã8~}øöuŒ.TÝj1ç}R¡?áï+Òs»}¿Ú‡zü-Sa Ñ6Bþ±`df½†éò{²nty„êBÕ­Àt2¼”WÆsVj¥Ö˜†àÂÄ ÏಮïÔÕîÇ ©Ð«ƒ’xñ–‹¸ô>ߪ.?.GH…Ç/L…¦þ4cˆ.T]o3c®§=gÑS¡mÆŒÆ[®¿dàFÐ{p=í9æž :Ž¿}zËc홦?n‹`z„êBÕ?6|_¿ ëu<3%DÜhìpù¿\ðįëjbÁ`/T^üÄOh¤Â6fÕ퉘[ˆ¶¾o7õèìÏd 7š º9ÕP^zâP3ÇùG,/TÞh3 :Ñðß®ÉÀ6oQ©«0µÜîÄ‘¨7ÜñBåõ63èx'e…ˆëmfž.Åà¬ó›©ÐŸð÷Þa÷}÷f?Õã/¨ùÞ[ˆ¶r´P×íj¥à‰C ç±¼Pyã5]ùi*!âF›Ù«—]Ü™µgÞ,‘¿1ká…Êë±_ºî"ÝggOèjz­«Qa¶m+ä—C¹¤D{*ðË=á‰-?úPêã¡ëŸÝ‹Ñ…ªWãN­ˆ)ãuî µ‚1|ù{¼ù>Œ–Èö‘±î¾½Mí©[ˆ¶>X4®N4Ô{«¸ÑTªçïä–ú¥©7R!º0u+î3<pp?u`<µñTØB´­£†*jäO?ÿˆå…ÊÝã†ÍZnÄfàz›Yjg(0êJLσ­ŸM˜y°^¨¼{8›ä?j}ê@W3i]:0ØB´­£Ù¤†ãÈm»~þË •7"ßÕ=ÌëÀR÷êVá‹ÌBpaâú¸´‚—º´|€Íe†Sx-‰ßÌC=;Î?by¡òFìázІãUÈÍØ~þË •·"¿‚ä¢öjî4ã@WƒãH\˜¸ôãvæ{©*=÷v÷³ýª6¤ñBtaêVÜÑåjÃQÈŒC¿jÃaÈ^¨¼ùìeðkÁÒ» ¼ªþûÌ"l!ÚVÀá…dˆäv9ƒ2cnHÆðBåØGk'¹J…m´šö£b¶m+à#{“#öå›M;zù=í矸qN,&nÄ|F>hbç _?œ [o,í×&GØB´€/xÞ´!ÛžyhêÕmá…Ê[±G“x ×9dúaqþË •¯FþèÚY§ÆËÐ?áïX—{Èåjjþ •¸3í2èwl#ä+š7Å/_KÌz®‹À…‰[AÇkäª2ÍxÊbx¡òzì¯ß€`¥ÛS_ï{åmDàÂÄ­ ãéö†±ÌC‚†±^¨¼{øÄBÃO‡~؆Kžbx¡òVäx:ã?¶Ÿu`Z°jÓu` Ñ6B^½ øN¹É>¢#SKµIˆ.L݈ûåÖþL*p`ljØYŠÀ…‰AÇÕ†TüGËFjˆ.LÝŠ;º³Ôp£\Æ¡_ç±¼Py#òžùéýe™‡:IœÄòBåÕØ¿†Þ%géj?Ùï‚9O¶7ù0?PÊ0Yh²êî¸VMý;¨'ŒIþ-Ô\˜¸t<åî¯8y¨ëòW ñBå­Ø£GtÔ¹©zÞ‰?¬‡ÄòBåÈ_vSIÛÀ©°÷µyû:¢mŸ›úëÁNšø ‚x¡òFìçJV¿}û´õFÓ¾a Ñ6¾¢ÉvÿîÒ‰ÓÿîR.LÜ :žðï`Ÿ<Ôùw°ƒx¡òFìáÃtê L½cöÄ¡©Î?by¡òFä÷€’“ô®Cã’¿^&F¦®Ç½Ø•L~´ênj-<Ú÷°!–Þuè%òïæÅèÂÔ­¸c9ß–‹ OêqþË •7"?á©íÀÉCÝ£¿v ˆ*oÄ>`s,xµ›ôoêУpox Ò¿µtòЛäßZ â…Ê[±GSþKçOê"qþË •7"²œ ê"ýÙA¼Py=öC.cîפ¯v• ûL|Zx´n~Ö:öó¹j®. M¶BfÁš6•8ß´©à •7b|=‹{íf*ôQ©oÜ‚ 7¢_¸×²=Ìð8Ô°}¢ S·â>üýª´/ç¤Bï—¿w©Øž9¯«Ú¯öæ¿ 7v¾-DÛ y%éxc#/ÛÚ˜tc. M6B½ WJæâó¾4½OYjÛƒnûh Ñ6°ó˜ ¼:¹mØ1åÓ£pãkÛÞ¿e7 »RM;v!º0u=î£ãòˆ]êÌCc~Ã.u /TÞˆ}ÞÙký—ø¾vÄm?m!ÚFÀ'4±Û´4Â[$MûG1¼Py#öŽÛ ¶L3½ª {¦1¼Py#ökv4ð]ç©°¶¶m#àð™°¦}ŒNÕ7ícÄðBåõØÉòöWzסµaï.D¦nÄ}@W¨“öBéQЕl?m!ÚFÀG3Ûpc#ËÇ-cß–¾í›|Zx´ëËEÕ”œQ*dõ©o$ºø´ðh#Öð½bM[F™ºÁ¦-£^¨¼û…®K…mdÔÚÓŒ¶m=à3|ëLSâ+óPsiÈ|ÅðB嫱¯æ3*¦ÏŸõ9^ìܒ黌øÛŠ÷v.þ|W¶—ÔŸï °…h?Ž 3¯CL…­ÿ˜í×8FØB´€ãyC~N5¥CtaêVÜ{r¡q*èzØP` Ѷâ]»Y¼=¡˜m Gô'l!ÚFÀ7°#_µNKoà• —öûëháÑF°÷‰^|– ¼3RÃw çbxáòzèø‚“¦Äù„¢)qà •¯Æ¾:ˆ6” Ÿ?ku0j¨A°Ëˆß±­x£¹Â<ÛÀ`äO˜ØB´€ó“D©°Õ—§=µE—…&¡¾^~Á­Ëtýl(ž °…hëñ^ù)ŠTØÕfâO¬Ðe¡ÉF¨k{z7’*ëÛá/?ã¤J€-DÛøWá5|VíäŸò÷}ë<§º+~&<~ÿ„úQµ\ˆ¸õc…E½´3¸ñݸk4&n}­LlÏ«d»Ú%ú³*tYhr5ÔÔÏÀ•±žõ ‚Û.£Í´Ëxß±ˆše¦ƒRa?‹` Ѷ¾Á§Zð¥~ßèäá§WÇ6u& ×£¾uÕ Öîä3oeÈîäcxáòFðù¹‰TØÕÁÈŸQ¡ËB“P;ÊI;µwQË´2¼£ƒÚ¨EZ¸q#ê;~$©W£®Ö exöQ ŒZ- ×£¾ó×Ω°µWôÆŠŸ. M6B=Á“––‹¹34“Imƒj E.D܈ú\)ͺ³ÚϸñöÜXíGàÂÄ o•Š ¢ýzÍ/u9D—…&«¡žºŸ¬øï%>yàÝœµwS½–8"nD½~výÆRèäŸ?êð»_B] ñÂåàÏøLqR›|ɧ‚΢¶ÊDâBĨWî%mÞa>e}ÿ°y‹9€­Çú¹UJ¿ó1<ÐNVµj÷U†àBĨŸÿª¶ðÞ»Ñ|Êõ¶Ó8ZxôG¬_™rW¥ kž Ç tͳ¢aù7üüëßÐ}ÜiöÕ…ª¡ùß·f8_ÌzêœKÓRaÚ´ÜO?âháÑÆK°ÊJÞi¿dûê0€m„{Á—+‹:²©S‰Ìãî>êd""nô¶Gÿ0ïz•ùñ˜®¬9êóþoùï·ÛŒÞ6Bªnô¶•«ßšËN¹>|ºëháÑúË?ôøÂÍ%ÛÉ×_¡±WßOuž 7¢>` 7÷¾á)×ÛŠ{ã0€mÄz°RXüs*ì£L__ž¬Ã›þdóßÐ6ct¡êúøæàG•×v÷¦ã¨&nf>fý¬žCö&ùûÏß®¥ŸÿMÿý–?}^ýÕ…ªëÿ°à9ÿµ}'tézn[ÿ#p!âF¹-Xé?Ð|ÚÈ»´¨ï’¶£ U7úœ_U¾W£Ã÷b^¨¼Þ&Ç_“îjO Î’2¼O›ú²ªó¤\ˆ¸usZÚ^wrÊjÓ^x@ 6b=îX¯ë?{ÚÈ˹ëï~ùèX^¨¼ÞïâüÔéO¯îµŒÓÀ •7Z劦Z®Ã;ùzï5é+vu¹ 7¢~ý$³2ç”ë=˜»4'€]5ñNнƒ™ÿAäÓFÞ{}µÞëƒh/TÞèÒq^_±÷es,מ[›óñô¿ò÷ߦ7ü`¿¡."ðŸõþñ«þ=:ºÀðü¦BÄõ>fê³i¿Á÷¤ûçX1|mŠŸÞðƒÍBx.LÜùðœ1*¦Âî.õʼ#–1ºPu+ìhÆ®åFÙ“f]zižšCŽÀ…ˆQŸr]G*èk{áÕ£DàÂĵ¯¶#ôó×¾ ¢7JRl!ÚF¼/ç·y7„¦‚^O½"RMKGàBÄõ¨Ïðí'-7â<ðìjòR½/"®G}¹|[ƒ6H…nž‹hŸ½„èBÕÀOXàÕi¿ªzÕω÷êxÔ€?"q!âFÌæ©À¯í…7{YŽñŽŠ 7‚žïŸ¡V¤BïþëFECˆ.T]¯hXöìaÔ´±z'ʉï)Žÿ…}¥ÓB£õ†¾N;oü®…TàÀ“ûo‰Á…ˆ1?ŽPSŒ©Àõ'¿“À…‰AßF¬b²Ó*&Õ½úL[ÉÑŒOûþd?¡7ó\˜¸¾Ë€ës§éj2jÝ{:.L\oŠùš%êM+©ÀžËGL.D܈ùX©Ù;_ÿ^{ýÕ-ãL#¥×‹š‰À…‰!Ÿ*ýùÅbÆ«Än,#p!âFÌgtú<©O®æ3ü 8þˆÄ…ˆ1ÿ\‰³QÛõ°a÷}/½=¢ U·ÿq]!/3’ñç³ëÌÍŒDàÂÄ ïØ8 ŸÚû“?V\ÄŒË^v¹Ä|K€-D[ϵì—k—X9‹TàÀ0×kÙ+4¨¸qýõÙ;4ß‚_• øA.ºŠÀ…ˆ1ïd.õ&TèfÇåÖ¡ºPu£ƒ™Àœ |öEW>óq'm¹W®½“µ °…gïÐå¾2Væ/¸qÉœe.LÜ ú V]:Î3§BŸÔ¹Å£Ø¸0q#ê šžÃ¯·Kt\ óEàBÄ­˜WSÅþóé©Ðö‚ã¯GϹbêÍ1©ÐÍÚ­?Bu¡êêìbî:4¿èO£Ÿ80˜úÓè!¸qõ=ýÁ7ô=ŧBÞSÿÙw‚QïѬ®^YL¼F8^>9ùP}ùì@ØnøÑ+_kˆŒq£ÁŒ+»Š9öÐÿUvät³>oú“ÍC›ÂÄèBÕÕ o?ª¼þ.UVÓþsûº²Œ¹±UwâÝ_@Û¨  …F«çô~è™ßL„ª]ËŒV£ùwOh‡þÆ\ˆ¸óc|D*x`u迎Oꄉ[qG“õ»:ЪÆNx‘pü‰ ¯Æœ|Hõzƒñ诇¿¬xiÛé©ÐŸð÷ýîlÏÓ›ýT¿ Ïuù¶m£½ìö†´ÿV?ºÿÜämIŸús‚1s·¤#l!ÚzNçKÈi[ÒoOnMépúkÀ9ô×x7Ñú»Óäçh{ÑÙ~HÿVt„-<ÛŠ7ºŸã¹4&<0¶9ô‡[o¹‘¢À-ÇÅשÀë¯QÕÝ!¸q+æè–Žç>šTð@co¸Áh¾\òN«ºHï¸9­pãH\˜¸1øók#Ò»]Dý|YX²ñnΕPߨæ8ñî/ÿD«å …Gá^ÐJEÁ‰¯¿¢ "®'YûÝ‘s$µ„©íe÷ûW£§}ÿ¥î!¸q=æC‡n4Td¼Ú•7Ôði¡ÑF´?w?yE3§nÎSÜú#Tª®Ï±†ÍÝ6”dx‡püöË—í ‡gn…©ëƒÑ0,ôÀ7^ÔÜqÜÍŸ èÐý_Á…ˆ1بL^íÔ6Xù´Ðh#Úè~vÃ߀þ [|¶ðl£/\²”ÂÔ¶²yDÇù©Àë-±á®ÿ\ˆ¸ó±§'ûÓ»]íU¶(è²°d+Ò+{8¶ÞDnì]ØB´€`^¨e["ãõ§e[""®?×OÙDÃ-ùÝh/#˜r\À èÄqü‰ 7b>Õ×ã]óVPÖ;½˜Âm?m!ÚzŽbÌ'ÍžúðµˆjÊ?(üU…Tàƒúk¶"¢m4òM~6lPd¼:ciØžàÓB£h¯à’³%½Ÿq`ðlHïGàBĘo`ËqÅ|*p`ÂñG$.D\ùŠóŸ^?ñÎØA¸q~=ˆ.o„þ3'LÜ_Éú«o$î®ØB´õYË—óvV>žœwD½¥±%Á^uØ’ß°…g¯&ú Çg7Rý¹ÿƒ!!¸q+æØëÓ©;ê|+Óêùƒûh Ï6Â}Ù­á”i¥‚>N6Üê²[ˆ¶oøœÿò”ùú!¯ÚTç±¼py#ôü]¸ônW;­†½ÃiÝÉÓ ¡Ñzê6É‹¡ÑF ÙÀ VËžaÆëí¯eÏ0"®Ç|Îß“­_lŽ4!¸ÑÛºíG -DÛˆ8öþ¨¿¥~joî±y N?âh¡ÑV¨'°qã_¾H^o$¸}ypôŒ×¢ŽÄjîí´De ÇùG,/\Þj3•Û†nlíÏŸ«´­ý[ˆ¶ðÜQiÙÚÏx­·mÙØçÓB£hàŽJËÆxÆ™JÃÆx.D܈ùñ¹®êßpX/Óõѳá¸^€-<Û wõ^”sdY<çÚ­(nûá·á…m#âð/Ç÷TèЈïðÁ¾p}#ú[Í©À«CQÃ9ŸmD›¿ÇœÞm`jذ…gëñ^:lC¢á¬árY曃PÃaÃ[x¶ž9\ú=¾ Ñ6ÚI¾?—XQ– ÛêÁoÔÂ…èBÕ«a‡·†Ú•Ì箥g×®ÄðeìoòVð™nÿ·}H¸8ú¨¿Q7n/ŽÀ…‰QGÀ6]1šuè…j¹dt¹æx¾p}+ú+Úæñ+S¡-§áZjô–ú¡J1´TÑeaÉF#AKµZ*‡´æ©¥r("nÄ|ƶ³Nb/—ä…9ám8Š` Ï6½ìp?ÛPË’yhêÒPËà —7VIëH&„‰í>öÝ飿>~®ðîœÇûÂõèoàfWK‰KÆk=pK Ÿ­G{í±—†óð™®wí 'âláÙV¸é[Щ°Ÿ?åLÝ8§ËB“P#<ú7”ˆ¬oçÊíñ³¡D$†.o=ºÞr7uÖ¡!¨åvê _¸¾ýñuüáy‡ÍÇ{•³Èý‘^XŽ,rÿÃN¿ÿƒ}gt3_ô왣žK}>ô^?±¢ U×Om­õ©À«“€†º>-4Úhå—j|Òw)RaÏÏv²sðG$.LÜhá ¶Õ¨·5«›éú´ ·¶ðl£‰¯øÖQKÝHö¡i@KÝH/\߈ÿîc4}u`½ž©Lþ#Ø®oDŸ_‘Þíê°ÔPEB—…%ë‘Þê;R7j¶·òå¯oéÚ€]¨ºøcB uð-[¥Ù‡:H‡ÿzþ _G6Ô6l—MªŸÿ–]Ûà —7ú¡Ý–-¼ ûdmËŸ­ohlsÄ›$TÞh+åàA¼Á%ÛÇ øk3¿q…K.L\_,mà9`}* n"m—‰©¹èÀíG -<ÛhâœðmÚ¸Û6x¬kÚ¸ ò…ëƒñ7~Ú†Ë ÎG¯6›†ë ì·ÛF¸w|íÛPÝyhòÒPÝà —׃¿cWhµœÇÌtµÍ´È °…gáᶃWþˆÄ…‰«¹™O\7쬞>4)hØYò…ëm>èÚiC·¶t=mdb€ëP]¨ºöc‘F­ÊOM pþË —7B?²O‰¥‚®OügÛ"láÙF¸«û)í;Ú?:Çuành‡àÂÄ _j¡ì^½×ú.-IpÚPÏëP]¨ºö·ëmh{“©ð¡É@Ãë(_¸¾ÿ Ê7X:éjÙpb)žm…{û›Ä®VO…= z…xÖçåM²ùoè =Bªþö–Ь*¯Ï.T]M¬–†Iï€SfO?/VÇß–ßÃÓd®³cxáòúZ»ïðüIçߘ?}¤{oÙ˜ò…ëëýåsP£ïH]ïæý§R"láÙFgp|jaXGýuÊsìù˜m¬Çû¹„œþ›Æ¿·õkXBxáòFc¼|^„ôšTØÖµ¦Y_Þô\Uøü£:x‡èÂÔ6‰ë½úìÚ­=?:^YÔ°=úPÙ°=å ×·Þ©•¿Ïš Ýüu›÷ˆct¡êjMð¿ó_+aêF£©ŸÞ¹±Ã}òfÎÏ¿ž~‡²© GƒNº>7ÀíG -<Ûhè{ýL{A‰×Ûú€ß2Ù²Ã}úPß°Ãå ×7â°e–Þq¤‹oØí‹À…‰[AŸ±™¶š‚S¿£tÚÈÐ4¨Ÿ: Ñ…©ë3m‡>ªÏ®wÇŽW¦n´Ç±~ÈôÆîsæ¡1ç_O}õµá¨ÝI×nÿY»[x¶>á¦êÄýÎf?‡7Úz^wTûÞAí{ÕõX¶‘·tRû­ˆ1F¦nô½¸>«Ï^Žy¯ßt­ö_7¶·³M`ýª U7ú‚RñŸU˜ºÞŒ—»Ê)Wç¥B¾\ôúï/€]u½ÓÕNW]ddi%‹ÚÕ$Xˆ^Æü–®wº}UŸ]]œÃuaêF{ÌÝbµ=Nj{T‡‹l#O¾©qQ‡‹]˜ºõz.éF2<ëG¦dëÈÉð]¨ºÞLÝQ–3öúÎažS/yçð˜Sÿü/þuÿýükÛ3Dª®·É©šè¹“j?ôãg]¿·´Ÿ%‹Ñ…ª[×aþû­OèÆÖNëÆ&½½GèÂÔ¨×W×7ò½YGº±†„oˆ.TÝ|}!v'Å–yèmm8àà —7‚Þm£×+é]ü†N²×^í ô.>B¦®G½~mV{Nf†ßUF&À¢m|}Üc]È• |X”4ûI¯ÃýD? ¨|Zx´î5 ö7|o$5ïT.ÇðÂåõÊåyÇv8®p;m¤[T7Û&u, Ñ…©M~ß°¨ïjÔÕRÂl#O®n@LêÆõÒ¡™ ‡.L]_¾/ÝÑÑ̃ÞÑ,™?VK¿ÿ|vìÃó»½ué}/\^ï – ›Ü9nκØÇ"øÙß—žã5þÍ‹TèÆ‘o?þˆÄ…‰¿èqœ©jž®.>ù§œdÑb2¾.oøÁCÍFàÂÄõÎ}Ù±¤¸ã’œ?{í†bs飲~tŽO‚œø¸+[y'½®oô=þ€:5åÓ£õŸrÍI$êiÆTèÆÛã f.L܈ú8£QÇJ¦BžÇ_~ ¢P—‹_ú™ è¸6µãRó‚¸0q£ÅLX¼åzu£7!ÚFP®›a´K!SÁ¿è®þ¢jî(&®‡}ë°y´ã΋ý:fÅK6¤‚¿~n™*‰á…ËëÓém§ӫú>éªe¿Þ,·Nm–úuj!º0u㕚±µãœôÅ^ù»î©ÐͶ½b Dªnü¨\Šß©8êÜúz/ý×® DâBÄ ïèN•ã8g*tàÑqüïÑ÷›ã9^ì£ûâÞ8 Þ|“nÜ—à —×Ûä> ð¸ºëãªÚd›z}äSû‚]˜º^v¾+ý}"n´™ ÝäpœŸK…<:Ž¿}†—eMweh2ƒÞ Õ]·]˜ºÑhftOÏq´0:Ðhpüõèà2ŽCn/û¸ëž¼o• Þ>nìºÅðÂåõEå—çãgÑÒ;´È†St°Ýp~ù¾mtûµwøšu˳™†ks³þ„¿v`§½W;«Y¦` ѶB>½6­Ö¯¯P—ëü×ÿgü×ý¾ý“émz£Ÿèñôy5m…»¶Áqc¯=ãÑÞÙmá…Ë[½9<-ÅÏq¦BúEÿÙßµëàìfË g§Líf}⨕%ÅèÂÔÕ÷uíú> -ž ¾ûëiˆ)ý\˜¸ú®®Ýçñ©©ÐwÕ˜Öû¯HaàF[Ÿáü#~Ø5:ðè8þzôc u 7l>ÐÉèEIêýZ1º0u£Ñ »äþœl›‚ö"œ]¨ºöúÒ·ygìÔÍQ¯yg,Fªn~G.:Φ§B:Iÿ±zާ„ˆëAïûWk§LO…þ„¿wÙÞÖ7û©A ØB´—±QK«RC½#Î?byáòVèçjßÞ¾áyòfÙ¾áÄ —7‚^Çä8÷žÞñzÙpb¶.©"ØFÀS!}»ÿ´þ©}ä¦õ‘ZMn„-DÛùvY-Ñ.ÕH-Ø(òÕßö7< þ uÖ 7Â~lwÃRÁ›=cû^^/\^Ï( ]}ÐnO½Ÿ¼yõE{ê=ˆ._ >÷†‡Ø×‡Uÿˆ<3Wø÷¸ÞÝ\+·Xw<¤w¼><í6<©ËT>-<Ú÷q}L*øúд÷êФ.˜"paâFØçËþõ—â›ö+NOúrxñãÍø>¼áOöøz¿€ Wê{ôQÓµJâüȯ-CÅÝ{RRA¿z[Öå.Ÿ2aoCˆ¸ZeºKy@÷þo)LÜxó·ˆ~*xsNtc÷!†.o?Ÿ& æðS¡wêtñÆîC€-D[UGtÿÔ'.ÁÖ›ÊØ£e”Ž»€R¡“=:~O%~¡N*tàÑqüõèp…§6µo̸ÕõÞ8ÂÄ •7ÚûÔÃãRÃÞI桞½aï$†.o¿¾û{cï$ó^õtcç$&nŒM š‚Q_(õ¶`n4´œ]Í©G.×뇯+ý ®?BuaêzÔ§|^”›LNÿ|ú¯™˜;‰ð\˜øGöõè=:ãÀ3¥BÄ‘ÿNïzNÝ}_¨ÞHÞ‡èBÕõÔýWœúÏrž8ÔËàü#–*¯©9[%,Øzä¾"nô/pùšÿôé‰C ç±¼Py=òs?W»öi¼Ìýãüõ€Û4^ /\^aç<Ýpa07šÍˆµ;® Mïvið´»S#l!ÚFÀ§êñ¼;)¥Ì›ŸR¸‘RŠá…ʱGëïüçг ý¬þ“è1º0u#ê ¾‡ÒÈË<Ô·7$òbxáòFð7ð¶Ç…§©ÀžÒUk.LÜú^ÝR½“;¿¬€ô’ ±^¨¼û®óŸN?qè‡ÅùG,/TÞˆ|¾túU¦p÷þóTг¶ÖvË0Yh²éìÔñ›ƒS]#Ž?"qaâFЃ×ä,X*x¨[lÈáÅðBå­Ø£i%¼z88ôÃâü#–*oD~y­ X—_¤v‘Ó÷BŸ÷v„èBÕõý‚eÇzxÏMÖé¯÷“-—p‡àBÄõ¶¾vø:¸!}y¨lH_ÇðBåØ÷ôÊßônC?+®?BuaêFÔ‚Ej5øµ8—ÿÀ…‰ëuÿy«yøýѵ»HÏzî|5^öÇí_¿ü×ÿüßM_ÑÄðÂå&y͓롳ýìeÆïÞ^ 7b>ãùª†Ôxæ¡¡£!7à •7b¿¼zxVT*ð牱á{³¹QÁ¢ U×'Ø+Z ÙrÿPÆ¡ªá¢^¨¼ÕâgpmÓë+}t½|7Ý^"8ôG¨.L݈ûŠçh:ÿÎsæŸ?÷·3wžcx¡òFì7ð—mÙ†Ë80]m؆‹À…‰AßÁ4¹ç;©Ð—Õ¡?BuaêzÜ·_´6lÂeêÇ6ábx¡òVìÑêqµÓïÝÊ8òö\½à •7"?à ²Þ¿éŸyh€ÂùG,/TÞˆ=ývÈôN=eû¥–|Zx´ìo¥ñvŸ3ÌvŸ#paâFÐÑ5Ó¬OÔ½gtrÚôÙ‚\ˆ¸óËÞ'oç6<4`4ì;ÇðB娣Óu´Ð/:Ûðy®?BuaêVÔ‹³A´Kƒ²Ü©oªß¾<5ž¡m¨ÌÉ<4wi¨Ì‰á…Êë'_2Ïü]ËG¿c[M/¼^ÔÂk£ÉŸÓY•ûÄ÷ù Ïåâƒyyk^Fýn„žªÃ—ý¦Âf½þKŠl!ÚFÀ»”€)R×PI´}Þ_E,% Ñ…©ëqß;ðà…çc4©Ð_Õ¡?BuaêFÜ{|/»¡–(óÐ\£¡˜(†*oÄ>©ÚpCYÆ¡©/Î?by¡òFäQ•øÙÔôNëokû×^háÑV°{ø-j¨Ý/Eyµ{Ch /TÞŠýOÛWuÚ®w2L~uò«w1¸0ñjØ©å–eл¿’?^™(Ÿ.~ƒ¶Â½`«$üòöTØõÕFÃó¶m+àÇ¢—ù9”TàÆ`äÇ‘¸0q#èKí½S–u`yçСº0u#îŽC Å»£Î¬¡ø1†*oŽg¹á&äŒC‹ œÄòBåÈ?»²ñ9=úv:½ËoT>´Ð=éqý­œSÊúÞÆ!«½Ýð# lEßl8J°_6|k«‹†£1¼Py4öÖ$½¡È4ãÕénC‰)Ÿ.#~ƒ6½ØœÑñµŸTàõ™WËwŠ"paâVÐ_y´ïçÑo\KžñãL÷÷Ã87î%Ñ…ª[q‹¾šj©÷·;¬ùnK-uˆ.L]ûÖ p RCEïÉ#ÃuCEo/TÞˆ}õttsYéi­¦¹®4¢mßžò8yhúå?8Ä •GcoMýU½'^†ùkzè2â7h#Üs­o¹QÐ{êÀ˜ÔPÑ£ S7âþYSF,-=yhDÂùG,/TÞ{V}é·GgÕ—n]õ²ÐæšµÓÆSwÍZ„-DÛh(o•Yö<À_xòÐHê/¼â…Ê[±wz[êO½6¤¶T FØÂ³­ˆ¿²±´{êR¡O“–÷Îö¾^íÍÁˆ8Ý¢­‡¼ïÐsC Å™§¼B Å™1º0uõ´@¡SFiåÉ›l£ÁôG5/÷R­Tð½1+½q%X/\Þ~-Ó^ÝxÚz{o/oŒ°…h[ŸjaSÁCË %o/TÞŠýÊ.¡J…]Ÿ´ûK¿"l!ÚVÀ+wÊÞ(ý:qã5m/ý Á…‰Aw|èÇJãä¡5’ÿ”F/TÞˆ}DéZ*ôêJÉa?máÙFħ¶ýe_'Hþ²¯ ^¨¼ûêIö*¯w’ U!¸0q+èÏ9ÒåS0‡4ÎÁ±[Ž÷é÷ó'?=c·þ³ÆÔU¯Ý·¶m+âøÖ©¿¦÷ä¡!É_ÓÄ •Gco ¨ µ1§^˜*c"ì2è7l=âC7 ý˨½KjÀ3¼§°ýzp~iF*l5àí%tYh²ÑFŽE£Zä<ä9EÎ?bíkd§Ü©SŠöï‘EØB´­p?׋Ô;IR“¸öÛTBpaâz>}˜6vW%DÛh-oEö¤¿ó—5—êšÊ€ßRÖà •·bîð¶”e½:ì·ØÂ³ˆó 1RaWGPù]šl„:ß„Áv/}X¿ÏÇóo:çaîøMûãõYçß¿Òi% ™ÊßÓ3ý¿]ñÌCíË#paâꇤ~ôgžxìgu]ÏŸ5Ÿù8~Öß¹Üòß`o‡èBÕ­‰Ÿ èýežã¥~¤6Bã|z2_ÆþÆÞš_´׌×4’Kkì2è7l+âKÙÚi…µÙ>úöygØ@[ˆ¶p~eG*ìgC¨õ(tYh²j{®xÂÐß5a–ég…áð¥…ܸx(¢mÅ»–Ìn¯?+jÚ«Oè²Ðd#Ô•Uá“Ë[3r«Nè²ÐäZ¨¯ËfùæçÉ¬Þ Ñ…ª[?v‚Ÿ}Õ÷iþ’{«ceèù¾å©½Òf²=tÝ›ýDó_0ÂN·…h!ÿ˜ 2‹7/·°ÕÖ µ›!º0u#î×*cTö_¾rÒõßûJ„-DÛˆw@}L*ðÚ`ÔR×ç…Gëážz¼î¹¡ˆmº"¨½œ El1¼Py#öü]áTØFò }7;À¢m¼râ÷ÎföT›öߨ˰…h×^;ÀÅrÃÝ|º ö Úˆõ޶î†=²Œͤa,&^ z5ÿÛé¹e½ ß±ÖÒt¬:ÿˆù \ù<øôW%xûxr*lµºìÆ©j>-<Úˆö%}CÉ.§Bžãü·÷²=%Χ…G±ž>’´Ì|Væ_Ëf:+&n„}ÁJš{½'Ôùa×{BþˆÄ…ˆ!ß³Çê²Îî˜ã·6Ÿ²±¦rÛ@[ˆ¶nì \Ë1†k#-§ø´Ðh#Ôãh»ý @–õÇn? À§…G[±®ÝÖž?Y®÷2öߦ™íù“[ˆ¶ð©V q#’q5Ëy#§…G[áLûÆFr¦/x¼­ä[ˆ¶ï[Ì·Ðg»>è´TÐGàBÄÓ$þtZ†}Ô›ùÁ?åï_Üêó–ì[EäÁæ?¡·ó\ˆ¸u{FØ~na©Í­Ú.ðiáÑF¬’›©À«£OCR–O ¶Â=ÿý”ã÷Ê”'¤Ó£«á®MQZöêÏÇ® õ-›õöG¸oØz¼×ªFiªÁÏv} o)ÂÀ…ˆ!Öãõaž˜I…nÖ0¶Ÿö Ñ…ªñ ³zun¨ö/™fX£:}S;˜\ˆ¸u{ Ô^&¾V–íeâtYh²çeþKÓ¾• }µMÒ)·éjhþ z§Â·…h!ççïSa¹Èö}‡[ˆ¶ðîÁµWs*™úÁYídÕœJ.D\ú6á9µ zT§‰™ž}Q£N#p!âVÔÑ‹UŽ–î¹o»ì+­·ã…èBÕ°ïø$Q-ÑU¿L{ò@“YÕöXâH\ˆ¸õ½ëÁÆî¿¨-ÛPƒõG¨.TÝ {±!Ä,Êøsæõ».ãÖ…èBÕ¸÷Ïášyh,ö¨•ÂÜ8ëÆ§…GÑžìã.7ö˜3}äæ¾•3ÞØd°…h[ñÆgé³:„.zÌѹr%þˆÄ…ˆQŸ?în"¦³n–’¶§Ct¡êFà·+OYM§Âί·ú0À¢müòqwÎNb*èz¿Ø°` ÑVã½w¾þ_Ôþ\«CýG*otÏ áÈm¦‘_ÔWw™#paâVÈ{x¬VOT¨—ïŸ<0â©¥ÚêÝû!¸q#êŸG“ˆ{ÀÃõæ‘ßxêpˆ.TÝ |åήsÍñ>­†nDªêׂæPÇQïÙËgÄòBåQçõò°A­ß×׸ÄÚôHnÜjwc»&&®g–žKé¿©Py½›™ŽãËõn¾bñEd S£ÞÐüô”o Ñ6~Íœ±z†üÛhš/1Ã?µóGÏ}@5úþ^Ír†e{³ŸêñÔY@€-D[ÿ5ç¼|$^í– [-˜m¿‘.€mE»öýŠ9ŒŒ?ßžŸÿ–›ÃˆÀ…‰A_f¸Wñç0²¼»övªŒ[ˆ¶òcÉż%ö0è;¿‡>LÝ›~Ð?þ†š Ñ…ªësPß«¼Z¶2,ÒËGï”ËäŸ.Ï´žXÈßãþ˜BÕ`Ç6ÊHï¶žåºñ…[x¶ï娝ëÔÜãËuöû«ý. LŒûýá׳ aêFcáëMô’­+ÚRÁïÐ_?¡k€†WÆiKCŽ+"n4˜ãCÜ#Ç©ÐÞ±á°4Ž7PgàVÔÑÌ"þIŽTàÀkäÿ˜H.D܈ùº7µSA5•ä{™l!ÚV¼7t(r\ç— ŠZî"¬ê7îÜ$ØzjqÛ4êÆñe½¥<u‡þzø½’è¾³á’q`mØp‰À…ˆëE3{·Ò‡haâz“sEÌï ¤wh‰¸ý´…gñÑ4ºç®ºTðõ¾¥é¢=XoºÆž¡[¯BÝØͶQ£Ø¾)` Ñ®œ|ÞGÌë-Ý¡¿~Fû€†íÅŒcQÃþb.DÜh0 ˜Øu|E(xýmùþQ.Dܘ¹lh&Í‘Œ¦n´—í•êbÕ¦7r:§>¥>º± Ñ˰ßÓ¸ïØ ôþ=ÝŒwJ1ä]>-4ºm`ÞâßÍ­þ’7vsì2Üwl+àü3g©À§I¯‰ó«9•zè½Ñ­DèBÕ­¸åb»Îy´È½ÖpüªÆ§ÉRÏêHtã›j¶m%âë¿Ý+òp`”ðî¤áBÄ­˜£¹EϽ‘©àU‘C=|?¡o¤.¿¯‹^<ððýòðà~‘ã[m©ÀI:Ž?"q!âFkÑý Ïu”©àë Æ—¦G÷J‰¤/Þ$Α¢?¸S[K뙢Zx´j~ÝB*ðêÂÂ[oB ¶¢ŽŸž;\SÁ=ŠC=üQÁ¼}'ö¨½ò~úG 6šÊŒî„z D^8ðÖ{ D‚p!âFÌÁ9–ã“iéÝ®ÿœîo½ÅØÂ³xÃW¡{n&Mt‡îkU=ºÿ+u$Ý <¿X!xuüôY„ÐB£­hG\a› hæýïáûã£ÌÀ8ä­±xá@;ôYáBÄõÓ÷¯"kÖ©À‡Miéëy‡Í|¥ôøê8ħ…GáÀ­[LJúR(Ž?"q!âVÌ‹Ôpñs¶^¡ø¢õrë%ŠA¸0q#äüZœTØÝßî§‚(Bšl„zBO?y®eNŒøýáÖýߣ%éFàgtwß[ùô«SDoÝS-4ÚŠ6zÖÌsÃv*x ™;ôòá©GˆËG¿öä´ÃÏa¼py£Ý\n—eUœ¥¯wîZ¹ \ˆ¸ó¼^Òñ…ËTàÀTÇ‘¸q#æûÈ®"J…]½8kŸ"d¡ÉJ)è“7$ý_,'éz3êARW‡ÿ†:>-4ÚŠö ŽûÞË ^84râü#–.o„>'qµ´·á¢ðTèÆÛzÇy.LÜŠ:¸“ØR:”q`ÎÒP: 7b~|±Š{y*t ½àøåÑÑc^8¤GÃ\ëbÚïÊ‹ó…ë g°iºã[³©Àë=û+¹A¸q#æSÏ®ÝJ…m\xþÿi»—$Ùu[´]9uš¶éÿ)fSn MxÍ+\T¸œá'¡‰â²<{„.‘Rþ–³[ˆ¶¾X—ßç+LݸYº[RW—½Ž®>-4Úˆö ®Õñ£ Ò§ -vq½ Õ…ªèZ‹{ûC˜¸qÇœÇÙ ¾½‰+ãõ‡ßÓÅ ·bŽvƒë5åŒß·-¹ü.Ø®¯?¬SVÔ6žS×ïœi@ëuŽî¢ŒWç%GoŸmD{ë.žF—Œ#Œ£Ñ%"nÅœß0’ ÜX¥?hu‰À…‰A¯Æã=5÷m[Ãy»Þ…êBÕ•£ç~øó£ÕÄ­© ÇèÁ‘\˜¸1ù/›…©OéZ½Ÿô`dþ>Ä0{0bxáòVðù ©ÀkkOŸmD,Áxš/&0!åé½°…g[ñF‹úžåôù·½Ñ5ø]°/\߈þ1#Ró KoúÜqPì.О­¯æLx·lû¦®ß*óP½ŸôcdšEý1¼py+øüúz*ðêlêè àÓB£hŸ5LîùV©Ðõ1uÍ„ ·¢^íe~ÔÐ}ëõøåõ×—Žž†€Ï‹7OC@.DܺgÐz†¾¿Fù„Î[‡îÈ¿ ö…ëË™¿­ÔŽoÜ=óXú´v’l¿FƒW2ØN` Ѷ¾!s¶ç£L×—íŽ#ŒláÙÆó¹‚ïÖ-ÇjS7n•µ:v=i)É<´`wô”ÄðÂåào`±×Óš‘ñÚ àiÌàÓB£hïÕ¡GmÙ‡¦Ñÿ}ýð 8ÍzëPtš?ç ×7ù£šzxÔÃñõ»Û>´¨3«úÊ´`ó*.wa²°dý6Y´@Øpö0uã è)I^ؽ0|Zh´íéÏ[¯&ã¯×‹qûv6åƒ>˜\˜¸ô?ÍGÄN˜eúÓÃCì„ Ñ…ªë0 zÊIû7ß:4ù7ø]°/\߸í¬þ¨×Ô‚R¦ë“)nw¶ðl+Üüö©TàÆ¼ñ ñkYÿ¼Ãð¿¸txÅùîØ´•:ãfšäÁfê¾ üCÞ ýù]€3›ùuêX3Ÿ¿k²þ¦IÔï_¥B×X÷§»‚paâÆ«ÆæZ=¦nÜ1ü6ªôiW—ìŽæ/º,,ÙŠ4žÃtô”fþ¾\gö”ÆðÂåàßÎ÷!ö­¥Â‡’Fž¾» _¸¾ô˜"=¥¦|ù­#¿nû÷™ã|áúzô×ó;-ÄÓSAÏÊôÑ.ß.«ªC±~òT¦ë¯¸ÝÚ³{d8ÀUû .LÕwÓŒCë^œïbyáòúúqEϵi9MT˜ºqÛL3½•*xmð´€ñi¡ÑF´ë BOz’3­Â=É1¼py+øxÙÚÓ}—}h æé¾ ò…ëñ_Àá–ƒ4S¡Ck°¿ ö…ë[ѯõBù·Í)”ñת_~ÛÖµ{¿#üÒ륦f]¨ºöZ;NtÊ9àêZÒq¢Ÿm…ºš yÔŸýs~Zhýþ]°/\ßX—gõ<}•šlÜ4õn¡'m›™‡Ö4޶Í^¸¼üêØû¨/ûЈàiÅ ò…ëëñßà˜NKL…­hü.Ø®oDÀz çSm·/ƛӬ〪[x¶î±úîý¨k9ûÐôÚàwÁ¾p}#þóû%aùûÓ>øDX–_¯6Ó—»æÁ7Âø´ðèj¬4mCpŸ×LyWTêÛÏÎ×i\ÿý^kλ_ø÷7Éfûk¼Iö×€;m½-o«ØèQc^ö¡ÑËÓ˜ä ×7îxô<©–£*S¡CK¿ ö…ëÑÿÛFìÎzž™r7pˆ.TÝvV¨Èê9i+ÓÕµ˜ç¨­[x¶uŸoô®Î2àç­òóÿ³5/Cþ7‚¾ÍµÁëIGjæÍ P;»úwëâð¥ƒy=^öë;`ÿïüç½-?ê°š=—ÛVÍ<évåðÆ{¼_°­7‚öOØe¹¾¶nÿ†Ÿ­Çzïáâ§«…+ûÈúÎÕÂä ×7âŸuÖëW¯¦™³Žüº-~ì ×·¢'R=í£Ù‡r'žöÑ _¸¾è,ÏYp§\_ìátG ¶B½Á«¥¡½0óКçß1¯Ÿyö¤ÃÁ¯74Kyš\‚|áúFüá#~Œ5‚šáßW¸ ÔâwÁ¾p}+úÕ¡çA“Ñþ÷Ýû¹þ¾ö ÏOzš³ͰžæÀ _¸¾qïlP1Ôs~S¦«³­ç§[x¶Þ«³×XzÐSGÑ{e§›HÇ ¦Âž†ßñÏ•g|^K|xáÆa·¸0q=æÇ×·\Í"Ù‡Vžf‘ _¸¾ôÀ¢†£S¡C+ƒ¿ ö…ëѯ}ûɶüŒ›Ë¦vþvíx[¿§É.ûÐÊÀÓdä ××§Ú£þEÕ'G#pxëÖ‡*Œž“Ì2]_à8Ž2 °…gᮟ0ò¨“á¨Wêu2ùÂõøÃ§u4;˜ š§ü.Ø®oEÏÓ{º¨²õž.ª _¸¾,Qï9LæsÞžãdláÙj¸ÿýfÕÁìAgÃÅç»e#ñ],/\Þ~ýT€'5ÙËGÆ2OM6Ê®oÄ>× áÔ­TèЯÛàwÁ¾p}#úøÇ…<ý —ÌTž~(_¸¾ÿ™i§n\tuÆr»a Ï6Â]/<>¨Š_<4WµWŃxáòFð78wì©Ë^>4S9ê²Q¾p}+þhîxUõ?ç¥B‡~Ý¿ ö…ëÑ'ïŠOŸðýºYg·ý£ß¨_ï˜ß“¼p+àþvíx†ÈуsùÐÊÀуå ×Wóݗϼ/Ëkb7]8á¾´®ÝÁëãÌÐÐò©áÓo»^Ýôwö\úYϾoWu£ U7~ÔzuçIá÷ò¡¥‡£ðå ×7â? V¼Ko>WþÒï?þv~ iÓW*ñס´ßϪÏúüG?N]ß•£ UWweþãñ6WG³ÌåCS¸£Y&Ê®¯ÏäC}³ùƒ’;‰7+94|¾õmoxÖÛQá¼|h@vT8£|áúÆo‹Ôî©ï_>ôh9êûQ¾p}=þ¯îdäÙZÔgKÛê;ŒžçòÔ4Froº*zA¾p}#þ+øºªÏV9.¼mü›Ã®,æˆg\YÌ _¸¾ñÛò³:Vìi™Ìñï‡ih½ðùÕüýÝ?ëó^êé/ú+Pˆ.T]ú‹óƒræÍ%øƒòˆ¼éªXe‰=« _¸¾þ7ýÍ7ÒrÈÛºðˆûR¸¼>ÊO#øæ¹©3x¹úxÛóQŽÄªÌ×aÂçµ·|?íâ_òןõÂçã?Ùóo¨ ‘\˜¸ñ“âï¹2ÈÙ‡†O9È®oÄ h’LŸú þ~ëd{ù´OõüúMÏ·…h[!ßñwu+g¾›]]<)L Þ#‰ïbyáòÆ{¬•¶„>ëðé°©°Ík³Þ…êBÕõµüÜð̽¨3·š²Ì|}þ[uþSó•¸0qýnŸñ#É\©úù£ÁžV è‚}áúFüÇ žº‡öžÑÌsà¨Îúm€ ·Âfñï ¼íeG²UÉÔqæñ`RÇ5; 7~RüØ'Wad^ðt„§0ä ×7âž7§vÖÿ9nù×^ðƒ/\‰ùeÀßÏ<‰ù _¸¾þÛ6øž¯ž]þ‹þ:2\úò9Ç^÷üW½Œ>W/cÿH·"ÿ'G+‰d{¸µ>µ»@[ˆ¶ð[;­“3ú þþsf{Y>ì—zþ=ä|[ˆv5äÌCPßvDª<}êç°8³êO]¨.TÝøQWøÅÉó%¬Ë†ÝUÔÕÚVˆ.L݈ü~{ÿ`}k$ú þ>d{ù´_êùôžo ѶB޽N6œÐøk¯}½ÈíÏHfÝ ýÉ]¨ºž‘\gðPµCöÏéNo{áÑÑqVüå#Ì®_j¹,D¦®?ªëöÞuÈùØ^*èéP»].|ùü¸Æ‹ÍBy.LüOÈqY{MW“ë>ÑqaâÆ­xlØ£6Bü9Qè×Þ†€­-©Ð'½FÖŽw‘¸0q}ÊØ†Öõ›zÀ÷åׇÆuÐ^µ–¢ Sן¥mܱaþbR*hdµA@ÍMEàÂÄõa½AŸ4]mØÐêO÷…¤O{P»ŒŸô³ØB´õ¦Âí<‡úk 7žýùþÂËj8Iÿ’¿¿9f|?ð“=ÿ†úÊ 7Âþ³ áÓô¶Ï3@¡‰Ôqžôå“Ñ¢Ouj)/D¦nüªûL/꧆0G;B.L\ú>âéÇ‘´—Ü2zÂQ=6F¦nD¾¾ËÚŸ\Ûßö4²»ý"paâúkÒ>+Çóiúª_Ýèço |¢$¸~™ÿÛ*¶mã6ßàS×IœÙÒMÔµiˆ.L]ü1Á+×IaÙ®^Ï–êç„…èÂÔ­Èà”íx‡Ìxž8zîKd.LÜ úmæàô}¤Âw}ÚÈøz”øñ¬c.L\ŸN³”ÏlüH…­?DVl!ÚÆM¾ÃËu×ÑKÇ.y·^uõÑ%B¦nE~ÇtÇÛiÆ‘Ññv Wƒ>ö·~;^#R*ø—ü}øÊø6ÜñÌžCcBpaâFØ'|Íî8Åéò'uÔÇí~Ñ…©‘_ÎÂ,õPŒTèÆCÿy!¸0qu3öëN¯û¦ï­.*Í:ˆ.o„þ€_R=‡Z]>ð¸Nú` ÕPctaêúP3œû ©‡>¤7VKíx‰ ·‚¾Ñ‹n©À7¹0&n= ©‘ ¼ÿív¢%cháÑF¸gøÕsºÔåâ¾íI=[*F¦nD~©¼£úÓ1—­?DþtL„-DÛ 8x¶QÃñ ©Àë3‘ãàˆ\˜¸ô€|F*ðêÀØž‡  …Gá>àd€ç„­Ë†D½©D=_+F¦®G~Ìû{™G"¤žÑöÃBpaâFÐü…Ôq,Í巌Ѳ¢5RÇèÂÔÈok@&#¼Ùpó à —×ó0ã™k`ö—¤Â6XwgLŒ.T]íd§>—gýg=ò3•Ö#×gÿöSÃÏ9Îê=¢ U×ïÈ©Ç_#õ-ê©:— fFƒ‰Öˆ£ S×â©–y’̸±zŒÀ…‰[Aßí ?É fÜx ~ŒÀ…‰AÏç‚QÏçI…®ÿ¤½ Õ…©[q_+¿ª?Q•íþ·‚JKSÑe¡ÉV¨ñ×÷UFÕÌ.˜ŠõFQ/‹Ñ…©‘ IžÜàTy~ž¤l!ÚzÀ¯ój‰‡¸¤Â6¦çf» ´…h[?ÀéSϨç,]:05è]¨.L݈û­-Ž•^K<£ŽÄ`.LÜúY2¥¶i§7Ò/îþò[ˆ¶ž˜o_'æÔ¿SA¿ëãÈ-ÛØB´;|çw¬¦7&¢½¶¸0q+è¹*˜ º~³8Š™¶m#ÞGõ ÁRÝsýËjRÝ!ºPu=ðK_ßðü ¼“ùó=÷ü<³¼à —×§Òåê;¬®Ôõ„±zæß¥«Ý½ Õ…©[7=?!]†]:$Òùtð´îÃ÷“$zƵ ’B_²,4Ùö‚>9žäyÖõŸòQòq`âñ¤Ì#p!âVÌ'pÎÔûtÕ#ý.˜zô.T¦nÅŸîO^€e >-<Ú ÷9Q0OjO¾¨©~ÿó¶m#âçÔ3àSׯ·ß¾‚ ¡–“S¡£JƒÞ…êÂÔf=ÐfÔ~T}D-<ºkn¹%}ù!­yÓS&âÓB£­h›'¢=iÊ´z—<é °…h[ñ®tU?*ÉíµÂÓ£’\ˆ.L݈û&þ[Î`O…^ÿU=çÇÇèÂÔ¸¯2uzú‡2]…< D¶m+Þ`"×UàÊ:ðŒz \!º0u#îÛíØZ£|*ø—ü½*ãûpÇ3{þ =î¸0q#ìgÞ§Oð."nÅü¬Dé5 ÿ†Ðýv¢£–ô÷o Ñ…ªëõŠ= ºø5î ·*ʧ¿FÜGëwùQUL…^}¥óÔCláÙFÄÏŽ¥êRÑÑ3—éú’ËÑ4` Ѷâ]ßú úœy³dö úà —×GócD«,žòsÖµ®§þ¢ S7núñ\1RφL…>X”ÿ\Ë]¨ºqÃO`y«å›1©Ðoƒþ|íÛ†]˜ºqÃ/»¹FòŸ8—åWqë§Íð9ÝÅÑ£XG”ŸS¡×Ö^®Ây€-<Ûˆø†¦Ó=E󬿧§h¢ S7â¾£éô†ÏŤBFDϧnBtaêjܧ~¨$ž”.½ú¤:ŠG¶ðlõ¨ò©Ïlýω_Ê‚ñgÿé+ƒyfÓ~þù3eLãýOóZt}J„.Tݸÿ®y5µK¯ßêžšZŒ.L݈;z º~¿«ß¥¹?oÿ¦ x‰ 7b¾.ïL çt»›P÷J…^»[x¶1¨çæÿmÖÆÜ.¶Ÿ/]{nÛæÿ†ñ»õž£ UWßÓ§~Sž’Ú¥££¦£ S7˜ãֽȪM¥B7Ó™îºZŒ.Tݸá41eŒbÚKû¥Sƒ^ž«—¤ë7üpfØë3*~”æÛŽÈP§B¯ÎLŽÜz„-<Ûø5§ÿ"“ ÝÊM?x Ñ…ªŸ—êèè¯â]üÙ×´Mä*^/\^Ÿ;†Mƒ)<5“u`ümÐß×þ·ìÀ«„]ú}æUÂbt¡êÆMƒ~cÈS ›ª~öè·k?)ijó²_¯5ã—ÊŒï"q!âêþ´iXGþ*LݺvôVoÁ„©ëöÖiÛ¦S¡¿àïm±ÙÞçû¥žA_Ïðm!ÚÕs+beÈ«Ë_G-/Â.CþÀ6"w ;êx— .Ž:^Œ.L];xöHËçÝÒ‡ ü¢ŽÓEØÂ³x÷æ3äß)}ÉçÜÿå²ý[¥háÑF¬o[JI;aSa×WZ x‰ 7BQÍL…^ûA]uØ[x¶ñ-“xаY~OO6D¦nÅýœ:™{ÕRë?êƒ]v!¸0q#èèA•íçë^vo¤¡ü'ìÆèBÕ°G”3S¡WGGO!6ÀžmDü@{H<µÀ¬¿§§¢ S×ã>A?©g§]¦ëË.ÇN»[x¶î{ÎT®OŸø™6r§A.L\OûOðù”½6U¨cy¶‘‰×»P]¨ºq¯ÿMpË\Y\Ä"W€-DÛ¸Ó×ÊÁt \ÓíDkþ÷”·¦u†R­ƒ> «³¶«#ºgÿN.DÜz>ÿqˆ#Y·žþ#!ºPõjà™î*Ãn¼Ž6ÛeЙvò'¶ð•_ M… º ú;è:¤{ ¹ ݈;|ë¨-/ôÉè´¡Å ¬w¡ºPu#ìûmÇÄ—áÅqþèÍÞLûÁ±•—=žï_×FYß—ýÅæ¿¡vD„èBÕõm üªòeûö£ÔsS¡W—žJôt,ü¸UןӹG+žbtÖÕSŽÑ…©ë½Qóí¸#Ò{Œðlã~6èɳ9Ûõ7 Ïä\ˆ¸u«ÐÇ.áÙÆ­2¢8kþÙeC«XïBu¡êFØó^ŒÚÊ«áðÚ·Q;N…^½=Uï[x¶ñkΕ]XO*Þ7•lÇ»H\˜¸tlŽ3*izÈÁ‰¢ÁîmáÙV¸7t@t´dݪw=h1Ñ…ªßß_¾y6ûEàBÄï3<}¶C³ÍBíÅÐ]¨ºø5¢P‘ ½ú”zJ,¶ðl#âça7ÌMЩ°õóv€-DÛ86Sôú˜¨&pr?amHtm@ °…g[á†SfŽêJÖ¡á°½º¢ U7ÕNþ^âò²ñ|Zx´îû’Åx†<[ ²]@={ "p!âzÈ·^ 9²ñÛíœÞÿSr6>Dª®÷We~š&5ð?¯¶¯géLžýüó5COùwÔ€½ Í3ݸ'o\i;R¡¿àï‹ÅlïûÝ>ÕÑwl!ÚFÈ|í›s­YG%G²5Dªn~Ý*+Œ+ÏÕ7§[³Ýk¿f¹ “…&ë¡þØaMÊ)¤OºKÚÓ!¸0q+èEw"qC^¶Ï…Ñ×+°#/&®ïÉÛÁ6?ÏŽ¼l×£Žo¯…àBÄÛ:ÉÕ̾cg ¹šÙláÙV¸kG ø~Ù6fdÂ/À¢m|ÆÞÌ= Ù®ß)žNÐ\ˆ¸ò¯R´'ý²MûíI¿]¨ºø ûU]güÇUD¿VBòìöú#“Úìà •7";ZùÛ >äÀç5ѯŸx“‡ßF?ÎGFSAOÇï+ËŸµ\Æþ±çŸÐÏ\˜¸žàjÐMW÷îÇÍGžîÇl×GuOûc.D\ߘ´ý÷&®+Gÿîiã}y"üKþž™Ëø1ÞñÌžC]2FàÂİ»s;ö<ë7LÖ鮟lþê½¢ U×Þ~Vyµ!êÈŸ[¢êBÕ;r|g£H‹©°Ï'i'·ZFàÂÄ­˜c“RËIËo|zo˜£•S¡¿à¯Ããeˇ}ªÇ·c-º@[ˆ¶ñ{ÎÅ3ÄëˆÈôíFäµDØB´x¿î!"éŸÔÎó'ÇŸØB´­ˆcÛˆ<ÍáÙ®/Ñ=Ýá¸q+ä;z—㧪¤BnÇQ6Ǿ¢S£tžu`(_µ¡\-œØB´Õ»eî{,í课ìúmîh°Á…ˆ[!?§!êw®S¡ßë9¼otÇèBÕÕbîÜóKF©°µçÈ_èâËB“Õ ×?z¢OÂÄÇsÄ&ç–ãÉß8^ninœÉ80OlÚ<¡µУßr; ß²å|ß7~À/ÌíUÅKâ²kqÑjжmý÷&¬¢å,²7~~Ž”™FH…­wYøÓ¶mã×\é-¾©°¶wkr„-DÛøŽMm-ýâùKmÌW TØÀmØüêa ÑÖÍqšùkñTèæY þ÷ˆ]¨ºþ1NàªbÓ#ýW]Ñ·}x©• ¸ÛWˆ¶mã1:À5Eñ¿ø4 k x¥• ˆJû 1À¢­ÿšünØžâ¿ðÞqdùƒxáòFèg0«ÝëR¹½á¿ ú¢ß5þˆ\˜¸ñ“. ¿C!:pí8þ¾ttÊh™;i=øà]ŽO 6î“u²£ýàM®úY¬or¶m+à)»S!Ÿí½ƒîâháÑF¬Ï£¥¨¹ìTàФŒó],/\Þý½iyNš87œP'áÑzLæáÏk?-Ï’m`’hϳØB´€ÛÇÕ>(η#_§oùOÕO 6b=ÿ)ÑsZYý’#9£` ÑÖ³Yóú§èNK8͵#$œl!ÚÆ=~À=P&º™nÖ»P]¨ºø¥_èß©Àܯͼ}wúDÏ? O 6Â=lE¸iíÍ—}»î?k¬SŸúþ®Ÿìõ7Ô€GèBÕÕ=+-ü òjZeA Zíùì¥Òõ ͧ…Gë]TËX>„ŸR¨ºñøOC@6;¼µ§ÿI.>†.oÂ^œ'ýŹ\Ýp0ÑßpÖÉ_ÀWþ†S&Þø:€Ok{V8Û½’’{¦ËB“;ŸZM…­¾‘ûÂtYh²ê}GZGŠ2óÐXåHQÆðÂåàçMeÜcBRÁÏj:äÉ'1º0u=ðë€õm´ÿpÃéÉÊTØÕA·=ÅJ—…&¿ã90ROeHn&ýçI„àÂÄ­ Ó“g©°«÷J{Ê. M6B ®g6’Þì÷ÌOJ:§ÂìïÉ2²<À¢­'Ë·~çç?S¡›Õî6Dª®?EÛ>F Û=ßøˆ¾¶gµ²]YÚ“ZtYh²ñ;.;¼wd…2ÿz>Çåëø$+à —7‚¿Þ7ÛWÞ}„ô…ÿ¸ßßpœL?èzþ}ä¢Ó£õpïžäs¼—gº[ïå1¼py#øçVAêq©ÀŸf» ´…hŸÑ€®ß뵎ªfú}Ù·#pYoq©À,èƒ÷Ï\˜¸^ÙÚ÷Zëwó*D[¿ÉáO5ñà¸}âáû¡zþå€-DÛùzKoSëÇ}=ô­CÁ_HàÓ£ÕX£û1Ú·ØÔ+þ6¶m=Üýû—üð'¥ƒŒ[×þ¤vÄ •·"ÏoÿNÝ68‹üÀ —7B¿.ôeK*p-uñ`¹@ 6½±S­é“Þ³ÏEïà_?à—˜u=ÔdXX°æ²íîi“f*èIy\ü¥|Yh²é# ;3º±ÛËßX‚ ×£>üé&ô"¦B®½½guÆw)•—µMÿ’¿°×|íóžd¯¿¡Þ1¸0qõø?©mãV¿µjQúíR!ŸÛT¿T±üM‚´ðh#ÖyÚäf™SÁwø¢Þáê:<&®‡}ìñ5¾ãeìëU¾ïû1¼py#ø·l¥M+rýImî-  …G±®¿Ì>J²Œõzö£,K/\߈ÿºÂ#Ó’yèQm?Dæo³áo’»äú=ßÜ%@ ¶î”w¬Iõ‰2ÚÖÎOwa%/#þ×—è#Ðÿ “Èáõ[æ~¢¥*rýFonÛ  …G«ÛJó†²qÕŸrŸò‚ôœ¦÷ó§ü÷_ü$Î~~Õ†Ð]¨ºÚºL·Zç\£TÐÓ¦7UôùÊ·üÅžB}ú#paâÆ“Ÿû×_!ÿör´ä7ÊrÑÓð[oþsáK¾ðý±çŸÐC€ 7\?4]}•žÎ/"QqaâÆ­¸½gèžš÷Ïò}íLËüØB´õpϾ¦pd.2æ£fz§B /\Þ >¹0— yÔž"-‘. M6æ·ûö ×\ïiyPâ Ñ…ª[a_É][© Ç]Ÿ„N|ú;~²çŸ0‚ÎÇ…‰!¯¿#>JÐe?ømPA¾pýjü™íæeìÍÇÕÝ(£—q¦[a_éuÝTàƒº{R‘ŽÀ…‰ëA_ú‰^’NÍM8ßÅòÂåÐ{¡Ô–ûn¢ÊÂ×Ñqà —7‚?à?h#™ùéÏËÞs½ Õ…ªWÃNí(㌔ŽÎ†¼Œú#Ü:?±‘ û>ˆÑ2¶m=àk¾ËiïשŸÒŸ°…háºó$V`þƒì@ /\Þ¾}LÌ“ ™~ÍÑó—þñ';l!ÚF¼÷ œ*oI7ö¡óÛŽSë»™Ç\ñîô‰ž@8m„èe~wÙïeÞéëÏù$ïà —·‚Ï›NÞ+7Í“,Ÿm„û˜Ø“P*m}yƧa,ñá…ú»E.L\o"?n' ó:SÁ¿äﵨüR4|à™=ÿ†z›GàÂÄõ[ý¨¿pùs]'~>FÃ÷xª+&n}ÀáÜñšñêÀèx åÓ£«á&g\Ê€›G">ÈÅðeàòƸ¼ç>H5fZyá|Ë —7îüsµ/6¸~z߃†Þ[ˆ¶ñ /‘´'¼²ÍKí ¯]¨ºøû+­E-<° ›ÕU˜ø\˜¸öµŸËÛ•õÊôùƒn_Êþ¤W-<Úö±þöpÎ8Jmœ^žñ×£{ÃOöõ'65ܸ0qu×g‹¾jzù•µß¸ }íÈøv\˜¸~+ýñ9‰²Jõ—ÜëE:w±>¢m„{>«tíæâ{u™øà&&®¾¼\:ñЧ2äÈã¹iç¡ÞçxòG¸>à6軦ú°l|]˜º1ìÅA´ÀE¿jiã·%¢¿a ÑÖã=ö#öðoÚï~uÑÈr¨·¡ñ]˜ºþøãúث׮½h­çwݸ¸qãfœ'èáoO_tý!jÏGØB´xŸ›¾ÉãTð/ùûKùu¯|¤ý.öõ7ôç?&^ ;ñp°2äÈó9ªùþ\Æœ«—A¤c.®Oêµk§®ãо‡6èÂÔõÛqz¥H¯‹é“ÖgÞrù´ðh+ص–TðÀÀ5«—:ÏEàÂÄ­°¿ú ¨G²¥7j-î³ä"l!ÚFÄÇ8|Ø[*pàÊaû}áï ñ¨—ôɿ䯷ùrÝæËþñkýn À…ˆ·ËÐé’ ý\rÓè¸~Ø/õü zÌù¶m+ä瘸©«Šö“AS§Q4Û] -D[=‰y¶=l Ñ6n•óljï_*ðA_€ú»CpaâFЛ»,.Z6mhÑŠ|[ˆ¶ò¹ÜÊë$ºìû{¯—(Fªn„ýÌ*w‹¤‚ž”®‹ _šlEú]ë#ñ¶~ƒO*p`¨moM Á…‰?èÆß ‘ |R‡Cÿ.Ž[ˆ¶^.ÿrÈ-_öqFÜþ%5ü a` ÑÖoñe§¯àÒ§mìQx°ô °…hë_ÏòdÏìeI~û¨³ 'Dª®,ëP?Ö¿þ̺ٴí_†èBÕ~œéµÄTàÆøõ   7‚~+>³]©ÀÒ±\ŒÀ…‰AßÑÂ6^ÂIÜ/ŽâS.L\ú6ËQÚÛívû6Ú÷ó8üï·¶m#Ü+=!Ÿ Û¸Qü…„[ˆ¶ð…Ýü˜ {Ô÷ÛK÷ýþåhµ¡%Dª®w´4ð‡Ê—='ï®'´̳m.tý%ó]¨º^"ÚÎÔ÷Gªn ü7Þôi÷¿µJÞ{:]š¬‡zè%–TØÀdÑ^ °…h[ßÙM¾©°ÇrêÕDzìÃïBu¡êú$×À*_¶Ë¾Ô±¶KÞߣ”mh¢€õ.Tªn-<ÚwõÒ¢õs-¤E#paâzÐ~‚1¶qd‹?1` Ñ6¾N•»ÜŸͶq«ø£¶m#à·Ó HGð¤Â~¥ûϼŸíi,ìá´'ãçÛB´­€ÿ9ž„˜¶<þ~a˜¶ Ñ…ª«ßú~øí+üþ"W¡í[ .ÛüQ›õ.Tªn„}¨Õ-ÝYÀËFÆæ,`„-DÛxÀû*ð^é‚~· …GᮿÞú3t—‰Íº]¨ºø×ÊŸz˜]*p}²ðŸÂa Ñ6"^͸úósÛß,Ÿã·+_Ð{eÕâRð— ˆ9l¿ï•¥º&ò§æ8ºššÛú€ÿTàÕ1½=a@ 6OþYséÓnq˜îšiøémE{Gß`— ¸tÿ½ôa¬ìÎj]ö™tž(åº@[ˆ¶~¯ ÷8ûZRaß>Öúg‘•ñi*ñá…jY+&®O>C>•Œzø^*tàùl?7°‡G[!ÚÆ}¾ `ÌÎõK…^¿ôü}éün*ì^+ ¹ÓÎ|Yh²q—œ—å“ ]Ï7=9½&F¦nÄý@_˜ŽÆK…<8Þ5ãŽÓ‚¸ô±Gß<NÝK…Ço—¾–ËD^¥âÒó‚‹\©ˆÑ…ª[÷L½DÔ»kY7Öf½ Õ…ªççüSaW'ÔöJ]š¬öœm#š3k?›`·H=eö ÝŸuh`iO÷‡èBÕÀ¯·tV¯\*tc¯B¶§ùnŸêh¶l!ÚFÈ÷êàAÂÜï“è÷>‹f½ Õ…ªÿÉ]ü^ü«Ù†ü¦+D\¿e^sµˆ› úÕ~~gžW{°…hñ>?\ÉlƒJ…=ª7Š¿}+¢mÝìÓ°7º¾âÁNâ\˜¸õÝѰå4:pí8þŽúÂÏ‹7‚~k ¥åºR¡ëïZòt!º0u#îû»£ÈÚEоCù¢_÷Ëü¥Ù÷Áå[ˆ¶oû{^š¦Ûw±Ì¹ßÑ¥` ÑÖã=Ÿ §Ü¥y*ôü½¸íi¹Û§zþuÕ` Ñ®†œ»¿úOÈ«ó§ck8Ž;› àVÔ4êƒÊ—›BS¡QÇñwÔÑR+^Wžm„|ª×,zwê<ëçï9²ÛüCt¡êz>w^fú Lܸgì ”öm¬]_·´ïc°…hë·ÊÒƒ¯ŠŽ­ò\¿U–ab/Raë¯[.¶m#àËù¦ufý¿.ó­è8è÷Òo€*®<ÛÓ‡}¢ù/è!çÛB´G¼:§Bï•+ôÒ` ÏÖ#¾²S¡éCî>‚)Ü[ˆ¶îåÞêk*ÛûZ²>ç·Š\¶§íÃ~©ç_Poð[ˆ¶ò^M…­Ï?J·¶m#àè·ö­qkµ9éÁÞ¸\˜¸ò Î%8 C°IûAi(†.o…~ã7¶¤BFÆ]Õ—¸[ˆ¶ò¡2z=xʶ¾}ð&` Ñ6oÜhßÁšmhdlßâ U7ÂŽ¦ž<…çŒC㢣ôà —7BÞ׺OÕ-(ê’1˯giú¶Ï¿#‡O 6b ïP·…©{‡³ =¡°Þ…êBÕõ°ïp¶²o/Ëey>=…¹^¸|5ôÌv…2òóü;tý¹ô+CwÜõœ•?ÿ†ºXÑ˸?ÓÕòø¹WyuËpÓ<Ȧ]×nõCûói!úŸŸõ‘®×tö¼s†ú³ U7†‚Á.ú7ýd¹>e·ïúáÓ£X£{s‡fì êŽÀ…ˆÓÇV}WzRÍçðê³´÷=žál®1_:47טct¡êFàpöÀÏHŸ64üâzª S·¢¾¢Ã»£¶¿~AÆ|Zµý½Ÿª+šµ}oª>Qþ2𥿲Jù“i¼2pŒ.TÝü‚g:Û |”í¾ ^¨¼ûL_9š½ph´Äù.–*oEÎ9ê«–8ÿ¾úólêÿ©Àg½ðìþ8A„-D[=ÞïgjmoÜîü"b*lí½Ò_úäËe¼ý²ê3ý@Üî—>d£~íޤȗ…&ðäf{õçâ¡©¿½úÄ •7b_O\ûËã—~Ö€*AÌòxŒ.TÝ|=oý ruñç»Æòõœ¯{ƒxáòVð'pp‡wþ¥Â†Êæ‹¶m#à·íD¼RD*xdsR‚x¡òFìëÉeíðÒ¡a²¹v£ U×?Ös˪L ’íƒxáòÕàŸ¿-ë@·2ö/øû’íyù°_êùÔe€]Fý‰m„|x„)!©ÕZ°¿›%€mÅNözjK™‡¦$Gq)†*oľ^AyPMÍ:4)µWSCt¡êFàg´U¼aóe*t=‡ÿ`ßh.L܈ú½awaúÄëWîØúφ»*Œá…ÊëCã܃É%Çá\¿mæûÑĬêa*t`ˆÙµ!F­{ØB´Ïx-ÛQ—È-<Ú¸MŽó‡”`;¾• {Vº>\@ ¶¢ÜÅžÌC󦣨à •×c¿ð³ß©°ÕËŸ³§ËB“PxªÅQWË|}¥²ôÚJE¯ªEàBÄ­¨¿ßâx½æ©à_ò÷–¸Œ/ŸU†“=ÿ†úB ×ßû—³—‡º&nÜ1S1Õ7Uf»7úl« Ñ…ªÿÙZùûRÛ›èO‹f»:ª·'Eé²Ðdã_ñÌ–£V”y`<ÕÉBXp!âFÔñ‰ÈÑÏ¿ £ù¤Žæê7À¢m„|g—ˆÒ'­qT¶ø´ðh=ØëQ¨H<›³úà«Ãx.DÜŠú„+ž6ÕÌÏç¢>Ÿj“j.LÜû„VˆáK*là)m/ ØB´€oðÛ³§4”yà]Õ@}‹À…ˆ[Q‡-žÃÌÏè¦>£j‡a.LÜû®CñŠV*là)m¯ÄØB´€ïZéhÑ›ýnæä|W2ôªõ+f|Ù?ð›ÿ„úcàÂÄÕOȴ臦«oC[¿Òqaâúm¾ð‹¿§Ò’ùú°µêYb=ì¸q#êüÜyú´ëƒ¢'é` ϶â=óÓ ©ÐÍmþnˆ.T]OánˈÍt›6Ó©oÿ™ÆÅuÐÆEõ=4&®Ït ú¨éê zCç"Ü¢mŒµç$þ²­×)dþl!ÚVÀíOG=8½#ÓV“\Æ×鎟lþzÀù¸0q#京À !©ÀùÙQ‰À…ˆë1ßk…çýšÙ¶V-:6Ct¡êVØp8oO¶îÎ[Ãb{²5À¢m|_‡Ê!©À'ÔQȉÀ…ˆ1ßz³O*pýÊŸ´)EàÂÄ ŸÇ9PÛ”R›ï¡í|Ë —·BÖ¢ÛsÜÙÇöw€-DÛ8zü‡çø«Œ›wK;ßÅòÂå­ÐïŸ-…¼í_¾Pýÿ½îƒ^¶L40“:Ê­|Zh´Þ1ûåC½¼í \¿½þ–p5Z7­UQ}ÍòëÁ™¾­‰ü{ø´ðh#Ö¹RA=_%ú` „Ά Ñ…ªŸÐ~"¼ 28°ÊÅñ÷•Ï`6ÔS€Êx}Éâ©@EàBÄ»>µ¥W×úÝ2׿ZÕÎw±¼py#ôèá- …âTàõgÉSâ®âO­¸±zYÀ§:OÀ­Ûeƒ/í»N²\_´o;áÓ£XoüâvúÄÏVÅý ×å#paâzUþØÞÓ?í³¤©Ð_ð×Ñö²×ùngÖ>]?À¢mÝçgˆø†2àÆ8Þl—gÚeÀŸØVÀß Î9o:O’X“O…Ýÿ6AÐ: è²ÐdãW<ÏO¡îI¬;Y"paâFÐpqåé#È8ðŽåè#ˆÀ…ˆ«1?zøàºA}Ònô ‡Þ¯p¾‹å…Ë¡ç×äSaW‡ÆæN¾,4Ù uõEßß/séÖË„¿_&Fª^ þTˉ}ao¦Aý}aA¼py=øCí;BºN.˜ÚûNBp!âVÌë7¼¿9ìâÍ[¦¿]ýŸý~´þª ¿_ûcü}Ç Õ÷€mm$Þ¸mf05êh,¸ðÚøîh+ …F«%ÖôJ¿…‰7ÊßÚ3¯iéÒï·!¯i)Fªn¾’Ü}дtáÀz·½ié^Iz?èâ¸ðúÀՀ߮|C'SGóÏÅ#ƒº£ù'ˆ.o ’keJzÐBCÁ\úƒnŒ2ÛÈ.§Â6bÞlw¶m#൳J/¸ËÛ ¥!¸0q#èåÆTàÕuc{™4€­Gû<3šD5Òq€g!G‰4DªnmuÔŽÆ?‹]^é(À¢mœ_~I^}Be#>-4Úˆö §ºà{Å‘DÑ…ªë_ö úQyÜL¿VŠã—d“Dn€-DÛŠ÷ŒLrí›ÿ/ùµyéÛ×2ü»ÿháÑF¬o[Ñi§¬¤BÁßwEf{]>ì—zþ5³` ÑÖC¾NærèÁfè,×o”öÝÐ|Zx´ëóðá\g½þ„ò\˜¸ú5í}ë5]Íéݾ§ÇÙ.•>åú åØäŧ…FëCíž?Âü…‰Oý‚÷Iôí½i™¯YÛ Yjú7&®‡ýÀ†Ú怜0r¯ŒÚ½¢&mø´ðh}…íI³ÕÄJþÌ󃩰‡[râ©ÝÚB´Ç¦Ç^5WuzP—…™®Ï¸ÝÚ³õy-Ÿ0J}x„‰wÊÐ]˜>u`n˜Õ¹Afù¶m#äcýüu¢9ëæ^n¢9Dªn~Å[èÝ‘™îšE½kÔ¬g.L\ ûþ_ß—ýè¬myoû5ªÏßoç¾¼ \˜¸s(‡Ø¼QìMW'Òæ/-ÆØÂ³­p›•|ïn«·|^õÆ »8Zx´ëù=ŠÓüH…þ‚¿¿ªd{[ïö©žAOø¶m#ä ¿Ã&¸þ"än Â…‰ëAÏ'\3_>Saë»r¼/Í1¶m#à§Ï’Ö¶©Ðó°52×åQºPu+ðï­Ð¤M(©°Çá·ËáÏ’?ëÛgMÿÅæ¿ñ}CG”.T]Iøµñ»Êß ð£Ÿ'gqu¡êú9žkE澑TØÆ¬áÜïc Ñ6>Í­õo¹Wõ^ùÞ¥ Uׇœß{•WZ‡~øs+™*oÜ“+}é˜>mcWôƒ5o€-DÛ ø‚ ­û=Þ6r¯ ú­¨®¿bx¡òÆ0€ó£~õe­õý»Þ>1N[œ¦BÁßß|³½ØYÝÍI€-D[©H½ð)à*o ;¿;,¸1®{ûÚ‚paâFÐáý »`ßvo”¼¼û`£t¡êzØ'~º$öëÒGj’‡. MÖ§¹é|ƒ™ú^OðäRúžù\Jïûÿöÿ ÓÃþçƒ.Tª~†æÿ¾Ý…˜‚iÝ ò¶‘ÉbÑç"õéá…ÊÿÈïÍK^Ÿ0š» ƒpaâFÐÑí­Ç¼mhº€õ.Tªn„}§wì¤O¸_Z;bl!ÚVÀgöëK*l£<åí °…h‡÷û Úã£ßáGµm̻ӂ_}N ÌýG¯®,Ôîü]˜º¾ kÐMõûpùº0uãvœ*5Ü'å§Œë"Gù)&nî qÔŸÖž¢ÛËO¸0q#èöÝ|hðÛFžÑQÔ…tˆ.LÝyq}R¯½lž¿ý¦µ£Ö‡†§BŸÕ*±û¼ó \˜¸¾#bÝÑÜnÃo*Lݪ‹©Àûß+çUEù´ðh=ÜÛ¿0:j¢Û­µu¾Þ+ª¢!ºPu+ðü:C*ðÚã©ðiáÑF¸'lm1ªk u=id8œÕÁV¿Çp!âúÂÇõÊõ»pB³è º0uãV<¿‰Ì=H#ú¤wεã]$.LÜŠ:|º~FG*tàÚqü}éë»éÓà– úuÝ×–”'my¶mãVÙá%Q{}ÛáUE{=&n_ÿK^]Y8ê–|Zx´nðˆhõÓÊ· Þ62}ªMW£ð]˜º±&Âuµéj,Ós·ß”^ÏM…­ÍAªÐtYh²žaÙª_ÙtüÂÔ­kŸékaâÆ¨•?¶©§Û¿ë“ \ÏÉy?Hc ÑÖ#¾ŸýáÔÏØ¤¯_yë§Ž~ì¼ËŸxm*l£á§Ùîm!ÚÆ2Žè ~8\*t`\Áñ÷¥Oà•·Ý–>õú•·à·K‡;[­Pû­ø\Yó;Z¡Bt¡êÆí>U[Oêò¯®üUy>-<Ú 7Xþ\•×?óó¶‘å–Ú«<ª9³]˜ºþ¾Ò «ÍÊ£š×Úç?­-Än¬ßPb7aˆ.TýO7áíâá .þ³ S7‚>£hÐçSýŽŸwp¶nлfÝs~.7⿌ÚZ]_f ¯0Ý5Óð†ðh+Ú+z—ú}¨fè2Üå úíâùŸˆK„¶ßžúü±);S!¿¾)2~ÎO{îû»ýBóо-DÛX]Àø áå=øÊ™;gÚB´'Çwp´÷žfz)jo> Ñ…ªë?z´,ßr¶b*x`Èmлv½!É L]ÏG篕2§!ÚÆ3½O@c}3/ø<(oÓ™žûñNŸèùJº‹£…Gá^  €ç;øÆ2÷z¿¬º/'"®OÐ8®ö‡Mú]¸€•"×Wº1d-`É¥õÈÛºp°³­å'¦®>ÿÿŒÛ°}É/öy°ÍhÚÀç!ÿÑè[Ãû0u#,Cå¤|¡ë²Žw¡+¢müÝGÙÔš>á׃?~»¿Ýqù²Ðd#ÎçY‡Ük*ô^‰s'‡#l!Újbxè×€—aêÆír¾ö´>¢TÈj³©¿ù)€mÄîòiï`¿ðÞ( =èaâ…Ë롦Ñ^>ØPyáÖÅ?ØRÄ —7BXÚw\8tß´¢4ˆ.o…þ½È¥mõK…þ‚¿ñ=æ×–åÃ>ÕãÛGy»@[ˆ¶òMú9Ú¹.º_p¾‹å…Ë[¡Ÿà»½yÊ¥wͪÝ5Ú”[ˆ¶rþÛh*lueꇦËB“PŸs³^™ {ÔWGî:k„-DÛ8بÐÞ3Ÿis lÆ»H\˜¸r4ýÜ·w_:2ÿxšŠÿù+»xž ¸Óa»¼nnCqyåÀü³ióÖ¦a ÑV ÿpxáï)=“|ãA=&¤gÙqØÌEŸåáo™âv» ´…hë÷Ë”»,ˆ¿mýF™îiZÚ(¼Ùöó éà —·‚¶qôhg*ld%€ë]¨.TÝ û{‘Dªc¤Â~=¬Ã×v«˜\˜¸zÒï?= =:46ø·«‡ótíÝ‹—¬dvm%£õ.FØB´u€'&O' É7hæ8-ËÕuŒã´Zx´ë÷k)éHž·]ŠžT¦êÛ\Ÿ¦Bt¡êÆz¾ßA+SGa*óÐÚ®ýp«<Úîwÿ¦Â†–G°Þ…êBÕ›îÅhèxK…Í þ;ôk={çð…ësöZßäñ Ëá›gŸ¡9»ý¤®‹®OíGuEØB´õxÏýðŽblæ¡ÛÅQŒá…ËÁØ­Þ铆†xï"qaâVÈÑêICb*thpoðoÇß±=m”߈þ´A£û¢Ždú ;ÅÃ%q» ´…hñFwM´|7ú¢>K>Þ‚ ¯Áeñ¬›s’¿.¢—a¦??"Ãýªq*tàžÁñòÒ¡·w”õgàû:ÿ}ß|œJó…ëë·Î×÷úæÆ¡¥ÞÒ÷ u(Dªn„}Ð'ÿNp*tà‰mÿÂqŽBÄ­ ×³îþšgÖ‘1ÞQó Ñ…ª[?л]=½êÏןS¡÷ Ž¿/=¤”>yht÷”—ñ=ŠQzYS!ë;¡ü ¸|Zx´q“xÎÄÑÌ’ùWx\¾v4­6øïëŸ`ßÓá–yhbrt¸ÅðÂåõ„ä:ãu[OÃÇ7žÛå°3å}ÆÏ 8DíMohí³áûë©Ð!Ç»vO1 7~Ïm'>x3|*l`ißÄ` ѶŽÖ<õïÝúZckž øûÒžWÖ_QŸ&’Þ…êBÕõ{f«÷¤?hÇÙêMÝÚqBt¡êFàþGW*|dµáêB ò…ë[ñ¿}õsôF*ìyVâ¬ÏC×O6ÿ µn¢ U7Â>Âõ¸UFÔeAÖ9 Ç»vO ·‚Nߟ XÑ´oæ°…hŸàÊ„ÚTøç»ò©Ð{Ço—ŽgÃúæŽÅ¬#«GÇbˆ.Tݸg–š#xÛkµ§ðAûIÖ¡•R{ûIˆ.TÝøQz¿£I,>´Jjð»`_¸¾ÿ äÛKòÛ½Õ¢§Väù´ðh+Øp]ÿDv*t`ÖkÿºwŽ …ˆAÏù^;d*èQ¹UôpÒe¡ÉV¤áº’ZŸýó¹íTèÀM‚ãïKÚ)š›ÚR¡C £ö†¼]¨º~Ï춦ê¸Ñx¸§…(ûÐÔìi! ò…ë?í8k‹öº~¶iº½®` ÑÖë›û„«ðÊ»qãV*§þÞ›¬CCX{ïMˆ.TÝ|>ôlø²Ÿ~"7ô¢-4šå÷E¯àÑ‹:i¨Ù}ëž“ìCƒnƒßûÂõ~!m¯‰ïð»]{M<À¢mL;šWÇ{3„ˆ·Ê1`¯-œN…^½ôüvépVdz/5ó/ù{9cͪϔÑÉžCÍDàÂÄ­;ìÿhù*t*tàŽÁñßK?еt{ê@—¤íõ)>-Q y)Ä ‹0qý!àS¨Õ%¢úñˆ ¿¿²ø.–*oD~\øé›TèƒqñþÔSŒ.TÝ<½z–>éê2£¹âG‡…[a†ß=[P.¿¾¸õš¶º%F¦nE~F›ÛÚ5¸ôüýÚsj?ìS¾m`îm!ÚÆ `A3-x½qãfYÎẫ;º~éü}éðYÂê+´ú)  ‡fœïby¡òú{ÀpnŸ›¦E_»ä®œ1Ÿš”ùiù¯ÿ·æúoúÛˆÚ…êBÕçiŸáioÔ§=-—~ùÀÔ1ë“ú¢ S·"¿¡Ó^ûòK¦E›>Ôìh€-DÛ ùŸÃ=YuºË¾—¤Xuº[ˆ¶¾ÎûbÊ{Úý/4Ùºè•Þó+D\¿¿GødÜöO—]84G·¼,ˆ*oD~ÂÓêŽ #—LE«>Ñ©ï1!º0u#òðËcû–ÝŒ“ѦMFj6O 6½ 5= 1Ëû)úÞßÞŽw‘¸0qcFBç |KðlãfAÏMu|\ð¡ç»X^¨¼ù›·Ò^:0ÂìÚ£fl!ÚúC: üÜ‘0qýn™†êé¦Oêj™·ºõžÔÕbx¡òFìÏ3þ©ýÿ©Ài©}çB.LÜ :ÿƒt©À‘§Éñ½» ^¨¼ùóPFê.£TàúMó`T.LÜúòG'Öî§O%}œÔîCt¡êFàW0ƒÜи› "-Ǹ0q#èçáÐjÆQi›êgƒ<©´ÅðBå­Ø£}kƒš;Õš Îá5ð],/TÞˆüß-1´ÚÆtÛT2õ=µ¶` ÑÖ>×?Bõ$Ý>׿Aõ$Ýà •7bC6ªªÚ-qèAÅù.–*oD]Ð44à§OXxöDàBĘ/;¨;rî7úKäÜ#paâFÐ7<'æÈ^g Ùë^¨¼{øÀ0üËTàЉó],/TÞˆü¹c†ÛGœ ½>¹z CtaêzÜ—ê)¹²ÀKõ¸ÙYà\˜¸ô NxòÀ™GIO8†*ožrÃ?Ég\¿mžä#paâVÐÑìLûç]/zšÚ?ðÄ •7"?ãïÃk{…5ó9ѱ±+¬1¼Pùjì¹Mâ_Co¯ < î!ú×À{u#îKî¶`î‹H…nÖ´šõ.Tªn~-çbµoyg=¿ïîn¦»8Zx´î?ûyE¾åãËhÖ ØQä‹À…‰A¿ù¬À¹ÙúïN`}sʯAëçŒhÞÁv´ðh#Ö;Ø5ïrMŸ´ñèø7çòiáÑV°Wx!ꨡfz­sÔPcx¡òFìáèõÚÕy‡~Xœïby¡òVäñ„²£g#óІ£g#†*¯Ç};Zõ7 u|Gß/ì.ОmÄûÖ8`-]Vm¦V‡˜õ¶™Ã\ÀtG 6b}æÓ˜[•SaË€ö-Ö¶m+àpÙÔÓ›‘yhàè͈á…ʱŸ~‹C*tà}ÎÓ¢ S·âŽ–«ÕìåŸC‘SCÎw±¼Py#òíÛ¬.¶TðÐÂËуà •·bÏïíIþNØñz’ø´ðh#Üù“‹ÌcXSOz¸Ùîm!ÚVÄh¾iËR}LßlÅ Ó]-<ÚˆõÞÜø‰´éÓ®ß#8}»ìõ6Ä~4Ý_öëÂǯ~­ÓÿàÇ ?ôRK.LܺUVð•nÓ^_ôóö{Ú¯F°ý'äDûOÄØFÀ¼MÊÑ™yè¥ÈÑà •·b6–»ú1³^_¹ú1CtaêVÜÑN)5áúç[©À¡ ç»X^¨¼ù­‡K<ž¾ûÌC/E޾û^¨¼û€^ÞTàÕ—#G2Ÿ­Ÿ³‰oæÊTˆ¶qŸÜ§­7£öé³\Çh?“žO ¶bÍo7N~ŽåÜ6i>-<Ú7ýô©ôIkôöC³ø´ðh+Ø+¼”pt¤oxÓµ§#=†*oÅÜTêêŠÎ:°:÷tE‡èÂÔ¸Ã_GÀ?• z p¾‹å…Ê[‘Ç«¯½º6W;u·ÛGè+ksÏv¯^¨¼û€NãTàÕ5:Nwq´ðh#ÜÛ‚þšžíF™É_WIŸ§Ï[å<Šöõ'ôÍF¸q#êfTâ~—íϤDÜî ·‚^kzñw§gÛµüíéÛ^[eøûÓ ¶ðïðr´Iox'°§M:†*¯Ç~ïk7ûµ4]ͺY¾ zª S·âŽvxáßKK=P8ßÅòBå­È¯Ÿ‘/r=Í_I…Ü«ÏR»ý¾ê¯ jÌõKàÎ.Ï&ž^¨¼žUÏ<ów-/ý‰mÜêcÄ.’TðÀÒwP×Õj2"nD}Bœí;² ¬ÃÚwØB´€Gtz§B¯¾U{zÔláÙFļGÍèê;Þ„íéPá…ʱ_¡…cË·äÒ§ ü¬-zª S·¢Ž×N»2­`»bx¡òFì·÷;ê«zø%ß3äŸöL²ýüó¿¿¾U³½Ê´zèOý?æ:ÛÓx·3ûúzÜù¶m#ä{ÄF’TðÀúkRwjM)"nE}c7ô¦ÂV`°ÝÚB´€`ÉÕ ›õÚ ÌÕ ` ÏÖ#~üÍ‘0a¼×ÓÓà •7bæÆí·Í©Ôöã¼^ r‘§Œ×<ºÿú4šñY]—¶Û] -DÛŠxÑëI<6-Û¯~Ìáàà]$.L¼sà ÿ¶itè-ç˰“ù2ðÏx+òx©Ê±­'óÐ[†c[O /TÞˆ=<´/Ú0¦!aúvÙï¶’Ú«Ý ½Ú¾€¯H³öФß.|[ˆ¶q§œgµ0÷i¦O{ÔÛ2üûKù´ðh+Úxß”cóQæ×ÑÏÞ€û»®ZçÀ…ˆQ¯ž[ãoº?ªÕ×}€-DÛ x@ÿt*ôê ©§ó;ÀžmD|Á›¦}ßGCk³£ï;†*oÄ~ÅJkz‚DûIŸ³ó—QñÉ95¶m½ãȽÞĨmëF©ë¶kgYâçβy~áóúß¿p·J5•æà»X^¸¼zü³´ž`™‡^ç;Ábx¡òFìÿv ûÖ³Þë/0Ívh ѶB±™'<°Z_µÕº¾)"^:³å¾ yÿ›Ñ¡m Ëe°ý²êïÙµ×—k5½¶7ª_zu¥Þ`w¶ðìjĩۦʀëoè6|…àeÈŸàFÌÿ¶7\<´(jßÄ •·bÿ§:ÂÚpÙ÷Kgm ˜úÛö‰ŸU“ ºþV‡Û] -DÛ¸OЃpÚM½lëù÷œ£ U¯†¼Ï®Œ<´€nß%Ä—±Æ±ço H…]]36ohàËB“Õ\×?úOê’µÙˆa÷ȱÇ+<°Ý´e—º?-"nD}AËhƒºÔÕJ],uq¼‹Ä…ˆ1ÿù_SðH]_¸àvh ѶâžêÙôrñÀ³ë%ˆ*oÄþ<¢½¾Øm?Fý²‘#®w¡ºPõjØÉ[ÔÊÈCs5Η¡'óeìŸñFìá³N6my§þV°ް܅ÉB“Ppw”cWÝÅ‹£]]Öé õ\ˆ¸õ¡ßAß • Xyµoí Á…ˆ1x ÓÞ—~ñÐ* ½/=ˆ*oÄ~ÂóÆ›:ʨoI™‡1œïby¡òVìkòxpÔôE¿:w¦oÉŒv» ´…hñæw¦Â®.šû^ù²Ðd+ÔÅæ.Þ¡#—]Ÿvœ:‚ ·B±G'<°0:Ô%ú> 7¢¾¢ø>€TàÀª«}C.D܈ùV=ïAïèÅ[K¢½£A¼py#ø;}³Q*l3qäÞ%£ U·Âþ®Ú³6§ÿq¿N×=÷wúDÏ?`M ¶ÂÔÛw\<4W·ï â…ʱ? ’çØ‘Ë®®À<玄àBÄõ}DK}*øú"iV+Žêv€\ˆ8uV+fsýe÷Ii^Æü nÄ|@“Ç«zåjµ4ãÀŠã]$.D܈ùT]¯?h §ê‚÷A[`ˆ.TÝ <^)utLgš5Ó1¼Py#ö~YZÃôø>Cyš¾%Ž›é.Žmû½5€´5-öë…÷g”dî© Á…‰1‡:ë=gL`‡ºçLƒ[x¶n¼ÀÑâ=¢½’󨮢Õfã\ˆ¸õ\©ë½…4ãÀBÇ»H\ˆ¸ómÁØÔ»EÍW´‘Ç»H\ˆ¸ó}C—èŽfÆñãœZs™ëhf Ñ…ª?ªoOúw3Ì®þÝ^¨¼û©‡ŠÔ®MÓÙ®¯ð."n…<¢û5<°PÛÔôÎÝ\ˆ8uVk`s`-àhjŒÀ˘?Á˜hcÞ› øAÍ»¸q#æ'íÙ“©£‘tº}Ľ69Icx¡òFì׈VÌTðÀø8«7¥ú® Ç¢Îjâ)cŒŽö£¼ŒùÜŠ9z*^ó—.Ûzó+ Fªn„þ˜8Þ#˜ xŽÝ¸ñ?1‡%ÑgÜÔ õgÔkô:Ÿ¤Ÿþð?¿éÿ~’÷¹çÿ¾Å%Bª~†æÿ¾ÝŽÇ5OZó´þêxÊj¼ÿt³Zx´ñèßcÍêÜûo+Ããï: ÑÿDý‘®~î«ü“NÛùv\Ø¿ÿ-»Ó6†.o¢7Ù¤=R ·9ˆO 6¢}ë€áõL¦‚ÞÔ½ß3"nE­¯9Ú±2<@Žv¬\ˆ¸ó|Y´UººŽÎ6ôë]¨.TÝû–5úTSן#O‡m.D܈ù´B‹tø”³TÈõå.Lwq´ðh#ÖìéSž”¡ðÁæ6,,ØŠ2¿­#xuyåhGáÓB£h߃mÖþËó{é3M¹o9&n=¢ï7<0oêl¦fµ#p!âXÔY½KeÌQ ǢSñ2æOp#æ;X#nè‹L,¬¸q#æØW6m¤gTliË]˜,4YóÒ¿Ö@ËË>¾Øy†èóRóœ!¦aùoyý†‹ž ÏôtüÎøÞÓ2>ïøÉ¾þ„šK‰À…‰ëÕšýÐôrò¹ýžüNœTàÕ%œ£ƒˆO ÖOº^ògÀ™?¥0qãÁà=mŽVâ¬#kOG+qˆ.TÝüˆö‚8:Î2<þŽŽ³\ˆ¸óˆèTðõâÒ«Q3ظq#êè÷‘:qS«OGq.DÜŠù µ…7| õmßN‹£q— ¹¾Âm?—O 6~Çóó¿õuùª­ËÕ7ÎLëŠeÐÖúh€ 7Öå¸>júŸCß?芶 8Z@3^]â:@ù´Ðhcaþó¿fÿ–ÂÔG«Qö u5ëf¯¿u5Dªnírp´®fxþ­«¸q+æ¼2wìÉ<°¾U×ZúN\ˆ¸õmrÀwR¤Ö·Ž= ¸q=æàº|R×åjÎo=?*Z_+nÚZQ}ËÊ42ÓÍê<ªÎ!º0u}µØ /êµ—cîí'å·­¥¯®»ív|Zh´ñhÕ ‰׳ž§¸ž£w¡ºPu}™¾DªnÜìËNγ6aßÀI¶»@[ˆ¶ðí=óóNHLÿ’¿þž¾w<³çßÐÇô\˜¸v¬‚ÐòýŽ7¾ƒOn¿}åÜZ]8Šp|Zh´ñSh"ÛQ€Ë8ðS: p¸q=æGDgb*ôü}ÊöÚßíS=ÿ‚úÞ` Ñ6BPõH^}<Õ>-4Úˆ6¿v û¾¸¥Õ<l!ÚVÀÿ¤›‰uà¬ßb8Dª®¿j¡³§§&‰NAž³Žu£ãBÄ[= >‘ ¼:&:ê*|Zh´í¹¯¥V¤ø/¸OÚSü!¸q+æ T–TõÔü‹Vû›vh ϶Â]Ãý•ËÖïE%¢m|F_ðÛÓð^ Û“ð´Ðh#ÚKeë®?'yÙÀmÒœ“Œ°…hW^¾Õ–z¾õEׇAÜ.ãÍ´Ëx?°poçoù²¿½V]ùßšŒçq?Ìl*l#Yà®GØB´­€c/ôjrF=pê¢ë³nw¶ðluÿÖ<ŽäÁUX²uÍí(5<¦{Ún½¹Ó×98Ÿ§Ðþy°KÁßÇ©l¯ÓÝÎêë/èñæÛB´ó³š©°«sN{.–. M6B½a9=Ó£O“˜{Àí.Оm„ûü’;2˜´6åÒ‡rÖJýîæÛB´õO·Ê%)Ý“JûuÔÎ÷_3ãëRâÓ ßô¥`.L܈ùˆ¥NÚO7¹èúÓÙ~¼I„-<Û÷4›Õß/Iœ/R_¾$¡m»h£@ráëúŸìëO¨™ï\˜¸òóã¿Ô} ©Àõµ;*BpaâFÐ7ì³ýl†‹®?ží‡3DØÂ³­pذ²hÊvÞàü:’™SJ…ü*’|›ìýy0º,4Yÿ _|róI©°×4,À¢müö­8ÚI©Ð_ð÷i'ÛëöaŸ>7ûþæÛB´OÐ;¬ãt€‹®¯Žã"láÙV¸'lZØ´i¡ì`}Óç7穟åM¾¨åEÿ÷„#l!ÚÆ¹ÌhÄMWËÜ®¶ßŽ•ŽÚ„'\‹ÛóƒlXX°qwløÑH‹6™é‘>u`RصIA6ߢm„|‡R'ŽmÝ]Ÿp» ´…g[á^±É þ¾ç/½€+þ%ËôAׇÕöp¢rû÷ÈŸËú¸œïOÜÏ5¦BÂãïKŸ ”†cÃõE×›ö×¶ðlãN™+-OÒv×ß+Ÿ¤í"paâFÐϦXîwÚR¡gû'æpx¨¢mÄ|И/jXÔ•[ÖKÇñ÷¥çE'³î• |Ò{Lý»[ˆ¶q³X¥}¯øE×óöÍâ¶ðl=Ükf9>C” x6q¼kÇñµq#èšèhøæN*tàÒqüvéô\x*l5âÏàÓe¡ÉÆ]2coߎ=×ëí ÈQ›®láÙzGèŠ>ðíßï%ØÆmr`omz÷™š3Ít=ܸÝÚ³õÛdЕ2¾Ü"®ß([À[[*pí.|ò¶É§…G7 üÐãk!âÆ²ž-σº«×®¶¹Õ†Y‡.LݸÁ›ç Èl#W¾¨qQ³!º0uã~ÄõU½v5…p_¦®ÞK?¼–çÌãRaë}Gþc"l!ÚFÀÏröL…>뫌v¼‹Ä…‰QëyŽc2/y@7õñ×^_btaêVÔW°g|ÓzÆõ;½ÚÔèÞa Ñ6¾¼ëœôê›>OAd…‘ p›ðˆ°…h¿åY¿" š zÔ:kšå.LšlD¬â7úkàoÈI20Œ4o#âËB“õìÍmßB¹Tóþ-”¶m#ÜÓQãý ­K·>SìOhÅèBÕÀÏ»ˆŸ {Ô×àîæƒ[ˆ¶ðÛÐB:,ófƒmXíû/`½ Õ…ª[?)ZYéÑžTØõ{·¯{ìGv)+6pÝÍ%¸öÄŽ‰mýFы齣ê Õ7þÚ®5 ,÷3¦+ÏOûvÙ]¨ºñ“ìÂgú¤;¦oW=±Ó©°þ4m€-DÛ¸MæJ…môGûSW¶mµ°¿ŒËÊž„hw ú3üüÌ·Íßx–>mh˜Åõ.T¦nü¢k%Eû Õ™m`ÐjOuØB´€KfZ¢ó„{ý‡ôg:ù´ðh#Ô;ÿôÙTàz Ïln„-D[øÔÓó©©°¹= ` Ѷ¾£³ƒ#œu+½÷ ¢ U×—pS¦áÚ›J¶qÇ Œ<Ô%\y«ßlþI-©À¡…PûA0A¼PyãWÍýÊ6¡^ô¹‹d¦Ø] -DÛˆ÷ŠWœÚÓÙY‡Æ®ötvˆ.TÝ <–¥l8S÷f¯µKPç›noZù3%Ä:_ˆ.TÝúQÑwÿEyõu㊿@ã|x2_Fþ¯G~F+ Ž k¶­KPc Ñ…ªaç§ŠSa¿.ý[[œ?ÁM—…&[¡žá¨½ø”ud¶sŸBt¡êVàÁóbFu¦V‹Ã?ÿ ùôiC÷ ®w¡º0uãw{ÔzP'šo/0ßëþ*]šl„®âôÍ]ÙFæ¶ö3Fbt¡êFØ×JÕïA5$ÛÕ9®½B—…&[¡†3—žŠ_æ¡É ç»X^¨¼ûÛ7aITØ÷Kj—×]_R¨;›þJ~³ÑÜå¦þžú»áÙ?œïby¡òÆÝxSCÝj— Üœ0lŒá…ËëUŒùøó @«ìlýžYø»TØÕe]{™‘. M¶BV£àf¥TØÐrÖ»P]¨ºö®0xªi™‡VŽjZ /TÞŠýÈO¦§BÁ߯loûÝ>Õó/¨ëÒ[ˆ¶r°®ƒõ³+åÿÉ« О׮w¡ºPuõ¨e™àü¢£7%ëç3:|ÝÎÿ 7%DªnOë´\ºPyãwñצöZxÖ‘ÑÀQ Ñ…ª_«Kƒ½¬#££ ¢ U7~Mù>œ {Ы(þ÷ø[ˆ¶ðO[9 )™‡F0??õ£~7æTê–çÕ#güoýÿ7Û¨Bt¡êÆ[Ïv>(Ó¬õsdTiÖ#â®*oEurTÊ3M}ŽJy /TÞŠýÂ.¥Â>/}ú²kãÁŽÍ[ˆ¶ðmX¸=¦©Ï#¿}Ò¡™îâháÑV¬ÿl¾%Öö¶¡ú.󠶇è ïÞýT!ð%¶zæÝÿA¸ún÷k<ØUmsùèßW¢ U×{5¶S‚Ÿ'¡êÆý~;“šõ™«Tà·O+cd¦÷þNŸèùÔy”O ¶ÂgØÍ™‡]Žæ^¨¼û«d7|`ìfceކ¯i½íÛ¥‹8r} ÓÞú̧…G÷Èß\bvûÛ‚K¬Ñ"º¿'¢ë= Ûöþd{3ûvà Þöâ5E×ïȽ¯ÆýIñz¿ SsÅë^¨¼ûzÕçA3믋·ï_aiÖ»P]¨ºøw®²3,}ÂóyÙ ¹ “…&q®yžÔ“3=ž8ßÅòBåØo+»’” ÛØ.節ØB´­€ŸëÆã÷½®ü9ß2L…®÷²>ø c.DÜú¾¡AÇ?“˜ ¸t_z½zô 7 ëÈ êè Ñ…ªë÷Ìq?ãØðÚwe¹>—¶o!âÓ£X×óéOêö™‡æPÇþÊ^¨¼ûŸ±‡ý1ÓTèÀ؈ã];޼BÄ ÏhÌWõÊõÛ}/·o^/ŽÚø¨í4  …G«÷ùÚxIseóÒ¡‘±¹²£ UWÛƒÖ~BÓkøKqã–9·åB¯¿ƒöˆj»’.¸Û'ín×ö$EØB´ó“ë©°{­Ä]àËB“Pï· ˆÓ‰Jûu‹Œ_G”Œïs‰/|0¢€ 7ÆÂÍìàkP!âúÝ2 ð{¨c¯ÇŃʢ *êN\ˆ¸õ󅈺/+}â÷ú+oKY.LüOÐßq9Ð~Vƒ~ôù'=?ÿ|éó?ýç'ýÛÜEâÂÄõ–†b@{ënÖÇhSŸQuØ °…gÿ6ò3—©Ðó€œuÑ…ªëG|åßÞtxñÀM³«7¤Vˆ Á…ˆQßñ5F{7ÖÅ×~¨Ñ ‚!¸q+êÖNÞ¼³ñ¢‡ý÷õåÏ<ñŸ‰èŸìù'Œˆóqaâzȧñ½ÑƒW Lÿ’¿ï Îøñgöüê\ 7Â~&‹ ñ¥½×ãâëO顦/ÕN\ˆ¸õ^à0oy£WSaßß1X•Ñ[ˆ¶ñSþʼnï£ÓßÜñ…4D/ÃþL·ÿÞÁKI0¦B>Ï/÷dEù´ðh=Öó†x+6ðt¶×ål!ÚFÀwz±"6páíE–[ˆ¶ðî/lßpá½1G<Ø Ä •·"ÏÏD§îG="nÄ|ÛØ«­TØÆ×>ü«Ä[ˆ¶ðë¼7fŽ;ºµ}žÑ…ªë úeŸùKÜTè½^õ/Îl!Úֽ޶æµïîZ?¶W&#œïby¡òVäÑe:^ÔIÌ8þ{åk+.°ºS¡¿àï)´lÓÝ>Õó/¨i€-D[ï»Xûþ{ ×oóun7 »˜õüý!Êö1Ø/õü êú%À¢m„}õjÿ?i`ÙÕþúϧ…G[ÁF8Û·^84µo â…Ê‘?¿ÉMLÏ¥‚½z–ñc¹ã÷¯”écy.L\ï,jÐWMW«!ë̯û§EGÇB.DÜXW,ôßSˆ¶ñ𯯠”x|d*èE™,üg^òe¡ÉF¤÷¼ÿÚ³Ûëß~Zv;À¢mnƒV·„¨Ü/š“q¾‹å…Êë‘ßz~T*pà9rtoEàBÄ­˜ôvœTàú•?i$ŠÀ…‰A¿þÇ*†¤GG'"nÄ|†‡.GÕ²þÈ'EË]˜ºwþ¶ùTàЯھ+?ˆ*oD~á·ü¥¯ažfÅ\ˆ¸þ†¾­¯Òx êÃôózñçOúóÏŸ™ãþ›ÿý±ÿÆQ¯.†èBÕõêâ¶½_¤iê¦BÁß×1×¥ïw;³¯?¡¯îø¶mcà·¤Âî•ÀƒÆº,4ÙõùjD<¿8ôšÏsüSÁÉøq|à穈¯?¡ßÛ¸0q+äS@ý9<´.rTÏcx¡òzì÷¿5KbNÖ­F”=:!ºPu}Ýk/¦OÚ2ÌŽM´ûð§ÅWC'àÆÍ>®èÊ¥ý ãK¯®–¾×VêB:À¢m„üüÔ9³ »º h¯¡Óe¡ÉV¨ß{CFrÏ_¶Ç×òýÁñ7ýEàÂĘߎ[eU,SÏŽ£Ö ·b¾`+tø€ñ½Á+QGJ桵œ£ %†*oü¬ë993·q§Ÿô~èf» ´…hçWvSaWç¹öz4]š¬‡oàrÔ¢ø±tT¢#p!âFÌ{|µ?h«}µb‘u`ÕЫçéÓ6á|Pö°…h[‡òà¾ÓTàÆ„ïo˜=“¸LZx´ï|³¹28påí¸G@E*ðêbÅѧ…F·É‚W ™‡+Ž…^¨¼û^jÚRkÕC€K–Q[²”vh Ñ6BözzB0ïi °…g[ñžèIÊTàÃü›»-n”#ß(Ó>Ñóèƒ9m…O69Úü2ÿz|¦~c÷ùÅðBåõÍ,ÇF_ Ñ6nšãœ†½’Ÿ |Ô¯¼Ùîm!ÚjÄ·þo¹–×>péïÕ"¯y ¢­6| 9­qàï•ÓN;Øú1 M&}êЈØÞ㣠S7Ñ€B_*ðêý‚Óïë>'9汩°Õ³û¸ƒ[ˆ¶:íÿÃò³/4Ú¸êm$ßB£‡rÃßÇÛ Í )í…æ ^¨¼û|øï(ô¨Œ´þ×8¾,4YôPTI^}:Û‹A´Ðh#Úü‚Jú´ûßöoZˆ/ M6B=âÙ‰ö‚þÅC`{I?ˆ*oÄžŸ@LŸvíát¤=ù²°d#Ò;|“·T²Ý%íõ”]˜º÷[nŸ—=Lÿ’¿¾Xe|é?ß6Oöüúp€ ×£>æC+ˆg¦Â6š4Üg1FØB´€×z®¡«om÷Ìto”‚ýýž!¸0q#äK@+}êÀÓ¹¨¾š °…g[Ù™ýTØæÍâ®IÄèBÕ°Ÿ¥IÞ a©{}HtŸka ѶÂ];ùÖŸ«Í¶±à÷çjl!ÚFÀá2js âe›¦» 1Fªn„}Ÿ>GsZæ0ËÆãéÏØB´õpO÷ÒiyæTðÀÄ¿ª‹ u• 7¢~îf¶¤Â†žOXïBu¡êFØü­ß‘SÌá×Êúrš¹ÿ<#¾,4Y¿ÁçÚ–¬i­¹Vß{Ö °…h2ÏéSÆÂ]hÕœy€-<ÛˆxÎ$2sΩÀõççI¶<"nÅ|¯.†üùÛ¬[¥§ Ü]¨ºøi‚&NµÞ§§sÉõY¦»8Zx´ëú‚ߟ½×êmâOÞFàÂÄ­ ÿ9à™–¼ÍöýÒŸÚ·ë¦çSa÷J/˃ (]šlÜ"úFˆWƒRÓ¦£Œ 7b¾ÕÁПsκ9¦4ë·k§'@SaCJ³}»nl7|ÔM*äú¬ Ó]-ýY‰KAY‡F–öRPˆ.TÝ<¶©®ýÔ˜,×'ÐöSch¡ÑF¨w4wˆW®RO§£æ W¿­²-ùkǨ×ÜÆÌŸû`Ž1W–ÆŸÊÒúß¿™¦×ªb!ºPu½*öçŽXŒ¼gmzr)2À¢mœ_fJ…­ãŠctYh²>Ô®ãŽ)Ž2MÆõßñI™&"nÄ|B3exM/8ðƒ:Š‘¸q#æK}qè/eý¬/ÿ¼PKc!ºPu#ðå)Ä£h²}[ƒÏ¢‰À…‰ó'xF¦®úõ!ý¤ëË~ܾ]6ûÜ’TÐõËvœ‰²n•fž'…µö‘¹'…\ˆ¸ž2Ë8ó6,/üm]7ØTæ8å¹mŒâ“åĪ{Öóôu–xPvÑ…ª[ÿ“ê§Þ³}^ú·¶<Ø5` ÑÖ¾õ¯‡ÌÏ‘¦ÂÖg ÿgT#l!ÚVÀ±c¨§Ñdº>":Ž£ °…gáþ["¶ dý|4ÞÓ¨ÛÔBt¡êVàv•/v¾ô‘aw¶m#àhfËQœÜÐô£6` Ï6â}¶“S?vœ |VóÍþ¯4GØB´ˆ/;´Viøi*ìêœïøpj„-DÛø:ð Ø©Ð¡ ¨½ø¢ U·5Ø{ŽÛn§RX‹-Ïc¶ðl#Ü;:w: ðÛŽNBŽ|.D\9òis9ëïˆXg°…hëyò}¬œÂý¤ø™qmÈrÐïëžÐŒ³£€¸×>õ¤€ 7Ï ]k ÚºÂ9ºfí.Т­§Ê÷Õ,b=©î?¦ÛäÝ©AÙ¹“>aµùÁn#º,4¹gn&¨ˆõËýþ¨Ÿô2ôw:£‡Ù¤Î§…G[áæW SWGG…“O 6¢û‰ß¿K… ŒÙ°ÝÚB´õ€Õ#UýEŸlÍŒþ¢O€-DÛø€ß퉔¬Cá  …êˆ` Ñ6BÎO+§O»::’átYX²éÛ‡WIéÍTØÕ§Ò“– °…hßÑ÷xGº*ãÕÅ‘¬âÓB£Õhïý8±×°©°Gǽôް…hŸn…iN/M*ìyPl_†±Ä·>©¥ã\˜¸s~¢*xõálO°ÐB£­h£3fsrí²™§9¹a Ñ6ž?œMÝ— ýþsòöÆèBÕÕ’ÃÞÓßÒ' LA0}»ê÷û1­…6ú þ”<´ ÓÝ>Õó/èSߢ­¦¿÷¾6"º_3 ´1°µ…;uuÙÀˆØœºŠ°…hëø) Tدÿ[sž;qÅ—…&¡Æ"íx­ßä¢ïôtXX°æûwÜ(ý¦© çß«þ3‹e{˜K{xÙ›¾, °…hëK’áXØí©°{c5åo܌хªë·ùÏ3À<- }¯5ÉümQâ>á€/ M6â<Îàr§=]5Öˆ¤«l!ÚFÀk¶ÿ]þÖReM:í/òlXX°æ?«xâüø'÷@|À…‰ësåë“$ÜײTØÀCÙþ?ò_oRaWïñö—2º,4YqÊ‘ÓÞÜ ¶> L¹ ‚¹‚M>ªO僕w€-D[M¦ÛÖWÊ[p*ä×eïÔ7wº,4Ù¸µl¯Dû—.úGUÊP_†Ï“_ìù'u]¢ SWOlÑWõÚÕ¹a:_¸º0uãv¼õS²2©+Ï'‘D—…&[^±ç~Ôž{íÃ,Ü!›zÿi=Ù1º0uã¹Çõ]½ví«5{þW¦®ßŽs;X•¯J…nmN}k Ñ…ªÀ5&m8Ô¨Ÿ4rÇêýXê]¨.L]p}ì5},3†ïŸ”ŸK…ýzN'jR. MÖßhçqãÿÂÔ'o ¤³3S¡¿àï×¥wûTó_P£Î·…h!Ÿ±Õm{ú7ËÕ•b{þ—. M6½¼ w¤ž¼íud÷ͤÂ6’¨þ~Ÿ[ˆ¶ñc–{Ry›ÿ/û\þl¼Œ8/Cþ×óo÷¯r¶§‚VWœN>°…g·øfám®~C岑UĨ®QôˆGèÂÔe8®O굫…¥y; G¨}[ðE×oÅö}Á¶ðlc)¾£yɆS˜ºñøßúi¬uáØ\ÌruË]˜,4Ù tý$¡ÑÝuc¡Òlw¶mc%Á/ú~ ¸õfË_ÃM‘¿Û%ëw÷bkýÁ6拮ܸÝÚ³p/ïªìסäAS@¶{#þ - Dª®(‹ý•áš/º~·´ïhް…gëwùyzåæ}¥&Û·EÕçegyçùež¾šì ËB“­P—±VÞ?KÈ×i.YÀª £:=4èjSÀ¨>:!×.L𛶺§åÊÕbõ¨¦”tµà;ª¯+^Ãïaêú«æŠ×eð¸ S7îÇ.`R±:ú+<î_§‹…ö]¨ºqÓL ÿq¦nÜ4–ÊrøéúÒÅqâC€-<Û÷‰¸0 Ñ…ªÿY˜Ü.þ ÿªÂÄÕ1àèÏ>Oâ"%4rá‹váZ¶3&®Ž-úªéÚ‚ån7×¹—+—üZd _òâþõJ-éïåî×Û[ˆ¶q³lü—ÛTàÀ•7¿8S6!5œ²’ ¸ËÛˆiÀñGHˆ¸~·LÚÄÓp€K*tàÒÛÏžù‡¯ì{Qˆ¶óüÁhæ[s*pàÊaû}áóBÕJ\xûûø„ÖÂÎmIŸ8pãv×l·Ÿ;E°[|ÝÑÆ¦^íœP“ Y¯_zþ9ýùmDüxϤmè¿ö\ý˜ÿÅ6ÛFmÏÿb` ÑÖÌy±sQÌ2!|³vϧBMïšqÇas ÜøAá,vЧB‚Žãï èËJ{z•`1_Þ‹OÖQ(©ÀÜï{²r·Ã´ßé=ÿ€:ñiáÑF¸oçñÐj‡©Ð_ð÷Üê•_9îö©žA8ߢm…Üî¬}°CúŸ¾uâËZ!âzT–Êñ’vÔËH_x Ï6bòg£ÁÓÍ©© eÔ.¿/ÞaàØ?zé@¼qüvézéjÒæÏVÃTèÀ¥ãøûÒ×€†©ÐKÇñ÷¥oಹ}c×?›¿°"n<ûšâkؘ ¸t_ú°û*:pé8þ¾ô#`óU*ôú¥7à¿—¾öµãsü¯ûÙîµþqÿË>]š¬?›ëíEÿû »Ûö²û[Ö†×o£ U·Âަ÷Û‹’ëí[œÚ¥ûË’k=.þº$×µò!Ô,…qãvë ûS¡c9Ž¿/}ب— ¸t_:š-o/c{Çšñ.&®7Å®ça™¯²­Ò»þÓ‹øÃÏçÂâçŸÿß¹[wm2[!ºPucô*JN¬ÃÃÖ%£ü Wˆ¸>ànp^¸½@žmèjïˆÑ…ªë7̆ÎDŽó‘¸qÃlè‚®½1!ÛPÐa½ Õ…ª7ÌŽ&¢Ú¥bàúL·ŸïtãÜë³Åœg‹sÙuœÝ÷ÿþ‹ÿþ½rü{»»ÊCßà —×§=àÝ.}âæþ8ÿki.LÜ ú?«í¯¥Y7/ÞÿZºÏèj ý 1®aû¼òã"TݸeÎáÙÑž [oúyЉ` ѶŽ?£í¯¥Y‡î–ö÷Ò]¨ºøã«gm K>­Zu4Óóx§Oôüú|D§…G£âíÌ.{ÈÅK#BÄõ倻åñU©À­Çÿɦ°^¨¼ù÷ŽSJý%}Âç¦ÊoËøkFtYh²ç|^±])¶Ñéëo³ °…hŸxÒoÏGeš8ÛóQ!ºPu}:f0à8¿”· 8ÃyökÕ”ŽCïBuaêFÔog˜rN°xÓû í)ƬCÏQ{Š1Dª®ŒÇÿðå¿ùV®Ü?8¼¡ u;뇞¤Ö ­a¼Py#ò@ÖÅ™¿|ëg£ûøuc7¥ U7Öœ÷šOæàÆ-w¤·nƒ~ãÐíÞº:Œ*¯Tb~ø³iwœô‡õç㌯LÆ9oÿüó'µ3­ÿíÿÿ-Þÿ~î© Õ…ª+ ½ø‰Ÿ›N…ž7ììÌŠ@”.TÝ ¶Êë¤7¯þ¶õîZo^=Æ¢­|è~kP*ôÁÁ¼mMQºPu+ðøê½± ñÖ¡Ç´± ¥ U7ͪ­™ê7o~sË›©ã…ʱßúšOùµ¡Ÿµõ<(]˜ºõÿM…mlYqæ­cl!ÚFÀ¼$Û˜·~ëÐøØ˜·ŽÒ…ª_«]îð›‡FÇÖ p/TÞˆ=¼•²Wó…ú0³Áy«æ£‡Âx¡òzäÇ/5¦Èß:ôÈ6¦È£t¡êFàÇj}òIª9óÐëH5ÇðBå­Ø£ûÎÔ¤¤r˜Ò‡Xœïby¡òVä~‚)ú þÞd‘íùãÝïþI5K` Ñ6B¾âãX{²à:å¸~é‹véjª À¢m„|ÃÓŽÊDæ¡ÑÑQ™ˆá…Ê[±§gSSaŸ¿+5L—…&¡Fôl=ï׆¦¡Öãñ¢taêVÔ‹DçP¨·|¿ð§ö-â‚Âٌ˱õpOžQnÏÇd˜†VmR³1¶m#äsŽÄºÒô7{G¬+…èBÕ«‡Ö-Ž,ûTßÍö$ÍÃ+±wòVìvÂ:öëw©ivº,4Ù5¼©?b!84ûã|Ë •7"?ãyGý4óç\=˜çxê§1¼Py#öë/dÚ3½Y›¶ Pó¼¶m#ä;œãõ62¼óm!Úzȯo¡Ë©°²½œ` Ñ6>½pò¹H©àÍt÷T§0^¸¼|¸–ä©VgZ…9ªÕ1¼Py#öçñ£.© Õ,~³Ü…ÉB“­Hàâ±õóoz„p¾‹å…Ê[‘ÇÓšŽ>¤ÌCË/GR /TÞˆ=œ|€+4©°A{e)À¢müÌ9ÏŽ¹Ñ5åTðÐLç(ˆÇðBå­Ÿ•^\¶ÏùVÒ Ÿ©…À˜ º!q¾‹å…ÊëwÌÒã…G‡ÖrÛÿW›7Z1¼Pyý¼åï>1Z+Á6n4£ —!Ò' LzíÕ>-<Úöíü®‘Z Ïòøú¿´Ä=(‡óiáÑV¬W~ÓJ*ôþ·‘Øn` Ñ6B>W¦zÒ…yhÁåèBˆá…Ê[±G+U­ß§{ãЋó],/TÞˆü‚Wª f™‡.޳^¨¼û-´ijm4¯ù â¶m#ྕÊQÏ<4H:Jâ1¼Py+ö¯qŒ{‚T*t³æÓ¬w¡ºPuýô«>œ±Woõµ:ãÈÕÀw±¼Pyý–ÿü,«]+<2;yšÍbx¡òFìo›DH¥ýTØÀÕÞ’` Ñ6žS_µÊlþ1ñ/4¤‚V«œÍr& M6"}–Àˆ)TÐ?jÎñüiÊøüŸlþj°paâúᚸ¾ôš^–bÞ¿'ÞNâ(µ¯x?†£Ò¢ S7ž#ø ÜA½tõÅ7ãÐÒç»X^¨¼^oÈ<õq*¯ýnÝ4õÅúƒÎ»Ì›yßw1¼py#ø+\#ôtÞ­÷s9*KRœïby¡òVìkÇú;cֳ̬…i{gL€-DÛøvKüþ¥š‘ås€ÜtG Öc½õxíÇÑø±ÕO~Òøà •·bÖ~>v ZÈà|Ë •7"ìiË<4!9äbx¡òVì×2ö´¹lŸ—Þ™;œ` Ñ6>àú¥½Whû8ÑZ´7 ØB´€Ïç¦0ân¶TØÆéß…` Ñ6¾àÕMGEæ¡ÙÂÑFà •7b¿Îèlá9F#óÓí»Åâ7ãËg6æ\_¼þ„~ˆF.D܈:þ›::¶n¯©- [!º0u+î3=“Ÿ |Tß” l!ÚFÄó9ÌŒi*ðú•;Š¿W(ök›¨NtYh²~àGÛx:=ð³a<!º0u+î x‹··ì·ÏY·K{£]šl…ž×<çªdX¬ŒêJH}‘‹À…ˆQñ Þx˜ Z¬à|Ë •·bÿNCÑZS¡›;Ûdˆ.TýOÛäíâ7ö¢Hˆ¶qǬp-ÃÓØyh2u46ÄðBå­Øÿ9êžÙ°ß?!Ìî ˆÀ…‰[a§×xSaWW3í•iº,4Ù5¾sœM²£«˜I]"© Æ[x¶q<ËåèÜREŽÁ^¨¼ûc€Sêžêtæ¡Ùç»X^¨¼{~á+vu€l/×Ñe¡ÉV¨ñê…ãìÌÃ㬽jæ("nD}‚ÇuGÏÑ1Á££å(D¦nÄ}®m ò¦}òß-a:À¢mŸ¤={Ì3<¤‹:¨ï£¸q#ê;žµs´dzHí1¼Py+öEï.ñð–lÏç¥sð.&®Æ|èѤZ{Mú²­÷U:Fªn„Ÿ«{õ9Õnö¬äª êç[x¶ñ?%u^IàÒ߯¼‚@„-D[=CᎿêêw¹ö‚tñÈCä(®ñBåÛýì™\”…©ÿÄïK¾Œ¬3¿#l!ÚF¸wlmï3Ê42áx‰ ·BŽ/FÕDšº­ñâÉhS':}í€ ·¢Žµ©4÷¥]òy¦õÁlL  …G±>àé³½$uhþi¯HÇèÂÔõ¸·ú¥É+rýniîL  …G±žnÆ8;£Raÿœè’×ù³ºÍø²—øöÂõ¼b.LÜŠ9^þkßÁxñÀüs¨“›º`‰À…ˆQǃuTE/Û«¢A¼Py4ö_Þ‡üÅ‹ËîUVé‚/—áöËF¨±¹³¹¥ž„š[Šø²Ðd#Î;š,´±JÝ9wáz±Ïw‘¸q#æ?'ÎÑ·Ÿ¥‚¯ÿ¤k¯Îmê;P.D\ú8b›šZ.¹þ|6w´У­XÇŠ°Ž£¼d#ýÖlw¶m#Üõb>¨¿õ¯J>¨¿…èBÕ­À󷥿 ï"q!âFÌùÉýTØÆÁ0ÍöíºWxÖÇ·B¥‚æNuÅ¢nã Á…ˆ«§]ã:²Q!ÚÆm^ÿ€âƒjÐXÿáƒrPˆ.TÝüéøV…ôiãbû‹[x¶o8 ïØbqñÀè¢ÎEê‹\ˆ¸õéÖÐÎÚp– üì5ûÞâß+£ U7â>£ù¼c>8ðœ¶÷ú‡àBĘ³Ë¶éSµïé²×éngõõÔñ<À¢­ž×߀Ï^Þ'·ŸOµïÛ¸x`ÈU{ÂÕm!¸q}=-;ý'&n<û÷OœSêÙ© ‘ _µ W"paâVÈ+[|ž”¦½R‚{RRˆÀ…ˆ[1/êeĦäl¿¡ñûZÑß• ×û’§ƒ¿;)8ðáx‰ ×ïó¹Ç“híûª.˜Eõ†JuA 7¢Î/Œ¤Â6’hþ‚N€-DÛø4“{ ntåS"OJæ8GÉ""nüœ 8Q¬êƒ¯?? øsâvh ϶â7ööê,¡¦Y2Œµ»5Í 7¢þ·B¬BgýüM>K­B‡èBÕ­ÀÓ«–©°_—>» ´…h?+PÄ®œ7} ô2N*p`’sÔŸ"p!âúϹÀ†ñmT©ÀÔ±,"nÄ|€¹ž]I™&:½¿_}}ŽÀ…ˆ[Q‡Û¡MËý«Mö4çh*Ñ…ª¯{ô¤ì·Ô¶%<)ûEàBĘ/ü=>©ÀÔ±;)"nÄ|…ósžÝI™¯ÿ¤[¯]»¾7)"nD}_ÀÇÈQqYn[µ¿lòyRoáÓB£hhÍ‘÷Ï8ðS:òþ¸q=æ+¼*R}ÃÌz[‹š?¨gÃL.D܈ù­Šó9á=Ò›[RO¿·!±)'À¢mü˜½ƒ#}ÚÀu·÷û¬Óý½ŸRÁI…SD#µò` Ѷî~‘%xuRÆé.ŽmD{A³}ŽÊPÆŸÒQŠÀ…ˆ[1‡‡B¸³*80ÂöûÂW°ŒØ° '8°’Àñ."®w>®Ûžۄhwy@6>xuDtTø´Ðh=Ú[¦÷„Œ?¥£‚ 7b>ð÷Þ¤ï"q!âúp¸åÍqÄéMˆ¶q³Ìh†Ì‘Ïxu`qdßù´Ðh+Ú«E?8%)˯G~þòÌ?8&‰O 6b½ ÙHG•#ãÀcã¨rDàBĘoh6ßÉ“ À{"p!âFÌrשÀ«c¡#çΧ…FëÑÞ°÷ÓoÏxý§ôäÛ#p!âFÌGôýß øA;"p!âFÌÒX©À«Ï§#ýƧ…FѾu°ò@©ÀgÓ‘ÁŠÀ…ˆ1ßøýä©ÀÔÑ  ×c~ôèÛ¦#”ñêóéHñi¡ÑF´ÑU§#tÚÀ“éHØÂ³x¿—†´­é¹_G«‹Þ†;Ñ×Ðïn:-<Ú 7ú²‰w§GŸt.D܈ùüÛùÂú_ú´§ó¿ï³¼Ÿòyúê¢. M6B½¼·º²H>οµÞâÂ3½}Ò/ôüz°é´ðh+Üü¤[*ðê$ïHòi¡ÑF´74âHf˜ä‰Â\ˆ¸óÛàÍ:.ú4iCa¶·ùnŸhþ ú·…h[!G;Ú»9³Ýß!b?gˆ.TÝûí#´Q©ÐEí¢-jõÑœo ѶBæhöˆ¤¯ÏžÝ-¸q5æcÑO^›ü•ˆZh´íÍѶW!.ø)Û«!¸q+æhëKssþeCs¬w¡ºPu#ìëþ¦íåˆ ¯>¢íňZh´í[wé´TØ?;‘´f|[K|zá‹zDa.L\=¢ðŸ~.W]ïóþºd*ðEµüŸÅŒ°…hw9Øå¨¶e®Ú‹m¶ðl+Þ#»#564ýÀzª U7Â~ûhi[*ìiÕ­ëmb+ñå…/ÆÀ€ ×c><®é©uÎlW§}\îÂdaÉF¤'4mÛ^r»pàwl/¹…àBĘ$œSWï•öDy-4Úˆö>ÁÓCsÎöÒÍc¦Ü9Û]¨ºx0½âH ^xýr$Cp!âVÌ¡—ZÇá8ýz—˜¾œé°»@[x¶îqDÓ*Ž bÆ«c¢#ȧ…FÑž6x$oÏf Û³‡!ºPu#ð34¨¨ËOõ˜Œ,ןMœîâh¡ÑF¨ùɉôiWŸLGJ…. K6"'ÜÛó)¿˜@L§DàÂÄ­ Cë|ÇI ]*Ûjˆ°…gëážÞ‘SWŸMÇ»=ŸmD{Æßíûî/º~“´o¼°…gáÞÁÅ·çýrÂ^¤Oè[Ãý|gzú´µf3ÝÅÑ£hÓSJé“®Î8íi06,,Øóí k qìÜÉtýYtìÝ °…g[á>32ƒVÚi>:´Z#qŸ[Í—…&ë‘®}uàAvªvxÿƒäŸm{ÂÞ!õÖ uå—éúÓˆÛ] -<Û wuOñƒäÔQß—û 9¢ U7_;/üArªzèöƒäT€-DÛø½âx6Keºú€zvKØÂ³p´ÐlOMey|=–_>rS|Zx´ë©¿5U‘ò<©°ïà +?a Ñ6>äþ¤TÐÆoéï« Á…‰[!_Ù©µTØõy§=%a Ñ6¾ŒÐÞœ4¹äúPØœ6  …G±>[“¨ç§7rkÍvh ÑV›ã¦áœˆ3}*èaþ}r´Ouì㿪CkDÁ…‰«­š-ú¤éeGØû÷ÄmŽƒß2m¬}áûç!çâûüÚŠ3"nüœ0¾¨W^¶ÅÏÉL^×ýšÖ¾ìØó'Üè°°à?¿áí’gú#)Lܺôÿ S×§û¡¾=ÚŸt»ôÜÀúý;‹î¤[Œ.TÝüF^¦O¹×Wí^×Ú#l!ÚÆ㛆—U·Ÿ<¾`Tg|­Ù첑§WÇ} ¡ S·~QX?Ôk×qüÜryåÕY´9#ΗËßÒ/Óç¶ÓŸMaâÆ¥ïÿ¦®O@ãßc h™ÚñvÀ8Q; #l!ÚFÀo;XÏTàÆ¯ù W ·‚¹Ò~ÌéeÏçÏÊPyúÕ¥Vˆ.L]Ÿ›ôA½vu½U=êýAþý~fº1Ï9²ït¹ü-ý²>ÁÓÂÿ!…©þ<Òó“©ÀG5#ü ±` Ñ6"¾ÐS8éÓ®»=a;žkDîÖúTè÷j!ïX€]¨º^ù83[õ¹¹ý”æ Nš£:n©éÕ\ˆ¸11Ãø¤^yóÛϹp;jS!Kgwp„-DÛ˜›÷€S˜º1SðT'SsE{·Û«[øÔOô,K*pàÊÛ³«ù+õYbQg uµŸmä&×kžêŠ?D¦®.Ó¼³Ÿ!!ÚÆ}Ž~clÕnõ|åËFB®–âfu" Ñ…©ë·ËÜ£¯í)\‚­ß.ó-)G)•§B~íӾ܈Êû|Zx´ë?µf^4ãgêvþ¶ü|À…‰A¿×Ð~ w¦‘eUÇ+}D À…ˆßhHi/f¹þp¶Wù´ðh#Öü—·TØÆpåé °…hG?‘v¨ãɨü€W´›úÌ—zª S·¢N?î öýâÓ£ U·Â޾·²m]úƒÂÒ|]¨ºö¥Ÿù9íTè÷ê!1¢ U×óñËíèJ‰2ru ਫòiáÑÆM'AÚkeÙ†žOXïBu¡êVØhýâ8õÿ²‘5€Úï8ëCz„.L݈ú¹$åvj§BÁß¼Ù>Žû¥žA]¿ØB´õ¯pÖ¬½À²6Ìÿí%–]¨z5ìõñEÝý¥‘~Ùõgtí{uP‡õ½ û#݈ú‚.ÔÛk[Ù†nXïBu¡êÕ°×oöQ½Ùõ1f{ÃÖ^í ›õ1&B/ÃþH7¢þ3.qsG©°Ï‰zX¨9¯[ˆ¶ð\nù¥·úlô µ“ussŸ?µ¢ U×Ó­ßÔ®õ€ðËFÿQ\Ô#D¦nDýϱ,Čډ›ŸålÆoW~¿IyTèïÄ 1#` ÑÖ³QÛðnýpÿA$Ù6Ç]ÿQ$!ºPõ?a_üÙ#Ê}Ž„ªÌL®b2s×Yú¤o_nþós.yÈýco/û0nE¾-DÛxúo_û¥eS¡C·a{†4DªnÑ…©ëQ?À:’¾läÊÕ†¦EÍ…èÂÔ­¨WW¦ÞL±ºº{ðf¢ U×_ Žú»ãƒdiÖÏ7¼Ÿÿš, Ñ…ªwüò§£”˜·Ëznøzñ:áBt¡êFàw|Ön Î:tñí/Á!ºPu5ðs6Ú1Û>RaßÛYí*¶m#àžÔh~K½tèni~MÑ…ªŸo‰MÒÖ¦TàÓ+­ñ½íkÎ ±½Ô§SŸŒ›=BªnÄ}À†»†ã–S¡ëµÞEâBÄ­ ¿—î¤ZX*ì3ƒ·q‹x!¸0quÕþOG;KNGN…Ü.8þ¾ôƒŸ‘IŸ84¬7'“Bpaâú3:ôô6¡TØ·Uþ¹Ó§<¦%~Þ.‡>EàÂĘè†Ø†s€S¡ÏhûÆ 8>7‚Žf©ZM…\:Ž¿/}©¾—úS`—ž³äXŒ.T]ŸL‡5àPÐTèõ{Æqž)Ž;ŽgàÆƒº5«–C0S¡AÇñßKûw~Š”H…­Ãú ` ÑÖï•qD_ëÎL…Ü+8Þ5ã 3†q+èè+FÃIx©Ð ·Ÿ™8| ~FX*tàÒÛ7kÀñÙBˆ¸~¿LýFïŠK>ém«în¾[ˆ¶¾n™ðÁõ¦u&šFtÝ‚ã];ŽÏÏBÄÛþ~DÃJ©ÐKÇñ®Ç':!âzÐoÙtV™7}Ø/ö{Mê”ס¿Ë§yúêMN—…&¡îWö"1vÿûèЖ¶tYh²êÛu´*z*ôüõ.Éö: wûþ545?` Ñ6B>Á+Cü¼ªTèÀØ~ÔVޝ˜…ˆA_~ÓB*tà~µûEk·ˆ°…h«GÇÎóŽ.ÚIfàÆÍ²Ã¯ø‰,©ÐKÇñ÷¥·R¤zb*ðaû}½*&¢5ß-Ó>Ñóè“'­ß)Ë- GëI…<ž³öxªYÛ[ˆ¶>¬,3ºÈÇß …ˆ7Ë %ÙrK*ôꥷàïK_vø>o¯˜g¸_í~Q æ¶mã>¯ êx "nÜçÇŠÞçjòãÏ,©Ðûǃ¾Îè²¢ý(Y®}EÏyk9=":t_zî˜#&?Sa÷·:1m¢ U×S·ë±ñ»,S¡Ïúú A4&®ë[®0Ú{dàú³õðòß… apü}ép»£%7ãÖcú¤)7†*oÜî yÏÙƒ ܸÝx£¿h¨µç¬—ŽãïK_ßo¥´N¨Tè/ø{êÈ«ÞûTÏ¿ ì¶mãnû”ðnÅTàÐ3Šó],/T^aö‹¼çÀG®ß3;~$¾C=:pé8þ¾t¸ëÇÑVœqè†q4ÇðBåÛÜFã9$·û ¯ñ£R¡—Žã·KßÙuôTØF'g³ÝÚB´­{åà¿X§B7»ÜýI]¨ºžØÑö<ÏÖ…ŒCC#Îw±¼Pyã–ÏEGb?C*lýY}Ї` ÑÖ~ ì’c*èwF“V'¥ËB“õ5˦_<Ç÷1pëYÙÍ©°›¶»@[ˆ¶ðÛg{yÙ®TðÖìù$Wà •·bÏß%– ùa=›Ðbx¡òÆ f<'32pãžÙØ]$铆™öæ>-<Ú ö¨K /Ž4c /TÞˆ=¼·@Íê[EúQ¾¾‹å…Ê«‘_úþ},>¥¯>òë7ýv̦3@-i}˜ñ—háÑV°«YaúÒÏÆ½‰Ü­£ UW ÓË0TÚ ü•˜Ëî˜æJL„-D[¿Ó‡ N6:êLGŽz@/TÞˆ=¼ ±ýì¨ ‡~ØöÓ£‚x¡òVäñ÷öúãÅ¿F±i°šà<õÇ ^¨¼ûó4ꮞTàÖ}ó`GR/\ÞýùefE,60K5ò"l!ÚFÀw8{ê((]<4?µ”‚x¡òFìáÍÏzµ]g<ÿˆó],/T^üØã9ˆööÅCóS{;ˆ*oÄ>·²Ñ:S!÷êäáïwŒ°…hágpFm¯Gf˜™Úë‘¶m#à3œüõTÅ2ÍIŽªX /TÞŠ=šüÕÛÔw¦ŒC?,Îw±¼Py#òõ/8>©Â÷Ï Væ$G>†*oÄž_áK…ÝkMOÍr& M6BM¯¤OúuÑ#µÂÁ†…[aÆs¾Ž2ÞX/ž<)ãÅðBåõØOðÙ-í§Â^8ôöŸ Ä •·"ç|mÓý³j•YÈÑ6à •7bÏ/¥Â®”°Ü…ÉB“PÏxÊÑQVšðʉ§¬à •7bžTä9PøÂ¡ç»X^¨¼ùê]ÿ¤¬”y³¤_ýŠ¿·÷íEøÌ#ƒ»§à •7î~m)vu˜o¯ˆÑe¡ÉV¨_cóدTØFÿp³ÝÚB´õß©¾YîI¹šÃë÷ËÜã¹^G oÆËTž^ /TÞŠ=ºXsÕCÌ/øa[ø.–*oD~ÀŽžÌCÓ©£g †*oÅž^‡L…}ÿ]ŸÚïëpÓ^†ÌvuAÐ^„¤ËB“õ9uþ»çVª&ØÆ½½àY_GýnÆKTžú] /TÞˆ=|â¢:h©ŸJ¸ph>Âù.–*oEÏøŒíýómÛbm>Âù.–*oÄþ¡Q¸½š—åñõ›ÎÔzŸ­Ç:o‡‚FwGeiÁ‹'žÊR /TÞˆýPih÷ïÂý›Å#paâVÈÑ Æê¸¥~ç¡) çoaßx¡òFä±1}l®ã-ààË]˜,4ÙŠ3žßq4idšúM1¼Py#ö+žxtTò–†r£’à •·b&ñSdSCc#Îw±¼Py#ò·Ýa¼m…©à_ò×äÆuíÃç,—ôÏ?¡F>"nE}âVòR!×g§öò#ŸmÅú=&òRamÂþd€-D»pr;OshàhFŠáËÈ?ãõدõá“–˜õ¶mœ¿¿÷>Øià —7‚?“HéSæßù¢¼î_{¿Û÷/4«ë—[ˆöŸp;‚rh¸ö™½eꉫ¾Âå^W-<†*¯ÛÖ|ó‡&nŒð1¸zó‡úö¾Â_ká»X^¨¼ùÛØÎ:+ú þ^£ÍöØØ/õü ú¤Ç·…h[!ŸÑ¥ŒgÇæë/`ãg…ðþvWâ]$.DÜŠú;`½:¶÷|d¹¾~ioúàÓ£­Xã%$G/bæ¡wG/b /TÞˆýÄî¸IŸô9Uüd+‰gZðiáÑV°wrµ$4°àGmÁ¥¾¬GàÂÄ·\Ÿ4}ÐïÃyåëÂÔ›±þÐ'S+Üä꜊á…ʱ‡ÏðÖûíÔÌÝ e³…ïby¡òVä7x5í8í#óÀštV¼jñ1"nD?9ÝÓ›yhäèá…ʱ?À|i{,Óȵ¨ÓŸö]˜º±ìÀõU½výµú8øº0uývÜê-Tzú¶Ã¾füM}!ºPu#ðãŸý7ÌÆ¾ÌC+&œ¿]=Úº‚R%8œïby¡òÆ}3á­+‡ºbR_\3¬;ôîµB ·¢¾Ðë…©ÀGõazPç °…hW#Nî“/c­ò]þ1|ùg¼ûy¢×"SwM{{›grÆ=4² SïöA}— Ñ…©ë‹ë]ýE}Θ瀅Lšg¼^Õßζynl„©£ÀŠŽxš9x}Àí÷…oðÛžN…\9Žß.Þþ˜ ûµ0]¨M›tYh²q{Ãßžwõßop?¨«ÿ>†/ãþŒ7b¿ÃMžSÀ2_˜>ñû{†ZêˆÀ…ˆ“Ѿ³W^B´­ÛïHplRÊ S9íç=˜/B´Ûþ‰«i>óÀÝèjšáËÈ?ãØoü¬IúÄ›·o>˜ï59&ŽïldùõˆNßöý5Ó]-<ÚºIàž3<“ ¸Mpü}ég/´ p´&ípˆ«5)†*oÜ6\hó§•y`2Õ™ZÍDàBÄeÀÖ”<œܺ_𔉣s¿}¾6“:8cø2òÏx=öüiwWCÂ×"] 1¼Py#ö·O»ÿìÿ3u÷yÌM2}®¹Íÿž¦Ÿ¿ðw#W*è5/“þtàôy¨™>ð{þ u¤‰À…‰[!ÇÓ§Ž“2 ðzc«šˆÀ…ˆW£Îm7+ƒný¦ZåBô2ìÏt}MpÌèÛÑxJÀ[æã‹¬âu*xhVÅù.–*oÄ®H´wleÛZo<èÙ Ñ…ªa?°¸átªôi·+ç«` ϶âg«çe˜Q5.j‚ "®NIkߣåöŽ®Þ/NnH êímA|ùg¼{´ÑÞVyÙаë]¨.TÝ ;ÿØ‹TàõÁÝq`G.D܈ù‚gOõ°ö¶tñÀà¾j×®!‚ 7¦¥Mp¶w3pë~Á“Tí  ìí A|ùg¼{8->¶öù^62´·Ÿ„£ U·ÂÎß?ž ÜÛw¾‡àBÄõ˜=ž9mßù~ñÀாé©ûÞCp!âú´4ôü¹që~Á[ÍÚ ð ìíø ^¨¼ûùœ–ˆG¦ÂÖÿц¶m+àè“Ô¾mæÂ¡É´ýè§ ^¨¼ù\ àû¢Ó§ L§íº#láÙV¼ñ¤iûæâ‹&Ó]©Õœ@.D܈:ü9O—ÆÅCÓQ{—F/TÞˆý­›UßH®ïZ|P˜ Á…ˆ[1¯ñâ¯A^ºõ4ùk1ºPu=ð#\@ÁRCKœïby¡òVäù›#S×Ç0ǶÎ\ˆ¸óOµ·ï޼xà'=Ôõ†šIŠÀ…ˆQßKHÞW[RÁ¿äï/¿Ÿû;žÙóo¨K™\˜¸öÚ ð“Z^Æë«O-/"nÄNƒ;êÖcµîó l ·‚ŽeÚ÷._8´ Àù.–*oEž¿‡68°Àñ."nÄœÿ TÚÛkôu¢Îø<”øòÂõ=‘!¸0q+æh-̳qùâëÑO6JYÚ©‰Ç\ˆ¸õc§×NSËGÕ7"®Ç|ê'x›[²Ž,-!ºPu+ðhE©}þ…C¿jû‘ŒA¼Py#ò諯:„©[—×Û ÄöB·»@[x¶o´¢äÙý{ñÀ”4©óšúŠÀ…ˆQÏŸä!–ÚSaG1ú[l!ÚFÀðòTª3¬¥ê\ˆ¸s¸ŒäiÌÈ<´p4fÄðB娝h% ï\Ký°8ßÅòBå­Èó÷‰§–í;ÜCp!âVÌ×Ú"Æ¿ÃýÒõ_ô²çùÓþQÏ¿ 2|[ˆ¶òíýµå =ä´×™Çl8îù’_ý³&æ÷@ 6b}ŒôN’TàÚù¤†O ¶¢=Õ“ß7¢Ï.ä샋Þ+íÚÕ“Bp!âzÔç¬z02^€< ¸q#æC@ÇNúÔ¡®£Ý(D¦nÅ|@*pàAÂñ."nÄ|„ÆŽžÆ¬ŸsÆÏ¬@íi Ñ…ª[Ç«uŽs2LJ«:ãçãBĨ4í¤¯-¾<ÍF|Zh´í¬z:/2,¸q#æ+^uteZ8:bx¡òFìÑõ‹>,ª¯ÿ3ºÀí.ОmÅßvÐÞɘuhÐÞÊ¢ U·WGuñbD­1ê;ãÀóq!âFÔvRW—ŽF#>-4ZörÛ†Áj]H,p¼‹Ä…ˆ[1ÇK£Ž£ÌCÓ¿£Ã(†*oÄ}ïj8Ž$8ð09R‰À…ˆ1èLŸ8²p´1FàÂÄ­ ðâeU/FØp  ïç7ÂÎÇ…ˆQç·H¥Â~Mµ±‹. M6B}~FšÚ• ¼ºâr´tñi¡ÑF´W´BçhlÉ8°Úr4¶DàBĘoð2ÑÑÇuêЬìhã Ñ…©[qçŸU“ x§ìDàBĘïø"ÑÑ.šyh±åhá…Ê[±Ç‹tŽŽôëàó¡Ý7úùF¸q=êk@çH*ðÚJÀÓñ§…FW£}vè}Ûr‘mü+ oz@ëŽ†ŽŒw‰£¡#"nüœ`3ZÃ,éÓ~NÜîmáÙV¼ñ¬œ£[,óÐçh‹á…ʱ¨Ò§¯¹Žî>-4Úˆöíû^¬2q*pà§tÔ·#p!âFÌáuÖ¨^¹úž»î`jÛs¢C.D܈ùЂ’>uhDtôÏ„èÂÔ­¸Ÿã óè•TàÓï3J<3&À¢­G|ÀD±§ÄñêL„Ó]-4Úˆöˆ&ŠÖŒ?¥£À 7b>ñBHÌBŽC"p!âFÌg¶þ{>Øé` Ñ6ŽŸyï)Bgš(Uè^¨¼û}àïçN,Žp¼‹Ä…ˆ[1ç—DRW'iG)‡O 6¢ nç¨ãdø)…œ\ˆ¸sô»Ò ÛZSÏ&Žw‘¸q+æïGˆÒ`™ ù•9ûéá&v…òiáÑÕXS?Q†ÛXk=øÀE^†ün}Cs¬ŽªYÆ«£fƧ…FÑÞ_ôÏèŸí?ïµ}ÖóÁóýo¿ÖöoÙ9ÿ¬jÕhŸø¢çâ›í.ТmEÌj{*”¯?<ž e.D܈ùíã´ƒOR¡¿à¯ÓÄe/Ãݾ^ þ‚¾PáÛB´­ów §ž!Ç~ç\ˆ¸ó# ì” ¼: 9Êe|Zh´í LÚzJe†CG©,"nÄüöõ3Ú!©ÐqÔDuT °…h!_Àqß@™>mà rìü °…gñ¨¨¤¯‡ŽJŸ­W$=?:›^ØÛóÓû{~x¶ÿæÿããß/ou¡ºPuãFÜ+K•²l››ý²[ˆ¶ðcFnsÏáÌ™>÷¬» ´…g[áÞѵ„ã0‰¬sò¬ÍÉúÔÆ·…h«!ßzôëØ [ìR³rûæÀ\ˆ¸óÅÛK¿,öÛK¿!¸q#æšÃn/F^xu5Ô^Š  …FÑÎeHb;y*ìþöôðáct¡êVØÑ· öêï…g{õ7"nÅÜüZÊE;c¾èêRËqs„-<ÛwåPÿÝj{ö”#l!ÚVÀáBã쎋·‹¶¸UOîÁ…ˆQ(쥯 YŽ‚d-4Úˆ6úlGe쟲½2‚ ×c>ô4o¶Ÿ|Ñõù§ý à[x¶n¸L3.ê0®e³. Wu¤ÕÒY!¸q#êe½TàÕ±½@ 6¢~ ØQ»pà§l¯Œ…àBÄ­˜CrÇ1]ÛÏ錰…g[áÆ3äêùêÉ †›:Òª¯œ¸q#êüúU*ì3%Ĭºñe¡Éz¨Gôc‘žzĈžÊç©GDàBÄ­˜C),ÇQ…] gFØÂ³pß¾ÊÁÛžŸ  wu˜U_"p!âVÔù¥«TàÕE­£äƧ…F[Ñh³I…~Ÿ$x-B1ºPu#ð…”TàÕÆQâÓB£hó³úéÓV×XjtYh²ê‘_˜M…n„𠨢 U7¿B‰ZÇù¤]_eávh ϶Â'jÛÏä¸x`u¨ 85« 7¢PGI^€õ>-4Zö„-<G6^týÑÄí.Оm„û|p¨Çp¥OÜ\κ Á…‰«ˆýÓGpDq#&ì[PžRŸmÝâ+89 Úä )§­§$Ûí÷uŸçúŸýöeÉ<œôp¾œüüógÉ| ?1ÙÌ÷‡LOÛo¸ÿÜÞ_û;~²çŸPK²¸0quQ‹>hzY†¸ýžX*µýèÊ‹®ÏígWFØÂ³ÿü–ïë>®§þ–ÂÄ­K¯ìåò#À°õ¡v¨s¤¯NŽú ŸmE›}NÓ›F³í£v“¨cÕ\iÄðïÚ …G¿ãˆeQÔ\»zðàE×XÜîmáÙF¸ÿþ–ÄúCÖïC ±þ¢ U7ŸWWÄ©°´yg„-DÛø†åRÚf»èúÚ~6[„-<Û ÷ÁOå§BÝ)¯üµ ¢ U׿ èþ¢=Dú.”ŒO(Žw‘¸q#æ#ö6Û~vÕEןÑöë"láÙF¸ÏŒä¢OÌ}Æ›~¼ìÞZ5ë]¨.TÝû,øî‚ôiO§c[D€-<ÛŠ÷œXȺ¹¾õ$Bt¡êzIb©}ÓäA’|©‘õ I¾ìØ»sûé[]ÎÛߊ°…gë™É¥¶÷ôAf’`Ëavù{ôOx~ûËñ GŸ. MÖã¼Þ˜I9¸TØÀ Òž: °…hѤ ¾s&8ðk:öüDàBĘOX^EÍéëÇeº>xãvh Ï6Â=Õ¥?a›õ×ùý³¼þtm€-DÛù½£–Û»œésöùöM”Ý˶m#Þk娷©ñlÓO{j<À¢m|CS†øf¥TàÀ¯éØf 7b¾C)Cϱ5™®N?žskláÙz¸·}¥wdÅ·ÚçòždÅ#p!âFÌÑÅø¡^¸zo芷»@[x¶ïJÿxŽPÉtýÑtœ¡` ϶Â=ñsù©ÐÍúi³Þ…êBÕÀohZÅQˆÈ80":*¸q#æó‘ÄZÄv;²n$W"l!ÚzâKÈiUˆ?N«AìüÜa*ìêUÃòíªWhêT;ìô#2]Ÿ‚p» ´…gë£É>¢oøŽ-4Úˆö==žÏ)åÏ(³Ï¤Îmj%"®F|ïûw½‡Ô¿” ûܽþ=“ìn¼ Á…‰[1Ç’)‡v—«'(\t}þÁí.Оm„»vN烼ì…WÃö¬l-4Úˆ6Ø&Úð‰œ›]¼µñªu—=¾WßWWîr].L\-Øí=–Sn®Öeø¼ê/ ¨ír& M6ž›Ÿ0fU rýªaº‹£…G±¾ÓEIT§B®_usv=€mÄ: K ¼úC¶g×h¡ÑF´ÁnÓ†/ýÚÃí°Ú©Ð_ðׯÊË^ç»}ªç_PW®¶mýç°9¡=mŸåúßž¶ …F¡Hæ¯þíéãZh´mp/Y¯Sewì›>?xG]k§%&½.wúDÏ? ?6tZx´ñK.;yµ z˜Õ÷½ _?rgákÚ1º0uõÛ}S¯½l’{ÿ¤+yQŸ>eä²wõ²õÛÆWßt†Öñˆ S7Ñm‚Æñö ÆE×ï•öF„-<[mïûgÏü»\˜ºqíûȈ„©·ùfgÚ_ë3 \øÖ«aa胦úºâà_ºqã=ÀU¢^ÔšÌÿÙè Úsaêz\ÆK_9Ê™®?CŽzF€-<Û÷®p¯áÙFn”Q½ ÕÑi¹ßÎd%M£À]s ÉîTèÀD„ãïKáõ9žýK…\:Ž¿o–­¼àÉ!âÆýrï®æ¼ü§ÂF~}ÝR¾Xt¡º0u}HoÐÕiRóPó­…»§Öü³üÊp}=•çAÕ?À¢­ç¡æÍü7ü˜ÂÔÇ;>µáÛªoÍž7dŠÒ' æ¸}»p¸S Ïä¤B.Ý‘„št~îÛ{C ¸~#.è"ý'õå|K ‹ÿTèõ°4àïKŸà‰_§B.Ço—>½+ôß^DÝ_p¼èiÐ ß—Oü:BçÐßÎ#paâú²¢A_5]ŠàŠˆ£é*ã÷ šÙvà •×ËùÂHýY…‰—ŽVŠMùÏmc:ZÁÌ¡NGê{î²Á9üÅ%:0¦ãøûÒá- KÝTèÀ¥;^Š4íèt»ª¸òøãzª SןÿµçW‹„ˆë#À:B@Ã'äÞôyõ¨»Tàã+*ß#3½owúDÏ? ¾¡óiáÑÆ/ çÏykýûZ¾‹å…ÊOÿ‚¾1:6åpãžá'£Raßþ¥%Ñl!ÚFÀ7ìý¿áûzoM\xú83=B8ßÅòBåõî[pl¼xnëwãv¶Š‘ßSÁ[G?yÛá…Ê[±?WêÄýRaú°î?”,À¢] 8óûlo›ß)ž>mämлP]˜º1ìÂ=zŽm4ܸ±ãß%Û·³3jÜuØ:®ü¹Ö=Î+ÿ÷_ü·ÿoÿïßRôõ€~;8&®œÏ£'çRÁC³…#9à •×o÷Î`8öºì=ürç9‡&†*oD~`·`¦OÚ˜«›é.Ž­ÏG;Ü6æØ4BÀÛ<ý¾áqoûl‚^Gf*óÐÐåÈLÅðBåßNáyéTàÐÐ…ó],/TÞŠüÁÎP¥Â>·ŒÜÌZ€-DÛø oè³–a}0ºÞÌüà†!¸qcÆCûÓÔ¤š¾ð¹mÜ,àyó ßÒûµOª9±™‡f G"6†*¯ÿ®èQ,žÝi¼ŒñlO Ñ…©QtèÅ¿#— ÀÚ¿€‚ ׇÞ# Sˆ¸q»€ï‡6öþùÛ›^عéôIëßYxRçÓ£ß>–&wÔ<•áVoÀ'GSØeÀŸØVÄᦧÒpü­|3K 1¼Pùjì¹g<ý }ý¾Áñ÷¥Ã¥ Ç^ÉŒC÷$Îw±¼Pyã¦ùø 3«D þ|¡îÍFUO=†*o,àa={¤¿Ç<ÇÕ+?úü’Ä „‰«7üÑWV¼þCp2m=©þSpBpaâVÈñ—»öòÚÅCÓj{y-ˆ*_=³R¥þÛÚ½ÙV¢N±•»l+àhA£ýì„ ‡ž¤öÓþñøê½½a…ÑñÌ]{ÿÄÅC‹öþ‰ ^¨¼± @³1í'@lãžY'p90hóžöÆtÙЬ ë]¨.TÝ ;\pÔ}/šSÛë¾A¼Py#öüÒ§ ý¬ígžþÓñud{ÿ ‡·âŽw°µw™\<4À·w™ñBåé ý ‡ã`®ß5CÚ©½dxñÐXÓ^3 â…ʱù½Ä©Àk†mÅ»H\˜¸ÚýOGSÁjõ]=óç¡§ ç»X^¨¼q»|¨ÕX‘ âq¾‹å…ʱÿè²ü–’p×…/ûuÛ|ÛÑí. óe¡ÉF¨–yíÕ¦‹‡æ¤öjS/TÞŠ=Z”Ð3©ê 8ãÈë8¹8ˆ*oD~Ç_*ûæÂüÅ#ã£0Ä •×c?#;— »ÿml£eàé²Ðd+ÔÕ×¥¾±þ¾ñ Â¢ UWO¼;Æó¥`7Ÿûëw}­^ÿüáÇŸCc¦ñ¿ë^u¡¢ U7îÉ1¢h“ ÙÛ?M‰÷Yâ= éÓ†¦<\ïBuaêÆ=3á™ GÉüú82á9Jæ1¼Py=Y8âÇjxª Þ¸sê¯7jZcýýàAM+Dªnþ)GíµùP¶TГ¶|tŸ$Ç—…&[‘>ê@©à¡´ýTóþ8¸ãÐÑ ‡¦¥öO=ñBåûæÀ“ŽªóõodZrTcx¡òÆ¤ŠŸßá©ÝRxýΙ&·=ȹÇðÂåà¯x̱#>óÀCz¨#€º>"nDývngó[*èáÕ2}½_N|ëû;~²ùO¨À…‰ëgÇ6胦ëݹ âÂÄ[ñÀ‹zŽDæ¡ñËQ‚ˆá…ËëÁ?údmÑ·©güþ.ÍÛ¦ 7b·¸·ïd<êge=ØË¢ U·ÂŽç¿»wðdƒ­Õµ€ºw7"nD}Yj&©àÏuXØŸ^¨¼ûÜÕVߊy,¥¼­˜¸q#æ8¶Ã[£Ò' 0ÞEâÂÄ­ã *ÇVÀܹ»õêþ}#`.Dü{Ôþ¿‘½ìßîuo¡ä¦Ÿ· ±Ld ѶBŽ74Ö3o<45Ö3ãx¡òFì‡êæ«O½qó ØWžŠÂ…‰×‚άM!ÏsÆ·˜o·E -<Ú ö®ñM®©À5WãöÜ(\ˆ¸óO~êÒåëýÆ u—È÷½‹Q¸q#ê·×.ÚY{©Ð_ð÷QkÈ—¾ÜíS=ÿÂ×÷Ñ [ˆ¶òÍ3⛡Rhã6®(\ˆø÷‚à Ï{'uržûë']ÏÕh¾Í§õ¿þõ“Z³\„.Tݸ78غÃíÆ£—Þ®ªÏv¸q=êÃm¿+eŸ üþ>Ê)6DáBÄ­˜ð\7hsúʘu`ÎØµ9C}_ °…h!д+¾/8ð 5î!ŒÂ…ˆ1Ÿà`ë ‹z£‡ºÂˆÀ…ˆQ¯Ÿ§å¬eÞt3¹à«e†éBÕÀßöò°ê#©Àù¨±²… 7b¾¡ù‘U}LÕtÔpÛ cÿ 8ÞEâBÄ˜ï ¹c:ôþÛ@^,ò°8ôwøEžºm2,,Ø 3œ†jÝ{ãësР.p¿oˆÂ…ˆQ?ªhqV‹o:4µ•‹Ãt¡êzàÇa‡,G¦{ü8£Äšƒ™î\ˆ¸óMâ;xS?hãÞã(\ˆ¸óûW·8•¨TØ·ï€ÿyB÷<4Ž%¾¼p£d ·b¾U‡.¡8ëç/:’ô.TªnOé6n´¿ñÀJ@¿o³Â…ˆQ¿íÞaUGR’£® 7b¾¡ùE|Sc*pàmÜŽ… ×c>åÎ æ¾£TàïCEI¦‚l!ÚVÄù%—Tà½ò*ý¤Tħ…F[Ñ>Ðû{Ð~KuLÉ8pŸÀöûÂ4ê(¶d¸Å–\ˆ¸q³Lh&T/X|ݰ{ÃÇ»H\ˆø÷s:^ø2³Ÿ!!ÚÆÍðO^… >-4Úˆvý¸±¹é~^×÷ë¹]¨ºx4§è¨ex†Õ¡\ˆ¸ó½ö“z÷Þø—üušËø6Ìø‹=ÿÄ÷…Q¸q=ês?ƒêøõ}í ¯>FÍ»h£p!âḞ |Œ‹ŒW§#G½‚O 6¢]ÿ¶àƒÂÜ|ÿ8_e"j/Ì…èBÕ­À£ÙDG‘(ãÀ3ä(EàBĘßÞZxÛòRÁSÑ¢ÎsúÍ€ 7¢nÍoÙ÷› ˜Šw,GáBĘ¿³g¤m¿é“žÏÒÇîm!ÚV¼ß=¹¼ƒéRÁ¿äï=Üs~>?ðÌžCÏpaâVØù…­TàÕU—£ ǧ…FѾí$b•´R?¥£ 7b~`ùç–§©À)ȱg6"®Ç|éwèrã2}þ˜3·` Ï6Â=lðÜÙx(âf MÔ%&n…_“K^}„µD>-4Úˆö„æÌuÄŒ?¥£Ž 7b>c}¸-»‡S3cßs.D܈ùòš˜i;BRÊ}â߯…A^r½6t}¢w”™láÙF¸7´"á¨wf¼ú[:ª|Zh´íc£'ROãofìãÂ/úõiÀ;ýƒž@6m…ÍÎêÓ»šBYþ~aê1ÞEâBÄõ˜¯à‘Û®²rÆ«£•«¬ 7b>,Јå(*gº>÷8ªÊ¶ðl#Üg™ŒH…=Ì¿¿¥²ûe>ÎÝ/j:BtaêúkJƒ®ŸýU®²n¿)Úëp¨K8µO-ãÕ‘§»8Zh´þš²ÁIxü§"n<û3¶}ÑÕ[—q`©ïè­‹À…ˆ[1- _{ô~ºû³Hés_LNcç±¼Ÿn“ã¿W­Ó¹2A-z¦BwÂ1뵸qã÷\&jça*à^_ζÒ]-<Ú 5œÛëábj*ôú]⩺oÖ¸âè=Ìt}çh> °…gwÊ6®8jÙFîÂE½Qô‰-B¦n,jq}U¯½Œûû7½5›uÚR*t}ó|¶·qû´Ôó/è“ߢm¬lxõ‰ÿ ÂÔ! ·ÛR?÷— ý¾r&~ª0DªnžPT*pýÅß®ü ÷"§^*p¼‹Ä…ˆëwËÞÃ^kN…¬éerÇŒBÄ­ £/¸jo‚Þº¾C‡þº×ù´Ðh#ÚœëÃËØ©ÐÅÑï°ßvuÓ>° ý_»lùÒ÷»}ªç_P§Ð[ˆ¶¾æÚlj>à 7îóë/sô•gºþ>çh,°…gážÌv”$³ Yz>®Ô»P]˜ºõù6"²Ž+L…^››zímN-½ØB´ç}ÌCóR#¢ã¸¿\ˆ¸s°}ͳ÷#ãõå§gïG.DÜŠùίg§BÖ‰ŽR<ŽãïYBÄ­ £/·Ž;tn¾kߟmD{᮸^ëŠÓW‰ëýéüþ¶âßࢠU·§æñ&…TèÀêhf¹.½ÞÖ×¾Oh¯=ù`ŸP€-DÛ¸Wraîõs’>f™ Üèö…3À¢mD|ÇšK›J2]Ktì* °…gá>FÌvTã³ ´“ºZ™õ;z°µÏ³æ@ëž½0¸q#æÚ×л‘ Xd9ÚNp¯"·‚þmãI…-Ëa½ Õ…ª[‡ó¬xsH*tàžq´µop>Ø=uÔNä}°{*À¢mÜ+Öþx¨s¨ZâÏt}1‡Û] -<Û÷ ¶?:JqÙF‰êh>«/Í!º0õjÔ©{ʰW—ŠŽ½|º ¸Ÿ6¢ý÷D Vç}¦ï'«óžO 6‚½Â]ZjMõOÅ6:0×ãx׎;6 p#èÇ⎴P¶‘‘P½òY_§DèÂÔ«Q§¶R–a¯Ž‡8]ÆœH—÷Ój´ÿýbà䨱váÖ«¡ƒïby¡òVä‘n-OèE×.O h„-<Û÷€÷2·©Ðë‘#éŒãŽýÍ ÜúßvGÞK¿Ï¼= 1ºPu+ð3½‰5¸>C?øÌùПQ¥âBĘ×Z¶´É]8påímr!¸ñjÌ™ ¢2äÈŒ¡³–ÚŠÑË ?Ò­¨ƒ•DGsâ…×ÖEŽÖÄZh´mt†îÕéßWvt‘ÛÀw±¼Py#òТ<‰]_ê¶·&FØÂ³­pÓ¶Ra¿~Ê…ÙfÆ—…&¡ÞÐJyCš?:ð6Ô^¡ÀqÇù Üú~Vœæ^KÏy–ÈWæóµ>ž Ü(©¶ã]$.LÜ ú=háûÖŽçK]ûø“fv<ÇèBÕÀHÉÙÓlvÑõI¨½Û,ž­‡{èÚJ^]ݶw›ÐB£hÃUj¾O=4á¡U-Îw±¼Py#ò•l‚¿s(ÓÕåVsÛl…-87TS¡ Äöâ'Ž;ÎLbàVС¶!WMh€?j7©KÛY­ …èÂÔ­¨¿’ó÷åÁI×—Ük+Ûg]GØB´pO;ø´©Ë}}`™jGзã]$.LÜú|Ÿ6í· ¡µIûÒ¡7 XïBu¡êVà±*{GâE×g‹ö–Ä[x¶îåOË=©)ñ¢Ïec6%У`ÃÍwjšO=Vë¡×œïby¡òFä7¸™/¦BV玺'Œ;ŽbàVÐvY%6òƒªï³Z Ñ…©ëQ{¬w¨AךA/ºþƒâvh Ï6Â};Í”þL…Ü(›zª‰Û]˜z5êÈtáéÃ?’f_Wÿ¾Œ<™/CÿŒ·bO?<¶ñRç>Ô<¢mœV*pháÕ~ÎV/TÞˆüøš©™ç³¤Â¶.ݲLŒ.T]=Qv'´B­‡¨g†0pã†ùÛ/KìßÎzÿ[¾ voØeÈŸØVÈ+®'Û_ùcú}Ýð·¯*©Ð»Ço—ކÜѸñjÈqúvÝP‡…§ 7ÓÕ×On€-<Ûx2o‡ì‘r¢©°‘§gWop5›¢ S¯FZõíýÏãGÏ©ùráéŽáËÐ?㫱gžXý环¾b´Ÿ´aÿ¹ÛØFÀáöS|§_*pèIÂù.–*o¬Ñw´#EM׫Ǟ0pëÊòšNh´q§ïµÇèA/tÆ&±½Ð¸0qëVÙÈkQ¡Ñú­2Á_¨j¨^¤BžM¿]:Tý÷´äNà^yOOn€-<Û¸SngÖ‘Š.©°‘»PMBÏj¹(D¦^:43;º¡§sñì5®£:†/CÿŒ7b·£¶xzáÐÛ~äi/TÞŠ<½ÿ2¶ÚÅä°ß×=Á­#x™4:0›:*¼8Þ~¨7n–üI,fçh*p`ÍèèyÀ…‰ë«Ýéã8HÊS$DÛ¸[6¬ÓØÍ6ðøÏjÂhVS»!º0õjÔ¡ùB}M×û3-p¾Œ<™/CÿŒ·b¶à[vRC?,Îw±¼Py#ò\¶ÃK©ÐIÕQÕÀq¼MUˆ¸ô×Ò”ùmÜTØÆRÃýMß[ˆ¶ðy¨áþ¯l‹W€-DÛ8¸“Ñ“ùšáÝ€³úF½¨÷xˆ.L½uh®pôÖeZ8zëbø2ôÏx#öh–ã€î ‡~Xœïby¡òVä·ÿ ¯1ëæÎÉfývípzÐÓø=ßòSoŽ7žÆï^¨¼qßÌp] Ϲ§B8ÞµãŽÝö\OÊÌKõEòA#/E7î˜uÖ‘Ž~˜l×—cŽ~˜[ˆ¶ð /-9:b2- 11¼Py#öûø{³s6%§‚ÞÕ÷¢ç± §_#ÿï[Ìé´ðè3Øÿ÷5Øè˜«¾è‡ÓgyŠ<ÇÓÇðBå­ÛœßΓ ü¼vnŸm„ûÀÉ}{;oæ‘%£§7†*oÅ-ý6TgR¡×‡0Oa Æ=Ø ¸ôå¶å†×å zž=1¼Py+öè«Ö¬ôCŽ3ÍK8ßÅòBåÈ×rËúîßä6;Ðe¡ÉV¨ñ¼¦£ý.óМäh¿‹á…Ê[±ÿ“¤5eû¼ôŸ ñðÀ[ˆ¶px—iCu&:°„q–`Üs< 7‚~ u8¤‚‡0GF /TÞˆ=܇à8†7ãÐ"Àqo /TÞŠ|í³þ&lë#“F€-DÛ 8žÏt4àeZ 8ðbx¡òzYf…wA96ˆpý®Yù-2©°Õe»¿±‡. M6B=áÕµ¨©79¬x-ÜÓäà •7beñfÇTàÐLŠó],/TÞˆ|½¦üûÃ:šªÖÛWCk»£©*†*oLKè§=»" ¸q׬;6-9Z²]âtYhr5Ô/šò¾2ЯÓO¦¿™Œ'_ äÓe¨ÐF¬ë=zí²žG“£w¡ºPu#ð\Fò´¬xYÖÓ"à •·bNŽ“í2ý°ŽóÄðBåõÈo=ž\sôeZ½8ú¿bx¡òúÚëµ½”\Ï"nÜ5ã-vmþSW^Y®O­0ÝÅÑ£­Xß¾/ÂúDi*ôü}£\¶çéngõõôû›o Ñ6B>ÃåO_Æד=} 1¼Py#öp ïCJý°8ßÅòBå­Èãù5GUæ¡ÉÔÑGà •7–臞<[" ¸q×ÜÞÊhߎK… ó³6Ìëë¾-DÛ9¿þ˜ »ÿíþ UMé²Ðd+ÔpAÆÓ°áYO{@ /T^ý5ÇheúaiÅðBåÈãßò´#ešKíH1¼Py#ö·¯ðJy©à¡gÖQˆŒá…Ê[±5V·¶¥‚Ö3ÿ†<>-¶^¨¼û[ß6¥Ý!òù¨~[û{4ø´ðh5Öc?à5Óö^‹‡£ö^ ^¨¼ûžSÕå©z8ÒÅ3Ó¡N{Zµ:"nE}5Wíîù—|.~¿=§î-ù´ðh+Ö豋êý­ˆtáÐ ç»X^¨¼yüƒŽî»‹‡VíÝwA¼Py#öübAú´gízPä …GÑ^ñG{;ÌÅCR{;L/TÞŠ=\àpœŠtñõuÀÒ«‹ ­´‚ 7¢¾! ˜ö³2\] ´ŸÝÀ—…&[qÆSjíý¤ÍBíý¤A¼Py=öC?’_§ßt¥VåîTë¥w«j„-D[mVý‡ãY{µ¦V/zHq¾‹å…ÊOшgíÛ‡ºx`–Ô)T«—„àBĨãÇ;Zn.yÛ[n‚x¡òVìv E*ìá6’±Z?"l!ÚFÀñ/“;ŠT?2¢müL±Ã:¾•(808¶o‚ Á…ˆ1Ÿá,Œc+ÎŃ㦎¼êd 7¢ŽŸçÉ´Ïø·™<™ö^¨¼û³· eõYUÛÎæ[ã–ý¬âx‰ 7b¾ÓÛŸSaYµ'}Û!ºPu#ìœûòìSÈ<0Dª“¾K!"®G}™À·Ó†ÞçTàõÇÔÓµ ·b>¿;•9‡¤¥Âþa¿o9ùÕ—ã®çÓòßÐc  UÿvGhÖ^åË;æö£Ò“±©°_#ï·ûÅŸB¦ËB“Õï<ŒËy´÷‡ªn<üóR[Mûëj [ÿþ§ÜºZ.L\¯«-3žtìßÈ|}]uú×ÇÜ\ˆ¸q«×ÊjþJÃRlý…>-<Ú˜ÝÖó[^Û®+óÏüú-Çsu>žü¶ÿ·þoZþû·äÑŸý]¨ºñôßšcYuŒTàúú¤ 7žýL6ìÙH¬Îq¼‹Ä…ˆ[1¿í€äç– YMêªÈˆy€.TÝyq~Vyµor9¿ËÄÕ…ªëwäÚã {Çþ§Ì«µ+Hßý 7¢>L૽˜m` Ó^ °…h¿õó*j©ÀiÚQ ŒÀ…ˆ1ŸÀÊHî¡TàÀ4ã]$.D܈ùòZ1Ö¿Ð|Z_¾Ð¬N¢™ž^›5¿}Óå_×;ž¿)}þ 5â¸0ñjÈ¡tUgPu%}]|}Ò«Òêª.ÿö¸õ^»LŸ60(:Š®¶ðl#ÞÇÀ/\¦B7R®OŠ®!ºPu+ðhùß — ˜‹ûø"p!âzÌ·~ÃfÑ]›EËWIC³…c‹à†~¬cÕËÜê²("nü ·];¬Jt*ðú¸ë©¡GàBĘÏh~ßÔ˜ øAÛ1#p!âFÌé•‘ôI÷Z±Ø_ÍaÂkaæ–ZŠ@ÖBË_%ŠÀ…‰ë5¢ ÿª…g«ñ†~bUWÏúFã\ˆ¸q«Ô·R¿Ñ‘[—ãÓB£hï`šÒS“Ë80Û;jr¸q#暦ÄwE§~PÇ~î\ˆ¸ó_GH…]÷Û«tYh²j<=y¨Ó¦ºßÑÏ?lê+„¾;"nD}|'Ž¿´ã›Ö7´ñ ßl~±)xuÞtÉø´Ðhã&™vó©÷·#gùÕ30~¹êýÈ|Zx´k4ä¨EîhÅQŠ °…gñ^дµºLžõÛû¶¥Ïþ5q¼‹Ä…ˆ1Ç¿ð0÷êT¯®ewô; ›º ×÷öGàBĨoü¦ûTà/÷û¡וЧúúú}N§…G[áÞ‹ÚÌŸ$ÓUYÏ$S.æOëý«:3óæ‰ß:>®û—Þ¦ú…žÀ7›m„{À¡š\Ò í¯®­pº‹£…FÑ>ÐeŠ£Ø›q`¾w{#p!âzÌ­SáÇ>¤~PǸq#æÕ3Ÿt“dý\ßçˆf½ Õ…ªÇ?2â9)ä@?Õ±©ÅMýœ\ˆ¸õ€"~*ðÚtäi>àÓB£hÏhÅÑxqà§t4DàBĘ/h?^#8ðƒ:‰À…ˆWc~n&ûö’åÿ:òõsžþõ•6ãÛò‰ÿ°ùOT"NÅˈ?Âõd úªéúh›³L\˜¸q+Þzm8ÕöTÐç¸2s›láÙF¸ÿ¶ Ž¿ÕvbRˆ.T]ïAúÂóú32^]9º3øtq?­Þæ•-’Ú2*Íz2ø²°d=ÎýÖjÎ/I^ÿ'¯„àBÄ­˜OÐâ­ýËÐLõ›6Õk#I.L\]¼µè»¦kuÚ?ú@Ç…‰·âx›'RA×Aí=¶ðl#Ü3XQq´"\xu6nïD …FѾíÎeUóS?e{B.D܈ù:B݌͛P.ùÕ!4|Û˜çÞ†@ ¶b V¯Î@I¬€ÚOo Á…ˆ1¿³Ì©-§‚®O<¸ÝÚ³pŸÕ_f–&ö0ÿþ–Z9lû¸òr˜>¦DèÂÔ«Q§ô˰W'üöF„º ¸ŸÖ£=ôhͪ½ ៲½ !"nÄ|À6ˆ6oA¹äú„ß¼%€mÅú—)øA3©Àɾýˆœ\ˆ¸óÛùÞœê}*èê”ìh:ˆ°…gá>ëëÌ|DiSRWï“ö††Zh´ñK¢oí½ Ù~ÈöV†[x¶oôû› çʤ†ØöqBp!âFÌá#q¾’ }ÖŠ°O>q‚ ·¢¥ÚÕã‹®Omíåã[x¶nüìä^ý5õEЩ×oÇÇj~qj›Dyé½— ¶mµ¹ãüž3;ö–{´äãèeÈxuLq43ði¡ÑúS?ög.’·±-´>%»·ãУ`ߎ—`u`¤¯?7žÞ‘\ˆ¸óƒŸVN…>ªÓÚ“Œx.DÜ:ú5é†#¼ROŽw‘¸q#æ3º|›Ô–º`>q`õ†Û]³¯ …h[‡J›žÖ”L×úŽÞ”[x¶î½Ãgõ×4"¾ƒ· Ž¿/}Áª² iÚÒ¦¶¾¤¯Þ⎖>-4Ú¸ W°öèi!É8°r´DàBÄ­˜l"N…þ‚¿­U~í½ÿ´Ôó/è÷8ߢm„üü"}}×p˜\*ðú3ä8/"®~xþ"K˜¸q»XõÔÑý’éúÔéh °…gëážz¬zÚb.mj‹J*ðê}âh­áÓB£_­Z9:=N˜’¶ðl#ÞX=m89-80;àx‰ ×çµi«„Ž/~Rpãv™rKF*èúîè$ °…gá§L<1q£Ñª’£O%ãÕÛÄѦ§…F?$ú‰rO“Ê„~eÁÓ¤ 7bŽ~¢¼áħTàÀã]$.D\ùÜc`G¥:ÓõÁÐQª°…g[á® +þbu¦,´Ò]-<Úöæ¬ñ—ãÒ¦–“S×JOœO 6~Iô{ÞžjìŒ~ÁSÀ…ˆ1_°Œ˜£&“éúƒé(ÊØÂ³p¯`F ã)mjá$xõ±w|ø´Ðhë—|½_?™ñ¦·w×â×\ÁïRðãÇ:2ÞßYf/P /TÞøQÁ{ªI3ø!oO1)ÀžmÅ{ü}ˆ8ç3¤‚^UÇékÆ-ãûpÇó~ÊןÐ×W¸0q=äK¥ U“L×'7GÙ$Àžm„k@oxƒ½Ñ`ªÐS”ÉxuætÔdø´Ðhã‡D¿6î©È,èY➊L.DÜŠùÓÍëeRùM¯XFÌ‘eÏtý™w¤ÙláÙÆ/¹Iü}­´©©ðTàÕÅ‘ÂçÓB£_ýš±'}¿ GñzÒ÷¸q=æ+=3› Z»SüÙd6,,Øsþx,± 2¶úØ<éÞ °…h[‡’žäz¦«Ž'»` Ï6Â=‚ÉGüª´©ðTàÕû§»8Zh´ñK‚M²žcÖ÷ðªdØžœó¢ U·Â~ž¯ñš–¯üÔsûóÏ~{ñÇð%í“ |ÑÔf» ´…h[MûÛVª'ç%¬·TÓ·_óÉ ¸0qýÈ„u…2„ž*R¦ë³›£Œ` Ï6nñýF_ÐÖpø¤’´Ö>÷ø¨¢ S·~R03ë©#­Ø—j=e$>-4Úˆ6¼e¨Wç|}Ä:à%EßÅòÂåõÐo#”Eõ 2]rˆ[x¶î Ë¢6¼x–6µJ ¼úô;ª|Zh´ñKÂÛA‡`l·S4kO½ãŒ^¸¼z쳆žbÁ~ÐS-°…gáÞ±¤Sò¼´©ýTàÕ§ßQ‰àÓB£õ_’îHú ¡'Ç»H\˜¸òÞ«üeŸ ¿žÊYöa Wކ~RöÙ+G,?)ûØB´€cߦóT vðožRA€-<Û7øÒ€¿ìÜhxüó”"ö¹š¦yR‹ˆá…Ë¿ëYí¸U#ŠG4çÝ·é|Dßy÷ùÓ´þ×ÃÖI/ÚÃß,wa²Ðd#ÒØ·Á<Ù¼üÆ–'` Ï6 ~¬áUç×>ú1 á– yæ=éÂ^¸¼þÃgö°’ú©à_ ¹×örnE"†*oÄþ•G¾6|¾ˆùÚ°:OŸ¶ñjØLwq´ðèZ´©ûCŠhOúuû÷µðiáÑV´wôæ^µßRÒ‡Zâ£Ù~_8ö5/OÊý©ñäÜláÙÆ}~Í«á îm/ ¼°päô3MÍŽœ~ /\ÞøaÏ­ Ȱi©úØîÚmxp¢mD|ƒ×»¦«éàŒWÛï ߡ䓧béúÐå(ØÂ³Õû{‘kxý…û>"¯Ÿ ±ÚkA¼pyýWíù©çTØýïÀÂJ˜óe¡Éê©”ÿèZ§@óì#DÛºGzl*ðiÑ"žéýƒ>Ñów ›m„ütƒc½?÷èmOÇ£lðªÓQ¸ø× hœ¿_½¿:Ä —׃?€g7,XÞöˆOo}s÷â‘Ð8’¸A¼pyã‡ÝÞ™F…ÿ ïxö¹ý ú⡸´¿AñÂåõ_uœð7tÇr:óÐå;–Ó1¼py#ø¹’KÌ»¦Â6ß“Ü ã]¨ºöéü\)sW\*lóÒ›õ.Tªn„ÎK5W¢.Û¼tw1*Fªn„ý¶àã•/SÁOÕc½÷I]ð©/Á¸q#êù„;ÞÛd*è÷sD{¦ËB“õHÏp2£¹xÙУ ë]¨.TÝ {±C›–œo…×éoªþI&O 6b½®Üæ¹TÈ÷›„Õòa Ñ6ÂMϼ¦Oz&›‹Š!¸0q+äõö<ÿ»PÖÍ—\ÿ»Pˆ.T]üýXXÚE*tóâýoC!ºPu#ð#ú6Ô\G¿lèa…õ.Tªn„ý6¸sV© §Qkxãó'þþ °ú& ÿrO\Ô¯#j\Î#*.Lܸ·zºÅŸɺ9|ù3"!ºPu=ðëXoÙó¿3fýÿ§íN’d×ulNåöi~LuÑ|CÉæ?‚Œ©îAh£óÓŽÙ}+ôá ¤Lß¾f Ñ ªË=Á²”ŒË*ñÇ×¹ŽjÉ/Tá»õßòßþ¯W’8!q¥AâWJ‰Ù÷Ÿ¶Â ° h+_ëEdþE^ÑMoQû*/D'¨®>J…NcÃÅ)õ“ùW€M@[‰ø>À'H‰á†'7Û·¯·DJ èykwßÀ) ºÜb®ãh¸ò£ô†î×-—“ÞÖ;}¢Ç_ƒŽ§ G+áíË€öT@ÑMýy{* D'¨®¾>Ùõ§¾Ö{íÈŽN}…èÕåÒæµr¥Ð“%;ÀVZÌ<Tð%Æú™MìgÄ…cNH\ û6c·¥“•…—3=À& ­„Û0ñòç¥ÖÛäåç?ç¥Bt‚êràËUW¦îel/„=oÒª¿¤»ø’Š«Òœ¸ö ^c”Þí^zOGØ„³•xÏöi]{úµè¦w´=ý¢TWoï^¥Þ›ñÝ;ñ×6m-ä7ßÀ2»ÅέeÄÖîØ´•€ï| 1üÞ-âö/"pBârÐ÷ξmÔžN/º©WlO§‡èÕ•ÀÏö©z{î¨è¦‡oÏ…èÕ•Àãw‰Ùʘá_”Ø´Å€ÏÝÔÃg»‰áõûÄÓôœ€¸ó~øˆ9l,=ñû“ÃÆÒœ¸ts³yƒô´;ímÖ_¡:Au%ì[­ÜÀÝ¡Ÿv^x­Ÿg§tè6m%à•klKŸ¶©­4—ÆèÕå°ƒyZÔœÛ-øá~_Jú÷ÿ‹wú@ó‚ާ G+ážøàŸ~4•ÏRæG“x¯Å—c¾ öÜ\ûŠ«è¦.±}Å¢T׿Ã×-‰á†NѱâŠÀ ‰+AŸÐUéV~Níž&­{3Ný=ë­‚×Û‰g½W‚¾Ã !³ ­¥½€#À& -| X&&†w¹mÜòOŽVÂ÷‘‰Ù†vÒ^¸`ÐÖο½ö|ó&1\)bõï:Ø´å=§5`¹œ^}7Ë|Ȭsø VÂ|ÿ² t+礧\ÜÝˉ° h+ñž6cÒ¼Æ9íêÛØ¼ÂÁË“•Pϵå¤{usÚÊÏè^ÝDØ´•€/µ÷êæ´•w¯n"lÚJÀWýåñïšt½lß6‹° hËñðK„ÄìjGؾ°Ë“µPè½ìÄìîÖOáváct‚êâNü2Œƒ©Giß°<éú›Ù¾eaÐVšyN~!sõ‰Ùâpü`!Â& ­|3­w›–']m(Ž]Ë›€¶ïѸaÔÆLÌ®6Gú5Â& ­¿zHÌ>^žºæË“•P×"í_îŒ×C{#ýk4L(XóÔ÷ø UbºzÈ? Ñ ªË“ÁiÒëYüÛ EÎCŽV‚ؾ¯€§ G+\ÏU=™V*žLñ4áh%ØûjjØí›8E®7‘ö]ÛÊN ¤žÏ½ùކ WƒŒ]ðH#o¹=¸² ÑyÌŸéòÊfÏ[Ó;-ôQOæÚh˜P°Ò¾×k7’mHL÷f…fHð4áh9ÖµSÙOæÙúñæ'³l¸L0Y õmµ„©=ú£·aBo_ö8à{ìÄôÖ>‡´uÃÝÎjþ âÐ`Ж[Ê6îÐ9Ibp'¯ªÝó(ø£õbü3øõ­¦]ˆc @Ž–Ƴ–×ú£ÇáïwÎnÝøŽ_g¥Ñ7'$þrO\&I—¶Ç~ðŽWšâíÞMП˜­¤üs“›€¶ðqDï€$fßç=¸½› ºö <·Jïòñýü—È !\&˜¬zFɉіžPÍkpó–‚«C…{Þÿ˜·üÅ%OŠîßLýÀ§ÒËbqúÛøûYŒÓ¿a’_¡ ºÜç¿M Wèþet€M@[‰ø _è¦w»þÜvúöØkÅÄôúE³=³¯¢gq•`Ж‡¸¥¯•±úS"[nâ˰›ÛJûB±è†˜ORÌÅub€M@[ ù°ÒJL7<ú,=º¸F ° hk!Ÿá¢Äð{Ån*—SP«unÞ¾$_k3ó'kòœ¸ÜηÛŹ ¥Vb¶éÑÍú+T'¨.‡}ïñ/ibøáª§ùúåNgõøârOŽVÂ=X‡ ó,11»¿µØì6À& ­<_Ý^7'Æ÷òÛùhÑÖ—wr÷œ:%øsñ×ìÏyÿ|9üiø×Oò#†',/O2vóªÎ¼ HÌ6¼Sí«—›€¶ÒT+ ŸL슮LÔŸÌìBt‚êbà÷ΚhÏþ¶ò£>ÈÿÅèÕ•°›Sæ5ob¶áEm^«GØ´•€Wë"¬bNÝô’6¯bbt‚êJà}Áþ Û}Ú–—´½-F'¨.‡½ï6ô¶nb¶ò¢º·£#lÚJÀo€–a‰Ùõˡۗ6m%àù¨20Í­ü–ÞäHM8Z öüñê×ê'o(ÀµzOX^ þº»–æÕèi^ÑæÕh„M@[øû-ìÒ"1ÝðÙϲ(D'¨®¾¶£ö pê9¡ÞÏØ4@ŒNP] ¼5ÏÛ¾µ~ØÂ±ÅÓ„£•`¯«µ{q,І·žQ}E‹¢ ºx{.­= PtÓ+ÚžÑ ªË»ZjÇ¿-¶òªúW£6m%àøU]bv÷W¿[‹Âe‚ÉJ¨§:Ô:´Ðʯè^‡âiÂÑJ°óµSà•\büÕL«Ðœ¸vüJ.1»új¶¯?s;ÄÁ„‚å@OcžÒ&fW»}— &k¡Ž(QHŒW3fþ‹ ž°¼X`QnøÁ&)Ò;~<»þ¡lJ{_ÊOZÊ —ü“nó¿í¿Ÿbäö`Ж[âÜ™3ZŽÅxÑ-¿¨c1¢T—ûß¿¶JÌ>†o7ÃøW„p™`²jød?1úxê¹@AÄ‚å0/Ó‚ÓëŸ@ìßìû}Gâ `ÐÖB~»Z•tOL¿W(½.xºwûº.XÜ.° h+!ÿ(EN› ëû³æ º–™À>¼è¼@ö÷à6m¹÷^sµ*0E“=È¿¥;±„§ GËíû¨Ê…f£ Ýœ³ÚæLŽV‚­â~²¶Ìp Ûï0™`²çr3nµ˜\êö%ž&-Æúçµ°ÍwìÓÖ‹ô–˜}¼æ_-<zCpBââàÛwæî¯uð=éN[{‡ßœ¸ò•«1q‹‘‹Î§Q€ ‰Ñã*'ð >,oøíc¾ò¯€wêZôUÒ¥yOßçΊ—[yÑS¶ÄhÓëÙ:Õ ÁyÈárȇ|Z›§NLŸ©f«ØÃv·3Zþ‚”.ˆ° h+!_à£Pz·ÕK8ÜÃg€M@[øØð×31ÜôèÍKNH\ú´Õ¯ u7ó‚»&•Oúµ·óœ¸ô¹~»¡Ï“ùÁ›Ûy€M@[ø2/èœubö$Õ.ùSí4áh9Úk¿ÀßÌÄðúw0†]¨U{ ãiÂÑb°‡{ž31NŒîäÇöOèCpBâJÈóáyh?1ütp6m-â;|‡ 1Üðäívßçj‘MÉolåÝ/ë¿­ =?îð_ÿóÿ.â–lOX^Ü–úiO'£ëß6O‚hÂÑïÐí±'t3' -¿üýí2FÌÀœ]wót"€&-{˜?>NŒ›PüžíÅM("pBârÐǾǧ$Óïï.£TW?Mà®<1º“ÖWîá  V ï £kÝÞ£aBÁr˜§-i\×}»à¾\ˆŒë¹lÚJÀùš–1=ieöçLCpBârÈçÏ»CeÑÕs1þ¡2D'¨®~Z ÃNbð‘œUî[i(Ñ0¡`%ÈûtƒkÜ>L¢aBÁr—ý£î×o/o÷É}„ôÛ8!q-èS@¦*1^äÙbxÂòržm5§gÚóÕ÷/ HÏîÏX‡èÕå6¿¾MÈAã}bz'§Äý3•›€¶òÛѽ¥·çò×Û­ÖZšAÄèÕå°oùZfàFubôuµ»Ž— &+‘^¯[ªQ‹åÄð[m¨tÃ8q=õ¨ïåA4D'¨.¡ÛÛÅ|˜©Wbøñ£_%FN#pBârcß?¯èCN÷ÏK£“Æž°¼ÜâwÃñPÿ´±èjá¿Ú¢T[ý؎Ϲg1§nzøæYLŒNP] ü2a'‰ÉJÊÁ=‰° hká6exš3Š'\¿ýeœïôíÀ(MŽ–CÝ£%Ôæ,Ý þ¸8BŸüÑþFðø‚Çæ±_?Êpcó©ç5ÆNéÄèÕåiíCûØ\tÓ÷Í!:Au%ðËǤ6:[YÛùG盀¶ðq»}s´lL ¿5’îp®ÏYï嘇èÕ•¸ß¶A©×Äì|uÆ÷QÉ3Á ‰Ë1Ÿ–Z匿s™n_ô:®¾v.6m%à·O$£¦^‰áãñ[¢·ct‚êò¼q/^Ò|-œq .4L(XnÜ[×ãó܉é“üäþ}NH\nÚÛ<›Jbô}î‰kà8!q¹¡¬ãÒ›}°ßä"ïK‰Ûâú.LVB}¿µvKL7<ú&=º¸ê ° h‹!ÿ™ÐÔ÷?¼]ʉ[î=jîRBpBâJÐó%Ø¥[bºRâ_u†à„Äå¨÷ ~é–>?){GOz¿ÓÍ@ 9ž&-‡{˜gø,+1\í¶ü3Ä ž°¼8Kœ†mƒw‰áyÖ¯ŸjïÔ#pBâr{¿â¥)·¯Ê3éj—ß¿õ޾Ë='$.7ôqHS$¦÷Ë_‡ý Åžú»ÑòÄN=À& -7ó)_ýîãÕ®ëAÇÖ—ÛûÜã»ÇÄðú…FÓ l ‹Ý:ž&-·õ¥‡/£³{y«Ï½ø° h‹ðOK¾ÑhXùýÙËÏY:ô=wèëðoú¯_ÿúó¯a‰Ð ª+mqцÄlÃoÚœ‰° h+ßêÕ'ºå¶ó< ×õ=èbxÂòò@·Ž=<Í®Na¤HbxÂòr»/ÇÅ€cub´ò¾ºgxšp´ìm@ÔéVn#ñÏ/ð4áh%Økí‡ô¡Å6ƒ¡†ËÓÊ=Zâe‚ÉJ¨ñcNbvõ±›GJ¼L0YLzÌ}þ¨Ù°÷bõ{~ôxgòZê÷Ÿ¿‰ƒŸÿõòÓE}û2ü+T'¨.·Â¾¿•ÛÃV±‰ñcÞø¶Ô)øô~Ì<³ùoÈÀ ‰+a‡‰ÑÝßvhHƒÃ„‚•0žlNÜNþxyÊÙàÄ-ˆ',/6ø®gb¸R¦éÞ®° h‹9½y(·(·<³G©¿òïÔЄ£åö=N¦ XÛ{ðmD9eÛÞƒ£aBÁr§­G¿‹‰Ùê²Þß‹„èÕåždÎ)pèÔ*1\YÑ?˜Fà„Äå¶>àÔXbr'?·;ŸaÐV½Ïàa'1ZyîÃeNH\ ùޝHLïµ>Ñ]Û£T—¿ ׋É%&Ö¸BÓzxšp´ëe[bü!«7ÈMoxaóßyNH\ ûº`3“‰ÉõÆÒžNÅÓ„£•Xoõ 1ÿ¼ÜR䟗‡èÕåyùš÷#°¹æÄtmz'Ñ ªË-~½]KƒZV$†+Ùà ¢œ¸tøÒ"1[¹«Ã¿$ ° h+ß—JÀ,Š ®<ùƒEQNH\úq¬½°HLWoÖó/ŠBt‚êJà×+·ˆH‡þÁ{ÿÑ^€Ó£¢çõÅö}}ៅèÕåéÑþÖ9bƺÄðÜ9bÇhŽ3x•}ÜÊ2bç‰6m%ÞKíéƒF>.µYÿƒFW‚¾¡g¹é¾;’.zšVn‡=Š+Л€¶¸úüÁWô¨Ÿ˜}H>‹!À ‰+¯¿]%}ã²ÂmÚrTÖ%ï&Î<› _^Ñ!¿¢s÷3Ñýý#òç"bt‚êò½ÞVÿ°=ÅÄôV¿º2Ïw;«ù/ˆ}z€M@[î·þ*nG-éÃûõoFǼÐór§3šÿ€p+„Z¾%†ç.ö˃Ÿô¼½Ñšÿ€øCâiÂÑòO™Ë’°™ÕôŽ«e2î¤pNH\ú´áó|éå!ÍŸ¡Œ° hËcñ<®Øn61¹“·TýƒC€M@[nàó\­¥~Э]­Žñ÷+!:Au9ðKgÎ uÖlvb¸2[v§á#lÚZÄ7tj"1[)×p§T"lÚJÀ{xŽ<½Û††Ò¼Ÿ².¹x šhN 7Ï”˜®ŽÍîYŒNP]Ü[×Û6è5" -7õ5T!'ЉÙJͽ‚`ÐV> ø} Ätµ™»÷°bt‚ê ¹ëáë\®y_a+-f©ž¢x°$*z'uD6m9ä[W£ý;Åî”fþ`Ï#D'¨.çZ¶îã%ØŠ¨ØJ1¥E`ÐVÚy>ŠMË%†«åAF1†',¯´õiAo–%f>ž=ïwýíþ*q®¢T÷ùø¥yé6¨<1AëÕ•Î`Ÿªó/ÿâ±èê,Æ¿x Ñ ªËÿòجØÇzÜÚ\ƒØ´•€/YFà¬èjkñ¯ÁBt‚êò ·o x«;1zfIöçá2Ád±‰o~Jš˜}L¾½™î‰4^&˜¬„:¿»äJLW¯"r/ct‚êbo²u9a^$Æ«Oï_¿ñ„ååà÷Ý€Ÿq%¦wãn®aЖ;š~­W¸§-§ÞÉ 5÷¤%Â& -·òáÖ·C¤Ääc-×+òõ¢xšp´Ü¼‡ñãŠ&à8ZôcÎ_.SŽ£!:Au¥‘›÷Ò»ÖÊŸÓVÇhwíOŒNP]iïËÇ6#rú2ܹå8;rúÖ—ÛühÞTo®:mS»1ë¯P ºÜæGóFis)Ói›½¹˜)F'¨®„}Û°)ŒÄäûƒ£/6m9ÜSoP›ËÇNÛÔRšoÇèÕµ°_¿)¨Ü 1;o×}=yᯓÁ ‰+1¿]È›%¦«S$ÿì1D'¨.~îü4 1ÝôðíS˜ ºøÑº Û°ý˜® þûœ¸õ’΄î¬'¦×Ÿ½¿½zù¬?OZì|žöë“?H”Fà„ÄÅ2m^òFã6ÉU¶å¨ñ’û€~*©ªéßöß0þ=û·µoˆNP]^ùΧ÷€k°¹žÂó/Á"pBââù€ŸUÄ ï`‰+=ïç§â`«Çùóck°Õã\ûæÏƒÕ#À–~ÿÔ'l –˜njèíëÇ ºø5 [OLïµ¢#ÿ¢T—‡¤e»xØîIbú«¹Y†»ÕüÄN&À& ­´õúW.ýËöe¿ýœè=Ÿœ¸ôu²÷_íkö¢›¾}Í¢TWÿ9^'½E7=|û¬7D'¨®þcZ ›<®÷oíØÉc€M@[øvÍA…6é>Vã× )Ø´å©K9OÒc·ÁãYýlÙ2ÞñÂæ¿!6òœ¸ÒÌgü2#½ã¦.±}…W‚¾Þ:.ÌyÄíë Æ'/ø2q|=pùbÊœ¸ó½«ß'ç_“]­(õ¯ICt‚êbǾ÷oµë ‡OLïÄ6ã{„M@[ ùЃëV£ûù¯÷ã%-øò†ßï/çïè+'$.苤K§aðŽ»Ý½t^'1ûÞ¥£òQ6m%àÖ= Ǧú‰wZFÝ¿­Ä–·…U}ÄC»<ž­u ½¬w:£ùÈmNó? åpÆ2 GC±--Åq»AŒNP]ûØÍð5@b¸rŠ{ñaÐV"ž¿Ž-I »¿ªö†zÙÞèÍ@8œ&­„ûóæqØ”¥ØÊirÿ”%À& ­|¯W3?˜´^Íq=˜´Äð„ååàÓyl‚>1ûvKÅGÇUðeçø|ૼ:À ‰Ëëó)/þMéÅ®uÓøÔøû’«Øë»}û ´gaÐVšùÏЧw[/ü[ 6m%àSýüÛƒ zá-Ý¢g†Ã–W‚»Ó”¹LÌ>¦º:åW:õžgÔ·Ö¤œº¡sì¥ÎQªH‰° hËÍ|î7sÈ›«QNÝðèƒôèR-J„M@[ 9~‘‘˜Ý ¹¢K#¸L0Y õjŸ%6ïÍŸº¡•ŒR+‘¶æ#lÚrÈ—¡‡O·ÕWçÁ<1'$®}X@'Æçî‚:gøŠå Ë+ÁŸ7tR41[]øÓ¹!:Au%ì«9«ãYÞÒj<«£ž°¼üí­ÃÁô•‰á×Ò ×ÇãiÂÑZ¸ñ5©‰á·/L±ìe¡×7:£ù(áFÓ„£•pWŽZB'†£ÐPNzßèÍ@7œ&­„;2ÆC‰éê8áBCt‚êrà÷òl\ÕBbô, J-à2Ád!Òÿ®Ë¯´,/1|' Îz›€¶ñrYð—nxr³}=øÖƒ·ü£Å«×œu 2Ádá"„_zïÑ¿"m¥mïõ³›ÎóÒóÚaýþê8Ì( ºø¾až>‰MÆ»Ócж„~ð>$7”ÈßS¡_—;þöé+±‰À ‰Ë ½¿U@bÖɉÑÇœ³GnõÇØ´•xèšôN+ùøfúGŽÖ‚}ËA¶²“oåë˜ý·šp´ëØ? ° h+áÞ­gûì°Ø†vÒ>= ° hkÿ¸8E,ºº³äŸ"†èÕåÀÏù<#n±œ˜¬¼ þ%~€M@[ ÷X«0ôÏÈ‹-&€ýóq¸L0Y¸xé—žóß›þÌE–b.úö¯;t­à„Ä•&8÷ØJ£ÄdåÍi¶_6m-܃ydk_Ý4:´/ Ct‚êÕÀ#‹xصõAYCˆÎÃþL—Kfüš61»:Z´¯Äá2Ád¹…/ù<'´#1\Y=¨!‰À ‰+Aǧ³«m¥=ñ— &+¡^­Å@öêÄpC+qì±Gà„Ä• o©ZX®©ØÊ· ü¹¦›€¶ðݺ$lÏ5»úr¶gšà2Ád9Ôk÷qÏ',ÝQl¥øÓ6m%àÂO%¦á°}¯Âò§õBt‚êJàñËåÄl¥Åø—ù6m%àICàrs­¾EV›8!qy­¹®öÜx{n¥è¦W´=·¢T—[ûÖåê)Ü èÄh1=é<¶!LV"Ý×ʲ¬ñ ®L=¬ñ#pBâJÐ×Zþƒ…gÁ îXxFà„Ä• ~q ¶ð|ûlÓ€-r° h+ßùW `'F };‚ÿ1ú|Ýïøýk³rÇ€—÷$íúÖIºøîïùªy(NH\nŠ{÷qí)la^ì2úvôÜ¿0° h+ÿÜ{ƒ­‹;­|¯l}`ÐV¾}¤Y€ Ģ網£Wˆ!:AuqØwýŒ~E³oÇ£¤•¶žãûïbÔCpBâJÌkmÿ𥨔ö/Xð2Ád±_ù¡ç¿ú=ÐÙðÄì~É©oÃ]ûð®î ºöñ:u »ï#1ý€¿o|{ïvVó_FЛ€¶ò€¥mbxõm_’Є£åp÷ã¤Úç6\×Z§zÊǺóÛ4Ë_¨@Ž—…ýß¹öYž–líVrˆKáçÃÏô¯—1:Au¥Þ>Íè*Ÿ’ŠÉúûGÕÔL¿âhÂÑr¬‡aÃW5'¦ß“ª¸‚ì ºø©75ò抲S®7—æ’²šp´ëÝ6®5Ûœrý©›«mhÂÑr¬Çm‡/aï“KÀµw€M@[^y—O¥áö8“;¹¢Ä½3aЖø4\¾1‹~_ñGÌ ºøù¶C +ÎJL?àïëØsFûfõø bÚ#À& ] 9vÁC®¾Iþ%PˆÎÃþLW¿ßjyPé÷Äôþ¾Tìmy³5ÿ9ìx›€¶ò? %f+[oþ4À& ­üö™Lò=1:—9 Ø-ƒ›€¶o{ùqså䩯¡U‡Ätj€M@[ y.?îuB‰Ù·Ûõ?Fˆ‚oø~àJ/Wb¾|ìDççE¿:-àì<À& ­…|Wg%†Ïâ¯é/+‹° h+_'xÝWbxýÉíöíÁgðÎXbt}ðtlèØ´Å/ƒôë€þ) GËí{ÍŸ£G&ã³ï}`1D'¨.§ë;þÕþÇzàZ?À& -·ó­¯ÕdúÅÎóý¹ƒ.:lÚJÀç«òTLš˜­ Ê'¾íŸ¼W"€—c¾U_‰éòPñ¤`-'$®D}ÆCéW+›ýChNH\@÷r} °Ò.1û><Ã*lÚb+º.`ìOL?^¢¯Ÿþ9K„M@[yÍû1õv—œ7U€5T7úc×õbž¶R¥ê~1#lÚJ+Yë‡_ÜãÏ©—\ö÷¢{ŠÑ ª‹CÐ0äw¹—˜-¿EþÛ€¶ÜÒ‡a±õZ梸‹^zô‘˜'*àyNH\ù97pÙÝMèVÓX=O»woö¡æ¿ ÿœx›€¶öcnðõ[b¸¶Äz°ö â ËË¡;ø>ybö4ÈÛEßû»þö)FéDIŒNP] {¿ 7³o}#n÷3'$®ÄܸÒ¾û9ÜîÊ—^R÷ögNH\ ù ß»ìÛ2Tý=Û÷VOÛ–öë@bt‚êÊOŠ_ê&fwhØ.LVB€ çs‰ÙÊZË? ° hËŸºÊ•nåÅ–ß›‹ò›€¶ð¼o -`K Ÿä”³»ò.Â& ]8ò¸’½m¶yÀ‘6ø[ øÚ£«b³ Þ\ÍaÐV¾/ÕùσtBáÕ›m¤bxÂòrð硞®ð/³Š®>½¢TW¿õÖÀ;ÖCE·<¼c=¢TWŸK“ÝÄleî埤Ø´å€/øÉnbö5…MÑá2Ád%ÔÕ+®ý“Å¥zO´²`ÐV^¾Ê,L —fþºÇ›€¶ñjÙ“z^lCSiŸžØ´µ€_ÓsH&.19_¸ømOØŸ>ÄÓ„£åX¯ÃXú%'$.~ú EŸ$]*ÞýÁWìÊ;1ùh)4]@Ž/ûn‚ÿ„Äå×~è®-,™˜~ÀßK³Š½ÏwûþM1è6m%ä¥@𠿯½Ï´ù4ã‰÷Òdå¤÷åNg4ÿñåÄÓ„£•pÏ >#–˜nh)«ÔRÄ)\€M@[ ùutô{ûvo±õê7ÿ{NH\yÄF^zÃ÷{S)ô¾Ýé·ï쉽8ž&­„»[ðSýÄôÜe àjŒNP] ü•ÁBŽL ¿íà±aèÌŽíoôæ? MŽ–Ã=-xBž]ÿ@ÎÞ½ã·KÄn%'$.¯ ô^ÒÅ)ÅTîåBâ„Ä•¦X?§ÿ`^QtµC÷O,Bt‚êràçÁ¼5gXÃGyGŸ ° h+ÏgÆ¡ù„ÄpÓ›í+â늶 hË_¦¾é–®õ\ö ƒxÂòZèwt'1»—kýù§›€¶ðrB ·ã™=,[ÀQWfÃ~ûZ“ðœ¸<§kÐGI3ýk¾H™&JÌ64ÄöôV€M@[N÷¯9#ý5 ‰ËïþÚWK¦L¢‹^R­ßWçþItˆNP] ü6À+Õ„«»d:Â& -G|7x 1\žŒ>È]Ø´•ˆO <¹nxr³}=xå€ñƒèV©Ú0ÅÓ„£å¹ÐV¾zÖ+CÐZ~ʲÿYøþ÷;pË¿¾l$~¹±8'$.ÞW|êàe»z¨áÁ"4†ç¡È+]W)iCnD%†+ý˃ ´œ¸tkF§=¯XlõmògCt‚êòòåxC°#)m¹½ì·Z%Ђ11Û0äµ/tlÚJÀÇ\¯Íid¦81Ûôþ´ç¸Ct‚êÊ/ºMàªð“>\ìt4½Ó°¿íŸBÃaBÁâ/8u·!V½‘˜>Ò<¨Ø{7¿Ù‡šÿ‚”Iˆ° hk!_àS¬Äpå½ñOCpBâZÐ뇰ýË¡“ïó&ê|à+–',¯›ñóÛÄtõ§uÏÍct‚êràK±?rª˜˜]”š'¸x™`²ê±zÒÌ?=uS;ižƒÆèÕ•À/ÇòxŽ 1z^ÿá¼L0Y‰´y5޵¶öúø÷@bt‚êr؇©Ræß9mÓ£›õW¨NP] {Àd71¼ûÛÚÂMÒñ4áh%Üù&`E{bô,u‰î2|¼L0YŽô˜¿4‹Ñ&¦çµÄ:€gã!:Au%ð‹}²ß>E,ºéáÛ§ˆ!:Au-ð;v¶•˜|ƒ`sÄ›€¶î|s!´²21\¹i¬Ù~Ú´•ˆçÛ %„‰á†'o.6ý±««æ‹Š¢«å‰þEEˆNP],›™rþ°t²¾½ôe6·t¿u'Ãü;§ë„º™ ºX9óÃ/èÅÄlµ½»‹+ct‚êbÁ4Mº›! -w¾Ó<àW¹‰é¦~ }…¢T—?O+¼:/1¼×~Uo]aNH\îçb"Ød:Ó÷Ö›KãiÂÑJ Ù÷KŒ?äïeŠsi'ëûܯ¸g¯†½Ã¥ÐxÈdn­ÝŒ°yÀŸØr¼—áÊ»ÀŽâ$¦9µøí íK[ÙîvVó_û•›€¶òÅ<4·/¼Šžû­íû‚Ô¿ð Ñ ª+7ìZø×EWVÿú"D'¨®þ6M‡Tç%&CÑôm¼ðWâiÂÑJ¬ —Ëú—DE7½¡íK¢ ºøµ[L¼½Ü§ÈõæÒ^ G+±†¡Äôþ>úŸöþfßîÊ{•›€¶òò™à:.1»LB¿í@û—Ÿ6m-à×1vT¢"1ü^aK±Dà„Äå˺Œ@‰éõ´ï¤TîÉñ6m¹oùÛà‹Äxõ5z°ÝÖ—Û{>D„<È‘Þéû“ÃΟàiÂÑJK7o…´ïÍ[]Û6ë¯P ºö=åJÌVÚ‹ª`ÐVþ‘–¦Y¶k‡¥|°˜e‰À ‰+A¿Ý§w.íe(Å6½ fýªT¯†9íâa¯¿¤Žéb€ÍCþÄÖ¾bë~“;ù±ýÕÊûíôÈ& -‡{ßîu˜µ\bøñä_+OýkPKú$Æ%Ÿž„â„Ä•¦¸¬¶¦Ø|Šç¤-¾H>‹!À ‰+MÑ®¯’¾ˆqÉ›LPœ¸Ò–p‰áÝߓ㖞xšp´nøþ?úgávØÀ“ê‰ÙÊ>g³ý ´ hË¿åÌWnÈvÁÇ\Ç‹Î`‡èÕåöb[|:ÒªEΡ_q4áh¹/ùsQ¸Bbrõ©ÉŠÇÇo)7ÿÖ ž&-Çz6ô “˜­d8ýƒe€M@[xù gΦ ½$¦ð÷¹ÏPÞËíng5ÿ1ä6m%äË® HŒ^þJ%ØSŸ ’ýdÖå`ƒaBÁJ˜·Ûn¨Ý˜ÄôþÞBŠ=tovNmAœ“Ø´åïø^01[Zý=è»á2Ád%ÔùÔ,6Åž˜nh%½ÔJÄY`€M@[ yNU— 7zÏŒOz麫Š´/˜}ûtÈG,I™aàø~àŸ·¾"qBâbKYºU}ï¤îN:§¨¿ ˜rw6m%Þ·ïcÁÒ&‰éÃ,-¶‹=Œoö–¿ 7r¼M@[yŸ· õĉáƒ\‚ê.„ް h‹éµ¥ßðû‰á³øäþÒ›€¶ÒÆwüNfb¸áÉÍ6pdÉ%n9Cã/° hË-eñ°‰á†–Ò¼sÜ`7ïÕ#l%â~k71Üðäf›?8²?·¡7WÑEØ´ÅjËeØÑoáhù±ÇÉ:²5—. lùÍùwpÃbw·†œ†èÕåéá¸è±31[)Fñù6m¹O¹ô¸ÃvÑSí䉌˜jÇŸŒ6må·Ü°Û‰ÁƒðÌî 8L(X rùV"p[#1[Ù7n¶_6m9àóxä@66“ÅBYÿnLM8Z‰uÙ1îj$fIónL„M@[ x.¿ÅNÖÓÕ³7þ‰fˆNP]žhÎù"2e˜=JƒÏƒL;ž&­4süô81»~È“z¸L0Yõ‚Ÿ½&fW»}Î — &+¡Þèì51¸“‡÷ŒOŽVB‹¾‘³×Äl¥ÞÇ?ë° hË_çÊFÙàúö]_íÁÛg‚6m-àð²…?{ëüL-1½Ôæ|/\ðÏ2Ct‚êò,sVtuob¶ò†º«’#lÚò[´™wëÚ« Š­­ÕÔ„èÕ•°¯WåfY’­Ì*,§"pBâJÈá¹Ähåò÷ôOŽV‚mÝ"m¯ Ù> ¸ò+3Y|'&çcÒ+4c€§ Gk±†¯R³s3®­à2Ád9Ô»¹h¡½Äj¯üA‘UˆNP] »zÚƒœX‘ëïe{R OŽVb_‚'fWßÌöÄ\&˜¬„šH X>¸~J w©MŒNP] {Þ'YÅšÍö=é.Ë¿¦ÿ&,G¹«ž¢w'ON[é£ÜÉ“›€¶ðÛåà°Dbº–„ô§Obt‚êJàÒ‰áʺ؟@ Á ‰+AÿüÄ+(rÒ9«üí&.w%€&­{ßÌ]KsåÔM¯gs%F'¨.¾¿O>Q«¶ÄtÓÃ7¯8ct‚êJà÷«l ¶o•˜~Àß;¯bÓÝÎjþ b`ЖC>Ô? è_º©½4¯‡bt‚êJà‡ZþÐ?S/v'•ÿúçép™`²êÕÞkµÏÑ‹^:-ô=D'¨®þc˜ÆMÑo ÝŸÿ;C° h+¿-Ç”Ð'F+ÇnO|˜ïxfóŸ¶%BpBââ5Ö-ú"éR‚uá4áh¹Þ?FÙeJLžòëƒÜ   G+±îÑÛ§‰Ñýú·$|÷eÖ;~ÿî‹8°Eà„ÄåW¾Aß$]\9ÃÇ ‰+Mq°Ï˜ÛE7ÍUÚ!:Au%ðódêo›÷O¹Þs5oЄ£•X/è æÄhËÛ¹Ko§˜ŠÀ ‰+ý­Y;I“cù¸'$®4ÅÕžmÏSÝÔgµç)Ct‚êrà§ÑžPhOšÝôðíI³ ºøó¼%0Íš˜­lûÓÃ6m9àKþÌ.² "1»SRÏŠ7Bt‚êZØñ¨ÄðÛ1néÎÔ±çú”uùìQŒNP]<{´F$[Ó;~¸ß¯+ô8Üéû7æÄÅ4ž&-7óu2/GÍ9€ÄðQìº$/lÚJÄËÅÈìBb¸áÉÍöõà9a‰]Ÿ'¦Zù(µr1³`ÐVÚÊm š´$f+»ŸþÉV€M@[ ømÑ)SJïòñÌÃ×Aól&“ÇCÖ‚– &+Þ­Ër{.$1ÜÐ ¶'qìv{n`Ëß:kÊÜžeI ¯?¹Ý¾üvò–§HL7ôß³Ô‹m%À& ­´•Êåuþº˜ív Üø%wû 0OŽï^7ã›ãÈ ?§•&²Ü6˜Q‹ûÄtõêb"D'¨®ÞžWmO|fÜЩ,R§"f=ñ4áhùõÜ;ãZб7°å-›=þ;¥ž|n(}æþÿ†cn‘sL!:Au9Ç´ã—'‰ÙÝߤ¶¨‚Ë“åÞj/×[àJz£‡åoÏý£|ÜÞðÛGøÄôRNH\yñíú.éb*eß'8NH\lŠ[7îàj‡‹^ðÅ“‰áÊP³ý ´ h+?æ ¯ËLï¶á¹ÍôõØ[µ^À?k>õ27ܰ³æ ºÒ^Ì©•æmŽÓÖ–BþŽ º8{Þú\§‰|—hËíåVÒ«7—æ=šB›"Þ\»‚×BÞã·­Óå_ôÁŽ{NH\\ mý² 7®³åí+ÿ~{„M@[iæàU\z‡‡ãg„¬i_a2Ád9΃5¹Ò¾ÁtÚ¦ž°y‹)F'¨®„½ßÑ{í‰Ù†÷²¹F Â& ­|6ÎlÛ·õNÛÒVÚë¾ct‚êJØÍuæ½½ÄlC{iÞ“Œ° hË ×$ø×p£áªÿ.D'¨®~°ÎÍ;7‰Ù†Ó¼áaÐV>×oò/?‹nj-íëÏ ºø¥RÇÿ`-TlåGþµP€M@[øÔ¡k×£yÕì-¸   G+Áî«–DE7½šíK¢ ºøÁØ«´¯ˆ¦Áør¶/ˆð4áh%Ø‹yšèXÝÒR ¢ ºøuB/,³ -¦}A`Ж>w<霮½FOæ1×>õ`ITlC›i_Ø´•¶>ÚGèöÅÑŸó¸ ºøÑ ª+Ç/-³;¡ÊüÁ‚.LVB½ÙÓ8íËþ¢›ÚIû²?D'¨.~zôT71»Ú^Úççp™`²êÑžÀi_ƒÝÔNÚ× !:Au%ðùP0g‘­N¶Ü¹–œ¸rüÂ"1»úж/‡à2Ád-Ô;¼Z;1|’_fûhÐV"ž¿º­O 7<¹Ù¾|7¯$ù¡e7ÏÆù¡ ºÜbÖ~Xò'Æ«•Õ1õw<³ùOˆ}zNH\<„Û¢’.6Æ-ßeÅ ‰+M1_$­¶tw&ªàê,Ú‰ŠÀ ‰ËA߇úU©þùÑÕg÷ÏÿCt‚êJàÇúÏú`Í[ø¼b_¾¨Ö¼16ìqÆSïä S÷t1Â& -NðµOÌ6u…fýªT—[z¹;ËML7u‡Í3ô ºø[&R´—˜\ï›+ hÂÑJ¬oËPH%Sbrý©›Ë¯hÂÑr¬oßÃeŠÒ»~ÀêĢéÍÎjþâ+À& ­„ÜÖ“4¸ÞLš ð2Ád%Îõ£Dþ¥æ8UÇaÿJ3'$.'Uƽ$&z91Q†á)wWC_ý¿í¿¾ÿ7tÊ;¡TWÚã^ßÌñOš‹nú]Û'Í!:Au9ðÓ„.ºHïô}§U+@ŽV‚}»Jvh.1ý€¿_iSìi¹Û÷OH‹½n€M@[ù|»Óv†+1Ýðè«ôèb·`ÐVBþvº4D'¦çtGÏ.Bt‚êJà×ÝÜ֛ϡº¡ÍlR›ˆ6m9äK½ÂÝ?mYskiŸµDà„Ä• æa´ý´Ë©ÚË.µq­`ÐÖB~m×€rñ‰Ù·OX7"pBâò6Âò[¢‰å&f+ òOÎlÚJ#ßWxÚ,1\ù5äû"pBârÐ×\0‡­IL¿?;°Ž%D'¨®~¿iTuRbøá~• =ww:«Ë_ÞükÐá4áh9Ü[o-@ï¥t1±˜måŠû´BM8Z‹öf ·ù0Ab¸áÉÍöõàµk úÅî„Ý•C>\&˜,®Ü·eDÿŒ´•ƽoðÑ>1\i€æ)8!q9èûíkɘꯋ¾Ù„M#Óµ°S  ºò›n³í75×€dzü÷ót~7.1]m1ÎÄ( ºð›þòãfûM͵&=ß¿æ*·MLóœåÛ䳨s·³šÿÂ÷¡.Æ& ­üš»±×5WWÜè>%†Ó–/íCChÂÑò/Ù÷½ùåi¬Î¼tC#¤Fø½63Æ& ­„|ñcsbúÑX¾æà½³Š›€¶òÛ…‡¨ýÃÄôû¤âûמçñ;}íùûÎgŒM@[ùp»+6[ILWß!ÿL+D'¨®>` 11ÝÐf&©Í|ßûŒ± hË!Ï[|Ðͬônßî>d]äy¾ËÙ̾ØÊá2Ád9ÔS׃§Y‰ÑÇ7†oI­³Ã›€¶ï<BV˜%fË 3oe\ŒM@[ øíÚ:Ð+1;ÿ”_ëL#pBâJÌÇ5'p®RtåõÏTlÚJÈ'õ‚fïvÊ%¹‰¯9÷SBhÂÑJ¬Í»æÝÂÄìN™æ{·9£t‚êZØ't¥pb¶aj¬pޱ h+ÏûÀ„Ähù¹…!4áh9Øóír½SiÜÉ¿lÓ‹iÖ_¡:Au-ìº$;1Ûðr6–’ÇØ´•€Ï|Z›ÞOs¬÷?éy¹ÓÍ@ìVð4áh%Ü«u½i.ÅNÌ6´“Æò›€¶ð¥ŒxûyûÒ@]àØ´•€–•À¦…ËgalZ`ÐV¾‚;Âô.Â3?è¼Ñ0¡`áý%Ï£\XS¦=sþ ‡<íùù_üë»ÿÆî/ñq^$JçQy¦ 'F¾7O ÛWàEW»ùWà!:AuåÍß½«õ/ ­”©¸„xšp´ìý* ¥"³óœðû êÏ¡Fà„Ä嘯ýÇYØj°Ø†1¹}5`ÐVž?X€Í$¦›ºÃö¼GˆNP] üj]¦´¯ ‹mh1í뛀¶ðòÑE`áQb¶2.7Û¯@›€¶ð­›áÃPbxßK‹ BÏÛÎhþâð‰§ G+áÆç³;¡HåAÖ.LVBO‡#뺳 ¯d{=Z€M@[ øR™æ?H1»ÚNÚLp™`²êõšßCR5‰ÉØBä—lÚJ¸óYG—˜=ÌÍDºWvÞßôû½²b"%D'¨.'÷ìüÒ‰<_:Ü~ÔUï®üišBwŸ¤AÄ‚…ƒÕ¿ò>áD‚êÊ‹ÿvŠ”‡LLÏó̹çPCt‚êrà÷nOï£Å±Ó¿&Ë“•Hã“b‰ÙÕP{*.LVB=Û÷ÚÓxE7½‘íi¼ ºø|!òÄsb¶²¤j¶_6m%àøücbvõmÏšÂe‚ÉJ¨·Úý/ç§=cZleŠÜl¿mÚbÀû. x‚-1z’žºY~…É“µH/Æn{º(i´#–˜}Ÿm¢2y6m-à[@IWbüýÖ£ñ„åÅŠ´¾ÛØÑ>P¾í„å1¢Þê –[xßë[îÄÉ)+•;uaÐÖÂ}(…l&&çŽêËÙLÿ~nM8Z‰õ2ç>ÍËøÓV†y÷2>Â& ­|Ãî&&×›Ió†nM8Z‰õVÉÃú×ñ§ÝI+V÷*/L–C=ôµ‚*ÿº²Ø†÷±}]`ÐV>ôØl}brýlÞb  G+±Æ¯…³«ïdû .LVBýv¥"dœ˜wD~÷Z«÷›€¶pÛd»ySá”ëodó®BM8ZŽõh¸™ùA¦¤ðêåG2%1ø û1ö͹–“ÏQ_¾>ýƒdKOX^i6«u>×¾;Àåf3 ÖVãX ÷L»ce£T—›Ì0XG½ö­t®4™‘Ìåy÷ž®LÀüãR€M@[‰øz¥Ð0¥y½ÕžÛ¿(v§ä],Bt‚êò/:šÍéùÓÖÝŸ Ñ ª+aÏý"°îê¢Í«˜æÜèi›¢Ò\9£T—ÑÉ<§nÏ.ÛôèíùÅ ºvü‰ÅÄðY®½rŸ´Œ° h+ÏûôÐ#…‰á†'7Û׃›—/Ž iÁMÍÜοby‚òò£ðÈ_•?ú[iëùtr¢ž˜­NìüKŒ ºö}ÄϨÓµTÃÕ@ˆNP]ü'$®„ýÚ>†IïôíkQ¿g±×{=lùó6m%ÞÕ¹ûƒLØRþ>H„Eà„Ä• oö‰»#»QxÓÓ;²1st¬~ ozW«ßž ¼ûò¡ ä~Rb¸á}uì„Eà„ÄÅ Ýç¶À5êÉ›šLû"5ˆ'(¯Ä~^ЫŽÄlå«>îÕR„M@[ ¸¹.´o­ ?m-Ùã¯ Ñ ªËaï»Zæ^+v½½´¯•"lÚJÀ‡>óM WžÜ?gÁ ‰+A·ž¯¬õìé6½žfü‰WB^Ë7ø'ŒãÛ=¿Z[iŸ/FØ´å€ø‘?1ûh+ßn†òÏWà2Ád%Ôõ곕¡^þò`¶¢T—?öèA?½ÓµÖ☩ aBÁZ˜x1cbø$Æî"Ì›€¶ñ€¹UbøÑR¾m¢?˜âiÂÑJ¸Çêy¸S¢›:Áö9aˆNP] ü}çUK—˜~Àß¿…yÚëÝÎjþ rׂ· h+!ÇOhÓ»]}EÓp¸L0Yõ´èÂÂÄléËëê!hÂÑr´ç¾ºíü`^ô£§:Ú t¢TW?í·N¼zê¬~ÐxÝîvVó_[z€M@[ y}ïóÁ„e¾mÖÚKû„%D'¨.~¹fÆLp£“÷܃yy€M@[‰÷íL'fàOŒ®?·cº`ÐVâhÓ6js]û©ð×>ñ´×ýnß?ž(•µGش寓½f¾¹úÔë¾uÒ£KõÏ6m%ä˂Π%f«¹F+D'¨®„}ßÍ-½¹úÔ -¦—ZŒTÿaЖC¾Íöþ¼½÷ä Ï>HÏ.–â†àĵ¨_³DÈ.Vbò±u=~ùúðƒ­7½÷å¸Ëöù½'\–%'$.‡|ïì3–öÊÛ“7¼š£øÞ‹­<' ®D½,Šc¯³ÈÕ×Ó±Û‰§ G+±ží3G©má íd¡òœ€¸õµ^G៘]Í™ù'æ!:Au%ð;z/+½Ó½<5Ó¯8šp´ìŸW?ð'†ß lÊ‚—ƒÞ÷×ð@ ÐÄìaþKRJ÷Âmó›~¿ŽXãªTÿ»'4‹ÈóO%\¡ÉwÓcu‚êJ‹œ7ôÞSb¶Ò¹÷Ì"lÚJÀ— “O̶´•Ul+³ò ºÒØùMä14ù8 V'¨®´Èíjî°]ÿÄôþ~F³ØÛþfjþ Ò*:Â& ­„üv4iLÌ–K«üsÝ›€¶ð¿*Jov~{:ðFK„M@[ øG•W$¦×_ν“^N)qaÐVBþyÇ'nEW𜊚¿Ô@YW†ö³‰á†—³ýÔDN@\‹ù1ïžjJŒþUˉŒè\^Íw¼œkÈBŽ8'$./RôEÒżçVNK#gú‰á†·¿}uUB£BH\y‡òÈj¯ÄlùåP¥`ÐÖ¾€gû½UžûAvr{»íS™®8²“6my ´íè.…p´ÒwkZÂ~Š,1ÜÐÛÏ¿…àÄ«1–ä· «4@ˆ»L8ø#\™«ØõMÒÅâôrŠ—›âž?§‚¬ÅLÌ®ŽÒ›€¶ð±rôåAx¯Ýùù `ÐVnݾvÔÛìõktÜ„èÕ•°×`<ɫ O«8q1æswû’0ì4Cbú*нïw;«ù/H1° h+!7ow¶–¸ém?VÄ–WBOÈ'fwUI¨m¼L0Y õdM&´'´OÜÐ%¶'´CpâJÌ—Ù6 mOƶr9¼;aÐÖnÝfn/þcxø‡¼úÑžÿp¤Ê ošGqhå8!q¹x{¿]û÷ h+ÝãbÌ#8¶›öݺx3Í´Å ,]W»yÓÍ:m¥RÞÍŠ° h+ÐtŸ“6àþ<1^ÝóFAOŽVb=[çˆÍ%…§mz+Íú+T'¨®„}૊Äðê»éX áiÂÑJ¸÷jñƒµPÑÕcÕþµPˆNP]ü°¢H ¯¶ÇJOŽVÂ=ævÞ¾*º©­´¯ƒBt‚êJà—kÿ—.NŒ?äï;¤Ci5Û/lþâÌ%'$®„}·î› ]³å4΃›€¶ð­›ÍLû´è¦—´} ¢TW_`ë ã{åw}R%ÖW‚ŸdñKb¶áum/Ú ° hkÿV¥˜“¨‰ÑÚ!ºsŸë?Øò'ä€ãqBâòæ¥]ÿ=²ô]—Zÿàê=_O’Ä…óÌ ›%° hkï}½Ûž×Ùfûš±=¯¢TÏ/-[ÞÐ…¾E„Ä•6SfêG\†¯c¨û„ç‰çê‚áË`1–£3šÿ€<·€Ó„£åpïùVà)àÄhK;¤v"΢#pBâJÈ{Ó äØÃ)W!TûrÇž&­Äz°/‡Ú3®E/é–œq Ñ ª+_Ô{›Ÿì+ºÞ` 6m%Þ«}BÑžr-º©±´§\Ct‚êJà÷‹åгåm‹¹¿›€¶ðµëm‹¸öœ“®¿¡í[96m%Þ£}Ë¢9×zꦷ³9×£TW?}·æZO^½(ןk â Ë+ÁÏy(dÎ21ÛÐ=6çZìÊN·?׊°•€oö™zs®èÔM¯js®(F'¨.¾òà=Б˜®vbÍú+T'¨.FYûe‡ox'†+ý—«>'$.·ö=éMor'¥èÜu´K W ñç0œ· ·Âö =k‰À ‰ka_Ð#bvµµ´ÏWà2Ád%Ôù \À"ëÄèaIÆ·®ïxfóŸ»’œ¸¸/Ü¢O’.6Âò5u(NH\nŠã4 ÷†/ûs œŽŸ« àÌ0D'¨.Ï ÇÊ=KO&†cå–¥'󛀶òí z{ëÏž:ð .19¯Û¾œPz0éÄÓ„£åßqšvôöÍeÏv¦’˜\Hûô OŽ–ǹ3Žjödùe£[vºäc~?þÞa!eR–2Ô— ,¥œbÿ×ý<€R_‚W~ÍÏë%€óˆ¢wb­ÆƒYD€M@[žAÌëGÈqSˆ‚_ëXÜ OŽVZxù®›ý£W~ ™KY?Žô"“)!:Auù']˾þ«çKŒ¤WÓ]„ˆ— &Ë‘.ßaƒŽl‰áêÖ=&Gà„Ä• OÖGûÄðYîýg"lÚJÄËWR‘5Ù‰áõ'o?5±¾÷Ô\j›nxp³ýj·ÍA! -7•ýö©QXågbú¿ûµL…ú·r¸¢A|;lÚ≉u¿õµCÚJ[™Š'Ó 1_¥˜KeŸ6m%äë^¤$F“Ú³l{Ú´•xo+|Û*1|’_Nÿ~[€M@[‰ø>Ã7Äà On¶ÏÏzä(1¹“7eÜ˶›€¶ØNòˆ…®¯ML7tâ›Ô‰KsÛ€¶8QÙº ýòŽVZÊí¦qÔR91\M0{ù!8!q%è‹}Ñ\S{ê†f¾KÍ\ª¨° hË!ð]ybö½D6Ø´•€ßî1mÑ$f ·|8··‚w—¶!Ÿd„v‰‰áÊêîÊñ4áh¹‰Oåýî£$¦ßæúìå,öï¦ÕÍ>ÐòĀشµèî01û•DzJyÚ´•€[çžÍ+üÍpõ¼{‰‚WB¾Ã—‰Ù¦Go®×Ñ ªka7î´o¼¶úèî­·m¾U2Ât‚êrØgs¾kÝ};mË£ÛõW¨NP]ûr»_H{óÞái›½y÷0F'¨®„}ÚðãRbºzV×?¤†èÕåÀ¯†^Ì?¬®ŸÓRà°¢TWÿ‘wŽ«oÕ”ßÝ?¬®C½Eú‡Uˆ®„½ÜÜTLÌ;¹ö±èC×ß.3»™ ºöÅÜÜó™u1·wÇ|&D'¨.~ëë‹ÿŒ¦è¦‡oŸÑ„èÕ•À¯3~V˜žs:I¢TW¿è’®Äìû® ª-Â& -|¿]p†ÉR'F«±éërÌŸ\° h+ñ6ÌüSö¢›ÞÎö){ˆNP] üh݈5&fÞÐæÂÅ›€¶ð¹>†úIEÏ­eÜÀ«¤ ºømÅOyÓ-‡èÕµÀ[ë€Íe^‰Ù†Wµ½<-À& -|ï&ûò«y}tê¦ÖÒ¼>ŠÑ ªk·NÓÍS‰Ù†Ó\éaÐVžï?@Îw³§k À²jE†»|˜™—féx™`²êmB/峕Oƒº— 6m-à ºn'1{ûA¹QM8ZŽv_»ïÉ¿:mC3i^EØ´•€Ã'Wé6_¶&nGõ×w§àÃÄñþÀw±Ì?'$.–ùï~úš˜- &Ýp™`²Ü¼GüT*1»úØí@¸L0Y õÞ£çQ‰ÙÕÇnŸüÁe‚Ér¨'üh“˜]}ìö1.LVB½mà¥obt'Îuž,Ù#pBâJÈ˽H²€,1]>ñ ö-'$.G}¯œ.l01ý€¿gÑÏEÃüfß¾‡+NLlÚJÈóæhûîå©}‘]œ Ø´•ß>Z «KL?àï^ìa½Û÷Xˆ]K€M@[ ùöqv 7†\9Oú` À ‰ËA_ûÍܵ´oÝðŠnÒ+*NÈlÚJÈo_­„•Œ%¦^Ñ]zE¹ý ´ h+!Ï'JaùäÄ`¥ÏrçÀñ4áh9Ô[Þ§Ãe“ovXÊ OŽVbvÒ»}tRÃ^sØ´Å`í{tRCÞKûZ\õûƒýúcñ×ìÿ¼;¿7üü Ê^L OX^nŽû¸›^ýö j‘ë/Q{ OŽVb¿¢M $†ßÇdò#†',¯„~Mͼ={]äzƒiO_ãiÂÑZ¬Ñ“ ÄheôtOÝð4áh!ØÓ¿®›lS·Æ½‚K®7‘ÆÍ‚šp´ë~ èÓ»®Õ€»ûï( ºøÜ[ë]£ÅU¦³H'B&˜¬Eúã—„ôÝ]²V;¬ï¡ GkÁ^áU.‰áƒ<Ùt–çÄØ´…âœ|ì¬9BónRb¶RÝæÜ‹± hËM|œÐ[Ié6ûúÑS!§´…¿ž9¡À ‰kaç×õ==qÑøñ81[©©õÏ#lÚâoÙw£qa>ðG÷óŠ/õHLWqù«TBpBâòZêv‘-11» Êò а hËà+¶ôFËÉÈ+Íšp´pˆø×Ηýõ@Ò„y+~™n%w°ÿüŠ?³ÂŸ‘ØCt‚êJ;¼]ðY%&Ö­M   G+±æW!ÃvzOú>‚íõ†à„Äå½-3Þ¼vÊòȽ @ŽVb}»À²LL®¿”Í+Øšp´ëʵšîý¯S®·æ °šp´ë]¿˜×½sÊõ§nÞ„   G˱žºJ™È“‰qÁåÛ“©qNH\ úÀrmÀt؉ç^pçÃbt‚êò²dÊ)šaŸä©}#Æ<yŒøù_ü[þçã$fÚct‚êb¦½ŸáÎôF«{'î‰2ž&-¿ÿó0â°‰éj‰ñ¢T—¿t•=Ó'£]Á¥éø“±OŽVÂÝÃÓ³éÝV{¬™å ºöu¨lw÷æÏIÚ|ÞןGà„Ä• _e{°möôŽî÷ìu¡ÇåNg4ÿ9äpšp´î? ¥w\ݯö 8!q9è[_?Ìñ K/¼Úo=èÓcxÂòJðo:@;o‰Ù·ä/û+Çû•¸à„Äå˜ïogt@/kbúñ: à^&À& ­„|ÙÁ[M‰ÑJ¥Ã‰Û¿_J/î!Dà„Äå´Hƒ¾Kº˜ƒÞ×ZyI;NH\lŠCש[µÖŠ'}´ò³}Ú´•xxkè¢ÇÛà ZX$†ßÓ9߯@ùýçEguú›øý-á4áhå—œêé3ÿDñä_³\¬œ(ñ„ååà·-xÐП˜=?+xe‚‡Ð=ß9Õobƒÿí.×)ÿ¦¿ÿL£Þ©ø×â§}Ë"àã!8!q¹Sû½éž˜}ͰZšp´ÜÂÇaÄÏlÓµÚØ³ò ºøßA˜÷L > Ó·æâMÕâe‚ÉJœ×?©ML75’ö yˆNP] ü^ùë“ KÁ•„Öƒ KNH\ú´bßÐôOWw%)™–;};RŸùGŽ–C=וÓ_'Aþ$öik–?£TWÂ>-ðårbø8KsÏBOëÎhþrÐá4áh%ÜÕÃM¦‡·ºãã“ÃÐÙaNH\ zÀ”ÞIåÁÀ‰§ GËá^:ûL¿}ŠXtS[iŸ"†èÕ•ÀçsjÈ¡?1[žÝ1ýxð;;‰° h‹3“©ÏÛ×À:¾ÄèAåÝŇx™`²Ü¸û>¼§wûe†¯[KþyI„M@[ ø.%û“‡e瘣յ±77‚—̱g§OQ ¨SVV î%T„M@[ ÷Žía“•Çö 6m%Üó„ßKL?à¯CÏiOoÛ÷û,¥¼›€¶òŸi~o&1½þès'=º´«aÐVB>ìèIrböxL%гûœ¸<¿ŸÖQ7Y)¸åûí“•œ¸ÜÐgü°Ÿ˜­¬#üÓ•›€¶pøÀŸ˜­<¸Â`Ж¾ÜJlPIÓôŽ®úEú¹£4ÿ1àxšp´îí:)Êœ&f+wïœú<¼é÷+¦Ä^f}–‰!:Auy™¸æ/ï÷ £¥Ìíƒ=N¸L0Yná[®Ú…æÇñ/żÐóüFhþb°ñ4áh1Üsw/’ö‰áõOÌoôíH—4K   G+á¾]X x·»¿­j骜yåøzà£Ø{‡à„Äž{îË·€)øÄì^L¬ø·"lÚr#ïËgêp]abô( <îþ/LV"½öØ>1YÎúç%6m9ÜC·¡w–³ëodûŽX„M@[øØÍàQ>1Z~nÿÜOŽV‚ïF&³•çvç¬#lÚJÀç=À'f˧pLLlÚJÀñOb¶œ {0`Ø´µ€oøÝÄôköܘ Á ‰+QßüÆIbºáÙíøß£OÝŽž©$f×»Ç +À& ýÑV®{ø¯IH\næSî¹p+¶Ädeœð¯3lÚr¸çîÚ×mR%fßÎJ÷âÌÇç_åÔUNH\N]Í]e†è_ÿºþ¹•öõž&­4ð±¶¶ò¯Š­<·ý`ÐVŽ_G$fwÂ~݃Õ\&˜¬„z­TFÀYlbôñÜ3ræ† +a+“À³îµrM¹Î — &Ë¡ÞÌéG2¶à÷‘™Žá Ë+¡Ïc24‘®ü®þäI€M@[2·êŠÇ?3Ün+‡ãFJàÌ0À& ­4ñm‚g’ÃMïgûQ“ ž°¼ú}¾QŠ,¬zGÁÓ„£•X¯;¼21|ß!g€M@[ìÉ—î~Z™I9åj;iÏ¥Є£ÅÖ½w9À§Y‰ñê©8ÿ$1ˆ',¯¯ßEàCOÞôøíchOX^~?Í•é‹?¯uâê/ëÏlñ„åå~ôÈ”˜­>»{LÑ ª+a_–€Þ21>/66tB ˆ',/w7cw ´ˆL]bpN4tÀä"^&˜¬Äùó–ä˜ZxS3qŒ©1bø§EEW_~ÿ´(D'¨®~ ëÒ»žß¤éûd÷Á@¢T—H¸ž‹^Vü@š˜žË®„ËQüs€ ºò›î+xã®ÙýAÿ¸ÞÒ:;ø¤INH\þ=·éVK§%Æò÷³å_ú7ü~C§˜˜ŠÀ ‰Ë°màó˜ÄðQž:ú'`6m¥¡ïöÄ®#!XxCsÄæ"¦#pBârC߇k¼-‘³µõƒÅ]ˆNP] {.±ÃÎ1Ó•ëYнŒw;«ù/ÈaÇ۴ůýXMîúÛú©k³#[Ñ ªËº)`‘”ÈêÊ–w<³ùoˆÀ ‰kaŸÑ3Älõ]rÏabt‚êó˜+4ýñ›Î½ü. E/¹»!ësÿ¯ïþ›¦oÞ|…êÕÅ)Þ:¬µ <›‡ŽÄìþö«¢†¼›€¶ÜŒÃÞ»KŒ׿ÍÌ>½àËò†ß>¤!-CpBââ§Ztñ#Ò:csá'$®4Å·ƒ× LbzžNçs˜ÀÙWˆNP]|ùœ(v0MLWVÿD D'¨.vSù$/2û•® þ¼]NH\iíù¦%h&&1Üðèí9¤œ¸ô =?JÌVŽ!ûçu6m%àû†ÓX½“fy¿ÔàPó_CŽ· hË!Ÿçë ‚í!%¦°ú¤e¿ÛYÍA y€M@[žJçÝïqìäáyÌúZ†ç±¼C?¿åÏ3iŸF Á ‰Ë†¥/—oo2_ºó5¡ãTøí‡f/Ÿz…êÕå·t¹N£f.‰áJ—þ`ÎW‚^ŽÀ>=1[þAŒE6m%àÕ:Ò+ºå–¬Ÿ¿O-ü ºœ¸¼œ[ÖÊ/údeñ~5˜ö‚:V8!q¥¥¯µk.ý+‹bcô]WÀe‚Ér¨·€(1¼û+ Ç œxšp´îao,&†+}Õƒ-Ñœ¸ô±²Ùò`¦²½IyÌTlÚJÀóÇÅÁû•‰ñ÷ß¹ÙÖ—g,[À¸Ÿ^íó ¼KL Ì]9ž&­„{ ØúHLW{.÷®MŒNP]éW¦Cݸ¼í©°z¯î:¼Ù‡šÿ‚ÜÒñ6m¥­ç]xàR"1ºÞ%¶¯€"lÚJ¼÷¿y˜˜®¾ŸîÏ ºø™9rºxMs¿–…>™*âiÂÑrW>æ"6hrbø,þ–þÊꛀ¶ÒÀóÕ\ÐÒçÄpÓ›íëÁóå´Èò›Äl% â.а h‹_NÝFk+l.‘ÐbµÓ6 çÙ?º¬Â¯9c6Î×мü7ôÿùóA/½‘7ïž¶©­4ß\£TWÂ>lˆ Va§­U»Wa6m9à}^T+Ù"wÒò´óÌåëÅ»þ¬eNH\œÑíý=q„ˆÓÕ¸ÇРºÒØ·J[wg‹ 7‰¿_bïÎGØ´µxëPîdñ)ççž‘éâšp´ë]‘mø(ÙÖ½á·+°ä%'$..[ô^ÒÅiÜÐpœ¸Ü‡Ï#ƒÈõÊ`Øö{°d‰á Ë+Á7|1Û¿t)ºi€n_º„èÕ•Àã—‰ÙÇ:B.p™`²êq»2P°lwbú4ýí°'/ö6Ü팖¿ †;À& -‡|êæç3sq$-ú1büü§à5KˆNP] üøÑ­ Ó{µï÷ùÿƒ¡4'$®„Ýð©Lÿ0:Ý>7Yk3íÃhˆNP]ü<]©Ìò+1zœåm‘‚oã¿ß++v28!q%äóŠ$&G ;qÁÓ„£•X—›‚€å­—½›·,íu)‰é“¼#â/© Á ‰Ë¿èÒ™7[í%/‰é†g·ã×£—OoB7èÓ Þ^[Ѐ·×Ap¥Á˜ °ì[ÿé7UD®E žç]¨2—W¨NP]ŽûV> Ì%f_¥.¸tž&­D{œà;®‰áã(슞ô6¿Ó¿hþr¸á4áh%ÜÓ­ÂTÊ‘þë~ðBoËÎhþr¸á4áhy.T¾-?l»<Ÿ(CÄV –·ÒWí¿ïÍoG.Eâ ËËÅ9Û>T‹'Æ«{£þZ÷ ž°¼ü½\öƒL¢%†+sQö/À& -÷½{¾M˜FKŒFy²Xðm{ÃowðÉÀ ‰+!_xÅKb¸ÜXÚíëÁWxEJz· Ý^Ic¦Í!-¬Ëç]7ŒèÐÚ÷/>^‡—A‹ÛÄìN«nq.Ë£t‚êJØÍIËÖäÿ…«ÏîMÿ‡ñ„å•Ðoù¿ÄtuÒåÌ]FéÕ•Àß®ú„Uv$¦ð÷û‹½íoö¡æ¿ w5x›€¶òÞœ§oÝíºpÓ‹Úz:=Œ',¯„Þpi™wizñj¥‘wiÆ––¦¿~.ÁÀÕ$¦×_Ù½“^Ùïóß›€¶ÒÞÍ›G­»ÓnzY[÷§ÃxÂòrè‡Þ:™lÝ£¾pÓ÷nS‡ñ„å•ÐO~’˜®Ö5úP!:Au%ðõåÙƒT9Qª=ûƒÔð»ç Ë+¡Ï‰h6/1|”çÎ4dŒM@[ŽøØSáÄxSƒqLäcxÂòZð—êDÞŸ/(º:öç Bt‚êJà ‡ï¬ ÆêÕ›ÖO8!qyí4.õËqLå oz]Sùž°¼Òæá;“éVVç–jNH\ y/5KLú¿ÉÛ²=—Üý›} å/Ƚ;Þ& -‡|êgp¥Ybô½±€*ä‚pBâJÈ#–Ùé]7õŠŽAˆNP] ¼u÷¶k«¸líWõ^ö¥TWÂnXû3EÏãøµ òAb&D'¨®~ ¨(LŒWWcÞzÈ0ž°¼ÚzuûA ôN×;GÇù%lÚrÀ‡Á~.²ý¤ÅÉ^Ì]|19þŠÄ ‰+aǧã³k¯§#‰— &+¡.ÉÜÞUb´2òï¹…à„Ä•W7‚ü¹•¡:ûs+6m%àyˆ@æ(³sJxÜ ¹•›€¶ðqøøZl­Yl¹¥f*8!ñjÐÛ´<äÊïù`{9ç!„+!_®É!êˆMbøíSê‰ý¬÷]Çõ1ë½Xd£TËlû ?¹MÌ>ZÌ’Ãe‚ÉrŸ­ÃDûäp¾Ý‚ ¢aBÁJ˜ó%Sü¾ø«õO|>&W+H…êÕåždÆO±³«Í¥}b— &+M|_®Áu 81ý€¿ç8÷2àôw;«ù/Èý Þ& -‡|ɳhMSb¸’{P¯:ŸåAW–fâ8ú#\ úG}nÁ¹|5âÖ›6m%àà¹lz‡óÉÈÌþ&LV✿‘ -bJ 7t„Žò«œ¸ôÛ ˜¨’½ÄôþÞYõeÈÞìCÍAnãx›€¶òu²VHÛkjà ­ÅQ W‚.«IïðmÑ+‚Ë“µ8/ûö¨{ÃûãÅùvw-oåx§3šÿ€8;ÁÓ„£•p8&1ÜðF:Ê€"pBârзq²t&Ž" "WßLGž&­ÄÚ:(8–õo'-¾Mf¬êlÚZÀ{øÊ81<Ï6×oY·kúœ¸ôÛ,µ€H 7´ÇÒ''$.}ïzü¾`búü÷äÈ-Íœ¸¼ ±vË*1ùø9¿ÖÕ4Ó¯8špôG ¿"’¿z9vÊWúΜ{áË>D·ÿ›þ§¿Þ~m„:Au¥N‹±Çu, nè·‹ðœ¸ÒãÞo™ÄŽ&fß¾Î÷Ñ\¦Ò\>ðùÀGyjWb~ÿ@tÓ·Èõž«}×OŽVb½[wÛ«ñ‚^MÇj<'$.}è†{Åø·_Ô]c|Ú·ïÃ}¼šcy5?ðþÀGqü Á ‰‹£çÐáW·éÝ–ú«kr¼L0YiÞ ¬Äðꃷ/ hÂÑr¸û€ÙUbxõÁÛg…4áh9Ü|ÔIotõ¡ÛÇJ8L(X óçyaXÑȉßnGýjæ2Ô¬\_³¾Ê£dˆNP]'‡<óAîQ'fË“MÿÞz„M@[nè嬲~11[™Ý»ë.#lÚrÀ'½PüÉD°ÐÇ/9`‹.#lÚJ¼wÛTÓ1,tý¹³Á›€¶ïÊöãƒþ»²„zÐ{Ãe‚ÉJ ïµÄØi÷|;.¨6Ǽ;À& ­Ä{žá[H‰áÝí½nñ„ååYá<óú+à¨Sÿ…¿–§»ï¶»ÑòøTÿhÐVZ{µŽÄ?/œ«õþya€M@[ xÎÑ`7Ó{í uolÆèÕåÎeéÐù‰ÄèúxäHªØ´å†¾ä¯ý@·Ã'yn¶_6m%âùÆàé–‹Þ6ppb´x¡™»t/LV~Äýj!˜ŠšÄ豓ßÈ®<øþ†ß>† &"pBâb5PƒÞw’..ð—œÕƒâ„Ä妸고K|öíMØìÈUB<¡ë9£-m£—Ú†¸ºÀ ‰Ëo{ƒ>H:ŸQñßZºÀŸ\™<øk.lþ{>±?¦õ׃Ï#üç$$®¼üËm‹–­IŒW?˜ñ ×Ö——ƒk¾ÙxŠ01ú–°ù¸ä¤ìöã~°åOˆ=oNH\éyíú$é⇘˜} °Ì'\&˜,7ñ­[ñÅ*‰é£<ÁxPg—øÖï¦1®ý@îI[zÄEêÅÕENH\ãôUÒÅÕÅç—3€[ow®o‹þƒœ¸¼ÀØòêú‹Wc>BwÌ)„9ôt®_òæá”×/Çйü·hÇŠct‚êò€”ïÂÎ[Ò;®¬w̸lÚò`´o—¿!W»…Ï“è¾Úá Ë+Áß±;!éîä:0ÿö ž&-ö,cwÛg†d¡“_q€&ÎhÂÑJ¬‡KÀq3¢Sïä1Â=!а h‹=ÉØå˘‘»ã‰Ù6ÁuïëÇèÕå–Þº.;1{XÄSô¾/¹3o•¢TgÐ üЉü&†& ÃêÕ•¹ÀÓ"éÝVß%F'F'¨.÷¿½±h?çPhK{éÅö²‹m='$®tf}õž·t}­Q9èSÎÅ_ ‡ýIèšpôÇ/y{숟’ ¼ÒãÂDéVî¶s/ãhÂÑZ°·Ê<×]ÈqÚêá.åˆÑ ªËÃÛ0϶w:mËë9Êo¿Ø¹ÄðååA®Ÿä§—..‡©à ÊËÁ°ÕFï_ö]ÍŒú—½!:Au%ð·ÉèôCb¶¥ÍÌr“” u‚x‚òJw`çùéùRã N>š æ ÊË­r\êcàƒÕoáÕwêÁò7†',/ÏÆåÚËÀ¤ª/z+s>ÿ¦à‰«Æ¿/Ä–W~Õýc-nÆÛ‡bÆáK̃ÕM€M@[îæ®ž§ò¯pŠ®vþNˆNPý£¥_¡òi£^><•.lÈýãÔ—º¬ÿgü¯—¿Ä£T—;©œtïÄa»ý Yb¸Ò¹7Û¯@›€¶Ò ”’ìzÄí§ÓÃëOn·¯ßzôþibvÎ@‚ðW$NH\y=÷|p<Ý®?+w`WÁ!:Auù-ËQzÃ[ÚKo’˜›«GÒ›íW»mîhk7¬5Ÿ*K 7lw¼°ùoˆ#vNH\nïëxûÚ&g—¸½ü•ü¢vŽï®t8!q¹©¯³ù\œùØzbø,öŽþóö6m¥•/æ£e“¤‹©‚žÜlóÇž+ãOÞ+óSÿ™¸ ºÜb¶®¾s÷`ê^ø<Ú­ßÕ¦î1S±÷ÖELóõ[i/ÃP¯ohì úõðãPOoxøýj2ã ï~ ‰+ƼwÒ5×KÛò¢¶_D£TW¾îÅÔ‰ñ†6Ó _RKoxxO¥önŒçÀWÚÌ~e×a¹˜Ätíê‰y¤ ºø©3oV5W«œ¶©Ÿi®W‰Ñ ª‹±©›¬c¶ãøDWšÌj-æi.·9mSØÍú+T'¨®4™Ý:t4Ló©ËM¦ÿ<[𺚠oÖ_¡:Au%ðËûÀ*̦·/j=âî¯1 Á ‰Ëïi_Yt<9IˆÀ•Ʋ^gXp5=‰ñ‡ü½P à¿-ü†g6ÿ ¹Áà„ĵ°×kãF׺P=uKÓ¾PÑ ªk_ðuæ‰éü½Ñ{ìßí_5ÿ¥µÃmÚrȇî~tðkæ_çúñ& ØU^„M@[†ÎºhH9RWšËP?øx†¦}}ZtS÷Ò¾> Ñ ª+_ÍvÇ*¯è¦‡o_å…èÕ•À[·Ý'®ýªŠ‚xÂòJèó§±åɉéc>¦ômX-ö8Üí¬æ¿ Mx›€¶ò^˜œ~Ï)ÃJªCpBârÐÇ1Oð ÇÎÓÕL~³þ Õ ª‹eƒ?¼5ÇÖ5—&¸¥wt'ñ„å•6OJ WîCy ‹À ‰WƒŽÍœò¨çáºÿ¾zoÖyر:û3] ¼u«¶½¯Ø¦Õ®¿Bu‚êZØíKƒ®9‘7Þï-ÐÛŒ#‘¢T—?uW‰(ꞎÄðqú«a]d¡Çñ>ÐüľOŽVÂm®ôo>vÚê;ê> £TWÂnÞÕw”*Ÿº©st+Gù„õ•èÏö½ˆöTdÑMd{*2D'¨®þªV%Þ³‡_Ttö ´ h+7Ÿ™¤NLœÄÛÔEšõW¨NP] ûf~«¥¢ð÷•^±ÇéÍÎjþ bØñ6m%ä{}À~nŸ>ïIE¦ÛcxÂòZð?’m¸ÜoÁåÏ…?ÉýFà„ĵ [SŽc4§nšƒ5ø¯`Ÿ°¾ýÙp[í9p·ïªÝ4kßU Ñ ª+7ŸM[¤[œºÏõÚVÿ‰ý ºöÑþ«vÍ ±ùÜǪN fij Î$lÚJȧêÙ®'»L…·L <»L1Ù·Û“bE7¼E«ÔbÄÉL€M@[ y~Žt7qbø(ŽþK•#lÚòŒ}™Í;M®ê⛦žê Ÿ°¾Òâç€{wÓM¿nƒÿ ö ë+Ñ·ÎdÌÉÔôN&í9`Ó°M盀¶p{nÆSáR|ÓÐä©p ò ëËñß Û}þmÿ¢›zËömÿ ºøaBoi%fÞØö­¸›€¶pÆӓÿâ›ÞTÏÆOX_‰>E‰¼m81[y™ü·$Ø´µ€×röâ ®¼ªöâ"pBâJÐ {Mþ ÿ¢›Æ¤ö ÿ ºøÕškß”ØWkf©}S"À& ­Üa~²ë\|ÓxäÙuò ë‹ñŸ».'ÅÄ=gÿaŒÓÖÒþã1:Auqçyî ™}÷~Ù©›:ÉæcÔ1:Au¥½ã·³s›Anxàe‚ÉJ¨ó:¬–…$fÇÛ®g Á ‰+ýÊhO„9vTOß49vT£|ÂúJ›¿%öA{5‰ÙJ×åÞcа h+ǧ¬³«}cs¢/LVBoC=z®¯oŽÿ.äÓ^þÆŠ÷Ç>å©»ËYx¹e£e‚ÉJ¨íןz6ðNßÔ :6ð¢|Âúrüû·: ­WiN«Ÿvõ mNªãe‚ÉJ¨o_£%F³•ŸÑа hkǧEÆ2BÓ¹4áh%ÜË~ëª0—&†ÿ¦Ê×$EѧžëcÖµ&¡TWâŽÏˆ&fW»Ãæ<.^&˜,‡zèêßëõg‹®Í…dCt‚êòjxû, dÕ–˜-¶ÿZ.LVÚøíƒ¸#Û‰ñò‰ÇŸÞËs2›ÿ†tÜ<'$®…ýêZæ/¿h99á¸Ôâ¤ç£±|k-íö+Ð& -Ç{,÷þMÒ+ÔüQ¸ÄèIêªÜ_²ÃË“•H¿]× Y?$f‹ý Õ— &k¡Þ­}·ã˜çÉzÀQì¥Cž!8!q9ìSgOÒôbØ¥Ã.'oxøI|xé¨KNH\ û ¾Gç<¿}{3ÃG_8jë©öíM¸L0Y‰óX­\y°ê)zÞÿM0@W=!:AuyÕsûÈ&”Þå£føVZú {…§ G+|6/{<+NßÐÎbW(«ˆÑ ©+‘_õµìÙsµok¹Þ)¶ïkâiÂÑr¬çÎ>AtõŸ¾¡¥,r;”JúctBêJä}Öþ¨íÛlE®·—ö}6W**Ñ ©+M¼•ÞázÏØ¾é— &+q¾•ÀÀŽ­&¦zÅ]êÅIb€M@[ùÒÛCžâÚâ×_̹“_{q Ñ ©+‘¿ ÁΔ%¦×ÍÜKFœ+Ø´•ß¿ßÝY^nÍ¿epü[Ëxšp´ëžþô”{ßðrÊ{´r±gˆNH]‰üš»-ä%ɉáJic;þŠÄ ‰+Aßí ÑöÃoE7ôŠ£Ô+Š3Å›€¶òµWÁ'&Â.öƒÊ}¸L0Y ôµáômÂï/Ÿøüº,¬~OŽÖB=£‹l³§I.N-ú<ÝõÌ–¿!flCt‚êa÷„fy1õ±Ž#^'¨®´ÈiWçÌþŠž"Ï=|+"÷—ôàiÂÑJ¬×™OQ€©Õ¢«—ñûS«!:Au9µºÞn¤€Õ$¦ð÷ y±çång5ÿ¹¥ãmÚr[ß*ŸCqÔï¦w[žé?)<° hk¯ÝÃÿ`YXp¥òóÁ²0'$.}ïì|?1Yž†>X¥Ø´•pÃgýé¾WÆÁÖ*xšp´ì^Æ›nè È8!q%èùK·9Ÿò5Íôàš‚çlÍ·”J¡ç7:£ùÈmNŽV½Z§)öšéÄpCK±ã¯Hœ¸ôíã pTôN\.?XØ´ÅÐÒ ðZÞ˶ «é74DG­mN@\|…–®v[ÿƒåÕR½ŸèÁú*'$®¿NI ópþõUM8Z ÷fíXj„Ó o£¾9F'¤.ǽǯ³å‹UaÐV>ô:î_ÖžvÎ|vßòÙîum„M@[ ø_&†Æ ö•mNH\ zþÊ2“˜­ä>Ýø›€¶pëÚ¶¡";1Ýð9ªÉctBêJÜç¿Sž˜>‹Kç›ü!8!q%êù„öâ¯ÄtåÙÛñÛ£¯øúÄtCØíøõèµoO<ÈŸ-ÕëÐäÏBpBâJS_¯Ì݉Ñãµ ûh-Ÿ·7<³ÇŸ—þ8!q±€¨Eß%]žÔå}a(NH\iŠÖBçN¦åƸÛúÏÑ’œ€øGÌÿž|èñc!q¹¹ yï y(61[ ºû0o„M@[ øhÍ{’óE7 sžì|ˆNH]‹;úR‰ÄhC‡¾tR‡.Ί"pBâJÈ'cº¸åHObº¡KoÐ_¡:!ue8ZæÊˆá/~†àJ“ Ø‹J ¿;n OŽÖ½Gó!êÄlÃ(Ú|ø;Â& ­|³æ¹=;hE7¼=ž´º÷Å6ú/ÒèÏÏOÿÑ·iä¬pzƒÇQš ½0úÍ@ü)ñ4áhyÍ?æ+/Ç©ûë®>JrÊa%w‡S9 2uÿºŸÿè_¿ÉÛ !:Au¹Ý½²Õš˜}tZÇgàq€M@[ xíã>Ov,GýK9Oö+ñ4áh%ÜÆ4…ýŒôN×Çûö{;hÂÑZ°+øƒáb+%[þᛀ¶pë¦gcx­{žáºwã¾ùÒ®‹ØÍJ ¯ö´Ž]8) \oßôT›ˆ£&0À& ­ÄŸKÌ®5GF.LVB]>Þ'¦O?#reW¢>ø•CbºáÙíøõè·Ï‘î¢JÌ'9,_Vޝ>˓ٜ¸<™]×>O Ÿf¡w9ée»ÓÍ@ÌIâiÂÑÊÛ‰.•Lïr}дӯ8šp´kc‘û]oÛŽÚ°Ùžù…Ë“µPl$¦«wMûw7Bt‚êòÁíußáã1!q¹ÍlÕ[JÎcá¥è˱pqvXðNiOîX‹á Ë+¡mùOyê6žúÔœ€¸ò«ó… $&çgû/ý ²OŽVb]½pâÁ-‚WßÍvþË–WB¿ÙÒYžµb×ßOOZN@\ùÞõà•Pbô,ÌŸ,ßà2Ád-Òǰ ü>Nbô =u³ü “ &+‘î­×ÌÎâôGÌaÜ4»²ó¯Xž°¼ú ]]—Þéz/è© ° gkáÎ¥WÀŸß§š®,àšíW M@[‰øŒ¿Ë&1\yòfûöà“µ©˜¯˜M 7„Ül_¾›–›®ŠÀbW_NWI`N@\iä¥Ï‚&µÓ»¿y0`ÐCn½¡Ù~çfºËõ³ý¦ÐÜÜU –£ÜE$ÞÒ»~¿ ˜5ŒÑ ª+ŸL+{OÍÛi×»BGÑ[N@\Lî¯]u2Ñ<&ÐVÚʽ^–ÄJŒW›º?Ä–—ƒßwvÁŸ˜|ÿYQiŠ›€¶ü’ž_•ŽÏ´•vr¯<„å)ãMãQ{–%ˆ',¯?g„¡P$†+ÍÆ}sF„M@[‰ø>[#>IºÜØ÷ZI_³}{pë.|{剫€¿Ž2ˆ',/·™áÖEBŽ%& îß½MÜ9¦šp´ëñ*þ]뛘½ÈëþsÝ™=gûóËé¯@›€¶9ÁDà„Ä•¯ÆÔÃ"÷rc_ÍKÔMnb™Z OP^é ìü.?½¸‹oÏã7è„ÔåFY.Æ7~íùßókÚJ²Y…êÕ•ÀÆE°ãìþ‰ÍÖÉMRÜw‹á Ê˽A/ï\ â&Ð2Z—©-x®¿Bu‚êrC_ñ»6‰ÙÊÆŠ·)À& ­¼¯Ï"ÏÅ|ûöGÑM©‚öí ºøÑ–ôtÝDSpË\`’§b®9†'(/Oóxy»|ä¯ëí‡Íwh­æËë¿#û¤ûãÉǯ-²àÛžÙò'ä—Ïç²TðJH]ésžÙ±åTtK'æØs Ñ ªËßF{ÿÞžà/z©XØÀ þ ºø©Þâýù¼¢«?«?¡¢TW¿ð?ö~¾Næ;³q½ôànŠ›€¶ð­þ{ús¨Eϯéøý5õçPCt‚êràËíùÏV©âúýüTå5m_¿‡èիω0ØÅ <ò‡üu)|âÛzÇ ›ÿ†Øâ#p÷G¸ö¹ ,mRìüªv#4m`ÐV>\8îÊ„ÄøCþÞZ ¾mw¼°ùoÈAÀ ‰+aŸê½×93mÏVÝ4ïmÏV…èÕ•À¯v¾}±TôþÞhн½?ú¡æ¿ .•lÚršjÏ»‘cþÂÃ×¶>•)Òž—¿Ó9Eúí»Æåï.¹o3!:Auysæý³ ¼Cbº¥­;r&!:Au±غn3OïÚï#9ùú$iïÅI’4¯Á ‰+aŸ{k©k'¦ ?®óHŒ—÷:ŸÜE£R׿[ßËÏKã ß _¿~Ü…˳zYÁ}zž-F'¨®´šuÃÏôÓ듎}&Ò5Â& -‡üüZ€áE•+Ã>®€HŒ7¼¨ ú«]oè©kŸÑÓëÄì^,ñ/ "lÚJÀC® IŒ7´–ýzø¡Ggò³;%çë߃ˆÑ ª+mf°ï+5§ÃOÝ4š6§Ãct‚êJàGsÚ¤}¡zê†u”úi™aÐVB>U†;¥ìik¯©¿V6F'¨.¦drÚ~ÿKb¼aXjÐ_ízÃôŽºÒÞí×M6Ü-“oxøýïá‡ÛG¾P÷Ù'†÷Ý_½Ûÿ)ô>ÝéŒæ? Îð4áh¹­ ½9´È¿¦˜(¼¡­4è¯v½afJH½x亚G½¾Úpälñ'¶ðcüzPbô¯Znàýh*ßç7<³ÇŸ—¥8!qq¿ªE_$]\8½9Ûp§Lb¼áíw\ˆ³ øÀÐVޢŜUk¸Ü$1ÞuÇÍ, zÔ‘ºxcV;úJÌ6ô»í«Æ›€¶ðÅ6^4$ç¤-¯è*½¢JÀñ8!qe¼°ë›¤\wý !7%Æ^ǽIÛœ`CCH]~“ÆÛU ÄzbvÉcvÐ ›€¶póm~-w%Æ×[ºçÂ$»î¹¢kßMcFû—NÚòŠîb ®¤CtBêò¨aÖ‡®ŸÏÔ¯ŸÔ|·dËU‰ñ†w©A¿~ÖüY[lh©+ïÒPýòƒ­Á¢kû_¶Ct‚êJà ßžôo˜]Ýxôo˜Œs½ÀÉ¿aÑå “qµæb[®JJŒ7t5 ú«Y÷\ Ñ•¿ÚRƒí_Ð:iKÙ‹=°˜ÐÑ ©+ö]Ägçë¥ÛOjͶܬ•ox—ׂmㆠqùMšú½;˜]_29v5lÚZÀï…¥O,$nûŽÓŒ¾4•‘ããËGÎBpBâJÌk¼å®›ÄxCßÒ ¿šuÏMü] |È5=‰ñ†À;.ڦŘs$ð‹mèbÚø6mñ  mZ­©ž†½$BêrKŸÍÚ¼S%æ’Š®­ðï ò ëkч'~³»¿. –®†Ë“å—t­ ;Ç÷ ºÒLò·ÿ §æÕáÂÞ?'$®=èz%Gb¸òèíø+'$®½šøz‹-úñìÂUÉr±!:Au-ðÖYFÃ9°ÄtÓ8Úà¿‚}ÂúJôoõ%° ¯Óø{O6•5êônÿªù/È} Þ& ­…|¯½O¾©rò‡üýÙ—òìoxaóßP‚ŽÇ ‰+aßveÓó{Ô}¿É¿ç¢TÿØó¹=¼5Ù#/dįCAt¹Ñ,æyÏ뢛:wÏë Ÿ°¾}xÊ:1»¶às$Úá2Ád%ÔÃ`”qPKÍ oèÚ±k+Í#pBârn`­uf µ1„Ô•&SÁÇË º:=1|Ýç{„M@[‰x¹˜y™Sbx}yí¹†*'$®Ý|æÁsóÄRÿžÇû„õµè÷f³«Ãiû†\&˜¬…ú¶Ï޹–61{šÅ’Œ‚ÝÊñþÀ•ToNH\ÿk_óò¬R—ÛËÚW‹(má_[°?Ú ò ëkñ¸"1Ýôë6ø¯`Ÿ°¾ýÛÇawõ%¦ð÷™ÞX:ín—{Ž¿ ö96m¹³\k—Üx* ©+ÍeZ+sÔ©W&I6R#pBâJÐç ¾™®<úƒÔœ¸ô²w‚¼c;1½Wºuÿýà1:AuùlÅz_à¶"óMóÏVjOX_iøæ §:ÓM¿nƒÿ ö ë+Ñßó|l’æcbr¬è†yÍ.ÍkÄÜX€M@[™íÖô²<Á¿‡ Ñåæ²•êSdÎ 1|ýA²#À& ­D¼¯v}´™Z|S÷îÙL ò ë+ñ7Ÿ[Xä·Uœ Ýôë6ø¯`Ÿ°¾ÜWnÖ/6x>Ö Ñ•–S+v}°ë´ÕÒû6lÚJÀW{fÕ³éT|SWãÙt ò ëkñ·fV=×îÝôëz.Þ ò ëËÑß»›/oq9¦yÊ;\úGŽVb=Øsž]„â›ÞTÏ.BOX_‰¿ùôŽçªÉ¢›~]Ïe“A>a}-úö)wçØÁ,~.ªÛ`;¤¯`Ÿ°¾ÿ·/¿ëÚlмû[àã¶Dð4áh%Ü› ‰áâƒ?Ø ÁÓ„£•p¯ö„‡'#\|SïåÉù„õ•øßŽ5À6sÓï/p#*D'¨.oDíÖ#®Kh‹nz­<×Ðù„õ•f¿ÛÇžmÀâ›&žmÀ Ÿ°¾ÿ]]ž˜­µuñ!:Au1ì{×Ï¦ÂØæ“B§\]·   G+±íùIÇfÂ雺0ÇfB”OX_‹ÀíÔ‰é–_×sûu”OX_‰þdÏ 962Oß4@962£|ÂúJü—¾¯“^[:¶£hÂÑZ¸Méøöó7§\¢šàЄ£•Xoöt¼cëéôM]—cë)Ê'¬¯Äß|`F^ˆ៺i`jð_Á>a}-úö„cÛûôM“cÛ;Ê'¬/Ç¿í KÇvÔé›~_ÇvT”OX_‰¿ùJÃaÀÄtÓÛÛà¿‚}ÂúJôë_mx²~ú¦··Áû„õµøçuÇ<|Ϋڿ.œ=ëÿ'‘ñ2Ád%Ò÷nìkGãßÙoU¾ß˪ݛ"4áhq;dïw{¶Ì±!rú¦ŽË±!åÖך»5[æøLÆ©›†%LJ2¢|Âúrô‡Î¾ds삟¾iXrì‚Gù„õ«ñ‡~[›_>0âÿ(x„̓þÄÖ"¾â·ÑÓÕk,›õëÙûÉÚZ)2bWYpCÔÍöÕZê§gü{—]i1÷»$P×{&¦ð÷3€ÙúîÍ>ÔüäÞoÐVBžÛ9ðòàôNßËŽPwЄ£µ`›ÓÚ®ËÁ¾#çÚ± ò ë+ñ7“îuÓM¿nƒÿ ö ëkÑ·§ =ÕÃíúÃÚ ÒS-äÖ¯Æß2§Y¥y‡ÒøwãœÆlóÀ#çK<èOl%â‹ñ«ÉÇâó»ÞË+¾¬ÝŽ_^¯R{´8Ø÷¸\{€A>a}¹éŒÖ¯‚y>wê¦_·Áû„õ•è7\Yè©?(¾©«÷Ôù„õ«ñ·tœ»Ø·‰…¢:N;ÎCyØŸØJÌ!ºNŒŠÜàmÞb_^ÿˆý£ cÃgìmù„õ•†3/ؽ¿Ääû/ Û± ° h+áÎ5ŽÐ¯)'†â‹êÿ t„M@[‹¸}ëÆST|Óhê© ò ëWãošzqø¨Eß06ÙqzèÇý ®}5î€ Ý >º¸W_tCÐíøõè[^v/vNÌVòÃî ©#lÚr[™ºñZ[0Ù÷Î]µA>a}%þ Wæy*kŠoêà=•5A>a}ñR»Ó‡.(ùÃ?Á•–3õÆ®Ò|çjb¶¡Ëi¾+6Â& ] 8rë’\9æßq °yÀŸØZÀ«}ïƒ*”évÆoü]‚#ôW¨NP] |þb³Üoù/>mmÂá¿Z8F'¨®…ݾqãÙåžì»¸®]î Ÿ°¾ûœ®â[æ2® Ÿ°¾2[ñ©fþðOp¥åì×Ô@øôìïxxT¿å™Çï?ø’ÿþõŸUd‰éò÷[‹=ôýÝ.ìñ'äoЖC>wÜñ÷Äpeª×Ž¿"qBâJÐíßËsmnÏöÍ[׿vOX_‹ÿjí=·}žþA}©Š>ôï»MgÉÅÑ4Åñ)D'¤®DÞ~‹®«¨¦ø¦±µÁû„õå¹Añ¡©~þðOp¥åÌ]æü¥;ö_[äã©ÇB¿âhÂÑZ¬gã¤`G?1)6~ûì1þŠÄ ‰kA‡oÇ'fß»]XA€M@Ûðo]ÊPÞ ö+Oúx;§ bóx#mï'¶oû¤KÚÄÛH o˜·Œò¬H÷pâZÔíÙOmXñM3OmXOX_™q­¶Í«–}~þðOp¥ålz3>1[ÙððØ´å€/ùT,²<,1[K9<(l Ñ ª+aFóÀ$÷ò-žÅ7ôï“ÖÒL¶»]Ôã/ÈáÆÛ´åoCµJóÁ†LÑÕ¬€C&D'¨®ýɦ‹íE+Ä©ø†þv—{sñU Ñ ©+?*>‘œ˜]íwÛÓßp™`²j–úþx9Kw|ԡعîð{ŸØŒ¿"qBâò§6ó-гT‰!n o†mÍú+T'¨®4õc¤@^:ÞieYî¿+OŽV‚m¿CÀs%`æëÃÏÐɃ›Ü‘àĵ¨×'[þµíö ôñw²ÝX Ñ ªËß»žIO ‡ÿ;xšp´nóÕŽ‹4Nˆ»áÀ]³þ Õ ª+aŸìÙ3ÏÕnÅ7t޽ÜórýªRW">O ¯¾©Ž´?ž&­„Û|W\ûÝï{½øåÁíï!:Au%ìÛÕ­ƒŽ«$fO“¸Ò-ú0 w½ÔIå¿!÷-:Aõ°{B3Šü$†fÇã„Ä•ö¸Û3€ž›âŠo3&yDR R"¿üëºßß»w™¸}ôbÃו@I¨ 3Ç÷ï…ULNH\‹¹5-Õúù 7vþË”W"ÿH5¢J=19oŒúGŽÖb]-aòîÔ]zî·~ n§.J'¨®~¶Ž¥í7}ýñ†áH®{®ù  ˆ+Q_ªŸõî6\ºZèÜmˆÒ ª+7^~ÖþM– 7ýª­_e ã Ê+‘ßjõØÎžËVò0Ξ›€¶ðkâ:‡tÙåB;èV‰érSñè¯Pºü›ö9ÕÛ~ùÖåF=¥”‘ë¯Pºù€ ‚ôŽ›Æ¼Æ½ œ¸t[·ýs^nøI[øW,OP^‰|®mB–|&f+3g©jŒM@[ ødQå+„„›•.Ý0*5è¯PºwûVí—+]¾aTÚä1O\‹…è„ԕȯ“yHmÜÏ»tÓÈÔ¸Ÿ¥T×o½rªÇ¥ïÅn—ìü+–'(¯D>/ÄŒ²ó¬Í%¹ÙaGЯ8šp´kk-¼¼&Üué†A©A…ê„Ô帽yn7× ¡ G+±ž­ ñY±åAo¶&•ôW¨NH]‰ûbOˆOòtC\F¿þ»Ž½<%—‘!:!u%òÕ/À=ÙJ6ó˜äØI Ñ ©kq‡ïG&f‹#†.LVB½W¾v9‡½òC>Úå Ñ ©kq·ç¿Ú«cŠÞ炪¯õšªcBt‚êràÇκ != ··]ºáujÐ_¡:!u-î³Ú‡‡fòOj?¥xÑǤw ö+Ð& ­ÄÛþõ¸ö ó.ß0ó’»GẼ(ºùѺéãÚÓ/¼aäpíéÇð啨ßΉ‚öƳ•Y©O?À& ­|Æï‹'¦æ`ž=ýºw{F³½X«è¦9X{µVˆNP] ¼ù;X 7!&¦^§æ[£tBêZÜ7ÓüqçJòˆ:o¶y˜Ý~Ú´•xoÖý$W EáMóG E OP^‰ý¾ß$Ͼ~Ñ “g_?D'¤.ÇP’$fìIöR­›€¶ðÞº¥ÔpUdbºá5j¾æ2J'¤®Åý¨¬Æ^‘˜.o‡»ï» ‰+Q/Ÿ©?XýûŽß4¿ÿ<ìõ¿ã‡'ŽÓPYø¶Û¯@›€¶ðÉÚÌí7€$¦‹¿}œls;G¾´Ø¿l™Kγ™ßЉùÆVŠ«JQÅVðýH@þü´Ê]~ÅW9oµ•nr½ë™-Cnï:Auy¾ÑÀo"/ÎÝç\*ƒÕ ª+-_C”˜}L9¾]‹é¯|‚Ë<Ü~Y õ‚¯JL¯Îï<5O6ál%â³uKÜSvStÃïé)» Ñ ©+q_Œ3;W-ëí£ÒúÔÈUÊ¢RWâ¾wƹÐa· Šn˜5è¯Pz5îØÝ+÷IN=Øx‹ÀyÔáZÔwüMbºáÙ{zóv[|ÝÓó~ÇòÂÇåoÆÈ6ÇKS÷7ú@ó%8M8Zi)åe‰éÕLƒý ´ gË_zëþ£§Fky»]Sû==5Z!:!u-îÖýGWnáMóGn OP^‰ýPÙe{P©Ul¹Õ<¨Ô ° hWn˜îÊùéAÜè©þœ«ó°?Ò«qÇî=~4õúÄ˱mjÇí³ºÆþW¢>š+†ì›l‰é†gwìÈ.=‰éÕyŒ§)À&œ­4–[æ öuâÄôþ^“\ì©»ÛYÍAð6m%ä‹qÙU~Tôú+ä*? Ñ ©kq·«rÈÞ4itTÈÆð啨¯Ö}ä†W$¦Þ(ÏG7BtBêrÁͲnð9!q¥Él“6ê=¸¤«ÈÇsúGŽÖb}å01ß<ü£×κ™é©š*zujä©™ ° gË?æÚ73]5;E7ŒÑžšº÷Ѻ©Öð)‰Ätïêù FˆNH]ãŠ]‘òG„+M&bï>1½ÚÉxªlÂÙJÄWã~ƒkç»è†¦A…ê„Ô•¸oÖl×Ó ¿ªç£!:!u9î[ÄUbzõMõì®Ø„³•ˆãwI³çþr éÁÞ\&˜¬…ÚšIóìëÝÐ!zöuBtBêJÜGë —Ê,]\Ó½þ«ºnŒÑ ©+qÏ—þ?"“xä'pbxÂòò'p¶[ý1¤”<19ï5|i3êßñ4áh¥¡/Ƥ‘k‹¤èµÑßµA`ÎV"¾Z“Fž}Ñ ¿§'A¢RWâný|ËUÔ‰é†á¨A…ê„Ôµ¸O–wÉuò»ØGÎhÐJ=G¿#pârÈ÷²pàû—ÃÿñÎBÿªRÉKÁ§þŽg6ÿ 1'—Ï36胤‹é¨=WIBqBâJSŒØfHL¯ŽÓž ’›p¶ñÑšwõlŽÝð{z6GBtBêJÜ'õbë¿Ýs’´ØõÑÂs”4' ®„|ÞmãÜ.sâʥЖ^q”zEqfWÆ9»>IºX”ºß.Åûýkb¡/?i~ößþèýðï§ýüO´É¢ð÷RÃbOóÝÎjþ â=À& -oéî¹ ú{WÞþåèZú+ßýÑXŠ>”Àd½ï~S"ãôó´Æràƒ¸Ýn¿mÚJÄ#¶EÓ«“¢ûhÎV"¾õ·Q+õ|^°èü=%RÒ¸Óòfjþ òToÐÖBnÝêòìŸÝð yöÏCtBêbÜÚsoš?˯‘xø´ë³Ðü‰WB>\I¨¯ƒÅƒ;N¼Sv‰Ü’Ä–×BoÝwql¨ŸzuHrl§GØ„³µˆ_B‚Ô]$&ƒÑ—WÔ_+‚— &+góœe‘æ,Òzꆱ•Æ~iøŒ° hk!7î)zÊDN½ÞWyÊDbtBêJÜçÉ4gqœ¡=íúÈï8D‚WBn¾}¼ìV”C´–/¸:ê·ó¯Xž°¼úÏŠn`QÔÉß_U`QTOX^,Šúñ­G'q:*¥^NÜ4Ûµó¯Xž°¼Öîª^Ó«s^G½N„M8[‰ø¶™§ÍŸpõjïèØ«Ž° g+ßíۻثKv'_ïçNìx¥j¯œ€¸õ¡·eÚgëO»Þ7:ׇàÄ•=ºL-1[ëýv1:Au%ìc} ö ,cx[ô貌ž°¼ü€ÍÈÄôZ'æÚF ° g+Ÿ¬©^Ï—‰NÞ0(õâˆÇñW$N@\‰úbÊ:z}ŸvuPòœúÁ ˆ+!_×j¿þ`ëºðjÏø`ë:†',¯ ØûMïúñËÎèm뛀¶¼a=Ü×`°MßÄxÓLÀÎ_O±¥”˜^P=›a6álù;k¶Ôóœ“7 §ƒ8V‹½cN@\<ÿõƒO¯ay¥ÑäƒÔÀ¯Ÿ%FÏÂûïÿd^&˜¬Dú¾êU¦FÊúB~7[rÚsŽ?' ®„|4OÕY7͸ûÔ!:Au-ðõBÊûÔã[’Aïíüõô³5AíùúÆÉ†£Qëäf€WÒ¹¾‚yP€á•&¿šòëÃ$w’r‹YmYêü‰WB~ŸLÃvãM-ƱoÖ—ƒ? Ç‚ü¦Ub¶\JéÿW„M@[ ¸-ã¸È¯©8 »þš6à¯Hœ€¸òê4æÁ^ѵ7ôÁ^ˆNP] ülŸà9¶ð¦Û—‡uBoáÅð„å•ào¶…ªç¬F±ë¯«ç°FN@\ùlÈò<ØÚ(|n13|k#†',¯?÷eã*¦ñÇ­¼Nù·ýýgYíýðÛþË‹µ1EWjåÛñW$NH\‰z=ñ`scÍ]¤]…êÕµÀÛªž"öb×;IO{N@\ ùjía6ñUËŠnxOíøõ膴ɃjáM}»#‰Ã–WÚͺ›¥çêï–¿Žà#ÉYøù=9SJ‡?2ÊCSOP^¼¥³…Ÿå§‹pæm€¿²„Ä•6¹Õ§ªRûóícµÑÏq-†',/çÈçm h–嵦cË`yZ»>~{NZDàÄ•ïŽùÈsbô8‰åÄçå ?Øü'䆀W†»¾Jº8p,ù+ Pœ¸Ü—· ö;ãM]¯c·&†',¯¸&ЮGb¶òIÿnM€M@[ x¾FÚpsw®l1|‰%1|’gxÍö+Ð& ­D¼Ô´TKŽïGœ¸ef´É/9è!Y7ÕZžœ ¼Òâó­ìÈ똳 }Lû5Ò6m¥oܬ9Ró̈€¶ÒRvcþu‘ûF¹©ìÖã2É/‘ÜZBx‚òrä7ü&Ibv÷W¹ÛÚË“µP[Ó9ö[]à ýŠã>Úœ€¸óɘ_ð\H[pË«)—¼LrÔCx‚òJä—Õø³¶'/‹­ÜãO^Ø´•€ç[œ_ÁNÌVJšíW M@[ ¸qéßpŸkbxýõñÜDWb¾Ñž«h né¹Ã•£Â”—#¿÷×ÑØNZbú*½¬w;«ù/ˆL€M@[ ¹u©ØžZ¬^°æÏ,âiÂÑZ°ÍùY Üeµ^Y »Í*À& ­„{4æ†noM 7 Avü‰×b~Ýiõõ$Ù“k8 ~¼?¿ {gˆNP]¾ŒsŸmÙ-×…¿· ûr}Þ$·öž ¼Òâ×Ê¥*2ÐÅ6ŒFí蛀¶ð͘ãj¸‹31ÜÐ9ÚñW$N@\ŒùÐu¶—çvÈ·¼ r¡è$E=ˆ'(¯D~°æ¸Ú3º'nxOÛ3º!8q%æ£5ë2ŠO>‰1­¹ ;þŠÄ ˆ+1ŸmY—a’{9æ³5o±vr G=„'(¯DŸN̾–¨:^&˜¬„zÝô7ÈŸ??me—Õ?° h+¯ÄûAú¼Øõׯ‘=° gkñ¶r÷R‡`'71¼:pì@ãi‚ÑJ´ór×0…i¿ŒýÄM“;ÿŠå Ë+¡Ÿà»çéÝ6LÛþ6ál-ÞÖí¢I¦Å@±M“³~‹øˆ× ª+aÏÄÁwß'ÆË¿ªG…ê„ÔµÀ÷éWŒŸ¸e œýwbx‚òZäá ‰ÙÇÛ:@ë.à2Ád%Ô›µs‘ç¢ßHïºáýlÀÙ£CË.؃×&Œžb¸L(Yi$öz{¥Hýã E"pBârÐÇaäl¨¦ŽšÄy€x]qïºÊÏ>Ë­=„çÆ+‘7«¯å–ëÄxC“oÐùÃC ø£WGTG!ž&­4•z.àAÑÎX_R?¨Ù Ñ ªk¿ö»j_u+… Köï_u“z¹‰~¤r€‚¯û?ÙãoÈM='$®…= °&1Ý4wl/Û™úú÷¶ýu;]ü”—¾R濆ö”=û B¿âhÂÑJ¬GëcËuî‰ñ†ñ¿A5랣At%ð“5îríøÇuîé]7„½g-c`^¾8Š/à2¡d­‘ÔS/ªŒ&CþâA•Q OX^ þo² ];’˜nCÍúõìùhŠiÊ8‰SFù--'_ª¯­'^ò‹€¿º0Löy‘ù7%$®´vp Cz‡‡ã¡±ep™`²gë^cË7"ã #ƒþj×;{“ºø¹_ð‰éeúëÓ?(fÑ ªk·”~Ç"q!]xCÞ‹=º¸ŽŽÀ ‰+a?V/ã$ö3¿¯ù11Í…z¿ÿ˜oè=_{°ë yjBêrà×Û-§Z·Þ~—l‘ëdûm²xšp´këù#¥ˆö¢wÊï£CðA>a}%ú³u¡ÚòńĸúëúÜCUoÏRÐþˆú–åã󽜟ÎÌ]ž–NËßäô_¿ýû ”˜¦ Ñ ª+ r½j2 9¶Ää¼çÛAƒxšp´kµ óÁe˜E®í·aâiÂÑZ¬­Çkñ&¦›†‰ÿìÖ—£¿uÖIË· ã Ã\ƒþ2ëí{š´•¨ç® y'vz·û[ƒÁ]æ`ÐV~»ÍCëзºÞ7:® ° g+á6×{.•(º©Oô\+äÖW¢oÿ›œÚý¸û=1ÞЧ7è¯f½¥Øƒºøe4öë“Ø‡‰+Æ‚:H;þŠÄ ‰+AÏWµç~ìkŽ÷Á½O}Ü…‘ã´·éng´ü¹wÇÛ´•ßîi׎}tâ¨$&¶ÛíøÚ¨ä¹…,À&œ­…ÛšôÜWStÓhÔà¿‚}Âúrô÷ÞœTF$q;³ð†Ñ´A5ë-õ0„Ô•ÀÕ`2àûÛ—²¾æëeÀƒ|ÂúZüMI0ÏES…®÷–vûhÎÖÂpENbºåer]ÁäÖW¢¿˜ó`JO)înÞÐË7è¯f½¥ ‰ºøÛ­-Àjb¾©—ô$€ƒ|ÂúZüM™1Ï5B…®÷–vûhÎVÂm.òm8m’˜nê%üW°OX_ŒþØõøvb¸|tãAæ='$®ÝœŽl¸-61Þ0´:®ºµë-¥`„Ô•ÀOiìôΛ&G>ˆ'(¯ÅÞ–"k¿'æ¤ëÃSûM16ál-ÜÖ9jÃÉœÄtÓ°Ôà¿‚}ÂúJô— ¾{nœÚ÷=BpBâJÐÍŸHj¹|51Þ0¬:nŽmÐåÅüGù#!u%ð»=/éHÈŸ¾ihr$ä£|ÂúZüïg Æ/{[EoÿFÈiË߸ý±™XðmæøzàãÇ^â+'$žcþ¿¯1·NTŽ¢%¦›Æ§ÿìÖïÖú™TÑR—ßÖ~2ç÷<‰íÓ·ô6žÄv”OX_‰¿õ çέS7ýº þ+Ø'¬¯D‰ØLï|9ß?ÃÄ”Wb¿Î·yÂ×¶ï¿õìÔø{­W±·ångµü1îx›€¶2PYkù[J ©ËÍ%$³ÞtS'ïÈËÇè„Ô•¸› íÍgÕ³µ_µ]…êÕ•°l($†wBöóÉFž&­…Û¾(vlsŸ¾i0ulsGù„õ•øçëM“Aš ˆ)›¢ÕUTÅtM€M@[ž ÖC -•„Ô•æ2õ·æˆºo*1þ¿Ç½àÛÛµ$…ÍCŽ{NH\ ûlN­º6rŠošËx6r‚|ÂúZü+3lÿ´§mšÏ˜õW¨NP] {©°CîB%†Wg5vúGŽÖÂm/©óF¼_;?ŸåÖW&Öó,-ۄԕ¶³Ïæ‰Aûek'o^wqx•ûÈœ¸ö±ëÍÓ÷æ 4O½> Þ;i,îØ´µÛ7n<›~Å7Íe<›~A>a}%þæÃUÊò©£ßÛó þ+Ø'¬¯DßœôtÕxdÞ4ÂzJa}%þ«½׳Í07¤Ñ=Û A>a}-þÖSy¥,~—åÔM]fƒÿ ö ë+ѷߺèÚßœ7{&ijÁäÖWâŸoT€n7$†×.ÏFINH\ú2Ø+þ<éã¥!=êIù„õ•ø›49>Ûrê¦.Óñá–(Ÿ°¾ý ¿Ó–Þñ\ Ô}¯÷oFà„Ä• ÏµOÃ<ÈØ/o§¥´ÞÒ‘±À ‰kA?ÖËóñ›B>sŸý« ·Pøþ~ËãÁæ?Ñ+1Ð ©‹_¶mÑ'ñÙåÎ7b «RWšã±ÞyÓ íÙLjá Êk±?Uì‘Ó{å§õÍ9F'¨®ÞšÑm8Ÿ˜nš+5ø¯`Ÿ°¾}kÁ™c©à†ÁÛ±W‚^¿ôA¡@ÑMÕöB ºøµÛló½Ušï‰YôB[f³8ï»™º<ßkÐñÙÅÝ…5ß‡Õ ©+Íq¸ªB¿ô1S9•²äÖ8•S)S÷ï÷kÆÿ~f*â|#Ë}'—Vž'^Þ쬖¿ FoÐV¢ß$œw\·Ÿ¿¿˜ž'Ø}QúPlèoÉü®¼ôö9ºjVûv±«†!È'¬¯Åß~§‡²!$÷2Ù?è¯%Y§¾¿/S³›ÿˆ|mˆNH]‹¼u#WÙ†–'`öï"z>-åÖW¢ßp½¶§l­ø¦POÝZOX_‰ÿo!¿eí±Ikq½ÐõYêØuâXÜAÑ ©+S>»ÞKú 7ÉeÇë„Ô•æhÿÚ¨«®fµ×¸êj‚|ÂúJü÷Þ< ‘»ùÜâW‡ò±䉂˜ Ñ ©k‘·x>¸Ú?Üéú cOX_޾5¯ÚµW3™–›žJ&4L(ØfXÉç{¤M3¥ýªRWâžïB÷¿A›åôÊ,oËKË© Ùû¿aûïç…ú×wrR¯Ø³ðê8èWM8Z‰öíBƒ/Á~rq¡Çž¾½íö+Ð& ­ÅÛX/³Kk˜^nݽ±,dìÄ¢“AîS"tBêò"¦A‹Nq*· Æ’–ºÒ‡¼D~(1[Ùo¶_6m%à9Iýpcbø,NÌ|q2À& -or›"j‰Ó;oZåzJ¡cx‚òJkŸ&óÝs=zñ ëÜ÷ ÀÛ*Zîd"tBêZä­Eaž/:oö¯€»¾éäÖW¢PÑ^]õ:*Ññ4áhk¸½§iäÓFÛíhAmÍë9mäóØ?ô•øç¢nèg‚Ã•éØƒEà„ĵ _ûÚÒ}—©rp¹2êØn¿mÚZ¼m¥s'.Ý•6n¬ð;±Jnç1:!ueén×WñÙ寏«[tBêJ{ÜFãÒ]üàžÜlµž«Ù~Ú´µ€ãëåëÓ#G?ž&­„{·—ù)å*âÁ–­~†àÑÁ– Ÿ°¾{™Ÿç»%Å7¬ß§¤o«k¹—‰Ð ©Ë‘ß>ä9ÆX|ÓrÀsŽ1È'¬¯Åÿ# <ÉXôû0<É¢TWŸ‹@¿*—nXÙñW$NH\ ú`+«œßkäîë9惹zpç×b¶*D'¤.¯kìz߉Ï.NùöÁZùØ RWÚãd¯«l(OÌ7Í›üW°OX_‰ÿl®«t}”¦øõ¹SßË33¹OˆÐ ©k‘_l+zû÷=³ë+cÇwIlÚJÀó›$·tù Ù¾X_$×9²ž ¼ûÕV 5â´C^à¬ÖzŸ~‡?qa¢RW¦v]®â’‡¾ÍZ«Ô RÛ£½HÄQÓn/²p´‡àÄå˜w¹<Äó‘›Ó7 ד<&Ù1:!u%ò½q¦ÑK£ªôÞ8`›éWM8Z ¶=S+7sñ¤Øé›†êÿìÖWâ?wnGqª!ÍñNÛ2(Íâ'ví!:!uqªÑ¢‹ûÂ#ÏD^¿©u£oi­[.´²Íç.[  G‹—…üØÖ솟’ºòòßëÎp¥„‰ù¦ÎÝQ åÖ×âo߬ä9ž´{ú†yÒ*Ϥµ^ŒNH]‰üí¾eTm[b¸Òßø«òBpBâZÐíÙYÇqƒÓ7Í•ç ¢|ÂúJü·Z£wWE¶aŒm®ŠŠ° hËï{ûvüƒŠW:}C©rH«ºù•ÿ¬¸2…S?æM#¶H!Â& ] 9t›ŸGÜ00µ(„à<æp%èCD]zçM’£ 0ˆ'(¯ÄÞthÇq%g‘§ã5 ô+Ž&­Äz®u.îíßÓ®OÚ·#lÚJÀo ¤ÚÔe’§.â®Oñ ÿrÕ¤˜ Ñ ©+‘·ñÐSãsú¦nÑQãåÖ—ã?tƒ¥_wÜ!uÒÕ.ÒqT„M@[‰÷m‘Ú¹JÌ6t‘ín6m%àöïë¹6ô‹ozA={úA>a}%þ£ñÇuìÏ[ì¼üÛ3p™`²êëòÐ]X—¿4V'z±Og¤…®÷·vûhÐV~˽r¹Ñøœzbx÷·ƒ‡Û ÀÓ„£•_Ò|¤k×q0_ÂèÚtŒá Êk±‡çÒ³«yû\&˜¬„z7í¢‹\ïfÛDЄ£µX_‹ØÇyÓø{I`¶Ç¡{³5ÿ¹ÇÛ´µ¶¹Õ$έø[ùg9u[Ͱ4}ˆ$1]^qzôW¨NH]þMÍ6ðNHbxuJáØÁÁÓ„£•pö$«²"΄Š_OT½ØX>ôW¨NH]‰|Yƒ³e—}»ØöËÄtCŸ>H}ºüámÚÊÏ9×ú-ÿöP±k3DÇæ\&˜\ õï0$}¿®/zþ!ÿù£÷ÿ~üýö?e­\ðA.Úh¶y´‘6÷[‰ø2Ûz–ϡ$¦W'®O¹Äè„Ô•¸¯öê\e#Kn쫱ÂuåñSnî:!u%ò%IÌQþÙSÇîÓ~§|Bã¤;±9>øˆFNH\þ9'üNYbvu¤kß߃Ë“µPoƱb–û[qw©è†þ¶A…ê„Ô•¸7Èíi³‹{ó0ä¸Àùô ]ù$â D'¤®ü¨ðJÜôNÇSoà ⛀¶o[Ö¯é^ÂÄtCà¸S1F'¤®Äýv.¤ÖÃ8îT<}Ã[*w½âŠ1:!u%òù{ˆ×d÷Á›Ó¾ÏépŸ¼‰Ñ ª‹Ÿ½™æÛ¡zXŠ>1]žî>Ú^Ñ ©ËÍ}Œ™Œ– ÈÓë¤çò´º÷Ñ^ÑÖɼ8´ßÐI.r,­!:!u%òË‚Ï%¦WßV_î.D'¤®Ä}5®ƒ[îJL7¼­ ú+T'¤®ÄÝþáq×u>³õã݃|+€|™OˆNH]ŽüL ¿—ìá2›8!q%èå3pO)1[ûwÃBt‚êZØ+_!}”å,ºadòd9CtBêJÜGc‚¦åÆ—ÄtÃÈä¹­&D'¤®Å]?jì?/Rä#q=ìúGŽVbmÿ,«ë’šÅúiÓANåÉWÔ„è„ÔµÈ/Å;*Oÿï¿owõâ̱èrªÍ¿"qâJÐ˽ꆠOâ£Ë=ë†G·ã×£¯¶,žo»`Ym™0ßvAˆNH]i2¥.¦“+ÀÎì<ØM¹ÿí»ýïSÿüeÖ[ Käu³ý ´ h+ßfkÄ7I“H7<¹Ùæn˜06\!ÅŸÜ0éò\¢R×Ìbš0¶Ÿñ*r}êÕ~È OŽVbmÿ ë¦Åú=½AÞ’‘¯` Ñ ©Ë‘¯~ éÁîiõŠ„{§6myßt-Wã&‹â¥Ø½ØÐ‹n˜,ÚñW;nŸ‰WZygü¢Ø°/⣋cèÊËaøõè{Õ‰éÒ ÷h—=À&œ­4–Á¸ßèÚa/z}]áÚaÑ ©Ë·ÀçrM8Zi.£u›´áž´ÄtCcôÜñ¢RWânÿŽ ëŽ·Õú-¾ß/H³:qe¢R×"?ÛFÓ±ëÄOnñY¯Ž¦-ø«o™W‚nZ:Îf®¶eãl&\&˜¬Åy´6î^ú‡NöhlÜvüöèÅF‰é•)—¯L*À&œ­4–Õ¸‰î*‘*ºaºÕ ¿BuBêrÜ7û‡ý\×/nÖãòDW¾|1D'¤®EÞúÕ­NÜIÄåhÑ Ý£µâ-ËtâJÐ{xqWz·ó›´~ùxÝ“ª´›€¶pS±ˆã¬ív»á]º˜éWM8Z‹µq÷|ìÄÌß ÎZŠnèQìøíÑ?êEÅ‹Û[Ú÷D´¿x1D'¨®´™_ÿ—Þñê|ÑS¸ˆ§ F+ÑE"®’Å¢fŠž’źwû§ ]—¼nÖÏŽòÚH¾ã5D'¤®D~1nÒ8äf±muµà¯vÜž># ®ýÚŒž¿Ì1Ü]è㹿}¡ùÉÒ6m-ÞÆMѱ[Åv8É!·mжà×£G”þ%¦WÇROÑb€M8[i,›uSÔS…VtÃ8ê©B Ñ ©+qß»‹-„&¦×U×å¦!:!u9î{oÞãÚÅþKÜs)º¡s´ã¯vܾÇ@@\ ú`š8îM¾Ý¢Ž£Ž{“ñ4áh-ÖÖ}®^œË bš«èõfÒ€ß= È%1½6ŠºÊslÂÙZc ¨·LL?zòqü~MX³þ Õ ªËÕ¢»µp©ý”È~›, ¹Kÿ1‘œ¸ÒÖsÕòc‰ÙòœåÁG0lÚZÀ­›èžº¢ O]ˆNH]‰ûl<‰Þr»qbºazÞ ¿BuBêJÜëz?ˆ“#1^tÃÌËŽ¿šñ†ýyâJÐWë.c/?º˜¿(º!èvüzôÊwÕíêGái‚ÑJC)—UËгM3³þ Õ ª+aÏk]ägS³ ³³ý ´ h‹Ÿ»n6Žþò[$^ˆ}ꆴA…ê„Ô•¸Ö­Å^¬¤Ùî©";þjÆjiˆkA·nuõâ–ëÈs¢‰é† ÛñëÑ# Ó«#©£ô"Â&œ­4–éž^UF%¦ç„Q¿c«ºbt‚êJàó–ËuÐ¥ûéÝþeˇXµèRªEÞälfŸË¯0™`²jë¶¢\0&^VꆴA…ê„ÔÅ3®s·Z·Ïì¥?Ä•±‰ž˜^íÏÛÿ6ál%â»1/êÙú?õúïéÙúÑ ©ËqïNnº+=1Ýð«6è¯Pº÷Ùð.¹î¹8íé(¥•ÜuÑEN@\ŽúÁšrµéWËxK¢vÓÕ%€{s4F'¨®~Bï2¦wZùÄ¡{s4€&] 6vw‘…»:uql‹Ð£•hÏÆs.ž ÑS7LZ¢1:!u%îÖ3·|2"1Ýð«:>w£R×â¾[Þ%Ïm§]›¶¸®‹Á ˆ+®Íšå¶þW‹ásrîÑS7MZšwFct‚êZà+£’gô´ “—æÑ›€¶ð¡3uqíŒÝ0”zvFCtBêJÜ­ßÝnùîBbºáWu|3"F'¤®Ä}€ŸJOÌ®¦ ø+' .O†Ñ˜©o8A@\i,³5)íÙ8*º¡ƒñl…è„Ô•¸[¿ë=È+_ñ~ôS7üª ú+T'¤®ÅÝ’”v3>ízã8h‚W:Ç _ÁL@\n,Ö$‰g¿ÎTïâÚ«ƒË„’•H›o‹ ®{1cTpm©ûàCWAZbzuJäÙ ° g+?¦ùÖüIœ ‰Y¿‚›&CvþË”W"Ÿw±u(‰é¹X|úúË>¨¡ Ñ ªk·î0x6¼Gëg\Þ!:!u%î«q‡¡åâõÄtÃ<´A…ê„Ô•¸Û.§õ`>íúL´EâÄ•ãw_³«sÒö=c¸L0Y™GïÖýû™Kâr#™rª¨>6-öFlD'¦Wç£ ö+Ð&œ­ý˜Ö/Pˆ-Eü®è‰›f¢vþË”W"ßÛ+®ÛK£¦Ûæm.Ú^¢T×oÝŒöTŒLoß0к0OÅHˆNH]‰ûíÒ;Ô‡]ÃÇã"ùk“)CÞø¡ïYïåÓº!:Au% åJýÄtàA…ê„Ôµ¸›Š\70»¾ ð\Á—'ÕÓdݧ_¤ûãN âJc±N|=R“mþ詎ÂÓ£µh[ ÄŸRü°û‰›ævþË”W"¿Z <i“õ ®Š´º÷[·«,ÚíŸÕ½èͶ×í¹á¡ØõÑÂsÅCN@\þ5çn7¿¤ŽR¦ÂkKÓ'¥L1â†WÉóéø ž ¼ùÁ¸åè*›­_dp•…è„Ôµ¸ÛJUìe½èɶ«æ¹ Øõ1Ïs;@N@\ù5—ÑoUá. NŒ…7èÁ%Çp™`r=ÒÐá`O°[ìqœïvQ¿ ´p¸ýð¶òѸ)àÚ¡^¬wá»v¨CtBêJÜ{Ù±VxÓÐïØ‹á Ê+±ØLJL¯N<Û`6ál-âÖ4²˜gøøIb¸iø·ó¯Xž |5òØrAzÃдHCS-îH›ý‰-‡|íl«e5-¨Å®&K]÷JDàĵOW+G}281ý€¿·–s&°¾Ù‡šÿ‚s¸M@[ ù`ͬ»ö o˜¸öcx‚òZìö×Óký—kg0À&œ­EÜšY磟I 7½JvþË”W"?Ú“˜Žz›Âç‘ã÷ )l½M OP^‰½¾aýàZõ¶é;BèWM8Z‰õýêezä¹Å¢Øõ¹—狜€¸òÕºyäÚ0-¼iàØ0á Ê+±7~#Ûµ_ºš¾6íÚ,ÅÓ£µh[7ìŸ J 7½FvþË”×"oOe: oš8 bx‚òJìwuH}p¡B‘ëöð4áh9Ö›e˜ö} ._³üýŠMäìß·Õµü‰Yœ½DàÄ•ˆß"(3£IŠÄö]ìú´«Eâĕ߯–„Õ1$Æ›¦\Ž*Œž ¼ûˆÍÞÄôêä˳M`ÎÖ"nÝ´ÛÅÖ"æ]¶û íÊ«dç_±ŽïbñBÅ[Ú£MmzõÛÕÀ`†#Û€ïbñBÅÊxNÙQ|›ñ…ê(¾Á ¯kœ5ëöõ¡Ú×êv“ÙˆA0ªêS†Ð…J×íëü¤âËõzÔ ³¯u£@’2à uÖ `ÕZŠÁ ¯Û×Ç0óÇU¨tc/¸·Ð0LÉU·SÕ¬df×íÔx "Ü|¸Ë–ɽn§6³»@¶Ù†Ü»†=}¢· ½ôžÚ¯çq”ip%¢«L3/T¼¡=ü|Ô¨~»°ÎpÈÀñ],^¨xKy<ï¦úJz!~Æ?/T¼¡ýŠ™½žÇ†O6b7.ºYª[0taÒ-Õ‡Û ßø?Kî塞 êçÏŸ3{üo˜^g¶‘¤Éôøû™=äo_ïìL}ý‚n­óÙBd[’cÅ&žNN™]·w=­œ"àB„’ß{»ÒêS‡Ž GÕf ^¨xC{ø½PF ÷²ÄŠ=€ã»X¼Pñªòkßã1÷öšü Ùí5ùAx¡â í,Kîy:ù‚#6Á¦[Ú>„*ÞP~ÄRÍŽNZ»~H9zi…À…7$ŸñÌg{}Û…‡ö±öú¶ ¼Pñ–öhæsQ¿]sX/8t@áø./T¼¡ü‚GÚ+˜/KXßÅâ…Š·”Çã@íõ‹²ÚëƒðBÅÚcÞ™ç‘ÅÌFìC77Ôc5„.Lº¥:½"ìûjb•pD°…ȶ‡RžV[»º†<½¶BàB„’Oh<6—Í\lÀk®›‰` ‘m>ù&GýÆ…‡Ì¯öú ¼Pñ†öð+<žª¥ íUKAx¡â í70ãáx@ó‚†ÀÒëf†¾½‡à…Š7”ß¡Œ‡§ýÓÅ®ŸM ð..D¸.ùØÃGZûÂCÛd{Z;/T¼¡=ü§˜ãÂCÛd{1G^¨xCûŒ»͉Խ&ÑmrÐwau·‰Á o(o“aìfŽŽ-»¾U:Z¶„À…7$_ð0°#¹:âùCOr5/T¼¡=ül‰«¤ ã¡mÒQRƒ*ÞОŸ·Iûµ¦Fj¶‰NY—zêñ`#ß1á!}O¾#/T¼¡=þ°€'Ë—ñÈ"õdùbðBÅ[Ú/ìv*ØùÓjä=€-D¶!8?œš vulÓÉB#RŸÏ#O¯»#Ë·•3ç•3™Â9¯œãålÛÏEo}v×Þ¥vÀ»H¸0á†êxuOØ=ã¡ýÐvÁ oh¿cQÏ3]ñ«?¼»_½êS>/T¼®ü|fkõ¼èrá_ä¯Çô5k–Oøiؽ~B}Ï%.D¸¥:n˜:¢¿­VGô7/T¼¡=–eò¼í’ÙÈZõ­@uPC褪ßçÕöµüI}zá«uQ·ÕSŠ€ n©þZJÌ SÁ6êBšÙ] [ˆlCpr)}‚Ï9B ¨uad¡‘-ñЋ#²žñÐ䈬Çà…Š7´?Û‘ßéH~Öë·ô.”.Lº%[ˆlݰÀá»×'â°Óᄳð,‚Î:½ÆKWýć†êÒ;SFÀ…7T‡O»†ÆŽé“ž¦”p!Âk¢×O:OCJx@7#š¦&wC褪x°nV7ý¬;Àצ†¼ôVqp!ÂuÕ÷Ö5t[KX¨žNq!taÒ-á±`«sÙ7ÄߌhššôŠÁ o(¦‘g3§s`¿=›©f¾2}QgÞEÂ… 7T_àÝ]Íñê}´N:°Eªw3ô&Zlá±-ÅgpžÏ½: e3ôúli€¿?Î ¶tÏJ¾¾³»Z…Ð…I7æ ØßÕùk‡ûÈo³~l¨Ó¼Pñ†ò[v#e+h|.l#)ÐÌîÙBd‚ÓSéÝÿî»´4 ,,°!óq §Ð¨j¼>ÓS‡wípüˆ&\Wýèñh££]Æv‹ž>*á]$\ˆpKõ ë“:¨j´.ÓƒÃߟ>¢—Q¹«žü'°Yà]$\ˆpc¾Œ˜±5ªÆ–ÞÐMÏImêAB&ÝP-#wÝVËôþf³Pï«ñ…Ëÿ£þûû—‘~b nLœP;:f£eC‡ÇôIl2GwʸáÆD_«ÜG9Ö̇¬±~Ì.ßÒÓ8.§^tht×S£øÂå[ê£y¼·i*à€MÖÞ•5.D¸¡9?Oœ ök¾ŒÔì6,4²!5ülEKgÓTàë{—§)k ]˜t]øü /5K™ ¸¾€žäW#àB„špÂÉUSù%à©)â —oèÞ#Ñ”zŸ9ѱõ\h o)&œ)§^ßÊ- CàB„šÃX´tóM8žè](]˜tCøu¤ç(S(Gv5.D¸¥9žrò”L+ž²ñÔñ…Ë7ôßÐJ#a¦ïðœ²ñÜ^â —o©¦œ: §R8¼‹„ nh¾Ãa7WõXæ¿>~ÜiÕi]0_¸|µEì?~î´:èù•-‡ús~e;‡wþëÿ·ý÷ï¤Ò§e\˜p}^¢)Š–.Ëé˜M ì.-<¶!øY¬GÍš§MŽ|\ˆpCóú­¾G5.™™Kž— ¾pù–þ`V¢¡™s*àÀ±ÝÞ†:.D¸¥ù+4y*þe=ùß1¿ÐCÿáÿs eøþ?±çO¨ùϸ0áºÑ@_5zí|g½@äQ•dæ#˜«J2ˆ/\¾ÞaaÎ¥"ÌÁ&ÜØ à×ÝZzŒ§_·—<ýÑcè¤Â×k-žT¼Í· ãOŸnÅ[ ^¸xK|4eé(…ÈpÀ\u”BDÀ…74ß𔥧ü'ó¡CÐSþÄ.ßÒÿÝfˆRÔ‘ òiNr+Qøhá¡ ­w0IÙð€D*àõÍËñôE\ˆpKówâyù2œW„°¹ÿïE^^…À_¾Úß8-”žz¿¸á–æp ”«À5ósÃUáÄ.ßÐnVd쎪;“éÐè6ð»`¾pù–ú` Tà a©€.pûÓf!p! Íg<˼è+¶L¢¤‚ð ü.˜/\¾¡?Üi¿WMU]ü¥z%ÀïbñÂÅÒÃf¼îYþyæ,}ÒK¸ÞEÂ…·DŸèåé©€W­aÝÅ¡…†6ÔÞÀº6OQq†–0ï"áB„[šçÒPu_ù‰:¼èùe†#iÿ·ÿMýOû ÝŠÙ*í’ÛÙïßá‚<× €¯¶vÝâ —oL¸¡›±««aìL‡F·ßó…˯ª,ÛY[Zº!VÚvöíÃÁ:ΆgþR|ÞEÂ…7&Ë— x®ªe>äux®ªñ…Ë×õ_áÇFÕ1PÅ_ëmñ¼†„.Þ~€ëõ›ž,Lð>èLo7Ÿ„ȶTç_óH¼ê€8®§ðÑBCj`•¢çjÄ:‚Y,ÏÕˆ¸á†ægû ÄþÚ´õ£oéµ¶!íì÷‡Ï Õ®oXzƒê½ ø./T¼1eftÆìÚ¨ª¡¤Ú¨¶£oŸÖ(âOˆ¦˜½íŸ†À…·¦ ^gå¹l˜ùÁë¹lÄ.ßÐË•º_pÈäÅñ],^¸x½Äm­õþl=‘mÌ™€©€W­GÇM>ZhhCí,÷ñTÎgx}(=•óp! ÍÑö®^Ô™™_žvÔA|áò-õÑr“]7ú™t E8¼‹„ ®kžŸÐfßåJ²c)Á ¯[b[%á m nL›¬ÚðÔgxͨñTóÑBCjO`Õ†§2ÃÆQ"ÜÐ|Æ‹<µ¿^géªý â —oé?¸zÈg:2º®.òA|áò-õÑ=m Ûd·Ø’½áð..D¸¡9þ4¯ë®Gæ#¦¤ë®G_¸|CZhhCí-&pT¹e80”Ž*·¸áºæGx*;¼ŠÎUÙÄ.ßÒ,&p=­qÔoØzø]0_¸|K}°˜`µ¥5õºø`J¾ÞEÂ…74¯?Dô¤®óøxÇç`×uÆà…‹·ÄçW½¥^5 Õz|´ÐІÚ3švÔ*e80”ŽZ¥¸á†æ œvÕçx-”«>/ˆ/\¾¥?œ r=Tœù/ô÷#;Ó÷ÏK'÷üý™âº0é†ò¨%i$µÕÌðb ø./T¼¥<õôTdg>”_õTdñ…Ë7ô¨aJ¼j8j¯øh¡¡ µëuEOÊQ†\¦ ì©GÁ ¯Š¿÷=˜ôs”ÿ\ðú:r”ÿ„À…·4)K2ÉånQ|áò ý‡=>£Ùèö‚¯ ^uÚ˽ÐBC[jã7ËÚ‹Ž/<ä(àø./\¼!þ–8*.8à,´W…À…74_áROuÝŇÜGu]_¸|Kÿ5g<ì^|ÀUøtÒ>-CC&ÝR¾:÷?ƒr±­UÕNïBéB¥²×«÷žS_|È?hàwÁ|áò ýogø…ôÅXÍÇÉ”Õ|œ/ü¶ýœáºæº~À_WìÅ>¦;;SÏŸÐx>[ˆlCò€BÁTÀ«Æp{cZhh]í¡^¼÷ vúÂCFp{ít^¸xK|°øÅQ[wÁC¸½¶..D¸¡ù0 kÉñèø…^~ÐÓFawlá±-¹áZ#OùîÅG $Oùn_¸|K¸®Àó"ðżŽOìçÑ2Ñ1taÒ åGÐaš5·@}„}ÞEÂ… ·$Ç‹Œ75.>äm8njDñ…Ë7ô(‰M¼j·—ò …†6Ô>>UKF­_RŸ^¾Ðu‹gwlá±õTçp^z#Ÿ—÷®ãÄÏyïê‡ÿÖÿýûGýËæýÒ#†.TúŸf"·™Wÿx*k/>d$9Jk£øÂå;½ MúD[#ëïž&ܘò^påx3öâ¶éª[¾º7A&ÝšìoЦ‚me ü›òøVÙÀ.ßP6Ýswèâ#ëÊsw(Š/\¾®ÿ؃.žâæ ¯Y”žÒf>ZhhCíóUÚÓžüŸóPNç?ŸC9MÓûßHnzî'£§õ÷³ÿO×.ù aÏŸ(¿»‹„ ®›Ù ô]£—éÂÛxîÈTq<»|¡ë®Gû»Ëlá±å3Âå2®êè¯þuUGñ…ËW»$þãÏôµ$L¸5uðJ㎬áÈ|ÀF5n±ª1Žº0é–òh¥OóËÝÛÚÚé](]¨tCözÏÏ ¤Tð!ÃÔsƒ*ˆ/\¾¡ÿßF¼rýño`œW®&Ü= 8ðª_à¨`棅†6ÔÞ°Ò5¡>À|¡ëV$ÎîÙÂc[rÏüÂÓTÐÍÂ-Ñl]¨tKx¼æáÐmGÝÕÛ°º¹ïuëNwö"è¤Êï é¸k£ªìÕ¸f;¼‹„ nIŽß,×¾ú•”̇ì®~Ì._× ¨„L¼j 8*8ùh¡¡ µG¨æÁñpñ…®šŽ—‹#ØÂc[rã{W{ÛT/×zPÇB*Ý~‚ÓËžçD/>` º‘¡Zì!taÒ åñ§‘]Ë™Œ¬«`9ˆ/\¾¡ÿ-míðj—ú$ç…®ï”8» d ÉM«Á)·Óƒò¡z©ú3º^@4íp‚Ãó`ÞÅvIã²±nÐDÐ…I7¦üþа ¯9?~×)k®…œÎqíÿûg…Mó¿ÿ¥‡e2|Ô£¥Íì.-DvUqk“yT´•ùЙÝÀîX̘USG·‚O8 <Ì.?œ]ØZ~;d x sƒøÂåë ø¹_"&¦pùúÂsë¼}üRÿ4ä0jžšC¶<ŽŸú¡ñ¿áoÑ=AÉÇ3ˆºn/áì.-<¶1’žŒhÏëÏÀƒþ¼~]¨tKø=;6m7t?À³fwílø\"ÛP|ÞPÅw®†Ã3ør˜}ûpüšˆ§\nžáP¸«\.ˆ/\¾1q–ûCßG×]’áÆ¤t€ðÑÂCrïP,ßñnà…®ž¤Ž‡#ØÂc[r$9SA‡NÑöül]¨tà 8Fö!-D¶>c 7¿€e¹5×ye ©,!t¡Ò á§ +ðmyb'ô{¥#ïy º0é–îPîÁñðÛ…®ïìí/¿E°…Ç6äžñ¸ÝQM®ÌÂÈ“:YÔbè¤ëGÒ2£Ñ^Ø‹"Û˜2õ§Ù$d:´­·$„Ð…J·„‡»Y;ž$½ð/ò×éžás?ßáöõúþ&Ü=§e¨/£¤‚^?M]¯º„Ð…I7t? è´ã±´ ]?QqvÈÛ’oLeDŽt“÷@«žý¬ÖOÓº0éºòk=ƒô þ#ÓÏCiøzj<¨ÿ¡ •®×¬Ã¨Ž'/p"þT³1„.Lº¡ü>–ˈXü•éf[ñW]¨tCøµc9÷ õu¨‹_7»F=L¤¾ C&]÷dz®‹»”„I7f͈ޓÜtƒT+£½è€AÚ@ïB餺\#I¦‚ÙHíž!t¡Ò áϺ4êû©€þï"á„¢G½¥‚^1N}åzlá±-ÅÁ‚šC5ªÕ|zf#'’^òb(@&Ý0ªqº^ƒ¡VŒ+œÙÁé¤óqC+ tR}%ã¢gu½ ¥ “nè~íQ_ËJ84px &\}Š( J½zlxŠ™ØÂcŠÐi·êi§&»N4²-ê…j²+.D¸¥8žÞ´º³dz=R2õZ¤DÝXØBd’ÿéTG,Öûx[ÜÚ²<µzp! ͧÛ4g]IýþþBÞ”§ËpgŸÔü ªæ|¶Ù–ä`~·å­ƒTÐë«ÈóNC ]˜tK÷Éñxú]ìùœ6n{…À…7$? /©¯d¥^·qï{…À… 7DÿxuÚ:0<µQ™^µr=¥Qlá±-ű 諸ݲ¢yÌiÔ¬ÜY7\"è¤[ªã9Ø]³ÐõÝes™Ó¤YºúæÂg ‘mHþ·‹Xéæ5`ut]¨t½:z‚ƒhžšÀLNŒúûÛw4õ2·Öe¸þéøíËñT]û5¦LœŒYs2t;Ï"[¯5xy™ì©(Lºõí•êë'•˜ ¸±±ï`™DË{A© ~]½”K/uD·t? ºÃ^·xÕâ”Ì®zvž&o!p!ÂuÉ_c]Í:{¬8vªæM»xªBè¤c:d§‚x‹và©›W[ˆlKr0áÝò&N*èÀ®Û@ïB餺ϕ,É“ú® Œ G}W\˜pKô :¦= ð2»~Øy:àEÀ…·$Ÿ%'õÖJ{z}ø×¸Ôƒž`pa Í1ËhS« FµYÒ\¹Hö¨¨Ž` ‘m æß=±Ä(Ó_ƒ9’ ŒØ¥äOØzqÑR+-xT\”éUk±Ý²…Ƕ&9¿Rä«à ýUoú«Ü>´%7˜–wU·,àK}¾ê–º0é†îš#Ö}ýÅ®LFµÞ…Ò…I×u_{,]iÜQíþÌ®[r ð..D¸%ùk!ÑúŒ¦<*ëÓß• Ø~`0ÇúÎ!DÞ‹¾ØýmEò^ŒŽ¡ •nÈQ– zÕÎòÔ´°…Ç6Ÿ0‡Ví9–'þ }°+ÃSÁC˜Ý²…È6Æ :{êäV4në)“‹€ niÎ/5K¼ê©8Jäøhá¡ ¹ÌUîu«M­yÈìšÕæë~"Üü¼æ˜B»vàë'òºÀæLïBéB¥²×®›=ªcËôê:ò”±°…ǶŸ1[hWm¡ò z³´…àâûT°›¢ýÒ@[ˆlc0kmɕǭ೶¾ò¸º0é–îü"³TÀ«–…£8ŽZ—{»½&ð…ýä]ØŒ>·ÃƒÂîÙBd[z#9w_7ÂÌ®[q ð..D¸!yD=R*èµuUR°…Ƕ«ô{«åéófÏh•\oŸ 6`PÀì.-D¶1˜µPJâ6ðX_I\]˜tK÷J§“'%qÛ­ôË0)<q|´ðІÜ+’ˆô5"ËìúñæéD"Ü|o µ<4“ z}ßr=’B&ÝÒ½RÊû Pp«• =( ` ‘m P“ zÕ’ó”ô°…Ç6? tïU´<õoè3+I|C9l£ ¾™Ý²…ÈÖǼŽí*Ìï4»Ê²ØÂczçÚXÕ6©÷ú¹ã®⣅‡6¤(µIŸðÙ3 üPV{ÁTÀÇs)}Ùs2h:îèzþ€®8-<´!w­CǃÌxfÇP{f<€-D¶%x@v9ôê1äÉ‹°…Ç6_ÀØ;þ^d*ØuŸÂñÎe[ˆlCðZàæQжy”¢ ¡ “né^ÙZ¤h[ÞíÛý_‚–NÙ’z‡ COC‘Ì®›WžŽ"p!ÂÉkï :³§•õâMœÒ±ÂÁjâþ÷Ï´F£¿Í Ó7½zº7'LcØÂcŠßДÜcú$ßãm”„iYhdKh0Ž?F˜ 6`FÁì.-D¶!xn*[9¿áãú»&ÿ<¹™WåÜà_Üü#Û÷ã1 /T¼¥]§J=ybðBÅÊßÞw T­¤‚\· at‡ÚÒÊ„·w‚x³ëva¼‹„ nI>Còª:ƒÆü~Ç•MGgwl!² ½aKÏà¿Äþ ì+œÝ5³ñð¯ðØ–àà±ì($Ëìª%Þ^FF' lIVŒzšêûÓ7˜%8üýéØ "ÇÓžo8b¡,º¤>!x¡âIs¬}Õ^”ÉuK¥½0ˆÓÚ²¯ôÄÒ@åÍ®[) ðRo*¼Tü Ü’|ƒì«Ö÷aÞèºÒú@L [ˆl]ïé¼ €œAzœS½P˜éÀ„ûv8þ"Ü=7 ávÛIþm¢õ à ¯ô úáÏP:ßñJäŽþ«n[¨ûz ^¨xcÚß^x T ¥‚\7ÚK›øhá¡1­-ÓeÑ Õ³ÈìºÐ/õ¦ÂKÅŸÀ É—1]š_ty£«&@ó“.1l!²-½Ñäò4jgôÜë’ƒ)Úx× oÈì nˆ¾‚ÉeGéaf×B-ŽÊC:YhdCêÊa9ž|Ñ£~Ó- }Á ¯+ÿêˆÈíU’ výj€w‘p!ÂÿHþþòܳðP¼ðØÆTágÈSÁ®î-íy}:YhdCêñ̤žÖÄs¹¹sg*Г2†Þv£d¡‘ ¥§=h­x~Ü¿Æÿúcú?üªK]¨t}#XÎ'9ɱÕTàïÖ 32ƒ.þOdøýù|_xlcÒ`o-º.IevõdrÝ’Š€ ®K¾Ú⃠ûõæeMt‡ÚÒ4ŽŒbAu~g8`^,½j^ìê Á o(?ý9h~@fÝý~@[ˆlKð·Áø³Fþ°—\VuNõù<%Æm{ÅËŸA5?3ý‡.Ïô—Åò¦ŸØüª5B*]7Hð£ŠW»Ý¬g8—.Tº1#³êA1h&׌öjP>ZxhCë °¶w«Ñ£B¿ª¿ëë?/T¼®ü6ÀùýýÓN8øY·þô.”.LzUøú”÷´BÆGõ§Æ[›“꾃/…†7”gn`:ä^·ýáô¶Ù†ÜpÓ(GÍmþóåÌ&š1x¡â åWÈUwÔ+drÕp,ðÑÂC[Zoè9:èg‘¾¡¯x5лPº0é–ð`ŒD¿£7EÎpä$Òo´ìjX*/T¼¡üö§ Š±Ïøþ·f–¯€ ®WqoûíZõWü|äXI¾øsícÃÿèãÿ¬+]ô>ŒZ¥rÞ"—õŽ>¡çè -<´1Ë÷€¤Z*èfÖËŸ ¡ •nw r4§Þn—­j–ŽïbñBÅëÊïùrÔuerÝk/ì⣅‡6´Q³qÔM/Õ~9é€åÕï"áB„[¢c¡\=µwø­E¯ÐÝÕo ^¨xKùù÷Ì ½4” ú ü½zïúöÏø/êù j( €-D¶!ynEL ¦‚Ýku©þD&,4²!õü®”äôhKzS}Š ½z{¡Ý⣅‡Öý ³0`êE€ú¹¹ÀöNïBé¤SáJOGýi« Ü9ëºPé†ðx¸ÎêœÑvøáþ–KåtÂé](]˜tCõñ½Õ°ŠyR?«?¾O˜vzJ*]À=þžÆªÚñzáË Þ…Ò…I7&<öÆ‹«Ça论۽ký±‚ð¥ðÏð†ògkyȪiÏ;]xÈ.hO<á…Š7´‡{Š´?ˆqÁ¡#ªýMŒ ¼Pñ†ò;£lèi— <°Y:òÅÐ…I·„c”«¾ÑkÝ‘.8²UÕçZw¤ ¼PñºòÃÇ(9¨ l•ŽT^¨xK{4FÙþ8̇Çw±x¡â åÇ?q VöïbÅQîì_[ˆlCðé]jM)sKùÌÎïÌÚ¼´ðЖÖ{á +MçsÁÂߦóªÝžÑƒ‚¸àëz‡gìë'TÛ1.L¸Ú^¤…¾iôr/|'}h辘>é€]çè"\í½ø¾ÒGT˜pcý¯pF‘ü¼ðQÔžü  oiºI½>ãõmf­[E~Ì.ßPŸß/5}²¡E…Óo_þŽù˜/€Á¼oÏhè‡öÉ6^Ѹèë~§ŸØüú©A*Ý8·qü¡âuiÃ7âö¾¼µ˜ð(g{õÒ…?Ýï÷»T/á…Š7¬óZ w^ •nLœcÀüYó?ôpÒ‰ §­× 'ÝX € nìc8}ÐèƒîŸ.Lº>ÇóÜæ–Y¤‚Þ«®Ùƒ‘¶Ù–äpîÐS’ñï(‰Á oh^'tó]­E멾‹Å o)fmOÕ]pdI9«û‡‡W¬£3>o(?a®ÓªºNª½q¢CiUCIµ7"à„ëöNŸTú‹à6 øÕGIíx{ç§f»;JjcðBÅëžÇxF²ÉC+T¼±Ìe! âz,šë¡†=31SgÕÖe  “nˆ¾á%ŽŠ¥Œ‡,&GÅR ^¨øªöÕÂÏË0Èàõ×óœS[xl}áL·»A¼z¼Tà!3ÆQMƒ*ÞÒMú;ZE]tè(u4‹Šâ —o¨–ÒUM¡WM}›ðhmß^ñÈa꩎ŽÁ oŒëº¢‡ˆq-\ ae<°7лPº0é†ð@]Á“*¦Ì7Õ“*¦ ¾pù†þh£ˆYÿx5Œ5ÕCñ|‹*ÞR~ (ØI:M5dÓ‡šuŸm÷ŽºÏ¼PñzØ|îqí¥^¼>ï_¯Ñß9K8®èo釃O&ÝÈŒ>ÉØg>tTyRöA|áò ýáözˆXíUuÑ¡ÑmàwÁ|áò-õWô¸õMd<²i6àß_?ãA…¹½Ì)ã¡ Çw±x¡âãvµ÷¬PðÆ¼‡[}Uýy -}Ò«þþ–o¤Ñ…I7dßñ 0OÎ.ó¡ÃÊ“³ â —oé†IWýëÕ2L‡F·ßó…Ë7Ô?ðP¦£J#ã¡ ßQ¥ƒ*^×~ÁzÖ»§üyË(x`Ûl ß>þ½l­WÁÆÓÿò*˜ºcfô4«º\ðmý€ŸØ×O¨S&.L¸^^Ù@ß4ºšk[Îd.L¸nö-#jÛ4LtaÒ=`£êž4aæC§·'MÄ.ßÐõô=½ÜQö´öŠÁ o)¿‘«cR¶>Ý_Õ³ÌÕàœ¿®‡×+{¼¹¾§$ã!sÉQ ƒ*Þ˜î+Loy*øúFÖB|~ë¼jì-š±§P'1 vÍ4PïÒDÀ… 7Œ=œ~htý.Í’;?ôåë6“çúrÚïsžëÇk¾lÛë>‡þíóoíÍ÷­½ÞEÂ… 7 Õíà©0éÕoçn0å·?¢{oîlÌöQV5›–éÀœÁá·O)H²¯ø]0_¸|cꨃàé²–éÐèz­ñ…Ë·Ô?ï_N{¸};ëµì¶Ùºà+PQr ¨¾ëE~™ÿúøq§vÁ|áò ýÑËi-Û¥O:pÈ6ÀßÒŸEÔcP˜pKu< â(ðËxȳÄñ¥ðd|)ý3¼nW®SÀ¤&ݘ73ž:öT e>´{*…‚øÂåú/fà<§‚]?fÛ¦Ž` ‘m ŽGã=…‰™¯žÂÄ ¾pù†þgP¨W̓MËÖ[ŒïgËgÀ»H¸0á–æ3j“5¼C™ ¨ß®F„V ëAylÆ#æž§§X ^¨xÃXÝÑ:††‘&Ýúv°ŽÁóœ.…nìÁ^%á©Ì|È®ñT ñ…Ë×õßú3÷¢ï_lÊ5¯©ö‡Z2ú‡šß€ùãÚgø>Þá'6ÿ„¦{\˜ðªäì²Þ?º#¦ª§,9ˆÿGýg|Cÿ³ØnxÕ§Œ_¦|ÞŠ—s=ÍçVüïüæ[ñðßjLù¡¨|yJîÂÈB#Jpe„žÁùó$j*ðÀÉÔ@ü„UFL“f`«ÑŸŒFÌI56ôõA&]7°è³úí³® šGo  “®y™Îìå·?¢û@½öíQ5fæC'ª§3ˆ/\¾¡?Z ëêεá央]A|áò-õ×·çÊyÃ1ìqÑ-Õ ß—¾¾à“asÀ… ¯jn©¿9íåÚ ùŠgV<×2²®=ׂøÂåçl½Ù¿œ׋ÀÏ'ŠÈïR§O:`!4Àߪh6·.Lº±×ä÷lˆ%A©`ß_³¡•2°…ÈÖß{<9ï©ÝÛJ¥<µ{A|áò ý<&©» zåjæC[|¿ æ —oé¶(òôIÌtÈötJ â —o¨»MD*ñH»¾m:JSØBd‚¯7ÿ‰ö²c*ðÓþâž]ð}ý€ççO¨¢À…·TÇcž ¸Ì‡6IO\_¸|C¸5ŽïÓ7à ¿ æ —¯«œ‡/Ý’ r¯þ$Q[ˆìªÜÐïx,ãrSwauªGÀKÕŸÀ ÕGÜOðÔ^d>´Ezj/‚øÂå[úƒ•5®¶p™m‘ ü.˜/\¾¡þŠ!½#-rà\WZ$ˆ/\¾¥ÿ †+[^K¾¾¸\O™…Ð…I7„ß&ø°ÕoéûΉެ]=õM'.D¸¥:4óäÀ3:¬<9ð ¾pù–þhÐÌÓ‘/ӡäßó…Ë7Ô߇_jø*ÿÏòJ‚ŸkëçÏü<ý¤{‡þ÷šÈ·„l¦ßž;ý\·{?îìšAßéùl!² ÉùéT°_ß½P“Rt²ÐȪÔc_O¸¸« .ø½|ä1¼‹„ ®f»Ç~„ÃÂŽ§º.|Ý8zÕÒжó¸áÆTÇwódŸ.>äu8²OQ|áò-ýñ°¼#÷}ñ!3Ì‘ûŽâ —oè·0|n-ó}Ñ‘ÕÕÂï‚ùÂåê/fÓ´ç^/vÍ>hϼòÉB#RopHÞñ¸Ø…©A=õi"ÜP.”÷¤ýFüæ™'ë„*ÞÒ Ç{:4]thklàwÁ|áò õÏ‹®7_ø¯_'_s‚qº¼ááøßùF¹–‰ºà£:´íì.-D¶®øÐO¨â›Fבør˜ýþp~š;ìû&ÃJÏG°…È6fÊg ÆYµÔ­1ãuTku_Œ€ n©>G$XSÁ‡ÎSG‚8Š/\¾¥?z'ÒÑè¢Cçi¿ æ —o¨Þ‰N§­×N5Ê‘áõÓ gwÍlüä"ÛP<ßS4úŸæ© ’ãð÷§Ÿo$ü4)QÚ€Où2ášöï¿çÓôo.?]Dõ¥zÒõÓð..L¸1aÖ÷Éjý– ø¸ÿ–‡¹±Œ>¦;ú„ž? Ûat´ðІÜg†™ä‡:šºÁ~Ò©‚ÃoŸþ&Õ¢²½õU³™ÿB·Ã2ýø œÜóGÔÖÓ1taÒI³ãY²öW /<`/ªu­op!Â-Õñ,™£ÜäâC¦¯£Ü$Š/\¾¥?*Ô÷µ¶óâ#û™§¶3Š/\¾¡?|áÚˆëGÕg™ø]0_¸|]ý±/ËŠT[{Vmmõ¬ÍtÀÇá];vÌ„ÈVÛFŒã8ÐÍ'aÂé2N ]¹*^uµ3½þí ðÛ§£Gd§2âÈ[gÜZ¦^;  o̚ܩ ˜5“:°z¸ ãiÓ@¿}ü„žžn÷°éWÕ¦W{ÝÇÐ…I·¦ ^V ßôSMƒŒ¬zý2žjDÀ…7T‡3 ®²¥Ä»ª–bðBÅ[Ú£eFD?^g<-ßÀï‚ùÂå[êŸÑ•×ABêa— ø¤›îæ{l!² Å<-ç©Î|ÈwõTñ…Ë7<‘¬iH´n|yí‰^‡« L¸1é÷йúàÚ ™ò8¾‹Å oI¿Â¶¼^˜¦¶Ó¿ø€=¼ëÖ¶Z$B&ÝRþl¤¿ëgëšÏ‘<°ë¹o0¤nœQÍì÷‡ãÛºj=32)=µžA|áòõ~:‹™c+D¶>ã§Ï[‘au§Ï|È6hàwÁ|áò­‰ƒÖíà±g!™3àyX½é‚êf<=ø„ßCª"ÜP}dܦOô9ž=ÝÅ¡…‡6組l…I7&Ê-,Y3"]×/~Õ[ú^7óÔt}]˜tCù.•pÕÙf>dËxêlƒøÂå[ú£%¥í×n¦ú»/.Þ„Ð…J7d_#jãÓ'²Ã<¥ý1x¡â-íá”ãÕ _µh–~Ð,õ•Õ¸á†êžsÕ}µküÅŽ©Q?ÕT]˜t]y<Øá©ÆÂC ô.”.Lº¡;Zpä¸_™ÙÐñÓ»PºPé†ìž€òßf>t²»ª@ƒøÂåúïÕ† OŠ„22mEB1xáâ ñÏ rXíÚ¢oš'8¬`v×ΆB!²-ÅñŒÚªfº5| Y©Y7t{8‚.Lº®ür†W¹~hãª_ÌÉt`ÒàðÛ§£%\»š 8dàø./T¼1ipãÃSw{3³v¶z âbðBÅë–åR»!Ò~~‘mLš+ÝixÜ2}²‡Ût§½ÊÁÛÒO¡9Þ¹øÀ¹´è§žšT¡ “n)_ªúë$2Ý´~ýu!t¡Ò áW0‡æieáЙŠã»X¼Pñ†òÆòfe>tªz ³‚øÂåúh.aïUK[Ÿú”o€wÍðAˆp]ôµ·fY¾”Ç^yÑæ'“.òyõ‹]à3)-<´¥uí¦†ÿfnf›{£ÿnn]¨ôºìÌ÷ŠKÝó·ý¥åx©ú¸¥9ž¥lxõ&|Àø]uÓZA†Ð…I·”G³”û žEÆtÓ” ðÛ§×þ²L‡ìöö²ºPéÆœÁ_žv•0e>bY·ðoßgúfÝòէΈgÊø]0_¸|cþÜê×Y*¦þâ~¿Ó¶åír»£Oêët³†ŽZŸ®ø] WŇoL—ÍMî“zЍ7A28¢px×ǽH!Â-ÑßÅ"†£çxG.“«.“ã!9>ZxhKëµâè­y ÛÛD¬@`¶™Þ…Ò…J·dß@Gï³ÑÞÝ]2¶•÷j»K8¼‹„ nhž}™ß­üéËé“üÞ Ÿ‚oŸŒ– 쳺‰Ïúgƒå ðÛ§W³ÖOjÝ3þ´ª9¸µî1xáâ­©^Sù Q3qñ…¨!t¡Ò áëµrê—3rø]0_¸|Ýߨz°¤¢!è#D¸>s¶3^OŸìú©ÚÀîÙÂc[z×sãJ~·[O¡Úï(ùÁ _:Ÿ†öjBdlTÆàKñŸá ípUy*Ã2<ûcøIiX\ˆpKóÊ£4½R• º1¢zJ&Ý0´’° n̘Ìë/ÙOêu  VÞEÂ…·4‡3Á®—©¶+Qͦê_õw©Bè¤[ÊÃéTO-aÆC'ª£–0/T¼¡ý{ÄŽòÙLÎ|Û×mòAùl]¨t]ø½GËÑÅ>˜3ŽbŸ¸á–æhˆå2†èµðµƒÞ…Ò…I7t~U^*èææ¯( ¡ •®[ÀûP$jiÏ)?&[½ÐB„[óÌ룺3®ú4³c ð..D¸¡9ü£þºj¿d¸µq=ya>/\¼!ýôŽ%Õ<&ã‡j¸g>àuºO£o3taÒ-åá ¡£uÿ¨’³-ßöÔºPé†ðËZíŽÊ l_GåF\ˆpCs,öÐôOú„v¯ç ¡¸á–æÕ°À£BëýÉ«®^‘A|áò-ýg~y[*èæñá/Í ¡ •nZð‹ºKêÖ$jãì.-<¶¥÷ šï‡j¡ê†ÌV]E|‹.Þ~Ÿaóݸ̡ÇÃv,í¹ü$Ã5[‡EÐ…I·”Çcú}sÞ~«²ª˜À޽ºPé†ðp_µU‹þè»ûQ­º|Ð8„.Tº.û1 à Ò·—·!TÃ÷ðÔ·EÀ…·4w°^ßÁôW³Ž[§zËûð½šB&ÝÐ}DK7ôì˜jÐd8°px "ÜÒ}nTí$õ8ÍpÄ kÀw±xáâ és øõã—DPŸ}±ÓBýùó<­Çþã<ý$±Ô AfÊîè@wqhá¡-µwØd7 ôÕhXæfï Õj8,„.Lº¡üŒßÚk–3²{q|‹*ÞÒ~­ööç 2²|azJ*Ýý£ó¬ažzJÅ3üõí ·PœÚR»Vö¤H<Ó±|R$B&ÝÐ}ëð<¥Öxx8¼‹„ niŽÕá5=Ù˜ :àß5лPº0é†îûúI“ê 6Ì—›´ð»`¾pù†úÇïž×30€õ¹£¿}B&ÝR.—ñ\0ÈxÈüu\0ˆÁ oi6…mÞ%³!¸ý—ºPéªìh òP-Mt4Œ‡“»0²°ÈºÎ}ÀeˆTÀ«îFû%Ž´ÐЖڵò»8.:àh4лPº0é†îXöè(l¿à€«Ñ^Ø"ÜÐ|}¤IŸ.ºæ#´Ž\o§†À…·4¯ÊþëÞ²C\' oˆ?U›ãúo‰]ôlæ’è](]¨tCøùF7€ö+Àþâ~o/;eÇnº£¯ŒÃÏèóŽÚ’®»ó<÷zñ_Z—ª½ÆÐ…I7”GûÖ:ž_¼àC‡ã»X¼Pñ–ò3䑾ްün)͆òµ‚žvx "ÜÒœã'ðª“×~S)-4´¡ö:@†©ëšÒEÜ;Ç=¥º0é†îp›ÀöpðÚ¯l„À…·4GkK|¯!:ZŸÙ@ïB餺ïcõö_—¹ðƒ×~]&/\¼!þ1Ôøþ+yýtÂ~Ü敼ºPé–ðx#¦æËîpõÍÕÓg<Ÿ-D¶%9\gêytüânž­Vß¡ “®+?ôõ"÷¥‹nî‘ÍôÛ·ƒušŽgQ/8"ŒãaÔ ¼PñjˤøzhÖ};ŒC7¦üÖ™:n‡]ðšÇ縀ÚR«3uÝ »èU_Ïu/,†.Lº¡ûˆÖ™¶ß »àÀj¿"ÜÒ­3]ôùbˆŽÖj6лPº0é†îÓË6%Þ®JºW?üÁ­°¸0á–äKÕÀð_‚¼ðˆsí¸„.Þ¾çgMµ½ŸÃE<½ï÷îééÂóÙBd’ßÞ±¨y¨FïAÝS:ù€—§­ÿлPº0é–ò3ì¡6ßÇ»è¯Óoߎ™x®KVýT†ÃîÙÂc[³,ÿv<ò~Á!¯Çw±x¡â˜@ý FÿÝSݘ6wÛR¯z×8º‹C m©•U»îã]tÀ¯vÜÇ‹¡ “nèF’{£"\7Ñ1m€w‘p!Â-Íá_Ï-È‹ùŽ[Q|áòuýßåÛ¼Fé8‡æpèºóÑBCj÷huŒã&Øø‘M²iÇe°¸á–æx}ï§Iýᚪ.Ræ×±×G5îB&ÝR¾ÞìÊ}Ûô¢C&/L¿}{Àõ°TЫ.^» d mÌ–ò Âó©€CÎŽïbñBÅ[Ê/ŸÊð!ꉞ%J¹WÏ»vvW~5uý •nIο™ xÕ5uÜß䣅†Öc/ãß—wžNC!²i2ÖìÅË÷òÜ:ÍtÀ›ö\; ¡—²?¢º/x½Yõ‹ÔÈtÆ×}ŒñÃéúp_ôÉ"ÜR«ÉpÝJ«¹†·’"àB„W5'_R.UÏÎ××Zä'W¬cð¥òñ†øëŸ³ƒyrü¸écÛ0Ž+1x¡â-íkeŽŽKV© W%Ïõ°¶ðØ–âÛm5Ù˜Ï2§@Œ@ÛŽFK4=A&½ªü«WÁ÷S{Ë'H.ýØòB~Z ü7l†‡WëØŒ.'¢K¹ -±w0Ž1«›¢ZЛáP$Çw±x¡â å7´rÝq÷4ëî©ãæ)-4´¥6Z¹nÁr£Õß ô.”.Lº¡ûþÎÙ?ñÅ7Íúd',ëñ:F·í•qT…?ñ/ò÷³"{ãt‡gìùºo&Üý˜Á¼ ÜÞ&lã8òwå ` ‘­ >Ýr¥¯ÿû<Ë™m˜Ï£âßÞõïú÷þ3ÊÖ/ö«$~üº„Ž\˜ð?’{tÙ4zi»¼Ç¬lì+}úÎ[ñ{=ð..D¸^góJ0$a­OŸésQ˜pcçšw02µhQݲ›+vãƒv\l!² ÁËv.÷g<gð\îÁ o‰•{î°f<gÀñ],^¨xKû€Ë}© W£ žk‰lá± Å÷<¯=w3Oϥĺ0é–îõ@øåãµwUÈtȃl~å8†.TzUøª¶šVnŽ¿èùL0›«¤‚ ØíMaØBdëc9÷h=Æ¡K űÊÝÅ¡…†¶Ô^@÷ÐýFÕWÏtà j w¡taÒ Ý›BOn°Ï·‘5ƒÚsƒ=ˆ/\¾¡ÿß 8Ì›ƒóÇEÛ¤vÜŒÁ ߤ=íîà—Oʾ}7Vüí»W•éU‡Às«*€-<¶1SæÛ&`Ö~ozí÷¡O0Ú;êaÍ?ð..D¸¥:Þªý~¦C®LïBéB¥ëáäyþˆ¡Ý8%°³ eއæ¦Lí}­'a"àB„[šóo¦^ñ8\·ùh¡¡-µlÇý™ 𝡯3½îk´Ð»Pº0é†îµ®vþKHs-.í¿„ÄG mˆqÁ!ôª¡ØÀîÙÂc[Н°:«Ž\™BNräp|‹*ÞÐ~Ç[Aê×ëÛ˾Á¶"ŽïbñBÅÚ•àÚƒ{1™mìþ{1l!²uÁ—,÷hèï‘ x}4=I"àB„šŸ6ã Û]jˆ1Ó»«Þ…Ò…I7t(ýN½jxŠÖØÂcŠÿ­²c^BÊxä0ò\BŠÁ _ÕÈSyjV?GÖZKž¢Õz)ü#º¥ûŸ()ï’Ær 4Ž?‡ÞEÂ… ·D¯T­f6`µW­°…È6¿=c”ì«ZÕ ïê'ú,ÚÙ(ì.-<¶%÷Ò¾—m2{~­Lýœð=m"Ü|+`£E“ÉtÀÒm w¡taÒ Ý?žz·NgO‘j¦W­]O‰j[xlCñ³ñ¹Œ<xÈÎÅñ],^¨x]ûµ¯x¼ÊH×ZÅäƒ2Ò¶Ù–à+¿80t`óò6†Ð…I·tß ƒQït n0]7¼pvÈÛ{€ìEã(Òå0£«Ý²…ǶäFËtStWï2e:`p5лPº0é†î«—˜åºë g»<åº1x¡â-í÷R{Z¹îz»q;Í#ƒÝ²…È6¯u´RM·ÖÊÆžTÓEÀ…74­EWy× \®ê®¸á5Í«–â®Z\ú~¾bŽîâÐBC[RÏèéZŸÙuƒËÓ¶>.D¸%9»0è×h~9{üu‹l°°À†ÌÛ-»:µ ç|QlÏù󢨏ü¤š~~c2”>éFü=ׇwöI=A›Ï"Û’­kÑ]¬]½•éÀQÜ@ïB餺•ÓøAÑ\f« Ô_2G' ¬K½õš$2ër3òØp|‹*ÞÒÌñ{J·^ÕÆò”*FÀ…74&p㥊™¸ ô.”.Lº¥;T^qôª7¡ï1V¦ÐÀîÙÂc[r#å¾vÝ™]s&|ýº#àB„’hy…Qâ§š-™ì[ ô.”.Lº¡ûGy¢±o¹ÊB3½ºœðÿû¦x\˜ðSóÿûª¹]Aê/}Ëäס?Xf}{í-<´5¿Ï@xýÍÔ ?ˆ7Sõ áQ+ïj‡w‘paÂuÑ€â±TÀk«ÇSôÆG m¨Q4– zÕUó”»°…Ç6Ñœ½§(Óñô…Ð…I·tÇröúÅv5¥™ÑuOgwlá± ¹¡äêZxhKë´ÆÕìT#áØ´8¼‹„ nˆþ6VX-2SÁ~/ž?~rŸ—æT‡nDÆ#à„[šƒÅ)®ªÎc…B“®šÎ¶ð؆â•îç Þ° ·«Þ-.D¸¥9V1¡g;ô®‡™]7µà]$\ˆpKò÷n^{Ìâä¹°¨»ž'ýþniySœ?Ø/êù ºãÉg ‘I^{¿uTírc¢¯ u»¨Ö­1ÑùðRõGpUö¹ï±tç¡:Íšäºî4ãì.-<6&7¥¸T»îP4. K­ -­o›øðuG™×l”Ÿ;ÊÏŸ?Öçþß¿Aý÷O~.µëzŸ›á -ËÌ^¦õÎÎÔ×/hò¶Ù†äçU\ Ò°á ÛTÐëÓñün ]˜tC÷€Êëô ¯º è.-4´¡ötÀÖá¦Y‡štÑ+kÓ¬,Í Š` ‘mH>ÃÆá¤‡j1mÆ&Ö®šXj9m\ˆpKuð.Чpü¢^³£p<†.Lº¡ûíQÝ(÷¼Ó|¡kÆ­ç¡æ¶ðØ–ÜX¥P{•þ…®Û·íeúlá± ¹#ªƒSA¯üŽºæ¶ðØ–â¯ÑœÖß å#tmWÙè?ñÓúŸ¦égé‚ï¿+³ç°»@¶Ù†â9T(¾it-1qÁ/‡Ùï?FضÝ5ÛV?òO:`#š¨ø|¶Ùú\èˆémú 'ÐÂCbP‚£dòBWÏLGÍd[xlCîÍÐ:jø.zõÌtTðE°…Çþ£øû»§}8‘mL•i‡OžC;ytK<ãë[øÏŸß·pÝ€ n¨>cÉeGÏ·‹]OÑ:š¾…À…7$_*7;”g]pàôl/Ï nˆPþ‘>áµ5ä)[ @ m¨} è^îxÞýÂ;â n·ú"\W}¼Ý~±öòCŸ,ªä™]ßà]$\ˆpCòa±÷òG ÏLv-OÂ3„.Lº¡{Ž¿WÕõîõ×ß…Tn^×·ÏŸÑý7ÿÈ¡Ïö¼Pñuå©y•Rúê¡äɰKѰ-ÅÏäç¨QÏùÐÏÙ>Ÿ‡Æ0þЧ~øOï·rÁGÝ¥kfwl!²-ÅØ|TóEµÑ30&ÕÂPmô¸á†ê+V²aغºä+t^¸:8…À…7$?;0ÔQ£B[×<·w¢Y?çtÕCðBÅ[ÊÃÑ.Çû´X¨‹º ¨Y¹¸áºêh„Á‘jygo¿Tl+?Í’ z5ðìI°…Ç6é×ÊRÁ®o‹ ð..D¸!ù‚Ùÿž§Ç.8°@—^_ÿºê!x¡â å7ÌõÜ¥Èìú”ñ\¦ˆ€ nH~ë¤ûõ ~›o]‹s˜ˆ˜‘ ¡ •®Ë¾äsšÙþ;p=<÷ oy\˜pKôZ±¢?”›ÙFtÁÊ ` ‘m –+MúIªn莜Eƒ~Ô©[z ^¨xCù‹xn*dvý<ò\Uˆ€ nH~ö ¨¶ÚÙó1ý¥ÎÎv³Yj*àÀ¦‹Ã»H¸0áÆ€‚Õ ž÷\.8²þÂ9}…à…Š7”ß!§×UßžÙÕQuU¸GÀ…7$?ûT×w/½ãx™føe¯ýî^‹ºLÕ*Ë öÞEÂ… ×t³˜žfìYÿ“¾½¨Ë(/T¼¡üOËHnÛÊT°9ÓÌîÙBd‚c÷þ\EÜ+x{ÎUÅ"Ü’|ÅŽ‹]=.Ê:€7{Ec# M¦RAv]O¬º0éÆ˜‚YROsæ Žì¹³¾¥ë+)/T¼¡üùò*³•]*ØÀÎÛÞ‚/€-D¶!øùêG¯n_³ÆÞjQÆ'¡Ý­®{Ú€ ®h•þ ´›Ù/óâËc»tr©¶ŸlI}Ëv³ò.© çÈ9£ºPé†ðpÇ’\ |žAPã³Ì6µ™Þ…Ò…J7dG½¹C;‡T£hC"ÝÅ¡…‡6Ä^°0Ô1¨sY¼pc¯ôPt*àÀñæ¢GÀ… 7ô|À‡x3"h£tÁ}ŸƒÚû|G†Ù/+lh—…é](]¨tKö¬èîÕrqÝ Úk»V;¼‹„ ®k¾÷XêÕƒ¢ÌÍߨ=êŸ 8°Ý:òpaÂ[8y ‹3» õTGÀ…7$Ë!\ ó2 ™}f î!³¡×eá •oh?ÕJüI¢Ì6ª?IÀ"ÛüéA=êTStŸj'F;¼‹„ nh>¿m]³ó~¾˜ÿ·o9WJô¬šº.]e¶e.>¸vB*]¿zµ/`à|QÍ.}HW4pîÉûe:`½xò~!taÒUº×êPü٧̶ôöìS[ˆlC𽌷µJØÐ ¹"àB„[šcÕ®†¢ŽØŠ«a‹ê@ _¨|]û3Í(Wé|{ÓP(èó ;(ì.-D¶1 âTÀµÁ|’Øæ£…‡6äÀdˆ^“«/á,¯èÕÀüÏ Î×§Ÿ3åçÏŸTeÿc&Žód¶ZÊt=Èí€w‘pa­}™ÌÇpSÁ6n·5³»@¶Ù†àÓÈOø§‚þúô©g+„Ð…J·„Gk¬[C§¯»ÿzJ&Ýþà×Z¤‚n®'H]¨tCøÚãg EŽÚ;b*EØBd[‚£i×EuFõ‰>£ÉKÞEÂ…·4‡]Yí¡SGÜP½àЫы ¾Pù†ögmTÝ‘Þ4Gº\§7ô»ñ §Ç`*Ðu‡ÔÑ1€-D¶5”ü‚®TÀ«.©£Ú½Kà)ÐÉðúç)Љ€ ni¾£€q#GßVö4¢è](]˜tKx0Ew¨Q#ýœ8nóYez© Cz{‰a]¨tuPÁ`ƒnti†.|z7,"ÍÐ ®ëÝ÷è[ì꾫Íó G8¼‹„ niþ¶(·¡RAž^ è›}ë¾Â€ÚÒ¬Ì94_âYñf×|~õlfWÄöÒY>YhdcG;Yá¾\±ôõƒÞ{»"‚-D¶!7¿ø1ì^©ö—lòÉB#RÏôšÇôÉÜžöbͶðØ–Þê®5¼í‘ <àò8&‰¡ “n %ù_§ÈwwmÖOâ+zò<qÁ üPuzÝá •oŒë-¤J+óMÝr7ý%Ê1t¡ÒÕåå´š«–í8¨–­>¦U¾© W EG}r[xlcñk|SÁ®Z/Í•É|²ÐȆÔjrµW%_pÀvi¯J niWÉègП×`R,—zJ&]~èÁ<ö¬[Fe£‰TÀQ]{Ãr)ù]0_¨|Cûá`¦‚môrAF°…È6ŸGðm®LºØÕ©¹.‰OÙ’Í4·×$]pà(j¯I niŽfš[Þ©ÀÛn½ ¥ “n ?‚ö‘£®"Ã5䨫ˆ€ nh>€Y£ÍÖ´áü€ÏéæŠ°‹uÍa1t¡ÒQ÷ÚäÏþg¸9ªîô\˜pCtô>‹'-áÕóΑ•棅†6ÔÆ_›5îá©ãF=/pÅÐ…I7„_±èhË3Voø^­”}Íôs׿_l÷'FCèB¥ë‰Ñ1 M’ xup¤wøh¡¡õ54õpTªá «Tà ÀñW ]˜tCx~˜>ì^+Qö'èd¡‘ ©Á¢-ïW½áéTÀ« ßH磅†6†r…#"³¾äÕ4QÆK¾Þ…Ò…I7„ߪ~Ü“kÆ›ÖV;¾‹Å oˆßÄs4)¹èÖÐ>iSÅ._W®¶{ œo¹¬½Ò 䣅†6Ôž ÃÃqu!“çÓoa »8´ðІÖpɸq ©¾Ö|¹TÖe¿ æ —o¨_/0ö‡FçÛ›óÓLFÀ… 7D? 8 £N7“ë µ½P—ºª5ñÒi)ö¸üº‹æH†¯Ã~bϟЧw¼üÜ’-Gõ\ÊthGô\ â —¯«¿dK±hÐS˜ÞX¹ÁÍæGzÚ^hõr׃¦¶l!²ÁáPÃb”/«[Xæþz ¾‹Å oh?R ½–|Éôøk׌‹½ŽwöI=A—Ï"Û|†r ŽÚëL®›íÅ×|´ðЖÖh<Çs&Ó¡SÎs¡&ˆ/\¾¡þ²Ci{O» ]?Ú›ÚE°…È6ô>Xd? ‘ >pµà»X¼0ñ–ö²«{ªu3ººAzÊuØÂcrkD¨;|+dô(TÄ._×…«‚{ýëÕ+6ë­ERet]—l‚øÂå[ê×;&ôþaÆ¿œ‚qþ:y’#ŒÁ oˆ?ŒUãèf–ÑuëÀÑÏ,€-D¶¡÷øÖ›R “ ò+lúSìN,ßᣅ‡6´žQ²¥!zúćF ½ ¥ ‘n鎥yÕ¢i½Š<£ëVÎîÙÂc[r°õèIÈf>d}y²A|áò ýájõAÿzõ¶ÝZï´õè¾]_¸|CýËoxzVevÝð4­Š€ nH~>eÊn} >° Zð],^˜xKû:[—2º~F9n9°…ÇÖåÞîk¼Ôr*øÐÙäIñ…Ë·ôG/SxîÈe:t6ynÉñ…Ë7ԟ἞QùÛ¤4|`t[ð],^˜xK{,︒Ñõ Óq?$€-<¶!÷í&bv2|h£ôdWƒøÂåúÃ×P<÷ 3Ú(=7 ƒøÂåêo»ü$ìáöí´²™¶ÙºàèíÙ¦—éƒ^_J¾þœpáÁ Ío•ÖéḎ“Ñõ“Éq'€-<¶%7–t¥U39‘\iÕ ¾pù†þ–4‚ªjr/Ó¡ÑmàwÁ|áò õGÜ1ö”tdþ™Þù·/ƒøÂåúO·èñ%¯¸œðñ4—¾=p«k²°9æüç.F¦¯ôü&oþ UùºPéd÷H3«xý(<³h\ºPéÆŒ\áP¢+Q´¯ðŽãJñ…Ë7ôßpÖ8QÔðyæC;Z¿ æ —oè¹×Ú‘uG.¿ý—} pôÆ(Î|hnzÅA|áòõ±Íü×Ü™ú¯ü9»cÞ;OWbÀÿþÉF_¦¿À_£{]îì“zþ‚A`—ª?a’xUƒ'3•ùÐvàÉLñ…Ë7ôŸß,­ z*è/ð÷©sEB>Ù'õüUy>[ˆlCò(x¢Ä™í’ž(q_¸|Cÿ (¸n¶f<4¼®»­Q? Ü0`gG»Ó'ZoVô HÏG m‰Gp<Á̇(OF0ˆ/\¾¥ÿüJ’,¿¥òÏÛi¤>©[Ùƒ> l!² Å6iÚ»Ýg:`lši Ïu>[ˆl5^¶öçõ‡qëÕMæÇ!{áÏÌÏŸ/¿¸ÿo}å`ö? ºPºPéjCçx<^æÈ`\|ÈZrd0¢øÂå«»Á?þ-D»Ø– ü‹ü½ä Ã×ãÏØó74“#.L¸!û„‡júö´éÅGŽmOÚ4Š/\¾¡ÿ ú8«á!èûý ïi-ü.˜/T¾!þþÚ°:¦þâ~?È3zëïè“úú]v:ZxèªÜì”N©8´V)©(~©ýC¾¡?|UÄsAõÂC«ÕsG5ì„ûú 3nC9òFš@޼Q_¸|K´„Þs‘ìÂCÓÇs•,ì„ûÆÐcséÝ+Õ–þx",,°%3¾ybç×@™'vöÂýcΣ„ØÃâ†Æ]6G^êâC»°#/Å._Úw9ÿ´²\þrÔ÷¬!À]8O”4ó¡µë‰’ñ…Ë7ô_@Îu“çÂ#+Ìu›'ì„ûúL Ýé\^tþh…¹¼è¨îCp¾5ÃLx¦‚m ¯?UC*Ý}y>œ×ƒRžæ__¨üð ¾ ðöü‰AÝsBè¤ë Ûú¨~{p¼ )_wEDò@[+"õÂý?üþ`å¯áú~0Ãå8Ž g¹—âþVýû%Û§wRÏŸP/›E°…Ç6¯Ï¶? u¡‘©2«óP‡Ð…I×wàú¢~{©ûmHq—ÖOÈ?í_®ˆBÔ÷¬U…»´®`iþÈ'tK£~@¸? ‚ó0ñט0éÆô™zíO*àƒ^‚Ýï"á„¢/x1°ÆQðÌÎñU·T<„.Lº¥üŽÙ ‡fƒ¨±¿ŒFÖé¦îjä/„.Lºaƒàô]£åR})ÞíÉUÌ?€œ°¾¨bÔ÷Œp…=5|€…I7v„ ÷]Y™üõáÊÊDý€pÀ‚óµÖóê çõÊ_ör«P%=r” 621uÚ«ÃB&]ßñqúÞ«ß®õ/øGß`óÉq™ûâ×M}Ð 5æB&]ßè—ç6Œ«0éú.óz8 q”Š€¶IWê+ê„ûÆœÏ}Ö7úQÝèÕPÔ2Wo?H¬eº5y$ÖBèB¥ƒºlØ ;¨'¬.ûÉFv50ê;q]˜tã„Åé“úíeÐò=¦p šç2wÆgÔ¬Ÿ€jD7.D¸qº®h¬¾aL…I7v¯špåbó@g“+õÂýknõ‹ÔâôLžÏ/§–§óÑÂCZfÉ,ª%Sã~Ùë™®àÞCO}0ì¤wèCèB¥ëwèoMõI¯î¤O4²÷ª9œQFÀ…×­¾ª_®–­~KzêwÃ306ÝÒ05€.LºnÈä»AÜq&]ßÙ× »Jò@ÓÒUÒõÂýcæµÜæy9é 7.ñµÃ»H¸0á†è „ox`ñ ¿½ KzçèÆ†£Á®kù™l•»¾—ô.”.Lº1ev8¢ê˼æ@†Ö—yúáþ€>Ûp†ˆÝISÁÖ·aWÕ¶Ù–à¶“áï˼Ù9ý1hcÙÚ%}’ Eܽ\èd¡‘AáÃÓÇâÄ›î¡oéj1r\ˆpCõm÷*¸í`*ØÀšon—Á"Û|ä§•RAÎ ¡ •n G<-2¿¾N^ßÔ!taÒ-åÏZ±ãî}°G·ˆNúòëà]$\˜pCõÜgP}VñúÞ~ÒoÇ῟¾¸÷8ëKU­ Î|`ºúbR«‚Cè¤ëAÂ}<èÃ*L¸>ßó»]Ü,G*è÷81CB*]ÏÐìñµTÀû×VÀ òÑÂCóüÌr2ŸûIÛ°|›Ù] [ˆl]ðc¨¼Yñ œsÔº×=ç°…È6kþ—;æ’ÑÆw»ƒ.|´ðІØÕŽ?p|øºÖ,i°…ȶŸ1®¥W@*èúpzè](]˜tC÷w*\w²ó–ù¨~¾q#;/L¼*þÖŸEìÜë©© §Þ…Ò…I7tÿèMr,RAïÕš¿KÁ"[u‡þÁßí78nE*Ðãk q­.-D¶1Åô |àyîÌ^?ºIªß˜  oˆŸKˆAµT°ûß„+È' lHM¨¥­Ùèî ,,°!óÆ£Zîf¦‚œ= ô.”.Lº¡ûrÀÛ¸çræõÀF¨_'ѯfá…‰7ÄçGSÁ®n‰Í1o>YhdKêJ×¾'ñî‹®ä“xw ]˜tC÷ ¹¶ÜUKØ÷ìbè¤ëºòÜU»~Øõû#úMµ ¼0ñ†øãŸËÈÄ£Á—†S©  ÖqÛ+†.Lº¡û Ç\·½®–«~û@¿ë„&ÞÿÌWsI}VwÞ/ nˆ¾¨è£úéúNskOb:/?åýóéÕ Þ¡¡ “nL™p4\ÏJUÇͲº0é–îµX©?3Ùj<ÌŸ “…FÖ¥žÆ™wLø•ºÿÒ€À)eƒ…¶DFÛû5<9“ :pôà𮎟kB„¢Oh‡¼†w‡—ŸÎNÿùôú™Ù@ïBé¤Sf#_-w%SA¯ªçžg ]˜tC÷­rèQ¤7Óûß}€ç ` m(ðþHú„[cûË)8?ë„ÇÖ‹¯¦Tÿ1©µ6Ó ¿öçúùóg@ÿýëa|Ùq«^ôƒ.^/}Í|î“#¥öÀÀ¶?XóŽ]Ù’LÎ;O¶$„.Lº¾ƒÍ=8n¹, :pÞ5лPº0é–îë/ÖÊ#t£kÒž·™öI=A=«ØBd’+º;ê¦K~Ò݇ß>= 5• zÕBò$ÕØÂc[“åŦ6ù.¸ò,‡¿iJþ»ìn¼Úc›'4}Ç„7&Í„&¤^JÍŸîx>j›g47âI g:`ÃxÈ!taÒ)³è”Qƒwž[I˜28üýé)©TÐk›»+™ÀÛ˜,ûJ³ºïªñÌ ‡¶ußÅâ…‹7¥±ãÑ!­Ið(RjþtÇ‹KÛ| |Oâ8ÓýË“8¡ “nL™³O¯Î˜wÖ3{>_¼‹„ þ'vwÓ%ÇîÞ`ÿàçìüæË¼s^JÓý?‹÷¿qÕ“ê!t¡Òõ鸜‘˜žV òy1ž[ÆÀG mh=Mèi¡:HÞÍI8-pøíÓÁô—+Ý›éU»®Ý²…ÇÖ¢õ¥ñ„€ðØÆ$?k‚¹Oñ¤‚Lr~ût0OâÊ­gz} ¹rë!taÒ)³¢y’Ñ(”Ö¢M6´à»X¼0ñ†ô[–^7G‡Œ?71 WH*àúbmgß>ü@?næ‘ 8ðá0ûýá ÍTЫ'’'ÀÛ8Iô¸Ã³GB„ë«óeѳ“°© ›º'B&ÝÐýÌ7RKÛªTàau5ÝŠÁ oH?ÝÂ#´üZ*ðæ %²ƒ1xáâ ñ#’=© W÷xOš*€-<¶~6­3âíá¼£áÆ\Aëõ £MÓŠÖò¶Ð»Pºé†ìÇïs{¢*ã¡Çw±xáâ-ñÑ(˜'g’éÕ}Æ“1 ` ­ï膧؅†ÖçÉvkhEiI– ò+K=}Ù[ôQ㣅‡¶´F󻃚Zxhc·ÙU\÷>3ûµðGciº.~FÀ…7$G/Ã9ºàÜG³báô.”.Lº¥ú¯cJ}0>þA V]¨tKx4ÝÐÒ•0xÀhÁÿ~ý‘èI½jÓyRTlá±u[tïÑØ^é%D¸ñåj‹ºúo2ðú2½¿ÜÌË«¥¬#WV0/L¼!ý4@6˜ç†ff×-Ï͸á–ä Oêé•á%ƒã»X¼Pñ†ò3h èu£ééI6±zJ"Ý8›Vze©ðØÆtY瀚ƒTà_¢ÛÆ®˜ˆÁ oˆ>?åKƒgãɱöö…‡öÅö$v^¨xCû;­{}oTÓÌ®îžf!p!Â-ÉÁä˜ãeœ í8¾‹Å ¯»3Ãò²ÆŸ^šK°f—à4Oþ|åÇŽÿÆþÃòß¿mðåq|y¥!/\¼úÊê>¬xऽlî¿â…ÿþ[rÙ\^¨x}O{<¢×ž2¿ðÐж§ÌƒðBÅ[ÚC=Ïê‹]?Hà]$\ˆpKrþëJ©€C‡ŽïbñBÅÊx ½íÂCÛd{!Z^¨xCû€b‚ô M›‰\ÁG Ý"7³üáöåÖ¡áª}`SÜÇ6Ÿ*Ýw¤à3[Í)ø¶Ù†à!IìTà«sÅ•€€ nˆ¾à9G>2ã¡Ú‘ŒÁ oh¿‚f#Þ|'}²!» §w¡taÒ-Õñ¤£Üd¼5m¯Y]Žr“¼PñºöSÇÆ=i ŒG†Ö“ŠÁ oh_»œý _ÕoW=¥ ‡Çw±x¡â å?lwV¦<xhÍ:òü1x¡â íï÷÷h!þTà¡5ëHPÄà…Š·´ÇB‘ž+¥¼ÑóÜ)¡ ‘n©ŽÞü<ð†w/¶µšÚé](]¨tCö ÷iÿŒ‡¶IGÚ?/T¼¡ýÙªhü©×Ðr‰SLœ–ÓÏŸ?Cûï_ãë¹íõOª2øÁš9íø./\¼žh8‚àÉÌxˆß“ÿˆÁ ¯OüùgÉå½~š¿íxÒ×3úóçÏÐnýëÿ~~c×§}†ßÞß..ߎyÖlwô =@=^ùhá¡ ¹Gðd…û5¤O4t8Áð..L¸%9­q”dx`‹Õ-^ÍDÀ… 7dß !myäÆ~[y¤úT°Ï—Cw¼‹„ ng5Íö ±¿Ô³×û!t¡Ò áñ~Ξ ¢Œ‡Î-Óöü ½ËW\ˆpCõˆÈFú¤÷jEÑ“ L[ˆl=³£Iš^ß¾Ê[˜ox½ÓÁƒÀ@¦C[@{` „.Tº±ÖÞ¾ÔªÞÁ*ãM`VwÕˆ€ n¨~`KÉHŽû¸w4ç1tsçõ;¾!t¡ÒõA=Λ?ÐRšÕ¥¤6öÈx`B.êlWÛzDÀ…7T?›Ür:L}Ô'L;¼‹„ n¨ž¸ªÏ*^=¯3øvþþô 7ØÕ(‰Þ #ãɾª+Ií…"\½pôýFRaÂÕ¹þïÔÀM¤ö›õ}SÇ´„w‘p! Õ·¨øÛãˆ8¤‚þÕ%³×a¿³³#ðú}ñÙBdãyö!·sOÞ´zÛñ],^¸xÕw?ú[Á+ê ø9iØñ’ºPé–î¸KÐ~{üÂð¡mÀêÝñ¸áúV3€e­ƒZÖªUËèû2¥]D @ mˆÝD¿RA¯Ic¯IZÜ.‚-D¶!ùÀ’¤Oøë¤X¸Ñ´ðЖܠ)ÚÒÎáF?hêÍîTÐMÃÂ}+=†.Tº1¬8Ô³Yu2¾~ƒz|ª^@\ˆpCõ…"ðaWêH.ôø>¡çèSŽÚ’½€:ªg¿VõyÁÇw‘pa ÑWìÓ¦›Üoú‡£78/<°úÕ´½z3.D¸>¦#blÏ2À+Eò Axáâ éÇ[N-wOoô…\Ç÷FO°÷︹uáù®f¨Õ{[!p!Âé²ôLC*àÐ\Çñ],^¸xCú£^zð Æ›ñ¦ãû ƃ.^5ÞÅç]’)ÅÖ¬šÄW/ø„ÀKáŸÀ­)°ó1©`ëVêƒðFÀ… ·DǺ94Ýg}ÓGÐ_: ºve蘦3âð¹×Þë9èY‘Üß šOÙ˜%sýø÷‡2§¹~~úC™!t¡Ò-áñ@û­¸  jaz'..D¸¡:Z.çRÁ®¡Ž¼W[ˆlKð?U¼`æôqÁ:@Á̸0á†è¹„aTkGÚ[k§®ûêþžàl!² Å÷ UüÐèúƲWâ˜þnãÇt³ûy×3S6sµÜP½Z"\Ÿ.Àû7ObÓÀ 2ObÓ1xáâõ²æùÌ•2—“ÙÆ¬AKwñ›Ÿé“­Ó®¬F°…Ƕô>"»©ÀCóÜ—ŽÁ ¯‹ÿÇ>bF¥ß»ï÷â·i>Zxh=]±ÒDD+†îƒx(,4²1¯ÿ^häÅB3¼ÿ­©ãEBùhá¡ ¹Ïgš©÷SNŸö›Ò!p! Íë{·?¤¸ÔvAÙÀwãì.-<¶¡79hÙf¶åÈ>چЅJ7d¯7Ù}‰»·©çïï´ã»X¼pñ†øk¥.äID+Ãõ3úIH+.D¸¡ù†:DxwTÀuôEˆ€ nh~V¹3#Ω`Cû#LïBéB¥²×?‰ßÞ[÷ÖvGGü6/\¼.þÆÎ¥r¯U†ùÉd®¸†ÄC%jû$¶µ ÷Il+.D¸¡ùyõ„x§0èI[1þ‹t²ÐÈ–Ò¨Ó¨Ù}CkÔuÆá]$\ˆpCóé}mþÛpúËn3¹W?ûAám[ˆlCîjPøAŽ3ÃÏBÇï ¤9CèB¥ëÉÎw.e¯÷Žh9\Êí'S|}£I DRÁ^^ŸýÝ‚õ7>‰€ ni¾ƒG„#\žá€uå—GÀ…74ßÁjÁA=òu‡NOW’¶ðغÞ{¿VŽNŠ9³­ÓÇŸdŽ€ nh>¢áZGN(ÃÕéH EÀ…74ŸÀpmC÷TÀêè"ÜÐ|æç³Ò'ÜŠI>HÅEÀ… 7D_+uqOrA®¸O2A|´ÐІÚßäeöǵ­¡td"àB„šï`@«¡=K*àÀ†èh,"ÜÐüÀ÷òöÜ[¦C[b{î-„.Tº.üáO¼º1:2|´ÐІÚ#êñ;båLjúÍŽXy\ˆpCóéOòš-Ïìûâ¤EËØBd‚£ž¾Ñ;%¨;³»@¶ð؆ÞÁ¸TÀ«›¡#ˆÈG m¨½ƒÁO1ÃëCé !FÀ…74‡·5r£w`Á×&ï"áB„+šïÿõýp Q~Üzß5yÓo}Šó'³ÇýÎ>¡ù¾œ1l!² ÉG4´Ò·}ë[bkÔ6-4´¥öÆ-¶IÙ°8%B1l!² ¹'0’Õ ÃÓ§5@"ÜÐ|F#Yxã•TÀmm"ÜÐ|}ßñä]õHþEþî¹eøxÜá¶×+kƒà„[²ß ™I)•TÐ_ƒúêÊËEÑ…J7„ˆó§^=þ[ó!h¡¡ µw´V£57ñ†gQkn".D¸®ùЛ6¨÷†Ä›|6çÝè.-<´¥õ;Äé^’ ô«–ïgü ì.-D¶¡÷°ÁÖJëÕ«7¾~æO½zæ«vy\˜pCöêefo¶ó÷ÉÎ ¸0á–èüV*àÕ3¿5õ‚ÚP{úcsÒnoö¹kmß‚7δ[ [ˆlCðML´æÝÞpÀÀjM¼Á…74_VÄ4l½žò&W¬Öû)!há¡-­7È4U3HŸÝ'ºnbáì.-D¶¡÷f#šoxíàiNs† …†6Ô®uöt§8ßp`([SœAp!ÂuÍG~.%lÃüñç€ØBd‚dRR¯.NGˆÚP{Fc…ŽìO†CéÈþDÀ…74_gd8›ïF¼Ñ/Ûjb^Žˆa mÈTN¼º4Áp>Zhh]íi0[äüdk¥ø]Ÿ$­¥â1lá± ¹ÿ>lÆsè3¼:Mî<-4´¡66·[KhÉõ)ÒZB‚Ú:ÀcH¼:Ež-4´®öëMOju^*ÐõIâ(* ` mÉ}7I(ÎY*Øg‚d¦t5ëÙBd‚8 ©€W×¥ÃÉᣅ†6ÔÞ°sÒQì“ÑõUé¨ö ` mÈ}F©y©€ë‚'µ„paÂuÑí.[O²ÄË„ÍÝÅ¡…†¶¤3¬î]©€ŸkçKÊèBOÃ}BÏ0Ôf£…‡¶ä^è%3©€×¥§Ø'.L¸!ú½O 7–ÑÕ¥éÉ£°…Ç6ä>ÞÛ§ò1èqÿÊ?»U†Oã~bÏŸPc‚paÂÿHîÑeÒèj8ií:\˜p}*®XPÉ“íZÁøŒ'ÝÀÛ{f¶¤Ì“Y›'j\).L¸¾òè‹FW=äu™épa©xV¿¬¬ïý×lÖž!&¼cô/|xÍßî gôô>™ùT»–Ú{¯=¬øÀMÎp£ õ79.L¸!úAÎa¦OrýŒpd^ùh¡¡u©·{e<'8›Jöû¥Œ?{U†O[ ß^ðáÏVÕEÂ… WšÏÿÐo]tI…à©`O³~ødø´—ðãßô=<.L¸1ÏÇê{[öÞ² ·ez­]ô®Ÿ@=wô =ÀœÚûlF ª¤^?|<á ¸0á†è3rudtýrTu°…Ç6ä¶ßõzRjÑõÏvÔ°…ÇÖåÞ±:G*ö$×?Ú‘Šå£…†6¤pRïµSçËÃG ­Ë}|\hä9©€×>ÜsTòÑÂCr/§q?jðö.n©`Ú@>h>ÇG ­ª=är?fƒ7{y;R´ö6© ¿À_Sš{îïìL}ý‚¶SE°…È6†óv s¶ØT Osètl!²Õ0ø?ø?ŽßÁüã¸îy8sÚ~?ùÇ¿µóÏ-þoÔÞð‹¢ •®†Q†þÀ6üúë 'ïàŒi*àóïnËKõF°…È6ö•ã çbS¾fÿ~xn¢A‡viÖÛEöòQÛË5ó-‚-D¶>W†é Û©@W÷r‡¹Á"ÛÐ{^èYäTÀµÙœþn`7×w0؆â \öç§S¾fß>|&;)©@÷zHÙï\…À… 7æÊùÈf½ˆ¶ýöî0;{q ‘­‹2N&Šš2Uo}ã‚ÚA͵# ¶! 2l¸Ô÷fŸÆ!5› ø¤«âÎ#G°…ÈÖÝŸ1?ßÅ+OzÑvqwu;Ÿ,4²¾n¦ Üañ ƒovÀÁ“ ¸qcðÁ‘&ÜÐ<ð;[¿ìy7YüºÌ›}`±¡pþ—½Àöl{Ä#³ï“œó¡ •®OÅeÁ¦bCEô½ÐWh*à/ÿ~üIû2÷–¸0áÆ€n»Ð5lÕ»ò—ç …‡6Ô†ˆö¨afC+¿ùòI ]¨t]ö×In±ë›=±+ÞRVg¢»LOÙÅy¢—s¦n¬Lwj[ˆlKñ…íl¦‚m.y¿›B*]w•W8ªÒ¿Îlh§m`¯÷Ž,ºPéÆl_@w/ìüeo=ê®´È3’¥ùîY ]¨t}H·tWðâÑ7»a6¶û ™n½ŒñÀ ¡ •n êJ¯R}³w»´ì7´Ý{f =ð‡"à„ëù÷+ß³Hš‹í^Q]¨tCøiyfª«S}Ÿþìê4×%€-D¶!7p^øÍéØsýæt]¨tÝœÞד7th‘ÂôÛ·üŠÇTÐKµf]¨ô?“æýñg;¬B¥[ͱrÓ–© ;¤?ÙÀ"[—ûpO Ý½Ëth®´»w!t¡Ò á–Q» –éÃégŒd,„.Tº!|€»‘ ¸‘|à(EÀ… WEû³"óN*؃: þËCl!²-ÁñÝ«Ù3½èÐmöLcèB¥[¿ËrIןRÁúß|öÎï<Ýéïüj»z ]¨tõòV ~VñZü‚ml¼î€C[ˆì?Ãùþðóîp •nÌÅít|·Qß{¯­=[ŽçÖþï_ü·þ\˜›zÕ5¡ •®Æ3þáëV¯;tÑóÖNnƒC*Ýþ,HgÞ@K0d`vÈ"Û°Î'¼˜WÐRÁFö¯UÝ¿´Dx ]¨tcïÅñ›Š×RlÿèG9cx!Í‹~oN iÆÐ…JWCšcÆÀ¸Ã*Tº±œxf U*ؽ5#ÝÕ_1ôRögtKö­b´»cÉÛ0~ݱä¶ÙºàCCη9YuÑ!¿½¹ú+†.Tº!ü„Ç’›ƒøúøæ ~ ]¨tCøýO”K¾à¯oç/mWÄ’Cà„ë¢c@ö!ôøûfö¬>=¢FØØBd’ßb¦¤0x*ØzK¾áû¶Ù–àŽRZÀqœî‡Ñ—"ÄǶÙ†à{@Î!t`qÚâT³%l!²-É7vh'l`q¶‡¤ØBd‚àÄèÅXöh&Æ.ØBdëa×ñ¨=$ì÷A3û´²–oO%ù}жÙúŸú?MˆÑ–L7-´%„.Tº!üà@§‚^?ˆ–^;ˆT×?€-D¶!ùºÝ$'wºè“þÌhf/Ã}RÏ_Ðg:Ÿ-D¶!ù­H˜-£6[Ô8K[ˆl=£“ߟF}ßZûŒ?-óŸ?ðãúß¿cþoØuË"„.Tºn]ÌÓ Z‹ínyf÷¿)šSN' ¬/üy7rǥà ܫϺú ¶Ù†àùñU¢a• ¶ñá~ƒ0€-D¶!ø¶³ «T°ßçͤ“…FÖ¥>nAR}J*Ø·×^þœ;¾¬%|{Á}rGÀ… ·4×íj;SÉ~w"ÿóå¾l%|{ÁKs>\˜pCs¾9› vuy¶át²ÐȆÔG@h3}Òïg13.B*]·ÄüžY¯¯ >+Þw$ôQ/ym‡w‘pa­é~ ªã6RA¾½½ËÔ÷ h57»n»¶Á´;n|²ÐÈê,™úáìfDm6’ ºµ³ø¥ü£ÿq8yR8tuSœú ô%Ú½å‹]/;2Ÿ,4²1Çg¸uÔªnVú†2ÏàNˆÃ»vx{—$ ÜPïå§‚ýЉ›à“…F®JÍmžQŠ L“ö†+Ó½á ëšr*á†ë–éË^Ò—“®·‹Š¡ •®ö[™úc§ïZ„ë³}n׋XEj© ¿À߳왽wöI=AÝ\ØBd«Ýú¦aA=•öæ<¸1[ÎÛÜúÿTÐM×¹™Þ…Ò…J× Ü±n??ˆ·\xë®ëƒ€K^¸xCü9ÀñJݼgìwëBèB¥W…§ŒJÝ{kTÛñ¥ðd|©üC¼¾Óä4WúŸe ß2QîÔŸ,4²¡3lݵÇ/84Ip|‹.^—~š&hŽ7çŠ.r}Â4'‹ÐÂCZÃf©#h”áÐDq„bðÂÅ[Ò¿O J&䳂úÛ„ñGŽøhá¡u­ç5X¡£hÖÑŽïbñÂÅ[ÒoÈnîHreru_td¹øhá¡ ­Ç?—²ˆa€L7ݹfzJ*]wˆæñO.—Èø÷QÁ DÀ… 7dŸ¡­¥=·˜ÝçêmÏ-ÒÉB#ûÊß,1Ð2ßrFßËýüa–¶ÙÆÔ¾ÁyaŠRsóþ~;¾”Œ/•ˆ7æûqž££ž–j¿¬ž ºaŒú¯Ù‡À… ×U_€gȯQu] ¯{;¾‹Å oˆ¿°øŽP@ÆCŸïÄà…‹7ÄßÞQÎåøT ­ì‚¯ð{þ„ºÍGÀ… W[L´Ð®ïù,&\˜p}*®nw8b%­$G¬$/\¼!þ8cûÀ¨í£Šþ{ƒXo¾»yÍì.-D¶n¯ÿ’T*à‹nйowE°…È6Öð.c»Û‘ üY“¥tªmÇw±xáâuñoaMÒúô7-ΓÁëø~!O¼:ÓÙ`a ™û‘]^— ö=~L+ ` ‘m>ᇾÃ-Ýnï§×–¥Ã-Á oˆ?¯ôpF*ভû ƒ.ÞËSáe;7ò^±ºäJ2üL#=ˆž$KBèB¥ëé¶ã1$GŒ'㡽Àã‰Á ¯/§}Äò3xÐ }¶?evHÜØÝ- "ØBdƒ kt5Ìx`¥ªŽÂ‰ã|ƒúÙ„“üVéÉsR7£nL ^¸xCü½VÔ»ÃÞ™='9î&\u4æ>?N½4œ ºaÙùï;‡À… 7TßjWVÜ^ÀÅ6·0·C*]Ý`æ! hŸ>à£Þ =£×åŽÎÐó´tCZxhCn¾©› v¯…íÝ:Ÿ,4²%õûè$O¦‚ý:!¦ƒ[õ&\ßće†÷“ölÃ…Öæª®M-×&ܘêû`䦎êñ==ê7уðÂÅëâý-À ª§‚>l¿Àç¼¹ØëvgŸÐü ªðl!²-É7x›iO\x`±îêbÕ!pa ÙùÎEúd›Vî¿(„.Tº~¨Žxj§=Z j}ÆêŒÑ¢^l!²™¾×‡Ô@&ÓЅJ×…ŸÎae壟mª»ì0†.TºUŸ§õtz:k¸²+öS¹õÿÎ?sÜü¿ñßèuj1t¡Òõ9¯õøËƒs/ãÍõôàà‹Á ¯}Ëé­RU©€Oú^ãΰE°…ÈÖ§ûÇ56jxêºöJn|ŠÚÐz˜ø'u*èÃùå_³$¬ŒºPéUá©ÙØRw`y6'¨ÿ±ÏøóÊZ*àºç¿kÁ"Ûš*=Ó ¸Q°Óï"á„¢#:ÍmHÕ r†Óf¿?|ª×Jø˜L7Ï ¿B*ݘ1gOj¹A*àã¬Å23zîèzþ€.:-<´ÚlzÎWÊ™gœÙƇ¯{ñ ‘mLðm¤g§RvsG^-.L¸.ú ñX}*àÀ§;² pa«¢3³R¥æï½…—Lã£K½  µç|!Ssø›o‘¦=k•.|²ÐȆÒêIàÙTÀ%éHãDÀ… 7D?êfçƒèmÆçÜÜ÷ršÑÛ¼pñzô>›®óv¿Öüm¥>ðœØBdë³}[ëu@~÷3ÓÏér¾÷Lt?CèB¥[£¦ß–ËìÞˆ)<Ì…Ð…J7dßjÞ8E,U‡S&\}§‡ÏÒ'š-0¼‹„ nIþç&žšáÀlqø¡pa Ñá8T{êyúUú“Ï!t¡Ò Ùwpª;¼¤½öžï')€-D¶.ø1ŒàÈ×°Â4„.Tº*üÒØ·©€WgL»]€Ú’»ZŒëw?/:4WšýϺPé†ð·÷Y¾Írw–è"ëç?OÁ"Û’û•ñ£^N|zÕË/_><£·ñŽ>¡ç‚³ÑÂCr×Ô~gÿ¢›Qy·³C*Ýžï4§Ovõjwõùd¡‘u©‡a Wš¥­úWÍä.Œ,4²¡t@T"}¡õØP n‰ÎŽL¤ýÊx Ö&ÕO‰` ‘méÍM¤~Ÿ+áï/Ïíí©·SAŒÕï¿IC*]­½]†ù-A gQàÆlßVrX(èú*mfE°…ȶô~…ñZ¤ÿ"/ÅËðmºÃ3öü }À… 7dßßíR_*è/ð÷oÏìm¾³Oêù ºè|¶Ùºäc_5‹ü‘Û‹~hOŽÜÆÐ…J7„¿0œh*Ðõ­Ñ¸ ` ‘mèÍÅ¥‚­þbˆl!² Á<óÑ+Ïthu¶ÇÊCèB¥ÂߊÁ8ñ¡T ë+ÔÕ ` ‘mè}ÔÛ(ø£·™žm"R’.”.Tº.üô×ç"Fº2úøöPW]¨tKø?É>^ð%ÃOßkÞ¨%-!pa Ñ×÷mZì%tó…[Ü(„.Tº%ü-Àº’ ú üÝËìm¹³Oêù †ìt¶ÙºäsÙÆ–+ÊdÝ x- ` ‘mÈ=þWpÚW¥OòôBç\ s½³Oêù ªíÀ"[ívØß4¸jWÌg.L¸1 ç?#ÍCÏìÐ=¨z[ˆl]ðåïeP¢E‘éýo¾ŸhO°…È6$¿5ƒ§ù[© OúÿÌÞö;ûþ œºÛ°…ÈÖ%_ûùf•³.±§ÿ"ÿö ߎ;ƒRÁ®¸ãì ` ‘m>Ö^–õ»ž™}vceûžpa ÍÏ+ Ìxp*ØÆdñDZØBd[‚Ÿç&ï>R*Ðï—jh—¨èd¡‘U¥×üÜñ OŸhã’Û> @ m‰]SÛm\lãÃÝÖI[ˆlCðmÀêWÚ¯—\ì¡ÿ­ú6Èô}¼Ó?žwÛTÉ#èB¥ë²ÕWÜFáŮϗv£0‚-D¶!øiþÔç9~aàÍž&~Ä#t½‹Ñƒ`M\˜pcDÏ^€ÔÛ©€ëÓ".L¸%zÍSvÛùÛXÿn;?‚-D¶%øŽí[xUü›½¿-Ú-‡TÐ_à¯ëóbïÓ}Ró/¨ÃÉg ‘­çx |2ú©`ßÞÿ1Y2|ŸKøò‚ëO™‡À… 74Ÿ@/ÿ¾±x ÚÒ®"\t`*.ÚTÔ."D°…È6†ó£8ŵMûmôÓüq:YhdKjºW› vÿk3Ó|q:YhdCêãÝÉ‘ûM|œ”¿Ðûú~AÏÐç5-<´.÷Ä÷cSÁ®Í‡÷M' lHPM› ø¬º˜þ*à¶ن⠽P7}²ï†ÑïÏ®ú–ú©ê¤=pè#à„s…ï—š÷ZŠÊïÎÓÉ¥Ú~²Ú%fúÚ"[Ÿ#ó:qm×TO×ì›Ü~ƒ›ÚÐ:G˜ÙTÀûÛË &Çà…‹×¥_®>‚Ä’èTÀÃÍ_Ì&Ü}ÝÃÓá`fòYuµS=L>ZxhCë3%põx`^ñÑÂCrßoäpjrSÁ¾õ<Õ^ß·~¼àÛŸ‹']$\˜põaƋΫ0*ïõmÐ]Á.õ~ÂÖ§ø:Èîí¢drutDQøhá¡ ­Ï"eb¤-hõR¼?ìhp*ØÐ§77‚‰¡ •®Ë~Ò©€«gÅã‚Ú{ü³s1MéŒ?Ë鿝ÝÔŸ˜Ò1xáâ ñÏ'ŽxÎW*Èú!ýÀe ` ‘mȽ½CÙ”¤d*ȯ¨Öü-ÎâϤòÑÂCZï#ÛÚJû\–Û·Ño%°…ÈVßú~âÛZ© ›ývÝvb ]¨tCø³3÷š[*è£n…¶Ã»H¸0á†êóÄY¤‚>‹Én‰¡ •n¿ü9¡yŽÑE‡Öj³cC*]~¸uUã8©@j½Œß/Š` ‘mè=“KÒ'yØÕëo긳ïÍÚ´‹Wl!²Õ7?z ®ÝÿýÇÞéùòTÀ‚°fvÈ"ûOš¿üpêp–_þn¬û씯.¦‚­çÎüW.#ØBd[‚ï¥EÁŠƒ\l£] ;Á"»*8õªèÅu³ß}Ç5‚ýGñlCñó5bEË/ú|i—yK4}¢Eß|¹5-<´>Žc@œ"}Âstèûô‡X"à„¢ÿ9{ˆžþx÷Ù¾›A~G?.L¸!úŸ÷Œˆi¡LÍG¤Žv¦ž?¡‹Îg ‘mI>Уq©€›a›v|‹.Þ’ßØÛƒZ™ííA­ºPéºðÓZé3ûÀÙš>lèžêl°…ȶ?Ê™Ns¶>^KûÖ;ç³À"Ûü|SFQ6_süEÏ·ò’ 60 Ûÿ¶ÙúXÎÛŸ•I4Eç[yÂW¯ü%À"Û|¯W›=0‹2Þ<ø˜E1xáâuñ—~`‡ŸSÁ¶öAà<„.TºzGn[øÆE*ؽ’E|`ÑÉB#ë3<ßcFSÁ6·.,4„.Tº%ûȶRÁ®Î–v»…NÙzÚèñTÀu ôI '.L¸.úÖW­–Gg¦›5Ûþ£3„.Tº~tæ[x§·õ­JÆìb£^è—éÇx§ŸØë7´ÙB*]/ÞhÀO*^MqmÃ`E§ŸcÝßë ø1xáâ­,?„À¬(J\w0TB°…ÈVÛm[ÀZ&ܘ,9WÇ,ûI¼.º£Bl;"oY¤}*/_¿;Ãù?±çOès%.L¸qfàôE£«I‘mÞèpaÂ5d^gàúW.…?pýéd¡‘mv›ØÛ‰ÙúÙ‡·ëB«åHýþ~q+³öI=A•<€-D¶!ùhÖÞ?ˆVdr}†·‡+øhá¡-­ëP.ÓM_” ¡ •n?UrñO"E®GüžDŠ"à„¢ã{y{áÉŽn‰›¶%ª-<´.÷Ç~ÎõÞT°o/¾þÊ ?ö>¼àFT..L¸“;¦[.œ3ÏìóbÏ÷›=þ¤y\˜pcžOÕÙƒt¦¿VQnœJ @‡Ð…JW'ûÞß-#ÎuÇT°‡EÞdúñA?±×o(³=†.Tº:ß÷~:è@*àýoP‹f¹ …‡6ä^êy·~ч[=ÏF¡ •nÚƒñÛt¼ÜáøºPéºìø²cE©`#ŸŽÓ»PºPé†ì·$=/u– üxë!RÖ'|ëû;üãáI-í&Üý|û꾇±jÄ/ö­IöëkÌŸ>”ðé×{M„À… ×5Gn¸ø·öñoRâÖB*]~šfþ™ :òñŽÍ=„.Tº!üÁ"ÛPü¬ú£Zº©€×~ü&z[ˆlKq~EQ*àÀ\Ùï?#RTG4pc?àBGÀ… 7fË ;-¯"Ó‘íÜáU„Ð…JW«ºþáGöJ"Û˜1ûLO6¦>M¿9ØÂ±˜ò\?Ð/èùú†NG ­Ë½ö#hˆ¶{C™mª[ÿ[ÐJRRA¿_ѽLÑùÎ>©ç/¨²°…ȶ$_±ãæë ÿе— ü¬(pC•¥rmù‰3·}4°ÿ¶1>pæ"à„[¢ØT„ éß蕞MH{ØôÑUYîôŽªQB*]½{Ö‚_U¼j¼l¹Ÿ•.Tº1ÙÏ烹èTÐ'=uÒÛ}oë|¶ÙºäûÇEŸ.ì^q¡x¢t²ÐȆÔÓŸÒbáb¦¿ÀßgÉžgÉþÁ~QÏ_P ¹¶Ù†äóŽn(ŽPh¦ óЦ ` ‘mHÎ÷žSÁ®.ÎvŸŸNÙ:pÌ{9©€g÷…¢¶Ùú ‹}­ôÞxùÌìÞ({û ¡ •®OôökáÛ ·¾ýI7/\¼!ýYƽ™“ º1°.EÀ… 7TX¤ÞÿŽ(/ÐÂG mÈ}&WcBÛ­PßÅâ…‹W¥?ú[ËÚ¹” ºyÕ}¦ÆÐ…J·„G8b‘ ¶)vGZ"ØBdë‚Cý¾’ߌ¹ðfÕߌ  oˆF˜ît*ØÀ¬iD°…È6_²% ô™áØF] [ˆlCo¸>¬¹ úb›;—»:†.Tº!{Õzy`:f:´)¶[Ž1t¡Ò áw8…§SA7â<þìe\˜pCõ3Eu©S7“?„.Þ’~ã'vSA¦ ÿýôñ¬ÕéiÙºTÏÂejŠ1-<´>MÆaa× §‚ ¥ÍmscèB¥²Ÿí‰•è©@ÏJ$Ð_>Ï' ¬^²8Ƴu§&ܘ$ËíƒÍ‰Ñ‹\ßQš3£há¡ ­·ƒ&JÛˆÎûÃ[l!²uÁ§~æCSA·jgrCèB¥ÂO;D” 60cÚC[l!² Áç©6ÓŸr3>O—ÈÁ oˆ_¸ø]S=fásEÀ… 7D?ðè¼#Ì•ñМqĹbðÂÅëâÏ}=‚ù ê2\¼ü>¶¢.1xáâ ñÇ ÞoÚêL‡–m»C=-ûý5…nŸ=1ꕽTÐcXý× cèB¥Âo¯Â&楽T°uSÕÙ0‚-D¶!x則ŽêüŽ7LT/• X—y©FݵÒÛ<%ÜÕÒ1t¡ÒÕŠécá{y©`WgK»oJ' lÌp8xéȈf¸5MžäDcðÂÅÒŸ>5( 8ôñ8¾‹Å oIàW§‚~:w?ájjH „.Tº.üz†5™—SÁ6bšîËŒl!² ÁëA ãÏé2¿žú ƒ.Þÿ,–äåJSAîÕ9ó ÃÀ"ÛûìLÅ]¤‚íŒíq—ºPé†ðëŸxbÜ%ÓïÞ1îB*Ý~«Tc?ˆ»d¶î„=b¿šqÛô@Ý9·Ÿ¢çÿwþùÊãÿ³ìÆÿMÛ“5¦!xáâõj•×+È\å…ÈÖ§ã¾ý“ |û&!t¡Òõ€ÉV Çѧ 3ÓÕŠa ‘mL“mþýzC¿;$Qü¡T§óèä9q!há¡õaooèÐ ­RA¿WB])ÄéÎ>©ç/|÷$bØBd’ßÞc­ùTÀ‡ùw#,æJFó}BÏPg8-<´!÷:Á3¼±`æMfÊ¢ÍÕ‹` ‘mH~D”&¤oVâx +ÂðÂÅëâOßWÅiî[fßš¹üùô Ö~>aXÌpa ͧˆ¨V*ð/òw{?ÇíÿxJ=G#à„²çì§wȺ±Ÿ ü‹ü}¼¦Ì~‡_Ø×oè²À… 7d_friÅ}VmŒT G-3ä7Œèd¡‘A<àË^=éÀ²?Ôe¯šEl!²-Égx»šÔíÊÐ|ÆýØ«‹Þ&\—}î7l»‚Ënh»o™?”Éç>¸Q³A|´ðÐú0.ß¾eL§"ãÍjNE ^¸xCüã‚uG)øùûsãp‡_Ø×o¨–V\˜p=3´¬§ù<½é†uËüìÍm9ýqü÷Ï‘ùɱôzj(/\¼žZ¶…kw¥‚Üëu‰~k1€-D¶¾¬ù”f:Š©€ú—?pq#à„ë¢o㟊6æ©—ñ¯ ³°Ï¼¸0á†ìÓNÎæ¤=οé­?_žáãt‡ŸØó'Ô™&\?ëè³FWSŠÛ<œt©À›¶éƒs:/\üŸsúöù+}d… 7ö_âÁ†TÀ“Ã%Ùª¹„IpCt¾…” ¶QÜæ·ìØBdë[ï~–üLó¢ïŽÙssúbÏA’å¿þû£¡J\˜p}"î»Â }¢õô 0‚Ú{Ùs©`û•¿Ð/€-D¶%øÊ/ MÝ4*üE­!t¡Òõ¸E~œYב 6°DÛëQöýOå­…À6fúñÞ·h÷}RA¿ç‘O õÎ>©ç/è› Ÿ-D¶%ùZˆŽ`Q†×ü‹"à„ë¢üšôÉžõ(”¿ð‡ÚRû5ÄŒ)d¼ù{SˆÁ ¯Ÿ¡Gµ)ÔÇü¨v…j‡ß¾ü~…â%¦‚ýRåÕ žèݰ…ÈV:M½àr£¼H®n1C?Ð}¹T°«¬n4‚-D¶!øR1CýNèÅ6¦ŠÛ ` ‘mþ×îç9¡Ý<…ÜNh ]¨tõý‡¯¤-ýNèÅ–h³:ôºü›PÛ˜é~E*àýo„æ …‡ÖåþÌDë|øsG‘h›‡À… ×·•/²Óìò¿ŸN³Ê‡q¨˜ü,­ÌîKhv,4²jã­ég…‡Ö7”q©jLÃÌV¿ÛoÒÉB#Rÿ=‡‰Fa¦¿§6Ñ$ ` ‘­ïÛ_$§™ƒ>ü)ù÷«§|O›Yî” ø¤ÏÁfvÈ"[_šSn*Á¬åIøòæ °ašÎ:!æ}»TÀ gÊS0.L¸1[Î{ˆÔÚTÀÍзj%.L¸n_MóÌÝn…F6fÊò›¨áÜIJŸäqS“b{Ü>Ø/êù ºÔ|¶ÙjÅW|×àj„fZv:\˜pcé,û"ÛX>{Í6ô_¸à¯=|ú~UØK †.Tº¥ûY ×bS¯ŸÍŽ ½!pa Ñ÷ÕND2èó®ð—sèI 5€-D¶®÷õ;±@#ìÞ2…Ü•%1t¡Ò ÙçìÜï­¦n¬Ðvx &\})#ˆÌ¤A†ßV)3kB*]?-“M|5ÈèúÞèH,·ÆO,ß<p#&÷ ª&\·Òúx ml-gU¹:ÅýéƒL>o«ró|´ðІÖÀcîÀÓ¼wéOüõí#ׯࣅ‡6ä^Þ)9Òí†T²ßMMµ†ïãQ—\ïæ&ÜÐx Ñm¤oÕwÝ&:-<´!7ßÌMŸìÚÊl ÿ~õ>`9çö²ÌL~¥†¾õIP—ÉG ­Ï} g(RÁ>› |¬fúÔßéý†']ðºPéz2¾?¨ø²Gí[šqáÓ…J7fäxæW‰÷ßSÁ6œ8÷½ý¶Ùzl5É;yùÝÐÆ< pkSW?ü;ÎG mȽÜ㈤àM*è§->ßTü§ºPé†ðëÛ¢ERA7‡µ™Þ…Ò…J7„Ï7Ô™nV*à£îùýöÙºâG@ð&}¡ÉÒwŠ€ n‰þöqÒ}©@“n)føô ¿½äªî-paÂuë¿>it}*Nt¶ÙÆDœ cÑüÌèÓ£ G?ØBd³p>Gs7šf·bÊûJv+öí¿ùãð߸ë¥I!t¡ÒõÒ¤£¼õ@¼‹˜Ùg4‡}1.L¸¥ùö©9í2b&×ãgí­)øhá¡­ö]†C+LŸð[x¨°'2zZîè“™@µlùhá¡äæU:þùl5·ª±¸å9|Sá+<–„/×GÓ×#fG.5£ #Tº:ǾŒÉÑpúe®|}uÙ€ @ mˆ=±cÂém„?Ý¡ì´ðЖØÃç̦%;/tÕwÔ"F°…È6ôžwSoüýBŸßýÍôà#ØBdzß.6²ŒûTÀÏkû_¾üBOû}BÏз:ZxhCîã¾W‘‚ש ŸYƒ‘\~C*]~¸È=7î~±{+Æì޼ÇÐ…J7d¿Ý²£eÉRA¿÷@Îìéø`¿¨ç/è²óÙBd[’ã¬æŒÇE‡–isÊ#†.Tºû‡³Óê¸éÃm?Ÿ¦Ñ–ñÛñßúÊ{Ìj.†.Tº‡Çó}%âi ô¢ØþL :Yhd}õt7+}¢{-–êw Ù`a ™g¸^­‡ SAŸtc¥ÞEÂ… 7TÏmÕ©5ˆ© ߎÃߟ~F©™åTÀ/w§Äÿ±wº*„ëÓ%i/Óö¼½«Vú@ëLü½Àød¡‘ ¥û™^ 80»aöíÃùMÆR$‡Ùï¿]b¢y…© ›>„ߣ ¡ •®æiÆiÙ{­ÙÖ‡£@s;=ÛØ\¶w‰­³[*èÓ¦¹&™=wö Í¿ Ot>[ˆlCò2[ø8'ž>Ñï)þ˜|ûh8ÇÙž·¾è€©‚Ãߟ‘Oøtþûés>úyIÔT w%tçñ~!Oºº.Ù`aõÝ{®vãvW`2ØúV2Ÿff5l=þ þÀ"Û˜) {‡Úøìu ï¯Â„럾 5Å_¹Cë«sYg¾)ž úpŸ¾Ÿk~7"„.Tº!üyç…xµû†ƒ*}{h2ÃM¿óAp2/\¼>ªk¥4ëÁY·VûŽ:>ZxhC쪷ü œáÐLÁñ],^¸x]ú-ýÔ‹© Ö×»/‘ÄÐ…Jשlª·g2Ûœ4þÔÍóá]Þ˜émÀ¿Íu\g¿7_§†uèd¡‘-©ÉÅ © Ÿeµ€•ÚÐú|9ƒ[Rž º yPB*]âì¸Õâ]îø±ïˆ\†Ð…J7fü:¾“:¬+l© ¿ÀßSÝלù`ç[+³õê_[ˆlKò ´·•-HÃv|‹.Þ~{—æºH¥‚=Œ¿a…?~]¦Ïóžï–Ÿ¿¡{Ft¡ÒuÙ¡¹|¥Ïts‹ôGéCèB¥[¯ðîÞ~ó1Ó]rÑvI5À"Ûüô¸É´TÐÍ—ü‰ÀºPéº y,ô†ov=–þ )•éÖ&ð )B*ÝXM§AP=°`üc×/úûS^™íìí)¯/ßÎKz}ùt^Mú±MÔTF*À†$îô -<´c<Î}î*]]ùS_û3HÚ¶š3Hßè´Ü(nÉþ'pÌJb\lãË›ÙÁæ%í8tCtà½{æÂC1$ÿþú Ç÷Í)Ç ÿ2¨Çùûm7Ê1/\¼ºÇOý<²×”ÙÖ‡GLJáâ%»á ¶ö0Þ…‡>¿=Œ„.Þ­i©ŽTÐ-?ÕŸ¦‰¡ •®úØÿð¹ŽTà¡Í²=Q„.^ŸõÃtÔÆÖYºè¯ íûÝw\)‚-D¶>ßë^‚?náçt9nØ:.L¸1ÏéÞv*ІEã …‡6Ä®{ñþÈæE·fŠ?²C*]~lØ[š£Z¢0½ ¥ •n _‹BøC§üüöoÕIî „À… 7D¿±Q*ïRA~Õ™}^Þ].€ÚÐú¯ÛNŒœf:´-¶GNCèB¥[Â×Îiì4³_Ÿ>}}ÞÆ; ` ‘m^ïkö l:¾{#×Ü9œÞ…Ò…J7„¯z¢â/cÅ¡{|ᣅ‡ÖÝЩ¯îèO‚ÍG°1/\¼>×§Ÿ~qì¦*© ¿Àßό̞×;û¤ž¿ îël!² É—³C±K`*Øê-sôðІÚ[-¡ìŽ·dô¹væo#鎷ðÑÂC«O"ücŸUj³Þ'dË»Õ|îVÛ Õ¶×«ó¯÷퀋Á otï.p,7l£¡d†Ï{ N¸á*FÀ… 7–ÿí™!^<øû”ùþ.ç|ÜáïrªÉû¸0áºìó‘ŒJ¾þñK¯~¼šH‹€ nÈ~ŒìTT*Ø/‹hün¥ûshpaÂõ]}ÏÎ2Ä›Z©`z²¨™Ý²…ÈÖ'ùzë¦Ê .¤¬ÐA]¡j\$.L¸!ûí={Rx!ìs…²Ã"pa½e.¤L˜Q0j`$.L¸1ÕÏA™×³RÁ¶Æækel!²uÁ·ó ²c— üýÛ™ni ^¸x}“9Ë©^Fúd“æ{´Ý:6³à„ó}]^œ"¿è½ýºï%ðº*¿+.L¸÷Ê ¬ÆyÖ÷¯\Ô±œï–‹:æù¿ýµB ç(„.Tº¾»ìù{½®Ä_“ÒíWûSAß·#v% ®o0û°óCv© =>#à„ªWßùð‡ö¿YiZ( €-D¶!ø±'Ö0¥}fç¯S%×ù~{È\<.L¸!ù^;Hý¾Qfs¥Ý7 ` ‘­ ~Ü,N*0è]=š/ô²èå…t›…Z·Vî-eh7 RA¿Ûæ—¡µ~°_ÔóÔ-%€-D¶1¿ÏP±® è^ß«ÔCDÀ… ·$Ÿj³üÁµˆL×gËÅ^>ÙguëëôYÎg ‘mI^}'äI„ëøx×ë«eû$ƒ.ÞØÕW~*pãðã:¶‘&ܘñûÊZ¤‚n®'Ä%„.Tº1Û/á‰9FK÷Çð÷—°ñÕ~iì„6Ì®Ù0ªoÁG ­®Ð¹ÿûv-T|Á뛋#T&\í 2÷ˆÆ0áÆ|¹ÏX‰ôTÀÇé7bùùåz9>Ð/èùš¥€º*7d¥7ßtûýòªµ»öšµ«í‡ì?Š?`[’£4xÍB*àÀâl¯¶ nˆŽÏšƒæÝ+‹Ó1§ƒ…6d¾]%݃L{~q–¯†[†¯C Ÿ^ðÉØ¾à„š—sŸü#"f?ƒðÂÅ[Ò¿_NeU§>Ú:Íèuü@¿ ç賎Ú›Ÿ^I»º)6'…ød¡‘u©‡³—óâc*ØÆIï¾°Á"Û< ÒŸ ¸q?ÑŸ£ nˆ~žÔ2TÀ­ÃçA K^¸xKú?qab®âÂ÷jþöA¦".L¸·ý&;-KññéßÎ#Ž"ýUpÚšå;Ý­H|Ñw/¿?À"[W|ìÁL™'ޜᵩâ‰6óÑÂCrÿ ópÝ<$Ü ¸ºPéúF~oñÇ ñ§,¢öÜ<Žà‡;Ÿ#xºy¢Ÿã8ÐE&\ÏátGà–76˜ó° Öø¥­ÎÜ•‰há¡Me{·àâ…ãR7Û*>&Æà…‹×gú4ü¹‚G ¹d¶±Fý!—¶Ù†à“mø÷î”P&ŸqáoÍZ›Ñ]ZxhCëu*/¼5ÝKM·oY§á­¸0á†èõíüI€kªoˆO\1xáâ ñ÷™\’ ô¤ì‰ªXèd¡‘-¥mÿöÚ¶Ú“B™\ßÛ³B|´ðкÖó_cŸèïgz¯Ç>ýÞ~[ˆlÝ(ÿ"9ÏÓ¿¹ÂÑ_ç ¿êíC7Íp^|ýpGxb¾½€ÈA mɽT–΃,P†¿|åáë-Õ'i ºP鯮²ÍȘzÒ@}V|³iäØBdëó|ùÈK°‚©ÀŸŽÄñµ‰×“ÐJ ^¸xKüœ\Iº:i<9¡¶Ù†ÞüP*ØïƒÈ¢“…F6¤žr¤9h3|àŽGÀ… ×ÎL§6Ö(EŸõñlf—š3Ù¥äOØÆ$_¾¥• ú0+Ëób¯Ó}Bó/è{ Ÿ-D¶.ùگѷTàÏú~ óAì0/\¼!>»<;}’µ(܃’r6XX`Cåug¯ÍT°G峟l)|´ðІÚ7‡“KÛ:üø0ấ²žéyáüTï- À"Û˜â;z‘>úy,½=R*؃^ÐÌîÙBdë‚oÃñ¹§Ð¼ÌL¾­Kš›ÉG mh IˆŒ®Ç"Yˆ¶Ù–ÞXÕ®# ‘Ñõïv¤!ØBdzO«½y·wýJ[ßýÝÊ"ØBd[‚׫Sܱ« 7ÝWwì*.L¸nnµþsím„RÁŽúæîGl!²Y~keË‹D¤ÿ"Ï _ç;Çéhá¡u¹÷3ÜμŸ— ¶y0ûo†Ð…J·dߊYþÔw{£‹§x±È}+%á#ØBd#É2¥‚­»?ް…È6§Ç˜Ò'Ú¨6ð‡Æøhá¡-±¬¸ýnKFóo`âÏ›áëz‡ŸØó'Ô:£¸0áêóL-ôM£—Õ:·ñÄ"žr½Ì¶žñ¹6ÚýNÿxþqÓG4€.Tº5¦0þPñ».ÍAŸ1„ëН÷B¨Â•®oŽG¾hÉ3ùSV­8¿ŸB' l(=Ò SÁ&ÉÖ«“äP厠 •®o[ øAÅúTœÐ]±/T¼1'ÿ¾tJ‹óg¶nÓ=ˆó°…È6¿¿^M¹é– 4pÈm£vÈ©™Ã¸0á†ä?0f5V*ȺÛü „,€-D¶%÷F“§n8Î"üpa ѫ'û3Y_Þ ¢e²ØBd[‚×+‚ÝùÚ f~€—¯€ ®çkÛó ¤æé“=½ì¬ïßáÛT—>šÀ… ·4?¯êé¹ÿõŽãÖ«@ËOø/x„Ð…J7ö—cd§>SÁ®¸Ž”m[ˆlUð¥ pÜYÄ‹nî,b ]¨tCø¿½•iÙ¾ n$qü龸0á†èûV¡÷Þ„ßÅÎÇôÁLøE°…È6§§ÎÒ'º×JcÝé>:XX`]æáVóýEe0û"Û”;œÁ"Û{ÚÙa¸T°Ïgùd¡‘ ©gzé~*ØHyÖcغÞ!x¡âÕüA ~Ñ¿¾4joãJ¿" 6òé«þéZ®¼¿éx­áÇ2äÝ\á…Š7Ö+?~› ¶Ñ?ÔwŽ` ‘m þޱ¢·©€ö›?î&\-}øG?v¡â)Ã>§‚]5r›cæ|²ÐÈÆDYá,|ÃY!T¼1QøQ­T°k6c{,ŽOÙ’z*ÏM^Äù¢›±,wÄ9†.Tº.üd´üÐñž:í\b4„.Tº!üV±Šž@3ü jÍ_ü‹'и0áºè?ä’ ¶1 þPQ[ˆlCð.cÅKŸSA×ø«¶Cà„ªO¨“ÛPšœ :ðí8üýéËŸãŽæ@gö¹·ìߢ.~:€-D¶1W8œÓÃU¾© ×çJüöé|:pÕ+zàùóÑÂC3e…C¢ƒ:˜jžS¦Jý­ù¶Ò7-a Ýon%#— òY–ÌÍ"òÑÂCëZÏ!¢šé§K1_B~?4„.Tº)šÇƒ~PnÌ™sÏ¥^ØLÜøôföûÃO—zù.pàÛ¯‚.óºA;b{ü6“ë{K{—ÚX˜{À±,Lº±2o¥Ã¬¢çTÀ§óaóožJFoû}R_? +|´ðкÜKóSh/d¤ÿ"ïg”áÛq‡gìù%¼‹„ nÈ>Œà6Ž_ÒJ¼¾ãì÷‡×" þ`Ür"~ÉU<ˆÅñÑÂCëûø2¡çqsW Û˜Þïì$¥l+}‚Ïð_‚*JÍèd¡‘ 74hØR¯• -<´¥uDÍ`*ðÀ o ÿ~ü:·c™“ïL%ü݈E{ÖgïKúvÒõ7`bèB¥ëËz«}&™žBdë³ýŒ|¨Ñ‰I‰[LåkÕðƒ¤-<´¡5zwä—3¼·ª’d˜cðÂÅÒ7wŸã ¥’ml-¾%üxÁcªÀ… 7öÄœî®; º>_¶Û‹a´üD*è/ð÷ÀVfïãûE=AU=€-D¶!9šøðÔd8´¿´·  ¯¯ÔWJ¶Ë(Lº1mÎ0×lL}T¿ý‰Å&ÜR~Ë9ìqR° ¾O%|yÁMÍùpaÂ-ÍßéUN™B*ÐÆ‡_ð}þ€Ÿ¹¾×O¨1ø¢ÁÕ+x[~{“ùå„»î6Ñu&ܘŠp*´o¯ÃËpä´s´  ¯Ïš½G¥÷\gcÐõi³;Ý™IÜ8ðü^X[ˆlCñiÂÎŒöò“ŒFv˜UÛa´fž!paÂõÛø ôM£—÷åoã‰z½ƒ£¬5Ó¡½«ßó…Ë7öÞy ­0áÆ§/èÄñ\neÐMlŸÑaõDN3Þ¬£}9Á o‰æ5Û F3ÛØfzJ*]—=·ø†æ¼#öÙAÜž5ŽxX ^¸xC|4ãæ¨5ÎlhÞÀô.”.Tº!ûé³r›Ð¦‚n<ÁçoŸ&\mŸ»çCHÑÔ·{ó¬U7ƒ.Þ˜òùá/b¶¦T~¸ ,-ËÀ.5¶Ë?õÇ™líï[ÄÐ…JWe_û¾äð'i.¸õíÒ4Axáâ éó£N¼ ©@+Õ{­$-<´!ö »ªžÍŇÎ#G„&Š/\¾¥?škvÔ…_thtmH£øÂå꯷;l¬&G© Oƒv3ébïû}RÏ_Ðç=Ÿ-D¶!ùyU™™HÛ<™Ü9•ºPé†ìûÀ.AMÛ*@Ïôý¸ÓOìõªìt¡ÒÕÜJþèU¼vaá½z1§.Tº1#zÀ°÷Fj/ºyn7Ó»PºPéºðœ2wÜæºèБÝÀï‚ùÂåêp€Æ‘ºðÃY7þÝ¢iÇw±xáâ«âŸ|N#±RùqÐ·Ë ?†~¼à‹® —ª?‚«áÚu8;ÚQ S×÷2åe[ˆlc–Ÿ¯K…G^pãôhf¿?|®•£¶¦|8Ì~øR5Þý¸‹Ù͸ºPéÆT‡ë8—»/:d 8®wGñ…Ë7Ô_ñRŽöœÿ…‡¬öœ^¸xµ@jÎ:æF,D¶1kjïpúSˆkõU 1‚-D¶.øØ×cü½7‰xÑ‘¾=‰C*ݶgà¢àTÀ5 ³oŽf%%.:t,5ð»`¾pùÆ´à[(K ¡—º?£²Ÿ/¤Q_K|PsˆÞ0 ®‹¾ôèEž†T© Ѥ—¿"à„ª×C³’ËÇM‰¯ÇÓƒdG]¨tKø œî ·âRA¯OšøûÓGøÔóÔf<`EΪ©–ÓFÀ… 7fÌÙ†‘øðÓ ‡b< ¬Ì‡ì$O+ˆ/\¾5´h=GûU˜Ì¶l¥vzJ*]O_-ëHß%… 7f̆ÏȾ½ 0ãlQw2µ0.L¸!{Cã2OÞp¹5éª «'oÄ.¿ª?³¨®ÔÚlš_Tˆ¡—º?£ë²¯ãËô öaLÜüvÉ ¼pñúÅäuŠ(¦KŸx`·\ÕÝR¯Œ€ nLøé½žy¸T€ÇðÎ̲ÁÂ"7t-ó$È3Z;žy_¸üªþÌzËR{è@‚é¥ò\z©û3º!û¾ðÃV© ¿À_÷Å‹}lwöI=Aßcøl!² ÉïU>¬lD*èf µ™Þ…Ò…J·„?#bƒålî“ ¸±ù[Ù°…È6ìÅ %Á%¹©`C#LïBéB¥[ýýB<+ñ– ¸^Éö$e&\}›ë¾—?pšé¦y꜆ЅJ7„?nµ†8“_FÀ4Q‹ˆùhá¡-­ë÷øýA¯ícÚ¥=èB*]~¯_&R_™ñzã‚ûž±ço¨Fc\˜pCö‘_ ˜ ¸~L?©¬Œ€ nˆ>Õ]Þ!ÞŒ7Wêƒo ^¸xÝdßâ<ž*ËÌVÔ¡N½Æ2„.Lº1í—j\àA ,Ó¡ó ¦ß¾}gcRÁÖ7›A¤¶ÙzµÀ¾üá*ݘéh5‚§¸2ÃÍeô ¼2/\¼%ýËc>‚‘ ¶a4³»@¶Ù†àçsÔ¿TÀ;ÌQ&Üý)ÁK¿:¨{ßëf†Z@B&ÝRžÀK¼WáO|´ðкÜGÛCì™™í!öºPé†ðÕž æ31©À#ç‘#e„.ÞÂÃÉÍiÚ‹mŽÍiÚºPé–ð hÆ´§¬.8` ´§¬Bà„¢Ï+|šnÚiª38•fíTRÃŽl!² É·J$ÙqÅ"p#ÆÓï"á„¢ïhœ×‘«ºèÀuäªbè¤ëºèîÒÞâÿdktÑÖ¨ê ÑÉB#Rg“”zŸ"t`9î‚ÄÐ…I7t¯>ÒžˆIüå |»ÚŽîâÐÂCr/h"¶Ç+nSA¯NWµp ]˜tK÷z© ?m—é¦×åOÛ…Ð…J×#?ý• ¶Ùy´£“…F6æ8?÷’ öë³jƈNÙ: ôŸ xõüq¤,øhá¡ ¹ˆ W*ðghhúzž‹Á ¯‹?õè5ž/®M8öè](]˜tC÷€¸\*àÕÕêˆ'òÑÂCr×Í Y‹[t¸²F=I‹ºPé†ð+æù7U¾¦‚¬QOÕn]˜tC÷­’±xÉÍpÃìo‡w‘pa Ñw4Üâ‰äfzuôÄqØÂcëŠÏ=Z_ä ,f:0žžÀb]˜tC÷3ßJ}ÿ1ðY­Áö?\Á"ÛRüø…s:ý½Ñ –Ýö…-ç³t}a˺0éÆž/• òYô¥™åƒà-<´¡õ6¡v®'Èñ/òw3wËe½Ã/ìë7ôƒ".L¸!ûG(ÍîµÈü|«.÷ïuúþÈ|]¨t=2¿ôXQ/®“éÀ¾è‰ë„Ð…I×'ürkiÉóÖSV릮Võ,€ nÈ~{Û†“0Núu#pظyî¶Ù†Þ+æwùÂ:™,QOX'„.Lº¡{@p$pÕ}Ôᣅ‡¶ä>ÈÆn*ÐÃüûÝʃ9{¿ßá÷sT‹1.L¸!ù>C;¹#õšÑõÑ‘{ ` ‘mè}ÜìPV+©TÐ_àïÅ}ž*ÇûE=AßSøl!²uÉ׈À_*èÕä Y°…Ç6Ÿ6ˆíȵft}q:’­l!² ½ç±Hܰ=ÄZ"à„¢G„BSA¯,!_7€-<¶¡øí61­ Eú¤¿Àß×ÐÉÞ‡þÎÎÔó'Ô³3€-D¶!ùíQhR¢2ìú–èɰFÀ…×%ßòå fX(p`Kt´"à„[¢Ït.ðQMT>p=ØBd[Šcžˆy¦W¡vÈÛPüfÑ:Œ¦‚þß¶òd†ö‹zþ‚®8Ÿ-D¶!yDì3ôêdñDmØÂcŠooדùLZN>ذ…ÈÖõÞoÇ2­åg*èÀâµÅ©Îð¶Ù†äóA÷™S7v¬Þ~\˜pCôóª³cS*ØÆ€6³»@¶Ù†àëo,«¶±¨ 2X “¶@Õ–l!² ÉßG'åò`ú/¯y½ðH' lè¼/ì¢ØT°ûÛš$–ó†Ð…J7dÏoOm¬_öQ-Œ´9ª ¬A›¸0áú€=–»ö¤õ2»âóäõ"àB„[’ã1„M;•W]tÔŸµÓ­dwl!² ɇ´<áîf©`\{W¶¶Ù†à Ý×ãjucfŸï¸N_—OŽ~ Æ —ªéƒ*þðqVýëËUzW¤*Á—®ÍìÚœñåk#àB„[Kéý>ÑWK÷AV%³-kñA^%„.TºúÌø?ü°„Š7&ͺ€Üt/lààhoÀ"Ûü|ê–èE§=/¿A…?SeÍSe»ÃOìùú4€ ®J¾÷¨‘Þ^w{±‘å¹ë«_»D„*^µ1Zð‡þõ¥öïqvn8ìúIÝï"áB„«‡Ý¿4Œ¨PñÆF0Ý’s_–Ž— Þì€tK*àêL÷§‰ÐÂCCyuÌòáT°Y8öú$×*ŸƒðBÅ{:ŽTü¨Åv÷óIú'Y.}K_+ ´ÝÅ¡…‡6ÑŠÄt]õ2»~ 9 fBàB„èº,¡â s>wd¹ÒþtÚE·*øÓi1t¡Òuá‡~­‹ö”ׯžÓí ¯´ðІܘ í*Å¿àÈõ-@ÝabðBÅ[ÊO М€¹ØÀYÚœ€‰` ‘mžÛ‡2ã:©€/jHÚŠ` ‘m(~žÑÖ!êÔ_të òGêcèB¥W…gƌ٭5ÚëŽ`+’»ØºàãüÎÓºL¥‚þO]ù š>Ø/êù åݲ…È6$§{¢é­Ú[~ï™ Ø’ùe1û3¤‚­oSþ¾l!² ÁÏ·¨·zS7ÿuä¸0áºèߨM»º8ÛMq:YhdCê±fù<¬Ô}W‰€ n‰Î/ }Ã;;ù 4ÕŠæäƒØBdƒ¹nl+9ìêÂo·íéd¡‘ ©7(ùÖT#wƒÃO e•©ÀOºkï w¡taÒQ=oá ÙR>ÞQoºOGõ}T™î保o<ª„Ð…J×gÍÜÛ=ˆä%2º~\8l!² ½±Ö·MµC78\ÓPn– <°xjåpº£—B7F5¢P.}ÒO÷Tá͵vÉB!s­¥ÇƒPH[ˆlc®`-S›Šnð% 8)øúTtUVÁtW±,ƒnŒêY@@. I¾~ûøZóÇѹ 7»ѹ¸0áúŒYÆ3MlÔ” ¶1 Íì.-D¶!ø„z¦-•©ÀKÔSÓ]…Û º!|¥‡Õu˜¶ç´2y:#jV‹ÚÒúQ 9£© ¿Àßóf™=ÎwöýÕ}†óÙBd’o3¸‘Ú¦¥¦Y2ØavÈ"[/ÂÍð¹V¨0éúdY,©Ýž‘Ëäú®Òž’㣅‡6´žVpaNÚ$TãЙ Lp˜Ý²…ÈÖæ:£îaƒ—"Lº1YÖJ²üA$³µEÿ B' lIm_,»Ð퉾L®ï&í™>>ZxhCëõ2áV>©`{Is ¢¶Ù†à‰TÀûßbo^$…Ú8rޝ[˜t}ªlc%ôþ ”ÙÆ4ôG€ØBd‚ÃI OiB¦÷·á¤'ñ…Ë·Ô?Ø~*ØF˘` ‘m¾½§;©ìÆ®5Ùñ=¶ÚK¢‚l!²Á„ÓWžêž­ÞNÖÃï‚ùÂå[ê¿LæmµT°Ío÷ß³Ûêw¾Ü´£ÐuÙ÷‘^æófOµÚ{t(³ =:À"ÛL8Éä)NÊthð”'ñ…Ë7ÔßQg£=ÙÀ´i°…È6G󮚰L‡¦K¿ æ —¯«ð}ÔT°{-~é÷¬éd¡‘ ©gx$=nõ‰·*ÃyÕ1x¡âkÚ3]ÓïºY@ú»Þ.´%v@õc*èÈ:rUWñ…Ë7Ô_Í› ÒsWåWþ…›Ÿã£…‡6´Þj}üÑÌ®žDí±:YhdCjÀƒ~Ù9êÍEv‚øÂå[ú£)½ª@¯ÛÎthSlàwÁ|áòUõÏ„±KKºƒ _×ÝZ†X¹?_Ø4Ѿ¼èæu‡/?Å"Á… 7dŸj•îãÅ®HÍáE>YhdCêyƒQGpñâC‡#¸Å.ßÐc]ž›:„ø]0_¸|C}~ˆ4ìê¢mìòÉB#Rï´7­]N*èz±^f¿Òb7ö‹zþ‚ZŒ` ‘­K^·]ÄѺíò ŠC&ÝÐ}|ïéœ Poô<Ø–?ly±_fdF-ùd¡‘Q\àð‚'jyñ‘Yè‰ZFñ…ËWßÛøÇ?£t³ÎߦÌ?Ã?þ,¤yý¯ÿßôï<Úug4„.Tº15WÜ(u$Ž.þyVÏßÛ×:ø]0_¸|CÿmÁ6xøV×/zZÚÛ;¯'xƒ*ÞÐ~ó›žÀuæC{¯'pÄ.ßÒËI4—9\äú.Ü\ç€Z×zº¥!97LS~]Ϙ¾Ýð_Œ` ‘mè=âþµ'tšùÐÚôOƒøÂåúßZ½rj¿R§ß}ëO`&ÃÇíþž?¡ž¨paÂõh[}×裮ËA‡ nLEû¡XÂ4cÇE{,4²¥ó;ÚNI¤‚<¾¶ò/Ž×ƒ¼-<´¡õ[æ½#±1íèáàÊkÄà…Š·´ÇB.íõÓ/Ú øhá¡u­g~L:luý‘t:YhdCê Oz¢è™-KO=ˆ/\¾¡ÿ:O¢7zÇž(WæCÒxÂ\A|áòõ¡]Î@äly’½™ÿB¯%¿¾Þx L5FCè¤Êæ€+5uâëß>õº2ê‘"ÜPý°ÿY©Œ6\Å >}Â_Øó'Ô€n\˜pÝùo ] F-GÍ?o‡ ®ë²æíeÝõ2ž9ãO£éçÏüºÿ·þoÿû·†^6Áÿ}&„.Tú)Í ÿ»JWÜ q¥_2Øcf}S×j]˜t}\g0 ÓžyÉhd5-ÚjRýö¸0áÆ>€ÓW>¨¾Çz^ràÒ…I7&㎧žLIæKiÓªz4…Ð…IוßúwÀ”&HùÜ`¾}¶?¶ÁG mi½Ðó:©€O¿1*bB*€-D¶¥øJNb¤lˆ»ºÝŠÐ…I×¹ú¡~{™§{éù†<5 ˜ 80Û³—ÛŸþ¸,¤C:–GÐar¡Ä|úêÛò>„öŸñŸ¯oçt¡Ò-fF-W,?mT=üçA7-T[:.D¸¡úFwÚ` ¬¤Yüy!¸ ¥ “nì8}R¿]-ªÛ–½÷ ‘­¾€ðŽd&ÝXGGHÂ*|`Ðczº-„.Lº®ü>Ã.¯+–ùÀ×/º6꜡ “n(¿žyâEüT°_£úõÞ݃l!² Áwp!µ$ïRA×?ýQâ1„.Lº®ûq6çfïRA¯»+ñB&ÝÐ}­ÅyÚSx©€ë¦ÌƒÜc[ˆlCñ­hO¦|9Ì~øÁO ¥O80É=¹¯¸áß'Ë¿1û¯ïáTœAJ˜,m©¯6v[œÄ¶‡—'žšJøt~ût0ŒÑ’ÛI˜è­y©0º0éÖ”y÷ù¢]èMýþ>ª™=¯wöI=á«kÄ"Û’üL–P{Ù¤‚~Ÿ.¤>]˜tK÷€^jÿvWþ1‚îÐÝ•MšÐZVøžO*ØÓ»PºPé–ì ÈTЫ¤+uÊg m(Žîë®´)º­»Ò¦p!Â-ÍQç×qùqÆHÇõǺPé–ìyÓTЫ‹Ô•ñ峅ǶG mð2ÇTÀ¡Ù‚ã»X¼Pñ–òRfzc~H3;¹Ág ‘JN*(%ÔÿþSviC½”ýÝ~«sýI ?7Hj?.L¸%ûÄ„§‚n¾Uó ˆA*½*<µ6¶ÔÕÆ¦ºqøRùgxKù?1fÀ÷¤¿>~a‡{ùl!²Pï‡ä¤¬O)9t292VôRögô¦¹ÎŒøÞæŒáu´°_‚_.[á±:píŠó>f[swÂqÞe‡ÍGœ7‚.TzUxêÅRwhTq|)<_*ÿ o)Å’}ÅwËûVþð­ÐÌï"áB„’¯ü@uú„WwGW€ŽÚRwáõwíáõºPé–ðh©z`·ñ×U×}ü¼PñUåkËÉW sUkgôUÃÀKÑŸÀ-ÉÉ“RAžO·ŽîâÐÂC[ZðŽîÉ#­Õ¸ý£|üºþU FÐ…J¯N˜š§ç++¹}ºå/ùîÀ¿Šî„[’CÝE|õ0ûŽ}¸« &.D¸!yDì1}Ò!sÑ8  “né>°³Ö©`×'Œ+Û"¼*99ÃQªYŒžüL¾TþÞ¨¼» ,É@ú:iœlkÒÜÂ_mŒדNö+9}7íÜO € ni^m1ú(¿qlðT÷ä7BðBÅë €^Ki\4g£?ÉË˺ëOîòoHÇqü÷?Ïÿê{e?,ðŸ‚þÿ¼ÈÝ•gB÷nam-1.15/ex/att.README0000664000076400007660000000125106611500004013146 0ustar tomhnsnamTrace file: att.nam.gz Purpose: demonstrate ns-2's capability in large-scale simulations Topology: ~470 nodes and ~500 links simulated ISP topology with various bandwidth and delay Web Client: 420 of them, all connected to one modem pool/node in a star graph Web Server: 40 of them Traffic: - one long-lasting tcp connection in blue - 200 web sessions issued by randomly selected web clients in an exponential interval - web requests received by randomly selected web servers - web servers reply with web object size in heavy-tailed distribution. Memory Consumption: 871MB to complete the simulation Polly Huang, Wed Oct 14 11:54:52 PDT 1998 huang@isi.edu nam-1.15/ex/DSR.nam0000664000076400007660000252722607072460735012667 0ustar tomhnsnamW -t * -x 670 -y 670 n -t * -s 0 -x 143.43750921878001 -y 94.217567273200004 -Z 0 -z 20 -v circle -c black n -t * -s 1 -x 304.65324424678403 -y 167.07632596983501 -Z 0 -z 20 -v circle -c black n -t * -s 2 -x 81.810723227699 -y 152.82536050561001 -Z 0 -z 20 -v circle -c black n -t * -s 3 -x 325.834153339995 -y 354.615563074325 -Z 0 -z 20 -v circle -c black n -t * -s 4 -x 23.768638624379001 -y 159.50938100993099 -Z 0 -z 20 -v circle -c black V -t * -v 1.0a5 -a 0 A -t * -n 1 -p 0 -o 0xffffffff -c 31 -a 1 A -t * -h 1 -m 2147483647 -s 0 + -t 82.557023746 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 0 -k AGT - -t 82.557023746 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 0 -k AGT n -t 82.557023746 -s 2 -S COLOR -c green -o black h -t 82.557023746 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 0 -k AGT + -t 82.561822398 -s 2 -d -1 -p DSR -e 76 -c 2 -a 0 -i 1 -k MAC - -t 82.561822398 -s 2 -d -1 -p DSR -e 76 -c 2 -a 0 -i 1 -k MAC n -t 82.561822398 -s 2 -S COLOR -c green -o black h -t 82.561822398 -s 2 -d -1 -p DSR -e 76 -c 2 -a 0 -i 1 -k MAC n -t 82.562126593 -s 4 -S COLOR -c green -o black r -t 82.562126593 -s 4 -d -1 -p DSR -e 24 -c 2 -a 0 -i 1 -k MAC n -t 82.562126682 -s 0 -S COLOR -c green -o black r -t 82.562126682 -s 0 -d -1 -p DSR -e 24 -c 2 -a 0 -i 1 -k MAC n -t 82.562127143 -s 1 -S COLOR -c green -o black r -t 82.562127143 -s 1 -d -1 -p DSR -e 24 -c 2 -a 0 -i 1 -k MAC + -t 82.630689289 -s 2 -d -1 -p DSR -e 76 -c 2 -a 0 -i 3 -k MAC - -t 82.630689289 -s 2 -d -1 -p DSR -e 76 -c 2 -a 0 -i 3 -k MAC n -t 82.630689289 -s 2 -S COLOR -c green -o black h -t 82.630689289 -s 2 -d -1 -p DSR -e 76 -c 2 -a 0 -i 3 -k MAC n -t 82.630993484 -s 4 -S COLOR -c green -o black r -t 82.630993484 -s 4 -d -1 -p DSR -e 24 -c 2 -a 0 -i 3 -k MAC n -t 82.630993573 -s 0 -S COLOR -c green -o black r -t 82.630993573 -s 0 -d -1 -p DSR -e 24 -c 2 -a 0 -i 3 -k MAC n -t 82.630994034 -s 1 -S COLOR -c green -o black r -t 82.630994034 -s 1 -d -1 -p DSR -e 24 -c 2 -a 0 -i 3 -k MAC + -t 82.631291342 -s 1 -d -1 -p DSR -e 84 -c 2 -a 0 -i 3 -k MAC - -t 82.631291342 -s 1 -d -1 -p DSR -e 84 -c 2 -a 0 -i 3 -k MAC n -t 82.631291342 -s 1 -S COLOR -c green -o black h -t 82.631291342 -s 1 -d -1 -p DSR -e 84 -c 2 -a 0 -i 3 -k MAC n -t 82.631627931 -s 0 -S COLOR -c green -o black r -t 82.631627931 -s 0 -d -1 -p DSR -e 32 -c 2 -a 0 -i 3 -k MAC n -t 82.631627971 -s 3 -S COLOR -c green -o black r -t 82.631627971 -s 3 -d -1 -p DSR -e 32 -c 2 -a 0 -i 3 -k MAC n -t 82.631628086 -s 2 -S COLOR -c green -o black r -t 82.631628086 -s 2 -d -1 -p DSR -e 32 -c 2 -a 0 -i 3 -k MAC n -t 82.631628278 -s 4 -S COLOR -c green -o black r -t 82.631628278 -s 4 -d -1 -p DSR -e 32 -c 2 -a 0 -i 3 -k MAC + -t 82.633449411 -s 4 -d -1 -p DSR -e 84 -c 2 -a 0 -i 3 -k MAC - -t 82.633449411 -s 4 -d -1 -p DSR -e 84 -c 2 -a 0 -i 3 -k MAC n -t 82.633449411 -s 4 -S COLOR -c green -o black h -t 82.633449411 -s 4 -d -1 -p DSR -e 84 -c 2 -a 0 -i 3 -k MAC n -t 82.633785605 -s 2 -S COLOR -c green -o black r -t 82.633785605 -s 2 -d -1 -p DSR -e 32 -c 2 -a 0 -i 3 -k MAC n -t 82.633785865 -s 0 -S COLOR -c green -o black r -t 82.633785865 -s 0 -d -1 -p DSR -e 32 -c 2 -a 0 -i 3 -k MAC n -t 82.633786347 -s 1 -S COLOR -c green -o black r -t 82.633786347 -s 1 -d -1 -p DSR -e 32 -c 2 -a 0 -i 3 -k MAC + -t 82.637151180 -s 0 -d -1 -p DSR -e 84 -c 2 -a 0 -i 3 -k MAC - -t 82.637151180 -s 0 -d -1 -p DSR -e 84 -c 2 -a 0 -i 3 -k MAC n -t 82.637151180 -s 0 -S COLOR -c green -o black h -t 82.637151180 -s 0 -d -1 -p DSR -e 84 -c 2 -a 0 -i 3 -k MAC n -t 82.637487463 -s 2 -S COLOR -c green -o black r -t 82.637487463 -s 2 -d -1 -p DSR -e 32 -c 2 -a 0 -i 3 -k MAC n -t 82.637487634 -s 4 -S COLOR -c green -o black r -t 82.637487634 -s 4 -d -1 -p DSR -e 32 -c 2 -a 0 -i 3 -k MAC n -t 82.637487769 -s 1 -S COLOR -c green -o black r -t 82.637487769 -s 1 -d -1 -p DSR -e 32 -c 2 -a 0 -i 3 -k MAC + -t 82.640587592 -s 3 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC - -t 82.640587592 -s 3 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 82.640587592 -s 3 -S COLOR -c green -o black h -t 82.640587592 -s 3 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 82.640908221 -s 1 -S COLOR -c green -o black r -t 82.640908221 -s 1 -d -1 -p ARP -e 28 -c 2 -a 0 -i 0 -k MAC + -t 82.640963221 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 82.640963221 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 82.640963221 -s 1 -S COLOR -c green -o black h -t 82.640963221 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 82.641139850 -s 3 -S COLOR -c green -o black r -t 82.641139850 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 82.641149850 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 82.641149850 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 82.641149850 -s 3 -S COLOR -c green -o black h -t 82.641149850 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 82.641302479 -s 1 -S COLOR -c green -o black r -t 82.641302479 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 82.641352479 -s 1 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC - -t 82.641352479 -s 1 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 82.641352479 -s 1 -S COLOR -c green -o black h -t 82.641352479 -s 1 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 82.641673108 -s 3 -S COLOR -c green -o black r -t 82.641673108 -s 3 -d -1 -p ARP -e 28 -c 2 -a 0 -i 0 -k MAC + -t 82.641683108 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 82.641683108 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 82.641683108 -s 3 -S COLOR -c green -o black h -t 82.641683108 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 82.641835737 -s 1 -S COLOR -c green -o black r -t 82.641835737 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 82.642225108 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 82.642225108 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 82.642225108 -s 3 -S COLOR -c green -o black h -t 82.642225108 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 82.642401737 -s 1 -S COLOR -c green -o black r -t 82.642401737 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 82.642411737 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 82.642411737 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 82.642411737 -s 1 -S COLOR -c green -o black h -t 82.642411737 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 82.642564366 -s 3 -S COLOR -c green -o black r -t 82.642564366 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 82.642614366 -s 3 -d 1 -p DSR -e 96 -c 2 -a 0 -i 4 -k MAC - -t 82.642614366 -s 3 -d 1 -p DSR -e 96 -c 2 -a 0 -i 4 -k MAC n -t 82.642614366 -s 3 -S COLOR -c green -o black h -t 82.642614366 -s 3 -d 1 -p DSR -e 96 -c 2 -a 0 -i 4 -k MAC n -t 82.642998995 -s 1 -S COLOR -c green -o black r -t 82.642998995 -s 1 -d 1 -p DSR -e 44 -c 2 -a 0 -i 4 -k MAC + -t 82.643008995 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 82.643008995 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 82.643008995 -s 1 -S COLOR -c green -o black h -t 82.643008995 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 82.643161625 -s 3 -S COLOR -c green -o black r -t 82.643161625 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 82.643650995 -s 1 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC - -t 82.643650995 -s 1 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 82.643650995 -s 1 -S COLOR -c green -o black h -t 82.643650995 -s 1 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 82.643971585 -s 0 -S COLOR -c green -o black r -t 82.643971585 -s 0 -d -1 -p ARP -e 28 -c 2 -a 0 -i 0 -k MAC n -t 82.643971625 -s 3 -S COLOR -c green -o black r -t 82.643971625 -s 3 -d -1 -p ARP -e 28 -c 2 -a 0 -i 0 -k MAC n -t 82.643971740 -s 2 -S COLOR -c green -o black r -t 82.643971740 -s 2 -d -1 -p ARP -e 28 -c 2 -a 0 -i 0 -k MAC n -t 82.643971932 -s 4 -S COLOR -c green -o black r -t 82.643971932 -s 4 -d -1 -p ARP -e 28 -c 2 -a 0 -i 0 -k MAC + -t 82.644026740 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 82.644026740 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 82.644026740 -s 2 -S COLOR -c green -o black h -t 82.644026740 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 82.644203484 -s 1 -S COLOR -c green -o black r -t 82.644203484 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 82.644213484 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 82.644213484 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 82.644213484 -s 1 -S COLOR -c green -o black h -t 82.644213484 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 82.644366228 -s 2 -S COLOR -c green -o black r -t 82.644366228 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 82.644416228 -s 2 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC - -t 82.644416228 -s 2 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 82.644416228 -s 2 -S COLOR -c green -o black h -t 82.644416228 -s 2 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 82.644736973 -s 1 -S COLOR -c green -o black r -t 82.644736973 -s 1 -d -1 -p ARP -e 28 -c 2 -a 0 -i 0 -k MAC + -t 82.644746973 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 82.644746973 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 82.644746973 -s 1 -S COLOR -c green -o black h -t 82.644746973 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 82.644899717 -s 2 -S COLOR -c green -o black r -t 82.644899717 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 82.645388973 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 82.645388973 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 82.645388973 -s 1 -S COLOR -c green -o black h -t 82.645388973 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 82.645565717 -s 2 -S COLOR -c green -o black r -t 82.645565717 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 82.645575717 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 82.645575717 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 82.645575717 -s 2 -S COLOR -c green -o black h -t 82.645575717 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 82.645728461 -s 1 -S COLOR -c green -o black r -t 82.645728461 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 82.645778461 -s 1 -d 2 -p DSR -e 96 -c 2 -a 0 -i 4 -k MAC - -t 82.645778461 -s 1 -d 2 -p DSR -e 96 -c 2 -a 0 -i 4 -k MAC n -t 82.645778461 -s 1 -S COLOR -c green -o black h -t 82.645778461 -s 1 -d 2 -p DSR -e 96 -c 2 -a 0 -i 4 -k MAC n -t 82.646163206 -s 2 -S COLOR -c green -o black r -t 82.646163206 -s 2 -d 2 -p DSR -e 44 -c 2 -a 0 -i 4 -k MAC + -t 82.646173206 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 82.646173206 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 82.646173206 -s 2 -S COLOR -c green -o black h -t 82.646173206 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 82.646325950 -s 1 -S COLOR -c green -o black r -t 82.646325950 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 82.646935206 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 82.646935206 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 82.646935206 -s 2 -S COLOR -c green -o black h -t 82.646935206 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 82.647111950 -s 1 -S COLOR -c green -o black r -t 82.647111950 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 82.647121950 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 82.647121950 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 82.647121950 -s 1 -S COLOR -c green -o black h -t 82.647121950 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 82.647274694 -s 2 -S COLOR -c green -o black r -t 82.647274694 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 82.647324694 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 0 -k MAC - -t 82.647324694 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 0 -k MAC n -t 82.647324694 -s 2 -S COLOR -c green -o black h -t 82.647324694 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 0 -k MAC n -t 82.649709439 -s 1 -S COLOR -c green -o black r -t 82.649709439 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 0 -k MAC + -t 82.649719439 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 82.649719439 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 82.649719439 -s 1 -S COLOR -c green -o black h -t 82.649719439 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 82.649872183 -s 2 -S COLOR -c green -o black r -t 82.649872183 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 82.650301439 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 82.650301439 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 82.650301439 -s 1 -S COLOR -c green -o black h -t 82.650301439 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 82.650478068 -s 3 -S COLOR -c green -o black r -t 82.650478068 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 82.650488068 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 82.650488068 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 82.650488068 -s 3 -S COLOR -c green -o black h -t 82.650488068 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 82.650640697 -s 1 -S COLOR -c green -o black r -t 82.650640697 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 82.650690697 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 0 -k MAC - -t 82.650690697 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 0 -k MAC n -t 82.650690697 -s 1 -S COLOR -c green -o black h -t 82.650690697 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 0 -k MAC n -t 82.653075326 -s 3 -S COLOR -c green -o black r -t 82.653075326 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 0 -k MAC + -t 82.653085326 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 82.653085326 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 82.653085326 -s 3 -S COLOR -c green -o black h -t 82.653085326 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 82.653100326 -s 3 -S COLOR -c green -o black r -t 82.653100326 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 0 -k AGT n -t 82.653237955 -s 1 -S COLOR -c green -o black r -t 82.653237955 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 83.641695347 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 5 -k AGT - -t 83.641695347 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 5 -k AGT n -t 83.641695347 -s 2 -S COLOR -c green -o black h -t 83.641695347 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 5 -k AGT + -t 83.641770347 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 83.641770347 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 83.641770347 -s 2 -S COLOR -c green -o black h -t 83.641770347 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 83.641947091 -s 1 -S COLOR -c green -o black r -t 83.641947091 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 83.641957091 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 83.641957091 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 83.641957091 -s 1 -S COLOR -c green -o black h -t 83.641957091 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 83.642109836 -s 2 -S COLOR -c green -o black r -t 83.642109836 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 83.642159836 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 5 -k MAC - -t 83.642159836 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 5 -k MAC n -t 83.642159836 -s 2 -S COLOR -c green -o black h -t 83.642159836 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 5 -k MAC n -t 83.644544580 -s 1 -S COLOR -c green -o black r -t 83.644544580 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 5 -k MAC + -t 83.644554580 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 83.644554580 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 83.644554580 -s 1 -S COLOR -c green -o black h -t 83.644554580 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 83.644707324 -s 2 -S COLOR -c green -o black r -t 83.644707324 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 83.645296580 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 83.645296580 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 83.645296580 -s 1 -S COLOR -c green -o black h -t 83.645296580 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 83.645473209 -s 3 -S COLOR -c green -o black r -t 83.645473209 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 83.645483209 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 83.645483209 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 83.645483209 -s 3 -S COLOR -c green -o black h -t 83.645483209 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 83.645635838 -s 1 -S COLOR -c green -o black r -t 83.645635838 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 83.645685838 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 5 -k MAC - -t 83.645685838 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 5 -k MAC n -t 83.645685838 -s 1 -S COLOR -c green -o black h -t 83.645685838 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 5 -k MAC n -t 83.648070467 -s 3 -S COLOR -c green -o black r -t 83.648070467 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 5 -k MAC + -t 83.648080467 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 83.648080467 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 83.648080467 -s 3 -S COLOR -c green -o black h -t 83.648080467 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 83.648095467 -s 3 -S COLOR -c green -o black r -t 83.648095467 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 5 -k AGT n -t 83.648233096 -s 1 -S COLOR -c green -o black r -t 83.648233096 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 85.217448169 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 6 -k AGT - -t 85.217448169 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 6 -k AGT n -t 85.217448169 -s 2 -S COLOR -c green -o black h -t 85.217448169 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 6 -k AGT + -t 85.217523169 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 85.217523169 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 85.217523169 -s 2 -S COLOR -c green -o black h -t 85.217523169 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 85.217699913 -s 1 -S COLOR -c green -o black r -t 85.217699913 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 85.217709913 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 85.217709913 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 85.217709913 -s 1 -S COLOR -c green -o black h -t 85.217709913 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 85.217862658 -s 2 -S COLOR -c green -o black r -t 85.217862658 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 85.217912658 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 6 -k MAC - -t 85.217912658 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 6 -k MAC n -t 85.217912658 -s 2 -S COLOR -c green -o black h -t 85.217912658 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 6 -k MAC n -t 85.220297402 -s 1 -S COLOR -c green -o black r -t 85.220297402 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 6 -k MAC + -t 85.220307402 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 85.220307402 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 85.220307402 -s 1 -S COLOR -c green -o black h -t 85.220307402 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 85.220460146 -s 2 -S COLOR -c green -o black r -t 85.220460146 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 85.220629402 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 85.220629402 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 85.220629402 -s 1 -S COLOR -c green -o black h -t 85.220629402 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 85.220806031 -s 3 -S COLOR -c green -o black r -t 85.220806031 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 85.220816031 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 85.220816031 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 85.220816031 -s 3 -S COLOR -c green -o black h -t 85.220816031 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 85.220968660 -s 1 -S COLOR -c green -o black r -t 85.220968660 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 85.221018660 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 6 -k MAC - -t 85.221018660 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 6 -k MAC n -t 85.221018660 -s 1 -S COLOR -c green -o black h -t 85.221018660 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 6 -k MAC n -t 85.223403289 -s 3 -S COLOR -c green -o black r -t 85.223403289 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 6 -k MAC + -t 85.223413289 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 85.223413289 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 85.223413289 -s 3 -S COLOR -c green -o black h -t 85.223413289 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 85.223428289 -s 3 -S COLOR -c green -o black r -t 85.223428289 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 6 -k AGT n -t 85.223565918 -s 1 -S COLOR -c green -o black r -t 85.223565918 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 87.723999836 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 7 -k AGT - -t 87.723999836 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 7 -k AGT n -t 87.723999836 -s 2 -S COLOR -c green -o black h -t 87.723999836 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 7 -k AGT + -t 87.724074836 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 87.724074836 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 87.724074836 -s 2 -S COLOR -c green -o black h -t 87.724074836 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 87.724251580 -s 1 -S COLOR -c green -o black r -t 87.724251580 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 87.724261580 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 87.724261580 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 87.724261580 -s 1 -S COLOR -c green -o black h -t 87.724261580 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 87.724414324 -s 2 -S COLOR -c green -o black r -t 87.724414324 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 87.724464324 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 7 -k MAC - -t 87.724464324 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 7 -k MAC n -t 87.724464324 -s 2 -S COLOR -c green -o black h -t 87.724464324 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 7 -k MAC n -t 87.726849069 -s 1 -S COLOR -c green -o black r -t 87.726849069 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 7 -k MAC + -t 87.726859069 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 87.726859069 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 87.726859069 -s 1 -S COLOR -c green -o black h -t 87.726859069 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 87.727011813 -s 2 -S COLOR -c green -o black r -t 87.727011813 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 87.727381069 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 87.727381069 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 87.727381069 -s 1 -S COLOR -c green -o black h -t 87.727381069 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 87.727557698 -s 3 -S COLOR -c green -o black r -t 87.727557698 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 87.727567698 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 87.727567698 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 87.727567698 -s 3 -S COLOR -c green -o black h -t 87.727567698 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 87.727720327 -s 1 -S COLOR -c green -o black r -t 87.727720327 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 87.727770327 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 7 -k MAC - -t 87.727770327 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 7 -k MAC n -t 87.727770327 -s 1 -S COLOR -c green -o black h -t 87.727770327 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 7 -k MAC n -t 87.730154956 -s 3 -S COLOR -c green -o black r -t 87.730154956 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 7 -k MAC + -t 87.730164956 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 87.730164956 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 87.730164956 -s 3 -S COLOR -c green -o black h -t 87.730164956 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 87.730179956 -s 3 -S COLOR -c green -o black r -t 87.730179956 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 7 -k AGT n -t 87.730317585 -s 1 -S COLOR -c green -o black r -t 87.730317585 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 89.480302783 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 8 -k AGT - -t 89.480302783 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 8 -k AGT n -t 89.480302783 -s 2 -S COLOR -c green -o black h -t 89.480302783 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 8 -k AGT + -t 89.480377783 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 89.480377783 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 89.480377783 -s 2 -S COLOR -c green -o black h -t 89.480377783 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 89.480554528 -s 1 -S COLOR -c green -o black r -t 89.480554528 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 89.480564528 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 89.480564528 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 89.480564528 -s 1 -S COLOR -c green -o black h -t 89.480564528 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 89.480717272 -s 2 -S COLOR -c green -o black r -t 89.480717272 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 89.480767272 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 8 -k MAC - -t 89.480767272 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 8 -k MAC n -t 89.480767272 -s 2 -S COLOR -c green -o black h -t 89.480767272 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 8 -k MAC n -t 89.483152016 -s 1 -S COLOR -c green -o black r -t 89.483152016 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 8 -k MAC + -t 89.483162016 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 89.483162016 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 89.483162016 -s 1 -S COLOR -c green -o black h -t 89.483162016 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 89.483314761 -s 2 -S COLOR -c green -o black r -t 89.483314761 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 89.483464016 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 89.483464016 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 89.483464016 -s 1 -S COLOR -c green -o black h -t 89.483464016 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 89.483640645 -s 3 -S COLOR -c green -o black r -t 89.483640645 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 89.483650645 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 89.483650645 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 89.483650645 -s 3 -S COLOR -c green -o black h -t 89.483650645 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 89.483803274 -s 1 -S COLOR -c green -o black r -t 89.483803274 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 89.483853274 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 8 -k MAC - -t 89.483853274 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 8 -k MAC n -t 89.483853274 -s 1 -S COLOR -c green -o black h -t 89.483853274 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 8 -k MAC n -t 89.486237904 -s 3 -S COLOR -c green -o black r -t 89.486237904 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 8 -k MAC + -t 89.486247904 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 89.486247904 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 89.486247904 -s 3 -S COLOR -c green -o black h -t 89.486247904 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 89.486262904 -s 3 -S COLOR -c green -o black r -t 89.486262904 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 8 -k AGT n -t 89.486400533 -s 1 -S COLOR -c green -o black r -t 89.486400533 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 91.357033492 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 9 -k AGT - -t 91.357033492 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 9 -k AGT n -t 91.357033492 -s 2 -S COLOR -c green -o black h -t 91.357033492 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 9 -k AGT + -t 91.357108492 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 91.357108492 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 91.357108492 -s 2 -S COLOR -c green -o black h -t 91.357108492 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 91.357285236 -s 1 -S COLOR -c green -o black r -t 91.357285236 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 91.357295236 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 91.357295236 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 91.357295236 -s 1 -S COLOR -c green -o black h -t 91.357295236 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 91.357447981 -s 2 -S COLOR -c green -o black r -t 91.357447981 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 91.357497981 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 9 -k MAC - -t 91.357497981 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 9 -k MAC n -t 91.357497981 -s 2 -S COLOR -c green -o black h -t 91.357497981 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 9 -k MAC n -t 91.359882725 -s 1 -S COLOR -c green -o black r -t 91.359882725 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 9 -k MAC + -t 91.359892725 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 91.359892725 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 91.359892725 -s 1 -S COLOR -c green -o black h -t 91.359892725 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 91.360045469 -s 2 -S COLOR -c green -o black r -t 91.360045469 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 91.360194725 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 91.360194725 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 91.360194725 -s 1 -S COLOR -c green -o black h -t 91.360194725 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 91.360371354 -s 3 -S COLOR -c green -o black r -t 91.360371354 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 91.360381354 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 91.360381354 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 91.360381354 -s 3 -S COLOR -c green -o black h -t 91.360381354 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 91.360533983 -s 1 -S COLOR -c green -o black r -t 91.360533983 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 91.360583983 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 9 -k MAC - -t 91.360583983 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 9 -k MAC n -t 91.360583983 -s 1 -S COLOR -c green -o black h -t 91.360583983 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 9 -k MAC n -t 91.362968612 -s 3 -S COLOR -c green -o black r -t 91.362968612 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 9 -k MAC + -t 91.362978612 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 91.362978612 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 91.362978612 -s 3 -S COLOR -c green -o black h -t 91.362978612 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 91.362993612 -s 3 -S COLOR -c green -o black r -t 91.362993612 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 9 -k AGT n -t 91.363131241 -s 1 -S COLOR -c green -o black r -t 91.363131241 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 92.573271777 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 10 -k AGT - -t 92.573271777 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 10 -k AGT n -t 92.573271777 -s 2 -S COLOR -c green -o black h -t 92.573271777 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 10 -k AGT + -t 92.573346777 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 92.573346777 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 92.573346777 -s 2 -S COLOR -c green -o black h -t 92.573346777 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 92.573523521 -s 1 -S COLOR -c green -o black r -t 92.573523521 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 92.573533521 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 92.573533521 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 92.573533521 -s 1 -S COLOR -c green -o black h -t 92.573533521 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 92.573686265 -s 2 -S COLOR -c green -o black r -t 92.573686265 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 92.573736265 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 10 -k MAC - -t 92.573736265 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 10 -k MAC n -t 92.573736265 -s 2 -S COLOR -c green -o black h -t 92.573736265 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 10 -k MAC n -t 92.576121010 -s 1 -S COLOR -c green -o black r -t 92.576121010 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 10 -k MAC + -t 92.576131010 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 92.576131010 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 92.576131010 -s 1 -S COLOR -c green -o black h -t 92.576131010 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 92.576283754 -s 2 -S COLOR -c green -o black r -t 92.576283754 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 92.576793010 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 92.576793010 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 92.576793010 -s 1 -S COLOR -c green -o black h -t 92.576793010 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 92.576969639 -s 3 -S COLOR -c green -o black r -t 92.576969639 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 92.576979639 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 92.576979639 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 92.576979639 -s 3 -S COLOR -c green -o black h -t 92.576979639 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 92.577132268 -s 1 -S COLOR -c green -o black r -t 92.577132268 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 92.577182268 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 10 -k MAC - -t 92.577182268 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 10 -k MAC n -t 92.577182268 -s 1 -S COLOR -c green -o black h -t 92.577182268 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 10 -k MAC n -t 92.579566897 -s 3 -S COLOR -c green -o black r -t 92.579566897 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 10 -k MAC + -t 92.579576897 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 92.579576897 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 92.579576897 -s 3 -S COLOR -c green -o black h -t 92.579576897 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 92.579591897 -s 3 -S COLOR -c green -o black r -t 92.579591897 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 10 -k AGT n -t 92.579729526 -s 1 -S COLOR -c green -o black r -t 92.579729526 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 95.096210883 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 11 -k AGT - -t 95.096210883 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 11 -k AGT n -t 95.096210883 -s 2 -S COLOR -c green -o black h -t 95.096210883 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 11 -k AGT + -t 95.096285883 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 95.096285883 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 95.096285883 -s 2 -S COLOR -c green -o black h -t 95.096285883 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 95.096462627 -s 1 -S COLOR -c green -o black r -t 95.096462627 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 95.096472627 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 95.096472627 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 95.096472627 -s 1 -S COLOR -c green -o black h -t 95.096472627 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 95.096625371 -s 2 -S COLOR -c green -o black r -t 95.096625371 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 95.096675371 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 11 -k MAC - -t 95.096675371 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 11 -k MAC n -t 95.096675371 -s 2 -S COLOR -c green -o black h -t 95.096675371 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 11 -k MAC n -t 95.099060116 -s 1 -S COLOR -c green -o black r -t 95.099060116 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 11 -k MAC + -t 95.099070116 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 95.099070116 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 95.099070116 -s 1 -S COLOR -c green -o black h -t 95.099070116 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 95.099222860 -s 2 -S COLOR -c green -o black r -t 95.099222860 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 95.099852116 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 95.099852116 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 95.099852116 -s 1 -S COLOR -c green -o black h -t 95.099852116 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 95.100028745 -s 3 -S COLOR -c green -o black r -t 95.100028745 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 95.100038745 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 95.100038745 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 95.100038745 -s 3 -S COLOR -c green -o black h -t 95.100038745 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 95.100191374 -s 1 -S COLOR -c green -o black r -t 95.100191374 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 95.100241374 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 11 -k MAC - -t 95.100241374 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 11 -k MAC n -t 95.100241374 -s 1 -S COLOR -c green -o black h -t 95.100241374 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 11 -k MAC n -t 95.102626003 -s 3 -S COLOR -c green -o black r -t 95.102626003 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 11 -k MAC + -t 95.102636003 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 95.102636003 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 95.102636003 -s 3 -S COLOR -c green -o black h -t 95.102636003 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 95.102651003 -s 3 -S COLOR -c green -o black r -t 95.102651003 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 11 -k AGT n -t 95.102788632 -s 1 -S COLOR -c green -o black r -t 95.102788632 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 97.773786492 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 12 -k AGT - -t 97.773786492 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 12 -k AGT n -t 97.773786492 -s 2 -S COLOR -c green -o black h -t 97.773786492 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 12 -k AGT + -t 97.773861492 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 97.773861492 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 97.773861492 -s 2 -S COLOR -c green -o black h -t 97.773861492 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 97.774038236 -s 1 -S COLOR -c green -o black r -t 97.774038236 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 97.774048236 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 97.774048236 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 97.774048236 -s 1 -S COLOR -c green -o black h -t 97.774048236 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 97.774200981 -s 2 -S COLOR -c green -o black r -t 97.774200981 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 97.774250981 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 12 -k MAC - -t 97.774250981 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 12 -k MAC n -t 97.774250981 -s 2 -S COLOR -c green -o black h -t 97.774250981 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 12 -k MAC n -t 97.776635725 -s 1 -S COLOR -c green -o black r -t 97.776635725 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 12 -k MAC + -t 97.776645725 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 97.776645725 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 97.776645725 -s 1 -S COLOR -c green -o black h -t 97.776645725 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 97.776798469 -s 2 -S COLOR -c green -o black r -t 97.776798469 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 97.777427725 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 97.777427725 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 97.777427725 -s 1 -S COLOR -c green -o black h -t 97.777427725 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 97.777604354 -s 3 -S COLOR -c green -o black r -t 97.777604354 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 97.777614354 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 97.777614354 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 97.777614354 -s 3 -S COLOR -c green -o black h -t 97.777614354 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 97.777766983 -s 1 -S COLOR -c green -o black r -t 97.777766983 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 97.777816983 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 12 -k MAC - -t 97.777816983 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 12 -k MAC n -t 97.777816983 -s 1 -S COLOR -c green -o black h -t 97.777816983 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 12 -k MAC n -t 97.780201612 -s 3 -S COLOR -c green -o black r -t 97.780201612 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 12 -k MAC + -t 97.780211612 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 97.780211612 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 97.780211612 -s 3 -S COLOR -c green -o black h -t 97.780211612 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 97.780226612 -s 3 -S COLOR -c green -o black r -t 97.780226612 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 12 -k AGT n -t 97.780364242 -s 1 -S COLOR -c green -o black r -t 97.780364242 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 99.514509215 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 13 -k AGT - -t 99.514509215 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 13 -k AGT n -t 99.514509215 -s 2 -S COLOR -c green -o black h -t 99.514509215 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 13 -k AGT + -t 99.514584215 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 99.514584215 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 99.514584215 -s 2 -S COLOR -c green -o black h -t 99.514584215 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 99.514760959 -s 1 -S COLOR -c green -o black r -t 99.514760959 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 99.514770959 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 99.514770959 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 99.514770959 -s 1 -S COLOR -c green -o black h -t 99.514770959 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 99.514923703 -s 2 -S COLOR -c green -o black r -t 99.514923703 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 99.514973703 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 13 -k MAC - -t 99.514973703 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 13 -k MAC n -t 99.514973703 -s 2 -S COLOR -c green -o black h -t 99.514973703 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 13 -k MAC n -t 99.517358448 -s 1 -S COLOR -c green -o black r -t 99.517358448 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 13 -k MAC + -t 99.517368448 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 99.517368448 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 99.517368448 -s 1 -S COLOR -c green -o black h -t 99.517368448 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 99.517521192 -s 2 -S COLOR -c green -o black r -t 99.517521192 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 99.517570448 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 99.517570448 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 99.517570448 -s 1 -S COLOR -c green -o black h -t 99.517570448 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 99.517747077 -s 3 -S COLOR -c green -o black r -t 99.517747077 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 99.517757077 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 99.517757077 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 99.517757077 -s 3 -S COLOR -c green -o black h -t 99.517757077 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 99.517909706 -s 1 -S COLOR -c green -o black r -t 99.517909706 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 99.517959706 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 13 -k MAC - -t 99.517959706 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 13 -k MAC n -t 99.517959706 -s 1 -S COLOR -c green -o black h -t 99.517959706 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 13 -k MAC n -t 99.520344335 -s 3 -S COLOR -c green -o black r -t 99.520344335 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 13 -k MAC + -t 99.520354335 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 99.520354335 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 99.520354335 -s 3 -S COLOR -c green -o black h -t 99.520354335 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 99.520369335 -s 3 -S COLOR -c green -o black r -t 99.520369335 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 13 -k AGT n -t 99.520506964 -s 1 -S COLOR -c green -o black r -t 99.520506964 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 101.384675658 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 14 -k AGT - -t 101.384675658 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 14 -k AGT n -t 101.384675658 -s 2 -S COLOR -c green -o black h -t 101.384675658 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 14 -k AGT + -t 101.384750658 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 101.384750658 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 101.384750658 -s 2 -S COLOR -c green -o black h -t 101.384750658 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 101.384927402 -s 1 -S COLOR -c green -o black r -t 101.384927402 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 101.384937402 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 101.384937402 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 101.384937402 -s 1 -S COLOR -c green -o black h -t 101.384937402 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 101.385090146 -s 2 -S COLOR -c green -o black r -t 101.385090146 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 101.385140146 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 14 -k MAC - -t 101.385140146 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 14 -k MAC n -t 101.385140146 -s 2 -S COLOR -c green -o black h -t 101.385140146 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 14 -k MAC n -t 101.387524891 -s 1 -S COLOR -c green -o black r -t 101.387524891 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 14 -k MAC + -t 101.387534891 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 101.387534891 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 101.387534891 -s 1 -S COLOR -c green -o black h -t 101.387534891 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 101.387687635 -s 2 -S COLOR -c green -o black r -t 101.387687635 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 101.388116891 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 101.388116891 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 101.388116891 -s 1 -S COLOR -c green -o black h -t 101.388116891 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 101.388293520 -s 3 -S COLOR -c green -o black r -t 101.388293520 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 101.388303520 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 101.388303520 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 101.388303520 -s 3 -S COLOR -c green -o black h -t 101.388303520 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 101.388456149 -s 1 -S COLOR -c green -o black r -t 101.388456149 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 101.388506149 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 14 -k MAC - -t 101.388506149 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 14 -k MAC n -t 101.388506149 -s 1 -S COLOR -c green -o black h -t 101.388506149 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 14 -k MAC n -t 101.390890778 -s 3 -S COLOR -c green -o black r -t 101.390890778 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 14 -k MAC + -t 101.390900778 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 101.390900778 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 101.390900778 -s 3 -S COLOR -c green -o black h -t 101.390900778 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 101.390915778 -s 3 -S COLOR -c green -o black r -t 101.390915778 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 14 -k AGT n -t 101.391053407 -s 1 -S COLOR -c green -o black r -t 101.391053407 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 103.116840889 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 15 -k AGT - -t 103.116840889 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 15 -k AGT n -t 103.116840889 -s 2 -S COLOR -c green -o black h -t 103.116840889 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 15 -k AGT + -t 103.116915889 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 103.116915889 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 103.116915889 -s 2 -S COLOR -c green -o black h -t 103.116915889 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 103.117092634 -s 1 -S COLOR -c green -o black r -t 103.117092634 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 103.117102634 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 103.117102634 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 103.117102634 -s 1 -S COLOR -c green -o black h -t 103.117102634 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 103.117255378 -s 2 -S COLOR -c green -o black r -t 103.117255378 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 103.117305378 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 15 -k MAC - -t 103.117305378 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 15 -k MAC n -t 103.117305378 -s 2 -S COLOR -c green -o black h -t 103.117305378 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 15 -k MAC n -t 103.119690122 -s 1 -S COLOR -c green -o black r -t 103.119690122 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 15 -k MAC + -t 103.119700122 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 103.119700122 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 103.119700122 -s 1 -S COLOR -c green -o black h -t 103.119700122 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 103.119852867 -s 2 -S COLOR -c green -o black r -t 103.119852867 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 103.120442122 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 103.120442122 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 103.120442122 -s 1 -S COLOR -c green -o black h -t 103.120442122 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 103.120618751 -s 3 -S COLOR -c green -o black r -t 103.120618751 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 103.120628751 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 103.120628751 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 103.120628751 -s 3 -S COLOR -c green -o black h -t 103.120628751 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 103.120781380 -s 1 -S COLOR -c green -o black r -t 103.120781380 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 103.120831380 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 15 -k MAC - -t 103.120831380 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 15 -k MAC n -t 103.120831380 -s 1 -S COLOR -c green -o black h -t 103.120831380 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 15 -k MAC n -t 103.123216010 -s 3 -S COLOR -c green -o black r -t 103.123216010 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 15 -k MAC + -t 103.123226010 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 103.123226010 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 103.123226010 -s 3 -S COLOR -c green -o black h -t 103.123226010 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 103.123241010 -s 3 -S COLOR -c green -o black r -t 103.123241010 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 15 -k AGT n -t 103.123378639 -s 1 -S COLOR -c green -o black r -t 103.123378639 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 104.498392380 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 16 -k AGT - -t 104.498392380 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 16 -k AGT n -t 104.498392380 -s 2 -S COLOR -c green -o black h -t 104.498392380 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 16 -k AGT + -t 104.498467380 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 104.498467380 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 104.498467380 -s 2 -S COLOR -c green -o black h -t 104.498467380 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 104.498644124 -s 1 -S COLOR -c green -o black r -t 104.498644124 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 104.498654124 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 104.498654124 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 104.498654124 -s 1 -S COLOR -c green -o black h -t 104.498654124 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 104.498806868 -s 2 -S COLOR -c green -o black r -t 104.498806868 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 104.498856868 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 16 -k MAC - -t 104.498856868 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 16 -k MAC n -t 104.498856868 -s 2 -S COLOR -c green -o black h -t 104.498856868 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 16 -k MAC n -t 104.501241613 -s 1 -S COLOR -c green -o black r -t 104.501241613 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 16 -k MAC + -t 104.501251613 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 104.501251613 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 104.501251613 -s 1 -S COLOR -c green -o black h -t 104.501251613 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 104.501404357 -s 2 -S COLOR -c green -o black r -t 104.501404357 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 104.501773613 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 104.501773613 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 104.501773613 -s 1 -S COLOR -c green -o black h -t 104.501773613 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 104.501950242 -s 3 -S COLOR -c green -o black r -t 104.501950242 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 104.501960242 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 104.501960242 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 104.501960242 -s 3 -S COLOR -c green -o black h -t 104.501960242 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 104.502112871 -s 1 -S COLOR -c green -o black r -t 104.502112871 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 104.502162871 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 16 -k MAC - -t 104.502162871 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 16 -k MAC n -t 104.502162871 -s 1 -S COLOR -c green -o black h -t 104.502162871 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 16 -k MAC n -t 104.504547500 -s 3 -S COLOR -c green -o black r -t 104.504547500 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 16 -k MAC + -t 104.504557500 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 104.504557500 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 104.504557500 -s 3 -S COLOR -c green -o black h -t 104.504557500 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 104.504572500 -s 3 -S COLOR -c green -o black r -t 104.504572500 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 16 -k AGT n -t 104.504710129 -s 1 -S COLOR -c green -o black r -t 104.504710129 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 105.838736554 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 17 -k AGT - -t 105.838736554 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 17 -k AGT n -t 105.838736554 -s 2 -S COLOR -c green -o black h -t 105.838736554 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 17 -k AGT + -t 105.838811554 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 105.838811554 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 105.838811554 -s 2 -S COLOR -c green -o black h -t 105.838811554 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 105.838988299 -s 1 -S COLOR -c green -o black r -t 105.838988299 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 105.838998299 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 105.838998299 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 105.838998299 -s 1 -S COLOR -c green -o black h -t 105.838998299 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 105.839151043 -s 2 -S COLOR -c green -o black r -t 105.839151043 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 105.839201043 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 17 -k MAC - -t 105.839201043 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 17 -k MAC n -t 105.839201043 -s 2 -S COLOR -c green -o black h -t 105.839201043 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 17 -k MAC n -t 105.841585787 -s 1 -S COLOR -c green -o black r -t 105.841585787 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 17 -k MAC + -t 105.841595787 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 105.841595787 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 105.841595787 -s 1 -S COLOR -c green -o black h -t 105.841595787 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 105.841748532 -s 2 -S COLOR -c green -o black r -t 105.841748532 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 105.841837787 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 105.841837787 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 105.841837787 -s 1 -S COLOR -c green -o black h -t 105.841837787 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 105.842014417 -s 3 -S COLOR -c green -o black r -t 105.842014417 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 105.842024417 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 105.842024417 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 105.842024417 -s 3 -S COLOR -c green -o black h -t 105.842024417 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 105.842177046 -s 1 -S COLOR -c green -o black r -t 105.842177046 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 105.842227046 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 17 -k MAC - -t 105.842227046 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 17 -k MAC n -t 105.842227046 -s 1 -S COLOR -c green -o black h -t 105.842227046 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 17 -k MAC n -t 105.844611675 -s 3 -S COLOR -c green -o black r -t 105.844611675 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 17 -k MAC + -t 105.844621675 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 105.844621675 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 105.844621675 -s 3 -S COLOR -c green -o black h -t 105.844621675 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 105.844636675 -s 3 -S COLOR -c green -o black r -t 105.844636675 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 17 -k AGT n -t 105.844774304 -s 1 -S COLOR -c green -o black r -t 105.844774304 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 107.770313137 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 18 -k AGT - -t 107.770313137 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 18 -k AGT n -t 107.770313137 -s 2 -S COLOR -c green -o black h -t 107.770313137 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 18 -k AGT + -t 107.770388137 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 107.770388137 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 107.770388137 -s 2 -S COLOR -c green -o black h -t 107.770388137 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 107.770564881 -s 1 -S COLOR -c green -o black r -t 107.770564881 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 107.770574881 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 107.770574881 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 107.770574881 -s 1 -S COLOR -c green -o black h -t 107.770574881 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 107.770727625 -s 2 -S COLOR -c green -o black r -t 107.770727625 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 107.770777625 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 18 -k MAC - -t 107.770777625 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 18 -k MAC n -t 107.770777625 -s 2 -S COLOR -c green -o black h -t 107.770777625 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 18 -k MAC n -t 107.773162369 -s 1 -S COLOR -c green -o black r -t 107.773162369 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 18 -k MAC + -t 107.773172369 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 107.773172369 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 107.773172369 -s 1 -S COLOR -c green -o black h -t 107.773172369 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 107.773325114 -s 2 -S COLOR -c green -o black r -t 107.773325114 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 107.773834369 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 107.773834369 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 107.773834369 -s 1 -S COLOR -c green -o black h -t 107.773834369 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 107.774010999 -s 3 -S COLOR -c green -o black r -t 107.774010999 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 107.774020999 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 107.774020999 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 107.774020999 -s 3 -S COLOR -c green -o black h -t 107.774020999 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 107.774173628 -s 1 -S COLOR -c green -o black r -t 107.774173628 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 107.774223628 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 18 -k MAC - -t 107.774223628 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 18 -k MAC n -t 107.774223628 -s 1 -S COLOR -c green -o black h -t 107.774223628 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 18 -k MAC n -t 107.776608257 -s 3 -S COLOR -c green -o black r -t 107.776608257 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 18 -k MAC + -t 107.776618257 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 107.776618257 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 107.776618257 -s 3 -S COLOR -c green -o black h -t 107.776618257 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 107.776633257 -s 3 -S COLOR -c green -o black r -t 107.776633257 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 18 -k AGT n -t 107.776770886 -s 1 -S COLOR -c green -o black r -t 107.776770886 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 109.954394230 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 19 -k AGT - -t 109.954394230 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 19 -k AGT n -t 109.954394230 -s 2 -S COLOR -c green -o black h -t 109.954394230 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 19 -k AGT + -t 109.954469230 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 109.954469230 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 109.954469230 -s 2 -S COLOR -c green -o black h -t 109.954469230 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 109.954645975 -s 1 -S COLOR -c green -o black r -t 109.954645975 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 109.954655975 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 109.954655975 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 109.954655975 -s 1 -S COLOR -c green -o black h -t 109.954655975 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 109.954808719 -s 2 -S COLOR -c green -o black r -t 109.954808719 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 109.954858719 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 19 -k MAC - -t 109.954858719 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 19 -k MAC n -t 109.954858719 -s 2 -S COLOR -c green -o black h -t 109.954858719 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 19 -k MAC n -t 109.957243463 -s 1 -S COLOR -c green -o black r -t 109.957243463 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 19 -k MAC + -t 109.957253463 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 109.957253463 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 109.957253463 -s 1 -S COLOR -c green -o black h -t 109.957253463 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 109.957406208 -s 2 -S COLOR -c green -o black r -t 109.957406208 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 109.957755463 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 109.957755463 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 109.957755463 -s 1 -S COLOR -c green -o black h -t 109.957755463 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 109.957932092 -s 3 -S COLOR -c green -o black r -t 109.957932092 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 109.957942092 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 109.957942092 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 109.957942092 -s 3 -S COLOR -c green -o black h -t 109.957942092 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 109.958094722 -s 1 -S COLOR -c green -o black r -t 109.958094722 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 109.958144722 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 19 -k MAC - -t 109.958144722 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 19 -k MAC n -t 109.958144722 -s 1 -S COLOR -c green -o black h -t 109.958144722 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 19 -k MAC n -t 109.960529351 -s 3 -S COLOR -c green -o black r -t 109.960529351 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 19 -k MAC + -t 109.960539351 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 109.960539351 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 109.960539351 -s 3 -S COLOR -c green -o black h -t 109.960539351 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 109.960554351 -s 3 -S COLOR -c green -o black r -t 109.960554351 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 19 -k AGT n -t 109.960691980 -s 1 -S COLOR -c green -o black r -t 109.960691980 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 112.011338235 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 20 -k AGT - -t 112.011338235 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 20 -k AGT n -t 112.011338235 -s 2 -S COLOR -c green -o black h -t 112.011338235 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 20 -k AGT + -t 112.011413235 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 112.011413235 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 112.011413235 -s 2 -S COLOR -c green -o black h -t 112.011413235 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 112.011589979 -s 1 -S COLOR -c green -o black r -t 112.011589979 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 112.011599979 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 112.011599979 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 112.011599979 -s 1 -S COLOR -c green -o black h -t 112.011599979 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 112.011752724 -s 2 -S COLOR -c green -o black r -t 112.011752724 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 112.011802724 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 20 -k MAC - -t 112.011802724 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 20 -k MAC n -t 112.011802724 -s 2 -S COLOR -c green -o black h -t 112.011802724 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 20 -k MAC n -t 112.014187468 -s 1 -S COLOR -c green -o black r -t 112.014187468 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 20 -k MAC + -t 112.014197468 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 112.014197468 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 112.014197468 -s 1 -S COLOR -c green -o black h -t 112.014197468 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 112.014350212 -s 2 -S COLOR -c green -o black r -t 112.014350212 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 112.014499468 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 112.014499468 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 112.014499468 -s 1 -S COLOR -c green -o black h -t 112.014499468 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 112.014676097 -s 3 -S COLOR -c green -o black r -t 112.014676097 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 112.014686097 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 112.014686097 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 112.014686097 -s 3 -S COLOR -c green -o black h -t 112.014686097 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 112.014838726 -s 1 -S COLOR -c green -o black r -t 112.014838726 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 112.014888726 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 20 -k MAC - -t 112.014888726 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 20 -k MAC n -t 112.014888726 -s 1 -S COLOR -c green -o black h -t 112.014888726 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 20 -k MAC n -t 112.017273355 -s 3 -S COLOR -c green -o black r -t 112.017273355 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 20 -k MAC + -t 112.017283355 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 112.017283355 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 112.017283355 -s 3 -S COLOR -c green -o black h -t 112.017283355 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 112.017298355 -s 3 -S COLOR -c green -o black r -t 112.017298355 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 20 -k AGT n -t 112.017435985 -s 1 -S COLOR -c green -o black r -t 112.017435985 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 114.170213997 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 21 -k AGT - -t 114.170213997 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 21 -k AGT n -t 114.170213997 -s 2 -S COLOR -c green -o black h -t 114.170213997 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 21 -k AGT + -t 114.170288997 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 114.170288997 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 114.170288997 -s 2 -S COLOR -c green -o black h -t 114.170288997 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 114.170465741 -s 1 -S COLOR -c green -o black r -t 114.170465741 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 114.170475741 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 114.170475741 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 114.170475741 -s 1 -S COLOR -c green -o black h -t 114.170475741 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 114.170628486 -s 2 -S COLOR -c green -o black r -t 114.170628486 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 114.170678486 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 21 -k MAC - -t 114.170678486 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 21 -k MAC n -t 114.170678486 -s 2 -S COLOR -c green -o black h -t 114.170678486 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 21 -k MAC n -t 114.173063230 -s 1 -S COLOR -c green -o black r -t 114.173063230 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 21 -k MAC + -t 114.173073230 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 114.173073230 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 114.173073230 -s 1 -S COLOR -c green -o black h -t 114.173073230 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 114.173225974 -s 2 -S COLOR -c green -o black r -t 114.173225974 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 114.173515230 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 114.173515230 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 114.173515230 -s 1 -S COLOR -c green -o black h -t 114.173515230 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 114.173691859 -s 3 -S COLOR -c green -o black r -t 114.173691859 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 114.173701859 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 114.173701859 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 114.173701859 -s 3 -S COLOR -c green -o black h -t 114.173701859 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 114.173854488 -s 1 -S COLOR -c green -o black r -t 114.173854488 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 114.173904488 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 21 -k MAC - -t 114.173904488 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 21 -k MAC n -t 114.173904488 -s 1 -S COLOR -c green -o black h -t 114.173904488 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 21 -k MAC n -t 114.176289117 -s 3 -S COLOR -c green -o black r -t 114.176289117 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 21 -k MAC + -t 114.176299117 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 114.176299117 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 114.176299117 -s 3 -S COLOR -c green -o black h -t 114.176299117 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 114.176314117 -s 3 -S COLOR -c green -o black r -t 114.176314117 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 21 -k AGT n -t 114.176451747 -s 1 -S COLOR -c green -o black r -t 114.176451747 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 116.968767380 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 22 -k AGT - -t 116.968767380 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 22 -k AGT n -t 116.968767380 -s 2 -S COLOR -c green -o black h -t 116.968767380 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 22 -k AGT + -t 116.968842380 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 116.968842380 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 116.968842380 -s 2 -S COLOR -c green -o black h -t 116.968842380 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 116.969019124 -s 1 -S COLOR -c green -o black r -t 116.969019124 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 116.969029124 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 116.969029124 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 116.969029124 -s 1 -S COLOR -c green -o black h -t 116.969029124 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 116.969181869 -s 2 -S COLOR -c green -o black r -t 116.969181869 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 116.969231869 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 22 -k MAC - -t 116.969231869 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 22 -k MAC n -t 116.969231869 -s 2 -S COLOR -c green -o black h -t 116.969231869 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 22 -k MAC n -t 116.971616613 -s 1 -S COLOR -c green -o black r -t 116.971616613 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 22 -k MAC + -t 116.971626613 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 116.971626613 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 116.971626613 -s 1 -S COLOR -c green -o black h -t 116.971626613 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 116.971779357 -s 2 -S COLOR -c green -o black r -t 116.971779357 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 116.972388613 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 116.972388613 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 116.972388613 -s 1 -S COLOR -c green -o black h -t 116.972388613 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 116.972565242 -s 3 -S COLOR -c green -o black r -t 116.972565242 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 116.972575242 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 116.972575242 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 116.972575242 -s 3 -S COLOR -c green -o black h -t 116.972575242 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 116.972727871 -s 1 -S COLOR -c green -o black r -t 116.972727871 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 116.972777871 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 22 -k MAC - -t 116.972777871 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 22 -k MAC n -t 116.972777871 -s 1 -S COLOR -c green -o black h -t 116.972777871 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 22 -k MAC n -t 116.975162500 -s 3 -S COLOR -c green -o black r -t 116.975162500 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 22 -k MAC + -t 116.975172500 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 116.975172500 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 116.975172500 -s 3 -S COLOR -c green -o black h -t 116.975172500 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 116.975187500 -s 3 -S COLOR -c green -o black r -t 116.975187500 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 22 -k AGT n -t 116.975325129 -s 1 -S COLOR -c green -o black r -t 116.975325129 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 118.080323864 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 23 -k AGT - -t 118.080323864 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 23 -k AGT n -t 118.080323864 -s 2 -S COLOR -c green -o black h -t 118.080323864 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 23 -k AGT + -t 118.080398864 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 118.080398864 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 118.080398864 -s 2 -S COLOR -c green -o black h -t 118.080398864 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 118.080575609 -s 1 -S COLOR -c green -o black r -t 118.080575609 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 118.080585609 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 118.080585609 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 118.080585609 -s 1 -S COLOR -c green -o black h -t 118.080585609 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 118.080738353 -s 2 -S COLOR -c green -o black r -t 118.080738353 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 118.080788353 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 23 -k MAC - -t 118.080788353 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 23 -k MAC n -t 118.080788353 -s 2 -S COLOR -c green -o black h -t 118.080788353 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 23 -k MAC n -t 118.083173097 -s 1 -S COLOR -c green -o black r -t 118.083173097 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 23 -k MAC + -t 118.083183097 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 118.083183097 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 118.083183097 -s 1 -S COLOR -c green -o black h -t 118.083183097 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 118.083335842 -s 2 -S COLOR -c green -o black r -t 118.083335842 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 118.083985097 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 118.083985097 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 118.083985097 -s 1 -S COLOR -c green -o black h -t 118.083985097 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 118.084161726 -s 3 -S COLOR -c green -o black r -t 118.084161726 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 118.084171726 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 118.084171726 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 118.084171726 -s 3 -S COLOR -c green -o black h -t 118.084171726 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 118.084324356 -s 1 -S COLOR -c green -o black r -t 118.084324356 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 118.084374356 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 23 -k MAC - -t 118.084374356 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 23 -k MAC n -t 118.084374356 -s 1 -S COLOR -c green -o black h -t 118.084374356 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 23 -k MAC n -t 118.086758985 -s 3 -S COLOR -c green -o black r -t 118.086758985 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 23 -k MAC + -t 118.086768985 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 118.086768985 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 118.086768985 -s 3 -S COLOR -c green -o black h -t 118.086768985 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 118.086783985 -s 3 -S COLOR -c green -o black r -t 118.086783985 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 23 -k AGT n -t 118.086921614 -s 1 -S COLOR -c green -o black r -t 118.086921614 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 120.807199892 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 24 -k AGT - -t 120.807199892 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 24 -k AGT n -t 120.807199892 -s 2 -S COLOR -c green -o black h -t 120.807199892 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 24 -k AGT + -t 120.807274892 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 120.807274892 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 120.807274892 -s 2 -S COLOR -c green -o black h -t 120.807274892 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 120.807451636 -s 1 -S COLOR -c green -o black r -t 120.807451636 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 120.807461636 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 120.807461636 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 120.807461636 -s 1 -S COLOR -c green -o black h -t 120.807461636 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 120.807614381 -s 2 -S COLOR -c green -o black r -t 120.807614381 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 120.807664381 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 24 -k MAC - -t 120.807664381 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 24 -k MAC n -t 120.807664381 -s 2 -S COLOR -c green -o black h -t 120.807664381 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 24 -k MAC n -t 120.810049125 -s 1 -S COLOR -c green -o black r -t 120.810049125 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 24 -k MAC + -t 120.810059125 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 120.810059125 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 120.810059125 -s 1 -S COLOR -c green -o black h -t 120.810059125 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 120.810211869 -s 2 -S COLOR -c green -o black r -t 120.810211869 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 120.810841125 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 120.810841125 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 120.810841125 -s 1 -S COLOR -c green -o black h -t 120.810841125 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 120.811017754 -s 3 -S COLOR -c green -o black r -t 120.811017754 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 120.811027754 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 120.811027754 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 120.811027754 -s 3 -S COLOR -c green -o black h -t 120.811027754 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 120.811180383 -s 1 -S COLOR -c green -o black r -t 120.811180383 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 120.811230383 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 24 -k MAC - -t 120.811230383 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 24 -k MAC n -t 120.811230383 -s 1 -S COLOR -c green -o black h -t 120.811230383 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 24 -k MAC n -t 120.813615012 -s 3 -S COLOR -c green -o black r -t 120.813615012 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 24 -k MAC + -t 120.813625012 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 120.813625012 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 120.813625012 -s 3 -S COLOR -c green -o black h -t 120.813625012 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 120.813640012 -s 3 -S COLOR -c green -o black r -t 120.813640012 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 24 -k AGT n -t 120.813777641 -s 1 -S COLOR -c green -o black r -t 120.813777641 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 121.901712884 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 25 -k AGT - -t 121.901712884 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 25 -k AGT n -t 121.901712884 -s 2 -S COLOR -c green -o black h -t 121.901712884 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 25 -k AGT + -t 121.901787884 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 121.901787884 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 121.901787884 -s 2 -S COLOR -c green -o black h -t 121.901787884 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 121.901964628 -s 1 -S COLOR -c green -o black r -t 121.901964628 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 121.901974628 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 121.901974628 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 121.901974628 -s 1 -S COLOR -c green -o black h -t 121.901974628 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 121.902127372 -s 2 -S COLOR -c green -o black r -t 121.902127372 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 121.902177372 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 25 -k MAC - -t 121.902177372 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 25 -k MAC n -t 121.902177372 -s 2 -S COLOR -c green -o black h -t 121.902177372 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 25 -k MAC n -t 121.904562117 -s 1 -S COLOR -c green -o black r -t 121.904562117 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 25 -k MAC + -t 121.904572117 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 121.904572117 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 121.904572117 -s 1 -S COLOR -c green -o black h -t 121.904572117 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 121.904724861 -s 2 -S COLOR -c green -o black r -t 121.904724861 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 121.904794117 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 121.904794117 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 121.904794117 -s 1 -S COLOR -c green -o black h -t 121.904794117 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 121.904970746 -s 3 -S COLOR -c green -o black r -t 121.904970746 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 121.904980746 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 121.904980746 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 121.904980746 -s 3 -S COLOR -c green -o black h -t 121.904980746 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 121.905133375 -s 1 -S COLOR -c green -o black r -t 121.905133375 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 121.905183375 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 25 -k MAC - -t 121.905183375 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 25 -k MAC n -t 121.905183375 -s 1 -S COLOR -c green -o black h -t 121.905183375 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 25 -k MAC n -t 121.907568004 -s 3 -S COLOR -c green -o black r -t 121.907568004 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 25 -k MAC + -t 121.907578004 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 121.907578004 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 121.907578004 -s 3 -S COLOR -c green -o black h -t 121.907578004 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 121.907593004 -s 3 -S COLOR -c green -o black r -t 121.907593004 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 25 -k AGT n -t 121.907730633 -s 1 -S COLOR -c green -o black r -t 121.907730633 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 124.060485258 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 26 -k AGT - -t 124.060485258 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 26 -k AGT n -t 124.060485258 -s 2 -S COLOR -c green -o black h -t 124.060485258 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 26 -k AGT + -t 124.060560258 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 124.060560258 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 124.060560258 -s 2 -S COLOR -c green -o black h -t 124.060560258 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 124.060737002 -s 1 -S COLOR -c green -o black r -t 124.060737002 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 124.060747002 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 124.060747002 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 124.060747002 -s 1 -S COLOR -c green -o black h -t 124.060747002 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 124.060899746 -s 2 -S COLOR -c green -o black r -t 124.060899746 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 124.060949746 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 26 -k MAC - -t 124.060949746 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 26 -k MAC n -t 124.060949746 -s 2 -S COLOR -c green -o black h -t 124.060949746 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 26 -k MAC n -t 124.063334491 -s 1 -S COLOR -c green -o black r -t 124.063334491 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 26 -k MAC + -t 124.063344491 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 124.063344491 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 124.063344491 -s 1 -S COLOR -c green -o black h -t 124.063344491 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 124.063497235 -s 2 -S COLOR -c green -o black r -t 124.063497235 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 124.063766491 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 124.063766491 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 124.063766491 -s 1 -S COLOR -c green -o black h -t 124.063766491 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 124.063943120 -s 3 -S COLOR -c green -o black r -t 124.063943120 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 124.063953120 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 124.063953120 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 124.063953120 -s 3 -S COLOR -c green -o black h -t 124.063953120 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 124.064105749 -s 1 -S COLOR -c green -o black r -t 124.064105749 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 124.064155749 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 26 -k MAC - -t 124.064155749 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 26 -k MAC n -t 124.064155749 -s 1 -S COLOR -c green -o black h -t 124.064155749 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 26 -k MAC n -t 124.066540378 -s 3 -S COLOR -c green -o black r -t 124.066540378 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 26 -k MAC + -t 124.066550378 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 124.066550378 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 124.066550378 -s 3 -S COLOR -c green -o black h -t 124.066550378 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 124.066565378 -s 3 -S COLOR -c green -o black r -t 124.066565378 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 26 -k AGT n -t 124.066703007 -s 1 -S COLOR -c green -o black r -t 124.066703007 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 127.016797750 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 27 -k AGT - -t 127.016797750 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 27 -k AGT n -t 127.016797750 -s 2 -S COLOR -c green -o black h -t 127.016797750 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 27 -k AGT + -t 127.016872750 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 127.016872750 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 127.016872750 -s 2 -S COLOR -c green -o black h -t 127.016872750 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 127.017049494 -s 1 -S COLOR -c green -o black r -t 127.017049494 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 127.017059494 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 127.017059494 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 127.017059494 -s 1 -S COLOR -c green -o black h -t 127.017059494 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 127.017212239 -s 2 -S COLOR -c green -o black r -t 127.017212239 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 127.017262239 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 27 -k MAC - -t 127.017262239 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 27 -k MAC n -t 127.017262239 -s 2 -S COLOR -c green -o black h -t 127.017262239 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 27 -k MAC n -t 127.019646983 -s 1 -S COLOR -c green -o black r -t 127.019646983 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 27 -k MAC + -t 127.019656983 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 127.019656983 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 127.019656983 -s 1 -S COLOR -c green -o black h -t 127.019656983 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 127.019809727 -s 2 -S COLOR -c green -o black r -t 127.019809727 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 127.020198983 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 127.020198983 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 127.020198983 -s 1 -S COLOR -c green -o black h -t 127.020198983 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 127.020375612 -s 3 -S COLOR -c green -o black r -t 127.020375612 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 127.020385612 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 127.020385612 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 127.020385612 -s 3 -S COLOR -c green -o black h -t 127.020385612 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 127.020538241 -s 1 -S COLOR -c green -o black r -t 127.020538241 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 127.020588241 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 27 -k MAC - -t 127.020588241 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 27 -k MAC n -t 127.020588241 -s 1 -S COLOR -c green -o black h -t 127.020588241 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 27 -k MAC n -t 127.022972870 -s 3 -S COLOR -c green -o black r -t 127.022972870 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 27 -k MAC + -t 127.022982870 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 127.022982870 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 127.022982870 -s 3 -S COLOR -c green -o black h -t 127.022982870 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 127.022997870 -s 3 -S COLOR -c green -o black r -t 127.022997870 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 27 -k AGT n -t 127.023135499 -s 1 -S COLOR -c green -o black r -t 127.023135499 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 128.716032852 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 28 -k AGT - -t 128.716032852 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 28 -k AGT n -t 128.716032852 -s 2 -S COLOR -c green -o black h -t 128.716032852 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 28 -k AGT + -t 128.716107852 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 128.716107852 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 128.716107852 -s 2 -S COLOR -c green -o black h -t 128.716107852 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 128.716284596 -s 1 -S COLOR -c green -o black r -t 128.716284596 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 128.716294596 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 128.716294596 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 128.716294596 -s 1 -S COLOR -c green -o black h -t 128.716294596 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 128.716447340 -s 2 -S COLOR -c green -o black r -t 128.716447340 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 128.716497340 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 28 -k MAC - -t 128.716497340 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 28 -k MAC n -t 128.716497340 -s 2 -S COLOR -c green -o black h -t 128.716497340 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 28 -k MAC n -t 128.718882085 -s 1 -S COLOR -c green -o black r -t 128.718882085 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 28 -k MAC + -t 128.718892085 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 128.718892085 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 128.718892085 -s 1 -S COLOR -c green -o black h -t 128.718892085 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 128.719044829 -s 2 -S COLOR -c green -o black r -t 128.719044829 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 128.719254085 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 128.719254085 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 128.719254085 -s 1 -S COLOR -c green -o black h -t 128.719254085 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 128.719430714 -s 3 -S COLOR -c green -o black r -t 128.719430714 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 128.719440714 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 128.719440714 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 128.719440714 -s 3 -S COLOR -c green -o black h -t 128.719440714 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 128.719593343 -s 1 -S COLOR -c green -o black r -t 128.719593343 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 128.719643343 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 28 -k MAC - -t 128.719643343 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 28 -k MAC n -t 128.719643343 -s 1 -S COLOR -c green -o black h -t 128.719643343 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 28 -k MAC n -t 128.722027972 -s 3 -S COLOR -c green -o black r -t 128.722027972 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 28 -k MAC + -t 128.722037972 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 128.722037972 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 128.722037972 -s 3 -S COLOR -c green -o black h -t 128.722037972 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 128.722052972 -s 3 -S COLOR -c green -o black r -t 128.722052972 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 28 -k AGT n -t 128.722190601 -s 1 -S COLOR -c green -o black r -t 128.722190601 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 130.461572454 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 29 -k AGT - -t 130.461572454 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 29 -k AGT n -t 130.461572454 -s 2 -S COLOR -c green -o black h -t 130.461572454 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 29 -k AGT + -t 130.461647454 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 130.461647454 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 130.461647454 -s 2 -S COLOR -c green -o black h -t 130.461647454 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 130.461824198 -s 1 -S COLOR -c green -o black r -t 130.461824198 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 130.461834198 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 130.461834198 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 130.461834198 -s 1 -S COLOR -c green -o black h -t 130.461834198 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 130.461986942 -s 2 -S COLOR -c green -o black r -t 130.461986942 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 130.462036942 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 29 -k MAC - -t 130.462036942 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 29 -k MAC n -t 130.462036942 -s 2 -S COLOR -c green -o black h -t 130.462036942 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 29 -k MAC n -t 130.464421687 -s 1 -S COLOR -c green -o black r -t 130.464421687 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 29 -k MAC + -t 130.464431687 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 130.464431687 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 130.464431687 -s 1 -S COLOR -c green -o black h -t 130.464431687 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 130.464584431 -s 2 -S COLOR -c green -o black r -t 130.464584431 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 130.465073687 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 130.465073687 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 130.465073687 -s 1 -S COLOR -c green -o black h -t 130.465073687 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 130.465250316 -s 3 -S COLOR -c green -o black r -t 130.465250316 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 130.465260316 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 130.465260316 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 130.465260316 -s 3 -S COLOR -c green -o black h -t 130.465260316 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 130.465412945 -s 1 -S COLOR -c green -o black r -t 130.465412945 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 130.465462945 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 29 -k MAC - -t 130.465462945 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 29 -k MAC n -t 130.465462945 -s 1 -S COLOR -c green -o black h -t 130.465462945 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 29 -k MAC n -t 130.467847574 -s 3 -S COLOR -c green -o black r -t 130.467847574 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 29 -k MAC + -t 130.467857574 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 130.467857574 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 130.467857574 -s 3 -S COLOR -c green -o black h -t 130.467857574 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 130.467872574 -s 3 -S COLOR -c green -o black r -t 130.467872574 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 29 -k AGT n -t 130.468010203 -s 1 -S COLOR -c green -o black r -t 130.468010203 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 131.757491384 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 30 -k AGT - -t 131.757491384 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 30 -k AGT n -t 131.757491384 -s 2 -S COLOR -c green -o black h -t 131.757491384 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 30 -k AGT + -t 131.757566384 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 131.757566384 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 131.757566384 -s 2 -S COLOR -c green -o black h -t 131.757566384 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 131.757743129 -s 1 -S COLOR -c green -o black r -t 131.757743129 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 131.757753129 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 131.757753129 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 131.757753129 -s 1 -S COLOR -c green -o black h -t 131.757753129 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 131.757905873 -s 2 -S COLOR -c green -o black r -t 131.757905873 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 131.757955873 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 30 -k MAC - -t 131.757955873 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 30 -k MAC n -t 131.757955873 -s 2 -S COLOR -c green -o black h -t 131.757955873 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 30 -k MAC n -t 131.760340617 -s 1 -S COLOR -c green -o black r -t 131.760340617 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 30 -k MAC + -t 131.760350617 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 131.760350617 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 131.760350617 -s 1 -S COLOR -c green -o black h -t 131.760350617 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 131.760503362 -s 2 -S COLOR -c green -o black r -t 131.760503362 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 131.760792617 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 131.760792617 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 131.760792617 -s 1 -S COLOR -c green -o black h -t 131.760792617 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 131.760969246 -s 3 -S COLOR -c green -o black r -t 131.760969246 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 131.760979246 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 131.760979246 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 131.760979246 -s 3 -S COLOR -c green -o black h -t 131.760979246 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 131.761131875 -s 1 -S COLOR -c green -o black r -t 131.761131875 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 131.761181875 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 30 -k MAC - -t 131.761181875 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 30 -k MAC n -t 131.761181875 -s 1 -S COLOR -c green -o black h -t 131.761181875 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 30 -k MAC n -t 131.763566505 -s 3 -S COLOR -c green -o black r -t 131.763566505 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 30 -k MAC + -t 131.763576505 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 131.763576505 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 131.763576505 -s 3 -S COLOR -c green -o black h -t 131.763576505 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 131.763591505 -s 3 -S COLOR -c green -o black r -t 131.763591505 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 30 -k AGT n -t 131.763729134 -s 1 -S COLOR -c green -o black r -t 131.763729134 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 134.150676026 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 31 -k AGT - -t 134.150676026 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 31 -k AGT n -t 134.150676026 -s 2 -S COLOR -c green -o black h -t 134.150676026 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 31 -k AGT + -t 134.150751026 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 134.150751026 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 134.150751026 -s 2 -S COLOR -c green -o black h -t 134.150751026 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 134.150927771 -s 1 -S COLOR -c green -o black r -t 134.150927771 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 134.150937771 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 134.150937771 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 134.150937771 -s 1 -S COLOR -c green -o black h -t 134.150937771 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 134.151090515 -s 2 -S COLOR -c green -o black r -t 134.151090515 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 134.151140515 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 31 -k MAC - -t 134.151140515 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 31 -k MAC n -t 134.151140515 -s 2 -S COLOR -c green -o black h -t 134.151140515 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 31 -k MAC n -t 134.153525259 -s 1 -S COLOR -c green -o black r -t 134.153525259 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 31 -k MAC + -t 134.153535259 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 134.153535259 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 134.153535259 -s 1 -S COLOR -c green -o black h -t 134.153535259 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 134.153688003 -s 2 -S COLOR -c green -o black r -t 134.153688003 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 134.154177259 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 134.154177259 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 134.154177259 -s 1 -S COLOR -c green -o black h -t 134.154177259 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 134.154353888 -s 3 -S COLOR -c green -o black r -t 134.154353888 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 134.154363888 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 134.154363888 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 134.154363888 -s 3 -S COLOR -c green -o black h -t 134.154363888 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 134.154516517 -s 1 -S COLOR -c green -o black r -t 134.154516517 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 134.154566517 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 31 -k MAC - -t 134.154566517 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 31 -k MAC n -t 134.154566517 -s 1 -S COLOR -c green -o black h -t 134.154566517 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 31 -k MAC n -t 134.156951146 -s 3 -S COLOR -c green -o black r -t 134.156951146 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 31 -k MAC + -t 134.156961146 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 134.156961146 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 134.156961146 -s 3 -S COLOR -c green -o black h -t 134.156961146 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 134.156976146 -s 3 -S COLOR -c green -o black r -t 134.156976146 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 31 -k AGT n -t 134.157113776 -s 1 -S COLOR -c green -o black r -t 134.157113776 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 136.016675070 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 32 -k AGT - -t 136.016675070 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 32 -k AGT n -t 136.016675070 -s 2 -S COLOR -c green -o black h -t 136.016675070 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 32 -k AGT + -t 136.016750070 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 136.016750070 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 136.016750070 -s 2 -S COLOR -c green -o black h -t 136.016750070 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 136.016926815 -s 1 -S COLOR -c green -o black r -t 136.016926815 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 136.016936815 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 136.016936815 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 136.016936815 -s 1 -S COLOR -c green -o black h -t 136.016936815 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 136.017089559 -s 2 -S COLOR -c green -o black r -t 136.017089559 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 136.017139559 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 32 -k MAC - -t 136.017139559 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 32 -k MAC n -t 136.017139559 -s 2 -S COLOR -c green -o black h -t 136.017139559 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 32 -k MAC n -t 136.019524303 -s 1 -S COLOR -c green -o black r -t 136.019524303 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 32 -k MAC + -t 136.019534303 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 136.019534303 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 136.019534303 -s 1 -S COLOR -c green -o black h -t 136.019534303 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 136.019687048 -s 2 -S COLOR -c green -o black r -t 136.019687048 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 136.019816303 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 136.019816303 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 136.019816303 -s 1 -S COLOR -c green -o black h -t 136.019816303 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 136.019992933 -s 3 -S COLOR -c green -o black r -t 136.019992933 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 136.020002933 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 136.020002933 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 136.020002933 -s 3 -S COLOR -c green -o black h -t 136.020002933 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 136.020155562 -s 1 -S COLOR -c green -o black r -t 136.020155562 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 136.020205562 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 32 -k MAC - -t 136.020205562 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 32 -k MAC n -t 136.020205562 -s 1 -S COLOR -c green -o black h -t 136.020205562 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 32 -k MAC n -t 136.022590191 -s 3 -S COLOR -c green -o black r -t 136.022590191 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 32 -k MAC + -t 136.022600191 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 136.022600191 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 136.022600191 -s 3 -S COLOR -c green -o black h -t 136.022600191 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 136.022615191 -s 3 -S COLOR -c green -o black r -t 136.022615191 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 32 -k AGT n -t 136.022752820 -s 1 -S COLOR -c green -o black r -t 136.022752820 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 138.317961702 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 33 -k AGT - -t 138.317961702 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 33 -k AGT n -t 138.317961702 -s 2 -S COLOR -c green -o black h -t 138.317961702 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 33 -k AGT + -t 138.318036702 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 138.318036702 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 138.318036702 -s 2 -S COLOR -c green -o black h -t 138.318036702 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 138.318213447 -s 1 -S COLOR -c green -o black r -t 138.318213447 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 138.318223447 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 138.318223447 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 138.318223447 -s 1 -S COLOR -c green -o black h -t 138.318223447 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 138.318376191 -s 2 -S COLOR -c green -o black r -t 138.318376191 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 138.318426191 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 33 -k MAC - -t 138.318426191 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 33 -k MAC n -t 138.318426191 -s 2 -S COLOR -c green -o black h -t 138.318426191 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 33 -k MAC n -t 138.320810935 -s 1 -S COLOR -c green -o black r -t 138.320810935 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 33 -k MAC + -t 138.320820935 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 138.320820935 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 138.320820935 -s 1 -S COLOR -c green -o black h -t 138.320820935 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 138.320973680 -s 2 -S COLOR -c green -o black r -t 138.320973680 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 138.321482935 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 138.321482935 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 138.321482935 -s 1 -S COLOR -c green -o black h -t 138.321482935 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 138.321659564 -s 3 -S COLOR -c green -o black r -t 138.321659564 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 138.321669564 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 138.321669564 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 138.321669564 -s 3 -S COLOR -c green -o black h -t 138.321669564 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 138.321822193 -s 1 -S COLOR -c green -o black r -t 138.321822193 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 138.321872193 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 33 -k MAC - -t 138.321872193 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 33 -k MAC n -t 138.321872193 -s 1 -S COLOR -c green -o black h -t 138.321872193 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 33 -k MAC n -t 138.324256823 -s 3 -S COLOR -c green -o black r -t 138.324256823 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 33 -k MAC + -t 138.324266823 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 138.324266823 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 138.324266823 -s 3 -S COLOR -c green -o black h -t 138.324266823 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 138.324281823 -s 3 -S COLOR -c green -o black r -t 138.324281823 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 33 -k AGT n -t 138.324419452 -s 1 -S COLOR -c green -o black r -t 138.324419452 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 140.482822129 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 34 -k AGT - -t 140.482822129 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 34 -k AGT n -t 140.482822129 -s 2 -S COLOR -c green -o black h -t 140.482822129 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 34 -k AGT + -t 140.482897129 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 140.482897129 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 140.482897129 -s 2 -S COLOR -c green -o black h -t 140.482897129 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 140.483073874 -s 1 -S COLOR -c green -o black r -t 140.483073874 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 140.483083874 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 140.483083874 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 140.483083874 -s 1 -S COLOR -c green -o black h -t 140.483083874 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 140.483236618 -s 2 -S COLOR -c green -o black r -t 140.483236618 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 140.483286618 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 34 -k MAC - -t 140.483286618 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 34 -k MAC n -t 140.483286618 -s 2 -S COLOR -c green -o black h -t 140.483286618 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 34 -k MAC n -t 140.485671362 -s 1 -S COLOR -c green -o black r -t 140.485671362 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 34 -k MAC + -t 140.485681362 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 140.485681362 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 140.485681362 -s 1 -S COLOR -c green -o black h -t 140.485681362 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 140.485834106 -s 2 -S COLOR -c green -o black r -t 140.485834106 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 140.486423362 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 140.486423362 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 140.486423362 -s 1 -S COLOR -c green -o black h -t 140.486423362 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 140.486599991 -s 3 -S COLOR -c green -o black r -t 140.486599991 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 140.486609991 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 140.486609991 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 140.486609991 -s 3 -S COLOR -c green -o black h -t 140.486609991 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 140.486762620 -s 1 -S COLOR -c green -o black r -t 140.486762620 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 140.486812620 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 34 -k MAC - -t 140.486812620 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 34 -k MAC n -t 140.486812620 -s 1 -S COLOR -c green -o black h -t 140.486812620 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 34 -k MAC n -t 140.489197249 -s 3 -S COLOR -c green -o black r -t 140.489197249 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 34 -k MAC + -t 140.489207249 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 140.489207249 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 140.489207249 -s 3 -S COLOR -c green -o black h -t 140.489207249 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 140.489222249 -s 3 -S COLOR -c green -o black r -t 140.489222249 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 34 -k AGT n -t 140.489359879 -s 1 -S COLOR -c green -o black r -t 140.489359879 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 142.019392045 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 35 -k AGT - -t 142.019392045 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 35 -k AGT n -t 142.019392045 -s 2 -S COLOR -c green -o black h -t 142.019392045 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 35 -k AGT + -t 142.019467045 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 142.019467045 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 142.019467045 -s 2 -S COLOR -c green -o black h -t 142.019467045 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 142.019643789 -s 1 -S COLOR -c green -o black r -t 142.019643789 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 142.019653789 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 142.019653789 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 142.019653789 -s 1 -S COLOR -c green -o black h -t 142.019653789 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 142.019806534 -s 2 -S COLOR -c green -o black r -t 142.019806534 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 142.019856534 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 35 -k MAC - -t 142.019856534 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 35 -k MAC n -t 142.019856534 -s 2 -S COLOR -c green -o black h -t 142.019856534 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 35 -k MAC n -t 142.022241278 -s 1 -S COLOR -c green -o black r -t 142.022241278 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 35 -k MAC + -t 142.022251278 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 142.022251278 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 142.022251278 -s 1 -S COLOR -c green -o black h -t 142.022251278 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 142.022404022 -s 2 -S COLOR -c green -o black r -t 142.022404022 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 142.023013278 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 142.023013278 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 142.023013278 -s 1 -S COLOR -c green -o black h -t 142.023013278 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 142.023189907 -s 3 -S COLOR -c green -o black r -t 142.023189907 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 142.023199907 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 142.023199907 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 142.023199907 -s 3 -S COLOR -c green -o black h -t 142.023199907 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 142.023352536 -s 1 -S COLOR -c green -o black r -t 142.023352536 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 142.023402536 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 35 -k MAC - -t 142.023402536 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 35 -k MAC n -t 142.023402536 -s 1 -S COLOR -c green -o black h -t 142.023402536 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 35 -k MAC n -t 142.025787165 -s 3 -S COLOR -c green -o black r -t 142.025787165 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 35 -k MAC + -t 142.025797165 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 142.025797165 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 142.025797165 -s 3 -S COLOR -c green -o black h -t 142.025797165 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 142.025812165 -s 3 -S COLOR -c green -o black r -t 142.025812165 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 35 -k AGT n -t 142.025949795 -s 1 -S COLOR -c green -o black r -t 142.025949795 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 144.983429728 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 36 -k AGT - -t 144.983429728 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 36 -k AGT n -t 144.983429728 -s 2 -S COLOR -c green -o black h -t 144.983429728 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 36 -k AGT + -t 144.983504728 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 144.983504728 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 144.983504728 -s 2 -S COLOR -c green -o black h -t 144.983504728 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 144.983681472 -s 1 -S COLOR -c green -o black r -t 144.983681472 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 144.983691472 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 144.983691472 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 144.983691472 -s 1 -S COLOR -c green -o black h -t 144.983691472 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 144.983844217 -s 2 -S COLOR -c green -o black r -t 144.983844217 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 144.983894217 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 36 -k MAC - -t 144.983894217 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 36 -k MAC n -t 144.983894217 -s 2 -S COLOR -c green -o black h -t 144.983894217 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 36 -k MAC n -t 144.986278961 -s 1 -S COLOR -c green -o black r -t 144.986278961 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 36 -k MAC + -t 144.986288961 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 144.986288961 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 144.986288961 -s 1 -S COLOR -c green -o black h -t 144.986288961 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 144.986441705 -s 2 -S COLOR -c green -o black r -t 144.986441705 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 144.987090961 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 144.987090961 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 144.987090961 -s 1 -S COLOR -c green -o black h -t 144.987090961 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 144.987267590 -s 3 -S COLOR -c green -o black r -t 144.987267590 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 144.987277590 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 144.987277590 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 144.987277590 -s 3 -S COLOR -c green -o black h -t 144.987277590 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 144.987430219 -s 1 -S COLOR -c green -o black r -t 144.987430219 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 144.987480219 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 36 -k MAC - -t 144.987480219 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 36 -k MAC n -t 144.987480219 -s 1 -S COLOR -c green -o black h -t 144.987480219 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 36 -k MAC n -t 144.989864848 -s 3 -S COLOR -c green -o black r -t 144.989864848 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 36 -k MAC + -t 144.989874848 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 144.989874848 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 144.989874848 -s 3 -S COLOR -c green -o black h -t 144.989874848 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 144.989889848 -s 3 -S COLOR -c green -o black r -t 144.989889848 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 36 -k AGT n -t 144.990027477 -s 1 -S COLOR -c green -o black r -t 144.990027477 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 146.689737763 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 37 -k AGT - -t 146.689737763 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 37 -k AGT n -t 146.689737763 -s 2 -S COLOR -c green -o black h -t 146.689737763 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 37 -k AGT + -t 146.689812763 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 146.689812763 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 146.689812763 -s 2 -S COLOR -c green -o black h -t 146.689812763 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 146.689989508 -s 1 -S COLOR -c green -o black r -t 146.689989508 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 146.689999508 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 146.689999508 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 146.689999508 -s 1 -S COLOR -c green -o black h -t 146.689999508 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 146.690152252 -s 2 -S COLOR -c green -o black r -t 146.690152252 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 146.690202252 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 37 -k MAC - -t 146.690202252 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 37 -k MAC n -t 146.690202252 -s 2 -S COLOR -c green -o black h -t 146.690202252 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 37 -k MAC n -t 146.692586996 -s 1 -S COLOR -c green -o black r -t 146.692586996 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 37 -k MAC + -t 146.692596996 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 146.692596996 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 146.692596996 -s 1 -S COLOR -c green -o black h -t 146.692596996 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 146.692749741 -s 2 -S COLOR -c green -o black r -t 146.692749741 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 146.692938996 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 146.692938996 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 146.692938996 -s 1 -S COLOR -c green -o black h -t 146.692938996 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 146.693115625 -s 3 -S COLOR -c green -o black r -t 146.693115625 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 146.693125625 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 146.693125625 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 146.693125625 -s 3 -S COLOR -c green -o black h -t 146.693125625 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 146.693278255 -s 1 -S COLOR -c green -o black r -t 146.693278255 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 146.693328255 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 37 -k MAC - -t 146.693328255 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 37 -k MAC n -t 146.693328255 -s 1 -S COLOR -c green -o black h -t 146.693328255 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 37 -k MAC n -t 146.695712884 -s 3 -S COLOR -c green -o black r -t 146.695712884 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 37 -k MAC + -t 146.695722884 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 146.695722884 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 146.695722884 -s 3 -S COLOR -c green -o black h -t 146.695722884 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 146.695737884 -s 3 -S COLOR -c green -o black r -t 146.695737884 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 37 -k AGT n -t 146.695875513 -s 1 -S COLOR -c green -o black r -t 146.695875513 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 149.525407379 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 38 -k AGT - -t 149.525407379 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 38 -k AGT n -t 149.525407379 -s 2 -S COLOR -c green -o black h -t 149.525407379 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 38 -k AGT + -t 149.525482379 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 149.525482379 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 149.525482379 -s 2 -S COLOR -c green -o black h -t 149.525482379 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 149.525659124 -s 1 -S COLOR -c green -o black r -t 149.525659124 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 149.525669124 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 149.525669124 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 149.525669124 -s 1 -S COLOR -c green -o black h -t 149.525669124 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 149.525821868 -s 2 -S COLOR -c green -o black r -t 149.525821868 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 149.525871868 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 38 -k MAC - -t 149.525871868 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 38 -k MAC n -t 149.525871868 -s 2 -S COLOR -c green -o black h -t 149.525871868 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 38 -k MAC n -t 149.528256612 -s 1 -S COLOR -c green -o black r -t 149.528256612 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 38 -k MAC + -t 149.528266612 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 149.528266612 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 149.528266612 -s 1 -S COLOR -c green -o black h -t 149.528266612 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 149.528419357 -s 2 -S COLOR -c green -o black r -t 149.528419357 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 149.528948612 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 149.528948612 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 149.528948612 -s 1 -S COLOR -c green -o black h -t 149.528948612 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 149.529125241 -s 3 -S COLOR -c green -o black r -t 149.529125241 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 149.529135241 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 149.529135241 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 149.529135241 -s 3 -S COLOR -c green -o black h -t 149.529135241 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 149.529287871 -s 1 -S COLOR -c green -o black r -t 149.529287871 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 149.529337871 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 38 -k MAC - -t 149.529337871 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 38 -k MAC n -t 149.529337871 -s 1 -S COLOR -c green -o black h -t 149.529337871 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 38 -k MAC n -t 149.531722500 -s 3 -S COLOR -c green -o black r -t 149.531722500 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 38 -k MAC + -t 149.531732500 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 149.531732500 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 149.531732500 -s 3 -S COLOR -c green -o black h -t 149.531732500 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 149.531747500 -s 3 -S COLOR -c green -o black r -t 149.531747500 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 38 -k AGT n -t 149.531885129 -s 1 -S COLOR -c green -o black r -t 149.531885129 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 151.789693727 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 39 -k AGT - -t 151.789693727 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 39 -k AGT n -t 151.789693727 -s 2 -S COLOR -c green -o black h -t 151.789693727 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 39 -k AGT + -t 151.789768727 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 151.789768727 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 151.789768727 -s 2 -S COLOR -c green -o black h -t 151.789768727 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 151.789945471 -s 1 -S COLOR -c green -o black r -t 151.789945471 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 151.789955471 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 151.789955471 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 151.789955471 -s 1 -S COLOR -c green -o black h -t 151.789955471 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 151.790108215 -s 2 -S COLOR -c green -o black r -t 151.790108215 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 151.790158215 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 39 -k MAC - -t 151.790158215 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 39 -k MAC n -t 151.790158215 -s 2 -S COLOR -c green -o black h -t 151.790158215 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 39 -k MAC n -t 151.792542960 -s 1 -S COLOR -c green -o black r -t 151.792542960 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 39 -k MAC + -t 151.792552960 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 151.792552960 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 151.792552960 -s 1 -S COLOR -c green -o black h -t 151.792552960 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 151.792705704 -s 2 -S COLOR -c green -o black r -t 151.792705704 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 151.793334960 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 151.793334960 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 151.793334960 -s 1 -S COLOR -c green -o black h -t 151.793334960 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 151.793511589 -s 3 -S COLOR -c green -o black r -t 151.793511589 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 151.793521589 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 151.793521589 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 151.793521589 -s 3 -S COLOR -c green -o black h -t 151.793521589 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 151.793674218 -s 1 -S COLOR -c green -o black r -t 151.793674218 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 151.793724218 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 39 -k MAC - -t 151.793724218 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 39 -k MAC n -t 151.793724218 -s 1 -S COLOR -c green -o black h -t 151.793724218 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 39 -k MAC n -t 151.796108847 -s 3 -S COLOR -c green -o black r -t 151.796108847 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 39 -k MAC + -t 151.796118847 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 151.796118847 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 151.796118847 -s 3 -S COLOR -c green -o black h -t 151.796118847 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 151.796133847 -s 3 -S COLOR -c green -o black r -t 151.796133847 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 39 -k AGT n -t 151.796271476 -s 1 -S COLOR -c green -o black r -t 151.796271476 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 152.961013601 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 40 -k AGT - -t 152.961013601 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 40 -k AGT n -t 152.961013601 -s 2 -S COLOR -c green -o black h -t 152.961013601 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 40 -k AGT + -t 152.961088601 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 152.961088601 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 152.961088601 -s 2 -S COLOR -c green -o black h -t 152.961088601 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 152.961265345 -s 1 -S COLOR -c green -o black r -t 152.961265345 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 152.961275345 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 152.961275345 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 152.961275345 -s 1 -S COLOR -c green -o black h -t 152.961275345 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 152.961428089 -s 2 -S COLOR -c green -o black r -t 152.961428089 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 152.961478089 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 40 -k MAC - -t 152.961478089 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 40 -k MAC n -t 152.961478089 -s 2 -S COLOR -c green -o black h -t 152.961478089 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 40 -k MAC n -t 152.963862834 -s 1 -S COLOR -c green -o black r -t 152.963862834 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 40 -k MAC + -t 152.963872834 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 152.963872834 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 152.963872834 -s 1 -S COLOR -c green -o black h -t 152.963872834 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 152.964025578 -s 2 -S COLOR -c green -o black r -t 152.964025578 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 152.964314834 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 152.964314834 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 152.964314834 -s 1 -S COLOR -c green -o black h -t 152.964314834 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 152.964491463 -s 3 -S COLOR -c green -o black r -t 152.964491463 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 152.964501463 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 152.964501463 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 152.964501463 -s 3 -S COLOR -c green -o black h -t 152.964501463 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 152.964654092 -s 1 -S COLOR -c green -o black r -t 152.964654092 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 152.964704092 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 40 -k MAC - -t 152.964704092 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 40 -k MAC n -t 152.964704092 -s 1 -S COLOR -c green -o black h -t 152.964704092 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 40 -k MAC n -t 152.967088721 -s 3 -S COLOR -c green -o black r -t 152.967088721 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 40 -k MAC + -t 152.967098721 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 152.967098721 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 152.967098721 -s 3 -S COLOR -c green -o black h -t 152.967098721 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 152.967113721 -s 3 -S COLOR -c green -o black r -t 152.967113721 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 40 -k AGT n -t 152.967251350 -s 1 -S COLOR -c green -o black r -t 152.967251350 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 154.373510598 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 41 -k AGT - -t 154.373510598 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 41 -k AGT n -t 154.373510598 -s 2 -S COLOR -c green -o black h -t 154.373510598 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 41 -k AGT + -t 154.373585598 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 154.373585598 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 154.373585598 -s 2 -S COLOR -c green -o black h -t 154.373585598 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 154.373762342 -s 1 -S COLOR -c green -o black r -t 154.373762342 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 154.373772342 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 154.373772342 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 154.373772342 -s 1 -S COLOR -c green -o black h -t 154.373772342 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 154.373925087 -s 2 -S COLOR -c green -o black r -t 154.373925087 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 154.373975087 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 41 -k MAC - -t 154.373975087 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 41 -k MAC n -t 154.373975087 -s 2 -S COLOR -c green -o black h -t 154.373975087 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 41 -k MAC n -t 154.376359831 -s 1 -S COLOR -c green -o black r -t 154.376359831 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 41 -k MAC + -t 154.376369831 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 154.376369831 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 154.376369831 -s 1 -S COLOR -c green -o black h -t 154.376369831 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 154.376522575 -s 2 -S COLOR -c green -o black r -t 154.376522575 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 154.377171831 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 154.377171831 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 154.377171831 -s 1 -S COLOR -c green -o black h -t 154.377171831 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 154.377348460 -s 3 -S COLOR -c green -o black r -t 154.377348460 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 154.377358460 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 154.377358460 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 154.377358460 -s 3 -S COLOR -c green -o black h -t 154.377358460 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 154.377511089 -s 1 -S COLOR -c green -o black r -t 154.377511089 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 154.377561089 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 41 -k MAC - -t 154.377561089 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 41 -k MAC n -t 154.377561089 -s 1 -S COLOR -c green -o black h -t 154.377561089 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 41 -k MAC n -t 154.379945718 -s 3 -S COLOR -c green -o black r -t 154.379945718 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 41 -k MAC + -t 154.379955718 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 154.379955718 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 154.379955718 -s 3 -S COLOR -c green -o black h -t 154.379955718 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 154.379970718 -s 3 -S COLOR -c green -o black r -t 154.379970718 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 41 -k AGT n -t 154.380108347 -s 1 -S COLOR -c green -o black r -t 154.380108347 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 156.381627089 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 42 -k AGT - -t 156.381627089 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 42 -k AGT n -t 156.381627089 -s 2 -S COLOR -c green -o black h -t 156.381627089 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 42 -k AGT + -t 156.381702089 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 156.381702089 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 156.381702089 -s 2 -S COLOR -c green -o black h -t 156.381702089 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 156.381878834 -s 1 -S COLOR -c green -o black r -t 156.381878834 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 156.381888834 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 156.381888834 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 156.381888834 -s 1 -S COLOR -c green -o black h -t 156.381888834 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 156.382041578 -s 2 -S COLOR -c green -o black r -t 156.382041578 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 156.382091578 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 42 -k MAC - -t 156.382091578 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 42 -k MAC n -t 156.382091578 -s 2 -S COLOR -c green -o black h -t 156.382091578 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 42 -k MAC n -t 156.384476322 -s 1 -S COLOR -c green -o black r -t 156.384476322 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 42 -k MAC + -t 156.384486322 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 156.384486322 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 156.384486322 -s 1 -S COLOR -c green -o black h -t 156.384486322 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 156.384639067 -s 2 -S COLOR -c green -o black r -t 156.384639067 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 156.384828322 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 156.384828322 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 156.384828322 -s 1 -S COLOR -c green -o black h -t 156.384828322 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 156.385004952 -s 3 -S COLOR -c green -o black r -t 156.385004952 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 156.385014952 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 156.385014952 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 156.385014952 -s 3 -S COLOR -c green -o black h -t 156.385014952 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 156.385167581 -s 1 -S COLOR -c green -o black r -t 156.385167581 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 156.385217581 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 42 -k MAC - -t 156.385217581 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 42 -k MAC n -t 156.385217581 -s 1 -S COLOR -c green -o black h -t 156.385217581 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 42 -k MAC n -t 156.387602210 -s 3 -S COLOR -c green -o black r -t 156.387602210 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 42 -k MAC + -t 156.387612210 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 156.387612210 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 156.387612210 -s 3 -S COLOR -c green -o black h -t 156.387612210 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 156.387627210 -s 3 -S COLOR -c green -o black r -t 156.387627210 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 42 -k AGT n -t 156.387764839 -s 1 -S COLOR -c green -o black r -t 156.387764839 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 157.521786781 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 43 -k AGT - -t 157.521786781 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 43 -k AGT n -t 157.521786781 -s 2 -S COLOR -c green -o black h -t 157.521786781 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 43 -k AGT + -t 157.521861781 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 157.521861781 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 157.521861781 -s 2 -S COLOR -c green -o black h -t 157.521861781 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 157.522038526 -s 1 -S COLOR -c green -o black r -t 157.522038526 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 157.522048526 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 157.522048526 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 157.522048526 -s 1 -S COLOR -c green -o black h -t 157.522048526 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 157.522201270 -s 2 -S COLOR -c green -o black r -t 157.522201270 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 157.522251270 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 43 -k MAC - -t 157.522251270 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 43 -k MAC n -t 157.522251270 -s 2 -S COLOR -c green -o black h -t 157.522251270 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 43 -k MAC n -t 157.524636014 -s 1 -S COLOR -c green -o black r -t 157.524636014 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 43 -k MAC + -t 157.524646014 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 157.524646014 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 157.524646014 -s 1 -S COLOR -c green -o black h -t 157.524646014 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 157.524798759 -s 2 -S COLOR -c green -o black r -t 157.524798759 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 157.525168014 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 157.525168014 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 157.525168014 -s 1 -S COLOR -c green -o black h -t 157.525168014 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 157.525344643 -s 3 -S COLOR -c green -o black r -t 157.525344643 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 157.525354643 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 157.525354643 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 157.525354643 -s 3 -S COLOR -c green -o black h -t 157.525354643 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 157.525507272 -s 1 -S COLOR -c green -o black r -t 157.525507272 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 157.525557272 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 43 -k MAC - -t 157.525557272 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 43 -k MAC n -t 157.525557272 -s 1 -S COLOR -c green -o black h -t 157.525557272 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 43 -k MAC n -t 157.527941902 -s 3 -S COLOR -c green -o black r -t 157.527941902 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 43 -k MAC + -t 157.527951902 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 157.527951902 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 157.527951902 -s 3 -S COLOR -c green -o black h -t 157.527951902 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 157.527966902 -s 3 -S COLOR -c green -o black r -t 157.527966902 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 43 -k AGT n -t 157.528104531 -s 1 -S COLOR -c green -o black r -t 157.528104531 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 159.218581568 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 44 -k AGT - -t 159.218581568 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 44 -k AGT n -t 159.218581568 -s 2 -S COLOR -c green -o black h -t 159.218581568 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 44 -k AGT + -t 159.218656568 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 159.218656568 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 159.218656568 -s 2 -S COLOR -c green -o black h -t 159.218656568 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 159.218833312 -s 1 -S COLOR -c green -o black r -t 159.218833312 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 159.218843312 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 159.218843312 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 159.218843312 -s 1 -S COLOR -c green -o black h -t 159.218843312 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 159.218996057 -s 2 -S COLOR -c green -o black r -t 159.218996057 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 159.219046057 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 44 -k MAC - -t 159.219046057 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 44 -k MAC n -t 159.219046057 -s 2 -S COLOR -c green -o black h -t 159.219046057 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 44 -k MAC n -t 159.221430801 -s 1 -S COLOR -c green -o black r -t 159.221430801 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 44 -k MAC + -t 159.221440801 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 159.221440801 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 159.221440801 -s 1 -S COLOR -c green -o black h -t 159.221440801 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 159.221593545 -s 2 -S COLOR -c green -o black r -t 159.221593545 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 159.222102801 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 159.222102801 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 159.222102801 -s 1 -S COLOR -c green -o black h -t 159.222102801 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 159.222279430 -s 3 -S COLOR -c green -o black r -t 159.222279430 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 159.222289430 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 159.222289430 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 159.222289430 -s 3 -S COLOR -c green -o black h -t 159.222289430 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 159.222442059 -s 1 -S COLOR -c green -o black r -t 159.222442059 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 159.222492059 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 44 -k MAC - -t 159.222492059 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 44 -k MAC n -t 159.222492059 -s 1 -S COLOR -c green -o black h -t 159.222492059 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 44 -k MAC n -t 159.224876688 -s 3 -S COLOR -c green -o black r -t 159.224876688 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 44 -k MAC + -t 159.224886688 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 159.224886688 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 159.224886688 -s 3 -S COLOR -c green -o black h -t 159.224886688 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 159.224901688 -s 3 -S COLOR -c green -o black r -t 159.224901688 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 44 -k AGT n -t 159.225039317 -s 1 -S COLOR -c green -o black r -t 159.225039317 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 161.228791733 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 45 -k AGT - -t 161.228791733 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 45 -k AGT n -t 161.228791733 -s 2 -S COLOR -c green -o black h -t 161.228791733 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 45 -k AGT + -t 161.228866733 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 161.228866733 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 161.228866733 -s 2 -S COLOR -c green -o black h -t 161.228866733 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 161.229043478 -s 1 -S COLOR -c green -o black r -t 161.229043478 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 161.229053478 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 161.229053478 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 161.229053478 -s 1 -S COLOR -c green -o black h -t 161.229053478 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 161.229206222 -s 2 -S COLOR -c green -o black r -t 161.229206222 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 161.229256222 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 45 -k MAC - -t 161.229256222 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 45 -k MAC n -t 161.229256222 -s 2 -S COLOR -c green -o black h -t 161.229256222 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 45 -k MAC n -t 161.231640966 -s 1 -S COLOR -c green -o black r -t 161.231640966 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 45 -k MAC + -t 161.231650966 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 161.231650966 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 161.231650966 -s 1 -S COLOR -c green -o black h -t 161.231650966 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 161.231803711 -s 2 -S COLOR -c green -o black r -t 161.231803711 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 161.231852966 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 161.231852966 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 161.231852966 -s 1 -S COLOR -c green -o black h -t 161.231852966 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 161.232029595 -s 3 -S COLOR -c green -o black r -t 161.232029595 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 161.232039595 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 161.232039595 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 161.232039595 -s 3 -S COLOR -c green -o black h -t 161.232039595 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 161.232192224 -s 1 -S COLOR -c green -o black r -t 161.232192224 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 161.232242224 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 45 -k MAC - -t 161.232242224 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 45 -k MAC n -t 161.232242224 -s 1 -S COLOR -c green -o black h -t 161.232242224 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 45 -k MAC n -t 161.234626854 -s 3 -S COLOR -c green -o black r -t 161.234626854 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 45 -k MAC + -t 161.234636854 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 161.234636854 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 161.234636854 -s 3 -S COLOR -c green -o black h -t 161.234636854 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 161.234651854 -s 3 -S COLOR -c green -o black r -t 161.234651854 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 45 -k AGT n -t 161.234789483 -s 1 -S COLOR -c green -o black r -t 161.234789483 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 162.638264909 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 46 -k AGT - -t 162.638264909 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 46 -k AGT n -t 162.638264909 -s 2 -S COLOR -c green -o black h -t 162.638264909 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 46 -k AGT + -t 162.638339909 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 162.638339909 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 162.638339909 -s 2 -S COLOR -c green -o black h -t 162.638339909 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 162.638516653 -s 1 -S COLOR -c green -o black r -t 162.638516653 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 162.638526653 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 162.638526653 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 162.638526653 -s 1 -S COLOR -c green -o black h -t 162.638526653 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 162.638679397 -s 2 -S COLOR -c green -o black r -t 162.638679397 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 162.638729397 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 46 -k MAC - -t 162.638729397 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 46 -k MAC n -t 162.638729397 -s 2 -S COLOR -c green -o black h -t 162.638729397 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 46 -k MAC n -t 162.641114142 -s 1 -S COLOR -c green -o black r -t 162.641114142 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 46 -k MAC + -t 162.641124142 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 162.641124142 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 162.641124142 -s 1 -S COLOR -c green -o black h -t 162.641124142 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 162.641276886 -s 2 -S COLOR -c green -o black r -t 162.641276886 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 162.641926142 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 162.641926142 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 162.641926142 -s 1 -S COLOR -c green -o black h -t 162.641926142 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 162.642102771 -s 3 -S COLOR -c green -o black r -t 162.642102771 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 162.642112771 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 162.642112771 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 162.642112771 -s 3 -S COLOR -c green -o black h -t 162.642112771 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 162.642265400 -s 1 -S COLOR -c green -o black r -t 162.642265400 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 162.642315400 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 46 -k MAC - -t 162.642315400 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 46 -k MAC n -t 162.642315400 -s 1 -S COLOR -c green -o black h -t 162.642315400 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 46 -k MAC n -t 162.644700029 -s 3 -S COLOR -c green -o black r -t 162.644700029 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 46 -k MAC + -t 162.644710029 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 162.644710029 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 162.644710029 -s 3 -S COLOR -c green -o black h -t 162.644710029 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 162.644725029 -s 3 -S COLOR -c green -o black r -t 162.644725029 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 46 -k AGT n -t 162.644862658 -s 1 -S COLOR -c green -o black r -t 162.644862658 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 165.445189923 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 47 -k AGT - -t 165.445189923 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 47 -k AGT n -t 165.445189923 -s 2 -S COLOR -c green -o black h -t 165.445189923 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 47 -k AGT + -t 165.445264923 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 165.445264923 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 165.445264923 -s 2 -S COLOR -c green -o black h -t 165.445264923 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 165.445441667 -s 1 -S COLOR -c green -o black r -t 165.445441667 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 165.445451667 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 165.445451667 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 165.445451667 -s 1 -S COLOR -c green -o black h -t 165.445451667 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 165.445604412 -s 2 -S COLOR -c green -o black r -t 165.445604412 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 165.445654412 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 47 -k MAC - -t 165.445654412 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 47 -k MAC n -t 165.445654412 -s 2 -S COLOR -c green -o black h -t 165.445654412 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 47 -k MAC n -t 165.448039156 -s 1 -S COLOR -c green -o black r -t 165.448039156 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 47 -k MAC + -t 165.448049156 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 165.448049156 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 165.448049156 -s 1 -S COLOR -c green -o black h -t 165.448049156 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 165.448201900 -s 2 -S COLOR -c green -o black r -t 165.448201900 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 165.448251156 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 165.448251156 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 165.448251156 -s 1 -S COLOR -c green -o black h -t 165.448251156 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 165.448427785 -s 3 -S COLOR -c green -o black r -t 165.448427785 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 165.448437785 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 165.448437785 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 165.448437785 -s 3 -S COLOR -c green -o black h -t 165.448437785 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 165.448590414 -s 1 -S COLOR -c green -o black r -t 165.448590414 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 165.448640414 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 47 -k MAC - -t 165.448640414 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 47 -k MAC n -t 165.448640414 -s 1 -S COLOR -c green -o black h -t 165.448640414 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 47 -k MAC n -t 165.451025043 -s 3 -S COLOR -c green -o black r -t 165.451025043 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 47 -k MAC + -t 165.451035043 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 165.451035043 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 165.451035043 -s 3 -S COLOR -c green -o black h -t 165.451035043 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 165.451050043 -s 3 -S COLOR -c green -o black r -t 165.451050043 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 47 -k AGT n -t 165.451187672 -s 1 -S COLOR -c green -o black r -t 165.451187672 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 168.095539248 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 48 -k AGT - -t 168.095539248 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 48 -k AGT n -t 168.095539248 -s 2 -S COLOR -c green -o black h -t 168.095539248 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 48 -k AGT + -t 168.095614248 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 168.095614248 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 168.095614248 -s 2 -S COLOR -c green -o black h -t 168.095614248 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 168.095790993 -s 1 -S COLOR -c green -o black r -t 168.095790993 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 168.095800993 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 168.095800993 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 168.095800993 -s 1 -S COLOR -c green -o black h -t 168.095800993 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 168.095953737 -s 2 -S COLOR -c green -o black r -t 168.095953737 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 168.096003737 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 48 -k MAC - -t 168.096003737 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 48 -k MAC n -t 168.096003737 -s 2 -S COLOR -c green -o black h -t 168.096003737 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 48 -k MAC n -t 168.098388481 -s 1 -S COLOR -c green -o black r -t 168.098388481 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 48 -k MAC + -t 168.098398481 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 168.098398481 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 168.098398481 -s 1 -S COLOR -c green -o black h -t 168.098398481 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 168.098551226 -s 2 -S COLOR -c green -o black r -t 168.098551226 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 168.098640481 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 168.098640481 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 168.098640481 -s 1 -S COLOR -c green -o black h -t 168.098640481 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 168.098817110 -s 3 -S COLOR -c green -o black r -t 168.098817110 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 168.098827110 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 168.098827110 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 168.098827110 -s 3 -S COLOR -c green -o black h -t 168.098827110 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 168.098979739 -s 1 -S COLOR -c green -o black r -t 168.098979739 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 168.099029739 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 48 -k MAC - -t 168.099029739 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 48 -k MAC n -t 168.099029739 -s 1 -S COLOR -c green -o black h -t 168.099029739 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 48 -k MAC n -t 168.101414369 -s 3 -S COLOR -c green -o black r -t 168.101414369 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 48 -k MAC + -t 168.101424369 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 168.101424369 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 168.101424369 -s 3 -S COLOR -c green -o black h -t 168.101424369 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 168.101439369 -s 3 -S COLOR -c green -o black r -t 168.101439369 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 48 -k AGT n -t 168.101576998 -s 1 -S COLOR -c green -o black r -t 168.101576998 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 170.323612881 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 49 -k AGT - -t 170.323612881 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 49 -k AGT n -t 170.323612881 -s 2 -S COLOR -c green -o black h -t 170.323612881 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 49 -k AGT + -t 170.323687881 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 170.323687881 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 170.323687881 -s 2 -S COLOR -c green -o black h -t 170.323687881 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 170.323864625 -s 1 -S COLOR -c green -o black r -t 170.323864625 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 170.323874625 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 170.323874625 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 170.323874625 -s 1 -S COLOR -c green -o black h -t 170.323874625 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 170.324027370 -s 2 -S COLOR -c green -o black r -t 170.324027370 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 170.324077370 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 49 -k MAC - -t 170.324077370 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 49 -k MAC n -t 170.324077370 -s 2 -S COLOR -c green -o black h -t 170.324077370 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 49 -k MAC n -t 170.326462114 -s 1 -S COLOR -c green -o black r -t 170.326462114 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 49 -k MAC + -t 170.326472114 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 170.326472114 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 170.326472114 -s 1 -S COLOR -c green -o black h -t 170.326472114 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 170.326624858 -s 2 -S COLOR -c green -o black r -t 170.326624858 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 170.327174114 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 170.327174114 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 170.327174114 -s 1 -S COLOR -c green -o black h -t 170.327174114 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 170.327350743 -s 3 -S COLOR -c green -o black r -t 170.327350743 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 170.327360743 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 170.327360743 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 170.327360743 -s 3 -S COLOR -c green -o black h -t 170.327360743 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 170.327513372 -s 1 -S COLOR -c green -o black r -t 170.327513372 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 170.327563372 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 49 -k MAC - -t 170.327563372 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 49 -k MAC n -t 170.327563372 -s 1 -S COLOR -c green -o black h -t 170.327563372 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 49 -k MAC n -t 170.329948001 -s 3 -S COLOR -c green -o black r -t 170.329948001 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 49 -k MAC + -t 170.329958001 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 170.329958001 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 170.329958001 -s 3 -S COLOR -c green -o black h -t 170.329958001 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 170.329973001 -s 3 -S COLOR -c green -o black r -t 170.329973001 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 49 -k AGT n -t 170.330110631 -s 1 -S COLOR -c green -o black r -t 170.330110631 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 172.730290742 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 50 -k AGT - -t 172.730290742 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 50 -k AGT n -t 172.730290742 -s 2 -S COLOR -c green -o black h -t 172.730290742 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 50 -k AGT + -t 172.730365742 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 172.730365742 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 172.730365742 -s 2 -S COLOR -c green -o black h -t 172.730365742 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 172.730542487 -s 1 -S COLOR -c green -o black r -t 172.730542487 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 172.730552487 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 172.730552487 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 172.730552487 -s 1 -S COLOR -c green -o black h -t 172.730552487 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 172.730705231 -s 2 -S COLOR -c green -o black r -t 172.730705231 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 172.730755231 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 50 -k MAC - -t 172.730755231 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 50 -k MAC n -t 172.730755231 -s 2 -S COLOR -c green -o black h -t 172.730755231 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 50 -k MAC n -t 172.733139975 -s 1 -S COLOR -c green -o black r -t 172.733139975 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 50 -k MAC + -t 172.733149975 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 172.733149975 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 172.733149975 -s 1 -S COLOR -c green -o black h -t 172.733149975 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 172.733302720 -s 2 -S COLOR -c green -o black r -t 172.733302720 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 172.733791975 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 172.733791975 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 172.733791975 -s 1 -S COLOR -c green -o black h -t 172.733791975 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 172.733968605 -s 3 -S COLOR -c green -o black r -t 172.733968605 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 172.733978605 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 172.733978605 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 172.733978605 -s 3 -S COLOR -c green -o black h -t 172.733978605 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 172.734131234 -s 1 -S COLOR -c green -o black r -t 172.734131234 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 172.734181234 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 50 -k MAC - -t 172.734181234 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 50 -k MAC n -t 172.734181234 -s 1 -S COLOR -c green -o black h -t 172.734181234 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 50 -k MAC n -t 172.736565863 -s 3 -S COLOR -c green -o black r -t 172.736565863 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 50 -k MAC + -t 172.736575863 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 172.736575863 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 172.736575863 -s 3 -S COLOR -c green -o black h -t 172.736575863 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 172.736590863 -s 3 -S COLOR -c green -o black r -t 172.736590863 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 50 -k AGT n -t 172.736728492 -s 1 -S COLOR -c green -o black r -t 172.736728492 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 175.359543119 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 51 -k AGT - -t 175.359543119 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 51 -k AGT n -t 175.359543119 -s 2 -S COLOR -c green -o black h -t 175.359543119 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 51 -k AGT + -t 175.359618119 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 175.359618119 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 175.359618119 -s 2 -S COLOR -c green -o black h -t 175.359618119 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 175.359794863 -s 1 -S COLOR -c green -o black r -t 175.359794863 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 175.359804863 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 175.359804863 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 175.359804863 -s 1 -S COLOR -c green -o black h -t 175.359804863 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 175.359957608 -s 2 -S COLOR -c green -o black r -t 175.359957608 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 175.360007608 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 51 -k MAC - -t 175.360007608 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 51 -k MAC n -t 175.360007608 -s 2 -S COLOR -c green -o black h -t 175.360007608 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 51 -k MAC n -t 175.362392352 -s 1 -S COLOR -c green -o black r -t 175.362392352 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 51 -k MAC + -t 175.362402352 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 175.362402352 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 175.362402352 -s 1 -S COLOR -c green -o black h -t 175.362402352 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 175.362555096 -s 2 -S COLOR -c green -o black r -t 175.362555096 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 175.363104352 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 175.363104352 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 175.363104352 -s 1 -S COLOR -c green -o black h -t 175.363104352 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 175.363280981 -s 3 -S COLOR -c green -o black r -t 175.363280981 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 175.363290981 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 175.363290981 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 175.363290981 -s 3 -S COLOR -c green -o black h -t 175.363290981 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 175.363443610 -s 1 -S COLOR -c green -o black r -t 175.363443610 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 175.363493610 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 51 -k MAC - -t 175.363493610 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 51 -k MAC n -t 175.363493610 -s 1 -S COLOR -c green -o black h -t 175.363493610 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 51 -k MAC n -t 175.365878239 -s 3 -S COLOR -c green -o black r -t 175.365878239 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 51 -k MAC + -t 175.365888239 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 175.365888239 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 175.365888239 -s 3 -S COLOR -c green -o black h -t 175.365888239 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 175.365903239 -s 3 -S COLOR -c green -o black r -t 175.365903239 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 51 -k AGT n -t 175.366040869 -s 1 -S COLOR -c green -o black r -t 175.366040869 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 176.388983161 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 52 -k AGT - -t 176.388983161 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 52 -k AGT n -t 176.388983161 -s 2 -S COLOR -c green -o black h -t 176.388983161 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 52 -k AGT + -t 176.389058161 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 176.389058161 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 176.389058161 -s 2 -S COLOR -c green -o black h -t 176.389058161 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 176.389234905 -s 1 -S COLOR -c green -o black r -t 176.389234905 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 176.389244905 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 176.389244905 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 176.389244905 -s 1 -S COLOR -c green -o black h -t 176.389244905 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 176.389397649 -s 2 -S COLOR -c green -o black r -t 176.389397649 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 176.389447649 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 52 -k MAC - -t 176.389447649 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 52 -k MAC n -t 176.389447649 -s 2 -S COLOR -c green -o black h -t 176.389447649 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 52 -k MAC n -t 176.391832394 -s 1 -S COLOR -c green -o black r -t 176.391832394 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 52 -k MAC + -t 176.391842394 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 176.391842394 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 176.391842394 -s 1 -S COLOR -c green -o black h -t 176.391842394 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 176.391995138 -s 2 -S COLOR -c green -o black r -t 176.391995138 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 176.392364394 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 176.392364394 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 176.392364394 -s 1 -S COLOR -c green -o black h -t 176.392364394 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 176.392541023 -s 3 -S COLOR -c green -o black r -t 176.392541023 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 176.392551023 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 176.392551023 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 176.392551023 -s 3 -S COLOR -c green -o black h -t 176.392551023 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 176.392703652 -s 1 -S COLOR -c green -o black r -t 176.392703652 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 176.392753652 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 52 -k MAC - -t 176.392753652 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 52 -k MAC n -t 176.392753652 -s 1 -S COLOR -c green -o black h -t 176.392753652 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 52 -k MAC n -t 176.395138281 -s 3 -S COLOR -c green -o black r -t 176.395138281 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 52 -k MAC + -t 176.395148281 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 176.395148281 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 176.395148281 -s 3 -S COLOR -c green -o black h -t 176.395148281 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 176.395163281 -s 3 -S COLOR -c green -o black r -t 176.395163281 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 52 -k AGT n -t 176.395300910 -s 1 -S COLOR -c green -o black r -t 176.395300910 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 178.507659240 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 53 -k AGT - -t 178.507659240 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 53 -k AGT n -t 178.507659240 -s 2 -S COLOR -c green -o black h -t 178.507659240 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 53 -k AGT + -t 178.507734240 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 178.507734240 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 178.507734240 -s 2 -S COLOR -c green -o black h -t 178.507734240 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 178.507910984 -s 1 -S COLOR -c green -o black r -t 178.507910984 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 178.507920984 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 178.507920984 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 178.507920984 -s 1 -S COLOR -c green -o black h -t 178.507920984 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 178.508073728 -s 2 -S COLOR -c green -o black r -t 178.508073728 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 178.508123728 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 53 -k MAC - -t 178.508123728 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 53 -k MAC n -t 178.508123728 -s 2 -S COLOR -c green -o black h -t 178.508123728 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 53 -k MAC n -t 178.510508473 -s 1 -S COLOR -c green -o black r -t 178.510508473 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 53 -k MAC + -t 178.510518473 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 178.510518473 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 178.510518473 -s 1 -S COLOR -c green -o black h -t 178.510518473 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 178.510671217 -s 2 -S COLOR -c green -o black r -t 178.510671217 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 178.510880473 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 178.510880473 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 178.510880473 -s 1 -S COLOR -c green -o black h -t 178.510880473 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 178.511057102 -s 3 -S COLOR -c green -o black r -t 178.511057102 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 178.511067102 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 178.511067102 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 178.511067102 -s 3 -S COLOR -c green -o black h -t 178.511067102 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 178.511219731 -s 1 -S COLOR -c green -o black r -t 178.511219731 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 178.511269731 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 53 -k MAC - -t 178.511269731 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 53 -k MAC n -t 178.511269731 -s 1 -S COLOR -c green -o black h -t 178.511269731 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 53 -k MAC n -t 178.513654360 -s 3 -S COLOR -c green -o black r -t 178.513654360 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 53 -k MAC + -t 178.513664360 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 178.513664360 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 178.513664360 -s 3 -S COLOR -c green -o black h -t 178.513664360 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 178.513679360 -s 3 -S COLOR -c green -o black r -t 178.513679360 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 53 -k AGT n -t 178.513816989 -s 1 -S COLOR -c green -o black r -t 178.513816989 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 179.958461177 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 54 -k AGT - -t 179.958461177 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 54 -k AGT n -t 179.958461177 -s 2 -S COLOR -c green -o black h -t 179.958461177 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 54 -k AGT + -t 179.958536177 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 179.958536177 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 179.958536177 -s 2 -S COLOR -c green -o black h -t 179.958536177 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 179.958712921 -s 1 -S COLOR -c green -o black r -t 179.958712921 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 179.958722921 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 179.958722921 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 179.958722921 -s 1 -S COLOR -c green -o black h -t 179.958722921 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 179.958875666 -s 2 -S COLOR -c green -o black r -t 179.958875666 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 179.958925666 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 54 -k MAC - -t 179.958925666 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 54 -k MAC n -t 179.958925666 -s 2 -S COLOR -c green -o black h -t 179.958925666 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 54 -k MAC n -t 179.961310410 -s 1 -S COLOR -c green -o black r -t 179.961310410 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 54 -k MAC + -t 179.961320410 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 179.961320410 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 179.961320410 -s 1 -S COLOR -c green -o black h -t 179.961320410 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 179.961473154 -s 2 -S COLOR -c green -o black r -t 179.961473154 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 179.961842410 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 179.961842410 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 179.961842410 -s 1 -S COLOR -c green -o black h -t 179.961842410 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 179.962019039 -s 3 -S COLOR -c green -o black r -t 179.962019039 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 179.962029039 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 179.962029039 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 179.962029039 -s 3 -S COLOR -c green -o black h -t 179.962029039 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 179.962181668 -s 1 -S COLOR -c green -o black r -t 179.962181668 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 179.962231668 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 54 -k MAC - -t 179.962231668 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 54 -k MAC n -t 179.962231668 -s 1 -S COLOR -c green -o black h -t 179.962231668 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 54 -k MAC n -t 179.964616297 -s 3 -S COLOR -c green -o black r -t 179.964616297 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 54 -k MAC + -t 179.964626297 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 179.964626297 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 179.964626297 -s 3 -S COLOR -c green -o black h -t 179.964626297 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 179.964641297 -s 3 -S COLOR -c green -o black r -t 179.964641297 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 54 -k AGT n -t 179.964778926 -s 1 -S COLOR -c green -o black r -t 179.964778926 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 181.134868215 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 55 -k AGT - -t 181.134868215 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 55 -k AGT n -t 181.134868215 -s 2 -S COLOR -c green -o black h -t 181.134868215 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 55 -k AGT + -t 181.134943215 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 181.134943215 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 181.134943215 -s 2 -S COLOR -c green -o black h -t 181.134943215 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 181.135119960 -s 1 -S COLOR -c green -o black r -t 181.135119960 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 181.135129960 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 181.135129960 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 181.135129960 -s 1 -S COLOR -c green -o black h -t 181.135129960 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 181.135282704 -s 2 -S COLOR -c green -o black r -t 181.135282704 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 181.135332704 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 55 -k MAC - -t 181.135332704 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 55 -k MAC n -t 181.135332704 -s 2 -S COLOR -c green -o black h -t 181.135332704 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 55 -k MAC n -t 181.137717448 -s 1 -S COLOR -c green -o black r -t 181.137717448 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 55 -k MAC + -t 181.137727448 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 181.137727448 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 181.137727448 -s 1 -S COLOR -c green -o black h -t 181.137727448 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 181.137880192 -s 2 -S COLOR -c green -o black r -t 181.137880192 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 181.138189448 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 181.138189448 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 181.138189448 -s 1 -S COLOR -c green -o black h -t 181.138189448 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 181.138366077 -s 3 -S COLOR -c green -o black r -t 181.138366077 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 181.138376077 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 181.138376077 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 181.138376077 -s 3 -S COLOR -c green -o black h -t 181.138376077 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 181.138528706 -s 1 -S COLOR -c green -o black r -t 181.138528706 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 181.138578706 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 55 -k MAC - -t 181.138578706 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 55 -k MAC n -t 181.138578706 -s 1 -S COLOR -c green -o black h -t 181.138578706 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 55 -k MAC n -t 181.140963335 -s 3 -S COLOR -c green -o black r -t 181.140963335 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 55 -k MAC + -t 181.140973335 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 181.140973335 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 181.140973335 -s 3 -S COLOR -c green -o black h -t 181.140973335 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 181.140988335 -s 3 -S COLOR -c green -o black r -t 181.140988335 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 55 -k AGT n -t 181.141125965 -s 1 -S COLOR -c green -o black r -t 181.141125965 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 182.172205604 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 56 -k AGT - -t 182.172205604 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 56 -k AGT n -t 182.172205604 -s 2 -S COLOR -c green -o black h -t 182.172205604 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 56 -k AGT + -t 182.172280604 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 182.172280604 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 182.172280604 -s 2 -S COLOR -c green -o black h -t 182.172280604 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 182.172457348 -s 1 -S COLOR -c green -o black r -t 182.172457348 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 182.172467348 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 182.172467348 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 182.172467348 -s 1 -S COLOR -c green -o black h -t 182.172467348 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 182.172620093 -s 2 -S COLOR -c green -o black r -t 182.172620093 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 182.172670093 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 56 -k MAC - -t 182.172670093 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 56 -k MAC n -t 182.172670093 -s 2 -S COLOR -c green -o black h -t 182.172670093 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 56 -k MAC n -t 182.175054837 -s 1 -S COLOR -c green -o black r -t 182.175054837 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 56 -k MAC + -t 182.175064837 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 182.175064837 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 182.175064837 -s 1 -S COLOR -c green -o black h -t 182.175064837 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 182.175217581 -s 2 -S COLOR -c green -o black r -t 182.175217581 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 182.175446837 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 182.175446837 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 182.175446837 -s 1 -S COLOR -c green -o black h -t 182.175446837 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 182.175623466 -s 3 -S COLOR -c green -o black r -t 182.175623466 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 182.175633466 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 182.175633466 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 182.175633466 -s 3 -S COLOR -c green -o black h -t 182.175633466 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 182.175786095 -s 1 -S COLOR -c green -o black r -t 182.175786095 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 182.175836095 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 56 -k MAC - -t 182.175836095 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 56 -k MAC n -t 182.175836095 -s 1 -S COLOR -c green -o black h -t 182.175836095 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 56 -k MAC n -t 182.178220724 -s 3 -S COLOR -c green -o black r -t 182.178220724 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 56 -k MAC + -t 182.178230724 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 182.178230724 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 182.178230724 -s 3 -S COLOR -c green -o black h -t 182.178230724 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 182.178245724 -s 3 -S COLOR -c green -o black r -t 182.178245724 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 56 -k AGT n -t 182.178383353 -s 1 -S COLOR -c green -o black r -t 182.178383353 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 183.801198946 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 57 -k AGT - -t 183.801198946 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 57 -k AGT n -t 183.801198946 -s 2 -S COLOR -c green -o black h -t 183.801198946 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 57 -k AGT + -t 183.801273946 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 183.801273946 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 183.801273946 -s 2 -S COLOR -c green -o black h -t 183.801273946 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 183.801450690 -s 1 -S COLOR -c green -o black r -t 183.801450690 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 183.801460690 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 183.801460690 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 183.801460690 -s 1 -S COLOR -c green -o black h -t 183.801460690 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 183.801613435 -s 2 -S COLOR -c green -o black r -t 183.801613435 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 183.801663435 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 57 -k MAC - -t 183.801663435 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 57 -k MAC n -t 183.801663435 -s 2 -S COLOR -c green -o black h -t 183.801663435 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 57 -k MAC n -t 183.804048179 -s 1 -S COLOR -c green -o black r -t 183.804048179 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 57 -k MAC + -t 183.804058179 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 183.804058179 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 183.804058179 -s 1 -S COLOR -c green -o black h -t 183.804058179 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 183.804210923 -s 2 -S COLOR -c green -o black r -t 183.804210923 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 183.804700179 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 183.804700179 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 183.804700179 -s 1 -S COLOR -c green -o black h -t 183.804700179 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 183.804876808 -s 3 -S COLOR -c green -o black r -t 183.804876808 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 183.804886808 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 183.804886808 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 183.804886808 -s 3 -S COLOR -c green -o black h -t 183.804886808 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 183.805039437 -s 1 -S COLOR -c green -o black r -t 183.805039437 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 183.805089437 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 57 -k MAC - -t 183.805089437 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 57 -k MAC n -t 183.805089437 -s 1 -S COLOR -c green -o black h -t 183.805089437 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 57 -k MAC n -t 183.807474066 -s 3 -S COLOR -c green -o black r -t 183.807474066 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 57 -k MAC + -t 183.807484066 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 183.807484066 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 183.807484066 -s 3 -S COLOR -c green -o black h -t 183.807484066 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 183.807499066 -s 3 -S COLOR -c green -o black r -t 183.807499066 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 57 -k AGT n -t 183.807636695 -s 1 -S COLOR -c green -o black r -t 183.807636695 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 186.381709324 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 58 -k AGT - -t 186.381709324 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 58 -k AGT n -t 186.381709324 -s 2 -S COLOR -c green -o black h -t 186.381709324 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 58 -k AGT + -t 186.381784324 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 186.381784324 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 186.381784324 -s 2 -S COLOR -c green -o black h -t 186.381784324 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 186.381961068 -s 1 -S COLOR -c green -o black r -t 186.381961068 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 186.381971068 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 186.381971068 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 186.381971068 -s 1 -S COLOR -c green -o black h -t 186.381971068 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 186.382123812 -s 2 -S COLOR -c green -o black r -t 186.382123812 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 186.382173812 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 58 -k MAC - -t 186.382173812 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 58 -k MAC n -t 186.382173812 -s 2 -S COLOR -c green -o black h -t 186.382173812 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 58 -k MAC n -t 186.384558557 -s 1 -S COLOR -c green -o black r -t 186.384558557 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 58 -k MAC + -t 186.384568557 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 186.384568557 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 186.384568557 -s 1 -S COLOR -c green -o black h -t 186.384568557 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 186.384721301 -s 2 -S COLOR -c green -o black r -t 186.384721301 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 186.384930557 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 186.384930557 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 186.384930557 -s 1 -S COLOR -c green -o black h -t 186.384930557 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 186.385107186 -s 3 -S COLOR -c green -o black r -t 186.385107186 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 186.385117186 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 186.385117186 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 186.385117186 -s 3 -S COLOR -c green -o black h -t 186.385117186 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 186.385269815 -s 1 -S COLOR -c green -o black r -t 186.385269815 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 186.385319815 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 58 -k MAC - -t 186.385319815 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 58 -k MAC n -t 186.385319815 -s 1 -S COLOR -c green -o black h -t 186.385319815 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 58 -k MAC n -t 186.387704444 -s 3 -S COLOR -c green -o black r -t 186.387704444 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 58 -k MAC + -t 186.387714444 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 186.387714444 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 186.387714444 -s 3 -S COLOR -c green -o black h -t 186.387714444 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 186.387729444 -s 3 -S COLOR -c green -o black r -t 186.387729444 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 58 -k AGT n -t 186.387867073 -s 1 -S COLOR -c green -o black r -t 186.387867073 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 187.592333978 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 59 -k AGT - -t 187.592333978 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 59 -k AGT n -t 187.592333978 -s 2 -S COLOR -c green -o black h -t 187.592333978 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 59 -k AGT + -t 187.592408978 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 187.592408978 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 187.592408978 -s 2 -S COLOR -c green -o black h -t 187.592408978 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 187.592585722 -s 1 -S COLOR -c green -o black r -t 187.592585722 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 187.592595722 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 187.592595722 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 187.592595722 -s 1 -S COLOR -c green -o black h -t 187.592595722 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 187.592748466 -s 2 -S COLOR -c green -o black r -t 187.592748466 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 187.592798466 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 59 -k MAC - -t 187.592798466 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 59 -k MAC n -t 187.592798466 -s 2 -S COLOR -c green -o black h -t 187.592798466 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 59 -k MAC n -t 187.595183211 -s 1 -S COLOR -c green -o black r -t 187.595183211 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 59 -k MAC + -t 187.595193211 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 187.595193211 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 187.595193211 -s 1 -S COLOR -c green -o black h -t 187.595193211 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 187.595345955 -s 2 -S COLOR -c green -o black r -t 187.595345955 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 187.595655211 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 187.595655211 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 187.595655211 -s 1 -S COLOR -c green -o black h -t 187.595655211 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 187.595831840 -s 3 -S COLOR -c green -o black r -t 187.595831840 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 187.595841840 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 187.595841840 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 187.595841840 -s 3 -S COLOR -c green -o black h -t 187.595841840 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 187.595994469 -s 1 -S COLOR -c green -o black r -t 187.595994469 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 187.596044469 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 59 -k MAC - -t 187.596044469 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 59 -k MAC n -t 187.596044469 -s 1 -S COLOR -c green -o black h -t 187.596044469 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 59 -k MAC n -t 187.598429098 -s 3 -S COLOR -c green -o black r -t 187.598429098 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 59 -k MAC + -t 187.598439098 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 187.598439098 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 187.598439098 -s 3 -S COLOR -c green -o black h -t 187.598439098 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 187.598454098 -s 3 -S COLOR -c green -o black r -t 187.598454098 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 59 -k AGT n -t 187.598591727 -s 1 -S COLOR -c green -o black r -t 187.598591727 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 189.002617023 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 60 -k AGT - -t 189.002617023 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 60 -k AGT n -t 189.002617023 -s 2 -S COLOR -c green -o black h -t 189.002617023 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 60 -k AGT + -t 189.002692023 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 189.002692023 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 189.002692023 -s 2 -S COLOR -c green -o black h -t 189.002692023 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 189.002868767 -s 1 -S COLOR -c green -o black r -t 189.002868767 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 189.002878767 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 189.002878767 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 189.002878767 -s 1 -S COLOR -c green -o black h -t 189.002878767 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 189.003031511 -s 2 -S COLOR -c green -o black r -t 189.003031511 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 189.003081511 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 60 -k MAC - -t 189.003081511 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 60 -k MAC n -t 189.003081511 -s 2 -S COLOR -c green -o black h -t 189.003081511 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 60 -k MAC n -t 189.005466256 -s 1 -S COLOR -c green -o black r -t 189.005466256 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 60 -k MAC + -t 189.005476256 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 189.005476256 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 189.005476256 -s 1 -S COLOR -c green -o black h -t 189.005476256 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 189.005629000 -s 2 -S COLOR -c green -o black r -t 189.005629000 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 189.006098256 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 189.006098256 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 189.006098256 -s 1 -S COLOR -c green -o black h -t 189.006098256 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 189.006274885 -s 3 -S COLOR -c green -o black r -t 189.006274885 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 189.006284885 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 189.006284885 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 189.006284885 -s 3 -S COLOR -c green -o black h -t 189.006284885 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 189.006437514 -s 1 -S COLOR -c green -o black r -t 189.006437514 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 189.006487514 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 60 -k MAC - -t 189.006487514 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 60 -k MAC n -t 189.006487514 -s 1 -S COLOR -c green -o black h -t 189.006487514 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 60 -k MAC n -t 189.008872143 -s 3 -S COLOR -c green -o black r -t 189.008872143 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 60 -k MAC + -t 189.008882143 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 189.008882143 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 189.008882143 -s 3 -S COLOR -c green -o black h -t 189.008882143 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 189.008897143 -s 3 -S COLOR -c green -o black r -t 189.008897143 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 60 -k AGT n -t 189.009034772 -s 1 -S COLOR -c green -o black r -t 189.009034772 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 190.543477506 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 61 -k AGT - -t 190.543477506 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 61 -k AGT n -t 190.543477506 -s 2 -S COLOR -c green -o black h -t 190.543477506 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 61 -k AGT + -t 190.543552506 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 190.543552506 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 190.543552506 -s 2 -S COLOR -c green -o black h -t 190.543552506 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 190.543729251 -s 1 -S COLOR -c green -o black r -t 190.543729251 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 190.543739251 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 190.543739251 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 190.543739251 -s 1 -S COLOR -c green -o black h -t 190.543739251 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 190.543891995 -s 2 -S COLOR -c green -o black r -t 190.543891995 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 190.543941995 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 61 -k MAC - -t 190.543941995 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 61 -k MAC n -t 190.543941995 -s 2 -S COLOR -c green -o black h -t 190.543941995 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 61 -k MAC n -t 190.546326739 -s 1 -S COLOR -c green -o black r -t 190.546326739 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 61 -k MAC + -t 190.546336739 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 190.546336739 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 190.546336739 -s 1 -S COLOR -c green -o black h -t 190.546336739 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 190.546489484 -s 2 -S COLOR -c green -o black r -t 190.546489484 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 190.547098739 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 190.547098739 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 190.547098739 -s 1 -S COLOR -c green -o black h -t 190.547098739 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 190.547275368 -s 3 -S COLOR -c green -o black r -t 190.547275368 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 190.547285368 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 190.547285368 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 190.547285368 -s 3 -S COLOR -c green -o black h -t 190.547285368 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 190.547437997 -s 1 -S COLOR -c green -o black r -t 190.547437997 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 190.547487997 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 61 -k MAC - -t 190.547487997 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 61 -k MAC n -t 190.547487997 -s 1 -S COLOR -c green -o black h -t 190.547487997 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 61 -k MAC n -t 190.549872627 -s 3 -S COLOR -c green -o black r -t 190.549872627 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 61 -k MAC + -t 190.549882627 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 190.549882627 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 190.549882627 -s 3 -S COLOR -c green -o black h -t 190.549882627 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 190.549897627 -s 3 -S COLOR -c green -o black r -t 190.549897627 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 61 -k AGT n -t 190.550035256 -s 1 -S COLOR -c green -o black r -t 190.550035256 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 191.698097372 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 62 -k AGT - -t 191.698097372 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 62 -k AGT n -t 191.698097372 -s 2 -S COLOR -c green -o black h -t 191.698097372 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 62 -k AGT + -t 191.698172372 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 191.698172372 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 191.698172372 -s 2 -S COLOR -c green -o black h -t 191.698172372 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 191.698349117 -s 1 -S COLOR -c green -o black r -t 191.698349117 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 191.698359117 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 191.698359117 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 191.698359117 -s 1 -S COLOR -c green -o black h -t 191.698359117 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 191.698511861 -s 2 -S COLOR -c green -o black r -t 191.698511861 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 191.698561861 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 62 -k MAC - -t 191.698561861 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 62 -k MAC n -t 191.698561861 -s 2 -S COLOR -c green -o black h -t 191.698561861 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 62 -k MAC n -t 191.700946605 -s 1 -S COLOR -c green -o black r -t 191.700946605 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 62 -k MAC + -t 191.700956605 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 191.700956605 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 191.700956605 -s 1 -S COLOR -c green -o black h -t 191.700956605 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 191.701109350 -s 2 -S COLOR -c green -o black r -t 191.701109350 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 191.701398605 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 191.701398605 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 191.701398605 -s 1 -S COLOR -c green -o black h -t 191.701398605 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 191.701575234 -s 3 -S COLOR -c green -o black r -t 191.701575234 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 191.701585234 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 191.701585234 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 191.701585234 -s 3 -S COLOR -c green -o black h -t 191.701585234 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 191.701737864 -s 1 -S COLOR -c green -o black r -t 191.701737864 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 191.701787864 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 62 -k MAC - -t 191.701787864 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 62 -k MAC n -t 191.701787864 -s 1 -S COLOR -c green -o black h -t 191.701787864 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 62 -k MAC n -t 191.704172493 -s 3 -S COLOR -c green -o black r -t 191.704172493 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 62 -k MAC + -t 191.704182493 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 191.704182493 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 191.704182493 -s 3 -S COLOR -c green -o black h -t 191.704182493 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 191.704197493 -s 3 -S COLOR -c green -o black r -t 191.704197493 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 62 -k AGT n -t 191.704335122 -s 1 -S COLOR -c green -o black r -t 191.704335122 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 194.350193700 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 63 -k AGT - -t 194.350193700 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 63 -k AGT n -t 194.350193700 -s 2 -S COLOR -c green -o black h -t 194.350193700 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 63 -k AGT + -t 194.350268700 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 194.350268700 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 194.350268700 -s 2 -S COLOR -c green -o black h -t 194.350268700 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 194.350445445 -s 1 -S COLOR -c green -o black r -t 194.350445445 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 194.350455445 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 194.350455445 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 194.350455445 -s 1 -S COLOR -c green -o black h -t 194.350455445 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 194.350608189 -s 2 -S COLOR -c green -o black r -t 194.350608189 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 194.350658189 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 63 -k MAC - -t 194.350658189 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 63 -k MAC n -t 194.350658189 -s 2 -S COLOR -c green -o black h -t 194.350658189 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 63 -k MAC n -t 194.353042933 -s 1 -S COLOR -c green -o black r -t 194.353042933 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 63 -k MAC + -t 194.353052933 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 194.353052933 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 194.353052933 -s 1 -S COLOR -c green -o black h -t 194.353052933 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 194.353205678 -s 2 -S COLOR -c green -o black r -t 194.353205678 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 194.353514933 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 194.353514933 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 194.353514933 -s 1 -S COLOR -c green -o black h -t 194.353514933 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 194.353691563 -s 3 -S COLOR -c green -o black r -t 194.353691563 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 194.353701563 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 194.353701563 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 194.353701563 -s 3 -S COLOR -c green -o black h -t 194.353701563 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 194.353854192 -s 1 -S COLOR -c green -o black r -t 194.353854192 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 194.353904192 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 63 -k MAC - -t 194.353904192 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 63 -k MAC n -t 194.353904192 -s 1 -S COLOR -c green -o black h -t 194.353904192 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 63 -k MAC n -t 194.356288821 -s 3 -S COLOR -c green -o black r -t 194.356288821 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 63 -k MAC + -t 194.356298821 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 194.356298821 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 194.356298821 -s 3 -S COLOR -c green -o black h -t 194.356298821 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 194.356313821 -s 3 -S COLOR -c green -o black r -t 194.356313821 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 63 -k AGT n -t 194.356451450 -s 1 -S COLOR -c green -o black r -t 194.356451450 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 196.693951743 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 64 -k AGT - -t 196.693951743 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 64 -k AGT n -t 196.693951743 -s 2 -S COLOR -c green -o black h -t 196.693951743 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 64 -k AGT + -t 196.694026743 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 196.694026743 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 196.694026743 -s 2 -S COLOR -c green -o black h -t 196.694026743 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 196.694203487 -s 1 -S COLOR -c green -o black r -t 196.694203487 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 196.694213487 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 196.694213487 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 196.694213487 -s 1 -S COLOR -c green -o black h -t 196.694213487 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 196.694366232 -s 2 -S COLOR -c green -o black r -t 196.694366232 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 196.694416232 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 64 -k MAC - -t 196.694416232 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 64 -k MAC n -t 196.694416232 -s 2 -S COLOR -c green -o black h -t 196.694416232 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 64 -k MAC n -t 196.696800976 -s 1 -S COLOR -c green -o black r -t 196.696800976 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 64 -k MAC + -t 196.696810976 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 196.696810976 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 196.696810976 -s 1 -S COLOR -c green -o black h -t 196.696810976 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 196.696963720 -s 2 -S COLOR -c green -o black r -t 196.696963720 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 196.697252976 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 196.697252976 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 196.697252976 -s 1 -S COLOR -c green -o black h -t 196.697252976 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 196.697429605 -s 3 -S COLOR -c green -o black r -t 196.697429605 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 196.697439605 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 196.697439605 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 196.697439605 -s 3 -S COLOR -c green -o black h -t 196.697439605 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 196.697592234 -s 1 -S COLOR -c green -o black r -t 196.697592234 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 196.697642234 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 64 -k MAC - -t 196.697642234 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 64 -k MAC n -t 196.697642234 -s 1 -S COLOR -c green -o black h -t 196.697642234 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 64 -k MAC n -t 196.700026863 -s 3 -S COLOR -c green -o black r -t 196.700026863 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 64 -k MAC + -t 196.700036863 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 196.700036863 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 196.700036863 -s 3 -S COLOR -c green -o black h -t 196.700036863 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 196.700051863 -s 3 -S COLOR -c green -o black r -t 196.700051863 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 64 -k AGT n -t 196.700189492 -s 1 -S COLOR -c green -o black r -t 196.700189492 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 197.989637780 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 65 -k AGT - -t 197.989637780 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 65 -k AGT n -t 197.989637780 -s 2 -S COLOR -c green -o black h -t 197.989637780 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 65 -k AGT + -t 197.989712780 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 197.989712780 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 197.989712780 -s 2 -S COLOR -c green -o black h -t 197.989712780 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 197.989889525 -s 1 -S COLOR -c green -o black r -t 197.989889525 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 197.989899525 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 197.989899525 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 197.989899525 -s 1 -S COLOR -c green -o black h -t 197.989899525 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 197.990052269 -s 2 -S COLOR -c green -o black r -t 197.990052269 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 197.990102269 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 65 -k MAC - -t 197.990102269 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 65 -k MAC n -t 197.990102269 -s 2 -S COLOR -c green -o black h -t 197.990102269 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 65 -k MAC n -t 197.992487013 -s 1 -S COLOR -c green -o black r -t 197.992487013 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 65 -k MAC + -t 197.992497013 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 197.992497013 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 197.992497013 -s 1 -S COLOR -c green -o black h -t 197.992497013 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 197.992649758 -s 2 -S COLOR -c green -o black r -t 197.992649758 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 197.992879013 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 197.992879013 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 197.992879013 -s 1 -S COLOR -c green -o black h -t 197.992879013 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 197.993055642 -s 3 -S COLOR -c green -o black r -t 197.993055642 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 197.993065642 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 197.993065642 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 197.993065642 -s 3 -S COLOR -c green -o black h -t 197.993065642 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 197.993218272 -s 1 -S COLOR -c green -o black r -t 197.993218272 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 197.993268272 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 65 -k MAC - -t 197.993268272 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 65 -k MAC n -t 197.993268272 -s 1 -S COLOR -c green -o black h -t 197.993268272 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 65 -k MAC n -t 197.995652901 -s 3 -S COLOR -c green -o black r -t 197.995652901 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 65 -k MAC + -t 197.995662901 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 197.995662901 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 197.995662901 -s 3 -S COLOR -c green -o black h -t 197.995662901 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 197.995677901 -s 3 -S COLOR -c green -o black r -t 197.995677901 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 65 -k AGT n -t 197.995815530 -s 1 -S COLOR -c green -o black r -t 197.995815530 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 200.261272498 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 66 -k AGT - -t 200.261272498 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 66 -k AGT n -t 200.261272498 -s 2 -S COLOR -c green -o black h -t 200.261272498 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 66 -k AGT + -t 200.261347498 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 200.261347498 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 200.261347498 -s 2 -S COLOR -c green -o black h -t 200.261347498 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 200.261524243 -s 1 -S COLOR -c green -o black r -t 200.261524243 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 200.261534243 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 200.261534243 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 200.261534243 -s 1 -S COLOR -c green -o black h -t 200.261534243 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 200.261686987 -s 2 -S COLOR -c green -o black r -t 200.261686987 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 200.261736987 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 66 -k MAC - -t 200.261736987 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 66 -k MAC n -t 200.261736987 -s 2 -S COLOR -c green -o black h -t 200.261736987 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 66 -k MAC n -t 200.264121731 -s 1 -S COLOR -c green -o black r -t 200.264121731 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 66 -k MAC + -t 200.264131731 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 200.264131731 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 200.264131731 -s 1 -S COLOR -c green -o black h -t 200.264131731 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 200.264284476 -s 2 -S COLOR -c green -o black r -t 200.264284476 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 200.264833731 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 200.264833731 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 200.264833731 -s 1 -S COLOR -c green -o black h -t 200.264833731 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 200.265010360 -s 3 -S COLOR -c green -o black r -t 200.265010360 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 200.265020360 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 200.265020360 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 200.265020360 -s 3 -S COLOR -c green -o black h -t 200.265020360 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 200.265172990 -s 1 -S COLOR -c green -o black r -t 200.265172990 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 200.265222990 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 66 -k MAC - -t 200.265222990 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 66 -k MAC n -t 200.265222990 -s 1 -S COLOR -c green -o black h -t 200.265222990 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 66 -k MAC n -t 200.267607619 -s 3 -S COLOR -c green -o black r -t 200.267607619 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 66 -k MAC + -t 200.267617619 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 200.267617619 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 200.267617619 -s 3 -S COLOR -c green -o black h -t 200.267617619 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 200.267632619 -s 3 -S COLOR -c green -o black r -t 200.267632619 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 66 -k AGT n -t 200.267770248 -s 1 -S COLOR -c green -o black r -t 200.267770248 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 203.131145529 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 67 -k AGT - -t 203.131145529 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 67 -k AGT n -t 203.131145529 -s 2 -S COLOR -c green -o black h -t 203.131145529 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 67 -k AGT + -t 203.131220529 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 203.131220529 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 203.131220529 -s 2 -S COLOR -c green -o black h -t 203.131220529 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 203.131397274 -s 1 -S COLOR -c green -o black r -t 203.131397274 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 203.131407274 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 203.131407274 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 203.131407274 -s 1 -S COLOR -c green -o black h -t 203.131407274 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 203.131560018 -s 2 -S COLOR -c green -o black r -t 203.131560018 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 203.131610018 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 67 -k MAC - -t 203.131610018 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 67 -k MAC n -t 203.131610018 -s 2 -S COLOR -c green -o black h -t 203.131610018 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 67 -k MAC n -t 203.133994762 -s 1 -S COLOR -c green -o black r -t 203.133994762 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 67 -k MAC + -t 203.134004762 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 203.134004762 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 203.134004762 -s 1 -S COLOR -c green -o black h -t 203.134004762 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 203.134157507 -s 2 -S COLOR -c green -o black r -t 203.134157507 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 203.134506762 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 203.134506762 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 203.134506762 -s 1 -S COLOR -c green -o black h -t 203.134506762 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 203.134683391 -s 3 -S COLOR -c green -o black r -t 203.134683391 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 203.134693391 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 203.134693391 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 203.134693391 -s 3 -S COLOR -c green -o black h -t 203.134693391 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 203.134846020 -s 1 -S COLOR -c green -o black r -t 203.134846020 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 203.134896020 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 67 -k MAC - -t 203.134896020 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 67 -k MAC n -t 203.134896020 -s 1 -S COLOR -c green -o black h -t 203.134896020 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 67 -k MAC n -t 203.137280650 -s 3 -S COLOR -c green -o black r -t 203.137280650 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 67 -k MAC + -t 203.137290650 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 203.137290650 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 203.137290650 -s 3 -S COLOR -c green -o black h -t 203.137290650 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 203.137305650 -s 3 -S COLOR -c green -o black r -t 203.137305650 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 67 -k AGT n -t 203.137443279 -s 1 -S COLOR -c green -o black r -t 203.137443279 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 205.151040806 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 68 -k AGT - -t 205.151040806 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 68 -k AGT n -t 205.151040806 -s 2 -S COLOR -c green -o black h -t 205.151040806 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 68 -k AGT + -t 205.151115806 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 205.151115806 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 205.151115806 -s 2 -S COLOR -c green -o black h -t 205.151115806 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 205.151292550 -s 1 -S COLOR -c green -o black r -t 205.151292550 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 205.151302550 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 205.151302550 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 205.151302550 -s 1 -S COLOR -c green -o black h -t 205.151302550 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 205.151455294 -s 2 -S COLOR -c green -o black r -t 205.151455294 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 205.151505294 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 68 -k MAC - -t 205.151505294 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 68 -k MAC n -t 205.151505294 -s 2 -S COLOR -c green -o black h -t 205.151505294 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 68 -k MAC n -t 205.153890039 -s 1 -S COLOR -c green -o black r -t 205.153890039 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 68 -k MAC + -t 205.153900039 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 205.153900039 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 205.153900039 -s 1 -S COLOR -c green -o black h -t 205.153900039 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 205.154052783 -s 2 -S COLOR -c green -o black r -t 205.154052783 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 205.154322039 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 205.154322039 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 205.154322039 -s 1 -S COLOR -c green -o black h -t 205.154322039 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 205.154498668 -s 3 -S COLOR -c green -o black r -t 205.154498668 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 205.154508668 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 205.154508668 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 205.154508668 -s 3 -S COLOR -c green -o black h -t 205.154508668 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 205.154661297 -s 1 -S COLOR -c green -o black r -t 205.154661297 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 205.154711297 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 68 -k MAC - -t 205.154711297 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 68 -k MAC n -t 205.154711297 -s 1 -S COLOR -c green -o black h -t 205.154711297 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 68 -k MAC n -t 205.157095926 -s 3 -S COLOR -c green -o black r -t 205.157095926 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 68 -k MAC + -t 205.157105926 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 205.157105926 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 205.157105926 -s 3 -S COLOR -c green -o black h -t 205.157105926 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 205.157120926 -s 3 -S COLOR -c green -o black r -t 205.157120926 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 68 -k AGT n -t 205.157258555 -s 1 -S COLOR -c green -o black r -t 205.157258555 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 206.421336861 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 69 -k AGT - -t 206.421336861 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 69 -k AGT n -t 206.421336861 -s 2 -S COLOR -c green -o black h -t 206.421336861 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 69 -k AGT + -t 206.421411861 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 206.421411861 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 206.421411861 -s 2 -S COLOR -c green -o black h -t 206.421411861 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 206.421588605 -s 1 -S COLOR -c green -o black r -t 206.421588605 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 206.421598605 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 206.421598605 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 206.421598605 -s 1 -S COLOR -c green -o black h -t 206.421598605 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 206.421751349 -s 2 -S COLOR -c green -o black r -t 206.421751349 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 206.421801349 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 69 -k MAC - -t 206.421801349 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 69 -k MAC n -t 206.421801349 -s 2 -S COLOR -c green -o black h -t 206.421801349 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 69 -k MAC n -t 206.424186094 -s 1 -S COLOR -c green -o black r -t 206.424186094 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 69 -k MAC + -t 206.424196094 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 206.424196094 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 206.424196094 -s 1 -S COLOR -c green -o black h -t 206.424196094 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 206.424348838 -s 2 -S COLOR -c green -o black r -t 206.424348838 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 206.424838094 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 206.424838094 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 206.424838094 -s 1 -S COLOR -c green -o black h -t 206.424838094 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 206.425014723 -s 3 -S COLOR -c green -o black r -t 206.425014723 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 206.425024723 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 206.425024723 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 206.425024723 -s 3 -S COLOR -c green -o black h -t 206.425024723 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 206.425177352 -s 1 -S COLOR -c green -o black r -t 206.425177352 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 206.425227352 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 69 -k MAC - -t 206.425227352 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 69 -k MAC n -t 206.425227352 -s 1 -S COLOR -c green -o black h -t 206.425227352 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 69 -k MAC n -t 206.427611981 -s 3 -S COLOR -c green -o black r -t 206.427611981 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 69 -k MAC + -t 206.427621981 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 206.427621981 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 206.427621981 -s 3 -S COLOR -c green -o black h -t 206.427621981 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 206.427636981 -s 3 -S COLOR -c green -o black r -t 206.427636981 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 69 -k AGT n -t 206.427774610 -s 1 -S COLOR -c green -o black r -t 206.427774610 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 209.223331945 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 70 -k AGT - -t 209.223331945 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 70 -k AGT n -t 209.223331945 -s 2 -S COLOR -c green -o black h -t 209.223331945 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 70 -k AGT + -t 209.223406945 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 209.223406945 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 209.223406945 -s 2 -S COLOR -c green -o black h -t 209.223406945 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 209.223583690 -s 1 -S COLOR -c green -o black r -t 209.223583690 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 209.223593690 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 209.223593690 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 209.223593690 -s 1 -S COLOR -c green -o black h -t 209.223593690 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 209.223746434 -s 2 -S COLOR -c green -o black r -t 209.223746434 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 209.223796434 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 70 -k MAC - -t 209.223796434 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 70 -k MAC n -t 209.223796434 -s 2 -S COLOR -c green -o black h -t 209.223796434 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 70 -k MAC n -t 209.226181178 -s 1 -S COLOR -c green -o black r -t 209.226181178 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 70 -k MAC + -t 209.226191178 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 209.226191178 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 209.226191178 -s 1 -S COLOR -c green -o black h -t 209.226191178 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 209.226343922 -s 2 -S COLOR -c green -o black r -t 209.226343922 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 209.226753178 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 209.226753178 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 209.226753178 -s 1 -S COLOR -c green -o black h -t 209.226753178 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 209.226929807 -s 3 -S COLOR -c green -o black r -t 209.226929807 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 209.226939807 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 209.226939807 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 209.226939807 -s 3 -S COLOR -c green -o black h -t 209.226939807 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 209.227092436 -s 1 -S COLOR -c green -o black r -t 209.227092436 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 209.227142436 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 70 -k MAC - -t 209.227142436 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 70 -k MAC n -t 209.227142436 -s 1 -S COLOR -c green -o black h -t 209.227142436 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 70 -k MAC n -t 209.229527065 -s 3 -S COLOR -c green -o black r -t 209.229527065 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 70 -k MAC + -t 209.229537065 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 209.229537065 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 209.229537065 -s 3 -S COLOR -c green -o black h -t 209.229537065 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 209.229552065 -s 3 -S COLOR -c green -o black r -t 209.229552065 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 70 -k AGT n -t 209.229689695 -s 1 -S COLOR -c green -o black r -t 209.229689695 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 210.873617148 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 71 -k AGT - -t 210.873617148 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 71 -k AGT n -t 210.873617148 -s 2 -S COLOR -c green -o black h -t 210.873617148 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 71 -k AGT + -t 210.873692148 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 210.873692148 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 210.873692148 -s 2 -S COLOR -c green -o black h -t 210.873692148 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 210.873868892 -s 1 -S COLOR -c green -o black r -t 210.873868892 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 210.873878892 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 210.873878892 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 210.873878892 -s 1 -S COLOR -c green -o black h -t 210.873878892 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 210.874031636 -s 2 -S COLOR -c green -o black r -t 210.874031636 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 210.874081636 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 71 -k MAC - -t 210.874081636 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 71 -k MAC n -t 210.874081636 -s 2 -S COLOR -c green -o black h -t 210.874081636 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 71 -k MAC n -t 210.876466381 -s 1 -S COLOR -c green -o black r -t 210.876466381 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 71 -k MAC + -t 210.876476381 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 210.876476381 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 210.876476381 -s 1 -S COLOR -c green -o black h -t 210.876476381 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 210.876629125 -s 2 -S COLOR -c green -o black r -t 210.876629125 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 210.876778381 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 210.876778381 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 210.876778381 -s 1 -S COLOR -c green -o black h -t 210.876778381 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 210.876955010 -s 3 -S COLOR -c green -o black r -t 210.876955010 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 210.876965010 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 210.876965010 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 210.876965010 -s 3 -S COLOR -c green -o black h -t 210.876965010 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 210.877117639 -s 1 -S COLOR -c green -o black r -t 210.877117639 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 210.877167639 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 71 -k MAC - -t 210.877167639 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 71 -k MAC n -t 210.877167639 -s 1 -S COLOR -c green -o black h -t 210.877167639 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 71 -k MAC n -t 210.879552268 -s 3 -S COLOR -c green -o black r -t 210.879552268 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 71 -k MAC + -t 210.879562268 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 210.879562268 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 210.879562268 -s 3 -S COLOR -c green -o black h -t 210.879562268 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 210.879577268 -s 3 -S COLOR -c green -o black r -t 210.879577268 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 71 -k AGT n -t 210.879714897 -s 1 -S COLOR -c green -o black r -t 210.879714897 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 212.752572607 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 72 -k AGT - -t 212.752572607 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 72 -k AGT n -t 212.752572607 -s 2 -S COLOR -c green -o black h -t 212.752572607 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 72 -k AGT + -t 212.752647607 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 212.752647607 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 212.752647607 -s 2 -S COLOR -c green -o black h -t 212.752647607 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 212.752824351 -s 1 -S COLOR -c green -o black r -t 212.752824351 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 212.752834351 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 212.752834351 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 212.752834351 -s 1 -S COLOR -c green -o black h -t 212.752834351 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 212.752987096 -s 2 -S COLOR -c green -o black r -t 212.752987096 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 212.753037096 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 72 -k MAC - -t 212.753037096 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 72 -k MAC n -t 212.753037096 -s 2 -S COLOR -c green -o black h -t 212.753037096 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 72 -k MAC n -t 212.755421840 -s 1 -S COLOR -c green -o black r -t 212.755421840 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 72 -k MAC + -t 212.755431840 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 212.755431840 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 212.755431840 -s 1 -S COLOR -c green -o black h -t 212.755431840 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 212.755584584 -s 2 -S COLOR -c green -o black r -t 212.755584584 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 212.756073840 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 212.756073840 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 212.756073840 -s 1 -S COLOR -c green -o black h -t 212.756073840 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 212.756250469 -s 3 -S COLOR -c green -o black r -t 212.756250469 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 212.756260469 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 212.756260469 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 212.756260469 -s 3 -S COLOR -c green -o black h -t 212.756260469 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 212.756413098 -s 1 -S COLOR -c green -o black r -t 212.756413098 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 212.756463098 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 72 -k MAC - -t 212.756463098 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 72 -k MAC n -t 212.756463098 -s 1 -S COLOR -c green -o black h -t 212.756463098 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 72 -k MAC n -t 212.758847727 -s 3 -S COLOR -c green -o black r -t 212.758847727 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 72 -k MAC + -t 212.758857727 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 212.758857727 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 212.758857727 -s 3 -S COLOR -c green -o black h -t 212.758857727 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 212.758872727 -s 3 -S COLOR -c green -o black r -t 212.758872727 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 72 -k AGT n -t 212.759010357 -s 1 -S COLOR -c green -o black r -t 212.759010357 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 214.058489996 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 73 -k AGT - -t 214.058489996 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 73 -k AGT n -t 214.058489996 -s 2 -S COLOR -c green -o black h -t 214.058489996 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 73 -k AGT + -t 214.058564996 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 214.058564996 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 214.058564996 -s 2 -S COLOR -c green -o black h -t 214.058564996 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 214.058741740 -s 1 -S COLOR -c green -o black r -t 214.058741740 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 214.058751740 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 214.058751740 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 214.058751740 -s 1 -S COLOR -c green -o black h -t 214.058751740 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 214.058904485 -s 2 -S COLOR -c green -o black r -t 214.058904485 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 214.058954485 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 73 -k MAC - -t 214.058954485 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 73 -k MAC n -t 214.058954485 -s 2 -S COLOR -c green -o black h -t 214.058954485 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 73 -k MAC n -t 214.061339229 -s 1 -S COLOR -c green -o black r -t 214.061339229 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 73 -k MAC + -t 214.061349229 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 214.061349229 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 214.061349229 -s 1 -S COLOR -c green -o black h -t 214.061349229 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 214.061501973 -s 2 -S COLOR -c green -o black r -t 214.061501973 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 214.061591229 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 214.061591229 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 214.061591229 -s 1 -S COLOR -c green -o black h -t 214.061591229 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 214.061767858 -s 3 -S COLOR -c green -o black r -t 214.061767858 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 214.061777858 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 214.061777858 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 214.061777858 -s 3 -S COLOR -c green -o black h -t 214.061777858 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 214.061930487 -s 1 -S COLOR -c green -o black r -t 214.061930487 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 214.061980487 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 73 -k MAC - -t 214.061980487 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 73 -k MAC n -t 214.061980487 -s 1 -S COLOR -c green -o black h -t 214.061980487 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 73 -k MAC n -t 214.064365116 -s 3 -S COLOR -c green -o black r -t 214.064365116 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 73 -k MAC + -t 214.064375116 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 214.064375116 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 214.064375116 -s 3 -S COLOR -c green -o black h -t 214.064375116 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 214.064390116 -s 3 -S COLOR -c green -o black r -t 214.064390116 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 73 -k AGT n -t 214.064527745 -s 1 -S COLOR -c green -o black r -t 214.064527745 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 216.835751414 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 74 -k AGT - -t 216.835751414 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 74 -k AGT n -t 216.835751414 -s 2 -S COLOR -c green -o black h -t 216.835751414 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 74 -k AGT + -t 216.835826414 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 216.835826414 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 216.835826414 -s 2 -S COLOR -c green -o black h -t 216.835826414 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 216.836003158 -s 1 -S COLOR -c green -o black r -t 216.836003158 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 216.836013158 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 216.836013158 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 216.836013158 -s 1 -S COLOR -c green -o black h -t 216.836013158 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 216.836165903 -s 2 -S COLOR -c green -o black r -t 216.836165903 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 216.836215903 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 74 -k MAC - -t 216.836215903 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 74 -k MAC n -t 216.836215903 -s 2 -S COLOR -c green -o black h -t 216.836215903 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 74 -k MAC n -t 216.838600647 -s 1 -S COLOR -c green -o black r -t 216.838600647 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 74 -k MAC + -t 216.838610647 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 216.838610647 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 216.838610647 -s 1 -S COLOR -c green -o black h -t 216.838610647 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 216.838763391 -s 2 -S COLOR -c green -o black r -t 216.838763391 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 216.838892647 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 216.838892647 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 216.838892647 -s 1 -S COLOR -c green -o black h -t 216.838892647 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 216.839069276 -s 3 -S COLOR -c green -o black r -t 216.839069276 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 216.839079276 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 216.839079276 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 216.839079276 -s 3 -S COLOR -c green -o black h -t 216.839079276 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 216.839231905 -s 1 -S COLOR -c green -o black r -t 216.839231905 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 216.839281905 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 74 -k MAC - -t 216.839281905 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 74 -k MAC n -t 216.839281905 -s 1 -S COLOR -c green -o black h -t 216.839281905 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 74 -k MAC n -t 216.841666534 -s 3 -S COLOR -c green -o black r -t 216.841666534 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 74 -k MAC + -t 216.841676534 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 216.841676534 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 216.841676534 -s 3 -S COLOR -c green -o black h -t 216.841676534 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 216.841691534 -s 3 -S COLOR -c green -o black r -t 216.841691534 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 74 -k AGT n -t 216.841829163 -s 1 -S COLOR -c green -o black r -t 216.841829163 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 219.237021246 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 75 -k AGT - -t 219.237021246 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 75 -k AGT n -t 219.237021246 -s 2 -S COLOR -c green -o black h -t 219.237021246 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 75 -k AGT + -t 219.237096246 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 219.237096246 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 219.237096246 -s 2 -S COLOR -c green -o black h -t 219.237096246 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 219.237272991 -s 1 -S COLOR -c green -o black r -t 219.237272991 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 219.237282991 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 219.237282991 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 219.237282991 -s 1 -S COLOR -c green -o black h -t 219.237282991 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 219.237435735 -s 2 -S COLOR -c green -o black r -t 219.237435735 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 219.237485735 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 75 -k MAC - -t 219.237485735 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 75 -k MAC n -t 219.237485735 -s 2 -S COLOR -c green -o black h -t 219.237485735 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 75 -k MAC n -t 219.239870479 -s 1 -S COLOR -c green -o black r -t 219.239870479 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 75 -k MAC + -t 219.239880479 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 219.239880479 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 219.239880479 -s 1 -S COLOR -c green -o black h -t 219.239880479 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 219.240033224 -s 2 -S COLOR -c green -o black r -t 219.240033224 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 219.240302479 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 219.240302479 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 219.240302479 -s 1 -S COLOR -c green -o black h -t 219.240302479 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 219.240479108 -s 3 -S COLOR -c green -o black r -t 219.240479108 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 219.240489108 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 219.240489108 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 219.240489108 -s 3 -S COLOR -c green -o black h -t 219.240489108 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 219.240641738 -s 1 -S COLOR -c green -o black r -t 219.240641738 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 219.240691738 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 75 -k MAC - -t 219.240691738 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 75 -k MAC n -t 219.240691738 -s 1 -S COLOR -c green -o black h -t 219.240691738 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 75 -k MAC n -t 219.243076367 -s 3 -S COLOR -c green -o black r -t 219.243076367 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 75 -k MAC + -t 219.243086367 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 219.243086367 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 219.243086367 -s 3 -S COLOR -c green -o black h -t 219.243086367 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 219.243101367 -s 3 -S COLOR -c green -o black r -t 219.243101367 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 75 -k AGT n -t 219.243238996 -s 1 -S COLOR -c green -o black r -t 219.243238996 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 221.704419058 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 76 -k AGT - -t 221.704419058 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 76 -k AGT n -t 221.704419058 -s 2 -S COLOR -c green -o black h -t 221.704419058 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 76 -k AGT + -t 221.704494058 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 221.704494058 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 221.704494058 -s 2 -S COLOR -c green -o black h -t 221.704494058 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 221.704670802 -s 1 -S COLOR -c green -o black r -t 221.704670802 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 221.704680802 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 221.704680802 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 221.704680802 -s 1 -S COLOR -c green -o black h -t 221.704680802 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 221.704833547 -s 2 -S COLOR -c green -o black r -t 221.704833547 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 221.704883547 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 76 -k MAC - -t 221.704883547 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 76 -k MAC n -t 221.704883547 -s 2 -S COLOR -c green -o black h -t 221.704883547 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 76 -k MAC n -t 221.707268291 -s 1 -S COLOR -c green -o black r -t 221.707268291 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 76 -k MAC + -t 221.707278291 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 221.707278291 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 221.707278291 -s 1 -S COLOR -c green -o black h -t 221.707278291 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 221.707431035 -s 2 -S COLOR -c green -o black r -t 221.707431035 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 221.707800291 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 221.707800291 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 221.707800291 -s 1 -S COLOR -c green -o black h -t 221.707800291 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 221.707976920 -s 3 -S COLOR -c green -o black r -t 221.707976920 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 221.707986920 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 221.707986920 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 221.707986920 -s 3 -S COLOR -c green -o black h -t 221.707986920 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 221.708139549 -s 1 -S COLOR -c green -o black r -t 221.708139549 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 221.708189549 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 76 -k MAC - -t 221.708189549 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 76 -k MAC n -t 221.708189549 -s 1 -S COLOR -c green -o black h -t 221.708189549 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 76 -k MAC n -t 221.710574178 -s 3 -S COLOR -c green -o black r -t 221.710574178 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 76 -k MAC + -t 221.710584178 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 221.710584178 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 221.710584178 -s 3 -S COLOR -c green -o black h -t 221.710584178 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 221.710599178 -s 3 -S COLOR -c green -o black r -t 221.710599178 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 76 -k AGT n -t 221.710736807 -s 1 -S COLOR -c green -o black r -t 221.710736807 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 223.014943874 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 77 -k AGT - -t 223.014943874 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 77 -k AGT n -t 223.014943874 -s 2 -S COLOR -c green -o black h -t 223.014943874 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 77 -k AGT + -t 223.015018874 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 223.015018874 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 223.015018874 -s 2 -S COLOR -c green -o black h -t 223.015018874 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 223.015195618 -s 1 -S COLOR -c green -o black r -t 223.015195618 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 223.015205618 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 223.015205618 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 223.015205618 -s 1 -S COLOR -c green -o black h -t 223.015205618 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 223.015358362 -s 2 -S COLOR -c green -o black r -t 223.015358362 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 223.015408362 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 77 -k MAC - -t 223.015408362 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 77 -k MAC n -t 223.015408362 -s 2 -S COLOR -c green -o black h -t 223.015408362 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 77 -k MAC n -t 223.017793107 -s 1 -S COLOR -c green -o black r -t 223.017793107 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 77 -k MAC + -t 223.017803107 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 223.017803107 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 223.017803107 -s 1 -S COLOR -c green -o black h -t 223.017803107 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 223.017955851 -s 2 -S COLOR -c green -o black r -t 223.017955851 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 223.018125107 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 223.018125107 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 223.018125107 -s 1 -S COLOR -c green -o black h -t 223.018125107 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 223.018301736 -s 3 -S COLOR -c green -o black r -t 223.018301736 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 223.018311736 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 223.018311736 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 223.018311736 -s 3 -S COLOR -c green -o black h -t 223.018311736 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 223.018464365 -s 1 -S COLOR -c green -o black r -t 223.018464365 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 223.018514365 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 77 -k MAC - -t 223.018514365 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 77 -k MAC n -t 223.018514365 -s 1 -S COLOR -c green -o black h -t 223.018514365 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 77 -k MAC n -t 223.020898994 -s 3 -S COLOR -c green -o black r -t 223.020898994 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 77 -k MAC + -t 223.020908994 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 223.020908994 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 223.020908994 -s 3 -S COLOR -c green -o black h -t 223.020908994 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 223.020923994 -s 3 -S COLOR -c green -o black r -t 223.020923994 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 77 -k AGT n -t 223.021061623 -s 1 -S COLOR -c green -o black r -t 223.021061623 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 225.946507805 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 78 -k AGT - -t 225.946507805 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 78 -k AGT n -t 225.946507805 -s 2 -S COLOR -c green -o black h -t 225.946507805 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 78 -k AGT + -t 225.946582805 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 225.946582805 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 225.946582805 -s 2 -S COLOR -c green -o black h -t 225.946582805 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 225.946759549 -s 1 -S COLOR -c green -o black r -t 225.946759549 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 225.946769549 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 225.946769549 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 225.946769549 -s 1 -S COLOR -c green -o black h -t 225.946769549 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 225.946922294 -s 2 -S COLOR -c green -o black r -t 225.946922294 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 225.946972294 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 78 -k MAC - -t 225.946972294 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 78 -k MAC n -t 225.946972294 -s 2 -S COLOR -c green -o black h -t 225.946972294 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 78 -k MAC n -t 225.949357038 -s 1 -S COLOR -c green -o black r -t 225.949357038 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 78 -k MAC + -t 225.949367038 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 225.949367038 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 225.949367038 -s 1 -S COLOR -c green -o black h -t 225.949367038 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 225.949519782 -s 2 -S COLOR -c green -o black r -t 225.949519782 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 225.949769038 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 225.949769038 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 225.949769038 -s 1 -S COLOR -c green -o black h -t 225.949769038 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 225.949945667 -s 3 -S COLOR -c green -o black r -t 225.949945667 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 225.949955667 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 225.949955667 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 225.949955667 -s 3 -S COLOR -c green -o black h -t 225.949955667 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 225.950108296 -s 1 -S COLOR -c green -o black r -t 225.950108296 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 225.950158296 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 78 -k MAC - -t 225.950158296 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 78 -k MAC n -t 225.950158296 -s 1 -S COLOR -c green -o black h -t 225.950158296 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 78 -k MAC n -t 225.952542925 -s 3 -S COLOR -c green -o black r -t 225.952542925 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 78 -k MAC + -t 225.952552925 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 225.952552925 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 225.952552925 -s 3 -S COLOR -c green -o black h -t 225.952552925 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 225.952567925 -s 3 -S COLOR -c green -o black r -t 225.952567925 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 78 -k AGT n -t 225.952705554 -s 1 -S COLOR -c green -o black r -t 225.952705554 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 228.132630040 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 79 -k AGT - -t 228.132630040 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 79 -k AGT n -t 228.132630040 -s 2 -S COLOR -c green -o black h -t 228.132630040 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 79 -k AGT + -t 228.132705040 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 228.132705040 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 228.132705040 -s 2 -S COLOR -c green -o black h -t 228.132705040 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 228.132881784 -s 1 -S COLOR -c green -o black r -t 228.132881784 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 228.132891784 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 228.132891784 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 228.132891784 -s 1 -S COLOR -c green -o black h -t 228.132891784 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 228.133044528 -s 2 -S COLOR -c green -o black r -t 228.133044528 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 228.133094528 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 79 -k MAC - -t 228.133094528 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 79 -k MAC n -t 228.133094528 -s 2 -S COLOR -c green -o black h -t 228.133094528 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 79 -k MAC n -t 228.135479273 -s 1 -S COLOR -c green -o black r -t 228.135479273 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 79 -k MAC + -t 228.135489273 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 228.135489273 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 228.135489273 -s 1 -S COLOR -c green -o black h -t 228.135489273 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 228.135642017 -s 2 -S COLOR -c green -o black r -t 228.135642017 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 228.135751273 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 228.135751273 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 228.135751273 -s 1 -S COLOR -c green -o black h -t 228.135751273 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 228.135927902 -s 3 -S COLOR -c green -o black r -t 228.135927902 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 228.135937902 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 228.135937902 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 228.135937902 -s 3 -S COLOR -c green -o black h -t 228.135937902 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 228.136090531 -s 1 -S COLOR -c green -o black r -t 228.136090531 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 228.136140531 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 79 -k MAC - -t 228.136140531 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 79 -k MAC n -t 228.136140531 -s 1 -S COLOR -c green -o black h -t 228.136140531 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 79 -k MAC n -t 228.138525160 -s 3 -S COLOR -c green -o black r -t 228.138525160 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 79 -k MAC + -t 228.138535160 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 228.138535160 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 228.138535160 -s 3 -S COLOR -c green -o black h -t 228.138535160 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 228.138550160 -s 3 -S COLOR -c green -o black r -t 228.138550160 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 79 -k AGT n -t 228.138687789 -s 1 -S COLOR -c green -o black r -t 228.138687789 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 229.883173130 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 80 -k AGT - -t 229.883173130 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 80 -k AGT n -t 229.883173130 -s 2 -S COLOR -c green -o black h -t 229.883173130 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 80 -k AGT + -t 229.883248130 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 229.883248130 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 229.883248130 -s 2 -S COLOR -c green -o black h -t 229.883248130 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 229.883424875 -s 1 -S COLOR -c green -o black r -t 229.883424875 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 229.883434875 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 229.883434875 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 229.883434875 -s 1 -S COLOR -c green -o black h -t 229.883434875 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 229.883587619 -s 2 -S COLOR -c green -o black r -t 229.883587619 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 229.883637619 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 80 -k MAC - -t 229.883637619 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 80 -k MAC n -t 229.883637619 -s 2 -S COLOR -c green -o black h -t 229.883637619 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 80 -k MAC n -t 229.886022363 -s 1 -S COLOR -c green -o black r -t 229.886022363 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 80 -k MAC + -t 229.886032363 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 229.886032363 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 229.886032363 -s 1 -S COLOR -c green -o black h -t 229.886032363 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 229.886185108 -s 2 -S COLOR -c green -o black r -t 229.886185108 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 229.886374363 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 229.886374363 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 229.886374363 -s 1 -S COLOR -c green -o black h -t 229.886374363 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 229.886550992 -s 3 -S COLOR -c green -o black r -t 229.886550992 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 229.886560992 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 229.886560992 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 229.886560992 -s 3 -S COLOR -c green -o black h -t 229.886560992 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 229.886713622 -s 1 -S COLOR -c green -o black r -t 229.886713622 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 229.886763622 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 80 -k MAC - -t 229.886763622 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 80 -k MAC n -t 229.886763622 -s 1 -S COLOR -c green -o black h -t 229.886763622 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 80 -k MAC n -t 229.889148251 -s 3 -S COLOR -c green -o black r -t 229.889148251 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 80 -k MAC + -t 229.889158251 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 229.889158251 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 229.889158251 -s 3 -S COLOR -c green -o black h -t 229.889158251 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 229.889173251 -s 3 -S COLOR -c green -o black r -t 229.889173251 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 80 -k AGT n -t 229.889310880 -s 1 -S COLOR -c green -o black r -t 229.889310880 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 232.833245545 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 81 -k AGT - -t 232.833245545 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 81 -k AGT n -t 232.833245545 -s 2 -S COLOR -c green -o black h -t 232.833245545 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 81 -k AGT + -t 232.833320545 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 232.833320545 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 232.833320545 -s 2 -S COLOR -c green -o black h -t 232.833320545 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 232.833497290 -s 1 -S COLOR -c green -o black r -t 232.833497290 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 232.833507290 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 232.833507290 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 232.833507290 -s 1 -S COLOR -c green -o black h -t 232.833507290 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 232.833660034 -s 2 -S COLOR -c green -o black r -t 232.833660034 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 232.833710034 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 81 -k MAC - -t 232.833710034 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 81 -k MAC n -t 232.833710034 -s 2 -S COLOR -c green -o black h -t 232.833710034 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 81 -k MAC n -t 232.836094778 -s 1 -S COLOR -c green -o black r -t 232.836094778 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 81 -k MAC + -t 232.836104778 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 232.836104778 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 232.836104778 -s 1 -S COLOR -c green -o black h -t 232.836104778 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 232.836257523 -s 2 -S COLOR -c green -o black r -t 232.836257523 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 232.836806778 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 232.836806778 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 232.836806778 -s 1 -S COLOR -c green -o black h -t 232.836806778 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 232.836983407 -s 3 -S COLOR -c green -o black r -t 232.836983407 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 232.836993407 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 232.836993407 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 232.836993407 -s 3 -S COLOR -c green -o black h -t 232.836993407 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 232.837146037 -s 1 -S COLOR -c green -o black r -t 232.837146037 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 232.837196037 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 81 -k MAC - -t 232.837196037 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 81 -k MAC n -t 232.837196037 -s 1 -S COLOR -c green -o black h -t 232.837196037 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 81 -k MAC n -t 232.839580666 -s 3 -S COLOR -c green -o black r -t 232.839580666 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 81 -k MAC + -t 232.839590666 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 232.839590666 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 232.839590666 -s 3 -S COLOR -c green -o black h -t 232.839590666 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 232.839605666 -s 3 -S COLOR -c green -o black r -t 232.839605666 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 81 -k AGT n -t 232.839743295 -s 1 -S COLOR -c green -o black r -t 232.839743295 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 235.724200375 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 82 -k AGT - -t 235.724200375 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 82 -k AGT n -t 235.724200375 -s 2 -S COLOR -c green -o black h -t 235.724200375 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 82 -k AGT + -t 235.724275375 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 235.724275375 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 235.724275375 -s 2 -S COLOR -c green -o black h -t 235.724275375 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 235.724452119 -s 1 -S COLOR -c green -o black r -t 235.724452119 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 235.724462119 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 235.724462119 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 235.724462119 -s 1 -S COLOR -c green -o black h -t 235.724462119 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 235.724614864 -s 2 -S COLOR -c green -o black r -t 235.724614864 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 235.724664864 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 82 -k MAC - -t 235.724664864 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 82 -k MAC n -t 235.724664864 -s 2 -S COLOR -c green -o black h -t 235.724664864 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 82 -k MAC n -t 235.727049608 -s 1 -S COLOR -c green -o black r -t 235.727049608 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 82 -k MAC + -t 235.727059608 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 235.727059608 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 235.727059608 -s 1 -S COLOR -c green -o black h -t 235.727059608 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 235.727212352 -s 2 -S COLOR -c green -o black r -t 235.727212352 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 235.727681608 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 235.727681608 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 235.727681608 -s 1 -S COLOR -c green -o black h -t 235.727681608 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 235.727858237 -s 3 -S COLOR -c green -o black r -t 235.727858237 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 235.727868237 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 235.727868237 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 235.727868237 -s 3 -S COLOR -c green -o black h -t 235.727868237 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 235.728020866 -s 1 -S COLOR -c green -o black r -t 235.728020866 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 235.728070866 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 82 -k MAC - -t 235.728070866 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 82 -k MAC n -t 235.728070866 -s 1 -S COLOR -c green -o black h -t 235.728070866 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 82 -k MAC n -t 235.730455495 -s 3 -S COLOR -c green -o black r -t 235.730455495 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 82 -k MAC + -t 235.730465495 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 235.730465495 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 235.730465495 -s 3 -S COLOR -c green -o black h -t 235.730465495 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 235.730480495 -s 3 -S COLOR -c green -o black r -t 235.730480495 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 82 -k AGT n -t 235.730618124 -s 1 -S COLOR -c green -o black r -t 235.730618124 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 238.278020256 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 83 -k AGT - -t 238.278020256 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 83 -k AGT n -t 238.278020256 -s 2 -S COLOR -c green -o black h -t 238.278020256 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 83 -k AGT + -t 238.278095256 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 238.278095256 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 238.278095256 -s 2 -S COLOR -c green -o black h -t 238.278095256 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 238.278272001 -s 1 -S COLOR -c green -o black r -t 238.278272001 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 238.278282001 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 238.278282001 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 238.278282001 -s 1 -S COLOR -c green -o black h -t 238.278282001 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 238.278434745 -s 2 -S COLOR -c green -o black r -t 238.278434745 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 238.278484745 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 83 -k MAC - -t 238.278484745 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 83 -k MAC n -t 238.278484745 -s 2 -S COLOR -c green -o black h -t 238.278484745 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 83 -k MAC n -t 238.280869489 -s 1 -S COLOR -c green -o black r -t 238.280869489 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 83 -k MAC + -t 238.280879489 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 238.280879489 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 238.280879489 -s 1 -S COLOR -c green -o black h -t 238.280879489 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 238.281032234 -s 2 -S COLOR -c green -o black r -t 238.281032234 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 238.281161489 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 238.281161489 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 238.281161489 -s 1 -S COLOR -c green -o black h -t 238.281161489 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 238.281338119 -s 3 -S COLOR -c green -o black r -t 238.281338119 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 238.281348119 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 238.281348119 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 238.281348119 -s 3 -S COLOR -c green -o black h -t 238.281348119 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 238.281500748 -s 1 -S COLOR -c green -o black r -t 238.281500748 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 238.281550748 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 83 -k MAC - -t 238.281550748 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 83 -k MAC n -t 238.281550748 -s 1 -S COLOR -c green -o black h -t 238.281550748 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 83 -k MAC n -t 238.283935377 -s 3 -S COLOR -c green -o black r -t 238.283935377 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 83 -k MAC + -t 238.283945377 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 238.283945377 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 238.283945377 -s 3 -S COLOR -c green -o black h -t 238.283945377 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 238.283960377 -s 3 -S COLOR -c green -o black r -t 238.283960377 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 83 -k AGT n -t 238.284098006 -s 1 -S COLOR -c green -o black r -t 238.284098006 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 239.943099701 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 84 -k AGT - -t 239.943099701 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 84 -k AGT n -t 239.943099701 -s 2 -S COLOR -c green -o black h -t 239.943099701 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 84 -k AGT + -t 239.943174701 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 239.943174701 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 239.943174701 -s 2 -S COLOR -c green -o black h -t 239.943174701 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 239.943351446 -s 1 -S COLOR -c green -o black r -t 239.943351446 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 239.943361446 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 239.943361446 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 239.943361446 -s 1 -S COLOR -c green -o black h -t 239.943361446 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 239.943514190 -s 2 -S COLOR -c green -o black r -t 239.943514190 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 239.943564190 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 84 -k MAC - -t 239.943564190 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 84 -k MAC n -t 239.943564190 -s 2 -S COLOR -c green -o black h -t 239.943564190 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 84 -k MAC n -t 239.945948934 -s 1 -S COLOR -c green -o black r -t 239.945948934 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 84 -k MAC + -t 239.945958934 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 239.945958934 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 239.945958934 -s 1 -S COLOR -c green -o black h -t 239.945958934 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 239.946111679 -s 2 -S COLOR -c green -o black r -t 239.946111679 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 239.946580934 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 239.946580934 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 239.946580934 -s 1 -S COLOR -c green -o black h -t 239.946580934 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 239.946757563 -s 3 -S COLOR -c green -o black r -t 239.946757563 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 239.946767563 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 239.946767563 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 239.946767563 -s 3 -S COLOR -c green -o black h -t 239.946767563 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 239.946920193 -s 1 -S COLOR -c green -o black r -t 239.946920193 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 239.946970193 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 84 -k MAC - -t 239.946970193 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 84 -k MAC n -t 239.946970193 -s 1 -S COLOR -c green -o black h -t 239.946970193 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 84 -k MAC n -t 239.949354822 -s 3 -S COLOR -c green -o black r -t 239.949354822 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 84 -k MAC + -t 239.949364822 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 239.949364822 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 239.949364822 -s 3 -S COLOR -c green -o black h -t 239.949364822 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 239.949379822 -s 3 -S COLOR -c green -o black r -t 239.949379822 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 84 -k AGT n -t 239.949517451 -s 1 -S COLOR -c green -o black r -t 239.949517451 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 241.672403471 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 85 -k AGT - -t 241.672403471 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 85 -k AGT n -t 241.672403471 -s 2 -S COLOR -c green -o black h -t 241.672403471 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 85 -k AGT + -t 241.672478471 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 241.672478471 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 241.672478471 -s 2 -S COLOR -c green -o black h -t 241.672478471 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 241.672655215 -s 1 -S COLOR -c green -o black r -t 241.672655215 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 241.672665215 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 241.672665215 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 241.672665215 -s 1 -S COLOR -c green -o black h -t 241.672665215 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 241.672817959 -s 2 -S COLOR -c green -o black r -t 241.672817959 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 241.672867959 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 85 -k MAC - -t 241.672867959 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 85 -k MAC n -t 241.672867959 -s 2 -S COLOR -c green -o black h -t 241.672867959 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 85 -k MAC n -t 241.675252704 -s 1 -S COLOR -c green -o black r -t 241.675252704 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 85 -k MAC + -t 241.675262704 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 241.675262704 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 241.675262704 -s 1 -S COLOR -c green -o black h -t 241.675262704 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 241.675415448 -s 2 -S COLOR -c green -o black r -t 241.675415448 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 241.676044704 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 241.676044704 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 241.676044704 -s 1 -S COLOR -c green -o black h -t 241.676044704 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 241.676221333 -s 3 -S COLOR -c green -o black r -t 241.676221333 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 241.676231333 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 241.676231333 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 241.676231333 -s 3 -S COLOR -c green -o black h -t 241.676231333 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 241.676383962 -s 1 -S COLOR -c green -o black r -t 241.676383962 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 241.676433962 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 85 -k MAC - -t 241.676433962 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 85 -k MAC n -t 241.676433962 -s 1 -S COLOR -c green -o black h -t 241.676433962 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 85 -k MAC n -t 241.678818591 -s 3 -S COLOR -c green -o black r -t 241.678818591 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 85 -k MAC + -t 241.678828591 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 241.678828591 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 241.678828591 -s 3 -S COLOR -c green -o black h -t 241.678828591 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 241.678843591 -s 3 -S COLOR -c green -o black r -t 241.678843591 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 85 -k AGT n -t 241.678981220 -s 1 -S COLOR -c green -o black r -t 241.678981220 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 244.113431290 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 86 -k AGT - -t 244.113431290 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 86 -k AGT n -t 244.113431290 -s 2 -S COLOR -c green -o black h -t 244.113431290 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 86 -k AGT + -t 244.113506290 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 244.113506290 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 244.113506290 -s 2 -S COLOR -c green -o black h -t 244.113506290 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 244.113683035 -s 1 -S COLOR -c green -o black r -t 244.113683035 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 244.113693035 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 244.113693035 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 244.113693035 -s 1 -S COLOR -c green -o black h -t 244.113693035 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 244.113845779 -s 2 -S COLOR -c green -o black r -t 244.113845779 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 244.113895779 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 86 -k MAC - -t 244.113895779 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 86 -k MAC n -t 244.113895779 -s 2 -S COLOR -c green -o black h -t 244.113895779 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 86 -k MAC n -t 244.116280523 -s 1 -S COLOR -c green -o black r -t 244.116280523 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 86 -k MAC + -t 244.116290523 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 244.116290523 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 244.116290523 -s 1 -S COLOR -c green -o black h -t 244.116290523 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 244.116443268 -s 2 -S COLOR -c green -o black r -t 244.116443268 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 244.117052523 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 244.117052523 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 244.117052523 -s 1 -S COLOR -c green -o black h -t 244.117052523 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 244.117229152 -s 3 -S COLOR -c green -o black r -t 244.117229152 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 244.117239152 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 244.117239152 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 244.117239152 -s 3 -S COLOR -c green -o black h -t 244.117239152 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 244.117391781 -s 1 -S COLOR -c green -o black r -t 244.117391781 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 244.117441781 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 86 -k MAC - -t 244.117441781 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 86 -k MAC n -t 244.117441781 -s 1 -S COLOR -c green -o black h -t 244.117441781 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 86 -k MAC n -t 244.119826411 -s 3 -S COLOR -c green -o black r -t 244.119826411 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 86 -k MAC + -t 244.119836411 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 244.119836411 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 244.119836411 -s 3 -S COLOR -c green -o black h -t 244.119836411 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 244.119851411 -s 3 -S COLOR -c green -o black r -t 244.119851411 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 86 -k AGT n -t 244.119989040 -s 1 -S COLOR -c green -o black r -t 244.119989040 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 246.922181601 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 87 -k AGT - -t 246.922181601 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 87 -k AGT n -t 246.922181601 -s 2 -S COLOR -c green -o black h -t 246.922181601 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 87 -k AGT + -t 246.922256601 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 246.922256601 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 246.922256601 -s 2 -S COLOR -c green -o black h -t 246.922256601 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 246.922433345 -s 1 -S COLOR -c green -o black r -t 246.922433345 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 246.922443345 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 246.922443345 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 246.922443345 -s 1 -S COLOR -c green -o black h -t 246.922443345 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 246.922596090 -s 2 -S COLOR -c green -o black r -t 246.922596090 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 246.922646090 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 87 -k MAC - -t 246.922646090 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 87 -k MAC n -t 246.922646090 -s 2 -S COLOR -c green -o black h -t 246.922646090 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 87 -k MAC n -t 246.925030834 -s 1 -S COLOR -c green -o black r -t 246.925030834 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 87 -k MAC + -t 246.925040834 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 246.925040834 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 246.925040834 -s 1 -S COLOR -c green -o black h -t 246.925040834 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 246.925193578 -s 2 -S COLOR -c green -o black r -t 246.925193578 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 246.925622834 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 246.925622834 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 246.925622834 -s 1 -S COLOR -c green -o black h -t 246.925622834 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 246.925799463 -s 3 -S COLOR -c green -o black r -t 246.925799463 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 246.925809463 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 246.925809463 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 246.925809463 -s 3 -S COLOR -c green -o black h -t 246.925809463 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 246.925962092 -s 1 -S COLOR -c green -o black r -t 246.925962092 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 246.926012092 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 87 -k MAC - -t 246.926012092 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 87 -k MAC n -t 246.926012092 -s 1 -S COLOR -c green -o black h -t 246.926012092 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 87 -k MAC n -t 246.928396721 -s 3 -S COLOR -c green -o black r -t 246.928396721 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 87 -k MAC + -t 246.928406721 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 246.928406721 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 246.928406721 -s 3 -S COLOR -c green -o black h -t 246.928406721 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 246.928421721 -s 3 -S COLOR -c green -o black r -t 246.928421721 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 87 -k AGT n -t 246.928559350 -s 1 -S COLOR -c green -o black r -t 246.928559350 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 248.678287094 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 88 -k AGT - -t 248.678287094 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 88 -k AGT n -t 248.678287094 -s 2 -S COLOR -c green -o black h -t 248.678287094 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 88 -k AGT + -t 248.678362094 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 248.678362094 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 248.678362094 -s 2 -S COLOR -c green -o black h -t 248.678362094 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 248.678538838 -s 1 -S COLOR -c green -o black r -t 248.678538838 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 248.678548838 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 248.678548838 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 248.678548838 -s 1 -S COLOR -c green -o black h -t 248.678548838 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 248.678701583 -s 2 -S COLOR -c green -o black r -t 248.678701583 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 248.678751583 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 88 -k MAC - -t 248.678751583 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 88 -k MAC n -t 248.678751583 -s 2 -S COLOR -c green -o black h -t 248.678751583 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 88 -k MAC n -t 248.681136327 -s 1 -S COLOR -c green -o black r -t 248.681136327 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 88 -k MAC + -t 248.681146327 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 248.681146327 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 248.681146327 -s 1 -S COLOR -c green -o black h -t 248.681146327 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 248.681299071 -s 2 -S COLOR -c green -o black r -t 248.681299071 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 248.681548327 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 248.681548327 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 248.681548327 -s 1 -S COLOR -c green -o black h -t 248.681548327 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 248.681724956 -s 3 -S COLOR -c green -o black r -t 248.681724956 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 248.681734956 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 248.681734956 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 248.681734956 -s 3 -S COLOR -c green -o black h -t 248.681734956 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 248.681887585 -s 1 -S COLOR -c green -o black r -t 248.681887585 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 248.681937585 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 88 -k MAC - -t 248.681937585 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 88 -k MAC n -t 248.681937585 -s 1 -S COLOR -c green -o black h -t 248.681937585 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 88 -k MAC n -t 248.684322214 -s 3 -S COLOR -c green -o black r -t 248.684322214 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 88 -k MAC + -t 248.684332214 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 248.684332214 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 248.684332214 -s 3 -S COLOR -c green -o black h -t 248.684332214 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 248.684347214 -s 3 -S COLOR -c green -o black r -t 248.684347214 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 88 -k AGT n -t 248.684484844 -s 1 -S COLOR -c green -o black r -t 248.684484844 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 249.699549275 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 89 -k AGT - -t 249.699549275 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 89 -k AGT n -t 249.699549275 -s 2 -S COLOR -c green -o black h -t 249.699549275 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 89 -k AGT + -t 249.699624275 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 249.699624275 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 249.699624275 -s 2 -S COLOR -c green -o black h -t 249.699624275 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 249.699801019 -s 1 -S COLOR -c green -o black r -t 249.699801019 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 249.699811019 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 249.699811019 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 249.699811019 -s 1 -S COLOR -c green -o black h -t 249.699811019 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 249.699963764 -s 2 -S COLOR -c green -o black r -t 249.699963764 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 249.700013764 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 89 -k MAC - -t 249.700013764 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 89 -k MAC n -t 249.700013764 -s 2 -S COLOR -c green -o black h -t 249.700013764 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 89 -k MAC n -t 249.702398508 -s 1 -S COLOR -c green -o black r -t 249.702398508 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 89 -k MAC + -t 249.702408508 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 249.702408508 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 249.702408508 -s 1 -S COLOR -c green -o black h -t 249.702408508 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 249.702561252 -s 2 -S COLOR -c green -o black r -t 249.702561252 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 249.702730508 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 249.702730508 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 249.702730508 -s 1 -S COLOR -c green -o black h -t 249.702730508 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 249.702907137 -s 3 -S COLOR -c green -o black r -t 249.702907137 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 249.702917137 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 249.702917137 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 249.702917137 -s 3 -S COLOR -c green -o black h -t 249.702917137 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 249.703069766 -s 1 -S COLOR -c green -o black r -t 249.703069766 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 249.703119766 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 89 -k MAC - -t 249.703119766 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 89 -k MAC n -t 249.703119766 -s 1 -S COLOR -c green -o black h -t 249.703119766 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 89 -k MAC n -t 249.705504395 -s 3 -S COLOR -c green -o black r -t 249.705504395 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 89 -k MAC + -t 249.705514395 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 249.705514395 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 249.705514395 -s 3 -S COLOR -c green -o black h -t 249.705514395 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 249.705529395 -s 3 -S COLOR -c green -o black r -t 249.705529395 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 89 -k AGT n -t 249.705667025 -s 1 -S COLOR -c green -o black r -t 249.705667025 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 252.026305772 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 90 -k AGT - -t 252.026305772 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 90 -k AGT n -t 252.026305772 -s 2 -S COLOR -c green -o black h -t 252.026305772 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 90 -k AGT + -t 252.026380772 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 252.026380772 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 252.026380772 -s 2 -S COLOR -c green -o black h -t 252.026380772 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 252.026557516 -s 1 -S COLOR -c green -o black r -t 252.026557516 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 252.026567516 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 252.026567516 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 252.026567516 -s 1 -S COLOR -c green -o black h -t 252.026567516 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 252.026720260 -s 2 -S COLOR -c green -o black r -t 252.026720260 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 252.026770260 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 90 -k MAC - -t 252.026770260 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 90 -k MAC n -t 252.026770260 -s 2 -S COLOR -c green -o black h -t 252.026770260 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 90 -k MAC n -t 252.029155005 -s 1 -S COLOR -c green -o black r -t 252.029155005 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 90 -k MAC + -t 252.029165005 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 252.029165005 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 252.029165005 -s 1 -S COLOR -c green -o black h -t 252.029165005 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 252.029317749 -s 2 -S COLOR -c green -o black r -t 252.029317749 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 252.029867005 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 252.029867005 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 252.029867005 -s 1 -S COLOR -c green -o black h -t 252.029867005 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 252.030043634 -s 3 -S COLOR -c green -o black r -t 252.030043634 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 252.030053634 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 252.030053634 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 252.030053634 -s 3 -S COLOR -c green -o black h -t 252.030053634 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 252.030206263 -s 1 -S COLOR -c green -o black r -t 252.030206263 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 252.030256263 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 90 -k MAC - -t 252.030256263 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 90 -k MAC n -t 252.030256263 -s 1 -S COLOR -c green -o black h -t 252.030256263 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 90 -k MAC n -t 252.032640892 -s 3 -S COLOR -c green -o black r -t 252.032640892 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 90 -k MAC + -t 252.032650892 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 252.032650892 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 252.032650892 -s 3 -S COLOR -c green -o black h -t 252.032650892 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 252.032665892 -s 3 -S COLOR -c green -o black r -t 252.032665892 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 90 -k AGT n -t 252.032803521 -s 1 -S COLOR -c green -o black r -t 252.032803521 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 253.690713121 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 91 -k AGT - -t 253.690713121 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 91 -k AGT n -t 253.690713121 -s 2 -S COLOR -c green -o black h -t 253.690713121 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 91 -k AGT + -t 253.690788121 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 253.690788121 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 253.690788121 -s 2 -S COLOR -c green -o black h -t 253.690788121 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 253.690964865 -s 1 -S COLOR -c green -o black r -t 253.690964865 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 253.690974865 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 253.690974865 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 253.690974865 -s 1 -S COLOR -c green -o black h -t 253.690974865 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 253.691127610 -s 2 -S COLOR -c green -o black r -t 253.691127610 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 253.691177610 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 91 -k MAC - -t 253.691177610 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 91 -k MAC n -t 253.691177610 -s 2 -S COLOR -c green -o black h -t 253.691177610 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 91 -k MAC n -t 253.693562354 -s 1 -S COLOR -c green -o black r -t 253.693562354 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 91 -k MAC + -t 253.693572354 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 253.693572354 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 253.693572354 -s 1 -S COLOR -c green -o black h -t 253.693572354 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 253.693725098 -s 2 -S COLOR -c green -o black r -t 253.693725098 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 253.694174354 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 253.694174354 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 253.694174354 -s 1 -S COLOR -c green -o black h -t 253.694174354 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 253.694350983 -s 3 -S COLOR -c green -o black r -t 253.694350983 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 253.694360983 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 253.694360983 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 253.694360983 -s 3 -S COLOR -c green -o black h -t 253.694360983 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 253.694513612 -s 1 -S COLOR -c green -o black r -t 253.694513612 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 253.694563612 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 91 -k MAC - -t 253.694563612 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 91 -k MAC n -t 253.694563612 -s 1 -S COLOR -c green -o black h -t 253.694563612 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 91 -k MAC n -t 253.696948241 -s 3 -S COLOR -c green -o black r -t 253.696948241 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 91 -k MAC + -t 253.696958241 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 253.696958241 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 253.696958241 -s 3 -S COLOR -c green -o black h -t 253.696958241 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 253.696973241 -s 3 -S COLOR -c green -o black r -t 253.696973241 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 91 -k AGT n -t 253.697110871 -s 1 -S COLOR -c green -o black r -t 253.697110871 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 255.431998029 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 92 -k AGT - -t 255.431998029 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 92 -k AGT n -t 255.431998029 -s 2 -S COLOR -c green -o black h -t 255.431998029 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 92 -k AGT + -t 255.432073029 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 255.432073029 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 255.432073029 -s 2 -S COLOR -c green -o black h -t 255.432073029 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 255.432249774 -s 1 -S COLOR -c green -o black r -t 255.432249774 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 255.432259774 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 255.432259774 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 255.432259774 -s 1 -S COLOR -c green -o black h -t 255.432259774 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 255.432412518 -s 2 -S COLOR -c green -o black r -t 255.432412518 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 255.432462518 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 92 -k MAC - -t 255.432462518 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 92 -k MAC n -t 255.432462518 -s 2 -S COLOR -c green -o black h -t 255.432462518 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 92 -k MAC n -t 255.434847262 -s 1 -S COLOR -c green -o black r -t 255.434847262 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 92 -k MAC + -t 255.434857262 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 255.434857262 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 255.434857262 -s 1 -S COLOR -c green -o black h -t 255.434857262 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 255.435010007 -s 2 -S COLOR -c green -o black r -t 255.435010007 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 255.435199262 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 255.435199262 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 255.435199262 -s 1 -S COLOR -c green -o black h -t 255.435199262 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 255.435375891 -s 3 -S COLOR -c green -o black r -t 255.435375891 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 255.435385891 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 255.435385891 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 255.435385891 -s 3 -S COLOR -c green -o black h -t 255.435385891 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 255.435538520 -s 1 -S COLOR -c green -o black r -t 255.435538520 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 255.435588520 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 92 -k MAC - -t 255.435588520 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 92 -k MAC n -t 255.435588520 -s 1 -S COLOR -c green -o black h -t 255.435588520 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 92 -k MAC n -t 255.437973150 -s 3 -S COLOR -c green -o black r -t 255.437973150 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 92 -k MAC + -t 255.437983150 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 255.437983150 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 255.437983150 -s 3 -S COLOR -c green -o black h -t 255.437983150 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 255.437998150 -s 3 -S COLOR -c green -o black r -t 255.437998150 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 92 -k AGT n -t 255.438135779 -s 1 -S COLOR -c green -o black r -t 255.438135779 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 256.645366602 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 93 -k AGT - -t 256.645366602 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 93 -k AGT n -t 256.645366602 -s 2 -S COLOR -c green -o black h -t 256.645366602 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 93 -k AGT + -t 256.645441602 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 256.645441602 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 256.645441602 -s 2 -S COLOR -c green -o black h -t 256.645441602 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 256.645618346 -s 1 -S COLOR -c green -o black r -t 256.645618346 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 256.645628346 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 256.645628346 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 256.645628346 -s 1 -S COLOR -c green -o black h -t 256.645628346 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 256.645781090 -s 2 -S COLOR -c green -o black r -t 256.645781090 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 256.645831090 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 93 -k MAC - -t 256.645831090 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 93 -k MAC n -t 256.645831090 -s 2 -S COLOR -c green -o black h -t 256.645831090 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 93 -k MAC n -t 256.648215835 -s 1 -S COLOR -c green -o black r -t 256.648215835 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 93 -k MAC + -t 256.648225835 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 256.648225835 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 256.648225835 -s 1 -S COLOR -c green -o black h -t 256.648225835 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 256.648378579 -s 2 -S COLOR -c green -o black r -t 256.648378579 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 256.648987835 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 256.648987835 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 256.648987835 -s 1 -S COLOR -c green -o black h -t 256.648987835 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 256.649164464 -s 3 -S COLOR -c green -o black r -t 256.649164464 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 256.649174464 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 256.649174464 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 256.649174464 -s 3 -S COLOR -c green -o black h -t 256.649174464 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 256.649327093 -s 1 -S COLOR -c green -o black r -t 256.649327093 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 256.649377093 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 93 -k MAC - -t 256.649377093 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 93 -k MAC n -t 256.649377093 -s 1 -S COLOR -c green -o black h -t 256.649377093 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 93 -k MAC n -t 256.651761722 -s 3 -S COLOR -c green -o black r -t 256.651761722 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 93 -k MAC + -t 256.651771722 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 256.651771722 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 256.651771722 -s 3 -S COLOR -c green -o black h -t 256.651771722 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 256.651786722 -s 3 -S COLOR -c green -o black r -t 256.651786722 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 93 -k AGT n -t 256.651924351 -s 1 -S COLOR -c green -o black r -t 256.651924351 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 258.162064164 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 94 -k AGT - -t 258.162064164 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 94 -k AGT n -t 258.162064164 -s 2 -S COLOR -c green -o black h -t 258.162064164 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 94 -k AGT + -t 258.162139164 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 258.162139164 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 258.162139164 -s 2 -S COLOR -c green -o black h -t 258.162139164 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 258.162315908 -s 1 -S COLOR -c green -o black r -t 258.162315908 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 258.162325908 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 258.162325908 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 258.162325908 -s 1 -S COLOR -c green -o black h -t 258.162325908 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 258.162478653 -s 2 -S COLOR -c green -o black r -t 258.162478653 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 258.162528653 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 94 -k MAC - -t 258.162528653 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 94 -k MAC n -t 258.162528653 -s 2 -S COLOR -c green -o black h -t 258.162528653 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 94 -k MAC n -t 258.164913397 -s 1 -S COLOR -c green -o black r -t 258.164913397 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 94 -k MAC + -t 258.164923397 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 258.164923397 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 258.164923397 -s 1 -S COLOR -c green -o black h -t 258.164923397 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 258.165076141 -s 2 -S COLOR -c green -o black r -t 258.165076141 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 258.165245397 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 258.165245397 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 258.165245397 -s 1 -S COLOR -c green -o black h -t 258.165245397 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 258.165422026 -s 3 -S COLOR -c green -o black r -t 258.165422026 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 258.165432026 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 258.165432026 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 258.165432026 -s 3 -S COLOR -c green -o black h -t 258.165432026 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 258.165584655 -s 1 -S COLOR -c green -o black r -t 258.165584655 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 258.165634655 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 94 -k MAC - -t 258.165634655 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 94 -k MAC n -t 258.165634655 -s 1 -S COLOR -c green -o black h -t 258.165634655 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 94 -k MAC n -t 258.168019284 -s 3 -S COLOR -c green -o black r -t 258.168019284 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 94 -k MAC + -t 258.168029284 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 258.168029284 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 258.168029284 -s 3 -S COLOR -c green -o black h -t 258.168029284 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 258.168044284 -s 3 -S COLOR -c green -o black r -t 258.168044284 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 94 -k AGT n -t 258.168181914 -s 1 -S COLOR -c green -o black r -t 258.168181914 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 259.335300334 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 95 -k AGT - -t 259.335300334 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 95 -k AGT n -t 259.335300334 -s 2 -S COLOR -c green -o black h -t 259.335300334 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 95 -k AGT + -t 259.335375334 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 259.335375334 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 259.335375334 -s 2 -S COLOR -c green -o black h -t 259.335375334 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 259.335552078 -s 1 -S COLOR -c green -o black r -t 259.335552078 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 259.335562078 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 259.335562078 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 259.335562078 -s 1 -S COLOR -c green -o black h -t 259.335562078 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 259.335714823 -s 2 -S COLOR -c green -o black r -t 259.335714823 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 259.335764823 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 95 -k MAC - -t 259.335764823 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 95 -k MAC n -t 259.335764823 -s 2 -S COLOR -c green -o black h -t 259.335764823 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 95 -k MAC n -t 259.338149567 -s 1 -S COLOR -c green -o black r -t 259.338149567 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 95 -k MAC + -t 259.338159567 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 259.338159567 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 259.338159567 -s 1 -S COLOR -c green -o black h -t 259.338159567 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 259.338312311 -s 2 -S COLOR -c green -o black r -t 259.338312311 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 259.338521567 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 259.338521567 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 259.338521567 -s 1 -S COLOR -c green -o black h -t 259.338521567 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 259.338698196 -s 3 -S COLOR -c green -o black r -t 259.338698196 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 259.338708196 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 259.338708196 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 259.338708196 -s 3 -S COLOR -c green -o black h -t 259.338708196 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 259.338860825 -s 1 -S COLOR -c green -o black r -t 259.338860825 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 259.338910825 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 95 -k MAC - -t 259.338910825 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 95 -k MAC n -t 259.338910825 -s 1 -S COLOR -c green -o black h -t 259.338910825 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 95 -k MAC n -t 259.341295454 -s 3 -S COLOR -c green -o black r -t 259.341295454 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 95 -k MAC + -t 259.341305454 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 259.341305454 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 259.341305454 -s 3 -S COLOR -c green -o black h -t 259.341305454 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 259.341320454 -s 3 -S COLOR -c green -o black r -t 259.341320454 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 95 -k AGT n -t 259.341458083 -s 1 -S COLOR -c green -o black r -t 259.341458083 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 261.082019362 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 96 -k AGT - -t 261.082019362 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 96 -k AGT n -t 261.082019362 -s 2 -S COLOR -c green -o black h -t 261.082019362 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 96 -k AGT + -t 261.082094362 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 261.082094362 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 261.082094362 -s 2 -S COLOR -c green -o black h -t 261.082094362 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 261.082271107 -s 1 -S COLOR -c green -o black r -t 261.082271107 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 261.082281107 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 261.082281107 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 261.082281107 -s 1 -S COLOR -c green -o black h -t 261.082281107 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 261.082433851 -s 2 -S COLOR -c green -o black r -t 261.082433851 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 261.082483851 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 96 -k MAC - -t 261.082483851 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 96 -k MAC n -t 261.082483851 -s 2 -S COLOR -c green -o black h -t 261.082483851 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 96 -k MAC n -t 261.084868595 -s 1 -S COLOR -c green -o black r -t 261.084868595 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 96 -k MAC + -t 261.084878595 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 261.084878595 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 261.084878595 -s 1 -S COLOR -c green -o black h -t 261.084878595 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 261.085031340 -s 2 -S COLOR -c green -o black r -t 261.085031340 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 261.085320595 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 261.085320595 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 261.085320595 -s 1 -S COLOR -c green -o black h -t 261.085320595 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 261.085497224 -s 3 -S COLOR -c green -o black r -t 261.085497224 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 261.085507224 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 261.085507224 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 261.085507224 -s 3 -S COLOR -c green -o black h -t 261.085507224 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 261.085659853 -s 1 -S COLOR -c green -o black r -t 261.085659853 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 261.085709853 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 96 -k MAC - -t 261.085709853 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 96 -k MAC n -t 261.085709853 -s 1 -S COLOR -c green -o black h -t 261.085709853 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 96 -k MAC n -t 261.088094483 -s 3 -S COLOR -c green -o black r -t 261.088094483 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 96 -k MAC + -t 261.088104483 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 261.088104483 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 261.088104483 -s 3 -S COLOR -c green -o black h -t 261.088104483 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 261.088119483 -s 3 -S COLOR -c green -o black r -t 261.088119483 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 96 -k AGT n -t 261.088257112 -s 1 -S COLOR -c green -o black r -t 261.088257112 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 262.377902924 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 97 -k AGT - -t 262.377902924 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 97 -k AGT n -t 262.377902924 -s 2 -S COLOR -c green -o black h -t 262.377902924 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 97 -k AGT + -t 262.377977924 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 262.377977924 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 262.377977924 -s 2 -S COLOR -c green -o black h -t 262.377977924 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 262.378154668 -s 1 -S COLOR -c green -o black r -t 262.378154668 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 262.378164668 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 262.378164668 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 262.378164668 -s 1 -S COLOR -c green -o black h -t 262.378164668 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 262.378317413 -s 2 -S COLOR -c green -o black r -t 262.378317413 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 262.378367413 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 97 -k MAC - -t 262.378367413 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 97 -k MAC n -t 262.378367413 -s 2 -S COLOR -c green -o black h -t 262.378367413 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 97 -k MAC n -t 262.380752157 -s 1 -S COLOR -c green -o black r -t 262.380752157 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 97 -k MAC + -t 262.380762157 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 262.380762157 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 262.380762157 -s 1 -S COLOR -c green -o black h -t 262.380762157 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 262.380914901 -s 2 -S COLOR -c green -o black r -t 262.380914901 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 262.381224157 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 262.381224157 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 262.381224157 -s 1 -S COLOR -c green -o black h -t 262.381224157 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 262.381400786 -s 3 -S COLOR -c green -o black r -t 262.381400786 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 262.381410786 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 262.381410786 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 262.381410786 -s 3 -S COLOR -c green -o black h -t 262.381410786 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 262.381563415 -s 1 -S COLOR -c green -o black r -t 262.381563415 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 262.381613415 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 97 -k MAC - -t 262.381613415 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 97 -k MAC n -t 262.381613415 -s 1 -S COLOR -c green -o black h -t 262.381613415 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 97 -k MAC n -t 262.383998044 -s 3 -S COLOR -c green -o black r -t 262.383998044 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 97 -k MAC + -t 262.384008044 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 262.384008044 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 262.384008044 -s 3 -S COLOR -c green -o black h -t 262.384008044 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 262.384023044 -s 3 -S COLOR -c green -o black r -t 262.384023044 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 97 -k AGT n -t 262.384160673 -s 1 -S COLOR -c green -o black r -t 262.384160673 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 264.452987789 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 98 -k AGT - -t 264.452987789 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 98 -k AGT n -t 264.452987789 -s 2 -S COLOR -c green -o black h -t 264.452987789 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 98 -k AGT + -t 264.453062789 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 264.453062789 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 264.453062789 -s 2 -S COLOR -c green -o black h -t 264.453062789 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 264.453239534 -s 1 -S COLOR -c green -o black r -t 264.453239534 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 264.453249534 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 264.453249534 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 264.453249534 -s 1 -S COLOR -c green -o black h -t 264.453249534 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 264.453402278 -s 2 -S COLOR -c green -o black r -t 264.453402278 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 264.453452278 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 98 -k MAC - -t 264.453452278 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 98 -k MAC n -t 264.453452278 -s 2 -S COLOR -c green -o black h -t 264.453452278 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 98 -k MAC n -t 264.455837022 -s 1 -S COLOR -c green -o black r -t 264.455837022 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 98 -k MAC + -t 264.455847022 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 264.455847022 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 264.455847022 -s 1 -S COLOR -c green -o black h -t 264.455847022 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 264.455999767 -s 2 -S COLOR -c green -o black r -t 264.455999767 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 264.456049022 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 264.456049022 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 264.456049022 -s 1 -S COLOR -c green -o black h -t 264.456049022 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 264.456225651 -s 3 -S COLOR -c green -o black r -t 264.456225651 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 264.456235651 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 264.456235651 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 264.456235651 -s 3 -S COLOR -c green -o black h -t 264.456235651 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 264.456388281 -s 1 -S COLOR -c green -o black r -t 264.456388281 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 264.456438281 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 98 -k MAC - -t 264.456438281 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 98 -k MAC n -t 264.456438281 -s 1 -S COLOR -c green -o black h -t 264.456438281 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 98 -k MAC n -t 264.458822910 -s 3 -S COLOR -c green -o black r -t 264.458822910 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 98 -k MAC + -t 264.458832910 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 264.458832910 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 264.458832910 -s 3 -S COLOR -c green -o black h -t 264.458832910 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 264.458847910 -s 3 -S COLOR -c green -o black r -t 264.458847910 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 98 -k AGT n -t 264.458985539 -s 1 -S COLOR -c green -o black r -t 264.458985539 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 266.007878536 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 99 -k AGT - -t 266.007878536 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 99 -k AGT n -t 266.007878536 -s 2 -S COLOR -c green -o black h -t 266.007878536 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 99 -k AGT + -t 266.007953536 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 266.007953536 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 266.007953536 -s 2 -S COLOR -c green -o black h -t 266.007953536 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 266.008130280 -s 1 -S COLOR -c green -o black r -t 266.008130280 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 266.008140280 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 266.008140280 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 266.008140280 -s 1 -S COLOR -c green -o black h -t 266.008140280 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 266.008293025 -s 2 -S COLOR -c green -o black r -t 266.008293025 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 266.008343025 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 99 -k MAC - -t 266.008343025 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 99 -k MAC n -t 266.008343025 -s 2 -S COLOR -c green -o black h -t 266.008343025 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 99 -k MAC n -t 266.010727769 -s 1 -S COLOR -c green -o black r -t 266.010727769 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 99 -k MAC + -t 266.010737769 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 266.010737769 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 266.010737769 -s 1 -S COLOR -c green -o black h -t 266.010737769 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 266.010890513 -s 2 -S COLOR -c green -o black r -t 266.010890513 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 266.011519769 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 266.011519769 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 266.011519769 -s 1 -S COLOR -c green -o black h -t 266.011519769 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 266.011696398 -s 3 -S COLOR -c green -o black r -t 266.011696398 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 266.011706398 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 266.011706398 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 266.011706398 -s 3 -S COLOR -c green -o black h -t 266.011706398 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 266.011859027 -s 1 -S COLOR -c green -o black r -t 266.011859027 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 266.011909027 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 99 -k MAC - -t 266.011909027 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 99 -k MAC n -t 266.011909027 -s 1 -S COLOR -c green -o black h -t 266.011909027 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 99 -k MAC n -t 266.014293656 -s 3 -S COLOR -c green -o black r -t 266.014293656 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 99 -k MAC + -t 266.014303656 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 266.014303656 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 266.014303656 -s 3 -S COLOR -c green -o black h -t 266.014303656 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 266.014318656 -s 3 -S COLOR -c green -o black r -t 266.014318656 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 99 -k AGT n -t 266.014456285 -s 1 -S COLOR -c green -o black r -t 266.014456285 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 268.359178022 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 100 -k AGT - -t 268.359178022 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 100 -k AGT n -t 268.359178022 -s 2 -S COLOR -c green -o black h -t 268.359178022 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 100 -k AGT + -t 268.359253022 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 268.359253022 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 268.359253022 -s 2 -S COLOR -c green -o black h -t 268.359253022 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 268.359429766 -s 1 -S COLOR -c green -o black r -t 268.359429766 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 268.359439766 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 268.359439766 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 268.359439766 -s 1 -S COLOR -c green -o black h -t 268.359439766 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 268.359592510 -s 2 -S COLOR -c green -o black r -t 268.359592510 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 268.359642510 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 100 -k MAC - -t 268.359642510 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 100 -k MAC n -t 268.359642510 -s 2 -S COLOR -c green -o black h -t 268.359642510 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 100 -k MAC n -t 268.362027255 -s 1 -S COLOR -c yellow -o green r -t 268.362027255 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 100 -k MAC + -t 268.362037255 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 268.362037255 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 268.362037255 -s 1 -S COLOR -c yellow -o green h -t 268.362037255 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 268.362189999 -s 2 -S COLOR -c green -o black r -t 268.362189999 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 268.362779255 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 268.362779255 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 268.362779255 -s 1 -S COLOR -c yellow -o green h -t 268.362779255 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 268.362955884 -s 3 -S COLOR -c green -o black r -t 268.362955884 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 268.362965884 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 268.362965884 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 268.362965884 -s 3 -S COLOR -c green -o black h -t 268.362965884 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 268.363118513 -s 1 -S COLOR -c yellow -o green r -t 268.363118513 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 268.363168513 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 100 -k MAC - -t 268.363168513 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 100 -k MAC n -t 268.363168513 -s 1 -S COLOR -c yellow -o green h -t 268.363168513 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 100 -k MAC n -t 268.365553142 -s 3 -S COLOR -c green -o black r -t 268.365553142 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 100 -k MAC + -t 268.365563142 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 268.365563142 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 268.365563142 -s 3 -S COLOR -c green -o black h -t 268.365563142 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 268.365578142 -s 3 -S COLOR -c green -o black r -t 268.365578142 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 100 -k AGT n -t 268.365715771 -s 1 -S COLOR -c yellow -o green r -t 268.365715771 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 270.209518492 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 101 -k AGT - -t 270.209518492 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 101 -k AGT n -t 270.209518492 -s 2 -S COLOR -c green -o black h -t 270.209518492 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 101 -k AGT + -t 270.209593492 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 270.209593492 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 270.209593492 -s 2 -S COLOR -c green -o black h -t 270.209593492 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 270.209770236 -s 1 -S COLOR -c yellow -o green r -t 270.209770236 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 270.209780236 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 270.209780236 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 270.209780236 -s 1 -S COLOR -c yellow -o green h -t 270.209780236 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 270.209932980 -s 2 -S COLOR -c green -o black r -t 270.209932980 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 270.209982980 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 101 -k MAC - -t 270.209982980 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 101 -k MAC n -t 270.209982980 -s 2 -S COLOR -c green -o black h -t 270.209982980 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 101 -k MAC n -t 270.212367725 -s 1 -S COLOR -c yellow -o green r -t 270.212367725 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 101 -k MAC + -t 270.212377725 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 270.212377725 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 270.212377725 -s 1 -S COLOR -c yellow -o green h -t 270.212377725 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 270.212530469 -s 2 -S COLOR -c green -o black r -t 270.212530469 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 270.213119725 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 270.213119725 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 270.213119725 -s 1 -S COLOR -c yellow -o green h -t 270.213119725 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 270.213296354 -s 3 -S COLOR -c green -o black r -t 270.213296354 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 270.213306354 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 270.213306354 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 270.213306354 -s 3 -S COLOR -c green -o black h -t 270.213306354 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 270.213458983 -s 1 -S COLOR -c yellow -o green r -t 270.213458983 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 270.213508983 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 101 -k MAC - -t 270.213508983 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 101 -k MAC n -t 270.213508983 -s 1 -S COLOR -c yellow -o green h -t 270.213508983 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 101 -k MAC n -t 270.215893612 -s 3 -S COLOR -c green -o black r -t 270.215893612 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 101 -k MAC + -t 270.215903612 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 270.215903612 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 270.215903612 -s 3 -S COLOR -c green -o black h -t 270.215903612 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 270.215918612 -s 3 -S COLOR -c green -o black r -t 270.215918612 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 101 -k AGT n -t 270.216056241 -s 1 -S COLOR -c yellow -o green r -t 270.216056241 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 272.566871952 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 102 -k AGT - -t 272.566871952 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 102 -k AGT n -t 272.566871952 -s 2 -S COLOR -c green -o black h -t 272.566871952 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 102 -k AGT + -t 272.566946952 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 272.566946952 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 272.566946952 -s 2 -S COLOR -c green -o black h -t 272.566946952 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 272.567123697 -s 1 -S COLOR -c yellow -o green r -t 272.567123697 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 272.567133697 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 272.567133697 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 272.567133697 -s 1 -S COLOR -c yellow -o green h -t 272.567133697 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 272.567286441 -s 2 -S COLOR -c green -o black r -t 272.567286441 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 272.567336441 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 102 -k MAC - -t 272.567336441 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 102 -k MAC n -t 272.567336441 -s 2 -S COLOR -c green -o black h -t 272.567336441 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 102 -k MAC n -t 272.569721185 -s 1 -S COLOR -c yellow -o green r -t 272.569721185 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 102 -k MAC + -t 272.569731185 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 272.569731185 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 272.569731185 -s 1 -S COLOR -c yellow -o green h -t 272.569731185 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 272.569883930 -s 2 -S COLOR -c green -o black r -t 272.569883930 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 272.570133185 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 272.570133185 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 272.570133185 -s 1 -S COLOR -c yellow -o green h -t 272.570133185 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 272.570309814 -s 3 -S COLOR -c green -o black r -t 272.570309814 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 272.570319814 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 272.570319814 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 272.570319814 -s 3 -S COLOR -c green -o black h -t 272.570319814 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 272.570472444 -s 1 -S COLOR -c yellow -o green r -t 272.570472444 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 272.570522444 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 102 -k MAC - -t 272.570522444 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 102 -k MAC n -t 272.570522444 -s 1 -S COLOR -c yellow -o green h -t 272.570522444 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 102 -k MAC n -t 272.572907073 -s 3 -S COLOR -c green -o black r -t 272.572907073 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 102 -k MAC + -t 272.572917073 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 272.572917073 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 272.572917073 -s 3 -S COLOR -c green -o black h -t 272.572917073 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 272.572932073 -s 3 -S COLOR -c green -o black r -t 272.572932073 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 102 -k AGT n -t 272.573069702 -s 1 -S COLOR -c yellow -o green r -t 272.573069702 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 274.842906763 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 103 -k AGT - -t 274.842906763 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 103 -k AGT n -t 274.842906763 -s 2 -S COLOR -c green -o black h -t 274.842906763 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 103 -k AGT + -t 274.842981763 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 274.842981763 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 274.842981763 -s 2 -S COLOR -c green -o black h -t 274.842981763 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 274.843158507 -s 1 -S COLOR -c yellow -o green r -t 274.843158507 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 274.843168507 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 274.843168507 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 274.843168507 -s 1 -S COLOR -c yellow -o green h -t 274.843168507 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 274.843321251 -s 2 -S COLOR -c green -o black r -t 274.843321251 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 274.843371251 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 103 -k MAC - -t 274.843371251 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 103 -k MAC n -t 274.843371251 -s 2 -S COLOR -c green -o black h -t 274.843371251 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 103 -k MAC n -t 274.845755995 -s 1 -S COLOR -c yellow -o green r -t 274.845755995 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 103 -k MAC + -t 274.845765995 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 274.845765995 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 274.845765995 -s 1 -S COLOR -c yellow -o green h -t 274.845765995 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 274.845918740 -s 2 -S COLOR -c green -o black r -t 274.845918740 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 274.846567995 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 274.846567995 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 274.846567995 -s 1 -S COLOR -c yellow -o green h -t 274.846567995 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 274.846744625 -s 3 -S COLOR -c green -o black r -t 274.846744625 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 274.846754625 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 274.846754625 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 274.846754625 -s 3 -S COLOR -c green -o black h -t 274.846754625 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 274.846907254 -s 1 -S COLOR -c yellow -o green r -t 274.846907254 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 274.846957254 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 103 -k MAC - -t 274.846957254 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 103 -k MAC n -t 274.846957254 -s 1 -S COLOR -c yellow -o green h -t 274.846957254 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 103 -k MAC n -t 274.849341883 -s 3 -S COLOR -c green -o black r -t 274.849341883 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 103 -k MAC + -t 274.849351883 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 274.849351883 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 274.849351883 -s 3 -S COLOR -c green -o black h -t 274.849351883 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 274.849366883 -s 3 -S COLOR -c green -o black r -t 274.849366883 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 103 -k AGT n -t 274.849504512 -s 1 -S COLOR -c yellow -o green r -t 274.849504512 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 277.620724960 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 104 -k AGT - -t 277.620724960 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 104 -k AGT n -t 277.620724960 -s 2 -S COLOR -c yellow -o green h -t 277.620724960 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 104 -k AGT + -t 277.620799960 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 277.620799960 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 277.620799960 -s 2 -S COLOR -c yellow -o green h -t 277.620799960 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 277.620976704 -s 1 -S COLOR -c yellow -o green r -t 277.620976704 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 277.620986704 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 277.620986704 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 277.620986704 -s 1 -S COLOR -c yellow -o green h -t 277.620986704 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 277.621139448 -s 2 -S COLOR -c yellow -o green r -t 277.621139448 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 277.621189448 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 104 -k MAC - -t 277.621189448 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 104 -k MAC n -t 277.621189448 -s 2 -S COLOR -c yellow -o green h -t 277.621189448 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 104 -k MAC n -t 277.623574193 -s 1 -S COLOR -c yellow -o green r -t 277.623574193 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 104 -k MAC + -t 277.623584193 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 277.623584193 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 277.623584193 -s 1 -S COLOR -c yellow -o green h -t 277.623584193 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 277.623736937 -s 2 -S COLOR -c yellow -o green r -t 277.623736937 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 277.624226193 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 277.624226193 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 277.624226193 -s 1 -S COLOR -c yellow -o green h -t 277.624226193 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 277.624402822 -s 3 -S COLOR -c green -o black r -t 277.624402822 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 277.624412822 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 277.624412822 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 277.624412822 -s 3 -S COLOR -c green -o black h -t 277.624412822 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 277.624565451 -s 1 -S COLOR -c yellow -o green r -t 277.624565451 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 277.624615451 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 104 -k MAC - -t 277.624615451 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 104 -k MAC n -t 277.624615451 -s 1 -S COLOR -c yellow -o green h -t 277.624615451 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 104 -k MAC n -t 277.627000080 -s 3 -S COLOR -c green -o black r -t 277.627000080 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 104 -k MAC + -t 277.627010080 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 277.627010080 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 277.627010080 -s 3 -S COLOR -c green -o black h -t 277.627010080 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 277.627025080 -s 3 -S COLOR -c green -o black r -t 277.627025080 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 104 -k AGT n -t 277.627162709 -s 1 -S COLOR -c yellow -o green r -t 277.627162709 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 279.591228277 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 105 -k AGT - -t 279.591228277 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 105 -k AGT n -t 279.591228277 -s 2 -S COLOR -c yellow -o green h -t 279.591228277 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 105 -k AGT + -t 279.591303277 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 279.591303277 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 279.591303277 -s 2 -S COLOR -c yellow -o green h -t 279.591303277 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 279.591480022 -s 1 -S COLOR -c yellow -o green r -t 279.591480022 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 279.591490022 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 279.591490022 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 279.591490022 -s 1 -S COLOR -c yellow -o green h -t 279.591490022 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 279.591642766 -s 2 -S COLOR -c yellow -o green r -t 279.591642766 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 279.591692766 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 105 -k MAC - -t 279.591692766 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 105 -k MAC n -t 279.591692766 -s 2 -S COLOR -c yellow -o green h -t 279.591692766 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 105 -k MAC n -t 279.594077510 -s 1 -S COLOR -c yellow -o green r -t 279.594077510 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 105 -k MAC + -t 279.594087510 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 279.594087510 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 279.594087510 -s 1 -S COLOR -c yellow -o green h -t 279.594087510 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 279.594240255 -s 2 -S COLOR -c yellow -o green r -t 279.594240255 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 279.594569510 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 279.594569510 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 279.594569510 -s 1 -S COLOR -c yellow -o green h -t 279.594569510 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 279.594746139 -s 3 -S COLOR -c green -o black r -t 279.594746139 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 279.594756139 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 279.594756139 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 279.594756139 -s 3 -S COLOR -c green -o black h -t 279.594756139 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 279.594908768 -s 1 -S COLOR -c yellow -o green r -t 279.594908768 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 279.594958768 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 105 -k MAC - -t 279.594958768 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 105 -k MAC n -t 279.594958768 -s 1 -S COLOR -c yellow -o green h -t 279.594958768 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 105 -k MAC n -t 279.597343398 -s 3 -S COLOR -c green -o black r -t 279.597343398 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 105 -k MAC + -t 279.597353398 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 279.597353398 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 279.597353398 -s 3 -S COLOR -c green -o black h -t 279.597353398 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 279.597368398 -s 3 -S COLOR -c green -o black r -t 279.597368398 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 105 -k AGT n -t 279.597506027 -s 1 -S COLOR -c yellow -o green r -t 279.597506027 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 281.803409535 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 106 -k AGT - -t 281.803409535 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 106 -k AGT n -t 281.803409535 -s 2 -S COLOR -c yellow -o green h -t 281.803409535 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 106 -k AGT + -t 281.803484535 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 281.803484535 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 281.803484535 -s 2 -S COLOR -c yellow -o green h -t 281.803484535 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 281.803661279 -s 1 -S COLOR -c yellow -o green r -t 281.803661279 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 281.803671279 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 281.803671279 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 281.803671279 -s 1 -S COLOR -c yellow -o green h -t 281.803671279 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 281.803824024 -s 2 -S COLOR -c yellow -o green r -t 281.803824024 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 281.803874024 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 106 -k MAC - -t 281.803874024 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 106 -k MAC n -t 281.803874024 -s 2 -S COLOR -c yellow -o green h -t 281.803874024 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 106 -k MAC n -t 281.806258768 -s 1 -S COLOR -c yellow -o green r -t 281.806258768 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 106 -k MAC + -t 281.806268768 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 281.806268768 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 281.806268768 -s 1 -S COLOR -c yellow -o green h -t 281.806268768 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 281.806421512 -s 2 -S COLOR -c yellow -o green r -t 281.806421512 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 281.806930768 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 281.806930768 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 281.806930768 -s 1 -S COLOR -c yellow -o green h -t 281.806930768 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 281.807107397 -s 3 -S COLOR -c green -o black r -t 281.807107397 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 281.807117397 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 281.807117397 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 281.807117397 -s 3 -S COLOR -c green -o black h -t 281.807117397 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 281.807270026 -s 1 -S COLOR -c yellow -o green r -t 281.807270026 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 281.807320026 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 106 -k MAC - -t 281.807320026 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 106 -k MAC n -t 281.807320026 -s 1 -S COLOR -c yellow -o green h -t 281.807320026 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 106 -k MAC n -t 281.809704655 -s 3 -S COLOR -c green -o black r -t 281.809704655 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 106 -k MAC + -t 281.809714655 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 281.809714655 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 281.809714655 -s 3 -S COLOR -c green -o black h -t 281.809714655 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 281.809729655 -s 3 -S COLOR -c green -o black r -t 281.809729655 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 106 -k AGT n -t 281.809867284 -s 1 -S COLOR -c yellow -o green r -t 281.809867284 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 284.487112407 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 107 -k AGT - -t 284.487112407 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 107 -k AGT n -t 284.487112407 -s 2 -S COLOR -c yellow -o green h -t 284.487112407 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 107 -k AGT + -t 284.487187407 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 284.487187407 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 284.487187407 -s 2 -S COLOR -c yellow -o green h -t 284.487187407 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 284.487364151 -s 1 -S COLOR -c yellow -o green r -t 284.487364151 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 284.487374151 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 284.487374151 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 284.487374151 -s 1 -S COLOR -c yellow -o green h -t 284.487374151 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 284.487526895 -s 2 -S COLOR -c yellow -o green r -t 284.487526895 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 284.487576895 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 107 -k MAC - -t 284.487576895 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 107 -k MAC n -t 284.487576895 -s 2 -S COLOR -c yellow -o green h -t 284.487576895 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 107 -k MAC n -t 284.489961640 -s 1 -S COLOR -c yellow -o green r -t 284.489961640 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 107 -k MAC + -t 284.489971640 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 284.489971640 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 284.489971640 -s 1 -S COLOR -c yellow -o green h -t 284.489971640 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 284.490124384 -s 2 -S COLOR -c yellow -o green r -t 284.490124384 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 284.490233640 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 284.490233640 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 284.490233640 -s 1 -S COLOR -c yellow -o green h -t 284.490233640 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 284.490410269 -s 3 -S COLOR -c green -o black r -t 284.490410269 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 284.490420269 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 284.490420269 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 284.490420269 -s 3 -S COLOR -c green -o black h -t 284.490420269 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 284.490572898 -s 1 -S COLOR -c yellow -o green r -t 284.490572898 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 284.490622898 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 107 -k MAC - -t 284.490622898 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 107 -k MAC n -t 284.490622898 -s 1 -S COLOR -c yellow -o green h -t 284.490622898 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 107 -k MAC n -t 284.493007527 -s 3 -S COLOR -c green -o black r -t 284.493007527 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 107 -k MAC + -t 284.493017527 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 284.493017527 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 284.493017527 -s 3 -S COLOR -c green -o black h -t 284.493017527 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 284.493032527 -s 3 -S COLOR -c green -o black r -t 284.493032527 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 107 -k AGT n -t 284.493170156 -s 1 -S COLOR -c yellow -o green r -t 284.493170156 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 286.429462641 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 108 -k AGT - -t 286.429462641 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 108 -k AGT n -t 286.429462641 -s 2 -S COLOR -c yellow -o green h -t 286.429462641 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 108 -k AGT + -t 286.429537641 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 286.429537641 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 286.429537641 -s 2 -S COLOR -c yellow -o green h -t 286.429537641 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 286.429714385 -s 1 -S COLOR -c yellow -o green r -t 286.429714385 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 286.429724385 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 286.429724385 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 286.429724385 -s 1 -S COLOR -c yellow -o green h -t 286.429724385 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 286.429877130 -s 2 -S COLOR -c yellow -o green r -t 286.429877130 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 286.429927130 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 108 -k MAC - -t 286.429927130 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 108 -k MAC n -t 286.429927130 -s 2 -S COLOR -c yellow -o green h -t 286.429927130 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 108 -k MAC n -t 286.432311874 -s 1 -S COLOR -c yellow -o green r -t 286.432311874 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 108 -k MAC + -t 286.432321874 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 286.432321874 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 286.432321874 -s 1 -S COLOR -c yellow -o green h -t 286.432321874 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 286.432474618 -s 2 -S COLOR -c yellow -o green r -t 286.432474618 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 286.432823874 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 286.432823874 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 286.432823874 -s 1 -S COLOR -c yellow -o green h -t 286.432823874 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 286.433000503 -s 3 -S COLOR -c green -o black r -t 286.433000503 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 286.433010503 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 286.433010503 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 286.433010503 -s 3 -S COLOR -c green -o black h -t 286.433010503 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 286.433163132 -s 1 -S COLOR -c yellow -o green r -t 286.433163132 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 286.433213132 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 108 -k MAC - -t 286.433213132 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 108 -k MAC n -t 286.433213132 -s 1 -S COLOR -c yellow -o green h -t 286.433213132 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 108 -k MAC n -t 286.435597761 -s 3 -S COLOR -c green -o black r -t 286.435597761 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 108 -k MAC + -t 286.435607761 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 286.435607761 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 286.435607761 -s 3 -S COLOR -c green -o black h -t 286.435607761 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 286.435622761 -s 3 -S COLOR -c green -o black r -t 286.435622761 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 108 -k AGT n -t 286.435760390 -s 1 -S COLOR -c yellow -o green r -t 286.435760390 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 288.184670137 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 109 -k AGT - -t 288.184670137 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 109 -k AGT n -t 288.184670137 -s 2 -S COLOR -c yellow -o green h -t 288.184670137 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 109 -k AGT + -t 288.184745137 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 288.184745137 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 288.184745137 -s 2 -S COLOR -c yellow -o green h -t 288.184745137 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 288.184921881 -s 1 -S COLOR -c yellow -o green r -t 288.184921881 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 288.184931881 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 288.184931881 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 288.184931881 -s 1 -S COLOR -c yellow -o green h -t 288.184931881 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 288.185084626 -s 2 -S COLOR -c yellow -o green r -t 288.185084626 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 288.185134626 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 109 -k MAC - -t 288.185134626 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 109 -k MAC n -t 288.185134626 -s 2 -S COLOR -c yellow -o green h -t 288.185134626 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 109 -k MAC n -t 288.187519370 -s 1 -S COLOR -c yellow -o green r -t 288.187519370 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 109 -k MAC + -t 288.187529370 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 288.187529370 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 288.187529370 -s 1 -S COLOR -c yellow -o green h -t 288.187529370 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 288.187682114 -s 2 -S COLOR -c yellow -o green r -t 288.187682114 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 288.187771370 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 288.187771370 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 288.187771370 -s 1 -S COLOR -c yellow -o green h -t 288.187771370 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 288.187947999 -s 3 -S COLOR -c green -o black r -t 288.187947999 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 288.187957999 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 288.187957999 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 288.187957999 -s 3 -S COLOR -c green -o black h -t 288.187957999 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 288.188110628 -s 1 -S COLOR -c yellow -o green r -t 288.188110628 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 288.188160628 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 109 -k MAC - -t 288.188160628 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 109 -k MAC n -t 288.188160628 -s 1 -S COLOR -c yellow -o green h -t 288.188160628 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 109 -k MAC n -t 288.190545257 -s 3 -S COLOR -c green -o black r -t 288.190545257 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 109 -k MAC + -t 288.190555257 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 288.190555257 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 288.190555257 -s 3 -S COLOR -c green -o black h -t 288.190555257 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 288.190570257 -s 3 -S COLOR -c green -o black r -t 288.190570257 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 109 -k AGT n -t 288.190707887 -s 1 -S COLOR -c yellow -o green r -t 288.190707887 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 290.210347236 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 110 -k AGT - -t 290.210347236 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 110 -k AGT n -t 290.210347236 -s 2 -S COLOR -c yellow -o green h -t 290.210347236 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 110 -k AGT + -t 290.210422236 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 290.210422236 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 290.210422236 -s 2 -S COLOR -c yellow -o green h -t 290.210422236 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 290.210598981 -s 1 -S COLOR -c yellow -o green r -t 290.210598981 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 290.210608981 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 290.210608981 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 290.210608981 -s 1 -S COLOR -c yellow -o green h -t 290.210608981 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 290.210761725 -s 2 -S COLOR -c yellow -o green r -t 290.210761725 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 290.210811725 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 110 -k MAC - -t 290.210811725 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 110 -k MAC n -t 290.210811725 -s 2 -S COLOR -c yellow -o green h -t 290.210811725 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 110 -k MAC n -t 290.213196469 -s 1 -S COLOR -c yellow -o green r -t 290.213196469 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 110 -k MAC + -t 290.213206469 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 290.213206469 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 290.213206469 -s 1 -S COLOR -c yellow -o green h -t 290.213206469 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 290.213359214 -s 2 -S COLOR -c yellow -o green r -t 290.213359214 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 290.213868469 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 290.213868469 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 290.213868469 -s 1 -S COLOR -c yellow -o green h -t 290.213868469 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 290.214045099 -s 3 -S COLOR -c green -o black r -t 290.214045099 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 290.214055099 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 290.214055099 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 290.214055099 -s 3 -S COLOR -c green -o black h -t 290.214055099 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 290.214207728 -s 1 -S COLOR -c yellow -o green r -t 290.214207728 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 290.214257728 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 110 -k MAC - -t 290.214257728 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 110 -k MAC n -t 290.214257728 -s 1 -S COLOR -c yellow -o green h -t 290.214257728 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 110 -k MAC n -t 290.216642357 -s 3 -S COLOR -c green -o black r -t 290.216642357 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 110 -k MAC + -t 290.216652357 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 290.216652357 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 290.216652357 -s 3 -S COLOR -c green -o black h -t 290.216652357 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 290.216667357 -s 3 -S COLOR -c green -o black r -t 290.216667357 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 110 -k AGT n -t 290.216804986 -s 1 -S COLOR -c yellow -o green r -t 290.216804986 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 292.212572829 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 111 -k AGT - -t 292.212572829 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 111 -k AGT n -t 292.212572829 -s 2 -S COLOR -c yellow -o green h -t 292.212572829 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 111 -k AGT + -t 292.212647829 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 292.212647829 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 292.212647829 -s 2 -S COLOR -c yellow -o green h -t 292.212647829 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 292.212824573 -s 1 -S COLOR -c yellow -o green r -t 292.212824573 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 292.212834573 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 292.212834573 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 292.212834573 -s 1 -S COLOR -c yellow -o green h -t 292.212834573 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 292.212987317 -s 2 -S COLOR -c yellow -o green r -t 292.212987317 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 292.213037317 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 111 -k MAC - -t 292.213037317 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 111 -k MAC n -t 292.213037317 -s 2 -S COLOR -c yellow -o green h -t 292.213037317 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 111 -k MAC n -t 292.215422062 -s 1 -S COLOR -c yellow -o green r -t 292.215422062 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 111 -k MAC + -t 292.215432062 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 292.215432062 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 292.215432062 -s 1 -S COLOR -c yellow -o green h -t 292.215432062 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 292.215584806 -s 2 -S COLOR -c yellow -o green r -t 292.215584806 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 292.215714062 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 292.215714062 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 292.215714062 -s 1 -S COLOR -c yellow -o green h -t 292.215714062 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 292.215890691 -s 3 -S COLOR -c green -o black r -t 292.215890691 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 292.215900691 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 292.215900691 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 292.215900691 -s 3 -S COLOR -c green -o black h -t 292.215900691 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 292.216053320 -s 1 -S COLOR -c yellow -o green r -t 292.216053320 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 292.216103320 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 111 -k MAC - -t 292.216103320 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 111 -k MAC n -t 292.216103320 -s 1 -S COLOR -c yellow -o green h -t 292.216103320 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 111 -k MAC n -t 292.218487949 -s 3 -S COLOR -c green -o black r -t 292.218487949 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 111 -k MAC + -t 292.218497949 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 292.218497949 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 292.218497949 -s 3 -S COLOR -c green -o black h -t 292.218497949 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 292.218512949 -s 3 -S COLOR -c green -o black r -t 292.218512949 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 111 -k AGT n -t 292.218650578 -s 1 -S COLOR -c yellow -o green r -t 292.218650578 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 293.893494457 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 112 -k AGT - -t 293.893494457 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 112 -k AGT n -t 293.893494457 -s 2 -S COLOR -c yellow -o green h -t 293.893494457 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 112 -k AGT + -t 293.893569457 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 293.893569457 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 293.893569457 -s 2 -S COLOR -c yellow -o green h -t 293.893569457 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 293.893746201 -s 1 -S COLOR -c yellow -o green r -t 293.893746201 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 293.893756201 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 293.893756201 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 293.893756201 -s 1 -S COLOR -c yellow -o green h -t 293.893756201 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 293.893908946 -s 2 -S COLOR -c yellow -o green r -t 293.893908946 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 293.893958946 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 112 -k MAC - -t 293.893958946 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 112 -k MAC n -t 293.893958946 -s 2 -S COLOR -c yellow -o green h -t 293.893958946 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 112 -k MAC n -t 293.896343690 -s 1 -S COLOR -c yellow -o green r -t 293.896343690 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 112 -k MAC + -t 293.896353690 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 293.896353690 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 293.896353690 -s 1 -S COLOR -c yellow -o green h -t 293.896353690 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 293.896506434 -s 2 -S COLOR -c yellow -o green r -t 293.896506434 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 293.896675690 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 293.896675690 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 293.896675690 -s 1 -S COLOR -c yellow -o green h -t 293.896675690 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 293.896852319 -s 3 -S COLOR -c green -o black r -t 293.896852319 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 293.896862319 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 293.896862319 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 293.896862319 -s 3 -S COLOR -c green -o black h -t 293.896862319 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 293.897014948 -s 1 -S COLOR -c yellow -o green r -t 293.897014948 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 293.897064948 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 112 -k MAC - -t 293.897064948 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 112 -k MAC n -t 293.897064948 -s 1 -S COLOR -c yellow -o green h -t 293.897064948 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 112 -k MAC n -t 293.899449577 -s 3 -S COLOR -c green -o black r -t 293.899449577 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 112 -k MAC + -t 293.899459577 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 293.899459577 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 293.899459577 -s 3 -S COLOR -c green -o black h -t 293.899459577 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 293.899474577 -s 3 -S COLOR -c green -o black r -t 293.899474577 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 112 -k AGT n -t 293.899612206 -s 1 -S COLOR -c yellow -o green r -t 293.899612206 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 295.022222728 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 113 -k AGT - -t 295.022222728 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 113 -k AGT n -t 295.022222728 -s 2 -S COLOR -c yellow -o green h -t 295.022222728 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 113 -k AGT + -t 295.022297728 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 295.022297728 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 295.022297728 -s 2 -S COLOR -c yellow -o green h -t 295.022297728 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 295.022474472 -s 1 -S COLOR -c yellow -o green r -t 295.022474472 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 295.022484472 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 295.022484472 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 295.022484472 -s 1 -S COLOR -c yellow -o green h -t 295.022484472 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 295.022637216 -s 2 -S COLOR -c yellow -o green r -t 295.022637216 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 295.022687216 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 113 -k MAC - -t 295.022687216 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 113 -k MAC n -t 295.022687216 -s 2 -S COLOR -c yellow -o green h -t 295.022687216 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 113 -k MAC n -t 295.025071961 -s 1 -S COLOR -c yellow -o green r -t 295.025071961 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 113 -k MAC + -t 295.025081961 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 295.025081961 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 295.025081961 -s 1 -S COLOR -c yellow -o green h -t 295.025081961 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 295.025234705 -s 2 -S COLOR -c yellow -o green r -t 295.025234705 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 295.025763961 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 295.025763961 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 295.025763961 -s 1 -S COLOR -c yellow -o green h -t 295.025763961 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 295.025940590 -s 3 -S COLOR -c green -o black r -t 295.025940590 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 295.025950590 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 295.025950590 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 295.025950590 -s 3 -S COLOR -c green -o black h -t 295.025950590 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 295.026103219 -s 1 -S COLOR -c yellow -o green r -t 295.026103219 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 295.026153219 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 113 -k MAC - -t 295.026153219 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 113 -k MAC n -t 295.026153219 -s 1 -S COLOR -c yellow -o green h -t 295.026153219 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 113 -k MAC n -t 295.028537848 -s 3 -S COLOR -c green -o black r -t 295.028537848 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 113 -k MAC + -t 295.028547848 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 295.028547848 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 295.028547848 -s 3 -S COLOR -c green -o black h -t 295.028547848 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 295.028562848 -s 3 -S COLOR -c green -o black r -t 295.028562848 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 113 -k AGT n -t 295.028700477 -s 1 -S COLOR -c yellow -o green r -t 295.028700477 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 296.857285397 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 114 -k AGT - -t 296.857285397 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 114 -k AGT n -t 296.857285397 -s 2 -S COLOR -c yellow -o green h -t 296.857285397 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 114 -k AGT + -t 296.857360397 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 296.857360397 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 296.857360397 -s 2 -S COLOR -c yellow -o green h -t 296.857360397 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 296.857537141 -s 1 -S COLOR -c yellow -o green r -t 296.857537141 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 296.857547141 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 296.857547141 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 296.857547141 -s 1 -S COLOR -c yellow -o green h -t 296.857547141 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 296.857699885 -s 2 -S COLOR -c yellow -o green r -t 296.857699885 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 296.857749885 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 114 -k MAC - -t 296.857749885 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 114 -k MAC n -t 296.857749885 -s 2 -S COLOR -c yellow -o green h -t 296.857749885 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 114 -k MAC n -t 296.860134630 -s 1 -S COLOR -c yellow -o green r -t 296.860134630 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 114 -k MAC + -t 296.860144630 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 296.860144630 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 296.860144630 -s 1 -S COLOR -c yellow -o green h -t 296.860144630 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 296.860297374 -s 2 -S COLOR -c yellow -o green r -t 296.860297374 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 296.860826630 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 296.860826630 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 296.860826630 -s 1 -S COLOR -c yellow -o green h -t 296.860826630 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 296.861003259 -s 3 -S COLOR -c green -o black r -t 296.861003259 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 296.861013259 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 296.861013259 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 296.861013259 -s 3 -S COLOR -c green -o black h -t 296.861013259 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 296.861165888 -s 1 -S COLOR -c yellow -o green r -t 296.861165888 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 296.861215888 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 114 -k MAC - -t 296.861215888 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 114 -k MAC n -t 296.861215888 -s 1 -S COLOR -c yellow -o green h -t 296.861215888 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 114 -k MAC n -t 296.863600517 -s 3 -S COLOR -c green -o black r -t 296.863600517 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 114 -k MAC + -t 296.863610517 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 296.863610517 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 296.863610517 -s 3 -S COLOR -c green -o black h -t 296.863610517 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 296.863625517 -s 3 -S COLOR -c green -o black r -t 296.863625517 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 114 -k AGT n -t 296.863763146 -s 1 -S COLOR -c yellow -o green r -t 296.863763146 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 299.775334247 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 115 -k AGT - -t 299.775334247 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 115 -k AGT n -t 299.775334247 -s 2 -S COLOR -c yellow -o green h -t 299.775334247 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 115 -k AGT + -t 299.775409247 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 299.775409247 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 299.775409247 -s 2 -S COLOR -c yellow -o green h -t 299.775409247 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 299.775585991 -s 1 -S COLOR -c yellow -o green r -t 299.775585991 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 299.775595991 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 299.775595991 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 299.775595991 -s 1 -S COLOR -c yellow -o green h -t 299.775595991 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 299.775748735 -s 2 -S COLOR -c yellow -o green r -t 299.775748735 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 299.775798735 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 115 -k MAC - -t 299.775798735 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 115 -k MAC n -t 299.775798735 -s 2 -S COLOR -c yellow -o green h -t 299.775798735 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 115 -k MAC n -t 299.778183480 -s 1 -S COLOR -c yellow -o green r -t 299.778183480 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 115 -k MAC + -t 299.778193480 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 299.778193480 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 299.778193480 -s 1 -S COLOR -c yellow -o green h -t 299.778193480 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 299.778346224 -s 2 -S COLOR -c yellow -o green r -t 299.778346224 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 299.778575480 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 299.778575480 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 299.778575480 -s 1 -S COLOR -c yellow -o green h -t 299.778575480 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 299.778752109 -s 3 -S COLOR -c green -o black r -t 299.778752109 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 299.778762109 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 299.778762109 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 299.778762109 -s 3 -S COLOR -c green -o black h -t 299.778762109 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 299.778914738 -s 1 -S COLOR -c yellow -o green r -t 299.778914738 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 299.778964738 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 115 -k MAC - -t 299.778964738 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 115 -k MAC n -t 299.778964738 -s 1 -S COLOR -c yellow -o green h -t 299.778964738 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 115 -k MAC n -t 299.781349367 -s 3 -S COLOR -c green -o black r -t 299.781349367 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 115 -k MAC + -t 299.781359367 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 299.781359367 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 299.781359367 -s 3 -S COLOR -c green -o black h -t 299.781359367 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 299.781374367 -s 3 -S COLOR -c green -o black r -t 299.781374367 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 115 -k AGT n -t 299.781511996 -s 1 -S COLOR -c yellow -o green r -t 299.781511996 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 302.768723941 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 116 -k AGT - -t 302.768723941 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 116 -k AGT n -t 302.768723941 -s 2 -S COLOR -c yellow -o green h -t 302.768723941 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 116 -k AGT + -t 302.768798941 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 302.768798941 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 302.768798941 -s 2 -S COLOR -c yellow -o green h -t 302.768798941 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 302.768975685 -s 1 -S COLOR -c yellow -o green r -t 302.768975685 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 302.768985685 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 302.768985685 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 302.768985685 -s 1 -S COLOR -c yellow -o green h -t 302.768985685 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 302.769138429 -s 2 -S COLOR -c yellow -o green r -t 302.769138429 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 302.769188429 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 116 -k MAC - -t 302.769188429 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 116 -k MAC n -t 302.769188429 -s 2 -S COLOR -c yellow -o green h -t 302.769188429 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 116 -k MAC n -t 302.771573174 -s 1 -S COLOR -c yellow -o green r -t 302.771573174 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 116 -k MAC + -t 302.771583174 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 302.771583174 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 302.771583174 -s 1 -S COLOR -c yellow -o green h -t 302.771583174 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 302.771735918 -s 2 -S COLOR -c yellow -o green r -t 302.771735918 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 302.771925174 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 302.771925174 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 302.771925174 -s 1 -S COLOR -c yellow -o green h -t 302.771925174 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 302.772101803 -s 3 -S COLOR -c green -o black r -t 302.772101803 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 302.772111803 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 302.772111803 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 302.772111803 -s 3 -S COLOR -c green -o black h -t 302.772111803 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 302.772264432 -s 1 -S COLOR -c yellow -o green r -t 302.772264432 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 302.772314432 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 116 -k MAC - -t 302.772314432 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 116 -k MAC n -t 302.772314432 -s 1 -S COLOR -c yellow -o green h -t 302.772314432 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 116 -k MAC n -t 302.774699061 -s 3 -S COLOR -c green -o black r -t 302.774699061 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 116 -k MAC + -t 302.774709061 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 302.774709061 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 302.774709061 -s 3 -S COLOR -c green -o black h -t 302.774709061 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 302.774724061 -s 3 -S COLOR -c green -o black r -t 302.774724061 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 116 -k AGT n -t 302.774861690 -s 1 -S COLOR -c yellow -o green r -t 302.774861690 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 304.879726859 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 117 -k AGT - -t 304.879726859 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 117 -k AGT n -t 304.879726859 -s 2 -S COLOR -c yellow -o green h -t 304.879726859 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 117 -k AGT + -t 304.879801859 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 304.879801859 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 304.879801859 -s 2 -S COLOR -c yellow -o green h -t 304.879801859 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 304.879978603 -s 1 -S COLOR -c yellow -o green r -t 304.879978603 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 304.879988603 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 304.879988603 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 304.879988603 -s 1 -S COLOR -c yellow -o green h -t 304.879988603 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 304.880141347 -s 2 -S COLOR -c yellow -o green r -t 304.880141347 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 304.880191347 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 117 -k MAC - -t 304.880191347 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 117 -k MAC n -t 304.880191347 -s 2 -S COLOR -c yellow -o green h -t 304.880191347 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 117 -k MAC n -t 304.882576092 -s 1 -S COLOR -c yellow -o green r -t 304.882576092 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 117 -k MAC + -t 304.882586092 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 304.882586092 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 304.882586092 -s 1 -S COLOR -c yellow -o green h -t 304.882586092 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 304.882738836 -s 2 -S COLOR -c yellow -o green r -t 304.882738836 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 304.883228092 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 304.883228092 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 304.883228092 -s 1 -S COLOR -c yellow -o green h -t 304.883228092 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 304.883404721 -s 3 -S COLOR -c green -o black r -t 304.883404721 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 304.883414721 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 304.883414721 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 304.883414721 -s 3 -S COLOR -c green -o black h -t 304.883414721 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 304.883567350 -s 1 -S COLOR -c yellow -o green r -t 304.883567350 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 304.883617350 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 117 -k MAC - -t 304.883617350 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 117 -k MAC n -t 304.883617350 -s 1 -S COLOR -c yellow -o green h -t 304.883617350 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 117 -k MAC n -t 304.886001979 -s 3 -S COLOR -c green -o black r -t 304.886001979 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 117 -k MAC + -t 304.886011979 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 304.886011979 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 304.886011979 -s 3 -S COLOR -c green -o black h -t 304.886011979 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 304.886026979 -s 3 -S COLOR -c green -o black r -t 304.886026979 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 117 -k AGT n -t 304.886164608 -s 1 -S COLOR -c yellow -o green r -t 304.886164608 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 307.785572322 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 118 -k AGT - -t 307.785572322 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 118 -k AGT n -t 307.785572322 -s 2 -S COLOR -c yellow -o green h -t 307.785572322 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 118 -k AGT + -t 307.785647322 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 307.785647322 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 307.785647322 -s 2 -S COLOR -c yellow -o green h -t 307.785647322 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 307.785824066 -s 1 -S COLOR -c yellow -o green r -t 307.785824066 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 307.785834066 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 307.785834066 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 307.785834066 -s 1 -S COLOR -c yellow -o green h -t 307.785834066 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 307.785986810 -s 2 -S COLOR -c yellow -o green r -t 307.785986810 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 307.786036810 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 118 -k MAC - -t 307.786036810 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 118 -k MAC n -t 307.786036810 -s 2 -S COLOR -c yellow -o green h -t 307.786036810 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 118 -k MAC n -t 307.788421555 -s 1 -S COLOR -c yellow -o green r -t 307.788421555 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 118 -k MAC + -t 307.788431555 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 307.788431555 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 307.788431555 -s 1 -S COLOR -c yellow -o green h -t 307.788431555 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 307.788584299 -s 2 -S COLOR -c yellow -o green r -t 307.788584299 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 307.788853555 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 307.788853555 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 307.788853555 -s 1 -S COLOR -c yellow -o green h -t 307.788853555 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 307.789030184 -s 3 -S COLOR -c green -o black r -t 307.789030184 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 307.789040184 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 307.789040184 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 307.789040184 -s 3 -S COLOR -c green -o black h -t 307.789040184 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 307.789192813 -s 1 -S COLOR -c yellow -o green r -t 307.789192813 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 307.789242813 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 118 -k MAC - -t 307.789242813 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 118 -k MAC n -t 307.789242813 -s 1 -S COLOR -c yellow -o green h -t 307.789242813 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 118 -k MAC n -t 307.791627442 -s 3 -S COLOR -c green -o black r -t 307.791627442 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 118 -k MAC + -t 307.791637442 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 307.791637442 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 307.791637442 -s 3 -S COLOR -c green -o black h -t 307.791637442 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 307.791652442 -s 3 -S COLOR -c green -o black r -t 307.791652442 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 118 -k AGT n -t 307.791790071 -s 1 -S COLOR -c yellow -o green r -t 307.791790071 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 309.967659966 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 119 -k AGT - -t 309.967659966 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 119 -k AGT n -t 309.967659966 -s 2 -S COLOR -c yellow -o green h -t 309.967659966 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 119 -k AGT + -t 309.967734966 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 309.967734966 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 309.967734966 -s 2 -S COLOR -c yellow -o green h -t 309.967734966 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 309.967911711 -s 1 -S COLOR -c yellow -o green r -t 309.967911711 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 309.967921711 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 309.967921711 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 309.967921711 -s 1 -S COLOR -c yellow -o green h -t 309.967921711 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 309.968074455 -s 2 -S COLOR -c yellow -o green r -t 309.968074455 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 309.968124455 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 119 -k MAC - -t 309.968124455 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 119 -k MAC n -t 309.968124455 -s 2 -S COLOR -c yellow -o green h -t 309.968124455 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 119 -k MAC n -t 309.970509199 -s 1 -S COLOR -c yellow -o green r -t 309.970509199 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 119 -k MAC + -t 309.970519199 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 309.970519199 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 309.970519199 -s 1 -S COLOR -c yellow -o green h -t 309.970519199 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 309.970671943 -s 2 -S COLOR -c yellow -o green r -t 309.970671943 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 309.970861199 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 309.970861199 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 309.970861199 -s 1 -S COLOR -c yellow -o green h -t 309.970861199 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 309.971037828 -s 3 -S COLOR -c green -o black r -t 309.971037828 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 309.971047828 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 309.971047828 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 309.971047828 -s 3 -S COLOR -c green -o black h -t 309.971047828 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 309.971200457 -s 1 -S COLOR -c yellow -o green r -t 309.971200457 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 309.971250457 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 119 -k MAC - -t 309.971250457 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 119 -k MAC n -t 309.971250457 -s 1 -S COLOR -c yellow -o green h -t 309.971250457 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 119 -k MAC n -t 309.973635086 -s 3 -S COLOR -c green -o black r -t 309.973635086 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 119 -k MAC + -t 309.973645086 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 309.973645086 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 309.973645086 -s 3 -S COLOR -c green -o black h -t 309.973645086 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 309.973660086 -s 3 -S COLOR -c green -o black r -t 309.973660086 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 119 -k AGT n -t 309.973797716 -s 1 -S COLOR -c yellow -o green r -t 309.973797716 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 312.790458662 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 120 -k AGT - -t 312.790458662 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 120 -k AGT n -t 312.790458662 -s 2 -S COLOR -c yellow -o green h -t 312.790458662 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 120 -k AGT + -t 312.790533662 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 312.790533662 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 312.790533662 -s 2 -S COLOR -c yellow -o green h -t 312.790533662 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 312.790710407 -s 1 -S COLOR -c yellow -o green r -t 312.790710407 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 312.790720407 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 312.790720407 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 312.790720407 -s 1 -S COLOR -c yellow -o green h -t 312.790720407 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 312.790873151 -s 2 -S COLOR -c yellow -o green r -t 312.790873151 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 312.790923151 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 120 -k MAC - -t 312.790923151 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 120 -k MAC n -t 312.790923151 -s 2 -S COLOR -c yellow -o green h -t 312.790923151 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 120 -k MAC n -t 312.793307895 -s 1 -S COLOR -c yellow -o green r -t 312.793307895 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 120 -k MAC + -t 312.793317895 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 312.793317895 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 312.793317895 -s 1 -S COLOR -c yellow -o green h -t 312.793317895 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 312.793470640 -s 2 -S COLOR -c yellow -o green r -t 312.793470640 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 312.794019895 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 312.794019895 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 312.794019895 -s 1 -S COLOR -c yellow -o green h -t 312.794019895 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 312.794196524 -s 3 -S COLOR -c green -o black r -t 312.794196524 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 312.794206524 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 312.794206524 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 312.794206524 -s 3 -S COLOR -c green -o black h -t 312.794206524 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 312.794359154 -s 1 -S COLOR -c yellow -o green r -t 312.794359154 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 312.794409154 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 120 -k MAC - -t 312.794409154 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 120 -k MAC n -t 312.794409154 -s 1 -S COLOR -c yellow -o green h -t 312.794409154 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 120 -k MAC n -t 312.796793783 -s 3 -S COLOR -c green -o black r -t 312.796793783 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 120 -k MAC + -t 312.796803783 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 312.796803783 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 312.796803783 -s 3 -S COLOR -c green -o black h -t 312.796803783 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 312.796818783 -s 3 -S COLOR -c green -o black r -t 312.796818783 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 120 -k AGT n -t 312.796956412 -s 1 -S COLOR -c yellow -o green r -t 312.796956412 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 314.008372949 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 121 -k AGT - -t 314.008372949 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 121 -k AGT n -t 314.008372949 -s 2 -S COLOR -c yellow -o green h -t 314.008372949 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 121 -k AGT + -t 314.008447949 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 314.008447949 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 314.008447949 -s 2 -S COLOR -c yellow -o green h -t 314.008447949 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 314.008624694 -s 1 -S COLOR -c yellow -o green r -t 314.008624694 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 314.008634694 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 314.008634694 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 314.008634694 -s 1 -S COLOR -c yellow -o green h -t 314.008634694 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 314.008787438 -s 2 -S COLOR -c yellow -o green r -t 314.008787438 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 314.008837438 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 121 -k MAC - -t 314.008837438 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 121 -k MAC n -t 314.008837438 -s 2 -S COLOR -c yellow -o green h -t 314.008837438 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 121 -k MAC n -t 314.011222182 -s 1 -S COLOR -c yellow -o green r -t 314.011222182 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 121 -k MAC + -t 314.011232182 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 314.011232182 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 314.011232182 -s 1 -S COLOR -c yellow -o green h -t 314.011232182 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 314.011384927 -s 2 -S COLOR -c yellow -o green r -t 314.011384927 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 314.012034182 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 314.012034182 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 314.012034182 -s 1 -S COLOR -c yellow -o green h -t 314.012034182 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 314.012210812 -s 3 -S COLOR -c green -o black r -t 314.012210812 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 314.012220812 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 314.012220812 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 314.012220812 -s 3 -S COLOR -c green -o black h -t 314.012220812 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 314.012373441 -s 1 -S COLOR -c yellow -o green r -t 314.012373441 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 314.012423441 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 121 -k MAC - -t 314.012423441 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 121 -k MAC n -t 314.012423441 -s 1 -S COLOR -c yellow -o green h -t 314.012423441 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 121 -k MAC n -t 314.014808070 -s 3 -S COLOR -c green -o black r -t 314.014808070 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 121 -k MAC + -t 314.014818070 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 314.014818070 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 314.014818070 -s 3 -S COLOR -c green -o black h -t 314.014818070 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 314.014833070 -s 3 -S COLOR -c green -o black r -t 314.014833070 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 121 -k AGT n -t 314.014970699 -s 1 -S COLOR -c yellow -o green r -t 314.014970699 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 316.812565924 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 122 -k AGT - -t 316.812565924 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 122 -k AGT n -t 316.812565924 -s 2 -S COLOR -c yellow -o green h -t 316.812565924 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 122 -k AGT + -t 316.812640924 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 316.812640924 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 316.812640924 -s 2 -S COLOR -c yellow -o green h -t 316.812640924 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 316.812817669 -s 1 -S COLOR -c yellow -o green r -t 316.812817669 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 316.812827669 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 316.812827669 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 316.812827669 -s 1 -S COLOR -c yellow -o green h -t 316.812827669 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 316.812980413 -s 2 -S COLOR -c yellow -o green r -t 316.812980413 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 316.813030413 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 122 -k MAC - -t 316.813030413 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 122 -k MAC n -t 316.813030413 -s 2 -S COLOR -c yellow -o green h -t 316.813030413 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 122 -k MAC n -t 316.815415157 -s 1 -S COLOR -c yellow -o green r -t 316.815415157 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 122 -k MAC + -t 316.815425157 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 316.815425157 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 316.815425157 -s 1 -S COLOR -c yellow -o green h -t 316.815425157 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 316.815577902 -s 2 -S COLOR -c yellow -o green r -t 316.815577902 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 316.815907157 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 316.815907157 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 316.815907157 -s 1 -S COLOR -c yellow -o green h -t 316.815907157 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 316.816083787 -s 3 -S COLOR -c green -o black r -t 316.816083787 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 316.816093787 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 316.816093787 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 316.816093787 -s 3 -S COLOR -c green -o black h -t 316.816093787 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 316.816246416 -s 1 -S COLOR -c yellow -o green r -t 316.816246416 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 316.816296416 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 122 -k MAC - -t 316.816296416 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 122 -k MAC n -t 316.816296416 -s 1 -S COLOR -c yellow -o green h -t 316.816296416 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 122 -k MAC n -t 316.818681045 -s 3 -S COLOR -c green -o black r -t 316.818681045 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 122 -k MAC + -t 316.818691045 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 316.818691045 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 316.818691045 -s 3 -S COLOR -c green -o black h -t 316.818691045 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 316.818706045 -s 3 -S COLOR -c green -o black r -t 316.818706045 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 122 -k AGT n -t 316.818843674 -s 1 -S COLOR -c yellow -o green r -t 316.818843674 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 319.342986510 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 123 -k AGT - -t 319.342986510 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 123 -k AGT n -t 319.342986510 -s 2 -S COLOR -c yellow -o green h -t 319.342986510 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 123 -k AGT + -t 319.343061510 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 319.343061510 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 319.343061510 -s 2 -S COLOR -c yellow -o green h -t 319.343061510 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 319.343238254 -s 1 -S COLOR -c yellow -o green r -t 319.343238254 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 319.343248254 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 319.343248254 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 319.343248254 -s 1 -S COLOR -c yellow -o green h -t 319.343248254 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 319.343400998 -s 2 -S COLOR -c yellow -o green r -t 319.343400998 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 319.343450998 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 123 -k MAC - -t 319.343450998 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 123 -k MAC n -t 319.343450998 -s 2 -S COLOR -c yellow -o green h -t 319.343450998 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 123 -k MAC n -t 319.345835743 -s 1 -S COLOR -c yellow -o green r -t 319.345835743 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 123 -k MAC + -t 319.345845743 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 319.345845743 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 319.345845743 -s 1 -S COLOR -c yellow -o green h -t 319.345845743 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 319.345998487 -s 2 -S COLOR -c yellow -o green r -t 319.345998487 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 319.346347743 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 319.346347743 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 319.346347743 -s 1 -S COLOR -c yellow -o green h -t 319.346347743 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 319.346524372 -s 3 -S COLOR -c green -o black r -t 319.346524372 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 319.346534372 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 319.346534372 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 319.346534372 -s 3 -S COLOR -c green -o black h -t 319.346534372 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 319.346687001 -s 1 -S COLOR -c yellow -o green r -t 319.346687001 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 319.346737001 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 123 -k MAC - -t 319.346737001 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 123 -k MAC n -t 319.346737001 -s 1 -S COLOR -c yellow -o green h -t 319.346737001 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 123 -k MAC n -t 319.349121630 -s 3 -S COLOR -c green -o black r -t 319.349121630 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 123 -k MAC + -t 319.349131630 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 319.349131630 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 319.349131630 -s 3 -S COLOR -c green -o black h -t 319.349131630 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 319.349146630 -s 3 -S COLOR -c green -o black r -t 319.349146630 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 123 -k AGT n -t 319.349284259 -s 1 -S COLOR -c yellow -o green r -t 319.349284259 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 322.177806828 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 124 -k AGT - -t 322.177806828 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 124 -k AGT n -t 322.177806828 -s 2 -S COLOR -c yellow -o green h -t 322.177806828 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 124 -k AGT + -t 322.177881828 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 322.177881828 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 322.177881828 -s 2 -S COLOR -c yellow -o green h -t 322.177881828 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 322.178058572 -s 1 -S COLOR -c yellow -o green r -t 322.178058572 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 322.178068572 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 322.178068572 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 322.178068572 -s 1 -S COLOR -c yellow -o green h -t 322.178068572 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 322.178221316 -s 2 -S COLOR -c yellow -o green r -t 322.178221316 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 322.178271316 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 124 -k MAC - -t 322.178271316 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 124 -k MAC n -t 322.178271316 -s 2 -S COLOR -c yellow -o green h -t 322.178271316 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 124 -k MAC n -t 322.180656061 -s 1 -S COLOR -c yellow -o green r -t 322.180656061 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 124 -k MAC + -t 322.180666061 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 322.180666061 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 322.180666061 -s 1 -S COLOR -c yellow -o green h -t 322.180666061 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 322.180818805 -s 2 -S COLOR -c yellow -o green r -t 322.180818805 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 322.181088061 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 322.181088061 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 322.181088061 -s 1 -S COLOR -c yellow -o green h -t 322.181088061 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 322.181264690 -s 3 -S COLOR -c green -o black r -t 322.181264690 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 322.181274690 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 322.181274690 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 322.181274690 -s 3 -S COLOR -c green -o black h -t 322.181274690 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 322.181427319 -s 1 -S COLOR -c yellow -o green r -t 322.181427319 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 322.181477319 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 124 -k MAC - -t 322.181477319 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 124 -k MAC n -t 322.181477319 -s 1 -S COLOR -c yellow -o green h -t 322.181477319 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 124 -k MAC n -t 322.183861948 -s 3 -S COLOR -c green -o black r -t 322.183861948 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 124 -k MAC + -t 322.183871948 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 322.183871948 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 322.183871948 -s 3 -S COLOR -c green -o black h -t 322.183871948 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 322.183886948 -s 3 -S COLOR -c green -o black r -t 322.183886948 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 124 -k AGT n -t 322.184024577 -s 1 -S COLOR -c yellow -o green r -t 322.184024577 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 323.221489772 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 125 -k AGT - -t 323.221489772 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 125 -k AGT n -t 323.221489772 -s 2 -S COLOR -c yellow -o green h -t 323.221489772 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 125 -k AGT + -t 323.221564772 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 323.221564772 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 323.221564772 -s 2 -S COLOR -c yellow -o green h -t 323.221564772 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 323.221741516 -s 1 -S COLOR -c yellow -o green r -t 323.221741516 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 323.221751516 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 323.221751516 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 323.221751516 -s 1 -S COLOR -c yellow -o green h -t 323.221751516 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 323.221904260 -s 2 -S COLOR -c yellow -o green r -t 323.221904260 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 323.221954260 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 125 -k MAC - -t 323.221954260 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 125 -k MAC n -t 323.221954260 -s 2 -S COLOR -c yellow -o green h -t 323.221954260 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 125 -k MAC n -t 323.224339005 -s 1 -S COLOR -c yellow -o green r -t 323.224339005 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 125 -k MAC + -t 323.224349005 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 323.224349005 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 323.224349005 -s 1 -S COLOR -c yellow -o green h -t 323.224349005 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 323.224501749 -s 2 -S COLOR -c yellow -o green r -t 323.224501749 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 323.225031005 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 323.225031005 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 323.225031005 -s 1 -S COLOR -c yellow -o green h -t 323.225031005 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 323.225207634 -s 3 -S COLOR -c green -o black r -t 323.225207634 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 323.225217634 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 323.225217634 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 323.225217634 -s 3 -S COLOR -c green -o black h -t 323.225217634 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 323.225370263 -s 1 -S COLOR -c yellow -o green r -t 323.225370263 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 323.225420263 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 125 -k MAC - -t 323.225420263 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 125 -k MAC n -t 323.225420263 -s 1 -S COLOR -c yellow -o green h -t 323.225420263 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 125 -k MAC n -t 323.227804892 -s 3 -S COLOR -c green -o black r -t 323.227804892 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 125 -k MAC + -t 323.227814892 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 323.227814892 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 323.227814892 -s 3 -S COLOR -c green -o black h -t 323.227814892 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 323.227829892 -s 3 -S COLOR -c green -o black r -t 323.227829892 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 125 -k AGT n -t 323.227967521 -s 1 -S COLOR -c yellow -o green r -t 323.227967521 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 325.162104219 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 126 -k AGT - -t 325.162104219 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 126 -k AGT n -t 325.162104219 -s 2 -S COLOR -c yellow -o green h -t 325.162104219 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 126 -k AGT + -t 325.162179219 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 325.162179219 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 325.162179219 -s 2 -S COLOR -c yellow -o green h -t 325.162179219 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 325.162355963 -s 1 -S COLOR -c yellow -o green r -t 325.162355963 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 325.162365963 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 325.162365963 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 325.162365963 -s 1 -S COLOR -c yellow -o green h -t 325.162365963 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 325.162518708 -s 2 -S COLOR -c yellow -o green r -t 325.162518708 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 325.162568708 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 126 -k MAC - -t 325.162568708 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 126 -k MAC n -t 325.162568708 -s 2 -S COLOR -c yellow -o green h -t 325.162568708 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 126 -k MAC n -t 325.164953452 -s 1 -S COLOR -c yellow -o green r -t 325.164953452 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 126 -k MAC + -t 325.164963452 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 325.164963452 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 325.164963452 -s 1 -S COLOR -c yellow -o green h -t 325.164963452 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 325.165116196 -s 2 -S COLOR -c yellow -o green r -t 325.165116196 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 325.165245452 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 325.165245452 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 325.165245452 -s 1 -S COLOR -c yellow -o green h -t 325.165245452 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 325.165422081 -s 3 -S COLOR -c green -o black r -t 325.165422081 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 325.165432081 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 325.165432081 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 325.165432081 -s 3 -S COLOR -c green -o black h -t 325.165432081 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 325.165584710 -s 1 -S COLOR -c yellow -o green r -t 325.165584710 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 325.165634710 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 126 -k MAC - -t 325.165634710 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 126 -k MAC n -t 325.165634710 -s 1 -S COLOR -c yellow -o green h -t 325.165634710 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 126 -k MAC n -t 325.168019339 -s 3 -S COLOR -c green -o black r -t 325.168019339 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 126 -k MAC + -t 325.168029339 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 325.168029339 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 325.168029339 -s 3 -S COLOR -c green -o black h -t 325.168029339 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 325.168044339 -s 3 -S COLOR -c green -o black r -t 325.168044339 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 126 -k AGT n -t 325.168181968 -s 1 -S COLOR -c yellow -o green r -t 325.168181968 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 327.268844122 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 127 -k AGT - -t 327.268844122 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 127 -k AGT n -t 327.268844122 -s 2 -S COLOR -c yellow -o green h -t 327.268844122 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 127 -k AGT + -t 327.268919122 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 327.268919122 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 327.268919122 -s 2 -S COLOR -c yellow -o green h -t 327.268919122 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 327.269095867 -s 1 -S COLOR -c yellow -o green r -t 327.269095867 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 327.269105867 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 327.269105867 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 327.269105867 -s 1 -S COLOR -c yellow -o green h -t 327.269105867 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 327.269258611 -s 2 -S COLOR -c yellow -o green r -t 327.269258611 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 327.269308611 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 127 -k MAC - -t 327.269308611 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 127 -k MAC n -t 327.269308611 -s 2 -S COLOR -c yellow -o green h -t 327.269308611 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 127 -k MAC n -t 327.271693355 -s 1 -S COLOR -c yellow -o green r -t 327.271693355 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 127 -k MAC + -t 327.271703355 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 327.271703355 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 327.271703355 -s 1 -S COLOR -c yellow -o green h -t 327.271703355 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 327.271856100 -s 2 -S COLOR -c yellow -o green r -t 327.271856100 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 327.272305355 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 327.272305355 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 327.272305355 -s 1 -S COLOR -c yellow -o green h -t 327.272305355 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 327.272481984 -s 3 -S COLOR -c green -o black r -t 327.272481984 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 327.272491984 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 327.272491984 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 327.272491984 -s 3 -S COLOR -c green -o black h -t 327.272491984 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 327.272644613 -s 1 -S COLOR -c yellow -o green r -t 327.272644613 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 327.272694613 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 127 -k MAC - -t 327.272694613 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 127 -k MAC n -t 327.272694613 -s 1 -S COLOR -c yellow -o green h -t 327.272694613 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 127 -k MAC n -t 327.275079243 -s 3 -S COLOR -c green -o black r -t 327.275079243 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 127 -k MAC + -t 327.275089243 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 327.275089243 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 327.275089243 -s 3 -S COLOR -c green -o black h -t 327.275089243 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 327.275104243 -s 3 -S COLOR -c green -o black r -t 327.275104243 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 127 -k AGT n -t 327.275241872 -s 1 -S COLOR -c yellow -o green r -t 327.275241872 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 329.048655654 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 128 -k AGT - -t 329.048655654 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 128 -k AGT n -t 329.048655654 -s 2 -S COLOR -c yellow -o green h -t 329.048655654 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 128 -k AGT + -t 329.048730654 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 329.048730654 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 329.048730654 -s 2 -S COLOR -c yellow -o green h -t 329.048730654 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 329.048907398 -s 1 -S COLOR -c yellow -o green r -t 329.048907398 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 329.048917398 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 329.048917398 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 329.048917398 -s 1 -S COLOR -c yellow -o green h -t 329.048917398 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 329.049070143 -s 2 -S COLOR -c yellow -o green r -t 329.049070143 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 329.049120143 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 128 -k MAC - -t 329.049120143 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 128 -k MAC n -t 329.049120143 -s 2 -S COLOR -c yellow -o green h -t 329.049120143 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 128 -k MAC n -t 329.051504887 -s 1 -S COLOR -c yellow -o green r -t 329.051504887 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 128 -k MAC + -t 329.051514887 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 329.051514887 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 329.051514887 -s 1 -S COLOR -c yellow -o green h -t 329.051514887 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 329.051667631 -s 2 -S COLOR -c yellow -o green r -t 329.051667631 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 329.051856887 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 329.051856887 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 329.051856887 -s 1 -S COLOR -c yellow -o green h -t 329.051856887 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 329.052033516 -s 3 -S COLOR -c green -o black r -t 329.052033516 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 329.052043516 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 329.052043516 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 329.052043516 -s 3 -S COLOR -c green -o black h -t 329.052043516 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 329.052196145 -s 1 -S COLOR -c yellow -o green r -t 329.052196145 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 329.052246145 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 128 -k MAC - -t 329.052246145 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 128 -k MAC n -t 329.052246145 -s 1 -S COLOR -c yellow -o green h -t 329.052246145 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 128 -k MAC n -t 329.054630774 -s 3 -S COLOR -c green -o black r -t 329.054630774 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 128 -k MAC + -t 329.054640774 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 329.054640774 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 329.054640774 -s 3 -S COLOR -c green -o black h -t 329.054640774 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 329.054655774 -s 3 -S COLOR -c green -o black r -t 329.054655774 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 128 -k AGT n -t 329.054793403 -s 1 -S COLOR -c yellow -o green r -t 329.054793403 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 332.046342495 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 129 -k AGT - -t 332.046342495 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 129 -k AGT n -t 332.046342495 -s 2 -S COLOR -c yellow -o green h -t 332.046342495 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 129 -k AGT + -t 332.046417495 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 332.046417495 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 332.046417495 -s 2 -S COLOR -c yellow -o green h -t 332.046417495 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 332.046594240 -s 1 -S COLOR -c yellow -o green r -t 332.046594240 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 332.046604240 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 332.046604240 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 332.046604240 -s 1 -S COLOR -c yellow -o green h -t 332.046604240 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 332.046756984 -s 2 -S COLOR -c yellow -o green r -t 332.046756984 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 332.046806984 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 129 -k MAC - -t 332.046806984 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 129 -k MAC n -t 332.046806984 -s 2 -S COLOR -c yellow -o green h -t 332.046806984 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 129 -k MAC n -t 332.049191728 -s 1 -S COLOR -c yellow -o green r -t 332.049191728 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 129 -k MAC + -t 332.049201728 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 332.049201728 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 332.049201728 -s 1 -S COLOR -c yellow -o green h -t 332.049201728 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 332.049354473 -s 2 -S COLOR -c yellow -o green r -t 332.049354473 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 332.049803728 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 332.049803728 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 332.049803728 -s 1 -S COLOR -c yellow -o green h -t 332.049803728 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 332.049980357 -s 3 -S COLOR -c green -o black r -t 332.049980357 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 332.049990357 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 332.049990357 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 332.049990357 -s 3 -S COLOR -c green -o black h -t 332.049990357 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 332.050142987 -s 1 -S COLOR -c yellow -o green r -t 332.050142987 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 332.050192987 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 129 -k MAC - -t 332.050192987 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 129 -k MAC n -t 332.050192987 -s 1 -S COLOR -c yellow -o green h -t 332.050192987 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 129 -k MAC n -t 332.052577616 -s 3 -S COLOR -c green -o black r -t 332.052577616 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 129 -k MAC + -t 332.052587616 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 332.052587616 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 332.052587616 -s 3 -S COLOR -c green -o black h -t 332.052587616 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 332.052602616 -s 3 -S COLOR -c green -o black r -t 332.052602616 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 129 -k AGT n -t 332.052740245 -s 1 -S COLOR -c yellow -o green r -t 332.052740245 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 334.426867809 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 130 -k AGT - -t 334.426867809 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 130 -k AGT n -t 334.426867809 -s 2 -S COLOR -c yellow -o green h -t 334.426867809 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 130 -k AGT + -t 334.426942809 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 334.426942809 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 334.426942809 -s 2 -S COLOR -c yellow -o green h -t 334.426942809 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 334.427119554 -s 1 -S COLOR -c yellow -o green r -t 334.427119554 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 334.427129554 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 334.427129554 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 334.427129554 -s 1 -S COLOR -c yellow -o green h -t 334.427129554 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 334.427282298 -s 2 -S COLOR -c yellow -o green r -t 334.427282298 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 334.427332298 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 130 -k MAC - -t 334.427332298 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 130 -k MAC n -t 334.427332298 -s 2 -S COLOR -c yellow -o green h -t 334.427332298 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 130 -k MAC n -t 334.429717042 -s 1 -S COLOR -c yellow -o green r -t 334.429717042 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 130 -k MAC + -t 334.429727042 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 334.429727042 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 334.429727042 -s 1 -S COLOR -c yellow -o green h -t 334.429727042 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 334.429879787 -s 2 -S COLOR -c yellow -o green r -t 334.429879787 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 334.430489042 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 334.430489042 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 334.430489042 -s 1 -S COLOR -c yellow -o green h -t 334.430489042 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 334.430665671 -s 3 -S COLOR -c green -o black r -t 334.430665671 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 334.430675671 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 334.430675671 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 334.430675671 -s 3 -S COLOR -c green -o black h -t 334.430675671 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 334.430828300 -s 1 -S COLOR -c yellow -o green r -t 334.430828300 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 334.430878300 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 130 -k MAC - -t 334.430878300 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 130 -k MAC n -t 334.430878300 -s 1 -S COLOR -c yellow -o green h -t 334.430878300 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 130 -k MAC n -t 334.433262930 -s 3 -S COLOR -c green -o black r -t 334.433262930 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 130 -k MAC + -t 334.433272930 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 334.433272930 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 334.433272930 -s 3 -S COLOR -c green -o black h -t 334.433272930 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 334.433287930 -s 3 -S COLOR -c green -o black r -t 334.433287930 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 130 -k AGT n -t 334.433425559 -s 1 -S COLOR -c yellow -o green r -t 334.433425559 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 337.132218729 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 131 -k AGT - -t 337.132218729 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 131 -k AGT n -t 337.132218729 -s 2 -S COLOR -c yellow -o green h -t 337.132218729 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 131 -k AGT + -t 337.132293729 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 337.132293729 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 337.132293729 -s 2 -S COLOR -c yellow -o green h -t 337.132293729 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 337.132470473 -s 1 -S COLOR -c yellow -o green r -t 337.132470473 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 337.132480473 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 337.132480473 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 337.132480473 -s 1 -S COLOR -c yellow -o green h -t 337.132480473 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 337.132633217 -s 2 -S COLOR -c yellow -o green r -t 337.132633217 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 337.132683217 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 131 -k MAC - -t 337.132683217 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 131 -k MAC n -t 337.132683217 -s 2 -S COLOR -c yellow -o green h -t 337.132683217 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 131 -k MAC n -t 337.135067962 -s 1 -S COLOR -c yellow -o green r -t 337.135067962 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 131 -k MAC + -t 337.135077962 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 337.135077962 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 337.135077962 -s 1 -S COLOR -c yellow -o green h -t 337.135077962 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 337.135230706 -s 2 -S COLOR -c yellow -o green r -t 337.135230706 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 337.135319962 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 337.135319962 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 337.135319962 -s 1 -S COLOR -c yellow -o green h -t 337.135319962 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 337.135496591 -s 3 -S COLOR -c green -o black r -t 337.135496591 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 337.135506591 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 337.135506591 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 337.135506591 -s 3 -S COLOR -c green -o black h -t 337.135506591 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 337.135659220 -s 1 -S COLOR -c yellow -o green r -t 337.135659220 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 337.135709220 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 131 -k MAC - -t 337.135709220 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 131 -k MAC n -t 337.135709220 -s 1 -S COLOR -c yellow -o green h -t 337.135709220 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 131 -k MAC n -t 337.138093849 -s 3 -S COLOR -c green -o black r -t 337.138093849 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 131 -k MAC + -t 337.138103849 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 337.138103849 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 337.138103849 -s 3 -S COLOR -c green -o black h -t 337.138103849 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 337.138118849 -s 3 -S COLOR -c green -o black r -t 337.138118849 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 131 -k AGT n -t 337.138256478 -s 1 -S COLOR -c yellow -o green r -t 337.138256478 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 339.112121190 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 132 -k AGT - -t 339.112121190 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 132 -k AGT n -t 339.112121190 -s 2 -S COLOR -c yellow -o green h -t 339.112121190 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 132 -k AGT + -t 339.112196190 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 339.112196190 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 339.112196190 -s 2 -S COLOR -c yellow -o green h -t 339.112196190 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 339.112372935 -s 1 -S COLOR -c yellow -o green r -t 339.112372935 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 339.112382935 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 339.112382935 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 339.112382935 -s 1 -S COLOR -c yellow -o green h -t 339.112382935 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 339.112535679 -s 2 -S COLOR -c yellow -o green r -t 339.112535679 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 339.112585679 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 132 -k MAC - -t 339.112585679 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 132 -k MAC n -t 339.112585679 -s 2 -S COLOR -c yellow -o green h -t 339.112585679 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 132 -k MAC n -t 339.114970423 -s 1 -S COLOR -c yellow -o green r -t 339.114970423 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 132 -k MAC + -t 339.114980423 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 339.114980423 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 339.114980423 -s 1 -S COLOR -c yellow -o green h -t 339.114980423 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 339.115133167 -s 2 -S COLOR -c yellow -o green r -t 339.115133167 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 339.115742423 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 339.115742423 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 339.115742423 -s 1 -S COLOR -c yellow -o green h -t 339.115742423 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 339.115919052 -s 3 -S COLOR -c green -o black r -t 339.115919052 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 339.115929052 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 339.115929052 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 339.115929052 -s 3 -S COLOR -c green -o black h -t 339.115929052 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 339.116081681 -s 1 -S COLOR -c yellow -o green r -t 339.116081681 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 339.116131681 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 132 -k MAC - -t 339.116131681 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 132 -k MAC n -t 339.116131681 -s 1 -S COLOR -c yellow -o green h -t 339.116131681 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 132 -k MAC n -t 339.118516310 -s 3 -S COLOR -c green -o black r -t 339.118516310 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 132 -k MAC + -t 339.118526310 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 339.118526310 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 339.118526310 -s 3 -S COLOR -c green -o black h -t 339.118526310 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 339.118541310 -s 3 -S COLOR -c green -o black r -t 339.118541310 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 132 -k AGT n -t 339.118678940 -s 1 -S COLOR -c yellow -o green r -t 339.118678940 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 340.863187926 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 133 -k AGT - -t 340.863187926 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 133 -k AGT n -t 340.863187926 -s 2 -S COLOR -c yellow -o green h -t 340.863187926 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 133 -k AGT + -t 340.863262926 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 340.863262926 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 340.863262926 -s 2 -S COLOR -c yellow -o green h -t 340.863262926 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 340.863439670 -s 1 -S COLOR -c yellow -o green r -t 340.863439670 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 340.863449670 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 340.863449670 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 340.863449670 -s 1 -S COLOR -c yellow -o green h -t 340.863449670 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 340.863602414 -s 2 -S COLOR -c yellow -o green r -t 340.863602414 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 340.863652414 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 133 -k MAC - -t 340.863652414 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 133 -k MAC n -t 340.863652414 -s 2 -S COLOR -c yellow -o green h -t 340.863652414 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 133 -k MAC n -t 340.866037158 -s 1 -S COLOR -c yellow -o green r -t 340.866037158 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 133 -k MAC + -t 340.866047158 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 340.866047158 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 340.866047158 -s 1 -S COLOR -c yellow -o green h -t 340.866047158 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 340.866199903 -s 2 -S COLOR -c yellow -o green r -t 340.866199903 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 340.866789158 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 340.866789158 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 340.866789158 -s 1 -S COLOR -c yellow -o green h -t 340.866789158 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 340.866965788 -s 3 -S COLOR -c green -o black r -t 340.866965788 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 340.866975788 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 340.866975788 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 340.866975788 -s 3 -S COLOR -c green -o black h -t 340.866975788 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 340.867128417 -s 1 -S COLOR -c yellow -o green r -t 340.867128417 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 340.867178417 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 133 -k MAC - -t 340.867178417 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 133 -k MAC n -t 340.867178417 -s 1 -S COLOR -c yellow -o green h -t 340.867178417 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 133 -k MAC n -t 340.869563046 -s 3 -S COLOR -c green -o black r -t 340.869563046 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 133 -k MAC + -t 340.869573046 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 340.869573046 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 340.869573046 -s 3 -S COLOR -c green -o black h -t 340.869573046 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 340.869588046 -s 3 -S COLOR -c green -o black r -t 340.869588046 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 133 -k AGT n -t 340.869725675 -s 1 -S COLOR -c yellow -o green r -t 340.869725675 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 342.073818880 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 134 -k AGT - -t 342.073818880 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 134 -k AGT n -t 342.073818880 -s 2 -S COLOR -c yellow -o green h -t 342.073818880 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 134 -k AGT + -t 342.073893880 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 342.073893880 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 342.073893880 -s 2 -S COLOR -c yellow -o green h -t 342.073893880 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 342.074070624 -s 1 -S COLOR -c yellow -o green r -t 342.074070624 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 342.074080624 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 342.074080624 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 342.074080624 -s 1 -S COLOR -c yellow -o green h -t 342.074080624 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 342.074233369 -s 2 -S COLOR -c yellow -o green r -t 342.074233369 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 342.074283369 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 134 -k MAC - -t 342.074283369 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 134 -k MAC n -t 342.074283369 -s 2 -S COLOR -c yellow -o green h -t 342.074283369 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 134 -k MAC n -t 342.076668113 -s 1 -S COLOR -c yellow -o green r -t 342.076668113 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 134 -k MAC + -t 342.076678113 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 342.076678113 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 342.076678113 -s 1 -S COLOR -c yellow -o green h -t 342.076678113 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 342.076830857 -s 2 -S COLOR -c yellow -o green r -t 342.076830857 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 342.077200113 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 342.077200113 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 342.077200113 -s 1 -S COLOR -c yellow -o green h -t 342.077200113 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 342.077376742 -s 3 -S COLOR -c green -o black r -t 342.077376742 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 342.077386742 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 342.077386742 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 342.077386742 -s 3 -S COLOR -c green -o black h -t 342.077386742 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 342.077539371 -s 1 -S COLOR -c yellow -o green r -t 342.077539371 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 342.077589371 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 134 -k MAC - -t 342.077589371 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 134 -k MAC n -t 342.077589371 -s 1 -S COLOR -c yellow -o green h -t 342.077589371 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 134 -k MAC n -t 342.079974000 -s 3 -S COLOR -c green -o black r -t 342.079974000 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 134 -k MAC + -t 342.079984000 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 342.079984000 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 342.079984000 -s 3 -S COLOR -c green -o black h -t 342.079984000 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 342.079999000 -s 3 -S COLOR -c green -o black r -t 342.079999000 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 134 -k AGT n -t 342.080136629 -s 1 -S COLOR -c yellow -o green r -t 342.080136629 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 344.973217899 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 135 -k AGT - -t 344.973217899 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 135 -k AGT n -t 344.973217899 -s 2 -S COLOR -c yellow -o green h -t 344.973217899 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 135 -k AGT + -t 344.973292899 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 344.973292899 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 344.973292899 -s 2 -S COLOR -c yellow -o green h -t 344.973292899 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 344.973469644 -s 1 -S COLOR -c yellow -o green r -t 344.973469644 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 344.973479644 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 344.973479644 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 344.973479644 -s 1 -S COLOR -c yellow -o green h -t 344.973479644 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 344.973632388 -s 2 -S COLOR -c yellow -o green r -t 344.973632388 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 344.973682388 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 135 -k MAC - -t 344.973682388 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 135 -k MAC n -t 344.973682388 -s 2 -S COLOR -c yellow -o green h -t 344.973682388 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 135 -k MAC n -t 344.976067132 -s 1 -S COLOR -c yellow -o green r -t 344.976067132 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 135 -k MAC + -t 344.976077132 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 344.976077132 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 344.976077132 -s 1 -S COLOR -c yellow -o green h -t 344.976077132 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 344.976229877 -s 2 -S COLOR -c yellow -o green r -t 344.976229877 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 344.976699132 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 344.976699132 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 344.976699132 -s 1 -S COLOR -c yellow -o green h -t 344.976699132 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 344.976875762 -s 3 -S COLOR -c green -o black r -t 344.976875762 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 344.976885762 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 344.976885762 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 344.976885762 -s 3 -S COLOR -c green -o black h -t 344.976885762 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 344.977038391 -s 1 -S COLOR -c yellow -o green r -t 344.977038391 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 344.977088391 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 135 -k MAC - -t 344.977088391 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 135 -k MAC n -t 344.977088391 -s 1 -S COLOR -c yellow -o green h -t 344.977088391 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 135 -k MAC n -t 344.979473020 -s 3 -S COLOR -c green -o black r -t 344.979473020 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 135 -k MAC + -t 344.979483020 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 344.979483020 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 344.979483020 -s 3 -S COLOR -c green -o black h -t 344.979483020 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 344.979498020 -s 3 -S COLOR -c green -o black r -t 344.979498020 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 135 -k AGT n -t 344.979635649 -s 1 -S COLOR -c yellow -o green r -t 344.979635649 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 347.862822240 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 136 -k AGT - -t 347.862822240 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 136 -k AGT n -t 347.862822240 -s 2 -S COLOR -c yellow -o green h -t 347.862822240 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 136 -k AGT + -t 347.862897240 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 347.862897240 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 347.862897240 -s 2 -S COLOR -c yellow -o green h -t 347.862897240 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 347.863073984 -s 1 -S COLOR -c yellow -o green r -t 347.863073984 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 347.863083984 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 347.863083984 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 347.863083984 -s 1 -S COLOR -c yellow -o green h -t 347.863083984 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 347.863236728 -s 2 -S COLOR -c yellow -o green r -t 347.863236728 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 347.863286728 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 136 -k MAC - -t 347.863286728 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 136 -k MAC n -t 347.863286728 -s 2 -S COLOR -c yellow -o green h -t 347.863286728 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 136 -k MAC n -t 347.865671473 -s 1 -S COLOR -c yellow -o green r -t 347.865671473 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 136 -k MAC + -t 347.865681473 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 347.865681473 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 347.865681473 -s 1 -S COLOR -c yellow -o green h -t 347.865681473 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 347.865834217 -s 2 -S COLOR -c yellow -o green r -t 347.865834217 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 347.866383473 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 347.866383473 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 347.866383473 -s 1 -S COLOR -c yellow -o green h -t 347.866383473 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 347.866560102 -s 3 -S COLOR -c green -o black r -t 347.866560102 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 347.866570102 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 347.866570102 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 347.866570102 -s 3 -S COLOR -c green -o black h -t 347.866570102 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 347.866722731 -s 1 -S COLOR -c yellow -o green r -t 347.866722731 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 347.866772731 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 136 -k MAC - -t 347.866772731 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 136 -k MAC n -t 347.866772731 -s 1 -S COLOR -c yellow -o green h -t 347.866772731 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 136 -k MAC n -t 347.869157360 -s 3 -S COLOR -c green -o black r -t 347.869157360 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 136 -k MAC + -t 347.869167360 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 347.869167360 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 347.869167360 -s 3 -S COLOR -c green -o black h -t 347.869167360 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 347.869182360 -s 3 -S COLOR -c green -o black r -t 347.869182360 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 136 -k AGT n -t 347.869319989 -s 1 -S COLOR -c yellow -o green r -t 347.869319989 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 350.354048657 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 137 -k AGT - -t 350.354048657 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 137 -k AGT n -t 350.354048657 -s 2 -S COLOR -c yellow -o green h -t 350.354048657 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 137 -k AGT + -t 350.354123657 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 350.354123657 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 350.354123657 -s 2 -S COLOR -c yellow -o green h -t 350.354123657 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 350.354300402 -s 1 -S COLOR -c yellow -o green r -t 350.354300402 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 350.354310402 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 350.354310402 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 350.354310402 -s 1 -S COLOR -c yellow -o green h -t 350.354310402 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 350.354463146 -s 2 -S COLOR -c yellow -o green r -t 350.354463146 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 350.354513146 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 137 -k MAC - -t 350.354513146 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 137 -k MAC n -t 350.354513146 -s 2 -S COLOR -c yellow -o green h -t 350.354513146 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 137 -k MAC n -t 350.356897890 -s 1 -S COLOR -c yellow -o green r -t 350.356897890 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 137 -k MAC + -t 350.356907890 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 350.356907890 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 350.356907890 -s 1 -S COLOR -c yellow -o green h -t 350.356907890 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 350.357060635 -s 2 -S COLOR -c yellow -o green r -t 350.357060635 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 350.357669890 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 350.357669890 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 350.357669890 -s 1 -S COLOR -c yellow -o green h -t 350.357669890 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 350.357846519 -s 3 -S COLOR -c green -o black r -t 350.357846519 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 350.357856519 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 350.357856519 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 350.357856519 -s 3 -S COLOR -c green -o black h -t 350.357856519 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 350.358009148 -s 1 -S COLOR -c yellow -o green r -t 350.358009148 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 350.358059148 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 137 -k MAC - -t 350.358059148 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 137 -k MAC n -t 350.358059148 -s 1 -S COLOR -c yellow -o green h -t 350.358059148 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 137 -k MAC n -t 350.360443778 -s 3 -S COLOR -c green -o black r -t 350.360443778 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 137 -k MAC + -t 350.360453778 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 350.360453778 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 350.360453778 -s 3 -S COLOR -c green -o black h -t 350.360453778 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 350.360468778 -s 3 -S COLOR -c green -o black r -t 350.360468778 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 137 -k AGT n -t 350.360606407 -s 1 -S COLOR -c yellow -o green r -t 350.360606407 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 351.480958795 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 138 -k AGT - -t 351.480958795 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 138 -k AGT n -t 351.480958795 -s 2 -S COLOR -c yellow -o green h -t 351.480958795 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 138 -k AGT + -t 351.481033795 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 351.481033795 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 351.481033795 -s 2 -S COLOR -c yellow -o green h -t 351.481033795 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 351.481210540 -s 1 -S COLOR -c yellow -o green r -t 351.481210540 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 351.481220540 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 351.481220540 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 351.481220540 -s 1 -S COLOR -c yellow -o green h -t 351.481220540 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 351.481373284 -s 2 -S COLOR -c yellow -o green r -t 351.481373284 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 351.481423284 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 138 -k MAC - -t 351.481423284 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 138 -k MAC n -t 351.481423284 -s 2 -S COLOR -c yellow -o green h -t 351.481423284 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 138 -k MAC n -t 351.483808028 -s 1 -S COLOR -c yellow -o green r -t 351.483808028 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 138 -k MAC + -t 351.483818028 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 351.483818028 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 351.483818028 -s 1 -S COLOR -c yellow -o green h -t 351.483818028 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 351.483970773 -s 2 -S COLOR -c yellow -o green r -t 351.483970773 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 351.484620028 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 351.484620028 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 351.484620028 -s 1 -S COLOR -c yellow -o green h -t 351.484620028 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 351.484796657 -s 3 -S COLOR -c green -o black r -t 351.484796657 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 351.484806657 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 351.484806657 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 351.484806657 -s 3 -S COLOR -c green -o black h -t 351.484806657 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 351.484959286 -s 1 -S COLOR -c yellow -o green r -t 351.484959286 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 351.485009286 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 138 -k MAC - -t 351.485009286 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 138 -k MAC n -t 351.485009286 -s 1 -S COLOR -c yellow -o green h -t 351.485009286 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 138 -k MAC n -t 351.487393916 -s 3 -S COLOR -c green -o black r -t 351.487393916 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 138 -k MAC + -t 351.487403916 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 351.487403916 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 351.487403916 -s 3 -S COLOR -c green -o black h -t 351.487403916 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 351.487418916 -s 3 -S COLOR -c green -o black r -t 351.487418916 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 138 -k AGT n -t 351.487556545 -s 1 -S COLOR -c yellow -o green r -t 351.487556545 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 353.441426776 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 139 -k AGT - -t 353.441426776 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 139 -k AGT n -t 353.441426776 -s 2 -S COLOR -c yellow -o green h -t 353.441426776 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 139 -k AGT + -t 353.441501776 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 353.441501776 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 353.441501776 -s 2 -S COLOR -c yellow -o green h -t 353.441501776 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 353.441678520 -s 1 -S COLOR -c yellow -o green r -t 353.441678520 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 353.441688520 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 353.441688520 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 353.441688520 -s 1 -S COLOR -c yellow -o green h -t 353.441688520 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 353.441841265 -s 2 -S COLOR -c yellow -o green r -t 353.441841265 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 353.441891265 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 139 -k MAC - -t 353.441891265 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 139 -k MAC n -t 353.441891265 -s 2 -S COLOR -c yellow -o green h -t 353.441891265 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 139 -k MAC n -t 353.444276009 -s 1 -S COLOR -c yellow -o green r -t 353.444276009 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 139 -k MAC + -t 353.444286009 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 353.444286009 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 353.444286009 -s 1 -S COLOR -c yellow -o green h -t 353.444286009 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 353.444438753 -s 2 -S COLOR -c yellow -o green r -t 353.444438753 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 353.444888009 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 353.444888009 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 353.444888009 -s 1 -S COLOR -c yellow -o green h -t 353.444888009 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 353.445064638 -s 3 -S COLOR -c green -o black r -t 353.445064638 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 353.445074638 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 353.445074638 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 353.445074638 -s 3 -S COLOR -c green -o black h -t 353.445074638 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 353.445227267 -s 1 -S COLOR -c yellow -o green r -t 353.445227267 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 353.445277267 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 139 -k MAC - -t 353.445277267 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 139 -k MAC n -t 353.445277267 -s 1 -S COLOR -c yellow -o green h -t 353.445277267 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 139 -k MAC n -t 353.447661896 -s 3 -S COLOR -c green -o black r -t 353.447661896 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 139 -k MAC + -t 353.447671896 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 353.447671896 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 353.447671896 -s 3 -S COLOR -c green -o black h -t 353.447671896 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 353.447686896 -s 3 -S COLOR -c green -o black r -t 353.447686896 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 139 -k AGT n -t 353.447824525 -s 1 -S COLOR -c yellow -o green r -t 353.447824525 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 355.942225961 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 140 -k AGT - -t 355.942225961 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 140 -k AGT n -t 355.942225961 -s 2 -S COLOR -c yellow -o green h -t 355.942225961 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 140 -k AGT + -t 355.942300961 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 355.942300961 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 355.942300961 -s 2 -S COLOR -c yellow -o green h -t 355.942300961 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 355.942477706 -s 1 -S COLOR -c yellow -o green r -t 355.942477706 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 355.942487706 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 355.942487706 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 355.942487706 -s 1 -S COLOR -c yellow -o green h -t 355.942487706 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 355.942640450 -s 2 -S COLOR -c yellow -o green r -t 355.942640450 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 355.942690450 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 140 -k MAC - -t 355.942690450 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 140 -k MAC n -t 355.942690450 -s 2 -S COLOR -c yellow -o green h -t 355.942690450 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 140 -k MAC n -t 355.945075194 -s 1 -S COLOR -c yellow -o green r -t 355.945075194 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 140 -k MAC + -t 355.945085194 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 355.945085194 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 355.945085194 -s 1 -S COLOR -c yellow -o green h -t 355.945085194 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 355.945237938 -s 2 -S COLOR -c yellow -o green r -t 355.945237938 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 355.945467194 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 355.945467194 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 355.945467194 -s 1 -S COLOR -c yellow -o green h -t 355.945467194 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 355.945643823 -s 3 -S COLOR -c green -o black r -t 355.945643823 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 355.945653823 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 355.945653823 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 355.945653823 -s 3 -S COLOR -c green -o black h -t 355.945653823 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 355.945806452 -s 1 -S COLOR -c yellow -o green r -t 355.945806452 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 355.945856452 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 140 -k MAC - -t 355.945856452 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 140 -k MAC n -t 355.945856452 -s 1 -S COLOR -c yellow -o green h -t 355.945856452 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 140 -k MAC n -t 355.948241081 -s 3 -S COLOR -c green -o black r -t 355.948241081 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 140 -k MAC + -t 355.948251081 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 355.948251081 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 355.948251081 -s 3 -S COLOR -c green -o black h -t 355.948251081 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 355.948266081 -s 3 -S COLOR -c green -o black r -t 355.948266081 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 140 -k AGT n -t 355.948403711 -s 1 -S COLOR -c yellow -o green r -t 355.948403711 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 358.589816275 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 141 -k AGT - -t 358.589816275 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 141 -k AGT n -t 358.589816275 -s 2 -S COLOR -c yellow -o green h -t 358.589816275 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 141 -k AGT + -t 358.589891275 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 358.589891275 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 358.589891275 -s 2 -S COLOR -c yellow -o green h -t 358.589891275 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 358.590068019 -s 1 -S COLOR -c yellow -o green r -t 358.590068019 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 358.590078019 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 358.590078019 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 358.590078019 -s 1 -S COLOR -c yellow -o green h -t 358.590078019 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 358.590230764 -s 2 -S COLOR -c yellow -o green r -t 358.590230764 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 358.590280764 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 141 -k MAC - -t 358.590280764 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 141 -k MAC n -t 358.590280764 -s 2 -S COLOR -c yellow -o green h -t 358.590280764 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 141 -k MAC n -t 358.592665508 -s 1 -S COLOR -c yellow -o green r -t 358.592665508 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 141 -k MAC + -t 358.592675508 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 358.592675508 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 358.592675508 -s 1 -S COLOR -c yellow -o green h -t 358.592675508 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 358.592828252 -s 2 -S COLOR -c yellow -o green r -t 358.592828252 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 358.593317508 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 358.593317508 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 358.593317508 -s 1 -S COLOR -c yellow -o green h -t 358.593317508 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 358.593494137 -s 3 -S COLOR -c yellow -o green r -t 358.593494137 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 358.593504137 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 358.593504137 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 358.593504137 -s 3 -S COLOR -c yellow -o green h -t 358.593504137 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 358.593656766 -s 1 -S COLOR -c yellow -o green r -t 358.593656766 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 358.593706766 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 141 -k MAC - -t 358.593706766 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 141 -k MAC n -t 358.593706766 -s 1 -S COLOR -c yellow -o green h -t 358.593706766 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 141 -k MAC n -t 358.596091395 -s 3 -S COLOR -c yellow -o green r -t 358.596091395 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 141 -k MAC + -t 358.596101395 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 358.596101395 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 358.596101395 -s 3 -S COLOR -c yellow -o green h -t 358.596101395 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 358.596116395 -s 3 -S COLOR -c yellow -o green r -t 358.596116395 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 141 -k AGT n -t 358.596254024 -s 1 -S COLOR -c yellow -o green r -t 358.596254024 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 361.001021838 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 142 -k AGT - -t 361.001021838 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 142 -k AGT n -t 361.001021838 -s 2 -S COLOR -c yellow -o green h -t 361.001021838 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 142 -k AGT + -t 361.001096838 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 361.001096838 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 361.001096838 -s 2 -S COLOR -c yellow -o green h -t 361.001096838 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 361.001273583 -s 1 -S COLOR -c yellow -o green r -t 361.001273583 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 361.001283583 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 361.001283583 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 361.001283583 -s 1 -S COLOR -c yellow -o green h -t 361.001283583 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 361.001436327 -s 2 -S COLOR -c yellow -o green r -t 361.001436327 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 361.001486327 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 142 -k MAC - -t 361.001486327 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 142 -k MAC n -t 361.001486327 -s 2 -S COLOR -c yellow -o green h -t 361.001486327 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 142 -k MAC n -t 361.003871071 -s 1 -S COLOR -c yellow -o green r -t 361.003871071 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 142 -k MAC + -t 361.003881071 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 361.003881071 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 361.003881071 -s 1 -S COLOR -c yellow -o green h -t 361.003881071 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 361.004033816 -s 2 -S COLOR -c yellow -o green r -t 361.004033816 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 361.004323071 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 361.004323071 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 361.004323071 -s 1 -S COLOR -c yellow -o green h -t 361.004323071 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 361.004499700 -s 3 -S COLOR -c yellow -o green r -t 361.004499700 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 361.004509700 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 361.004509700 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 361.004509700 -s 3 -S COLOR -c yellow -o green h -t 361.004509700 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 361.004662330 -s 1 -S COLOR -c yellow -o green r -t 361.004662330 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 361.004712330 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 142 -k MAC - -t 361.004712330 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 142 -k MAC n -t 361.004712330 -s 1 -S COLOR -c yellow -o green h -t 361.004712330 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 142 -k MAC n -t 361.007096959 -s 3 -S COLOR -c yellow -o green r -t 361.007096959 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 142 -k MAC + -t 361.007106959 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 361.007106959 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 361.007106959 -s 3 -S COLOR -c yellow -o green h -t 361.007106959 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 361.007121959 -s 3 -S COLOR -c yellow -o green r -t 361.007121959 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 142 -k AGT n -t 361.007259588 -s 1 -S COLOR -c yellow -o green r -t 361.007259588 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 363.936927035 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 143 -k AGT - -t 363.936927035 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 143 -k AGT n -t 363.936927035 -s 2 -S COLOR -c yellow -o green h -t 363.936927035 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 143 -k AGT + -t 363.937002035 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 363.937002035 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 363.937002035 -s 2 -S COLOR -c yellow -o green h -t 363.937002035 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 363.937178779 -s 1 -S COLOR -c yellow -o green r -t 363.937178779 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 363.937188779 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 363.937188779 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 363.937188779 -s 1 -S COLOR -c yellow -o green h -t 363.937188779 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 363.937341524 -s 2 -S COLOR -c yellow -o green r -t 363.937341524 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 363.937391524 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 143 -k MAC - -t 363.937391524 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 143 -k MAC n -t 363.937391524 -s 2 -S COLOR -c yellow -o green h -t 363.937391524 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 143 -k MAC n -t 363.939776268 -s 1 -S COLOR -c yellow -o green r -t 363.939776268 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 143 -k MAC + -t 363.939786268 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 363.939786268 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 363.939786268 -s 1 -S COLOR -c yellow -o green h -t 363.939786268 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 363.939939012 -s 2 -S COLOR -c yellow -o green r -t 363.939939012 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 363.940328268 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 363.940328268 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 363.940328268 -s 1 -S COLOR -c yellow -o green h -t 363.940328268 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 363.940504897 -s 3 -S COLOR -c yellow -o green r -t 363.940504897 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 363.940514897 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 363.940514897 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 363.940514897 -s 3 -S COLOR -c yellow -o green h -t 363.940514897 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 363.940667526 -s 1 -S COLOR -c yellow -o green r -t 363.940667526 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 363.940717526 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 143 -k MAC - -t 363.940717526 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 143 -k MAC n -t 363.940717526 -s 1 -S COLOR -c yellow -o green h -t 363.940717526 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 143 -k MAC n -t 363.943102155 -s 3 -S COLOR -c yellow -o green r -t 363.943102155 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 143 -k MAC + -t 363.943112155 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 363.943112155 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 363.943112155 -s 3 -S COLOR -c yellow -o green h -t 363.943112155 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 363.943127155 -s 3 -S COLOR -c yellow -o green r -t 363.943127155 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 143 -k AGT n -t 363.943264784 -s 1 -S COLOR -c yellow -o green r -t 363.943264784 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 365.044898275 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 144 -k AGT - -t 365.044898275 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 144 -k AGT n -t 365.044898275 -s 2 -S COLOR -c yellow -o green h -t 365.044898275 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 144 -k AGT + -t 365.044973275 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 365.044973275 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 365.044973275 -s 2 -S COLOR -c yellow -o green h -t 365.044973275 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 365.045150019 -s 1 -S COLOR -c yellow -o green r -t 365.045150019 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 365.045160019 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 365.045160019 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 365.045160019 -s 1 -S COLOR -c yellow -o green h -t 365.045160019 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 365.045312763 -s 2 -S COLOR -c yellow -o green r -t 365.045312763 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 365.045362763 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 144 -k MAC - -t 365.045362763 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 144 -k MAC n -t 365.045362763 -s 2 -S COLOR -c yellow -o green h -t 365.045362763 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 144 -k MAC n -t 365.047747508 -s 1 -S COLOR -c yellow -o green r -t 365.047747508 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 144 -k MAC + -t 365.047757508 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 365.047757508 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 365.047757508 -s 1 -S COLOR -c yellow -o green h -t 365.047757508 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 365.047910252 -s 2 -S COLOR -c yellow -o green r -t 365.047910252 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 365.048059508 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 365.048059508 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 365.048059508 -s 1 -S COLOR -c yellow -o green h -t 365.048059508 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 365.048236137 -s 3 -S COLOR -c yellow -o green r -t 365.048236137 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 365.048246137 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 365.048246137 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 365.048246137 -s 3 -S COLOR -c yellow -o green h -t 365.048246137 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 365.048398766 -s 1 -S COLOR -c yellow -o green r -t 365.048398766 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 365.048448766 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 144 -k MAC - -t 365.048448766 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 144 -k MAC n -t 365.048448766 -s 1 -S COLOR -c yellow -o green h -t 365.048448766 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 144 -k MAC n -t 365.050833395 -s 3 -S COLOR -c yellow -o green r -t 365.050833395 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 144 -k MAC + -t 365.050843395 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 365.050843395 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 365.050843395 -s 3 -S COLOR -c yellow -o green h -t 365.050843395 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 365.050858395 -s 3 -S COLOR -c yellow -o green r -t 365.050858395 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 144 -k AGT n -t 365.050996024 -s 1 -S COLOR -c yellow -o green r -t 365.050996024 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 367.952192772 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 145 -k AGT - -t 367.952192772 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 145 -k AGT n -t 367.952192772 -s 2 -S COLOR -c yellow -o green h -t 367.952192772 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 145 -k AGT + -t 367.952267772 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 367.952267772 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 367.952267772 -s 2 -S COLOR -c yellow -o green h -t 367.952267772 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 367.952444517 -s 1 -S COLOR -c yellow -o green r -t 367.952444517 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 367.952454517 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 367.952454517 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 367.952454517 -s 1 -S COLOR -c yellow -o green h -t 367.952454517 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 367.952607261 -s 2 -S COLOR -c yellow -o green r -t 367.952607261 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 367.952657261 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 145 -k MAC - -t 367.952657261 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 145 -k MAC n -t 367.952657261 -s 2 -S COLOR -c yellow -o green h -t 367.952657261 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 145 -k MAC n -t 367.955042005 -s 1 -S COLOR -c yellow -o green r -t 367.955042005 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 145 -k MAC + -t 367.955052005 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 367.955052005 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 367.955052005 -s 1 -S COLOR -c yellow -o green h -t 367.955052005 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 367.955204750 -s 2 -S COLOR -c yellow -o green r -t 367.955204750 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 367.955394005 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 367.955394005 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 367.955394005 -s 1 -S COLOR -c yellow -o green h -t 367.955394005 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 367.955570635 -s 3 -S COLOR -c yellow -o green r -t 367.955570635 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 367.955580635 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 367.955580635 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 367.955580635 -s 3 -S COLOR -c yellow -o green h -t 367.955580635 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 367.955733264 -s 1 -S COLOR -c yellow -o green r -t 367.955733264 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 367.955783264 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 145 -k MAC - -t 367.955783264 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 145 -k MAC n -t 367.955783264 -s 1 -S COLOR -c yellow -o green h -t 367.955783264 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 145 -k MAC n -t 367.958167893 -s 3 -S COLOR -c yellow -o green r -t 367.958167893 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 145 -k MAC + -t 367.958177893 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 367.958177893 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 367.958177893 -s 3 -S COLOR -c yellow -o green h -t 367.958177893 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 367.958192893 -s 3 -S COLOR -c yellow -o green r -t 367.958192893 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 145 -k AGT n -t 367.958330522 -s 1 -S COLOR -c yellow -o green r -t 367.958330522 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 370.406549158 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 146 -k AGT - -t 370.406549158 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 146 -k AGT n -t 370.406549158 -s 2 -S COLOR -c yellow -o green h -t 370.406549158 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 146 -k AGT + -t 370.406624158 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 370.406624158 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 370.406624158 -s 2 -S COLOR -c yellow -o green h -t 370.406624158 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 370.406800903 -s 1 -S COLOR -c yellow -o green r -t 370.406800903 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 370.406810903 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 370.406810903 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 370.406810903 -s 1 -S COLOR -c yellow -o green h -t 370.406810903 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 370.406963647 -s 2 -S COLOR -c yellow -o green r -t 370.406963647 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 370.407013647 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 146 -k MAC - -t 370.407013647 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 146 -k MAC n -t 370.407013647 -s 2 -S COLOR -c yellow -o green h -t 370.407013647 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 146 -k MAC n -t 370.409398391 -s 1 -S COLOR -c yellow -o green r -t 370.409398391 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 146 -k MAC + -t 370.409408391 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 370.409408391 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 370.409408391 -s 1 -S COLOR -c yellow -o green h -t 370.409408391 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 370.409561136 -s 2 -S COLOR -c yellow -o green r -t 370.409561136 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 370.410170391 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 370.410170391 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 370.410170391 -s 1 -S COLOR -c yellow -o green h -t 370.410170391 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 370.410347021 -s 3 -S COLOR -c yellow -o green r -t 370.410347021 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 370.410357021 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 370.410357021 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 370.410357021 -s 3 -S COLOR -c yellow -o green h -t 370.410357021 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 370.410509650 -s 1 -S COLOR -c yellow -o green r -t 370.410509650 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 370.410559650 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 146 -k MAC - -t 370.410559650 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 146 -k MAC n -t 370.410559650 -s 1 -S COLOR -c yellow -o green h -t 370.410559650 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 146 -k MAC n -t 370.412944279 -s 3 -S COLOR -c yellow -o green r -t 370.412944279 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 146 -k MAC + -t 370.412954279 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 370.412954279 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 370.412954279 -s 3 -S COLOR -c yellow -o green h -t 370.412954279 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 370.412969279 -s 3 -S COLOR -c yellow -o green r -t 370.412969279 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 146 -k AGT n -t 370.413106908 -s 1 -S COLOR -c yellow -o green r -t 370.413106908 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 372.790785650 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 147 -k AGT - -t 372.790785650 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 147 -k AGT n -t 372.790785650 -s 2 -S COLOR -c yellow -o green h -t 372.790785650 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 147 -k AGT + -t 372.790860650 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 372.790860650 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 372.790860650 -s 2 -S COLOR -c yellow -o green h -t 372.790860650 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 372.791037395 -s 1 -S COLOR -c yellow -o green r -t 372.791037395 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 372.791047395 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 372.791047395 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 372.791047395 -s 1 -S COLOR -c yellow -o green h -t 372.791047395 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 372.791200139 -s 2 -S COLOR -c yellow -o green r -t 372.791200139 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 372.791250139 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 147 -k MAC - -t 372.791250139 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 147 -k MAC n -t 372.791250139 -s 2 -S COLOR -c yellow -o green h -t 372.791250139 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 147 -k MAC n -t 372.793634883 -s 1 -S COLOR -c yellow -o green r -t 372.793634883 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 147 -k MAC + -t 372.793644883 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 372.793644883 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 372.793644883 -s 1 -S COLOR -c yellow -o green h -t 372.793644883 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 372.793797628 -s 2 -S COLOR -c yellow -o green r -t 372.793797628 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 372.794046883 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 372.794046883 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 372.794046883 -s 1 -S COLOR -c yellow -o green h -t 372.794046883 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 372.794223512 -s 3 -S COLOR -c yellow -o green r -t 372.794223512 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 372.794233512 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 372.794233512 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 372.794233512 -s 3 -S COLOR -c yellow -o green h -t 372.794233512 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 372.794386141 -s 1 -S COLOR -c yellow -o green r -t 372.794386141 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 372.794436141 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 147 -k MAC - -t 372.794436141 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 147 -k MAC n -t 372.794436141 -s 1 -S COLOR -c yellow -o green h -t 372.794436141 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 147 -k MAC n -t 372.796820771 -s 3 -S COLOR -c yellow -o green r -t 372.796820771 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 147 -k MAC + -t 372.796830771 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 372.796830771 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 372.796830771 -s 3 -S COLOR -c yellow -o green h -t 372.796830771 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 372.796845771 -s 3 -S COLOR -c yellow -o green r -t 372.796845771 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 147 -k AGT n -t 372.796983400 -s 1 -S COLOR -c yellow -o green r -t 372.796983400 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 374.053399530 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 148 -k AGT - -t 374.053399530 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 148 -k AGT n -t 374.053399530 -s 2 -S COLOR -c yellow -o green h -t 374.053399530 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 148 -k AGT + -t 374.053474530 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 374.053474530 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 374.053474530 -s 2 -S COLOR -c yellow -o green h -t 374.053474530 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 374.053651274 -s 1 -S COLOR -c yellow -o green r -t 374.053651274 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 374.053661274 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 374.053661274 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 374.053661274 -s 1 -S COLOR -c yellow -o green h -t 374.053661274 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 374.053814019 -s 2 -S COLOR -c yellow -o green r -t 374.053814019 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 374.053864019 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 148 -k MAC - -t 374.053864019 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 148 -k MAC n -t 374.053864019 -s 2 -S COLOR -c yellow -o green h -t 374.053864019 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 148 -k MAC n -t 374.056248763 -s 1 -S COLOR -c yellow -o green r -t 374.056248763 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 148 -k MAC + -t 374.056258763 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 374.056258763 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 374.056258763 -s 1 -S COLOR -c yellow -o green h -t 374.056258763 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 374.056411507 -s 2 -S COLOR -c yellow -o green r -t 374.056411507 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 374.056580763 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 374.056580763 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 374.056580763 -s 1 -S COLOR -c yellow -o green h -t 374.056580763 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 374.056757392 -s 3 -S COLOR -c yellow -o green r -t 374.056757392 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 374.056767392 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 374.056767392 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 374.056767392 -s 3 -S COLOR -c yellow -o green h -t 374.056767392 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 374.056920021 -s 1 -S COLOR -c yellow -o green r -t 374.056920021 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 374.056970021 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 148 -k MAC - -t 374.056970021 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 148 -k MAC n -t 374.056970021 -s 1 -S COLOR -c yellow -o green h -t 374.056970021 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 148 -k MAC n -t 374.059354650 -s 3 -S COLOR -c yellow -o green r -t 374.059354650 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 148 -k MAC + -t 374.059364650 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 374.059364650 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 374.059364650 -s 3 -S COLOR -c yellow -o green h -t 374.059364650 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 374.059379650 -s 3 -S COLOR -c yellow -o green r -t 374.059379650 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 148 -k AGT n -t 374.059517279 -s 1 -S COLOR -c yellow -o green r -t 374.059517279 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 376.099551479 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 149 -k AGT - -t 376.099551479 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 149 -k AGT n -t 376.099551479 -s 2 -S COLOR -c yellow -o green h -t 376.099551479 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 149 -k AGT + -t 376.099626479 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 376.099626479 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 376.099626479 -s 2 -S COLOR -c yellow -o green h -t 376.099626479 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 376.099803223 -s 1 -S COLOR -c yellow -o green r -t 376.099803223 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 376.099813223 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 376.099813223 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 376.099813223 -s 1 -S COLOR -c yellow -o green h -t 376.099813223 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 376.099965967 -s 2 -S COLOR -c yellow -o green r -t 376.099965967 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 376.100015967 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 149 -k MAC - -t 376.100015967 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 149 -k MAC n -t 376.100015967 -s 2 -S COLOR -c yellow -o green h -t 376.100015967 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 149 -k MAC n -t 376.102400712 -s 1 -S COLOR -c yellow -o green r -t 376.102400712 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 149 -k MAC + -t 376.102410712 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 376.102410712 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 376.102410712 -s 1 -S COLOR -c yellow -o green h -t 376.102410712 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 376.102563456 -s 2 -S COLOR -c yellow -o green r -t 376.102563456 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 376.103172712 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 376.103172712 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 376.103172712 -s 1 -S COLOR -c yellow -o green h -t 376.103172712 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 376.103349341 -s 3 -S COLOR -c yellow -o green r -t 376.103349341 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 376.103359341 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 376.103359341 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 376.103359341 -s 3 -S COLOR -c yellow -o green h -t 376.103359341 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 376.103511970 -s 1 -S COLOR -c yellow -o green r -t 376.103511970 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 376.103561970 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 149 -k MAC - -t 376.103561970 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 149 -k MAC n -t 376.103561970 -s 1 -S COLOR -c yellow -o green h -t 376.103561970 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 149 -k MAC n -t 376.105946599 -s 3 -S COLOR -c yellow -o green r -t 376.105946599 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 149 -k MAC + -t 376.105956599 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 376.105956599 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 376.105956599 -s 3 -S COLOR -c yellow -o green h -t 376.105956599 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 376.105971599 -s 3 -S COLOR -c yellow -o green r -t 376.105971599 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 149 -k AGT n -t 376.106109228 -s 1 -S COLOR -c yellow -o green r -t 376.106109228 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 378.833895544 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 150 -k AGT - -t 378.833895544 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 150 -k AGT n -t 378.833895544 -s 2 -S COLOR -c yellow -o green h -t 378.833895544 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 150 -k AGT + -t 378.833970544 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 378.833970544 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 378.833970544 -s 2 -S COLOR -c yellow -o green h -t 378.833970544 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 378.834147289 -s 1 -S COLOR -c yellow -o green r -t 378.834147289 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 378.834157289 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 378.834157289 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 378.834157289 -s 1 -S COLOR -c yellow -o green h -t 378.834157289 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 378.834310033 -s 2 -S COLOR -c yellow -o green r -t 378.834310033 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 378.834360033 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 150 -k MAC - -t 378.834360033 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 150 -k MAC n -t 378.834360033 -s 2 -S COLOR -c yellow -o green h -t 378.834360033 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 150 -k MAC n -t 378.836744777 -s 1 -S COLOR -c yellow -o green r -t 378.836744777 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 150 -k MAC + -t 378.836754777 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 378.836754777 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 378.836754777 -s 1 -S COLOR -c yellow -o green h -t 378.836754777 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 378.836907522 -s 2 -S COLOR -c yellow -o green r -t 378.836907522 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 378.837116777 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 378.837116777 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 378.837116777 -s 1 -S COLOR -c yellow -o green h -t 378.837116777 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 378.837293407 -s 3 -S COLOR -c yellow -o green r -t 378.837293407 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 378.837303407 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 378.837303407 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 378.837303407 -s 3 -S COLOR -c yellow -o green h -t 378.837303407 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 378.837456036 -s 1 -S COLOR -c yellow -o green r -t 378.837456036 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 378.837506036 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 150 -k MAC - -t 378.837506036 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 150 -k MAC n -t 378.837506036 -s 1 -S COLOR -c yellow -o green h -t 378.837506036 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 150 -k MAC n -t 378.839890665 -s 3 -S COLOR -c yellow -o green r -t 378.839890665 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 150 -k MAC + -t 378.839900665 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 378.839900665 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 378.839900665 -s 3 -S COLOR -c yellow -o green h -t 378.839900665 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 378.839915665 -s 3 -S COLOR -c yellow -o green r -t 378.839915665 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 150 -k AGT n -t 378.840053294 -s 1 -S COLOR -c yellow -o green r -t 378.840053294 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 381.439124136 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 151 -k AGT - -t 381.439124136 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 151 -k AGT n -t 381.439124136 -s 2 -S COLOR -c yellow -o green h -t 381.439124136 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 151 -k AGT + -t 381.439199136 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 381.439199136 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 381.439199136 -s 2 -S COLOR -c yellow -o green h -t 381.439199136 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 381.439375880 -s 1 -S COLOR -c yellow -o green r -t 381.439375880 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 381.439385880 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 381.439385880 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 381.439385880 -s 1 -S COLOR -c yellow -o green h -t 381.439385880 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 381.439538625 -s 2 -S COLOR -c yellow -o green r -t 381.439538625 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 381.439588625 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 151 -k MAC - -t 381.439588625 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 151 -k MAC n -t 381.439588625 -s 2 -S COLOR -c yellow -o green h -t 381.439588625 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 151 -k MAC n -t 381.441973369 -s 1 -S COLOR -c yellow -o green r -t 381.441973369 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 151 -k MAC + -t 381.441983369 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 381.441983369 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 381.441983369 -s 1 -S COLOR -c yellow -o green h -t 381.441983369 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 381.442136113 -s 2 -S COLOR -c yellow -o green r -t 381.442136113 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 381.442265369 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 381.442265369 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 381.442265369 -s 1 -S COLOR -c yellow -o green h -t 381.442265369 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 381.442441998 -s 3 -S COLOR -c yellow -o green r -t 381.442441998 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 381.442451998 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 381.442451998 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 381.442451998 -s 3 -S COLOR -c yellow -o green h -t 381.442451998 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 381.442604627 -s 1 -S COLOR -c yellow -o green r -t 381.442604627 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 381.442654627 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 151 -k MAC - -t 381.442654627 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 151 -k MAC n -t 381.442654627 -s 1 -S COLOR -c yellow -o green h -t 381.442654627 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 151 -k MAC n -t 381.445039256 -s 3 -S COLOR -c yellow -o green r -t 381.445039256 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 151 -k MAC + -t 381.445049256 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 381.445049256 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 381.445049256 -s 3 -S COLOR -c yellow -o green h -t 381.445049256 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 381.445064256 -s 3 -S COLOR -c yellow -o green r -t 381.445064256 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 151 -k AGT n -t 381.445201885 -s 1 -S COLOR -c yellow -o green r -t 381.445201885 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 384.369375775 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 152 -k AGT - -t 384.369375775 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 152 -k AGT n -t 384.369375775 -s 2 -S COLOR -c yellow -o green h -t 384.369375775 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 152 -k AGT + -t 384.369450775 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 384.369450775 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 384.369450775 -s 2 -S COLOR -c yellow -o green h -t 384.369450775 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 384.369627519 -s 1 -S COLOR -c yellow -o green r -t 384.369627519 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 384.369637519 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 384.369637519 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 384.369637519 -s 1 -S COLOR -c yellow -o green h -t 384.369637519 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 384.369790264 -s 2 -S COLOR -c yellow -o green r -t 384.369790264 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 384.369840264 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 152 -k MAC - -t 384.369840264 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 152 -k MAC n -t 384.369840264 -s 2 -S COLOR -c yellow -o green h -t 384.369840264 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 152 -k MAC n -t 384.372225008 -s 1 -S COLOR -c yellow -o green r -t 384.372225008 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 152 -k MAC + -t 384.372235008 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 384.372235008 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 384.372235008 -s 1 -S COLOR -c yellow -o green h -t 384.372235008 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 384.372387752 -s 2 -S COLOR -c yellow -o green r -t 384.372387752 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 384.372977008 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 384.372977008 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 384.372977008 -s 1 -S COLOR -c yellow -o green h -t 384.372977008 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 384.373153637 -s 3 -S COLOR -c yellow -o green r -t 384.373153637 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 384.373163637 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 384.373163637 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 384.373163637 -s 3 -S COLOR -c yellow -o green h -t 384.373163637 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 384.373316266 -s 1 -S COLOR -c yellow -o green r -t 384.373316266 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 384.373366266 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 152 -k MAC - -t 384.373366266 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 152 -k MAC n -t 384.373366266 -s 1 -S COLOR -c yellow -o green h -t 384.373366266 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 152 -k MAC n -t 384.375750895 -s 3 -S COLOR -c yellow -o green r -t 384.375750895 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 152 -k MAC + -t 384.375760895 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 384.375760895 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 384.375760895 -s 3 -S COLOR -c yellow -o green h -t 384.375760895 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 384.375775895 -s 3 -S COLOR -c yellow -o green r -t 384.375775895 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 152 -k AGT n -t 384.375913524 -s 1 -S COLOR -c yellow -o green r -t 384.375913524 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 386.603572340 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 153 -k AGT - -t 386.603572340 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 153 -k AGT n -t 386.603572340 -s 2 -S COLOR -c yellow -o green h -t 386.603572340 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 153 -k AGT + -t 386.603647340 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 386.603647340 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 386.603647340 -s 2 -S COLOR -c yellow -o green h -t 386.603647340 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 386.603824084 -s 1 -S COLOR -c yellow -o green r -t 386.603824084 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 386.603834084 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 386.603834084 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 386.603834084 -s 1 -S COLOR -c yellow -o green h -t 386.603834084 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 386.603986828 -s 2 -S COLOR -c yellow -o green r -t 386.603986828 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 386.604036828 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 153 -k MAC - -t 386.604036828 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 153 -k MAC n -t 386.604036828 -s 2 -S COLOR -c yellow -o green h -t 386.604036828 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 153 -k MAC n -t 386.606421573 -s 1 -S COLOR -c yellow -o green r -t 386.606421573 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 153 -k MAC + -t 386.606431573 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 386.606431573 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 386.606431573 -s 1 -S COLOR -c yellow -o green h -t 386.606431573 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 386.606584317 -s 2 -S COLOR -c yellow -o green r -t 386.606584317 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 386.607233573 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 386.607233573 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 386.607233573 -s 1 -S COLOR -c yellow -o green h -t 386.607233573 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 386.607410202 -s 3 -S COLOR -c yellow -o green r -t 386.607410202 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 386.607420202 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 386.607420202 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 386.607420202 -s 3 -S COLOR -c yellow -o green h -t 386.607420202 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 386.607572831 -s 1 -S COLOR -c yellow -o green r -t 386.607572831 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 386.607622831 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 153 -k MAC - -t 386.607622831 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 153 -k MAC n -t 386.607622831 -s 1 -S COLOR -c yellow -o green h -t 386.607622831 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 153 -k MAC n -t 386.610007460 -s 3 -S COLOR -c yellow -o green r -t 386.610007460 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 153 -k MAC + -t 386.610017460 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 386.610017460 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 386.610017460 -s 3 -S COLOR -c yellow -o green h -t 386.610017460 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 386.610032460 -s 3 -S COLOR -c yellow -o green r -t 386.610032460 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 153 -k AGT n -t 386.610170089 -s 1 -S COLOR -c yellow -o green r -t 386.610170089 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 388.299271021 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 154 -k AGT - -t 388.299271021 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 154 -k AGT n -t 388.299271021 -s 2 -S COLOR -c yellow -o green h -t 388.299271021 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 154 -k AGT + -t 388.299346021 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 388.299346021 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 388.299346021 -s 2 -S COLOR -c yellow -o green h -t 388.299346021 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 388.299522766 -s 1 -S COLOR -c yellow -o green r -t 388.299522766 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 388.299532766 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 388.299532766 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 388.299532766 -s 1 -S COLOR -c yellow -o green h -t 388.299532766 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 388.299685510 -s 2 -S COLOR -c yellow -o green r -t 388.299685510 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 388.299735510 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 154 -k MAC - -t 388.299735510 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 154 -k MAC n -t 388.299735510 -s 2 -S COLOR -c yellow -o green h -t 388.299735510 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 154 -k MAC n -t 388.302120254 -s 1 -S COLOR -c yellow -o green r -t 388.302120254 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 154 -k MAC + -t 388.302130254 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 388.302130254 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 388.302130254 -s 1 -S COLOR -c yellow -o green h -t 388.302130254 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 388.302282999 -s 2 -S COLOR -c yellow -o green r -t 388.302282999 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 388.302792254 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 388.302792254 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 388.302792254 -s 1 -S COLOR -c yellow -o green h -t 388.302792254 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 388.302968883 -s 3 -S COLOR -c yellow -o green r -t 388.302968883 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 388.302978883 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 388.302978883 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 388.302978883 -s 3 -S COLOR -c yellow -o green h -t 388.302978883 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 388.303131513 -s 1 -S COLOR -c yellow -o green r -t 388.303131513 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 388.303181513 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 154 -k MAC - -t 388.303181513 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 154 -k MAC n -t 388.303181513 -s 1 -S COLOR -c yellow -o green h -t 388.303181513 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 154 -k MAC n -t 388.305566142 -s 3 -S COLOR -c yellow -o green r -t 388.305566142 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 154 -k MAC + -t 388.305576142 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 388.305576142 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 388.305576142 -s 3 -S COLOR -c yellow -o green h -t 388.305576142 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 388.305591142 -s 3 -S COLOR -c yellow -o green r -t 388.305591142 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 154 -k AGT n -t 388.305728771 -s 1 -S COLOR -c yellow -o green r -t 388.305728771 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 390.947667267 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 155 -k AGT - -t 390.947667267 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 155 -k AGT n -t 390.947667267 -s 2 -S COLOR -c yellow -o green h -t 390.947667267 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 155 -k AGT + -t 390.947742267 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 390.947742267 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 390.947742267 -s 2 -S COLOR -c yellow -o green h -t 390.947742267 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 390.947919012 -s 1 -S COLOR -c yellow -o green r -t 390.947919012 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 390.947929012 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 390.947929012 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 390.947929012 -s 1 -S COLOR -c yellow -o green h -t 390.947929012 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 390.948081756 -s 2 -S COLOR -c yellow -o green r -t 390.948081756 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 390.948131756 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 155 -k MAC - -t 390.948131756 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 155 -k MAC n -t 390.948131756 -s 2 -S COLOR -c yellow -o green h -t 390.948131756 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 155 -k MAC n -t 390.950516500 -s 1 -S COLOR -c yellow -o green r -t 390.950516500 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 155 -k MAC + -t 390.950526500 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 390.950526500 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 390.950526500 -s 1 -S COLOR -c yellow -o green h -t 390.950526500 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 390.950679245 -s 2 -S COLOR -c yellow -o green r -t 390.950679245 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 390.950828500 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 390.950828500 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 390.950828500 -s 1 -S COLOR -c yellow -o green h -t 390.950828500 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 390.951005129 -s 3 -S COLOR -c yellow -o green r -t 390.951005129 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 390.951015129 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 390.951015129 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 390.951015129 -s 3 -S COLOR -c yellow -o green h -t 390.951015129 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 390.951167758 -s 1 -S COLOR -c yellow -o green r -t 390.951167758 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 390.951217758 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 155 -k MAC - -t 390.951217758 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 155 -k MAC n -t 390.951217758 -s 1 -S COLOR -c yellow -o green h -t 390.951217758 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 155 -k MAC n -t 390.953602388 -s 3 -S COLOR -c yellow -o green r -t 390.953602388 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 155 -k MAC + -t 390.953612388 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 390.953612388 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 390.953612388 -s 3 -S COLOR -c yellow -o green h -t 390.953612388 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 390.953627388 -s 3 -S COLOR -c yellow -o green r -t 390.953627388 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 155 -k AGT n -t 390.953765017 -s 1 -S COLOR -c yellow -o green r -t 390.953765017 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 392.904508151 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 156 -k AGT - -t 392.904508151 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 156 -k AGT n -t 392.904508151 -s 2 -S COLOR -c yellow -o green h -t 392.904508151 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 156 -k AGT + -t 392.904583151 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 392.904583151 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 392.904583151 -s 2 -S COLOR -c yellow -o green h -t 392.904583151 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 392.904759895 -s 1 -S COLOR -c yellow -o green r -t 392.904759895 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 392.904769895 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 392.904769895 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 392.904769895 -s 1 -S COLOR -c yellow -o green h -t 392.904769895 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 392.904922639 -s 2 -S COLOR -c yellow -o green r -t 392.904922639 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 392.904972639 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 156 -k MAC - -t 392.904972639 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 156 -k MAC n -t 392.904972639 -s 2 -S COLOR -c yellow -o green h -t 392.904972639 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 156 -k MAC n -t 392.907357384 -s 1 -S COLOR -c yellow -o green r -t 392.907357384 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 156 -k MAC + -t 392.907367384 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 392.907367384 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 392.907367384 -s 1 -S COLOR -c yellow -o green h -t 392.907367384 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 392.907520128 -s 2 -S COLOR -c yellow -o green r -t 392.907520128 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 392.907849384 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 392.907849384 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 392.907849384 -s 1 -S COLOR -c yellow -o green h -t 392.907849384 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 392.908026013 -s 3 -S COLOR -c yellow -o green r -t 392.908026013 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 392.908036013 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 392.908036013 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 392.908036013 -s 3 -S COLOR -c yellow -o green h -t 392.908036013 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 392.908188642 -s 1 -S COLOR -c yellow -o green r -t 392.908188642 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 392.908238642 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 156 -k MAC - -t 392.908238642 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 156 -k MAC n -t 392.908238642 -s 1 -S COLOR -c yellow -o green h -t 392.908238642 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 156 -k MAC n -t 392.910623271 -s 3 -S COLOR -c yellow -o green r -t 392.910623271 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 156 -k MAC + -t 392.910633271 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 392.910633271 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 392.910633271 -s 3 -S COLOR -c yellow -o green h -t 392.910633271 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 392.910648271 -s 3 -S COLOR -c yellow -o green r -t 392.910648271 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 156 -k AGT n -t 392.910785900 -s 1 -S COLOR -c yellow -o green r -t 392.910785900 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 394.508148634 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 157 -k AGT - -t 394.508148634 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 157 -k AGT n -t 394.508148634 -s 2 -S COLOR -c yellow -o green h -t 394.508148634 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 157 -k AGT + -t 394.508223634 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 394.508223634 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 394.508223634 -s 2 -S COLOR -c yellow -o green h -t 394.508223634 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 394.508400378 -s 1 -S COLOR -c yellow -o green r -t 394.508400378 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 394.508410378 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 394.508410378 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 394.508410378 -s 1 -S COLOR -c yellow -o green h -t 394.508410378 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 394.508563122 -s 2 -S COLOR -c yellow -o green r -t 394.508563122 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 394.508613122 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 157 -k MAC - -t 394.508613122 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 157 -k MAC n -t 394.508613122 -s 2 -S COLOR -c yellow -o green h -t 394.508613122 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 157 -k MAC n -t 394.510997867 -s 1 -S COLOR -c yellow -o green r -t 394.510997867 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 157 -k MAC + -t 394.511007867 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 394.511007867 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 394.511007867 -s 1 -S COLOR -c yellow -o green h -t 394.511007867 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 394.511160611 -s 2 -S COLOR -c yellow -o green r -t 394.511160611 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 394.511349867 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 394.511349867 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 394.511349867 -s 1 -S COLOR -c yellow -o green h -t 394.511349867 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 394.511526496 -s 3 -S COLOR -c yellow -o green r -t 394.511526496 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 394.511536496 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 394.511536496 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 394.511536496 -s 3 -S COLOR -c yellow -o green h -t 394.511536496 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 394.511689125 -s 1 -S COLOR -c yellow -o green r -t 394.511689125 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 394.511739125 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 157 -k MAC - -t 394.511739125 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 157 -k MAC n -t 394.511739125 -s 1 -S COLOR -c yellow -o green h -t 394.511739125 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 157 -k MAC n -t 394.514123754 -s 3 -S COLOR -c yellow -o green r -t 394.514123754 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 157 -k MAC + -t 394.514133754 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 394.514133754 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 394.514133754 -s 3 -S COLOR -c yellow -o green h -t 394.514133754 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 394.514148754 -s 3 -S COLOR -c yellow -o green r -t 394.514148754 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 157 -k AGT n -t 394.514286383 -s 1 -S COLOR -c yellow -o green r -t 394.514286383 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 396.636607670 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 158 -k AGT - -t 396.636607670 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 158 -k AGT n -t 396.636607670 -s 2 -S COLOR -c yellow -o green h -t 396.636607670 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 158 -k AGT + -t 396.636682670 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 396.636682670 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 396.636682670 -s 2 -S COLOR -c yellow -o green h -t 396.636682670 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 396.636859415 -s 1 -S COLOR -c yellow -o green r -t 396.636859415 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 396.636869415 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 396.636869415 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 396.636869415 -s 1 -S COLOR -c yellow -o green h -t 396.636869415 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 396.637022159 -s 2 -S COLOR -c yellow -o green r -t 396.637022159 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 396.637072159 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 158 -k MAC - -t 396.637072159 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 158 -k MAC n -t 396.637072159 -s 2 -S COLOR -c yellow -o green h -t 396.637072159 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 158 -k MAC n -t 396.639456903 -s 1 -S COLOR -c red -o yellow r -t 396.639456903 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 158 -k MAC + -t 396.639466903 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 396.639466903 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 396.639466903 -s 1 -S COLOR -c red -o yellow h -t 396.639466903 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 396.639619648 -s 2 -S COLOR -c yellow -o green r -t 396.639619648 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 396.639688903 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 396.639688903 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 396.639688903 -s 1 -S COLOR -c red -o yellow h -t 396.639688903 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 396.639865533 -s 3 -S COLOR -c yellow -o green r -t 396.639865533 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 396.639875533 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 396.639875533 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 396.639875533 -s 3 -S COLOR -c yellow -o green h -t 396.639875533 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 396.640028162 -s 1 -S COLOR -c red -o yellow r -t 396.640028162 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 396.640078162 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 158 -k MAC - -t 396.640078162 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 158 -k MAC n -t 396.640078162 -s 1 -S COLOR -c red -o yellow h -t 396.640078162 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 158 -k MAC n -t 396.642462791 -s 3 -S COLOR -c yellow -o green r -t 396.642462791 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 158 -k MAC + -t 396.642472791 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 396.642472791 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 396.642472791 -s 3 -S COLOR -c yellow -o green h -t 396.642472791 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 396.642487791 -s 3 -S COLOR -c yellow -o green r -t 396.642487791 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 158 -k AGT n -t 396.642625420 -s 1 -S COLOR -c red -o yellow r -t 396.642625420 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 399.289501322 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 159 -k AGT - -t 399.289501322 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 159 -k AGT n -t 399.289501322 -s 2 -S COLOR -c yellow -o green h -t 399.289501322 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 159 -k AGT + -t 399.289576322 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 399.289576322 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 399.289576322 -s 2 -S COLOR -c yellow -o green h -t 399.289576322 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 399.289753067 -s 1 -S COLOR -c red -o yellow r -t 399.289753067 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 399.289763067 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 399.289763067 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 399.289763067 -s 1 -S COLOR -c red -o yellow h -t 399.289763067 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 399.289915811 -s 2 -S COLOR -c yellow -o green r -t 399.289915811 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 399.289965811 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 159 -k MAC - -t 399.289965811 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 159 -k MAC n -t 399.289965811 -s 2 -S COLOR -c yellow -o green h -t 399.289965811 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 159 -k MAC n -t 399.292350555 -s 1 -S COLOR -c red -o yellow r -t 399.292350555 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 159 -k MAC + -t 399.292360555 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 399.292360555 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 399.292360555 -s 1 -S COLOR -c red -o yellow h -t 399.292360555 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 399.292513300 -s 2 -S COLOR -c yellow -o green r -t 399.292513300 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 399.293102555 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 399.293102555 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 399.293102555 -s 1 -S COLOR -c red -o yellow h -t 399.293102555 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 399.293279184 -s 3 -S COLOR -c yellow -o green r -t 399.293279184 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 399.293289184 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 399.293289184 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 399.293289184 -s 3 -S COLOR -c yellow -o green h -t 399.293289184 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 399.293441814 -s 1 -S COLOR -c red -o yellow r -t 399.293441814 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 399.293491814 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 159 -k MAC - -t 399.293491814 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 159 -k MAC n -t 399.293491814 -s 1 -S COLOR -c red -o yellow h -t 399.293491814 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 159 -k MAC n -t 399.295876443 -s 3 -S COLOR -c yellow -o green r -t 399.295876443 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 159 -k MAC + -t 399.295886443 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 399.295886443 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 399.295886443 -s 3 -S COLOR -c yellow -o green h -t 399.295886443 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 399.295901443 -s 3 -S COLOR -c yellow -o green r -t 399.295901443 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 159 -k AGT n -t 399.296039072 -s 1 -S COLOR -c red -o yellow r -t 399.296039072 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 400.000000 -s 0 -x 143.437509 -y 94.217567 -u 2.541708 -v 11.165440 -T 23.893091 n -t 400.000000 -s 1 -x 304.653244 -y 167.076326 -u 11.364516 -v 8.948665 -T 27.355032 n -t 400.000000 -s 2 -x 81.810723 -y 152.825361 -u 0.013312 -v 0.025546 -T 19337.895013 n -t 400.000000 -s 3 -x 325.834153 -y 354.615563 -u -5.078696 -v 6.765408 -T 36.732288 n -t 400.000000 -s 4 -x 23.768639 -y 159.509381 -u 9.674894 -v 7.115826 -T 65.323412 + -t 401.964518157 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 160 -k AGT - -t 401.964518157 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 160 -k AGT n -t 401.964518157 -s 2 -S COLOR -c yellow -o green h -t 401.964518157 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 160 -k AGT + -t 401.964593157 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 401.964593157 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 401.964593157 -s 2 -S COLOR -c yellow -o green h -t 401.964593157 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 401.964769981 -s 1 -S COLOR -c red -o yellow r -t 401.964769981 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 401.964779981 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 401.964779981 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 401.964779981 -s 1 -S COLOR -c red -o yellow h -t 401.964779981 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 401.964932805 -s 2 -S COLOR -c yellow -o green r -t 401.964932805 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 401.964982805 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 160 -k MAC - -t 401.964982805 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 160 -k MAC n -t 401.964982805 -s 2 -S COLOR -c yellow -o green h -t 401.964982805 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 160 -k MAC n -t 401.967367629 -s 1 -S COLOR -c red -o yellow r -t 401.967367629 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 160 -k MAC + -t 401.967377629 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 401.967377629 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 401.967377629 -s 1 -S COLOR -c red -o yellow h -t 401.967377629 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 401.967530453 -s 2 -S COLOR -c yellow -o green r -t 401.967530453 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 401.968079629 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 401.968079629 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 401.968079629 -s 1 -S COLOR -c red -o yellow h -t 401.968079629 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 401.968256240 -s 3 -S COLOR -c yellow -o green r -t 401.968256240 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 401.968266240 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 401.968266240 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 401.968266240 -s 3 -S COLOR -c yellow -o green h -t 401.968266240 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 401.968418852 -s 1 -S COLOR -c red -o yellow r -t 401.968418852 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 401.968468852 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 160 -k MAC - -t 401.968468852 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 160 -k MAC n -t 401.968468852 -s 1 -S COLOR -c red -o yellow h -t 401.968468852 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 160 -k MAC n -t 401.970853464 -s 3 -S COLOR -c yellow -o green r -t 401.970853464 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 160 -k MAC + -t 401.970863464 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 401.970863464 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 401.970863464 -s 3 -S COLOR -c yellow -o green h -t 401.970863464 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 401.970878464 -s 3 -S COLOR -c yellow -o green r -t 401.970878464 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 160 -k AGT n -t 401.971016076 -s 1 -S COLOR -c red -o yellow r -t 401.971016076 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 403.804879668 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 161 -k AGT - -t 403.804879668 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 161 -k AGT n -t 403.804879668 -s 2 -S COLOR -c yellow -o green h -t 403.804879668 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 161 -k AGT + -t 403.804954668 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 403.804954668 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 403.804954668 -s 2 -S COLOR -c yellow -o green h -t 403.804954668 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 403.805131569 -s 1 -S COLOR -c red -o yellow r -t 403.805131569 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 403.805141569 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 403.805141569 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 403.805141569 -s 1 -S COLOR -c red -o yellow h -t 403.805141569 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 403.805294471 -s 2 -S COLOR -c yellow -o green r -t 403.805294471 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 403.805344471 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 161 -k MAC - -t 403.805344471 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 161 -k MAC n -t 403.805344471 -s 2 -S COLOR -c yellow -o green h -t 403.805344471 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 161 -k MAC n -t 403.807729372 -s 1 -S COLOR -c red -o yellow r -t 403.807729372 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 161 -k MAC + -t 403.807739372 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 403.807739372 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 403.807739372 -s 1 -S COLOR -c red -o yellow h -t 403.807739372 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 403.807892273 -s 2 -S COLOR -c yellow -o green r -t 403.807892273 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 403.808301372 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 403.808301372 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 403.808301372 -s 1 -S COLOR -c red -o yellow h -t 403.808301372 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 403.808477985 -s 3 -S COLOR -c yellow -o green r -t 403.808477985 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 403.808487985 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 403.808487985 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 403.808487985 -s 3 -S COLOR -c yellow -o green h -t 403.808487985 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 403.808640598 -s 1 -S COLOR -c red -o yellow r -t 403.808640598 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 403.808690598 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 161 -k MAC - -t 403.808690598 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 161 -k MAC n -t 403.808690598 -s 1 -S COLOR -c red -o yellow h -t 403.808690598 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 161 -k MAC n -t 403.811075211 -s 3 -S COLOR -c yellow -o green r -t 403.811075211 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 161 -k MAC + -t 403.811085211 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 403.811085211 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 403.811085211 -s 3 -S COLOR -c yellow -o green h -t 403.811085211 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 403.811100211 -s 3 -S COLOR -c yellow -o green r -t 403.811100211 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 161 -k AGT n -t 403.811237825 -s 1 -S COLOR -c red -o yellow r -t 403.811237825 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 405.221878036 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 162 -k AGT - -t 405.221878036 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 162 -k AGT n -t 405.221878036 -s 2 -S COLOR -c yellow -o green h -t 405.221878036 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 162 -k AGT + -t 405.221953036 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 405.221953036 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 405.221953036 -s 2 -S COLOR -c yellow -o green h -t 405.221953036 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 405.222129998 -s 1 -S COLOR -c red -o yellow r -t 405.222129998 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 405.222139998 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 405.222139998 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 405.222139998 -s 1 -S COLOR -c red -o yellow h -t 405.222139998 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 405.222292960 -s 2 -S COLOR -c yellow -o green r -t 405.222292960 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 405.222342960 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 162 -k MAC - -t 405.222342960 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 162 -k MAC n -t 405.222342960 -s 2 -S COLOR -c yellow -o green h -t 405.222342960 -s 2 -d 1 -p cbr -e 596 -c 2 -a 0 -i 162 -k MAC n -t 405.224727922 -s 1 -S COLOR -c red -o yellow r -t 405.224727922 -s 1 -d 1 -p cbr -e 544 -c 2 -a 0 -i 162 -k MAC + -t 405.224737922 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 405.224737922 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 405.224737922 -s 1 -S COLOR -c red -o yellow h -t 405.224737922 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 405.224890884 -s 2 -S COLOR -c yellow -o green r -t 405.224890884 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 405.225059922 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 405.225059922 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 405.225059922 -s 1 -S COLOR -c red -o yellow h -t 405.225059922 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 405.225236548 -s 3 -S COLOR -c yellow -o green r -t 405.225236548 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 405.225246548 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 405.225246548 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 405.225246548 -s 3 -S COLOR -c yellow -o green h -t 405.225246548 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 405.225399173 -s 1 -S COLOR -c red -o yellow r -t 405.225399173 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 405.225449173 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 162 -k MAC - -t 405.225449173 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 162 -k MAC n -t 405.225449173 -s 1 -S COLOR -c red -o yellow h -t 405.225449173 -s 1 -d 3 -p cbr -e 596 -c 2 -a 0 -i 162 -k MAC n -t 405.227833799 -s 3 -S COLOR -c yellow -o green r -t 405.227833799 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 162 -k MAC + -t 405.227843799 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 405.227843799 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 405.227843799 -s 3 -S COLOR -c yellow -o green h -t 405.227843799 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 405.227858799 -s 3 -S COLOR -c yellow -o green r -t 405.227858799 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 162 -k AGT n -t 405.227996424 -s 1 -S COLOR -c red -o yellow r -t 405.227996424 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 406.426171074 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 163 -k AGT - -t 406.426171074 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 163 -k AGT n -t 406.426171074 -s 2 -S COLOR -c yellow -o green h -t 406.426171074 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 163 -k AGT + -t 406.426246074 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 406.426246074 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 406.426246074 -s 2 -S COLOR -c yellow -o green h -t 406.426246074 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 406.427404074 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 406.427404074 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 406.427404074 -s 2 -S COLOR -c yellow -o green h -t 406.427404074 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 406.430182074 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 406.430182074 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 406.430182074 -s 2 -S COLOR -c yellow -o green h -t 406.430182074 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 406.432900074 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 406.432900074 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 406.432900074 -s 2 -S COLOR -c yellow -o green h -t 406.432900074 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 406.439218074 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 406.439218074 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 406.439218074 -s 2 -S COLOR -c yellow -o green h -t 406.439218074 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 406.448976074 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 406.448976074 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 406.448976074 -s 2 -S COLOR -c yellow -o green h -t 406.448976074 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 406.461694074 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 406.461694074 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 406.461694074 -s 2 -S COLOR -c yellow -o green h -t 406.461694074 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 406.462042074 -s 2 -S COLOR -c yellow -o green d -t 406.462042074 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 406.462042074 -s 2 -S COLOR -c yellow -o green d -t 406.462042074 -s 2 -d 1 -p cbr -e 544 -c 2 -a 0 -i 163 -k MAC + -t 406.466581843 -s 2 -d -1 -p DSR -e 76 -c 2 -a 0 -i 164 -k MAC - -t 406.466581843 -s 2 -d -1 -p DSR -e 76 -c 2 -a 0 -i 164 -k MAC n -t 406.466581843 -s 2 -S COLOR -c yellow -o green h -t 406.466581843 -s 2 -d -1 -p DSR -e 76 -c 2 -a 0 -i 164 -k MAC n -t 406.466886018 -s 4 -S COLOR -c yellow -o green r -t 406.466886018 -s 4 -d -1 -p DSR -e 24 -c 2 -a 0 -i 164 -k MAC n -t 406.466886106 -s 0 -S COLOR -c yellow -o green r -t 406.466886106 -s 0 -d -1 -p DSR -e 24 -c 2 -a 0 -i 164 -k MAC + -t 406.466966018 -s 4 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC - -t 406.466966018 -s 4 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 406.466966018 -s 4 -S COLOR -c yellow -o green h -t 406.466966018 -s 4 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC + -t 406.466966106 -s 0 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC - -t 406.466966106 -s 0 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 406.466966106 -s 0 -S COLOR -c yellow -o green h -t 406.466966106 -s 0 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 406.466966370 -s 2 -S COLOR -c yellow -o green d -t 406.466966370 -s 2 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 406.466966993 -s 1 -S COLOR -c red -o yellow d -t 406.466966993 -s 1 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 406.466966998 -s 3 -S COLOR -c yellow -o green d -t 406.466966998 -s 3 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 406.467286370 -s 2 -S COLOR -c yellow -o green d -t 406.467286370 -s 2 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 406.467286993 -s 1 -S COLOR -c red -o yellow d -t 406.467286993 -s 1 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 406.467286998 -s 3 -S COLOR -c yellow -o green d -t 406.467286998 -s 3 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC + -t 406.511763189 -s 2 -d -1 -p DSR -e 76 -c 2 -a 0 -i 167 -k MAC - -t 406.511763189 -s 2 -d -1 -p DSR -e 76 -c 2 -a 0 -i 167 -k MAC n -t 406.511763189 -s 2 -S COLOR -c yellow -o green h -t 406.511763189 -s 2 -d -1 -p DSR -e 76 -c 2 -a 0 -i 167 -k MAC n -t 406.512067366 -s 4 -S COLOR -c yellow -o green r -t 406.512067366 -s 4 -d -1 -p DSR -e 24 -c 2 -a 0 -i 167 -k MAC n -t 406.512067453 -s 0 -S COLOR -c yellow -o green r -t 406.512067453 -s 0 -d -1 -p DSR -e 24 -c 2 -a 0 -i 167 -k MAC n -t 406.512092366 -s 4 -S COLOR -c yellow -o green d -t 406.512092366 -s 4 -d 2 -p DSR -e 44 -c 2 -a 0 -i 165 -k IFQ n -t 406.512092453 -s 0 -S COLOR -c yellow -o green d -t 406.512092453 -s 0 -d 2 -p DSR -e 44 -c 2 -a 0 -i 166 -k IFQ + -t 406.512147366 -s 4 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC - -t 406.512147366 -s 4 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 406.512147366 -s 4 -S COLOR -c yellow -o green h -t 406.512147366 -s 4 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC + -t 406.512147453 -s 0 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC - -t 406.512147453 -s 0 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 406.512147453 -s 0 -S COLOR -c yellow -o green h -t 406.512147453 -s 0 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 406.512147718 -s 2 -S COLOR -c yellow -o green d -t 406.512147718 -s 2 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 406.512148341 -s 1 -S COLOR -c red -o yellow d -t 406.512148341 -s 1 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 406.512148343 -s 3 -S COLOR -c yellow -o green d -t 406.512148343 -s 3 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 406.512467718 -s 2 -S COLOR -c yellow -o green d -t 406.512467718 -s 2 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 406.512468341 -s 1 -S COLOR -c red -o yellow d -t 406.512468341 -s 1 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 406.512468343 -s 3 -S COLOR -c yellow -o green d -t 406.512468343 -s 3 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC + -t 408.477674948 -s 2 -d -1 -p DSR -e 76 -c 2 -a 0 -i 212 -k MAC - -t 408.477674948 -s 2 -d -1 -p DSR -e 76 -c 2 -a 0 -i 212 -k MAC n -t 408.477674948 -s 2 -S COLOR -c yellow -o green h -t 408.477674948 -s 2 -d -1 -p DSR -e 76 -c 2 -a 0 -i 212 -k MAC n -t 408.477979184 -s 4 -S COLOR -c yellow -o green r -t 408.477979184 -s 4 -d -1 -p DSR -e 24 -c 2 -a 0 -i 212 -k MAC n -t 408.477979250 -s 0 -S COLOR -c yellow -o green r -t 408.477979250 -s 0 -d -1 -p DSR -e 24 -c 2 -a 0 -i 212 -k MAC n -t 408.478004184 -s 4 -S COLOR -c yellow -o green d -t 408.478004184 -s 4 -d 2 -p DSR -e 44 -c 2 -a 0 -i 168 -k IFQ n -t 408.478004250 -s 0 -S COLOR -c yellow -o green d -t 408.478004250 -s 0 -d 2 -p DSR -e 44 -c 2 -a 0 -i 169 -k IFQ + -t 408.478059184 -s 4 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC - -t 408.478059184 -s 4 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 408.478059184 -s 4 -S COLOR -c yellow -o green h -t 408.478059184 -s 4 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC + -t 408.478059250 -s 0 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC - -t 408.478059250 -s 0 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 408.478059250 -s 0 -S COLOR -c yellow -o green h -t 408.478059250 -s 0 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 408.478059551 -s 2 -S COLOR -c yellow -o green d -t 408.478059551 -s 2 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 408.478060091 -s 3 -S COLOR -c yellow -o green d -t 408.478060091 -s 3 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 408.478060172 -s 1 -S COLOR -c red -o yellow d -t 408.478060172 -s 1 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 408.478379551 -s 2 -S COLOR -c yellow -o green d -t 408.478379551 -s 2 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 408.478380091 -s 3 -S COLOR -c yellow -o green d -t 408.478380091 -s 3 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 408.478380172 -s 1 -S COLOR -c red -o yellow d -t 408.478380172 -s 1 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC + -t 408.528252896 -s 2 -d -1 -p DSR -e 76 -c 2 -a 0 -i 215 -k MAC - -t 408.528252896 -s 2 -d -1 -p DSR -e 76 -c 2 -a 0 -i 215 -k MAC n -t 408.528252896 -s 2 -S COLOR -c yellow -o green h -t 408.528252896 -s 2 -d -1 -p DSR -e 76 -c 2 -a 0 -i 215 -k MAC n -t 408.528557134 -s 4 -S COLOR -c yellow -o green r -t 408.528557134 -s 4 -d -1 -p DSR -e 24 -c 2 -a 0 -i 215 -k MAC n -t 408.528557199 -s 0 -S COLOR -c yellow -o green r -t 408.528557199 -s 0 -d -1 -p DSR -e 24 -c 2 -a 0 -i 215 -k MAC + -t 408.528657134 -s 4 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 408.528657134 -s 4 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.528657134 -s 4 -S COLOR -c yellow -o green h -t 408.528657134 -s 4 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 408.528657199 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 408.528657199 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.528657199 -s 0 -S COLOR -c yellow -o green h -t 408.528657199 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.528658122 -s 1 -S COLOR -c red -o yellow d -t 408.528658122 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.528834122 -s 1 -S COLOR -c red -o yellow d -t 408.528834122 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 408.529631355 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 408.529631355 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.529631355 -s 0 -S COLOR -c yellow -o green h -t 408.529631355 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.529808164 -s 1 -S COLOR -c red -o yellow r -t 408.529808164 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 408.529818164 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 408.529818164 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.529818164 -s 1 -S COLOR -c red -o yellow h -t 408.529818164 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.529970972 -s 0 -S COLOR -c yellow -o green r -t 408.529970972 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 408.530020972 -s 0 -d 1 -p DSR -e 100 -c 2 -a 0 -i 214 -k MAC - -t 408.530020972 -s 0 -d 1 -p DSR -e 100 -c 2 -a 0 -i 214 -k MAC n -t 408.530020972 -s 0 -S COLOR -c yellow -o green h -t 408.530020972 -s 0 -d 1 -p DSR -e 100 -c 2 -a 0 -i 214 -k MAC n -t 408.530421781 -s 1 -S COLOR -c red -o yellow r -t 408.530421781 -s 1 -d 1 -p DSR -e 48 -c 2 -a 0 -i 214 -k MAC + -t 408.530431781 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 408.530431781 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.530431781 -s 1 -S COLOR -c red -o yellow h -t 408.530431781 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.530584589 -s 0 -S COLOR -c yellow -o green r -t 408.530584589 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 408.530834589 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 408.530834589 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.530834589 -s 0 -S COLOR -c yellow -o green h -t 408.530834589 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.531011398 -s 1 -S COLOR -c red -o yellow r -t 408.531011398 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 408.531021398 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 408.531021398 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.531021398 -s 1 -S COLOR -c red -o yellow h -t 408.531021398 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.531174206 -s 0 -S COLOR -c yellow -o green r -t 408.531174206 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 408.531224206 -s 0 -d 1 -p DSR -e 100 -c 2 -a 0 -i 217 -k MAC - -t 408.531224206 -s 0 -d 1 -p DSR -e 100 -c 2 -a 0 -i 217 -k MAC n -t 408.531224206 -s 0 -S COLOR -c yellow -o green h -t 408.531224206 -s 0 -d 1 -p DSR -e 100 -c 2 -a 0 -i 217 -k MAC n -t 408.531625015 -s 1 -S COLOR -c red -o yellow r -t 408.531625015 -s 1 -d 1 -p DSR -e 48 -c 2 -a 0 -i 217 -k MAC + -t 408.531635015 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 408.531635015 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.531635015 -s 1 -S COLOR -c red -o yellow h -t 408.531635015 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.531787824 -s 0 -S COLOR -c yellow -o green r -t 408.531787824 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 408.531857015 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 408.531857015 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.531857015 -s 1 -S COLOR -c red -o yellow h -t 408.531857015 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 408.532999002 -s 4 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 408.532999002 -s 4 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.532999002 -s 4 -S COLOR -c yellow -o green h -t 408.532999002 -s 4 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.533175990 -s 1 -S COLOR -c red -o yellow r -t 408.533175990 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 408.533185990 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 408.533185990 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.533185990 -s 1 -S COLOR -c red -o yellow h -t 408.533185990 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.533338977 -s 4 -S COLOR -c yellow -o green r -t 408.533338977 -s 4 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 408.533388977 -s 4 -d 1 -p DSR -e 100 -c 2 -a 0 -i 213 -k MAC - -t 408.533388977 -s 4 -d 1 -p DSR -e 100 -c 2 -a 0 -i 213 -k MAC n -t 408.533388977 -s 4 -S COLOR -c yellow -o green h -t 408.533388977 -s 4 -d 1 -p DSR -e 100 -c 2 -a 0 -i 213 -k MAC n -t 408.533789965 -s 1 -S COLOR -c red -o yellow r -t 408.533789965 -s 1 -d 1 -p DSR -e 48 -c 2 -a 0 -i 213 -k MAC + -t 408.533799965 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 408.533799965 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.533799965 -s 1 -S COLOR -c red -o yellow h -t 408.533799965 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.533952952 -s 4 -S COLOR -c yellow -o green r -t 408.533952952 -s 4 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 408.534082952 -s 4 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 408.534082952 -s 4 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.534082952 -s 4 -S COLOR -c yellow -o green h -t 408.534082952 -s 4 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.534259939 -s 1 -S COLOR -c red -o yellow r -t 408.534259939 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 408.534269939 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 408.534269939 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.534269939 -s 1 -S COLOR -c red -o yellow h -t 408.534269939 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.534422927 -s 4 -S COLOR -c yellow -o green r -t 408.534422927 -s 4 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 408.534472927 -s 4 -d 1 -p DSR -e 100 -c 2 -a 0 -i 216 -k MAC - -t 408.534472927 -s 4 -d 1 -p DSR -e 100 -c 2 -a 0 -i 216 -k MAC n -t 408.534472927 -s 4 -S COLOR -c yellow -o green h -t 408.534472927 -s 4 -d 1 -p DSR -e 100 -c 2 -a 0 -i 216 -k MAC n -t 408.534873914 -s 1 -S COLOR -c red -o yellow r -t 408.534873914 -s 1 -d 1 -p DSR -e 48 -c 2 -a 0 -i 216 -k MAC + -t 408.534883914 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 408.534883914 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.534883914 -s 1 -S COLOR -c red -o yellow h -t 408.534883914 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.535036901 -s 4 -S COLOR -c yellow -o green r -t 408.535036901 -s 4 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 408.535485914 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 408.535485914 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.535485914 -s 1 -S COLOR -c red -o yellow h -t 408.535485914 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 408.537043914 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 408.537043914 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.537043914 -s 1 -S COLOR -c red -o yellow h -t 408.537043914 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 408.538221914 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 408.538221914 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.538221914 -s 1 -S COLOR -c red -o yellow h -t 408.538221914 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 408.543699914 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 408.543699914 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.543699914 -s 1 -S COLOR -c red -o yellow h -t 408.543699914 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 408.553137914 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 408.553137914 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.553137914 -s 1 -S COLOR -c red -o yellow h -t 408.553137914 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 408.560155914 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 408.560155914 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.560155914 -s 1 -S COLOR -c red -o yellow h -t 408.560155914 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 408.577960551 -s 2 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC - -t 408.577960551 -s 2 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 408.577960551 -s 2 -S COLOR -c red -o yellow h -t 408.577960551 -s 2 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 408.578280791 -s 4 -S COLOR -c yellow -o green r -t 408.578280791 -s 4 -d -1 -p ARP -e 28 -c 2 -a 0 -i 0 -k MAC n -t 408.578280855 -s 0 -S COLOR -c yellow -o green r -t 408.578280855 -s 0 -d -1 -p ARP -e 28 -c 2 -a 0 -i 0 -k MAC + -t 408.578335855 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 408.578335855 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.578335855 -s 0 -S COLOR -c yellow -o green h -t 408.578335855 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.578512159 -s 2 -S COLOR -c red -o yellow r -t 408.578512159 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 408.578522159 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 408.578522159 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.578522159 -s 2 -S COLOR -c red -o yellow h -t 408.578522159 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.578674463 -s 0 -S COLOR -c yellow -o green r -t 408.578674463 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 408.578724463 -s 0 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC - -t 408.578724463 -s 0 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 408.578724463 -s 0 -S COLOR -c yellow -o green h -t 408.578724463 -s 0 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 408.579044767 -s 2 -S COLOR -c red -o yellow r -t 408.579044767 -s 2 -d -1 -p ARP -e 28 -c 2 -a 0 -i 0 -k MAC + -t 408.579054767 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 408.579054767 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.579054767 -s 2 -S COLOR -c red -o yellow h -t 408.579054767 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.579207071 -s 0 -S COLOR -c yellow -o green r -t 408.579207071 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 408.579656767 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 408.579656767 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.579656767 -s 2 -S COLOR -c red -o yellow h -t 408.579656767 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.579833071 -s 0 -S COLOR -c yellow -o green r -t 408.579833071 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 408.579843071 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 408.579843071 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.579843071 -s 0 -S COLOR -c yellow -o green h -t 408.579843071 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.579995374 -s 2 -S COLOR -c red -o yellow r -t 408.579995374 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 408.580045374 -s 2 -d 0 -p cbr -e 600 -c 2 -a 0 -i 163 -k MAC - -t 408.580045374 -s 2 -d 0 -p cbr -e 600 -c 2 -a 0 -i 163 -k MAC n -t 408.580045374 -s 2 -S COLOR -c red -o yellow h -t 408.580045374 -s 2 -d 0 -p cbr -e 600 -c 2 -a 0 -i 163 -k MAC n -t 408.582445678 -s 0 -S COLOR -c yellow -o green r -t 408.582445678 -s 0 -d 0 -p cbr -e 548 -c 2 -a 0 -i 163 -k MAC + -t 408.582455678 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 408.582455678 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.582455678 -s 0 -S COLOR -c yellow -o green h -t 408.582455678 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.582607982 -s 2 -S COLOR -c red -o yellow r -t 408.582607982 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 408.582797678 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 408.582797678 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.582797678 -s 0 -S COLOR -c yellow -o green h -t 408.582797678 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.582974488 -s 1 -S COLOR -c red -o yellow r -t 408.582974488 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 408.582984488 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 408.582984488 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.582984488 -s 1 -S COLOR -c red -o yellow h -t 408.582984488 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.583137298 -s 0 -S COLOR -c yellow -o green r -t 408.583137298 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 408.583187298 -s 0 -d 1 -p cbr -e 600 -c 2 -a 0 -i 163 -k MAC - -t 408.583187298 -s 0 -d 1 -p cbr -e 600 -c 2 -a 0 -i 163 -k MAC n -t 408.583187298 -s 0 -S COLOR -c yellow -o green h -t 408.583187298 -s 0 -d 1 -p cbr -e 600 -c 2 -a 0 -i 163 -k MAC n -t 408.585588108 -s 1 -S COLOR -c red -o yellow r -t 408.585588108 -s 1 -d 1 -p cbr -e 548 -c 2 -a 0 -i 163 -k MAC + -t 408.585598108 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 408.585598108 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.585598108 -s 1 -S COLOR -c red -o yellow h -t 408.585598108 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.585750918 -s 0 -S COLOR -c yellow -o green r -t 408.585750918 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 408.585880798 -s 3 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC - -t 408.585880798 -s 3 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 408.585880798 -s 3 -S COLOR -c yellow -o green h -t 408.585880798 -s 3 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 408.586201489 -s 1 -S COLOR -c red -o yellow r -t 408.586201489 -s 1 -d -1 -p ARP -e 28 -c 2 -a 0 -i 0 -k MAC n -t 408.586201637 -s 0 -S COLOR -c yellow -o green r -t 408.586201637 -s 0 -d -1 -p ARP -e 28 -c 2 -a 0 -i 0 -k MAC n -t 408.586201665 -s 4 -S COLOR -c yellow -o green r -t 408.586201665 -s 4 -d -1 -p ARP -e 28 -c 2 -a 0 -i 0 -k MAC + -t 408.586431637 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 408.586431637 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.586431637 -s 0 -S COLOR -c yellow -o green h -t 408.586431637 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.586608475 -s 3 -S COLOR -c yellow -o green r -t 408.586608475 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 408.586618475 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 408.586618475 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.586618475 -s 3 -S COLOR -c yellow -o green h -t 408.586618475 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.586771313 -s 0 -S COLOR -c yellow -o green r -t 408.586771313 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 408.586821313 -s 0 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC - -t 408.586821313 -s 0 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 408.586821313 -s 0 -S COLOR -c yellow -o green h -t 408.586821313 -s 0 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 408.587142151 -s 3 -S COLOR -c yellow -o green r -t 408.587142151 -s 3 -d -1 -p ARP -e 28 -c 2 -a 0 -i 0 -k MAC + -t 408.587152151 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 408.587152151 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.587152151 -s 3 -S COLOR -c yellow -o green h -t 408.587152151 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.587304990 -s 0 -S COLOR -c yellow -o green r -t 408.587304990 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 408.587594151 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 408.587594151 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.587594151 -s 3 -S COLOR -c yellow -o green h -t 408.587594151 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.587770990 -s 0 -S COLOR -c yellow -o green r -t 408.587770990 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 408.587780990 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 408.587780990 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.587780990 -s 0 -S COLOR -c yellow -o green h -t 408.587780990 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.587933828 -s 3 -S COLOR -c yellow -o green r -t 408.587933828 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 408.587983828 -s 3 -d 0 -p DSR -e 96 -c 2 -a 0 -i 218 -k MAC - -t 408.587983828 -s 3 -d 0 -p DSR -e 96 -c 2 -a 0 -i 218 -k MAC n -t 408.587983828 -s 3 -S COLOR -c yellow -o green h -t 408.587983828 -s 3 -d 0 -p DSR -e 96 -c 2 -a 0 -i 218 -k MAC n -t 408.588368666 -s 0 -S COLOR -c yellow -o green r -t 408.588368666 -s 0 -d 0 -p DSR -e 44 -c 2 -a 0 -i 218 -k MAC + -t 408.588378666 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 408.588378666 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.588378666 -s 0 -S COLOR -c yellow -o green h -t 408.588378666 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.588531504 -s 3 -S COLOR -c yellow -o green r -t 408.588531504 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 408.589140666 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 408.589140666 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.589140666 -s 0 -S COLOR -c yellow -o green h -t 408.589140666 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.589316970 -s 2 -S COLOR -c red -o yellow r -t 408.589316970 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 408.589326970 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 408.589326970 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.589326970 -s 2 -S COLOR -c red -o yellow h -t 408.589326970 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.589479274 -s 0 -S COLOR -c yellow -o green r -t 408.589479274 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 408.589529274 -s 0 -d 2 -p DSR -e 96 -c 2 -a 0 -i 218 -k MAC - -t 408.589529274 -s 0 -d 2 -p DSR -e 96 -c 2 -a 0 -i 218 -k MAC n -t 408.589529274 -s 0 -S COLOR -c yellow -o green h -t 408.589529274 -s 0 -d 2 -p DSR -e 96 -c 2 -a 0 -i 218 -k MAC n -t 408.589913578 -s 2 -S COLOR -c red -o yellow r -t 408.589913578 -s 2 -d 2 -p DSR -e 44 -c 2 -a 0 -i 218 -k MAC + -t 408.589923578 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 408.589923578 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.589923578 -s 2 -S COLOR -c red -o yellow h -t 408.589923578 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.590075882 -s 0 -S COLOR -c yellow -o green r -t 408.590075882 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 408.590534688 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 408.590534688 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.590534688 -s 1 -S COLOR -c red -o yellow h -t 408.590534688 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 408.592172688 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 408.592172688 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.592172688 -s 1 -S COLOR -c red -o yellow h -t 408.592172688 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 408.592930688 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 408.592930688 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.592930688 -s 1 -S COLOR -c red -o yellow h -t 408.592930688 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 408.597248688 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 408.597248688 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.597248688 -s 1 -S COLOR -c red -o yellow h -t 408.597248688 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 408.602286688 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 408.602286688 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.602286688 -s 1 -S COLOR -c red -o yellow h -t 408.602286688 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 408.622664688 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 408.622664688 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.622664688 -s 1 -S COLOR -c red -o yellow h -t 408.622664688 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 408.633402688 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 408.633402688 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.633402688 -s 1 -S COLOR -c red -o yellow h -t 408.633402688 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.633750688 -s 1 -S COLOR -c red -o yellow d -t 408.633750688 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.633750688 -s 1 -S COLOR -c red -o yellow d -t 408.633750688 -s 1 -d 2 -p DSR -e 48 -c 2 -a 0 -i 217 -k RTR n -t 408.633750688 -s 1 -S COLOR -c red -o yellow d -t 408.633750688 -s 1 -d 2 -p DSR -e 48 -c 2 -a 0 -i 214 -k MAC n -t 408.633750688 -s 1 -S COLOR -c red -o yellow d -t 408.633750688 -s 1 -d 0 -p DSR -e 76 -c 2 -a 0 -i 214 -k IFQ n -t 408.633750688 -s 1 -S COLOR -c red -o yellow d -t 408.633750688 -s 1 -d 0 -p DSR -e 76 -c 2 -a 0 -i 213 -k IFQ + -t 408.633960688 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 408.633960688 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.633960688 -s 1 -S COLOR -c red -o yellow h -t 408.633960688 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.634137380 -s 3 -S COLOR -c yellow -o green r -t 408.634137380 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 408.635118688 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 408.635118688 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.635118688 -s 1 -S COLOR -c red -o yellow h -t 408.635118688 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.635295380 -s 3 -S COLOR -c yellow -o green r -t 408.635295380 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 408.635305380 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 408.635305380 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.635305380 -s 3 -S COLOR -c yellow -o green h -t 408.635305380 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.635458071 -s 1 -S COLOR -c red -o yellow r -t 408.635458071 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 408.635508071 -s 1 -d 3 -p cbr -e 600 -c 2 -a 0 -i 163 -k MAC - -t 408.635508071 -s 1 -d 3 -p cbr -e 600 -c 2 -a 0 -i 163 -k MAC n -t 408.635508071 -s 1 -S COLOR -c red -o yellow h -t 408.635508071 -s 1 -d 3 -p cbr -e 600 -c 2 -a 0 -i 163 -k MAC n -t 408.637908763 -s 3 -S COLOR -c yellow -o green r -t 408.637908763 -s 3 -d 3 -p cbr -e 548 -c 2 -a 0 -i 163 -k MAC + -t 408.637918763 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 408.637918763 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.637918763 -s 3 -S COLOR -c yellow -o green h -t 408.637918763 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.637933763 -s 3 -S COLOR -c yellow -o green r -t 408.637933763 -s 3 -d 3 -p cbr -e 548 -c 2 -a 0 -i 163 -k AGT n -t 408.638071455 -s 1 -S COLOR -c red -o yellow r -t 408.638071455 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 408.638181455 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 408.638181455 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.638181455 -s 1 -S COLOR -c red -o yellow h -t 408.638181455 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.638358146 -s 3 -S COLOR -c yellow -o green r -t 408.638358146 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 408.638368146 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 408.638368146 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.638368146 -s 3 -S COLOR -c yellow -o green h -t 408.638368146 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.638520838 -s 1 -S COLOR -c red -o yellow r -t 408.638520838 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 408.638570838 -s 1 -d 3 -p DSR -e 92 -c 2 -a 0 -i 219 -k MAC - -t 408.638570838 -s 1 -d 3 -p DSR -e 92 -c 2 -a 0 -i 219 -k MAC n -t 408.638570838 -s 1 -S COLOR -c red -o yellow h -t 408.638570838 -s 1 -d 3 -p DSR -e 92 -c 2 -a 0 -i 219 -k MAC n -t 408.638939530 -s 3 -S COLOR -c yellow -o green r -t 408.638939530 -s 3 -d 3 -p DSR -e 40 -c 2 -a 0 -i 219 -k MAC + -t 408.638949530 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 408.638949530 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.638949530 -s 3 -S COLOR -c yellow -o green h -t 408.638949530 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.639102222 -s 1 -S COLOR -c red -o yellow r -t 408.639102222 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 408.639211530 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 408.639211530 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.639211530 -s 3 -S COLOR -c yellow -o green h -t 408.639211530 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.639388367 -s 0 -S COLOR -c yellow -o green r -t 408.639388367 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 408.639398367 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 408.639398367 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.639398367 -s 0 -S COLOR -c yellow -o green h -t 408.639398367 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.639551204 -s 3 -S COLOR -c yellow -o green r -t 408.639551204 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 408.639601204 -s 3 -d 0 -p DSR -e 92 -c 2 -a 0 -i 219 -k MAC - -t 408.639601204 -s 3 -d 0 -p DSR -e 92 -c 2 -a 0 -i 219 -k MAC n -t 408.639601204 -s 3 -S COLOR -c yellow -o green h -t 408.639601204 -s 3 -d 0 -p DSR -e 92 -c 2 -a 0 -i 219 -k MAC n -t 408.639970041 -s 0 -S COLOR -c yellow -o green r -t 408.639970041 -s 0 -d 0 -p DSR -e 40 -c 2 -a 0 -i 219 -k MAC + -t 408.639980041 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 408.639980041 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.639980041 -s 0 -S COLOR -c yellow -o green h -t 408.639980041 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.640132878 -s 3 -S COLOR -c yellow -o green r -t 408.640132878 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 408.640482852 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 408.640482852 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.640482852 -s 1 -S COLOR -c red -o yellow h -t 408.640482852 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.640659544 -s 3 -S COLOR -c yellow -o green r -t 408.640659544 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 408.640669544 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 408.640669544 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.640669544 -s 3 -S COLOR -c yellow -o green h -t 408.640669544 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.640822236 -s 1 -S COLOR -c red -o yellow r -t 408.640822236 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 408.640872236 -s 1 -d 3 -p DSR -e 160 -c 2 -a 0 -i 216 -k MAC - -t 408.640872236 -s 1 -d 3 -p DSR -e 160 -c 2 -a 0 -i 216 -k MAC n -t 408.640872236 -s 1 -S COLOR -c red -o yellow h -t 408.640872236 -s 1 -d 3 -p DSR -e 160 -c 2 -a 0 -i 216 -k MAC n -t 408.641512927 -s 3 -S COLOR -c yellow -o green r -t 408.641512927 -s 3 -d 3 -p DSR -e 108 -c 2 -a 0 -i 216 -k MAC + -t 408.641522927 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 408.641522927 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.641522927 -s 3 -S COLOR -c yellow -o green h -t 408.641522927 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.641675619 -s 1 -S COLOR -c red -o yellow r -t 408.641675619 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 408.641745619 -s 1 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC - -t 408.641745619 -s 1 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 408.641745619 -s 1 -S COLOR -c red -o yellow h -t 408.641745619 -s 1 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 408.642066311 -s 3 -S COLOR -c yellow -o green r -t 408.642066311 -s 3 -d -1 -p ARP -e 28 -c 2 -a 0 -i 0 -k MAC n -t 408.642066431 -s 0 -S COLOR -c yellow -o green r -t 408.642066431 -s 0 -d -1 -p ARP -e 28 -c 2 -a 0 -i 0 -k MAC n -t 408.642066607 -s 4 -S COLOR -c yellow -o green r -t 408.642066607 -s 4 -d -1 -p ARP -e 28 -c 2 -a 0 -i 0 -k MAC + -t 408.642121431 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 408.642121431 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.642121431 -s 0 -S COLOR -c yellow -o green h -t 408.642121431 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.642298242 -s 1 -S COLOR -c red -o yellow r -t 408.642298242 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 408.642308242 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 408.642308242 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.642308242 -s 1 -S COLOR -c red -o yellow h -t 408.642308242 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.642461054 -s 0 -S COLOR -c yellow -o green r -t 408.642461054 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 408.642511054 -s 0 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC - -t 408.642511054 -s 0 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 408.642511054 -s 0 -S COLOR -c yellow -o green h -t 408.642511054 -s 0 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 408.642831865 -s 1 -S COLOR -c red -o yellow r -t 408.642831865 -s 1 -d -1 -p ARP -e 28 -c 2 -a 0 -i 0 -k MAC + -t 408.642841865 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 408.642841865 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.642841865 -s 1 -S COLOR -c red -o yellow h -t 408.642841865 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.642994677 -s 0 -S COLOR -c yellow -o green r -t 408.642994677 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 408.643164557 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 408.643164557 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.643164557 -s 3 -S COLOR -c yellow -o green h -t 408.643164557 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.643341394 -s 0 -S COLOR -c yellow -o green r -t 408.643341394 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 408.643351394 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 408.643351394 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.643351394 -s 0 -S COLOR -c yellow -o green h -t 408.643351394 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.643504231 -s 3 -S COLOR -c yellow -o green r -t 408.643504231 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 408.643554231 -s 3 -d 0 -p DSR -e 160 -c 2 -a 0 -i 216 -k MAC - -t 408.643554231 -s 3 -d 0 -p DSR -e 160 -c 2 -a 0 -i 216 -k MAC n -t 408.643554231 -s 3 -S COLOR -c yellow -o green h -t 408.643554231 -s 3 -d 0 -p DSR -e 160 -c 2 -a 0 -i 216 -k MAC n -t 408.644195068 -s 0 -S COLOR -c yellow -o green r -t 408.644195068 -s 0 -d 0 -p DSR -e 108 -c 2 -a 0 -i 216 -k MAC + -t 408.644205068 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 408.644205068 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.644205068 -s 0 -S COLOR -c yellow -o green h -t 408.644205068 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.644357904 -s 3 -S COLOR -c yellow -o green r -t 408.644357904 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 408.644647879 -s 1 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC - -t 408.644647879 -s 1 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 408.644647879 -s 1 -S COLOR -c red -o yellow h -t 408.644647879 -s 1 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 408.644968571 -s 3 -S COLOR -c yellow -o green r -t 408.644968571 -s 3 -d -1 -p ARP -e 28 -c 2 -a 0 -i 0 -k MAC n -t 408.644968691 -s 0 -S COLOR -c yellow -o green r -t 408.644968691 -s 0 -d -1 -p ARP -e 28 -c 2 -a 0 -i 0 -k MAC n -t 408.644968867 -s 4 -S COLOR -c yellow -o green r -t 408.644968867 -s 4 -d -1 -p ARP -e 28 -c 2 -a 0 -i 0 -k MAC + -t 408.645218691 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 408.645218691 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.645218691 -s 0 -S COLOR -c yellow -o green h -t 408.645218691 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.645394996 -s 2 -S COLOR -c red -o yellow r -t 408.645394996 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 408.645404996 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 408.645404996 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.645404996 -s 2 -S COLOR -c red -o yellow h -t 408.645404996 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.645557302 -s 0 -S COLOR -c yellow -o green r -t 408.645557302 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 408.645607302 -s 0 -d 2 -p DSR -e 160 -c 2 -a 0 -i 216 -k MAC - -t 408.645607302 -s 0 -d 2 -p DSR -e 160 -c 2 -a 0 -i 216 -k MAC n -t 408.645607302 -s 0 -S COLOR -c yellow -o green h -t 408.645607302 -s 0 -d 2 -p DSR -e 160 -c 2 -a 0 -i 216 -k MAC n -t 408.646247607 -s 2 -S COLOR -c red -o yellow r -t 408.646247607 -s 2 -d 2 -p DSR -e 108 -c 2 -a 0 -i 216 -k MAC + -t 408.646257607 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 408.646257607 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.646257607 -s 2 -S COLOR -c red -o yellow h -t 408.646257607 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.646409912 -s 0 -S COLOR -c yellow -o green r -t 408.646409912 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 408.646959912 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 408.646959912 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.646959912 -s 0 -S COLOR -c yellow -o green h -t 408.646959912 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.647136724 -s 1 -S COLOR -c red -o yellow r -t 408.647136724 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 408.647146724 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 408.647146724 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.647146724 -s 1 -S COLOR -c red -o yellow h -t 408.647146724 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.647299536 -s 0 -S COLOR -c yellow -o green r -t 408.647299536 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 408.647349536 -s 0 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC - -t 408.647349536 -s 0 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 408.647349536 -s 0 -S COLOR -c yellow -o green h -t 408.647349536 -s 0 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 408.647670347 -s 1 -S COLOR -c red -o yellow r -t 408.647670347 -s 1 -d -1 -p ARP -e 28 -c 2 -a 0 -i 0 -k MAC + -t 408.647680347 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 408.647680347 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.647680347 -s 1 -S COLOR -c red -o yellow h -t 408.647680347 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.647833159 -s 0 -S COLOR -c yellow -o green r -t 408.647833159 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 408.647902347 -s 1 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC - -t 408.647902347 -s 1 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 408.647902347 -s 1 -S COLOR -c red -o yellow h -t 408.647902347 -s 1 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 408.648223039 -s 3 -S COLOR -c yellow -o green r -t 408.648223039 -s 3 -d -1 -p ARP -e 28 -c 2 -a 0 -i 0 -k MAC n -t 408.648223159 -s 0 -S COLOR -c yellow -o green r -t 408.648223159 -s 0 -d -1 -p ARP -e 28 -c 2 -a 0 -i 0 -k MAC n -t 408.648223335 -s 4 -S COLOR -c yellow -o green r -t 408.648223335 -s 4 -d -1 -p ARP -e 28 -c 2 -a 0 -i 0 -k MAC + -t 408.648413159 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 408.648413159 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.648413159 -s 0 -S COLOR -c yellow -o green h -t 408.648413159 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.648589971 -s 1 -S COLOR -c red -o yellow r -t 408.648589971 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 408.648599971 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 408.648599971 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.648599971 -s 1 -S COLOR -c red -o yellow h -t 408.648599971 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.648752782 -s 0 -S COLOR -c yellow -o green r -t 408.648752782 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 408.648802782 -s 0 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC - -t 408.648802782 -s 0 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 408.648802782 -s 0 -S COLOR -c yellow -o green h -t 408.648802782 -s 0 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 408.649123594 -s 1 -S COLOR -c red -o yellow r -t 408.649123594 -s 1 -d -1 -p ARP -e 28 -c 2 -a 0 -i 0 -k MAC + -t 408.649133594 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 408.649133594 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.649133594 -s 1 -S COLOR -c red -o yellow h -t 408.649133594 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.649286406 -s 0 -S COLOR -c yellow -o green r -t 408.649286406 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 408.776960445 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 220 -k AGT - -t 408.776960445 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 220 -k AGT n -t 408.776960445 -s 2 -S COLOR -c red -o yellow h -t 408.776960445 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 220 -k AGT + -t 408.777035445 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 408.777035445 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.777035445 -s 2 -S COLOR -c red -o yellow h -t 408.777035445 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.777211753 -s 0 -S COLOR -c yellow -o green r -t 408.777211753 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 408.777221753 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 408.777221753 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.777221753 -s 0 -S COLOR -c yellow -o green h -t 408.777221753 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.777374061 -s 2 -S COLOR -c red -o yellow r -t 408.777374061 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 408.777424061 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 220 -k MAC - -t 408.777424061 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 220 -k MAC n -t 408.777424061 -s 2 -S COLOR -c red -o yellow h -t 408.777424061 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 220 -k MAC n -t 408.779808370 -s 0 -S COLOR -c yellow -o green r -t 408.779808370 -s 0 -d 0 -p cbr -e 544 -c 2 -a 0 -i 220 -k MAC + -t 408.779818370 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 408.779818370 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.779818370 -s 0 -S COLOR -c yellow -o green h -t 408.779818370 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.779970678 -s 2 -S COLOR -c red -o yellow r -t 408.779970678 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 408.780480370 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 408.780480370 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.780480370 -s 0 -S COLOR -c yellow -o green h -t 408.780480370 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 408.780657203 -s 3 -S COLOR -c yellow -o green r -t 408.780657203 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 408.780667203 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 408.780667203 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.780667203 -s 3 -S COLOR -c yellow -o green h -t 408.780667203 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.780820037 -s 0 -S COLOR -c yellow -o green r -t 408.780820037 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 408.780870037 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 220 -k MAC - -t 408.780870037 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 220 -k MAC n -t 408.780870037 -s 0 -S COLOR -c yellow -o green h -t 408.780870037 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 220 -k MAC n -t 408.783254870 -s 3 -S COLOR -c yellow -o green r -t 408.783254870 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 220 -k MAC + -t 408.783264870 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 408.783264870 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.783264870 -s 3 -S COLOR -c yellow -o green h -t 408.783264870 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 408.783279870 -s 3 -S COLOR -c yellow -o green r -t 408.783279870 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 220 -k AGT n -t 408.783417703 -s 0 -S COLOR -c yellow -o green r -t 408.783417703 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 410.061288903 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 221 -k AGT - -t 410.061288903 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 221 -k AGT n -t 410.061288903 -s 2 -S COLOR -c red -o yellow h -t 410.061288903 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 221 -k AGT + -t 410.061363903 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 410.061363903 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 410.061363903 -s 2 -S COLOR -c red -o yellow h -t 410.061363903 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 410.061540243 -s 0 -S COLOR -c yellow -o green r -t 410.061540243 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 410.061550243 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 410.061550243 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 410.061550243 -s 0 -S COLOR -c yellow -o green h -t 410.061550243 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 410.061702584 -s 2 -S COLOR -c red -o yellow r -t 410.061702584 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 410.061752584 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 221 -k MAC - -t 410.061752584 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 221 -k MAC n -t 410.061752584 -s 2 -S COLOR -c red -o yellow h -t 410.061752584 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 221 -k MAC n -t 410.064136924 -s 0 -S COLOR -c yellow -o green r -t 410.064136924 -s 0 -d 0 -p cbr -e 544 -c 2 -a 0 -i 221 -k MAC + -t 410.064146924 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 410.064146924 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 410.064146924 -s 0 -S COLOR -c yellow -o green h -t 410.064146924 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 410.064299265 -s 2 -S COLOR -c red -o yellow r -t 410.064299265 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 410.064748924 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 410.064748924 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 410.064748924 -s 0 -S COLOR -c yellow -o green h -t 410.064748924 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 410.064925726 -s 3 -S COLOR -c yellow -o green r -t 410.064925726 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 410.064935726 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 410.064935726 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 410.064935726 -s 3 -S COLOR -c yellow -o green h -t 410.064935726 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 410.065088528 -s 0 -S COLOR -c yellow -o green r -t 410.065088528 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 410.065138528 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 221 -k MAC - -t 410.065138528 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 221 -k MAC n -t 410.065138528 -s 0 -S COLOR -c yellow -o green h -t 410.065138528 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 221 -k MAC n -t 410.067523330 -s 3 -S COLOR -c yellow -o green r -t 410.067523330 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 221 -k MAC + -t 410.067533330 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 410.067533330 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 410.067533330 -s 3 -S COLOR -c yellow -o green h -t 410.067533330 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 410.067548330 -s 3 -S COLOR -c yellow -o green r -t 410.067548330 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 221 -k AGT n -t 410.067686132 -s 0 -S COLOR -c yellow -o green r -t 410.067686132 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 412.921473047 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 222 -k AGT - -t 412.921473047 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 222 -k AGT n -t 412.921473047 -s 2 -S COLOR -c red -o yellow h -t 412.921473047 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 222 -k AGT + -t 412.921548047 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 412.921548047 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 412.921548047 -s 2 -S COLOR -c red -o yellow h -t 412.921548047 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 412.921724471 -s 0 -S COLOR -c yellow -o green r -t 412.921724471 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 412.921734471 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 412.921734471 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 412.921734471 -s 0 -S COLOR -c yellow -o green h -t 412.921734471 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 412.921886895 -s 2 -S COLOR -c red -o yellow r -t 412.921886895 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 412.921936895 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 222 -k MAC - -t 412.921936895 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 222 -k MAC n -t 412.921936895 -s 2 -S COLOR -c red -o yellow h -t 412.921936895 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 222 -k MAC n -t 412.924321318 -s 0 -S COLOR -c yellow -o green r -t 412.924321318 -s 0 -d 0 -p cbr -e 544 -c 2 -a 0 -i 222 -k MAC + -t 412.924331318 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 412.924331318 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 412.924331318 -s 0 -S COLOR -c yellow -o green h -t 412.924331318 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 412.924483743 -s 2 -S COLOR -c red -o yellow r -t 412.924483743 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 412.924693318 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 412.924693318 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 412.924693318 -s 0 -S COLOR -c yellow -o green h -t 412.924693318 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 412.924870052 -s 3 -S COLOR -c yellow -o green r -t 412.924870052 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 412.924880052 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 412.924880052 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 412.924880052 -s 3 -S COLOR -c yellow -o green h -t 412.924880052 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 412.925032786 -s 0 -S COLOR -c yellow -o green r -t 412.925032786 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 412.925082786 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 222 -k MAC - -t 412.925082786 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 222 -k MAC n -t 412.925082786 -s 0 -S COLOR -c yellow -o green h -t 412.925082786 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 222 -k MAC n -t 412.927467520 -s 3 -S COLOR -c yellow -o green r -t 412.927467520 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 222 -k MAC + -t 412.927477520 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 412.927477520 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 412.927477520 -s 3 -S COLOR -c yellow -o green h -t 412.927477520 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 412.927492520 -s 3 -S COLOR -c yellow -o green r -t 412.927492520 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 222 -k AGT n -t 412.927630254 -s 0 -S COLOR -c yellow -o green r -t 412.927630254 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 415.547287389 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 223 -k AGT - -t 415.547287389 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 223 -k AGT n -t 415.547287389 -s 2 -S COLOR -c red -o yellow h -t 415.547287389 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 223 -k AGT + -t 415.547362389 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 415.547362389 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 415.547362389 -s 2 -S COLOR -c red -o yellow h -t 415.547362389 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 415.547538898 -s 0 -S COLOR -c yellow -o green r -t 415.547538898 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 415.547548898 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 415.547548898 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 415.547548898 -s 0 -S COLOR -c yellow -o green h -t 415.547548898 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 415.547701407 -s 2 -S COLOR -c red -o yellow r -t 415.547701407 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 415.547751407 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 223 -k MAC - -t 415.547751407 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 223 -k MAC n -t 415.547751407 -s 2 -S COLOR -c red -o yellow h -t 415.547751407 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 223 -k MAC n -t 415.550135916 -s 0 -S COLOR -c yellow -o green r -t 415.550135916 -s 0 -d 0 -p cbr -e 544 -c 2 -a 0 -i 223 -k MAC + -t 415.550145916 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 415.550145916 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 415.550145916 -s 0 -S COLOR -c yellow -o green h -t 415.550145916 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 415.550298425 -s 2 -S COLOR -c red -o yellow r -t 415.550298425 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 415.550347916 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 415.550347916 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 415.550347916 -s 0 -S COLOR -c yellow -o green h -t 415.550347916 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 415.550524591 -s 3 -S COLOR -c yellow -o green r -t 415.550524591 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 415.550534591 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 415.550534591 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 415.550534591 -s 3 -S COLOR -c yellow -o green h -t 415.550534591 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 415.550687265 -s 0 -S COLOR -c yellow -o green r -t 415.550687265 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 415.550737265 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 223 -k MAC - -t 415.550737265 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 223 -k MAC n -t 415.550737265 -s 0 -S COLOR -c yellow -o green h -t 415.550737265 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 223 -k MAC n -t 415.553121940 -s 3 -S COLOR -c yellow -o green r -t 415.553121940 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 223 -k MAC + -t 415.553131940 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 415.553131940 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 415.553131940 -s 3 -S COLOR -c yellow -o green h -t 415.553131940 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 415.553146940 -s 3 -S COLOR -c yellow -o green r -t 415.553146940 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 223 -k AGT n -t 415.553284614 -s 0 -S COLOR -c yellow -o green r -t 415.553284614 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 418.300281007 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 224 -k AGT - -t 418.300281007 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 224 -k AGT n -t 418.300281007 -s 2 -S COLOR -c red -o yellow h -t 418.300281007 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 224 -k AGT + -t 418.300356007 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 418.300356007 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 418.300356007 -s 2 -S COLOR -c red -o yellow h -t 418.300356007 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 418.300532610 -s 0 -S COLOR -c yellow -o green r -t 418.300532610 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 418.300542610 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 418.300542610 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 418.300542610 -s 0 -S COLOR -c yellow -o green h -t 418.300542610 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 418.300695214 -s 2 -S COLOR -c red -o yellow r -t 418.300695214 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 418.300745214 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 224 -k MAC - -t 418.300745214 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 224 -k MAC n -t 418.300745214 -s 2 -S COLOR -c red -o yellow h -t 418.300745214 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 224 -k MAC n -t 418.303129817 -s 0 -S COLOR -c yellow -o green r -t 418.303129817 -s 0 -d 0 -p cbr -e 544 -c 2 -a 0 -i 224 -k MAC + -t 418.303139817 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 418.303139817 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 418.303139817 -s 0 -S COLOR -c yellow -o green h -t 418.303139817 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 418.303292420 -s 2 -S COLOR -c red -o yellow r -t 418.303292420 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 418.303801817 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 418.303801817 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 418.303801817 -s 0 -S COLOR -c yellow -o green h -t 418.303801817 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 418.303978433 -s 3 -S COLOR -c yellow -o green r -t 418.303978433 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 418.303988433 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 418.303988433 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 418.303988433 -s 3 -S COLOR -c yellow -o green h -t 418.303988433 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 418.304141049 -s 0 -S COLOR -c yellow -o green r -t 418.304141049 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 418.304191049 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 224 -k MAC - -t 418.304191049 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 224 -k MAC n -t 418.304191049 -s 0 -S COLOR -c yellow -o green h -t 418.304191049 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 224 -k MAC n -t 418.306575666 -s 3 -S COLOR -c yellow -o green r -t 418.306575666 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 224 -k MAC + -t 418.306585666 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 418.306585666 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 418.306585666 -s 3 -S COLOR -c yellow -o green h -t 418.306585666 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 418.306600666 -s 3 -S COLOR -c yellow -o green r -t 418.306600666 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 224 -k AGT n -t 418.306738282 -s 0 -S COLOR -c yellow -o green r -t 418.306738282 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 420.527917895 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 225 -k AGT - -t 420.527917895 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 225 -k AGT n -t 420.527917895 -s 2 -S COLOR -c red -o yellow h -t 420.527917895 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 225 -k AGT + -t 420.527992895 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 420.527992895 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 420.527992895 -s 2 -S COLOR -c red -o yellow h -t 420.527992895 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 420.528169577 -s 0 -S COLOR -c yellow -o green r -t 420.528169577 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 420.528179577 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 420.528179577 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 420.528179577 -s 0 -S COLOR -c yellow -o green h -t 420.528179577 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 420.528332259 -s 2 -S COLOR -c red -o yellow r -t 420.528332259 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 420.528382259 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 225 -k MAC - -t 420.528382259 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 225 -k MAC n -t 420.528382259 -s 2 -S COLOR -c red -o yellow h -t 420.528382259 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 225 -k MAC n -t 420.530766940 -s 0 -S COLOR -c yellow -o green r -t 420.530766940 -s 0 -d 0 -p cbr -e 544 -c 2 -a 0 -i 225 -k MAC + -t 420.530776940 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 420.530776940 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 420.530776940 -s 0 -S COLOR -c yellow -o green h -t 420.530776940 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 420.530929622 -s 2 -S COLOR -c red -o yellow r -t 420.530929622 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 420.531358940 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 420.531358940 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 420.531358940 -s 0 -S COLOR -c yellow -o green h -t 420.531358940 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 420.531535514 -s 3 -S COLOR -c yellow -o green r -t 420.531535514 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 420.531545514 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 420.531545514 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 420.531545514 -s 3 -S COLOR -c yellow -o green h -t 420.531545514 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 420.531698087 -s 0 -S COLOR -c yellow -o green r -t 420.531698087 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 420.531748087 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 225 -k MAC - -t 420.531748087 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 225 -k MAC n -t 420.531748087 -s 0 -S COLOR -c yellow -o green h -t 420.531748087 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 225 -k MAC n -t 420.534132661 -s 3 -S COLOR -c yellow -o green r -t 420.534132661 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 225 -k MAC + -t 420.534142661 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 420.534142661 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 420.534142661 -s 3 -S COLOR -c yellow -o green h -t 420.534142661 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 420.534157661 -s 3 -S COLOR -c yellow -o green r -t 420.534157661 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 225 -k AGT n -t 420.534295234 -s 0 -S COLOR -c yellow -o green r -t 420.534295234 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 423.353521945 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 226 -k AGT - -t 423.353521945 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 226 -k AGT n -t 423.353521945 -s 2 -S COLOR -c red -o yellow h -t 423.353521945 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 226 -k AGT + -t 423.353596945 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 423.353596945 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 423.353596945 -s 2 -S COLOR -c red -o yellow h -t 423.353596945 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 423.353773728 -s 0 -S COLOR -c yellow -o green r -t 423.353773728 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 423.353783728 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 423.353783728 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 423.353783728 -s 0 -S COLOR -c yellow -o green h -t 423.353783728 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 423.353936511 -s 2 -S COLOR -c red -o yellow r -t 423.353936511 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 423.353986511 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 226 -k MAC - -t 423.353986511 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 226 -k MAC n -t 423.353986511 -s 2 -S COLOR -c red -o yellow h -t 423.353986511 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 226 -k MAC n -t 423.356371294 -s 0 -S COLOR -c yellow -o green r -t 423.356371294 -s 0 -d 0 -p cbr -e 544 -c 2 -a 0 -i 226 -k MAC + -t 423.356381294 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 423.356381294 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 423.356381294 -s 0 -S COLOR -c yellow -o green h -t 423.356381294 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 423.356534077 -s 2 -S COLOR -c red -o yellow r -t 423.356534077 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 423.357023294 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 423.357023294 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 423.357023294 -s 0 -S COLOR -c yellow -o green h -t 423.357023294 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 423.357199820 -s 3 -S COLOR -c yellow -o green r -t 423.357199820 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 423.357209820 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 423.357209820 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 423.357209820 -s 3 -S COLOR -c yellow -o green h -t 423.357209820 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 423.357362345 -s 0 -S COLOR -c yellow -o green r -t 423.357362345 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 423.357412345 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 226 -k MAC - -t 423.357412345 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 226 -k MAC n -t 423.357412345 -s 0 -S COLOR -c yellow -o green h -t 423.357412345 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 226 -k MAC n -t 423.359796871 -s 3 -S COLOR -c yellow -o green r -t 423.359796871 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 226 -k MAC + -t 423.359806871 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 423.359806871 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 423.359806871 -s 3 -S COLOR -c yellow -o green h -t 423.359806871 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 423.359821871 -s 3 -S COLOR -c yellow -o green r -t 423.359821871 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 226 -k AGT n -t 423.359959396 -s 0 -S COLOR -c yellow -o green r -t 423.359959396 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 423.893091 -s 0 -x 204.166775 -y 360.994443 -u 0.000000 -v 0.000000 -T 0.000000 + -t 425.984917556 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 227 -k AGT - -t 425.984917556 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 227 -k AGT n -t 425.984917556 -s 2 -S COLOR -c red -o yellow h -t 425.984917556 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 227 -k AGT + -t 425.984992556 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 425.984992556 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 425.984992556 -s 2 -S COLOR -c red -o yellow h -t 425.984992556 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 425.985169359 -s 0 -S COLOR -c yellow -o green r -t 425.985169359 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 425.985179359 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 425.985179359 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 425.985179359 -s 0 -S COLOR -c yellow -o green h -t 425.985179359 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 425.985332161 -s 2 -S COLOR -c red -o yellow r -t 425.985332161 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 425.985382161 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 227 -k MAC - -t 425.985382161 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 227 -k MAC n -t 425.985382161 -s 2 -S COLOR -c red -o yellow h -t 425.985382161 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 227 -k MAC n -t 425.987766964 -s 0 -S COLOR -c yellow -o green r -t 425.987766964 -s 0 -d 0 -p cbr -e 544 -c 2 -a 0 -i 227 -k MAC + -t 425.987776964 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 425.987776964 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 425.987776964 -s 0 -S COLOR -c yellow -o green h -t 425.987776964 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 425.987929766 -s 2 -S COLOR -c red -o yellow r -t 425.987929766 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 425.988118964 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 425.988118964 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 425.988118964 -s 0 -S COLOR -c yellow -o green h -t 425.988118964 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 425.988295529 -s 3 -S COLOR -c yellow -o green r -t 425.988295529 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 425.988305529 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 425.988305529 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 425.988305529 -s 3 -S COLOR -c yellow -o green h -t 425.988305529 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 425.988458095 -s 0 -S COLOR -c yellow -o green r -t 425.988458095 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 425.988508095 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 227 -k MAC - -t 425.988508095 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 227 -k MAC n -t 425.988508095 -s 0 -S COLOR -c yellow -o green h -t 425.988508095 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 227 -k MAC n -t 425.990892661 -s 3 -S COLOR -c yellow -o green r -t 425.990892661 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 227 -k MAC + -t 425.990902661 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 425.990902661 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 425.990902661 -s 3 -S COLOR -c yellow -o green h -t 425.990902661 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 425.990917661 -s 3 -S COLOR -c yellow -o green r -t 425.990917661 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 227 -k AGT n -t 425.991055227 -s 0 -S COLOR -c yellow -o green r -t 425.991055227 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 427.355032 -s 1 -x 615.529950 -y 411.867351 -u 0.000000 -v 0.000000 -T 0.000000 + -t 428.968081523 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 228 -k AGT - -t 428.968081523 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 228 -k AGT n -t 428.968081523 -s 2 -S COLOR -c red -o yellow h -t 428.968081523 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 228 -k AGT + -t 428.968156523 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 428.968156523 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 428.968156523 -s 2 -S COLOR -c red -o yellow h -t 428.968156523 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 428.968333325 -s 0 -S COLOR -c yellow -o green r -t 428.968333325 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 428.968343325 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 428.968343325 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 428.968343325 -s 0 -S COLOR -c yellow -o green h -t 428.968343325 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 428.968496127 -s 2 -S COLOR -c red -o yellow r -t 428.968496127 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 428.968546127 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 228 -k MAC - -t 428.968546127 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 228 -k MAC n -t 428.968546127 -s 2 -S COLOR -c red -o yellow h -t 428.968546127 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 228 -k MAC n -t 428.970930929 -s 0 -S COLOR -c yellow -o green r -t 428.970930929 -s 0 -d 0 -p cbr -e 544 -c 2 -a 0 -i 228 -k MAC + -t 428.970940929 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 428.970940929 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 428.970940929 -s 0 -S COLOR -c yellow -o green h -t 428.970940929 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 428.971093732 -s 2 -S COLOR -c red -o yellow r -t 428.971093732 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 428.971562929 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 428.971562929 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 428.971562929 -s 0 -S COLOR -c yellow -o green h -t 428.971562929 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 428.971739567 -s 3 -S COLOR -c yellow -o green r -t 428.971739567 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 428.971749567 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 428.971749567 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 428.971749567 -s 3 -S COLOR -c yellow -o green h -t 428.971749567 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 428.971902205 -s 0 -S COLOR -c yellow -o green r -t 428.971902205 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 428.971952205 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 228 -k MAC - -t 428.971952205 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 228 -k MAC n -t 428.971952205 -s 0 -S COLOR -c yellow -o green h -t 428.971952205 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 228 -k MAC n -t 428.974336843 -s 3 -S COLOR -c yellow -o green r -t 428.974336843 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 228 -k MAC + -t 428.974346843 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 428.974346843 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 428.974346843 -s 3 -S COLOR -c yellow -o green h -t 428.974346843 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 428.974361843 -s 3 -S COLOR -c yellow -o green r -t 428.974361843 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 228 -k AGT n -t 428.974499481 -s 0 -S COLOR -c yellow -o green r -t 428.974499481 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 430.447857106 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 229 -k AGT - -t 430.447857106 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 229 -k AGT n -t 430.447857106 -s 2 -S COLOR -c red -o yellow h -t 430.447857106 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 229 -k AGT + -t 430.447932106 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 430.447932106 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 430.447932106 -s 2 -S COLOR -c red -o yellow h -t 430.447932106 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 430.448108908 -s 0 -S COLOR -c yellow -o green r -t 430.448108908 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 430.448118908 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 430.448118908 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 430.448118908 -s 0 -S COLOR -c yellow -o green h -t 430.448118908 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 430.448271710 -s 2 -S COLOR -c red -o yellow r -t 430.448271710 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 430.448321710 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 229 -k MAC - -t 430.448321710 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 229 -k MAC n -t 430.448321710 -s 2 -S COLOR -c red -o yellow h -t 430.448321710 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 229 -k MAC n -t 430.450706512 -s 0 -S COLOR -c yellow -o green r -t 430.450706512 -s 0 -d 0 -p cbr -e 544 -c 2 -a 0 -i 229 -k MAC + -t 430.450716512 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 430.450716512 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 430.450716512 -s 0 -S COLOR -c yellow -o green h -t 430.450716512 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 430.450869314 -s 2 -S COLOR -c red -o yellow r -t 430.450869314 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 430.451358512 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 430.451358512 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 430.451358512 -s 0 -S COLOR -c yellow -o green h -t 430.451358512 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 430.451535186 -s 3 -S COLOR -c yellow -o green r -t 430.451535186 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 430.451545186 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 430.451545186 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 430.451545186 -s 3 -S COLOR -c yellow -o green h -t 430.451545186 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 430.451697861 -s 0 -S COLOR -c yellow -o green r -t 430.451697861 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 430.451747861 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 229 -k MAC - -t 430.451747861 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 229 -k MAC n -t 430.451747861 -s 0 -S COLOR -c yellow -o green h -t 430.451747861 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 229 -k MAC n -t 430.454132535 -s 3 -S COLOR -c yellow -o green r -t 430.454132535 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 229 -k MAC + -t 430.454142535 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 430.454142535 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 430.454142535 -s 3 -S COLOR -c yellow -o green h -t 430.454142535 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 430.454157535 -s 3 -S COLOR -c yellow -o green r -t 430.454157535 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 229 -k AGT n -t 430.454295210 -s 0 -S COLOR -c yellow -o green r -t 430.454295210 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 432.008275414 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 230 -k AGT - -t 432.008275414 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 230 -k AGT n -t 432.008275414 -s 2 -S COLOR -c red -o yellow h -t 432.008275414 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 230 -k AGT + -t 432.008350414 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 432.008350414 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 432.008350414 -s 2 -S COLOR -c red -o yellow h -t 432.008350414 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 432.008527216 -s 0 -S COLOR -c yellow -o green r -t 432.008527216 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 432.008537216 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 432.008537216 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 432.008537216 -s 0 -S COLOR -c yellow -o green h -t 432.008537216 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 432.008690017 -s 2 -S COLOR -c red -o yellow r -t 432.008690017 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 432.008740017 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 230 -k MAC - -t 432.008740017 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 230 -k MAC n -t 432.008740017 -s 2 -S COLOR -c red -o yellow h -t 432.008740017 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 230 -k MAC n -t 432.011124819 -s 0 -S COLOR -c yellow -o green r -t 432.011124819 -s 0 -d 0 -p cbr -e 544 -c 2 -a 0 -i 230 -k MAC + -t 432.011134819 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 432.011134819 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 432.011134819 -s 0 -S COLOR -c yellow -o green h -t 432.011134819 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 432.011287621 -s 2 -S COLOR -c red -o yellow r -t 432.011287621 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 432.011596819 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 432.011596819 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 432.011596819 -s 0 -S COLOR -c yellow -o green h -t 432.011596819 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 432.011773533 -s 3 -S COLOR -c yellow -o green r -t 432.011773533 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 432.011783533 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 432.011783533 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 432.011783533 -s 3 -S COLOR -c yellow -o green h -t 432.011783533 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 432.011936247 -s 0 -S COLOR -c yellow -o green r -t 432.011936247 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 432.011986247 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 230 -k MAC - -t 432.011986247 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 230 -k MAC n -t 432.011986247 -s 0 -S COLOR -c yellow -o green h -t 432.011986247 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 230 -k MAC n -t 432.014370961 -s 3 -S COLOR -c yellow -o green r -t 432.014370961 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 230 -k MAC + -t 432.014380961 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 432.014380961 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 432.014380961 -s 3 -S COLOR -c yellow -o green h -t 432.014380961 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 432.014395961 -s 3 -S COLOR -c yellow -o green r -t 432.014395961 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 230 -k AGT n -t 432.014533674 -s 0 -S COLOR -c yellow -o green r -t 432.014533674 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 434.817624402 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 231 -k AGT - -t 434.817624402 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 231 -k AGT n -t 434.817624402 -s 2 -S COLOR -c red -o yellow h -t 434.817624402 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 231 -k AGT + -t 434.817699402 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 434.817699402 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 434.817699402 -s 2 -S COLOR -c red -o yellow h -t 434.817699402 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 434.817876203 -s 0 -S COLOR -c yellow -o green r -t 434.817876203 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 434.817886203 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 434.817886203 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 434.817886203 -s 0 -S COLOR -c yellow -o green h -t 434.817886203 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 434.818039005 -s 2 -S COLOR -c red -o yellow r -t 434.818039005 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 434.818089005 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 231 -k MAC - -t 434.818089005 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 231 -k MAC n -t 434.818089005 -s 2 -S COLOR -c red -o yellow h -t 434.818089005 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 231 -k MAC n -t 434.820473807 -s 0 -S COLOR -c yellow -o green r -t 434.820473807 -s 0 -d 0 -p cbr -e 544 -c 2 -a 0 -i 231 -k MAC + -t 434.820483807 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 434.820483807 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 434.820483807 -s 0 -S COLOR -c yellow -o green h -t 434.820483807 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 434.820636608 -s 2 -S COLOR -c red -o yellow r -t 434.820636608 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 434.821105807 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 434.821105807 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 434.821105807 -s 0 -S COLOR -c yellow -o green h -t 434.821105807 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 434.821282592 -s 3 -S COLOR -c yellow -o green r -t 434.821282592 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 434.821292592 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 434.821292592 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 434.821292592 -s 3 -S COLOR -c yellow -o green h -t 434.821292592 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 434.821445378 -s 0 -S COLOR -c yellow -o green r -t 434.821445378 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 434.821495378 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 231 -k MAC - -t 434.821495378 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 231 -k MAC n -t 434.821495378 -s 0 -S COLOR -c yellow -o green h -t 434.821495378 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 231 -k MAC n -t 434.823880164 -s 3 -S COLOR -c yellow -o green r -t 434.823880164 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 231 -k MAC + -t 434.823890164 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 434.823890164 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 434.823890164 -s 3 -S COLOR -c yellow -o green h -t 434.823890164 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 434.823905164 -s 3 -S COLOR -c yellow -o green r -t 434.823905164 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 231 -k AGT n -t 434.824042950 -s 0 -S COLOR -c yellow -o green r -t 434.824042950 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 437.392698027 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 232 -k AGT - -t 437.392698027 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 232 -k AGT n -t 437.392698027 -s 2 -S COLOR -c red -o yellow h -t 437.392698027 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 232 -k AGT + -t 437.392773027 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 437.392773027 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 437.392773027 -s 2 -S COLOR -c red -o yellow h -t 437.392773027 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 437.392949828 -s 0 -S COLOR -c yellow -o green r -t 437.392949828 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 437.392959828 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 437.392959828 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 437.392959828 -s 0 -S COLOR -c yellow -o green h -t 437.392959828 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 437.393112629 -s 2 -S COLOR -c red -o yellow r -t 437.393112629 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 437.393162629 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 232 -k MAC - -t 437.393162629 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 232 -k MAC n -t 437.393162629 -s 2 -S COLOR -c red -o yellow h -t 437.393162629 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 232 -k MAC n -t 437.395547430 -s 0 -S COLOR -c yellow -o green r -t 437.395547430 -s 0 -d 0 -p cbr -e 544 -c 2 -a 0 -i 232 -k MAC + -t 437.395557430 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 437.395557430 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 437.395557430 -s 0 -S COLOR -c yellow -o green h -t 437.395557430 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 437.395710232 -s 2 -S COLOR -c red -o yellow r -t 437.395710232 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 437.396359430 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 437.396359430 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 437.396359430 -s 0 -S COLOR -c yellow -o green h -t 437.396359430 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 437.396536266 -s 3 -S COLOR -c yellow -o green r -t 437.396536266 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 437.396546266 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 437.396546266 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 437.396546266 -s 3 -S COLOR -c yellow -o green h -t 437.396546266 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 437.396699102 -s 0 -S COLOR -c yellow -o green r -t 437.396699102 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 437.396749102 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 232 -k MAC - -t 437.396749102 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 232 -k MAC n -t 437.396749102 -s 0 -S COLOR -c yellow -o green h -t 437.396749102 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 232 -k MAC n -t 437.399133937 -s 3 -S COLOR -c yellow -o green r -t 437.399133937 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 232 -k MAC + -t 437.399143937 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 437.399143937 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 437.399143937 -s 3 -S COLOR -c yellow -o green h -t 437.399143937 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 437.399158937 -s 3 -S COLOR -c yellow -o green r -t 437.399158937 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 232 -k AGT n -t 437.399296773 -s 0 -S COLOR -c yellow -o green r -t 437.399296773 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 439.054608684 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 233 -k AGT - -t 439.054608684 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 233 -k AGT n -t 439.054608684 -s 2 -S COLOR -c red -o yellow h -t 439.054608684 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 233 -k AGT + -t 439.054683684 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 439.054683684 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 439.054683684 -s 2 -S COLOR -c red -o yellow h -t 439.054683684 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 439.054860485 -s 0 -S COLOR -c yellow -o green r -t 439.054860485 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 439.054870485 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 439.054870485 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 439.054870485 -s 0 -S COLOR -c yellow -o green h -t 439.054870485 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 439.055023286 -s 2 -S COLOR -c red -o yellow r -t 439.055023286 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 439.055073286 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 233 -k MAC - -t 439.055073286 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 233 -k MAC n -t 439.055073286 -s 2 -S COLOR -c red -o yellow h -t 439.055073286 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 233 -k MAC n -t 439.057458087 -s 0 -S COLOR -c yellow -o green r -t 439.057458087 -s 0 -d 0 -p cbr -e 544 -c 2 -a 0 -i 233 -k MAC + -t 439.057468087 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 439.057468087 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 439.057468087 -s 0 -S COLOR -c yellow -o green h -t 439.057468087 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 439.057620888 -s 2 -S COLOR -c red -o yellow r -t 439.057620888 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 439.057670087 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 439.057670087 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 439.057670087 -s 0 -S COLOR -c yellow -o green h -t 439.057670087 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 439.057846923 -s 3 -S COLOR -c yellow -o green r -t 439.057846923 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 439.057856923 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 439.057856923 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 439.057856923 -s 3 -S COLOR -c yellow -o green h -t 439.057856923 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 439.058009758 -s 0 -S COLOR -c yellow -o green r -t 439.058009758 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 439.058059758 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 233 -k MAC - -t 439.058059758 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 233 -k MAC n -t 439.058059758 -s 0 -S COLOR -c yellow -o green h -t 439.058059758 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 233 -k MAC n -t 439.060444594 -s 3 -S COLOR -c yellow -o green r -t 439.060444594 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 233 -k MAC + -t 439.060454594 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 439.060454594 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 439.060454594 -s 3 -S COLOR -c yellow -o green h -t 439.060454594 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 439.060469594 -s 3 -S COLOR -c yellow -o green r -t 439.060469594 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 233 -k AGT n -t 439.060607429 -s 0 -S COLOR -c yellow -o green r -t 439.060607429 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 440.871541377 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 234 -k AGT - -t 440.871541377 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 234 -k AGT n -t 440.871541377 -s 2 -S COLOR -c red -o yellow h -t 440.871541377 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 234 -k AGT + -t 440.871616377 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 440.871616377 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 440.871616377 -s 2 -S COLOR -c red -o yellow h -t 440.871616377 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 440.871793178 -s 0 -S COLOR -c yellow -o green r -t 440.871793178 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 440.871803178 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 440.871803178 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 440.871803178 -s 0 -S COLOR -c yellow -o green h -t 440.871803178 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 440.871955979 -s 2 -S COLOR -c red -o yellow r -t 440.871955979 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 440.872005979 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 234 -k MAC - -t 440.872005979 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 234 -k MAC n -t 440.872005979 -s 2 -S COLOR -c red -o yellow h -t 440.872005979 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 234 -k MAC n -t 440.874390780 -s 0 -S COLOR -c yellow -o green r -t 440.874390780 -s 0 -d 0 -p cbr -e 544 -c 2 -a 0 -i 234 -k MAC + -t 440.874400780 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 440.874400780 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 440.874400780 -s 0 -S COLOR -c yellow -o green h -t 440.874400780 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 440.874553581 -s 2 -S COLOR -c red -o yellow r -t 440.874553581 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 440.875182780 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 440.875182780 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 440.875182780 -s 0 -S COLOR -c yellow -o green h -t 440.875182780 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 440.875359616 -s 3 -S COLOR -c yellow -o green r -t 440.875359616 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 440.875369616 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 440.875369616 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 440.875369616 -s 3 -S COLOR -c yellow -o green h -t 440.875369616 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 440.875522451 -s 0 -S COLOR -c yellow -o green r -t 440.875522451 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 440.875572451 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 234 -k MAC - -t 440.875572451 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 234 -k MAC n -t 440.875572451 -s 0 -S COLOR -c yellow -o green h -t 440.875572451 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 234 -k MAC n -t 440.877957287 -s 3 -S COLOR -c yellow -o green r -t 440.877957287 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 234 -k MAC + -t 440.877967287 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 440.877967287 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 440.877967287 -s 3 -S COLOR -c yellow -o green h -t 440.877967287 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 440.877982287 -s 3 -S COLOR -c yellow -o green r -t 440.877982287 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 234 -k AGT n -t 440.878120122 -s 0 -S COLOR -c yellow -o green r -t 440.878120122 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 443.078559040 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 235 -k AGT - -t 443.078559040 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 235 -k AGT n -t 443.078559040 -s 2 -S COLOR -c red -o yellow h -t 443.078559040 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 235 -k AGT + -t 443.078634040 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 443.078634040 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 443.078634040 -s 2 -S COLOR -c red -o yellow h -t 443.078634040 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 443.078810840 -s 0 -S COLOR -c yellow -o green r -t 443.078810840 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 443.078820840 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 443.078820840 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 443.078820840 -s 0 -S COLOR -c yellow -o green h -t 443.078820840 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 443.078973641 -s 2 -S COLOR -c red -o yellow r -t 443.078973641 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 443.079023641 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 235 -k MAC - -t 443.079023641 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 235 -k MAC n -t 443.079023641 -s 2 -S COLOR -c red -o yellow h -t 443.079023641 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 235 -k MAC n -t 443.081408442 -s 0 -S COLOR -c yellow -o green r -t 443.081408442 -s 0 -d 0 -p cbr -e 544 -c 2 -a 0 -i 235 -k MAC + -t 443.081418442 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 443.081418442 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 443.081418442 -s 0 -S COLOR -c yellow -o green h -t 443.081418442 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 443.081571243 -s 2 -S COLOR -c red -o yellow r -t 443.081571243 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 443.081720442 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 443.081720442 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 443.081720442 -s 0 -S COLOR -c yellow -o green h -t 443.081720442 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 443.081897277 -s 3 -S COLOR -c yellow -o green r -t 443.081897277 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 443.081907277 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 443.081907277 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 443.081907277 -s 3 -S COLOR -c yellow -o green h -t 443.081907277 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 443.082060113 -s 0 -S COLOR -c yellow -o green r -t 443.082060113 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 443.082110113 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 235 -k MAC - -t 443.082110113 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 235 -k MAC n -t 443.082110113 -s 0 -S COLOR -c yellow -o green h -t 443.082110113 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 235 -k MAC n -t 443.084494949 -s 3 -S COLOR -c yellow -o green r -t 443.084494949 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 235 -k MAC + -t 443.084504949 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 443.084504949 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 443.084504949 -s 3 -S COLOR -c yellow -o green h -t 443.084504949 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 443.084519949 -s 3 -S COLOR -c yellow -o green r -t 443.084519949 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 235 -k AGT n -t 443.084657784 -s 0 -S COLOR -c yellow -o green r -t 443.084657784 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 444.325372009 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 236 -k AGT - -t 444.325372009 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 236 -k AGT n -t 444.325372009 -s 2 -S COLOR -c red -o yellow h -t 444.325372009 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 236 -k AGT + -t 444.325447009 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 444.325447009 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 444.325447009 -s 2 -S COLOR -c red -o yellow h -t 444.325447009 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 444.325623810 -s 0 -S COLOR -c yellow -o green r -t 444.325623810 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 444.325633810 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 444.325633810 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 444.325633810 -s 0 -S COLOR -c yellow -o green h -t 444.325633810 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 444.325786610 -s 2 -S COLOR -c red -o yellow r -t 444.325786610 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 444.325836610 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 236 -k MAC - -t 444.325836610 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 236 -k MAC n -t 444.325836610 -s 2 -S COLOR -c red -o yellow h -t 444.325836610 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 236 -k MAC n -t 444.328221411 -s 0 -S COLOR -c yellow -o green r -t 444.328221411 -s 0 -d 0 -p cbr -e 544 -c 2 -a 0 -i 236 -k MAC + -t 444.328231411 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 444.328231411 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 444.328231411 -s 0 -S COLOR -c yellow -o green h -t 444.328231411 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 444.328384212 -s 2 -S COLOR -c red -o yellow r -t 444.328384212 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 444.328613411 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 444.328613411 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 444.328613411 -s 0 -S COLOR -c yellow -o green h -t 444.328613411 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 444.328790247 -s 3 -S COLOR -c yellow -o green r -t 444.328790247 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 444.328800247 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 444.328800247 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 444.328800247 -s 3 -S COLOR -c yellow -o green h -t 444.328800247 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 444.328953082 -s 0 -S COLOR -c yellow -o green r -t 444.328953082 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 444.329003082 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 236 -k MAC - -t 444.329003082 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 236 -k MAC n -t 444.329003082 -s 0 -S COLOR -c yellow -o green h -t 444.329003082 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 236 -k MAC n -t 444.331387918 -s 3 -S COLOR -c yellow -o green r -t 444.331387918 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 236 -k MAC + -t 444.331397918 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 444.331397918 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 444.331397918 -s 3 -S COLOR -c yellow -o green h -t 444.331397918 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 444.331412918 -s 3 -S COLOR -c yellow -o green r -t 444.331412918 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 236 -k AGT n -t 444.331550753 -s 0 -S COLOR -c yellow -o green r -t 444.331550753 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 446.401755249 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 237 -k AGT - -t 446.401755249 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 237 -k AGT n -t 446.401755249 -s 2 -S COLOR -c red -o yellow h -t 446.401755249 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 237 -k AGT + -t 446.401830249 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 446.401830249 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 446.401830249 -s 2 -S COLOR -c red -o yellow h -t 446.401830249 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 446.402007050 -s 0 -S COLOR -c yellow -o green r -t 446.402007050 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 446.402017050 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 446.402017050 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 446.402017050 -s 0 -S COLOR -c yellow -o green h -t 446.402017050 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 446.402169850 -s 2 -S COLOR -c red -o yellow r -t 446.402169850 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 446.402219850 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 237 -k MAC - -t 446.402219850 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 237 -k MAC n -t 446.402219850 -s 2 -S COLOR -c red -o yellow h -t 446.402219850 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 237 -k MAC n -t 446.404604651 -s 0 -S COLOR -c yellow -o green r -t 446.404604651 -s 0 -d 0 -p cbr -e 544 -c 2 -a 0 -i 237 -k MAC + -t 446.404614651 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 446.404614651 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 446.404614651 -s 0 -S COLOR -c yellow -o green h -t 446.404614651 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 446.404767451 -s 2 -S COLOR -c red -o yellow r -t 446.404767451 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 446.404816651 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 446.404816651 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 446.404816651 -s 0 -S COLOR -c yellow -o green h -t 446.404816651 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 446.404993486 -s 3 -S COLOR -c yellow -o green r -t 446.404993486 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 446.405003486 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 446.405003486 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 446.405003486 -s 3 -S COLOR -c yellow -o green h -t 446.405003486 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 446.405156322 -s 0 -S COLOR -c yellow -o green r -t 446.405156322 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 446.405206322 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 237 -k MAC - -t 446.405206322 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 237 -k MAC n -t 446.405206322 -s 0 -S COLOR -c yellow -o green h -t 446.405206322 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 237 -k MAC n -t 446.407591157 -s 3 -S COLOR -c yellow -o green r -t 446.407591157 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 237 -k MAC + -t 446.407601157 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 446.407601157 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 446.407601157 -s 3 -S COLOR -c yellow -o green h -t 446.407601157 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 446.407616157 -s 3 -S COLOR -c yellow -o green r -t 446.407616157 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 237 -k AGT n -t 446.407753993 -s 0 -S COLOR -c yellow -o green r -t 446.407753993 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 448.649407505 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 238 -k AGT - -t 448.649407505 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 238 -k AGT n -t 448.649407505 -s 2 -S COLOR -c red -o yellow h -t 448.649407505 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 238 -k AGT + -t 448.649482505 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 448.649482505 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 448.649482505 -s 2 -S COLOR -c red -o yellow h -t 448.649482505 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 448.649659305 -s 0 -S COLOR -c yellow -o green r -t 448.649659305 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 448.649669305 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 448.649669305 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 448.649669305 -s 0 -S COLOR -c yellow -o green h -t 448.649669305 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 448.649822105 -s 2 -S COLOR -c red -o yellow r -t 448.649822105 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 448.649872105 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 238 -k MAC - -t 448.649872105 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 238 -k MAC n -t 448.649872105 -s 2 -S COLOR -c red -o yellow h -t 448.649872105 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 238 -k MAC n -t 448.652256905 -s 0 -S COLOR -c yellow -o green r -t 448.652256905 -s 0 -d 0 -p cbr -e 544 -c 2 -a 0 -i 238 -k MAC + -t 448.652266905 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 448.652266905 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 448.652266905 -s 0 -S COLOR -c yellow -o green h -t 448.652266905 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 448.652419706 -s 2 -S COLOR -c red -o yellow r -t 448.652419706 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 448.652748905 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 448.652748905 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 448.652748905 -s 0 -S COLOR -c yellow -o green h -t 448.652748905 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 448.652925741 -s 3 -S COLOR -c yellow -o green r -t 448.652925741 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 448.652935741 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 448.652935741 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 448.652935741 -s 3 -S COLOR -c yellow -o green h -t 448.652935741 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 448.653088577 -s 0 -S COLOR -c yellow -o green r -t 448.653088577 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 448.653138577 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 238 -k MAC - -t 448.653138577 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 238 -k MAC n -t 448.653138577 -s 0 -S COLOR -c yellow -o green h -t 448.653138577 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 238 -k MAC n -t 448.655523412 -s 3 -S COLOR -c yellow -o green r -t 448.655523412 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 238 -k MAC + -t 448.655533412 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 448.655533412 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 448.655533412 -s 3 -S COLOR -c yellow -o green h -t 448.655533412 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 448.655548412 -s 3 -S COLOR -c yellow -o green r -t 448.655548412 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 238 -k AGT n -t 448.655686248 -s 0 -S COLOR -c yellow -o green r -t 448.655686248 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 449.728918253 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 239 -k AGT - -t 449.728918253 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 239 -k AGT n -t 449.728918253 -s 2 -S COLOR -c red -o yellow h -t 449.728918253 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 239 -k AGT + -t 449.728993253 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 449.728993253 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 449.728993253 -s 2 -S COLOR -c red -o yellow h -t 449.728993253 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 449.729170053 -s 0 -S COLOR -c yellow -o green r -t 449.729170053 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 449.729180053 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 449.729180053 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 449.729180053 -s 0 -S COLOR -c yellow -o green h -t 449.729180053 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 449.729332853 -s 2 -S COLOR -c red -o yellow r -t 449.729332853 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 449.729382853 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 239 -k MAC - -t 449.729382853 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 239 -k MAC n -t 449.729382853 -s 2 -S COLOR -c red -o yellow h -t 449.729382853 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 239 -k MAC n -t 449.731767654 -s 0 -S COLOR -c yellow -o green r -t 449.731767654 -s 0 -d 0 -p cbr -e 544 -c 2 -a 0 -i 239 -k MAC + -t 449.731777654 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 449.731777654 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 449.731777654 -s 0 -S COLOR -c yellow -o green h -t 449.731777654 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 449.731930454 -s 2 -S COLOR -c red -o yellow r -t 449.731930454 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 449.731999654 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 449.731999654 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 449.731999654 -s 0 -S COLOR -c yellow -o green h -t 449.731999654 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 449.732176489 -s 3 -S COLOR -c yellow -o green r -t 449.732176489 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 449.732186489 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 449.732186489 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 449.732186489 -s 3 -S COLOR -c yellow -o green h -t 449.732186489 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 449.732339325 -s 0 -S COLOR -c yellow -o green r -t 449.732339325 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 449.732389325 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 239 -k MAC - -t 449.732389325 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 239 -k MAC n -t 449.732389325 -s 0 -S COLOR -c yellow -o green h -t 449.732389325 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 239 -k MAC n -t 449.734774160 -s 3 -S COLOR -c yellow -o green r -t 449.734774160 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 239 -k MAC + -t 449.734784160 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 449.734784160 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 449.734784160 -s 3 -S COLOR -c yellow -o green h -t 449.734784160 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 449.734799160 -s 3 -S COLOR -c yellow -o green r -t 449.734799160 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 239 -k AGT n -t 449.734936996 -s 0 -S COLOR -c yellow -o green r -t 449.734936996 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 451.285834331 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 240 -k AGT - -t 451.285834331 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 240 -k AGT n -t 451.285834331 -s 2 -S COLOR -c red -o yellow h -t 451.285834331 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 240 -k AGT + -t 451.285909331 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 451.285909331 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 451.285909331 -s 2 -S COLOR -c red -o yellow h -t 451.285909331 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 451.286086131 -s 0 -S COLOR -c yellow -o green r -t 451.286086131 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 451.286096131 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 451.286096131 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 451.286096131 -s 0 -S COLOR -c yellow -o green h -t 451.286096131 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 451.286248931 -s 2 -S COLOR -c red -o yellow r -t 451.286248931 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 451.286298931 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 240 -k MAC - -t 451.286298931 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 240 -k MAC n -t 451.286298931 -s 2 -S COLOR -c red -o yellow h -t 451.286298931 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 240 -k MAC n -t 451.288683731 -s 0 -S COLOR -c yellow -o green r -t 451.288683731 -s 0 -d 0 -p cbr -e 544 -c 2 -a 0 -i 240 -k MAC + -t 451.288693731 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 451.288693731 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 451.288693731 -s 0 -S COLOR -c yellow -o green h -t 451.288693731 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 451.288846531 -s 2 -S COLOR -c red -o yellow r -t 451.288846531 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 451.289195731 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 451.289195731 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 451.289195731 -s 0 -S COLOR -c yellow -o green h -t 451.289195731 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 451.289372566 -s 3 -S COLOR -c yellow -o green r -t 451.289372566 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 451.289382566 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 451.289382566 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 451.289382566 -s 3 -S COLOR -c yellow -o green h -t 451.289382566 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 451.289535402 -s 0 -S COLOR -c yellow -o green r -t 451.289535402 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 451.289585402 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 240 -k MAC - -t 451.289585402 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 240 -k MAC n -t 451.289585402 -s 0 -S COLOR -c yellow -o green h -t 451.289585402 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 240 -k MAC n -t 451.291970238 -s 3 -S COLOR -c yellow -o green r -t 451.291970238 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 240 -k MAC + -t 451.291980238 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 451.291980238 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 451.291980238 -s 3 -S COLOR -c yellow -o green h -t 451.291980238 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 451.291995238 -s 3 -S COLOR -c yellow -o green r -t 451.291995238 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 240 -k AGT n -t 451.292133073 -s 0 -S COLOR -c yellow -o green r -t 451.292133073 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 454.220131137 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 241 -k AGT - -t 454.220131137 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 241 -k AGT n -t 454.220131137 -s 2 -S COLOR -c red -o yellow h -t 454.220131137 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 241 -k AGT + -t 454.220206137 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 454.220206137 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 454.220206137 -s 2 -S COLOR -c red -o yellow h -t 454.220206137 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 454.220382937 -s 0 -S COLOR -c yellow -o green r -t 454.220382937 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 454.220392937 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 454.220392937 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 454.220392937 -s 0 -S COLOR -c yellow -o green h -t 454.220392937 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 454.220545737 -s 2 -S COLOR -c red -o yellow r -t 454.220545737 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 454.220595737 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 241 -k MAC - -t 454.220595737 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 241 -k MAC n -t 454.220595737 -s 2 -S COLOR -c red -o yellow h -t 454.220595737 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 241 -k MAC n -t 454.222980536 -s 0 -S COLOR -c yellow -o green r -t 454.222980536 -s 0 -d 0 -p cbr -e 544 -c 2 -a 0 -i 241 -k MAC + -t 454.222990536 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 454.222990536 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 454.222990536 -s 0 -S COLOR -c yellow -o green h -t 454.222990536 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 454.223143336 -s 2 -S COLOR -c red -o yellow r -t 454.223143336 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 454.223192536 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 454.223192536 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 454.223192536 -s 0 -S COLOR -c yellow -o green h -t 454.223192536 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 454.223369372 -s 3 -S COLOR -c yellow -o green r -t 454.223369372 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 454.223379372 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 454.223379372 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 454.223379372 -s 3 -S COLOR -c yellow -o green h -t 454.223379372 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 454.223532207 -s 0 -S COLOR -c yellow -o green r -t 454.223532207 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 454.223582207 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 241 -k MAC - -t 454.223582207 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 241 -k MAC n -t 454.223582207 -s 0 -S COLOR -c yellow -o green h -t 454.223582207 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 241 -k MAC n -t 454.225967043 -s 3 -S COLOR -c yellow -o green r -t 454.225967043 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 241 -k MAC + -t 454.225977043 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 454.225977043 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 454.225977043 -s 3 -S COLOR -c yellow -o green h -t 454.225977043 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 454.225992043 -s 3 -S COLOR -c yellow -o green r -t 454.225992043 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 241 -k AGT n -t 454.226129879 -s 0 -S COLOR -c yellow -o green r -t 454.226129879 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 455.565481081 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 242 -k AGT - -t 455.565481081 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 242 -k AGT n -t 455.565481081 -s 2 -S COLOR -c red -o yellow h -t 455.565481081 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 242 -k AGT + -t 455.565556081 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 455.565556081 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 455.565556081 -s 2 -S COLOR -c red -o yellow h -t 455.565556081 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 455.565732880 -s 0 -S COLOR -c yellow -o green r -t 455.565732880 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 455.565742880 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 455.565742880 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 455.565742880 -s 0 -S COLOR -c yellow -o green h -t 455.565742880 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 455.565895680 -s 2 -S COLOR -c red -o yellow r -t 455.565895680 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 455.565945680 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 242 -k MAC - -t 455.565945680 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 242 -k MAC n -t 455.565945680 -s 2 -S COLOR -c red -o yellow h -t 455.565945680 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 242 -k MAC n -t 455.568330479 -s 0 -S COLOR -c yellow -o green r -t 455.568330479 -s 0 -d 0 -p cbr -e 544 -c 2 -a 0 -i 242 -k MAC + -t 455.568340479 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 455.568340479 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 455.568340479 -s 0 -S COLOR -c yellow -o green h -t 455.568340479 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 455.568493279 -s 2 -S COLOR -c red -o yellow r -t 455.568493279 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 455.568702479 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 455.568702479 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 455.568702479 -s 0 -S COLOR -c yellow -o green h -t 455.568702479 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 455.568879315 -s 3 -S COLOR -c yellow -o green r -t 455.568879315 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 455.568889315 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 455.568889315 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 455.568889315 -s 3 -S COLOR -c yellow -o green h -t 455.568889315 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 455.569042150 -s 0 -S COLOR -c yellow -o green r -t 455.569042150 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 455.569092150 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 242 -k MAC - -t 455.569092150 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 242 -k MAC n -t 455.569092150 -s 0 -S COLOR -c yellow -o green h -t 455.569092150 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 242 -k MAC n -t 455.571476986 -s 3 -S COLOR -c yellow -o green r -t 455.571476986 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 242 -k MAC + -t 455.571486986 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 455.571486986 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 455.571486986 -s 3 -S COLOR -c yellow -o green h -t 455.571486986 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 455.571501986 -s 3 -S COLOR -c yellow -o green r -t 455.571501986 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 242 -k AGT n -t 455.571639822 -s 0 -S COLOR -c yellow -o green r -t 455.571639822 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 457.618275287 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 243 -k AGT - -t 457.618275287 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 243 -k AGT n -t 457.618275287 -s 2 -S COLOR -c red -o yellow h -t 457.618275287 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 243 -k AGT + -t 457.618350287 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 457.618350287 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 457.618350287 -s 2 -S COLOR -c red -o yellow h -t 457.618350287 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 457.618527086 -s 0 -S COLOR -c yellow -o green r -t 457.618527086 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 457.618537086 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 457.618537086 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 457.618537086 -s 0 -S COLOR -c yellow -o green h -t 457.618537086 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 457.618689886 -s 2 -S COLOR -c red -o yellow r -t 457.618689886 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 457.618739886 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 243 -k MAC - -t 457.618739886 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 243 -k MAC n -t 457.618739886 -s 2 -S COLOR -c red -o yellow h -t 457.618739886 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 243 -k MAC n -t 457.621124685 -s 0 -S COLOR -c yellow -o green r -t 457.621124685 -s 0 -d 0 -p cbr -e 544 -c 2 -a 0 -i 243 -k MAC + -t 457.621134685 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 457.621134685 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 457.621134685 -s 0 -S COLOR -c yellow -o green h -t 457.621134685 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 457.621287484 -s 2 -S COLOR -c red -o yellow r -t 457.621287484 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 457.621476685 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 457.621476685 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 457.621476685 -s 0 -S COLOR -c yellow -o green h -t 457.621476685 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 457.621653521 -s 3 -S COLOR -c yellow -o green r -t 457.621653521 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 457.621663521 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 457.621663521 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 457.621663521 -s 3 -S COLOR -c yellow -o green h -t 457.621663521 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 457.621816356 -s 0 -S COLOR -c yellow -o green r -t 457.621816356 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 457.621866356 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 243 -k MAC - -t 457.621866356 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 243 -k MAC n -t 457.621866356 -s 0 -S COLOR -c yellow -o green h -t 457.621866356 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 243 -k MAC n -t 457.624251192 -s 3 -S COLOR -c yellow -o green r -t 457.624251192 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 243 -k MAC + -t 457.624261192 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 457.624261192 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 457.624261192 -s 3 -S COLOR -c yellow -o green h -t 457.624261192 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 457.624276192 -s 3 -S COLOR -c yellow -o green r -t 457.624276192 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 243 -k AGT n -t 457.624414027 -s 0 -S COLOR -c yellow -o green r -t 457.624414027 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 460.015107086 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 244 -k AGT - -t 460.015107086 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 244 -k AGT n -t 460.015107086 -s 2 -S COLOR -c red -o yellow h -t 460.015107086 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 244 -k AGT + -t 460.015182086 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 460.015182086 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 460.015182086 -s 2 -S COLOR -c red -o yellow h -t 460.015182086 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 460.015358885 -s 0 -S COLOR -c yellow -o green r -t 460.015358885 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 460.015368885 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 460.015368885 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 460.015368885 -s 0 -S COLOR -c yellow -o green h -t 460.015368885 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 460.015521684 -s 2 -S COLOR -c red -o yellow r -t 460.015521684 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 460.015571684 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 244 -k MAC - -t 460.015571684 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 244 -k MAC n -t 460.015571684 -s 2 -S COLOR -c red -o yellow h -t 460.015571684 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 244 -k MAC n -t 460.017956483 -s 0 -S COLOR -c yellow -o green r -t 460.017956483 -s 0 -d 0 -p cbr -e 544 -c 2 -a 0 -i 244 -k MAC + -t 460.017966483 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 460.017966483 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 460.017966483 -s 0 -S COLOR -c yellow -o green h -t 460.017966483 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 460.018119282 -s 2 -S COLOR -c red -o yellow r -t 460.018119282 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 460.018368483 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 460.018368483 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 460.018368483 -s 0 -S COLOR -c yellow -o green h -t 460.018368483 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 460.018545319 -s 3 -S COLOR -c yellow -o green r -t 460.018545319 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 460.018555319 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 460.018555319 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 460.018555319 -s 3 -S COLOR -c yellow -o green h -t 460.018555319 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 460.018708155 -s 0 -S COLOR -c yellow -o green r -t 460.018708155 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 460.018758155 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 244 -k MAC - -t 460.018758155 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 244 -k MAC n -t 460.018758155 -s 0 -S COLOR -c yellow -o green h -t 460.018758155 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 244 -k MAC n -t 460.021142990 -s 3 -S COLOR -c yellow -o green r -t 460.021142990 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 244 -k MAC + -t 460.021152990 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 460.021152990 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 460.021152990 -s 3 -S COLOR -c yellow -o green h -t 460.021152990 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 460.021167990 -s 3 -S COLOR -c yellow -o green r -t 460.021167990 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 244 -k AGT n -t 460.021305826 -s 0 -S COLOR -c yellow -o green r -t 460.021305826 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 461.897319304 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 245 -k AGT - -t 461.897319304 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 245 -k AGT n -t 461.897319304 -s 2 -S COLOR -c red -o yellow h -t 461.897319304 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 245 -k AGT + -t 461.897394304 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 461.897394304 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 461.897394304 -s 2 -S COLOR -c red -o yellow h -t 461.897394304 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 461.897571103 -s 0 -S COLOR -c yellow -o green r -t 461.897571103 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 461.897581103 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 461.897581103 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 461.897581103 -s 0 -S COLOR -c yellow -o green h -t 461.897581103 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 461.897733902 -s 2 -S COLOR -c red -o yellow r -t 461.897733902 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 461.897783902 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 245 -k MAC - -t 461.897783902 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 245 -k MAC n -t 461.897783902 -s 2 -S COLOR -c red -o yellow h -t 461.897783902 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 245 -k MAC n -t 461.900168701 -s 0 -S COLOR -c yellow -o green r -t 461.900168701 -s 0 -d 0 -p cbr -e 544 -c 2 -a 0 -i 245 -k MAC + -t 461.900178701 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 461.900178701 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 461.900178701 -s 0 -S COLOR -c yellow -o green h -t 461.900178701 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 461.900331500 -s 2 -S COLOR -c red -o yellow r -t 461.900331500 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 461.900860701 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 461.900860701 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 461.900860701 -s 0 -S COLOR -c yellow -o green h -t 461.900860701 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 461.901037537 -s 3 -S COLOR -c yellow -o green r -t 461.901037537 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 461.901047537 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 461.901047537 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 461.901047537 -s 3 -S COLOR -c yellow -o green h -t 461.901047537 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 461.901200372 -s 0 -S COLOR -c yellow -o green r -t 461.901200372 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 461.901250372 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 245 -k MAC - -t 461.901250372 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 245 -k MAC n -t 461.901250372 -s 0 -S COLOR -c yellow -o green h -t 461.901250372 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 245 -k MAC n -t 461.903635208 -s 3 -S COLOR -c yellow -o green r -t 461.903635208 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 245 -k MAC + -t 461.903645208 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 461.903645208 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 461.903645208 -s 3 -S COLOR -c yellow -o green h -t 461.903645208 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 461.903660208 -s 3 -S COLOR -c yellow -o green r -t 461.903660208 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 245 -k AGT n -t 461.903798043 -s 0 -S COLOR -c yellow -o green r -t 461.903798043 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 462.991661486 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 246 -k AGT - -t 462.991661486 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 246 -k AGT n -t 462.991661486 -s 2 -S COLOR -c red -o yellow h -t 462.991661486 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 246 -k AGT + -t 462.991736486 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 462.991736486 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 462.991736486 -s 2 -S COLOR -c red -o yellow h -t 462.991736486 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 462.991913285 -s 0 -S COLOR -c yellow -o green r -t 462.991913285 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 462.991923285 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 462.991923285 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 462.991923285 -s 0 -S COLOR -c yellow -o green h -t 462.991923285 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 462.992076083 -s 2 -S COLOR -c red -o yellow r -t 462.992076083 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 462.992126083 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 246 -k MAC - -t 462.992126083 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 246 -k MAC n -t 462.992126083 -s 2 -S COLOR -c red -o yellow h -t 462.992126083 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 246 -k MAC n -t 462.994510882 -s 0 -S COLOR -c yellow -o green r -t 462.994510882 -s 0 -d 0 -p cbr -e 544 -c 2 -a 0 -i 246 -k MAC + -t 462.994520882 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 462.994520882 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 462.994520882 -s 0 -S COLOR -c yellow -o green h -t 462.994520882 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 462.994673681 -s 2 -S COLOR -c red -o yellow r -t 462.994673681 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 462.995122882 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 462.995122882 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 462.995122882 -s 0 -S COLOR -c yellow -o green h -t 462.995122882 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 462.995299718 -s 3 -S COLOR -c yellow -o green r -t 462.995299718 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 462.995309718 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 462.995309718 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 462.995309718 -s 3 -S COLOR -c yellow -o green h -t 462.995309718 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 462.995462553 -s 0 -S COLOR -c yellow -o green r -t 462.995462553 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 462.995512553 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 246 -k MAC - -t 462.995512553 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 246 -k MAC n -t 462.995512553 -s 0 -S COLOR -c yellow -o green h -t 462.995512553 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 246 -k MAC n -t 462.997897389 -s 3 -S COLOR -c yellow -o green r -t 462.997897389 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 246 -k MAC + -t 462.997907389 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 462.997907389 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 462.997907389 -s 3 -S COLOR -c yellow -o green h -t 462.997907389 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 462.997922389 -s 3 -S COLOR -c yellow -o green r -t 462.997922389 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 246 -k AGT n -t 462.998060225 -s 0 -S COLOR -c yellow -o green r -t 462.998060225 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 464.918970371 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 247 -k AGT - -t 464.918970371 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 247 -k AGT n -t 464.918970371 -s 2 -S COLOR -c red -o yellow h -t 464.918970371 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 247 -k AGT + -t 464.919045371 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 464.919045371 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 464.919045371 -s 2 -S COLOR -c red -o yellow h -t 464.919045371 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 464.919222169 -s 0 -S COLOR -c yellow -o green r -t 464.919222169 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 464.919232169 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 464.919232169 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 464.919232169 -s 0 -S COLOR -c yellow -o green h -t 464.919232169 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 464.919384968 -s 2 -S COLOR -c red -o yellow r -t 464.919384968 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 464.919434968 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 247 -k MAC - -t 464.919434968 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 247 -k MAC n -t 464.919434968 -s 2 -S COLOR -c red -o yellow h -t 464.919434968 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 247 -k MAC n -t 464.921819767 -s 0 -S COLOR -c yellow -o green r -t 464.921819767 -s 0 -d 0 -p cbr -e 544 -c 2 -a 0 -i 247 -k MAC + -t 464.921829767 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 464.921829767 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 464.921829767 -s 0 -S COLOR -c yellow -o green h -t 464.921829767 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 464.921982565 -s 2 -S COLOR -c red -o yellow r -t 464.921982565 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 464.922491767 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 464.922491767 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 464.922491767 -s 0 -S COLOR -c yellow -o green h -t 464.922491767 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 464.922668602 -s 3 -S COLOR -c yellow -o green r -t 464.922668602 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 464.922678602 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 464.922678602 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 464.922678602 -s 3 -S COLOR -c yellow -o green h -t 464.922678602 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 464.922831438 -s 0 -S COLOR -c yellow -o green r -t 464.922831438 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 464.922881438 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 247 -k MAC - -t 464.922881438 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 247 -k MAC n -t 464.922881438 -s 0 -S COLOR -c yellow -o green h -t 464.922881438 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 247 -k MAC n -t 464.925266273 -s 3 -S COLOR -c yellow -o green r -t 464.925266273 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 247 -k MAC + -t 464.925276273 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 464.925276273 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 464.925276273 -s 3 -S COLOR -c yellow -o green h -t 464.925276273 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 464.925291273 -s 3 -S COLOR -c yellow -o green r -t 464.925291273 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 247 -k AGT n -t 464.925429109 -s 0 -S COLOR -c yellow -o green r -t 464.925429109 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 465.323412 -s 4 -x 655.765713 -y 624.339402 -u 0.000000 -v 0.000000 -T 0.000000 + -t 465.930827672 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 248 -k AGT - -t 465.930827672 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 248 -k AGT n -t 465.930827672 -s 2 -S COLOR -c red -o yellow h -t 465.930827672 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 248 -k AGT + -t 465.930902672 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 465.930902672 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 465.930902672 -s 2 -S COLOR -c red -o yellow h -t 465.930902672 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 465.931079471 -s 0 -S COLOR -c yellow -o green r -t 465.931079471 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 465.931089471 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 465.931089471 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 465.931089471 -s 0 -S COLOR -c yellow -o green h -t 465.931089471 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 465.931242270 -s 2 -S COLOR -c red -o yellow r -t 465.931242270 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 465.931292270 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 248 -k MAC - -t 465.931292270 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 248 -k MAC n -t 465.931292270 -s 2 -S COLOR -c red -o yellow h -t 465.931292270 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 248 -k MAC n -t 465.933677068 -s 0 -S COLOR -c yellow -o green r -t 465.933677068 -s 0 -d 0 -p cbr -e 544 -c 2 -a 0 -i 248 -k MAC + -t 465.933687068 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 465.933687068 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 465.933687068 -s 0 -S COLOR -c yellow -o green h -t 465.933687068 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 465.933839867 -s 2 -S COLOR -c red -o yellow r -t 465.933839867 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 465.934329068 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 465.934329068 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 465.934329068 -s 0 -S COLOR -c yellow -o green h -t 465.934329068 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 465.934505904 -s 3 -S COLOR -c yellow -o green r -t 465.934505904 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 465.934515904 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 465.934515904 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 465.934515904 -s 3 -S COLOR -c yellow -o green h -t 465.934515904 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 465.934668739 -s 0 -S COLOR -c yellow -o green r -t 465.934668739 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 465.934718739 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 248 -k MAC - -t 465.934718739 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 248 -k MAC n -t 465.934718739 -s 0 -S COLOR -c yellow -o green h -t 465.934718739 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 248 -k MAC n -t 465.937103575 -s 3 -S COLOR -c yellow -o green r -t 465.937103575 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 248 -k MAC + -t 465.937113575 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 465.937113575 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 465.937113575 -s 3 -S COLOR -c yellow -o green h -t 465.937113575 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 465.937128575 -s 3 -S COLOR -c yellow -o green r -t 465.937128575 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 248 -k AGT n -t 465.937266410 -s 0 -S COLOR -c yellow -o green r -t 465.937266410 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 468.631754178 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 249 -k AGT - -t 468.631754178 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 249 -k AGT n -t 468.631754178 -s 2 -S COLOR -c red -o yellow h -t 468.631754178 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 249 -k AGT + -t 468.631829178 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 468.631829178 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 468.631829178 -s 2 -S COLOR -c red -o yellow h -t 468.631829178 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 468.632005977 -s 0 -S COLOR -c yellow -o green r -t 468.632005977 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 468.632015977 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 468.632015977 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 468.632015977 -s 0 -S COLOR -c yellow -o green h -t 468.632015977 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 468.632168775 -s 2 -S COLOR -c red -o yellow r -t 468.632168775 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 468.632218775 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 249 -k MAC - -t 468.632218775 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 249 -k MAC n -t 468.632218775 -s 2 -S COLOR -c red -o yellow h -t 468.632218775 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 249 -k MAC n -t 468.634603573 -s 0 -S COLOR -c yellow -o green r -t 468.634603573 -s 0 -d 0 -p cbr -e 544 -c 2 -a 0 -i 249 -k MAC + -t 468.634613573 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 468.634613573 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 468.634613573 -s 0 -S COLOR -c yellow -o green h -t 468.634613573 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 468.634766371 -s 2 -S COLOR -c red -o yellow r -t 468.634766371 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 468.634975573 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 468.634975573 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 468.634975573 -s 0 -S COLOR -c yellow -o green h -t 468.634975573 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 468.635152409 -s 3 -S COLOR -c yellow -o green r -t 468.635152409 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 468.635162409 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 468.635162409 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 468.635162409 -s 3 -S COLOR -c yellow -o green h -t 468.635162409 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 468.635315244 -s 0 -S COLOR -c yellow -o green r -t 468.635315244 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 468.635365244 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 249 -k MAC - -t 468.635365244 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 249 -k MAC n -t 468.635365244 -s 0 -S COLOR -c yellow -o green h -t 468.635365244 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 249 -k MAC n -t 468.637750080 -s 3 -S COLOR -c yellow -o green r -t 468.637750080 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 249 -k MAC + -t 468.637760080 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 468.637760080 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 468.637760080 -s 3 -S COLOR -c yellow -o green h -t 468.637760080 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 468.637775080 -s 3 -S COLOR -c yellow -o green r -t 468.637775080 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 249 -k AGT n -t 468.637912915 -s 0 -S COLOR -c yellow -o green r -t 468.637912915 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 471.140421978 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 250 -k AGT - -t 471.140421978 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 250 -k AGT n -t 471.140421978 -s 2 -S COLOR -c red -o yellow h -t 471.140421978 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 250 -k AGT + -t 471.140496978 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 471.140496978 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 471.140496978 -s 2 -S COLOR -c red -o yellow h -t 471.140496978 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 471.140673776 -s 0 -S COLOR -c yellow -o green r -t 471.140673776 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 471.140683776 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 471.140683776 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 471.140683776 -s 0 -S COLOR -c yellow -o green h -t 471.140683776 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 471.140836574 -s 2 -S COLOR -c red -o yellow r -t 471.140836574 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 471.140886574 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 250 -k MAC - -t 471.140886574 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 250 -k MAC n -t 471.140886574 -s 2 -S COLOR -c red -o yellow h -t 471.140886574 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 250 -k MAC n -t 471.143271372 -s 0 -S COLOR -c yellow -o green r -t 471.143271372 -s 0 -d 0 -p cbr -e 544 -c 2 -a 0 -i 250 -k MAC + -t 471.143281372 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 471.143281372 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 471.143281372 -s 0 -S COLOR -c yellow -o green h -t 471.143281372 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 471.143434170 -s 2 -S COLOR -c red -o yellow r -t 471.143434170 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 471.143643372 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 471.143643372 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 471.143643372 -s 0 -S COLOR -c yellow -o green h -t 471.143643372 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 471.143820207 -s 3 -S COLOR -c yellow -o green r -t 471.143820207 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 471.143830207 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 471.143830207 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 471.143830207 -s 3 -S COLOR -c yellow -o green h -t 471.143830207 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 471.143983043 -s 0 -S COLOR -c yellow -o green r -t 471.143983043 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 471.144033043 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 250 -k MAC - -t 471.144033043 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 250 -k MAC n -t 471.144033043 -s 0 -S COLOR -c yellow -o green h -t 471.144033043 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 250 -k MAC n -t 471.146417878 -s 3 -S COLOR -c yellow -o green r -t 471.146417878 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 250 -k MAC + -t 471.146427878 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 471.146427878 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 471.146427878 -s 3 -S COLOR -c yellow -o green h -t 471.146427878 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 471.146442878 -s 3 -S COLOR -c yellow -o green r -t 471.146442878 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 250 -k AGT n -t 471.146580714 -s 0 -S COLOR -c yellow -o green r -t 471.146580714 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 472.993838873 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 251 -k AGT - -t 472.993838873 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 251 -k AGT n -t 472.993838873 -s 2 -S COLOR -c red -o yellow h -t 472.993838873 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 251 -k AGT + -t 472.993913873 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 472.993913873 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 472.993913873 -s 2 -S COLOR -c red -o yellow h -t 472.993913873 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 472.994090671 -s 0 -S COLOR -c yellow -o green r -t 472.994090671 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 472.994100671 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 472.994100671 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 472.994100671 -s 0 -S COLOR -c yellow -o green h -t 472.994100671 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 472.994253469 -s 2 -S COLOR -c red -o yellow r -t 472.994253469 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 472.994303469 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 251 -k MAC - -t 472.994303469 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 251 -k MAC n -t 472.994303469 -s 2 -S COLOR -c red -o yellow h -t 472.994303469 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 251 -k MAC n -t 472.996688267 -s 0 -S COLOR -c yellow -o green r -t 472.996688267 -s 0 -d 0 -p cbr -e 544 -c 2 -a 0 -i 251 -k MAC + -t 472.996698267 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 472.996698267 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 472.996698267 -s 0 -S COLOR -c yellow -o green h -t 472.996698267 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 472.996851065 -s 2 -S COLOR -c red -o yellow r -t 472.996851065 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 472.996960267 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 472.996960267 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 472.996960267 -s 0 -S COLOR -c yellow -o green h -t 472.996960267 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 472.997137103 -s 3 -S COLOR -c yellow -o green r -t 472.997137103 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 472.997147103 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 472.997147103 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 472.997147103 -s 3 -S COLOR -c yellow -o green h -t 472.997147103 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 472.997299938 -s 0 -S COLOR -c yellow -o green r -t 472.997299938 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 472.997349938 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 251 -k MAC - -t 472.997349938 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 251 -k MAC n -t 472.997349938 -s 0 -S COLOR -c yellow -o green h -t 472.997349938 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 251 -k MAC n -t 472.999734774 -s 3 -S COLOR -c yellow -o green r -t 472.999734774 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 251 -k MAC + -t 472.999744774 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 472.999744774 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 472.999744774 -s 3 -S COLOR -c yellow -o green h -t 472.999744774 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 472.999759774 -s 3 -S COLOR -c yellow -o green r -t 472.999759774 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 251 -k AGT n -t 472.999897609 -s 0 -S COLOR -c yellow -o green r -t 472.999897609 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 473.153941 -s 3 -x 139.282033 -y 603.124495 -u 0.000000 -v 0.000000 -T 0.000000 + -t 474.362749863 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 252 -k AGT - -t 474.362749863 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 252 -k AGT n -t 474.362749863 -s 2 -S COLOR -c red -o yellow h -t 474.362749863 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 252 -k AGT + -t 474.362824863 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 474.362824863 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 474.362824863 -s 2 -S COLOR -c red -o yellow h -t 474.362824863 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 474.363001661 -s 0 -S COLOR -c yellow -o green r -t 474.363001661 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 474.363011661 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 474.363011661 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 474.363011661 -s 0 -S COLOR -c yellow -o green h -t 474.363011661 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 474.363164459 -s 2 -S COLOR -c red -o yellow r -t 474.363164459 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 474.363214459 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 252 -k MAC - -t 474.363214459 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 252 -k MAC n -t 474.363214459 -s 2 -S COLOR -c red -o yellow h -t 474.363214459 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 252 -k MAC n -t 474.365599257 -s 0 -S COLOR -c yellow -o green r -t 474.365599257 -s 0 -d 0 -p cbr -e 544 -c 2 -a 0 -i 252 -k MAC + -t 474.365609257 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 474.365609257 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 474.365609257 -s 0 -S COLOR -c yellow -o green h -t 474.365609257 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 474.365762054 -s 2 -S COLOR -c red -o yellow r -t 474.365762054 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 474.366011257 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 474.366011257 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 474.366011257 -s 0 -S COLOR -c yellow -o green h -t 474.366011257 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 474.366188092 -s 3 -S COLOR -c yellow -o green r -t 474.366188092 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 474.366198092 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 474.366198092 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 474.366198092 -s 3 -S COLOR -c yellow -o green h -t 474.366198092 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 474.366350928 -s 0 -S COLOR -c yellow -o green r -t 474.366350928 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 474.366400928 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 252 -k MAC - -t 474.366400928 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 252 -k MAC n -t 474.366400928 -s 0 -S COLOR -c yellow -o green h -t 474.366400928 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 252 -k MAC n -t 474.368785763 -s 3 -S COLOR -c yellow -o green r -t 474.368785763 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 252 -k MAC + -t 474.368795763 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 474.368795763 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 474.368795763 -s 3 -S COLOR -c yellow -o green h -t 474.368795763 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 474.368810763 -s 3 -S COLOR -c yellow -o green r -t 474.368810763 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 252 -k AGT n -t 474.368948599 -s 0 -S COLOR -c yellow -o green r -t 474.368948599 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 476.119934607 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 253 -k AGT - -t 476.119934607 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 253 -k AGT n -t 476.119934607 -s 2 -S COLOR -c red -o yellow h -t 476.119934607 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 253 -k AGT + -t 476.120009607 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 476.120009607 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 476.120009607 -s 2 -S COLOR -c red -o yellow h -t 476.120009607 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 476.120186404 -s 0 -S COLOR -c yellow -o green r -t 476.120186404 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 476.120196404 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 476.120196404 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 476.120196404 -s 0 -S COLOR -c yellow -o green h -t 476.120196404 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 476.120349202 -s 2 -S COLOR -c red -o yellow r -t 476.120349202 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 476.120399202 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 253 -k MAC - -t 476.120399202 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 253 -k MAC n -t 476.120399202 -s 2 -S COLOR -c red -o yellow h -t 476.120399202 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 253 -k MAC n -t 476.122783999 -s 0 -S COLOR -c yellow -o green r -t 476.122783999 -s 0 -d 0 -p cbr -e 544 -c 2 -a 0 -i 253 -k MAC + -t 476.122793999 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 476.122793999 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 476.122793999 -s 0 -S COLOR -c yellow -o green h -t 476.122793999 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 476.122946797 -s 2 -S COLOR -c red -o yellow r -t 476.122946797 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 476.123155999 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 476.123155999 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 476.123155999 -s 0 -S COLOR -c yellow -o green h -t 476.123155999 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 476.123332835 -s 3 -S COLOR -c yellow -o green r -t 476.123332835 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 476.123342835 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 476.123342835 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 476.123342835 -s 3 -S COLOR -c yellow -o green h -t 476.123342835 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 476.123495670 -s 0 -S COLOR -c yellow -o green r -t 476.123495670 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 476.123545670 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 253 -k MAC - -t 476.123545670 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 253 -k MAC n -t 476.123545670 -s 0 -S COLOR -c yellow -o green h -t 476.123545670 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 253 -k MAC n -t 476.125930506 -s 3 -S COLOR -c yellow -o green r -t 476.125930506 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 253 -k MAC + -t 476.125940506 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 476.125940506 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 476.125940506 -s 3 -S COLOR -c yellow -o green h -t 476.125940506 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 476.125955506 -s 3 -S COLOR -c yellow -o green r -t 476.125955506 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 253 -k AGT n -t 476.126093342 -s 0 -S COLOR -c yellow -o green r -t 476.126093342 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 478.444800470 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 254 -k AGT - -t 478.444800470 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 254 -k AGT n -t 478.444800470 -s 2 -S COLOR -c red -o yellow h -t 478.444800470 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 254 -k AGT + -t 478.444875470 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 478.444875470 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 478.444875470 -s 2 -S COLOR -c red -o yellow h -t 478.444875470 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 478.445052267 -s 0 -S COLOR -c yellow -o green r -t 478.445052267 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 478.445062267 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 478.445062267 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 478.445062267 -s 0 -S COLOR -c yellow -o green h -t 478.445062267 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 478.445215065 -s 2 -S COLOR -c red -o yellow r -t 478.445215065 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 478.445265065 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 254 -k MAC - -t 478.445265065 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 254 -k MAC n -t 478.445265065 -s 2 -S COLOR -c red -o yellow h -t 478.445265065 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 254 -k MAC n -t 478.447649862 -s 0 -S COLOR -c yellow -o green r -t 478.447649862 -s 0 -d 0 -p cbr -e 544 -c 2 -a 0 -i 254 -k MAC + -t 478.447659862 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 478.447659862 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 478.447659862 -s 0 -S COLOR -c yellow -o green h -t 478.447659862 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 478.447812659 -s 2 -S COLOR -c red -o yellow r -t 478.447812659 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 478.447921862 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 478.447921862 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 478.447921862 -s 0 -S COLOR -c yellow -o green h -t 478.447921862 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 478.448098697 -s 3 -S COLOR -c yellow -o green r -t 478.448098697 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 478.448108697 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 478.448108697 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 478.448108697 -s 3 -S COLOR -c yellow -o green h -t 478.448108697 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 478.448261533 -s 0 -S COLOR -c yellow -o green r -t 478.448261533 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 478.448311533 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 254 -k MAC - -t 478.448311533 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 254 -k MAC n -t 478.448311533 -s 0 -S COLOR -c yellow -o green h -t 478.448311533 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 254 -k MAC n -t 478.450696369 -s 3 -S COLOR -c yellow -o green r -t 478.450696369 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 254 -k MAC + -t 478.450706369 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 478.450706369 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 478.450706369 -s 3 -S COLOR -c yellow -o green h -t 478.450706369 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 478.450721369 -s 3 -S COLOR -c yellow -o green r -t 478.450721369 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 254 -k AGT n -t 478.450859204 -s 0 -S COLOR -c yellow -o green r -t 478.450859204 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 480.589344368 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 255 -k AGT - -t 480.589344368 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 255 -k AGT n -t 480.589344368 -s 2 -S COLOR -c red -o yellow h -t 480.589344368 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 255 -k AGT + -t 480.589419368 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 480.589419368 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 480.589419368 -s 2 -S COLOR -c red -o yellow h -t 480.589419368 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 480.589596165 -s 0 -S COLOR -c yellow -o green r -t 480.589596165 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 480.589606165 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 480.589606165 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 480.589606165 -s 0 -S COLOR -c yellow -o green h -t 480.589606165 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 480.589758962 -s 2 -S COLOR -c red -o yellow r -t 480.589758962 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 480.589808962 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 255 -k MAC - -t 480.589808962 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 255 -k MAC n -t 480.589808962 -s 2 -S COLOR -c red -o yellow h -t 480.589808962 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 255 -k MAC n -t 480.592193759 -s 0 -S COLOR -c yellow -o green r -t 480.592193759 -s 0 -d 0 -p cbr -e 544 -c 2 -a 0 -i 255 -k MAC + -t 480.592203759 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 480.592203759 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 480.592203759 -s 0 -S COLOR -c yellow -o green h -t 480.592203759 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 480.592356556 -s 2 -S COLOR -c red -o yellow r -t 480.592356556 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 480.592505759 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 480.592505759 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 480.592505759 -s 0 -S COLOR -c yellow -o green h -t 480.592505759 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 480.592682595 -s 3 -S COLOR -c yellow -o green r -t 480.592682595 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 480.592692595 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 480.592692595 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 480.592692595 -s 3 -S COLOR -c yellow -o green h -t 480.592692595 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 480.592845430 -s 0 -S COLOR -c yellow -o green r -t 480.592845430 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 480.592895430 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 255 -k MAC - -t 480.592895430 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 255 -k MAC n -t 480.592895430 -s 0 -S COLOR -c yellow -o green h -t 480.592895430 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 255 -k MAC n -t 480.595280266 -s 3 -S COLOR -c yellow -o green r -t 480.595280266 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 255 -k MAC + -t 480.595290266 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 480.595290266 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 480.595290266 -s 3 -S COLOR -c yellow -o green h -t 480.595290266 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 480.595305266 -s 3 -S COLOR -c yellow -o green r -t 480.595305266 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 255 -k AGT n -t 480.595443101 -s 0 -S COLOR -c yellow -o green r -t 480.595443101 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 481.661288247 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 256 -k AGT - -t 481.661288247 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 256 -k AGT n -t 481.661288247 -s 2 -S COLOR -c red -o yellow h -t 481.661288247 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 256 -k AGT + -t 481.661363247 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 481.661363247 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 481.661363247 -s 2 -S COLOR -c red -o yellow h -t 481.661363247 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 481.661540044 -s 0 -S COLOR -c yellow -o green r -t 481.661540044 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 481.661550044 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 481.661550044 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 481.661550044 -s 0 -S COLOR -c yellow -o green h -t 481.661550044 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 481.661702841 -s 2 -S COLOR -c red -o yellow r -t 481.661702841 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 481.661752841 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 256 -k MAC - -t 481.661752841 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 256 -k MAC n -t 481.661752841 -s 2 -S COLOR -c red -o yellow h -t 481.661752841 -s 2 -d 0 -p cbr -e 596 -c 2 -a 0 -i 256 -k MAC n -t 481.664137638 -s 0 -S COLOR -c yellow -o green r -t 481.664137638 -s 0 -d 0 -p cbr -e 544 -c 2 -a 0 -i 256 -k MAC + -t 481.664147638 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 481.664147638 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 481.664147638 -s 0 -S COLOR -c yellow -o green h -t 481.664147638 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 481.664689638 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 481.664689638 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 481.664689638 -s 0 -S COLOR -c yellow -o green h -t 481.664689638 -s 0 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 481.664866474 -s 3 -S COLOR -c yellow -o green r -t 481.664866474 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 481.664876474 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 481.664876474 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 481.664876474 -s 3 -S COLOR -c yellow -o green h -t 481.664876474 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 481.665029309 -s 0 -S COLOR -c yellow -o green r -t 481.665029309 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 481.665079309 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 256 -k MAC - -t 481.665079309 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 256 -k MAC n -t 481.665079309 -s 0 -S COLOR -c yellow -o green h -t 481.665079309 -s 0 -d 3 -p cbr -e 596 -c 2 -a 0 -i 256 -k MAC n -t 481.667464145 -s 3 -S COLOR -c yellow -o green r -t 481.667464145 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 256 -k MAC + -t 481.667474145 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 481.667474145 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 481.667474145 -s 3 -S COLOR -c yellow -o green h -t 481.667474145 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 481.667489145 -s 3 -S COLOR -c yellow -o green r -t 481.667489145 -s 3 -d 3 -p cbr -e 544 -c 2 -a 0 -i 256 -k AGT n -t 481.667626980 -s 0 -S COLOR -c yellow -o green r -t 481.667626980 -s 0 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC nam-1.15/ex/dynamic-nam.conf0000664000076400007660000000306306610761032014557 0ustar tomhnsnam#-*-Tcl-*- # # Copyright (C) 1997 by USC/ISI # All rights reserved. # # Redistribution and use in source and binary forms are permitted # provided that the above copyright notice and this paragraph are # duplicated in all such forms and that any documentation, advertising # materials, and other materials related to such distribution and use # acknowledge that the software was developed by the University of # Southern California, Information Sciences Institute. The name of the # University may not be used to endorse or promote products derived from # this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED # WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. # # # $Header: /cvsroot/nsnam/nam-1/ex/dynamic-nam.conf,v 1.2 1998/10/13 23:28:26 yaxu Exp $ # # # These functions are needed by nam # They are actually the functions used in the 'v' events in the nam traces # The 'v' events are generated by dynamic links (rtmodel). Whenever you have # a nam trace which has dynamic link traces, you'll need to define the following # functions. # proc link-up {now src dst} { sim_annotation $now link($src:$dst) up } proc link-down {now src dst} { sim_annotation $now link($src:$dst) down } proc node-up {now src} { sim_annotation $now $node $src up } proc node-down {now src} { sim_annotation $now $node $src down } nam-1.15/ex/dynamics-demo.nam0000664000076400007660000114426506610761033014755 0ustar tomhnsnamc -t * -i 0 -n black c -t * -i 1 -n OliveDrab c -t * -i 2 -n blue n -t * -s 4 -S UP -v circle -c black n -t * -s 0 -S UP -v circle -c OliveDrab n -t * -s 1 -S UP -v circle -c blue n -t * -s 2 -S UP -v circle -c black n -t * -s 3 -S UP -v circle -c tan l -t * -s 0 -d 2 -S UP -r 8000000 -D 0.0050000000000000001 -o right-down l -t * -s 1 -d 2 -S UP -r 8000000 -D 0.0050000000000000001 -o right-up l -t * -s 2 -d 3 -S UP -r 800000 -D 0.10000000000000001 -o right-up l -t * -s 2 -d 4 -S UP -r 800000 -D 0.10000000000000001 -o right-down l -t * -s 3 -d 4 -S UP -r 800000 -D 0.10000000000000001 -o down q -t * -s 3 -d 2 -a 0 q -t * -s 2 -d 3 -a 0 + -t 3.91318e-06 -s 4 -d 3 -p rtProtoDV -e 5 -c 0 -i 0 -a 0 - -t 3.91318e-06 -s 4 -d 3 -p rtProtoDV -e 5 -c 0 -i 0 -a 0 h -t 3.91318e-06 -s 4 -d 3 -p rtProtoDV -e 5 -c 0 -i 0 -a 0 + -t 3.91318e-06 -s 4 -d 2 -p rtProtoDV -e 5 -c 0 -i 1 -a 0 - -t 3.91318e-06 -s 4 -d 2 -p rtProtoDV -e 5 -c 0 -i 1 -a 0 h -t 3.91318e-06 -s 4 -d 2 -p rtProtoDV -e 5 -c 0 -i 1 -a 0 + -t 0.0657689 -s 0 -d 2 -p rtProtoDV -e 5 -c 0 -i 2 -a 0 - -t 0.0657689 -s 0 -d 2 -p rtProtoDV -e 5 -c 0 -i 2 -a 0 h -t 0.0657689 -s 0 -d 2 -p rtProtoDV -e 5 -c 0 -i 2 -a 0 r -t 0.0707739 -s 0 -d 2 -p rtProtoDV -e 5 -c 0 -i 2 -a 0 r -t 0.100054 -s 4 -d 3 -p rtProtoDV -e 5 -c 0 -i 0 -a 0 r -t 0.100054 -s 4 -d 2 -p rtProtoDV -e 5 -c 0 -i 1 -a 0 + -t 0.229325 -s 2 -d 3 -p rtProtoDV -e 5 -c 0 -i 3 -a 0 - -t 0.229325 -s 2 -d 3 -p rtProtoDV -e 5 -c 0 -i 3 -a 0 h -t 0.229325 -s 2 -d 3 -p rtProtoDV -e 5 -c 0 -i 3 -a 0 + -t 0.229325 -s 2 -d 1 -p rtProtoDV -e 5 -c 0 -i 4 -a 0 - -t 0.229325 -s 2 -d 1 -p rtProtoDV -e 5 -c 0 -i 4 -a 0 h -t 0.229325 -s 2 -d 1 -p rtProtoDV -e 5 -c 0 -i 4 -a 0 + -t 0.229325 -s 2 -d 4 -p rtProtoDV -e 5 -c 0 -i 5 -a 0 - -t 0.229325 -s 2 -d 4 -p rtProtoDV -e 5 -c 0 -i 5 -a 0 h -t 0.229325 -s 2 -d 4 -p rtProtoDV -e 5 -c 0 -i 5 -a 0 + -t 0.229325 -s 2 -d 0 -p rtProtoDV -e 5 -c 0 -i 6 -a 0 - -t 0.229325 -s 2 -d 0 -p rtProtoDV -e 5 -c 0 -i 6 -a 0 h -t 0.229325 -s 2 -d 0 -p rtProtoDV -e 5 -c 0 -i 6 -a 0 r -t 0.23433 -s 2 -d 0 -p rtProtoDV -e 5 -c 0 -i 6 -a 0 + -t 0.23433 -s 0 -d 2 -p rtProtoDV -e 5 -c 0 -i 7 -a 0 - -t 0.23433 -s 0 -d 2 -p rtProtoDV -e 5 -c 0 -i 7 -a 0 h -t 0.23433 -s 0 -d 2 -p rtProtoDV -e 5 -c 0 -i 7 -a 0 r -t 0.23433 -s 2 -d 1 -p rtProtoDV -e 5 -c 0 -i 4 -a 0 + -t 0.23433 -s 1 -d 2 -p rtProtoDV -e 5 -c 0 -i 8 -a 0 - -t 0.23433 -s 1 -d 2 -p rtProtoDV -e 5 -c 0 -i 8 -a 0 h -t 0.23433 -s 1 -d 2 -p rtProtoDV -e 5 -c 0 -i 8 -a 0 r -t 0.239335 -s 0 -d 2 -p rtProtoDV -e 5 -c 0 -i 7 -a 0 r -t 0.239335 -s 1 -d 2 -p rtProtoDV -e 5 -c 0 -i 8 -a 0 + -t 0.266384 -s 3 -d 4 -p rtProtoDV -e 5 -c 0 -i 9 -a 0 - -t 0.266384 -s 3 -d 4 -p rtProtoDV -e 5 -c 0 -i 9 -a 0 h -t 0.266384 -s 3 -d 4 -p rtProtoDV -e 5 -c 0 -i 9 -a 0 + -t 0.266384 -s 3 -d 2 -p rtProtoDV -e 5 -c 0 -i 10 -a 0 - -t 0.266384 -s 3 -d 2 -p rtProtoDV -e 5 -c 0 -i 10 -a 0 h -t 0.266384 -s 3 -d 2 -p rtProtoDV -e 5 -c 0 -i 10 -a 0 r -t 0.329375 -s 2 -d 3 -p rtProtoDV -e 5 -c 0 -i 3 -a 0 + -t 0.329375 -s 3 -d 4 -p rtProtoDV -e 5 -c 0 -i 11 -a 0 - -t 0.329375 -s 3 -d 4 -p rtProtoDV -e 5 -c 0 -i 11 -a 0 h -t 0.329375 -s 3 -d 4 -p rtProtoDV -e 5 -c 0 -i 11 -a 0 + -t 0.329375 -s 3 -d 2 -p rtProtoDV -e 5 -c 0 -i 12 -a 0 - -t 0.329375 -s 3 -d 2 -p rtProtoDV -e 5 -c 0 -i 12 -a 0 h -t 0.329375 -s 3 -d 2 -p rtProtoDV -e 5 -c 0 -i 12 -a 0 r -t 0.329375 -s 2 -d 4 -p rtProtoDV -e 5 -c 0 -i 5 -a 0 + -t 0.329375 -s 4 -d 3 -p rtProtoDV -e 5 -c 0 -i 13 -a 0 - -t 0.329375 -s 4 -d 3 -p rtProtoDV -e 5 -c 0 -i 13 -a 0 h -t 0.329375 -s 4 -d 3 -p rtProtoDV -e 5 -c 0 -i 13 -a 0 + -t 0.329375 -s 4 -d 2 -p rtProtoDV -e 5 -c 0 -i 14 -a 0 - -t 0.329375 -s 4 -d 2 -p rtProtoDV -e 5 -c 0 -i 14 -a 0 h -t 0.329375 -s 4 -d 2 -p rtProtoDV -e 5 -c 0 -i 14 -a 0 r -t 0.366434 -s 3 -d 4 -p rtProtoDV -e 5 -c 0 -i 9 -a 0 r -t 0.366434 -s 3 -d 2 -p rtProtoDV -e 5 -c 0 -i 10 -a 0 + -t 0.377803 -s 1 -d 2 -p rtProtoDV -e 5 -c 0 -i 15 -a 0 - -t 0.377803 -s 1 -d 2 -p rtProtoDV -e 5 -c 0 -i 15 -a 0 h -t 0.377803 -s 1 -d 2 -p rtProtoDV -e 5 -c 0 -i 15 -a 0 r -t 0.382808 -s 1 -d 2 -p rtProtoDV -e 5 -c 0 -i 15 -a 0 r -t 0.429425 -s 3 -d 4 -p rtProtoDV -e 5 -c 0 -i 11 -a 0 r -t 0.429425 -s 4 -d 3 -p rtProtoDV -e 5 -c 0 -i 13 -a 0 r -t 0.429425 -s 4 -d 2 -p rtProtoDV -e 5 -c 0 -i 14 -a 0 r -t 0.429425 -s 3 -d 2 -p rtProtoDV -e 5 -c 0 -i 12 -a 0 + -t 0.5 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 16 -a 2 - -t 0.5 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 16 -a 2 h -t 0.5 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 16 -a 2 r -t 0.506 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 16 -a 2 + -t 0.506 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 16 -a 2 - -t 0.506 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 16 -a 2 h -t 0.506 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 16 -a 2 r -t 0.616 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 16 -a 2 + -t 0.616 -s 3 -d 2 -p ack -e 40 -c 2 -i 17 -a 2 - -t 0.616 -s 3 -d 2 -p ack -e 40 -c 2 -i 17 -a 2 h -t 0.616 -s 3 -d 2 -p ack -e 40 -c 2 -i 17 -a 2 r -t 0.7164 -s 3 -d 2 -p ack -e 40 -c 2 -i 17 -a 2 + -t 0.7164 -s 2 -d 1 -p ack -e 40 -c 2 -i 17 -a 2 - -t 0.7164 -s 2 -d 1 -p ack -e 40 -c 2 -i 17 -a 2 h -t 0.7164 -s 2 -d 1 -p ack -e 40 -c 2 -i 17 -a 2 r -t 0.72144 -s 2 -d 1 -p ack -e 40 -c 2 -i 17 -a 2 + -t 0.72144 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 18 -a 2 - -t 0.72144 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 18 -a 2 h -t 0.72144 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 18 -a 2 + -t 0.72144 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 19 -a 2 - -t 0.72244 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 19 -a 2 h -t 0.72244 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 19 -a 2 r -t 0.72744 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 18 -a 2 + -t 0.72744 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 18 -a 2 - -t 0.72744 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 18 -a 2 h -t 0.72744 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 18 -a 2 r -t 0.72844 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 19 -a 2 + -t 0.72844 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 19 -a 2 - -t 0.73744 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 19 -a 2 h -t 0.73744 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 19 -a 2 l -t 0.82449799999999995 -s 3 -d 2 -S DOWN v -t 0.82449799999999995 link-down 0.82449799999999995 3 2 d -t 0.824498 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 18 -a 2 d -t 0.824498 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 19 -a 2 l -t 0.82449799999999995 -s 2 -d 3 -S DOWN v -t 0.82449799999999995 link-down 0.82449799999999995 2 3 + -t 0.824498 -s 2 -d 1 -p rtProtoDV -e 5 -c 0 -i 20 -a 0 - -t 0.824498 -s 2 -d 1 -p rtProtoDV -e 5 -c 0 -i 20 -a 0 h -t 0.824498 -s 2 -d 1 -p rtProtoDV -e 5 -c 0 -i 20 -a 0 + -t 0.824498 -s 2 -d 4 -p rtProtoDV -e 5 -c 0 -i 21 -a 0 - -t 0.824498 -s 2 -d 4 -p rtProtoDV -e 5 -c 0 -i 21 -a 0 h -t 0.824498 -s 2 -d 4 -p rtProtoDV -e 5 -c 0 -i 21 -a 0 + -t 0.824498 -s 2 -d 0 -p rtProtoDV -e 5 -c 0 -i 22 -a 0 - -t 0.824498 -s 2 -d 0 -p rtProtoDV -e 5 -c 0 -i 22 -a 0 h -t 0.824498 -s 2 -d 0 -p rtProtoDV -e 5 -c 0 -i 22 -a 0 + -t 0.824498 -s 3 -d 4 -p rtProtoDV -e 5 -c 0 -i 23 -a 0 - -t 0.824498 -s 3 -d 4 -p rtProtoDV -e 5 -c 0 -i 23 -a 0 h -t 0.824498 -s 3 -d 4 -p rtProtoDV -e 5 -c 0 -i 23 -a 0 r -t 0.829503 -s 2 -d 1 -p rtProtoDV -e 5 -c 0 -i 20 -a 0 + -t 0.829503 -s 1 -d 2 -p rtProtoDV -e 5 -c 0 -i 24 -a 0 - -t 0.829503 -s 1 -d 2 -p rtProtoDV -e 5 -c 0 -i 24 -a 0 h -t 0.829503 -s 1 -d 2 -p rtProtoDV -e 5 -c 0 -i 24 -a 0 r -t 0.829503 -s 2 -d 0 -p rtProtoDV -e 5 -c 0 -i 22 -a 0 + -t 0.829503 -s 0 -d 2 -p rtProtoDV -e 5 -c 0 -i 25 -a 0 - -t 0.829503 -s 0 -d 2 -p rtProtoDV -e 5 -c 0 -i 25 -a 0 h -t 0.829503 -s 0 -d 2 -p rtProtoDV -e 5 -c 0 -i 25 -a 0 r -t 0.834508 -s 1 -d 2 -p rtProtoDV -e 5 -c 0 -i 24 -a 0 r -t 0.834508 -s 0 -d 2 -p rtProtoDV -e 5 -c 0 -i 25 -a 0 r -t 0.924548 -s 2 -d 4 -p rtProtoDV -e 5 -c 0 -i 21 -a 0 r -t 0.924548 -s 3 -d 4 -p rtProtoDV -e 5 -c 0 -i 23 -a 0 + -t 1 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 26 -a 1 - -t 1 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 26 -a 1 h -t 1 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 26 -a 1 r -t 1.006 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 26 -a 1 + -t 1.006 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 26 -a 1 - -t 1.006 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 26 -a 1 h -t 1.006 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 26 -a 1 r -t 1.116 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 26 -a 1 + -t 1.116 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 26 -a 1 - -t 1.116 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 26 -a 1 h -t 1.116 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 26 -a 1 r -t 1.226 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 26 -a 1 + -t 1.226 -s 3 -d 4 -p ack -e 40 -c 1 -i 27 -a 1 - -t 1.226 -s 3 -d 4 -p ack -e 40 -c 1 -i 27 -a 1 h -t 1.226 -s 3 -d 4 -p ack -e 40 -c 1 -i 27 -a 1 + -t 1.32144 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 28 -a 2 - -t 1.32144 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 28 -a 2 h -t 1.32144 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 28 -a 2 r -t 1.3264 -s 3 -d 4 -p ack -e 40 -c 1 -i 27 -a 1 + -t 1.3264 -s 4 -d 2 -p ack -e 40 -c 1 -i 27 -a 1 - -t 1.3264 -s 4 -d 2 -p ack -e 40 -c 1 -i 27 -a 1 h -t 1.3264 -s 4 -d 2 -p ack -e 40 -c 1 -i 27 -a 1 r -t 1.32744 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 28 -a 2 + -t 1.32744 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 28 -a 2 - -t 1.32744 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 28 -a 2 h -t 1.32744 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 28 -a 2 r -t 1.4268 -s 4 -d 2 -p ack -e 40 -c 1 -i 27 -a 1 + -t 1.4268 -s 2 -d 0 -p ack -e 40 -c 1 -i 27 -a 1 - -t 1.4268 -s 2 -d 0 -p ack -e 40 -c 1 -i 27 -a 1 h -t 1.4268 -s 2 -d 0 -p ack -e 40 -c 1 -i 27 -a 1 r -t 1.43184 -s 2 -d 0 -p ack -e 40 -c 1 -i 27 -a 1 + -t 1.43184 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 29 -a 1 - -t 1.43184 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 29 -a 1 h -t 1.43184 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 29 -a 1 + -t 1.43184 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 30 -a 1 - -t 1.43284 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 30 -a 1 h -t 1.43284 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 30 -a 1 r -t 1.43744 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 28 -a 2 + -t 1.43744 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 28 -a 2 - -t 1.43744 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 28 -a 2 h -t 1.43744 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 28 -a 2 r -t 1.43784 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 29 -a 1 + -t 1.43784 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 29 -a 1 - -t 1.43784 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 29 -a 1 h -t 1.43784 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 29 -a 1 r -t 1.43884 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 30 -a 1 + -t 1.43884 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 30 -a 1 - -t 1.44784 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 30 -a 1 h -t 1.44784 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 30 -a 1 r -t 1.54744 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 28 -a 2 + -t 1.54744 -s 3 -d 4 -p ack -e 40 -c 2 -i 31 -a 2 - -t 1.54744 -s 3 -d 4 -p ack -e 40 -c 2 -i 31 -a 2 h -t 1.54744 -s 3 -d 4 -p ack -e 40 -c 2 -i 31 -a 2 r -t 1.54784 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 29 -a 1 + -t 1.54784 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 29 -a 1 - -t 1.54784 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 29 -a 1 h -t 1.54784 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 29 -a 1 r -t 1.55784 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 30 -a 1 + -t 1.55784 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 30 -a 1 - -t 1.55784 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 30 -a 1 h -t 1.55784 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 30 -a 1 r -t 1.64784 -s 3 -d 4 -p ack -e 40 -c 2 -i 31 -a 2 + -t 1.64784 -s 4 -d 2 -p ack -e 40 -c 2 -i 31 -a 2 - -t 1.64784 -s 4 -d 2 -p ack -e 40 -c 2 -i 31 -a 2 h -t 1.64784 -s 4 -d 2 -p ack -e 40 -c 2 -i 31 -a 2 r -t 1.65784 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 29 -a 1 + -t 1.65784 -s 3 -d 4 -p ack -e 40 -c 1 -i 32 -a 1 - -t 1.65784 -s 3 -d 4 -p ack -e 40 -c 1 -i 32 -a 1 h -t 1.65784 -s 3 -d 4 -p ack -e 40 -c 1 -i 32 -a 1 r -t 1.66784 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 30 -a 1 + -t 1.66784 -s 3 -d 4 -p ack -e 40 -c 1 -i 33 -a 1 - -t 1.66784 -s 3 -d 4 -p ack -e 40 -c 1 -i 33 -a 1 h -t 1.66784 -s 3 -d 4 -p ack -e 40 -c 1 -i 33 -a 1 r -t 1.74824 -s 4 -d 2 -p ack -e 40 -c 2 -i 31 -a 2 + -t 1.74824 -s 2 -d 1 -p ack -e 40 -c 2 -i 31 -a 2 - -t 1.74824 -s 2 -d 1 -p ack -e 40 -c 2 -i 31 -a 2 h -t 1.74824 -s 2 -d 1 -p ack -e 40 -c 2 -i 31 -a 2 r -t 1.75328 -s 2 -d 1 -p ack -e 40 -c 2 -i 31 -a 2 + -t 1.75328 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 34 -a 2 - -t 1.75328 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 34 -a 2 h -t 1.75328 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 34 -a 2 + -t 1.75328 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 35 -a 2 - -t 1.75428 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 35 -a 2 h -t 1.75428 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 35 -a 2 r -t 1.75824 -s 3 -d 4 -p ack -e 40 -c 1 -i 32 -a 1 + -t 1.75824 -s 4 -d 2 -p ack -e 40 -c 1 -i 32 -a 1 - -t 1.75824 -s 4 -d 2 -p ack -e 40 -c 1 -i 32 -a 1 h -t 1.75824 -s 4 -d 2 -p ack -e 40 -c 1 -i 32 -a 1 r -t 1.75928 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 34 -a 2 + -t 1.75928 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 34 -a 2 - -t 1.75928 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 34 -a 2 h -t 1.75928 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 34 -a 2 r -t 1.76028 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 35 -a 2 + -t 1.76028 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 35 -a 2 r -t 1.76824 -s 3 -d 4 -p ack -e 40 -c 1 -i 33 -a 1 + -t 1.76824 -s 4 -d 2 -p ack -e 40 -c 1 -i 33 -a 1 - -t 1.76824 -s 4 -d 2 -p ack -e 40 -c 1 -i 33 -a 1 h -t 1.76824 -s 4 -d 2 -p ack -e 40 -c 1 -i 33 -a 1 - -t 1.76928 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 35 -a 2 h -t 1.76928 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 35 -a 2 r -t 1.85864 -s 4 -d 2 -p ack -e 40 -c 1 -i 32 -a 1 + -t 1.85864 -s 2 -d 0 -p ack -e 40 -c 1 -i 32 -a 1 - -t 1.85864 -s 2 -d 0 -p ack -e 40 -c 1 -i 32 -a 1 h -t 1.85864 -s 2 -d 0 -p ack -e 40 -c 1 -i 32 -a 1 r -t 1.86368 -s 2 -d 0 -p ack -e 40 -c 1 -i 32 -a 1 + -t 1.86368 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 36 -a 1 - -t 1.86368 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 36 -a 1 h -t 1.86368 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 36 -a 1 + -t 1.86368 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 37 -a 1 - -t 1.86468 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 37 -a 1 h -t 1.86468 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 37 -a 1 r -t 1.86864 -s 4 -d 2 -p ack -e 40 -c 1 -i 33 -a 1 + -t 1.86864 -s 2 -d 0 -p ack -e 40 -c 1 -i 33 -a 1 - -t 1.86864 -s 2 -d 0 -p ack -e 40 -c 1 -i 33 -a 1 h -t 1.86864 -s 2 -d 0 -p ack -e 40 -c 1 -i 33 -a 1 r -t 1.86928 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 34 -a 2 + -t 1.86928 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 34 -a 2 - -t 1.86928 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 34 -a 2 h -t 1.86928 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 34 -a 2 r -t 1.86968 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 36 -a 1 + -t 1.86968 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 36 -a 1 - -t 1.86968 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 36 -a 1 h -t 1.86968 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 36 -a 1 r -t 1.87068 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 37 -a 1 + -t 1.87068 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 37 -a 1 r -t 1.87368 -s 2 -d 0 -p ack -e 40 -c 1 -i 33 -a 1 + -t 1.87368 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 38 -a 1 - -t 1.87368 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 38 -a 1 h -t 1.87368 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 38 -a 1 + -t 1.87368 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 39 -a 1 - -t 1.87468 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 39 -a 1 h -t 1.87468 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 39 -a 1 r -t 1.87928 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 35 -a 2 + -t 1.87928 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 35 -a 2 - -t 1.87928 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 35 -a 2 h -t 1.87928 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 35 -a 2 - -t 1.87968 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 37 -a 1 h -t 1.87968 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 37 -a 1 r -t 1.87968 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 38 -a 1 + -t 1.87968 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 38 -a 1 r -t 1.88068 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 39 -a 1 + -t 1.88068 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 39 -a 1 + -t 1.88459 -s 0 -d 2 -p rtProtoDV -e 5 -c 0 -i 40 -a 0 - -t 1.88459 -s 0 -d 2 -p rtProtoDV -e 5 -c 0 -i 40 -a 0 h -t 1.88459 -s 0 -d 2 -p rtProtoDV -e 5 -c 0 -i 40 -a 0 + -t 1.88759 -s 4 -d 3 -p rtProtoDV -e 5 -c 0 -i 41 -a 0 + -t 1.88759 -s 4 -d 2 -p rtProtoDV -e 5 -c 0 -i 42 -a 0 - -t 1.88759 -s 4 -d 2 -p rtProtoDV -e 5 -c 0 -i 42 -a 0 h -t 1.88759 -s 4 -d 2 -p rtProtoDV -e 5 -c 0 -i 42 -a 0 - -t 1.88928 -s 4 -d 3 -p rtProtoDV -e 5 -c 0 -i 41 -a 0 h -t 1.88928 -s 4 -d 3 -p rtProtoDV -e 5 -c 0 -i 41 -a 0 r -t 1.88959 -s 0 -d 2 -p rtProtoDV -e 5 -c 0 -i 40 -a 0 - -t 1.88968 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 38 -a 1 h -t 1.88968 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 38 -a 1 - -t 1.89968 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 39 -a 1 h -t 1.89968 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 39 -a 1 r -t 1.97928 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 34 -a 2 + -t 1.97928 -s 3 -d 4 -p ack -e 40 -c 2 -i 43 -a 2 - -t 1.97928 -s 3 -d 4 -p ack -e 40 -c 2 -i 43 -a 2 h -t 1.97928 -s 3 -d 4 -p ack -e 40 -c 2 -i 43 -a 2 r -t 1.97968 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 36 -a 1 + -t 1.97968 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 36 -a 1 - -t 1.97968 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 36 -a 1 h -t 1.97968 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 36 -a 1 r -t 1.98764 -s 4 -d 2 -p rtProtoDV -e 5 -c 0 -i 42 -a 0 r -t 1.98928 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 35 -a 2 + -t 1.98928 -s 3 -d 4 -p ack -e 40 -c 2 -i 44 -a 2 - -t 1.98928 -s 3 -d 4 -p ack -e 40 -c 2 -i 44 -a 2 h -t 1.98928 -s 3 -d 4 -p ack -e 40 -c 2 -i 44 -a 2 r -t 1.98933 -s 4 -d 3 -p rtProtoDV -e 5 -c 0 -i 41 -a 0 r -t 1.98968 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 37 -a 1 + -t 1.98968 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 37 -a 1 - -t 1.98968 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 37 -a 1 h -t 1.98968 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 37 -a 1 r -t 1.99968 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 38 -a 1 + -t 1.99968 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 38 -a 1 - -t 1.99968 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 38 -a 1 h -t 1.99968 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 38 -a 1 r -t 2.00968 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 39 -a 1 + -t 2.00968 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 39 -a 1 - -t 2.00968 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 39 -a 1 h -t 2.00968 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 39 -a 1 r -t 2.07968 -s 3 -d 4 -p ack -e 40 -c 2 -i 43 -a 2 + -t 2.07968 -s 4 -d 2 -p ack -e 40 -c 2 -i 43 -a 2 - -t 2.07968 -s 4 -d 2 -p ack -e 40 -c 2 -i 43 -a 2 h -t 2.07968 -s 4 -d 2 -p ack -e 40 -c 2 -i 43 -a 2 r -t 2.08968 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 36 -a 1 + -t 2.08968 -s 3 -d 4 -p ack -e 40 -c 1 -i 45 -a 1 - -t 2.08968 -s 3 -d 4 -p ack -e 40 -c 1 -i 45 -a 1 h -t 2.08968 -s 3 -d 4 -p ack -e 40 -c 1 -i 45 -a 1 r -t 2.08968 -s 3 -d 4 -p ack -e 40 -c 2 -i 44 -a 2 + -t 2.08968 -s 4 -d 2 -p ack -e 40 -c 2 -i 44 -a 2 - -t 2.08968 -s 4 -d 2 -p ack -e 40 -c 2 -i 44 -a 2 h -t 2.08968 -s 4 -d 2 -p ack -e 40 -c 2 -i 44 -a 2 r -t 2.09968 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 37 -a 1 + -t 2.09968 -s 3 -d 4 -p ack -e 40 -c 1 -i 46 -a 1 - -t 2.09968 -s 3 -d 4 -p ack -e 40 -c 1 -i 46 -a 1 h -t 2.09968 -s 3 -d 4 -p ack -e 40 -c 1 -i 46 -a 1 r -t 2.10968 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 38 -a 1 + -t 2.10968 -s 3 -d 4 -p ack -e 40 -c 1 -i 47 -a 1 - -t 2.10968 -s 3 -d 4 -p ack -e 40 -c 1 -i 47 -a 1 h -t 2.10968 -s 3 -d 4 -p ack -e 40 -c 1 -i 47 -a 1 r -t 2.11968 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 39 -a 1 + -t 2.11968 -s 3 -d 4 -p ack -e 40 -c 1 -i 48 -a 1 - -t 2.11968 -s 3 -d 4 -p ack -e 40 -c 1 -i 48 -a 1 h -t 2.11968 -s 3 -d 4 -p ack -e 40 -c 1 -i 48 -a 1 r -t 2.18008 -s 4 -d 2 -p ack -e 40 -c 2 -i 43 -a 2 + -t 2.18008 -s 2 -d 1 -p ack -e 40 -c 2 -i 43 -a 2 - -t 2.18008 -s 2 -d 1 -p ack -e 40 -c 2 -i 43 -a 2 h -t 2.18008 -s 2 -d 1 -p ack -e 40 -c 2 -i 43 -a 2 r -t 2.18512 -s 2 -d 1 -p ack -e 40 -c 2 -i 43 -a 2 + -t 2.18512 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 49 -a 2 - -t 2.18512 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 49 -a 2 h -t 2.18512 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 49 -a 2 r -t 2.19008 -s 3 -d 4 -p ack -e 40 -c 1 -i 45 -a 1 + -t 2.19008 -s 4 -d 2 -p ack -e 40 -c 1 -i 45 -a 1 - -t 2.19008 -s 4 -d 2 -p ack -e 40 -c 1 -i 45 -a 1 h -t 2.19008 -s 4 -d 2 -p ack -e 40 -c 1 -i 45 -a 1 r -t 2.19008 -s 4 -d 2 -p ack -e 40 -c 2 -i 44 -a 2 + -t 2.19008 -s 2 -d 1 -p ack -e 40 -c 2 -i 44 -a 2 - -t 2.19008 -s 2 -d 1 -p ack -e 40 -c 2 -i 44 -a 2 h -t 2.19008 -s 2 -d 1 -p ack -e 40 -c 2 -i 44 -a 2 r -t 2.19112 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 49 -a 2 + -t 2.19112 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 49 -a 2 - -t 2.19112 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 49 -a 2 h -t 2.19112 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 49 -a 2 r -t 2.19512 -s 2 -d 1 -p ack -e 40 -c 2 -i 44 -a 2 + -t 2.19512 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 50 -a 2 - -t 2.19512 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 50 -a 2 h -t 2.19512 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 50 -a 2 r -t 2.20008 -s 3 -d 4 -p ack -e 40 -c 1 -i 46 -a 1 + -t 2.20008 -s 4 -d 2 -p ack -e 40 -c 1 -i 46 -a 1 - -t 2.20008 -s 4 -d 2 -p ack -e 40 -c 1 -i 46 -a 1 h -t 2.20008 -s 4 -d 2 -p ack -e 40 -c 1 -i 46 -a 1 r -t 2.20112 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 50 -a 2 + -t 2.20112 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 50 -a 2 - -t 2.20112 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 50 -a 2 h -t 2.20112 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 50 -a 2 r -t 2.21008 -s 3 -d 4 -p ack -e 40 -c 1 -i 47 -a 1 + -t 2.21008 -s 4 -d 2 -p ack -e 40 -c 1 -i 47 -a 1 - -t 2.21008 -s 4 -d 2 -p ack -e 40 -c 1 -i 47 -a 1 h -t 2.21008 -s 4 -d 2 -p ack -e 40 -c 1 -i 47 -a 1 r -t 2.22008 -s 3 -d 4 -p ack -e 40 -c 1 -i 48 -a 1 + -t 2.22008 -s 4 -d 2 -p ack -e 40 -c 1 -i 48 -a 1 - -t 2.22008 -s 4 -d 2 -p ack -e 40 -c 1 -i 48 -a 1 h -t 2.22008 -s 4 -d 2 -p ack -e 40 -c 1 -i 48 -a 1 r -t 2.29048 -s 4 -d 2 -p ack -e 40 -c 1 -i 45 -a 1 + -t 2.29048 -s 2 -d 0 -p ack -e 40 -c 1 -i 45 -a 1 - -t 2.29048 -s 2 -d 0 -p ack -e 40 -c 1 -i 45 -a 1 h -t 2.29048 -s 2 -d 0 -p ack -e 40 -c 1 -i 45 -a 1 r -t 2.29552 -s 2 -d 0 -p ack -e 40 -c 1 -i 45 -a 1 + -t 2.29552 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 51 -a 1 - -t 2.29552 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 51 -a 1 h -t 2.29552 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 51 -a 1 + -t 2.29552 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 52 -a 1 - -t 2.29652 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 52 -a 1 h -t 2.29652 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 52 -a 1 r -t 2.30048 -s 4 -d 2 -p ack -e 40 -c 1 -i 46 -a 1 + -t 2.30048 -s 2 -d 0 -p ack -e 40 -c 1 -i 46 -a 1 - -t 2.30048 -s 2 -d 0 -p ack -e 40 -c 1 -i 46 -a 1 h -t 2.30048 -s 2 -d 0 -p ack -e 40 -c 1 -i 46 -a 1 + -t 2.30087 -s 2 -d 1 -p rtProtoDV -e 5 -c 0 -i 53 -a 0 - -t 2.30087 -s 2 -d 1 -p rtProtoDV -e 5 -c 0 -i 53 -a 0 h -t 2.30087 -s 2 -d 1 -p rtProtoDV -e 5 -c 0 -i 53 -a 0 + -t 2.30087 -s 2 -d 4 -p rtProtoDV -e 5 -c 0 -i 54 -a 0 - -t 2.30087 -s 2 -d 4 -p rtProtoDV -e 5 -c 0 -i 54 -a 0 h -t 2.30087 -s 2 -d 4 -p rtProtoDV -e 5 -c 0 -i 54 -a 0 + -t 2.30087 -s 2 -d 0 -p rtProtoDV -e 5 -c 0 -i 55 -a 0 - -t 2.30087 -s 2 -d 0 -p rtProtoDV -e 5 -c 0 -i 55 -a 0 h -t 2.30087 -s 2 -d 0 -p rtProtoDV -e 5 -c 0 -i 55 -a 0 r -t 2.30112 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 49 -a 2 + -t 2.30112 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 49 -a 2 - -t 2.30112 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 49 -a 2 h -t 2.30112 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 49 -a 2 r -t 2.30152 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 51 -a 1 + -t 2.30152 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 51 -a 1 - -t 2.30152 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 51 -a 1 h -t 2.30152 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 51 -a 1 r -t 2.30252 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 52 -a 1 + -t 2.30252 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 52 -a 1 r -t 2.30552 -s 2 -d 0 -p ack -e 40 -c 1 -i 46 -a 1 + -t 2.30552 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 56 -a 1 - -t 2.30552 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 56 -a 1 h -t 2.30552 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 56 -a 1 + -t 2.30552 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 57 -a 1 r -t 2.30588 -s 2 -d 1 -p rtProtoDV -e 5 -c 0 -i 53 -a 0 r -t 2.30588 -s 2 -d 0 -p rtProtoDV -e 5 -c 0 -i 55 -a 0 - -t 2.30652 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 57 -a 1 h -t 2.30652 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 57 -a 1 r -t 2.31048 -s 4 -d 2 -p ack -e 40 -c 1 -i 47 -a 1 + -t 2.31048 -s 2 -d 0 -p ack -e 40 -c 1 -i 47 -a 1 - -t 2.31048 -s 2 -d 0 -p ack -e 40 -c 1 -i 47 -a 1 h -t 2.31048 -s 2 -d 0 -p ack -e 40 -c 1 -i 47 -a 1 r -t 2.31112 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 50 -a 2 + -t 2.31112 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 50 -a 2 - -t 2.31112 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 50 -a 2 h -t 2.31112 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 50 -a 2 - -t 2.31152 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 52 -a 1 h -t 2.31152 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 52 -a 1 r -t 2.31152 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 56 -a 1 + -t 2.31152 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 56 -a 1 r -t 2.31252 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 57 -a 1 + -t 2.31252 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 57 -a 1 r -t 2.31552 -s 2 -d 0 -p ack -e 40 -c 1 -i 47 -a 1 + -t 2.31552 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 58 -a 1 - -t 2.31552 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 58 -a 1 h -t 2.31552 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 58 -a 1 + -t 2.31552 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 59 -a 1 - -t 2.31652 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 59 -a 1 h -t 2.31652 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 59 -a 1 r -t 2.32048 -s 4 -d 2 -p ack -e 40 -c 1 -i 48 -a 1 + -t 2.32048 -s 2 -d 0 -p ack -e 40 -c 1 -i 48 -a 1 - -t 2.32048 -s 2 -d 0 -p ack -e 40 -c 1 -i 48 -a 1 h -t 2.32048 -s 2 -d 0 -p ack -e 40 -c 1 -i 48 -a 1 - -t 2.32152 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 56 -a 1 h -t 2.32152 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 56 -a 1 r -t 2.32152 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 58 -a 1 + -t 2.32152 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 58 -a 1 r -t 2.32252 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 59 -a 1 + -t 2.32252 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 59 -a 1 r -t 2.32552 -s 2 -d 0 -p ack -e 40 -c 1 -i 48 -a 1 + -t 2.32552 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 60 -a 1 - -t 2.32552 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 60 -a 1 h -t 2.32552 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 60 -a 1 + -t 2.32552 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 61 -a 1 - -t 2.32652 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 61 -a 1 h -t 2.32652 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 61 -a 1 - -t 2.33152 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 57 -a 1 h -t 2.33152 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 57 -a 1 r -t 2.33152 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 60 -a 1 + -t 2.33152 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 60 -a 1 r -t 2.33252 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 61 -a 1 + -t 2.33252 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 61 -a 1 + -t 2.3381 -s 3 -d 4 -p rtProtoDV -e 5 -c 0 -i 62 -a 0 - -t 2.3381 -s 3 -d 4 -p rtProtoDV -e 5 -c 0 -i 62 -a 0 h -t 2.3381 -s 3 -d 4 -p rtProtoDV -e 5 -c 0 -i 62 -a 0 - -t 2.34152 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 58 -a 1 h -t 2.34152 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 58 -a 1 - -t 2.35152 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 59 -a 1 h -t 2.35152 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 59 -a 1 - -t 2.36152 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 60 -a 1 h -t 2.36152 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 60 -a 1 - -t 2.37152 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 61 -a 1 h -t 2.37152 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 61 -a 1 r -t 2.40092 -s 2 -d 4 -p rtProtoDV -e 5 -c 0 -i 54 -a 0 r -t 2.41112 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 49 -a 2 + -t 2.41112 -s 3 -d 4 -p ack -e 40 -c 2 -i 63 -a 2 - -t 2.41112 -s 3 -d 4 -p ack -e 40 -c 2 -i 63 -a 2 h -t 2.41112 -s 3 -d 4 -p ack -e 40 -c 2 -i 63 -a 2 r -t 2.41152 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 51 -a 1 + -t 2.41152 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 51 -a 1 - -t 2.41152 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 51 -a 1 h -t 2.41152 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 51 -a 1 r -t 2.42112 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 50 -a 2 + -t 2.42112 -s 3 -d 4 -p ack -e 40 -c 2 -i 64 -a 2 - -t 2.42112 -s 3 -d 4 -p ack -e 40 -c 2 -i 64 -a 2 h -t 2.42112 -s 3 -d 4 -p ack -e 40 -c 2 -i 64 -a 2 r -t 2.42152 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 52 -a 1 + -t 2.42152 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 52 -a 1 - -t 2.42152 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 52 -a 1 h -t 2.42152 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 52 -a 1 r -t 2.43152 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 56 -a 1 + -t 2.43152 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 56 -a 1 - -t 2.43152 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 56 -a 1 h -t 2.43152 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 56 -a 1 r -t 2.43815 -s 3 -d 4 -p rtProtoDV -e 5 -c 0 -i 62 -a 0 r -t 2.44152 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 57 -a 1 + -t 2.44152 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 57 -a 1 - -t 2.44152 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 57 -a 1 h -t 2.44152 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 57 -a 1 r -t 2.45152 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 58 -a 1 + -t 2.45152 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 58 -a 1 - -t 2.45152 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 58 -a 1 h -t 2.45152 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 58 -a 1 r -t 2.46152 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 59 -a 1 + -t 2.46152 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 59 -a 1 - -t 2.46152 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 59 -a 1 h -t 2.46152 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 59 -a 1 r -t 2.47152 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 60 -a 1 + -t 2.47152 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 60 -a 1 - -t 2.47152 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 60 -a 1 h -t 2.47152 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 60 -a 1 r -t 2.48152 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 61 -a 1 + -t 2.48152 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 61 -a 1 - -t 2.48152 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 61 -a 1 h -t 2.48152 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 61 -a 1 r -t 2.51152 -s 3 -d 4 -p ack -e 40 -c 2 -i 63 -a 2 + -t 2.51152 -s 4 -d 2 -p ack -e 40 -c 2 -i 63 -a 2 - -t 2.51152 -s 4 -d 2 -p ack -e 40 -c 2 -i 63 -a 2 h -t 2.51152 -s 4 -d 2 -p ack -e 40 -c 2 -i 63 -a 2 r -t 2.52152 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 51 -a 1 + -t 2.52152 -s 3 -d 4 -p ack -e 40 -c 1 -i 65 -a 1 - -t 2.52152 -s 3 -d 4 -p ack -e 40 -c 1 -i 65 -a 1 h -t 2.52152 -s 3 -d 4 -p ack -e 40 -c 1 -i 65 -a 1 r -t 2.52152 -s 3 -d 4 -p ack -e 40 -c 2 -i 64 -a 2 + -t 2.52152 -s 4 -d 2 -p ack -e 40 -c 2 -i 64 -a 2 - -t 2.52152 -s 4 -d 2 -p ack -e 40 -c 2 -i 64 -a 2 h -t 2.52152 -s 4 -d 2 -p ack -e 40 -c 2 -i 64 -a 2 r -t 2.53152 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 52 -a 1 + -t 2.53152 -s 3 -d 4 -p ack -e 40 -c 1 -i 66 -a 1 - -t 2.53152 -s 3 -d 4 -p ack -e 40 -c 1 -i 66 -a 1 h -t 2.53152 -s 3 -d 4 -p ack -e 40 -c 1 -i 66 -a 1 r -t 2.54152 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 56 -a 1 + -t 2.54152 -s 3 -d 4 -p ack -e 40 -c 1 -i 67 -a 1 - -t 2.54152 -s 3 -d 4 -p ack -e 40 -c 1 -i 67 -a 1 h -t 2.54152 -s 3 -d 4 -p ack -e 40 -c 1 -i 67 -a 1 r -t 2.55152 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 57 -a 1 + -t 2.55152 -s 3 -d 4 -p ack -e 40 -c 1 -i 68 -a 1 - -t 2.55152 -s 3 -d 4 -p ack -e 40 -c 1 -i 68 -a 1 h -t 2.55152 -s 3 -d 4 -p ack -e 40 -c 1 -i 68 -a 1 + -t 2.55168 -s 1 -d 2 -p rtProtoDV -e 5 -c 0 -i 69 -a 0 - -t 2.55168 -s 1 -d 2 -p rtProtoDV -e 5 -c 0 -i 69 -a 0 h -t 2.55168 -s 1 -d 2 -p rtProtoDV -e 5 -c 0 -i 69 -a 0 r -t 2.55668 -s 1 -d 2 -p rtProtoDV -e 5 -c 0 -i 69 -a 0 r -t 2.56152 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 58 -a 1 + -t 2.56152 -s 3 -d 4 -p ack -e 40 -c 1 -i 70 -a 1 - -t 2.56152 -s 3 -d 4 -p ack -e 40 -c 1 -i 70 -a 1 h -t 2.56152 -s 3 -d 4 -p ack -e 40 -c 1 -i 70 -a 1 r -t 2.57152 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 59 -a 1 + -t 2.57152 -s 3 -d 4 -p ack -e 40 -c 1 -i 71 -a 1 - -t 2.57152 -s 3 -d 4 -p ack -e 40 -c 1 -i 71 -a 1 h -t 2.57152 -s 3 -d 4 -p ack -e 40 -c 1 -i 71 -a 1 r -t 2.58152 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 60 -a 1 + -t 2.58152 -s 3 -d 4 -p ack -e 40 -c 1 -i 72 -a 1 - -t 2.58152 -s 3 -d 4 -p ack -e 40 -c 1 -i 72 -a 1 h -t 2.58152 -s 3 -d 4 -p ack -e 40 -c 1 -i 72 -a 1 r -t 2.59152 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 61 -a 1 + -t 2.59152 -s 3 -d 4 -p ack -e 40 -c 1 -i 73 -a 1 - -t 2.59152 -s 3 -d 4 -p ack -e 40 -c 1 -i 73 -a 1 h -t 2.59152 -s 3 -d 4 -p ack -e 40 -c 1 -i 73 -a 1 r -t 2.61192 -s 4 -d 2 -p ack -e 40 -c 2 -i 63 -a 2 + -t 2.61192 -s 2 -d 1 -p ack -e 40 -c 2 -i 63 -a 2 - -t 2.61192 -s 2 -d 1 -p ack -e 40 -c 2 -i 63 -a 2 h -t 2.61192 -s 2 -d 1 -p ack -e 40 -c 2 -i 63 -a 2 r -t 2.61696 -s 2 -d 1 -p ack -e 40 -c 2 -i 63 -a 2 + -t 2.61696 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 74 -a 2 - -t 2.61696 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 74 -a 2 h -t 2.61696 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 74 -a 2 + -t 2.61696 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 75 -a 2 - -t 2.61796 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 75 -a 2 h -t 2.61796 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 75 -a 2 r -t 2.62192 -s 3 -d 4 -p ack -e 40 -c 1 -i 65 -a 1 + -t 2.62192 -s 4 -d 2 -p ack -e 40 -c 1 -i 65 -a 1 - -t 2.62192 -s 4 -d 2 -p ack -e 40 -c 1 -i 65 -a 1 h -t 2.62192 -s 4 -d 2 -p ack -e 40 -c 1 -i 65 -a 1 r -t 2.62192 -s 4 -d 2 -p ack -e 40 -c 2 -i 64 -a 2 + -t 2.62192 -s 2 -d 1 -p ack -e 40 -c 2 -i 64 -a 2 - -t 2.62192 -s 2 -d 1 -p ack -e 40 -c 2 -i 64 -a 2 h -t 2.62192 -s 2 -d 1 -p ack -e 40 -c 2 -i 64 -a 2 r -t 2.62296 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 74 -a 2 + -t 2.62296 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 74 -a 2 - -t 2.62296 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 74 -a 2 h -t 2.62296 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 74 -a 2 r -t 2.62396 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 75 -a 2 + -t 2.62396 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 75 -a 2 r -t 2.62696 -s 2 -d 1 -p ack -e 40 -c 2 -i 64 -a 2 + -t 2.62696 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 76 -a 2 - -t 2.62696 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 76 -a 2 h -t 2.62696 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 76 -a 2 r -t 2.63192 -s 3 -d 4 -p ack -e 40 -c 1 -i 66 -a 1 + -t 2.63192 -s 4 -d 2 -p ack -e 40 -c 1 -i 66 -a 1 - -t 2.63192 -s 4 -d 2 -p ack -e 40 -c 1 -i 66 -a 1 h -t 2.63192 -s 4 -d 2 -p ack -e 40 -c 1 -i 66 -a 1 - -t 2.63296 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 75 -a 2 h -t 2.63296 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 75 -a 2 r -t 2.63296 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 76 -a 2 + -t 2.63296 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 76 -a 2 r -t 2.64192 -s 3 -d 4 -p ack -e 40 -c 1 -i 67 -a 1 + -t 2.64192 -s 4 -d 2 -p ack -e 40 -c 1 -i 67 -a 1 - -t 2.64192 -s 4 -d 2 -p ack -e 40 -c 1 -i 67 -a 1 h -t 2.64192 -s 4 -d 2 -p ack -e 40 -c 1 -i 67 -a 1 - -t 2.64296 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 76 -a 2 h -t 2.64296 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 76 -a 2 r -t 2.65192 -s 3 -d 4 -p ack -e 40 -c 1 -i 68 -a 1 + -t 2.65192 -s 4 -d 2 -p ack -e 40 -c 1 -i 68 -a 1 - -t 2.65192 -s 4 -d 2 -p ack -e 40 -c 1 -i 68 -a 1 h -t 2.65192 -s 4 -d 2 -p ack -e 40 -c 1 -i 68 -a 1 r -t 2.66192 -s 3 -d 4 -p ack -e 40 -c 1 -i 70 -a 1 + -t 2.66192 -s 4 -d 2 -p ack -e 40 -c 1 -i 70 -a 1 - -t 2.66192 -s 4 -d 2 -p ack -e 40 -c 1 -i 70 -a 1 h -t 2.66192 -s 4 -d 2 -p ack -e 40 -c 1 -i 70 -a 1 r -t 2.67192 -s 3 -d 4 -p ack -e 40 -c 1 -i 71 -a 1 + -t 2.67192 -s 4 -d 2 -p ack -e 40 -c 1 -i 71 -a 1 - -t 2.67192 -s 4 -d 2 -p ack -e 40 -c 1 -i 71 -a 1 h -t 2.67192 -s 4 -d 2 -p ack -e 40 -c 1 -i 71 -a 1 r -t 2.68192 -s 3 -d 4 -p ack -e 40 -c 1 -i 72 -a 1 + -t 2.68192 -s 4 -d 2 -p ack -e 40 -c 1 -i 72 -a 1 - -t 2.68192 -s 4 -d 2 -p ack -e 40 -c 1 -i 72 -a 1 h -t 2.68192 -s 4 -d 2 -p ack -e 40 -c 1 -i 72 -a 1 r -t 2.69192 -s 3 -d 4 -p ack -e 40 -c 1 -i 73 -a 1 + -t 2.69192 -s 4 -d 2 -p ack -e 40 -c 1 -i 73 -a 1 - -t 2.69192 -s 4 -d 2 -p ack -e 40 -c 1 -i 73 -a 1 h -t 2.69192 -s 4 -d 2 -p ack -e 40 -c 1 -i 73 -a 1 r -t 2.72232 -s 4 -d 2 -p ack -e 40 -c 1 -i 65 -a 1 + -t 2.72232 -s 2 -d 0 -p ack -e 40 -c 1 -i 65 -a 1 - -t 2.72232 -s 2 -d 0 -p ack -e 40 -c 1 -i 65 -a 1 h -t 2.72232 -s 2 -d 0 -p ack -e 40 -c 1 -i 65 -a 1 r -t 2.72736 -s 2 -d 0 -p ack -e 40 -c 1 -i 65 -a 1 + -t 2.72736 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 77 -a 1 - -t 2.72736 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 77 -a 1 h -t 2.72736 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 77 -a 1 + -t 2.72736 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 78 -a 1 - -t 2.72836 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 78 -a 1 h -t 2.72836 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 78 -a 1 r -t 2.73232 -s 4 -d 2 -p ack -e 40 -c 1 -i 66 -a 1 + -t 2.73232 -s 2 -d 0 -p ack -e 40 -c 1 -i 66 -a 1 - -t 2.73232 -s 2 -d 0 -p ack -e 40 -c 1 -i 66 -a 1 h -t 2.73232 -s 2 -d 0 -p ack -e 40 -c 1 -i 66 -a 1 r -t 2.73296 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 74 -a 2 + -t 2.73296 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 74 -a 2 - -t 2.73296 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 74 -a 2 h -t 2.73296 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 74 -a 2 r -t 2.73336 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 77 -a 1 + -t 2.73336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 77 -a 1 - -t 2.73336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 77 -a 1 h -t 2.73336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 77 -a 1 r -t 2.73436 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 78 -a 1 + -t 2.73436 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 78 -a 1 r -t 2.73736 -s 2 -d 0 -p ack -e 40 -c 1 -i 66 -a 1 + -t 2.73736 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 79 -a 1 - -t 2.73736 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 79 -a 1 h -t 2.73736 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 79 -a 1 + -t 2.73736 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 80 -a 1 - -t 2.73836 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 80 -a 1 h -t 2.73836 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 80 -a 1 r -t 2.74232 -s 4 -d 2 -p ack -e 40 -c 1 -i 67 -a 1 + -t 2.74232 -s 2 -d 0 -p ack -e 40 -c 1 -i 67 -a 1 - -t 2.74232 -s 2 -d 0 -p ack -e 40 -c 1 -i 67 -a 1 h -t 2.74232 -s 2 -d 0 -p ack -e 40 -c 1 -i 67 -a 1 r -t 2.74296 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 75 -a 2 + -t 2.74296 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 75 -a 2 - -t 2.74296 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 75 -a 2 h -t 2.74296 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 75 -a 2 - -t 2.74336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 78 -a 1 h -t 2.74336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 78 -a 1 r -t 2.74336 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 79 -a 1 + -t 2.74336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 79 -a 1 r -t 2.74436 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 80 -a 1 + -t 2.74436 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 80 -a 1 r -t 2.74736 -s 2 -d 0 -p ack -e 40 -c 1 -i 67 -a 1 + -t 2.74736 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 81 -a 1 - -t 2.74736 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 81 -a 1 h -t 2.74736 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 81 -a 1 + -t 2.74736 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 82 -a 1 - -t 2.74836 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 82 -a 1 h -t 2.74836 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 82 -a 1 r -t 2.75232 -s 4 -d 2 -p ack -e 40 -c 1 -i 68 -a 1 + -t 2.75232 -s 2 -d 0 -p ack -e 40 -c 1 -i 68 -a 1 - -t 2.75232 -s 2 -d 0 -p ack -e 40 -c 1 -i 68 -a 1 h -t 2.75232 -s 2 -d 0 -p ack -e 40 -c 1 -i 68 -a 1 r -t 2.75296 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 76 -a 2 + -t 2.75296 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 76 -a 2 - -t 2.75296 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 76 -a 2 h -t 2.75296 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 76 -a 2 - -t 2.75336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 79 -a 1 h -t 2.75336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 79 -a 1 r -t 2.75336 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 81 -a 1 + -t 2.75336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 81 -a 1 r -t 2.75436 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 82 -a 1 + -t 2.75436 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 82 -a 1 r -t 2.75736 -s 2 -d 0 -p ack -e 40 -c 1 -i 68 -a 1 + -t 2.75736 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 83 -a 1 - -t 2.75736 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 83 -a 1 h -t 2.75736 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 83 -a 1 + -t 2.75736 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 84 -a 1 - -t 2.75836 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 84 -a 1 h -t 2.75836 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 84 -a 1 r -t 2.76232 -s 4 -d 2 -p ack -e 40 -c 1 -i 70 -a 1 + -t 2.76232 -s 2 -d 0 -p ack -e 40 -c 1 -i 70 -a 1 - -t 2.76232 -s 2 -d 0 -p ack -e 40 -c 1 -i 70 -a 1 h -t 2.76232 -s 2 -d 0 -p ack -e 40 -c 1 -i 70 -a 1 - -t 2.76336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 80 -a 1 h -t 2.76336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 80 -a 1 r -t 2.76336 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 83 -a 1 + -t 2.76336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 83 -a 1 r -t 2.76436 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 84 -a 1 + -t 2.76436 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 84 -a 1 r -t 2.76736 -s 2 -d 0 -p ack -e 40 -c 1 -i 70 -a 1 + -t 2.76736 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 85 -a 1 - -t 2.76736 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 85 -a 1 h -t 2.76736 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 85 -a 1 + -t 2.76736 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 86 -a 1 - -t 2.76836 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 86 -a 1 h -t 2.76836 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 86 -a 1 r -t 2.77232 -s 4 -d 2 -p ack -e 40 -c 1 -i 71 -a 1 + -t 2.77232 -s 2 -d 0 -p ack -e 40 -c 1 -i 71 -a 1 - -t 2.77232 -s 2 -d 0 -p ack -e 40 -c 1 -i 71 -a 1 h -t 2.77232 -s 2 -d 0 -p ack -e 40 -c 1 -i 71 -a 1 - -t 2.77336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 81 -a 1 h -t 2.77336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 81 -a 1 r -t 2.77336 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 85 -a 1 + -t 2.77336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 85 -a 1 r -t 2.77436 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 86 -a 1 + -t 2.77436 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 86 -a 1 r -t 2.77736 -s 2 -d 0 -p ack -e 40 -c 1 -i 71 -a 1 + -t 2.77736 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 87 -a 1 - -t 2.77736 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 87 -a 1 h -t 2.77736 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 87 -a 1 + -t 2.77736 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 88 -a 1 - -t 2.77836 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 88 -a 1 h -t 2.77836 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 88 -a 1 r -t 2.78232 -s 4 -d 2 -p ack -e 40 -c 1 -i 72 -a 1 + -t 2.78232 -s 2 -d 0 -p ack -e 40 -c 1 -i 72 -a 1 - -t 2.78232 -s 2 -d 0 -p ack -e 40 -c 1 -i 72 -a 1 h -t 2.78232 -s 2 -d 0 -p ack -e 40 -c 1 -i 72 -a 1 - -t 2.78336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 82 -a 1 h -t 2.78336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 82 -a 1 r -t 2.78336 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 87 -a 1 + -t 2.78336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 87 -a 1 r -t 2.78436 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 88 -a 1 + -t 2.78436 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 88 -a 1 r -t 2.78736 -s 2 -d 0 -p ack -e 40 -c 1 -i 72 -a 1 + -t 2.78736 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 89 -a 1 - -t 2.78736 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 89 -a 1 h -t 2.78736 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 89 -a 1 + -t 2.78736 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 90 -a 1 - -t 2.78836 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 90 -a 1 h -t 2.78836 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 90 -a 1 r -t 2.79232 -s 4 -d 2 -p ack -e 40 -c 1 -i 73 -a 1 + -t 2.79232 -s 2 -d 0 -p ack -e 40 -c 1 -i 73 -a 1 - -t 2.79232 -s 2 -d 0 -p ack -e 40 -c 1 -i 73 -a 1 h -t 2.79232 -s 2 -d 0 -p ack -e 40 -c 1 -i 73 -a 1 - -t 2.79336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 83 -a 1 h -t 2.79336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 83 -a 1 r -t 2.79336 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 89 -a 1 + -t 2.79336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 89 -a 1 r -t 2.79436 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 90 -a 1 + -t 2.79436 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 90 -a 1 r -t 2.79736 -s 2 -d 0 -p ack -e 40 -c 1 -i 73 -a 1 + -t 2.79736 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 91 -a 1 - -t 2.79736 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 91 -a 1 h -t 2.79736 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 91 -a 1 + -t 2.79736 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 92 -a 1 - -t 2.79836 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 92 -a 1 h -t 2.79836 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 92 -a 1 - -t 2.80336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 84 -a 1 h -t 2.80336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 84 -a 1 r -t 2.80336 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 91 -a 1 + -t 2.80336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 91 -a 1 r -t 2.80436 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 92 -a 1 + -t 2.80436 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 92 -a 1 - -t 2.81336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 85 -a 1 h -t 2.81336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 85 -a 1 - -t 2.82336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 86 -a 1 h -t 2.82336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 86 -a 1 - -t 2.83336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 87 -a 1 h -t 2.83336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 87 -a 1 r -t 2.84296 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 74 -a 2 + -t 2.84296 -s 3 -d 4 -p ack -e 40 -c 2 -i 93 -a 2 - -t 2.84296 -s 3 -d 4 -p ack -e 40 -c 2 -i 93 -a 2 h -t 2.84296 -s 3 -d 4 -p ack -e 40 -c 2 -i 93 -a 2 - -t 2.84336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 88 -a 1 h -t 2.84336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 88 -a 1 r -t 2.84336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 77 -a 1 + -t 2.84336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 77 -a 1 - -t 2.84336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 77 -a 1 h -t 2.84336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 77 -a 1 r -t 2.85296 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 75 -a 2 + -t 2.85296 -s 3 -d 4 -p ack -e 40 -c 2 -i 94 -a 2 - -t 2.85296 -s 3 -d 4 -p ack -e 40 -c 2 -i 94 -a 2 h -t 2.85296 -s 3 -d 4 -p ack -e 40 -c 2 -i 94 -a 2 - -t 2.85336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 89 -a 1 h -t 2.85336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 89 -a 1 r -t 2.85336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 78 -a 1 + -t 2.85336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 78 -a 1 - -t 2.85336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 78 -a 1 h -t 2.85336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 78 -a 1 r -t 2.86296 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 76 -a 2 + -t 2.86296 -s 3 -d 4 -p ack -e 40 -c 2 -i 95 -a 2 - -t 2.86296 -s 3 -d 4 -p ack -e 40 -c 2 -i 95 -a 2 h -t 2.86296 -s 3 -d 4 -p ack -e 40 -c 2 -i 95 -a 2 - -t 2.86336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 90 -a 1 h -t 2.86336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 90 -a 1 r -t 2.86336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 79 -a 1 + -t 2.86336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 79 -a 1 - -t 2.86336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 79 -a 1 h -t 2.86336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 79 -a 1 - -t 2.87336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 91 -a 1 h -t 2.87336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 91 -a 1 r -t 2.87336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 80 -a 1 + -t 2.87336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 80 -a 1 - -t 2.87336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 80 -a 1 h -t 2.87336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 80 -a 1 - -t 2.88336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 92 -a 1 h -t 2.88336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 92 -a 1 r -t 2.88336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 81 -a 1 + -t 2.88336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 81 -a 1 - -t 2.88336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 81 -a 1 h -t 2.88336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 81 -a 1 r -t 2.89336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 82 -a 1 + -t 2.89336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 82 -a 1 - -t 2.89336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 82 -a 1 h -t 2.89336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 82 -a 1 r -t 2.90336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 83 -a 1 + -t 2.90336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 83 -a 1 - -t 2.90336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 83 -a 1 h -t 2.90336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 83 -a 1 r -t 2.91336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 84 -a 1 + -t 2.91336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 84 -a 1 - -t 2.91336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 84 -a 1 h -t 2.91336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 84 -a 1 r -t 2.92336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 85 -a 1 + -t 2.92336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 85 -a 1 - -t 2.92336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 85 -a 1 h -t 2.92336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 85 -a 1 r -t 2.93336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 86 -a 1 + -t 2.93336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 86 -a 1 - -t 2.93336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 86 -a 1 h -t 2.93336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 86 -a 1 r -t 2.94336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 87 -a 1 + -t 2.94336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 87 -a 1 - -t 2.94336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 87 -a 1 h -t 2.94336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 87 -a 1 r -t 2.94336 -s 3 -d 4 -p ack -e 40 -c 2 -i 93 -a 2 + -t 2.94336 -s 4 -d 2 -p ack -e 40 -c 2 -i 93 -a 2 - -t 2.94336 -s 4 -d 2 -p ack -e 40 -c 2 -i 93 -a 2 h -t 2.94336 -s 4 -d 2 -p ack -e 40 -c 2 -i 93 -a 2 r -t 2.95336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 88 -a 1 + -t 2.95336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 88 -a 1 - -t 2.95336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 88 -a 1 h -t 2.95336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 88 -a 1 r -t 2.95336 -s 3 -d 4 -p ack -e 40 -c 2 -i 94 -a 2 + -t 2.95336 -s 4 -d 2 -p ack -e 40 -c 2 -i 94 -a 2 - -t 2.95336 -s 4 -d 2 -p ack -e 40 -c 2 -i 94 -a 2 h -t 2.95336 -s 4 -d 2 -p ack -e 40 -c 2 -i 94 -a 2 r -t 2.95336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 77 -a 1 + -t 2.95336 -s 3 -d 4 -p ack -e 40 -c 1 -i 96 -a 1 - -t 2.95336 -s 3 -d 4 -p ack -e 40 -c 1 -i 96 -a 1 h -t 2.95336 -s 3 -d 4 -p ack -e 40 -c 1 -i 96 -a 1 r -t 2.96336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 89 -a 1 + -t 2.96336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 89 -a 1 - -t 2.96336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 89 -a 1 h -t 2.96336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 89 -a 1 r -t 2.96336 -s 3 -d 4 -p ack -e 40 -c 2 -i 95 -a 2 + -t 2.96336 -s 4 -d 2 -p ack -e 40 -c 2 -i 95 -a 2 - -t 2.96336 -s 4 -d 2 -p ack -e 40 -c 2 -i 95 -a 2 h -t 2.96336 -s 4 -d 2 -p ack -e 40 -c 2 -i 95 -a 2 r -t 2.96336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 78 -a 1 + -t 2.96336 -s 3 -d 4 -p ack -e 40 -c 1 -i 97 -a 1 - -t 2.96336 -s 3 -d 4 -p ack -e 40 -c 1 -i 97 -a 1 h -t 2.96336 -s 3 -d 4 -p ack -e 40 -c 1 -i 97 -a 1 r -t 2.97336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 90 -a 1 + -t 2.97336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 90 -a 1 - -t 2.97336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 90 -a 1 h -t 2.97336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 90 -a 1 r -t 2.97336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 79 -a 1 + -t 2.97336 -s 3 -d 4 -p ack -e 40 -c 1 -i 98 -a 1 - -t 2.97336 -s 3 -d 4 -p ack -e 40 -c 1 -i 98 -a 1 h -t 2.97336 -s 3 -d 4 -p ack -e 40 -c 1 -i 98 -a 1 r -t 2.98336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 91 -a 1 + -t 2.98336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 91 -a 1 - -t 2.98336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 91 -a 1 h -t 2.98336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 91 -a 1 r -t 2.98336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 80 -a 1 + -t 2.98336 -s 3 -d 4 -p ack -e 40 -c 1 -i 99 -a 1 - -t 2.98336 -s 3 -d 4 -p ack -e 40 -c 1 -i 99 -a 1 h -t 2.98336 -s 3 -d 4 -p ack -e 40 -c 1 -i 99 -a 1 r -t 2.99336 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 92 -a 1 + -t 2.99336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 92 -a 1 - -t 2.99336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 92 -a 1 h -t 2.99336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 92 -a 1 r -t 2.99336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 81 -a 1 + -t 2.99336 -s 3 -d 4 -p ack -e 40 -c 1 -i 100 -a 1 - -t 2.99336 -s 3 -d 4 -p ack -e 40 -c 1 -i 100 -a 1 h -t 2.99336 -s 3 -d 4 -p ack -e 40 -c 1 -i 100 -a 1 r -t 3.00336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 82 -a 1 + -t 3.00336 -s 3 -d 4 -p ack -e 40 -c 1 -i 101 -a 1 - -t 3.00336 -s 3 -d 4 -p ack -e 40 -c 1 -i 101 -a 1 h -t 3.00336 -s 3 -d 4 -p ack -e 40 -c 1 -i 101 -a 1 r -t 3.01336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 83 -a 1 + -t 3.01336 -s 3 -d 4 -p ack -e 40 -c 1 -i 102 -a 1 - -t 3.01336 -s 3 -d 4 -p ack -e 40 -c 1 -i 102 -a 1 h -t 3.01336 -s 3 -d 4 -p ack -e 40 -c 1 -i 102 -a 1 r -t 3.02336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 84 -a 1 + -t 3.02336 -s 3 -d 4 -p ack -e 40 -c 1 -i 103 -a 1 - -t 3.02336 -s 3 -d 4 -p ack -e 40 -c 1 -i 103 -a 1 h -t 3.02336 -s 3 -d 4 -p ack -e 40 -c 1 -i 103 -a 1 r -t 3.03336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 85 -a 1 + -t 3.03336 -s 3 -d 4 -p ack -e 40 -c 1 -i 104 -a 1 - -t 3.03336 -s 3 -d 4 -p ack -e 40 -c 1 -i 104 -a 1 h -t 3.03336 -s 3 -d 4 -p ack -e 40 -c 1 -i 104 -a 1 r -t 3.04336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 86 -a 1 + -t 3.04336 -s 3 -d 4 -p ack -e 40 -c 1 -i 105 -a 1 - -t 3.04336 -s 3 -d 4 -p ack -e 40 -c 1 -i 105 -a 1 h -t 3.04336 -s 3 -d 4 -p ack -e 40 -c 1 -i 105 -a 1 r -t 3.04376 -s 4 -d 2 -p ack -e 40 -c 2 -i 93 -a 2 + -t 3.04376 -s 2 -d 1 -p ack -e 40 -c 2 -i 93 -a 2 - -t 3.04376 -s 2 -d 1 -p ack -e 40 -c 2 -i 93 -a 2 h -t 3.04376 -s 2 -d 1 -p ack -e 40 -c 2 -i 93 -a 2 r -t 3.0488 -s 2 -d 1 -p ack -e 40 -c 2 -i 93 -a 2 + -t 3.0488 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 106 -a 2 - -t 3.0488 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 106 -a 2 h -t 3.0488 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 106 -a 2 r -t 3.05336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 87 -a 1 + -t 3.05336 -s 3 -d 4 -p ack -e 40 -c 1 -i 107 -a 1 - -t 3.05336 -s 3 -d 4 -p ack -e 40 -c 1 -i 107 -a 1 h -t 3.05336 -s 3 -d 4 -p ack -e 40 -c 1 -i 107 -a 1 r -t 3.05376 -s 4 -d 2 -p ack -e 40 -c 2 -i 94 -a 2 + -t 3.05376 -s 2 -d 1 -p ack -e 40 -c 2 -i 94 -a 2 - -t 3.05376 -s 2 -d 1 -p ack -e 40 -c 2 -i 94 -a 2 h -t 3.05376 -s 2 -d 1 -p ack -e 40 -c 2 -i 94 -a 2 r -t 3.05376 -s 3 -d 4 -p ack -e 40 -c 1 -i 96 -a 1 + -t 3.05376 -s 4 -d 2 -p ack -e 40 -c 1 -i 96 -a 1 - -t 3.05376 -s 4 -d 2 -p ack -e 40 -c 1 -i 96 -a 1 h -t 3.05376 -s 4 -d 2 -p ack -e 40 -c 1 -i 96 -a 1 r -t 3.0548 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 106 -a 2 + -t 3.0548 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 106 -a 2 - -t 3.0548 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 106 -a 2 h -t 3.0548 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 106 -a 2 r -t 3.0588 -s 2 -d 1 -p ack -e 40 -c 2 -i 94 -a 2 + -t 3.0588 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 108 -a 2 - -t 3.0588 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 108 -a 2 h -t 3.0588 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 108 -a 2 + -t 3.0588 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 109 -a 2 - -t 3.0598 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 109 -a 2 h -t 3.0598 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 109 -a 2 r -t 3.06336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 88 -a 1 + -t 3.06336 -s 3 -d 4 -p ack -e 40 -c 1 -i 110 -a 1 - -t 3.06336 -s 3 -d 4 -p ack -e 40 -c 1 -i 110 -a 1 h -t 3.06336 -s 3 -d 4 -p ack -e 40 -c 1 -i 110 -a 1 r -t 3.06376 -s 4 -d 2 -p ack -e 40 -c 2 -i 95 -a 2 + -t 3.06376 -s 2 -d 1 -p ack -e 40 -c 2 -i 95 -a 2 - -t 3.06376 -s 2 -d 1 -p ack -e 40 -c 2 -i 95 -a 2 h -t 3.06376 -s 2 -d 1 -p ack -e 40 -c 2 -i 95 -a 2 r -t 3.06376 -s 3 -d 4 -p ack -e 40 -c 1 -i 97 -a 1 + -t 3.06376 -s 4 -d 2 -p ack -e 40 -c 1 -i 97 -a 1 - -t 3.06376 -s 4 -d 2 -p ack -e 40 -c 1 -i 97 -a 1 h -t 3.06376 -s 4 -d 2 -p ack -e 40 -c 1 -i 97 -a 1 r -t 3.0648 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 108 -a 2 + -t 3.0648 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 108 -a 2 - -t 3.0648 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 108 -a 2 h -t 3.0648 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 108 -a 2 r -t 3.0658 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 109 -a 2 + -t 3.0658 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 109 -a 2 r -t 3.0688 -s 2 -d 1 -p ack -e 40 -c 2 -i 95 -a 2 + -t 3.0688 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 111 -a 2 - -t 3.0688 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 111 -a 2 h -t 3.0688 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 111 -a 2 r -t 3.07336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 89 -a 1 + -t 3.07336 -s 3 -d 4 -p ack -e 40 -c 1 -i 112 -a 1 - -t 3.07336 -s 3 -d 4 -p ack -e 40 -c 1 -i 112 -a 1 h -t 3.07336 -s 3 -d 4 -p ack -e 40 -c 1 -i 112 -a 1 r -t 3.07376 -s 3 -d 4 -p ack -e 40 -c 1 -i 98 -a 1 + -t 3.07376 -s 4 -d 2 -p ack -e 40 -c 1 -i 98 -a 1 - -t 3.07376 -s 4 -d 2 -p ack -e 40 -c 1 -i 98 -a 1 h -t 3.07376 -s 4 -d 2 -p ack -e 40 -c 1 -i 98 -a 1 - -t 3.0748 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 109 -a 2 h -t 3.0748 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 109 -a 2 r -t 3.0748 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 111 -a 2 + -t 3.0748 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 111 -a 2 r -t 3.08336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 90 -a 1 + -t 3.08336 -s 3 -d 4 -p ack -e 40 -c 1 -i 113 -a 1 - -t 3.08336 -s 3 -d 4 -p ack -e 40 -c 1 -i 113 -a 1 h -t 3.08336 -s 3 -d 4 -p ack -e 40 -c 1 -i 113 -a 1 r -t 3.08376 -s 3 -d 4 -p ack -e 40 -c 1 -i 99 -a 1 + -t 3.08376 -s 4 -d 2 -p ack -e 40 -c 1 -i 99 -a 1 - -t 3.08376 -s 4 -d 2 -p ack -e 40 -c 1 -i 99 -a 1 h -t 3.08376 -s 4 -d 2 -p ack -e 40 -c 1 -i 99 -a 1 - -t 3.0848 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 111 -a 2 h -t 3.0848 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 111 -a 2 r -t 3.09336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 91 -a 1 + -t 3.09336 -s 3 -d 4 -p ack -e 40 -c 1 -i 114 -a 1 - -t 3.09336 -s 3 -d 4 -p ack -e 40 -c 1 -i 114 -a 1 h -t 3.09336 -s 3 -d 4 -p ack -e 40 -c 1 -i 114 -a 1 r -t 3.09376 -s 3 -d 4 -p ack -e 40 -c 1 -i 100 -a 1 + -t 3.09376 -s 4 -d 2 -p ack -e 40 -c 1 -i 100 -a 1 - -t 3.09376 -s 4 -d 2 -p ack -e 40 -c 1 -i 100 -a 1 h -t 3.09376 -s 4 -d 2 -p ack -e 40 -c 1 -i 100 -a 1 r -t 3.10336 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 92 -a 1 + -t 3.10336 -s 3 -d 4 -p ack -e 40 -c 1 -i 115 -a 1 - -t 3.10336 -s 3 -d 4 -p ack -e 40 -c 1 -i 115 -a 1 h -t 3.10336 -s 3 -d 4 -p ack -e 40 -c 1 -i 115 -a 1 r -t 3.10376 -s 3 -d 4 -p ack -e 40 -c 1 -i 101 -a 1 + -t 3.10376 -s 4 -d 2 -p ack -e 40 -c 1 -i 101 -a 1 - -t 3.10376 -s 4 -d 2 -p ack -e 40 -c 1 -i 101 -a 1 h -t 3.10376 -s 4 -d 2 -p ack -e 40 -c 1 -i 101 -a 1 r -t 3.11376 -s 3 -d 4 -p ack -e 40 -c 1 -i 102 -a 1 + -t 3.11376 -s 4 -d 2 -p ack -e 40 -c 1 -i 102 -a 1 - -t 3.11376 -s 4 -d 2 -p ack -e 40 -c 1 -i 102 -a 1 h -t 3.11376 -s 4 -d 2 -p ack -e 40 -c 1 -i 102 -a 1 r -t 3.12376 -s 3 -d 4 -p ack -e 40 -c 1 -i 103 -a 1 + -t 3.12376 -s 4 -d 2 -p ack -e 40 -c 1 -i 103 -a 1 - -t 3.12376 -s 4 -d 2 -p ack -e 40 -c 1 -i 103 -a 1 h -t 3.12376 -s 4 -d 2 -p ack -e 40 -c 1 -i 103 -a 1 r -t 3.13376 -s 3 -d 4 -p ack -e 40 -c 1 -i 104 -a 1 + -t 3.13376 -s 4 -d 2 -p ack -e 40 -c 1 -i 104 -a 1 - -t 3.13376 -s 4 -d 2 -p ack -e 40 -c 1 -i 104 -a 1 h -t 3.13376 -s 4 -d 2 -p ack -e 40 -c 1 -i 104 -a 1 r -t 3.14376 -s 3 -d 4 -p ack -e 40 -c 1 -i 105 -a 1 + -t 3.14376 -s 4 -d 2 -p ack -e 40 -c 1 -i 105 -a 1 - -t 3.14376 -s 4 -d 2 -p ack -e 40 -c 1 -i 105 -a 1 h -t 3.14376 -s 4 -d 2 -p ack -e 40 -c 1 -i 105 -a 1 r -t 3.15376 -s 3 -d 4 -p ack -e 40 -c 1 -i 107 -a 1 + -t 3.15376 -s 4 -d 2 -p ack -e 40 -c 1 -i 107 -a 1 - -t 3.15376 -s 4 -d 2 -p ack -e 40 -c 1 -i 107 -a 1 h -t 3.15376 -s 4 -d 2 -p ack -e 40 -c 1 -i 107 -a 1 r -t 3.15416 -s 4 -d 2 -p ack -e 40 -c 1 -i 96 -a 1 + -t 3.15416 -s 2 -d 0 -p ack -e 40 -c 1 -i 96 -a 1 - -t 3.15416 -s 2 -d 0 -p ack -e 40 -c 1 -i 96 -a 1 h -t 3.15416 -s 2 -d 0 -p ack -e 40 -c 1 -i 96 -a 1 r -t 3.1592 -s 2 -d 0 -p ack -e 40 -c 1 -i 96 -a 1 + -t 3.1592 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 116 -a 1 - -t 3.1592 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 116 -a 1 h -t 3.1592 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 116 -a 1 + -t 3.1592 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 117 -a 1 - -t 3.1602 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 117 -a 1 h -t 3.1602 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 117 -a 1 r -t 3.16376 -s 3 -d 4 -p ack -e 40 -c 1 -i 110 -a 1 + -t 3.16376 -s 4 -d 2 -p ack -e 40 -c 1 -i 110 -a 1 - -t 3.16376 -s 4 -d 2 -p ack -e 40 -c 1 -i 110 -a 1 h -t 3.16376 -s 4 -d 2 -p ack -e 40 -c 1 -i 110 -a 1 r -t 3.16416 -s 4 -d 2 -p ack -e 40 -c 1 -i 97 -a 1 + -t 3.16416 -s 2 -d 0 -p ack -e 40 -c 1 -i 97 -a 1 - -t 3.16416 -s 2 -d 0 -p ack -e 40 -c 1 -i 97 -a 1 h -t 3.16416 -s 2 -d 0 -p ack -e 40 -c 1 -i 97 -a 1 r -t 3.1648 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 106 -a 2 + -t 3.1648 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 106 -a 2 - -t 3.1648 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 106 -a 2 h -t 3.1648 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 106 -a 2 r -t 3.1652 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 116 -a 1 + -t 3.1652 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 116 -a 1 - -t 3.1652 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 116 -a 1 h -t 3.1652 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 116 -a 1 r -t 3.1662 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 117 -a 1 + -t 3.1662 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 117 -a 1 r -t 3.1692 -s 2 -d 0 -p ack -e 40 -c 1 -i 97 -a 1 + -t 3.1692 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 118 -a 1 - -t 3.1692 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 118 -a 1 h -t 3.1692 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 118 -a 1 + -t 3.1692 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 119 -a 1 - -t 3.1702 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 119 -a 1 h -t 3.1702 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 119 -a 1 r -t 3.17376 -s 3 -d 4 -p ack -e 40 -c 1 -i 112 -a 1 + -t 3.17376 -s 4 -d 2 -p ack -e 40 -c 1 -i 112 -a 1 - -t 3.17376 -s 4 -d 2 -p ack -e 40 -c 1 -i 112 -a 1 h -t 3.17376 -s 4 -d 2 -p ack -e 40 -c 1 -i 112 -a 1 r -t 3.17416 -s 4 -d 2 -p ack -e 40 -c 1 -i 98 -a 1 + -t 3.17416 -s 2 -d 0 -p ack -e 40 -c 1 -i 98 -a 1 - -t 3.17416 -s 2 -d 0 -p ack -e 40 -c 1 -i 98 -a 1 h -t 3.17416 -s 2 -d 0 -p ack -e 40 -c 1 -i 98 -a 1 r -t 3.1748 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 108 -a 2 + -t 3.1748 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 108 -a 2 - -t 3.1748 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 108 -a 2 h -t 3.1748 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 108 -a 2 - -t 3.1752 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 117 -a 1 h -t 3.1752 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 117 -a 1 r -t 3.1752 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 118 -a 1 + -t 3.1752 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 118 -a 1 r -t 3.1762 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 119 -a 1 + -t 3.1762 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 119 -a 1 r -t 3.1792 -s 2 -d 0 -p ack -e 40 -c 1 -i 98 -a 1 + -t 3.1792 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 120 -a 1 - -t 3.1792 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 120 -a 1 h -t 3.1792 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 120 -a 1 + -t 3.1792 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 121 -a 1 - -t 3.1802 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 121 -a 1 h -t 3.1802 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 121 -a 1 r -t 3.18376 -s 3 -d 4 -p ack -e 40 -c 1 -i 113 -a 1 + -t 3.18376 -s 4 -d 2 -p ack -e 40 -c 1 -i 113 -a 1 - -t 3.18376 -s 4 -d 2 -p ack -e 40 -c 1 -i 113 -a 1 h -t 3.18376 -s 4 -d 2 -p ack -e 40 -c 1 -i 113 -a 1 r -t 3.18416 -s 4 -d 2 -p ack -e 40 -c 1 -i 99 -a 1 + -t 3.18416 -s 2 -d 0 -p ack -e 40 -c 1 -i 99 -a 1 - -t 3.18416 -s 2 -d 0 -p ack -e 40 -c 1 -i 99 -a 1 h -t 3.18416 -s 2 -d 0 -p ack -e 40 -c 1 -i 99 -a 1 r -t 3.1848 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 109 -a 2 + -t 3.1848 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 109 -a 2 - -t 3.1848 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 109 -a 2 h -t 3.1848 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 109 -a 2 - -t 3.1852 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 118 -a 1 h -t 3.1852 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 118 -a 1 r -t 3.1852 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 120 -a 1 + -t 3.1852 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 120 -a 1 r -t 3.1862 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 121 -a 1 + -t 3.1862 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 121 -a 1 r -t 3.1892 -s 2 -d 0 -p ack -e 40 -c 1 -i 99 -a 1 + -t 3.1892 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 122 -a 1 - -t 3.1892 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 122 -a 1 h -t 3.1892 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 122 -a 1 + -t 3.1892 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 123 -a 1 - -t 3.1902 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 123 -a 1 h -t 3.1902 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 123 -a 1 r -t 3.19376 -s 3 -d 4 -p ack -e 40 -c 1 -i 114 -a 1 + -t 3.19376 -s 4 -d 2 -p ack -e 40 -c 1 -i 114 -a 1 - -t 3.19376 -s 4 -d 2 -p ack -e 40 -c 1 -i 114 -a 1 h -t 3.19376 -s 4 -d 2 -p ack -e 40 -c 1 -i 114 -a 1 r -t 3.19416 -s 4 -d 2 -p ack -e 40 -c 1 -i 100 -a 1 + -t 3.19416 -s 2 -d 0 -p ack -e 40 -c 1 -i 100 -a 1 - -t 3.19416 -s 2 -d 0 -p ack -e 40 -c 1 -i 100 -a 1 h -t 3.19416 -s 2 -d 0 -p ack -e 40 -c 1 -i 100 -a 1 r -t 3.1948 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 111 -a 2 + -t 3.1948 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 111 -a 2 - -t 3.1948 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 111 -a 2 h -t 3.1948 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 111 -a 2 - -t 3.1952 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 119 -a 1 h -t 3.1952 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 119 -a 1 r -t 3.1952 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 122 -a 1 + -t 3.1952 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 122 -a 1 r -t 3.1962 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 123 -a 1 + -t 3.1962 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 123 -a 1 r -t 3.1992 -s 2 -d 0 -p ack -e 40 -c 1 -i 100 -a 1 + -t 3.1992 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 124 -a 1 - -t 3.1992 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 124 -a 1 h -t 3.1992 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 124 -a 1 + -t 3.1992 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 125 -a 1 - -t 3.2002 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 125 -a 1 h -t 3.2002 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 125 -a 1 r -t 3.20376 -s 3 -d 4 -p ack -e 40 -c 1 -i 115 -a 1 + -t 3.20376 -s 4 -d 2 -p ack -e 40 -c 1 -i 115 -a 1 - -t 3.20376 -s 4 -d 2 -p ack -e 40 -c 1 -i 115 -a 1 h -t 3.20376 -s 4 -d 2 -p ack -e 40 -c 1 -i 115 -a 1 r -t 3.20416 -s 4 -d 2 -p ack -e 40 -c 1 -i 101 -a 1 + -t 3.20416 -s 2 -d 0 -p ack -e 40 -c 1 -i 101 -a 1 - -t 3.20416 -s 2 -d 0 -p ack -e 40 -c 1 -i 101 -a 1 h -t 3.20416 -s 2 -d 0 -p ack -e 40 -c 1 -i 101 -a 1 - -t 3.2052 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 120 -a 1 h -t 3.2052 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 120 -a 1 r -t 3.2052 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 124 -a 1 + -t 3.2052 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 124 -a 1 r -t 3.2062 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 125 -a 1 + -t 3.2062 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 125 -a 1 r -t 3.2092 -s 2 -d 0 -p ack -e 40 -c 1 -i 101 -a 1 + -t 3.2092 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 126 -a 1 - -t 3.2092 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 126 -a 1 h -t 3.2092 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 126 -a 1 + -t 3.2092 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 127 -a 1 - -t 3.2102 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 127 -a 1 h -t 3.2102 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 127 -a 1 r -t 3.21416 -s 4 -d 2 -p ack -e 40 -c 1 -i 102 -a 1 + -t 3.21416 -s 2 -d 0 -p ack -e 40 -c 1 -i 102 -a 1 - -t 3.21416 -s 2 -d 0 -p ack -e 40 -c 1 -i 102 -a 1 h -t 3.21416 -s 2 -d 0 -p ack -e 40 -c 1 -i 102 -a 1 - -t 3.2152 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 121 -a 1 h -t 3.2152 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 121 -a 1 r -t 3.2152 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 126 -a 1 + -t 3.2152 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 126 -a 1 r -t 3.2162 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 127 -a 1 + -t 3.2162 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 127 -a 1 r -t 3.2192 -s 2 -d 0 -p ack -e 40 -c 1 -i 102 -a 1 + -t 3.2192 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 128 -a 1 - -t 3.2192 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 128 -a 1 h -t 3.2192 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 128 -a 1 + -t 3.2192 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 129 -a 1 - -t 3.2202 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 129 -a 1 h -t 3.2202 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 129 -a 1 r -t 3.22416 -s 4 -d 2 -p ack -e 40 -c 1 -i 103 -a 1 + -t 3.22416 -s 2 -d 0 -p ack -e 40 -c 1 -i 103 -a 1 - -t 3.22416 -s 2 -d 0 -p ack -e 40 -c 1 -i 103 -a 1 h -t 3.22416 -s 2 -d 0 -p ack -e 40 -c 1 -i 103 -a 1 - -t 3.2252 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 122 -a 1 h -t 3.2252 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 122 -a 1 r -t 3.2252 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 128 -a 1 + -t 3.2252 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 128 -a 1 r -t 3.2262 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 129 -a 1 + -t 3.2262 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 129 -a 1 r -t 3.2292 -s 2 -d 0 -p ack -e 40 -c 1 -i 103 -a 1 + -t 3.2292 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 130 -a 1 - -t 3.2292 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 130 -a 1 h -t 3.2292 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 130 -a 1 + -t 3.2292 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 131 -a 1 - -t 3.2302 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 131 -a 1 h -t 3.2302 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 131 -a 1 r -t 3.23416 -s 4 -d 2 -p ack -e 40 -c 1 -i 104 -a 1 + -t 3.23416 -s 2 -d 0 -p ack -e 40 -c 1 -i 104 -a 1 - -t 3.23416 -s 2 -d 0 -p ack -e 40 -c 1 -i 104 -a 1 h -t 3.23416 -s 2 -d 0 -p ack -e 40 -c 1 -i 104 -a 1 - -t 3.2352 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 123 -a 1 h -t 3.2352 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 123 -a 1 r -t 3.2352 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 130 -a 1 + -t 3.2352 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 130 -a 1 r -t 3.2362 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 131 -a 1 + -t 3.2362 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 131 -a 1 r -t 3.2392 -s 2 -d 0 -p ack -e 40 -c 1 -i 104 -a 1 + -t 3.2392 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 132 -a 1 - -t 3.2392 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 132 -a 1 h -t 3.2392 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 132 -a 1 + -t 3.2392 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 133 -a 1 - -t 3.2402 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 133 -a 1 h -t 3.2402 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 133 -a 1 r -t 3.24416 -s 4 -d 2 -p ack -e 40 -c 1 -i 105 -a 1 + -t 3.24416 -s 2 -d 0 -p ack -e 40 -c 1 -i 105 -a 1 - -t 3.24416 -s 2 -d 0 -p ack -e 40 -c 1 -i 105 -a 1 h -t 3.24416 -s 2 -d 0 -p ack -e 40 -c 1 -i 105 -a 1 - -t 3.2452 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 124 -a 1 h -t 3.2452 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 124 -a 1 r -t 3.2452 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 132 -a 1 + -t 3.2452 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 132 -a 1 r -t 3.2462 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 133 -a 1 + -t 3.2462 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 133 -a 1 r -t 3.2492 -s 2 -d 0 -p ack -e 40 -c 1 -i 105 -a 1 + -t 3.2492 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 134 -a 1 - -t 3.2492 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 134 -a 1 h -t 3.2492 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 134 -a 1 + -t 3.2492 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 135 -a 1 - -t 3.2502 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 135 -a 1 h -t 3.2502 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 135 -a 1 r -t 3.25416 -s 4 -d 2 -p ack -e 40 -c 1 -i 107 -a 1 + -t 3.25416 -s 2 -d 0 -p ack -e 40 -c 1 -i 107 -a 1 - -t 3.25416 -s 2 -d 0 -p ack -e 40 -c 1 -i 107 -a 1 h -t 3.25416 -s 2 -d 0 -p ack -e 40 -c 1 -i 107 -a 1 - -t 3.2552 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 125 -a 1 h -t 3.2552 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 125 -a 1 r -t 3.2552 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 134 -a 1 + -t 3.2552 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 134 -a 1 r -t 3.2562 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 135 -a 1 + -t 3.2562 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 135 -a 1 r -t 3.2592 -s 2 -d 0 -p ack -e 40 -c 1 -i 107 -a 1 + -t 3.2592 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 136 -a 1 - -t 3.2592 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 136 -a 1 h -t 3.2592 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 136 -a 1 + -t 3.2592 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 137 -a 1 - -t 3.2602 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 137 -a 1 h -t 3.2602 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 137 -a 1 r -t 3.26416 -s 4 -d 2 -p ack -e 40 -c 1 -i 110 -a 1 + -t 3.26416 -s 2 -d 0 -p ack -e 40 -c 1 -i 110 -a 1 - -t 3.26416 -s 2 -d 0 -p ack -e 40 -c 1 -i 110 -a 1 h -t 3.26416 -s 2 -d 0 -p ack -e 40 -c 1 -i 110 -a 1 - -t 3.2652 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 126 -a 1 h -t 3.2652 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 126 -a 1 r -t 3.2652 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 136 -a 1 + -t 3.2652 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 136 -a 1 r -t 3.2662 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 137 -a 1 + -t 3.2662 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 137 -a 1 r -t 3.2692 -s 2 -d 0 -p ack -e 40 -c 1 -i 110 -a 1 + -t 3.2692 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 138 -a 1 - -t 3.2692 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 138 -a 1 h -t 3.2692 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 138 -a 1 + -t 3.2692 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 139 -a 1 - -t 3.2702 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 139 -a 1 h -t 3.2702 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 139 -a 1 r -t 3.27416 -s 4 -d 2 -p ack -e 40 -c 1 -i 112 -a 1 + -t 3.27416 -s 2 -d 0 -p ack -e 40 -c 1 -i 112 -a 1 - -t 3.27416 -s 2 -d 0 -p ack -e 40 -c 1 -i 112 -a 1 h -t 3.27416 -s 2 -d 0 -p ack -e 40 -c 1 -i 112 -a 1 r -t 3.2748 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 106 -a 2 + -t 3.2748 -s 3 -d 4 -p ack -e 40 -c 2 -i 140 -a 2 - -t 3.2748 -s 3 -d 4 -p ack -e 40 -c 2 -i 140 -a 2 h -t 3.2748 -s 3 -d 4 -p ack -e 40 -c 2 -i 140 -a 2 - -t 3.2752 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 127 -a 1 h -t 3.2752 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 127 -a 1 r -t 3.2752 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 138 -a 1 + -t 3.2752 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 138 -a 1 r -t 3.2752 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 116 -a 1 + -t 3.2752 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 116 -a 1 - -t 3.2752 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 116 -a 1 h -t 3.2752 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 116 -a 1 r -t 3.2762 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 139 -a 1 + -t 3.2762 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 139 -a 1 r -t 3.2792 -s 2 -d 0 -p ack -e 40 -c 1 -i 112 -a 1 + -t 3.2792 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 141 -a 1 - -t 3.2792 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 141 -a 1 h -t 3.2792 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 141 -a 1 + -t 3.2792 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 142 -a 1 - -t 3.2802 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 142 -a 1 h -t 3.2802 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 142 -a 1 r -t 3.28416 -s 4 -d 2 -p ack -e 40 -c 1 -i 113 -a 1 + -t 3.28416 -s 2 -d 0 -p ack -e 40 -c 1 -i 113 -a 1 - -t 3.28416 -s 2 -d 0 -p ack -e 40 -c 1 -i 113 -a 1 h -t 3.28416 -s 2 -d 0 -p ack -e 40 -c 1 -i 113 -a 1 r -t 3.2848 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 108 -a 2 + -t 3.2848 -s 3 -d 4 -p ack -e 40 -c 2 -i 143 -a 2 - -t 3.2848 -s 3 -d 4 -p ack -e 40 -c 2 -i 143 -a 2 h -t 3.2848 -s 3 -d 4 -p ack -e 40 -c 2 -i 143 -a 2 - -t 3.2852 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 128 -a 1 h -t 3.2852 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 128 -a 1 r -t 3.2852 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 141 -a 1 + -t 3.2852 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 141 -a 1 r -t 3.2852 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 117 -a 1 + -t 3.2852 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 117 -a 1 - -t 3.2852 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 117 -a 1 h -t 3.2852 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 117 -a 1 r -t 3.2862 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 142 -a 1 + -t 3.2862 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 142 -a 1 r -t 3.2892 -s 2 -d 0 -p ack -e 40 -c 1 -i 113 -a 1 + -t 3.2892 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 144 -a 1 - -t 3.2892 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 144 -a 1 h -t 3.2892 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 144 -a 1 + -t 3.2892 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 145 -a 1 - -t 3.2902 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 145 -a 1 h -t 3.2902 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 145 -a 1 r -t 3.29416 -s 4 -d 2 -p ack -e 40 -c 1 -i 114 -a 1 + -t 3.29416 -s 2 -d 0 -p ack -e 40 -c 1 -i 114 -a 1 - -t 3.29416 -s 2 -d 0 -p ack -e 40 -c 1 -i 114 -a 1 h -t 3.29416 -s 2 -d 0 -p ack -e 40 -c 1 -i 114 -a 1 r -t 3.2948 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 109 -a 2 + -t 3.2948 -s 3 -d 4 -p ack -e 40 -c 2 -i 146 -a 2 - -t 3.2948 -s 3 -d 4 -p ack -e 40 -c 2 -i 146 -a 2 h -t 3.2948 -s 3 -d 4 -p ack -e 40 -c 2 -i 146 -a 2 - -t 3.2952 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 129 -a 1 h -t 3.2952 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 129 -a 1 r -t 3.2952 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 144 -a 1 + -t 3.2952 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 144 -a 1 r -t 3.2952 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 118 -a 1 + -t 3.2952 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 118 -a 1 - -t 3.2952 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 118 -a 1 h -t 3.2952 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 118 -a 1 r -t 3.2962 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 145 -a 1 + -t 3.2962 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 145 -a 1 r -t 3.2992 -s 2 -d 0 -p ack -e 40 -c 1 -i 114 -a 1 + -t 3.2992 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 147 -a 1 - -t 3.2992 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 147 -a 1 h -t 3.2992 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 147 -a 1 + -t 3.2992 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 148 -a 1 - -t 3.3002 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 148 -a 1 h -t 3.3002 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 148 -a 1 r -t 3.30416 -s 4 -d 2 -p ack -e 40 -c 1 -i 115 -a 1 + -t 3.30416 -s 2 -d 0 -p ack -e 40 -c 1 -i 115 -a 1 - -t 3.30416 -s 2 -d 0 -p ack -e 40 -c 1 -i 115 -a 1 h -t 3.30416 -s 2 -d 0 -p ack -e 40 -c 1 -i 115 -a 1 r -t 3.3048 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 111 -a 2 + -t 3.3048 -s 3 -d 4 -p ack -e 40 -c 2 -i 149 -a 2 - -t 3.3048 -s 3 -d 4 -p ack -e 40 -c 2 -i 149 -a 2 h -t 3.3048 -s 3 -d 4 -p ack -e 40 -c 2 -i 149 -a 2 - -t 3.3052 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 130 -a 1 h -t 3.3052 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 130 -a 1 r -t 3.3052 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 147 -a 1 + -t 3.3052 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 147 -a 1 r -t 3.3052 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 119 -a 1 + -t 3.3052 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 119 -a 1 - -t 3.3052 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 119 -a 1 h -t 3.3052 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 119 -a 1 r -t 3.3062 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 148 -a 1 + -t 3.3062 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 148 -a 1 r -t 3.3092 -s 2 -d 0 -p ack -e 40 -c 1 -i 115 -a 1 + -t 3.3092 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 150 -a 1 - -t 3.3092 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 150 -a 1 h -t 3.3092 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 150 -a 1 + -t 3.3092 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 151 -a 1 - -t 3.3102 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 151 -a 1 h -t 3.3102 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 151 -a 1 - -t 3.3152 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 131 -a 1 h -t 3.3152 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 131 -a 1 r -t 3.3152 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 150 -a 1 + -t 3.3152 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 150 -a 1 r -t 3.3152 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 120 -a 1 + -t 3.3152 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 120 -a 1 - -t 3.3152 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 120 -a 1 h -t 3.3152 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 120 -a 1 r -t 3.3162 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 151 -a 1 + -t 3.3162 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 151 -a 1 - -t 3.3252 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 132 -a 1 h -t 3.3252 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 132 -a 1 r -t 3.3252 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 121 -a 1 + -t 3.3252 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 121 -a 1 - -t 3.3252 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 121 -a 1 h -t 3.3252 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 121 -a 1 - -t 3.3352 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 133 -a 1 h -t 3.3352 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 133 -a 1 r -t 3.3352 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 122 -a 1 + -t 3.3352 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 122 -a 1 - -t 3.3352 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 122 -a 1 h -t 3.3352 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 122 -a 1 - -t 3.3452 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 134 -a 1 h -t 3.3452 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 134 -a 1 r -t 3.3452 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 123 -a 1 + -t 3.3452 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 123 -a 1 - -t 3.3452 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 123 -a 1 h -t 3.3452 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 123 -a 1 - -t 3.3552 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 135 -a 1 h -t 3.3552 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 135 -a 1 r -t 3.3552 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 124 -a 1 + -t 3.3552 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 124 -a 1 - -t 3.3552 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 124 -a 1 h -t 3.3552 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 124 -a 1 - -t 3.3652 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 136 -a 1 h -t 3.3652 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 136 -a 1 r -t 3.3652 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 125 -a 1 + -t 3.3652 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 125 -a 1 - -t 3.3652 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 125 -a 1 h -t 3.3652 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 125 -a 1 - -t 3.3752 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 137 -a 1 h -t 3.3752 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 137 -a 1 r -t 3.3752 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 126 -a 1 + -t 3.3752 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 126 -a 1 - -t 3.3752 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 126 -a 1 h -t 3.3752 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 126 -a 1 r -t 3.3752 -s 3 -d 4 -p ack -e 40 -c 2 -i 140 -a 2 + -t 3.3752 -s 4 -d 2 -p ack -e 40 -c 2 -i 140 -a 2 - -t 3.3752 -s 4 -d 2 -p ack -e 40 -c 2 -i 140 -a 2 h -t 3.3752 -s 4 -d 2 -p ack -e 40 -c 2 -i 140 -a 2 - -t 3.3852 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 138 -a 1 h -t 3.3852 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 138 -a 1 r -t 3.3852 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 127 -a 1 + -t 3.3852 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 127 -a 1 - -t 3.3852 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 127 -a 1 h -t 3.3852 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 127 -a 1 r -t 3.3852 -s 3 -d 4 -p ack -e 40 -c 2 -i 143 -a 2 + -t 3.3852 -s 4 -d 2 -p ack -e 40 -c 2 -i 143 -a 2 - -t 3.3852 -s 4 -d 2 -p ack -e 40 -c 2 -i 143 -a 2 h -t 3.3852 -s 4 -d 2 -p ack -e 40 -c 2 -i 143 -a 2 r -t 3.3852 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 116 -a 1 + -t 3.3852 -s 3 -d 4 -p ack -e 40 -c 1 -i 152 -a 1 - -t 3.3852 -s 3 -d 4 -p ack -e 40 -c 1 -i 152 -a 1 h -t 3.3852 -s 3 -d 4 -p ack -e 40 -c 1 -i 152 -a 1 - -t 3.3952 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 139 -a 1 h -t 3.3952 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 139 -a 1 r -t 3.3952 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 128 -a 1 + -t 3.3952 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 128 -a 1 - -t 3.3952 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 128 -a 1 h -t 3.3952 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 128 -a 1 r -t 3.3952 -s 3 -d 4 -p ack -e 40 -c 2 -i 146 -a 2 + -t 3.3952 -s 4 -d 2 -p ack -e 40 -c 2 -i 146 -a 2 - -t 3.3952 -s 4 -d 2 -p ack -e 40 -c 2 -i 146 -a 2 h -t 3.3952 -s 4 -d 2 -p ack -e 40 -c 2 -i 146 -a 2 r -t 3.3952 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 117 -a 1 + -t 3.3952 -s 3 -d 4 -p ack -e 40 -c 1 -i 153 -a 1 - -t 3.3952 -s 3 -d 4 -p ack -e 40 -c 1 -i 153 -a 1 h -t 3.3952 -s 3 -d 4 -p ack -e 40 -c 1 -i 153 -a 1 - -t 3.4052 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 141 -a 1 h -t 3.4052 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 141 -a 1 r -t 3.4052 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 129 -a 1 + -t 3.4052 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 129 -a 1 - -t 3.4052 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 129 -a 1 h -t 3.4052 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 129 -a 1 r -t 3.4052 -s 3 -d 4 -p ack -e 40 -c 2 -i 149 -a 2 + -t 3.4052 -s 4 -d 2 -p ack -e 40 -c 2 -i 149 -a 2 - -t 3.4052 -s 4 -d 2 -p ack -e 40 -c 2 -i 149 -a 2 h -t 3.4052 -s 4 -d 2 -p ack -e 40 -c 2 -i 149 -a 2 r -t 3.4052 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 118 -a 1 + -t 3.4052 -s 3 -d 4 -p ack -e 40 -c 1 -i 154 -a 1 - -t 3.4052 -s 3 -d 4 -p ack -e 40 -c 1 -i 154 -a 1 h -t 3.4052 -s 3 -d 4 -p ack -e 40 -c 1 -i 154 -a 1 - -t 3.4152 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 142 -a 1 h -t 3.4152 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 142 -a 1 r -t 3.4152 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 130 -a 1 + -t 3.4152 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 130 -a 1 - -t 3.4152 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 130 -a 1 h -t 3.4152 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 130 -a 1 r -t 3.4152 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 119 -a 1 + -t 3.4152 -s 3 -d 4 -p ack -e 40 -c 1 -i 155 -a 1 - -t 3.4152 -s 3 -d 4 -p ack -e 40 -c 1 -i 155 -a 1 h -t 3.4152 -s 3 -d 4 -p ack -e 40 -c 1 -i 155 -a 1 - -t 3.4252 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 144 -a 1 h -t 3.4252 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 144 -a 1 r -t 3.4252 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 131 -a 1 + -t 3.4252 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 131 -a 1 - -t 3.4252 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 131 -a 1 h -t 3.4252 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 131 -a 1 r -t 3.4252 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 120 -a 1 + -t 3.4252 -s 3 -d 4 -p ack -e 40 -c 1 -i 156 -a 1 - -t 3.4252 -s 3 -d 4 -p ack -e 40 -c 1 -i 156 -a 1 h -t 3.4252 -s 3 -d 4 -p ack -e 40 -c 1 -i 156 -a 1 - -t 3.4352 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 145 -a 1 h -t 3.4352 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 145 -a 1 r -t 3.4352 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 132 -a 1 + -t 3.4352 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 132 -a 1 - -t 3.4352 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 132 -a 1 h -t 3.4352 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 132 -a 1 r -t 3.4352 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 121 -a 1 + -t 3.4352 -s 3 -d 4 -p ack -e 40 -c 1 -i 157 -a 1 - -t 3.4352 -s 3 -d 4 -p ack -e 40 -c 1 -i 157 -a 1 h -t 3.4352 -s 3 -d 4 -p ack -e 40 -c 1 -i 157 -a 1 - -t 3.4452 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 147 -a 1 h -t 3.4452 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 147 -a 1 r -t 3.4452 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 133 -a 1 + -t 3.4452 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 133 -a 1 - -t 3.4452 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 133 -a 1 h -t 3.4452 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 133 -a 1 r -t 3.4452 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 122 -a 1 + -t 3.4452 -s 3 -d 4 -p ack -e 40 -c 1 -i 158 -a 1 - -t 3.4452 -s 3 -d 4 -p ack -e 40 -c 1 -i 158 -a 1 h -t 3.4452 -s 3 -d 4 -p ack -e 40 -c 1 -i 158 -a 1 - -t 3.4552 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 148 -a 1 h -t 3.4552 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 148 -a 1 r -t 3.4552 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 134 -a 1 + -t 3.4552 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 134 -a 1 - -t 3.4552 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 134 -a 1 h -t 3.4552 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 134 -a 1 r -t 3.4552 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 123 -a 1 + -t 3.4552 -s 3 -d 4 -p ack -e 40 -c 1 -i 159 -a 1 - -t 3.4552 -s 3 -d 4 -p ack -e 40 -c 1 -i 159 -a 1 h -t 3.4552 -s 3 -d 4 -p ack -e 40 -c 1 -i 159 -a 1 - -t 3.4652 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 150 -a 1 h -t 3.4652 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 150 -a 1 r -t 3.4652 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 135 -a 1 + -t 3.4652 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 135 -a 1 - -t 3.4652 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 135 -a 1 h -t 3.4652 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 135 -a 1 r -t 3.4652 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 124 -a 1 + -t 3.4652 -s 3 -d 4 -p ack -e 40 -c 1 -i 160 -a 1 - -t 3.4652 -s 3 -d 4 -p ack -e 40 -c 1 -i 160 -a 1 h -t 3.4652 -s 3 -d 4 -p ack -e 40 -c 1 -i 160 -a 1 - -t 3.4752 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 151 -a 1 h -t 3.4752 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 151 -a 1 r -t 3.4752 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 136 -a 1 + -t 3.4752 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 136 -a 1 - -t 3.4752 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 136 -a 1 h -t 3.4752 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 136 -a 1 r -t 3.4752 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 125 -a 1 + -t 3.4752 -s 3 -d 4 -p ack -e 40 -c 1 -i 161 -a 1 - -t 3.4752 -s 3 -d 4 -p ack -e 40 -c 1 -i 161 -a 1 h -t 3.4752 -s 3 -d 4 -p ack -e 40 -c 1 -i 161 -a 1 r -t 3.4756 -s 4 -d 2 -p ack -e 40 -c 2 -i 140 -a 2 + -t 3.4756 -s 2 -d 1 -p ack -e 40 -c 2 -i 140 -a 2 - -t 3.4756 -s 2 -d 1 -p ack -e 40 -c 2 -i 140 -a 2 h -t 3.4756 -s 2 -d 1 -p ack -e 40 -c 2 -i 140 -a 2 r -t 3.48064 -s 2 -d 1 -p ack -e 40 -c 2 -i 140 -a 2 + -t 3.48064 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 162 -a 2 - -t 3.48064 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 162 -a 2 h -t 3.48064 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 162 -a 2 r -t 3.4852 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 137 -a 1 + -t 3.4852 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 137 -a 1 - -t 3.4852 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 137 -a 1 h -t 3.4852 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 137 -a 1 r -t 3.4852 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 126 -a 1 + -t 3.4852 -s 3 -d 4 -p ack -e 40 -c 1 -i 163 -a 1 - -t 3.4852 -s 3 -d 4 -p ack -e 40 -c 1 -i 163 -a 1 h -t 3.4852 -s 3 -d 4 -p ack -e 40 -c 1 -i 163 -a 1 r -t 3.4856 -s 4 -d 2 -p ack -e 40 -c 2 -i 143 -a 2 + -t 3.4856 -s 2 -d 1 -p ack -e 40 -c 2 -i 143 -a 2 - -t 3.4856 -s 2 -d 1 -p ack -e 40 -c 2 -i 143 -a 2 h -t 3.4856 -s 2 -d 1 -p ack -e 40 -c 2 -i 143 -a 2 r -t 3.4856 -s 3 -d 4 -p ack -e 40 -c 1 -i 152 -a 1 + -t 3.4856 -s 4 -d 2 -p ack -e 40 -c 1 -i 152 -a 1 - -t 3.4856 -s 4 -d 2 -p ack -e 40 -c 1 -i 152 -a 1 h -t 3.4856 -s 4 -d 2 -p ack -e 40 -c 1 -i 152 -a 1 r -t 3.48664 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 162 -a 2 + -t 3.48664 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 162 -a 2 - -t 3.48664 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 162 -a 2 h -t 3.48664 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 162 -a 2 r -t 3.49064 -s 2 -d 1 -p ack -e 40 -c 2 -i 143 -a 2 + -t 3.49064 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 164 -a 2 - -t 3.49064 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 164 -a 2 h -t 3.49064 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 164 -a 2 r -t 3.4952 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 138 -a 1 + -t 3.4952 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 138 -a 1 - -t 3.4952 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 138 -a 1 h -t 3.4952 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 138 -a 1 r -t 3.4952 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 127 -a 1 + -t 3.4952 -s 3 -d 4 -p ack -e 40 -c 1 -i 165 -a 1 - -t 3.4952 -s 3 -d 4 -p ack -e 40 -c 1 -i 165 -a 1 h -t 3.4952 -s 3 -d 4 -p ack -e 40 -c 1 -i 165 -a 1 r -t 3.4956 -s 4 -d 2 -p ack -e 40 -c 2 -i 146 -a 2 + -t 3.4956 -s 2 -d 1 -p ack -e 40 -c 2 -i 146 -a 2 - -t 3.4956 -s 2 -d 1 -p ack -e 40 -c 2 -i 146 -a 2 h -t 3.4956 -s 2 -d 1 -p ack -e 40 -c 2 -i 146 -a 2 r -t 3.4956 -s 3 -d 4 -p ack -e 40 -c 1 -i 153 -a 1 + -t 3.4956 -s 4 -d 2 -p ack -e 40 -c 1 -i 153 -a 1 - -t 3.4956 -s 4 -d 2 -p ack -e 40 -c 1 -i 153 -a 1 h -t 3.4956 -s 4 -d 2 -p ack -e 40 -c 1 -i 153 -a 1 r -t 3.49664 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 164 -a 2 + -t 3.49664 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 164 -a 2 - -t 3.49664 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 164 -a 2 h -t 3.49664 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 164 -a 2 r -t 3.50064 -s 2 -d 1 -p ack -e 40 -c 2 -i 146 -a 2 + -t 3.50064 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 166 -a 2 - -t 3.50064 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 166 -a 2 h -t 3.50064 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 166 -a 2 r -t 3.5052 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 139 -a 1 + -t 3.5052 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 139 -a 1 - -t 3.5052 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 139 -a 1 h -t 3.5052 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 139 -a 1 r -t 3.5052 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 128 -a 1 + -t 3.5052 -s 3 -d 4 -p ack -e 40 -c 1 -i 167 -a 1 - -t 3.5052 -s 3 -d 4 -p ack -e 40 -c 1 -i 167 -a 1 h -t 3.5052 -s 3 -d 4 -p ack -e 40 -c 1 -i 167 -a 1 r -t 3.5056 -s 4 -d 2 -p ack -e 40 -c 2 -i 149 -a 2 + -t 3.5056 -s 2 -d 1 -p ack -e 40 -c 2 -i 149 -a 2 - -t 3.5056 -s 2 -d 1 -p ack -e 40 -c 2 -i 149 -a 2 h -t 3.5056 -s 2 -d 1 -p ack -e 40 -c 2 -i 149 -a 2 r -t 3.5056 -s 3 -d 4 -p ack -e 40 -c 1 -i 154 -a 1 + -t 3.5056 -s 4 -d 2 -p ack -e 40 -c 1 -i 154 -a 1 - -t 3.5056 -s 4 -d 2 -p ack -e 40 -c 1 -i 154 -a 1 h -t 3.5056 -s 4 -d 2 -p ack -e 40 -c 1 -i 154 -a 1 r -t 3.50664 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 166 -a 2 + -t 3.50664 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 166 -a 2 - -t 3.50664 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 166 -a 2 h -t 3.50664 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 166 -a 2 r -t 3.51064 -s 2 -d 1 -p ack -e 40 -c 2 -i 149 -a 2 + -t 3.51064 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 168 -a 2 - -t 3.51064 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 168 -a 2 h -t 3.51064 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 168 -a 2 + -t 3.51064 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 169 -a 2 - -t 3.51164 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 169 -a 2 h -t 3.51164 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 169 -a 2 r -t 3.5152 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 141 -a 1 + -t 3.5152 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 141 -a 1 - -t 3.5152 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 141 -a 1 h -t 3.5152 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 141 -a 1 r -t 3.5152 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 129 -a 1 + -t 3.5152 -s 3 -d 4 -p ack -e 40 -c 1 -i 170 -a 1 - -t 3.5152 -s 3 -d 4 -p ack -e 40 -c 1 -i 170 -a 1 h -t 3.5152 -s 3 -d 4 -p ack -e 40 -c 1 -i 170 -a 1 r -t 3.5156 -s 3 -d 4 -p ack -e 40 -c 1 -i 155 -a 1 + -t 3.5156 -s 4 -d 2 -p ack -e 40 -c 1 -i 155 -a 1 - -t 3.5156 -s 4 -d 2 -p ack -e 40 -c 1 -i 155 -a 1 h -t 3.5156 -s 4 -d 2 -p ack -e 40 -c 1 -i 155 -a 1 r -t 3.51664 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 168 -a 2 + -t 3.51664 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 168 -a 2 - -t 3.51664 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 168 -a 2 h -t 3.51664 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 168 -a 2 r -t 3.51764 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 169 -a 2 + -t 3.51764 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 169 -a 2 r -t 3.5252 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 142 -a 1 + -t 3.5252 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 142 -a 1 - -t 3.5252 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 142 -a 1 h -t 3.5252 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 142 -a 1 r -t 3.5252 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 130 -a 1 + -t 3.5252 -s 3 -d 4 -p ack -e 40 -c 1 -i 171 -a 1 - -t 3.5252 -s 3 -d 4 -p ack -e 40 -c 1 -i 171 -a 1 h -t 3.5252 -s 3 -d 4 -p ack -e 40 -c 1 -i 171 -a 1 r -t 3.5256 -s 3 -d 4 -p ack -e 40 -c 1 -i 156 -a 1 + -t 3.5256 -s 4 -d 2 -p ack -e 40 -c 1 -i 156 -a 1 - -t 3.5256 -s 4 -d 2 -p ack -e 40 -c 1 -i 156 -a 1 h -t 3.5256 -s 4 -d 2 -p ack -e 40 -c 1 -i 156 -a 1 - -t 3.52664 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 169 -a 2 h -t 3.52664 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 169 -a 2 l -t 3.5315900000000005 -s 3 -d 2 -S UP v -t 3.5315900000000005 link-up 3.5315900000000005 3 2 l -t 3.5315900000000005 -s 2 -d 3 -S UP v -t 3.5315900000000005 link-up 3.5315900000000005 2 3 + -t 3.53159 -s 2 -d 3 -p rtProtoDV -e 5 -c 0 -i 172 -a 0 - -t 3.53159 -s 2 -d 3 -p rtProtoDV -e 5 -c 0 -i 172 -a 0 h -t 3.53159 -s 2 -d 3 -p rtProtoDV -e 5 -c 0 -i 172 -a 0 + -t 3.53159 -s 2 -d 1 -p rtProtoDV -e 5 -c 0 -i 173 -a 0 - -t 3.53159 -s 2 -d 1 -p rtProtoDV -e 5 -c 0 -i 173 -a 0 h -t 3.53159 -s 2 -d 1 -p rtProtoDV -e 5 -c 0 -i 173 -a 0 + -t 3.53159 -s 2 -d 4 -p rtProtoDV -e 5 -c 0 -i 174 -a 0 + -t 3.53159 -s 2 -d 0 -p rtProtoDV -e 5 -c 0 -i 175 -a 0 - -t 3.53159 -s 2 -d 0 -p rtProtoDV -e 5 -c 0 -i 175 -a 0 h -t 3.53159 -s 2 -d 0 -p rtProtoDV -e 5 -c 0 -i 175 -a 0 + -t 3.53159 -s 3 -d 4 -p rtProtoDV -e 5 -c 0 -i 176 -a 0 - -t 3.53159 -s 3 -d 4 -p rtProtoDV -e 5 -c 0 -i 176 -a 0 h -t 3.53159 -s 3 -d 4 -p rtProtoDV -e 5 -c 0 -i 176 -a 0 + -t 3.53159 -s 3 -d 2 -p rtProtoDV -e 5 -c 0 -i 177 -a 0 - -t 3.53159 -s 3 -d 2 -p rtProtoDV -e 5 -c 0 -i 177 -a 0 h -t 3.53159 -s 3 -d 2 -p rtProtoDV -e 5 -c 0 -i 177 -a 0 r -t 3.5352 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 144 -a 1 + -t 3.5352 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 144 -a 1 - -t 3.5352 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 144 -a 1 h -t 3.5352 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 144 -a 1 r -t 3.5352 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 131 -a 1 + -t 3.5352 -s 3 -d 4 -p ack -e 40 -c 1 -i 178 -a 1 - -t 3.5352 -s 3 -d 4 -p ack -e 40 -c 1 -i 178 -a 1 h -t 3.5352 -s 3 -d 4 -p ack -e 40 -c 1 -i 178 -a 1 r -t 3.5356 -s 3 -d 4 -p ack -e 40 -c 1 -i 157 -a 1 + -t 3.5356 -s 4 -d 2 -p ack -e 40 -c 1 -i 157 -a 1 - -t 3.5356 -s 4 -d 2 -p ack -e 40 -c 1 -i 157 -a 1 h -t 3.5356 -s 4 -d 2 -p ack -e 40 -c 1 -i 157 -a 1 r -t 3.5366 -s 2 -d 1 -p rtProtoDV -e 5 -c 0 -i 173 -a 0 + -t 3.5366 -s 1 -d 2 -p rtProtoDV -e 5 -c 0 -i 179 -a 0 - -t 3.5366 -s 1 -d 2 -p rtProtoDV -e 5 -c 0 -i 179 -a 0 h -t 3.5366 -s 1 -d 2 -p rtProtoDV -e 5 -c 0 -i 179 -a 0 r -t 3.5366 -s 2 -d 0 -p rtProtoDV -e 5 -c 0 -i 175 -a 0 + -t 3.5366 -s 0 -d 2 -p rtProtoDV -e 5 -c 0 -i 180 -a 0 - -t 3.5366 -s 0 -d 2 -p rtProtoDV -e 5 -c 0 -i 180 -a 0 h -t 3.5366 -s 0 -d 2 -p rtProtoDV -e 5 -c 0 -i 180 -a 0 - -t 3.53664 -s 2 -d 4 -p rtProtoDV -e 5 -c 0 -i 174 -a 0 h -t 3.53664 -s 2 -d 4 -p rtProtoDV -e 5 -c 0 -i 174 -a 0 r -t 3.5416 -s 1 -d 2 -p rtProtoDV -e 5 -c 0 -i 179 -a 0 r -t 3.5416 -s 0 -d 2 -p rtProtoDV -e 5 -c 0 -i 180 -a 0 r -t 3.5452 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 145 -a 1 + -t 3.5452 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 145 -a 1 - -t 3.5452 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 145 -a 1 h -t 3.5452 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 145 -a 1 r -t 3.5452 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 132 -a 1 + -t 3.5452 -s 3 -d 4 -p ack -e 40 -c 1 -i 181 -a 1 - -t 3.5452 -s 3 -d 4 -p ack -e 40 -c 1 -i 181 -a 1 h -t 3.5452 -s 3 -d 4 -p ack -e 40 -c 1 -i 181 -a 1 r -t 3.5456 -s 3 -d 4 -p ack -e 40 -c 1 -i 158 -a 1 + -t 3.5456 -s 4 -d 2 -p ack -e 40 -c 1 -i 158 -a 1 - -t 3.5456 -s 4 -d 2 -p ack -e 40 -c 1 -i 158 -a 1 h -t 3.5456 -s 4 -d 2 -p ack -e 40 -c 1 -i 158 -a 1 r -t 3.5552 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 147 -a 1 + -t 3.5552 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 147 -a 1 - -t 3.5552 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 147 -a 1 h -t 3.5552 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 147 -a 1 r -t 3.5552 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 133 -a 1 + -t 3.5552 -s 3 -d 4 -p ack -e 40 -c 1 -i 182 -a 1 - -t 3.5552 -s 3 -d 4 -p ack -e 40 -c 1 -i 182 -a 1 h -t 3.5552 -s 3 -d 4 -p ack -e 40 -c 1 -i 182 -a 1 r -t 3.5556 -s 3 -d 4 -p ack -e 40 -c 1 -i 159 -a 1 + -t 3.5556 -s 4 -d 2 -p ack -e 40 -c 1 -i 159 -a 1 - -t 3.5556 -s 4 -d 2 -p ack -e 40 -c 1 -i 159 -a 1 h -t 3.5556 -s 4 -d 2 -p ack -e 40 -c 1 -i 159 -a 1 r -t 3.5652 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 148 -a 1 + -t 3.5652 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 148 -a 1 - -t 3.5652 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 148 -a 1 h -t 3.5652 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 148 -a 1 r -t 3.5652 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 134 -a 1 + -t 3.5652 -s 3 -d 4 -p ack -e 40 -c 1 -i 183 -a 1 - -t 3.5652 -s 3 -d 4 -p ack -e 40 -c 1 -i 183 -a 1 h -t 3.5652 -s 3 -d 4 -p ack -e 40 -c 1 -i 183 -a 1 r -t 3.5656 -s 3 -d 4 -p ack -e 40 -c 1 -i 160 -a 1 + -t 3.5656 -s 4 -d 2 -p ack -e 40 -c 1 -i 160 -a 1 - -t 3.5656 -s 4 -d 2 -p ack -e 40 -c 1 -i 160 -a 1 h -t 3.5656 -s 4 -d 2 -p ack -e 40 -c 1 -i 160 -a 1 r -t 3.5752 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 150 -a 1 + -t 3.5752 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 150 -a 1 - -t 3.5752 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 150 -a 1 h -t 3.5752 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 150 -a 1 r -t 3.5752 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 135 -a 1 + -t 3.5752 -s 3 -d 4 -p ack -e 40 -c 1 -i 184 -a 1 - -t 3.5752 -s 3 -d 4 -p ack -e 40 -c 1 -i 184 -a 1 h -t 3.5752 -s 3 -d 4 -p ack -e 40 -c 1 -i 184 -a 1 r -t 3.5756 -s 3 -d 4 -p ack -e 40 -c 1 -i 161 -a 1 + -t 3.5756 -s 4 -d 2 -p ack -e 40 -c 1 -i 161 -a 1 - -t 3.5756 -s 4 -d 2 -p ack -e 40 -c 1 -i 161 -a 1 h -t 3.5756 -s 4 -d 2 -p ack -e 40 -c 1 -i 161 -a 1 r -t 3.5852 -s 2 -d 4 -p tcp -e 1000 -c 1 -i 151 -a 1 + -t 3.5852 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 151 -a 1 - -t 3.5852 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 151 -a 1 h -t 3.5852 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 151 -a 1 r -t 3.5852 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 136 -a 1 + -t 3.5852 -s 3 -d 4 -p ack -e 40 -c 1 -i 185 -a 1 - -t 3.5852 -s 3 -d 4 -p ack -e 40 -c 1 -i 185 -a 1 h -t 3.5852 -s 3 -d 4 -p ack -e 40 -c 1 -i 185 -a 1 r -t 3.5856 -s 3 -d 4 -p ack -e 40 -c 1 -i 163 -a 1 + -t 3.5856 -s 4 -d 2 -p ack -e 40 -c 1 -i 163 -a 1 - -t 3.5856 -s 4 -d 2 -p ack -e 40 -c 1 -i 163 -a 1 h -t 3.5856 -s 4 -d 2 -p ack -e 40 -c 1 -i 163 -a 1 r -t 3.586 -s 4 -d 2 -p ack -e 40 -c 1 -i 152 -a 1 + -t 3.586 -s 2 -d 0 -p ack -e 40 -c 1 -i 152 -a 1 - -t 3.586 -s 2 -d 0 -p ack -e 40 -c 1 -i 152 -a 1 h -t 3.586 -s 2 -d 0 -p ack -e 40 -c 1 -i 152 -a 1 r -t 3.59104 -s 2 -d 0 -p ack -e 40 -c 1 -i 152 -a 1 + -t 3.59104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 186 -a 1 - -t 3.59104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 186 -a 1 h -t 3.59104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 186 -a 1 + -t 3.59104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 187 -a 1 - -t 3.59204 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 187 -a 1 h -t 3.59204 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 187 -a 1 r -t 3.5952 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 137 -a 1 + -t 3.5952 -s 3 -d 4 -p ack -e 40 -c 1 -i 188 -a 1 - -t 3.5952 -s 3 -d 4 -p ack -e 40 -c 1 -i 188 -a 1 h -t 3.5952 -s 3 -d 4 -p ack -e 40 -c 1 -i 188 -a 1 r -t 3.5956 -s 3 -d 4 -p ack -e 40 -c 1 -i 165 -a 1 + -t 3.5956 -s 4 -d 2 -p ack -e 40 -c 1 -i 165 -a 1 - -t 3.5956 -s 4 -d 2 -p ack -e 40 -c 1 -i 165 -a 1 h -t 3.5956 -s 4 -d 2 -p ack -e 40 -c 1 -i 165 -a 1 r -t 3.596 -s 4 -d 2 -p ack -e 40 -c 1 -i 153 -a 1 + -t 3.596 -s 2 -d 0 -p ack -e 40 -c 1 -i 153 -a 1 - -t 3.596 -s 2 -d 0 -p ack -e 40 -c 1 -i 153 -a 1 h -t 3.596 -s 2 -d 0 -p ack -e 40 -c 1 -i 153 -a 1 r -t 3.59664 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 162 -a 2 + -t 3.59664 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 162 -a 2 - -t 3.59664 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 162 -a 2 h -t 3.59664 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 162 -a 2 r -t 3.59704 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 186 -a 1 + -t 3.59704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 186 -a 1 - -t 3.59704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 186 -a 1 h -t 3.59704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 186 -a 1 r -t 3.59804 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 187 -a 1 + -t 3.59804 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 187 -a 1 r -t 3.60104 -s 2 -d 0 -p ack -e 40 -c 1 -i 153 -a 1 + -t 3.60104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 189 -a 1 - -t 3.60104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 189 -a 1 h -t 3.60104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 189 -a 1 + -t 3.60104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 190 -a 1 - -t 3.60204 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 190 -a 1 h -t 3.60204 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 190 -a 1 r -t 3.6052 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 138 -a 1 + -t 3.6052 -s 3 -d 4 -p ack -e 40 -c 1 -i 191 -a 1 - -t 3.6052 -s 3 -d 4 -p ack -e 40 -c 1 -i 191 -a 1 h -t 3.6052 -s 3 -d 4 -p ack -e 40 -c 1 -i 191 -a 1 r -t 3.6056 -s 3 -d 4 -p ack -e 40 -c 1 -i 167 -a 1 + -t 3.6056 -s 4 -d 2 -p ack -e 40 -c 1 -i 167 -a 1 - -t 3.6056 -s 4 -d 2 -p ack -e 40 -c 1 -i 167 -a 1 h -t 3.6056 -s 4 -d 2 -p ack -e 40 -c 1 -i 167 -a 1 r -t 3.606 -s 4 -d 2 -p ack -e 40 -c 1 -i 154 -a 1 + -t 3.606 -s 2 -d 0 -p ack -e 40 -c 1 -i 154 -a 1 - -t 3.606 -s 2 -d 0 -p ack -e 40 -c 1 -i 154 -a 1 h -t 3.606 -s 2 -d 0 -p ack -e 40 -c 1 -i 154 -a 1 r -t 3.60664 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 164 -a 2 + -t 3.60664 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 164 -a 2 - -t 3.60664 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 164 -a 2 h -t 3.60664 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 164 -a 2 - -t 3.60704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 187 -a 1 h -t 3.60704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 187 -a 1 r -t 3.60704 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 189 -a 1 + -t 3.60704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 189 -a 1 r -t 3.60804 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 190 -a 1 + -t 3.60804 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 190 -a 1 r -t 3.61104 -s 2 -d 0 -p ack -e 40 -c 1 -i 154 -a 1 + -t 3.61104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 192 -a 1 - -t 3.61104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 192 -a 1 h -t 3.61104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 192 -a 1 + -t 3.61104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 193 -a 1 - -t 3.61204 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 193 -a 1 h -t 3.61204 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 193 -a 1 r -t 3.6152 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 139 -a 1 + -t 3.6152 -s 3 -d 4 -p ack -e 40 -c 1 -i 194 -a 1 - -t 3.6152 -s 3 -d 4 -p ack -e 40 -c 1 -i 194 -a 1 h -t 3.6152 -s 3 -d 4 -p ack -e 40 -c 1 -i 194 -a 1 r -t 3.6156 -s 3 -d 4 -p ack -e 40 -c 1 -i 170 -a 1 + -t 3.6156 -s 4 -d 2 -p ack -e 40 -c 1 -i 170 -a 1 - -t 3.6156 -s 4 -d 2 -p ack -e 40 -c 1 -i 170 -a 1 h -t 3.6156 -s 4 -d 2 -p ack -e 40 -c 1 -i 170 -a 1 r -t 3.616 -s 4 -d 2 -p ack -e 40 -c 1 -i 155 -a 1 + -t 3.616 -s 2 -d 0 -p ack -e 40 -c 1 -i 155 -a 1 - -t 3.616 -s 2 -d 0 -p ack -e 40 -c 1 -i 155 -a 1 h -t 3.616 -s 2 -d 0 -p ack -e 40 -c 1 -i 155 -a 1 r -t 3.61664 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 166 -a 2 + -t 3.61664 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 166 -a 2 - -t 3.61664 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 166 -a 2 h -t 3.61664 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 166 -a 2 - -t 3.61704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 189 -a 1 h -t 3.61704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 189 -a 1 r -t 3.61704 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 192 -a 1 + -t 3.61704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 192 -a 1 r -t 3.61804 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 193 -a 1 + -t 3.61804 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 193 -a 1 r -t 3.62104 -s 2 -d 0 -p ack -e 40 -c 1 -i 155 -a 1 + -t 3.62104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 195 -a 1 - -t 3.62104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 195 -a 1 h -t 3.62104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 195 -a 1 + -t 3.62104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 196 -a 1 - -t 3.62204 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 196 -a 1 h -t 3.62204 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 196 -a 1 r -t 3.6252 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 141 -a 1 + -t 3.6252 -s 3 -d 4 -p ack -e 40 -c 1 -i 197 -a 1 - -t 3.6252 -s 3 -d 4 -p ack -e 40 -c 1 -i 197 -a 1 h -t 3.6252 -s 3 -d 4 -p ack -e 40 -c 1 -i 197 -a 1 r -t 3.6256 -s 3 -d 4 -p ack -e 40 -c 1 -i 171 -a 1 + -t 3.6256 -s 4 -d 2 -p ack -e 40 -c 1 -i 171 -a 1 - -t 3.6256 -s 4 -d 2 -p ack -e 40 -c 1 -i 171 -a 1 h -t 3.6256 -s 4 -d 2 -p ack -e 40 -c 1 -i 171 -a 1 r -t 3.626 -s 4 -d 2 -p ack -e 40 -c 1 -i 156 -a 1 + -t 3.626 -s 2 -d 0 -p ack -e 40 -c 1 -i 156 -a 1 - -t 3.626 -s 2 -d 0 -p ack -e 40 -c 1 -i 156 -a 1 h -t 3.626 -s 2 -d 0 -p ack -e 40 -c 1 -i 156 -a 1 r -t 3.62664 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 168 -a 2 + -t 3.62664 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 168 -a 2 - -t 3.62664 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 168 -a 2 h -t 3.62664 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 168 -a 2 - -t 3.62704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 190 -a 1 h -t 3.62704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 190 -a 1 r -t 3.62704 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 195 -a 1 + -t 3.62704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 195 -a 1 r -t 3.62804 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 196 -a 1 + -t 3.62804 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 196 -a 1 r -t 3.63104 -s 2 -d 0 -p ack -e 40 -c 1 -i 156 -a 1 + -t 3.63104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 198 -a 1 - -t 3.63104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 198 -a 1 h -t 3.63104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 198 -a 1 + -t 3.63104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 199 -a 1 r -t 3.63164 -s 2 -d 3 -p rtProtoDV -e 5 -c 0 -i 172 -a 0 + -t 3.63164 -s 3 -d 4 -p rtProtoDV -e 5 -c 0 -i 200 -a 0 - -t 3.63164 -s 3 -d 4 -p rtProtoDV -e 5 -c 0 -i 200 -a 0 h -t 3.63164 -s 3 -d 4 -p rtProtoDV -e 5 -c 0 -i 200 -a 0 + -t 3.63164 -s 3 -d 2 -p rtProtoDV -e 5 -c 0 -i 201 -a 0 - -t 3.63164 -s 3 -d 2 -p rtProtoDV -e 5 -c 0 -i 201 -a 0 h -t 3.63164 -s 3 -d 2 -p rtProtoDV -e 5 -c 0 -i 201 -a 0 r -t 3.63164 -s 3 -d 4 -p rtProtoDV -e 5 -c 0 -i 176 -a 0 r -t 3.63164 -s 3 -d 2 -p rtProtoDV -e 5 -c 0 -i 177 -a 0 - -t 3.63204 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 199 -a 1 h -t 3.63204 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 199 -a 1 r -t 3.6352 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 142 -a 1 + -t 3.6352 -s 3 -d 2 -p ack -e 40 -c 1 -i 202 -a 1 - -t 3.6352 -s 3 -d 2 -p ack -e 40 -c 1 -i 202 -a 1 h -t 3.6352 -s 3 -d 2 -p ack -e 40 -c 1 -i 202 -a 1 r -t 3.6356 -s 3 -d 4 -p ack -e 40 -c 1 -i 178 -a 1 + -t 3.6356 -s 4 -d 2 -p ack -e 40 -c 1 -i 178 -a 1 - -t 3.6356 -s 4 -d 2 -p ack -e 40 -c 1 -i 178 -a 1 h -t 3.6356 -s 4 -d 2 -p ack -e 40 -c 1 -i 178 -a 1 r -t 3.636 -s 4 -d 2 -p ack -e 40 -c 1 -i 157 -a 1 + -t 3.636 -s 2 -d 0 -p ack -e 40 -c 1 -i 157 -a 1 - -t 3.636 -s 2 -d 0 -p ack -e 40 -c 1 -i 157 -a 1 h -t 3.636 -s 2 -d 0 -p ack -e 40 -c 1 -i 157 -a 1 r -t 3.63664 -s 2 -d 4 -p tcp -e 1000 -c 2 -i 169 -a 2 + -t 3.63664 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 169 -a 2 - -t 3.63664 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 169 -a 2 h -t 3.63664 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 169 -a 2 r -t 3.63669 -s 2 -d 4 -p rtProtoDV -e 5 -c 0 -i 174 -a 0 - -t 3.63704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 192 -a 1 h -t 3.63704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 192 -a 1 r -t 3.63704 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 198 -a 1 + -t 3.63704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 198 -a 1 r -t 3.63804 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 199 -a 1 + -t 3.63804 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 199 -a 1 r -t 3.64104 -s 2 -d 0 -p ack -e 40 -c 1 -i 157 -a 1 + -t 3.64104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 203 -a 1 - -t 3.64104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 203 -a 1 h -t 3.64104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 203 -a 1 + -t 3.64104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 204 -a 1 - -t 3.64204 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 204 -a 1 h -t 3.64204 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 204 -a 1 r -t 3.6452 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 144 -a 1 + -t 3.6452 -s 3 -d 2 -p ack -e 40 -c 1 -i 205 -a 1 - -t 3.6452 -s 3 -d 2 -p ack -e 40 -c 1 -i 205 -a 1 h -t 3.6452 -s 3 -d 2 -p ack -e 40 -c 1 -i 205 -a 1 r -t 3.6456 -s 3 -d 4 -p ack -e 40 -c 1 -i 181 -a 1 + -t 3.6456 -s 4 -d 2 -p ack -e 40 -c 1 -i 181 -a 1 - -t 3.6456 -s 4 -d 2 -p ack -e 40 -c 1 -i 181 -a 1 h -t 3.6456 -s 4 -d 2 -p ack -e 40 -c 1 -i 181 -a 1 r -t 3.646 -s 4 -d 2 -p ack -e 40 -c 1 -i 158 -a 1 + -t 3.646 -s 2 -d 0 -p ack -e 40 -c 1 -i 158 -a 1 - -t 3.646 -s 2 -d 0 -p ack -e 40 -c 1 -i 158 -a 1 h -t 3.646 -s 2 -d 0 -p ack -e 40 -c 1 -i 158 -a 1 - -t 3.64704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 193 -a 1 h -t 3.64704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 193 -a 1 r -t 3.64704 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 203 -a 1 + -t 3.64704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 203 -a 1 r -t 3.64804 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 204 -a 1 + -t 3.64804 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 204 -a 1 r -t 3.65104 -s 2 -d 0 -p ack -e 40 -c 1 -i 158 -a 1 + -t 3.65104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 206 -a 1 - -t 3.65104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 206 -a 1 h -t 3.65104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 206 -a 1 + -t 3.65104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 207 -a 1 - -t 3.65204 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 207 -a 1 h -t 3.65204 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 207 -a 1 r -t 3.6552 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 145 -a 1 + -t 3.6552 -s 3 -d 2 -p ack -e 40 -c 1 -i 208 -a 1 - -t 3.6552 -s 3 -d 2 -p ack -e 40 -c 1 -i 208 -a 1 h -t 3.6552 -s 3 -d 2 -p ack -e 40 -c 1 -i 208 -a 1 r -t 3.6556 -s 3 -d 4 -p ack -e 40 -c 1 -i 182 -a 1 + -t 3.6556 -s 4 -d 2 -p ack -e 40 -c 1 -i 182 -a 1 - -t 3.6556 -s 4 -d 2 -p ack -e 40 -c 1 -i 182 -a 1 h -t 3.6556 -s 4 -d 2 -p ack -e 40 -c 1 -i 182 -a 1 r -t 3.656 -s 4 -d 2 -p ack -e 40 -c 1 -i 159 -a 1 + -t 3.656 -s 2 -d 0 -p ack -e 40 -c 1 -i 159 -a 1 - -t 3.656 -s 2 -d 0 -p ack -e 40 -c 1 -i 159 -a 1 h -t 3.656 -s 2 -d 0 -p ack -e 40 -c 1 -i 159 -a 1 - -t 3.65704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 195 -a 1 h -t 3.65704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 195 -a 1 r -t 3.65704 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 206 -a 1 + -t 3.65704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 206 -a 1 r -t 3.65804 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 207 -a 1 + -t 3.65804 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 207 -a 1 r -t 3.66104 -s 2 -d 0 -p ack -e 40 -c 1 -i 159 -a 1 + -t 3.66104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 209 -a 1 - -t 3.66104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 209 -a 1 h -t 3.66104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 209 -a 1 + -t 3.66104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 210 -a 1 - -t 3.66204 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 210 -a 1 h -t 3.66204 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 210 -a 1 r -t 3.6652 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 147 -a 1 + -t 3.6652 -s 3 -d 2 -p ack -e 40 -c 1 -i 211 -a 1 - -t 3.6652 -s 3 -d 2 -p ack -e 40 -c 1 -i 211 -a 1 h -t 3.6652 -s 3 -d 2 -p ack -e 40 -c 1 -i 211 -a 1 r -t 3.6656 -s 3 -d 4 -p ack -e 40 -c 1 -i 183 -a 1 + -t 3.6656 -s 4 -d 2 -p ack -e 40 -c 1 -i 183 -a 1 - -t 3.6656 -s 4 -d 2 -p ack -e 40 -c 1 -i 183 -a 1 h -t 3.6656 -s 4 -d 2 -p ack -e 40 -c 1 -i 183 -a 1 r -t 3.666 -s 4 -d 2 -p ack -e 40 -c 1 -i 160 -a 1 + -t 3.666 -s 2 -d 0 -p ack -e 40 -c 1 -i 160 -a 1 - -t 3.666 -s 2 -d 0 -p ack -e 40 -c 1 -i 160 -a 1 h -t 3.666 -s 2 -d 0 -p ack -e 40 -c 1 -i 160 -a 1 - -t 3.66704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 196 -a 1 h -t 3.66704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 196 -a 1 r -t 3.66704 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 209 -a 1 + -t 3.66704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 209 -a 1 r -t 3.66804 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 210 -a 1 + -t 3.66804 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 210 -a 1 d -t 3.66804 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 210 -a 1 r -t 3.67104 -s 2 -d 0 -p ack -e 40 -c 1 -i 160 -a 1 + -t 3.67104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 212 -a 1 - -t 3.67104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 212 -a 1 h -t 3.67104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 212 -a 1 + -t 3.67104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 213 -a 1 - -t 3.67204 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 213 -a 1 h -t 3.67204 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 213 -a 1 r -t 3.6752 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 148 -a 1 + -t 3.6752 -s 3 -d 2 -p ack -e 40 -c 1 -i 214 -a 1 - -t 3.6752 -s 3 -d 2 -p ack -e 40 -c 1 -i 214 -a 1 h -t 3.6752 -s 3 -d 2 -p ack -e 40 -c 1 -i 214 -a 1 r -t 3.6756 -s 3 -d 4 -p ack -e 40 -c 1 -i 184 -a 1 + -t 3.6756 -s 4 -d 2 -p ack -e 40 -c 1 -i 184 -a 1 - -t 3.6756 -s 4 -d 2 -p ack -e 40 -c 1 -i 184 -a 1 h -t 3.6756 -s 4 -d 2 -p ack -e 40 -c 1 -i 184 -a 1 r -t 3.676 -s 4 -d 2 -p ack -e 40 -c 1 -i 161 -a 1 + -t 3.676 -s 2 -d 0 -p ack -e 40 -c 1 -i 161 -a 1 - -t 3.676 -s 2 -d 0 -p ack -e 40 -c 1 -i 161 -a 1 h -t 3.676 -s 2 -d 0 -p ack -e 40 -c 1 -i 161 -a 1 - -t 3.67704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 198 -a 1 h -t 3.67704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 198 -a 1 r -t 3.67704 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 212 -a 1 + -t 3.67704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 212 -a 1 r -t 3.67804 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 213 -a 1 + -t 3.67804 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 213 -a 1 d -t 3.67804 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 213 -a 1 r -t 3.68104 -s 2 -d 0 -p ack -e 40 -c 1 -i 161 -a 1 + -t 3.68104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 215 -a 1 - -t 3.68104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 215 -a 1 h -t 3.68104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 215 -a 1 + -t 3.68104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 216 -a 1 - -t 3.68204 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 216 -a 1 h -t 3.68204 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 216 -a 1 r -t 3.6852 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 150 -a 1 + -t 3.6852 -s 3 -d 2 -p ack -e 40 -c 1 -i 217 -a 1 - -t 3.6852 -s 3 -d 2 -p ack -e 40 -c 1 -i 217 -a 1 h -t 3.6852 -s 3 -d 2 -p ack -e 40 -c 1 -i 217 -a 1 r -t 3.6856 -s 3 -d 4 -p ack -e 40 -c 1 -i 185 -a 1 + -t 3.6856 -s 4 -d 2 -p ack -e 40 -c 1 -i 185 -a 1 - -t 3.6856 -s 4 -d 2 -p ack -e 40 -c 1 -i 185 -a 1 h -t 3.6856 -s 4 -d 2 -p ack -e 40 -c 1 -i 185 -a 1 r -t 3.686 -s 4 -d 2 -p ack -e 40 -c 1 -i 163 -a 1 + -t 3.686 -s 2 -d 0 -p ack -e 40 -c 1 -i 163 -a 1 - -t 3.686 -s 2 -d 0 -p ack -e 40 -c 1 -i 163 -a 1 h -t 3.686 -s 2 -d 0 -p ack -e 40 -c 1 -i 163 -a 1 - -t 3.68704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 199 -a 1 h -t 3.68704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 199 -a 1 r -t 3.68704 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 215 -a 1 + -t 3.68704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 215 -a 1 r -t 3.68804 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 216 -a 1 + -t 3.68804 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 216 -a 1 d -t 3.68804 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 216 -a 1 r -t 3.69104 -s 2 -d 0 -p ack -e 40 -c 1 -i 163 -a 1 + -t 3.69104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 218 -a 1 - -t 3.69104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 218 -a 1 h -t 3.69104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 218 -a 1 + -t 3.69104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 219 -a 1 - -t 3.69204 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 219 -a 1 h -t 3.69204 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 219 -a 1 r -t 3.6952 -s 4 -d 3 -p tcp -e 1000 -c 1 -i 151 -a 1 + -t 3.6952 -s 3 -d 2 -p ack -e 40 -c 1 -i 220 -a 1 - -t 3.6952 -s 3 -d 2 -p ack -e 40 -c 1 -i 220 -a 1 h -t 3.6952 -s 3 -d 2 -p ack -e 40 -c 1 -i 220 -a 1 r -t 3.6956 -s 3 -d 4 -p ack -e 40 -c 1 -i 188 -a 1 + -t 3.6956 -s 4 -d 2 -p ack -e 40 -c 1 -i 188 -a 1 - -t 3.6956 -s 4 -d 2 -p ack -e 40 -c 1 -i 188 -a 1 h -t 3.6956 -s 4 -d 2 -p ack -e 40 -c 1 -i 188 -a 1 r -t 3.696 -s 4 -d 2 -p ack -e 40 -c 1 -i 165 -a 1 + -t 3.696 -s 2 -d 0 -p ack -e 40 -c 1 -i 165 -a 1 - -t 3.696 -s 2 -d 0 -p ack -e 40 -c 1 -i 165 -a 1 h -t 3.696 -s 2 -d 0 -p ack -e 40 -c 1 -i 165 -a 1 - -t 3.69704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 203 -a 1 h -t 3.69704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 203 -a 1 r -t 3.69704 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 218 -a 1 + -t 3.69704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 218 -a 1 r -t 3.69804 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 219 -a 1 + -t 3.69804 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 219 -a 1 d -t 3.69804 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 219 -a 1 r -t 3.70104 -s 2 -d 0 -p ack -e 40 -c 1 -i 165 -a 1 + -t 3.70104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 221 -a 1 - -t 3.70104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 221 -a 1 h -t 3.70104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 221 -a 1 + -t 3.70104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 222 -a 1 - -t 3.70204 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 222 -a 1 h -t 3.70204 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 222 -a 1 r -t 3.7056 -s 3 -d 4 -p ack -e 40 -c 1 -i 191 -a 1 + -t 3.7056 -s 4 -d 2 -p ack -e 40 -c 1 -i 191 -a 1 - -t 3.7056 -s 4 -d 2 -p ack -e 40 -c 1 -i 191 -a 1 h -t 3.7056 -s 4 -d 2 -p ack -e 40 -c 1 -i 191 -a 1 r -t 3.706 -s 4 -d 2 -p ack -e 40 -c 1 -i 167 -a 1 + -t 3.706 -s 2 -d 0 -p ack -e 40 -c 1 -i 167 -a 1 - -t 3.706 -s 2 -d 0 -p ack -e 40 -c 1 -i 167 -a 1 h -t 3.706 -s 2 -d 0 -p ack -e 40 -c 1 -i 167 -a 1 r -t 3.70664 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 162 -a 2 + -t 3.70664 -s 3 -d 2 -p ack -e 40 -c 2 -i 223 -a 2 - -t 3.70664 -s 3 -d 2 -p ack -e 40 -c 2 -i 223 -a 2 h -t 3.70664 -s 3 -d 2 -p ack -e 40 -c 2 -i 223 -a 2 - -t 3.70704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 204 -a 1 h -t 3.70704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 204 -a 1 r -t 3.70704 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 221 -a 1 + -t 3.70704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 221 -a 1 r -t 3.70704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 186 -a 1 + -t 3.70704 -s 3 -d 2 -p ack -e 40 -c 1 -i 224 -a 1 - -t 3.70704 -s 3 -d 2 -p ack -e 40 -c 1 -i 224 -a 1 h -t 3.70704 -s 3 -d 2 -p ack -e 40 -c 1 -i 224 -a 1 r -t 3.70804 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 222 -a 1 + -t 3.70804 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 222 -a 1 d -t 3.70804 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 222 -a 1 r -t 3.71104 -s 2 -d 0 -p ack -e 40 -c 1 -i 167 -a 1 + -t 3.71104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 225 -a 1 - -t 3.71104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 225 -a 1 h -t 3.71104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 225 -a 1 + -t 3.71104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 226 -a 1 - -t 3.71204 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 226 -a 1 h -t 3.71204 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 226 -a 1 r -t 3.7156 -s 3 -d 4 -p ack -e 40 -c 1 -i 194 -a 1 + -t 3.7156 -s 4 -d 2 -p ack -e 40 -c 1 -i 194 -a 1 - -t 3.7156 -s 4 -d 2 -p ack -e 40 -c 1 -i 194 -a 1 h -t 3.7156 -s 4 -d 2 -p ack -e 40 -c 1 -i 194 -a 1 r -t 3.716 -s 4 -d 2 -p ack -e 40 -c 1 -i 170 -a 1 + -t 3.716 -s 2 -d 0 -p ack -e 40 -c 1 -i 170 -a 1 - -t 3.716 -s 2 -d 0 -p ack -e 40 -c 1 -i 170 -a 1 h -t 3.716 -s 2 -d 0 -p ack -e 40 -c 1 -i 170 -a 1 r -t 3.71664 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 164 -a 2 + -t 3.71664 -s 3 -d 2 -p ack -e 40 -c 2 -i 227 -a 2 - -t 3.71664 -s 3 -d 2 -p ack -e 40 -c 2 -i 227 -a 2 h -t 3.71664 -s 3 -d 2 -p ack -e 40 -c 2 -i 227 -a 2 - -t 3.71704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 206 -a 1 h -t 3.71704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 206 -a 1 r -t 3.71704 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 225 -a 1 + -t 3.71704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 225 -a 1 r -t 3.71704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 187 -a 1 + -t 3.71704 -s 3 -d 2 -p ack -e 40 -c 1 -i 228 -a 1 - -t 3.71704 -s 3 -d 2 -p ack -e 40 -c 1 -i 228 -a 1 h -t 3.71704 -s 3 -d 2 -p ack -e 40 -c 1 -i 228 -a 1 r -t 3.71804 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 226 -a 1 + -t 3.71804 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 226 -a 1 d -t 3.71804 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 226 -a 1 r -t 3.72104 -s 2 -d 0 -p ack -e 40 -c 1 -i 170 -a 1 + -t 3.72104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 229 -a 1 - -t 3.72104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 229 -a 1 h -t 3.72104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 229 -a 1 + -t 3.72104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 230 -a 1 - -t 3.72204 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 230 -a 1 h -t 3.72204 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 230 -a 1 r -t 3.7256 -s 3 -d 4 -p ack -e 40 -c 1 -i 197 -a 1 + -t 3.7256 -s 4 -d 2 -p ack -e 40 -c 1 -i 197 -a 1 - -t 3.7256 -s 4 -d 2 -p ack -e 40 -c 1 -i 197 -a 1 h -t 3.7256 -s 4 -d 2 -p ack -e 40 -c 1 -i 197 -a 1 r -t 3.726 -s 4 -d 2 -p ack -e 40 -c 1 -i 171 -a 1 + -t 3.726 -s 2 -d 0 -p ack -e 40 -c 1 -i 171 -a 1 - -t 3.726 -s 2 -d 0 -p ack -e 40 -c 1 -i 171 -a 1 h -t 3.726 -s 2 -d 0 -p ack -e 40 -c 1 -i 171 -a 1 r -t 3.72664 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 166 -a 2 + -t 3.72664 -s 3 -d 2 -p ack -e 40 -c 2 -i 231 -a 2 - -t 3.72664 -s 3 -d 2 -p ack -e 40 -c 2 -i 231 -a 2 h -t 3.72664 -s 3 -d 2 -p ack -e 40 -c 2 -i 231 -a 2 - -t 3.72704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 207 -a 1 h -t 3.72704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 207 -a 1 r -t 3.72704 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 229 -a 1 + -t 3.72704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 229 -a 1 r -t 3.72704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 189 -a 1 + -t 3.72704 -s 3 -d 2 -p ack -e 40 -c 1 -i 232 -a 1 - -t 3.72704 -s 3 -d 2 -p ack -e 40 -c 1 -i 232 -a 1 h -t 3.72704 -s 3 -d 2 -p ack -e 40 -c 1 -i 232 -a 1 r -t 3.72804 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 230 -a 1 + -t 3.72804 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 230 -a 1 d -t 3.72804 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 230 -a 1 r -t 3.73104 -s 2 -d 0 -p ack -e 40 -c 1 -i 171 -a 1 + -t 3.73104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 233 -a 1 - -t 3.73104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 233 -a 1 h -t 3.73104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 233 -a 1 + -t 3.73104 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 234 -a 1 r -t 3.73169 -s 3 -d 4 -p rtProtoDV -e 5 -c 0 -i 200 -a 0 r -t 3.73169 -s 3 -d 2 -p rtProtoDV -e 5 -c 0 -i 201 -a 0 - -t 3.73204 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 234 -a 1 h -t 3.73204 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 234 -a 1 r -t 3.7356 -s 3 -d 2 -p ack -e 40 -c 1 -i 202 -a 1 + -t 3.7356 -s 2 -d 0 -p ack -e 40 -c 1 -i 202 -a 1 - -t 3.7356 -s 2 -d 0 -p ack -e 40 -c 1 -i 202 -a 1 h -t 3.7356 -s 2 -d 0 -p ack -e 40 -c 1 -i 202 -a 1 r -t 3.736 -s 4 -d 2 -p ack -e 40 -c 1 -i 178 -a 1 + -t 3.736 -s 2 -d 0 -p ack -e 40 -c 1 -i 178 -a 1 - -t 3.736 -s 2 -d 0 -p ack -e 40 -c 1 -i 178 -a 1 h -t 3.736 -s 2 -d 0 -p ack -e 40 -c 1 -i 178 -a 1 r -t 3.73664 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 168 -a 2 + -t 3.73664 -s 3 -d 2 -p ack -e 40 -c 2 -i 235 -a 2 - -t 3.73664 -s 3 -d 2 -p ack -e 40 -c 2 -i 235 -a 2 h -t 3.73664 -s 3 -d 2 -p ack -e 40 -c 2 -i 235 -a 2 - -t 3.73704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 209 -a 1 h -t 3.73704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 209 -a 1 r -t 3.73704 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 233 -a 1 + -t 3.73704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 233 -a 1 r -t 3.73704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 190 -a 1 + -t 3.73704 -s 3 -d 2 -p ack -e 40 -c 1 -i 236 -a 1 - -t 3.73704 -s 3 -d 2 -p ack -e 40 -c 1 -i 236 -a 1 h -t 3.73704 -s 3 -d 2 -p ack -e 40 -c 1 -i 236 -a 1 r -t 3.73804 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 234 -a 1 + -t 3.73804 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 234 -a 1 d -t 3.73804 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 234 -a 1 r -t 3.74064 -s 2 -d 0 -p ack -e 40 -c 1 -i 202 -a 1 + -t 3.74064 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 237 -a 1 - -t 3.74064 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 237 -a 1 h -t 3.74064 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 237 -a 1 + -t 3.74064 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 238 -a 1 + -t 3.74064 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 239 -a 1 + -t 3.74064 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 240 -a 1 + -t 3.74064 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 241 -a 1 + -t 3.74064 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 242 -a 1 + -t 3.74064 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 243 -a 1 + -t 3.74064 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 244 -a 1 + -t 3.74064 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 245 -a 1 + -t 3.74064 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 246 -a 1 + -t 3.74064 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 247 -a 1 + -t 3.74064 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 248 -a 1 r -t 3.74104 -s 2 -d 0 -p ack -e 40 -c 1 -i 178 -a 1 - -t 3.74164 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 238 -a 1 h -t 3.74164 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 238 -a 1 - -t 3.74264 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 239 -a 1 h -t 3.74264 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 239 -a 1 - -t 3.74364 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 240 -a 1 h -t 3.74364 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 240 -a 1 - -t 3.74464 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 241 -a 1 h -t 3.74464 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 241 -a 1 r -t 3.7456 -s 3 -d 2 -p ack -e 40 -c 1 -i 205 -a 1 + -t 3.7456 -s 2 -d 0 -p ack -e 40 -c 1 -i 205 -a 1 - -t 3.7456 -s 2 -d 0 -p ack -e 40 -c 1 -i 205 -a 1 h -t 3.7456 -s 2 -d 0 -p ack -e 40 -c 1 -i 205 -a 1 - -t 3.74564 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 242 -a 1 h -t 3.74564 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 242 -a 1 r -t 3.746 -s 4 -d 2 -p ack -e 40 -c 1 -i 181 -a 1 + -t 3.746 -s 2 -d 0 -p ack -e 40 -c 1 -i 181 -a 1 - -t 3.746 -s 2 -d 0 -p ack -e 40 -c 1 -i 181 -a 1 h -t 3.746 -s 2 -d 0 -p ack -e 40 -c 1 -i 181 -a 1 - -t 3.74664 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 243 -a 1 h -t 3.74664 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 243 -a 1 r -t 3.74664 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 237 -a 1 + -t 3.74664 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 237 -a 1 d -t 3.74664 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 237 -a 1 r -t 3.74664 -s 4 -d 3 -p tcp -e 1000 -c 2 -i 169 -a 2 + -t 3.74664 -s 3 -d 2 -p ack -e 40 -c 2 -i 249 -a 2 - -t 3.74664 -s 3 -d 2 -p ack -e 40 -c 2 -i 249 -a 2 h -t 3.74664 -s 3 -d 2 -p ack -e 40 -c 2 -i 249 -a 2 - -t 3.74704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 212 -a 1 h -t 3.74704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 212 -a 1 r -t 3.74704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 192 -a 1 + -t 3.74704 -s 3 -d 2 -p ack -e 40 -c 1 -i 250 -a 1 - -t 3.74704 -s 3 -d 2 -p ack -e 40 -c 1 -i 250 -a 1 h -t 3.74704 -s 3 -d 2 -p ack -e 40 -c 1 -i 250 -a 1 - -t 3.74764 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 244 -a 1 h -t 3.74764 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 244 -a 1 r -t 3.74764 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 238 -a 1 + -t 3.74764 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 238 -a 1 - -t 3.74864 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 245 -a 1 h -t 3.74864 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 245 -a 1 r -t 3.74864 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 239 -a 1 + -t 3.74864 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 239 -a 1 d -t 3.74864 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 239 -a 1 - -t 3.74964 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 246 -a 1 h -t 3.74964 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 246 -a 1 r -t 3.74964 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 240 -a 1 + -t 3.74964 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 240 -a 1 d -t 3.74964 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 240 -a 1 - -t 3.75064 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 247 -a 1 h -t 3.75064 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 247 -a 1 r -t 3.75064 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 241 -a 1 + -t 3.75064 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 241 -a 1 d -t 3.75064 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 241 -a 1 r -t 3.75064 -s 2 -d 0 -p ack -e 40 -c 1 -i 205 -a 1 + -t 3.75064 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 251 -a 1 + -t 3.75064 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 252 -a 1 r -t 3.75104 -s 2 -d 0 -p ack -e 40 -c 1 -i 181 -a 1 - -t 3.75164 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 248 -a 1 h -t 3.75164 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 248 -a 1 r -t 3.75164 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 242 -a 1 + -t 3.75164 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 242 -a 1 d -t 3.75164 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 242 -a 1 - -t 3.75264 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 251 -a 1 h -t 3.75264 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 251 -a 1 r -t 3.75264 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 243 -a 1 + -t 3.75264 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 243 -a 1 d -t 3.75264 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 243 -a 1 - -t 3.75364 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 252 -a 1 h -t 3.75364 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 252 -a 1 r -t 3.75364 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 244 -a 1 + -t 3.75364 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 244 -a 1 d -t 3.75364 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 244 -a 1 r -t 3.75464 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 245 -a 1 + -t 3.75464 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 245 -a 1 d -t 3.75464 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 245 -a 1 r -t 3.7556 -s 3 -d 2 -p ack -e 40 -c 1 -i 208 -a 1 + -t 3.7556 -s 2 -d 0 -p ack -e 40 -c 1 -i 208 -a 1 - -t 3.7556 -s 2 -d 0 -p ack -e 40 -c 1 -i 208 -a 1 h -t 3.7556 -s 2 -d 0 -p ack -e 40 -c 1 -i 208 -a 1 r -t 3.75564 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 246 -a 1 + -t 3.75564 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 246 -a 1 d -t 3.75564 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 246 -a 1 r -t 3.756 -s 4 -d 2 -p ack -e 40 -c 1 -i 182 -a 1 + -t 3.756 -s 2 -d 0 -p ack -e 40 -c 1 -i 182 -a 1 - -t 3.756 -s 2 -d 0 -p ack -e 40 -c 1 -i 182 -a 1 h -t 3.756 -s 2 -d 0 -p ack -e 40 -c 1 -i 182 -a 1 r -t 3.75664 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 247 -a 1 + -t 3.75664 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 247 -a 1 d -t 3.75664 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 247 -a 1 - -t 3.75704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 215 -a 1 h -t 3.75704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 215 -a 1 r -t 3.75704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 193 -a 1 + -t 3.75704 -s 3 -d 2 -p ack -e 40 -c 1 -i 253 -a 1 - -t 3.75704 -s 3 -d 2 -p ack -e 40 -c 1 -i 253 -a 1 h -t 3.75704 -s 3 -d 2 -p ack -e 40 -c 1 -i 253 -a 1 r -t 3.75764 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 248 -a 1 + -t 3.75764 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 248 -a 1 r -t 3.75864 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 251 -a 1 + -t 3.75864 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 251 -a 1 d -t 3.75864 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 251 -a 1 r -t 3.75964 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 252 -a 1 + -t 3.75964 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 252 -a 1 d -t 3.75964 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 252 -a 1 r -t 3.76064 -s 2 -d 0 -p ack -e 40 -c 1 -i 208 -a 1 + -t 3.76064 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 254 -a 1 - -t 3.76064 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 254 -a 1 h -t 3.76064 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 254 -a 1 + -t 3.76064 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 255 -a 1 r -t 3.76104 -s 2 -d 0 -p ack -e 40 -c 1 -i 182 -a 1 - -t 3.76164 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 255 -a 1 h -t 3.76164 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 255 -a 1 r -t 3.7656 -s 3 -d 2 -p ack -e 40 -c 1 -i 211 -a 1 + -t 3.7656 -s 2 -d 0 -p ack -e 40 -c 1 -i 211 -a 1 - -t 3.7656 -s 2 -d 0 -p ack -e 40 -c 1 -i 211 -a 1 h -t 3.7656 -s 2 -d 0 -p ack -e 40 -c 1 -i 211 -a 1 r -t 3.766 -s 4 -d 2 -p ack -e 40 -c 1 -i 183 -a 1 + -t 3.766 -s 2 -d 0 -p ack -e 40 -c 1 -i 183 -a 1 - -t 3.766 -s 2 -d 0 -p ack -e 40 -c 1 -i 183 -a 1 h -t 3.766 -s 2 -d 0 -p ack -e 40 -c 1 -i 183 -a 1 r -t 3.76664 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 254 -a 1 + -t 3.76664 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 254 -a 1 d -t 3.76664 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 254 -a 1 - -t 3.76704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 218 -a 1 h -t 3.76704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 218 -a 1 r -t 3.76704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 195 -a 1 + -t 3.76704 -s 3 -d 2 -p ack -e 40 -c 1 -i 256 -a 1 - -t 3.76704 -s 3 -d 2 -p ack -e 40 -c 1 -i 256 -a 1 h -t 3.76704 -s 3 -d 2 -p ack -e 40 -c 1 -i 256 -a 1 r -t 3.76764 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 255 -a 1 + -t 3.76764 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 255 -a 1 r -t 3.77064 -s 2 -d 0 -p ack -e 40 -c 1 -i 211 -a 1 + -t 3.77064 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 257 -a 1 - -t 3.77064 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 257 -a 1 h -t 3.77064 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 257 -a 1 + -t 3.77064 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 258 -a 1 r -t 3.77104 -s 2 -d 0 -p ack -e 40 -c 1 -i 183 -a 1 - -t 3.77164 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 258 -a 1 h -t 3.77164 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 258 -a 1 r -t 3.7756 -s 3 -d 2 -p ack -e 40 -c 1 -i 214 -a 1 + -t 3.7756 -s 2 -d 0 -p ack -e 40 -c 1 -i 214 -a 1 - -t 3.7756 -s 2 -d 0 -p ack -e 40 -c 1 -i 214 -a 1 h -t 3.7756 -s 2 -d 0 -p ack -e 40 -c 1 -i 214 -a 1 r -t 3.776 -s 4 -d 2 -p ack -e 40 -c 1 -i 184 -a 1 + -t 3.776 -s 2 -d 0 -p ack -e 40 -c 1 -i 184 -a 1 - -t 3.776 -s 2 -d 0 -p ack -e 40 -c 1 -i 184 -a 1 h -t 3.776 -s 2 -d 0 -p ack -e 40 -c 1 -i 184 -a 1 r -t 3.77664 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 257 -a 1 + -t 3.77664 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 257 -a 1 d -t 3.77664 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 257 -a 1 - -t 3.77704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 221 -a 1 h -t 3.77704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 221 -a 1 r -t 3.77704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 196 -a 1 + -t 3.77704 -s 3 -d 2 -p ack -e 40 -c 1 -i 259 -a 1 - -t 3.77704 -s 3 -d 2 -p ack -e 40 -c 1 -i 259 -a 1 h -t 3.77704 -s 3 -d 2 -p ack -e 40 -c 1 -i 259 -a 1 r -t 3.77764 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 258 -a 1 + -t 3.77764 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 258 -a 1 r -t 3.78064 -s 2 -d 0 -p ack -e 40 -c 1 -i 214 -a 1 + -t 3.78064 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 260 -a 1 - -t 3.78064 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 260 -a 1 h -t 3.78064 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 260 -a 1 + -t 3.78064 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 261 -a 1 r -t 3.78104 -s 2 -d 0 -p ack -e 40 -c 1 -i 184 -a 1 - -t 3.78164 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 261 -a 1 h -t 3.78164 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 261 -a 1 r -t 3.7856 -s 3 -d 2 -p ack -e 40 -c 1 -i 217 -a 1 + -t 3.7856 -s 2 -d 0 -p ack -e 40 -c 1 -i 217 -a 1 - -t 3.7856 -s 2 -d 0 -p ack -e 40 -c 1 -i 217 -a 1 h -t 3.7856 -s 2 -d 0 -p ack -e 40 -c 1 -i 217 -a 1 r -t 3.786 -s 4 -d 2 -p ack -e 40 -c 1 -i 185 -a 1 + -t 3.786 -s 2 -d 0 -p ack -e 40 -c 1 -i 185 -a 1 - -t 3.786 -s 2 -d 0 -p ack -e 40 -c 1 -i 185 -a 1 h -t 3.786 -s 2 -d 0 -p ack -e 40 -c 1 -i 185 -a 1 r -t 3.78664 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 260 -a 1 + -t 3.78664 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 260 -a 1 d -t 3.78664 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 260 -a 1 - -t 3.78704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 225 -a 1 h -t 3.78704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 225 -a 1 r -t 3.78704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 198 -a 1 + -t 3.78704 -s 3 -d 2 -p ack -e 40 -c 1 -i 262 -a 1 - -t 3.78704 -s 3 -d 2 -p ack -e 40 -c 1 -i 262 -a 1 h -t 3.78704 -s 3 -d 2 -p ack -e 40 -c 1 -i 262 -a 1 r -t 3.78764 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 261 -a 1 + -t 3.78764 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 261 -a 1 r -t 3.79064 -s 2 -d 0 -p ack -e 40 -c 1 -i 217 -a 1 + -t 3.79064 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 263 -a 1 - -t 3.79064 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 263 -a 1 h -t 3.79064 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 263 -a 1 + -t 3.79064 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 264 -a 1 r -t 3.79104 -s 2 -d 0 -p ack -e 40 -c 1 -i 185 -a 1 - -t 3.79164 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 264 -a 1 h -t 3.79164 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 264 -a 1 r -t 3.7956 -s 3 -d 2 -p ack -e 40 -c 1 -i 220 -a 1 + -t 3.7956 -s 2 -d 0 -p ack -e 40 -c 1 -i 220 -a 1 - -t 3.7956 -s 2 -d 0 -p ack -e 40 -c 1 -i 220 -a 1 h -t 3.7956 -s 2 -d 0 -p ack -e 40 -c 1 -i 220 -a 1 r -t 3.796 -s 4 -d 2 -p ack -e 40 -c 1 -i 188 -a 1 + -t 3.796 -s 2 -d 0 -p ack -e 40 -c 1 -i 188 -a 1 - -t 3.796 -s 2 -d 0 -p ack -e 40 -c 1 -i 188 -a 1 h -t 3.796 -s 2 -d 0 -p ack -e 40 -c 1 -i 188 -a 1 r -t 3.79664 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 263 -a 1 + -t 3.79664 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 263 -a 1 d -t 3.79664 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 263 -a 1 - -t 3.79704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 229 -a 1 h -t 3.79704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 229 -a 1 r -t 3.79704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 199 -a 1 + -t 3.79704 -s 3 -d 2 -p ack -e 40 -c 1 -i 265 -a 1 - -t 3.79704 -s 3 -d 2 -p ack -e 40 -c 1 -i 265 -a 1 h -t 3.79704 -s 3 -d 2 -p ack -e 40 -c 1 -i 265 -a 1 r -t 3.79764 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 264 -a 1 + -t 3.79764 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 264 -a 1 r -t 3.80064 -s 2 -d 0 -p ack -e 40 -c 1 -i 220 -a 1 + -t 3.80064 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 266 -a 1 - -t 3.80064 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 266 -a 1 h -t 3.80064 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 266 -a 1 + -t 3.80064 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 267 -a 1 r -t 3.80104 -s 2 -d 0 -p ack -e 40 -c 1 -i 188 -a 1 - -t 3.80164 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 267 -a 1 h -t 3.80164 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 267 -a 1 r -t 3.806 -s 4 -d 2 -p ack -e 40 -c 1 -i 191 -a 1 + -t 3.806 -s 2 -d 0 -p ack -e 40 -c 1 -i 191 -a 1 - -t 3.806 -s 2 -d 0 -p ack -e 40 -c 1 -i 191 -a 1 h -t 3.806 -s 2 -d 0 -p ack -e 40 -c 1 -i 191 -a 1 r -t 3.80664 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 266 -a 1 + -t 3.80664 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 266 -a 1 d -t 3.80664 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 266 -a 1 - -t 3.80704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 233 -a 1 h -t 3.80704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 233 -a 1 r -t 3.80704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 203 -a 1 + -t 3.80704 -s 3 -d 2 -p ack -e 40 -c 1 -i 268 -a 1 - -t 3.80704 -s 3 -d 2 -p ack -e 40 -c 1 -i 268 -a 1 h -t 3.80704 -s 3 -d 2 -p ack -e 40 -c 1 -i 268 -a 1 r -t 3.80704 -s 3 -d 2 -p ack -e 40 -c 2 -i 223 -a 2 + -t 3.80704 -s 2 -d 1 -p ack -e 40 -c 2 -i 223 -a 2 - -t 3.80704 -s 2 -d 1 -p ack -e 40 -c 2 -i 223 -a 2 h -t 3.80704 -s 2 -d 1 -p ack -e 40 -c 2 -i 223 -a 2 r -t 3.80744 -s 3 -d 2 -p ack -e 40 -c 1 -i 224 -a 1 + -t 3.80744 -s 2 -d 0 -p ack -e 40 -c 1 -i 224 -a 1 - -t 3.80744 -s 2 -d 0 -p ack -e 40 -c 1 -i 224 -a 1 h -t 3.80744 -s 2 -d 0 -p ack -e 40 -c 1 -i 224 -a 1 r -t 3.80764 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 267 -a 1 + -t 3.80764 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 267 -a 1 r -t 3.81104 -s 2 -d 0 -p ack -e 40 -c 1 -i 191 -a 1 r -t 3.81208 -s 2 -d 1 -p ack -e 40 -c 2 -i 223 -a 2 + -t 3.81208 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 269 -a 2 - -t 3.81208 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 269 -a 2 h -t 3.81208 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 269 -a 2 r -t 3.81248 -s 2 -d 0 -p ack -e 40 -c 1 -i 224 -a 1 + -t 3.81248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 270 -a 1 - -t 3.81248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 270 -a 1 h -t 3.81248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 270 -a 1 + -t 3.81248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 271 -a 1 - -t 3.81348 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 271 -a 1 h -t 3.81348 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 271 -a 1 r -t 3.816 -s 4 -d 2 -p ack -e 40 -c 1 -i 194 -a 1 + -t 3.816 -s 2 -d 0 -p ack -e 40 -c 1 -i 194 -a 1 - -t 3.816 -s 2 -d 0 -p ack -e 40 -c 1 -i 194 -a 1 h -t 3.816 -s 2 -d 0 -p ack -e 40 -c 1 -i 194 -a 1 - -t 3.81704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 238 -a 1 h -t 3.81704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 238 -a 1 r -t 3.81704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 204 -a 1 + -t 3.81704 -s 3 -d 2 -p ack -e 40 -c 1 -i 272 -a 1 - -t 3.81704 -s 3 -d 2 -p ack -e 40 -c 1 -i 272 -a 1 h -t 3.81704 -s 3 -d 2 -p ack -e 40 -c 1 -i 272 -a 1 r -t 3.81704 -s 3 -d 2 -p ack -e 40 -c 2 -i 227 -a 2 + -t 3.81704 -s 2 -d 1 -p ack -e 40 -c 2 -i 227 -a 2 - -t 3.81704 -s 2 -d 1 -p ack -e 40 -c 2 -i 227 -a 2 h -t 3.81704 -s 2 -d 1 -p ack -e 40 -c 2 -i 227 -a 2 r -t 3.81744 -s 3 -d 2 -p ack -e 40 -c 1 -i 228 -a 1 + -t 3.81744 -s 2 -d 0 -p ack -e 40 -c 1 -i 228 -a 1 - -t 3.81744 -s 2 -d 0 -p ack -e 40 -c 1 -i 228 -a 1 h -t 3.81744 -s 2 -d 0 -p ack -e 40 -c 1 -i 228 -a 1 r -t 3.81808 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 269 -a 2 + -t 3.81808 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 269 -a 2 r -t 3.81848 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 270 -a 1 + -t 3.81848 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 270 -a 1 d -t 3.81848 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 270 -a 1 r -t 3.81948 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 271 -a 1 + -t 3.81948 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 271 -a 1 d -t 3.81948 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 271 -a 1 r -t 3.82104 -s 2 -d 0 -p ack -e 40 -c 1 -i 194 -a 1 r -t 3.82208 -s 2 -d 1 -p ack -e 40 -c 2 -i 227 -a 2 + -t 3.82208 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 273 -a 2 - -t 3.82208 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 273 -a 2 h -t 3.82208 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 273 -a 2 r -t 3.82248 -s 2 -d 0 -p ack -e 40 -c 1 -i 228 -a 1 + -t 3.82248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 274 -a 1 - -t 3.82248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 274 -a 1 h -t 3.82248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 274 -a 1 + -t 3.82248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 275 -a 1 - -t 3.82348 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 275 -a 1 h -t 3.82348 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 275 -a 1 r -t 3.826 -s 4 -d 2 -p ack -e 40 -c 1 -i 197 -a 1 + -t 3.826 -s 2 -d 0 -p ack -e 40 -c 1 -i 197 -a 1 - -t 3.826 -s 2 -d 0 -p ack -e 40 -c 1 -i 197 -a 1 h -t 3.826 -s 2 -d 0 -p ack -e 40 -c 1 -i 197 -a 1 - -t 3.82704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 248 -a 1 h -t 3.82704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 248 -a 1 r -t 3.82704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 206 -a 1 + -t 3.82704 -s 3 -d 2 -p ack -e 40 -c 1 -i 276 -a 1 - -t 3.82704 -s 3 -d 2 -p ack -e 40 -c 1 -i 276 -a 1 h -t 3.82704 -s 3 -d 2 -p ack -e 40 -c 1 -i 276 -a 1 r -t 3.82704 -s 3 -d 2 -p ack -e 40 -c 2 -i 231 -a 2 + -t 3.82704 -s 2 -d 1 -p ack -e 40 -c 2 -i 231 -a 2 - -t 3.82704 -s 2 -d 1 -p ack -e 40 -c 2 -i 231 -a 2 h -t 3.82704 -s 2 -d 1 -p ack -e 40 -c 2 -i 231 -a 2 r -t 3.82744 -s 3 -d 2 -p ack -e 40 -c 1 -i 232 -a 1 + -t 3.82744 -s 2 -d 0 -p ack -e 40 -c 1 -i 232 -a 1 - -t 3.82744 -s 2 -d 0 -p ack -e 40 -c 1 -i 232 -a 1 h -t 3.82744 -s 2 -d 0 -p ack -e 40 -c 1 -i 232 -a 1 r -t 3.82808 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 273 -a 2 + -t 3.82808 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 273 -a 2 r -t 3.82848 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 274 -a 1 + -t 3.82848 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 274 -a 1 d -t 3.82848 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 274 -a 1 r -t 3.82948 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 275 -a 1 + -t 3.82948 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 275 -a 1 d -t 3.82948 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 275 -a 1 r -t 3.83104 -s 2 -d 0 -p ack -e 40 -c 1 -i 197 -a 1 r -t 3.83208 -s 2 -d 1 -p ack -e 40 -c 2 -i 231 -a 2 + -t 3.83208 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 277 -a 2 - -t 3.83208 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 277 -a 2 h -t 3.83208 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 277 -a 2 r -t 3.83248 -s 2 -d 0 -p ack -e 40 -c 1 -i 232 -a 1 + -t 3.83248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 278 -a 1 - -t 3.83248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 278 -a 1 h -t 3.83248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 278 -a 1 + -t 3.83248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 279 -a 1 - -t 3.83348 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 279 -a 1 h -t 3.83348 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 279 -a 1 - -t 3.83704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 255 -a 1 h -t 3.83704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 255 -a 1 r -t 3.83704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 207 -a 1 + -t 3.83704 -s 3 -d 2 -p ack -e 40 -c 1 -i 280 -a 1 - -t 3.83704 -s 3 -d 2 -p ack -e 40 -c 1 -i 280 -a 1 h -t 3.83704 -s 3 -d 2 -p ack -e 40 -c 1 -i 280 -a 1 r -t 3.83704 -s 3 -d 2 -p ack -e 40 -c 2 -i 235 -a 2 + -t 3.83704 -s 2 -d 1 -p ack -e 40 -c 2 -i 235 -a 2 - -t 3.83704 -s 2 -d 1 -p ack -e 40 -c 2 -i 235 -a 2 h -t 3.83704 -s 2 -d 1 -p ack -e 40 -c 2 -i 235 -a 2 r -t 3.83744 -s 3 -d 2 -p ack -e 40 -c 1 -i 236 -a 1 + -t 3.83744 -s 2 -d 0 -p ack -e 40 -c 1 -i 236 -a 1 - -t 3.83744 -s 2 -d 0 -p ack -e 40 -c 1 -i 236 -a 1 h -t 3.83744 -s 2 -d 0 -p ack -e 40 -c 1 -i 236 -a 1 + -t 3.83799 -s 0 -d 2 -p rtProtoDV -e 5 -c 0 -i 281 -a 0 - -t 3.83799 -s 0 -d 2 -p rtProtoDV -e 5 -c 0 -i 281 -a 0 h -t 3.83799 -s 0 -d 2 -p rtProtoDV -e 5 -c 0 -i 281 -a 0 r -t 3.83808 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 277 -a 2 + -t 3.83808 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 277 -a 2 r -t 3.83848 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 278 -a 1 + -t 3.83848 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 278 -a 1 d -t 3.83848 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 278 -a 1 r -t 3.83948 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 279 -a 1 + -t 3.83948 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 279 -a 1 d -t 3.83948 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 279 -a 1 r -t 3.84208 -s 2 -d 1 -p ack -e 40 -c 2 -i 235 -a 2 + -t 3.84208 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 282 -a 2 - -t 3.84208 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 282 -a 2 h -t 3.84208 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 282 -a 2 r -t 3.84248 -s 2 -d 0 -p ack -e 40 -c 1 -i 236 -a 1 + -t 3.84248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 283 -a 1 - -t 3.84248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 283 -a 1 h -t 3.84248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 283 -a 1 + -t 3.84248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 284 -a 1 r -t 3.84299 -s 0 -d 2 -p rtProtoDV -e 5 -c 0 -i 281 -a 0 - -t 3.84348 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 284 -a 1 h -t 3.84348 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 284 -a 1 - -t 3.84704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 258 -a 1 h -t 3.84704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 258 -a 1 r -t 3.84704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 209 -a 1 + -t 3.84704 -s 3 -d 2 -p ack -e 40 -c 1 -i 285 -a 1 - -t 3.84704 -s 3 -d 2 -p ack -e 40 -c 1 -i 285 -a 1 h -t 3.84704 -s 3 -d 2 -p ack -e 40 -c 1 -i 285 -a 1 r -t 3.84704 -s 3 -d 2 -p ack -e 40 -c 2 -i 249 -a 2 + -t 3.84704 -s 2 -d 1 -p ack -e 40 -c 2 -i 249 -a 2 - -t 3.84704 -s 2 -d 1 -p ack -e 40 -c 2 -i 249 -a 2 h -t 3.84704 -s 2 -d 1 -p ack -e 40 -c 2 -i 249 -a 2 r -t 3.84744 -s 3 -d 2 -p ack -e 40 -c 1 -i 250 -a 1 + -t 3.84744 -s 2 -d 0 -p ack -e 40 -c 1 -i 250 -a 1 - -t 3.84744 -s 2 -d 0 -p ack -e 40 -c 1 -i 250 -a 1 h -t 3.84744 -s 2 -d 0 -p ack -e 40 -c 1 -i 250 -a 1 r -t 3.84808 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 282 -a 2 + -t 3.84808 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 282 -a 2 r -t 3.84848 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 283 -a 1 + -t 3.84848 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 283 -a 1 d -t 3.84848 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 283 -a 1 r -t 3.84948 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 284 -a 1 + -t 3.84948 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 284 -a 1 d -t 3.84948 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 284 -a 1 r -t 3.85208 -s 2 -d 1 -p ack -e 40 -c 2 -i 249 -a 2 + -t 3.85208 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 286 -a 2 - -t 3.85208 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 286 -a 2 h -t 3.85208 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 286 -a 2 + -t 3.85208 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 287 -a 2 r -t 3.85248 -s 2 -d 0 -p ack -e 40 -c 1 -i 250 -a 1 + -t 3.85248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 288 -a 1 - -t 3.85248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 288 -a 1 h -t 3.85248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 288 -a 1 + -t 3.85248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 289 -a 1 - -t 3.85308 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 287 -a 2 h -t 3.85308 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 287 -a 2 - -t 3.85348 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 289 -a 1 h -t 3.85348 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 289 -a 1 - -t 3.85704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 261 -a 1 h -t 3.85704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 261 -a 1 r -t 3.85704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 212 -a 1 + -t 3.85704 -s 3 -d 2 -p ack -e 40 -c 1 -i 290 -a 1 - -t 3.85704 -s 3 -d 2 -p ack -e 40 -c 1 -i 290 -a 1 h -t 3.85704 -s 3 -d 2 -p ack -e 40 -c 1 -i 290 -a 1 r -t 3.85744 -s 3 -d 2 -p ack -e 40 -c 1 -i 253 -a 1 + -t 3.85744 -s 2 -d 0 -p ack -e 40 -c 1 -i 253 -a 1 - -t 3.85744 -s 2 -d 0 -p ack -e 40 -c 1 -i 253 -a 1 h -t 3.85744 -s 2 -d 0 -p ack -e 40 -c 1 -i 253 -a 1 r -t 3.85808 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 286 -a 2 + -t 3.85808 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 286 -a 2 r -t 3.85848 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 288 -a 1 + -t 3.85848 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 288 -a 1 d -t 3.85848 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 288 -a 1 r -t 3.85908 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 287 -a 2 + -t 3.85908 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 287 -a 2 d -t 3.85908 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 287 -a 2 r -t 3.85948 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 289 -a 1 + -t 3.85948 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 289 -a 1 d -t 3.85948 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 289 -a 1 r -t 3.86248 -s 2 -d 0 -p ack -e 40 -c 1 -i 253 -a 1 + -t 3.86248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 291 -a 1 - -t 3.86248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 291 -a 1 h -t 3.86248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 291 -a 1 + -t 3.86248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 292 -a 1 - -t 3.86348 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 292 -a 1 h -t 3.86348 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 292 -a 1 - -t 3.86704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 264 -a 1 h -t 3.86704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 264 -a 1 r -t 3.86704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 215 -a 1 + -t 3.86704 -s 3 -d 2 -p ack -e 40 -c 1 -i 293 -a 1 - -t 3.86704 -s 3 -d 2 -p ack -e 40 -c 1 -i 293 -a 1 h -t 3.86704 -s 3 -d 2 -p ack -e 40 -c 1 -i 293 -a 1 r -t 3.86744 -s 3 -d 2 -p ack -e 40 -c 1 -i 256 -a 1 + -t 3.86744 -s 2 -d 0 -p ack -e 40 -c 1 -i 256 -a 1 - -t 3.86744 -s 2 -d 0 -p ack -e 40 -c 1 -i 256 -a 1 h -t 3.86744 -s 2 -d 0 -p ack -e 40 -c 1 -i 256 -a 1 r -t 3.86848 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 291 -a 1 + -t 3.86848 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 291 -a 1 r -t 3.86948 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 292 -a 1 + -t 3.86948 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 292 -a 1 d -t 3.86948 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 292 -a 1 r -t 3.87248 -s 2 -d 0 -p ack -e 40 -c 1 -i 256 -a 1 + -t 3.87248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 294 -a 1 - -t 3.87248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 294 -a 1 h -t 3.87248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 294 -a 1 + -t 3.87248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 295 -a 1 - -t 3.87348 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 295 -a 1 h -t 3.87348 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 295 -a 1 - -t 3.87704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 267 -a 1 h -t 3.87704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 267 -a 1 r -t 3.87704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 218 -a 1 + -t 3.87704 -s 3 -d 2 -p ack -e 40 -c 1 -i 296 -a 1 - -t 3.87704 -s 3 -d 2 -p ack -e 40 -c 1 -i 296 -a 1 h -t 3.87704 -s 3 -d 2 -p ack -e 40 -c 1 -i 296 -a 1 r -t 3.87744 -s 3 -d 2 -p ack -e 40 -c 1 -i 259 -a 1 + -t 3.87744 -s 2 -d 0 -p ack -e 40 -c 1 -i 259 -a 1 - -t 3.87744 -s 2 -d 0 -p ack -e 40 -c 1 -i 259 -a 1 h -t 3.87744 -s 2 -d 0 -p ack -e 40 -c 1 -i 259 -a 1 r -t 3.87848 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 294 -a 1 + -t 3.87848 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 294 -a 1 r -t 3.87948 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 295 -a 1 + -t 3.87948 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 295 -a 1 d -t 3.87948 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 295 -a 1 r -t 3.88248 -s 2 -d 0 -p ack -e 40 -c 1 -i 259 -a 1 + -t 3.88248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 297 -a 1 - -t 3.88248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 297 -a 1 h -t 3.88248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 297 -a 1 + -t 3.88248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 298 -a 1 - -t 3.88348 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 298 -a 1 h -t 3.88348 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 298 -a 1 - -t 3.88704 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 269 -a 2 h -t 3.88704 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 269 -a 2 r -t 3.88704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 221 -a 1 + -t 3.88704 -s 3 -d 2 -p ack -e 40 -c 1 -i 299 -a 1 - -t 3.88704 -s 3 -d 2 -p ack -e 40 -c 1 -i 299 -a 1 h -t 3.88704 -s 3 -d 2 -p ack -e 40 -c 1 -i 299 -a 1 r -t 3.88744 -s 3 -d 2 -p ack -e 40 -c 1 -i 262 -a 1 + -t 3.88744 -s 2 -d 0 -p ack -e 40 -c 1 -i 262 -a 1 - -t 3.88744 -s 2 -d 0 -p ack -e 40 -c 1 -i 262 -a 1 h -t 3.88744 -s 2 -d 0 -p ack -e 40 -c 1 -i 262 -a 1 r -t 3.88848 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 297 -a 1 + -t 3.88848 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 297 -a 1 r -t 3.88948 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 298 -a 1 + -t 3.88948 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 298 -a 1 d -t 3.88948 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 298 -a 1 r -t 3.89248 -s 2 -d 0 -p ack -e 40 -c 1 -i 262 -a 1 + -t 3.89248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 300 -a 1 - -t 3.89248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 300 -a 1 h -t 3.89248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 300 -a 1 + -t 3.89248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 301 -a 1 - -t 3.89348 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 301 -a 1 h -t 3.89348 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 301 -a 1 + -t 3.89535 -s 4 -d 3 -p rtProtoDV -e 5 -c 0 -i 302 -a 0 - -t 3.89535 -s 4 -d 3 -p rtProtoDV -e 5 -c 0 -i 302 -a 0 h -t 3.89535 -s 4 -d 3 -p rtProtoDV -e 5 -c 0 -i 302 -a 0 + -t 3.89535 -s 4 -d 2 -p rtProtoDV -e 5 -c 0 -i 303 -a 0 - -t 3.89535 -s 4 -d 2 -p rtProtoDV -e 5 -c 0 -i 303 -a 0 h -t 3.89535 -s 4 -d 2 -p rtProtoDV -e 5 -c 0 -i 303 -a 0 - -t 3.89704 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 273 -a 2 h -t 3.89704 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 273 -a 2 r -t 3.89704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 225 -a 1 + -t 3.89704 -s 3 -d 2 -p ack -e 40 -c 1 -i 304 -a 1 - -t 3.89704 -s 3 -d 2 -p ack -e 40 -c 1 -i 304 -a 1 h -t 3.89704 -s 3 -d 2 -p ack -e 40 -c 1 -i 304 -a 1 r -t 3.89744 -s 3 -d 2 -p ack -e 40 -c 1 -i 265 -a 1 + -t 3.89744 -s 2 -d 0 -p ack -e 40 -c 1 -i 265 -a 1 - -t 3.89744 -s 2 -d 0 -p ack -e 40 -c 1 -i 265 -a 1 h -t 3.89744 -s 2 -d 0 -p ack -e 40 -c 1 -i 265 -a 1 r -t 3.89848 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 300 -a 1 + -t 3.89848 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 300 -a 1 r -t 3.89948 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 301 -a 1 + -t 3.89948 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 301 -a 1 d -t 3.89948 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 301 -a 1 r -t 3.90248 -s 2 -d 0 -p ack -e 40 -c 1 -i 265 -a 1 + -t 3.90248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 305 -a 1 - -t 3.90248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 305 -a 1 h -t 3.90248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 305 -a 1 + -t 3.90248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 306 -a 1 - -t 3.90348 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 306 -a 1 h -t 3.90348 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 306 -a 1 - -t 3.90704 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 277 -a 2 h -t 3.90704 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 277 -a 2 r -t 3.90704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 229 -a 1 + -t 3.90704 -s 3 -d 2 -p ack -e 40 -c 1 -i 307 -a 1 - -t 3.90704 -s 3 -d 2 -p ack -e 40 -c 1 -i 307 -a 1 h -t 3.90704 -s 3 -d 2 -p ack -e 40 -c 1 -i 307 -a 1 r -t 3.90744 -s 3 -d 2 -p ack -e 40 -c 1 -i 268 -a 1 + -t 3.90744 -s 2 -d 0 -p ack -e 40 -c 1 -i 268 -a 1 - -t 3.90744 -s 2 -d 0 -p ack -e 40 -c 1 -i 268 -a 1 h -t 3.90744 -s 2 -d 0 -p ack -e 40 -c 1 -i 268 -a 1 r -t 3.90848 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 305 -a 1 + -t 3.90848 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 305 -a 1 r -t 3.90948 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 306 -a 1 + -t 3.90948 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 306 -a 1 d -t 3.90948 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 306 -a 1 r -t 3.91248 -s 2 -d 0 -p ack -e 40 -c 1 -i 268 -a 1 + -t 3.91248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 308 -a 1 - -t 3.91248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 308 -a 1 h -t 3.91248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 308 -a 1 + -t 3.91248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 309 -a 1 - -t 3.91348 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 309 -a 1 h -t 3.91348 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 309 -a 1 - -t 3.91704 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 282 -a 2 h -t 3.91704 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 282 -a 2 r -t 3.91704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 233 -a 1 + -t 3.91704 -s 3 -d 2 -p ack -e 40 -c 1 -i 310 -a 1 - -t 3.91704 -s 3 -d 2 -p ack -e 40 -c 1 -i 310 -a 1 h -t 3.91704 -s 3 -d 2 -p ack -e 40 -c 1 -i 310 -a 1 r -t 3.91744 -s 3 -d 2 -p ack -e 40 -c 1 -i 272 -a 1 + -t 3.91744 -s 2 -d 0 -p ack -e 40 -c 1 -i 272 -a 1 - -t 3.91744 -s 2 -d 0 -p ack -e 40 -c 1 -i 272 -a 1 h -t 3.91744 -s 2 -d 0 -p ack -e 40 -c 1 -i 272 -a 1 r -t 3.91848 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 308 -a 1 + -t 3.91848 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 308 -a 1 r -t 3.91948 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 309 -a 1 + -t 3.91948 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 309 -a 1 d -t 3.91948 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 309 -a 1 r -t 3.92248 -s 2 -d 0 -p ack -e 40 -c 1 -i 272 -a 1 + -t 3.92248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 311 -a 1 - -t 3.92248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 311 -a 1 h -t 3.92248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 311 -a 1 + -t 3.92248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 312 -a 1 - -t 3.92348 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 312 -a 1 h -t 3.92348 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 312 -a 1 - -t 3.92704 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 286 -a 2 h -t 3.92704 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 286 -a 2 r -t 3.92704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 238 -a 1 + -t 3.92704 -s 3 -d 2 -p ack -e 40 -c 1 -i 313 -a 1 - -t 3.92704 -s 3 -d 2 -p ack -e 40 -c 1 -i 313 -a 1 h -t 3.92704 -s 3 -d 2 -p ack -e 40 -c 1 -i 313 -a 1 r -t 3.92744 -s 3 -d 2 -p ack -e 40 -c 1 -i 276 -a 1 + -t 3.92744 -s 2 -d 0 -p ack -e 40 -c 1 -i 276 -a 1 - -t 3.92744 -s 2 -d 0 -p ack -e 40 -c 1 -i 276 -a 1 h -t 3.92744 -s 2 -d 0 -p ack -e 40 -c 1 -i 276 -a 1 r -t 3.92848 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 311 -a 1 + -t 3.92848 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 311 -a 1 r -t 3.92948 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 312 -a 1 + -t 3.92948 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 312 -a 1 d -t 3.92948 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 312 -a 1 r -t 3.93248 -s 2 -d 0 -p ack -e 40 -c 1 -i 276 -a 1 + -t 3.93248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 314 -a 1 - -t 3.93248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 314 -a 1 h -t 3.93248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 314 -a 1 + -t 3.93248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 315 -a 1 - -t 3.93348 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 315 -a 1 h -t 3.93348 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 315 -a 1 - -t 3.93704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 291 -a 1 h -t 3.93704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 291 -a 1 r -t 3.93704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 248 -a 1 + -t 3.93704 -s 3 -d 2 -p ack -e 40 -c 1 -i 316 -a 1 - -t 3.93704 -s 3 -d 2 -p ack -e 40 -c 1 -i 316 -a 1 h -t 3.93704 -s 3 -d 2 -p ack -e 40 -c 1 -i 316 -a 1 r -t 3.93744 -s 3 -d 2 -p ack -e 40 -c 1 -i 280 -a 1 + -t 3.93744 -s 2 -d 0 -p ack -e 40 -c 1 -i 280 -a 1 - -t 3.93744 -s 2 -d 0 -p ack -e 40 -c 1 -i 280 -a 1 h -t 3.93744 -s 2 -d 0 -p ack -e 40 -c 1 -i 280 -a 1 r -t 3.93848 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 314 -a 1 + -t 3.93848 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 314 -a 1 r -t 3.93948 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 315 -a 1 + -t 3.93948 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 315 -a 1 d -t 3.93948 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 315 -a 1 r -t 3.94248 -s 2 -d 0 -p ack -e 40 -c 1 -i 280 -a 1 + -t 3.94248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 317 -a 1 - -t 3.94248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 317 -a 1 h -t 3.94248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 317 -a 1 + -t 3.94248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 318 -a 1 - -t 3.94348 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 318 -a 1 h -t 3.94348 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 318 -a 1 - -t 3.94704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 294 -a 1 h -t 3.94704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 294 -a 1 r -t 3.94704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 255 -a 1 + -t 3.94704 -s 3 -d 2 -p ack -e 40 -c 1 -i 319 -a 1 - -t 3.94704 -s 3 -d 2 -p ack -e 40 -c 1 -i 319 -a 1 h -t 3.94704 -s 3 -d 2 -p ack -e 40 -c 1 -i 319 -a 1 r -t 3.94744 -s 3 -d 2 -p ack -e 40 -c 1 -i 285 -a 1 + -t 3.94744 -s 2 -d 0 -p ack -e 40 -c 1 -i 285 -a 1 - -t 3.94744 -s 2 -d 0 -p ack -e 40 -c 1 -i 285 -a 1 h -t 3.94744 -s 2 -d 0 -p ack -e 40 -c 1 -i 285 -a 1 r -t 3.94848 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 317 -a 1 + -t 3.94848 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 317 -a 1 r -t 3.94948 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 318 -a 1 + -t 3.94948 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 318 -a 1 d -t 3.94948 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 318 -a 1 r -t 3.95248 -s 2 -d 0 -p ack -e 40 -c 1 -i 285 -a 1 + -t 3.95248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 320 -a 1 - -t 3.95248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 320 -a 1 h -t 3.95248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 320 -a 1 + -t 3.95248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 321 -a 1 - -t 3.95348 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 321 -a 1 h -t 3.95348 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 321 -a 1 - -t 3.95704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 297 -a 1 h -t 3.95704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 297 -a 1 r -t 3.95704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 258 -a 1 + -t 3.95704 -s 3 -d 2 -p ack -e 40 -c 1 -i 322 -a 1 - -t 3.95704 -s 3 -d 2 -p ack -e 40 -c 1 -i 322 -a 1 h -t 3.95704 -s 3 -d 2 -p ack -e 40 -c 1 -i 322 -a 1 r -t 3.95744 -s 3 -d 2 -p ack -e 40 -c 1 -i 290 -a 1 + -t 3.95744 -s 2 -d 0 -p ack -e 40 -c 1 -i 290 -a 1 - -t 3.95744 -s 2 -d 0 -p ack -e 40 -c 1 -i 290 -a 1 h -t 3.95744 -s 2 -d 0 -p ack -e 40 -c 1 -i 290 -a 1 r -t 3.95848 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 320 -a 1 + -t 3.95848 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 320 -a 1 r -t 3.95948 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 321 -a 1 + -t 3.95948 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 321 -a 1 d -t 3.95948 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 321 -a 1 r -t 3.96248 -s 2 -d 0 -p ack -e 40 -c 1 -i 290 -a 1 - -t 3.96704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 300 -a 1 h -t 3.96704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 300 -a 1 r -t 3.96704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 261 -a 1 + -t 3.96704 -s 3 -d 2 -p ack -e 40 -c 1 -i 323 -a 1 - -t 3.96704 -s 3 -d 2 -p ack -e 40 -c 1 -i 323 -a 1 h -t 3.96704 -s 3 -d 2 -p ack -e 40 -c 1 -i 323 -a 1 r -t 3.96744 -s 3 -d 2 -p ack -e 40 -c 1 -i 293 -a 1 + -t 3.96744 -s 2 -d 0 -p ack -e 40 -c 1 -i 293 -a 1 - -t 3.96744 -s 2 -d 0 -p ack -e 40 -c 1 -i 293 -a 1 h -t 3.96744 -s 2 -d 0 -p ack -e 40 -c 1 -i 293 -a 1 r -t 3.97248 -s 2 -d 0 -p ack -e 40 -c 1 -i 293 -a 1 - -t 3.97704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 305 -a 1 h -t 3.97704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 305 -a 1 r -t 3.97704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 264 -a 1 + -t 3.97704 -s 3 -d 2 -p ack -e 40 -c 1 -i 324 -a 1 - -t 3.97704 -s 3 -d 2 -p ack -e 40 -c 1 -i 324 -a 1 h -t 3.97704 -s 3 -d 2 -p ack -e 40 -c 1 -i 324 -a 1 r -t 3.97744 -s 3 -d 2 -p ack -e 40 -c 1 -i 296 -a 1 + -t 3.97744 -s 2 -d 0 -p ack -e 40 -c 1 -i 296 -a 1 - -t 3.97744 -s 2 -d 0 -p ack -e 40 -c 1 -i 296 -a 1 h -t 3.97744 -s 2 -d 0 -p ack -e 40 -c 1 -i 296 -a 1 r -t 3.98248 -s 2 -d 0 -p ack -e 40 -c 1 -i 296 -a 1 + -t 3.98248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 325 -a 1 - -t 3.98248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 325 -a 1 h -t 3.98248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 325 -a 1 - -t 3.98704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 308 -a 1 h -t 3.98704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 308 -a 1 r -t 3.98704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 267 -a 1 + -t 3.98704 -s 3 -d 2 -p ack -e 40 -c 1 -i 326 -a 1 - -t 3.98704 -s 3 -d 2 -p ack -e 40 -c 1 -i 326 -a 1 h -t 3.98704 -s 3 -d 2 -p ack -e 40 -c 1 -i 326 -a 1 r -t 3.98744 -s 3 -d 2 -p ack -e 40 -c 1 -i 299 -a 1 + -t 3.98744 -s 2 -d 0 -p ack -e 40 -c 1 -i 299 -a 1 - -t 3.98744 -s 2 -d 0 -p ack -e 40 -c 1 -i 299 -a 1 h -t 3.98744 -s 2 -d 0 -p ack -e 40 -c 1 -i 299 -a 1 r -t 3.98848 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 325 -a 1 + -t 3.98848 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 325 -a 1 r -t 3.99248 -s 2 -d 0 -p ack -e 40 -c 1 -i 299 -a 1 r -t 3.9954 -s 4 -d 3 -p rtProtoDV -e 5 -c 0 -i 302 -a 0 r -t 3.9954 -s 4 -d 2 -p rtProtoDV -e 5 -c 0 -i 303 -a 0 - -t 3.99704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 311 -a 1 h -t 3.99704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 311 -a 1 r -t 3.99704 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 269 -a 2 + -t 3.99704 -s 3 -d 2 -p ack -e 40 -c 2 -i 327 -a 2 - -t 3.99704 -s 3 -d 2 -p ack -e 40 -c 2 -i 327 -a 2 h -t 3.99704 -s 3 -d 2 -p ack -e 40 -c 2 -i 327 -a 2 r -t 3.99744 -s 3 -d 2 -p ack -e 40 -c 1 -i 304 -a 1 + -t 3.99744 -s 2 -d 0 -p ack -e 40 -c 1 -i 304 -a 1 - -t 3.99744 -s 2 -d 0 -p ack -e 40 -c 1 -i 304 -a 1 h -t 3.99744 -s 2 -d 0 -p ack -e 40 -c 1 -i 304 -a 1 r -t 4.00248 -s 2 -d 0 -p ack -e 40 -c 1 -i 304 -a 1 - -t 4.00704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 314 -a 1 h -t 4.00704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 314 -a 1 r -t 4.00704 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 273 -a 2 + -t 4.00704 -s 3 -d 2 -p ack -e 40 -c 2 -i 328 -a 2 - -t 4.00704 -s 3 -d 2 -p ack -e 40 -c 2 -i 328 -a 2 h -t 4.00704 -s 3 -d 2 -p ack -e 40 -c 2 -i 328 -a 2 r -t 4.00744 -s 3 -d 2 -p ack -e 40 -c 1 -i 307 -a 1 + -t 4.00744 -s 2 -d 0 -p ack -e 40 -c 1 -i 307 -a 1 - -t 4.00744 -s 2 -d 0 -p ack -e 40 -c 1 -i 307 -a 1 h -t 4.00744 -s 2 -d 0 -p ack -e 40 -c 1 -i 307 -a 1 r -t 4.01248 -s 2 -d 0 -p ack -e 40 -c 1 -i 307 -a 1 - -t 4.01704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 317 -a 1 h -t 4.01704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 317 -a 1 r -t 4.01704 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 277 -a 2 + -t 4.01704 -s 3 -d 2 -p ack -e 40 -c 2 -i 329 -a 2 - -t 4.01704 -s 3 -d 2 -p ack -e 40 -c 2 -i 329 -a 2 h -t 4.01704 -s 3 -d 2 -p ack -e 40 -c 2 -i 329 -a 2 r -t 4.01744 -s 3 -d 2 -p ack -e 40 -c 1 -i 310 -a 1 + -t 4.01744 -s 2 -d 0 -p ack -e 40 -c 1 -i 310 -a 1 - -t 4.01744 -s 2 -d 0 -p ack -e 40 -c 1 -i 310 -a 1 h -t 4.01744 -s 2 -d 0 -p ack -e 40 -c 1 -i 310 -a 1 r -t 4.02248 -s 2 -d 0 -p ack -e 40 -c 1 -i 310 -a 1 - -t 4.02704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 320 -a 1 h -t 4.02704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 320 -a 1 r -t 4.02704 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 282 -a 2 + -t 4.02704 -s 3 -d 2 -p ack -e 40 -c 2 -i 330 -a 2 - -t 4.02704 -s 3 -d 2 -p ack -e 40 -c 2 -i 330 -a 2 h -t 4.02704 -s 3 -d 2 -p ack -e 40 -c 2 -i 330 -a 2 r -t 4.02744 -s 3 -d 2 -p ack -e 40 -c 1 -i 313 -a 1 + -t 4.02744 -s 2 -d 0 -p ack -e 40 -c 1 -i 313 -a 1 - -t 4.02744 -s 2 -d 0 -p ack -e 40 -c 1 -i 313 -a 1 h -t 4.02744 -s 2 -d 0 -p ack -e 40 -c 1 -i 313 -a 1 r -t 4.03248 -s 2 -d 0 -p ack -e 40 -c 1 -i 313 -a 1 - -t 4.03704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 325 -a 1 h -t 4.03704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 325 -a 1 r -t 4.03704 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 286 -a 2 + -t 4.03704 -s 3 -d 2 -p ack -e 40 -c 2 -i 331 -a 2 - -t 4.03704 -s 3 -d 2 -p ack -e 40 -c 2 -i 331 -a 2 h -t 4.03704 -s 3 -d 2 -p ack -e 40 -c 2 -i 331 -a 2 r -t 4.03744 -s 3 -d 2 -p ack -e 40 -c 1 -i 316 -a 1 + -t 4.03744 -s 2 -d 0 -p ack -e 40 -c 1 -i 316 -a 1 - -t 4.03744 -s 2 -d 0 -p ack -e 40 -c 1 -i 316 -a 1 h -t 4.03744 -s 2 -d 0 -p ack -e 40 -c 1 -i 316 -a 1 r -t 4.04248 -s 2 -d 0 -p ack -e 40 -c 1 -i 316 -a 1 r -t 4.04704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 291 -a 1 + -t 4.04704 -s 3 -d 2 -p ack -e 40 -c 1 -i 332 -a 1 - -t 4.04704 -s 3 -d 2 -p ack -e 40 -c 1 -i 332 -a 1 h -t 4.04704 -s 3 -d 2 -p ack -e 40 -c 1 -i 332 -a 1 r -t 4.04744 -s 3 -d 2 -p ack -e 40 -c 1 -i 319 -a 1 + -t 4.04744 -s 2 -d 0 -p ack -e 40 -c 1 -i 319 -a 1 - -t 4.04744 -s 2 -d 0 -p ack -e 40 -c 1 -i 319 -a 1 h -t 4.04744 -s 2 -d 0 -p ack -e 40 -c 1 -i 319 -a 1 r -t 4.05248 -s 2 -d 0 -p ack -e 40 -c 1 -i 319 -a 1 r -t 4.05704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 294 -a 1 + -t 4.05704 -s 3 -d 2 -p ack -e 40 -c 1 -i 333 -a 1 - -t 4.05704 -s 3 -d 2 -p ack -e 40 -c 1 -i 333 -a 1 h -t 4.05704 -s 3 -d 2 -p ack -e 40 -c 1 -i 333 -a 1 r -t 4.05744 -s 3 -d 2 -p ack -e 40 -c 1 -i 322 -a 1 + -t 4.05744 -s 2 -d 0 -p ack -e 40 -c 1 -i 322 -a 1 - -t 4.05744 -s 2 -d 0 -p ack -e 40 -c 1 -i 322 -a 1 h -t 4.05744 -s 2 -d 0 -p ack -e 40 -c 1 -i 322 -a 1 r -t 4.06248 -s 2 -d 0 -p ack -e 40 -c 1 -i 322 -a 1 r -t 4.06704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 297 -a 1 + -t 4.06704 -s 3 -d 2 -p ack -e 40 -c 1 -i 334 -a 1 - -t 4.06704 -s 3 -d 2 -p ack -e 40 -c 1 -i 334 -a 1 h -t 4.06704 -s 3 -d 2 -p ack -e 40 -c 1 -i 334 -a 1 r -t 4.06744 -s 3 -d 2 -p ack -e 40 -c 1 -i 323 -a 1 + -t 4.06744 -s 2 -d 0 -p ack -e 40 -c 1 -i 323 -a 1 - -t 4.06744 -s 2 -d 0 -p ack -e 40 -c 1 -i 323 -a 1 h -t 4.06744 -s 2 -d 0 -p ack -e 40 -c 1 -i 323 -a 1 r -t 4.07248 -s 2 -d 0 -p ack -e 40 -c 1 -i 323 -a 1 r -t 4.07704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 300 -a 1 + -t 4.07704 -s 3 -d 2 -p ack -e 40 -c 1 -i 335 -a 1 - -t 4.07704 -s 3 -d 2 -p ack -e 40 -c 1 -i 335 -a 1 h -t 4.07704 -s 3 -d 2 -p ack -e 40 -c 1 -i 335 -a 1 r -t 4.07744 -s 3 -d 2 -p ack -e 40 -c 1 -i 324 -a 1 + -t 4.07744 -s 2 -d 0 -p ack -e 40 -c 1 -i 324 -a 1 - -t 4.07744 -s 2 -d 0 -p ack -e 40 -c 1 -i 324 -a 1 h -t 4.07744 -s 2 -d 0 -p ack -e 40 -c 1 -i 324 -a 1 r -t 4.08248 -s 2 -d 0 -p ack -e 40 -c 1 -i 324 -a 1 r -t 4.08704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 305 -a 1 + -t 4.08704 -s 3 -d 2 -p ack -e 40 -c 1 -i 336 -a 1 - -t 4.08704 -s 3 -d 2 -p ack -e 40 -c 1 -i 336 -a 1 h -t 4.08704 -s 3 -d 2 -p ack -e 40 -c 1 -i 336 -a 1 r -t 4.08744 -s 3 -d 2 -p ack -e 40 -c 1 -i 326 -a 1 + -t 4.08744 -s 2 -d 0 -p ack -e 40 -c 1 -i 326 -a 1 - -t 4.08744 -s 2 -d 0 -p ack -e 40 -c 1 -i 326 -a 1 h -t 4.08744 -s 2 -d 0 -p ack -e 40 -c 1 -i 326 -a 1 r -t 4.09248 -s 2 -d 0 -p ack -e 40 -c 1 -i 326 -a 1 r -t 4.09704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 308 -a 1 + -t 4.09704 -s 3 -d 2 -p ack -e 40 -c 1 -i 337 -a 1 - -t 4.09704 -s 3 -d 2 -p ack -e 40 -c 1 -i 337 -a 1 h -t 4.09704 -s 3 -d 2 -p ack -e 40 -c 1 -i 337 -a 1 r -t 4.09744 -s 3 -d 2 -p ack -e 40 -c 2 -i 327 -a 2 + -t 4.09744 -s 2 -d 1 -p ack -e 40 -c 2 -i 327 -a 2 - -t 4.09744 -s 2 -d 1 -p ack -e 40 -c 2 -i 327 -a 2 h -t 4.09744 -s 2 -d 1 -p ack -e 40 -c 2 -i 327 -a 2 r -t 4.10248 -s 2 -d 1 -p ack -e 40 -c 2 -i 327 -a 2 + -t 4.10248 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 338 -a 2 - -t 4.10248 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 338 -a 2 h -t 4.10248 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 338 -a 2 r -t 4.10704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 311 -a 1 + -t 4.10704 -s 3 -d 2 -p ack -e 40 -c 1 -i 339 -a 1 - -t 4.10704 -s 3 -d 2 -p ack -e 40 -c 1 -i 339 -a 1 h -t 4.10704 -s 3 -d 2 -p ack -e 40 -c 1 -i 339 -a 1 r -t 4.10744 -s 3 -d 2 -p ack -e 40 -c 2 -i 328 -a 2 + -t 4.10744 -s 2 -d 1 -p ack -e 40 -c 2 -i 328 -a 2 - -t 4.10744 -s 2 -d 1 -p ack -e 40 -c 2 -i 328 -a 2 h -t 4.10744 -s 2 -d 1 -p ack -e 40 -c 2 -i 328 -a 2 r -t 4.10848 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 338 -a 2 + -t 4.10848 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 338 -a 2 - -t 4.10848 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 338 -a 2 h -t 4.10848 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 338 -a 2 r -t 4.11248 -s 2 -d 1 -p ack -e 40 -c 2 -i 328 -a 2 + -t 4.11248 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 340 -a 2 - -t 4.11248 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 340 -a 2 h -t 4.11248 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 340 -a 2 r -t 4.11704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 314 -a 1 + -t 4.11704 -s 3 -d 2 -p ack -e 40 -c 1 -i 341 -a 1 - -t 4.11704 -s 3 -d 2 -p ack -e 40 -c 1 -i 341 -a 1 h -t 4.11704 -s 3 -d 2 -p ack -e 40 -c 1 -i 341 -a 1 r -t 4.11744 -s 3 -d 2 -p ack -e 40 -c 2 -i 329 -a 2 + -t 4.11744 -s 2 -d 1 -p ack -e 40 -c 2 -i 329 -a 2 - -t 4.11744 -s 2 -d 1 -p ack -e 40 -c 2 -i 329 -a 2 h -t 4.11744 -s 2 -d 1 -p ack -e 40 -c 2 -i 329 -a 2 r -t 4.11848 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 340 -a 2 + -t 4.11848 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 340 -a 2 - -t 4.11848 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 340 -a 2 h -t 4.11848 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 340 -a 2 r -t 4.12248 -s 2 -d 1 -p ack -e 40 -c 2 -i 329 -a 2 + -t 4.12248 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 342 -a 2 - -t 4.12248 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 342 -a 2 h -t 4.12248 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 342 -a 2 r -t 4.12704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 317 -a 1 + -t 4.12704 -s 3 -d 2 -p ack -e 40 -c 1 -i 343 -a 1 - -t 4.12704 -s 3 -d 2 -p ack -e 40 -c 1 -i 343 -a 1 h -t 4.12704 -s 3 -d 2 -p ack -e 40 -c 1 -i 343 -a 1 r -t 4.12744 -s 3 -d 2 -p ack -e 40 -c 2 -i 330 -a 2 + -t 4.12744 -s 2 -d 1 -p ack -e 40 -c 2 -i 330 -a 2 - -t 4.12744 -s 2 -d 1 -p ack -e 40 -c 2 -i 330 -a 2 h -t 4.12744 -s 2 -d 1 -p ack -e 40 -c 2 -i 330 -a 2 r -t 4.12848 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 342 -a 2 + -t 4.12848 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 342 -a 2 - -t 4.12848 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 342 -a 2 h -t 4.12848 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 342 -a 2 r -t 4.13248 -s 2 -d 1 -p ack -e 40 -c 2 -i 330 -a 2 + -t 4.13248 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 344 -a 2 - -t 4.13248 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 344 -a 2 h -t 4.13248 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 344 -a 2 r -t 4.13704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 320 -a 1 + -t 4.13704 -s 3 -d 2 -p ack -e 40 -c 1 -i 345 -a 1 - -t 4.13704 -s 3 -d 2 -p ack -e 40 -c 1 -i 345 -a 1 h -t 4.13704 -s 3 -d 2 -p ack -e 40 -c 1 -i 345 -a 1 r -t 4.13744 -s 3 -d 2 -p ack -e 40 -c 2 -i 331 -a 2 + -t 4.13744 -s 2 -d 1 -p ack -e 40 -c 2 -i 331 -a 2 - -t 4.13744 -s 2 -d 1 -p ack -e 40 -c 2 -i 331 -a 2 h -t 4.13744 -s 2 -d 1 -p ack -e 40 -c 2 -i 331 -a 2 r -t 4.13848 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 344 -a 2 + -t 4.13848 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 344 -a 2 - -t 4.13848 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 344 -a 2 h -t 4.13848 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 344 -a 2 r -t 4.14248 -s 2 -d 1 -p ack -e 40 -c 2 -i 331 -a 2 + -t 4.14248 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 346 -a 2 - -t 4.14248 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 346 -a 2 h -t 4.14248 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 346 -a 2 r -t 4.14704 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 325 -a 1 + -t 4.14704 -s 3 -d 2 -p ack -e 40 -c 1 -i 347 -a 1 - -t 4.14704 -s 3 -d 2 -p ack -e 40 -c 1 -i 347 -a 1 h -t 4.14704 -s 3 -d 2 -p ack -e 40 -c 1 -i 347 -a 1 r -t 4.14744 -s 3 -d 2 -p ack -e 40 -c 1 -i 332 -a 1 + -t 4.14744 -s 2 -d 0 -p ack -e 40 -c 1 -i 332 -a 1 - -t 4.14744 -s 2 -d 0 -p ack -e 40 -c 1 -i 332 -a 1 h -t 4.14744 -s 2 -d 0 -p ack -e 40 -c 1 -i 332 -a 1 r -t 4.14848 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 346 -a 2 + -t 4.14848 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 346 -a 2 - -t 4.14848 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 346 -a 2 h -t 4.14848 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 346 -a 2 + -t 4.15193 -s 3 -d 4 -p rtProtoDV -e 5 -c 0 -i 348 -a 0 - -t 4.15193 -s 3 -d 4 -p rtProtoDV -e 5 -c 0 -i 348 -a 0 h -t 4.15193 -s 3 -d 4 -p rtProtoDV -e 5 -c 0 -i 348 -a 0 + -t 4.15193 -s 3 -d 2 -p rtProtoDV -e 5 -c 0 -i 349 -a 0 - -t 4.15193 -s 3 -d 2 -p rtProtoDV -e 5 -c 0 -i 349 -a 0 h -t 4.15193 -s 3 -d 2 -p rtProtoDV -e 5 -c 0 -i 349 -a 0 r -t 4.15248 -s 2 -d 0 -p ack -e 40 -c 1 -i 332 -a 1 r -t 4.15744 -s 3 -d 2 -p ack -e 40 -c 1 -i 333 -a 1 + -t 4.15744 -s 2 -d 0 -p ack -e 40 -c 1 -i 333 -a 1 - -t 4.15744 -s 2 -d 0 -p ack -e 40 -c 1 -i 333 -a 1 h -t 4.15744 -s 2 -d 0 -p ack -e 40 -c 1 -i 333 -a 1 r -t 4.16248 -s 2 -d 0 -p ack -e 40 -c 1 -i 333 -a 1 r -t 4.16744 -s 3 -d 2 -p ack -e 40 -c 1 -i 334 -a 1 + -t 4.16744 -s 2 -d 0 -p ack -e 40 -c 1 -i 334 -a 1 - -t 4.16744 -s 2 -d 0 -p ack -e 40 -c 1 -i 334 -a 1 h -t 4.16744 -s 2 -d 0 -p ack -e 40 -c 1 -i 334 -a 1 r -t 4.17248 -s 2 -d 0 -p ack -e 40 -c 1 -i 334 -a 1 r -t 4.17744 -s 3 -d 2 -p ack -e 40 -c 1 -i 335 -a 1 + -t 4.17744 -s 2 -d 0 -p ack -e 40 -c 1 -i 335 -a 1 - -t 4.17744 -s 2 -d 0 -p ack -e 40 -c 1 -i 335 -a 1 h -t 4.17744 -s 2 -d 0 -p ack -e 40 -c 1 -i 335 -a 1 r -t 4.18248 -s 2 -d 0 -p ack -e 40 -c 1 -i 335 -a 1 r -t 4.18744 -s 3 -d 2 -p ack -e 40 -c 1 -i 336 -a 1 + -t 4.18744 -s 2 -d 0 -p ack -e 40 -c 1 -i 336 -a 1 - -t 4.18744 -s 2 -d 0 -p ack -e 40 -c 1 -i 336 -a 1 h -t 4.18744 -s 2 -d 0 -p ack -e 40 -c 1 -i 336 -a 1 r -t 4.19248 -s 2 -d 0 -p ack -e 40 -c 1 -i 336 -a 1 r -t 4.19744 -s 3 -d 2 -p ack -e 40 -c 1 -i 337 -a 1 + -t 4.19744 -s 2 -d 0 -p ack -e 40 -c 1 -i 337 -a 1 - -t 4.19744 -s 2 -d 0 -p ack -e 40 -c 1 -i 337 -a 1 h -t 4.19744 -s 2 -d 0 -p ack -e 40 -c 1 -i 337 -a 1 r -t 4.20248 -s 2 -d 0 -p ack -e 40 -c 1 -i 337 -a 1 r -t 4.20744 -s 3 -d 2 -p ack -e 40 -c 1 -i 339 -a 1 + -t 4.20744 -s 2 -d 0 -p ack -e 40 -c 1 -i 339 -a 1 - -t 4.20744 -s 2 -d 0 -p ack -e 40 -c 1 -i 339 -a 1 h -t 4.20744 -s 2 -d 0 -p ack -e 40 -c 1 -i 339 -a 1 r -t 4.21248 -s 2 -d 0 -p ack -e 40 -c 1 -i 339 -a 1 r -t 4.21744 -s 3 -d 2 -p ack -e 40 -c 1 -i 341 -a 1 + -t 4.21744 -s 2 -d 0 -p ack -e 40 -c 1 -i 341 -a 1 - -t 4.21744 -s 2 -d 0 -p ack -e 40 -c 1 -i 341 -a 1 h -t 4.21744 -s 2 -d 0 -p ack -e 40 -c 1 -i 341 -a 1 r -t 4.21848 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 338 -a 2 + -t 4.21848 -s 3 -d 2 -p ack -e 40 -c 2 -i 350 -a 2 - -t 4.21848 -s 3 -d 2 -p ack -e 40 -c 2 -i 350 -a 2 h -t 4.21848 -s 3 -d 2 -p ack -e 40 -c 2 -i 350 -a 2 r -t 4.22248 -s 2 -d 0 -p ack -e 40 -c 1 -i 341 -a 1 r -t 4.22744 -s 3 -d 2 -p ack -e 40 -c 1 -i 343 -a 1 + -t 4.22744 -s 2 -d 0 -p ack -e 40 -c 1 -i 343 -a 1 - -t 4.22744 -s 2 -d 0 -p ack -e 40 -c 1 -i 343 -a 1 h -t 4.22744 -s 2 -d 0 -p ack -e 40 -c 1 -i 343 -a 1 r -t 4.22848 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 340 -a 2 + -t 4.22848 -s 3 -d 2 -p ack -e 40 -c 2 -i 351 -a 2 - -t 4.22848 -s 3 -d 2 -p ack -e 40 -c 2 -i 351 -a 2 h -t 4.22848 -s 3 -d 2 -p ack -e 40 -c 2 -i 351 -a 2 r -t 4.23248 -s 2 -d 0 -p ack -e 40 -c 1 -i 343 -a 1 r -t 4.23744 -s 3 -d 2 -p ack -e 40 -c 1 -i 345 -a 1 + -t 4.23744 -s 2 -d 0 -p ack -e 40 -c 1 -i 345 -a 1 - -t 4.23744 -s 2 -d 0 -p ack -e 40 -c 1 -i 345 -a 1 h -t 4.23744 -s 2 -d 0 -p ack -e 40 -c 1 -i 345 -a 1 r -t 4.23848 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 342 -a 2 + -t 4.23848 -s 3 -d 2 -p ack -e 40 -c 2 -i 352 -a 2 - -t 4.23848 -s 3 -d 2 -p ack -e 40 -c 2 -i 352 -a 2 h -t 4.23848 -s 3 -d 2 -p ack -e 40 -c 2 -i 352 -a 2 r -t 4.24248 -s 2 -d 0 -p ack -e 40 -c 1 -i 345 -a 1 r -t 4.24744 -s 3 -d 2 -p ack -e 40 -c 1 -i 347 -a 1 + -t 4.24744 -s 2 -d 0 -p ack -e 40 -c 1 -i 347 -a 1 - -t 4.24744 -s 2 -d 0 -p ack -e 40 -c 1 -i 347 -a 1 h -t 4.24744 -s 2 -d 0 -p ack -e 40 -c 1 -i 347 -a 1 r -t 4.24848 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 344 -a 2 + -t 4.24848 -s 3 -d 2 -p ack -e 40 -c 2 -i 353 -a 2 - -t 4.24848 -s 3 -d 2 -p ack -e 40 -c 2 -i 353 -a 2 h -t 4.24848 -s 3 -d 2 -p ack -e 40 -c 2 -i 353 -a 2 r -t 4.25198 -s 3 -d 2 -p rtProtoDV -e 5 -c 0 -i 349 -a 0 r -t 4.25198 -s 3 -d 4 -p rtProtoDV -e 5 -c 0 -i 348 -a 0 r -t 4.25248 -s 2 -d 0 -p ack -e 40 -c 1 -i 347 -a 1 + -t 4.25248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 354 -a 1 - -t 4.25248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 354 -a 1 h -t 4.25248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 354 -a 1 + -t 4.25248 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 355 -a 1 - -t 4.25348 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 355 -a 1 h -t 4.25348 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 355 -a 1 r -t 4.25848 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 354 -a 1 + -t 4.25848 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 354 -a 1 - -t 4.25848 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 354 -a 1 h -t 4.25848 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 354 -a 1 r -t 4.25848 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 346 -a 2 + -t 4.25848 -s 3 -d 2 -p ack -e 40 -c 2 -i 356 -a 2 - -t 4.25848 -s 3 -d 2 -p ack -e 40 -c 2 -i 356 -a 2 h -t 4.25848 -s 3 -d 2 -p ack -e 40 -c 2 -i 356 -a 2 r -t 4.25948 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 355 -a 1 + -t 4.25948 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 355 -a 1 - -t 4.26848 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 355 -a 1 h -t 4.26848 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 355 -a 1 r -t 4.31888 -s 3 -d 2 -p ack -e 40 -c 2 -i 350 -a 2 + -t 4.31888 -s 2 -d 1 -p ack -e 40 -c 2 -i 350 -a 2 - -t 4.31888 -s 2 -d 1 -p ack -e 40 -c 2 -i 350 -a 2 h -t 4.31888 -s 2 -d 1 -p ack -e 40 -c 2 -i 350 -a 2 r -t 4.32392 -s 2 -d 1 -p ack -e 40 -c 2 -i 350 -a 2 r -t 4.32888 -s 3 -d 2 -p ack -e 40 -c 2 -i 351 -a 2 + -t 4.32888 -s 2 -d 1 -p ack -e 40 -c 2 -i 351 -a 2 - -t 4.32888 -s 2 -d 1 -p ack -e 40 -c 2 -i 351 -a 2 h -t 4.32888 -s 2 -d 1 -p ack -e 40 -c 2 -i 351 -a 2 r -t 4.33392 -s 2 -d 1 -p ack -e 40 -c 2 -i 351 -a 2 r -t 4.33888 -s 3 -d 2 -p ack -e 40 -c 2 -i 352 -a 2 + -t 4.33888 -s 2 -d 1 -p ack -e 40 -c 2 -i 352 -a 2 - -t 4.33888 -s 2 -d 1 -p ack -e 40 -c 2 -i 352 -a 2 h -t 4.33888 -s 2 -d 1 -p ack -e 40 -c 2 -i 352 -a 2 r -t 4.34392 -s 2 -d 1 -p ack -e 40 -c 2 -i 352 -a 2 + -t 4.34392 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 357 -a 2 - -t 4.34392 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 357 -a 2 h -t 4.34392 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 357 -a 2 r -t 4.34888 -s 3 -d 2 -p ack -e 40 -c 2 -i 353 -a 2 + -t 4.34888 -s 2 -d 1 -p ack -e 40 -c 2 -i 353 -a 2 - -t 4.34888 -s 2 -d 1 -p ack -e 40 -c 2 -i 353 -a 2 h -t 4.34888 -s 2 -d 1 -p ack -e 40 -c 2 -i 353 -a 2 r -t 4.34992 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 357 -a 2 + -t 4.34992 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 357 -a 2 - -t 4.34992 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 357 -a 2 h -t 4.34992 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 357 -a 2 r -t 4.35392 -s 2 -d 1 -p ack -e 40 -c 2 -i 353 -a 2 r -t 4.35888 -s 3 -d 2 -p ack -e 40 -c 2 -i 356 -a 2 + -t 4.35888 -s 2 -d 1 -p ack -e 40 -c 2 -i 356 -a 2 - -t 4.35888 -s 2 -d 1 -p ack -e 40 -c 2 -i 356 -a 2 h -t 4.35888 -s 2 -d 1 -p ack -e 40 -c 2 -i 356 -a 2 r -t 4.36392 -s 2 -d 1 -p ack -e 40 -c 2 -i 356 -a 2 r -t 4.36848 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 354 -a 1 + -t 4.36848 -s 3 -d 2 -p ack -e 40 -c 1 -i 358 -a 1 - -t 4.36848 -s 3 -d 2 -p ack -e 40 -c 1 -i 358 -a 1 h -t 4.36848 -s 3 -d 2 -p ack -e 40 -c 1 -i 358 -a 1 + -t 4.37306 -s 1 -d 2 -p rtProtoDV -e 5 -c 0 -i 359 -a 0 - -t 4.37306 -s 1 -d 2 -p rtProtoDV -e 5 -c 0 -i 359 -a 0 h -t 4.37306 -s 1 -d 2 -p rtProtoDV -e 5 -c 0 -i 359 -a 0 r -t 4.37807 -s 1 -d 2 -p rtProtoDV -e 5 -c 0 -i 359 -a 0 r -t 4.37848 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 355 -a 1 + -t 4.37848 -s 3 -d 2 -p ack -e 40 -c 1 -i 360 -a 1 - -t 4.37848 -s 3 -d 2 -p ack -e 40 -c 1 -i 360 -a 1 h -t 4.37848 -s 3 -d 2 -p ack -e 40 -c 1 -i 360 -a 1 + -t 4.43326 -s 2 -d 3 -p rtProtoDV -e 5 -c 0 -i 361 -a 0 - -t 4.43326 -s 2 -d 3 -p rtProtoDV -e 5 -c 0 -i 361 -a 0 h -t 4.43326 -s 2 -d 3 -p rtProtoDV -e 5 -c 0 -i 361 -a 0 + -t 4.43326 -s 2 -d 1 -p rtProtoDV -e 5 -c 0 -i 362 -a 0 - -t 4.43326 -s 2 -d 1 -p rtProtoDV -e 5 -c 0 -i 362 -a 0 h -t 4.43326 -s 2 -d 1 -p rtProtoDV -e 5 -c 0 -i 362 -a 0 + -t 4.43326 -s 2 -d 4 -p rtProtoDV -e 5 -c 0 -i 363 -a 0 - -t 4.43326 -s 2 -d 4 -p rtProtoDV -e 5 -c 0 -i 363 -a 0 h -t 4.43326 -s 2 -d 4 -p rtProtoDV -e 5 -c 0 -i 363 -a 0 + -t 4.43326 -s 2 -d 0 -p rtProtoDV -e 5 -c 0 -i 364 -a 0 - -t 4.43326 -s 2 -d 0 -p rtProtoDV -e 5 -c 0 -i 364 -a 0 h -t 4.43326 -s 2 -d 0 -p rtProtoDV -e 5 -c 0 -i 364 -a 0 r -t 4.43826 -s 2 -d 1 -p rtProtoDV -e 5 -c 0 -i 362 -a 0 r -t 4.43826 -s 2 -d 0 -p rtProtoDV -e 5 -c 0 -i 364 -a 0 r -t 4.45992 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 357 -a 2 + -t 4.45992 -s 3 -d 2 -p ack -e 40 -c 2 -i 365 -a 2 - -t 4.45992 -s 3 -d 2 -p ack -e 40 -c 2 -i 365 -a 2 h -t 4.45992 -s 3 -d 2 -p ack -e 40 -c 2 -i 365 -a 2 r -t 4.46888 -s 3 -d 2 -p ack -e 40 -c 1 -i 358 -a 1 + -t 4.46888 -s 2 -d 0 -p ack -e 40 -c 1 -i 358 -a 1 - -t 4.46888 -s 2 -d 0 -p ack -e 40 -c 1 -i 358 -a 1 h -t 4.46888 -s 2 -d 0 -p ack -e 40 -c 1 -i 358 -a 1 r -t 4.47392 -s 2 -d 0 -p ack -e 40 -c 1 -i 358 -a 1 + -t 4.47392 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 366 -a 1 - -t 4.47392 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 366 -a 1 h -t 4.47392 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 366 -a 1 + -t 4.47392 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 367 -a 1 + -t 4.47392 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 368 -a 1 - -t 4.47492 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 367 -a 1 h -t 4.47492 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 367 -a 1 - -t 4.47592 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 368 -a 1 h -t 4.47592 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 368 -a 1 r -t 4.47888 -s 3 -d 2 -p ack -e 40 -c 1 -i 360 -a 1 + -t 4.47888 -s 2 -d 0 -p ack -e 40 -c 1 -i 360 -a 1 - -t 4.47888 -s 2 -d 0 -p ack -e 40 -c 1 -i 360 -a 1 h -t 4.47888 -s 2 -d 0 -p ack -e 40 -c 1 -i 360 -a 1 r -t 4.47992 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 366 -a 1 + -t 4.47992 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 366 -a 1 - -t 4.47992 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 366 -a 1 h -t 4.47992 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 366 -a 1 r -t 4.48092 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 367 -a 1 + -t 4.48092 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 367 -a 1 r -t 4.48192 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 368 -a 1 + -t 4.48192 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 368 -a 1 r -t 4.48392 -s 2 -d 0 -p ack -e 40 -c 1 -i 360 -a 1 - -t 4.48992 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 367 -a 1 h -t 4.48992 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 367 -a 1 - -t 4.49992 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 368 -a 1 h -t 4.49992 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 368 -a 1 r -t 4.53331 -s 2 -d 3 -p rtProtoDV -e 5 -c 0 -i 361 -a 0 r -t 4.53331 -s 2 -d 4 -p rtProtoDV -e 5 -c 0 -i 363 -a 0 r -t 4.56032 -s 3 -d 2 -p ack -e 40 -c 2 -i 365 -a 2 + -t 4.56032 -s 2 -d 1 -p ack -e 40 -c 2 -i 365 -a 2 - -t 4.56032 -s 2 -d 1 -p ack -e 40 -c 2 -i 365 -a 2 h -t 4.56032 -s 2 -d 1 -p ack -e 40 -c 2 -i 365 -a 2 r -t 4.56536 -s 2 -d 1 -p ack -e 40 -c 2 -i 365 -a 2 + -t 4.56536 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 369 -a 2 - -t 4.56536 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 369 -a 2 h -t 4.56536 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 369 -a 2 + -t 4.56536 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 370 -a 2 - -t 4.56636 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 370 -a 2 h -t 4.56636 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 370 -a 2 r -t 4.57136 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 369 -a 2 + -t 4.57136 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 369 -a 2 - -t 4.57136 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 369 -a 2 h -t 4.57136 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 369 -a 2 r -t 4.57236 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 370 -a 2 + -t 4.57236 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 370 -a 2 - -t 4.58136 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 370 -a 2 h -t 4.58136 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 370 -a 2 r -t 4.58992 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 366 -a 1 + -t 4.58992 -s 3 -d 2 -p ack -e 40 -c 1 -i 371 -a 1 - -t 4.58992 -s 3 -d 2 -p ack -e 40 -c 1 -i 371 -a 1 h -t 4.58992 -s 3 -d 2 -p ack -e 40 -c 1 -i 371 -a 1 r -t 4.59992 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 367 -a 1 + -t 4.59992 -s 3 -d 2 -p ack -e 40 -c 1 -i 372 -a 1 - -t 4.59992 -s 3 -d 2 -p ack -e 40 -c 1 -i 372 -a 1 h -t 4.59992 -s 3 -d 2 -p ack -e 40 -c 1 -i 372 -a 1 r -t 4.60992 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 368 -a 1 + -t 4.60992 -s 3 -d 2 -p ack -e 40 -c 1 -i 373 -a 1 - -t 4.60992 -s 3 -d 2 -p ack -e 40 -c 1 -i 373 -a 1 h -t 4.60992 -s 3 -d 2 -p ack -e 40 -c 1 -i 373 -a 1 r -t 4.68136 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 369 -a 2 + -t 4.68136 -s 3 -d 2 -p ack -e 40 -c 2 -i 374 -a 2 - -t 4.68136 -s 3 -d 2 -p ack -e 40 -c 2 -i 374 -a 2 h -t 4.68136 -s 3 -d 2 -p ack -e 40 -c 2 -i 374 -a 2 r -t 4.69032 -s 3 -d 2 -p ack -e 40 -c 1 -i 371 -a 1 + -t 4.69032 -s 2 -d 0 -p ack -e 40 -c 1 -i 371 -a 1 - -t 4.69032 -s 2 -d 0 -p ack -e 40 -c 1 -i 371 -a 1 h -t 4.69032 -s 2 -d 0 -p ack -e 40 -c 1 -i 371 -a 1 r -t 4.69136 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 370 -a 2 + -t 4.69136 -s 3 -d 2 -p ack -e 40 -c 2 -i 375 -a 2 - -t 4.69136 -s 3 -d 2 -p ack -e 40 -c 2 -i 375 -a 2 h -t 4.69136 -s 3 -d 2 -p ack -e 40 -c 2 -i 375 -a 2 r -t 4.69536 -s 2 -d 0 -p ack -e 40 -c 1 -i 371 -a 1 + -t 4.69536 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 376 -a 1 - -t 4.69536 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 376 -a 1 h -t 4.69536 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 376 -a 1 + -t 4.69536 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 377 -a 1 + -t 4.69536 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 378 -a 1 - -t 4.69636 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 377 -a 1 h -t 4.69636 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 377 -a 1 - -t 4.69736 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 378 -a 1 h -t 4.69736 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 378 -a 1 r -t 4.70032 -s 3 -d 2 -p ack -e 40 -c 1 -i 372 -a 1 + -t 4.70032 -s 2 -d 0 -p ack -e 40 -c 1 -i 372 -a 1 - -t 4.70032 -s 2 -d 0 -p ack -e 40 -c 1 -i 372 -a 1 h -t 4.70032 -s 2 -d 0 -p ack -e 40 -c 1 -i 372 -a 1 r -t 4.70136 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 376 -a 1 + -t 4.70136 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 376 -a 1 - -t 4.70136 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 376 -a 1 h -t 4.70136 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 376 -a 1 r -t 4.70236 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 377 -a 1 + -t 4.70236 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 377 -a 1 r -t 4.70336 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 378 -a 1 + -t 4.70336 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 378 -a 1 r -t 4.70536 -s 2 -d 0 -p ack -e 40 -c 1 -i 372 -a 1 r -t 4.71032 -s 3 -d 2 -p ack -e 40 -c 1 -i 373 -a 1 + -t 4.71032 -s 2 -d 0 -p ack -e 40 -c 1 -i 373 -a 1 - -t 4.71032 -s 2 -d 0 -p ack -e 40 -c 1 -i 373 -a 1 h -t 4.71032 -s 2 -d 0 -p ack -e 40 -c 1 -i 373 -a 1 - -t 4.71136 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 377 -a 1 h -t 4.71136 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 377 -a 1 r -t 4.71536 -s 2 -d 0 -p ack -e 40 -c 1 -i 373 -a 1 + -t 4.71536 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 379 -a 1 - -t 4.71536 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 379 -a 1 h -t 4.71536 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 379 -a 1 + -t 4.71536 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 380 -a 1 + -t 4.71536 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 381 -a 1 - -t 4.71636 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 380 -a 1 h -t 4.71636 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 380 -a 1 - -t 4.71736 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 381 -a 1 h -t 4.71736 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 381 -a 1 - -t 4.72136 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 378 -a 1 h -t 4.72136 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 378 -a 1 r -t 4.72136 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 379 -a 1 + -t 4.72136 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 379 -a 1 r -t 4.72236 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 380 -a 1 + -t 4.72236 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 380 -a 1 r -t 4.72336 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 381 -a 1 + -t 4.72336 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 381 -a 1 - -t 4.73136 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 379 -a 1 h -t 4.73136 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 379 -a 1 - -t 4.74136 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 380 -a 1 h -t 4.74136 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 380 -a 1 - -t 4.75136 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 381 -a 1 h -t 4.75136 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 381 -a 1 r -t 4.78176 -s 3 -d 2 -p ack -e 40 -c 2 -i 374 -a 2 + -t 4.78176 -s 2 -d 1 -p ack -e 40 -c 2 -i 374 -a 2 - -t 4.78176 -s 2 -d 1 -p ack -e 40 -c 2 -i 374 -a 2 h -t 4.78176 -s 2 -d 1 -p ack -e 40 -c 2 -i 374 -a 2 r -t 4.7868 -s 2 -d 1 -p ack -e 40 -c 2 -i 374 -a 2 + -t 4.7868 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 382 -a 2 - -t 4.7868 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 382 -a 2 h -t 4.7868 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 382 -a 2 + -t 4.7868 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 383 -a 2 - -t 4.7878 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 383 -a 2 h -t 4.7878 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 383 -a 2 r -t 4.79176 -s 3 -d 2 -p ack -e 40 -c 2 -i 375 -a 2 + -t 4.79176 -s 2 -d 1 -p ack -e 40 -c 2 -i 375 -a 2 - -t 4.79176 -s 2 -d 1 -p ack -e 40 -c 2 -i 375 -a 2 h -t 4.79176 -s 2 -d 1 -p ack -e 40 -c 2 -i 375 -a 2 r -t 4.7928 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 382 -a 2 + -t 4.7928 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 382 -a 2 - -t 4.7928 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 382 -a 2 h -t 4.7928 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 382 -a 2 r -t 4.7938 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 383 -a 2 + -t 4.7938 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 383 -a 2 r -t 4.7968 -s 2 -d 1 -p ack -e 40 -c 2 -i 375 -a 2 + -t 4.7968 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 384 -a 2 - -t 4.7968 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 384 -a 2 h -t 4.7968 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 384 -a 2 - -t 4.8028 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 383 -a 2 h -t 4.8028 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 383 -a 2 r -t 4.8028 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 384 -a 2 + -t 4.8028 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 384 -a 2 r -t 4.81136 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 376 -a 1 + -t 4.81136 -s 3 -d 2 -p ack -e 40 -c 1 -i 385 -a 1 - -t 4.81136 -s 3 -d 2 -p ack -e 40 -c 1 -i 385 -a 1 h -t 4.81136 -s 3 -d 2 -p ack -e 40 -c 1 -i 385 -a 1 - -t 4.8128 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 384 -a 2 h -t 4.8128 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 384 -a 2 r -t 4.82136 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 377 -a 1 + -t 4.82136 -s 3 -d 2 -p ack -e 40 -c 1 -i 386 -a 1 - -t 4.82136 -s 3 -d 2 -p ack -e 40 -c 1 -i 386 -a 1 h -t 4.82136 -s 3 -d 2 -p ack -e 40 -c 1 -i 386 -a 1 r -t 4.83136 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 378 -a 1 + -t 4.83136 -s 3 -d 2 -p ack -e 40 -c 1 -i 387 -a 1 - -t 4.83136 -s 3 -d 2 -p ack -e 40 -c 1 -i 387 -a 1 h -t 4.83136 -s 3 -d 2 -p ack -e 40 -c 1 -i 387 -a 1 r -t 4.84136 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 379 -a 1 + -t 4.84136 -s 3 -d 2 -p ack -e 40 -c 1 -i 388 -a 1 - -t 4.84136 -s 3 -d 2 -p ack -e 40 -c 1 -i 388 -a 1 h -t 4.84136 -s 3 -d 2 -p ack -e 40 -c 1 -i 388 -a 1 r -t 4.85136 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 380 -a 1 + -t 4.85136 -s 3 -d 2 -p ack -e 40 -c 1 -i 389 -a 1 - -t 4.85136 -s 3 -d 2 -p ack -e 40 -c 1 -i 389 -a 1 h -t 4.85136 -s 3 -d 2 -p ack -e 40 -c 1 -i 389 -a 1 r -t 4.86136 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 381 -a 1 + -t 4.86136 -s 3 -d 2 -p ack -e 40 -c 1 -i 390 -a 1 - -t 4.86136 -s 3 -d 2 -p ack -e 40 -c 1 -i 390 -a 1 h -t 4.86136 -s 3 -d 2 -p ack -e 40 -c 1 -i 390 -a 1 r -t 4.9028 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 382 -a 2 + -t 4.9028 -s 3 -d 2 -p ack -e 40 -c 2 -i 391 -a 2 - -t 4.9028 -s 3 -d 2 -p ack -e 40 -c 2 -i 391 -a 2 h -t 4.9028 -s 3 -d 2 -p ack -e 40 -c 2 -i 391 -a 2 r -t 4.91176 -s 3 -d 2 -p ack -e 40 -c 1 -i 385 -a 1 + -t 4.91176 -s 2 -d 0 -p ack -e 40 -c 1 -i 385 -a 1 - -t 4.91176 -s 2 -d 0 -p ack -e 40 -c 1 -i 385 -a 1 h -t 4.91176 -s 2 -d 0 -p ack -e 40 -c 1 -i 385 -a 1 r -t 4.9128 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 383 -a 2 + -t 4.9128 -s 3 -d 2 -p ack -e 40 -c 2 -i 392 -a 2 - -t 4.9128 -s 3 -d 2 -p ack -e 40 -c 2 -i 392 -a 2 h -t 4.9128 -s 3 -d 2 -p ack -e 40 -c 2 -i 392 -a 2 r -t 4.9168 -s 2 -d 0 -p ack -e 40 -c 1 -i 385 -a 1 r -t 4.92176 -s 3 -d 2 -p ack -e 40 -c 1 -i 386 -a 1 + -t 4.92176 -s 2 -d 0 -p ack -e 40 -c 1 -i 386 -a 1 - -t 4.92176 -s 2 -d 0 -p ack -e 40 -c 1 -i 386 -a 1 h -t 4.92176 -s 2 -d 0 -p ack -e 40 -c 1 -i 386 -a 1 r -t 4.9228 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 384 -a 2 + -t 4.9228 -s 3 -d 2 -p ack -e 40 -c 2 -i 393 -a 2 - -t 4.9228 -s 3 -d 2 -p ack -e 40 -c 2 -i 393 -a 2 h -t 4.9228 -s 3 -d 2 -p ack -e 40 -c 2 -i 393 -a 2 r -t 4.9268 -s 2 -d 0 -p ack -e 40 -c 1 -i 386 -a 1 + -t 4.9268 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 394 -a 1 - -t 4.9268 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 394 -a 1 h -t 4.9268 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 394 -a 1 + -t 4.9268 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 395 -a 1 + -t 4.9268 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 396 -a 1 - -t 4.9278 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 395 -a 1 h -t 4.9278 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 395 -a 1 - -t 4.9288 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 396 -a 1 h -t 4.9288 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 396 -a 1 r -t 4.93176 -s 3 -d 2 -p ack -e 40 -c 1 -i 387 -a 1 + -t 4.93176 -s 2 -d 0 -p ack -e 40 -c 1 -i 387 -a 1 - -t 4.93176 -s 2 -d 0 -p ack -e 40 -c 1 -i 387 -a 1 h -t 4.93176 -s 2 -d 0 -p ack -e 40 -c 1 -i 387 -a 1 r -t 4.9328 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 394 -a 1 + -t 4.9328 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 394 -a 1 - -t 4.9328 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 394 -a 1 h -t 4.9328 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 394 -a 1 r -t 4.9338 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 395 -a 1 + -t 4.9338 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 395 -a 1 r -t 4.9348 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 396 -a 1 + -t 4.9348 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 396 -a 1 r -t 4.9368 -s 2 -d 0 -p ack -e 40 -c 1 -i 387 -a 1 r -t 4.94176 -s 3 -d 2 -p ack -e 40 -c 1 -i 388 -a 1 + -t 4.94176 -s 2 -d 0 -p ack -e 40 -c 1 -i 388 -a 1 - -t 4.94176 -s 2 -d 0 -p ack -e 40 -c 1 -i 388 -a 1 h -t 4.94176 -s 2 -d 0 -p ack -e 40 -c 1 -i 388 -a 1 - -t 4.9428 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 395 -a 1 h -t 4.9428 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 395 -a 1 r -t 4.9468 -s 2 -d 0 -p ack -e 40 -c 1 -i 388 -a 1 + -t 4.9468 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 397 -a 1 - -t 4.9468 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 397 -a 1 h -t 4.9468 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 397 -a 1 + -t 4.9468 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 398 -a 1 + -t 4.9468 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 399 -a 1 - -t 4.9478 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 398 -a 1 h -t 4.9478 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 398 -a 1 - -t 4.9488 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 399 -a 1 h -t 4.9488 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 399 -a 1 r -t 4.95176 -s 3 -d 2 -p ack -e 40 -c 1 -i 389 -a 1 + -t 4.95176 -s 2 -d 0 -p ack -e 40 -c 1 -i 389 -a 1 - -t 4.95176 -s 2 -d 0 -p ack -e 40 -c 1 -i 389 -a 1 h -t 4.95176 -s 2 -d 0 -p ack -e 40 -c 1 -i 389 -a 1 - -t 4.9528 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 396 -a 1 h -t 4.9528 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 396 -a 1 r -t 4.9528 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 397 -a 1 + -t 4.9528 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 397 -a 1 r -t 4.9538 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 398 -a 1 + -t 4.9538 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 398 -a 1 r -t 4.9548 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 399 -a 1 + -t 4.9548 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 399 -a 1 r -t 4.9568 -s 2 -d 0 -p ack -e 40 -c 1 -i 389 -a 1 r -t 4.96176 -s 3 -d 2 -p ack -e 40 -c 1 -i 390 -a 1 + -t 4.96176 -s 2 -d 0 -p ack -e 40 -c 1 -i 390 -a 1 - -t 4.96176 -s 2 -d 0 -p ack -e 40 -c 1 -i 390 -a 1 h -t 4.96176 -s 2 -d 0 -p ack -e 40 -c 1 -i 390 -a 1 - -t 4.9628 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 397 -a 1 h -t 4.9628 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 397 -a 1 r -t 4.9668 -s 2 -d 0 -p ack -e 40 -c 1 -i 390 -a 1 + -t 4.9668 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 400 -a 1 - -t 4.9668 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 400 -a 1 h -t 4.9668 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 400 -a 1 + -t 4.9668 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 401 -a 1 + -t 4.9668 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 402 -a 1 - -t 4.9678 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 401 -a 1 h -t 4.9678 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 401 -a 1 - -t 4.9688 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 402 -a 1 h -t 4.9688 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 402 -a 1 - -t 4.9728 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 398 -a 1 h -t 4.9728 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 398 -a 1 r -t 4.9728 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 400 -a 1 + -t 4.9728 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 400 -a 1 r -t 4.9738 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 401 -a 1 + -t 4.9738 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 401 -a 1 r -t 4.9748 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 402 -a 1 + -t 4.9748 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 402 -a 1 - -t 4.9828 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 399 -a 1 h -t 4.9828 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 399 -a 1 - -t 4.9928 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 400 -a 1 h -t 4.9928 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 400 -a 1 - -t 5.0028 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 401 -a 1 h -t 5.0028 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 401 -a 1 r -t 5.0032 -s 3 -d 2 -p ack -e 40 -c 2 -i 391 -a 2 + -t 5.0032 -s 2 -d 1 -p ack -e 40 -c 2 -i 391 -a 2 - -t 5.0032 -s 2 -d 1 -p ack -e 40 -c 2 -i 391 -a 2 h -t 5.0032 -s 2 -d 1 -p ack -e 40 -c 2 -i 391 -a 2 r -t 5.00824 -s 2 -d 1 -p ack -e 40 -c 2 -i 391 -a 2 + -t 5.00824 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 403 -a 2 - -t 5.00824 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 403 -a 2 h -t 5.00824 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 403 -a 2 - -t 5.0128 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 402 -a 1 h -t 5.0128 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 402 -a 1 r -t 5.0132 -s 3 -d 2 -p ack -e 40 -c 2 -i 392 -a 2 + -t 5.0132 -s 2 -d 1 -p ack -e 40 -c 2 -i 392 -a 2 - -t 5.0132 -s 2 -d 1 -p ack -e 40 -c 2 -i 392 -a 2 h -t 5.0132 -s 2 -d 1 -p ack -e 40 -c 2 -i 392 -a 2 r -t 5.01424 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 403 -a 2 + -t 5.01424 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 403 -a 2 r -t 5.01824 -s 2 -d 1 -p ack -e 40 -c 2 -i 392 -a 2 + -t 5.01824 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 404 -a 2 - -t 5.01824 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 404 -a 2 h -t 5.01824 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 404 -a 2 - -t 5.0228 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 403 -a 2 h -t 5.0228 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 403 -a 2 r -t 5.0232 -s 3 -d 2 -p ack -e 40 -c 2 -i 393 -a 2 + -t 5.0232 -s 2 -d 1 -p ack -e 40 -c 2 -i 393 -a 2 - -t 5.0232 -s 2 -d 1 -p ack -e 40 -c 2 -i 393 -a 2 h -t 5.0232 -s 2 -d 1 -p ack -e 40 -c 2 -i 393 -a 2 r -t 5.02424 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 404 -a 2 + -t 5.02424 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 404 -a 2 r -t 5.02824 -s 2 -d 1 -p ack -e 40 -c 2 -i 393 -a 2 + -t 5.02824 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 405 -a 2 - -t 5.02824 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 405 -a 2 h -t 5.02824 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 405 -a 2 + -t 5.02824 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 406 -a 2 - -t 5.02924 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 406 -a 2 h -t 5.02924 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 406 -a 2 - -t 5.0328 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 404 -a 2 h -t 5.0328 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 404 -a 2 r -t 5.03424 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 405 -a 2 + -t 5.03424 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 405 -a 2 r -t 5.03524 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 406 -a 2 + -t 5.03524 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 406 -a 2 - -t 5.0428 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 405 -a 2 h -t 5.0428 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 405 -a 2 r -t 5.0428 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 394 -a 1 + -t 5.0428 -s 3 -d 2 -p ack -e 40 -c 1 -i 407 -a 1 - -t 5.0428 -s 3 -d 2 -p ack -e 40 -c 1 -i 407 -a 1 h -t 5.0428 -s 3 -d 2 -p ack -e 40 -c 1 -i 407 -a 1 - -t 5.0528 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 406 -a 2 h -t 5.0528 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 406 -a 2 r -t 5.0528 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 395 -a 1 + -t 5.0528 -s 3 -d 2 -p ack -e 40 -c 1 -i 408 -a 1 - -t 5.0528 -s 3 -d 2 -p ack -e 40 -c 1 -i 408 -a 1 h -t 5.0528 -s 3 -d 2 -p ack -e 40 -c 1 -i 408 -a 1 r -t 5.0628 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 396 -a 1 + -t 5.0628 -s 3 -d 2 -p ack -e 40 -c 1 -i 409 -a 1 - -t 5.0628 -s 3 -d 2 -p ack -e 40 -c 1 -i 409 -a 1 h -t 5.0628 -s 3 -d 2 -p ack -e 40 -c 1 -i 409 -a 1 r -t 5.0728 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 397 -a 1 + -t 5.0728 -s 3 -d 2 -p ack -e 40 -c 1 -i 410 -a 1 - -t 5.0728 -s 3 -d 2 -p ack -e 40 -c 1 -i 410 -a 1 h -t 5.0728 -s 3 -d 2 -p ack -e 40 -c 1 -i 410 -a 1 r -t 5.0828 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 398 -a 1 + -t 5.0828 -s 3 -d 2 -p ack -e 40 -c 1 -i 411 -a 1 - -t 5.0828 -s 3 -d 2 -p ack -e 40 -c 1 -i 411 -a 1 h -t 5.0828 -s 3 -d 2 -p ack -e 40 -c 1 -i 411 -a 1 r -t 5.0928 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 399 -a 1 + -t 5.0928 -s 3 -d 2 -p ack -e 40 -c 1 -i 412 -a 1 - -t 5.0928 -s 3 -d 2 -p ack -e 40 -c 1 -i 412 -a 1 h -t 5.0928 -s 3 -d 2 -p ack -e 40 -c 1 -i 412 -a 1 r -t 5.1028 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 400 -a 1 + -t 5.1028 -s 3 -d 2 -p ack -e 40 -c 1 -i 413 -a 1 - -t 5.1028 -s 3 -d 2 -p ack -e 40 -c 1 -i 413 -a 1 h -t 5.1028 -s 3 -d 2 -p ack -e 40 -c 1 -i 413 -a 1 r -t 5.1128 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 401 -a 1 + -t 5.1128 -s 3 -d 2 -p ack -e 40 -c 1 -i 414 -a 1 - -t 5.1128 -s 3 -d 2 -p ack -e 40 -c 1 -i 414 -a 1 h -t 5.1128 -s 3 -d 2 -p ack -e 40 -c 1 -i 414 -a 1 r -t 5.1228 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 402 -a 1 + -t 5.1228 -s 3 -d 2 -p ack -e 40 -c 1 -i 415 -a 1 - -t 5.1228 -s 3 -d 2 -p ack -e 40 -c 1 -i 415 -a 1 h -t 5.1228 -s 3 -d 2 -p ack -e 40 -c 1 -i 415 -a 1 r -t 5.1328 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 403 -a 2 + -t 5.1328 -s 3 -d 2 -p ack -e 40 -c 2 -i 416 -a 2 - -t 5.1328 -s 3 -d 2 -p ack -e 40 -c 2 -i 416 -a 2 h -t 5.1328 -s 3 -d 2 -p ack -e 40 -c 2 -i 416 -a 2 r -t 5.1428 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 404 -a 2 + -t 5.1428 -s 3 -d 2 -p ack -e 40 -c 2 -i 417 -a 2 - -t 5.1428 -s 3 -d 2 -p ack -e 40 -c 2 -i 417 -a 2 h -t 5.1428 -s 3 -d 2 -p ack -e 40 -c 2 -i 417 -a 2 r -t 5.1432 -s 3 -d 2 -p ack -e 40 -c 1 -i 407 -a 1 + -t 5.1432 -s 2 -d 0 -p ack -e 40 -c 1 -i 407 -a 1 - -t 5.1432 -s 2 -d 0 -p ack -e 40 -c 1 -i 407 -a 1 h -t 5.1432 -s 2 -d 0 -p ack -e 40 -c 1 -i 407 -a 1 r -t 5.14824 -s 2 -d 0 -p ack -e 40 -c 1 -i 407 -a 1 r -t 5.1528 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 405 -a 2 + -t 5.1528 -s 3 -d 2 -p ack -e 40 -c 2 -i 418 -a 2 - -t 5.1528 -s 3 -d 2 -p ack -e 40 -c 2 -i 418 -a 2 h -t 5.1528 -s 3 -d 2 -p ack -e 40 -c 2 -i 418 -a 2 r -t 5.1532 -s 3 -d 2 -p ack -e 40 -c 1 -i 408 -a 1 + -t 5.1532 -s 2 -d 0 -p ack -e 40 -c 1 -i 408 -a 1 - -t 5.1532 -s 2 -d 0 -p ack -e 40 -c 1 -i 408 -a 1 h -t 5.1532 -s 2 -d 0 -p ack -e 40 -c 1 -i 408 -a 1 r -t 5.15824 -s 2 -d 0 -p ack -e 40 -c 1 -i 408 -a 1 + -t 5.15824 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 419 -a 1 - -t 5.15824 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 419 -a 1 h -t 5.15824 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 419 -a 1 + -t 5.15824 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 420 -a 1 - -t 5.15924 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 420 -a 1 h -t 5.15924 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 420 -a 1 r -t 5.1628 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 406 -a 2 + -t 5.1628 -s 3 -d 2 -p ack -e 40 -c 2 -i 421 -a 2 - -t 5.1628 -s 3 -d 2 -p ack -e 40 -c 2 -i 421 -a 2 h -t 5.1628 -s 3 -d 2 -p ack -e 40 -c 2 -i 421 -a 2 r -t 5.1632 -s 3 -d 2 -p ack -e 40 -c 1 -i 409 -a 1 + -t 5.1632 -s 2 -d 0 -p ack -e 40 -c 1 -i 409 -a 1 - -t 5.1632 -s 2 -d 0 -p ack -e 40 -c 1 -i 409 -a 1 h -t 5.1632 -s 2 -d 0 -p ack -e 40 -c 1 -i 409 -a 1 r -t 5.16424 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 419 -a 1 + -t 5.16424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 419 -a 1 - -t 5.16424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 419 -a 1 h -t 5.16424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 419 -a 1 r -t 5.16524 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 420 -a 1 + -t 5.16524 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 420 -a 1 r -t 5.16824 -s 2 -d 0 -p ack -e 40 -c 1 -i 409 -a 1 + -t 5.16824 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 422 -a 1 - -t 5.16824 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 422 -a 1 h -t 5.16824 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 422 -a 1 + -t 5.16824 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 423 -a 1 + -t 5.16824 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 424 -a 1 - -t 5.16924 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 423 -a 1 h -t 5.16924 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 423 -a 1 - -t 5.17024 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 424 -a 1 h -t 5.17024 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 424 -a 1 r -t 5.1732 -s 3 -d 2 -p ack -e 40 -c 1 -i 410 -a 1 + -t 5.1732 -s 2 -d 0 -p ack -e 40 -c 1 -i 410 -a 1 - -t 5.1732 -s 2 -d 0 -p ack -e 40 -c 1 -i 410 -a 1 h -t 5.1732 -s 2 -d 0 -p ack -e 40 -c 1 -i 410 -a 1 - -t 5.17424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 420 -a 1 h -t 5.17424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 420 -a 1 r -t 5.17424 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 422 -a 1 + -t 5.17424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 422 -a 1 r -t 5.17524 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 423 -a 1 + -t 5.17524 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 423 -a 1 r -t 5.17624 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 424 -a 1 + -t 5.17624 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 424 -a 1 r -t 5.17824 -s 2 -d 0 -p ack -e 40 -c 1 -i 410 -a 1 r -t 5.1832 -s 3 -d 2 -p ack -e 40 -c 1 -i 411 -a 1 + -t 5.1832 -s 2 -d 0 -p ack -e 40 -c 1 -i 411 -a 1 - -t 5.1832 -s 2 -d 0 -p ack -e 40 -c 1 -i 411 -a 1 h -t 5.1832 -s 2 -d 0 -p ack -e 40 -c 1 -i 411 -a 1 - -t 5.18424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 422 -a 1 h -t 5.18424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 422 -a 1 r -t 5.18824 -s 2 -d 0 -p ack -e 40 -c 1 -i 411 -a 1 + -t 5.18824 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 425 -a 1 - -t 5.18824 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 425 -a 1 h -t 5.18824 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 425 -a 1 + -t 5.18824 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 426 -a 1 - -t 5.18924 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 426 -a 1 h -t 5.18924 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 426 -a 1 r -t 5.1932 -s 3 -d 2 -p ack -e 40 -c 1 -i 412 -a 1 + -t 5.1932 -s 2 -d 0 -p ack -e 40 -c 1 -i 412 -a 1 - -t 5.1932 -s 2 -d 0 -p ack -e 40 -c 1 -i 412 -a 1 h -t 5.1932 -s 2 -d 0 -p ack -e 40 -c 1 -i 412 -a 1 - -t 5.19424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 423 -a 1 h -t 5.19424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 423 -a 1 r -t 5.19424 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 425 -a 1 + -t 5.19424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 425 -a 1 r -t 5.19524 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 426 -a 1 + -t 5.19524 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 426 -a 1 r -t 5.19824 -s 2 -d 0 -p ack -e 40 -c 1 -i 412 -a 1 + -t 5.19824 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 427 -a 1 - -t 5.19824 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 427 -a 1 h -t 5.19824 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 427 -a 1 + -t 5.19824 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 428 -a 1 - -t 5.19924 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 428 -a 1 h -t 5.19924 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 428 -a 1 r -t 5.2032 -s 3 -d 2 -p ack -e 40 -c 1 -i 413 -a 1 + -t 5.2032 -s 2 -d 0 -p ack -e 40 -c 1 -i 413 -a 1 - -t 5.2032 -s 2 -d 0 -p ack -e 40 -c 1 -i 413 -a 1 h -t 5.2032 -s 2 -d 0 -p ack -e 40 -c 1 -i 413 -a 1 - -t 5.20424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 424 -a 1 h -t 5.20424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 424 -a 1 r -t 5.20424 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 427 -a 1 + -t 5.20424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 427 -a 1 r -t 5.20524 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 428 -a 1 + -t 5.20524 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 428 -a 1 r -t 5.20824 -s 2 -d 0 -p ack -e 40 -c 1 -i 413 -a 1 + -t 5.20824 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 429 -a 1 - -t 5.20824 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 429 -a 1 h -t 5.20824 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 429 -a 1 + -t 5.20824 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 430 -a 1 - -t 5.20924 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 430 -a 1 h -t 5.20924 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 430 -a 1 r -t 5.2132 -s 3 -d 2 -p ack -e 40 -c 1 -i 414 -a 1 + -t 5.2132 -s 2 -d 0 -p ack -e 40 -c 1 -i 414 -a 1 - -t 5.2132 -s 2 -d 0 -p ack -e 40 -c 1 -i 414 -a 1 h -t 5.2132 -s 2 -d 0 -p ack -e 40 -c 1 -i 414 -a 1 - -t 5.21424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 425 -a 1 h -t 5.21424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 425 -a 1 r -t 5.21424 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 429 -a 1 + -t 5.21424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 429 -a 1 r -t 5.21524 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 430 -a 1 + -t 5.21524 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 430 -a 1 r -t 5.21824 -s 2 -d 0 -p ack -e 40 -c 1 -i 414 -a 1 + -t 5.21824 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 431 -a 1 - -t 5.21824 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 431 -a 1 h -t 5.21824 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 431 -a 1 + -t 5.21824 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 432 -a 1 - -t 5.21924 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 432 -a 1 h -t 5.21924 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 432 -a 1 r -t 5.2232 -s 3 -d 2 -p ack -e 40 -c 1 -i 415 -a 1 + -t 5.2232 -s 2 -d 0 -p ack -e 40 -c 1 -i 415 -a 1 - -t 5.2232 -s 2 -d 0 -p ack -e 40 -c 1 -i 415 -a 1 h -t 5.2232 -s 2 -d 0 -p ack -e 40 -c 1 -i 415 -a 1 - -t 5.22424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 426 -a 1 h -t 5.22424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 426 -a 1 r -t 5.22424 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 431 -a 1 + -t 5.22424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 431 -a 1 r -t 5.22524 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 432 -a 1 + -t 5.22524 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 432 -a 1 r -t 5.22824 -s 2 -d 0 -p ack -e 40 -c 1 -i 415 -a 1 + -t 5.22824 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 433 -a 1 - -t 5.22824 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 433 -a 1 h -t 5.22824 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 433 -a 1 + -t 5.22824 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 434 -a 1 - -t 5.22924 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 434 -a 1 h -t 5.22924 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 434 -a 1 r -t 5.2332 -s 3 -d 2 -p ack -e 40 -c 2 -i 416 -a 2 + -t 5.2332 -s 2 -d 1 -p ack -e 40 -c 2 -i 416 -a 2 - -t 5.2332 -s 2 -d 1 -p ack -e 40 -c 2 -i 416 -a 2 h -t 5.2332 -s 2 -d 1 -p ack -e 40 -c 2 -i 416 -a 2 - -t 5.23424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 427 -a 1 h -t 5.23424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 427 -a 1 r -t 5.23424 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 433 -a 1 + -t 5.23424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 433 -a 1 r -t 5.23524 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 434 -a 1 + -t 5.23524 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 434 -a 1 r -t 5.23824 -s 2 -d 1 -p ack -e 40 -c 2 -i 416 -a 2 + -t 5.23824 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 435 -a 2 - -t 5.23824 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 435 -a 2 h -t 5.23824 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 435 -a 2 r -t 5.2432 -s 3 -d 2 -p ack -e 40 -c 2 -i 417 -a 2 + -t 5.2432 -s 2 -d 1 -p ack -e 40 -c 2 -i 417 -a 2 - -t 5.2432 -s 2 -d 1 -p ack -e 40 -c 2 -i 417 -a 2 h -t 5.2432 -s 2 -d 1 -p ack -e 40 -c 2 -i 417 -a 2 - -t 5.24424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 428 -a 1 h -t 5.24424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 428 -a 1 r -t 5.24424 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 435 -a 2 + -t 5.24424 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 435 -a 2 r -t 5.24824 -s 2 -d 1 -p ack -e 40 -c 2 -i 417 -a 2 + -t 5.24824 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 436 -a 2 - -t 5.24824 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 436 -a 2 h -t 5.24824 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 436 -a 2 r -t 5.2532 -s 3 -d 2 -p ack -e 40 -c 2 -i 418 -a 2 + -t 5.2532 -s 2 -d 1 -p ack -e 40 -c 2 -i 418 -a 2 - -t 5.2532 -s 2 -d 1 -p ack -e 40 -c 2 -i 418 -a 2 h -t 5.2532 -s 2 -d 1 -p ack -e 40 -c 2 -i 418 -a 2 - -t 5.25424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 429 -a 1 h -t 5.25424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 429 -a 1 r -t 5.25424 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 436 -a 2 + -t 5.25424 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 436 -a 2 r -t 5.25824 -s 2 -d 1 -p ack -e 40 -c 2 -i 418 -a 2 + -t 5.25824 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 437 -a 2 - -t 5.25824 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 437 -a 2 h -t 5.25824 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 437 -a 2 r -t 5.2632 -s 3 -d 2 -p ack -e 40 -c 2 -i 421 -a 2 + -t 5.2632 -s 2 -d 1 -p ack -e 40 -c 2 -i 421 -a 2 - -t 5.2632 -s 2 -d 1 -p ack -e 40 -c 2 -i 421 -a 2 h -t 5.2632 -s 2 -d 1 -p ack -e 40 -c 2 -i 421 -a 2 - -t 5.26424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 430 -a 1 h -t 5.26424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 430 -a 1 r -t 5.26424 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 437 -a 2 + -t 5.26424 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 437 -a 2 r -t 5.26824 -s 2 -d 1 -p ack -e 40 -c 2 -i 421 -a 2 + -t 5.26824 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 438 -a 2 - -t 5.26824 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 438 -a 2 h -t 5.26824 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 438 -a 2 + -t 5.26824 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 439 -a 2 - -t 5.26924 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 439 -a 2 h -t 5.26924 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 439 -a 2 - -t 5.27424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 431 -a 1 h -t 5.27424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 431 -a 1 r -t 5.27424 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 438 -a 2 + -t 5.27424 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 438 -a 2 r -t 5.27424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 419 -a 1 + -t 5.27424 -s 3 -d 2 -p ack -e 40 -c 1 -i 440 -a 1 - -t 5.27424 -s 3 -d 2 -p ack -e 40 -c 1 -i 440 -a 1 h -t 5.27424 -s 3 -d 2 -p ack -e 40 -c 1 -i 440 -a 1 r -t 5.27524 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 439 -a 2 + -t 5.27524 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 439 -a 2 d -t 5.27524 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 439 -a 2 - -t 5.28424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 432 -a 1 h -t 5.28424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 432 -a 1 r -t 5.28424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 420 -a 1 + -t 5.28424 -s 3 -d 2 -p ack -e 40 -c 1 -i 441 -a 1 - -t 5.28424 -s 3 -d 2 -p ack -e 40 -c 1 -i 441 -a 1 h -t 5.28424 -s 3 -d 2 -p ack -e 40 -c 1 -i 441 -a 1 - -t 5.29424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 433 -a 1 h -t 5.29424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 433 -a 1 r -t 5.29424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 422 -a 1 + -t 5.29424 -s 3 -d 2 -p ack -e 40 -c 1 -i 442 -a 1 - -t 5.29424 -s 3 -d 2 -p ack -e 40 -c 1 -i 442 -a 1 h -t 5.29424 -s 3 -d 2 -p ack -e 40 -c 1 -i 442 -a 1 - -t 5.30424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 434 -a 1 h -t 5.30424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 434 -a 1 r -t 5.30424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 423 -a 1 + -t 5.30424 -s 3 -d 2 -p ack -e 40 -c 1 -i 443 -a 1 - -t 5.30424 -s 3 -d 2 -p ack -e 40 -c 1 -i 443 -a 1 h -t 5.30424 -s 3 -d 2 -p ack -e 40 -c 1 -i 443 -a 1 - -t 5.31424 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 435 -a 2 h -t 5.31424 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 435 -a 2 r -t 5.31424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 424 -a 1 + -t 5.31424 -s 3 -d 2 -p ack -e 40 -c 1 -i 444 -a 1 - -t 5.31424 -s 3 -d 2 -p ack -e 40 -c 1 -i 444 -a 1 h -t 5.31424 -s 3 -d 2 -p ack -e 40 -c 1 -i 444 -a 1 - -t 5.32424 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 436 -a 2 h -t 5.32424 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 436 -a 2 r -t 5.32424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 425 -a 1 + -t 5.32424 -s 3 -d 2 -p ack -e 40 -c 1 -i 445 -a 1 - -t 5.32424 -s 3 -d 2 -p ack -e 40 -c 1 -i 445 -a 1 h -t 5.32424 -s 3 -d 2 -p ack -e 40 -c 1 -i 445 -a 1 - -t 5.33424 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 437 -a 2 h -t 5.33424 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 437 -a 2 r -t 5.33424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 426 -a 1 + -t 5.33424 -s 3 -d 2 -p ack -e 40 -c 1 -i 446 -a 1 - -t 5.33424 -s 3 -d 2 -p ack -e 40 -c 1 -i 446 -a 1 h -t 5.33424 -s 3 -d 2 -p ack -e 40 -c 1 -i 446 -a 1 - -t 5.34424 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 438 -a 2 h -t 5.34424 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 438 -a 2 r -t 5.34424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 427 -a 1 + -t 5.34424 -s 3 -d 2 -p ack -e 40 -c 1 -i 447 -a 1 - -t 5.34424 -s 3 -d 2 -p ack -e 40 -c 1 -i 447 -a 1 h -t 5.34424 -s 3 -d 2 -p ack -e 40 -c 1 -i 447 -a 1 r -t 5.35424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 428 -a 1 + -t 5.35424 -s 3 -d 2 -p ack -e 40 -c 1 -i 448 -a 1 - -t 5.35424 -s 3 -d 2 -p ack -e 40 -c 1 -i 448 -a 1 h -t 5.35424 -s 3 -d 2 -p ack -e 40 -c 1 -i 448 -a 1 r -t 5.36424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 429 -a 1 + -t 5.36424 -s 3 -d 2 -p ack -e 40 -c 1 -i 449 -a 1 - -t 5.36424 -s 3 -d 2 -p ack -e 40 -c 1 -i 449 -a 1 h -t 5.36424 -s 3 -d 2 -p ack -e 40 -c 1 -i 449 -a 1 r -t 5.37424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 430 -a 1 + -t 5.37424 -s 3 -d 2 -p ack -e 40 -c 1 -i 450 -a 1 - -t 5.37424 -s 3 -d 2 -p ack -e 40 -c 1 -i 450 -a 1 h -t 5.37424 -s 3 -d 2 -p ack -e 40 -c 1 -i 450 -a 1 r -t 5.37464 -s 3 -d 2 -p ack -e 40 -c 1 -i 440 -a 1 + -t 5.37464 -s 2 -d 0 -p ack -e 40 -c 1 -i 440 -a 1 - -t 5.37464 -s 2 -d 0 -p ack -e 40 -c 1 -i 440 -a 1 h -t 5.37464 -s 2 -d 0 -p ack -e 40 -c 1 -i 440 -a 1 r -t 5.37968 -s 2 -d 0 -p ack -e 40 -c 1 -i 440 -a 1 + -t 5.37968 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 451 -a 1 - -t 5.37968 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 451 -a 1 h -t 5.37968 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 451 -a 1 + -t 5.37968 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 452 -a 1 - -t 5.38068 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 452 -a 1 h -t 5.38068 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 452 -a 1 r -t 5.38424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 431 -a 1 + -t 5.38424 -s 3 -d 2 -p ack -e 40 -c 1 -i 453 -a 1 - -t 5.38424 -s 3 -d 2 -p ack -e 40 -c 1 -i 453 -a 1 h -t 5.38424 -s 3 -d 2 -p ack -e 40 -c 1 -i 453 -a 1 r -t 5.38464 -s 3 -d 2 -p ack -e 40 -c 1 -i 441 -a 1 + -t 5.38464 -s 2 -d 0 -p ack -e 40 -c 1 -i 441 -a 1 - -t 5.38464 -s 2 -d 0 -p ack -e 40 -c 1 -i 441 -a 1 h -t 5.38464 -s 2 -d 0 -p ack -e 40 -c 1 -i 441 -a 1 r -t 5.38568 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 451 -a 1 + -t 5.38568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 451 -a 1 - -t 5.38568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 451 -a 1 h -t 5.38568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 451 -a 1 r -t 5.38668 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 452 -a 1 + -t 5.38668 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 452 -a 1 r -t 5.38968 -s 2 -d 0 -p ack -e 40 -c 1 -i 441 -a 1 + -t 5.38968 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 454 -a 1 - -t 5.38968 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 454 -a 1 h -t 5.38968 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 454 -a 1 + -t 5.38968 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 455 -a 1 - -t 5.39068 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 455 -a 1 h -t 5.39068 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 455 -a 1 r -t 5.39424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 432 -a 1 + -t 5.39424 -s 3 -d 2 -p ack -e 40 -c 1 -i 456 -a 1 - -t 5.39424 -s 3 -d 2 -p ack -e 40 -c 1 -i 456 -a 1 h -t 5.39424 -s 3 -d 2 -p ack -e 40 -c 1 -i 456 -a 1 r -t 5.39464 -s 3 -d 2 -p ack -e 40 -c 1 -i 442 -a 1 + -t 5.39464 -s 2 -d 0 -p ack -e 40 -c 1 -i 442 -a 1 - -t 5.39464 -s 2 -d 0 -p ack -e 40 -c 1 -i 442 -a 1 h -t 5.39464 -s 2 -d 0 -p ack -e 40 -c 1 -i 442 -a 1 - -t 5.39568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 452 -a 1 h -t 5.39568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 452 -a 1 r -t 5.39568 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 454 -a 1 + -t 5.39568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 454 -a 1 r -t 5.39668 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 455 -a 1 + -t 5.39668 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 455 -a 1 r -t 5.39968 -s 2 -d 0 -p ack -e 40 -c 1 -i 442 -a 1 + -t 5.39968 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 457 -a 1 - -t 5.39968 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 457 -a 1 h -t 5.39968 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 457 -a 1 + -t 5.39968 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 458 -a 1 - -t 5.40068 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 458 -a 1 h -t 5.40068 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 458 -a 1 r -t 5.40424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 433 -a 1 + -t 5.40424 -s 3 -d 2 -p ack -e 40 -c 1 -i 459 -a 1 - -t 5.40424 -s 3 -d 2 -p ack -e 40 -c 1 -i 459 -a 1 h -t 5.40424 -s 3 -d 2 -p ack -e 40 -c 1 -i 459 -a 1 r -t 5.40464 -s 3 -d 2 -p ack -e 40 -c 1 -i 443 -a 1 + -t 5.40464 -s 2 -d 0 -p ack -e 40 -c 1 -i 443 -a 1 - -t 5.40464 -s 2 -d 0 -p ack -e 40 -c 1 -i 443 -a 1 h -t 5.40464 -s 2 -d 0 -p ack -e 40 -c 1 -i 443 -a 1 - -t 5.40568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 454 -a 1 h -t 5.40568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 454 -a 1 r -t 5.40568 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 457 -a 1 + -t 5.40568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 457 -a 1 r -t 5.40668 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 458 -a 1 + -t 5.40668 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 458 -a 1 r -t 5.40968 -s 2 -d 0 -p ack -e 40 -c 1 -i 443 -a 1 + -t 5.40968 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 460 -a 1 - -t 5.40968 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 460 -a 1 h -t 5.40968 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 460 -a 1 + -t 5.40968 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 461 -a 1 + -t 5.40968 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 462 -a 1 - -t 5.41068 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 461 -a 1 h -t 5.41068 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 461 -a 1 - -t 5.41168 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 462 -a 1 h -t 5.41168 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 462 -a 1 r -t 5.41424 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 434 -a 1 + -t 5.41424 -s 3 -d 2 -p ack -e 40 -c 1 -i 463 -a 1 - -t 5.41424 -s 3 -d 2 -p ack -e 40 -c 1 -i 463 -a 1 h -t 5.41424 -s 3 -d 2 -p ack -e 40 -c 1 -i 463 -a 1 r -t 5.41464 -s 3 -d 2 -p ack -e 40 -c 1 -i 444 -a 1 + -t 5.41464 -s 2 -d 0 -p ack -e 40 -c 1 -i 444 -a 1 - -t 5.41464 -s 2 -d 0 -p ack -e 40 -c 1 -i 444 -a 1 h -t 5.41464 -s 2 -d 0 -p ack -e 40 -c 1 -i 444 -a 1 - -t 5.41568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 455 -a 1 h -t 5.41568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 455 -a 1 r -t 5.41568 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 460 -a 1 + -t 5.41568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 460 -a 1 r -t 5.41668 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 461 -a 1 + -t 5.41668 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 461 -a 1 r -t 5.41768 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 462 -a 1 + -t 5.41768 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 462 -a 1 r -t 5.41968 -s 2 -d 0 -p ack -e 40 -c 1 -i 444 -a 1 r -t 5.42424 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 435 -a 2 + -t 5.42424 -s 3 -d 2 -p ack -e 40 -c 2 -i 464 -a 2 - -t 5.42424 -s 3 -d 2 -p ack -e 40 -c 2 -i 464 -a 2 h -t 5.42424 -s 3 -d 2 -p ack -e 40 -c 2 -i 464 -a 2 r -t 5.42464 -s 3 -d 2 -p ack -e 40 -c 1 -i 445 -a 1 + -t 5.42464 -s 2 -d 0 -p ack -e 40 -c 1 -i 445 -a 1 - -t 5.42464 -s 2 -d 0 -p ack -e 40 -c 1 -i 445 -a 1 h -t 5.42464 -s 2 -d 0 -p ack -e 40 -c 1 -i 445 -a 1 - -t 5.42568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 457 -a 1 h -t 5.42568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 457 -a 1 r -t 5.42968 -s 2 -d 0 -p ack -e 40 -c 1 -i 445 -a 1 + -t 5.42968 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 465 -a 1 - -t 5.42968 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 465 -a 1 h -t 5.42968 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 465 -a 1 + -t 5.42968 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 466 -a 1 - -t 5.43068 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 466 -a 1 h -t 5.43068 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 466 -a 1 r -t 5.43424 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 436 -a 2 + -t 5.43424 -s 3 -d 2 -p ack -e 40 -c 2 -i 467 -a 2 - -t 5.43424 -s 3 -d 2 -p ack -e 40 -c 2 -i 467 -a 2 h -t 5.43424 -s 3 -d 2 -p ack -e 40 -c 2 -i 467 -a 2 r -t 5.43464 -s 3 -d 2 -p ack -e 40 -c 1 -i 446 -a 1 + -t 5.43464 -s 2 -d 0 -p ack -e 40 -c 1 -i 446 -a 1 - -t 5.43464 -s 2 -d 0 -p ack -e 40 -c 1 -i 446 -a 1 h -t 5.43464 -s 2 -d 0 -p ack -e 40 -c 1 -i 446 -a 1 - -t 5.43568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 458 -a 1 h -t 5.43568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 458 -a 1 r -t 5.43568 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 465 -a 1 + -t 5.43568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 465 -a 1 r -t 5.43668 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 466 -a 1 + -t 5.43668 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 466 -a 1 r -t 5.43968 -s 2 -d 0 -p ack -e 40 -c 1 -i 446 -a 1 + -t 5.43968 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 468 -a 1 - -t 5.43968 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 468 -a 1 h -t 5.43968 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 468 -a 1 + -t 5.43968 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 469 -a 1 - -t 5.44068 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 469 -a 1 h -t 5.44068 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 469 -a 1 r -t 5.44424 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 437 -a 2 + -t 5.44424 -s 3 -d 2 -p ack -e 40 -c 2 -i 470 -a 2 - -t 5.44424 -s 3 -d 2 -p ack -e 40 -c 2 -i 470 -a 2 h -t 5.44424 -s 3 -d 2 -p ack -e 40 -c 2 -i 470 -a 2 r -t 5.44464 -s 3 -d 2 -p ack -e 40 -c 1 -i 447 -a 1 + -t 5.44464 -s 2 -d 0 -p ack -e 40 -c 1 -i 447 -a 1 - -t 5.44464 -s 2 -d 0 -p ack -e 40 -c 1 -i 447 -a 1 h -t 5.44464 -s 2 -d 0 -p ack -e 40 -c 1 -i 447 -a 1 - -t 5.44568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 460 -a 1 h -t 5.44568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 460 -a 1 r -t 5.44568 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 468 -a 1 + -t 5.44568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 468 -a 1 r -t 5.44668 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 469 -a 1 + -t 5.44668 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 469 -a 1 r -t 5.44968 -s 2 -d 0 -p ack -e 40 -c 1 -i 447 -a 1 + -t 5.44968 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 471 -a 1 - -t 5.44968 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 471 -a 1 h -t 5.44968 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 471 -a 1 + -t 5.44968 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 472 -a 1 + -t 5.44968 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 473 -a 1 - -t 5.45068 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 472 -a 1 h -t 5.45068 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 472 -a 1 - -t 5.45168 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 473 -a 1 h -t 5.45168 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 473 -a 1 r -t 5.45424 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 438 -a 2 + -t 5.45424 -s 3 -d 2 -p ack -e 40 -c 2 -i 474 -a 2 - -t 5.45424 -s 3 -d 2 -p ack -e 40 -c 2 -i 474 -a 2 h -t 5.45424 -s 3 -d 2 -p ack -e 40 -c 2 -i 474 -a 2 r -t 5.45464 -s 3 -d 2 -p ack -e 40 -c 1 -i 448 -a 1 + -t 5.45464 -s 2 -d 0 -p ack -e 40 -c 1 -i 448 -a 1 - -t 5.45464 -s 2 -d 0 -p ack -e 40 -c 1 -i 448 -a 1 h -t 5.45464 -s 2 -d 0 -p ack -e 40 -c 1 -i 448 -a 1 - -t 5.45568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 461 -a 1 h -t 5.45568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 461 -a 1 r -t 5.45568 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 471 -a 1 + -t 5.45568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 471 -a 1 r -t 5.45668 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 472 -a 1 + -t 5.45668 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 472 -a 1 r -t 5.45768 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 473 -a 1 + -t 5.45768 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 473 -a 1 d -t 5.45768 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 473 -a 1 r -t 5.45968 -s 2 -d 0 -p ack -e 40 -c 1 -i 448 -a 1 r -t 5.46464 -s 3 -d 2 -p ack -e 40 -c 1 -i 449 -a 1 + -t 5.46464 -s 2 -d 0 -p ack -e 40 -c 1 -i 449 -a 1 - -t 5.46464 -s 2 -d 0 -p ack -e 40 -c 1 -i 449 -a 1 h -t 5.46464 -s 2 -d 0 -p ack -e 40 -c 1 -i 449 -a 1 - -t 5.46568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 462 -a 1 h -t 5.46568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 462 -a 1 r -t 5.46968 -s 2 -d 0 -p ack -e 40 -c 1 -i 449 -a 1 + -t 5.46968 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 475 -a 1 - -t 5.46968 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 475 -a 1 h -t 5.46968 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 475 -a 1 + -t 5.46968 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 476 -a 1 + -t 5.46968 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 477 -a 1 - -t 5.47068 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 476 -a 1 h -t 5.47068 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 476 -a 1 - -t 5.47168 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 477 -a 1 h -t 5.47168 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 477 -a 1 r -t 5.47464 -s 3 -d 2 -p ack -e 40 -c 1 -i 450 -a 1 + -t 5.47464 -s 2 -d 0 -p ack -e 40 -c 1 -i 450 -a 1 - -t 5.47464 -s 2 -d 0 -p ack -e 40 -c 1 -i 450 -a 1 h -t 5.47464 -s 2 -d 0 -p ack -e 40 -c 1 -i 450 -a 1 - -t 5.47568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 465 -a 1 h -t 5.47568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 465 -a 1 r -t 5.47568 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 475 -a 1 + -t 5.47568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 475 -a 1 r -t 5.47668 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 476 -a 1 + -t 5.47668 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 476 -a 1 r -t 5.47768 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 477 -a 1 + -t 5.47768 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 477 -a 1 d -t 5.47768 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 477 -a 1 r -t 5.47968 -s 2 -d 0 -p ack -e 40 -c 1 -i 450 -a 1 r -t 5.48464 -s 3 -d 2 -p ack -e 40 -c 1 -i 453 -a 1 + -t 5.48464 -s 2 -d 0 -p ack -e 40 -c 1 -i 453 -a 1 - -t 5.48464 -s 2 -d 0 -p ack -e 40 -c 1 -i 453 -a 1 h -t 5.48464 -s 2 -d 0 -p ack -e 40 -c 1 -i 453 -a 1 - -t 5.48568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 466 -a 1 h -t 5.48568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 466 -a 1 r -t 5.48968 -s 2 -d 0 -p ack -e 40 -c 1 -i 453 -a 1 + -t 5.48968 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 478 -a 1 - -t 5.48968 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 478 -a 1 h -t 5.48968 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 478 -a 1 + -t 5.48968 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 479 -a 1 + -t 5.48968 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 480 -a 1 - -t 5.49068 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 479 -a 1 h -t 5.49068 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 479 -a 1 - -t 5.49168 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 480 -a 1 h -t 5.49168 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 480 -a 1 r -t 5.49464 -s 3 -d 2 -p ack -e 40 -c 1 -i 456 -a 1 + -t 5.49464 -s 2 -d 0 -p ack -e 40 -c 1 -i 456 -a 1 - -t 5.49464 -s 2 -d 0 -p ack -e 40 -c 1 -i 456 -a 1 h -t 5.49464 -s 2 -d 0 -p ack -e 40 -c 1 -i 456 -a 1 - -t 5.49568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 468 -a 1 h -t 5.49568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 468 -a 1 r -t 5.49568 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 478 -a 1 + -t 5.49568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 478 -a 1 r -t 5.49568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 451 -a 1 + -t 5.49568 -s 3 -d 2 -p ack -e 40 -c 1 -i 481 -a 1 - -t 5.49568 -s 3 -d 2 -p ack -e 40 -c 1 -i 481 -a 1 h -t 5.49568 -s 3 -d 2 -p ack -e 40 -c 1 -i 481 -a 1 r -t 5.49668 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 479 -a 1 + -t 5.49668 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 479 -a 1 r -t 5.49768 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 480 -a 1 + -t 5.49768 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 480 -a 1 d -t 5.49768 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 480 -a 1 r -t 5.49968 -s 2 -d 0 -p ack -e 40 -c 1 -i 456 -a 1 r -t 5.50464 -s 3 -d 2 -p ack -e 40 -c 1 -i 459 -a 1 + -t 5.50464 -s 2 -d 0 -p ack -e 40 -c 1 -i 459 -a 1 - -t 5.50464 -s 2 -d 0 -p ack -e 40 -c 1 -i 459 -a 1 h -t 5.50464 -s 2 -d 0 -p ack -e 40 -c 1 -i 459 -a 1 - -t 5.50568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 469 -a 1 h -t 5.50568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 469 -a 1 r -t 5.50568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 452 -a 1 + -t 5.50568 -s 3 -d 2 -p ack -e 40 -c 1 -i 482 -a 1 - -t 5.50568 -s 3 -d 2 -p ack -e 40 -c 1 -i 482 -a 1 h -t 5.50568 -s 3 -d 2 -p ack -e 40 -c 1 -i 482 -a 1 r -t 5.50968 -s 2 -d 0 -p ack -e 40 -c 1 -i 459 -a 1 + -t 5.50968 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 483 -a 1 - -t 5.50968 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 483 -a 1 h -t 5.50968 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 483 -a 1 + -t 5.50968 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 484 -a 1 + -t 5.50968 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 485 -a 1 - -t 5.51068 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 484 -a 1 h -t 5.51068 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 484 -a 1 - -t 5.51168 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 485 -a 1 h -t 5.51168 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 485 -a 1 r -t 5.51464 -s 3 -d 2 -p ack -e 40 -c 1 -i 463 -a 1 + -t 5.51464 -s 2 -d 0 -p ack -e 40 -c 1 -i 463 -a 1 - -t 5.51464 -s 2 -d 0 -p ack -e 40 -c 1 -i 463 -a 1 h -t 5.51464 -s 2 -d 0 -p ack -e 40 -c 1 -i 463 -a 1 - -t 5.51568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 471 -a 1 h -t 5.51568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 471 -a 1 r -t 5.51568 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 483 -a 1 + -t 5.51568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 483 -a 1 r -t 5.51568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 454 -a 1 + -t 5.51568 -s 3 -d 2 -p ack -e 40 -c 1 -i 486 -a 1 - -t 5.51568 -s 3 -d 2 -p ack -e 40 -c 1 -i 486 -a 1 h -t 5.51568 -s 3 -d 2 -p ack -e 40 -c 1 -i 486 -a 1 r -t 5.51668 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 484 -a 1 + -t 5.51668 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 484 -a 1 r -t 5.51768 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 485 -a 1 + -t 5.51768 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 485 -a 1 d -t 5.51768 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 485 -a 1 r -t 5.51968 -s 2 -d 0 -p ack -e 40 -c 1 -i 463 -a 1 r -t 5.52464 -s 3 -d 2 -p ack -e 40 -c 2 -i 464 -a 2 + -t 5.52464 -s 2 -d 1 -p ack -e 40 -c 2 -i 464 -a 2 - -t 5.52464 -s 2 -d 1 -p ack -e 40 -c 2 -i 464 -a 2 h -t 5.52464 -s 2 -d 1 -p ack -e 40 -c 2 -i 464 -a 2 - -t 5.52568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 472 -a 1 h -t 5.52568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 472 -a 1 r -t 5.52568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 455 -a 1 + -t 5.52568 -s 3 -d 2 -p ack -e 40 -c 1 -i 487 -a 1 - -t 5.52568 -s 3 -d 2 -p ack -e 40 -c 1 -i 487 -a 1 h -t 5.52568 -s 3 -d 2 -p ack -e 40 -c 1 -i 487 -a 1 r -t 5.52968 -s 2 -d 1 -p ack -e 40 -c 2 -i 464 -a 2 + -t 5.52968 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 488 -a 2 - -t 5.52968 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 488 -a 2 h -t 5.52968 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 488 -a 2 r -t 5.53464 -s 3 -d 2 -p ack -e 40 -c 2 -i 467 -a 2 + -t 5.53464 -s 2 -d 1 -p ack -e 40 -c 2 -i 467 -a 2 - -t 5.53464 -s 2 -d 1 -p ack -e 40 -c 2 -i 467 -a 2 h -t 5.53464 -s 2 -d 1 -p ack -e 40 -c 2 -i 467 -a 2 - -t 5.53568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 475 -a 1 h -t 5.53568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 475 -a 1 r -t 5.53568 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 488 -a 2 + -t 5.53568 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 488 -a 2 r -t 5.53568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 457 -a 1 + -t 5.53568 -s 3 -d 2 -p ack -e 40 -c 1 -i 489 -a 1 - -t 5.53568 -s 3 -d 2 -p ack -e 40 -c 1 -i 489 -a 1 h -t 5.53568 -s 3 -d 2 -p ack -e 40 -c 1 -i 489 -a 1 r -t 5.53968 -s 2 -d 1 -p ack -e 40 -c 2 -i 467 -a 2 + -t 5.53968 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 490 -a 2 - -t 5.53968 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 490 -a 2 h -t 5.53968 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 490 -a 2 r -t 5.54464 -s 3 -d 2 -p ack -e 40 -c 2 -i 470 -a 2 + -t 5.54464 -s 2 -d 1 -p ack -e 40 -c 2 -i 470 -a 2 - -t 5.54464 -s 2 -d 1 -p ack -e 40 -c 2 -i 470 -a 2 h -t 5.54464 -s 2 -d 1 -p ack -e 40 -c 2 -i 470 -a 2 - -t 5.54568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 476 -a 1 h -t 5.54568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 476 -a 1 r -t 5.54568 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 490 -a 2 + -t 5.54568 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 490 -a 2 r -t 5.54568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 458 -a 1 + -t 5.54568 -s 3 -d 2 -p ack -e 40 -c 1 -i 491 -a 1 - -t 5.54568 -s 3 -d 2 -p ack -e 40 -c 1 -i 491 -a 1 h -t 5.54568 -s 3 -d 2 -p ack -e 40 -c 1 -i 491 -a 1 r -t 5.54968 -s 2 -d 1 -p ack -e 40 -c 2 -i 470 -a 2 + -t 5.54968 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 492 -a 2 - -t 5.54968 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 492 -a 2 h -t 5.54968 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 492 -a 2 r -t 5.55464 -s 3 -d 2 -p ack -e 40 -c 2 -i 474 -a 2 + -t 5.55464 -s 2 -d 1 -p ack -e 40 -c 2 -i 474 -a 2 - -t 5.55464 -s 2 -d 1 -p ack -e 40 -c 2 -i 474 -a 2 h -t 5.55464 -s 2 -d 1 -p ack -e 40 -c 2 -i 474 -a 2 - -t 5.55568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 478 -a 1 h -t 5.55568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 478 -a 1 r -t 5.55568 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 492 -a 2 + -t 5.55568 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 492 -a 2 r -t 5.55568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 460 -a 1 + -t 5.55568 -s 3 -d 2 -p ack -e 40 -c 1 -i 493 -a 1 - -t 5.55568 -s 3 -d 2 -p ack -e 40 -c 1 -i 493 -a 1 h -t 5.55568 -s 3 -d 2 -p ack -e 40 -c 1 -i 493 -a 1 r -t 5.55968 -s 2 -d 1 -p ack -e 40 -c 2 -i 474 -a 2 + -t 5.55968 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 494 -a 2 - -t 5.55968 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 494 -a 2 h -t 5.55968 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 494 -a 2 - -t 5.56568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 479 -a 1 h -t 5.56568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 479 -a 1 r -t 5.56568 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 494 -a 2 + -t 5.56568 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 494 -a 2 r -t 5.56568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 461 -a 1 + -t 5.56568 -s 3 -d 2 -p ack -e 40 -c 1 -i 495 -a 1 - -t 5.56568 -s 3 -d 2 -p ack -e 40 -c 1 -i 495 -a 1 h -t 5.56568 -s 3 -d 2 -p ack -e 40 -c 1 -i 495 -a 1 - -t 5.57568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 483 -a 1 h -t 5.57568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 483 -a 1 r -t 5.57568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 462 -a 1 + -t 5.57568 -s 3 -d 2 -p ack -e 40 -c 1 -i 496 -a 1 - -t 5.57568 -s 3 -d 2 -p ack -e 40 -c 1 -i 496 -a 1 h -t 5.57568 -s 3 -d 2 -p ack -e 40 -c 1 -i 496 -a 1 - -t 5.58568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 484 -a 1 h -t 5.58568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 484 -a 1 r -t 5.58568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 465 -a 1 + -t 5.58568 -s 3 -d 2 -p ack -e 40 -c 1 -i 497 -a 1 - -t 5.58568 -s 3 -d 2 -p ack -e 40 -c 1 -i 497 -a 1 h -t 5.58568 -s 3 -d 2 -p ack -e 40 -c 1 -i 497 -a 1 - -t 5.59568 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 488 -a 2 h -t 5.59568 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 488 -a 2 r -t 5.59568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 466 -a 1 + -t 5.59568 -s 3 -d 2 -p ack -e 40 -c 1 -i 498 -a 1 - -t 5.59568 -s 3 -d 2 -p ack -e 40 -c 1 -i 498 -a 1 h -t 5.59568 -s 3 -d 2 -p ack -e 40 -c 1 -i 498 -a 1 r -t 5.59608 -s 3 -d 2 -p ack -e 40 -c 1 -i 481 -a 1 + -t 5.59608 -s 2 -d 0 -p ack -e 40 -c 1 -i 481 -a 1 - -t 5.59608 -s 2 -d 0 -p ack -e 40 -c 1 -i 481 -a 1 h -t 5.59608 -s 2 -d 0 -p ack -e 40 -c 1 -i 481 -a 1 r -t 5.60112 -s 2 -d 0 -p ack -e 40 -c 1 -i 481 -a 1 + -t 5.60112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 499 -a 1 - -t 5.60112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 499 -a 1 h -t 5.60112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 499 -a 1 + -t 5.60112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 500 -a 1 + -t 5.60112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 501 -a 1 - -t 5.60212 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 500 -a 1 h -t 5.60212 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 500 -a 1 - -t 5.60312 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 501 -a 1 h -t 5.60312 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 501 -a 1 - -t 5.60568 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 490 -a 2 h -t 5.60568 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 490 -a 2 r -t 5.60568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 468 -a 1 + -t 5.60568 -s 3 -d 2 -p ack -e 40 -c 1 -i 502 -a 1 - -t 5.60568 -s 3 -d 2 -p ack -e 40 -c 1 -i 502 -a 1 h -t 5.60568 -s 3 -d 2 -p ack -e 40 -c 1 -i 502 -a 1 r -t 5.60608 -s 3 -d 2 -p ack -e 40 -c 1 -i 482 -a 1 + -t 5.60608 -s 2 -d 0 -p ack -e 40 -c 1 -i 482 -a 1 - -t 5.60608 -s 2 -d 0 -p ack -e 40 -c 1 -i 482 -a 1 h -t 5.60608 -s 2 -d 0 -p ack -e 40 -c 1 -i 482 -a 1 r -t 5.60712 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 499 -a 1 + -t 5.60712 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 499 -a 1 r -t 5.60812 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 500 -a 1 + -t 5.60812 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 500 -a 1 r -t 5.60912 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 501 -a 1 + -t 5.60912 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 501 -a 1 r -t 5.61112 -s 2 -d 0 -p ack -e 40 -c 1 -i 482 -a 1 - -t 5.61568 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 492 -a 2 h -t 5.61568 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 492 -a 2 r -t 5.61568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 469 -a 1 + -t 5.61568 -s 3 -d 2 -p ack -e 40 -c 1 -i 503 -a 1 - -t 5.61568 -s 3 -d 2 -p ack -e 40 -c 1 -i 503 -a 1 h -t 5.61568 -s 3 -d 2 -p ack -e 40 -c 1 -i 503 -a 1 r -t 5.61608 -s 3 -d 2 -p ack -e 40 -c 1 -i 486 -a 1 + -t 5.61608 -s 2 -d 0 -p ack -e 40 -c 1 -i 486 -a 1 - -t 5.61608 -s 2 -d 0 -p ack -e 40 -c 1 -i 486 -a 1 h -t 5.61608 -s 2 -d 0 -p ack -e 40 -c 1 -i 486 -a 1 r -t 5.62112 -s 2 -d 0 -p ack -e 40 -c 1 -i 486 -a 1 + -t 5.62112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 504 -a 1 - -t 5.62112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 504 -a 1 h -t 5.62112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 504 -a 1 + -t 5.62112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 505 -a 1 - -t 5.62212 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 505 -a 1 h -t 5.62212 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 505 -a 1 - -t 5.62568 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 494 -a 2 h -t 5.62568 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 494 -a 2 r -t 5.62568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 471 -a 1 + -t 5.62568 -s 3 -d 2 -p ack -e 40 -c 1 -i 506 -a 1 - -t 5.62568 -s 3 -d 2 -p ack -e 40 -c 1 -i 506 -a 1 h -t 5.62568 -s 3 -d 2 -p ack -e 40 -c 1 -i 506 -a 1 r -t 5.62608 -s 3 -d 2 -p ack -e 40 -c 1 -i 487 -a 1 + -t 5.62608 -s 2 -d 0 -p ack -e 40 -c 1 -i 487 -a 1 - -t 5.62608 -s 2 -d 0 -p ack -e 40 -c 1 -i 487 -a 1 h -t 5.62608 -s 2 -d 0 -p ack -e 40 -c 1 -i 487 -a 1 r -t 5.62712 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 504 -a 1 + -t 5.62712 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 504 -a 1 r -t 5.62812 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 505 -a 1 + -t 5.62812 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 505 -a 1 r -t 5.63112 -s 2 -d 0 -p ack -e 40 -c 1 -i 487 -a 1 + -t 5.63112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 507 -a 1 - -t 5.63112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 507 -a 1 h -t 5.63112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 507 -a 1 + -t 5.63112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 508 -a 1 - -t 5.63212 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 508 -a 1 h -t 5.63212 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 508 -a 1 - -t 5.63568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 499 -a 1 h -t 5.63568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 499 -a 1 r -t 5.63568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 472 -a 1 + -t 5.63568 -s 3 -d 2 -p ack -e 40 -c 1 -i 509 -a 1 - -t 5.63568 -s 3 -d 2 -p ack -e 40 -c 1 -i 509 -a 1 h -t 5.63568 -s 3 -d 2 -p ack -e 40 -c 1 -i 509 -a 1 r -t 5.63608 -s 3 -d 2 -p ack -e 40 -c 1 -i 489 -a 1 + -t 5.63608 -s 2 -d 0 -p ack -e 40 -c 1 -i 489 -a 1 - -t 5.63608 -s 2 -d 0 -p ack -e 40 -c 1 -i 489 -a 1 h -t 5.63608 -s 2 -d 0 -p ack -e 40 -c 1 -i 489 -a 1 r -t 5.63712 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 507 -a 1 + -t 5.63712 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 507 -a 1 r -t 5.63812 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 508 -a 1 + -t 5.63812 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 508 -a 1 r -t 5.64112 -s 2 -d 0 -p ack -e 40 -c 1 -i 489 -a 1 + -t 5.64112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 510 -a 1 - -t 5.64112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 510 -a 1 h -t 5.64112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 510 -a 1 + -t 5.64112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 511 -a 1 - -t 5.64212 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 511 -a 1 h -t 5.64212 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 511 -a 1 - -t 5.64568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 500 -a 1 h -t 5.64568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 500 -a 1 r -t 5.64568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 475 -a 1 + -t 5.64568 -s 3 -d 2 -p ack -e 40 -c 1 -i 512 -a 1 - -t 5.64568 -s 3 -d 2 -p ack -e 40 -c 1 -i 512 -a 1 h -t 5.64568 -s 3 -d 2 -p ack -e 40 -c 1 -i 512 -a 1 r -t 5.64608 -s 3 -d 2 -p ack -e 40 -c 1 -i 491 -a 1 + -t 5.64608 -s 2 -d 0 -p ack -e 40 -c 1 -i 491 -a 1 - -t 5.64608 -s 2 -d 0 -p ack -e 40 -c 1 -i 491 -a 1 h -t 5.64608 -s 2 -d 0 -p ack -e 40 -c 1 -i 491 -a 1 r -t 5.64712 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 510 -a 1 + -t 5.64712 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 510 -a 1 r -t 5.64812 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 511 -a 1 + -t 5.64812 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 511 -a 1 r -t 5.65112 -s 2 -d 0 -p ack -e 40 -c 1 -i 491 -a 1 + -t 5.65112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 513 -a 1 - -t 5.65112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 513 -a 1 h -t 5.65112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 513 -a 1 + -t 5.65112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 514 -a 1 - -t 5.65212 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 514 -a 1 h -t 5.65212 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 514 -a 1 - -t 5.65568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 501 -a 1 h -t 5.65568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 501 -a 1 r -t 5.65568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 476 -a 1 + -t 5.65568 -s 3 -d 2 -p ack -e 40 -c 1 -i 515 -a 1 - -t 5.65568 -s 3 -d 2 -p ack -e 40 -c 1 -i 515 -a 1 h -t 5.65568 -s 3 -d 2 -p ack -e 40 -c 1 -i 515 -a 1 r -t 5.65608 -s 3 -d 2 -p ack -e 40 -c 1 -i 493 -a 1 + -t 5.65608 -s 2 -d 0 -p ack -e 40 -c 1 -i 493 -a 1 - -t 5.65608 -s 2 -d 0 -p ack -e 40 -c 1 -i 493 -a 1 h -t 5.65608 -s 2 -d 0 -p ack -e 40 -c 1 -i 493 -a 1 r -t 5.65712 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 513 -a 1 + -t 5.65712 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 513 -a 1 r -t 5.65812 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 514 -a 1 + -t 5.65812 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 514 -a 1 d -t 5.65812 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 514 -a 1 r -t 5.66112 -s 2 -d 0 -p ack -e 40 -c 1 -i 493 -a 1 + -t 5.66112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 516 -a 1 - -t 5.66112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 516 -a 1 h -t 5.66112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 516 -a 1 + -t 5.66112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 517 -a 1 - -t 5.66212 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 517 -a 1 h -t 5.66212 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 517 -a 1 - -t 5.66568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 504 -a 1 h -t 5.66568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 504 -a 1 r -t 5.66568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 478 -a 1 + -t 5.66568 -s 3 -d 2 -p ack -e 40 -c 1 -i 518 -a 1 - -t 5.66568 -s 3 -d 2 -p ack -e 40 -c 1 -i 518 -a 1 h -t 5.66568 -s 3 -d 2 -p ack -e 40 -c 1 -i 518 -a 1 r -t 5.66608 -s 3 -d 2 -p ack -e 40 -c 1 -i 495 -a 1 + -t 5.66608 -s 2 -d 0 -p ack -e 40 -c 1 -i 495 -a 1 - -t 5.66608 -s 2 -d 0 -p ack -e 40 -c 1 -i 495 -a 1 h -t 5.66608 -s 2 -d 0 -p ack -e 40 -c 1 -i 495 -a 1 r -t 5.66712 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 516 -a 1 + -t 5.66712 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 516 -a 1 r -t 5.66812 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 517 -a 1 + -t 5.66812 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 517 -a 1 d -t 5.66812 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 517 -a 1 r -t 5.67112 -s 2 -d 0 -p ack -e 40 -c 1 -i 495 -a 1 + -t 5.67112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 519 -a 1 - -t 5.67112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 519 -a 1 h -t 5.67112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 519 -a 1 + -t 5.67112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 520 -a 1 - -t 5.67212 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 520 -a 1 h -t 5.67212 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 520 -a 1 - -t 5.67568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 505 -a 1 h -t 5.67568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 505 -a 1 r -t 5.67568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 479 -a 1 + -t 5.67568 -s 3 -d 2 -p ack -e 40 -c 1 -i 521 -a 1 - -t 5.67568 -s 3 -d 2 -p ack -e 40 -c 1 -i 521 -a 1 h -t 5.67568 -s 3 -d 2 -p ack -e 40 -c 1 -i 521 -a 1 r -t 5.67608 -s 3 -d 2 -p ack -e 40 -c 1 -i 496 -a 1 + -t 5.67608 -s 2 -d 0 -p ack -e 40 -c 1 -i 496 -a 1 - -t 5.67608 -s 2 -d 0 -p ack -e 40 -c 1 -i 496 -a 1 h -t 5.67608 -s 2 -d 0 -p ack -e 40 -c 1 -i 496 -a 1 r -t 5.67712 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 519 -a 1 + -t 5.67712 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 519 -a 1 r -t 5.67812 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 520 -a 1 + -t 5.67812 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 520 -a 1 d -t 5.67812 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 520 -a 1 r -t 5.68112 -s 2 -d 0 -p ack -e 40 -c 1 -i 496 -a 1 + -t 5.68112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 522 -a 1 - -t 5.68112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 522 -a 1 h -t 5.68112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 522 -a 1 + -t 5.68112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 523 -a 1 - -t 5.68212 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 523 -a 1 h -t 5.68212 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 523 -a 1 - -t 5.68568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 507 -a 1 h -t 5.68568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 507 -a 1 r -t 5.68568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 483 -a 1 + -t 5.68568 -s 3 -d 2 -p ack -e 40 -c 1 -i 524 -a 1 - -t 5.68568 -s 3 -d 2 -p ack -e 40 -c 1 -i 524 -a 1 h -t 5.68568 -s 3 -d 2 -p ack -e 40 -c 1 -i 524 -a 1 r -t 5.68608 -s 3 -d 2 -p ack -e 40 -c 1 -i 497 -a 1 + -t 5.68608 -s 2 -d 0 -p ack -e 40 -c 1 -i 497 -a 1 - -t 5.68608 -s 2 -d 0 -p ack -e 40 -c 1 -i 497 -a 1 h -t 5.68608 -s 2 -d 0 -p ack -e 40 -c 1 -i 497 -a 1 r -t 5.68712 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 522 -a 1 + -t 5.68712 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 522 -a 1 r -t 5.68812 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 523 -a 1 + -t 5.68812 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 523 -a 1 d -t 5.68812 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 523 -a 1 r -t 5.69112 -s 2 -d 0 -p ack -e 40 -c 1 -i 497 -a 1 + -t 5.69112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 525 -a 1 - -t 5.69112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 525 -a 1 h -t 5.69112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 525 -a 1 + -t 5.69112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 526 -a 1 - -t 5.69212 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 526 -a 1 h -t 5.69212 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 526 -a 1 - -t 5.69568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 508 -a 1 h -t 5.69568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 508 -a 1 r -t 5.69568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 484 -a 1 + -t 5.69568 -s 3 -d 2 -p ack -e 40 -c 1 -i 527 -a 1 - -t 5.69568 -s 3 -d 2 -p ack -e 40 -c 1 -i 527 -a 1 h -t 5.69568 -s 3 -d 2 -p ack -e 40 -c 1 -i 527 -a 1 r -t 5.69608 -s 3 -d 2 -p ack -e 40 -c 1 -i 498 -a 1 + -t 5.69608 -s 2 -d 0 -p ack -e 40 -c 1 -i 498 -a 1 - -t 5.69608 -s 2 -d 0 -p ack -e 40 -c 1 -i 498 -a 1 h -t 5.69608 -s 2 -d 0 -p ack -e 40 -c 1 -i 498 -a 1 r -t 5.69712 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 525 -a 1 + -t 5.69712 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 525 -a 1 r -t 5.69812 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 526 -a 1 + -t 5.69812 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 526 -a 1 d -t 5.69812 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 526 -a 1 r -t 5.70112 -s 2 -d 0 -p ack -e 40 -c 1 -i 498 -a 1 + -t 5.70112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 528 -a 1 - -t 5.70112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 528 -a 1 h -t 5.70112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 528 -a 1 - -t 5.70568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 510 -a 1 h -t 5.70568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 510 -a 1 r -t 5.70568 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 488 -a 2 + -t 5.70568 -s 3 -d 2 -p ack -e 40 -c 2 -i 529 -a 2 - -t 5.70568 -s 3 -d 2 -p ack -e 40 -c 2 -i 529 -a 2 h -t 5.70568 -s 3 -d 2 -p ack -e 40 -c 2 -i 529 -a 2 r -t 5.70608 -s 3 -d 2 -p ack -e 40 -c 1 -i 502 -a 1 + -t 5.70608 -s 2 -d 0 -p ack -e 40 -c 1 -i 502 -a 1 - -t 5.70608 -s 2 -d 0 -p ack -e 40 -c 1 -i 502 -a 1 h -t 5.70608 -s 2 -d 0 -p ack -e 40 -c 1 -i 502 -a 1 r -t 5.70712 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 528 -a 1 + -t 5.70712 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 528 -a 1 r -t 5.71112 -s 2 -d 0 -p ack -e 40 -c 1 -i 502 -a 1 + -t 5.71112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 530 -a 1 - -t 5.71112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 530 -a 1 h -t 5.71112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 530 -a 1 + -t 5.71112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 531 -a 1 - -t 5.71212 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 531 -a 1 h -t 5.71212 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 531 -a 1 - -t 5.71568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 511 -a 1 h -t 5.71568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 511 -a 1 r -t 5.71568 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 490 -a 2 + -t 5.71568 -s 3 -d 2 -p ack -e 40 -c 2 -i 532 -a 2 - -t 5.71568 -s 3 -d 2 -p ack -e 40 -c 2 -i 532 -a 2 h -t 5.71568 -s 3 -d 2 -p ack -e 40 -c 2 -i 532 -a 2 r -t 5.71608 -s 3 -d 2 -p ack -e 40 -c 1 -i 503 -a 1 + -t 5.71608 -s 2 -d 0 -p ack -e 40 -c 1 -i 503 -a 1 - -t 5.71608 -s 2 -d 0 -p ack -e 40 -c 1 -i 503 -a 1 h -t 5.71608 -s 2 -d 0 -p ack -e 40 -c 1 -i 503 -a 1 r -t 5.71712 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 530 -a 1 + -t 5.71712 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 530 -a 1 r -t 5.71812 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 531 -a 1 + -t 5.71812 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 531 -a 1 d -t 5.71812 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 531 -a 1 r -t 5.72112 -s 2 -d 0 -p ack -e 40 -c 1 -i 503 -a 1 - -t 5.72568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 513 -a 1 h -t 5.72568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 513 -a 1 r -t 5.72568 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 492 -a 2 + -t 5.72568 -s 3 -d 2 -p ack -e 40 -c 2 -i 533 -a 2 - -t 5.72568 -s 3 -d 2 -p ack -e 40 -c 2 -i 533 -a 2 h -t 5.72568 -s 3 -d 2 -p ack -e 40 -c 2 -i 533 -a 2 r -t 5.72608 -s 3 -d 2 -p ack -e 40 -c 1 -i 506 -a 1 + -t 5.72608 -s 2 -d 0 -p ack -e 40 -c 1 -i 506 -a 1 - -t 5.72608 -s 2 -d 0 -p ack -e 40 -c 1 -i 506 -a 1 h -t 5.72608 -s 2 -d 0 -p ack -e 40 -c 1 -i 506 -a 1 r -t 5.73112 -s 2 -d 0 -p ack -e 40 -c 1 -i 506 -a 1 + -t 5.73112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 534 -a 1 - -t 5.73112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 534 -a 1 h -t 5.73112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 534 -a 1 + -t 5.73112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 535 -a 1 - -t 5.73212 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 535 -a 1 h -t 5.73212 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 535 -a 1 - -t 5.73568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 516 -a 1 h -t 5.73568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 516 -a 1 r -t 5.73568 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 494 -a 2 + -t 5.73568 -s 3 -d 2 -p ack -e 40 -c 2 -i 536 -a 2 - -t 5.73568 -s 3 -d 2 -p ack -e 40 -c 2 -i 536 -a 2 h -t 5.73568 -s 3 -d 2 -p ack -e 40 -c 2 -i 536 -a 2 r -t 5.73608 -s 3 -d 2 -p ack -e 40 -c 1 -i 509 -a 1 + -t 5.73608 -s 2 -d 0 -p ack -e 40 -c 1 -i 509 -a 1 - -t 5.73608 -s 2 -d 0 -p ack -e 40 -c 1 -i 509 -a 1 h -t 5.73608 -s 2 -d 0 -p ack -e 40 -c 1 -i 509 -a 1 r -t 5.73712 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 534 -a 1 + -t 5.73712 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 534 -a 1 r -t 5.73812 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 535 -a 1 + -t 5.73812 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 535 -a 1 r -t 5.74112 -s 2 -d 0 -p ack -e 40 -c 1 -i 509 -a 1 - -t 5.74568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 519 -a 1 h -t 5.74568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 519 -a 1 r -t 5.74568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 499 -a 1 + -t 5.74568 -s 3 -d 2 -p ack -e 40 -c 1 -i 537 -a 1 - -t 5.74568 -s 3 -d 2 -p ack -e 40 -c 1 -i 537 -a 1 h -t 5.74568 -s 3 -d 2 -p ack -e 40 -c 1 -i 537 -a 1 r -t 5.74608 -s 3 -d 2 -p ack -e 40 -c 1 -i 512 -a 1 + -t 5.74608 -s 2 -d 0 -p ack -e 40 -c 1 -i 512 -a 1 - -t 5.74608 -s 2 -d 0 -p ack -e 40 -c 1 -i 512 -a 1 h -t 5.74608 -s 2 -d 0 -p ack -e 40 -c 1 -i 512 -a 1 r -t 5.75112 -s 2 -d 0 -p ack -e 40 -c 1 -i 512 -a 1 - -t 5.75568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 522 -a 1 h -t 5.75568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 522 -a 1 r -t 5.75568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 500 -a 1 + -t 5.75568 -s 3 -d 2 -p ack -e 40 -c 1 -i 538 -a 1 - -t 5.75568 -s 3 -d 2 -p ack -e 40 -c 1 -i 538 -a 1 h -t 5.75568 -s 3 -d 2 -p ack -e 40 -c 1 -i 538 -a 1 r -t 5.75608 -s 3 -d 2 -p ack -e 40 -c 1 -i 515 -a 1 + -t 5.75608 -s 2 -d 0 -p ack -e 40 -c 1 -i 515 -a 1 - -t 5.75608 -s 2 -d 0 -p ack -e 40 -c 1 -i 515 -a 1 h -t 5.75608 -s 2 -d 0 -p ack -e 40 -c 1 -i 515 -a 1 r -t 5.76112 -s 2 -d 0 -p ack -e 40 -c 1 -i 515 -a 1 - -t 5.76568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 525 -a 1 h -t 5.76568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 525 -a 1 r -t 5.76568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 501 -a 1 + -t 5.76568 -s 3 -d 2 -p ack -e 40 -c 1 -i 539 -a 1 - -t 5.76568 -s 3 -d 2 -p ack -e 40 -c 1 -i 539 -a 1 h -t 5.76568 -s 3 -d 2 -p ack -e 40 -c 1 -i 539 -a 1 r -t 5.76608 -s 3 -d 2 -p ack -e 40 -c 1 -i 518 -a 1 + -t 5.76608 -s 2 -d 0 -p ack -e 40 -c 1 -i 518 -a 1 - -t 5.76608 -s 2 -d 0 -p ack -e 40 -c 1 -i 518 -a 1 h -t 5.76608 -s 2 -d 0 -p ack -e 40 -c 1 -i 518 -a 1 r -t 5.77112 -s 2 -d 0 -p ack -e 40 -c 1 -i 518 -a 1 - -t 5.77568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 528 -a 1 h -t 5.77568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 528 -a 1 r -t 5.77568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 504 -a 1 + -t 5.77568 -s 3 -d 2 -p ack -e 40 -c 1 -i 540 -a 1 - -t 5.77568 -s 3 -d 2 -p ack -e 40 -c 1 -i 540 -a 1 h -t 5.77568 -s 3 -d 2 -p ack -e 40 -c 1 -i 540 -a 1 r -t 5.77608 -s 3 -d 2 -p ack -e 40 -c 1 -i 521 -a 1 + -t 5.77608 -s 2 -d 0 -p ack -e 40 -c 1 -i 521 -a 1 - -t 5.77608 -s 2 -d 0 -p ack -e 40 -c 1 -i 521 -a 1 h -t 5.77608 -s 2 -d 0 -p ack -e 40 -c 1 -i 521 -a 1 r -t 5.78112 -s 2 -d 0 -p ack -e 40 -c 1 -i 521 -a 1 - -t 5.78568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 530 -a 1 h -t 5.78568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 530 -a 1 r -t 5.78568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 505 -a 1 + -t 5.78568 -s 3 -d 2 -p ack -e 40 -c 1 -i 541 -a 1 - -t 5.78568 -s 3 -d 2 -p ack -e 40 -c 1 -i 541 -a 1 h -t 5.78568 -s 3 -d 2 -p ack -e 40 -c 1 -i 541 -a 1 r -t 5.78608 -s 3 -d 2 -p ack -e 40 -c 1 -i 524 -a 1 + -t 5.78608 -s 2 -d 0 -p ack -e 40 -c 1 -i 524 -a 1 - -t 5.78608 -s 2 -d 0 -p ack -e 40 -c 1 -i 524 -a 1 h -t 5.78608 -s 2 -d 0 -p ack -e 40 -c 1 -i 524 -a 1 r -t 5.79112 -s 2 -d 0 -p ack -e 40 -c 1 -i 524 -a 1 - -t 5.79568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 534 -a 1 h -t 5.79568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 534 -a 1 r -t 5.79568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 507 -a 1 + -t 5.79568 -s 3 -d 2 -p ack -e 40 -c 1 -i 542 -a 1 - -t 5.79568 -s 3 -d 2 -p ack -e 40 -c 1 -i 542 -a 1 h -t 5.79568 -s 3 -d 2 -p ack -e 40 -c 1 -i 542 -a 1 r -t 5.79608 -s 3 -d 2 -p ack -e 40 -c 1 -i 527 -a 1 + -t 5.79608 -s 2 -d 0 -p ack -e 40 -c 1 -i 527 -a 1 - -t 5.79608 -s 2 -d 0 -p ack -e 40 -c 1 -i 527 -a 1 h -t 5.79608 -s 2 -d 0 -p ack -e 40 -c 1 -i 527 -a 1 r -t 5.80112 -s 2 -d 0 -p ack -e 40 -c 1 -i 527 -a 1 - -t 5.80568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 535 -a 1 h -t 5.80568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 535 -a 1 r -t 5.80568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 508 -a 1 + -t 5.80568 -s 3 -d 2 -p ack -e 40 -c 1 -i 543 -a 1 - -t 5.80568 -s 3 -d 2 -p ack -e 40 -c 1 -i 543 -a 1 h -t 5.80568 -s 3 -d 2 -p ack -e 40 -c 1 -i 543 -a 1 r -t 5.80608 -s 3 -d 2 -p ack -e 40 -c 2 -i 529 -a 2 + -t 5.80608 -s 2 -d 1 -p ack -e 40 -c 2 -i 529 -a 2 - -t 5.80608 -s 2 -d 1 -p ack -e 40 -c 2 -i 529 -a 2 h -t 5.80608 -s 2 -d 1 -p ack -e 40 -c 2 -i 529 -a 2 r -t 5.81112 -s 2 -d 1 -p ack -e 40 -c 2 -i 529 -a 2 r -t 5.81568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 510 -a 1 + -t 5.81568 -s 3 -d 2 -p ack -e 40 -c 1 -i 544 -a 1 - -t 5.81568 -s 3 -d 2 -p ack -e 40 -c 1 -i 544 -a 1 h -t 5.81568 -s 3 -d 2 -p ack -e 40 -c 1 -i 544 -a 1 r -t 5.81608 -s 3 -d 2 -p ack -e 40 -c 2 -i 532 -a 2 + -t 5.81608 -s 2 -d 1 -p ack -e 40 -c 2 -i 532 -a 2 - -t 5.81608 -s 2 -d 1 -p ack -e 40 -c 2 -i 532 -a 2 h -t 5.81608 -s 2 -d 1 -p ack -e 40 -c 2 -i 532 -a 2 r -t 5.82112 -s 2 -d 1 -p ack -e 40 -c 2 -i 532 -a 2 r -t 5.82568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 511 -a 1 + -t 5.82568 -s 3 -d 2 -p ack -e 40 -c 1 -i 545 -a 1 - -t 5.82568 -s 3 -d 2 -p ack -e 40 -c 1 -i 545 -a 1 h -t 5.82568 -s 3 -d 2 -p ack -e 40 -c 1 -i 545 -a 1 r -t 5.82608 -s 3 -d 2 -p ack -e 40 -c 2 -i 533 -a 2 + -t 5.82608 -s 2 -d 1 -p ack -e 40 -c 2 -i 533 -a 2 - -t 5.82608 -s 2 -d 1 -p ack -e 40 -c 2 -i 533 -a 2 h -t 5.82608 -s 2 -d 1 -p ack -e 40 -c 2 -i 533 -a 2 r -t 5.83112 -s 2 -d 1 -p ack -e 40 -c 2 -i 533 -a 2 + -t 5.83112 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 546 -a 2 - -t 5.83112 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 546 -a 2 h -t 5.83112 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 546 -a 2 r -t 5.83568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 513 -a 1 + -t 5.83568 -s 3 -d 2 -p ack -e 40 -c 1 -i 547 -a 1 - -t 5.83568 -s 3 -d 2 -p ack -e 40 -c 1 -i 547 -a 1 h -t 5.83568 -s 3 -d 2 -p ack -e 40 -c 1 -i 547 -a 1 r -t 5.83608 -s 3 -d 2 -p ack -e 40 -c 2 -i 536 -a 2 + -t 5.83608 -s 2 -d 1 -p ack -e 40 -c 2 -i 536 -a 2 - -t 5.83608 -s 2 -d 1 -p ack -e 40 -c 2 -i 536 -a 2 h -t 5.83608 -s 2 -d 1 -p ack -e 40 -c 2 -i 536 -a 2 r -t 5.83712 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 546 -a 2 + -t 5.83712 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 546 -a 2 - -t 5.83712 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 546 -a 2 h -t 5.83712 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 546 -a 2 r -t 5.84112 -s 2 -d 1 -p ack -e 40 -c 2 -i 536 -a 2 r -t 5.84568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 516 -a 1 + -t 5.84568 -s 3 -d 2 -p ack -e 40 -c 1 -i 548 -a 1 - -t 5.84568 -s 3 -d 2 -p ack -e 40 -c 1 -i 548 -a 1 h -t 5.84568 -s 3 -d 2 -p ack -e 40 -c 1 -i 548 -a 1 r -t 5.84608 -s 3 -d 2 -p ack -e 40 -c 1 -i 537 -a 1 + -t 5.84608 -s 2 -d 0 -p ack -e 40 -c 1 -i 537 -a 1 - -t 5.84608 -s 2 -d 0 -p ack -e 40 -c 1 -i 537 -a 1 h -t 5.84608 -s 2 -d 0 -p ack -e 40 -c 1 -i 537 -a 1 + -t 5.84987 -s 0 -d 2 -p rtProtoDV -e 5 -c 0 -i 549 -a 0 - -t 5.84987 -s 0 -d 2 -p rtProtoDV -e 5 -c 0 -i 549 -a 0 h -t 5.84987 -s 0 -d 2 -p rtProtoDV -e 5 -c 0 -i 549 -a 0 r -t 5.85112 -s 2 -d 0 -p ack -e 40 -c 1 -i 537 -a 1 r -t 5.85487 -s 0 -d 2 -p rtProtoDV -e 5 -c 0 -i 549 -a 0 r -t 5.85568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 519 -a 1 + -t 5.85568 -s 3 -d 2 -p ack -e 40 -c 1 -i 550 -a 1 - -t 5.85568 -s 3 -d 2 -p ack -e 40 -c 1 -i 550 -a 1 h -t 5.85568 -s 3 -d 2 -p ack -e 40 -c 1 -i 550 -a 1 r -t 5.85608 -s 3 -d 2 -p ack -e 40 -c 1 -i 538 -a 1 + -t 5.85608 -s 2 -d 0 -p ack -e 40 -c 1 -i 538 -a 1 - -t 5.85608 -s 2 -d 0 -p ack -e 40 -c 1 -i 538 -a 1 h -t 5.85608 -s 2 -d 0 -p ack -e 40 -c 1 -i 538 -a 1 r -t 5.86112 -s 2 -d 0 -p ack -e 40 -c 1 -i 538 -a 1 r -t 5.86568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 522 -a 1 + -t 5.86568 -s 3 -d 2 -p ack -e 40 -c 1 -i 551 -a 1 - -t 5.86568 -s 3 -d 2 -p ack -e 40 -c 1 -i 551 -a 1 h -t 5.86568 -s 3 -d 2 -p ack -e 40 -c 1 -i 551 -a 1 r -t 5.86608 -s 3 -d 2 -p ack -e 40 -c 1 -i 539 -a 1 + -t 5.86608 -s 2 -d 0 -p ack -e 40 -c 1 -i 539 -a 1 - -t 5.86608 -s 2 -d 0 -p ack -e 40 -c 1 -i 539 -a 1 h -t 5.86608 -s 2 -d 0 -p ack -e 40 -c 1 -i 539 -a 1 r -t 5.87112 -s 2 -d 0 -p ack -e 40 -c 1 -i 539 -a 1 r -t 5.87568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 525 -a 1 + -t 5.87568 -s 3 -d 2 -p ack -e 40 -c 1 -i 552 -a 1 - -t 5.87568 -s 3 -d 2 -p ack -e 40 -c 1 -i 552 -a 1 h -t 5.87568 -s 3 -d 2 -p ack -e 40 -c 1 -i 552 -a 1 r -t 5.87608 -s 3 -d 2 -p ack -e 40 -c 1 -i 540 -a 1 + -t 5.87608 -s 2 -d 0 -p ack -e 40 -c 1 -i 540 -a 1 - -t 5.87608 -s 2 -d 0 -p ack -e 40 -c 1 -i 540 -a 1 h -t 5.87608 -s 2 -d 0 -p ack -e 40 -c 1 -i 540 -a 1 r -t 5.88112 -s 2 -d 0 -p ack -e 40 -c 1 -i 540 -a 1 r -t 5.88568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 528 -a 1 + -t 5.88568 -s 3 -d 2 -p ack -e 40 -c 1 -i 553 -a 1 - -t 5.88568 -s 3 -d 2 -p ack -e 40 -c 1 -i 553 -a 1 h -t 5.88568 -s 3 -d 2 -p ack -e 40 -c 1 -i 553 -a 1 r -t 5.88608 -s 3 -d 2 -p ack -e 40 -c 1 -i 541 -a 1 + -t 5.88608 -s 2 -d 0 -p ack -e 40 -c 1 -i 541 -a 1 - -t 5.88608 -s 2 -d 0 -p ack -e 40 -c 1 -i 541 -a 1 h -t 5.88608 -s 2 -d 0 -p ack -e 40 -c 1 -i 541 -a 1 r -t 5.89112 -s 2 -d 0 -p ack -e 40 -c 1 -i 541 -a 1 r -t 5.89568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 530 -a 1 + -t 5.89568 -s 3 -d 2 -p ack -e 40 -c 1 -i 554 -a 1 - -t 5.89568 -s 3 -d 2 -p ack -e 40 -c 1 -i 554 -a 1 h -t 5.89568 -s 3 -d 2 -p ack -e 40 -c 1 -i 554 -a 1 r -t 5.89608 -s 3 -d 2 -p ack -e 40 -c 1 -i 542 -a 1 + -t 5.89608 -s 2 -d 0 -p ack -e 40 -c 1 -i 542 -a 1 - -t 5.89608 -s 2 -d 0 -p ack -e 40 -c 1 -i 542 -a 1 h -t 5.89608 -s 2 -d 0 -p ack -e 40 -c 1 -i 542 -a 1 r -t 5.90112 -s 2 -d 0 -p ack -e 40 -c 1 -i 542 -a 1 r -t 5.90568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 534 -a 1 + -t 5.90568 -s 3 -d 2 -p ack -e 40 -c 1 -i 555 -a 1 - -t 5.90568 -s 3 -d 2 -p ack -e 40 -c 1 -i 555 -a 1 h -t 5.90568 -s 3 -d 2 -p ack -e 40 -c 1 -i 555 -a 1 r -t 5.90608 -s 3 -d 2 -p ack -e 40 -c 1 -i 543 -a 1 + -t 5.90608 -s 2 -d 0 -p ack -e 40 -c 1 -i 543 -a 1 - -t 5.90608 -s 2 -d 0 -p ack -e 40 -c 1 -i 543 -a 1 h -t 5.90608 -s 2 -d 0 -p ack -e 40 -c 1 -i 543 -a 1 r -t 5.91112 -s 2 -d 0 -p ack -e 40 -c 1 -i 543 -a 1 r -t 5.91568 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 535 -a 1 + -t 5.91568 -s 3 -d 2 -p ack -e 40 -c 1 -i 556 -a 1 - -t 5.91568 -s 3 -d 2 -p ack -e 40 -c 1 -i 556 -a 1 h -t 5.91568 -s 3 -d 2 -p ack -e 40 -c 1 -i 556 -a 1 r -t 5.91608 -s 3 -d 2 -p ack -e 40 -c 1 -i 544 -a 1 + -t 5.91608 -s 2 -d 0 -p ack -e 40 -c 1 -i 544 -a 1 - -t 5.91608 -s 2 -d 0 -p ack -e 40 -c 1 -i 544 -a 1 h -t 5.91608 -s 2 -d 0 -p ack -e 40 -c 1 -i 544 -a 1 r -t 5.92112 -s 2 -d 0 -p ack -e 40 -c 1 -i 544 -a 1 r -t 5.92608 -s 3 -d 2 -p ack -e 40 -c 1 -i 545 -a 1 + -t 5.92608 -s 2 -d 0 -p ack -e 40 -c 1 -i 545 -a 1 - -t 5.92608 -s 2 -d 0 -p ack -e 40 -c 1 -i 545 -a 1 h -t 5.92608 -s 2 -d 0 -p ack -e 40 -c 1 -i 545 -a 1 r -t 5.93112 -s 2 -d 0 -p ack -e 40 -c 1 -i 545 -a 1 r -t 5.93608 -s 3 -d 2 -p ack -e 40 -c 1 -i 547 -a 1 + -t 5.93608 -s 2 -d 0 -p ack -e 40 -c 1 -i 547 -a 1 - -t 5.93608 -s 2 -d 0 -p ack -e 40 -c 1 -i 547 -a 1 h -t 5.93608 -s 2 -d 0 -p ack -e 40 -c 1 -i 547 -a 1 r -t 5.94112 -s 2 -d 0 -p ack -e 40 -c 1 -i 547 -a 1 r -t 5.94608 -s 3 -d 2 -p ack -e 40 -c 1 -i 548 -a 1 + -t 5.94608 -s 2 -d 0 -p ack -e 40 -c 1 -i 548 -a 1 - -t 5.94608 -s 2 -d 0 -p ack -e 40 -c 1 -i 548 -a 1 h -t 5.94608 -s 2 -d 0 -p ack -e 40 -c 1 -i 548 -a 1 r -t 5.94712 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 546 -a 2 + -t 5.94712 -s 3 -d 2 -p ack -e 40 -c 2 -i 557 -a 2 - -t 5.94712 -s 3 -d 2 -p ack -e 40 -c 2 -i 557 -a 2 h -t 5.94712 -s 3 -d 2 -p ack -e 40 -c 2 -i 557 -a 2 r -t 5.95112 -s 2 -d 0 -p ack -e 40 -c 1 -i 548 -a 1 + -t 5.95501 -s 3 -d 4 -p rtProtoDV -e 5 -c 0 -i 558 -a 0 - -t 5.95501 -s 3 -d 4 -p rtProtoDV -e 5 -c 0 -i 558 -a 0 h -t 5.95501 -s 3 -d 4 -p rtProtoDV -e 5 -c 0 -i 558 -a 0 + -t 5.95501 -s 3 -d 2 -p rtProtoDV -e 5 -c 0 -i 559 -a 0 - -t 5.95501 -s 3 -d 2 -p rtProtoDV -e 5 -c 0 -i 559 -a 0 h -t 5.95501 -s 3 -d 2 -p rtProtoDV -e 5 -c 0 -i 559 -a 0 r -t 5.95608 -s 3 -d 2 -p ack -e 40 -c 1 -i 550 -a 1 + -t 5.95608 -s 2 -d 0 -p ack -e 40 -c 1 -i 550 -a 1 - -t 5.95608 -s 2 -d 0 -p ack -e 40 -c 1 -i 550 -a 1 h -t 5.95608 -s 2 -d 0 -p ack -e 40 -c 1 -i 550 -a 1 r -t 5.96112 -s 2 -d 0 -p ack -e 40 -c 1 -i 550 -a 1 + -t 5.96381 -s 4 -d 3 -p rtProtoDV -e 5 -c 0 -i 560 -a 0 - -t 5.96381 -s 4 -d 3 -p rtProtoDV -e 5 -c 0 -i 560 -a 0 h -t 5.96381 -s 4 -d 3 -p rtProtoDV -e 5 -c 0 -i 560 -a 0 + -t 5.96381 -s 4 -d 2 -p rtProtoDV -e 5 -c 0 -i 561 -a 0 - -t 5.96381 -s 4 -d 2 -p rtProtoDV -e 5 -c 0 -i 561 -a 0 h -t 5.96381 -s 4 -d 2 -p rtProtoDV -e 5 -c 0 -i 561 -a 0 r -t 5.96608 -s 3 -d 2 -p ack -e 40 -c 1 -i 551 -a 1 + -t 5.96608 -s 2 -d 0 -p ack -e 40 -c 1 -i 551 -a 1 - -t 5.96608 -s 2 -d 0 -p ack -e 40 -c 1 -i 551 -a 1 h -t 5.96608 -s 2 -d 0 -p ack -e 40 -c 1 -i 551 -a 1 r -t 5.97112 -s 2 -d 0 -p ack -e 40 -c 1 -i 551 -a 1 r -t 5.97608 -s 3 -d 2 -p ack -e 40 -c 1 -i 552 -a 1 + -t 5.97608 -s 2 -d 0 -p ack -e 40 -c 1 -i 552 -a 1 - -t 5.97608 -s 2 -d 0 -p ack -e 40 -c 1 -i 552 -a 1 h -t 5.97608 -s 2 -d 0 -p ack -e 40 -c 1 -i 552 -a 1 r -t 5.98112 -s 2 -d 0 -p ack -e 40 -c 1 -i 552 -a 1 r -t 5.98608 -s 3 -d 2 -p ack -e 40 -c 1 -i 553 -a 1 + -t 5.98608 -s 2 -d 0 -p ack -e 40 -c 1 -i 553 -a 1 - -t 5.98608 -s 2 -d 0 -p ack -e 40 -c 1 -i 553 -a 1 h -t 5.98608 -s 2 -d 0 -p ack -e 40 -c 1 -i 553 -a 1 r -t 5.99112 -s 2 -d 0 -p ack -e 40 -c 1 -i 553 -a 1 r -t 5.99608 -s 3 -d 2 -p ack -e 40 -c 1 -i 554 -a 1 + -t 5.99608 -s 2 -d 0 -p ack -e 40 -c 1 -i 554 -a 1 - -t 5.99608 -s 2 -d 0 -p ack -e 40 -c 1 -i 554 -a 1 h -t 5.99608 -s 2 -d 0 -p ack -e 40 -c 1 -i 554 -a 1 r -t 6.00112 -s 2 -d 0 -p ack -e 40 -c 1 -i 554 -a 1 r -t 6.00608 -s 3 -d 2 -p ack -e 40 -c 1 -i 555 -a 1 + -t 6.00608 -s 2 -d 0 -p ack -e 40 -c 1 -i 555 -a 1 - -t 6.00608 -s 2 -d 0 -p ack -e 40 -c 1 -i 555 -a 1 h -t 6.00608 -s 2 -d 0 -p ack -e 40 -c 1 -i 555 -a 1 r -t 6.01112 -s 2 -d 0 -p ack -e 40 -c 1 -i 555 -a 1 r -t 6.01608 -s 3 -d 2 -p ack -e 40 -c 1 -i 556 -a 1 + -t 6.01608 -s 2 -d 0 -p ack -e 40 -c 1 -i 556 -a 1 - -t 6.01608 -s 2 -d 0 -p ack -e 40 -c 1 -i 556 -a 1 h -t 6.01608 -s 2 -d 0 -p ack -e 40 -c 1 -i 556 -a 1 r -t 6.02112 -s 2 -d 0 -p ack -e 40 -c 1 -i 556 -a 1 r -t 6.04752 -s 3 -d 2 -p ack -e 40 -c 2 -i 557 -a 2 + -t 6.04752 -s 2 -d 1 -p ack -e 40 -c 2 -i 557 -a 2 - -t 6.04752 -s 2 -d 1 -p ack -e 40 -c 2 -i 557 -a 2 h -t 6.04752 -s 2 -d 1 -p ack -e 40 -c 2 -i 557 -a 2 r -t 6.05256 -s 2 -d 1 -p ack -e 40 -c 2 -i 557 -a 2 + -t 6.05256 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 562 -a 2 - -t 6.05256 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 562 -a 2 h -t 6.05256 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 562 -a 2 + -t 6.05256 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 563 -a 2 - -t 6.05356 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 563 -a 2 h -t 6.05356 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 563 -a 2 r -t 6.05506 -s 3 -d 2 -p rtProtoDV -e 5 -c 0 -i 559 -a 0 r -t 6.05506 -s 3 -d 4 -p rtProtoDV -e 5 -c 0 -i 558 -a 0 r -t 6.05856 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 562 -a 2 + -t 6.05856 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 562 -a 2 - -t 6.05856 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 562 -a 2 h -t 6.05856 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 562 -a 2 r -t 6.05956 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 563 -a 2 + -t 6.05956 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 563 -a 2 r -t 6.06386 -s 4 -d 3 -p rtProtoDV -e 5 -c 0 -i 560 -a 0 r -t 6.06386 -s 4 -d 2 -p rtProtoDV -e 5 -c 0 -i 561 -a 0 - -t 6.06856 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 563 -a 2 h -t 6.06856 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 563 -a 2 r -t 6.16856 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 562 -a 2 + -t 6.16856 -s 3 -d 2 -p ack -e 40 -c 2 -i 564 -a 2 - -t 6.16856 -s 3 -d 2 -p ack -e 40 -c 2 -i 564 -a 2 h -t 6.16856 -s 3 -d 2 -p ack -e 40 -c 2 -i 564 -a 2 r -t 6.17856 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 563 -a 2 + -t 6.17856 -s 3 -d 2 -p ack -e 40 -c 2 -i 565 -a 2 - -t 6.17856 -s 3 -d 2 -p ack -e 40 -c 2 -i 565 -a 2 h -t 6.17856 -s 3 -d 2 -p ack -e 40 -c 2 -i 565 -a 2 + -t 6.25999 -s 2 -d 3 -p rtProtoDV -e 5 -c 0 -i 566 -a 0 - -t 6.25999 -s 2 -d 3 -p rtProtoDV -e 5 -c 0 -i 566 -a 0 h -t 6.25999 -s 2 -d 3 -p rtProtoDV -e 5 -c 0 -i 566 -a 0 + -t 6.25999 -s 2 -d 1 -p rtProtoDV -e 5 -c 0 -i 567 -a 0 - -t 6.25999 -s 2 -d 1 -p rtProtoDV -e 5 -c 0 -i 567 -a 0 h -t 6.25999 -s 2 -d 1 -p rtProtoDV -e 5 -c 0 -i 567 -a 0 + -t 6.25999 -s 2 -d 4 -p rtProtoDV -e 5 -c 0 -i 568 -a 0 - -t 6.25999 -s 2 -d 4 -p rtProtoDV -e 5 -c 0 -i 568 -a 0 h -t 6.25999 -s 2 -d 4 -p rtProtoDV -e 5 -c 0 -i 568 -a 0 + -t 6.25999 -s 2 -d 0 -p rtProtoDV -e 5 -c 0 -i 569 -a 0 - -t 6.25999 -s 2 -d 0 -p rtProtoDV -e 5 -c 0 -i 569 -a 0 h -t 6.25999 -s 2 -d 0 -p rtProtoDV -e 5 -c 0 -i 569 -a 0 r -t 6.265 -s 2 -d 1 -p rtProtoDV -e 5 -c 0 -i 567 -a 0 r -t 6.265 -s 2 -d 0 -p rtProtoDV -e 5 -c 0 -i 569 -a 0 r -t 6.26896 -s 3 -d 2 -p ack -e 40 -c 2 -i 564 -a 2 + -t 6.26896 -s 2 -d 1 -p ack -e 40 -c 2 -i 564 -a 2 - -t 6.26896 -s 2 -d 1 -p ack -e 40 -c 2 -i 564 -a 2 h -t 6.26896 -s 2 -d 1 -p ack -e 40 -c 2 -i 564 -a 2 r -t 6.274 -s 2 -d 1 -p ack -e 40 -c 2 -i 564 -a 2 + -t 6.274 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 570 -a 2 - -t 6.274 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 570 -a 2 h -t 6.274 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 570 -a 2 r -t 6.27896 -s 3 -d 2 -p ack -e 40 -c 2 -i 565 -a 2 + -t 6.27896 -s 2 -d 1 -p ack -e 40 -c 2 -i 565 -a 2 - -t 6.27896 -s 2 -d 1 -p ack -e 40 -c 2 -i 565 -a 2 h -t 6.27896 -s 2 -d 1 -p ack -e 40 -c 2 -i 565 -a 2 r -t 6.28 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 570 -a 2 + -t 6.28 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 570 -a 2 - -t 6.28 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 570 -a 2 h -t 6.28 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 570 -a 2 r -t 6.284 -s 2 -d 1 -p ack -e 40 -c 2 -i 565 -a 2 + -t 6.284 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 571 -a 2 - -t 6.284 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 571 -a 2 h -t 6.284 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 571 -a 2 r -t 6.29 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 571 -a 2 + -t 6.29 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 571 -a 2 - -t 6.29 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 571 -a 2 h -t 6.29 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 571 -a 2 + -t 6.32643 -s 1 -d 2 -p rtProtoDV -e 5 -c 0 -i 572 -a 0 - -t 6.32643 -s 1 -d 2 -p rtProtoDV -e 5 -c 0 -i 572 -a 0 h -t 6.32643 -s 1 -d 2 -p rtProtoDV -e 5 -c 0 -i 572 -a 0 r -t 6.33144 -s 1 -d 2 -p rtProtoDV -e 5 -c 0 -i 572 -a 0 r -t 6.36004 -s 2 -d 3 -p rtProtoDV -e 5 -c 0 -i 566 -a 0 r -t 6.36004 -s 2 -d 4 -p rtProtoDV -e 5 -c 0 -i 568 -a 0 r -t 6.39 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 570 -a 2 + -t 6.39 -s 3 -d 2 -p ack -e 40 -c 2 -i 573 -a 2 - -t 6.39 -s 3 -d 2 -p ack -e 40 -c 2 -i 573 -a 2 h -t 6.39 -s 3 -d 2 -p ack -e 40 -c 2 -i 573 -a 2 r -t 6.4 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 571 -a 2 + -t 6.4 -s 3 -d 2 -p ack -e 40 -c 2 -i 574 -a 2 - -t 6.4 -s 3 -d 2 -p ack -e 40 -c 2 -i 574 -a 2 h -t 6.4 -s 3 -d 2 -p ack -e 40 -c 2 -i 574 -a 2 r -t 6.4904 -s 3 -d 2 -p ack -e 40 -c 2 -i 573 -a 2 + -t 6.4904 -s 2 -d 1 -p ack -e 40 -c 2 -i 573 -a 2 - -t 6.4904 -s 2 -d 1 -p ack -e 40 -c 2 -i 573 -a 2 h -t 6.4904 -s 2 -d 1 -p ack -e 40 -c 2 -i 573 -a 2 r -t 6.49544 -s 2 -d 1 -p ack -e 40 -c 2 -i 573 -a 2 + -t 6.49544 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 575 -a 2 - -t 6.49544 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 575 -a 2 h -t 6.49544 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 575 -a 2 + -t 6.49544 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 576 -a 2 - -t 6.49644 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 576 -a 2 h -t 6.49644 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 576 -a 2 r -t 6.5004 -s 3 -d 2 -p ack -e 40 -c 2 -i 574 -a 2 + -t 6.5004 -s 2 -d 1 -p ack -e 40 -c 2 -i 574 -a 2 - -t 6.5004 -s 2 -d 1 -p ack -e 40 -c 2 -i 574 -a 2 h -t 6.5004 -s 2 -d 1 -p ack -e 40 -c 2 -i 574 -a 2 r -t 6.50144 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 575 -a 2 + -t 6.50144 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 575 -a 2 - -t 6.50144 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 575 -a 2 h -t 6.50144 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 575 -a 2 r -t 6.50244 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 576 -a 2 + -t 6.50244 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 576 -a 2 r -t 6.50544 -s 2 -d 1 -p ack -e 40 -c 2 -i 574 -a 2 + -t 6.50544 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 577 -a 2 - -t 6.50544 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 577 -a 2 h -t 6.50544 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 577 -a 2 - -t 6.51144 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 576 -a 2 h -t 6.51144 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 576 -a 2 r -t 6.51144 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 577 -a 2 + -t 6.51144 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 577 -a 2 - -t 6.52144 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 577 -a 2 h -t 6.52144 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 577 -a 2 r -t 6.61144 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 575 -a 2 + -t 6.61144 -s 3 -d 2 -p ack -e 40 -c 2 -i 578 -a 2 - -t 6.61144 -s 3 -d 2 -p ack -e 40 -c 2 -i 578 -a 2 h -t 6.61144 -s 3 -d 2 -p ack -e 40 -c 2 -i 578 -a 2 r -t 6.62144 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 576 -a 2 + -t 6.62144 -s 3 -d 2 -p ack -e 40 -c 2 -i 579 -a 2 - -t 6.62144 -s 3 -d 2 -p ack -e 40 -c 2 -i 579 -a 2 h -t 6.62144 -s 3 -d 2 -p ack -e 40 -c 2 -i 579 -a 2 r -t 6.63144 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 577 -a 2 + -t 6.63144 -s 3 -d 2 -p ack -e 40 -c 2 -i 580 -a 2 - -t 6.63144 -s 3 -d 2 -p ack -e 40 -c 2 -i 580 -a 2 h -t 6.63144 -s 3 -d 2 -p ack -e 40 -c 2 -i 580 -a 2 r -t 6.71184 -s 3 -d 2 -p ack -e 40 -c 2 -i 578 -a 2 + -t 6.71184 -s 2 -d 1 -p ack -e 40 -c 2 -i 578 -a 2 - -t 6.71184 -s 2 -d 1 -p ack -e 40 -c 2 -i 578 -a 2 h -t 6.71184 -s 2 -d 1 -p ack -e 40 -c 2 -i 578 -a 2 r -t 6.71688 -s 2 -d 1 -p ack -e 40 -c 2 -i 578 -a 2 + -t 6.71688 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 581 -a 2 - -t 6.71688 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 581 -a 2 h -t 6.71688 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 581 -a 2 r -t 6.72184 -s 3 -d 2 -p ack -e 40 -c 2 -i 579 -a 2 + -t 6.72184 -s 2 -d 1 -p ack -e 40 -c 2 -i 579 -a 2 - -t 6.72184 -s 2 -d 1 -p ack -e 40 -c 2 -i 579 -a 2 h -t 6.72184 -s 2 -d 1 -p ack -e 40 -c 2 -i 579 -a 2 r -t 6.72288 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 581 -a 2 + -t 6.72288 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 581 -a 2 - -t 6.72288 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 581 -a 2 h -t 6.72288 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 581 -a 2 r -t 6.72688 -s 2 -d 1 -p ack -e 40 -c 2 -i 579 -a 2 + -t 6.72688 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 582 -a 2 - -t 6.72688 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 582 -a 2 h -t 6.72688 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 582 -a 2 + -t 6.72688 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 583 -a 2 - -t 6.72788 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 583 -a 2 h -t 6.72788 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 583 -a 2 r -t 6.73184 -s 3 -d 2 -p ack -e 40 -c 2 -i 580 -a 2 + -t 6.73184 -s 2 -d 1 -p ack -e 40 -c 2 -i 580 -a 2 - -t 6.73184 -s 2 -d 1 -p ack -e 40 -c 2 -i 580 -a 2 h -t 6.73184 -s 2 -d 1 -p ack -e 40 -c 2 -i 580 -a 2 r -t 6.73288 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 582 -a 2 + -t 6.73288 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 582 -a 2 - -t 6.73288 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 582 -a 2 h -t 6.73288 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 582 -a 2 r -t 6.73388 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 583 -a 2 + -t 6.73388 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 583 -a 2 r -t 6.73688 -s 2 -d 1 -p ack -e 40 -c 2 -i 580 -a 2 + -t 6.73688 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 584 -a 2 - -t 6.73688 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 584 -a 2 h -t 6.73688 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 584 -a 2 - -t 6.74288 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 583 -a 2 h -t 6.74288 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 583 -a 2 r -t 6.74288 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 584 -a 2 + -t 6.74288 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 584 -a 2 - -t 6.75288 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 584 -a 2 h -t 6.75288 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 584 -a 2 + -t 6.83112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 585 -a 1 - -t 6.83112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 585 -a 1 h -t 6.83112 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 585 -a 1 r -t 6.83288 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 581 -a 2 + -t 6.83288 -s 3 -d 2 -p ack -e 40 -c 2 -i 586 -a 2 - -t 6.83288 -s 3 -d 2 -p ack -e 40 -c 2 -i 586 -a 2 h -t 6.83288 -s 3 -d 2 -p ack -e 40 -c 2 -i 586 -a 2 r -t 6.83712 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 585 -a 1 + -t 6.83712 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 585 -a 1 - -t 6.83712 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 585 -a 1 h -t 6.83712 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 585 -a 1 r -t 6.84288 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 582 -a 2 + -t 6.84288 -s 3 -d 2 -p ack -e 40 -c 2 -i 587 -a 2 - -t 6.84288 -s 3 -d 2 -p ack -e 40 -c 2 -i 587 -a 2 h -t 6.84288 -s 3 -d 2 -p ack -e 40 -c 2 -i 587 -a 2 r -t 6.85288 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 583 -a 2 + -t 6.85288 -s 3 -d 2 -p ack -e 40 -c 2 -i 588 -a 2 - -t 6.85288 -s 3 -d 2 -p ack -e 40 -c 2 -i 588 -a 2 h -t 6.85288 -s 3 -d 2 -p ack -e 40 -c 2 -i 588 -a 2 r -t 6.86288 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 584 -a 2 + -t 6.86288 -s 3 -d 2 -p ack -e 40 -c 2 -i 589 -a 2 - -t 6.86288 -s 3 -d 2 -p ack -e 40 -c 2 -i 589 -a 2 h -t 6.86288 -s 3 -d 2 -p ack -e 40 -c 2 -i 589 -a 2 r -t 6.93328 -s 3 -d 2 -p ack -e 40 -c 2 -i 586 -a 2 + -t 6.93328 -s 2 -d 1 -p ack -e 40 -c 2 -i 586 -a 2 - -t 6.93328 -s 2 -d 1 -p ack -e 40 -c 2 -i 586 -a 2 h -t 6.93328 -s 2 -d 1 -p ack -e 40 -c 2 -i 586 -a 2 r -t 6.93832 -s 2 -d 1 -p ack -e 40 -c 2 -i 586 -a 2 + -t 6.93832 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 590 -a 2 - -t 6.93832 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 590 -a 2 h -t 6.93832 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 590 -a 2 r -t 6.94328 -s 3 -d 2 -p ack -e 40 -c 2 -i 587 -a 2 + -t 6.94328 -s 2 -d 1 -p ack -e 40 -c 2 -i 587 -a 2 - -t 6.94328 -s 2 -d 1 -p ack -e 40 -c 2 -i 587 -a 2 h -t 6.94328 -s 2 -d 1 -p ack -e 40 -c 2 -i 587 -a 2 r -t 6.94432 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 590 -a 2 + -t 6.94432 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 590 -a 2 - -t 6.94432 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 590 -a 2 h -t 6.94432 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 590 -a 2 r -t 6.94712 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 585 -a 1 + -t 6.94712 -s 3 -d 2 -p ack -e 40 -c 1 -i 591 -a 1 - -t 6.94712 -s 3 -d 2 -p ack -e 40 -c 1 -i 591 -a 1 h -t 6.94712 -s 3 -d 2 -p ack -e 40 -c 1 -i 591 -a 1 r -t 6.94832 -s 2 -d 1 -p ack -e 40 -c 2 -i 587 -a 2 + -t 6.94832 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 592 -a 2 - -t 6.94832 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 592 -a 2 h -t 6.94832 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 592 -a 2 r -t 6.95328 -s 3 -d 2 -p ack -e 40 -c 2 -i 588 -a 2 + -t 6.95328 -s 2 -d 1 -p ack -e 40 -c 2 -i 588 -a 2 - -t 6.95328 -s 2 -d 1 -p ack -e 40 -c 2 -i 588 -a 2 h -t 6.95328 -s 2 -d 1 -p ack -e 40 -c 2 -i 588 -a 2 r -t 6.95432 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 592 -a 2 + -t 6.95432 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 592 -a 2 - -t 6.95432 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 592 -a 2 h -t 6.95432 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 592 -a 2 r -t 6.95832 -s 2 -d 1 -p ack -e 40 -c 2 -i 588 -a 2 + -t 6.95832 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 593 -a 2 - -t 6.95832 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 593 -a 2 h -t 6.95832 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 593 -a 2 r -t 6.96328 -s 3 -d 2 -p ack -e 40 -c 2 -i 589 -a 2 + -t 6.96328 -s 2 -d 1 -p ack -e 40 -c 2 -i 589 -a 2 - -t 6.96328 -s 2 -d 1 -p ack -e 40 -c 2 -i 589 -a 2 h -t 6.96328 -s 2 -d 1 -p ack -e 40 -c 2 -i 589 -a 2 r -t 6.96432 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 593 -a 2 + -t 6.96432 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 593 -a 2 - -t 6.96432 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 593 -a 2 h -t 6.96432 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 593 -a 2 r -t 6.96832 -s 2 -d 1 -p ack -e 40 -c 2 -i 589 -a 2 + -t 6.96832 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 594 -a 2 - -t 6.96832 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 594 -a 2 h -t 6.96832 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 594 -a 2 + -t 6.96832 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 595 -a 2 - -t 6.96932 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 595 -a 2 h -t 6.96932 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 595 -a 2 r -t 6.97432 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 594 -a 2 + -t 6.97432 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 594 -a 2 - -t 6.97432 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 594 -a 2 h -t 6.97432 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 594 -a 2 r -t 6.97532 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 595 -a 2 + -t 6.97532 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 595 -a 2 - -t 6.98432 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 595 -a 2 h -t 6.98432 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 595 -a 2 r -t 7.04752 -s 3 -d 2 -p ack -e 40 -c 1 -i 591 -a 1 + -t 7.04752 -s 2 -d 0 -p ack -e 40 -c 1 -i 591 -a 1 - -t 7.04752 -s 2 -d 0 -p ack -e 40 -c 1 -i 591 -a 1 h -t 7.04752 -s 2 -d 0 -p ack -e 40 -c 1 -i 591 -a 1 r -t 7.05256 -s 2 -d 0 -p ack -e 40 -c 1 -i 591 -a 1 + -t 7.05256 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 596 -a 1 - -t 7.05256 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 596 -a 1 h -t 7.05256 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 596 -a 1 + -t 7.05256 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 597 -a 1 - -t 7.05356 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 597 -a 1 h -t 7.05356 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 597 -a 1 r -t 7.05432 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 590 -a 2 + -t 7.05432 -s 3 -d 2 -p ack -e 40 -c 2 -i 598 -a 2 - -t 7.05432 -s 3 -d 2 -p ack -e 40 -c 2 -i 598 -a 2 h -t 7.05432 -s 3 -d 2 -p ack -e 40 -c 2 -i 598 -a 2 r -t 7.05856 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 596 -a 1 + -t 7.05856 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 596 -a 1 - -t 7.05856 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 596 -a 1 h -t 7.05856 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 596 -a 1 r -t 7.05956 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 597 -a 1 + -t 7.05956 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 597 -a 1 r -t 7.06432 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 592 -a 2 + -t 7.06432 -s 3 -d 2 -p ack -e 40 -c 2 -i 599 -a 2 - -t 7.06432 -s 3 -d 2 -p ack -e 40 -c 2 -i 599 -a 2 h -t 7.06432 -s 3 -d 2 -p ack -e 40 -c 2 -i 599 -a 2 - -t 7.06856 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 597 -a 1 h -t 7.06856 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 597 -a 1 r -t 7.07432 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 593 -a 2 + -t 7.07432 -s 3 -d 2 -p ack -e 40 -c 2 -i 600 -a 2 - -t 7.07432 -s 3 -d 2 -p ack -e 40 -c 2 -i 600 -a 2 h -t 7.07432 -s 3 -d 2 -p ack -e 40 -c 2 -i 600 -a 2 r -t 7.08432 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 594 -a 2 + -t 7.08432 -s 3 -d 2 -p ack -e 40 -c 2 -i 601 -a 2 - -t 7.08432 -s 3 -d 2 -p ack -e 40 -c 2 -i 601 -a 2 h -t 7.08432 -s 3 -d 2 -p ack -e 40 -c 2 -i 601 -a 2 r -t 7.09432 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 595 -a 2 + -t 7.09432 -s 3 -d 2 -p ack -e 40 -c 2 -i 602 -a 2 - -t 7.09432 -s 3 -d 2 -p ack -e 40 -c 2 -i 602 -a 2 h -t 7.09432 -s 3 -d 2 -p ack -e 40 -c 2 -i 602 -a 2 r -t 7.15472 -s 3 -d 2 -p ack -e 40 -c 2 -i 598 -a 2 + -t 7.15472 -s 2 -d 1 -p ack -e 40 -c 2 -i 598 -a 2 - -t 7.15472 -s 2 -d 1 -p ack -e 40 -c 2 -i 598 -a 2 h -t 7.15472 -s 2 -d 1 -p ack -e 40 -c 2 -i 598 -a 2 r -t 7.15976 -s 2 -d 1 -p ack -e 40 -c 2 -i 598 -a 2 + -t 7.15976 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 603 -a 2 - -t 7.15976 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 603 -a 2 h -t 7.15976 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 603 -a 2 r -t 7.16472 -s 3 -d 2 -p ack -e 40 -c 2 -i 599 -a 2 + -t 7.16472 -s 2 -d 1 -p ack -e 40 -c 2 -i 599 -a 2 - -t 7.16472 -s 2 -d 1 -p ack -e 40 -c 2 -i 599 -a 2 h -t 7.16472 -s 2 -d 1 -p ack -e 40 -c 2 -i 599 -a 2 r -t 7.16576 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 603 -a 2 + -t 7.16576 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 603 -a 2 - -t 7.16576 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 603 -a 2 h -t 7.16576 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 603 -a 2 r -t 7.16856 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 596 -a 1 + -t 7.16856 -s 3 -d 2 -p ack -e 40 -c 1 -i 604 -a 1 - -t 7.16856 -s 3 -d 2 -p ack -e 40 -c 1 -i 604 -a 1 h -t 7.16856 -s 3 -d 2 -p ack -e 40 -c 1 -i 604 -a 1 r -t 7.16976 -s 2 -d 1 -p ack -e 40 -c 2 -i 599 -a 2 + -t 7.16976 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 605 -a 2 - -t 7.16976 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 605 -a 2 h -t 7.16976 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 605 -a 2 r -t 7.17472 -s 3 -d 2 -p ack -e 40 -c 2 -i 600 -a 2 + -t 7.17472 -s 2 -d 1 -p ack -e 40 -c 2 -i 600 -a 2 - -t 7.17472 -s 2 -d 1 -p ack -e 40 -c 2 -i 600 -a 2 h -t 7.17472 -s 2 -d 1 -p ack -e 40 -c 2 -i 600 -a 2 r -t 7.17576 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 605 -a 2 + -t 7.17576 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 605 -a 2 - -t 7.17576 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 605 -a 2 h -t 7.17576 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 605 -a 2 r -t 7.17856 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 597 -a 1 + -t 7.17856 -s 3 -d 2 -p ack -e 40 -c 1 -i 606 -a 1 - -t 7.17856 -s 3 -d 2 -p ack -e 40 -c 1 -i 606 -a 1 h -t 7.17856 -s 3 -d 2 -p ack -e 40 -c 1 -i 606 -a 1 r -t 7.17976 -s 2 -d 1 -p ack -e 40 -c 2 -i 600 -a 2 + -t 7.17976 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 607 -a 2 - -t 7.17976 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 607 -a 2 h -t 7.17976 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 607 -a 2 r -t 7.18472 -s 3 -d 2 -p ack -e 40 -c 2 -i 601 -a 2 + -t 7.18472 -s 2 -d 1 -p ack -e 40 -c 2 -i 601 -a 2 - -t 7.18472 -s 2 -d 1 -p ack -e 40 -c 2 -i 601 -a 2 h -t 7.18472 -s 2 -d 1 -p ack -e 40 -c 2 -i 601 -a 2 r -t 7.18576 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 607 -a 2 + -t 7.18576 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 607 -a 2 - -t 7.18576 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 607 -a 2 h -t 7.18576 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 607 -a 2 r -t 7.18976 -s 2 -d 1 -p ack -e 40 -c 2 -i 601 -a 2 + -t 7.18976 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 608 -a 2 - -t 7.18976 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 608 -a 2 h -t 7.18976 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 608 -a 2 r -t 7.19472 -s 3 -d 2 -p ack -e 40 -c 2 -i 602 -a 2 + -t 7.19472 -s 2 -d 1 -p ack -e 40 -c 2 -i 602 -a 2 - -t 7.19472 -s 2 -d 1 -p ack -e 40 -c 2 -i 602 -a 2 h -t 7.19472 -s 2 -d 1 -p ack -e 40 -c 2 -i 602 -a 2 r -t 7.19576 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 608 -a 2 + -t 7.19576 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 608 -a 2 - -t 7.19576 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 608 -a 2 h -t 7.19576 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 608 -a 2 r -t 7.19976 -s 2 -d 1 -p ack -e 40 -c 2 -i 602 -a 2 + -t 7.19976 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 609 -a 2 - -t 7.19976 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 609 -a 2 h -t 7.19976 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 609 -a 2 + -t 7.19976 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 610 -a 2 - -t 7.20076 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 610 -a 2 h -t 7.20076 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 610 -a 2 r -t 7.20576 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 609 -a 2 + -t 7.20576 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 609 -a 2 - -t 7.20576 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 609 -a 2 h -t 7.20576 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 609 -a 2 r -t 7.20676 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 610 -a 2 + -t 7.20676 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 610 -a 2 - -t 7.21576 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 610 -a 2 h -t 7.21576 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 610 -a 2 r -t 7.26896 -s 3 -d 2 -p ack -e 40 -c 1 -i 604 -a 1 + -t 7.26896 -s 2 -d 0 -p ack -e 40 -c 1 -i 604 -a 1 - -t 7.26896 -s 2 -d 0 -p ack -e 40 -c 1 -i 604 -a 1 h -t 7.26896 -s 2 -d 0 -p ack -e 40 -c 1 -i 604 -a 1 r -t 7.274 -s 2 -d 0 -p ack -e 40 -c 1 -i 604 -a 1 + -t 7.274 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 611 -a 1 - -t 7.274 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 611 -a 1 h -t 7.274 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 611 -a 1 + -t 7.274 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 612 -a 1 + -t 7.274 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 613 -a 1 - -t 7.275 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 612 -a 1 h -t 7.275 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 612 -a 1 r -t 7.27576 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 603 -a 2 + -t 7.27576 -s 3 -d 2 -p ack -e 40 -c 2 -i 614 -a 2 - -t 7.27576 -s 3 -d 2 -p ack -e 40 -c 2 -i 614 -a 2 h -t 7.27576 -s 3 -d 2 -p ack -e 40 -c 2 -i 614 -a 2 - -t 7.276 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 613 -a 1 h -t 7.276 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 613 -a 1 r -t 7.27896 -s 3 -d 2 -p ack -e 40 -c 1 -i 606 -a 1 + -t 7.27896 -s 2 -d 0 -p ack -e 40 -c 1 -i 606 -a 1 - -t 7.27896 -s 2 -d 0 -p ack -e 40 -c 1 -i 606 -a 1 h -t 7.27896 -s 2 -d 0 -p ack -e 40 -c 1 -i 606 -a 1 r -t 7.28 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 611 -a 1 + -t 7.28 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 611 -a 1 - -t 7.28 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 611 -a 1 h -t 7.28 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 611 -a 1 r -t 7.281 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 612 -a 1 + -t 7.281 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 612 -a 1 r -t 7.282 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 613 -a 1 + -t 7.282 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 613 -a 1 r -t 7.284 -s 2 -d 0 -p ack -e 40 -c 1 -i 606 -a 1 r -t 7.28576 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 605 -a 2 + -t 7.28576 -s 3 -d 2 -p ack -e 40 -c 2 -i 615 -a 2 - -t 7.28576 -s 3 -d 2 -p ack -e 40 -c 2 -i 615 -a 2 h -t 7.28576 -s 3 -d 2 -p ack -e 40 -c 2 -i 615 -a 2 - -t 7.29 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 612 -a 1 h -t 7.29 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 612 -a 1 r -t 7.29576 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 607 -a 2 + -t 7.29576 -s 3 -d 2 -p ack -e 40 -c 2 -i 616 -a 2 - -t 7.29576 -s 3 -d 2 -p ack -e 40 -c 2 -i 616 -a 2 h -t 7.29576 -s 3 -d 2 -p ack -e 40 -c 2 -i 616 -a 2 - -t 7.3 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 613 -a 1 h -t 7.3 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 613 -a 1 r -t 7.30576 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 608 -a 2 + -t 7.30576 -s 3 -d 2 -p ack -e 40 -c 2 -i 617 -a 2 - -t 7.30576 -s 3 -d 2 -p ack -e 40 -c 2 -i 617 -a 2 h -t 7.30576 -s 3 -d 2 -p ack -e 40 -c 2 -i 617 -a 2 r -t 7.31576 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 609 -a 2 + -t 7.31576 -s 3 -d 2 -p ack -e 40 -c 2 -i 618 -a 2 - -t 7.31576 -s 3 -d 2 -p ack -e 40 -c 2 -i 618 -a 2 h -t 7.31576 -s 3 -d 2 -p ack -e 40 -c 2 -i 618 -a 2 r -t 7.32576 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 610 -a 2 + -t 7.32576 -s 3 -d 2 -p ack -e 40 -c 2 -i 619 -a 2 - -t 7.32576 -s 3 -d 2 -p ack -e 40 -c 2 -i 619 -a 2 h -t 7.32576 -s 3 -d 2 -p ack -e 40 -c 2 -i 619 -a 2 r -t 7.37616 -s 3 -d 2 -p ack -e 40 -c 2 -i 614 -a 2 + -t 7.37616 -s 2 -d 1 -p ack -e 40 -c 2 -i 614 -a 2 - -t 7.37616 -s 2 -d 1 -p ack -e 40 -c 2 -i 614 -a 2 h -t 7.37616 -s 2 -d 1 -p ack -e 40 -c 2 -i 614 -a 2 r -t 7.3812 -s 2 -d 1 -p ack -e 40 -c 2 -i 614 -a 2 + -t 7.3812 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 620 -a 2 - -t 7.3812 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 620 -a 2 h -t 7.3812 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 620 -a 2 r -t 7.38616 -s 3 -d 2 -p ack -e 40 -c 2 -i 615 -a 2 + -t 7.38616 -s 2 -d 1 -p ack -e 40 -c 2 -i 615 -a 2 - -t 7.38616 -s 2 -d 1 -p ack -e 40 -c 2 -i 615 -a 2 h -t 7.38616 -s 2 -d 1 -p ack -e 40 -c 2 -i 615 -a 2 r -t 7.3872 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 620 -a 2 + -t 7.3872 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 620 -a 2 - -t 7.3872 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 620 -a 2 h -t 7.3872 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 620 -a 2 r -t 7.39 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 611 -a 1 + -t 7.39 -s 3 -d 2 -p ack -e 40 -c 1 -i 621 -a 1 - -t 7.39 -s 3 -d 2 -p ack -e 40 -c 1 -i 621 -a 1 h -t 7.39 -s 3 -d 2 -p ack -e 40 -c 1 -i 621 -a 1 r -t 7.3912 -s 2 -d 1 -p ack -e 40 -c 2 -i 615 -a 2 + -t 7.3912 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 622 -a 2 - -t 7.3912 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 622 -a 2 h -t 7.3912 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 622 -a 2 r -t 7.39616 -s 3 -d 2 -p ack -e 40 -c 2 -i 616 -a 2 + -t 7.39616 -s 2 -d 1 -p ack -e 40 -c 2 -i 616 -a 2 - -t 7.39616 -s 2 -d 1 -p ack -e 40 -c 2 -i 616 -a 2 h -t 7.39616 -s 2 -d 1 -p ack -e 40 -c 2 -i 616 -a 2 r -t 7.3972 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 622 -a 2 + -t 7.3972 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 622 -a 2 - -t 7.3972 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 622 -a 2 h -t 7.3972 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 622 -a 2 r -t 7.4 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 612 -a 1 + -t 7.4 -s 3 -d 2 -p ack -e 40 -c 1 -i 623 -a 1 - -t 7.4 -s 3 -d 2 -p ack -e 40 -c 1 -i 623 -a 1 h -t 7.4 -s 3 -d 2 -p ack -e 40 -c 1 -i 623 -a 1 r -t 7.4012 -s 2 -d 1 -p ack -e 40 -c 2 -i 616 -a 2 + -t 7.4012 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 624 -a 2 - -t 7.4012 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 624 -a 2 h -t 7.4012 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 624 -a 2 r -t 7.40616 -s 3 -d 2 -p ack -e 40 -c 2 -i 617 -a 2 + -t 7.40616 -s 2 -d 1 -p ack -e 40 -c 2 -i 617 -a 2 - -t 7.40616 -s 2 -d 1 -p ack -e 40 -c 2 -i 617 -a 2 h -t 7.40616 -s 2 -d 1 -p ack -e 40 -c 2 -i 617 -a 2 r -t 7.4072 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 624 -a 2 + -t 7.4072 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 624 -a 2 - -t 7.4072 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 624 -a 2 h -t 7.4072 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 624 -a 2 r -t 7.41 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 613 -a 1 + -t 7.41 -s 3 -d 2 -p ack -e 40 -c 1 -i 625 -a 1 - -t 7.41 -s 3 -d 2 -p ack -e 40 -c 1 -i 625 -a 1 h -t 7.41 -s 3 -d 2 -p ack -e 40 -c 1 -i 625 -a 1 r -t 7.4112 -s 2 -d 1 -p ack -e 40 -c 2 -i 617 -a 2 + -t 7.4112 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 626 -a 2 - -t 7.4112 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 626 -a 2 h -t 7.4112 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 626 -a 2 r -t 7.41616 -s 3 -d 2 -p ack -e 40 -c 2 -i 618 -a 2 + -t 7.41616 -s 2 -d 1 -p ack -e 40 -c 2 -i 618 -a 2 - -t 7.41616 -s 2 -d 1 -p ack -e 40 -c 2 -i 618 -a 2 h -t 7.41616 -s 2 -d 1 -p ack -e 40 -c 2 -i 618 -a 2 r -t 7.4172 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 626 -a 2 + -t 7.4172 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 626 -a 2 - -t 7.4172 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 626 -a 2 h -t 7.4172 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 626 -a 2 r -t 7.4212 -s 2 -d 1 -p ack -e 40 -c 2 -i 618 -a 2 + -t 7.4212 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 627 -a 2 - -t 7.4212 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 627 -a 2 h -t 7.4212 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 627 -a 2 r -t 7.42616 -s 3 -d 2 -p ack -e 40 -c 2 -i 619 -a 2 + -t 7.42616 -s 2 -d 1 -p ack -e 40 -c 2 -i 619 -a 2 - -t 7.42616 -s 2 -d 1 -p ack -e 40 -c 2 -i 619 -a 2 h -t 7.42616 -s 2 -d 1 -p ack -e 40 -c 2 -i 619 -a 2 r -t 7.4272 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 627 -a 2 + -t 7.4272 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 627 -a 2 - -t 7.4272 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 627 -a 2 h -t 7.4272 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 627 -a 2 r -t 7.4312 -s 2 -d 1 -p ack -e 40 -c 2 -i 619 -a 2 + -t 7.4312 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 628 -a 2 - -t 7.4312 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 628 -a 2 h -t 7.4312 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 628 -a 2 + -t 7.4312 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 629 -a 2 - -t 7.4322 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 629 -a 2 h -t 7.4322 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 629 -a 2 r -t 7.4372 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 628 -a 2 + -t 7.4372 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 628 -a 2 - -t 7.4372 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 628 -a 2 h -t 7.4372 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 628 -a 2 r -t 7.4382 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 629 -a 2 + -t 7.4382 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 629 -a 2 - -t 7.4472 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 629 -a 2 h -t 7.4472 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 629 -a 2 r -t 7.4904 -s 3 -d 2 -p ack -e 40 -c 1 -i 621 -a 1 + -t 7.4904 -s 2 -d 0 -p ack -e 40 -c 1 -i 621 -a 1 - -t 7.4904 -s 2 -d 0 -p ack -e 40 -c 1 -i 621 -a 1 h -t 7.4904 -s 2 -d 0 -p ack -e 40 -c 1 -i 621 -a 1 r -t 7.49544 -s 2 -d 0 -p ack -e 40 -c 1 -i 621 -a 1 + -t 7.49544 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 630 -a 1 - -t 7.49544 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 630 -a 1 h -t 7.49544 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 630 -a 1 + -t 7.49544 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 631 -a 1 + -t 7.49544 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 632 -a 1 - -t 7.49644 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 631 -a 1 h -t 7.49644 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 631 -a 1 r -t 7.4972 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 620 -a 2 + -t 7.4972 -s 3 -d 2 -p ack -e 40 -c 2 -i 633 -a 2 - -t 7.4972 -s 3 -d 2 -p ack -e 40 -c 2 -i 633 -a 2 h -t 7.4972 -s 3 -d 2 -p ack -e 40 -c 2 -i 633 -a 2 - -t 7.49744 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 632 -a 1 h -t 7.49744 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 632 -a 1 r -t 7.5004 -s 3 -d 2 -p ack -e 40 -c 1 -i 623 -a 1 + -t 7.5004 -s 2 -d 0 -p ack -e 40 -c 1 -i 623 -a 1 - -t 7.5004 -s 2 -d 0 -p ack -e 40 -c 1 -i 623 -a 1 h -t 7.5004 -s 2 -d 0 -p ack -e 40 -c 1 -i 623 -a 1 r -t 7.50144 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 630 -a 1 + -t 7.50144 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 630 -a 1 - -t 7.50144 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 630 -a 1 h -t 7.50144 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 630 -a 1 r -t 7.50244 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 631 -a 1 + -t 7.50244 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 631 -a 1 r -t 7.50344 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 632 -a 1 + -t 7.50344 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 632 -a 1 r -t 7.50544 -s 2 -d 0 -p ack -e 40 -c 1 -i 623 -a 1 r -t 7.5072 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 622 -a 2 + -t 7.5072 -s 3 -d 2 -p ack -e 40 -c 2 -i 634 -a 2 - -t 7.5072 -s 3 -d 2 -p ack -e 40 -c 2 -i 634 -a 2 h -t 7.5072 -s 3 -d 2 -p ack -e 40 -c 2 -i 634 -a 2 r -t 7.5104 -s 3 -d 2 -p ack -e 40 -c 1 -i 625 -a 1 + -t 7.5104 -s 2 -d 0 -p ack -e 40 -c 1 -i 625 -a 1 - -t 7.5104 -s 2 -d 0 -p ack -e 40 -c 1 -i 625 -a 1 h -t 7.5104 -s 2 -d 0 -p ack -e 40 -c 1 -i 625 -a 1 - -t 7.51144 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 631 -a 1 h -t 7.51144 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 631 -a 1 r -t 7.51544 -s 2 -d 0 -p ack -e 40 -c 1 -i 625 -a 1 + -t 7.51544 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 635 -a 1 - -t 7.51544 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 635 -a 1 h -t 7.51544 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 635 -a 1 + -t 7.51544 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 636 -a 1 + -t 7.51544 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 637 -a 1 - -t 7.51644 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 636 -a 1 h -t 7.51644 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 636 -a 1 r -t 7.5172 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 624 -a 2 + -t 7.5172 -s 3 -d 2 -p ack -e 40 -c 2 -i 638 -a 2 - -t 7.5172 -s 3 -d 2 -p ack -e 40 -c 2 -i 638 -a 2 h -t 7.5172 -s 3 -d 2 -p ack -e 40 -c 2 -i 638 -a 2 - -t 7.51744 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 637 -a 1 h -t 7.51744 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 637 -a 1 - -t 7.52144 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 632 -a 1 h -t 7.52144 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 632 -a 1 r -t 7.52144 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 635 -a 1 + -t 7.52144 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 635 -a 1 r -t 7.52244 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 636 -a 1 + -t 7.52244 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 636 -a 1 r -t 7.52344 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 637 -a 1 + -t 7.52344 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 637 -a 1 r -t 7.5272 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 626 -a 2 + -t 7.5272 -s 3 -d 2 -p ack -e 40 -c 2 -i 639 -a 2 - -t 7.5272 -s 3 -d 2 -p ack -e 40 -c 2 -i 639 -a 2 h -t 7.5272 -s 3 -d 2 -p ack -e 40 -c 2 -i 639 -a 2 - -t 7.53144 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 635 -a 1 h -t 7.53144 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 635 -a 1 r -t 7.5372 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 627 -a 2 + -t 7.5372 -s 3 -d 2 -p ack -e 40 -c 2 -i 640 -a 2 - -t 7.5372 -s 3 -d 2 -p ack -e 40 -c 2 -i 640 -a 2 h -t 7.5372 -s 3 -d 2 -p ack -e 40 -c 2 -i 640 -a 2 - -t 7.54144 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 636 -a 1 h -t 7.54144 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 636 -a 1 r -t 7.5472 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 628 -a 2 + -t 7.5472 -s 3 -d 2 -p ack -e 40 -c 2 -i 641 -a 2 - -t 7.5472 -s 3 -d 2 -p ack -e 40 -c 2 -i 641 -a 2 h -t 7.5472 -s 3 -d 2 -p ack -e 40 -c 2 -i 641 -a 2 - -t 7.55144 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 637 -a 1 h -t 7.55144 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 637 -a 1 r -t 7.5572 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 629 -a 2 + -t 7.5572 -s 3 -d 2 -p ack -e 40 -c 2 -i 642 -a 2 - -t 7.5572 -s 3 -d 2 -p ack -e 40 -c 2 -i 642 -a 2 h -t 7.5572 -s 3 -d 2 -p ack -e 40 -c 2 -i 642 -a 2 r -t 7.5976 -s 3 -d 2 -p ack -e 40 -c 2 -i 633 -a 2 + -t 7.5976 -s 2 -d 1 -p ack -e 40 -c 2 -i 633 -a 2 - -t 7.5976 -s 2 -d 1 -p ack -e 40 -c 2 -i 633 -a 2 h -t 7.5976 -s 2 -d 1 -p ack -e 40 -c 2 -i 633 -a 2 r -t 7.60264 -s 2 -d 1 -p ack -e 40 -c 2 -i 633 -a 2 + -t 7.60264 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 643 -a 2 - -t 7.60264 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 643 -a 2 h -t 7.60264 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 643 -a 2 r -t 7.6076 -s 3 -d 2 -p ack -e 40 -c 2 -i 634 -a 2 + -t 7.6076 -s 2 -d 1 -p ack -e 40 -c 2 -i 634 -a 2 - -t 7.6076 -s 2 -d 1 -p ack -e 40 -c 2 -i 634 -a 2 h -t 7.6076 -s 2 -d 1 -p ack -e 40 -c 2 -i 634 -a 2 r -t 7.60864 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 643 -a 2 + -t 7.60864 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 643 -a 2 - -t 7.60864 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 643 -a 2 h -t 7.60864 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 643 -a 2 r -t 7.61144 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 630 -a 1 + -t 7.61144 -s 3 -d 2 -p ack -e 40 -c 1 -i 644 -a 1 - -t 7.61144 -s 3 -d 2 -p ack -e 40 -c 1 -i 644 -a 1 h -t 7.61144 -s 3 -d 2 -p ack -e 40 -c 1 -i 644 -a 1 r -t 7.61264 -s 2 -d 1 -p ack -e 40 -c 2 -i 634 -a 2 + -t 7.61264 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 645 -a 2 - -t 7.61264 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 645 -a 2 h -t 7.61264 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 645 -a 2 r -t 7.6176 -s 3 -d 2 -p ack -e 40 -c 2 -i 638 -a 2 + -t 7.6176 -s 2 -d 1 -p ack -e 40 -c 2 -i 638 -a 2 - -t 7.6176 -s 2 -d 1 -p ack -e 40 -c 2 -i 638 -a 2 h -t 7.6176 -s 2 -d 1 -p ack -e 40 -c 2 -i 638 -a 2 r -t 7.61864 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 645 -a 2 + -t 7.61864 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 645 -a 2 - -t 7.61864 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 645 -a 2 h -t 7.61864 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 645 -a 2 r -t 7.62144 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 631 -a 1 + -t 7.62144 -s 3 -d 2 -p ack -e 40 -c 1 -i 646 -a 1 - -t 7.62144 -s 3 -d 2 -p ack -e 40 -c 1 -i 646 -a 1 h -t 7.62144 -s 3 -d 2 -p ack -e 40 -c 1 -i 646 -a 1 r -t 7.62264 -s 2 -d 1 -p ack -e 40 -c 2 -i 638 -a 2 + -t 7.62264 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 647 -a 2 - -t 7.62264 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 647 -a 2 h -t 7.62264 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 647 -a 2 r -t 7.6276 -s 3 -d 2 -p ack -e 40 -c 2 -i 639 -a 2 + -t 7.6276 -s 2 -d 1 -p ack -e 40 -c 2 -i 639 -a 2 - -t 7.6276 -s 2 -d 1 -p ack -e 40 -c 2 -i 639 -a 2 h -t 7.6276 -s 2 -d 1 -p ack -e 40 -c 2 -i 639 -a 2 r -t 7.62864 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 647 -a 2 + -t 7.62864 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 647 -a 2 - -t 7.62864 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 647 -a 2 h -t 7.62864 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 647 -a 2 r -t 7.63144 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 632 -a 1 + -t 7.63144 -s 3 -d 2 -p ack -e 40 -c 1 -i 648 -a 1 - -t 7.63144 -s 3 -d 2 -p ack -e 40 -c 1 -i 648 -a 1 h -t 7.63144 -s 3 -d 2 -p ack -e 40 -c 1 -i 648 -a 1 r -t 7.63264 -s 2 -d 1 -p ack -e 40 -c 2 -i 639 -a 2 + -t 7.63264 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 649 -a 2 - -t 7.63264 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 649 -a 2 h -t 7.63264 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 649 -a 2 r -t 7.6376 -s 3 -d 2 -p ack -e 40 -c 2 -i 640 -a 2 + -t 7.6376 -s 2 -d 1 -p ack -e 40 -c 2 -i 640 -a 2 - -t 7.6376 -s 2 -d 1 -p ack -e 40 -c 2 -i 640 -a 2 h -t 7.6376 -s 2 -d 1 -p ack -e 40 -c 2 -i 640 -a 2 r -t 7.63864 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 649 -a 2 + -t 7.63864 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 649 -a 2 - -t 7.63864 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 649 -a 2 h -t 7.63864 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 649 -a 2 r -t 7.64144 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 635 -a 1 + -t 7.64144 -s 3 -d 2 -p ack -e 40 -c 1 -i 650 -a 1 - -t 7.64144 -s 3 -d 2 -p ack -e 40 -c 1 -i 650 -a 1 h -t 7.64144 -s 3 -d 2 -p ack -e 40 -c 1 -i 650 -a 1 r -t 7.64264 -s 2 -d 1 -p ack -e 40 -c 2 -i 640 -a 2 + -t 7.64264 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 651 -a 2 - -t 7.64264 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 651 -a 2 h -t 7.64264 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 651 -a 2 r -t 7.6476 -s 3 -d 2 -p ack -e 40 -c 2 -i 641 -a 2 + -t 7.6476 -s 2 -d 1 -p ack -e 40 -c 2 -i 641 -a 2 - -t 7.6476 -s 2 -d 1 -p ack -e 40 -c 2 -i 641 -a 2 h -t 7.6476 -s 2 -d 1 -p ack -e 40 -c 2 -i 641 -a 2 r -t 7.64864 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 651 -a 2 + -t 7.64864 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 651 -a 2 - -t 7.64864 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 651 -a 2 h -t 7.64864 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 651 -a 2 r -t 7.65144 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 636 -a 1 + -t 7.65144 -s 3 -d 2 -p ack -e 40 -c 1 -i 652 -a 1 - -t 7.65144 -s 3 -d 2 -p ack -e 40 -c 1 -i 652 -a 1 h -t 7.65144 -s 3 -d 2 -p ack -e 40 -c 1 -i 652 -a 1 r -t 7.65264 -s 2 -d 1 -p ack -e 40 -c 2 -i 641 -a 2 + -t 7.65264 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 653 -a 2 - -t 7.65264 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 653 -a 2 h -t 7.65264 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 653 -a 2 r -t 7.6576 -s 3 -d 2 -p ack -e 40 -c 2 -i 642 -a 2 + -t 7.6576 -s 2 -d 1 -p ack -e 40 -c 2 -i 642 -a 2 - -t 7.6576 -s 2 -d 1 -p ack -e 40 -c 2 -i 642 -a 2 h -t 7.6576 -s 2 -d 1 -p ack -e 40 -c 2 -i 642 -a 2 r -t 7.65864 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 653 -a 2 + -t 7.65864 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 653 -a 2 - -t 7.65864 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 653 -a 2 h -t 7.65864 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 653 -a 2 r -t 7.66144 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 637 -a 1 + -t 7.66144 -s 3 -d 2 -p ack -e 40 -c 1 -i 654 -a 1 - -t 7.66144 -s 3 -d 2 -p ack -e 40 -c 1 -i 654 -a 1 h -t 7.66144 -s 3 -d 2 -p ack -e 40 -c 1 -i 654 -a 1 r -t 7.66264 -s 2 -d 1 -p ack -e 40 -c 2 -i 642 -a 2 + -t 7.66264 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 655 -a 2 - -t 7.66264 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 655 -a 2 h -t 7.66264 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 655 -a 2 r -t 7.66864 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 655 -a 2 + -t 7.66864 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 655 -a 2 - -t 7.66864 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 655 -a 2 h -t 7.66864 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 655 -a 2 r -t 7.71184 -s 3 -d 2 -p ack -e 40 -c 1 -i 644 -a 1 + -t 7.71184 -s 2 -d 0 -p ack -e 40 -c 1 -i 644 -a 1 - -t 7.71184 -s 2 -d 0 -p ack -e 40 -c 1 -i 644 -a 1 h -t 7.71184 -s 2 -d 0 -p ack -e 40 -c 1 -i 644 -a 1 r -t 7.71688 -s 2 -d 0 -p ack -e 40 -c 1 -i 644 -a 1 r -t 7.71864 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 643 -a 2 + -t 7.71864 -s 3 -d 2 -p ack -e 40 -c 2 -i 656 -a 2 - -t 7.71864 -s 3 -d 2 -p ack -e 40 -c 2 -i 656 -a 2 h -t 7.71864 -s 3 -d 2 -p ack -e 40 -c 2 -i 656 -a 2 r -t 7.72184 -s 3 -d 2 -p ack -e 40 -c 1 -i 646 -a 1 + -t 7.72184 -s 2 -d 0 -p ack -e 40 -c 1 -i 646 -a 1 - -t 7.72184 -s 2 -d 0 -p ack -e 40 -c 1 -i 646 -a 1 h -t 7.72184 -s 2 -d 0 -p ack -e 40 -c 1 -i 646 -a 1 r -t 7.72688 -s 2 -d 0 -p ack -e 40 -c 1 -i 646 -a 1 + -t 7.72688 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 657 -a 1 - -t 7.72688 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 657 -a 1 h -t 7.72688 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 657 -a 1 + -t 7.72688 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 658 -a 1 + -t 7.72688 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 659 -a 1 - -t 7.72788 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 658 -a 1 h -t 7.72788 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 658 -a 1 r -t 7.72864 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 645 -a 2 + -t 7.72864 -s 3 -d 2 -p ack -e 40 -c 2 -i 660 -a 2 - -t 7.72864 -s 3 -d 2 -p ack -e 40 -c 2 -i 660 -a 2 h -t 7.72864 -s 3 -d 2 -p ack -e 40 -c 2 -i 660 -a 2 - -t 7.72888 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 659 -a 1 h -t 7.72888 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 659 -a 1 r -t 7.73184 -s 3 -d 2 -p ack -e 40 -c 1 -i 648 -a 1 + -t 7.73184 -s 2 -d 0 -p ack -e 40 -c 1 -i 648 -a 1 - -t 7.73184 -s 2 -d 0 -p ack -e 40 -c 1 -i 648 -a 1 h -t 7.73184 -s 2 -d 0 -p ack -e 40 -c 1 -i 648 -a 1 r -t 7.73288 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 657 -a 1 + -t 7.73288 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 657 -a 1 - -t 7.73288 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 657 -a 1 h -t 7.73288 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 657 -a 1 r -t 7.73388 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 658 -a 1 + -t 7.73388 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 658 -a 1 r -t 7.73488 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 659 -a 1 + -t 7.73488 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 659 -a 1 r -t 7.73688 -s 2 -d 0 -p ack -e 40 -c 1 -i 648 -a 1 r -t 7.73864 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 647 -a 2 + -t 7.73864 -s 3 -d 2 -p ack -e 40 -c 2 -i 661 -a 2 - -t 7.73864 -s 3 -d 2 -p ack -e 40 -c 2 -i 661 -a 2 h -t 7.73864 -s 3 -d 2 -p ack -e 40 -c 2 -i 661 -a 2 r -t 7.74184 -s 3 -d 2 -p ack -e 40 -c 1 -i 650 -a 1 + -t 7.74184 -s 2 -d 0 -p ack -e 40 -c 1 -i 650 -a 1 - -t 7.74184 -s 2 -d 0 -p ack -e 40 -c 1 -i 650 -a 1 h -t 7.74184 -s 2 -d 0 -p ack -e 40 -c 1 -i 650 -a 1 - -t 7.74288 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 658 -a 1 h -t 7.74288 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 658 -a 1 r -t 7.74688 -s 2 -d 0 -p ack -e 40 -c 1 -i 650 -a 1 + -t 7.74688 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 662 -a 1 - -t 7.74688 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 662 -a 1 h -t 7.74688 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 662 -a 1 + -t 7.74688 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 663 -a 1 + -t 7.74688 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 664 -a 1 - -t 7.74788 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 663 -a 1 h -t 7.74788 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 663 -a 1 r -t 7.74864 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 649 -a 2 + -t 7.74864 -s 3 -d 2 -p ack -e 40 -c 2 -i 665 -a 2 - -t 7.74864 -s 3 -d 2 -p ack -e 40 -c 2 -i 665 -a 2 h -t 7.74864 -s 3 -d 2 -p ack -e 40 -c 2 -i 665 -a 2 - -t 7.74888 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 664 -a 1 h -t 7.74888 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 664 -a 1 r -t 7.75184 -s 3 -d 2 -p ack -e 40 -c 1 -i 652 -a 1 + -t 7.75184 -s 2 -d 0 -p ack -e 40 -c 1 -i 652 -a 1 - -t 7.75184 -s 2 -d 0 -p ack -e 40 -c 1 -i 652 -a 1 h -t 7.75184 -s 2 -d 0 -p ack -e 40 -c 1 -i 652 -a 1 - -t 7.75288 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 659 -a 1 h -t 7.75288 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 659 -a 1 r -t 7.75288 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 662 -a 1 + -t 7.75288 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 662 -a 1 r -t 7.75388 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 663 -a 1 + -t 7.75388 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 663 -a 1 r -t 7.75488 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 664 -a 1 + -t 7.75488 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 664 -a 1 r -t 7.75688 -s 2 -d 0 -p ack -e 40 -c 1 -i 652 -a 1 r -t 7.75864 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 651 -a 2 + -t 7.75864 -s 3 -d 2 -p ack -e 40 -c 2 -i 666 -a 2 - -t 7.75864 -s 3 -d 2 -p ack -e 40 -c 2 -i 666 -a 2 h -t 7.75864 -s 3 -d 2 -p ack -e 40 -c 2 -i 666 -a 2 r -t 7.76184 -s 3 -d 2 -p ack -e 40 -c 1 -i 654 -a 1 + -t 7.76184 -s 2 -d 0 -p ack -e 40 -c 1 -i 654 -a 1 - -t 7.76184 -s 2 -d 0 -p ack -e 40 -c 1 -i 654 -a 1 h -t 7.76184 -s 2 -d 0 -p ack -e 40 -c 1 -i 654 -a 1 - -t 7.76288 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 662 -a 1 h -t 7.76288 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 662 -a 1 r -t 7.76688 -s 2 -d 0 -p ack -e 40 -c 1 -i 654 -a 1 + -t 7.76688 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 667 -a 1 - -t 7.76688 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 667 -a 1 h -t 7.76688 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 667 -a 1 + -t 7.76688 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 668 -a 1 + -t 7.76688 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 669 -a 1 + -t 7.76688 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 670 -a 1 - -t 7.76788 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 668 -a 1 h -t 7.76788 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 668 -a 1 r -t 7.76864 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 653 -a 2 + -t 7.76864 -s 3 -d 2 -p ack -e 40 -c 2 -i 671 -a 2 - -t 7.76864 -s 3 -d 2 -p ack -e 40 -c 2 -i 671 -a 2 h -t 7.76864 -s 3 -d 2 -p ack -e 40 -c 2 -i 671 -a 2 - -t 7.76888 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 669 -a 1 h -t 7.76888 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 669 -a 1 - -t 7.76988 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 670 -a 1 h -t 7.76988 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 670 -a 1 - -t 7.77288 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 663 -a 1 h -t 7.77288 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 663 -a 1 r -t 7.77288 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 667 -a 1 + -t 7.77288 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 667 -a 1 r -t 7.77388 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 668 -a 1 + -t 7.77388 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 668 -a 1 r -t 7.77488 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 669 -a 1 + -t 7.77488 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 669 -a 1 r -t 7.77588 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 670 -a 1 + -t 7.77588 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 670 -a 1 r -t 7.77864 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 655 -a 2 + -t 7.77864 -s 3 -d 2 -p ack -e 40 -c 2 -i 672 -a 2 - -t 7.77864 -s 3 -d 2 -p ack -e 40 -c 2 -i 672 -a 2 h -t 7.77864 -s 3 -d 2 -p ack -e 40 -c 2 -i 672 -a 2 - -t 7.78288 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 664 -a 1 h -t 7.78288 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 664 -a 1 - -t 7.79288 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 667 -a 1 h -t 7.79288 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 667 -a 1 - -t 7.80288 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 668 -a 1 h -t 7.80288 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 668 -a 1 - -t 7.81288 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 669 -a 1 h -t 7.81288 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 669 -a 1 + -t 7.81686 -s 0 -d 2 -p rtProtoDV -e 5 -c 0 -i 673 -a 0 - -t 7.81686 -s 0 -d 2 -p rtProtoDV -e 5 -c 0 -i 673 -a 0 h -t 7.81686 -s 0 -d 2 -p rtProtoDV -e 5 -c 0 -i 673 -a 0 r -t 7.81904 -s 3 -d 2 -p ack -e 40 -c 2 -i 656 -a 2 + -t 7.81904 -s 2 -d 1 -p ack -e 40 -c 2 -i 656 -a 2 - -t 7.81904 -s 2 -d 1 -p ack -e 40 -c 2 -i 656 -a 2 h -t 7.81904 -s 2 -d 1 -p ack -e 40 -c 2 -i 656 -a 2 r -t 7.82187 -s 0 -d 2 -p rtProtoDV -e 5 -c 0 -i 673 -a 0 - -t 7.82288 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 670 -a 1 h -t 7.82288 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 670 -a 1 r -t 7.82408 -s 2 -d 1 -p ack -e 40 -c 2 -i 656 -a 2 + -t 7.82408 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 674 -a 2 - -t 7.82408 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 674 -a 2 h -t 7.82408 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 674 -a 2 + -t 7.82408 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 675 -a 2 - -t 7.82508 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 675 -a 2 h -t 7.82508 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 675 -a 2 r -t 7.82904 -s 3 -d 2 -p ack -e 40 -c 2 -i 660 -a 2 + -t 7.82904 -s 2 -d 1 -p ack -e 40 -c 2 -i 660 -a 2 - -t 7.82904 -s 2 -d 1 -p ack -e 40 -c 2 -i 660 -a 2 h -t 7.82904 -s 2 -d 1 -p ack -e 40 -c 2 -i 660 -a 2 r -t 7.83008 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 674 -a 2 + -t 7.83008 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 674 -a 2 r -t 7.83108 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 675 -a 2 + -t 7.83108 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 675 -a 2 - -t 7.83288 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 674 -a 2 h -t 7.83288 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 674 -a 2 r -t 7.83408 -s 2 -d 1 -p ack -e 40 -c 2 -i 660 -a 2 + -t 7.83408 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 676 -a 2 - -t 7.83408 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 676 -a 2 h -t 7.83408 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 676 -a 2 r -t 7.83904 -s 3 -d 2 -p ack -e 40 -c 2 -i 661 -a 2 + -t 7.83904 -s 2 -d 1 -p ack -e 40 -c 2 -i 661 -a 2 - -t 7.83904 -s 2 -d 1 -p ack -e 40 -c 2 -i 661 -a 2 h -t 7.83904 -s 2 -d 1 -p ack -e 40 -c 2 -i 661 -a 2 r -t 7.84008 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 676 -a 2 + -t 7.84008 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 676 -a 2 - -t 7.84288 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 675 -a 2 h -t 7.84288 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 675 -a 2 r -t 7.84288 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 657 -a 1 + -t 7.84288 -s 3 -d 2 -p ack -e 40 -c 1 -i 677 -a 1 - -t 7.84288 -s 3 -d 2 -p ack -e 40 -c 1 -i 677 -a 1 h -t 7.84288 -s 3 -d 2 -p ack -e 40 -c 1 -i 677 -a 1 r -t 7.84408 -s 2 -d 1 -p ack -e 40 -c 2 -i 661 -a 2 + -t 7.84408 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 678 -a 2 - -t 7.84408 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 678 -a 2 h -t 7.84408 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 678 -a 2 r -t 7.84904 -s 3 -d 2 -p ack -e 40 -c 2 -i 665 -a 2 + -t 7.84904 -s 2 -d 1 -p ack -e 40 -c 2 -i 665 -a 2 - -t 7.84904 -s 2 -d 1 -p ack -e 40 -c 2 -i 665 -a 2 h -t 7.84904 -s 2 -d 1 -p ack -e 40 -c 2 -i 665 -a 2 r -t 7.85008 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 678 -a 2 + -t 7.85008 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 678 -a 2 - -t 7.85288 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 676 -a 2 h -t 7.85288 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 676 -a 2 r -t 7.85288 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 658 -a 1 + -t 7.85288 -s 3 -d 2 -p ack -e 40 -c 1 -i 679 -a 1 - -t 7.85288 -s 3 -d 2 -p ack -e 40 -c 1 -i 679 -a 1 h -t 7.85288 -s 3 -d 2 -p ack -e 40 -c 1 -i 679 -a 1 r -t 7.85408 -s 2 -d 1 -p ack -e 40 -c 2 -i 665 -a 2 + -t 7.85408 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 680 -a 2 - -t 7.85408 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 680 -a 2 h -t 7.85408 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 680 -a 2 r -t 7.85904 -s 3 -d 2 -p ack -e 40 -c 2 -i 666 -a 2 + -t 7.85904 -s 2 -d 1 -p ack -e 40 -c 2 -i 666 -a 2 - -t 7.85904 -s 2 -d 1 -p ack -e 40 -c 2 -i 666 -a 2 h -t 7.85904 -s 2 -d 1 -p ack -e 40 -c 2 -i 666 -a 2 r -t 7.86008 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 680 -a 2 + -t 7.86008 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 680 -a 2 - -t 7.86288 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 678 -a 2 h -t 7.86288 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 678 -a 2 r -t 7.86288 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 659 -a 1 + -t 7.86288 -s 3 -d 2 -p ack -e 40 -c 1 -i 681 -a 1 - -t 7.86288 -s 3 -d 2 -p ack -e 40 -c 1 -i 681 -a 1 h -t 7.86288 -s 3 -d 2 -p ack -e 40 -c 1 -i 681 -a 1 r -t 7.86408 -s 2 -d 1 -p ack -e 40 -c 2 -i 666 -a 2 + -t 7.86408 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 682 -a 2 - -t 7.86408 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 682 -a 2 h -t 7.86408 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 682 -a 2 r -t 7.86904 -s 3 -d 2 -p ack -e 40 -c 2 -i 671 -a 2 + -t 7.86904 -s 2 -d 1 -p ack -e 40 -c 2 -i 671 -a 2 - -t 7.86904 -s 2 -d 1 -p ack -e 40 -c 2 -i 671 -a 2 h -t 7.86904 -s 2 -d 1 -p ack -e 40 -c 2 -i 671 -a 2 r -t 7.87008 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 682 -a 2 + -t 7.87008 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 682 -a 2 - -t 7.87288 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 680 -a 2 h -t 7.87288 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 680 -a 2 r -t 7.87288 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 662 -a 1 + -t 7.87288 -s 3 -d 2 -p ack -e 40 -c 1 -i 683 -a 1 - -t 7.87288 -s 3 -d 2 -p ack -e 40 -c 1 -i 683 -a 1 h -t 7.87288 -s 3 -d 2 -p ack -e 40 -c 1 -i 683 -a 1 r -t 7.87408 -s 2 -d 1 -p ack -e 40 -c 2 -i 671 -a 2 + -t 7.87408 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 684 -a 2 - -t 7.87408 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 684 -a 2 h -t 7.87408 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 684 -a 2 r -t 7.87904 -s 3 -d 2 -p ack -e 40 -c 2 -i 672 -a 2 + -t 7.87904 -s 2 -d 1 -p ack -e 40 -c 2 -i 672 -a 2 - -t 7.87904 -s 2 -d 1 -p ack -e 40 -c 2 -i 672 -a 2 h -t 7.87904 -s 2 -d 1 -p ack -e 40 -c 2 -i 672 -a 2 r -t 7.88008 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 684 -a 2 + -t 7.88008 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 684 -a 2 - -t 7.88288 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 682 -a 2 h -t 7.88288 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 682 -a 2 r -t 7.88288 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 663 -a 1 + -t 7.88288 -s 3 -d 2 -p ack -e 40 -c 1 -i 685 -a 1 - -t 7.88288 -s 3 -d 2 -p ack -e 40 -c 1 -i 685 -a 1 h -t 7.88288 -s 3 -d 2 -p ack -e 40 -c 1 -i 685 -a 1 r -t 7.88408 -s 2 -d 1 -p ack -e 40 -c 2 -i 672 -a 2 + -t 7.88408 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 686 -a 2 - -t 7.88408 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 686 -a 2 h -t 7.88408 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 686 -a 2 r -t 7.89008 -s 1 -d 2 -p tcp -e 1000 -c 2 -i 686 -a 2 + -t 7.89008 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 686 -a 2 - -t 7.89288 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 684 -a 2 h -t 7.89288 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 684 -a 2 r -t 7.89288 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 664 -a 1 + -t 7.89288 -s 3 -d 2 -p ack -e 40 -c 1 -i 687 -a 1 - -t 7.89288 -s 3 -d 2 -p ack -e 40 -c 1 -i 687 -a 1 h -t 7.89288 -s 3 -d 2 -p ack -e 40 -c 1 -i 687 -a 1 - -t 7.90288 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 686 -a 2 h -t 7.90288 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 686 -a 2 r -t 7.90288 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 667 -a 1 + -t 7.90288 -s 3 -d 2 -p ack -e 40 -c 1 -i 688 -a 1 - -t 7.90288 -s 3 -d 2 -p ack -e 40 -c 1 -i 688 -a 1 h -t 7.90288 -s 3 -d 2 -p ack -e 40 -c 1 -i 688 -a 1 r -t 7.91288 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 668 -a 1 + -t 7.91288 -s 3 -d 2 -p ack -e 40 -c 1 -i 689 -a 1 - -t 7.91288 -s 3 -d 2 -p ack -e 40 -c 1 -i 689 -a 1 h -t 7.91288 -s 3 -d 2 -p ack -e 40 -c 1 -i 689 -a 1 r -t 7.92288 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 669 -a 1 + -t 7.92288 -s 3 -d 2 -p ack -e 40 -c 1 -i 690 -a 1 - -t 7.92288 -s 3 -d 2 -p ack -e 40 -c 1 -i 690 -a 1 h -t 7.92288 -s 3 -d 2 -p ack -e 40 -c 1 -i 690 -a 1 r -t 7.93288 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 670 -a 1 + -t 7.93288 -s 3 -d 2 -p ack -e 40 -c 1 -i 691 -a 1 - -t 7.93288 -s 3 -d 2 -p ack -e 40 -c 1 -i 691 -a 1 h -t 7.93288 -s 3 -d 2 -p ack -e 40 -c 1 -i 691 -a 1 r -t 7.94288 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 674 -a 2 + -t 7.94288 -s 3 -d 2 -p ack -e 40 -c 2 -i 692 -a 2 - -t 7.94288 -s 3 -d 2 -p ack -e 40 -c 2 -i 692 -a 2 h -t 7.94288 -s 3 -d 2 -p ack -e 40 -c 2 -i 692 -a 2 r -t 7.94328 -s 3 -d 2 -p ack -e 40 -c 1 -i 677 -a 1 + -t 7.94328 -s 2 -d 0 -p ack -e 40 -c 1 -i 677 -a 1 - -t 7.94328 -s 2 -d 0 -p ack -e 40 -c 1 -i 677 -a 1 h -t 7.94328 -s 2 -d 0 -p ack -e 40 -c 1 -i 677 -a 1 r -t 7.94832 -s 2 -d 0 -p ack -e 40 -c 1 -i 677 -a 1 r -t 7.95288 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 675 -a 2 + -t 7.95288 -s 3 -d 2 -p ack -e 40 -c 2 -i 693 -a 2 - -t 7.95288 -s 3 -d 2 -p ack -e 40 -c 2 -i 693 -a 2 h -t 7.95288 -s 3 -d 2 -p ack -e 40 -c 2 -i 693 -a 2 r -t 7.95328 -s 3 -d 2 -p ack -e 40 -c 1 -i 679 -a 1 + -t 7.95328 -s 2 -d 0 -p ack -e 40 -c 1 -i 679 -a 1 - -t 7.95328 -s 2 -d 0 -p ack -e 40 -c 1 -i 679 -a 1 h -t 7.95328 -s 2 -d 0 -p ack -e 40 -c 1 -i 679 -a 1 r -t 7.95832 -s 2 -d 0 -p ack -e 40 -c 1 -i 679 -a 1 r -t 7.96288 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 676 -a 2 + -t 7.96288 -s 3 -d 2 -p ack -e 40 -c 2 -i 694 -a 2 - -t 7.96288 -s 3 -d 2 -p ack -e 40 -c 2 -i 694 -a 2 h -t 7.96288 -s 3 -d 2 -p ack -e 40 -c 2 -i 694 -a 2 r -t 7.96328 -s 3 -d 2 -p ack -e 40 -c 1 -i 681 -a 1 + -t 7.96328 -s 2 -d 0 -p ack -e 40 -c 1 -i 681 -a 1 - -t 7.96328 -s 2 -d 0 -p ack -e 40 -c 1 -i 681 -a 1 h -t 7.96328 -s 2 -d 0 -p ack -e 40 -c 1 -i 681 -a 1 r -t 7.96832 -s 2 -d 0 -p ack -e 40 -c 1 -i 681 -a 1 + -t 7.96832 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 695 -a 1 - -t 7.96832 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 695 -a 1 h -t 7.96832 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 695 -a 1 + -t 7.96832 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 696 -a 1 + -t 7.96832 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 697 -a 1 + -t 7.96832 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 698 -a 1 - -t 7.96932 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 696 -a 1 h -t 7.96932 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 696 -a 1 - -t 7.97032 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 697 -a 1 h -t 7.97032 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 697 -a 1 - -t 7.97132 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 698 -a 1 h -t 7.97132 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 698 -a 1 r -t 7.97288 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 678 -a 2 + -t 7.97288 -s 3 -d 2 -p ack -e 40 -c 2 -i 699 -a 2 - -t 7.97288 -s 3 -d 2 -p ack -e 40 -c 2 -i 699 -a 2 h -t 7.97288 -s 3 -d 2 -p ack -e 40 -c 2 -i 699 -a 2 r -t 7.97328 -s 3 -d 2 -p ack -e 40 -c 1 -i 683 -a 1 + -t 7.97328 -s 2 -d 0 -p ack -e 40 -c 1 -i 683 -a 1 - -t 7.97328 -s 2 -d 0 -p ack -e 40 -c 1 -i 683 -a 1 h -t 7.97328 -s 2 -d 0 -p ack -e 40 -c 1 -i 683 -a 1 r -t 7.97432 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 695 -a 1 + -t 7.97432 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 695 -a 1 - -t 7.97432 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 695 -a 1 h -t 7.97432 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 695 -a 1 r -t 7.97532 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 696 -a 1 + -t 7.97532 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 696 -a 1 r -t 7.97632 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 697 -a 1 + -t 7.97632 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 697 -a 1 r -t 7.97732 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 698 -a 1 + -t 7.97732 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 698 -a 1 r -t 7.97832 -s 2 -d 0 -p ack -e 40 -c 1 -i 683 -a 1 r -t 7.98288 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 680 -a 2 + -t 7.98288 -s 3 -d 2 -p ack -e 40 -c 2 -i 700 -a 2 - -t 7.98288 -s 3 -d 2 -p ack -e 40 -c 2 -i 700 -a 2 h -t 7.98288 -s 3 -d 2 -p ack -e 40 -c 2 -i 700 -a 2 r -t 7.98328 -s 3 -d 2 -p ack -e 40 -c 1 -i 685 -a 1 + -t 7.98328 -s 2 -d 0 -p ack -e 40 -c 1 -i 685 -a 1 - -t 7.98328 -s 2 -d 0 -p ack -e 40 -c 1 -i 685 -a 1 h -t 7.98328 -s 2 -d 0 -p ack -e 40 -c 1 -i 685 -a 1 - -t 7.98432 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 696 -a 1 h -t 7.98432 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 696 -a 1 r -t 7.98832 -s 2 -d 0 -p ack -e 40 -c 1 -i 685 -a 1 r -t 7.99288 -s 2 -d 3 -p tcp -e 1000 -c 2 -i 682 -a 2 + -t 7.99288 -s 3 -d 2 -p ack -e 40 -c 2 -i 701 -a 2 - -t 7.99288 -s 3 -d 2 -p ack -e 40 -c 2 -i 701 -a 2 h -t 7.99288 -s 3 -d 2 -p ack -e 40 -c 2 -i 701 -a 2 r -t 7.99328 -s 3 -d 2 -p ack -e 40 -c 1 -i 687 -a 1 + -t 7.99328 -s 2 -d 0 -p ack -e 40 -c 1 -i 687 -a 1 - -t 7.99328 -s 2 -d 0 -p ack -e 40 -c 1 -i 687 -a 1 h -t 7.99328 -s 2 -d 0 -p ack -e 40 -c 1 -i 687 -a 1 - -t 7.99432 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 697 -a 1 h -t 7.99432 -s 2 -d 3 -p tcp -e 1000 -c 1 -i 697 -a 1 r -t 7.99832 -s 2 -d 0 -p ack -e 40 -c 1 -i 687 -a 1 + -t 7.99832 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 702 -a 1 - -t 7.99832 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 702 -a 1 h -t 7.99832 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 702 -a 1 + -t 7.99832 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 703 -a 1 - -t 7.99932 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 703 -a 1 h -t 7.99932 -s 0 -d 2 -p tcp -e 1000 -c 1 -i 703 -a 1 + -t 7.9994 -s 4 -d 3 -p rtProtoDV -e 5 -c 0 -i 704 -a 0 - -t 7.9994 -s 4 -d 3 -p rtProtoDV -e 5 -c 0 -i 704 -a 0 h -t 7.9994 -s 4 -d 3 -p rtProtoDV -e 5 -c 0 -i 704 -a 0 + -t 7.9994 -s 4 -d 2 -p rtProtoDV -e 5 -c 0 -i 705 -a 0 - -t 7.9994 -s 4 -d 2 -p rtProtoDV -e 5 -c 0 -i 705 -a 0 h -t 7.9994 -s 4 -d 2 -p rtProtoDV -e 5 -c 0 -i 705 -a 0 nam-1.15/ex/dynamics-demo.txt0000664000076400007660000000252406610761034015010 0ustar tomhnsnam***** tahoe-dynamic-demo.txt******* A demo to illustrate the dynamic scenario using tcp tahoe. The topology consistes of 5 nodes 0-2 and 1-2 are fast links sending at 8Mb with a delay of 5ms. 2-3 and 2-4 are slower links sending at 800Kb with a delay of 100ms. TCP connections are setup between nodes 0&3 and nodes 1&3. There is one ftp sources at node 0(brown pkts for data & ack) and node 1(blue pkts for data & ack) each. Routing updates are in black. simulation strats at time 0.5 when src 1 starts sending data to 3. link 2-3 goes down at time 0.824 (shown in red). src 0 also starts to send pkts at time 1.0 to receiver 3. with the link going down src 1 loses the pkts and goes back to slow-start while src 0 rapidly increases the window size and goesinto congestion avoidance phase pumping large no. of pkts into the network.src 1 continues conservatively. with link 2-3 down all pkts are send via 2-4 and 4-3. The link 2-3 comes up at 3.53. with the coming up of link both the sources start pumping data onto the link 2-3. The buffer at node 2 fills up and pkts get dropped for both src 0 as well 1. both go back to TCP's slowstart phase. Here the interesting behaviour of the network to note is that the coming up of link 2-3 actually causes pkts to be dropped as opposed to increasing the efficiency of the network as one would normally assume. nam-1.15/ex/flat-out-50sub.nam0000664000076400007660000431634506611520341014712 0ustar tomhnsnamv -t 0 set_rate_ext 20ms 1 c -t * -i 0 -n black c -t * -i 1 -n green n -t * -s 16 -v circle -c red -z 0.012134 -S UP n -t * -s 15 -v circle -c red -z 0.012134 -S UP n -t * -s 14 -v circle -c red -z 0.012134 -S UP n -t * -s 13 -v circle -c red -z 0.012134 -S UP n -t * -s 12 -v circle -c red -z 0.012134 -S UP n -t * -s 29 -v circle -c red -z 0.012134 -S UP n -t * -s 30 -v circle -c red -z 0.012134 -S UP n -t * -s 11 -v circle -c red -z 0.012134 -S UP n -t * -s 28 -v circle -c red -z 0.012134 -S UP n -t * -s 10 -v circle -c red -z 0.012134 -S UP n -t * -s 9 -v circle -c red -z 0.012134 -S UP n -t * -s 27 -v circle -c red -z 0.012134 -S UP n -t * -s 8 -v circle -c red -z 0.012134 -S UP n -t * -s 26 -v circle -c red -z 0.012134 -S UP n -t * -s 7 -v circle -c red -z 0.012134 -S UP n -t * -s 25 -v circle -c red -z 0.012134 -S UP n -t * -s 6 -v circle -c red -z 0.012134 -S UP n -t * -s 24 -v circle -c red -z 0.012134 -S UP n -t * -s 5 -v circle -c red -z 0.012134 -S UP n -t * -s 23 -v circle -c red -z 0.012134 -S UP n -t * -s 4 -v circle -c red -z 0.012134 -S UP n -t * -s 22 -v circle -c red -z 0.012134 -S UP n -t * -s 3 -v circle -c red -z 0.012134 -S UP n -t * -s 21 -v circle -c red -z 0.012134 -S UP n -t * -s 2 -v circle -c red -z 0.012134 -S UP n -t * -s 19 -v circle -c red -z 0.012134 -S UP n -t * -s 20 -v circle -c red -z 0.012134 -S UP n -t * -s 1 -v circle -c red -z 0.012134 -S UP n -t * -s 18 -v circle -c red -z 0.012134 -S UP n -t * -s 0 -v circle -c red -z 0.012134 -S UP n -t * -s 17 -v circle -c red -z 0.012134 -S UP l -t * -s 16 -d 17 -r 5000000.000000 -D 0.080000 -o 318.2deg -l 0.071276 -S UP l -t * -s 15 -d 16 -r 5000000.000000 -D 0.070000 -o 200.0deg -l 0.079706 -S UP l -t * -s 14 -d 15 -r 5000000.000000 -D 0.080000 -o 278.3deg -l 0.045510 -S UP l -t * -s 13 -d 14 -r 5000000.000000 -D 0.080000 -o 358.6deg -l 0.090627 -S UP l -t * -s 12 -d 16 -r 5000000.000000 -D 0.110000 -o 334.0deg -l 0.117749 -S UP l -t * -s 12 -d 18 -r 5000000.000000 -D 0.230000 -o 134.2deg -l 0.106716 -S UP l -t * -s 12 -d 13 -r 5000000.000000 -D 0.070000 -o 21.9deg -l 0.086388 -S UP l -t * -s 28 -d 30 -r 5000000.000000 -D 0.080000 -o 122.5deg -l 0.168530 -S UP l -t * -s 28 -d 29 -r 5000000.000000 -D 0.110000 -o 152.5deg -l 0.189062 -S UP l -t * -s 9 -d 11 -r 5000000.000000 -D 0.110000 -o 82.4deg -l 0.113803 -S UP l -t * -s 8 -d 10 -r 5000000.000000 -D 0.150000 -o 157.3deg -l 0.075837 -S UP l -t * -s 8 -d 9 -r 5000000.000000 -D 0.080000 -o 16.9deg -l 0.080061 -S UP l -t * -s 26 -d 27 -r 5000000.000000 -D 0.080000 -o 359.3deg -l 0.146459 -S UP l -t * -s 7 -d 10 -r 5000000.000000 -D 0.150000 -o 259.0deg -l 0.067218 -S UP l -t * -s 7 -d 8 -r 5000000.000000 -D 0.100000 -o 300.3deg -l 0.123208 -S UP l -t * -s 6 -d 11 -r 5000000.000000 -D 0.110000 -o 347.4deg -l 0.132438 -S UP l -t * -s 6 -d 7 -r 5000000.000000 -D 0.120000 -o 242.3deg -l 0.060220 -S UP l -t * -s 24 -d 25 -r 5000000.000000 -D 0.080000 -o 20.8deg -l 0.094547 -S UP l -t * -s 23 -d 26 -r 5000000.000000 -D 0.080000 -o 25.8deg -l 0.096259 -S UP l -t * -s 23 -d 24 -r 5000000.000000 -D 0.080000 -o 271.8deg -l 0.074913 -S UP l -t * -s 4 -d 5 -r 5000000.000000 -D 0.120000 -o 320.3deg -l 0.076366 -S UP l -t * -s 22 -d 23 -r 5000000.000000 -D 0.080000 -o 269.2deg -l 0.068148 -S UP l -t * -s 3 -d 5 -r 5000000.000000 -D 0.120000 -o 258.9deg -l 0.106820 -S UP l -t * -s 3 -d 4 -r 5000000.000000 -D 0.140000 -o 212.4deg -l 0.096938 -S UP l -t * -s 21 -d 28 -r 5000000.000000 -D 0.350000 -o 180.8deg -l 0.159892 -S UP l -t * -s 21 -d 22 -r 5000000.000000 -D 0.060000 -o 0.2deg -l 0.084128 -S UP l -t * -s 19 -d 20 -r 5000000.000000 -D 0.080000 -o 45.5deg -l 0.041863 -S UP l -t * -s 1 -d 2 -r 5000000.000000 -D 0.080000 -o 196.2deg -l 0.097434 -S UP l -t * -s 1 -d 3 -r 5000000.000000 -D 0.140000 -o 300.6deg -l 0.099550 -S UP l -t * -s 1 -d 28 -r 5000000.000000 -D 0.300000 -o 75.6deg -l 0.127320 -S UP l -t * -s 18 -d 24 -r 5000000.000000 -D 0.100000 -o 92.8deg -l 0.035393 -S UP l -t * -s 18 -d 19 -r 5000000.000000 -D 0.090000 -o 10.1deg -l 0.133212 -S UP l -t * -s 0 -d 5 -r 5000000.000000 -D 0.160000 -o 202.5deg -l 0.135297 -S UP l -t * -s 0 -d 3 -r 5000000.000000 -D 0.160000 -o 151.2deg -l 0.113704 -S UP l -t * -s 0 -d 6 -r 5000000.000000 -D 0.250000 -o 258.6deg -l 0.079882 -S UP l -t * -s 0 -d 18 -r 5000000.000000 -D 0.300000 -o 28.5deg -l 0.137893 -S UP n -t 0 -s 28 -S DLABEL -l Flat_Rtg_Table=30 -L "" n -t 0 -s 21 -S DLABEL -l Flat_Rtg_Table=30 -L "" n -t 0 -s 3 -S DLABEL -l Flat_Rtg_Table=30 -L "" + -t 0.3 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {3.0 21.0 0 ------- null} - -t 0.3 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {3.0 21.0 0 ------- null} h -t 0.3 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {3.0 21.0 -1 ------- null} r -t 0.4416 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {3.0 21.0 0 ------- null} + -t 0.4416 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {3.0 21.0 0 ------- null} - -t 0.4416 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {3.0 21.0 0 ------- null} h -t 0.4416 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {3.0 21.0 -1 ------- null} r -t 0.7432 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {3.0 21.0 0 ------- null} + -t 0.7432 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {3.0 21.0 0 ------- null} - -t 0.7432 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {3.0 21.0 0 ------- null} h -t 0.7432 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {3.0 21.0 -1 ------- null} r -t 1.0948 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {3.0 21.0 0 ------- null} + -t 1.0948 -s 21 -d 28 -p ack -e 40 -c 0 -i 1 -a 1 -x {21.0 3.0 0 ------- null} - -t 1.0948 -s 21 -d 28 -p ack -e 40 -c 0 -i 1 -a 1 -x {21.0 3.0 0 ------- null} h -t 1.0948 -s 21 -d 28 -p ack -e 40 -c 0 -i 1 -a 1 -x {21.0 3.0 -1 ------- null} r -t 1.44486 -s 21 -d 28 -p ack -e 40 -c 0 -i 1 -a 1 -x {21.0 3.0 0 ------- null} + -t 1.44486 -s 28 -d 1 -p ack -e 40 -c 0 -i 1 -a 1 -x {21.0 3.0 0 ------- null} - -t 1.44486 -s 28 -d 1 -p ack -e 40 -c 0 -i 1 -a 1 -x {21.0 3.0 0 ------- null} h -t 1.44486 -s 28 -d 1 -p ack -e 40 -c 0 -i 1 -a 1 -x {21.0 3.0 -1 ------- null} r -t 1.74493 -s 28 -d 1 -p ack -e 40 -c 0 -i 1 -a 1 -x {21.0 3.0 0 ------- null} + -t 1.74493 -s 1 -d 3 -p ack -e 40 -c 0 -i 1 -a 1 -x {21.0 3.0 0 ------- null} - -t 1.74493 -s 1 -d 3 -p ack -e 40 -c 0 -i 1 -a 1 -x {21.0 3.0 0 ------- null} h -t 1.74493 -s 1 -d 3 -p ack -e 40 -c 0 -i 1 -a 1 -x {21.0 3.0 -1 ------- null} r -t 1.88499 -s 1 -d 3 -p ack -e 40 -c 0 -i 1 -a 1 -x {21.0 3.0 0 ------- null} + -t 1.88499 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {3.0 21.0 1 ------- null} - -t 1.88499 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {3.0 21.0 1 ------- null} h -t 1.88499 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {3.0 21.0 -1 ------- null} + -t 1.88499 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {3.0 21.0 2 ------- null} - -t 1.88659 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {3.0 21.0 2 ------- null} h -t 1.88659 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {3.0 21.0 -1 ------- null} r -t 2.02659 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {3.0 21.0 1 ------- null} + -t 2.02659 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {3.0 21.0 1 ------- null} - -t 2.02659 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {3.0 21.0 1 ------- null} h -t 2.02659 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {3.0 21.0 -1 ------- null} r -t 2.02819 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {3.0 21.0 2 ------- null} + -t 2.02819 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {3.0 21.0 2 ------- null} - -t 2.02819 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {3.0 21.0 2 ------- null} h -t 2.02819 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {3.0 21.0 -1 ------- null} r -t 2.32819 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {3.0 21.0 1 ------- null} + -t 2.32819 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {3.0 21.0 1 ------- null} - -t 2.32819 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {3.0 21.0 1 ------- null} h -t 2.32819 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {3.0 21.0 -1 ------- null} r -t 2.32979 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {3.0 21.0 2 ------- null} + -t 2.32979 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {3.0 21.0 2 ------- null} - -t 2.32979 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {3.0 21.0 2 ------- null} h -t 2.32979 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {3.0 21.0 -1 ------- null} r -t 2.67979 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {3.0 21.0 1 ------- null} + -t 2.67979 -s 21 -d 28 -p ack -e 40 -c 0 -i 4 -a 1 -x {21.0 3.0 1 ------- null} - -t 2.67979 -s 21 -d 28 -p ack -e 40 -c 0 -i 4 -a 1 -x {21.0 3.0 1 ------- null} h -t 2.67979 -s 21 -d 28 -p ack -e 40 -c 0 -i 4 -a 1 -x {21.0 3.0 -1 ------- null} r -t 2.68139 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {3.0 21.0 2 ------- null} + -t 2.68139 -s 21 -d 28 -p ack -e 40 -c 0 -i 5 -a 1 -x {21.0 3.0 2 ------- null} - -t 2.68139 -s 21 -d 28 -p ack -e 40 -c 0 -i 5 -a 1 -x {21.0 3.0 2 ------- null} h -t 2.68139 -s 21 -d 28 -p ack -e 40 -c 0 -i 5 -a 1 -x {21.0 3.0 -1 ------- null} r -t 3.02986 -s 21 -d 28 -p ack -e 40 -c 0 -i 4 -a 1 -x {21.0 3.0 1 ------- null} + -t 3.02986 -s 28 -d 1 -p ack -e 40 -c 0 -i 4 -a 1 -x {21.0 3.0 1 ------- null} - -t 3.02986 -s 28 -d 1 -p ack -e 40 -c 0 -i 4 -a 1 -x {21.0 3.0 1 ------- null} h -t 3.02986 -s 28 -d 1 -p ack -e 40 -c 0 -i 4 -a 1 -x {21.0 3.0 -1 ------- null} r -t 3.03146 -s 21 -d 28 -p ack -e 40 -c 0 -i 5 -a 1 -x {21.0 3.0 2 ------- null} + -t 3.03146 -s 28 -d 1 -p ack -e 40 -c 0 -i 5 -a 1 -x {21.0 3.0 2 ------- null} - -t 3.03146 -s 28 -d 1 -p ack -e 40 -c 0 -i 5 -a 1 -x {21.0 3.0 2 ------- null} h -t 3.03146 -s 28 -d 1 -p ack -e 40 -c 0 -i 5 -a 1 -x {21.0 3.0 -1 ------- null} r -t 3.32992 -s 28 -d 1 -p ack -e 40 -c 0 -i 4 -a 1 -x {21.0 3.0 1 ------- null} + -t 3.32992 -s 1 -d 3 -p ack -e 40 -c 0 -i 4 -a 1 -x {21.0 3.0 1 ------- null} - -t 3.32992 -s 1 -d 3 -p ack -e 40 -c 0 -i 4 -a 1 -x {21.0 3.0 1 ------- null} h -t 3.32992 -s 1 -d 3 -p ack -e 40 -c 0 -i 4 -a 1 -x {21.0 3.0 -1 ------- null} r -t 3.33152 -s 28 -d 1 -p ack -e 40 -c 0 -i 5 -a 1 -x {21.0 3.0 2 ------- null} + -t 3.33152 -s 1 -d 3 -p ack -e 40 -c 0 -i 5 -a 1 -x {21.0 3.0 2 ------- null} - -t 3.33152 -s 1 -d 3 -p ack -e 40 -c 0 -i 5 -a 1 -x {21.0 3.0 2 ------- null} h -t 3.33152 -s 1 -d 3 -p ack -e 40 -c 0 -i 5 -a 1 -x {21.0 3.0 -1 ------- null} r -t 3.46998 -s 1 -d 3 -p ack -e 40 -c 0 -i 4 -a 1 -x {21.0 3.0 1 ------- null} + -t 3.46998 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {3.0 21.0 3 ------- null} - -t 3.46998 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {3.0 21.0 3 ------- null} h -t 3.46998 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {3.0 21.0 -1 ------- null} + -t 3.46998 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {3.0 21.0 4 ------- null} r -t 3.47158 -s 1 -d 3 -p ack -e 40 -c 0 -i 5 -a 1 -x {21.0 3.0 2 ------- null} + -t 3.47158 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {3.0 21.0 5 ------- null} + -t 3.47158 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {3.0 21.0 6 ------- null} - -t 3.47158 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {3.0 21.0 4 ------- null} h -t 3.47158 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {3.0 21.0 -1 ------- null} - -t 3.47318 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {3.0 21.0 5 ------- null} h -t 3.47318 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {3.0 21.0 -1 ------- null} - -t 3.47478 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {3.0 21.0 6 ------- null} h -t 3.47478 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {3.0 21.0 -1 ------- null} r -t 3.61158 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {3.0 21.0 3 ------- null} + -t 3.61158 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {3.0 21.0 3 ------- null} - -t 3.61158 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {3.0 21.0 3 ------- null} h -t 3.61158 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {3.0 21.0 -1 ------- null} r -t 3.61318 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {3.0 21.0 4 ------- null} + -t 3.61318 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {3.0 21.0 4 ------- null} - -t 3.61318 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {3.0 21.0 4 ------- null} h -t 3.61318 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {3.0 21.0 -1 ------- null} r -t 3.61478 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {3.0 21.0 5 ------- null} + -t 3.61478 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {3.0 21.0 5 ------- null} - -t 3.61478 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {3.0 21.0 5 ------- null} h -t 3.61478 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {3.0 21.0 -1 ------- null} r -t 3.61638 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {3.0 21.0 6 ------- null} + -t 3.61638 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {3.0 21.0 6 ------- null} - -t 3.61638 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {3.0 21.0 6 ------- null} h -t 3.61638 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {3.0 21.0 -1 ------- null} r -t 3.91318 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {3.0 21.0 3 ------- null} + -t 3.91318 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {3.0 21.0 3 ------- null} - -t 3.91318 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {3.0 21.0 3 ------- null} h -t 3.91318 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {3.0 21.0 -1 ------- null} r -t 3.91478 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {3.0 21.0 4 ------- null} + -t 3.91478 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {3.0 21.0 4 ------- null} - -t 3.91478 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {3.0 21.0 4 ------- null} h -t 3.91478 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {3.0 21.0 -1 ------- null} r -t 3.91638 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {3.0 21.0 5 ------- null} + -t 3.91638 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {3.0 21.0 5 ------- null} - -t 3.91638 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {3.0 21.0 5 ------- null} h -t 3.91638 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {3.0 21.0 -1 ------- null} r -t 3.91798 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {3.0 21.0 6 ------- null} + -t 3.91798 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {3.0 21.0 6 ------- null} - -t 3.91798 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {3.0 21.0 6 ------- null} h -t 3.91798 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {3.0 21.0 -1 ------- null} r -t 4.26478 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {3.0 21.0 3 ------- null} + -t 4.26478 -s 21 -d 28 -p ack -e 40 -c 0 -i 10 -a 1 -x {21.0 3.0 3 ------- null} - -t 4.26478 -s 21 -d 28 -p ack -e 40 -c 0 -i 10 -a 1 -x {21.0 3.0 3 ------- null} h -t 4.26478 -s 21 -d 28 -p ack -e 40 -c 0 -i 10 -a 1 -x {21.0 3.0 -1 ------- null} r -t 4.26638 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {3.0 21.0 4 ------- null} + -t 4.26638 -s 21 -d 28 -p ack -e 40 -c 0 -i 11 -a 1 -x {21.0 3.0 4 ------- null} - -t 4.26638 -s 21 -d 28 -p ack -e 40 -c 0 -i 11 -a 1 -x {21.0 3.0 4 ------- null} h -t 4.26638 -s 21 -d 28 -p ack -e 40 -c 0 -i 11 -a 1 -x {21.0 3.0 -1 ------- null} r -t 4.26798 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {3.0 21.0 5 ------- null} + -t 4.26798 -s 21 -d 28 -p ack -e 40 -c 0 -i 12 -a 1 -x {21.0 3.0 5 ------- null} - -t 4.26798 -s 21 -d 28 -p ack -e 40 -c 0 -i 12 -a 1 -x {21.0 3.0 5 ------- null} h -t 4.26798 -s 21 -d 28 -p ack -e 40 -c 0 -i 12 -a 1 -x {21.0 3.0 -1 ------- null} r -t 4.26958 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {3.0 21.0 6 ------- null} + -t 4.26958 -s 21 -d 28 -p ack -e 40 -c 0 -i 13 -a 1 -x {21.0 3.0 6 ------- null} - -t 4.26958 -s 21 -d 28 -p ack -e 40 -c 0 -i 13 -a 1 -x {21.0 3.0 6 ------- null} h -t 4.26958 -s 21 -d 28 -p ack -e 40 -c 0 -i 13 -a 1 -x {21.0 3.0 -1 ------- null} r -t 4.61485 -s 21 -d 28 -p ack -e 40 -c 0 -i 10 -a 1 -x {21.0 3.0 3 ------- null} + -t 4.61485 -s 28 -d 1 -p ack -e 40 -c 0 -i 10 -a 1 -x {21.0 3.0 3 ------- null} - -t 4.61485 -s 28 -d 1 -p ack -e 40 -c 0 -i 10 -a 1 -x {21.0 3.0 3 ------- null} h -t 4.61485 -s 28 -d 1 -p ack -e 40 -c 0 -i 10 -a 1 -x {21.0 3.0 -1 ------- null} r -t 4.61645 -s 21 -d 28 -p ack -e 40 -c 0 -i 11 -a 1 -x {21.0 3.0 4 ------- null} + -t 4.61645 -s 28 -d 1 -p ack -e 40 -c 0 -i 11 -a 1 -x {21.0 3.0 4 ------- null} - -t 4.61645 -s 28 -d 1 -p ack -e 40 -c 0 -i 11 -a 1 -x {21.0 3.0 4 ------- null} h -t 4.61645 -s 28 -d 1 -p ack -e 40 -c 0 -i 11 -a 1 -x {21.0 3.0 -1 ------- null} r -t 4.61805 -s 21 -d 28 -p ack -e 40 -c 0 -i 12 -a 1 -x {21.0 3.0 5 ------- null} + -t 4.61805 -s 28 -d 1 -p ack -e 40 -c 0 -i 12 -a 1 -x {21.0 3.0 5 ------- null} - -t 4.61805 -s 28 -d 1 -p ack -e 40 -c 0 -i 12 -a 1 -x {21.0 3.0 5 ------- null} h -t 4.61805 -s 28 -d 1 -p ack -e 40 -c 0 -i 12 -a 1 -x {21.0 3.0 -1 ------- null} r -t 4.61965 -s 21 -d 28 -p ack -e 40 -c 0 -i 13 -a 1 -x {21.0 3.0 6 ------- null} + -t 4.61965 -s 28 -d 1 -p ack -e 40 -c 0 -i 13 -a 1 -x {21.0 3.0 6 ------- null} - -t 4.61965 -s 28 -d 1 -p ack -e 40 -c 0 -i 13 -a 1 -x {21.0 3.0 6 ------- null} h -t 4.61965 -s 28 -d 1 -p ack -e 40 -c 0 -i 13 -a 1 -x {21.0 3.0 -1 ------- null} r -t 4.91491 -s 28 -d 1 -p ack -e 40 -c 0 -i 10 -a 1 -x {21.0 3.0 3 ------- null} + -t 4.91491 -s 1 -d 3 -p ack -e 40 -c 0 -i 10 -a 1 -x {21.0 3.0 3 ------- null} - -t 4.91491 -s 1 -d 3 -p ack -e 40 -c 0 -i 10 -a 1 -x {21.0 3.0 3 ------- null} h -t 4.91491 -s 1 -d 3 -p ack -e 40 -c 0 -i 10 -a 1 -x {21.0 3.0 -1 ------- null} r -t 4.91651 -s 28 -d 1 -p ack -e 40 -c 0 -i 11 -a 1 -x {21.0 3.0 4 ------- null} + -t 4.91651 -s 1 -d 3 -p ack -e 40 -c 0 -i 11 -a 1 -x {21.0 3.0 4 ------- null} - -t 4.91651 -s 1 -d 3 -p ack -e 40 -c 0 -i 11 -a 1 -x {21.0 3.0 4 ------- null} h -t 4.91651 -s 1 -d 3 -p ack -e 40 -c 0 -i 11 -a 1 -x {21.0 3.0 -1 ------- null} r -t 4.91811 -s 28 -d 1 -p ack -e 40 -c 0 -i 12 -a 1 -x {21.0 3.0 5 ------- null} + -t 4.91811 -s 1 -d 3 -p ack -e 40 -c 0 -i 12 -a 1 -x {21.0 3.0 5 ------- null} - -t 4.91811 -s 1 -d 3 -p ack -e 40 -c 0 -i 12 -a 1 -x {21.0 3.0 5 ------- null} h -t 4.91811 -s 1 -d 3 -p ack -e 40 -c 0 -i 12 -a 1 -x {21.0 3.0 -1 ------- null} r -t 4.91971 -s 28 -d 1 -p ack -e 40 -c 0 -i 13 -a 1 -x {21.0 3.0 6 ------- null} + -t 4.91971 -s 1 -d 3 -p ack -e 40 -c 0 -i 13 -a 1 -x {21.0 3.0 6 ------- null} - -t 4.91971 -s 1 -d 3 -p ack -e 40 -c 0 -i 13 -a 1 -x {21.0 3.0 6 ------- null} h -t 4.91971 -s 1 -d 3 -p ack -e 40 -c 0 -i 13 -a 1 -x {21.0 3.0 -1 ------- null} r -t 5.05498 -s 1 -d 3 -p ack -e 40 -c 0 -i 10 -a 1 -x {21.0 3.0 3 ------- null} + -t 5.05498 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {3.0 21.0 7 ------- null} - -t 5.05498 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {3.0 21.0 7 ------- null} h -t 5.05498 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {3.0 21.0 -1 ------- null} + -t 5.05498 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {3.0 21.0 8 ------- null} r -t 5.05658 -s 1 -d 3 -p ack -e 40 -c 0 -i 11 -a 1 -x {21.0 3.0 4 ------- null} + -t 5.05658 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {3.0 21.0 9 ------- null} + -t 5.05658 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {3.0 21.0 10 ------- null} - -t 5.05658 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {3.0 21.0 8 ------- null} h -t 5.05658 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {3.0 21.0 -1 ------- null} r -t 5.05818 -s 1 -d 3 -p ack -e 40 -c 0 -i 12 -a 1 -x {21.0 3.0 5 ------- null} + -t 5.05818 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {3.0 21.0 11 ------- null} + -t 5.05818 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {3.0 21.0 12 ------- null} - -t 5.05818 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {3.0 21.0 9 ------- null} h -t 5.05818 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {3.0 21.0 -1 ------- null} r -t 5.05978 -s 1 -d 3 -p ack -e 40 -c 0 -i 13 -a 1 -x {21.0 3.0 6 ------- null} + -t 5.05978 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {3.0 21.0 13 ------- null} + -t 5.05978 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {3.0 21.0 14 ------- null} - -t 5.05978 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {3.0 21.0 10 ------- null} h -t 5.05978 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {3.0 21.0 -1 ------- null} - -t 5.06138 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {3.0 21.0 11 ------- null} h -t 5.06138 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {3.0 21.0 -1 ------- null} - -t 5.06298 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {3.0 21.0 12 ------- null} h -t 5.06298 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {3.0 21.0 -1 ------- null} - -t 5.06458 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {3.0 21.0 13 ------- null} h -t 5.06458 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {3.0 21.0 -1 ------- null} - -t 5.06618 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {3.0 21.0 14 ------- null} h -t 5.06618 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {3.0 21.0 -1 ------- null} r -t 5.19658 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {3.0 21.0 7 ------- null} + -t 5.19658 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {3.0 21.0 7 ------- null} - -t 5.19658 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {3.0 21.0 7 ------- null} h -t 5.19658 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {3.0 21.0 -1 ------- null} r -t 5.19818 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {3.0 21.0 8 ------- null} + -t 5.19818 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {3.0 21.0 8 ------- null} - -t 5.19818 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {3.0 21.0 8 ------- null} h -t 5.19818 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {3.0 21.0 -1 ------- null} r -t 5.19978 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {3.0 21.0 9 ------- null} + -t 5.19978 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {3.0 21.0 9 ------- null} - -t 5.19978 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {3.0 21.0 9 ------- null} h -t 5.19978 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {3.0 21.0 -1 ------- null} r -t 5.20138 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {3.0 21.0 10 ------- null} + -t 5.20138 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {3.0 21.0 10 ------- null} - -t 5.20138 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {3.0 21.0 10 ------- null} h -t 5.20138 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {3.0 21.0 -1 ------- null} r -t 5.20298 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {3.0 21.0 11 ------- null} + -t 5.20298 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {3.0 21.0 11 ------- null} - -t 5.20298 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {3.0 21.0 11 ------- null} h -t 5.20298 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {3.0 21.0 -1 ------- null} r -t 5.20458 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {3.0 21.0 12 ------- null} + -t 5.20458 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {3.0 21.0 12 ------- null} - -t 5.20458 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {3.0 21.0 12 ------- null} h -t 5.20458 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {3.0 21.0 -1 ------- null} r -t 5.20618 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {3.0 21.0 13 ------- null} + -t 5.20618 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {3.0 21.0 13 ------- null} - -t 5.20618 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {3.0 21.0 13 ------- null} h -t 5.20618 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {3.0 21.0 -1 ------- null} r -t 5.20778 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {3.0 21.0 14 ------- null} + -t 5.20778 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {3.0 21.0 14 ------- null} - -t 5.20778 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {3.0 21.0 14 ------- null} h -t 5.20778 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {3.0 21.0 -1 ------- null} r -t 5.49818 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {3.0 21.0 7 ------- null} + -t 5.49818 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {3.0 21.0 7 ------- null} - -t 5.49818 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {3.0 21.0 7 ------- null} h -t 5.49818 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {3.0 21.0 -1 ------- null} r -t 5.49978 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {3.0 21.0 8 ------- null} + -t 5.49978 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {3.0 21.0 8 ------- null} - -t 5.49978 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {3.0 21.0 8 ------- null} h -t 5.49978 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {3.0 21.0 -1 ------- null} r -t 5.50138 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {3.0 21.0 9 ------- null} + -t 5.50138 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {3.0 21.0 9 ------- null} - -t 5.50138 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {3.0 21.0 9 ------- null} h -t 5.50138 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {3.0 21.0 -1 ------- null} r -t 5.50298 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {3.0 21.0 10 ------- null} + -t 5.50298 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {3.0 21.0 10 ------- null} - -t 5.50298 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {3.0 21.0 10 ------- null} h -t 5.50298 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {3.0 21.0 -1 ------- null} r -t 5.50458 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {3.0 21.0 11 ------- null} + -t 5.50458 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {3.0 21.0 11 ------- null} - -t 5.50458 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {3.0 21.0 11 ------- null} h -t 5.50458 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {3.0 21.0 -1 ------- null} r -t 5.50618 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {3.0 21.0 12 ------- null} + -t 5.50618 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {3.0 21.0 12 ------- null} - -t 5.50618 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {3.0 21.0 12 ------- null} h -t 5.50618 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {3.0 21.0 -1 ------- null} r -t 5.50778 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {3.0 21.0 13 ------- null} + -t 5.50778 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {3.0 21.0 13 ------- null} - -t 5.50778 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {3.0 21.0 13 ------- null} h -t 5.50778 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {3.0 21.0 -1 ------- null} r -t 5.50938 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {3.0 21.0 14 ------- null} + -t 5.50938 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {3.0 21.0 14 ------- null} - -t 5.50938 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {3.0 21.0 14 ------- null} h -t 5.50938 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {3.0 21.0 -1 ------- null} r -t 5.84978 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {3.0 21.0 7 ------- null} + -t 5.84978 -s 21 -d 28 -p ack -e 40 -c 0 -i 22 -a 1 -x {21.0 3.0 7 ------- null} - -t 5.84978 -s 21 -d 28 -p ack -e 40 -c 0 -i 22 -a 1 -x {21.0 3.0 7 ------- null} h -t 5.84978 -s 21 -d 28 -p ack -e 40 -c 0 -i 22 -a 1 -x {21.0 3.0 -1 ------- null} r -t 5.85138 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {3.0 21.0 8 ------- null} + -t 5.85138 -s 21 -d 28 -p ack -e 40 -c 0 -i 23 -a 1 -x {21.0 3.0 8 ------- null} - -t 5.85138 -s 21 -d 28 -p ack -e 40 -c 0 -i 23 -a 1 -x {21.0 3.0 8 ------- null} h -t 5.85138 -s 21 -d 28 -p ack -e 40 -c 0 -i 23 -a 1 -x {21.0 3.0 -1 ------- null} r -t 5.85298 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {3.0 21.0 9 ------- null} + -t 5.85298 -s 21 -d 28 -p ack -e 40 -c 0 -i 24 -a 1 -x {21.0 3.0 9 ------- null} - -t 5.85298 -s 21 -d 28 -p ack -e 40 -c 0 -i 24 -a 1 -x {21.0 3.0 9 ------- null} h -t 5.85298 -s 21 -d 28 -p ack -e 40 -c 0 -i 24 -a 1 -x {21.0 3.0 -1 ------- null} r -t 5.85458 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {3.0 21.0 10 ------- null} + -t 5.85458 -s 21 -d 28 -p ack -e 40 -c 0 -i 25 -a 1 -x {21.0 3.0 10 ------- null} - -t 5.85458 -s 21 -d 28 -p ack -e 40 -c 0 -i 25 -a 1 -x {21.0 3.0 10 ------- null} h -t 5.85458 -s 21 -d 28 -p ack -e 40 -c 0 -i 25 -a 1 -x {21.0 3.0 -1 ------- null} r -t 5.85618 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {3.0 21.0 11 ------- null} + -t 5.85618 -s 21 -d 28 -p ack -e 40 -c 0 -i 26 -a 1 -x {21.0 3.0 11 ------- null} - -t 5.85618 -s 21 -d 28 -p ack -e 40 -c 0 -i 26 -a 1 -x {21.0 3.0 11 ------- null} h -t 5.85618 -s 21 -d 28 -p ack -e 40 -c 0 -i 26 -a 1 -x {21.0 3.0 -1 ------- null} r -t 5.85778 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {3.0 21.0 12 ------- null} + -t 5.85778 -s 21 -d 28 -p ack -e 40 -c 0 -i 27 -a 1 -x {21.0 3.0 12 ------- null} - -t 5.85778 -s 21 -d 28 -p ack -e 40 -c 0 -i 27 -a 1 -x {21.0 3.0 12 ------- null} h -t 5.85778 -s 21 -d 28 -p ack -e 40 -c 0 -i 27 -a 1 -x {21.0 3.0 -1 ------- null} r -t 5.85938 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {3.0 21.0 13 ------- null} + -t 5.85938 -s 21 -d 28 -p ack -e 40 -c 0 -i 28 -a 1 -x {21.0 3.0 13 ------- null} - -t 5.85938 -s 21 -d 28 -p ack -e 40 -c 0 -i 28 -a 1 -x {21.0 3.0 13 ------- null} h -t 5.85938 -s 21 -d 28 -p ack -e 40 -c 0 -i 28 -a 1 -x {21.0 3.0 -1 ------- null} r -t 5.86098 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {3.0 21.0 14 ------- null} + -t 5.86098 -s 21 -d 28 -p ack -e 40 -c 0 -i 29 -a 1 -x {21.0 3.0 14 ------- null} - -t 5.86098 -s 21 -d 28 -p ack -e 40 -c 0 -i 29 -a 1 -x {21.0 3.0 14 ------- null} h -t 5.86098 -s 21 -d 28 -p ack -e 40 -c 0 -i 29 -a 1 -x {21.0 3.0 -1 ------- null} r -t 6.19984 -s 21 -d 28 -p ack -e 40 -c 0 -i 22 -a 1 -x {21.0 3.0 7 ------- null} + -t 6.19984 -s 28 -d 1 -p ack -e 40 -c 0 -i 22 -a 1 -x {21.0 3.0 7 ------- null} - -t 6.19984 -s 28 -d 1 -p ack -e 40 -c 0 -i 22 -a 1 -x {21.0 3.0 7 ------- null} h -t 6.19984 -s 28 -d 1 -p ack -e 40 -c 0 -i 22 -a 1 -x {21.0 3.0 -1 ------- null} r -t 6.20144 -s 21 -d 28 -p ack -e 40 -c 0 -i 23 -a 1 -x {21.0 3.0 8 ------- null} + -t 6.20144 -s 28 -d 1 -p ack -e 40 -c 0 -i 23 -a 1 -x {21.0 3.0 8 ------- null} - -t 6.20144 -s 28 -d 1 -p ack -e 40 -c 0 -i 23 -a 1 -x {21.0 3.0 8 ------- null} h -t 6.20144 -s 28 -d 1 -p ack -e 40 -c 0 -i 23 -a 1 -x {21.0 3.0 -1 ------- null} r -t 6.20304 -s 21 -d 28 -p ack -e 40 -c 0 -i 24 -a 1 -x {21.0 3.0 9 ------- null} + -t 6.20304 -s 28 -d 1 -p ack -e 40 -c 0 -i 24 -a 1 -x {21.0 3.0 9 ------- null} - -t 6.20304 -s 28 -d 1 -p ack -e 40 -c 0 -i 24 -a 1 -x {21.0 3.0 9 ------- null} h -t 6.20304 -s 28 -d 1 -p ack -e 40 -c 0 -i 24 -a 1 -x {21.0 3.0 -1 ------- null} r -t 6.20464 -s 21 -d 28 -p ack -e 40 -c 0 -i 25 -a 1 -x {21.0 3.0 10 ------- null} + -t 6.20464 -s 28 -d 1 -p ack -e 40 -c 0 -i 25 -a 1 -x {21.0 3.0 10 ------- null} - -t 6.20464 -s 28 -d 1 -p ack -e 40 -c 0 -i 25 -a 1 -x {21.0 3.0 10 ------- null} h -t 6.20464 -s 28 -d 1 -p ack -e 40 -c 0 -i 25 -a 1 -x {21.0 3.0 -1 ------- null} r -t 6.20624 -s 21 -d 28 -p ack -e 40 -c 0 -i 26 -a 1 -x {21.0 3.0 11 ------- null} + -t 6.20624 -s 28 -d 1 -p ack -e 40 -c 0 -i 26 -a 1 -x {21.0 3.0 11 ------- null} - -t 6.20624 -s 28 -d 1 -p ack -e 40 -c 0 -i 26 -a 1 -x {21.0 3.0 11 ------- null} h -t 6.20624 -s 28 -d 1 -p ack -e 40 -c 0 -i 26 -a 1 -x {21.0 3.0 -1 ------- null} r -t 6.20784 -s 21 -d 28 -p ack -e 40 -c 0 -i 27 -a 1 -x {21.0 3.0 12 ------- null} + -t 6.20784 -s 28 -d 1 -p ack -e 40 -c 0 -i 27 -a 1 -x {21.0 3.0 12 ------- null} - -t 6.20784 -s 28 -d 1 -p ack -e 40 -c 0 -i 27 -a 1 -x {21.0 3.0 12 ------- null} h -t 6.20784 -s 28 -d 1 -p ack -e 40 -c 0 -i 27 -a 1 -x {21.0 3.0 -1 ------- null} r -t 6.20944 -s 21 -d 28 -p ack -e 40 -c 0 -i 28 -a 1 -x {21.0 3.0 13 ------- null} + -t 6.20944 -s 28 -d 1 -p ack -e 40 -c 0 -i 28 -a 1 -x {21.0 3.0 13 ------- null} - -t 6.20944 -s 28 -d 1 -p ack -e 40 -c 0 -i 28 -a 1 -x {21.0 3.0 13 ------- null} h -t 6.20944 -s 28 -d 1 -p ack -e 40 -c 0 -i 28 -a 1 -x {21.0 3.0 -1 ------- null} r -t 6.21104 -s 21 -d 28 -p ack -e 40 -c 0 -i 29 -a 1 -x {21.0 3.0 14 ------- null} + -t 6.21104 -s 28 -d 1 -p ack -e 40 -c 0 -i 29 -a 1 -x {21.0 3.0 14 ------- null} - -t 6.21104 -s 28 -d 1 -p ack -e 40 -c 0 -i 29 -a 1 -x {21.0 3.0 14 ------- null} h -t 6.21104 -s 28 -d 1 -p ack -e 40 -c 0 -i 29 -a 1 -x {21.0 3.0 -1 ------- null} r -t 6.4999 -s 28 -d 1 -p ack -e 40 -c 0 -i 22 -a 1 -x {21.0 3.0 7 ------- null} + -t 6.4999 -s 1 -d 3 -p ack -e 40 -c 0 -i 22 -a 1 -x {21.0 3.0 7 ------- null} - -t 6.4999 -s 1 -d 3 -p ack -e 40 -c 0 -i 22 -a 1 -x {21.0 3.0 7 ------- null} h -t 6.4999 -s 1 -d 3 -p ack -e 40 -c 0 -i 22 -a 1 -x {21.0 3.0 -1 ------- null} r -t 6.5015 -s 28 -d 1 -p ack -e 40 -c 0 -i 23 -a 1 -x {21.0 3.0 8 ------- null} + -t 6.5015 -s 1 -d 3 -p ack -e 40 -c 0 -i 23 -a 1 -x {21.0 3.0 8 ------- null} - -t 6.5015 -s 1 -d 3 -p ack -e 40 -c 0 -i 23 -a 1 -x {21.0 3.0 8 ------- null} h -t 6.5015 -s 1 -d 3 -p ack -e 40 -c 0 -i 23 -a 1 -x {21.0 3.0 -1 ------- null} r -t 6.5031 -s 28 -d 1 -p ack -e 40 -c 0 -i 24 -a 1 -x {21.0 3.0 9 ------- null} + -t 6.5031 -s 1 -d 3 -p ack -e 40 -c 0 -i 24 -a 1 -x {21.0 3.0 9 ------- null} - -t 6.5031 -s 1 -d 3 -p ack -e 40 -c 0 -i 24 -a 1 -x {21.0 3.0 9 ------- null} h -t 6.5031 -s 1 -d 3 -p ack -e 40 -c 0 -i 24 -a 1 -x {21.0 3.0 -1 ------- null} r -t 6.5047 -s 28 -d 1 -p ack -e 40 -c 0 -i 25 -a 1 -x {21.0 3.0 10 ------- null} + -t 6.5047 -s 1 -d 3 -p ack -e 40 -c 0 -i 25 -a 1 -x {21.0 3.0 10 ------- null} - -t 6.5047 -s 1 -d 3 -p ack -e 40 -c 0 -i 25 -a 1 -x {21.0 3.0 10 ------- null} h -t 6.5047 -s 1 -d 3 -p ack -e 40 -c 0 -i 25 -a 1 -x {21.0 3.0 -1 ------- null} r -t 6.5063 -s 28 -d 1 -p ack -e 40 -c 0 -i 26 -a 1 -x {21.0 3.0 11 ------- null} + -t 6.5063 -s 1 -d 3 -p ack -e 40 -c 0 -i 26 -a 1 -x {21.0 3.0 11 ------- null} - -t 6.5063 -s 1 -d 3 -p ack -e 40 -c 0 -i 26 -a 1 -x {21.0 3.0 11 ------- null} h -t 6.5063 -s 1 -d 3 -p ack -e 40 -c 0 -i 26 -a 1 -x {21.0 3.0 -1 ------- null} r -t 6.5079 -s 28 -d 1 -p ack -e 40 -c 0 -i 27 -a 1 -x {21.0 3.0 12 ------- null} + -t 6.5079 -s 1 -d 3 -p ack -e 40 -c 0 -i 27 -a 1 -x {21.0 3.0 12 ------- null} - -t 6.5079 -s 1 -d 3 -p ack -e 40 -c 0 -i 27 -a 1 -x {21.0 3.0 12 ------- null} h -t 6.5079 -s 1 -d 3 -p ack -e 40 -c 0 -i 27 -a 1 -x {21.0 3.0 -1 ------- null} r -t 6.5095 -s 28 -d 1 -p ack -e 40 -c 0 -i 28 -a 1 -x {21.0 3.0 13 ------- null} + -t 6.5095 -s 1 -d 3 -p ack -e 40 -c 0 -i 28 -a 1 -x {21.0 3.0 13 ------- null} - -t 6.5095 -s 1 -d 3 -p ack -e 40 -c 0 -i 28 -a 1 -x {21.0 3.0 13 ------- null} h -t 6.5095 -s 1 -d 3 -p ack -e 40 -c 0 -i 28 -a 1 -x {21.0 3.0 -1 ------- null} r -t 6.5111 -s 28 -d 1 -p ack -e 40 -c 0 -i 29 -a 1 -x {21.0 3.0 14 ------- null} + -t 6.5111 -s 1 -d 3 -p ack -e 40 -c 0 -i 29 -a 1 -x {21.0 3.0 14 ------- null} - -t 6.5111 -s 1 -d 3 -p ack -e 40 -c 0 -i 29 -a 1 -x {21.0 3.0 14 ------- null} h -t 6.5111 -s 1 -d 3 -p ack -e 40 -c 0 -i 29 -a 1 -x {21.0 3.0 -1 ------- null} r -t 6.63997 -s 1 -d 3 -p ack -e 40 -c 0 -i 22 -a 1 -x {21.0 3.0 7 ------- null} + -t 6.63997 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {3.0 21.0 15 ------- null} - -t 6.63997 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {3.0 21.0 15 ------- null} h -t 6.63997 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {3.0 21.0 -1 ------- null} + -t 6.63997 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {3.0 21.0 16 ------- null} r -t 6.64157 -s 1 -d 3 -p ack -e 40 -c 0 -i 23 -a 1 -x {21.0 3.0 8 ------- null} + -t 6.64157 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {3.0 21.0 17 ------- null} + -t 6.64157 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {3.0 21.0 18 ------- null} - -t 6.64157 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {3.0 21.0 16 ------- null} h -t 6.64157 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {3.0 21.0 -1 ------- null} r -t 6.64317 -s 1 -d 3 -p ack -e 40 -c 0 -i 24 -a 1 -x {21.0 3.0 9 ------- null} + -t 6.64317 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {3.0 21.0 19 ------- null} + -t 6.64317 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {3.0 21.0 20 ------- null} - -t 6.64317 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {3.0 21.0 17 ------- null} h -t 6.64317 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {3.0 21.0 -1 ------- null} r -t 6.64477 -s 1 -d 3 -p ack -e 40 -c 0 -i 25 -a 1 -x {21.0 3.0 10 ------- null} + -t 6.64477 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {3.0 21.0 21 ------- null} + -t 6.64477 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {3.0 21.0 22 ------- null} - -t 6.64477 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {3.0 21.0 18 ------- null} h -t 6.64477 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {3.0 21.0 -1 ------- null} r -t 6.64637 -s 1 -d 3 -p ack -e 40 -c 0 -i 26 -a 1 -x {21.0 3.0 11 ------- null} + -t 6.64637 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {3.0 21.0 23 ------- null} + -t 6.64637 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {3.0 21.0 24 ------- null} - -t 6.64637 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {3.0 21.0 19 ------- null} h -t 6.64637 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {3.0 21.0 -1 ------- null} r -t 6.64797 -s 1 -d 3 -p ack -e 40 -c 0 -i 27 -a 1 -x {21.0 3.0 12 ------- null} + -t 6.64797 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {3.0 21.0 25 ------- null} + -t 6.64797 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {3.0 21.0 26 ------- null} - -t 6.64797 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {3.0 21.0 20 ------- null} h -t 6.64797 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {3.0 21.0 -1 ------- null} r -t 6.64957 -s 1 -d 3 -p ack -e 40 -c 0 -i 28 -a 1 -x {21.0 3.0 13 ------- null} + -t 6.64957 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {3.0 21.0 27 ------- null} + -t 6.64957 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {3.0 21.0 28 ------- null} - -t 6.64957 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {3.0 21.0 21 ------- null} h -t 6.64957 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {3.0 21.0 -1 ------- null} r -t 6.65117 -s 1 -d 3 -p ack -e 40 -c 0 -i 29 -a 1 -x {21.0 3.0 14 ------- null} + -t 6.65117 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {3.0 21.0 29 ------- null} + -t 6.65117 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {3.0 21.0 30 ------- null} - -t 6.65117 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {3.0 21.0 22 ------- null} h -t 6.65117 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {3.0 21.0 -1 ------- null} - -t 6.65277 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {3.0 21.0 23 ------- null} h -t 6.65277 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {3.0 21.0 -1 ------- null} - -t 6.65437 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {3.0 21.0 24 ------- null} h -t 6.65437 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {3.0 21.0 -1 ------- null} - -t 6.65597 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {3.0 21.0 25 ------- null} h -t 6.65597 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {3.0 21.0 -1 ------- null} - -t 6.65757 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {3.0 21.0 26 ------- null} h -t 6.65757 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {3.0 21.0 -1 ------- null} - -t 6.65917 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {3.0 21.0 27 ------- null} h -t 6.65917 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {3.0 21.0 -1 ------- null} - -t 6.66077 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {3.0 21.0 28 ------- null} h -t 6.66077 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {3.0 21.0 -1 ------- null} - -t 6.66237 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {3.0 21.0 29 ------- null} h -t 6.66237 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {3.0 21.0 -1 ------- null} - -t 6.66397 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {3.0 21.0 30 ------- null} h -t 6.66397 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {3.0 21.0 -1 ------- null} r -t 6.78157 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {3.0 21.0 15 ------- null} + -t 6.78157 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {3.0 21.0 15 ------- null} - -t 6.78157 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {3.0 21.0 15 ------- null} h -t 6.78157 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {3.0 21.0 -1 ------- null} r -t 6.78317 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {3.0 21.0 16 ------- null} + -t 6.78317 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {3.0 21.0 16 ------- null} - -t 6.78317 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {3.0 21.0 16 ------- null} h -t 6.78317 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {3.0 21.0 -1 ------- null} r -t 6.78477 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {3.0 21.0 17 ------- null} + -t 6.78477 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {3.0 21.0 17 ------- null} - -t 6.78477 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {3.0 21.0 17 ------- null} h -t 6.78477 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {3.0 21.0 -1 ------- null} r -t 6.78637 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {3.0 21.0 18 ------- null} + -t 6.78637 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {3.0 21.0 18 ------- null} - -t 6.78637 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {3.0 21.0 18 ------- null} h -t 6.78637 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {3.0 21.0 -1 ------- null} r -t 6.78797 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {3.0 21.0 19 ------- null} + -t 6.78797 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {3.0 21.0 19 ------- null} - -t 6.78797 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {3.0 21.0 19 ------- null} h -t 6.78797 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {3.0 21.0 -1 ------- null} r -t 6.78957 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {3.0 21.0 20 ------- null} + -t 6.78957 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {3.0 21.0 20 ------- null} - -t 6.78957 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {3.0 21.0 20 ------- null} h -t 6.78957 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {3.0 21.0 -1 ------- null} r -t 6.79117 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {3.0 21.0 21 ------- null} + -t 6.79117 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {3.0 21.0 21 ------- null} - -t 6.79117 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {3.0 21.0 21 ------- null} h -t 6.79117 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {3.0 21.0 -1 ------- null} r -t 6.79277 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {3.0 21.0 22 ------- null} + -t 6.79277 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {3.0 21.0 22 ------- null} - -t 6.79277 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {3.0 21.0 22 ------- null} h -t 6.79277 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {3.0 21.0 -1 ------- null} r -t 6.79437 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {3.0 21.0 23 ------- null} + -t 6.79437 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {3.0 21.0 23 ------- null} - -t 6.79437 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {3.0 21.0 23 ------- null} h -t 6.79437 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {3.0 21.0 -1 ------- null} r -t 6.79597 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {3.0 21.0 24 ------- null} + -t 6.79597 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {3.0 21.0 24 ------- null} - -t 6.79597 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {3.0 21.0 24 ------- null} h -t 6.79597 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {3.0 21.0 -1 ------- null} r -t 6.79757 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {3.0 21.0 25 ------- null} + -t 6.79757 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {3.0 21.0 25 ------- null} - -t 6.79757 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {3.0 21.0 25 ------- null} h -t 6.79757 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {3.0 21.0 -1 ------- null} r -t 6.79917 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {3.0 21.0 26 ------- null} + -t 6.79917 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {3.0 21.0 26 ------- null} - -t 6.79917 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {3.0 21.0 26 ------- null} h -t 6.79917 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {3.0 21.0 -1 ------- null} r -t 6.80077 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {3.0 21.0 27 ------- null} + -t 6.80077 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {3.0 21.0 27 ------- null} - -t 6.80077 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {3.0 21.0 27 ------- null} h -t 6.80077 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {3.0 21.0 -1 ------- null} r -t 6.80237 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {3.0 21.0 28 ------- null} + -t 6.80237 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {3.0 21.0 28 ------- null} - -t 6.80237 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {3.0 21.0 28 ------- null} h -t 6.80237 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {3.0 21.0 -1 ------- null} r -t 6.80397 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {3.0 21.0 29 ------- null} + -t 6.80397 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {3.0 21.0 29 ------- null} - -t 6.80397 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {3.0 21.0 29 ------- null} h -t 6.80397 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {3.0 21.0 -1 ------- null} r -t 6.80557 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {3.0 21.0 30 ------- null} + -t 6.80557 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {3.0 21.0 30 ------- null} - -t 6.80557 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {3.0 21.0 30 ------- null} h -t 6.80557 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {3.0 21.0 -1 ------- null} r -t 7.08317 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {3.0 21.0 15 ------- null} + -t 7.08317 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {3.0 21.0 15 ------- null} - -t 7.08317 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {3.0 21.0 15 ------- null} h -t 7.08317 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {3.0 21.0 -1 ------- null} r -t 7.08477 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {3.0 21.0 16 ------- null} + -t 7.08477 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {3.0 21.0 16 ------- null} - -t 7.08477 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {3.0 21.0 16 ------- null} h -t 7.08477 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {3.0 21.0 -1 ------- null} r -t 7.08637 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {3.0 21.0 17 ------- null} + -t 7.08637 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {3.0 21.0 17 ------- null} - -t 7.08637 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {3.0 21.0 17 ------- null} h -t 7.08637 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {3.0 21.0 -1 ------- null} r -t 7.08797 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {3.0 21.0 18 ------- null} + -t 7.08797 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {3.0 21.0 18 ------- null} - -t 7.08797 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {3.0 21.0 18 ------- null} h -t 7.08797 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {3.0 21.0 -1 ------- null} r -t 7.08957 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {3.0 21.0 19 ------- null} + -t 7.08957 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {3.0 21.0 19 ------- null} - -t 7.08957 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {3.0 21.0 19 ------- null} h -t 7.08957 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {3.0 21.0 -1 ------- null} r -t 7.09117 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {3.0 21.0 20 ------- null} + -t 7.09117 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {3.0 21.0 20 ------- null} - -t 7.09117 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {3.0 21.0 20 ------- null} h -t 7.09117 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {3.0 21.0 -1 ------- null} r -t 7.09277 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {3.0 21.0 21 ------- null} + -t 7.09277 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {3.0 21.0 21 ------- null} - -t 7.09277 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {3.0 21.0 21 ------- null} h -t 7.09277 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {3.0 21.0 -1 ------- null} r -t 7.09437 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {3.0 21.0 22 ------- null} + -t 7.09437 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {3.0 21.0 22 ------- null} - -t 7.09437 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {3.0 21.0 22 ------- null} h -t 7.09437 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {3.0 21.0 -1 ------- null} r -t 7.09597 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {3.0 21.0 23 ------- null} + -t 7.09597 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {3.0 21.0 23 ------- null} - -t 7.09597 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {3.0 21.0 23 ------- null} h -t 7.09597 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {3.0 21.0 -1 ------- null} r -t 7.09757 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {3.0 21.0 24 ------- null} + -t 7.09757 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {3.0 21.0 24 ------- null} - -t 7.09757 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {3.0 21.0 24 ------- null} h -t 7.09757 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {3.0 21.0 -1 ------- null} r -t 7.09917 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {3.0 21.0 25 ------- null} + -t 7.09917 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {3.0 21.0 25 ------- null} - -t 7.09917 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {3.0 21.0 25 ------- null} h -t 7.09917 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {3.0 21.0 -1 ------- null} r -t 7.10077 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {3.0 21.0 26 ------- null} + -t 7.10077 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {3.0 21.0 26 ------- null} - -t 7.10077 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {3.0 21.0 26 ------- null} h -t 7.10077 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {3.0 21.0 -1 ------- null} r -t 7.10237 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {3.0 21.0 27 ------- null} + -t 7.10237 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {3.0 21.0 27 ------- null} - -t 7.10237 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {3.0 21.0 27 ------- null} h -t 7.10237 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {3.0 21.0 -1 ------- null} r -t 7.10397 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {3.0 21.0 28 ------- null} + -t 7.10397 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {3.0 21.0 28 ------- null} - -t 7.10397 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {3.0 21.0 28 ------- null} h -t 7.10397 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {3.0 21.0 -1 ------- null} r -t 7.10557 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {3.0 21.0 29 ------- null} + -t 7.10557 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {3.0 21.0 29 ------- null} - -t 7.10557 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {3.0 21.0 29 ------- null} h -t 7.10557 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {3.0 21.0 -1 ------- null} r -t 7.10717 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {3.0 21.0 30 ------- null} + -t 7.10717 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {3.0 21.0 30 ------- null} - -t 7.10717 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {3.0 21.0 30 ------- null} h -t 7.10717 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {3.0 21.0 -1 ------- null} r -t 7.43477 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {3.0 21.0 15 ------- null} + -t 7.43477 -s 21 -d 28 -p ack -e 40 -c 0 -i 46 -a 1 -x {21.0 3.0 15 ------- null} - -t 7.43477 -s 21 -d 28 -p ack -e 40 -c 0 -i 46 -a 1 -x {21.0 3.0 15 ------- null} h -t 7.43477 -s 21 -d 28 -p ack -e 40 -c 0 -i 46 -a 1 -x {21.0 3.0 -1 ------- null} r -t 7.43637 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {3.0 21.0 16 ------- null} + -t 7.43637 -s 21 -d 28 -p ack -e 40 -c 0 -i 47 -a 1 -x {21.0 3.0 16 ------- null} - -t 7.43637 -s 21 -d 28 -p ack -e 40 -c 0 -i 47 -a 1 -x {21.0 3.0 16 ------- null} h -t 7.43637 -s 21 -d 28 -p ack -e 40 -c 0 -i 47 -a 1 -x {21.0 3.0 -1 ------- null} r -t 7.43797 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {3.0 21.0 17 ------- null} + -t 7.43797 -s 21 -d 28 -p ack -e 40 -c 0 -i 48 -a 1 -x {21.0 3.0 17 ------- null} - -t 7.43797 -s 21 -d 28 -p ack -e 40 -c 0 -i 48 -a 1 -x {21.0 3.0 17 ------- null} h -t 7.43797 -s 21 -d 28 -p ack -e 40 -c 0 -i 48 -a 1 -x {21.0 3.0 -1 ------- null} r -t 7.43957 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {3.0 21.0 18 ------- null} + -t 7.43957 -s 21 -d 28 -p ack -e 40 -c 0 -i 49 -a 1 -x {21.0 3.0 18 ------- null} - -t 7.43957 -s 21 -d 28 -p ack -e 40 -c 0 -i 49 -a 1 -x {21.0 3.0 18 ------- null} h -t 7.43957 -s 21 -d 28 -p ack -e 40 -c 0 -i 49 -a 1 -x {21.0 3.0 -1 ------- null} r -t 7.44117 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {3.0 21.0 19 ------- null} + -t 7.44117 -s 21 -d 28 -p ack -e 40 -c 0 -i 50 -a 1 -x {21.0 3.0 19 ------- null} - -t 7.44117 -s 21 -d 28 -p ack -e 40 -c 0 -i 50 -a 1 -x {21.0 3.0 19 ------- null} h -t 7.44117 -s 21 -d 28 -p ack -e 40 -c 0 -i 50 -a 1 -x {21.0 3.0 -1 ------- null} r -t 7.44277 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {3.0 21.0 20 ------- null} + -t 7.44277 -s 21 -d 28 -p ack -e 40 -c 0 -i 51 -a 1 -x {21.0 3.0 20 ------- null} - -t 7.44277 -s 21 -d 28 -p ack -e 40 -c 0 -i 51 -a 1 -x {21.0 3.0 20 ------- null} h -t 7.44277 -s 21 -d 28 -p ack -e 40 -c 0 -i 51 -a 1 -x {21.0 3.0 -1 ------- null} r -t 7.44437 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {3.0 21.0 21 ------- null} + -t 7.44437 -s 21 -d 28 -p ack -e 40 -c 0 -i 52 -a 1 -x {21.0 3.0 21 ------- null} - -t 7.44437 -s 21 -d 28 -p ack -e 40 -c 0 -i 52 -a 1 -x {21.0 3.0 21 ------- null} h -t 7.44437 -s 21 -d 28 -p ack -e 40 -c 0 -i 52 -a 1 -x {21.0 3.0 -1 ------- null} r -t 7.44597 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {3.0 21.0 22 ------- null} + -t 7.44597 -s 21 -d 28 -p ack -e 40 -c 0 -i 53 -a 1 -x {21.0 3.0 22 ------- null} - -t 7.44597 -s 21 -d 28 -p ack -e 40 -c 0 -i 53 -a 1 -x {21.0 3.0 22 ------- null} h -t 7.44597 -s 21 -d 28 -p ack -e 40 -c 0 -i 53 -a 1 -x {21.0 3.0 -1 ------- null} r -t 7.44757 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {3.0 21.0 23 ------- null} + -t 7.44757 -s 21 -d 28 -p ack -e 40 -c 0 -i 54 -a 1 -x {21.0 3.0 23 ------- null} - -t 7.44757 -s 21 -d 28 -p ack -e 40 -c 0 -i 54 -a 1 -x {21.0 3.0 23 ------- null} h -t 7.44757 -s 21 -d 28 -p ack -e 40 -c 0 -i 54 -a 1 -x {21.0 3.0 -1 ------- null} r -t 7.44917 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {3.0 21.0 24 ------- null} + -t 7.44917 -s 21 -d 28 -p ack -e 40 -c 0 -i 55 -a 1 -x {21.0 3.0 24 ------- null} - -t 7.44917 -s 21 -d 28 -p ack -e 40 -c 0 -i 55 -a 1 -x {21.0 3.0 24 ------- null} h -t 7.44917 -s 21 -d 28 -p ack -e 40 -c 0 -i 55 -a 1 -x {21.0 3.0 -1 ------- null} r -t 7.45077 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {3.0 21.0 25 ------- null} + -t 7.45077 -s 21 -d 28 -p ack -e 40 -c 0 -i 56 -a 1 -x {21.0 3.0 25 ------- null} - -t 7.45077 -s 21 -d 28 -p ack -e 40 -c 0 -i 56 -a 1 -x {21.0 3.0 25 ------- null} h -t 7.45077 -s 21 -d 28 -p ack -e 40 -c 0 -i 56 -a 1 -x {21.0 3.0 -1 ------- null} r -t 7.45237 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {3.0 21.0 26 ------- null} + -t 7.45237 -s 21 -d 28 -p ack -e 40 -c 0 -i 57 -a 1 -x {21.0 3.0 26 ------- null} - -t 7.45237 -s 21 -d 28 -p ack -e 40 -c 0 -i 57 -a 1 -x {21.0 3.0 26 ------- null} h -t 7.45237 -s 21 -d 28 -p ack -e 40 -c 0 -i 57 -a 1 -x {21.0 3.0 -1 ------- null} r -t 7.45397 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {3.0 21.0 27 ------- null} + -t 7.45397 -s 21 -d 28 -p ack -e 40 -c 0 -i 58 -a 1 -x {21.0 3.0 27 ------- null} - -t 7.45397 -s 21 -d 28 -p ack -e 40 -c 0 -i 58 -a 1 -x {21.0 3.0 27 ------- null} h -t 7.45397 -s 21 -d 28 -p ack -e 40 -c 0 -i 58 -a 1 -x {21.0 3.0 -1 ------- null} r -t 7.45557 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {3.0 21.0 28 ------- null} + -t 7.45557 -s 21 -d 28 -p ack -e 40 -c 0 -i 59 -a 1 -x {21.0 3.0 28 ------- null} - -t 7.45557 -s 21 -d 28 -p ack -e 40 -c 0 -i 59 -a 1 -x {21.0 3.0 28 ------- null} h -t 7.45557 -s 21 -d 28 -p ack -e 40 -c 0 -i 59 -a 1 -x {21.0 3.0 -1 ------- null} r -t 7.45717 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {3.0 21.0 29 ------- null} + -t 7.45717 -s 21 -d 28 -p ack -e 40 -c 0 -i 60 -a 1 -x {21.0 3.0 29 ------- null} - -t 7.45717 -s 21 -d 28 -p ack -e 40 -c 0 -i 60 -a 1 -x {21.0 3.0 29 ------- null} h -t 7.45717 -s 21 -d 28 -p ack -e 40 -c 0 -i 60 -a 1 -x {21.0 3.0 -1 ------- null} r -t 7.45877 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {3.0 21.0 30 ------- null} + -t 7.45877 -s 21 -d 28 -p ack -e 40 -c 0 -i 61 -a 1 -x {21.0 3.0 30 ------- null} - -t 7.45877 -s 21 -d 28 -p ack -e 40 -c 0 -i 61 -a 1 -x {21.0 3.0 30 ------- null} h -t 7.45877 -s 21 -d 28 -p ack -e 40 -c 0 -i 61 -a 1 -x {21.0 3.0 -1 ------- null} r -t 7.78483 -s 21 -d 28 -p ack -e 40 -c 0 -i 46 -a 1 -x {21.0 3.0 15 ------- null} + -t 7.78483 -s 28 -d 1 -p ack -e 40 -c 0 -i 46 -a 1 -x {21.0 3.0 15 ------- null} - -t 7.78483 -s 28 -d 1 -p ack -e 40 -c 0 -i 46 -a 1 -x {21.0 3.0 15 ------- null} h -t 7.78483 -s 28 -d 1 -p ack -e 40 -c 0 -i 46 -a 1 -x {21.0 3.0 -1 ------- null} r -t 7.78643 -s 21 -d 28 -p ack -e 40 -c 0 -i 47 -a 1 -x {21.0 3.0 16 ------- null} + -t 7.78643 -s 28 -d 1 -p ack -e 40 -c 0 -i 47 -a 1 -x {21.0 3.0 16 ------- null} - -t 7.78643 -s 28 -d 1 -p ack -e 40 -c 0 -i 47 -a 1 -x {21.0 3.0 16 ------- null} h -t 7.78643 -s 28 -d 1 -p ack -e 40 -c 0 -i 47 -a 1 -x {21.0 3.0 -1 ------- null} r -t 7.78803 -s 21 -d 28 -p ack -e 40 -c 0 -i 48 -a 1 -x {21.0 3.0 17 ------- null} + -t 7.78803 -s 28 -d 1 -p ack -e 40 -c 0 -i 48 -a 1 -x {21.0 3.0 17 ------- null} - -t 7.78803 -s 28 -d 1 -p ack -e 40 -c 0 -i 48 -a 1 -x {21.0 3.0 17 ------- null} h -t 7.78803 -s 28 -d 1 -p ack -e 40 -c 0 -i 48 -a 1 -x {21.0 3.0 -1 ------- null} r -t 7.78963 -s 21 -d 28 -p ack -e 40 -c 0 -i 49 -a 1 -x {21.0 3.0 18 ------- null} + -t 7.78963 -s 28 -d 1 -p ack -e 40 -c 0 -i 49 -a 1 -x {21.0 3.0 18 ------- null} - -t 7.78963 -s 28 -d 1 -p ack -e 40 -c 0 -i 49 -a 1 -x {21.0 3.0 18 ------- null} h -t 7.78963 -s 28 -d 1 -p ack -e 40 -c 0 -i 49 -a 1 -x {21.0 3.0 -1 ------- null} r -t 7.79123 -s 21 -d 28 -p ack -e 40 -c 0 -i 50 -a 1 -x {21.0 3.0 19 ------- null} + -t 7.79123 -s 28 -d 1 -p ack -e 40 -c 0 -i 50 -a 1 -x {21.0 3.0 19 ------- null} - -t 7.79123 -s 28 -d 1 -p ack -e 40 -c 0 -i 50 -a 1 -x {21.0 3.0 19 ------- null} h -t 7.79123 -s 28 -d 1 -p ack -e 40 -c 0 -i 50 -a 1 -x {21.0 3.0 -1 ------- null} r -t 7.79283 -s 21 -d 28 -p ack -e 40 -c 0 -i 51 -a 1 -x {21.0 3.0 20 ------- null} + -t 7.79283 -s 28 -d 1 -p ack -e 40 -c 0 -i 51 -a 1 -x {21.0 3.0 20 ------- null} - -t 7.79283 -s 28 -d 1 -p ack -e 40 -c 0 -i 51 -a 1 -x {21.0 3.0 20 ------- null} h -t 7.79283 -s 28 -d 1 -p ack -e 40 -c 0 -i 51 -a 1 -x {21.0 3.0 -1 ------- null} r -t 7.79443 -s 21 -d 28 -p ack -e 40 -c 0 -i 52 -a 1 -x {21.0 3.0 21 ------- null} + -t 7.79443 -s 28 -d 1 -p ack -e 40 -c 0 -i 52 -a 1 -x {21.0 3.0 21 ------- null} - -t 7.79443 -s 28 -d 1 -p ack -e 40 -c 0 -i 52 -a 1 -x {21.0 3.0 21 ------- null} h -t 7.79443 -s 28 -d 1 -p ack -e 40 -c 0 -i 52 -a 1 -x {21.0 3.0 -1 ------- null} r -t 7.79603 -s 21 -d 28 -p ack -e 40 -c 0 -i 53 -a 1 -x {21.0 3.0 22 ------- null} + -t 7.79603 -s 28 -d 1 -p ack -e 40 -c 0 -i 53 -a 1 -x {21.0 3.0 22 ------- null} - -t 7.79603 -s 28 -d 1 -p ack -e 40 -c 0 -i 53 -a 1 -x {21.0 3.0 22 ------- null} h -t 7.79603 -s 28 -d 1 -p ack -e 40 -c 0 -i 53 -a 1 -x {21.0 3.0 -1 ------- null} r -t 7.79763 -s 21 -d 28 -p ack -e 40 -c 0 -i 54 -a 1 -x {21.0 3.0 23 ------- null} + -t 7.79763 -s 28 -d 1 -p ack -e 40 -c 0 -i 54 -a 1 -x {21.0 3.0 23 ------- null} - -t 7.79763 -s 28 -d 1 -p ack -e 40 -c 0 -i 54 -a 1 -x {21.0 3.0 23 ------- null} h -t 7.79763 -s 28 -d 1 -p ack -e 40 -c 0 -i 54 -a 1 -x {21.0 3.0 -1 ------- null} r -t 7.79923 -s 21 -d 28 -p ack -e 40 -c 0 -i 55 -a 1 -x {21.0 3.0 24 ------- null} + -t 7.79923 -s 28 -d 1 -p ack -e 40 -c 0 -i 55 -a 1 -x {21.0 3.0 24 ------- null} - -t 7.79923 -s 28 -d 1 -p ack -e 40 -c 0 -i 55 -a 1 -x {21.0 3.0 24 ------- null} h -t 7.79923 -s 28 -d 1 -p ack -e 40 -c 0 -i 55 -a 1 -x {21.0 3.0 -1 ------- null} r -t 7.80083 -s 21 -d 28 -p ack -e 40 -c 0 -i 56 -a 1 -x {21.0 3.0 25 ------- null} + -t 7.80083 -s 28 -d 1 -p ack -e 40 -c 0 -i 56 -a 1 -x {21.0 3.0 25 ------- null} - -t 7.80083 -s 28 -d 1 -p ack -e 40 -c 0 -i 56 -a 1 -x {21.0 3.0 25 ------- null} h -t 7.80083 -s 28 -d 1 -p ack -e 40 -c 0 -i 56 -a 1 -x {21.0 3.0 -1 ------- null} r -t 7.80243 -s 21 -d 28 -p ack -e 40 -c 0 -i 57 -a 1 -x {21.0 3.0 26 ------- null} + -t 7.80243 -s 28 -d 1 -p ack -e 40 -c 0 -i 57 -a 1 -x {21.0 3.0 26 ------- null} - -t 7.80243 -s 28 -d 1 -p ack -e 40 -c 0 -i 57 -a 1 -x {21.0 3.0 26 ------- null} h -t 7.80243 -s 28 -d 1 -p ack -e 40 -c 0 -i 57 -a 1 -x {21.0 3.0 -1 ------- null} r -t 7.80403 -s 21 -d 28 -p ack -e 40 -c 0 -i 58 -a 1 -x {21.0 3.0 27 ------- null} + -t 7.80403 -s 28 -d 1 -p ack -e 40 -c 0 -i 58 -a 1 -x {21.0 3.0 27 ------- null} - -t 7.80403 -s 28 -d 1 -p ack -e 40 -c 0 -i 58 -a 1 -x {21.0 3.0 27 ------- null} h -t 7.80403 -s 28 -d 1 -p ack -e 40 -c 0 -i 58 -a 1 -x {21.0 3.0 -1 ------- null} r -t 7.80563 -s 21 -d 28 -p ack -e 40 -c 0 -i 59 -a 1 -x {21.0 3.0 28 ------- null} + -t 7.80563 -s 28 -d 1 -p ack -e 40 -c 0 -i 59 -a 1 -x {21.0 3.0 28 ------- null} - -t 7.80563 -s 28 -d 1 -p ack -e 40 -c 0 -i 59 -a 1 -x {21.0 3.0 28 ------- null} h -t 7.80563 -s 28 -d 1 -p ack -e 40 -c 0 -i 59 -a 1 -x {21.0 3.0 -1 ------- null} r -t 7.80723 -s 21 -d 28 -p ack -e 40 -c 0 -i 60 -a 1 -x {21.0 3.0 29 ------- null} + -t 7.80723 -s 28 -d 1 -p ack -e 40 -c 0 -i 60 -a 1 -x {21.0 3.0 29 ------- null} - -t 7.80723 -s 28 -d 1 -p ack -e 40 -c 0 -i 60 -a 1 -x {21.0 3.0 29 ------- null} h -t 7.80723 -s 28 -d 1 -p ack -e 40 -c 0 -i 60 -a 1 -x {21.0 3.0 -1 ------- null} r -t 7.80883 -s 21 -d 28 -p ack -e 40 -c 0 -i 61 -a 1 -x {21.0 3.0 30 ------- null} + -t 7.80883 -s 28 -d 1 -p ack -e 40 -c 0 -i 61 -a 1 -x {21.0 3.0 30 ------- null} - -t 7.80883 -s 28 -d 1 -p ack -e 40 -c 0 -i 61 -a 1 -x {21.0 3.0 30 ------- null} h -t 7.80883 -s 28 -d 1 -p ack -e 40 -c 0 -i 61 -a 1 -x {21.0 3.0 -1 ------- null} r -t 8.0849 -s 28 -d 1 -p ack -e 40 -c 0 -i 46 -a 1 -x {21.0 3.0 15 ------- null} + -t 8.0849 -s 1 -d 3 -p ack -e 40 -c 0 -i 46 -a 1 -x {21.0 3.0 15 ------- null} - -t 8.0849 -s 1 -d 3 -p ack -e 40 -c 0 -i 46 -a 1 -x {21.0 3.0 15 ------- null} h -t 8.0849 -s 1 -d 3 -p ack -e 40 -c 0 -i 46 -a 1 -x {21.0 3.0 -1 ------- null} r -t 8.0865 -s 28 -d 1 -p ack -e 40 -c 0 -i 47 -a 1 -x {21.0 3.0 16 ------- null} + -t 8.0865 -s 1 -d 3 -p ack -e 40 -c 0 -i 47 -a 1 -x {21.0 3.0 16 ------- null} - -t 8.0865 -s 1 -d 3 -p ack -e 40 -c 0 -i 47 -a 1 -x {21.0 3.0 16 ------- null} h -t 8.0865 -s 1 -d 3 -p ack -e 40 -c 0 -i 47 -a 1 -x {21.0 3.0 -1 ------- null} r -t 8.0881 -s 28 -d 1 -p ack -e 40 -c 0 -i 48 -a 1 -x {21.0 3.0 17 ------- null} + -t 8.0881 -s 1 -d 3 -p ack -e 40 -c 0 -i 48 -a 1 -x {21.0 3.0 17 ------- null} - -t 8.0881 -s 1 -d 3 -p ack -e 40 -c 0 -i 48 -a 1 -x {21.0 3.0 17 ------- null} h -t 8.0881 -s 1 -d 3 -p ack -e 40 -c 0 -i 48 -a 1 -x {21.0 3.0 -1 ------- null} r -t 8.0897 -s 28 -d 1 -p ack -e 40 -c 0 -i 49 -a 1 -x {21.0 3.0 18 ------- null} + -t 8.0897 -s 1 -d 3 -p ack -e 40 -c 0 -i 49 -a 1 -x {21.0 3.0 18 ------- null} - -t 8.0897 -s 1 -d 3 -p ack -e 40 -c 0 -i 49 -a 1 -x {21.0 3.0 18 ------- null} h -t 8.0897 -s 1 -d 3 -p ack -e 40 -c 0 -i 49 -a 1 -x {21.0 3.0 -1 ------- null} r -t 8.0913 -s 28 -d 1 -p ack -e 40 -c 0 -i 50 -a 1 -x {21.0 3.0 19 ------- null} + -t 8.0913 -s 1 -d 3 -p ack -e 40 -c 0 -i 50 -a 1 -x {21.0 3.0 19 ------- null} - -t 8.0913 -s 1 -d 3 -p ack -e 40 -c 0 -i 50 -a 1 -x {21.0 3.0 19 ------- null} h -t 8.0913 -s 1 -d 3 -p ack -e 40 -c 0 -i 50 -a 1 -x {21.0 3.0 -1 ------- null} r -t 8.0929 -s 28 -d 1 -p ack -e 40 -c 0 -i 51 -a 1 -x {21.0 3.0 20 ------- null} + -t 8.0929 -s 1 -d 3 -p ack -e 40 -c 0 -i 51 -a 1 -x {21.0 3.0 20 ------- null} - -t 8.0929 -s 1 -d 3 -p ack -e 40 -c 0 -i 51 -a 1 -x {21.0 3.0 20 ------- null} h -t 8.0929 -s 1 -d 3 -p ack -e 40 -c 0 -i 51 -a 1 -x {21.0 3.0 -1 ------- null} r -t 8.0945 -s 28 -d 1 -p ack -e 40 -c 0 -i 52 -a 1 -x {21.0 3.0 21 ------- null} + -t 8.0945 -s 1 -d 3 -p ack -e 40 -c 0 -i 52 -a 1 -x {21.0 3.0 21 ------- null} - -t 8.0945 -s 1 -d 3 -p ack -e 40 -c 0 -i 52 -a 1 -x {21.0 3.0 21 ------- null} h -t 8.0945 -s 1 -d 3 -p ack -e 40 -c 0 -i 52 -a 1 -x {21.0 3.0 -1 ------- null} r -t 8.0961 -s 28 -d 1 -p ack -e 40 -c 0 -i 53 -a 1 -x {21.0 3.0 22 ------- null} + -t 8.0961 -s 1 -d 3 -p ack -e 40 -c 0 -i 53 -a 1 -x {21.0 3.0 22 ------- null} - -t 8.0961 -s 1 -d 3 -p ack -e 40 -c 0 -i 53 -a 1 -x {21.0 3.0 22 ------- null} h -t 8.0961 -s 1 -d 3 -p ack -e 40 -c 0 -i 53 -a 1 -x {21.0 3.0 -1 ------- null} r -t 8.0977 -s 28 -d 1 -p ack -e 40 -c 0 -i 54 -a 1 -x {21.0 3.0 23 ------- null} + -t 8.0977 -s 1 -d 3 -p ack -e 40 -c 0 -i 54 -a 1 -x {21.0 3.0 23 ------- null} - -t 8.0977 -s 1 -d 3 -p ack -e 40 -c 0 -i 54 -a 1 -x {21.0 3.0 23 ------- null} h -t 8.0977 -s 1 -d 3 -p ack -e 40 -c 0 -i 54 -a 1 -x {21.0 3.0 -1 ------- null} r -t 8.0993 -s 28 -d 1 -p ack -e 40 -c 0 -i 55 -a 1 -x {21.0 3.0 24 ------- null} + -t 8.0993 -s 1 -d 3 -p ack -e 40 -c 0 -i 55 -a 1 -x {21.0 3.0 24 ------- null} - -t 8.0993 -s 1 -d 3 -p ack -e 40 -c 0 -i 55 -a 1 -x {21.0 3.0 24 ------- null} h -t 8.0993 -s 1 -d 3 -p ack -e 40 -c 0 -i 55 -a 1 -x {21.0 3.0 -1 ------- null} r -t 8.1009 -s 28 -d 1 -p ack -e 40 -c 0 -i 56 -a 1 -x {21.0 3.0 25 ------- null} + -t 8.1009 -s 1 -d 3 -p ack -e 40 -c 0 -i 56 -a 1 -x {21.0 3.0 25 ------- null} - -t 8.1009 -s 1 -d 3 -p ack -e 40 -c 0 -i 56 -a 1 -x {21.0 3.0 25 ------- null} h -t 8.1009 -s 1 -d 3 -p ack -e 40 -c 0 -i 56 -a 1 -x {21.0 3.0 -1 ------- null} r -t 8.1025 -s 28 -d 1 -p ack -e 40 -c 0 -i 57 -a 1 -x {21.0 3.0 26 ------- null} + -t 8.1025 -s 1 -d 3 -p ack -e 40 -c 0 -i 57 -a 1 -x {21.0 3.0 26 ------- null} - -t 8.1025 -s 1 -d 3 -p ack -e 40 -c 0 -i 57 -a 1 -x {21.0 3.0 26 ------- null} h -t 8.1025 -s 1 -d 3 -p ack -e 40 -c 0 -i 57 -a 1 -x {21.0 3.0 -1 ------- null} r -t 8.1041 -s 28 -d 1 -p ack -e 40 -c 0 -i 58 -a 1 -x {21.0 3.0 27 ------- null} + -t 8.1041 -s 1 -d 3 -p ack -e 40 -c 0 -i 58 -a 1 -x {21.0 3.0 27 ------- null} - -t 8.1041 -s 1 -d 3 -p ack -e 40 -c 0 -i 58 -a 1 -x {21.0 3.0 27 ------- null} h -t 8.1041 -s 1 -d 3 -p ack -e 40 -c 0 -i 58 -a 1 -x {21.0 3.0 -1 ------- null} r -t 8.1057 -s 28 -d 1 -p ack -e 40 -c 0 -i 59 -a 1 -x {21.0 3.0 28 ------- null} + -t 8.1057 -s 1 -d 3 -p ack -e 40 -c 0 -i 59 -a 1 -x {21.0 3.0 28 ------- null} - -t 8.1057 -s 1 -d 3 -p ack -e 40 -c 0 -i 59 -a 1 -x {21.0 3.0 28 ------- null} h -t 8.1057 -s 1 -d 3 -p ack -e 40 -c 0 -i 59 -a 1 -x {21.0 3.0 -1 ------- null} r -t 8.1073 -s 28 -d 1 -p ack -e 40 -c 0 -i 60 -a 1 -x {21.0 3.0 29 ------- null} + -t 8.1073 -s 1 -d 3 -p ack -e 40 -c 0 -i 60 -a 1 -x {21.0 3.0 29 ------- null} - -t 8.1073 -s 1 -d 3 -p ack -e 40 -c 0 -i 60 -a 1 -x {21.0 3.0 29 ------- null} h -t 8.1073 -s 1 -d 3 -p ack -e 40 -c 0 -i 60 -a 1 -x {21.0 3.0 -1 ------- null} r -t 8.1089 -s 28 -d 1 -p ack -e 40 -c 0 -i 61 -a 1 -x {21.0 3.0 30 ------- null} + -t 8.1089 -s 1 -d 3 -p ack -e 40 -c 0 -i 61 -a 1 -x {21.0 3.0 30 ------- null} - -t 8.1089 -s 1 -d 3 -p ack -e 40 -c 0 -i 61 -a 1 -x {21.0 3.0 30 ------- null} h -t 8.1089 -s 1 -d 3 -p ack -e 40 -c 0 -i 61 -a 1 -x {21.0 3.0 -1 ------- null} r -t 8.22496 -s 1 -d 3 -p ack -e 40 -c 0 -i 46 -a 1 -x {21.0 3.0 15 ------- null} + -t 8.22496 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {3.0 21.0 31 ------- null} - -t 8.22496 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {3.0 21.0 31 ------- null} h -t 8.22496 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {3.0 21.0 -1 ------- null} + -t 8.22496 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {3.0 21.0 32 ------- null} r -t 8.22656 -s 1 -d 3 -p ack -e 40 -c 0 -i 47 -a 1 -x {21.0 3.0 16 ------- null} + -t 8.22656 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 64 -a 0 -x {3.0 21.0 33 ------- null} + -t 8.22656 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {3.0 21.0 34 ------- null} - -t 8.22656 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {3.0 21.0 32 ------- null} h -t 8.22656 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.22816 -s 1 -d 3 -p ack -e 40 -c 0 -i 48 -a 1 -x {21.0 3.0 17 ------- null} + -t 8.22816 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {3.0 21.0 35 ------- null} + -t 8.22816 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {3.0 21.0 36 ------- null} - -t 8.22816 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 64 -a 0 -x {3.0 21.0 33 ------- null} h -t 8.22816 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 64 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.22976 -s 1 -d 3 -p ack -e 40 -c 0 -i 49 -a 1 -x {21.0 3.0 18 ------- null} + -t 8.22976 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {3.0 21.0 37 ------- null} + -t 8.22976 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {3.0 21.0 38 ------- null} - -t 8.22976 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {3.0 21.0 34 ------- null} h -t 8.22976 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.23136 -s 1 -d 3 -p ack -e 40 -c 0 -i 50 -a 1 -x {21.0 3.0 19 ------- null} + -t 8.23136 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {3.0 21.0 39 ------- null} - -t 8.23136 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {3.0 21.0 35 ------- null} h -t 8.23136 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.23296 -s 1 -d 3 -p ack -e 40 -c 0 -i 51 -a 1 -x {21.0 3.0 20 ------- null} + -t 8.23296 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {3.0 21.0 40 ------- null} - -t 8.23296 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {3.0 21.0 36 ------- null} h -t 8.23296 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.23456 -s 1 -d 3 -p ack -e 40 -c 0 -i 52 -a 1 -x {21.0 3.0 21 ------- null} + -t 8.23456 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {3.0 21.0 41 ------- null} - -t 8.23456 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {3.0 21.0 37 ------- null} h -t 8.23456 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.23616 -s 1 -d 3 -p ack -e 40 -c 0 -i 53 -a 1 -x {21.0 3.0 22 ------- null} + -t 8.23616 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {3.0 21.0 42 ------- null} - -t 8.23616 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {3.0 21.0 38 ------- null} h -t 8.23616 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.23776 -s 1 -d 3 -p ack -e 40 -c 0 -i 54 -a 1 -x {21.0 3.0 23 ------- null} + -t 8.23776 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 74 -a 0 -x {3.0 21.0 43 ------- null} - -t 8.23776 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {3.0 21.0 39 ------- null} h -t 8.23776 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.23936 -s 1 -d 3 -p ack -e 40 -c 0 -i 55 -a 1 -x {21.0 3.0 24 ------- null} + -t 8.23936 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {3.0 21.0 44 ------- null} - -t 8.23936 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {3.0 21.0 40 ------- null} h -t 8.23936 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.24096 -s 1 -d 3 -p ack -e 40 -c 0 -i 56 -a 1 -x {21.0 3.0 25 ------- null} + -t 8.24096 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {3.0 21.0 45 ------- null} - -t 8.24096 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {3.0 21.0 41 ------- null} h -t 8.24096 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.24256 -s 1 -d 3 -p ack -e 40 -c 0 -i 57 -a 1 -x {21.0 3.0 26 ------- null} + -t 8.24256 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {3.0 21.0 46 ------- null} - -t 8.24256 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {3.0 21.0 42 ------- null} h -t 8.24256 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.24416 -s 1 -d 3 -p ack -e 40 -c 0 -i 58 -a 1 -x {21.0 3.0 27 ------- null} + -t 8.24416 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 78 -a 0 -x {3.0 21.0 47 ------- null} - -t 8.24416 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 74 -a 0 -x {3.0 21.0 43 ------- null} h -t 8.24416 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 74 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.24576 -s 1 -d 3 -p ack -e 40 -c 0 -i 59 -a 1 -x {21.0 3.0 28 ------- null} + -t 8.24576 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {3.0 21.0 48 ------- null} - -t 8.24576 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {3.0 21.0 44 ------- null} h -t 8.24576 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.24736 -s 1 -d 3 -p ack -e 40 -c 0 -i 60 -a 1 -x {21.0 3.0 29 ------- null} + -t 8.24736 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 80 -a 0 -x {3.0 21.0 49 ------- null} - -t 8.24736 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {3.0 21.0 45 ------- null} h -t 8.24736 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.24896 -s 1 -d 3 -p ack -e 40 -c 0 -i 61 -a 1 -x {21.0 3.0 30 ------- null} + -t 8.24896 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {3.0 21.0 50 ------- null} - -t 8.24896 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {3.0 21.0 46 ------- null} h -t 8.24896 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {3.0 21.0 -1 ------- null} - -t 8.25056 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 78 -a 0 -x {3.0 21.0 47 ------- null} h -t 8.25056 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 78 -a 0 -x {3.0 21.0 -1 ------- null} - -t 8.25216 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {3.0 21.0 48 ------- null} h -t 8.25216 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {3.0 21.0 -1 ------- null} - -t 8.25376 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 80 -a 0 -x {3.0 21.0 49 ------- null} h -t 8.25376 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 80 -a 0 -x {3.0 21.0 -1 ------- null} - -t 8.25536 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {3.0 21.0 50 ------- null} h -t 8.25536 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.36656 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {3.0 21.0 31 ------- null} + -t 8.36656 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {3.0 21.0 31 ------- null} - -t 8.36656 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {3.0 21.0 31 ------- null} h -t 8.36656 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.36816 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {3.0 21.0 32 ------- null} + -t 8.36816 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {3.0 21.0 32 ------- null} - -t 8.36816 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {3.0 21.0 32 ------- null} h -t 8.36816 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.36976 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 64 -a 0 -x {3.0 21.0 33 ------- null} + -t 8.36976 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 64 -a 0 -x {3.0 21.0 33 ------- null} - -t 8.36976 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 64 -a 0 -x {3.0 21.0 33 ------- null} h -t 8.36976 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 64 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.37136 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {3.0 21.0 34 ------- null} + -t 8.37136 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {3.0 21.0 34 ------- null} - -t 8.37136 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {3.0 21.0 34 ------- null} h -t 8.37136 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.37296 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {3.0 21.0 35 ------- null} + -t 8.37296 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {3.0 21.0 35 ------- null} - -t 8.37296 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {3.0 21.0 35 ------- null} h -t 8.37296 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.37456 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {3.0 21.0 36 ------- null} + -t 8.37456 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {3.0 21.0 36 ------- null} - -t 8.37456 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {3.0 21.0 36 ------- null} h -t 8.37456 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.37616 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {3.0 21.0 37 ------- null} + -t 8.37616 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {3.0 21.0 37 ------- null} - -t 8.37616 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {3.0 21.0 37 ------- null} h -t 8.37616 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.37776 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {3.0 21.0 38 ------- null} + -t 8.37776 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {3.0 21.0 38 ------- null} - -t 8.37776 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {3.0 21.0 38 ------- null} h -t 8.37776 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.37936 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {3.0 21.0 39 ------- null} + -t 8.37936 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {3.0 21.0 39 ------- null} - -t 8.37936 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {3.0 21.0 39 ------- null} h -t 8.37936 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.38096 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {3.0 21.0 40 ------- null} + -t 8.38096 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {3.0 21.0 40 ------- null} - -t 8.38096 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {3.0 21.0 40 ------- null} h -t 8.38096 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.38256 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {3.0 21.0 41 ------- null} + -t 8.38256 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {3.0 21.0 41 ------- null} - -t 8.38256 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {3.0 21.0 41 ------- null} h -t 8.38256 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.38416 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {3.0 21.0 42 ------- null} + -t 8.38416 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {3.0 21.0 42 ------- null} - -t 8.38416 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {3.0 21.0 42 ------- null} h -t 8.38416 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.38576 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 74 -a 0 -x {3.0 21.0 43 ------- null} + -t 8.38576 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 74 -a 0 -x {3.0 21.0 43 ------- null} - -t 8.38576 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 74 -a 0 -x {3.0 21.0 43 ------- null} h -t 8.38576 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 74 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.38736 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {3.0 21.0 44 ------- null} + -t 8.38736 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {3.0 21.0 44 ------- null} - -t 8.38736 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {3.0 21.0 44 ------- null} h -t 8.38736 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.38896 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {3.0 21.0 45 ------- null} + -t 8.38896 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {3.0 21.0 45 ------- null} - -t 8.38896 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {3.0 21.0 45 ------- null} h -t 8.38896 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.39056 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {3.0 21.0 46 ------- null} + -t 8.39056 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {3.0 21.0 46 ------- null} - -t 8.39056 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {3.0 21.0 46 ------- null} h -t 8.39056 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.39216 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 78 -a 0 -x {3.0 21.0 47 ------- null} + -t 8.39216 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 78 -a 0 -x {3.0 21.0 47 ------- null} - -t 8.39216 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 78 -a 0 -x {3.0 21.0 47 ------- null} h -t 8.39216 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 78 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.39376 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {3.0 21.0 48 ------- null} + -t 8.39376 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {3.0 21.0 48 ------- null} - -t 8.39376 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {3.0 21.0 48 ------- null} h -t 8.39376 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.39536 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 80 -a 0 -x {3.0 21.0 49 ------- null} + -t 8.39536 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 80 -a 0 -x {3.0 21.0 49 ------- null} - -t 8.39536 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 80 -a 0 -x {3.0 21.0 49 ------- null} h -t 8.39536 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 80 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.39696 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {3.0 21.0 50 ------- null} + -t 8.39696 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {3.0 21.0 50 ------- null} - -t 8.39696 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {3.0 21.0 50 ------- null} h -t 8.39696 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.66816 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {3.0 21.0 31 ------- null} + -t 8.66816 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {3.0 21.0 31 ------- null} - -t 8.66816 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {3.0 21.0 31 ------- null} h -t 8.66816 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.66976 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {3.0 21.0 32 ------- null} + -t 8.66976 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {3.0 21.0 32 ------- null} - -t 8.66976 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {3.0 21.0 32 ------- null} h -t 8.66976 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.67136 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 64 -a 0 -x {3.0 21.0 33 ------- null} + -t 8.67136 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 64 -a 0 -x {3.0 21.0 33 ------- null} - -t 8.67136 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 64 -a 0 -x {3.0 21.0 33 ------- null} h -t 8.67136 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 64 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.67296 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {3.0 21.0 34 ------- null} + -t 8.67296 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {3.0 21.0 34 ------- null} - -t 8.67296 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {3.0 21.0 34 ------- null} h -t 8.67296 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.67456 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {3.0 21.0 35 ------- null} + -t 8.67456 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {3.0 21.0 35 ------- null} - -t 8.67456 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {3.0 21.0 35 ------- null} h -t 8.67456 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.67616 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {3.0 21.0 36 ------- null} + -t 8.67616 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {3.0 21.0 36 ------- null} - -t 8.67616 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {3.0 21.0 36 ------- null} h -t 8.67616 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.67776 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {3.0 21.0 37 ------- null} + -t 8.67776 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {3.0 21.0 37 ------- null} - -t 8.67776 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {3.0 21.0 37 ------- null} h -t 8.67776 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.67936 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {3.0 21.0 38 ------- null} + -t 8.67936 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {3.0 21.0 38 ------- null} - -t 8.67936 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {3.0 21.0 38 ------- null} h -t 8.67936 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.68096 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {3.0 21.0 39 ------- null} + -t 8.68096 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {3.0 21.0 39 ------- null} - -t 8.68096 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {3.0 21.0 39 ------- null} h -t 8.68096 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.68256 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {3.0 21.0 40 ------- null} + -t 8.68256 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {3.0 21.0 40 ------- null} - -t 8.68256 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {3.0 21.0 40 ------- null} h -t 8.68256 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.68416 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {3.0 21.0 41 ------- null} + -t 8.68416 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {3.0 21.0 41 ------- null} - -t 8.68416 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {3.0 21.0 41 ------- null} h -t 8.68416 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.68576 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {3.0 21.0 42 ------- null} + -t 8.68576 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {3.0 21.0 42 ------- null} - -t 8.68576 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {3.0 21.0 42 ------- null} h -t 8.68576 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.68736 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 74 -a 0 -x {3.0 21.0 43 ------- null} + -t 8.68736 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 74 -a 0 -x {3.0 21.0 43 ------- null} - -t 8.68736 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 74 -a 0 -x {3.0 21.0 43 ------- null} h -t 8.68736 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 74 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.68896 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {3.0 21.0 44 ------- null} + -t 8.68896 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {3.0 21.0 44 ------- null} - -t 8.68896 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {3.0 21.0 44 ------- null} h -t 8.68896 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.69056 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {3.0 21.0 45 ------- null} + -t 8.69056 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {3.0 21.0 45 ------- null} - -t 8.69056 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {3.0 21.0 45 ------- null} h -t 8.69056 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.69216 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {3.0 21.0 46 ------- null} + -t 8.69216 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {3.0 21.0 46 ------- null} - -t 8.69216 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {3.0 21.0 46 ------- null} h -t 8.69216 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.69376 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 78 -a 0 -x {3.0 21.0 47 ------- null} + -t 8.69376 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 78 -a 0 -x {3.0 21.0 47 ------- null} - -t 8.69376 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 78 -a 0 -x {3.0 21.0 47 ------- null} h -t 8.69376 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 78 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.69536 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {3.0 21.0 48 ------- null} + -t 8.69536 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {3.0 21.0 48 ------- null} - -t 8.69536 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {3.0 21.0 48 ------- null} h -t 8.69536 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.69696 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 80 -a 0 -x {3.0 21.0 49 ------- null} + -t 8.69696 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 80 -a 0 -x {3.0 21.0 49 ------- null} - -t 8.69696 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 80 -a 0 -x {3.0 21.0 49 ------- null} h -t 8.69696 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 80 -a 0 -x {3.0 21.0 -1 ------- null} r -t 8.69856 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {3.0 21.0 50 ------- null} + -t 8.69856 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {3.0 21.0 50 ------- null} - -t 8.69856 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {3.0 21.0 50 ------- null} h -t 8.69856 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.01976 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {3.0 21.0 31 ------- null} + -t 9.01976 -s 21 -d 28 -p ack -e 40 -c 0 -i 82 -a 1 -x {21.0 3.0 31 ------- null} - -t 9.01976 -s 21 -d 28 -p ack -e 40 -c 0 -i 82 -a 1 -x {21.0 3.0 31 ------- null} h -t 9.01976 -s 21 -d 28 -p ack -e 40 -c 0 -i 82 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.02136 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {3.0 21.0 32 ------- null} + -t 9.02136 -s 21 -d 28 -p ack -e 40 -c 0 -i 83 -a 1 -x {21.0 3.0 32 ------- null} - -t 9.02136 -s 21 -d 28 -p ack -e 40 -c 0 -i 83 -a 1 -x {21.0 3.0 32 ------- null} h -t 9.02136 -s 21 -d 28 -p ack -e 40 -c 0 -i 83 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.02296 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 64 -a 0 -x {3.0 21.0 33 ------- null} + -t 9.02296 -s 21 -d 28 -p ack -e 40 -c 0 -i 84 -a 1 -x {21.0 3.0 33 ------- null} - -t 9.02296 -s 21 -d 28 -p ack -e 40 -c 0 -i 84 -a 1 -x {21.0 3.0 33 ------- null} h -t 9.02296 -s 21 -d 28 -p ack -e 40 -c 0 -i 84 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.02456 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {3.0 21.0 34 ------- null} + -t 9.02456 -s 21 -d 28 -p ack -e 40 -c 0 -i 85 -a 1 -x {21.0 3.0 34 ------- null} - -t 9.02456 -s 21 -d 28 -p ack -e 40 -c 0 -i 85 -a 1 -x {21.0 3.0 34 ------- null} h -t 9.02456 -s 21 -d 28 -p ack -e 40 -c 0 -i 85 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.02616 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {3.0 21.0 35 ------- null} + -t 9.02616 -s 21 -d 28 -p ack -e 40 -c 0 -i 86 -a 1 -x {21.0 3.0 35 ------- null} - -t 9.02616 -s 21 -d 28 -p ack -e 40 -c 0 -i 86 -a 1 -x {21.0 3.0 35 ------- null} h -t 9.02616 -s 21 -d 28 -p ack -e 40 -c 0 -i 86 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.02776 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {3.0 21.0 36 ------- null} + -t 9.02776 -s 21 -d 28 -p ack -e 40 -c 0 -i 87 -a 1 -x {21.0 3.0 36 ------- null} - -t 9.02776 -s 21 -d 28 -p ack -e 40 -c 0 -i 87 -a 1 -x {21.0 3.0 36 ------- null} h -t 9.02776 -s 21 -d 28 -p ack -e 40 -c 0 -i 87 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.02936 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {3.0 21.0 37 ------- null} + -t 9.02936 -s 21 -d 28 -p ack -e 40 -c 0 -i 88 -a 1 -x {21.0 3.0 37 ------- null} - -t 9.02936 -s 21 -d 28 -p ack -e 40 -c 0 -i 88 -a 1 -x {21.0 3.0 37 ------- null} h -t 9.02936 -s 21 -d 28 -p ack -e 40 -c 0 -i 88 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.03096 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {3.0 21.0 38 ------- null} + -t 9.03096 -s 21 -d 28 -p ack -e 40 -c 0 -i 89 -a 1 -x {21.0 3.0 38 ------- null} - -t 9.03096 -s 21 -d 28 -p ack -e 40 -c 0 -i 89 -a 1 -x {21.0 3.0 38 ------- null} h -t 9.03096 -s 21 -d 28 -p ack -e 40 -c 0 -i 89 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.03256 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {3.0 21.0 39 ------- null} + -t 9.03256 -s 21 -d 28 -p ack -e 40 -c 0 -i 90 -a 1 -x {21.0 3.0 39 ------- null} - -t 9.03256 -s 21 -d 28 -p ack -e 40 -c 0 -i 90 -a 1 -x {21.0 3.0 39 ------- null} h -t 9.03256 -s 21 -d 28 -p ack -e 40 -c 0 -i 90 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.03416 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {3.0 21.0 40 ------- null} + -t 9.03416 -s 21 -d 28 -p ack -e 40 -c 0 -i 91 -a 1 -x {21.0 3.0 40 ------- null} - -t 9.03416 -s 21 -d 28 -p ack -e 40 -c 0 -i 91 -a 1 -x {21.0 3.0 40 ------- null} h -t 9.03416 -s 21 -d 28 -p ack -e 40 -c 0 -i 91 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.03576 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {3.0 21.0 41 ------- null} + -t 9.03576 -s 21 -d 28 -p ack -e 40 -c 0 -i 92 -a 1 -x {21.0 3.0 41 ------- null} - -t 9.03576 -s 21 -d 28 -p ack -e 40 -c 0 -i 92 -a 1 -x {21.0 3.0 41 ------- null} h -t 9.03576 -s 21 -d 28 -p ack -e 40 -c 0 -i 92 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.03736 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {3.0 21.0 42 ------- null} + -t 9.03736 -s 21 -d 28 -p ack -e 40 -c 0 -i 93 -a 1 -x {21.0 3.0 42 ------- null} - -t 9.03736 -s 21 -d 28 -p ack -e 40 -c 0 -i 93 -a 1 -x {21.0 3.0 42 ------- null} h -t 9.03736 -s 21 -d 28 -p ack -e 40 -c 0 -i 93 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.03896 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 74 -a 0 -x {3.0 21.0 43 ------- null} + -t 9.03896 -s 21 -d 28 -p ack -e 40 -c 0 -i 94 -a 1 -x {21.0 3.0 43 ------- null} - -t 9.03896 -s 21 -d 28 -p ack -e 40 -c 0 -i 94 -a 1 -x {21.0 3.0 43 ------- null} h -t 9.03896 -s 21 -d 28 -p ack -e 40 -c 0 -i 94 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.04056 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {3.0 21.0 44 ------- null} + -t 9.04056 -s 21 -d 28 -p ack -e 40 -c 0 -i 95 -a 1 -x {21.0 3.0 44 ------- null} - -t 9.04056 -s 21 -d 28 -p ack -e 40 -c 0 -i 95 -a 1 -x {21.0 3.0 44 ------- null} h -t 9.04056 -s 21 -d 28 -p ack -e 40 -c 0 -i 95 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.04216 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {3.0 21.0 45 ------- null} + -t 9.04216 -s 21 -d 28 -p ack -e 40 -c 0 -i 96 -a 1 -x {21.0 3.0 45 ------- null} - -t 9.04216 -s 21 -d 28 -p ack -e 40 -c 0 -i 96 -a 1 -x {21.0 3.0 45 ------- null} h -t 9.04216 -s 21 -d 28 -p ack -e 40 -c 0 -i 96 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.04376 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {3.0 21.0 46 ------- null} + -t 9.04376 -s 21 -d 28 -p ack -e 40 -c 0 -i 97 -a 1 -x {21.0 3.0 46 ------- null} - -t 9.04376 -s 21 -d 28 -p ack -e 40 -c 0 -i 97 -a 1 -x {21.0 3.0 46 ------- null} h -t 9.04376 -s 21 -d 28 -p ack -e 40 -c 0 -i 97 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.04536 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 78 -a 0 -x {3.0 21.0 47 ------- null} + -t 9.04536 -s 21 -d 28 -p ack -e 40 -c 0 -i 98 -a 1 -x {21.0 3.0 47 ------- null} - -t 9.04536 -s 21 -d 28 -p ack -e 40 -c 0 -i 98 -a 1 -x {21.0 3.0 47 ------- null} h -t 9.04536 -s 21 -d 28 -p ack -e 40 -c 0 -i 98 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.04696 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {3.0 21.0 48 ------- null} + -t 9.04696 -s 21 -d 28 -p ack -e 40 -c 0 -i 99 -a 1 -x {21.0 3.0 48 ------- null} - -t 9.04696 -s 21 -d 28 -p ack -e 40 -c 0 -i 99 -a 1 -x {21.0 3.0 48 ------- null} h -t 9.04696 -s 21 -d 28 -p ack -e 40 -c 0 -i 99 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.04856 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 80 -a 0 -x {3.0 21.0 49 ------- null} + -t 9.04856 -s 21 -d 28 -p ack -e 40 -c 0 -i 100 -a 1 -x {21.0 3.0 49 ------- null} - -t 9.04856 -s 21 -d 28 -p ack -e 40 -c 0 -i 100 -a 1 -x {21.0 3.0 49 ------- null} h -t 9.04856 -s 21 -d 28 -p ack -e 40 -c 0 -i 100 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.05016 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {3.0 21.0 50 ------- null} + -t 9.05016 -s 21 -d 28 -p ack -e 40 -c 0 -i 101 -a 1 -x {21.0 3.0 50 ------- null} - -t 9.05016 -s 21 -d 28 -p ack -e 40 -c 0 -i 101 -a 1 -x {21.0 3.0 50 ------- null} h -t 9.05016 -s 21 -d 28 -p ack -e 40 -c 0 -i 101 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.36982 -s 21 -d 28 -p ack -e 40 -c 0 -i 82 -a 1 -x {21.0 3.0 31 ------- null} + -t 9.36982 -s 28 -d 1 -p ack -e 40 -c 0 -i 82 -a 1 -x {21.0 3.0 31 ------- null} - -t 9.36982 -s 28 -d 1 -p ack -e 40 -c 0 -i 82 -a 1 -x {21.0 3.0 31 ------- null} h -t 9.36982 -s 28 -d 1 -p ack -e 40 -c 0 -i 82 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.37142 -s 21 -d 28 -p ack -e 40 -c 0 -i 83 -a 1 -x {21.0 3.0 32 ------- null} + -t 9.37142 -s 28 -d 1 -p ack -e 40 -c 0 -i 83 -a 1 -x {21.0 3.0 32 ------- null} - -t 9.37142 -s 28 -d 1 -p ack -e 40 -c 0 -i 83 -a 1 -x {21.0 3.0 32 ------- null} h -t 9.37142 -s 28 -d 1 -p ack -e 40 -c 0 -i 83 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.37302 -s 21 -d 28 -p ack -e 40 -c 0 -i 84 -a 1 -x {21.0 3.0 33 ------- null} + -t 9.37302 -s 28 -d 1 -p ack -e 40 -c 0 -i 84 -a 1 -x {21.0 3.0 33 ------- null} - -t 9.37302 -s 28 -d 1 -p ack -e 40 -c 0 -i 84 -a 1 -x {21.0 3.0 33 ------- null} h -t 9.37302 -s 28 -d 1 -p ack -e 40 -c 0 -i 84 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.37462 -s 21 -d 28 -p ack -e 40 -c 0 -i 85 -a 1 -x {21.0 3.0 34 ------- null} + -t 9.37462 -s 28 -d 1 -p ack -e 40 -c 0 -i 85 -a 1 -x {21.0 3.0 34 ------- null} - -t 9.37462 -s 28 -d 1 -p ack -e 40 -c 0 -i 85 -a 1 -x {21.0 3.0 34 ------- null} h -t 9.37462 -s 28 -d 1 -p ack -e 40 -c 0 -i 85 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.37622 -s 21 -d 28 -p ack -e 40 -c 0 -i 86 -a 1 -x {21.0 3.0 35 ------- null} + -t 9.37622 -s 28 -d 1 -p ack -e 40 -c 0 -i 86 -a 1 -x {21.0 3.0 35 ------- null} - -t 9.37622 -s 28 -d 1 -p ack -e 40 -c 0 -i 86 -a 1 -x {21.0 3.0 35 ------- null} h -t 9.37622 -s 28 -d 1 -p ack -e 40 -c 0 -i 86 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.37782 -s 21 -d 28 -p ack -e 40 -c 0 -i 87 -a 1 -x {21.0 3.0 36 ------- null} + -t 9.37782 -s 28 -d 1 -p ack -e 40 -c 0 -i 87 -a 1 -x {21.0 3.0 36 ------- null} - -t 9.37782 -s 28 -d 1 -p ack -e 40 -c 0 -i 87 -a 1 -x {21.0 3.0 36 ------- null} h -t 9.37782 -s 28 -d 1 -p ack -e 40 -c 0 -i 87 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.37942 -s 21 -d 28 -p ack -e 40 -c 0 -i 88 -a 1 -x {21.0 3.0 37 ------- null} + -t 9.37942 -s 28 -d 1 -p ack -e 40 -c 0 -i 88 -a 1 -x {21.0 3.0 37 ------- null} - -t 9.37942 -s 28 -d 1 -p ack -e 40 -c 0 -i 88 -a 1 -x {21.0 3.0 37 ------- null} h -t 9.37942 -s 28 -d 1 -p ack -e 40 -c 0 -i 88 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.38102 -s 21 -d 28 -p ack -e 40 -c 0 -i 89 -a 1 -x {21.0 3.0 38 ------- null} + -t 9.38102 -s 28 -d 1 -p ack -e 40 -c 0 -i 89 -a 1 -x {21.0 3.0 38 ------- null} - -t 9.38102 -s 28 -d 1 -p ack -e 40 -c 0 -i 89 -a 1 -x {21.0 3.0 38 ------- null} h -t 9.38102 -s 28 -d 1 -p ack -e 40 -c 0 -i 89 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.38262 -s 21 -d 28 -p ack -e 40 -c 0 -i 90 -a 1 -x {21.0 3.0 39 ------- null} + -t 9.38262 -s 28 -d 1 -p ack -e 40 -c 0 -i 90 -a 1 -x {21.0 3.0 39 ------- null} - -t 9.38262 -s 28 -d 1 -p ack -e 40 -c 0 -i 90 -a 1 -x {21.0 3.0 39 ------- null} h -t 9.38262 -s 28 -d 1 -p ack -e 40 -c 0 -i 90 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.38422 -s 21 -d 28 -p ack -e 40 -c 0 -i 91 -a 1 -x {21.0 3.0 40 ------- null} + -t 9.38422 -s 28 -d 1 -p ack -e 40 -c 0 -i 91 -a 1 -x {21.0 3.0 40 ------- null} - -t 9.38422 -s 28 -d 1 -p ack -e 40 -c 0 -i 91 -a 1 -x {21.0 3.0 40 ------- null} h -t 9.38422 -s 28 -d 1 -p ack -e 40 -c 0 -i 91 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.38582 -s 21 -d 28 -p ack -e 40 -c 0 -i 92 -a 1 -x {21.0 3.0 41 ------- null} + -t 9.38582 -s 28 -d 1 -p ack -e 40 -c 0 -i 92 -a 1 -x {21.0 3.0 41 ------- null} - -t 9.38582 -s 28 -d 1 -p ack -e 40 -c 0 -i 92 -a 1 -x {21.0 3.0 41 ------- null} h -t 9.38582 -s 28 -d 1 -p ack -e 40 -c 0 -i 92 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.38742 -s 21 -d 28 -p ack -e 40 -c 0 -i 93 -a 1 -x {21.0 3.0 42 ------- null} + -t 9.38742 -s 28 -d 1 -p ack -e 40 -c 0 -i 93 -a 1 -x {21.0 3.0 42 ------- null} - -t 9.38742 -s 28 -d 1 -p ack -e 40 -c 0 -i 93 -a 1 -x {21.0 3.0 42 ------- null} h -t 9.38742 -s 28 -d 1 -p ack -e 40 -c 0 -i 93 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.38902 -s 21 -d 28 -p ack -e 40 -c 0 -i 94 -a 1 -x {21.0 3.0 43 ------- null} + -t 9.38902 -s 28 -d 1 -p ack -e 40 -c 0 -i 94 -a 1 -x {21.0 3.0 43 ------- null} - -t 9.38902 -s 28 -d 1 -p ack -e 40 -c 0 -i 94 -a 1 -x {21.0 3.0 43 ------- null} h -t 9.38902 -s 28 -d 1 -p ack -e 40 -c 0 -i 94 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.39062 -s 21 -d 28 -p ack -e 40 -c 0 -i 95 -a 1 -x {21.0 3.0 44 ------- null} + -t 9.39062 -s 28 -d 1 -p ack -e 40 -c 0 -i 95 -a 1 -x {21.0 3.0 44 ------- null} - -t 9.39062 -s 28 -d 1 -p ack -e 40 -c 0 -i 95 -a 1 -x {21.0 3.0 44 ------- null} h -t 9.39062 -s 28 -d 1 -p ack -e 40 -c 0 -i 95 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.39222 -s 21 -d 28 -p ack -e 40 -c 0 -i 96 -a 1 -x {21.0 3.0 45 ------- null} + -t 9.39222 -s 28 -d 1 -p ack -e 40 -c 0 -i 96 -a 1 -x {21.0 3.0 45 ------- null} - -t 9.39222 -s 28 -d 1 -p ack -e 40 -c 0 -i 96 -a 1 -x {21.0 3.0 45 ------- null} h -t 9.39222 -s 28 -d 1 -p ack -e 40 -c 0 -i 96 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.39382 -s 21 -d 28 -p ack -e 40 -c 0 -i 97 -a 1 -x {21.0 3.0 46 ------- null} + -t 9.39382 -s 28 -d 1 -p ack -e 40 -c 0 -i 97 -a 1 -x {21.0 3.0 46 ------- null} - -t 9.39382 -s 28 -d 1 -p ack -e 40 -c 0 -i 97 -a 1 -x {21.0 3.0 46 ------- null} h -t 9.39382 -s 28 -d 1 -p ack -e 40 -c 0 -i 97 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.39542 -s 21 -d 28 -p ack -e 40 -c 0 -i 98 -a 1 -x {21.0 3.0 47 ------- null} + -t 9.39542 -s 28 -d 1 -p ack -e 40 -c 0 -i 98 -a 1 -x {21.0 3.0 47 ------- null} - -t 9.39542 -s 28 -d 1 -p ack -e 40 -c 0 -i 98 -a 1 -x {21.0 3.0 47 ------- null} h -t 9.39542 -s 28 -d 1 -p ack -e 40 -c 0 -i 98 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.39702 -s 21 -d 28 -p ack -e 40 -c 0 -i 99 -a 1 -x {21.0 3.0 48 ------- null} + -t 9.39702 -s 28 -d 1 -p ack -e 40 -c 0 -i 99 -a 1 -x {21.0 3.0 48 ------- null} - -t 9.39702 -s 28 -d 1 -p ack -e 40 -c 0 -i 99 -a 1 -x {21.0 3.0 48 ------- null} h -t 9.39702 -s 28 -d 1 -p ack -e 40 -c 0 -i 99 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.39862 -s 21 -d 28 -p ack -e 40 -c 0 -i 100 -a 1 -x {21.0 3.0 49 ------- null} + -t 9.39862 -s 28 -d 1 -p ack -e 40 -c 0 -i 100 -a 1 -x {21.0 3.0 49 ------- null} - -t 9.39862 -s 28 -d 1 -p ack -e 40 -c 0 -i 100 -a 1 -x {21.0 3.0 49 ------- null} h -t 9.39862 -s 28 -d 1 -p ack -e 40 -c 0 -i 100 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.40022 -s 21 -d 28 -p ack -e 40 -c 0 -i 101 -a 1 -x {21.0 3.0 50 ------- null} + -t 9.40022 -s 28 -d 1 -p ack -e 40 -c 0 -i 101 -a 1 -x {21.0 3.0 50 ------- null} - -t 9.40022 -s 28 -d 1 -p ack -e 40 -c 0 -i 101 -a 1 -x {21.0 3.0 50 ------- null} h -t 9.40022 -s 28 -d 1 -p ack -e 40 -c 0 -i 101 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.66989 -s 28 -d 1 -p ack -e 40 -c 0 -i 82 -a 1 -x {21.0 3.0 31 ------- null} + -t 9.66989 -s 1 -d 3 -p ack -e 40 -c 0 -i 82 -a 1 -x {21.0 3.0 31 ------- null} - -t 9.66989 -s 1 -d 3 -p ack -e 40 -c 0 -i 82 -a 1 -x {21.0 3.0 31 ------- null} h -t 9.66989 -s 1 -d 3 -p ack -e 40 -c 0 -i 82 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.67149 -s 28 -d 1 -p ack -e 40 -c 0 -i 83 -a 1 -x {21.0 3.0 32 ------- null} + -t 9.67149 -s 1 -d 3 -p ack -e 40 -c 0 -i 83 -a 1 -x {21.0 3.0 32 ------- null} - -t 9.67149 -s 1 -d 3 -p ack -e 40 -c 0 -i 83 -a 1 -x {21.0 3.0 32 ------- null} h -t 9.67149 -s 1 -d 3 -p ack -e 40 -c 0 -i 83 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.67309 -s 28 -d 1 -p ack -e 40 -c 0 -i 84 -a 1 -x {21.0 3.0 33 ------- null} + -t 9.67309 -s 1 -d 3 -p ack -e 40 -c 0 -i 84 -a 1 -x {21.0 3.0 33 ------- null} - -t 9.67309 -s 1 -d 3 -p ack -e 40 -c 0 -i 84 -a 1 -x {21.0 3.0 33 ------- null} h -t 9.67309 -s 1 -d 3 -p ack -e 40 -c 0 -i 84 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.67469 -s 28 -d 1 -p ack -e 40 -c 0 -i 85 -a 1 -x {21.0 3.0 34 ------- null} + -t 9.67469 -s 1 -d 3 -p ack -e 40 -c 0 -i 85 -a 1 -x {21.0 3.0 34 ------- null} - -t 9.67469 -s 1 -d 3 -p ack -e 40 -c 0 -i 85 -a 1 -x {21.0 3.0 34 ------- null} h -t 9.67469 -s 1 -d 3 -p ack -e 40 -c 0 -i 85 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.67629 -s 28 -d 1 -p ack -e 40 -c 0 -i 86 -a 1 -x {21.0 3.0 35 ------- null} + -t 9.67629 -s 1 -d 3 -p ack -e 40 -c 0 -i 86 -a 1 -x {21.0 3.0 35 ------- null} - -t 9.67629 -s 1 -d 3 -p ack -e 40 -c 0 -i 86 -a 1 -x {21.0 3.0 35 ------- null} h -t 9.67629 -s 1 -d 3 -p ack -e 40 -c 0 -i 86 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.67789 -s 28 -d 1 -p ack -e 40 -c 0 -i 87 -a 1 -x {21.0 3.0 36 ------- null} + -t 9.67789 -s 1 -d 3 -p ack -e 40 -c 0 -i 87 -a 1 -x {21.0 3.0 36 ------- null} - -t 9.67789 -s 1 -d 3 -p ack -e 40 -c 0 -i 87 -a 1 -x {21.0 3.0 36 ------- null} h -t 9.67789 -s 1 -d 3 -p ack -e 40 -c 0 -i 87 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.67949 -s 28 -d 1 -p ack -e 40 -c 0 -i 88 -a 1 -x {21.0 3.0 37 ------- null} + -t 9.67949 -s 1 -d 3 -p ack -e 40 -c 0 -i 88 -a 1 -x {21.0 3.0 37 ------- null} - -t 9.67949 -s 1 -d 3 -p ack -e 40 -c 0 -i 88 -a 1 -x {21.0 3.0 37 ------- null} h -t 9.67949 -s 1 -d 3 -p ack -e 40 -c 0 -i 88 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.68109 -s 28 -d 1 -p ack -e 40 -c 0 -i 89 -a 1 -x {21.0 3.0 38 ------- null} + -t 9.68109 -s 1 -d 3 -p ack -e 40 -c 0 -i 89 -a 1 -x {21.0 3.0 38 ------- null} - -t 9.68109 -s 1 -d 3 -p ack -e 40 -c 0 -i 89 -a 1 -x {21.0 3.0 38 ------- null} h -t 9.68109 -s 1 -d 3 -p ack -e 40 -c 0 -i 89 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.68269 -s 28 -d 1 -p ack -e 40 -c 0 -i 90 -a 1 -x {21.0 3.0 39 ------- null} + -t 9.68269 -s 1 -d 3 -p ack -e 40 -c 0 -i 90 -a 1 -x {21.0 3.0 39 ------- null} - -t 9.68269 -s 1 -d 3 -p ack -e 40 -c 0 -i 90 -a 1 -x {21.0 3.0 39 ------- null} h -t 9.68269 -s 1 -d 3 -p ack -e 40 -c 0 -i 90 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.68429 -s 28 -d 1 -p ack -e 40 -c 0 -i 91 -a 1 -x {21.0 3.0 40 ------- null} + -t 9.68429 -s 1 -d 3 -p ack -e 40 -c 0 -i 91 -a 1 -x {21.0 3.0 40 ------- null} - -t 9.68429 -s 1 -d 3 -p ack -e 40 -c 0 -i 91 -a 1 -x {21.0 3.0 40 ------- null} h -t 9.68429 -s 1 -d 3 -p ack -e 40 -c 0 -i 91 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.68589 -s 28 -d 1 -p ack -e 40 -c 0 -i 92 -a 1 -x {21.0 3.0 41 ------- null} + -t 9.68589 -s 1 -d 3 -p ack -e 40 -c 0 -i 92 -a 1 -x {21.0 3.0 41 ------- null} - -t 9.68589 -s 1 -d 3 -p ack -e 40 -c 0 -i 92 -a 1 -x {21.0 3.0 41 ------- null} h -t 9.68589 -s 1 -d 3 -p ack -e 40 -c 0 -i 92 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.68749 -s 28 -d 1 -p ack -e 40 -c 0 -i 93 -a 1 -x {21.0 3.0 42 ------- null} + -t 9.68749 -s 1 -d 3 -p ack -e 40 -c 0 -i 93 -a 1 -x {21.0 3.0 42 ------- null} - -t 9.68749 -s 1 -d 3 -p ack -e 40 -c 0 -i 93 -a 1 -x {21.0 3.0 42 ------- null} h -t 9.68749 -s 1 -d 3 -p ack -e 40 -c 0 -i 93 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.68909 -s 28 -d 1 -p ack -e 40 -c 0 -i 94 -a 1 -x {21.0 3.0 43 ------- null} + -t 9.68909 -s 1 -d 3 -p ack -e 40 -c 0 -i 94 -a 1 -x {21.0 3.0 43 ------- null} - -t 9.68909 -s 1 -d 3 -p ack -e 40 -c 0 -i 94 -a 1 -x {21.0 3.0 43 ------- null} h -t 9.68909 -s 1 -d 3 -p ack -e 40 -c 0 -i 94 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.69069 -s 28 -d 1 -p ack -e 40 -c 0 -i 95 -a 1 -x {21.0 3.0 44 ------- null} + -t 9.69069 -s 1 -d 3 -p ack -e 40 -c 0 -i 95 -a 1 -x {21.0 3.0 44 ------- null} - -t 9.69069 -s 1 -d 3 -p ack -e 40 -c 0 -i 95 -a 1 -x {21.0 3.0 44 ------- null} h -t 9.69069 -s 1 -d 3 -p ack -e 40 -c 0 -i 95 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.69229 -s 28 -d 1 -p ack -e 40 -c 0 -i 96 -a 1 -x {21.0 3.0 45 ------- null} + -t 9.69229 -s 1 -d 3 -p ack -e 40 -c 0 -i 96 -a 1 -x {21.0 3.0 45 ------- null} - -t 9.69229 -s 1 -d 3 -p ack -e 40 -c 0 -i 96 -a 1 -x {21.0 3.0 45 ------- null} h -t 9.69229 -s 1 -d 3 -p ack -e 40 -c 0 -i 96 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.69389 -s 28 -d 1 -p ack -e 40 -c 0 -i 97 -a 1 -x {21.0 3.0 46 ------- null} + -t 9.69389 -s 1 -d 3 -p ack -e 40 -c 0 -i 97 -a 1 -x {21.0 3.0 46 ------- null} - -t 9.69389 -s 1 -d 3 -p ack -e 40 -c 0 -i 97 -a 1 -x {21.0 3.0 46 ------- null} h -t 9.69389 -s 1 -d 3 -p ack -e 40 -c 0 -i 97 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.69549 -s 28 -d 1 -p ack -e 40 -c 0 -i 98 -a 1 -x {21.0 3.0 47 ------- null} + -t 9.69549 -s 1 -d 3 -p ack -e 40 -c 0 -i 98 -a 1 -x {21.0 3.0 47 ------- null} - -t 9.69549 -s 1 -d 3 -p ack -e 40 -c 0 -i 98 -a 1 -x {21.0 3.0 47 ------- null} h -t 9.69549 -s 1 -d 3 -p ack -e 40 -c 0 -i 98 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.69709 -s 28 -d 1 -p ack -e 40 -c 0 -i 99 -a 1 -x {21.0 3.0 48 ------- null} + -t 9.69709 -s 1 -d 3 -p ack -e 40 -c 0 -i 99 -a 1 -x {21.0 3.0 48 ------- null} - -t 9.69709 -s 1 -d 3 -p ack -e 40 -c 0 -i 99 -a 1 -x {21.0 3.0 48 ------- null} h -t 9.69709 -s 1 -d 3 -p ack -e 40 -c 0 -i 99 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.69869 -s 28 -d 1 -p ack -e 40 -c 0 -i 100 -a 1 -x {21.0 3.0 49 ------- null} + -t 9.69869 -s 1 -d 3 -p ack -e 40 -c 0 -i 100 -a 1 -x {21.0 3.0 49 ------- null} - -t 9.69869 -s 1 -d 3 -p ack -e 40 -c 0 -i 100 -a 1 -x {21.0 3.0 49 ------- null} h -t 9.69869 -s 1 -d 3 -p ack -e 40 -c 0 -i 100 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.70029 -s 28 -d 1 -p ack -e 40 -c 0 -i 101 -a 1 -x {21.0 3.0 50 ------- null} + -t 9.70029 -s 1 -d 3 -p ack -e 40 -c 0 -i 101 -a 1 -x {21.0 3.0 50 ------- null} - -t 9.70029 -s 1 -d 3 -p ack -e 40 -c 0 -i 101 -a 1 -x {21.0 3.0 50 ------- null} h -t 9.70029 -s 1 -d 3 -p ack -e 40 -c 0 -i 101 -a 1 -x {21.0 3.0 -1 ------- null} r -t 9.80995 -s 1 -d 3 -p ack -e 40 -c 0 -i 82 -a 1 -x {21.0 3.0 31 ------- null} + -t 9.80995 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {3.0 21.0 51 ------- null} - -t 9.80995 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {3.0 21.0 51 ------- null} h -t 9.80995 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.81155 -s 1 -d 3 -p ack -e 40 -c 0 -i 83 -a 1 -x {21.0 3.0 32 ------- null} + -t 9.81155 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {3.0 21.0 52 ------- null} - -t 9.81155 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {3.0 21.0 52 ------- null} h -t 9.81155 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.81315 -s 1 -d 3 -p ack -e 40 -c 0 -i 84 -a 1 -x {21.0 3.0 33 ------- null} + -t 9.81315 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 104 -a 0 -x {3.0 21.0 53 ------- null} - -t 9.81315 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 104 -a 0 -x {3.0 21.0 53 ------- null} h -t 9.81315 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 104 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.81475 -s 1 -d 3 -p ack -e 40 -c 0 -i 85 -a 1 -x {21.0 3.0 34 ------- null} + -t 9.81475 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {3.0 21.0 54 ------- null} - -t 9.81475 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {3.0 21.0 54 ------- null} h -t 9.81475 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.81635 -s 1 -d 3 -p ack -e 40 -c 0 -i 86 -a 1 -x {21.0 3.0 35 ------- null} + -t 9.81635 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 106 -a 0 -x {3.0 21.0 55 ------- null} - -t 9.81635 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 106 -a 0 -x {3.0 21.0 55 ------- null} h -t 9.81635 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 106 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.81795 -s 1 -d 3 -p ack -e 40 -c 0 -i 87 -a 1 -x {21.0 3.0 36 ------- null} + -t 9.81795 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {3.0 21.0 56 ------- null} - -t 9.81795 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {3.0 21.0 56 ------- null} h -t 9.81795 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.81955 -s 1 -d 3 -p ack -e 40 -c 0 -i 88 -a 1 -x {21.0 3.0 37 ------- null} + -t 9.81955 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 108 -a 0 -x {3.0 21.0 57 ------- null} - -t 9.81955 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 108 -a 0 -x {3.0 21.0 57 ------- null} h -t 9.81955 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 108 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.82115 -s 1 -d 3 -p ack -e 40 -c 0 -i 89 -a 1 -x {21.0 3.0 38 ------- null} + -t 9.82115 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {3.0 21.0 58 ------- null} - -t 9.82115 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {3.0 21.0 58 ------- null} h -t 9.82115 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.82275 -s 1 -d 3 -p ack -e 40 -c 0 -i 90 -a 1 -x {21.0 3.0 39 ------- null} + -t 9.82275 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 110 -a 0 -x {3.0 21.0 59 ------- null} - -t 9.82275 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 110 -a 0 -x {3.0 21.0 59 ------- null} h -t 9.82275 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 110 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.82435 -s 1 -d 3 -p ack -e 40 -c 0 -i 91 -a 1 -x {21.0 3.0 40 ------- null} + -t 9.82435 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {3.0 21.0 60 ------- null} - -t 9.82435 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {3.0 21.0 60 ------- null} h -t 9.82435 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.82595 -s 1 -d 3 -p ack -e 40 -c 0 -i 92 -a 1 -x {21.0 3.0 41 ------- null} + -t 9.82595 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {3.0 21.0 61 ------- null} - -t 9.82595 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {3.0 21.0 61 ------- null} h -t 9.82595 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.82755 -s 1 -d 3 -p ack -e 40 -c 0 -i 93 -a 1 -x {21.0 3.0 42 ------- null} + -t 9.82755 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {3.0 21.0 62 ------- null} - -t 9.82755 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {3.0 21.0 62 ------- null} h -t 9.82755 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.82915 -s 1 -d 3 -p ack -e 40 -c 0 -i 94 -a 1 -x {21.0 3.0 43 ------- null} + -t 9.82915 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 114 -a 0 -x {3.0 21.0 63 ------- null} - -t 9.82915 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 114 -a 0 -x {3.0 21.0 63 ------- null} h -t 9.82915 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 114 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.83075 -s 1 -d 3 -p ack -e 40 -c 0 -i 95 -a 1 -x {21.0 3.0 44 ------- null} + -t 9.83075 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {3.0 21.0 64 ------- null} - -t 9.83075 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {3.0 21.0 64 ------- null} h -t 9.83075 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.83235 -s 1 -d 3 -p ack -e 40 -c 0 -i 96 -a 1 -x {21.0 3.0 45 ------- null} + -t 9.83235 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {3.0 21.0 65 ------- null} - -t 9.83235 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {3.0 21.0 65 ------- null} h -t 9.83235 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.83395 -s 1 -d 3 -p ack -e 40 -c 0 -i 97 -a 1 -x {21.0 3.0 46 ------- null} + -t 9.83395 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {3.0 21.0 66 ------- null} - -t 9.83395 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {3.0 21.0 66 ------- null} h -t 9.83395 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.83555 -s 1 -d 3 -p ack -e 40 -c 0 -i 98 -a 1 -x {21.0 3.0 47 ------- null} + -t 9.83555 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {3.0 21.0 67 ------- null} - -t 9.83555 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {3.0 21.0 67 ------- null} h -t 9.83555 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.83715 -s 1 -d 3 -p ack -e 40 -c 0 -i 99 -a 1 -x {21.0 3.0 48 ------- null} + -t 9.83715 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {3.0 21.0 68 ------- null} - -t 9.83715 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {3.0 21.0 68 ------- null} h -t 9.83715 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.83875 -s 1 -d 3 -p ack -e 40 -c 0 -i 100 -a 1 -x {21.0 3.0 49 ------- null} + -t 9.83875 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {3.0 21.0 69 ------- null} - -t 9.83875 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {3.0 21.0 69 ------- null} h -t 9.83875 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.84035 -s 1 -d 3 -p ack -e 40 -c 0 -i 101 -a 1 -x {21.0 3.0 50 ------- null} + -t 9.84035 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {3.0 21.0 70 ------- null} - -t 9.84035 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {3.0 21.0 70 ------- null} h -t 9.84035 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.95155 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {3.0 21.0 51 ------- null} + -t 9.95155 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {3.0 21.0 51 ------- null} - -t 9.95155 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {3.0 21.0 51 ------- null} h -t 9.95155 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.95315 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {3.0 21.0 52 ------- null} + -t 9.95315 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {3.0 21.0 52 ------- null} - -t 9.95315 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {3.0 21.0 52 ------- null} h -t 9.95315 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.95475 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 104 -a 0 -x {3.0 21.0 53 ------- null} + -t 9.95475 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 104 -a 0 -x {3.0 21.0 53 ------- null} - -t 9.95475 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 104 -a 0 -x {3.0 21.0 53 ------- null} h -t 9.95475 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 104 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.95635 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {3.0 21.0 54 ------- null} + -t 9.95635 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {3.0 21.0 54 ------- null} - -t 9.95635 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {3.0 21.0 54 ------- null} h -t 9.95635 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.95795 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 106 -a 0 -x {3.0 21.0 55 ------- null} + -t 9.95795 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 106 -a 0 -x {3.0 21.0 55 ------- null} - -t 9.95795 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 106 -a 0 -x {3.0 21.0 55 ------- null} h -t 9.95795 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 106 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.95955 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {3.0 21.0 56 ------- null} + -t 9.95955 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {3.0 21.0 56 ------- null} - -t 9.95955 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {3.0 21.0 56 ------- null} h -t 9.95955 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.96115 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 108 -a 0 -x {3.0 21.0 57 ------- null} + -t 9.96115 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 108 -a 0 -x {3.0 21.0 57 ------- null} - -t 9.96115 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 108 -a 0 -x {3.0 21.0 57 ------- null} h -t 9.96115 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 108 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.96275 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {3.0 21.0 58 ------- null} + -t 9.96275 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {3.0 21.0 58 ------- null} - -t 9.96275 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {3.0 21.0 58 ------- null} h -t 9.96275 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.96435 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 110 -a 0 -x {3.0 21.0 59 ------- null} + -t 9.96435 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 110 -a 0 -x {3.0 21.0 59 ------- null} - -t 9.96435 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 110 -a 0 -x {3.0 21.0 59 ------- null} h -t 9.96435 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 110 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.96595 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {3.0 21.0 60 ------- null} + -t 9.96595 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {3.0 21.0 60 ------- null} - -t 9.96595 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {3.0 21.0 60 ------- null} h -t 9.96595 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.96755 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {3.0 21.0 61 ------- null} + -t 9.96755 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {3.0 21.0 61 ------- null} - -t 9.96755 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {3.0 21.0 61 ------- null} h -t 9.96755 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.96915 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {3.0 21.0 62 ------- null} + -t 9.96915 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {3.0 21.0 62 ------- null} - -t 9.96915 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {3.0 21.0 62 ------- null} h -t 9.96915 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.97075 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 114 -a 0 -x {3.0 21.0 63 ------- null} + -t 9.97075 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 114 -a 0 -x {3.0 21.0 63 ------- null} - -t 9.97075 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 114 -a 0 -x {3.0 21.0 63 ------- null} h -t 9.97075 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 114 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.97235 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {3.0 21.0 64 ------- null} + -t 9.97235 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {3.0 21.0 64 ------- null} - -t 9.97235 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {3.0 21.0 64 ------- null} h -t 9.97235 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.97395 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {3.0 21.0 65 ------- null} + -t 9.97395 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {3.0 21.0 65 ------- null} - -t 9.97395 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {3.0 21.0 65 ------- null} h -t 9.97395 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.97555 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {3.0 21.0 66 ------- null} + -t 9.97555 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {3.0 21.0 66 ------- null} - -t 9.97555 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {3.0 21.0 66 ------- null} h -t 9.97555 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.97715 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {3.0 21.0 67 ------- null} + -t 9.97715 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {3.0 21.0 67 ------- null} - -t 9.97715 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {3.0 21.0 67 ------- null} h -t 9.97715 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.97875 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {3.0 21.0 68 ------- null} + -t 9.97875 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {3.0 21.0 68 ------- null} - -t 9.97875 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {3.0 21.0 68 ------- null} h -t 9.97875 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.98035 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {3.0 21.0 69 ------- null} + -t 9.98035 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {3.0 21.0 69 ------- null} - -t 9.98035 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {3.0 21.0 69 ------- null} h -t 9.98035 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {3.0 21.0 -1 ------- null} r -t 9.98195 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {3.0 21.0 70 ------- null} + -t 9.98195 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {3.0 21.0 70 ------- null} - -t 9.98195 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {3.0 21.0 70 ------- null} h -t 9.98195 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {3.0 21.0 -1 ------- null} r -t 10.2532 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {3.0 21.0 51 ------- null} + -t 10.2532 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {3.0 21.0 51 ------- null} - -t 10.2532 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {3.0 21.0 51 ------- null} h -t 10.2532 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {3.0 21.0 -1 ------- null} r -t 10.2548 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {3.0 21.0 52 ------- null} + -t 10.2548 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {3.0 21.0 52 ------- null} - -t 10.2548 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {3.0 21.0 52 ------- null} h -t 10.2548 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {3.0 21.0 -1 ------- null} r -t 10.2564 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 104 -a 0 -x {3.0 21.0 53 ------- null} + -t 10.2564 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 104 -a 0 -x {3.0 21.0 53 ------- null} - -t 10.2564 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 104 -a 0 -x {3.0 21.0 53 ------- null} h -t 10.2564 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 104 -a 0 -x {3.0 21.0 -1 ------- null} r -t 10.258 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {3.0 21.0 54 ------- null} + -t 10.258 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {3.0 21.0 54 ------- null} - -t 10.258 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {3.0 21.0 54 ------- null} h -t 10.258 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {3.0 21.0 -1 ------- null} r -t 10.2596 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 106 -a 0 -x {3.0 21.0 55 ------- null} + -t 10.2596 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 106 -a 0 -x {3.0 21.0 55 ------- null} - -t 10.2596 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 106 -a 0 -x {3.0 21.0 55 ------- null} h -t 10.2596 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 106 -a 0 -x {3.0 21.0 -1 ------- null} r -t 10.2612 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {3.0 21.0 56 ------- null} + -t 10.2612 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {3.0 21.0 56 ------- null} - -t 10.2612 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {3.0 21.0 56 ------- null} h -t 10.2612 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {3.0 21.0 -1 ------- null} r -t 10.2628 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 108 -a 0 -x {3.0 21.0 57 ------- null} + -t 10.2628 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 108 -a 0 -x {3.0 21.0 57 ------- null} - -t 10.2628 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 108 -a 0 -x {3.0 21.0 57 ------- null} h -t 10.2628 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 108 -a 0 -x {3.0 21.0 -1 ------- null} r -t 10.2644 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {3.0 21.0 58 ------- null} + -t 10.2644 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {3.0 21.0 58 ------- null} - -t 10.2644 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {3.0 21.0 58 ------- null} h -t 10.2644 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {3.0 21.0 -1 ------- null} r -t 10.266 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 110 -a 0 -x {3.0 21.0 59 ------- null} + -t 10.266 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 110 -a 0 -x {3.0 21.0 59 ------- null} - -t 10.266 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 110 -a 0 -x {3.0 21.0 59 ------- null} h -t 10.266 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 110 -a 0 -x {3.0 21.0 -1 ------- null} r -t 10.2676 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {3.0 21.0 60 ------- null} + -t 10.2676 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {3.0 21.0 60 ------- null} - -t 10.2676 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {3.0 21.0 60 ------- null} h -t 10.2676 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {3.0 21.0 -1 ------- null} r -t 10.2692 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {3.0 21.0 61 ------- null} + -t 10.2692 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {3.0 21.0 61 ------- null} - -t 10.2692 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {3.0 21.0 61 ------- null} h -t 10.2692 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {3.0 21.0 -1 ------- null} r -t 10.2708 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {3.0 21.0 62 ------- null} + -t 10.2708 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {3.0 21.0 62 ------- null} - -t 10.2708 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {3.0 21.0 62 ------- null} h -t 10.2708 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {3.0 21.0 -1 ------- null} r -t 10.2724 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 114 -a 0 -x {3.0 21.0 63 ------- null} + -t 10.2724 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 114 -a 0 -x {3.0 21.0 63 ------- null} - -t 10.2724 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 114 -a 0 -x {3.0 21.0 63 ------- null} h -t 10.2724 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 114 -a 0 -x {3.0 21.0 -1 ------- null} r -t 10.274 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {3.0 21.0 64 ------- null} + -t 10.274 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {3.0 21.0 64 ------- null} - -t 10.274 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {3.0 21.0 64 ------- null} h -t 10.274 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {3.0 21.0 -1 ------- null} r -t 10.2756 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {3.0 21.0 65 ------- null} + -t 10.2756 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {3.0 21.0 65 ------- null} - -t 10.2756 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {3.0 21.0 65 ------- null} h -t 10.2756 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {3.0 21.0 -1 ------- null} r -t 10.2772 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {3.0 21.0 66 ------- null} + -t 10.2772 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {3.0 21.0 66 ------- null} - -t 10.2772 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {3.0 21.0 66 ------- null} h -t 10.2772 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {3.0 21.0 -1 ------- null} r -t 10.2788 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {3.0 21.0 67 ------- null} + -t 10.2788 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {3.0 21.0 67 ------- null} - -t 10.2788 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {3.0 21.0 67 ------- null} h -t 10.2788 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {3.0 21.0 -1 ------- null} r -t 10.2804 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {3.0 21.0 68 ------- null} + -t 10.2804 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {3.0 21.0 68 ------- null} - -t 10.2804 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {3.0 21.0 68 ------- null} h -t 10.2804 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {3.0 21.0 -1 ------- null} r -t 10.282 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {3.0 21.0 69 ------- null} + -t 10.282 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {3.0 21.0 69 ------- null} - -t 10.282 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {3.0 21.0 69 ------- null} h -t 10.282 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {3.0 21.0 -1 ------- null} r -t 10.2836 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {3.0 21.0 70 ------- null} + -t 10.2836 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {3.0 21.0 70 ------- null} - -t 10.2836 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {3.0 21.0 70 ------- null} h -t 10.2836 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {3.0 21.0 -1 ------- null} r -t 10.6048 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {3.0 21.0 51 ------- null} + -t 10.6048 -s 21 -d 28 -p ack -e 40 -c 0 -i 122 -a 1 -x {21.0 3.0 51 ------- null} - -t 10.6048 -s 21 -d 28 -p ack -e 40 -c 0 -i 122 -a 1 -x {21.0 3.0 51 ------- null} h -t 10.6048 -s 21 -d 28 -p ack -e 40 -c 0 -i 122 -a 1 -x {21.0 3.0 -1 ------- null} r -t 10.6064 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {3.0 21.0 52 ------- null} + -t 10.6064 -s 21 -d 28 -p ack -e 40 -c 0 -i 123 -a 1 -x {21.0 3.0 52 ------- null} - -t 10.6064 -s 21 -d 28 -p ack -e 40 -c 0 -i 123 -a 1 -x {21.0 3.0 52 ------- null} h -t 10.6064 -s 21 -d 28 -p ack -e 40 -c 0 -i 123 -a 1 -x {21.0 3.0 -1 ------- null} r -t 10.608 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 104 -a 0 -x {3.0 21.0 53 ------- null} + -t 10.608 -s 21 -d 28 -p ack -e 40 -c 0 -i 124 -a 1 -x {21.0 3.0 53 ------- null} - -t 10.608 -s 21 -d 28 -p ack -e 40 -c 0 -i 124 -a 1 -x {21.0 3.0 53 ------- null} h -t 10.608 -s 21 -d 28 -p ack -e 40 -c 0 -i 124 -a 1 -x {21.0 3.0 -1 ------- null} r -t 10.6096 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {3.0 21.0 54 ------- null} + -t 10.6096 -s 21 -d 28 -p ack -e 40 -c 0 -i 125 -a 1 -x {21.0 3.0 54 ------- null} - -t 10.6096 -s 21 -d 28 -p ack -e 40 -c 0 -i 125 -a 1 -x {21.0 3.0 54 ------- null} h -t 10.6096 -s 21 -d 28 -p ack -e 40 -c 0 -i 125 -a 1 -x {21.0 3.0 -1 ------- null} r -t 10.6112 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 106 -a 0 -x {3.0 21.0 55 ------- null} + -t 10.6112 -s 21 -d 28 -p ack -e 40 -c 0 -i 126 -a 1 -x {21.0 3.0 55 ------- null} - -t 10.6112 -s 21 -d 28 -p ack -e 40 -c 0 -i 126 -a 1 -x {21.0 3.0 55 ------- null} h -t 10.6112 -s 21 -d 28 -p ack -e 40 -c 0 -i 126 -a 1 -x {21.0 3.0 -1 ------- null} r -t 10.6128 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {3.0 21.0 56 ------- null} + -t 10.6128 -s 21 -d 28 -p ack -e 40 -c 0 -i 127 -a 1 -x {21.0 3.0 56 ------- null} - -t 10.6128 -s 21 -d 28 -p ack -e 40 -c 0 -i 127 -a 1 -x {21.0 3.0 56 ------- null} h -t 10.6128 -s 21 -d 28 -p ack -e 40 -c 0 -i 127 -a 1 -x {21.0 3.0 -1 ------- null} r -t 10.6144 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 108 -a 0 -x {3.0 21.0 57 ------- null} + -t 10.6144 -s 21 -d 28 -p ack -e 40 -c 0 -i 128 -a 1 -x {21.0 3.0 57 ------- null} - -t 10.6144 -s 21 -d 28 -p ack -e 40 -c 0 -i 128 -a 1 -x {21.0 3.0 57 ------- null} h -t 10.6144 -s 21 -d 28 -p ack -e 40 -c 0 -i 128 -a 1 -x {21.0 3.0 -1 ------- null} r -t 10.616 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {3.0 21.0 58 ------- null} + -t 10.616 -s 21 -d 28 -p ack -e 40 -c 0 -i 129 -a 1 -x {21.0 3.0 58 ------- null} - -t 10.616 -s 21 -d 28 -p ack -e 40 -c 0 -i 129 -a 1 -x {21.0 3.0 58 ------- null} h -t 10.616 -s 21 -d 28 -p ack -e 40 -c 0 -i 129 -a 1 -x {21.0 3.0 -1 ------- null} r -t 10.6176 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 110 -a 0 -x {3.0 21.0 59 ------- null} + -t 10.6176 -s 21 -d 28 -p ack -e 40 -c 0 -i 130 -a 1 -x {21.0 3.0 59 ------- null} - -t 10.6176 -s 21 -d 28 -p ack -e 40 -c 0 -i 130 -a 1 -x {21.0 3.0 59 ------- null} h -t 10.6176 -s 21 -d 28 -p ack -e 40 -c 0 -i 130 -a 1 -x {21.0 3.0 -1 ------- null} r -t 10.6192 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {3.0 21.0 60 ------- null} + -t 10.6192 -s 21 -d 28 -p ack -e 40 -c 0 -i 131 -a 1 -x {21.0 3.0 60 ------- null} - -t 10.6192 -s 21 -d 28 -p ack -e 40 -c 0 -i 131 -a 1 -x {21.0 3.0 60 ------- null} h -t 10.6192 -s 21 -d 28 -p ack -e 40 -c 0 -i 131 -a 1 -x {21.0 3.0 -1 ------- null} r -t 10.6208 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {3.0 21.0 61 ------- null} + -t 10.6208 -s 21 -d 28 -p ack -e 40 -c 0 -i 132 -a 1 -x {21.0 3.0 61 ------- null} - -t 10.6208 -s 21 -d 28 -p ack -e 40 -c 0 -i 132 -a 1 -x {21.0 3.0 61 ------- null} h -t 10.6208 -s 21 -d 28 -p ack -e 40 -c 0 -i 132 -a 1 -x {21.0 3.0 -1 ------- null} r -t 10.6224 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {3.0 21.0 62 ------- null} + -t 10.6224 -s 21 -d 28 -p ack -e 40 -c 0 -i 133 -a 1 -x {21.0 3.0 62 ------- null} - -t 10.6224 -s 21 -d 28 -p ack -e 40 -c 0 -i 133 -a 1 -x {21.0 3.0 62 ------- null} h -t 10.6224 -s 21 -d 28 -p ack -e 40 -c 0 -i 133 -a 1 -x {21.0 3.0 -1 ------- null} r -t 10.624 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 114 -a 0 -x {3.0 21.0 63 ------- null} + -t 10.624 -s 21 -d 28 -p ack -e 40 -c 0 -i 134 -a 1 -x {21.0 3.0 63 ------- null} - -t 10.624 -s 21 -d 28 -p ack -e 40 -c 0 -i 134 -a 1 -x {21.0 3.0 63 ------- null} h -t 10.624 -s 21 -d 28 -p ack -e 40 -c 0 -i 134 -a 1 -x {21.0 3.0 -1 ------- null} r -t 10.6256 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {3.0 21.0 64 ------- null} + -t 10.6256 -s 21 -d 28 -p ack -e 40 -c 0 -i 135 -a 1 -x {21.0 3.0 64 ------- null} - -t 10.6256 -s 21 -d 28 -p ack -e 40 -c 0 -i 135 -a 1 -x {21.0 3.0 64 ------- null} h -t 10.6256 -s 21 -d 28 -p ack -e 40 -c 0 -i 135 -a 1 -x {21.0 3.0 -1 ------- null} r -t 10.6272 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {3.0 21.0 65 ------- null} + -t 10.6272 -s 21 -d 28 -p ack -e 40 -c 0 -i 136 -a 1 -x {21.0 3.0 65 ------- null} - -t 10.6272 -s 21 -d 28 -p ack -e 40 -c 0 -i 136 -a 1 -x {21.0 3.0 65 ------- null} h -t 10.6272 -s 21 -d 28 -p ack -e 40 -c 0 -i 136 -a 1 -x {21.0 3.0 -1 ------- null} r -t 10.6288 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {3.0 21.0 66 ------- null} + -t 10.6288 -s 21 -d 28 -p ack -e 40 -c 0 -i 137 -a 1 -x {21.0 3.0 66 ------- null} - -t 10.6288 -s 21 -d 28 -p ack -e 40 -c 0 -i 137 -a 1 -x {21.0 3.0 66 ------- null} h -t 10.6288 -s 21 -d 28 -p ack -e 40 -c 0 -i 137 -a 1 -x {21.0 3.0 -1 ------- null} r -t 10.6304 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {3.0 21.0 67 ------- null} + -t 10.6304 -s 21 -d 28 -p ack -e 40 -c 0 -i 138 -a 1 -x {21.0 3.0 67 ------- null} - -t 10.6304 -s 21 -d 28 -p ack -e 40 -c 0 -i 138 -a 1 -x {21.0 3.0 67 ------- null} h -t 10.6304 -s 21 -d 28 -p ack -e 40 -c 0 -i 138 -a 1 -x {21.0 3.0 -1 ------- null} r -t 10.632 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {3.0 21.0 68 ------- null} + -t 10.632 -s 21 -d 28 -p ack -e 40 -c 0 -i 139 -a 1 -x {21.0 3.0 68 ------- null} - -t 10.632 -s 21 -d 28 -p ack -e 40 -c 0 -i 139 -a 1 -x {21.0 3.0 68 ------- null} h -t 10.632 -s 21 -d 28 -p ack -e 40 -c 0 -i 139 -a 1 -x {21.0 3.0 -1 ------- null} r -t 10.6336 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {3.0 21.0 69 ------- null} + -t 10.6336 -s 21 -d 28 -p ack -e 40 -c 0 -i 140 -a 1 -x {21.0 3.0 69 ------- null} - -t 10.6336 -s 21 -d 28 -p ack -e 40 -c 0 -i 140 -a 1 -x {21.0 3.0 69 ------- null} h -t 10.6336 -s 21 -d 28 -p ack -e 40 -c 0 -i 140 -a 1 -x {21.0 3.0 -1 ------- null} r -t 10.6352 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {3.0 21.0 70 ------- null} + -t 10.6352 -s 21 -d 28 -p ack -e 40 -c 0 -i 141 -a 1 -x {21.0 3.0 70 ------- null} - -t 10.6352 -s 21 -d 28 -p ack -e 40 -c 0 -i 141 -a 1 -x {21.0 3.0 70 ------- null} h -t 10.6352 -s 21 -d 28 -p ack -e 40 -c 0 -i 141 -a 1 -x {21.0 3.0 -1 ------- null} r -t 10.9548 -s 21 -d 28 -p ack -e 40 -c 0 -i 122 -a 1 -x {21.0 3.0 51 ------- null} + -t 10.9548 -s 28 -d 1 -p ack -e 40 -c 0 -i 122 -a 1 -x {21.0 3.0 51 ------- null} - -t 10.9548 -s 28 -d 1 -p ack -e 40 -c 0 -i 122 -a 1 -x {21.0 3.0 51 ------- null} h -t 10.9548 -s 28 -d 1 -p ack -e 40 -c 0 -i 122 -a 1 -x {21.0 3.0 -1 ------- null} r -t 10.9564 -s 21 -d 28 -p ack -e 40 -c 0 -i 123 -a 1 -x {21.0 3.0 52 ------- null} + -t 10.9564 -s 28 -d 1 -p ack -e 40 -c 0 -i 123 -a 1 -x {21.0 3.0 52 ------- null} - -t 10.9564 -s 28 -d 1 -p ack -e 40 -c 0 -i 123 -a 1 -x {21.0 3.0 52 ------- null} h -t 10.9564 -s 28 -d 1 -p ack -e 40 -c 0 -i 123 -a 1 -x {21.0 3.0 -1 ------- null} r -t 10.958 -s 21 -d 28 -p ack -e 40 -c 0 -i 124 -a 1 -x {21.0 3.0 53 ------- null} + -t 10.958 -s 28 -d 1 -p ack -e 40 -c 0 -i 124 -a 1 -x {21.0 3.0 53 ------- null} - -t 10.958 -s 28 -d 1 -p ack -e 40 -c 0 -i 124 -a 1 -x {21.0 3.0 53 ------- null} h -t 10.958 -s 28 -d 1 -p ack -e 40 -c 0 -i 124 -a 1 -x {21.0 3.0 -1 ------- null} r -t 10.9596 -s 21 -d 28 -p ack -e 40 -c 0 -i 125 -a 1 -x {21.0 3.0 54 ------- null} + -t 10.9596 -s 28 -d 1 -p ack -e 40 -c 0 -i 125 -a 1 -x {21.0 3.0 54 ------- null} - -t 10.9596 -s 28 -d 1 -p ack -e 40 -c 0 -i 125 -a 1 -x {21.0 3.0 54 ------- null} h -t 10.9596 -s 28 -d 1 -p ack -e 40 -c 0 -i 125 -a 1 -x {21.0 3.0 -1 ------- null} r -t 10.9612 -s 21 -d 28 -p ack -e 40 -c 0 -i 126 -a 1 -x {21.0 3.0 55 ------- null} + -t 10.9612 -s 28 -d 1 -p ack -e 40 -c 0 -i 126 -a 1 -x {21.0 3.0 55 ------- null} - -t 10.9612 -s 28 -d 1 -p ack -e 40 -c 0 -i 126 -a 1 -x {21.0 3.0 55 ------- null} h -t 10.9612 -s 28 -d 1 -p ack -e 40 -c 0 -i 126 -a 1 -x {21.0 3.0 -1 ------- null} r -t 10.9628 -s 21 -d 28 -p ack -e 40 -c 0 -i 127 -a 1 -x {21.0 3.0 56 ------- null} + -t 10.9628 -s 28 -d 1 -p ack -e 40 -c 0 -i 127 -a 1 -x {21.0 3.0 56 ------- null} - -t 10.9628 -s 28 -d 1 -p ack -e 40 -c 0 -i 127 -a 1 -x {21.0 3.0 56 ------- null} h -t 10.9628 -s 28 -d 1 -p ack -e 40 -c 0 -i 127 -a 1 -x {21.0 3.0 -1 ------- null} r -t 10.9644 -s 21 -d 28 -p ack -e 40 -c 0 -i 128 -a 1 -x {21.0 3.0 57 ------- null} + -t 10.9644 -s 28 -d 1 -p ack -e 40 -c 0 -i 128 -a 1 -x {21.0 3.0 57 ------- null} - -t 10.9644 -s 28 -d 1 -p ack -e 40 -c 0 -i 128 -a 1 -x {21.0 3.0 57 ------- null} h -t 10.9644 -s 28 -d 1 -p ack -e 40 -c 0 -i 128 -a 1 -x {21.0 3.0 -1 ------- null} r -t 10.966 -s 21 -d 28 -p ack -e 40 -c 0 -i 129 -a 1 -x {21.0 3.0 58 ------- null} + -t 10.966 -s 28 -d 1 -p ack -e 40 -c 0 -i 129 -a 1 -x {21.0 3.0 58 ------- null} - -t 10.966 -s 28 -d 1 -p ack -e 40 -c 0 -i 129 -a 1 -x {21.0 3.0 58 ------- null} h -t 10.966 -s 28 -d 1 -p ack -e 40 -c 0 -i 129 -a 1 -x {21.0 3.0 -1 ------- null} r -t 10.9676 -s 21 -d 28 -p ack -e 40 -c 0 -i 130 -a 1 -x {21.0 3.0 59 ------- null} + -t 10.9676 -s 28 -d 1 -p ack -e 40 -c 0 -i 130 -a 1 -x {21.0 3.0 59 ------- null} - -t 10.9676 -s 28 -d 1 -p ack -e 40 -c 0 -i 130 -a 1 -x {21.0 3.0 59 ------- null} h -t 10.9676 -s 28 -d 1 -p ack -e 40 -c 0 -i 130 -a 1 -x {21.0 3.0 -1 ------- null} r -t 10.9692 -s 21 -d 28 -p ack -e 40 -c 0 -i 131 -a 1 -x {21.0 3.0 60 ------- null} + -t 10.9692 -s 28 -d 1 -p ack -e 40 -c 0 -i 131 -a 1 -x {21.0 3.0 60 ------- null} - -t 10.9692 -s 28 -d 1 -p ack -e 40 -c 0 -i 131 -a 1 -x {21.0 3.0 60 ------- null} h -t 10.9692 -s 28 -d 1 -p ack -e 40 -c 0 -i 131 -a 1 -x {21.0 3.0 -1 ------- null} r -t 10.9708 -s 21 -d 28 -p ack -e 40 -c 0 -i 132 -a 1 -x {21.0 3.0 61 ------- null} + -t 10.9708 -s 28 -d 1 -p ack -e 40 -c 0 -i 132 -a 1 -x {21.0 3.0 61 ------- null} - -t 10.9708 -s 28 -d 1 -p ack -e 40 -c 0 -i 132 -a 1 -x {21.0 3.0 61 ------- null} h -t 10.9708 -s 28 -d 1 -p ack -e 40 -c 0 -i 132 -a 1 -x {21.0 3.0 -1 ------- null} r -t 10.9724 -s 21 -d 28 -p ack -e 40 -c 0 -i 133 -a 1 -x {21.0 3.0 62 ------- null} + -t 10.9724 -s 28 -d 1 -p ack -e 40 -c 0 -i 133 -a 1 -x {21.0 3.0 62 ------- null} - -t 10.9724 -s 28 -d 1 -p ack -e 40 -c 0 -i 133 -a 1 -x {21.0 3.0 62 ------- null} h -t 10.9724 -s 28 -d 1 -p ack -e 40 -c 0 -i 133 -a 1 -x {21.0 3.0 -1 ------- null} r -t 10.974 -s 21 -d 28 -p ack -e 40 -c 0 -i 134 -a 1 -x {21.0 3.0 63 ------- null} + -t 10.974 -s 28 -d 1 -p ack -e 40 -c 0 -i 134 -a 1 -x {21.0 3.0 63 ------- null} - -t 10.974 -s 28 -d 1 -p ack -e 40 -c 0 -i 134 -a 1 -x {21.0 3.0 63 ------- null} h -t 10.974 -s 28 -d 1 -p ack -e 40 -c 0 -i 134 -a 1 -x {21.0 3.0 -1 ------- null} r -t 10.9756 -s 21 -d 28 -p ack -e 40 -c 0 -i 135 -a 1 -x {21.0 3.0 64 ------- null} + -t 10.9756 -s 28 -d 1 -p ack -e 40 -c 0 -i 135 -a 1 -x {21.0 3.0 64 ------- null} - -t 10.9756 -s 28 -d 1 -p ack -e 40 -c 0 -i 135 -a 1 -x {21.0 3.0 64 ------- null} h -t 10.9756 -s 28 -d 1 -p ack -e 40 -c 0 -i 135 -a 1 -x {21.0 3.0 -1 ------- null} r -t 10.9772 -s 21 -d 28 -p ack -e 40 -c 0 -i 136 -a 1 -x {21.0 3.0 65 ------- null} + -t 10.9772 -s 28 -d 1 -p ack -e 40 -c 0 -i 136 -a 1 -x {21.0 3.0 65 ------- null} - -t 10.9772 -s 28 -d 1 -p ack -e 40 -c 0 -i 136 -a 1 -x {21.0 3.0 65 ------- null} h -t 10.9772 -s 28 -d 1 -p ack -e 40 -c 0 -i 136 -a 1 -x {21.0 3.0 -1 ------- null} r -t 10.9788 -s 21 -d 28 -p ack -e 40 -c 0 -i 137 -a 1 -x {21.0 3.0 66 ------- null} + -t 10.9788 -s 28 -d 1 -p ack -e 40 -c 0 -i 137 -a 1 -x {21.0 3.0 66 ------- null} - -t 10.9788 -s 28 -d 1 -p ack -e 40 -c 0 -i 137 -a 1 -x {21.0 3.0 66 ------- null} h -t 10.9788 -s 28 -d 1 -p ack -e 40 -c 0 -i 137 -a 1 -x {21.0 3.0 -1 ------- null} r -t 10.9804 -s 21 -d 28 -p ack -e 40 -c 0 -i 138 -a 1 -x {21.0 3.0 67 ------- null} + -t 10.9804 -s 28 -d 1 -p ack -e 40 -c 0 -i 138 -a 1 -x {21.0 3.0 67 ------- null} - -t 10.9804 -s 28 -d 1 -p ack -e 40 -c 0 -i 138 -a 1 -x {21.0 3.0 67 ------- null} h -t 10.9804 -s 28 -d 1 -p ack -e 40 -c 0 -i 138 -a 1 -x {21.0 3.0 -1 ------- null} r -t 10.982 -s 21 -d 28 -p ack -e 40 -c 0 -i 139 -a 1 -x {21.0 3.0 68 ------- null} + -t 10.982 -s 28 -d 1 -p ack -e 40 -c 0 -i 139 -a 1 -x {21.0 3.0 68 ------- null} - -t 10.982 -s 28 -d 1 -p ack -e 40 -c 0 -i 139 -a 1 -x {21.0 3.0 68 ------- null} h -t 10.982 -s 28 -d 1 -p ack -e 40 -c 0 -i 139 -a 1 -x {21.0 3.0 -1 ------- null} r -t 10.9836 -s 21 -d 28 -p ack -e 40 -c 0 -i 140 -a 1 -x {21.0 3.0 69 ------- null} + -t 10.9836 -s 28 -d 1 -p ack -e 40 -c 0 -i 140 -a 1 -x {21.0 3.0 69 ------- null} - -t 10.9836 -s 28 -d 1 -p ack -e 40 -c 0 -i 140 -a 1 -x {21.0 3.0 69 ------- null} h -t 10.9836 -s 28 -d 1 -p ack -e 40 -c 0 -i 140 -a 1 -x {21.0 3.0 -1 ------- null} r -t 10.9852 -s 21 -d 28 -p ack -e 40 -c 0 -i 141 -a 1 -x {21.0 3.0 70 ------- null} + -t 10.9852 -s 28 -d 1 -p ack -e 40 -c 0 -i 141 -a 1 -x {21.0 3.0 70 ------- null} - -t 10.9852 -s 28 -d 1 -p ack -e 40 -c 0 -i 141 -a 1 -x {21.0 3.0 70 ------- null} h -t 10.9852 -s 28 -d 1 -p ack -e 40 -c 0 -i 141 -a 1 -x {21.0 3.0 -1 ------- null} r -t 11.2549 -s 28 -d 1 -p ack -e 40 -c 0 -i 122 -a 1 -x {21.0 3.0 51 ------- null} + -t 11.2549 -s 1 -d 3 -p ack -e 40 -c 0 -i 122 -a 1 -x {21.0 3.0 51 ------- null} - -t 11.2549 -s 1 -d 3 -p ack -e 40 -c 0 -i 122 -a 1 -x {21.0 3.0 51 ------- null} h -t 11.2549 -s 1 -d 3 -p ack -e 40 -c 0 -i 122 -a 1 -x {21.0 3.0 -1 ------- null} r -t 11.2565 -s 28 -d 1 -p ack -e 40 -c 0 -i 123 -a 1 -x {21.0 3.0 52 ------- null} + -t 11.2565 -s 1 -d 3 -p ack -e 40 -c 0 -i 123 -a 1 -x {21.0 3.0 52 ------- null} - -t 11.2565 -s 1 -d 3 -p ack -e 40 -c 0 -i 123 -a 1 -x {21.0 3.0 52 ------- null} h -t 11.2565 -s 1 -d 3 -p ack -e 40 -c 0 -i 123 -a 1 -x {21.0 3.0 -1 ------- null} r -t 11.2581 -s 28 -d 1 -p ack -e 40 -c 0 -i 124 -a 1 -x {21.0 3.0 53 ------- null} + -t 11.2581 -s 1 -d 3 -p ack -e 40 -c 0 -i 124 -a 1 -x {21.0 3.0 53 ------- null} - -t 11.2581 -s 1 -d 3 -p ack -e 40 -c 0 -i 124 -a 1 -x {21.0 3.0 53 ------- null} h -t 11.2581 -s 1 -d 3 -p ack -e 40 -c 0 -i 124 -a 1 -x {21.0 3.0 -1 ------- null} r -t 11.2597 -s 28 -d 1 -p ack -e 40 -c 0 -i 125 -a 1 -x {21.0 3.0 54 ------- null} + -t 11.2597 -s 1 -d 3 -p ack -e 40 -c 0 -i 125 -a 1 -x {21.0 3.0 54 ------- null} - -t 11.2597 -s 1 -d 3 -p ack -e 40 -c 0 -i 125 -a 1 -x {21.0 3.0 54 ------- null} h -t 11.2597 -s 1 -d 3 -p ack -e 40 -c 0 -i 125 -a 1 -x {21.0 3.0 -1 ------- null} r -t 11.2613 -s 28 -d 1 -p ack -e 40 -c 0 -i 126 -a 1 -x {21.0 3.0 55 ------- null} + -t 11.2613 -s 1 -d 3 -p ack -e 40 -c 0 -i 126 -a 1 -x {21.0 3.0 55 ------- null} - -t 11.2613 -s 1 -d 3 -p ack -e 40 -c 0 -i 126 -a 1 -x {21.0 3.0 55 ------- null} h -t 11.2613 -s 1 -d 3 -p ack -e 40 -c 0 -i 126 -a 1 -x {21.0 3.0 -1 ------- null} r -t 11.2629 -s 28 -d 1 -p ack -e 40 -c 0 -i 127 -a 1 -x {21.0 3.0 56 ------- null} + -t 11.2629 -s 1 -d 3 -p ack -e 40 -c 0 -i 127 -a 1 -x {21.0 3.0 56 ------- null} - -t 11.2629 -s 1 -d 3 -p ack -e 40 -c 0 -i 127 -a 1 -x {21.0 3.0 56 ------- null} h -t 11.2629 -s 1 -d 3 -p ack -e 40 -c 0 -i 127 -a 1 -x {21.0 3.0 -1 ------- null} r -t 11.2645 -s 28 -d 1 -p ack -e 40 -c 0 -i 128 -a 1 -x {21.0 3.0 57 ------- null} + -t 11.2645 -s 1 -d 3 -p ack -e 40 -c 0 -i 128 -a 1 -x {21.0 3.0 57 ------- null} - -t 11.2645 -s 1 -d 3 -p ack -e 40 -c 0 -i 128 -a 1 -x {21.0 3.0 57 ------- null} h -t 11.2645 -s 1 -d 3 -p ack -e 40 -c 0 -i 128 -a 1 -x {21.0 3.0 -1 ------- null} r -t 11.2661 -s 28 -d 1 -p ack -e 40 -c 0 -i 129 -a 1 -x {21.0 3.0 58 ------- null} + -t 11.2661 -s 1 -d 3 -p ack -e 40 -c 0 -i 129 -a 1 -x {21.0 3.0 58 ------- null} - -t 11.2661 -s 1 -d 3 -p ack -e 40 -c 0 -i 129 -a 1 -x {21.0 3.0 58 ------- null} h -t 11.2661 -s 1 -d 3 -p ack -e 40 -c 0 -i 129 -a 1 -x {21.0 3.0 -1 ------- null} r -t 11.2677 -s 28 -d 1 -p ack -e 40 -c 0 -i 130 -a 1 -x {21.0 3.0 59 ------- null} + -t 11.2677 -s 1 -d 3 -p ack -e 40 -c 0 -i 130 -a 1 -x {21.0 3.0 59 ------- null} - -t 11.2677 -s 1 -d 3 -p ack -e 40 -c 0 -i 130 -a 1 -x {21.0 3.0 59 ------- null} h -t 11.2677 -s 1 -d 3 -p ack -e 40 -c 0 -i 130 -a 1 -x {21.0 3.0 -1 ------- null} r -t 11.2693 -s 28 -d 1 -p ack -e 40 -c 0 -i 131 -a 1 -x {21.0 3.0 60 ------- null} + -t 11.2693 -s 1 -d 3 -p ack -e 40 -c 0 -i 131 -a 1 -x {21.0 3.0 60 ------- null} - -t 11.2693 -s 1 -d 3 -p ack -e 40 -c 0 -i 131 -a 1 -x {21.0 3.0 60 ------- null} h -t 11.2693 -s 1 -d 3 -p ack -e 40 -c 0 -i 131 -a 1 -x {21.0 3.0 -1 ------- null} r -t 11.2709 -s 28 -d 1 -p ack -e 40 -c 0 -i 132 -a 1 -x {21.0 3.0 61 ------- null} + -t 11.2709 -s 1 -d 3 -p ack -e 40 -c 0 -i 132 -a 1 -x {21.0 3.0 61 ------- null} - -t 11.2709 -s 1 -d 3 -p ack -e 40 -c 0 -i 132 -a 1 -x {21.0 3.0 61 ------- null} h -t 11.2709 -s 1 -d 3 -p ack -e 40 -c 0 -i 132 -a 1 -x {21.0 3.0 -1 ------- null} r -t 11.2725 -s 28 -d 1 -p ack -e 40 -c 0 -i 133 -a 1 -x {21.0 3.0 62 ------- null} + -t 11.2725 -s 1 -d 3 -p ack -e 40 -c 0 -i 133 -a 1 -x {21.0 3.0 62 ------- null} - -t 11.2725 -s 1 -d 3 -p ack -e 40 -c 0 -i 133 -a 1 -x {21.0 3.0 62 ------- null} h -t 11.2725 -s 1 -d 3 -p ack -e 40 -c 0 -i 133 -a 1 -x {21.0 3.0 -1 ------- null} r -t 11.2741 -s 28 -d 1 -p ack -e 40 -c 0 -i 134 -a 1 -x {21.0 3.0 63 ------- null} + -t 11.2741 -s 1 -d 3 -p ack -e 40 -c 0 -i 134 -a 1 -x {21.0 3.0 63 ------- null} - -t 11.2741 -s 1 -d 3 -p ack -e 40 -c 0 -i 134 -a 1 -x {21.0 3.0 63 ------- null} h -t 11.2741 -s 1 -d 3 -p ack -e 40 -c 0 -i 134 -a 1 -x {21.0 3.0 -1 ------- null} r -t 11.2757 -s 28 -d 1 -p ack -e 40 -c 0 -i 135 -a 1 -x {21.0 3.0 64 ------- null} + -t 11.2757 -s 1 -d 3 -p ack -e 40 -c 0 -i 135 -a 1 -x {21.0 3.0 64 ------- null} - -t 11.2757 -s 1 -d 3 -p ack -e 40 -c 0 -i 135 -a 1 -x {21.0 3.0 64 ------- null} h -t 11.2757 -s 1 -d 3 -p ack -e 40 -c 0 -i 135 -a 1 -x {21.0 3.0 -1 ------- null} r -t 11.2773 -s 28 -d 1 -p ack -e 40 -c 0 -i 136 -a 1 -x {21.0 3.0 65 ------- null} + -t 11.2773 -s 1 -d 3 -p ack -e 40 -c 0 -i 136 -a 1 -x {21.0 3.0 65 ------- null} - -t 11.2773 -s 1 -d 3 -p ack -e 40 -c 0 -i 136 -a 1 -x {21.0 3.0 65 ------- null} h -t 11.2773 -s 1 -d 3 -p ack -e 40 -c 0 -i 136 -a 1 -x {21.0 3.0 -1 ------- null} r -t 11.2789 -s 28 -d 1 -p ack -e 40 -c 0 -i 137 -a 1 -x {21.0 3.0 66 ------- null} + -t 11.2789 -s 1 -d 3 -p ack -e 40 -c 0 -i 137 -a 1 -x {21.0 3.0 66 ------- null} - -t 11.2789 -s 1 -d 3 -p ack -e 40 -c 0 -i 137 -a 1 -x {21.0 3.0 66 ------- null} h -t 11.2789 -s 1 -d 3 -p ack -e 40 -c 0 -i 137 -a 1 -x {21.0 3.0 -1 ------- null} r -t 11.2805 -s 28 -d 1 -p ack -e 40 -c 0 -i 138 -a 1 -x {21.0 3.0 67 ------- null} + -t 11.2805 -s 1 -d 3 -p ack -e 40 -c 0 -i 138 -a 1 -x {21.0 3.0 67 ------- null} - -t 11.2805 -s 1 -d 3 -p ack -e 40 -c 0 -i 138 -a 1 -x {21.0 3.0 67 ------- null} h -t 11.2805 -s 1 -d 3 -p ack -e 40 -c 0 -i 138 -a 1 -x {21.0 3.0 -1 ------- null} r -t 11.2821 -s 28 -d 1 -p ack -e 40 -c 0 -i 139 -a 1 -x {21.0 3.0 68 ------- null} + -t 11.2821 -s 1 -d 3 -p ack -e 40 -c 0 -i 139 -a 1 -x {21.0 3.0 68 ------- null} - -t 11.2821 -s 1 -d 3 -p ack -e 40 -c 0 -i 139 -a 1 -x {21.0 3.0 68 ------- null} h -t 11.2821 -s 1 -d 3 -p ack -e 40 -c 0 -i 139 -a 1 -x {21.0 3.0 -1 ------- null} r -t 11.2837 -s 28 -d 1 -p ack -e 40 -c 0 -i 140 -a 1 -x {21.0 3.0 69 ------- null} + -t 11.2837 -s 1 -d 3 -p ack -e 40 -c 0 -i 140 -a 1 -x {21.0 3.0 69 ------- null} - -t 11.2837 -s 1 -d 3 -p ack -e 40 -c 0 -i 140 -a 1 -x {21.0 3.0 69 ------- null} h -t 11.2837 -s 1 -d 3 -p ack -e 40 -c 0 -i 140 -a 1 -x {21.0 3.0 -1 ------- null} r -t 11.2853 -s 28 -d 1 -p ack -e 40 -c 0 -i 141 -a 1 -x {21.0 3.0 70 ------- null} + -t 11.2853 -s 1 -d 3 -p ack -e 40 -c 0 -i 141 -a 1 -x {21.0 3.0 70 ------- null} - -t 11.2853 -s 1 -d 3 -p ack -e 40 -c 0 -i 141 -a 1 -x {21.0 3.0 70 ------- null} h -t 11.2853 -s 1 -d 3 -p ack -e 40 -c 0 -i 141 -a 1 -x {21.0 3.0 -1 ------- null} r -t 11.3949 -s 1 -d 3 -p ack -e 40 -c 0 -i 122 -a 1 -x {21.0 3.0 51 ------- null} + -t 11.3949 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 142 -a 0 -x {3.0 21.0 71 ------- null} - -t 11.3949 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 142 -a 0 -x {3.0 21.0 71 ------- null} h -t 11.3949 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 142 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.3965 -s 1 -d 3 -p ack -e 40 -c 0 -i 123 -a 1 -x {21.0 3.0 52 ------- null} + -t 11.3965 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {3.0 21.0 72 ------- null} - -t 11.3965 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {3.0 21.0 72 ------- null} h -t 11.3965 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.3981 -s 1 -d 3 -p ack -e 40 -c 0 -i 124 -a 1 -x {21.0 3.0 53 ------- null} + -t 11.3981 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 144 -a 0 -x {3.0 21.0 73 ------- null} - -t 11.3981 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 144 -a 0 -x {3.0 21.0 73 ------- null} h -t 11.3981 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 144 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.3997 -s 1 -d 3 -p ack -e 40 -c 0 -i 125 -a 1 -x {21.0 3.0 54 ------- null} + -t 11.3997 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {3.0 21.0 74 ------- null} - -t 11.3997 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {3.0 21.0 74 ------- null} h -t 11.3997 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.4013 -s 1 -d 3 -p ack -e 40 -c 0 -i 126 -a 1 -x {21.0 3.0 55 ------- null} + -t 11.4013 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 146 -a 0 -x {3.0 21.0 75 ------- null} - -t 11.4013 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 146 -a 0 -x {3.0 21.0 75 ------- null} h -t 11.4013 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 146 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.4029 -s 1 -d 3 -p ack -e 40 -c 0 -i 127 -a 1 -x {21.0 3.0 56 ------- null} + -t 11.4029 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {3.0 21.0 76 ------- null} - -t 11.4029 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {3.0 21.0 76 ------- null} h -t 11.4029 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.4045 -s 1 -d 3 -p ack -e 40 -c 0 -i 128 -a 1 -x {21.0 3.0 57 ------- null} + -t 11.4045 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 148 -a 0 -x {3.0 21.0 77 ------- null} - -t 11.4045 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 148 -a 0 -x {3.0 21.0 77 ------- null} h -t 11.4045 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 148 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.4061 -s 1 -d 3 -p ack -e 40 -c 0 -i 129 -a 1 -x {21.0 3.0 58 ------- null} + -t 11.4061 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {3.0 21.0 78 ------- null} - -t 11.4061 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {3.0 21.0 78 ------- null} h -t 11.4061 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.4077 -s 1 -d 3 -p ack -e 40 -c 0 -i 130 -a 1 -x {21.0 3.0 59 ------- null} + -t 11.4077 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 150 -a 0 -x {3.0 21.0 79 ------- null} - -t 11.4077 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 150 -a 0 -x {3.0 21.0 79 ------- null} h -t 11.4077 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 150 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.4093 -s 1 -d 3 -p ack -e 40 -c 0 -i 131 -a 1 -x {21.0 3.0 60 ------- null} + -t 11.4093 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {3.0 21.0 80 ------- null} - -t 11.4093 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {3.0 21.0 80 ------- null} h -t 11.4093 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.4109 -s 1 -d 3 -p ack -e 40 -c 0 -i 132 -a 1 -x {21.0 3.0 61 ------- null} + -t 11.4109 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 152 -a 0 -x {3.0 21.0 81 ------- null} - -t 11.4109 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 152 -a 0 -x {3.0 21.0 81 ------- null} h -t 11.4109 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 152 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.4125 -s 1 -d 3 -p ack -e 40 -c 0 -i 133 -a 1 -x {21.0 3.0 62 ------- null} + -t 11.4125 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {3.0 21.0 82 ------- null} - -t 11.4125 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {3.0 21.0 82 ------- null} h -t 11.4125 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.4141 -s 1 -d 3 -p ack -e 40 -c 0 -i 134 -a 1 -x {21.0 3.0 63 ------- null} + -t 11.4141 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 154 -a 0 -x {3.0 21.0 83 ------- null} - -t 11.4141 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 154 -a 0 -x {3.0 21.0 83 ------- null} h -t 11.4141 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 154 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.4157 -s 1 -d 3 -p ack -e 40 -c 0 -i 135 -a 1 -x {21.0 3.0 64 ------- null} + -t 11.4157 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {3.0 21.0 84 ------- null} - -t 11.4157 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {3.0 21.0 84 ------- null} h -t 11.4157 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.4173 -s 1 -d 3 -p ack -e 40 -c 0 -i 136 -a 1 -x {21.0 3.0 65 ------- null} + -t 11.4173 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 156 -a 0 -x {3.0 21.0 85 ------- null} - -t 11.4173 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 156 -a 0 -x {3.0 21.0 85 ------- null} h -t 11.4173 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 156 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.4189 -s 1 -d 3 -p ack -e 40 -c 0 -i 137 -a 1 -x {21.0 3.0 66 ------- null} + -t 11.4189 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {3.0 21.0 86 ------- null} - -t 11.4189 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {3.0 21.0 86 ------- null} h -t 11.4189 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.4205 -s 1 -d 3 -p ack -e 40 -c 0 -i 138 -a 1 -x {21.0 3.0 67 ------- null} + -t 11.4205 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {3.0 21.0 87 ------- null} - -t 11.4205 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {3.0 21.0 87 ------- null} h -t 11.4205 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.4221 -s 1 -d 3 -p ack -e 40 -c 0 -i 139 -a 1 -x {21.0 3.0 68 ------- null} + -t 11.4221 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {3.0 21.0 88 ------- null} - -t 11.4221 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {3.0 21.0 88 ------- null} h -t 11.4221 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.4237 -s 1 -d 3 -p ack -e 40 -c 0 -i 140 -a 1 -x {21.0 3.0 69 ------- null} + -t 11.4237 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 160 -a 0 -x {3.0 21.0 89 ------- null} - -t 11.4237 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 160 -a 0 -x {3.0 21.0 89 ------- null} h -t 11.4237 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 160 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.4253 -s 1 -d 3 -p ack -e 40 -c 0 -i 141 -a 1 -x {21.0 3.0 70 ------- null} + -t 11.4253 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {3.0 21.0 90 ------- null} - -t 11.4253 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {3.0 21.0 90 ------- null} h -t 11.4253 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.5365 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 142 -a 0 -x {3.0 21.0 71 ------- null} + -t 11.5365 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 142 -a 0 -x {3.0 21.0 71 ------- null} - -t 11.5365 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 142 -a 0 -x {3.0 21.0 71 ------- null} h -t 11.5365 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 142 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.5381 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {3.0 21.0 72 ------- null} + -t 11.5381 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {3.0 21.0 72 ------- null} - -t 11.5381 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {3.0 21.0 72 ------- null} h -t 11.5381 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.5397 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 144 -a 0 -x {3.0 21.0 73 ------- null} + -t 11.5397 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 144 -a 0 -x {3.0 21.0 73 ------- null} - -t 11.5397 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 144 -a 0 -x {3.0 21.0 73 ------- null} h -t 11.5397 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 144 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.5413 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {3.0 21.0 74 ------- null} + -t 11.5413 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {3.0 21.0 74 ------- null} - -t 11.5413 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {3.0 21.0 74 ------- null} h -t 11.5413 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.5429 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 146 -a 0 -x {3.0 21.0 75 ------- null} + -t 11.5429 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 146 -a 0 -x {3.0 21.0 75 ------- null} - -t 11.5429 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 146 -a 0 -x {3.0 21.0 75 ------- null} h -t 11.5429 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 146 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.5445 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {3.0 21.0 76 ------- null} + -t 11.5445 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {3.0 21.0 76 ------- null} - -t 11.5445 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {3.0 21.0 76 ------- null} h -t 11.5445 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.5461 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 148 -a 0 -x {3.0 21.0 77 ------- null} + -t 11.5461 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 148 -a 0 -x {3.0 21.0 77 ------- null} - -t 11.5461 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 148 -a 0 -x {3.0 21.0 77 ------- null} h -t 11.5461 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 148 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.5477 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {3.0 21.0 78 ------- null} + -t 11.5477 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {3.0 21.0 78 ------- null} - -t 11.5477 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {3.0 21.0 78 ------- null} h -t 11.5477 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.5493 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 150 -a 0 -x {3.0 21.0 79 ------- null} + -t 11.5493 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 150 -a 0 -x {3.0 21.0 79 ------- null} - -t 11.5493 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 150 -a 0 -x {3.0 21.0 79 ------- null} h -t 11.5493 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 150 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.5509 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {3.0 21.0 80 ------- null} + -t 11.5509 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {3.0 21.0 80 ------- null} - -t 11.5509 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {3.0 21.0 80 ------- null} h -t 11.5509 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.5525 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 152 -a 0 -x {3.0 21.0 81 ------- null} + -t 11.5525 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 152 -a 0 -x {3.0 21.0 81 ------- null} - -t 11.5525 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 152 -a 0 -x {3.0 21.0 81 ------- null} h -t 11.5525 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 152 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.5541 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {3.0 21.0 82 ------- null} + -t 11.5541 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {3.0 21.0 82 ------- null} - -t 11.5541 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {3.0 21.0 82 ------- null} h -t 11.5541 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.5557 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 154 -a 0 -x {3.0 21.0 83 ------- null} + -t 11.5557 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 154 -a 0 -x {3.0 21.0 83 ------- null} - -t 11.5557 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 154 -a 0 -x {3.0 21.0 83 ------- null} h -t 11.5557 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 154 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.5573 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {3.0 21.0 84 ------- null} + -t 11.5573 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {3.0 21.0 84 ------- null} - -t 11.5573 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {3.0 21.0 84 ------- null} h -t 11.5573 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.5589 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 156 -a 0 -x {3.0 21.0 85 ------- null} + -t 11.5589 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 156 -a 0 -x {3.0 21.0 85 ------- null} - -t 11.5589 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 156 -a 0 -x {3.0 21.0 85 ------- null} h -t 11.5589 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 156 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.5605 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {3.0 21.0 86 ------- null} + -t 11.5605 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {3.0 21.0 86 ------- null} - -t 11.5605 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {3.0 21.0 86 ------- null} h -t 11.5605 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.5621 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {3.0 21.0 87 ------- null} + -t 11.5621 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {3.0 21.0 87 ------- null} - -t 11.5621 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {3.0 21.0 87 ------- null} h -t 11.5621 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.5637 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {3.0 21.0 88 ------- null} + -t 11.5637 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {3.0 21.0 88 ------- null} - -t 11.5637 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {3.0 21.0 88 ------- null} h -t 11.5637 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.5653 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 160 -a 0 -x {3.0 21.0 89 ------- null} + -t 11.5653 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 160 -a 0 -x {3.0 21.0 89 ------- null} - -t 11.5653 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 160 -a 0 -x {3.0 21.0 89 ------- null} h -t 11.5653 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 160 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.5669 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {3.0 21.0 90 ------- null} + -t 11.5669 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {3.0 21.0 90 ------- null} - -t 11.5669 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {3.0 21.0 90 ------- null} h -t 11.5669 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.8381 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 142 -a 0 -x {3.0 21.0 71 ------- null} + -t 11.8381 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 142 -a 0 -x {3.0 21.0 71 ------- null} - -t 11.8381 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 142 -a 0 -x {3.0 21.0 71 ------- null} h -t 11.8381 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 142 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.8397 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {3.0 21.0 72 ------- null} + -t 11.8397 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {3.0 21.0 72 ------- null} - -t 11.8397 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {3.0 21.0 72 ------- null} h -t 11.8397 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.8413 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 144 -a 0 -x {3.0 21.0 73 ------- null} + -t 11.8413 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 144 -a 0 -x {3.0 21.0 73 ------- null} - -t 11.8413 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 144 -a 0 -x {3.0 21.0 73 ------- null} h -t 11.8413 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 144 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.8429 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {3.0 21.0 74 ------- null} + -t 11.8429 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {3.0 21.0 74 ------- null} - -t 11.8429 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {3.0 21.0 74 ------- null} h -t 11.8429 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.8445 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 146 -a 0 -x {3.0 21.0 75 ------- null} + -t 11.8445 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 146 -a 0 -x {3.0 21.0 75 ------- null} - -t 11.8445 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 146 -a 0 -x {3.0 21.0 75 ------- null} h -t 11.8445 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 146 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.8461 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {3.0 21.0 76 ------- null} + -t 11.8461 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {3.0 21.0 76 ------- null} - -t 11.8461 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {3.0 21.0 76 ------- null} h -t 11.8461 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.8477 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 148 -a 0 -x {3.0 21.0 77 ------- null} + -t 11.8477 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 148 -a 0 -x {3.0 21.0 77 ------- null} - -t 11.8477 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 148 -a 0 -x {3.0 21.0 77 ------- null} h -t 11.8477 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 148 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.8493 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {3.0 21.0 78 ------- null} + -t 11.8493 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {3.0 21.0 78 ------- null} - -t 11.8493 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {3.0 21.0 78 ------- null} h -t 11.8493 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.8509 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 150 -a 0 -x {3.0 21.0 79 ------- null} + -t 11.8509 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 150 -a 0 -x {3.0 21.0 79 ------- null} - -t 11.8509 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 150 -a 0 -x {3.0 21.0 79 ------- null} h -t 11.8509 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 150 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.8525 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {3.0 21.0 80 ------- null} + -t 11.8525 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {3.0 21.0 80 ------- null} - -t 11.8525 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {3.0 21.0 80 ------- null} h -t 11.8525 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.8541 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 152 -a 0 -x {3.0 21.0 81 ------- null} + -t 11.8541 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 152 -a 0 -x {3.0 21.0 81 ------- null} - -t 11.8541 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 152 -a 0 -x {3.0 21.0 81 ------- null} h -t 11.8541 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 152 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.8557 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {3.0 21.0 82 ------- null} + -t 11.8557 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {3.0 21.0 82 ------- null} - -t 11.8557 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {3.0 21.0 82 ------- null} h -t 11.8557 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.8573 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 154 -a 0 -x {3.0 21.0 83 ------- null} + -t 11.8573 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 154 -a 0 -x {3.0 21.0 83 ------- null} - -t 11.8573 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 154 -a 0 -x {3.0 21.0 83 ------- null} h -t 11.8573 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 154 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.8589 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {3.0 21.0 84 ------- null} + -t 11.8589 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {3.0 21.0 84 ------- null} - -t 11.8589 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {3.0 21.0 84 ------- null} h -t 11.8589 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.8605 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 156 -a 0 -x {3.0 21.0 85 ------- null} + -t 11.8605 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 156 -a 0 -x {3.0 21.0 85 ------- null} - -t 11.8605 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 156 -a 0 -x {3.0 21.0 85 ------- null} h -t 11.8605 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 156 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.8621 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {3.0 21.0 86 ------- null} + -t 11.8621 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {3.0 21.0 86 ------- null} - -t 11.8621 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {3.0 21.0 86 ------- null} h -t 11.8621 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.8637 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {3.0 21.0 87 ------- null} + -t 11.8637 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {3.0 21.0 87 ------- null} - -t 11.8637 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {3.0 21.0 87 ------- null} h -t 11.8637 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.8653 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {3.0 21.0 88 ------- null} + -t 11.8653 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {3.0 21.0 88 ------- null} - -t 11.8653 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {3.0 21.0 88 ------- null} h -t 11.8653 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.8669 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 160 -a 0 -x {3.0 21.0 89 ------- null} + -t 11.8669 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 160 -a 0 -x {3.0 21.0 89 ------- null} - -t 11.8669 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 160 -a 0 -x {3.0 21.0 89 ------- null} h -t 11.8669 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 160 -a 0 -x {3.0 21.0 -1 ------- null} r -t 11.8685 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {3.0 21.0 90 ------- null} + -t 11.8685 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {3.0 21.0 90 ------- null} - -t 11.8685 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {3.0 21.0 90 ------- null} h -t 11.8685 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {3.0 21.0 -1 ------- null} r -t 12.1897 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 142 -a 0 -x {3.0 21.0 71 ------- null} + -t 12.1897 -s 21 -d 28 -p ack -e 40 -c 0 -i 162 -a 1 -x {21.0 3.0 71 ------- null} - -t 12.1897 -s 21 -d 28 -p ack -e 40 -c 0 -i 162 -a 1 -x {21.0 3.0 71 ------- null} h -t 12.1897 -s 21 -d 28 -p ack -e 40 -c 0 -i 162 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.1913 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {3.0 21.0 72 ------- null} + -t 12.1913 -s 21 -d 28 -p ack -e 40 -c 0 -i 163 -a 1 -x {21.0 3.0 72 ------- null} - -t 12.1913 -s 21 -d 28 -p ack -e 40 -c 0 -i 163 -a 1 -x {21.0 3.0 72 ------- null} h -t 12.1913 -s 21 -d 28 -p ack -e 40 -c 0 -i 163 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.1929 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 144 -a 0 -x {3.0 21.0 73 ------- null} + -t 12.1929 -s 21 -d 28 -p ack -e 40 -c 0 -i 164 -a 1 -x {21.0 3.0 73 ------- null} - -t 12.1929 -s 21 -d 28 -p ack -e 40 -c 0 -i 164 -a 1 -x {21.0 3.0 73 ------- null} h -t 12.1929 -s 21 -d 28 -p ack -e 40 -c 0 -i 164 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.1945 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {3.0 21.0 74 ------- null} + -t 12.1945 -s 21 -d 28 -p ack -e 40 -c 0 -i 165 -a 1 -x {21.0 3.0 74 ------- null} - -t 12.1945 -s 21 -d 28 -p ack -e 40 -c 0 -i 165 -a 1 -x {21.0 3.0 74 ------- null} h -t 12.1945 -s 21 -d 28 -p ack -e 40 -c 0 -i 165 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.1961 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 146 -a 0 -x {3.0 21.0 75 ------- null} + -t 12.1961 -s 21 -d 28 -p ack -e 40 -c 0 -i 166 -a 1 -x {21.0 3.0 75 ------- null} - -t 12.1961 -s 21 -d 28 -p ack -e 40 -c 0 -i 166 -a 1 -x {21.0 3.0 75 ------- null} h -t 12.1961 -s 21 -d 28 -p ack -e 40 -c 0 -i 166 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.1977 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {3.0 21.0 76 ------- null} + -t 12.1977 -s 21 -d 28 -p ack -e 40 -c 0 -i 167 -a 1 -x {21.0 3.0 76 ------- null} - -t 12.1977 -s 21 -d 28 -p ack -e 40 -c 0 -i 167 -a 1 -x {21.0 3.0 76 ------- null} h -t 12.1977 -s 21 -d 28 -p ack -e 40 -c 0 -i 167 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.1993 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 148 -a 0 -x {3.0 21.0 77 ------- null} + -t 12.1993 -s 21 -d 28 -p ack -e 40 -c 0 -i 168 -a 1 -x {21.0 3.0 77 ------- null} - -t 12.1993 -s 21 -d 28 -p ack -e 40 -c 0 -i 168 -a 1 -x {21.0 3.0 77 ------- null} h -t 12.1993 -s 21 -d 28 -p ack -e 40 -c 0 -i 168 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.2009 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {3.0 21.0 78 ------- null} + -t 12.2009 -s 21 -d 28 -p ack -e 40 -c 0 -i 169 -a 1 -x {21.0 3.0 78 ------- null} - -t 12.2009 -s 21 -d 28 -p ack -e 40 -c 0 -i 169 -a 1 -x {21.0 3.0 78 ------- null} h -t 12.2009 -s 21 -d 28 -p ack -e 40 -c 0 -i 169 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.2025 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 150 -a 0 -x {3.0 21.0 79 ------- null} + -t 12.2025 -s 21 -d 28 -p ack -e 40 -c 0 -i 170 -a 1 -x {21.0 3.0 79 ------- null} - -t 12.2025 -s 21 -d 28 -p ack -e 40 -c 0 -i 170 -a 1 -x {21.0 3.0 79 ------- null} h -t 12.2025 -s 21 -d 28 -p ack -e 40 -c 0 -i 170 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.2041 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {3.0 21.0 80 ------- null} + -t 12.2041 -s 21 -d 28 -p ack -e 40 -c 0 -i 171 -a 1 -x {21.0 3.0 80 ------- null} - -t 12.2041 -s 21 -d 28 -p ack -e 40 -c 0 -i 171 -a 1 -x {21.0 3.0 80 ------- null} h -t 12.2041 -s 21 -d 28 -p ack -e 40 -c 0 -i 171 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.2057 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 152 -a 0 -x {3.0 21.0 81 ------- null} + -t 12.2057 -s 21 -d 28 -p ack -e 40 -c 0 -i 172 -a 1 -x {21.0 3.0 81 ------- null} - -t 12.2057 -s 21 -d 28 -p ack -e 40 -c 0 -i 172 -a 1 -x {21.0 3.0 81 ------- null} h -t 12.2057 -s 21 -d 28 -p ack -e 40 -c 0 -i 172 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.2073 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {3.0 21.0 82 ------- null} + -t 12.2073 -s 21 -d 28 -p ack -e 40 -c 0 -i 173 -a 1 -x {21.0 3.0 82 ------- null} - -t 12.2073 -s 21 -d 28 -p ack -e 40 -c 0 -i 173 -a 1 -x {21.0 3.0 82 ------- null} h -t 12.2073 -s 21 -d 28 -p ack -e 40 -c 0 -i 173 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.2089 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 154 -a 0 -x {3.0 21.0 83 ------- null} + -t 12.2089 -s 21 -d 28 -p ack -e 40 -c 0 -i 174 -a 1 -x {21.0 3.0 83 ------- null} - -t 12.2089 -s 21 -d 28 -p ack -e 40 -c 0 -i 174 -a 1 -x {21.0 3.0 83 ------- null} h -t 12.2089 -s 21 -d 28 -p ack -e 40 -c 0 -i 174 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.2105 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {3.0 21.0 84 ------- null} + -t 12.2105 -s 21 -d 28 -p ack -e 40 -c 0 -i 175 -a 1 -x {21.0 3.0 84 ------- null} - -t 12.2105 -s 21 -d 28 -p ack -e 40 -c 0 -i 175 -a 1 -x {21.0 3.0 84 ------- null} h -t 12.2105 -s 21 -d 28 -p ack -e 40 -c 0 -i 175 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.2121 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 156 -a 0 -x {3.0 21.0 85 ------- null} + -t 12.2121 -s 21 -d 28 -p ack -e 40 -c 0 -i 176 -a 1 -x {21.0 3.0 85 ------- null} - -t 12.2121 -s 21 -d 28 -p ack -e 40 -c 0 -i 176 -a 1 -x {21.0 3.0 85 ------- null} h -t 12.2121 -s 21 -d 28 -p ack -e 40 -c 0 -i 176 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.2137 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {3.0 21.0 86 ------- null} + -t 12.2137 -s 21 -d 28 -p ack -e 40 -c 0 -i 177 -a 1 -x {21.0 3.0 86 ------- null} - -t 12.2137 -s 21 -d 28 -p ack -e 40 -c 0 -i 177 -a 1 -x {21.0 3.0 86 ------- null} h -t 12.2137 -s 21 -d 28 -p ack -e 40 -c 0 -i 177 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.2153 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {3.0 21.0 87 ------- null} + -t 12.2153 -s 21 -d 28 -p ack -e 40 -c 0 -i 178 -a 1 -x {21.0 3.0 87 ------- null} - -t 12.2153 -s 21 -d 28 -p ack -e 40 -c 0 -i 178 -a 1 -x {21.0 3.0 87 ------- null} h -t 12.2153 -s 21 -d 28 -p ack -e 40 -c 0 -i 178 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.2169 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {3.0 21.0 88 ------- null} + -t 12.2169 -s 21 -d 28 -p ack -e 40 -c 0 -i 179 -a 1 -x {21.0 3.0 88 ------- null} - -t 12.2169 -s 21 -d 28 -p ack -e 40 -c 0 -i 179 -a 1 -x {21.0 3.0 88 ------- null} h -t 12.2169 -s 21 -d 28 -p ack -e 40 -c 0 -i 179 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.2185 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 160 -a 0 -x {3.0 21.0 89 ------- null} + -t 12.2185 -s 21 -d 28 -p ack -e 40 -c 0 -i 180 -a 1 -x {21.0 3.0 89 ------- null} - -t 12.2185 -s 21 -d 28 -p ack -e 40 -c 0 -i 180 -a 1 -x {21.0 3.0 89 ------- null} h -t 12.2185 -s 21 -d 28 -p ack -e 40 -c 0 -i 180 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.2201 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {3.0 21.0 90 ------- null} + -t 12.2201 -s 21 -d 28 -p ack -e 40 -c 0 -i 181 -a 1 -x {21.0 3.0 90 ------- null} - -t 12.2201 -s 21 -d 28 -p ack -e 40 -c 0 -i 181 -a 1 -x {21.0 3.0 90 ------- null} h -t 12.2201 -s 21 -d 28 -p ack -e 40 -c 0 -i 181 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.5398 -s 21 -d 28 -p ack -e 40 -c 0 -i 162 -a 1 -x {21.0 3.0 71 ------- null} + -t 12.5398 -s 28 -d 1 -p ack -e 40 -c 0 -i 162 -a 1 -x {21.0 3.0 71 ------- null} - -t 12.5398 -s 28 -d 1 -p ack -e 40 -c 0 -i 162 -a 1 -x {21.0 3.0 71 ------- null} h -t 12.5398 -s 28 -d 1 -p ack -e 40 -c 0 -i 162 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.5414 -s 21 -d 28 -p ack -e 40 -c 0 -i 163 -a 1 -x {21.0 3.0 72 ------- null} + -t 12.5414 -s 28 -d 1 -p ack -e 40 -c 0 -i 163 -a 1 -x {21.0 3.0 72 ------- null} - -t 12.5414 -s 28 -d 1 -p ack -e 40 -c 0 -i 163 -a 1 -x {21.0 3.0 72 ------- null} h -t 12.5414 -s 28 -d 1 -p ack -e 40 -c 0 -i 163 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.543 -s 21 -d 28 -p ack -e 40 -c 0 -i 164 -a 1 -x {21.0 3.0 73 ------- null} + -t 12.543 -s 28 -d 1 -p ack -e 40 -c 0 -i 164 -a 1 -x {21.0 3.0 73 ------- null} - -t 12.543 -s 28 -d 1 -p ack -e 40 -c 0 -i 164 -a 1 -x {21.0 3.0 73 ------- null} h -t 12.543 -s 28 -d 1 -p ack -e 40 -c 0 -i 164 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.5446 -s 21 -d 28 -p ack -e 40 -c 0 -i 165 -a 1 -x {21.0 3.0 74 ------- null} + -t 12.5446 -s 28 -d 1 -p ack -e 40 -c 0 -i 165 -a 1 -x {21.0 3.0 74 ------- null} - -t 12.5446 -s 28 -d 1 -p ack -e 40 -c 0 -i 165 -a 1 -x {21.0 3.0 74 ------- null} h -t 12.5446 -s 28 -d 1 -p ack -e 40 -c 0 -i 165 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.5462 -s 21 -d 28 -p ack -e 40 -c 0 -i 166 -a 1 -x {21.0 3.0 75 ------- null} + -t 12.5462 -s 28 -d 1 -p ack -e 40 -c 0 -i 166 -a 1 -x {21.0 3.0 75 ------- null} - -t 12.5462 -s 28 -d 1 -p ack -e 40 -c 0 -i 166 -a 1 -x {21.0 3.0 75 ------- null} h -t 12.5462 -s 28 -d 1 -p ack -e 40 -c 0 -i 166 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.5478 -s 21 -d 28 -p ack -e 40 -c 0 -i 167 -a 1 -x {21.0 3.0 76 ------- null} + -t 12.5478 -s 28 -d 1 -p ack -e 40 -c 0 -i 167 -a 1 -x {21.0 3.0 76 ------- null} - -t 12.5478 -s 28 -d 1 -p ack -e 40 -c 0 -i 167 -a 1 -x {21.0 3.0 76 ------- null} h -t 12.5478 -s 28 -d 1 -p ack -e 40 -c 0 -i 167 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.5494 -s 21 -d 28 -p ack -e 40 -c 0 -i 168 -a 1 -x {21.0 3.0 77 ------- null} + -t 12.5494 -s 28 -d 1 -p ack -e 40 -c 0 -i 168 -a 1 -x {21.0 3.0 77 ------- null} - -t 12.5494 -s 28 -d 1 -p ack -e 40 -c 0 -i 168 -a 1 -x {21.0 3.0 77 ------- null} h -t 12.5494 -s 28 -d 1 -p ack -e 40 -c 0 -i 168 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.551 -s 21 -d 28 -p ack -e 40 -c 0 -i 169 -a 1 -x {21.0 3.0 78 ------- null} + -t 12.551 -s 28 -d 1 -p ack -e 40 -c 0 -i 169 -a 1 -x {21.0 3.0 78 ------- null} - -t 12.551 -s 28 -d 1 -p ack -e 40 -c 0 -i 169 -a 1 -x {21.0 3.0 78 ------- null} h -t 12.551 -s 28 -d 1 -p ack -e 40 -c 0 -i 169 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.5526 -s 21 -d 28 -p ack -e 40 -c 0 -i 170 -a 1 -x {21.0 3.0 79 ------- null} + -t 12.5526 -s 28 -d 1 -p ack -e 40 -c 0 -i 170 -a 1 -x {21.0 3.0 79 ------- null} - -t 12.5526 -s 28 -d 1 -p ack -e 40 -c 0 -i 170 -a 1 -x {21.0 3.0 79 ------- null} h -t 12.5526 -s 28 -d 1 -p ack -e 40 -c 0 -i 170 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.5542 -s 21 -d 28 -p ack -e 40 -c 0 -i 171 -a 1 -x {21.0 3.0 80 ------- null} + -t 12.5542 -s 28 -d 1 -p ack -e 40 -c 0 -i 171 -a 1 -x {21.0 3.0 80 ------- null} - -t 12.5542 -s 28 -d 1 -p ack -e 40 -c 0 -i 171 -a 1 -x {21.0 3.0 80 ------- null} h -t 12.5542 -s 28 -d 1 -p ack -e 40 -c 0 -i 171 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.5558 -s 21 -d 28 -p ack -e 40 -c 0 -i 172 -a 1 -x {21.0 3.0 81 ------- null} + -t 12.5558 -s 28 -d 1 -p ack -e 40 -c 0 -i 172 -a 1 -x {21.0 3.0 81 ------- null} - -t 12.5558 -s 28 -d 1 -p ack -e 40 -c 0 -i 172 -a 1 -x {21.0 3.0 81 ------- null} h -t 12.5558 -s 28 -d 1 -p ack -e 40 -c 0 -i 172 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.5574 -s 21 -d 28 -p ack -e 40 -c 0 -i 173 -a 1 -x {21.0 3.0 82 ------- null} + -t 12.5574 -s 28 -d 1 -p ack -e 40 -c 0 -i 173 -a 1 -x {21.0 3.0 82 ------- null} - -t 12.5574 -s 28 -d 1 -p ack -e 40 -c 0 -i 173 -a 1 -x {21.0 3.0 82 ------- null} h -t 12.5574 -s 28 -d 1 -p ack -e 40 -c 0 -i 173 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.559 -s 21 -d 28 -p ack -e 40 -c 0 -i 174 -a 1 -x {21.0 3.0 83 ------- null} + -t 12.559 -s 28 -d 1 -p ack -e 40 -c 0 -i 174 -a 1 -x {21.0 3.0 83 ------- null} - -t 12.559 -s 28 -d 1 -p ack -e 40 -c 0 -i 174 -a 1 -x {21.0 3.0 83 ------- null} h -t 12.559 -s 28 -d 1 -p ack -e 40 -c 0 -i 174 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.5606 -s 21 -d 28 -p ack -e 40 -c 0 -i 175 -a 1 -x {21.0 3.0 84 ------- null} + -t 12.5606 -s 28 -d 1 -p ack -e 40 -c 0 -i 175 -a 1 -x {21.0 3.0 84 ------- null} - -t 12.5606 -s 28 -d 1 -p ack -e 40 -c 0 -i 175 -a 1 -x {21.0 3.0 84 ------- null} h -t 12.5606 -s 28 -d 1 -p ack -e 40 -c 0 -i 175 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.5622 -s 21 -d 28 -p ack -e 40 -c 0 -i 176 -a 1 -x {21.0 3.0 85 ------- null} + -t 12.5622 -s 28 -d 1 -p ack -e 40 -c 0 -i 176 -a 1 -x {21.0 3.0 85 ------- null} - -t 12.5622 -s 28 -d 1 -p ack -e 40 -c 0 -i 176 -a 1 -x {21.0 3.0 85 ------- null} h -t 12.5622 -s 28 -d 1 -p ack -e 40 -c 0 -i 176 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.5638 -s 21 -d 28 -p ack -e 40 -c 0 -i 177 -a 1 -x {21.0 3.0 86 ------- null} + -t 12.5638 -s 28 -d 1 -p ack -e 40 -c 0 -i 177 -a 1 -x {21.0 3.0 86 ------- null} - -t 12.5638 -s 28 -d 1 -p ack -e 40 -c 0 -i 177 -a 1 -x {21.0 3.0 86 ------- null} h -t 12.5638 -s 28 -d 1 -p ack -e 40 -c 0 -i 177 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.5654 -s 21 -d 28 -p ack -e 40 -c 0 -i 178 -a 1 -x {21.0 3.0 87 ------- null} + -t 12.5654 -s 28 -d 1 -p ack -e 40 -c 0 -i 178 -a 1 -x {21.0 3.0 87 ------- null} - -t 12.5654 -s 28 -d 1 -p ack -e 40 -c 0 -i 178 -a 1 -x {21.0 3.0 87 ------- null} h -t 12.5654 -s 28 -d 1 -p ack -e 40 -c 0 -i 178 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.567 -s 21 -d 28 -p ack -e 40 -c 0 -i 179 -a 1 -x {21.0 3.0 88 ------- null} + -t 12.567 -s 28 -d 1 -p ack -e 40 -c 0 -i 179 -a 1 -x {21.0 3.0 88 ------- null} - -t 12.567 -s 28 -d 1 -p ack -e 40 -c 0 -i 179 -a 1 -x {21.0 3.0 88 ------- null} h -t 12.567 -s 28 -d 1 -p ack -e 40 -c 0 -i 179 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.5686 -s 21 -d 28 -p ack -e 40 -c 0 -i 180 -a 1 -x {21.0 3.0 89 ------- null} + -t 12.5686 -s 28 -d 1 -p ack -e 40 -c 0 -i 180 -a 1 -x {21.0 3.0 89 ------- null} - -t 12.5686 -s 28 -d 1 -p ack -e 40 -c 0 -i 180 -a 1 -x {21.0 3.0 89 ------- null} h -t 12.5686 -s 28 -d 1 -p ack -e 40 -c 0 -i 180 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.5702 -s 21 -d 28 -p ack -e 40 -c 0 -i 181 -a 1 -x {21.0 3.0 90 ------- null} + -t 12.5702 -s 28 -d 1 -p ack -e 40 -c 0 -i 181 -a 1 -x {21.0 3.0 90 ------- null} - -t 12.5702 -s 28 -d 1 -p ack -e 40 -c 0 -i 181 -a 1 -x {21.0 3.0 90 ------- null} h -t 12.5702 -s 28 -d 1 -p ack -e 40 -c 0 -i 181 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.8399 -s 28 -d 1 -p ack -e 40 -c 0 -i 162 -a 1 -x {21.0 3.0 71 ------- null} + -t 12.8399 -s 1 -d 3 -p ack -e 40 -c 0 -i 162 -a 1 -x {21.0 3.0 71 ------- null} - -t 12.8399 -s 1 -d 3 -p ack -e 40 -c 0 -i 162 -a 1 -x {21.0 3.0 71 ------- null} h -t 12.8399 -s 1 -d 3 -p ack -e 40 -c 0 -i 162 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.8415 -s 28 -d 1 -p ack -e 40 -c 0 -i 163 -a 1 -x {21.0 3.0 72 ------- null} + -t 12.8415 -s 1 -d 3 -p ack -e 40 -c 0 -i 163 -a 1 -x {21.0 3.0 72 ------- null} - -t 12.8415 -s 1 -d 3 -p ack -e 40 -c 0 -i 163 -a 1 -x {21.0 3.0 72 ------- null} h -t 12.8415 -s 1 -d 3 -p ack -e 40 -c 0 -i 163 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.8431 -s 28 -d 1 -p ack -e 40 -c 0 -i 164 -a 1 -x {21.0 3.0 73 ------- null} + -t 12.8431 -s 1 -d 3 -p ack -e 40 -c 0 -i 164 -a 1 -x {21.0 3.0 73 ------- null} - -t 12.8431 -s 1 -d 3 -p ack -e 40 -c 0 -i 164 -a 1 -x {21.0 3.0 73 ------- null} h -t 12.8431 -s 1 -d 3 -p ack -e 40 -c 0 -i 164 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.8447 -s 28 -d 1 -p ack -e 40 -c 0 -i 165 -a 1 -x {21.0 3.0 74 ------- null} + -t 12.8447 -s 1 -d 3 -p ack -e 40 -c 0 -i 165 -a 1 -x {21.0 3.0 74 ------- null} - -t 12.8447 -s 1 -d 3 -p ack -e 40 -c 0 -i 165 -a 1 -x {21.0 3.0 74 ------- null} h -t 12.8447 -s 1 -d 3 -p ack -e 40 -c 0 -i 165 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.8463 -s 28 -d 1 -p ack -e 40 -c 0 -i 166 -a 1 -x {21.0 3.0 75 ------- null} + -t 12.8463 -s 1 -d 3 -p ack -e 40 -c 0 -i 166 -a 1 -x {21.0 3.0 75 ------- null} - -t 12.8463 -s 1 -d 3 -p ack -e 40 -c 0 -i 166 -a 1 -x {21.0 3.0 75 ------- null} h -t 12.8463 -s 1 -d 3 -p ack -e 40 -c 0 -i 166 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.8479 -s 28 -d 1 -p ack -e 40 -c 0 -i 167 -a 1 -x {21.0 3.0 76 ------- null} + -t 12.8479 -s 1 -d 3 -p ack -e 40 -c 0 -i 167 -a 1 -x {21.0 3.0 76 ------- null} - -t 12.8479 -s 1 -d 3 -p ack -e 40 -c 0 -i 167 -a 1 -x {21.0 3.0 76 ------- null} h -t 12.8479 -s 1 -d 3 -p ack -e 40 -c 0 -i 167 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.8495 -s 28 -d 1 -p ack -e 40 -c 0 -i 168 -a 1 -x {21.0 3.0 77 ------- null} + -t 12.8495 -s 1 -d 3 -p ack -e 40 -c 0 -i 168 -a 1 -x {21.0 3.0 77 ------- null} - -t 12.8495 -s 1 -d 3 -p ack -e 40 -c 0 -i 168 -a 1 -x {21.0 3.0 77 ------- null} h -t 12.8495 -s 1 -d 3 -p ack -e 40 -c 0 -i 168 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.8511 -s 28 -d 1 -p ack -e 40 -c 0 -i 169 -a 1 -x {21.0 3.0 78 ------- null} + -t 12.8511 -s 1 -d 3 -p ack -e 40 -c 0 -i 169 -a 1 -x {21.0 3.0 78 ------- null} - -t 12.8511 -s 1 -d 3 -p ack -e 40 -c 0 -i 169 -a 1 -x {21.0 3.0 78 ------- null} h -t 12.8511 -s 1 -d 3 -p ack -e 40 -c 0 -i 169 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.8527 -s 28 -d 1 -p ack -e 40 -c 0 -i 170 -a 1 -x {21.0 3.0 79 ------- null} + -t 12.8527 -s 1 -d 3 -p ack -e 40 -c 0 -i 170 -a 1 -x {21.0 3.0 79 ------- null} - -t 12.8527 -s 1 -d 3 -p ack -e 40 -c 0 -i 170 -a 1 -x {21.0 3.0 79 ------- null} h -t 12.8527 -s 1 -d 3 -p ack -e 40 -c 0 -i 170 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.8543 -s 28 -d 1 -p ack -e 40 -c 0 -i 171 -a 1 -x {21.0 3.0 80 ------- null} + -t 12.8543 -s 1 -d 3 -p ack -e 40 -c 0 -i 171 -a 1 -x {21.0 3.0 80 ------- null} - -t 12.8543 -s 1 -d 3 -p ack -e 40 -c 0 -i 171 -a 1 -x {21.0 3.0 80 ------- null} h -t 12.8543 -s 1 -d 3 -p ack -e 40 -c 0 -i 171 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.8559 -s 28 -d 1 -p ack -e 40 -c 0 -i 172 -a 1 -x {21.0 3.0 81 ------- null} + -t 12.8559 -s 1 -d 3 -p ack -e 40 -c 0 -i 172 -a 1 -x {21.0 3.0 81 ------- null} - -t 12.8559 -s 1 -d 3 -p ack -e 40 -c 0 -i 172 -a 1 -x {21.0 3.0 81 ------- null} h -t 12.8559 -s 1 -d 3 -p ack -e 40 -c 0 -i 172 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.8575 -s 28 -d 1 -p ack -e 40 -c 0 -i 173 -a 1 -x {21.0 3.0 82 ------- null} + -t 12.8575 -s 1 -d 3 -p ack -e 40 -c 0 -i 173 -a 1 -x {21.0 3.0 82 ------- null} - -t 12.8575 -s 1 -d 3 -p ack -e 40 -c 0 -i 173 -a 1 -x {21.0 3.0 82 ------- null} h -t 12.8575 -s 1 -d 3 -p ack -e 40 -c 0 -i 173 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.8591 -s 28 -d 1 -p ack -e 40 -c 0 -i 174 -a 1 -x {21.0 3.0 83 ------- null} + -t 12.8591 -s 1 -d 3 -p ack -e 40 -c 0 -i 174 -a 1 -x {21.0 3.0 83 ------- null} - -t 12.8591 -s 1 -d 3 -p ack -e 40 -c 0 -i 174 -a 1 -x {21.0 3.0 83 ------- null} h -t 12.8591 -s 1 -d 3 -p ack -e 40 -c 0 -i 174 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.8607 -s 28 -d 1 -p ack -e 40 -c 0 -i 175 -a 1 -x {21.0 3.0 84 ------- null} + -t 12.8607 -s 1 -d 3 -p ack -e 40 -c 0 -i 175 -a 1 -x {21.0 3.0 84 ------- null} - -t 12.8607 -s 1 -d 3 -p ack -e 40 -c 0 -i 175 -a 1 -x {21.0 3.0 84 ------- null} h -t 12.8607 -s 1 -d 3 -p ack -e 40 -c 0 -i 175 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.8623 -s 28 -d 1 -p ack -e 40 -c 0 -i 176 -a 1 -x {21.0 3.0 85 ------- null} + -t 12.8623 -s 1 -d 3 -p ack -e 40 -c 0 -i 176 -a 1 -x {21.0 3.0 85 ------- null} - -t 12.8623 -s 1 -d 3 -p ack -e 40 -c 0 -i 176 -a 1 -x {21.0 3.0 85 ------- null} h -t 12.8623 -s 1 -d 3 -p ack -e 40 -c 0 -i 176 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.8639 -s 28 -d 1 -p ack -e 40 -c 0 -i 177 -a 1 -x {21.0 3.0 86 ------- null} + -t 12.8639 -s 1 -d 3 -p ack -e 40 -c 0 -i 177 -a 1 -x {21.0 3.0 86 ------- null} - -t 12.8639 -s 1 -d 3 -p ack -e 40 -c 0 -i 177 -a 1 -x {21.0 3.0 86 ------- null} h -t 12.8639 -s 1 -d 3 -p ack -e 40 -c 0 -i 177 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.8655 -s 28 -d 1 -p ack -e 40 -c 0 -i 178 -a 1 -x {21.0 3.0 87 ------- null} + -t 12.8655 -s 1 -d 3 -p ack -e 40 -c 0 -i 178 -a 1 -x {21.0 3.0 87 ------- null} - -t 12.8655 -s 1 -d 3 -p ack -e 40 -c 0 -i 178 -a 1 -x {21.0 3.0 87 ------- null} h -t 12.8655 -s 1 -d 3 -p ack -e 40 -c 0 -i 178 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.8671 -s 28 -d 1 -p ack -e 40 -c 0 -i 179 -a 1 -x {21.0 3.0 88 ------- null} + -t 12.8671 -s 1 -d 3 -p ack -e 40 -c 0 -i 179 -a 1 -x {21.0 3.0 88 ------- null} - -t 12.8671 -s 1 -d 3 -p ack -e 40 -c 0 -i 179 -a 1 -x {21.0 3.0 88 ------- null} h -t 12.8671 -s 1 -d 3 -p ack -e 40 -c 0 -i 179 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.8687 -s 28 -d 1 -p ack -e 40 -c 0 -i 180 -a 1 -x {21.0 3.0 89 ------- null} + -t 12.8687 -s 1 -d 3 -p ack -e 40 -c 0 -i 180 -a 1 -x {21.0 3.0 89 ------- null} - -t 12.8687 -s 1 -d 3 -p ack -e 40 -c 0 -i 180 -a 1 -x {21.0 3.0 89 ------- null} h -t 12.8687 -s 1 -d 3 -p ack -e 40 -c 0 -i 180 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.8703 -s 28 -d 1 -p ack -e 40 -c 0 -i 181 -a 1 -x {21.0 3.0 90 ------- null} + -t 12.8703 -s 1 -d 3 -p ack -e 40 -c 0 -i 181 -a 1 -x {21.0 3.0 90 ------- null} - -t 12.8703 -s 1 -d 3 -p ack -e 40 -c 0 -i 181 -a 1 -x {21.0 3.0 90 ------- null} h -t 12.8703 -s 1 -d 3 -p ack -e 40 -c 0 -i 181 -a 1 -x {21.0 3.0 -1 ------- null} r -t 12.9799 -s 1 -d 3 -p ack -e 40 -c 0 -i 162 -a 1 -x {21.0 3.0 71 ------- null} + -t 12.9799 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {3.0 21.0 91 ------- null} - -t 12.9799 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {3.0 21.0 91 ------- null} h -t 12.9799 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {3.0 21.0 -1 ------- null} r -t 12.9815 -s 1 -d 3 -p ack -e 40 -c 0 -i 163 -a 1 -x {21.0 3.0 72 ------- null} + -t 12.9815 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {3.0 21.0 92 ------- null} - -t 12.9815 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {3.0 21.0 92 ------- null} h -t 12.9815 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {3.0 21.0 -1 ------- null} r -t 12.9831 -s 1 -d 3 -p ack -e 40 -c 0 -i 164 -a 1 -x {21.0 3.0 73 ------- null} + -t 12.9831 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 184 -a 0 -x {3.0 21.0 93 ------- null} - -t 12.9831 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 184 -a 0 -x {3.0 21.0 93 ------- null} h -t 12.9831 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 184 -a 0 -x {3.0 21.0 -1 ------- null} r -t 12.9847 -s 1 -d 3 -p ack -e 40 -c 0 -i 165 -a 1 -x {21.0 3.0 74 ------- null} + -t 12.9847 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {3.0 21.0 94 ------- null} - -t 12.9847 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {3.0 21.0 94 ------- null} h -t 12.9847 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {3.0 21.0 -1 ------- null} r -t 12.9863 -s 1 -d 3 -p ack -e 40 -c 0 -i 166 -a 1 -x {21.0 3.0 75 ------- null} + -t 12.9863 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 186 -a 0 -x {3.0 21.0 95 ------- null} - -t 12.9863 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 186 -a 0 -x {3.0 21.0 95 ------- null} h -t 12.9863 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 186 -a 0 -x {3.0 21.0 -1 ------- null} r -t 12.9879 -s 1 -d 3 -p ack -e 40 -c 0 -i 167 -a 1 -x {21.0 3.0 76 ------- null} + -t 12.9879 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {3.0 21.0 96 ------- null} - -t 12.9879 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {3.0 21.0 96 ------- null} h -t 12.9879 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {3.0 21.0 -1 ------- null} r -t 12.9895 -s 1 -d 3 -p ack -e 40 -c 0 -i 168 -a 1 -x {21.0 3.0 77 ------- null} + -t 12.9895 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 188 -a 0 -x {3.0 21.0 97 ------- null} - -t 12.9895 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 188 -a 0 -x {3.0 21.0 97 ------- null} h -t 12.9895 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 188 -a 0 -x {3.0 21.0 -1 ------- null} r -t 12.9911 -s 1 -d 3 -p ack -e 40 -c 0 -i 169 -a 1 -x {21.0 3.0 78 ------- null} + -t 12.9911 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {3.0 21.0 98 ------- null} - -t 12.9911 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {3.0 21.0 98 ------- null} h -t 12.9911 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {3.0 21.0 -1 ------- null} r -t 12.9927 -s 1 -d 3 -p ack -e 40 -c 0 -i 170 -a 1 -x {21.0 3.0 79 ------- null} + -t 12.9927 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 190 -a 0 -x {3.0 21.0 99 ------- null} - -t 12.9927 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 190 -a 0 -x {3.0 21.0 99 ------- null} h -t 12.9927 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 190 -a 0 -x {3.0 21.0 -1 ------- null} r -t 12.9943 -s 1 -d 3 -p ack -e 40 -c 0 -i 171 -a 1 -x {21.0 3.0 80 ------- null} + -t 12.9943 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {3.0 21.0 100 ------- null} - -t 12.9943 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {3.0 21.0 100 ------- null} h -t 12.9943 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {3.0 21.0 -1 ------- null} r -t 12.9959 -s 1 -d 3 -p ack -e 40 -c 0 -i 172 -a 1 -x {21.0 3.0 81 ------- null} + -t 12.9959 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 192 -a 0 -x {3.0 21.0 101 ------- null} - -t 12.9959 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 192 -a 0 -x {3.0 21.0 101 ------- null} h -t 12.9959 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 192 -a 0 -x {3.0 21.0 -1 ------- null} r -t 12.9975 -s 1 -d 3 -p ack -e 40 -c 0 -i 173 -a 1 -x {21.0 3.0 82 ------- null} + -t 12.9975 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {3.0 21.0 102 ------- null} - -t 12.9975 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {3.0 21.0 102 ------- null} h -t 12.9975 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {3.0 21.0 -1 ------- null} r -t 12.9991 -s 1 -d 3 -p ack -e 40 -c 0 -i 174 -a 1 -x {21.0 3.0 83 ------- null} + -t 12.9991 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 194 -a 0 -x {3.0 21.0 103 ------- null} - -t 12.9991 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 194 -a 0 -x {3.0 21.0 103 ------- null} h -t 12.9991 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 194 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.0007 -s 1 -d 3 -p ack -e 40 -c 0 -i 175 -a 1 -x {21.0 3.0 84 ------- null} + -t 13.0007 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {3.0 21.0 104 ------- null} - -t 13.0007 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {3.0 21.0 104 ------- null} h -t 13.0007 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.0023 -s 1 -d 3 -p ack -e 40 -c 0 -i 176 -a 1 -x {21.0 3.0 85 ------- null} + -t 13.0023 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 196 -a 0 -x {3.0 21.0 105 ------- null} - -t 13.0023 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 196 -a 0 -x {3.0 21.0 105 ------- null} h -t 13.0023 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 196 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.0039 -s 1 -d 3 -p ack -e 40 -c 0 -i 177 -a 1 -x {21.0 3.0 86 ------- null} + -t 13.0039 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {3.0 21.0 106 ------- null} - -t 13.0039 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {3.0 21.0 106 ------- null} h -t 13.0039 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.0055 -s 1 -d 3 -p ack -e 40 -c 0 -i 178 -a 1 -x {21.0 3.0 87 ------- null} + -t 13.0055 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 198 -a 0 -x {3.0 21.0 107 ------- null} - -t 13.0055 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 198 -a 0 -x {3.0 21.0 107 ------- null} h -t 13.0055 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 198 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.0071 -s 1 -d 3 -p ack -e 40 -c 0 -i 179 -a 1 -x {21.0 3.0 88 ------- null} + -t 13.0071 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {3.0 21.0 108 ------- null} - -t 13.0071 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {3.0 21.0 108 ------- null} h -t 13.0071 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.0087 -s 1 -d 3 -p ack -e 40 -c 0 -i 180 -a 1 -x {21.0 3.0 89 ------- null} + -t 13.0087 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 200 -a 0 -x {3.0 21.0 109 ------- null} - -t 13.0087 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 200 -a 0 -x {3.0 21.0 109 ------- null} h -t 13.0087 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 200 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.0103 -s 1 -d 3 -p ack -e 40 -c 0 -i 181 -a 1 -x {21.0 3.0 90 ------- null} + -t 13.0103 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {3.0 21.0 110 ------- null} - -t 13.0103 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {3.0 21.0 110 ------- null} h -t 13.0103 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.1215 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {3.0 21.0 91 ------- null} + -t 13.1215 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {3.0 21.0 91 ------- null} - -t 13.1215 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {3.0 21.0 91 ------- null} h -t 13.1215 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.1231 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {3.0 21.0 92 ------- null} + -t 13.1231 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {3.0 21.0 92 ------- null} - -t 13.1231 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {3.0 21.0 92 ------- null} h -t 13.1231 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.1247 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 184 -a 0 -x {3.0 21.0 93 ------- null} + -t 13.1247 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 184 -a 0 -x {3.0 21.0 93 ------- null} - -t 13.1247 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 184 -a 0 -x {3.0 21.0 93 ------- null} h -t 13.1247 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 184 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.1263 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {3.0 21.0 94 ------- null} + -t 13.1263 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {3.0 21.0 94 ------- null} - -t 13.1263 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {3.0 21.0 94 ------- null} h -t 13.1263 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.1279 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 186 -a 0 -x {3.0 21.0 95 ------- null} + -t 13.1279 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 186 -a 0 -x {3.0 21.0 95 ------- null} - -t 13.1279 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 186 -a 0 -x {3.0 21.0 95 ------- null} h -t 13.1279 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 186 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.1295 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {3.0 21.0 96 ------- null} + -t 13.1295 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {3.0 21.0 96 ------- null} - -t 13.1295 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {3.0 21.0 96 ------- null} h -t 13.1295 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.1311 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 188 -a 0 -x {3.0 21.0 97 ------- null} + -t 13.1311 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 188 -a 0 -x {3.0 21.0 97 ------- null} - -t 13.1311 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 188 -a 0 -x {3.0 21.0 97 ------- null} h -t 13.1311 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 188 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.1327 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {3.0 21.0 98 ------- null} + -t 13.1327 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {3.0 21.0 98 ------- null} - -t 13.1327 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {3.0 21.0 98 ------- null} h -t 13.1327 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.1343 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 190 -a 0 -x {3.0 21.0 99 ------- null} + -t 13.1343 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 190 -a 0 -x {3.0 21.0 99 ------- null} - -t 13.1343 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 190 -a 0 -x {3.0 21.0 99 ------- null} h -t 13.1343 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 190 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.1359 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {3.0 21.0 100 ------- null} + -t 13.1359 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {3.0 21.0 100 ------- null} - -t 13.1359 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {3.0 21.0 100 ------- null} h -t 13.1359 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.1375 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 192 -a 0 -x {3.0 21.0 101 ------- null} + -t 13.1375 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 192 -a 0 -x {3.0 21.0 101 ------- null} - -t 13.1375 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 192 -a 0 -x {3.0 21.0 101 ------- null} h -t 13.1375 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 192 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.1391 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {3.0 21.0 102 ------- null} + -t 13.1391 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {3.0 21.0 102 ------- null} - -t 13.1391 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {3.0 21.0 102 ------- null} h -t 13.1391 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.1407 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 194 -a 0 -x {3.0 21.0 103 ------- null} + -t 13.1407 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 194 -a 0 -x {3.0 21.0 103 ------- null} - -t 13.1407 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 194 -a 0 -x {3.0 21.0 103 ------- null} h -t 13.1407 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 194 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.1423 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {3.0 21.0 104 ------- null} + -t 13.1423 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {3.0 21.0 104 ------- null} - -t 13.1423 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {3.0 21.0 104 ------- null} h -t 13.1423 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.1439 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 196 -a 0 -x {3.0 21.0 105 ------- null} + -t 13.1439 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 196 -a 0 -x {3.0 21.0 105 ------- null} - -t 13.1439 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 196 -a 0 -x {3.0 21.0 105 ------- null} h -t 13.1439 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 196 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.1455 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {3.0 21.0 106 ------- null} + -t 13.1455 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {3.0 21.0 106 ------- null} - -t 13.1455 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {3.0 21.0 106 ------- null} h -t 13.1455 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.1471 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 198 -a 0 -x {3.0 21.0 107 ------- null} + -t 13.1471 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 198 -a 0 -x {3.0 21.0 107 ------- null} - -t 13.1471 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 198 -a 0 -x {3.0 21.0 107 ------- null} h -t 13.1471 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 198 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.1487 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {3.0 21.0 108 ------- null} + -t 13.1487 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {3.0 21.0 108 ------- null} - -t 13.1487 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {3.0 21.0 108 ------- null} h -t 13.1487 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.1503 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 200 -a 0 -x {3.0 21.0 109 ------- null} + -t 13.1503 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 200 -a 0 -x {3.0 21.0 109 ------- null} - -t 13.1503 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 200 -a 0 -x {3.0 21.0 109 ------- null} h -t 13.1503 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 200 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.1519 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {3.0 21.0 110 ------- null} + -t 13.1519 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {3.0 21.0 110 ------- null} - -t 13.1519 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {3.0 21.0 110 ------- null} h -t 13.1519 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.4231 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {3.0 21.0 91 ------- null} + -t 13.4231 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {3.0 21.0 91 ------- null} - -t 13.4231 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {3.0 21.0 91 ------- null} h -t 13.4231 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.4247 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {3.0 21.0 92 ------- null} + -t 13.4247 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {3.0 21.0 92 ------- null} - -t 13.4247 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {3.0 21.0 92 ------- null} h -t 13.4247 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.4263 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 184 -a 0 -x {3.0 21.0 93 ------- null} + -t 13.4263 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 184 -a 0 -x {3.0 21.0 93 ------- null} - -t 13.4263 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 184 -a 0 -x {3.0 21.0 93 ------- null} h -t 13.4263 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 184 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.4279 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {3.0 21.0 94 ------- null} + -t 13.4279 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {3.0 21.0 94 ------- null} - -t 13.4279 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {3.0 21.0 94 ------- null} h -t 13.4279 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.4295 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 186 -a 0 -x {3.0 21.0 95 ------- null} + -t 13.4295 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 186 -a 0 -x {3.0 21.0 95 ------- null} - -t 13.4295 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 186 -a 0 -x {3.0 21.0 95 ------- null} h -t 13.4295 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 186 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.4311 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {3.0 21.0 96 ------- null} + -t 13.4311 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {3.0 21.0 96 ------- null} - -t 13.4311 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {3.0 21.0 96 ------- null} h -t 13.4311 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.4327 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 188 -a 0 -x {3.0 21.0 97 ------- null} + -t 13.4327 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 188 -a 0 -x {3.0 21.0 97 ------- null} - -t 13.4327 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 188 -a 0 -x {3.0 21.0 97 ------- null} h -t 13.4327 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 188 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.4343 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {3.0 21.0 98 ------- null} + -t 13.4343 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {3.0 21.0 98 ------- null} - -t 13.4343 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {3.0 21.0 98 ------- null} h -t 13.4343 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.4359 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 190 -a 0 -x {3.0 21.0 99 ------- null} + -t 13.4359 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 190 -a 0 -x {3.0 21.0 99 ------- null} - -t 13.4359 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 190 -a 0 -x {3.0 21.0 99 ------- null} h -t 13.4359 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 190 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.4375 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {3.0 21.0 100 ------- null} + -t 13.4375 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {3.0 21.0 100 ------- null} - -t 13.4375 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {3.0 21.0 100 ------- null} h -t 13.4375 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.4391 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 192 -a 0 -x {3.0 21.0 101 ------- null} + -t 13.4391 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 192 -a 0 -x {3.0 21.0 101 ------- null} - -t 13.4391 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 192 -a 0 -x {3.0 21.0 101 ------- null} h -t 13.4391 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 192 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.4407 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {3.0 21.0 102 ------- null} + -t 13.4407 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {3.0 21.0 102 ------- null} - -t 13.4407 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {3.0 21.0 102 ------- null} h -t 13.4407 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.4423 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 194 -a 0 -x {3.0 21.0 103 ------- null} + -t 13.4423 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 194 -a 0 -x {3.0 21.0 103 ------- null} - -t 13.4423 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 194 -a 0 -x {3.0 21.0 103 ------- null} h -t 13.4423 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 194 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.4439 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {3.0 21.0 104 ------- null} + -t 13.4439 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {3.0 21.0 104 ------- null} - -t 13.4439 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {3.0 21.0 104 ------- null} h -t 13.4439 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.4455 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 196 -a 0 -x {3.0 21.0 105 ------- null} + -t 13.4455 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 196 -a 0 -x {3.0 21.0 105 ------- null} - -t 13.4455 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 196 -a 0 -x {3.0 21.0 105 ------- null} h -t 13.4455 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 196 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.4471 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {3.0 21.0 106 ------- null} + -t 13.4471 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {3.0 21.0 106 ------- null} - -t 13.4471 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {3.0 21.0 106 ------- null} h -t 13.4471 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.4487 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 198 -a 0 -x {3.0 21.0 107 ------- null} + -t 13.4487 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 198 -a 0 -x {3.0 21.0 107 ------- null} - -t 13.4487 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 198 -a 0 -x {3.0 21.0 107 ------- null} h -t 13.4487 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 198 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.4503 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {3.0 21.0 108 ------- null} + -t 13.4503 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {3.0 21.0 108 ------- null} - -t 13.4503 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {3.0 21.0 108 ------- null} h -t 13.4503 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.4519 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 200 -a 0 -x {3.0 21.0 109 ------- null} + -t 13.4519 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 200 -a 0 -x {3.0 21.0 109 ------- null} - -t 13.4519 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 200 -a 0 -x {3.0 21.0 109 ------- null} h -t 13.4519 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 200 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.4535 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {3.0 21.0 110 ------- null} + -t 13.4535 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {3.0 21.0 110 ------- null} - -t 13.4535 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {3.0 21.0 110 ------- null} h -t 13.4535 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {3.0 21.0 -1 ------- null} r -t 13.7747 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {3.0 21.0 91 ------- null} + -t 13.7747 -s 21 -d 28 -p ack -e 40 -c 0 -i 202 -a 1 -x {21.0 3.0 91 ------- null} - -t 13.7747 -s 21 -d 28 -p ack -e 40 -c 0 -i 202 -a 1 -x {21.0 3.0 91 ------- null} h -t 13.7747 -s 21 -d 28 -p ack -e 40 -c 0 -i 202 -a 1 -x {21.0 3.0 -1 ------- null} r -t 13.7763 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {3.0 21.0 92 ------- null} + -t 13.7763 -s 21 -d 28 -p ack -e 40 -c 0 -i 203 -a 1 -x {21.0 3.0 92 ------- null} - -t 13.7763 -s 21 -d 28 -p ack -e 40 -c 0 -i 203 -a 1 -x {21.0 3.0 92 ------- null} h -t 13.7763 -s 21 -d 28 -p ack -e 40 -c 0 -i 203 -a 1 -x {21.0 3.0 -1 ------- null} r -t 13.7779 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 184 -a 0 -x {3.0 21.0 93 ------- null} + -t 13.7779 -s 21 -d 28 -p ack -e 40 -c 0 -i 204 -a 1 -x {21.0 3.0 93 ------- null} - -t 13.7779 -s 21 -d 28 -p ack -e 40 -c 0 -i 204 -a 1 -x {21.0 3.0 93 ------- null} h -t 13.7779 -s 21 -d 28 -p ack -e 40 -c 0 -i 204 -a 1 -x {21.0 3.0 -1 ------- null} r -t 13.7795 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {3.0 21.0 94 ------- null} + -t 13.7795 -s 21 -d 28 -p ack -e 40 -c 0 -i 205 -a 1 -x {21.0 3.0 94 ------- null} - -t 13.7795 -s 21 -d 28 -p ack -e 40 -c 0 -i 205 -a 1 -x {21.0 3.0 94 ------- null} h -t 13.7795 -s 21 -d 28 -p ack -e 40 -c 0 -i 205 -a 1 -x {21.0 3.0 -1 ------- null} r -t 13.7811 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 186 -a 0 -x {3.0 21.0 95 ------- null} + -t 13.7811 -s 21 -d 28 -p ack -e 40 -c 0 -i 206 -a 1 -x {21.0 3.0 95 ------- null} - -t 13.7811 -s 21 -d 28 -p ack -e 40 -c 0 -i 206 -a 1 -x {21.0 3.0 95 ------- null} h -t 13.7811 -s 21 -d 28 -p ack -e 40 -c 0 -i 206 -a 1 -x {21.0 3.0 -1 ------- null} r -t 13.7827 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {3.0 21.0 96 ------- null} + -t 13.7827 -s 21 -d 28 -p ack -e 40 -c 0 -i 207 -a 1 -x {21.0 3.0 96 ------- null} - -t 13.7827 -s 21 -d 28 -p ack -e 40 -c 0 -i 207 -a 1 -x {21.0 3.0 96 ------- null} h -t 13.7827 -s 21 -d 28 -p ack -e 40 -c 0 -i 207 -a 1 -x {21.0 3.0 -1 ------- null} r -t 13.7843 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 188 -a 0 -x {3.0 21.0 97 ------- null} + -t 13.7843 -s 21 -d 28 -p ack -e 40 -c 0 -i 208 -a 1 -x {21.0 3.0 97 ------- null} - -t 13.7843 -s 21 -d 28 -p ack -e 40 -c 0 -i 208 -a 1 -x {21.0 3.0 97 ------- null} h -t 13.7843 -s 21 -d 28 -p ack -e 40 -c 0 -i 208 -a 1 -x {21.0 3.0 -1 ------- null} r -t 13.7859 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {3.0 21.0 98 ------- null} + -t 13.7859 -s 21 -d 28 -p ack -e 40 -c 0 -i 209 -a 1 -x {21.0 3.0 98 ------- null} - -t 13.7859 -s 21 -d 28 -p ack -e 40 -c 0 -i 209 -a 1 -x {21.0 3.0 98 ------- null} h -t 13.7859 -s 21 -d 28 -p ack -e 40 -c 0 -i 209 -a 1 -x {21.0 3.0 -1 ------- null} r -t 13.7875 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 190 -a 0 -x {3.0 21.0 99 ------- null} + -t 13.7875 -s 21 -d 28 -p ack -e 40 -c 0 -i 210 -a 1 -x {21.0 3.0 99 ------- null} - -t 13.7875 -s 21 -d 28 -p ack -e 40 -c 0 -i 210 -a 1 -x {21.0 3.0 99 ------- null} h -t 13.7875 -s 21 -d 28 -p ack -e 40 -c 0 -i 210 -a 1 -x {21.0 3.0 -1 ------- null} r -t 13.7891 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {3.0 21.0 100 ------- null} + -t 13.7891 -s 21 -d 28 -p ack -e 40 -c 0 -i 211 -a 1 -x {21.0 3.0 100 ------- null} - -t 13.7891 -s 21 -d 28 -p ack -e 40 -c 0 -i 211 -a 1 -x {21.0 3.0 100 ------- null} h -t 13.7891 -s 21 -d 28 -p ack -e 40 -c 0 -i 211 -a 1 -x {21.0 3.0 -1 ------- null} r -t 13.7907 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 192 -a 0 -x {3.0 21.0 101 ------- null} + -t 13.7907 -s 21 -d 28 -p ack -e 40 -c 0 -i 212 -a 1 -x {21.0 3.0 101 ------- null} - -t 13.7907 -s 21 -d 28 -p ack -e 40 -c 0 -i 212 -a 1 -x {21.0 3.0 101 ------- null} h -t 13.7907 -s 21 -d 28 -p ack -e 40 -c 0 -i 212 -a 1 -x {21.0 3.0 -1 ------- null} r -t 13.7923 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {3.0 21.0 102 ------- null} + -t 13.7923 -s 21 -d 28 -p ack -e 40 -c 0 -i 213 -a 1 -x {21.0 3.0 102 ------- null} - -t 13.7923 -s 21 -d 28 -p ack -e 40 -c 0 -i 213 -a 1 -x {21.0 3.0 102 ------- null} h -t 13.7923 -s 21 -d 28 -p ack -e 40 -c 0 -i 213 -a 1 -x {21.0 3.0 -1 ------- null} r -t 13.7939 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 194 -a 0 -x {3.0 21.0 103 ------- null} + -t 13.7939 -s 21 -d 28 -p ack -e 40 -c 0 -i 214 -a 1 -x {21.0 3.0 103 ------- null} - -t 13.7939 -s 21 -d 28 -p ack -e 40 -c 0 -i 214 -a 1 -x {21.0 3.0 103 ------- null} h -t 13.7939 -s 21 -d 28 -p ack -e 40 -c 0 -i 214 -a 1 -x {21.0 3.0 -1 ------- null} r -t 13.7955 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {3.0 21.0 104 ------- null} + -t 13.7955 -s 21 -d 28 -p ack -e 40 -c 0 -i 215 -a 1 -x {21.0 3.0 104 ------- null} - -t 13.7955 -s 21 -d 28 -p ack -e 40 -c 0 -i 215 -a 1 -x {21.0 3.0 104 ------- null} h -t 13.7955 -s 21 -d 28 -p ack -e 40 -c 0 -i 215 -a 1 -x {21.0 3.0 -1 ------- null} r -t 13.7971 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 196 -a 0 -x {3.0 21.0 105 ------- null} + -t 13.7971 -s 21 -d 28 -p ack -e 40 -c 0 -i 216 -a 1 -x {21.0 3.0 105 ------- null} - -t 13.7971 -s 21 -d 28 -p ack -e 40 -c 0 -i 216 -a 1 -x {21.0 3.0 105 ------- null} h -t 13.7971 -s 21 -d 28 -p ack -e 40 -c 0 -i 216 -a 1 -x {21.0 3.0 -1 ------- null} r -t 13.7987 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {3.0 21.0 106 ------- null} + -t 13.7987 -s 21 -d 28 -p ack -e 40 -c 0 -i 217 -a 1 -x {21.0 3.0 106 ------- null} - -t 13.7987 -s 21 -d 28 -p ack -e 40 -c 0 -i 217 -a 1 -x {21.0 3.0 106 ------- null} h -t 13.7987 -s 21 -d 28 -p ack -e 40 -c 0 -i 217 -a 1 -x {21.0 3.0 -1 ------- null} r -t 13.8003 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 198 -a 0 -x {3.0 21.0 107 ------- null} + -t 13.8003 -s 21 -d 28 -p ack -e 40 -c 0 -i 218 -a 1 -x {21.0 3.0 107 ------- null} - -t 13.8003 -s 21 -d 28 -p ack -e 40 -c 0 -i 218 -a 1 -x {21.0 3.0 107 ------- null} h -t 13.8003 -s 21 -d 28 -p ack -e 40 -c 0 -i 218 -a 1 -x {21.0 3.0 -1 ------- null} r -t 13.8019 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {3.0 21.0 108 ------- null} + -t 13.8019 -s 21 -d 28 -p ack -e 40 -c 0 -i 219 -a 1 -x {21.0 3.0 108 ------- null} - -t 13.8019 -s 21 -d 28 -p ack -e 40 -c 0 -i 219 -a 1 -x {21.0 3.0 108 ------- null} h -t 13.8019 -s 21 -d 28 -p ack -e 40 -c 0 -i 219 -a 1 -x {21.0 3.0 -1 ------- null} r -t 13.8035 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 200 -a 0 -x {3.0 21.0 109 ------- null} + -t 13.8035 -s 21 -d 28 -p ack -e 40 -c 0 -i 220 -a 1 -x {21.0 3.0 109 ------- null} - -t 13.8035 -s 21 -d 28 -p ack -e 40 -c 0 -i 220 -a 1 -x {21.0 3.0 109 ------- null} h -t 13.8035 -s 21 -d 28 -p ack -e 40 -c 0 -i 220 -a 1 -x {21.0 3.0 -1 ------- null} r -t 13.8051 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {3.0 21.0 110 ------- null} + -t 13.8051 -s 21 -d 28 -p ack -e 40 -c 0 -i 221 -a 1 -x {21.0 3.0 110 ------- null} - -t 13.8051 -s 21 -d 28 -p ack -e 40 -c 0 -i 221 -a 1 -x {21.0 3.0 110 ------- null} h -t 13.8051 -s 21 -d 28 -p ack -e 40 -c 0 -i 221 -a 1 -x {21.0 3.0 -1 ------- null} r -t 14.1248 -s 21 -d 28 -p ack -e 40 -c 0 -i 202 -a 1 -x {21.0 3.0 91 ------- null} + -t 14.1248 -s 28 -d 1 -p ack -e 40 -c 0 -i 202 -a 1 -x {21.0 3.0 91 ------- null} - -t 14.1248 -s 28 -d 1 -p ack -e 40 -c 0 -i 202 -a 1 -x {21.0 3.0 91 ------- null} h -t 14.1248 -s 28 -d 1 -p ack -e 40 -c 0 -i 202 -a 1 -x {21.0 3.0 -1 ------- null} r -t 14.1264 -s 21 -d 28 -p ack -e 40 -c 0 -i 203 -a 1 -x {21.0 3.0 92 ------- null} + -t 14.1264 -s 28 -d 1 -p ack -e 40 -c 0 -i 203 -a 1 -x {21.0 3.0 92 ------- null} - -t 14.1264 -s 28 -d 1 -p ack -e 40 -c 0 -i 203 -a 1 -x {21.0 3.0 92 ------- null} h -t 14.1264 -s 28 -d 1 -p ack -e 40 -c 0 -i 203 -a 1 -x {21.0 3.0 -1 ------- null} r -t 14.128 -s 21 -d 28 -p ack -e 40 -c 0 -i 204 -a 1 -x {21.0 3.0 93 ------- null} + -t 14.128 -s 28 -d 1 -p ack -e 40 -c 0 -i 204 -a 1 -x {21.0 3.0 93 ------- null} - -t 14.128 -s 28 -d 1 -p ack -e 40 -c 0 -i 204 -a 1 -x {21.0 3.0 93 ------- null} h -t 14.128 -s 28 -d 1 -p ack -e 40 -c 0 -i 204 -a 1 -x {21.0 3.0 -1 ------- null} r -t 14.1296 -s 21 -d 28 -p ack -e 40 -c 0 -i 205 -a 1 -x {21.0 3.0 94 ------- null} + -t 14.1296 -s 28 -d 1 -p ack -e 40 -c 0 -i 205 -a 1 -x {21.0 3.0 94 ------- null} - -t 14.1296 -s 28 -d 1 -p ack -e 40 -c 0 -i 205 -a 1 -x {21.0 3.0 94 ------- null} h -t 14.1296 -s 28 -d 1 -p ack -e 40 -c 0 -i 205 -a 1 -x {21.0 3.0 -1 ------- null} r -t 14.1312 -s 21 -d 28 -p ack -e 40 -c 0 -i 206 -a 1 -x {21.0 3.0 95 ------- null} + -t 14.1312 -s 28 -d 1 -p ack -e 40 -c 0 -i 206 -a 1 -x {21.0 3.0 95 ------- null} - -t 14.1312 -s 28 -d 1 -p ack -e 40 -c 0 -i 206 -a 1 -x {21.0 3.0 95 ------- null} h -t 14.1312 -s 28 -d 1 -p ack -e 40 -c 0 -i 206 -a 1 -x {21.0 3.0 -1 ------- null} r -t 14.1328 -s 21 -d 28 -p ack -e 40 -c 0 -i 207 -a 1 -x {21.0 3.0 96 ------- null} + -t 14.1328 -s 28 -d 1 -p ack -e 40 -c 0 -i 207 -a 1 -x {21.0 3.0 96 ------- null} - -t 14.1328 -s 28 -d 1 -p ack -e 40 -c 0 -i 207 -a 1 -x {21.0 3.0 96 ------- null} h -t 14.1328 -s 28 -d 1 -p ack -e 40 -c 0 -i 207 -a 1 -x {21.0 3.0 -1 ------- null} r -t 14.1344 -s 21 -d 28 -p ack -e 40 -c 0 -i 208 -a 1 -x {21.0 3.0 97 ------- null} + -t 14.1344 -s 28 -d 1 -p ack -e 40 -c 0 -i 208 -a 1 -x {21.0 3.0 97 ------- null} - -t 14.1344 -s 28 -d 1 -p ack -e 40 -c 0 -i 208 -a 1 -x {21.0 3.0 97 ------- null} h -t 14.1344 -s 28 -d 1 -p ack -e 40 -c 0 -i 208 -a 1 -x {21.0 3.0 -1 ------- null} r -t 14.136 -s 21 -d 28 -p ack -e 40 -c 0 -i 209 -a 1 -x {21.0 3.0 98 ------- null} + -t 14.136 -s 28 -d 1 -p ack -e 40 -c 0 -i 209 -a 1 -x {21.0 3.0 98 ------- null} - -t 14.136 -s 28 -d 1 -p ack -e 40 -c 0 -i 209 -a 1 -x {21.0 3.0 98 ------- null} h -t 14.136 -s 28 -d 1 -p ack -e 40 -c 0 -i 209 -a 1 -x {21.0 3.0 -1 ------- null} r -t 14.1376 -s 21 -d 28 -p ack -e 40 -c 0 -i 210 -a 1 -x {21.0 3.0 99 ------- null} + -t 14.1376 -s 28 -d 1 -p ack -e 40 -c 0 -i 210 -a 1 -x {21.0 3.0 99 ------- null} - -t 14.1376 -s 28 -d 1 -p ack -e 40 -c 0 -i 210 -a 1 -x {21.0 3.0 99 ------- null} h -t 14.1376 -s 28 -d 1 -p ack -e 40 -c 0 -i 210 -a 1 -x {21.0 3.0 -1 ------- null} r -t 14.1392 -s 21 -d 28 -p ack -e 40 -c 0 -i 211 -a 1 -x {21.0 3.0 100 ------- null} + -t 14.1392 -s 28 -d 1 -p ack -e 40 -c 0 -i 211 -a 1 -x {21.0 3.0 100 ------- null} - -t 14.1392 -s 28 -d 1 -p ack -e 40 -c 0 -i 211 -a 1 -x {21.0 3.0 100 ------- null} h -t 14.1392 -s 28 -d 1 -p ack -e 40 -c 0 -i 211 -a 1 -x {21.0 3.0 -1 ------- null} r -t 14.1408 -s 21 -d 28 -p ack -e 40 -c 0 -i 212 -a 1 -x {21.0 3.0 101 ------- null} + -t 14.1408 -s 28 -d 1 -p ack -e 40 -c 0 -i 212 -a 1 -x {21.0 3.0 101 ------- null} - -t 14.1408 -s 28 -d 1 -p ack -e 40 -c 0 -i 212 -a 1 -x {21.0 3.0 101 ------- null} h -t 14.1408 -s 28 -d 1 -p ack -e 40 -c 0 -i 212 -a 1 -x {21.0 3.0 -1 ------- null} r -t 14.1424 -s 21 -d 28 -p ack -e 40 -c 0 -i 213 -a 1 -x {21.0 3.0 102 ------- null} + -t 14.1424 -s 28 -d 1 -p ack -e 40 -c 0 -i 213 -a 1 -x {21.0 3.0 102 ------- null} - -t 14.1424 -s 28 -d 1 -p ack -e 40 -c 0 -i 213 -a 1 -x {21.0 3.0 102 ------- null} h -t 14.1424 -s 28 -d 1 -p ack -e 40 -c 0 -i 213 -a 1 -x {21.0 3.0 -1 ------- null} r -t 14.144 -s 21 -d 28 -p ack -e 40 -c 0 -i 214 -a 1 -x {21.0 3.0 103 ------- null} + -t 14.144 -s 28 -d 1 -p ack -e 40 -c 0 -i 214 -a 1 -x {21.0 3.0 103 ------- null} - -t 14.144 -s 28 -d 1 -p ack -e 40 -c 0 -i 214 -a 1 -x {21.0 3.0 103 ------- null} h -t 14.144 -s 28 -d 1 -p ack -e 40 -c 0 -i 214 -a 1 -x {21.0 3.0 -1 ------- null} r -t 14.1456 -s 21 -d 28 -p ack -e 40 -c 0 -i 215 -a 1 -x {21.0 3.0 104 ------- null} + -t 14.1456 -s 28 -d 1 -p ack -e 40 -c 0 -i 215 -a 1 -x {21.0 3.0 104 ------- null} - -t 14.1456 -s 28 -d 1 -p ack -e 40 -c 0 -i 215 -a 1 -x {21.0 3.0 104 ------- null} h -t 14.1456 -s 28 -d 1 -p ack -e 40 -c 0 -i 215 -a 1 -x {21.0 3.0 -1 ------- null} r -t 14.1472 -s 21 -d 28 -p ack -e 40 -c 0 -i 216 -a 1 -x {21.0 3.0 105 ------- null} + -t 14.1472 -s 28 -d 1 -p ack -e 40 -c 0 -i 216 -a 1 -x {21.0 3.0 105 ------- null} - -t 14.1472 -s 28 -d 1 -p ack -e 40 -c 0 -i 216 -a 1 -x {21.0 3.0 105 ------- null} h -t 14.1472 -s 28 -d 1 -p ack -e 40 -c 0 -i 216 -a 1 -x {21.0 3.0 -1 ------- null} r -t 14.1488 -s 21 -d 28 -p ack -e 40 -c 0 -i 217 -a 1 -x {21.0 3.0 106 ------- null} + -t 14.1488 -s 28 -d 1 -p ack -e 40 -c 0 -i 217 -a 1 -x {21.0 3.0 106 ------- null} - -t 14.1488 -s 28 -d 1 -p ack -e 40 -c 0 -i 217 -a 1 -x {21.0 3.0 106 ------- null} h -t 14.1488 -s 28 -d 1 -p ack -e 40 -c 0 -i 217 -a 1 -x {21.0 3.0 -1 ------- null} r -t 14.1504 -s 21 -d 28 -p ack -e 40 -c 0 -i 218 -a 1 -x {21.0 3.0 107 ------- null} + -t 14.1504 -s 28 -d 1 -p ack -e 40 -c 0 -i 218 -a 1 -x {21.0 3.0 107 ------- null} - -t 14.1504 -s 28 -d 1 -p ack -e 40 -c 0 -i 218 -a 1 -x {21.0 3.0 107 ------- null} h -t 14.1504 -s 28 -d 1 -p ack -e 40 -c 0 -i 218 -a 1 -x {21.0 3.0 -1 ------- null} r -t 14.152 -s 21 -d 28 -p ack -e 40 -c 0 -i 219 -a 1 -x {21.0 3.0 108 ------- null} + -t 14.152 -s 28 -d 1 -p ack -e 40 -c 0 -i 219 -a 1 -x {21.0 3.0 108 ------- null} - -t 14.152 -s 28 -d 1 -p ack -e 40 -c 0 -i 219 -a 1 -x {21.0 3.0 108 ------- null} h -t 14.152 -s 28 -d 1 -p ack -e 40 -c 0 -i 219 -a 1 -x {21.0 3.0 -1 ------- null} r -t 14.1536 -s 21 -d 28 -p ack -e 40 -c 0 -i 220 -a 1 -x {21.0 3.0 109 ------- null} + -t 14.1536 -s 28 -d 1 -p ack -e 40 -c 0 -i 220 -a 1 -x {21.0 3.0 109 ------- null} - -t 14.1536 -s 28 -d 1 -p ack -e 40 -c 0 -i 220 -a 1 -x {21.0 3.0 109 ------- null} h -t 14.1536 -s 28 -d 1 -p ack -e 40 -c 0 -i 220 -a 1 -x {21.0 3.0 -1 ------- null} r -t 14.1552 -s 21 -d 28 -p ack -e 40 -c 0 -i 221 -a 1 -x {21.0 3.0 110 ------- null} + -t 14.1552 -s 28 -d 1 -p ack -e 40 -c 0 -i 221 -a 1 -x {21.0 3.0 110 ------- null} - -t 14.1552 -s 28 -d 1 -p ack -e 40 -c 0 -i 221 -a 1 -x {21.0 3.0 110 ------- null} h -t 14.1552 -s 28 -d 1 -p ack -e 40 -c 0 -i 221 -a 1 -x {21.0 3.0 -1 ------- null} r -t 14.4249 -s 28 -d 1 -p ack -e 40 -c 0 -i 202 -a 1 -x {21.0 3.0 91 ------- null} + -t 14.4249 -s 1 -d 3 -p ack -e 40 -c 0 -i 202 -a 1 -x {21.0 3.0 91 ------- null} - -t 14.4249 -s 1 -d 3 -p ack -e 40 -c 0 -i 202 -a 1 -x {21.0 3.0 91 ------- null} h -t 14.4249 -s 1 -d 3 -p ack -e 40 -c 0 -i 202 -a 1 -x {21.0 3.0 -1 ------- null} r -t 14.4265 -s 28 -d 1 -p ack -e 40 -c 0 -i 203 -a 1 -x {21.0 3.0 92 ------- null} + -t 14.4265 -s 1 -d 3 -p ack -e 40 -c 0 -i 203 -a 1 -x {21.0 3.0 92 ------- null} - -t 14.4265 -s 1 -d 3 -p ack -e 40 -c 0 -i 203 -a 1 -x {21.0 3.0 92 ------- null} h -t 14.4265 -s 1 -d 3 -p ack -e 40 -c 0 -i 203 -a 1 -x {21.0 3.0 -1 ------- null} r -t 14.4281 -s 28 -d 1 -p ack -e 40 -c 0 -i 204 -a 1 -x {21.0 3.0 93 ------- null} + -t 14.4281 -s 1 -d 3 -p ack -e 40 -c 0 -i 204 -a 1 -x {21.0 3.0 93 ------- null} - -t 14.4281 -s 1 -d 3 -p ack -e 40 -c 0 -i 204 -a 1 -x {21.0 3.0 93 ------- null} h -t 14.4281 -s 1 -d 3 -p ack -e 40 -c 0 -i 204 -a 1 -x {21.0 3.0 -1 ------- null} r -t 14.4297 -s 28 -d 1 -p ack -e 40 -c 0 -i 205 -a 1 -x {21.0 3.0 94 ------- null} + -t 14.4297 -s 1 -d 3 -p ack -e 40 -c 0 -i 205 -a 1 -x {21.0 3.0 94 ------- null} - -t 14.4297 -s 1 -d 3 -p ack -e 40 -c 0 -i 205 -a 1 -x {21.0 3.0 94 ------- null} h -t 14.4297 -s 1 -d 3 -p ack -e 40 -c 0 -i 205 -a 1 -x {21.0 3.0 -1 ------- null} r -t 14.4313 -s 28 -d 1 -p ack -e 40 -c 0 -i 206 -a 1 -x {21.0 3.0 95 ------- null} + -t 14.4313 -s 1 -d 3 -p ack -e 40 -c 0 -i 206 -a 1 -x {21.0 3.0 95 ------- null} - -t 14.4313 -s 1 -d 3 -p ack -e 40 -c 0 -i 206 -a 1 -x {21.0 3.0 95 ------- null} h -t 14.4313 -s 1 -d 3 -p ack -e 40 -c 0 -i 206 -a 1 -x {21.0 3.0 -1 ------- null} r -t 14.4329 -s 28 -d 1 -p ack -e 40 -c 0 -i 207 -a 1 -x {21.0 3.0 96 ------- null} + -t 14.4329 -s 1 -d 3 -p ack -e 40 -c 0 -i 207 -a 1 -x {21.0 3.0 96 ------- null} - -t 14.4329 -s 1 -d 3 -p ack -e 40 -c 0 -i 207 -a 1 -x {21.0 3.0 96 ------- null} h -t 14.4329 -s 1 -d 3 -p ack -e 40 -c 0 -i 207 -a 1 -x {21.0 3.0 -1 ------- null} r -t 14.4345 -s 28 -d 1 -p ack -e 40 -c 0 -i 208 -a 1 -x {21.0 3.0 97 ------- null} + -t 14.4345 -s 1 -d 3 -p ack -e 40 -c 0 -i 208 -a 1 -x {21.0 3.0 97 ------- null} - -t 14.4345 -s 1 -d 3 -p ack -e 40 -c 0 -i 208 -a 1 -x {21.0 3.0 97 ------- null} h -t 14.4345 -s 1 -d 3 -p ack -e 40 -c 0 -i 208 -a 1 -x {21.0 3.0 -1 ------- null} r -t 14.4361 -s 28 -d 1 -p ack -e 40 -c 0 -i 209 -a 1 -x {21.0 3.0 98 ------- null} + -t 14.4361 -s 1 -d 3 -p ack -e 40 -c 0 -i 209 -a 1 -x {21.0 3.0 98 ------- null} - -t 14.4361 -s 1 -d 3 -p ack -e 40 -c 0 -i 209 -a 1 -x {21.0 3.0 98 ------- null} h -t 14.4361 -s 1 -d 3 -p ack -e 40 -c 0 -i 209 -a 1 -x {21.0 3.0 -1 ------- null} r -t 14.4377 -s 28 -d 1 -p ack -e 40 -c 0 -i 210 -a 1 -x {21.0 3.0 99 ------- null} + -t 14.4377 -s 1 -d 3 -p ack -e 40 -c 0 -i 210 -a 1 -x {21.0 3.0 99 ------- null} - -t 14.4377 -s 1 -d 3 -p ack -e 40 -c 0 -i 210 -a 1 -x {21.0 3.0 99 ------- null} h -t 14.4377 -s 1 -d 3 -p ack -e 40 -c 0 -i 210 -a 1 -x {21.0 3.0 -1 ------- null} r -t 14.4393 -s 28 -d 1 -p ack -e 40 -c 0 -i 211 -a 1 -x {21.0 3.0 100 ------- null} + -t 14.4393 -s 1 -d 3 -p ack -e 40 -c 0 -i 211 -a 1 -x {21.0 3.0 100 ------- null} - -t 14.4393 -s 1 -d 3 -p ack -e 40 -c 0 -i 211 -a 1 -x {21.0 3.0 100 ------- null} h -t 14.4393 -s 1 -d 3 -p ack -e 40 -c 0 -i 211 -a 1 -x {21.0 3.0 -1 ------- null} r -t 14.4409 -s 28 -d 1 -p ack -e 40 -c 0 -i 212 -a 1 -x {21.0 3.0 101 ------- null} + -t 14.4409 -s 1 -d 3 -p ack -e 40 -c 0 -i 212 -a 1 -x {21.0 3.0 101 ------- null} - -t 14.4409 -s 1 -d 3 -p ack -e 40 -c 0 -i 212 -a 1 -x {21.0 3.0 101 ------- null} h -t 14.4409 -s 1 -d 3 -p ack -e 40 -c 0 -i 212 -a 1 -x {21.0 3.0 -1 ------- null} r -t 14.4425 -s 28 -d 1 -p ack -e 40 -c 0 -i 213 -a 1 -x {21.0 3.0 102 ------- null} + -t 14.4425 -s 1 -d 3 -p ack -e 40 -c 0 -i 213 -a 1 -x {21.0 3.0 102 ------- null} - -t 14.4425 -s 1 -d 3 -p ack -e 40 -c 0 -i 213 -a 1 -x {21.0 3.0 102 ------- null} h -t 14.4425 -s 1 -d 3 -p ack -e 40 -c 0 -i 213 -a 1 -x {21.0 3.0 -1 ------- null} r -t 14.4441 -s 28 -d 1 -p ack -e 40 -c 0 -i 214 -a 1 -x {21.0 3.0 103 ------- null} + -t 14.4441 -s 1 -d 3 -p ack -e 40 -c 0 -i 214 -a 1 -x {21.0 3.0 103 ------- null} - -t 14.4441 -s 1 -d 3 -p ack -e 40 -c 0 -i 214 -a 1 -x {21.0 3.0 103 ------- null} h -t 14.4441 -s 1 -d 3 -p ack -e 40 -c 0 -i 214 -a 1 -x {21.0 3.0 -1 ------- null} r -t 14.4457 -s 28 -d 1 -p ack -e 40 -c 0 -i 215 -a 1 -x {21.0 3.0 104 ------- null} + -t 14.4457 -s 1 -d 3 -p ack -e 40 -c 0 -i 215 -a 1 -x {21.0 3.0 104 ------- null} - -t 14.4457 -s 1 -d 3 -p ack -e 40 -c 0 -i 215 -a 1 -x {21.0 3.0 104 ------- null} h -t 14.4457 -s 1 -d 3 -p ack -e 40 -c 0 -i 215 -a 1 -x {21.0 3.0 -1 ------- null} r -t 14.4473 -s 28 -d 1 -p ack -e 40 -c 0 -i 216 -a 1 -x {21.0 3.0 105 ------- null} + -t 14.4473 -s 1 -d 3 -p ack -e 40 -c 0 -i 216 -a 1 -x {21.0 3.0 105 ------- null} - -t 14.4473 -s 1 -d 3 -p ack -e 40 -c 0 -i 216 -a 1 -x {21.0 3.0 105 ------- null} h -t 14.4473 -s 1 -d 3 -p ack -e 40 -c 0 -i 216 -a 1 -x {21.0 3.0 -1 ------- null} r -t 14.4489 -s 28 -d 1 -p ack -e 40 -c 0 -i 217 -a 1 -x {21.0 3.0 106 ------- null} + -t 14.4489 -s 1 -d 3 -p ack -e 40 -c 0 -i 217 -a 1 -x {21.0 3.0 106 ------- null} - -t 14.4489 -s 1 -d 3 -p ack -e 40 -c 0 -i 217 -a 1 -x {21.0 3.0 106 ------- null} h -t 14.4489 -s 1 -d 3 -p ack -e 40 -c 0 -i 217 -a 1 -x {21.0 3.0 -1 ------- null} r -t 14.4505 -s 28 -d 1 -p ack -e 40 -c 0 -i 218 -a 1 -x {21.0 3.0 107 ------- null} + -t 14.4505 -s 1 -d 3 -p ack -e 40 -c 0 -i 218 -a 1 -x {21.0 3.0 107 ------- null} - -t 14.4505 -s 1 -d 3 -p ack -e 40 -c 0 -i 218 -a 1 -x {21.0 3.0 107 ------- null} h -t 14.4505 -s 1 -d 3 -p ack -e 40 -c 0 -i 218 -a 1 -x {21.0 3.0 -1 ------- null} r -t 14.4521 -s 28 -d 1 -p ack -e 40 -c 0 -i 219 -a 1 -x {21.0 3.0 108 ------- null} + -t 14.4521 -s 1 -d 3 -p ack -e 40 -c 0 -i 219 -a 1 -x {21.0 3.0 108 ------- null} - -t 14.4521 -s 1 -d 3 -p ack -e 40 -c 0 -i 219 -a 1 -x {21.0 3.0 108 ------- null} h -t 14.4521 -s 1 -d 3 -p ack -e 40 -c 0 -i 219 -a 1 -x {21.0 3.0 -1 ------- null} r -t 14.4537 -s 28 -d 1 -p ack -e 40 -c 0 -i 220 -a 1 -x {21.0 3.0 109 ------- null} + -t 14.4537 -s 1 -d 3 -p ack -e 40 -c 0 -i 220 -a 1 -x {21.0 3.0 109 ------- null} - -t 14.4537 -s 1 -d 3 -p ack -e 40 -c 0 -i 220 -a 1 -x {21.0 3.0 109 ------- null} h -t 14.4537 -s 1 -d 3 -p ack -e 40 -c 0 -i 220 -a 1 -x {21.0 3.0 -1 ------- null} r -t 14.4553 -s 28 -d 1 -p ack -e 40 -c 0 -i 221 -a 1 -x {21.0 3.0 110 ------- null} + -t 14.4553 -s 1 -d 3 -p ack -e 40 -c 0 -i 221 -a 1 -x {21.0 3.0 110 ------- null} - -t 14.4553 -s 1 -d 3 -p ack -e 40 -c 0 -i 221 -a 1 -x {21.0 3.0 110 ------- null} h -t 14.4553 -s 1 -d 3 -p ack -e 40 -c 0 -i 221 -a 1 -x {21.0 3.0 -1 ------- null} r -t 14.5649 -s 1 -d 3 -p ack -e 40 -c 0 -i 202 -a 1 -x {21.0 3.0 91 ------- null} + -t 14.5649 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 222 -a 0 -x {3.0 21.0 111 ------- null} - -t 14.5649 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 222 -a 0 -x {3.0 21.0 111 ------- null} h -t 14.5649 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 222 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.5665 -s 1 -d 3 -p ack -e 40 -c 0 -i 203 -a 1 -x {21.0 3.0 92 ------- null} + -t 14.5665 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {3.0 21.0 112 ------- null} - -t 14.5665 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {3.0 21.0 112 ------- null} h -t 14.5665 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.5681 -s 1 -d 3 -p ack -e 40 -c 0 -i 204 -a 1 -x {21.0 3.0 93 ------- null} + -t 14.5681 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {3.0 21.0 113 ------- null} - -t 14.5681 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {3.0 21.0 113 ------- null} h -t 14.5681 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.5697 -s 1 -d 3 -p ack -e 40 -c 0 -i 205 -a 1 -x {21.0 3.0 94 ------- null} + -t 14.5697 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {3.0 21.0 114 ------- null} - -t 14.5697 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {3.0 21.0 114 ------- null} h -t 14.5697 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.5713 -s 1 -d 3 -p ack -e 40 -c 0 -i 206 -a 1 -x {21.0 3.0 95 ------- null} + -t 14.5713 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 226 -a 0 -x {3.0 21.0 115 ------- null} - -t 14.5713 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 226 -a 0 -x {3.0 21.0 115 ------- null} h -t 14.5713 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 226 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.5729 -s 1 -d 3 -p ack -e 40 -c 0 -i 207 -a 1 -x {21.0 3.0 96 ------- null} + -t 14.5729 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {3.0 21.0 116 ------- null} - -t 14.5729 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {3.0 21.0 116 ------- null} h -t 14.5729 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.5745 -s 1 -d 3 -p ack -e 40 -c 0 -i 208 -a 1 -x {21.0 3.0 97 ------- null} + -t 14.5745 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {3.0 21.0 117 ------- null} - -t 14.5745 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {3.0 21.0 117 ------- null} h -t 14.5745 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.5761 -s 1 -d 3 -p ack -e 40 -c 0 -i 209 -a 1 -x {21.0 3.0 98 ------- null} + -t 14.5761 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {3.0 21.0 118 ------- null} - -t 14.5761 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {3.0 21.0 118 ------- null} h -t 14.5761 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.5777 -s 1 -d 3 -p ack -e 40 -c 0 -i 210 -a 1 -x {21.0 3.0 99 ------- null} + -t 14.5777 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {3.0 21.0 119 ------- null} - -t 14.5777 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {3.0 21.0 119 ------- null} h -t 14.5777 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.5793 -s 1 -d 3 -p ack -e 40 -c 0 -i 211 -a 1 -x {21.0 3.0 100 ------- null} + -t 14.5793 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {3.0 21.0 120 ------- null} - -t 14.5793 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {3.0 21.0 120 ------- null} h -t 14.5793 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.5809 -s 1 -d 3 -p ack -e 40 -c 0 -i 212 -a 1 -x {21.0 3.0 101 ------- null} + -t 14.5809 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {3.0 21.0 121 ------- null} - -t 14.5809 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {3.0 21.0 121 ------- null} h -t 14.5809 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.5825 -s 1 -d 3 -p ack -e 40 -c 0 -i 213 -a 1 -x {21.0 3.0 102 ------- null} + -t 14.5825 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {3.0 21.0 122 ------- null} - -t 14.5825 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {3.0 21.0 122 ------- null} h -t 14.5825 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.5841 -s 1 -d 3 -p ack -e 40 -c 0 -i 214 -a 1 -x {21.0 3.0 103 ------- null} + -t 14.5841 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 234 -a 0 -x {3.0 21.0 123 ------- null} - -t 14.5841 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 234 -a 0 -x {3.0 21.0 123 ------- null} h -t 14.5841 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 234 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.5857 -s 1 -d 3 -p ack -e 40 -c 0 -i 215 -a 1 -x {21.0 3.0 104 ------- null} + -t 14.5857 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {3.0 21.0 124 ------- null} - -t 14.5857 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {3.0 21.0 124 ------- null} h -t 14.5857 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.5873 -s 1 -d 3 -p ack -e 40 -c 0 -i 216 -a 1 -x {21.0 3.0 105 ------- null} + -t 14.5873 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {3.0 21.0 125 ------- null} - -t 14.5873 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {3.0 21.0 125 ------- null} h -t 14.5873 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.5889 -s 1 -d 3 -p ack -e 40 -c 0 -i 217 -a 1 -x {21.0 3.0 106 ------- null} + -t 14.5889 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {3.0 21.0 126 ------- null} - -t 14.5889 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {3.0 21.0 126 ------- null} h -t 14.5889 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.5905 -s 1 -d 3 -p ack -e 40 -c 0 -i 218 -a 1 -x {21.0 3.0 107 ------- null} + -t 14.5905 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 238 -a 0 -x {3.0 21.0 127 ------- null} - -t 14.5905 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 238 -a 0 -x {3.0 21.0 127 ------- null} h -t 14.5905 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 238 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.5921 -s 1 -d 3 -p ack -e 40 -c 0 -i 219 -a 1 -x {21.0 3.0 108 ------- null} + -t 14.5921 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {3.0 21.0 128 ------- null} - -t 14.5921 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {3.0 21.0 128 ------- null} h -t 14.5921 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.5937 -s 1 -d 3 -p ack -e 40 -c 0 -i 220 -a 1 -x {21.0 3.0 109 ------- null} + -t 14.5937 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {3.0 21.0 129 ------- null} - -t 14.5937 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {3.0 21.0 129 ------- null} h -t 14.5937 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.5953 -s 1 -d 3 -p ack -e 40 -c 0 -i 221 -a 1 -x {21.0 3.0 110 ------- null} + -t 14.5953 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {3.0 21.0 130 ------- null} - -t 14.5953 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {3.0 21.0 130 ------- null} h -t 14.5953 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.7065 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 222 -a 0 -x {3.0 21.0 111 ------- null} + -t 14.7065 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 222 -a 0 -x {3.0 21.0 111 ------- null} - -t 14.7065 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 222 -a 0 -x {3.0 21.0 111 ------- null} h -t 14.7065 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 222 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.7081 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {3.0 21.0 112 ------- null} + -t 14.7081 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {3.0 21.0 112 ------- null} - -t 14.7081 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {3.0 21.0 112 ------- null} h -t 14.7081 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.7097 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {3.0 21.0 113 ------- null} + -t 14.7097 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {3.0 21.0 113 ------- null} - -t 14.7097 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {3.0 21.0 113 ------- null} h -t 14.7097 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.7113 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {3.0 21.0 114 ------- null} + -t 14.7113 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {3.0 21.0 114 ------- null} - -t 14.7113 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {3.0 21.0 114 ------- null} h -t 14.7113 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.7129 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 226 -a 0 -x {3.0 21.0 115 ------- null} + -t 14.7129 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 226 -a 0 -x {3.0 21.0 115 ------- null} - -t 14.7129 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 226 -a 0 -x {3.0 21.0 115 ------- null} h -t 14.7129 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 226 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.7145 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {3.0 21.0 116 ------- null} + -t 14.7145 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {3.0 21.0 116 ------- null} - -t 14.7145 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {3.0 21.0 116 ------- null} h -t 14.7145 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.7161 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {3.0 21.0 117 ------- null} + -t 14.7161 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {3.0 21.0 117 ------- null} - -t 14.7161 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {3.0 21.0 117 ------- null} h -t 14.7161 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.7177 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {3.0 21.0 118 ------- null} + -t 14.7177 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {3.0 21.0 118 ------- null} - -t 14.7177 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {3.0 21.0 118 ------- null} h -t 14.7177 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.7193 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {3.0 21.0 119 ------- null} + -t 14.7193 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {3.0 21.0 119 ------- null} - -t 14.7193 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {3.0 21.0 119 ------- null} h -t 14.7193 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.7209 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {3.0 21.0 120 ------- null} + -t 14.7209 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {3.0 21.0 120 ------- null} - -t 14.7209 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {3.0 21.0 120 ------- null} h -t 14.7209 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.7225 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {3.0 21.0 121 ------- null} + -t 14.7225 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {3.0 21.0 121 ------- null} - -t 14.7225 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {3.0 21.0 121 ------- null} h -t 14.7225 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.7241 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {3.0 21.0 122 ------- null} + -t 14.7241 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {3.0 21.0 122 ------- null} - -t 14.7241 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {3.0 21.0 122 ------- null} h -t 14.7241 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.7257 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 234 -a 0 -x {3.0 21.0 123 ------- null} + -t 14.7257 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 234 -a 0 -x {3.0 21.0 123 ------- null} - -t 14.7257 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 234 -a 0 -x {3.0 21.0 123 ------- null} h -t 14.7257 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 234 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.7273 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {3.0 21.0 124 ------- null} + -t 14.7273 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {3.0 21.0 124 ------- null} - -t 14.7273 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {3.0 21.0 124 ------- null} h -t 14.7273 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.7289 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {3.0 21.0 125 ------- null} + -t 14.7289 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {3.0 21.0 125 ------- null} - -t 14.7289 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {3.0 21.0 125 ------- null} h -t 14.7289 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.7305 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {3.0 21.0 126 ------- null} + -t 14.7305 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {3.0 21.0 126 ------- null} - -t 14.7305 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {3.0 21.0 126 ------- null} h -t 14.7305 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.7321 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 238 -a 0 -x {3.0 21.0 127 ------- null} + -t 14.7321 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 238 -a 0 -x {3.0 21.0 127 ------- null} - -t 14.7321 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 238 -a 0 -x {3.0 21.0 127 ------- null} h -t 14.7321 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 238 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.7337 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {3.0 21.0 128 ------- null} + -t 14.7337 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {3.0 21.0 128 ------- null} - -t 14.7337 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {3.0 21.0 128 ------- null} h -t 14.7337 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.7353 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {3.0 21.0 129 ------- null} + -t 14.7353 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {3.0 21.0 129 ------- null} - -t 14.7353 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {3.0 21.0 129 ------- null} h -t 14.7353 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {3.0 21.0 -1 ------- null} r -t 14.7369 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {3.0 21.0 130 ------- null} + -t 14.7369 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {3.0 21.0 130 ------- null} - -t 14.7369 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {3.0 21.0 130 ------- null} h -t 14.7369 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {3.0 21.0 -1 ------- null} r -t 15.0081 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 222 -a 0 -x {3.0 21.0 111 ------- null} + -t 15.0081 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 222 -a 0 -x {3.0 21.0 111 ------- null} - -t 15.0081 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 222 -a 0 -x {3.0 21.0 111 ------- null} h -t 15.0081 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 222 -a 0 -x {3.0 21.0 -1 ------- null} r -t 15.0097 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {3.0 21.0 112 ------- null} + -t 15.0097 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {3.0 21.0 112 ------- null} - -t 15.0097 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {3.0 21.0 112 ------- null} h -t 15.0097 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {3.0 21.0 -1 ------- null} r -t 15.0113 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {3.0 21.0 113 ------- null} + -t 15.0113 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {3.0 21.0 113 ------- null} - -t 15.0113 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {3.0 21.0 113 ------- null} h -t 15.0113 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {3.0 21.0 -1 ------- null} r -t 15.0129 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {3.0 21.0 114 ------- null} + -t 15.0129 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {3.0 21.0 114 ------- null} - -t 15.0129 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {3.0 21.0 114 ------- null} h -t 15.0129 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {3.0 21.0 -1 ------- null} r -t 15.0145 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 226 -a 0 -x {3.0 21.0 115 ------- null} + -t 15.0145 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 226 -a 0 -x {3.0 21.0 115 ------- null} - -t 15.0145 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 226 -a 0 -x {3.0 21.0 115 ------- null} h -t 15.0145 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 226 -a 0 -x {3.0 21.0 -1 ------- null} r -t 15.0161 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {3.0 21.0 116 ------- null} + -t 15.0161 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {3.0 21.0 116 ------- null} - -t 15.0161 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {3.0 21.0 116 ------- null} h -t 15.0161 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {3.0 21.0 -1 ------- null} r -t 15.0177 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {3.0 21.0 117 ------- null} + -t 15.0177 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {3.0 21.0 117 ------- null} - -t 15.0177 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {3.0 21.0 117 ------- null} h -t 15.0177 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {3.0 21.0 -1 ------- null} r -t 15.0193 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {3.0 21.0 118 ------- null} + -t 15.0193 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {3.0 21.0 118 ------- null} - -t 15.0193 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {3.0 21.0 118 ------- null} h -t 15.0193 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {3.0 21.0 -1 ------- null} r -t 15.0209 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {3.0 21.0 119 ------- null} + -t 15.0209 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {3.0 21.0 119 ------- null} - -t 15.0209 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {3.0 21.0 119 ------- null} h -t 15.0209 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {3.0 21.0 -1 ------- null} r -t 15.0225 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {3.0 21.0 120 ------- null} + -t 15.0225 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {3.0 21.0 120 ------- null} - -t 15.0225 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {3.0 21.0 120 ------- null} h -t 15.0225 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {3.0 21.0 -1 ------- null} r -t 15.0241 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {3.0 21.0 121 ------- null} + -t 15.0241 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {3.0 21.0 121 ------- null} - -t 15.0241 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {3.0 21.0 121 ------- null} h -t 15.0241 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {3.0 21.0 -1 ------- null} r -t 15.0257 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {3.0 21.0 122 ------- null} + -t 15.0257 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {3.0 21.0 122 ------- null} - -t 15.0257 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {3.0 21.0 122 ------- null} h -t 15.0257 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {3.0 21.0 -1 ------- null} r -t 15.0273 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 234 -a 0 -x {3.0 21.0 123 ------- null} + -t 15.0273 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 234 -a 0 -x {3.0 21.0 123 ------- null} - -t 15.0273 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 234 -a 0 -x {3.0 21.0 123 ------- null} h -t 15.0273 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 234 -a 0 -x {3.0 21.0 -1 ------- null} r -t 15.0289 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {3.0 21.0 124 ------- null} + -t 15.0289 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {3.0 21.0 124 ------- null} - -t 15.0289 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {3.0 21.0 124 ------- null} h -t 15.0289 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {3.0 21.0 -1 ------- null} r -t 15.0305 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {3.0 21.0 125 ------- null} + -t 15.0305 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {3.0 21.0 125 ------- null} - -t 15.0305 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {3.0 21.0 125 ------- null} h -t 15.0305 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {3.0 21.0 -1 ------- null} r -t 15.0321 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {3.0 21.0 126 ------- null} + -t 15.0321 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {3.0 21.0 126 ------- null} - -t 15.0321 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {3.0 21.0 126 ------- null} h -t 15.0321 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {3.0 21.0 -1 ------- null} r -t 15.0337 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 238 -a 0 -x {3.0 21.0 127 ------- null} + -t 15.0337 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 238 -a 0 -x {3.0 21.0 127 ------- null} - -t 15.0337 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 238 -a 0 -x {3.0 21.0 127 ------- null} h -t 15.0337 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 238 -a 0 -x {3.0 21.0 -1 ------- null} r -t 15.0353 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {3.0 21.0 128 ------- null} + -t 15.0353 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {3.0 21.0 128 ------- null} - -t 15.0353 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {3.0 21.0 128 ------- null} h -t 15.0353 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {3.0 21.0 -1 ------- null} r -t 15.0369 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {3.0 21.0 129 ------- null} + -t 15.0369 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {3.0 21.0 129 ------- null} - -t 15.0369 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {3.0 21.0 129 ------- null} h -t 15.0369 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {3.0 21.0 -1 ------- null} r -t 15.0385 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {3.0 21.0 130 ------- null} + -t 15.0385 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {3.0 21.0 130 ------- null} - -t 15.0385 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {3.0 21.0 130 ------- null} h -t 15.0385 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {3.0 21.0 -1 ------- null} r -t 15.3597 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 222 -a 0 -x {3.0 21.0 111 ------- null} + -t 15.3597 -s 21 -d 28 -p ack -e 40 -c 0 -i 242 -a 1 -x {21.0 3.0 111 ------- null} - -t 15.3597 -s 21 -d 28 -p ack -e 40 -c 0 -i 242 -a 1 -x {21.0 3.0 111 ------- null} h -t 15.3597 -s 21 -d 28 -p ack -e 40 -c 0 -i 242 -a 1 -x {21.0 3.0 -1 ------- null} r -t 15.3613 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {3.0 21.0 112 ------- null} + -t 15.3613 -s 21 -d 28 -p ack -e 40 -c 0 -i 243 -a 1 -x {21.0 3.0 112 ------- null} - -t 15.3613 -s 21 -d 28 -p ack -e 40 -c 0 -i 243 -a 1 -x {21.0 3.0 112 ------- null} h -t 15.3613 -s 21 -d 28 -p ack -e 40 -c 0 -i 243 -a 1 -x {21.0 3.0 -1 ------- null} r -t 15.3629 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {3.0 21.0 113 ------- null} + -t 15.3629 -s 21 -d 28 -p ack -e 40 -c 0 -i 244 -a 1 -x {21.0 3.0 113 ------- null} - -t 15.3629 -s 21 -d 28 -p ack -e 40 -c 0 -i 244 -a 1 -x {21.0 3.0 113 ------- null} h -t 15.3629 -s 21 -d 28 -p ack -e 40 -c 0 -i 244 -a 1 -x {21.0 3.0 -1 ------- null} r -t 15.3645 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {3.0 21.0 114 ------- null} + -t 15.3645 -s 21 -d 28 -p ack -e 40 -c 0 -i 245 -a 1 -x {21.0 3.0 114 ------- null} - -t 15.3645 -s 21 -d 28 -p ack -e 40 -c 0 -i 245 -a 1 -x {21.0 3.0 114 ------- null} h -t 15.3645 -s 21 -d 28 -p ack -e 40 -c 0 -i 245 -a 1 -x {21.0 3.0 -1 ------- null} r -t 15.3661 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 226 -a 0 -x {3.0 21.0 115 ------- null} + -t 15.3661 -s 21 -d 28 -p ack -e 40 -c 0 -i 246 -a 1 -x {21.0 3.0 115 ------- null} - -t 15.3661 -s 21 -d 28 -p ack -e 40 -c 0 -i 246 -a 1 -x {21.0 3.0 115 ------- null} h -t 15.3661 -s 21 -d 28 -p ack -e 40 -c 0 -i 246 -a 1 -x {21.0 3.0 -1 ------- null} r -t 15.3677 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {3.0 21.0 116 ------- null} + -t 15.3677 -s 21 -d 28 -p ack -e 40 -c 0 -i 247 -a 1 -x {21.0 3.0 116 ------- null} - -t 15.3677 -s 21 -d 28 -p ack -e 40 -c 0 -i 247 -a 1 -x {21.0 3.0 116 ------- null} h -t 15.3677 -s 21 -d 28 -p ack -e 40 -c 0 -i 247 -a 1 -x {21.0 3.0 -1 ------- null} r -t 15.3693 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {3.0 21.0 117 ------- null} + -t 15.3693 -s 21 -d 28 -p ack -e 40 -c 0 -i 248 -a 1 -x {21.0 3.0 117 ------- null} - -t 15.3693 -s 21 -d 28 -p ack -e 40 -c 0 -i 248 -a 1 -x {21.0 3.0 117 ------- null} h -t 15.3693 -s 21 -d 28 -p ack -e 40 -c 0 -i 248 -a 1 -x {21.0 3.0 -1 ------- null} r -t 15.3709 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {3.0 21.0 118 ------- null} + -t 15.3709 -s 21 -d 28 -p ack -e 40 -c 0 -i 249 -a 1 -x {21.0 3.0 118 ------- null} - -t 15.3709 -s 21 -d 28 -p ack -e 40 -c 0 -i 249 -a 1 -x {21.0 3.0 118 ------- null} h -t 15.3709 -s 21 -d 28 -p ack -e 40 -c 0 -i 249 -a 1 -x {21.0 3.0 -1 ------- null} r -t 15.3725 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {3.0 21.0 119 ------- null} + -t 15.3725 -s 21 -d 28 -p ack -e 40 -c 0 -i 250 -a 1 -x {21.0 3.0 119 ------- null} - -t 15.3725 -s 21 -d 28 -p ack -e 40 -c 0 -i 250 -a 1 -x {21.0 3.0 119 ------- null} h -t 15.3725 -s 21 -d 28 -p ack -e 40 -c 0 -i 250 -a 1 -x {21.0 3.0 -1 ------- null} r -t 15.3741 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {3.0 21.0 120 ------- null} + -t 15.3741 -s 21 -d 28 -p ack -e 40 -c 0 -i 251 -a 1 -x {21.0 3.0 120 ------- null} - -t 15.3741 -s 21 -d 28 -p ack -e 40 -c 0 -i 251 -a 1 -x {21.0 3.0 120 ------- null} h -t 15.3741 -s 21 -d 28 -p ack -e 40 -c 0 -i 251 -a 1 -x {21.0 3.0 -1 ------- null} r -t 15.3757 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {3.0 21.0 121 ------- null} + -t 15.3757 -s 21 -d 28 -p ack -e 40 -c 0 -i 252 -a 1 -x {21.0 3.0 121 ------- null} - -t 15.3757 -s 21 -d 28 -p ack -e 40 -c 0 -i 252 -a 1 -x {21.0 3.0 121 ------- null} h -t 15.3757 -s 21 -d 28 -p ack -e 40 -c 0 -i 252 -a 1 -x {21.0 3.0 -1 ------- null} r -t 15.3773 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {3.0 21.0 122 ------- null} + -t 15.3773 -s 21 -d 28 -p ack -e 40 -c 0 -i 253 -a 1 -x {21.0 3.0 122 ------- null} - -t 15.3773 -s 21 -d 28 -p ack -e 40 -c 0 -i 253 -a 1 -x {21.0 3.0 122 ------- null} h -t 15.3773 -s 21 -d 28 -p ack -e 40 -c 0 -i 253 -a 1 -x {21.0 3.0 -1 ------- null} r -t 15.3789 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 234 -a 0 -x {3.0 21.0 123 ------- null} + -t 15.3789 -s 21 -d 28 -p ack -e 40 -c 0 -i 254 -a 1 -x {21.0 3.0 123 ------- null} - -t 15.3789 -s 21 -d 28 -p ack -e 40 -c 0 -i 254 -a 1 -x {21.0 3.0 123 ------- null} h -t 15.3789 -s 21 -d 28 -p ack -e 40 -c 0 -i 254 -a 1 -x {21.0 3.0 -1 ------- null} r -t 15.3805 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {3.0 21.0 124 ------- null} + -t 15.3805 -s 21 -d 28 -p ack -e 40 -c 0 -i 255 -a 1 -x {21.0 3.0 124 ------- null} - -t 15.3805 -s 21 -d 28 -p ack -e 40 -c 0 -i 255 -a 1 -x {21.0 3.0 124 ------- null} h -t 15.3805 -s 21 -d 28 -p ack -e 40 -c 0 -i 255 -a 1 -x {21.0 3.0 -1 ------- null} r -t 15.3821 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {3.0 21.0 125 ------- null} + -t 15.3821 -s 21 -d 28 -p ack -e 40 -c 0 -i 256 -a 1 -x {21.0 3.0 125 ------- null} - -t 15.3821 -s 21 -d 28 -p ack -e 40 -c 0 -i 256 -a 1 -x {21.0 3.0 125 ------- null} h -t 15.3821 -s 21 -d 28 -p ack -e 40 -c 0 -i 256 -a 1 -x {21.0 3.0 -1 ------- null} r -t 15.3837 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {3.0 21.0 126 ------- null} + -t 15.3837 -s 21 -d 28 -p ack -e 40 -c 0 -i 257 -a 1 -x {21.0 3.0 126 ------- null} - -t 15.3837 -s 21 -d 28 -p ack -e 40 -c 0 -i 257 -a 1 -x {21.0 3.0 126 ------- null} h -t 15.3837 -s 21 -d 28 -p ack -e 40 -c 0 -i 257 -a 1 -x {21.0 3.0 -1 ------- null} r -t 15.3853 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 238 -a 0 -x {3.0 21.0 127 ------- null} + -t 15.3853 -s 21 -d 28 -p ack -e 40 -c 0 -i 258 -a 1 -x {21.0 3.0 127 ------- null} - -t 15.3853 -s 21 -d 28 -p ack -e 40 -c 0 -i 258 -a 1 -x {21.0 3.0 127 ------- null} h -t 15.3853 -s 21 -d 28 -p ack -e 40 -c 0 -i 258 -a 1 -x {21.0 3.0 -1 ------- null} r -t 15.3869 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {3.0 21.0 128 ------- null} + -t 15.3869 -s 21 -d 28 -p ack -e 40 -c 0 -i 259 -a 1 -x {21.0 3.0 128 ------- null} - -t 15.3869 -s 21 -d 28 -p ack -e 40 -c 0 -i 259 -a 1 -x {21.0 3.0 128 ------- null} h -t 15.3869 -s 21 -d 28 -p ack -e 40 -c 0 -i 259 -a 1 -x {21.0 3.0 -1 ------- null} r -t 15.3885 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {3.0 21.0 129 ------- null} + -t 15.3885 -s 21 -d 28 -p ack -e 40 -c 0 -i 260 -a 1 -x {21.0 3.0 129 ------- null} - -t 15.3885 -s 21 -d 28 -p ack -e 40 -c 0 -i 260 -a 1 -x {21.0 3.0 129 ------- null} h -t 15.3885 -s 21 -d 28 -p ack -e 40 -c 0 -i 260 -a 1 -x {21.0 3.0 -1 ------- null} r -t 15.3901 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {3.0 21.0 130 ------- null} + -t 15.3901 -s 21 -d 28 -p ack -e 40 -c 0 -i 261 -a 1 -x {21.0 3.0 130 ------- null} - -t 15.3901 -s 21 -d 28 -p ack -e 40 -c 0 -i 261 -a 1 -x {21.0 3.0 130 ------- null} h -t 15.3901 -s 21 -d 28 -p ack -e 40 -c 0 -i 261 -a 1 -x {21.0 3.0 -1 ------- null} r -t 15.7098 -s 21 -d 28 -p ack -e 40 -c 0 -i 242 -a 1 -x {21.0 3.0 111 ------- null} + -t 15.7098 -s 28 -d 1 -p ack -e 40 -c 0 -i 242 -a 1 -x {21.0 3.0 111 ------- null} - -t 15.7098 -s 28 -d 1 -p ack -e 40 -c 0 -i 242 -a 1 -x {21.0 3.0 111 ------- null} h -t 15.7098 -s 28 -d 1 -p ack -e 40 -c 0 -i 242 -a 1 -x {21.0 3.0 -1 ------- null} r -t 15.7114 -s 21 -d 28 -p ack -e 40 -c 0 -i 243 -a 1 -x {21.0 3.0 112 ------- null} + -t 15.7114 -s 28 -d 1 -p ack -e 40 -c 0 -i 243 -a 1 -x {21.0 3.0 112 ------- null} - -t 15.7114 -s 28 -d 1 -p ack -e 40 -c 0 -i 243 -a 1 -x {21.0 3.0 112 ------- null} h -t 15.7114 -s 28 -d 1 -p ack -e 40 -c 0 -i 243 -a 1 -x {21.0 3.0 -1 ------- null} r -t 15.713 -s 21 -d 28 -p ack -e 40 -c 0 -i 244 -a 1 -x {21.0 3.0 113 ------- null} + -t 15.713 -s 28 -d 1 -p ack -e 40 -c 0 -i 244 -a 1 -x {21.0 3.0 113 ------- null} - -t 15.713 -s 28 -d 1 -p ack -e 40 -c 0 -i 244 -a 1 -x {21.0 3.0 113 ------- null} h -t 15.713 -s 28 -d 1 -p ack -e 40 -c 0 -i 244 -a 1 -x {21.0 3.0 -1 ------- null} r -t 15.7146 -s 21 -d 28 -p ack -e 40 -c 0 -i 245 -a 1 -x {21.0 3.0 114 ------- null} + -t 15.7146 -s 28 -d 1 -p ack -e 40 -c 0 -i 245 -a 1 -x {21.0 3.0 114 ------- null} - -t 15.7146 -s 28 -d 1 -p ack -e 40 -c 0 -i 245 -a 1 -x {21.0 3.0 114 ------- null} h -t 15.7146 -s 28 -d 1 -p ack -e 40 -c 0 -i 245 -a 1 -x {21.0 3.0 -1 ------- null} r -t 15.7162 -s 21 -d 28 -p ack -e 40 -c 0 -i 246 -a 1 -x {21.0 3.0 115 ------- null} + -t 15.7162 -s 28 -d 1 -p ack -e 40 -c 0 -i 246 -a 1 -x {21.0 3.0 115 ------- null} - -t 15.7162 -s 28 -d 1 -p ack -e 40 -c 0 -i 246 -a 1 -x {21.0 3.0 115 ------- null} h -t 15.7162 -s 28 -d 1 -p ack -e 40 -c 0 -i 246 -a 1 -x {21.0 3.0 -1 ------- null} r -t 15.7178 -s 21 -d 28 -p ack -e 40 -c 0 -i 247 -a 1 -x {21.0 3.0 116 ------- null} + -t 15.7178 -s 28 -d 1 -p ack -e 40 -c 0 -i 247 -a 1 -x {21.0 3.0 116 ------- null} - -t 15.7178 -s 28 -d 1 -p ack -e 40 -c 0 -i 247 -a 1 -x {21.0 3.0 116 ------- null} h -t 15.7178 -s 28 -d 1 -p ack -e 40 -c 0 -i 247 -a 1 -x {21.0 3.0 -1 ------- null} r -t 15.7194 -s 21 -d 28 -p ack -e 40 -c 0 -i 248 -a 1 -x {21.0 3.0 117 ------- null} + -t 15.7194 -s 28 -d 1 -p ack -e 40 -c 0 -i 248 -a 1 -x {21.0 3.0 117 ------- null} - -t 15.7194 -s 28 -d 1 -p ack -e 40 -c 0 -i 248 -a 1 -x {21.0 3.0 117 ------- null} h -t 15.7194 -s 28 -d 1 -p ack -e 40 -c 0 -i 248 -a 1 -x {21.0 3.0 -1 ------- null} r -t 15.721 -s 21 -d 28 -p ack -e 40 -c 0 -i 249 -a 1 -x {21.0 3.0 118 ------- null} + -t 15.721 -s 28 -d 1 -p ack -e 40 -c 0 -i 249 -a 1 -x {21.0 3.0 118 ------- null} - -t 15.721 -s 28 -d 1 -p ack -e 40 -c 0 -i 249 -a 1 -x {21.0 3.0 118 ------- null} h -t 15.721 -s 28 -d 1 -p ack -e 40 -c 0 -i 249 -a 1 -x {21.0 3.0 -1 ------- null} r -t 15.7226 -s 21 -d 28 -p ack -e 40 -c 0 -i 250 -a 1 -x {21.0 3.0 119 ------- null} + -t 15.7226 -s 28 -d 1 -p ack -e 40 -c 0 -i 250 -a 1 -x {21.0 3.0 119 ------- null} - -t 15.7226 -s 28 -d 1 -p ack -e 40 -c 0 -i 250 -a 1 -x {21.0 3.0 119 ------- null} h -t 15.7226 -s 28 -d 1 -p ack -e 40 -c 0 -i 250 -a 1 -x {21.0 3.0 -1 ------- null} r -t 15.7242 -s 21 -d 28 -p ack -e 40 -c 0 -i 251 -a 1 -x {21.0 3.0 120 ------- null} + -t 15.7242 -s 28 -d 1 -p ack -e 40 -c 0 -i 251 -a 1 -x {21.0 3.0 120 ------- null} - -t 15.7242 -s 28 -d 1 -p ack -e 40 -c 0 -i 251 -a 1 -x {21.0 3.0 120 ------- null} h -t 15.7242 -s 28 -d 1 -p ack -e 40 -c 0 -i 251 -a 1 -x {21.0 3.0 -1 ------- null} r -t 15.7258 -s 21 -d 28 -p ack -e 40 -c 0 -i 252 -a 1 -x {21.0 3.0 121 ------- null} + -t 15.7258 -s 28 -d 1 -p ack -e 40 -c 0 -i 252 -a 1 -x {21.0 3.0 121 ------- null} - -t 15.7258 -s 28 -d 1 -p ack -e 40 -c 0 -i 252 -a 1 -x {21.0 3.0 121 ------- null} h -t 15.7258 -s 28 -d 1 -p ack -e 40 -c 0 -i 252 -a 1 -x {21.0 3.0 -1 ------- null} r -t 15.7274 -s 21 -d 28 -p ack -e 40 -c 0 -i 253 -a 1 -x {21.0 3.0 122 ------- null} + -t 15.7274 -s 28 -d 1 -p ack -e 40 -c 0 -i 253 -a 1 -x {21.0 3.0 122 ------- null} - -t 15.7274 -s 28 -d 1 -p ack -e 40 -c 0 -i 253 -a 1 -x {21.0 3.0 122 ------- null} h -t 15.7274 -s 28 -d 1 -p ack -e 40 -c 0 -i 253 -a 1 -x {21.0 3.0 -1 ------- null} r -t 15.729 -s 21 -d 28 -p ack -e 40 -c 0 -i 254 -a 1 -x {21.0 3.0 123 ------- null} + -t 15.729 -s 28 -d 1 -p ack -e 40 -c 0 -i 254 -a 1 -x {21.0 3.0 123 ------- null} - -t 15.729 -s 28 -d 1 -p ack -e 40 -c 0 -i 254 -a 1 -x {21.0 3.0 123 ------- null} h -t 15.729 -s 28 -d 1 -p ack -e 40 -c 0 -i 254 -a 1 -x {21.0 3.0 -1 ------- null} r -t 15.7306 -s 21 -d 28 -p ack -e 40 -c 0 -i 255 -a 1 -x {21.0 3.0 124 ------- null} + -t 15.7306 -s 28 -d 1 -p ack -e 40 -c 0 -i 255 -a 1 -x {21.0 3.0 124 ------- null} - -t 15.7306 -s 28 -d 1 -p ack -e 40 -c 0 -i 255 -a 1 -x {21.0 3.0 124 ------- null} h -t 15.7306 -s 28 -d 1 -p ack -e 40 -c 0 -i 255 -a 1 -x {21.0 3.0 -1 ------- null} r -t 15.7322 -s 21 -d 28 -p ack -e 40 -c 0 -i 256 -a 1 -x {21.0 3.0 125 ------- null} + -t 15.7322 -s 28 -d 1 -p ack -e 40 -c 0 -i 256 -a 1 -x {21.0 3.0 125 ------- null} - -t 15.7322 -s 28 -d 1 -p ack -e 40 -c 0 -i 256 -a 1 -x {21.0 3.0 125 ------- null} h -t 15.7322 -s 28 -d 1 -p ack -e 40 -c 0 -i 256 -a 1 -x {21.0 3.0 -1 ------- null} r -t 15.7338 -s 21 -d 28 -p ack -e 40 -c 0 -i 257 -a 1 -x {21.0 3.0 126 ------- null} + -t 15.7338 -s 28 -d 1 -p ack -e 40 -c 0 -i 257 -a 1 -x {21.0 3.0 126 ------- null} - -t 15.7338 -s 28 -d 1 -p ack -e 40 -c 0 -i 257 -a 1 -x {21.0 3.0 126 ------- null} h -t 15.7338 -s 28 -d 1 -p ack -e 40 -c 0 -i 257 -a 1 -x {21.0 3.0 -1 ------- null} r -t 15.7354 -s 21 -d 28 -p ack -e 40 -c 0 -i 258 -a 1 -x {21.0 3.0 127 ------- null} + -t 15.7354 -s 28 -d 1 -p ack -e 40 -c 0 -i 258 -a 1 -x {21.0 3.0 127 ------- null} - -t 15.7354 -s 28 -d 1 -p ack -e 40 -c 0 -i 258 -a 1 -x {21.0 3.0 127 ------- null} h -t 15.7354 -s 28 -d 1 -p ack -e 40 -c 0 -i 258 -a 1 -x {21.0 3.0 -1 ------- null} r -t 15.737 -s 21 -d 28 -p ack -e 40 -c 0 -i 259 -a 1 -x {21.0 3.0 128 ------- null} + -t 15.737 -s 28 -d 1 -p ack -e 40 -c 0 -i 259 -a 1 -x {21.0 3.0 128 ------- null} - -t 15.737 -s 28 -d 1 -p ack -e 40 -c 0 -i 259 -a 1 -x {21.0 3.0 128 ------- null} h -t 15.737 -s 28 -d 1 -p ack -e 40 -c 0 -i 259 -a 1 -x {21.0 3.0 -1 ------- null} r -t 15.7386 -s 21 -d 28 -p ack -e 40 -c 0 -i 260 -a 1 -x {21.0 3.0 129 ------- null} + -t 15.7386 -s 28 -d 1 -p ack -e 40 -c 0 -i 260 -a 1 -x {21.0 3.0 129 ------- null} - -t 15.7386 -s 28 -d 1 -p ack -e 40 -c 0 -i 260 -a 1 -x {21.0 3.0 129 ------- null} h -t 15.7386 -s 28 -d 1 -p ack -e 40 -c 0 -i 260 -a 1 -x {21.0 3.0 -1 ------- null} r -t 15.7402 -s 21 -d 28 -p ack -e 40 -c 0 -i 261 -a 1 -x {21.0 3.0 130 ------- null} + -t 15.7402 -s 28 -d 1 -p ack -e 40 -c 0 -i 261 -a 1 -x {21.0 3.0 130 ------- null} - -t 15.7402 -s 28 -d 1 -p ack -e 40 -c 0 -i 261 -a 1 -x {21.0 3.0 130 ------- null} h -t 15.7402 -s 28 -d 1 -p ack -e 40 -c 0 -i 261 -a 1 -x {21.0 3.0 -1 ------- null} r -t 16.0099 -s 28 -d 1 -p ack -e 40 -c 0 -i 242 -a 1 -x {21.0 3.0 111 ------- null} + -t 16.0099 -s 1 -d 3 -p ack -e 40 -c 0 -i 242 -a 1 -x {21.0 3.0 111 ------- null} - -t 16.0099 -s 1 -d 3 -p ack -e 40 -c 0 -i 242 -a 1 -x {21.0 3.0 111 ------- null} h -t 16.0099 -s 1 -d 3 -p ack -e 40 -c 0 -i 242 -a 1 -x {21.0 3.0 -1 ------- null} r -t 16.0115 -s 28 -d 1 -p ack -e 40 -c 0 -i 243 -a 1 -x {21.0 3.0 112 ------- null} + -t 16.0115 -s 1 -d 3 -p ack -e 40 -c 0 -i 243 -a 1 -x {21.0 3.0 112 ------- null} - -t 16.0115 -s 1 -d 3 -p ack -e 40 -c 0 -i 243 -a 1 -x {21.0 3.0 112 ------- null} h -t 16.0115 -s 1 -d 3 -p ack -e 40 -c 0 -i 243 -a 1 -x {21.0 3.0 -1 ------- null} r -t 16.0131 -s 28 -d 1 -p ack -e 40 -c 0 -i 244 -a 1 -x {21.0 3.0 113 ------- null} + -t 16.0131 -s 1 -d 3 -p ack -e 40 -c 0 -i 244 -a 1 -x {21.0 3.0 113 ------- null} - -t 16.0131 -s 1 -d 3 -p ack -e 40 -c 0 -i 244 -a 1 -x {21.0 3.0 113 ------- null} h -t 16.0131 -s 1 -d 3 -p ack -e 40 -c 0 -i 244 -a 1 -x {21.0 3.0 -1 ------- null} r -t 16.0147 -s 28 -d 1 -p ack -e 40 -c 0 -i 245 -a 1 -x {21.0 3.0 114 ------- null} + -t 16.0147 -s 1 -d 3 -p ack -e 40 -c 0 -i 245 -a 1 -x {21.0 3.0 114 ------- null} - -t 16.0147 -s 1 -d 3 -p ack -e 40 -c 0 -i 245 -a 1 -x {21.0 3.0 114 ------- null} h -t 16.0147 -s 1 -d 3 -p ack -e 40 -c 0 -i 245 -a 1 -x {21.0 3.0 -1 ------- null} r -t 16.0163 -s 28 -d 1 -p ack -e 40 -c 0 -i 246 -a 1 -x {21.0 3.0 115 ------- null} + -t 16.0163 -s 1 -d 3 -p ack -e 40 -c 0 -i 246 -a 1 -x {21.0 3.0 115 ------- null} - -t 16.0163 -s 1 -d 3 -p ack -e 40 -c 0 -i 246 -a 1 -x {21.0 3.0 115 ------- null} h -t 16.0163 -s 1 -d 3 -p ack -e 40 -c 0 -i 246 -a 1 -x {21.0 3.0 -1 ------- null} r -t 16.0179 -s 28 -d 1 -p ack -e 40 -c 0 -i 247 -a 1 -x {21.0 3.0 116 ------- null} + -t 16.0179 -s 1 -d 3 -p ack -e 40 -c 0 -i 247 -a 1 -x {21.0 3.0 116 ------- null} - -t 16.0179 -s 1 -d 3 -p ack -e 40 -c 0 -i 247 -a 1 -x {21.0 3.0 116 ------- null} h -t 16.0179 -s 1 -d 3 -p ack -e 40 -c 0 -i 247 -a 1 -x {21.0 3.0 -1 ------- null} r -t 16.0195 -s 28 -d 1 -p ack -e 40 -c 0 -i 248 -a 1 -x {21.0 3.0 117 ------- null} + -t 16.0195 -s 1 -d 3 -p ack -e 40 -c 0 -i 248 -a 1 -x {21.0 3.0 117 ------- null} - -t 16.0195 -s 1 -d 3 -p ack -e 40 -c 0 -i 248 -a 1 -x {21.0 3.0 117 ------- null} h -t 16.0195 -s 1 -d 3 -p ack -e 40 -c 0 -i 248 -a 1 -x {21.0 3.0 -1 ------- null} r -t 16.0211 -s 28 -d 1 -p ack -e 40 -c 0 -i 249 -a 1 -x {21.0 3.0 118 ------- null} + -t 16.0211 -s 1 -d 3 -p ack -e 40 -c 0 -i 249 -a 1 -x {21.0 3.0 118 ------- null} - -t 16.0211 -s 1 -d 3 -p ack -e 40 -c 0 -i 249 -a 1 -x {21.0 3.0 118 ------- null} h -t 16.0211 -s 1 -d 3 -p ack -e 40 -c 0 -i 249 -a 1 -x {21.0 3.0 -1 ------- null} r -t 16.0227 -s 28 -d 1 -p ack -e 40 -c 0 -i 250 -a 1 -x {21.0 3.0 119 ------- null} + -t 16.0227 -s 1 -d 3 -p ack -e 40 -c 0 -i 250 -a 1 -x {21.0 3.0 119 ------- null} - -t 16.0227 -s 1 -d 3 -p ack -e 40 -c 0 -i 250 -a 1 -x {21.0 3.0 119 ------- null} h -t 16.0227 -s 1 -d 3 -p ack -e 40 -c 0 -i 250 -a 1 -x {21.0 3.0 -1 ------- null} r -t 16.0243 -s 28 -d 1 -p ack -e 40 -c 0 -i 251 -a 1 -x {21.0 3.0 120 ------- null} + -t 16.0243 -s 1 -d 3 -p ack -e 40 -c 0 -i 251 -a 1 -x {21.0 3.0 120 ------- null} - -t 16.0243 -s 1 -d 3 -p ack -e 40 -c 0 -i 251 -a 1 -x {21.0 3.0 120 ------- null} h -t 16.0243 -s 1 -d 3 -p ack -e 40 -c 0 -i 251 -a 1 -x {21.0 3.0 -1 ------- null} r -t 16.0259 -s 28 -d 1 -p ack -e 40 -c 0 -i 252 -a 1 -x {21.0 3.0 121 ------- null} + -t 16.0259 -s 1 -d 3 -p ack -e 40 -c 0 -i 252 -a 1 -x {21.0 3.0 121 ------- null} - -t 16.0259 -s 1 -d 3 -p ack -e 40 -c 0 -i 252 -a 1 -x {21.0 3.0 121 ------- null} h -t 16.0259 -s 1 -d 3 -p ack -e 40 -c 0 -i 252 -a 1 -x {21.0 3.0 -1 ------- null} r -t 16.0275 -s 28 -d 1 -p ack -e 40 -c 0 -i 253 -a 1 -x {21.0 3.0 122 ------- null} + -t 16.0275 -s 1 -d 3 -p ack -e 40 -c 0 -i 253 -a 1 -x {21.0 3.0 122 ------- null} - -t 16.0275 -s 1 -d 3 -p ack -e 40 -c 0 -i 253 -a 1 -x {21.0 3.0 122 ------- null} h -t 16.0275 -s 1 -d 3 -p ack -e 40 -c 0 -i 253 -a 1 -x {21.0 3.0 -1 ------- null} r -t 16.0291 -s 28 -d 1 -p ack -e 40 -c 0 -i 254 -a 1 -x {21.0 3.0 123 ------- null} + -t 16.0291 -s 1 -d 3 -p ack -e 40 -c 0 -i 254 -a 1 -x {21.0 3.0 123 ------- null} - -t 16.0291 -s 1 -d 3 -p ack -e 40 -c 0 -i 254 -a 1 -x {21.0 3.0 123 ------- null} h -t 16.0291 -s 1 -d 3 -p ack -e 40 -c 0 -i 254 -a 1 -x {21.0 3.0 -1 ------- null} r -t 16.0307 -s 28 -d 1 -p ack -e 40 -c 0 -i 255 -a 1 -x {21.0 3.0 124 ------- null} + -t 16.0307 -s 1 -d 3 -p ack -e 40 -c 0 -i 255 -a 1 -x {21.0 3.0 124 ------- null} - -t 16.0307 -s 1 -d 3 -p ack -e 40 -c 0 -i 255 -a 1 -x {21.0 3.0 124 ------- null} h -t 16.0307 -s 1 -d 3 -p ack -e 40 -c 0 -i 255 -a 1 -x {21.0 3.0 -1 ------- null} r -t 16.0323 -s 28 -d 1 -p ack -e 40 -c 0 -i 256 -a 1 -x {21.0 3.0 125 ------- null} + -t 16.0323 -s 1 -d 3 -p ack -e 40 -c 0 -i 256 -a 1 -x {21.0 3.0 125 ------- null} - -t 16.0323 -s 1 -d 3 -p ack -e 40 -c 0 -i 256 -a 1 -x {21.0 3.0 125 ------- null} h -t 16.0323 -s 1 -d 3 -p ack -e 40 -c 0 -i 256 -a 1 -x {21.0 3.0 -1 ------- null} r -t 16.0339 -s 28 -d 1 -p ack -e 40 -c 0 -i 257 -a 1 -x {21.0 3.0 126 ------- null} + -t 16.0339 -s 1 -d 3 -p ack -e 40 -c 0 -i 257 -a 1 -x {21.0 3.0 126 ------- null} - -t 16.0339 -s 1 -d 3 -p ack -e 40 -c 0 -i 257 -a 1 -x {21.0 3.0 126 ------- null} h -t 16.0339 -s 1 -d 3 -p ack -e 40 -c 0 -i 257 -a 1 -x {21.0 3.0 -1 ------- null} r -t 16.0355 -s 28 -d 1 -p ack -e 40 -c 0 -i 258 -a 1 -x {21.0 3.0 127 ------- null} + -t 16.0355 -s 1 -d 3 -p ack -e 40 -c 0 -i 258 -a 1 -x {21.0 3.0 127 ------- null} - -t 16.0355 -s 1 -d 3 -p ack -e 40 -c 0 -i 258 -a 1 -x {21.0 3.0 127 ------- null} h -t 16.0355 -s 1 -d 3 -p ack -e 40 -c 0 -i 258 -a 1 -x {21.0 3.0 -1 ------- null} r -t 16.0371 -s 28 -d 1 -p ack -e 40 -c 0 -i 259 -a 1 -x {21.0 3.0 128 ------- null} + -t 16.0371 -s 1 -d 3 -p ack -e 40 -c 0 -i 259 -a 1 -x {21.0 3.0 128 ------- null} - -t 16.0371 -s 1 -d 3 -p ack -e 40 -c 0 -i 259 -a 1 -x {21.0 3.0 128 ------- null} h -t 16.0371 -s 1 -d 3 -p ack -e 40 -c 0 -i 259 -a 1 -x {21.0 3.0 -1 ------- null} r -t 16.0387 -s 28 -d 1 -p ack -e 40 -c 0 -i 260 -a 1 -x {21.0 3.0 129 ------- null} + -t 16.0387 -s 1 -d 3 -p ack -e 40 -c 0 -i 260 -a 1 -x {21.0 3.0 129 ------- null} - -t 16.0387 -s 1 -d 3 -p ack -e 40 -c 0 -i 260 -a 1 -x {21.0 3.0 129 ------- null} h -t 16.0387 -s 1 -d 3 -p ack -e 40 -c 0 -i 260 -a 1 -x {21.0 3.0 -1 ------- null} r -t 16.0403 -s 28 -d 1 -p ack -e 40 -c 0 -i 261 -a 1 -x {21.0 3.0 130 ------- null} + -t 16.0403 -s 1 -d 3 -p ack -e 40 -c 0 -i 261 -a 1 -x {21.0 3.0 130 ------- null} - -t 16.0403 -s 1 -d 3 -p ack -e 40 -c 0 -i 261 -a 1 -x {21.0 3.0 130 ------- null} h -t 16.0403 -s 1 -d 3 -p ack -e 40 -c 0 -i 261 -a 1 -x {21.0 3.0 -1 ------- null} r -t 16.1499 -s 1 -d 3 -p ack -e 40 -c 0 -i 242 -a 1 -x {21.0 3.0 111 ------- null} + -t 16.1499 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 262 -a 0 -x {3.0 21.0 131 ------- null} - -t 16.1499 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 262 -a 0 -x {3.0 21.0 131 ------- null} h -t 16.1499 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 262 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.1515 -s 1 -d 3 -p ack -e 40 -c 0 -i 243 -a 1 -x {21.0 3.0 112 ------- null} + -t 16.1515 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {3.0 21.0 132 ------- null} - -t 16.1515 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {3.0 21.0 132 ------- null} h -t 16.1515 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.1531 -s 1 -d 3 -p ack -e 40 -c 0 -i 244 -a 1 -x {21.0 3.0 113 ------- null} + -t 16.1531 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 264 -a 0 -x {3.0 21.0 133 ------- null} - -t 16.1531 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 264 -a 0 -x {3.0 21.0 133 ------- null} h -t 16.1531 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 264 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.1547 -s 1 -d 3 -p ack -e 40 -c 0 -i 245 -a 1 -x {21.0 3.0 114 ------- null} + -t 16.1547 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {3.0 21.0 134 ------- null} - -t 16.1547 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {3.0 21.0 134 ------- null} h -t 16.1547 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.1563 -s 1 -d 3 -p ack -e 40 -c 0 -i 246 -a 1 -x {21.0 3.0 115 ------- null} + -t 16.1563 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 266 -a 0 -x {3.0 21.0 135 ------- null} - -t 16.1563 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 266 -a 0 -x {3.0 21.0 135 ------- null} h -t 16.1563 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 266 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.1579 -s 1 -d 3 -p ack -e 40 -c 0 -i 247 -a 1 -x {21.0 3.0 116 ------- null} + -t 16.1579 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {3.0 21.0 136 ------- null} - -t 16.1579 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {3.0 21.0 136 ------- null} h -t 16.1579 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.1595 -s 1 -d 3 -p ack -e 40 -c 0 -i 248 -a 1 -x {21.0 3.0 117 ------- null} + -t 16.1595 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 268 -a 0 -x {3.0 21.0 137 ------- null} - -t 16.1595 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 268 -a 0 -x {3.0 21.0 137 ------- null} h -t 16.1595 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 268 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.1611 -s 1 -d 3 -p ack -e 40 -c 0 -i 249 -a 1 -x {21.0 3.0 118 ------- null} + -t 16.1611 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {3.0 21.0 138 ------- null} - -t 16.1611 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {3.0 21.0 138 ------- null} h -t 16.1611 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.1627 -s 1 -d 3 -p ack -e 40 -c 0 -i 250 -a 1 -x {21.0 3.0 119 ------- null} + -t 16.1627 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 270 -a 0 -x {3.0 21.0 139 ------- null} - -t 16.1627 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 270 -a 0 -x {3.0 21.0 139 ------- null} h -t 16.1627 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 270 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.1643 -s 1 -d 3 -p ack -e 40 -c 0 -i 251 -a 1 -x {21.0 3.0 120 ------- null} + -t 16.1643 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {3.0 21.0 140 ------- null} - -t 16.1643 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {3.0 21.0 140 ------- null} h -t 16.1643 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.1659 -s 1 -d 3 -p ack -e 40 -c 0 -i 252 -a 1 -x {21.0 3.0 121 ------- null} + -t 16.1659 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {3.0 21.0 141 ------- null} - -t 16.1659 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {3.0 21.0 141 ------- null} h -t 16.1659 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.1675 -s 1 -d 3 -p ack -e 40 -c 0 -i 253 -a 1 -x {21.0 3.0 122 ------- null} + -t 16.1675 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {3.0 21.0 142 ------- null} - -t 16.1675 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {3.0 21.0 142 ------- null} h -t 16.1675 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.1691 -s 1 -d 3 -p ack -e 40 -c 0 -i 254 -a 1 -x {21.0 3.0 123 ------- null} + -t 16.1691 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {3.0 21.0 143 ------- null} - -t 16.1691 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {3.0 21.0 143 ------- null} h -t 16.1691 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.1707 -s 1 -d 3 -p ack -e 40 -c 0 -i 255 -a 1 -x {21.0 3.0 124 ------- null} + -t 16.1707 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {3.0 21.0 144 ------- null} - -t 16.1707 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {3.0 21.0 144 ------- null} h -t 16.1707 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.1723 -s 1 -d 3 -p ack -e 40 -c 0 -i 256 -a 1 -x {21.0 3.0 125 ------- null} + -t 16.1723 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 276 -a 0 -x {3.0 21.0 145 ------- null} - -t 16.1723 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 276 -a 0 -x {3.0 21.0 145 ------- null} h -t 16.1723 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 276 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.1739 -s 1 -d 3 -p ack -e 40 -c 0 -i 257 -a 1 -x {21.0 3.0 126 ------- null} + -t 16.1739 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {3.0 21.0 146 ------- null} - -t 16.1739 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {3.0 21.0 146 ------- null} h -t 16.1739 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.1755 -s 1 -d 3 -p ack -e 40 -c 0 -i 258 -a 1 -x {21.0 3.0 127 ------- null} + -t 16.1755 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 278 -a 0 -x {3.0 21.0 147 ------- null} - -t 16.1755 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 278 -a 0 -x {3.0 21.0 147 ------- null} h -t 16.1755 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 278 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.1771 -s 1 -d 3 -p ack -e 40 -c 0 -i 259 -a 1 -x {21.0 3.0 128 ------- null} + -t 16.1771 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {3.0 21.0 148 ------- null} - -t 16.1771 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {3.0 21.0 148 ------- null} h -t 16.1771 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.1787 -s 1 -d 3 -p ack -e 40 -c 0 -i 260 -a 1 -x {21.0 3.0 129 ------- null} + -t 16.1787 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 280 -a 0 -x {3.0 21.0 149 ------- null} - -t 16.1787 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 280 -a 0 -x {3.0 21.0 149 ------- null} h -t 16.1787 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 280 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.1803 -s 1 -d 3 -p ack -e 40 -c 0 -i 261 -a 1 -x {21.0 3.0 130 ------- null} + -t 16.1803 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {3.0 21.0 150 ------- null} - -t 16.1803 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {3.0 21.0 150 ------- null} h -t 16.1803 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.2915 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 262 -a 0 -x {3.0 21.0 131 ------- null} + -t 16.2915 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 262 -a 0 -x {3.0 21.0 131 ------- null} - -t 16.2915 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 262 -a 0 -x {3.0 21.0 131 ------- null} h -t 16.2915 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 262 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.2931 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {3.0 21.0 132 ------- null} + -t 16.2931 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {3.0 21.0 132 ------- null} - -t 16.2931 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {3.0 21.0 132 ------- null} h -t 16.2931 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.2947 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 264 -a 0 -x {3.0 21.0 133 ------- null} + -t 16.2947 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 264 -a 0 -x {3.0 21.0 133 ------- null} - -t 16.2947 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 264 -a 0 -x {3.0 21.0 133 ------- null} h -t 16.2947 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 264 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.2963 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {3.0 21.0 134 ------- null} + -t 16.2963 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {3.0 21.0 134 ------- null} - -t 16.2963 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {3.0 21.0 134 ------- null} h -t 16.2963 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.2979 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 266 -a 0 -x {3.0 21.0 135 ------- null} + -t 16.2979 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 266 -a 0 -x {3.0 21.0 135 ------- null} - -t 16.2979 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 266 -a 0 -x {3.0 21.0 135 ------- null} h -t 16.2979 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 266 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.2995 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {3.0 21.0 136 ------- null} + -t 16.2995 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {3.0 21.0 136 ------- null} - -t 16.2995 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {3.0 21.0 136 ------- null} h -t 16.2995 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.3011 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 268 -a 0 -x {3.0 21.0 137 ------- null} + -t 16.3011 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 268 -a 0 -x {3.0 21.0 137 ------- null} - -t 16.3011 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 268 -a 0 -x {3.0 21.0 137 ------- null} h -t 16.3011 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 268 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.3027 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {3.0 21.0 138 ------- null} + -t 16.3027 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {3.0 21.0 138 ------- null} - -t 16.3027 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {3.0 21.0 138 ------- null} h -t 16.3027 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.3043 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 270 -a 0 -x {3.0 21.0 139 ------- null} + -t 16.3043 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 270 -a 0 -x {3.0 21.0 139 ------- null} - -t 16.3043 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 270 -a 0 -x {3.0 21.0 139 ------- null} h -t 16.3043 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 270 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.3059 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {3.0 21.0 140 ------- null} + -t 16.3059 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {3.0 21.0 140 ------- null} - -t 16.3059 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {3.0 21.0 140 ------- null} h -t 16.3059 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.3075 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {3.0 21.0 141 ------- null} + -t 16.3075 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {3.0 21.0 141 ------- null} - -t 16.3075 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {3.0 21.0 141 ------- null} h -t 16.3075 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.3091 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {3.0 21.0 142 ------- null} + -t 16.3091 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {3.0 21.0 142 ------- null} - -t 16.3091 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {3.0 21.0 142 ------- null} h -t 16.3091 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.3107 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {3.0 21.0 143 ------- null} + -t 16.3107 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {3.0 21.0 143 ------- null} - -t 16.3107 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {3.0 21.0 143 ------- null} h -t 16.3107 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.3123 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {3.0 21.0 144 ------- null} + -t 16.3123 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {3.0 21.0 144 ------- null} - -t 16.3123 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {3.0 21.0 144 ------- null} h -t 16.3123 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.3139 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 276 -a 0 -x {3.0 21.0 145 ------- null} + -t 16.3139 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 276 -a 0 -x {3.0 21.0 145 ------- null} - -t 16.3139 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 276 -a 0 -x {3.0 21.0 145 ------- null} h -t 16.3139 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 276 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.3155 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {3.0 21.0 146 ------- null} + -t 16.3155 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {3.0 21.0 146 ------- null} - -t 16.3155 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {3.0 21.0 146 ------- null} h -t 16.3155 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.3171 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 278 -a 0 -x {3.0 21.0 147 ------- null} + -t 16.3171 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 278 -a 0 -x {3.0 21.0 147 ------- null} - -t 16.3171 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 278 -a 0 -x {3.0 21.0 147 ------- null} h -t 16.3171 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 278 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.3187 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {3.0 21.0 148 ------- null} + -t 16.3187 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {3.0 21.0 148 ------- null} - -t 16.3187 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {3.0 21.0 148 ------- null} h -t 16.3187 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.3203 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 280 -a 0 -x {3.0 21.0 149 ------- null} + -t 16.3203 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 280 -a 0 -x {3.0 21.0 149 ------- null} - -t 16.3203 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 280 -a 0 -x {3.0 21.0 149 ------- null} h -t 16.3203 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 280 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.3219 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {3.0 21.0 150 ------- null} + -t 16.3219 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {3.0 21.0 150 ------- null} - -t 16.3219 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {3.0 21.0 150 ------- null} h -t 16.3219 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.5931 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 262 -a 0 -x {3.0 21.0 131 ------- null} + -t 16.5931 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 262 -a 0 -x {3.0 21.0 131 ------- null} - -t 16.5931 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 262 -a 0 -x {3.0 21.0 131 ------- null} h -t 16.5931 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 262 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.5947 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {3.0 21.0 132 ------- null} + -t 16.5947 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {3.0 21.0 132 ------- null} - -t 16.5947 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {3.0 21.0 132 ------- null} h -t 16.5947 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.5963 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 264 -a 0 -x {3.0 21.0 133 ------- null} + -t 16.5963 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 264 -a 0 -x {3.0 21.0 133 ------- null} - -t 16.5963 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 264 -a 0 -x {3.0 21.0 133 ------- null} h -t 16.5963 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 264 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.5979 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {3.0 21.0 134 ------- null} + -t 16.5979 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {3.0 21.0 134 ------- null} - -t 16.5979 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {3.0 21.0 134 ------- null} h -t 16.5979 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.5995 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 266 -a 0 -x {3.0 21.0 135 ------- null} + -t 16.5995 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 266 -a 0 -x {3.0 21.0 135 ------- null} - -t 16.5995 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 266 -a 0 -x {3.0 21.0 135 ------- null} h -t 16.5995 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 266 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.6011 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {3.0 21.0 136 ------- null} + -t 16.6011 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {3.0 21.0 136 ------- null} - -t 16.6011 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {3.0 21.0 136 ------- null} h -t 16.6011 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.6027 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 268 -a 0 -x {3.0 21.0 137 ------- null} + -t 16.6027 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 268 -a 0 -x {3.0 21.0 137 ------- null} - -t 16.6027 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 268 -a 0 -x {3.0 21.0 137 ------- null} h -t 16.6027 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 268 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.6043 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {3.0 21.0 138 ------- null} + -t 16.6043 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {3.0 21.0 138 ------- null} - -t 16.6043 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {3.0 21.0 138 ------- null} h -t 16.6043 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.6059 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 270 -a 0 -x {3.0 21.0 139 ------- null} + -t 16.6059 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 270 -a 0 -x {3.0 21.0 139 ------- null} - -t 16.6059 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 270 -a 0 -x {3.0 21.0 139 ------- null} h -t 16.6059 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 270 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.6075 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {3.0 21.0 140 ------- null} + -t 16.6075 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {3.0 21.0 140 ------- null} - -t 16.6075 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {3.0 21.0 140 ------- null} h -t 16.6075 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.6091 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {3.0 21.0 141 ------- null} + -t 16.6091 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {3.0 21.0 141 ------- null} - -t 16.6091 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {3.0 21.0 141 ------- null} h -t 16.6091 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.6107 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {3.0 21.0 142 ------- null} + -t 16.6107 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {3.0 21.0 142 ------- null} - -t 16.6107 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {3.0 21.0 142 ------- null} h -t 16.6107 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.6123 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {3.0 21.0 143 ------- null} + -t 16.6123 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {3.0 21.0 143 ------- null} - -t 16.6123 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {3.0 21.0 143 ------- null} h -t 16.6123 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.6139 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {3.0 21.0 144 ------- null} + -t 16.6139 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {3.0 21.0 144 ------- null} - -t 16.6139 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {3.0 21.0 144 ------- null} h -t 16.6139 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.6155 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 276 -a 0 -x {3.0 21.0 145 ------- null} + -t 16.6155 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 276 -a 0 -x {3.0 21.0 145 ------- null} - -t 16.6155 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 276 -a 0 -x {3.0 21.0 145 ------- null} h -t 16.6155 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 276 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.6171 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {3.0 21.0 146 ------- null} + -t 16.6171 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {3.0 21.0 146 ------- null} - -t 16.6171 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {3.0 21.0 146 ------- null} h -t 16.6171 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.6187 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 278 -a 0 -x {3.0 21.0 147 ------- null} + -t 16.6187 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 278 -a 0 -x {3.0 21.0 147 ------- null} - -t 16.6187 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 278 -a 0 -x {3.0 21.0 147 ------- null} h -t 16.6187 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 278 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.6203 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {3.0 21.0 148 ------- null} + -t 16.6203 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {3.0 21.0 148 ------- null} - -t 16.6203 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {3.0 21.0 148 ------- null} h -t 16.6203 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.6219 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 280 -a 0 -x {3.0 21.0 149 ------- null} + -t 16.6219 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 280 -a 0 -x {3.0 21.0 149 ------- null} - -t 16.6219 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 280 -a 0 -x {3.0 21.0 149 ------- null} h -t 16.6219 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 280 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.6235 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {3.0 21.0 150 ------- null} + -t 16.6235 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {3.0 21.0 150 ------- null} - -t 16.6235 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {3.0 21.0 150 ------- null} h -t 16.6235 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {3.0 21.0 -1 ------- null} r -t 16.9447 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 262 -a 0 -x {3.0 21.0 131 ------- null} + -t 16.9447 -s 21 -d 28 -p ack -e 40 -c 0 -i 282 -a 1 -x {21.0 3.0 131 ------- null} - -t 16.9447 -s 21 -d 28 -p ack -e 40 -c 0 -i 282 -a 1 -x {21.0 3.0 131 ------- null} h -t 16.9447 -s 21 -d 28 -p ack -e 40 -c 0 -i 282 -a 1 -x {21.0 3.0 -1 ------- null} r -t 16.9463 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {3.0 21.0 132 ------- null} + -t 16.9463 -s 21 -d 28 -p ack -e 40 -c 0 -i 283 -a 1 -x {21.0 3.0 132 ------- null} - -t 16.9463 -s 21 -d 28 -p ack -e 40 -c 0 -i 283 -a 1 -x {21.0 3.0 132 ------- null} h -t 16.9463 -s 21 -d 28 -p ack -e 40 -c 0 -i 283 -a 1 -x {21.0 3.0 -1 ------- null} r -t 16.9479 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 264 -a 0 -x {3.0 21.0 133 ------- null} + -t 16.9479 -s 21 -d 28 -p ack -e 40 -c 0 -i 284 -a 1 -x {21.0 3.0 133 ------- null} - -t 16.9479 -s 21 -d 28 -p ack -e 40 -c 0 -i 284 -a 1 -x {21.0 3.0 133 ------- null} h -t 16.9479 -s 21 -d 28 -p ack -e 40 -c 0 -i 284 -a 1 -x {21.0 3.0 -1 ------- null} r -t 16.9495 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {3.0 21.0 134 ------- null} + -t 16.9495 -s 21 -d 28 -p ack -e 40 -c 0 -i 285 -a 1 -x {21.0 3.0 134 ------- null} - -t 16.9495 -s 21 -d 28 -p ack -e 40 -c 0 -i 285 -a 1 -x {21.0 3.0 134 ------- null} h -t 16.9495 -s 21 -d 28 -p ack -e 40 -c 0 -i 285 -a 1 -x {21.0 3.0 -1 ------- null} r -t 16.9511 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 266 -a 0 -x {3.0 21.0 135 ------- null} + -t 16.9511 -s 21 -d 28 -p ack -e 40 -c 0 -i 286 -a 1 -x {21.0 3.0 135 ------- null} - -t 16.9511 -s 21 -d 28 -p ack -e 40 -c 0 -i 286 -a 1 -x {21.0 3.0 135 ------- null} h -t 16.9511 -s 21 -d 28 -p ack -e 40 -c 0 -i 286 -a 1 -x {21.0 3.0 -1 ------- null} r -t 16.9527 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {3.0 21.0 136 ------- null} + -t 16.9527 -s 21 -d 28 -p ack -e 40 -c 0 -i 287 -a 1 -x {21.0 3.0 136 ------- null} - -t 16.9527 -s 21 -d 28 -p ack -e 40 -c 0 -i 287 -a 1 -x {21.0 3.0 136 ------- null} h -t 16.9527 -s 21 -d 28 -p ack -e 40 -c 0 -i 287 -a 1 -x {21.0 3.0 -1 ------- null} r -t 16.9543 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 268 -a 0 -x {3.0 21.0 137 ------- null} + -t 16.9543 -s 21 -d 28 -p ack -e 40 -c 0 -i 288 -a 1 -x {21.0 3.0 137 ------- null} - -t 16.9543 -s 21 -d 28 -p ack -e 40 -c 0 -i 288 -a 1 -x {21.0 3.0 137 ------- null} h -t 16.9543 -s 21 -d 28 -p ack -e 40 -c 0 -i 288 -a 1 -x {21.0 3.0 -1 ------- null} r -t 16.9559 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {3.0 21.0 138 ------- null} + -t 16.9559 -s 21 -d 28 -p ack -e 40 -c 0 -i 289 -a 1 -x {21.0 3.0 138 ------- null} - -t 16.9559 -s 21 -d 28 -p ack -e 40 -c 0 -i 289 -a 1 -x {21.0 3.0 138 ------- null} h -t 16.9559 -s 21 -d 28 -p ack -e 40 -c 0 -i 289 -a 1 -x {21.0 3.0 -1 ------- null} r -t 16.9575 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 270 -a 0 -x {3.0 21.0 139 ------- null} + -t 16.9575 -s 21 -d 28 -p ack -e 40 -c 0 -i 290 -a 1 -x {21.0 3.0 139 ------- null} - -t 16.9575 -s 21 -d 28 -p ack -e 40 -c 0 -i 290 -a 1 -x {21.0 3.0 139 ------- null} h -t 16.9575 -s 21 -d 28 -p ack -e 40 -c 0 -i 290 -a 1 -x {21.0 3.0 -1 ------- null} r -t 16.9591 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {3.0 21.0 140 ------- null} + -t 16.9591 -s 21 -d 28 -p ack -e 40 -c 0 -i 291 -a 1 -x {21.0 3.0 140 ------- null} - -t 16.9591 -s 21 -d 28 -p ack -e 40 -c 0 -i 291 -a 1 -x {21.0 3.0 140 ------- null} h -t 16.9591 -s 21 -d 28 -p ack -e 40 -c 0 -i 291 -a 1 -x {21.0 3.0 -1 ------- null} r -t 16.9607 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {3.0 21.0 141 ------- null} + -t 16.9607 -s 21 -d 28 -p ack -e 40 -c 0 -i 292 -a 1 -x {21.0 3.0 141 ------- null} - -t 16.9607 -s 21 -d 28 -p ack -e 40 -c 0 -i 292 -a 1 -x {21.0 3.0 141 ------- null} h -t 16.9607 -s 21 -d 28 -p ack -e 40 -c 0 -i 292 -a 1 -x {21.0 3.0 -1 ------- null} r -t 16.9623 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {3.0 21.0 142 ------- null} + -t 16.9623 -s 21 -d 28 -p ack -e 40 -c 0 -i 293 -a 1 -x {21.0 3.0 142 ------- null} - -t 16.9623 -s 21 -d 28 -p ack -e 40 -c 0 -i 293 -a 1 -x {21.0 3.0 142 ------- null} h -t 16.9623 -s 21 -d 28 -p ack -e 40 -c 0 -i 293 -a 1 -x {21.0 3.0 -1 ------- null} r -t 16.9639 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {3.0 21.0 143 ------- null} + -t 16.9639 -s 21 -d 28 -p ack -e 40 -c 0 -i 294 -a 1 -x {21.0 3.0 143 ------- null} - -t 16.9639 -s 21 -d 28 -p ack -e 40 -c 0 -i 294 -a 1 -x {21.0 3.0 143 ------- null} h -t 16.9639 -s 21 -d 28 -p ack -e 40 -c 0 -i 294 -a 1 -x {21.0 3.0 -1 ------- null} r -t 16.9655 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {3.0 21.0 144 ------- null} + -t 16.9655 -s 21 -d 28 -p ack -e 40 -c 0 -i 295 -a 1 -x {21.0 3.0 144 ------- null} - -t 16.9655 -s 21 -d 28 -p ack -e 40 -c 0 -i 295 -a 1 -x {21.0 3.0 144 ------- null} h -t 16.9655 -s 21 -d 28 -p ack -e 40 -c 0 -i 295 -a 1 -x {21.0 3.0 -1 ------- null} r -t 16.9671 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 276 -a 0 -x {3.0 21.0 145 ------- null} + -t 16.9671 -s 21 -d 28 -p ack -e 40 -c 0 -i 296 -a 1 -x {21.0 3.0 145 ------- null} - -t 16.9671 -s 21 -d 28 -p ack -e 40 -c 0 -i 296 -a 1 -x {21.0 3.0 145 ------- null} h -t 16.9671 -s 21 -d 28 -p ack -e 40 -c 0 -i 296 -a 1 -x {21.0 3.0 -1 ------- null} r -t 16.9687 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {3.0 21.0 146 ------- null} + -t 16.9687 -s 21 -d 28 -p ack -e 40 -c 0 -i 297 -a 1 -x {21.0 3.0 146 ------- null} - -t 16.9687 -s 21 -d 28 -p ack -e 40 -c 0 -i 297 -a 1 -x {21.0 3.0 146 ------- null} h -t 16.9687 -s 21 -d 28 -p ack -e 40 -c 0 -i 297 -a 1 -x {21.0 3.0 -1 ------- null} r -t 16.9703 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 278 -a 0 -x {3.0 21.0 147 ------- null} + -t 16.9703 -s 21 -d 28 -p ack -e 40 -c 0 -i 298 -a 1 -x {21.0 3.0 147 ------- null} - -t 16.9703 -s 21 -d 28 -p ack -e 40 -c 0 -i 298 -a 1 -x {21.0 3.0 147 ------- null} h -t 16.9703 -s 21 -d 28 -p ack -e 40 -c 0 -i 298 -a 1 -x {21.0 3.0 -1 ------- null} r -t 16.9719 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {3.0 21.0 148 ------- null} + -t 16.9719 -s 21 -d 28 -p ack -e 40 -c 0 -i 299 -a 1 -x {21.0 3.0 148 ------- null} - -t 16.9719 -s 21 -d 28 -p ack -e 40 -c 0 -i 299 -a 1 -x {21.0 3.0 148 ------- null} h -t 16.9719 -s 21 -d 28 -p ack -e 40 -c 0 -i 299 -a 1 -x {21.0 3.0 -1 ------- null} r -t 16.9735 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 280 -a 0 -x {3.0 21.0 149 ------- null} + -t 16.9735 -s 21 -d 28 -p ack -e 40 -c 0 -i 300 -a 1 -x {21.0 3.0 149 ------- null} - -t 16.9735 -s 21 -d 28 -p ack -e 40 -c 0 -i 300 -a 1 -x {21.0 3.0 149 ------- null} h -t 16.9735 -s 21 -d 28 -p ack -e 40 -c 0 -i 300 -a 1 -x {21.0 3.0 -1 ------- null} r -t 16.9751 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {3.0 21.0 150 ------- null} + -t 16.9751 -s 21 -d 28 -p ack -e 40 -c 0 -i 301 -a 1 -x {21.0 3.0 150 ------- null} - -t 16.9751 -s 21 -d 28 -p ack -e 40 -c 0 -i 301 -a 1 -x {21.0 3.0 150 ------- null} h -t 16.9751 -s 21 -d 28 -p ack -e 40 -c 0 -i 301 -a 1 -x {21.0 3.0 -1 ------- null} r -t 17.2948 -s 21 -d 28 -p ack -e 40 -c 0 -i 282 -a 1 -x {21.0 3.0 131 ------- null} + -t 17.2948 -s 28 -d 1 -p ack -e 40 -c 0 -i 282 -a 1 -x {21.0 3.0 131 ------- null} - -t 17.2948 -s 28 -d 1 -p ack -e 40 -c 0 -i 282 -a 1 -x {21.0 3.0 131 ------- null} h -t 17.2948 -s 28 -d 1 -p ack -e 40 -c 0 -i 282 -a 1 -x {21.0 3.0 -1 ------- null} r -t 17.2964 -s 21 -d 28 -p ack -e 40 -c 0 -i 283 -a 1 -x {21.0 3.0 132 ------- null} + -t 17.2964 -s 28 -d 1 -p ack -e 40 -c 0 -i 283 -a 1 -x {21.0 3.0 132 ------- null} - -t 17.2964 -s 28 -d 1 -p ack -e 40 -c 0 -i 283 -a 1 -x {21.0 3.0 132 ------- null} h -t 17.2964 -s 28 -d 1 -p ack -e 40 -c 0 -i 283 -a 1 -x {21.0 3.0 -1 ------- null} r -t 17.298 -s 21 -d 28 -p ack -e 40 -c 0 -i 284 -a 1 -x {21.0 3.0 133 ------- null} + -t 17.298 -s 28 -d 1 -p ack -e 40 -c 0 -i 284 -a 1 -x {21.0 3.0 133 ------- null} - -t 17.298 -s 28 -d 1 -p ack -e 40 -c 0 -i 284 -a 1 -x {21.0 3.0 133 ------- null} h -t 17.298 -s 28 -d 1 -p ack -e 40 -c 0 -i 284 -a 1 -x {21.0 3.0 -1 ------- null} r -t 17.2996 -s 21 -d 28 -p ack -e 40 -c 0 -i 285 -a 1 -x {21.0 3.0 134 ------- null} + -t 17.2996 -s 28 -d 1 -p ack -e 40 -c 0 -i 285 -a 1 -x {21.0 3.0 134 ------- null} - -t 17.2996 -s 28 -d 1 -p ack -e 40 -c 0 -i 285 -a 1 -x {21.0 3.0 134 ------- null} h -t 17.2996 -s 28 -d 1 -p ack -e 40 -c 0 -i 285 -a 1 -x {21.0 3.0 -1 ------- null} r -t 17.3012 -s 21 -d 28 -p ack -e 40 -c 0 -i 286 -a 1 -x {21.0 3.0 135 ------- null} + -t 17.3012 -s 28 -d 1 -p ack -e 40 -c 0 -i 286 -a 1 -x {21.0 3.0 135 ------- null} - -t 17.3012 -s 28 -d 1 -p ack -e 40 -c 0 -i 286 -a 1 -x {21.0 3.0 135 ------- null} h -t 17.3012 -s 28 -d 1 -p ack -e 40 -c 0 -i 286 -a 1 -x {21.0 3.0 -1 ------- null} r -t 17.3028 -s 21 -d 28 -p ack -e 40 -c 0 -i 287 -a 1 -x {21.0 3.0 136 ------- null} + -t 17.3028 -s 28 -d 1 -p ack -e 40 -c 0 -i 287 -a 1 -x {21.0 3.0 136 ------- null} - -t 17.3028 -s 28 -d 1 -p ack -e 40 -c 0 -i 287 -a 1 -x {21.0 3.0 136 ------- null} h -t 17.3028 -s 28 -d 1 -p ack -e 40 -c 0 -i 287 -a 1 -x {21.0 3.0 -1 ------- null} r -t 17.3044 -s 21 -d 28 -p ack -e 40 -c 0 -i 288 -a 1 -x {21.0 3.0 137 ------- null} + -t 17.3044 -s 28 -d 1 -p ack -e 40 -c 0 -i 288 -a 1 -x {21.0 3.0 137 ------- null} - -t 17.3044 -s 28 -d 1 -p ack -e 40 -c 0 -i 288 -a 1 -x {21.0 3.0 137 ------- null} h -t 17.3044 -s 28 -d 1 -p ack -e 40 -c 0 -i 288 -a 1 -x {21.0 3.0 -1 ------- null} r -t 17.306 -s 21 -d 28 -p ack -e 40 -c 0 -i 289 -a 1 -x {21.0 3.0 138 ------- null} + -t 17.306 -s 28 -d 1 -p ack -e 40 -c 0 -i 289 -a 1 -x {21.0 3.0 138 ------- null} - -t 17.306 -s 28 -d 1 -p ack -e 40 -c 0 -i 289 -a 1 -x {21.0 3.0 138 ------- null} h -t 17.306 -s 28 -d 1 -p ack -e 40 -c 0 -i 289 -a 1 -x {21.0 3.0 -1 ------- null} r -t 17.3076 -s 21 -d 28 -p ack -e 40 -c 0 -i 290 -a 1 -x {21.0 3.0 139 ------- null} + -t 17.3076 -s 28 -d 1 -p ack -e 40 -c 0 -i 290 -a 1 -x {21.0 3.0 139 ------- null} - -t 17.3076 -s 28 -d 1 -p ack -e 40 -c 0 -i 290 -a 1 -x {21.0 3.0 139 ------- null} h -t 17.3076 -s 28 -d 1 -p ack -e 40 -c 0 -i 290 -a 1 -x {21.0 3.0 -1 ------- null} r -t 17.3092 -s 21 -d 28 -p ack -e 40 -c 0 -i 291 -a 1 -x {21.0 3.0 140 ------- null} + -t 17.3092 -s 28 -d 1 -p ack -e 40 -c 0 -i 291 -a 1 -x {21.0 3.0 140 ------- null} - -t 17.3092 -s 28 -d 1 -p ack -e 40 -c 0 -i 291 -a 1 -x {21.0 3.0 140 ------- null} h -t 17.3092 -s 28 -d 1 -p ack -e 40 -c 0 -i 291 -a 1 -x {21.0 3.0 -1 ------- null} r -t 17.3108 -s 21 -d 28 -p ack -e 40 -c 0 -i 292 -a 1 -x {21.0 3.0 141 ------- null} + -t 17.3108 -s 28 -d 1 -p ack -e 40 -c 0 -i 292 -a 1 -x {21.0 3.0 141 ------- null} - -t 17.3108 -s 28 -d 1 -p ack -e 40 -c 0 -i 292 -a 1 -x {21.0 3.0 141 ------- null} h -t 17.3108 -s 28 -d 1 -p ack -e 40 -c 0 -i 292 -a 1 -x {21.0 3.0 -1 ------- null} r -t 17.3124 -s 21 -d 28 -p ack -e 40 -c 0 -i 293 -a 1 -x {21.0 3.0 142 ------- null} + -t 17.3124 -s 28 -d 1 -p ack -e 40 -c 0 -i 293 -a 1 -x {21.0 3.0 142 ------- null} - -t 17.3124 -s 28 -d 1 -p ack -e 40 -c 0 -i 293 -a 1 -x {21.0 3.0 142 ------- null} h -t 17.3124 -s 28 -d 1 -p ack -e 40 -c 0 -i 293 -a 1 -x {21.0 3.0 -1 ------- null} r -t 17.314 -s 21 -d 28 -p ack -e 40 -c 0 -i 294 -a 1 -x {21.0 3.0 143 ------- null} + -t 17.314 -s 28 -d 1 -p ack -e 40 -c 0 -i 294 -a 1 -x {21.0 3.0 143 ------- null} - -t 17.314 -s 28 -d 1 -p ack -e 40 -c 0 -i 294 -a 1 -x {21.0 3.0 143 ------- null} h -t 17.314 -s 28 -d 1 -p ack -e 40 -c 0 -i 294 -a 1 -x {21.0 3.0 -1 ------- null} r -t 17.3156 -s 21 -d 28 -p ack -e 40 -c 0 -i 295 -a 1 -x {21.0 3.0 144 ------- null} + -t 17.3156 -s 28 -d 1 -p ack -e 40 -c 0 -i 295 -a 1 -x {21.0 3.0 144 ------- null} - -t 17.3156 -s 28 -d 1 -p ack -e 40 -c 0 -i 295 -a 1 -x {21.0 3.0 144 ------- null} h -t 17.3156 -s 28 -d 1 -p ack -e 40 -c 0 -i 295 -a 1 -x {21.0 3.0 -1 ------- null} r -t 17.3172 -s 21 -d 28 -p ack -e 40 -c 0 -i 296 -a 1 -x {21.0 3.0 145 ------- null} + -t 17.3172 -s 28 -d 1 -p ack -e 40 -c 0 -i 296 -a 1 -x {21.0 3.0 145 ------- null} - -t 17.3172 -s 28 -d 1 -p ack -e 40 -c 0 -i 296 -a 1 -x {21.0 3.0 145 ------- null} h -t 17.3172 -s 28 -d 1 -p ack -e 40 -c 0 -i 296 -a 1 -x {21.0 3.0 -1 ------- null} r -t 17.3188 -s 21 -d 28 -p ack -e 40 -c 0 -i 297 -a 1 -x {21.0 3.0 146 ------- null} + -t 17.3188 -s 28 -d 1 -p ack -e 40 -c 0 -i 297 -a 1 -x {21.0 3.0 146 ------- null} - -t 17.3188 -s 28 -d 1 -p ack -e 40 -c 0 -i 297 -a 1 -x {21.0 3.0 146 ------- null} h -t 17.3188 -s 28 -d 1 -p ack -e 40 -c 0 -i 297 -a 1 -x {21.0 3.0 -1 ------- null} r -t 17.3204 -s 21 -d 28 -p ack -e 40 -c 0 -i 298 -a 1 -x {21.0 3.0 147 ------- null} + -t 17.3204 -s 28 -d 1 -p ack -e 40 -c 0 -i 298 -a 1 -x {21.0 3.0 147 ------- null} - -t 17.3204 -s 28 -d 1 -p ack -e 40 -c 0 -i 298 -a 1 -x {21.0 3.0 147 ------- null} h -t 17.3204 -s 28 -d 1 -p ack -e 40 -c 0 -i 298 -a 1 -x {21.0 3.0 -1 ------- null} r -t 17.322 -s 21 -d 28 -p ack -e 40 -c 0 -i 299 -a 1 -x {21.0 3.0 148 ------- null} + -t 17.322 -s 28 -d 1 -p ack -e 40 -c 0 -i 299 -a 1 -x {21.0 3.0 148 ------- null} - -t 17.322 -s 28 -d 1 -p ack -e 40 -c 0 -i 299 -a 1 -x {21.0 3.0 148 ------- null} h -t 17.322 -s 28 -d 1 -p ack -e 40 -c 0 -i 299 -a 1 -x {21.0 3.0 -1 ------- null} r -t 17.3236 -s 21 -d 28 -p ack -e 40 -c 0 -i 300 -a 1 -x {21.0 3.0 149 ------- null} + -t 17.3236 -s 28 -d 1 -p ack -e 40 -c 0 -i 300 -a 1 -x {21.0 3.0 149 ------- null} - -t 17.3236 -s 28 -d 1 -p ack -e 40 -c 0 -i 300 -a 1 -x {21.0 3.0 149 ------- null} h -t 17.3236 -s 28 -d 1 -p ack -e 40 -c 0 -i 300 -a 1 -x {21.0 3.0 -1 ------- null} r -t 17.3252 -s 21 -d 28 -p ack -e 40 -c 0 -i 301 -a 1 -x {21.0 3.0 150 ------- null} + -t 17.3252 -s 28 -d 1 -p ack -e 40 -c 0 -i 301 -a 1 -x {21.0 3.0 150 ------- null} - -t 17.3252 -s 28 -d 1 -p ack -e 40 -c 0 -i 301 -a 1 -x {21.0 3.0 150 ------- null} h -t 17.3252 -s 28 -d 1 -p ack -e 40 -c 0 -i 301 -a 1 -x {21.0 3.0 -1 ------- null} r -t 17.5948 -s 28 -d 1 -p ack -e 40 -c 0 -i 282 -a 1 -x {21.0 3.0 131 ------- null} + -t 17.5948 -s 1 -d 3 -p ack -e 40 -c 0 -i 282 -a 1 -x {21.0 3.0 131 ------- null} - -t 17.5948 -s 1 -d 3 -p ack -e 40 -c 0 -i 282 -a 1 -x {21.0 3.0 131 ------- null} h -t 17.5948 -s 1 -d 3 -p ack -e 40 -c 0 -i 282 -a 1 -x {21.0 3.0 -1 ------- null} r -t 17.5964 -s 28 -d 1 -p ack -e 40 -c 0 -i 283 -a 1 -x {21.0 3.0 132 ------- null} + -t 17.5964 -s 1 -d 3 -p ack -e 40 -c 0 -i 283 -a 1 -x {21.0 3.0 132 ------- null} - -t 17.5964 -s 1 -d 3 -p ack -e 40 -c 0 -i 283 -a 1 -x {21.0 3.0 132 ------- null} h -t 17.5964 -s 1 -d 3 -p ack -e 40 -c 0 -i 283 -a 1 -x {21.0 3.0 -1 ------- null} r -t 17.598 -s 28 -d 1 -p ack -e 40 -c 0 -i 284 -a 1 -x {21.0 3.0 133 ------- null} + -t 17.598 -s 1 -d 3 -p ack -e 40 -c 0 -i 284 -a 1 -x {21.0 3.0 133 ------- null} - -t 17.598 -s 1 -d 3 -p ack -e 40 -c 0 -i 284 -a 1 -x {21.0 3.0 133 ------- null} h -t 17.598 -s 1 -d 3 -p ack -e 40 -c 0 -i 284 -a 1 -x {21.0 3.0 -1 ------- null} r -t 17.5996 -s 28 -d 1 -p ack -e 40 -c 0 -i 285 -a 1 -x {21.0 3.0 134 ------- null} + -t 17.5996 -s 1 -d 3 -p ack -e 40 -c 0 -i 285 -a 1 -x {21.0 3.0 134 ------- null} - -t 17.5996 -s 1 -d 3 -p ack -e 40 -c 0 -i 285 -a 1 -x {21.0 3.0 134 ------- null} h -t 17.5996 -s 1 -d 3 -p ack -e 40 -c 0 -i 285 -a 1 -x {21.0 3.0 -1 ------- null} r -t 17.6012 -s 28 -d 1 -p ack -e 40 -c 0 -i 286 -a 1 -x {21.0 3.0 135 ------- null} + -t 17.6012 -s 1 -d 3 -p ack -e 40 -c 0 -i 286 -a 1 -x {21.0 3.0 135 ------- null} - -t 17.6012 -s 1 -d 3 -p ack -e 40 -c 0 -i 286 -a 1 -x {21.0 3.0 135 ------- null} h -t 17.6012 -s 1 -d 3 -p ack -e 40 -c 0 -i 286 -a 1 -x {21.0 3.0 -1 ------- null} r -t 17.6028 -s 28 -d 1 -p ack -e 40 -c 0 -i 287 -a 1 -x {21.0 3.0 136 ------- null} + -t 17.6028 -s 1 -d 3 -p ack -e 40 -c 0 -i 287 -a 1 -x {21.0 3.0 136 ------- null} - -t 17.6028 -s 1 -d 3 -p ack -e 40 -c 0 -i 287 -a 1 -x {21.0 3.0 136 ------- null} h -t 17.6028 -s 1 -d 3 -p ack -e 40 -c 0 -i 287 -a 1 -x {21.0 3.0 -1 ------- null} r -t 17.6044 -s 28 -d 1 -p ack -e 40 -c 0 -i 288 -a 1 -x {21.0 3.0 137 ------- null} + -t 17.6044 -s 1 -d 3 -p ack -e 40 -c 0 -i 288 -a 1 -x {21.0 3.0 137 ------- null} - -t 17.6044 -s 1 -d 3 -p ack -e 40 -c 0 -i 288 -a 1 -x {21.0 3.0 137 ------- null} h -t 17.6044 -s 1 -d 3 -p ack -e 40 -c 0 -i 288 -a 1 -x {21.0 3.0 -1 ------- null} r -t 17.606 -s 28 -d 1 -p ack -e 40 -c 0 -i 289 -a 1 -x {21.0 3.0 138 ------- null} + -t 17.606 -s 1 -d 3 -p ack -e 40 -c 0 -i 289 -a 1 -x {21.0 3.0 138 ------- null} - -t 17.606 -s 1 -d 3 -p ack -e 40 -c 0 -i 289 -a 1 -x {21.0 3.0 138 ------- null} h -t 17.606 -s 1 -d 3 -p ack -e 40 -c 0 -i 289 -a 1 -x {21.0 3.0 -1 ------- null} r -t 17.6076 -s 28 -d 1 -p ack -e 40 -c 0 -i 290 -a 1 -x {21.0 3.0 139 ------- null} + -t 17.6076 -s 1 -d 3 -p ack -e 40 -c 0 -i 290 -a 1 -x {21.0 3.0 139 ------- null} - -t 17.6076 -s 1 -d 3 -p ack -e 40 -c 0 -i 290 -a 1 -x {21.0 3.0 139 ------- null} h -t 17.6076 -s 1 -d 3 -p ack -e 40 -c 0 -i 290 -a 1 -x {21.0 3.0 -1 ------- null} r -t 17.6092 -s 28 -d 1 -p ack -e 40 -c 0 -i 291 -a 1 -x {21.0 3.0 140 ------- null} + -t 17.6092 -s 1 -d 3 -p ack -e 40 -c 0 -i 291 -a 1 -x {21.0 3.0 140 ------- null} - -t 17.6092 -s 1 -d 3 -p ack -e 40 -c 0 -i 291 -a 1 -x {21.0 3.0 140 ------- null} h -t 17.6092 -s 1 -d 3 -p ack -e 40 -c 0 -i 291 -a 1 -x {21.0 3.0 -1 ------- null} r -t 17.6108 -s 28 -d 1 -p ack -e 40 -c 0 -i 292 -a 1 -x {21.0 3.0 141 ------- null} + -t 17.6108 -s 1 -d 3 -p ack -e 40 -c 0 -i 292 -a 1 -x {21.0 3.0 141 ------- null} - -t 17.6108 -s 1 -d 3 -p ack -e 40 -c 0 -i 292 -a 1 -x {21.0 3.0 141 ------- null} h -t 17.6108 -s 1 -d 3 -p ack -e 40 -c 0 -i 292 -a 1 -x {21.0 3.0 -1 ------- null} r -t 17.6124 -s 28 -d 1 -p ack -e 40 -c 0 -i 293 -a 1 -x {21.0 3.0 142 ------- null} + -t 17.6124 -s 1 -d 3 -p ack -e 40 -c 0 -i 293 -a 1 -x {21.0 3.0 142 ------- null} - -t 17.6124 -s 1 -d 3 -p ack -e 40 -c 0 -i 293 -a 1 -x {21.0 3.0 142 ------- null} h -t 17.6124 -s 1 -d 3 -p ack -e 40 -c 0 -i 293 -a 1 -x {21.0 3.0 -1 ------- null} r -t 17.614 -s 28 -d 1 -p ack -e 40 -c 0 -i 294 -a 1 -x {21.0 3.0 143 ------- null} + -t 17.614 -s 1 -d 3 -p ack -e 40 -c 0 -i 294 -a 1 -x {21.0 3.0 143 ------- null} - -t 17.614 -s 1 -d 3 -p ack -e 40 -c 0 -i 294 -a 1 -x {21.0 3.0 143 ------- null} h -t 17.614 -s 1 -d 3 -p ack -e 40 -c 0 -i 294 -a 1 -x {21.0 3.0 -1 ------- null} r -t 17.6156 -s 28 -d 1 -p ack -e 40 -c 0 -i 295 -a 1 -x {21.0 3.0 144 ------- null} + -t 17.6156 -s 1 -d 3 -p ack -e 40 -c 0 -i 295 -a 1 -x {21.0 3.0 144 ------- null} - -t 17.6156 -s 1 -d 3 -p ack -e 40 -c 0 -i 295 -a 1 -x {21.0 3.0 144 ------- null} h -t 17.6156 -s 1 -d 3 -p ack -e 40 -c 0 -i 295 -a 1 -x {21.0 3.0 -1 ------- null} r -t 17.6172 -s 28 -d 1 -p ack -e 40 -c 0 -i 296 -a 1 -x {21.0 3.0 145 ------- null} + -t 17.6172 -s 1 -d 3 -p ack -e 40 -c 0 -i 296 -a 1 -x {21.0 3.0 145 ------- null} - -t 17.6172 -s 1 -d 3 -p ack -e 40 -c 0 -i 296 -a 1 -x {21.0 3.0 145 ------- null} h -t 17.6172 -s 1 -d 3 -p ack -e 40 -c 0 -i 296 -a 1 -x {21.0 3.0 -1 ------- null} r -t 17.6188 -s 28 -d 1 -p ack -e 40 -c 0 -i 297 -a 1 -x {21.0 3.0 146 ------- null} + -t 17.6188 -s 1 -d 3 -p ack -e 40 -c 0 -i 297 -a 1 -x {21.0 3.0 146 ------- null} - -t 17.6188 -s 1 -d 3 -p ack -e 40 -c 0 -i 297 -a 1 -x {21.0 3.0 146 ------- null} h -t 17.6188 -s 1 -d 3 -p ack -e 40 -c 0 -i 297 -a 1 -x {21.0 3.0 -1 ------- null} r -t 17.6204 -s 28 -d 1 -p ack -e 40 -c 0 -i 298 -a 1 -x {21.0 3.0 147 ------- null} + -t 17.6204 -s 1 -d 3 -p ack -e 40 -c 0 -i 298 -a 1 -x {21.0 3.0 147 ------- null} - -t 17.6204 -s 1 -d 3 -p ack -e 40 -c 0 -i 298 -a 1 -x {21.0 3.0 147 ------- null} h -t 17.6204 -s 1 -d 3 -p ack -e 40 -c 0 -i 298 -a 1 -x {21.0 3.0 -1 ------- null} r -t 17.622 -s 28 -d 1 -p ack -e 40 -c 0 -i 299 -a 1 -x {21.0 3.0 148 ------- null} + -t 17.622 -s 1 -d 3 -p ack -e 40 -c 0 -i 299 -a 1 -x {21.0 3.0 148 ------- null} - -t 17.622 -s 1 -d 3 -p ack -e 40 -c 0 -i 299 -a 1 -x {21.0 3.0 148 ------- null} h -t 17.622 -s 1 -d 3 -p ack -e 40 -c 0 -i 299 -a 1 -x {21.0 3.0 -1 ------- null} r -t 17.6236 -s 28 -d 1 -p ack -e 40 -c 0 -i 300 -a 1 -x {21.0 3.0 149 ------- null} + -t 17.6236 -s 1 -d 3 -p ack -e 40 -c 0 -i 300 -a 1 -x {21.0 3.0 149 ------- null} - -t 17.6236 -s 1 -d 3 -p ack -e 40 -c 0 -i 300 -a 1 -x {21.0 3.0 149 ------- null} h -t 17.6236 -s 1 -d 3 -p ack -e 40 -c 0 -i 300 -a 1 -x {21.0 3.0 -1 ------- null} r -t 17.6252 -s 28 -d 1 -p ack -e 40 -c 0 -i 301 -a 1 -x {21.0 3.0 150 ------- null} + -t 17.6252 -s 1 -d 3 -p ack -e 40 -c 0 -i 301 -a 1 -x {21.0 3.0 150 ------- null} - -t 17.6252 -s 1 -d 3 -p ack -e 40 -c 0 -i 301 -a 1 -x {21.0 3.0 150 ------- null} h -t 17.6252 -s 1 -d 3 -p ack -e 40 -c 0 -i 301 -a 1 -x {21.0 3.0 -1 ------- null} r -t 17.7349 -s 1 -d 3 -p ack -e 40 -c 0 -i 282 -a 1 -x {21.0 3.0 131 ------- null} + -t 17.7349 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {3.0 21.0 151 ------- null} - -t 17.7349 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {3.0 21.0 151 ------- null} h -t 17.7349 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.7365 -s 1 -d 3 -p ack -e 40 -c 0 -i 283 -a 1 -x {21.0 3.0 132 ------- null} + -t 17.7365 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {3.0 21.0 152 ------- null} - -t 17.7365 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {3.0 21.0 152 ------- null} h -t 17.7365 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.7381 -s 1 -d 3 -p ack -e 40 -c 0 -i 284 -a 1 -x {21.0 3.0 133 ------- null} + -t 17.7381 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {3.0 21.0 153 ------- null} - -t 17.7381 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {3.0 21.0 153 ------- null} h -t 17.7381 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.7397 -s 1 -d 3 -p ack -e 40 -c 0 -i 285 -a 1 -x {21.0 3.0 134 ------- null} + -t 17.7397 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {3.0 21.0 154 ------- null} - -t 17.7397 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {3.0 21.0 154 ------- null} h -t 17.7397 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.7413 -s 1 -d 3 -p ack -e 40 -c 0 -i 286 -a 1 -x {21.0 3.0 135 ------- null} + -t 17.7413 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {3.0 21.0 155 ------- null} - -t 17.7413 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {3.0 21.0 155 ------- null} h -t 17.7413 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.7429 -s 1 -d 3 -p ack -e 40 -c 0 -i 287 -a 1 -x {21.0 3.0 136 ------- null} + -t 17.7429 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {3.0 21.0 156 ------- null} - -t 17.7429 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {3.0 21.0 156 ------- null} h -t 17.7429 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.7445 -s 1 -d 3 -p ack -e 40 -c 0 -i 288 -a 1 -x {21.0 3.0 137 ------- null} + -t 17.7445 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {3.0 21.0 157 ------- null} - -t 17.7445 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {3.0 21.0 157 ------- null} h -t 17.7445 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.7461 -s 1 -d 3 -p ack -e 40 -c 0 -i 289 -a 1 -x {21.0 3.0 138 ------- null} + -t 17.7461 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {3.0 21.0 158 ------- null} - -t 17.7461 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {3.0 21.0 158 ------- null} h -t 17.7461 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.7477 -s 1 -d 3 -p ack -e 40 -c 0 -i 290 -a 1 -x {21.0 3.0 139 ------- null} + -t 17.7477 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 310 -a 0 -x {3.0 21.0 159 ------- null} - -t 17.7477 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 310 -a 0 -x {3.0 21.0 159 ------- null} h -t 17.7477 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 310 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.7493 -s 1 -d 3 -p ack -e 40 -c 0 -i 291 -a 1 -x {21.0 3.0 140 ------- null} + -t 17.7493 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {3.0 21.0 160 ------- null} - -t 17.7493 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {3.0 21.0 160 ------- null} h -t 17.7493 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.7509 -s 1 -d 3 -p ack -e 40 -c 0 -i 292 -a 1 -x {21.0 3.0 141 ------- null} + -t 17.7509 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 312 -a 0 -x {3.0 21.0 161 ------- null} - -t 17.7509 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 312 -a 0 -x {3.0 21.0 161 ------- null} h -t 17.7509 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 312 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.7525 -s 1 -d 3 -p ack -e 40 -c 0 -i 293 -a 1 -x {21.0 3.0 142 ------- null} + -t 17.7525 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {3.0 21.0 162 ------- null} - -t 17.7525 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {3.0 21.0 162 ------- null} h -t 17.7525 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.7541 -s 1 -d 3 -p ack -e 40 -c 0 -i 294 -a 1 -x {21.0 3.0 143 ------- null} + -t 17.7541 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 314 -a 0 -x {3.0 21.0 163 ------- null} - -t 17.7541 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 314 -a 0 -x {3.0 21.0 163 ------- null} h -t 17.7541 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 314 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.7557 -s 1 -d 3 -p ack -e 40 -c 0 -i 295 -a 1 -x {21.0 3.0 144 ------- null} + -t 17.7557 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {3.0 21.0 164 ------- null} - -t 17.7557 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {3.0 21.0 164 ------- null} h -t 17.7557 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.7573 -s 1 -d 3 -p ack -e 40 -c 0 -i 296 -a 1 -x {21.0 3.0 145 ------- null} + -t 17.7573 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 316 -a 0 -x {3.0 21.0 165 ------- null} - -t 17.7573 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 316 -a 0 -x {3.0 21.0 165 ------- null} h -t 17.7573 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 316 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.7589 -s 1 -d 3 -p ack -e 40 -c 0 -i 297 -a 1 -x {21.0 3.0 146 ------- null} + -t 17.7589 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {3.0 21.0 166 ------- null} - -t 17.7589 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {3.0 21.0 166 ------- null} h -t 17.7589 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.7605 -s 1 -d 3 -p ack -e 40 -c 0 -i 298 -a 1 -x {21.0 3.0 147 ------- null} + -t 17.7605 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 318 -a 0 -x {3.0 21.0 167 ------- null} - -t 17.7605 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 318 -a 0 -x {3.0 21.0 167 ------- null} h -t 17.7605 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 318 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.7621 -s 1 -d 3 -p ack -e 40 -c 0 -i 299 -a 1 -x {21.0 3.0 148 ------- null} + -t 17.7621 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {3.0 21.0 168 ------- null} - -t 17.7621 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {3.0 21.0 168 ------- null} h -t 17.7621 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.7637 -s 1 -d 3 -p ack -e 40 -c 0 -i 300 -a 1 -x {21.0 3.0 149 ------- null} + -t 17.7637 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {3.0 21.0 169 ------- null} - -t 17.7637 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {3.0 21.0 169 ------- null} h -t 17.7637 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.7653 -s 1 -d 3 -p ack -e 40 -c 0 -i 301 -a 1 -x {21.0 3.0 150 ------- null} + -t 17.7653 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {3.0 21.0 170 ------- null} - -t 17.7653 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {3.0 21.0 170 ------- null} h -t 17.7653 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.8765 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {3.0 21.0 151 ------- null} + -t 17.8765 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {3.0 21.0 151 ------- null} - -t 17.8765 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {3.0 21.0 151 ------- null} h -t 17.8765 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.8781 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {3.0 21.0 152 ------- null} + -t 17.8781 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {3.0 21.0 152 ------- null} - -t 17.8781 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {3.0 21.0 152 ------- null} h -t 17.8781 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.8797 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {3.0 21.0 153 ------- null} + -t 17.8797 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {3.0 21.0 153 ------- null} - -t 17.8797 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {3.0 21.0 153 ------- null} h -t 17.8797 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.8813 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {3.0 21.0 154 ------- null} + -t 17.8813 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {3.0 21.0 154 ------- null} - -t 17.8813 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {3.0 21.0 154 ------- null} h -t 17.8813 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.8829 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {3.0 21.0 155 ------- null} + -t 17.8829 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {3.0 21.0 155 ------- null} - -t 17.8829 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {3.0 21.0 155 ------- null} h -t 17.8829 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.8845 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {3.0 21.0 156 ------- null} + -t 17.8845 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {3.0 21.0 156 ------- null} - -t 17.8845 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {3.0 21.0 156 ------- null} h -t 17.8845 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.8861 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {3.0 21.0 157 ------- null} + -t 17.8861 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {3.0 21.0 157 ------- null} - -t 17.8861 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {3.0 21.0 157 ------- null} h -t 17.8861 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.8877 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {3.0 21.0 158 ------- null} + -t 17.8877 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {3.0 21.0 158 ------- null} - -t 17.8877 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {3.0 21.0 158 ------- null} h -t 17.8877 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.8893 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 310 -a 0 -x {3.0 21.0 159 ------- null} + -t 17.8893 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 310 -a 0 -x {3.0 21.0 159 ------- null} - -t 17.8893 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 310 -a 0 -x {3.0 21.0 159 ------- null} h -t 17.8893 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 310 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.8909 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {3.0 21.0 160 ------- null} + -t 17.8909 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {3.0 21.0 160 ------- null} - -t 17.8909 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {3.0 21.0 160 ------- null} h -t 17.8909 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.8925 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 312 -a 0 -x {3.0 21.0 161 ------- null} + -t 17.8925 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 312 -a 0 -x {3.0 21.0 161 ------- null} - -t 17.8925 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 312 -a 0 -x {3.0 21.0 161 ------- null} h -t 17.8925 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 312 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.8941 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {3.0 21.0 162 ------- null} + -t 17.8941 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {3.0 21.0 162 ------- null} - -t 17.8941 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {3.0 21.0 162 ------- null} h -t 17.8941 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.8957 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 314 -a 0 -x {3.0 21.0 163 ------- null} + -t 17.8957 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 314 -a 0 -x {3.0 21.0 163 ------- null} - -t 17.8957 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 314 -a 0 -x {3.0 21.0 163 ------- null} h -t 17.8957 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 314 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.8973 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {3.0 21.0 164 ------- null} + -t 17.8973 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {3.0 21.0 164 ------- null} - -t 17.8973 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {3.0 21.0 164 ------- null} h -t 17.8973 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.8989 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 316 -a 0 -x {3.0 21.0 165 ------- null} + -t 17.8989 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 316 -a 0 -x {3.0 21.0 165 ------- null} - -t 17.8989 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 316 -a 0 -x {3.0 21.0 165 ------- null} h -t 17.8989 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 316 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.9005 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {3.0 21.0 166 ------- null} + -t 17.9005 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {3.0 21.0 166 ------- null} - -t 17.9005 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {3.0 21.0 166 ------- null} h -t 17.9005 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.9021 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 318 -a 0 -x {3.0 21.0 167 ------- null} + -t 17.9021 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 318 -a 0 -x {3.0 21.0 167 ------- null} - -t 17.9021 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 318 -a 0 -x {3.0 21.0 167 ------- null} h -t 17.9021 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 318 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.9037 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {3.0 21.0 168 ------- null} + -t 17.9037 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {3.0 21.0 168 ------- null} - -t 17.9037 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {3.0 21.0 168 ------- null} h -t 17.9037 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.9053 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {3.0 21.0 169 ------- null} + -t 17.9053 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {3.0 21.0 169 ------- null} - -t 17.9053 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {3.0 21.0 169 ------- null} h -t 17.9053 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {3.0 21.0 -1 ------- null} r -t 17.9069 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {3.0 21.0 170 ------- null} + -t 17.9069 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {3.0 21.0 170 ------- null} - -t 17.9069 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {3.0 21.0 170 ------- null} h -t 17.9069 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {3.0 21.0 -1 ------- null} r -t 18.1781 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {3.0 21.0 151 ------- null} + -t 18.1781 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {3.0 21.0 151 ------- null} - -t 18.1781 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {3.0 21.0 151 ------- null} h -t 18.1781 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {3.0 21.0 -1 ------- null} r -t 18.1797 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {3.0 21.0 152 ------- null} + -t 18.1797 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {3.0 21.0 152 ------- null} - -t 18.1797 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {3.0 21.0 152 ------- null} h -t 18.1797 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {3.0 21.0 -1 ------- null} r -t 18.1813 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {3.0 21.0 153 ------- null} + -t 18.1813 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {3.0 21.0 153 ------- null} - -t 18.1813 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {3.0 21.0 153 ------- null} h -t 18.1813 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {3.0 21.0 -1 ------- null} r -t 18.1829 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {3.0 21.0 154 ------- null} + -t 18.1829 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {3.0 21.0 154 ------- null} - -t 18.1829 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {3.0 21.0 154 ------- null} h -t 18.1829 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {3.0 21.0 -1 ------- null} r -t 18.1845 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {3.0 21.0 155 ------- null} + -t 18.1845 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {3.0 21.0 155 ------- null} - -t 18.1845 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {3.0 21.0 155 ------- null} h -t 18.1845 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {3.0 21.0 -1 ------- null} r -t 18.1861 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {3.0 21.0 156 ------- null} + -t 18.1861 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {3.0 21.0 156 ------- null} - -t 18.1861 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {3.0 21.0 156 ------- null} h -t 18.1861 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {3.0 21.0 -1 ------- null} r -t 18.1877 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {3.0 21.0 157 ------- null} + -t 18.1877 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {3.0 21.0 157 ------- null} - -t 18.1877 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {3.0 21.0 157 ------- null} h -t 18.1877 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {3.0 21.0 -1 ------- null} r -t 18.1893 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {3.0 21.0 158 ------- null} + -t 18.1893 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {3.0 21.0 158 ------- null} - -t 18.1893 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {3.0 21.0 158 ------- null} h -t 18.1893 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {3.0 21.0 -1 ------- null} r -t 18.1909 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 310 -a 0 -x {3.0 21.0 159 ------- null} + -t 18.1909 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 310 -a 0 -x {3.0 21.0 159 ------- null} - -t 18.1909 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 310 -a 0 -x {3.0 21.0 159 ------- null} h -t 18.1909 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 310 -a 0 -x {3.0 21.0 -1 ------- null} r -t 18.1925 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {3.0 21.0 160 ------- null} + -t 18.1925 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {3.0 21.0 160 ------- null} - -t 18.1925 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {3.0 21.0 160 ------- null} h -t 18.1925 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {3.0 21.0 -1 ------- null} r -t 18.1941 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 312 -a 0 -x {3.0 21.0 161 ------- null} + -t 18.1941 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 312 -a 0 -x {3.0 21.0 161 ------- null} - -t 18.1941 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 312 -a 0 -x {3.0 21.0 161 ------- null} h -t 18.1941 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 312 -a 0 -x {3.0 21.0 -1 ------- null} r -t 18.1957 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {3.0 21.0 162 ------- null} + -t 18.1957 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {3.0 21.0 162 ------- null} - -t 18.1957 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {3.0 21.0 162 ------- null} h -t 18.1957 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {3.0 21.0 -1 ------- null} r -t 18.1973 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 314 -a 0 -x {3.0 21.0 163 ------- null} + -t 18.1973 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 314 -a 0 -x {3.0 21.0 163 ------- null} - -t 18.1973 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 314 -a 0 -x {3.0 21.0 163 ------- null} h -t 18.1973 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 314 -a 0 -x {3.0 21.0 -1 ------- null} r -t 18.1989 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {3.0 21.0 164 ------- null} + -t 18.1989 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {3.0 21.0 164 ------- null} - -t 18.1989 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {3.0 21.0 164 ------- null} h -t 18.1989 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {3.0 21.0 -1 ------- null} r -t 18.2005 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 316 -a 0 -x {3.0 21.0 165 ------- null} + -t 18.2005 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 316 -a 0 -x {3.0 21.0 165 ------- null} - -t 18.2005 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 316 -a 0 -x {3.0 21.0 165 ------- null} h -t 18.2005 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 316 -a 0 -x {3.0 21.0 -1 ------- null} r -t 18.2021 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {3.0 21.0 166 ------- null} + -t 18.2021 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {3.0 21.0 166 ------- null} - -t 18.2021 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {3.0 21.0 166 ------- null} h -t 18.2021 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {3.0 21.0 -1 ------- null} r -t 18.2037 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 318 -a 0 -x {3.0 21.0 167 ------- null} + -t 18.2037 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 318 -a 0 -x {3.0 21.0 167 ------- null} - -t 18.2037 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 318 -a 0 -x {3.0 21.0 167 ------- null} h -t 18.2037 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 318 -a 0 -x {3.0 21.0 -1 ------- null} r -t 18.2053 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {3.0 21.0 168 ------- null} + -t 18.2053 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {3.0 21.0 168 ------- null} - -t 18.2053 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {3.0 21.0 168 ------- null} h -t 18.2053 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {3.0 21.0 -1 ------- null} r -t 18.2069 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {3.0 21.0 169 ------- null} + -t 18.2069 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {3.0 21.0 169 ------- null} - -t 18.2069 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {3.0 21.0 169 ------- null} h -t 18.2069 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {3.0 21.0 -1 ------- null} r -t 18.2085 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {3.0 21.0 170 ------- null} + -t 18.2085 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {3.0 21.0 170 ------- null} - -t 18.2085 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {3.0 21.0 170 ------- null} h -t 18.2085 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {3.0 21.0 -1 ------- null} r -t 18.5297 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {3.0 21.0 151 ------- null} + -t 18.5297 -s 21 -d 28 -p ack -e 40 -c 0 -i 322 -a 1 -x {21.0 3.0 151 ------- null} - -t 18.5297 -s 21 -d 28 -p ack -e 40 -c 0 -i 322 -a 1 -x {21.0 3.0 151 ------- null} h -t 18.5297 -s 21 -d 28 -p ack -e 40 -c 0 -i 322 -a 1 -x {21.0 3.0 -1 ------- null} r -t 18.5313 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {3.0 21.0 152 ------- null} + -t 18.5313 -s 21 -d 28 -p ack -e 40 -c 0 -i 323 -a 1 -x {21.0 3.0 152 ------- null} - -t 18.5313 -s 21 -d 28 -p ack -e 40 -c 0 -i 323 -a 1 -x {21.0 3.0 152 ------- null} h -t 18.5313 -s 21 -d 28 -p ack -e 40 -c 0 -i 323 -a 1 -x {21.0 3.0 -1 ------- null} r -t 18.5329 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {3.0 21.0 153 ------- null} + -t 18.5329 -s 21 -d 28 -p ack -e 40 -c 0 -i 324 -a 1 -x {21.0 3.0 153 ------- null} - -t 18.5329 -s 21 -d 28 -p ack -e 40 -c 0 -i 324 -a 1 -x {21.0 3.0 153 ------- null} h -t 18.5329 -s 21 -d 28 -p ack -e 40 -c 0 -i 324 -a 1 -x {21.0 3.0 -1 ------- null} r -t 18.5345 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {3.0 21.0 154 ------- null} + -t 18.5345 -s 21 -d 28 -p ack -e 40 -c 0 -i 325 -a 1 -x {21.0 3.0 154 ------- null} - -t 18.5345 -s 21 -d 28 -p ack -e 40 -c 0 -i 325 -a 1 -x {21.0 3.0 154 ------- null} h -t 18.5345 -s 21 -d 28 -p ack -e 40 -c 0 -i 325 -a 1 -x {21.0 3.0 -1 ------- null} r -t 18.5361 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {3.0 21.0 155 ------- null} + -t 18.5361 -s 21 -d 28 -p ack -e 40 -c 0 -i 326 -a 1 -x {21.0 3.0 155 ------- null} - -t 18.5361 -s 21 -d 28 -p ack -e 40 -c 0 -i 326 -a 1 -x {21.0 3.0 155 ------- null} h -t 18.5361 -s 21 -d 28 -p ack -e 40 -c 0 -i 326 -a 1 -x {21.0 3.0 -1 ------- null} r -t 18.5377 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {3.0 21.0 156 ------- null} + -t 18.5377 -s 21 -d 28 -p ack -e 40 -c 0 -i 327 -a 1 -x {21.0 3.0 156 ------- null} - -t 18.5377 -s 21 -d 28 -p ack -e 40 -c 0 -i 327 -a 1 -x {21.0 3.0 156 ------- null} h -t 18.5377 -s 21 -d 28 -p ack -e 40 -c 0 -i 327 -a 1 -x {21.0 3.0 -1 ------- null} r -t 18.5393 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {3.0 21.0 157 ------- null} + -t 18.5393 -s 21 -d 28 -p ack -e 40 -c 0 -i 328 -a 1 -x {21.0 3.0 157 ------- null} - -t 18.5393 -s 21 -d 28 -p ack -e 40 -c 0 -i 328 -a 1 -x {21.0 3.0 157 ------- null} h -t 18.5393 -s 21 -d 28 -p ack -e 40 -c 0 -i 328 -a 1 -x {21.0 3.0 -1 ------- null} r -t 18.5409 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {3.0 21.0 158 ------- null} + -t 18.5409 -s 21 -d 28 -p ack -e 40 -c 0 -i 329 -a 1 -x {21.0 3.0 158 ------- null} - -t 18.5409 -s 21 -d 28 -p ack -e 40 -c 0 -i 329 -a 1 -x {21.0 3.0 158 ------- null} h -t 18.5409 -s 21 -d 28 -p ack -e 40 -c 0 -i 329 -a 1 -x {21.0 3.0 -1 ------- null} r -t 18.5425 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 310 -a 0 -x {3.0 21.0 159 ------- null} + -t 18.5425 -s 21 -d 28 -p ack -e 40 -c 0 -i 330 -a 1 -x {21.0 3.0 159 ------- null} - -t 18.5425 -s 21 -d 28 -p ack -e 40 -c 0 -i 330 -a 1 -x {21.0 3.0 159 ------- null} h -t 18.5425 -s 21 -d 28 -p ack -e 40 -c 0 -i 330 -a 1 -x {21.0 3.0 -1 ------- null} r -t 18.5441 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {3.0 21.0 160 ------- null} + -t 18.5441 -s 21 -d 28 -p ack -e 40 -c 0 -i 331 -a 1 -x {21.0 3.0 160 ------- null} - -t 18.5441 -s 21 -d 28 -p ack -e 40 -c 0 -i 331 -a 1 -x {21.0 3.0 160 ------- null} h -t 18.5441 -s 21 -d 28 -p ack -e 40 -c 0 -i 331 -a 1 -x {21.0 3.0 -1 ------- null} r -t 18.5457 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 312 -a 0 -x {3.0 21.0 161 ------- null} + -t 18.5457 -s 21 -d 28 -p ack -e 40 -c 0 -i 332 -a 1 -x {21.0 3.0 161 ------- null} - -t 18.5457 -s 21 -d 28 -p ack -e 40 -c 0 -i 332 -a 1 -x {21.0 3.0 161 ------- null} h -t 18.5457 -s 21 -d 28 -p ack -e 40 -c 0 -i 332 -a 1 -x {21.0 3.0 -1 ------- null} r -t 18.5473 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {3.0 21.0 162 ------- null} + -t 18.5473 -s 21 -d 28 -p ack -e 40 -c 0 -i 333 -a 1 -x {21.0 3.0 162 ------- null} - -t 18.5473 -s 21 -d 28 -p ack -e 40 -c 0 -i 333 -a 1 -x {21.0 3.0 162 ------- null} h -t 18.5473 -s 21 -d 28 -p ack -e 40 -c 0 -i 333 -a 1 -x {21.0 3.0 -1 ------- null} r -t 18.5489 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 314 -a 0 -x {3.0 21.0 163 ------- null} + -t 18.5489 -s 21 -d 28 -p ack -e 40 -c 0 -i 334 -a 1 -x {21.0 3.0 163 ------- null} - -t 18.5489 -s 21 -d 28 -p ack -e 40 -c 0 -i 334 -a 1 -x {21.0 3.0 163 ------- null} h -t 18.5489 -s 21 -d 28 -p ack -e 40 -c 0 -i 334 -a 1 -x {21.0 3.0 -1 ------- null} r -t 18.5505 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {3.0 21.0 164 ------- null} + -t 18.5505 -s 21 -d 28 -p ack -e 40 -c 0 -i 335 -a 1 -x {21.0 3.0 164 ------- null} - -t 18.5505 -s 21 -d 28 -p ack -e 40 -c 0 -i 335 -a 1 -x {21.0 3.0 164 ------- null} h -t 18.5505 -s 21 -d 28 -p ack -e 40 -c 0 -i 335 -a 1 -x {21.0 3.0 -1 ------- null} r -t 18.5521 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 316 -a 0 -x {3.0 21.0 165 ------- null} + -t 18.5521 -s 21 -d 28 -p ack -e 40 -c 0 -i 336 -a 1 -x {21.0 3.0 165 ------- null} - -t 18.5521 -s 21 -d 28 -p ack -e 40 -c 0 -i 336 -a 1 -x {21.0 3.0 165 ------- null} h -t 18.5521 -s 21 -d 28 -p ack -e 40 -c 0 -i 336 -a 1 -x {21.0 3.0 -1 ------- null} r -t 18.5537 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {3.0 21.0 166 ------- null} + -t 18.5537 -s 21 -d 28 -p ack -e 40 -c 0 -i 337 -a 1 -x {21.0 3.0 166 ------- null} - -t 18.5537 -s 21 -d 28 -p ack -e 40 -c 0 -i 337 -a 1 -x {21.0 3.0 166 ------- null} h -t 18.5537 -s 21 -d 28 -p ack -e 40 -c 0 -i 337 -a 1 -x {21.0 3.0 -1 ------- null} r -t 18.5553 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 318 -a 0 -x {3.0 21.0 167 ------- null} + -t 18.5553 -s 21 -d 28 -p ack -e 40 -c 0 -i 338 -a 1 -x {21.0 3.0 167 ------- null} - -t 18.5553 -s 21 -d 28 -p ack -e 40 -c 0 -i 338 -a 1 -x {21.0 3.0 167 ------- null} h -t 18.5553 -s 21 -d 28 -p ack -e 40 -c 0 -i 338 -a 1 -x {21.0 3.0 -1 ------- null} r -t 18.5569 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {3.0 21.0 168 ------- null} + -t 18.5569 -s 21 -d 28 -p ack -e 40 -c 0 -i 339 -a 1 -x {21.0 3.0 168 ------- null} - -t 18.5569 -s 21 -d 28 -p ack -e 40 -c 0 -i 339 -a 1 -x {21.0 3.0 168 ------- null} h -t 18.5569 -s 21 -d 28 -p ack -e 40 -c 0 -i 339 -a 1 -x {21.0 3.0 -1 ------- null} r -t 18.5585 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {3.0 21.0 169 ------- null} + -t 18.5585 -s 21 -d 28 -p ack -e 40 -c 0 -i 340 -a 1 -x {21.0 3.0 169 ------- null} - -t 18.5585 -s 21 -d 28 -p ack -e 40 -c 0 -i 340 -a 1 -x {21.0 3.0 169 ------- null} h -t 18.5585 -s 21 -d 28 -p ack -e 40 -c 0 -i 340 -a 1 -x {21.0 3.0 -1 ------- null} r -t 18.5601 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {3.0 21.0 170 ------- null} + -t 18.5601 -s 21 -d 28 -p ack -e 40 -c 0 -i 341 -a 1 -x {21.0 3.0 170 ------- null} - -t 18.5601 -s 21 -d 28 -p ack -e 40 -c 0 -i 341 -a 1 -x {21.0 3.0 170 ------- null} h -t 18.5601 -s 21 -d 28 -p ack -e 40 -c 0 -i 341 -a 1 -x {21.0 3.0 -1 ------- null} r -t 18.8798 -s 21 -d 28 -p ack -e 40 -c 0 -i 322 -a 1 -x {21.0 3.0 151 ------- null} + -t 18.8798 -s 28 -d 1 -p ack -e 40 -c 0 -i 322 -a 1 -x {21.0 3.0 151 ------- null} - -t 18.8798 -s 28 -d 1 -p ack -e 40 -c 0 -i 322 -a 1 -x {21.0 3.0 151 ------- null} h -t 18.8798 -s 28 -d 1 -p ack -e 40 -c 0 -i 322 -a 1 -x {21.0 3.0 -1 ------- null} r -t 18.8814 -s 21 -d 28 -p ack -e 40 -c 0 -i 323 -a 1 -x {21.0 3.0 152 ------- null} + -t 18.8814 -s 28 -d 1 -p ack -e 40 -c 0 -i 323 -a 1 -x {21.0 3.0 152 ------- null} - -t 18.8814 -s 28 -d 1 -p ack -e 40 -c 0 -i 323 -a 1 -x {21.0 3.0 152 ------- null} h -t 18.8814 -s 28 -d 1 -p ack -e 40 -c 0 -i 323 -a 1 -x {21.0 3.0 -1 ------- null} r -t 18.883 -s 21 -d 28 -p ack -e 40 -c 0 -i 324 -a 1 -x {21.0 3.0 153 ------- null} + -t 18.883 -s 28 -d 1 -p ack -e 40 -c 0 -i 324 -a 1 -x {21.0 3.0 153 ------- null} - -t 18.883 -s 28 -d 1 -p ack -e 40 -c 0 -i 324 -a 1 -x {21.0 3.0 153 ------- null} h -t 18.883 -s 28 -d 1 -p ack -e 40 -c 0 -i 324 -a 1 -x {21.0 3.0 -1 ------- null} r -t 18.8846 -s 21 -d 28 -p ack -e 40 -c 0 -i 325 -a 1 -x {21.0 3.0 154 ------- null} + -t 18.8846 -s 28 -d 1 -p ack -e 40 -c 0 -i 325 -a 1 -x {21.0 3.0 154 ------- null} - -t 18.8846 -s 28 -d 1 -p ack -e 40 -c 0 -i 325 -a 1 -x {21.0 3.0 154 ------- null} h -t 18.8846 -s 28 -d 1 -p ack -e 40 -c 0 -i 325 -a 1 -x {21.0 3.0 -1 ------- null} r -t 18.8862 -s 21 -d 28 -p ack -e 40 -c 0 -i 326 -a 1 -x {21.0 3.0 155 ------- null} + -t 18.8862 -s 28 -d 1 -p ack -e 40 -c 0 -i 326 -a 1 -x {21.0 3.0 155 ------- null} - -t 18.8862 -s 28 -d 1 -p ack -e 40 -c 0 -i 326 -a 1 -x {21.0 3.0 155 ------- null} h -t 18.8862 -s 28 -d 1 -p ack -e 40 -c 0 -i 326 -a 1 -x {21.0 3.0 -1 ------- null} r -t 18.8878 -s 21 -d 28 -p ack -e 40 -c 0 -i 327 -a 1 -x {21.0 3.0 156 ------- null} + -t 18.8878 -s 28 -d 1 -p ack -e 40 -c 0 -i 327 -a 1 -x {21.0 3.0 156 ------- null} - -t 18.8878 -s 28 -d 1 -p ack -e 40 -c 0 -i 327 -a 1 -x {21.0 3.0 156 ------- null} h -t 18.8878 -s 28 -d 1 -p ack -e 40 -c 0 -i 327 -a 1 -x {21.0 3.0 -1 ------- null} r -t 18.8894 -s 21 -d 28 -p ack -e 40 -c 0 -i 328 -a 1 -x {21.0 3.0 157 ------- null} + -t 18.8894 -s 28 -d 1 -p ack -e 40 -c 0 -i 328 -a 1 -x {21.0 3.0 157 ------- null} - -t 18.8894 -s 28 -d 1 -p ack -e 40 -c 0 -i 328 -a 1 -x {21.0 3.0 157 ------- null} h -t 18.8894 -s 28 -d 1 -p ack -e 40 -c 0 -i 328 -a 1 -x {21.0 3.0 -1 ------- null} r -t 18.891 -s 21 -d 28 -p ack -e 40 -c 0 -i 329 -a 1 -x {21.0 3.0 158 ------- null} + -t 18.891 -s 28 -d 1 -p ack -e 40 -c 0 -i 329 -a 1 -x {21.0 3.0 158 ------- null} - -t 18.891 -s 28 -d 1 -p ack -e 40 -c 0 -i 329 -a 1 -x {21.0 3.0 158 ------- null} h -t 18.891 -s 28 -d 1 -p ack -e 40 -c 0 -i 329 -a 1 -x {21.0 3.0 -1 ------- null} r -t 18.8926 -s 21 -d 28 -p ack -e 40 -c 0 -i 330 -a 1 -x {21.0 3.0 159 ------- null} + -t 18.8926 -s 28 -d 1 -p ack -e 40 -c 0 -i 330 -a 1 -x {21.0 3.0 159 ------- null} - -t 18.8926 -s 28 -d 1 -p ack -e 40 -c 0 -i 330 -a 1 -x {21.0 3.0 159 ------- null} h -t 18.8926 -s 28 -d 1 -p ack -e 40 -c 0 -i 330 -a 1 -x {21.0 3.0 -1 ------- null} r -t 18.8942 -s 21 -d 28 -p ack -e 40 -c 0 -i 331 -a 1 -x {21.0 3.0 160 ------- null} + -t 18.8942 -s 28 -d 1 -p ack -e 40 -c 0 -i 331 -a 1 -x {21.0 3.0 160 ------- null} - -t 18.8942 -s 28 -d 1 -p ack -e 40 -c 0 -i 331 -a 1 -x {21.0 3.0 160 ------- null} h -t 18.8942 -s 28 -d 1 -p ack -e 40 -c 0 -i 331 -a 1 -x {21.0 3.0 -1 ------- null} r -t 18.8958 -s 21 -d 28 -p ack -e 40 -c 0 -i 332 -a 1 -x {21.0 3.0 161 ------- null} + -t 18.8958 -s 28 -d 1 -p ack -e 40 -c 0 -i 332 -a 1 -x {21.0 3.0 161 ------- null} - -t 18.8958 -s 28 -d 1 -p ack -e 40 -c 0 -i 332 -a 1 -x {21.0 3.0 161 ------- null} h -t 18.8958 -s 28 -d 1 -p ack -e 40 -c 0 -i 332 -a 1 -x {21.0 3.0 -1 ------- null} r -t 18.8974 -s 21 -d 28 -p ack -e 40 -c 0 -i 333 -a 1 -x {21.0 3.0 162 ------- null} + -t 18.8974 -s 28 -d 1 -p ack -e 40 -c 0 -i 333 -a 1 -x {21.0 3.0 162 ------- null} - -t 18.8974 -s 28 -d 1 -p ack -e 40 -c 0 -i 333 -a 1 -x {21.0 3.0 162 ------- null} h -t 18.8974 -s 28 -d 1 -p ack -e 40 -c 0 -i 333 -a 1 -x {21.0 3.0 -1 ------- null} r -t 18.899 -s 21 -d 28 -p ack -e 40 -c 0 -i 334 -a 1 -x {21.0 3.0 163 ------- null} + -t 18.899 -s 28 -d 1 -p ack -e 40 -c 0 -i 334 -a 1 -x {21.0 3.0 163 ------- null} - -t 18.899 -s 28 -d 1 -p ack -e 40 -c 0 -i 334 -a 1 -x {21.0 3.0 163 ------- null} h -t 18.899 -s 28 -d 1 -p ack -e 40 -c 0 -i 334 -a 1 -x {21.0 3.0 -1 ------- null} r -t 18.9006 -s 21 -d 28 -p ack -e 40 -c 0 -i 335 -a 1 -x {21.0 3.0 164 ------- null} + -t 18.9006 -s 28 -d 1 -p ack -e 40 -c 0 -i 335 -a 1 -x {21.0 3.0 164 ------- null} - -t 18.9006 -s 28 -d 1 -p ack -e 40 -c 0 -i 335 -a 1 -x {21.0 3.0 164 ------- null} h -t 18.9006 -s 28 -d 1 -p ack -e 40 -c 0 -i 335 -a 1 -x {21.0 3.0 -1 ------- null} r -t 18.9022 -s 21 -d 28 -p ack -e 40 -c 0 -i 336 -a 1 -x {21.0 3.0 165 ------- null} + -t 18.9022 -s 28 -d 1 -p ack -e 40 -c 0 -i 336 -a 1 -x {21.0 3.0 165 ------- null} - -t 18.9022 -s 28 -d 1 -p ack -e 40 -c 0 -i 336 -a 1 -x {21.0 3.0 165 ------- null} h -t 18.9022 -s 28 -d 1 -p ack -e 40 -c 0 -i 336 -a 1 -x {21.0 3.0 -1 ------- null} r -t 18.9038 -s 21 -d 28 -p ack -e 40 -c 0 -i 337 -a 1 -x {21.0 3.0 166 ------- null} + -t 18.9038 -s 28 -d 1 -p ack -e 40 -c 0 -i 337 -a 1 -x {21.0 3.0 166 ------- null} - -t 18.9038 -s 28 -d 1 -p ack -e 40 -c 0 -i 337 -a 1 -x {21.0 3.0 166 ------- null} h -t 18.9038 -s 28 -d 1 -p ack -e 40 -c 0 -i 337 -a 1 -x {21.0 3.0 -1 ------- null} r -t 18.9054 -s 21 -d 28 -p ack -e 40 -c 0 -i 338 -a 1 -x {21.0 3.0 167 ------- null} + -t 18.9054 -s 28 -d 1 -p ack -e 40 -c 0 -i 338 -a 1 -x {21.0 3.0 167 ------- null} - -t 18.9054 -s 28 -d 1 -p ack -e 40 -c 0 -i 338 -a 1 -x {21.0 3.0 167 ------- null} h -t 18.9054 -s 28 -d 1 -p ack -e 40 -c 0 -i 338 -a 1 -x {21.0 3.0 -1 ------- null} r -t 18.907 -s 21 -d 28 -p ack -e 40 -c 0 -i 339 -a 1 -x {21.0 3.0 168 ------- null} + -t 18.907 -s 28 -d 1 -p ack -e 40 -c 0 -i 339 -a 1 -x {21.0 3.0 168 ------- null} - -t 18.907 -s 28 -d 1 -p ack -e 40 -c 0 -i 339 -a 1 -x {21.0 3.0 168 ------- null} h -t 18.907 -s 28 -d 1 -p ack -e 40 -c 0 -i 339 -a 1 -x {21.0 3.0 -1 ------- null} r -t 18.9086 -s 21 -d 28 -p ack -e 40 -c 0 -i 340 -a 1 -x {21.0 3.0 169 ------- null} + -t 18.9086 -s 28 -d 1 -p ack -e 40 -c 0 -i 340 -a 1 -x {21.0 3.0 169 ------- null} - -t 18.9086 -s 28 -d 1 -p ack -e 40 -c 0 -i 340 -a 1 -x {21.0 3.0 169 ------- null} h -t 18.9086 -s 28 -d 1 -p ack -e 40 -c 0 -i 340 -a 1 -x {21.0 3.0 -1 ------- null} r -t 18.9102 -s 21 -d 28 -p ack -e 40 -c 0 -i 341 -a 1 -x {21.0 3.0 170 ------- null} + -t 18.9102 -s 28 -d 1 -p ack -e 40 -c 0 -i 341 -a 1 -x {21.0 3.0 170 ------- null} - -t 18.9102 -s 28 -d 1 -p ack -e 40 -c 0 -i 341 -a 1 -x {21.0 3.0 170 ------- null} h -t 18.9102 -s 28 -d 1 -p ack -e 40 -c 0 -i 341 -a 1 -x {21.0 3.0 -1 ------- null} r -t 19.1798 -s 28 -d 1 -p ack -e 40 -c 0 -i 322 -a 1 -x {21.0 3.0 151 ------- null} + -t 19.1798 -s 1 -d 3 -p ack -e 40 -c 0 -i 322 -a 1 -x {21.0 3.0 151 ------- null} - -t 19.1798 -s 1 -d 3 -p ack -e 40 -c 0 -i 322 -a 1 -x {21.0 3.0 151 ------- null} h -t 19.1798 -s 1 -d 3 -p ack -e 40 -c 0 -i 322 -a 1 -x {21.0 3.0 -1 ------- null} r -t 19.1814 -s 28 -d 1 -p ack -e 40 -c 0 -i 323 -a 1 -x {21.0 3.0 152 ------- null} + -t 19.1814 -s 1 -d 3 -p ack -e 40 -c 0 -i 323 -a 1 -x {21.0 3.0 152 ------- null} - -t 19.1814 -s 1 -d 3 -p ack -e 40 -c 0 -i 323 -a 1 -x {21.0 3.0 152 ------- null} h -t 19.1814 -s 1 -d 3 -p ack -e 40 -c 0 -i 323 -a 1 -x {21.0 3.0 -1 ------- null} r -t 19.183 -s 28 -d 1 -p ack -e 40 -c 0 -i 324 -a 1 -x {21.0 3.0 153 ------- null} + -t 19.183 -s 1 -d 3 -p ack -e 40 -c 0 -i 324 -a 1 -x {21.0 3.0 153 ------- null} - -t 19.183 -s 1 -d 3 -p ack -e 40 -c 0 -i 324 -a 1 -x {21.0 3.0 153 ------- null} h -t 19.183 -s 1 -d 3 -p ack -e 40 -c 0 -i 324 -a 1 -x {21.0 3.0 -1 ------- null} r -t 19.1846 -s 28 -d 1 -p ack -e 40 -c 0 -i 325 -a 1 -x {21.0 3.0 154 ------- null} + -t 19.1846 -s 1 -d 3 -p ack -e 40 -c 0 -i 325 -a 1 -x {21.0 3.0 154 ------- null} - -t 19.1846 -s 1 -d 3 -p ack -e 40 -c 0 -i 325 -a 1 -x {21.0 3.0 154 ------- null} h -t 19.1846 -s 1 -d 3 -p ack -e 40 -c 0 -i 325 -a 1 -x {21.0 3.0 -1 ------- null} r -t 19.1862 -s 28 -d 1 -p ack -e 40 -c 0 -i 326 -a 1 -x {21.0 3.0 155 ------- null} + -t 19.1862 -s 1 -d 3 -p ack -e 40 -c 0 -i 326 -a 1 -x {21.0 3.0 155 ------- null} - -t 19.1862 -s 1 -d 3 -p ack -e 40 -c 0 -i 326 -a 1 -x {21.0 3.0 155 ------- null} h -t 19.1862 -s 1 -d 3 -p ack -e 40 -c 0 -i 326 -a 1 -x {21.0 3.0 -1 ------- null} r -t 19.1878 -s 28 -d 1 -p ack -e 40 -c 0 -i 327 -a 1 -x {21.0 3.0 156 ------- null} + -t 19.1878 -s 1 -d 3 -p ack -e 40 -c 0 -i 327 -a 1 -x {21.0 3.0 156 ------- null} - -t 19.1878 -s 1 -d 3 -p ack -e 40 -c 0 -i 327 -a 1 -x {21.0 3.0 156 ------- null} h -t 19.1878 -s 1 -d 3 -p ack -e 40 -c 0 -i 327 -a 1 -x {21.0 3.0 -1 ------- null} r -t 19.1894 -s 28 -d 1 -p ack -e 40 -c 0 -i 328 -a 1 -x {21.0 3.0 157 ------- null} + -t 19.1894 -s 1 -d 3 -p ack -e 40 -c 0 -i 328 -a 1 -x {21.0 3.0 157 ------- null} - -t 19.1894 -s 1 -d 3 -p ack -e 40 -c 0 -i 328 -a 1 -x {21.0 3.0 157 ------- null} h -t 19.1894 -s 1 -d 3 -p ack -e 40 -c 0 -i 328 -a 1 -x {21.0 3.0 -1 ------- null} r -t 19.191 -s 28 -d 1 -p ack -e 40 -c 0 -i 329 -a 1 -x {21.0 3.0 158 ------- null} + -t 19.191 -s 1 -d 3 -p ack -e 40 -c 0 -i 329 -a 1 -x {21.0 3.0 158 ------- null} - -t 19.191 -s 1 -d 3 -p ack -e 40 -c 0 -i 329 -a 1 -x {21.0 3.0 158 ------- null} h -t 19.191 -s 1 -d 3 -p ack -e 40 -c 0 -i 329 -a 1 -x {21.0 3.0 -1 ------- null} r -t 19.1926 -s 28 -d 1 -p ack -e 40 -c 0 -i 330 -a 1 -x {21.0 3.0 159 ------- null} + -t 19.1926 -s 1 -d 3 -p ack -e 40 -c 0 -i 330 -a 1 -x {21.0 3.0 159 ------- null} - -t 19.1926 -s 1 -d 3 -p ack -e 40 -c 0 -i 330 -a 1 -x {21.0 3.0 159 ------- null} h -t 19.1926 -s 1 -d 3 -p ack -e 40 -c 0 -i 330 -a 1 -x {21.0 3.0 -1 ------- null} r -t 19.1942 -s 28 -d 1 -p ack -e 40 -c 0 -i 331 -a 1 -x {21.0 3.0 160 ------- null} + -t 19.1942 -s 1 -d 3 -p ack -e 40 -c 0 -i 331 -a 1 -x {21.0 3.0 160 ------- null} - -t 19.1942 -s 1 -d 3 -p ack -e 40 -c 0 -i 331 -a 1 -x {21.0 3.0 160 ------- null} h -t 19.1942 -s 1 -d 3 -p ack -e 40 -c 0 -i 331 -a 1 -x {21.0 3.0 -1 ------- null} r -t 19.1958 -s 28 -d 1 -p ack -e 40 -c 0 -i 332 -a 1 -x {21.0 3.0 161 ------- null} + -t 19.1958 -s 1 -d 3 -p ack -e 40 -c 0 -i 332 -a 1 -x {21.0 3.0 161 ------- null} - -t 19.1958 -s 1 -d 3 -p ack -e 40 -c 0 -i 332 -a 1 -x {21.0 3.0 161 ------- null} h -t 19.1958 -s 1 -d 3 -p ack -e 40 -c 0 -i 332 -a 1 -x {21.0 3.0 -1 ------- null} r -t 19.1974 -s 28 -d 1 -p ack -e 40 -c 0 -i 333 -a 1 -x {21.0 3.0 162 ------- null} + -t 19.1974 -s 1 -d 3 -p ack -e 40 -c 0 -i 333 -a 1 -x {21.0 3.0 162 ------- null} - -t 19.1974 -s 1 -d 3 -p ack -e 40 -c 0 -i 333 -a 1 -x {21.0 3.0 162 ------- null} h -t 19.1974 -s 1 -d 3 -p ack -e 40 -c 0 -i 333 -a 1 -x {21.0 3.0 -1 ------- null} r -t 19.199 -s 28 -d 1 -p ack -e 40 -c 0 -i 334 -a 1 -x {21.0 3.0 163 ------- null} + -t 19.199 -s 1 -d 3 -p ack -e 40 -c 0 -i 334 -a 1 -x {21.0 3.0 163 ------- null} - -t 19.199 -s 1 -d 3 -p ack -e 40 -c 0 -i 334 -a 1 -x {21.0 3.0 163 ------- null} h -t 19.199 -s 1 -d 3 -p ack -e 40 -c 0 -i 334 -a 1 -x {21.0 3.0 -1 ------- null} r -t 19.2006 -s 28 -d 1 -p ack -e 40 -c 0 -i 335 -a 1 -x {21.0 3.0 164 ------- null} + -t 19.2006 -s 1 -d 3 -p ack -e 40 -c 0 -i 335 -a 1 -x {21.0 3.0 164 ------- null} - -t 19.2006 -s 1 -d 3 -p ack -e 40 -c 0 -i 335 -a 1 -x {21.0 3.0 164 ------- null} h -t 19.2006 -s 1 -d 3 -p ack -e 40 -c 0 -i 335 -a 1 -x {21.0 3.0 -1 ------- null} r -t 19.2022 -s 28 -d 1 -p ack -e 40 -c 0 -i 336 -a 1 -x {21.0 3.0 165 ------- null} + -t 19.2022 -s 1 -d 3 -p ack -e 40 -c 0 -i 336 -a 1 -x {21.0 3.0 165 ------- null} - -t 19.2022 -s 1 -d 3 -p ack -e 40 -c 0 -i 336 -a 1 -x {21.0 3.0 165 ------- null} h -t 19.2022 -s 1 -d 3 -p ack -e 40 -c 0 -i 336 -a 1 -x {21.0 3.0 -1 ------- null} r -t 19.2038 -s 28 -d 1 -p ack -e 40 -c 0 -i 337 -a 1 -x {21.0 3.0 166 ------- null} + -t 19.2038 -s 1 -d 3 -p ack -e 40 -c 0 -i 337 -a 1 -x {21.0 3.0 166 ------- null} - -t 19.2038 -s 1 -d 3 -p ack -e 40 -c 0 -i 337 -a 1 -x {21.0 3.0 166 ------- null} h -t 19.2038 -s 1 -d 3 -p ack -e 40 -c 0 -i 337 -a 1 -x {21.0 3.0 -1 ------- null} r -t 19.2054 -s 28 -d 1 -p ack -e 40 -c 0 -i 338 -a 1 -x {21.0 3.0 167 ------- null} + -t 19.2054 -s 1 -d 3 -p ack -e 40 -c 0 -i 338 -a 1 -x {21.0 3.0 167 ------- null} - -t 19.2054 -s 1 -d 3 -p ack -e 40 -c 0 -i 338 -a 1 -x {21.0 3.0 167 ------- null} h -t 19.2054 -s 1 -d 3 -p ack -e 40 -c 0 -i 338 -a 1 -x {21.0 3.0 -1 ------- null} r -t 19.207 -s 28 -d 1 -p ack -e 40 -c 0 -i 339 -a 1 -x {21.0 3.0 168 ------- null} + -t 19.207 -s 1 -d 3 -p ack -e 40 -c 0 -i 339 -a 1 -x {21.0 3.0 168 ------- null} - -t 19.207 -s 1 -d 3 -p ack -e 40 -c 0 -i 339 -a 1 -x {21.0 3.0 168 ------- null} h -t 19.207 -s 1 -d 3 -p ack -e 40 -c 0 -i 339 -a 1 -x {21.0 3.0 -1 ------- null} r -t 19.2086 -s 28 -d 1 -p ack -e 40 -c 0 -i 340 -a 1 -x {21.0 3.0 169 ------- null} + -t 19.2086 -s 1 -d 3 -p ack -e 40 -c 0 -i 340 -a 1 -x {21.0 3.0 169 ------- null} - -t 19.2086 -s 1 -d 3 -p ack -e 40 -c 0 -i 340 -a 1 -x {21.0 3.0 169 ------- null} h -t 19.2086 -s 1 -d 3 -p ack -e 40 -c 0 -i 340 -a 1 -x {21.0 3.0 -1 ------- null} r -t 19.2102 -s 28 -d 1 -p ack -e 40 -c 0 -i 341 -a 1 -x {21.0 3.0 170 ------- null} + -t 19.2102 -s 1 -d 3 -p ack -e 40 -c 0 -i 341 -a 1 -x {21.0 3.0 170 ------- null} - -t 19.2102 -s 1 -d 3 -p ack -e 40 -c 0 -i 341 -a 1 -x {21.0 3.0 170 ------- null} h -t 19.2102 -s 1 -d 3 -p ack -e 40 -c 0 -i 341 -a 1 -x {21.0 3.0 -1 ------- null} r -t 19.3199 -s 1 -d 3 -p ack -e 40 -c 0 -i 322 -a 1 -x {21.0 3.0 151 ------- null} + -t 19.3199 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 342 -a 0 -x {3.0 21.0 171 ------- null} - -t 19.3199 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 342 -a 0 -x {3.0 21.0 171 ------- null} h -t 19.3199 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 342 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.3215 -s 1 -d 3 -p ack -e 40 -c 0 -i 323 -a 1 -x {21.0 3.0 152 ------- null} + -t 19.3215 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {3.0 21.0 172 ------- null} - -t 19.3215 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {3.0 21.0 172 ------- null} h -t 19.3215 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.3231 -s 1 -d 3 -p ack -e 40 -c 0 -i 324 -a 1 -x {21.0 3.0 153 ------- null} + -t 19.3231 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 344 -a 0 -x {3.0 21.0 173 ------- null} - -t 19.3231 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 344 -a 0 -x {3.0 21.0 173 ------- null} h -t 19.3231 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 344 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.3247 -s 1 -d 3 -p ack -e 40 -c 0 -i 325 -a 1 -x {21.0 3.0 154 ------- null} + -t 19.3247 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {3.0 21.0 174 ------- null} - -t 19.3247 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {3.0 21.0 174 ------- null} h -t 19.3247 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.3263 -s 1 -d 3 -p ack -e 40 -c 0 -i 326 -a 1 -x {21.0 3.0 155 ------- null} + -t 19.3263 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {3.0 21.0 175 ------- null} - -t 19.3263 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {3.0 21.0 175 ------- null} h -t 19.3263 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.3279 -s 1 -d 3 -p ack -e 40 -c 0 -i 327 -a 1 -x {21.0 3.0 156 ------- null} + -t 19.3279 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {3.0 21.0 176 ------- null} - -t 19.3279 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {3.0 21.0 176 ------- null} h -t 19.3279 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.3295 -s 1 -d 3 -p ack -e 40 -c 0 -i 328 -a 1 -x {21.0 3.0 157 ------- null} + -t 19.3295 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {3.0 21.0 177 ------- null} - -t 19.3295 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {3.0 21.0 177 ------- null} h -t 19.3295 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.3311 -s 1 -d 3 -p ack -e 40 -c 0 -i 329 -a 1 -x {21.0 3.0 158 ------- null} + -t 19.3311 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {3.0 21.0 178 ------- null} - -t 19.3311 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {3.0 21.0 178 ------- null} h -t 19.3311 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.3327 -s 1 -d 3 -p ack -e 40 -c 0 -i 330 -a 1 -x {21.0 3.0 159 ------- null} + -t 19.3327 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {3.0 21.0 179 ------- null} - -t 19.3327 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {3.0 21.0 179 ------- null} h -t 19.3327 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.3343 -s 1 -d 3 -p ack -e 40 -c 0 -i 331 -a 1 -x {21.0 3.0 160 ------- null} + -t 19.3343 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {3.0 21.0 180 ------- null} - -t 19.3343 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {3.0 21.0 180 ------- null} h -t 19.3343 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.3359 -s 1 -d 3 -p ack -e 40 -c 0 -i 332 -a 1 -x {21.0 3.0 161 ------- null} + -t 19.3359 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {3.0 21.0 181 ------- null} - -t 19.3359 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {3.0 21.0 181 ------- null} h -t 19.3359 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.3375 -s 1 -d 3 -p ack -e 40 -c 0 -i 333 -a 1 -x {21.0 3.0 162 ------- null} + -t 19.3375 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {3.0 21.0 182 ------- null} - -t 19.3375 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {3.0 21.0 182 ------- null} h -t 19.3375 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.3391 -s 1 -d 3 -p ack -e 40 -c 0 -i 334 -a 1 -x {21.0 3.0 163 ------- null} + -t 19.3391 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {3.0 21.0 183 ------- null} - -t 19.3391 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {3.0 21.0 183 ------- null} h -t 19.3391 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.3407 -s 1 -d 3 -p ack -e 40 -c 0 -i 335 -a 1 -x {21.0 3.0 164 ------- null} + -t 19.3407 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {3.0 21.0 184 ------- null} - -t 19.3407 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {3.0 21.0 184 ------- null} h -t 19.3407 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.3423 -s 1 -d 3 -p ack -e 40 -c 0 -i 336 -a 1 -x {21.0 3.0 165 ------- null} + -t 19.3423 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 356 -a 0 -x {3.0 21.0 185 ------- null} - -t 19.3423 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 356 -a 0 -x {3.0 21.0 185 ------- null} h -t 19.3423 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 356 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.3439 -s 1 -d 3 -p ack -e 40 -c 0 -i 337 -a 1 -x {21.0 3.0 166 ------- null} + -t 19.3439 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {3.0 21.0 186 ------- null} - -t 19.3439 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {3.0 21.0 186 ------- null} h -t 19.3439 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.3455 -s 1 -d 3 -p ack -e 40 -c 0 -i 338 -a 1 -x {21.0 3.0 167 ------- null} + -t 19.3455 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 358 -a 0 -x {3.0 21.0 187 ------- null} - -t 19.3455 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 358 -a 0 -x {3.0 21.0 187 ------- null} h -t 19.3455 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 358 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.3471 -s 1 -d 3 -p ack -e 40 -c 0 -i 339 -a 1 -x {21.0 3.0 168 ------- null} + -t 19.3471 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {3.0 21.0 188 ------- null} - -t 19.3471 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {3.0 21.0 188 ------- null} h -t 19.3471 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.3487 -s 1 -d 3 -p ack -e 40 -c 0 -i 340 -a 1 -x {21.0 3.0 169 ------- null} + -t 19.3487 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 360 -a 0 -x {3.0 21.0 189 ------- null} - -t 19.3487 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 360 -a 0 -x {3.0 21.0 189 ------- null} h -t 19.3487 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 360 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.3503 -s 1 -d 3 -p ack -e 40 -c 0 -i 341 -a 1 -x {21.0 3.0 170 ------- null} + -t 19.3503 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {3.0 21.0 190 ------- null} - -t 19.3503 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {3.0 21.0 190 ------- null} h -t 19.3503 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.4615 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 342 -a 0 -x {3.0 21.0 171 ------- null} + -t 19.4615 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 342 -a 0 -x {3.0 21.0 171 ------- null} - -t 19.4615 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 342 -a 0 -x {3.0 21.0 171 ------- null} h -t 19.4615 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 342 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.4631 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {3.0 21.0 172 ------- null} + -t 19.4631 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {3.0 21.0 172 ------- null} - -t 19.4631 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {3.0 21.0 172 ------- null} h -t 19.4631 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.4647 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 344 -a 0 -x {3.0 21.0 173 ------- null} + -t 19.4647 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 344 -a 0 -x {3.0 21.0 173 ------- null} - -t 19.4647 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 344 -a 0 -x {3.0 21.0 173 ------- null} h -t 19.4647 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 344 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.4663 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {3.0 21.0 174 ------- null} + -t 19.4663 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {3.0 21.0 174 ------- null} - -t 19.4663 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {3.0 21.0 174 ------- null} h -t 19.4663 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.4679 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {3.0 21.0 175 ------- null} + -t 19.4679 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {3.0 21.0 175 ------- null} - -t 19.4679 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {3.0 21.0 175 ------- null} h -t 19.4679 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.4695 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {3.0 21.0 176 ------- null} + -t 19.4695 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {3.0 21.0 176 ------- null} - -t 19.4695 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {3.0 21.0 176 ------- null} h -t 19.4695 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.4711 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {3.0 21.0 177 ------- null} + -t 19.4711 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {3.0 21.0 177 ------- null} - -t 19.4711 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {3.0 21.0 177 ------- null} h -t 19.4711 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.4727 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {3.0 21.0 178 ------- null} + -t 19.4727 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {3.0 21.0 178 ------- null} - -t 19.4727 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {3.0 21.0 178 ------- null} h -t 19.4727 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.4743 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {3.0 21.0 179 ------- null} + -t 19.4743 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {3.0 21.0 179 ------- null} - -t 19.4743 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {3.0 21.0 179 ------- null} h -t 19.4743 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.4759 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {3.0 21.0 180 ------- null} + -t 19.4759 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {3.0 21.0 180 ------- null} - -t 19.4759 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {3.0 21.0 180 ------- null} h -t 19.4759 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.4775 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {3.0 21.0 181 ------- null} + -t 19.4775 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {3.0 21.0 181 ------- null} - -t 19.4775 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {3.0 21.0 181 ------- null} h -t 19.4775 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.4791 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {3.0 21.0 182 ------- null} + -t 19.4791 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {3.0 21.0 182 ------- null} - -t 19.4791 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {3.0 21.0 182 ------- null} h -t 19.4791 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.4807 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {3.0 21.0 183 ------- null} + -t 19.4807 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {3.0 21.0 183 ------- null} - -t 19.4807 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {3.0 21.0 183 ------- null} h -t 19.4807 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.4823 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {3.0 21.0 184 ------- null} + -t 19.4823 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {3.0 21.0 184 ------- null} - -t 19.4823 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {3.0 21.0 184 ------- null} h -t 19.4823 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.4839 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 356 -a 0 -x {3.0 21.0 185 ------- null} + -t 19.4839 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 356 -a 0 -x {3.0 21.0 185 ------- null} - -t 19.4839 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 356 -a 0 -x {3.0 21.0 185 ------- null} h -t 19.4839 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 356 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.4855 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {3.0 21.0 186 ------- null} + -t 19.4855 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {3.0 21.0 186 ------- null} - -t 19.4855 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {3.0 21.0 186 ------- null} h -t 19.4855 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.4871 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 358 -a 0 -x {3.0 21.0 187 ------- null} + -t 19.4871 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 358 -a 0 -x {3.0 21.0 187 ------- null} - -t 19.4871 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 358 -a 0 -x {3.0 21.0 187 ------- null} h -t 19.4871 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 358 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.4887 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {3.0 21.0 188 ------- null} + -t 19.4887 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {3.0 21.0 188 ------- null} - -t 19.4887 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {3.0 21.0 188 ------- null} h -t 19.4887 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.4903 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 360 -a 0 -x {3.0 21.0 189 ------- null} + -t 19.4903 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 360 -a 0 -x {3.0 21.0 189 ------- null} - -t 19.4903 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 360 -a 0 -x {3.0 21.0 189 ------- null} h -t 19.4903 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 360 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.4919 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {3.0 21.0 190 ------- null} + -t 19.4919 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {3.0 21.0 190 ------- null} - -t 19.4919 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {3.0 21.0 190 ------- null} h -t 19.4919 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.7631 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 342 -a 0 -x {3.0 21.0 171 ------- null} + -t 19.7631 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 342 -a 0 -x {3.0 21.0 171 ------- null} - -t 19.7631 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 342 -a 0 -x {3.0 21.0 171 ------- null} h -t 19.7631 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 342 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.7647 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {3.0 21.0 172 ------- null} + -t 19.7647 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {3.0 21.0 172 ------- null} - -t 19.7647 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {3.0 21.0 172 ------- null} h -t 19.7647 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.7663 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 344 -a 0 -x {3.0 21.0 173 ------- null} + -t 19.7663 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 344 -a 0 -x {3.0 21.0 173 ------- null} - -t 19.7663 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 344 -a 0 -x {3.0 21.0 173 ------- null} h -t 19.7663 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 344 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.7679 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {3.0 21.0 174 ------- null} + -t 19.7679 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {3.0 21.0 174 ------- null} - -t 19.7679 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {3.0 21.0 174 ------- null} h -t 19.7679 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.7695 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {3.0 21.0 175 ------- null} + -t 19.7695 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {3.0 21.0 175 ------- null} - -t 19.7695 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {3.0 21.0 175 ------- null} h -t 19.7695 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.7711 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {3.0 21.0 176 ------- null} + -t 19.7711 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {3.0 21.0 176 ------- null} - -t 19.7711 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {3.0 21.0 176 ------- null} h -t 19.7711 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.7727 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {3.0 21.0 177 ------- null} + -t 19.7727 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {3.0 21.0 177 ------- null} - -t 19.7727 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {3.0 21.0 177 ------- null} h -t 19.7727 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.7743 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {3.0 21.0 178 ------- null} + -t 19.7743 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {3.0 21.0 178 ------- null} - -t 19.7743 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {3.0 21.0 178 ------- null} h -t 19.7743 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.7759 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {3.0 21.0 179 ------- null} + -t 19.7759 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {3.0 21.0 179 ------- null} - -t 19.7759 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {3.0 21.0 179 ------- null} h -t 19.7759 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.7775 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {3.0 21.0 180 ------- null} + -t 19.7775 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {3.0 21.0 180 ------- null} - -t 19.7775 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {3.0 21.0 180 ------- null} h -t 19.7775 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.7791 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {3.0 21.0 181 ------- null} + -t 19.7791 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {3.0 21.0 181 ------- null} - -t 19.7791 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {3.0 21.0 181 ------- null} h -t 19.7791 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.7807 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {3.0 21.0 182 ------- null} + -t 19.7807 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {3.0 21.0 182 ------- null} - -t 19.7807 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {3.0 21.0 182 ------- null} h -t 19.7807 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.7823 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {3.0 21.0 183 ------- null} + -t 19.7823 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {3.0 21.0 183 ------- null} - -t 19.7823 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {3.0 21.0 183 ------- null} h -t 19.7823 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.7839 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {3.0 21.0 184 ------- null} + -t 19.7839 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {3.0 21.0 184 ------- null} - -t 19.7839 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {3.0 21.0 184 ------- null} h -t 19.7839 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.7855 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 356 -a 0 -x {3.0 21.0 185 ------- null} + -t 19.7855 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 356 -a 0 -x {3.0 21.0 185 ------- null} - -t 19.7855 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 356 -a 0 -x {3.0 21.0 185 ------- null} h -t 19.7855 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 356 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.7871 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {3.0 21.0 186 ------- null} + -t 19.7871 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {3.0 21.0 186 ------- null} - -t 19.7871 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {3.0 21.0 186 ------- null} h -t 19.7871 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.7887 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 358 -a 0 -x {3.0 21.0 187 ------- null} + -t 19.7887 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 358 -a 0 -x {3.0 21.0 187 ------- null} - -t 19.7887 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 358 -a 0 -x {3.0 21.0 187 ------- null} h -t 19.7887 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 358 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.7903 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {3.0 21.0 188 ------- null} + -t 19.7903 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {3.0 21.0 188 ------- null} - -t 19.7903 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {3.0 21.0 188 ------- null} h -t 19.7903 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.7919 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 360 -a 0 -x {3.0 21.0 189 ------- null} + -t 19.7919 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 360 -a 0 -x {3.0 21.0 189 ------- null} - -t 19.7919 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 360 -a 0 -x {3.0 21.0 189 ------- null} h -t 19.7919 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 360 -a 0 -x {3.0 21.0 -1 ------- null} r -t 19.7935 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {3.0 21.0 190 ------- null} + -t 19.7935 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {3.0 21.0 190 ------- null} - -t 19.7935 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {3.0 21.0 190 ------- null} h -t 19.7935 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {3.0 21.0 -1 ------- null} r -t 20.1147 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 342 -a 0 -x {3.0 21.0 171 ------- null} + -t 20.1147 -s 21 -d 28 -p ack -e 40 -c 0 -i 362 -a 1 -x {21.0 3.0 171 ------- null} - -t 20.1147 -s 21 -d 28 -p ack -e 40 -c 0 -i 362 -a 1 -x {21.0 3.0 171 ------- null} h -t 20.1147 -s 21 -d 28 -p ack -e 40 -c 0 -i 362 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.1163 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {3.0 21.0 172 ------- null} + -t 20.1163 -s 21 -d 28 -p ack -e 40 -c 0 -i 363 -a 1 -x {21.0 3.0 172 ------- null} - -t 20.1163 -s 21 -d 28 -p ack -e 40 -c 0 -i 363 -a 1 -x {21.0 3.0 172 ------- null} h -t 20.1163 -s 21 -d 28 -p ack -e 40 -c 0 -i 363 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.1179 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 344 -a 0 -x {3.0 21.0 173 ------- null} + -t 20.1179 -s 21 -d 28 -p ack -e 40 -c 0 -i 364 -a 1 -x {21.0 3.0 173 ------- null} - -t 20.1179 -s 21 -d 28 -p ack -e 40 -c 0 -i 364 -a 1 -x {21.0 3.0 173 ------- null} h -t 20.1179 -s 21 -d 28 -p ack -e 40 -c 0 -i 364 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.1195 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {3.0 21.0 174 ------- null} + -t 20.1195 -s 21 -d 28 -p ack -e 40 -c 0 -i 365 -a 1 -x {21.0 3.0 174 ------- null} - -t 20.1195 -s 21 -d 28 -p ack -e 40 -c 0 -i 365 -a 1 -x {21.0 3.0 174 ------- null} h -t 20.1195 -s 21 -d 28 -p ack -e 40 -c 0 -i 365 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.1211 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {3.0 21.0 175 ------- null} + -t 20.1211 -s 21 -d 28 -p ack -e 40 -c 0 -i 366 -a 1 -x {21.0 3.0 175 ------- null} - -t 20.1211 -s 21 -d 28 -p ack -e 40 -c 0 -i 366 -a 1 -x {21.0 3.0 175 ------- null} h -t 20.1211 -s 21 -d 28 -p ack -e 40 -c 0 -i 366 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.1227 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {3.0 21.0 176 ------- null} + -t 20.1227 -s 21 -d 28 -p ack -e 40 -c 0 -i 367 -a 1 -x {21.0 3.0 176 ------- null} - -t 20.1227 -s 21 -d 28 -p ack -e 40 -c 0 -i 367 -a 1 -x {21.0 3.0 176 ------- null} h -t 20.1227 -s 21 -d 28 -p ack -e 40 -c 0 -i 367 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.1243 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {3.0 21.0 177 ------- null} + -t 20.1243 -s 21 -d 28 -p ack -e 40 -c 0 -i 368 -a 1 -x {21.0 3.0 177 ------- null} - -t 20.1243 -s 21 -d 28 -p ack -e 40 -c 0 -i 368 -a 1 -x {21.0 3.0 177 ------- null} h -t 20.1243 -s 21 -d 28 -p ack -e 40 -c 0 -i 368 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.1259 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {3.0 21.0 178 ------- null} + -t 20.1259 -s 21 -d 28 -p ack -e 40 -c 0 -i 369 -a 1 -x {21.0 3.0 178 ------- null} - -t 20.1259 -s 21 -d 28 -p ack -e 40 -c 0 -i 369 -a 1 -x {21.0 3.0 178 ------- null} h -t 20.1259 -s 21 -d 28 -p ack -e 40 -c 0 -i 369 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.1275 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {3.0 21.0 179 ------- null} + -t 20.1275 -s 21 -d 28 -p ack -e 40 -c 0 -i 370 -a 1 -x {21.0 3.0 179 ------- null} - -t 20.1275 -s 21 -d 28 -p ack -e 40 -c 0 -i 370 -a 1 -x {21.0 3.0 179 ------- null} h -t 20.1275 -s 21 -d 28 -p ack -e 40 -c 0 -i 370 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.1291 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {3.0 21.0 180 ------- null} + -t 20.1291 -s 21 -d 28 -p ack -e 40 -c 0 -i 371 -a 1 -x {21.0 3.0 180 ------- null} - -t 20.1291 -s 21 -d 28 -p ack -e 40 -c 0 -i 371 -a 1 -x {21.0 3.0 180 ------- null} h -t 20.1291 -s 21 -d 28 -p ack -e 40 -c 0 -i 371 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.1307 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {3.0 21.0 181 ------- null} + -t 20.1307 -s 21 -d 28 -p ack -e 40 -c 0 -i 372 -a 1 -x {21.0 3.0 181 ------- null} - -t 20.1307 -s 21 -d 28 -p ack -e 40 -c 0 -i 372 -a 1 -x {21.0 3.0 181 ------- null} h -t 20.1307 -s 21 -d 28 -p ack -e 40 -c 0 -i 372 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.1323 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {3.0 21.0 182 ------- null} + -t 20.1323 -s 21 -d 28 -p ack -e 40 -c 0 -i 373 -a 1 -x {21.0 3.0 182 ------- null} - -t 20.1323 -s 21 -d 28 -p ack -e 40 -c 0 -i 373 -a 1 -x {21.0 3.0 182 ------- null} h -t 20.1323 -s 21 -d 28 -p ack -e 40 -c 0 -i 373 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.1339 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {3.0 21.0 183 ------- null} + -t 20.1339 -s 21 -d 28 -p ack -e 40 -c 0 -i 374 -a 1 -x {21.0 3.0 183 ------- null} - -t 20.1339 -s 21 -d 28 -p ack -e 40 -c 0 -i 374 -a 1 -x {21.0 3.0 183 ------- null} h -t 20.1339 -s 21 -d 28 -p ack -e 40 -c 0 -i 374 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.1355 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {3.0 21.0 184 ------- null} + -t 20.1355 -s 21 -d 28 -p ack -e 40 -c 0 -i 375 -a 1 -x {21.0 3.0 184 ------- null} - -t 20.1355 -s 21 -d 28 -p ack -e 40 -c 0 -i 375 -a 1 -x {21.0 3.0 184 ------- null} h -t 20.1355 -s 21 -d 28 -p ack -e 40 -c 0 -i 375 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.1371 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 356 -a 0 -x {3.0 21.0 185 ------- null} + -t 20.1371 -s 21 -d 28 -p ack -e 40 -c 0 -i 376 -a 1 -x {21.0 3.0 185 ------- null} - -t 20.1371 -s 21 -d 28 -p ack -e 40 -c 0 -i 376 -a 1 -x {21.0 3.0 185 ------- null} h -t 20.1371 -s 21 -d 28 -p ack -e 40 -c 0 -i 376 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.1387 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {3.0 21.0 186 ------- null} + -t 20.1387 -s 21 -d 28 -p ack -e 40 -c 0 -i 377 -a 1 -x {21.0 3.0 186 ------- null} - -t 20.1387 -s 21 -d 28 -p ack -e 40 -c 0 -i 377 -a 1 -x {21.0 3.0 186 ------- null} h -t 20.1387 -s 21 -d 28 -p ack -e 40 -c 0 -i 377 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.1403 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 358 -a 0 -x {3.0 21.0 187 ------- null} + -t 20.1403 -s 21 -d 28 -p ack -e 40 -c 0 -i 378 -a 1 -x {21.0 3.0 187 ------- null} - -t 20.1403 -s 21 -d 28 -p ack -e 40 -c 0 -i 378 -a 1 -x {21.0 3.0 187 ------- null} h -t 20.1403 -s 21 -d 28 -p ack -e 40 -c 0 -i 378 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.1419 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {3.0 21.0 188 ------- null} + -t 20.1419 -s 21 -d 28 -p ack -e 40 -c 0 -i 379 -a 1 -x {21.0 3.0 188 ------- null} - -t 20.1419 -s 21 -d 28 -p ack -e 40 -c 0 -i 379 -a 1 -x {21.0 3.0 188 ------- null} h -t 20.1419 -s 21 -d 28 -p ack -e 40 -c 0 -i 379 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.1435 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 360 -a 0 -x {3.0 21.0 189 ------- null} + -t 20.1435 -s 21 -d 28 -p ack -e 40 -c 0 -i 380 -a 1 -x {21.0 3.0 189 ------- null} - -t 20.1435 -s 21 -d 28 -p ack -e 40 -c 0 -i 380 -a 1 -x {21.0 3.0 189 ------- null} h -t 20.1435 -s 21 -d 28 -p ack -e 40 -c 0 -i 380 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.1451 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {3.0 21.0 190 ------- null} + -t 20.1451 -s 21 -d 28 -p ack -e 40 -c 0 -i 381 -a 1 -x {21.0 3.0 190 ------- null} - -t 20.1451 -s 21 -d 28 -p ack -e 40 -c 0 -i 381 -a 1 -x {21.0 3.0 190 ------- null} h -t 20.1451 -s 21 -d 28 -p ack -e 40 -c 0 -i 381 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.4648 -s 21 -d 28 -p ack -e 40 -c 0 -i 362 -a 1 -x {21.0 3.0 171 ------- null} + -t 20.4648 -s 28 -d 1 -p ack -e 40 -c 0 -i 362 -a 1 -x {21.0 3.0 171 ------- null} - -t 20.4648 -s 28 -d 1 -p ack -e 40 -c 0 -i 362 -a 1 -x {21.0 3.0 171 ------- null} h -t 20.4648 -s 28 -d 1 -p ack -e 40 -c 0 -i 362 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.4664 -s 21 -d 28 -p ack -e 40 -c 0 -i 363 -a 1 -x {21.0 3.0 172 ------- null} + -t 20.4664 -s 28 -d 1 -p ack -e 40 -c 0 -i 363 -a 1 -x {21.0 3.0 172 ------- null} - -t 20.4664 -s 28 -d 1 -p ack -e 40 -c 0 -i 363 -a 1 -x {21.0 3.0 172 ------- null} h -t 20.4664 -s 28 -d 1 -p ack -e 40 -c 0 -i 363 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.468 -s 21 -d 28 -p ack -e 40 -c 0 -i 364 -a 1 -x {21.0 3.0 173 ------- null} + -t 20.468 -s 28 -d 1 -p ack -e 40 -c 0 -i 364 -a 1 -x {21.0 3.0 173 ------- null} - -t 20.468 -s 28 -d 1 -p ack -e 40 -c 0 -i 364 -a 1 -x {21.0 3.0 173 ------- null} h -t 20.468 -s 28 -d 1 -p ack -e 40 -c 0 -i 364 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.4696 -s 21 -d 28 -p ack -e 40 -c 0 -i 365 -a 1 -x {21.0 3.0 174 ------- null} + -t 20.4696 -s 28 -d 1 -p ack -e 40 -c 0 -i 365 -a 1 -x {21.0 3.0 174 ------- null} - -t 20.4696 -s 28 -d 1 -p ack -e 40 -c 0 -i 365 -a 1 -x {21.0 3.0 174 ------- null} h -t 20.4696 -s 28 -d 1 -p ack -e 40 -c 0 -i 365 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.4712 -s 21 -d 28 -p ack -e 40 -c 0 -i 366 -a 1 -x {21.0 3.0 175 ------- null} + -t 20.4712 -s 28 -d 1 -p ack -e 40 -c 0 -i 366 -a 1 -x {21.0 3.0 175 ------- null} - -t 20.4712 -s 28 -d 1 -p ack -e 40 -c 0 -i 366 -a 1 -x {21.0 3.0 175 ------- null} h -t 20.4712 -s 28 -d 1 -p ack -e 40 -c 0 -i 366 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.4728 -s 21 -d 28 -p ack -e 40 -c 0 -i 367 -a 1 -x {21.0 3.0 176 ------- null} + -t 20.4728 -s 28 -d 1 -p ack -e 40 -c 0 -i 367 -a 1 -x {21.0 3.0 176 ------- null} - -t 20.4728 -s 28 -d 1 -p ack -e 40 -c 0 -i 367 -a 1 -x {21.0 3.0 176 ------- null} h -t 20.4728 -s 28 -d 1 -p ack -e 40 -c 0 -i 367 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.4744 -s 21 -d 28 -p ack -e 40 -c 0 -i 368 -a 1 -x {21.0 3.0 177 ------- null} + -t 20.4744 -s 28 -d 1 -p ack -e 40 -c 0 -i 368 -a 1 -x {21.0 3.0 177 ------- null} - -t 20.4744 -s 28 -d 1 -p ack -e 40 -c 0 -i 368 -a 1 -x {21.0 3.0 177 ------- null} h -t 20.4744 -s 28 -d 1 -p ack -e 40 -c 0 -i 368 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.476 -s 21 -d 28 -p ack -e 40 -c 0 -i 369 -a 1 -x {21.0 3.0 178 ------- null} + -t 20.476 -s 28 -d 1 -p ack -e 40 -c 0 -i 369 -a 1 -x {21.0 3.0 178 ------- null} - -t 20.476 -s 28 -d 1 -p ack -e 40 -c 0 -i 369 -a 1 -x {21.0 3.0 178 ------- null} h -t 20.476 -s 28 -d 1 -p ack -e 40 -c 0 -i 369 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.4776 -s 21 -d 28 -p ack -e 40 -c 0 -i 370 -a 1 -x {21.0 3.0 179 ------- null} + -t 20.4776 -s 28 -d 1 -p ack -e 40 -c 0 -i 370 -a 1 -x {21.0 3.0 179 ------- null} - -t 20.4776 -s 28 -d 1 -p ack -e 40 -c 0 -i 370 -a 1 -x {21.0 3.0 179 ------- null} h -t 20.4776 -s 28 -d 1 -p ack -e 40 -c 0 -i 370 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.4792 -s 21 -d 28 -p ack -e 40 -c 0 -i 371 -a 1 -x {21.0 3.0 180 ------- null} + -t 20.4792 -s 28 -d 1 -p ack -e 40 -c 0 -i 371 -a 1 -x {21.0 3.0 180 ------- null} - -t 20.4792 -s 28 -d 1 -p ack -e 40 -c 0 -i 371 -a 1 -x {21.0 3.0 180 ------- null} h -t 20.4792 -s 28 -d 1 -p ack -e 40 -c 0 -i 371 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.4808 -s 21 -d 28 -p ack -e 40 -c 0 -i 372 -a 1 -x {21.0 3.0 181 ------- null} + -t 20.4808 -s 28 -d 1 -p ack -e 40 -c 0 -i 372 -a 1 -x {21.0 3.0 181 ------- null} - -t 20.4808 -s 28 -d 1 -p ack -e 40 -c 0 -i 372 -a 1 -x {21.0 3.0 181 ------- null} h -t 20.4808 -s 28 -d 1 -p ack -e 40 -c 0 -i 372 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.4824 -s 21 -d 28 -p ack -e 40 -c 0 -i 373 -a 1 -x {21.0 3.0 182 ------- null} + -t 20.4824 -s 28 -d 1 -p ack -e 40 -c 0 -i 373 -a 1 -x {21.0 3.0 182 ------- null} - -t 20.4824 -s 28 -d 1 -p ack -e 40 -c 0 -i 373 -a 1 -x {21.0 3.0 182 ------- null} h -t 20.4824 -s 28 -d 1 -p ack -e 40 -c 0 -i 373 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.484 -s 21 -d 28 -p ack -e 40 -c 0 -i 374 -a 1 -x {21.0 3.0 183 ------- null} + -t 20.484 -s 28 -d 1 -p ack -e 40 -c 0 -i 374 -a 1 -x {21.0 3.0 183 ------- null} - -t 20.484 -s 28 -d 1 -p ack -e 40 -c 0 -i 374 -a 1 -x {21.0 3.0 183 ------- null} h -t 20.484 -s 28 -d 1 -p ack -e 40 -c 0 -i 374 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.4856 -s 21 -d 28 -p ack -e 40 -c 0 -i 375 -a 1 -x {21.0 3.0 184 ------- null} + -t 20.4856 -s 28 -d 1 -p ack -e 40 -c 0 -i 375 -a 1 -x {21.0 3.0 184 ------- null} - -t 20.4856 -s 28 -d 1 -p ack -e 40 -c 0 -i 375 -a 1 -x {21.0 3.0 184 ------- null} h -t 20.4856 -s 28 -d 1 -p ack -e 40 -c 0 -i 375 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.4872 -s 21 -d 28 -p ack -e 40 -c 0 -i 376 -a 1 -x {21.0 3.0 185 ------- null} + -t 20.4872 -s 28 -d 1 -p ack -e 40 -c 0 -i 376 -a 1 -x {21.0 3.0 185 ------- null} - -t 20.4872 -s 28 -d 1 -p ack -e 40 -c 0 -i 376 -a 1 -x {21.0 3.0 185 ------- null} h -t 20.4872 -s 28 -d 1 -p ack -e 40 -c 0 -i 376 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.4888 -s 21 -d 28 -p ack -e 40 -c 0 -i 377 -a 1 -x {21.0 3.0 186 ------- null} + -t 20.4888 -s 28 -d 1 -p ack -e 40 -c 0 -i 377 -a 1 -x {21.0 3.0 186 ------- null} - -t 20.4888 -s 28 -d 1 -p ack -e 40 -c 0 -i 377 -a 1 -x {21.0 3.0 186 ------- null} h -t 20.4888 -s 28 -d 1 -p ack -e 40 -c 0 -i 377 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.4904 -s 21 -d 28 -p ack -e 40 -c 0 -i 378 -a 1 -x {21.0 3.0 187 ------- null} + -t 20.4904 -s 28 -d 1 -p ack -e 40 -c 0 -i 378 -a 1 -x {21.0 3.0 187 ------- null} - -t 20.4904 -s 28 -d 1 -p ack -e 40 -c 0 -i 378 -a 1 -x {21.0 3.0 187 ------- null} h -t 20.4904 -s 28 -d 1 -p ack -e 40 -c 0 -i 378 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.492 -s 21 -d 28 -p ack -e 40 -c 0 -i 379 -a 1 -x {21.0 3.0 188 ------- null} + -t 20.492 -s 28 -d 1 -p ack -e 40 -c 0 -i 379 -a 1 -x {21.0 3.0 188 ------- null} - -t 20.492 -s 28 -d 1 -p ack -e 40 -c 0 -i 379 -a 1 -x {21.0 3.0 188 ------- null} h -t 20.492 -s 28 -d 1 -p ack -e 40 -c 0 -i 379 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.4936 -s 21 -d 28 -p ack -e 40 -c 0 -i 380 -a 1 -x {21.0 3.0 189 ------- null} + -t 20.4936 -s 28 -d 1 -p ack -e 40 -c 0 -i 380 -a 1 -x {21.0 3.0 189 ------- null} - -t 20.4936 -s 28 -d 1 -p ack -e 40 -c 0 -i 380 -a 1 -x {21.0 3.0 189 ------- null} h -t 20.4936 -s 28 -d 1 -p ack -e 40 -c 0 -i 380 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.4952 -s 21 -d 28 -p ack -e 40 -c 0 -i 381 -a 1 -x {21.0 3.0 190 ------- null} + -t 20.4952 -s 28 -d 1 -p ack -e 40 -c 0 -i 381 -a 1 -x {21.0 3.0 190 ------- null} - -t 20.4952 -s 28 -d 1 -p ack -e 40 -c 0 -i 381 -a 1 -x {21.0 3.0 190 ------- null} h -t 20.4952 -s 28 -d 1 -p ack -e 40 -c 0 -i 381 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.7648 -s 28 -d 1 -p ack -e 40 -c 0 -i 362 -a 1 -x {21.0 3.0 171 ------- null} + -t 20.7648 -s 1 -d 3 -p ack -e 40 -c 0 -i 362 -a 1 -x {21.0 3.0 171 ------- null} - -t 20.7648 -s 1 -d 3 -p ack -e 40 -c 0 -i 362 -a 1 -x {21.0 3.0 171 ------- null} h -t 20.7648 -s 1 -d 3 -p ack -e 40 -c 0 -i 362 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.7664 -s 28 -d 1 -p ack -e 40 -c 0 -i 363 -a 1 -x {21.0 3.0 172 ------- null} + -t 20.7664 -s 1 -d 3 -p ack -e 40 -c 0 -i 363 -a 1 -x {21.0 3.0 172 ------- null} - -t 20.7664 -s 1 -d 3 -p ack -e 40 -c 0 -i 363 -a 1 -x {21.0 3.0 172 ------- null} h -t 20.7664 -s 1 -d 3 -p ack -e 40 -c 0 -i 363 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.768 -s 28 -d 1 -p ack -e 40 -c 0 -i 364 -a 1 -x {21.0 3.0 173 ------- null} + -t 20.768 -s 1 -d 3 -p ack -e 40 -c 0 -i 364 -a 1 -x {21.0 3.0 173 ------- null} - -t 20.768 -s 1 -d 3 -p ack -e 40 -c 0 -i 364 -a 1 -x {21.0 3.0 173 ------- null} h -t 20.768 -s 1 -d 3 -p ack -e 40 -c 0 -i 364 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.7696 -s 28 -d 1 -p ack -e 40 -c 0 -i 365 -a 1 -x {21.0 3.0 174 ------- null} + -t 20.7696 -s 1 -d 3 -p ack -e 40 -c 0 -i 365 -a 1 -x {21.0 3.0 174 ------- null} - -t 20.7696 -s 1 -d 3 -p ack -e 40 -c 0 -i 365 -a 1 -x {21.0 3.0 174 ------- null} h -t 20.7696 -s 1 -d 3 -p ack -e 40 -c 0 -i 365 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.7712 -s 28 -d 1 -p ack -e 40 -c 0 -i 366 -a 1 -x {21.0 3.0 175 ------- null} + -t 20.7712 -s 1 -d 3 -p ack -e 40 -c 0 -i 366 -a 1 -x {21.0 3.0 175 ------- null} - -t 20.7712 -s 1 -d 3 -p ack -e 40 -c 0 -i 366 -a 1 -x {21.0 3.0 175 ------- null} h -t 20.7712 -s 1 -d 3 -p ack -e 40 -c 0 -i 366 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.7728 -s 28 -d 1 -p ack -e 40 -c 0 -i 367 -a 1 -x {21.0 3.0 176 ------- null} + -t 20.7728 -s 1 -d 3 -p ack -e 40 -c 0 -i 367 -a 1 -x {21.0 3.0 176 ------- null} - -t 20.7728 -s 1 -d 3 -p ack -e 40 -c 0 -i 367 -a 1 -x {21.0 3.0 176 ------- null} h -t 20.7728 -s 1 -d 3 -p ack -e 40 -c 0 -i 367 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.7744 -s 28 -d 1 -p ack -e 40 -c 0 -i 368 -a 1 -x {21.0 3.0 177 ------- null} + -t 20.7744 -s 1 -d 3 -p ack -e 40 -c 0 -i 368 -a 1 -x {21.0 3.0 177 ------- null} - -t 20.7744 -s 1 -d 3 -p ack -e 40 -c 0 -i 368 -a 1 -x {21.0 3.0 177 ------- null} h -t 20.7744 -s 1 -d 3 -p ack -e 40 -c 0 -i 368 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.776 -s 28 -d 1 -p ack -e 40 -c 0 -i 369 -a 1 -x {21.0 3.0 178 ------- null} + -t 20.776 -s 1 -d 3 -p ack -e 40 -c 0 -i 369 -a 1 -x {21.0 3.0 178 ------- null} - -t 20.776 -s 1 -d 3 -p ack -e 40 -c 0 -i 369 -a 1 -x {21.0 3.0 178 ------- null} h -t 20.776 -s 1 -d 3 -p ack -e 40 -c 0 -i 369 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.7776 -s 28 -d 1 -p ack -e 40 -c 0 -i 370 -a 1 -x {21.0 3.0 179 ------- null} + -t 20.7776 -s 1 -d 3 -p ack -e 40 -c 0 -i 370 -a 1 -x {21.0 3.0 179 ------- null} - -t 20.7776 -s 1 -d 3 -p ack -e 40 -c 0 -i 370 -a 1 -x {21.0 3.0 179 ------- null} h -t 20.7776 -s 1 -d 3 -p ack -e 40 -c 0 -i 370 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.7792 -s 28 -d 1 -p ack -e 40 -c 0 -i 371 -a 1 -x {21.0 3.0 180 ------- null} + -t 20.7792 -s 1 -d 3 -p ack -e 40 -c 0 -i 371 -a 1 -x {21.0 3.0 180 ------- null} - -t 20.7792 -s 1 -d 3 -p ack -e 40 -c 0 -i 371 -a 1 -x {21.0 3.0 180 ------- null} h -t 20.7792 -s 1 -d 3 -p ack -e 40 -c 0 -i 371 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.7808 -s 28 -d 1 -p ack -e 40 -c 0 -i 372 -a 1 -x {21.0 3.0 181 ------- null} + -t 20.7808 -s 1 -d 3 -p ack -e 40 -c 0 -i 372 -a 1 -x {21.0 3.0 181 ------- null} - -t 20.7808 -s 1 -d 3 -p ack -e 40 -c 0 -i 372 -a 1 -x {21.0 3.0 181 ------- null} h -t 20.7808 -s 1 -d 3 -p ack -e 40 -c 0 -i 372 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.7824 -s 28 -d 1 -p ack -e 40 -c 0 -i 373 -a 1 -x {21.0 3.0 182 ------- null} + -t 20.7824 -s 1 -d 3 -p ack -e 40 -c 0 -i 373 -a 1 -x {21.0 3.0 182 ------- null} - -t 20.7824 -s 1 -d 3 -p ack -e 40 -c 0 -i 373 -a 1 -x {21.0 3.0 182 ------- null} h -t 20.7824 -s 1 -d 3 -p ack -e 40 -c 0 -i 373 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.784 -s 28 -d 1 -p ack -e 40 -c 0 -i 374 -a 1 -x {21.0 3.0 183 ------- null} + -t 20.784 -s 1 -d 3 -p ack -e 40 -c 0 -i 374 -a 1 -x {21.0 3.0 183 ------- null} - -t 20.784 -s 1 -d 3 -p ack -e 40 -c 0 -i 374 -a 1 -x {21.0 3.0 183 ------- null} h -t 20.784 -s 1 -d 3 -p ack -e 40 -c 0 -i 374 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.7856 -s 28 -d 1 -p ack -e 40 -c 0 -i 375 -a 1 -x {21.0 3.0 184 ------- null} + -t 20.7856 -s 1 -d 3 -p ack -e 40 -c 0 -i 375 -a 1 -x {21.0 3.0 184 ------- null} - -t 20.7856 -s 1 -d 3 -p ack -e 40 -c 0 -i 375 -a 1 -x {21.0 3.0 184 ------- null} h -t 20.7856 -s 1 -d 3 -p ack -e 40 -c 0 -i 375 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.7872 -s 28 -d 1 -p ack -e 40 -c 0 -i 376 -a 1 -x {21.0 3.0 185 ------- null} + -t 20.7872 -s 1 -d 3 -p ack -e 40 -c 0 -i 376 -a 1 -x {21.0 3.0 185 ------- null} - -t 20.7872 -s 1 -d 3 -p ack -e 40 -c 0 -i 376 -a 1 -x {21.0 3.0 185 ------- null} h -t 20.7872 -s 1 -d 3 -p ack -e 40 -c 0 -i 376 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.7888 -s 28 -d 1 -p ack -e 40 -c 0 -i 377 -a 1 -x {21.0 3.0 186 ------- null} + -t 20.7888 -s 1 -d 3 -p ack -e 40 -c 0 -i 377 -a 1 -x {21.0 3.0 186 ------- null} - -t 20.7888 -s 1 -d 3 -p ack -e 40 -c 0 -i 377 -a 1 -x {21.0 3.0 186 ------- null} h -t 20.7888 -s 1 -d 3 -p ack -e 40 -c 0 -i 377 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.7904 -s 28 -d 1 -p ack -e 40 -c 0 -i 378 -a 1 -x {21.0 3.0 187 ------- null} + -t 20.7904 -s 1 -d 3 -p ack -e 40 -c 0 -i 378 -a 1 -x {21.0 3.0 187 ------- null} - -t 20.7904 -s 1 -d 3 -p ack -e 40 -c 0 -i 378 -a 1 -x {21.0 3.0 187 ------- null} h -t 20.7904 -s 1 -d 3 -p ack -e 40 -c 0 -i 378 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.792 -s 28 -d 1 -p ack -e 40 -c 0 -i 379 -a 1 -x {21.0 3.0 188 ------- null} + -t 20.792 -s 1 -d 3 -p ack -e 40 -c 0 -i 379 -a 1 -x {21.0 3.0 188 ------- null} - -t 20.792 -s 1 -d 3 -p ack -e 40 -c 0 -i 379 -a 1 -x {21.0 3.0 188 ------- null} h -t 20.792 -s 1 -d 3 -p ack -e 40 -c 0 -i 379 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.7936 -s 28 -d 1 -p ack -e 40 -c 0 -i 380 -a 1 -x {21.0 3.0 189 ------- null} + -t 20.7936 -s 1 -d 3 -p ack -e 40 -c 0 -i 380 -a 1 -x {21.0 3.0 189 ------- null} - -t 20.7936 -s 1 -d 3 -p ack -e 40 -c 0 -i 380 -a 1 -x {21.0 3.0 189 ------- null} h -t 20.7936 -s 1 -d 3 -p ack -e 40 -c 0 -i 380 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.7952 -s 28 -d 1 -p ack -e 40 -c 0 -i 381 -a 1 -x {21.0 3.0 190 ------- null} + -t 20.7952 -s 1 -d 3 -p ack -e 40 -c 0 -i 381 -a 1 -x {21.0 3.0 190 ------- null} - -t 20.7952 -s 1 -d 3 -p ack -e 40 -c 0 -i 381 -a 1 -x {21.0 3.0 190 ------- null} h -t 20.7952 -s 1 -d 3 -p ack -e 40 -c 0 -i 381 -a 1 -x {21.0 3.0 -1 ------- null} r -t 20.9049 -s 1 -d 3 -p ack -e 40 -c 0 -i 362 -a 1 -x {21.0 3.0 171 ------- null} + -t 20.9049 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {3.0 21.0 191 ------- null} - -t 20.9049 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {3.0 21.0 191 ------- null} h -t 20.9049 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {3.0 21.0 -1 ------- null} r -t 20.9065 -s 1 -d 3 -p ack -e 40 -c 0 -i 363 -a 1 -x {21.0 3.0 172 ------- null} + -t 20.9065 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {3.0 21.0 192 ------- null} - -t 20.9065 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {3.0 21.0 192 ------- null} h -t 20.9065 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {3.0 21.0 -1 ------- null} r -t 20.9081 -s 1 -d 3 -p ack -e 40 -c 0 -i 364 -a 1 -x {21.0 3.0 173 ------- null} + -t 20.9081 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 384 -a 0 -x {3.0 21.0 193 ------- null} - -t 20.9081 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 384 -a 0 -x {3.0 21.0 193 ------- null} h -t 20.9081 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 384 -a 0 -x {3.0 21.0 -1 ------- null} r -t 20.9097 -s 1 -d 3 -p ack -e 40 -c 0 -i 365 -a 1 -x {21.0 3.0 174 ------- null} + -t 20.9097 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {3.0 21.0 194 ------- null} - -t 20.9097 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {3.0 21.0 194 ------- null} h -t 20.9097 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {3.0 21.0 -1 ------- null} r -t 20.9113 -s 1 -d 3 -p ack -e 40 -c 0 -i 366 -a 1 -x {21.0 3.0 175 ------- null} + -t 20.9113 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 386 -a 0 -x {3.0 21.0 195 ------- null} - -t 20.9113 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 386 -a 0 -x {3.0 21.0 195 ------- null} h -t 20.9113 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 386 -a 0 -x {3.0 21.0 -1 ------- null} r -t 20.9129 -s 1 -d 3 -p ack -e 40 -c 0 -i 367 -a 1 -x {21.0 3.0 176 ------- null} + -t 20.9129 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {3.0 21.0 196 ------- null} - -t 20.9129 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {3.0 21.0 196 ------- null} h -t 20.9129 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {3.0 21.0 -1 ------- null} r -t 20.9145 -s 1 -d 3 -p ack -e 40 -c 0 -i 368 -a 1 -x {21.0 3.0 177 ------- null} + -t 20.9145 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {3.0 21.0 197 ------- null} - -t 20.9145 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {3.0 21.0 197 ------- null} h -t 20.9145 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {3.0 21.0 -1 ------- null} r -t 20.9161 -s 1 -d 3 -p ack -e 40 -c 0 -i 369 -a 1 -x {21.0 3.0 178 ------- null} + -t 20.9161 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {3.0 21.0 198 ------- null} - -t 20.9161 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {3.0 21.0 198 ------- null} h -t 20.9161 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {3.0 21.0 -1 ------- null} r -t 20.9177 -s 1 -d 3 -p ack -e 40 -c 0 -i 370 -a 1 -x {21.0 3.0 179 ------- null} + -t 20.9177 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 390 -a 0 -x {3.0 21.0 199 ------- null} - -t 20.9177 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 390 -a 0 -x {3.0 21.0 199 ------- null} h -t 20.9177 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 390 -a 0 -x {3.0 21.0 -1 ------- null} r -t 20.9193 -s 1 -d 3 -p ack -e 40 -c 0 -i 371 -a 1 -x {21.0 3.0 180 ------- null} + -t 20.9193 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {3.0 21.0 200 ------- null} - -t 20.9193 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {3.0 21.0 200 ------- null} h -t 20.9193 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {3.0 21.0 -1 ------- null} r -t 20.9209 -s 1 -d 3 -p ack -e 40 -c 0 -i 372 -a 1 -x {21.0 3.0 181 ------- null} + -t 20.9209 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {3.0 21.0 201 ------- null} - -t 20.9209 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {3.0 21.0 201 ------- null} h -t 20.9209 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {3.0 21.0 -1 ------- null} r -t 20.9225 -s 1 -d 3 -p ack -e 40 -c 0 -i 373 -a 1 -x {21.0 3.0 182 ------- null} + -t 20.9225 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {3.0 21.0 202 ------- null} - -t 20.9225 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {3.0 21.0 202 ------- null} h -t 20.9225 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {3.0 21.0 -1 ------- null} r -t 20.9241 -s 1 -d 3 -p ack -e 40 -c 0 -i 374 -a 1 -x {21.0 3.0 183 ------- null} + -t 20.9241 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {3.0 21.0 203 ------- null} - -t 20.9241 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {3.0 21.0 203 ------- null} h -t 20.9241 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {3.0 21.0 -1 ------- null} r -t 20.9257 -s 1 -d 3 -p ack -e 40 -c 0 -i 375 -a 1 -x {21.0 3.0 184 ------- null} + -t 20.9257 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {3.0 21.0 204 ------- null} - -t 20.9257 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {3.0 21.0 204 ------- null} h -t 20.9257 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {3.0 21.0 -1 ------- null} r -t 20.9273 -s 1 -d 3 -p ack -e 40 -c 0 -i 376 -a 1 -x {21.0 3.0 185 ------- null} + -t 20.9273 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 396 -a 0 -x {3.0 21.0 205 ------- null} - -t 20.9273 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 396 -a 0 -x {3.0 21.0 205 ------- null} h -t 20.9273 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 396 -a 0 -x {3.0 21.0 -1 ------- null} r -t 20.9289 -s 1 -d 3 -p ack -e 40 -c 0 -i 377 -a 1 -x {21.0 3.0 186 ------- null} + -t 20.9289 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {3.0 21.0 206 ------- null} - -t 20.9289 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {3.0 21.0 206 ------- null} h -t 20.9289 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {3.0 21.0 -1 ------- null} r -t 20.9305 -s 1 -d 3 -p ack -e 40 -c 0 -i 378 -a 1 -x {21.0 3.0 187 ------- null} + -t 20.9305 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 398 -a 0 -x {3.0 21.0 207 ------- null} - -t 20.9305 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 398 -a 0 -x {3.0 21.0 207 ------- null} h -t 20.9305 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 398 -a 0 -x {3.0 21.0 -1 ------- null} r -t 20.9321 -s 1 -d 3 -p ack -e 40 -c 0 -i 379 -a 1 -x {21.0 3.0 188 ------- null} + -t 20.9321 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {3.0 21.0 208 ------- null} - -t 20.9321 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {3.0 21.0 208 ------- null} h -t 20.9321 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {3.0 21.0 -1 ------- null} r -t 20.9337 -s 1 -d 3 -p ack -e 40 -c 0 -i 380 -a 1 -x {21.0 3.0 189 ------- null} + -t 20.9337 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 400 -a 0 -x {3.0 21.0 209 ------- null} - -t 20.9337 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 400 -a 0 -x {3.0 21.0 209 ------- null} h -t 20.9337 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 400 -a 0 -x {3.0 21.0 -1 ------- null} r -t 20.9353 -s 1 -d 3 -p ack -e 40 -c 0 -i 381 -a 1 -x {21.0 3.0 190 ------- null} + -t 20.9353 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {3.0 21.0 210 ------- null} - -t 20.9353 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {3.0 21.0 210 ------- null} h -t 20.9353 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.0465 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {3.0 21.0 191 ------- null} + -t 21.0465 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {3.0 21.0 191 ------- null} - -t 21.0465 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {3.0 21.0 191 ------- null} h -t 21.0465 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.0481 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {3.0 21.0 192 ------- null} + -t 21.0481 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {3.0 21.0 192 ------- null} - -t 21.0481 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {3.0 21.0 192 ------- null} h -t 21.0481 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.0497 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 384 -a 0 -x {3.0 21.0 193 ------- null} + -t 21.0497 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 384 -a 0 -x {3.0 21.0 193 ------- null} - -t 21.0497 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 384 -a 0 -x {3.0 21.0 193 ------- null} h -t 21.0497 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 384 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.0513 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {3.0 21.0 194 ------- null} + -t 21.0513 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {3.0 21.0 194 ------- null} - -t 21.0513 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {3.0 21.0 194 ------- null} h -t 21.0513 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.0529 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 386 -a 0 -x {3.0 21.0 195 ------- null} + -t 21.0529 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 386 -a 0 -x {3.0 21.0 195 ------- null} - -t 21.0529 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 386 -a 0 -x {3.0 21.0 195 ------- null} h -t 21.0529 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 386 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.0545 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {3.0 21.0 196 ------- null} + -t 21.0545 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {3.0 21.0 196 ------- null} - -t 21.0545 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {3.0 21.0 196 ------- null} h -t 21.0545 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.0561 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {3.0 21.0 197 ------- null} + -t 21.0561 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {3.0 21.0 197 ------- null} - -t 21.0561 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {3.0 21.0 197 ------- null} h -t 21.0561 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.0577 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {3.0 21.0 198 ------- null} + -t 21.0577 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {3.0 21.0 198 ------- null} - -t 21.0577 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {3.0 21.0 198 ------- null} h -t 21.0577 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.0593 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 390 -a 0 -x {3.0 21.0 199 ------- null} + -t 21.0593 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 390 -a 0 -x {3.0 21.0 199 ------- null} - -t 21.0593 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 390 -a 0 -x {3.0 21.0 199 ------- null} h -t 21.0593 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 390 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.0609 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {3.0 21.0 200 ------- null} + -t 21.0609 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {3.0 21.0 200 ------- null} - -t 21.0609 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {3.0 21.0 200 ------- null} h -t 21.0609 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.0625 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {3.0 21.0 201 ------- null} + -t 21.0625 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {3.0 21.0 201 ------- null} - -t 21.0625 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {3.0 21.0 201 ------- null} h -t 21.0625 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.0641 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {3.0 21.0 202 ------- null} + -t 21.0641 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {3.0 21.0 202 ------- null} - -t 21.0641 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {3.0 21.0 202 ------- null} h -t 21.0641 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.0657 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {3.0 21.0 203 ------- null} + -t 21.0657 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {3.0 21.0 203 ------- null} - -t 21.0657 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {3.0 21.0 203 ------- null} h -t 21.0657 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.0673 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {3.0 21.0 204 ------- null} + -t 21.0673 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {3.0 21.0 204 ------- null} - -t 21.0673 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {3.0 21.0 204 ------- null} h -t 21.0673 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.0689 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 396 -a 0 -x {3.0 21.0 205 ------- null} + -t 21.0689 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 396 -a 0 -x {3.0 21.0 205 ------- null} - -t 21.0689 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 396 -a 0 -x {3.0 21.0 205 ------- null} h -t 21.0689 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 396 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.0705 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {3.0 21.0 206 ------- null} + -t 21.0705 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {3.0 21.0 206 ------- null} - -t 21.0705 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {3.0 21.0 206 ------- null} h -t 21.0705 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.0721 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 398 -a 0 -x {3.0 21.0 207 ------- null} + -t 21.0721 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 398 -a 0 -x {3.0 21.0 207 ------- null} - -t 21.0721 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 398 -a 0 -x {3.0 21.0 207 ------- null} h -t 21.0721 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 398 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.0737 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {3.0 21.0 208 ------- null} + -t 21.0737 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {3.0 21.0 208 ------- null} - -t 21.0737 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {3.0 21.0 208 ------- null} h -t 21.0737 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.0753 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 400 -a 0 -x {3.0 21.0 209 ------- null} + -t 21.0753 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 400 -a 0 -x {3.0 21.0 209 ------- null} - -t 21.0753 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 400 -a 0 -x {3.0 21.0 209 ------- null} h -t 21.0753 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 400 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.0769 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {3.0 21.0 210 ------- null} + -t 21.0769 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {3.0 21.0 210 ------- null} - -t 21.0769 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {3.0 21.0 210 ------- null} h -t 21.0769 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.3481 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {3.0 21.0 191 ------- null} + -t 21.3481 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {3.0 21.0 191 ------- null} - -t 21.3481 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {3.0 21.0 191 ------- null} h -t 21.3481 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.3497 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {3.0 21.0 192 ------- null} + -t 21.3497 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {3.0 21.0 192 ------- null} - -t 21.3497 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {3.0 21.0 192 ------- null} h -t 21.3497 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.3513 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 384 -a 0 -x {3.0 21.0 193 ------- null} + -t 21.3513 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 384 -a 0 -x {3.0 21.0 193 ------- null} - -t 21.3513 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 384 -a 0 -x {3.0 21.0 193 ------- null} h -t 21.3513 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 384 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.3529 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {3.0 21.0 194 ------- null} + -t 21.3529 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {3.0 21.0 194 ------- null} - -t 21.3529 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {3.0 21.0 194 ------- null} h -t 21.3529 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.3545 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 386 -a 0 -x {3.0 21.0 195 ------- null} + -t 21.3545 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 386 -a 0 -x {3.0 21.0 195 ------- null} - -t 21.3545 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 386 -a 0 -x {3.0 21.0 195 ------- null} h -t 21.3545 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 386 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.3561 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {3.0 21.0 196 ------- null} + -t 21.3561 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {3.0 21.0 196 ------- null} - -t 21.3561 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {3.0 21.0 196 ------- null} h -t 21.3561 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.3577 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {3.0 21.0 197 ------- null} + -t 21.3577 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {3.0 21.0 197 ------- null} - -t 21.3577 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {3.0 21.0 197 ------- null} h -t 21.3577 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.3593 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {3.0 21.0 198 ------- null} + -t 21.3593 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {3.0 21.0 198 ------- null} - -t 21.3593 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {3.0 21.0 198 ------- null} h -t 21.3593 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.3609 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 390 -a 0 -x {3.0 21.0 199 ------- null} + -t 21.3609 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 390 -a 0 -x {3.0 21.0 199 ------- null} - -t 21.3609 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 390 -a 0 -x {3.0 21.0 199 ------- null} h -t 21.3609 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 390 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.3625 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {3.0 21.0 200 ------- null} + -t 21.3625 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {3.0 21.0 200 ------- null} - -t 21.3625 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {3.0 21.0 200 ------- null} h -t 21.3625 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.3641 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {3.0 21.0 201 ------- null} + -t 21.3641 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {3.0 21.0 201 ------- null} - -t 21.3641 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {3.0 21.0 201 ------- null} h -t 21.3641 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.3657 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {3.0 21.0 202 ------- null} + -t 21.3657 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {3.0 21.0 202 ------- null} - -t 21.3657 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {3.0 21.0 202 ------- null} h -t 21.3657 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.3673 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {3.0 21.0 203 ------- null} + -t 21.3673 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {3.0 21.0 203 ------- null} - -t 21.3673 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {3.0 21.0 203 ------- null} h -t 21.3673 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.3689 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {3.0 21.0 204 ------- null} + -t 21.3689 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {3.0 21.0 204 ------- null} - -t 21.3689 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {3.0 21.0 204 ------- null} h -t 21.3689 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.3705 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 396 -a 0 -x {3.0 21.0 205 ------- null} + -t 21.3705 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 396 -a 0 -x {3.0 21.0 205 ------- null} - -t 21.3705 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 396 -a 0 -x {3.0 21.0 205 ------- null} h -t 21.3705 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 396 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.3721 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {3.0 21.0 206 ------- null} + -t 21.3721 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {3.0 21.0 206 ------- null} - -t 21.3721 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {3.0 21.0 206 ------- null} h -t 21.3721 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.3737 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 398 -a 0 -x {3.0 21.0 207 ------- null} + -t 21.3737 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 398 -a 0 -x {3.0 21.0 207 ------- null} - -t 21.3737 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 398 -a 0 -x {3.0 21.0 207 ------- null} h -t 21.3737 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 398 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.3753 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {3.0 21.0 208 ------- null} + -t 21.3753 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {3.0 21.0 208 ------- null} - -t 21.3753 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {3.0 21.0 208 ------- null} h -t 21.3753 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.3769 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 400 -a 0 -x {3.0 21.0 209 ------- null} + -t 21.3769 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 400 -a 0 -x {3.0 21.0 209 ------- null} - -t 21.3769 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 400 -a 0 -x {3.0 21.0 209 ------- null} h -t 21.3769 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 400 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.3785 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {3.0 21.0 210 ------- null} + -t 21.3785 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {3.0 21.0 210 ------- null} - -t 21.3785 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {3.0 21.0 210 ------- null} h -t 21.3785 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {3.0 21.0 -1 ------- null} r -t 21.6997 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {3.0 21.0 191 ------- null} + -t 21.6997 -s 21 -d 28 -p ack -e 40 -c 0 -i 402 -a 1 -x {21.0 3.0 191 ------- null} - -t 21.6997 -s 21 -d 28 -p ack -e 40 -c 0 -i 402 -a 1 -x {21.0 3.0 191 ------- null} h -t 21.6997 -s 21 -d 28 -p ack -e 40 -c 0 -i 402 -a 1 -x {21.0 3.0 -1 ------- null} r -t 21.7013 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {3.0 21.0 192 ------- null} + -t 21.7013 -s 21 -d 28 -p ack -e 40 -c 0 -i 403 -a 1 -x {21.0 3.0 192 ------- null} - -t 21.7013 -s 21 -d 28 -p ack -e 40 -c 0 -i 403 -a 1 -x {21.0 3.0 192 ------- null} h -t 21.7013 -s 21 -d 28 -p ack -e 40 -c 0 -i 403 -a 1 -x {21.0 3.0 -1 ------- null} r -t 21.7029 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 384 -a 0 -x {3.0 21.0 193 ------- null} + -t 21.7029 -s 21 -d 28 -p ack -e 40 -c 0 -i 404 -a 1 -x {21.0 3.0 193 ------- null} - -t 21.7029 -s 21 -d 28 -p ack -e 40 -c 0 -i 404 -a 1 -x {21.0 3.0 193 ------- null} h -t 21.7029 -s 21 -d 28 -p ack -e 40 -c 0 -i 404 -a 1 -x {21.0 3.0 -1 ------- null} r -t 21.7045 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {3.0 21.0 194 ------- null} + -t 21.7045 -s 21 -d 28 -p ack -e 40 -c 0 -i 405 -a 1 -x {21.0 3.0 194 ------- null} - -t 21.7045 -s 21 -d 28 -p ack -e 40 -c 0 -i 405 -a 1 -x {21.0 3.0 194 ------- null} h -t 21.7045 -s 21 -d 28 -p ack -e 40 -c 0 -i 405 -a 1 -x {21.0 3.0 -1 ------- null} r -t 21.7061 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 386 -a 0 -x {3.0 21.0 195 ------- null} + -t 21.7061 -s 21 -d 28 -p ack -e 40 -c 0 -i 406 -a 1 -x {21.0 3.0 195 ------- null} - -t 21.7061 -s 21 -d 28 -p ack -e 40 -c 0 -i 406 -a 1 -x {21.0 3.0 195 ------- null} h -t 21.7061 -s 21 -d 28 -p ack -e 40 -c 0 -i 406 -a 1 -x {21.0 3.0 -1 ------- null} r -t 21.7077 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {3.0 21.0 196 ------- null} + -t 21.7077 -s 21 -d 28 -p ack -e 40 -c 0 -i 407 -a 1 -x {21.0 3.0 196 ------- null} - -t 21.7077 -s 21 -d 28 -p ack -e 40 -c 0 -i 407 -a 1 -x {21.0 3.0 196 ------- null} h -t 21.7077 -s 21 -d 28 -p ack -e 40 -c 0 -i 407 -a 1 -x {21.0 3.0 -1 ------- null} r -t 21.7093 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {3.0 21.0 197 ------- null} + -t 21.7093 -s 21 -d 28 -p ack -e 40 -c 0 -i 408 -a 1 -x {21.0 3.0 197 ------- null} - -t 21.7093 -s 21 -d 28 -p ack -e 40 -c 0 -i 408 -a 1 -x {21.0 3.0 197 ------- null} h -t 21.7093 -s 21 -d 28 -p ack -e 40 -c 0 -i 408 -a 1 -x {21.0 3.0 -1 ------- null} r -t 21.7109 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {3.0 21.0 198 ------- null} + -t 21.7109 -s 21 -d 28 -p ack -e 40 -c 0 -i 409 -a 1 -x {21.0 3.0 198 ------- null} - -t 21.7109 -s 21 -d 28 -p ack -e 40 -c 0 -i 409 -a 1 -x {21.0 3.0 198 ------- null} h -t 21.7109 -s 21 -d 28 -p ack -e 40 -c 0 -i 409 -a 1 -x {21.0 3.0 -1 ------- null} r -t 21.7125 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 390 -a 0 -x {3.0 21.0 199 ------- null} + -t 21.7125 -s 21 -d 28 -p ack -e 40 -c 0 -i 410 -a 1 -x {21.0 3.0 199 ------- null} - -t 21.7125 -s 21 -d 28 -p ack -e 40 -c 0 -i 410 -a 1 -x {21.0 3.0 199 ------- null} h -t 21.7125 -s 21 -d 28 -p ack -e 40 -c 0 -i 410 -a 1 -x {21.0 3.0 -1 ------- null} r -t 21.7141 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {3.0 21.0 200 ------- null} + -t 21.7141 -s 21 -d 28 -p ack -e 40 -c 0 -i 411 -a 1 -x {21.0 3.0 200 ------- null} - -t 21.7141 -s 21 -d 28 -p ack -e 40 -c 0 -i 411 -a 1 -x {21.0 3.0 200 ------- null} h -t 21.7141 -s 21 -d 28 -p ack -e 40 -c 0 -i 411 -a 1 -x {21.0 3.0 -1 ------- null} r -t 21.7157 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {3.0 21.0 201 ------- null} + -t 21.7157 -s 21 -d 28 -p ack -e 40 -c 0 -i 412 -a 1 -x {21.0 3.0 201 ------- null} - -t 21.7157 -s 21 -d 28 -p ack -e 40 -c 0 -i 412 -a 1 -x {21.0 3.0 201 ------- null} h -t 21.7157 -s 21 -d 28 -p ack -e 40 -c 0 -i 412 -a 1 -x {21.0 3.0 -1 ------- null} r -t 21.7173 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {3.0 21.0 202 ------- null} + -t 21.7173 -s 21 -d 28 -p ack -e 40 -c 0 -i 413 -a 1 -x {21.0 3.0 202 ------- null} - -t 21.7173 -s 21 -d 28 -p ack -e 40 -c 0 -i 413 -a 1 -x {21.0 3.0 202 ------- null} h -t 21.7173 -s 21 -d 28 -p ack -e 40 -c 0 -i 413 -a 1 -x {21.0 3.0 -1 ------- null} r -t 21.7189 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {3.0 21.0 203 ------- null} + -t 21.7189 -s 21 -d 28 -p ack -e 40 -c 0 -i 414 -a 1 -x {21.0 3.0 203 ------- null} - -t 21.7189 -s 21 -d 28 -p ack -e 40 -c 0 -i 414 -a 1 -x {21.0 3.0 203 ------- null} h -t 21.7189 -s 21 -d 28 -p ack -e 40 -c 0 -i 414 -a 1 -x {21.0 3.0 -1 ------- null} r -t 21.7205 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {3.0 21.0 204 ------- null} + -t 21.7205 -s 21 -d 28 -p ack -e 40 -c 0 -i 415 -a 1 -x {21.0 3.0 204 ------- null} - -t 21.7205 -s 21 -d 28 -p ack -e 40 -c 0 -i 415 -a 1 -x {21.0 3.0 204 ------- null} h -t 21.7205 -s 21 -d 28 -p ack -e 40 -c 0 -i 415 -a 1 -x {21.0 3.0 -1 ------- null} r -t 21.7221 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 396 -a 0 -x {3.0 21.0 205 ------- null} + -t 21.7221 -s 21 -d 28 -p ack -e 40 -c 0 -i 416 -a 1 -x {21.0 3.0 205 ------- null} - -t 21.7221 -s 21 -d 28 -p ack -e 40 -c 0 -i 416 -a 1 -x {21.0 3.0 205 ------- null} h -t 21.7221 -s 21 -d 28 -p ack -e 40 -c 0 -i 416 -a 1 -x {21.0 3.0 -1 ------- null} r -t 21.7237 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {3.0 21.0 206 ------- null} + -t 21.7237 -s 21 -d 28 -p ack -e 40 -c 0 -i 417 -a 1 -x {21.0 3.0 206 ------- null} - -t 21.7237 -s 21 -d 28 -p ack -e 40 -c 0 -i 417 -a 1 -x {21.0 3.0 206 ------- null} h -t 21.7237 -s 21 -d 28 -p ack -e 40 -c 0 -i 417 -a 1 -x {21.0 3.0 -1 ------- null} r -t 21.7253 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 398 -a 0 -x {3.0 21.0 207 ------- null} + -t 21.7253 -s 21 -d 28 -p ack -e 40 -c 0 -i 418 -a 1 -x {21.0 3.0 207 ------- null} - -t 21.7253 -s 21 -d 28 -p ack -e 40 -c 0 -i 418 -a 1 -x {21.0 3.0 207 ------- null} h -t 21.7253 -s 21 -d 28 -p ack -e 40 -c 0 -i 418 -a 1 -x {21.0 3.0 -1 ------- null} r -t 21.7269 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {3.0 21.0 208 ------- null} + -t 21.7269 -s 21 -d 28 -p ack -e 40 -c 0 -i 419 -a 1 -x {21.0 3.0 208 ------- null} - -t 21.7269 -s 21 -d 28 -p ack -e 40 -c 0 -i 419 -a 1 -x {21.0 3.0 208 ------- null} h -t 21.7269 -s 21 -d 28 -p ack -e 40 -c 0 -i 419 -a 1 -x {21.0 3.0 -1 ------- null} r -t 21.7285 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 400 -a 0 -x {3.0 21.0 209 ------- null} + -t 21.7285 -s 21 -d 28 -p ack -e 40 -c 0 -i 420 -a 1 -x {21.0 3.0 209 ------- null} - -t 21.7285 -s 21 -d 28 -p ack -e 40 -c 0 -i 420 -a 1 -x {21.0 3.0 209 ------- null} h -t 21.7285 -s 21 -d 28 -p ack -e 40 -c 0 -i 420 -a 1 -x {21.0 3.0 -1 ------- null} r -t 21.7301 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {3.0 21.0 210 ------- null} + -t 21.7301 -s 21 -d 28 -p ack -e 40 -c 0 -i 421 -a 1 -x {21.0 3.0 210 ------- null} - -t 21.7301 -s 21 -d 28 -p ack -e 40 -c 0 -i 421 -a 1 -x {21.0 3.0 210 ------- null} h -t 21.7301 -s 21 -d 28 -p ack -e 40 -c 0 -i 421 -a 1 -x {21.0 3.0 -1 ------- null} r -t 22.0498 -s 21 -d 28 -p ack -e 40 -c 0 -i 402 -a 1 -x {21.0 3.0 191 ------- null} + -t 22.0498 -s 28 -d 1 -p ack -e 40 -c 0 -i 402 -a 1 -x {21.0 3.0 191 ------- null} - -t 22.0498 -s 28 -d 1 -p ack -e 40 -c 0 -i 402 -a 1 -x {21.0 3.0 191 ------- null} h -t 22.0498 -s 28 -d 1 -p ack -e 40 -c 0 -i 402 -a 1 -x {21.0 3.0 -1 ------- null} r -t 22.0514 -s 21 -d 28 -p ack -e 40 -c 0 -i 403 -a 1 -x {21.0 3.0 192 ------- null} + -t 22.0514 -s 28 -d 1 -p ack -e 40 -c 0 -i 403 -a 1 -x {21.0 3.0 192 ------- null} - -t 22.0514 -s 28 -d 1 -p ack -e 40 -c 0 -i 403 -a 1 -x {21.0 3.0 192 ------- null} h -t 22.0514 -s 28 -d 1 -p ack -e 40 -c 0 -i 403 -a 1 -x {21.0 3.0 -1 ------- null} r -t 22.053 -s 21 -d 28 -p ack -e 40 -c 0 -i 404 -a 1 -x {21.0 3.0 193 ------- null} + -t 22.053 -s 28 -d 1 -p ack -e 40 -c 0 -i 404 -a 1 -x {21.0 3.0 193 ------- null} - -t 22.053 -s 28 -d 1 -p ack -e 40 -c 0 -i 404 -a 1 -x {21.0 3.0 193 ------- null} h -t 22.053 -s 28 -d 1 -p ack -e 40 -c 0 -i 404 -a 1 -x {21.0 3.0 -1 ------- null} r -t 22.0546 -s 21 -d 28 -p ack -e 40 -c 0 -i 405 -a 1 -x {21.0 3.0 194 ------- null} + -t 22.0546 -s 28 -d 1 -p ack -e 40 -c 0 -i 405 -a 1 -x {21.0 3.0 194 ------- null} - -t 22.0546 -s 28 -d 1 -p ack -e 40 -c 0 -i 405 -a 1 -x {21.0 3.0 194 ------- null} h -t 22.0546 -s 28 -d 1 -p ack -e 40 -c 0 -i 405 -a 1 -x {21.0 3.0 -1 ------- null} r -t 22.0562 -s 21 -d 28 -p ack -e 40 -c 0 -i 406 -a 1 -x {21.0 3.0 195 ------- null} + -t 22.0562 -s 28 -d 1 -p ack -e 40 -c 0 -i 406 -a 1 -x {21.0 3.0 195 ------- null} - -t 22.0562 -s 28 -d 1 -p ack -e 40 -c 0 -i 406 -a 1 -x {21.0 3.0 195 ------- null} h -t 22.0562 -s 28 -d 1 -p ack -e 40 -c 0 -i 406 -a 1 -x {21.0 3.0 -1 ------- null} r -t 22.0578 -s 21 -d 28 -p ack -e 40 -c 0 -i 407 -a 1 -x {21.0 3.0 196 ------- null} + -t 22.0578 -s 28 -d 1 -p ack -e 40 -c 0 -i 407 -a 1 -x {21.0 3.0 196 ------- null} - -t 22.0578 -s 28 -d 1 -p ack -e 40 -c 0 -i 407 -a 1 -x {21.0 3.0 196 ------- null} h -t 22.0578 -s 28 -d 1 -p ack -e 40 -c 0 -i 407 -a 1 -x {21.0 3.0 -1 ------- null} r -t 22.0594 -s 21 -d 28 -p ack -e 40 -c 0 -i 408 -a 1 -x {21.0 3.0 197 ------- null} + -t 22.0594 -s 28 -d 1 -p ack -e 40 -c 0 -i 408 -a 1 -x {21.0 3.0 197 ------- null} - -t 22.0594 -s 28 -d 1 -p ack -e 40 -c 0 -i 408 -a 1 -x {21.0 3.0 197 ------- null} h -t 22.0594 -s 28 -d 1 -p ack -e 40 -c 0 -i 408 -a 1 -x {21.0 3.0 -1 ------- null} r -t 22.061 -s 21 -d 28 -p ack -e 40 -c 0 -i 409 -a 1 -x {21.0 3.0 198 ------- null} + -t 22.061 -s 28 -d 1 -p ack -e 40 -c 0 -i 409 -a 1 -x {21.0 3.0 198 ------- null} - -t 22.061 -s 28 -d 1 -p ack -e 40 -c 0 -i 409 -a 1 -x {21.0 3.0 198 ------- null} h -t 22.061 -s 28 -d 1 -p ack -e 40 -c 0 -i 409 -a 1 -x {21.0 3.0 -1 ------- null} r -t 22.0626 -s 21 -d 28 -p ack -e 40 -c 0 -i 410 -a 1 -x {21.0 3.0 199 ------- null} + -t 22.0626 -s 28 -d 1 -p ack -e 40 -c 0 -i 410 -a 1 -x {21.0 3.0 199 ------- null} - -t 22.0626 -s 28 -d 1 -p ack -e 40 -c 0 -i 410 -a 1 -x {21.0 3.0 199 ------- null} h -t 22.0626 -s 28 -d 1 -p ack -e 40 -c 0 -i 410 -a 1 -x {21.0 3.0 -1 ------- null} r -t 22.0642 -s 21 -d 28 -p ack -e 40 -c 0 -i 411 -a 1 -x {21.0 3.0 200 ------- null} + -t 22.0642 -s 28 -d 1 -p ack -e 40 -c 0 -i 411 -a 1 -x {21.0 3.0 200 ------- null} - -t 22.0642 -s 28 -d 1 -p ack -e 40 -c 0 -i 411 -a 1 -x {21.0 3.0 200 ------- null} h -t 22.0642 -s 28 -d 1 -p ack -e 40 -c 0 -i 411 -a 1 -x {21.0 3.0 -1 ------- null} r -t 22.0658 -s 21 -d 28 -p ack -e 40 -c 0 -i 412 -a 1 -x {21.0 3.0 201 ------- null} + -t 22.0658 -s 28 -d 1 -p ack -e 40 -c 0 -i 412 -a 1 -x {21.0 3.0 201 ------- null} - -t 22.0658 -s 28 -d 1 -p ack -e 40 -c 0 -i 412 -a 1 -x {21.0 3.0 201 ------- null} h -t 22.0658 -s 28 -d 1 -p ack -e 40 -c 0 -i 412 -a 1 -x {21.0 3.0 -1 ------- null} r -t 22.0674 -s 21 -d 28 -p ack -e 40 -c 0 -i 413 -a 1 -x {21.0 3.0 202 ------- null} + -t 22.0674 -s 28 -d 1 -p ack -e 40 -c 0 -i 413 -a 1 -x {21.0 3.0 202 ------- null} - -t 22.0674 -s 28 -d 1 -p ack -e 40 -c 0 -i 413 -a 1 -x {21.0 3.0 202 ------- null} h -t 22.0674 -s 28 -d 1 -p ack -e 40 -c 0 -i 413 -a 1 -x {21.0 3.0 -1 ------- null} r -t 22.069 -s 21 -d 28 -p ack -e 40 -c 0 -i 414 -a 1 -x {21.0 3.0 203 ------- null} + -t 22.069 -s 28 -d 1 -p ack -e 40 -c 0 -i 414 -a 1 -x {21.0 3.0 203 ------- null} - -t 22.069 -s 28 -d 1 -p ack -e 40 -c 0 -i 414 -a 1 -x {21.0 3.0 203 ------- null} h -t 22.069 -s 28 -d 1 -p ack -e 40 -c 0 -i 414 -a 1 -x {21.0 3.0 -1 ------- null} r -t 22.0706 -s 21 -d 28 -p ack -e 40 -c 0 -i 415 -a 1 -x {21.0 3.0 204 ------- null} + -t 22.0706 -s 28 -d 1 -p ack -e 40 -c 0 -i 415 -a 1 -x {21.0 3.0 204 ------- null} - -t 22.0706 -s 28 -d 1 -p ack -e 40 -c 0 -i 415 -a 1 -x {21.0 3.0 204 ------- null} h -t 22.0706 -s 28 -d 1 -p ack -e 40 -c 0 -i 415 -a 1 -x {21.0 3.0 -1 ------- null} r -t 22.0722 -s 21 -d 28 -p ack -e 40 -c 0 -i 416 -a 1 -x {21.0 3.0 205 ------- null} + -t 22.0722 -s 28 -d 1 -p ack -e 40 -c 0 -i 416 -a 1 -x {21.0 3.0 205 ------- null} - -t 22.0722 -s 28 -d 1 -p ack -e 40 -c 0 -i 416 -a 1 -x {21.0 3.0 205 ------- null} h -t 22.0722 -s 28 -d 1 -p ack -e 40 -c 0 -i 416 -a 1 -x {21.0 3.0 -1 ------- null} r -t 22.0738 -s 21 -d 28 -p ack -e 40 -c 0 -i 417 -a 1 -x {21.0 3.0 206 ------- null} + -t 22.0738 -s 28 -d 1 -p ack -e 40 -c 0 -i 417 -a 1 -x {21.0 3.0 206 ------- null} - -t 22.0738 -s 28 -d 1 -p ack -e 40 -c 0 -i 417 -a 1 -x {21.0 3.0 206 ------- null} h -t 22.0738 -s 28 -d 1 -p ack -e 40 -c 0 -i 417 -a 1 -x {21.0 3.0 -1 ------- null} r -t 22.0754 -s 21 -d 28 -p ack -e 40 -c 0 -i 418 -a 1 -x {21.0 3.0 207 ------- null} + -t 22.0754 -s 28 -d 1 -p ack -e 40 -c 0 -i 418 -a 1 -x {21.0 3.0 207 ------- null} - -t 22.0754 -s 28 -d 1 -p ack -e 40 -c 0 -i 418 -a 1 -x {21.0 3.0 207 ------- null} h -t 22.0754 -s 28 -d 1 -p ack -e 40 -c 0 -i 418 -a 1 -x {21.0 3.0 -1 ------- null} r -t 22.077 -s 21 -d 28 -p ack -e 40 -c 0 -i 419 -a 1 -x {21.0 3.0 208 ------- null} + -t 22.077 -s 28 -d 1 -p ack -e 40 -c 0 -i 419 -a 1 -x {21.0 3.0 208 ------- null} - -t 22.077 -s 28 -d 1 -p ack -e 40 -c 0 -i 419 -a 1 -x {21.0 3.0 208 ------- null} h -t 22.077 -s 28 -d 1 -p ack -e 40 -c 0 -i 419 -a 1 -x {21.0 3.0 -1 ------- null} r -t 22.0786 -s 21 -d 28 -p ack -e 40 -c 0 -i 420 -a 1 -x {21.0 3.0 209 ------- null} + -t 22.0786 -s 28 -d 1 -p ack -e 40 -c 0 -i 420 -a 1 -x {21.0 3.0 209 ------- null} - -t 22.0786 -s 28 -d 1 -p ack -e 40 -c 0 -i 420 -a 1 -x {21.0 3.0 209 ------- null} h -t 22.0786 -s 28 -d 1 -p ack -e 40 -c 0 -i 420 -a 1 -x {21.0 3.0 -1 ------- null} r -t 22.0802 -s 21 -d 28 -p ack -e 40 -c 0 -i 421 -a 1 -x {21.0 3.0 210 ------- null} + -t 22.0802 -s 28 -d 1 -p ack -e 40 -c 0 -i 421 -a 1 -x {21.0 3.0 210 ------- null} - -t 22.0802 -s 28 -d 1 -p ack -e 40 -c 0 -i 421 -a 1 -x {21.0 3.0 210 ------- null} h -t 22.0802 -s 28 -d 1 -p ack -e 40 -c 0 -i 421 -a 1 -x {21.0 3.0 -1 ------- null} r -t 22.3498 -s 28 -d 1 -p ack -e 40 -c 0 -i 402 -a 1 -x {21.0 3.0 191 ------- null} + -t 22.3498 -s 1 -d 3 -p ack -e 40 -c 0 -i 402 -a 1 -x {21.0 3.0 191 ------- null} - -t 22.3498 -s 1 -d 3 -p ack -e 40 -c 0 -i 402 -a 1 -x {21.0 3.0 191 ------- null} h -t 22.3498 -s 1 -d 3 -p ack -e 40 -c 0 -i 402 -a 1 -x {21.0 3.0 -1 ------- null} r -t 22.3514 -s 28 -d 1 -p ack -e 40 -c 0 -i 403 -a 1 -x {21.0 3.0 192 ------- null} + -t 22.3514 -s 1 -d 3 -p ack -e 40 -c 0 -i 403 -a 1 -x {21.0 3.0 192 ------- null} - -t 22.3514 -s 1 -d 3 -p ack -e 40 -c 0 -i 403 -a 1 -x {21.0 3.0 192 ------- null} h -t 22.3514 -s 1 -d 3 -p ack -e 40 -c 0 -i 403 -a 1 -x {21.0 3.0 -1 ------- null} r -t 22.353 -s 28 -d 1 -p ack -e 40 -c 0 -i 404 -a 1 -x {21.0 3.0 193 ------- null} + -t 22.353 -s 1 -d 3 -p ack -e 40 -c 0 -i 404 -a 1 -x {21.0 3.0 193 ------- null} - -t 22.353 -s 1 -d 3 -p ack -e 40 -c 0 -i 404 -a 1 -x {21.0 3.0 193 ------- null} h -t 22.353 -s 1 -d 3 -p ack -e 40 -c 0 -i 404 -a 1 -x {21.0 3.0 -1 ------- null} r -t 22.3546 -s 28 -d 1 -p ack -e 40 -c 0 -i 405 -a 1 -x {21.0 3.0 194 ------- null} + -t 22.3546 -s 1 -d 3 -p ack -e 40 -c 0 -i 405 -a 1 -x {21.0 3.0 194 ------- null} - -t 22.3546 -s 1 -d 3 -p ack -e 40 -c 0 -i 405 -a 1 -x {21.0 3.0 194 ------- null} h -t 22.3546 -s 1 -d 3 -p ack -e 40 -c 0 -i 405 -a 1 -x {21.0 3.0 -1 ------- null} r -t 22.3562 -s 28 -d 1 -p ack -e 40 -c 0 -i 406 -a 1 -x {21.0 3.0 195 ------- null} + -t 22.3562 -s 1 -d 3 -p ack -e 40 -c 0 -i 406 -a 1 -x {21.0 3.0 195 ------- null} - -t 22.3562 -s 1 -d 3 -p ack -e 40 -c 0 -i 406 -a 1 -x {21.0 3.0 195 ------- null} h -t 22.3562 -s 1 -d 3 -p ack -e 40 -c 0 -i 406 -a 1 -x {21.0 3.0 -1 ------- null} r -t 22.3578 -s 28 -d 1 -p ack -e 40 -c 0 -i 407 -a 1 -x {21.0 3.0 196 ------- null} + -t 22.3578 -s 1 -d 3 -p ack -e 40 -c 0 -i 407 -a 1 -x {21.0 3.0 196 ------- null} - -t 22.3578 -s 1 -d 3 -p ack -e 40 -c 0 -i 407 -a 1 -x {21.0 3.0 196 ------- null} h -t 22.3578 -s 1 -d 3 -p ack -e 40 -c 0 -i 407 -a 1 -x {21.0 3.0 -1 ------- null} r -t 22.3594 -s 28 -d 1 -p ack -e 40 -c 0 -i 408 -a 1 -x {21.0 3.0 197 ------- null} + -t 22.3594 -s 1 -d 3 -p ack -e 40 -c 0 -i 408 -a 1 -x {21.0 3.0 197 ------- null} - -t 22.3594 -s 1 -d 3 -p ack -e 40 -c 0 -i 408 -a 1 -x {21.0 3.0 197 ------- null} h -t 22.3594 -s 1 -d 3 -p ack -e 40 -c 0 -i 408 -a 1 -x {21.0 3.0 -1 ------- null} r -t 22.361 -s 28 -d 1 -p ack -e 40 -c 0 -i 409 -a 1 -x {21.0 3.0 198 ------- null} + -t 22.361 -s 1 -d 3 -p ack -e 40 -c 0 -i 409 -a 1 -x {21.0 3.0 198 ------- null} - -t 22.361 -s 1 -d 3 -p ack -e 40 -c 0 -i 409 -a 1 -x {21.0 3.0 198 ------- null} h -t 22.361 -s 1 -d 3 -p ack -e 40 -c 0 -i 409 -a 1 -x {21.0 3.0 -1 ------- null} r -t 22.3626 -s 28 -d 1 -p ack -e 40 -c 0 -i 410 -a 1 -x {21.0 3.0 199 ------- null} + -t 22.3626 -s 1 -d 3 -p ack -e 40 -c 0 -i 410 -a 1 -x {21.0 3.0 199 ------- null} - -t 22.3626 -s 1 -d 3 -p ack -e 40 -c 0 -i 410 -a 1 -x {21.0 3.0 199 ------- null} h -t 22.3626 -s 1 -d 3 -p ack -e 40 -c 0 -i 410 -a 1 -x {21.0 3.0 -1 ------- null} r -t 22.3642 -s 28 -d 1 -p ack -e 40 -c 0 -i 411 -a 1 -x {21.0 3.0 200 ------- null} + -t 22.3642 -s 1 -d 3 -p ack -e 40 -c 0 -i 411 -a 1 -x {21.0 3.0 200 ------- null} - -t 22.3642 -s 1 -d 3 -p ack -e 40 -c 0 -i 411 -a 1 -x {21.0 3.0 200 ------- null} h -t 22.3642 -s 1 -d 3 -p ack -e 40 -c 0 -i 411 -a 1 -x {21.0 3.0 -1 ------- null} r -t 22.3658 -s 28 -d 1 -p ack -e 40 -c 0 -i 412 -a 1 -x {21.0 3.0 201 ------- null} + -t 22.3658 -s 1 -d 3 -p ack -e 40 -c 0 -i 412 -a 1 -x {21.0 3.0 201 ------- null} - -t 22.3658 -s 1 -d 3 -p ack -e 40 -c 0 -i 412 -a 1 -x {21.0 3.0 201 ------- null} h -t 22.3658 -s 1 -d 3 -p ack -e 40 -c 0 -i 412 -a 1 -x {21.0 3.0 -1 ------- null} r -t 22.3674 -s 28 -d 1 -p ack -e 40 -c 0 -i 413 -a 1 -x {21.0 3.0 202 ------- null} + -t 22.3674 -s 1 -d 3 -p ack -e 40 -c 0 -i 413 -a 1 -x {21.0 3.0 202 ------- null} - -t 22.3674 -s 1 -d 3 -p ack -e 40 -c 0 -i 413 -a 1 -x {21.0 3.0 202 ------- null} h -t 22.3674 -s 1 -d 3 -p ack -e 40 -c 0 -i 413 -a 1 -x {21.0 3.0 -1 ------- null} r -t 22.369 -s 28 -d 1 -p ack -e 40 -c 0 -i 414 -a 1 -x {21.0 3.0 203 ------- null} + -t 22.369 -s 1 -d 3 -p ack -e 40 -c 0 -i 414 -a 1 -x {21.0 3.0 203 ------- null} - -t 22.369 -s 1 -d 3 -p ack -e 40 -c 0 -i 414 -a 1 -x {21.0 3.0 203 ------- null} h -t 22.369 -s 1 -d 3 -p ack -e 40 -c 0 -i 414 -a 1 -x {21.0 3.0 -1 ------- null} r -t 22.3706 -s 28 -d 1 -p ack -e 40 -c 0 -i 415 -a 1 -x {21.0 3.0 204 ------- null} + -t 22.3706 -s 1 -d 3 -p ack -e 40 -c 0 -i 415 -a 1 -x {21.0 3.0 204 ------- null} - -t 22.3706 -s 1 -d 3 -p ack -e 40 -c 0 -i 415 -a 1 -x {21.0 3.0 204 ------- null} h -t 22.3706 -s 1 -d 3 -p ack -e 40 -c 0 -i 415 -a 1 -x {21.0 3.0 -1 ------- null} r -t 22.3722 -s 28 -d 1 -p ack -e 40 -c 0 -i 416 -a 1 -x {21.0 3.0 205 ------- null} + -t 22.3722 -s 1 -d 3 -p ack -e 40 -c 0 -i 416 -a 1 -x {21.0 3.0 205 ------- null} - -t 22.3722 -s 1 -d 3 -p ack -e 40 -c 0 -i 416 -a 1 -x {21.0 3.0 205 ------- null} h -t 22.3722 -s 1 -d 3 -p ack -e 40 -c 0 -i 416 -a 1 -x {21.0 3.0 -1 ------- null} r -t 22.3738 -s 28 -d 1 -p ack -e 40 -c 0 -i 417 -a 1 -x {21.0 3.0 206 ------- null} + -t 22.3738 -s 1 -d 3 -p ack -e 40 -c 0 -i 417 -a 1 -x {21.0 3.0 206 ------- null} - -t 22.3738 -s 1 -d 3 -p ack -e 40 -c 0 -i 417 -a 1 -x {21.0 3.0 206 ------- null} h -t 22.3738 -s 1 -d 3 -p ack -e 40 -c 0 -i 417 -a 1 -x {21.0 3.0 -1 ------- null} r -t 22.3754 -s 28 -d 1 -p ack -e 40 -c 0 -i 418 -a 1 -x {21.0 3.0 207 ------- null} + -t 22.3754 -s 1 -d 3 -p ack -e 40 -c 0 -i 418 -a 1 -x {21.0 3.0 207 ------- null} - -t 22.3754 -s 1 -d 3 -p ack -e 40 -c 0 -i 418 -a 1 -x {21.0 3.0 207 ------- null} h -t 22.3754 -s 1 -d 3 -p ack -e 40 -c 0 -i 418 -a 1 -x {21.0 3.0 -1 ------- null} r -t 22.377 -s 28 -d 1 -p ack -e 40 -c 0 -i 419 -a 1 -x {21.0 3.0 208 ------- null} + -t 22.377 -s 1 -d 3 -p ack -e 40 -c 0 -i 419 -a 1 -x {21.0 3.0 208 ------- null} - -t 22.377 -s 1 -d 3 -p ack -e 40 -c 0 -i 419 -a 1 -x {21.0 3.0 208 ------- null} h -t 22.377 -s 1 -d 3 -p ack -e 40 -c 0 -i 419 -a 1 -x {21.0 3.0 -1 ------- null} r -t 22.3786 -s 28 -d 1 -p ack -e 40 -c 0 -i 420 -a 1 -x {21.0 3.0 209 ------- null} + -t 22.3786 -s 1 -d 3 -p ack -e 40 -c 0 -i 420 -a 1 -x {21.0 3.0 209 ------- null} - -t 22.3786 -s 1 -d 3 -p ack -e 40 -c 0 -i 420 -a 1 -x {21.0 3.0 209 ------- null} h -t 22.3786 -s 1 -d 3 -p ack -e 40 -c 0 -i 420 -a 1 -x {21.0 3.0 -1 ------- null} r -t 22.3802 -s 28 -d 1 -p ack -e 40 -c 0 -i 421 -a 1 -x {21.0 3.0 210 ------- null} + -t 22.3802 -s 1 -d 3 -p ack -e 40 -c 0 -i 421 -a 1 -x {21.0 3.0 210 ------- null} - -t 22.3802 -s 1 -d 3 -p ack -e 40 -c 0 -i 421 -a 1 -x {21.0 3.0 210 ------- null} h -t 22.3802 -s 1 -d 3 -p ack -e 40 -c 0 -i 421 -a 1 -x {21.0 3.0 -1 ------- null} r -t 22.4899 -s 1 -d 3 -p ack -e 40 -c 0 -i 402 -a 1 -x {21.0 3.0 191 ------- null} + -t 22.4899 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 422 -a 0 -x {3.0 21.0 211 ------- null} - -t 22.4899 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 422 -a 0 -x {3.0 21.0 211 ------- null} h -t 22.4899 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 422 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.4915 -s 1 -d 3 -p ack -e 40 -c 0 -i 403 -a 1 -x {21.0 3.0 192 ------- null} + -t 22.4915 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {3.0 21.0 212 ------- null} - -t 22.4915 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {3.0 21.0 212 ------- null} h -t 22.4915 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.4931 -s 1 -d 3 -p ack -e 40 -c 0 -i 404 -a 1 -x {21.0 3.0 193 ------- null} + -t 22.4931 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 424 -a 0 -x {3.0 21.0 213 ------- null} - -t 22.4931 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 424 -a 0 -x {3.0 21.0 213 ------- null} h -t 22.4931 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 424 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.4947 -s 1 -d 3 -p ack -e 40 -c 0 -i 405 -a 1 -x {21.0 3.0 194 ------- null} + -t 22.4947 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {3.0 21.0 214 ------- null} - -t 22.4947 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {3.0 21.0 214 ------- null} h -t 22.4947 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.4963 -s 1 -d 3 -p ack -e 40 -c 0 -i 406 -a 1 -x {21.0 3.0 195 ------- null} + -t 22.4963 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 426 -a 0 -x {3.0 21.0 215 ------- null} - -t 22.4963 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 426 -a 0 -x {3.0 21.0 215 ------- null} h -t 22.4963 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 426 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.4979 -s 1 -d 3 -p ack -e 40 -c 0 -i 407 -a 1 -x {21.0 3.0 196 ------- null} + -t 22.4979 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {3.0 21.0 216 ------- null} - -t 22.4979 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {3.0 21.0 216 ------- null} h -t 22.4979 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.4995 -s 1 -d 3 -p ack -e 40 -c 0 -i 408 -a 1 -x {21.0 3.0 197 ------- null} + -t 22.4995 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 428 -a 0 -x {3.0 21.0 217 ------- null} - -t 22.4995 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 428 -a 0 -x {3.0 21.0 217 ------- null} h -t 22.4995 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 428 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.5011 -s 1 -d 3 -p ack -e 40 -c 0 -i 409 -a 1 -x {21.0 3.0 198 ------- null} + -t 22.5011 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {3.0 21.0 218 ------- null} - -t 22.5011 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {3.0 21.0 218 ------- null} h -t 22.5011 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.5027 -s 1 -d 3 -p ack -e 40 -c 0 -i 410 -a 1 -x {21.0 3.0 199 ------- null} + -t 22.5027 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 430 -a 0 -x {3.0 21.0 219 ------- null} - -t 22.5027 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 430 -a 0 -x {3.0 21.0 219 ------- null} h -t 22.5027 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 430 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.5043 -s 1 -d 3 -p ack -e 40 -c 0 -i 411 -a 1 -x {21.0 3.0 200 ------- null} + -t 22.5043 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {3.0 21.0 220 ------- null} - -t 22.5043 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {3.0 21.0 220 ------- null} h -t 22.5043 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.5059 -s 1 -d 3 -p ack -e 40 -c 0 -i 412 -a 1 -x {21.0 3.0 201 ------- null} + -t 22.5059 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 432 -a 0 -x {3.0 21.0 221 ------- null} - -t 22.5059 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 432 -a 0 -x {3.0 21.0 221 ------- null} h -t 22.5059 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 432 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.5075 -s 1 -d 3 -p ack -e 40 -c 0 -i 413 -a 1 -x {21.0 3.0 202 ------- null} + -t 22.5075 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {3.0 21.0 222 ------- null} - -t 22.5075 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {3.0 21.0 222 ------- null} h -t 22.5075 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.5091 -s 1 -d 3 -p ack -e 40 -c 0 -i 414 -a 1 -x {21.0 3.0 203 ------- null} + -t 22.5091 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {3.0 21.0 223 ------- null} - -t 22.5091 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {3.0 21.0 223 ------- null} h -t 22.5091 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.5107 -s 1 -d 3 -p ack -e 40 -c 0 -i 415 -a 1 -x {21.0 3.0 204 ------- null} + -t 22.5107 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {3.0 21.0 224 ------- null} - -t 22.5107 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {3.0 21.0 224 ------- null} h -t 22.5107 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.5123 -s 1 -d 3 -p ack -e 40 -c 0 -i 416 -a 1 -x {21.0 3.0 205 ------- null} + -t 22.5123 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {3.0 21.0 225 ------- null} - -t 22.5123 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {3.0 21.0 225 ------- null} h -t 22.5123 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.5139 -s 1 -d 3 -p ack -e 40 -c 0 -i 417 -a 1 -x {21.0 3.0 206 ------- null} + -t 22.5139 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {3.0 21.0 226 ------- null} - -t 22.5139 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {3.0 21.0 226 ------- null} h -t 22.5139 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.5155 -s 1 -d 3 -p ack -e 40 -c 0 -i 418 -a 1 -x {21.0 3.0 207 ------- null} + -t 22.5155 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {3.0 21.0 227 ------- null} - -t 22.5155 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {3.0 21.0 227 ------- null} h -t 22.5155 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.5171 -s 1 -d 3 -p ack -e 40 -c 0 -i 419 -a 1 -x {21.0 3.0 208 ------- null} + -t 22.5171 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {3.0 21.0 228 ------- null} - -t 22.5171 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {3.0 21.0 228 ------- null} h -t 22.5171 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.5187 -s 1 -d 3 -p ack -e 40 -c 0 -i 420 -a 1 -x {21.0 3.0 209 ------- null} + -t 22.5187 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {3.0 21.0 229 ------- null} - -t 22.5187 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {3.0 21.0 229 ------- null} h -t 22.5187 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.5203 -s 1 -d 3 -p ack -e 40 -c 0 -i 421 -a 1 -x {21.0 3.0 210 ------- null} + -t 22.5203 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {3.0 21.0 230 ------- null} - -t 22.5203 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {3.0 21.0 230 ------- null} h -t 22.5203 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.6315 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 422 -a 0 -x {3.0 21.0 211 ------- null} + -t 22.6315 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 422 -a 0 -x {3.0 21.0 211 ------- null} - -t 22.6315 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 422 -a 0 -x {3.0 21.0 211 ------- null} h -t 22.6315 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 422 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.6331 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {3.0 21.0 212 ------- null} + -t 22.6331 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {3.0 21.0 212 ------- null} - -t 22.6331 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {3.0 21.0 212 ------- null} h -t 22.6331 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.6347 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 424 -a 0 -x {3.0 21.0 213 ------- null} + -t 22.6347 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 424 -a 0 -x {3.0 21.0 213 ------- null} - -t 22.6347 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 424 -a 0 -x {3.0 21.0 213 ------- null} h -t 22.6347 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 424 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.6363 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {3.0 21.0 214 ------- null} + -t 22.6363 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {3.0 21.0 214 ------- null} - -t 22.6363 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {3.0 21.0 214 ------- null} h -t 22.6363 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.6379 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 426 -a 0 -x {3.0 21.0 215 ------- null} + -t 22.6379 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 426 -a 0 -x {3.0 21.0 215 ------- null} - -t 22.6379 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 426 -a 0 -x {3.0 21.0 215 ------- null} h -t 22.6379 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 426 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.6395 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {3.0 21.0 216 ------- null} + -t 22.6395 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {3.0 21.0 216 ------- null} - -t 22.6395 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {3.0 21.0 216 ------- null} h -t 22.6395 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.6411 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 428 -a 0 -x {3.0 21.0 217 ------- null} + -t 22.6411 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 428 -a 0 -x {3.0 21.0 217 ------- null} - -t 22.6411 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 428 -a 0 -x {3.0 21.0 217 ------- null} h -t 22.6411 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 428 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.6427 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {3.0 21.0 218 ------- null} + -t 22.6427 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {3.0 21.0 218 ------- null} - -t 22.6427 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {3.0 21.0 218 ------- null} h -t 22.6427 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.6443 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 430 -a 0 -x {3.0 21.0 219 ------- null} + -t 22.6443 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 430 -a 0 -x {3.0 21.0 219 ------- null} - -t 22.6443 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 430 -a 0 -x {3.0 21.0 219 ------- null} h -t 22.6443 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 430 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.6459 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {3.0 21.0 220 ------- null} + -t 22.6459 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {3.0 21.0 220 ------- null} - -t 22.6459 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {3.0 21.0 220 ------- null} h -t 22.6459 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.6475 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 432 -a 0 -x {3.0 21.0 221 ------- null} + -t 22.6475 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 432 -a 0 -x {3.0 21.0 221 ------- null} - -t 22.6475 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 432 -a 0 -x {3.0 21.0 221 ------- null} h -t 22.6475 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 432 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.6491 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {3.0 21.0 222 ------- null} + -t 22.6491 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {3.0 21.0 222 ------- null} - -t 22.6491 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {3.0 21.0 222 ------- null} h -t 22.6491 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.6507 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {3.0 21.0 223 ------- null} + -t 22.6507 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {3.0 21.0 223 ------- null} - -t 22.6507 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {3.0 21.0 223 ------- null} h -t 22.6507 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.6523 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {3.0 21.0 224 ------- null} + -t 22.6523 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {3.0 21.0 224 ------- null} - -t 22.6523 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {3.0 21.0 224 ------- null} h -t 22.6523 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.6539 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {3.0 21.0 225 ------- null} + -t 22.6539 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {3.0 21.0 225 ------- null} - -t 22.6539 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {3.0 21.0 225 ------- null} h -t 22.6539 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.6555 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {3.0 21.0 226 ------- null} + -t 22.6555 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {3.0 21.0 226 ------- null} - -t 22.6555 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {3.0 21.0 226 ------- null} h -t 22.6555 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.6571 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {3.0 21.0 227 ------- null} + -t 22.6571 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {3.0 21.0 227 ------- null} - -t 22.6571 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {3.0 21.0 227 ------- null} h -t 22.6571 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.6587 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {3.0 21.0 228 ------- null} + -t 22.6587 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {3.0 21.0 228 ------- null} - -t 22.6587 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {3.0 21.0 228 ------- null} h -t 22.6587 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.6603 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {3.0 21.0 229 ------- null} + -t 22.6603 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {3.0 21.0 229 ------- null} - -t 22.6603 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {3.0 21.0 229 ------- null} h -t 22.6603 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.6619 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {3.0 21.0 230 ------- null} + -t 22.6619 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {3.0 21.0 230 ------- null} - -t 22.6619 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {3.0 21.0 230 ------- null} h -t 22.6619 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.9331 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 422 -a 0 -x {3.0 21.0 211 ------- null} + -t 22.9331 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 422 -a 0 -x {3.0 21.0 211 ------- null} - -t 22.9331 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 422 -a 0 -x {3.0 21.0 211 ------- null} h -t 22.9331 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 422 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.9347 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {3.0 21.0 212 ------- null} + -t 22.9347 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {3.0 21.0 212 ------- null} - -t 22.9347 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {3.0 21.0 212 ------- null} h -t 22.9347 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.9363 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 424 -a 0 -x {3.0 21.0 213 ------- null} + -t 22.9363 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 424 -a 0 -x {3.0 21.0 213 ------- null} - -t 22.9363 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 424 -a 0 -x {3.0 21.0 213 ------- null} h -t 22.9363 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 424 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.9379 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {3.0 21.0 214 ------- null} + -t 22.9379 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {3.0 21.0 214 ------- null} - -t 22.9379 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {3.0 21.0 214 ------- null} h -t 22.9379 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.9395 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 426 -a 0 -x {3.0 21.0 215 ------- null} + -t 22.9395 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 426 -a 0 -x {3.0 21.0 215 ------- null} - -t 22.9395 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 426 -a 0 -x {3.0 21.0 215 ------- null} h -t 22.9395 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 426 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.9411 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {3.0 21.0 216 ------- null} + -t 22.9411 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {3.0 21.0 216 ------- null} - -t 22.9411 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {3.0 21.0 216 ------- null} h -t 22.9411 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.9427 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 428 -a 0 -x {3.0 21.0 217 ------- null} + -t 22.9427 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 428 -a 0 -x {3.0 21.0 217 ------- null} - -t 22.9427 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 428 -a 0 -x {3.0 21.0 217 ------- null} h -t 22.9427 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 428 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.9443 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {3.0 21.0 218 ------- null} + -t 22.9443 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {3.0 21.0 218 ------- null} - -t 22.9443 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {3.0 21.0 218 ------- null} h -t 22.9443 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.9459 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 430 -a 0 -x {3.0 21.0 219 ------- null} + -t 22.9459 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 430 -a 0 -x {3.0 21.0 219 ------- null} - -t 22.9459 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 430 -a 0 -x {3.0 21.0 219 ------- null} h -t 22.9459 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 430 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.9475 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {3.0 21.0 220 ------- null} + -t 22.9475 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {3.0 21.0 220 ------- null} - -t 22.9475 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {3.0 21.0 220 ------- null} h -t 22.9475 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.9491 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 432 -a 0 -x {3.0 21.0 221 ------- null} + -t 22.9491 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 432 -a 0 -x {3.0 21.0 221 ------- null} - -t 22.9491 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 432 -a 0 -x {3.0 21.0 221 ------- null} h -t 22.9491 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 432 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.9507 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {3.0 21.0 222 ------- null} + -t 22.9507 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {3.0 21.0 222 ------- null} - -t 22.9507 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {3.0 21.0 222 ------- null} h -t 22.9507 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.9523 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {3.0 21.0 223 ------- null} + -t 22.9523 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {3.0 21.0 223 ------- null} - -t 22.9523 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {3.0 21.0 223 ------- null} h -t 22.9523 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.9539 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {3.0 21.0 224 ------- null} + -t 22.9539 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {3.0 21.0 224 ------- null} - -t 22.9539 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {3.0 21.0 224 ------- null} h -t 22.9539 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.9555 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {3.0 21.0 225 ------- null} + -t 22.9555 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {3.0 21.0 225 ------- null} - -t 22.9555 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {3.0 21.0 225 ------- null} h -t 22.9555 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.9571 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {3.0 21.0 226 ------- null} + -t 22.9571 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {3.0 21.0 226 ------- null} - -t 22.9571 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {3.0 21.0 226 ------- null} h -t 22.9571 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.9587 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {3.0 21.0 227 ------- null} + -t 22.9587 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {3.0 21.0 227 ------- null} - -t 22.9587 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {3.0 21.0 227 ------- null} h -t 22.9587 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.9603 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {3.0 21.0 228 ------- null} + -t 22.9603 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {3.0 21.0 228 ------- null} - -t 22.9603 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {3.0 21.0 228 ------- null} h -t 22.9603 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.9619 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {3.0 21.0 229 ------- null} + -t 22.9619 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {3.0 21.0 229 ------- null} - -t 22.9619 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {3.0 21.0 229 ------- null} h -t 22.9619 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {3.0 21.0 -1 ------- null} r -t 22.9635 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {3.0 21.0 230 ------- null} + -t 22.9635 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {3.0 21.0 230 ------- null} - -t 22.9635 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {3.0 21.0 230 ------- null} h -t 22.9635 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {3.0 21.0 -1 ------- null} r -t 23.2847 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 422 -a 0 -x {3.0 21.0 211 ------- null} + -t 23.2847 -s 21 -d 28 -p ack -e 40 -c 0 -i 442 -a 1 -x {21.0 3.0 211 ------- null} - -t 23.2847 -s 21 -d 28 -p ack -e 40 -c 0 -i 442 -a 1 -x {21.0 3.0 211 ------- null} h -t 23.2847 -s 21 -d 28 -p ack -e 40 -c 0 -i 442 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.2863 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {3.0 21.0 212 ------- null} + -t 23.2863 -s 21 -d 28 -p ack -e 40 -c 0 -i 443 -a 1 -x {21.0 3.0 212 ------- null} - -t 23.2863 -s 21 -d 28 -p ack -e 40 -c 0 -i 443 -a 1 -x {21.0 3.0 212 ------- null} h -t 23.2863 -s 21 -d 28 -p ack -e 40 -c 0 -i 443 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.2879 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 424 -a 0 -x {3.0 21.0 213 ------- null} + -t 23.2879 -s 21 -d 28 -p ack -e 40 -c 0 -i 444 -a 1 -x {21.0 3.0 213 ------- null} - -t 23.2879 -s 21 -d 28 -p ack -e 40 -c 0 -i 444 -a 1 -x {21.0 3.0 213 ------- null} h -t 23.2879 -s 21 -d 28 -p ack -e 40 -c 0 -i 444 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.2895 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {3.0 21.0 214 ------- null} + -t 23.2895 -s 21 -d 28 -p ack -e 40 -c 0 -i 445 -a 1 -x {21.0 3.0 214 ------- null} - -t 23.2895 -s 21 -d 28 -p ack -e 40 -c 0 -i 445 -a 1 -x {21.0 3.0 214 ------- null} h -t 23.2895 -s 21 -d 28 -p ack -e 40 -c 0 -i 445 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.2911 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 426 -a 0 -x {3.0 21.0 215 ------- null} + -t 23.2911 -s 21 -d 28 -p ack -e 40 -c 0 -i 446 -a 1 -x {21.0 3.0 215 ------- null} - -t 23.2911 -s 21 -d 28 -p ack -e 40 -c 0 -i 446 -a 1 -x {21.0 3.0 215 ------- null} h -t 23.2911 -s 21 -d 28 -p ack -e 40 -c 0 -i 446 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.2927 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {3.0 21.0 216 ------- null} + -t 23.2927 -s 21 -d 28 -p ack -e 40 -c 0 -i 447 -a 1 -x {21.0 3.0 216 ------- null} - -t 23.2927 -s 21 -d 28 -p ack -e 40 -c 0 -i 447 -a 1 -x {21.0 3.0 216 ------- null} h -t 23.2927 -s 21 -d 28 -p ack -e 40 -c 0 -i 447 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.2943 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 428 -a 0 -x {3.0 21.0 217 ------- null} + -t 23.2943 -s 21 -d 28 -p ack -e 40 -c 0 -i 448 -a 1 -x {21.0 3.0 217 ------- null} - -t 23.2943 -s 21 -d 28 -p ack -e 40 -c 0 -i 448 -a 1 -x {21.0 3.0 217 ------- null} h -t 23.2943 -s 21 -d 28 -p ack -e 40 -c 0 -i 448 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.2959 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {3.0 21.0 218 ------- null} + -t 23.2959 -s 21 -d 28 -p ack -e 40 -c 0 -i 449 -a 1 -x {21.0 3.0 218 ------- null} - -t 23.2959 -s 21 -d 28 -p ack -e 40 -c 0 -i 449 -a 1 -x {21.0 3.0 218 ------- null} h -t 23.2959 -s 21 -d 28 -p ack -e 40 -c 0 -i 449 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.2975 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 430 -a 0 -x {3.0 21.0 219 ------- null} + -t 23.2975 -s 21 -d 28 -p ack -e 40 -c 0 -i 450 -a 1 -x {21.0 3.0 219 ------- null} - -t 23.2975 -s 21 -d 28 -p ack -e 40 -c 0 -i 450 -a 1 -x {21.0 3.0 219 ------- null} h -t 23.2975 -s 21 -d 28 -p ack -e 40 -c 0 -i 450 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.2991 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {3.0 21.0 220 ------- null} + -t 23.2991 -s 21 -d 28 -p ack -e 40 -c 0 -i 451 -a 1 -x {21.0 3.0 220 ------- null} - -t 23.2991 -s 21 -d 28 -p ack -e 40 -c 0 -i 451 -a 1 -x {21.0 3.0 220 ------- null} h -t 23.2991 -s 21 -d 28 -p ack -e 40 -c 0 -i 451 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.3007 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 432 -a 0 -x {3.0 21.0 221 ------- null} + -t 23.3007 -s 21 -d 28 -p ack -e 40 -c 0 -i 452 -a 1 -x {21.0 3.0 221 ------- null} - -t 23.3007 -s 21 -d 28 -p ack -e 40 -c 0 -i 452 -a 1 -x {21.0 3.0 221 ------- null} h -t 23.3007 -s 21 -d 28 -p ack -e 40 -c 0 -i 452 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.3023 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {3.0 21.0 222 ------- null} + -t 23.3023 -s 21 -d 28 -p ack -e 40 -c 0 -i 453 -a 1 -x {21.0 3.0 222 ------- null} - -t 23.3023 -s 21 -d 28 -p ack -e 40 -c 0 -i 453 -a 1 -x {21.0 3.0 222 ------- null} h -t 23.3023 -s 21 -d 28 -p ack -e 40 -c 0 -i 453 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.3039 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {3.0 21.0 223 ------- null} + -t 23.3039 -s 21 -d 28 -p ack -e 40 -c 0 -i 454 -a 1 -x {21.0 3.0 223 ------- null} - -t 23.3039 -s 21 -d 28 -p ack -e 40 -c 0 -i 454 -a 1 -x {21.0 3.0 223 ------- null} h -t 23.3039 -s 21 -d 28 -p ack -e 40 -c 0 -i 454 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.3055 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {3.0 21.0 224 ------- null} + -t 23.3055 -s 21 -d 28 -p ack -e 40 -c 0 -i 455 -a 1 -x {21.0 3.0 224 ------- null} - -t 23.3055 -s 21 -d 28 -p ack -e 40 -c 0 -i 455 -a 1 -x {21.0 3.0 224 ------- null} h -t 23.3055 -s 21 -d 28 -p ack -e 40 -c 0 -i 455 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.3071 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {3.0 21.0 225 ------- null} + -t 23.3071 -s 21 -d 28 -p ack -e 40 -c 0 -i 456 -a 1 -x {21.0 3.0 225 ------- null} - -t 23.3071 -s 21 -d 28 -p ack -e 40 -c 0 -i 456 -a 1 -x {21.0 3.0 225 ------- null} h -t 23.3071 -s 21 -d 28 -p ack -e 40 -c 0 -i 456 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.3087 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {3.0 21.0 226 ------- null} + -t 23.3087 -s 21 -d 28 -p ack -e 40 -c 0 -i 457 -a 1 -x {21.0 3.0 226 ------- null} - -t 23.3087 -s 21 -d 28 -p ack -e 40 -c 0 -i 457 -a 1 -x {21.0 3.0 226 ------- null} h -t 23.3087 -s 21 -d 28 -p ack -e 40 -c 0 -i 457 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.3103 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {3.0 21.0 227 ------- null} + -t 23.3103 -s 21 -d 28 -p ack -e 40 -c 0 -i 458 -a 1 -x {21.0 3.0 227 ------- null} - -t 23.3103 -s 21 -d 28 -p ack -e 40 -c 0 -i 458 -a 1 -x {21.0 3.0 227 ------- null} h -t 23.3103 -s 21 -d 28 -p ack -e 40 -c 0 -i 458 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.3119 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {3.0 21.0 228 ------- null} + -t 23.3119 -s 21 -d 28 -p ack -e 40 -c 0 -i 459 -a 1 -x {21.0 3.0 228 ------- null} - -t 23.3119 -s 21 -d 28 -p ack -e 40 -c 0 -i 459 -a 1 -x {21.0 3.0 228 ------- null} h -t 23.3119 -s 21 -d 28 -p ack -e 40 -c 0 -i 459 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.3135 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {3.0 21.0 229 ------- null} + -t 23.3135 -s 21 -d 28 -p ack -e 40 -c 0 -i 460 -a 1 -x {21.0 3.0 229 ------- null} - -t 23.3135 -s 21 -d 28 -p ack -e 40 -c 0 -i 460 -a 1 -x {21.0 3.0 229 ------- null} h -t 23.3135 -s 21 -d 28 -p ack -e 40 -c 0 -i 460 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.3151 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {3.0 21.0 230 ------- null} + -t 23.3151 -s 21 -d 28 -p ack -e 40 -c 0 -i 461 -a 1 -x {21.0 3.0 230 ------- null} - -t 23.3151 -s 21 -d 28 -p ack -e 40 -c 0 -i 461 -a 1 -x {21.0 3.0 230 ------- null} h -t 23.3151 -s 21 -d 28 -p ack -e 40 -c 0 -i 461 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.6348 -s 21 -d 28 -p ack -e 40 -c 0 -i 442 -a 1 -x {21.0 3.0 211 ------- null} + -t 23.6348 -s 28 -d 1 -p ack -e 40 -c 0 -i 442 -a 1 -x {21.0 3.0 211 ------- null} - -t 23.6348 -s 28 -d 1 -p ack -e 40 -c 0 -i 442 -a 1 -x {21.0 3.0 211 ------- null} h -t 23.6348 -s 28 -d 1 -p ack -e 40 -c 0 -i 442 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.6364 -s 21 -d 28 -p ack -e 40 -c 0 -i 443 -a 1 -x {21.0 3.0 212 ------- null} + -t 23.6364 -s 28 -d 1 -p ack -e 40 -c 0 -i 443 -a 1 -x {21.0 3.0 212 ------- null} - -t 23.6364 -s 28 -d 1 -p ack -e 40 -c 0 -i 443 -a 1 -x {21.0 3.0 212 ------- null} h -t 23.6364 -s 28 -d 1 -p ack -e 40 -c 0 -i 443 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.638 -s 21 -d 28 -p ack -e 40 -c 0 -i 444 -a 1 -x {21.0 3.0 213 ------- null} + -t 23.638 -s 28 -d 1 -p ack -e 40 -c 0 -i 444 -a 1 -x {21.0 3.0 213 ------- null} - -t 23.638 -s 28 -d 1 -p ack -e 40 -c 0 -i 444 -a 1 -x {21.0 3.0 213 ------- null} h -t 23.638 -s 28 -d 1 -p ack -e 40 -c 0 -i 444 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.6396 -s 21 -d 28 -p ack -e 40 -c 0 -i 445 -a 1 -x {21.0 3.0 214 ------- null} + -t 23.6396 -s 28 -d 1 -p ack -e 40 -c 0 -i 445 -a 1 -x {21.0 3.0 214 ------- null} - -t 23.6396 -s 28 -d 1 -p ack -e 40 -c 0 -i 445 -a 1 -x {21.0 3.0 214 ------- null} h -t 23.6396 -s 28 -d 1 -p ack -e 40 -c 0 -i 445 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.6412 -s 21 -d 28 -p ack -e 40 -c 0 -i 446 -a 1 -x {21.0 3.0 215 ------- null} + -t 23.6412 -s 28 -d 1 -p ack -e 40 -c 0 -i 446 -a 1 -x {21.0 3.0 215 ------- null} - -t 23.6412 -s 28 -d 1 -p ack -e 40 -c 0 -i 446 -a 1 -x {21.0 3.0 215 ------- null} h -t 23.6412 -s 28 -d 1 -p ack -e 40 -c 0 -i 446 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.6428 -s 21 -d 28 -p ack -e 40 -c 0 -i 447 -a 1 -x {21.0 3.0 216 ------- null} + -t 23.6428 -s 28 -d 1 -p ack -e 40 -c 0 -i 447 -a 1 -x {21.0 3.0 216 ------- null} - -t 23.6428 -s 28 -d 1 -p ack -e 40 -c 0 -i 447 -a 1 -x {21.0 3.0 216 ------- null} h -t 23.6428 -s 28 -d 1 -p ack -e 40 -c 0 -i 447 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.6444 -s 21 -d 28 -p ack -e 40 -c 0 -i 448 -a 1 -x {21.0 3.0 217 ------- null} + -t 23.6444 -s 28 -d 1 -p ack -e 40 -c 0 -i 448 -a 1 -x {21.0 3.0 217 ------- null} - -t 23.6444 -s 28 -d 1 -p ack -e 40 -c 0 -i 448 -a 1 -x {21.0 3.0 217 ------- null} h -t 23.6444 -s 28 -d 1 -p ack -e 40 -c 0 -i 448 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.646 -s 21 -d 28 -p ack -e 40 -c 0 -i 449 -a 1 -x {21.0 3.0 218 ------- null} + -t 23.646 -s 28 -d 1 -p ack -e 40 -c 0 -i 449 -a 1 -x {21.0 3.0 218 ------- null} - -t 23.646 -s 28 -d 1 -p ack -e 40 -c 0 -i 449 -a 1 -x {21.0 3.0 218 ------- null} h -t 23.646 -s 28 -d 1 -p ack -e 40 -c 0 -i 449 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.6476 -s 21 -d 28 -p ack -e 40 -c 0 -i 450 -a 1 -x {21.0 3.0 219 ------- null} + -t 23.6476 -s 28 -d 1 -p ack -e 40 -c 0 -i 450 -a 1 -x {21.0 3.0 219 ------- null} - -t 23.6476 -s 28 -d 1 -p ack -e 40 -c 0 -i 450 -a 1 -x {21.0 3.0 219 ------- null} h -t 23.6476 -s 28 -d 1 -p ack -e 40 -c 0 -i 450 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.6492 -s 21 -d 28 -p ack -e 40 -c 0 -i 451 -a 1 -x {21.0 3.0 220 ------- null} + -t 23.6492 -s 28 -d 1 -p ack -e 40 -c 0 -i 451 -a 1 -x {21.0 3.0 220 ------- null} - -t 23.6492 -s 28 -d 1 -p ack -e 40 -c 0 -i 451 -a 1 -x {21.0 3.0 220 ------- null} h -t 23.6492 -s 28 -d 1 -p ack -e 40 -c 0 -i 451 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.6508 -s 21 -d 28 -p ack -e 40 -c 0 -i 452 -a 1 -x {21.0 3.0 221 ------- null} + -t 23.6508 -s 28 -d 1 -p ack -e 40 -c 0 -i 452 -a 1 -x {21.0 3.0 221 ------- null} - -t 23.6508 -s 28 -d 1 -p ack -e 40 -c 0 -i 452 -a 1 -x {21.0 3.0 221 ------- null} h -t 23.6508 -s 28 -d 1 -p ack -e 40 -c 0 -i 452 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.6524 -s 21 -d 28 -p ack -e 40 -c 0 -i 453 -a 1 -x {21.0 3.0 222 ------- null} + -t 23.6524 -s 28 -d 1 -p ack -e 40 -c 0 -i 453 -a 1 -x {21.0 3.0 222 ------- null} - -t 23.6524 -s 28 -d 1 -p ack -e 40 -c 0 -i 453 -a 1 -x {21.0 3.0 222 ------- null} h -t 23.6524 -s 28 -d 1 -p ack -e 40 -c 0 -i 453 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.654 -s 21 -d 28 -p ack -e 40 -c 0 -i 454 -a 1 -x {21.0 3.0 223 ------- null} + -t 23.654 -s 28 -d 1 -p ack -e 40 -c 0 -i 454 -a 1 -x {21.0 3.0 223 ------- null} - -t 23.654 -s 28 -d 1 -p ack -e 40 -c 0 -i 454 -a 1 -x {21.0 3.0 223 ------- null} h -t 23.654 -s 28 -d 1 -p ack -e 40 -c 0 -i 454 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.6556 -s 21 -d 28 -p ack -e 40 -c 0 -i 455 -a 1 -x {21.0 3.0 224 ------- null} + -t 23.6556 -s 28 -d 1 -p ack -e 40 -c 0 -i 455 -a 1 -x {21.0 3.0 224 ------- null} - -t 23.6556 -s 28 -d 1 -p ack -e 40 -c 0 -i 455 -a 1 -x {21.0 3.0 224 ------- null} h -t 23.6556 -s 28 -d 1 -p ack -e 40 -c 0 -i 455 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.6572 -s 21 -d 28 -p ack -e 40 -c 0 -i 456 -a 1 -x {21.0 3.0 225 ------- null} + -t 23.6572 -s 28 -d 1 -p ack -e 40 -c 0 -i 456 -a 1 -x {21.0 3.0 225 ------- null} - -t 23.6572 -s 28 -d 1 -p ack -e 40 -c 0 -i 456 -a 1 -x {21.0 3.0 225 ------- null} h -t 23.6572 -s 28 -d 1 -p ack -e 40 -c 0 -i 456 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.6588 -s 21 -d 28 -p ack -e 40 -c 0 -i 457 -a 1 -x {21.0 3.0 226 ------- null} + -t 23.6588 -s 28 -d 1 -p ack -e 40 -c 0 -i 457 -a 1 -x {21.0 3.0 226 ------- null} - -t 23.6588 -s 28 -d 1 -p ack -e 40 -c 0 -i 457 -a 1 -x {21.0 3.0 226 ------- null} h -t 23.6588 -s 28 -d 1 -p ack -e 40 -c 0 -i 457 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.6604 -s 21 -d 28 -p ack -e 40 -c 0 -i 458 -a 1 -x {21.0 3.0 227 ------- null} + -t 23.6604 -s 28 -d 1 -p ack -e 40 -c 0 -i 458 -a 1 -x {21.0 3.0 227 ------- null} - -t 23.6604 -s 28 -d 1 -p ack -e 40 -c 0 -i 458 -a 1 -x {21.0 3.0 227 ------- null} h -t 23.6604 -s 28 -d 1 -p ack -e 40 -c 0 -i 458 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.662 -s 21 -d 28 -p ack -e 40 -c 0 -i 459 -a 1 -x {21.0 3.0 228 ------- null} + -t 23.662 -s 28 -d 1 -p ack -e 40 -c 0 -i 459 -a 1 -x {21.0 3.0 228 ------- null} - -t 23.662 -s 28 -d 1 -p ack -e 40 -c 0 -i 459 -a 1 -x {21.0 3.0 228 ------- null} h -t 23.662 -s 28 -d 1 -p ack -e 40 -c 0 -i 459 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.6636 -s 21 -d 28 -p ack -e 40 -c 0 -i 460 -a 1 -x {21.0 3.0 229 ------- null} + -t 23.6636 -s 28 -d 1 -p ack -e 40 -c 0 -i 460 -a 1 -x {21.0 3.0 229 ------- null} - -t 23.6636 -s 28 -d 1 -p ack -e 40 -c 0 -i 460 -a 1 -x {21.0 3.0 229 ------- null} h -t 23.6636 -s 28 -d 1 -p ack -e 40 -c 0 -i 460 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.6652 -s 21 -d 28 -p ack -e 40 -c 0 -i 461 -a 1 -x {21.0 3.0 230 ------- null} + -t 23.6652 -s 28 -d 1 -p ack -e 40 -c 0 -i 461 -a 1 -x {21.0 3.0 230 ------- null} - -t 23.6652 -s 28 -d 1 -p ack -e 40 -c 0 -i 461 -a 1 -x {21.0 3.0 230 ------- null} h -t 23.6652 -s 28 -d 1 -p ack -e 40 -c 0 -i 461 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.9348 -s 28 -d 1 -p ack -e 40 -c 0 -i 442 -a 1 -x {21.0 3.0 211 ------- null} + -t 23.9348 -s 1 -d 3 -p ack -e 40 -c 0 -i 442 -a 1 -x {21.0 3.0 211 ------- null} - -t 23.9348 -s 1 -d 3 -p ack -e 40 -c 0 -i 442 -a 1 -x {21.0 3.0 211 ------- null} h -t 23.9348 -s 1 -d 3 -p ack -e 40 -c 0 -i 442 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.9364 -s 28 -d 1 -p ack -e 40 -c 0 -i 443 -a 1 -x {21.0 3.0 212 ------- null} + -t 23.9364 -s 1 -d 3 -p ack -e 40 -c 0 -i 443 -a 1 -x {21.0 3.0 212 ------- null} - -t 23.9364 -s 1 -d 3 -p ack -e 40 -c 0 -i 443 -a 1 -x {21.0 3.0 212 ------- null} h -t 23.9364 -s 1 -d 3 -p ack -e 40 -c 0 -i 443 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.938 -s 28 -d 1 -p ack -e 40 -c 0 -i 444 -a 1 -x {21.0 3.0 213 ------- null} + -t 23.938 -s 1 -d 3 -p ack -e 40 -c 0 -i 444 -a 1 -x {21.0 3.0 213 ------- null} - -t 23.938 -s 1 -d 3 -p ack -e 40 -c 0 -i 444 -a 1 -x {21.0 3.0 213 ------- null} h -t 23.938 -s 1 -d 3 -p ack -e 40 -c 0 -i 444 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.9396 -s 28 -d 1 -p ack -e 40 -c 0 -i 445 -a 1 -x {21.0 3.0 214 ------- null} + -t 23.9396 -s 1 -d 3 -p ack -e 40 -c 0 -i 445 -a 1 -x {21.0 3.0 214 ------- null} - -t 23.9396 -s 1 -d 3 -p ack -e 40 -c 0 -i 445 -a 1 -x {21.0 3.0 214 ------- null} h -t 23.9396 -s 1 -d 3 -p ack -e 40 -c 0 -i 445 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.9412 -s 28 -d 1 -p ack -e 40 -c 0 -i 446 -a 1 -x {21.0 3.0 215 ------- null} + -t 23.9412 -s 1 -d 3 -p ack -e 40 -c 0 -i 446 -a 1 -x {21.0 3.0 215 ------- null} - -t 23.9412 -s 1 -d 3 -p ack -e 40 -c 0 -i 446 -a 1 -x {21.0 3.0 215 ------- null} h -t 23.9412 -s 1 -d 3 -p ack -e 40 -c 0 -i 446 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.9428 -s 28 -d 1 -p ack -e 40 -c 0 -i 447 -a 1 -x {21.0 3.0 216 ------- null} + -t 23.9428 -s 1 -d 3 -p ack -e 40 -c 0 -i 447 -a 1 -x {21.0 3.0 216 ------- null} - -t 23.9428 -s 1 -d 3 -p ack -e 40 -c 0 -i 447 -a 1 -x {21.0 3.0 216 ------- null} h -t 23.9428 -s 1 -d 3 -p ack -e 40 -c 0 -i 447 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.9444 -s 28 -d 1 -p ack -e 40 -c 0 -i 448 -a 1 -x {21.0 3.0 217 ------- null} + -t 23.9444 -s 1 -d 3 -p ack -e 40 -c 0 -i 448 -a 1 -x {21.0 3.0 217 ------- null} - -t 23.9444 -s 1 -d 3 -p ack -e 40 -c 0 -i 448 -a 1 -x {21.0 3.0 217 ------- null} h -t 23.9444 -s 1 -d 3 -p ack -e 40 -c 0 -i 448 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.946 -s 28 -d 1 -p ack -e 40 -c 0 -i 449 -a 1 -x {21.0 3.0 218 ------- null} + -t 23.946 -s 1 -d 3 -p ack -e 40 -c 0 -i 449 -a 1 -x {21.0 3.0 218 ------- null} - -t 23.946 -s 1 -d 3 -p ack -e 40 -c 0 -i 449 -a 1 -x {21.0 3.0 218 ------- null} h -t 23.946 -s 1 -d 3 -p ack -e 40 -c 0 -i 449 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.9476 -s 28 -d 1 -p ack -e 40 -c 0 -i 450 -a 1 -x {21.0 3.0 219 ------- null} + -t 23.9476 -s 1 -d 3 -p ack -e 40 -c 0 -i 450 -a 1 -x {21.0 3.0 219 ------- null} - -t 23.9476 -s 1 -d 3 -p ack -e 40 -c 0 -i 450 -a 1 -x {21.0 3.0 219 ------- null} h -t 23.9476 -s 1 -d 3 -p ack -e 40 -c 0 -i 450 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.9492 -s 28 -d 1 -p ack -e 40 -c 0 -i 451 -a 1 -x {21.0 3.0 220 ------- null} + -t 23.9492 -s 1 -d 3 -p ack -e 40 -c 0 -i 451 -a 1 -x {21.0 3.0 220 ------- null} - -t 23.9492 -s 1 -d 3 -p ack -e 40 -c 0 -i 451 -a 1 -x {21.0 3.0 220 ------- null} h -t 23.9492 -s 1 -d 3 -p ack -e 40 -c 0 -i 451 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.9508 -s 28 -d 1 -p ack -e 40 -c 0 -i 452 -a 1 -x {21.0 3.0 221 ------- null} + -t 23.9508 -s 1 -d 3 -p ack -e 40 -c 0 -i 452 -a 1 -x {21.0 3.0 221 ------- null} - -t 23.9508 -s 1 -d 3 -p ack -e 40 -c 0 -i 452 -a 1 -x {21.0 3.0 221 ------- null} h -t 23.9508 -s 1 -d 3 -p ack -e 40 -c 0 -i 452 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.9524 -s 28 -d 1 -p ack -e 40 -c 0 -i 453 -a 1 -x {21.0 3.0 222 ------- null} + -t 23.9524 -s 1 -d 3 -p ack -e 40 -c 0 -i 453 -a 1 -x {21.0 3.0 222 ------- null} - -t 23.9524 -s 1 -d 3 -p ack -e 40 -c 0 -i 453 -a 1 -x {21.0 3.0 222 ------- null} h -t 23.9524 -s 1 -d 3 -p ack -e 40 -c 0 -i 453 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.954 -s 28 -d 1 -p ack -e 40 -c 0 -i 454 -a 1 -x {21.0 3.0 223 ------- null} + -t 23.954 -s 1 -d 3 -p ack -e 40 -c 0 -i 454 -a 1 -x {21.0 3.0 223 ------- null} - -t 23.954 -s 1 -d 3 -p ack -e 40 -c 0 -i 454 -a 1 -x {21.0 3.0 223 ------- null} h -t 23.954 -s 1 -d 3 -p ack -e 40 -c 0 -i 454 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.9556 -s 28 -d 1 -p ack -e 40 -c 0 -i 455 -a 1 -x {21.0 3.0 224 ------- null} + -t 23.9556 -s 1 -d 3 -p ack -e 40 -c 0 -i 455 -a 1 -x {21.0 3.0 224 ------- null} - -t 23.9556 -s 1 -d 3 -p ack -e 40 -c 0 -i 455 -a 1 -x {21.0 3.0 224 ------- null} h -t 23.9556 -s 1 -d 3 -p ack -e 40 -c 0 -i 455 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.9572 -s 28 -d 1 -p ack -e 40 -c 0 -i 456 -a 1 -x {21.0 3.0 225 ------- null} + -t 23.9572 -s 1 -d 3 -p ack -e 40 -c 0 -i 456 -a 1 -x {21.0 3.0 225 ------- null} - -t 23.9572 -s 1 -d 3 -p ack -e 40 -c 0 -i 456 -a 1 -x {21.0 3.0 225 ------- null} h -t 23.9572 -s 1 -d 3 -p ack -e 40 -c 0 -i 456 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.9588 -s 28 -d 1 -p ack -e 40 -c 0 -i 457 -a 1 -x {21.0 3.0 226 ------- null} + -t 23.9588 -s 1 -d 3 -p ack -e 40 -c 0 -i 457 -a 1 -x {21.0 3.0 226 ------- null} - -t 23.9588 -s 1 -d 3 -p ack -e 40 -c 0 -i 457 -a 1 -x {21.0 3.0 226 ------- null} h -t 23.9588 -s 1 -d 3 -p ack -e 40 -c 0 -i 457 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.9604 -s 28 -d 1 -p ack -e 40 -c 0 -i 458 -a 1 -x {21.0 3.0 227 ------- null} + -t 23.9604 -s 1 -d 3 -p ack -e 40 -c 0 -i 458 -a 1 -x {21.0 3.0 227 ------- null} - -t 23.9604 -s 1 -d 3 -p ack -e 40 -c 0 -i 458 -a 1 -x {21.0 3.0 227 ------- null} h -t 23.9604 -s 1 -d 3 -p ack -e 40 -c 0 -i 458 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.962 -s 28 -d 1 -p ack -e 40 -c 0 -i 459 -a 1 -x {21.0 3.0 228 ------- null} + -t 23.962 -s 1 -d 3 -p ack -e 40 -c 0 -i 459 -a 1 -x {21.0 3.0 228 ------- null} - -t 23.962 -s 1 -d 3 -p ack -e 40 -c 0 -i 459 -a 1 -x {21.0 3.0 228 ------- null} h -t 23.962 -s 1 -d 3 -p ack -e 40 -c 0 -i 459 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.9636 -s 28 -d 1 -p ack -e 40 -c 0 -i 460 -a 1 -x {21.0 3.0 229 ------- null} + -t 23.9636 -s 1 -d 3 -p ack -e 40 -c 0 -i 460 -a 1 -x {21.0 3.0 229 ------- null} - -t 23.9636 -s 1 -d 3 -p ack -e 40 -c 0 -i 460 -a 1 -x {21.0 3.0 229 ------- null} h -t 23.9636 -s 1 -d 3 -p ack -e 40 -c 0 -i 460 -a 1 -x {21.0 3.0 -1 ------- null} r -t 23.9652 -s 28 -d 1 -p ack -e 40 -c 0 -i 461 -a 1 -x {21.0 3.0 230 ------- null} + -t 23.9652 -s 1 -d 3 -p ack -e 40 -c 0 -i 461 -a 1 -x {21.0 3.0 230 ------- null} - -t 23.9652 -s 1 -d 3 -p ack -e 40 -c 0 -i 461 -a 1 -x {21.0 3.0 230 ------- null} h -t 23.9652 -s 1 -d 3 -p ack -e 40 -c 0 -i 461 -a 1 -x {21.0 3.0 -1 ------- null} r -t 24.0749 -s 1 -d 3 -p ack -e 40 -c 0 -i 442 -a 1 -x {21.0 3.0 211 ------- null} + -t 24.0749 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 462 -a 0 -x {3.0 21.0 231 ------- null} - -t 24.0749 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 462 -a 0 -x {3.0 21.0 231 ------- null} h -t 24.0749 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 462 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.0765 -s 1 -d 3 -p ack -e 40 -c 0 -i 443 -a 1 -x {21.0 3.0 212 ------- null} + -t 24.0765 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {3.0 21.0 232 ------- null} - -t 24.0765 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {3.0 21.0 232 ------- null} h -t 24.0765 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.0781 -s 1 -d 3 -p ack -e 40 -c 0 -i 444 -a 1 -x {21.0 3.0 213 ------- null} + -t 24.0781 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 464 -a 0 -x {3.0 21.0 233 ------- null} - -t 24.0781 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 464 -a 0 -x {3.0 21.0 233 ------- null} h -t 24.0781 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 464 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.0797 -s 1 -d 3 -p ack -e 40 -c 0 -i 445 -a 1 -x {21.0 3.0 214 ------- null} + -t 24.0797 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {3.0 21.0 234 ------- null} - -t 24.0797 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {3.0 21.0 234 ------- null} h -t 24.0797 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.0813 -s 1 -d 3 -p ack -e 40 -c 0 -i 446 -a 1 -x {21.0 3.0 215 ------- null} + -t 24.0813 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 466 -a 0 -x {3.0 21.0 235 ------- null} - -t 24.0813 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 466 -a 0 -x {3.0 21.0 235 ------- null} h -t 24.0813 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 466 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.0829 -s 1 -d 3 -p ack -e 40 -c 0 -i 447 -a 1 -x {21.0 3.0 216 ------- null} + -t 24.0829 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {3.0 21.0 236 ------- null} - -t 24.0829 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {3.0 21.0 236 ------- null} h -t 24.0829 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.0845 -s 1 -d 3 -p ack -e 40 -c 0 -i 448 -a 1 -x {21.0 3.0 217 ------- null} + -t 24.0845 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 468 -a 0 -x {3.0 21.0 237 ------- null} - -t 24.0845 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 468 -a 0 -x {3.0 21.0 237 ------- null} h -t 24.0845 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 468 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.0861 -s 1 -d 3 -p ack -e 40 -c 0 -i 449 -a 1 -x {21.0 3.0 218 ------- null} + -t 24.0861 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {3.0 21.0 238 ------- null} - -t 24.0861 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {3.0 21.0 238 ------- null} h -t 24.0861 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.0877 -s 1 -d 3 -p ack -e 40 -c 0 -i 450 -a 1 -x {21.0 3.0 219 ------- null} + -t 24.0877 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 470 -a 0 -x {3.0 21.0 239 ------- null} - -t 24.0877 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 470 -a 0 -x {3.0 21.0 239 ------- null} h -t 24.0877 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 470 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.0893 -s 1 -d 3 -p ack -e 40 -c 0 -i 451 -a 1 -x {21.0 3.0 220 ------- null} + -t 24.0893 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {3.0 21.0 240 ------- null} - -t 24.0893 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {3.0 21.0 240 ------- null} h -t 24.0893 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.0909 -s 1 -d 3 -p ack -e 40 -c 0 -i 452 -a 1 -x {21.0 3.0 221 ------- null} + -t 24.0909 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {3.0 21.0 241 ------- null} - -t 24.0909 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {3.0 21.0 241 ------- null} h -t 24.0909 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.0925 -s 1 -d 3 -p ack -e 40 -c 0 -i 453 -a 1 -x {21.0 3.0 222 ------- null} + -t 24.0925 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {3.0 21.0 242 ------- null} - -t 24.0925 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {3.0 21.0 242 ------- null} h -t 24.0925 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.0941 -s 1 -d 3 -p ack -e 40 -c 0 -i 454 -a 1 -x {21.0 3.0 223 ------- null} + -t 24.0941 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 474 -a 0 -x {3.0 21.0 243 ------- null} - -t 24.0941 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 474 -a 0 -x {3.0 21.0 243 ------- null} h -t 24.0941 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 474 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.0957 -s 1 -d 3 -p ack -e 40 -c 0 -i 455 -a 1 -x {21.0 3.0 224 ------- null} + -t 24.0957 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {3.0 21.0 244 ------- null} - -t 24.0957 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {3.0 21.0 244 ------- null} h -t 24.0957 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.0973 -s 1 -d 3 -p ack -e 40 -c 0 -i 456 -a 1 -x {21.0 3.0 225 ------- null} + -t 24.0973 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 476 -a 0 -x {3.0 21.0 245 ------- null} - -t 24.0973 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 476 -a 0 -x {3.0 21.0 245 ------- null} h -t 24.0973 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 476 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.0989 -s 1 -d 3 -p ack -e 40 -c 0 -i 457 -a 1 -x {21.0 3.0 226 ------- null} + -t 24.0989 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {3.0 21.0 246 ------- null} - -t 24.0989 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {3.0 21.0 246 ------- null} h -t 24.0989 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.1005 -s 1 -d 3 -p ack -e 40 -c 0 -i 458 -a 1 -x {21.0 3.0 227 ------- null} + -t 24.1005 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {3.0 21.0 247 ------- null} - -t 24.1005 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {3.0 21.0 247 ------- null} h -t 24.1005 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.1021 -s 1 -d 3 -p ack -e 40 -c 0 -i 459 -a 1 -x {21.0 3.0 228 ------- null} + -t 24.1021 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {3.0 21.0 248 ------- null} - -t 24.1021 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {3.0 21.0 248 ------- null} h -t 24.1021 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.1037 -s 1 -d 3 -p ack -e 40 -c 0 -i 460 -a 1 -x {21.0 3.0 229 ------- null} + -t 24.1037 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {3.0 21.0 249 ------- null} - -t 24.1037 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {3.0 21.0 249 ------- null} h -t 24.1037 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.1053 -s 1 -d 3 -p ack -e 40 -c 0 -i 461 -a 1 -x {21.0 3.0 230 ------- null} + -t 24.1053 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {3.0 21.0 250 ------- null} - -t 24.1053 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {3.0 21.0 250 ------- null} h -t 24.1053 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.2165 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 462 -a 0 -x {3.0 21.0 231 ------- null} + -t 24.2165 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 462 -a 0 -x {3.0 21.0 231 ------- null} - -t 24.2165 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 462 -a 0 -x {3.0 21.0 231 ------- null} h -t 24.2165 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 462 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.2181 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {3.0 21.0 232 ------- null} + -t 24.2181 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {3.0 21.0 232 ------- null} - -t 24.2181 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {3.0 21.0 232 ------- null} h -t 24.2181 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.2197 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 464 -a 0 -x {3.0 21.0 233 ------- null} + -t 24.2197 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 464 -a 0 -x {3.0 21.0 233 ------- null} - -t 24.2197 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 464 -a 0 -x {3.0 21.0 233 ------- null} h -t 24.2197 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 464 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.2213 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {3.0 21.0 234 ------- null} + -t 24.2213 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {3.0 21.0 234 ------- null} - -t 24.2213 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {3.0 21.0 234 ------- null} h -t 24.2213 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.2229 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 466 -a 0 -x {3.0 21.0 235 ------- null} + -t 24.2229 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 466 -a 0 -x {3.0 21.0 235 ------- null} - -t 24.2229 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 466 -a 0 -x {3.0 21.0 235 ------- null} h -t 24.2229 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 466 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.2245 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {3.0 21.0 236 ------- null} + -t 24.2245 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {3.0 21.0 236 ------- null} - -t 24.2245 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {3.0 21.0 236 ------- null} h -t 24.2245 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.2261 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 468 -a 0 -x {3.0 21.0 237 ------- null} + -t 24.2261 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 468 -a 0 -x {3.0 21.0 237 ------- null} - -t 24.2261 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 468 -a 0 -x {3.0 21.0 237 ------- null} h -t 24.2261 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 468 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.2277 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {3.0 21.0 238 ------- null} + -t 24.2277 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {3.0 21.0 238 ------- null} - -t 24.2277 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {3.0 21.0 238 ------- null} h -t 24.2277 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.2293 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 470 -a 0 -x {3.0 21.0 239 ------- null} + -t 24.2293 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 470 -a 0 -x {3.0 21.0 239 ------- null} - -t 24.2293 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 470 -a 0 -x {3.0 21.0 239 ------- null} h -t 24.2293 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 470 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.2309 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {3.0 21.0 240 ------- null} + -t 24.2309 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {3.0 21.0 240 ------- null} - -t 24.2309 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {3.0 21.0 240 ------- null} h -t 24.2309 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.2325 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {3.0 21.0 241 ------- null} + -t 24.2325 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {3.0 21.0 241 ------- null} - -t 24.2325 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {3.0 21.0 241 ------- null} h -t 24.2325 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.2341 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {3.0 21.0 242 ------- null} + -t 24.2341 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {3.0 21.0 242 ------- null} - -t 24.2341 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {3.0 21.0 242 ------- null} h -t 24.2341 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.2357 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 474 -a 0 -x {3.0 21.0 243 ------- null} + -t 24.2357 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 474 -a 0 -x {3.0 21.0 243 ------- null} - -t 24.2357 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 474 -a 0 -x {3.0 21.0 243 ------- null} h -t 24.2357 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 474 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.2373 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {3.0 21.0 244 ------- null} + -t 24.2373 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {3.0 21.0 244 ------- null} - -t 24.2373 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {3.0 21.0 244 ------- null} h -t 24.2373 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.2389 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 476 -a 0 -x {3.0 21.0 245 ------- null} + -t 24.2389 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 476 -a 0 -x {3.0 21.0 245 ------- null} - -t 24.2389 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 476 -a 0 -x {3.0 21.0 245 ------- null} h -t 24.2389 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 476 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.2405 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {3.0 21.0 246 ------- null} + -t 24.2405 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {3.0 21.0 246 ------- null} - -t 24.2405 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {3.0 21.0 246 ------- null} h -t 24.2405 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.2421 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {3.0 21.0 247 ------- null} + -t 24.2421 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {3.0 21.0 247 ------- null} - -t 24.2421 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {3.0 21.0 247 ------- null} h -t 24.2421 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.2437 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {3.0 21.0 248 ------- null} + -t 24.2437 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {3.0 21.0 248 ------- null} - -t 24.2437 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {3.0 21.0 248 ------- null} h -t 24.2437 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.2453 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {3.0 21.0 249 ------- null} + -t 24.2453 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {3.0 21.0 249 ------- null} - -t 24.2453 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {3.0 21.0 249 ------- null} h -t 24.2453 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.2469 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {3.0 21.0 250 ------- null} + -t 24.2469 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {3.0 21.0 250 ------- null} - -t 24.2469 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {3.0 21.0 250 ------- null} h -t 24.2469 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.5181 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 462 -a 0 -x {3.0 21.0 231 ------- null} + -t 24.5181 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 462 -a 0 -x {3.0 21.0 231 ------- null} - -t 24.5181 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 462 -a 0 -x {3.0 21.0 231 ------- null} h -t 24.5181 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 462 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.5197 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {3.0 21.0 232 ------- null} + -t 24.5197 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {3.0 21.0 232 ------- null} - -t 24.5197 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {3.0 21.0 232 ------- null} h -t 24.5197 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.5213 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 464 -a 0 -x {3.0 21.0 233 ------- null} + -t 24.5213 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 464 -a 0 -x {3.0 21.0 233 ------- null} - -t 24.5213 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 464 -a 0 -x {3.0 21.0 233 ------- null} h -t 24.5213 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 464 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.5229 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {3.0 21.0 234 ------- null} + -t 24.5229 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {3.0 21.0 234 ------- null} - -t 24.5229 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {3.0 21.0 234 ------- null} h -t 24.5229 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.5245 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 466 -a 0 -x {3.0 21.0 235 ------- null} + -t 24.5245 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 466 -a 0 -x {3.0 21.0 235 ------- null} - -t 24.5245 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 466 -a 0 -x {3.0 21.0 235 ------- null} h -t 24.5245 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 466 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.5261 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {3.0 21.0 236 ------- null} + -t 24.5261 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {3.0 21.0 236 ------- null} - -t 24.5261 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {3.0 21.0 236 ------- null} h -t 24.5261 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.5277 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 468 -a 0 -x {3.0 21.0 237 ------- null} + -t 24.5277 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 468 -a 0 -x {3.0 21.0 237 ------- null} - -t 24.5277 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 468 -a 0 -x {3.0 21.0 237 ------- null} h -t 24.5277 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 468 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.5293 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {3.0 21.0 238 ------- null} + -t 24.5293 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {3.0 21.0 238 ------- null} - -t 24.5293 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {3.0 21.0 238 ------- null} h -t 24.5293 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.5309 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 470 -a 0 -x {3.0 21.0 239 ------- null} + -t 24.5309 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 470 -a 0 -x {3.0 21.0 239 ------- null} - -t 24.5309 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 470 -a 0 -x {3.0 21.0 239 ------- null} h -t 24.5309 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 470 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.5325 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {3.0 21.0 240 ------- null} + -t 24.5325 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {3.0 21.0 240 ------- null} - -t 24.5325 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {3.0 21.0 240 ------- null} h -t 24.5325 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.5341 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {3.0 21.0 241 ------- null} + -t 24.5341 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {3.0 21.0 241 ------- null} - -t 24.5341 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {3.0 21.0 241 ------- null} h -t 24.5341 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.5357 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {3.0 21.0 242 ------- null} + -t 24.5357 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {3.0 21.0 242 ------- null} - -t 24.5357 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {3.0 21.0 242 ------- null} h -t 24.5357 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.5373 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 474 -a 0 -x {3.0 21.0 243 ------- null} + -t 24.5373 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 474 -a 0 -x {3.0 21.0 243 ------- null} - -t 24.5373 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 474 -a 0 -x {3.0 21.0 243 ------- null} h -t 24.5373 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 474 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.5389 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {3.0 21.0 244 ------- null} + -t 24.5389 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {3.0 21.0 244 ------- null} - -t 24.5389 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {3.0 21.0 244 ------- null} h -t 24.5389 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.5405 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 476 -a 0 -x {3.0 21.0 245 ------- null} + -t 24.5405 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 476 -a 0 -x {3.0 21.0 245 ------- null} - -t 24.5405 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 476 -a 0 -x {3.0 21.0 245 ------- null} h -t 24.5405 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 476 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.5421 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {3.0 21.0 246 ------- null} + -t 24.5421 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {3.0 21.0 246 ------- null} - -t 24.5421 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {3.0 21.0 246 ------- null} h -t 24.5421 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.5437 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {3.0 21.0 247 ------- null} + -t 24.5437 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {3.0 21.0 247 ------- null} - -t 24.5437 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {3.0 21.0 247 ------- null} h -t 24.5437 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.5453 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {3.0 21.0 248 ------- null} + -t 24.5453 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {3.0 21.0 248 ------- null} - -t 24.5453 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {3.0 21.0 248 ------- null} h -t 24.5453 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.5469 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {3.0 21.0 249 ------- null} + -t 24.5469 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {3.0 21.0 249 ------- null} - -t 24.5469 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {3.0 21.0 249 ------- null} h -t 24.5469 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.5485 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {3.0 21.0 250 ------- null} + -t 24.5485 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {3.0 21.0 250 ------- null} - -t 24.5485 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {3.0 21.0 250 ------- null} h -t 24.5485 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {3.0 21.0 -1 ------- null} r -t 24.8697 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 462 -a 0 -x {3.0 21.0 231 ------- null} + -t 24.8697 -s 21 -d 28 -p ack -e 40 -c 0 -i 482 -a 1 -x {21.0 3.0 231 ------- null} - -t 24.8697 -s 21 -d 28 -p ack -e 40 -c 0 -i 482 -a 1 -x {21.0 3.0 231 ------- null} h -t 24.8697 -s 21 -d 28 -p ack -e 40 -c 0 -i 482 -a 1 -x {21.0 3.0 -1 ------- null} r -t 24.8713 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {3.0 21.0 232 ------- null} + -t 24.8713 -s 21 -d 28 -p ack -e 40 -c 0 -i 483 -a 1 -x {21.0 3.0 232 ------- null} - -t 24.8713 -s 21 -d 28 -p ack -e 40 -c 0 -i 483 -a 1 -x {21.0 3.0 232 ------- null} h -t 24.8713 -s 21 -d 28 -p ack -e 40 -c 0 -i 483 -a 1 -x {21.0 3.0 -1 ------- null} r -t 24.8729 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 464 -a 0 -x {3.0 21.0 233 ------- null} + -t 24.8729 -s 21 -d 28 -p ack -e 40 -c 0 -i 484 -a 1 -x {21.0 3.0 233 ------- null} - -t 24.8729 -s 21 -d 28 -p ack -e 40 -c 0 -i 484 -a 1 -x {21.0 3.0 233 ------- null} h -t 24.8729 -s 21 -d 28 -p ack -e 40 -c 0 -i 484 -a 1 -x {21.0 3.0 -1 ------- null} r -t 24.8745 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {3.0 21.0 234 ------- null} + -t 24.8745 -s 21 -d 28 -p ack -e 40 -c 0 -i 485 -a 1 -x {21.0 3.0 234 ------- null} - -t 24.8745 -s 21 -d 28 -p ack -e 40 -c 0 -i 485 -a 1 -x {21.0 3.0 234 ------- null} h -t 24.8745 -s 21 -d 28 -p ack -e 40 -c 0 -i 485 -a 1 -x {21.0 3.0 -1 ------- null} r -t 24.8761 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 466 -a 0 -x {3.0 21.0 235 ------- null} + -t 24.8761 -s 21 -d 28 -p ack -e 40 -c 0 -i 486 -a 1 -x {21.0 3.0 235 ------- null} - -t 24.8761 -s 21 -d 28 -p ack -e 40 -c 0 -i 486 -a 1 -x {21.0 3.0 235 ------- null} h -t 24.8761 -s 21 -d 28 -p ack -e 40 -c 0 -i 486 -a 1 -x {21.0 3.0 -1 ------- null} r -t 24.8777 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {3.0 21.0 236 ------- null} + -t 24.8777 -s 21 -d 28 -p ack -e 40 -c 0 -i 487 -a 1 -x {21.0 3.0 236 ------- null} - -t 24.8777 -s 21 -d 28 -p ack -e 40 -c 0 -i 487 -a 1 -x {21.0 3.0 236 ------- null} h -t 24.8777 -s 21 -d 28 -p ack -e 40 -c 0 -i 487 -a 1 -x {21.0 3.0 -1 ------- null} r -t 24.8793 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 468 -a 0 -x {3.0 21.0 237 ------- null} + -t 24.8793 -s 21 -d 28 -p ack -e 40 -c 0 -i 488 -a 1 -x {21.0 3.0 237 ------- null} - -t 24.8793 -s 21 -d 28 -p ack -e 40 -c 0 -i 488 -a 1 -x {21.0 3.0 237 ------- null} h -t 24.8793 -s 21 -d 28 -p ack -e 40 -c 0 -i 488 -a 1 -x {21.0 3.0 -1 ------- null} r -t 24.8809 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {3.0 21.0 238 ------- null} + -t 24.8809 -s 21 -d 28 -p ack -e 40 -c 0 -i 489 -a 1 -x {21.0 3.0 238 ------- null} - -t 24.8809 -s 21 -d 28 -p ack -e 40 -c 0 -i 489 -a 1 -x {21.0 3.0 238 ------- null} h -t 24.8809 -s 21 -d 28 -p ack -e 40 -c 0 -i 489 -a 1 -x {21.0 3.0 -1 ------- null} r -t 24.8825 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 470 -a 0 -x {3.0 21.0 239 ------- null} + -t 24.8825 -s 21 -d 28 -p ack -e 40 -c 0 -i 490 -a 1 -x {21.0 3.0 239 ------- null} - -t 24.8825 -s 21 -d 28 -p ack -e 40 -c 0 -i 490 -a 1 -x {21.0 3.0 239 ------- null} h -t 24.8825 -s 21 -d 28 -p ack -e 40 -c 0 -i 490 -a 1 -x {21.0 3.0 -1 ------- null} r -t 24.8841 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {3.0 21.0 240 ------- null} + -t 24.8841 -s 21 -d 28 -p ack -e 40 -c 0 -i 491 -a 1 -x {21.0 3.0 240 ------- null} - -t 24.8841 -s 21 -d 28 -p ack -e 40 -c 0 -i 491 -a 1 -x {21.0 3.0 240 ------- null} h -t 24.8841 -s 21 -d 28 -p ack -e 40 -c 0 -i 491 -a 1 -x {21.0 3.0 -1 ------- null} r -t 24.8857 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {3.0 21.0 241 ------- null} + -t 24.8857 -s 21 -d 28 -p ack -e 40 -c 0 -i 492 -a 1 -x {21.0 3.0 241 ------- null} - -t 24.8857 -s 21 -d 28 -p ack -e 40 -c 0 -i 492 -a 1 -x {21.0 3.0 241 ------- null} h -t 24.8857 -s 21 -d 28 -p ack -e 40 -c 0 -i 492 -a 1 -x {21.0 3.0 -1 ------- null} r -t 24.8873 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {3.0 21.0 242 ------- null} + -t 24.8873 -s 21 -d 28 -p ack -e 40 -c 0 -i 493 -a 1 -x {21.0 3.0 242 ------- null} - -t 24.8873 -s 21 -d 28 -p ack -e 40 -c 0 -i 493 -a 1 -x {21.0 3.0 242 ------- null} h -t 24.8873 -s 21 -d 28 -p ack -e 40 -c 0 -i 493 -a 1 -x {21.0 3.0 -1 ------- null} r -t 24.8889 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 474 -a 0 -x {3.0 21.0 243 ------- null} + -t 24.8889 -s 21 -d 28 -p ack -e 40 -c 0 -i 494 -a 1 -x {21.0 3.0 243 ------- null} - -t 24.8889 -s 21 -d 28 -p ack -e 40 -c 0 -i 494 -a 1 -x {21.0 3.0 243 ------- null} h -t 24.8889 -s 21 -d 28 -p ack -e 40 -c 0 -i 494 -a 1 -x {21.0 3.0 -1 ------- null} r -t 24.8905 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {3.0 21.0 244 ------- null} + -t 24.8905 -s 21 -d 28 -p ack -e 40 -c 0 -i 495 -a 1 -x {21.0 3.0 244 ------- null} - -t 24.8905 -s 21 -d 28 -p ack -e 40 -c 0 -i 495 -a 1 -x {21.0 3.0 244 ------- null} h -t 24.8905 -s 21 -d 28 -p ack -e 40 -c 0 -i 495 -a 1 -x {21.0 3.0 -1 ------- null} r -t 24.8921 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 476 -a 0 -x {3.0 21.0 245 ------- null} + -t 24.8921 -s 21 -d 28 -p ack -e 40 -c 0 -i 496 -a 1 -x {21.0 3.0 245 ------- null} - -t 24.8921 -s 21 -d 28 -p ack -e 40 -c 0 -i 496 -a 1 -x {21.0 3.0 245 ------- null} h -t 24.8921 -s 21 -d 28 -p ack -e 40 -c 0 -i 496 -a 1 -x {21.0 3.0 -1 ------- null} r -t 24.8937 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {3.0 21.0 246 ------- null} + -t 24.8937 -s 21 -d 28 -p ack -e 40 -c 0 -i 497 -a 1 -x {21.0 3.0 246 ------- null} - -t 24.8937 -s 21 -d 28 -p ack -e 40 -c 0 -i 497 -a 1 -x {21.0 3.0 246 ------- null} h -t 24.8937 -s 21 -d 28 -p ack -e 40 -c 0 -i 497 -a 1 -x {21.0 3.0 -1 ------- null} r -t 24.8953 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {3.0 21.0 247 ------- null} + -t 24.8953 -s 21 -d 28 -p ack -e 40 -c 0 -i 498 -a 1 -x {21.0 3.0 247 ------- null} - -t 24.8953 -s 21 -d 28 -p ack -e 40 -c 0 -i 498 -a 1 -x {21.0 3.0 247 ------- null} h -t 24.8953 -s 21 -d 28 -p ack -e 40 -c 0 -i 498 -a 1 -x {21.0 3.0 -1 ------- null} r -t 24.8969 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {3.0 21.0 248 ------- null} + -t 24.8969 -s 21 -d 28 -p ack -e 40 -c 0 -i 499 -a 1 -x {21.0 3.0 248 ------- null} - -t 24.8969 -s 21 -d 28 -p ack -e 40 -c 0 -i 499 -a 1 -x {21.0 3.0 248 ------- null} h -t 24.8969 -s 21 -d 28 -p ack -e 40 -c 0 -i 499 -a 1 -x {21.0 3.0 -1 ------- null} r -t 24.8985 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {3.0 21.0 249 ------- null} + -t 24.8985 -s 21 -d 28 -p ack -e 40 -c 0 -i 500 -a 1 -x {21.0 3.0 249 ------- null} - -t 24.8985 -s 21 -d 28 -p ack -e 40 -c 0 -i 500 -a 1 -x {21.0 3.0 249 ------- null} h -t 24.8985 -s 21 -d 28 -p ack -e 40 -c 0 -i 500 -a 1 -x {21.0 3.0 -1 ------- null} r -t 24.9001 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {3.0 21.0 250 ------- null} + -t 24.9001 -s 21 -d 28 -p ack -e 40 -c 0 -i 501 -a 1 -x {21.0 3.0 250 ------- null} - -t 24.9001 -s 21 -d 28 -p ack -e 40 -c 0 -i 501 -a 1 -x {21.0 3.0 250 ------- null} h -t 24.9001 -s 21 -d 28 -p ack -e 40 -c 0 -i 501 -a 1 -x {21.0 3.0 -1 ------- null} r -t 25.2197 -s 21 -d 28 -p ack -e 40 -c 0 -i 482 -a 1 -x {21.0 3.0 231 ------- null} + -t 25.2197 -s 28 -d 1 -p ack -e 40 -c 0 -i 482 -a 1 -x {21.0 3.0 231 ------- null} - -t 25.2197 -s 28 -d 1 -p ack -e 40 -c 0 -i 482 -a 1 -x {21.0 3.0 231 ------- null} h -t 25.2197 -s 28 -d 1 -p ack -e 40 -c 0 -i 482 -a 1 -x {21.0 3.0 -1 ------- null} r -t 25.2213 -s 21 -d 28 -p ack -e 40 -c 0 -i 483 -a 1 -x {21.0 3.0 232 ------- null} + -t 25.2213 -s 28 -d 1 -p ack -e 40 -c 0 -i 483 -a 1 -x {21.0 3.0 232 ------- null} - -t 25.2213 -s 28 -d 1 -p ack -e 40 -c 0 -i 483 -a 1 -x {21.0 3.0 232 ------- null} h -t 25.2213 -s 28 -d 1 -p ack -e 40 -c 0 -i 483 -a 1 -x {21.0 3.0 -1 ------- null} r -t 25.2229 -s 21 -d 28 -p ack -e 40 -c 0 -i 484 -a 1 -x {21.0 3.0 233 ------- null} + -t 25.2229 -s 28 -d 1 -p ack -e 40 -c 0 -i 484 -a 1 -x {21.0 3.0 233 ------- null} - -t 25.2229 -s 28 -d 1 -p ack -e 40 -c 0 -i 484 -a 1 -x {21.0 3.0 233 ------- null} h -t 25.2229 -s 28 -d 1 -p ack -e 40 -c 0 -i 484 -a 1 -x {21.0 3.0 -1 ------- null} r -t 25.2245 -s 21 -d 28 -p ack -e 40 -c 0 -i 485 -a 1 -x {21.0 3.0 234 ------- null} + -t 25.2245 -s 28 -d 1 -p ack -e 40 -c 0 -i 485 -a 1 -x {21.0 3.0 234 ------- null} - -t 25.2245 -s 28 -d 1 -p ack -e 40 -c 0 -i 485 -a 1 -x {21.0 3.0 234 ------- null} h -t 25.2245 -s 28 -d 1 -p ack -e 40 -c 0 -i 485 -a 1 -x {21.0 3.0 -1 ------- null} r -t 25.2261 -s 21 -d 28 -p ack -e 40 -c 0 -i 486 -a 1 -x {21.0 3.0 235 ------- null} + -t 25.2261 -s 28 -d 1 -p ack -e 40 -c 0 -i 486 -a 1 -x {21.0 3.0 235 ------- null} - -t 25.2261 -s 28 -d 1 -p ack -e 40 -c 0 -i 486 -a 1 -x {21.0 3.0 235 ------- null} h -t 25.2261 -s 28 -d 1 -p ack -e 40 -c 0 -i 486 -a 1 -x {21.0 3.0 -1 ------- null} r -t 25.2277 -s 21 -d 28 -p ack -e 40 -c 0 -i 487 -a 1 -x {21.0 3.0 236 ------- null} + -t 25.2277 -s 28 -d 1 -p ack -e 40 -c 0 -i 487 -a 1 -x {21.0 3.0 236 ------- null} - -t 25.2277 -s 28 -d 1 -p ack -e 40 -c 0 -i 487 -a 1 -x {21.0 3.0 236 ------- null} h -t 25.2277 -s 28 -d 1 -p ack -e 40 -c 0 -i 487 -a 1 -x {21.0 3.0 -1 ------- null} r -t 25.2293 -s 21 -d 28 -p ack -e 40 -c 0 -i 488 -a 1 -x {21.0 3.0 237 ------- null} + -t 25.2293 -s 28 -d 1 -p ack -e 40 -c 0 -i 488 -a 1 -x {21.0 3.0 237 ------- null} - -t 25.2293 -s 28 -d 1 -p ack -e 40 -c 0 -i 488 -a 1 -x {21.0 3.0 237 ------- null} h -t 25.2293 -s 28 -d 1 -p ack -e 40 -c 0 -i 488 -a 1 -x {21.0 3.0 -1 ------- null} r -t 25.2309 -s 21 -d 28 -p ack -e 40 -c 0 -i 489 -a 1 -x {21.0 3.0 238 ------- null} + -t 25.2309 -s 28 -d 1 -p ack -e 40 -c 0 -i 489 -a 1 -x {21.0 3.0 238 ------- null} - -t 25.2309 -s 28 -d 1 -p ack -e 40 -c 0 -i 489 -a 1 -x {21.0 3.0 238 ------- null} h -t 25.2309 -s 28 -d 1 -p ack -e 40 -c 0 -i 489 -a 1 -x {21.0 3.0 -1 ------- null} r -t 25.2325 -s 21 -d 28 -p ack -e 40 -c 0 -i 490 -a 1 -x {21.0 3.0 239 ------- null} + -t 25.2325 -s 28 -d 1 -p ack -e 40 -c 0 -i 490 -a 1 -x {21.0 3.0 239 ------- null} - -t 25.2325 -s 28 -d 1 -p ack -e 40 -c 0 -i 490 -a 1 -x {21.0 3.0 239 ------- null} h -t 25.2325 -s 28 -d 1 -p ack -e 40 -c 0 -i 490 -a 1 -x {21.0 3.0 -1 ------- null} r -t 25.2341 -s 21 -d 28 -p ack -e 40 -c 0 -i 491 -a 1 -x {21.0 3.0 240 ------- null} + -t 25.2341 -s 28 -d 1 -p ack -e 40 -c 0 -i 491 -a 1 -x {21.0 3.0 240 ------- null} - -t 25.2341 -s 28 -d 1 -p ack -e 40 -c 0 -i 491 -a 1 -x {21.0 3.0 240 ------- null} h -t 25.2341 -s 28 -d 1 -p ack -e 40 -c 0 -i 491 -a 1 -x {21.0 3.0 -1 ------- null} r -t 25.2357 -s 21 -d 28 -p ack -e 40 -c 0 -i 492 -a 1 -x {21.0 3.0 241 ------- null} + -t 25.2357 -s 28 -d 1 -p ack -e 40 -c 0 -i 492 -a 1 -x {21.0 3.0 241 ------- null} - -t 25.2357 -s 28 -d 1 -p ack -e 40 -c 0 -i 492 -a 1 -x {21.0 3.0 241 ------- null} h -t 25.2357 -s 28 -d 1 -p ack -e 40 -c 0 -i 492 -a 1 -x {21.0 3.0 -1 ------- null} r -t 25.2373 -s 21 -d 28 -p ack -e 40 -c 0 -i 493 -a 1 -x {21.0 3.0 242 ------- null} + -t 25.2373 -s 28 -d 1 -p ack -e 40 -c 0 -i 493 -a 1 -x {21.0 3.0 242 ------- null} - -t 25.2373 -s 28 -d 1 -p ack -e 40 -c 0 -i 493 -a 1 -x {21.0 3.0 242 ------- null} h -t 25.2373 -s 28 -d 1 -p ack -e 40 -c 0 -i 493 -a 1 -x {21.0 3.0 -1 ------- null} r -t 25.2389 -s 21 -d 28 -p ack -e 40 -c 0 -i 494 -a 1 -x {21.0 3.0 243 ------- null} + -t 25.2389 -s 28 -d 1 -p ack -e 40 -c 0 -i 494 -a 1 -x {21.0 3.0 243 ------- null} - -t 25.2389 -s 28 -d 1 -p ack -e 40 -c 0 -i 494 -a 1 -x {21.0 3.0 243 ------- null} h -t 25.2389 -s 28 -d 1 -p ack -e 40 -c 0 -i 494 -a 1 -x {21.0 3.0 -1 ------- null} r -t 25.2405 -s 21 -d 28 -p ack -e 40 -c 0 -i 495 -a 1 -x {21.0 3.0 244 ------- null} + -t 25.2405 -s 28 -d 1 -p ack -e 40 -c 0 -i 495 -a 1 -x {21.0 3.0 244 ------- null} - -t 25.2405 -s 28 -d 1 -p ack -e 40 -c 0 -i 495 -a 1 -x {21.0 3.0 244 ------- null} h -t 25.2405 -s 28 -d 1 -p ack -e 40 -c 0 -i 495 -a 1 -x {21.0 3.0 -1 ------- null} r -t 25.2421 -s 21 -d 28 -p ack -e 40 -c 0 -i 496 -a 1 -x {21.0 3.0 245 ------- null} + -t 25.2421 -s 28 -d 1 -p ack -e 40 -c 0 -i 496 -a 1 -x {21.0 3.0 245 ------- null} - -t 25.2421 -s 28 -d 1 -p ack -e 40 -c 0 -i 496 -a 1 -x {21.0 3.0 245 ------- null} h -t 25.2421 -s 28 -d 1 -p ack -e 40 -c 0 -i 496 -a 1 -x {21.0 3.0 -1 ------- null} r -t 25.2437 -s 21 -d 28 -p ack -e 40 -c 0 -i 497 -a 1 -x {21.0 3.0 246 ------- null} + -t 25.2437 -s 28 -d 1 -p ack -e 40 -c 0 -i 497 -a 1 -x {21.0 3.0 246 ------- null} - -t 25.2437 -s 28 -d 1 -p ack -e 40 -c 0 -i 497 -a 1 -x {21.0 3.0 246 ------- null} h -t 25.2437 -s 28 -d 1 -p ack -e 40 -c 0 -i 497 -a 1 -x {21.0 3.0 -1 ------- null} r -t 25.2453 -s 21 -d 28 -p ack -e 40 -c 0 -i 498 -a 1 -x {21.0 3.0 247 ------- null} + -t 25.2453 -s 28 -d 1 -p ack -e 40 -c 0 -i 498 -a 1 -x {21.0 3.0 247 ------- null} - -t 25.2453 -s 28 -d 1 -p ack -e 40 -c 0 -i 498 -a 1 -x {21.0 3.0 247 ------- null} h -t 25.2453 -s 28 -d 1 -p ack -e 40 -c 0 -i 498 -a 1 -x {21.0 3.0 -1 ------- null} r -t 25.2469 -s 21 -d 28 -p ack -e 40 -c 0 -i 499 -a 1 -x {21.0 3.0 248 ------- null} + -t 25.2469 -s 28 -d 1 -p ack -e 40 -c 0 -i 499 -a 1 -x {21.0 3.0 248 ------- null} - -t 25.2469 -s 28 -d 1 -p ack -e 40 -c 0 -i 499 -a 1 -x {21.0 3.0 248 ------- null} h -t 25.2469 -s 28 -d 1 -p ack -e 40 -c 0 -i 499 -a 1 -x {21.0 3.0 -1 ------- null} r -t 25.2485 -s 21 -d 28 -p ack -e 40 -c 0 -i 500 -a 1 -x {21.0 3.0 249 ------- null} + -t 25.2485 -s 28 -d 1 -p ack -e 40 -c 0 -i 500 -a 1 -x {21.0 3.0 249 ------- null} - -t 25.2485 -s 28 -d 1 -p ack -e 40 -c 0 -i 500 -a 1 -x {21.0 3.0 249 ------- null} h -t 25.2485 -s 28 -d 1 -p ack -e 40 -c 0 -i 500 -a 1 -x {21.0 3.0 -1 ------- null} r -t 25.2501 -s 21 -d 28 -p ack -e 40 -c 0 -i 501 -a 1 -x {21.0 3.0 250 ------- null} + -t 25.2501 -s 28 -d 1 -p ack -e 40 -c 0 -i 501 -a 1 -x {21.0 3.0 250 ------- null} - -t 25.2501 -s 28 -d 1 -p ack -e 40 -c 0 -i 501 -a 1 -x {21.0 3.0 250 ------- null} h -t 25.2501 -s 28 -d 1 -p ack -e 40 -c 0 -i 501 -a 1 -x {21.0 3.0 -1 ------- null} r -t 25.5198 -s 28 -d 1 -p ack -e 40 -c 0 -i 482 -a 1 -x {21.0 3.0 231 ------- null} + -t 25.5198 -s 1 -d 3 -p ack -e 40 -c 0 -i 482 -a 1 -x {21.0 3.0 231 ------- null} - -t 25.5198 -s 1 -d 3 -p ack -e 40 -c 0 -i 482 -a 1 -x {21.0 3.0 231 ------- null} h -t 25.5198 -s 1 -d 3 -p ack -e 40 -c 0 -i 482 -a 1 -x {21.0 3.0 -1 ------- null} r -t 25.5214 -s 28 -d 1 -p ack -e 40 -c 0 -i 483 -a 1 -x {21.0 3.0 232 ------- null} + -t 25.5214 -s 1 -d 3 -p ack -e 40 -c 0 -i 483 -a 1 -x {21.0 3.0 232 ------- null} - -t 25.5214 -s 1 -d 3 -p ack -e 40 -c 0 -i 483 -a 1 -x {21.0 3.0 232 ------- null} h -t 25.5214 -s 1 -d 3 -p ack -e 40 -c 0 -i 483 -a 1 -x {21.0 3.0 -1 ------- null} r -t 25.523 -s 28 -d 1 -p ack -e 40 -c 0 -i 484 -a 1 -x {21.0 3.0 233 ------- null} + -t 25.523 -s 1 -d 3 -p ack -e 40 -c 0 -i 484 -a 1 -x {21.0 3.0 233 ------- null} - -t 25.523 -s 1 -d 3 -p ack -e 40 -c 0 -i 484 -a 1 -x {21.0 3.0 233 ------- null} h -t 25.523 -s 1 -d 3 -p ack -e 40 -c 0 -i 484 -a 1 -x {21.0 3.0 -1 ------- null} r -t 25.5246 -s 28 -d 1 -p ack -e 40 -c 0 -i 485 -a 1 -x {21.0 3.0 234 ------- null} + -t 25.5246 -s 1 -d 3 -p ack -e 40 -c 0 -i 485 -a 1 -x {21.0 3.0 234 ------- null} - -t 25.5246 -s 1 -d 3 -p ack -e 40 -c 0 -i 485 -a 1 -x {21.0 3.0 234 ------- null} h -t 25.5246 -s 1 -d 3 -p ack -e 40 -c 0 -i 485 -a 1 -x {21.0 3.0 -1 ------- null} r -t 25.5262 -s 28 -d 1 -p ack -e 40 -c 0 -i 486 -a 1 -x {21.0 3.0 235 ------- null} + -t 25.5262 -s 1 -d 3 -p ack -e 40 -c 0 -i 486 -a 1 -x {21.0 3.0 235 ------- null} - -t 25.5262 -s 1 -d 3 -p ack -e 40 -c 0 -i 486 -a 1 -x {21.0 3.0 235 ------- null} h -t 25.5262 -s 1 -d 3 -p ack -e 40 -c 0 -i 486 -a 1 -x {21.0 3.0 -1 ------- null} r -t 25.5278 -s 28 -d 1 -p ack -e 40 -c 0 -i 487 -a 1 -x {21.0 3.0 236 ------- null} + -t 25.5278 -s 1 -d 3 -p ack -e 40 -c 0 -i 487 -a 1 -x {21.0 3.0 236 ------- null} - -t 25.5278 -s 1 -d 3 -p ack -e 40 -c 0 -i 487 -a 1 -x {21.0 3.0 236 ------- null} h -t 25.5278 -s 1 -d 3 -p ack -e 40 -c 0 -i 487 -a 1 -x {21.0 3.0 -1 ------- null} r -t 25.5294 -s 28 -d 1 -p ack -e 40 -c 0 -i 488 -a 1 -x {21.0 3.0 237 ------- null} + -t 25.5294 -s 1 -d 3 -p ack -e 40 -c 0 -i 488 -a 1 -x {21.0 3.0 237 ------- null} - -t 25.5294 -s 1 -d 3 -p ack -e 40 -c 0 -i 488 -a 1 -x {21.0 3.0 237 ------- null} h -t 25.5294 -s 1 -d 3 -p ack -e 40 -c 0 -i 488 -a 1 -x {21.0 3.0 -1 ------- null} r -t 25.531 -s 28 -d 1 -p ack -e 40 -c 0 -i 489 -a 1 -x {21.0 3.0 238 ------- null} + -t 25.531 -s 1 -d 3 -p ack -e 40 -c 0 -i 489 -a 1 -x {21.0 3.0 238 ------- null} - -t 25.531 -s 1 -d 3 -p ack -e 40 -c 0 -i 489 -a 1 -x {21.0 3.0 238 ------- null} h -t 25.531 -s 1 -d 3 -p ack -e 40 -c 0 -i 489 -a 1 -x {21.0 3.0 -1 ------- null} r -t 25.5326 -s 28 -d 1 -p ack -e 40 -c 0 -i 490 -a 1 -x {21.0 3.0 239 ------- null} + -t 25.5326 -s 1 -d 3 -p ack -e 40 -c 0 -i 490 -a 1 -x {21.0 3.0 239 ------- null} - -t 25.5326 -s 1 -d 3 -p ack -e 40 -c 0 -i 490 -a 1 -x {21.0 3.0 239 ------- null} h -t 25.5326 -s 1 -d 3 -p ack -e 40 -c 0 -i 490 -a 1 -x {21.0 3.0 -1 ------- null} r -t 25.5342 -s 28 -d 1 -p ack -e 40 -c 0 -i 491 -a 1 -x {21.0 3.0 240 ------- null} + -t 25.5342 -s 1 -d 3 -p ack -e 40 -c 0 -i 491 -a 1 -x {21.0 3.0 240 ------- null} - -t 25.5342 -s 1 -d 3 -p ack -e 40 -c 0 -i 491 -a 1 -x {21.0 3.0 240 ------- null} h -t 25.5342 -s 1 -d 3 -p ack -e 40 -c 0 -i 491 -a 1 -x {21.0 3.0 -1 ------- null} r -t 25.5358 -s 28 -d 1 -p ack -e 40 -c 0 -i 492 -a 1 -x {21.0 3.0 241 ------- null} + -t 25.5358 -s 1 -d 3 -p ack -e 40 -c 0 -i 492 -a 1 -x {21.0 3.0 241 ------- null} - -t 25.5358 -s 1 -d 3 -p ack -e 40 -c 0 -i 492 -a 1 -x {21.0 3.0 241 ------- null} h -t 25.5358 -s 1 -d 3 -p ack -e 40 -c 0 -i 492 -a 1 -x {21.0 3.0 -1 ------- null} r -t 25.5374 -s 28 -d 1 -p ack -e 40 -c 0 -i 493 -a 1 -x {21.0 3.0 242 ------- null} + -t 25.5374 -s 1 -d 3 -p ack -e 40 -c 0 -i 493 -a 1 -x {21.0 3.0 242 ------- null} - -t 25.5374 -s 1 -d 3 -p ack -e 40 -c 0 -i 493 -a 1 -x {21.0 3.0 242 ------- null} h -t 25.5374 -s 1 -d 3 -p ack -e 40 -c 0 -i 493 -a 1 -x {21.0 3.0 -1 ------- null} r -t 25.539 -s 28 -d 1 -p ack -e 40 -c 0 -i 494 -a 1 -x {21.0 3.0 243 ------- null} + -t 25.539 -s 1 -d 3 -p ack -e 40 -c 0 -i 494 -a 1 -x {21.0 3.0 243 ------- null} - -t 25.539 -s 1 -d 3 -p ack -e 40 -c 0 -i 494 -a 1 -x {21.0 3.0 243 ------- null} h -t 25.539 -s 1 -d 3 -p ack -e 40 -c 0 -i 494 -a 1 -x {21.0 3.0 -1 ------- null} r -t 25.5406 -s 28 -d 1 -p ack -e 40 -c 0 -i 495 -a 1 -x {21.0 3.0 244 ------- null} + -t 25.5406 -s 1 -d 3 -p ack -e 40 -c 0 -i 495 -a 1 -x {21.0 3.0 244 ------- null} - -t 25.5406 -s 1 -d 3 -p ack -e 40 -c 0 -i 495 -a 1 -x {21.0 3.0 244 ------- null} h -t 25.5406 -s 1 -d 3 -p ack -e 40 -c 0 -i 495 -a 1 -x {21.0 3.0 -1 ------- null} r -t 25.5422 -s 28 -d 1 -p ack -e 40 -c 0 -i 496 -a 1 -x {21.0 3.0 245 ------- null} + -t 25.5422 -s 1 -d 3 -p ack -e 40 -c 0 -i 496 -a 1 -x {21.0 3.0 245 ------- null} - -t 25.5422 -s 1 -d 3 -p ack -e 40 -c 0 -i 496 -a 1 -x {21.0 3.0 245 ------- null} h -t 25.5422 -s 1 -d 3 -p ack -e 40 -c 0 -i 496 -a 1 -x {21.0 3.0 -1 ------- null} r -t 25.5438 -s 28 -d 1 -p ack -e 40 -c 0 -i 497 -a 1 -x {21.0 3.0 246 ------- null} + -t 25.5438 -s 1 -d 3 -p ack -e 40 -c 0 -i 497 -a 1 -x {21.0 3.0 246 ------- null} - -t 25.5438 -s 1 -d 3 -p ack -e 40 -c 0 -i 497 -a 1 -x {21.0 3.0 246 ------- null} h -t 25.5438 -s 1 -d 3 -p ack -e 40 -c 0 -i 497 -a 1 -x {21.0 3.0 -1 ------- null} r -t 25.5454 -s 28 -d 1 -p ack -e 40 -c 0 -i 498 -a 1 -x {21.0 3.0 247 ------- null} + -t 25.5454 -s 1 -d 3 -p ack -e 40 -c 0 -i 498 -a 1 -x {21.0 3.0 247 ------- null} - -t 25.5454 -s 1 -d 3 -p ack -e 40 -c 0 -i 498 -a 1 -x {21.0 3.0 247 ------- null} h -t 25.5454 -s 1 -d 3 -p ack -e 40 -c 0 -i 498 -a 1 -x {21.0 3.0 -1 ------- null} r -t 25.547 -s 28 -d 1 -p ack -e 40 -c 0 -i 499 -a 1 -x {21.0 3.0 248 ------- null} + -t 25.547 -s 1 -d 3 -p ack -e 40 -c 0 -i 499 -a 1 -x {21.0 3.0 248 ------- null} - -t 25.547 -s 1 -d 3 -p ack -e 40 -c 0 -i 499 -a 1 -x {21.0 3.0 248 ------- null} h -t 25.547 -s 1 -d 3 -p ack -e 40 -c 0 -i 499 -a 1 -x {21.0 3.0 -1 ------- null} r -t 25.5486 -s 28 -d 1 -p ack -e 40 -c 0 -i 500 -a 1 -x {21.0 3.0 249 ------- null} + -t 25.5486 -s 1 -d 3 -p ack -e 40 -c 0 -i 500 -a 1 -x {21.0 3.0 249 ------- null} - -t 25.5486 -s 1 -d 3 -p ack -e 40 -c 0 -i 500 -a 1 -x {21.0 3.0 249 ------- null} h -t 25.5486 -s 1 -d 3 -p ack -e 40 -c 0 -i 500 -a 1 -x {21.0 3.0 -1 ------- null} r -t 25.5502 -s 28 -d 1 -p ack -e 40 -c 0 -i 501 -a 1 -x {21.0 3.0 250 ------- null} + -t 25.5502 -s 1 -d 3 -p ack -e 40 -c 0 -i 501 -a 1 -x {21.0 3.0 250 ------- null} - -t 25.5502 -s 1 -d 3 -p ack -e 40 -c 0 -i 501 -a 1 -x {21.0 3.0 250 ------- null} h -t 25.5502 -s 1 -d 3 -p ack -e 40 -c 0 -i 501 -a 1 -x {21.0 3.0 -1 ------- null} r -t 25.6599 -s 1 -d 3 -p ack -e 40 -c 0 -i 482 -a 1 -x {21.0 3.0 231 ------- null} + -t 25.6599 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 502 -a 0 -x {3.0 21.0 251 ------- null} - -t 25.6599 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 502 -a 0 -x {3.0 21.0 251 ------- null} h -t 25.6599 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 502 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.6615 -s 1 -d 3 -p ack -e 40 -c 0 -i 483 -a 1 -x {21.0 3.0 232 ------- null} + -t 25.6615 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {3.0 21.0 252 ------- null} - -t 25.6615 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {3.0 21.0 252 ------- null} h -t 25.6615 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.6631 -s 1 -d 3 -p ack -e 40 -c 0 -i 484 -a 1 -x {21.0 3.0 233 ------- null} + -t 25.6631 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 504 -a 0 -x {3.0 21.0 253 ------- null} - -t 25.6631 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 504 -a 0 -x {3.0 21.0 253 ------- null} h -t 25.6631 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 504 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.6647 -s 1 -d 3 -p ack -e 40 -c 0 -i 485 -a 1 -x {21.0 3.0 234 ------- null} + -t 25.6647 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {3.0 21.0 254 ------- null} - -t 25.6647 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {3.0 21.0 254 ------- null} h -t 25.6647 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.6663 -s 1 -d 3 -p ack -e 40 -c 0 -i 486 -a 1 -x {21.0 3.0 235 ------- null} + -t 25.6663 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 506 -a 0 -x {3.0 21.0 255 ------- null} - -t 25.6663 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 506 -a 0 -x {3.0 21.0 255 ------- null} h -t 25.6663 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 506 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.6679 -s 1 -d 3 -p ack -e 40 -c 0 -i 487 -a 1 -x {21.0 3.0 236 ------- null} + -t 25.6679 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {3.0 21.0 256 ------- null} - -t 25.6679 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {3.0 21.0 256 ------- null} h -t 25.6679 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.6695 -s 1 -d 3 -p ack -e 40 -c 0 -i 488 -a 1 -x {21.0 3.0 237 ------- null} + -t 25.6695 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 508 -a 0 -x {3.0 21.0 257 ------- null} - -t 25.6695 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 508 -a 0 -x {3.0 21.0 257 ------- null} h -t 25.6695 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 508 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.6711 -s 1 -d 3 -p ack -e 40 -c 0 -i 489 -a 1 -x {21.0 3.0 238 ------- null} + -t 25.6711 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {3.0 21.0 258 ------- null} - -t 25.6711 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {3.0 21.0 258 ------- null} h -t 25.6711 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.6727 -s 1 -d 3 -p ack -e 40 -c 0 -i 490 -a 1 -x {21.0 3.0 239 ------- null} + -t 25.6727 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 510 -a 0 -x {3.0 21.0 259 ------- null} - -t 25.6727 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 510 -a 0 -x {3.0 21.0 259 ------- null} h -t 25.6727 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 510 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.6743 -s 1 -d 3 -p ack -e 40 -c 0 -i 491 -a 1 -x {21.0 3.0 240 ------- null} + -t 25.6743 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {3.0 21.0 260 ------- null} - -t 25.6743 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {3.0 21.0 260 ------- null} h -t 25.6743 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.6759 -s 1 -d 3 -p ack -e 40 -c 0 -i 492 -a 1 -x {21.0 3.0 241 ------- null} + -t 25.6759 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 512 -a 0 -x {3.0 21.0 261 ------- null} - -t 25.6759 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 512 -a 0 -x {3.0 21.0 261 ------- null} h -t 25.6759 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 512 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.6775 -s 1 -d 3 -p ack -e 40 -c 0 -i 493 -a 1 -x {21.0 3.0 242 ------- null} + -t 25.6775 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {3.0 21.0 262 ------- null} - -t 25.6775 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {3.0 21.0 262 ------- null} h -t 25.6775 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.6791 -s 1 -d 3 -p ack -e 40 -c 0 -i 494 -a 1 -x {21.0 3.0 243 ------- null} + -t 25.6791 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 514 -a 0 -x {3.0 21.0 263 ------- null} - -t 25.6791 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 514 -a 0 -x {3.0 21.0 263 ------- null} h -t 25.6791 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 514 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.6807 -s 1 -d 3 -p ack -e 40 -c 0 -i 495 -a 1 -x {21.0 3.0 244 ------- null} + -t 25.6807 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {3.0 21.0 264 ------- null} - -t 25.6807 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {3.0 21.0 264 ------- null} h -t 25.6807 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.6823 -s 1 -d 3 -p ack -e 40 -c 0 -i 496 -a 1 -x {21.0 3.0 245 ------- null} + -t 25.6823 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 516 -a 0 -x {3.0 21.0 265 ------- null} - -t 25.6823 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 516 -a 0 -x {3.0 21.0 265 ------- null} h -t 25.6823 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 516 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.6839 -s 1 -d 3 -p ack -e 40 -c 0 -i 497 -a 1 -x {21.0 3.0 246 ------- null} + -t 25.6839 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {3.0 21.0 266 ------- null} - -t 25.6839 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {3.0 21.0 266 ------- null} h -t 25.6839 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.6855 -s 1 -d 3 -p ack -e 40 -c 0 -i 498 -a 1 -x {21.0 3.0 247 ------- null} + -t 25.6855 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 518 -a 0 -x {3.0 21.0 267 ------- null} - -t 25.6855 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 518 -a 0 -x {3.0 21.0 267 ------- null} h -t 25.6855 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 518 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.6871 -s 1 -d 3 -p ack -e 40 -c 0 -i 499 -a 1 -x {21.0 3.0 248 ------- null} + -t 25.6871 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {3.0 21.0 268 ------- null} - -t 25.6871 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {3.0 21.0 268 ------- null} h -t 25.6871 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.6887 -s 1 -d 3 -p ack -e 40 -c 0 -i 500 -a 1 -x {21.0 3.0 249 ------- null} + -t 25.6887 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 520 -a 0 -x {3.0 21.0 269 ------- null} - -t 25.6887 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 520 -a 0 -x {3.0 21.0 269 ------- null} h -t 25.6887 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 520 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.6903 -s 1 -d 3 -p ack -e 40 -c 0 -i 501 -a 1 -x {21.0 3.0 250 ------- null} + -t 25.6903 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {3.0 21.0 270 ------- null} - -t 25.6903 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {3.0 21.0 270 ------- null} h -t 25.6903 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.8015 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 502 -a 0 -x {3.0 21.0 251 ------- null} + -t 25.8015 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 502 -a 0 -x {3.0 21.0 251 ------- null} - -t 25.8015 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 502 -a 0 -x {3.0 21.0 251 ------- null} h -t 25.8015 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 502 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.8031 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {3.0 21.0 252 ------- null} + -t 25.8031 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {3.0 21.0 252 ------- null} - -t 25.8031 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {3.0 21.0 252 ------- null} h -t 25.8031 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.8047 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 504 -a 0 -x {3.0 21.0 253 ------- null} + -t 25.8047 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 504 -a 0 -x {3.0 21.0 253 ------- null} - -t 25.8047 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 504 -a 0 -x {3.0 21.0 253 ------- null} h -t 25.8047 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 504 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.8063 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {3.0 21.0 254 ------- null} + -t 25.8063 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {3.0 21.0 254 ------- null} - -t 25.8063 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {3.0 21.0 254 ------- null} h -t 25.8063 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.8079 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 506 -a 0 -x {3.0 21.0 255 ------- null} + -t 25.8079 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 506 -a 0 -x {3.0 21.0 255 ------- null} - -t 25.8079 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 506 -a 0 -x {3.0 21.0 255 ------- null} h -t 25.8079 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 506 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.8095 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {3.0 21.0 256 ------- null} + -t 25.8095 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {3.0 21.0 256 ------- null} - -t 25.8095 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {3.0 21.0 256 ------- null} h -t 25.8095 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.8111 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 508 -a 0 -x {3.0 21.0 257 ------- null} + -t 25.8111 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 508 -a 0 -x {3.0 21.0 257 ------- null} - -t 25.8111 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 508 -a 0 -x {3.0 21.0 257 ------- null} h -t 25.8111 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 508 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.8127 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {3.0 21.0 258 ------- null} + -t 25.8127 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {3.0 21.0 258 ------- null} - -t 25.8127 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {3.0 21.0 258 ------- null} h -t 25.8127 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.8143 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 510 -a 0 -x {3.0 21.0 259 ------- null} + -t 25.8143 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 510 -a 0 -x {3.0 21.0 259 ------- null} - -t 25.8143 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 510 -a 0 -x {3.0 21.0 259 ------- null} h -t 25.8143 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 510 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.8159 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {3.0 21.0 260 ------- null} + -t 25.8159 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {3.0 21.0 260 ------- null} - -t 25.8159 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {3.0 21.0 260 ------- null} h -t 25.8159 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.8175 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 512 -a 0 -x {3.0 21.0 261 ------- null} + -t 25.8175 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 512 -a 0 -x {3.0 21.0 261 ------- null} - -t 25.8175 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 512 -a 0 -x {3.0 21.0 261 ------- null} h -t 25.8175 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 512 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.8191 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {3.0 21.0 262 ------- null} + -t 25.8191 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {3.0 21.0 262 ------- null} - -t 25.8191 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {3.0 21.0 262 ------- null} h -t 25.8191 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.8207 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 514 -a 0 -x {3.0 21.0 263 ------- null} + -t 25.8207 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 514 -a 0 -x {3.0 21.0 263 ------- null} - -t 25.8207 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 514 -a 0 -x {3.0 21.0 263 ------- null} h -t 25.8207 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 514 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.8223 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {3.0 21.0 264 ------- null} + -t 25.8223 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {3.0 21.0 264 ------- null} - -t 25.8223 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {3.0 21.0 264 ------- null} h -t 25.8223 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.8239 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 516 -a 0 -x {3.0 21.0 265 ------- null} + -t 25.8239 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 516 -a 0 -x {3.0 21.0 265 ------- null} - -t 25.8239 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 516 -a 0 -x {3.0 21.0 265 ------- null} h -t 25.8239 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 516 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.8255 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {3.0 21.0 266 ------- null} + -t 25.8255 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {3.0 21.0 266 ------- null} - -t 25.8255 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {3.0 21.0 266 ------- null} h -t 25.8255 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.8271 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 518 -a 0 -x {3.0 21.0 267 ------- null} + -t 25.8271 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 518 -a 0 -x {3.0 21.0 267 ------- null} - -t 25.8271 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 518 -a 0 -x {3.0 21.0 267 ------- null} h -t 25.8271 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 518 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.8287 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {3.0 21.0 268 ------- null} + -t 25.8287 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {3.0 21.0 268 ------- null} - -t 25.8287 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {3.0 21.0 268 ------- null} h -t 25.8287 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.8303 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 520 -a 0 -x {3.0 21.0 269 ------- null} + -t 25.8303 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 520 -a 0 -x {3.0 21.0 269 ------- null} - -t 25.8303 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 520 -a 0 -x {3.0 21.0 269 ------- null} h -t 25.8303 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 520 -a 0 -x {3.0 21.0 -1 ------- null} r -t 25.8319 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {3.0 21.0 270 ------- null} + -t 25.8319 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {3.0 21.0 270 ------- null} - -t 25.8319 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {3.0 21.0 270 ------- null} h -t 25.8319 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {3.0 21.0 -1 ------- null} r -t 26.1031 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 502 -a 0 -x {3.0 21.0 251 ------- null} + -t 26.1031 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 502 -a 0 -x {3.0 21.0 251 ------- null} - -t 26.1031 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 502 -a 0 -x {3.0 21.0 251 ------- null} h -t 26.1031 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 502 -a 0 -x {3.0 21.0 -1 ------- null} r -t 26.1047 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {3.0 21.0 252 ------- null} + -t 26.1047 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {3.0 21.0 252 ------- null} - -t 26.1047 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {3.0 21.0 252 ------- null} h -t 26.1047 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {3.0 21.0 -1 ------- null} r -t 26.1063 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 504 -a 0 -x {3.0 21.0 253 ------- null} + -t 26.1063 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 504 -a 0 -x {3.0 21.0 253 ------- null} - -t 26.1063 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 504 -a 0 -x {3.0 21.0 253 ------- null} h -t 26.1063 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 504 -a 0 -x {3.0 21.0 -1 ------- null} r -t 26.1079 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {3.0 21.0 254 ------- null} + -t 26.1079 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {3.0 21.0 254 ------- null} - -t 26.1079 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {3.0 21.0 254 ------- null} h -t 26.1079 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {3.0 21.0 -1 ------- null} r -t 26.1095 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 506 -a 0 -x {3.0 21.0 255 ------- null} + -t 26.1095 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 506 -a 0 -x {3.0 21.0 255 ------- null} - -t 26.1095 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 506 -a 0 -x {3.0 21.0 255 ------- null} h -t 26.1095 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 506 -a 0 -x {3.0 21.0 -1 ------- null} r -t 26.1111 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {3.0 21.0 256 ------- null} + -t 26.1111 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {3.0 21.0 256 ------- null} - -t 26.1111 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {3.0 21.0 256 ------- null} h -t 26.1111 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {3.0 21.0 -1 ------- null} r -t 26.1127 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 508 -a 0 -x {3.0 21.0 257 ------- null} + -t 26.1127 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 508 -a 0 -x {3.0 21.0 257 ------- null} - -t 26.1127 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 508 -a 0 -x {3.0 21.0 257 ------- null} h -t 26.1127 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 508 -a 0 -x {3.0 21.0 -1 ------- null} r -t 26.1143 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {3.0 21.0 258 ------- null} + -t 26.1143 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {3.0 21.0 258 ------- null} - -t 26.1143 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {3.0 21.0 258 ------- null} h -t 26.1143 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {3.0 21.0 -1 ------- null} r -t 26.1159 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 510 -a 0 -x {3.0 21.0 259 ------- null} + -t 26.1159 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 510 -a 0 -x {3.0 21.0 259 ------- null} - -t 26.1159 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 510 -a 0 -x {3.0 21.0 259 ------- null} h -t 26.1159 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 510 -a 0 -x {3.0 21.0 -1 ------- null} r -t 26.1175 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {3.0 21.0 260 ------- null} + -t 26.1175 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {3.0 21.0 260 ------- null} - -t 26.1175 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {3.0 21.0 260 ------- null} h -t 26.1175 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {3.0 21.0 -1 ------- null} r -t 26.1191 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 512 -a 0 -x {3.0 21.0 261 ------- null} + -t 26.1191 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 512 -a 0 -x {3.0 21.0 261 ------- null} - -t 26.1191 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 512 -a 0 -x {3.0 21.0 261 ------- null} h -t 26.1191 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 512 -a 0 -x {3.0 21.0 -1 ------- null} r -t 26.1207 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {3.0 21.0 262 ------- null} + -t 26.1207 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {3.0 21.0 262 ------- null} - -t 26.1207 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {3.0 21.0 262 ------- null} h -t 26.1207 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {3.0 21.0 -1 ------- null} r -t 26.1223 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 514 -a 0 -x {3.0 21.0 263 ------- null} + -t 26.1223 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 514 -a 0 -x {3.0 21.0 263 ------- null} - -t 26.1223 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 514 -a 0 -x {3.0 21.0 263 ------- null} h -t 26.1223 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 514 -a 0 -x {3.0 21.0 -1 ------- null} r -t 26.1239 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {3.0 21.0 264 ------- null} + -t 26.1239 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {3.0 21.0 264 ------- null} - -t 26.1239 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {3.0 21.0 264 ------- null} h -t 26.1239 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {3.0 21.0 -1 ------- null} r -t 26.1255 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 516 -a 0 -x {3.0 21.0 265 ------- null} + -t 26.1255 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 516 -a 0 -x {3.0 21.0 265 ------- null} - -t 26.1255 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 516 -a 0 -x {3.0 21.0 265 ------- null} h -t 26.1255 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 516 -a 0 -x {3.0 21.0 -1 ------- null} r -t 26.1271 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {3.0 21.0 266 ------- null} + -t 26.1271 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {3.0 21.0 266 ------- null} - -t 26.1271 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {3.0 21.0 266 ------- null} h -t 26.1271 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {3.0 21.0 -1 ------- null} r -t 26.1287 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 518 -a 0 -x {3.0 21.0 267 ------- null} + -t 26.1287 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 518 -a 0 -x {3.0 21.0 267 ------- null} - -t 26.1287 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 518 -a 0 -x {3.0 21.0 267 ------- null} h -t 26.1287 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 518 -a 0 -x {3.0 21.0 -1 ------- null} r -t 26.1303 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {3.0 21.0 268 ------- null} + -t 26.1303 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {3.0 21.0 268 ------- null} - -t 26.1303 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {3.0 21.0 268 ------- null} h -t 26.1303 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {3.0 21.0 -1 ------- null} r -t 26.1319 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 520 -a 0 -x {3.0 21.0 269 ------- null} + -t 26.1319 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 520 -a 0 -x {3.0 21.0 269 ------- null} - -t 26.1319 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 520 -a 0 -x {3.0 21.0 269 ------- null} h -t 26.1319 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 520 -a 0 -x {3.0 21.0 -1 ------- null} r -t 26.1335 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {3.0 21.0 270 ------- null} + -t 26.1335 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {3.0 21.0 270 ------- null} - -t 26.1335 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {3.0 21.0 270 ------- null} h -t 26.1335 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {3.0 21.0 -1 ------- null} r -t 26.4547 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 502 -a 0 -x {3.0 21.0 251 ------- null} + -t 26.4547 -s 21 -d 28 -p ack -e 40 -c 0 -i 522 -a 1 -x {21.0 3.0 251 ------- null} - -t 26.4547 -s 21 -d 28 -p ack -e 40 -c 0 -i 522 -a 1 -x {21.0 3.0 251 ------- null} h -t 26.4547 -s 21 -d 28 -p ack -e 40 -c 0 -i 522 -a 1 -x {21.0 3.0 -1 ------- null} r -t 26.4563 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {3.0 21.0 252 ------- null} + -t 26.4563 -s 21 -d 28 -p ack -e 40 -c 0 -i 523 -a 1 -x {21.0 3.0 252 ------- null} - -t 26.4563 -s 21 -d 28 -p ack -e 40 -c 0 -i 523 -a 1 -x {21.0 3.0 252 ------- null} h -t 26.4563 -s 21 -d 28 -p ack -e 40 -c 0 -i 523 -a 1 -x {21.0 3.0 -1 ------- null} r -t 26.4579 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 504 -a 0 -x {3.0 21.0 253 ------- null} + -t 26.4579 -s 21 -d 28 -p ack -e 40 -c 0 -i 524 -a 1 -x {21.0 3.0 253 ------- null} - -t 26.4579 -s 21 -d 28 -p ack -e 40 -c 0 -i 524 -a 1 -x {21.0 3.0 253 ------- null} h -t 26.4579 -s 21 -d 28 -p ack -e 40 -c 0 -i 524 -a 1 -x {21.0 3.0 -1 ------- null} r -t 26.4595 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {3.0 21.0 254 ------- null} + -t 26.4595 -s 21 -d 28 -p ack -e 40 -c 0 -i 525 -a 1 -x {21.0 3.0 254 ------- null} - -t 26.4595 -s 21 -d 28 -p ack -e 40 -c 0 -i 525 -a 1 -x {21.0 3.0 254 ------- null} h -t 26.4595 -s 21 -d 28 -p ack -e 40 -c 0 -i 525 -a 1 -x {21.0 3.0 -1 ------- null} r -t 26.4611 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 506 -a 0 -x {3.0 21.0 255 ------- null} + -t 26.4611 -s 21 -d 28 -p ack -e 40 -c 0 -i 526 -a 1 -x {21.0 3.0 255 ------- null} - -t 26.4611 -s 21 -d 28 -p ack -e 40 -c 0 -i 526 -a 1 -x {21.0 3.0 255 ------- null} h -t 26.4611 -s 21 -d 28 -p ack -e 40 -c 0 -i 526 -a 1 -x {21.0 3.0 -1 ------- null} r -t 26.4627 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {3.0 21.0 256 ------- null} + -t 26.4627 -s 21 -d 28 -p ack -e 40 -c 0 -i 527 -a 1 -x {21.0 3.0 256 ------- null} - -t 26.4627 -s 21 -d 28 -p ack -e 40 -c 0 -i 527 -a 1 -x {21.0 3.0 256 ------- null} h -t 26.4627 -s 21 -d 28 -p ack -e 40 -c 0 -i 527 -a 1 -x {21.0 3.0 -1 ------- null} r -t 26.4643 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 508 -a 0 -x {3.0 21.0 257 ------- null} + -t 26.4643 -s 21 -d 28 -p ack -e 40 -c 0 -i 528 -a 1 -x {21.0 3.0 257 ------- null} - -t 26.4643 -s 21 -d 28 -p ack -e 40 -c 0 -i 528 -a 1 -x {21.0 3.0 257 ------- null} h -t 26.4643 -s 21 -d 28 -p ack -e 40 -c 0 -i 528 -a 1 -x {21.0 3.0 -1 ------- null} r -t 26.4659 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {3.0 21.0 258 ------- null} + -t 26.4659 -s 21 -d 28 -p ack -e 40 -c 0 -i 529 -a 1 -x {21.0 3.0 258 ------- null} - -t 26.4659 -s 21 -d 28 -p ack -e 40 -c 0 -i 529 -a 1 -x {21.0 3.0 258 ------- null} h -t 26.4659 -s 21 -d 28 -p ack -e 40 -c 0 -i 529 -a 1 -x {21.0 3.0 -1 ------- null} r -t 26.4675 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 510 -a 0 -x {3.0 21.0 259 ------- null} + -t 26.4675 -s 21 -d 28 -p ack -e 40 -c 0 -i 530 -a 1 -x {21.0 3.0 259 ------- null} - -t 26.4675 -s 21 -d 28 -p ack -e 40 -c 0 -i 530 -a 1 -x {21.0 3.0 259 ------- null} h -t 26.4675 -s 21 -d 28 -p ack -e 40 -c 0 -i 530 -a 1 -x {21.0 3.0 -1 ------- null} r -t 26.4691 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {3.0 21.0 260 ------- null} + -t 26.4691 -s 21 -d 28 -p ack -e 40 -c 0 -i 531 -a 1 -x {21.0 3.0 260 ------- null} - -t 26.4691 -s 21 -d 28 -p ack -e 40 -c 0 -i 531 -a 1 -x {21.0 3.0 260 ------- null} h -t 26.4691 -s 21 -d 28 -p ack -e 40 -c 0 -i 531 -a 1 -x {21.0 3.0 -1 ------- null} r -t 26.4707 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 512 -a 0 -x {3.0 21.0 261 ------- null} + -t 26.4707 -s 21 -d 28 -p ack -e 40 -c 0 -i 532 -a 1 -x {21.0 3.0 261 ------- null} - -t 26.4707 -s 21 -d 28 -p ack -e 40 -c 0 -i 532 -a 1 -x {21.0 3.0 261 ------- null} h -t 26.4707 -s 21 -d 28 -p ack -e 40 -c 0 -i 532 -a 1 -x {21.0 3.0 -1 ------- null} r -t 26.4723 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {3.0 21.0 262 ------- null} + -t 26.4723 -s 21 -d 28 -p ack -e 40 -c 0 -i 533 -a 1 -x {21.0 3.0 262 ------- null} - -t 26.4723 -s 21 -d 28 -p ack -e 40 -c 0 -i 533 -a 1 -x {21.0 3.0 262 ------- null} h -t 26.4723 -s 21 -d 28 -p ack -e 40 -c 0 -i 533 -a 1 -x {21.0 3.0 -1 ------- null} r -t 26.4739 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 514 -a 0 -x {3.0 21.0 263 ------- null} + -t 26.4739 -s 21 -d 28 -p ack -e 40 -c 0 -i 534 -a 1 -x {21.0 3.0 263 ------- null} - -t 26.4739 -s 21 -d 28 -p ack -e 40 -c 0 -i 534 -a 1 -x {21.0 3.0 263 ------- null} h -t 26.4739 -s 21 -d 28 -p ack -e 40 -c 0 -i 534 -a 1 -x {21.0 3.0 -1 ------- null} r -t 26.4755 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {3.0 21.0 264 ------- null} + -t 26.4755 -s 21 -d 28 -p ack -e 40 -c 0 -i 535 -a 1 -x {21.0 3.0 264 ------- null} - -t 26.4755 -s 21 -d 28 -p ack -e 40 -c 0 -i 535 -a 1 -x {21.0 3.0 264 ------- null} h -t 26.4755 -s 21 -d 28 -p ack -e 40 -c 0 -i 535 -a 1 -x {21.0 3.0 -1 ------- null} r -t 26.4771 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 516 -a 0 -x {3.0 21.0 265 ------- null} + -t 26.4771 -s 21 -d 28 -p ack -e 40 -c 0 -i 536 -a 1 -x {21.0 3.0 265 ------- null} - -t 26.4771 -s 21 -d 28 -p ack -e 40 -c 0 -i 536 -a 1 -x {21.0 3.0 265 ------- null} h -t 26.4771 -s 21 -d 28 -p ack -e 40 -c 0 -i 536 -a 1 -x {21.0 3.0 -1 ------- null} r -t 26.4787 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {3.0 21.0 266 ------- null} + -t 26.4787 -s 21 -d 28 -p ack -e 40 -c 0 -i 537 -a 1 -x {21.0 3.0 266 ------- null} - -t 26.4787 -s 21 -d 28 -p ack -e 40 -c 0 -i 537 -a 1 -x {21.0 3.0 266 ------- null} h -t 26.4787 -s 21 -d 28 -p ack -e 40 -c 0 -i 537 -a 1 -x {21.0 3.0 -1 ------- null} r -t 26.4803 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 518 -a 0 -x {3.0 21.0 267 ------- null} + -t 26.4803 -s 21 -d 28 -p ack -e 40 -c 0 -i 538 -a 1 -x {21.0 3.0 267 ------- null} - -t 26.4803 -s 21 -d 28 -p ack -e 40 -c 0 -i 538 -a 1 -x {21.0 3.0 267 ------- null} h -t 26.4803 -s 21 -d 28 -p ack -e 40 -c 0 -i 538 -a 1 -x {21.0 3.0 -1 ------- null} r -t 26.4819 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {3.0 21.0 268 ------- null} + -t 26.4819 -s 21 -d 28 -p ack -e 40 -c 0 -i 539 -a 1 -x {21.0 3.0 268 ------- null} - -t 26.4819 -s 21 -d 28 -p ack -e 40 -c 0 -i 539 -a 1 -x {21.0 3.0 268 ------- null} h -t 26.4819 -s 21 -d 28 -p ack -e 40 -c 0 -i 539 -a 1 -x {21.0 3.0 -1 ------- null} r -t 26.4835 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 520 -a 0 -x {3.0 21.0 269 ------- null} + -t 26.4835 -s 21 -d 28 -p ack -e 40 -c 0 -i 540 -a 1 -x {21.0 3.0 269 ------- null} - -t 26.4835 -s 21 -d 28 -p ack -e 40 -c 0 -i 540 -a 1 -x {21.0 3.0 269 ------- null} h -t 26.4835 -s 21 -d 28 -p ack -e 40 -c 0 -i 540 -a 1 -x {21.0 3.0 -1 ------- null} r -t 26.4851 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {3.0 21.0 270 ------- null} + -t 26.4851 -s 21 -d 28 -p ack -e 40 -c 0 -i 541 -a 1 -x {21.0 3.0 270 ------- null} - -t 26.4851 -s 21 -d 28 -p ack -e 40 -c 0 -i 541 -a 1 -x {21.0 3.0 270 ------- null} h -t 26.4851 -s 21 -d 28 -p ack -e 40 -c 0 -i 541 -a 1 -x {21.0 3.0 -1 ------- null} r -t 26.8047 -s 21 -d 28 -p ack -e 40 -c 0 -i 522 -a 1 -x {21.0 3.0 251 ------- null} + -t 26.8047 -s 28 -d 1 -p ack -e 40 -c 0 -i 522 -a 1 -x {21.0 3.0 251 ------- null} - -t 26.8047 -s 28 -d 1 -p ack -e 40 -c 0 -i 522 -a 1 -x {21.0 3.0 251 ------- null} h -t 26.8047 -s 28 -d 1 -p ack -e 40 -c 0 -i 522 -a 1 -x {21.0 3.0 -1 ------- null} r -t 26.8063 -s 21 -d 28 -p ack -e 40 -c 0 -i 523 -a 1 -x {21.0 3.0 252 ------- null} + -t 26.8063 -s 28 -d 1 -p ack -e 40 -c 0 -i 523 -a 1 -x {21.0 3.0 252 ------- null} - -t 26.8063 -s 28 -d 1 -p ack -e 40 -c 0 -i 523 -a 1 -x {21.0 3.0 252 ------- null} h -t 26.8063 -s 28 -d 1 -p ack -e 40 -c 0 -i 523 -a 1 -x {21.0 3.0 -1 ------- null} r -t 26.8079 -s 21 -d 28 -p ack -e 40 -c 0 -i 524 -a 1 -x {21.0 3.0 253 ------- null} + -t 26.8079 -s 28 -d 1 -p ack -e 40 -c 0 -i 524 -a 1 -x {21.0 3.0 253 ------- null} - -t 26.8079 -s 28 -d 1 -p ack -e 40 -c 0 -i 524 -a 1 -x {21.0 3.0 253 ------- null} h -t 26.8079 -s 28 -d 1 -p ack -e 40 -c 0 -i 524 -a 1 -x {21.0 3.0 -1 ------- null} r -t 26.8095 -s 21 -d 28 -p ack -e 40 -c 0 -i 525 -a 1 -x {21.0 3.0 254 ------- null} + -t 26.8095 -s 28 -d 1 -p ack -e 40 -c 0 -i 525 -a 1 -x {21.0 3.0 254 ------- null} - -t 26.8095 -s 28 -d 1 -p ack -e 40 -c 0 -i 525 -a 1 -x {21.0 3.0 254 ------- null} h -t 26.8095 -s 28 -d 1 -p ack -e 40 -c 0 -i 525 -a 1 -x {21.0 3.0 -1 ------- null} r -t 26.8111 -s 21 -d 28 -p ack -e 40 -c 0 -i 526 -a 1 -x {21.0 3.0 255 ------- null} + -t 26.8111 -s 28 -d 1 -p ack -e 40 -c 0 -i 526 -a 1 -x {21.0 3.0 255 ------- null} - -t 26.8111 -s 28 -d 1 -p ack -e 40 -c 0 -i 526 -a 1 -x {21.0 3.0 255 ------- null} h -t 26.8111 -s 28 -d 1 -p ack -e 40 -c 0 -i 526 -a 1 -x {21.0 3.0 -1 ------- null} r -t 26.8127 -s 21 -d 28 -p ack -e 40 -c 0 -i 527 -a 1 -x {21.0 3.0 256 ------- null} + -t 26.8127 -s 28 -d 1 -p ack -e 40 -c 0 -i 527 -a 1 -x {21.0 3.0 256 ------- null} - -t 26.8127 -s 28 -d 1 -p ack -e 40 -c 0 -i 527 -a 1 -x {21.0 3.0 256 ------- null} h -t 26.8127 -s 28 -d 1 -p ack -e 40 -c 0 -i 527 -a 1 -x {21.0 3.0 -1 ------- null} r -t 26.8143 -s 21 -d 28 -p ack -e 40 -c 0 -i 528 -a 1 -x {21.0 3.0 257 ------- null} + -t 26.8143 -s 28 -d 1 -p ack -e 40 -c 0 -i 528 -a 1 -x {21.0 3.0 257 ------- null} - -t 26.8143 -s 28 -d 1 -p ack -e 40 -c 0 -i 528 -a 1 -x {21.0 3.0 257 ------- null} h -t 26.8143 -s 28 -d 1 -p ack -e 40 -c 0 -i 528 -a 1 -x {21.0 3.0 -1 ------- null} r -t 26.8159 -s 21 -d 28 -p ack -e 40 -c 0 -i 529 -a 1 -x {21.0 3.0 258 ------- null} + -t 26.8159 -s 28 -d 1 -p ack -e 40 -c 0 -i 529 -a 1 -x {21.0 3.0 258 ------- null} - -t 26.8159 -s 28 -d 1 -p ack -e 40 -c 0 -i 529 -a 1 -x {21.0 3.0 258 ------- null} h -t 26.8159 -s 28 -d 1 -p ack -e 40 -c 0 -i 529 -a 1 -x {21.0 3.0 -1 ------- null} r -t 26.8175 -s 21 -d 28 -p ack -e 40 -c 0 -i 530 -a 1 -x {21.0 3.0 259 ------- null} + -t 26.8175 -s 28 -d 1 -p ack -e 40 -c 0 -i 530 -a 1 -x {21.0 3.0 259 ------- null} - -t 26.8175 -s 28 -d 1 -p ack -e 40 -c 0 -i 530 -a 1 -x {21.0 3.0 259 ------- null} h -t 26.8175 -s 28 -d 1 -p ack -e 40 -c 0 -i 530 -a 1 -x {21.0 3.0 -1 ------- null} r -t 26.8191 -s 21 -d 28 -p ack -e 40 -c 0 -i 531 -a 1 -x {21.0 3.0 260 ------- null} + -t 26.8191 -s 28 -d 1 -p ack -e 40 -c 0 -i 531 -a 1 -x {21.0 3.0 260 ------- null} - -t 26.8191 -s 28 -d 1 -p ack -e 40 -c 0 -i 531 -a 1 -x {21.0 3.0 260 ------- null} h -t 26.8191 -s 28 -d 1 -p ack -e 40 -c 0 -i 531 -a 1 -x {21.0 3.0 -1 ------- null} r -t 26.8207 -s 21 -d 28 -p ack -e 40 -c 0 -i 532 -a 1 -x {21.0 3.0 261 ------- null} + -t 26.8207 -s 28 -d 1 -p ack -e 40 -c 0 -i 532 -a 1 -x {21.0 3.0 261 ------- null} - -t 26.8207 -s 28 -d 1 -p ack -e 40 -c 0 -i 532 -a 1 -x {21.0 3.0 261 ------- null} h -t 26.8207 -s 28 -d 1 -p ack -e 40 -c 0 -i 532 -a 1 -x {21.0 3.0 -1 ------- null} r -t 26.8223 -s 21 -d 28 -p ack -e 40 -c 0 -i 533 -a 1 -x {21.0 3.0 262 ------- null} + -t 26.8223 -s 28 -d 1 -p ack -e 40 -c 0 -i 533 -a 1 -x {21.0 3.0 262 ------- null} - -t 26.8223 -s 28 -d 1 -p ack -e 40 -c 0 -i 533 -a 1 -x {21.0 3.0 262 ------- null} h -t 26.8223 -s 28 -d 1 -p ack -e 40 -c 0 -i 533 -a 1 -x {21.0 3.0 -1 ------- null} r -t 26.8239 -s 21 -d 28 -p ack -e 40 -c 0 -i 534 -a 1 -x {21.0 3.0 263 ------- null} + -t 26.8239 -s 28 -d 1 -p ack -e 40 -c 0 -i 534 -a 1 -x {21.0 3.0 263 ------- null} - -t 26.8239 -s 28 -d 1 -p ack -e 40 -c 0 -i 534 -a 1 -x {21.0 3.0 263 ------- null} h -t 26.8239 -s 28 -d 1 -p ack -e 40 -c 0 -i 534 -a 1 -x {21.0 3.0 -1 ------- null} r -t 26.8255 -s 21 -d 28 -p ack -e 40 -c 0 -i 535 -a 1 -x {21.0 3.0 264 ------- null} + -t 26.8255 -s 28 -d 1 -p ack -e 40 -c 0 -i 535 -a 1 -x {21.0 3.0 264 ------- null} - -t 26.8255 -s 28 -d 1 -p ack -e 40 -c 0 -i 535 -a 1 -x {21.0 3.0 264 ------- null} h -t 26.8255 -s 28 -d 1 -p ack -e 40 -c 0 -i 535 -a 1 -x {21.0 3.0 -1 ------- null} r -t 26.8271 -s 21 -d 28 -p ack -e 40 -c 0 -i 536 -a 1 -x {21.0 3.0 265 ------- null} + -t 26.8271 -s 28 -d 1 -p ack -e 40 -c 0 -i 536 -a 1 -x {21.0 3.0 265 ------- null} - -t 26.8271 -s 28 -d 1 -p ack -e 40 -c 0 -i 536 -a 1 -x {21.0 3.0 265 ------- null} h -t 26.8271 -s 28 -d 1 -p ack -e 40 -c 0 -i 536 -a 1 -x {21.0 3.0 -1 ------- null} r -t 26.8287 -s 21 -d 28 -p ack -e 40 -c 0 -i 537 -a 1 -x {21.0 3.0 266 ------- null} + -t 26.8287 -s 28 -d 1 -p ack -e 40 -c 0 -i 537 -a 1 -x {21.0 3.0 266 ------- null} - -t 26.8287 -s 28 -d 1 -p ack -e 40 -c 0 -i 537 -a 1 -x {21.0 3.0 266 ------- null} h -t 26.8287 -s 28 -d 1 -p ack -e 40 -c 0 -i 537 -a 1 -x {21.0 3.0 -1 ------- null} r -t 26.8303 -s 21 -d 28 -p ack -e 40 -c 0 -i 538 -a 1 -x {21.0 3.0 267 ------- null} + -t 26.8303 -s 28 -d 1 -p ack -e 40 -c 0 -i 538 -a 1 -x {21.0 3.0 267 ------- null} - -t 26.8303 -s 28 -d 1 -p ack -e 40 -c 0 -i 538 -a 1 -x {21.0 3.0 267 ------- null} h -t 26.8303 -s 28 -d 1 -p ack -e 40 -c 0 -i 538 -a 1 -x {21.0 3.0 -1 ------- null} r -t 26.8319 -s 21 -d 28 -p ack -e 40 -c 0 -i 539 -a 1 -x {21.0 3.0 268 ------- null} + -t 26.8319 -s 28 -d 1 -p ack -e 40 -c 0 -i 539 -a 1 -x {21.0 3.0 268 ------- null} - -t 26.8319 -s 28 -d 1 -p ack -e 40 -c 0 -i 539 -a 1 -x {21.0 3.0 268 ------- null} h -t 26.8319 -s 28 -d 1 -p ack -e 40 -c 0 -i 539 -a 1 -x {21.0 3.0 -1 ------- null} r -t 26.8335 -s 21 -d 28 -p ack -e 40 -c 0 -i 540 -a 1 -x {21.0 3.0 269 ------- null} + -t 26.8335 -s 28 -d 1 -p ack -e 40 -c 0 -i 540 -a 1 -x {21.0 3.0 269 ------- null} - -t 26.8335 -s 28 -d 1 -p ack -e 40 -c 0 -i 540 -a 1 -x {21.0 3.0 269 ------- null} h -t 26.8335 -s 28 -d 1 -p ack -e 40 -c 0 -i 540 -a 1 -x {21.0 3.0 -1 ------- null} r -t 26.8351 -s 21 -d 28 -p ack -e 40 -c 0 -i 541 -a 1 -x {21.0 3.0 270 ------- null} + -t 26.8351 -s 28 -d 1 -p ack -e 40 -c 0 -i 541 -a 1 -x {21.0 3.0 270 ------- null} - -t 26.8351 -s 28 -d 1 -p ack -e 40 -c 0 -i 541 -a 1 -x {21.0 3.0 270 ------- null} h -t 26.8351 -s 28 -d 1 -p ack -e 40 -c 0 -i 541 -a 1 -x {21.0 3.0 -1 ------- null} r -t 27.1048 -s 28 -d 1 -p ack -e 40 -c 0 -i 522 -a 1 -x {21.0 3.0 251 ------- null} + -t 27.1048 -s 1 -d 3 -p ack -e 40 -c 0 -i 522 -a 1 -x {21.0 3.0 251 ------- null} - -t 27.1048 -s 1 -d 3 -p ack -e 40 -c 0 -i 522 -a 1 -x {21.0 3.0 251 ------- null} h -t 27.1048 -s 1 -d 3 -p ack -e 40 -c 0 -i 522 -a 1 -x {21.0 3.0 -1 ------- null} r -t 27.1064 -s 28 -d 1 -p ack -e 40 -c 0 -i 523 -a 1 -x {21.0 3.0 252 ------- null} + -t 27.1064 -s 1 -d 3 -p ack -e 40 -c 0 -i 523 -a 1 -x {21.0 3.0 252 ------- null} - -t 27.1064 -s 1 -d 3 -p ack -e 40 -c 0 -i 523 -a 1 -x {21.0 3.0 252 ------- null} h -t 27.1064 -s 1 -d 3 -p ack -e 40 -c 0 -i 523 -a 1 -x {21.0 3.0 -1 ------- null} r -t 27.108 -s 28 -d 1 -p ack -e 40 -c 0 -i 524 -a 1 -x {21.0 3.0 253 ------- null} + -t 27.108 -s 1 -d 3 -p ack -e 40 -c 0 -i 524 -a 1 -x {21.0 3.0 253 ------- null} - -t 27.108 -s 1 -d 3 -p ack -e 40 -c 0 -i 524 -a 1 -x {21.0 3.0 253 ------- null} h -t 27.108 -s 1 -d 3 -p ack -e 40 -c 0 -i 524 -a 1 -x {21.0 3.0 -1 ------- null} r -t 27.1096 -s 28 -d 1 -p ack -e 40 -c 0 -i 525 -a 1 -x {21.0 3.0 254 ------- null} + -t 27.1096 -s 1 -d 3 -p ack -e 40 -c 0 -i 525 -a 1 -x {21.0 3.0 254 ------- null} - -t 27.1096 -s 1 -d 3 -p ack -e 40 -c 0 -i 525 -a 1 -x {21.0 3.0 254 ------- null} h -t 27.1096 -s 1 -d 3 -p ack -e 40 -c 0 -i 525 -a 1 -x {21.0 3.0 -1 ------- null} r -t 27.1112 -s 28 -d 1 -p ack -e 40 -c 0 -i 526 -a 1 -x {21.0 3.0 255 ------- null} + -t 27.1112 -s 1 -d 3 -p ack -e 40 -c 0 -i 526 -a 1 -x {21.0 3.0 255 ------- null} - -t 27.1112 -s 1 -d 3 -p ack -e 40 -c 0 -i 526 -a 1 -x {21.0 3.0 255 ------- null} h -t 27.1112 -s 1 -d 3 -p ack -e 40 -c 0 -i 526 -a 1 -x {21.0 3.0 -1 ------- null} r -t 27.1128 -s 28 -d 1 -p ack -e 40 -c 0 -i 527 -a 1 -x {21.0 3.0 256 ------- null} + -t 27.1128 -s 1 -d 3 -p ack -e 40 -c 0 -i 527 -a 1 -x {21.0 3.0 256 ------- null} - -t 27.1128 -s 1 -d 3 -p ack -e 40 -c 0 -i 527 -a 1 -x {21.0 3.0 256 ------- null} h -t 27.1128 -s 1 -d 3 -p ack -e 40 -c 0 -i 527 -a 1 -x {21.0 3.0 -1 ------- null} r -t 27.1144 -s 28 -d 1 -p ack -e 40 -c 0 -i 528 -a 1 -x {21.0 3.0 257 ------- null} + -t 27.1144 -s 1 -d 3 -p ack -e 40 -c 0 -i 528 -a 1 -x {21.0 3.0 257 ------- null} - -t 27.1144 -s 1 -d 3 -p ack -e 40 -c 0 -i 528 -a 1 -x {21.0 3.0 257 ------- null} h -t 27.1144 -s 1 -d 3 -p ack -e 40 -c 0 -i 528 -a 1 -x {21.0 3.0 -1 ------- null} r -t 27.116 -s 28 -d 1 -p ack -e 40 -c 0 -i 529 -a 1 -x {21.0 3.0 258 ------- null} + -t 27.116 -s 1 -d 3 -p ack -e 40 -c 0 -i 529 -a 1 -x {21.0 3.0 258 ------- null} - -t 27.116 -s 1 -d 3 -p ack -e 40 -c 0 -i 529 -a 1 -x {21.0 3.0 258 ------- null} h -t 27.116 -s 1 -d 3 -p ack -e 40 -c 0 -i 529 -a 1 -x {21.0 3.0 -1 ------- null} r -t 27.1176 -s 28 -d 1 -p ack -e 40 -c 0 -i 530 -a 1 -x {21.0 3.0 259 ------- null} + -t 27.1176 -s 1 -d 3 -p ack -e 40 -c 0 -i 530 -a 1 -x {21.0 3.0 259 ------- null} - -t 27.1176 -s 1 -d 3 -p ack -e 40 -c 0 -i 530 -a 1 -x {21.0 3.0 259 ------- null} h -t 27.1176 -s 1 -d 3 -p ack -e 40 -c 0 -i 530 -a 1 -x {21.0 3.0 -1 ------- null} r -t 27.1192 -s 28 -d 1 -p ack -e 40 -c 0 -i 531 -a 1 -x {21.0 3.0 260 ------- null} + -t 27.1192 -s 1 -d 3 -p ack -e 40 -c 0 -i 531 -a 1 -x {21.0 3.0 260 ------- null} - -t 27.1192 -s 1 -d 3 -p ack -e 40 -c 0 -i 531 -a 1 -x {21.0 3.0 260 ------- null} h -t 27.1192 -s 1 -d 3 -p ack -e 40 -c 0 -i 531 -a 1 -x {21.0 3.0 -1 ------- null} r -t 27.1208 -s 28 -d 1 -p ack -e 40 -c 0 -i 532 -a 1 -x {21.0 3.0 261 ------- null} + -t 27.1208 -s 1 -d 3 -p ack -e 40 -c 0 -i 532 -a 1 -x {21.0 3.0 261 ------- null} - -t 27.1208 -s 1 -d 3 -p ack -e 40 -c 0 -i 532 -a 1 -x {21.0 3.0 261 ------- null} h -t 27.1208 -s 1 -d 3 -p ack -e 40 -c 0 -i 532 -a 1 -x {21.0 3.0 -1 ------- null} r -t 27.1224 -s 28 -d 1 -p ack -e 40 -c 0 -i 533 -a 1 -x {21.0 3.0 262 ------- null} + -t 27.1224 -s 1 -d 3 -p ack -e 40 -c 0 -i 533 -a 1 -x {21.0 3.0 262 ------- null} - -t 27.1224 -s 1 -d 3 -p ack -e 40 -c 0 -i 533 -a 1 -x {21.0 3.0 262 ------- null} h -t 27.1224 -s 1 -d 3 -p ack -e 40 -c 0 -i 533 -a 1 -x {21.0 3.0 -1 ------- null} r -t 27.124 -s 28 -d 1 -p ack -e 40 -c 0 -i 534 -a 1 -x {21.0 3.0 263 ------- null} + -t 27.124 -s 1 -d 3 -p ack -e 40 -c 0 -i 534 -a 1 -x {21.0 3.0 263 ------- null} - -t 27.124 -s 1 -d 3 -p ack -e 40 -c 0 -i 534 -a 1 -x {21.0 3.0 263 ------- null} h -t 27.124 -s 1 -d 3 -p ack -e 40 -c 0 -i 534 -a 1 -x {21.0 3.0 -1 ------- null} r -t 27.1256 -s 28 -d 1 -p ack -e 40 -c 0 -i 535 -a 1 -x {21.0 3.0 264 ------- null} + -t 27.1256 -s 1 -d 3 -p ack -e 40 -c 0 -i 535 -a 1 -x {21.0 3.0 264 ------- null} - -t 27.1256 -s 1 -d 3 -p ack -e 40 -c 0 -i 535 -a 1 -x {21.0 3.0 264 ------- null} h -t 27.1256 -s 1 -d 3 -p ack -e 40 -c 0 -i 535 -a 1 -x {21.0 3.0 -1 ------- null} r -t 27.1272 -s 28 -d 1 -p ack -e 40 -c 0 -i 536 -a 1 -x {21.0 3.0 265 ------- null} + -t 27.1272 -s 1 -d 3 -p ack -e 40 -c 0 -i 536 -a 1 -x {21.0 3.0 265 ------- null} - -t 27.1272 -s 1 -d 3 -p ack -e 40 -c 0 -i 536 -a 1 -x {21.0 3.0 265 ------- null} h -t 27.1272 -s 1 -d 3 -p ack -e 40 -c 0 -i 536 -a 1 -x {21.0 3.0 -1 ------- null} r -t 27.1288 -s 28 -d 1 -p ack -e 40 -c 0 -i 537 -a 1 -x {21.0 3.0 266 ------- null} + -t 27.1288 -s 1 -d 3 -p ack -e 40 -c 0 -i 537 -a 1 -x {21.0 3.0 266 ------- null} - -t 27.1288 -s 1 -d 3 -p ack -e 40 -c 0 -i 537 -a 1 -x {21.0 3.0 266 ------- null} h -t 27.1288 -s 1 -d 3 -p ack -e 40 -c 0 -i 537 -a 1 -x {21.0 3.0 -1 ------- null} r -t 27.1304 -s 28 -d 1 -p ack -e 40 -c 0 -i 538 -a 1 -x {21.0 3.0 267 ------- null} + -t 27.1304 -s 1 -d 3 -p ack -e 40 -c 0 -i 538 -a 1 -x {21.0 3.0 267 ------- null} - -t 27.1304 -s 1 -d 3 -p ack -e 40 -c 0 -i 538 -a 1 -x {21.0 3.0 267 ------- null} h -t 27.1304 -s 1 -d 3 -p ack -e 40 -c 0 -i 538 -a 1 -x {21.0 3.0 -1 ------- null} r -t 27.132 -s 28 -d 1 -p ack -e 40 -c 0 -i 539 -a 1 -x {21.0 3.0 268 ------- null} + -t 27.132 -s 1 -d 3 -p ack -e 40 -c 0 -i 539 -a 1 -x {21.0 3.0 268 ------- null} - -t 27.132 -s 1 -d 3 -p ack -e 40 -c 0 -i 539 -a 1 -x {21.0 3.0 268 ------- null} h -t 27.132 -s 1 -d 3 -p ack -e 40 -c 0 -i 539 -a 1 -x {21.0 3.0 -1 ------- null} r -t 27.1336 -s 28 -d 1 -p ack -e 40 -c 0 -i 540 -a 1 -x {21.0 3.0 269 ------- null} + -t 27.1336 -s 1 -d 3 -p ack -e 40 -c 0 -i 540 -a 1 -x {21.0 3.0 269 ------- null} - -t 27.1336 -s 1 -d 3 -p ack -e 40 -c 0 -i 540 -a 1 -x {21.0 3.0 269 ------- null} h -t 27.1336 -s 1 -d 3 -p ack -e 40 -c 0 -i 540 -a 1 -x {21.0 3.0 -1 ------- null} r -t 27.1352 -s 28 -d 1 -p ack -e 40 -c 0 -i 541 -a 1 -x {21.0 3.0 270 ------- null} + -t 27.1352 -s 1 -d 3 -p ack -e 40 -c 0 -i 541 -a 1 -x {21.0 3.0 270 ------- null} - -t 27.1352 -s 1 -d 3 -p ack -e 40 -c 0 -i 541 -a 1 -x {21.0 3.0 270 ------- null} h -t 27.1352 -s 1 -d 3 -p ack -e 40 -c 0 -i 541 -a 1 -x {21.0 3.0 -1 ------- null} r -t 27.2449 -s 1 -d 3 -p ack -e 40 -c 0 -i 522 -a 1 -x {21.0 3.0 251 ------- null} + -t 27.2449 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 542 -a 0 -x {3.0 21.0 271 ------- null} - -t 27.2449 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 542 -a 0 -x {3.0 21.0 271 ------- null} h -t 27.2449 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 542 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.2465 -s 1 -d 3 -p ack -e 40 -c 0 -i 523 -a 1 -x {21.0 3.0 252 ------- null} + -t 27.2465 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {3.0 21.0 272 ------- null} - -t 27.2465 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {3.0 21.0 272 ------- null} h -t 27.2465 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.2481 -s 1 -d 3 -p ack -e 40 -c 0 -i 524 -a 1 -x {21.0 3.0 253 ------- null} + -t 27.2481 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 544 -a 0 -x {3.0 21.0 273 ------- null} - -t 27.2481 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 544 -a 0 -x {3.0 21.0 273 ------- null} h -t 27.2481 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 544 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.2497 -s 1 -d 3 -p ack -e 40 -c 0 -i 525 -a 1 -x {21.0 3.0 254 ------- null} + -t 27.2497 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {3.0 21.0 274 ------- null} - -t 27.2497 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {3.0 21.0 274 ------- null} h -t 27.2497 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.2513 -s 1 -d 3 -p ack -e 40 -c 0 -i 526 -a 1 -x {21.0 3.0 255 ------- null} + -t 27.2513 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 546 -a 0 -x {3.0 21.0 275 ------- null} - -t 27.2513 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 546 -a 0 -x {3.0 21.0 275 ------- null} h -t 27.2513 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 546 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.2529 -s 1 -d 3 -p ack -e 40 -c 0 -i 527 -a 1 -x {21.0 3.0 256 ------- null} + -t 27.2529 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {3.0 21.0 276 ------- null} - -t 27.2529 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {3.0 21.0 276 ------- null} h -t 27.2529 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.2545 -s 1 -d 3 -p ack -e 40 -c 0 -i 528 -a 1 -x {21.0 3.0 257 ------- null} + -t 27.2545 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 548 -a 0 -x {3.0 21.0 277 ------- null} - -t 27.2545 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 548 -a 0 -x {3.0 21.0 277 ------- null} h -t 27.2545 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 548 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.2561 -s 1 -d 3 -p ack -e 40 -c 0 -i 529 -a 1 -x {21.0 3.0 258 ------- null} + -t 27.2561 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {3.0 21.0 278 ------- null} - -t 27.2561 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {3.0 21.0 278 ------- null} h -t 27.2561 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.2577 -s 1 -d 3 -p ack -e 40 -c 0 -i 530 -a 1 -x {21.0 3.0 259 ------- null} + -t 27.2577 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 550 -a 0 -x {3.0 21.0 279 ------- null} - -t 27.2577 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 550 -a 0 -x {3.0 21.0 279 ------- null} h -t 27.2577 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 550 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.2593 -s 1 -d 3 -p ack -e 40 -c 0 -i 531 -a 1 -x {21.0 3.0 260 ------- null} + -t 27.2593 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {3.0 21.0 280 ------- null} - -t 27.2593 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {3.0 21.0 280 ------- null} h -t 27.2593 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.2609 -s 1 -d 3 -p ack -e 40 -c 0 -i 532 -a 1 -x {21.0 3.0 261 ------- null} + -t 27.2609 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {3.0 21.0 281 ------- null} - -t 27.2609 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {3.0 21.0 281 ------- null} h -t 27.2609 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.2625 -s 1 -d 3 -p ack -e 40 -c 0 -i 533 -a 1 -x {21.0 3.0 262 ------- null} + -t 27.2625 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {3.0 21.0 282 ------- null} - -t 27.2625 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {3.0 21.0 282 ------- null} h -t 27.2625 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.2641 -s 1 -d 3 -p ack -e 40 -c 0 -i 534 -a 1 -x {21.0 3.0 263 ------- null} + -t 27.2641 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 554 -a 0 -x {3.0 21.0 283 ------- null} - -t 27.2641 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 554 -a 0 -x {3.0 21.0 283 ------- null} h -t 27.2641 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 554 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.2657 -s 1 -d 3 -p ack -e 40 -c 0 -i 535 -a 1 -x {21.0 3.0 264 ------- null} + -t 27.2657 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {3.0 21.0 284 ------- null} - -t 27.2657 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {3.0 21.0 284 ------- null} h -t 27.2657 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.2673 -s 1 -d 3 -p ack -e 40 -c 0 -i 536 -a 1 -x {21.0 3.0 265 ------- null} + -t 27.2673 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 556 -a 0 -x {3.0 21.0 285 ------- null} - -t 27.2673 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 556 -a 0 -x {3.0 21.0 285 ------- null} h -t 27.2673 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 556 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.2689 -s 1 -d 3 -p ack -e 40 -c 0 -i 537 -a 1 -x {21.0 3.0 266 ------- null} + -t 27.2689 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {3.0 21.0 286 ------- null} - -t 27.2689 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {3.0 21.0 286 ------- null} h -t 27.2689 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.2705 -s 1 -d 3 -p ack -e 40 -c 0 -i 538 -a 1 -x {21.0 3.0 267 ------- null} + -t 27.2705 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 558 -a 0 -x {3.0 21.0 287 ------- null} - -t 27.2705 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 558 -a 0 -x {3.0 21.0 287 ------- null} h -t 27.2705 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 558 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.2721 -s 1 -d 3 -p ack -e 40 -c 0 -i 539 -a 1 -x {21.0 3.0 268 ------- null} + -t 27.2721 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {3.0 21.0 288 ------- null} - -t 27.2721 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {3.0 21.0 288 ------- null} h -t 27.2721 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.2737 -s 1 -d 3 -p ack -e 40 -c 0 -i 540 -a 1 -x {21.0 3.0 269 ------- null} + -t 27.2737 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 560 -a 0 -x {3.0 21.0 289 ------- null} - -t 27.2737 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 560 -a 0 -x {3.0 21.0 289 ------- null} h -t 27.2737 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 560 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.2753 -s 1 -d 3 -p ack -e 40 -c 0 -i 541 -a 1 -x {21.0 3.0 270 ------- null} + -t 27.2753 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {3.0 21.0 290 ------- null} - -t 27.2753 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {3.0 21.0 290 ------- null} h -t 27.2753 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.3865 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 542 -a 0 -x {3.0 21.0 271 ------- null} + -t 27.3865 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 542 -a 0 -x {3.0 21.0 271 ------- null} - -t 27.3865 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 542 -a 0 -x {3.0 21.0 271 ------- null} h -t 27.3865 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 542 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.3881 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {3.0 21.0 272 ------- null} + -t 27.3881 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {3.0 21.0 272 ------- null} - -t 27.3881 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {3.0 21.0 272 ------- null} h -t 27.3881 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.3897 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 544 -a 0 -x {3.0 21.0 273 ------- null} + -t 27.3897 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 544 -a 0 -x {3.0 21.0 273 ------- null} - -t 27.3897 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 544 -a 0 -x {3.0 21.0 273 ------- null} h -t 27.3897 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 544 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.3913 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {3.0 21.0 274 ------- null} + -t 27.3913 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {3.0 21.0 274 ------- null} - -t 27.3913 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {3.0 21.0 274 ------- null} h -t 27.3913 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.3929 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 546 -a 0 -x {3.0 21.0 275 ------- null} + -t 27.3929 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 546 -a 0 -x {3.0 21.0 275 ------- null} - -t 27.3929 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 546 -a 0 -x {3.0 21.0 275 ------- null} h -t 27.3929 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 546 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.3945 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {3.0 21.0 276 ------- null} + -t 27.3945 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {3.0 21.0 276 ------- null} - -t 27.3945 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {3.0 21.0 276 ------- null} h -t 27.3945 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.3961 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 548 -a 0 -x {3.0 21.0 277 ------- null} + -t 27.3961 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 548 -a 0 -x {3.0 21.0 277 ------- null} - -t 27.3961 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 548 -a 0 -x {3.0 21.0 277 ------- null} h -t 27.3961 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 548 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.3977 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {3.0 21.0 278 ------- null} + -t 27.3977 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {3.0 21.0 278 ------- null} - -t 27.3977 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {3.0 21.0 278 ------- null} h -t 27.3977 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.3993 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 550 -a 0 -x {3.0 21.0 279 ------- null} + -t 27.3993 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 550 -a 0 -x {3.0 21.0 279 ------- null} - -t 27.3993 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 550 -a 0 -x {3.0 21.0 279 ------- null} h -t 27.3993 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 550 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.4009 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {3.0 21.0 280 ------- null} + -t 27.4009 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {3.0 21.0 280 ------- null} - -t 27.4009 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {3.0 21.0 280 ------- null} h -t 27.4009 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.4025 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {3.0 21.0 281 ------- null} + -t 27.4025 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {3.0 21.0 281 ------- null} - -t 27.4025 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {3.0 21.0 281 ------- null} h -t 27.4025 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.4041 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {3.0 21.0 282 ------- null} + -t 27.4041 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {3.0 21.0 282 ------- null} - -t 27.4041 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {3.0 21.0 282 ------- null} h -t 27.4041 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.4057 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 554 -a 0 -x {3.0 21.0 283 ------- null} + -t 27.4057 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 554 -a 0 -x {3.0 21.0 283 ------- null} - -t 27.4057 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 554 -a 0 -x {3.0 21.0 283 ------- null} h -t 27.4057 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 554 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.4073 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {3.0 21.0 284 ------- null} + -t 27.4073 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {3.0 21.0 284 ------- null} - -t 27.4073 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {3.0 21.0 284 ------- null} h -t 27.4073 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.4089 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 556 -a 0 -x {3.0 21.0 285 ------- null} + -t 27.4089 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 556 -a 0 -x {3.0 21.0 285 ------- null} - -t 27.4089 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 556 -a 0 -x {3.0 21.0 285 ------- null} h -t 27.4089 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 556 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.4105 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {3.0 21.0 286 ------- null} + -t 27.4105 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {3.0 21.0 286 ------- null} - -t 27.4105 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {3.0 21.0 286 ------- null} h -t 27.4105 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.4121 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 558 -a 0 -x {3.0 21.0 287 ------- null} + -t 27.4121 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 558 -a 0 -x {3.0 21.0 287 ------- null} - -t 27.4121 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 558 -a 0 -x {3.0 21.0 287 ------- null} h -t 27.4121 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 558 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.4137 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {3.0 21.0 288 ------- null} + -t 27.4137 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {3.0 21.0 288 ------- null} - -t 27.4137 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {3.0 21.0 288 ------- null} h -t 27.4137 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.4153 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 560 -a 0 -x {3.0 21.0 289 ------- null} + -t 27.4153 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 560 -a 0 -x {3.0 21.0 289 ------- null} - -t 27.4153 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 560 -a 0 -x {3.0 21.0 289 ------- null} h -t 27.4153 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 560 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.4169 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {3.0 21.0 290 ------- null} + -t 27.4169 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {3.0 21.0 290 ------- null} - -t 27.4169 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {3.0 21.0 290 ------- null} h -t 27.4169 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.6881 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 542 -a 0 -x {3.0 21.0 271 ------- null} + -t 27.6881 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 542 -a 0 -x {3.0 21.0 271 ------- null} - -t 27.6881 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 542 -a 0 -x {3.0 21.0 271 ------- null} h -t 27.6881 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 542 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.6897 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {3.0 21.0 272 ------- null} + -t 27.6897 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {3.0 21.0 272 ------- null} - -t 27.6897 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {3.0 21.0 272 ------- null} h -t 27.6897 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.6913 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 544 -a 0 -x {3.0 21.0 273 ------- null} + -t 27.6913 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 544 -a 0 -x {3.0 21.0 273 ------- null} - -t 27.6913 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 544 -a 0 -x {3.0 21.0 273 ------- null} h -t 27.6913 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 544 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.6929 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {3.0 21.0 274 ------- null} + -t 27.6929 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {3.0 21.0 274 ------- null} - -t 27.6929 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {3.0 21.0 274 ------- null} h -t 27.6929 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.6945 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 546 -a 0 -x {3.0 21.0 275 ------- null} + -t 27.6945 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 546 -a 0 -x {3.0 21.0 275 ------- null} - -t 27.6945 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 546 -a 0 -x {3.0 21.0 275 ------- null} h -t 27.6945 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 546 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.6961 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {3.0 21.0 276 ------- null} + -t 27.6961 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {3.0 21.0 276 ------- null} - -t 27.6961 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {3.0 21.0 276 ------- null} h -t 27.6961 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.6977 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 548 -a 0 -x {3.0 21.0 277 ------- null} + -t 27.6977 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 548 -a 0 -x {3.0 21.0 277 ------- null} - -t 27.6977 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 548 -a 0 -x {3.0 21.0 277 ------- null} h -t 27.6977 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 548 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.6993 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {3.0 21.0 278 ------- null} + -t 27.6993 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {3.0 21.0 278 ------- null} - -t 27.6993 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {3.0 21.0 278 ------- null} h -t 27.6993 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.7009 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 550 -a 0 -x {3.0 21.0 279 ------- null} + -t 27.7009 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 550 -a 0 -x {3.0 21.0 279 ------- null} - -t 27.7009 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 550 -a 0 -x {3.0 21.0 279 ------- null} h -t 27.7009 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 550 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.7025 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {3.0 21.0 280 ------- null} + -t 27.7025 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {3.0 21.0 280 ------- null} - -t 27.7025 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {3.0 21.0 280 ------- null} h -t 27.7025 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.7041 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {3.0 21.0 281 ------- null} + -t 27.7041 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {3.0 21.0 281 ------- null} - -t 27.7041 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {3.0 21.0 281 ------- null} h -t 27.7041 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.7057 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {3.0 21.0 282 ------- null} + -t 27.7057 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {3.0 21.0 282 ------- null} - -t 27.7057 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {3.0 21.0 282 ------- null} h -t 27.7057 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.7073 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 554 -a 0 -x {3.0 21.0 283 ------- null} + -t 27.7073 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 554 -a 0 -x {3.0 21.0 283 ------- null} - -t 27.7073 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 554 -a 0 -x {3.0 21.0 283 ------- null} h -t 27.7073 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 554 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.7089 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {3.0 21.0 284 ------- null} + -t 27.7089 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {3.0 21.0 284 ------- null} - -t 27.7089 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {3.0 21.0 284 ------- null} h -t 27.7089 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.7105 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 556 -a 0 -x {3.0 21.0 285 ------- null} + -t 27.7105 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 556 -a 0 -x {3.0 21.0 285 ------- null} - -t 27.7105 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 556 -a 0 -x {3.0 21.0 285 ------- null} h -t 27.7105 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 556 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.7121 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {3.0 21.0 286 ------- null} + -t 27.7121 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {3.0 21.0 286 ------- null} - -t 27.7121 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {3.0 21.0 286 ------- null} h -t 27.7121 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.7137 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 558 -a 0 -x {3.0 21.0 287 ------- null} + -t 27.7137 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 558 -a 0 -x {3.0 21.0 287 ------- null} - -t 27.7137 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 558 -a 0 -x {3.0 21.0 287 ------- null} h -t 27.7137 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 558 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.7153 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {3.0 21.0 288 ------- null} + -t 27.7153 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {3.0 21.0 288 ------- null} - -t 27.7153 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {3.0 21.0 288 ------- null} h -t 27.7153 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.7169 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 560 -a 0 -x {3.0 21.0 289 ------- null} + -t 27.7169 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 560 -a 0 -x {3.0 21.0 289 ------- null} - -t 27.7169 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 560 -a 0 -x {3.0 21.0 289 ------- null} h -t 27.7169 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 560 -a 0 -x {3.0 21.0 -1 ------- null} r -t 27.7185 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {3.0 21.0 290 ------- null} + -t 27.7185 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {3.0 21.0 290 ------- null} - -t 27.7185 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {3.0 21.0 290 ------- null} h -t 27.7185 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.0397 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 542 -a 0 -x {3.0 21.0 271 ------- null} + -t 28.0397 -s 21 -d 28 -p ack -e 40 -c 0 -i 562 -a 1 -x {21.0 3.0 271 ------- null} - -t 28.0397 -s 21 -d 28 -p ack -e 40 -c 0 -i 562 -a 1 -x {21.0 3.0 271 ------- null} h -t 28.0397 -s 21 -d 28 -p ack -e 40 -c 0 -i 562 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.0413 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {3.0 21.0 272 ------- null} + -t 28.0413 -s 21 -d 28 -p ack -e 40 -c 0 -i 563 -a 1 -x {21.0 3.0 272 ------- null} - -t 28.0413 -s 21 -d 28 -p ack -e 40 -c 0 -i 563 -a 1 -x {21.0 3.0 272 ------- null} h -t 28.0413 -s 21 -d 28 -p ack -e 40 -c 0 -i 563 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.0429 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 544 -a 0 -x {3.0 21.0 273 ------- null} + -t 28.0429 -s 21 -d 28 -p ack -e 40 -c 0 -i 564 -a 1 -x {21.0 3.0 273 ------- null} - -t 28.0429 -s 21 -d 28 -p ack -e 40 -c 0 -i 564 -a 1 -x {21.0 3.0 273 ------- null} h -t 28.0429 -s 21 -d 28 -p ack -e 40 -c 0 -i 564 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.0445 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {3.0 21.0 274 ------- null} + -t 28.0445 -s 21 -d 28 -p ack -e 40 -c 0 -i 565 -a 1 -x {21.0 3.0 274 ------- null} - -t 28.0445 -s 21 -d 28 -p ack -e 40 -c 0 -i 565 -a 1 -x {21.0 3.0 274 ------- null} h -t 28.0445 -s 21 -d 28 -p ack -e 40 -c 0 -i 565 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.0461 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 546 -a 0 -x {3.0 21.0 275 ------- null} + -t 28.0461 -s 21 -d 28 -p ack -e 40 -c 0 -i 566 -a 1 -x {21.0 3.0 275 ------- null} - -t 28.0461 -s 21 -d 28 -p ack -e 40 -c 0 -i 566 -a 1 -x {21.0 3.0 275 ------- null} h -t 28.0461 -s 21 -d 28 -p ack -e 40 -c 0 -i 566 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.0477 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {3.0 21.0 276 ------- null} + -t 28.0477 -s 21 -d 28 -p ack -e 40 -c 0 -i 567 -a 1 -x {21.0 3.0 276 ------- null} - -t 28.0477 -s 21 -d 28 -p ack -e 40 -c 0 -i 567 -a 1 -x {21.0 3.0 276 ------- null} h -t 28.0477 -s 21 -d 28 -p ack -e 40 -c 0 -i 567 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.0493 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 548 -a 0 -x {3.0 21.0 277 ------- null} + -t 28.0493 -s 21 -d 28 -p ack -e 40 -c 0 -i 568 -a 1 -x {21.0 3.0 277 ------- null} - -t 28.0493 -s 21 -d 28 -p ack -e 40 -c 0 -i 568 -a 1 -x {21.0 3.0 277 ------- null} h -t 28.0493 -s 21 -d 28 -p ack -e 40 -c 0 -i 568 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.0509 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {3.0 21.0 278 ------- null} + -t 28.0509 -s 21 -d 28 -p ack -e 40 -c 0 -i 569 -a 1 -x {21.0 3.0 278 ------- null} - -t 28.0509 -s 21 -d 28 -p ack -e 40 -c 0 -i 569 -a 1 -x {21.0 3.0 278 ------- null} h -t 28.0509 -s 21 -d 28 -p ack -e 40 -c 0 -i 569 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.0525 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 550 -a 0 -x {3.0 21.0 279 ------- null} + -t 28.0525 -s 21 -d 28 -p ack -e 40 -c 0 -i 570 -a 1 -x {21.0 3.0 279 ------- null} - -t 28.0525 -s 21 -d 28 -p ack -e 40 -c 0 -i 570 -a 1 -x {21.0 3.0 279 ------- null} h -t 28.0525 -s 21 -d 28 -p ack -e 40 -c 0 -i 570 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.0541 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {3.0 21.0 280 ------- null} + -t 28.0541 -s 21 -d 28 -p ack -e 40 -c 0 -i 571 -a 1 -x {21.0 3.0 280 ------- null} - -t 28.0541 -s 21 -d 28 -p ack -e 40 -c 0 -i 571 -a 1 -x {21.0 3.0 280 ------- null} h -t 28.0541 -s 21 -d 28 -p ack -e 40 -c 0 -i 571 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.0557 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {3.0 21.0 281 ------- null} + -t 28.0557 -s 21 -d 28 -p ack -e 40 -c 0 -i 572 -a 1 -x {21.0 3.0 281 ------- null} - -t 28.0557 -s 21 -d 28 -p ack -e 40 -c 0 -i 572 -a 1 -x {21.0 3.0 281 ------- null} h -t 28.0557 -s 21 -d 28 -p ack -e 40 -c 0 -i 572 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.0573 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {3.0 21.0 282 ------- null} + -t 28.0573 -s 21 -d 28 -p ack -e 40 -c 0 -i 573 -a 1 -x {21.0 3.0 282 ------- null} - -t 28.0573 -s 21 -d 28 -p ack -e 40 -c 0 -i 573 -a 1 -x {21.0 3.0 282 ------- null} h -t 28.0573 -s 21 -d 28 -p ack -e 40 -c 0 -i 573 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.0589 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 554 -a 0 -x {3.0 21.0 283 ------- null} + -t 28.0589 -s 21 -d 28 -p ack -e 40 -c 0 -i 574 -a 1 -x {21.0 3.0 283 ------- null} - -t 28.0589 -s 21 -d 28 -p ack -e 40 -c 0 -i 574 -a 1 -x {21.0 3.0 283 ------- null} h -t 28.0589 -s 21 -d 28 -p ack -e 40 -c 0 -i 574 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.0605 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {3.0 21.0 284 ------- null} + -t 28.0605 -s 21 -d 28 -p ack -e 40 -c 0 -i 575 -a 1 -x {21.0 3.0 284 ------- null} - -t 28.0605 -s 21 -d 28 -p ack -e 40 -c 0 -i 575 -a 1 -x {21.0 3.0 284 ------- null} h -t 28.0605 -s 21 -d 28 -p ack -e 40 -c 0 -i 575 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.0621 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 556 -a 0 -x {3.0 21.0 285 ------- null} + -t 28.0621 -s 21 -d 28 -p ack -e 40 -c 0 -i 576 -a 1 -x {21.0 3.0 285 ------- null} - -t 28.0621 -s 21 -d 28 -p ack -e 40 -c 0 -i 576 -a 1 -x {21.0 3.0 285 ------- null} h -t 28.0621 -s 21 -d 28 -p ack -e 40 -c 0 -i 576 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.0637 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {3.0 21.0 286 ------- null} + -t 28.0637 -s 21 -d 28 -p ack -e 40 -c 0 -i 577 -a 1 -x {21.0 3.0 286 ------- null} - -t 28.0637 -s 21 -d 28 -p ack -e 40 -c 0 -i 577 -a 1 -x {21.0 3.0 286 ------- null} h -t 28.0637 -s 21 -d 28 -p ack -e 40 -c 0 -i 577 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.0653 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 558 -a 0 -x {3.0 21.0 287 ------- null} + -t 28.0653 -s 21 -d 28 -p ack -e 40 -c 0 -i 578 -a 1 -x {21.0 3.0 287 ------- null} - -t 28.0653 -s 21 -d 28 -p ack -e 40 -c 0 -i 578 -a 1 -x {21.0 3.0 287 ------- null} h -t 28.0653 -s 21 -d 28 -p ack -e 40 -c 0 -i 578 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.0669 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {3.0 21.0 288 ------- null} + -t 28.0669 -s 21 -d 28 -p ack -e 40 -c 0 -i 579 -a 1 -x {21.0 3.0 288 ------- null} - -t 28.0669 -s 21 -d 28 -p ack -e 40 -c 0 -i 579 -a 1 -x {21.0 3.0 288 ------- null} h -t 28.0669 -s 21 -d 28 -p ack -e 40 -c 0 -i 579 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.0685 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 560 -a 0 -x {3.0 21.0 289 ------- null} + -t 28.0685 -s 21 -d 28 -p ack -e 40 -c 0 -i 580 -a 1 -x {21.0 3.0 289 ------- null} - -t 28.0685 -s 21 -d 28 -p ack -e 40 -c 0 -i 580 -a 1 -x {21.0 3.0 289 ------- null} h -t 28.0685 -s 21 -d 28 -p ack -e 40 -c 0 -i 580 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.0701 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {3.0 21.0 290 ------- null} + -t 28.0701 -s 21 -d 28 -p ack -e 40 -c 0 -i 581 -a 1 -x {21.0 3.0 290 ------- null} - -t 28.0701 -s 21 -d 28 -p ack -e 40 -c 0 -i 581 -a 1 -x {21.0 3.0 290 ------- null} h -t 28.0701 -s 21 -d 28 -p ack -e 40 -c 0 -i 581 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.3897 -s 21 -d 28 -p ack -e 40 -c 0 -i 562 -a 1 -x {21.0 3.0 271 ------- null} + -t 28.3897 -s 28 -d 1 -p ack -e 40 -c 0 -i 562 -a 1 -x {21.0 3.0 271 ------- null} - -t 28.3897 -s 28 -d 1 -p ack -e 40 -c 0 -i 562 -a 1 -x {21.0 3.0 271 ------- null} h -t 28.3897 -s 28 -d 1 -p ack -e 40 -c 0 -i 562 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.3913 -s 21 -d 28 -p ack -e 40 -c 0 -i 563 -a 1 -x {21.0 3.0 272 ------- null} + -t 28.3913 -s 28 -d 1 -p ack -e 40 -c 0 -i 563 -a 1 -x {21.0 3.0 272 ------- null} - -t 28.3913 -s 28 -d 1 -p ack -e 40 -c 0 -i 563 -a 1 -x {21.0 3.0 272 ------- null} h -t 28.3913 -s 28 -d 1 -p ack -e 40 -c 0 -i 563 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.3929 -s 21 -d 28 -p ack -e 40 -c 0 -i 564 -a 1 -x {21.0 3.0 273 ------- null} + -t 28.3929 -s 28 -d 1 -p ack -e 40 -c 0 -i 564 -a 1 -x {21.0 3.0 273 ------- null} - -t 28.3929 -s 28 -d 1 -p ack -e 40 -c 0 -i 564 -a 1 -x {21.0 3.0 273 ------- null} h -t 28.3929 -s 28 -d 1 -p ack -e 40 -c 0 -i 564 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.3945 -s 21 -d 28 -p ack -e 40 -c 0 -i 565 -a 1 -x {21.0 3.0 274 ------- null} + -t 28.3945 -s 28 -d 1 -p ack -e 40 -c 0 -i 565 -a 1 -x {21.0 3.0 274 ------- null} - -t 28.3945 -s 28 -d 1 -p ack -e 40 -c 0 -i 565 -a 1 -x {21.0 3.0 274 ------- null} h -t 28.3945 -s 28 -d 1 -p ack -e 40 -c 0 -i 565 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.3961 -s 21 -d 28 -p ack -e 40 -c 0 -i 566 -a 1 -x {21.0 3.0 275 ------- null} + -t 28.3961 -s 28 -d 1 -p ack -e 40 -c 0 -i 566 -a 1 -x {21.0 3.0 275 ------- null} - -t 28.3961 -s 28 -d 1 -p ack -e 40 -c 0 -i 566 -a 1 -x {21.0 3.0 275 ------- null} h -t 28.3961 -s 28 -d 1 -p ack -e 40 -c 0 -i 566 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.3977 -s 21 -d 28 -p ack -e 40 -c 0 -i 567 -a 1 -x {21.0 3.0 276 ------- null} + -t 28.3977 -s 28 -d 1 -p ack -e 40 -c 0 -i 567 -a 1 -x {21.0 3.0 276 ------- null} - -t 28.3977 -s 28 -d 1 -p ack -e 40 -c 0 -i 567 -a 1 -x {21.0 3.0 276 ------- null} h -t 28.3977 -s 28 -d 1 -p ack -e 40 -c 0 -i 567 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.3993 -s 21 -d 28 -p ack -e 40 -c 0 -i 568 -a 1 -x {21.0 3.0 277 ------- null} + -t 28.3993 -s 28 -d 1 -p ack -e 40 -c 0 -i 568 -a 1 -x {21.0 3.0 277 ------- null} - -t 28.3993 -s 28 -d 1 -p ack -e 40 -c 0 -i 568 -a 1 -x {21.0 3.0 277 ------- null} h -t 28.3993 -s 28 -d 1 -p ack -e 40 -c 0 -i 568 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.4009 -s 21 -d 28 -p ack -e 40 -c 0 -i 569 -a 1 -x {21.0 3.0 278 ------- null} + -t 28.4009 -s 28 -d 1 -p ack -e 40 -c 0 -i 569 -a 1 -x {21.0 3.0 278 ------- null} - -t 28.4009 -s 28 -d 1 -p ack -e 40 -c 0 -i 569 -a 1 -x {21.0 3.0 278 ------- null} h -t 28.4009 -s 28 -d 1 -p ack -e 40 -c 0 -i 569 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.4025 -s 21 -d 28 -p ack -e 40 -c 0 -i 570 -a 1 -x {21.0 3.0 279 ------- null} + -t 28.4025 -s 28 -d 1 -p ack -e 40 -c 0 -i 570 -a 1 -x {21.0 3.0 279 ------- null} - -t 28.4025 -s 28 -d 1 -p ack -e 40 -c 0 -i 570 -a 1 -x {21.0 3.0 279 ------- null} h -t 28.4025 -s 28 -d 1 -p ack -e 40 -c 0 -i 570 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.4041 -s 21 -d 28 -p ack -e 40 -c 0 -i 571 -a 1 -x {21.0 3.0 280 ------- null} + -t 28.4041 -s 28 -d 1 -p ack -e 40 -c 0 -i 571 -a 1 -x {21.0 3.0 280 ------- null} - -t 28.4041 -s 28 -d 1 -p ack -e 40 -c 0 -i 571 -a 1 -x {21.0 3.0 280 ------- null} h -t 28.4041 -s 28 -d 1 -p ack -e 40 -c 0 -i 571 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.4057 -s 21 -d 28 -p ack -e 40 -c 0 -i 572 -a 1 -x {21.0 3.0 281 ------- null} + -t 28.4057 -s 28 -d 1 -p ack -e 40 -c 0 -i 572 -a 1 -x {21.0 3.0 281 ------- null} - -t 28.4057 -s 28 -d 1 -p ack -e 40 -c 0 -i 572 -a 1 -x {21.0 3.0 281 ------- null} h -t 28.4057 -s 28 -d 1 -p ack -e 40 -c 0 -i 572 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.4073 -s 21 -d 28 -p ack -e 40 -c 0 -i 573 -a 1 -x {21.0 3.0 282 ------- null} + -t 28.4073 -s 28 -d 1 -p ack -e 40 -c 0 -i 573 -a 1 -x {21.0 3.0 282 ------- null} - -t 28.4073 -s 28 -d 1 -p ack -e 40 -c 0 -i 573 -a 1 -x {21.0 3.0 282 ------- null} h -t 28.4073 -s 28 -d 1 -p ack -e 40 -c 0 -i 573 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.4089 -s 21 -d 28 -p ack -e 40 -c 0 -i 574 -a 1 -x {21.0 3.0 283 ------- null} + -t 28.4089 -s 28 -d 1 -p ack -e 40 -c 0 -i 574 -a 1 -x {21.0 3.0 283 ------- null} - -t 28.4089 -s 28 -d 1 -p ack -e 40 -c 0 -i 574 -a 1 -x {21.0 3.0 283 ------- null} h -t 28.4089 -s 28 -d 1 -p ack -e 40 -c 0 -i 574 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.4105 -s 21 -d 28 -p ack -e 40 -c 0 -i 575 -a 1 -x {21.0 3.0 284 ------- null} + -t 28.4105 -s 28 -d 1 -p ack -e 40 -c 0 -i 575 -a 1 -x {21.0 3.0 284 ------- null} - -t 28.4105 -s 28 -d 1 -p ack -e 40 -c 0 -i 575 -a 1 -x {21.0 3.0 284 ------- null} h -t 28.4105 -s 28 -d 1 -p ack -e 40 -c 0 -i 575 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.4121 -s 21 -d 28 -p ack -e 40 -c 0 -i 576 -a 1 -x {21.0 3.0 285 ------- null} + -t 28.4121 -s 28 -d 1 -p ack -e 40 -c 0 -i 576 -a 1 -x {21.0 3.0 285 ------- null} - -t 28.4121 -s 28 -d 1 -p ack -e 40 -c 0 -i 576 -a 1 -x {21.0 3.0 285 ------- null} h -t 28.4121 -s 28 -d 1 -p ack -e 40 -c 0 -i 576 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.4137 -s 21 -d 28 -p ack -e 40 -c 0 -i 577 -a 1 -x {21.0 3.0 286 ------- null} + -t 28.4137 -s 28 -d 1 -p ack -e 40 -c 0 -i 577 -a 1 -x {21.0 3.0 286 ------- null} - -t 28.4137 -s 28 -d 1 -p ack -e 40 -c 0 -i 577 -a 1 -x {21.0 3.0 286 ------- null} h -t 28.4137 -s 28 -d 1 -p ack -e 40 -c 0 -i 577 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.4153 -s 21 -d 28 -p ack -e 40 -c 0 -i 578 -a 1 -x {21.0 3.0 287 ------- null} + -t 28.4153 -s 28 -d 1 -p ack -e 40 -c 0 -i 578 -a 1 -x {21.0 3.0 287 ------- null} - -t 28.4153 -s 28 -d 1 -p ack -e 40 -c 0 -i 578 -a 1 -x {21.0 3.0 287 ------- null} h -t 28.4153 -s 28 -d 1 -p ack -e 40 -c 0 -i 578 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.4169 -s 21 -d 28 -p ack -e 40 -c 0 -i 579 -a 1 -x {21.0 3.0 288 ------- null} + -t 28.4169 -s 28 -d 1 -p ack -e 40 -c 0 -i 579 -a 1 -x {21.0 3.0 288 ------- null} - -t 28.4169 -s 28 -d 1 -p ack -e 40 -c 0 -i 579 -a 1 -x {21.0 3.0 288 ------- null} h -t 28.4169 -s 28 -d 1 -p ack -e 40 -c 0 -i 579 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.4185 -s 21 -d 28 -p ack -e 40 -c 0 -i 580 -a 1 -x {21.0 3.0 289 ------- null} + -t 28.4185 -s 28 -d 1 -p ack -e 40 -c 0 -i 580 -a 1 -x {21.0 3.0 289 ------- null} - -t 28.4185 -s 28 -d 1 -p ack -e 40 -c 0 -i 580 -a 1 -x {21.0 3.0 289 ------- null} h -t 28.4185 -s 28 -d 1 -p ack -e 40 -c 0 -i 580 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.4201 -s 21 -d 28 -p ack -e 40 -c 0 -i 581 -a 1 -x {21.0 3.0 290 ------- null} + -t 28.4201 -s 28 -d 1 -p ack -e 40 -c 0 -i 581 -a 1 -x {21.0 3.0 290 ------- null} - -t 28.4201 -s 28 -d 1 -p ack -e 40 -c 0 -i 581 -a 1 -x {21.0 3.0 290 ------- null} h -t 28.4201 -s 28 -d 1 -p ack -e 40 -c 0 -i 581 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.6898 -s 28 -d 1 -p ack -e 40 -c 0 -i 562 -a 1 -x {21.0 3.0 271 ------- null} + -t 28.6898 -s 1 -d 3 -p ack -e 40 -c 0 -i 562 -a 1 -x {21.0 3.0 271 ------- null} - -t 28.6898 -s 1 -d 3 -p ack -e 40 -c 0 -i 562 -a 1 -x {21.0 3.0 271 ------- null} h -t 28.6898 -s 1 -d 3 -p ack -e 40 -c 0 -i 562 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.6914 -s 28 -d 1 -p ack -e 40 -c 0 -i 563 -a 1 -x {21.0 3.0 272 ------- null} + -t 28.6914 -s 1 -d 3 -p ack -e 40 -c 0 -i 563 -a 1 -x {21.0 3.0 272 ------- null} - -t 28.6914 -s 1 -d 3 -p ack -e 40 -c 0 -i 563 -a 1 -x {21.0 3.0 272 ------- null} h -t 28.6914 -s 1 -d 3 -p ack -e 40 -c 0 -i 563 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.693 -s 28 -d 1 -p ack -e 40 -c 0 -i 564 -a 1 -x {21.0 3.0 273 ------- null} + -t 28.693 -s 1 -d 3 -p ack -e 40 -c 0 -i 564 -a 1 -x {21.0 3.0 273 ------- null} - -t 28.693 -s 1 -d 3 -p ack -e 40 -c 0 -i 564 -a 1 -x {21.0 3.0 273 ------- null} h -t 28.693 -s 1 -d 3 -p ack -e 40 -c 0 -i 564 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.6946 -s 28 -d 1 -p ack -e 40 -c 0 -i 565 -a 1 -x {21.0 3.0 274 ------- null} + -t 28.6946 -s 1 -d 3 -p ack -e 40 -c 0 -i 565 -a 1 -x {21.0 3.0 274 ------- null} - -t 28.6946 -s 1 -d 3 -p ack -e 40 -c 0 -i 565 -a 1 -x {21.0 3.0 274 ------- null} h -t 28.6946 -s 1 -d 3 -p ack -e 40 -c 0 -i 565 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.6962 -s 28 -d 1 -p ack -e 40 -c 0 -i 566 -a 1 -x {21.0 3.0 275 ------- null} + -t 28.6962 -s 1 -d 3 -p ack -e 40 -c 0 -i 566 -a 1 -x {21.0 3.0 275 ------- null} - -t 28.6962 -s 1 -d 3 -p ack -e 40 -c 0 -i 566 -a 1 -x {21.0 3.0 275 ------- null} h -t 28.6962 -s 1 -d 3 -p ack -e 40 -c 0 -i 566 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.6978 -s 28 -d 1 -p ack -e 40 -c 0 -i 567 -a 1 -x {21.0 3.0 276 ------- null} + -t 28.6978 -s 1 -d 3 -p ack -e 40 -c 0 -i 567 -a 1 -x {21.0 3.0 276 ------- null} - -t 28.6978 -s 1 -d 3 -p ack -e 40 -c 0 -i 567 -a 1 -x {21.0 3.0 276 ------- null} h -t 28.6978 -s 1 -d 3 -p ack -e 40 -c 0 -i 567 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.6994 -s 28 -d 1 -p ack -e 40 -c 0 -i 568 -a 1 -x {21.0 3.0 277 ------- null} + -t 28.6994 -s 1 -d 3 -p ack -e 40 -c 0 -i 568 -a 1 -x {21.0 3.0 277 ------- null} - -t 28.6994 -s 1 -d 3 -p ack -e 40 -c 0 -i 568 -a 1 -x {21.0 3.0 277 ------- null} h -t 28.6994 -s 1 -d 3 -p ack -e 40 -c 0 -i 568 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.701 -s 28 -d 1 -p ack -e 40 -c 0 -i 569 -a 1 -x {21.0 3.0 278 ------- null} + -t 28.701 -s 1 -d 3 -p ack -e 40 -c 0 -i 569 -a 1 -x {21.0 3.0 278 ------- null} - -t 28.701 -s 1 -d 3 -p ack -e 40 -c 0 -i 569 -a 1 -x {21.0 3.0 278 ------- null} h -t 28.701 -s 1 -d 3 -p ack -e 40 -c 0 -i 569 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.7026 -s 28 -d 1 -p ack -e 40 -c 0 -i 570 -a 1 -x {21.0 3.0 279 ------- null} + -t 28.7026 -s 1 -d 3 -p ack -e 40 -c 0 -i 570 -a 1 -x {21.0 3.0 279 ------- null} - -t 28.7026 -s 1 -d 3 -p ack -e 40 -c 0 -i 570 -a 1 -x {21.0 3.0 279 ------- null} h -t 28.7026 -s 1 -d 3 -p ack -e 40 -c 0 -i 570 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.7042 -s 28 -d 1 -p ack -e 40 -c 0 -i 571 -a 1 -x {21.0 3.0 280 ------- null} + -t 28.7042 -s 1 -d 3 -p ack -e 40 -c 0 -i 571 -a 1 -x {21.0 3.0 280 ------- null} - -t 28.7042 -s 1 -d 3 -p ack -e 40 -c 0 -i 571 -a 1 -x {21.0 3.0 280 ------- null} h -t 28.7042 -s 1 -d 3 -p ack -e 40 -c 0 -i 571 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.7058 -s 28 -d 1 -p ack -e 40 -c 0 -i 572 -a 1 -x {21.0 3.0 281 ------- null} + -t 28.7058 -s 1 -d 3 -p ack -e 40 -c 0 -i 572 -a 1 -x {21.0 3.0 281 ------- null} - -t 28.7058 -s 1 -d 3 -p ack -e 40 -c 0 -i 572 -a 1 -x {21.0 3.0 281 ------- null} h -t 28.7058 -s 1 -d 3 -p ack -e 40 -c 0 -i 572 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.7074 -s 28 -d 1 -p ack -e 40 -c 0 -i 573 -a 1 -x {21.0 3.0 282 ------- null} + -t 28.7074 -s 1 -d 3 -p ack -e 40 -c 0 -i 573 -a 1 -x {21.0 3.0 282 ------- null} - -t 28.7074 -s 1 -d 3 -p ack -e 40 -c 0 -i 573 -a 1 -x {21.0 3.0 282 ------- null} h -t 28.7074 -s 1 -d 3 -p ack -e 40 -c 0 -i 573 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.709 -s 28 -d 1 -p ack -e 40 -c 0 -i 574 -a 1 -x {21.0 3.0 283 ------- null} + -t 28.709 -s 1 -d 3 -p ack -e 40 -c 0 -i 574 -a 1 -x {21.0 3.0 283 ------- null} - -t 28.709 -s 1 -d 3 -p ack -e 40 -c 0 -i 574 -a 1 -x {21.0 3.0 283 ------- null} h -t 28.709 -s 1 -d 3 -p ack -e 40 -c 0 -i 574 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.7106 -s 28 -d 1 -p ack -e 40 -c 0 -i 575 -a 1 -x {21.0 3.0 284 ------- null} + -t 28.7106 -s 1 -d 3 -p ack -e 40 -c 0 -i 575 -a 1 -x {21.0 3.0 284 ------- null} - -t 28.7106 -s 1 -d 3 -p ack -e 40 -c 0 -i 575 -a 1 -x {21.0 3.0 284 ------- null} h -t 28.7106 -s 1 -d 3 -p ack -e 40 -c 0 -i 575 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.7122 -s 28 -d 1 -p ack -e 40 -c 0 -i 576 -a 1 -x {21.0 3.0 285 ------- null} + -t 28.7122 -s 1 -d 3 -p ack -e 40 -c 0 -i 576 -a 1 -x {21.0 3.0 285 ------- null} - -t 28.7122 -s 1 -d 3 -p ack -e 40 -c 0 -i 576 -a 1 -x {21.0 3.0 285 ------- null} h -t 28.7122 -s 1 -d 3 -p ack -e 40 -c 0 -i 576 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.7138 -s 28 -d 1 -p ack -e 40 -c 0 -i 577 -a 1 -x {21.0 3.0 286 ------- null} + -t 28.7138 -s 1 -d 3 -p ack -e 40 -c 0 -i 577 -a 1 -x {21.0 3.0 286 ------- null} - -t 28.7138 -s 1 -d 3 -p ack -e 40 -c 0 -i 577 -a 1 -x {21.0 3.0 286 ------- null} h -t 28.7138 -s 1 -d 3 -p ack -e 40 -c 0 -i 577 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.7154 -s 28 -d 1 -p ack -e 40 -c 0 -i 578 -a 1 -x {21.0 3.0 287 ------- null} + -t 28.7154 -s 1 -d 3 -p ack -e 40 -c 0 -i 578 -a 1 -x {21.0 3.0 287 ------- null} - -t 28.7154 -s 1 -d 3 -p ack -e 40 -c 0 -i 578 -a 1 -x {21.0 3.0 287 ------- null} h -t 28.7154 -s 1 -d 3 -p ack -e 40 -c 0 -i 578 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.717 -s 28 -d 1 -p ack -e 40 -c 0 -i 579 -a 1 -x {21.0 3.0 288 ------- null} + -t 28.717 -s 1 -d 3 -p ack -e 40 -c 0 -i 579 -a 1 -x {21.0 3.0 288 ------- null} - -t 28.717 -s 1 -d 3 -p ack -e 40 -c 0 -i 579 -a 1 -x {21.0 3.0 288 ------- null} h -t 28.717 -s 1 -d 3 -p ack -e 40 -c 0 -i 579 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.7186 -s 28 -d 1 -p ack -e 40 -c 0 -i 580 -a 1 -x {21.0 3.0 289 ------- null} + -t 28.7186 -s 1 -d 3 -p ack -e 40 -c 0 -i 580 -a 1 -x {21.0 3.0 289 ------- null} - -t 28.7186 -s 1 -d 3 -p ack -e 40 -c 0 -i 580 -a 1 -x {21.0 3.0 289 ------- null} h -t 28.7186 -s 1 -d 3 -p ack -e 40 -c 0 -i 580 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.7202 -s 28 -d 1 -p ack -e 40 -c 0 -i 581 -a 1 -x {21.0 3.0 290 ------- null} + -t 28.7202 -s 1 -d 3 -p ack -e 40 -c 0 -i 581 -a 1 -x {21.0 3.0 290 ------- null} - -t 28.7202 -s 1 -d 3 -p ack -e 40 -c 0 -i 581 -a 1 -x {21.0 3.0 290 ------- null} h -t 28.7202 -s 1 -d 3 -p ack -e 40 -c 0 -i 581 -a 1 -x {21.0 3.0 -1 ------- null} r -t 28.8299 -s 1 -d 3 -p ack -e 40 -c 0 -i 562 -a 1 -x {21.0 3.0 271 ------- null} + -t 28.8299 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 582 -a 0 -x {3.0 21.0 291 ------- null} - -t 28.8299 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 582 -a 0 -x {3.0 21.0 291 ------- null} h -t 28.8299 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 582 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.8315 -s 1 -d 3 -p ack -e 40 -c 0 -i 563 -a 1 -x {21.0 3.0 272 ------- null} + -t 28.8315 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {3.0 21.0 292 ------- null} - -t 28.8315 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {3.0 21.0 292 ------- null} h -t 28.8315 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.8331 -s 1 -d 3 -p ack -e 40 -c 0 -i 564 -a 1 -x {21.0 3.0 273 ------- null} + -t 28.8331 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 584 -a 0 -x {3.0 21.0 293 ------- null} - -t 28.8331 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 584 -a 0 -x {3.0 21.0 293 ------- null} h -t 28.8331 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 584 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.8347 -s 1 -d 3 -p ack -e 40 -c 0 -i 565 -a 1 -x {21.0 3.0 274 ------- null} + -t 28.8347 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {3.0 21.0 294 ------- null} - -t 28.8347 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {3.0 21.0 294 ------- null} h -t 28.8347 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.8363 -s 1 -d 3 -p ack -e 40 -c 0 -i 566 -a 1 -x {21.0 3.0 275 ------- null} + -t 28.8363 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 586 -a 0 -x {3.0 21.0 295 ------- null} - -t 28.8363 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 586 -a 0 -x {3.0 21.0 295 ------- null} h -t 28.8363 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 586 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.8379 -s 1 -d 3 -p ack -e 40 -c 0 -i 567 -a 1 -x {21.0 3.0 276 ------- null} + -t 28.8379 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {3.0 21.0 296 ------- null} - -t 28.8379 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {3.0 21.0 296 ------- null} h -t 28.8379 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.8395 -s 1 -d 3 -p ack -e 40 -c 0 -i 568 -a 1 -x {21.0 3.0 277 ------- null} + -t 28.8395 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 588 -a 0 -x {3.0 21.0 297 ------- null} - -t 28.8395 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 588 -a 0 -x {3.0 21.0 297 ------- null} h -t 28.8395 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 588 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.8411 -s 1 -d 3 -p ack -e 40 -c 0 -i 569 -a 1 -x {21.0 3.0 278 ------- null} + -t 28.8411 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {3.0 21.0 298 ------- null} - -t 28.8411 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {3.0 21.0 298 ------- null} h -t 28.8411 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.8427 -s 1 -d 3 -p ack -e 40 -c 0 -i 570 -a 1 -x {21.0 3.0 279 ------- null} + -t 28.8427 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 590 -a 0 -x {3.0 21.0 299 ------- null} - -t 28.8427 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 590 -a 0 -x {3.0 21.0 299 ------- null} h -t 28.8427 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 590 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.8443 -s 1 -d 3 -p ack -e 40 -c 0 -i 571 -a 1 -x {21.0 3.0 280 ------- null} + -t 28.8443 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {3.0 21.0 300 ------- null} - -t 28.8443 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {3.0 21.0 300 ------- null} h -t 28.8443 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.8459 -s 1 -d 3 -p ack -e 40 -c 0 -i 572 -a 1 -x {21.0 3.0 281 ------- null} + -t 28.8459 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 592 -a 0 -x {3.0 21.0 301 ------- null} - -t 28.8459 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 592 -a 0 -x {3.0 21.0 301 ------- null} h -t 28.8459 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 592 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.8475 -s 1 -d 3 -p ack -e 40 -c 0 -i 573 -a 1 -x {21.0 3.0 282 ------- null} + -t 28.8475 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {3.0 21.0 302 ------- null} - -t 28.8475 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {3.0 21.0 302 ------- null} h -t 28.8475 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.8491 -s 1 -d 3 -p ack -e 40 -c 0 -i 574 -a 1 -x {21.0 3.0 283 ------- null} + -t 28.8491 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 594 -a 0 -x {3.0 21.0 303 ------- null} - -t 28.8491 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 594 -a 0 -x {3.0 21.0 303 ------- null} h -t 28.8491 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 594 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.8507 -s 1 -d 3 -p ack -e 40 -c 0 -i 575 -a 1 -x {21.0 3.0 284 ------- null} + -t 28.8507 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {3.0 21.0 304 ------- null} - -t 28.8507 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {3.0 21.0 304 ------- null} h -t 28.8507 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.8523 -s 1 -d 3 -p ack -e 40 -c 0 -i 576 -a 1 -x {21.0 3.0 285 ------- null} + -t 28.8523 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 596 -a 0 -x {3.0 21.0 305 ------- null} - -t 28.8523 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 596 -a 0 -x {3.0 21.0 305 ------- null} h -t 28.8523 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 596 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.8539 -s 1 -d 3 -p ack -e 40 -c 0 -i 577 -a 1 -x {21.0 3.0 286 ------- null} + -t 28.8539 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {3.0 21.0 306 ------- null} - -t 28.8539 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {3.0 21.0 306 ------- null} h -t 28.8539 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.8555 -s 1 -d 3 -p ack -e 40 -c 0 -i 578 -a 1 -x {21.0 3.0 287 ------- null} + -t 28.8555 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 598 -a 0 -x {3.0 21.0 307 ------- null} - -t 28.8555 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 598 -a 0 -x {3.0 21.0 307 ------- null} h -t 28.8555 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 598 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.8571 -s 1 -d 3 -p ack -e 40 -c 0 -i 579 -a 1 -x {21.0 3.0 288 ------- null} + -t 28.8571 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {3.0 21.0 308 ------- null} - -t 28.8571 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {3.0 21.0 308 ------- null} h -t 28.8571 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.8587 -s 1 -d 3 -p ack -e 40 -c 0 -i 580 -a 1 -x {21.0 3.0 289 ------- null} + -t 28.8587 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 600 -a 0 -x {3.0 21.0 309 ------- null} - -t 28.8587 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 600 -a 0 -x {3.0 21.0 309 ------- null} h -t 28.8587 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 600 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.8603 -s 1 -d 3 -p ack -e 40 -c 0 -i 581 -a 1 -x {21.0 3.0 290 ------- null} + -t 28.8603 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {3.0 21.0 310 ------- null} - -t 28.8603 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {3.0 21.0 310 ------- null} h -t 28.8603 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.9715 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 582 -a 0 -x {3.0 21.0 291 ------- null} + -t 28.9715 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 582 -a 0 -x {3.0 21.0 291 ------- null} - -t 28.9715 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 582 -a 0 -x {3.0 21.0 291 ------- null} h -t 28.9715 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 582 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.9731 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {3.0 21.0 292 ------- null} + -t 28.9731 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {3.0 21.0 292 ------- null} - -t 28.9731 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {3.0 21.0 292 ------- null} h -t 28.9731 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.9747 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 584 -a 0 -x {3.0 21.0 293 ------- null} + -t 28.9747 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 584 -a 0 -x {3.0 21.0 293 ------- null} - -t 28.9747 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 584 -a 0 -x {3.0 21.0 293 ------- null} h -t 28.9747 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 584 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.9763 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {3.0 21.0 294 ------- null} + -t 28.9763 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {3.0 21.0 294 ------- null} - -t 28.9763 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {3.0 21.0 294 ------- null} h -t 28.9763 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.9779 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 586 -a 0 -x {3.0 21.0 295 ------- null} + -t 28.9779 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 586 -a 0 -x {3.0 21.0 295 ------- null} - -t 28.9779 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 586 -a 0 -x {3.0 21.0 295 ------- null} h -t 28.9779 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 586 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.9795 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {3.0 21.0 296 ------- null} + -t 28.9795 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {3.0 21.0 296 ------- null} - -t 28.9795 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {3.0 21.0 296 ------- null} h -t 28.9795 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.9811 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 588 -a 0 -x {3.0 21.0 297 ------- null} + -t 28.9811 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 588 -a 0 -x {3.0 21.0 297 ------- null} - -t 28.9811 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 588 -a 0 -x {3.0 21.0 297 ------- null} h -t 28.9811 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 588 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.9827 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {3.0 21.0 298 ------- null} + -t 28.9827 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {3.0 21.0 298 ------- null} - -t 28.9827 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {3.0 21.0 298 ------- null} h -t 28.9827 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.9843 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 590 -a 0 -x {3.0 21.0 299 ------- null} + -t 28.9843 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 590 -a 0 -x {3.0 21.0 299 ------- null} - -t 28.9843 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 590 -a 0 -x {3.0 21.0 299 ------- null} h -t 28.9843 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 590 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.9859 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {3.0 21.0 300 ------- null} + -t 28.9859 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {3.0 21.0 300 ------- null} - -t 28.9859 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {3.0 21.0 300 ------- null} h -t 28.9859 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.9875 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 592 -a 0 -x {3.0 21.0 301 ------- null} + -t 28.9875 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 592 -a 0 -x {3.0 21.0 301 ------- null} - -t 28.9875 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 592 -a 0 -x {3.0 21.0 301 ------- null} h -t 28.9875 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 592 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.9891 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {3.0 21.0 302 ------- null} + -t 28.9891 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {3.0 21.0 302 ------- null} - -t 28.9891 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {3.0 21.0 302 ------- null} h -t 28.9891 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.9907 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 594 -a 0 -x {3.0 21.0 303 ------- null} + -t 28.9907 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 594 -a 0 -x {3.0 21.0 303 ------- null} - -t 28.9907 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 594 -a 0 -x {3.0 21.0 303 ------- null} h -t 28.9907 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 594 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.9923 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {3.0 21.0 304 ------- null} + -t 28.9923 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {3.0 21.0 304 ------- null} - -t 28.9923 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {3.0 21.0 304 ------- null} h -t 28.9923 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.9939 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 596 -a 0 -x {3.0 21.0 305 ------- null} + -t 28.9939 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 596 -a 0 -x {3.0 21.0 305 ------- null} - -t 28.9939 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 596 -a 0 -x {3.0 21.0 305 ------- null} h -t 28.9939 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 596 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.9955 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {3.0 21.0 306 ------- null} + -t 28.9955 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {3.0 21.0 306 ------- null} - -t 28.9955 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {3.0 21.0 306 ------- null} h -t 28.9955 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.9971 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 598 -a 0 -x {3.0 21.0 307 ------- null} + -t 28.9971 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 598 -a 0 -x {3.0 21.0 307 ------- null} - -t 28.9971 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 598 -a 0 -x {3.0 21.0 307 ------- null} h -t 28.9971 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 598 -a 0 -x {3.0 21.0 -1 ------- null} r -t 28.9987 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {3.0 21.0 308 ------- null} + -t 28.9987 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {3.0 21.0 308 ------- null} - -t 28.9987 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {3.0 21.0 308 ------- null} h -t 28.9987 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {3.0 21.0 -1 ------- null} r -t 29.0003 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 600 -a 0 -x {3.0 21.0 309 ------- null} + -t 29.0003 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 600 -a 0 -x {3.0 21.0 309 ------- null} - -t 29.0003 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 600 -a 0 -x {3.0 21.0 309 ------- null} h -t 29.0003 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 600 -a 0 -x {3.0 21.0 -1 ------- null} r -t 29.0019 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {3.0 21.0 310 ------- null} + -t 29.0019 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {3.0 21.0 310 ------- null} - -t 29.0019 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {3.0 21.0 310 ------- null} h -t 29.0019 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {3.0 21.0 -1 ------- null} r -t 29.2731 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 582 -a 0 -x {3.0 21.0 291 ------- null} + -t 29.2731 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 582 -a 0 -x {3.0 21.0 291 ------- null} - -t 29.2731 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 582 -a 0 -x {3.0 21.0 291 ------- null} h -t 29.2731 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 582 -a 0 -x {3.0 21.0 -1 ------- null} r -t 29.2747 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {3.0 21.0 292 ------- null} + -t 29.2747 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {3.0 21.0 292 ------- null} - -t 29.2747 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {3.0 21.0 292 ------- null} h -t 29.2747 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {3.0 21.0 -1 ------- null} r -t 29.2763 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 584 -a 0 -x {3.0 21.0 293 ------- null} + -t 29.2763 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 584 -a 0 -x {3.0 21.0 293 ------- null} - -t 29.2763 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 584 -a 0 -x {3.0 21.0 293 ------- null} h -t 29.2763 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 584 -a 0 -x {3.0 21.0 -1 ------- null} r -t 29.2779 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {3.0 21.0 294 ------- null} + -t 29.2779 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {3.0 21.0 294 ------- null} - -t 29.2779 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {3.0 21.0 294 ------- null} h -t 29.2779 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {3.0 21.0 -1 ------- null} r -t 29.2795 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 586 -a 0 -x {3.0 21.0 295 ------- null} + -t 29.2795 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 586 -a 0 -x {3.0 21.0 295 ------- null} - -t 29.2795 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 586 -a 0 -x {3.0 21.0 295 ------- null} h -t 29.2795 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 586 -a 0 -x {3.0 21.0 -1 ------- null} r -t 29.2811 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {3.0 21.0 296 ------- null} + -t 29.2811 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {3.0 21.0 296 ------- null} - -t 29.2811 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {3.0 21.0 296 ------- null} h -t 29.2811 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {3.0 21.0 -1 ------- null} r -t 29.2827 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 588 -a 0 -x {3.0 21.0 297 ------- null} + -t 29.2827 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 588 -a 0 -x {3.0 21.0 297 ------- null} - -t 29.2827 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 588 -a 0 -x {3.0 21.0 297 ------- null} h -t 29.2827 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 588 -a 0 -x {3.0 21.0 -1 ------- null} r -t 29.2843 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {3.0 21.0 298 ------- null} + -t 29.2843 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {3.0 21.0 298 ------- null} - -t 29.2843 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {3.0 21.0 298 ------- null} h -t 29.2843 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {3.0 21.0 -1 ------- null} r -t 29.2859 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 590 -a 0 -x {3.0 21.0 299 ------- null} + -t 29.2859 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 590 -a 0 -x {3.0 21.0 299 ------- null} - -t 29.2859 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 590 -a 0 -x {3.0 21.0 299 ------- null} h -t 29.2859 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 590 -a 0 -x {3.0 21.0 -1 ------- null} r -t 29.2875 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {3.0 21.0 300 ------- null} + -t 29.2875 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {3.0 21.0 300 ------- null} - -t 29.2875 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {3.0 21.0 300 ------- null} h -t 29.2875 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {3.0 21.0 -1 ------- null} r -t 29.2891 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 592 -a 0 -x {3.0 21.0 301 ------- null} + -t 29.2891 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 592 -a 0 -x {3.0 21.0 301 ------- null} - -t 29.2891 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 592 -a 0 -x {3.0 21.0 301 ------- null} h -t 29.2891 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 592 -a 0 -x {3.0 21.0 -1 ------- null} r -t 29.2907 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {3.0 21.0 302 ------- null} + -t 29.2907 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {3.0 21.0 302 ------- null} - -t 29.2907 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {3.0 21.0 302 ------- null} h -t 29.2907 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {3.0 21.0 -1 ------- null} r -t 29.2923 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 594 -a 0 -x {3.0 21.0 303 ------- null} + -t 29.2923 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 594 -a 0 -x {3.0 21.0 303 ------- null} - -t 29.2923 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 594 -a 0 -x {3.0 21.0 303 ------- null} h -t 29.2923 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 594 -a 0 -x {3.0 21.0 -1 ------- null} r -t 29.2939 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {3.0 21.0 304 ------- null} + -t 29.2939 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {3.0 21.0 304 ------- null} - -t 29.2939 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {3.0 21.0 304 ------- null} h -t 29.2939 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {3.0 21.0 -1 ------- null} r -t 29.2955 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 596 -a 0 -x {3.0 21.0 305 ------- null} + -t 29.2955 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 596 -a 0 -x {3.0 21.0 305 ------- null} - -t 29.2955 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 596 -a 0 -x {3.0 21.0 305 ------- null} h -t 29.2955 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 596 -a 0 -x {3.0 21.0 -1 ------- null} r -t 29.2971 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {3.0 21.0 306 ------- null} + -t 29.2971 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {3.0 21.0 306 ------- null} - -t 29.2971 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {3.0 21.0 306 ------- null} h -t 29.2971 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {3.0 21.0 -1 ------- null} r -t 29.2987 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 598 -a 0 -x {3.0 21.0 307 ------- null} + -t 29.2987 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 598 -a 0 -x {3.0 21.0 307 ------- null} - -t 29.2987 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 598 -a 0 -x {3.0 21.0 307 ------- null} h -t 29.2987 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 598 -a 0 -x {3.0 21.0 -1 ------- null} r -t 29.3003 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {3.0 21.0 308 ------- null} + -t 29.3003 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {3.0 21.0 308 ------- null} - -t 29.3003 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {3.0 21.0 308 ------- null} h -t 29.3003 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {3.0 21.0 -1 ------- null} r -t 29.3019 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 600 -a 0 -x {3.0 21.0 309 ------- null} + -t 29.3019 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 600 -a 0 -x {3.0 21.0 309 ------- null} - -t 29.3019 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 600 -a 0 -x {3.0 21.0 309 ------- null} h -t 29.3019 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 600 -a 0 -x {3.0 21.0 -1 ------- null} r -t 29.3035 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {3.0 21.0 310 ------- null} + -t 29.3035 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {3.0 21.0 310 ------- null} - -t 29.3035 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {3.0 21.0 310 ------- null} h -t 29.3035 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {3.0 21.0 -1 ------- null} r -t 29.6247 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 582 -a 0 -x {3.0 21.0 291 ------- null} + -t 29.6247 -s 21 -d 28 -p ack -e 40 -c 0 -i 602 -a 1 -x {21.0 3.0 291 ------- null} - -t 29.6247 -s 21 -d 28 -p ack -e 40 -c 0 -i 602 -a 1 -x {21.0 3.0 291 ------- null} h -t 29.6247 -s 21 -d 28 -p ack -e 40 -c 0 -i 602 -a 1 -x {21.0 3.0 -1 ------- null} r -t 29.6263 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {3.0 21.0 292 ------- null} + -t 29.6263 -s 21 -d 28 -p ack -e 40 -c 0 -i 603 -a 1 -x {21.0 3.0 292 ------- null} - -t 29.6263 -s 21 -d 28 -p ack -e 40 -c 0 -i 603 -a 1 -x {21.0 3.0 292 ------- null} h -t 29.6263 -s 21 -d 28 -p ack -e 40 -c 0 -i 603 -a 1 -x {21.0 3.0 -1 ------- null} r -t 29.6279 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 584 -a 0 -x {3.0 21.0 293 ------- null} + -t 29.6279 -s 21 -d 28 -p ack -e 40 -c 0 -i 604 -a 1 -x {21.0 3.0 293 ------- null} - -t 29.6279 -s 21 -d 28 -p ack -e 40 -c 0 -i 604 -a 1 -x {21.0 3.0 293 ------- null} h -t 29.6279 -s 21 -d 28 -p ack -e 40 -c 0 -i 604 -a 1 -x {21.0 3.0 -1 ------- null} r -t 29.6295 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {3.0 21.0 294 ------- null} + -t 29.6295 -s 21 -d 28 -p ack -e 40 -c 0 -i 605 -a 1 -x {21.0 3.0 294 ------- null} - -t 29.6295 -s 21 -d 28 -p ack -e 40 -c 0 -i 605 -a 1 -x {21.0 3.0 294 ------- null} h -t 29.6295 -s 21 -d 28 -p ack -e 40 -c 0 -i 605 -a 1 -x {21.0 3.0 -1 ------- null} r -t 29.6311 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 586 -a 0 -x {3.0 21.0 295 ------- null} + -t 29.6311 -s 21 -d 28 -p ack -e 40 -c 0 -i 606 -a 1 -x {21.0 3.0 295 ------- null} - -t 29.6311 -s 21 -d 28 -p ack -e 40 -c 0 -i 606 -a 1 -x {21.0 3.0 295 ------- null} h -t 29.6311 -s 21 -d 28 -p ack -e 40 -c 0 -i 606 -a 1 -x {21.0 3.0 -1 ------- null} r -t 29.6327 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {3.0 21.0 296 ------- null} + -t 29.6327 -s 21 -d 28 -p ack -e 40 -c 0 -i 607 -a 1 -x {21.0 3.0 296 ------- null} - -t 29.6327 -s 21 -d 28 -p ack -e 40 -c 0 -i 607 -a 1 -x {21.0 3.0 296 ------- null} h -t 29.6327 -s 21 -d 28 -p ack -e 40 -c 0 -i 607 -a 1 -x {21.0 3.0 -1 ------- null} r -t 29.6343 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 588 -a 0 -x {3.0 21.0 297 ------- null} + -t 29.6343 -s 21 -d 28 -p ack -e 40 -c 0 -i 608 -a 1 -x {21.0 3.0 297 ------- null} - -t 29.6343 -s 21 -d 28 -p ack -e 40 -c 0 -i 608 -a 1 -x {21.0 3.0 297 ------- null} h -t 29.6343 -s 21 -d 28 -p ack -e 40 -c 0 -i 608 -a 1 -x {21.0 3.0 -1 ------- null} r -t 29.6359 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {3.0 21.0 298 ------- null} + -t 29.6359 -s 21 -d 28 -p ack -e 40 -c 0 -i 609 -a 1 -x {21.0 3.0 298 ------- null} - -t 29.6359 -s 21 -d 28 -p ack -e 40 -c 0 -i 609 -a 1 -x {21.0 3.0 298 ------- null} h -t 29.6359 -s 21 -d 28 -p ack -e 40 -c 0 -i 609 -a 1 -x {21.0 3.0 -1 ------- null} r -t 29.6375 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 590 -a 0 -x {3.0 21.0 299 ------- null} + -t 29.6375 -s 21 -d 28 -p ack -e 40 -c 0 -i 610 -a 1 -x {21.0 3.0 299 ------- null} - -t 29.6375 -s 21 -d 28 -p ack -e 40 -c 0 -i 610 -a 1 -x {21.0 3.0 299 ------- null} h -t 29.6375 -s 21 -d 28 -p ack -e 40 -c 0 -i 610 -a 1 -x {21.0 3.0 -1 ------- null} r -t 29.6391 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {3.0 21.0 300 ------- null} + -t 29.6391 -s 21 -d 28 -p ack -e 40 -c 0 -i 611 -a 1 -x {21.0 3.0 300 ------- null} - -t 29.6391 -s 21 -d 28 -p ack -e 40 -c 0 -i 611 -a 1 -x {21.0 3.0 300 ------- null} h -t 29.6391 -s 21 -d 28 -p ack -e 40 -c 0 -i 611 -a 1 -x {21.0 3.0 -1 ------- null} r -t 29.6407 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 592 -a 0 -x {3.0 21.0 301 ------- null} + -t 29.6407 -s 21 -d 28 -p ack -e 40 -c 0 -i 612 -a 1 -x {21.0 3.0 301 ------- null} - -t 29.6407 -s 21 -d 28 -p ack -e 40 -c 0 -i 612 -a 1 -x {21.0 3.0 301 ------- null} h -t 29.6407 -s 21 -d 28 -p ack -e 40 -c 0 -i 612 -a 1 -x {21.0 3.0 -1 ------- null} r -t 29.6423 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {3.0 21.0 302 ------- null} + -t 29.6423 -s 21 -d 28 -p ack -e 40 -c 0 -i 613 -a 1 -x {21.0 3.0 302 ------- null} - -t 29.6423 -s 21 -d 28 -p ack -e 40 -c 0 -i 613 -a 1 -x {21.0 3.0 302 ------- null} h -t 29.6423 -s 21 -d 28 -p ack -e 40 -c 0 -i 613 -a 1 -x {21.0 3.0 -1 ------- null} r -t 29.6439 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 594 -a 0 -x {3.0 21.0 303 ------- null} + -t 29.6439 -s 21 -d 28 -p ack -e 40 -c 0 -i 614 -a 1 -x {21.0 3.0 303 ------- null} - -t 29.6439 -s 21 -d 28 -p ack -e 40 -c 0 -i 614 -a 1 -x {21.0 3.0 303 ------- null} h -t 29.6439 -s 21 -d 28 -p ack -e 40 -c 0 -i 614 -a 1 -x {21.0 3.0 -1 ------- null} r -t 29.6455 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {3.0 21.0 304 ------- null} + -t 29.6455 -s 21 -d 28 -p ack -e 40 -c 0 -i 615 -a 1 -x {21.0 3.0 304 ------- null} - -t 29.6455 -s 21 -d 28 -p ack -e 40 -c 0 -i 615 -a 1 -x {21.0 3.0 304 ------- null} h -t 29.6455 -s 21 -d 28 -p ack -e 40 -c 0 -i 615 -a 1 -x {21.0 3.0 -1 ------- null} r -t 29.6471 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 596 -a 0 -x {3.0 21.0 305 ------- null} + -t 29.6471 -s 21 -d 28 -p ack -e 40 -c 0 -i 616 -a 1 -x {21.0 3.0 305 ------- null} - -t 29.6471 -s 21 -d 28 -p ack -e 40 -c 0 -i 616 -a 1 -x {21.0 3.0 305 ------- null} h -t 29.6471 -s 21 -d 28 -p ack -e 40 -c 0 -i 616 -a 1 -x {21.0 3.0 -1 ------- null} r -t 29.6487 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {3.0 21.0 306 ------- null} + -t 29.6487 -s 21 -d 28 -p ack -e 40 -c 0 -i 617 -a 1 -x {21.0 3.0 306 ------- null} - -t 29.6487 -s 21 -d 28 -p ack -e 40 -c 0 -i 617 -a 1 -x {21.0 3.0 306 ------- null} h -t 29.6487 -s 21 -d 28 -p ack -e 40 -c 0 -i 617 -a 1 -x {21.0 3.0 -1 ------- null} r -t 29.6503 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 598 -a 0 -x {3.0 21.0 307 ------- null} + -t 29.6503 -s 21 -d 28 -p ack -e 40 -c 0 -i 618 -a 1 -x {21.0 3.0 307 ------- null} - -t 29.6503 -s 21 -d 28 -p ack -e 40 -c 0 -i 618 -a 1 -x {21.0 3.0 307 ------- null} h -t 29.6503 -s 21 -d 28 -p ack -e 40 -c 0 -i 618 -a 1 -x {21.0 3.0 -1 ------- null} r -t 29.6519 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {3.0 21.0 308 ------- null} + -t 29.6519 -s 21 -d 28 -p ack -e 40 -c 0 -i 619 -a 1 -x {21.0 3.0 308 ------- null} - -t 29.6519 -s 21 -d 28 -p ack -e 40 -c 0 -i 619 -a 1 -x {21.0 3.0 308 ------- null} h -t 29.6519 -s 21 -d 28 -p ack -e 40 -c 0 -i 619 -a 1 -x {21.0 3.0 -1 ------- null} r -t 29.6535 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 600 -a 0 -x {3.0 21.0 309 ------- null} + -t 29.6535 -s 21 -d 28 -p ack -e 40 -c 0 -i 620 -a 1 -x {21.0 3.0 309 ------- null} - -t 29.6535 -s 21 -d 28 -p ack -e 40 -c 0 -i 620 -a 1 -x {21.0 3.0 309 ------- null} h -t 29.6535 -s 21 -d 28 -p ack -e 40 -c 0 -i 620 -a 1 -x {21.0 3.0 -1 ------- null} r -t 29.6551 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {3.0 21.0 310 ------- null} + -t 29.6551 -s 21 -d 28 -p ack -e 40 -c 0 -i 621 -a 1 -x {21.0 3.0 310 ------- null} - -t 29.6551 -s 21 -d 28 -p ack -e 40 -c 0 -i 621 -a 1 -x {21.0 3.0 310 ------- null} h -t 29.6551 -s 21 -d 28 -p ack -e 40 -c 0 -i 621 -a 1 -x {21.0 3.0 -1 ------- null} r -t 29.9747 -s 21 -d 28 -p ack -e 40 -c 0 -i 602 -a 1 -x {21.0 3.0 291 ------- null} + -t 29.9747 -s 28 -d 1 -p ack -e 40 -c 0 -i 602 -a 1 -x {21.0 3.0 291 ------- null} - -t 29.9747 -s 28 -d 1 -p ack -e 40 -c 0 -i 602 -a 1 -x {21.0 3.0 291 ------- null} h -t 29.9747 -s 28 -d 1 -p ack -e 40 -c 0 -i 602 -a 1 -x {21.0 3.0 -1 ------- null} r -t 29.9763 -s 21 -d 28 -p ack -e 40 -c 0 -i 603 -a 1 -x {21.0 3.0 292 ------- null} + -t 29.9763 -s 28 -d 1 -p ack -e 40 -c 0 -i 603 -a 1 -x {21.0 3.0 292 ------- null} - -t 29.9763 -s 28 -d 1 -p ack -e 40 -c 0 -i 603 -a 1 -x {21.0 3.0 292 ------- null} h -t 29.9763 -s 28 -d 1 -p ack -e 40 -c 0 -i 603 -a 1 -x {21.0 3.0 -1 ------- null} r -t 29.9779 -s 21 -d 28 -p ack -e 40 -c 0 -i 604 -a 1 -x {21.0 3.0 293 ------- null} + -t 29.9779 -s 28 -d 1 -p ack -e 40 -c 0 -i 604 -a 1 -x {21.0 3.0 293 ------- null} - -t 29.9779 -s 28 -d 1 -p ack -e 40 -c 0 -i 604 -a 1 -x {21.0 3.0 293 ------- null} h -t 29.9779 -s 28 -d 1 -p ack -e 40 -c 0 -i 604 -a 1 -x {21.0 3.0 -1 ------- null} r -t 29.9795 -s 21 -d 28 -p ack -e 40 -c 0 -i 605 -a 1 -x {21.0 3.0 294 ------- null} + -t 29.9795 -s 28 -d 1 -p ack -e 40 -c 0 -i 605 -a 1 -x {21.0 3.0 294 ------- null} - -t 29.9795 -s 28 -d 1 -p ack -e 40 -c 0 -i 605 -a 1 -x {21.0 3.0 294 ------- null} h -t 29.9795 -s 28 -d 1 -p ack -e 40 -c 0 -i 605 -a 1 -x {21.0 3.0 -1 ------- null} r -t 29.9811 -s 21 -d 28 -p ack -e 40 -c 0 -i 606 -a 1 -x {21.0 3.0 295 ------- null} + -t 29.9811 -s 28 -d 1 -p ack -e 40 -c 0 -i 606 -a 1 -x {21.0 3.0 295 ------- null} - -t 29.9811 -s 28 -d 1 -p ack -e 40 -c 0 -i 606 -a 1 -x {21.0 3.0 295 ------- null} h -t 29.9811 -s 28 -d 1 -p ack -e 40 -c 0 -i 606 -a 1 -x {21.0 3.0 -1 ------- null} r -t 29.9827 -s 21 -d 28 -p ack -e 40 -c 0 -i 607 -a 1 -x {21.0 3.0 296 ------- null} + -t 29.9827 -s 28 -d 1 -p ack -e 40 -c 0 -i 607 -a 1 -x {21.0 3.0 296 ------- null} - -t 29.9827 -s 28 -d 1 -p ack -e 40 -c 0 -i 607 -a 1 -x {21.0 3.0 296 ------- null} h -t 29.9827 -s 28 -d 1 -p ack -e 40 -c 0 -i 607 -a 1 -x {21.0 3.0 -1 ------- null} r -t 29.9843 -s 21 -d 28 -p ack -e 40 -c 0 -i 608 -a 1 -x {21.0 3.0 297 ------- null} + -t 29.9843 -s 28 -d 1 -p ack -e 40 -c 0 -i 608 -a 1 -x {21.0 3.0 297 ------- null} - -t 29.9843 -s 28 -d 1 -p ack -e 40 -c 0 -i 608 -a 1 -x {21.0 3.0 297 ------- null} h -t 29.9843 -s 28 -d 1 -p ack -e 40 -c 0 -i 608 -a 1 -x {21.0 3.0 -1 ------- null} r -t 29.9859 -s 21 -d 28 -p ack -e 40 -c 0 -i 609 -a 1 -x {21.0 3.0 298 ------- null} + -t 29.9859 -s 28 -d 1 -p ack -e 40 -c 0 -i 609 -a 1 -x {21.0 3.0 298 ------- null} - -t 29.9859 -s 28 -d 1 -p ack -e 40 -c 0 -i 609 -a 1 -x {21.0 3.0 298 ------- null} h -t 29.9859 -s 28 -d 1 -p ack -e 40 -c 0 -i 609 -a 1 -x {21.0 3.0 -1 ------- null} r -t 29.9875 -s 21 -d 28 -p ack -e 40 -c 0 -i 610 -a 1 -x {21.0 3.0 299 ------- null} + -t 29.9875 -s 28 -d 1 -p ack -e 40 -c 0 -i 610 -a 1 -x {21.0 3.0 299 ------- null} - -t 29.9875 -s 28 -d 1 -p ack -e 40 -c 0 -i 610 -a 1 -x {21.0 3.0 299 ------- null} h -t 29.9875 -s 28 -d 1 -p ack -e 40 -c 0 -i 610 -a 1 -x {21.0 3.0 -1 ------- null} r -t 29.9891 -s 21 -d 28 -p ack -e 40 -c 0 -i 611 -a 1 -x {21.0 3.0 300 ------- null} + -t 29.9891 -s 28 -d 1 -p ack -e 40 -c 0 -i 611 -a 1 -x {21.0 3.0 300 ------- null} - -t 29.9891 -s 28 -d 1 -p ack -e 40 -c 0 -i 611 -a 1 -x {21.0 3.0 300 ------- null} h -t 29.9891 -s 28 -d 1 -p ack -e 40 -c 0 -i 611 -a 1 -x {21.0 3.0 -1 ------- null} r -t 29.9907 -s 21 -d 28 -p ack -e 40 -c 0 -i 612 -a 1 -x {21.0 3.0 301 ------- null} + -t 29.9907 -s 28 -d 1 -p ack -e 40 -c 0 -i 612 -a 1 -x {21.0 3.0 301 ------- null} - -t 29.9907 -s 28 -d 1 -p ack -e 40 -c 0 -i 612 -a 1 -x {21.0 3.0 301 ------- null} h -t 29.9907 -s 28 -d 1 -p ack -e 40 -c 0 -i 612 -a 1 -x {21.0 3.0 -1 ------- null} r -t 29.9923 -s 21 -d 28 -p ack -e 40 -c 0 -i 613 -a 1 -x {21.0 3.0 302 ------- null} + -t 29.9923 -s 28 -d 1 -p ack -e 40 -c 0 -i 613 -a 1 -x {21.0 3.0 302 ------- null} - -t 29.9923 -s 28 -d 1 -p ack -e 40 -c 0 -i 613 -a 1 -x {21.0 3.0 302 ------- null} h -t 29.9923 -s 28 -d 1 -p ack -e 40 -c 0 -i 613 -a 1 -x {21.0 3.0 -1 ------- null} r -t 29.9939 -s 21 -d 28 -p ack -e 40 -c 0 -i 614 -a 1 -x {21.0 3.0 303 ------- null} + -t 29.9939 -s 28 -d 1 -p ack -e 40 -c 0 -i 614 -a 1 -x {21.0 3.0 303 ------- null} - -t 29.9939 -s 28 -d 1 -p ack -e 40 -c 0 -i 614 -a 1 -x {21.0 3.0 303 ------- null} h -t 29.9939 -s 28 -d 1 -p ack -e 40 -c 0 -i 614 -a 1 -x {21.0 3.0 -1 ------- null} r -t 29.9955 -s 21 -d 28 -p ack -e 40 -c 0 -i 615 -a 1 -x {21.0 3.0 304 ------- null} + -t 29.9955 -s 28 -d 1 -p ack -e 40 -c 0 -i 615 -a 1 -x {21.0 3.0 304 ------- null} - -t 29.9955 -s 28 -d 1 -p ack -e 40 -c 0 -i 615 -a 1 -x {21.0 3.0 304 ------- null} h -t 29.9955 -s 28 -d 1 -p ack -e 40 -c 0 -i 615 -a 1 -x {21.0 3.0 -1 ------- null} r -t 29.9971 -s 21 -d 28 -p ack -e 40 -c 0 -i 616 -a 1 -x {21.0 3.0 305 ------- null} + -t 29.9971 -s 28 -d 1 -p ack -e 40 -c 0 -i 616 -a 1 -x {21.0 3.0 305 ------- null} - -t 29.9971 -s 28 -d 1 -p ack -e 40 -c 0 -i 616 -a 1 -x {21.0 3.0 305 ------- null} h -t 29.9971 -s 28 -d 1 -p ack -e 40 -c 0 -i 616 -a 1 -x {21.0 3.0 -1 ------- null} r -t 29.9987 -s 21 -d 28 -p ack -e 40 -c 0 -i 617 -a 1 -x {21.0 3.0 306 ------- null} + -t 29.9987 -s 28 -d 1 -p ack -e 40 -c 0 -i 617 -a 1 -x {21.0 3.0 306 ------- null} - -t 29.9987 -s 28 -d 1 -p ack -e 40 -c 0 -i 617 -a 1 -x {21.0 3.0 306 ------- null} h -t 29.9987 -s 28 -d 1 -p ack -e 40 -c 0 -i 617 -a 1 -x {21.0 3.0 -1 ------- null} r -t 30.0003 -s 21 -d 28 -p ack -e 40 -c 0 -i 618 -a 1 -x {21.0 3.0 307 ------- null} + -t 30.0003 -s 28 -d 1 -p ack -e 40 -c 0 -i 618 -a 1 -x {21.0 3.0 307 ------- null} - -t 30.0003 -s 28 -d 1 -p ack -e 40 -c 0 -i 618 -a 1 -x {21.0 3.0 307 ------- null} h -t 30.0003 -s 28 -d 1 -p ack -e 40 -c 0 -i 618 -a 1 -x {21.0 3.0 -1 ------- null} r -t 30.0019 -s 21 -d 28 -p ack -e 40 -c 0 -i 619 -a 1 -x {21.0 3.0 308 ------- null} + -t 30.0019 -s 28 -d 1 -p ack -e 40 -c 0 -i 619 -a 1 -x {21.0 3.0 308 ------- null} - -t 30.0019 -s 28 -d 1 -p ack -e 40 -c 0 -i 619 -a 1 -x {21.0 3.0 308 ------- null} h -t 30.0019 -s 28 -d 1 -p ack -e 40 -c 0 -i 619 -a 1 -x {21.0 3.0 -1 ------- null} r -t 30.0035 -s 21 -d 28 -p ack -e 40 -c 0 -i 620 -a 1 -x {21.0 3.0 309 ------- null} + -t 30.0035 -s 28 -d 1 -p ack -e 40 -c 0 -i 620 -a 1 -x {21.0 3.0 309 ------- null} - -t 30.0035 -s 28 -d 1 -p ack -e 40 -c 0 -i 620 -a 1 -x {21.0 3.0 309 ------- null} h -t 30.0035 -s 28 -d 1 -p ack -e 40 -c 0 -i 620 -a 1 -x {21.0 3.0 -1 ------- null} r -t 30.0051 -s 21 -d 28 -p ack -e 40 -c 0 -i 621 -a 1 -x {21.0 3.0 310 ------- null} + -t 30.0051 -s 28 -d 1 -p ack -e 40 -c 0 -i 621 -a 1 -x {21.0 3.0 310 ------- null} - -t 30.0051 -s 28 -d 1 -p ack -e 40 -c 0 -i 621 -a 1 -x {21.0 3.0 310 ------- null} h -t 30.0051 -s 28 -d 1 -p ack -e 40 -c 0 -i 621 -a 1 -x {21.0 3.0 -1 ------- null} r -t 30.2748 -s 28 -d 1 -p ack -e 40 -c 0 -i 602 -a 1 -x {21.0 3.0 291 ------- null} + -t 30.2748 -s 1 -d 3 -p ack -e 40 -c 0 -i 602 -a 1 -x {21.0 3.0 291 ------- null} - -t 30.2748 -s 1 -d 3 -p ack -e 40 -c 0 -i 602 -a 1 -x {21.0 3.0 291 ------- null} h -t 30.2748 -s 1 -d 3 -p ack -e 40 -c 0 -i 602 -a 1 -x {21.0 3.0 -1 ------- null} r -t 30.2764 -s 28 -d 1 -p ack -e 40 -c 0 -i 603 -a 1 -x {21.0 3.0 292 ------- null} + -t 30.2764 -s 1 -d 3 -p ack -e 40 -c 0 -i 603 -a 1 -x {21.0 3.0 292 ------- null} - -t 30.2764 -s 1 -d 3 -p ack -e 40 -c 0 -i 603 -a 1 -x {21.0 3.0 292 ------- null} h -t 30.2764 -s 1 -d 3 -p ack -e 40 -c 0 -i 603 -a 1 -x {21.0 3.0 -1 ------- null} r -t 30.278 -s 28 -d 1 -p ack -e 40 -c 0 -i 604 -a 1 -x {21.0 3.0 293 ------- null} + -t 30.278 -s 1 -d 3 -p ack -e 40 -c 0 -i 604 -a 1 -x {21.0 3.0 293 ------- null} - -t 30.278 -s 1 -d 3 -p ack -e 40 -c 0 -i 604 -a 1 -x {21.0 3.0 293 ------- null} h -t 30.278 -s 1 -d 3 -p ack -e 40 -c 0 -i 604 -a 1 -x {21.0 3.0 -1 ------- null} r -t 30.2796 -s 28 -d 1 -p ack -e 40 -c 0 -i 605 -a 1 -x {21.0 3.0 294 ------- null} + -t 30.2796 -s 1 -d 3 -p ack -e 40 -c 0 -i 605 -a 1 -x {21.0 3.0 294 ------- null} - -t 30.2796 -s 1 -d 3 -p ack -e 40 -c 0 -i 605 -a 1 -x {21.0 3.0 294 ------- null} h -t 30.2796 -s 1 -d 3 -p ack -e 40 -c 0 -i 605 -a 1 -x {21.0 3.0 -1 ------- null} r -t 30.2812 -s 28 -d 1 -p ack -e 40 -c 0 -i 606 -a 1 -x {21.0 3.0 295 ------- null} + -t 30.2812 -s 1 -d 3 -p ack -e 40 -c 0 -i 606 -a 1 -x {21.0 3.0 295 ------- null} - -t 30.2812 -s 1 -d 3 -p ack -e 40 -c 0 -i 606 -a 1 -x {21.0 3.0 295 ------- null} h -t 30.2812 -s 1 -d 3 -p ack -e 40 -c 0 -i 606 -a 1 -x {21.0 3.0 -1 ------- null} r -t 30.2828 -s 28 -d 1 -p ack -e 40 -c 0 -i 607 -a 1 -x {21.0 3.0 296 ------- null} + -t 30.2828 -s 1 -d 3 -p ack -e 40 -c 0 -i 607 -a 1 -x {21.0 3.0 296 ------- null} - -t 30.2828 -s 1 -d 3 -p ack -e 40 -c 0 -i 607 -a 1 -x {21.0 3.0 296 ------- null} h -t 30.2828 -s 1 -d 3 -p ack -e 40 -c 0 -i 607 -a 1 -x {21.0 3.0 -1 ------- null} r -t 30.2844 -s 28 -d 1 -p ack -e 40 -c 0 -i 608 -a 1 -x {21.0 3.0 297 ------- null} + -t 30.2844 -s 1 -d 3 -p ack -e 40 -c 0 -i 608 -a 1 -x {21.0 3.0 297 ------- null} - -t 30.2844 -s 1 -d 3 -p ack -e 40 -c 0 -i 608 -a 1 -x {21.0 3.0 297 ------- null} h -t 30.2844 -s 1 -d 3 -p ack -e 40 -c 0 -i 608 -a 1 -x {21.0 3.0 -1 ------- null} r -t 30.286 -s 28 -d 1 -p ack -e 40 -c 0 -i 609 -a 1 -x {21.0 3.0 298 ------- null} + -t 30.286 -s 1 -d 3 -p ack -e 40 -c 0 -i 609 -a 1 -x {21.0 3.0 298 ------- null} - -t 30.286 -s 1 -d 3 -p ack -e 40 -c 0 -i 609 -a 1 -x {21.0 3.0 298 ------- null} h -t 30.286 -s 1 -d 3 -p ack -e 40 -c 0 -i 609 -a 1 -x {21.0 3.0 -1 ------- null} r -t 30.2876 -s 28 -d 1 -p ack -e 40 -c 0 -i 610 -a 1 -x {21.0 3.0 299 ------- null} + -t 30.2876 -s 1 -d 3 -p ack -e 40 -c 0 -i 610 -a 1 -x {21.0 3.0 299 ------- null} - -t 30.2876 -s 1 -d 3 -p ack -e 40 -c 0 -i 610 -a 1 -x {21.0 3.0 299 ------- null} h -t 30.2876 -s 1 -d 3 -p ack -e 40 -c 0 -i 610 -a 1 -x {21.0 3.0 -1 ------- null} r -t 30.2892 -s 28 -d 1 -p ack -e 40 -c 0 -i 611 -a 1 -x {21.0 3.0 300 ------- null} + -t 30.2892 -s 1 -d 3 -p ack -e 40 -c 0 -i 611 -a 1 -x {21.0 3.0 300 ------- null} - -t 30.2892 -s 1 -d 3 -p ack -e 40 -c 0 -i 611 -a 1 -x {21.0 3.0 300 ------- null} h -t 30.2892 -s 1 -d 3 -p ack -e 40 -c 0 -i 611 -a 1 -x {21.0 3.0 -1 ------- null} r -t 30.2908 -s 28 -d 1 -p ack -e 40 -c 0 -i 612 -a 1 -x {21.0 3.0 301 ------- null} + -t 30.2908 -s 1 -d 3 -p ack -e 40 -c 0 -i 612 -a 1 -x {21.0 3.0 301 ------- null} - -t 30.2908 -s 1 -d 3 -p ack -e 40 -c 0 -i 612 -a 1 -x {21.0 3.0 301 ------- null} h -t 30.2908 -s 1 -d 3 -p ack -e 40 -c 0 -i 612 -a 1 -x {21.0 3.0 -1 ------- null} r -t 30.2924 -s 28 -d 1 -p ack -e 40 -c 0 -i 613 -a 1 -x {21.0 3.0 302 ------- null} + -t 30.2924 -s 1 -d 3 -p ack -e 40 -c 0 -i 613 -a 1 -x {21.0 3.0 302 ------- null} - -t 30.2924 -s 1 -d 3 -p ack -e 40 -c 0 -i 613 -a 1 -x {21.0 3.0 302 ------- null} h -t 30.2924 -s 1 -d 3 -p ack -e 40 -c 0 -i 613 -a 1 -x {21.0 3.0 -1 ------- null} r -t 30.294 -s 28 -d 1 -p ack -e 40 -c 0 -i 614 -a 1 -x {21.0 3.0 303 ------- null} + -t 30.294 -s 1 -d 3 -p ack -e 40 -c 0 -i 614 -a 1 -x {21.0 3.0 303 ------- null} - -t 30.294 -s 1 -d 3 -p ack -e 40 -c 0 -i 614 -a 1 -x {21.0 3.0 303 ------- null} h -t 30.294 -s 1 -d 3 -p ack -e 40 -c 0 -i 614 -a 1 -x {21.0 3.0 -1 ------- null} r -t 30.2956 -s 28 -d 1 -p ack -e 40 -c 0 -i 615 -a 1 -x {21.0 3.0 304 ------- null} + -t 30.2956 -s 1 -d 3 -p ack -e 40 -c 0 -i 615 -a 1 -x {21.0 3.0 304 ------- null} - -t 30.2956 -s 1 -d 3 -p ack -e 40 -c 0 -i 615 -a 1 -x {21.0 3.0 304 ------- null} h -t 30.2956 -s 1 -d 3 -p ack -e 40 -c 0 -i 615 -a 1 -x {21.0 3.0 -1 ------- null} r -t 30.2972 -s 28 -d 1 -p ack -e 40 -c 0 -i 616 -a 1 -x {21.0 3.0 305 ------- null} + -t 30.2972 -s 1 -d 3 -p ack -e 40 -c 0 -i 616 -a 1 -x {21.0 3.0 305 ------- null} - -t 30.2972 -s 1 -d 3 -p ack -e 40 -c 0 -i 616 -a 1 -x {21.0 3.0 305 ------- null} h -t 30.2972 -s 1 -d 3 -p ack -e 40 -c 0 -i 616 -a 1 -x {21.0 3.0 -1 ------- null} r -t 30.2988 -s 28 -d 1 -p ack -e 40 -c 0 -i 617 -a 1 -x {21.0 3.0 306 ------- null} + -t 30.2988 -s 1 -d 3 -p ack -e 40 -c 0 -i 617 -a 1 -x {21.0 3.0 306 ------- null} - -t 30.2988 -s 1 -d 3 -p ack -e 40 -c 0 -i 617 -a 1 -x {21.0 3.0 306 ------- null} h -t 30.2988 -s 1 -d 3 -p ack -e 40 -c 0 -i 617 -a 1 -x {21.0 3.0 -1 ------- null} r -t 30.3004 -s 28 -d 1 -p ack -e 40 -c 0 -i 618 -a 1 -x {21.0 3.0 307 ------- null} + -t 30.3004 -s 1 -d 3 -p ack -e 40 -c 0 -i 618 -a 1 -x {21.0 3.0 307 ------- null} - -t 30.3004 -s 1 -d 3 -p ack -e 40 -c 0 -i 618 -a 1 -x {21.0 3.0 307 ------- null} h -t 30.3004 -s 1 -d 3 -p ack -e 40 -c 0 -i 618 -a 1 -x {21.0 3.0 -1 ------- null} r -t 30.302 -s 28 -d 1 -p ack -e 40 -c 0 -i 619 -a 1 -x {21.0 3.0 308 ------- null} + -t 30.302 -s 1 -d 3 -p ack -e 40 -c 0 -i 619 -a 1 -x {21.0 3.0 308 ------- null} - -t 30.302 -s 1 -d 3 -p ack -e 40 -c 0 -i 619 -a 1 -x {21.0 3.0 308 ------- null} h -t 30.302 -s 1 -d 3 -p ack -e 40 -c 0 -i 619 -a 1 -x {21.0 3.0 -1 ------- null} r -t 30.3036 -s 28 -d 1 -p ack -e 40 -c 0 -i 620 -a 1 -x {21.0 3.0 309 ------- null} + -t 30.3036 -s 1 -d 3 -p ack -e 40 -c 0 -i 620 -a 1 -x {21.0 3.0 309 ------- null} - -t 30.3036 -s 1 -d 3 -p ack -e 40 -c 0 -i 620 -a 1 -x {21.0 3.0 309 ------- null} h -t 30.3036 -s 1 -d 3 -p ack -e 40 -c 0 -i 620 -a 1 -x {21.0 3.0 -1 ------- null} r -t 30.3052 -s 28 -d 1 -p ack -e 40 -c 0 -i 621 -a 1 -x {21.0 3.0 310 ------- null} + -t 30.3052 -s 1 -d 3 -p ack -e 40 -c 0 -i 621 -a 1 -x {21.0 3.0 310 ------- null} - -t 30.3052 -s 1 -d 3 -p ack -e 40 -c 0 -i 621 -a 1 -x {21.0 3.0 310 ------- null} h -t 30.3052 -s 1 -d 3 -p ack -e 40 -c 0 -i 621 -a 1 -x {21.0 3.0 -1 ------- null} r -t 30.4148 -s 1 -d 3 -p ack -e 40 -c 0 -i 602 -a 1 -x {21.0 3.0 291 ------- null} + -t 30.4148 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 622 -a 0 -x {3.0 21.0 311 ------- null} - -t 30.4148 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 622 -a 0 -x {3.0 21.0 311 ------- null} h -t 30.4148 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 622 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.4164 -s 1 -d 3 -p ack -e 40 -c 0 -i 603 -a 1 -x {21.0 3.0 292 ------- null} + -t 30.4164 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {3.0 21.0 312 ------- null} - -t 30.4164 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {3.0 21.0 312 ------- null} h -t 30.4164 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.418 -s 1 -d 3 -p ack -e 40 -c 0 -i 604 -a 1 -x {21.0 3.0 293 ------- null} + -t 30.418 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 624 -a 0 -x {3.0 21.0 313 ------- null} - -t 30.418 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 624 -a 0 -x {3.0 21.0 313 ------- null} h -t 30.418 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 624 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.4196 -s 1 -d 3 -p ack -e 40 -c 0 -i 605 -a 1 -x {21.0 3.0 294 ------- null} + -t 30.4196 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {3.0 21.0 314 ------- null} - -t 30.4196 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {3.0 21.0 314 ------- null} h -t 30.4196 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.4212 -s 1 -d 3 -p ack -e 40 -c 0 -i 606 -a 1 -x {21.0 3.0 295 ------- null} + -t 30.4212 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 626 -a 0 -x {3.0 21.0 315 ------- null} - -t 30.4212 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 626 -a 0 -x {3.0 21.0 315 ------- null} h -t 30.4212 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 626 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.4228 -s 1 -d 3 -p ack -e 40 -c 0 -i 607 -a 1 -x {21.0 3.0 296 ------- null} + -t 30.4228 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {3.0 21.0 316 ------- null} - -t 30.4228 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {3.0 21.0 316 ------- null} h -t 30.4228 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.4244 -s 1 -d 3 -p ack -e 40 -c 0 -i 608 -a 1 -x {21.0 3.0 297 ------- null} + -t 30.4244 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 628 -a 0 -x {3.0 21.0 317 ------- null} - -t 30.4244 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 628 -a 0 -x {3.0 21.0 317 ------- null} h -t 30.4244 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 628 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.426 -s 1 -d 3 -p ack -e 40 -c 0 -i 609 -a 1 -x {21.0 3.0 298 ------- null} + -t 30.426 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {3.0 21.0 318 ------- null} - -t 30.426 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {3.0 21.0 318 ------- null} h -t 30.426 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.4276 -s 1 -d 3 -p ack -e 40 -c 0 -i 610 -a 1 -x {21.0 3.0 299 ------- null} + -t 30.4276 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 630 -a 0 -x {3.0 21.0 319 ------- null} - -t 30.4276 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 630 -a 0 -x {3.0 21.0 319 ------- null} h -t 30.4276 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 630 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.4292 -s 1 -d 3 -p ack -e 40 -c 0 -i 611 -a 1 -x {21.0 3.0 300 ------- null} + -t 30.4292 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {3.0 21.0 320 ------- null} - -t 30.4292 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {3.0 21.0 320 ------- null} h -t 30.4292 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.4308 -s 1 -d 3 -p ack -e 40 -c 0 -i 612 -a 1 -x {21.0 3.0 301 ------- null} + -t 30.4308 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 632 -a 0 -x {3.0 21.0 321 ------- null} - -t 30.4308 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 632 -a 0 -x {3.0 21.0 321 ------- null} h -t 30.4308 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 632 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.4324 -s 1 -d 3 -p ack -e 40 -c 0 -i 613 -a 1 -x {21.0 3.0 302 ------- null} + -t 30.4324 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {3.0 21.0 322 ------- null} - -t 30.4324 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {3.0 21.0 322 ------- null} h -t 30.4324 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.434 -s 1 -d 3 -p ack -e 40 -c 0 -i 614 -a 1 -x {21.0 3.0 303 ------- null} + -t 30.434 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 634 -a 0 -x {3.0 21.0 323 ------- null} - -t 30.434 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 634 -a 0 -x {3.0 21.0 323 ------- null} h -t 30.434 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 634 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.4356 -s 1 -d 3 -p ack -e 40 -c 0 -i 615 -a 1 -x {21.0 3.0 304 ------- null} + -t 30.4356 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {3.0 21.0 324 ------- null} - -t 30.4356 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {3.0 21.0 324 ------- null} h -t 30.4356 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.4372 -s 1 -d 3 -p ack -e 40 -c 0 -i 616 -a 1 -x {21.0 3.0 305 ------- null} + -t 30.4372 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 636 -a 0 -x {3.0 21.0 325 ------- null} - -t 30.4372 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 636 -a 0 -x {3.0 21.0 325 ------- null} h -t 30.4372 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 636 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.4388 -s 1 -d 3 -p ack -e 40 -c 0 -i 617 -a 1 -x {21.0 3.0 306 ------- null} + -t 30.4388 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {3.0 21.0 326 ------- null} - -t 30.4388 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {3.0 21.0 326 ------- null} h -t 30.4388 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.4404 -s 1 -d 3 -p ack -e 40 -c 0 -i 618 -a 1 -x {21.0 3.0 307 ------- null} + -t 30.4404 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 638 -a 0 -x {3.0 21.0 327 ------- null} - -t 30.4404 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 638 -a 0 -x {3.0 21.0 327 ------- null} h -t 30.4404 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 638 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.442 -s 1 -d 3 -p ack -e 40 -c 0 -i 619 -a 1 -x {21.0 3.0 308 ------- null} + -t 30.442 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {3.0 21.0 328 ------- null} - -t 30.442 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {3.0 21.0 328 ------- null} h -t 30.442 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.4436 -s 1 -d 3 -p ack -e 40 -c 0 -i 620 -a 1 -x {21.0 3.0 309 ------- null} + -t 30.4436 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 640 -a 0 -x {3.0 21.0 329 ------- null} - -t 30.4436 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 640 -a 0 -x {3.0 21.0 329 ------- null} h -t 30.4436 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 640 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.4452 -s 1 -d 3 -p ack -e 40 -c 0 -i 621 -a 1 -x {21.0 3.0 310 ------- null} + -t 30.4452 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {3.0 21.0 330 ------- null} - -t 30.4452 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {3.0 21.0 330 ------- null} h -t 30.4452 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.5564 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 622 -a 0 -x {3.0 21.0 311 ------- null} + -t 30.5564 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 622 -a 0 -x {3.0 21.0 311 ------- null} - -t 30.5564 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 622 -a 0 -x {3.0 21.0 311 ------- null} h -t 30.5564 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 622 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.558 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {3.0 21.0 312 ------- null} + -t 30.558 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {3.0 21.0 312 ------- null} - -t 30.558 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {3.0 21.0 312 ------- null} h -t 30.558 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.5596 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 624 -a 0 -x {3.0 21.0 313 ------- null} + -t 30.5596 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 624 -a 0 -x {3.0 21.0 313 ------- null} - -t 30.5596 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 624 -a 0 -x {3.0 21.0 313 ------- null} h -t 30.5596 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 624 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.5612 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {3.0 21.0 314 ------- null} + -t 30.5612 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {3.0 21.0 314 ------- null} - -t 30.5612 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {3.0 21.0 314 ------- null} h -t 30.5612 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.5628 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 626 -a 0 -x {3.0 21.0 315 ------- null} + -t 30.5628 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 626 -a 0 -x {3.0 21.0 315 ------- null} - -t 30.5628 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 626 -a 0 -x {3.0 21.0 315 ------- null} h -t 30.5628 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 626 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.5644 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {3.0 21.0 316 ------- null} + -t 30.5644 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {3.0 21.0 316 ------- null} - -t 30.5644 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {3.0 21.0 316 ------- null} h -t 30.5644 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.566 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 628 -a 0 -x {3.0 21.0 317 ------- null} + -t 30.566 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 628 -a 0 -x {3.0 21.0 317 ------- null} - -t 30.566 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 628 -a 0 -x {3.0 21.0 317 ------- null} h -t 30.566 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 628 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.5676 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {3.0 21.0 318 ------- null} + -t 30.5676 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {3.0 21.0 318 ------- null} - -t 30.5676 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {3.0 21.0 318 ------- null} h -t 30.5676 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.5692 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 630 -a 0 -x {3.0 21.0 319 ------- null} + -t 30.5692 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 630 -a 0 -x {3.0 21.0 319 ------- null} - -t 30.5692 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 630 -a 0 -x {3.0 21.0 319 ------- null} h -t 30.5692 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 630 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.5708 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {3.0 21.0 320 ------- null} + -t 30.5708 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {3.0 21.0 320 ------- null} - -t 30.5708 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {3.0 21.0 320 ------- null} h -t 30.5708 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.5724 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 632 -a 0 -x {3.0 21.0 321 ------- null} + -t 30.5724 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 632 -a 0 -x {3.0 21.0 321 ------- null} - -t 30.5724 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 632 -a 0 -x {3.0 21.0 321 ------- null} h -t 30.5724 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 632 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.574 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {3.0 21.0 322 ------- null} + -t 30.574 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {3.0 21.0 322 ------- null} - -t 30.574 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {3.0 21.0 322 ------- null} h -t 30.574 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.5756 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 634 -a 0 -x {3.0 21.0 323 ------- null} + -t 30.5756 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 634 -a 0 -x {3.0 21.0 323 ------- null} - -t 30.5756 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 634 -a 0 -x {3.0 21.0 323 ------- null} h -t 30.5756 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 634 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.5772 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {3.0 21.0 324 ------- null} + -t 30.5772 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {3.0 21.0 324 ------- null} - -t 30.5772 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {3.0 21.0 324 ------- null} h -t 30.5772 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.5788 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 636 -a 0 -x {3.0 21.0 325 ------- null} + -t 30.5788 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 636 -a 0 -x {3.0 21.0 325 ------- null} - -t 30.5788 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 636 -a 0 -x {3.0 21.0 325 ------- null} h -t 30.5788 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 636 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.5804 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {3.0 21.0 326 ------- null} + -t 30.5804 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {3.0 21.0 326 ------- null} - -t 30.5804 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {3.0 21.0 326 ------- null} h -t 30.5804 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.582 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 638 -a 0 -x {3.0 21.0 327 ------- null} + -t 30.582 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 638 -a 0 -x {3.0 21.0 327 ------- null} - -t 30.582 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 638 -a 0 -x {3.0 21.0 327 ------- null} h -t 30.582 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 638 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.5836 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {3.0 21.0 328 ------- null} + -t 30.5836 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {3.0 21.0 328 ------- null} - -t 30.5836 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {3.0 21.0 328 ------- null} h -t 30.5836 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.5852 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 640 -a 0 -x {3.0 21.0 329 ------- null} + -t 30.5852 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 640 -a 0 -x {3.0 21.0 329 ------- null} - -t 30.5852 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 640 -a 0 -x {3.0 21.0 329 ------- null} h -t 30.5852 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 640 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.5868 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {3.0 21.0 330 ------- null} + -t 30.5868 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {3.0 21.0 330 ------- null} - -t 30.5868 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {3.0 21.0 330 ------- null} h -t 30.5868 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.858 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 622 -a 0 -x {3.0 21.0 311 ------- null} + -t 30.858 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 622 -a 0 -x {3.0 21.0 311 ------- null} - -t 30.858 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 622 -a 0 -x {3.0 21.0 311 ------- null} h -t 30.858 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 622 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.8596 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {3.0 21.0 312 ------- null} + -t 30.8596 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {3.0 21.0 312 ------- null} - -t 30.8596 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {3.0 21.0 312 ------- null} h -t 30.8596 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.8612 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 624 -a 0 -x {3.0 21.0 313 ------- null} + -t 30.8612 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 624 -a 0 -x {3.0 21.0 313 ------- null} - -t 30.8612 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 624 -a 0 -x {3.0 21.0 313 ------- null} h -t 30.8612 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 624 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.8628 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {3.0 21.0 314 ------- null} + -t 30.8628 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {3.0 21.0 314 ------- null} - -t 30.8628 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {3.0 21.0 314 ------- null} h -t 30.8628 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.8644 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 626 -a 0 -x {3.0 21.0 315 ------- null} + -t 30.8644 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 626 -a 0 -x {3.0 21.0 315 ------- null} - -t 30.8644 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 626 -a 0 -x {3.0 21.0 315 ------- null} h -t 30.8644 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 626 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.866 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {3.0 21.0 316 ------- null} + -t 30.866 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {3.0 21.0 316 ------- null} - -t 30.866 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {3.0 21.0 316 ------- null} h -t 30.866 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.8676 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 628 -a 0 -x {3.0 21.0 317 ------- null} + -t 30.8676 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 628 -a 0 -x {3.0 21.0 317 ------- null} - -t 30.8676 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 628 -a 0 -x {3.0 21.0 317 ------- null} h -t 30.8676 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 628 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.8692 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {3.0 21.0 318 ------- null} + -t 30.8692 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {3.0 21.0 318 ------- null} - -t 30.8692 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {3.0 21.0 318 ------- null} h -t 30.8692 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.8708 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 630 -a 0 -x {3.0 21.0 319 ------- null} + -t 30.8708 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 630 -a 0 -x {3.0 21.0 319 ------- null} - -t 30.8708 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 630 -a 0 -x {3.0 21.0 319 ------- null} h -t 30.8708 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 630 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.8724 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {3.0 21.0 320 ------- null} + -t 30.8724 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {3.0 21.0 320 ------- null} - -t 30.8724 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {3.0 21.0 320 ------- null} h -t 30.8724 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.874 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 632 -a 0 -x {3.0 21.0 321 ------- null} + -t 30.874 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 632 -a 0 -x {3.0 21.0 321 ------- null} - -t 30.874 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 632 -a 0 -x {3.0 21.0 321 ------- null} h -t 30.874 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 632 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.8756 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {3.0 21.0 322 ------- null} + -t 30.8756 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {3.0 21.0 322 ------- null} - -t 30.8756 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {3.0 21.0 322 ------- null} h -t 30.8756 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.8772 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 634 -a 0 -x {3.0 21.0 323 ------- null} + -t 30.8772 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 634 -a 0 -x {3.0 21.0 323 ------- null} - -t 30.8772 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 634 -a 0 -x {3.0 21.0 323 ------- null} h -t 30.8772 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 634 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.8788 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {3.0 21.0 324 ------- null} + -t 30.8788 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {3.0 21.0 324 ------- null} - -t 30.8788 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {3.0 21.0 324 ------- null} h -t 30.8788 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.8804 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 636 -a 0 -x {3.0 21.0 325 ------- null} + -t 30.8804 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 636 -a 0 -x {3.0 21.0 325 ------- null} - -t 30.8804 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 636 -a 0 -x {3.0 21.0 325 ------- null} h -t 30.8804 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 636 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.882 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {3.0 21.0 326 ------- null} + -t 30.882 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {3.0 21.0 326 ------- null} - -t 30.882 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {3.0 21.0 326 ------- null} h -t 30.882 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.8836 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 638 -a 0 -x {3.0 21.0 327 ------- null} + -t 30.8836 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 638 -a 0 -x {3.0 21.0 327 ------- null} - -t 30.8836 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 638 -a 0 -x {3.0 21.0 327 ------- null} h -t 30.8836 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 638 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.8852 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {3.0 21.0 328 ------- null} + -t 30.8852 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {3.0 21.0 328 ------- null} - -t 30.8852 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {3.0 21.0 328 ------- null} h -t 30.8852 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.8868 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 640 -a 0 -x {3.0 21.0 329 ------- null} + -t 30.8868 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 640 -a 0 -x {3.0 21.0 329 ------- null} - -t 30.8868 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 640 -a 0 -x {3.0 21.0 329 ------- null} h -t 30.8868 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 640 -a 0 -x {3.0 21.0 -1 ------- null} r -t 30.8884 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {3.0 21.0 330 ------- null} + -t 30.8884 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {3.0 21.0 330 ------- null} - -t 30.8884 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {3.0 21.0 330 ------- null} h -t 30.8884 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {3.0 21.0 -1 ------- null} r -t 31.2096 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 622 -a 0 -x {3.0 21.0 311 ------- null} + -t 31.2096 -s 21 -d 28 -p ack -e 40 -c 0 -i 642 -a 1 -x {21.0 3.0 311 ------- null} - -t 31.2096 -s 21 -d 28 -p ack -e 40 -c 0 -i 642 -a 1 -x {21.0 3.0 311 ------- null} h -t 31.2096 -s 21 -d 28 -p ack -e 40 -c 0 -i 642 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.2112 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {3.0 21.0 312 ------- null} + -t 31.2112 -s 21 -d 28 -p ack -e 40 -c 0 -i 643 -a 1 -x {21.0 3.0 312 ------- null} - -t 31.2112 -s 21 -d 28 -p ack -e 40 -c 0 -i 643 -a 1 -x {21.0 3.0 312 ------- null} h -t 31.2112 -s 21 -d 28 -p ack -e 40 -c 0 -i 643 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.2128 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 624 -a 0 -x {3.0 21.0 313 ------- null} + -t 31.2128 -s 21 -d 28 -p ack -e 40 -c 0 -i 644 -a 1 -x {21.0 3.0 313 ------- null} - -t 31.2128 -s 21 -d 28 -p ack -e 40 -c 0 -i 644 -a 1 -x {21.0 3.0 313 ------- null} h -t 31.2128 -s 21 -d 28 -p ack -e 40 -c 0 -i 644 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.2144 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {3.0 21.0 314 ------- null} + -t 31.2144 -s 21 -d 28 -p ack -e 40 -c 0 -i 645 -a 1 -x {21.0 3.0 314 ------- null} - -t 31.2144 -s 21 -d 28 -p ack -e 40 -c 0 -i 645 -a 1 -x {21.0 3.0 314 ------- null} h -t 31.2144 -s 21 -d 28 -p ack -e 40 -c 0 -i 645 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.216 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 626 -a 0 -x {3.0 21.0 315 ------- null} + -t 31.216 -s 21 -d 28 -p ack -e 40 -c 0 -i 646 -a 1 -x {21.0 3.0 315 ------- null} - -t 31.216 -s 21 -d 28 -p ack -e 40 -c 0 -i 646 -a 1 -x {21.0 3.0 315 ------- null} h -t 31.216 -s 21 -d 28 -p ack -e 40 -c 0 -i 646 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.2176 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {3.0 21.0 316 ------- null} + -t 31.2176 -s 21 -d 28 -p ack -e 40 -c 0 -i 647 -a 1 -x {21.0 3.0 316 ------- null} - -t 31.2176 -s 21 -d 28 -p ack -e 40 -c 0 -i 647 -a 1 -x {21.0 3.0 316 ------- null} h -t 31.2176 -s 21 -d 28 -p ack -e 40 -c 0 -i 647 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.2192 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 628 -a 0 -x {3.0 21.0 317 ------- null} + -t 31.2192 -s 21 -d 28 -p ack -e 40 -c 0 -i 648 -a 1 -x {21.0 3.0 317 ------- null} - -t 31.2192 -s 21 -d 28 -p ack -e 40 -c 0 -i 648 -a 1 -x {21.0 3.0 317 ------- null} h -t 31.2192 -s 21 -d 28 -p ack -e 40 -c 0 -i 648 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.2208 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {3.0 21.0 318 ------- null} + -t 31.2208 -s 21 -d 28 -p ack -e 40 -c 0 -i 649 -a 1 -x {21.0 3.0 318 ------- null} - -t 31.2208 -s 21 -d 28 -p ack -e 40 -c 0 -i 649 -a 1 -x {21.0 3.0 318 ------- null} h -t 31.2208 -s 21 -d 28 -p ack -e 40 -c 0 -i 649 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.2224 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 630 -a 0 -x {3.0 21.0 319 ------- null} + -t 31.2224 -s 21 -d 28 -p ack -e 40 -c 0 -i 650 -a 1 -x {21.0 3.0 319 ------- null} - -t 31.2224 -s 21 -d 28 -p ack -e 40 -c 0 -i 650 -a 1 -x {21.0 3.0 319 ------- null} h -t 31.2224 -s 21 -d 28 -p ack -e 40 -c 0 -i 650 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.224 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {3.0 21.0 320 ------- null} + -t 31.224 -s 21 -d 28 -p ack -e 40 -c 0 -i 651 -a 1 -x {21.0 3.0 320 ------- null} - -t 31.224 -s 21 -d 28 -p ack -e 40 -c 0 -i 651 -a 1 -x {21.0 3.0 320 ------- null} h -t 31.224 -s 21 -d 28 -p ack -e 40 -c 0 -i 651 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.2256 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 632 -a 0 -x {3.0 21.0 321 ------- null} + -t 31.2256 -s 21 -d 28 -p ack -e 40 -c 0 -i 652 -a 1 -x {21.0 3.0 321 ------- null} - -t 31.2256 -s 21 -d 28 -p ack -e 40 -c 0 -i 652 -a 1 -x {21.0 3.0 321 ------- null} h -t 31.2256 -s 21 -d 28 -p ack -e 40 -c 0 -i 652 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.2272 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {3.0 21.0 322 ------- null} + -t 31.2272 -s 21 -d 28 -p ack -e 40 -c 0 -i 653 -a 1 -x {21.0 3.0 322 ------- null} - -t 31.2272 -s 21 -d 28 -p ack -e 40 -c 0 -i 653 -a 1 -x {21.0 3.0 322 ------- null} h -t 31.2272 -s 21 -d 28 -p ack -e 40 -c 0 -i 653 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.2288 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 634 -a 0 -x {3.0 21.0 323 ------- null} + -t 31.2288 -s 21 -d 28 -p ack -e 40 -c 0 -i 654 -a 1 -x {21.0 3.0 323 ------- null} - -t 31.2288 -s 21 -d 28 -p ack -e 40 -c 0 -i 654 -a 1 -x {21.0 3.0 323 ------- null} h -t 31.2288 -s 21 -d 28 -p ack -e 40 -c 0 -i 654 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.2304 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {3.0 21.0 324 ------- null} + -t 31.2304 -s 21 -d 28 -p ack -e 40 -c 0 -i 655 -a 1 -x {21.0 3.0 324 ------- null} - -t 31.2304 -s 21 -d 28 -p ack -e 40 -c 0 -i 655 -a 1 -x {21.0 3.0 324 ------- null} h -t 31.2304 -s 21 -d 28 -p ack -e 40 -c 0 -i 655 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.232 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 636 -a 0 -x {3.0 21.0 325 ------- null} + -t 31.232 -s 21 -d 28 -p ack -e 40 -c 0 -i 656 -a 1 -x {21.0 3.0 325 ------- null} - -t 31.232 -s 21 -d 28 -p ack -e 40 -c 0 -i 656 -a 1 -x {21.0 3.0 325 ------- null} h -t 31.232 -s 21 -d 28 -p ack -e 40 -c 0 -i 656 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.2336 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {3.0 21.0 326 ------- null} + -t 31.2336 -s 21 -d 28 -p ack -e 40 -c 0 -i 657 -a 1 -x {21.0 3.0 326 ------- null} - -t 31.2336 -s 21 -d 28 -p ack -e 40 -c 0 -i 657 -a 1 -x {21.0 3.0 326 ------- null} h -t 31.2336 -s 21 -d 28 -p ack -e 40 -c 0 -i 657 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.2352 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 638 -a 0 -x {3.0 21.0 327 ------- null} + -t 31.2352 -s 21 -d 28 -p ack -e 40 -c 0 -i 658 -a 1 -x {21.0 3.0 327 ------- null} - -t 31.2352 -s 21 -d 28 -p ack -e 40 -c 0 -i 658 -a 1 -x {21.0 3.0 327 ------- null} h -t 31.2352 -s 21 -d 28 -p ack -e 40 -c 0 -i 658 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.2368 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {3.0 21.0 328 ------- null} + -t 31.2368 -s 21 -d 28 -p ack -e 40 -c 0 -i 659 -a 1 -x {21.0 3.0 328 ------- null} - -t 31.2368 -s 21 -d 28 -p ack -e 40 -c 0 -i 659 -a 1 -x {21.0 3.0 328 ------- null} h -t 31.2368 -s 21 -d 28 -p ack -e 40 -c 0 -i 659 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.2384 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 640 -a 0 -x {3.0 21.0 329 ------- null} + -t 31.2384 -s 21 -d 28 -p ack -e 40 -c 0 -i 660 -a 1 -x {21.0 3.0 329 ------- null} - -t 31.2384 -s 21 -d 28 -p ack -e 40 -c 0 -i 660 -a 1 -x {21.0 3.0 329 ------- null} h -t 31.2384 -s 21 -d 28 -p ack -e 40 -c 0 -i 660 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.24 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {3.0 21.0 330 ------- null} + -t 31.24 -s 21 -d 28 -p ack -e 40 -c 0 -i 661 -a 1 -x {21.0 3.0 330 ------- null} - -t 31.24 -s 21 -d 28 -p ack -e 40 -c 0 -i 661 -a 1 -x {21.0 3.0 330 ------- null} h -t 31.24 -s 21 -d 28 -p ack -e 40 -c 0 -i 661 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.5597 -s 21 -d 28 -p ack -e 40 -c 0 -i 642 -a 1 -x {21.0 3.0 311 ------- null} + -t 31.5597 -s 28 -d 1 -p ack -e 40 -c 0 -i 642 -a 1 -x {21.0 3.0 311 ------- null} - -t 31.5597 -s 28 -d 1 -p ack -e 40 -c 0 -i 642 -a 1 -x {21.0 3.0 311 ------- null} h -t 31.5597 -s 28 -d 1 -p ack -e 40 -c 0 -i 642 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.5613 -s 21 -d 28 -p ack -e 40 -c 0 -i 643 -a 1 -x {21.0 3.0 312 ------- null} + -t 31.5613 -s 28 -d 1 -p ack -e 40 -c 0 -i 643 -a 1 -x {21.0 3.0 312 ------- null} - -t 31.5613 -s 28 -d 1 -p ack -e 40 -c 0 -i 643 -a 1 -x {21.0 3.0 312 ------- null} h -t 31.5613 -s 28 -d 1 -p ack -e 40 -c 0 -i 643 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.5629 -s 21 -d 28 -p ack -e 40 -c 0 -i 644 -a 1 -x {21.0 3.0 313 ------- null} + -t 31.5629 -s 28 -d 1 -p ack -e 40 -c 0 -i 644 -a 1 -x {21.0 3.0 313 ------- null} - -t 31.5629 -s 28 -d 1 -p ack -e 40 -c 0 -i 644 -a 1 -x {21.0 3.0 313 ------- null} h -t 31.5629 -s 28 -d 1 -p ack -e 40 -c 0 -i 644 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.5645 -s 21 -d 28 -p ack -e 40 -c 0 -i 645 -a 1 -x {21.0 3.0 314 ------- null} + -t 31.5645 -s 28 -d 1 -p ack -e 40 -c 0 -i 645 -a 1 -x {21.0 3.0 314 ------- null} - -t 31.5645 -s 28 -d 1 -p ack -e 40 -c 0 -i 645 -a 1 -x {21.0 3.0 314 ------- null} h -t 31.5645 -s 28 -d 1 -p ack -e 40 -c 0 -i 645 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.5661 -s 21 -d 28 -p ack -e 40 -c 0 -i 646 -a 1 -x {21.0 3.0 315 ------- null} + -t 31.5661 -s 28 -d 1 -p ack -e 40 -c 0 -i 646 -a 1 -x {21.0 3.0 315 ------- null} - -t 31.5661 -s 28 -d 1 -p ack -e 40 -c 0 -i 646 -a 1 -x {21.0 3.0 315 ------- null} h -t 31.5661 -s 28 -d 1 -p ack -e 40 -c 0 -i 646 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.5677 -s 21 -d 28 -p ack -e 40 -c 0 -i 647 -a 1 -x {21.0 3.0 316 ------- null} + -t 31.5677 -s 28 -d 1 -p ack -e 40 -c 0 -i 647 -a 1 -x {21.0 3.0 316 ------- null} - -t 31.5677 -s 28 -d 1 -p ack -e 40 -c 0 -i 647 -a 1 -x {21.0 3.0 316 ------- null} h -t 31.5677 -s 28 -d 1 -p ack -e 40 -c 0 -i 647 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.5693 -s 21 -d 28 -p ack -e 40 -c 0 -i 648 -a 1 -x {21.0 3.0 317 ------- null} + -t 31.5693 -s 28 -d 1 -p ack -e 40 -c 0 -i 648 -a 1 -x {21.0 3.0 317 ------- null} - -t 31.5693 -s 28 -d 1 -p ack -e 40 -c 0 -i 648 -a 1 -x {21.0 3.0 317 ------- null} h -t 31.5693 -s 28 -d 1 -p ack -e 40 -c 0 -i 648 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.5709 -s 21 -d 28 -p ack -e 40 -c 0 -i 649 -a 1 -x {21.0 3.0 318 ------- null} + -t 31.5709 -s 28 -d 1 -p ack -e 40 -c 0 -i 649 -a 1 -x {21.0 3.0 318 ------- null} - -t 31.5709 -s 28 -d 1 -p ack -e 40 -c 0 -i 649 -a 1 -x {21.0 3.0 318 ------- null} h -t 31.5709 -s 28 -d 1 -p ack -e 40 -c 0 -i 649 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.5725 -s 21 -d 28 -p ack -e 40 -c 0 -i 650 -a 1 -x {21.0 3.0 319 ------- null} + -t 31.5725 -s 28 -d 1 -p ack -e 40 -c 0 -i 650 -a 1 -x {21.0 3.0 319 ------- null} - -t 31.5725 -s 28 -d 1 -p ack -e 40 -c 0 -i 650 -a 1 -x {21.0 3.0 319 ------- null} h -t 31.5725 -s 28 -d 1 -p ack -e 40 -c 0 -i 650 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.5741 -s 21 -d 28 -p ack -e 40 -c 0 -i 651 -a 1 -x {21.0 3.0 320 ------- null} + -t 31.5741 -s 28 -d 1 -p ack -e 40 -c 0 -i 651 -a 1 -x {21.0 3.0 320 ------- null} - -t 31.5741 -s 28 -d 1 -p ack -e 40 -c 0 -i 651 -a 1 -x {21.0 3.0 320 ------- null} h -t 31.5741 -s 28 -d 1 -p ack -e 40 -c 0 -i 651 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.5757 -s 21 -d 28 -p ack -e 40 -c 0 -i 652 -a 1 -x {21.0 3.0 321 ------- null} + -t 31.5757 -s 28 -d 1 -p ack -e 40 -c 0 -i 652 -a 1 -x {21.0 3.0 321 ------- null} - -t 31.5757 -s 28 -d 1 -p ack -e 40 -c 0 -i 652 -a 1 -x {21.0 3.0 321 ------- null} h -t 31.5757 -s 28 -d 1 -p ack -e 40 -c 0 -i 652 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.5773 -s 21 -d 28 -p ack -e 40 -c 0 -i 653 -a 1 -x {21.0 3.0 322 ------- null} + -t 31.5773 -s 28 -d 1 -p ack -e 40 -c 0 -i 653 -a 1 -x {21.0 3.0 322 ------- null} - -t 31.5773 -s 28 -d 1 -p ack -e 40 -c 0 -i 653 -a 1 -x {21.0 3.0 322 ------- null} h -t 31.5773 -s 28 -d 1 -p ack -e 40 -c 0 -i 653 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.5789 -s 21 -d 28 -p ack -e 40 -c 0 -i 654 -a 1 -x {21.0 3.0 323 ------- null} + -t 31.5789 -s 28 -d 1 -p ack -e 40 -c 0 -i 654 -a 1 -x {21.0 3.0 323 ------- null} - -t 31.5789 -s 28 -d 1 -p ack -e 40 -c 0 -i 654 -a 1 -x {21.0 3.0 323 ------- null} h -t 31.5789 -s 28 -d 1 -p ack -e 40 -c 0 -i 654 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.5805 -s 21 -d 28 -p ack -e 40 -c 0 -i 655 -a 1 -x {21.0 3.0 324 ------- null} + -t 31.5805 -s 28 -d 1 -p ack -e 40 -c 0 -i 655 -a 1 -x {21.0 3.0 324 ------- null} - -t 31.5805 -s 28 -d 1 -p ack -e 40 -c 0 -i 655 -a 1 -x {21.0 3.0 324 ------- null} h -t 31.5805 -s 28 -d 1 -p ack -e 40 -c 0 -i 655 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.5821 -s 21 -d 28 -p ack -e 40 -c 0 -i 656 -a 1 -x {21.0 3.0 325 ------- null} + -t 31.5821 -s 28 -d 1 -p ack -e 40 -c 0 -i 656 -a 1 -x {21.0 3.0 325 ------- null} - -t 31.5821 -s 28 -d 1 -p ack -e 40 -c 0 -i 656 -a 1 -x {21.0 3.0 325 ------- null} h -t 31.5821 -s 28 -d 1 -p ack -e 40 -c 0 -i 656 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.5837 -s 21 -d 28 -p ack -e 40 -c 0 -i 657 -a 1 -x {21.0 3.0 326 ------- null} + -t 31.5837 -s 28 -d 1 -p ack -e 40 -c 0 -i 657 -a 1 -x {21.0 3.0 326 ------- null} - -t 31.5837 -s 28 -d 1 -p ack -e 40 -c 0 -i 657 -a 1 -x {21.0 3.0 326 ------- null} h -t 31.5837 -s 28 -d 1 -p ack -e 40 -c 0 -i 657 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.5853 -s 21 -d 28 -p ack -e 40 -c 0 -i 658 -a 1 -x {21.0 3.0 327 ------- null} + -t 31.5853 -s 28 -d 1 -p ack -e 40 -c 0 -i 658 -a 1 -x {21.0 3.0 327 ------- null} - -t 31.5853 -s 28 -d 1 -p ack -e 40 -c 0 -i 658 -a 1 -x {21.0 3.0 327 ------- null} h -t 31.5853 -s 28 -d 1 -p ack -e 40 -c 0 -i 658 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.5869 -s 21 -d 28 -p ack -e 40 -c 0 -i 659 -a 1 -x {21.0 3.0 328 ------- null} + -t 31.5869 -s 28 -d 1 -p ack -e 40 -c 0 -i 659 -a 1 -x {21.0 3.0 328 ------- null} - -t 31.5869 -s 28 -d 1 -p ack -e 40 -c 0 -i 659 -a 1 -x {21.0 3.0 328 ------- null} h -t 31.5869 -s 28 -d 1 -p ack -e 40 -c 0 -i 659 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.5885 -s 21 -d 28 -p ack -e 40 -c 0 -i 660 -a 1 -x {21.0 3.0 329 ------- null} + -t 31.5885 -s 28 -d 1 -p ack -e 40 -c 0 -i 660 -a 1 -x {21.0 3.0 329 ------- null} - -t 31.5885 -s 28 -d 1 -p ack -e 40 -c 0 -i 660 -a 1 -x {21.0 3.0 329 ------- null} h -t 31.5885 -s 28 -d 1 -p ack -e 40 -c 0 -i 660 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.5901 -s 21 -d 28 -p ack -e 40 -c 0 -i 661 -a 1 -x {21.0 3.0 330 ------- null} + -t 31.5901 -s 28 -d 1 -p ack -e 40 -c 0 -i 661 -a 1 -x {21.0 3.0 330 ------- null} - -t 31.5901 -s 28 -d 1 -p ack -e 40 -c 0 -i 661 -a 1 -x {21.0 3.0 330 ------- null} h -t 31.5901 -s 28 -d 1 -p ack -e 40 -c 0 -i 661 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.8598 -s 28 -d 1 -p ack -e 40 -c 0 -i 642 -a 1 -x {21.0 3.0 311 ------- null} + -t 31.8598 -s 1 -d 3 -p ack -e 40 -c 0 -i 642 -a 1 -x {21.0 3.0 311 ------- null} - -t 31.8598 -s 1 -d 3 -p ack -e 40 -c 0 -i 642 -a 1 -x {21.0 3.0 311 ------- null} h -t 31.8598 -s 1 -d 3 -p ack -e 40 -c 0 -i 642 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.8614 -s 28 -d 1 -p ack -e 40 -c 0 -i 643 -a 1 -x {21.0 3.0 312 ------- null} + -t 31.8614 -s 1 -d 3 -p ack -e 40 -c 0 -i 643 -a 1 -x {21.0 3.0 312 ------- null} - -t 31.8614 -s 1 -d 3 -p ack -e 40 -c 0 -i 643 -a 1 -x {21.0 3.0 312 ------- null} h -t 31.8614 -s 1 -d 3 -p ack -e 40 -c 0 -i 643 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.863 -s 28 -d 1 -p ack -e 40 -c 0 -i 644 -a 1 -x {21.0 3.0 313 ------- null} + -t 31.863 -s 1 -d 3 -p ack -e 40 -c 0 -i 644 -a 1 -x {21.0 3.0 313 ------- null} - -t 31.863 -s 1 -d 3 -p ack -e 40 -c 0 -i 644 -a 1 -x {21.0 3.0 313 ------- null} h -t 31.863 -s 1 -d 3 -p ack -e 40 -c 0 -i 644 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.8646 -s 28 -d 1 -p ack -e 40 -c 0 -i 645 -a 1 -x {21.0 3.0 314 ------- null} + -t 31.8646 -s 1 -d 3 -p ack -e 40 -c 0 -i 645 -a 1 -x {21.0 3.0 314 ------- null} - -t 31.8646 -s 1 -d 3 -p ack -e 40 -c 0 -i 645 -a 1 -x {21.0 3.0 314 ------- null} h -t 31.8646 -s 1 -d 3 -p ack -e 40 -c 0 -i 645 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.8662 -s 28 -d 1 -p ack -e 40 -c 0 -i 646 -a 1 -x {21.0 3.0 315 ------- null} + -t 31.8662 -s 1 -d 3 -p ack -e 40 -c 0 -i 646 -a 1 -x {21.0 3.0 315 ------- null} - -t 31.8662 -s 1 -d 3 -p ack -e 40 -c 0 -i 646 -a 1 -x {21.0 3.0 315 ------- null} h -t 31.8662 -s 1 -d 3 -p ack -e 40 -c 0 -i 646 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.8678 -s 28 -d 1 -p ack -e 40 -c 0 -i 647 -a 1 -x {21.0 3.0 316 ------- null} + -t 31.8678 -s 1 -d 3 -p ack -e 40 -c 0 -i 647 -a 1 -x {21.0 3.0 316 ------- null} - -t 31.8678 -s 1 -d 3 -p ack -e 40 -c 0 -i 647 -a 1 -x {21.0 3.0 316 ------- null} h -t 31.8678 -s 1 -d 3 -p ack -e 40 -c 0 -i 647 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.8694 -s 28 -d 1 -p ack -e 40 -c 0 -i 648 -a 1 -x {21.0 3.0 317 ------- null} + -t 31.8694 -s 1 -d 3 -p ack -e 40 -c 0 -i 648 -a 1 -x {21.0 3.0 317 ------- null} - -t 31.8694 -s 1 -d 3 -p ack -e 40 -c 0 -i 648 -a 1 -x {21.0 3.0 317 ------- null} h -t 31.8694 -s 1 -d 3 -p ack -e 40 -c 0 -i 648 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.871 -s 28 -d 1 -p ack -e 40 -c 0 -i 649 -a 1 -x {21.0 3.0 318 ------- null} + -t 31.871 -s 1 -d 3 -p ack -e 40 -c 0 -i 649 -a 1 -x {21.0 3.0 318 ------- null} - -t 31.871 -s 1 -d 3 -p ack -e 40 -c 0 -i 649 -a 1 -x {21.0 3.0 318 ------- null} h -t 31.871 -s 1 -d 3 -p ack -e 40 -c 0 -i 649 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.8726 -s 28 -d 1 -p ack -e 40 -c 0 -i 650 -a 1 -x {21.0 3.0 319 ------- null} + -t 31.8726 -s 1 -d 3 -p ack -e 40 -c 0 -i 650 -a 1 -x {21.0 3.0 319 ------- null} - -t 31.8726 -s 1 -d 3 -p ack -e 40 -c 0 -i 650 -a 1 -x {21.0 3.0 319 ------- null} h -t 31.8726 -s 1 -d 3 -p ack -e 40 -c 0 -i 650 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.8742 -s 28 -d 1 -p ack -e 40 -c 0 -i 651 -a 1 -x {21.0 3.0 320 ------- null} + -t 31.8742 -s 1 -d 3 -p ack -e 40 -c 0 -i 651 -a 1 -x {21.0 3.0 320 ------- null} - -t 31.8742 -s 1 -d 3 -p ack -e 40 -c 0 -i 651 -a 1 -x {21.0 3.0 320 ------- null} h -t 31.8742 -s 1 -d 3 -p ack -e 40 -c 0 -i 651 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.8758 -s 28 -d 1 -p ack -e 40 -c 0 -i 652 -a 1 -x {21.0 3.0 321 ------- null} + -t 31.8758 -s 1 -d 3 -p ack -e 40 -c 0 -i 652 -a 1 -x {21.0 3.0 321 ------- null} - -t 31.8758 -s 1 -d 3 -p ack -e 40 -c 0 -i 652 -a 1 -x {21.0 3.0 321 ------- null} h -t 31.8758 -s 1 -d 3 -p ack -e 40 -c 0 -i 652 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.8774 -s 28 -d 1 -p ack -e 40 -c 0 -i 653 -a 1 -x {21.0 3.0 322 ------- null} + -t 31.8774 -s 1 -d 3 -p ack -e 40 -c 0 -i 653 -a 1 -x {21.0 3.0 322 ------- null} - -t 31.8774 -s 1 -d 3 -p ack -e 40 -c 0 -i 653 -a 1 -x {21.0 3.0 322 ------- null} h -t 31.8774 -s 1 -d 3 -p ack -e 40 -c 0 -i 653 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.879 -s 28 -d 1 -p ack -e 40 -c 0 -i 654 -a 1 -x {21.0 3.0 323 ------- null} + -t 31.879 -s 1 -d 3 -p ack -e 40 -c 0 -i 654 -a 1 -x {21.0 3.0 323 ------- null} - -t 31.879 -s 1 -d 3 -p ack -e 40 -c 0 -i 654 -a 1 -x {21.0 3.0 323 ------- null} h -t 31.879 -s 1 -d 3 -p ack -e 40 -c 0 -i 654 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.8806 -s 28 -d 1 -p ack -e 40 -c 0 -i 655 -a 1 -x {21.0 3.0 324 ------- null} + -t 31.8806 -s 1 -d 3 -p ack -e 40 -c 0 -i 655 -a 1 -x {21.0 3.0 324 ------- null} - -t 31.8806 -s 1 -d 3 -p ack -e 40 -c 0 -i 655 -a 1 -x {21.0 3.0 324 ------- null} h -t 31.8806 -s 1 -d 3 -p ack -e 40 -c 0 -i 655 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.8822 -s 28 -d 1 -p ack -e 40 -c 0 -i 656 -a 1 -x {21.0 3.0 325 ------- null} + -t 31.8822 -s 1 -d 3 -p ack -e 40 -c 0 -i 656 -a 1 -x {21.0 3.0 325 ------- null} - -t 31.8822 -s 1 -d 3 -p ack -e 40 -c 0 -i 656 -a 1 -x {21.0 3.0 325 ------- null} h -t 31.8822 -s 1 -d 3 -p ack -e 40 -c 0 -i 656 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.8838 -s 28 -d 1 -p ack -e 40 -c 0 -i 657 -a 1 -x {21.0 3.0 326 ------- null} + -t 31.8838 -s 1 -d 3 -p ack -e 40 -c 0 -i 657 -a 1 -x {21.0 3.0 326 ------- null} - -t 31.8838 -s 1 -d 3 -p ack -e 40 -c 0 -i 657 -a 1 -x {21.0 3.0 326 ------- null} h -t 31.8838 -s 1 -d 3 -p ack -e 40 -c 0 -i 657 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.8854 -s 28 -d 1 -p ack -e 40 -c 0 -i 658 -a 1 -x {21.0 3.0 327 ------- null} + -t 31.8854 -s 1 -d 3 -p ack -e 40 -c 0 -i 658 -a 1 -x {21.0 3.0 327 ------- null} - -t 31.8854 -s 1 -d 3 -p ack -e 40 -c 0 -i 658 -a 1 -x {21.0 3.0 327 ------- null} h -t 31.8854 -s 1 -d 3 -p ack -e 40 -c 0 -i 658 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.887 -s 28 -d 1 -p ack -e 40 -c 0 -i 659 -a 1 -x {21.0 3.0 328 ------- null} + -t 31.887 -s 1 -d 3 -p ack -e 40 -c 0 -i 659 -a 1 -x {21.0 3.0 328 ------- null} - -t 31.887 -s 1 -d 3 -p ack -e 40 -c 0 -i 659 -a 1 -x {21.0 3.0 328 ------- null} h -t 31.887 -s 1 -d 3 -p ack -e 40 -c 0 -i 659 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.8886 -s 28 -d 1 -p ack -e 40 -c 0 -i 660 -a 1 -x {21.0 3.0 329 ------- null} + -t 31.8886 -s 1 -d 3 -p ack -e 40 -c 0 -i 660 -a 1 -x {21.0 3.0 329 ------- null} - -t 31.8886 -s 1 -d 3 -p ack -e 40 -c 0 -i 660 -a 1 -x {21.0 3.0 329 ------- null} h -t 31.8886 -s 1 -d 3 -p ack -e 40 -c 0 -i 660 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.8902 -s 28 -d 1 -p ack -e 40 -c 0 -i 661 -a 1 -x {21.0 3.0 330 ------- null} + -t 31.8902 -s 1 -d 3 -p ack -e 40 -c 0 -i 661 -a 1 -x {21.0 3.0 330 ------- null} - -t 31.8902 -s 1 -d 3 -p ack -e 40 -c 0 -i 661 -a 1 -x {21.0 3.0 330 ------- null} h -t 31.8902 -s 1 -d 3 -p ack -e 40 -c 0 -i 661 -a 1 -x {21.0 3.0 -1 ------- null} r -t 31.9998 -s 1 -d 3 -p ack -e 40 -c 0 -i 642 -a 1 -x {21.0 3.0 311 ------- null} + -t 31.9998 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 662 -a 0 -x {3.0 21.0 331 ------- null} - -t 31.9998 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 662 -a 0 -x {3.0 21.0 331 ------- null} h -t 31.9998 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 662 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.0014 -s 1 -d 3 -p ack -e 40 -c 0 -i 643 -a 1 -x {21.0 3.0 312 ------- null} + -t 32.0014 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {3.0 21.0 332 ------- null} - -t 32.0014 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {3.0 21.0 332 ------- null} h -t 32.0014 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.003 -s 1 -d 3 -p ack -e 40 -c 0 -i 644 -a 1 -x {21.0 3.0 313 ------- null} + -t 32.003 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 664 -a 0 -x {3.0 21.0 333 ------- null} - -t 32.003 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 664 -a 0 -x {3.0 21.0 333 ------- null} h -t 32.003 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 664 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.0046 -s 1 -d 3 -p ack -e 40 -c 0 -i 645 -a 1 -x {21.0 3.0 314 ------- null} + -t 32.0046 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {3.0 21.0 334 ------- null} - -t 32.0046 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {3.0 21.0 334 ------- null} h -t 32.0046 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.0062 -s 1 -d 3 -p ack -e 40 -c 0 -i 646 -a 1 -x {21.0 3.0 315 ------- null} + -t 32.0062 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 666 -a 0 -x {3.0 21.0 335 ------- null} - -t 32.0062 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 666 -a 0 -x {3.0 21.0 335 ------- null} h -t 32.0062 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 666 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.0078 -s 1 -d 3 -p ack -e 40 -c 0 -i 647 -a 1 -x {21.0 3.0 316 ------- null} + -t 32.0078 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {3.0 21.0 336 ------- null} - -t 32.0078 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {3.0 21.0 336 ------- null} h -t 32.0078 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.0094 -s 1 -d 3 -p ack -e 40 -c 0 -i 648 -a 1 -x {21.0 3.0 317 ------- null} + -t 32.0094 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 668 -a 0 -x {3.0 21.0 337 ------- null} - -t 32.0094 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 668 -a 0 -x {3.0 21.0 337 ------- null} h -t 32.0094 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 668 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.011 -s 1 -d 3 -p ack -e 40 -c 0 -i 649 -a 1 -x {21.0 3.0 318 ------- null} + -t 32.011 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {3.0 21.0 338 ------- null} - -t 32.011 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {3.0 21.0 338 ------- null} h -t 32.011 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.0126 -s 1 -d 3 -p ack -e 40 -c 0 -i 650 -a 1 -x {21.0 3.0 319 ------- null} + -t 32.0126 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 670 -a 0 -x {3.0 21.0 339 ------- null} - -t 32.0126 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 670 -a 0 -x {3.0 21.0 339 ------- null} h -t 32.0126 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 670 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.0142 -s 1 -d 3 -p ack -e 40 -c 0 -i 651 -a 1 -x {21.0 3.0 320 ------- null} + -t 32.0142 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {3.0 21.0 340 ------- null} - -t 32.0142 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {3.0 21.0 340 ------- null} h -t 32.0142 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.0158 -s 1 -d 3 -p ack -e 40 -c 0 -i 652 -a 1 -x {21.0 3.0 321 ------- null} + -t 32.0158 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 672 -a 0 -x {3.0 21.0 341 ------- null} - -t 32.0158 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 672 -a 0 -x {3.0 21.0 341 ------- null} h -t 32.0158 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 672 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.0174 -s 1 -d 3 -p ack -e 40 -c 0 -i 653 -a 1 -x {21.0 3.0 322 ------- null} + -t 32.0174 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {3.0 21.0 342 ------- null} - -t 32.0174 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {3.0 21.0 342 ------- null} h -t 32.0174 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.019 -s 1 -d 3 -p ack -e 40 -c 0 -i 654 -a 1 -x {21.0 3.0 323 ------- null} + -t 32.019 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 674 -a 0 -x {3.0 21.0 343 ------- null} - -t 32.019 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 674 -a 0 -x {3.0 21.0 343 ------- null} h -t 32.019 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 674 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.0206 -s 1 -d 3 -p ack -e 40 -c 0 -i 655 -a 1 -x {21.0 3.0 324 ------- null} + -t 32.0206 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {3.0 21.0 344 ------- null} - -t 32.0206 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {3.0 21.0 344 ------- null} h -t 32.0206 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.0222 -s 1 -d 3 -p ack -e 40 -c 0 -i 656 -a 1 -x {21.0 3.0 325 ------- null} + -t 32.0222 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 676 -a 0 -x {3.0 21.0 345 ------- null} - -t 32.0222 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 676 -a 0 -x {3.0 21.0 345 ------- null} h -t 32.0222 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 676 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.0238 -s 1 -d 3 -p ack -e 40 -c 0 -i 657 -a 1 -x {21.0 3.0 326 ------- null} + -t 32.0238 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {3.0 21.0 346 ------- null} - -t 32.0238 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {3.0 21.0 346 ------- null} h -t 32.0238 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.0254 -s 1 -d 3 -p ack -e 40 -c 0 -i 658 -a 1 -x {21.0 3.0 327 ------- null} + -t 32.0254 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 678 -a 0 -x {3.0 21.0 347 ------- null} - -t 32.0254 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 678 -a 0 -x {3.0 21.0 347 ------- null} h -t 32.0254 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 678 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.027 -s 1 -d 3 -p ack -e 40 -c 0 -i 659 -a 1 -x {21.0 3.0 328 ------- null} + -t 32.027 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {3.0 21.0 348 ------- null} - -t 32.027 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {3.0 21.0 348 ------- null} h -t 32.027 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.0286 -s 1 -d 3 -p ack -e 40 -c 0 -i 660 -a 1 -x {21.0 3.0 329 ------- null} + -t 32.0286 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 680 -a 0 -x {3.0 21.0 349 ------- null} - -t 32.0286 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 680 -a 0 -x {3.0 21.0 349 ------- null} h -t 32.0286 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 680 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.0302 -s 1 -d 3 -p ack -e 40 -c 0 -i 661 -a 1 -x {21.0 3.0 330 ------- null} + -t 32.0302 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {3.0 21.0 350 ------- null} - -t 32.0302 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {3.0 21.0 350 ------- null} h -t 32.0302 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.1414 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 662 -a 0 -x {3.0 21.0 331 ------- null} + -t 32.1414 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 662 -a 0 -x {3.0 21.0 331 ------- null} - -t 32.1414 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 662 -a 0 -x {3.0 21.0 331 ------- null} h -t 32.1414 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 662 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.143 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {3.0 21.0 332 ------- null} + -t 32.143 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {3.0 21.0 332 ------- null} - -t 32.143 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {3.0 21.0 332 ------- null} h -t 32.143 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.1446 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 664 -a 0 -x {3.0 21.0 333 ------- null} + -t 32.1446 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 664 -a 0 -x {3.0 21.0 333 ------- null} - -t 32.1446 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 664 -a 0 -x {3.0 21.0 333 ------- null} h -t 32.1446 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 664 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.1462 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {3.0 21.0 334 ------- null} + -t 32.1462 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {3.0 21.0 334 ------- null} - -t 32.1462 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {3.0 21.0 334 ------- null} h -t 32.1462 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.1478 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 666 -a 0 -x {3.0 21.0 335 ------- null} + -t 32.1478 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 666 -a 0 -x {3.0 21.0 335 ------- null} - -t 32.1478 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 666 -a 0 -x {3.0 21.0 335 ------- null} h -t 32.1478 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 666 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.1494 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {3.0 21.0 336 ------- null} + -t 32.1494 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {3.0 21.0 336 ------- null} - -t 32.1494 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {3.0 21.0 336 ------- null} h -t 32.1494 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.151 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 668 -a 0 -x {3.0 21.0 337 ------- null} + -t 32.151 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 668 -a 0 -x {3.0 21.0 337 ------- null} - -t 32.151 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 668 -a 0 -x {3.0 21.0 337 ------- null} h -t 32.151 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 668 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.1526 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {3.0 21.0 338 ------- null} + -t 32.1526 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {3.0 21.0 338 ------- null} - -t 32.1526 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {3.0 21.0 338 ------- null} h -t 32.1526 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.1542 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 670 -a 0 -x {3.0 21.0 339 ------- null} + -t 32.1542 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 670 -a 0 -x {3.0 21.0 339 ------- null} - -t 32.1542 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 670 -a 0 -x {3.0 21.0 339 ------- null} h -t 32.1542 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 670 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.1558 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {3.0 21.0 340 ------- null} + -t 32.1558 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {3.0 21.0 340 ------- null} - -t 32.1558 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {3.0 21.0 340 ------- null} h -t 32.1558 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.1574 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 672 -a 0 -x {3.0 21.0 341 ------- null} + -t 32.1574 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 672 -a 0 -x {3.0 21.0 341 ------- null} - -t 32.1574 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 672 -a 0 -x {3.0 21.0 341 ------- null} h -t 32.1574 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 672 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.159 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {3.0 21.0 342 ------- null} + -t 32.159 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {3.0 21.0 342 ------- null} - -t 32.159 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {3.0 21.0 342 ------- null} h -t 32.159 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.1606 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 674 -a 0 -x {3.0 21.0 343 ------- null} + -t 32.1606 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 674 -a 0 -x {3.0 21.0 343 ------- null} - -t 32.1606 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 674 -a 0 -x {3.0 21.0 343 ------- null} h -t 32.1606 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 674 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.1622 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {3.0 21.0 344 ------- null} + -t 32.1622 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {3.0 21.0 344 ------- null} - -t 32.1622 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {3.0 21.0 344 ------- null} h -t 32.1622 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.1638 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 676 -a 0 -x {3.0 21.0 345 ------- null} + -t 32.1638 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 676 -a 0 -x {3.0 21.0 345 ------- null} - -t 32.1638 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 676 -a 0 -x {3.0 21.0 345 ------- null} h -t 32.1638 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 676 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.1654 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {3.0 21.0 346 ------- null} + -t 32.1654 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {3.0 21.0 346 ------- null} - -t 32.1654 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {3.0 21.0 346 ------- null} h -t 32.1654 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.167 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 678 -a 0 -x {3.0 21.0 347 ------- null} + -t 32.167 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 678 -a 0 -x {3.0 21.0 347 ------- null} - -t 32.167 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 678 -a 0 -x {3.0 21.0 347 ------- null} h -t 32.167 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 678 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.1686 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {3.0 21.0 348 ------- null} + -t 32.1686 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {3.0 21.0 348 ------- null} - -t 32.1686 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {3.0 21.0 348 ------- null} h -t 32.1686 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.1702 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 680 -a 0 -x {3.0 21.0 349 ------- null} + -t 32.1702 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 680 -a 0 -x {3.0 21.0 349 ------- null} - -t 32.1702 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 680 -a 0 -x {3.0 21.0 349 ------- null} h -t 32.1702 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 680 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.1718 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {3.0 21.0 350 ------- null} + -t 32.1718 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {3.0 21.0 350 ------- null} - -t 32.1718 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {3.0 21.0 350 ------- null} h -t 32.1718 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.443 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 662 -a 0 -x {3.0 21.0 331 ------- null} + -t 32.443 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 662 -a 0 -x {3.0 21.0 331 ------- null} - -t 32.443 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 662 -a 0 -x {3.0 21.0 331 ------- null} h -t 32.443 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 662 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.4446 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {3.0 21.0 332 ------- null} + -t 32.4446 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {3.0 21.0 332 ------- null} - -t 32.4446 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {3.0 21.0 332 ------- null} h -t 32.4446 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.4462 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 664 -a 0 -x {3.0 21.0 333 ------- null} + -t 32.4462 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 664 -a 0 -x {3.0 21.0 333 ------- null} - -t 32.4462 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 664 -a 0 -x {3.0 21.0 333 ------- null} h -t 32.4462 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 664 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.4478 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {3.0 21.0 334 ------- null} + -t 32.4478 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {3.0 21.0 334 ------- null} - -t 32.4478 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {3.0 21.0 334 ------- null} h -t 32.4478 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.4494 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 666 -a 0 -x {3.0 21.0 335 ------- null} + -t 32.4494 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 666 -a 0 -x {3.0 21.0 335 ------- null} - -t 32.4494 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 666 -a 0 -x {3.0 21.0 335 ------- null} h -t 32.4494 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 666 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.451 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {3.0 21.0 336 ------- null} + -t 32.451 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {3.0 21.0 336 ------- null} - -t 32.451 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {3.0 21.0 336 ------- null} h -t 32.451 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.4526 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 668 -a 0 -x {3.0 21.0 337 ------- null} + -t 32.4526 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 668 -a 0 -x {3.0 21.0 337 ------- null} - -t 32.4526 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 668 -a 0 -x {3.0 21.0 337 ------- null} h -t 32.4526 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 668 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.4542 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {3.0 21.0 338 ------- null} + -t 32.4542 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {3.0 21.0 338 ------- null} - -t 32.4542 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {3.0 21.0 338 ------- null} h -t 32.4542 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.4558 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 670 -a 0 -x {3.0 21.0 339 ------- null} + -t 32.4558 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 670 -a 0 -x {3.0 21.0 339 ------- null} - -t 32.4558 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 670 -a 0 -x {3.0 21.0 339 ------- null} h -t 32.4558 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 670 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.4574 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {3.0 21.0 340 ------- null} + -t 32.4574 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {3.0 21.0 340 ------- null} - -t 32.4574 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {3.0 21.0 340 ------- null} h -t 32.4574 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.459 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 672 -a 0 -x {3.0 21.0 341 ------- null} + -t 32.459 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 672 -a 0 -x {3.0 21.0 341 ------- null} - -t 32.459 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 672 -a 0 -x {3.0 21.0 341 ------- null} h -t 32.459 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 672 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.4606 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {3.0 21.0 342 ------- null} + -t 32.4606 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {3.0 21.0 342 ------- null} - -t 32.4606 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {3.0 21.0 342 ------- null} h -t 32.4606 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.4622 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 674 -a 0 -x {3.0 21.0 343 ------- null} + -t 32.4622 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 674 -a 0 -x {3.0 21.0 343 ------- null} - -t 32.4622 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 674 -a 0 -x {3.0 21.0 343 ------- null} h -t 32.4622 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 674 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.4638 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {3.0 21.0 344 ------- null} + -t 32.4638 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {3.0 21.0 344 ------- null} - -t 32.4638 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {3.0 21.0 344 ------- null} h -t 32.4638 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.4654 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 676 -a 0 -x {3.0 21.0 345 ------- null} + -t 32.4654 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 676 -a 0 -x {3.0 21.0 345 ------- null} - -t 32.4654 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 676 -a 0 -x {3.0 21.0 345 ------- null} h -t 32.4654 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 676 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.467 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {3.0 21.0 346 ------- null} + -t 32.467 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {3.0 21.0 346 ------- null} - -t 32.467 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {3.0 21.0 346 ------- null} h -t 32.467 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.4686 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 678 -a 0 -x {3.0 21.0 347 ------- null} + -t 32.4686 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 678 -a 0 -x {3.0 21.0 347 ------- null} - -t 32.4686 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 678 -a 0 -x {3.0 21.0 347 ------- null} h -t 32.4686 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 678 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.4702 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {3.0 21.0 348 ------- null} + -t 32.4702 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {3.0 21.0 348 ------- null} - -t 32.4702 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {3.0 21.0 348 ------- null} h -t 32.4702 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.4718 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 680 -a 0 -x {3.0 21.0 349 ------- null} + -t 32.4718 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 680 -a 0 -x {3.0 21.0 349 ------- null} - -t 32.4718 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 680 -a 0 -x {3.0 21.0 349 ------- null} h -t 32.4718 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 680 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.4734 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {3.0 21.0 350 ------- null} + -t 32.4734 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {3.0 21.0 350 ------- null} - -t 32.4734 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {3.0 21.0 350 ------- null} h -t 32.4734 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {3.0 21.0 -1 ------- null} r -t 32.7946 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 662 -a 0 -x {3.0 21.0 331 ------- null} + -t 32.7946 -s 21 -d 28 -p ack -e 40 -c 0 -i 682 -a 1 -x {21.0 3.0 331 ------- null} - -t 32.7946 -s 21 -d 28 -p ack -e 40 -c 0 -i 682 -a 1 -x {21.0 3.0 331 ------- null} h -t 32.7946 -s 21 -d 28 -p ack -e 40 -c 0 -i 682 -a 1 -x {21.0 3.0 -1 ------- null} r -t 32.7962 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {3.0 21.0 332 ------- null} + -t 32.7962 -s 21 -d 28 -p ack -e 40 -c 0 -i 683 -a 1 -x {21.0 3.0 332 ------- null} - -t 32.7962 -s 21 -d 28 -p ack -e 40 -c 0 -i 683 -a 1 -x {21.0 3.0 332 ------- null} h -t 32.7962 -s 21 -d 28 -p ack -e 40 -c 0 -i 683 -a 1 -x {21.0 3.0 -1 ------- null} r -t 32.7978 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 664 -a 0 -x {3.0 21.0 333 ------- null} + -t 32.7978 -s 21 -d 28 -p ack -e 40 -c 0 -i 684 -a 1 -x {21.0 3.0 333 ------- null} - -t 32.7978 -s 21 -d 28 -p ack -e 40 -c 0 -i 684 -a 1 -x {21.0 3.0 333 ------- null} h -t 32.7978 -s 21 -d 28 -p ack -e 40 -c 0 -i 684 -a 1 -x {21.0 3.0 -1 ------- null} r -t 32.7994 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {3.0 21.0 334 ------- null} + -t 32.7994 -s 21 -d 28 -p ack -e 40 -c 0 -i 685 -a 1 -x {21.0 3.0 334 ------- null} - -t 32.7994 -s 21 -d 28 -p ack -e 40 -c 0 -i 685 -a 1 -x {21.0 3.0 334 ------- null} h -t 32.7994 -s 21 -d 28 -p ack -e 40 -c 0 -i 685 -a 1 -x {21.0 3.0 -1 ------- null} r -t 32.801 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 666 -a 0 -x {3.0 21.0 335 ------- null} + -t 32.801 -s 21 -d 28 -p ack -e 40 -c 0 -i 686 -a 1 -x {21.0 3.0 335 ------- null} - -t 32.801 -s 21 -d 28 -p ack -e 40 -c 0 -i 686 -a 1 -x {21.0 3.0 335 ------- null} h -t 32.801 -s 21 -d 28 -p ack -e 40 -c 0 -i 686 -a 1 -x {21.0 3.0 -1 ------- null} r -t 32.8026 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {3.0 21.0 336 ------- null} + -t 32.8026 -s 21 -d 28 -p ack -e 40 -c 0 -i 687 -a 1 -x {21.0 3.0 336 ------- null} - -t 32.8026 -s 21 -d 28 -p ack -e 40 -c 0 -i 687 -a 1 -x {21.0 3.0 336 ------- null} h -t 32.8026 -s 21 -d 28 -p ack -e 40 -c 0 -i 687 -a 1 -x {21.0 3.0 -1 ------- null} r -t 32.8042 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 668 -a 0 -x {3.0 21.0 337 ------- null} + -t 32.8042 -s 21 -d 28 -p ack -e 40 -c 0 -i 688 -a 1 -x {21.0 3.0 337 ------- null} - -t 32.8042 -s 21 -d 28 -p ack -e 40 -c 0 -i 688 -a 1 -x {21.0 3.0 337 ------- null} h -t 32.8042 -s 21 -d 28 -p ack -e 40 -c 0 -i 688 -a 1 -x {21.0 3.0 -1 ------- null} r -t 32.8058 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {3.0 21.0 338 ------- null} + -t 32.8058 -s 21 -d 28 -p ack -e 40 -c 0 -i 689 -a 1 -x {21.0 3.0 338 ------- null} - -t 32.8058 -s 21 -d 28 -p ack -e 40 -c 0 -i 689 -a 1 -x {21.0 3.0 338 ------- null} h -t 32.8058 -s 21 -d 28 -p ack -e 40 -c 0 -i 689 -a 1 -x {21.0 3.0 -1 ------- null} r -t 32.8074 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 670 -a 0 -x {3.0 21.0 339 ------- null} + -t 32.8074 -s 21 -d 28 -p ack -e 40 -c 0 -i 690 -a 1 -x {21.0 3.0 339 ------- null} - -t 32.8074 -s 21 -d 28 -p ack -e 40 -c 0 -i 690 -a 1 -x {21.0 3.0 339 ------- null} h -t 32.8074 -s 21 -d 28 -p ack -e 40 -c 0 -i 690 -a 1 -x {21.0 3.0 -1 ------- null} r -t 32.809 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {3.0 21.0 340 ------- null} + -t 32.809 -s 21 -d 28 -p ack -e 40 -c 0 -i 691 -a 1 -x {21.0 3.0 340 ------- null} - -t 32.809 -s 21 -d 28 -p ack -e 40 -c 0 -i 691 -a 1 -x {21.0 3.0 340 ------- null} h -t 32.809 -s 21 -d 28 -p ack -e 40 -c 0 -i 691 -a 1 -x {21.0 3.0 -1 ------- null} r -t 32.8106 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 672 -a 0 -x {3.0 21.0 341 ------- null} + -t 32.8106 -s 21 -d 28 -p ack -e 40 -c 0 -i 692 -a 1 -x {21.0 3.0 341 ------- null} - -t 32.8106 -s 21 -d 28 -p ack -e 40 -c 0 -i 692 -a 1 -x {21.0 3.0 341 ------- null} h -t 32.8106 -s 21 -d 28 -p ack -e 40 -c 0 -i 692 -a 1 -x {21.0 3.0 -1 ------- null} r -t 32.8122 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {3.0 21.0 342 ------- null} + -t 32.8122 -s 21 -d 28 -p ack -e 40 -c 0 -i 693 -a 1 -x {21.0 3.0 342 ------- null} - -t 32.8122 -s 21 -d 28 -p ack -e 40 -c 0 -i 693 -a 1 -x {21.0 3.0 342 ------- null} h -t 32.8122 -s 21 -d 28 -p ack -e 40 -c 0 -i 693 -a 1 -x {21.0 3.0 -1 ------- null} r -t 32.8138 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 674 -a 0 -x {3.0 21.0 343 ------- null} + -t 32.8138 -s 21 -d 28 -p ack -e 40 -c 0 -i 694 -a 1 -x {21.0 3.0 343 ------- null} - -t 32.8138 -s 21 -d 28 -p ack -e 40 -c 0 -i 694 -a 1 -x {21.0 3.0 343 ------- null} h -t 32.8138 -s 21 -d 28 -p ack -e 40 -c 0 -i 694 -a 1 -x {21.0 3.0 -1 ------- null} r -t 32.8154 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {3.0 21.0 344 ------- null} + -t 32.8154 -s 21 -d 28 -p ack -e 40 -c 0 -i 695 -a 1 -x {21.0 3.0 344 ------- null} - -t 32.8154 -s 21 -d 28 -p ack -e 40 -c 0 -i 695 -a 1 -x {21.0 3.0 344 ------- null} h -t 32.8154 -s 21 -d 28 -p ack -e 40 -c 0 -i 695 -a 1 -x {21.0 3.0 -1 ------- null} r -t 32.817 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 676 -a 0 -x {3.0 21.0 345 ------- null} + -t 32.817 -s 21 -d 28 -p ack -e 40 -c 0 -i 696 -a 1 -x {21.0 3.0 345 ------- null} - -t 32.817 -s 21 -d 28 -p ack -e 40 -c 0 -i 696 -a 1 -x {21.0 3.0 345 ------- null} h -t 32.817 -s 21 -d 28 -p ack -e 40 -c 0 -i 696 -a 1 -x {21.0 3.0 -1 ------- null} r -t 32.8186 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {3.0 21.0 346 ------- null} + -t 32.8186 -s 21 -d 28 -p ack -e 40 -c 0 -i 697 -a 1 -x {21.0 3.0 346 ------- null} - -t 32.8186 -s 21 -d 28 -p ack -e 40 -c 0 -i 697 -a 1 -x {21.0 3.0 346 ------- null} h -t 32.8186 -s 21 -d 28 -p ack -e 40 -c 0 -i 697 -a 1 -x {21.0 3.0 -1 ------- null} r -t 32.8202 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 678 -a 0 -x {3.0 21.0 347 ------- null} + -t 32.8202 -s 21 -d 28 -p ack -e 40 -c 0 -i 698 -a 1 -x {21.0 3.0 347 ------- null} - -t 32.8202 -s 21 -d 28 -p ack -e 40 -c 0 -i 698 -a 1 -x {21.0 3.0 347 ------- null} h -t 32.8202 -s 21 -d 28 -p ack -e 40 -c 0 -i 698 -a 1 -x {21.0 3.0 -1 ------- null} r -t 32.8218 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {3.0 21.0 348 ------- null} + -t 32.8218 -s 21 -d 28 -p ack -e 40 -c 0 -i 699 -a 1 -x {21.0 3.0 348 ------- null} - -t 32.8218 -s 21 -d 28 -p ack -e 40 -c 0 -i 699 -a 1 -x {21.0 3.0 348 ------- null} h -t 32.8218 -s 21 -d 28 -p ack -e 40 -c 0 -i 699 -a 1 -x {21.0 3.0 -1 ------- null} r -t 32.8234 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 680 -a 0 -x {3.0 21.0 349 ------- null} + -t 32.8234 -s 21 -d 28 -p ack -e 40 -c 0 -i 700 -a 1 -x {21.0 3.0 349 ------- null} - -t 32.8234 -s 21 -d 28 -p ack -e 40 -c 0 -i 700 -a 1 -x {21.0 3.0 349 ------- null} h -t 32.8234 -s 21 -d 28 -p ack -e 40 -c 0 -i 700 -a 1 -x {21.0 3.0 -1 ------- null} r -t 32.825 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {3.0 21.0 350 ------- null} + -t 32.825 -s 21 -d 28 -p ack -e 40 -c 0 -i 701 -a 1 -x {21.0 3.0 350 ------- null} - -t 32.825 -s 21 -d 28 -p ack -e 40 -c 0 -i 701 -a 1 -x {21.0 3.0 350 ------- null} h -t 32.825 -s 21 -d 28 -p ack -e 40 -c 0 -i 701 -a 1 -x {21.0 3.0 -1 ------- null} r -t 33.1447 -s 21 -d 28 -p ack -e 40 -c 0 -i 682 -a 1 -x {21.0 3.0 331 ------- null} + -t 33.1447 -s 28 -d 1 -p ack -e 40 -c 0 -i 682 -a 1 -x {21.0 3.0 331 ------- null} - -t 33.1447 -s 28 -d 1 -p ack -e 40 -c 0 -i 682 -a 1 -x {21.0 3.0 331 ------- null} h -t 33.1447 -s 28 -d 1 -p ack -e 40 -c 0 -i 682 -a 1 -x {21.0 3.0 -1 ------- null} r -t 33.1463 -s 21 -d 28 -p ack -e 40 -c 0 -i 683 -a 1 -x {21.0 3.0 332 ------- null} + -t 33.1463 -s 28 -d 1 -p ack -e 40 -c 0 -i 683 -a 1 -x {21.0 3.0 332 ------- null} - -t 33.1463 -s 28 -d 1 -p ack -e 40 -c 0 -i 683 -a 1 -x {21.0 3.0 332 ------- null} h -t 33.1463 -s 28 -d 1 -p ack -e 40 -c 0 -i 683 -a 1 -x {21.0 3.0 -1 ------- null} r -t 33.1479 -s 21 -d 28 -p ack -e 40 -c 0 -i 684 -a 1 -x {21.0 3.0 333 ------- null} + -t 33.1479 -s 28 -d 1 -p ack -e 40 -c 0 -i 684 -a 1 -x {21.0 3.0 333 ------- null} - -t 33.1479 -s 28 -d 1 -p ack -e 40 -c 0 -i 684 -a 1 -x {21.0 3.0 333 ------- null} h -t 33.1479 -s 28 -d 1 -p ack -e 40 -c 0 -i 684 -a 1 -x {21.0 3.0 -1 ------- null} r -t 33.1495 -s 21 -d 28 -p ack -e 40 -c 0 -i 685 -a 1 -x {21.0 3.0 334 ------- null} + -t 33.1495 -s 28 -d 1 -p ack -e 40 -c 0 -i 685 -a 1 -x {21.0 3.0 334 ------- null} - -t 33.1495 -s 28 -d 1 -p ack -e 40 -c 0 -i 685 -a 1 -x {21.0 3.0 334 ------- null} h -t 33.1495 -s 28 -d 1 -p ack -e 40 -c 0 -i 685 -a 1 -x {21.0 3.0 -1 ------- null} r -t 33.1511 -s 21 -d 28 -p ack -e 40 -c 0 -i 686 -a 1 -x {21.0 3.0 335 ------- null} + -t 33.1511 -s 28 -d 1 -p ack -e 40 -c 0 -i 686 -a 1 -x {21.0 3.0 335 ------- null} - -t 33.1511 -s 28 -d 1 -p ack -e 40 -c 0 -i 686 -a 1 -x {21.0 3.0 335 ------- null} h -t 33.1511 -s 28 -d 1 -p ack -e 40 -c 0 -i 686 -a 1 -x {21.0 3.0 -1 ------- null} r -t 33.1527 -s 21 -d 28 -p ack -e 40 -c 0 -i 687 -a 1 -x {21.0 3.0 336 ------- null} + -t 33.1527 -s 28 -d 1 -p ack -e 40 -c 0 -i 687 -a 1 -x {21.0 3.0 336 ------- null} - -t 33.1527 -s 28 -d 1 -p ack -e 40 -c 0 -i 687 -a 1 -x {21.0 3.0 336 ------- null} h -t 33.1527 -s 28 -d 1 -p ack -e 40 -c 0 -i 687 -a 1 -x {21.0 3.0 -1 ------- null} r -t 33.1543 -s 21 -d 28 -p ack -e 40 -c 0 -i 688 -a 1 -x {21.0 3.0 337 ------- null} + -t 33.1543 -s 28 -d 1 -p ack -e 40 -c 0 -i 688 -a 1 -x {21.0 3.0 337 ------- null} - -t 33.1543 -s 28 -d 1 -p ack -e 40 -c 0 -i 688 -a 1 -x {21.0 3.0 337 ------- null} h -t 33.1543 -s 28 -d 1 -p ack -e 40 -c 0 -i 688 -a 1 -x {21.0 3.0 -1 ------- null} r -t 33.1559 -s 21 -d 28 -p ack -e 40 -c 0 -i 689 -a 1 -x {21.0 3.0 338 ------- null} + -t 33.1559 -s 28 -d 1 -p ack -e 40 -c 0 -i 689 -a 1 -x {21.0 3.0 338 ------- null} - -t 33.1559 -s 28 -d 1 -p ack -e 40 -c 0 -i 689 -a 1 -x {21.0 3.0 338 ------- null} h -t 33.1559 -s 28 -d 1 -p ack -e 40 -c 0 -i 689 -a 1 -x {21.0 3.0 -1 ------- null} r -t 33.1575 -s 21 -d 28 -p ack -e 40 -c 0 -i 690 -a 1 -x {21.0 3.0 339 ------- null} + -t 33.1575 -s 28 -d 1 -p ack -e 40 -c 0 -i 690 -a 1 -x {21.0 3.0 339 ------- null} - -t 33.1575 -s 28 -d 1 -p ack -e 40 -c 0 -i 690 -a 1 -x {21.0 3.0 339 ------- null} h -t 33.1575 -s 28 -d 1 -p ack -e 40 -c 0 -i 690 -a 1 -x {21.0 3.0 -1 ------- null} r -t 33.1591 -s 21 -d 28 -p ack -e 40 -c 0 -i 691 -a 1 -x {21.0 3.0 340 ------- null} + -t 33.1591 -s 28 -d 1 -p ack -e 40 -c 0 -i 691 -a 1 -x {21.0 3.0 340 ------- null} - -t 33.1591 -s 28 -d 1 -p ack -e 40 -c 0 -i 691 -a 1 -x {21.0 3.0 340 ------- null} h -t 33.1591 -s 28 -d 1 -p ack -e 40 -c 0 -i 691 -a 1 -x {21.0 3.0 -1 ------- null} r -t 33.1607 -s 21 -d 28 -p ack -e 40 -c 0 -i 692 -a 1 -x {21.0 3.0 341 ------- null} + -t 33.1607 -s 28 -d 1 -p ack -e 40 -c 0 -i 692 -a 1 -x {21.0 3.0 341 ------- null} - -t 33.1607 -s 28 -d 1 -p ack -e 40 -c 0 -i 692 -a 1 -x {21.0 3.0 341 ------- null} h -t 33.1607 -s 28 -d 1 -p ack -e 40 -c 0 -i 692 -a 1 -x {21.0 3.0 -1 ------- null} r -t 33.1623 -s 21 -d 28 -p ack -e 40 -c 0 -i 693 -a 1 -x {21.0 3.0 342 ------- null} + -t 33.1623 -s 28 -d 1 -p ack -e 40 -c 0 -i 693 -a 1 -x {21.0 3.0 342 ------- null} - -t 33.1623 -s 28 -d 1 -p ack -e 40 -c 0 -i 693 -a 1 -x {21.0 3.0 342 ------- null} h -t 33.1623 -s 28 -d 1 -p ack -e 40 -c 0 -i 693 -a 1 -x {21.0 3.0 -1 ------- null} r -t 33.1639 -s 21 -d 28 -p ack -e 40 -c 0 -i 694 -a 1 -x {21.0 3.0 343 ------- null} + -t 33.1639 -s 28 -d 1 -p ack -e 40 -c 0 -i 694 -a 1 -x {21.0 3.0 343 ------- null} - -t 33.1639 -s 28 -d 1 -p ack -e 40 -c 0 -i 694 -a 1 -x {21.0 3.0 343 ------- null} h -t 33.1639 -s 28 -d 1 -p ack -e 40 -c 0 -i 694 -a 1 -x {21.0 3.0 -1 ------- null} r -t 33.1655 -s 21 -d 28 -p ack -e 40 -c 0 -i 695 -a 1 -x {21.0 3.0 344 ------- null} + -t 33.1655 -s 28 -d 1 -p ack -e 40 -c 0 -i 695 -a 1 -x {21.0 3.0 344 ------- null} - -t 33.1655 -s 28 -d 1 -p ack -e 40 -c 0 -i 695 -a 1 -x {21.0 3.0 344 ------- null} h -t 33.1655 -s 28 -d 1 -p ack -e 40 -c 0 -i 695 -a 1 -x {21.0 3.0 -1 ------- null} r -t 33.1671 -s 21 -d 28 -p ack -e 40 -c 0 -i 696 -a 1 -x {21.0 3.0 345 ------- null} + -t 33.1671 -s 28 -d 1 -p ack -e 40 -c 0 -i 696 -a 1 -x {21.0 3.0 345 ------- null} - -t 33.1671 -s 28 -d 1 -p ack -e 40 -c 0 -i 696 -a 1 -x {21.0 3.0 345 ------- null} h -t 33.1671 -s 28 -d 1 -p ack -e 40 -c 0 -i 696 -a 1 -x {21.0 3.0 -1 ------- null} r -t 33.1687 -s 21 -d 28 -p ack -e 40 -c 0 -i 697 -a 1 -x {21.0 3.0 346 ------- null} + -t 33.1687 -s 28 -d 1 -p ack -e 40 -c 0 -i 697 -a 1 -x {21.0 3.0 346 ------- null} - -t 33.1687 -s 28 -d 1 -p ack -e 40 -c 0 -i 697 -a 1 -x {21.0 3.0 346 ------- null} h -t 33.1687 -s 28 -d 1 -p ack -e 40 -c 0 -i 697 -a 1 -x {21.0 3.0 -1 ------- null} r -t 33.1703 -s 21 -d 28 -p ack -e 40 -c 0 -i 698 -a 1 -x {21.0 3.0 347 ------- null} + -t 33.1703 -s 28 -d 1 -p ack -e 40 -c 0 -i 698 -a 1 -x {21.0 3.0 347 ------- null} - -t 33.1703 -s 28 -d 1 -p ack -e 40 -c 0 -i 698 -a 1 -x {21.0 3.0 347 ------- null} h -t 33.1703 -s 28 -d 1 -p ack -e 40 -c 0 -i 698 -a 1 -x {21.0 3.0 -1 ------- null} r -t 33.1719 -s 21 -d 28 -p ack -e 40 -c 0 -i 699 -a 1 -x {21.0 3.0 348 ------- null} + -t 33.1719 -s 28 -d 1 -p ack -e 40 -c 0 -i 699 -a 1 -x {21.0 3.0 348 ------- null} - -t 33.1719 -s 28 -d 1 -p ack -e 40 -c 0 -i 699 -a 1 -x {21.0 3.0 348 ------- null} h -t 33.1719 -s 28 -d 1 -p ack -e 40 -c 0 -i 699 -a 1 -x {21.0 3.0 -1 ------- null} r -t 33.1735 -s 21 -d 28 -p ack -e 40 -c 0 -i 700 -a 1 -x {21.0 3.0 349 ------- null} + -t 33.1735 -s 28 -d 1 -p ack -e 40 -c 0 -i 700 -a 1 -x {21.0 3.0 349 ------- null} - -t 33.1735 -s 28 -d 1 -p ack -e 40 -c 0 -i 700 -a 1 -x {21.0 3.0 349 ------- null} h -t 33.1735 -s 28 -d 1 -p ack -e 40 -c 0 -i 700 -a 1 -x {21.0 3.0 -1 ------- null} r -t 33.1751 -s 21 -d 28 -p ack -e 40 -c 0 -i 701 -a 1 -x {21.0 3.0 350 ------- null} + -t 33.1751 -s 28 -d 1 -p ack -e 40 -c 0 -i 701 -a 1 -x {21.0 3.0 350 ------- null} - -t 33.1751 -s 28 -d 1 -p ack -e 40 -c 0 -i 701 -a 1 -x {21.0 3.0 350 ------- null} h -t 33.1751 -s 28 -d 1 -p ack -e 40 -c 0 -i 701 -a 1 -x {21.0 3.0 -1 ------- null} r -t 33.4448 -s 28 -d 1 -p ack -e 40 -c 0 -i 682 -a 1 -x {21.0 3.0 331 ------- null} + -t 33.4448 -s 1 -d 3 -p ack -e 40 -c 0 -i 682 -a 1 -x {21.0 3.0 331 ------- null} - -t 33.4448 -s 1 -d 3 -p ack -e 40 -c 0 -i 682 -a 1 -x {21.0 3.0 331 ------- null} h -t 33.4448 -s 1 -d 3 -p ack -e 40 -c 0 -i 682 -a 1 -x {21.0 3.0 -1 ------- null} r -t 33.4464 -s 28 -d 1 -p ack -e 40 -c 0 -i 683 -a 1 -x {21.0 3.0 332 ------- null} + -t 33.4464 -s 1 -d 3 -p ack -e 40 -c 0 -i 683 -a 1 -x {21.0 3.0 332 ------- null} - -t 33.4464 -s 1 -d 3 -p ack -e 40 -c 0 -i 683 -a 1 -x {21.0 3.0 332 ------- null} h -t 33.4464 -s 1 -d 3 -p ack -e 40 -c 0 -i 683 -a 1 -x {21.0 3.0 -1 ------- null} r -t 33.448 -s 28 -d 1 -p ack -e 40 -c 0 -i 684 -a 1 -x {21.0 3.0 333 ------- null} + -t 33.448 -s 1 -d 3 -p ack -e 40 -c 0 -i 684 -a 1 -x {21.0 3.0 333 ------- null} - -t 33.448 -s 1 -d 3 -p ack -e 40 -c 0 -i 684 -a 1 -x {21.0 3.0 333 ------- null} h -t 33.448 -s 1 -d 3 -p ack -e 40 -c 0 -i 684 -a 1 -x {21.0 3.0 -1 ------- null} r -t 33.4496 -s 28 -d 1 -p ack -e 40 -c 0 -i 685 -a 1 -x {21.0 3.0 334 ------- null} + -t 33.4496 -s 1 -d 3 -p ack -e 40 -c 0 -i 685 -a 1 -x {21.0 3.0 334 ------- null} - -t 33.4496 -s 1 -d 3 -p ack -e 40 -c 0 -i 685 -a 1 -x {21.0 3.0 334 ------- null} h -t 33.4496 -s 1 -d 3 -p ack -e 40 -c 0 -i 685 -a 1 -x {21.0 3.0 -1 ------- null} r -t 33.4512 -s 28 -d 1 -p ack -e 40 -c 0 -i 686 -a 1 -x {21.0 3.0 335 ------- null} + -t 33.4512 -s 1 -d 3 -p ack -e 40 -c 0 -i 686 -a 1 -x {21.0 3.0 335 ------- null} - -t 33.4512 -s 1 -d 3 -p ack -e 40 -c 0 -i 686 -a 1 -x {21.0 3.0 335 ------- null} h -t 33.4512 -s 1 -d 3 -p ack -e 40 -c 0 -i 686 -a 1 -x {21.0 3.0 -1 ------- null} r -t 33.4528 -s 28 -d 1 -p ack -e 40 -c 0 -i 687 -a 1 -x {21.0 3.0 336 ------- null} + -t 33.4528 -s 1 -d 3 -p ack -e 40 -c 0 -i 687 -a 1 -x {21.0 3.0 336 ------- null} - -t 33.4528 -s 1 -d 3 -p ack -e 40 -c 0 -i 687 -a 1 -x {21.0 3.0 336 ------- null} h -t 33.4528 -s 1 -d 3 -p ack -e 40 -c 0 -i 687 -a 1 -x {21.0 3.0 -1 ------- null} r -t 33.4544 -s 28 -d 1 -p ack -e 40 -c 0 -i 688 -a 1 -x {21.0 3.0 337 ------- null} + -t 33.4544 -s 1 -d 3 -p ack -e 40 -c 0 -i 688 -a 1 -x {21.0 3.0 337 ------- null} - -t 33.4544 -s 1 -d 3 -p ack -e 40 -c 0 -i 688 -a 1 -x {21.0 3.0 337 ------- null} h -t 33.4544 -s 1 -d 3 -p ack -e 40 -c 0 -i 688 -a 1 -x {21.0 3.0 -1 ------- null} r -t 33.456 -s 28 -d 1 -p ack -e 40 -c 0 -i 689 -a 1 -x {21.0 3.0 338 ------- null} + -t 33.456 -s 1 -d 3 -p ack -e 40 -c 0 -i 689 -a 1 -x {21.0 3.0 338 ------- null} - -t 33.456 -s 1 -d 3 -p ack -e 40 -c 0 -i 689 -a 1 -x {21.0 3.0 338 ------- null} h -t 33.456 -s 1 -d 3 -p ack -e 40 -c 0 -i 689 -a 1 -x {21.0 3.0 -1 ------- null} r -t 33.4576 -s 28 -d 1 -p ack -e 40 -c 0 -i 690 -a 1 -x {21.0 3.0 339 ------- null} + -t 33.4576 -s 1 -d 3 -p ack -e 40 -c 0 -i 690 -a 1 -x {21.0 3.0 339 ------- null} - -t 33.4576 -s 1 -d 3 -p ack -e 40 -c 0 -i 690 -a 1 -x {21.0 3.0 339 ------- null} h -t 33.4576 -s 1 -d 3 -p ack -e 40 -c 0 -i 690 -a 1 -x {21.0 3.0 -1 ------- null} r -t 33.4592 -s 28 -d 1 -p ack -e 40 -c 0 -i 691 -a 1 -x {21.0 3.0 340 ------- null} + -t 33.4592 -s 1 -d 3 -p ack -e 40 -c 0 -i 691 -a 1 -x {21.0 3.0 340 ------- null} - -t 33.4592 -s 1 -d 3 -p ack -e 40 -c 0 -i 691 -a 1 -x {21.0 3.0 340 ------- null} h -t 33.4592 -s 1 -d 3 -p ack -e 40 -c 0 -i 691 -a 1 -x {21.0 3.0 -1 ------- null} r -t 33.4608 -s 28 -d 1 -p ack -e 40 -c 0 -i 692 -a 1 -x {21.0 3.0 341 ------- null} + -t 33.4608 -s 1 -d 3 -p ack -e 40 -c 0 -i 692 -a 1 -x {21.0 3.0 341 ------- null} - -t 33.4608 -s 1 -d 3 -p ack -e 40 -c 0 -i 692 -a 1 -x {21.0 3.0 341 ------- null} h -t 33.4608 -s 1 -d 3 -p ack -e 40 -c 0 -i 692 -a 1 -x {21.0 3.0 -1 ------- null} r -t 33.4624 -s 28 -d 1 -p ack -e 40 -c 0 -i 693 -a 1 -x {21.0 3.0 342 ------- null} + -t 33.4624 -s 1 -d 3 -p ack -e 40 -c 0 -i 693 -a 1 -x {21.0 3.0 342 ------- null} - -t 33.4624 -s 1 -d 3 -p ack -e 40 -c 0 -i 693 -a 1 -x {21.0 3.0 342 ------- null} h -t 33.4624 -s 1 -d 3 -p ack -e 40 -c 0 -i 693 -a 1 -x {21.0 3.0 -1 ------- null} r -t 33.464 -s 28 -d 1 -p ack -e 40 -c 0 -i 694 -a 1 -x {21.0 3.0 343 ------- null} + -t 33.464 -s 1 -d 3 -p ack -e 40 -c 0 -i 694 -a 1 -x {21.0 3.0 343 ------- null} - -t 33.464 -s 1 -d 3 -p ack -e 40 -c 0 -i 694 -a 1 -x {21.0 3.0 343 ------- null} h -t 33.464 -s 1 -d 3 -p ack -e 40 -c 0 -i 694 -a 1 -x {21.0 3.0 -1 ------- null} r -t 33.4656 -s 28 -d 1 -p ack -e 40 -c 0 -i 695 -a 1 -x {21.0 3.0 344 ------- null} + -t 33.4656 -s 1 -d 3 -p ack -e 40 -c 0 -i 695 -a 1 -x {21.0 3.0 344 ------- null} - -t 33.4656 -s 1 -d 3 -p ack -e 40 -c 0 -i 695 -a 1 -x {21.0 3.0 344 ------- null} h -t 33.4656 -s 1 -d 3 -p ack -e 40 -c 0 -i 695 -a 1 -x {21.0 3.0 -1 ------- null} r -t 33.4672 -s 28 -d 1 -p ack -e 40 -c 0 -i 696 -a 1 -x {21.0 3.0 345 ------- null} + -t 33.4672 -s 1 -d 3 -p ack -e 40 -c 0 -i 696 -a 1 -x {21.0 3.0 345 ------- null} - -t 33.4672 -s 1 -d 3 -p ack -e 40 -c 0 -i 696 -a 1 -x {21.0 3.0 345 ------- null} h -t 33.4672 -s 1 -d 3 -p ack -e 40 -c 0 -i 696 -a 1 -x {21.0 3.0 -1 ------- null} r -t 33.4688 -s 28 -d 1 -p ack -e 40 -c 0 -i 697 -a 1 -x {21.0 3.0 346 ------- null} + -t 33.4688 -s 1 -d 3 -p ack -e 40 -c 0 -i 697 -a 1 -x {21.0 3.0 346 ------- null} - -t 33.4688 -s 1 -d 3 -p ack -e 40 -c 0 -i 697 -a 1 -x {21.0 3.0 346 ------- null} h -t 33.4688 -s 1 -d 3 -p ack -e 40 -c 0 -i 697 -a 1 -x {21.0 3.0 -1 ------- null} r -t 33.4704 -s 28 -d 1 -p ack -e 40 -c 0 -i 698 -a 1 -x {21.0 3.0 347 ------- null} + -t 33.4704 -s 1 -d 3 -p ack -e 40 -c 0 -i 698 -a 1 -x {21.0 3.0 347 ------- null} - -t 33.4704 -s 1 -d 3 -p ack -e 40 -c 0 -i 698 -a 1 -x {21.0 3.0 347 ------- null} h -t 33.4704 -s 1 -d 3 -p ack -e 40 -c 0 -i 698 -a 1 -x {21.0 3.0 -1 ------- null} r -t 33.472 -s 28 -d 1 -p ack -e 40 -c 0 -i 699 -a 1 -x {21.0 3.0 348 ------- null} + -t 33.472 -s 1 -d 3 -p ack -e 40 -c 0 -i 699 -a 1 -x {21.0 3.0 348 ------- null} - -t 33.472 -s 1 -d 3 -p ack -e 40 -c 0 -i 699 -a 1 -x {21.0 3.0 348 ------- null} h -t 33.472 -s 1 -d 3 -p ack -e 40 -c 0 -i 699 -a 1 -x {21.0 3.0 -1 ------- null} r -t 33.4736 -s 28 -d 1 -p ack -e 40 -c 0 -i 700 -a 1 -x {21.0 3.0 349 ------- null} + -t 33.4736 -s 1 -d 3 -p ack -e 40 -c 0 -i 700 -a 1 -x {21.0 3.0 349 ------- null} - -t 33.4736 -s 1 -d 3 -p ack -e 40 -c 0 -i 700 -a 1 -x {21.0 3.0 349 ------- null} h -t 33.4736 -s 1 -d 3 -p ack -e 40 -c 0 -i 700 -a 1 -x {21.0 3.0 -1 ------- null} r -t 33.4752 -s 28 -d 1 -p ack -e 40 -c 0 -i 701 -a 1 -x {21.0 3.0 350 ------- null} + -t 33.4752 -s 1 -d 3 -p ack -e 40 -c 0 -i 701 -a 1 -x {21.0 3.0 350 ------- null} - -t 33.4752 -s 1 -d 3 -p ack -e 40 -c 0 -i 701 -a 1 -x {21.0 3.0 350 ------- null} h -t 33.4752 -s 1 -d 3 -p ack -e 40 -c 0 -i 701 -a 1 -x {21.0 3.0 -1 ------- null} r -t 33.5848 -s 1 -d 3 -p ack -e 40 -c 0 -i 682 -a 1 -x {21.0 3.0 331 ------- null} + -t 33.5848 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 702 -a 0 -x {3.0 21.0 351 ------- null} - -t 33.5848 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 702 -a 0 -x {3.0 21.0 351 ------- null} h -t 33.5848 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 702 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.5864 -s 1 -d 3 -p ack -e 40 -c 0 -i 683 -a 1 -x {21.0 3.0 332 ------- null} + -t 33.5864 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {3.0 21.0 352 ------- null} - -t 33.5864 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {3.0 21.0 352 ------- null} h -t 33.5864 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.588 -s 1 -d 3 -p ack -e 40 -c 0 -i 684 -a 1 -x {21.0 3.0 333 ------- null} + -t 33.588 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 704 -a 0 -x {3.0 21.0 353 ------- null} - -t 33.588 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 704 -a 0 -x {3.0 21.0 353 ------- null} h -t 33.588 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 704 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.5896 -s 1 -d 3 -p ack -e 40 -c 0 -i 685 -a 1 -x {21.0 3.0 334 ------- null} + -t 33.5896 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {3.0 21.0 354 ------- null} - -t 33.5896 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {3.0 21.0 354 ------- null} h -t 33.5896 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.5912 -s 1 -d 3 -p ack -e 40 -c 0 -i 686 -a 1 -x {21.0 3.0 335 ------- null} + -t 33.5912 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 706 -a 0 -x {3.0 21.0 355 ------- null} - -t 33.5912 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 706 -a 0 -x {3.0 21.0 355 ------- null} h -t 33.5912 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 706 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.5928 -s 1 -d 3 -p ack -e 40 -c 0 -i 687 -a 1 -x {21.0 3.0 336 ------- null} + -t 33.5928 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {3.0 21.0 356 ------- null} - -t 33.5928 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {3.0 21.0 356 ------- null} h -t 33.5928 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.5944 -s 1 -d 3 -p ack -e 40 -c 0 -i 688 -a 1 -x {21.0 3.0 337 ------- null} + -t 33.5944 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 708 -a 0 -x {3.0 21.0 357 ------- null} - -t 33.5944 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 708 -a 0 -x {3.0 21.0 357 ------- null} h -t 33.5944 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 708 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.596 -s 1 -d 3 -p ack -e 40 -c 0 -i 689 -a 1 -x {21.0 3.0 338 ------- null} + -t 33.596 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {3.0 21.0 358 ------- null} - -t 33.596 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {3.0 21.0 358 ------- null} h -t 33.596 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.5976 -s 1 -d 3 -p ack -e 40 -c 0 -i 690 -a 1 -x {21.0 3.0 339 ------- null} + -t 33.5976 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 710 -a 0 -x {3.0 21.0 359 ------- null} - -t 33.5976 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 710 -a 0 -x {3.0 21.0 359 ------- null} h -t 33.5976 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 710 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.5992 -s 1 -d 3 -p ack -e 40 -c 0 -i 691 -a 1 -x {21.0 3.0 340 ------- null} + -t 33.5992 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {3.0 21.0 360 ------- null} - -t 33.5992 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {3.0 21.0 360 ------- null} h -t 33.5992 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.6008 -s 1 -d 3 -p ack -e 40 -c 0 -i 692 -a 1 -x {21.0 3.0 341 ------- null} + -t 33.6008 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 712 -a 0 -x {3.0 21.0 361 ------- null} - -t 33.6008 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 712 -a 0 -x {3.0 21.0 361 ------- null} h -t 33.6008 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 712 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.6024 -s 1 -d 3 -p ack -e 40 -c 0 -i 693 -a 1 -x {21.0 3.0 342 ------- null} + -t 33.6024 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {3.0 21.0 362 ------- null} - -t 33.6024 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {3.0 21.0 362 ------- null} h -t 33.6024 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.604 -s 1 -d 3 -p ack -e 40 -c 0 -i 694 -a 1 -x {21.0 3.0 343 ------- null} + -t 33.604 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 714 -a 0 -x {3.0 21.0 363 ------- null} - -t 33.604 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 714 -a 0 -x {3.0 21.0 363 ------- null} h -t 33.604 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 714 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.6056 -s 1 -d 3 -p ack -e 40 -c 0 -i 695 -a 1 -x {21.0 3.0 344 ------- null} + -t 33.6056 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {3.0 21.0 364 ------- null} - -t 33.6056 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {3.0 21.0 364 ------- null} h -t 33.6056 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.6072 -s 1 -d 3 -p ack -e 40 -c 0 -i 696 -a 1 -x {21.0 3.0 345 ------- null} + -t 33.6072 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 716 -a 0 -x {3.0 21.0 365 ------- null} - -t 33.6072 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 716 -a 0 -x {3.0 21.0 365 ------- null} h -t 33.6072 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 716 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.6088 -s 1 -d 3 -p ack -e 40 -c 0 -i 697 -a 1 -x {21.0 3.0 346 ------- null} + -t 33.6088 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {3.0 21.0 366 ------- null} - -t 33.6088 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {3.0 21.0 366 ------- null} h -t 33.6088 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.6104 -s 1 -d 3 -p ack -e 40 -c 0 -i 698 -a 1 -x {21.0 3.0 347 ------- null} + -t 33.6104 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 718 -a 0 -x {3.0 21.0 367 ------- null} - -t 33.6104 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 718 -a 0 -x {3.0 21.0 367 ------- null} h -t 33.6104 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 718 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.612 -s 1 -d 3 -p ack -e 40 -c 0 -i 699 -a 1 -x {21.0 3.0 348 ------- null} + -t 33.612 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {3.0 21.0 368 ------- null} - -t 33.612 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {3.0 21.0 368 ------- null} h -t 33.612 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.6136 -s 1 -d 3 -p ack -e 40 -c 0 -i 700 -a 1 -x {21.0 3.0 349 ------- null} + -t 33.6136 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 720 -a 0 -x {3.0 21.0 369 ------- null} - -t 33.6136 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 720 -a 0 -x {3.0 21.0 369 ------- null} h -t 33.6136 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 720 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.6152 -s 1 -d 3 -p ack -e 40 -c 0 -i 701 -a 1 -x {21.0 3.0 350 ------- null} + -t 33.6152 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {3.0 21.0 370 ------- null} - -t 33.6152 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {3.0 21.0 370 ------- null} h -t 33.6152 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.7264 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 702 -a 0 -x {3.0 21.0 351 ------- null} + -t 33.7264 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 702 -a 0 -x {3.0 21.0 351 ------- null} - -t 33.7264 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 702 -a 0 -x {3.0 21.0 351 ------- null} h -t 33.7264 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 702 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.728 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {3.0 21.0 352 ------- null} + -t 33.728 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {3.0 21.0 352 ------- null} - -t 33.728 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {3.0 21.0 352 ------- null} h -t 33.728 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.7296 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 704 -a 0 -x {3.0 21.0 353 ------- null} + -t 33.7296 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 704 -a 0 -x {3.0 21.0 353 ------- null} - -t 33.7296 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 704 -a 0 -x {3.0 21.0 353 ------- null} h -t 33.7296 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 704 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.7312 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {3.0 21.0 354 ------- null} + -t 33.7312 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {3.0 21.0 354 ------- null} - -t 33.7312 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {3.0 21.0 354 ------- null} h -t 33.7312 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.7328 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 706 -a 0 -x {3.0 21.0 355 ------- null} + -t 33.7328 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 706 -a 0 -x {3.0 21.0 355 ------- null} - -t 33.7328 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 706 -a 0 -x {3.0 21.0 355 ------- null} h -t 33.7328 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 706 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.7344 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {3.0 21.0 356 ------- null} + -t 33.7344 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {3.0 21.0 356 ------- null} - -t 33.7344 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {3.0 21.0 356 ------- null} h -t 33.7344 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.736 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 708 -a 0 -x {3.0 21.0 357 ------- null} + -t 33.736 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 708 -a 0 -x {3.0 21.0 357 ------- null} - -t 33.736 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 708 -a 0 -x {3.0 21.0 357 ------- null} h -t 33.736 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 708 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.7376 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {3.0 21.0 358 ------- null} + -t 33.7376 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {3.0 21.0 358 ------- null} - -t 33.7376 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {3.0 21.0 358 ------- null} h -t 33.7376 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.7392 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 710 -a 0 -x {3.0 21.0 359 ------- null} + -t 33.7392 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 710 -a 0 -x {3.0 21.0 359 ------- null} - -t 33.7392 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 710 -a 0 -x {3.0 21.0 359 ------- null} h -t 33.7392 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 710 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.7408 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {3.0 21.0 360 ------- null} + -t 33.7408 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {3.0 21.0 360 ------- null} - -t 33.7408 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {3.0 21.0 360 ------- null} h -t 33.7408 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.7424 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 712 -a 0 -x {3.0 21.0 361 ------- null} + -t 33.7424 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 712 -a 0 -x {3.0 21.0 361 ------- null} - -t 33.7424 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 712 -a 0 -x {3.0 21.0 361 ------- null} h -t 33.7424 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 712 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.744 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {3.0 21.0 362 ------- null} + -t 33.744 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {3.0 21.0 362 ------- null} - -t 33.744 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {3.0 21.0 362 ------- null} h -t 33.744 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.7456 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 714 -a 0 -x {3.0 21.0 363 ------- null} + -t 33.7456 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 714 -a 0 -x {3.0 21.0 363 ------- null} - -t 33.7456 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 714 -a 0 -x {3.0 21.0 363 ------- null} h -t 33.7456 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 714 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.7472 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {3.0 21.0 364 ------- null} + -t 33.7472 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {3.0 21.0 364 ------- null} - -t 33.7472 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {3.0 21.0 364 ------- null} h -t 33.7472 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.7488 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 716 -a 0 -x {3.0 21.0 365 ------- null} + -t 33.7488 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 716 -a 0 -x {3.0 21.0 365 ------- null} - -t 33.7488 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 716 -a 0 -x {3.0 21.0 365 ------- null} h -t 33.7488 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 716 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.7504 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {3.0 21.0 366 ------- null} + -t 33.7504 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {3.0 21.0 366 ------- null} - -t 33.7504 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {3.0 21.0 366 ------- null} h -t 33.7504 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.752 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 718 -a 0 -x {3.0 21.0 367 ------- null} + -t 33.752 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 718 -a 0 -x {3.0 21.0 367 ------- null} - -t 33.752 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 718 -a 0 -x {3.0 21.0 367 ------- null} h -t 33.752 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 718 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.7536 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {3.0 21.0 368 ------- null} + -t 33.7536 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {3.0 21.0 368 ------- null} - -t 33.7536 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {3.0 21.0 368 ------- null} h -t 33.7536 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.7552 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 720 -a 0 -x {3.0 21.0 369 ------- null} + -t 33.7552 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 720 -a 0 -x {3.0 21.0 369 ------- null} - -t 33.7552 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 720 -a 0 -x {3.0 21.0 369 ------- null} h -t 33.7552 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 720 -a 0 -x {3.0 21.0 -1 ------- null} r -t 33.7568 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {3.0 21.0 370 ------- null} + -t 33.7568 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {3.0 21.0 370 ------- null} - -t 33.7568 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {3.0 21.0 370 ------- null} h -t 33.7568 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {3.0 21.0 -1 ------- null} r -t 34.028 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 702 -a 0 -x {3.0 21.0 351 ------- null} + -t 34.028 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 702 -a 0 -x {3.0 21.0 351 ------- null} - -t 34.028 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 702 -a 0 -x {3.0 21.0 351 ------- null} h -t 34.028 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 702 -a 0 -x {3.0 21.0 -1 ------- null} r -t 34.0296 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {3.0 21.0 352 ------- null} + -t 34.0296 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {3.0 21.0 352 ------- null} - -t 34.0296 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {3.0 21.0 352 ------- null} h -t 34.0296 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {3.0 21.0 -1 ------- null} r -t 34.0312 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 704 -a 0 -x {3.0 21.0 353 ------- null} + -t 34.0312 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 704 -a 0 -x {3.0 21.0 353 ------- null} - -t 34.0312 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 704 -a 0 -x {3.0 21.0 353 ------- null} h -t 34.0312 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 704 -a 0 -x {3.0 21.0 -1 ------- null} r -t 34.0328 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {3.0 21.0 354 ------- null} + -t 34.0328 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {3.0 21.0 354 ------- null} - -t 34.0328 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {3.0 21.0 354 ------- null} h -t 34.0328 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {3.0 21.0 -1 ------- null} r -t 34.0344 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 706 -a 0 -x {3.0 21.0 355 ------- null} + -t 34.0344 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 706 -a 0 -x {3.0 21.0 355 ------- null} - -t 34.0344 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 706 -a 0 -x {3.0 21.0 355 ------- null} h -t 34.0344 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 706 -a 0 -x {3.0 21.0 -1 ------- null} r -t 34.036 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {3.0 21.0 356 ------- null} + -t 34.036 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {3.0 21.0 356 ------- null} - -t 34.036 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {3.0 21.0 356 ------- null} h -t 34.036 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {3.0 21.0 -1 ------- null} r -t 34.0376 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 708 -a 0 -x {3.0 21.0 357 ------- null} + -t 34.0376 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 708 -a 0 -x {3.0 21.0 357 ------- null} - -t 34.0376 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 708 -a 0 -x {3.0 21.0 357 ------- null} h -t 34.0376 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 708 -a 0 -x {3.0 21.0 -1 ------- null} r -t 34.0392 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {3.0 21.0 358 ------- null} + -t 34.0392 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {3.0 21.0 358 ------- null} - -t 34.0392 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {3.0 21.0 358 ------- null} h -t 34.0392 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {3.0 21.0 -1 ------- null} r -t 34.0408 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 710 -a 0 -x {3.0 21.0 359 ------- null} + -t 34.0408 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 710 -a 0 -x {3.0 21.0 359 ------- null} - -t 34.0408 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 710 -a 0 -x {3.0 21.0 359 ------- null} h -t 34.0408 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 710 -a 0 -x {3.0 21.0 -1 ------- null} r -t 34.0424 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {3.0 21.0 360 ------- null} + -t 34.0424 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {3.0 21.0 360 ------- null} - -t 34.0424 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {3.0 21.0 360 ------- null} h -t 34.0424 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {3.0 21.0 -1 ------- null} r -t 34.044 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 712 -a 0 -x {3.0 21.0 361 ------- null} + -t 34.044 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 712 -a 0 -x {3.0 21.0 361 ------- null} - -t 34.044 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 712 -a 0 -x {3.0 21.0 361 ------- null} h -t 34.044 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 712 -a 0 -x {3.0 21.0 -1 ------- null} r -t 34.0456 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {3.0 21.0 362 ------- null} + -t 34.0456 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {3.0 21.0 362 ------- null} - -t 34.0456 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {3.0 21.0 362 ------- null} h -t 34.0456 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {3.0 21.0 -1 ------- null} r -t 34.0472 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 714 -a 0 -x {3.0 21.0 363 ------- null} + -t 34.0472 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 714 -a 0 -x {3.0 21.0 363 ------- null} - -t 34.0472 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 714 -a 0 -x {3.0 21.0 363 ------- null} h -t 34.0472 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 714 -a 0 -x {3.0 21.0 -1 ------- null} r -t 34.0488 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {3.0 21.0 364 ------- null} + -t 34.0488 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {3.0 21.0 364 ------- null} - -t 34.0488 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {3.0 21.0 364 ------- null} h -t 34.0488 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {3.0 21.0 -1 ------- null} r -t 34.0504 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 716 -a 0 -x {3.0 21.0 365 ------- null} + -t 34.0504 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 716 -a 0 -x {3.0 21.0 365 ------- null} - -t 34.0504 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 716 -a 0 -x {3.0 21.0 365 ------- null} h -t 34.0504 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 716 -a 0 -x {3.0 21.0 -1 ------- null} r -t 34.052 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {3.0 21.0 366 ------- null} + -t 34.052 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {3.0 21.0 366 ------- null} - -t 34.052 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {3.0 21.0 366 ------- null} h -t 34.052 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {3.0 21.0 -1 ------- null} r -t 34.0536 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 718 -a 0 -x {3.0 21.0 367 ------- null} + -t 34.0536 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 718 -a 0 -x {3.0 21.0 367 ------- null} - -t 34.0536 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 718 -a 0 -x {3.0 21.0 367 ------- null} h -t 34.0536 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 718 -a 0 -x {3.0 21.0 -1 ------- null} r -t 34.0552 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {3.0 21.0 368 ------- null} + -t 34.0552 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {3.0 21.0 368 ------- null} - -t 34.0552 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {3.0 21.0 368 ------- null} h -t 34.0552 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {3.0 21.0 -1 ------- null} r -t 34.0568 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 720 -a 0 -x {3.0 21.0 369 ------- null} + -t 34.0568 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 720 -a 0 -x {3.0 21.0 369 ------- null} - -t 34.0568 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 720 -a 0 -x {3.0 21.0 369 ------- null} h -t 34.0568 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 720 -a 0 -x {3.0 21.0 -1 ------- null} r -t 34.0584 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {3.0 21.0 370 ------- null} + -t 34.0584 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {3.0 21.0 370 ------- null} - -t 34.0584 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {3.0 21.0 370 ------- null} h -t 34.0584 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {3.0 21.0 -1 ------- null} r -t 34.3796 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 702 -a 0 -x {3.0 21.0 351 ------- null} + -t 34.3796 -s 21 -d 28 -p ack -e 40 -c 0 -i 722 -a 1 -x {21.0 3.0 351 ------- null} - -t 34.3796 -s 21 -d 28 -p ack -e 40 -c 0 -i 722 -a 1 -x {21.0 3.0 351 ------- null} h -t 34.3796 -s 21 -d 28 -p ack -e 40 -c 0 -i 722 -a 1 -x {21.0 3.0 -1 ------- null} r -t 34.3812 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {3.0 21.0 352 ------- null} + -t 34.3812 -s 21 -d 28 -p ack -e 40 -c 0 -i 723 -a 1 -x {21.0 3.0 352 ------- null} - -t 34.3812 -s 21 -d 28 -p ack -e 40 -c 0 -i 723 -a 1 -x {21.0 3.0 352 ------- null} h -t 34.3812 -s 21 -d 28 -p ack -e 40 -c 0 -i 723 -a 1 -x {21.0 3.0 -1 ------- null} r -t 34.3828 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 704 -a 0 -x {3.0 21.0 353 ------- null} + -t 34.3828 -s 21 -d 28 -p ack -e 40 -c 0 -i 724 -a 1 -x {21.0 3.0 353 ------- null} - -t 34.3828 -s 21 -d 28 -p ack -e 40 -c 0 -i 724 -a 1 -x {21.0 3.0 353 ------- null} h -t 34.3828 -s 21 -d 28 -p ack -e 40 -c 0 -i 724 -a 1 -x {21.0 3.0 -1 ------- null} r -t 34.3844 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {3.0 21.0 354 ------- null} + -t 34.3844 -s 21 -d 28 -p ack -e 40 -c 0 -i 725 -a 1 -x {21.0 3.0 354 ------- null} - -t 34.3844 -s 21 -d 28 -p ack -e 40 -c 0 -i 725 -a 1 -x {21.0 3.0 354 ------- null} h -t 34.3844 -s 21 -d 28 -p ack -e 40 -c 0 -i 725 -a 1 -x {21.0 3.0 -1 ------- null} r -t 34.386 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 706 -a 0 -x {3.0 21.0 355 ------- null} + -t 34.386 -s 21 -d 28 -p ack -e 40 -c 0 -i 726 -a 1 -x {21.0 3.0 355 ------- null} - -t 34.386 -s 21 -d 28 -p ack -e 40 -c 0 -i 726 -a 1 -x {21.0 3.0 355 ------- null} h -t 34.386 -s 21 -d 28 -p ack -e 40 -c 0 -i 726 -a 1 -x {21.0 3.0 -1 ------- null} r -t 34.3876 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {3.0 21.0 356 ------- null} + -t 34.3876 -s 21 -d 28 -p ack -e 40 -c 0 -i 727 -a 1 -x {21.0 3.0 356 ------- null} - -t 34.3876 -s 21 -d 28 -p ack -e 40 -c 0 -i 727 -a 1 -x {21.0 3.0 356 ------- null} h -t 34.3876 -s 21 -d 28 -p ack -e 40 -c 0 -i 727 -a 1 -x {21.0 3.0 -1 ------- null} r -t 34.3892 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 708 -a 0 -x {3.0 21.0 357 ------- null} + -t 34.3892 -s 21 -d 28 -p ack -e 40 -c 0 -i 728 -a 1 -x {21.0 3.0 357 ------- null} - -t 34.3892 -s 21 -d 28 -p ack -e 40 -c 0 -i 728 -a 1 -x {21.0 3.0 357 ------- null} h -t 34.3892 -s 21 -d 28 -p ack -e 40 -c 0 -i 728 -a 1 -x {21.0 3.0 -1 ------- null} r -t 34.3908 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {3.0 21.0 358 ------- null} + -t 34.3908 -s 21 -d 28 -p ack -e 40 -c 0 -i 729 -a 1 -x {21.0 3.0 358 ------- null} - -t 34.3908 -s 21 -d 28 -p ack -e 40 -c 0 -i 729 -a 1 -x {21.0 3.0 358 ------- null} h -t 34.3908 -s 21 -d 28 -p ack -e 40 -c 0 -i 729 -a 1 -x {21.0 3.0 -1 ------- null} r -t 34.3924 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 710 -a 0 -x {3.0 21.0 359 ------- null} + -t 34.3924 -s 21 -d 28 -p ack -e 40 -c 0 -i 730 -a 1 -x {21.0 3.0 359 ------- null} - -t 34.3924 -s 21 -d 28 -p ack -e 40 -c 0 -i 730 -a 1 -x {21.0 3.0 359 ------- null} h -t 34.3924 -s 21 -d 28 -p ack -e 40 -c 0 -i 730 -a 1 -x {21.0 3.0 -1 ------- null} r -t 34.394 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {3.0 21.0 360 ------- null} + -t 34.394 -s 21 -d 28 -p ack -e 40 -c 0 -i 731 -a 1 -x {21.0 3.0 360 ------- null} - -t 34.394 -s 21 -d 28 -p ack -e 40 -c 0 -i 731 -a 1 -x {21.0 3.0 360 ------- null} h -t 34.394 -s 21 -d 28 -p ack -e 40 -c 0 -i 731 -a 1 -x {21.0 3.0 -1 ------- null} r -t 34.3956 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 712 -a 0 -x {3.0 21.0 361 ------- null} + -t 34.3956 -s 21 -d 28 -p ack -e 40 -c 0 -i 732 -a 1 -x {21.0 3.0 361 ------- null} - -t 34.3956 -s 21 -d 28 -p ack -e 40 -c 0 -i 732 -a 1 -x {21.0 3.0 361 ------- null} h -t 34.3956 -s 21 -d 28 -p ack -e 40 -c 0 -i 732 -a 1 -x {21.0 3.0 -1 ------- null} r -t 34.3972 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {3.0 21.0 362 ------- null} + -t 34.3972 -s 21 -d 28 -p ack -e 40 -c 0 -i 733 -a 1 -x {21.0 3.0 362 ------- null} - -t 34.3972 -s 21 -d 28 -p ack -e 40 -c 0 -i 733 -a 1 -x {21.0 3.0 362 ------- null} h -t 34.3972 -s 21 -d 28 -p ack -e 40 -c 0 -i 733 -a 1 -x {21.0 3.0 -1 ------- null} r -t 34.3988 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 714 -a 0 -x {3.0 21.0 363 ------- null} + -t 34.3988 -s 21 -d 28 -p ack -e 40 -c 0 -i 734 -a 1 -x {21.0 3.0 363 ------- null} - -t 34.3988 -s 21 -d 28 -p ack -e 40 -c 0 -i 734 -a 1 -x {21.0 3.0 363 ------- null} h -t 34.3988 -s 21 -d 28 -p ack -e 40 -c 0 -i 734 -a 1 -x {21.0 3.0 -1 ------- null} r -t 34.4004 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {3.0 21.0 364 ------- null} + -t 34.4004 -s 21 -d 28 -p ack -e 40 -c 0 -i 735 -a 1 -x {21.0 3.0 364 ------- null} - -t 34.4004 -s 21 -d 28 -p ack -e 40 -c 0 -i 735 -a 1 -x {21.0 3.0 364 ------- null} h -t 34.4004 -s 21 -d 28 -p ack -e 40 -c 0 -i 735 -a 1 -x {21.0 3.0 -1 ------- null} r -t 34.402 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 716 -a 0 -x {3.0 21.0 365 ------- null} + -t 34.402 -s 21 -d 28 -p ack -e 40 -c 0 -i 736 -a 1 -x {21.0 3.0 365 ------- null} - -t 34.402 -s 21 -d 28 -p ack -e 40 -c 0 -i 736 -a 1 -x {21.0 3.0 365 ------- null} h -t 34.402 -s 21 -d 28 -p ack -e 40 -c 0 -i 736 -a 1 -x {21.0 3.0 -1 ------- null} r -t 34.4036 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {3.0 21.0 366 ------- null} + -t 34.4036 -s 21 -d 28 -p ack -e 40 -c 0 -i 737 -a 1 -x {21.0 3.0 366 ------- null} - -t 34.4036 -s 21 -d 28 -p ack -e 40 -c 0 -i 737 -a 1 -x {21.0 3.0 366 ------- null} h -t 34.4036 -s 21 -d 28 -p ack -e 40 -c 0 -i 737 -a 1 -x {21.0 3.0 -1 ------- null} r -t 34.4052 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 718 -a 0 -x {3.0 21.0 367 ------- null} + -t 34.4052 -s 21 -d 28 -p ack -e 40 -c 0 -i 738 -a 1 -x {21.0 3.0 367 ------- null} - -t 34.4052 -s 21 -d 28 -p ack -e 40 -c 0 -i 738 -a 1 -x {21.0 3.0 367 ------- null} h -t 34.4052 -s 21 -d 28 -p ack -e 40 -c 0 -i 738 -a 1 -x {21.0 3.0 -1 ------- null} r -t 34.4068 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {3.0 21.0 368 ------- null} + -t 34.4068 -s 21 -d 28 -p ack -e 40 -c 0 -i 739 -a 1 -x {21.0 3.0 368 ------- null} - -t 34.4068 -s 21 -d 28 -p ack -e 40 -c 0 -i 739 -a 1 -x {21.0 3.0 368 ------- null} h -t 34.4068 -s 21 -d 28 -p ack -e 40 -c 0 -i 739 -a 1 -x {21.0 3.0 -1 ------- null} r -t 34.4084 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 720 -a 0 -x {3.0 21.0 369 ------- null} + -t 34.4084 -s 21 -d 28 -p ack -e 40 -c 0 -i 740 -a 1 -x {21.0 3.0 369 ------- null} - -t 34.4084 -s 21 -d 28 -p ack -e 40 -c 0 -i 740 -a 1 -x {21.0 3.0 369 ------- null} h -t 34.4084 -s 21 -d 28 -p ack -e 40 -c 0 -i 740 -a 1 -x {21.0 3.0 -1 ------- null} r -t 34.41 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {3.0 21.0 370 ------- null} + -t 34.41 -s 21 -d 28 -p ack -e 40 -c 0 -i 741 -a 1 -x {21.0 3.0 370 ------- null} - -t 34.41 -s 21 -d 28 -p ack -e 40 -c 0 -i 741 -a 1 -x {21.0 3.0 370 ------- null} h -t 34.41 -s 21 -d 28 -p ack -e 40 -c 0 -i 741 -a 1 -x {21.0 3.0 -1 ------- null} r -t 34.7297 -s 21 -d 28 -p ack -e 40 -c 0 -i 722 -a 1 -x {21.0 3.0 351 ------- null} + -t 34.7297 -s 28 -d 1 -p ack -e 40 -c 0 -i 722 -a 1 -x {21.0 3.0 351 ------- null} - -t 34.7297 -s 28 -d 1 -p ack -e 40 -c 0 -i 722 -a 1 -x {21.0 3.0 351 ------- null} h -t 34.7297 -s 28 -d 1 -p ack -e 40 -c 0 -i 722 -a 1 -x {21.0 3.0 -1 ------- null} r -t 34.7313 -s 21 -d 28 -p ack -e 40 -c 0 -i 723 -a 1 -x {21.0 3.0 352 ------- null} + -t 34.7313 -s 28 -d 1 -p ack -e 40 -c 0 -i 723 -a 1 -x {21.0 3.0 352 ------- null} - -t 34.7313 -s 28 -d 1 -p ack -e 40 -c 0 -i 723 -a 1 -x {21.0 3.0 352 ------- null} h -t 34.7313 -s 28 -d 1 -p ack -e 40 -c 0 -i 723 -a 1 -x {21.0 3.0 -1 ------- null} r -t 34.7329 -s 21 -d 28 -p ack -e 40 -c 0 -i 724 -a 1 -x {21.0 3.0 353 ------- null} + -t 34.7329 -s 28 -d 1 -p ack -e 40 -c 0 -i 724 -a 1 -x {21.0 3.0 353 ------- null} - -t 34.7329 -s 28 -d 1 -p ack -e 40 -c 0 -i 724 -a 1 -x {21.0 3.0 353 ------- null} h -t 34.7329 -s 28 -d 1 -p ack -e 40 -c 0 -i 724 -a 1 -x {21.0 3.0 -1 ------- null} r -t 34.7345 -s 21 -d 28 -p ack -e 40 -c 0 -i 725 -a 1 -x {21.0 3.0 354 ------- null} + -t 34.7345 -s 28 -d 1 -p ack -e 40 -c 0 -i 725 -a 1 -x {21.0 3.0 354 ------- null} - -t 34.7345 -s 28 -d 1 -p ack -e 40 -c 0 -i 725 -a 1 -x {21.0 3.0 354 ------- null} h -t 34.7345 -s 28 -d 1 -p ack -e 40 -c 0 -i 725 -a 1 -x {21.0 3.0 -1 ------- null} r -t 34.7361 -s 21 -d 28 -p ack -e 40 -c 0 -i 726 -a 1 -x {21.0 3.0 355 ------- null} + -t 34.7361 -s 28 -d 1 -p ack -e 40 -c 0 -i 726 -a 1 -x {21.0 3.0 355 ------- null} - -t 34.7361 -s 28 -d 1 -p ack -e 40 -c 0 -i 726 -a 1 -x {21.0 3.0 355 ------- null} h -t 34.7361 -s 28 -d 1 -p ack -e 40 -c 0 -i 726 -a 1 -x {21.0 3.0 -1 ------- null} r -t 34.7377 -s 21 -d 28 -p ack -e 40 -c 0 -i 727 -a 1 -x {21.0 3.0 356 ------- null} + -t 34.7377 -s 28 -d 1 -p ack -e 40 -c 0 -i 727 -a 1 -x {21.0 3.0 356 ------- null} - -t 34.7377 -s 28 -d 1 -p ack -e 40 -c 0 -i 727 -a 1 -x {21.0 3.0 356 ------- null} h -t 34.7377 -s 28 -d 1 -p ack -e 40 -c 0 -i 727 -a 1 -x {21.0 3.0 -1 ------- null} r -t 34.7393 -s 21 -d 28 -p ack -e 40 -c 0 -i 728 -a 1 -x {21.0 3.0 357 ------- null} + -t 34.7393 -s 28 -d 1 -p ack -e 40 -c 0 -i 728 -a 1 -x {21.0 3.0 357 ------- null} - -t 34.7393 -s 28 -d 1 -p ack -e 40 -c 0 -i 728 -a 1 -x {21.0 3.0 357 ------- null} h -t 34.7393 -s 28 -d 1 -p ack -e 40 -c 0 -i 728 -a 1 -x {21.0 3.0 -1 ------- null} r -t 34.7409 -s 21 -d 28 -p ack -e 40 -c 0 -i 729 -a 1 -x {21.0 3.0 358 ------- null} + -t 34.7409 -s 28 -d 1 -p ack -e 40 -c 0 -i 729 -a 1 -x {21.0 3.0 358 ------- null} - -t 34.7409 -s 28 -d 1 -p ack -e 40 -c 0 -i 729 -a 1 -x {21.0 3.0 358 ------- null} h -t 34.7409 -s 28 -d 1 -p ack -e 40 -c 0 -i 729 -a 1 -x {21.0 3.0 -1 ------- null} r -t 34.7425 -s 21 -d 28 -p ack -e 40 -c 0 -i 730 -a 1 -x {21.0 3.0 359 ------- null} + -t 34.7425 -s 28 -d 1 -p ack -e 40 -c 0 -i 730 -a 1 -x {21.0 3.0 359 ------- null} - -t 34.7425 -s 28 -d 1 -p ack -e 40 -c 0 -i 730 -a 1 -x {21.0 3.0 359 ------- null} h -t 34.7425 -s 28 -d 1 -p ack -e 40 -c 0 -i 730 -a 1 -x {21.0 3.0 -1 ------- null} r -t 34.7441 -s 21 -d 28 -p ack -e 40 -c 0 -i 731 -a 1 -x {21.0 3.0 360 ------- null} + -t 34.7441 -s 28 -d 1 -p ack -e 40 -c 0 -i 731 -a 1 -x {21.0 3.0 360 ------- null} - -t 34.7441 -s 28 -d 1 -p ack -e 40 -c 0 -i 731 -a 1 -x {21.0 3.0 360 ------- null} h -t 34.7441 -s 28 -d 1 -p ack -e 40 -c 0 -i 731 -a 1 -x {21.0 3.0 -1 ------- null} r -t 34.7457 -s 21 -d 28 -p ack -e 40 -c 0 -i 732 -a 1 -x {21.0 3.0 361 ------- null} + -t 34.7457 -s 28 -d 1 -p ack -e 40 -c 0 -i 732 -a 1 -x {21.0 3.0 361 ------- null} - -t 34.7457 -s 28 -d 1 -p ack -e 40 -c 0 -i 732 -a 1 -x {21.0 3.0 361 ------- null} h -t 34.7457 -s 28 -d 1 -p ack -e 40 -c 0 -i 732 -a 1 -x {21.0 3.0 -1 ------- null} r -t 34.7473 -s 21 -d 28 -p ack -e 40 -c 0 -i 733 -a 1 -x {21.0 3.0 362 ------- null} + -t 34.7473 -s 28 -d 1 -p ack -e 40 -c 0 -i 733 -a 1 -x {21.0 3.0 362 ------- null} - -t 34.7473 -s 28 -d 1 -p ack -e 40 -c 0 -i 733 -a 1 -x {21.0 3.0 362 ------- null} h -t 34.7473 -s 28 -d 1 -p ack -e 40 -c 0 -i 733 -a 1 -x {21.0 3.0 -1 ------- null} r -t 34.7489 -s 21 -d 28 -p ack -e 40 -c 0 -i 734 -a 1 -x {21.0 3.0 363 ------- null} + -t 34.7489 -s 28 -d 1 -p ack -e 40 -c 0 -i 734 -a 1 -x {21.0 3.0 363 ------- null} - -t 34.7489 -s 28 -d 1 -p ack -e 40 -c 0 -i 734 -a 1 -x {21.0 3.0 363 ------- null} h -t 34.7489 -s 28 -d 1 -p ack -e 40 -c 0 -i 734 -a 1 -x {21.0 3.0 -1 ------- null} r -t 34.7505 -s 21 -d 28 -p ack -e 40 -c 0 -i 735 -a 1 -x {21.0 3.0 364 ------- null} + -t 34.7505 -s 28 -d 1 -p ack -e 40 -c 0 -i 735 -a 1 -x {21.0 3.0 364 ------- null} - -t 34.7505 -s 28 -d 1 -p ack -e 40 -c 0 -i 735 -a 1 -x {21.0 3.0 364 ------- null} h -t 34.7505 -s 28 -d 1 -p ack -e 40 -c 0 -i 735 -a 1 -x {21.0 3.0 -1 ------- null} r -t 34.7521 -s 21 -d 28 -p ack -e 40 -c 0 -i 736 -a 1 -x {21.0 3.0 365 ------- null} + -t 34.7521 -s 28 -d 1 -p ack -e 40 -c 0 -i 736 -a 1 -x {21.0 3.0 365 ------- null} - -t 34.7521 -s 28 -d 1 -p ack -e 40 -c 0 -i 736 -a 1 -x {21.0 3.0 365 ------- null} h -t 34.7521 -s 28 -d 1 -p ack -e 40 -c 0 -i 736 -a 1 -x {21.0 3.0 -1 ------- null} r -t 34.7537 -s 21 -d 28 -p ack -e 40 -c 0 -i 737 -a 1 -x {21.0 3.0 366 ------- null} + -t 34.7537 -s 28 -d 1 -p ack -e 40 -c 0 -i 737 -a 1 -x {21.0 3.0 366 ------- null} - -t 34.7537 -s 28 -d 1 -p ack -e 40 -c 0 -i 737 -a 1 -x {21.0 3.0 366 ------- null} h -t 34.7537 -s 28 -d 1 -p ack -e 40 -c 0 -i 737 -a 1 -x {21.0 3.0 -1 ------- null} r -t 34.7553 -s 21 -d 28 -p ack -e 40 -c 0 -i 738 -a 1 -x {21.0 3.0 367 ------- null} + -t 34.7553 -s 28 -d 1 -p ack -e 40 -c 0 -i 738 -a 1 -x {21.0 3.0 367 ------- null} - -t 34.7553 -s 28 -d 1 -p ack -e 40 -c 0 -i 738 -a 1 -x {21.0 3.0 367 ------- null} h -t 34.7553 -s 28 -d 1 -p ack -e 40 -c 0 -i 738 -a 1 -x {21.0 3.0 -1 ------- null} r -t 34.7569 -s 21 -d 28 -p ack -e 40 -c 0 -i 739 -a 1 -x {21.0 3.0 368 ------- null} + -t 34.7569 -s 28 -d 1 -p ack -e 40 -c 0 -i 739 -a 1 -x {21.0 3.0 368 ------- null} - -t 34.7569 -s 28 -d 1 -p ack -e 40 -c 0 -i 739 -a 1 -x {21.0 3.0 368 ------- null} h -t 34.7569 -s 28 -d 1 -p ack -e 40 -c 0 -i 739 -a 1 -x {21.0 3.0 -1 ------- null} r -t 34.7585 -s 21 -d 28 -p ack -e 40 -c 0 -i 740 -a 1 -x {21.0 3.0 369 ------- null} + -t 34.7585 -s 28 -d 1 -p ack -e 40 -c 0 -i 740 -a 1 -x {21.0 3.0 369 ------- null} - -t 34.7585 -s 28 -d 1 -p ack -e 40 -c 0 -i 740 -a 1 -x {21.0 3.0 369 ------- null} h -t 34.7585 -s 28 -d 1 -p ack -e 40 -c 0 -i 740 -a 1 -x {21.0 3.0 -1 ------- null} r -t 34.7601 -s 21 -d 28 -p ack -e 40 -c 0 -i 741 -a 1 -x {21.0 3.0 370 ------- null} + -t 34.7601 -s 28 -d 1 -p ack -e 40 -c 0 -i 741 -a 1 -x {21.0 3.0 370 ------- null} - -t 34.7601 -s 28 -d 1 -p ack -e 40 -c 0 -i 741 -a 1 -x {21.0 3.0 370 ------- null} h -t 34.7601 -s 28 -d 1 -p ack -e 40 -c 0 -i 741 -a 1 -x {21.0 3.0 -1 ------- null} r -t 35.0298 -s 28 -d 1 -p ack -e 40 -c 0 -i 722 -a 1 -x {21.0 3.0 351 ------- null} + -t 35.0298 -s 1 -d 3 -p ack -e 40 -c 0 -i 722 -a 1 -x {21.0 3.0 351 ------- null} - -t 35.0298 -s 1 -d 3 -p ack -e 40 -c 0 -i 722 -a 1 -x {21.0 3.0 351 ------- null} h -t 35.0298 -s 1 -d 3 -p ack -e 40 -c 0 -i 722 -a 1 -x {21.0 3.0 -1 ------- null} r -t 35.0314 -s 28 -d 1 -p ack -e 40 -c 0 -i 723 -a 1 -x {21.0 3.0 352 ------- null} + -t 35.0314 -s 1 -d 3 -p ack -e 40 -c 0 -i 723 -a 1 -x {21.0 3.0 352 ------- null} - -t 35.0314 -s 1 -d 3 -p ack -e 40 -c 0 -i 723 -a 1 -x {21.0 3.0 352 ------- null} h -t 35.0314 -s 1 -d 3 -p ack -e 40 -c 0 -i 723 -a 1 -x {21.0 3.0 -1 ------- null} r -t 35.033 -s 28 -d 1 -p ack -e 40 -c 0 -i 724 -a 1 -x {21.0 3.0 353 ------- null} + -t 35.033 -s 1 -d 3 -p ack -e 40 -c 0 -i 724 -a 1 -x {21.0 3.0 353 ------- null} - -t 35.033 -s 1 -d 3 -p ack -e 40 -c 0 -i 724 -a 1 -x {21.0 3.0 353 ------- null} h -t 35.033 -s 1 -d 3 -p ack -e 40 -c 0 -i 724 -a 1 -x {21.0 3.0 -1 ------- null} r -t 35.0346 -s 28 -d 1 -p ack -e 40 -c 0 -i 725 -a 1 -x {21.0 3.0 354 ------- null} + -t 35.0346 -s 1 -d 3 -p ack -e 40 -c 0 -i 725 -a 1 -x {21.0 3.0 354 ------- null} - -t 35.0346 -s 1 -d 3 -p ack -e 40 -c 0 -i 725 -a 1 -x {21.0 3.0 354 ------- null} h -t 35.0346 -s 1 -d 3 -p ack -e 40 -c 0 -i 725 -a 1 -x {21.0 3.0 -1 ------- null} r -t 35.0362 -s 28 -d 1 -p ack -e 40 -c 0 -i 726 -a 1 -x {21.0 3.0 355 ------- null} + -t 35.0362 -s 1 -d 3 -p ack -e 40 -c 0 -i 726 -a 1 -x {21.0 3.0 355 ------- null} - -t 35.0362 -s 1 -d 3 -p ack -e 40 -c 0 -i 726 -a 1 -x {21.0 3.0 355 ------- null} h -t 35.0362 -s 1 -d 3 -p ack -e 40 -c 0 -i 726 -a 1 -x {21.0 3.0 -1 ------- null} r -t 35.0378 -s 28 -d 1 -p ack -e 40 -c 0 -i 727 -a 1 -x {21.0 3.0 356 ------- null} + -t 35.0378 -s 1 -d 3 -p ack -e 40 -c 0 -i 727 -a 1 -x {21.0 3.0 356 ------- null} - -t 35.0378 -s 1 -d 3 -p ack -e 40 -c 0 -i 727 -a 1 -x {21.0 3.0 356 ------- null} h -t 35.0378 -s 1 -d 3 -p ack -e 40 -c 0 -i 727 -a 1 -x {21.0 3.0 -1 ------- null} r -t 35.0394 -s 28 -d 1 -p ack -e 40 -c 0 -i 728 -a 1 -x {21.0 3.0 357 ------- null} + -t 35.0394 -s 1 -d 3 -p ack -e 40 -c 0 -i 728 -a 1 -x {21.0 3.0 357 ------- null} - -t 35.0394 -s 1 -d 3 -p ack -e 40 -c 0 -i 728 -a 1 -x {21.0 3.0 357 ------- null} h -t 35.0394 -s 1 -d 3 -p ack -e 40 -c 0 -i 728 -a 1 -x {21.0 3.0 -1 ------- null} r -t 35.041 -s 28 -d 1 -p ack -e 40 -c 0 -i 729 -a 1 -x {21.0 3.0 358 ------- null} + -t 35.041 -s 1 -d 3 -p ack -e 40 -c 0 -i 729 -a 1 -x {21.0 3.0 358 ------- null} - -t 35.041 -s 1 -d 3 -p ack -e 40 -c 0 -i 729 -a 1 -x {21.0 3.0 358 ------- null} h -t 35.041 -s 1 -d 3 -p ack -e 40 -c 0 -i 729 -a 1 -x {21.0 3.0 -1 ------- null} r -t 35.0426 -s 28 -d 1 -p ack -e 40 -c 0 -i 730 -a 1 -x {21.0 3.0 359 ------- null} + -t 35.0426 -s 1 -d 3 -p ack -e 40 -c 0 -i 730 -a 1 -x {21.0 3.0 359 ------- null} - -t 35.0426 -s 1 -d 3 -p ack -e 40 -c 0 -i 730 -a 1 -x {21.0 3.0 359 ------- null} h -t 35.0426 -s 1 -d 3 -p ack -e 40 -c 0 -i 730 -a 1 -x {21.0 3.0 -1 ------- null} r -t 35.0442 -s 28 -d 1 -p ack -e 40 -c 0 -i 731 -a 1 -x {21.0 3.0 360 ------- null} + -t 35.0442 -s 1 -d 3 -p ack -e 40 -c 0 -i 731 -a 1 -x {21.0 3.0 360 ------- null} - -t 35.0442 -s 1 -d 3 -p ack -e 40 -c 0 -i 731 -a 1 -x {21.0 3.0 360 ------- null} h -t 35.0442 -s 1 -d 3 -p ack -e 40 -c 0 -i 731 -a 1 -x {21.0 3.0 -1 ------- null} r -t 35.0458 -s 28 -d 1 -p ack -e 40 -c 0 -i 732 -a 1 -x {21.0 3.0 361 ------- null} + -t 35.0458 -s 1 -d 3 -p ack -e 40 -c 0 -i 732 -a 1 -x {21.0 3.0 361 ------- null} - -t 35.0458 -s 1 -d 3 -p ack -e 40 -c 0 -i 732 -a 1 -x {21.0 3.0 361 ------- null} h -t 35.0458 -s 1 -d 3 -p ack -e 40 -c 0 -i 732 -a 1 -x {21.0 3.0 -1 ------- null} r -t 35.0474 -s 28 -d 1 -p ack -e 40 -c 0 -i 733 -a 1 -x {21.0 3.0 362 ------- null} + -t 35.0474 -s 1 -d 3 -p ack -e 40 -c 0 -i 733 -a 1 -x {21.0 3.0 362 ------- null} - -t 35.0474 -s 1 -d 3 -p ack -e 40 -c 0 -i 733 -a 1 -x {21.0 3.0 362 ------- null} h -t 35.0474 -s 1 -d 3 -p ack -e 40 -c 0 -i 733 -a 1 -x {21.0 3.0 -1 ------- null} r -t 35.049 -s 28 -d 1 -p ack -e 40 -c 0 -i 734 -a 1 -x {21.0 3.0 363 ------- null} + -t 35.049 -s 1 -d 3 -p ack -e 40 -c 0 -i 734 -a 1 -x {21.0 3.0 363 ------- null} - -t 35.049 -s 1 -d 3 -p ack -e 40 -c 0 -i 734 -a 1 -x {21.0 3.0 363 ------- null} h -t 35.049 -s 1 -d 3 -p ack -e 40 -c 0 -i 734 -a 1 -x {21.0 3.0 -1 ------- null} r -t 35.0506 -s 28 -d 1 -p ack -e 40 -c 0 -i 735 -a 1 -x {21.0 3.0 364 ------- null} + -t 35.0506 -s 1 -d 3 -p ack -e 40 -c 0 -i 735 -a 1 -x {21.0 3.0 364 ------- null} - -t 35.0506 -s 1 -d 3 -p ack -e 40 -c 0 -i 735 -a 1 -x {21.0 3.0 364 ------- null} h -t 35.0506 -s 1 -d 3 -p ack -e 40 -c 0 -i 735 -a 1 -x {21.0 3.0 -1 ------- null} r -t 35.0522 -s 28 -d 1 -p ack -e 40 -c 0 -i 736 -a 1 -x {21.0 3.0 365 ------- null} + -t 35.0522 -s 1 -d 3 -p ack -e 40 -c 0 -i 736 -a 1 -x {21.0 3.0 365 ------- null} - -t 35.0522 -s 1 -d 3 -p ack -e 40 -c 0 -i 736 -a 1 -x {21.0 3.0 365 ------- null} h -t 35.0522 -s 1 -d 3 -p ack -e 40 -c 0 -i 736 -a 1 -x {21.0 3.0 -1 ------- null} r -t 35.0538 -s 28 -d 1 -p ack -e 40 -c 0 -i 737 -a 1 -x {21.0 3.0 366 ------- null} + -t 35.0538 -s 1 -d 3 -p ack -e 40 -c 0 -i 737 -a 1 -x {21.0 3.0 366 ------- null} - -t 35.0538 -s 1 -d 3 -p ack -e 40 -c 0 -i 737 -a 1 -x {21.0 3.0 366 ------- null} h -t 35.0538 -s 1 -d 3 -p ack -e 40 -c 0 -i 737 -a 1 -x {21.0 3.0 -1 ------- null} r -t 35.0554 -s 28 -d 1 -p ack -e 40 -c 0 -i 738 -a 1 -x {21.0 3.0 367 ------- null} + -t 35.0554 -s 1 -d 3 -p ack -e 40 -c 0 -i 738 -a 1 -x {21.0 3.0 367 ------- null} - -t 35.0554 -s 1 -d 3 -p ack -e 40 -c 0 -i 738 -a 1 -x {21.0 3.0 367 ------- null} h -t 35.0554 -s 1 -d 3 -p ack -e 40 -c 0 -i 738 -a 1 -x {21.0 3.0 -1 ------- null} r -t 35.057 -s 28 -d 1 -p ack -e 40 -c 0 -i 739 -a 1 -x {21.0 3.0 368 ------- null} + -t 35.057 -s 1 -d 3 -p ack -e 40 -c 0 -i 739 -a 1 -x {21.0 3.0 368 ------- null} - -t 35.057 -s 1 -d 3 -p ack -e 40 -c 0 -i 739 -a 1 -x {21.0 3.0 368 ------- null} h -t 35.057 -s 1 -d 3 -p ack -e 40 -c 0 -i 739 -a 1 -x {21.0 3.0 -1 ------- null} r -t 35.0586 -s 28 -d 1 -p ack -e 40 -c 0 -i 740 -a 1 -x {21.0 3.0 369 ------- null} + -t 35.0586 -s 1 -d 3 -p ack -e 40 -c 0 -i 740 -a 1 -x {21.0 3.0 369 ------- null} - -t 35.0586 -s 1 -d 3 -p ack -e 40 -c 0 -i 740 -a 1 -x {21.0 3.0 369 ------- null} h -t 35.0586 -s 1 -d 3 -p ack -e 40 -c 0 -i 740 -a 1 -x {21.0 3.0 -1 ------- null} r -t 35.0602 -s 28 -d 1 -p ack -e 40 -c 0 -i 741 -a 1 -x {21.0 3.0 370 ------- null} + -t 35.0602 -s 1 -d 3 -p ack -e 40 -c 0 -i 741 -a 1 -x {21.0 3.0 370 ------- null} - -t 35.0602 -s 1 -d 3 -p ack -e 40 -c 0 -i 741 -a 1 -x {21.0 3.0 370 ------- null} h -t 35.0602 -s 1 -d 3 -p ack -e 40 -c 0 -i 741 -a 1 -x {21.0 3.0 -1 ------- null} r -t 35.1698 -s 1 -d 3 -p ack -e 40 -c 0 -i 722 -a 1 -x {21.0 3.0 351 ------- null} + -t 35.1698 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 742 -a 0 -x {3.0 21.0 371 ------- null} - -t 35.1698 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 742 -a 0 -x {3.0 21.0 371 ------- null} h -t 35.1698 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 742 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.1714 -s 1 -d 3 -p ack -e 40 -c 0 -i 723 -a 1 -x {21.0 3.0 352 ------- null} + -t 35.1714 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {3.0 21.0 372 ------- null} - -t 35.1714 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {3.0 21.0 372 ------- null} h -t 35.1714 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.173 -s 1 -d 3 -p ack -e 40 -c 0 -i 724 -a 1 -x {21.0 3.0 353 ------- null} + -t 35.173 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 744 -a 0 -x {3.0 21.0 373 ------- null} - -t 35.173 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 744 -a 0 -x {3.0 21.0 373 ------- null} h -t 35.173 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 744 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.1746 -s 1 -d 3 -p ack -e 40 -c 0 -i 725 -a 1 -x {21.0 3.0 354 ------- null} + -t 35.1746 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {3.0 21.0 374 ------- null} - -t 35.1746 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {3.0 21.0 374 ------- null} h -t 35.1746 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.1762 -s 1 -d 3 -p ack -e 40 -c 0 -i 726 -a 1 -x {21.0 3.0 355 ------- null} + -t 35.1762 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 746 -a 0 -x {3.0 21.0 375 ------- null} - -t 35.1762 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 746 -a 0 -x {3.0 21.0 375 ------- null} h -t 35.1762 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 746 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.1778 -s 1 -d 3 -p ack -e 40 -c 0 -i 727 -a 1 -x {21.0 3.0 356 ------- null} + -t 35.1778 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {3.0 21.0 376 ------- null} - -t 35.1778 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {3.0 21.0 376 ------- null} h -t 35.1778 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.1794 -s 1 -d 3 -p ack -e 40 -c 0 -i 728 -a 1 -x {21.0 3.0 357 ------- null} + -t 35.1794 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 748 -a 0 -x {3.0 21.0 377 ------- null} - -t 35.1794 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 748 -a 0 -x {3.0 21.0 377 ------- null} h -t 35.1794 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 748 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.181 -s 1 -d 3 -p ack -e 40 -c 0 -i 729 -a 1 -x {21.0 3.0 358 ------- null} + -t 35.181 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {3.0 21.0 378 ------- null} - -t 35.181 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {3.0 21.0 378 ------- null} h -t 35.181 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.1826 -s 1 -d 3 -p ack -e 40 -c 0 -i 730 -a 1 -x {21.0 3.0 359 ------- null} + -t 35.1826 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 750 -a 0 -x {3.0 21.0 379 ------- null} - -t 35.1826 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 750 -a 0 -x {3.0 21.0 379 ------- null} h -t 35.1826 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 750 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.1842 -s 1 -d 3 -p ack -e 40 -c 0 -i 731 -a 1 -x {21.0 3.0 360 ------- null} + -t 35.1842 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {3.0 21.0 380 ------- null} - -t 35.1842 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {3.0 21.0 380 ------- null} h -t 35.1842 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.1858 -s 1 -d 3 -p ack -e 40 -c 0 -i 732 -a 1 -x {21.0 3.0 361 ------- null} + -t 35.1858 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 752 -a 0 -x {3.0 21.0 381 ------- null} - -t 35.1858 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 752 -a 0 -x {3.0 21.0 381 ------- null} h -t 35.1858 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 752 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.1874 -s 1 -d 3 -p ack -e 40 -c 0 -i 733 -a 1 -x {21.0 3.0 362 ------- null} + -t 35.1874 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {3.0 21.0 382 ------- null} - -t 35.1874 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {3.0 21.0 382 ------- null} h -t 35.1874 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.189 -s 1 -d 3 -p ack -e 40 -c 0 -i 734 -a 1 -x {21.0 3.0 363 ------- null} + -t 35.189 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 754 -a 0 -x {3.0 21.0 383 ------- null} - -t 35.189 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 754 -a 0 -x {3.0 21.0 383 ------- null} h -t 35.189 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 754 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.1906 -s 1 -d 3 -p ack -e 40 -c 0 -i 735 -a 1 -x {21.0 3.0 364 ------- null} + -t 35.1906 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {3.0 21.0 384 ------- null} - -t 35.1906 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {3.0 21.0 384 ------- null} h -t 35.1906 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.1922 -s 1 -d 3 -p ack -e 40 -c 0 -i 736 -a 1 -x {21.0 3.0 365 ------- null} + -t 35.1922 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 756 -a 0 -x {3.0 21.0 385 ------- null} - -t 35.1922 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 756 -a 0 -x {3.0 21.0 385 ------- null} h -t 35.1922 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 756 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.1938 -s 1 -d 3 -p ack -e 40 -c 0 -i 737 -a 1 -x {21.0 3.0 366 ------- null} + -t 35.1938 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {3.0 21.0 386 ------- null} - -t 35.1938 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {3.0 21.0 386 ------- null} h -t 35.1938 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.1954 -s 1 -d 3 -p ack -e 40 -c 0 -i 738 -a 1 -x {21.0 3.0 367 ------- null} + -t 35.1954 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 758 -a 0 -x {3.0 21.0 387 ------- null} - -t 35.1954 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 758 -a 0 -x {3.0 21.0 387 ------- null} h -t 35.1954 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 758 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.197 -s 1 -d 3 -p ack -e 40 -c 0 -i 739 -a 1 -x {21.0 3.0 368 ------- null} + -t 35.197 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {3.0 21.0 388 ------- null} - -t 35.197 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {3.0 21.0 388 ------- null} h -t 35.197 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.1986 -s 1 -d 3 -p ack -e 40 -c 0 -i 740 -a 1 -x {21.0 3.0 369 ------- null} + -t 35.1986 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 760 -a 0 -x {3.0 21.0 389 ------- null} - -t 35.1986 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 760 -a 0 -x {3.0 21.0 389 ------- null} h -t 35.1986 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 760 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.2002 -s 1 -d 3 -p ack -e 40 -c 0 -i 741 -a 1 -x {21.0 3.0 370 ------- null} + -t 35.2002 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {3.0 21.0 390 ------- null} - -t 35.2002 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {3.0 21.0 390 ------- null} h -t 35.2002 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.3114 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 742 -a 0 -x {3.0 21.0 371 ------- null} + -t 35.3114 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 742 -a 0 -x {3.0 21.0 371 ------- null} - -t 35.3114 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 742 -a 0 -x {3.0 21.0 371 ------- null} h -t 35.3114 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 742 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.313 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {3.0 21.0 372 ------- null} + -t 35.313 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {3.0 21.0 372 ------- null} - -t 35.313 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {3.0 21.0 372 ------- null} h -t 35.313 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.3146 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 744 -a 0 -x {3.0 21.0 373 ------- null} + -t 35.3146 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 744 -a 0 -x {3.0 21.0 373 ------- null} - -t 35.3146 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 744 -a 0 -x {3.0 21.0 373 ------- null} h -t 35.3146 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 744 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.3162 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {3.0 21.0 374 ------- null} + -t 35.3162 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {3.0 21.0 374 ------- null} - -t 35.3162 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {3.0 21.0 374 ------- null} h -t 35.3162 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.3178 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 746 -a 0 -x {3.0 21.0 375 ------- null} + -t 35.3178 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 746 -a 0 -x {3.0 21.0 375 ------- null} - -t 35.3178 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 746 -a 0 -x {3.0 21.0 375 ------- null} h -t 35.3178 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 746 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.3194 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {3.0 21.0 376 ------- null} + -t 35.3194 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {3.0 21.0 376 ------- null} - -t 35.3194 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {3.0 21.0 376 ------- null} h -t 35.3194 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.321 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 748 -a 0 -x {3.0 21.0 377 ------- null} + -t 35.321 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 748 -a 0 -x {3.0 21.0 377 ------- null} - -t 35.321 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 748 -a 0 -x {3.0 21.0 377 ------- null} h -t 35.321 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 748 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.3226 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {3.0 21.0 378 ------- null} + -t 35.3226 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {3.0 21.0 378 ------- null} - -t 35.3226 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {3.0 21.0 378 ------- null} h -t 35.3226 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.3242 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 750 -a 0 -x {3.0 21.0 379 ------- null} + -t 35.3242 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 750 -a 0 -x {3.0 21.0 379 ------- null} - -t 35.3242 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 750 -a 0 -x {3.0 21.0 379 ------- null} h -t 35.3242 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 750 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.3258 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {3.0 21.0 380 ------- null} + -t 35.3258 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {3.0 21.0 380 ------- null} - -t 35.3258 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {3.0 21.0 380 ------- null} h -t 35.3258 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.3274 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 752 -a 0 -x {3.0 21.0 381 ------- null} + -t 35.3274 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 752 -a 0 -x {3.0 21.0 381 ------- null} - -t 35.3274 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 752 -a 0 -x {3.0 21.0 381 ------- null} h -t 35.3274 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 752 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.329 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {3.0 21.0 382 ------- null} + -t 35.329 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {3.0 21.0 382 ------- null} - -t 35.329 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {3.0 21.0 382 ------- null} h -t 35.329 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.3306 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 754 -a 0 -x {3.0 21.0 383 ------- null} + -t 35.3306 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 754 -a 0 -x {3.0 21.0 383 ------- null} - -t 35.3306 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 754 -a 0 -x {3.0 21.0 383 ------- null} h -t 35.3306 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 754 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.3322 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {3.0 21.0 384 ------- null} + -t 35.3322 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {3.0 21.0 384 ------- null} - -t 35.3322 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {3.0 21.0 384 ------- null} h -t 35.3322 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.3338 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 756 -a 0 -x {3.0 21.0 385 ------- null} + -t 35.3338 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 756 -a 0 -x {3.0 21.0 385 ------- null} - -t 35.3338 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 756 -a 0 -x {3.0 21.0 385 ------- null} h -t 35.3338 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 756 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.3354 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {3.0 21.0 386 ------- null} + -t 35.3354 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {3.0 21.0 386 ------- null} - -t 35.3354 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {3.0 21.0 386 ------- null} h -t 35.3354 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.337 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 758 -a 0 -x {3.0 21.0 387 ------- null} + -t 35.337 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 758 -a 0 -x {3.0 21.0 387 ------- null} - -t 35.337 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 758 -a 0 -x {3.0 21.0 387 ------- null} h -t 35.337 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 758 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.3386 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {3.0 21.0 388 ------- null} + -t 35.3386 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {3.0 21.0 388 ------- null} - -t 35.3386 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {3.0 21.0 388 ------- null} h -t 35.3386 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.3402 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 760 -a 0 -x {3.0 21.0 389 ------- null} + -t 35.3402 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 760 -a 0 -x {3.0 21.0 389 ------- null} - -t 35.3402 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 760 -a 0 -x {3.0 21.0 389 ------- null} h -t 35.3402 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 760 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.3418 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {3.0 21.0 390 ------- null} + -t 35.3418 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {3.0 21.0 390 ------- null} - -t 35.3418 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {3.0 21.0 390 ------- null} h -t 35.3418 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.613 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 742 -a 0 -x {3.0 21.0 371 ------- null} + -t 35.613 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 742 -a 0 -x {3.0 21.0 371 ------- null} - -t 35.613 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 742 -a 0 -x {3.0 21.0 371 ------- null} h -t 35.613 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 742 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.6146 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {3.0 21.0 372 ------- null} + -t 35.6146 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {3.0 21.0 372 ------- null} - -t 35.6146 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {3.0 21.0 372 ------- null} h -t 35.6146 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.6162 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 744 -a 0 -x {3.0 21.0 373 ------- null} + -t 35.6162 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 744 -a 0 -x {3.0 21.0 373 ------- null} - -t 35.6162 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 744 -a 0 -x {3.0 21.0 373 ------- null} h -t 35.6162 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 744 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.6178 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {3.0 21.0 374 ------- null} + -t 35.6178 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {3.0 21.0 374 ------- null} - -t 35.6178 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {3.0 21.0 374 ------- null} h -t 35.6178 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.6194 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 746 -a 0 -x {3.0 21.0 375 ------- null} + -t 35.6194 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 746 -a 0 -x {3.0 21.0 375 ------- null} - -t 35.6194 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 746 -a 0 -x {3.0 21.0 375 ------- null} h -t 35.6194 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 746 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.621 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {3.0 21.0 376 ------- null} + -t 35.621 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {3.0 21.0 376 ------- null} - -t 35.621 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {3.0 21.0 376 ------- null} h -t 35.621 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.6226 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 748 -a 0 -x {3.0 21.0 377 ------- null} + -t 35.6226 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 748 -a 0 -x {3.0 21.0 377 ------- null} - -t 35.6226 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 748 -a 0 -x {3.0 21.0 377 ------- null} h -t 35.6226 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 748 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.6242 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {3.0 21.0 378 ------- null} + -t 35.6242 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {3.0 21.0 378 ------- null} - -t 35.6242 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {3.0 21.0 378 ------- null} h -t 35.6242 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.6258 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 750 -a 0 -x {3.0 21.0 379 ------- null} + -t 35.6258 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 750 -a 0 -x {3.0 21.0 379 ------- null} - -t 35.6258 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 750 -a 0 -x {3.0 21.0 379 ------- null} h -t 35.6258 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 750 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.6274 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {3.0 21.0 380 ------- null} + -t 35.6274 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {3.0 21.0 380 ------- null} - -t 35.6274 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {3.0 21.0 380 ------- null} h -t 35.6274 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.629 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 752 -a 0 -x {3.0 21.0 381 ------- null} + -t 35.629 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 752 -a 0 -x {3.0 21.0 381 ------- null} - -t 35.629 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 752 -a 0 -x {3.0 21.0 381 ------- null} h -t 35.629 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 752 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.6306 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {3.0 21.0 382 ------- null} + -t 35.6306 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {3.0 21.0 382 ------- null} - -t 35.6306 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {3.0 21.0 382 ------- null} h -t 35.6306 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.6322 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 754 -a 0 -x {3.0 21.0 383 ------- null} + -t 35.6322 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 754 -a 0 -x {3.0 21.0 383 ------- null} - -t 35.6322 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 754 -a 0 -x {3.0 21.0 383 ------- null} h -t 35.6322 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 754 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.6338 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {3.0 21.0 384 ------- null} + -t 35.6338 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {3.0 21.0 384 ------- null} - -t 35.6338 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {3.0 21.0 384 ------- null} h -t 35.6338 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.6354 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 756 -a 0 -x {3.0 21.0 385 ------- null} + -t 35.6354 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 756 -a 0 -x {3.0 21.0 385 ------- null} - -t 35.6354 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 756 -a 0 -x {3.0 21.0 385 ------- null} h -t 35.6354 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 756 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.637 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {3.0 21.0 386 ------- null} + -t 35.637 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {3.0 21.0 386 ------- null} - -t 35.637 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {3.0 21.0 386 ------- null} h -t 35.637 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.6386 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 758 -a 0 -x {3.0 21.0 387 ------- null} + -t 35.6386 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 758 -a 0 -x {3.0 21.0 387 ------- null} - -t 35.6386 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 758 -a 0 -x {3.0 21.0 387 ------- null} h -t 35.6386 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 758 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.6402 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {3.0 21.0 388 ------- null} + -t 35.6402 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {3.0 21.0 388 ------- null} - -t 35.6402 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {3.0 21.0 388 ------- null} h -t 35.6402 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.6418 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 760 -a 0 -x {3.0 21.0 389 ------- null} + -t 35.6418 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 760 -a 0 -x {3.0 21.0 389 ------- null} - -t 35.6418 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 760 -a 0 -x {3.0 21.0 389 ------- null} h -t 35.6418 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 760 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.6434 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {3.0 21.0 390 ------- null} + -t 35.6434 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {3.0 21.0 390 ------- null} - -t 35.6434 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {3.0 21.0 390 ------- null} h -t 35.6434 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {3.0 21.0 -1 ------- null} r -t 35.9646 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 742 -a 0 -x {3.0 21.0 371 ------- null} + -t 35.9646 -s 21 -d 28 -p ack -e 40 -c 0 -i 762 -a 1 -x {21.0 3.0 371 ------- null} - -t 35.9646 -s 21 -d 28 -p ack -e 40 -c 0 -i 762 -a 1 -x {21.0 3.0 371 ------- null} h -t 35.9646 -s 21 -d 28 -p ack -e 40 -c 0 -i 762 -a 1 -x {21.0 3.0 -1 ------- null} r -t 35.9662 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {3.0 21.0 372 ------- null} + -t 35.9662 -s 21 -d 28 -p ack -e 40 -c 0 -i 763 -a 1 -x {21.0 3.0 372 ------- null} - -t 35.9662 -s 21 -d 28 -p ack -e 40 -c 0 -i 763 -a 1 -x {21.0 3.0 372 ------- null} h -t 35.9662 -s 21 -d 28 -p ack -e 40 -c 0 -i 763 -a 1 -x {21.0 3.0 -1 ------- null} r -t 35.9678 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 744 -a 0 -x {3.0 21.0 373 ------- null} + -t 35.9678 -s 21 -d 28 -p ack -e 40 -c 0 -i 764 -a 1 -x {21.0 3.0 373 ------- null} - -t 35.9678 -s 21 -d 28 -p ack -e 40 -c 0 -i 764 -a 1 -x {21.0 3.0 373 ------- null} h -t 35.9678 -s 21 -d 28 -p ack -e 40 -c 0 -i 764 -a 1 -x {21.0 3.0 -1 ------- null} r -t 35.9694 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {3.0 21.0 374 ------- null} + -t 35.9694 -s 21 -d 28 -p ack -e 40 -c 0 -i 765 -a 1 -x {21.0 3.0 374 ------- null} - -t 35.9694 -s 21 -d 28 -p ack -e 40 -c 0 -i 765 -a 1 -x {21.0 3.0 374 ------- null} h -t 35.9694 -s 21 -d 28 -p ack -e 40 -c 0 -i 765 -a 1 -x {21.0 3.0 -1 ------- null} r -t 35.971 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 746 -a 0 -x {3.0 21.0 375 ------- null} + -t 35.971 -s 21 -d 28 -p ack -e 40 -c 0 -i 766 -a 1 -x {21.0 3.0 375 ------- null} - -t 35.971 -s 21 -d 28 -p ack -e 40 -c 0 -i 766 -a 1 -x {21.0 3.0 375 ------- null} h -t 35.971 -s 21 -d 28 -p ack -e 40 -c 0 -i 766 -a 1 -x {21.0 3.0 -1 ------- null} r -t 35.9726 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {3.0 21.0 376 ------- null} + -t 35.9726 -s 21 -d 28 -p ack -e 40 -c 0 -i 767 -a 1 -x {21.0 3.0 376 ------- null} - -t 35.9726 -s 21 -d 28 -p ack -e 40 -c 0 -i 767 -a 1 -x {21.0 3.0 376 ------- null} h -t 35.9726 -s 21 -d 28 -p ack -e 40 -c 0 -i 767 -a 1 -x {21.0 3.0 -1 ------- null} r -t 35.9742 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 748 -a 0 -x {3.0 21.0 377 ------- null} + -t 35.9742 -s 21 -d 28 -p ack -e 40 -c 0 -i 768 -a 1 -x {21.0 3.0 377 ------- null} - -t 35.9742 -s 21 -d 28 -p ack -e 40 -c 0 -i 768 -a 1 -x {21.0 3.0 377 ------- null} h -t 35.9742 -s 21 -d 28 -p ack -e 40 -c 0 -i 768 -a 1 -x {21.0 3.0 -1 ------- null} r -t 35.9758 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {3.0 21.0 378 ------- null} + -t 35.9758 -s 21 -d 28 -p ack -e 40 -c 0 -i 769 -a 1 -x {21.0 3.0 378 ------- null} - -t 35.9758 -s 21 -d 28 -p ack -e 40 -c 0 -i 769 -a 1 -x {21.0 3.0 378 ------- null} h -t 35.9758 -s 21 -d 28 -p ack -e 40 -c 0 -i 769 -a 1 -x {21.0 3.0 -1 ------- null} r -t 35.9774 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 750 -a 0 -x {3.0 21.0 379 ------- null} + -t 35.9774 -s 21 -d 28 -p ack -e 40 -c 0 -i 770 -a 1 -x {21.0 3.0 379 ------- null} - -t 35.9774 -s 21 -d 28 -p ack -e 40 -c 0 -i 770 -a 1 -x {21.0 3.0 379 ------- null} h -t 35.9774 -s 21 -d 28 -p ack -e 40 -c 0 -i 770 -a 1 -x {21.0 3.0 -1 ------- null} r -t 35.979 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {3.0 21.0 380 ------- null} + -t 35.979 -s 21 -d 28 -p ack -e 40 -c 0 -i 771 -a 1 -x {21.0 3.0 380 ------- null} - -t 35.979 -s 21 -d 28 -p ack -e 40 -c 0 -i 771 -a 1 -x {21.0 3.0 380 ------- null} h -t 35.979 -s 21 -d 28 -p ack -e 40 -c 0 -i 771 -a 1 -x {21.0 3.0 -1 ------- null} r -t 35.9806 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 752 -a 0 -x {3.0 21.0 381 ------- null} + -t 35.9806 -s 21 -d 28 -p ack -e 40 -c 0 -i 772 -a 1 -x {21.0 3.0 381 ------- null} - -t 35.9806 -s 21 -d 28 -p ack -e 40 -c 0 -i 772 -a 1 -x {21.0 3.0 381 ------- null} h -t 35.9806 -s 21 -d 28 -p ack -e 40 -c 0 -i 772 -a 1 -x {21.0 3.0 -1 ------- null} r -t 35.9822 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {3.0 21.0 382 ------- null} + -t 35.9822 -s 21 -d 28 -p ack -e 40 -c 0 -i 773 -a 1 -x {21.0 3.0 382 ------- null} - -t 35.9822 -s 21 -d 28 -p ack -e 40 -c 0 -i 773 -a 1 -x {21.0 3.0 382 ------- null} h -t 35.9822 -s 21 -d 28 -p ack -e 40 -c 0 -i 773 -a 1 -x {21.0 3.0 -1 ------- null} r -t 35.9838 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 754 -a 0 -x {3.0 21.0 383 ------- null} + -t 35.9838 -s 21 -d 28 -p ack -e 40 -c 0 -i 774 -a 1 -x {21.0 3.0 383 ------- null} - -t 35.9838 -s 21 -d 28 -p ack -e 40 -c 0 -i 774 -a 1 -x {21.0 3.0 383 ------- null} h -t 35.9838 -s 21 -d 28 -p ack -e 40 -c 0 -i 774 -a 1 -x {21.0 3.0 -1 ------- null} r -t 35.9854 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {3.0 21.0 384 ------- null} + -t 35.9854 -s 21 -d 28 -p ack -e 40 -c 0 -i 775 -a 1 -x {21.0 3.0 384 ------- null} - -t 35.9854 -s 21 -d 28 -p ack -e 40 -c 0 -i 775 -a 1 -x {21.0 3.0 384 ------- null} h -t 35.9854 -s 21 -d 28 -p ack -e 40 -c 0 -i 775 -a 1 -x {21.0 3.0 -1 ------- null} r -t 35.987 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 756 -a 0 -x {3.0 21.0 385 ------- null} + -t 35.987 -s 21 -d 28 -p ack -e 40 -c 0 -i 776 -a 1 -x {21.0 3.0 385 ------- null} - -t 35.987 -s 21 -d 28 -p ack -e 40 -c 0 -i 776 -a 1 -x {21.0 3.0 385 ------- null} h -t 35.987 -s 21 -d 28 -p ack -e 40 -c 0 -i 776 -a 1 -x {21.0 3.0 -1 ------- null} r -t 35.9886 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {3.0 21.0 386 ------- null} + -t 35.9886 -s 21 -d 28 -p ack -e 40 -c 0 -i 777 -a 1 -x {21.0 3.0 386 ------- null} - -t 35.9886 -s 21 -d 28 -p ack -e 40 -c 0 -i 777 -a 1 -x {21.0 3.0 386 ------- null} h -t 35.9886 -s 21 -d 28 -p ack -e 40 -c 0 -i 777 -a 1 -x {21.0 3.0 -1 ------- null} r -t 35.9902 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 758 -a 0 -x {3.0 21.0 387 ------- null} + -t 35.9902 -s 21 -d 28 -p ack -e 40 -c 0 -i 778 -a 1 -x {21.0 3.0 387 ------- null} - -t 35.9902 -s 21 -d 28 -p ack -e 40 -c 0 -i 778 -a 1 -x {21.0 3.0 387 ------- null} h -t 35.9902 -s 21 -d 28 -p ack -e 40 -c 0 -i 778 -a 1 -x {21.0 3.0 -1 ------- null} r -t 35.9918 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {3.0 21.0 388 ------- null} + -t 35.9918 -s 21 -d 28 -p ack -e 40 -c 0 -i 779 -a 1 -x {21.0 3.0 388 ------- null} - -t 35.9918 -s 21 -d 28 -p ack -e 40 -c 0 -i 779 -a 1 -x {21.0 3.0 388 ------- null} h -t 35.9918 -s 21 -d 28 -p ack -e 40 -c 0 -i 779 -a 1 -x {21.0 3.0 -1 ------- null} r -t 35.9934 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 760 -a 0 -x {3.0 21.0 389 ------- null} + -t 35.9934 -s 21 -d 28 -p ack -e 40 -c 0 -i 780 -a 1 -x {21.0 3.0 389 ------- null} - -t 35.9934 -s 21 -d 28 -p ack -e 40 -c 0 -i 780 -a 1 -x {21.0 3.0 389 ------- null} h -t 35.9934 -s 21 -d 28 -p ack -e 40 -c 0 -i 780 -a 1 -x {21.0 3.0 -1 ------- null} r -t 35.995 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {3.0 21.0 390 ------- null} + -t 35.995 -s 21 -d 28 -p ack -e 40 -c 0 -i 781 -a 1 -x {21.0 3.0 390 ------- null} - -t 35.995 -s 21 -d 28 -p ack -e 40 -c 0 -i 781 -a 1 -x {21.0 3.0 390 ------- null} h -t 35.995 -s 21 -d 28 -p ack -e 40 -c 0 -i 781 -a 1 -x {21.0 3.0 -1 ------- null} r -t 36.3147 -s 21 -d 28 -p ack -e 40 -c 0 -i 762 -a 1 -x {21.0 3.0 371 ------- null} + -t 36.3147 -s 28 -d 1 -p ack -e 40 -c 0 -i 762 -a 1 -x {21.0 3.0 371 ------- null} - -t 36.3147 -s 28 -d 1 -p ack -e 40 -c 0 -i 762 -a 1 -x {21.0 3.0 371 ------- null} h -t 36.3147 -s 28 -d 1 -p ack -e 40 -c 0 -i 762 -a 1 -x {21.0 3.0 -1 ------- null} r -t 36.3163 -s 21 -d 28 -p ack -e 40 -c 0 -i 763 -a 1 -x {21.0 3.0 372 ------- null} + -t 36.3163 -s 28 -d 1 -p ack -e 40 -c 0 -i 763 -a 1 -x {21.0 3.0 372 ------- null} - -t 36.3163 -s 28 -d 1 -p ack -e 40 -c 0 -i 763 -a 1 -x {21.0 3.0 372 ------- null} h -t 36.3163 -s 28 -d 1 -p ack -e 40 -c 0 -i 763 -a 1 -x {21.0 3.0 -1 ------- null} r -t 36.3179 -s 21 -d 28 -p ack -e 40 -c 0 -i 764 -a 1 -x {21.0 3.0 373 ------- null} + -t 36.3179 -s 28 -d 1 -p ack -e 40 -c 0 -i 764 -a 1 -x {21.0 3.0 373 ------- null} - -t 36.3179 -s 28 -d 1 -p ack -e 40 -c 0 -i 764 -a 1 -x {21.0 3.0 373 ------- null} h -t 36.3179 -s 28 -d 1 -p ack -e 40 -c 0 -i 764 -a 1 -x {21.0 3.0 -1 ------- null} r -t 36.3195 -s 21 -d 28 -p ack -e 40 -c 0 -i 765 -a 1 -x {21.0 3.0 374 ------- null} + -t 36.3195 -s 28 -d 1 -p ack -e 40 -c 0 -i 765 -a 1 -x {21.0 3.0 374 ------- null} - -t 36.3195 -s 28 -d 1 -p ack -e 40 -c 0 -i 765 -a 1 -x {21.0 3.0 374 ------- null} h -t 36.3195 -s 28 -d 1 -p ack -e 40 -c 0 -i 765 -a 1 -x {21.0 3.0 -1 ------- null} r -t 36.3211 -s 21 -d 28 -p ack -e 40 -c 0 -i 766 -a 1 -x {21.0 3.0 375 ------- null} + -t 36.3211 -s 28 -d 1 -p ack -e 40 -c 0 -i 766 -a 1 -x {21.0 3.0 375 ------- null} - -t 36.3211 -s 28 -d 1 -p ack -e 40 -c 0 -i 766 -a 1 -x {21.0 3.0 375 ------- null} h -t 36.3211 -s 28 -d 1 -p ack -e 40 -c 0 -i 766 -a 1 -x {21.0 3.0 -1 ------- null} r -t 36.3227 -s 21 -d 28 -p ack -e 40 -c 0 -i 767 -a 1 -x {21.0 3.0 376 ------- null} + -t 36.3227 -s 28 -d 1 -p ack -e 40 -c 0 -i 767 -a 1 -x {21.0 3.0 376 ------- null} - -t 36.3227 -s 28 -d 1 -p ack -e 40 -c 0 -i 767 -a 1 -x {21.0 3.0 376 ------- null} h -t 36.3227 -s 28 -d 1 -p ack -e 40 -c 0 -i 767 -a 1 -x {21.0 3.0 -1 ------- null} r -t 36.3243 -s 21 -d 28 -p ack -e 40 -c 0 -i 768 -a 1 -x {21.0 3.0 377 ------- null} + -t 36.3243 -s 28 -d 1 -p ack -e 40 -c 0 -i 768 -a 1 -x {21.0 3.0 377 ------- null} - -t 36.3243 -s 28 -d 1 -p ack -e 40 -c 0 -i 768 -a 1 -x {21.0 3.0 377 ------- null} h -t 36.3243 -s 28 -d 1 -p ack -e 40 -c 0 -i 768 -a 1 -x {21.0 3.0 -1 ------- null} r -t 36.3259 -s 21 -d 28 -p ack -e 40 -c 0 -i 769 -a 1 -x {21.0 3.0 378 ------- null} + -t 36.3259 -s 28 -d 1 -p ack -e 40 -c 0 -i 769 -a 1 -x {21.0 3.0 378 ------- null} - -t 36.3259 -s 28 -d 1 -p ack -e 40 -c 0 -i 769 -a 1 -x {21.0 3.0 378 ------- null} h -t 36.3259 -s 28 -d 1 -p ack -e 40 -c 0 -i 769 -a 1 -x {21.0 3.0 -1 ------- null} r -t 36.3275 -s 21 -d 28 -p ack -e 40 -c 0 -i 770 -a 1 -x {21.0 3.0 379 ------- null} + -t 36.3275 -s 28 -d 1 -p ack -e 40 -c 0 -i 770 -a 1 -x {21.0 3.0 379 ------- null} - -t 36.3275 -s 28 -d 1 -p ack -e 40 -c 0 -i 770 -a 1 -x {21.0 3.0 379 ------- null} h -t 36.3275 -s 28 -d 1 -p ack -e 40 -c 0 -i 770 -a 1 -x {21.0 3.0 -1 ------- null} r -t 36.3291 -s 21 -d 28 -p ack -e 40 -c 0 -i 771 -a 1 -x {21.0 3.0 380 ------- null} + -t 36.3291 -s 28 -d 1 -p ack -e 40 -c 0 -i 771 -a 1 -x {21.0 3.0 380 ------- null} - -t 36.3291 -s 28 -d 1 -p ack -e 40 -c 0 -i 771 -a 1 -x {21.0 3.0 380 ------- null} h -t 36.3291 -s 28 -d 1 -p ack -e 40 -c 0 -i 771 -a 1 -x {21.0 3.0 -1 ------- null} r -t 36.3307 -s 21 -d 28 -p ack -e 40 -c 0 -i 772 -a 1 -x {21.0 3.0 381 ------- null} + -t 36.3307 -s 28 -d 1 -p ack -e 40 -c 0 -i 772 -a 1 -x {21.0 3.0 381 ------- null} - -t 36.3307 -s 28 -d 1 -p ack -e 40 -c 0 -i 772 -a 1 -x {21.0 3.0 381 ------- null} h -t 36.3307 -s 28 -d 1 -p ack -e 40 -c 0 -i 772 -a 1 -x {21.0 3.0 -1 ------- null} r -t 36.3323 -s 21 -d 28 -p ack -e 40 -c 0 -i 773 -a 1 -x {21.0 3.0 382 ------- null} + -t 36.3323 -s 28 -d 1 -p ack -e 40 -c 0 -i 773 -a 1 -x {21.0 3.0 382 ------- null} - -t 36.3323 -s 28 -d 1 -p ack -e 40 -c 0 -i 773 -a 1 -x {21.0 3.0 382 ------- null} h -t 36.3323 -s 28 -d 1 -p ack -e 40 -c 0 -i 773 -a 1 -x {21.0 3.0 -1 ------- null} r -t 36.3339 -s 21 -d 28 -p ack -e 40 -c 0 -i 774 -a 1 -x {21.0 3.0 383 ------- null} + -t 36.3339 -s 28 -d 1 -p ack -e 40 -c 0 -i 774 -a 1 -x {21.0 3.0 383 ------- null} - -t 36.3339 -s 28 -d 1 -p ack -e 40 -c 0 -i 774 -a 1 -x {21.0 3.0 383 ------- null} h -t 36.3339 -s 28 -d 1 -p ack -e 40 -c 0 -i 774 -a 1 -x {21.0 3.0 -1 ------- null} r -t 36.3355 -s 21 -d 28 -p ack -e 40 -c 0 -i 775 -a 1 -x {21.0 3.0 384 ------- null} + -t 36.3355 -s 28 -d 1 -p ack -e 40 -c 0 -i 775 -a 1 -x {21.0 3.0 384 ------- null} - -t 36.3355 -s 28 -d 1 -p ack -e 40 -c 0 -i 775 -a 1 -x {21.0 3.0 384 ------- null} h -t 36.3355 -s 28 -d 1 -p ack -e 40 -c 0 -i 775 -a 1 -x {21.0 3.0 -1 ------- null} r -t 36.3371 -s 21 -d 28 -p ack -e 40 -c 0 -i 776 -a 1 -x {21.0 3.0 385 ------- null} + -t 36.3371 -s 28 -d 1 -p ack -e 40 -c 0 -i 776 -a 1 -x {21.0 3.0 385 ------- null} - -t 36.3371 -s 28 -d 1 -p ack -e 40 -c 0 -i 776 -a 1 -x {21.0 3.0 385 ------- null} h -t 36.3371 -s 28 -d 1 -p ack -e 40 -c 0 -i 776 -a 1 -x {21.0 3.0 -1 ------- null} r -t 36.3387 -s 21 -d 28 -p ack -e 40 -c 0 -i 777 -a 1 -x {21.0 3.0 386 ------- null} + -t 36.3387 -s 28 -d 1 -p ack -e 40 -c 0 -i 777 -a 1 -x {21.0 3.0 386 ------- null} - -t 36.3387 -s 28 -d 1 -p ack -e 40 -c 0 -i 777 -a 1 -x {21.0 3.0 386 ------- null} h -t 36.3387 -s 28 -d 1 -p ack -e 40 -c 0 -i 777 -a 1 -x {21.0 3.0 -1 ------- null} r -t 36.3403 -s 21 -d 28 -p ack -e 40 -c 0 -i 778 -a 1 -x {21.0 3.0 387 ------- null} + -t 36.3403 -s 28 -d 1 -p ack -e 40 -c 0 -i 778 -a 1 -x {21.0 3.0 387 ------- null} - -t 36.3403 -s 28 -d 1 -p ack -e 40 -c 0 -i 778 -a 1 -x {21.0 3.0 387 ------- null} h -t 36.3403 -s 28 -d 1 -p ack -e 40 -c 0 -i 778 -a 1 -x {21.0 3.0 -1 ------- null} r -t 36.3419 -s 21 -d 28 -p ack -e 40 -c 0 -i 779 -a 1 -x {21.0 3.0 388 ------- null} + -t 36.3419 -s 28 -d 1 -p ack -e 40 -c 0 -i 779 -a 1 -x {21.0 3.0 388 ------- null} - -t 36.3419 -s 28 -d 1 -p ack -e 40 -c 0 -i 779 -a 1 -x {21.0 3.0 388 ------- null} h -t 36.3419 -s 28 -d 1 -p ack -e 40 -c 0 -i 779 -a 1 -x {21.0 3.0 -1 ------- null} r -t 36.3435 -s 21 -d 28 -p ack -e 40 -c 0 -i 780 -a 1 -x {21.0 3.0 389 ------- null} + -t 36.3435 -s 28 -d 1 -p ack -e 40 -c 0 -i 780 -a 1 -x {21.0 3.0 389 ------- null} - -t 36.3435 -s 28 -d 1 -p ack -e 40 -c 0 -i 780 -a 1 -x {21.0 3.0 389 ------- null} h -t 36.3435 -s 28 -d 1 -p ack -e 40 -c 0 -i 780 -a 1 -x {21.0 3.0 -1 ------- null} r -t 36.3451 -s 21 -d 28 -p ack -e 40 -c 0 -i 781 -a 1 -x {21.0 3.0 390 ------- null} + -t 36.3451 -s 28 -d 1 -p ack -e 40 -c 0 -i 781 -a 1 -x {21.0 3.0 390 ------- null} - -t 36.3451 -s 28 -d 1 -p ack -e 40 -c 0 -i 781 -a 1 -x {21.0 3.0 390 ------- null} h -t 36.3451 -s 28 -d 1 -p ack -e 40 -c 0 -i 781 -a 1 -x {21.0 3.0 -1 ------- null} r -t 36.6148 -s 28 -d 1 -p ack -e 40 -c 0 -i 762 -a 1 -x {21.0 3.0 371 ------- null} + -t 36.6148 -s 1 -d 3 -p ack -e 40 -c 0 -i 762 -a 1 -x {21.0 3.0 371 ------- null} - -t 36.6148 -s 1 -d 3 -p ack -e 40 -c 0 -i 762 -a 1 -x {21.0 3.0 371 ------- null} h -t 36.6148 -s 1 -d 3 -p ack -e 40 -c 0 -i 762 -a 1 -x {21.0 3.0 -1 ------- null} r -t 36.6164 -s 28 -d 1 -p ack -e 40 -c 0 -i 763 -a 1 -x {21.0 3.0 372 ------- null} + -t 36.6164 -s 1 -d 3 -p ack -e 40 -c 0 -i 763 -a 1 -x {21.0 3.0 372 ------- null} - -t 36.6164 -s 1 -d 3 -p ack -e 40 -c 0 -i 763 -a 1 -x {21.0 3.0 372 ------- null} h -t 36.6164 -s 1 -d 3 -p ack -e 40 -c 0 -i 763 -a 1 -x {21.0 3.0 -1 ------- null} r -t 36.618 -s 28 -d 1 -p ack -e 40 -c 0 -i 764 -a 1 -x {21.0 3.0 373 ------- null} + -t 36.618 -s 1 -d 3 -p ack -e 40 -c 0 -i 764 -a 1 -x {21.0 3.0 373 ------- null} - -t 36.618 -s 1 -d 3 -p ack -e 40 -c 0 -i 764 -a 1 -x {21.0 3.0 373 ------- null} h -t 36.618 -s 1 -d 3 -p ack -e 40 -c 0 -i 764 -a 1 -x {21.0 3.0 -1 ------- null} r -t 36.6196 -s 28 -d 1 -p ack -e 40 -c 0 -i 765 -a 1 -x {21.0 3.0 374 ------- null} + -t 36.6196 -s 1 -d 3 -p ack -e 40 -c 0 -i 765 -a 1 -x {21.0 3.0 374 ------- null} - -t 36.6196 -s 1 -d 3 -p ack -e 40 -c 0 -i 765 -a 1 -x {21.0 3.0 374 ------- null} h -t 36.6196 -s 1 -d 3 -p ack -e 40 -c 0 -i 765 -a 1 -x {21.0 3.0 -1 ------- null} r -t 36.6212 -s 28 -d 1 -p ack -e 40 -c 0 -i 766 -a 1 -x {21.0 3.0 375 ------- null} + -t 36.6212 -s 1 -d 3 -p ack -e 40 -c 0 -i 766 -a 1 -x {21.0 3.0 375 ------- null} - -t 36.6212 -s 1 -d 3 -p ack -e 40 -c 0 -i 766 -a 1 -x {21.0 3.0 375 ------- null} h -t 36.6212 -s 1 -d 3 -p ack -e 40 -c 0 -i 766 -a 1 -x {21.0 3.0 -1 ------- null} r -t 36.6228 -s 28 -d 1 -p ack -e 40 -c 0 -i 767 -a 1 -x {21.0 3.0 376 ------- null} + -t 36.6228 -s 1 -d 3 -p ack -e 40 -c 0 -i 767 -a 1 -x {21.0 3.0 376 ------- null} - -t 36.6228 -s 1 -d 3 -p ack -e 40 -c 0 -i 767 -a 1 -x {21.0 3.0 376 ------- null} h -t 36.6228 -s 1 -d 3 -p ack -e 40 -c 0 -i 767 -a 1 -x {21.0 3.0 -1 ------- null} r -t 36.6244 -s 28 -d 1 -p ack -e 40 -c 0 -i 768 -a 1 -x {21.0 3.0 377 ------- null} + -t 36.6244 -s 1 -d 3 -p ack -e 40 -c 0 -i 768 -a 1 -x {21.0 3.0 377 ------- null} - -t 36.6244 -s 1 -d 3 -p ack -e 40 -c 0 -i 768 -a 1 -x {21.0 3.0 377 ------- null} h -t 36.6244 -s 1 -d 3 -p ack -e 40 -c 0 -i 768 -a 1 -x {21.0 3.0 -1 ------- null} r -t 36.626 -s 28 -d 1 -p ack -e 40 -c 0 -i 769 -a 1 -x {21.0 3.0 378 ------- null} + -t 36.626 -s 1 -d 3 -p ack -e 40 -c 0 -i 769 -a 1 -x {21.0 3.0 378 ------- null} - -t 36.626 -s 1 -d 3 -p ack -e 40 -c 0 -i 769 -a 1 -x {21.0 3.0 378 ------- null} h -t 36.626 -s 1 -d 3 -p ack -e 40 -c 0 -i 769 -a 1 -x {21.0 3.0 -1 ------- null} r -t 36.6276 -s 28 -d 1 -p ack -e 40 -c 0 -i 770 -a 1 -x {21.0 3.0 379 ------- null} + -t 36.6276 -s 1 -d 3 -p ack -e 40 -c 0 -i 770 -a 1 -x {21.0 3.0 379 ------- null} - -t 36.6276 -s 1 -d 3 -p ack -e 40 -c 0 -i 770 -a 1 -x {21.0 3.0 379 ------- null} h -t 36.6276 -s 1 -d 3 -p ack -e 40 -c 0 -i 770 -a 1 -x {21.0 3.0 -1 ------- null} r -t 36.6292 -s 28 -d 1 -p ack -e 40 -c 0 -i 771 -a 1 -x {21.0 3.0 380 ------- null} + -t 36.6292 -s 1 -d 3 -p ack -e 40 -c 0 -i 771 -a 1 -x {21.0 3.0 380 ------- null} - -t 36.6292 -s 1 -d 3 -p ack -e 40 -c 0 -i 771 -a 1 -x {21.0 3.0 380 ------- null} h -t 36.6292 -s 1 -d 3 -p ack -e 40 -c 0 -i 771 -a 1 -x {21.0 3.0 -1 ------- null} r -t 36.6308 -s 28 -d 1 -p ack -e 40 -c 0 -i 772 -a 1 -x {21.0 3.0 381 ------- null} + -t 36.6308 -s 1 -d 3 -p ack -e 40 -c 0 -i 772 -a 1 -x {21.0 3.0 381 ------- null} - -t 36.6308 -s 1 -d 3 -p ack -e 40 -c 0 -i 772 -a 1 -x {21.0 3.0 381 ------- null} h -t 36.6308 -s 1 -d 3 -p ack -e 40 -c 0 -i 772 -a 1 -x {21.0 3.0 -1 ------- null} r -t 36.6324 -s 28 -d 1 -p ack -e 40 -c 0 -i 773 -a 1 -x {21.0 3.0 382 ------- null} + -t 36.6324 -s 1 -d 3 -p ack -e 40 -c 0 -i 773 -a 1 -x {21.0 3.0 382 ------- null} - -t 36.6324 -s 1 -d 3 -p ack -e 40 -c 0 -i 773 -a 1 -x {21.0 3.0 382 ------- null} h -t 36.6324 -s 1 -d 3 -p ack -e 40 -c 0 -i 773 -a 1 -x {21.0 3.0 -1 ------- null} r -t 36.634 -s 28 -d 1 -p ack -e 40 -c 0 -i 774 -a 1 -x {21.0 3.0 383 ------- null} + -t 36.634 -s 1 -d 3 -p ack -e 40 -c 0 -i 774 -a 1 -x {21.0 3.0 383 ------- null} - -t 36.634 -s 1 -d 3 -p ack -e 40 -c 0 -i 774 -a 1 -x {21.0 3.0 383 ------- null} h -t 36.634 -s 1 -d 3 -p ack -e 40 -c 0 -i 774 -a 1 -x {21.0 3.0 -1 ------- null} r -t 36.6356 -s 28 -d 1 -p ack -e 40 -c 0 -i 775 -a 1 -x {21.0 3.0 384 ------- null} + -t 36.6356 -s 1 -d 3 -p ack -e 40 -c 0 -i 775 -a 1 -x {21.0 3.0 384 ------- null} - -t 36.6356 -s 1 -d 3 -p ack -e 40 -c 0 -i 775 -a 1 -x {21.0 3.0 384 ------- null} h -t 36.6356 -s 1 -d 3 -p ack -e 40 -c 0 -i 775 -a 1 -x {21.0 3.0 -1 ------- null} r -t 36.6372 -s 28 -d 1 -p ack -e 40 -c 0 -i 776 -a 1 -x {21.0 3.0 385 ------- null} + -t 36.6372 -s 1 -d 3 -p ack -e 40 -c 0 -i 776 -a 1 -x {21.0 3.0 385 ------- null} - -t 36.6372 -s 1 -d 3 -p ack -e 40 -c 0 -i 776 -a 1 -x {21.0 3.0 385 ------- null} h -t 36.6372 -s 1 -d 3 -p ack -e 40 -c 0 -i 776 -a 1 -x {21.0 3.0 -1 ------- null} r -t 36.6388 -s 28 -d 1 -p ack -e 40 -c 0 -i 777 -a 1 -x {21.0 3.0 386 ------- null} + -t 36.6388 -s 1 -d 3 -p ack -e 40 -c 0 -i 777 -a 1 -x {21.0 3.0 386 ------- null} - -t 36.6388 -s 1 -d 3 -p ack -e 40 -c 0 -i 777 -a 1 -x {21.0 3.0 386 ------- null} h -t 36.6388 -s 1 -d 3 -p ack -e 40 -c 0 -i 777 -a 1 -x {21.0 3.0 -1 ------- null} r -t 36.6404 -s 28 -d 1 -p ack -e 40 -c 0 -i 778 -a 1 -x {21.0 3.0 387 ------- null} + -t 36.6404 -s 1 -d 3 -p ack -e 40 -c 0 -i 778 -a 1 -x {21.0 3.0 387 ------- null} - -t 36.6404 -s 1 -d 3 -p ack -e 40 -c 0 -i 778 -a 1 -x {21.0 3.0 387 ------- null} h -t 36.6404 -s 1 -d 3 -p ack -e 40 -c 0 -i 778 -a 1 -x {21.0 3.0 -1 ------- null} r -t 36.642 -s 28 -d 1 -p ack -e 40 -c 0 -i 779 -a 1 -x {21.0 3.0 388 ------- null} + -t 36.642 -s 1 -d 3 -p ack -e 40 -c 0 -i 779 -a 1 -x {21.0 3.0 388 ------- null} - -t 36.642 -s 1 -d 3 -p ack -e 40 -c 0 -i 779 -a 1 -x {21.0 3.0 388 ------- null} h -t 36.642 -s 1 -d 3 -p ack -e 40 -c 0 -i 779 -a 1 -x {21.0 3.0 -1 ------- null} r -t 36.6436 -s 28 -d 1 -p ack -e 40 -c 0 -i 780 -a 1 -x {21.0 3.0 389 ------- null} + -t 36.6436 -s 1 -d 3 -p ack -e 40 -c 0 -i 780 -a 1 -x {21.0 3.0 389 ------- null} - -t 36.6436 -s 1 -d 3 -p ack -e 40 -c 0 -i 780 -a 1 -x {21.0 3.0 389 ------- null} h -t 36.6436 -s 1 -d 3 -p ack -e 40 -c 0 -i 780 -a 1 -x {21.0 3.0 -1 ------- null} r -t 36.6452 -s 28 -d 1 -p ack -e 40 -c 0 -i 781 -a 1 -x {21.0 3.0 390 ------- null} + -t 36.6452 -s 1 -d 3 -p ack -e 40 -c 0 -i 781 -a 1 -x {21.0 3.0 390 ------- null} - -t 36.6452 -s 1 -d 3 -p ack -e 40 -c 0 -i 781 -a 1 -x {21.0 3.0 390 ------- null} h -t 36.6452 -s 1 -d 3 -p ack -e 40 -c 0 -i 781 -a 1 -x {21.0 3.0 -1 ------- null} r -t 36.7548 -s 1 -d 3 -p ack -e 40 -c 0 -i 762 -a 1 -x {21.0 3.0 371 ------- null} + -t 36.7548 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 782 -a 0 -x {3.0 21.0 391 ------- null} - -t 36.7548 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 782 -a 0 -x {3.0 21.0 391 ------- null} h -t 36.7548 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 782 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.7564 -s 1 -d 3 -p ack -e 40 -c 0 -i 763 -a 1 -x {21.0 3.0 372 ------- null} + -t 36.7564 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {3.0 21.0 392 ------- null} - -t 36.7564 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {3.0 21.0 392 ------- null} h -t 36.7564 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.758 -s 1 -d 3 -p ack -e 40 -c 0 -i 764 -a 1 -x {21.0 3.0 373 ------- null} + -t 36.758 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 784 -a 0 -x {3.0 21.0 393 ------- null} - -t 36.758 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 784 -a 0 -x {3.0 21.0 393 ------- null} h -t 36.758 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 784 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.7596 -s 1 -d 3 -p ack -e 40 -c 0 -i 765 -a 1 -x {21.0 3.0 374 ------- null} + -t 36.7596 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {3.0 21.0 394 ------- null} - -t 36.7596 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {3.0 21.0 394 ------- null} h -t 36.7596 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.7612 -s 1 -d 3 -p ack -e 40 -c 0 -i 766 -a 1 -x {21.0 3.0 375 ------- null} + -t 36.7612 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 786 -a 0 -x {3.0 21.0 395 ------- null} - -t 36.7612 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 786 -a 0 -x {3.0 21.0 395 ------- null} h -t 36.7612 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 786 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.7628 -s 1 -d 3 -p ack -e 40 -c 0 -i 767 -a 1 -x {21.0 3.0 376 ------- null} + -t 36.7628 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {3.0 21.0 396 ------- null} - -t 36.7628 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {3.0 21.0 396 ------- null} h -t 36.7628 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.7644 -s 1 -d 3 -p ack -e 40 -c 0 -i 768 -a 1 -x {21.0 3.0 377 ------- null} + -t 36.7644 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 788 -a 0 -x {3.0 21.0 397 ------- null} - -t 36.7644 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 788 -a 0 -x {3.0 21.0 397 ------- null} h -t 36.7644 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 788 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.766 -s 1 -d 3 -p ack -e 40 -c 0 -i 769 -a 1 -x {21.0 3.0 378 ------- null} + -t 36.766 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {3.0 21.0 398 ------- null} - -t 36.766 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {3.0 21.0 398 ------- null} h -t 36.766 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.7676 -s 1 -d 3 -p ack -e 40 -c 0 -i 770 -a 1 -x {21.0 3.0 379 ------- null} + -t 36.7676 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 790 -a 0 -x {3.0 21.0 399 ------- null} - -t 36.7676 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 790 -a 0 -x {3.0 21.0 399 ------- null} h -t 36.7676 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 790 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.7692 -s 1 -d 3 -p ack -e 40 -c 0 -i 771 -a 1 -x {21.0 3.0 380 ------- null} + -t 36.7692 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {3.0 21.0 400 ------- null} - -t 36.7692 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {3.0 21.0 400 ------- null} h -t 36.7692 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.7708 -s 1 -d 3 -p ack -e 40 -c 0 -i 772 -a 1 -x {21.0 3.0 381 ------- null} + -t 36.7708 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 792 -a 0 -x {3.0 21.0 401 ------- null} - -t 36.7708 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 792 -a 0 -x {3.0 21.0 401 ------- null} h -t 36.7708 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 792 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.7724 -s 1 -d 3 -p ack -e 40 -c 0 -i 773 -a 1 -x {21.0 3.0 382 ------- null} + -t 36.7724 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {3.0 21.0 402 ------- null} - -t 36.7724 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {3.0 21.0 402 ------- null} h -t 36.7724 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.774 -s 1 -d 3 -p ack -e 40 -c 0 -i 774 -a 1 -x {21.0 3.0 383 ------- null} + -t 36.774 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 794 -a 0 -x {3.0 21.0 403 ------- null} - -t 36.774 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 794 -a 0 -x {3.0 21.0 403 ------- null} h -t 36.774 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 794 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.7756 -s 1 -d 3 -p ack -e 40 -c 0 -i 775 -a 1 -x {21.0 3.0 384 ------- null} + -t 36.7756 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {3.0 21.0 404 ------- null} - -t 36.7756 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {3.0 21.0 404 ------- null} h -t 36.7756 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.7772 -s 1 -d 3 -p ack -e 40 -c 0 -i 776 -a 1 -x {21.0 3.0 385 ------- null} + -t 36.7772 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 796 -a 0 -x {3.0 21.0 405 ------- null} - -t 36.7772 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 796 -a 0 -x {3.0 21.0 405 ------- null} h -t 36.7772 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 796 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.7788 -s 1 -d 3 -p ack -e 40 -c 0 -i 777 -a 1 -x {21.0 3.0 386 ------- null} + -t 36.7788 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {3.0 21.0 406 ------- null} - -t 36.7788 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {3.0 21.0 406 ------- null} h -t 36.7788 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.7804 -s 1 -d 3 -p ack -e 40 -c 0 -i 778 -a 1 -x {21.0 3.0 387 ------- null} + -t 36.7804 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 798 -a 0 -x {3.0 21.0 407 ------- null} - -t 36.7804 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 798 -a 0 -x {3.0 21.0 407 ------- null} h -t 36.7804 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 798 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.782 -s 1 -d 3 -p ack -e 40 -c 0 -i 779 -a 1 -x {21.0 3.0 388 ------- null} + -t 36.782 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {3.0 21.0 408 ------- null} - -t 36.782 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {3.0 21.0 408 ------- null} h -t 36.782 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.7836 -s 1 -d 3 -p ack -e 40 -c 0 -i 780 -a 1 -x {21.0 3.0 389 ------- null} + -t 36.7836 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 800 -a 0 -x {3.0 21.0 409 ------- null} - -t 36.7836 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 800 -a 0 -x {3.0 21.0 409 ------- null} h -t 36.7836 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 800 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.7852 -s 1 -d 3 -p ack -e 40 -c 0 -i 781 -a 1 -x {21.0 3.0 390 ------- null} + -t 36.7852 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {3.0 21.0 410 ------- null} - -t 36.7852 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {3.0 21.0 410 ------- null} h -t 36.7852 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.8964 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 782 -a 0 -x {3.0 21.0 391 ------- null} + -t 36.8964 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 782 -a 0 -x {3.0 21.0 391 ------- null} - -t 36.8964 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 782 -a 0 -x {3.0 21.0 391 ------- null} h -t 36.8964 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 782 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.898 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {3.0 21.0 392 ------- null} + -t 36.898 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {3.0 21.0 392 ------- null} - -t 36.898 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {3.0 21.0 392 ------- null} h -t 36.898 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.8996 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 784 -a 0 -x {3.0 21.0 393 ------- null} + -t 36.8996 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 784 -a 0 -x {3.0 21.0 393 ------- null} - -t 36.8996 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 784 -a 0 -x {3.0 21.0 393 ------- null} h -t 36.8996 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 784 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.9012 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {3.0 21.0 394 ------- null} + -t 36.9012 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {3.0 21.0 394 ------- null} - -t 36.9012 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {3.0 21.0 394 ------- null} h -t 36.9012 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.9028 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 786 -a 0 -x {3.0 21.0 395 ------- null} + -t 36.9028 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 786 -a 0 -x {3.0 21.0 395 ------- null} - -t 36.9028 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 786 -a 0 -x {3.0 21.0 395 ------- null} h -t 36.9028 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 786 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.9044 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {3.0 21.0 396 ------- null} + -t 36.9044 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {3.0 21.0 396 ------- null} - -t 36.9044 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {3.0 21.0 396 ------- null} h -t 36.9044 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.906 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 788 -a 0 -x {3.0 21.0 397 ------- null} + -t 36.906 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 788 -a 0 -x {3.0 21.0 397 ------- null} - -t 36.906 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 788 -a 0 -x {3.0 21.0 397 ------- null} h -t 36.906 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 788 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.9076 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {3.0 21.0 398 ------- null} + -t 36.9076 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {3.0 21.0 398 ------- null} - -t 36.9076 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {3.0 21.0 398 ------- null} h -t 36.9076 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.9092 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 790 -a 0 -x {3.0 21.0 399 ------- null} + -t 36.9092 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 790 -a 0 -x {3.0 21.0 399 ------- null} - -t 36.9092 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 790 -a 0 -x {3.0 21.0 399 ------- null} h -t 36.9092 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 790 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.9108 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {3.0 21.0 400 ------- null} + -t 36.9108 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {3.0 21.0 400 ------- null} - -t 36.9108 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {3.0 21.0 400 ------- null} h -t 36.9108 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.9124 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 792 -a 0 -x {3.0 21.0 401 ------- null} + -t 36.9124 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 792 -a 0 -x {3.0 21.0 401 ------- null} - -t 36.9124 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 792 -a 0 -x {3.0 21.0 401 ------- null} h -t 36.9124 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 792 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.914 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {3.0 21.0 402 ------- null} + -t 36.914 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {3.0 21.0 402 ------- null} - -t 36.914 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {3.0 21.0 402 ------- null} h -t 36.914 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.9156 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 794 -a 0 -x {3.0 21.0 403 ------- null} + -t 36.9156 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 794 -a 0 -x {3.0 21.0 403 ------- null} - -t 36.9156 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 794 -a 0 -x {3.0 21.0 403 ------- null} h -t 36.9156 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 794 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.9172 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {3.0 21.0 404 ------- null} + -t 36.9172 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {3.0 21.0 404 ------- null} - -t 36.9172 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {3.0 21.0 404 ------- null} h -t 36.9172 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.9188 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 796 -a 0 -x {3.0 21.0 405 ------- null} + -t 36.9188 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 796 -a 0 -x {3.0 21.0 405 ------- null} - -t 36.9188 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 796 -a 0 -x {3.0 21.0 405 ------- null} h -t 36.9188 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 796 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.9204 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {3.0 21.0 406 ------- null} + -t 36.9204 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {3.0 21.0 406 ------- null} - -t 36.9204 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {3.0 21.0 406 ------- null} h -t 36.9204 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.922 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 798 -a 0 -x {3.0 21.0 407 ------- null} + -t 36.922 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 798 -a 0 -x {3.0 21.0 407 ------- null} - -t 36.922 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 798 -a 0 -x {3.0 21.0 407 ------- null} h -t 36.922 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 798 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.9236 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {3.0 21.0 408 ------- null} + -t 36.9236 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {3.0 21.0 408 ------- null} - -t 36.9236 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {3.0 21.0 408 ------- null} h -t 36.9236 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.9252 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 800 -a 0 -x {3.0 21.0 409 ------- null} + -t 36.9252 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 800 -a 0 -x {3.0 21.0 409 ------- null} - -t 36.9252 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 800 -a 0 -x {3.0 21.0 409 ------- null} h -t 36.9252 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 800 -a 0 -x {3.0 21.0 -1 ------- null} r -t 36.9268 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {3.0 21.0 410 ------- null} + -t 36.9268 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {3.0 21.0 410 ------- null} - -t 36.9268 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {3.0 21.0 410 ------- null} h -t 36.9268 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {3.0 21.0 -1 ------- null} r -t 37.198 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 782 -a 0 -x {3.0 21.0 391 ------- null} + -t 37.198 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 782 -a 0 -x {3.0 21.0 391 ------- null} - -t 37.198 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 782 -a 0 -x {3.0 21.0 391 ------- null} h -t 37.198 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 782 -a 0 -x {3.0 21.0 -1 ------- null} r -t 37.1996 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {3.0 21.0 392 ------- null} + -t 37.1996 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {3.0 21.0 392 ------- null} - -t 37.1996 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {3.0 21.0 392 ------- null} h -t 37.1996 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {3.0 21.0 -1 ------- null} r -t 37.2012 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 784 -a 0 -x {3.0 21.0 393 ------- null} + -t 37.2012 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 784 -a 0 -x {3.0 21.0 393 ------- null} - -t 37.2012 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 784 -a 0 -x {3.0 21.0 393 ------- null} h -t 37.2012 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 784 -a 0 -x {3.0 21.0 -1 ------- null} r -t 37.2028 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {3.0 21.0 394 ------- null} + -t 37.2028 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {3.0 21.0 394 ------- null} - -t 37.2028 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {3.0 21.0 394 ------- null} h -t 37.2028 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {3.0 21.0 -1 ------- null} r -t 37.2044 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 786 -a 0 -x {3.0 21.0 395 ------- null} + -t 37.2044 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 786 -a 0 -x {3.0 21.0 395 ------- null} - -t 37.2044 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 786 -a 0 -x {3.0 21.0 395 ------- null} h -t 37.2044 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 786 -a 0 -x {3.0 21.0 -1 ------- null} r -t 37.206 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {3.0 21.0 396 ------- null} + -t 37.206 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {3.0 21.0 396 ------- null} - -t 37.206 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {3.0 21.0 396 ------- null} h -t 37.206 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {3.0 21.0 -1 ------- null} r -t 37.2076 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 788 -a 0 -x {3.0 21.0 397 ------- null} + -t 37.2076 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 788 -a 0 -x {3.0 21.0 397 ------- null} - -t 37.2076 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 788 -a 0 -x {3.0 21.0 397 ------- null} h -t 37.2076 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 788 -a 0 -x {3.0 21.0 -1 ------- null} r -t 37.2092 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {3.0 21.0 398 ------- null} + -t 37.2092 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {3.0 21.0 398 ------- null} - -t 37.2092 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {3.0 21.0 398 ------- null} h -t 37.2092 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {3.0 21.0 -1 ------- null} r -t 37.2108 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 790 -a 0 -x {3.0 21.0 399 ------- null} + -t 37.2108 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 790 -a 0 -x {3.0 21.0 399 ------- null} - -t 37.2108 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 790 -a 0 -x {3.0 21.0 399 ------- null} h -t 37.2108 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 790 -a 0 -x {3.0 21.0 -1 ------- null} r -t 37.2124 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {3.0 21.0 400 ------- null} + -t 37.2124 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {3.0 21.0 400 ------- null} - -t 37.2124 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {3.0 21.0 400 ------- null} h -t 37.2124 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {3.0 21.0 -1 ------- null} r -t 37.214 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 792 -a 0 -x {3.0 21.0 401 ------- null} + -t 37.214 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 792 -a 0 -x {3.0 21.0 401 ------- null} - -t 37.214 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 792 -a 0 -x {3.0 21.0 401 ------- null} h -t 37.214 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 792 -a 0 -x {3.0 21.0 -1 ------- null} r -t 37.2156 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {3.0 21.0 402 ------- null} + -t 37.2156 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {3.0 21.0 402 ------- null} - -t 37.2156 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {3.0 21.0 402 ------- null} h -t 37.2156 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {3.0 21.0 -1 ------- null} r -t 37.2172 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 794 -a 0 -x {3.0 21.0 403 ------- null} + -t 37.2172 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 794 -a 0 -x {3.0 21.0 403 ------- null} - -t 37.2172 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 794 -a 0 -x {3.0 21.0 403 ------- null} h -t 37.2172 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 794 -a 0 -x {3.0 21.0 -1 ------- null} r -t 37.2188 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {3.0 21.0 404 ------- null} + -t 37.2188 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {3.0 21.0 404 ------- null} - -t 37.2188 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {3.0 21.0 404 ------- null} h -t 37.2188 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {3.0 21.0 -1 ------- null} r -t 37.2204 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 796 -a 0 -x {3.0 21.0 405 ------- null} + -t 37.2204 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 796 -a 0 -x {3.0 21.0 405 ------- null} - -t 37.2204 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 796 -a 0 -x {3.0 21.0 405 ------- null} h -t 37.2204 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 796 -a 0 -x {3.0 21.0 -1 ------- null} r -t 37.222 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {3.0 21.0 406 ------- null} + -t 37.222 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {3.0 21.0 406 ------- null} - -t 37.222 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {3.0 21.0 406 ------- null} h -t 37.222 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {3.0 21.0 -1 ------- null} r -t 37.2236 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 798 -a 0 -x {3.0 21.0 407 ------- null} + -t 37.2236 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 798 -a 0 -x {3.0 21.0 407 ------- null} - -t 37.2236 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 798 -a 0 -x {3.0 21.0 407 ------- null} h -t 37.2236 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 798 -a 0 -x {3.0 21.0 -1 ------- null} r -t 37.2252 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {3.0 21.0 408 ------- null} + -t 37.2252 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {3.0 21.0 408 ------- null} - -t 37.2252 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {3.0 21.0 408 ------- null} h -t 37.2252 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {3.0 21.0 -1 ------- null} r -t 37.2268 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 800 -a 0 -x {3.0 21.0 409 ------- null} + -t 37.2268 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 800 -a 0 -x {3.0 21.0 409 ------- null} - -t 37.2268 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 800 -a 0 -x {3.0 21.0 409 ------- null} h -t 37.2268 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 800 -a 0 -x {3.0 21.0 -1 ------- null} r -t 37.2284 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {3.0 21.0 410 ------- null} + -t 37.2284 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {3.0 21.0 410 ------- null} - -t 37.2284 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {3.0 21.0 410 ------- null} h -t 37.2284 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {3.0 21.0 -1 ------- null} r -t 37.5496 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 782 -a 0 -x {3.0 21.0 391 ------- null} + -t 37.5496 -s 21 -d 28 -p ack -e 40 -c 0 -i 802 -a 1 -x {21.0 3.0 391 ------- null} - -t 37.5496 -s 21 -d 28 -p ack -e 40 -c 0 -i 802 -a 1 -x {21.0 3.0 391 ------- null} h -t 37.5496 -s 21 -d 28 -p ack -e 40 -c 0 -i 802 -a 1 -x {21.0 3.0 -1 ------- null} r -t 37.5512 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {3.0 21.0 392 ------- null} + -t 37.5512 -s 21 -d 28 -p ack -e 40 -c 0 -i 803 -a 1 -x {21.0 3.0 392 ------- null} - -t 37.5512 -s 21 -d 28 -p ack -e 40 -c 0 -i 803 -a 1 -x {21.0 3.0 392 ------- null} h -t 37.5512 -s 21 -d 28 -p ack -e 40 -c 0 -i 803 -a 1 -x {21.0 3.0 -1 ------- null} r -t 37.5528 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 784 -a 0 -x {3.0 21.0 393 ------- null} + -t 37.5528 -s 21 -d 28 -p ack -e 40 -c 0 -i 804 -a 1 -x {21.0 3.0 393 ------- null} - -t 37.5528 -s 21 -d 28 -p ack -e 40 -c 0 -i 804 -a 1 -x {21.0 3.0 393 ------- null} h -t 37.5528 -s 21 -d 28 -p ack -e 40 -c 0 -i 804 -a 1 -x {21.0 3.0 -1 ------- null} r -t 37.5544 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {3.0 21.0 394 ------- null} + -t 37.5544 -s 21 -d 28 -p ack -e 40 -c 0 -i 805 -a 1 -x {21.0 3.0 394 ------- null} - -t 37.5544 -s 21 -d 28 -p ack -e 40 -c 0 -i 805 -a 1 -x {21.0 3.0 394 ------- null} h -t 37.5544 -s 21 -d 28 -p ack -e 40 -c 0 -i 805 -a 1 -x {21.0 3.0 -1 ------- null} r -t 37.556 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 786 -a 0 -x {3.0 21.0 395 ------- null} + -t 37.556 -s 21 -d 28 -p ack -e 40 -c 0 -i 806 -a 1 -x {21.0 3.0 395 ------- null} - -t 37.556 -s 21 -d 28 -p ack -e 40 -c 0 -i 806 -a 1 -x {21.0 3.0 395 ------- null} h -t 37.556 -s 21 -d 28 -p ack -e 40 -c 0 -i 806 -a 1 -x {21.0 3.0 -1 ------- null} r -t 37.5576 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {3.0 21.0 396 ------- null} + -t 37.5576 -s 21 -d 28 -p ack -e 40 -c 0 -i 807 -a 1 -x {21.0 3.0 396 ------- null} - -t 37.5576 -s 21 -d 28 -p ack -e 40 -c 0 -i 807 -a 1 -x {21.0 3.0 396 ------- null} h -t 37.5576 -s 21 -d 28 -p ack -e 40 -c 0 -i 807 -a 1 -x {21.0 3.0 -1 ------- null} r -t 37.5592 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 788 -a 0 -x {3.0 21.0 397 ------- null} + -t 37.5592 -s 21 -d 28 -p ack -e 40 -c 0 -i 808 -a 1 -x {21.0 3.0 397 ------- null} - -t 37.5592 -s 21 -d 28 -p ack -e 40 -c 0 -i 808 -a 1 -x {21.0 3.0 397 ------- null} h -t 37.5592 -s 21 -d 28 -p ack -e 40 -c 0 -i 808 -a 1 -x {21.0 3.0 -1 ------- null} r -t 37.5608 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {3.0 21.0 398 ------- null} + -t 37.5608 -s 21 -d 28 -p ack -e 40 -c 0 -i 809 -a 1 -x {21.0 3.0 398 ------- null} - -t 37.5608 -s 21 -d 28 -p ack -e 40 -c 0 -i 809 -a 1 -x {21.0 3.0 398 ------- null} h -t 37.5608 -s 21 -d 28 -p ack -e 40 -c 0 -i 809 -a 1 -x {21.0 3.0 -1 ------- null} r -t 37.5624 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 790 -a 0 -x {3.0 21.0 399 ------- null} + -t 37.5624 -s 21 -d 28 -p ack -e 40 -c 0 -i 810 -a 1 -x {21.0 3.0 399 ------- null} - -t 37.5624 -s 21 -d 28 -p ack -e 40 -c 0 -i 810 -a 1 -x {21.0 3.0 399 ------- null} h -t 37.5624 -s 21 -d 28 -p ack -e 40 -c 0 -i 810 -a 1 -x {21.0 3.0 -1 ------- null} r -t 37.564 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {3.0 21.0 400 ------- null} + -t 37.564 -s 21 -d 28 -p ack -e 40 -c 0 -i 811 -a 1 -x {21.0 3.0 400 ------- null} - -t 37.564 -s 21 -d 28 -p ack -e 40 -c 0 -i 811 -a 1 -x {21.0 3.0 400 ------- null} h -t 37.564 -s 21 -d 28 -p ack -e 40 -c 0 -i 811 -a 1 -x {21.0 3.0 -1 ------- null} r -t 37.5656 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 792 -a 0 -x {3.0 21.0 401 ------- null} + -t 37.5656 -s 21 -d 28 -p ack -e 40 -c 0 -i 812 -a 1 -x {21.0 3.0 401 ------- null} - -t 37.5656 -s 21 -d 28 -p ack -e 40 -c 0 -i 812 -a 1 -x {21.0 3.0 401 ------- null} h -t 37.5656 -s 21 -d 28 -p ack -e 40 -c 0 -i 812 -a 1 -x {21.0 3.0 -1 ------- null} r -t 37.5672 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {3.0 21.0 402 ------- null} + -t 37.5672 -s 21 -d 28 -p ack -e 40 -c 0 -i 813 -a 1 -x {21.0 3.0 402 ------- null} - -t 37.5672 -s 21 -d 28 -p ack -e 40 -c 0 -i 813 -a 1 -x {21.0 3.0 402 ------- null} h -t 37.5672 -s 21 -d 28 -p ack -e 40 -c 0 -i 813 -a 1 -x {21.0 3.0 -1 ------- null} r -t 37.5688 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 794 -a 0 -x {3.0 21.0 403 ------- null} + -t 37.5688 -s 21 -d 28 -p ack -e 40 -c 0 -i 814 -a 1 -x {21.0 3.0 403 ------- null} - -t 37.5688 -s 21 -d 28 -p ack -e 40 -c 0 -i 814 -a 1 -x {21.0 3.0 403 ------- null} h -t 37.5688 -s 21 -d 28 -p ack -e 40 -c 0 -i 814 -a 1 -x {21.0 3.0 -1 ------- null} r -t 37.5704 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {3.0 21.0 404 ------- null} + -t 37.5704 -s 21 -d 28 -p ack -e 40 -c 0 -i 815 -a 1 -x {21.0 3.0 404 ------- null} - -t 37.5704 -s 21 -d 28 -p ack -e 40 -c 0 -i 815 -a 1 -x {21.0 3.0 404 ------- null} h -t 37.5704 -s 21 -d 28 -p ack -e 40 -c 0 -i 815 -a 1 -x {21.0 3.0 -1 ------- null} r -t 37.572 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 796 -a 0 -x {3.0 21.0 405 ------- null} + -t 37.572 -s 21 -d 28 -p ack -e 40 -c 0 -i 816 -a 1 -x {21.0 3.0 405 ------- null} - -t 37.572 -s 21 -d 28 -p ack -e 40 -c 0 -i 816 -a 1 -x {21.0 3.0 405 ------- null} h -t 37.572 -s 21 -d 28 -p ack -e 40 -c 0 -i 816 -a 1 -x {21.0 3.0 -1 ------- null} r -t 37.5736 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {3.0 21.0 406 ------- null} + -t 37.5736 -s 21 -d 28 -p ack -e 40 -c 0 -i 817 -a 1 -x {21.0 3.0 406 ------- null} - -t 37.5736 -s 21 -d 28 -p ack -e 40 -c 0 -i 817 -a 1 -x {21.0 3.0 406 ------- null} h -t 37.5736 -s 21 -d 28 -p ack -e 40 -c 0 -i 817 -a 1 -x {21.0 3.0 -1 ------- null} r -t 37.5752 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 798 -a 0 -x {3.0 21.0 407 ------- null} + -t 37.5752 -s 21 -d 28 -p ack -e 40 -c 0 -i 818 -a 1 -x {21.0 3.0 407 ------- null} - -t 37.5752 -s 21 -d 28 -p ack -e 40 -c 0 -i 818 -a 1 -x {21.0 3.0 407 ------- null} h -t 37.5752 -s 21 -d 28 -p ack -e 40 -c 0 -i 818 -a 1 -x {21.0 3.0 -1 ------- null} r -t 37.5768 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {3.0 21.0 408 ------- null} + -t 37.5768 -s 21 -d 28 -p ack -e 40 -c 0 -i 819 -a 1 -x {21.0 3.0 408 ------- null} - -t 37.5768 -s 21 -d 28 -p ack -e 40 -c 0 -i 819 -a 1 -x {21.0 3.0 408 ------- null} h -t 37.5768 -s 21 -d 28 -p ack -e 40 -c 0 -i 819 -a 1 -x {21.0 3.0 -1 ------- null} r -t 37.5784 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 800 -a 0 -x {3.0 21.0 409 ------- null} + -t 37.5784 -s 21 -d 28 -p ack -e 40 -c 0 -i 820 -a 1 -x {21.0 3.0 409 ------- null} - -t 37.5784 -s 21 -d 28 -p ack -e 40 -c 0 -i 820 -a 1 -x {21.0 3.0 409 ------- null} h -t 37.5784 -s 21 -d 28 -p ack -e 40 -c 0 -i 820 -a 1 -x {21.0 3.0 -1 ------- null} r -t 37.58 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {3.0 21.0 410 ------- null} + -t 37.58 -s 21 -d 28 -p ack -e 40 -c 0 -i 821 -a 1 -x {21.0 3.0 410 ------- null} - -t 37.58 -s 21 -d 28 -p ack -e 40 -c 0 -i 821 -a 1 -x {21.0 3.0 410 ------- null} h -t 37.58 -s 21 -d 28 -p ack -e 40 -c 0 -i 821 -a 1 -x {21.0 3.0 -1 ------- null} r -t 37.8997 -s 21 -d 28 -p ack -e 40 -c 0 -i 802 -a 1 -x {21.0 3.0 391 ------- null} + -t 37.8997 -s 28 -d 1 -p ack -e 40 -c 0 -i 802 -a 1 -x {21.0 3.0 391 ------- null} - -t 37.8997 -s 28 -d 1 -p ack -e 40 -c 0 -i 802 -a 1 -x {21.0 3.0 391 ------- null} h -t 37.8997 -s 28 -d 1 -p ack -e 40 -c 0 -i 802 -a 1 -x {21.0 3.0 -1 ------- null} r -t 37.9013 -s 21 -d 28 -p ack -e 40 -c 0 -i 803 -a 1 -x {21.0 3.0 392 ------- null} + -t 37.9013 -s 28 -d 1 -p ack -e 40 -c 0 -i 803 -a 1 -x {21.0 3.0 392 ------- null} - -t 37.9013 -s 28 -d 1 -p ack -e 40 -c 0 -i 803 -a 1 -x {21.0 3.0 392 ------- null} h -t 37.9013 -s 28 -d 1 -p ack -e 40 -c 0 -i 803 -a 1 -x {21.0 3.0 -1 ------- null} r -t 37.9029 -s 21 -d 28 -p ack -e 40 -c 0 -i 804 -a 1 -x {21.0 3.0 393 ------- null} + -t 37.9029 -s 28 -d 1 -p ack -e 40 -c 0 -i 804 -a 1 -x {21.0 3.0 393 ------- null} - -t 37.9029 -s 28 -d 1 -p ack -e 40 -c 0 -i 804 -a 1 -x {21.0 3.0 393 ------- null} h -t 37.9029 -s 28 -d 1 -p ack -e 40 -c 0 -i 804 -a 1 -x {21.0 3.0 -1 ------- null} r -t 37.9045 -s 21 -d 28 -p ack -e 40 -c 0 -i 805 -a 1 -x {21.0 3.0 394 ------- null} + -t 37.9045 -s 28 -d 1 -p ack -e 40 -c 0 -i 805 -a 1 -x {21.0 3.0 394 ------- null} - -t 37.9045 -s 28 -d 1 -p ack -e 40 -c 0 -i 805 -a 1 -x {21.0 3.0 394 ------- null} h -t 37.9045 -s 28 -d 1 -p ack -e 40 -c 0 -i 805 -a 1 -x {21.0 3.0 -1 ------- null} r -t 37.9061 -s 21 -d 28 -p ack -e 40 -c 0 -i 806 -a 1 -x {21.0 3.0 395 ------- null} + -t 37.9061 -s 28 -d 1 -p ack -e 40 -c 0 -i 806 -a 1 -x {21.0 3.0 395 ------- null} - -t 37.9061 -s 28 -d 1 -p ack -e 40 -c 0 -i 806 -a 1 -x {21.0 3.0 395 ------- null} h -t 37.9061 -s 28 -d 1 -p ack -e 40 -c 0 -i 806 -a 1 -x {21.0 3.0 -1 ------- null} r -t 37.9077 -s 21 -d 28 -p ack -e 40 -c 0 -i 807 -a 1 -x {21.0 3.0 396 ------- null} + -t 37.9077 -s 28 -d 1 -p ack -e 40 -c 0 -i 807 -a 1 -x {21.0 3.0 396 ------- null} - -t 37.9077 -s 28 -d 1 -p ack -e 40 -c 0 -i 807 -a 1 -x {21.0 3.0 396 ------- null} h -t 37.9077 -s 28 -d 1 -p ack -e 40 -c 0 -i 807 -a 1 -x {21.0 3.0 -1 ------- null} r -t 37.9093 -s 21 -d 28 -p ack -e 40 -c 0 -i 808 -a 1 -x {21.0 3.0 397 ------- null} + -t 37.9093 -s 28 -d 1 -p ack -e 40 -c 0 -i 808 -a 1 -x {21.0 3.0 397 ------- null} - -t 37.9093 -s 28 -d 1 -p ack -e 40 -c 0 -i 808 -a 1 -x {21.0 3.0 397 ------- null} h -t 37.9093 -s 28 -d 1 -p ack -e 40 -c 0 -i 808 -a 1 -x {21.0 3.0 -1 ------- null} r -t 37.9109 -s 21 -d 28 -p ack -e 40 -c 0 -i 809 -a 1 -x {21.0 3.0 398 ------- null} + -t 37.9109 -s 28 -d 1 -p ack -e 40 -c 0 -i 809 -a 1 -x {21.0 3.0 398 ------- null} - -t 37.9109 -s 28 -d 1 -p ack -e 40 -c 0 -i 809 -a 1 -x {21.0 3.0 398 ------- null} h -t 37.9109 -s 28 -d 1 -p ack -e 40 -c 0 -i 809 -a 1 -x {21.0 3.0 -1 ------- null} r -t 37.9125 -s 21 -d 28 -p ack -e 40 -c 0 -i 810 -a 1 -x {21.0 3.0 399 ------- null} + -t 37.9125 -s 28 -d 1 -p ack -e 40 -c 0 -i 810 -a 1 -x {21.0 3.0 399 ------- null} - -t 37.9125 -s 28 -d 1 -p ack -e 40 -c 0 -i 810 -a 1 -x {21.0 3.0 399 ------- null} h -t 37.9125 -s 28 -d 1 -p ack -e 40 -c 0 -i 810 -a 1 -x {21.0 3.0 -1 ------- null} r -t 37.9141 -s 21 -d 28 -p ack -e 40 -c 0 -i 811 -a 1 -x {21.0 3.0 400 ------- null} + -t 37.9141 -s 28 -d 1 -p ack -e 40 -c 0 -i 811 -a 1 -x {21.0 3.0 400 ------- null} - -t 37.9141 -s 28 -d 1 -p ack -e 40 -c 0 -i 811 -a 1 -x {21.0 3.0 400 ------- null} h -t 37.9141 -s 28 -d 1 -p ack -e 40 -c 0 -i 811 -a 1 -x {21.0 3.0 -1 ------- null} r -t 37.9157 -s 21 -d 28 -p ack -e 40 -c 0 -i 812 -a 1 -x {21.0 3.0 401 ------- null} + -t 37.9157 -s 28 -d 1 -p ack -e 40 -c 0 -i 812 -a 1 -x {21.0 3.0 401 ------- null} - -t 37.9157 -s 28 -d 1 -p ack -e 40 -c 0 -i 812 -a 1 -x {21.0 3.0 401 ------- null} h -t 37.9157 -s 28 -d 1 -p ack -e 40 -c 0 -i 812 -a 1 -x {21.0 3.0 -1 ------- null} r -t 37.9173 -s 21 -d 28 -p ack -e 40 -c 0 -i 813 -a 1 -x {21.0 3.0 402 ------- null} + -t 37.9173 -s 28 -d 1 -p ack -e 40 -c 0 -i 813 -a 1 -x {21.0 3.0 402 ------- null} - -t 37.9173 -s 28 -d 1 -p ack -e 40 -c 0 -i 813 -a 1 -x {21.0 3.0 402 ------- null} h -t 37.9173 -s 28 -d 1 -p ack -e 40 -c 0 -i 813 -a 1 -x {21.0 3.0 -1 ------- null} r -t 37.9189 -s 21 -d 28 -p ack -e 40 -c 0 -i 814 -a 1 -x {21.0 3.0 403 ------- null} + -t 37.9189 -s 28 -d 1 -p ack -e 40 -c 0 -i 814 -a 1 -x {21.0 3.0 403 ------- null} - -t 37.9189 -s 28 -d 1 -p ack -e 40 -c 0 -i 814 -a 1 -x {21.0 3.0 403 ------- null} h -t 37.9189 -s 28 -d 1 -p ack -e 40 -c 0 -i 814 -a 1 -x {21.0 3.0 -1 ------- null} r -t 37.9205 -s 21 -d 28 -p ack -e 40 -c 0 -i 815 -a 1 -x {21.0 3.0 404 ------- null} + -t 37.9205 -s 28 -d 1 -p ack -e 40 -c 0 -i 815 -a 1 -x {21.0 3.0 404 ------- null} - -t 37.9205 -s 28 -d 1 -p ack -e 40 -c 0 -i 815 -a 1 -x {21.0 3.0 404 ------- null} h -t 37.9205 -s 28 -d 1 -p ack -e 40 -c 0 -i 815 -a 1 -x {21.0 3.0 -1 ------- null} r -t 37.9221 -s 21 -d 28 -p ack -e 40 -c 0 -i 816 -a 1 -x {21.0 3.0 405 ------- null} + -t 37.9221 -s 28 -d 1 -p ack -e 40 -c 0 -i 816 -a 1 -x {21.0 3.0 405 ------- null} - -t 37.9221 -s 28 -d 1 -p ack -e 40 -c 0 -i 816 -a 1 -x {21.0 3.0 405 ------- null} h -t 37.9221 -s 28 -d 1 -p ack -e 40 -c 0 -i 816 -a 1 -x {21.0 3.0 -1 ------- null} r -t 37.9237 -s 21 -d 28 -p ack -e 40 -c 0 -i 817 -a 1 -x {21.0 3.0 406 ------- null} + -t 37.9237 -s 28 -d 1 -p ack -e 40 -c 0 -i 817 -a 1 -x {21.0 3.0 406 ------- null} - -t 37.9237 -s 28 -d 1 -p ack -e 40 -c 0 -i 817 -a 1 -x {21.0 3.0 406 ------- null} h -t 37.9237 -s 28 -d 1 -p ack -e 40 -c 0 -i 817 -a 1 -x {21.0 3.0 -1 ------- null} r -t 37.9253 -s 21 -d 28 -p ack -e 40 -c 0 -i 818 -a 1 -x {21.0 3.0 407 ------- null} + -t 37.9253 -s 28 -d 1 -p ack -e 40 -c 0 -i 818 -a 1 -x {21.0 3.0 407 ------- null} - -t 37.9253 -s 28 -d 1 -p ack -e 40 -c 0 -i 818 -a 1 -x {21.0 3.0 407 ------- null} h -t 37.9253 -s 28 -d 1 -p ack -e 40 -c 0 -i 818 -a 1 -x {21.0 3.0 -1 ------- null} r -t 37.9269 -s 21 -d 28 -p ack -e 40 -c 0 -i 819 -a 1 -x {21.0 3.0 408 ------- null} + -t 37.9269 -s 28 -d 1 -p ack -e 40 -c 0 -i 819 -a 1 -x {21.0 3.0 408 ------- null} - -t 37.9269 -s 28 -d 1 -p ack -e 40 -c 0 -i 819 -a 1 -x {21.0 3.0 408 ------- null} h -t 37.9269 -s 28 -d 1 -p ack -e 40 -c 0 -i 819 -a 1 -x {21.0 3.0 -1 ------- null} r -t 37.9285 -s 21 -d 28 -p ack -e 40 -c 0 -i 820 -a 1 -x {21.0 3.0 409 ------- null} + -t 37.9285 -s 28 -d 1 -p ack -e 40 -c 0 -i 820 -a 1 -x {21.0 3.0 409 ------- null} - -t 37.9285 -s 28 -d 1 -p ack -e 40 -c 0 -i 820 -a 1 -x {21.0 3.0 409 ------- null} h -t 37.9285 -s 28 -d 1 -p ack -e 40 -c 0 -i 820 -a 1 -x {21.0 3.0 -1 ------- null} r -t 37.9301 -s 21 -d 28 -p ack -e 40 -c 0 -i 821 -a 1 -x {21.0 3.0 410 ------- null} + -t 37.9301 -s 28 -d 1 -p ack -e 40 -c 0 -i 821 -a 1 -x {21.0 3.0 410 ------- null} - -t 37.9301 -s 28 -d 1 -p ack -e 40 -c 0 -i 821 -a 1 -x {21.0 3.0 410 ------- null} h -t 37.9301 -s 28 -d 1 -p ack -e 40 -c 0 -i 821 -a 1 -x {21.0 3.0 -1 ------- null} r -t 38.1997 -s 28 -d 1 -p ack -e 40 -c 0 -i 802 -a 1 -x {21.0 3.0 391 ------- null} + -t 38.1997 -s 1 -d 3 -p ack -e 40 -c 0 -i 802 -a 1 -x {21.0 3.0 391 ------- null} - -t 38.1997 -s 1 -d 3 -p ack -e 40 -c 0 -i 802 -a 1 -x {21.0 3.0 391 ------- null} h -t 38.1997 -s 1 -d 3 -p ack -e 40 -c 0 -i 802 -a 1 -x {21.0 3.0 -1 ------- null} r -t 38.2013 -s 28 -d 1 -p ack -e 40 -c 0 -i 803 -a 1 -x {21.0 3.0 392 ------- null} + -t 38.2013 -s 1 -d 3 -p ack -e 40 -c 0 -i 803 -a 1 -x {21.0 3.0 392 ------- null} - -t 38.2013 -s 1 -d 3 -p ack -e 40 -c 0 -i 803 -a 1 -x {21.0 3.0 392 ------- null} h -t 38.2013 -s 1 -d 3 -p ack -e 40 -c 0 -i 803 -a 1 -x {21.0 3.0 -1 ------- null} r -t 38.2029 -s 28 -d 1 -p ack -e 40 -c 0 -i 804 -a 1 -x {21.0 3.0 393 ------- null} + -t 38.2029 -s 1 -d 3 -p ack -e 40 -c 0 -i 804 -a 1 -x {21.0 3.0 393 ------- null} - -t 38.2029 -s 1 -d 3 -p ack -e 40 -c 0 -i 804 -a 1 -x {21.0 3.0 393 ------- null} h -t 38.2029 -s 1 -d 3 -p ack -e 40 -c 0 -i 804 -a 1 -x {21.0 3.0 -1 ------- null} r -t 38.2045 -s 28 -d 1 -p ack -e 40 -c 0 -i 805 -a 1 -x {21.0 3.0 394 ------- null} + -t 38.2045 -s 1 -d 3 -p ack -e 40 -c 0 -i 805 -a 1 -x {21.0 3.0 394 ------- null} - -t 38.2045 -s 1 -d 3 -p ack -e 40 -c 0 -i 805 -a 1 -x {21.0 3.0 394 ------- null} h -t 38.2045 -s 1 -d 3 -p ack -e 40 -c 0 -i 805 -a 1 -x {21.0 3.0 -1 ------- null} r -t 38.2061 -s 28 -d 1 -p ack -e 40 -c 0 -i 806 -a 1 -x {21.0 3.0 395 ------- null} + -t 38.2061 -s 1 -d 3 -p ack -e 40 -c 0 -i 806 -a 1 -x {21.0 3.0 395 ------- null} - -t 38.2061 -s 1 -d 3 -p ack -e 40 -c 0 -i 806 -a 1 -x {21.0 3.0 395 ------- null} h -t 38.2061 -s 1 -d 3 -p ack -e 40 -c 0 -i 806 -a 1 -x {21.0 3.0 -1 ------- null} r -t 38.2077 -s 28 -d 1 -p ack -e 40 -c 0 -i 807 -a 1 -x {21.0 3.0 396 ------- null} + -t 38.2077 -s 1 -d 3 -p ack -e 40 -c 0 -i 807 -a 1 -x {21.0 3.0 396 ------- null} - -t 38.2077 -s 1 -d 3 -p ack -e 40 -c 0 -i 807 -a 1 -x {21.0 3.0 396 ------- null} h -t 38.2077 -s 1 -d 3 -p ack -e 40 -c 0 -i 807 -a 1 -x {21.0 3.0 -1 ------- null} r -t 38.2093 -s 28 -d 1 -p ack -e 40 -c 0 -i 808 -a 1 -x {21.0 3.0 397 ------- null} + -t 38.2093 -s 1 -d 3 -p ack -e 40 -c 0 -i 808 -a 1 -x {21.0 3.0 397 ------- null} - -t 38.2093 -s 1 -d 3 -p ack -e 40 -c 0 -i 808 -a 1 -x {21.0 3.0 397 ------- null} h -t 38.2093 -s 1 -d 3 -p ack -e 40 -c 0 -i 808 -a 1 -x {21.0 3.0 -1 ------- null} r -t 38.2109 -s 28 -d 1 -p ack -e 40 -c 0 -i 809 -a 1 -x {21.0 3.0 398 ------- null} + -t 38.2109 -s 1 -d 3 -p ack -e 40 -c 0 -i 809 -a 1 -x {21.0 3.0 398 ------- null} - -t 38.2109 -s 1 -d 3 -p ack -e 40 -c 0 -i 809 -a 1 -x {21.0 3.0 398 ------- null} h -t 38.2109 -s 1 -d 3 -p ack -e 40 -c 0 -i 809 -a 1 -x {21.0 3.0 -1 ------- null} r -t 38.2125 -s 28 -d 1 -p ack -e 40 -c 0 -i 810 -a 1 -x {21.0 3.0 399 ------- null} + -t 38.2125 -s 1 -d 3 -p ack -e 40 -c 0 -i 810 -a 1 -x {21.0 3.0 399 ------- null} - -t 38.2125 -s 1 -d 3 -p ack -e 40 -c 0 -i 810 -a 1 -x {21.0 3.0 399 ------- null} h -t 38.2125 -s 1 -d 3 -p ack -e 40 -c 0 -i 810 -a 1 -x {21.0 3.0 -1 ------- null} r -t 38.2141 -s 28 -d 1 -p ack -e 40 -c 0 -i 811 -a 1 -x {21.0 3.0 400 ------- null} + -t 38.2141 -s 1 -d 3 -p ack -e 40 -c 0 -i 811 -a 1 -x {21.0 3.0 400 ------- null} - -t 38.2141 -s 1 -d 3 -p ack -e 40 -c 0 -i 811 -a 1 -x {21.0 3.0 400 ------- null} h -t 38.2141 -s 1 -d 3 -p ack -e 40 -c 0 -i 811 -a 1 -x {21.0 3.0 -1 ------- null} r -t 38.2157 -s 28 -d 1 -p ack -e 40 -c 0 -i 812 -a 1 -x {21.0 3.0 401 ------- null} + -t 38.2157 -s 1 -d 3 -p ack -e 40 -c 0 -i 812 -a 1 -x {21.0 3.0 401 ------- null} - -t 38.2157 -s 1 -d 3 -p ack -e 40 -c 0 -i 812 -a 1 -x {21.0 3.0 401 ------- null} h -t 38.2157 -s 1 -d 3 -p ack -e 40 -c 0 -i 812 -a 1 -x {21.0 3.0 -1 ------- null} r -t 38.2173 -s 28 -d 1 -p ack -e 40 -c 0 -i 813 -a 1 -x {21.0 3.0 402 ------- null} + -t 38.2173 -s 1 -d 3 -p ack -e 40 -c 0 -i 813 -a 1 -x {21.0 3.0 402 ------- null} - -t 38.2173 -s 1 -d 3 -p ack -e 40 -c 0 -i 813 -a 1 -x {21.0 3.0 402 ------- null} h -t 38.2173 -s 1 -d 3 -p ack -e 40 -c 0 -i 813 -a 1 -x {21.0 3.0 -1 ------- null} r -t 38.2189 -s 28 -d 1 -p ack -e 40 -c 0 -i 814 -a 1 -x {21.0 3.0 403 ------- null} + -t 38.2189 -s 1 -d 3 -p ack -e 40 -c 0 -i 814 -a 1 -x {21.0 3.0 403 ------- null} - -t 38.2189 -s 1 -d 3 -p ack -e 40 -c 0 -i 814 -a 1 -x {21.0 3.0 403 ------- null} h -t 38.2189 -s 1 -d 3 -p ack -e 40 -c 0 -i 814 -a 1 -x {21.0 3.0 -1 ------- null} r -t 38.2205 -s 28 -d 1 -p ack -e 40 -c 0 -i 815 -a 1 -x {21.0 3.0 404 ------- null} + -t 38.2205 -s 1 -d 3 -p ack -e 40 -c 0 -i 815 -a 1 -x {21.0 3.0 404 ------- null} - -t 38.2205 -s 1 -d 3 -p ack -e 40 -c 0 -i 815 -a 1 -x {21.0 3.0 404 ------- null} h -t 38.2205 -s 1 -d 3 -p ack -e 40 -c 0 -i 815 -a 1 -x {21.0 3.0 -1 ------- null} r -t 38.2221 -s 28 -d 1 -p ack -e 40 -c 0 -i 816 -a 1 -x {21.0 3.0 405 ------- null} + -t 38.2221 -s 1 -d 3 -p ack -e 40 -c 0 -i 816 -a 1 -x {21.0 3.0 405 ------- null} - -t 38.2221 -s 1 -d 3 -p ack -e 40 -c 0 -i 816 -a 1 -x {21.0 3.0 405 ------- null} h -t 38.2221 -s 1 -d 3 -p ack -e 40 -c 0 -i 816 -a 1 -x {21.0 3.0 -1 ------- null} r -t 38.2237 -s 28 -d 1 -p ack -e 40 -c 0 -i 817 -a 1 -x {21.0 3.0 406 ------- null} + -t 38.2237 -s 1 -d 3 -p ack -e 40 -c 0 -i 817 -a 1 -x {21.0 3.0 406 ------- null} - -t 38.2237 -s 1 -d 3 -p ack -e 40 -c 0 -i 817 -a 1 -x {21.0 3.0 406 ------- null} h -t 38.2237 -s 1 -d 3 -p ack -e 40 -c 0 -i 817 -a 1 -x {21.0 3.0 -1 ------- null} r -t 38.2253 -s 28 -d 1 -p ack -e 40 -c 0 -i 818 -a 1 -x {21.0 3.0 407 ------- null} + -t 38.2253 -s 1 -d 3 -p ack -e 40 -c 0 -i 818 -a 1 -x {21.0 3.0 407 ------- null} - -t 38.2253 -s 1 -d 3 -p ack -e 40 -c 0 -i 818 -a 1 -x {21.0 3.0 407 ------- null} h -t 38.2253 -s 1 -d 3 -p ack -e 40 -c 0 -i 818 -a 1 -x {21.0 3.0 -1 ------- null} r -t 38.2269 -s 28 -d 1 -p ack -e 40 -c 0 -i 819 -a 1 -x {21.0 3.0 408 ------- null} + -t 38.2269 -s 1 -d 3 -p ack -e 40 -c 0 -i 819 -a 1 -x {21.0 3.0 408 ------- null} - -t 38.2269 -s 1 -d 3 -p ack -e 40 -c 0 -i 819 -a 1 -x {21.0 3.0 408 ------- null} h -t 38.2269 -s 1 -d 3 -p ack -e 40 -c 0 -i 819 -a 1 -x {21.0 3.0 -1 ------- null} r -t 38.2285 -s 28 -d 1 -p ack -e 40 -c 0 -i 820 -a 1 -x {21.0 3.0 409 ------- null} + -t 38.2285 -s 1 -d 3 -p ack -e 40 -c 0 -i 820 -a 1 -x {21.0 3.0 409 ------- null} - -t 38.2285 -s 1 -d 3 -p ack -e 40 -c 0 -i 820 -a 1 -x {21.0 3.0 409 ------- null} h -t 38.2285 -s 1 -d 3 -p ack -e 40 -c 0 -i 820 -a 1 -x {21.0 3.0 -1 ------- null} r -t 38.2301 -s 28 -d 1 -p ack -e 40 -c 0 -i 821 -a 1 -x {21.0 3.0 410 ------- null} + -t 38.2301 -s 1 -d 3 -p ack -e 40 -c 0 -i 821 -a 1 -x {21.0 3.0 410 ------- null} - -t 38.2301 -s 1 -d 3 -p ack -e 40 -c 0 -i 821 -a 1 -x {21.0 3.0 410 ------- null} h -t 38.2301 -s 1 -d 3 -p ack -e 40 -c 0 -i 821 -a 1 -x {21.0 3.0 -1 ------- null} r -t 38.3398 -s 1 -d 3 -p ack -e 40 -c 0 -i 802 -a 1 -x {21.0 3.0 391 ------- null} + -t 38.3398 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 822 -a 0 -x {3.0 21.0 411 ------- null} - -t 38.3398 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 822 -a 0 -x {3.0 21.0 411 ------- null} h -t 38.3398 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 822 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.3414 -s 1 -d 3 -p ack -e 40 -c 0 -i 803 -a 1 -x {21.0 3.0 392 ------- null} + -t 38.3414 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {3.0 21.0 412 ------- null} - -t 38.3414 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {3.0 21.0 412 ------- null} h -t 38.3414 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.343 -s 1 -d 3 -p ack -e 40 -c 0 -i 804 -a 1 -x {21.0 3.0 393 ------- null} + -t 38.343 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 824 -a 0 -x {3.0 21.0 413 ------- null} - -t 38.343 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 824 -a 0 -x {3.0 21.0 413 ------- null} h -t 38.343 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 824 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.3446 -s 1 -d 3 -p ack -e 40 -c 0 -i 805 -a 1 -x {21.0 3.0 394 ------- null} + -t 38.3446 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {3.0 21.0 414 ------- null} - -t 38.3446 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {3.0 21.0 414 ------- null} h -t 38.3446 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.3462 -s 1 -d 3 -p ack -e 40 -c 0 -i 806 -a 1 -x {21.0 3.0 395 ------- null} + -t 38.3462 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 826 -a 0 -x {3.0 21.0 415 ------- null} - -t 38.3462 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 826 -a 0 -x {3.0 21.0 415 ------- null} h -t 38.3462 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 826 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.3478 -s 1 -d 3 -p ack -e 40 -c 0 -i 807 -a 1 -x {21.0 3.0 396 ------- null} + -t 38.3478 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {3.0 21.0 416 ------- null} - -t 38.3478 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {3.0 21.0 416 ------- null} h -t 38.3478 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.3494 -s 1 -d 3 -p ack -e 40 -c 0 -i 808 -a 1 -x {21.0 3.0 397 ------- null} + -t 38.3494 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 828 -a 0 -x {3.0 21.0 417 ------- null} - -t 38.3494 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 828 -a 0 -x {3.0 21.0 417 ------- null} h -t 38.3494 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 828 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.351 -s 1 -d 3 -p ack -e 40 -c 0 -i 809 -a 1 -x {21.0 3.0 398 ------- null} + -t 38.351 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {3.0 21.0 418 ------- null} - -t 38.351 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {3.0 21.0 418 ------- null} h -t 38.351 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.3526 -s 1 -d 3 -p ack -e 40 -c 0 -i 810 -a 1 -x {21.0 3.0 399 ------- null} + -t 38.3526 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 830 -a 0 -x {3.0 21.0 419 ------- null} - -t 38.3526 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 830 -a 0 -x {3.0 21.0 419 ------- null} h -t 38.3526 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 830 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.3542 -s 1 -d 3 -p ack -e 40 -c 0 -i 811 -a 1 -x {21.0 3.0 400 ------- null} + -t 38.3542 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {3.0 21.0 420 ------- null} - -t 38.3542 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {3.0 21.0 420 ------- null} h -t 38.3542 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.3558 -s 1 -d 3 -p ack -e 40 -c 0 -i 812 -a 1 -x {21.0 3.0 401 ------- null} + -t 38.3558 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 832 -a 0 -x {3.0 21.0 421 ------- null} - -t 38.3558 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 832 -a 0 -x {3.0 21.0 421 ------- null} h -t 38.3558 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 832 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.3574 -s 1 -d 3 -p ack -e 40 -c 0 -i 813 -a 1 -x {21.0 3.0 402 ------- null} + -t 38.3574 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {3.0 21.0 422 ------- null} - -t 38.3574 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {3.0 21.0 422 ------- null} h -t 38.3574 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.359 -s 1 -d 3 -p ack -e 40 -c 0 -i 814 -a 1 -x {21.0 3.0 403 ------- null} + -t 38.359 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 834 -a 0 -x {3.0 21.0 423 ------- null} - -t 38.359 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 834 -a 0 -x {3.0 21.0 423 ------- null} h -t 38.359 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 834 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.3606 -s 1 -d 3 -p ack -e 40 -c 0 -i 815 -a 1 -x {21.0 3.0 404 ------- null} + -t 38.3606 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {3.0 21.0 424 ------- null} - -t 38.3606 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {3.0 21.0 424 ------- null} h -t 38.3606 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.3622 -s 1 -d 3 -p ack -e 40 -c 0 -i 816 -a 1 -x {21.0 3.0 405 ------- null} + -t 38.3622 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 836 -a 0 -x {3.0 21.0 425 ------- null} - -t 38.3622 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 836 -a 0 -x {3.0 21.0 425 ------- null} h -t 38.3622 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 836 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.3638 -s 1 -d 3 -p ack -e 40 -c 0 -i 817 -a 1 -x {21.0 3.0 406 ------- null} + -t 38.3638 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {3.0 21.0 426 ------- null} - -t 38.3638 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {3.0 21.0 426 ------- null} h -t 38.3638 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.3654 -s 1 -d 3 -p ack -e 40 -c 0 -i 818 -a 1 -x {21.0 3.0 407 ------- null} + -t 38.3654 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 838 -a 0 -x {3.0 21.0 427 ------- null} - -t 38.3654 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 838 -a 0 -x {3.0 21.0 427 ------- null} h -t 38.3654 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 838 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.367 -s 1 -d 3 -p ack -e 40 -c 0 -i 819 -a 1 -x {21.0 3.0 408 ------- null} + -t 38.367 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {3.0 21.0 428 ------- null} - -t 38.367 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {3.0 21.0 428 ------- null} h -t 38.367 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.3686 -s 1 -d 3 -p ack -e 40 -c 0 -i 820 -a 1 -x {21.0 3.0 409 ------- null} + -t 38.3686 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 840 -a 0 -x {3.0 21.0 429 ------- null} - -t 38.3686 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 840 -a 0 -x {3.0 21.0 429 ------- null} h -t 38.3686 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 840 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.3702 -s 1 -d 3 -p ack -e 40 -c 0 -i 821 -a 1 -x {21.0 3.0 410 ------- null} + -t 38.3702 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {3.0 21.0 430 ------- null} - -t 38.3702 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {3.0 21.0 430 ------- null} h -t 38.3702 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.4814 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 822 -a 0 -x {3.0 21.0 411 ------- null} + -t 38.4814 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 822 -a 0 -x {3.0 21.0 411 ------- null} - -t 38.4814 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 822 -a 0 -x {3.0 21.0 411 ------- null} h -t 38.4814 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 822 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.483 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {3.0 21.0 412 ------- null} + -t 38.483 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {3.0 21.0 412 ------- null} - -t 38.483 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {3.0 21.0 412 ------- null} h -t 38.483 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.4846 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 824 -a 0 -x {3.0 21.0 413 ------- null} + -t 38.4846 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 824 -a 0 -x {3.0 21.0 413 ------- null} - -t 38.4846 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 824 -a 0 -x {3.0 21.0 413 ------- null} h -t 38.4846 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 824 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.4862 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {3.0 21.0 414 ------- null} + -t 38.4862 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {3.0 21.0 414 ------- null} - -t 38.4862 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {3.0 21.0 414 ------- null} h -t 38.4862 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.4878 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 826 -a 0 -x {3.0 21.0 415 ------- null} + -t 38.4878 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 826 -a 0 -x {3.0 21.0 415 ------- null} - -t 38.4878 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 826 -a 0 -x {3.0 21.0 415 ------- null} h -t 38.4878 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 826 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.4894 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {3.0 21.0 416 ------- null} + -t 38.4894 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {3.0 21.0 416 ------- null} - -t 38.4894 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {3.0 21.0 416 ------- null} h -t 38.4894 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.491 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 828 -a 0 -x {3.0 21.0 417 ------- null} + -t 38.491 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 828 -a 0 -x {3.0 21.0 417 ------- null} - -t 38.491 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 828 -a 0 -x {3.0 21.0 417 ------- null} h -t 38.491 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 828 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.4926 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {3.0 21.0 418 ------- null} + -t 38.4926 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {3.0 21.0 418 ------- null} - -t 38.4926 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {3.0 21.0 418 ------- null} h -t 38.4926 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.4942 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 830 -a 0 -x {3.0 21.0 419 ------- null} + -t 38.4942 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 830 -a 0 -x {3.0 21.0 419 ------- null} - -t 38.4942 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 830 -a 0 -x {3.0 21.0 419 ------- null} h -t 38.4942 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 830 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.4958 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {3.0 21.0 420 ------- null} + -t 38.4958 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {3.0 21.0 420 ------- null} - -t 38.4958 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {3.0 21.0 420 ------- null} h -t 38.4958 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.4974 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 832 -a 0 -x {3.0 21.0 421 ------- null} + -t 38.4974 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 832 -a 0 -x {3.0 21.0 421 ------- null} - -t 38.4974 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 832 -a 0 -x {3.0 21.0 421 ------- null} h -t 38.4974 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 832 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.499 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {3.0 21.0 422 ------- null} + -t 38.499 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {3.0 21.0 422 ------- null} - -t 38.499 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {3.0 21.0 422 ------- null} h -t 38.499 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.5006 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 834 -a 0 -x {3.0 21.0 423 ------- null} + -t 38.5006 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 834 -a 0 -x {3.0 21.0 423 ------- null} - -t 38.5006 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 834 -a 0 -x {3.0 21.0 423 ------- null} h -t 38.5006 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 834 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.5022 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {3.0 21.0 424 ------- null} + -t 38.5022 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {3.0 21.0 424 ------- null} - -t 38.5022 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {3.0 21.0 424 ------- null} h -t 38.5022 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.5038 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 836 -a 0 -x {3.0 21.0 425 ------- null} + -t 38.5038 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 836 -a 0 -x {3.0 21.0 425 ------- null} - -t 38.5038 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 836 -a 0 -x {3.0 21.0 425 ------- null} h -t 38.5038 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 836 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.5054 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {3.0 21.0 426 ------- null} + -t 38.5054 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {3.0 21.0 426 ------- null} - -t 38.5054 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {3.0 21.0 426 ------- null} h -t 38.5054 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.507 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 838 -a 0 -x {3.0 21.0 427 ------- null} + -t 38.507 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 838 -a 0 -x {3.0 21.0 427 ------- null} - -t 38.507 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 838 -a 0 -x {3.0 21.0 427 ------- null} h -t 38.507 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 838 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.5086 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {3.0 21.0 428 ------- null} + -t 38.5086 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {3.0 21.0 428 ------- null} - -t 38.5086 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {3.0 21.0 428 ------- null} h -t 38.5086 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.5102 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 840 -a 0 -x {3.0 21.0 429 ------- null} + -t 38.5102 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 840 -a 0 -x {3.0 21.0 429 ------- null} - -t 38.5102 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 840 -a 0 -x {3.0 21.0 429 ------- null} h -t 38.5102 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 840 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.5118 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {3.0 21.0 430 ------- null} + -t 38.5118 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {3.0 21.0 430 ------- null} - -t 38.5118 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {3.0 21.0 430 ------- null} h -t 38.5118 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.783 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 822 -a 0 -x {3.0 21.0 411 ------- null} + -t 38.783 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 822 -a 0 -x {3.0 21.0 411 ------- null} - -t 38.783 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 822 -a 0 -x {3.0 21.0 411 ------- null} h -t 38.783 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 822 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.7846 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {3.0 21.0 412 ------- null} + -t 38.7846 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {3.0 21.0 412 ------- null} - -t 38.7846 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {3.0 21.0 412 ------- null} h -t 38.7846 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.7862 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 824 -a 0 -x {3.0 21.0 413 ------- null} + -t 38.7862 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 824 -a 0 -x {3.0 21.0 413 ------- null} - -t 38.7862 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 824 -a 0 -x {3.0 21.0 413 ------- null} h -t 38.7862 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 824 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.7878 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {3.0 21.0 414 ------- null} + -t 38.7878 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {3.0 21.0 414 ------- null} - -t 38.7878 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {3.0 21.0 414 ------- null} h -t 38.7878 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.7894 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 826 -a 0 -x {3.0 21.0 415 ------- null} + -t 38.7894 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 826 -a 0 -x {3.0 21.0 415 ------- null} - -t 38.7894 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 826 -a 0 -x {3.0 21.0 415 ------- null} h -t 38.7894 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 826 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.791 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {3.0 21.0 416 ------- null} + -t 38.791 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {3.0 21.0 416 ------- null} - -t 38.791 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {3.0 21.0 416 ------- null} h -t 38.791 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.7926 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 828 -a 0 -x {3.0 21.0 417 ------- null} + -t 38.7926 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 828 -a 0 -x {3.0 21.0 417 ------- null} - -t 38.7926 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 828 -a 0 -x {3.0 21.0 417 ------- null} h -t 38.7926 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 828 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.7942 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {3.0 21.0 418 ------- null} + -t 38.7942 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {3.0 21.0 418 ------- null} - -t 38.7942 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {3.0 21.0 418 ------- null} h -t 38.7942 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.7958 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 830 -a 0 -x {3.0 21.0 419 ------- null} + -t 38.7958 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 830 -a 0 -x {3.0 21.0 419 ------- null} - -t 38.7958 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 830 -a 0 -x {3.0 21.0 419 ------- null} h -t 38.7958 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 830 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.7974 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {3.0 21.0 420 ------- null} + -t 38.7974 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {3.0 21.0 420 ------- null} - -t 38.7974 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {3.0 21.0 420 ------- null} h -t 38.7974 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.799 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 832 -a 0 -x {3.0 21.0 421 ------- null} + -t 38.799 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 832 -a 0 -x {3.0 21.0 421 ------- null} - -t 38.799 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 832 -a 0 -x {3.0 21.0 421 ------- null} h -t 38.799 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 832 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.8006 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {3.0 21.0 422 ------- null} + -t 38.8006 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {3.0 21.0 422 ------- null} - -t 38.8006 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {3.0 21.0 422 ------- null} h -t 38.8006 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.8022 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 834 -a 0 -x {3.0 21.0 423 ------- null} + -t 38.8022 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 834 -a 0 -x {3.0 21.0 423 ------- null} - -t 38.8022 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 834 -a 0 -x {3.0 21.0 423 ------- null} h -t 38.8022 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 834 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.8038 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {3.0 21.0 424 ------- null} + -t 38.8038 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {3.0 21.0 424 ------- null} - -t 38.8038 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {3.0 21.0 424 ------- null} h -t 38.8038 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.8054 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 836 -a 0 -x {3.0 21.0 425 ------- null} + -t 38.8054 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 836 -a 0 -x {3.0 21.0 425 ------- null} - -t 38.8054 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 836 -a 0 -x {3.0 21.0 425 ------- null} h -t 38.8054 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 836 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.807 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {3.0 21.0 426 ------- null} + -t 38.807 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {3.0 21.0 426 ------- null} - -t 38.807 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {3.0 21.0 426 ------- null} h -t 38.807 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.8086 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 838 -a 0 -x {3.0 21.0 427 ------- null} + -t 38.8086 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 838 -a 0 -x {3.0 21.0 427 ------- null} - -t 38.8086 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 838 -a 0 -x {3.0 21.0 427 ------- null} h -t 38.8086 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 838 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.8102 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {3.0 21.0 428 ------- null} + -t 38.8102 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {3.0 21.0 428 ------- null} - -t 38.8102 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {3.0 21.0 428 ------- null} h -t 38.8102 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.8118 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 840 -a 0 -x {3.0 21.0 429 ------- null} + -t 38.8118 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 840 -a 0 -x {3.0 21.0 429 ------- null} - -t 38.8118 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 840 -a 0 -x {3.0 21.0 429 ------- null} h -t 38.8118 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 840 -a 0 -x {3.0 21.0 -1 ------- null} r -t 38.8134 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {3.0 21.0 430 ------- null} + -t 38.8134 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {3.0 21.0 430 ------- null} - -t 38.8134 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {3.0 21.0 430 ------- null} h -t 38.8134 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {3.0 21.0 -1 ------- null} r -t 39.1346 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 822 -a 0 -x {3.0 21.0 411 ------- null} + -t 39.1346 -s 21 -d 28 -p ack -e 40 -c 0 -i 842 -a 1 -x {21.0 3.0 411 ------- null} - -t 39.1346 -s 21 -d 28 -p ack -e 40 -c 0 -i 842 -a 1 -x {21.0 3.0 411 ------- null} h -t 39.1346 -s 21 -d 28 -p ack -e 40 -c 0 -i 842 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.1362 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {3.0 21.0 412 ------- null} + -t 39.1362 -s 21 -d 28 -p ack -e 40 -c 0 -i 843 -a 1 -x {21.0 3.0 412 ------- null} - -t 39.1362 -s 21 -d 28 -p ack -e 40 -c 0 -i 843 -a 1 -x {21.0 3.0 412 ------- null} h -t 39.1362 -s 21 -d 28 -p ack -e 40 -c 0 -i 843 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.1378 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 824 -a 0 -x {3.0 21.0 413 ------- null} + -t 39.1378 -s 21 -d 28 -p ack -e 40 -c 0 -i 844 -a 1 -x {21.0 3.0 413 ------- null} - -t 39.1378 -s 21 -d 28 -p ack -e 40 -c 0 -i 844 -a 1 -x {21.0 3.0 413 ------- null} h -t 39.1378 -s 21 -d 28 -p ack -e 40 -c 0 -i 844 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.1394 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {3.0 21.0 414 ------- null} + -t 39.1394 -s 21 -d 28 -p ack -e 40 -c 0 -i 845 -a 1 -x {21.0 3.0 414 ------- null} - -t 39.1394 -s 21 -d 28 -p ack -e 40 -c 0 -i 845 -a 1 -x {21.0 3.0 414 ------- null} h -t 39.1394 -s 21 -d 28 -p ack -e 40 -c 0 -i 845 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.141 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 826 -a 0 -x {3.0 21.0 415 ------- null} + -t 39.141 -s 21 -d 28 -p ack -e 40 -c 0 -i 846 -a 1 -x {21.0 3.0 415 ------- null} - -t 39.141 -s 21 -d 28 -p ack -e 40 -c 0 -i 846 -a 1 -x {21.0 3.0 415 ------- null} h -t 39.141 -s 21 -d 28 -p ack -e 40 -c 0 -i 846 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.1426 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {3.0 21.0 416 ------- null} + -t 39.1426 -s 21 -d 28 -p ack -e 40 -c 0 -i 847 -a 1 -x {21.0 3.0 416 ------- null} - -t 39.1426 -s 21 -d 28 -p ack -e 40 -c 0 -i 847 -a 1 -x {21.0 3.0 416 ------- null} h -t 39.1426 -s 21 -d 28 -p ack -e 40 -c 0 -i 847 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.1442 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 828 -a 0 -x {3.0 21.0 417 ------- null} + -t 39.1442 -s 21 -d 28 -p ack -e 40 -c 0 -i 848 -a 1 -x {21.0 3.0 417 ------- null} - -t 39.1442 -s 21 -d 28 -p ack -e 40 -c 0 -i 848 -a 1 -x {21.0 3.0 417 ------- null} h -t 39.1442 -s 21 -d 28 -p ack -e 40 -c 0 -i 848 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.1458 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {3.0 21.0 418 ------- null} + -t 39.1458 -s 21 -d 28 -p ack -e 40 -c 0 -i 849 -a 1 -x {21.0 3.0 418 ------- null} - -t 39.1458 -s 21 -d 28 -p ack -e 40 -c 0 -i 849 -a 1 -x {21.0 3.0 418 ------- null} h -t 39.1458 -s 21 -d 28 -p ack -e 40 -c 0 -i 849 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.1474 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 830 -a 0 -x {3.0 21.0 419 ------- null} + -t 39.1474 -s 21 -d 28 -p ack -e 40 -c 0 -i 850 -a 1 -x {21.0 3.0 419 ------- null} - -t 39.1474 -s 21 -d 28 -p ack -e 40 -c 0 -i 850 -a 1 -x {21.0 3.0 419 ------- null} h -t 39.1474 -s 21 -d 28 -p ack -e 40 -c 0 -i 850 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.149 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {3.0 21.0 420 ------- null} + -t 39.149 -s 21 -d 28 -p ack -e 40 -c 0 -i 851 -a 1 -x {21.0 3.0 420 ------- null} - -t 39.149 -s 21 -d 28 -p ack -e 40 -c 0 -i 851 -a 1 -x {21.0 3.0 420 ------- null} h -t 39.149 -s 21 -d 28 -p ack -e 40 -c 0 -i 851 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.1506 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 832 -a 0 -x {3.0 21.0 421 ------- null} + -t 39.1506 -s 21 -d 28 -p ack -e 40 -c 0 -i 852 -a 1 -x {21.0 3.0 421 ------- null} - -t 39.1506 -s 21 -d 28 -p ack -e 40 -c 0 -i 852 -a 1 -x {21.0 3.0 421 ------- null} h -t 39.1506 -s 21 -d 28 -p ack -e 40 -c 0 -i 852 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.1522 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {3.0 21.0 422 ------- null} + -t 39.1522 -s 21 -d 28 -p ack -e 40 -c 0 -i 853 -a 1 -x {21.0 3.0 422 ------- null} - -t 39.1522 -s 21 -d 28 -p ack -e 40 -c 0 -i 853 -a 1 -x {21.0 3.0 422 ------- null} h -t 39.1522 -s 21 -d 28 -p ack -e 40 -c 0 -i 853 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.1538 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 834 -a 0 -x {3.0 21.0 423 ------- null} + -t 39.1538 -s 21 -d 28 -p ack -e 40 -c 0 -i 854 -a 1 -x {21.0 3.0 423 ------- null} - -t 39.1538 -s 21 -d 28 -p ack -e 40 -c 0 -i 854 -a 1 -x {21.0 3.0 423 ------- null} h -t 39.1538 -s 21 -d 28 -p ack -e 40 -c 0 -i 854 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.1554 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {3.0 21.0 424 ------- null} + -t 39.1554 -s 21 -d 28 -p ack -e 40 -c 0 -i 855 -a 1 -x {21.0 3.0 424 ------- null} - -t 39.1554 -s 21 -d 28 -p ack -e 40 -c 0 -i 855 -a 1 -x {21.0 3.0 424 ------- null} h -t 39.1554 -s 21 -d 28 -p ack -e 40 -c 0 -i 855 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.157 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 836 -a 0 -x {3.0 21.0 425 ------- null} + -t 39.157 -s 21 -d 28 -p ack -e 40 -c 0 -i 856 -a 1 -x {21.0 3.0 425 ------- null} - -t 39.157 -s 21 -d 28 -p ack -e 40 -c 0 -i 856 -a 1 -x {21.0 3.0 425 ------- null} h -t 39.157 -s 21 -d 28 -p ack -e 40 -c 0 -i 856 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.1586 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {3.0 21.0 426 ------- null} + -t 39.1586 -s 21 -d 28 -p ack -e 40 -c 0 -i 857 -a 1 -x {21.0 3.0 426 ------- null} - -t 39.1586 -s 21 -d 28 -p ack -e 40 -c 0 -i 857 -a 1 -x {21.0 3.0 426 ------- null} h -t 39.1586 -s 21 -d 28 -p ack -e 40 -c 0 -i 857 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.1602 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 838 -a 0 -x {3.0 21.0 427 ------- null} + -t 39.1602 -s 21 -d 28 -p ack -e 40 -c 0 -i 858 -a 1 -x {21.0 3.0 427 ------- null} - -t 39.1602 -s 21 -d 28 -p ack -e 40 -c 0 -i 858 -a 1 -x {21.0 3.0 427 ------- null} h -t 39.1602 -s 21 -d 28 -p ack -e 40 -c 0 -i 858 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.1618 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {3.0 21.0 428 ------- null} + -t 39.1618 -s 21 -d 28 -p ack -e 40 -c 0 -i 859 -a 1 -x {21.0 3.0 428 ------- null} - -t 39.1618 -s 21 -d 28 -p ack -e 40 -c 0 -i 859 -a 1 -x {21.0 3.0 428 ------- null} h -t 39.1618 -s 21 -d 28 -p ack -e 40 -c 0 -i 859 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.1634 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 840 -a 0 -x {3.0 21.0 429 ------- null} + -t 39.1634 -s 21 -d 28 -p ack -e 40 -c 0 -i 860 -a 1 -x {21.0 3.0 429 ------- null} - -t 39.1634 -s 21 -d 28 -p ack -e 40 -c 0 -i 860 -a 1 -x {21.0 3.0 429 ------- null} h -t 39.1634 -s 21 -d 28 -p ack -e 40 -c 0 -i 860 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.165 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {3.0 21.0 430 ------- null} + -t 39.165 -s 21 -d 28 -p ack -e 40 -c 0 -i 861 -a 1 -x {21.0 3.0 430 ------- null} - -t 39.165 -s 21 -d 28 -p ack -e 40 -c 0 -i 861 -a 1 -x {21.0 3.0 430 ------- null} h -t 39.165 -s 21 -d 28 -p ack -e 40 -c 0 -i 861 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.4847 -s 21 -d 28 -p ack -e 40 -c 0 -i 842 -a 1 -x {21.0 3.0 411 ------- null} + -t 39.4847 -s 28 -d 1 -p ack -e 40 -c 0 -i 842 -a 1 -x {21.0 3.0 411 ------- null} - -t 39.4847 -s 28 -d 1 -p ack -e 40 -c 0 -i 842 -a 1 -x {21.0 3.0 411 ------- null} h -t 39.4847 -s 28 -d 1 -p ack -e 40 -c 0 -i 842 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.4863 -s 21 -d 28 -p ack -e 40 -c 0 -i 843 -a 1 -x {21.0 3.0 412 ------- null} + -t 39.4863 -s 28 -d 1 -p ack -e 40 -c 0 -i 843 -a 1 -x {21.0 3.0 412 ------- null} - -t 39.4863 -s 28 -d 1 -p ack -e 40 -c 0 -i 843 -a 1 -x {21.0 3.0 412 ------- null} h -t 39.4863 -s 28 -d 1 -p ack -e 40 -c 0 -i 843 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.4879 -s 21 -d 28 -p ack -e 40 -c 0 -i 844 -a 1 -x {21.0 3.0 413 ------- null} + -t 39.4879 -s 28 -d 1 -p ack -e 40 -c 0 -i 844 -a 1 -x {21.0 3.0 413 ------- null} - -t 39.4879 -s 28 -d 1 -p ack -e 40 -c 0 -i 844 -a 1 -x {21.0 3.0 413 ------- null} h -t 39.4879 -s 28 -d 1 -p ack -e 40 -c 0 -i 844 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.4895 -s 21 -d 28 -p ack -e 40 -c 0 -i 845 -a 1 -x {21.0 3.0 414 ------- null} + -t 39.4895 -s 28 -d 1 -p ack -e 40 -c 0 -i 845 -a 1 -x {21.0 3.0 414 ------- null} - -t 39.4895 -s 28 -d 1 -p ack -e 40 -c 0 -i 845 -a 1 -x {21.0 3.0 414 ------- null} h -t 39.4895 -s 28 -d 1 -p ack -e 40 -c 0 -i 845 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.4911 -s 21 -d 28 -p ack -e 40 -c 0 -i 846 -a 1 -x {21.0 3.0 415 ------- null} + -t 39.4911 -s 28 -d 1 -p ack -e 40 -c 0 -i 846 -a 1 -x {21.0 3.0 415 ------- null} - -t 39.4911 -s 28 -d 1 -p ack -e 40 -c 0 -i 846 -a 1 -x {21.0 3.0 415 ------- null} h -t 39.4911 -s 28 -d 1 -p ack -e 40 -c 0 -i 846 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.4927 -s 21 -d 28 -p ack -e 40 -c 0 -i 847 -a 1 -x {21.0 3.0 416 ------- null} + -t 39.4927 -s 28 -d 1 -p ack -e 40 -c 0 -i 847 -a 1 -x {21.0 3.0 416 ------- null} - -t 39.4927 -s 28 -d 1 -p ack -e 40 -c 0 -i 847 -a 1 -x {21.0 3.0 416 ------- null} h -t 39.4927 -s 28 -d 1 -p ack -e 40 -c 0 -i 847 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.4943 -s 21 -d 28 -p ack -e 40 -c 0 -i 848 -a 1 -x {21.0 3.0 417 ------- null} + -t 39.4943 -s 28 -d 1 -p ack -e 40 -c 0 -i 848 -a 1 -x {21.0 3.0 417 ------- null} - -t 39.4943 -s 28 -d 1 -p ack -e 40 -c 0 -i 848 -a 1 -x {21.0 3.0 417 ------- null} h -t 39.4943 -s 28 -d 1 -p ack -e 40 -c 0 -i 848 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.4959 -s 21 -d 28 -p ack -e 40 -c 0 -i 849 -a 1 -x {21.0 3.0 418 ------- null} + -t 39.4959 -s 28 -d 1 -p ack -e 40 -c 0 -i 849 -a 1 -x {21.0 3.0 418 ------- null} - -t 39.4959 -s 28 -d 1 -p ack -e 40 -c 0 -i 849 -a 1 -x {21.0 3.0 418 ------- null} h -t 39.4959 -s 28 -d 1 -p ack -e 40 -c 0 -i 849 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.4975 -s 21 -d 28 -p ack -e 40 -c 0 -i 850 -a 1 -x {21.0 3.0 419 ------- null} + -t 39.4975 -s 28 -d 1 -p ack -e 40 -c 0 -i 850 -a 1 -x {21.0 3.0 419 ------- null} - -t 39.4975 -s 28 -d 1 -p ack -e 40 -c 0 -i 850 -a 1 -x {21.0 3.0 419 ------- null} h -t 39.4975 -s 28 -d 1 -p ack -e 40 -c 0 -i 850 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.4991 -s 21 -d 28 -p ack -e 40 -c 0 -i 851 -a 1 -x {21.0 3.0 420 ------- null} + -t 39.4991 -s 28 -d 1 -p ack -e 40 -c 0 -i 851 -a 1 -x {21.0 3.0 420 ------- null} - -t 39.4991 -s 28 -d 1 -p ack -e 40 -c 0 -i 851 -a 1 -x {21.0 3.0 420 ------- null} h -t 39.4991 -s 28 -d 1 -p ack -e 40 -c 0 -i 851 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.5007 -s 21 -d 28 -p ack -e 40 -c 0 -i 852 -a 1 -x {21.0 3.0 421 ------- null} + -t 39.5007 -s 28 -d 1 -p ack -e 40 -c 0 -i 852 -a 1 -x {21.0 3.0 421 ------- null} - -t 39.5007 -s 28 -d 1 -p ack -e 40 -c 0 -i 852 -a 1 -x {21.0 3.0 421 ------- null} h -t 39.5007 -s 28 -d 1 -p ack -e 40 -c 0 -i 852 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.5023 -s 21 -d 28 -p ack -e 40 -c 0 -i 853 -a 1 -x {21.0 3.0 422 ------- null} + -t 39.5023 -s 28 -d 1 -p ack -e 40 -c 0 -i 853 -a 1 -x {21.0 3.0 422 ------- null} - -t 39.5023 -s 28 -d 1 -p ack -e 40 -c 0 -i 853 -a 1 -x {21.0 3.0 422 ------- null} h -t 39.5023 -s 28 -d 1 -p ack -e 40 -c 0 -i 853 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.5039 -s 21 -d 28 -p ack -e 40 -c 0 -i 854 -a 1 -x {21.0 3.0 423 ------- null} + -t 39.5039 -s 28 -d 1 -p ack -e 40 -c 0 -i 854 -a 1 -x {21.0 3.0 423 ------- null} - -t 39.5039 -s 28 -d 1 -p ack -e 40 -c 0 -i 854 -a 1 -x {21.0 3.0 423 ------- null} h -t 39.5039 -s 28 -d 1 -p ack -e 40 -c 0 -i 854 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.5055 -s 21 -d 28 -p ack -e 40 -c 0 -i 855 -a 1 -x {21.0 3.0 424 ------- null} + -t 39.5055 -s 28 -d 1 -p ack -e 40 -c 0 -i 855 -a 1 -x {21.0 3.0 424 ------- null} - -t 39.5055 -s 28 -d 1 -p ack -e 40 -c 0 -i 855 -a 1 -x {21.0 3.0 424 ------- null} h -t 39.5055 -s 28 -d 1 -p ack -e 40 -c 0 -i 855 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.5071 -s 21 -d 28 -p ack -e 40 -c 0 -i 856 -a 1 -x {21.0 3.0 425 ------- null} + -t 39.5071 -s 28 -d 1 -p ack -e 40 -c 0 -i 856 -a 1 -x {21.0 3.0 425 ------- null} - -t 39.5071 -s 28 -d 1 -p ack -e 40 -c 0 -i 856 -a 1 -x {21.0 3.0 425 ------- null} h -t 39.5071 -s 28 -d 1 -p ack -e 40 -c 0 -i 856 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.5087 -s 21 -d 28 -p ack -e 40 -c 0 -i 857 -a 1 -x {21.0 3.0 426 ------- null} + -t 39.5087 -s 28 -d 1 -p ack -e 40 -c 0 -i 857 -a 1 -x {21.0 3.0 426 ------- null} - -t 39.5087 -s 28 -d 1 -p ack -e 40 -c 0 -i 857 -a 1 -x {21.0 3.0 426 ------- null} h -t 39.5087 -s 28 -d 1 -p ack -e 40 -c 0 -i 857 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.5103 -s 21 -d 28 -p ack -e 40 -c 0 -i 858 -a 1 -x {21.0 3.0 427 ------- null} + -t 39.5103 -s 28 -d 1 -p ack -e 40 -c 0 -i 858 -a 1 -x {21.0 3.0 427 ------- null} - -t 39.5103 -s 28 -d 1 -p ack -e 40 -c 0 -i 858 -a 1 -x {21.0 3.0 427 ------- null} h -t 39.5103 -s 28 -d 1 -p ack -e 40 -c 0 -i 858 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.5119 -s 21 -d 28 -p ack -e 40 -c 0 -i 859 -a 1 -x {21.0 3.0 428 ------- null} + -t 39.5119 -s 28 -d 1 -p ack -e 40 -c 0 -i 859 -a 1 -x {21.0 3.0 428 ------- null} - -t 39.5119 -s 28 -d 1 -p ack -e 40 -c 0 -i 859 -a 1 -x {21.0 3.0 428 ------- null} h -t 39.5119 -s 28 -d 1 -p ack -e 40 -c 0 -i 859 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.5135 -s 21 -d 28 -p ack -e 40 -c 0 -i 860 -a 1 -x {21.0 3.0 429 ------- null} + -t 39.5135 -s 28 -d 1 -p ack -e 40 -c 0 -i 860 -a 1 -x {21.0 3.0 429 ------- null} - -t 39.5135 -s 28 -d 1 -p ack -e 40 -c 0 -i 860 -a 1 -x {21.0 3.0 429 ------- null} h -t 39.5135 -s 28 -d 1 -p ack -e 40 -c 0 -i 860 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.5151 -s 21 -d 28 -p ack -e 40 -c 0 -i 861 -a 1 -x {21.0 3.0 430 ------- null} + -t 39.5151 -s 28 -d 1 -p ack -e 40 -c 0 -i 861 -a 1 -x {21.0 3.0 430 ------- null} - -t 39.5151 -s 28 -d 1 -p ack -e 40 -c 0 -i 861 -a 1 -x {21.0 3.0 430 ------- null} h -t 39.5151 -s 28 -d 1 -p ack -e 40 -c 0 -i 861 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.7847 -s 28 -d 1 -p ack -e 40 -c 0 -i 842 -a 1 -x {21.0 3.0 411 ------- null} + -t 39.7847 -s 1 -d 3 -p ack -e 40 -c 0 -i 842 -a 1 -x {21.0 3.0 411 ------- null} - -t 39.7847 -s 1 -d 3 -p ack -e 40 -c 0 -i 842 -a 1 -x {21.0 3.0 411 ------- null} h -t 39.7847 -s 1 -d 3 -p ack -e 40 -c 0 -i 842 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.7863 -s 28 -d 1 -p ack -e 40 -c 0 -i 843 -a 1 -x {21.0 3.0 412 ------- null} + -t 39.7863 -s 1 -d 3 -p ack -e 40 -c 0 -i 843 -a 1 -x {21.0 3.0 412 ------- null} - -t 39.7863 -s 1 -d 3 -p ack -e 40 -c 0 -i 843 -a 1 -x {21.0 3.0 412 ------- null} h -t 39.7863 -s 1 -d 3 -p ack -e 40 -c 0 -i 843 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.7879 -s 28 -d 1 -p ack -e 40 -c 0 -i 844 -a 1 -x {21.0 3.0 413 ------- null} + -t 39.7879 -s 1 -d 3 -p ack -e 40 -c 0 -i 844 -a 1 -x {21.0 3.0 413 ------- null} - -t 39.7879 -s 1 -d 3 -p ack -e 40 -c 0 -i 844 -a 1 -x {21.0 3.0 413 ------- null} h -t 39.7879 -s 1 -d 3 -p ack -e 40 -c 0 -i 844 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.7895 -s 28 -d 1 -p ack -e 40 -c 0 -i 845 -a 1 -x {21.0 3.0 414 ------- null} + -t 39.7895 -s 1 -d 3 -p ack -e 40 -c 0 -i 845 -a 1 -x {21.0 3.0 414 ------- null} - -t 39.7895 -s 1 -d 3 -p ack -e 40 -c 0 -i 845 -a 1 -x {21.0 3.0 414 ------- null} h -t 39.7895 -s 1 -d 3 -p ack -e 40 -c 0 -i 845 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.7911 -s 28 -d 1 -p ack -e 40 -c 0 -i 846 -a 1 -x {21.0 3.0 415 ------- null} + -t 39.7911 -s 1 -d 3 -p ack -e 40 -c 0 -i 846 -a 1 -x {21.0 3.0 415 ------- null} - -t 39.7911 -s 1 -d 3 -p ack -e 40 -c 0 -i 846 -a 1 -x {21.0 3.0 415 ------- null} h -t 39.7911 -s 1 -d 3 -p ack -e 40 -c 0 -i 846 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.7927 -s 28 -d 1 -p ack -e 40 -c 0 -i 847 -a 1 -x {21.0 3.0 416 ------- null} + -t 39.7927 -s 1 -d 3 -p ack -e 40 -c 0 -i 847 -a 1 -x {21.0 3.0 416 ------- null} - -t 39.7927 -s 1 -d 3 -p ack -e 40 -c 0 -i 847 -a 1 -x {21.0 3.0 416 ------- null} h -t 39.7927 -s 1 -d 3 -p ack -e 40 -c 0 -i 847 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.7943 -s 28 -d 1 -p ack -e 40 -c 0 -i 848 -a 1 -x {21.0 3.0 417 ------- null} + -t 39.7943 -s 1 -d 3 -p ack -e 40 -c 0 -i 848 -a 1 -x {21.0 3.0 417 ------- null} - -t 39.7943 -s 1 -d 3 -p ack -e 40 -c 0 -i 848 -a 1 -x {21.0 3.0 417 ------- null} h -t 39.7943 -s 1 -d 3 -p ack -e 40 -c 0 -i 848 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.7959 -s 28 -d 1 -p ack -e 40 -c 0 -i 849 -a 1 -x {21.0 3.0 418 ------- null} + -t 39.7959 -s 1 -d 3 -p ack -e 40 -c 0 -i 849 -a 1 -x {21.0 3.0 418 ------- null} - -t 39.7959 -s 1 -d 3 -p ack -e 40 -c 0 -i 849 -a 1 -x {21.0 3.0 418 ------- null} h -t 39.7959 -s 1 -d 3 -p ack -e 40 -c 0 -i 849 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.7975 -s 28 -d 1 -p ack -e 40 -c 0 -i 850 -a 1 -x {21.0 3.0 419 ------- null} + -t 39.7975 -s 1 -d 3 -p ack -e 40 -c 0 -i 850 -a 1 -x {21.0 3.0 419 ------- null} - -t 39.7975 -s 1 -d 3 -p ack -e 40 -c 0 -i 850 -a 1 -x {21.0 3.0 419 ------- null} h -t 39.7975 -s 1 -d 3 -p ack -e 40 -c 0 -i 850 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.7991 -s 28 -d 1 -p ack -e 40 -c 0 -i 851 -a 1 -x {21.0 3.0 420 ------- null} + -t 39.7991 -s 1 -d 3 -p ack -e 40 -c 0 -i 851 -a 1 -x {21.0 3.0 420 ------- null} - -t 39.7991 -s 1 -d 3 -p ack -e 40 -c 0 -i 851 -a 1 -x {21.0 3.0 420 ------- null} h -t 39.7991 -s 1 -d 3 -p ack -e 40 -c 0 -i 851 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.8007 -s 28 -d 1 -p ack -e 40 -c 0 -i 852 -a 1 -x {21.0 3.0 421 ------- null} + -t 39.8007 -s 1 -d 3 -p ack -e 40 -c 0 -i 852 -a 1 -x {21.0 3.0 421 ------- null} - -t 39.8007 -s 1 -d 3 -p ack -e 40 -c 0 -i 852 -a 1 -x {21.0 3.0 421 ------- null} h -t 39.8007 -s 1 -d 3 -p ack -e 40 -c 0 -i 852 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.8023 -s 28 -d 1 -p ack -e 40 -c 0 -i 853 -a 1 -x {21.0 3.0 422 ------- null} + -t 39.8023 -s 1 -d 3 -p ack -e 40 -c 0 -i 853 -a 1 -x {21.0 3.0 422 ------- null} - -t 39.8023 -s 1 -d 3 -p ack -e 40 -c 0 -i 853 -a 1 -x {21.0 3.0 422 ------- null} h -t 39.8023 -s 1 -d 3 -p ack -e 40 -c 0 -i 853 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.8039 -s 28 -d 1 -p ack -e 40 -c 0 -i 854 -a 1 -x {21.0 3.0 423 ------- null} + -t 39.8039 -s 1 -d 3 -p ack -e 40 -c 0 -i 854 -a 1 -x {21.0 3.0 423 ------- null} - -t 39.8039 -s 1 -d 3 -p ack -e 40 -c 0 -i 854 -a 1 -x {21.0 3.0 423 ------- null} h -t 39.8039 -s 1 -d 3 -p ack -e 40 -c 0 -i 854 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.8055 -s 28 -d 1 -p ack -e 40 -c 0 -i 855 -a 1 -x {21.0 3.0 424 ------- null} + -t 39.8055 -s 1 -d 3 -p ack -e 40 -c 0 -i 855 -a 1 -x {21.0 3.0 424 ------- null} - -t 39.8055 -s 1 -d 3 -p ack -e 40 -c 0 -i 855 -a 1 -x {21.0 3.0 424 ------- null} h -t 39.8055 -s 1 -d 3 -p ack -e 40 -c 0 -i 855 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.8071 -s 28 -d 1 -p ack -e 40 -c 0 -i 856 -a 1 -x {21.0 3.0 425 ------- null} + -t 39.8071 -s 1 -d 3 -p ack -e 40 -c 0 -i 856 -a 1 -x {21.0 3.0 425 ------- null} - -t 39.8071 -s 1 -d 3 -p ack -e 40 -c 0 -i 856 -a 1 -x {21.0 3.0 425 ------- null} h -t 39.8071 -s 1 -d 3 -p ack -e 40 -c 0 -i 856 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.8087 -s 28 -d 1 -p ack -e 40 -c 0 -i 857 -a 1 -x {21.0 3.0 426 ------- null} + -t 39.8087 -s 1 -d 3 -p ack -e 40 -c 0 -i 857 -a 1 -x {21.0 3.0 426 ------- null} - -t 39.8087 -s 1 -d 3 -p ack -e 40 -c 0 -i 857 -a 1 -x {21.0 3.0 426 ------- null} h -t 39.8087 -s 1 -d 3 -p ack -e 40 -c 0 -i 857 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.8103 -s 28 -d 1 -p ack -e 40 -c 0 -i 858 -a 1 -x {21.0 3.0 427 ------- null} + -t 39.8103 -s 1 -d 3 -p ack -e 40 -c 0 -i 858 -a 1 -x {21.0 3.0 427 ------- null} - -t 39.8103 -s 1 -d 3 -p ack -e 40 -c 0 -i 858 -a 1 -x {21.0 3.0 427 ------- null} h -t 39.8103 -s 1 -d 3 -p ack -e 40 -c 0 -i 858 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.8119 -s 28 -d 1 -p ack -e 40 -c 0 -i 859 -a 1 -x {21.0 3.0 428 ------- null} + -t 39.8119 -s 1 -d 3 -p ack -e 40 -c 0 -i 859 -a 1 -x {21.0 3.0 428 ------- null} - -t 39.8119 -s 1 -d 3 -p ack -e 40 -c 0 -i 859 -a 1 -x {21.0 3.0 428 ------- null} h -t 39.8119 -s 1 -d 3 -p ack -e 40 -c 0 -i 859 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.8135 -s 28 -d 1 -p ack -e 40 -c 0 -i 860 -a 1 -x {21.0 3.0 429 ------- null} + -t 39.8135 -s 1 -d 3 -p ack -e 40 -c 0 -i 860 -a 1 -x {21.0 3.0 429 ------- null} - -t 39.8135 -s 1 -d 3 -p ack -e 40 -c 0 -i 860 -a 1 -x {21.0 3.0 429 ------- null} h -t 39.8135 -s 1 -d 3 -p ack -e 40 -c 0 -i 860 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.8151 -s 28 -d 1 -p ack -e 40 -c 0 -i 861 -a 1 -x {21.0 3.0 430 ------- null} + -t 39.8151 -s 1 -d 3 -p ack -e 40 -c 0 -i 861 -a 1 -x {21.0 3.0 430 ------- null} - -t 39.8151 -s 1 -d 3 -p ack -e 40 -c 0 -i 861 -a 1 -x {21.0 3.0 430 ------- null} h -t 39.8151 -s 1 -d 3 -p ack -e 40 -c 0 -i 861 -a 1 -x {21.0 3.0 -1 ------- null} r -t 39.9248 -s 1 -d 3 -p ack -e 40 -c 0 -i 842 -a 1 -x {21.0 3.0 411 ------- null} + -t 39.9248 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 862 -a 0 -x {3.0 21.0 431 ------- null} - -t 39.9248 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 862 -a 0 -x {3.0 21.0 431 ------- null} h -t 39.9248 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 862 -a 0 -x {3.0 21.0 -1 ------- null} r -t 39.9264 -s 1 -d 3 -p ack -e 40 -c 0 -i 843 -a 1 -x {21.0 3.0 412 ------- null} + -t 39.9264 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {3.0 21.0 432 ------- null} - -t 39.9264 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {3.0 21.0 432 ------- null} h -t 39.9264 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {3.0 21.0 -1 ------- null} r -t 39.928 -s 1 -d 3 -p ack -e 40 -c 0 -i 844 -a 1 -x {21.0 3.0 413 ------- null} + -t 39.928 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 864 -a 0 -x {3.0 21.0 433 ------- null} - -t 39.928 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 864 -a 0 -x {3.0 21.0 433 ------- null} h -t 39.928 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 864 -a 0 -x {3.0 21.0 -1 ------- null} r -t 39.9296 -s 1 -d 3 -p ack -e 40 -c 0 -i 845 -a 1 -x {21.0 3.0 414 ------- null} + -t 39.9296 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {3.0 21.0 434 ------- null} - -t 39.9296 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {3.0 21.0 434 ------- null} h -t 39.9296 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {3.0 21.0 -1 ------- null} r -t 39.9312 -s 1 -d 3 -p ack -e 40 -c 0 -i 846 -a 1 -x {21.0 3.0 415 ------- null} + -t 39.9312 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 866 -a 0 -x {3.0 21.0 435 ------- null} - -t 39.9312 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 866 -a 0 -x {3.0 21.0 435 ------- null} h -t 39.9312 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 866 -a 0 -x {3.0 21.0 -1 ------- null} r -t 39.9328 -s 1 -d 3 -p ack -e 40 -c 0 -i 847 -a 1 -x {21.0 3.0 416 ------- null} + -t 39.9328 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {3.0 21.0 436 ------- null} - -t 39.9328 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {3.0 21.0 436 ------- null} h -t 39.9328 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {3.0 21.0 -1 ------- null} r -t 39.9344 -s 1 -d 3 -p ack -e 40 -c 0 -i 848 -a 1 -x {21.0 3.0 417 ------- null} + -t 39.9344 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 868 -a 0 -x {3.0 21.0 437 ------- null} - -t 39.9344 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 868 -a 0 -x {3.0 21.0 437 ------- null} h -t 39.9344 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 868 -a 0 -x {3.0 21.0 -1 ------- null} r -t 39.936 -s 1 -d 3 -p ack -e 40 -c 0 -i 849 -a 1 -x {21.0 3.0 418 ------- null} + -t 39.936 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {3.0 21.0 438 ------- null} - -t 39.936 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {3.0 21.0 438 ------- null} h -t 39.936 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {3.0 21.0 -1 ------- null} r -t 39.9376 -s 1 -d 3 -p ack -e 40 -c 0 -i 850 -a 1 -x {21.0 3.0 419 ------- null} + -t 39.9376 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 870 -a 0 -x {3.0 21.0 439 ------- null} - -t 39.9376 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 870 -a 0 -x {3.0 21.0 439 ------- null} h -t 39.9376 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 870 -a 0 -x {3.0 21.0 -1 ------- null} r -t 39.9392 -s 1 -d 3 -p ack -e 40 -c 0 -i 851 -a 1 -x {21.0 3.0 420 ------- null} + -t 39.9392 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {3.0 21.0 440 ------- null} - -t 39.9392 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {3.0 21.0 440 ------- null} h -t 39.9392 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {3.0 21.0 -1 ------- null} r -t 39.9408 -s 1 -d 3 -p ack -e 40 -c 0 -i 852 -a 1 -x {21.0 3.0 421 ------- null} + -t 39.9408 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 872 -a 0 -x {3.0 21.0 441 ------- null} - -t 39.9408 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 872 -a 0 -x {3.0 21.0 441 ------- null} h -t 39.9408 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 872 -a 0 -x {3.0 21.0 -1 ------- null} r -t 39.9424 -s 1 -d 3 -p ack -e 40 -c 0 -i 853 -a 1 -x {21.0 3.0 422 ------- null} + -t 39.9424 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {3.0 21.0 442 ------- null} - -t 39.9424 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {3.0 21.0 442 ------- null} h -t 39.9424 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {3.0 21.0 -1 ------- null} r -t 39.944 -s 1 -d 3 -p ack -e 40 -c 0 -i 854 -a 1 -x {21.0 3.0 423 ------- null} + -t 39.944 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 874 -a 0 -x {3.0 21.0 443 ------- null} - -t 39.944 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 874 -a 0 -x {3.0 21.0 443 ------- null} h -t 39.944 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 874 -a 0 -x {3.0 21.0 -1 ------- null} r -t 39.9456 -s 1 -d 3 -p ack -e 40 -c 0 -i 855 -a 1 -x {21.0 3.0 424 ------- null} + -t 39.9456 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {3.0 21.0 444 ------- null} - -t 39.9456 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {3.0 21.0 444 ------- null} h -t 39.9456 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {3.0 21.0 -1 ------- null} r -t 39.9472 -s 1 -d 3 -p ack -e 40 -c 0 -i 856 -a 1 -x {21.0 3.0 425 ------- null} + -t 39.9472 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 876 -a 0 -x {3.0 21.0 445 ------- null} - -t 39.9472 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 876 -a 0 -x {3.0 21.0 445 ------- null} h -t 39.9472 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 876 -a 0 -x {3.0 21.0 -1 ------- null} r -t 39.9488 -s 1 -d 3 -p ack -e 40 -c 0 -i 857 -a 1 -x {21.0 3.0 426 ------- null} + -t 39.9488 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {3.0 21.0 446 ------- null} - -t 39.9488 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {3.0 21.0 446 ------- null} h -t 39.9488 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {3.0 21.0 -1 ------- null} r -t 39.9504 -s 1 -d 3 -p ack -e 40 -c 0 -i 858 -a 1 -x {21.0 3.0 427 ------- null} + -t 39.9504 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 878 -a 0 -x {3.0 21.0 447 ------- null} - -t 39.9504 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 878 -a 0 -x {3.0 21.0 447 ------- null} h -t 39.9504 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 878 -a 0 -x {3.0 21.0 -1 ------- null} r -t 39.952 -s 1 -d 3 -p ack -e 40 -c 0 -i 859 -a 1 -x {21.0 3.0 428 ------- null} + -t 39.952 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {3.0 21.0 448 ------- null} - -t 39.952 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {3.0 21.0 448 ------- null} h -t 39.952 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {3.0 21.0 -1 ------- null} r -t 39.9536 -s 1 -d 3 -p ack -e 40 -c 0 -i 860 -a 1 -x {21.0 3.0 429 ------- null} + -t 39.9536 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 880 -a 0 -x {3.0 21.0 449 ------- null} - -t 39.9536 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 880 -a 0 -x {3.0 21.0 449 ------- null} h -t 39.9536 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 880 -a 0 -x {3.0 21.0 -1 ------- null} r -t 39.9552 -s 1 -d 3 -p ack -e 40 -c 0 -i 861 -a 1 -x {21.0 3.0 430 ------- null} + -t 39.9552 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {3.0 21.0 450 ------- null} - -t 39.9552 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {3.0 21.0 450 ------- null} h -t 39.9552 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.0664 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 862 -a 0 -x {3.0 21.0 431 ------- null} + -t 40.0664 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 862 -a 0 -x {3.0 21.0 431 ------- null} - -t 40.0664 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 862 -a 0 -x {3.0 21.0 431 ------- null} h -t 40.0664 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 862 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.068 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {3.0 21.0 432 ------- null} + -t 40.068 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {3.0 21.0 432 ------- null} - -t 40.068 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {3.0 21.0 432 ------- null} h -t 40.068 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.0696 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 864 -a 0 -x {3.0 21.0 433 ------- null} + -t 40.0696 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 864 -a 0 -x {3.0 21.0 433 ------- null} - -t 40.0696 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 864 -a 0 -x {3.0 21.0 433 ------- null} h -t 40.0696 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 864 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.0712 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {3.0 21.0 434 ------- null} + -t 40.0712 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {3.0 21.0 434 ------- null} - -t 40.0712 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {3.0 21.0 434 ------- null} h -t 40.0712 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.0728 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 866 -a 0 -x {3.0 21.0 435 ------- null} + -t 40.0728 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 866 -a 0 -x {3.0 21.0 435 ------- null} - -t 40.0728 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 866 -a 0 -x {3.0 21.0 435 ------- null} h -t 40.0728 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 866 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.0744 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {3.0 21.0 436 ------- null} + -t 40.0744 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {3.0 21.0 436 ------- null} - -t 40.0744 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {3.0 21.0 436 ------- null} h -t 40.0744 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.076 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 868 -a 0 -x {3.0 21.0 437 ------- null} + -t 40.076 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 868 -a 0 -x {3.0 21.0 437 ------- null} - -t 40.076 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 868 -a 0 -x {3.0 21.0 437 ------- null} h -t 40.076 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 868 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.0776 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {3.0 21.0 438 ------- null} + -t 40.0776 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {3.0 21.0 438 ------- null} - -t 40.0776 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {3.0 21.0 438 ------- null} h -t 40.0776 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.0792 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 870 -a 0 -x {3.0 21.0 439 ------- null} + -t 40.0792 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 870 -a 0 -x {3.0 21.0 439 ------- null} - -t 40.0792 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 870 -a 0 -x {3.0 21.0 439 ------- null} h -t 40.0792 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 870 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.0808 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {3.0 21.0 440 ------- null} + -t 40.0808 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {3.0 21.0 440 ------- null} - -t 40.0808 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {3.0 21.0 440 ------- null} h -t 40.0808 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.0824 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 872 -a 0 -x {3.0 21.0 441 ------- null} + -t 40.0824 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 872 -a 0 -x {3.0 21.0 441 ------- null} - -t 40.0824 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 872 -a 0 -x {3.0 21.0 441 ------- null} h -t 40.0824 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 872 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.084 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {3.0 21.0 442 ------- null} + -t 40.084 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {3.0 21.0 442 ------- null} - -t 40.084 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {3.0 21.0 442 ------- null} h -t 40.084 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.0856 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 874 -a 0 -x {3.0 21.0 443 ------- null} + -t 40.0856 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 874 -a 0 -x {3.0 21.0 443 ------- null} - -t 40.0856 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 874 -a 0 -x {3.0 21.0 443 ------- null} h -t 40.0856 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 874 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.0872 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {3.0 21.0 444 ------- null} + -t 40.0872 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {3.0 21.0 444 ------- null} - -t 40.0872 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {3.0 21.0 444 ------- null} h -t 40.0872 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.0888 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 876 -a 0 -x {3.0 21.0 445 ------- null} + -t 40.0888 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 876 -a 0 -x {3.0 21.0 445 ------- null} - -t 40.0888 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 876 -a 0 -x {3.0 21.0 445 ------- null} h -t 40.0888 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 876 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.0904 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {3.0 21.0 446 ------- null} + -t 40.0904 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {3.0 21.0 446 ------- null} - -t 40.0904 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {3.0 21.0 446 ------- null} h -t 40.0904 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.092 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 878 -a 0 -x {3.0 21.0 447 ------- null} + -t 40.092 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 878 -a 0 -x {3.0 21.0 447 ------- null} - -t 40.092 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 878 -a 0 -x {3.0 21.0 447 ------- null} h -t 40.092 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 878 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.0936 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {3.0 21.0 448 ------- null} + -t 40.0936 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {3.0 21.0 448 ------- null} - -t 40.0936 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {3.0 21.0 448 ------- null} h -t 40.0936 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.0952 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 880 -a 0 -x {3.0 21.0 449 ------- null} + -t 40.0952 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 880 -a 0 -x {3.0 21.0 449 ------- null} - -t 40.0952 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 880 -a 0 -x {3.0 21.0 449 ------- null} h -t 40.0952 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 880 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.0968 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {3.0 21.0 450 ------- null} + -t 40.0968 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {3.0 21.0 450 ------- null} - -t 40.0968 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {3.0 21.0 450 ------- null} h -t 40.0968 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.368 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 862 -a 0 -x {3.0 21.0 431 ------- null} + -t 40.368 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 862 -a 0 -x {3.0 21.0 431 ------- null} - -t 40.368 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 862 -a 0 -x {3.0 21.0 431 ------- null} h -t 40.368 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 862 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.3696 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {3.0 21.0 432 ------- null} + -t 40.3696 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {3.0 21.0 432 ------- null} - -t 40.3696 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {3.0 21.0 432 ------- null} h -t 40.3696 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.3712 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 864 -a 0 -x {3.0 21.0 433 ------- null} + -t 40.3712 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 864 -a 0 -x {3.0 21.0 433 ------- null} - -t 40.3712 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 864 -a 0 -x {3.0 21.0 433 ------- null} h -t 40.3712 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 864 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.3728 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {3.0 21.0 434 ------- null} + -t 40.3728 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {3.0 21.0 434 ------- null} - -t 40.3728 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {3.0 21.0 434 ------- null} h -t 40.3728 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.3744 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 866 -a 0 -x {3.0 21.0 435 ------- null} + -t 40.3744 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 866 -a 0 -x {3.0 21.0 435 ------- null} - -t 40.3744 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 866 -a 0 -x {3.0 21.0 435 ------- null} h -t 40.3744 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 866 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.376 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {3.0 21.0 436 ------- null} + -t 40.376 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {3.0 21.0 436 ------- null} - -t 40.376 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {3.0 21.0 436 ------- null} h -t 40.376 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.3776 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 868 -a 0 -x {3.0 21.0 437 ------- null} + -t 40.3776 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 868 -a 0 -x {3.0 21.0 437 ------- null} - -t 40.3776 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 868 -a 0 -x {3.0 21.0 437 ------- null} h -t 40.3776 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 868 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.3792 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {3.0 21.0 438 ------- null} + -t 40.3792 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {3.0 21.0 438 ------- null} - -t 40.3792 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {3.0 21.0 438 ------- null} h -t 40.3792 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.3808 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 870 -a 0 -x {3.0 21.0 439 ------- null} + -t 40.3808 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 870 -a 0 -x {3.0 21.0 439 ------- null} - -t 40.3808 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 870 -a 0 -x {3.0 21.0 439 ------- null} h -t 40.3808 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 870 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.3824 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {3.0 21.0 440 ------- null} + -t 40.3824 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {3.0 21.0 440 ------- null} - -t 40.3824 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {3.0 21.0 440 ------- null} h -t 40.3824 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.384 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 872 -a 0 -x {3.0 21.0 441 ------- null} + -t 40.384 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 872 -a 0 -x {3.0 21.0 441 ------- null} - -t 40.384 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 872 -a 0 -x {3.0 21.0 441 ------- null} h -t 40.384 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 872 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.3856 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {3.0 21.0 442 ------- null} + -t 40.3856 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {3.0 21.0 442 ------- null} - -t 40.3856 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {3.0 21.0 442 ------- null} h -t 40.3856 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.3872 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 874 -a 0 -x {3.0 21.0 443 ------- null} + -t 40.3872 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 874 -a 0 -x {3.0 21.0 443 ------- null} - -t 40.3872 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 874 -a 0 -x {3.0 21.0 443 ------- null} h -t 40.3872 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 874 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.3888 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {3.0 21.0 444 ------- null} + -t 40.3888 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {3.0 21.0 444 ------- null} - -t 40.3888 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {3.0 21.0 444 ------- null} h -t 40.3888 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.3904 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 876 -a 0 -x {3.0 21.0 445 ------- null} + -t 40.3904 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 876 -a 0 -x {3.0 21.0 445 ------- null} - -t 40.3904 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 876 -a 0 -x {3.0 21.0 445 ------- null} h -t 40.3904 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 876 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.392 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {3.0 21.0 446 ------- null} + -t 40.392 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {3.0 21.0 446 ------- null} - -t 40.392 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {3.0 21.0 446 ------- null} h -t 40.392 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.3936 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 878 -a 0 -x {3.0 21.0 447 ------- null} + -t 40.3936 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 878 -a 0 -x {3.0 21.0 447 ------- null} - -t 40.3936 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 878 -a 0 -x {3.0 21.0 447 ------- null} h -t 40.3936 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 878 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.3952 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {3.0 21.0 448 ------- null} + -t 40.3952 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {3.0 21.0 448 ------- null} - -t 40.3952 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {3.0 21.0 448 ------- null} h -t 40.3952 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.3968 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 880 -a 0 -x {3.0 21.0 449 ------- null} + -t 40.3968 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 880 -a 0 -x {3.0 21.0 449 ------- null} - -t 40.3968 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 880 -a 0 -x {3.0 21.0 449 ------- null} h -t 40.3968 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 880 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.3984 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {3.0 21.0 450 ------- null} + -t 40.3984 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {3.0 21.0 450 ------- null} - -t 40.3984 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {3.0 21.0 450 ------- null} h -t 40.3984 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {3.0 21.0 -1 ------- null} r -t 40.7196 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 862 -a 0 -x {3.0 21.0 431 ------- null} + -t 40.7196 -s 21 -d 28 -p ack -e 40 -c 0 -i 882 -a 1 -x {21.0 3.0 431 ------- null} - -t 40.7196 -s 21 -d 28 -p ack -e 40 -c 0 -i 882 -a 1 -x {21.0 3.0 431 ------- null} h -t 40.7196 -s 21 -d 28 -p ack -e 40 -c 0 -i 882 -a 1 -x {21.0 3.0 -1 ------- null} r -t 40.7212 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {3.0 21.0 432 ------- null} + -t 40.7212 -s 21 -d 28 -p ack -e 40 -c 0 -i 883 -a 1 -x {21.0 3.0 432 ------- null} - -t 40.7212 -s 21 -d 28 -p ack -e 40 -c 0 -i 883 -a 1 -x {21.0 3.0 432 ------- null} h -t 40.7212 -s 21 -d 28 -p ack -e 40 -c 0 -i 883 -a 1 -x {21.0 3.0 -1 ------- null} r -t 40.7228 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 864 -a 0 -x {3.0 21.0 433 ------- null} + -t 40.7228 -s 21 -d 28 -p ack -e 40 -c 0 -i 884 -a 1 -x {21.0 3.0 433 ------- null} - -t 40.7228 -s 21 -d 28 -p ack -e 40 -c 0 -i 884 -a 1 -x {21.0 3.0 433 ------- null} h -t 40.7228 -s 21 -d 28 -p ack -e 40 -c 0 -i 884 -a 1 -x {21.0 3.0 -1 ------- null} r -t 40.7244 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {3.0 21.0 434 ------- null} + -t 40.7244 -s 21 -d 28 -p ack -e 40 -c 0 -i 885 -a 1 -x {21.0 3.0 434 ------- null} - -t 40.7244 -s 21 -d 28 -p ack -e 40 -c 0 -i 885 -a 1 -x {21.0 3.0 434 ------- null} h -t 40.7244 -s 21 -d 28 -p ack -e 40 -c 0 -i 885 -a 1 -x {21.0 3.0 -1 ------- null} r -t 40.726 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 866 -a 0 -x {3.0 21.0 435 ------- null} + -t 40.726 -s 21 -d 28 -p ack -e 40 -c 0 -i 886 -a 1 -x {21.0 3.0 435 ------- null} - -t 40.726 -s 21 -d 28 -p ack -e 40 -c 0 -i 886 -a 1 -x {21.0 3.0 435 ------- null} h -t 40.726 -s 21 -d 28 -p ack -e 40 -c 0 -i 886 -a 1 -x {21.0 3.0 -1 ------- null} r -t 40.7276 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {3.0 21.0 436 ------- null} + -t 40.7276 -s 21 -d 28 -p ack -e 40 -c 0 -i 887 -a 1 -x {21.0 3.0 436 ------- null} - -t 40.7276 -s 21 -d 28 -p ack -e 40 -c 0 -i 887 -a 1 -x {21.0 3.0 436 ------- null} h -t 40.7276 -s 21 -d 28 -p ack -e 40 -c 0 -i 887 -a 1 -x {21.0 3.0 -1 ------- null} r -t 40.7292 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 868 -a 0 -x {3.0 21.0 437 ------- null} + -t 40.7292 -s 21 -d 28 -p ack -e 40 -c 0 -i 888 -a 1 -x {21.0 3.0 437 ------- null} - -t 40.7292 -s 21 -d 28 -p ack -e 40 -c 0 -i 888 -a 1 -x {21.0 3.0 437 ------- null} h -t 40.7292 -s 21 -d 28 -p ack -e 40 -c 0 -i 888 -a 1 -x {21.0 3.0 -1 ------- null} r -t 40.7308 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {3.0 21.0 438 ------- null} + -t 40.7308 -s 21 -d 28 -p ack -e 40 -c 0 -i 889 -a 1 -x {21.0 3.0 438 ------- null} - -t 40.7308 -s 21 -d 28 -p ack -e 40 -c 0 -i 889 -a 1 -x {21.0 3.0 438 ------- null} h -t 40.7308 -s 21 -d 28 -p ack -e 40 -c 0 -i 889 -a 1 -x {21.0 3.0 -1 ------- null} r -t 40.7324 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 870 -a 0 -x {3.0 21.0 439 ------- null} + -t 40.7324 -s 21 -d 28 -p ack -e 40 -c 0 -i 890 -a 1 -x {21.0 3.0 439 ------- null} - -t 40.7324 -s 21 -d 28 -p ack -e 40 -c 0 -i 890 -a 1 -x {21.0 3.0 439 ------- null} h -t 40.7324 -s 21 -d 28 -p ack -e 40 -c 0 -i 890 -a 1 -x {21.0 3.0 -1 ------- null} r -t 40.734 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {3.0 21.0 440 ------- null} + -t 40.734 -s 21 -d 28 -p ack -e 40 -c 0 -i 891 -a 1 -x {21.0 3.0 440 ------- null} - -t 40.734 -s 21 -d 28 -p ack -e 40 -c 0 -i 891 -a 1 -x {21.0 3.0 440 ------- null} h -t 40.734 -s 21 -d 28 -p ack -e 40 -c 0 -i 891 -a 1 -x {21.0 3.0 -1 ------- null} r -t 40.7356 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 872 -a 0 -x {3.0 21.0 441 ------- null} + -t 40.7356 -s 21 -d 28 -p ack -e 40 -c 0 -i 892 -a 1 -x {21.0 3.0 441 ------- null} - -t 40.7356 -s 21 -d 28 -p ack -e 40 -c 0 -i 892 -a 1 -x {21.0 3.0 441 ------- null} h -t 40.7356 -s 21 -d 28 -p ack -e 40 -c 0 -i 892 -a 1 -x {21.0 3.0 -1 ------- null} r -t 40.7372 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {3.0 21.0 442 ------- null} + -t 40.7372 -s 21 -d 28 -p ack -e 40 -c 0 -i 893 -a 1 -x {21.0 3.0 442 ------- null} - -t 40.7372 -s 21 -d 28 -p ack -e 40 -c 0 -i 893 -a 1 -x {21.0 3.0 442 ------- null} h -t 40.7372 -s 21 -d 28 -p ack -e 40 -c 0 -i 893 -a 1 -x {21.0 3.0 -1 ------- null} r -t 40.7388 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 874 -a 0 -x {3.0 21.0 443 ------- null} + -t 40.7388 -s 21 -d 28 -p ack -e 40 -c 0 -i 894 -a 1 -x {21.0 3.0 443 ------- null} - -t 40.7388 -s 21 -d 28 -p ack -e 40 -c 0 -i 894 -a 1 -x {21.0 3.0 443 ------- null} h -t 40.7388 -s 21 -d 28 -p ack -e 40 -c 0 -i 894 -a 1 -x {21.0 3.0 -1 ------- null} r -t 40.7404 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {3.0 21.0 444 ------- null} + -t 40.7404 -s 21 -d 28 -p ack -e 40 -c 0 -i 895 -a 1 -x {21.0 3.0 444 ------- null} - -t 40.7404 -s 21 -d 28 -p ack -e 40 -c 0 -i 895 -a 1 -x {21.0 3.0 444 ------- null} h -t 40.7404 -s 21 -d 28 -p ack -e 40 -c 0 -i 895 -a 1 -x {21.0 3.0 -1 ------- null} r -t 40.742 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 876 -a 0 -x {3.0 21.0 445 ------- null} + -t 40.742 -s 21 -d 28 -p ack -e 40 -c 0 -i 896 -a 1 -x {21.0 3.0 445 ------- null} - -t 40.742 -s 21 -d 28 -p ack -e 40 -c 0 -i 896 -a 1 -x {21.0 3.0 445 ------- null} h -t 40.742 -s 21 -d 28 -p ack -e 40 -c 0 -i 896 -a 1 -x {21.0 3.0 -1 ------- null} r -t 40.7436 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {3.0 21.0 446 ------- null} + -t 40.7436 -s 21 -d 28 -p ack -e 40 -c 0 -i 897 -a 1 -x {21.0 3.0 446 ------- null} - -t 40.7436 -s 21 -d 28 -p ack -e 40 -c 0 -i 897 -a 1 -x {21.0 3.0 446 ------- null} h -t 40.7436 -s 21 -d 28 -p ack -e 40 -c 0 -i 897 -a 1 -x {21.0 3.0 -1 ------- null} r -t 40.7452 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 878 -a 0 -x {3.0 21.0 447 ------- null} + -t 40.7452 -s 21 -d 28 -p ack -e 40 -c 0 -i 898 -a 1 -x {21.0 3.0 447 ------- null} - -t 40.7452 -s 21 -d 28 -p ack -e 40 -c 0 -i 898 -a 1 -x {21.0 3.0 447 ------- null} h -t 40.7452 -s 21 -d 28 -p ack -e 40 -c 0 -i 898 -a 1 -x {21.0 3.0 -1 ------- null} r -t 40.7468 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {3.0 21.0 448 ------- null} + -t 40.7468 -s 21 -d 28 -p ack -e 40 -c 0 -i 899 -a 1 -x {21.0 3.0 448 ------- null} - -t 40.7468 -s 21 -d 28 -p ack -e 40 -c 0 -i 899 -a 1 -x {21.0 3.0 448 ------- null} h -t 40.7468 -s 21 -d 28 -p ack -e 40 -c 0 -i 899 -a 1 -x {21.0 3.0 -1 ------- null} r -t 40.7484 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 880 -a 0 -x {3.0 21.0 449 ------- null} + -t 40.7484 -s 21 -d 28 -p ack -e 40 -c 0 -i 900 -a 1 -x {21.0 3.0 449 ------- null} - -t 40.7484 -s 21 -d 28 -p ack -e 40 -c 0 -i 900 -a 1 -x {21.0 3.0 449 ------- null} h -t 40.7484 -s 21 -d 28 -p ack -e 40 -c 0 -i 900 -a 1 -x {21.0 3.0 -1 ------- null} r -t 40.75 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {3.0 21.0 450 ------- null} + -t 40.75 -s 21 -d 28 -p ack -e 40 -c 0 -i 901 -a 1 -x {21.0 3.0 450 ------- null} - -t 40.75 -s 21 -d 28 -p ack -e 40 -c 0 -i 901 -a 1 -x {21.0 3.0 450 ------- null} h -t 40.75 -s 21 -d 28 -p ack -e 40 -c 0 -i 901 -a 1 -x {21.0 3.0 -1 ------- null} r -t 41.0697 -s 21 -d 28 -p ack -e 40 -c 0 -i 882 -a 1 -x {21.0 3.0 431 ------- null} + -t 41.0697 -s 28 -d 1 -p ack -e 40 -c 0 -i 882 -a 1 -x {21.0 3.0 431 ------- null} - -t 41.0697 -s 28 -d 1 -p ack -e 40 -c 0 -i 882 -a 1 -x {21.0 3.0 431 ------- null} h -t 41.0697 -s 28 -d 1 -p ack -e 40 -c 0 -i 882 -a 1 -x {21.0 3.0 -1 ------- null} r -t 41.0713 -s 21 -d 28 -p ack -e 40 -c 0 -i 883 -a 1 -x {21.0 3.0 432 ------- null} + -t 41.0713 -s 28 -d 1 -p ack -e 40 -c 0 -i 883 -a 1 -x {21.0 3.0 432 ------- null} - -t 41.0713 -s 28 -d 1 -p ack -e 40 -c 0 -i 883 -a 1 -x {21.0 3.0 432 ------- null} h -t 41.0713 -s 28 -d 1 -p ack -e 40 -c 0 -i 883 -a 1 -x {21.0 3.0 -1 ------- null} r -t 41.0729 -s 21 -d 28 -p ack -e 40 -c 0 -i 884 -a 1 -x {21.0 3.0 433 ------- null} + -t 41.0729 -s 28 -d 1 -p ack -e 40 -c 0 -i 884 -a 1 -x {21.0 3.0 433 ------- null} - -t 41.0729 -s 28 -d 1 -p ack -e 40 -c 0 -i 884 -a 1 -x {21.0 3.0 433 ------- null} h -t 41.0729 -s 28 -d 1 -p ack -e 40 -c 0 -i 884 -a 1 -x {21.0 3.0 -1 ------- null} r -t 41.0745 -s 21 -d 28 -p ack -e 40 -c 0 -i 885 -a 1 -x {21.0 3.0 434 ------- null} + -t 41.0745 -s 28 -d 1 -p ack -e 40 -c 0 -i 885 -a 1 -x {21.0 3.0 434 ------- null} - -t 41.0745 -s 28 -d 1 -p ack -e 40 -c 0 -i 885 -a 1 -x {21.0 3.0 434 ------- null} h -t 41.0745 -s 28 -d 1 -p ack -e 40 -c 0 -i 885 -a 1 -x {21.0 3.0 -1 ------- null} r -t 41.0761 -s 21 -d 28 -p ack -e 40 -c 0 -i 886 -a 1 -x {21.0 3.0 435 ------- null} + -t 41.0761 -s 28 -d 1 -p ack -e 40 -c 0 -i 886 -a 1 -x {21.0 3.0 435 ------- null} - -t 41.0761 -s 28 -d 1 -p ack -e 40 -c 0 -i 886 -a 1 -x {21.0 3.0 435 ------- null} h -t 41.0761 -s 28 -d 1 -p ack -e 40 -c 0 -i 886 -a 1 -x {21.0 3.0 -1 ------- null} r -t 41.0777 -s 21 -d 28 -p ack -e 40 -c 0 -i 887 -a 1 -x {21.0 3.0 436 ------- null} + -t 41.0777 -s 28 -d 1 -p ack -e 40 -c 0 -i 887 -a 1 -x {21.0 3.0 436 ------- null} - -t 41.0777 -s 28 -d 1 -p ack -e 40 -c 0 -i 887 -a 1 -x {21.0 3.0 436 ------- null} h -t 41.0777 -s 28 -d 1 -p ack -e 40 -c 0 -i 887 -a 1 -x {21.0 3.0 -1 ------- null} r -t 41.0793 -s 21 -d 28 -p ack -e 40 -c 0 -i 888 -a 1 -x {21.0 3.0 437 ------- null} + -t 41.0793 -s 28 -d 1 -p ack -e 40 -c 0 -i 888 -a 1 -x {21.0 3.0 437 ------- null} - -t 41.0793 -s 28 -d 1 -p ack -e 40 -c 0 -i 888 -a 1 -x {21.0 3.0 437 ------- null} h -t 41.0793 -s 28 -d 1 -p ack -e 40 -c 0 -i 888 -a 1 -x {21.0 3.0 -1 ------- null} r -t 41.0809 -s 21 -d 28 -p ack -e 40 -c 0 -i 889 -a 1 -x {21.0 3.0 438 ------- null} + -t 41.0809 -s 28 -d 1 -p ack -e 40 -c 0 -i 889 -a 1 -x {21.0 3.0 438 ------- null} - -t 41.0809 -s 28 -d 1 -p ack -e 40 -c 0 -i 889 -a 1 -x {21.0 3.0 438 ------- null} h -t 41.0809 -s 28 -d 1 -p ack -e 40 -c 0 -i 889 -a 1 -x {21.0 3.0 -1 ------- null} r -t 41.0825 -s 21 -d 28 -p ack -e 40 -c 0 -i 890 -a 1 -x {21.0 3.0 439 ------- null} + -t 41.0825 -s 28 -d 1 -p ack -e 40 -c 0 -i 890 -a 1 -x {21.0 3.0 439 ------- null} - -t 41.0825 -s 28 -d 1 -p ack -e 40 -c 0 -i 890 -a 1 -x {21.0 3.0 439 ------- null} h -t 41.0825 -s 28 -d 1 -p ack -e 40 -c 0 -i 890 -a 1 -x {21.0 3.0 -1 ------- null} r -t 41.0841 -s 21 -d 28 -p ack -e 40 -c 0 -i 891 -a 1 -x {21.0 3.0 440 ------- null} + -t 41.0841 -s 28 -d 1 -p ack -e 40 -c 0 -i 891 -a 1 -x {21.0 3.0 440 ------- null} - -t 41.0841 -s 28 -d 1 -p ack -e 40 -c 0 -i 891 -a 1 -x {21.0 3.0 440 ------- null} h -t 41.0841 -s 28 -d 1 -p ack -e 40 -c 0 -i 891 -a 1 -x {21.0 3.0 -1 ------- null} r -t 41.0857 -s 21 -d 28 -p ack -e 40 -c 0 -i 892 -a 1 -x {21.0 3.0 441 ------- null} + -t 41.0857 -s 28 -d 1 -p ack -e 40 -c 0 -i 892 -a 1 -x {21.0 3.0 441 ------- null} - -t 41.0857 -s 28 -d 1 -p ack -e 40 -c 0 -i 892 -a 1 -x {21.0 3.0 441 ------- null} h -t 41.0857 -s 28 -d 1 -p ack -e 40 -c 0 -i 892 -a 1 -x {21.0 3.0 -1 ------- null} r -t 41.0873 -s 21 -d 28 -p ack -e 40 -c 0 -i 893 -a 1 -x {21.0 3.0 442 ------- null} + -t 41.0873 -s 28 -d 1 -p ack -e 40 -c 0 -i 893 -a 1 -x {21.0 3.0 442 ------- null} - -t 41.0873 -s 28 -d 1 -p ack -e 40 -c 0 -i 893 -a 1 -x {21.0 3.0 442 ------- null} h -t 41.0873 -s 28 -d 1 -p ack -e 40 -c 0 -i 893 -a 1 -x {21.0 3.0 -1 ------- null} r -t 41.0889 -s 21 -d 28 -p ack -e 40 -c 0 -i 894 -a 1 -x {21.0 3.0 443 ------- null} + -t 41.0889 -s 28 -d 1 -p ack -e 40 -c 0 -i 894 -a 1 -x {21.0 3.0 443 ------- null} - -t 41.0889 -s 28 -d 1 -p ack -e 40 -c 0 -i 894 -a 1 -x {21.0 3.0 443 ------- null} h -t 41.0889 -s 28 -d 1 -p ack -e 40 -c 0 -i 894 -a 1 -x {21.0 3.0 -1 ------- null} r -t 41.0905 -s 21 -d 28 -p ack -e 40 -c 0 -i 895 -a 1 -x {21.0 3.0 444 ------- null} + -t 41.0905 -s 28 -d 1 -p ack -e 40 -c 0 -i 895 -a 1 -x {21.0 3.0 444 ------- null} - -t 41.0905 -s 28 -d 1 -p ack -e 40 -c 0 -i 895 -a 1 -x {21.0 3.0 444 ------- null} h -t 41.0905 -s 28 -d 1 -p ack -e 40 -c 0 -i 895 -a 1 -x {21.0 3.0 -1 ------- null} r -t 41.0921 -s 21 -d 28 -p ack -e 40 -c 0 -i 896 -a 1 -x {21.0 3.0 445 ------- null} + -t 41.0921 -s 28 -d 1 -p ack -e 40 -c 0 -i 896 -a 1 -x {21.0 3.0 445 ------- null} - -t 41.0921 -s 28 -d 1 -p ack -e 40 -c 0 -i 896 -a 1 -x {21.0 3.0 445 ------- null} h -t 41.0921 -s 28 -d 1 -p ack -e 40 -c 0 -i 896 -a 1 -x {21.0 3.0 -1 ------- null} r -t 41.0937 -s 21 -d 28 -p ack -e 40 -c 0 -i 897 -a 1 -x {21.0 3.0 446 ------- null} + -t 41.0937 -s 28 -d 1 -p ack -e 40 -c 0 -i 897 -a 1 -x {21.0 3.0 446 ------- null} - -t 41.0937 -s 28 -d 1 -p ack -e 40 -c 0 -i 897 -a 1 -x {21.0 3.0 446 ------- null} h -t 41.0937 -s 28 -d 1 -p ack -e 40 -c 0 -i 897 -a 1 -x {21.0 3.0 -1 ------- null} r -t 41.0953 -s 21 -d 28 -p ack -e 40 -c 0 -i 898 -a 1 -x {21.0 3.0 447 ------- null} + -t 41.0953 -s 28 -d 1 -p ack -e 40 -c 0 -i 898 -a 1 -x {21.0 3.0 447 ------- null} - -t 41.0953 -s 28 -d 1 -p ack -e 40 -c 0 -i 898 -a 1 -x {21.0 3.0 447 ------- null} h -t 41.0953 -s 28 -d 1 -p ack -e 40 -c 0 -i 898 -a 1 -x {21.0 3.0 -1 ------- null} r -t 41.0969 -s 21 -d 28 -p ack -e 40 -c 0 -i 899 -a 1 -x {21.0 3.0 448 ------- null} + -t 41.0969 -s 28 -d 1 -p ack -e 40 -c 0 -i 899 -a 1 -x {21.0 3.0 448 ------- null} - -t 41.0969 -s 28 -d 1 -p ack -e 40 -c 0 -i 899 -a 1 -x {21.0 3.0 448 ------- null} h -t 41.0969 -s 28 -d 1 -p ack -e 40 -c 0 -i 899 -a 1 -x {21.0 3.0 -1 ------- null} r -t 41.0985 -s 21 -d 28 -p ack -e 40 -c 0 -i 900 -a 1 -x {21.0 3.0 449 ------- null} + -t 41.0985 -s 28 -d 1 -p ack -e 40 -c 0 -i 900 -a 1 -x {21.0 3.0 449 ------- null} - -t 41.0985 -s 28 -d 1 -p ack -e 40 -c 0 -i 900 -a 1 -x {21.0 3.0 449 ------- null} h -t 41.0985 -s 28 -d 1 -p ack -e 40 -c 0 -i 900 -a 1 -x {21.0 3.0 -1 ------- null} r -t 41.1001 -s 21 -d 28 -p ack -e 40 -c 0 -i 901 -a 1 -x {21.0 3.0 450 ------- null} + -t 41.1001 -s 28 -d 1 -p ack -e 40 -c 0 -i 901 -a 1 -x {21.0 3.0 450 ------- null} - -t 41.1001 -s 28 -d 1 -p ack -e 40 -c 0 -i 901 -a 1 -x {21.0 3.0 450 ------- null} h -t 41.1001 -s 28 -d 1 -p ack -e 40 -c 0 -i 901 -a 1 -x {21.0 3.0 -1 ------- null} r -t 41.3697 -s 28 -d 1 -p ack -e 40 -c 0 -i 882 -a 1 -x {21.0 3.0 431 ------- null} + -t 41.3697 -s 1 -d 3 -p ack -e 40 -c 0 -i 882 -a 1 -x {21.0 3.0 431 ------- null} - -t 41.3697 -s 1 -d 3 -p ack -e 40 -c 0 -i 882 -a 1 -x {21.0 3.0 431 ------- null} h -t 41.3697 -s 1 -d 3 -p ack -e 40 -c 0 -i 882 -a 1 -x {21.0 3.0 -1 ------- null} r -t 41.3713 -s 28 -d 1 -p ack -e 40 -c 0 -i 883 -a 1 -x {21.0 3.0 432 ------- null} + -t 41.3713 -s 1 -d 3 -p ack -e 40 -c 0 -i 883 -a 1 -x {21.0 3.0 432 ------- null} - -t 41.3713 -s 1 -d 3 -p ack -e 40 -c 0 -i 883 -a 1 -x {21.0 3.0 432 ------- null} h -t 41.3713 -s 1 -d 3 -p ack -e 40 -c 0 -i 883 -a 1 -x {21.0 3.0 -1 ------- null} r -t 41.3729 -s 28 -d 1 -p ack -e 40 -c 0 -i 884 -a 1 -x {21.0 3.0 433 ------- null} + -t 41.3729 -s 1 -d 3 -p ack -e 40 -c 0 -i 884 -a 1 -x {21.0 3.0 433 ------- null} - -t 41.3729 -s 1 -d 3 -p ack -e 40 -c 0 -i 884 -a 1 -x {21.0 3.0 433 ------- null} h -t 41.3729 -s 1 -d 3 -p ack -e 40 -c 0 -i 884 -a 1 -x {21.0 3.0 -1 ------- null} r -t 41.3745 -s 28 -d 1 -p ack -e 40 -c 0 -i 885 -a 1 -x {21.0 3.0 434 ------- null} + -t 41.3745 -s 1 -d 3 -p ack -e 40 -c 0 -i 885 -a 1 -x {21.0 3.0 434 ------- null} - -t 41.3745 -s 1 -d 3 -p ack -e 40 -c 0 -i 885 -a 1 -x {21.0 3.0 434 ------- null} h -t 41.3745 -s 1 -d 3 -p ack -e 40 -c 0 -i 885 -a 1 -x {21.0 3.0 -1 ------- null} r -t 41.3761 -s 28 -d 1 -p ack -e 40 -c 0 -i 886 -a 1 -x {21.0 3.0 435 ------- null} + -t 41.3761 -s 1 -d 3 -p ack -e 40 -c 0 -i 886 -a 1 -x {21.0 3.0 435 ------- null} - -t 41.3761 -s 1 -d 3 -p ack -e 40 -c 0 -i 886 -a 1 -x {21.0 3.0 435 ------- null} h -t 41.3761 -s 1 -d 3 -p ack -e 40 -c 0 -i 886 -a 1 -x {21.0 3.0 -1 ------- null} r -t 41.3777 -s 28 -d 1 -p ack -e 40 -c 0 -i 887 -a 1 -x {21.0 3.0 436 ------- null} + -t 41.3777 -s 1 -d 3 -p ack -e 40 -c 0 -i 887 -a 1 -x {21.0 3.0 436 ------- null} - -t 41.3777 -s 1 -d 3 -p ack -e 40 -c 0 -i 887 -a 1 -x {21.0 3.0 436 ------- null} h -t 41.3777 -s 1 -d 3 -p ack -e 40 -c 0 -i 887 -a 1 -x {21.0 3.0 -1 ------- null} r -t 41.3793 -s 28 -d 1 -p ack -e 40 -c 0 -i 888 -a 1 -x {21.0 3.0 437 ------- null} + -t 41.3793 -s 1 -d 3 -p ack -e 40 -c 0 -i 888 -a 1 -x {21.0 3.0 437 ------- null} - -t 41.3793 -s 1 -d 3 -p ack -e 40 -c 0 -i 888 -a 1 -x {21.0 3.0 437 ------- null} h -t 41.3793 -s 1 -d 3 -p ack -e 40 -c 0 -i 888 -a 1 -x {21.0 3.0 -1 ------- null} r -t 41.3809 -s 28 -d 1 -p ack -e 40 -c 0 -i 889 -a 1 -x {21.0 3.0 438 ------- null} + -t 41.3809 -s 1 -d 3 -p ack -e 40 -c 0 -i 889 -a 1 -x {21.0 3.0 438 ------- null} - -t 41.3809 -s 1 -d 3 -p ack -e 40 -c 0 -i 889 -a 1 -x {21.0 3.0 438 ------- null} h -t 41.3809 -s 1 -d 3 -p ack -e 40 -c 0 -i 889 -a 1 -x {21.0 3.0 -1 ------- null} r -t 41.3825 -s 28 -d 1 -p ack -e 40 -c 0 -i 890 -a 1 -x {21.0 3.0 439 ------- null} + -t 41.3825 -s 1 -d 3 -p ack -e 40 -c 0 -i 890 -a 1 -x {21.0 3.0 439 ------- null} - -t 41.3825 -s 1 -d 3 -p ack -e 40 -c 0 -i 890 -a 1 -x {21.0 3.0 439 ------- null} h -t 41.3825 -s 1 -d 3 -p ack -e 40 -c 0 -i 890 -a 1 -x {21.0 3.0 -1 ------- null} r -t 41.3841 -s 28 -d 1 -p ack -e 40 -c 0 -i 891 -a 1 -x {21.0 3.0 440 ------- null} + -t 41.3841 -s 1 -d 3 -p ack -e 40 -c 0 -i 891 -a 1 -x {21.0 3.0 440 ------- null} - -t 41.3841 -s 1 -d 3 -p ack -e 40 -c 0 -i 891 -a 1 -x {21.0 3.0 440 ------- null} h -t 41.3841 -s 1 -d 3 -p ack -e 40 -c 0 -i 891 -a 1 -x {21.0 3.0 -1 ------- null} r -t 41.3857 -s 28 -d 1 -p ack -e 40 -c 0 -i 892 -a 1 -x {21.0 3.0 441 ------- null} + -t 41.3857 -s 1 -d 3 -p ack -e 40 -c 0 -i 892 -a 1 -x {21.0 3.0 441 ------- null} - -t 41.3857 -s 1 -d 3 -p ack -e 40 -c 0 -i 892 -a 1 -x {21.0 3.0 441 ------- null} h -t 41.3857 -s 1 -d 3 -p ack -e 40 -c 0 -i 892 -a 1 -x {21.0 3.0 -1 ------- null} r -t 41.3873 -s 28 -d 1 -p ack -e 40 -c 0 -i 893 -a 1 -x {21.0 3.0 442 ------- null} + -t 41.3873 -s 1 -d 3 -p ack -e 40 -c 0 -i 893 -a 1 -x {21.0 3.0 442 ------- null} - -t 41.3873 -s 1 -d 3 -p ack -e 40 -c 0 -i 893 -a 1 -x {21.0 3.0 442 ------- null} h -t 41.3873 -s 1 -d 3 -p ack -e 40 -c 0 -i 893 -a 1 -x {21.0 3.0 -1 ------- null} r -t 41.3889 -s 28 -d 1 -p ack -e 40 -c 0 -i 894 -a 1 -x {21.0 3.0 443 ------- null} + -t 41.3889 -s 1 -d 3 -p ack -e 40 -c 0 -i 894 -a 1 -x {21.0 3.0 443 ------- null} - -t 41.3889 -s 1 -d 3 -p ack -e 40 -c 0 -i 894 -a 1 -x {21.0 3.0 443 ------- null} h -t 41.3889 -s 1 -d 3 -p ack -e 40 -c 0 -i 894 -a 1 -x {21.0 3.0 -1 ------- null} r -t 41.3905 -s 28 -d 1 -p ack -e 40 -c 0 -i 895 -a 1 -x {21.0 3.0 444 ------- null} + -t 41.3905 -s 1 -d 3 -p ack -e 40 -c 0 -i 895 -a 1 -x {21.0 3.0 444 ------- null} - -t 41.3905 -s 1 -d 3 -p ack -e 40 -c 0 -i 895 -a 1 -x {21.0 3.0 444 ------- null} h -t 41.3905 -s 1 -d 3 -p ack -e 40 -c 0 -i 895 -a 1 -x {21.0 3.0 -1 ------- null} r -t 41.3921 -s 28 -d 1 -p ack -e 40 -c 0 -i 896 -a 1 -x {21.0 3.0 445 ------- null} + -t 41.3921 -s 1 -d 3 -p ack -e 40 -c 0 -i 896 -a 1 -x {21.0 3.0 445 ------- null} - -t 41.3921 -s 1 -d 3 -p ack -e 40 -c 0 -i 896 -a 1 -x {21.0 3.0 445 ------- null} h -t 41.3921 -s 1 -d 3 -p ack -e 40 -c 0 -i 896 -a 1 -x {21.0 3.0 -1 ------- null} r -t 41.3937 -s 28 -d 1 -p ack -e 40 -c 0 -i 897 -a 1 -x {21.0 3.0 446 ------- null} + -t 41.3937 -s 1 -d 3 -p ack -e 40 -c 0 -i 897 -a 1 -x {21.0 3.0 446 ------- null} - -t 41.3937 -s 1 -d 3 -p ack -e 40 -c 0 -i 897 -a 1 -x {21.0 3.0 446 ------- null} h -t 41.3937 -s 1 -d 3 -p ack -e 40 -c 0 -i 897 -a 1 -x {21.0 3.0 -1 ------- null} r -t 41.3953 -s 28 -d 1 -p ack -e 40 -c 0 -i 898 -a 1 -x {21.0 3.0 447 ------- null} + -t 41.3953 -s 1 -d 3 -p ack -e 40 -c 0 -i 898 -a 1 -x {21.0 3.0 447 ------- null} - -t 41.3953 -s 1 -d 3 -p ack -e 40 -c 0 -i 898 -a 1 -x {21.0 3.0 447 ------- null} h -t 41.3953 -s 1 -d 3 -p ack -e 40 -c 0 -i 898 -a 1 -x {21.0 3.0 -1 ------- null} r -t 41.3969 -s 28 -d 1 -p ack -e 40 -c 0 -i 899 -a 1 -x {21.0 3.0 448 ------- null} + -t 41.3969 -s 1 -d 3 -p ack -e 40 -c 0 -i 899 -a 1 -x {21.0 3.0 448 ------- null} - -t 41.3969 -s 1 -d 3 -p ack -e 40 -c 0 -i 899 -a 1 -x {21.0 3.0 448 ------- null} h -t 41.3969 -s 1 -d 3 -p ack -e 40 -c 0 -i 899 -a 1 -x {21.0 3.0 -1 ------- null} r -t 41.3985 -s 28 -d 1 -p ack -e 40 -c 0 -i 900 -a 1 -x {21.0 3.0 449 ------- null} + -t 41.3985 -s 1 -d 3 -p ack -e 40 -c 0 -i 900 -a 1 -x {21.0 3.0 449 ------- null} - -t 41.3985 -s 1 -d 3 -p ack -e 40 -c 0 -i 900 -a 1 -x {21.0 3.0 449 ------- null} h -t 41.3985 -s 1 -d 3 -p ack -e 40 -c 0 -i 900 -a 1 -x {21.0 3.0 -1 ------- null} r -t 41.4001 -s 28 -d 1 -p ack -e 40 -c 0 -i 901 -a 1 -x {21.0 3.0 450 ------- null} + -t 41.4001 -s 1 -d 3 -p ack -e 40 -c 0 -i 901 -a 1 -x {21.0 3.0 450 ------- null} - -t 41.4001 -s 1 -d 3 -p ack -e 40 -c 0 -i 901 -a 1 -x {21.0 3.0 450 ------- null} h -t 41.4001 -s 1 -d 3 -p ack -e 40 -c 0 -i 901 -a 1 -x {21.0 3.0 -1 ------- null} r -t 41.5098 -s 1 -d 3 -p ack -e 40 -c 0 -i 882 -a 1 -x {21.0 3.0 431 ------- null} + -t 41.5098 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 902 -a 0 -x {3.0 21.0 451 ------- null} - -t 41.5098 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 902 -a 0 -x {3.0 21.0 451 ------- null} h -t 41.5098 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 902 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.5114 -s 1 -d 3 -p ack -e 40 -c 0 -i 883 -a 1 -x {21.0 3.0 432 ------- null} + -t 41.5114 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {3.0 21.0 452 ------- null} - -t 41.5114 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {3.0 21.0 452 ------- null} h -t 41.5114 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.513 -s 1 -d 3 -p ack -e 40 -c 0 -i 884 -a 1 -x {21.0 3.0 433 ------- null} + -t 41.513 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 904 -a 0 -x {3.0 21.0 453 ------- null} - -t 41.513 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 904 -a 0 -x {3.0 21.0 453 ------- null} h -t 41.513 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 904 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.5146 -s 1 -d 3 -p ack -e 40 -c 0 -i 885 -a 1 -x {21.0 3.0 434 ------- null} + -t 41.5146 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {3.0 21.0 454 ------- null} - -t 41.5146 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {3.0 21.0 454 ------- null} h -t 41.5146 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.5162 -s 1 -d 3 -p ack -e 40 -c 0 -i 886 -a 1 -x {21.0 3.0 435 ------- null} + -t 41.5162 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 906 -a 0 -x {3.0 21.0 455 ------- null} - -t 41.5162 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 906 -a 0 -x {3.0 21.0 455 ------- null} h -t 41.5162 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 906 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.5178 -s 1 -d 3 -p ack -e 40 -c 0 -i 887 -a 1 -x {21.0 3.0 436 ------- null} + -t 41.5178 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {3.0 21.0 456 ------- null} - -t 41.5178 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {3.0 21.0 456 ------- null} h -t 41.5178 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.5194 -s 1 -d 3 -p ack -e 40 -c 0 -i 888 -a 1 -x {21.0 3.0 437 ------- null} + -t 41.5194 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 908 -a 0 -x {3.0 21.0 457 ------- null} - -t 41.5194 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 908 -a 0 -x {3.0 21.0 457 ------- null} h -t 41.5194 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 908 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.521 -s 1 -d 3 -p ack -e 40 -c 0 -i 889 -a 1 -x {21.0 3.0 438 ------- null} + -t 41.521 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {3.0 21.0 458 ------- null} - -t 41.521 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {3.0 21.0 458 ------- null} h -t 41.521 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.5226 -s 1 -d 3 -p ack -e 40 -c 0 -i 890 -a 1 -x {21.0 3.0 439 ------- null} + -t 41.5226 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 910 -a 0 -x {3.0 21.0 459 ------- null} - -t 41.5226 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 910 -a 0 -x {3.0 21.0 459 ------- null} h -t 41.5226 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 910 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.5242 -s 1 -d 3 -p ack -e 40 -c 0 -i 891 -a 1 -x {21.0 3.0 440 ------- null} + -t 41.5242 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {3.0 21.0 460 ------- null} - -t 41.5242 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {3.0 21.0 460 ------- null} h -t 41.5242 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.5258 -s 1 -d 3 -p ack -e 40 -c 0 -i 892 -a 1 -x {21.0 3.0 441 ------- null} + -t 41.5258 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 912 -a 0 -x {3.0 21.0 461 ------- null} - -t 41.5258 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 912 -a 0 -x {3.0 21.0 461 ------- null} h -t 41.5258 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 912 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.5274 -s 1 -d 3 -p ack -e 40 -c 0 -i 893 -a 1 -x {21.0 3.0 442 ------- null} + -t 41.5274 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {3.0 21.0 462 ------- null} - -t 41.5274 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {3.0 21.0 462 ------- null} h -t 41.5274 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.529 -s 1 -d 3 -p ack -e 40 -c 0 -i 894 -a 1 -x {21.0 3.0 443 ------- null} + -t 41.529 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 914 -a 0 -x {3.0 21.0 463 ------- null} - -t 41.529 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 914 -a 0 -x {3.0 21.0 463 ------- null} h -t 41.529 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 914 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.5306 -s 1 -d 3 -p ack -e 40 -c 0 -i 895 -a 1 -x {21.0 3.0 444 ------- null} + -t 41.5306 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {3.0 21.0 464 ------- null} - -t 41.5306 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {3.0 21.0 464 ------- null} h -t 41.5306 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.5322 -s 1 -d 3 -p ack -e 40 -c 0 -i 896 -a 1 -x {21.0 3.0 445 ------- null} + -t 41.5322 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 916 -a 0 -x {3.0 21.0 465 ------- null} - -t 41.5322 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 916 -a 0 -x {3.0 21.0 465 ------- null} h -t 41.5322 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 916 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.5338 -s 1 -d 3 -p ack -e 40 -c 0 -i 897 -a 1 -x {21.0 3.0 446 ------- null} + -t 41.5338 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {3.0 21.0 466 ------- null} - -t 41.5338 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {3.0 21.0 466 ------- null} h -t 41.5338 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.5354 -s 1 -d 3 -p ack -e 40 -c 0 -i 898 -a 1 -x {21.0 3.0 447 ------- null} + -t 41.5354 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 918 -a 0 -x {3.0 21.0 467 ------- null} - -t 41.5354 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 918 -a 0 -x {3.0 21.0 467 ------- null} h -t 41.5354 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 918 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.537 -s 1 -d 3 -p ack -e 40 -c 0 -i 899 -a 1 -x {21.0 3.0 448 ------- null} + -t 41.537 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {3.0 21.0 468 ------- null} - -t 41.537 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {3.0 21.0 468 ------- null} h -t 41.537 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.5386 -s 1 -d 3 -p ack -e 40 -c 0 -i 900 -a 1 -x {21.0 3.0 449 ------- null} + -t 41.5386 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 920 -a 0 -x {3.0 21.0 469 ------- null} - -t 41.5386 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 920 -a 0 -x {3.0 21.0 469 ------- null} h -t 41.5386 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 920 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.5402 -s 1 -d 3 -p ack -e 40 -c 0 -i 901 -a 1 -x {21.0 3.0 450 ------- null} + -t 41.5402 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {3.0 21.0 470 ------- null} - -t 41.5402 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {3.0 21.0 470 ------- null} h -t 41.5402 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.6514 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 902 -a 0 -x {3.0 21.0 451 ------- null} + -t 41.6514 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 902 -a 0 -x {3.0 21.0 451 ------- null} - -t 41.6514 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 902 -a 0 -x {3.0 21.0 451 ------- null} h -t 41.6514 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 902 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.653 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {3.0 21.0 452 ------- null} + -t 41.653 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {3.0 21.0 452 ------- null} - -t 41.653 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {3.0 21.0 452 ------- null} h -t 41.653 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.6546 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 904 -a 0 -x {3.0 21.0 453 ------- null} + -t 41.6546 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 904 -a 0 -x {3.0 21.0 453 ------- null} - -t 41.6546 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 904 -a 0 -x {3.0 21.0 453 ------- null} h -t 41.6546 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 904 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.6562 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {3.0 21.0 454 ------- null} + -t 41.6562 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {3.0 21.0 454 ------- null} - -t 41.6562 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {3.0 21.0 454 ------- null} h -t 41.6562 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.6578 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 906 -a 0 -x {3.0 21.0 455 ------- null} + -t 41.6578 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 906 -a 0 -x {3.0 21.0 455 ------- null} - -t 41.6578 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 906 -a 0 -x {3.0 21.0 455 ------- null} h -t 41.6578 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 906 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.6594 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {3.0 21.0 456 ------- null} + -t 41.6594 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {3.0 21.0 456 ------- null} - -t 41.6594 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {3.0 21.0 456 ------- null} h -t 41.6594 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.661 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 908 -a 0 -x {3.0 21.0 457 ------- null} + -t 41.661 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 908 -a 0 -x {3.0 21.0 457 ------- null} - -t 41.661 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 908 -a 0 -x {3.0 21.0 457 ------- null} h -t 41.661 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 908 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.6626 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {3.0 21.0 458 ------- null} + -t 41.6626 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {3.0 21.0 458 ------- null} - -t 41.6626 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {3.0 21.0 458 ------- null} h -t 41.6626 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.6642 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 910 -a 0 -x {3.0 21.0 459 ------- null} + -t 41.6642 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 910 -a 0 -x {3.0 21.0 459 ------- null} - -t 41.6642 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 910 -a 0 -x {3.0 21.0 459 ------- null} h -t 41.6642 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 910 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.6658 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {3.0 21.0 460 ------- null} + -t 41.6658 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {3.0 21.0 460 ------- null} - -t 41.6658 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {3.0 21.0 460 ------- null} h -t 41.6658 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.6674 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 912 -a 0 -x {3.0 21.0 461 ------- null} + -t 41.6674 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 912 -a 0 -x {3.0 21.0 461 ------- null} - -t 41.6674 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 912 -a 0 -x {3.0 21.0 461 ------- null} h -t 41.6674 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 912 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.669 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {3.0 21.0 462 ------- null} + -t 41.669 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {3.0 21.0 462 ------- null} - -t 41.669 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {3.0 21.0 462 ------- null} h -t 41.669 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.6706 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 914 -a 0 -x {3.0 21.0 463 ------- null} + -t 41.6706 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 914 -a 0 -x {3.0 21.0 463 ------- null} - -t 41.6706 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 914 -a 0 -x {3.0 21.0 463 ------- null} h -t 41.6706 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 914 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.6722 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {3.0 21.0 464 ------- null} + -t 41.6722 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {3.0 21.0 464 ------- null} - -t 41.6722 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {3.0 21.0 464 ------- null} h -t 41.6722 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.6738 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 916 -a 0 -x {3.0 21.0 465 ------- null} + -t 41.6738 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 916 -a 0 -x {3.0 21.0 465 ------- null} - -t 41.6738 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 916 -a 0 -x {3.0 21.0 465 ------- null} h -t 41.6738 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 916 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.6754 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {3.0 21.0 466 ------- null} + -t 41.6754 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {3.0 21.0 466 ------- null} - -t 41.6754 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {3.0 21.0 466 ------- null} h -t 41.6754 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.677 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 918 -a 0 -x {3.0 21.0 467 ------- null} + -t 41.677 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 918 -a 0 -x {3.0 21.0 467 ------- null} - -t 41.677 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 918 -a 0 -x {3.0 21.0 467 ------- null} h -t 41.677 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 918 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.6786 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {3.0 21.0 468 ------- null} + -t 41.6786 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {3.0 21.0 468 ------- null} - -t 41.6786 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {3.0 21.0 468 ------- null} h -t 41.6786 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.6802 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 920 -a 0 -x {3.0 21.0 469 ------- null} + -t 41.6802 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 920 -a 0 -x {3.0 21.0 469 ------- null} - -t 41.6802 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 920 -a 0 -x {3.0 21.0 469 ------- null} h -t 41.6802 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 920 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.6818 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {3.0 21.0 470 ------- null} + -t 41.6818 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {3.0 21.0 470 ------- null} - -t 41.6818 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {3.0 21.0 470 ------- null} h -t 41.6818 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.953 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 902 -a 0 -x {3.0 21.0 451 ------- null} + -t 41.953 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 902 -a 0 -x {3.0 21.0 451 ------- null} - -t 41.953 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 902 -a 0 -x {3.0 21.0 451 ------- null} h -t 41.953 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 902 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.9546 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {3.0 21.0 452 ------- null} + -t 41.9546 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {3.0 21.0 452 ------- null} - -t 41.9546 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {3.0 21.0 452 ------- null} h -t 41.9546 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.9562 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 904 -a 0 -x {3.0 21.0 453 ------- null} + -t 41.9562 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 904 -a 0 -x {3.0 21.0 453 ------- null} - -t 41.9562 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 904 -a 0 -x {3.0 21.0 453 ------- null} h -t 41.9562 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 904 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.9578 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {3.0 21.0 454 ------- null} + -t 41.9578 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {3.0 21.0 454 ------- null} - -t 41.9578 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {3.0 21.0 454 ------- null} h -t 41.9578 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.9594 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 906 -a 0 -x {3.0 21.0 455 ------- null} + -t 41.9594 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 906 -a 0 -x {3.0 21.0 455 ------- null} - -t 41.9594 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 906 -a 0 -x {3.0 21.0 455 ------- null} h -t 41.9594 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 906 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.961 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {3.0 21.0 456 ------- null} + -t 41.961 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {3.0 21.0 456 ------- null} - -t 41.961 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {3.0 21.0 456 ------- null} h -t 41.961 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.9626 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 908 -a 0 -x {3.0 21.0 457 ------- null} + -t 41.9626 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 908 -a 0 -x {3.0 21.0 457 ------- null} - -t 41.9626 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 908 -a 0 -x {3.0 21.0 457 ------- null} h -t 41.9626 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 908 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.9642 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {3.0 21.0 458 ------- null} + -t 41.9642 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {3.0 21.0 458 ------- null} - -t 41.9642 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {3.0 21.0 458 ------- null} h -t 41.9642 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.9658 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 910 -a 0 -x {3.0 21.0 459 ------- null} + -t 41.9658 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 910 -a 0 -x {3.0 21.0 459 ------- null} - -t 41.9658 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 910 -a 0 -x {3.0 21.0 459 ------- null} h -t 41.9658 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 910 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.9674 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {3.0 21.0 460 ------- null} + -t 41.9674 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {3.0 21.0 460 ------- null} - -t 41.9674 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {3.0 21.0 460 ------- null} h -t 41.9674 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.969 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 912 -a 0 -x {3.0 21.0 461 ------- null} + -t 41.969 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 912 -a 0 -x {3.0 21.0 461 ------- null} - -t 41.969 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 912 -a 0 -x {3.0 21.0 461 ------- null} h -t 41.969 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 912 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.9706 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {3.0 21.0 462 ------- null} + -t 41.9706 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {3.0 21.0 462 ------- null} - -t 41.9706 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {3.0 21.0 462 ------- null} h -t 41.9706 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.9722 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 914 -a 0 -x {3.0 21.0 463 ------- null} + -t 41.9722 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 914 -a 0 -x {3.0 21.0 463 ------- null} - -t 41.9722 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 914 -a 0 -x {3.0 21.0 463 ------- null} h -t 41.9722 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 914 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.9738 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {3.0 21.0 464 ------- null} + -t 41.9738 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {3.0 21.0 464 ------- null} - -t 41.9738 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {3.0 21.0 464 ------- null} h -t 41.9738 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.9754 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 916 -a 0 -x {3.0 21.0 465 ------- null} + -t 41.9754 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 916 -a 0 -x {3.0 21.0 465 ------- null} - -t 41.9754 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 916 -a 0 -x {3.0 21.0 465 ------- null} h -t 41.9754 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 916 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.977 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {3.0 21.0 466 ------- null} + -t 41.977 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {3.0 21.0 466 ------- null} - -t 41.977 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {3.0 21.0 466 ------- null} h -t 41.977 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.9786 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 918 -a 0 -x {3.0 21.0 467 ------- null} + -t 41.9786 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 918 -a 0 -x {3.0 21.0 467 ------- null} - -t 41.9786 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 918 -a 0 -x {3.0 21.0 467 ------- null} h -t 41.9786 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 918 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.9802 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {3.0 21.0 468 ------- null} + -t 41.9802 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {3.0 21.0 468 ------- null} - -t 41.9802 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {3.0 21.0 468 ------- null} h -t 41.9802 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.9818 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 920 -a 0 -x {3.0 21.0 469 ------- null} + -t 41.9818 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 920 -a 0 -x {3.0 21.0 469 ------- null} - -t 41.9818 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 920 -a 0 -x {3.0 21.0 469 ------- null} h -t 41.9818 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 920 -a 0 -x {3.0 21.0 -1 ------- null} r -t 41.9834 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {3.0 21.0 470 ------- null} + -t 41.9834 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {3.0 21.0 470 ------- null} - -t 41.9834 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {3.0 21.0 470 ------- null} h -t 41.9834 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {3.0 21.0 -1 ------- null} r -t 42.3046 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 902 -a 0 -x {3.0 21.0 451 ------- null} + -t 42.3046 -s 21 -d 28 -p ack -e 40 -c 0 -i 922 -a 1 -x {21.0 3.0 451 ------- null} - -t 42.3046 -s 21 -d 28 -p ack -e 40 -c 0 -i 922 -a 1 -x {21.0 3.0 451 ------- null} h -t 42.3046 -s 21 -d 28 -p ack -e 40 -c 0 -i 922 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.3062 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {3.0 21.0 452 ------- null} + -t 42.3062 -s 21 -d 28 -p ack -e 40 -c 0 -i 923 -a 1 -x {21.0 3.0 452 ------- null} - -t 42.3062 -s 21 -d 28 -p ack -e 40 -c 0 -i 923 -a 1 -x {21.0 3.0 452 ------- null} h -t 42.3062 -s 21 -d 28 -p ack -e 40 -c 0 -i 923 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.3078 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 904 -a 0 -x {3.0 21.0 453 ------- null} + -t 42.3078 -s 21 -d 28 -p ack -e 40 -c 0 -i 924 -a 1 -x {21.0 3.0 453 ------- null} - -t 42.3078 -s 21 -d 28 -p ack -e 40 -c 0 -i 924 -a 1 -x {21.0 3.0 453 ------- null} h -t 42.3078 -s 21 -d 28 -p ack -e 40 -c 0 -i 924 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.3094 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {3.0 21.0 454 ------- null} + -t 42.3094 -s 21 -d 28 -p ack -e 40 -c 0 -i 925 -a 1 -x {21.0 3.0 454 ------- null} - -t 42.3094 -s 21 -d 28 -p ack -e 40 -c 0 -i 925 -a 1 -x {21.0 3.0 454 ------- null} h -t 42.3094 -s 21 -d 28 -p ack -e 40 -c 0 -i 925 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.311 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 906 -a 0 -x {3.0 21.0 455 ------- null} + -t 42.311 -s 21 -d 28 -p ack -e 40 -c 0 -i 926 -a 1 -x {21.0 3.0 455 ------- null} - -t 42.311 -s 21 -d 28 -p ack -e 40 -c 0 -i 926 -a 1 -x {21.0 3.0 455 ------- null} h -t 42.311 -s 21 -d 28 -p ack -e 40 -c 0 -i 926 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.3126 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {3.0 21.0 456 ------- null} + -t 42.3126 -s 21 -d 28 -p ack -e 40 -c 0 -i 927 -a 1 -x {21.0 3.0 456 ------- null} - -t 42.3126 -s 21 -d 28 -p ack -e 40 -c 0 -i 927 -a 1 -x {21.0 3.0 456 ------- null} h -t 42.3126 -s 21 -d 28 -p ack -e 40 -c 0 -i 927 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.3142 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 908 -a 0 -x {3.0 21.0 457 ------- null} + -t 42.3142 -s 21 -d 28 -p ack -e 40 -c 0 -i 928 -a 1 -x {21.0 3.0 457 ------- null} - -t 42.3142 -s 21 -d 28 -p ack -e 40 -c 0 -i 928 -a 1 -x {21.0 3.0 457 ------- null} h -t 42.3142 -s 21 -d 28 -p ack -e 40 -c 0 -i 928 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.3158 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {3.0 21.0 458 ------- null} + -t 42.3158 -s 21 -d 28 -p ack -e 40 -c 0 -i 929 -a 1 -x {21.0 3.0 458 ------- null} - -t 42.3158 -s 21 -d 28 -p ack -e 40 -c 0 -i 929 -a 1 -x {21.0 3.0 458 ------- null} h -t 42.3158 -s 21 -d 28 -p ack -e 40 -c 0 -i 929 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.3174 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 910 -a 0 -x {3.0 21.0 459 ------- null} + -t 42.3174 -s 21 -d 28 -p ack -e 40 -c 0 -i 930 -a 1 -x {21.0 3.0 459 ------- null} - -t 42.3174 -s 21 -d 28 -p ack -e 40 -c 0 -i 930 -a 1 -x {21.0 3.0 459 ------- null} h -t 42.3174 -s 21 -d 28 -p ack -e 40 -c 0 -i 930 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.319 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {3.0 21.0 460 ------- null} + -t 42.319 -s 21 -d 28 -p ack -e 40 -c 0 -i 931 -a 1 -x {21.0 3.0 460 ------- null} - -t 42.319 -s 21 -d 28 -p ack -e 40 -c 0 -i 931 -a 1 -x {21.0 3.0 460 ------- null} h -t 42.319 -s 21 -d 28 -p ack -e 40 -c 0 -i 931 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.3206 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 912 -a 0 -x {3.0 21.0 461 ------- null} + -t 42.3206 -s 21 -d 28 -p ack -e 40 -c 0 -i 932 -a 1 -x {21.0 3.0 461 ------- null} - -t 42.3206 -s 21 -d 28 -p ack -e 40 -c 0 -i 932 -a 1 -x {21.0 3.0 461 ------- null} h -t 42.3206 -s 21 -d 28 -p ack -e 40 -c 0 -i 932 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.3222 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {3.0 21.0 462 ------- null} + -t 42.3222 -s 21 -d 28 -p ack -e 40 -c 0 -i 933 -a 1 -x {21.0 3.0 462 ------- null} - -t 42.3222 -s 21 -d 28 -p ack -e 40 -c 0 -i 933 -a 1 -x {21.0 3.0 462 ------- null} h -t 42.3222 -s 21 -d 28 -p ack -e 40 -c 0 -i 933 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.3238 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 914 -a 0 -x {3.0 21.0 463 ------- null} + -t 42.3238 -s 21 -d 28 -p ack -e 40 -c 0 -i 934 -a 1 -x {21.0 3.0 463 ------- null} - -t 42.3238 -s 21 -d 28 -p ack -e 40 -c 0 -i 934 -a 1 -x {21.0 3.0 463 ------- null} h -t 42.3238 -s 21 -d 28 -p ack -e 40 -c 0 -i 934 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.3254 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {3.0 21.0 464 ------- null} + -t 42.3254 -s 21 -d 28 -p ack -e 40 -c 0 -i 935 -a 1 -x {21.0 3.0 464 ------- null} - -t 42.3254 -s 21 -d 28 -p ack -e 40 -c 0 -i 935 -a 1 -x {21.0 3.0 464 ------- null} h -t 42.3254 -s 21 -d 28 -p ack -e 40 -c 0 -i 935 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.327 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 916 -a 0 -x {3.0 21.0 465 ------- null} + -t 42.327 -s 21 -d 28 -p ack -e 40 -c 0 -i 936 -a 1 -x {21.0 3.0 465 ------- null} - -t 42.327 -s 21 -d 28 -p ack -e 40 -c 0 -i 936 -a 1 -x {21.0 3.0 465 ------- null} h -t 42.327 -s 21 -d 28 -p ack -e 40 -c 0 -i 936 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.3286 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {3.0 21.0 466 ------- null} + -t 42.3286 -s 21 -d 28 -p ack -e 40 -c 0 -i 937 -a 1 -x {21.0 3.0 466 ------- null} - -t 42.3286 -s 21 -d 28 -p ack -e 40 -c 0 -i 937 -a 1 -x {21.0 3.0 466 ------- null} h -t 42.3286 -s 21 -d 28 -p ack -e 40 -c 0 -i 937 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.3302 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 918 -a 0 -x {3.0 21.0 467 ------- null} + -t 42.3302 -s 21 -d 28 -p ack -e 40 -c 0 -i 938 -a 1 -x {21.0 3.0 467 ------- null} - -t 42.3302 -s 21 -d 28 -p ack -e 40 -c 0 -i 938 -a 1 -x {21.0 3.0 467 ------- null} h -t 42.3302 -s 21 -d 28 -p ack -e 40 -c 0 -i 938 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.3318 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {3.0 21.0 468 ------- null} + -t 42.3318 -s 21 -d 28 -p ack -e 40 -c 0 -i 939 -a 1 -x {21.0 3.0 468 ------- null} - -t 42.3318 -s 21 -d 28 -p ack -e 40 -c 0 -i 939 -a 1 -x {21.0 3.0 468 ------- null} h -t 42.3318 -s 21 -d 28 -p ack -e 40 -c 0 -i 939 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.3334 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 920 -a 0 -x {3.0 21.0 469 ------- null} + -t 42.3334 -s 21 -d 28 -p ack -e 40 -c 0 -i 940 -a 1 -x {21.0 3.0 469 ------- null} - -t 42.3334 -s 21 -d 28 -p ack -e 40 -c 0 -i 940 -a 1 -x {21.0 3.0 469 ------- null} h -t 42.3334 -s 21 -d 28 -p ack -e 40 -c 0 -i 940 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.335 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {3.0 21.0 470 ------- null} + -t 42.335 -s 21 -d 28 -p ack -e 40 -c 0 -i 941 -a 1 -x {21.0 3.0 470 ------- null} - -t 42.335 -s 21 -d 28 -p ack -e 40 -c 0 -i 941 -a 1 -x {21.0 3.0 470 ------- null} h -t 42.335 -s 21 -d 28 -p ack -e 40 -c 0 -i 941 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.6547 -s 21 -d 28 -p ack -e 40 -c 0 -i 922 -a 1 -x {21.0 3.0 451 ------- null} + -t 42.6547 -s 28 -d 1 -p ack -e 40 -c 0 -i 922 -a 1 -x {21.0 3.0 451 ------- null} - -t 42.6547 -s 28 -d 1 -p ack -e 40 -c 0 -i 922 -a 1 -x {21.0 3.0 451 ------- null} h -t 42.6547 -s 28 -d 1 -p ack -e 40 -c 0 -i 922 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.6563 -s 21 -d 28 -p ack -e 40 -c 0 -i 923 -a 1 -x {21.0 3.0 452 ------- null} + -t 42.6563 -s 28 -d 1 -p ack -e 40 -c 0 -i 923 -a 1 -x {21.0 3.0 452 ------- null} - -t 42.6563 -s 28 -d 1 -p ack -e 40 -c 0 -i 923 -a 1 -x {21.0 3.0 452 ------- null} h -t 42.6563 -s 28 -d 1 -p ack -e 40 -c 0 -i 923 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.6579 -s 21 -d 28 -p ack -e 40 -c 0 -i 924 -a 1 -x {21.0 3.0 453 ------- null} + -t 42.6579 -s 28 -d 1 -p ack -e 40 -c 0 -i 924 -a 1 -x {21.0 3.0 453 ------- null} - -t 42.6579 -s 28 -d 1 -p ack -e 40 -c 0 -i 924 -a 1 -x {21.0 3.0 453 ------- null} h -t 42.6579 -s 28 -d 1 -p ack -e 40 -c 0 -i 924 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.6595 -s 21 -d 28 -p ack -e 40 -c 0 -i 925 -a 1 -x {21.0 3.0 454 ------- null} + -t 42.6595 -s 28 -d 1 -p ack -e 40 -c 0 -i 925 -a 1 -x {21.0 3.0 454 ------- null} - -t 42.6595 -s 28 -d 1 -p ack -e 40 -c 0 -i 925 -a 1 -x {21.0 3.0 454 ------- null} h -t 42.6595 -s 28 -d 1 -p ack -e 40 -c 0 -i 925 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.6611 -s 21 -d 28 -p ack -e 40 -c 0 -i 926 -a 1 -x {21.0 3.0 455 ------- null} + -t 42.6611 -s 28 -d 1 -p ack -e 40 -c 0 -i 926 -a 1 -x {21.0 3.0 455 ------- null} - -t 42.6611 -s 28 -d 1 -p ack -e 40 -c 0 -i 926 -a 1 -x {21.0 3.0 455 ------- null} h -t 42.6611 -s 28 -d 1 -p ack -e 40 -c 0 -i 926 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.6627 -s 21 -d 28 -p ack -e 40 -c 0 -i 927 -a 1 -x {21.0 3.0 456 ------- null} + -t 42.6627 -s 28 -d 1 -p ack -e 40 -c 0 -i 927 -a 1 -x {21.0 3.0 456 ------- null} - -t 42.6627 -s 28 -d 1 -p ack -e 40 -c 0 -i 927 -a 1 -x {21.0 3.0 456 ------- null} h -t 42.6627 -s 28 -d 1 -p ack -e 40 -c 0 -i 927 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.6643 -s 21 -d 28 -p ack -e 40 -c 0 -i 928 -a 1 -x {21.0 3.0 457 ------- null} + -t 42.6643 -s 28 -d 1 -p ack -e 40 -c 0 -i 928 -a 1 -x {21.0 3.0 457 ------- null} - -t 42.6643 -s 28 -d 1 -p ack -e 40 -c 0 -i 928 -a 1 -x {21.0 3.0 457 ------- null} h -t 42.6643 -s 28 -d 1 -p ack -e 40 -c 0 -i 928 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.6659 -s 21 -d 28 -p ack -e 40 -c 0 -i 929 -a 1 -x {21.0 3.0 458 ------- null} + -t 42.6659 -s 28 -d 1 -p ack -e 40 -c 0 -i 929 -a 1 -x {21.0 3.0 458 ------- null} - -t 42.6659 -s 28 -d 1 -p ack -e 40 -c 0 -i 929 -a 1 -x {21.0 3.0 458 ------- null} h -t 42.6659 -s 28 -d 1 -p ack -e 40 -c 0 -i 929 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.6675 -s 21 -d 28 -p ack -e 40 -c 0 -i 930 -a 1 -x {21.0 3.0 459 ------- null} + -t 42.6675 -s 28 -d 1 -p ack -e 40 -c 0 -i 930 -a 1 -x {21.0 3.0 459 ------- null} - -t 42.6675 -s 28 -d 1 -p ack -e 40 -c 0 -i 930 -a 1 -x {21.0 3.0 459 ------- null} h -t 42.6675 -s 28 -d 1 -p ack -e 40 -c 0 -i 930 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.6691 -s 21 -d 28 -p ack -e 40 -c 0 -i 931 -a 1 -x {21.0 3.0 460 ------- null} + -t 42.6691 -s 28 -d 1 -p ack -e 40 -c 0 -i 931 -a 1 -x {21.0 3.0 460 ------- null} - -t 42.6691 -s 28 -d 1 -p ack -e 40 -c 0 -i 931 -a 1 -x {21.0 3.0 460 ------- null} h -t 42.6691 -s 28 -d 1 -p ack -e 40 -c 0 -i 931 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.6707 -s 21 -d 28 -p ack -e 40 -c 0 -i 932 -a 1 -x {21.0 3.0 461 ------- null} + -t 42.6707 -s 28 -d 1 -p ack -e 40 -c 0 -i 932 -a 1 -x {21.0 3.0 461 ------- null} - -t 42.6707 -s 28 -d 1 -p ack -e 40 -c 0 -i 932 -a 1 -x {21.0 3.0 461 ------- null} h -t 42.6707 -s 28 -d 1 -p ack -e 40 -c 0 -i 932 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.6723 -s 21 -d 28 -p ack -e 40 -c 0 -i 933 -a 1 -x {21.0 3.0 462 ------- null} + -t 42.6723 -s 28 -d 1 -p ack -e 40 -c 0 -i 933 -a 1 -x {21.0 3.0 462 ------- null} - -t 42.6723 -s 28 -d 1 -p ack -e 40 -c 0 -i 933 -a 1 -x {21.0 3.0 462 ------- null} h -t 42.6723 -s 28 -d 1 -p ack -e 40 -c 0 -i 933 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.6739 -s 21 -d 28 -p ack -e 40 -c 0 -i 934 -a 1 -x {21.0 3.0 463 ------- null} + -t 42.6739 -s 28 -d 1 -p ack -e 40 -c 0 -i 934 -a 1 -x {21.0 3.0 463 ------- null} - -t 42.6739 -s 28 -d 1 -p ack -e 40 -c 0 -i 934 -a 1 -x {21.0 3.0 463 ------- null} h -t 42.6739 -s 28 -d 1 -p ack -e 40 -c 0 -i 934 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.6755 -s 21 -d 28 -p ack -e 40 -c 0 -i 935 -a 1 -x {21.0 3.0 464 ------- null} + -t 42.6755 -s 28 -d 1 -p ack -e 40 -c 0 -i 935 -a 1 -x {21.0 3.0 464 ------- null} - -t 42.6755 -s 28 -d 1 -p ack -e 40 -c 0 -i 935 -a 1 -x {21.0 3.0 464 ------- null} h -t 42.6755 -s 28 -d 1 -p ack -e 40 -c 0 -i 935 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.6771 -s 21 -d 28 -p ack -e 40 -c 0 -i 936 -a 1 -x {21.0 3.0 465 ------- null} + -t 42.6771 -s 28 -d 1 -p ack -e 40 -c 0 -i 936 -a 1 -x {21.0 3.0 465 ------- null} - -t 42.6771 -s 28 -d 1 -p ack -e 40 -c 0 -i 936 -a 1 -x {21.0 3.0 465 ------- null} h -t 42.6771 -s 28 -d 1 -p ack -e 40 -c 0 -i 936 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.6787 -s 21 -d 28 -p ack -e 40 -c 0 -i 937 -a 1 -x {21.0 3.0 466 ------- null} + -t 42.6787 -s 28 -d 1 -p ack -e 40 -c 0 -i 937 -a 1 -x {21.0 3.0 466 ------- null} - -t 42.6787 -s 28 -d 1 -p ack -e 40 -c 0 -i 937 -a 1 -x {21.0 3.0 466 ------- null} h -t 42.6787 -s 28 -d 1 -p ack -e 40 -c 0 -i 937 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.6803 -s 21 -d 28 -p ack -e 40 -c 0 -i 938 -a 1 -x {21.0 3.0 467 ------- null} + -t 42.6803 -s 28 -d 1 -p ack -e 40 -c 0 -i 938 -a 1 -x {21.0 3.0 467 ------- null} - -t 42.6803 -s 28 -d 1 -p ack -e 40 -c 0 -i 938 -a 1 -x {21.0 3.0 467 ------- null} h -t 42.6803 -s 28 -d 1 -p ack -e 40 -c 0 -i 938 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.6819 -s 21 -d 28 -p ack -e 40 -c 0 -i 939 -a 1 -x {21.0 3.0 468 ------- null} + -t 42.6819 -s 28 -d 1 -p ack -e 40 -c 0 -i 939 -a 1 -x {21.0 3.0 468 ------- null} - -t 42.6819 -s 28 -d 1 -p ack -e 40 -c 0 -i 939 -a 1 -x {21.0 3.0 468 ------- null} h -t 42.6819 -s 28 -d 1 -p ack -e 40 -c 0 -i 939 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.6835 -s 21 -d 28 -p ack -e 40 -c 0 -i 940 -a 1 -x {21.0 3.0 469 ------- null} + -t 42.6835 -s 28 -d 1 -p ack -e 40 -c 0 -i 940 -a 1 -x {21.0 3.0 469 ------- null} - -t 42.6835 -s 28 -d 1 -p ack -e 40 -c 0 -i 940 -a 1 -x {21.0 3.0 469 ------- null} h -t 42.6835 -s 28 -d 1 -p ack -e 40 -c 0 -i 940 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.6851 -s 21 -d 28 -p ack -e 40 -c 0 -i 941 -a 1 -x {21.0 3.0 470 ------- null} + -t 42.6851 -s 28 -d 1 -p ack -e 40 -c 0 -i 941 -a 1 -x {21.0 3.0 470 ------- null} - -t 42.6851 -s 28 -d 1 -p ack -e 40 -c 0 -i 941 -a 1 -x {21.0 3.0 470 ------- null} h -t 42.6851 -s 28 -d 1 -p ack -e 40 -c 0 -i 941 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.9547 -s 28 -d 1 -p ack -e 40 -c 0 -i 922 -a 1 -x {21.0 3.0 451 ------- null} + -t 42.9547 -s 1 -d 3 -p ack -e 40 -c 0 -i 922 -a 1 -x {21.0 3.0 451 ------- null} - -t 42.9547 -s 1 -d 3 -p ack -e 40 -c 0 -i 922 -a 1 -x {21.0 3.0 451 ------- null} h -t 42.9547 -s 1 -d 3 -p ack -e 40 -c 0 -i 922 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.9563 -s 28 -d 1 -p ack -e 40 -c 0 -i 923 -a 1 -x {21.0 3.0 452 ------- null} + -t 42.9563 -s 1 -d 3 -p ack -e 40 -c 0 -i 923 -a 1 -x {21.0 3.0 452 ------- null} - -t 42.9563 -s 1 -d 3 -p ack -e 40 -c 0 -i 923 -a 1 -x {21.0 3.0 452 ------- null} h -t 42.9563 -s 1 -d 3 -p ack -e 40 -c 0 -i 923 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.9579 -s 28 -d 1 -p ack -e 40 -c 0 -i 924 -a 1 -x {21.0 3.0 453 ------- null} + -t 42.9579 -s 1 -d 3 -p ack -e 40 -c 0 -i 924 -a 1 -x {21.0 3.0 453 ------- null} - -t 42.9579 -s 1 -d 3 -p ack -e 40 -c 0 -i 924 -a 1 -x {21.0 3.0 453 ------- null} h -t 42.9579 -s 1 -d 3 -p ack -e 40 -c 0 -i 924 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.9595 -s 28 -d 1 -p ack -e 40 -c 0 -i 925 -a 1 -x {21.0 3.0 454 ------- null} + -t 42.9595 -s 1 -d 3 -p ack -e 40 -c 0 -i 925 -a 1 -x {21.0 3.0 454 ------- null} - -t 42.9595 -s 1 -d 3 -p ack -e 40 -c 0 -i 925 -a 1 -x {21.0 3.0 454 ------- null} h -t 42.9595 -s 1 -d 3 -p ack -e 40 -c 0 -i 925 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.9611 -s 28 -d 1 -p ack -e 40 -c 0 -i 926 -a 1 -x {21.0 3.0 455 ------- null} + -t 42.9611 -s 1 -d 3 -p ack -e 40 -c 0 -i 926 -a 1 -x {21.0 3.0 455 ------- null} - -t 42.9611 -s 1 -d 3 -p ack -e 40 -c 0 -i 926 -a 1 -x {21.0 3.0 455 ------- null} h -t 42.9611 -s 1 -d 3 -p ack -e 40 -c 0 -i 926 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.9627 -s 28 -d 1 -p ack -e 40 -c 0 -i 927 -a 1 -x {21.0 3.0 456 ------- null} + -t 42.9627 -s 1 -d 3 -p ack -e 40 -c 0 -i 927 -a 1 -x {21.0 3.0 456 ------- null} - -t 42.9627 -s 1 -d 3 -p ack -e 40 -c 0 -i 927 -a 1 -x {21.0 3.0 456 ------- null} h -t 42.9627 -s 1 -d 3 -p ack -e 40 -c 0 -i 927 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.9643 -s 28 -d 1 -p ack -e 40 -c 0 -i 928 -a 1 -x {21.0 3.0 457 ------- null} + -t 42.9643 -s 1 -d 3 -p ack -e 40 -c 0 -i 928 -a 1 -x {21.0 3.0 457 ------- null} - -t 42.9643 -s 1 -d 3 -p ack -e 40 -c 0 -i 928 -a 1 -x {21.0 3.0 457 ------- null} h -t 42.9643 -s 1 -d 3 -p ack -e 40 -c 0 -i 928 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.9659 -s 28 -d 1 -p ack -e 40 -c 0 -i 929 -a 1 -x {21.0 3.0 458 ------- null} + -t 42.9659 -s 1 -d 3 -p ack -e 40 -c 0 -i 929 -a 1 -x {21.0 3.0 458 ------- null} - -t 42.9659 -s 1 -d 3 -p ack -e 40 -c 0 -i 929 -a 1 -x {21.0 3.0 458 ------- null} h -t 42.9659 -s 1 -d 3 -p ack -e 40 -c 0 -i 929 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.9675 -s 28 -d 1 -p ack -e 40 -c 0 -i 930 -a 1 -x {21.0 3.0 459 ------- null} + -t 42.9675 -s 1 -d 3 -p ack -e 40 -c 0 -i 930 -a 1 -x {21.0 3.0 459 ------- null} - -t 42.9675 -s 1 -d 3 -p ack -e 40 -c 0 -i 930 -a 1 -x {21.0 3.0 459 ------- null} h -t 42.9675 -s 1 -d 3 -p ack -e 40 -c 0 -i 930 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.9691 -s 28 -d 1 -p ack -e 40 -c 0 -i 931 -a 1 -x {21.0 3.0 460 ------- null} + -t 42.9691 -s 1 -d 3 -p ack -e 40 -c 0 -i 931 -a 1 -x {21.0 3.0 460 ------- null} - -t 42.9691 -s 1 -d 3 -p ack -e 40 -c 0 -i 931 -a 1 -x {21.0 3.0 460 ------- null} h -t 42.9691 -s 1 -d 3 -p ack -e 40 -c 0 -i 931 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.9707 -s 28 -d 1 -p ack -e 40 -c 0 -i 932 -a 1 -x {21.0 3.0 461 ------- null} + -t 42.9707 -s 1 -d 3 -p ack -e 40 -c 0 -i 932 -a 1 -x {21.0 3.0 461 ------- null} - -t 42.9707 -s 1 -d 3 -p ack -e 40 -c 0 -i 932 -a 1 -x {21.0 3.0 461 ------- null} h -t 42.9707 -s 1 -d 3 -p ack -e 40 -c 0 -i 932 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.9723 -s 28 -d 1 -p ack -e 40 -c 0 -i 933 -a 1 -x {21.0 3.0 462 ------- null} + -t 42.9723 -s 1 -d 3 -p ack -e 40 -c 0 -i 933 -a 1 -x {21.0 3.0 462 ------- null} - -t 42.9723 -s 1 -d 3 -p ack -e 40 -c 0 -i 933 -a 1 -x {21.0 3.0 462 ------- null} h -t 42.9723 -s 1 -d 3 -p ack -e 40 -c 0 -i 933 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.9739 -s 28 -d 1 -p ack -e 40 -c 0 -i 934 -a 1 -x {21.0 3.0 463 ------- null} + -t 42.9739 -s 1 -d 3 -p ack -e 40 -c 0 -i 934 -a 1 -x {21.0 3.0 463 ------- null} - -t 42.9739 -s 1 -d 3 -p ack -e 40 -c 0 -i 934 -a 1 -x {21.0 3.0 463 ------- null} h -t 42.9739 -s 1 -d 3 -p ack -e 40 -c 0 -i 934 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.9755 -s 28 -d 1 -p ack -e 40 -c 0 -i 935 -a 1 -x {21.0 3.0 464 ------- null} + -t 42.9755 -s 1 -d 3 -p ack -e 40 -c 0 -i 935 -a 1 -x {21.0 3.0 464 ------- null} - -t 42.9755 -s 1 -d 3 -p ack -e 40 -c 0 -i 935 -a 1 -x {21.0 3.0 464 ------- null} h -t 42.9755 -s 1 -d 3 -p ack -e 40 -c 0 -i 935 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.9771 -s 28 -d 1 -p ack -e 40 -c 0 -i 936 -a 1 -x {21.0 3.0 465 ------- null} + -t 42.9771 -s 1 -d 3 -p ack -e 40 -c 0 -i 936 -a 1 -x {21.0 3.0 465 ------- null} - -t 42.9771 -s 1 -d 3 -p ack -e 40 -c 0 -i 936 -a 1 -x {21.0 3.0 465 ------- null} h -t 42.9771 -s 1 -d 3 -p ack -e 40 -c 0 -i 936 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.9787 -s 28 -d 1 -p ack -e 40 -c 0 -i 937 -a 1 -x {21.0 3.0 466 ------- null} + -t 42.9787 -s 1 -d 3 -p ack -e 40 -c 0 -i 937 -a 1 -x {21.0 3.0 466 ------- null} - -t 42.9787 -s 1 -d 3 -p ack -e 40 -c 0 -i 937 -a 1 -x {21.0 3.0 466 ------- null} h -t 42.9787 -s 1 -d 3 -p ack -e 40 -c 0 -i 937 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.9803 -s 28 -d 1 -p ack -e 40 -c 0 -i 938 -a 1 -x {21.0 3.0 467 ------- null} + -t 42.9803 -s 1 -d 3 -p ack -e 40 -c 0 -i 938 -a 1 -x {21.0 3.0 467 ------- null} - -t 42.9803 -s 1 -d 3 -p ack -e 40 -c 0 -i 938 -a 1 -x {21.0 3.0 467 ------- null} h -t 42.9803 -s 1 -d 3 -p ack -e 40 -c 0 -i 938 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.9819 -s 28 -d 1 -p ack -e 40 -c 0 -i 939 -a 1 -x {21.0 3.0 468 ------- null} + -t 42.9819 -s 1 -d 3 -p ack -e 40 -c 0 -i 939 -a 1 -x {21.0 3.0 468 ------- null} - -t 42.9819 -s 1 -d 3 -p ack -e 40 -c 0 -i 939 -a 1 -x {21.0 3.0 468 ------- null} h -t 42.9819 -s 1 -d 3 -p ack -e 40 -c 0 -i 939 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.9835 -s 28 -d 1 -p ack -e 40 -c 0 -i 940 -a 1 -x {21.0 3.0 469 ------- null} + -t 42.9835 -s 1 -d 3 -p ack -e 40 -c 0 -i 940 -a 1 -x {21.0 3.0 469 ------- null} - -t 42.9835 -s 1 -d 3 -p ack -e 40 -c 0 -i 940 -a 1 -x {21.0 3.0 469 ------- null} h -t 42.9835 -s 1 -d 3 -p ack -e 40 -c 0 -i 940 -a 1 -x {21.0 3.0 -1 ------- null} r -t 42.9851 -s 28 -d 1 -p ack -e 40 -c 0 -i 941 -a 1 -x {21.0 3.0 470 ------- null} + -t 42.9851 -s 1 -d 3 -p ack -e 40 -c 0 -i 941 -a 1 -x {21.0 3.0 470 ------- null} - -t 42.9851 -s 1 -d 3 -p ack -e 40 -c 0 -i 941 -a 1 -x {21.0 3.0 470 ------- null} h -t 42.9851 -s 1 -d 3 -p ack -e 40 -c 0 -i 941 -a 1 -x {21.0 3.0 -1 ------- null} r -t 43.0948 -s 1 -d 3 -p ack -e 40 -c 0 -i 922 -a 1 -x {21.0 3.0 451 ------- null} + -t 43.0948 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 942 -a 0 -x {3.0 21.0 471 ------- null} - -t 43.0948 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 942 -a 0 -x {3.0 21.0 471 ------- null} h -t 43.0948 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 942 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.0964 -s 1 -d 3 -p ack -e 40 -c 0 -i 923 -a 1 -x {21.0 3.0 452 ------- null} + -t 43.0964 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {3.0 21.0 472 ------- null} - -t 43.0964 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {3.0 21.0 472 ------- null} h -t 43.0964 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.098 -s 1 -d 3 -p ack -e 40 -c 0 -i 924 -a 1 -x {21.0 3.0 453 ------- null} + -t 43.098 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 944 -a 0 -x {3.0 21.0 473 ------- null} - -t 43.098 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 944 -a 0 -x {3.0 21.0 473 ------- null} h -t 43.098 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 944 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.0996 -s 1 -d 3 -p ack -e 40 -c 0 -i 925 -a 1 -x {21.0 3.0 454 ------- null} + -t 43.0996 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {3.0 21.0 474 ------- null} - -t 43.0996 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {3.0 21.0 474 ------- null} h -t 43.0996 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.1012 -s 1 -d 3 -p ack -e 40 -c 0 -i 926 -a 1 -x {21.0 3.0 455 ------- null} + -t 43.1012 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 946 -a 0 -x {3.0 21.0 475 ------- null} - -t 43.1012 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 946 -a 0 -x {3.0 21.0 475 ------- null} h -t 43.1012 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 946 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.1028 -s 1 -d 3 -p ack -e 40 -c 0 -i 927 -a 1 -x {21.0 3.0 456 ------- null} + -t 43.1028 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {3.0 21.0 476 ------- null} - -t 43.1028 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {3.0 21.0 476 ------- null} h -t 43.1028 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.1044 -s 1 -d 3 -p ack -e 40 -c 0 -i 928 -a 1 -x {21.0 3.0 457 ------- null} + -t 43.1044 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 948 -a 0 -x {3.0 21.0 477 ------- null} - -t 43.1044 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 948 -a 0 -x {3.0 21.0 477 ------- null} h -t 43.1044 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 948 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.106 -s 1 -d 3 -p ack -e 40 -c 0 -i 929 -a 1 -x {21.0 3.0 458 ------- null} + -t 43.106 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {3.0 21.0 478 ------- null} - -t 43.106 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {3.0 21.0 478 ------- null} h -t 43.106 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.1076 -s 1 -d 3 -p ack -e 40 -c 0 -i 930 -a 1 -x {21.0 3.0 459 ------- null} + -t 43.1076 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 950 -a 0 -x {3.0 21.0 479 ------- null} - -t 43.1076 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 950 -a 0 -x {3.0 21.0 479 ------- null} h -t 43.1076 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 950 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.1092 -s 1 -d 3 -p ack -e 40 -c 0 -i 931 -a 1 -x {21.0 3.0 460 ------- null} + -t 43.1092 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {3.0 21.0 480 ------- null} - -t 43.1092 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {3.0 21.0 480 ------- null} h -t 43.1092 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.1108 -s 1 -d 3 -p ack -e 40 -c 0 -i 932 -a 1 -x {21.0 3.0 461 ------- null} + -t 43.1108 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 952 -a 0 -x {3.0 21.0 481 ------- null} - -t 43.1108 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 952 -a 0 -x {3.0 21.0 481 ------- null} h -t 43.1108 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 952 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.1124 -s 1 -d 3 -p ack -e 40 -c 0 -i 933 -a 1 -x {21.0 3.0 462 ------- null} + -t 43.1124 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {3.0 21.0 482 ------- null} - -t 43.1124 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {3.0 21.0 482 ------- null} h -t 43.1124 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.114 -s 1 -d 3 -p ack -e 40 -c 0 -i 934 -a 1 -x {21.0 3.0 463 ------- null} + -t 43.114 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 954 -a 0 -x {3.0 21.0 483 ------- null} - -t 43.114 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 954 -a 0 -x {3.0 21.0 483 ------- null} h -t 43.114 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 954 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.1156 -s 1 -d 3 -p ack -e 40 -c 0 -i 935 -a 1 -x {21.0 3.0 464 ------- null} + -t 43.1156 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {3.0 21.0 484 ------- null} - -t 43.1156 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {3.0 21.0 484 ------- null} h -t 43.1156 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.1172 -s 1 -d 3 -p ack -e 40 -c 0 -i 936 -a 1 -x {21.0 3.0 465 ------- null} + -t 43.1172 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 956 -a 0 -x {3.0 21.0 485 ------- null} - -t 43.1172 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 956 -a 0 -x {3.0 21.0 485 ------- null} h -t 43.1172 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 956 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.1188 -s 1 -d 3 -p ack -e 40 -c 0 -i 937 -a 1 -x {21.0 3.0 466 ------- null} + -t 43.1188 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {3.0 21.0 486 ------- null} - -t 43.1188 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {3.0 21.0 486 ------- null} h -t 43.1188 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.1204 -s 1 -d 3 -p ack -e 40 -c 0 -i 938 -a 1 -x {21.0 3.0 467 ------- null} + -t 43.1204 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 958 -a 0 -x {3.0 21.0 487 ------- null} - -t 43.1204 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 958 -a 0 -x {3.0 21.0 487 ------- null} h -t 43.1204 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 958 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.122 -s 1 -d 3 -p ack -e 40 -c 0 -i 939 -a 1 -x {21.0 3.0 468 ------- null} + -t 43.122 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {3.0 21.0 488 ------- null} - -t 43.122 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {3.0 21.0 488 ------- null} h -t 43.122 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.1236 -s 1 -d 3 -p ack -e 40 -c 0 -i 940 -a 1 -x {21.0 3.0 469 ------- null} + -t 43.1236 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 960 -a 0 -x {3.0 21.0 489 ------- null} - -t 43.1236 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 960 -a 0 -x {3.0 21.0 489 ------- null} h -t 43.1236 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 960 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.1252 -s 1 -d 3 -p ack -e 40 -c 0 -i 941 -a 1 -x {21.0 3.0 470 ------- null} + -t 43.1252 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {3.0 21.0 490 ------- null} - -t 43.1252 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {3.0 21.0 490 ------- null} h -t 43.1252 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.2364 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 942 -a 0 -x {3.0 21.0 471 ------- null} + -t 43.2364 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 942 -a 0 -x {3.0 21.0 471 ------- null} - -t 43.2364 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 942 -a 0 -x {3.0 21.0 471 ------- null} h -t 43.2364 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 942 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.238 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {3.0 21.0 472 ------- null} + -t 43.238 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {3.0 21.0 472 ------- null} - -t 43.238 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {3.0 21.0 472 ------- null} h -t 43.238 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.2396 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 944 -a 0 -x {3.0 21.0 473 ------- null} + -t 43.2396 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 944 -a 0 -x {3.0 21.0 473 ------- null} - -t 43.2396 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 944 -a 0 -x {3.0 21.0 473 ------- null} h -t 43.2396 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 944 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.2412 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {3.0 21.0 474 ------- null} + -t 43.2412 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {3.0 21.0 474 ------- null} - -t 43.2412 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {3.0 21.0 474 ------- null} h -t 43.2412 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.2428 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 946 -a 0 -x {3.0 21.0 475 ------- null} + -t 43.2428 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 946 -a 0 -x {3.0 21.0 475 ------- null} - -t 43.2428 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 946 -a 0 -x {3.0 21.0 475 ------- null} h -t 43.2428 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 946 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.2444 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {3.0 21.0 476 ------- null} + -t 43.2444 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {3.0 21.0 476 ------- null} - -t 43.2444 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {3.0 21.0 476 ------- null} h -t 43.2444 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.246 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 948 -a 0 -x {3.0 21.0 477 ------- null} + -t 43.246 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 948 -a 0 -x {3.0 21.0 477 ------- null} - -t 43.246 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 948 -a 0 -x {3.0 21.0 477 ------- null} h -t 43.246 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 948 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.2476 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {3.0 21.0 478 ------- null} + -t 43.2476 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {3.0 21.0 478 ------- null} - -t 43.2476 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {3.0 21.0 478 ------- null} h -t 43.2476 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.2492 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 950 -a 0 -x {3.0 21.0 479 ------- null} + -t 43.2492 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 950 -a 0 -x {3.0 21.0 479 ------- null} - -t 43.2492 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 950 -a 0 -x {3.0 21.0 479 ------- null} h -t 43.2492 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 950 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.2508 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {3.0 21.0 480 ------- null} + -t 43.2508 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {3.0 21.0 480 ------- null} - -t 43.2508 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {3.0 21.0 480 ------- null} h -t 43.2508 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.2524 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 952 -a 0 -x {3.0 21.0 481 ------- null} + -t 43.2524 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 952 -a 0 -x {3.0 21.0 481 ------- null} - -t 43.2524 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 952 -a 0 -x {3.0 21.0 481 ------- null} h -t 43.2524 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 952 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.254 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {3.0 21.0 482 ------- null} + -t 43.254 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {3.0 21.0 482 ------- null} - -t 43.254 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {3.0 21.0 482 ------- null} h -t 43.254 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.2556 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 954 -a 0 -x {3.0 21.0 483 ------- null} + -t 43.2556 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 954 -a 0 -x {3.0 21.0 483 ------- null} - -t 43.2556 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 954 -a 0 -x {3.0 21.0 483 ------- null} h -t 43.2556 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 954 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.2572 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {3.0 21.0 484 ------- null} + -t 43.2572 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {3.0 21.0 484 ------- null} - -t 43.2572 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {3.0 21.0 484 ------- null} h -t 43.2572 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.2588 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 956 -a 0 -x {3.0 21.0 485 ------- null} + -t 43.2588 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 956 -a 0 -x {3.0 21.0 485 ------- null} - -t 43.2588 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 956 -a 0 -x {3.0 21.0 485 ------- null} h -t 43.2588 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 956 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.2604 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {3.0 21.0 486 ------- null} + -t 43.2604 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {3.0 21.0 486 ------- null} - -t 43.2604 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {3.0 21.0 486 ------- null} h -t 43.2604 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.262 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 958 -a 0 -x {3.0 21.0 487 ------- null} + -t 43.262 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 958 -a 0 -x {3.0 21.0 487 ------- null} - -t 43.262 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 958 -a 0 -x {3.0 21.0 487 ------- null} h -t 43.262 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 958 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.2636 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {3.0 21.0 488 ------- null} + -t 43.2636 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {3.0 21.0 488 ------- null} - -t 43.2636 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {3.0 21.0 488 ------- null} h -t 43.2636 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.2652 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 960 -a 0 -x {3.0 21.0 489 ------- null} + -t 43.2652 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 960 -a 0 -x {3.0 21.0 489 ------- null} - -t 43.2652 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 960 -a 0 -x {3.0 21.0 489 ------- null} h -t 43.2652 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 960 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.2668 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {3.0 21.0 490 ------- null} + -t 43.2668 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {3.0 21.0 490 ------- null} - -t 43.2668 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {3.0 21.0 490 ------- null} h -t 43.2668 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.538 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 942 -a 0 -x {3.0 21.0 471 ------- null} + -t 43.538 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 942 -a 0 -x {3.0 21.0 471 ------- null} - -t 43.538 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 942 -a 0 -x {3.0 21.0 471 ------- null} h -t 43.538 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 942 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.5396 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {3.0 21.0 472 ------- null} + -t 43.5396 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {3.0 21.0 472 ------- null} - -t 43.5396 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {3.0 21.0 472 ------- null} h -t 43.5396 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.5412 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 944 -a 0 -x {3.0 21.0 473 ------- null} + -t 43.5412 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 944 -a 0 -x {3.0 21.0 473 ------- null} - -t 43.5412 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 944 -a 0 -x {3.0 21.0 473 ------- null} h -t 43.5412 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 944 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.5428 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {3.0 21.0 474 ------- null} + -t 43.5428 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {3.0 21.0 474 ------- null} - -t 43.5428 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {3.0 21.0 474 ------- null} h -t 43.5428 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.5444 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 946 -a 0 -x {3.0 21.0 475 ------- null} + -t 43.5444 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 946 -a 0 -x {3.0 21.0 475 ------- null} - -t 43.5444 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 946 -a 0 -x {3.0 21.0 475 ------- null} h -t 43.5444 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 946 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.546 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {3.0 21.0 476 ------- null} + -t 43.546 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {3.0 21.0 476 ------- null} - -t 43.546 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {3.0 21.0 476 ------- null} h -t 43.546 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.5476 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 948 -a 0 -x {3.0 21.0 477 ------- null} + -t 43.5476 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 948 -a 0 -x {3.0 21.0 477 ------- null} - -t 43.5476 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 948 -a 0 -x {3.0 21.0 477 ------- null} h -t 43.5476 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 948 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.5492 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {3.0 21.0 478 ------- null} + -t 43.5492 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {3.0 21.0 478 ------- null} - -t 43.5492 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {3.0 21.0 478 ------- null} h -t 43.5492 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.5508 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 950 -a 0 -x {3.0 21.0 479 ------- null} + -t 43.5508 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 950 -a 0 -x {3.0 21.0 479 ------- null} - -t 43.5508 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 950 -a 0 -x {3.0 21.0 479 ------- null} h -t 43.5508 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 950 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.5524 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {3.0 21.0 480 ------- null} + -t 43.5524 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {3.0 21.0 480 ------- null} - -t 43.5524 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {3.0 21.0 480 ------- null} h -t 43.5524 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.554 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 952 -a 0 -x {3.0 21.0 481 ------- null} + -t 43.554 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 952 -a 0 -x {3.0 21.0 481 ------- null} - -t 43.554 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 952 -a 0 -x {3.0 21.0 481 ------- null} h -t 43.554 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 952 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.5556 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {3.0 21.0 482 ------- null} + -t 43.5556 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {3.0 21.0 482 ------- null} - -t 43.5556 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {3.0 21.0 482 ------- null} h -t 43.5556 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.5572 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 954 -a 0 -x {3.0 21.0 483 ------- null} + -t 43.5572 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 954 -a 0 -x {3.0 21.0 483 ------- null} - -t 43.5572 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 954 -a 0 -x {3.0 21.0 483 ------- null} h -t 43.5572 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 954 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.5588 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {3.0 21.0 484 ------- null} + -t 43.5588 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {3.0 21.0 484 ------- null} - -t 43.5588 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {3.0 21.0 484 ------- null} h -t 43.5588 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.5604 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 956 -a 0 -x {3.0 21.0 485 ------- null} + -t 43.5604 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 956 -a 0 -x {3.0 21.0 485 ------- null} - -t 43.5604 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 956 -a 0 -x {3.0 21.0 485 ------- null} h -t 43.5604 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 956 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.562 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {3.0 21.0 486 ------- null} + -t 43.562 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {3.0 21.0 486 ------- null} - -t 43.562 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {3.0 21.0 486 ------- null} h -t 43.562 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.5636 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 958 -a 0 -x {3.0 21.0 487 ------- null} + -t 43.5636 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 958 -a 0 -x {3.0 21.0 487 ------- null} - -t 43.5636 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 958 -a 0 -x {3.0 21.0 487 ------- null} h -t 43.5636 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 958 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.5652 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {3.0 21.0 488 ------- null} + -t 43.5652 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {3.0 21.0 488 ------- null} - -t 43.5652 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {3.0 21.0 488 ------- null} h -t 43.5652 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.5668 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 960 -a 0 -x {3.0 21.0 489 ------- null} + -t 43.5668 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 960 -a 0 -x {3.0 21.0 489 ------- null} - -t 43.5668 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 960 -a 0 -x {3.0 21.0 489 ------- null} h -t 43.5668 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 960 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.5684 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {3.0 21.0 490 ------- null} + -t 43.5684 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {3.0 21.0 490 ------- null} - -t 43.5684 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {3.0 21.0 490 ------- null} h -t 43.5684 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {3.0 21.0 -1 ------- null} r -t 43.8896 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 942 -a 0 -x {3.0 21.0 471 ------- null} + -t 43.8896 -s 21 -d 28 -p ack -e 40 -c 0 -i 962 -a 1 -x {21.0 3.0 471 ------- null} - -t 43.8896 -s 21 -d 28 -p ack -e 40 -c 0 -i 962 -a 1 -x {21.0 3.0 471 ------- null} h -t 43.8896 -s 21 -d 28 -p ack -e 40 -c 0 -i 962 -a 1 -x {21.0 3.0 -1 ------- null} r -t 43.8912 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {3.0 21.0 472 ------- null} + -t 43.8912 -s 21 -d 28 -p ack -e 40 -c 0 -i 963 -a 1 -x {21.0 3.0 472 ------- null} - -t 43.8912 -s 21 -d 28 -p ack -e 40 -c 0 -i 963 -a 1 -x {21.0 3.0 472 ------- null} h -t 43.8912 -s 21 -d 28 -p ack -e 40 -c 0 -i 963 -a 1 -x {21.0 3.0 -1 ------- null} r -t 43.8928 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 944 -a 0 -x {3.0 21.0 473 ------- null} + -t 43.8928 -s 21 -d 28 -p ack -e 40 -c 0 -i 964 -a 1 -x {21.0 3.0 473 ------- null} - -t 43.8928 -s 21 -d 28 -p ack -e 40 -c 0 -i 964 -a 1 -x {21.0 3.0 473 ------- null} h -t 43.8928 -s 21 -d 28 -p ack -e 40 -c 0 -i 964 -a 1 -x {21.0 3.0 -1 ------- null} r -t 43.8944 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {3.0 21.0 474 ------- null} + -t 43.8944 -s 21 -d 28 -p ack -e 40 -c 0 -i 965 -a 1 -x {21.0 3.0 474 ------- null} - -t 43.8944 -s 21 -d 28 -p ack -e 40 -c 0 -i 965 -a 1 -x {21.0 3.0 474 ------- null} h -t 43.8944 -s 21 -d 28 -p ack -e 40 -c 0 -i 965 -a 1 -x {21.0 3.0 -1 ------- null} r -t 43.896 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 946 -a 0 -x {3.0 21.0 475 ------- null} + -t 43.896 -s 21 -d 28 -p ack -e 40 -c 0 -i 966 -a 1 -x {21.0 3.0 475 ------- null} - -t 43.896 -s 21 -d 28 -p ack -e 40 -c 0 -i 966 -a 1 -x {21.0 3.0 475 ------- null} h -t 43.896 -s 21 -d 28 -p ack -e 40 -c 0 -i 966 -a 1 -x {21.0 3.0 -1 ------- null} r -t 43.8976 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {3.0 21.0 476 ------- null} + -t 43.8976 -s 21 -d 28 -p ack -e 40 -c 0 -i 967 -a 1 -x {21.0 3.0 476 ------- null} - -t 43.8976 -s 21 -d 28 -p ack -e 40 -c 0 -i 967 -a 1 -x {21.0 3.0 476 ------- null} h -t 43.8976 -s 21 -d 28 -p ack -e 40 -c 0 -i 967 -a 1 -x {21.0 3.0 -1 ------- null} r -t 43.8992 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 948 -a 0 -x {3.0 21.0 477 ------- null} + -t 43.8992 -s 21 -d 28 -p ack -e 40 -c 0 -i 968 -a 1 -x {21.0 3.0 477 ------- null} - -t 43.8992 -s 21 -d 28 -p ack -e 40 -c 0 -i 968 -a 1 -x {21.0 3.0 477 ------- null} h -t 43.8992 -s 21 -d 28 -p ack -e 40 -c 0 -i 968 -a 1 -x {21.0 3.0 -1 ------- null} r -t 43.9008 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {3.0 21.0 478 ------- null} + -t 43.9008 -s 21 -d 28 -p ack -e 40 -c 0 -i 969 -a 1 -x {21.0 3.0 478 ------- null} - -t 43.9008 -s 21 -d 28 -p ack -e 40 -c 0 -i 969 -a 1 -x {21.0 3.0 478 ------- null} h -t 43.9008 -s 21 -d 28 -p ack -e 40 -c 0 -i 969 -a 1 -x {21.0 3.0 -1 ------- null} r -t 43.9024 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 950 -a 0 -x {3.0 21.0 479 ------- null} + -t 43.9024 -s 21 -d 28 -p ack -e 40 -c 0 -i 970 -a 1 -x {21.0 3.0 479 ------- null} - -t 43.9024 -s 21 -d 28 -p ack -e 40 -c 0 -i 970 -a 1 -x {21.0 3.0 479 ------- null} h -t 43.9024 -s 21 -d 28 -p ack -e 40 -c 0 -i 970 -a 1 -x {21.0 3.0 -1 ------- null} r -t 43.904 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {3.0 21.0 480 ------- null} + -t 43.904 -s 21 -d 28 -p ack -e 40 -c 0 -i 971 -a 1 -x {21.0 3.0 480 ------- null} - -t 43.904 -s 21 -d 28 -p ack -e 40 -c 0 -i 971 -a 1 -x {21.0 3.0 480 ------- null} h -t 43.904 -s 21 -d 28 -p ack -e 40 -c 0 -i 971 -a 1 -x {21.0 3.0 -1 ------- null} r -t 43.9056 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 952 -a 0 -x {3.0 21.0 481 ------- null} + -t 43.9056 -s 21 -d 28 -p ack -e 40 -c 0 -i 972 -a 1 -x {21.0 3.0 481 ------- null} - -t 43.9056 -s 21 -d 28 -p ack -e 40 -c 0 -i 972 -a 1 -x {21.0 3.0 481 ------- null} h -t 43.9056 -s 21 -d 28 -p ack -e 40 -c 0 -i 972 -a 1 -x {21.0 3.0 -1 ------- null} r -t 43.9072 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {3.0 21.0 482 ------- null} + -t 43.9072 -s 21 -d 28 -p ack -e 40 -c 0 -i 973 -a 1 -x {21.0 3.0 482 ------- null} - -t 43.9072 -s 21 -d 28 -p ack -e 40 -c 0 -i 973 -a 1 -x {21.0 3.0 482 ------- null} h -t 43.9072 -s 21 -d 28 -p ack -e 40 -c 0 -i 973 -a 1 -x {21.0 3.0 -1 ------- null} r -t 43.9088 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 954 -a 0 -x {3.0 21.0 483 ------- null} + -t 43.9088 -s 21 -d 28 -p ack -e 40 -c 0 -i 974 -a 1 -x {21.0 3.0 483 ------- null} - -t 43.9088 -s 21 -d 28 -p ack -e 40 -c 0 -i 974 -a 1 -x {21.0 3.0 483 ------- null} h -t 43.9088 -s 21 -d 28 -p ack -e 40 -c 0 -i 974 -a 1 -x {21.0 3.0 -1 ------- null} r -t 43.9104 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {3.0 21.0 484 ------- null} + -t 43.9104 -s 21 -d 28 -p ack -e 40 -c 0 -i 975 -a 1 -x {21.0 3.0 484 ------- null} - -t 43.9104 -s 21 -d 28 -p ack -e 40 -c 0 -i 975 -a 1 -x {21.0 3.0 484 ------- null} h -t 43.9104 -s 21 -d 28 -p ack -e 40 -c 0 -i 975 -a 1 -x {21.0 3.0 -1 ------- null} r -t 43.912 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 956 -a 0 -x {3.0 21.0 485 ------- null} + -t 43.912 -s 21 -d 28 -p ack -e 40 -c 0 -i 976 -a 1 -x {21.0 3.0 485 ------- null} - -t 43.912 -s 21 -d 28 -p ack -e 40 -c 0 -i 976 -a 1 -x {21.0 3.0 485 ------- null} h -t 43.912 -s 21 -d 28 -p ack -e 40 -c 0 -i 976 -a 1 -x {21.0 3.0 -1 ------- null} r -t 43.9136 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {3.0 21.0 486 ------- null} + -t 43.9136 -s 21 -d 28 -p ack -e 40 -c 0 -i 977 -a 1 -x {21.0 3.0 486 ------- null} - -t 43.9136 -s 21 -d 28 -p ack -e 40 -c 0 -i 977 -a 1 -x {21.0 3.0 486 ------- null} h -t 43.9136 -s 21 -d 28 -p ack -e 40 -c 0 -i 977 -a 1 -x {21.0 3.0 -1 ------- null} r -t 43.9152 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 958 -a 0 -x {3.0 21.0 487 ------- null} + -t 43.9152 -s 21 -d 28 -p ack -e 40 -c 0 -i 978 -a 1 -x {21.0 3.0 487 ------- null} - -t 43.9152 -s 21 -d 28 -p ack -e 40 -c 0 -i 978 -a 1 -x {21.0 3.0 487 ------- null} h -t 43.9152 -s 21 -d 28 -p ack -e 40 -c 0 -i 978 -a 1 -x {21.0 3.0 -1 ------- null} r -t 43.9168 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {3.0 21.0 488 ------- null} + -t 43.9168 -s 21 -d 28 -p ack -e 40 -c 0 -i 979 -a 1 -x {21.0 3.0 488 ------- null} - -t 43.9168 -s 21 -d 28 -p ack -e 40 -c 0 -i 979 -a 1 -x {21.0 3.0 488 ------- null} h -t 43.9168 -s 21 -d 28 -p ack -e 40 -c 0 -i 979 -a 1 -x {21.0 3.0 -1 ------- null} r -t 43.9184 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 960 -a 0 -x {3.0 21.0 489 ------- null} + -t 43.9184 -s 21 -d 28 -p ack -e 40 -c 0 -i 980 -a 1 -x {21.0 3.0 489 ------- null} - -t 43.9184 -s 21 -d 28 -p ack -e 40 -c 0 -i 980 -a 1 -x {21.0 3.0 489 ------- null} h -t 43.9184 -s 21 -d 28 -p ack -e 40 -c 0 -i 980 -a 1 -x {21.0 3.0 -1 ------- null} r -t 43.92 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {3.0 21.0 490 ------- null} + -t 43.92 -s 21 -d 28 -p ack -e 40 -c 0 -i 981 -a 1 -x {21.0 3.0 490 ------- null} - -t 43.92 -s 21 -d 28 -p ack -e 40 -c 0 -i 981 -a 1 -x {21.0 3.0 490 ------- null} h -t 43.92 -s 21 -d 28 -p ack -e 40 -c 0 -i 981 -a 1 -x {21.0 3.0 -1 ------- null} r -t 44.2396 -s 21 -d 28 -p ack -e 40 -c 0 -i 962 -a 1 -x {21.0 3.0 471 ------- null} + -t 44.2396 -s 28 -d 1 -p ack -e 40 -c 0 -i 962 -a 1 -x {21.0 3.0 471 ------- null} - -t 44.2396 -s 28 -d 1 -p ack -e 40 -c 0 -i 962 -a 1 -x {21.0 3.0 471 ------- null} h -t 44.2396 -s 28 -d 1 -p ack -e 40 -c 0 -i 962 -a 1 -x {21.0 3.0 -1 ------- null} r -t 44.2412 -s 21 -d 28 -p ack -e 40 -c 0 -i 963 -a 1 -x {21.0 3.0 472 ------- null} + -t 44.2412 -s 28 -d 1 -p ack -e 40 -c 0 -i 963 -a 1 -x {21.0 3.0 472 ------- null} - -t 44.2412 -s 28 -d 1 -p ack -e 40 -c 0 -i 963 -a 1 -x {21.0 3.0 472 ------- null} h -t 44.2412 -s 28 -d 1 -p ack -e 40 -c 0 -i 963 -a 1 -x {21.0 3.0 -1 ------- null} r -t 44.2428 -s 21 -d 28 -p ack -e 40 -c 0 -i 964 -a 1 -x {21.0 3.0 473 ------- null} + -t 44.2428 -s 28 -d 1 -p ack -e 40 -c 0 -i 964 -a 1 -x {21.0 3.0 473 ------- null} - -t 44.2428 -s 28 -d 1 -p ack -e 40 -c 0 -i 964 -a 1 -x {21.0 3.0 473 ------- null} h -t 44.2428 -s 28 -d 1 -p ack -e 40 -c 0 -i 964 -a 1 -x {21.0 3.0 -1 ------- null} r -t 44.2444 -s 21 -d 28 -p ack -e 40 -c 0 -i 965 -a 1 -x {21.0 3.0 474 ------- null} + -t 44.2444 -s 28 -d 1 -p ack -e 40 -c 0 -i 965 -a 1 -x {21.0 3.0 474 ------- null} - -t 44.2444 -s 28 -d 1 -p ack -e 40 -c 0 -i 965 -a 1 -x {21.0 3.0 474 ------- null} h -t 44.2444 -s 28 -d 1 -p ack -e 40 -c 0 -i 965 -a 1 -x {21.0 3.0 -1 ------- null} r -t 44.246 -s 21 -d 28 -p ack -e 40 -c 0 -i 966 -a 1 -x {21.0 3.0 475 ------- null} + -t 44.246 -s 28 -d 1 -p ack -e 40 -c 0 -i 966 -a 1 -x {21.0 3.0 475 ------- null} - -t 44.246 -s 28 -d 1 -p ack -e 40 -c 0 -i 966 -a 1 -x {21.0 3.0 475 ------- null} h -t 44.246 -s 28 -d 1 -p ack -e 40 -c 0 -i 966 -a 1 -x {21.0 3.0 -1 ------- null} r -t 44.2476 -s 21 -d 28 -p ack -e 40 -c 0 -i 967 -a 1 -x {21.0 3.0 476 ------- null} + -t 44.2476 -s 28 -d 1 -p ack -e 40 -c 0 -i 967 -a 1 -x {21.0 3.0 476 ------- null} - -t 44.2476 -s 28 -d 1 -p ack -e 40 -c 0 -i 967 -a 1 -x {21.0 3.0 476 ------- null} h -t 44.2476 -s 28 -d 1 -p ack -e 40 -c 0 -i 967 -a 1 -x {21.0 3.0 -1 ------- null} r -t 44.2492 -s 21 -d 28 -p ack -e 40 -c 0 -i 968 -a 1 -x {21.0 3.0 477 ------- null} + -t 44.2492 -s 28 -d 1 -p ack -e 40 -c 0 -i 968 -a 1 -x {21.0 3.0 477 ------- null} - -t 44.2492 -s 28 -d 1 -p ack -e 40 -c 0 -i 968 -a 1 -x {21.0 3.0 477 ------- null} h -t 44.2492 -s 28 -d 1 -p ack -e 40 -c 0 -i 968 -a 1 -x {21.0 3.0 -1 ------- null} r -t 44.2508 -s 21 -d 28 -p ack -e 40 -c 0 -i 969 -a 1 -x {21.0 3.0 478 ------- null} + -t 44.2508 -s 28 -d 1 -p ack -e 40 -c 0 -i 969 -a 1 -x {21.0 3.0 478 ------- null} - -t 44.2508 -s 28 -d 1 -p ack -e 40 -c 0 -i 969 -a 1 -x {21.0 3.0 478 ------- null} h -t 44.2508 -s 28 -d 1 -p ack -e 40 -c 0 -i 969 -a 1 -x {21.0 3.0 -1 ------- null} r -t 44.2524 -s 21 -d 28 -p ack -e 40 -c 0 -i 970 -a 1 -x {21.0 3.0 479 ------- null} + -t 44.2524 -s 28 -d 1 -p ack -e 40 -c 0 -i 970 -a 1 -x {21.0 3.0 479 ------- null} - -t 44.2524 -s 28 -d 1 -p ack -e 40 -c 0 -i 970 -a 1 -x {21.0 3.0 479 ------- null} h -t 44.2524 -s 28 -d 1 -p ack -e 40 -c 0 -i 970 -a 1 -x {21.0 3.0 -1 ------- null} r -t 44.254 -s 21 -d 28 -p ack -e 40 -c 0 -i 971 -a 1 -x {21.0 3.0 480 ------- null} + -t 44.254 -s 28 -d 1 -p ack -e 40 -c 0 -i 971 -a 1 -x {21.0 3.0 480 ------- null} - -t 44.254 -s 28 -d 1 -p ack -e 40 -c 0 -i 971 -a 1 -x {21.0 3.0 480 ------- null} h -t 44.254 -s 28 -d 1 -p ack -e 40 -c 0 -i 971 -a 1 -x {21.0 3.0 -1 ------- null} r -t 44.2556 -s 21 -d 28 -p ack -e 40 -c 0 -i 972 -a 1 -x {21.0 3.0 481 ------- null} + -t 44.2556 -s 28 -d 1 -p ack -e 40 -c 0 -i 972 -a 1 -x {21.0 3.0 481 ------- null} - -t 44.2556 -s 28 -d 1 -p ack -e 40 -c 0 -i 972 -a 1 -x {21.0 3.0 481 ------- null} h -t 44.2556 -s 28 -d 1 -p ack -e 40 -c 0 -i 972 -a 1 -x {21.0 3.0 -1 ------- null} r -t 44.2572 -s 21 -d 28 -p ack -e 40 -c 0 -i 973 -a 1 -x {21.0 3.0 482 ------- null} + -t 44.2572 -s 28 -d 1 -p ack -e 40 -c 0 -i 973 -a 1 -x {21.0 3.0 482 ------- null} - -t 44.2572 -s 28 -d 1 -p ack -e 40 -c 0 -i 973 -a 1 -x {21.0 3.0 482 ------- null} h -t 44.2572 -s 28 -d 1 -p ack -e 40 -c 0 -i 973 -a 1 -x {21.0 3.0 -1 ------- null} r -t 44.2588 -s 21 -d 28 -p ack -e 40 -c 0 -i 974 -a 1 -x {21.0 3.0 483 ------- null} + -t 44.2588 -s 28 -d 1 -p ack -e 40 -c 0 -i 974 -a 1 -x {21.0 3.0 483 ------- null} - -t 44.2588 -s 28 -d 1 -p ack -e 40 -c 0 -i 974 -a 1 -x {21.0 3.0 483 ------- null} h -t 44.2588 -s 28 -d 1 -p ack -e 40 -c 0 -i 974 -a 1 -x {21.0 3.0 -1 ------- null} r -t 44.2604 -s 21 -d 28 -p ack -e 40 -c 0 -i 975 -a 1 -x {21.0 3.0 484 ------- null} + -t 44.2604 -s 28 -d 1 -p ack -e 40 -c 0 -i 975 -a 1 -x {21.0 3.0 484 ------- null} - -t 44.2604 -s 28 -d 1 -p ack -e 40 -c 0 -i 975 -a 1 -x {21.0 3.0 484 ------- null} h -t 44.2604 -s 28 -d 1 -p ack -e 40 -c 0 -i 975 -a 1 -x {21.0 3.0 -1 ------- null} r -t 44.262 -s 21 -d 28 -p ack -e 40 -c 0 -i 976 -a 1 -x {21.0 3.0 485 ------- null} + -t 44.262 -s 28 -d 1 -p ack -e 40 -c 0 -i 976 -a 1 -x {21.0 3.0 485 ------- null} - -t 44.262 -s 28 -d 1 -p ack -e 40 -c 0 -i 976 -a 1 -x {21.0 3.0 485 ------- null} h -t 44.262 -s 28 -d 1 -p ack -e 40 -c 0 -i 976 -a 1 -x {21.0 3.0 -1 ------- null} r -t 44.2636 -s 21 -d 28 -p ack -e 40 -c 0 -i 977 -a 1 -x {21.0 3.0 486 ------- null} + -t 44.2636 -s 28 -d 1 -p ack -e 40 -c 0 -i 977 -a 1 -x {21.0 3.0 486 ------- null} - -t 44.2636 -s 28 -d 1 -p ack -e 40 -c 0 -i 977 -a 1 -x {21.0 3.0 486 ------- null} h -t 44.2636 -s 28 -d 1 -p ack -e 40 -c 0 -i 977 -a 1 -x {21.0 3.0 -1 ------- null} r -t 44.2652 -s 21 -d 28 -p ack -e 40 -c 0 -i 978 -a 1 -x {21.0 3.0 487 ------- null} + -t 44.2652 -s 28 -d 1 -p ack -e 40 -c 0 -i 978 -a 1 -x {21.0 3.0 487 ------- null} - -t 44.2652 -s 28 -d 1 -p ack -e 40 -c 0 -i 978 -a 1 -x {21.0 3.0 487 ------- null} h -t 44.2652 -s 28 -d 1 -p ack -e 40 -c 0 -i 978 -a 1 -x {21.0 3.0 -1 ------- null} r -t 44.2668 -s 21 -d 28 -p ack -e 40 -c 0 -i 979 -a 1 -x {21.0 3.0 488 ------- null} + -t 44.2668 -s 28 -d 1 -p ack -e 40 -c 0 -i 979 -a 1 -x {21.0 3.0 488 ------- null} - -t 44.2668 -s 28 -d 1 -p ack -e 40 -c 0 -i 979 -a 1 -x {21.0 3.0 488 ------- null} h -t 44.2668 -s 28 -d 1 -p ack -e 40 -c 0 -i 979 -a 1 -x {21.0 3.0 -1 ------- null} r -t 44.2684 -s 21 -d 28 -p ack -e 40 -c 0 -i 980 -a 1 -x {21.0 3.0 489 ------- null} + -t 44.2684 -s 28 -d 1 -p ack -e 40 -c 0 -i 980 -a 1 -x {21.0 3.0 489 ------- null} - -t 44.2684 -s 28 -d 1 -p ack -e 40 -c 0 -i 980 -a 1 -x {21.0 3.0 489 ------- null} h -t 44.2684 -s 28 -d 1 -p ack -e 40 -c 0 -i 980 -a 1 -x {21.0 3.0 -1 ------- null} r -t 44.27 -s 21 -d 28 -p ack -e 40 -c 0 -i 981 -a 1 -x {21.0 3.0 490 ------- null} + -t 44.27 -s 28 -d 1 -p ack -e 40 -c 0 -i 981 -a 1 -x {21.0 3.0 490 ------- null} - -t 44.27 -s 28 -d 1 -p ack -e 40 -c 0 -i 981 -a 1 -x {21.0 3.0 490 ------- null} h -t 44.27 -s 28 -d 1 -p ack -e 40 -c 0 -i 981 -a 1 -x {21.0 3.0 -1 ------- null} r -t 44.5397 -s 28 -d 1 -p ack -e 40 -c 0 -i 962 -a 1 -x {21.0 3.0 471 ------- null} + -t 44.5397 -s 1 -d 3 -p ack -e 40 -c 0 -i 962 -a 1 -x {21.0 3.0 471 ------- null} - -t 44.5397 -s 1 -d 3 -p ack -e 40 -c 0 -i 962 -a 1 -x {21.0 3.0 471 ------- null} h -t 44.5397 -s 1 -d 3 -p ack -e 40 -c 0 -i 962 -a 1 -x {21.0 3.0 -1 ------- null} r -t 44.5413 -s 28 -d 1 -p ack -e 40 -c 0 -i 963 -a 1 -x {21.0 3.0 472 ------- null} + -t 44.5413 -s 1 -d 3 -p ack -e 40 -c 0 -i 963 -a 1 -x {21.0 3.0 472 ------- null} - -t 44.5413 -s 1 -d 3 -p ack -e 40 -c 0 -i 963 -a 1 -x {21.0 3.0 472 ------- null} h -t 44.5413 -s 1 -d 3 -p ack -e 40 -c 0 -i 963 -a 1 -x {21.0 3.0 -1 ------- null} r -t 44.5429 -s 28 -d 1 -p ack -e 40 -c 0 -i 964 -a 1 -x {21.0 3.0 473 ------- null} + -t 44.5429 -s 1 -d 3 -p ack -e 40 -c 0 -i 964 -a 1 -x {21.0 3.0 473 ------- null} - -t 44.5429 -s 1 -d 3 -p ack -e 40 -c 0 -i 964 -a 1 -x {21.0 3.0 473 ------- null} h -t 44.5429 -s 1 -d 3 -p ack -e 40 -c 0 -i 964 -a 1 -x {21.0 3.0 -1 ------- null} r -t 44.5445 -s 28 -d 1 -p ack -e 40 -c 0 -i 965 -a 1 -x {21.0 3.0 474 ------- null} + -t 44.5445 -s 1 -d 3 -p ack -e 40 -c 0 -i 965 -a 1 -x {21.0 3.0 474 ------- null} - -t 44.5445 -s 1 -d 3 -p ack -e 40 -c 0 -i 965 -a 1 -x {21.0 3.0 474 ------- null} h -t 44.5445 -s 1 -d 3 -p ack -e 40 -c 0 -i 965 -a 1 -x {21.0 3.0 -1 ------- null} r -t 44.5461 -s 28 -d 1 -p ack -e 40 -c 0 -i 966 -a 1 -x {21.0 3.0 475 ------- null} + -t 44.5461 -s 1 -d 3 -p ack -e 40 -c 0 -i 966 -a 1 -x {21.0 3.0 475 ------- null} - -t 44.5461 -s 1 -d 3 -p ack -e 40 -c 0 -i 966 -a 1 -x {21.0 3.0 475 ------- null} h -t 44.5461 -s 1 -d 3 -p ack -e 40 -c 0 -i 966 -a 1 -x {21.0 3.0 -1 ------- null} r -t 44.5477 -s 28 -d 1 -p ack -e 40 -c 0 -i 967 -a 1 -x {21.0 3.0 476 ------- null} + -t 44.5477 -s 1 -d 3 -p ack -e 40 -c 0 -i 967 -a 1 -x {21.0 3.0 476 ------- null} - -t 44.5477 -s 1 -d 3 -p ack -e 40 -c 0 -i 967 -a 1 -x {21.0 3.0 476 ------- null} h -t 44.5477 -s 1 -d 3 -p ack -e 40 -c 0 -i 967 -a 1 -x {21.0 3.0 -1 ------- null} r -t 44.5493 -s 28 -d 1 -p ack -e 40 -c 0 -i 968 -a 1 -x {21.0 3.0 477 ------- null} + -t 44.5493 -s 1 -d 3 -p ack -e 40 -c 0 -i 968 -a 1 -x {21.0 3.0 477 ------- null} - -t 44.5493 -s 1 -d 3 -p ack -e 40 -c 0 -i 968 -a 1 -x {21.0 3.0 477 ------- null} h -t 44.5493 -s 1 -d 3 -p ack -e 40 -c 0 -i 968 -a 1 -x {21.0 3.0 -1 ------- null} r -t 44.5509 -s 28 -d 1 -p ack -e 40 -c 0 -i 969 -a 1 -x {21.0 3.0 478 ------- null} + -t 44.5509 -s 1 -d 3 -p ack -e 40 -c 0 -i 969 -a 1 -x {21.0 3.0 478 ------- null} - -t 44.5509 -s 1 -d 3 -p ack -e 40 -c 0 -i 969 -a 1 -x {21.0 3.0 478 ------- null} h -t 44.5509 -s 1 -d 3 -p ack -e 40 -c 0 -i 969 -a 1 -x {21.0 3.0 -1 ------- null} r -t 44.5525 -s 28 -d 1 -p ack -e 40 -c 0 -i 970 -a 1 -x {21.0 3.0 479 ------- null} + -t 44.5525 -s 1 -d 3 -p ack -e 40 -c 0 -i 970 -a 1 -x {21.0 3.0 479 ------- null} - -t 44.5525 -s 1 -d 3 -p ack -e 40 -c 0 -i 970 -a 1 -x {21.0 3.0 479 ------- null} h -t 44.5525 -s 1 -d 3 -p ack -e 40 -c 0 -i 970 -a 1 -x {21.0 3.0 -1 ------- null} r -t 44.5541 -s 28 -d 1 -p ack -e 40 -c 0 -i 971 -a 1 -x {21.0 3.0 480 ------- null} + -t 44.5541 -s 1 -d 3 -p ack -e 40 -c 0 -i 971 -a 1 -x {21.0 3.0 480 ------- null} - -t 44.5541 -s 1 -d 3 -p ack -e 40 -c 0 -i 971 -a 1 -x {21.0 3.0 480 ------- null} h -t 44.5541 -s 1 -d 3 -p ack -e 40 -c 0 -i 971 -a 1 -x {21.0 3.0 -1 ------- null} r -t 44.5557 -s 28 -d 1 -p ack -e 40 -c 0 -i 972 -a 1 -x {21.0 3.0 481 ------- null} + -t 44.5557 -s 1 -d 3 -p ack -e 40 -c 0 -i 972 -a 1 -x {21.0 3.0 481 ------- null} - -t 44.5557 -s 1 -d 3 -p ack -e 40 -c 0 -i 972 -a 1 -x {21.0 3.0 481 ------- null} h -t 44.5557 -s 1 -d 3 -p ack -e 40 -c 0 -i 972 -a 1 -x {21.0 3.0 -1 ------- null} r -t 44.5573 -s 28 -d 1 -p ack -e 40 -c 0 -i 973 -a 1 -x {21.0 3.0 482 ------- null} + -t 44.5573 -s 1 -d 3 -p ack -e 40 -c 0 -i 973 -a 1 -x {21.0 3.0 482 ------- null} - -t 44.5573 -s 1 -d 3 -p ack -e 40 -c 0 -i 973 -a 1 -x {21.0 3.0 482 ------- null} h -t 44.5573 -s 1 -d 3 -p ack -e 40 -c 0 -i 973 -a 1 -x {21.0 3.0 -1 ------- null} r -t 44.5589 -s 28 -d 1 -p ack -e 40 -c 0 -i 974 -a 1 -x {21.0 3.0 483 ------- null} + -t 44.5589 -s 1 -d 3 -p ack -e 40 -c 0 -i 974 -a 1 -x {21.0 3.0 483 ------- null} - -t 44.5589 -s 1 -d 3 -p ack -e 40 -c 0 -i 974 -a 1 -x {21.0 3.0 483 ------- null} h -t 44.5589 -s 1 -d 3 -p ack -e 40 -c 0 -i 974 -a 1 -x {21.0 3.0 -1 ------- null} r -t 44.5605 -s 28 -d 1 -p ack -e 40 -c 0 -i 975 -a 1 -x {21.0 3.0 484 ------- null} + -t 44.5605 -s 1 -d 3 -p ack -e 40 -c 0 -i 975 -a 1 -x {21.0 3.0 484 ------- null} - -t 44.5605 -s 1 -d 3 -p ack -e 40 -c 0 -i 975 -a 1 -x {21.0 3.0 484 ------- null} h -t 44.5605 -s 1 -d 3 -p ack -e 40 -c 0 -i 975 -a 1 -x {21.0 3.0 -1 ------- null} r -t 44.5621 -s 28 -d 1 -p ack -e 40 -c 0 -i 976 -a 1 -x {21.0 3.0 485 ------- null} + -t 44.5621 -s 1 -d 3 -p ack -e 40 -c 0 -i 976 -a 1 -x {21.0 3.0 485 ------- null} - -t 44.5621 -s 1 -d 3 -p ack -e 40 -c 0 -i 976 -a 1 -x {21.0 3.0 485 ------- null} h -t 44.5621 -s 1 -d 3 -p ack -e 40 -c 0 -i 976 -a 1 -x {21.0 3.0 -1 ------- null} r -t 44.5637 -s 28 -d 1 -p ack -e 40 -c 0 -i 977 -a 1 -x {21.0 3.0 486 ------- null} + -t 44.5637 -s 1 -d 3 -p ack -e 40 -c 0 -i 977 -a 1 -x {21.0 3.0 486 ------- null} - -t 44.5637 -s 1 -d 3 -p ack -e 40 -c 0 -i 977 -a 1 -x {21.0 3.0 486 ------- null} h -t 44.5637 -s 1 -d 3 -p ack -e 40 -c 0 -i 977 -a 1 -x {21.0 3.0 -1 ------- null} r -t 44.5653 -s 28 -d 1 -p ack -e 40 -c 0 -i 978 -a 1 -x {21.0 3.0 487 ------- null} + -t 44.5653 -s 1 -d 3 -p ack -e 40 -c 0 -i 978 -a 1 -x {21.0 3.0 487 ------- null} - -t 44.5653 -s 1 -d 3 -p ack -e 40 -c 0 -i 978 -a 1 -x {21.0 3.0 487 ------- null} h -t 44.5653 -s 1 -d 3 -p ack -e 40 -c 0 -i 978 -a 1 -x {21.0 3.0 -1 ------- null} r -t 44.5669 -s 28 -d 1 -p ack -e 40 -c 0 -i 979 -a 1 -x {21.0 3.0 488 ------- null} + -t 44.5669 -s 1 -d 3 -p ack -e 40 -c 0 -i 979 -a 1 -x {21.0 3.0 488 ------- null} - -t 44.5669 -s 1 -d 3 -p ack -e 40 -c 0 -i 979 -a 1 -x {21.0 3.0 488 ------- null} h -t 44.5669 -s 1 -d 3 -p ack -e 40 -c 0 -i 979 -a 1 -x {21.0 3.0 -1 ------- null} r -t 44.5685 -s 28 -d 1 -p ack -e 40 -c 0 -i 980 -a 1 -x {21.0 3.0 489 ------- null} + -t 44.5685 -s 1 -d 3 -p ack -e 40 -c 0 -i 980 -a 1 -x {21.0 3.0 489 ------- null} - -t 44.5685 -s 1 -d 3 -p ack -e 40 -c 0 -i 980 -a 1 -x {21.0 3.0 489 ------- null} h -t 44.5685 -s 1 -d 3 -p ack -e 40 -c 0 -i 980 -a 1 -x {21.0 3.0 -1 ------- null} r -t 44.5701 -s 28 -d 1 -p ack -e 40 -c 0 -i 981 -a 1 -x {21.0 3.0 490 ------- null} + -t 44.5701 -s 1 -d 3 -p ack -e 40 -c 0 -i 981 -a 1 -x {21.0 3.0 490 ------- null} - -t 44.5701 -s 1 -d 3 -p ack -e 40 -c 0 -i 981 -a 1 -x {21.0 3.0 490 ------- null} h -t 44.5701 -s 1 -d 3 -p ack -e 40 -c 0 -i 981 -a 1 -x {21.0 3.0 -1 ------- null} r -t 44.6798 -s 1 -d 3 -p ack -e 40 -c 0 -i 962 -a 1 -x {21.0 3.0 471 ------- null} + -t 44.6798 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 982 -a 0 -x {3.0 21.0 491 ------- null} - -t 44.6798 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 982 -a 0 -x {3.0 21.0 491 ------- null} h -t 44.6798 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 982 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.6814 -s 1 -d 3 -p ack -e 40 -c 0 -i 963 -a 1 -x {21.0 3.0 472 ------- null} + -t 44.6814 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {3.0 21.0 492 ------- null} - -t 44.6814 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {3.0 21.0 492 ------- null} h -t 44.6814 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.683 -s 1 -d 3 -p ack -e 40 -c 0 -i 964 -a 1 -x {21.0 3.0 473 ------- null} + -t 44.683 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 984 -a 0 -x {3.0 21.0 493 ------- null} - -t 44.683 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 984 -a 0 -x {3.0 21.0 493 ------- null} h -t 44.683 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 984 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.6846 -s 1 -d 3 -p ack -e 40 -c 0 -i 965 -a 1 -x {21.0 3.0 474 ------- null} + -t 44.6846 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {3.0 21.0 494 ------- null} - -t 44.6846 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {3.0 21.0 494 ------- null} h -t 44.6846 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.6862 -s 1 -d 3 -p ack -e 40 -c 0 -i 966 -a 1 -x {21.0 3.0 475 ------- null} + -t 44.6862 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 986 -a 0 -x {3.0 21.0 495 ------- null} - -t 44.6862 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 986 -a 0 -x {3.0 21.0 495 ------- null} h -t 44.6862 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 986 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.6878 -s 1 -d 3 -p ack -e 40 -c 0 -i 967 -a 1 -x {21.0 3.0 476 ------- null} + -t 44.6878 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {3.0 21.0 496 ------- null} - -t 44.6878 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {3.0 21.0 496 ------- null} h -t 44.6878 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.6894 -s 1 -d 3 -p ack -e 40 -c 0 -i 968 -a 1 -x {21.0 3.0 477 ------- null} + -t 44.6894 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 988 -a 0 -x {3.0 21.0 497 ------- null} - -t 44.6894 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 988 -a 0 -x {3.0 21.0 497 ------- null} h -t 44.6894 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 988 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.691 -s 1 -d 3 -p ack -e 40 -c 0 -i 969 -a 1 -x {21.0 3.0 478 ------- null} + -t 44.691 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {3.0 21.0 498 ------- null} - -t 44.691 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {3.0 21.0 498 ------- null} h -t 44.691 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.6926 -s 1 -d 3 -p ack -e 40 -c 0 -i 970 -a 1 -x {21.0 3.0 479 ------- null} + -t 44.6926 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 990 -a 0 -x {3.0 21.0 499 ------- null} - -t 44.6926 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 990 -a 0 -x {3.0 21.0 499 ------- null} h -t 44.6926 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 990 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.6942 -s 1 -d 3 -p ack -e 40 -c 0 -i 971 -a 1 -x {21.0 3.0 480 ------- null} + -t 44.6942 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {3.0 21.0 500 ------- null} - -t 44.6942 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {3.0 21.0 500 ------- null} h -t 44.6942 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.6958 -s 1 -d 3 -p ack -e 40 -c 0 -i 972 -a 1 -x {21.0 3.0 481 ------- null} + -t 44.6958 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 992 -a 0 -x {3.0 21.0 501 ------- null} - -t 44.6958 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 992 -a 0 -x {3.0 21.0 501 ------- null} h -t 44.6958 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 992 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.6974 -s 1 -d 3 -p ack -e 40 -c 0 -i 973 -a 1 -x {21.0 3.0 482 ------- null} + -t 44.6974 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {3.0 21.0 502 ------- null} - -t 44.6974 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {3.0 21.0 502 ------- null} h -t 44.6974 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.699 -s 1 -d 3 -p ack -e 40 -c 0 -i 974 -a 1 -x {21.0 3.0 483 ------- null} + -t 44.699 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 994 -a 0 -x {3.0 21.0 503 ------- null} - -t 44.699 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 994 -a 0 -x {3.0 21.0 503 ------- null} h -t 44.699 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 994 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.7006 -s 1 -d 3 -p ack -e 40 -c 0 -i 975 -a 1 -x {21.0 3.0 484 ------- null} + -t 44.7006 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {3.0 21.0 504 ------- null} - -t 44.7006 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {3.0 21.0 504 ------- null} h -t 44.7006 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.7022 -s 1 -d 3 -p ack -e 40 -c 0 -i 976 -a 1 -x {21.0 3.0 485 ------- null} + -t 44.7022 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 996 -a 0 -x {3.0 21.0 505 ------- null} - -t 44.7022 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 996 -a 0 -x {3.0 21.0 505 ------- null} h -t 44.7022 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 996 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.7038 -s 1 -d 3 -p ack -e 40 -c 0 -i 977 -a 1 -x {21.0 3.0 486 ------- null} + -t 44.7038 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {3.0 21.0 506 ------- null} - -t 44.7038 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {3.0 21.0 506 ------- null} h -t 44.7038 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.7054 -s 1 -d 3 -p ack -e 40 -c 0 -i 978 -a 1 -x {21.0 3.0 487 ------- null} + -t 44.7054 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 998 -a 0 -x {3.0 21.0 507 ------- null} - -t 44.7054 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 998 -a 0 -x {3.0 21.0 507 ------- null} h -t 44.7054 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 998 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.707 -s 1 -d 3 -p ack -e 40 -c 0 -i 979 -a 1 -x {21.0 3.0 488 ------- null} + -t 44.707 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {3.0 21.0 508 ------- null} - -t 44.707 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {3.0 21.0 508 ------- null} h -t 44.707 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.7086 -s 1 -d 3 -p ack -e 40 -c 0 -i 980 -a 1 -x {21.0 3.0 489 ------- null} + -t 44.7086 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1000 -a 0 -x {3.0 21.0 509 ------- null} - -t 44.7086 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1000 -a 0 -x {3.0 21.0 509 ------- null} h -t 44.7086 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1000 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.7102 -s 1 -d 3 -p ack -e 40 -c 0 -i 981 -a 1 -x {21.0 3.0 490 ------- null} + -t 44.7102 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {3.0 21.0 510 ------- null} - -t 44.7102 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {3.0 21.0 510 ------- null} h -t 44.7102 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.8214 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 982 -a 0 -x {3.0 21.0 491 ------- null} + -t 44.8214 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 982 -a 0 -x {3.0 21.0 491 ------- null} - -t 44.8214 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 982 -a 0 -x {3.0 21.0 491 ------- null} h -t 44.8214 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 982 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.823 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {3.0 21.0 492 ------- null} + -t 44.823 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {3.0 21.0 492 ------- null} - -t 44.823 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {3.0 21.0 492 ------- null} h -t 44.823 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.8246 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 984 -a 0 -x {3.0 21.0 493 ------- null} + -t 44.8246 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 984 -a 0 -x {3.0 21.0 493 ------- null} - -t 44.8246 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 984 -a 0 -x {3.0 21.0 493 ------- null} h -t 44.8246 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 984 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.8262 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {3.0 21.0 494 ------- null} + -t 44.8262 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {3.0 21.0 494 ------- null} - -t 44.8262 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {3.0 21.0 494 ------- null} h -t 44.8262 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.8278 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 986 -a 0 -x {3.0 21.0 495 ------- null} + -t 44.8278 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 986 -a 0 -x {3.0 21.0 495 ------- null} - -t 44.8278 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 986 -a 0 -x {3.0 21.0 495 ------- null} h -t 44.8278 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 986 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.8294 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {3.0 21.0 496 ------- null} + -t 44.8294 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {3.0 21.0 496 ------- null} - -t 44.8294 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {3.0 21.0 496 ------- null} h -t 44.8294 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.831 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 988 -a 0 -x {3.0 21.0 497 ------- null} + -t 44.831 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 988 -a 0 -x {3.0 21.0 497 ------- null} - -t 44.831 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 988 -a 0 -x {3.0 21.0 497 ------- null} h -t 44.831 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 988 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.8326 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {3.0 21.0 498 ------- null} + -t 44.8326 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {3.0 21.0 498 ------- null} - -t 44.8326 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {3.0 21.0 498 ------- null} h -t 44.8326 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.8342 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 990 -a 0 -x {3.0 21.0 499 ------- null} + -t 44.8342 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 990 -a 0 -x {3.0 21.0 499 ------- null} - -t 44.8342 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 990 -a 0 -x {3.0 21.0 499 ------- null} h -t 44.8342 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 990 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.8358 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {3.0 21.0 500 ------- null} + -t 44.8358 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {3.0 21.0 500 ------- null} - -t 44.8358 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {3.0 21.0 500 ------- null} h -t 44.8358 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.8374 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 992 -a 0 -x {3.0 21.0 501 ------- null} + -t 44.8374 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 992 -a 0 -x {3.0 21.0 501 ------- null} - -t 44.8374 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 992 -a 0 -x {3.0 21.0 501 ------- null} h -t 44.8374 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 992 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.839 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {3.0 21.0 502 ------- null} + -t 44.839 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {3.0 21.0 502 ------- null} - -t 44.839 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {3.0 21.0 502 ------- null} h -t 44.839 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.8406 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 994 -a 0 -x {3.0 21.0 503 ------- null} + -t 44.8406 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 994 -a 0 -x {3.0 21.0 503 ------- null} - -t 44.8406 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 994 -a 0 -x {3.0 21.0 503 ------- null} h -t 44.8406 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 994 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.8422 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {3.0 21.0 504 ------- null} + -t 44.8422 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {3.0 21.0 504 ------- null} - -t 44.8422 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {3.0 21.0 504 ------- null} h -t 44.8422 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.8438 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 996 -a 0 -x {3.0 21.0 505 ------- null} + -t 44.8438 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 996 -a 0 -x {3.0 21.0 505 ------- null} - -t 44.8438 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 996 -a 0 -x {3.0 21.0 505 ------- null} h -t 44.8438 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 996 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.8454 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {3.0 21.0 506 ------- null} + -t 44.8454 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {3.0 21.0 506 ------- null} - -t 44.8454 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {3.0 21.0 506 ------- null} h -t 44.8454 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.847 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 998 -a 0 -x {3.0 21.0 507 ------- null} + -t 44.847 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 998 -a 0 -x {3.0 21.0 507 ------- null} - -t 44.847 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 998 -a 0 -x {3.0 21.0 507 ------- null} h -t 44.847 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 998 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.8486 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {3.0 21.0 508 ------- null} + -t 44.8486 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {3.0 21.0 508 ------- null} - -t 44.8486 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {3.0 21.0 508 ------- null} h -t 44.8486 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.8502 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1000 -a 0 -x {3.0 21.0 509 ------- null} + -t 44.8502 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1000 -a 0 -x {3.0 21.0 509 ------- null} - -t 44.8502 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1000 -a 0 -x {3.0 21.0 509 ------- null} h -t 44.8502 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1000 -a 0 -x {3.0 21.0 -1 ------- null} r -t 44.8518 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {3.0 21.0 510 ------- null} + -t 44.8518 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {3.0 21.0 510 ------- null} - -t 44.8518 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {3.0 21.0 510 ------- null} h -t 44.8518 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {3.0 21.0 -1 ------- null} r -t 45.123 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 982 -a 0 -x {3.0 21.0 491 ------- null} + -t 45.123 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 982 -a 0 -x {3.0 21.0 491 ------- null} - -t 45.123 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 982 -a 0 -x {3.0 21.0 491 ------- null} h -t 45.123 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 982 -a 0 -x {3.0 21.0 -1 ------- null} r -t 45.1246 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {3.0 21.0 492 ------- null} + -t 45.1246 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {3.0 21.0 492 ------- null} - -t 45.1246 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {3.0 21.0 492 ------- null} h -t 45.1246 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {3.0 21.0 -1 ------- null} r -t 45.1262 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 984 -a 0 -x {3.0 21.0 493 ------- null} + -t 45.1262 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 984 -a 0 -x {3.0 21.0 493 ------- null} - -t 45.1262 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 984 -a 0 -x {3.0 21.0 493 ------- null} h -t 45.1262 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 984 -a 0 -x {3.0 21.0 -1 ------- null} r -t 45.1278 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {3.0 21.0 494 ------- null} + -t 45.1278 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {3.0 21.0 494 ------- null} - -t 45.1278 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {3.0 21.0 494 ------- null} h -t 45.1278 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {3.0 21.0 -1 ------- null} r -t 45.1294 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 986 -a 0 -x {3.0 21.0 495 ------- null} + -t 45.1294 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 986 -a 0 -x {3.0 21.0 495 ------- null} - -t 45.1294 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 986 -a 0 -x {3.0 21.0 495 ------- null} h -t 45.1294 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 986 -a 0 -x {3.0 21.0 -1 ------- null} r -t 45.131 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {3.0 21.0 496 ------- null} + -t 45.131 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {3.0 21.0 496 ------- null} - -t 45.131 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {3.0 21.0 496 ------- null} h -t 45.131 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {3.0 21.0 -1 ------- null} r -t 45.1326 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 988 -a 0 -x {3.0 21.0 497 ------- null} + -t 45.1326 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 988 -a 0 -x {3.0 21.0 497 ------- null} - -t 45.1326 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 988 -a 0 -x {3.0 21.0 497 ------- null} h -t 45.1326 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 988 -a 0 -x {3.0 21.0 -1 ------- null} r -t 45.1342 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {3.0 21.0 498 ------- null} + -t 45.1342 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {3.0 21.0 498 ------- null} - -t 45.1342 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {3.0 21.0 498 ------- null} h -t 45.1342 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {3.0 21.0 -1 ------- null} r -t 45.1358 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 990 -a 0 -x {3.0 21.0 499 ------- null} + -t 45.1358 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 990 -a 0 -x {3.0 21.0 499 ------- null} - -t 45.1358 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 990 -a 0 -x {3.0 21.0 499 ------- null} h -t 45.1358 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 990 -a 0 -x {3.0 21.0 -1 ------- null} r -t 45.1374 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {3.0 21.0 500 ------- null} + -t 45.1374 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {3.0 21.0 500 ------- null} - -t 45.1374 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {3.0 21.0 500 ------- null} h -t 45.1374 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {3.0 21.0 -1 ------- null} r -t 45.139 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 992 -a 0 -x {3.0 21.0 501 ------- null} + -t 45.139 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 992 -a 0 -x {3.0 21.0 501 ------- null} - -t 45.139 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 992 -a 0 -x {3.0 21.0 501 ------- null} h -t 45.139 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 992 -a 0 -x {3.0 21.0 -1 ------- null} r -t 45.1406 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {3.0 21.0 502 ------- null} + -t 45.1406 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {3.0 21.0 502 ------- null} - -t 45.1406 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {3.0 21.0 502 ------- null} h -t 45.1406 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {3.0 21.0 -1 ------- null} r -t 45.1422 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 994 -a 0 -x {3.0 21.0 503 ------- null} + -t 45.1422 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 994 -a 0 -x {3.0 21.0 503 ------- null} - -t 45.1422 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 994 -a 0 -x {3.0 21.0 503 ------- null} h -t 45.1422 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 994 -a 0 -x {3.0 21.0 -1 ------- null} r -t 45.1438 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {3.0 21.0 504 ------- null} + -t 45.1438 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {3.0 21.0 504 ------- null} - -t 45.1438 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {3.0 21.0 504 ------- null} h -t 45.1438 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {3.0 21.0 -1 ------- null} r -t 45.1454 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 996 -a 0 -x {3.0 21.0 505 ------- null} + -t 45.1454 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 996 -a 0 -x {3.0 21.0 505 ------- null} - -t 45.1454 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 996 -a 0 -x {3.0 21.0 505 ------- null} h -t 45.1454 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 996 -a 0 -x {3.0 21.0 -1 ------- null} r -t 45.147 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {3.0 21.0 506 ------- null} + -t 45.147 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {3.0 21.0 506 ------- null} - -t 45.147 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {3.0 21.0 506 ------- null} h -t 45.147 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {3.0 21.0 -1 ------- null} r -t 45.1486 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 998 -a 0 -x {3.0 21.0 507 ------- null} + -t 45.1486 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 998 -a 0 -x {3.0 21.0 507 ------- null} - -t 45.1486 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 998 -a 0 -x {3.0 21.0 507 ------- null} h -t 45.1486 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 998 -a 0 -x {3.0 21.0 -1 ------- null} r -t 45.1502 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {3.0 21.0 508 ------- null} + -t 45.1502 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {3.0 21.0 508 ------- null} - -t 45.1502 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {3.0 21.0 508 ------- null} h -t 45.1502 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {3.0 21.0 -1 ------- null} r -t 45.1518 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1000 -a 0 -x {3.0 21.0 509 ------- null} + -t 45.1518 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1000 -a 0 -x {3.0 21.0 509 ------- null} - -t 45.1518 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1000 -a 0 -x {3.0 21.0 509 ------- null} h -t 45.1518 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1000 -a 0 -x {3.0 21.0 -1 ------- null} r -t 45.1534 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {3.0 21.0 510 ------- null} + -t 45.1534 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {3.0 21.0 510 ------- null} - -t 45.1534 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {3.0 21.0 510 ------- null} h -t 45.1534 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {3.0 21.0 -1 ------- null} r -t 45.4746 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 982 -a 0 -x {3.0 21.0 491 ------- null} + -t 45.4746 -s 21 -d 28 -p ack -e 40 -c 0 -i 1002 -a 1 -x {21.0 3.0 491 ------- null} - -t 45.4746 -s 21 -d 28 -p ack -e 40 -c 0 -i 1002 -a 1 -x {21.0 3.0 491 ------- null} h -t 45.4746 -s 21 -d 28 -p ack -e 40 -c 0 -i 1002 -a 1 -x {21.0 3.0 -1 ------- null} r -t 45.4762 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {3.0 21.0 492 ------- null} + -t 45.4762 -s 21 -d 28 -p ack -e 40 -c 0 -i 1003 -a 1 -x {21.0 3.0 492 ------- null} - -t 45.4762 -s 21 -d 28 -p ack -e 40 -c 0 -i 1003 -a 1 -x {21.0 3.0 492 ------- null} h -t 45.4762 -s 21 -d 28 -p ack -e 40 -c 0 -i 1003 -a 1 -x {21.0 3.0 -1 ------- null} r -t 45.4778 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 984 -a 0 -x {3.0 21.0 493 ------- null} + -t 45.4778 -s 21 -d 28 -p ack -e 40 -c 0 -i 1004 -a 1 -x {21.0 3.0 493 ------- null} - -t 45.4778 -s 21 -d 28 -p ack -e 40 -c 0 -i 1004 -a 1 -x {21.0 3.0 493 ------- null} h -t 45.4778 -s 21 -d 28 -p ack -e 40 -c 0 -i 1004 -a 1 -x {21.0 3.0 -1 ------- null} r -t 45.4794 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {3.0 21.0 494 ------- null} + -t 45.4794 -s 21 -d 28 -p ack -e 40 -c 0 -i 1005 -a 1 -x {21.0 3.0 494 ------- null} - -t 45.4794 -s 21 -d 28 -p ack -e 40 -c 0 -i 1005 -a 1 -x {21.0 3.0 494 ------- null} h -t 45.4794 -s 21 -d 28 -p ack -e 40 -c 0 -i 1005 -a 1 -x {21.0 3.0 -1 ------- null} r -t 45.481 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 986 -a 0 -x {3.0 21.0 495 ------- null} + -t 45.481 -s 21 -d 28 -p ack -e 40 -c 0 -i 1006 -a 1 -x {21.0 3.0 495 ------- null} - -t 45.481 -s 21 -d 28 -p ack -e 40 -c 0 -i 1006 -a 1 -x {21.0 3.0 495 ------- null} h -t 45.481 -s 21 -d 28 -p ack -e 40 -c 0 -i 1006 -a 1 -x {21.0 3.0 -1 ------- null} r -t 45.4826 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {3.0 21.0 496 ------- null} + -t 45.4826 -s 21 -d 28 -p ack -e 40 -c 0 -i 1007 -a 1 -x {21.0 3.0 496 ------- null} - -t 45.4826 -s 21 -d 28 -p ack -e 40 -c 0 -i 1007 -a 1 -x {21.0 3.0 496 ------- null} h -t 45.4826 -s 21 -d 28 -p ack -e 40 -c 0 -i 1007 -a 1 -x {21.0 3.0 -1 ------- null} r -t 45.4842 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 988 -a 0 -x {3.0 21.0 497 ------- null} + -t 45.4842 -s 21 -d 28 -p ack -e 40 -c 0 -i 1008 -a 1 -x {21.0 3.0 497 ------- null} - -t 45.4842 -s 21 -d 28 -p ack -e 40 -c 0 -i 1008 -a 1 -x {21.0 3.0 497 ------- null} h -t 45.4842 -s 21 -d 28 -p ack -e 40 -c 0 -i 1008 -a 1 -x {21.0 3.0 -1 ------- null} r -t 45.4858 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {3.0 21.0 498 ------- null} + -t 45.4858 -s 21 -d 28 -p ack -e 40 -c 0 -i 1009 -a 1 -x {21.0 3.0 498 ------- null} - -t 45.4858 -s 21 -d 28 -p ack -e 40 -c 0 -i 1009 -a 1 -x {21.0 3.0 498 ------- null} h -t 45.4858 -s 21 -d 28 -p ack -e 40 -c 0 -i 1009 -a 1 -x {21.0 3.0 -1 ------- null} r -t 45.4874 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 990 -a 0 -x {3.0 21.0 499 ------- null} + -t 45.4874 -s 21 -d 28 -p ack -e 40 -c 0 -i 1010 -a 1 -x {21.0 3.0 499 ------- null} - -t 45.4874 -s 21 -d 28 -p ack -e 40 -c 0 -i 1010 -a 1 -x {21.0 3.0 499 ------- null} h -t 45.4874 -s 21 -d 28 -p ack -e 40 -c 0 -i 1010 -a 1 -x {21.0 3.0 -1 ------- null} r -t 45.489 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {3.0 21.0 500 ------- null} + -t 45.489 -s 21 -d 28 -p ack -e 40 -c 0 -i 1011 -a 1 -x {21.0 3.0 500 ------- null} - -t 45.489 -s 21 -d 28 -p ack -e 40 -c 0 -i 1011 -a 1 -x {21.0 3.0 500 ------- null} h -t 45.489 -s 21 -d 28 -p ack -e 40 -c 0 -i 1011 -a 1 -x {21.0 3.0 -1 ------- null} r -t 45.4906 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 992 -a 0 -x {3.0 21.0 501 ------- null} + -t 45.4906 -s 21 -d 28 -p ack -e 40 -c 0 -i 1012 -a 1 -x {21.0 3.0 501 ------- null} - -t 45.4906 -s 21 -d 28 -p ack -e 40 -c 0 -i 1012 -a 1 -x {21.0 3.0 501 ------- null} h -t 45.4906 -s 21 -d 28 -p ack -e 40 -c 0 -i 1012 -a 1 -x {21.0 3.0 -1 ------- null} r -t 45.4922 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {3.0 21.0 502 ------- null} + -t 45.4922 -s 21 -d 28 -p ack -e 40 -c 0 -i 1013 -a 1 -x {21.0 3.0 502 ------- null} - -t 45.4922 -s 21 -d 28 -p ack -e 40 -c 0 -i 1013 -a 1 -x {21.0 3.0 502 ------- null} h -t 45.4922 -s 21 -d 28 -p ack -e 40 -c 0 -i 1013 -a 1 -x {21.0 3.0 -1 ------- null} r -t 45.4938 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 994 -a 0 -x {3.0 21.0 503 ------- null} + -t 45.4938 -s 21 -d 28 -p ack -e 40 -c 0 -i 1014 -a 1 -x {21.0 3.0 503 ------- null} - -t 45.4938 -s 21 -d 28 -p ack -e 40 -c 0 -i 1014 -a 1 -x {21.0 3.0 503 ------- null} h -t 45.4938 -s 21 -d 28 -p ack -e 40 -c 0 -i 1014 -a 1 -x {21.0 3.0 -1 ------- null} r -t 45.4954 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {3.0 21.0 504 ------- null} + -t 45.4954 -s 21 -d 28 -p ack -e 40 -c 0 -i 1015 -a 1 -x {21.0 3.0 504 ------- null} - -t 45.4954 -s 21 -d 28 -p ack -e 40 -c 0 -i 1015 -a 1 -x {21.0 3.0 504 ------- null} h -t 45.4954 -s 21 -d 28 -p ack -e 40 -c 0 -i 1015 -a 1 -x {21.0 3.0 -1 ------- null} r -t 45.497 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 996 -a 0 -x {3.0 21.0 505 ------- null} + -t 45.497 -s 21 -d 28 -p ack -e 40 -c 0 -i 1016 -a 1 -x {21.0 3.0 505 ------- null} - -t 45.497 -s 21 -d 28 -p ack -e 40 -c 0 -i 1016 -a 1 -x {21.0 3.0 505 ------- null} h -t 45.497 -s 21 -d 28 -p ack -e 40 -c 0 -i 1016 -a 1 -x {21.0 3.0 -1 ------- null} r -t 45.4986 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {3.0 21.0 506 ------- null} + -t 45.4986 -s 21 -d 28 -p ack -e 40 -c 0 -i 1017 -a 1 -x {21.0 3.0 506 ------- null} - -t 45.4986 -s 21 -d 28 -p ack -e 40 -c 0 -i 1017 -a 1 -x {21.0 3.0 506 ------- null} h -t 45.4986 -s 21 -d 28 -p ack -e 40 -c 0 -i 1017 -a 1 -x {21.0 3.0 -1 ------- null} r -t 45.5002 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 998 -a 0 -x {3.0 21.0 507 ------- null} + -t 45.5002 -s 21 -d 28 -p ack -e 40 -c 0 -i 1018 -a 1 -x {21.0 3.0 507 ------- null} - -t 45.5002 -s 21 -d 28 -p ack -e 40 -c 0 -i 1018 -a 1 -x {21.0 3.0 507 ------- null} h -t 45.5002 -s 21 -d 28 -p ack -e 40 -c 0 -i 1018 -a 1 -x {21.0 3.0 -1 ------- null} r -t 45.5018 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {3.0 21.0 508 ------- null} + -t 45.5018 -s 21 -d 28 -p ack -e 40 -c 0 -i 1019 -a 1 -x {21.0 3.0 508 ------- null} - -t 45.5018 -s 21 -d 28 -p ack -e 40 -c 0 -i 1019 -a 1 -x {21.0 3.0 508 ------- null} h -t 45.5018 -s 21 -d 28 -p ack -e 40 -c 0 -i 1019 -a 1 -x {21.0 3.0 -1 ------- null} r -t 45.5034 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1000 -a 0 -x {3.0 21.0 509 ------- null} + -t 45.5034 -s 21 -d 28 -p ack -e 40 -c 0 -i 1020 -a 1 -x {21.0 3.0 509 ------- null} - -t 45.5034 -s 21 -d 28 -p ack -e 40 -c 0 -i 1020 -a 1 -x {21.0 3.0 509 ------- null} h -t 45.5034 -s 21 -d 28 -p ack -e 40 -c 0 -i 1020 -a 1 -x {21.0 3.0 -1 ------- null} r -t 45.505 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {3.0 21.0 510 ------- null} + -t 45.505 -s 21 -d 28 -p ack -e 40 -c 0 -i 1021 -a 1 -x {21.0 3.0 510 ------- null} - -t 45.505 -s 21 -d 28 -p ack -e 40 -c 0 -i 1021 -a 1 -x {21.0 3.0 510 ------- null} h -t 45.505 -s 21 -d 28 -p ack -e 40 -c 0 -i 1021 -a 1 -x {21.0 3.0 -1 ------- null} r -t 45.8246 -s 21 -d 28 -p ack -e 40 -c 0 -i 1002 -a 1 -x {21.0 3.0 491 ------- null} + -t 45.8246 -s 28 -d 1 -p ack -e 40 -c 0 -i 1002 -a 1 -x {21.0 3.0 491 ------- null} - -t 45.8246 -s 28 -d 1 -p ack -e 40 -c 0 -i 1002 -a 1 -x {21.0 3.0 491 ------- null} h -t 45.8246 -s 28 -d 1 -p ack -e 40 -c 0 -i 1002 -a 1 -x {21.0 3.0 -1 ------- null} r -t 45.8262 -s 21 -d 28 -p ack -e 40 -c 0 -i 1003 -a 1 -x {21.0 3.0 492 ------- null} + -t 45.8262 -s 28 -d 1 -p ack -e 40 -c 0 -i 1003 -a 1 -x {21.0 3.0 492 ------- null} - -t 45.8262 -s 28 -d 1 -p ack -e 40 -c 0 -i 1003 -a 1 -x {21.0 3.0 492 ------- null} h -t 45.8262 -s 28 -d 1 -p ack -e 40 -c 0 -i 1003 -a 1 -x {21.0 3.0 -1 ------- null} r -t 45.8278 -s 21 -d 28 -p ack -e 40 -c 0 -i 1004 -a 1 -x {21.0 3.0 493 ------- null} + -t 45.8278 -s 28 -d 1 -p ack -e 40 -c 0 -i 1004 -a 1 -x {21.0 3.0 493 ------- null} - -t 45.8278 -s 28 -d 1 -p ack -e 40 -c 0 -i 1004 -a 1 -x {21.0 3.0 493 ------- null} h -t 45.8278 -s 28 -d 1 -p ack -e 40 -c 0 -i 1004 -a 1 -x {21.0 3.0 -1 ------- null} r -t 45.8294 -s 21 -d 28 -p ack -e 40 -c 0 -i 1005 -a 1 -x {21.0 3.0 494 ------- null} + -t 45.8294 -s 28 -d 1 -p ack -e 40 -c 0 -i 1005 -a 1 -x {21.0 3.0 494 ------- null} - -t 45.8294 -s 28 -d 1 -p ack -e 40 -c 0 -i 1005 -a 1 -x {21.0 3.0 494 ------- null} h -t 45.8294 -s 28 -d 1 -p ack -e 40 -c 0 -i 1005 -a 1 -x {21.0 3.0 -1 ------- null} r -t 45.831 -s 21 -d 28 -p ack -e 40 -c 0 -i 1006 -a 1 -x {21.0 3.0 495 ------- null} + -t 45.831 -s 28 -d 1 -p ack -e 40 -c 0 -i 1006 -a 1 -x {21.0 3.0 495 ------- null} - -t 45.831 -s 28 -d 1 -p ack -e 40 -c 0 -i 1006 -a 1 -x {21.0 3.0 495 ------- null} h -t 45.831 -s 28 -d 1 -p ack -e 40 -c 0 -i 1006 -a 1 -x {21.0 3.0 -1 ------- null} r -t 45.8326 -s 21 -d 28 -p ack -e 40 -c 0 -i 1007 -a 1 -x {21.0 3.0 496 ------- null} + -t 45.8326 -s 28 -d 1 -p ack -e 40 -c 0 -i 1007 -a 1 -x {21.0 3.0 496 ------- null} - -t 45.8326 -s 28 -d 1 -p ack -e 40 -c 0 -i 1007 -a 1 -x {21.0 3.0 496 ------- null} h -t 45.8326 -s 28 -d 1 -p ack -e 40 -c 0 -i 1007 -a 1 -x {21.0 3.0 -1 ------- null} r -t 45.8342 -s 21 -d 28 -p ack -e 40 -c 0 -i 1008 -a 1 -x {21.0 3.0 497 ------- null} + -t 45.8342 -s 28 -d 1 -p ack -e 40 -c 0 -i 1008 -a 1 -x {21.0 3.0 497 ------- null} - -t 45.8342 -s 28 -d 1 -p ack -e 40 -c 0 -i 1008 -a 1 -x {21.0 3.0 497 ------- null} h -t 45.8342 -s 28 -d 1 -p ack -e 40 -c 0 -i 1008 -a 1 -x {21.0 3.0 -1 ------- null} r -t 45.8358 -s 21 -d 28 -p ack -e 40 -c 0 -i 1009 -a 1 -x {21.0 3.0 498 ------- null} + -t 45.8358 -s 28 -d 1 -p ack -e 40 -c 0 -i 1009 -a 1 -x {21.0 3.0 498 ------- null} - -t 45.8358 -s 28 -d 1 -p ack -e 40 -c 0 -i 1009 -a 1 -x {21.0 3.0 498 ------- null} h -t 45.8358 -s 28 -d 1 -p ack -e 40 -c 0 -i 1009 -a 1 -x {21.0 3.0 -1 ------- null} r -t 45.8374 -s 21 -d 28 -p ack -e 40 -c 0 -i 1010 -a 1 -x {21.0 3.0 499 ------- null} + -t 45.8374 -s 28 -d 1 -p ack -e 40 -c 0 -i 1010 -a 1 -x {21.0 3.0 499 ------- null} - -t 45.8374 -s 28 -d 1 -p ack -e 40 -c 0 -i 1010 -a 1 -x {21.0 3.0 499 ------- null} h -t 45.8374 -s 28 -d 1 -p ack -e 40 -c 0 -i 1010 -a 1 -x {21.0 3.0 -1 ------- null} r -t 45.839 -s 21 -d 28 -p ack -e 40 -c 0 -i 1011 -a 1 -x {21.0 3.0 500 ------- null} + -t 45.839 -s 28 -d 1 -p ack -e 40 -c 0 -i 1011 -a 1 -x {21.0 3.0 500 ------- null} - -t 45.839 -s 28 -d 1 -p ack -e 40 -c 0 -i 1011 -a 1 -x {21.0 3.0 500 ------- null} h -t 45.839 -s 28 -d 1 -p ack -e 40 -c 0 -i 1011 -a 1 -x {21.0 3.0 -1 ------- null} r -t 45.8406 -s 21 -d 28 -p ack -e 40 -c 0 -i 1012 -a 1 -x {21.0 3.0 501 ------- null} + -t 45.8406 -s 28 -d 1 -p ack -e 40 -c 0 -i 1012 -a 1 -x {21.0 3.0 501 ------- null} - -t 45.8406 -s 28 -d 1 -p ack -e 40 -c 0 -i 1012 -a 1 -x {21.0 3.0 501 ------- null} h -t 45.8406 -s 28 -d 1 -p ack -e 40 -c 0 -i 1012 -a 1 -x {21.0 3.0 -1 ------- null} r -t 45.8422 -s 21 -d 28 -p ack -e 40 -c 0 -i 1013 -a 1 -x {21.0 3.0 502 ------- null} + -t 45.8422 -s 28 -d 1 -p ack -e 40 -c 0 -i 1013 -a 1 -x {21.0 3.0 502 ------- null} - -t 45.8422 -s 28 -d 1 -p ack -e 40 -c 0 -i 1013 -a 1 -x {21.0 3.0 502 ------- null} h -t 45.8422 -s 28 -d 1 -p ack -e 40 -c 0 -i 1013 -a 1 -x {21.0 3.0 -1 ------- null} r -t 45.8438 -s 21 -d 28 -p ack -e 40 -c 0 -i 1014 -a 1 -x {21.0 3.0 503 ------- null} + -t 45.8438 -s 28 -d 1 -p ack -e 40 -c 0 -i 1014 -a 1 -x {21.0 3.0 503 ------- null} - -t 45.8438 -s 28 -d 1 -p ack -e 40 -c 0 -i 1014 -a 1 -x {21.0 3.0 503 ------- null} h -t 45.8438 -s 28 -d 1 -p ack -e 40 -c 0 -i 1014 -a 1 -x {21.0 3.0 -1 ------- null} r -t 45.8454 -s 21 -d 28 -p ack -e 40 -c 0 -i 1015 -a 1 -x {21.0 3.0 504 ------- null} + -t 45.8454 -s 28 -d 1 -p ack -e 40 -c 0 -i 1015 -a 1 -x {21.0 3.0 504 ------- null} - -t 45.8454 -s 28 -d 1 -p ack -e 40 -c 0 -i 1015 -a 1 -x {21.0 3.0 504 ------- null} h -t 45.8454 -s 28 -d 1 -p ack -e 40 -c 0 -i 1015 -a 1 -x {21.0 3.0 -1 ------- null} r -t 45.847 -s 21 -d 28 -p ack -e 40 -c 0 -i 1016 -a 1 -x {21.0 3.0 505 ------- null} + -t 45.847 -s 28 -d 1 -p ack -e 40 -c 0 -i 1016 -a 1 -x {21.0 3.0 505 ------- null} - -t 45.847 -s 28 -d 1 -p ack -e 40 -c 0 -i 1016 -a 1 -x {21.0 3.0 505 ------- null} h -t 45.847 -s 28 -d 1 -p ack -e 40 -c 0 -i 1016 -a 1 -x {21.0 3.0 -1 ------- null} r -t 45.8486 -s 21 -d 28 -p ack -e 40 -c 0 -i 1017 -a 1 -x {21.0 3.0 506 ------- null} + -t 45.8486 -s 28 -d 1 -p ack -e 40 -c 0 -i 1017 -a 1 -x {21.0 3.0 506 ------- null} - -t 45.8486 -s 28 -d 1 -p ack -e 40 -c 0 -i 1017 -a 1 -x {21.0 3.0 506 ------- null} h -t 45.8486 -s 28 -d 1 -p ack -e 40 -c 0 -i 1017 -a 1 -x {21.0 3.0 -1 ------- null} r -t 45.8502 -s 21 -d 28 -p ack -e 40 -c 0 -i 1018 -a 1 -x {21.0 3.0 507 ------- null} + -t 45.8502 -s 28 -d 1 -p ack -e 40 -c 0 -i 1018 -a 1 -x {21.0 3.0 507 ------- null} - -t 45.8502 -s 28 -d 1 -p ack -e 40 -c 0 -i 1018 -a 1 -x {21.0 3.0 507 ------- null} h -t 45.8502 -s 28 -d 1 -p ack -e 40 -c 0 -i 1018 -a 1 -x {21.0 3.0 -1 ------- null} r -t 45.8518 -s 21 -d 28 -p ack -e 40 -c 0 -i 1019 -a 1 -x {21.0 3.0 508 ------- null} + -t 45.8518 -s 28 -d 1 -p ack -e 40 -c 0 -i 1019 -a 1 -x {21.0 3.0 508 ------- null} - -t 45.8518 -s 28 -d 1 -p ack -e 40 -c 0 -i 1019 -a 1 -x {21.0 3.0 508 ------- null} h -t 45.8518 -s 28 -d 1 -p ack -e 40 -c 0 -i 1019 -a 1 -x {21.0 3.0 -1 ------- null} r -t 45.8534 -s 21 -d 28 -p ack -e 40 -c 0 -i 1020 -a 1 -x {21.0 3.0 509 ------- null} + -t 45.8534 -s 28 -d 1 -p ack -e 40 -c 0 -i 1020 -a 1 -x {21.0 3.0 509 ------- null} - -t 45.8534 -s 28 -d 1 -p ack -e 40 -c 0 -i 1020 -a 1 -x {21.0 3.0 509 ------- null} h -t 45.8534 -s 28 -d 1 -p ack -e 40 -c 0 -i 1020 -a 1 -x {21.0 3.0 -1 ------- null} r -t 45.855 -s 21 -d 28 -p ack -e 40 -c 0 -i 1021 -a 1 -x {21.0 3.0 510 ------- null} + -t 45.855 -s 28 -d 1 -p ack -e 40 -c 0 -i 1021 -a 1 -x {21.0 3.0 510 ------- null} - -t 45.855 -s 28 -d 1 -p ack -e 40 -c 0 -i 1021 -a 1 -x {21.0 3.0 510 ------- null} h -t 45.855 -s 28 -d 1 -p ack -e 40 -c 0 -i 1021 -a 1 -x {21.0 3.0 -1 ------- null} r -t 46.1247 -s 28 -d 1 -p ack -e 40 -c 0 -i 1002 -a 1 -x {21.0 3.0 491 ------- null} + -t 46.1247 -s 1 -d 3 -p ack -e 40 -c 0 -i 1002 -a 1 -x {21.0 3.0 491 ------- null} - -t 46.1247 -s 1 -d 3 -p ack -e 40 -c 0 -i 1002 -a 1 -x {21.0 3.0 491 ------- null} h -t 46.1247 -s 1 -d 3 -p ack -e 40 -c 0 -i 1002 -a 1 -x {21.0 3.0 -1 ------- null} r -t 46.1263 -s 28 -d 1 -p ack -e 40 -c 0 -i 1003 -a 1 -x {21.0 3.0 492 ------- null} + -t 46.1263 -s 1 -d 3 -p ack -e 40 -c 0 -i 1003 -a 1 -x {21.0 3.0 492 ------- null} - -t 46.1263 -s 1 -d 3 -p ack -e 40 -c 0 -i 1003 -a 1 -x {21.0 3.0 492 ------- null} h -t 46.1263 -s 1 -d 3 -p ack -e 40 -c 0 -i 1003 -a 1 -x {21.0 3.0 -1 ------- null} r -t 46.1279 -s 28 -d 1 -p ack -e 40 -c 0 -i 1004 -a 1 -x {21.0 3.0 493 ------- null} + -t 46.1279 -s 1 -d 3 -p ack -e 40 -c 0 -i 1004 -a 1 -x {21.0 3.0 493 ------- null} - -t 46.1279 -s 1 -d 3 -p ack -e 40 -c 0 -i 1004 -a 1 -x {21.0 3.0 493 ------- null} h -t 46.1279 -s 1 -d 3 -p ack -e 40 -c 0 -i 1004 -a 1 -x {21.0 3.0 -1 ------- null} r -t 46.1295 -s 28 -d 1 -p ack -e 40 -c 0 -i 1005 -a 1 -x {21.0 3.0 494 ------- null} + -t 46.1295 -s 1 -d 3 -p ack -e 40 -c 0 -i 1005 -a 1 -x {21.0 3.0 494 ------- null} - -t 46.1295 -s 1 -d 3 -p ack -e 40 -c 0 -i 1005 -a 1 -x {21.0 3.0 494 ------- null} h -t 46.1295 -s 1 -d 3 -p ack -e 40 -c 0 -i 1005 -a 1 -x {21.0 3.0 -1 ------- null} r -t 46.1311 -s 28 -d 1 -p ack -e 40 -c 0 -i 1006 -a 1 -x {21.0 3.0 495 ------- null} + -t 46.1311 -s 1 -d 3 -p ack -e 40 -c 0 -i 1006 -a 1 -x {21.0 3.0 495 ------- null} - -t 46.1311 -s 1 -d 3 -p ack -e 40 -c 0 -i 1006 -a 1 -x {21.0 3.0 495 ------- null} h -t 46.1311 -s 1 -d 3 -p ack -e 40 -c 0 -i 1006 -a 1 -x {21.0 3.0 -1 ------- null} r -t 46.1327 -s 28 -d 1 -p ack -e 40 -c 0 -i 1007 -a 1 -x {21.0 3.0 496 ------- null} + -t 46.1327 -s 1 -d 3 -p ack -e 40 -c 0 -i 1007 -a 1 -x {21.0 3.0 496 ------- null} - -t 46.1327 -s 1 -d 3 -p ack -e 40 -c 0 -i 1007 -a 1 -x {21.0 3.0 496 ------- null} h -t 46.1327 -s 1 -d 3 -p ack -e 40 -c 0 -i 1007 -a 1 -x {21.0 3.0 -1 ------- null} r -t 46.1343 -s 28 -d 1 -p ack -e 40 -c 0 -i 1008 -a 1 -x {21.0 3.0 497 ------- null} + -t 46.1343 -s 1 -d 3 -p ack -e 40 -c 0 -i 1008 -a 1 -x {21.0 3.0 497 ------- null} - -t 46.1343 -s 1 -d 3 -p ack -e 40 -c 0 -i 1008 -a 1 -x {21.0 3.0 497 ------- null} h -t 46.1343 -s 1 -d 3 -p ack -e 40 -c 0 -i 1008 -a 1 -x {21.0 3.0 -1 ------- null} r -t 46.1359 -s 28 -d 1 -p ack -e 40 -c 0 -i 1009 -a 1 -x {21.0 3.0 498 ------- null} + -t 46.1359 -s 1 -d 3 -p ack -e 40 -c 0 -i 1009 -a 1 -x {21.0 3.0 498 ------- null} - -t 46.1359 -s 1 -d 3 -p ack -e 40 -c 0 -i 1009 -a 1 -x {21.0 3.0 498 ------- null} h -t 46.1359 -s 1 -d 3 -p ack -e 40 -c 0 -i 1009 -a 1 -x {21.0 3.0 -1 ------- null} r -t 46.1375 -s 28 -d 1 -p ack -e 40 -c 0 -i 1010 -a 1 -x {21.0 3.0 499 ------- null} + -t 46.1375 -s 1 -d 3 -p ack -e 40 -c 0 -i 1010 -a 1 -x {21.0 3.0 499 ------- null} - -t 46.1375 -s 1 -d 3 -p ack -e 40 -c 0 -i 1010 -a 1 -x {21.0 3.0 499 ------- null} h -t 46.1375 -s 1 -d 3 -p ack -e 40 -c 0 -i 1010 -a 1 -x {21.0 3.0 -1 ------- null} r -t 46.1391 -s 28 -d 1 -p ack -e 40 -c 0 -i 1011 -a 1 -x {21.0 3.0 500 ------- null} + -t 46.1391 -s 1 -d 3 -p ack -e 40 -c 0 -i 1011 -a 1 -x {21.0 3.0 500 ------- null} - -t 46.1391 -s 1 -d 3 -p ack -e 40 -c 0 -i 1011 -a 1 -x {21.0 3.0 500 ------- null} h -t 46.1391 -s 1 -d 3 -p ack -e 40 -c 0 -i 1011 -a 1 -x {21.0 3.0 -1 ------- null} r -t 46.1407 -s 28 -d 1 -p ack -e 40 -c 0 -i 1012 -a 1 -x {21.0 3.0 501 ------- null} + -t 46.1407 -s 1 -d 3 -p ack -e 40 -c 0 -i 1012 -a 1 -x {21.0 3.0 501 ------- null} - -t 46.1407 -s 1 -d 3 -p ack -e 40 -c 0 -i 1012 -a 1 -x {21.0 3.0 501 ------- null} h -t 46.1407 -s 1 -d 3 -p ack -e 40 -c 0 -i 1012 -a 1 -x {21.0 3.0 -1 ------- null} r -t 46.1423 -s 28 -d 1 -p ack -e 40 -c 0 -i 1013 -a 1 -x {21.0 3.0 502 ------- null} + -t 46.1423 -s 1 -d 3 -p ack -e 40 -c 0 -i 1013 -a 1 -x {21.0 3.0 502 ------- null} - -t 46.1423 -s 1 -d 3 -p ack -e 40 -c 0 -i 1013 -a 1 -x {21.0 3.0 502 ------- null} h -t 46.1423 -s 1 -d 3 -p ack -e 40 -c 0 -i 1013 -a 1 -x {21.0 3.0 -1 ------- null} r -t 46.1439 -s 28 -d 1 -p ack -e 40 -c 0 -i 1014 -a 1 -x {21.0 3.0 503 ------- null} + -t 46.1439 -s 1 -d 3 -p ack -e 40 -c 0 -i 1014 -a 1 -x {21.0 3.0 503 ------- null} - -t 46.1439 -s 1 -d 3 -p ack -e 40 -c 0 -i 1014 -a 1 -x {21.0 3.0 503 ------- null} h -t 46.1439 -s 1 -d 3 -p ack -e 40 -c 0 -i 1014 -a 1 -x {21.0 3.0 -1 ------- null} r -t 46.1455 -s 28 -d 1 -p ack -e 40 -c 0 -i 1015 -a 1 -x {21.0 3.0 504 ------- null} + -t 46.1455 -s 1 -d 3 -p ack -e 40 -c 0 -i 1015 -a 1 -x {21.0 3.0 504 ------- null} - -t 46.1455 -s 1 -d 3 -p ack -e 40 -c 0 -i 1015 -a 1 -x {21.0 3.0 504 ------- null} h -t 46.1455 -s 1 -d 3 -p ack -e 40 -c 0 -i 1015 -a 1 -x {21.0 3.0 -1 ------- null} r -t 46.1471 -s 28 -d 1 -p ack -e 40 -c 0 -i 1016 -a 1 -x {21.0 3.0 505 ------- null} + -t 46.1471 -s 1 -d 3 -p ack -e 40 -c 0 -i 1016 -a 1 -x {21.0 3.0 505 ------- null} - -t 46.1471 -s 1 -d 3 -p ack -e 40 -c 0 -i 1016 -a 1 -x {21.0 3.0 505 ------- null} h -t 46.1471 -s 1 -d 3 -p ack -e 40 -c 0 -i 1016 -a 1 -x {21.0 3.0 -1 ------- null} r -t 46.1487 -s 28 -d 1 -p ack -e 40 -c 0 -i 1017 -a 1 -x {21.0 3.0 506 ------- null} + -t 46.1487 -s 1 -d 3 -p ack -e 40 -c 0 -i 1017 -a 1 -x {21.0 3.0 506 ------- null} - -t 46.1487 -s 1 -d 3 -p ack -e 40 -c 0 -i 1017 -a 1 -x {21.0 3.0 506 ------- null} h -t 46.1487 -s 1 -d 3 -p ack -e 40 -c 0 -i 1017 -a 1 -x {21.0 3.0 -1 ------- null} r -t 46.1503 -s 28 -d 1 -p ack -e 40 -c 0 -i 1018 -a 1 -x {21.0 3.0 507 ------- null} + -t 46.1503 -s 1 -d 3 -p ack -e 40 -c 0 -i 1018 -a 1 -x {21.0 3.0 507 ------- null} - -t 46.1503 -s 1 -d 3 -p ack -e 40 -c 0 -i 1018 -a 1 -x {21.0 3.0 507 ------- null} h -t 46.1503 -s 1 -d 3 -p ack -e 40 -c 0 -i 1018 -a 1 -x {21.0 3.0 -1 ------- null} r -t 46.1519 -s 28 -d 1 -p ack -e 40 -c 0 -i 1019 -a 1 -x {21.0 3.0 508 ------- null} + -t 46.1519 -s 1 -d 3 -p ack -e 40 -c 0 -i 1019 -a 1 -x {21.0 3.0 508 ------- null} - -t 46.1519 -s 1 -d 3 -p ack -e 40 -c 0 -i 1019 -a 1 -x {21.0 3.0 508 ------- null} h -t 46.1519 -s 1 -d 3 -p ack -e 40 -c 0 -i 1019 -a 1 -x {21.0 3.0 -1 ------- null} r -t 46.1535 -s 28 -d 1 -p ack -e 40 -c 0 -i 1020 -a 1 -x {21.0 3.0 509 ------- null} + -t 46.1535 -s 1 -d 3 -p ack -e 40 -c 0 -i 1020 -a 1 -x {21.0 3.0 509 ------- null} - -t 46.1535 -s 1 -d 3 -p ack -e 40 -c 0 -i 1020 -a 1 -x {21.0 3.0 509 ------- null} h -t 46.1535 -s 1 -d 3 -p ack -e 40 -c 0 -i 1020 -a 1 -x {21.0 3.0 -1 ------- null} r -t 46.1551 -s 28 -d 1 -p ack -e 40 -c 0 -i 1021 -a 1 -x {21.0 3.0 510 ------- null} + -t 46.1551 -s 1 -d 3 -p ack -e 40 -c 0 -i 1021 -a 1 -x {21.0 3.0 510 ------- null} - -t 46.1551 -s 1 -d 3 -p ack -e 40 -c 0 -i 1021 -a 1 -x {21.0 3.0 510 ------- null} h -t 46.1551 -s 1 -d 3 -p ack -e 40 -c 0 -i 1021 -a 1 -x {21.0 3.0 -1 ------- null} r -t 46.2648 -s 1 -d 3 -p ack -e 40 -c 0 -i 1002 -a 1 -x {21.0 3.0 491 ------- null} + -t 46.2648 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1022 -a 0 -x {3.0 21.0 511 ------- null} - -t 46.2648 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1022 -a 0 -x {3.0 21.0 511 ------- null} h -t 46.2648 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1022 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.2664 -s 1 -d 3 -p ack -e 40 -c 0 -i 1003 -a 1 -x {21.0 3.0 492 ------- null} + -t 46.2664 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {3.0 21.0 512 ------- null} - -t 46.2664 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {3.0 21.0 512 ------- null} h -t 46.2664 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.268 -s 1 -d 3 -p ack -e 40 -c 0 -i 1004 -a 1 -x {21.0 3.0 493 ------- null} + -t 46.268 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1024 -a 0 -x {3.0 21.0 513 ------- null} - -t 46.268 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1024 -a 0 -x {3.0 21.0 513 ------- null} h -t 46.268 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1024 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.2696 -s 1 -d 3 -p ack -e 40 -c 0 -i 1005 -a 1 -x {21.0 3.0 494 ------- null} + -t 46.2696 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {3.0 21.0 514 ------- null} - -t 46.2696 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {3.0 21.0 514 ------- null} h -t 46.2696 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.2712 -s 1 -d 3 -p ack -e 40 -c 0 -i 1006 -a 1 -x {21.0 3.0 495 ------- null} + -t 46.2712 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1026 -a 0 -x {3.0 21.0 515 ------- null} - -t 46.2712 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1026 -a 0 -x {3.0 21.0 515 ------- null} h -t 46.2712 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1026 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.2728 -s 1 -d 3 -p ack -e 40 -c 0 -i 1007 -a 1 -x {21.0 3.0 496 ------- null} + -t 46.2728 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {3.0 21.0 516 ------- null} - -t 46.2728 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {3.0 21.0 516 ------- null} h -t 46.2728 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.2744 -s 1 -d 3 -p ack -e 40 -c 0 -i 1008 -a 1 -x {21.0 3.0 497 ------- null} + -t 46.2744 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1028 -a 0 -x {3.0 21.0 517 ------- null} - -t 46.2744 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1028 -a 0 -x {3.0 21.0 517 ------- null} h -t 46.2744 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1028 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.276 -s 1 -d 3 -p ack -e 40 -c 0 -i 1009 -a 1 -x {21.0 3.0 498 ------- null} + -t 46.276 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {3.0 21.0 518 ------- null} - -t 46.276 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {3.0 21.0 518 ------- null} h -t 46.276 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.2776 -s 1 -d 3 -p ack -e 40 -c 0 -i 1010 -a 1 -x {21.0 3.0 499 ------- null} + -t 46.2776 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1030 -a 0 -x {3.0 21.0 519 ------- null} - -t 46.2776 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1030 -a 0 -x {3.0 21.0 519 ------- null} h -t 46.2776 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1030 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.2792 -s 1 -d 3 -p ack -e 40 -c 0 -i 1011 -a 1 -x {21.0 3.0 500 ------- null} + -t 46.2792 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {3.0 21.0 520 ------- null} - -t 46.2792 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {3.0 21.0 520 ------- null} h -t 46.2792 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.2808 -s 1 -d 3 -p ack -e 40 -c 0 -i 1012 -a 1 -x {21.0 3.0 501 ------- null} + -t 46.2808 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1032 -a 0 -x {3.0 21.0 521 ------- null} - -t 46.2808 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1032 -a 0 -x {3.0 21.0 521 ------- null} h -t 46.2808 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1032 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.2824 -s 1 -d 3 -p ack -e 40 -c 0 -i 1013 -a 1 -x {21.0 3.0 502 ------- null} + -t 46.2824 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {3.0 21.0 522 ------- null} - -t 46.2824 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {3.0 21.0 522 ------- null} h -t 46.2824 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.284 -s 1 -d 3 -p ack -e 40 -c 0 -i 1014 -a 1 -x {21.0 3.0 503 ------- null} + -t 46.284 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1034 -a 0 -x {3.0 21.0 523 ------- null} - -t 46.284 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1034 -a 0 -x {3.0 21.0 523 ------- null} h -t 46.284 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1034 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.2856 -s 1 -d 3 -p ack -e 40 -c 0 -i 1015 -a 1 -x {21.0 3.0 504 ------- null} + -t 46.2856 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {3.0 21.0 524 ------- null} - -t 46.2856 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {3.0 21.0 524 ------- null} h -t 46.2856 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.2872 -s 1 -d 3 -p ack -e 40 -c 0 -i 1016 -a 1 -x {21.0 3.0 505 ------- null} + -t 46.2872 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1036 -a 0 -x {3.0 21.0 525 ------- null} - -t 46.2872 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1036 -a 0 -x {3.0 21.0 525 ------- null} h -t 46.2872 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1036 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.2888 -s 1 -d 3 -p ack -e 40 -c 0 -i 1017 -a 1 -x {21.0 3.0 506 ------- null} + -t 46.2888 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {3.0 21.0 526 ------- null} - -t 46.2888 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {3.0 21.0 526 ------- null} h -t 46.2888 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.2904 -s 1 -d 3 -p ack -e 40 -c 0 -i 1018 -a 1 -x {21.0 3.0 507 ------- null} + -t 46.2904 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1038 -a 0 -x {3.0 21.0 527 ------- null} - -t 46.2904 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1038 -a 0 -x {3.0 21.0 527 ------- null} h -t 46.2904 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1038 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.292 -s 1 -d 3 -p ack -e 40 -c 0 -i 1019 -a 1 -x {21.0 3.0 508 ------- null} + -t 46.292 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {3.0 21.0 528 ------- null} - -t 46.292 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {3.0 21.0 528 ------- null} h -t 46.292 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.2936 -s 1 -d 3 -p ack -e 40 -c 0 -i 1020 -a 1 -x {21.0 3.0 509 ------- null} + -t 46.2936 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1040 -a 0 -x {3.0 21.0 529 ------- null} - -t 46.2936 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1040 -a 0 -x {3.0 21.0 529 ------- null} h -t 46.2936 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1040 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.2952 -s 1 -d 3 -p ack -e 40 -c 0 -i 1021 -a 1 -x {21.0 3.0 510 ------- null} + -t 46.2952 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {3.0 21.0 530 ------- null} - -t 46.2952 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {3.0 21.0 530 ------- null} h -t 46.2952 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.4064 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1022 -a 0 -x {3.0 21.0 511 ------- null} + -t 46.4064 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1022 -a 0 -x {3.0 21.0 511 ------- null} - -t 46.4064 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1022 -a 0 -x {3.0 21.0 511 ------- null} h -t 46.4064 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1022 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.408 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {3.0 21.0 512 ------- null} + -t 46.408 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {3.0 21.0 512 ------- null} - -t 46.408 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {3.0 21.0 512 ------- null} h -t 46.408 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.4096 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1024 -a 0 -x {3.0 21.0 513 ------- null} + -t 46.4096 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1024 -a 0 -x {3.0 21.0 513 ------- null} - -t 46.4096 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1024 -a 0 -x {3.0 21.0 513 ------- null} h -t 46.4096 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1024 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.4112 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {3.0 21.0 514 ------- null} + -t 46.4112 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {3.0 21.0 514 ------- null} - -t 46.4112 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {3.0 21.0 514 ------- null} h -t 46.4112 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.4128 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1026 -a 0 -x {3.0 21.0 515 ------- null} + -t 46.4128 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1026 -a 0 -x {3.0 21.0 515 ------- null} - -t 46.4128 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1026 -a 0 -x {3.0 21.0 515 ------- null} h -t 46.4128 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1026 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.4144 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {3.0 21.0 516 ------- null} + -t 46.4144 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {3.0 21.0 516 ------- null} - -t 46.4144 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {3.0 21.0 516 ------- null} h -t 46.4144 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.416 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1028 -a 0 -x {3.0 21.0 517 ------- null} + -t 46.416 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1028 -a 0 -x {3.0 21.0 517 ------- null} - -t 46.416 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1028 -a 0 -x {3.0 21.0 517 ------- null} h -t 46.416 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1028 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.4176 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {3.0 21.0 518 ------- null} + -t 46.4176 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {3.0 21.0 518 ------- null} - -t 46.4176 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {3.0 21.0 518 ------- null} h -t 46.4176 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.4192 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1030 -a 0 -x {3.0 21.0 519 ------- null} + -t 46.4192 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1030 -a 0 -x {3.0 21.0 519 ------- null} - -t 46.4192 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1030 -a 0 -x {3.0 21.0 519 ------- null} h -t 46.4192 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1030 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.4208 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {3.0 21.0 520 ------- null} + -t 46.4208 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {3.0 21.0 520 ------- null} - -t 46.4208 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {3.0 21.0 520 ------- null} h -t 46.4208 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.4224 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1032 -a 0 -x {3.0 21.0 521 ------- null} + -t 46.4224 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1032 -a 0 -x {3.0 21.0 521 ------- null} - -t 46.4224 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1032 -a 0 -x {3.0 21.0 521 ------- null} h -t 46.4224 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1032 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.424 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {3.0 21.0 522 ------- null} + -t 46.424 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {3.0 21.0 522 ------- null} - -t 46.424 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {3.0 21.0 522 ------- null} h -t 46.424 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.4256 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1034 -a 0 -x {3.0 21.0 523 ------- null} + -t 46.4256 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1034 -a 0 -x {3.0 21.0 523 ------- null} - -t 46.4256 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1034 -a 0 -x {3.0 21.0 523 ------- null} h -t 46.4256 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1034 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.4272 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {3.0 21.0 524 ------- null} + -t 46.4272 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {3.0 21.0 524 ------- null} - -t 46.4272 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {3.0 21.0 524 ------- null} h -t 46.4272 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.4288 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1036 -a 0 -x {3.0 21.0 525 ------- null} + -t 46.4288 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1036 -a 0 -x {3.0 21.0 525 ------- null} - -t 46.4288 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1036 -a 0 -x {3.0 21.0 525 ------- null} h -t 46.4288 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1036 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.4304 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {3.0 21.0 526 ------- null} + -t 46.4304 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {3.0 21.0 526 ------- null} - -t 46.4304 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {3.0 21.0 526 ------- null} h -t 46.4304 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.432 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1038 -a 0 -x {3.0 21.0 527 ------- null} + -t 46.432 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1038 -a 0 -x {3.0 21.0 527 ------- null} - -t 46.432 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1038 -a 0 -x {3.0 21.0 527 ------- null} h -t 46.432 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1038 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.4336 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {3.0 21.0 528 ------- null} + -t 46.4336 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {3.0 21.0 528 ------- null} - -t 46.4336 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {3.0 21.0 528 ------- null} h -t 46.4336 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.4352 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1040 -a 0 -x {3.0 21.0 529 ------- null} + -t 46.4352 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1040 -a 0 -x {3.0 21.0 529 ------- null} - -t 46.4352 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1040 -a 0 -x {3.0 21.0 529 ------- null} h -t 46.4352 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1040 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.4368 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {3.0 21.0 530 ------- null} + -t 46.4368 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {3.0 21.0 530 ------- null} - -t 46.4368 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {3.0 21.0 530 ------- null} h -t 46.4368 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.708 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1022 -a 0 -x {3.0 21.0 511 ------- null} + -t 46.708 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1022 -a 0 -x {3.0 21.0 511 ------- null} - -t 46.708 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1022 -a 0 -x {3.0 21.0 511 ------- null} h -t 46.708 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1022 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.7096 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {3.0 21.0 512 ------- null} + -t 46.7096 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {3.0 21.0 512 ------- null} - -t 46.7096 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {3.0 21.0 512 ------- null} h -t 46.7096 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.7112 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1024 -a 0 -x {3.0 21.0 513 ------- null} + -t 46.7112 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1024 -a 0 -x {3.0 21.0 513 ------- null} - -t 46.7112 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1024 -a 0 -x {3.0 21.0 513 ------- null} h -t 46.7112 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1024 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.7128 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {3.0 21.0 514 ------- null} + -t 46.7128 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {3.0 21.0 514 ------- null} - -t 46.7128 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {3.0 21.0 514 ------- null} h -t 46.7128 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.7144 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1026 -a 0 -x {3.0 21.0 515 ------- null} + -t 46.7144 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1026 -a 0 -x {3.0 21.0 515 ------- null} - -t 46.7144 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1026 -a 0 -x {3.0 21.0 515 ------- null} h -t 46.7144 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1026 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.716 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {3.0 21.0 516 ------- null} + -t 46.716 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {3.0 21.0 516 ------- null} - -t 46.716 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {3.0 21.0 516 ------- null} h -t 46.716 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.7176 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1028 -a 0 -x {3.0 21.0 517 ------- null} + -t 46.7176 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1028 -a 0 -x {3.0 21.0 517 ------- null} - -t 46.7176 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1028 -a 0 -x {3.0 21.0 517 ------- null} h -t 46.7176 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1028 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.7192 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {3.0 21.0 518 ------- null} + -t 46.7192 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {3.0 21.0 518 ------- null} - -t 46.7192 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {3.0 21.0 518 ------- null} h -t 46.7192 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.7208 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1030 -a 0 -x {3.0 21.0 519 ------- null} + -t 46.7208 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1030 -a 0 -x {3.0 21.0 519 ------- null} - -t 46.7208 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1030 -a 0 -x {3.0 21.0 519 ------- null} h -t 46.7208 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1030 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.7224 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {3.0 21.0 520 ------- null} + -t 46.7224 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {3.0 21.0 520 ------- null} - -t 46.7224 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {3.0 21.0 520 ------- null} h -t 46.7224 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.724 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1032 -a 0 -x {3.0 21.0 521 ------- null} + -t 46.724 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1032 -a 0 -x {3.0 21.0 521 ------- null} - -t 46.724 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1032 -a 0 -x {3.0 21.0 521 ------- null} h -t 46.724 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1032 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.7256 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {3.0 21.0 522 ------- null} + -t 46.7256 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {3.0 21.0 522 ------- null} - -t 46.7256 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {3.0 21.0 522 ------- null} h -t 46.7256 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.7272 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1034 -a 0 -x {3.0 21.0 523 ------- null} + -t 46.7272 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1034 -a 0 -x {3.0 21.0 523 ------- null} - -t 46.7272 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1034 -a 0 -x {3.0 21.0 523 ------- null} h -t 46.7272 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1034 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.7288 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {3.0 21.0 524 ------- null} + -t 46.7288 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {3.0 21.0 524 ------- null} - -t 46.7288 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {3.0 21.0 524 ------- null} h -t 46.7288 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.7304 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1036 -a 0 -x {3.0 21.0 525 ------- null} + -t 46.7304 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1036 -a 0 -x {3.0 21.0 525 ------- null} - -t 46.7304 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1036 -a 0 -x {3.0 21.0 525 ------- null} h -t 46.7304 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1036 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.732 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {3.0 21.0 526 ------- null} + -t 46.732 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {3.0 21.0 526 ------- null} - -t 46.732 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {3.0 21.0 526 ------- null} h -t 46.732 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.7336 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1038 -a 0 -x {3.0 21.0 527 ------- null} + -t 46.7336 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1038 -a 0 -x {3.0 21.0 527 ------- null} - -t 46.7336 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1038 -a 0 -x {3.0 21.0 527 ------- null} h -t 46.7336 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1038 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.7352 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {3.0 21.0 528 ------- null} + -t 46.7352 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {3.0 21.0 528 ------- null} - -t 46.7352 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {3.0 21.0 528 ------- null} h -t 46.7352 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.7368 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1040 -a 0 -x {3.0 21.0 529 ------- null} + -t 46.7368 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1040 -a 0 -x {3.0 21.0 529 ------- null} - -t 46.7368 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1040 -a 0 -x {3.0 21.0 529 ------- null} h -t 46.7368 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1040 -a 0 -x {3.0 21.0 -1 ------- null} r -t 46.7384 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {3.0 21.0 530 ------- null} + -t 46.7384 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {3.0 21.0 530 ------- null} - -t 46.7384 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {3.0 21.0 530 ------- null} h -t 46.7384 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.0596 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1022 -a 0 -x {3.0 21.0 511 ------- null} + -t 47.0596 -s 21 -d 28 -p ack -e 40 -c 0 -i 1042 -a 1 -x {21.0 3.0 511 ------- null} - -t 47.0596 -s 21 -d 28 -p ack -e 40 -c 0 -i 1042 -a 1 -x {21.0 3.0 511 ------- null} h -t 47.0596 -s 21 -d 28 -p ack -e 40 -c 0 -i 1042 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.0612 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {3.0 21.0 512 ------- null} + -t 47.0612 -s 21 -d 28 -p ack -e 40 -c 0 -i 1043 -a 1 -x {21.0 3.0 512 ------- null} - -t 47.0612 -s 21 -d 28 -p ack -e 40 -c 0 -i 1043 -a 1 -x {21.0 3.0 512 ------- null} h -t 47.0612 -s 21 -d 28 -p ack -e 40 -c 0 -i 1043 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.0628 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1024 -a 0 -x {3.0 21.0 513 ------- null} + -t 47.0628 -s 21 -d 28 -p ack -e 40 -c 0 -i 1044 -a 1 -x {21.0 3.0 513 ------- null} - -t 47.0628 -s 21 -d 28 -p ack -e 40 -c 0 -i 1044 -a 1 -x {21.0 3.0 513 ------- null} h -t 47.0628 -s 21 -d 28 -p ack -e 40 -c 0 -i 1044 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.0644 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {3.0 21.0 514 ------- null} + -t 47.0644 -s 21 -d 28 -p ack -e 40 -c 0 -i 1045 -a 1 -x {21.0 3.0 514 ------- null} - -t 47.0644 -s 21 -d 28 -p ack -e 40 -c 0 -i 1045 -a 1 -x {21.0 3.0 514 ------- null} h -t 47.0644 -s 21 -d 28 -p ack -e 40 -c 0 -i 1045 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.066 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1026 -a 0 -x {3.0 21.0 515 ------- null} + -t 47.066 -s 21 -d 28 -p ack -e 40 -c 0 -i 1046 -a 1 -x {21.0 3.0 515 ------- null} - -t 47.066 -s 21 -d 28 -p ack -e 40 -c 0 -i 1046 -a 1 -x {21.0 3.0 515 ------- null} h -t 47.066 -s 21 -d 28 -p ack -e 40 -c 0 -i 1046 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.0676 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {3.0 21.0 516 ------- null} + -t 47.0676 -s 21 -d 28 -p ack -e 40 -c 0 -i 1047 -a 1 -x {21.0 3.0 516 ------- null} - -t 47.0676 -s 21 -d 28 -p ack -e 40 -c 0 -i 1047 -a 1 -x {21.0 3.0 516 ------- null} h -t 47.0676 -s 21 -d 28 -p ack -e 40 -c 0 -i 1047 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.0692 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1028 -a 0 -x {3.0 21.0 517 ------- null} + -t 47.0692 -s 21 -d 28 -p ack -e 40 -c 0 -i 1048 -a 1 -x {21.0 3.0 517 ------- null} - -t 47.0692 -s 21 -d 28 -p ack -e 40 -c 0 -i 1048 -a 1 -x {21.0 3.0 517 ------- null} h -t 47.0692 -s 21 -d 28 -p ack -e 40 -c 0 -i 1048 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.0708 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {3.0 21.0 518 ------- null} + -t 47.0708 -s 21 -d 28 -p ack -e 40 -c 0 -i 1049 -a 1 -x {21.0 3.0 518 ------- null} - -t 47.0708 -s 21 -d 28 -p ack -e 40 -c 0 -i 1049 -a 1 -x {21.0 3.0 518 ------- null} h -t 47.0708 -s 21 -d 28 -p ack -e 40 -c 0 -i 1049 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.0724 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1030 -a 0 -x {3.0 21.0 519 ------- null} + -t 47.0724 -s 21 -d 28 -p ack -e 40 -c 0 -i 1050 -a 1 -x {21.0 3.0 519 ------- null} - -t 47.0724 -s 21 -d 28 -p ack -e 40 -c 0 -i 1050 -a 1 -x {21.0 3.0 519 ------- null} h -t 47.0724 -s 21 -d 28 -p ack -e 40 -c 0 -i 1050 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.074 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {3.0 21.0 520 ------- null} + -t 47.074 -s 21 -d 28 -p ack -e 40 -c 0 -i 1051 -a 1 -x {21.0 3.0 520 ------- null} - -t 47.074 -s 21 -d 28 -p ack -e 40 -c 0 -i 1051 -a 1 -x {21.0 3.0 520 ------- null} h -t 47.074 -s 21 -d 28 -p ack -e 40 -c 0 -i 1051 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.0756 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1032 -a 0 -x {3.0 21.0 521 ------- null} + -t 47.0756 -s 21 -d 28 -p ack -e 40 -c 0 -i 1052 -a 1 -x {21.0 3.0 521 ------- null} - -t 47.0756 -s 21 -d 28 -p ack -e 40 -c 0 -i 1052 -a 1 -x {21.0 3.0 521 ------- null} h -t 47.0756 -s 21 -d 28 -p ack -e 40 -c 0 -i 1052 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.0772 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {3.0 21.0 522 ------- null} + -t 47.0772 -s 21 -d 28 -p ack -e 40 -c 0 -i 1053 -a 1 -x {21.0 3.0 522 ------- null} - -t 47.0772 -s 21 -d 28 -p ack -e 40 -c 0 -i 1053 -a 1 -x {21.0 3.0 522 ------- null} h -t 47.0772 -s 21 -d 28 -p ack -e 40 -c 0 -i 1053 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.0788 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1034 -a 0 -x {3.0 21.0 523 ------- null} + -t 47.0788 -s 21 -d 28 -p ack -e 40 -c 0 -i 1054 -a 1 -x {21.0 3.0 523 ------- null} - -t 47.0788 -s 21 -d 28 -p ack -e 40 -c 0 -i 1054 -a 1 -x {21.0 3.0 523 ------- null} h -t 47.0788 -s 21 -d 28 -p ack -e 40 -c 0 -i 1054 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.0804 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {3.0 21.0 524 ------- null} + -t 47.0804 -s 21 -d 28 -p ack -e 40 -c 0 -i 1055 -a 1 -x {21.0 3.0 524 ------- null} - -t 47.0804 -s 21 -d 28 -p ack -e 40 -c 0 -i 1055 -a 1 -x {21.0 3.0 524 ------- null} h -t 47.0804 -s 21 -d 28 -p ack -e 40 -c 0 -i 1055 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.082 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1036 -a 0 -x {3.0 21.0 525 ------- null} + -t 47.082 -s 21 -d 28 -p ack -e 40 -c 0 -i 1056 -a 1 -x {21.0 3.0 525 ------- null} - -t 47.082 -s 21 -d 28 -p ack -e 40 -c 0 -i 1056 -a 1 -x {21.0 3.0 525 ------- null} h -t 47.082 -s 21 -d 28 -p ack -e 40 -c 0 -i 1056 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.0836 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {3.0 21.0 526 ------- null} + -t 47.0836 -s 21 -d 28 -p ack -e 40 -c 0 -i 1057 -a 1 -x {21.0 3.0 526 ------- null} - -t 47.0836 -s 21 -d 28 -p ack -e 40 -c 0 -i 1057 -a 1 -x {21.0 3.0 526 ------- null} h -t 47.0836 -s 21 -d 28 -p ack -e 40 -c 0 -i 1057 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.0852 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1038 -a 0 -x {3.0 21.0 527 ------- null} + -t 47.0852 -s 21 -d 28 -p ack -e 40 -c 0 -i 1058 -a 1 -x {21.0 3.0 527 ------- null} - -t 47.0852 -s 21 -d 28 -p ack -e 40 -c 0 -i 1058 -a 1 -x {21.0 3.0 527 ------- null} h -t 47.0852 -s 21 -d 28 -p ack -e 40 -c 0 -i 1058 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.0868 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {3.0 21.0 528 ------- null} + -t 47.0868 -s 21 -d 28 -p ack -e 40 -c 0 -i 1059 -a 1 -x {21.0 3.0 528 ------- null} - -t 47.0868 -s 21 -d 28 -p ack -e 40 -c 0 -i 1059 -a 1 -x {21.0 3.0 528 ------- null} h -t 47.0868 -s 21 -d 28 -p ack -e 40 -c 0 -i 1059 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.0884 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1040 -a 0 -x {3.0 21.0 529 ------- null} + -t 47.0884 -s 21 -d 28 -p ack -e 40 -c 0 -i 1060 -a 1 -x {21.0 3.0 529 ------- null} - -t 47.0884 -s 21 -d 28 -p ack -e 40 -c 0 -i 1060 -a 1 -x {21.0 3.0 529 ------- null} h -t 47.0884 -s 21 -d 28 -p ack -e 40 -c 0 -i 1060 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.09 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {3.0 21.0 530 ------- null} + -t 47.09 -s 21 -d 28 -p ack -e 40 -c 0 -i 1061 -a 1 -x {21.0 3.0 530 ------- null} - -t 47.09 -s 21 -d 28 -p ack -e 40 -c 0 -i 1061 -a 1 -x {21.0 3.0 530 ------- null} h -t 47.09 -s 21 -d 28 -p ack -e 40 -c 0 -i 1061 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.4096 -s 21 -d 28 -p ack -e 40 -c 0 -i 1042 -a 1 -x {21.0 3.0 511 ------- null} + -t 47.4096 -s 28 -d 1 -p ack -e 40 -c 0 -i 1042 -a 1 -x {21.0 3.0 511 ------- null} - -t 47.4096 -s 28 -d 1 -p ack -e 40 -c 0 -i 1042 -a 1 -x {21.0 3.0 511 ------- null} h -t 47.4096 -s 28 -d 1 -p ack -e 40 -c 0 -i 1042 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.4112 -s 21 -d 28 -p ack -e 40 -c 0 -i 1043 -a 1 -x {21.0 3.0 512 ------- null} + -t 47.4112 -s 28 -d 1 -p ack -e 40 -c 0 -i 1043 -a 1 -x {21.0 3.0 512 ------- null} - -t 47.4112 -s 28 -d 1 -p ack -e 40 -c 0 -i 1043 -a 1 -x {21.0 3.0 512 ------- null} h -t 47.4112 -s 28 -d 1 -p ack -e 40 -c 0 -i 1043 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.4128 -s 21 -d 28 -p ack -e 40 -c 0 -i 1044 -a 1 -x {21.0 3.0 513 ------- null} + -t 47.4128 -s 28 -d 1 -p ack -e 40 -c 0 -i 1044 -a 1 -x {21.0 3.0 513 ------- null} - -t 47.4128 -s 28 -d 1 -p ack -e 40 -c 0 -i 1044 -a 1 -x {21.0 3.0 513 ------- null} h -t 47.4128 -s 28 -d 1 -p ack -e 40 -c 0 -i 1044 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.4144 -s 21 -d 28 -p ack -e 40 -c 0 -i 1045 -a 1 -x {21.0 3.0 514 ------- null} + -t 47.4144 -s 28 -d 1 -p ack -e 40 -c 0 -i 1045 -a 1 -x {21.0 3.0 514 ------- null} - -t 47.4144 -s 28 -d 1 -p ack -e 40 -c 0 -i 1045 -a 1 -x {21.0 3.0 514 ------- null} h -t 47.4144 -s 28 -d 1 -p ack -e 40 -c 0 -i 1045 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.416 -s 21 -d 28 -p ack -e 40 -c 0 -i 1046 -a 1 -x {21.0 3.0 515 ------- null} + -t 47.416 -s 28 -d 1 -p ack -e 40 -c 0 -i 1046 -a 1 -x {21.0 3.0 515 ------- null} - -t 47.416 -s 28 -d 1 -p ack -e 40 -c 0 -i 1046 -a 1 -x {21.0 3.0 515 ------- null} h -t 47.416 -s 28 -d 1 -p ack -e 40 -c 0 -i 1046 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.4176 -s 21 -d 28 -p ack -e 40 -c 0 -i 1047 -a 1 -x {21.0 3.0 516 ------- null} + -t 47.4176 -s 28 -d 1 -p ack -e 40 -c 0 -i 1047 -a 1 -x {21.0 3.0 516 ------- null} - -t 47.4176 -s 28 -d 1 -p ack -e 40 -c 0 -i 1047 -a 1 -x {21.0 3.0 516 ------- null} h -t 47.4176 -s 28 -d 1 -p ack -e 40 -c 0 -i 1047 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.4192 -s 21 -d 28 -p ack -e 40 -c 0 -i 1048 -a 1 -x {21.0 3.0 517 ------- null} + -t 47.4192 -s 28 -d 1 -p ack -e 40 -c 0 -i 1048 -a 1 -x {21.0 3.0 517 ------- null} - -t 47.4192 -s 28 -d 1 -p ack -e 40 -c 0 -i 1048 -a 1 -x {21.0 3.0 517 ------- null} h -t 47.4192 -s 28 -d 1 -p ack -e 40 -c 0 -i 1048 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.4208 -s 21 -d 28 -p ack -e 40 -c 0 -i 1049 -a 1 -x {21.0 3.0 518 ------- null} + -t 47.4208 -s 28 -d 1 -p ack -e 40 -c 0 -i 1049 -a 1 -x {21.0 3.0 518 ------- null} - -t 47.4208 -s 28 -d 1 -p ack -e 40 -c 0 -i 1049 -a 1 -x {21.0 3.0 518 ------- null} h -t 47.4208 -s 28 -d 1 -p ack -e 40 -c 0 -i 1049 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.4224 -s 21 -d 28 -p ack -e 40 -c 0 -i 1050 -a 1 -x {21.0 3.0 519 ------- null} + -t 47.4224 -s 28 -d 1 -p ack -e 40 -c 0 -i 1050 -a 1 -x {21.0 3.0 519 ------- null} - -t 47.4224 -s 28 -d 1 -p ack -e 40 -c 0 -i 1050 -a 1 -x {21.0 3.0 519 ------- null} h -t 47.4224 -s 28 -d 1 -p ack -e 40 -c 0 -i 1050 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.424 -s 21 -d 28 -p ack -e 40 -c 0 -i 1051 -a 1 -x {21.0 3.0 520 ------- null} + -t 47.424 -s 28 -d 1 -p ack -e 40 -c 0 -i 1051 -a 1 -x {21.0 3.0 520 ------- null} - -t 47.424 -s 28 -d 1 -p ack -e 40 -c 0 -i 1051 -a 1 -x {21.0 3.0 520 ------- null} h -t 47.424 -s 28 -d 1 -p ack -e 40 -c 0 -i 1051 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.4256 -s 21 -d 28 -p ack -e 40 -c 0 -i 1052 -a 1 -x {21.0 3.0 521 ------- null} + -t 47.4256 -s 28 -d 1 -p ack -e 40 -c 0 -i 1052 -a 1 -x {21.0 3.0 521 ------- null} - -t 47.4256 -s 28 -d 1 -p ack -e 40 -c 0 -i 1052 -a 1 -x {21.0 3.0 521 ------- null} h -t 47.4256 -s 28 -d 1 -p ack -e 40 -c 0 -i 1052 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.4272 -s 21 -d 28 -p ack -e 40 -c 0 -i 1053 -a 1 -x {21.0 3.0 522 ------- null} + -t 47.4272 -s 28 -d 1 -p ack -e 40 -c 0 -i 1053 -a 1 -x {21.0 3.0 522 ------- null} - -t 47.4272 -s 28 -d 1 -p ack -e 40 -c 0 -i 1053 -a 1 -x {21.0 3.0 522 ------- null} h -t 47.4272 -s 28 -d 1 -p ack -e 40 -c 0 -i 1053 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.4288 -s 21 -d 28 -p ack -e 40 -c 0 -i 1054 -a 1 -x {21.0 3.0 523 ------- null} + -t 47.4288 -s 28 -d 1 -p ack -e 40 -c 0 -i 1054 -a 1 -x {21.0 3.0 523 ------- null} - -t 47.4288 -s 28 -d 1 -p ack -e 40 -c 0 -i 1054 -a 1 -x {21.0 3.0 523 ------- null} h -t 47.4288 -s 28 -d 1 -p ack -e 40 -c 0 -i 1054 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.4304 -s 21 -d 28 -p ack -e 40 -c 0 -i 1055 -a 1 -x {21.0 3.0 524 ------- null} + -t 47.4304 -s 28 -d 1 -p ack -e 40 -c 0 -i 1055 -a 1 -x {21.0 3.0 524 ------- null} - -t 47.4304 -s 28 -d 1 -p ack -e 40 -c 0 -i 1055 -a 1 -x {21.0 3.0 524 ------- null} h -t 47.4304 -s 28 -d 1 -p ack -e 40 -c 0 -i 1055 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.432 -s 21 -d 28 -p ack -e 40 -c 0 -i 1056 -a 1 -x {21.0 3.0 525 ------- null} + -t 47.432 -s 28 -d 1 -p ack -e 40 -c 0 -i 1056 -a 1 -x {21.0 3.0 525 ------- null} - -t 47.432 -s 28 -d 1 -p ack -e 40 -c 0 -i 1056 -a 1 -x {21.0 3.0 525 ------- null} h -t 47.432 -s 28 -d 1 -p ack -e 40 -c 0 -i 1056 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.4336 -s 21 -d 28 -p ack -e 40 -c 0 -i 1057 -a 1 -x {21.0 3.0 526 ------- null} + -t 47.4336 -s 28 -d 1 -p ack -e 40 -c 0 -i 1057 -a 1 -x {21.0 3.0 526 ------- null} - -t 47.4336 -s 28 -d 1 -p ack -e 40 -c 0 -i 1057 -a 1 -x {21.0 3.0 526 ------- null} h -t 47.4336 -s 28 -d 1 -p ack -e 40 -c 0 -i 1057 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.4352 -s 21 -d 28 -p ack -e 40 -c 0 -i 1058 -a 1 -x {21.0 3.0 527 ------- null} + -t 47.4352 -s 28 -d 1 -p ack -e 40 -c 0 -i 1058 -a 1 -x {21.0 3.0 527 ------- null} - -t 47.4352 -s 28 -d 1 -p ack -e 40 -c 0 -i 1058 -a 1 -x {21.0 3.0 527 ------- null} h -t 47.4352 -s 28 -d 1 -p ack -e 40 -c 0 -i 1058 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.4368 -s 21 -d 28 -p ack -e 40 -c 0 -i 1059 -a 1 -x {21.0 3.0 528 ------- null} + -t 47.4368 -s 28 -d 1 -p ack -e 40 -c 0 -i 1059 -a 1 -x {21.0 3.0 528 ------- null} - -t 47.4368 -s 28 -d 1 -p ack -e 40 -c 0 -i 1059 -a 1 -x {21.0 3.0 528 ------- null} h -t 47.4368 -s 28 -d 1 -p ack -e 40 -c 0 -i 1059 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.4384 -s 21 -d 28 -p ack -e 40 -c 0 -i 1060 -a 1 -x {21.0 3.0 529 ------- null} + -t 47.4384 -s 28 -d 1 -p ack -e 40 -c 0 -i 1060 -a 1 -x {21.0 3.0 529 ------- null} - -t 47.4384 -s 28 -d 1 -p ack -e 40 -c 0 -i 1060 -a 1 -x {21.0 3.0 529 ------- null} h -t 47.4384 -s 28 -d 1 -p ack -e 40 -c 0 -i 1060 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.44 -s 21 -d 28 -p ack -e 40 -c 0 -i 1061 -a 1 -x {21.0 3.0 530 ------- null} + -t 47.44 -s 28 -d 1 -p ack -e 40 -c 0 -i 1061 -a 1 -x {21.0 3.0 530 ------- null} - -t 47.44 -s 28 -d 1 -p ack -e 40 -c 0 -i 1061 -a 1 -x {21.0 3.0 530 ------- null} h -t 47.44 -s 28 -d 1 -p ack -e 40 -c 0 -i 1061 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.7097 -s 28 -d 1 -p ack -e 40 -c 0 -i 1042 -a 1 -x {21.0 3.0 511 ------- null} + -t 47.7097 -s 1 -d 3 -p ack -e 40 -c 0 -i 1042 -a 1 -x {21.0 3.0 511 ------- null} - -t 47.7097 -s 1 -d 3 -p ack -e 40 -c 0 -i 1042 -a 1 -x {21.0 3.0 511 ------- null} h -t 47.7097 -s 1 -d 3 -p ack -e 40 -c 0 -i 1042 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.7113 -s 28 -d 1 -p ack -e 40 -c 0 -i 1043 -a 1 -x {21.0 3.0 512 ------- null} + -t 47.7113 -s 1 -d 3 -p ack -e 40 -c 0 -i 1043 -a 1 -x {21.0 3.0 512 ------- null} - -t 47.7113 -s 1 -d 3 -p ack -e 40 -c 0 -i 1043 -a 1 -x {21.0 3.0 512 ------- null} h -t 47.7113 -s 1 -d 3 -p ack -e 40 -c 0 -i 1043 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.7129 -s 28 -d 1 -p ack -e 40 -c 0 -i 1044 -a 1 -x {21.0 3.0 513 ------- null} + -t 47.7129 -s 1 -d 3 -p ack -e 40 -c 0 -i 1044 -a 1 -x {21.0 3.0 513 ------- null} - -t 47.7129 -s 1 -d 3 -p ack -e 40 -c 0 -i 1044 -a 1 -x {21.0 3.0 513 ------- null} h -t 47.7129 -s 1 -d 3 -p ack -e 40 -c 0 -i 1044 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.7145 -s 28 -d 1 -p ack -e 40 -c 0 -i 1045 -a 1 -x {21.0 3.0 514 ------- null} + -t 47.7145 -s 1 -d 3 -p ack -e 40 -c 0 -i 1045 -a 1 -x {21.0 3.0 514 ------- null} - -t 47.7145 -s 1 -d 3 -p ack -e 40 -c 0 -i 1045 -a 1 -x {21.0 3.0 514 ------- null} h -t 47.7145 -s 1 -d 3 -p ack -e 40 -c 0 -i 1045 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.7161 -s 28 -d 1 -p ack -e 40 -c 0 -i 1046 -a 1 -x {21.0 3.0 515 ------- null} + -t 47.7161 -s 1 -d 3 -p ack -e 40 -c 0 -i 1046 -a 1 -x {21.0 3.0 515 ------- null} - -t 47.7161 -s 1 -d 3 -p ack -e 40 -c 0 -i 1046 -a 1 -x {21.0 3.0 515 ------- null} h -t 47.7161 -s 1 -d 3 -p ack -e 40 -c 0 -i 1046 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.7177 -s 28 -d 1 -p ack -e 40 -c 0 -i 1047 -a 1 -x {21.0 3.0 516 ------- null} + -t 47.7177 -s 1 -d 3 -p ack -e 40 -c 0 -i 1047 -a 1 -x {21.0 3.0 516 ------- null} - -t 47.7177 -s 1 -d 3 -p ack -e 40 -c 0 -i 1047 -a 1 -x {21.0 3.0 516 ------- null} h -t 47.7177 -s 1 -d 3 -p ack -e 40 -c 0 -i 1047 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.7193 -s 28 -d 1 -p ack -e 40 -c 0 -i 1048 -a 1 -x {21.0 3.0 517 ------- null} + -t 47.7193 -s 1 -d 3 -p ack -e 40 -c 0 -i 1048 -a 1 -x {21.0 3.0 517 ------- null} - -t 47.7193 -s 1 -d 3 -p ack -e 40 -c 0 -i 1048 -a 1 -x {21.0 3.0 517 ------- null} h -t 47.7193 -s 1 -d 3 -p ack -e 40 -c 0 -i 1048 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.7209 -s 28 -d 1 -p ack -e 40 -c 0 -i 1049 -a 1 -x {21.0 3.0 518 ------- null} + -t 47.7209 -s 1 -d 3 -p ack -e 40 -c 0 -i 1049 -a 1 -x {21.0 3.0 518 ------- null} - -t 47.7209 -s 1 -d 3 -p ack -e 40 -c 0 -i 1049 -a 1 -x {21.0 3.0 518 ------- null} h -t 47.7209 -s 1 -d 3 -p ack -e 40 -c 0 -i 1049 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.7225 -s 28 -d 1 -p ack -e 40 -c 0 -i 1050 -a 1 -x {21.0 3.0 519 ------- null} + -t 47.7225 -s 1 -d 3 -p ack -e 40 -c 0 -i 1050 -a 1 -x {21.0 3.0 519 ------- null} - -t 47.7225 -s 1 -d 3 -p ack -e 40 -c 0 -i 1050 -a 1 -x {21.0 3.0 519 ------- null} h -t 47.7225 -s 1 -d 3 -p ack -e 40 -c 0 -i 1050 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.7241 -s 28 -d 1 -p ack -e 40 -c 0 -i 1051 -a 1 -x {21.0 3.0 520 ------- null} + -t 47.7241 -s 1 -d 3 -p ack -e 40 -c 0 -i 1051 -a 1 -x {21.0 3.0 520 ------- null} - -t 47.7241 -s 1 -d 3 -p ack -e 40 -c 0 -i 1051 -a 1 -x {21.0 3.0 520 ------- null} h -t 47.7241 -s 1 -d 3 -p ack -e 40 -c 0 -i 1051 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.7257 -s 28 -d 1 -p ack -e 40 -c 0 -i 1052 -a 1 -x {21.0 3.0 521 ------- null} + -t 47.7257 -s 1 -d 3 -p ack -e 40 -c 0 -i 1052 -a 1 -x {21.0 3.0 521 ------- null} - -t 47.7257 -s 1 -d 3 -p ack -e 40 -c 0 -i 1052 -a 1 -x {21.0 3.0 521 ------- null} h -t 47.7257 -s 1 -d 3 -p ack -e 40 -c 0 -i 1052 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.7273 -s 28 -d 1 -p ack -e 40 -c 0 -i 1053 -a 1 -x {21.0 3.0 522 ------- null} + -t 47.7273 -s 1 -d 3 -p ack -e 40 -c 0 -i 1053 -a 1 -x {21.0 3.0 522 ------- null} - -t 47.7273 -s 1 -d 3 -p ack -e 40 -c 0 -i 1053 -a 1 -x {21.0 3.0 522 ------- null} h -t 47.7273 -s 1 -d 3 -p ack -e 40 -c 0 -i 1053 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.7289 -s 28 -d 1 -p ack -e 40 -c 0 -i 1054 -a 1 -x {21.0 3.0 523 ------- null} + -t 47.7289 -s 1 -d 3 -p ack -e 40 -c 0 -i 1054 -a 1 -x {21.0 3.0 523 ------- null} - -t 47.7289 -s 1 -d 3 -p ack -e 40 -c 0 -i 1054 -a 1 -x {21.0 3.0 523 ------- null} h -t 47.7289 -s 1 -d 3 -p ack -e 40 -c 0 -i 1054 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.7305 -s 28 -d 1 -p ack -e 40 -c 0 -i 1055 -a 1 -x {21.0 3.0 524 ------- null} + -t 47.7305 -s 1 -d 3 -p ack -e 40 -c 0 -i 1055 -a 1 -x {21.0 3.0 524 ------- null} - -t 47.7305 -s 1 -d 3 -p ack -e 40 -c 0 -i 1055 -a 1 -x {21.0 3.0 524 ------- null} h -t 47.7305 -s 1 -d 3 -p ack -e 40 -c 0 -i 1055 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.7321 -s 28 -d 1 -p ack -e 40 -c 0 -i 1056 -a 1 -x {21.0 3.0 525 ------- null} + -t 47.7321 -s 1 -d 3 -p ack -e 40 -c 0 -i 1056 -a 1 -x {21.0 3.0 525 ------- null} - -t 47.7321 -s 1 -d 3 -p ack -e 40 -c 0 -i 1056 -a 1 -x {21.0 3.0 525 ------- null} h -t 47.7321 -s 1 -d 3 -p ack -e 40 -c 0 -i 1056 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.7337 -s 28 -d 1 -p ack -e 40 -c 0 -i 1057 -a 1 -x {21.0 3.0 526 ------- null} + -t 47.7337 -s 1 -d 3 -p ack -e 40 -c 0 -i 1057 -a 1 -x {21.0 3.0 526 ------- null} - -t 47.7337 -s 1 -d 3 -p ack -e 40 -c 0 -i 1057 -a 1 -x {21.0 3.0 526 ------- null} h -t 47.7337 -s 1 -d 3 -p ack -e 40 -c 0 -i 1057 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.7353 -s 28 -d 1 -p ack -e 40 -c 0 -i 1058 -a 1 -x {21.0 3.0 527 ------- null} + -t 47.7353 -s 1 -d 3 -p ack -e 40 -c 0 -i 1058 -a 1 -x {21.0 3.0 527 ------- null} - -t 47.7353 -s 1 -d 3 -p ack -e 40 -c 0 -i 1058 -a 1 -x {21.0 3.0 527 ------- null} h -t 47.7353 -s 1 -d 3 -p ack -e 40 -c 0 -i 1058 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.7369 -s 28 -d 1 -p ack -e 40 -c 0 -i 1059 -a 1 -x {21.0 3.0 528 ------- null} + -t 47.7369 -s 1 -d 3 -p ack -e 40 -c 0 -i 1059 -a 1 -x {21.0 3.0 528 ------- null} - -t 47.7369 -s 1 -d 3 -p ack -e 40 -c 0 -i 1059 -a 1 -x {21.0 3.0 528 ------- null} h -t 47.7369 -s 1 -d 3 -p ack -e 40 -c 0 -i 1059 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.7385 -s 28 -d 1 -p ack -e 40 -c 0 -i 1060 -a 1 -x {21.0 3.0 529 ------- null} + -t 47.7385 -s 1 -d 3 -p ack -e 40 -c 0 -i 1060 -a 1 -x {21.0 3.0 529 ------- null} - -t 47.7385 -s 1 -d 3 -p ack -e 40 -c 0 -i 1060 -a 1 -x {21.0 3.0 529 ------- null} h -t 47.7385 -s 1 -d 3 -p ack -e 40 -c 0 -i 1060 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.7401 -s 28 -d 1 -p ack -e 40 -c 0 -i 1061 -a 1 -x {21.0 3.0 530 ------- null} + -t 47.7401 -s 1 -d 3 -p ack -e 40 -c 0 -i 1061 -a 1 -x {21.0 3.0 530 ------- null} - -t 47.7401 -s 1 -d 3 -p ack -e 40 -c 0 -i 1061 -a 1 -x {21.0 3.0 530 ------- null} h -t 47.7401 -s 1 -d 3 -p ack -e 40 -c 0 -i 1061 -a 1 -x {21.0 3.0 -1 ------- null} r -t 47.8498 -s 1 -d 3 -p ack -e 40 -c 0 -i 1042 -a 1 -x {21.0 3.0 511 ------- null} + -t 47.8498 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1062 -a 0 -x {3.0 21.0 531 ------- null} - -t 47.8498 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1062 -a 0 -x {3.0 21.0 531 ------- null} h -t 47.8498 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1062 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.8514 -s 1 -d 3 -p ack -e 40 -c 0 -i 1043 -a 1 -x {21.0 3.0 512 ------- null} + -t 47.8514 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {3.0 21.0 532 ------- null} - -t 47.8514 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {3.0 21.0 532 ------- null} h -t 47.8514 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.853 -s 1 -d 3 -p ack -e 40 -c 0 -i 1044 -a 1 -x {21.0 3.0 513 ------- null} + -t 47.853 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1064 -a 0 -x {3.0 21.0 533 ------- null} - -t 47.853 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1064 -a 0 -x {3.0 21.0 533 ------- null} h -t 47.853 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1064 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.8546 -s 1 -d 3 -p ack -e 40 -c 0 -i 1045 -a 1 -x {21.0 3.0 514 ------- null} + -t 47.8546 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {3.0 21.0 534 ------- null} - -t 47.8546 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {3.0 21.0 534 ------- null} h -t 47.8546 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.8562 -s 1 -d 3 -p ack -e 40 -c 0 -i 1046 -a 1 -x {21.0 3.0 515 ------- null} + -t 47.8562 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1066 -a 0 -x {3.0 21.0 535 ------- null} - -t 47.8562 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1066 -a 0 -x {3.0 21.0 535 ------- null} h -t 47.8562 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1066 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.8578 -s 1 -d 3 -p ack -e 40 -c 0 -i 1047 -a 1 -x {21.0 3.0 516 ------- null} + -t 47.8578 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {3.0 21.0 536 ------- null} - -t 47.8578 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {3.0 21.0 536 ------- null} h -t 47.8578 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.8594 -s 1 -d 3 -p ack -e 40 -c 0 -i 1048 -a 1 -x {21.0 3.0 517 ------- null} + -t 47.8594 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1068 -a 0 -x {3.0 21.0 537 ------- null} - -t 47.8594 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1068 -a 0 -x {3.0 21.0 537 ------- null} h -t 47.8594 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1068 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.861 -s 1 -d 3 -p ack -e 40 -c 0 -i 1049 -a 1 -x {21.0 3.0 518 ------- null} + -t 47.861 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {3.0 21.0 538 ------- null} - -t 47.861 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {3.0 21.0 538 ------- null} h -t 47.861 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.8626 -s 1 -d 3 -p ack -e 40 -c 0 -i 1050 -a 1 -x {21.0 3.0 519 ------- null} + -t 47.8626 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1070 -a 0 -x {3.0 21.0 539 ------- null} - -t 47.8626 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1070 -a 0 -x {3.0 21.0 539 ------- null} h -t 47.8626 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1070 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.8642 -s 1 -d 3 -p ack -e 40 -c 0 -i 1051 -a 1 -x {21.0 3.0 520 ------- null} + -t 47.8642 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {3.0 21.0 540 ------- null} - -t 47.8642 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {3.0 21.0 540 ------- null} h -t 47.8642 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.8658 -s 1 -d 3 -p ack -e 40 -c 0 -i 1052 -a 1 -x {21.0 3.0 521 ------- null} + -t 47.8658 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1072 -a 0 -x {3.0 21.0 541 ------- null} - -t 47.8658 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1072 -a 0 -x {3.0 21.0 541 ------- null} h -t 47.8658 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1072 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.8674 -s 1 -d 3 -p ack -e 40 -c 0 -i 1053 -a 1 -x {21.0 3.0 522 ------- null} + -t 47.8674 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {3.0 21.0 542 ------- null} - -t 47.8674 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {3.0 21.0 542 ------- null} h -t 47.8674 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.869 -s 1 -d 3 -p ack -e 40 -c 0 -i 1054 -a 1 -x {21.0 3.0 523 ------- null} + -t 47.869 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1074 -a 0 -x {3.0 21.0 543 ------- null} - -t 47.869 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1074 -a 0 -x {3.0 21.0 543 ------- null} h -t 47.869 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1074 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.8706 -s 1 -d 3 -p ack -e 40 -c 0 -i 1055 -a 1 -x {21.0 3.0 524 ------- null} + -t 47.8706 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {3.0 21.0 544 ------- null} - -t 47.8706 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {3.0 21.0 544 ------- null} h -t 47.8706 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.8722 -s 1 -d 3 -p ack -e 40 -c 0 -i 1056 -a 1 -x {21.0 3.0 525 ------- null} + -t 47.8722 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1076 -a 0 -x {3.0 21.0 545 ------- null} - -t 47.8722 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1076 -a 0 -x {3.0 21.0 545 ------- null} h -t 47.8722 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1076 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.8738 -s 1 -d 3 -p ack -e 40 -c 0 -i 1057 -a 1 -x {21.0 3.0 526 ------- null} + -t 47.8738 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {3.0 21.0 546 ------- null} - -t 47.8738 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {3.0 21.0 546 ------- null} h -t 47.8738 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.8754 -s 1 -d 3 -p ack -e 40 -c 0 -i 1058 -a 1 -x {21.0 3.0 527 ------- null} + -t 47.8754 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1078 -a 0 -x {3.0 21.0 547 ------- null} - -t 47.8754 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1078 -a 0 -x {3.0 21.0 547 ------- null} h -t 47.8754 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1078 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.877 -s 1 -d 3 -p ack -e 40 -c 0 -i 1059 -a 1 -x {21.0 3.0 528 ------- null} + -t 47.877 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {3.0 21.0 548 ------- null} - -t 47.877 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {3.0 21.0 548 ------- null} h -t 47.877 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.8786 -s 1 -d 3 -p ack -e 40 -c 0 -i 1060 -a 1 -x {21.0 3.0 529 ------- null} + -t 47.8786 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1080 -a 0 -x {3.0 21.0 549 ------- null} - -t 47.8786 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1080 -a 0 -x {3.0 21.0 549 ------- null} h -t 47.8786 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1080 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.8802 -s 1 -d 3 -p ack -e 40 -c 0 -i 1061 -a 1 -x {21.0 3.0 530 ------- null} + -t 47.8802 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {3.0 21.0 550 ------- null} - -t 47.8802 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {3.0 21.0 550 ------- null} h -t 47.8802 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.9914 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1062 -a 0 -x {3.0 21.0 531 ------- null} + -t 47.9914 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1062 -a 0 -x {3.0 21.0 531 ------- null} - -t 47.9914 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1062 -a 0 -x {3.0 21.0 531 ------- null} h -t 47.9914 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1062 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.993 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {3.0 21.0 532 ------- null} + -t 47.993 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {3.0 21.0 532 ------- null} - -t 47.993 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {3.0 21.0 532 ------- null} h -t 47.993 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.9946 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1064 -a 0 -x {3.0 21.0 533 ------- null} + -t 47.9946 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1064 -a 0 -x {3.0 21.0 533 ------- null} - -t 47.9946 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1064 -a 0 -x {3.0 21.0 533 ------- null} h -t 47.9946 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1064 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.9962 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {3.0 21.0 534 ------- null} + -t 47.9962 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {3.0 21.0 534 ------- null} - -t 47.9962 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {3.0 21.0 534 ------- null} h -t 47.9962 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.9978 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1066 -a 0 -x {3.0 21.0 535 ------- null} + -t 47.9978 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1066 -a 0 -x {3.0 21.0 535 ------- null} - -t 47.9978 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1066 -a 0 -x {3.0 21.0 535 ------- null} h -t 47.9978 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1066 -a 0 -x {3.0 21.0 -1 ------- null} r -t 47.9994 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {3.0 21.0 536 ------- null} + -t 47.9994 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {3.0 21.0 536 ------- null} - -t 47.9994 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {3.0 21.0 536 ------- null} h -t 47.9994 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.001 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1068 -a 0 -x {3.0 21.0 537 ------- null} + -t 48.001 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1068 -a 0 -x {3.0 21.0 537 ------- null} - -t 48.001 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1068 -a 0 -x {3.0 21.0 537 ------- null} h -t 48.001 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1068 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.0026 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {3.0 21.0 538 ------- null} + -t 48.0026 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {3.0 21.0 538 ------- null} - -t 48.0026 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {3.0 21.0 538 ------- null} h -t 48.0026 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.0042 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1070 -a 0 -x {3.0 21.0 539 ------- null} + -t 48.0042 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1070 -a 0 -x {3.0 21.0 539 ------- null} - -t 48.0042 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1070 -a 0 -x {3.0 21.0 539 ------- null} h -t 48.0042 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1070 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.0058 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {3.0 21.0 540 ------- null} + -t 48.0058 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {3.0 21.0 540 ------- null} - -t 48.0058 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {3.0 21.0 540 ------- null} h -t 48.0058 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.0074 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1072 -a 0 -x {3.0 21.0 541 ------- null} + -t 48.0074 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1072 -a 0 -x {3.0 21.0 541 ------- null} - -t 48.0074 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1072 -a 0 -x {3.0 21.0 541 ------- null} h -t 48.0074 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1072 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.009 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {3.0 21.0 542 ------- null} + -t 48.009 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {3.0 21.0 542 ------- null} - -t 48.009 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {3.0 21.0 542 ------- null} h -t 48.009 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.0106 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1074 -a 0 -x {3.0 21.0 543 ------- null} + -t 48.0106 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1074 -a 0 -x {3.0 21.0 543 ------- null} - -t 48.0106 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1074 -a 0 -x {3.0 21.0 543 ------- null} h -t 48.0106 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1074 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.0122 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {3.0 21.0 544 ------- null} + -t 48.0122 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {3.0 21.0 544 ------- null} - -t 48.0122 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {3.0 21.0 544 ------- null} h -t 48.0122 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.0138 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1076 -a 0 -x {3.0 21.0 545 ------- null} + -t 48.0138 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1076 -a 0 -x {3.0 21.0 545 ------- null} - -t 48.0138 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1076 -a 0 -x {3.0 21.0 545 ------- null} h -t 48.0138 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1076 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.0154 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {3.0 21.0 546 ------- null} + -t 48.0154 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {3.0 21.0 546 ------- null} - -t 48.0154 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {3.0 21.0 546 ------- null} h -t 48.0154 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.017 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1078 -a 0 -x {3.0 21.0 547 ------- null} + -t 48.017 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1078 -a 0 -x {3.0 21.0 547 ------- null} - -t 48.017 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1078 -a 0 -x {3.0 21.0 547 ------- null} h -t 48.017 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1078 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.0186 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {3.0 21.0 548 ------- null} + -t 48.0186 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {3.0 21.0 548 ------- null} - -t 48.0186 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {3.0 21.0 548 ------- null} h -t 48.0186 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.0202 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1080 -a 0 -x {3.0 21.0 549 ------- null} + -t 48.0202 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1080 -a 0 -x {3.0 21.0 549 ------- null} - -t 48.0202 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1080 -a 0 -x {3.0 21.0 549 ------- null} h -t 48.0202 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1080 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.0218 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {3.0 21.0 550 ------- null} + -t 48.0218 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {3.0 21.0 550 ------- null} - -t 48.0218 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {3.0 21.0 550 ------- null} h -t 48.0218 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.293 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1062 -a 0 -x {3.0 21.0 531 ------- null} + -t 48.293 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1062 -a 0 -x {3.0 21.0 531 ------- null} - -t 48.293 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1062 -a 0 -x {3.0 21.0 531 ------- null} h -t 48.293 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1062 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.2946 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {3.0 21.0 532 ------- null} + -t 48.2946 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {3.0 21.0 532 ------- null} - -t 48.2946 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {3.0 21.0 532 ------- null} h -t 48.2946 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.2962 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1064 -a 0 -x {3.0 21.0 533 ------- null} + -t 48.2962 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1064 -a 0 -x {3.0 21.0 533 ------- null} - -t 48.2962 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1064 -a 0 -x {3.0 21.0 533 ------- null} h -t 48.2962 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1064 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.2978 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {3.0 21.0 534 ------- null} + -t 48.2978 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {3.0 21.0 534 ------- null} - -t 48.2978 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {3.0 21.0 534 ------- null} h -t 48.2978 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.2994 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1066 -a 0 -x {3.0 21.0 535 ------- null} + -t 48.2994 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1066 -a 0 -x {3.0 21.0 535 ------- null} - -t 48.2994 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1066 -a 0 -x {3.0 21.0 535 ------- null} h -t 48.2994 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1066 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.301 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {3.0 21.0 536 ------- null} + -t 48.301 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {3.0 21.0 536 ------- null} - -t 48.301 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {3.0 21.0 536 ------- null} h -t 48.301 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.3026 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1068 -a 0 -x {3.0 21.0 537 ------- null} + -t 48.3026 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1068 -a 0 -x {3.0 21.0 537 ------- null} - -t 48.3026 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1068 -a 0 -x {3.0 21.0 537 ------- null} h -t 48.3026 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1068 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.3042 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {3.0 21.0 538 ------- null} + -t 48.3042 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {3.0 21.0 538 ------- null} - -t 48.3042 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {3.0 21.0 538 ------- null} h -t 48.3042 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.3058 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1070 -a 0 -x {3.0 21.0 539 ------- null} + -t 48.3058 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1070 -a 0 -x {3.0 21.0 539 ------- null} - -t 48.3058 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1070 -a 0 -x {3.0 21.0 539 ------- null} h -t 48.3058 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1070 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.3074 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {3.0 21.0 540 ------- null} + -t 48.3074 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {3.0 21.0 540 ------- null} - -t 48.3074 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {3.0 21.0 540 ------- null} h -t 48.3074 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.309 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1072 -a 0 -x {3.0 21.0 541 ------- null} + -t 48.309 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1072 -a 0 -x {3.0 21.0 541 ------- null} - -t 48.309 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1072 -a 0 -x {3.0 21.0 541 ------- null} h -t 48.309 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1072 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.3106 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {3.0 21.0 542 ------- null} + -t 48.3106 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {3.0 21.0 542 ------- null} - -t 48.3106 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {3.0 21.0 542 ------- null} h -t 48.3106 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.3122 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1074 -a 0 -x {3.0 21.0 543 ------- null} + -t 48.3122 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1074 -a 0 -x {3.0 21.0 543 ------- null} - -t 48.3122 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1074 -a 0 -x {3.0 21.0 543 ------- null} h -t 48.3122 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1074 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.3138 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {3.0 21.0 544 ------- null} + -t 48.3138 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {3.0 21.0 544 ------- null} - -t 48.3138 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {3.0 21.0 544 ------- null} h -t 48.3138 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.3154 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1076 -a 0 -x {3.0 21.0 545 ------- null} + -t 48.3154 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1076 -a 0 -x {3.0 21.0 545 ------- null} - -t 48.3154 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1076 -a 0 -x {3.0 21.0 545 ------- null} h -t 48.3154 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1076 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.317 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {3.0 21.0 546 ------- null} + -t 48.317 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {3.0 21.0 546 ------- null} - -t 48.317 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {3.0 21.0 546 ------- null} h -t 48.317 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.3186 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1078 -a 0 -x {3.0 21.0 547 ------- null} + -t 48.3186 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1078 -a 0 -x {3.0 21.0 547 ------- null} - -t 48.3186 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1078 -a 0 -x {3.0 21.0 547 ------- null} h -t 48.3186 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1078 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.3202 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {3.0 21.0 548 ------- null} + -t 48.3202 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {3.0 21.0 548 ------- null} - -t 48.3202 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {3.0 21.0 548 ------- null} h -t 48.3202 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.3218 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1080 -a 0 -x {3.0 21.0 549 ------- null} + -t 48.3218 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1080 -a 0 -x {3.0 21.0 549 ------- null} - -t 48.3218 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1080 -a 0 -x {3.0 21.0 549 ------- null} h -t 48.3218 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1080 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.3234 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {3.0 21.0 550 ------- null} + -t 48.3234 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {3.0 21.0 550 ------- null} - -t 48.3234 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {3.0 21.0 550 ------- null} h -t 48.3234 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {3.0 21.0 -1 ------- null} r -t 48.6446 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1062 -a 0 -x {3.0 21.0 531 ------- null} + -t 48.6446 -s 21 -d 28 -p ack -e 40 -c 0 -i 1082 -a 1 -x {21.0 3.0 531 ------- null} - -t 48.6446 -s 21 -d 28 -p ack -e 40 -c 0 -i 1082 -a 1 -x {21.0 3.0 531 ------- null} h -t 48.6446 -s 21 -d 28 -p ack -e 40 -c 0 -i 1082 -a 1 -x {21.0 3.0 -1 ------- null} r -t 48.6462 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {3.0 21.0 532 ------- null} + -t 48.6462 -s 21 -d 28 -p ack -e 40 -c 0 -i 1083 -a 1 -x {21.0 3.0 532 ------- null} - -t 48.6462 -s 21 -d 28 -p ack -e 40 -c 0 -i 1083 -a 1 -x {21.0 3.0 532 ------- null} h -t 48.6462 -s 21 -d 28 -p ack -e 40 -c 0 -i 1083 -a 1 -x {21.0 3.0 -1 ------- null} r -t 48.6478 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1064 -a 0 -x {3.0 21.0 533 ------- null} + -t 48.6478 -s 21 -d 28 -p ack -e 40 -c 0 -i 1084 -a 1 -x {21.0 3.0 533 ------- null} - -t 48.6478 -s 21 -d 28 -p ack -e 40 -c 0 -i 1084 -a 1 -x {21.0 3.0 533 ------- null} h -t 48.6478 -s 21 -d 28 -p ack -e 40 -c 0 -i 1084 -a 1 -x {21.0 3.0 -1 ------- null} r -t 48.6494 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {3.0 21.0 534 ------- null} + -t 48.6494 -s 21 -d 28 -p ack -e 40 -c 0 -i 1085 -a 1 -x {21.0 3.0 534 ------- null} - -t 48.6494 -s 21 -d 28 -p ack -e 40 -c 0 -i 1085 -a 1 -x {21.0 3.0 534 ------- null} h -t 48.6494 -s 21 -d 28 -p ack -e 40 -c 0 -i 1085 -a 1 -x {21.0 3.0 -1 ------- null} r -t 48.651 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1066 -a 0 -x {3.0 21.0 535 ------- null} + -t 48.651 -s 21 -d 28 -p ack -e 40 -c 0 -i 1086 -a 1 -x {21.0 3.0 535 ------- null} - -t 48.651 -s 21 -d 28 -p ack -e 40 -c 0 -i 1086 -a 1 -x {21.0 3.0 535 ------- null} h -t 48.651 -s 21 -d 28 -p ack -e 40 -c 0 -i 1086 -a 1 -x {21.0 3.0 -1 ------- null} r -t 48.6526 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {3.0 21.0 536 ------- null} + -t 48.6526 -s 21 -d 28 -p ack -e 40 -c 0 -i 1087 -a 1 -x {21.0 3.0 536 ------- null} - -t 48.6526 -s 21 -d 28 -p ack -e 40 -c 0 -i 1087 -a 1 -x {21.0 3.0 536 ------- null} h -t 48.6526 -s 21 -d 28 -p ack -e 40 -c 0 -i 1087 -a 1 -x {21.0 3.0 -1 ------- null} r -t 48.6542 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1068 -a 0 -x {3.0 21.0 537 ------- null} + -t 48.6542 -s 21 -d 28 -p ack -e 40 -c 0 -i 1088 -a 1 -x {21.0 3.0 537 ------- null} - -t 48.6542 -s 21 -d 28 -p ack -e 40 -c 0 -i 1088 -a 1 -x {21.0 3.0 537 ------- null} h -t 48.6542 -s 21 -d 28 -p ack -e 40 -c 0 -i 1088 -a 1 -x {21.0 3.0 -1 ------- null} r -t 48.6558 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {3.0 21.0 538 ------- null} + -t 48.6558 -s 21 -d 28 -p ack -e 40 -c 0 -i 1089 -a 1 -x {21.0 3.0 538 ------- null} - -t 48.6558 -s 21 -d 28 -p ack -e 40 -c 0 -i 1089 -a 1 -x {21.0 3.0 538 ------- null} h -t 48.6558 -s 21 -d 28 -p ack -e 40 -c 0 -i 1089 -a 1 -x {21.0 3.0 -1 ------- null} r -t 48.6574 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1070 -a 0 -x {3.0 21.0 539 ------- null} + -t 48.6574 -s 21 -d 28 -p ack -e 40 -c 0 -i 1090 -a 1 -x {21.0 3.0 539 ------- null} - -t 48.6574 -s 21 -d 28 -p ack -e 40 -c 0 -i 1090 -a 1 -x {21.0 3.0 539 ------- null} h -t 48.6574 -s 21 -d 28 -p ack -e 40 -c 0 -i 1090 -a 1 -x {21.0 3.0 -1 ------- null} r -t 48.659 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {3.0 21.0 540 ------- null} + -t 48.659 -s 21 -d 28 -p ack -e 40 -c 0 -i 1091 -a 1 -x {21.0 3.0 540 ------- null} - -t 48.659 -s 21 -d 28 -p ack -e 40 -c 0 -i 1091 -a 1 -x {21.0 3.0 540 ------- null} h -t 48.659 -s 21 -d 28 -p ack -e 40 -c 0 -i 1091 -a 1 -x {21.0 3.0 -1 ------- null} r -t 48.6606 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1072 -a 0 -x {3.0 21.0 541 ------- null} + -t 48.6606 -s 21 -d 28 -p ack -e 40 -c 0 -i 1092 -a 1 -x {21.0 3.0 541 ------- null} - -t 48.6606 -s 21 -d 28 -p ack -e 40 -c 0 -i 1092 -a 1 -x {21.0 3.0 541 ------- null} h -t 48.6606 -s 21 -d 28 -p ack -e 40 -c 0 -i 1092 -a 1 -x {21.0 3.0 -1 ------- null} r -t 48.6622 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {3.0 21.0 542 ------- null} + -t 48.6622 -s 21 -d 28 -p ack -e 40 -c 0 -i 1093 -a 1 -x {21.0 3.0 542 ------- null} - -t 48.6622 -s 21 -d 28 -p ack -e 40 -c 0 -i 1093 -a 1 -x {21.0 3.0 542 ------- null} h -t 48.6622 -s 21 -d 28 -p ack -e 40 -c 0 -i 1093 -a 1 -x {21.0 3.0 -1 ------- null} r -t 48.6638 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1074 -a 0 -x {3.0 21.0 543 ------- null} + -t 48.6638 -s 21 -d 28 -p ack -e 40 -c 0 -i 1094 -a 1 -x {21.0 3.0 543 ------- null} - -t 48.6638 -s 21 -d 28 -p ack -e 40 -c 0 -i 1094 -a 1 -x {21.0 3.0 543 ------- null} h -t 48.6638 -s 21 -d 28 -p ack -e 40 -c 0 -i 1094 -a 1 -x {21.0 3.0 -1 ------- null} r -t 48.6654 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {3.0 21.0 544 ------- null} + -t 48.6654 -s 21 -d 28 -p ack -e 40 -c 0 -i 1095 -a 1 -x {21.0 3.0 544 ------- null} - -t 48.6654 -s 21 -d 28 -p ack -e 40 -c 0 -i 1095 -a 1 -x {21.0 3.0 544 ------- null} h -t 48.6654 -s 21 -d 28 -p ack -e 40 -c 0 -i 1095 -a 1 -x {21.0 3.0 -1 ------- null} r -t 48.667 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1076 -a 0 -x {3.0 21.0 545 ------- null} + -t 48.667 -s 21 -d 28 -p ack -e 40 -c 0 -i 1096 -a 1 -x {21.0 3.0 545 ------- null} - -t 48.667 -s 21 -d 28 -p ack -e 40 -c 0 -i 1096 -a 1 -x {21.0 3.0 545 ------- null} h -t 48.667 -s 21 -d 28 -p ack -e 40 -c 0 -i 1096 -a 1 -x {21.0 3.0 -1 ------- null} r -t 48.6686 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {3.0 21.0 546 ------- null} + -t 48.6686 -s 21 -d 28 -p ack -e 40 -c 0 -i 1097 -a 1 -x {21.0 3.0 546 ------- null} - -t 48.6686 -s 21 -d 28 -p ack -e 40 -c 0 -i 1097 -a 1 -x {21.0 3.0 546 ------- null} h -t 48.6686 -s 21 -d 28 -p ack -e 40 -c 0 -i 1097 -a 1 -x {21.0 3.0 -1 ------- null} r -t 48.6702 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1078 -a 0 -x {3.0 21.0 547 ------- null} + -t 48.6702 -s 21 -d 28 -p ack -e 40 -c 0 -i 1098 -a 1 -x {21.0 3.0 547 ------- null} - -t 48.6702 -s 21 -d 28 -p ack -e 40 -c 0 -i 1098 -a 1 -x {21.0 3.0 547 ------- null} h -t 48.6702 -s 21 -d 28 -p ack -e 40 -c 0 -i 1098 -a 1 -x {21.0 3.0 -1 ------- null} r -t 48.6718 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {3.0 21.0 548 ------- null} + -t 48.6718 -s 21 -d 28 -p ack -e 40 -c 0 -i 1099 -a 1 -x {21.0 3.0 548 ------- null} - -t 48.6718 -s 21 -d 28 -p ack -e 40 -c 0 -i 1099 -a 1 -x {21.0 3.0 548 ------- null} h -t 48.6718 -s 21 -d 28 -p ack -e 40 -c 0 -i 1099 -a 1 -x {21.0 3.0 -1 ------- null} r -t 48.6734 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1080 -a 0 -x {3.0 21.0 549 ------- null} + -t 48.6734 -s 21 -d 28 -p ack -e 40 -c 0 -i 1100 -a 1 -x {21.0 3.0 549 ------- null} - -t 48.6734 -s 21 -d 28 -p ack -e 40 -c 0 -i 1100 -a 1 -x {21.0 3.0 549 ------- null} h -t 48.6734 -s 21 -d 28 -p ack -e 40 -c 0 -i 1100 -a 1 -x {21.0 3.0 -1 ------- null} r -t 48.675 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {3.0 21.0 550 ------- null} + -t 48.675 -s 21 -d 28 -p ack -e 40 -c 0 -i 1101 -a 1 -x {21.0 3.0 550 ------- null} - -t 48.675 -s 21 -d 28 -p ack -e 40 -c 0 -i 1101 -a 1 -x {21.0 3.0 550 ------- null} h -t 48.675 -s 21 -d 28 -p ack -e 40 -c 0 -i 1101 -a 1 -x {21.0 3.0 -1 ------- null} r -t 48.9946 -s 21 -d 28 -p ack -e 40 -c 0 -i 1082 -a 1 -x {21.0 3.0 531 ------- null} + -t 48.9946 -s 28 -d 1 -p ack -e 40 -c 0 -i 1082 -a 1 -x {21.0 3.0 531 ------- null} - -t 48.9946 -s 28 -d 1 -p ack -e 40 -c 0 -i 1082 -a 1 -x {21.0 3.0 531 ------- null} h -t 48.9946 -s 28 -d 1 -p ack -e 40 -c 0 -i 1082 -a 1 -x {21.0 3.0 -1 ------- null} r -t 48.9962 -s 21 -d 28 -p ack -e 40 -c 0 -i 1083 -a 1 -x {21.0 3.0 532 ------- null} + -t 48.9962 -s 28 -d 1 -p ack -e 40 -c 0 -i 1083 -a 1 -x {21.0 3.0 532 ------- null} - -t 48.9962 -s 28 -d 1 -p ack -e 40 -c 0 -i 1083 -a 1 -x {21.0 3.0 532 ------- null} h -t 48.9962 -s 28 -d 1 -p ack -e 40 -c 0 -i 1083 -a 1 -x {21.0 3.0 -1 ------- null} r -t 48.9978 -s 21 -d 28 -p ack -e 40 -c 0 -i 1084 -a 1 -x {21.0 3.0 533 ------- null} + -t 48.9978 -s 28 -d 1 -p ack -e 40 -c 0 -i 1084 -a 1 -x {21.0 3.0 533 ------- null} - -t 48.9978 -s 28 -d 1 -p ack -e 40 -c 0 -i 1084 -a 1 -x {21.0 3.0 533 ------- null} h -t 48.9978 -s 28 -d 1 -p ack -e 40 -c 0 -i 1084 -a 1 -x {21.0 3.0 -1 ------- null} r -t 48.9994 -s 21 -d 28 -p ack -e 40 -c 0 -i 1085 -a 1 -x {21.0 3.0 534 ------- null} + -t 48.9994 -s 28 -d 1 -p ack -e 40 -c 0 -i 1085 -a 1 -x {21.0 3.0 534 ------- null} - -t 48.9994 -s 28 -d 1 -p ack -e 40 -c 0 -i 1085 -a 1 -x {21.0 3.0 534 ------- null} h -t 48.9994 -s 28 -d 1 -p ack -e 40 -c 0 -i 1085 -a 1 -x {21.0 3.0 -1 ------- null} r -t 49.001 -s 21 -d 28 -p ack -e 40 -c 0 -i 1086 -a 1 -x {21.0 3.0 535 ------- null} + -t 49.001 -s 28 -d 1 -p ack -e 40 -c 0 -i 1086 -a 1 -x {21.0 3.0 535 ------- null} - -t 49.001 -s 28 -d 1 -p ack -e 40 -c 0 -i 1086 -a 1 -x {21.0 3.0 535 ------- null} h -t 49.001 -s 28 -d 1 -p ack -e 40 -c 0 -i 1086 -a 1 -x {21.0 3.0 -1 ------- null} r -t 49.0026 -s 21 -d 28 -p ack -e 40 -c 0 -i 1087 -a 1 -x {21.0 3.0 536 ------- null} + -t 49.0026 -s 28 -d 1 -p ack -e 40 -c 0 -i 1087 -a 1 -x {21.0 3.0 536 ------- null} - -t 49.0026 -s 28 -d 1 -p ack -e 40 -c 0 -i 1087 -a 1 -x {21.0 3.0 536 ------- null} h -t 49.0026 -s 28 -d 1 -p ack -e 40 -c 0 -i 1087 -a 1 -x {21.0 3.0 -1 ------- null} r -t 49.0042 -s 21 -d 28 -p ack -e 40 -c 0 -i 1088 -a 1 -x {21.0 3.0 537 ------- null} + -t 49.0042 -s 28 -d 1 -p ack -e 40 -c 0 -i 1088 -a 1 -x {21.0 3.0 537 ------- null} - -t 49.0042 -s 28 -d 1 -p ack -e 40 -c 0 -i 1088 -a 1 -x {21.0 3.0 537 ------- null} h -t 49.0042 -s 28 -d 1 -p ack -e 40 -c 0 -i 1088 -a 1 -x {21.0 3.0 -1 ------- null} r -t 49.0058 -s 21 -d 28 -p ack -e 40 -c 0 -i 1089 -a 1 -x {21.0 3.0 538 ------- null} + -t 49.0058 -s 28 -d 1 -p ack -e 40 -c 0 -i 1089 -a 1 -x {21.0 3.0 538 ------- null} - -t 49.0058 -s 28 -d 1 -p ack -e 40 -c 0 -i 1089 -a 1 -x {21.0 3.0 538 ------- null} h -t 49.0058 -s 28 -d 1 -p ack -e 40 -c 0 -i 1089 -a 1 -x {21.0 3.0 -1 ------- null} r -t 49.0074 -s 21 -d 28 -p ack -e 40 -c 0 -i 1090 -a 1 -x {21.0 3.0 539 ------- null} + -t 49.0074 -s 28 -d 1 -p ack -e 40 -c 0 -i 1090 -a 1 -x {21.0 3.0 539 ------- null} - -t 49.0074 -s 28 -d 1 -p ack -e 40 -c 0 -i 1090 -a 1 -x {21.0 3.0 539 ------- null} h -t 49.0074 -s 28 -d 1 -p ack -e 40 -c 0 -i 1090 -a 1 -x {21.0 3.0 -1 ------- null} r -t 49.009 -s 21 -d 28 -p ack -e 40 -c 0 -i 1091 -a 1 -x {21.0 3.0 540 ------- null} + -t 49.009 -s 28 -d 1 -p ack -e 40 -c 0 -i 1091 -a 1 -x {21.0 3.0 540 ------- null} - -t 49.009 -s 28 -d 1 -p ack -e 40 -c 0 -i 1091 -a 1 -x {21.0 3.0 540 ------- null} h -t 49.009 -s 28 -d 1 -p ack -e 40 -c 0 -i 1091 -a 1 -x {21.0 3.0 -1 ------- null} r -t 49.0106 -s 21 -d 28 -p ack -e 40 -c 0 -i 1092 -a 1 -x {21.0 3.0 541 ------- null} + -t 49.0106 -s 28 -d 1 -p ack -e 40 -c 0 -i 1092 -a 1 -x {21.0 3.0 541 ------- null} - -t 49.0106 -s 28 -d 1 -p ack -e 40 -c 0 -i 1092 -a 1 -x {21.0 3.0 541 ------- null} h -t 49.0106 -s 28 -d 1 -p ack -e 40 -c 0 -i 1092 -a 1 -x {21.0 3.0 -1 ------- null} r -t 49.0122 -s 21 -d 28 -p ack -e 40 -c 0 -i 1093 -a 1 -x {21.0 3.0 542 ------- null} + -t 49.0122 -s 28 -d 1 -p ack -e 40 -c 0 -i 1093 -a 1 -x {21.0 3.0 542 ------- null} - -t 49.0122 -s 28 -d 1 -p ack -e 40 -c 0 -i 1093 -a 1 -x {21.0 3.0 542 ------- null} h -t 49.0122 -s 28 -d 1 -p ack -e 40 -c 0 -i 1093 -a 1 -x {21.0 3.0 -1 ------- null} r -t 49.0138 -s 21 -d 28 -p ack -e 40 -c 0 -i 1094 -a 1 -x {21.0 3.0 543 ------- null} + -t 49.0138 -s 28 -d 1 -p ack -e 40 -c 0 -i 1094 -a 1 -x {21.0 3.0 543 ------- null} - -t 49.0138 -s 28 -d 1 -p ack -e 40 -c 0 -i 1094 -a 1 -x {21.0 3.0 543 ------- null} h -t 49.0138 -s 28 -d 1 -p ack -e 40 -c 0 -i 1094 -a 1 -x {21.0 3.0 -1 ------- null} r -t 49.0154 -s 21 -d 28 -p ack -e 40 -c 0 -i 1095 -a 1 -x {21.0 3.0 544 ------- null} + -t 49.0154 -s 28 -d 1 -p ack -e 40 -c 0 -i 1095 -a 1 -x {21.0 3.0 544 ------- null} - -t 49.0154 -s 28 -d 1 -p ack -e 40 -c 0 -i 1095 -a 1 -x {21.0 3.0 544 ------- null} h -t 49.0154 -s 28 -d 1 -p ack -e 40 -c 0 -i 1095 -a 1 -x {21.0 3.0 -1 ------- null} r -t 49.017 -s 21 -d 28 -p ack -e 40 -c 0 -i 1096 -a 1 -x {21.0 3.0 545 ------- null} + -t 49.017 -s 28 -d 1 -p ack -e 40 -c 0 -i 1096 -a 1 -x {21.0 3.0 545 ------- null} - -t 49.017 -s 28 -d 1 -p ack -e 40 -c 0 -i 1096 -a 1 -x {21.0 3.0 545 ------- null} h -t 49.017 -s 28 -d 1 -p ack -e 40 -c 0 -i 1096 -a 1 -x {21.0 3.0 -1 ------- null} r -t 49.0186 -s 21 -d 28 -p ack -e 40 -c 0 -i 1097 -a 1 -x {21.0 3.0 546 ------- null} + -t 49.0186 -s 28 -d 1 -p ack -e 40 -c 0 -i 1097 -a 1 -x {21.0 3.0 546 ------- null} - -t 49.0186 -s 28 -d 1 -p ack -e 40 -c 0 -i 1097 -a 1 -x {21.0 3.0 546 ------- null} h -t 49.0186 -s 28 -d 1 -p ack -e 40 -c 0 -i 1097 -a 1 -x {21.0 3.0 -1 ------- null} r -t 49.0202 -s 21 -d 28 -p ack -e 40 -c 0 -i 1098 -a 1 -x {21.0 3.0 547 ------- null} + -t 49.0202 -s 28 -d 1 -p ack -e 40 -c 0 -i 1098 -a 1 -x {21.0 3.0 547 ------- null} - -t 49.0202 -s 28 -d 1 -p ack -e 40 -c 0 -i 1098 -a 1 -x {21.0 3.0 547 ------- null} h -t 49.0202 -s 28 -d 1 -p ack -e 40 -c 0 -i 1098 -a 1 -x {21.0 3.0 -1 ------- null} r -t 49.0218 -s 21 -d 28 -p ack -e 40 -c 0 -i 1099 -a 1 -x {21.0 3.0 548 ------- null} + -t 49.0218 -s 28 -d 1 -p ack -e 40 -c 0 -i 1099 -a 1 -x {21.0 3.0 548 ------- null} - -t 49.0218 -s 28 -d 1 -p ack -e 40 -c 0 -i 1099 -a 1 -x {21.0 3.0 548 ------- null} h -t 49.0218 -s 28 -d 1 -p ack -e 40 -c 0 -i 1099 -a 1 -x {21.0 3.0 -1 ------- null} r -t 49.0234 -s 21 -d 28 -p ack -e 40 -c 0 -i 1100 -a 1 -x {21.0 3.0 549 ------- null} + -t 49.0234 -s 28 -d 1 -p ack -e 40 -c 0 -i 1100 -a 1 -x {21.0 3.0 549 ------- null} - -t 49.0234 -s 28 -d 1 -p ack -e 40 -c 0 -i 1100 -a 1 -x {21.0 3.0 549 ------- null} h -t 49.0234 -s 28 -d 1 -p ack -e 40 -c 0 -i 1100 -a 1 -x {21.0 3.0 -1 ------- null} r -t 49.025 -s 21 -d 28 -p ack -e 40 -c 0 -i 1101 -a 1 -x {21.0 3.0 550 ------- null} + -t 49.025 -s 28 -d 1 -p ack -e 40 -c 0 -i 1101 -a 1 -x {21.0 3.0 550 ------- null} - -t 49.025 -s 28 -d 1 -p ack -e 40 -c 0 -i 1101 -a 1 -x {21.0 3.0 550 ------- null} h -t 49.025 -s 28 -d 1 -p ack -e 40 -c 0 -i 1101 -a 1 -x {21.0 3.0 -1 ------- null} r -t 49.2947 -s 28 -d 1 -p ack -e 40 -c 0 -i 1082 -a 1 -x {21.0 3.0 531 ------- null} + -t 49.2947 -s 1 -d 3 -p ack -e 40 -c 0 -i 1082 -a 1 -x {21.0 3.0 531 ------- null} - -t 49.2947 -s 1 -d 3 -p ack -e 40 -c 0 -i 1082 -a 1 -x {21.0 3.0 531 ------- null} h -t 49.2947 -s 1 -d 3 -p ack -e 40 -c 0 -i 1082 -a 1 -x {21.0 3.0 -1 ------- null} r -t 49.2963 -s 28 -d 1 -p ack -e 40 -c 0 -i 1083 -a 1 -x {21.0 3.0 532 ------- null} + -t 49.2963 -s 1 -d 3 -p ack -e 40 -c 0 -i 1083 -a 1 -x {21.0 3.0 532 ------- null} - -t 49.2963 -s 1 -d 3 -p ack -e 40 -c 0 -i 1083 -a 1 -x {21.0 3.0 532 ------- null} h -t 49.2963 -s 1 -d 3 -p ack -e 40 -c 0 -i 1083 -a 1 -x {21.0 3.0 -1 ------- null} r -t 49.2979 -s 28 -d 1 -p ack -e 40 -c 0 -i 1084 -a 1 -x {21.0 3.0 533 ------- null} + -t 49.2979 -s 1 -d 3 -p ack -e 40 -c 0 -i 1084 -a 1 -x {21.0 3.0 533 ------- null} - -t 49.2979 -s 1 -d 3 -p ack -e 40 -c 0 -i 1084 -a 1 -x {21.0 3.0 533 ------- null} h -t 49.2979 -s 1 -d 3 -p ack -e 40 -c 0 -i 1084 -a 1 -x {21.0 3.0 -1 ------- null} r -t 49.2995 -s 28 -d 1 -p ack -e 40 -c 0 -i 1085 -a 1 -x {21.0 3.0 534 ------- null} + -t 49.2995 -s 1 -d 3 -p ack -e 40 -c 0 -i 1085 -a 1 -x {21.0 3.0 534 ------- null} - -t 49.2995 -s 1 -d 3 -p ack -e 40 -c 0 -i 1085 -a 1 -x {21.0 3.0 534 ------- null} h -t 49.2995 -s 1 -d 3 -p ack -e 40 -c 0 -i 1085 -a 1 -x {21.0 3.0 -1 ------- null} r -t 49.3011 -s 28 -d 1 -p ack -e 40 -c 0 -i 1086 -a 1 -x {21.0 3.0 535 ------- null} + -t 49.3011 -s 1 -d 3 -p ack -e 40 -c 0 -i 1086 -a 1 -x {21.0 3.0 535 ------- null} - -t 49.3011 -s 1 -d 3 -p ack -e 40 -c 0 -i 1086 -a 1 -x {21.0 3.0 535 ------- null} h -t 49.3011 -s 1 -d 3 -p ack -e 40 -c 0 -i 1086 -a 1 -x {21.0 3.0 -1 ------- null} r -t 49.3027 -s 28 -d 1 -p ack -e 40 -c 0 -i 1087 -a 1 -x {21.0 3.0 536 ------- null} + -t 49.3027 -s 1 -d 3 -p ack -e 40 -c 0 -i 1087 -a 1 -x {21.0 3.0 536 ------- null} - -t 49.3027 -s 1 -d 3 -p ack -e 40 -c 0 -i 1087 -a 1 -x {21.0 3.0 536 ------- null} h -t 49.3027 -s 1 -d 3 -p ack -e 40 -c 0 -i 1087 -a 1 -x {21.0 3.0 -1 ------- null} r -t 49.3043 -s 28 -d 1 -p ack -e 40 -c 0 -i 1088 -a 1 -x {21.0 3.0 537 ------- null} + -t 49.3043 -s 1 -d 3 -p ack -e 40 -c 0 -i 1088 -a 1 -x {21.0 3.0 537 ------- null} - -t 49.3043 -s 1 -d 3 -p ack -e 40 -c 0 -i 1088 -a 1 -x {21.0 3.0 537 ------- null} h -t 49.3043 -s 1 -d 3 -p ack -e 40 -c 0 -i 1088 -a 1 -x {21.0 3.0 -1 ------- null} r -t 49.3059 -s 28 -d 1 -p ack -e 40 -c 0 -i 1089 -a 1 -x {21.0 3.0 538 ------- null} + -t 49.3059 -s 1 -d 3 -p ack -e 40 -c 0 -i 1089 -a 1 -x {21.0 3.0 538 ------- null} - -t 49.3059 -s 1 -d 3 -p ack -e 40 -c 0 -i 1089 -a 1 -x {21.0 3.0 538 ------- null} h -t 49.3059 -s 1 -d 3 -p ack -e 40 -c 0 -i 1089 -a 1 -x {21.0 3.0 -1 ------- null} r -t 49.3075 -s 28 -d 1 -p ack -e 40 -c 0 -i 1090 -a 1 -x {21.0 3.0 539 ------- null} + -t 49.3075 -s 1 -d 3 -p ack -e 40 -c 0 -i 1090 -a 1 -x {21.0 3.0 539 ------- null} - -t 49.3075 -s 1 -d 3 -p ack -e 40 -c 0 -i 1090 -a 1 -x {21.0 3.0 539 ------- null} h -t 49.3075 -s 1 -d 3 -p ack -e 40 -c 0 -i 1090 -a 1 -x {21.0 3.0 -1 ------- null} r -t 49.3091 -s 28 -d 1 -p ack -e 40 -c 0 -i 1091 -a 1 -x {21.0 3.0 540 ------- null} + -t 49.3091 -s 1 -d 3 -p ack -e 40 -c 0 -i 1091 -a 1 -x {21.0 3.0 540 ------- null} - -t 49.3091 -s 1 -d 3 -p ack -e 40 -c 0 -i 1091 -a 1 -x {21.0 3.0 540 ------- null} h -t 49.3091 -s 1 -d 3 -p ack -e 40 -c 0 -i 1091 -a 1 -x {21.0 3.0 -1 ------- null} r -t 49.3107 -s 28 -d 1 -p ack -e 40 -c 0 -i 1092 -a 1 -x {21.0 3.0 541 ------- null} + -t 49.3107 -s 1 -d 3 -p ack -e 40 -c 0 -i 1092 -a 1 -x {21.0 3.0 541 ------- null} - -t 49.3107 -s 1 -d 3 -p ack -e 40 -c 0 -i 1092 -a 1 -x {21.0 3.0 541 ------- null} h -t 49.3107 -s 1 -d 3 -p ack -e 40 -c 0 -i 1092 -a 1 -x {21.0 3.0 -1 ------- null} r -t 49.3123 -s 28 -d 1 -p ack -e 40 -c 0 -i 1093 -a 1 -x {21.0 3.0 542 ------- null} + -t 49.3123 -s 1 -d 3 -p ack -e 40 -c 0 -i 1093 -a 1 -x {21.0 3.0 542 ------- null} - -t 49.3123 -s 1 -d 3 -p ack -e 40 -c 0 -i 1093 -a 1 -x {21.0 3.0 542 ------- null} h -t 49.3123 -s 1 -d 3 -p ack -e 40 -c 0 -i 1093 -a 1 -x {21.0 3.0 -1 ------- null} r -t 49.3139 -s 28 -d 1 -p ack -e 40 -c 0 -i 1094 -a 1 -x {21.0 3.0 543 ------- null} + -t 49.3139 -s 1 -d 3 -p ack -e 40 -c 0 -i 1094 -a 1 -x {21.0 3.0 543 ------- null} - -t 49.3139 -s 1 -d 3 -p ack -e 40 -c 0 -i 1094 -a 1 -x {21.0 3.0 543 ------- null} h -t 49.3139 -s 1 -d 3 -p ack -e 40 -c 0 -i 1094 -a 1 -x {21.0 3.0 -1 ------- null} r -t 49.3155 -s 28 -d 1 -p ack -e 40 -c 0 -i 1095 -a 1 -x {21.0 3.0 544 ------- null} + -t 49.3155 -s 1 -d 3 -p ack -e 40 -c 0 -i 1095 -a 1 -x {21.0 3.0 544 ------- null} - -t 49.3155 -s 1 -d 3 -p ack -e 40 -c 0 -i 1095 -a 1 -x {21.0 3.0 544 ------- null} h -t 49.3155 -s 1 -d 3 -p ack -e 40 -c 0 -i 1095 -a 1 -x {21.0 3.0 -1 ------- null} r -t 49.3171 -s 28 -d 1 -p ack -e 40 -c 0 -i 1096 -a 1 -x {21.0 3.0 545 ------- null} + -t 49.3171 -s 1 -d 3 -p ack -e 40 -c 0 -i 1096 -a 1 -x {21.0 3.0 545 ------- null} - -t 49.3171 -s 1 -d 3 -p ack -e 40 -c 0 -i 1096 -a 1 -x {21.0 3.0 545 ------- null} h -t 49.3171 -s 1 -d 3 -p ack -e 40 -c 0 -i 1096 -a 1 -x {21.0 3.0 -1 ------- null} r -t 49.3187 -s 28 -d 1 -p ack -e 40 -c 0 -i 1097 -a 1 -x {21.0 3.0 546 ------- null} + -t 49.3187 -s 1 -d 3 -p ack -e 40 -c 0 -i 1097 -a 1 -x {21.0 3.0 546 ------- null} - -t 49.3187 -s 1 -d 3 -p ack -e 40 -c 0 -i 1097 -a 1 -x {21.0 3.0 546 ------- null} h -t 49.3187 -s 1 -d 3 -p ack -e 40 -c 0 -i 1097 -a 1 -x {21.0 3.0 -1 ------- null} r -t 49.3203 -s 28 -d 1 -p ack -e 40 -c 0 -i 1098 -a 1 -x {21.0 3.0 547 ------- null} + -t 49.3203 -s 1 -d 3 -p ack -e 40 -c 0 -i 1098 -a 1 -x {21.0 3.0 547 ------- null} - -t 49.3203 -s 1 -d 3 -p ack -e 40 -c 0 -i 1098 -a 1 -x {21.0 3.0 547 ------- null} h -t 49.3203 -s 1 -d 3 -p ack -e 40 -c 0 -i 1098 -a 1 -x {21.0 3.0 -1 ------- null} r -t 49.3219 -s 28 -d 1 -p ack -e 40 -c 0 -i 1099 -a 1 -x {21.0 3.0 548 ------- null} + -t 49.3219 -s 1 -d 3 -p ack -e 40 -c 0 -i 1099 -a 1 -x {21.0 3.0 548 ------- null} - -t 49.3219 -s 1 -d 3 -p ack -e 40 -c 0 -i 1099 -a 1 -x {21.0 3.0 548 ------- null} h -t 49.3219 -s 1 -d 3 -p ack -e 40 -c 0 -i 1099 -a 1 -x {21.0 3.0 -1 ------- null} r -t 49.3235 -s 28 -d 1 -p ack -e 40 -c 0 -i 1100 -a 1 -x {21.0 3.0 549 ------- null} + -t 49.3235 -s 1 -d 3 -p ack -e 40 -c 0 -i 1100 -a 1 -x {21.0 3.0 549 ------- null} - -t 49.3235 -s 1 -d 3 -p ack -e 40 -c 0 -i 1100 -a 1 -x {21.0 3.0 549 ------- null} h -t 49.3235 -s 1 -d 3 -p ack -e 40 -c 0 -i 1100 -a 1 -x {21.0 3.0 -1 ------- null} r -t 49.3251 -s 28 -d 1 -p ack -e 40 -c 0 -i 1101 -a 1 -x {21.0 3.0 550 ------- null} + -t 49.3251 -s 1 -d 3 -p ack -e 40 -c 0 -i 1101 -a 1 -x {21.0 3.0 550 ------- null} - -t 49.3251 -s 1 -d 3 -p ack -e 40 -c 0 -i 1101 -a 1 -x {21.0 3.0 550 ------- null} h -t 49.3251 -s 1 -d 3 -p ack -e 40 -c 0 -i 1101 -a 1 -x {21.0 3.0 -1 ------- null} r -t 49.4348 -s 1 -d 3 -p ack -e 40 -c 0 -i 1082 -a 1 -x {21.0 3.0 531 ------- null} + -t 49.4348 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1102 -a 0 -x {3.0 21.0 551 ------- null} - -t 49.4348 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1102 -a 0 -x {3.0 21.0 551 ------- null} h -t 49.4348 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1102 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.4364 -s 1 -d 3 -p ack -e 40 -c 0 -i 1083 -a 1 -x {21.0 3.0 532 ------- null} + -t 49.4364 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {3.0 21.0 552 ------- null} - -t 49.4364 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {3.0 21.0 552 ------- null} h -t 49.4364 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.438 -s 1 -d 3 -p ack -e 40 -c 0 -i 1084 -a 1 -x {21.0 3.0 533 ------- null} + -t 49.438 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1104 -a 0 -x {3.0 21.0 553 ------- null} - -t 49.438 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1104 -a 0 -x {3.0 21.0 553 ------- null} h -t 49.438 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1104 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.4396 -s 1 -d 3 -p ack -e 40 -c 0 -i 1085 -a 1 -x {21.0 3.0 534 ------- null} + -t 49.4396 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {3.0 21.0 554 ------- null} - -t 49.4396 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {3.0 21.0 554 ------- null} h -t 49.4396 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.4412 -s 1 -d 3 -p ack -e 40 -c 0 -i 1086 -a 1 -x {21.0 3.0 535 ------- null} + -t 49.4412 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1106 -a 0 -x {3.0 21.0 555 ------- null} - -t 49.4412 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1106 -a 0 -x {3.0 21.0 555 ------- null} h -t 49.4412 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1106 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.4428 -s 1 -d 3 -p ack -e 40 -c 0 -i 1087 -a 1 -x {21.0 3.0 536 ------- null} + -t 49.4428 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {3.0 21.0 556 ------- null} - -t 49.4428 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {3.0 21.0 556 ------- null} h -t 49.4428 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.4444 -s 1 -d 3 -p ack -e 40 -c 0 -i 1088 -a 1 -x {21.0 3.0 537 ------- null} + -t 49.4444 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1108 -a 0 -x {3.0 21.0 557 ------- null} - -t 49.4444 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1108 -a 0 -x {3.0 21.0 557 ------- null} h -t 49.4444 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1108 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.446 -s 1 -d 3 -p ack -e 40 -c 0 -i 1089 -a 1 -x {21.0 3.0 538 ------- null} + -t 49.446 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {3.0 21.0 558 ------- null} - -t 49.446 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {3.0 21.0 558 ------- null} h -t 49.446 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.4476 -s 1 -d 3 -p ack -e 40 -c 0 -i 1090 -a 1 -x {21.0 3.0 539 ------- null} + -t 49.4476 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1110 -a 0 -x {3.0 21.0 559 ------- null} - -t 49.4476 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1110 -a 0 -x {3.0 21.0 559 ------- null} h -t 49.4476 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1110 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.4492 -s 1 -d 3 -p ack -e 40 -c 0 -i 1091 -a 1 -x {21.0 3.0 540 ------- null} + -t 49.4492 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {3.0 21.0 560 ------- null} - -t 49.4492 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {3.0 21.0 560 ------- null} h -t 49.4492 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.4508 -s 1 -d 3 -p ack -e 40 -c 0 -i 1092 -a 1 -x {21.0 3.0 541 ------- null} + -t 49.4508 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1112 -a 0 -x {3.0 21.0 561 ------- null} - -t 49.4508 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1112 -a 0 -x {3.0 21.0 561 ------- null} h -t 49.4508 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1112 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.4524 -s 1 -d 3 -p ack -e 40 -c 0 -i 1093 -a 1 -x {21.0 3.0 542 ------- null} + -t 49.4524 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {3.0 21.0 562 ------- null} - -t 49.4524 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {3.0 21.0 562 ------- null} h -t 49.4524 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.454 -s 1 -d 3 -p ack -e 40 -c 0 -i 1094 -a 1 -x {21.0 3.0 543 ------- null} + -t 49.454 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1114 -a 0 -x {3.0 21.0 563 ------- null} - -t 49.454 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1114 -a 0 -x {3.0 21.0 563 ------- null} h -t 49.454 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1114 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.4556 -s 1 -d 3 -p ack -e 40 -c 0 -i 1095 -a 1 -x {21.0 3.0 544 ------- null} + -t 49.4556 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {3.0 21.0 564 ------- null} - -t 49.4556 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {3.0 21.0 564 ------- null} h -t 49.4556 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.4572 -s 1 -d 3 -p ack -e 40 -c 0 -i 1096 -a 1 -x {21.0 3.0 545 ------- null} + -t 49.4572 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1116 -a 0 -x {3.0 21.0 565 ------- null} - -t 49.4572 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1116 -a 0 -x {3.0 21.0 565 ------- null} h -t 49.4572 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1116 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.4588 -s 1 -d 3 -p ack -e 40 -c 0 -i 1097 -a 1 -x {21.0 3.0 546 ------- null} + -t 49.4588 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {3.0 21.0 566 ------- null} - -t 49.4588 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {3.0 21.0 566 ------- null} h -t 49.4588 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.4604 -s 1 -d 3 -p ack -e 40 -c 0 -i 1098 -a 1 -x {21.0 3.0 547 ------- null} + -t 49.4604 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1118 -a 0 -x {3.0 21.0 567 ------- null} - -t 49.4604 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1118 -a 0 -x {3.0 21.0 567 ------- null} h -t 49.4604 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1118 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.462 -s 1 -d 3 -p ack -e 40 -c 0 -i 1099 -a 1 -x {21.0 3.0 548 ------- null} + -t 49.462 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {3.0 21.0 568 ------- null} - -t 49.462 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {3.0 21.0 568 ------- null} h -t 49.462 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.4636 -s 1 -d 3 -p ack -e 40 -c 0 -i 1100 -a 1 -x {21.0 3.0 549 ------- null} + -t 49.4636 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1120 -a 0 -x {3.0 21.0 569 ------- null} - -t 49.4636 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1120 -a 0 -x {3.0 21.0 569 ------- null} h -t 49.4636 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1120 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.4652 -s 1 -d 3 -p ack -e 40 -c 0 -i 1101 -a 1 -x {21.0 3.0 550 ------- null} + -t 49.4652 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {3.0 21.0 570 ------- null} - -t 49.4652 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {3.0 21.0 570 ------- null} h -t 49.4652 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.5764 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1102 -a 0 -x {3.0 21.0 551 ------- null} + -t 49.5764 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1102 -a 0 -x {3.0 21.0 551 ------- null} - -t 49.5764 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1102 -a 0 -x {3.0 21.0 551 ------- null} h -t 49.5764 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1102 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.578 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {3.0 21.0 552 ------- null} + -t 49.578 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {3.0 21.0 552 ------- null} - -t 49.578 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {3.0 21.0 552 ------- null} h -t 49.578 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.5796 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1104 -a 0 -x {3.0 21.0 553 ------- null} + -t 49.5796 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1104 -a 0 -x {3.0 21.0 553 ------- null} - -t 49.5796 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1104 -a 0 -x {3.0 21.0 553 ------- null} h -t 49.5796 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1104 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.5812 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {3.0 21.0 554 ------- null} + -t 49.5812 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {3.0 21.0 554 ------- null} - -t 49.5812 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {3.0 21.0 554 ------- null} h -t 49.5812 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.5828 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1106 -a 0 -x {3.0 21.0 555 ------- null} + -t 49.5828 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1106 -a 0 -x {3.0 21.0 555 ------- null} - -t 49.5828 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1106 -a 0 -x {3.0 21.0 555 ------- null} h -t 49.5828 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1106 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.5844 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {3.0 21.0 556 ------- null} + -t 49.5844 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {3.0 21.0 556 ------- null} - -t 49.5844 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {3.0 21.0 556 ------- null} h -t 49.5844 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.586 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1108 -a 0 -x {3.0 21.0 557 ------- null} + -t 49.586 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1108 -a 0 -x {3.0 21.0 557 ------- null} - -t 49.586 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1108 -a 0 -x {3.0 21.0 557 ------- null} h -t 49.586 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1108 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.5876 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {3.0 21.0 558 ------- null} + -t 49.5876 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {3.0 21.0 558 ------- null} - -t 49.5876 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {3.0 21.0 558 ------- null} h -t 49.5876 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.5892 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1110 -a 0 -x {3.0 21.0 559 ------- null} + -t 49.5892 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1110 -a 0 -x {3.0 21.0 559 ------- null} - -t 49.5892 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1110 -a 0 -x {3.0 21.0 559 ------- null} h -t 49.5892 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1110 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.5908 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {3.0 21.0 560 ------- null} + -t 49.5908 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {3.0 21.0 560 ------- null} - -t 49.5908 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {3.0 21.0 560 ------- null} h -t 49.5908 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.5924 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1112 -a 0 -x {3.0 21.0 561 ------- null} + -t 49.5924 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1112 -a 0 -x {3.0 21.0 561 ------- null} - -t 49.5924 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1112 -a 0 -x {3.0 21.0 561 ------- null} h -t 49.5924 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1112 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.594 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {3.0 21.0 562 ------- null} + -t 49.594 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {3.0 21.0 562 ------- null} - -t 49.594 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {3.0 21.0 562 ------- null} h -t 49.594 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.5956 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1114 -a 0 -x {3.0 21.0 563 ------- null} + -t 49.5956 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1114 -a 0 -x {3.0 21.0 563 ------- null} - -t 49.5956 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1114 -a 0 -x {3.0 21.0 563 ------- null} h -t 49.5956 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1114 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.5972 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {3.0 21.0 564 ------- null} + -t 49.5972 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {3.0 21.0 564 ------- null} - -t 49.5972 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {3.0 21.0 564 ------- null} h -t 49.5972 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.5988 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1116 -a 0 -x {3.0 21.0 565 ------- null} + -t 49.5988 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1116 -a 0 -x {3.0 21.0 565 ------- null} - -t 49.5988 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1116 -a 0 -x {3.0 21.0 565 ------- null} h -t 49.5988 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1116 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.6004 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {3.0 21.0 566 ------- null} + -t 49.6004 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {3.0 21.0 566 ------- null} - -t 49.6004 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {3.0 21.0 566 ------- null} h -t 49.6004 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.602 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1118 -a 0 -x {3.0 21.0 567 ------- null} + -t 49.602 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1118 -a 0 -x {3.0 21.0 567 ------- null} - -t 49.602 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1118 -a 0 -x {3.0 21.0 567 ------- null} h -t 49.602 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1118 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.6036 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {3.0 21.0 568 ------- null} + -t 49.6036 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {3.0 21.0 568 ------- null} - -t 49.6036 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {3.0 21.0 568 ------- null} h -t 49.6036 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.6052 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1120 -a 0 -x {3.0 21.0 569 ------- null} + -t 49.6052 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1120 -a 0 -x {3.0 21.0 569 ------- null} - -t 49.6052 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1120 -a 0 -x {3.0 21.0 569 ------- null} h -t 49.6052 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1120 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.6068 -s 3 -d 1 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {3.0 21.0 570 ------- null} + -t 49.6068 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {3.0 21.0 570 ------- null} - -t 49.6068 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {3.0 21.0 570 ------- null} h -t 49.6068 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.878 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1102 -a 0 -x {3.0 21.0 551 ------- null} + -t 49.878 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1102 -a 0 -x {3.0 21.0 551 ------- null} - -t 49.878 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1102 -a 0 -x {3.0 21.0 551 ------- null} h -t 49.878 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1102 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.8796 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {3.0 21.0 552 ------- null} + -t 49.8796 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {3.0 21.0 552 ------- null} - -t 49.8796 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {3.0 21.0 552 ------- null} h -t 49.8796 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.8812 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1104 -a 0 -x {3.0 21.0 553 ------- null} + -t 49.8812 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1104 -a 0 -x {3.0 21.0 553 ------- null} - -t 49.8812 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1104 -a 0 -x {3.0 21.0 553 ------- null} h -t 49.8812 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1104 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.8828 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {3.0 21.0 554 ------- null} + -t 49.8828 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {3.0 21.0 554 ------- null} - -t 49.8828 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {3.0 21.0 554 ------- null} h -t 49.8828 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.8844 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1106 -a 0 -x {3.0 21.0 555 ------- null} + -t 49.8844 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1106 -a 0 -x {3.0 21.0 555 ------- null} - -t 49.8844 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1106 -a 0 -x {3.0 21.0 555 ------- null} h -t 49.8844 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1106 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.886 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {3.0 21.0 556 ------- null} + -t 49.886 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {3.0 21.0 556 ------- null} - -t 49.886 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {3.0 21.0 556 ------- null} h -t 49.886 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.8876 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1108 -a 0 -x {3.0 21.0 557 ------- null} + -t 49.8876 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1108 -a 0 -x {3.0 21.0 557 ------- null} - -t 49.8876 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1108 -a 0 -x {3.0 21.0 557 ------- null} h -t 49.8876 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1108 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.8892 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {3.0 21.0 558 ------- null} + -t 49.8892 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {3.0 21.0 558 ------- null} - -t 49.8892 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {3.0 21.0 558 ------- null} h -t 49.8892 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.8908 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1110 -a 0 -x {3.0 21.0 559 ------- null} + -t 49.8908 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1110 -a 0 -x {3.0 21.0 559 ------- null} - -t 49.8908 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1110 -a 0 -x {3.0 21.0 559 ------- null} h -t 49.8908 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1110 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.8924 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {3.0 21.0 560 ------- null} + -t 49.8924 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {3.0 21.0 560 ------- null} - -t 49.8924 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {3.0 21.0 560 ------- null} h -t 49.8924 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.894 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1112 -a 0 -x {3.0 21.0 561 ------- null} + -t 49.894 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1112 -a 0 -x {3.0 21.0 561 ------- null} - -t 49.894 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1112 -a 0 -x {3.0 21.0 561 ------- null} h -t 49.894 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1112 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.8956 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {3.0 21.0 562 ------- null} + -t 49.8956 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {3.0 21.0 562 ------- null} - -t 49.8956 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {3.0 21.0 562 ------- null} h -t 49.8956 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.8972 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1114 -a 0 -x {3.0 21.0 563 ------- null} + -t 49.8972 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1114 -a 0 -x {3.0 21.0 563 ------- null} - -t 49.8972 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1114 -a 0 -x {3.0 21.0 563 ------- null} h -t 49.8972 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1114 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.8988 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {3.0 21.0 564 ------- null} + -t 49.8988 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {3.0 21.0 564 ------- null} - -t 49.8988 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {3.0 21.0 564 ------- null} h -t 49.8988 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.9004 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1116 -a 0 -x {3.0 21.0 565 ------- null} + -t 49.9004 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1116 -a 0 -x {3.0 21.0 565 ------- null} - -t 49.9004 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1116 -a 0 -x {3.0 21.0 565 ------- null} h -t 49.9004 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1116 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.902 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {3.0 21.0 566 ------- null} + -t 49.902 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {3.0 21.0 566 ------- null} - -t 49.902 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {3.0 21.0 566 ------- null} h -t 49.902 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.9036 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1118 -a 0 -x {3.0 21.0 567 ------- null} + -t 49.9036 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1118 -a 0 -x {3.0 21.0 567 ------- null} - -t 49.9036 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1118 -a 0 -x {3.0 21.0 567 ------- null} h -t 49.9036 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1118 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.9052 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {3.0 21.0 568 ------- null} + -t 49.9052 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {3.0 21.0 568 ------- null} - -t 49.9052 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {3.0 21.0 568 ------- null} h -t 49.9052 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.9068 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1120 -a 0 -x {3.0 21.0 569 ------- null} + -t 49.9068 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1120 -a 0 -x {3.0 21.0 569 ------- null} - -t 49.9068 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1120 -a 0 -x {3.0 21.0 569 ------- null} h -t 49.9068 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1120 -a 0 -x {3.0 21.0 -1 ------- null} r -t 49.9084 -s 1 -d 28 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {3.0 21.0 570 ------- null} + -t 49.9084 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {3.0 21.0 570 ------- null} - -t 49.9084 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {3.0 21.0 570 ------- null} h -t 49.9084 -s 28 -d 21 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {3.0 21.0 -1 ------- null} nam-1.15/ex/hier-out-50sub.nam0000664000076400007660000714751306611517762014732 0ustar tomhnsnamv -t 0 set_rate_ext 20ms 1 c -t * -i 0 -n black c -t * -i 1 -n green n -t * -s 16 -v circle -c blue -z 0.012134 -S UP n -t * -s 15 -v circle -c blue -z 0.012134 -S UP n -t * -s 14 -v circle -c blue -z 0.012134 -S UP n -t * -s 13 -v circle -c blue -z 0.012134 -S UP n -t * -s 12 -v circle -c blue -z 0.012134 -S UP n -t * -s 29 -v circle -c green -z 0.012134 -S UP n -t * -s 30 -v circle -c green -z 0.012134 -S UP n -t * -s 11 -v box -c red -z 0.012134 -S UP n -t * -s 28 -v circle -c green -z 0.012134 -S UP n -t * -s 10 -v box -c red -z 0.012134 -S UP n -t * -s 9 -v box -c red -z 0.012134 -S UP n -t * -s 27 -v box -c blue -z 0.012134 -S UP n -t * -s 8 -v box -c red -z 0.012134 -S UP n -t * -s 26 -v box -c blue -z 0.012134 -S UP n -t * -s 7 -v box -c red -z 0.012134 -S UP n -t * -s 25 -v box -c blue -z 0.012134 -S UP n -t * -s 6 -v box -c red -z 0.012134 -S UP n -t * -s 24 -v box -c blue -z 0.012134 -S UP n -t * -s 5 -v circle -c red -z 0.012134 -S UP n -t * -s 23 -v box -c blue -z 0.012134 -S UP n -t * -s 4 -v circle -c red -z 0.012134 -S UP n -t * -s 22 -v box -c blue -z 0.012134 -S UP n -t * -s 3 -v circle -c red -z 0.012134 -S UP n -t * -s 21 -v box -c blue -z 0.012134 -S UP n -t * -s 2 -v circle -c red -z 0.012134 -S UP n -t * -s 19 -v box -c blue -z 0.012134 -S UP n -t * -s 20 -v box -c blue -z 0.012134 -S UP n -t * -s 1 -v circle -c red -z 0.012134 -S UP n -t * -s 18 -v box -c blue -z 0.012134 -S UP n -t * -s 0 -v circle -c red -z 0.012134 -S UP n -t * -s 17 -v circle -c blue -z 0.012134 -S UP l -t * -s 16 -d 17 -r 5000000.000000 -D 0.080000 -o 318.2deg -l 0.071276 -S UP l -t * -s 15 -d 16 -r 5000000.000000 -D 0.070000 -o 200.0deg -l 0.079706 -S UP l -t * -s 14 -d 15 -r 5000000.000000 -D 0.080000 -o 278.3deg -l 0.045510 -S UP l -t * -s 13 -d 14 -r 5000000.000000 -D 0.080000 -o 358.6deg -l 0.090627 -S UP l -t * -s 12 -d 16 -r 5000000.000000 -D 0.110000 -o 334.0deg -l 0.117749 -S UP l -t * -s 12 -d 18 -r 5000000.000000 -D 0.230000 -o 134.2deg -l 0.106716 -S UP l -t * -s 12 -d 13 -r 5000000.000000 -D 0.070000 -o 21.9deg -l 0.086388 -S UP l -t * -s 28 -d 30 -r 5000000.000000 -D 0.080000 -o 122.5deg -l 0.168530 -S UP l -t * -s 28 -d 29 -r 5000000.000000 -D 0.110000 -o 152.5deg -l 0.189062 -S UP l -t * -s 9 -d 11 -r 5000000.000000 -D 0.110000 -o 82.4deg -l 0.113803 -S UP l -t * -s 8 -d 10 -r 5000000.000000 -D 0.150000 -o 157.3deg -l 0.075837 -S UP l -t * -s 8 -d 9 -r 5000000.000000 -D 0.080000 -o 16.9deg -l 0.080061 -S UP l -t * -s 26 -d 27 -r 5000000.000000 -D 0.080000 -o 359.3deg -l 0.146459 -S UP l -t * -s 7 -d 10 -r 5000000.000000 -D 0.150000 -o 259.0deg -l 0.067218 -S UP l -t * -s 7 -d 8 -r 5000000.000000 -D 0.100000 -o 300.3deg -l 0.123208 -S UP l -t * -s 6 -d 11 -r 5000000.000000 -D 0.110000 -o 347.4deg -l 0.132438 -S UP l -t * -s 6 -d 7 -r 5000000.000000 -D 0.120000 -o 242.3deg -l 0.060220 -S UP l -t * -s 24 -d 25 -r 5000000.000000 -D 0.080000 -o 20.8deg -l 0.094547 -S UP l -t * -s 23 -d 26 -r 5000000.000000 -D 0.080000 -o 25.8deg -l 0.096259 -S UP l -t * -s 23 -d 24 -r 5000000.000000 -D 0.080000 -o 271.8deg -l 0.074913 -S UP l -t * -s 4 -d 5 -r 5000000.000000 -D 0.120000 -o 320.3deg -l 0.076366 -S UP l -t * -s 22 -d 23 -r 5000000.000000 -D 0.080000 -o 269.2deg -l 0.068148 -S UP l -t * -s 3 -d 5 -r 5000000.000000 -D 0.120000 -o 258.9deg -l 0.106820 -S UP l -t * -s 3 -d 4 -r 5000000.000000 -D 0.140000 -o 212.4deg -l 0.096938 -S UP l -t * -s 21 -d 28 -r 5000000.000000 -D 0.350000 -o 180.8deg -l 0.159892 -S UP l -t * -s 21 -d 22 -r 5000000.000000 -D 0.060000 -o 0.2deg -l 0.084128 -S UP l -t * -s 19 -d 20 -r 5000000.000000 -D 0.080000 -o 45.5deg -l 0.041863 -S UP l -t * -s 1 -d 2 -r 5000000.000000 -D 0.080000 -o 196.2deg -l 0.097434 -S UP l -t * -s 1 -d 3 -r 5000000.000000 -D 0.140000 -o 300.6deg -l 0.099550 -S UP l -t * -s 1 -d 28 -r 5000000.000000 -D 0.300000 -o 75.6deg -l 0.127320 -S UP l -t * -s 18 -d 24 -r 5000000.000000 -D 0.100000 -o 92.8deg -l 0.035393 -S UP l -t * -s 18 -d 19 -r 5000000.000000 -D 0.090000 -o 10.1deg -l 0.133212 -S UP l -t * -s 0 -d 5 -r 5000000.000000 -D 0.160000 -o 202.5deg -l 0.135297 -S UP l -t * -s 0 -d 3 -r 5000000.000000 -D 0.160000 -o 151.2deg -l 0.113704 -S UP l -t * -s 0 -d 6 -r 5000000.000000 -D 0.250000 -o 258.6deg -l 0.079882 -S UP l -t * -s 0 -d 18 -r 5000000.000000 -D 0.300000 -o 28.5deg -l 0.137893 -S UP n -t 0 -s 28 -S DLABEL -l Hier_Rtg_Table=4 -L "" n -t 0 -s 21 -S DLABEL -l Hier_Rtg_Table=12 -L "" n -t 0 -s 3 -S DLABEL -l Hier_Rtg_Table=8 -L "" + -t 0.3 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0.3.0 1.1.3.0 0 ------- null} - -t 0.3 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0.3.0 1.1.3.0 0 ------- null} h -t 0.3 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 0.4616 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0.3.0 1.1.3.0 0 ------- null} + -t 0.4616 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0.3.0 1.1.3.0 0 ------- null} - -t 0.4616 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0.3.0 1.1.3.0 0 ------- null} h -t 0.4616 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 0.7632 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0.3.0 1.1.3.0 0 ------- null} + -t 0.7632 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0.3.0 1.1.3.0 0 ------- null} - -t 0.7632 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0.3.0 1.1.3.0 0 ------- null} h -t 0.7632 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 0.8648 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0.3.0 1.1.3.0 0 ------- null} + -t 0.8648 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0.3.0 1.1.3.0 0 ------- null} - -t 0.8648 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0.3.0 1.1.3.0 0 ------- null} h -t 0.8648 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 0.9464 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0.3.0 1.1.3.0 0 ------- null} + -t 0.9464 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0.3.0 1.1.3.0 0 ------- null} - -t 0.9464 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0.3.0 1.1.3.0 0 ------- null} h -t 0.9464 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 1.028 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0.3.0 1.1.3.0 0 ------- null} + -t 1.028 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0.3.0 1.1.3.0 0 ------- null} - -t 1.028 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0.3.0 1.1.3.0 0 ------- null} h -t 1.028 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 1.0896 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0.3.0 1.1.3.0 0 ------- null} + -t 1.0896 -s 21 -d 28 -p ack -e 40 -c 0 -i 1 -a 1 -x {1.1.3.0 0.0.3.0 0 ------- null} - -t 1.0896 -s 21 -d 28 -p ack -e 40 -c 0 -i 1 -a 1 -x {1.1.3.0 0.0.3.0 0 ------- null} h -t 1.0896 -s 21 -d 28 -p ack -e 40 -c 0 -i 1 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 1.43966 -s 21 -d 28 -p ack -e 40 -c 0 -i 1 -a 1 -x {1.1.3.0 0.0.3.0 0 ------- null} + -t 1.43966 -s 28 -d 1 -p ack -e 40 -c 0 -i 1 -a 1 -x {1.1.3.0 0.0.3.0 0 ------- null} - -t 1.43966 -s 28 -d 1 -p ack -e 40 -c 0 -i 1 -a 1 -x {1.1.3.0 0.0.3.0 0 ------- null} h -t 1.43966 -s 28 -d 1 -p ack -e 40 -c 0 -i 1 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 1.73973 -s 28 -d 1 -p ack -e 40 -c 0 -i 1 -a 1 -x {1.1.3.0 0.0.3.0 0 ------- null} + -t 1.73973 -s 1 -d 3 -p ack -e 40 -c 0 -i 1 -a 1 -x {1.1.3.0 0.0.3.0 0 ------- null} - -t 1.73973 -s 1 -d 3 -p ack -e 40 -c 0 -i 1 -a 1 -x {1.1.3.0 0.0.3.0 0 ------- null} h -t 1.73973 -s 1 -d 3 -p ack -e 40 -c 0 -i 1 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 1.87979 -s 1 -d 3 -p ack -e 40 -c 0 -i 1 -a 1 -x {1.1.3.0 0.0.3.0 0 ------- null} + -t 1.87979 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0.3.0 1.1.3.0 1 ------- null} - -t 1.87979 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0.3.0 1.1.3.0 1 ------- null} h -t 1.87979 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} + -t 1.87979 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0.3.0 1.1.3.0 2 ------- null} - -t 1.88139 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0.3.0 1.1.3.0 2 ------- null} h -t 1.88139 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 2.04139 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0.3.0 1.1.3.0 1 ------- null} + -t 2.04139 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0.3.0 1.1.3.0 1 ------- null} - -t 2.04139 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0.3.0 1.1.3.0 1 ------- null} h -t 2.04139 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 2.04299 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0.3.0 1.1.3.0 2 ------- null} + -t 2.04299 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0.3.0 1.1.3.0 2 ------- null} - -t 2.04299 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0.3.0 1.1.3.0 2 ------- null} h -t 2.04299 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 2.34299 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0.3.0 1.1.3.0 1 ------- null} + -t 2.34299 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0.3.0 1.1.3.0 1 ------- null} - -t 2.34299 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0.3.0 1.1.3.0 1 ------- null} h -t 2.34299 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 2.34459 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0.3.0 1.1.3.0 2 ------- null} + -t 2.34459 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0.3.0 1.1.3.0 2 ------- null} - -t 2.34459 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0.3.0 1.1.3.0 2 ------- null} h -t 2.34459 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 2.44459 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0.3.0 1.1.3.0 1 ------- null} + -t 2.44459 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0.3.0 1.1.3.0 1 ------- null} - -t 2.44459 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0.3.0 1.1.3.0 1 ------- null} h -t 2.44459 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 2.44619 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0.3.0 1.1.3.0 2 ------- null} + -t 2.44619 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0.3.0 1.1.3.0 2 ------- null} - -t 2.44619 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0.3.0 1.1.3.0 2 ------- null} h -t 2.44619 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 2.52619 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0.3.0 1.1.3.0 1 ------- null} + -t 2.52619 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0.3.0 1.1.3.0 1 ------- null} - -t 2.52619 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0.3.0 1.1.3.0 1 ------- null} h -t 2.52619 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 2.52779 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0.3.0 1.1.3.0 2 ------- null} + -t 2.52779 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0.3.0 1.1.3.0 2 ------- null} - -t 2.52779 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0.3.0 1.1.3.0 2 ------- null} h -t 2.52779 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 2.60779 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0.3.0 1.1.3.0 1 ------- null} + -t 2.60779 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0.3.0 1.1.3.0 1 ------- null} - -t 2.60779 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0.3.0 1.1.3.0 1 ------- null} h -t 2.60779 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 2.60939 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0.3.0 1.1.3.0 2 ------- null} + -t 2.60939 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0.3.0 1.1.3.0 2 ------- null} - -t 2.60939 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0.3.0 1.1.3.0 2 ------- null} h -t 2.60939 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 2.66939 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0.3.0 1.1.3.0 1 ------- null} + -t 2.66939 -s 21 -d 28 -p ack -e 40 -c 0 -i 4 -a 1 -x {1.1.3.0 0.0.3.0 1 ------- null} - -t 2.66939 -s 21 -d 28 -p ack -e 40 -c 0 -i 4 -a 1 -x {1.1.3.0 0.0.3.0 1 ------- null} h -t 2.66939 -s 21 -d 28 -p ack -e 40 -c 0 -i 4 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 2.67099 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.0.3.0 1.1.3.0 2 ------- null} + -t 2.67099 -s 21 -d 28 -p ack -e 40 -c 0 -i 5 -a 1 -x {1.1.3.0 0.0.3.0 2 ------- null} - -t 2.67099 -s 21 -d 28 -p ack -e 40 -c 0 -i 5 -a 1 -x {1.1.3.0 0.0.3.0 2 ------- null} h -t 2.67099 -s 21 -d 28 -p ack -e 40 -c 0 -i 5 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 3.01946 -s 21 -d 28 -p ack -e 40 -c 0 -i 4 -a 1 -x {1.1.3.0 0.0.3.0 1 ------- null} + -t 3.01946 -s 28 -d 1 -p ack -e 40 -c 0 -i 4 -a 1 -x {1.1.3.0 0.0.3.0 1 ------- null} - -t 3.01946 -s 28 -d 1 -p ack -e 40 -c 0 -i 4 -a 1 -x {1.1.3.0 0.0.3.0 1 ------- null} h -t 3.01946 -s 28 -d 1 -p ack -e 40 -c 0 -i 4 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 3.02106 -s 21 -d 28 -p ack -e 40 -c 0 -i 5 -a 1 -x {1.1.3.0 0.0.3.0 2 ------- null} + -t 3.02106 -s 28 -d 1 -p ack -e 40 -c 0 -i 5 -a 1 -x {1.1.3.0 0.0.3.0 2 ------- null} - -t 3.02106 -s 28 -d 1 -p ack -e 40 -c 0 -i 5 -a 1 -x {1.1.3.0 0.0.3.0 2 ------- null} h -t 3.02106 -s 28 -d 1 -p ack -e 40 -c 0 -i 5 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 3.31952 -s 28 -d 1 -p ack -e 40 -c 0 -i 4 -a 1 -x {1.1.3.0 0.0.3.0 1 ------- null} + -t 3.31952 -s 1 -d 3 -p ack -e 40 -c 0 -i 4 -a 1 -x {1.1.3.0 0.0.3.0 1 ------- null} - -t 3.31952 -s 1 -d 3 -p ack -e 40 -c 0 -i 4 -a 1 -x {1.1.3.0 0.0.3.0 1 ------- null} h -t 3.31952 -s 1 -d 3 -p ack -e 40 -c 0 -i 4 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 3.32112 -s 28 -d 1 -p ack -e 40 -c 0 -i 5 -a 1 -x {1.1.3.0 0.0.3.0 2 ------- null} + -t 3.32112 -s 1 -d 3 -p ack -e 40 -c 0 -i 5 -a 1 -x {1.1.3.0 0.0.3.0 2 ------- null} - -t 3.32112 -s 1 -d 3 -p ack -e 40 -c 0 -i 5 -a 1 -x {1.1.3.0 0.0.3.0 2 ------- null} h -t 3.32112 -s 1 -d 3 -p ack -e 40 -c 0 -i 5 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 3.45958 -s 1 -d 3 -p ack -e 40 -c 0 -i 4 -a 1 -x {1.1.3.0 0.0.3.0 1 ------- null} + -t 3.45958 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {0.0.3.0 1.1.3.0 3 ------- null} - -t 3.45958 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {0.0.3.0 1.1.3.0 3 ------- null} h -t 3.45958 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} + -t 3.45958 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {0.0.3.0 1.1.3.0 4 ------- null} r -t 3.46118 -s 1 -d 3 -p ack -e 40 -c 0 -i 5 -a 1 -x {1.1.3.0 0.0.3.0 2 ------- null} + -t 3.46118 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {0.0.3.0 1.1.3.0 5 ------- null} + -t 3.46118 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {0.0.3.0 1.1.3.0 6 ------- null} - -t 3.46118 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {0.0.3.0 1.1.3.0 4 ------- null} h -t 3.46118 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} - -t 3.46278 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {0.0.3.0 1.1.3.0 5 ------- null} h -t 3.46278 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} - -t 3.46438 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {0.0.3.0 1.1.3.0 6 ------- null} h -t 3.46438 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 3.62118 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {0.0.3.0 1.1.3.0 3 ------- null} + -t 3.62118 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {0.0.3.0 1.1.3.0 3 ------- null} - -t 3.62118 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {0.0.3.0 1.1.3.0 3 ------- null} h -t 3.62118 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 3.62278 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {0.0.3.0 1.1.3.0 4 ------- null} + -t 3.62278 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {0.0.3.0 1.1.3.0 4 ------- null} - -t 3.62278 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {0.0.3.0 1.1.3.0 4 ------- null} h -t 3.62278 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 3.62438 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {0.0.3.0 1.1.3.0 5 ------- null} + -t 3.62438 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {0.0.3.0 1.1.3.0 5 ------- null} - -t 3.62438 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {0.0.3.0 1.1.3.0 5 ------- null} h -t 3.62438 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 3.62598 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {0.0.3.0 1.1.3.0 6 ------- null} + -t 3.62598 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {0.0.3.0 1.1.3.0 6 ------- null} - -t 3.62598 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {0.0.3.0 1.1.3.0 6 ------- null} h -t 3.62598 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 3.92278 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {0.0.3.0 1.1.3.0 3 ------- null} + -t 3.92278 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {0.0.3.0 1.1.3.0 3 ------- null} - -t 3.92278 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {0.0.3.0 1.1.3.0 3 ------- null} h -t 3.92278 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 3.92438 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {0.0.3.0 1.1.3.0 4 ------- null} + -t 3.92438 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {0.0.3.0 1.1.3.0 4 ------- null} - -t 3.92438 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {0.0.3.0 1.1.3.0 4 ------- null} h -t 3.92438 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 3.92598 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {0.0.3.0 1.1.3.0 5 ------- null} + -t 3.92598 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {0.0.3.0 1.1.3.0 5 ------- null} - -t 3.92598 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {0.0.3.0 1.1.3.0 5 ------- null} h -t 3.92598 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 3.92758 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {0.0.3.0 1.1.3.0 6 ------- null} + -t 3.92758 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {0.0.3.0 1.1.3.0 6 ------- null} - -t 3.92758 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {0.0.3.0 1.1.3.0 6 ------- null} h -t 3.92758 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 4.02438 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {0.0.3.0 1.1.3.0 3 ------- null} + -t 4.02438 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {0.0.3.0 1.1.3.0 3 ------- null} - -t 4.02438 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {0.0.3.0 1.1.3.0 3 ------- null} h -t 4.02438 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 4.02598 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {0.0.3.0 1.1.3.0 4 ------- null} + -t 4.02598 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {0.0.3.0 1.1.3.0 4 ------- null} - -t 4.02598 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {0.0.3.0 1.1.3.0 4 ------- null} h -t 4.02598 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 4.02758 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {0.0.3.0 1.1.3.0 5 ------- null} + -t 4.02758 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {0.0.3.0 1.1.3.0 5 ------- null} - -t 4.02758 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {0.0.3.0 1.1.3.0 5 ------- null} h -t 4.02758 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 4.02918 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {0.0.3.0 1.1.3.0 6 ------- null} + -t 4.02918 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {0.0.3.0 1.1.3.0 6 ------- null} - -t 4.02918 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {0.0.3.0 1.1.3.0 6 ------- null} h -t 4.02918 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 4.10598 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {0.0.3.0 1.1.3.0 3 ------- null} + -t 4.10598 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {0.0.3.0 1.1.3.0 3 ------- null} - -t 4.10598 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {0.0.3.0 1.1.3.0 3 ------- null} h -t 4.10598 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 4.10758 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {0.0.3.0 1.1.3.0 4 ------- null} + -t 4.10758 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {0.0.3.0 1.1.3.0 4 ------- null} - -t 4.10758 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {0.0.3.0 1.1.3.0 4 ------- null} h -t 4.10758 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 4.10918 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {0.0.3.0 1.1.3.0 5 ------- null} + -t 4.10918 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {0.0.3.0 1.1.3.0 5 ------- null} - -t 4.10918 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {0.0.3.0 1.1.3.0 5 ------- null} h -t 4.10918 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 4.11078 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {0.0.3.0 1.1.3.0 6 ------- null} + -t 4.11078 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {0.0.3.0 1.1.3.0 6 ------- null} - -t 4.11078 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {0.0.3.0 1.1.3.0 6 ------- null} h -t 4.11078 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 4.18758 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {0.0.3.0 1.1.3.0 3 ------- null} + -t 4.18758 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {0.0.3.0 1.1.3.0 3 ------- null} - -t 4.18758 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {0.0.3.0 1.1.3.0 3 ------- null} h -t 4.18758 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 4.18918 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {0.0.3.0 1.1.3.0 4 ------- null} + -t 4.18918 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {0.0.3.0 1.1.3.0 4 ------- null} - -t 4.18918 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {0.0.3.0 1.1.3.0 4 ------- null} h -t 4.18918 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 4.19078 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {0.0.3.0 1.1.3.0 5 ------- null} + -t 4.19078 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {0.0.3.0 1.1.3.0 5 ------- null} - -t 4.19078 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {0.0.3.0 1.1.3.0 5 ------- null} h -t 4.19078 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 4.19238 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {0.0.3.0 1.1.3.0 6 ------- null} + -t 4.19238 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {0.0.3.0 1.1.3.0 6 ------- null} - -t 4.19238 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {0.0.3.0 1.1.3.0 6 ------- null} h -t 4.19238 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 4.24918 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {0.0.3.0 1.1.3.0 3 ------- null} + -t 4.24918 -s 21 -d 28 -p ack -e 40 -c 0 -i 10 -a 1 -x {1.1.3.0 0.0.3.0 3 ------- null} - -t 4.24918 -s 21 -d 28 -p ack -e 40 -c 0 -i 10 -a 1 -x {1.1.3.0 0.0.3.0 3 ------- null} h -t 4.24918 -s 21 -d 28 -p ack -e 40 -c 0 -i 10 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 4.25078 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {0.0.3.0 1.1.3.0 4 ------- null} + -t 4.25078 -s 21 -d 28 -p ack -e 40 -c 0 -i 11 -a 1 -x {1.1.3.0 0.0.3.0 4 ------- null} - -t 4.25078 -s 21 -d 28 -p ack -e 40 -c 0 -i 11 -a 1 -x {1.1.3.0 0.0.3.0 4 ------- null} h -t 4.25078 -s 21 -d 28 -p ack -e 40 -c 0 -i 11 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 4.25238 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {0.0.3.0 1.1.3.0 5 ------- null} + -t 4.25238 -s 21 -d 28 -p ack -e 40 -c 0 -i 12 -a 1 -x {1.1.3.0 0.0.3.0 5 ------- null} - -t 4.25238 -s 21 -d 28 -p ack -e 40 -c 0 -i 12 -a 1 -x {1.1.3.0 0.0.3.0 5 ------- null} h -t 4.25238 -s 21 -d 28 -p ack -e 40 -c 0 -i 12 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 4.25398 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {0.0.3.0 1.1.3.0 6 ------- null} + -t 4.25398 -s 21 -d 28 -p ack -e 40 -c 0 -i 13 -a 1 -x {1.1.3.0 0.0.3.0 6 ------- null} - -t 4.25398 -s 21 -d 28 -p ack -e 40 -c 0 -i 13 -a 1 -x {1.1.3.0 0.0.3.0 6 ------- null} h -t 4.25398 -s 21 -d 28 -p ack -e 40 -c 0 -i 13 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 4.59925 -s 21 -d 28 -p ack -e 40 -c 0 -i 10 -a 1 -x {1.1.3.0 0.0.3.0 3 ------- null} + -t 4.59925 -s 28 -d 1 -p ack -e 40 -c 0 -i 10 -a 1 -x {1.1.3.0 0.0.3.0 3 ------- null} - -t 4.59925 -s 28 -d 1 -p ack -e 40 -c 0 -i 10 -a 1 -x {1.1.3.0 0.0.3.0 3 ------- null} h -t 4.59925 -s 28 -d 1 -p ack -e 40 -c 0 -i 10 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 4.60085 -s 21 -d 28 -p ack -e 40 -c 0 -i 11 -a 1 -x {1.1.3.0 0.0.3.0 4 ------- null} + -t 4.60085 -s 28 -d 1 -p ack -e 40 -c 0 -i 11 -a 1 -x {1.1.3.0 0.0.3.0 4 ------- null} - -t 4.60085 -s 28 -d 1 -p ack -e 40 -c 0 -i 11 -a 1 -x {1.1.3.0 0.0.3.0 4 ------- null} h -t 4.60085 -s 28 -d 1 -p ack -e 40 -c 0 -i 11 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 4.60245 -s 21 -d 28 -p ack -e 40 -c 0 -i 12 -a 1 -x {1.1.3.0 0.0.3.0 5 ------- null} + -t 4.60245 -s 28 -d 1 -p ack -e 40 -c 0 -i 12 -a 1 -x {1.1.3.0 0.0.3.0 5 ------- null} - -t 4.60245 -s 28 -d 1 -p ack -e 40 -c 0 -i 12 -a 1 -x {1.1.3.0 0.0.3.0 5 ------- null} h -t 4.60245 -s 28 -d 1 -p ack -e 40 -c 0 -i 12 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 4.60405 -s 21 -d 28 -p ack -e 40 -c 0 -i 13 -a 1 -x {1.1.3.0 0.0.3.0 6 ------- null} + -t 4.60405 -s 28 -d 1 -p ack -e 40 -c 0 -i 13 -a 1 -x {1.1.3.0 0.0.3.0 6 ------- null} - -t 4.60405 -s 28 -d 1 -p ack -e 40 -c 0 -i 13 -a 1 -x {1.1.3.0 0.0.3.0 6 ------- null} h -t 4.60405 -s 28 -d 1 -p ack -e 40 -c 0 -i 13 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 4.89931 -s 28 -d 1 -p ack -e 40 -c 0 -i 10 -a 1 -x {1.1.3.0 0.0.3.0 3 ------- null} + -t 4.89931 -s 1 -d 3 -p ack -e 40 -c 0 -i 10 -a 1 -x {1.1.3.0 0.0.3.0 3 ------- null} - -t 4.89931 -s 1 -d 3 -p ack -e 40 -c 0 -i 10 -a 1 -x {1.1.3.0 0.0.3.0 3 ------- null} h -t 4.89931 -s 1 -d 3 -p ack -e 40 -c 0 -i 10 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 4.90091 -s 28 -d 1 -p ack -e 40 -c 0 -i 11 -a 1 -x {1.1.3.0 0.0.3.0 4 ------- null} + -t 4.90091 -s 1 -d 3 -p ack -e 40 -c 0 -i 11 -a 1 -x {1.1.3.0 0.0.3.0 4 ------- null} - -t 4.90091 -s 1 -d 3 -p ack -e 40 -c 0 -i 11 -a 1 -x {1.1.3.0 0.0.3.0 4 ------- null} h -t 4.90091 -s 1 -d 3 -p ack -e 40 -c 0 -i 11 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 4.90251 -s 28 -d 1 -p ack -e 40 -c 0 -i 12 -a 1 -x {1.1.3.0 0.0.3.0 5 ------- null} + -t 4.90251 -s 1 -d 3 -p ack -e 40 -c 0 -i 12 -a 1 -x {1.1.3.0 0.0.3.0 5 ------- null} - -t 4.90251 -s 1 -d 3 -p ack -e 40 -c 0 -i 12 -a 1 -x {1.1.3.0 0.0.3.0 5 ------- null} h -t 4.90251 -s 1 -d 3 -p ack -e 40 -c 0 -i 12 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 4.90411 -s 28 -d 1 -p ack -e 40 -c 0 -i 13 -a 1 -x {1.1.3.0 0.0.3.0 6 ------- null} + -t 4.90411 -s 1 -d 3 -p ack -e 40 -c 0 -i 13 -a 1 -x {1.1.3.0 0.0.3.0 6 ------- null} - -t 4.90411 -s 1 -d 3 -p ack -e 40 -c 0 -i 13 -a 1 -x {1.1.3.0 0.0.3.0 6 ------- null} h -t 4.90411 -s 1 -d 3 -p ack -e 40 -c 0 -i 13 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 5.03938 -s 1 -d 3 -p ack -e 40 -c 0 -i 10 -a 1 -x {1.1.3.0 0.0.3.0 3 ------- null} + -t 5.03938 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {0.0.3.0 1.1.3.0 7 ------- null} - -t 5.03938 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {0.0.3.0 1.1.3.0 7 ------- null} h -t 5.03938 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} + -t 5.03938 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {0.0.3.0 1.1.3.0 8 ------- null} r -t 5.04098 -s 1 -d 3 -p ack -e 40 -c 0 -i 11 -a 1 -x {1.1.3.0 0.0.3.0 4 ------- null} + -t 5.04098 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {0.0.3.0 1.1.3.0 9 ------- null} + -t 5.04098 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {0.0.3.0 1.1.3.0 10 ------- null} - -t 5.04098 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {0.0.3.0 1.1.3.0 8 ------- null} h -t 5.04098 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 5.04258 -s 1 -d 3 -p ack -e 40 -c 0 -i 12 -a 1 -x {1.1.3.0 0.0.3.0 5 ------- null} + -t 5.04258 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {0.0.3.0 1.1.3.0 11 ------- null} + -t 5.04258 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {0.0.3.0 1.1.3.0 12 ------- null} - -t 5.04258 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {0.0.3.0 1.1.3.0 9 ------- null} h -t 5.04258 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 5.04418 -s 1 -d 3 -p ack -e 40 -c 0 -i 13 -a 1 -x {1.1.3.0 0.0.3.0 6 ------- null} + -t 5.04418 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {0.0.3.0 1.1.3.0 13 ------- null} + -t 5.04418 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {0.0.3.0 1.1.3.0 14 ------- null} - -t 5.04418 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {0.0.3.0 1.1.3.0 10 ------- null} h -t 5.04418 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} - -t 5.04578 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {0.0.3.0 1.1.3.0 11 ------- null} h -t 5.04578 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} - -t 5.04738 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {0.0.3.0 1.1.3.0 12 ------- null} h -t 5.04738 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} - -t 5.04898 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {0.0.3.0 1.1.3.0 13 ------- null} h -t 5.04898 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} - -t 5.05058 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {0.0.3.0 1.1.3.0 14 ------- null} h -t 5.05058 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 5.20098 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {0.0.3.0 1.1.3.0 7 ------- null} + -t 5.20098 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {0.0.3.0 1.1.3.0 7 ------- null} - -t 5.20098 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {0.0.3.0 1.1.3.0 7 ------- null} h -t 5.20098 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 5.20258 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {0.0.3.0 1.1.3.0 8 ------- null} + -t 5.20258 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {0.0.3.0 1.1.3.0 8 ------- null} - -t 5.20258 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {0.0.3.0 1.1.3.0 8 ------- null} h -t 5.20258 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 5.20418 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {0.0.3.0 1.1.3.0 9 ------- null} + -t 5.20418 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {0.0.3.0 1.1.3.0 9 ------- null} - -t 5.20418 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {0.0.3.0 1.1.3.0 9 ------- null} h -t 5.20418 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 5.20578 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {0.0.3.0 1.1.3.0 10 ------- null} + -t 5.20578 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {0.0.3.0 1.1.3.0 10 ------- null} - -t 5.20578 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {0.0.3.0 1.1.3.0 10 ------- null} h -t 5.20578 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 5.20738 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {0.0.3.0 1.1.3.0 11 ------- null} + -t 5.20738 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {0.0.3.0 1.1.3.0 11 ------- null} - -t 5.20738 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {0.0.3.0 1.1.3.0 11 ------- null} h -t 5.20738 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 5.20898 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {0.0.3.0 1.1.3.0 12 ------- null} + -t 5.20898 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {0.0.3.0 1.1.3.0 12 ------- null} - -t 5.20898 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {0.0.3.0 1.1.3.0 12 ------- null} h -t 5.20898 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 5.21058 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {0.0.3.0 1.1.3.0 13 ------- null} + -t 5.21058 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {0.0.3.0 1.1.3.0 13 ------- null} - -t 5.21058 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {0.0.3.0 1.1.3.0 13 ------- null} h -t 5.21058 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 5.21218 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {0.0.3.0 1.1.3.0 14 ------- null} + -t 5.21218 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {0.0.3.0 1.1.3.0 14 ------- null} - -t 5.21218 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {0.0.3.0 1.1.3.0 14 ------- null} h -t 5.21218 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 5.50258 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {0.0.3.0 1.1.3.0 7 ------- null} + -t 5.50258 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {0.0.3.0 1.1.3.0 7 ------- null} - -t 5.50258 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {0.0.3.0 1.1.3.0 7 ------- null} h -t 5.50258 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 5.50418 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {0.0.3.0 1.1.3.0 8 ------- null} + -t 5.50418 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {0.0.3.0 1.1.3.0 8 ------- null} - -t 5.50418 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {0.0.3.0 1.1.3.0 8 ------- null} h -t 5.50418 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 5.50578 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {0.0.3.0 1.1.3.0 9 ------- null} + -t 5.50578 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {0.0.3.0 1.1.3.0 9 ------- null} - -t 5.50578 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {0.0.3.0 1.1.3.0 9 ------- null} h -t 5.50578 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 5.50738 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {0.0.3.0 1.1.3.0 10 ------- null} + -t 5.50738 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {0.0.3.0 1.1.3.0 10 ------- null} - -t 5.50738 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {0.0.3.0 1.1.3.0 10 ------- null} h -t 5.50738 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 5.50898 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {0.0.3.0 1.1.3.0 11 ------- null} + -t 5.50898 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {0.0.3.0 1.1.3.0 11 ------- null} - -t 5.50898 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {0.0.3.0 1.1.3.0 11 ------- null} h -t 5.50898 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 5.51058 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {0.0.3.0 1.1.3.0 12 ------- null} + -t 5.51058 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {0.0.3.0 1.1.3.0 12 ------- null} - -t 5.51058 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {0.0.3.0 1.1.3.0 12 ------- null} h -t 5.51058 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 5.51218 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {0.0.3.0 1.1.3.0 13 ------- null} + -t 5.51218 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {0.0.3.0 1.1.3.0 13 ------- null} - -t 5.51218 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {0.0.3.0 1.1.3.0 13 ------- null} h -t 5.51218 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 5.51378 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {0.0.3.0 1.1.3.0 14 ------- null} + -t 5.51378 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {0.0.3.0 1.1.3.0 14 ------- null} - -t 5.51378 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {0.0.3.0 1.1.3.0 14 ------- null} h -t 5.51378 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 5.60418 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {0.0.3.0 1.1.3.0 7 ------- null} + -t 5.60418 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {0.0.3.0 1.1.3.0 7 ------- null} - -t 5.60418 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {0.0.3.0 1.1.3.0 7 ------- null} h -t 5.60418 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 5.60578 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {0.0.3.0 1.1.3.0 8 ------- null} + -t 5.60578 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {0.0.3.0 1.1.3.0 8 ------- null} - -t 5.60578 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {0.0.3.0 1.1.3.0 8 ------- null} h -t 5.60578 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 5.60738 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {0.0.3.0 1.1.3.0 9 ------- null} + -t 5.60738 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {0.0.3.0 1.1.3.0 9 ------- null} - -t 5.60738 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {0.0.3.0 1.1.3.0 9 ------- null} h -t 5.60738 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 5.60898 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {0.0.3.0 1.1.3.0 10 ------- null} + -t 5.60898 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {0.0.3.0 1.1.3.0 10 ------- null} - -t 5.60898 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {0.0.3.0 1.1.3.0 10 ------- null} h -t 5.60898 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 5.61058 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {0.0.3.0 1.1.3.0 11 ------- null} + -t 5.61058 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {0.0.3.0 1.1.3.0 11 ------- null} - -t 5.61058 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {0.0.3.0 1.1.3.0 11 ------- null} h -t 5.61058 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 5.61218 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {0.0.3.0 1.1.3.0 12 ------- null} + -t 5.61218 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {0.0.3.0 1.1.3.0 12 ------- null} - -t 5.61218 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {0.0.3.0 1.1.3.0 12 ------- null} h -t 5.61218 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 5.61378 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {0.0.3.0 1.1.3.0 13 ------- null} + -t 5.61378 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {0.0.3.0 1.1.3.0 13 ------- null} - -t 5.61378 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {0.0.3.0 1.1.3.0 13 ------- null} h -t 5.61378 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 5.61538 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {0.0.3.0 1.1.3.0 14 ------- null} + -t 5.61538 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {0.0.3.0 1.1.3.0 14 ------- null} - -t 5.61538 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {0.0.3.0 1.1.3.0 14 ------- null} h -t 5.61538 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 5.68578 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {0.0.3.0 1.1.3.0 7 ------- null} + -t 5.68578 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {0.0.3.0 1.1.3.0 7 ------- null} - -t 5.68578 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {0.0.3.0 1.1.3.0 7 ------- null} h -t 5.68578 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 5.68738 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {0.0.3.0 1.1.3.0 8 ------- null} + -t 5.68738 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {0.0.3.0 1.1.3.0 8 ------- null} - -t 5.68738 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {0.0.3.0 1.1.3.0 8 ------- null} h -t 5.68738 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 5.68898 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {0.0.3.0 1.1.3.0 9 ------- null} + -t 5.68898 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {0.0.3.0 1.1.3.0 9 ------- null} - -t 5.68898 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {0.0.3.0 1.1.3.0 9 ------- null} h -t 5.68898 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 5.69058 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {0.0.3.0 1.1.3.0 10 ------- null} + -t 5.69058 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {0.0.3.0 1.1.3.0 10 ------- null} - -t 5.69058 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {0.0.3.0 1.1.3.0 10 ------- null} h -t 5.69058 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 5.69218 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {0.0.3.0 1.1.3.0 11 ------- null} + -t 5.69218 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {0.0.3.0 1.1.3.0 11 ------- null} - -t 5.69218 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {0.0.3.0 1.1.3.0 11 ------- null} h -t 5.69218 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 5.69378 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {0.0.3.0 1.1.3.0 12 ------- null} + -t 5.69378 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {0.0.3.0 1.1.3.0 12 ------- null} - -t 5.69378 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {0.0.3.0 1.1.3.0 12 ------- null} h -t 5.69378 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 5.69538 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {0.0.3.0 1.1.3.0 13 ------- null} + -t 5.69538 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {0.0.3.0 1.1.3.0 13 ------- null} - -t 5.69538 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {0.0.3.0 1.1.3.0 13 ------- null} h -t 5.69538 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 5.69698 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {0.0.3.0 1.1.3.0 14 ------- null} + -t 5.69698 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {0.0.3.0 1.1.3.0 14 ------- null} - -t 5.69698 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {0.0.3.0 1.1.3.0 14 ------- null} h -t 5.69698 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 5.76738 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {0.0.3.0 1.1.3.0 7 ------- null} + -t 5.76738 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {0.0.3.0 1.1.3.0 7 ------- null} - -t 5.76738 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {0.0.3.0 1.1.3.0 7 ------- null} h -t 5.76738 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 5.76898 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {0.0.3.0 1.1.3.0 8 ------- null} + -t 5.76898 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {0.0.3.0 1.1.3.0 8 ------- null} - -t 5.76898 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {0.0.3.0 1.1.3.0 8 ------- null} h -t 5.76898 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 5.77058 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {0.0.3.0 1.1.3.0 9 ------- null} + -t 5.77058 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {0.0.3.0 1.1.3.0 9 ------- null} - -t 5.77058 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {0.0.3.0 1.1.3.0 9 ------- null} h -t 5.77058 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 5.77218 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {0.0.3.0 1.1.3.0 10 ------- null} + -t 5.77218 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {0.0.3.0 1.1.3.0 10 ------- null} - -t 5.77218 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {0.0.3.0 1.1.3.0 10 ------- null} h -t 5.77218 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 5.77378 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {0.0.3.0 1.1.3.0 11 ------- null} + -t 5.77378 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {0.0.3.0 1.1.3.0 11 ------- null} - -t 5.77378 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {0.0.3.0 1.1.3.0 11 ------- null} h -t 5.77378 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 5.77538 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {0.0.3.0 1.1.3.0 12 ------- null} + -t 5.77538 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {0.0.3.0 1.1.3.0 12 ------- null} - -t 5.77538 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {0.0.3.0 1.1.3.0 12 ------- null} h -t 5.77538 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 5.77698 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {0.0.3.0 1.1.3.0 13 ------- null} + -t 5.77698 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {0.0.3.0 1.1.3.0 13 ------- null} - -t 5.77698 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {0.0.3.0 1.1.3.0 13 ------- null} h -t 5.77698 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 5.77858 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {0.0.3.0 1.1.3.0 14 ------- null} + -t 5.77858 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {0.0.3.0 1.1.3.0 14 ------- null} - -t 5.77858 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {0.0.3.0 1.1.3.0 14 ------- null} h -t 5.77858 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 5.82898 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {0.0.3.0 1.1.3.0 7 ------- null} + -t 5.82898 -s 21 -d 28 -p ack -e 40 -c 0 -i 22 -a 1 -x {1.1.3.0 0.0.3.0 7 ------- null} - -t 5.82898 -s 21 -d 28 -p ack -e 40 -c 0 -i 22 -a 1 -x {1.1.3.0 0.0.3.0 7 ------- null} h -t 5.82898 -s 21 -d 28 -p ack -e 40 -c 0 -i 22 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 5.83058 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {0.0.3.0 1.1.3.0 8 ------- null} + -t 5.83058 -s 21 -d 28 -p ack -e 40 -c 0 -i 23 -a 1 -x {1.1.3.0 0.0.3.0 8 ------- null} - -t 5.83058 -s 21 -d 28 -p ack -e 40 -c 0 -i 23 -a 1 -x {1.1.3.0 0.0.3.0 8 ------- null} h -t 5.83058 -s 21 -d 28 -p ack -e 40 -c 0 -i 23 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 5.83218 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {0.0.3.0 1.1.3.0 9 ------- null} + -t 5.83218 -s 21 -d 28 -p ack -e 40 -c 0 -i 24 -a 1 -x {1.1.3.0 0.0.3.0 9 ------- null} - -t 5.83218 -s 21 -d 28 -p ack -e 40 -c 0 -i 24 -a 1 -x {1.1.3.0 0.0.3.0 9 ------- null} h -t 5.83218 -s 21 -d 28 -p ack -e 40 -c 0 -i 24 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 5.83378 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {0.0.3.0 1.1.3.0 10 ------- null} + -t 5.83378 -s 21 -d 28 -p ack -e 40 -c 0 -i 25 -a 1 -x {1.1.3.0 0.0.3.0 10 ------- null} - -t 5.83378 -s 21 -d 28 -p ack -e 40 -c 0 -i 25 -a 1 -x {1.1.3.0 0.0.3.0 10 ------- null} h -t 5.83378 -s 21 -d 28 -p ack -e 40 -c 0 -i 25 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 5.83538 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {0.0.3.0 1.1.3.0 11 ------- null} + -t 5.83538 -s 21 -d 28 -p ack -e 40 -c 0 -i 26 -a 1 -x {1.1.3.0 0.0.3.0 11 ------- null} - -t 5.83538 -s 21 -d 28 -p ack -e 40 -c 0 -i 26 -a 1 -x {1.1.3.0 0.0.3.0 11 ------- null} h -t 5.83538 -s 21 -d 28 -p ack -e 40 -c 0 -i 26 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 5.83698 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {0.0.3.0 1.1.3.0 12 ------- null} + -t 5.83698 -s 21 -d 28 -p ack -e 40 -c 0 -i 27 -a 1 -x {1.1.3.0 0.0.3.0 12 ------- null} - -t 5.83698 -s 21 -d 28 -p ack -e 40 -c 0 -i 27 -a 1 -x {1.1.3.0 0.0.3.0 12 ------- null} h -t 5.83698 -s 21 -d 28 -p ack -e 40 -c 0 -i 27 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 5.83858 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {0.0.3.0 1.1.3.0 13 ------- null} + -t 5.83858 -s 21 -d 28 -p ack -e 40 -c 0 -i 28 -a 1 -x {1.1.3.0 0.0.3.0 13 ------- null} - -t 5.83858 -s 21 -d 28 -p ack -e 40 -c 0 -i 28 -a 1 -x {1.1.3.0 0.0.3.0 13 ------- null} h -t 5.83858 -s 21 -d 28 -p ack -e 40 -c 0 -i 28 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 5.84018 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {0.0.3.0 1.1.3.0 14 ------- null} + -t 5.84018 -s 21 -d 28 -p ack -e 40 -c 0 -i 29 -a 1 -x {1.1.3.0 0.0.3.0 14 ------- null} - -t 5.84018 -s 21 -d 28 -p ack -e 40 -c 0 -i 29 -a 1 -x {1.1.3.0 0.0.3.0 14 ------- null} h -t 5.84018 -s 21 -d 28 -p ack -e 40 -c 0 -i 29 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 6.17904 -s 21 -d 28 -p ack -e 40 -c 0 -i 22 -a 1 -x {1.1.3.0 0.0.3.0 7 ------- null} + -t 6.17904 -s 28 -d 1 -p ack -e 40 -c 0 -i 22 -a 1 -x {1.1.3.0 0.0.3.0 7 ------- null} - -t 6.17904 -s 28 -d 1 -p ack -e 40 -c 0 -i 22 -a 1 -x {1.1.3.0 0.0.3.0 7 ------- null} h -t 6.17904 -s 28 -d 1 -p ack -e 40 -c 0 -i 22 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 6.18064 -s 21 -d 28 -p ack -e 40 -c 0 -i 23 -a 1 -x {1.1.3.0 0.0.3.0 8 ------- null} + -t 6.18064 -s 28 -d 1 -p ack -e 40 -c 0 -i 23 -a 1 -x {1.1.3.0 0.0.3.0 8 ------- null} - -t 6.18064 -s 28 -d 1 -p ack -e 40 -c 0 -i 23 -a 1 -x {1.1.3.0 0.0.3.0 8 ------- null} h -t 6.18064 -s 28 -d 1 -p ack -e 40 -c 0 -i 23 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 6.18224 -s 21 -d 28 -p ack -e 40 -c 0 -i 24 -a 1 -x {1.1.3.0 0.0.3.0 9 ------- null} + -t 6.18224 -s 28 -d 1 -p ack -e 40 -c 0 -i 24 -a 1 -x {1.1.3.0 0.0.3.0 9 ------- null} - -t 6.18224 -s 28 -d 1 -p ack -e 40 -c 0 -i 24 -a 1 -x {1.1.3.0 0.0.3.0 9 ------- null} h -t 6.18224 -s 28 -d 1 -p ack -e 40 -c 0 -i 24 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 6.18384 -s 21 -d 28 -p ack -e 40 -c 0 -i 25 -a 1 -x {1.1.3.0 0.0.3.0 10 ------- null} + -t 6.18384 -s 28 -d 1 -p ack -e 40 -c 0 -i 25 -a 1 -x {1.1.3.0 0.0.3.0 10 ------- null} - -t 6.18384 -s 28 -d 1 -p ack -e 40 -c 0 -i 25 -a 1 -x {1.1.3.0 0.0.3.0 10 ------- null} h -t 6.18384 -s 28 -d 1 -p ack -e 40 -c 0 -i 25 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 6.18544 -s 21 -d 28 -p ack -e 40 -c 0 -i 26 -a 1 -x {1.1.3.0 0.0.3.0 11 ------- null} + -t 6.18544 -s 28 -d 1 -p ack -e 40 -c 0 -i 26 -a 1 -x {1.1.3.0 0.0.3.0 11 ------- null} - -t 6.18544 -s 28 -d 1 -p ack -e 40 -c 0 -i 26 -a 1 -x {1.1.3.0 0.0.3.0 11 ------- null} h -t 6.18544 -s 28 -d 1 -p ack -e 40 -c 0 -i 26 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 6.18704 -s 21 -d 28 -p ack -e 40 -c 0 -i 27 -a 1 -x {1.1.3.0 0.0.3.0 12 ------- null} + -t 6.18704 -s 28 -d 1 -p ack -e 40 -c 0 -i 27 -a 1 -x {1.1.3.0 0.0.3.0 12 ------- null} - -t 6.18704 -s 28 -d 1 -p ack -e 40 -c 0 -i 27 -a 1 -x {1.1.3.0 0.0.3.0 12 ------- null} h -t 6.18704 -s 28 -d 1 -p ack -e 40 -c 0 -i 27 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 6.18864 -s 21 -d 28 -p ack -e 40 -c 0 -i 28 -a 1 -x {1.1.3.0 0.0.3.0 13 ------- null} + -t 6.18864 -s 28 -d 1 -p ack -e 40 -c 0 -i 28 -a 1 -x {1.1.3.0 0.0.3.0 13 ------- null} - -t 6.18864 -s 28 -d 1 -p ack -e 40 -c 0 -i 28 -a 1 -x {1.1.3.0 0.0.3.0 13 ------- null} h -t 6.18864 -s 28 -d 1 -p ack -e 40 -c 0 -i 28 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 6.19024 -s 21 -d 28 -p ack -e 40 -c 0 -i 29 -a 1 -x {1.1.3.0 0.0.3.0 14 ------- null} + -t 6.19024 -s 28 -d 1 -p ack -e 40 -c 0 -i 29 -a 1 -x {1.1.3.0 0.0.3.0 14 ------- null} - -t 6.19024 -s 28 -d 1 -p ack -e 40 -c 0 -i 29 -a 1 -x {1.1.3.0 0.0.3.0 14 ------- null} h -t 6.19024 -s 28 -d 1 -p ack -e 40 -c 0 -i 29 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 6.4791 -s 28 -d 1 -p ack -e 40 -c 0 -i 22 -a 1 -x {1.1.3.0 0.0.3.0 7 ------- null} + -t 6.4791 -s 1 -d 3 -p ack -e 40 -c 0 -i 22 -a 1 -x {1.1.3.0 0.0.3.0 7 ------- null} - -t 6.4791 -s 1 -d 3 -p ack -e 40 -c 0 -i 22 -a 1 -x {1.1.3.0 0.0.3.0 7 ------- null} h -t 6.4791 -s 1 -d 3 -p ack -e 40 -c 0 -i 22 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 6.4807 -s 28 -d 1 -p ack -e 40 -c 0 -i 23 -a 1 -x {1.1.3.0 0.0.3.0 8 ------- null} + -t 6.4807 -s 1 -d 3 -p ack -e 40 -c 0 -i 23 -a 1 -x {1.1.3.0 0.0.3.0 8 ------- null} - -t 6.4807 -s 1 -d 3 -p ack -e 40 -c 0 -i 23 -a 1 -x {1.1.3.0 0.0.3.0 8 ------- null} h -t 6.4807 -s 1 -d 3 -p ack -e 40 -c 0 -i 23 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 6.4823 -s 28 -d 1 -p ack -e 40 -c 0 -i 24 -a 1 -x {1.1.3.0 0.0.3.0 9 ------- null} + -t 6.4823 -s 1 -d 3 -p ack -e 40 -c 0 -i 24 -a 1 -x {1.1.3.0 0.0.3.0 9 ------- null} - -t 6.4823 -s 1 -d 3 -p ack -e 40 -c 0 -i 24 -a 1 -x {1.1.3.0 0.0.3.0 9 ------- null} h -t 6.4823 -s 1 -d 3 -p ack -e 40 -c 0 -i 24 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 6.4839 -s 28 -d 1 -p ack -e 40 -c 0 -i 25 -a 1 -x {1.1.3.0 0.0.3.0 10 ------- null} + -t 6.4839 -s 1 -d 3 -p ack -e 40 -c 0 -i 25 -a 1 -x {1.1.3.0 0.0.3.0 10 ------- null} - -t 6.4839 -s 1 -d 3 -p ack -e 40 -c 0 -i 25 -a 1 -x {1.1.3.0 0.0.3.0 10 ------- null} h -t 6.4839 -s 1 -d 3 -p ack -e 40 -c 0 -i 25 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 6.4855 -s 28 -d 1 -p ack -e 40 -c 0 -i 26 -a 1 -x {1.1.3.0 0.0.3.0 11 ------- null} + -t 6.4855 -s 1 -d 3 -p ack -e 40 -c 0 -i 26 -a 1 -x {1.1.3.0 0.0.3.0 11 ------- null} - -t 6.4855 -s 1 -d 3 -p ack -e 40 -c 0 -i 26 -a 1 -x {1.1.3.0 0.0.3.0 11 ------- null} h -t 6.4855 -s 1 -d 3 -p ack -e 40 -c 0 -i 26 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 6.4871 -s 28 -d 1 -p ack -e 40 -c 0 -i 27 -a 1 -x {1.1.3.0 0.0.3.0 12 ------- null} + -t 6.4871 -s 1 -d 3 -p ack -e 40 -c 0 -i 27 -a 1 -x {1.1.3.0 0.0.3.0 12 ------- null} - -t 6.4871 -s 1 -d 3 -p ack -e 40 -c 0 -i 27 -a 1 -x {1.1.3.0 0.0.3.0 12 ------- null} h -t 6.4871 -s 1 -d 3 -p ack -e 40 -c 0 -i 27 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 6.4887 -s 28 -d 1 -p ack -e 40 -c 0 -i 28 -a 1 -x {1.1.3.0 0.0.3.0 13 ------- null} + -t 6.4887 -s 1 -d 3 -p ack -e 40 -c 0 -i 28 -a 1 -x {1.1.3.0 0.0.3.0 13 ------- null} - -t 6.4887 -s 1 -d 3 -p ack -e 40 -c 0 -i 28 -a 1 -x {1.1.3.0 0.0.3.0 13 ------- null} h -t 6.4887 -s 1 -d 3 -p ack -e 40 -c 0 -i 28 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 6.4903 -s 28 -d 1 -p ack -e 40 -c 0 -i 29 -a 1 -x {1.1.3.0 0.0.3.0 14 ------- null} + -t 6.4903 -s 1 -d 3 -p ack -e 40 -c 0 -i 29 -a 1 -x {1.1.3.0 0.0.3.0 14 ------- null} - -t 6.4903 -s 1 -d 3 -p ack -e 40 -c 0 -i 29 -a 1 -x {1.1.3.0 0.0.3.0 14 ------- null} h -t 6.4903 -s 1 -d 3 -p ack -e 40 -c 0 -i 29 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 6.61917 -s 1 -d 3 -p ack -e 40 -c 0 -i 22 -a 1 -x {1.1.3.0 0.0.3.0 7 ------- null} + -t 6.61917 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {0.0.3.0 1.1.3.0 15 ------- null} - -t 6.61917 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {0.0.3.0 1.1.3.0 15 ------- null} h -t 6.61917 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} + -t 6.61917 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {0.0.3.0 1.1.3.0 16 ------- null} r -t 6.62077 -s 1 -d 3 -p ack -e 40 -c 0 -i 23 -a 1 -x {1.1.3.0 0.0.3.0 8 ------- null} + -t 6.62077 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {0.0.3.0 1.1.3.0 17 ------- null} + -t 6.62077 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {0.0.3.0 1.1.3.0 18 ------- null} - -t 6.62077 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {0.0.3.0 1.1.3.0 16 ------- null} h -t 6.62077 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 6.62237 -s 1 -d 3 -p ack -e 40 -c 0 -i 24 -a 1 -x {1.1.3.0 0.0.3.0 9 ------- null} + -t 6.62237 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {0.0.3.0 1.1.3.0 19 ------- null} + -t 6.62237 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {0.0.3.0 1.1.3.0 20 ------- null} - -t 6.62237 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {0.0.3.0 1.1.3.0 17 ------- null} h -t 6.62237 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 6.62397 -s 1 -d 3 -p ack -e 40 -c 0 -i 25 -a 1 -x {1.1.3.0 0.0.3.0 10 ------- null} + -t 6.62397 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {0.0.3.0 1.1.3.0 21 ------- null} + -t 6.62397 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {0.0.3.0 1.1.3.0 22 ------- null} - -t 6.62397 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {0.0.3.0 1.1.3.0 18 ------- null} h -t 6.62397 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 6.62557 -s 1 -d 3 -p ack -e 40 -c 0 -i 26 -a 1 -x {1.1.3.0 0.0.3.0 11 ------- null} + -t 6.62557 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {0.0.3.0 1.1.3.0 23 ------- null} + -t 6.62557 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {0.0.3.0 1.1.3.0 24 ------- null} - -t 6.62557 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {0.0.3.0 1.1.3.0 19 ------- null} h -t 6.62557 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 6.62717 -s 1 -d 3 -p ack -e 40 -c 0 -i 27 -a 1 -x {1.1.3.0 0.0.3.0 12 ------- null} + -t 6.62717 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {0.0.3.0 1.1.3.0 25 ------- null} + -t 6.62717 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {0.0.3.0 1.1.3.0 26 ------- null} - -t 6.62717 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {0.0.3.0 1.1.3.0 20 ------- null} h -t 6.62717 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 6.62877 -s 1 -d 3 -p ack -e 40 -c 0 -i 28 -a 1 -x {1.1.3.0 0.0.3.0 13 ------- null} + -t 6.62877 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {0.0.3.0 1.1.3.0 27 ------- null} + -t 6.62877 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {0.0.3.0 1.1.3.0 28 ------- null} - -t 6.62877 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {0.0.3.0 1.1.3.0 21 ------- null} h -t 6.62877 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 6.63037 -s 1 -d 3 -p ack -e 40 -c 0 -i 29 -a 1 -x {1.1.3.0 0.0.3.0 14 ------- null} + -t 6.63037 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {0.0.3.0 1.1.3.0 29 ------- null} + -t 6.63037 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {0.0.3.0 1.1.3.0 30 ------- null} - -t 6.63037 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {0.0.3.0 1.1.3.0 22 ------- null} h -t 6.63037 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} - -t 6.63197 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {0.0.3.0 1.1.3.0 23 ------- null} h -t 6.63197 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} - -t 6.63357 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {0.0.3.0 1.1.3.0 24 ------- null} h -t 6.63357 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} - -t 6.63517 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {0.0.3.0 1.1.3.0 25 ------- null} h -t 6.63517 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} - -t 6.63677 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {0.0.3.0 1.1.3.0 26 ------- null} h -t 6.63677 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} - -t 6.63837 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {0.0.3.0 1.1.3.0 27 ------- null} h -t 6.63837 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} - -t 6.63997 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {0.0.3.0 1.1.3.0 28 ------- null} h -t 6.63997 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} - -t 6.64157 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {0.0.3.0 1.1.3.0 29 ------- null} h -t 6.64157 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} - -t 6.64317 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {0.0.3.0 1.1.3.0 30 ------- null} h -t 6.64317 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 6.78077 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {0.0.3.0 1.1.3.0 15 ------- null} + -t 6.78077 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {0.0.3.0 1.1.3.0 15 ------- null} - -t 6.78077 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {0.0.3.0 1.1.3.0 15 ------- null} h -t 6.78077 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 6.78237 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {0.0.3.0 1.1.3.0 16 ------- null} + -t 6.78237 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {0.0.3.0 1.1.3.0 16 ------- null} - -t 6.78237 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {0.0.3.0 1.1.3.0 16 ------- null} h -t 6.78237 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 6.78397 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {0.0.3.0 1.1.3.0 17 ------- null} + -t 6.78397 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {0.0.3.0 1.1.3.0 17 ------- null} - -t 6.78397 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {0.0.3.0 1.1.3.0 17 ------- null} h -t 6.78397 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 6.78557 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {0.0.3.0 1.1.3.0 18 ------- null} + -t 6.78557 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {0.0.3.0 1.1.3.0 18 ------- null} - -t 6.78557 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {0.0.3.0 1.1.3.0 18 ------- null} h -t 6.78557 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 6.78717 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {0.0.3.0 1.1.3.0 19 ------- null} + -t 6.78717 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {0.0.3.0 1.1.3.0 19 ------- null} - -t 6.78717 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {0.0.3.0 1.1.3.0 19 ------- null} h -t 6.78717 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 6.78877 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {0.0.3.0 1.1.3.0 20 ------- null} + -t 6.78877 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {0.0.3.0 1.1.3.0 20 ------- null} - -t 6.78877 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {0.0.3.0 1.1.3.0 20 ------- null} h -t 6.78877 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 6.79037 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {0.0.3.0 1.1.3.0 21 ------- null} + -t 6.79037 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {0.0.3.0 1.1.3.0 21 ------- null} - -t 6.79037 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {0.0.3.0 1.1.3.0 21 ------- null} h -t 6.79037 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 6.79197 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {0.0.3.0 1.1.3.0 22 ------- null} + -t 6.79197 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {0.0.3.0 1.1.3.0 22 ------- null} - -t 6.79197 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {0.0.3.0 1.1.3.0 22 ------- null} h -t 6.79197 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 6.79357 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {0.0.3.0 1.1.3.0 23 ------- null} + -t 6.79357 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {0.0.3.0 1.1.3.0 23 ------- null} - -t 6.79357 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {0.0.3.0 1.1.3.0 23 ------- null} h -t 6.79357 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 6.79517 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {0.0.3.0 1.1.3.0 24 ------- null} + -t 6.79517 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {0.0.3.0 1.1.3.0 24 ------- null} - -t 6.79517 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {0.0.3.0 1.1.3.0 24 ------- null} h -t 6.79517 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 6.79677 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {0.0.3.0 1.1.3.0 25 ------- null} + -t 6.79677 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {0.0.3.0 1.1.3.0 25 ------- null} - -t 6.79677 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {0.0.3.0 1.1.3.0 25 ------- null} h -t 6.79677 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 6.79837 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {0.0.3.0 1.1.3.0 26 ------- null} + -t 6.79837 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {0.0.3.0 1.1.3.0 26 ------- null} - -t 6.79837 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {0.0.3.0 1.1.3.0 26 ------- null} h -t 6.79837 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 6.79997 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {0.0.3.0 1.1.3.0 27 ------- null} + -t 6.79997 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {0.0.3.0 1.1.3.0 27 ------- null} - -t 6.79997 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {0.0.3.0 1.1.3.0 27 ------- null} h -t 6.79997 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 6.80157 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {0.0.3.0 1.1.3.0 28 ------- null} + -t 6.80157 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {0.0.3.0 1.1.3.0 28 ------- null} - -t 6.80157 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {0.0.3.0 1.1.3.0 28 ------- null} h -t 6.80157 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 6.80317 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {0.0.3.0 1.1.3.0 29 ------- null} + -t 6.80317 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {0.0.3.0 1.1.3.0 29 ------- null} - -t 6.80317 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {0.0.3.0 1.1.3.0 29 ------- null} h -t 6.80317 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 6.80477 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {0.0.3.0 1.1.3.0 30 ------- null} + -t 6.80477 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {0.0.3.0 1.1.3.0 30 ------- null} - -t 6.80477 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {0.0.3.0 1.1.3.0 30 ------- null} h -t 6.80477 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.08237 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {0.0.3.0 1.1.3.0 15 ------- null} + -t 7.08237 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {0.0.3.0 1.1.3.0 15 ------- null} - -t 7.08237 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {0.0.3.0 1.1.3.0 15 ------- null} h -t 7.08237 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.08397 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {0.0.3.0 1.1.3.0 16 ------- null} + -t 7.08397 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {0.0.3.0 1.1.3.0 16 ------- null} - -t 7.08397 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {0.0.3.0 1.1.3.0 16 ------- null} h -t 7.08397 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.08557 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {0.0.3.0 1.1.3.0 17 ------- null} + -t 7.08557 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {0.0.3.0 1.1.3.0 17 ------- null} - -t 7.08557 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {0.0.3.0 1.1.3.0 17 ------- null} h -t 7.08557 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.08717 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {0.0.3.0 1.1.3.0 18 ------- null} + -t 7.08717 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {0.0.3.0 1.1.3.0 18 ------- null} - -t 7.08717 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {0.0.3.0 1.1.3.0 18 ------- null} h -t 7.08717 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.08877 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {0.0.3.0 1.1.3.0 19 ------- null} + -t 7.08877 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {0.0.3.0 1.1.3.0 19 ------- null} - -t 7.08877 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {0.0.3.0 1.1.3.0 19 ------- null} h -t 7.08877 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.09037 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {0.0.3.0 1.1.3.0 20 ------- null} + -t 7.09037 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {0.0.3.0 1.1.3.0 20 ------- null} - -t 7.09037 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {0.0.3.0 1.1.3.0 20 ------- null} h -t 7.09037 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.09197 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {0.0.3.0 1.1.3.0 21 ------- null} + -t 7.09197 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {0.0.3.0 1.1.3.0 21 ------- null} - -t 7.09197 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {0.0.3.0 1.1.3.0 21 ------- null} h -t 7.09197 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.09357 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {0.0.3.0 1.1.3.0 22 ------- null} + -t 7.09357 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {0.0.3.0 1.1.3.0 22 ------- null} - -t 7.09357 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {0.0.3.0 1.1.3.0 22 ------- null} h -t 7.09357 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.09517 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {0.0.3.0 1.1.3.0 23 ------- null} + -t 7.09517 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {0.0.3.0 1.1.3.0 23 ------- null} - -t 7.09517 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {0.0.3.0 1.1.3.0 23 ------- null} h -t 7.09517 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.09677 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {0.0.3.0 1.1.3.0 24 ------- null} + -t 7.09677 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {0.0.3.0 1.1.3.0 24 ------- null} - -t 7.09677 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {0.0.3.0 1.1.3.0 24 ------- null} h -t 7.09677 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.09837 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {0.0.3.0 1.1.3.0 25 ------- null} + -t 7.09837 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {0.0.3.0 1.1.3.0 25 ------- null} - -t 7.09837 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {0.0.3.0 1.1.3.0 25 ------- null} h -t 7.09837 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.09997 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {0.0.3.0 1.1.3.0 26 ------- null} + -t 7.09997 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {0.0.3.0 1.1.3.0 26 ------- null} - -t 7.09997 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {0.0.3.0 1.1.3.0 26 ------- null} h -t 7.09997 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.10157 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {0.0.3.0 1.1.3.0 27 ------- null} + -t 7.10157 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {0.0.3.0 1.1.3.0 27 ------- null} - -t 7.10157 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {0.0.3.0 1.1.3.0 27 ------- null} h -t 7.10157 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.10317 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {0.0.3.0 1.1.3.0 28 ------- null} + -t 7.10317 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {0.0.3.0 1.1.3.0 28 ------- null} - -t 7.10317 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {0.0.3.0 1.1.3.0 28 ------- null} h -t 7.10317 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.10477 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {0.0.3.0 1.1.3.0 29 ------- null} + -t 7.10477 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {0.0.3.0 1.1.3.0 29 ------- null} - -t 7.10477 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {0.0.3.0 1.1.3.0 29 ------- null} h -t 7.10477 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.10637 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {0.0.3.0 1.1.3.0 30 ------- null} + -t 7.10637 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {0.0.3.0 1.1.3.0 30 ------- null} - -t 7.10637 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {0.0.3.0 1.1.3.0 30 ------- null} h -t 7.10637 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.18397 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {0.0.3.0 1.1.3.0 15 ------- null} + -t 7.18397 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {0.0.3.0 1.1.3.0 15 ------- null} - -t 7.18397 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {0.0.3.0 1.1.3.0 15 ------- null} h -t 7.18397 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.18557 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {0.0.3.0 1.1.3.0 16 ------- null} + -t 7.18557 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {0.0.3.0 1.1.3.0 16 ------- null} - -t 7.18557 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {0.0.3.0 1.1.3.0 16 ------- null} h -t 7.18557 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.18717 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {0.0.3.0 1.1.3.0 17 ------- null} + -t 7.18717 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {0.0.3.0 1.1.3.0 17 ------- null} - -t 7.18717 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {0.0.3.0 1.1.3.0 17 ------- null} h -t 7.18717 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.18877 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {0.0.3.0 1.1.3.0 18 ------- null} + -t 7.18877 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {0.0.3.0 1.1.3.0 18 ------- null} - -t 7.18877 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {0.0.3.0 1.1.3.0 18 ------- null} h -t 7.18877 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.19037 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {0.0.3.0 1.1.3.0 19 ------- null} + -t 7.19037 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {0.0.3.0 1.1.3.0 19 ------- null} - -t 7.19037 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {0.0.3.0 1.1.3.0 19 ------- null} h -t 7.19037 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.19197 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {0.0.3.0 1.1.3.0 20 ------- null} + -t 7.19197 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {0.0.3.0 1.1.3.0 20 ------- null} - -t 7.19197 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {0.0.3.0 1.1.3.0 20 ------- null} h -t 7.19197 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.19357 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {0.0.3.0 1.1.3.0 21 ------- null} + -t 7.19357 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {0.0.3.0 1.1.3.0 21 ------- null} - -t 7.19357 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {0.0.3.0 1.1.3.0 21 ------- null} h -t 7.19357 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.19517 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {0.0.3.0 1.1.3.0 22 ------- null} + -t 7.19517 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {0.0.3.0 1.1.3.0 22 ------- null} - -t 7.19517 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {0.0.3.0 1.1.3.0 22 ------- null} h -t 7.19517 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.19677 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {0.0.3.0 1.1.3.0 23 ------- null} + -t 7.19677 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {0.0.3.0 1.1.3.0 23 ------- null} - -t 7.19677 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {0.0.3.0 1.1.3.0 23 ------- null} h -t 7.19677 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.19837 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {0.0.3.0 1.1.3.0 24 ------- null} + -t 7.19837 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {0.0.3.0 1.1.3.0 24 ------- null} - -t 7.19837 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {0.0.3.0 1.1.3.0 24 ------- null} h -t 7.19837 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.19997 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {0.0.3.0 1.1.3.0 25 ------- null} + -t 7.19997 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {0.0.3.0 1.1.3.0 25 ------- null} - -t 7.19997 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {0.0.3.0 1.1.3.0 25 ------- null} h -t 7.19997 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.20157 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {0.0.3.0 1.1.3.0 26 ------- null} + -t 7.20157 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {0.0.3.0 1.1.3.0 26 ------- null} - -t 7.20157 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {0.0.3.0 1.1.3.0 26 ------- null} h -t 7.20157 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.20317 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {0.0.3.0 1.1.3.0 27 ------- null} + -t 7.20317 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {0.0.3.0 1.1.3.0 27 ------- null} - -t 7.20317 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {0.0.3.0 1.1.3.0 27 ------- null} h -t 7.20317 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.20477 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {0.0.3.0 1.1.3.0 28 ------- null} + -t 7.20477 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {0.0.3.0 1.1.3.0 28 ------- null} - -t 7.20477 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {0.0.3.0 1.1.3.0 28 ------- null} h -t 7.20477 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.20637 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {0.0.3.0 1.1.3.0 29 ------- null} + -t 7.20637 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {0.0.3.0 1.1.3.0 29 ------- null} - -t 7.20637 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {0.0.3.0 1.1.3.0 29 ------- null} h -t 7.20637 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.20797 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {0.0.3.0 1.1.3.0 30 ------- null} + -t 7.20797 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {0.0.3.0 1.1.3.0 30 ------- null} - -t 7.20797 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {0.0.3.0 1.1.3.0 30 ------- null} h -t 7.20797 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.26557 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {0.0.3.0 1.1.3.0 15 ------- null} + -t 7.26557 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {0.0.3.0 1.1.3.0 15 ------- null} - -t 7.26557 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {0.0.3.0 1.1.3.0 15 ------- null} h -t 7.26557 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.26717 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {0.0.3.0 1.1.3.0 16 ------- null} + -t 7.26717 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {0.0.3.0 1.1.3.0 16 ------- null} - -t 7.26717 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {0.0.3.0 1.1.3.0 16 ------- null} h -t 7.26717 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.26877 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {0.0.3.0 1.1.3.0 17 ------- null} + -t 7.26877 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {0.0.3.0 1.1.3.0 17 ------- null} - -t 7.26877 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {0.0.3.0 1.1.3.0 17 ------- null} h -t 7.26877 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.27037 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {0.0.3.0 1.1.3.0 18 ------- null} + -t 7.27037 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {0.0.3.0 1.1.3.0 18 ------- null} - -t 7.27037 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {0.0.3.0 1.1.3.0 18 ------- null} h -t 7.27037 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.27197 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {0.0.3.0 1.1.3.0 19 ------- null} + -t 7.27197 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {0.0.3.0 1.1.3.0 19 ------- null} - -t 7.27197 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {0.0.3.0 1.1.3.0 19 ------- null} h -t 7.27197 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.27357 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {0.0.3.0 1.1.3.0 20 ------- null} + -t 7.27357 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {0.0.3.0 1.1.3.0 20 ------- null} - -t 7.27357 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {0.0.3.0 1.1.3.0 20 ------- null} h -t 7.27357 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.27517 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {0.0.3.0 1.1.3.0 21 ------- null} + -t 7.27517 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {0.0.3.0 1.1.3.0 21 ------- null} - -t 7.27517 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {0.0.3.0 1.1.3.0 21 ------- null} h -t 7.27517 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.27677 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {0.0.3.0 1.1.3.0 22 ------- null} + -t 7.27677 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {0.0.3.0 1.1.3.0 22 ------- null} - -t 7.27677 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {0.0.3.0 1.1.3.0 22 ------- null} h -t 7.27677 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.27837 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {0.0.3.0 1.1.3.0 23 ------- null} + -t 7.27837 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {0.0.3.0 1.1.3.0 23 ------- null} - -t 7.27837 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {0.0.3.0 1.1.3.0 23 ------- null} h -t 7.27837 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.27997 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {0.0.3.0 1.1.3.0 24 ------- null} + -t 7.27997 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {0.0.3.0 1.1.3.0 24 ------- null} - -t 7.27997 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {0.0.3.0 1.1.3.0 24 ------- null} h -t 7.27997 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.28157 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {0.0.3.0 1.1.3.0 25 ------- null} + -t 7.28157 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {0.0.3.0 1.1.3.0 25 ------- null} - -t 7.28157 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {0.0.3.0 1.1.3.0 25 ------- null} h -t 7.28157 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.28317 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {0.0.3.0 1.1.3.0 26 ------- null} + -t 7.28317 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {0.0.3.0 1.1.3.0 26 ------- null} - -t 7.28317 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {0.0.3.0 1.1.3.0 26 ------- null} h -t 7.28317 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.28477 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {0.0.3.0 1.1.3.0 27 ------- null} + -t 7.28477 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {0.0.3.0 1.1.3.0 27 ------- null} - -t 7.28477 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {0.0.3.0 1.1.3.0 27 ------- null} h -t 7.28477 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.28637 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {0.0.3.0 1.1.3.0 28 ------- null} + -t 7.28637 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {0.0.3.0 1.1.3.0 28 ------- null} - -t 7.28637 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {0.0.3.0 1.1.3.0 28 ------- null} h -t 7.28637 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.28797 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {0.0.3.0 1.1.3.0 29 ------- null} + -t 7.28797 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {0.0.3.0 1.1.3.0 29 ------- null} - -t 7.28797 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {0.0.3.0 1.1.3.0 29 ------- null} h -t 7.28797 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.28957 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {0.0.3.0 1.1.3.0 30 ------- null} + -t 7.28957 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {0.0.3.0 1.1.3.0 30 ------- null} - -t 7.28957 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {0.0.3.0 1.1.3.0 30 ------- null} h -t 7.28957 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.34717 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {0.0.3.0 1.1.3.0 15 ------- null} + -t 7.34717 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {0.0.3.0 1.1.3.0 15 ------- null} - -t 7.34717 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {0.0.3.0 1.1.3.0 15 ------- null} h -t 7.34717 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.34877 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {0.0.3.0 1.1.3.0 16 ------- null} + -t 7.34877 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {0.0.3.0 1.1.3.0 16 ------- null} - -t 7.34877 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {0.0.3.0 1.1.3.0 16 ------- null} h -t 7.34877 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.35037 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {0.0.3.0 1.1.3.0 17 ------- null} + -t 7.35037 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {0.0.3.0 1.1.3.0 17 ------- null} - -t 7.35037 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {0.0.3.0 1.1.3.0 17 ------- null} h -t 7.35037 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.35197 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {0.0.3.0 1.1.3.0 18 ------- null} + -t 7.35197 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {0.0.3.0 1.1.3.0 18 ------- null} - -t 7.35197 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {0.0.3.0 1.1.3.0 18 ------- null} h -t 7.35197 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.35357 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {0.0.3.0 1.1.3.0 19 ------- null} + -t 7.35357 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {0.0.3.0 1.1.3.0 19 ------- null} - -t 7.35357 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {0.0.3.0 1.1.3.0 19 ------- null} h -t 7.35357 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.35517 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {0.0.3.0 1.1.3.0 20 ------- null} + -t 7.35517 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {0.0.3.0 1.1.3.0 20 ------- null} - -t 7.35517 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {0.0.3.0 1.1.3.0 20 ------- null} h -t 7.35517 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.35677 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {0.0.3.0 1.1.3.0 21 ------- null} + -t 7.35677 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {0.0.3.0 1.1.3.0 21 ------- null} - -t 7.35677 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {0.0.3.0 1.1.3.0 21 ------- null} h -t 7.35677 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.35837 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {0.0.3.0 1.1.3.0 22 ------- null} + -t 7.35837 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {0.0.3.0 1.1.3.0 22 ------- null} - -t 7.35837 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {0.0.3.0 1.1.3.0 22 ------- null} h -t 7.35837 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.35997 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {0.0.3.0 1.1.3.0 23 ------- null} + -t 7.35997 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {0.0.3.0 1.1.3.0 23 ------- null} - -t 7.35997 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {0.0.3.0 1.1.3.0 23 ------- null} h -t 7.35997 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.36157 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {0.0.3.0 1.1.3.0 24 ------- null} + -t 7.36157 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {0.0.3.0 1.1.3.0 24 ------- null} - -t 7.36157 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {0.0.3.0 1.1.3.0 24 ------- null} h -t 7.36157 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.36317 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {0.0.3.0 1.1.3.0 25 ------- null} + -t 7.36317 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {0.0.3.0 1.1.3.0 25 ------- null} - -t 7.36317 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {0.0.3.0 1.1.3.0 25 ------- null} h -t 7.36317 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.36477 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {0.0.3.0 1.1.3.0 26 ------- null} + -t 7.36477 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {0.0.3.0 1.1.3.0 26 ------- null} - -t 7.36477 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {0.0.3.0 1.1.3.0 26 ------- null} h -t 7.36477 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.36637 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {0.0.3.0 1.1.3.0 27 ------- null} + -t 7.36637 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {0.0.3.0 1.1.3.0 27 ------- null} - -t 7.36637 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {0.0.3.0 1.1.3.0 27 ------- null} h -t 7.36637 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.36797 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {0.0.3.0 1.1.3.0 28 ------- null} + -t 7.36797 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {0.0.3.0 1.1.3.0 28 ------- null} - -t 7.36797 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {0.0.3.0 1.1.3.0 28 ------- null} h -t 7.36797 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.36957 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {0.0.3.0 1.1.3.0 29 ------- null} + -t 7.36957 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {0.0.3.0 1.1.3.0 29 ------- null} - -t 7.36957 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {0.0.3.0 1.1.3.0 29 ------- null} h -t 7.36957 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.37117 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {0.0.3.0 1.1.3.0 30 ------- null} + -t 7.37117 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {0.0.3.0 1.1.3.0 30 ------- null} - -t 7.37117 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {0.0.3.0 1.1.3.0 30 ------- null} h -t 7.37117 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 7.40877 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {0.0.3.0 1.1.3.0 15 ------- null} + -t 7.40877 -s 21 -d 28 -p ack -e 40 -c 0 -i 46 -a 1 -x {1.1.3.0 0.0.3.0 15 ------- null} - -t 7.40877 -s 21 -d 28 -p ack -e 40 -c 0 -i 46 -a 1 -x {1.1.3.0 0.0.3.0 15 ------- null} h -t 7.40877 -s 21 -d 28 -p ack -e 40 -c 0 -i 46 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 7.41037 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {0.0.3.0 1.1.3.0 16 ------- null} + -t 7.41037 -s 21 -d 28 -p ack -e 40 -c 0 -i 47 -a 1 -x {1.1.3.0 0.0.3.0 16 ------- null} - -t 7.41037 -s 21 -d 28 -p ack -e 40 -c 0 -i 47 -a 1 -x {1.1.3.0 0.0.3.0 16 ------- null} h -t 7.41037 -s 21 -d 28 -p ack -e 40 -c 0 -i 47 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 7.41197 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {0.0.3.0 1.1.3.0 17 ------- null} + -t 7.41197 -s 21 -d 28 -p ack -e 40 -c 0 -i 48 -a 1 -x {1.1.3.0 0.0.3.0 17 ------- null} - -t 7.41197 -s 21 -d 28 -p ack -e 40 -c 0 -i 48 -a 1 -x {1.1.3.0 0.0.3.0 17 ------- null} h -t 7.41197 -s 21 -d 28 -p ack -e 40 -c 0 -i 48 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 7.41357 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {0.0.3.0 1.1.3.0 18 ------- null} + -t 7.41357 -s 21 -d 28 -p ack -e 40 -c 0 -i 49 -a 1 -x {1.1.3.0 0.0.3.0 18 ------- null} - -t 7.41357 -s 21 -d 28 -p ack -e 40 -c 0 -i 49 -a 1 -x {1.1.3.0 0.0.3.0 18 ------- null} h -t 7.41357 -s 21 -d 28 -p ack -e 40 -c 0 -i 49 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 7.41517 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {0.0.3.0 1.1.3.0 19 ------- null} + -t 7.41517 -s 21 -d 28 -p ack -e 40 -c 0 -i 50 -a 1 -x {1.1.3.0 0.0.3.0 19 ------- null} - -t 7.41517 -s 21 -d 28 -p ack -e 40 -c 0 -i 50 -a 1 -x {1.1.3.0 0.0.3.0 19 ------- null} h -t 7.41517 -s 21 -d 28 -p ack -e 40 -c 0 -i 50 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 7.41677 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {0.0.3.0 1.1.3.0 20 ------- null} + -t 7.41677 -s 21 -d 28 -p ack -e 40 -c 0 -i 51 -a 1 -x {1.1.3.0 0.0.3.0 20 ------- null} - -t 7.41677 -s 21 -d 28 -p ack -e 40 -c 0 -i 51 -a 1 -x {1.1.3.0 0.0.3.0 20 ------- null} h -t 7.41677 -s 21 -d 28 -p ack -e 40 -c 0 -i 51 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 7.41837 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {0.0.3.0 1.1.3.0 21 ------- null} + -t 7.41837 -s 21 -d 28 -p ack -e 40 -c 0 -i 52 -a 1 -x {1.1.3.0 0.0.3.0 21 ------- null} - -t 7.41837 -s 21 -d 28 -p ack -e 40 -c 0 -i 52 -a 1 -x {1.1.3.0 0.0.3.0 21 ------- null} h -t 7.41837 -s 21 -d 28 -p ack -e 40 -c 0 -i 52 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 7.41997 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {0.0.3.0 1.1.3.0 22 ------- null} + -t 7.41997 -s 21 -d 28 -p ack -e 40 -c 0 -i 53 -a 1 -x {1.1.3.0 0.0.3.0 22 ------- null} - -t 7.41997 -s 21 -d 28 -p ack -e 40 -c 0 -i 53 -a 1 -x {1.1.3.0 0.0.3.0 22 ------- null} h -t 7.41997 -s 21 -d 28 -p ack -e 40 -c 0 -i 53 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 7.42157 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {0.0.3.0 1.1.3.0 23 ------- null} + -t 7.42157 -s 21 -d 28 -p ack -e 40 -c 0 -i 54 -a 1 -x {1.1.3.0 0.0.3.0 23 ------- null} - -t 7.42157 -s 21 -d 28 -p ack -e 40 -c 0 -i 54 -a 1 -x {1.1.3.0 0.0.3.0 23 ------- null} h -t 7.42157 -s 21 -d 28 -p ack -e 40 -c 0 -i 54 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 7.42317 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {0.0.3.0 1.1.3.0 24 ------- null} + -t 7.42317 -s 21 -d 28 -p ack -e 40 -c 0 -i 55 -a 1 -x {1.1.3.0 0.0.3.0 24 ------- null} - -t 7.42317 -s 21 -d 28 -p ack -e 40 -c 0 -i 55 -a 1 -x {1.1.3.0 0.0.3.0 24 ------- null} h -t 7.42317 -s 21 -d 28 -p ack -e 40 -c 0 -i 55 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 7.42477 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {0.0.3.0 1.1.3.0 25 ------- null} + -t 7.42477 -s 21 -d 28 -p ack -e 40 -c 0 -i 56 -a 1 -x {1.1.3.0 0.0.3.0 25 ------- null} - -t 7.42477 -s 21 -d 28 -p ack -e 40 -c 0 -i 56 -a 1 -x {1.1.3.0 0.0.3.0 25 ------- null} h -t 7.42477 -s 21 -d 28 -p ack -e 40 -c 0 -i 56 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 7.42637 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {0.0.3.0 1.1.3.0 26 ------- null} + -t 7.42637 -s 21 -d 28 -p ack -e 40 -c 0 -i 57 -a 1 -x {1.1.3.0 0.0.3.0 26 ------- null} - -t 7.42637 -s 21 -d 28 -p ack -e 40 -c 0 -i 57 -a 1 -x {1.1.3.0 0.0.3.0 26 ------- null} h -t 7.42637 -s 21 -d 28 -p ack -e 40 -c 0 -i 57 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 7.42797 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {0.0.3.0 1.1.3.0 27 ------- null} + -t 7.42797 -s 21 -d 28 -p ack -e 40 -c 0 -i 58 -a 1 -x {1.1.3.0 0.0.3.0 27 ------- null} - -t 7.42797 -s 21 -d 28 -p ack -e 40 -c 0 -i 58 -a 1 -x {1.1.3.0 0.0.3.0 27 ------- null} h -t 7.42797 -s 21 -d 28 -p ack -e 40 -c 0 -i 58 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 7.42957 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {0.0.3.0 1.1.3.0 28 ------- null} + -t 7.42957 -s 21 -d 28 -p ack -e 40 -c 0 -i 59 -a 1 -x {1.1.3.0 0.0.3.0 28 ------- null} - -t 7.42957 -s 21 -d 28 -p ack -e 40 -c 0 -i 59 -a 1 -x {1.1.3.0 0.0.3.0 28 ------- null} h -t 7.42957 -s 21 -d 28 -p ack -e 40 -c 0 -i 59 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 7.43117 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {0.0.3.0 1.1.3.0 29 ------- null} + -t 7.43117 -s 21 -d 28 -p ack -e 40 -c 0 -i 60 -a 1 -x {1.1.3.0 0.0.3.0 29 ------- null} - -t 7.43117 -s 21 -d 28 -p ack -e 40 -c 0 -i 60 -a 1 -x {1.1.3.0 0.0.3.0 29 ------- null} h -t 7.43117 -s 21 -d 28 -p ack -e 40 -c 0 -i 60 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 7.43277 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 45 -a 0 -x {0.0.3.0 1.1.3.0 30 ------- null} + -t 7.43277 -s 21 -d 28 -p ack -e 40 -c 0 -i 61 -a 1 -x {1.1.3.0 0.0.3.0 30 ------- null} - -t 7.43277 -s 21 -d 28 -p ack -e 40 -c 0 -i 61 -a 1 -x {1.1.3.0 0.0.3.0 30 ------- null} h -t 7.43277 -s 21 -d 28 -p ack -e 40 -c 0 -i 61 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 7.75883 -s 21 -d 28 -p ack -e 40 -c 0 -i 46 -a 1 -x {1.1.3.0 0.0.3.0 15 ------- null} + -t 7.75883 -s 28 -d 1 -p ack -e 40 -c 0 -i 46 -a 1 -x {1.1.3.0 0.0.3.0 15 ------- null} - -t 7.75883 -s 28 -d 1 -p ack -e 40 -c 0 -i 46 -a 1 -x {1.1.3.0 0.0.3.0 15 ------- null} h -t 7.75883 -s 28 -d 1 -p ack -e 40 -c 0 -i 46 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 7.76043 -s 21 -d 28 -p ack -e 40 -c 0 -i 47 -a 1 -x {1.1.3.0 0.0.3.0 16 ------- null} + -t 7.76043 -s 28 -d 1 -p ack -e 40 -c 0 -i 47 -a 1 -x {1.1.3.0 0.0.3.0 16 ------- null} - -t 7.76043 -s 28 -d 1 -p ack -e 40 -c 0 -i 47 -a 1 -x {1.1.3.0 0.0.3.0 16 ------- null} h -t 7.76043 -s 28 -d 1 -p ack -e 40 -c 0 -i 47 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 7.76203 -s 21 -d 28 -p ack -e 40 -c 0 -i 48 -a 1 -x {1.1.3.0 0.0.3.0 17 ------- null} + -t 7.76203 -s 28 -d 1 -p ack -e 40 -c 0 -i 48 -a 1 -x {1.1.3.0 0.0.3.0 17 ------- null} - -t 7.76203 -s 28 -d 1 -p ack -e 40 -c 0 -i 48 -a 1 -x {1.1.3.0 0.0.3.0 17 ------- null} h -t 7.76203 -s 28 -d 1 -p ack -e 40 -c 0 -i 48 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 7.76363 -s 21 -d 28 -p ack -e 40 -c 0 -i 49 -a 1 -x {1.1.3.0 0.0.3.0 18 ------- null} + -t 7.76363 -s 28 -d 1 -p ack -e 40 -c 0 -i 49 -a 1 -x {1.1.3.0 0.0.3.0 18 ------- null} - -t 7.76363 -s 28 -d 1 -p ack -e 40 -c 0 -i 49 -a 1 -x {1.1.3.0 0.0.3.0 18 ------- null} h -t 7.76363 -s 28 -d 1 -p ack -e 40 -c 0 -i 49 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 7.76523 -s 21 -d 28 -p ack -e 40 -c 0 -i 50 -a 1 -x {1.1.3.0 0.0.3.0 19 ------- null} + -t 7.76523 -s 28 -d 1 -p ack -e 40 -c 0 -i 50 -a 1 -x {1.1.3.0 0.0.3.0 19 ------- null} - -t 7.76523 -s 28 -d 1 -p ack -e 40 -c 0 -i 50 -a 1 -x {1.1.3.0 0.0.3.0 19 ------- null} h -t 7.76523 -s 28 -d 1 -p ack -e 40 -c 0 -i 50 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 7.76683 -s 21 -d 28 -p ack -e 40 -c 0 -i 51 -a 1 -x {1.1.3.0 0.0.3.0 20 ------- null} + -t 7.76683 -s 28 -d 1 -p ack -e 40 -c 0 -i 51 -a 1 -x {1.1.3.0 0.0.3.0 20 ------- null} - -t 7.76683 -s 28 -d 1 -p ack -e 40 -c 0 -i 51 -a 1 -x {1.1.3.0 0.0.3.0 20 ------- null} h -t 7.76683 -s 28 -d 1 -p ack -e 40 -c 0 -i 51 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 7.76843 -s 21 -d 28 -p ack -e 40 -c 0 -i 52 -a 1 -x {1.1.3.0 0.0.3.0 21 ------- null} + -t 7.76843 -s 28 -d 1 -p ack -e 40 -c 0 -i 52 -a 1 -x {1.1.3.0 0.0.3.0 21 ------- null} - -t 7.76843 -s 28 -d 1 -p ack -e 40 -c 0 -i 52 -a 1 -x {1.1.3.0 0.0.3.0 21 ------- null} h -t 7.76843 -s 28 -d 1 -p ack -e 40 -c 0 -i 52 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 7.77003 -s 21 -d 28 -p ack -e 40 -c 0 -i 53 -a 1 -x {1.1.3.0 0.0.3.0 22 ------- null} + -t 7.77003 -s 28 -d 1 -p ack -e 40 -c 0 -i 53 -a 1 -x {1.1.3.0 0.0.3.0 22 ------- null} - -t 7.77003 -s 28 -d 1 -p ack -e 40 -c 0 -i 53 -a 1 -x {1.1.3.0 0.0.3.0 22 ------- null} h -t 7.77003 -s 28 -d 1 -p ack -e 40 -c 0 -i 53 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 7.77163 -s 21 -d 28 -p ack -e 40 -c 0 -i 54 -a 1 -x {1.1.3.0 0.0.3.0 23 ------- null} + -t 7.77163 -s 28 -d 1 -p ack -e 40 -c 0 -i 54 -a 1 -x {1.1.3.0 0.0.3.0 23 ------- null} - -t 7.77163 -s 28 -d 1 -p ack -e 40 -c 0 -i 54 -a 1 -x {1.1.3.0 0.0.3.0 23 ------- null} h -t 7.77163 -s 28 -d 1 -p ack -e 40 -c 0 -i 54 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 7.77323 -s 21 -d 28 -p ack -e 40 -c 0 -i 55 -a 1 -x {1.1.3.0 0.0.3.0 24 ------- null} + -t 7.77323 -s 28 -d 1 -p ack -e 40 -c 0 -i 55 -a 1 -x {1.1.3.0 0.0.3.0 24 ------- null} - -t 7.77323 -s 28 -d 1 -p ack -e 40 -c 0 -i 55 -a 1 -x {1.1.3.0 0.0.3.0 24 ------- null} h -t 7.77323 -s 28 -d 1 -p ack -e 40 -c 0 -i 55 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 7.77483 -s 21 -d 28 -p ack -e 40 -c 0 -i 56 -a 1 -x {1.1.3.0 0.0.3.0 25 ------- null} + -t 7.77483 -s 28 -d 1 -p ack -e 40 -c 0 -i 56 -a 1 -x {1.1.3.0 0.0.3.0 25 ------- null} - -t 7.77483 -s 28 -d 1 -p ack -e 40 -c 0 -i 56 -a 1 -x {1.1.3.0 0.0.3.0 25 ------- null} h -t 7.77483 -s 28 -d 1 -p ack -e 40 -c 0 -i 56 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 7.77643 -s 21 -d 28 -p ack -e 40 -c 0 -i 57 -a 1 -x {1.1.3.0 0.0.3.0 26 ------- null} + -t 7.77643 -s 28 -d 1 -p ack -e 40 -c 0 -i 57 -a 1 -x {1.1.3.0 0.0.3.0 26 ------- null} - -t 7.77643 -s 28 -d 1 -p ack -e 40 -c 0 -i 57 -a 1 -x {1.1.3.0 0.0.3.0 26 ------- null} h -t 7.77643 -s 28 -d 1 -p ack -e 40 -c 0 -i 57 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 7.77803 -s 21 -d 28 -p ack -e 40 -c 0 -i 58 -a 1 -x {1.1.3.0 0.0.3.0 27 ------- null} + -t 7.77803 -s 28 -d 1 -p ack -e 40 -c 0 -i 58 -a 1 -x {1.1.3.0 0.0.3.0 27 ------- null} - -t 7.77803 -s 28 -d 1 -p ack -e 40 -c 0 -i 58 -a 1 -x {1.1.3.0 0.0.3.0 27 ------- null} h -t 7.77803 -s 28 -d 1 -p ack -e 40 -c 0 -i 58 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 7.77963 -s 21 -d 28 -p ack -e 40 -c 0 -i 59 -a 1 -x {1.1.3.0 0.0.3.0 28 ------- null} + -t 7.77963 -s 28 -d 1 -p ack -e 40 -c 0 -i 59 -a 1 -x {1.1.3.0 0.0.3.0 28 ------- null} - -t 7.77963 -s 28 -d 1 -p ack -e 40 -c 0 -i 59 -a 1 -x {1.1.3.0 0.0.3.0 28 ------- null} h -t 7.77963 -s 28 -d 1 -p ack -e 40 -c 0 -i 59 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 7.78123 -s 21 -d 28 -p ack -e 40 -c 0 -i 60 -a 1 -x {1.1.3.0 0.0.3.0 29 ------- null} + -t 7.78123 -s 28 -d 1 -p ack -e 40 -c 0 -i 60 -a 1 -x {1.1.3.0 0.0.3.0 29 ------- null} - -t 7.78123 -s 28 -d 1 -p ack -e 40 -c 0 -i 60 -a 1 -x {1.1.3.0 0.0.3.0 29 ------- null} h -t 7.78123 -s 28 -d 1 -p ack -e 40 -c 0 -i 60 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 7.78283 -s 21 -d 28 -p ack -e 40 -c 0 -i 61 -a 1 -x {1.1.3.0 0.0.3.0 30 ------- null} + -t 7.78283 -s 28 -d 1 -p ack -e 40 -c 0 -i 61 -a 1 -x {1.1.3.0 0.0.3.0 30 ------- null} - -t 7.78283 -s 28 -d 1 -p ack -e 40 -c 0 -i 61 -a 1 -x {1.1.3.0 0.0.3.0 30 ------- null} h -t 7.78283 -s 28 -d 1 -p ack -e 40 -c 0 -i 61 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 8.0589 -s 28 -d 1 -p ack -e 40 -c 0 -i 46 -a 1 -x {1.1.3.0 0.0.3.0 15 ------- null} + -t 8.0589 -s 1 -d 3 -p ack -e 40 -c 0 -i 46 -a 1 -x {1.1.3.0 0.0.3.0 15 ------- null} - -t 8.0589 -s 1 -d 3 -p ack -e 40 -c 0 -i 46 -a 1 -x {1.1.3.0 0.0.3.0 15 ------- null} h -t 8.0589 -s 1 -d 3 -p ack -e 40 -c 0 -i 46 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 8.0605 -s 28 -d 1 -p ack -e 40 -c 0 -i 47 -a 1 -x {1.1.3.0 0.0.3.0 16 ------- null} + -t 8.0605 -s 1 -d 3 -p ack -e 40 -c 0 -i 47 -a 1 -x {1.1.3.0 0.0.3.0 16 ------- null} - -t 8.0605 -s 1 -d 3 -p ack -e 40 -c 0 -i 47 -a 1 -x {1.1.3.0 0.0.3.0 16 ------- null} h -t 8.0605 -s 1 -d 3 -p ack -e 40 -c 0 -i 47 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 8.0621 -s 28 -d 1 -p ack -e 40 -c 0 -i 48 -a 1 -x {1.1.3.0 0.0.3.0 17 ------- null} + -t 8.0621 -s 1 -d 3 -p ack -e 40 -c 0 -i 48 -a 1 -x {1.1.3.0 0.0.3.0 17 ------- null} - -t 8.0621 -s 1 -d 3 -p ack -e 40 -c 0 -i 48 -a 1 -x {1.1.3.0 0.0.3.0 17 ------- null} h -t 8.0621 -s 1 -d 3 -p ack -e 40 -c 0 -i 48 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 8.0637 -s 28 -d 1 -p ack -e 40 -c 0 -i 49 -a 1 -x {1.1.3.0 0.0.3.0 18 ------- null} + -t 8.0637 -s 1 -d 3 -p ack -e 40 -c 0 -i 49 -a 1 -x {1.1.3.0 0.0.3.0 18 ------- null} - -t 8.0637 -s 1 -d 3 -p ack -e 40 -c 0 -i 49 -a 1 -x {1.1.3.0 0.0.3.0 18 ------- null} h -t 8.0637 -s 1 -d 3 -p ack -e 40 -c 0 -i 49 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 8.0653 -s 28 -d 1 -p ack -e 40 -c 0 -i 50 -a 1 -x {1.1.3.0 0.0.3.0 19 ------- null} + -t 8.0653 -s 1 -d 3 -p ack -e 40 -c 0 -i 50 -a 1 -x {1.1.3.0 0.0.3.0 19 ------- null} - -t 8.0653 -s 1 -d 3 -p ack -e 40 -c 0 -i 50 -a 1 -x {1.1.3.0 0.0.3.0 19 ------- null} h -t 8.0653 -s 1 -d 3 -p ack -e 40 -c 0 -i 50 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 8.0669 -s 28 -d 1 -p ack -e 40 -c 0 -i 51 -a 1 -x {1.1.3.0 0.0.3.0 20 ------- null} + -t 8.0669 -s 1 -d 3 -p ack -e 40 -c 0 -i 51 -a 1 -x {1.1.3.0 0.0.3.0 20 ------- null} - -t 8.0669 -s 1 -d 3 -p ack -e 40 -c 0 -i 51 -a 1 -x {1.1.3.0 0.0.3.0 20 ------- null} h -t 8.0669 -s 1 -d 3 -p ack -e 40 -c 0 -i 51 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 8.0685 -s 28 -d 1 -p ack -e 40 -c 0 -i 52 -a 1 -x {1.1.3.0 0.0.3.0 21 ------- null} + -t 8.0685 -s 1 -d 3 -p ack -e 40 -c 0 -i 52 -a 1 -x {1.1.3.0 0.0.3.0 21 ------- null} - -t 8.0685 -s 1 -d 3 -p ack -e 40 -c 0 -i 52 -a 1 -x {1.1.3.0 0.0.3.0 21 ------- null} h -t 8.0685 -s 1 -d 3 -p ack -e 40 -c 0 -i 52 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 8.0701 -s 28 -d 1 -p ack -e 40 -c 0 -i 53 -a 1 -x {1.1.3.0 0.0.3.0 22 ------- null} + -t 8.0701 -s 1 -d 3 -p ack -e 40 -c 0 -i 53 -a 1 -x {1.1.3.0 0.0.3.0 22 ------- null} - -t 8.0701 -s 1 -d 3 -p ack -e 40 -c 0 -i 53 -a 1 -x {1.1.3.0 0.0.3.0 22 ------- null} h -t 8.0701 -s 1 -d 3 -p ack -e 40 -c 0 -i 53 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 8.0717 -s 28 -d 1 -p ack -e 40 -c 0 -i 54 -a 1 -x {1.1.3.0 0.0.3.0 23 ------- null} + -t 8.0717 -s 1 -d 3 -p ack -e 40 -c 0 -i 54 -a 1 -x {1.1.3.0 0.0.3.0 23 ------- null} - -t 8.0717 -s 1 -d 3 -p ack -e 40 -c 0 -i 54 -a 1 -x {1.1.3.0 0.0.3.0 23 ------- null} h -t 8.0717 -s 1 -d 3 -p ack -e 40 -c 0 -i 54 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 8.0733 -s 28 -d 1 -p ack -e 40 -c 0 -i 55 -a 1 -x {1.1.3.0 0.0.3.0 24 ------- null} + -t 8.0733 -s 1 -d 3 -p ack -e 40 -c 0 -i 55 -a 1 -x {1.1.3.0 0.0.3.0 24 ------- null} - -t 8.0733 -s 1 -d 3 -p ack -e 40 -c 0 -i 55 -a 1 -x {1.1.3.0 0.0.3.0 24 ------- null} h -t 8.0733 -s 1 -d 3 -p ack -e 40 -c 0 -i 55 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 8.0749 -s 28 -d 1 -p ack -e 40 -c 0 -i 56 -a 1 -x {1.1.3.0 0.0.3.0 25 ------- null} + -t 8.0749 -s 1 -d 3 -p ack -e 40 -c 0 -i 56 -a 1 -x {1.1.3.0 0.0.3.0 25 ------- null} - -t 8.0749 -s 1 -d 3 -p ack -e 40 -c 0 -i 56 -a 1 -x {1.1.3.0 0.0.3.0 25 ------- null} h -t 8.0749 -s 1 -d 3 -p ack -e 40 -c 0 -i 56 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 8.0765 -s 28 -d 1 -p ack -e 40 -c 0 -i 57 -a 1 -x {1.1.3.0 0.0.3.0 26 ------- null} + -t 8.0765 -s 1 -d 3 -p ack -e 40 -c 0 -i 57 -a 1 -x {1.1.3.0 0.0.3.0 26 ------- null} - -t 8.0765 -s 1 -d 3 -p ack -e 40 -c 0 -i 57 -a 1 -x {1.1.3.0 0.0.3.0 26 ------- null} h -t 8.0765 -s 1 -d 3 -p ack -e 40 -c 0 -i 57 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 8.0781 -s 28 -d 1 -p ack -e 40 -c 0 -i 58 -a 1 -x {1.1.3.0 0.0.3.0 27 ------- null} + -t 8.0781 -s 1 -d 3 -p ack -e 40 -c 0 -i 58 -a 1 -x {1.1.3.0 0.0.3.0 27 ------- null} - -t 8.0781 -s 1 -d 3 -p ack -e 40 -c 0 -i 58 -a 1 -x {1.1.3.0 0.0.3.0 27 ------- null} h -t 8.0781 -s 1 -d 3 -p ack -e 40 -c 0 -i 58 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 8.0797 -s 28 -d 1 -p ack -e 40 -c 0 -i 59 -a 1 -x {1.1.3.0 0.0.3.0 28 ------- null} + -t 8.0797 -s 1 -d 3 -p ack -e 40 -c 0 -i 59 -a 1 -x {1.1.3.0 0.0.3.0 28 ------- null} - -t 8.0797 -s 1 -d 3 -p ack -e 40 -c 0 -i 59 -a 1 -x {1.1.3.0 0.0.3.0 28 ------- null} h -t 8.0797 -s 1 -d 3 -p ack -e 40 -c 0 -i 59 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 8.0813 -s 28 -d 1 -p ack -e 40 -c 0 -i 60 -a 1 -x {1.1.3.0 0.0.3.0 29 ------- null} + -t 8.0813 -s 1 -d 3 -p ack -e 40 -c 0 -i 60 -a 1 -x {1.1.3.0 0.0.3.0 29 ------- null} - -t 8.0813 -s 1 -d 3 -p ack -e 40 -c 0 -i 60 -a 1 -x {1.1.3.0 0.0.3.0 29 ------- null} h -t 8.0813 -s 1 -d 3 -p ack -e 40 -c 0 -i 60 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 8.0829 -s 28 -d 1 -p ack -e 40 -c 0 -i 61 -a 1 -x {1.1.3.0 0.0.3.0 30 ------- null} + -t 8.0829 -s 1 -d 3 -p ack -e 40 -c 0 -i 61 -a 1 -x {1.1.3.0 0.0.3.0 30 ------- null} - -t 8.0829 -s 1 -d 3 -p ack -e 40 -c 0 -i 61 -a 1 -x {1.1.3.0 0.0.3.0 30 ------- null} h -t 8.0829 -s 1 -d 3 -p ack -e 40 -c 0 -i 61 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 8.19896 -s 1 -d 3 -p ack -e 40 -c 0 -i 46 -a 1 -x {1.1.3.0 0.0.3.0 15 ------- null} + -t 8.19896 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {0.0.3.0 1.1.3.0 31 ------- null} - -t 8.19896 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {0.0.3.0 1.1.3.0 31 ------- null} h -t 8.19896 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} + -t 8.19896 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {0.0.3.0 1.1.3.0 32 ------- null} r -t 8.20056 -s 1 -d 3 -p ack -e 40 -c 0 -i 47 -a 1 -x {1.1.3.0 0.0.3.0 16 ------- null} + -t 8.20056 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 64 -a 0 -x {0.0.3.0 1.1.3.0 33 ------- null} + -t 8.20056 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {0.0.3.0 1.1.3.0 34 ------- null} - -t 8.20056 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {0.0.3.0 1.1.3.0 32 ------- null} h -t 8.20056 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.20216 -s 1 -d 3 -p ack -e 40 -c 0 -i 48 -a 1 -x {1.1.3.0 0.0.3.0 17 ------- null} + -t 8.20216 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {0.0.3.0 1.1.3.0 35 ------- null} + -t 8.20216 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {0.0.3.0 1.1.3.0 36 ------- null} - -t 8.20216 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 64 -a 0 -x {0.0.3.0 1.1.3.0 33 ------- null} h -t 8.20216 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 64 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.20376 -s 1 -d 3 -p ack -e 40 -c 0 -i 49 -a 1 -x {1.1.3.0 0.0.3.0 18 ------- null} + -t 8.20376 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {0.0.3.0 1.1.3.0 37 ------- null} + -t 8.20376 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {0.0.3.0 1.1.3.0 38 ------- null} - -t 8.20376 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {0.0.3.0 1.1.3.0 34 ------- null} h -t 8.20376 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.20536 -s 1 -d 3 -p ack -e 40 -c 0 -i 50 -a 1 -x {1.1.3.0 0.0.3.0 19 ------- null} + -t 8.20536 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {0.0.3.0 1.1.3.0 39 ------- null} - -t 8.20536 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {0.0.3.0 1.1.3.0 35 ------- null} h -t 8.20536 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.20696 -s 1 -d 3 -p ack -e 40 -c 0 -i 51 -a 1 -x {1.1.3.0 0.0.3.0 20 ------- null} + -t 8.20696 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {0.0.3.0 1.1.3.0 40 ------- null} - -t 8.20696 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {0.0.3.0 1.1.3.0 36 ------- null} h -t 8.20696 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.20856 -s 1 -d 3 -p ack -e 40 -c 0 -i 52 -a 1 -x {1.1.3.0 0.0.3.0 21 ------- null} + -t 8.20856 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {0.0.3.0 1.1.3.0 41 ------- null} - -t 8.20856 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {0.0.3.0 1.1.3.0 37 ------- null} h -t 8.20856 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.21016 -s 1 -d 3 -p ack -e 40 -c 0 -i 53 -a 1 -x {1.1.3.0 0.0.3.0 22 ------- null} + -t 8.21016 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {0.0.3.0 1.1.3.0 42 ------- null} - -t 8.21016 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {0.0.3.0 1.1.3.0 38 ------- null} h -t 8.21016 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.21176 -s 1 -d 3 -p ack -e 40 -c 0 -i 54 -a 1 -x {1.1.3.0 0.0.3.0 23 ------- null} + -t 8.21176 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 74 -a 0 -x {0.0.3.0 1.1.3.0 43 ------- null} - -t 8.21176 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {0.0.3.0 1.1.3.0 39 ------- null} h -t 8.21176 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.21336 -s 1 -d 3 -p ack -e 40 -c 0 -i 55 -a 1 -x {1.1.3.0 0.0.3.0 24 ------- null} + -t 8.21336 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {0.0.3.0 1.1.3.0 44 ------- null} - -t 8.21336 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {0.0.3.0 1.1.3.0 40 ------- null} h -t 8.21336 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.21496 -s 1 -d 3 -p ack -e 40 -c 0 -i 56 -a 1 -x {1.1.3.0 0.0.3.0 25 ------- null} + -t 8.21496 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {0.0.3.0 1.1.3.0 45 ------- null} - -t 8.21496 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {0.0.3.0 1.1.3.0 41 ------- null} h -t 8.21496 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.21656 -s 1 -d 3 -p ack -e 40 -c 0 -i 57 -a 1 -x {1.1.3.0 0.0.3.0 26 ------- null} + -t 8.21656 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {0.0.3.0 1.1.3.0 46 ------- null} - -t 8.21656 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {0.0.3.0 1.1.3.0 42 ------- null} h -t 8.21656 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.21816 -s 1 -d 3 -p ack -e 40 -c 0 -i 58 -a 1 -x {1.1.3.0 0.0.3.0 27 ------- null} + -t 8.21816 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 78 -a 0 -x {0.0.3.0 1.1.3.0 47 ------- null} - -t 8.21816 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 74 -a 0 -x {0.0.3.0 1.1.3.0 43 ------- null} h -t 8.21816 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 74 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.21976 -s 1 -d 3 -p ack -e 40 -c 0 -i 59 -a 1 -x {1.1.3.0 0.0.3.0 28 ------- null} + -t 8.21976 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {0.0.3.0 1.1.3.0 48 ------- null} - -t 8.21976 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {0.0.3.0 1.1.3.0 44 ------- null} h -t 8.21976 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.22136 -s 1 -d 3 -p ack -e 40 -c 0 -i 60 -a 1 -x {1.1.3.0 0.0.3.0 29 ------- null} + -t 8.22136 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 80 -a 0 -x {0.0.3.0 1.1.3.0 49 ------- null} - -t 8.22136 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {0.0.3.0 1.1.3.0 45 ------- null} h -t 8.22136 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.22296 -s 1 -d 3 -p ack -e 40 -c 0 -i 61 -a 1 -x {1.1.3.0 0.0.3.0 30 ------- null} + -t 8.22296 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {0.0.3.0 1.1.3.0 50 ------- null} - -t 8.22296 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {0.0.3.0 1.1.3.0 46 ------- null} h -t 8.22296 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} - -t 8.22456 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 78 -a 0 -x {0.0.3.0 1.1.3.0 47 ------- null} h -t 8.22456 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 78 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} - -t 8.22616 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {0.0.3.0 1.1.3.0 48 ------- null} h -t 8.22616 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} - -t 8.22776 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 80 -a 0 -x {0.0.3.0 1.1.3.0 49 ------- null} h -t 8.22776 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 80 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} - -t 8.22936 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {0.0.3.0 1.1.3.0 50 ------- null} h -t 8.22936 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.36056 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {0.0.3.0 1.1.3.0 31 ------- null} + -t 8.36056 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {0.0.3.0 1.1.3.0 31 ------- null} - -t 8.36056 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {0.0.3.0 1.1.3.0 31 ------- null} h -t 8.36056 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.36216 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {0.0.3.0 1.1.3.0 32 ------- null} + -t 8.36216 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {0.0.3.0 1.1.3.0 32 ------- null} - -t 8.36216 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {0.0.3.0 1.1.3.0 32 ------- null} h -t 8.36216 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.36376 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 64 -a 0 -x {0.0.3.0 1.1.3.0 33 ------- null} + -t 8.36376 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 64 -a 0 -x {0.0.3.0 1.1.3.0 33 ------- null} - -t 8.36376 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 64 -a 0 -x {0.0.3.0 1.1.3.0 33 ------- null} h -t 8.36376 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 64 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.36536 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {0.0.3.0 1.1.3.0 34 ------- null} + -t 8.36536 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {0.0.3.0 1.1.3.0 34 ------- null} - -t 8.36536 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {0.0.3.0 1.1.3.0 34 ------- null} h -t 8.36536 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.36696 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {0.0.3.0 1.1.3.0 35 ------- null} + -t 8.36696 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {0.0.3.0 1.1.3.0 35 ------- null} - -t 8.36696 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {0.0.3.0 1.1.3.0 35 ------- null} h -t 8.36696 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.36856 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {0.0.3.0 1.1.3.0 36 ------- null} + -t 8.36856 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {0.0.3.0 1.1.3.0 36 ------- null} - -t 8.36856 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {0.0.3.0 1.1.3.0 36 ------- null} h -t 8.36856 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.37016 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {0.0.3.0 1.1.3.0 37 ------- null} + -t 8.37016 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {0.0.3.0 1.1.3.0 37 ------- null} - -t 8.37016 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {0.0.3.0 1.1.3.0 37 ------- null} h -t 8.37016 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.37176 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {0.0.3.0 1.1.3.0 38 ------- null} + -t 8.37176 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {0.0.3.0 1.1.3.0 38 ------- null} - -t 8.37176 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {0.0.3.0 1.1.3.0 38 ------- null} h -t 8.37176 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.37336 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {0.0.3.0 1.1.3.0 39 ------- null} + -t 8.37336 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {0.0.3.0 1.1.3.0 39 ------- null} - -t 8.37336 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {0.0.3.0 1.1.3.0 39 ------- null} h -t 8.37336 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.37496 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {0.0.3.0 1.1.3.0 40 ------- null} + -t 8.37496 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {0.0.3.0 1.1.3.0 40 ------- null} - -t 8.37496 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {0.0.3.0 1.1.3.0 40 ------- null} h -t 8.37496 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.37656 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {0.0.3.0 1.1.3.0 41 ------- null} + -t 8.37656 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {0.0.3.0 1.1.3.0 41 ------- null} - -t 8.37656 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {0.0.3.0 1.1.3.0 41 ------- null} h -t 8.37656 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.37816 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {0.0.3.0 1.1.3.0 42 ------- null} + -t 8.37816 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {0.0.3.0 1.1.3.0 42 ------- null} - -t 8.37816 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {0.0.3.0 1.1.3.0 42 ------- null} h -t 8.37816 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.37976 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 74 -a 0 -x {0.0.3.0 1.1.3.0 43 ------- null} + -t 8.37976 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 74 -a 0 -x {0.0.3.0 1.1.3.0 43 ------- null} - -t 8.37976 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 74 -a 0 -x {0.0.3.0 1.1.3.0 43 ------- null} h -t 8.37976 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 74 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.38136 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {0.0.3.0 1.1.3.0 44 ------- null} + -t 8.38136 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {0.0.3.0 1.1.3.0 44 ------- null} - -t 8.38136 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {0.0.3.0 1.1.3.0 44 ------- null} h -t 8.38136 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.38296 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {0.0.3.0 1.1.3.0 45 ------- null} + -t 8.38296 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {0.0.3.0 1.1.3.0 45 ------- null} - -t 8.38296 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {0.0.3.0 1.1.3.0 45 ------- null} h -t 8.38296 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.38456 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {0.0.3.0 1.1.3.0 46 ------- null} + -t 8.38456 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {0.0.3.0 1.1.3.0 46 ------- null} - -t 8.38456 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {0.0.3.0 1.1.3.0 46 ------- null} h -t 8.38456 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.38616 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 78 -a 0 -x {0.0.3.0 1.1.3.0 47 ------- null} + -t 8.38616 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 78 -a 0 -x {0.0.3.0 1.1.3.0 47 ------- null} - -t 8.38616 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 78 -a 0 -x {0.0.3.0 1.1.3.0 47 ------- null} h -t 8.38616 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 78 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.38776 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {0.0.3.0 1.1.3.0 48 ------- null} + -t 8.38776 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {0.0.3.0 1.1.3.0 48 ------- null} - -t 8.38776 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {0.0.3.0 1.1.3.0 48 ------- null} h -t 8.38776 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.38936 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 80 -a 0 -x {0.0.3.0 1.1.3.0 49 ------- null} + -t 8.38936 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 80 -a 0 -x {0.0.3.0 1.1.3.0 49 ------- null} - -t 8.38936 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 80 -a 0 -x {0.0.3.0 1.1.3.0 49 ------- null} h -t 8.38936 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 80 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.39096 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {0.0.3.0 1.1.3.0 50 ------- null} + -t 8.39096 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {0.0.3.0 1.1.3.0 50 ------- null} - -t 8.39096 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {0.0.3.0 1.1.3.0 50 ------- null} h -t 8.39096 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.66216 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {0.0.3.0 1.1.3.0 31 ------- null} + -t 8.66216 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {0.0.3.0 1.1.3.0 31 ------- null} - -t 8.66216 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {0.0.3.0 1.1.3.0 31 ------- null} h -t 8.66216 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.66376 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {0.0.3.0 1.1.3.0 32 ------- null} + -t 8.66376 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {0.0.3.0 1.1.3.0 32 ------- null} - -t 8.66376 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {0.0.3.0 1.1.3.0 32 ------- null} h -t 8.66376 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.66536 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 64 -a 0 -x {0.0.3.0 1.1.3.0 33 ------- null} + -t 8.66536 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 64 -a 0 -x {0.0.3.0 1.1.3.0 33 ------- null} - -t 8.66536 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 64 -a 0 -x {0.0.3.0 1.1.3.0 33 ------- null} h -t 8.66536 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 64 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.66696 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {0.0.3.0 1.1.3.0 34 ------- null} + -t 8.66696 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {0.0.3.0 1.1.3.0 34 ------- null} - -t 8.66696 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {0.0.3.0 1.1.3.0 34 ------- null} h -t 8.66696 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.66856 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {0.0.3.0 1.1.3.0 35 ------- null} + -t 8.66856 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {0.0.3.0 1.1.3.0 35 ------- null} - -t 8.66856 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {0.0.3.0 1.1.3.0 35 ------- null} h -t 8.66856 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.67016 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {0.0.3.0 1.1.3.0 36 ------- null} + -t 8.67016 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {0.0.3.0 1.1.3.0 36 ------- null} - -t 8.67016 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {0.0.3.0 1.1.3.0 36 ------- null} h -t 8.67016 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.67176 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {0.0.3.0 1.1.3.0 37 ------- null} + -t 8.67176 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {0.0.3.0 1.1.3.0 37 ------- null} - -t 8.67176 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {0.0.3.0 1.1.3.0 37 ------- null} h -t 8.67176 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.67336 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {0.0.3.0 1.1.3.0 38 ------- null} + -t 8.67336 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {0.0.3.0 1.1.3.0 38 ------- null} - -t 8.67336 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {0.0.3.0 1.1.3.0 38 ------- null} h -t 8.67336 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.67496 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {0.0.3.0 1.1.3.0 39 ------- null} + -t 8.67496 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {0.0.3.0 1.1.3.0 39 ------- null} - -t 8.67496 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {0.0.3.0 1.1.3.0 39 ------- null} h -t 8.67496 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.67656 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {0.0.3.0 1.1.3.0 40 ------- null} + -t 8.67656 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {0.0.3.0 1.1.3.0 40 ------- null} - -t 8.67656 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {0.0.3.0 1.1.3.0 40 ------- null} h -t 8.67656 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.67816 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {0.0.3.0 1.1.3.0 41 ------- null} + -t 8.67816 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {0.0.3.0 1.1.3.0 41 ------- null} - -t 8.67816 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {0.0.3.0 1.1.3.0 41 ------- null} h -t 8.67816 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.67976 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {0.0.3.0 1.1.3.0 42 ------- null} + -t 8.67976 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {0.0.3.0 1.1.3.0 42 ------- null} - -t 8.67976 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {0.0.3.0 1.1.3.0 42 ------- null} h -t 8.67976 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.68136 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 74 -a 0 -x {0.0.3.0 1.1.3.0 43 ------- null} + -t 8.68136 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 74 -a 0 -x {0.0.3.0 1.1.3.0 43 ------- null} - -t 8.68136 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 74 -a 0 -x {0.0.3.0 1.1.3.0 43 ------- null} h -t 8.68136 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 74 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.68296 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {0.0.3.0 1.1.3.0 44 ------- null} + -t 8.68296 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {0.0.3.0 1.1.3.0 44 ------- null} - -t 8.68296 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {0.0.3.0 1.1.3.0 44 ------- null} h -t 8.68296 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.68456 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {0.0.3.0 1.1.3.0 45 ------- null} + -t 8.68456 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {0.0.3.0 1.1.3.0 45 ------- null} - -t 8.68456 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {0.0.3.0 1.1.3.0 45 ------- null} h -t 8.68456 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.68616 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {0.0.3.0 1.1.3.0 46 ------- null} + -t 8.68616 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {0.0.3.0 1.1.3.0 46 ------- null} - -t 8.68616 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {0.0.3.0 1.1.3.0 46 ------- null} h -t 8.68616 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.68776 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 78 -a 0 -x {0.0.3.0 1.1.3.0 47 ------- null} + -t 8.68776 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 78 -a 0 -x {0.0.3.0 1.1.3.0 47 ------- null} - -t 8.68776 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 78 -a 0 -x {0.0.3.0 1.1.3.0 47 ------- null} h -t 8.68776 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 78 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.68936 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {0.0.3.0 1.1.3.0 48 ------- null} + -t 8.68936 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {0.0.3.0 1.1.3.0 48 ------- null} - -t 8.68936 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {0.0.3.0 1.1.3.0 48 ------- null} h -t 8.68936 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.69096 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 80 -a 0 -x {0.0.3.0 1.1.3.0 49 ------- null} + -t 8.69096 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 80 -a 0 -x {0.0.3.0 1.1.3.0 49 ------- null} - -t 8.69096 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 80 -a 0 -x {0.0.3.0 1.1.3.0 49 ------- null} h -t 8.69096 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 80 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.69256 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {0.0.3.0 1.1.3.0 50 ------- null} + -t 8.69256 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {0.0.3.0 1.1.3.0 50 ------- null} - -t 8.69256 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {0.0.3.0 1.1.3.0 50 ------- null} h -t 8.69256 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.76376 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {0.0.3.0 1.1.3.0 31 ------- null} + -t 8.76376 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {0.0.3.0 1.1.3.0 31 ------- null} - -t 8.76376 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {0.0.3.0 1.1.3.0 31 ------- null} h -t 8.76376 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.76536 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {0.0.3.0 1.1.3.0 32 ------- null} + -t 8.76536 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {0.0.3.0 1.1.3.0 32 ------- null} - -t 8.76536 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {0.0.3.0 1.1.3.0 32 ------- null} h -t 8.76536 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.76696 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 64 -a 0 -x {0.0.3.0 1.1.3.0 33 ------- null} + -t 8.76696 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 64 -a 0 -x {0.0.3.0 1.1.3.0 33 ------- null} - -t 8.76696 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 64 -a 0 -x {0.0.3.0 1.1.3.0 33 ------- null} h -t 8.76696 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 64 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.76856 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {0.0.3.0 1.1.3.0 34 ------- null} + -t 8.76856 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {0.0.3.0 1.1.3.0 34 ------- null} - -t 8.76856 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {0.0.3.0 1.1.3.0 34 ------- null} h -t 8.76856 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.77016 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {0.0.3.0 1.1.3.0 35 ------- null} + -t 8.77016 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {0.0.3.0 1.1.3.0 35 ------- null} - -t 8.77016 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {0.0.3.0 1.1.3.0 35 ------- null} h -t 8.77016 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.77176 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {0.0.3.0 1.1.3.0 36 ------- null} + -t 8.77176 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {0.0.3.0 1.1.3.0 36 ------- null} - -t 8.77176 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {0.0.3.0 1.1.3.0 36 ------- null} h -t 8.77176 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.77336 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {0.0.3.0 1.1.3.0 37 ------- null} + -t 8.77336 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {0.0.3.0 1.1.3.0 37 ------- null} - -t 8.77336 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {0.0.3.0 1.1.3.0 37 ------- null} h -t 8.77336 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.77496 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {0.0.3.0 1.1.3.0 38 ------- null} + -t 8.77496 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {0.0.3.0 1.1.3.0 38 ------- null} - -t 8.77496 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {0.0.3.0 1.1.3.0 38 ------- null} h -t 8.77496 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.77656 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {0.0.3.0 1.1.3.0 39 ------- null} + -t 8.77656 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {0.0.3.0 1.1.3.0 39 ------- null} - -t 8.77656 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {0.0.3.0 1.1.3.0 39 ------- null} h -t 8.77656 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.77816 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {0.0.3.0 1.1.3.0 40 ------- null} + -t 8.77816 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {0.0.3.0 1.1.3.0 40 ------- null} - -t 8.77816 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {0.0.3.0 1.1.3.0 40 ------- null} h -t 8.77816 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.77976 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {0.0.3.0 1.1.3.0 41 ------- null} + -t 8.77976 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {0.0.3.0 1.1.3.0 41 ------- null} - -t 8.77976 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {0.0.3.0 1.1.3.0 41 ------- null} h -t 8.77976 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.78136 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {0.0.3.0 1.1.3.0 42 ------- null} + -t 8.78136 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {0.0.3.0 1.1.3.0 42 ------- null} - -t 8.78136 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {0.0.3.0 1.1.3.0 42 ------- null} h -t 8.78136 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.78296 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 74 -a 0 -x {0.0.3.0 1.1.3.0 43 ------- null} + -t 8.78296 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 74 -a 0 -x {0.0.3.0 1.1.3.0 43 ------- null} - -t 8.78296 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 74 -a 0 -x {0.0.3.0 1.1.3.0 43 ------- null} h -t 8.78296 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 74 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.78456 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {0.0.3.0 1.1.3.0 44 ------- null} + -t 8.78456 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {0.0.3.0 1.1.3.0 44 ------- null} - -t 8.78456 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {0.0.3.0 1.1.3.0 44 ------- null} h -t 8.78456 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.78616 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {0.0.3.0 1.1.3.0 45 ------- null} + -t 8.78616 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {0.0.3.0 1.1.3.0 45 ------- null} - -t 8.78616 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {0.0.3.0 1.1.3.0 45 ------- null} h -t 8.78616 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.78776 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {0.0.3.0 1.1.3.0 46 ------- null} + -t 8.78776 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {0.0.3.0 1.1.3.0 46 ------- null} - -t 8.78776 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {0.0.3.0 1.1.3.0 46 ------- null} h -t 8.78776 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.78936 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 78 -a 0 -x {0.0.3.0 1.1.3.0 47 ------- null} + -t 8.78936 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 78 -a 0 -x {0.0.3.0 1.1.3.0 47 ------- null} - -t 8.78936 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 78 -a 0 -x {0.0.3.0 1.1.3.0 47 ------- null} h -t 8.78936 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 78 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.79096 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {0.0.3.0 1.1.3.0 48 ------- null} + -t 8.79096 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {0.0.3.0 1.1.3.0 48 ------- null} - -t 8.79096 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {0.0.3.0 1.1.3.0 48 ------- null} h -t 8.79096 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.79256 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 80 -a 0 -x {0.0.3.0 1.1.3.0 49 ------- null} + -t 8.79256 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 80 -a 0 -x {0.0.3.0 1.1.3.0 49 ------- null} - -t 8.79256 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 80 -a 0 -x {0.0.3.0 1.1.3.0 49 ------- null} h -t 8.79256 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 80 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.79416 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {0.0.3.0 1.1.3.0 50 ------- null} + -t 8.79416 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {0.0.3.0 1.1.3.0 50 ------- null} - -t 8.79416 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {0.0.3.0 1.1.3.0 50 ------- null} h -t 8.79416 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.84536 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {0.0.3.0 1.1.3.0 31 ------- null} + -t 8.84536 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {0.0.3.0 1.1.3.0 31 ------- null} - -t 8.84536 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {0.0.3.0 1.1.3.0 31 ------- null} h -t 8.84536 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.84696 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {0.0.3.0 1.1.3.0 32 ------- null} + -t 8.84696 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {0.0.3.0 1.1.3.0 32 ------- null} - -t 8.84696 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {0.0.3.0 1.1.3.0 32 ------- null} h -t 8.84696 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.84856 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 64 -a 0 -x {0.0.3.0 1.1.3.0 33 ------- null} + -t 8.84856 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 64 -a 0 -x {0.0.3.0 1.1.3.0 33 ------- null} - -t 8.84856 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 64 -a 0 -x {0.0.3.0 1.1.3.0 33 ------- null} h -t 8.84856 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 64 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.85016 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {0.0.3.0 1.1.3.0 34 ------- null} + -t 8.85016 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {0.0.3.0 1.1.3.0 34 ------- null} - -t 8.85016 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {0.0.3.0 1.1.3.0 34 ------- null} h -t 8.85016 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.85176 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {0.0.3.0 1.1.3.0 35 ------- null} + -t 8.85176 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {0.0.3.0 1.1.3.0 35 ------- null} - -t 8.85176 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {0.0.3.0 1.1.3.0 35 ------- null} h -t 8.85176 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.85336 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {0.0.3.0 1.1.3.0 36 ------- null} + -t 8.85336 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {0.0.3.0 1.1.3.0 36 ------- null} - -t 8.85336 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {0.0.3.0 1.1.3.0 36 ------- null} h -t 8.85336 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.85496 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {0.0.3.0 1.1.3.0 37 ------- null} + -t 8.85496 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {0.0.3.0 1.1.3.0 37 ------- null} - -t 8.85496 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {0.0.3.0 1.1.3.0 37 ------- null} h -t 8.85496 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.85656 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {0.0.3.0 1.1.3.0 38 ------- null} + -t 8.85656 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {0.0.3.0 1.1.3.0 38 ------- null} - -t 8.85656 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {0.0.3.0 1.1.3.0 38 ------- null} h -t 8.85656 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.85816 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {0.0.3.0 1.1.3.0 39 ------- null} + -t 8.85816 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {0.0.3.0 1.1.3.0 39 ------- null} - -t 8.85816 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {0.0.3.0 1.1.3.0 39 ------- null} h -t 8.85816 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.85976 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {0.0.3.0 1.1.3.0 40 ------- null} + -t 8.85976 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {0.0.3.0 1.1.3.0 40 ------- null} - -t 8.85976 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {0.0.3.0 1.1.3.0 40 ------- null} h -t 8.85976 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.86136 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {0.0.3.0 1.1.3.0 41 ------- null} + -t 8.86136 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {0.0.3.0 1.1.3.0 41 ------- null} - -t 8.86136 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {0.0.3.0 1.1.3.0 41 ------- null} h -t 8.86136 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.86296 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {0.0.3.0 1.1.3.0 42 ------- null} + -t 8.86296 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {0.0.3.0 1.1.3.0 42 ------- null} - -t 8.86296 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {0.0.3.0 1.1.3.0 42 ------- null} h -t 8.86296 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.86456 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 74 -a 0 -x {0.0.3.0 1.1.3.0 43 ------- null} + -t 8.86456 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 74 -a 0 -x {0.0.3.0 1.1.3.0 43 ------- null} - -t 8.86456 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 74 -a 0 -x {0.0.3.0 1.1.3.0 43 ------- null} h -t 8.86456 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 74 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.86616 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {0.0.3.0 1.1.3.0 44 ------- null} + -t 8.86616 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {0.0.3.0 1.1.3.0 44 ------- null} - -t 8.86616 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {0.0.3.0 1.1.3.0 44 ------- null} h -t 8.86616 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.86776 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {0.0.3.0 1.1.3.0 45 ------- null} + -t 8.86776 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {0.0.3.0 1.1.3.0 45 ------- null} - -t 8.86776 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {0.0.3.0 1.1.3.0 45 ------- null} h -t 8.86776 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.86936 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {0.0.3.0 1.1.3.0 46 ------- null} + -t 8.86936 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {0.0.3.0 1.1.3.0 46 ------- null} - -t 8.86936 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {0.0.3.0 1.1.3.0 46 ------- null} h -t 8.86936 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.87096 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 78 -a 0 -x {0.0.3.0 1.1.3.0 47 ------- null} + -t 8.87096 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 78 -a 0 -x {0.0.3.0 1.1.3.0 47 ------- null} - -t 8.87096 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 78 -a 0 -x {0.0.3.0 1.1.3.0 47 ------- null} h -t 8.87096 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 78 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.87256 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {0.0.3.0 1.1.3.0 48 ------- null} + -t 8.87256 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {0.0.3.0 1.1.3.0 48 ------- null} - -t 8.87256 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {0.0.3.0 1.1.3.0 48 ------- null} h -t 8.87256 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.87416 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 80 -a 0 -x {0.0.3.0 1.1.3.0 49 ------- null} + -t 8.87416 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 80 -a 0 -x {0.0.3.0 1.1.3.0 49 ------- null} - -t 8.87416 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 80 -a 0 -x {0.0.3.0 1.1.3.0 49 ------- null} h -t 8.87416 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 80 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.87576 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {0.0.3.0 1.1.3.0 50 ------- null} + -t 8.87576 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {0.0.3.0 1.1.3.0 50 ------- null} - -t 8.87576 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {0.0.3.0 1.1.3.0 50 ------- null} h -t 8.87576 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.92696 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {0.0.3.0 1.1.3.0 31 ------- null} + -t 8.92696 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {0.0.3.0 1.1.3.0 31 ------- null} - -t 8.92696 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {0.0.3.0 1.1.3.0 31 ------- null} h -t 8.92696 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.92856 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {0.0.3.0 1.1.3.0 32 ------- null} + -t 8.92856 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {0.0.3.0 1.1.3.0 32 ------- null} - -t 8.92856 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {0.0.3.0 1.1.3.0 32 ------- null} h -t 8.92856 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.93016 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 64 -a 0 -x {0.0.3.0 1.1.3.0 33 ------- null} + -t 8.93016 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 64 -a 0 -x {0.0.3.0 1.1.3.0 33 ------- null} - -t 8.93016 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 64 -a 0 -x {0.0.3.0 1.1.3.0 33 ------- null} h -t 8.93016 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 64 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.93176 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {0.0.3.0 1.1.3.0 34 ------- null} + -t 8.93176 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {0.0.3.0 1.1.3.0 34 ------- null} - -t 8.93176 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {0.0.3.0 1.1.3.0 34 ------- null} h -t 8.93176 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.93336 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {0.0.3.0 1.1.3.0 35 ------- null} + -t 8.93336 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {0.0.3.0 1.1.3.0 35 ------- null} - -t 8.93336 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {0.0.3.0 1.1.3.0 35 ------- null} h -t 8.93336 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.93496 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {0.0.3.0 1.1.3.0 36 ------- null} + -t 8.93496 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {0.0.3.0 1.1.3.0 36 ------- null} - -t 8.93496 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {0.0.3.0 1.1.3.0 36 ------- null} h -t 8.93496 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.93656 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {0.0.3.0 1.1.3.0 37 ------- null} + -t 8.93656 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {0.0.3.0 1.1.3.0 37 ------- null} - -t 8.93656 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {0.0.3.0 1.1.3.0 37 ------- null} h -t 8.93656 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.93816 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {0.0.3.0 1.1.3.0 38 ------- null} + -t 8.93816 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {0.0.3.0 1.1.3.0 38 ------- null} - -t 8.93816 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {0.0.3.0 1.1.3.0 38 ------- null} h -t 8.93816 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.93976 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {0.0.3.0 1.1.3.0 39 ------- null} + -t 8.93976 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {0.0.3.0 1.1.3.0 39 ------- null} - -t 8.93976 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {0.0.3.0 1.1.3.0 39 ------- null} h -t 8.93976 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.94136 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {0.0.3.0 1.1.3.0 40 ------- null} + -t 8.94136 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {0.0.3.0 1.1.3.0 40 ------- null} - -t 8.94136 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {0.0.3.0 1.1.3.0 40 ------- null} h -t 8.94136 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.94296 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {0.0.3.0 1.1.3.0 41 ------- null} + -t 8.94296 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {0.0.3.0 1.1.3.0 41 ------- null} - -t 8.94296 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {0.0.3.0 1.1.3.0 41 ------- null} h -t 8.94296 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.94456 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {0.0.3.0 1.1.3.0 42 ------- null} + -t 8.94456 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {0.0.3.0 1.1.3.0 42 ------- null} - -t 8.94456 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {0.0.3.0 1.1.3.0 42 ------- null} h -t 8.94456 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.94616 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 74 -a 0 -x {0.0.3.0 1.1.3.0 43 ------- null} + -t 8.94616 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 74 -a 0 -x {0.0.3.0 1.1.3.0 43 ------- null} - -t 8.94616 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 74 -a 0 -x {0.0.3.0 1.1.3.0 43 ------- null} h -t 8.94616 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 74 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.94776 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {0.0.3.0 1.1.3.0 44 ------- null} + -t 8.94776 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {0.0.3.0 1.1.3.0 44 ------- null} - -t 8.94776 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {0.0.3.0 1.1.3.0 44 ------- null} h -t 8.94776 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.94936 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {0.0.3.0 1.1.3.0 45 ------- null} + -t 8.94936 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {0.0.3.0 1.1.3.0 45 ------- null} - -t 8.94936 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {0.0.3.0 1.1.3.0 45 ------- null} h -t 8.94936 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.95096 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {0.0.3.0 1.1.3.0 46 ------- null} + -t 8.95096 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {0.0.3.0 1.1.3.0 46 ------- null} - -t 8.95096 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {0.0.3.0 1.1.3.0 46 ------- null} h -t 8.95096 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.95256 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 78 -a 0 -x {0.0.3.0 1.1.3.0 47 ------- null} + -t 8.95256 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 78 -a 0 -x {0.0.3.0 1.1.3.0 47 ------- null} - -t 8.95256 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 78 -a 0 -x {0.0.3.0 1.1.3.0 47 ------- null} h -t 8.95256 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 78 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.95416 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {0.0.3.0 1.1.3.0 48 ------- null} + -t 8.95416 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {0.0.3.0 1.1.3.0 48 ------- null} - -t 8.95416 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {0.0.3.0 1.1.3.0 48 ------- null} h -t 8.95416 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.95576 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 80 -a 0 -x {0.0.3.0 1.1.3.0 49 ------- null} + -t 8.95576 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 80 -a 0 -x {0.0.3.0 1.1.3.0 49 ------- null} - -t 8.95576 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 80 -a 0 -x {0.0.3.0 1.1.3.0 49 ------- null} h -t 8.95576 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 80 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.95736 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {0.0.3.0 1.1.3.0 50 ------- null} + -t 8.95736 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {0.0.3.0 1.1.3.0 50 ------- null} - -t 8.95736 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {0.0.3.0 1.1.3.0 50 ------- null} h -t 8.95736 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 8.98856 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 62 -a 0 -x {0.0.3.0 1.1.3.0 31 ------- null} + -t 8.98856 -s 21 -d 28 -p ack -e 40 -c 0 -i 82 -a 1 -x {1.1.3.0 0.0.3.0 31 ------- null} - -t 8.98856 -s 21 -d 28 -p ack -e 40 -c 0 -i 82 -a 1 -x {1.1.3.0 0.0.3.0 31 ------- null} h -t 8.98856 -s 21 -d 28 -p ack -e 40 -c 0 -i 82 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 8.99016 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {0.0.3.0 1.1.3.0 32 ------- null} + -t 8.99016 -s 21 -d 28 -p ack -e 40 -c 0 -i 83 -a 1 -x {1.1.3.0 0.0.3.0 32 ------- null} - -t 8.99016 -s 21 -d 28 -p ack -e 40 -c 0 -i 83 -a 1 -x {1.1.3.0 0.0.3.0 32 ------- null} h -t 8.99016 -s 21 -d 28 -p ack -e 40 -c 0 -i 83 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 8.99176 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 64 -a 0 -x {0.0.3.0 1.1.3.0 33 ------- null} + -t 8.99176 -s 21 -d 28 -p ack -e 40 -c 0 -i 84 -a 1 -x {1.1.3.0 0.0.3.0 33 ------- null} - -t 8.99176 -s 21 -d 28 -p ack -e 40 -c 0 -i 84 -a 1 -x {1.1.3.0 0.0.3.0 33 ------- null} h -t 8.99176 -s 21 -d 28 -p ack -e 40 -c 0 -i 84 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 8.99336 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {0.0.3.0 1.1.3.0 34 ------- null} + -t 8.99336 -s 21 -d 28 -p ack -e 40 -c 0 -i 85 -a 1 -x {1.1.3.0 0.0.3.0 34 ------- null} - -t 8.99336 -s 21 -d 28 -p ack -e 40 -c 0 -i 85 -a 1 -x {1.1.3.0 0.0.3.0 34 ------- null} h -t 8.99336 -s 21 -d 28 -p ack -e 40 -c 0 -i 85 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 8.99496 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 66 -a 0 -x {0.0.3.0 1.1.3.0 35 ------- null} + -t 8.99496 -s 21 -d 28 -p ack -e 40 -c 0 -i 86 -a 1 -x {1.1.3.0 0.0.3.0 35 ------- null} - -t 8.99496 -s 21 -d 28 -p ack -e 40 -c 0 -i 86 -a 1 -x {1.1.3.0 0.0.3.0 35 ------- null} h -t 8.99496 -s 21 -d 28 -p ack -e 40 -c 0 -i 86 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 8.99656 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {0.0.3.0 1.1.3.0 36 ------- null} + -t 8.99656 -s 21 -d 28 -p ack -e 40 -c 0 -i 87 -a 1 -x {1.1.3.0 0.0.3.0 36 ------- null} - -t 8.99656 -s 21 -d 28 -p ack -e 40 -c 0 -i 87 -a 1 -x {1.1.3.0 0.0.3.0 36 ------- null} h -t 8.99656 -s 21 -d 28 -p ack -e 40 -c 0 -i 87 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 8.99816 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 68 -a 0 -x {0.0.3.0 1.1.3.0 37 ------- null} + -t 8.99816 -s 21 -d 28 -p ack -e 40 -c 0 -i 88 -a 1 -x {1.1.3.0 0.0.3.0 37 ------- null} - -t 8.99816 -s 21 -d 28 -p ack -e 40 -c 0 -i 88 -a 1 -x {1.1.3.0 0.0.3.0 37 ------- null} h -t 8.99816 -s 21 -d 28 -p ack -e 40 -c 0 -i 88 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 8.99976 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {0.0.3.0 1.1.3.0 38 ------- null} + -t 8.99976 -s 21 -d 28 -p ack -e 40 -c 0 -i 89 -a 1 -x {1.1.3.0 0.0.3.0 38 ------- null} - -t 8.99976 -s 21 -d 28 -p ack -e 40 -c 0 -i 89 -a 1 -x {1.1.3.0 0.0.3.0 38 ------- null} h -t 8.99976 -s 21 -d 28 -p ack -e 40 -c 0 -i 89 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.00136 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 70 -a 0 -x {0.0.3.0 1.1.3.0 39 ------- null} + -t 9.00136 -s 21 -d 28 -p ack -e 40 -c 0 -i 90 -a 1 -x {1.1.3.0 0.0.3.0 39 ------- null} - -t 9.00136 -s 21 -d 28 -p ack -e 40 -c 0 -i 90 -a 1 -x {1.1.3.0 0.0.3.0 39 ------- null} h -t 9.00136 -s 21 -d 28 -p ack -e 40 -c 0 -i 90 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.00296 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {0.0.3.0 1.1.3.0 40 ------- null} + -t 9.00296 -s 21 -d 28 -p ack -e 40 -c 0 -i 91 -a 1 -x {1.1.3.0 0.0.3.0 40 ------- null} - -t 9.00296 -s 21 -d 28 -p ack -e 40 -c 0 -i 91 -a 1 -x {1.1.3.0 0.0.3.0 40 ------- null} h -t 9.00296 -s 21 -d 28 -p ack -e 40 -c 0 -i 91 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.00456 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 72 -a 0 -x {0.0.3.0 1.1.3.0 41 ------- null} + -t 9.00456 -s 21 -d 28 -p ack -e 40 -c 0 -i 92 -a 1 -x {1.1.3.0 0.0.3.0 41 ------- null} - -t 9.00456 -s 21 -d 28 -p ack -e 40 -c 0 -i 92 -a 1 -x {1.1.3.0 0.0.3.0 41 ------- null} h -t 9.00456 -s 21 -d 28 -p ack -e 40 -c 0 -i 92 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.00616 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {0.0.3.0 1.1.3.0 42 ------- null} + -t 9.00616 -s 21 -d 28 -p ack -e 40 -c 0 -i 93 -a 1 -x {1.1.3.0 0.0.3.0 42 ------- null} - -t 9.00616 -s 21 -d 28 -p ack -e 40 -c 0 -i 93 -a 1 -x {1.1.3.0 0.0.3.0 42 ------- null} h -t 9.00616 -s 21 -d 28 -p ack -e 40 -c 0 -i 93 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.00776 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 74 -a 0 -x {0.0.3.0 1.1.3.0 43 ------- null} + -t 9.00776 -s 21 -d 28 -p ack -e 40 -c 0 -i 94 -a 1 -x {1.1.3.0 0.0.3.0 43 ------- null} - -t 9.00776 -s 21 -d 28 -p ack -e 40 -c 0 -i 94 -a 1 -x {1.1.3.0 0.0.3.0 43 ------- null} h -t 9.00776 -s 21 -d 28 -p ack -e 40 -c 0 -i 94 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.00936 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {0.0.3.0 1.1.3.0 44 ------- null} + -t 9.00936 -s 21 -d 28 -p ack -e 40 -c 0 -i 95 -a 1 -x {1.1.3.0 0.0.3.0 44 ------- null} - -t 9.00936 -s 21 -d 28 -p ack -e 40 -c 0 -i 95 -a 1 -x {1.1.3.0 0.0.3.0 44 ------- null} h -t 9.00936 -s 21 -d 28 -p ack -e 40 -c 0 -i 95 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.01096 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {0.0.3.0 1.1.3.0 45 ------- null} + -t 9.01096 -s 21 -d 28 -p ack -e 40 -c 0 -i 96 -a 1 -x {1.1.3.0 0.0.3.0 45 ------- null} - -t 9.01096 -s 21 -d 28 -p ack -e 40 -c 0 -i 96 -a 1 -x {1.1.3.0 0.0.3.0 45 ------- null} h -t 9.01096 -s 21 -d 28 -p ack -e 40 -c 0 -i 96 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.01256 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {0.0.3.0 1.1.3.0 46 ------- null} + -t 9.01256 -s 21 -d 28 -p ack -e 40 -c 0 -i 97 -a 1 -x {1.1.3.0 0.0.3.0 46 ------- null} - -t 9.01256 -s 21 -d 28 -p ack -e 40 -c 0 -i 97 -a 1 -x {1.1.3.0 0.0.3.0 46 ------- null} h -t 9.01256 -s 21 -d 28 -p ack -e 40 -c 0 -i 97 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.01416 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 78 -a 0 -x {0.0.3.0 1.1.3.0 47 ------- null} + -t 9.01416 -s 21 -d 28 -p ack -e 40 -c 0 -i 98 -a 1 -x {1.1.3.0 0.0.3.0 47 ------- null} - -t 9.01416 -s 21 -d 28 -p ack -e 40 -c 0 -i 98 -a 1 -x {1.1.3.0 0.0.3.0 47 ------- null} h -t 9.01416 -s 21 -d 28 -p ack -e 40 -c 0 -i 98 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.01576 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {0.0.3.0 1.1.3.0 48 ------- null} + -t 9.01576 -s 21 -d 28 -p ack -e 40 -c 0 -i 99 -a 1 -x {1.1.3.0 0.0.3.0 48 ------- null} - -t 9.01576 -s 21 -d 28 -p ack -e 40 -c 0 -i 99 -a 1 -x {1.1.3.0 0.0.3.0 48 ------- null} h -t 9.01576 -s 21 -d 28 -p ack -e 40 -c 0 -i 99 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.01736 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 80 -a 0 -x {0.0.3.0 1.1.3.0 49 ------- null} + -t 9.01736 -s 21 -d 28 -p ack -e 40 -c 0 -i 100 -a 1 -x {1.1.3.0 0.0.3.0 49 ------- null} - -t 9.01736 -s 21 -d 28 -p ack -e 40 -c 0 -i 100 -a 1 -x {1.1.3.0 0.0.3.0 49 ------- null} h -t 9.01736 -s 21 -d 28 -p ack -e 40 -c 0 -i 100 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.01896 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {0.0.3.0 1.1.3.0 50 ------- null} + -t 9.01896 -s 21 -d 28 -p ack -e 40 -c 0 -i 101 -a 1 -x {1.1.3.0 0.0.3.0 50 ------- null} - -t 9.01896 -s 21 -d 28 -p ack -e 40 -c 0 -i 101 -a 1 -x {1.1.3.0 0.0.3.0 50 ------- null} h -t 9.01896 -s 21 -d 28 -p ack -e 40 -c 0 -i 101 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.33862 -s 21 -d 28 -p ack -e 40 -c 0 -i 82 -a 1 -x {1.1.3.0 0.0.3.0 31 ------- null} + -t 9.33862 -s 28 -d 1 -p ack -e 40 -c 0 -i 82 -a 1 -x {1.1.3.0 0.0.3.0 31 ------- null} - -t 9.33862 -s 28 -d 1 -p ack -e 40 -c 0 -i 82 -a 1 -x {1.1.3.0 0.0.3.0 31 ------- null} h -t 9.33862 -s 28 -d 1 -p ack -e 40 -c 0 -i 82 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.34022 -s 21 -d 28 -p ack -e 40 -c 0 -i 83 -a 1 -x {1.1.3.0 0.0.3.0 32 ------- null} + -t 9.34022 -s 28 -d 1 -p ack -e 40 -c 0 -i 83 -a 1 -x {1.1.3.0 0.0.3.0 32 ------- null} - -t 9.34022 -s 28 -d 1 -p ack -e 40 -c 0 -i 83 -a 1 -x {1.1.3.0 0.0.3.0 32 ------- null} h -t 9.34022 -s 28 -d 1 -p ack -e 40 -c 0 -i 83 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.34182 -s 21 -d 28 -p ack -e 40 -c 0 -i 84 -a 1 -x {1.1.3.0 0.0.3.0 33 ------- null} + -t 9.34182 -s 28 -d 1 -p ack -e 40 -c 0 -i 84 -a 1 -x {1.1.3.0 0.0.3.0 33 ------- null} - -t 9.34182 -s 28 -d 1 -p ack -e 40 -c 0 -i 84 -a 1 -x {1.1.3.0 0.0.3.0 33 ------- null} h -t 9.34182 -s 28 -d 1 -p ack -e 40 -c 0 -i 84 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.34342 -s 21 -d 28 -p ack -e 40 -c 0 -i 85 -a 1 -x {1.1.3.0 0.0.3.0 34 ------- null} + -t 9.34342 -s 28 -d 1 -p ack -e 40 -c 0 -i 85 -a 1 -x {1.1.3.0 0.0.3.0 34 ------- null} - -t 9.34342 -s 28 -d 1 -p ack -e 40 -c 0 -i 85 -a 1 -x {1.1.3.0 0.0.3.0 34 ------- null} h -t 9.34342 -s 28 -d 1 -p ack -e 40 -c 0 -i 85 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.34502 -s 21 -d 28 -p ack -e 40 -c 0 -i 86 -a 1 -x {1.1.3.0 0.0.3.0 35 ------- null} + -t 9.34502 -s 28 -d 1 -p ack -e 40 -c 0 -i 86 -a 1 -x {1.1.3.0 0.0.3.0 35 ------- null} - -t 9.34502 -s 28 -d 1 -p ack -e 40 -c 0 -i 86 -a 1 -x {1.1.3.0 0.0.3.0 35 ------- null} h -t 9.34502 -s 28 -d 1 -p ack -e 40 -c 0 -i 86 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.34662 -s 21 -d 28 -p ack -e 40 -c 0 -i 87 -a 1 -x {1.1.3.0 0.0.3.0 36 ------- null} + -t 9.34662 -s 28 -d 1 -p ack -e 40 -c 0 -i 87 -a 1 -x {1.1.3.0 0.0.3.0 36 ------- null} - -t 9.34662 -s 28 -d 1 -p ack -e 40 -c 0 -i 87 -a 1 -x {1.1.3.0 0.0.3.0 36 ------- null} h -t 9.34662 -s 28 -d 1 -p ack -e 40 -c 0 -i 87 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.34822 -s 21 -d 28 -p ack -e 40 -c 0 -i 88 -a 1 -x {1.1.3.0 0.0.3.0 37 ------- null} + -t 9.34822 -s 28 -d 1 -p ack -e 40 -c 0 -i 88 -a 1 -x {1.1.3.0 0.0.3.0 37 ------- null} - -t 9.34822 -s 28 -d 1 -p ack -e 40 -c 0 -i 88 -a 1 -x {1.1.3.0 0.0.3.0 37 ------- null} h -t 9.34822 -s 28 -d 1 -p ack -e 40 -c 0 -i 88 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.34982 -s 21 -d 28 -p ack -e 40 -c 0 -i 89 -a 1 -x {1.1.3.0 0.0.3.0 38 ------- null} + -t 9.34982 -s 28 -d 1 -p ack -e 40 -c 0 -i 89 -a 1 -x {1.1.3.0 0.0.3.0 38 ------- null} - -t 9.34982 -s 28 -d 1 -p ack -e 40 -c 0 -i 89 -a 1 -x {1.1.3.0 0.0.3.0 38 ------- null} h -t 9.34982 -s 28 -d 1 -p ack -e 40 -c 0 -i 89 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.35142 -s 21 -d 28 -p ack -e 40 -c 0 -i 90 -a 1 -x {1.1.3.0 0.0.3.0 39 ------- null} + -t 9.35142 -s 28 -d 1 -p ack -e 40 -c 0 -i 90 -a 1 -x {1.1.3.0 0.0.3.0 39 ------- null} - -t 9.35142 -s 28 -d 1 -p ack -e 40 -c 0 -i 90 -a 1 -x {1.1.3.0 0.0.3.0 39 ------- null} h -t 9.35142 -s 28 -d 1 -p ack -e 40 -c 0 -i 90 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.35302 -s 21 -d 28 -p ack -e 40 -c 0 -i 91 -a 1 -x {1.1.3.0 0.0.3.0 40 ------- null} + -t 9.35302 -s 28 -d 1 -p ack -e 40 -c 0 -i 91 -a 1 -x {1.1.3.0 0.0.3.0 40 ------- null} - -t 9.35302 -s 28 -d 1 -p ack -e 40 -c 0 -i 91 -a 1 -x {1.1.3.0 0.0.3.0 40 ------- null} h -t 9.35302 -s 28 -d 1 -p ack -e 40 -c 0 -i 91 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.35462 -s 21 -d 28 -p ack -e 40 -c 0 -i 92 -a 1 -x {1.1.3.0 0.0.3.0 41 ------- null} + -t 9.35462 -s 28 -d 1 -p ack -e 40 -c 0 -i 92 -a 1 -x {1.1.3.0 0.0.3.0 41 ------- null} - -t 9.35462 -s 28 -d 1 -p ack -e 40 -c 0 -i 92 -a 1 -x {1.1.3.0 0.0.3.0 41 ------- null} h -t 9.35462 -s 28 -d 1 -p ack -e 40 -c 0 -i 92 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.35622 -s 21 -d 28 -p ack -e 40 -c 0 -i 93 -a 1 -x {1.1.3.0 0.0.3.0 42 ------- null} + -t 9.35622 -s 28 -d 1 -p ack -e 40 -c 0 -i 93 -a 1 -x {1.1.3.0 0.0.3.0 42 ------- null} - -t 9.35622 -s 28 -d 1 -p ack -e 40 -c 0 -i 93 -a 1 -x {1.1.3.0 0.0.3.0 42 ------- null} h -t 9.35622 -s 28 -d 1 -p ack -e 40 -c 0 -i 93 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.35782 -s 21 -d 28 -p ack -e 40 -c 0 -i 94 -a 1 -x {1.1.3.0 0.0.3.0 43 ------- null} + -t 9.35782 -s 28 -d 1 -p ack -e 40 -c 0 -i 94 -a 1 -x {1.1.3.0 0.0.3.0 43 ------- null} - -t 9.35782 -s 28 -d 1 -p ack -e 40 -c 0 -i 94 -a 1 -x {1.1.3.0 0.0.3.0 43 ------- null} h -t 9.35782 -s 28 -d 1 -p ack -e 40 -c 0 -i 94 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.35942 -s 21 -d 28 -p ack -e 40 -c 0 -i 95 -a 1 -x {1.1.3.0 0.0.3.0 44 ------- null} + -t 9.35942 -s 28 -d 1 -p ack -e 40 -c 0 -i 95 -a 1 -x {1.1.3.0 0.0.3.0 44 ------- null} - -t 9.35942 -s 28 -d 1 -p ack -e 40 -c 0 -i 95 -a 1 -x {1.1.3.0 0.0.3.0 44 ------- null} h -t 9.35942 -s 28 -d 1 -p ack -e 40 -c 0 -i 95 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.36102 -s 21 -d 28 -p ack -e 40 -c 0 -i 96 -a 1 -x {1.1.3.0 0.0.3.0 45 ------- null} + -t 9.36102 -s 28 -d 1 -p ack -e 40 -c 0 -i 96 -a 1 -x {1.1.3.0 0.0.3.0 45 ------- null} - -t 9.36102 -s 28 -d 1 -p ack -e 40 -c 0 -i 96 -a 1 -x {1.1.3.0 0.0.3.0 45 ------- null} h -t 9.36102 -s 28 -d 1 -p ack -e 40 -c 0 -i 96 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.36262 -s 21 -d 28 -p ack -e 40 -c 0 -i 97 -a 1 -x {1.1.3.0 0.0.3.0 46 ------- null} + -t 9.36262 -s 28 -d 1 -p ack -e 40 -c 0 -i 97 -a 1 -x {1.1.3.0 0.0.3.0 46 ------- null} - -t 9.36262 -s 28 -d 1 -p ack -e 40 -c 0 -i 97 -a 1 -x {1.1.3.0 0.0.3.0 46 ------- null} h -t 9.36262 -s 28 -d 1 -p ack -e 40 -c 0 -i 97 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.36422 -s 21 -d 28 -p ack -e 40 -c 0 -i 98 -a 1 -x {1.1.3.0 0.0.3.0 47 ------- null} + -t 9.36422 -s 28 -d 1 -p ack -e 40 -c 0 -i 98 -a 1 -x {1.1.3.0 0.0.3.0 47 ------- null} - -t 9.36422 -s 28 -d 1 -p ack -e 40 -c 0 -i 98 -a 1 -x {1.1.3.0 0.0.3.0 47 ------- null} h -t 9.36422 -s 28 -d 1 -p ack -e 40 -c 0 -i 98 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.36582 -s 21 -d 28 -p ack -e 40 -c 0 -i 99 -a 1 -x {1.1.3.0 0.0.3.0 48 ------- null} + -t 9.36582 -s 28 -d 1 -p ack -e 40 -c 0 -i 99 -a 1 -x {1.1.3.0 0.0.3.0 48 ------- null} - -t 9.36582 -s 28 -d 1 -p ack -e 40 -c 0 -i 99 -a 1 -x {1.1.3.0 0.0.3.0 48 ------- null} h -t 9.36582 -s 28 -d 1 -p ack -e 40 -c 0 -i 99 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.36742 -s 21 -d 28 -p ack -e 40 -c 0 -i 100 -a 1 -x {1.1.3.0 0.0.3.0 49 ------- null} + -t 9.36742 -s 28 -d 1 -p ack -e 40 -c 0 -i 100 -a 1 -x {1.1.3.0 0.0.3.0 49 ------- null} - -t 9.36742 -s 28 -d 1 -p ack -e 40 -c 0 -i 100 -a 1 -x {1.1.3.0 0.0.3.0 49 ------- null} h -t 9.36742 -s 28 -d 1 -p ack -e 40 -c 0 -i 100 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.36902 -s 21 -d 28 -p ack -e 40 -c 0 -i 101 -a 1 -x {1.1.3.0 0.0.3.0 50 ------- null} + -t 9.36902 -s 28 -d 1 -p ack -e 40 -c 0 -i 101 -a 1 -x {1.1.3.0 0.0.3.0 50 ------- null} - -t 9.36902 -s 28 -d 1 -p ack -e 40 -c 0 -i 101 -a 1 -x {1.1.3.0 0.0.3.0 50 ------- null} h -t 9.36902 -s 28 -d 1 -p ack -e 40 -c 0 -i 101 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.63869 -s 28 -d 1 -p ack -e 40 -c 0 -i 82 -a 1 -x {1.1.3.0 0.0.3.0 31 ------- null} + -t 9.63869 -s 1 -d 3 -p ack -e 40 -c 0 -i 82 -a 1 -x {1.1.3.0 0.0.3.0 31 ------- null} - -t 9.63869 -s 1 -d 3 -p ack -e 40 -c 0 -i 82 -a 1 -x {1.1.3.0 0.0.3.0 31 ------- null} h -t 9.63869 -s 1 -d 3 -p ack -e 40 -c 0 -i 82 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.64029 -s 28 -d 1 -p ack -e 40 -c 0 -i 83 -a 1 -x {1.1.3.0 0.0.3.0 32 ------- null} + -t 9.64029 -s 1 -d 3 -p ack -e 40 -c 0 -i 83 -a 1 -x {1.1.3.0 0.0.3.0 32 ------- null} - -t 9.64029 -s 1 -d 3 -p ack -e 40 -c 0 -i 83 -a 1 -x {1.1.3.0 0.0.3.0 32 ------- null} h -t 9.64029 -s 1 -d 3 -p ack -e 40 -c 0 -i 83 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.64189 -s 28 -d 1 -p ack -e 40 -c 0 -i 84 -a 1 -x {1.1.3.0 0.0.3.0 33 ------- null} + -t 9.64189 -s 1 -d 3 -p ack -e 40 -c 0 -i 84 -a 1 -x {1.1.3.0 0.0.3.0 33 ------- null} - -t 9.64189 -s 1 -d 3 -p ack -e 40 -c 0 -i 84 -a 1 -x {1.1.3.0 0.0.3.0 33 ------- null} h -t 9.64189 -s 1 -d 3 -p ack -e 40 -c 0 -i 84 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.64349 -s 28 -d 1 -p ack -e 40 -c 0 -i 85 -a 1 -x {1.1.3.0 0.0.3.0 34 ------- null} + -t 9.64349 -s 1 -d 3 -p ack -e 40 -c 0 -i 85 -a 1 -x {1.1.3.0 0.0.3.0 34 ------- null} - -t 9.64349 -s 1 -d 3 -p ack -e 40 -c 0 -i 85 -a 1 -x {1.1.3.0 0.0.3.0 34 ------- null} h -t 9.64349 -s 1 -d 3 -p ack -e 40 -c 0 -i 85 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.64509 -s 28 -d 1 -p ack -e 40 -c 0 -i 86 -a 1 -x {1.1.3.0 0.0.3.0 35 ------- null} + -t 9.64509 -s 1 -d 3 -p ack -e 40 -c 0 -i 86 -a 1 -x {1.1.3.0 0.0.3.0 35 ------- null} - -t 9.64509 -s 1 -d 3 -p ack -e 40 -c 0 -i 86 -a 1 -x {1.1.3.0 0.0.3.0 35 ------- null} h -t 9.64509 -s 1 -d 3 -p ack -e 40 -c 0 -i 86 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.64669 -s 28 -d 1 -p ack -e 40 -c 0 -i 87 -a 1 -x {1.1.3.0 0.0.3.0 36 ------- null} + -t 9.64669 -s 1 -d 3 -p ack -e 40 -c 0 -i 87 -a 1 -x {1.1.3.0 0.0.3.0 36 ------- null} - -t 9.64669 -s 1 -d 3 -p ack -e 40 -c 0 -i 87 -a 1 -x {1.1.3.0 0.0.3.0 36 ------- null} h -t 9.64669 -s 1 -d 3 -p ack -e 40 -c 0 -i 87 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.64829 -s 28 -d 1 -p ack -e 40 -c 0 -i 88 -a 1 -x {1.1.3.0 0.0.3.0 37 ------- null} + -t 9.64829 -s 1 -d 3 -p ack -e 40 -c 0 -i 88 -a 1 -x {1.1.3.0 0.0.3.0 37 ------- null} - -t 9.64829 -s 1 -d 3 -p ack -e 40 -c 0 -i 88 -a 1 -x {1.1.3.0 0.0.3.0 37 ------- null} h -t 9.64829 -s 1 -d 3 -p ack -e 40 -c 0 -i 88 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.64989 -s 28 -d 1 -p ack -e 40 -c 0 -i 89 -a 1 -x {1.1.3.0 0.0.3.0 38 ------- null} + -t 9.64989 -s 1 -d 3 -p ack -e 40 -c 0 -i 89 -a 1 -x {1.1.3.0 0.0.3.0 38 ------- null} - -t 9.64989 -s 1 -d 3 -p ack -e 40 -c 0 -i 89 -a 1 -x {1.1.3.0 0.0.3.0 38 ------- null} h -t 9.64989 -s 1 -d 3 -p ack -e 40 -c 0 -i 89 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.65149 -s 28 -d 1 -p ack -e 40 -c 0 -i 90 -a 1 -x {1.1.3.0 0.0.3.0 39 ------- null} + -t 9.65149 -s 1 -d 3 -p ack -e 40 -c 0 -i 90 -a 1 -x {1.1.3.0 0.0.3.0 39 ------- null} - -t 9.65149 -s 1 -d 3 -p ack -e 40 -c 0 -i 90 -a 1 -x {1.1.3.0 0.0.3.0 39 ------- null} h -t 9.65149 -s 1 -d 3 -p ack -e 40 -c 0 -i 90 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.65309 -s 28 -d 1 -p ack -e 40 -c 0 -i 91 -a 1 -x {1.1.3.0 0.0.3.0 40 ------- null} + -t 9.65309 -s 1 -d 3 -p ack -e 40 -c 0 -i 91 -a 1 -x {1.1.3.0 0.0.3.0 40 ------- null} - -t 9.65309 -s 1 -d 3 -p ack -e 40 -c 0 -i 91 -a 1 -x {1.1.3.0 0.0.3.0 40 ------- null} h -t 9.65309 -s 1 -d 3 -p ack -e 40 -c 0 -i 91 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.65469 -s 28 -d 1 -p ack -e 40 -c 0 -i 92 -a 1 -x {1.1.3.0 0.0.3.0 41 ------- null} + -t 9.65469 -s 1 -d 3 -p ack -e 40 -c 0 -i 92 -a 1 -x {1.1.3.0 0.0.3.0 41 ------- null} - -t 9.65469 -s 1 -d 3 -p ack -e 40 -c 0 -i 92 -a 1 -x {1.1.3.0 0.0.3.0 41 ------- null} h -t 9.65469 -s 1 -d 3 -p ack -e 40 -c 0 -i 92 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.65629 -s 28 -d 1 -p ack -e 40 -c 0 -i 93 -a 1 -x {1.1.3.0 0.0.3.0 42 ------- null} + -t 9.65629 -s 1 -d 3 -p ack -e 40 -c 0 -i 93 -a 1 -x {1.1.3.0 0.0.3.0 42 ------- null} - -t 9.65629 -s 1 -d 3 -p ack -e 40 -c 0 -i 93 -a 1 -x {1.1.3.0 0.0.3.0 42 ------- null} h -t 9.65629 -s 1 -d 3 -p ack -e 40 -c 0 -i 93 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.65789 -s 28 -d 1 -p ack -e 40 -c 0 -i 94 -a 1 -x {1.1.3.0 0.0.3.0 43 ------- null} + -t 9.65789 -s 1 -d 3 -p ack -e 40 -c 0 -i 94 -a 1 -x {1.1.3.0 0.0.3.0 43 ------- null} - -t 9.65789 -s 1 -d 3 -p ack -e 40 -c 0 -i 94 -a 1 -x {1.1.3.0 0.0.3.0 43 ------- null} h -t 9.65789 -s 1 -d 3 -p ack -e 40 -c 0 -i 94 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.65949 -s 28 -d 1 -p ack -e 40 -c 0 -i 95 -a 1 -x {1.1.3.0 0.0.3.0 44 ------- null} + -t 9.65949 -s 1 -d 3 -p ack -e 40 -c 0 -i 95 -a 1 -x {1.1.3.0 0.0.3.0 44 ------- null} - -t 9.65949 -s 1 -d 3 -p ack -e 40 -c 0 -i 95 -a 1 -x {1.1.3.0 0.0.3.0 44 ------- null} h -t 9.65949 -s 1 -d 3 -p ack -e 40 -c 0 -i 95 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.66109 -s 28 -d 1 -p ack -e 40 -c 0 -i 96 -a 1 -x {1.1.3.0 0.0.3.0 45 ------- null} + -t 9.66109 -s 1 -d 3 -p ack -e 40 -c 0 -i 96 -a 1 -x {1.1.3.0 0.0.3.0 45 ------- null} - -t 9.66109 -s 1 -d 3 -p ack -e 40 -c 0 -i 96 -a 1 -x {1.1.3.0 0.0.3.0 45 ------- null} h -t 9.66109 -s 1 -d 3 -p ack -e 40 -c 0 -i 96 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.66269 -s 28 -d 1 -p ack -e 40 -c 0 -i 97 -a 1 -x {1.1.3.0 0.0.3.0 46 ------- null} + -t 9.66269 -s 1 -d 3 -p ack -e 40 -c 0 -i 97 -a 1 -x {1.1.3.0 0.0.3.0 46 ------- null} - -t 9.66269 -s 1 -d 3 -p ack -e 40 -c 0 -i 97 -a 1 -x {1.1.3.0 0.0.3.0 46 ------- null} h -t 9.66269 -s 1 -d 3 -p ack -e 40 -c 0 -i 97 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.66429 -s 28 -d 1 -p ack -e 40 -c 0 -i 98 -a 1 -x {1.1.3.0 0.0.3.0 47 ------- null} + -t 9.66429 -s 1 -d 3 -p ack -e 40 -c 0 -i 98 -a 1 -x {1.1.3.0 0.0.3.0 47 ------- null} - -t 9.66429 -s 1 -d 3 -p ack -e 40 -c 0 -i 98 -a 1 -x {1.1.3.0 0.0.3.0 47 ------- null} h -t 9.66429 -s 1 -d 3 -p ack -e 40 -c 0 -i 98 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.66589 -s 28 -d 1 -p ack -e 40 -c 0 -i 99 -a 1 -x {1.1.3.0 0.0.3.0 48 ------- null} + -t 9.66589 -s 1 -d 3 -p ack -e 40 -c 0 -i 99 -a 1 -x {1.1.3.0 0.0.3.0 48 ------- null} - -t 9.66589 -s 1 -d 3 -p ack -e 40 -c 0 -i 99 -a 1 -x {1.1.3.0 0.0.3.0 48 ------- null} h -t 9.66589 -s 1 -d 3 -p ack -e 40 -c 0 -i 99 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.66749 -s 28 -d 1 -p ack -e 40 -c 0 -i 100 -a 1 -x {1.1.3.0 0.0.3.0 49 ------- null} + -t 9.66749 -s 1 -d 3 -p ack -e 40 -c 0 -i 100 -a 1 -x {1.1.3.0 0.0.3.0 49 ------- null} - -t 9.66749 -s 1 -d 3 -p ack -e 40 -c 0 -i 100 -a 1 -x {1.1.3.0 0.0.3.0 49 ------- null} h -t 9.66749 -s 1 -d 3 -p ack -e 40 -c 0 -i 100 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.66909 -s 28 -d 1 -p ack -e 40 -c 0 -i 101 -a 1 -x {1.1.3.0 0.0.3.0 50 ------- null} + -t 9.66909 -s 1 -d 3 -p ack -e 40 -c 0 -i 101 -a 1 -x {1.1.3.0 0.0.3.0 50 ------- null} - -t 9.66909 -s 1 -d 3 -p ack -e 40 -c 0 -i 101 -a 1 -x {1.1.3.0 0.0.3.0 50 ------- null} h -t 9.66909 -s 1 -d 3 -p ack -e 40 -c 0 -i 101 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 9.77875 -s 1 -d 3 -p ack -e 40 -c 0 -i 82 -a 1 -x {1.1.3.0 0.0.3.0 31 ------- null} + -t 9.77875 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {0.0.3.0 1.1.3.0 51 ------- null} - -t 9.77875 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {0.0.3.0 1.1.3.0 51 ------- null} h -t 9.77875 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 9.78035 -s 1 -d 3 -p ack -e 40 -c 0 -i 83 -a 1 -x {1.1.3.0 0.0.3.0 32 ------- null} + -t 9.78035 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {0.0.3.0 1.1.3.0 52 ------- null} - -t 9.78035 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {0.0.3.0 1.1.3.0 52 ------- null} h -t 9.78035 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 9.78195 -s 1 -d 3 -p ack -e 40 -c 0 -i 84 -a 1 -x {1.1.3.0 0.0.3.0 33 ------- null} + -t 9.78195 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 104 -a 0 -x {0.0.3.0 1.1.3.0 53 ------- null} - -t 9.78195 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 104 -a 0 -x {0.0.3.0 1.1.3.0 53 ------- null} h -t 9.78195 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 104 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 9.78355 -s 1 -d 3 -p ack -e 40 -c 0 -i 85 -a 1 -x {1.1.3.0 0.0.3.0 34 ------- null} + -t 9.78355 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {0.0.3.0 1.1.3.0 54 ------- null} - -t 9.78355 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {0.0.3.0 1.1.3.0 54 ------- null} h -t 9.78355 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 9.78515 -s 1 -d 3 -p ack -e 40 -c 0 -i 86 -a 1 -x {1.1.3.0 0.0.3.0 35 ------- null} + -t 9.78515 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 106 -a 0 -x {0.0.3.0 1.1.3.0 55 ------- null} - -t 9.78515 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 106 -a 0 -x {0.0.3.0 1.1.3.0 55 ------- null} h -t 9.78515 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 106 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 9.78675 -s 1 -d 3 -p ack -e 40 -c 0 -i 87 -a 1 -x {1.1.3.0 0.0.3.0 36 ------- null} + -t 9.78675 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {0.0.3.0 1.1.3.0 56 ------- null} - -t 9.78675 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {0.0.3.0 1.1.3.0 56 ------- null} h -t 9.78675 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 9.78835 -s 1 -d 3 -p ack -e 40 -c 0 -i 88 -a 1 -x {1.1.3.0 0.0.3.0 37 ------- null} + -t 9.78835 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 108 -a 0 -x {0.0.3.0 1.1.3.0 57 ------- null} - -t 9.78835 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 108 -a 0 -x {0.0.3.0 1.1.3.0 57 ------- null} h -t 9.78835 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 108 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 9.78995 -s 1 -d 3 -p ack -e 40 -c 0 -i 89 -a 1 -x {1.1.3.0 0.0.3.0 38 ------- null} + -t 9.78995 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {0.0.3.0 1.1.3.0 58 ------- null} - -t 9.78995 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {0.0.3.0 1.1.3.0 58 ------- null} h -t 9.78995 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 9.79155 -s 1 -d 3 -p ack -e 40 -c 0 -i 90 -a 1 -x {1.1.3.0 0.0.3.0 39 ------- null} + -t 9.79155 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 110 -a 0 -x {0.0.3.0 1.1.3.0 59 ------- null} - -t 9.79155 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 110 -a 0 -x {0.0.3.0 1.1.3.0 59 ------- null} h -t 9.79155 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 110 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 9.79315 -s 1 -d 3 -p ack -e 40 -c 0 -i 91 -a 1 -x {1.1.3.0 0.0.3.0 40 ------- null} + -t 9.79315 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {0.0.3.0 1.1.3.0 60 ------- null} - -t 9.79315 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {0.0.3.0 1.1.3.0 60 ------- null} h -t 9.79315 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 9.79475 -s 1 -d 3 -p ack -e 40 -c 0 -i 92 -a 1 -x {1.1.3.0 0.0.3.0 41 ------- null} + -t 9.79475 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {0.0.3.0 1.1.3.0 61 ------- null} - -t 9.79475 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {0.0.3.0 1.1.3.0 61 ------- null} h -t 9.79475 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 9.79635 -s 1 -d 3 -p ack -e 40 -c 0 -i 93 -a 1 -x {1.1.3.0 0.0.3.0 42 ------- null} + -t 9.79635 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {0.0.3.0 1.1.3.0 62 ------- null} - -t 9.79635 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {0.0.3.0 1.1.3.0 62 ------- null} h -t 9.79635 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 9.79795 -s 1 -d 3 -p ack -e 40 -c 0 -i 94 -a 1 -x {1.1.3.0 0.0.3.0 43 ------- null} + -t 9.79795 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 114 -a 0 -x {0.0.3.0 1.1.3.0 63 ------- null} - -t 9.79795 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 114 -a 0 -x {0.0.3.0 1.1.3.0 63 ------- null} h -t 9.79795 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 114 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 9.79955 -s 1 -d 3 -p ack -e 40 -c 0 -i 95 -a 1 -x {1.1.3.0 0.0.3.0 44 ------- null} + -t 9.79955 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {0.0.3.0 1.1.3.0 64 ------- null} - -t 9.79955 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {0.0.3.0 1.1.3.0 64 ------- null} h -t 9.79955 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 9.80115 -s 1 -d 3 -p ack -e 40 -c 0 -i 96 -a 1 -x {1.1.3.0 0.0.3.0 45 ------- null} + -t 9.80115 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {0.0.3.0 1.1.3.0 65 ------- null} - -t 9.80115 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {0.0.3.0 1.1.3.0 65 ------- null} h -t 9.80115 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 9.80275 -s 1 -d 3 -p ack -e 40 -c 0 -i 97 -a 1 -x {1.1.3.0 0.0.3.0 46 ------- null} + -t 9.80275 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {0.0.3.0 1.1.3.0 66 ------- null} - -t 9.80275 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {0.0.3.0 1.1.3.0 66 ------- null} h -t 9.80275 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 9.80435 -s 1 -d 3 -p ack -e 40 -c 0 -i 98 -a 1 -x {1.1.3.0 0.0.3.0 47 ------- null} + -t 9.80435 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {0.0.3.0 1.1.3.0 67 ------- null} - -t 9.80435 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {0.0.3.0 1.1.3.0 67 ------- null} h -t 9.80435 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 9.80595 -s 1 -d 3 -p ack -e 40 -c 0 -i 99 -a 1 -x {1.1.3.0 0.0.3.0 48 ------- null} + -t 9.80595 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {0.0.3.0 1.1.3.0 68 ------- null} - -t 9.80595 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {0.0.3.0 1.1.3.0 68 ------- null} h -t 9.80595 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 9.80755 -s 1 -d 3 -p ack -e 40 -c 0 -i 100 -a 1 -x {1.1.3.0 0.0.3.0 49 ------- null} + -t 9.80755 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {0.0.3.0 1.1.3.0 69 ------- null} - -t 9.80755 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {0.0.3.0 1.1.3.0 69 ------- null} h -t 9.80755 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 9.80915 -s 1 -d 3 -p ack -e 40 -c 0 -i 101 -a 1 -x {1.1.3.0 0.0.3.0 50 ------- null} + -t 9.80915 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {0.0.3.0 1.1.3.0 70 ------- null} - -t 9.80915 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {0.0.3.0 1.1.3.0 70 ------- null} h -t 9.80915 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 9.94035 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {0.0.3.0 1.1.3.0 51 ------- null} + -t 9.94035 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {0.0.3.0 1.1.3.0 51 ------- null} - -t 9.94035 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {0.0.3.0 1.1.3.0 51 ------- null} h -t 9.94035 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 9.94195 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {0.0.3.0 1.1.3.0 52 ------- null} + -t 9.94195 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {0.0.3.0 1.1.3.0 52 ------- null} - -t 9.94195 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {0.0.3.0 1.1.3.0 52 ------- null} h -t 9.94195 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 9.94355 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 104 -a 0 -x {0.0.3.0 1.1.3.0 53 ------- null} + -t 9.94355 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 104 -a 0 -x {0.0.3.0 1.1.3.0 53 ------- null} - -t 9.94355 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 104 -a 0 -x {0.0.3.0 1.1.3.0 53 ------- null} h -t 9.94355 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 104 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 9.94515 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {0.0.3.0 1.1.3.0 54 ------- null} + -t 9.94515 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {0.0.3.0 1.1.3.0 54 ------- null} - -t 9.94515 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {0.0.3.0 1.1.3.0 54 ------- null} h -t 9.94515 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 9.94675 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 106 -a 0 -x {0.0.3.0 1.1.3.0 55 ------- null} + -t 9.94675 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 106 -a 0 -x {0.0.3.0 1.1.3.0 55 ------- null} - -t 9.94675 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 106 -a 0 -x {0.0.3.0 1.1.3.0 55 ------- null} h -t 9.94675 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 106 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 9.94835 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {0.0.3.0 1.1.3.0 56 ------- null} + -t 9.94835 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {0.0.3.0 1.1.3.0 56 ------- null} - -t 9.94835 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {0.0.3.0 1.1.3.0 56 ------- null} h -t 9.94835 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 9.94995 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 108 -a 0 -x {0.0.3.0 1.1.3.0 57 ------- null} + -t 9.94995 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 108 -a 0 -x {0.0.3.0 1.1.3.0 57 ------- null} - -t 9.94995 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 108 -a 0 -x {0.0.3.0 1.1.3.0 57 ------- null} h -t 9.94995 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 108 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 9.95155 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {0.0.3.0 1.1.3.0 58 ------- null} + -t 9.95155 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {0.0.3.0 1.1.3.0 58 ------- null} - -t 9.95155 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {0.0.3.0 1.1.3.0 58 ------- null} h -t 9.95155 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 9.95315 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 110 -a 0 -x {0.0.3.0 1.1.3.0 59 ------- null} + -t 9.95315 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 110 -a 0 -x {0.0.3.0 1.1.3.0 59 ------- null} - -t 9.95315 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 110 -a 0 -x {0.0.3.0 1.1.3.0 59 ------- null} h -t 9.95315 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 110 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 9.95475 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {0.0.3.0 1.1.3.0 60 ------- null} + -t 9.95475 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {0.0.3.0 1.1.3.0 60 ------- null} - -t 9.95475 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {0.0.3.0 1.1.3.0 60 ------- null} h -t 9.95475 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 9.95635 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {0.0.3.0 1.1.3.0 61 ------- null} + -t 9.95635 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {0.0.3.0 1.1.3.0 61 ------- null} - -t 9.95635 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {0.0.3.0 1.1.3.0 61 ------- null} h -t 9.95635 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 9.95795 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {0.0.3.0 1.1.3.0 62 ------- null} + -t 9.95795 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {0.0.3.0 1.1.3.0 62 ------- null} - -t 9.95795 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {0.0.3.0 1.1.3.0 62 ------- null} h -t 9.95795 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 9.95955 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 114 -a 0 -x {0.0.3.0 1.1.3.0 63 ------- null} + -t 9.95955 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 114 -a 0 -x {0.0.3.0 1.1.3.0 63 ------- null} - -t 9.95955 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 114 -a 0 -x {0.0.3.0 1.1.3.0 63 ------- null} h -t 9.95955 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 114 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 9.96115 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {0.0.3.0 1.1.3.0 64 ------- null} + -t 9.96115 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {0.0.3.0 1.1.3.0 64 ------- null} - -t 9.96115 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {0.0.3.0 1.1.3.0 64 ------- null} h -t 9.96115 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 9.96275 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {0.0.3.0 1.1.3.0 65 ------- null} + -t 9.96275 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {0.0.3.0 1.1.3.0 65 ------- null} - -t 9.96275 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {0.0.3.0 1.1.3.0 65 ------- null} h -t 9.96275 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 9.96435 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {0.0.3.0 1.1.3.0 66 ------- null} + -t 9.96435 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {0.0.3.0 1.1.3.0 66 ------- null} - -t 9.96435 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {0.0.3.0 1.1.3.0 66 ------- null} h -t 9.96435 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 9.96595 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {0.0.3.0 1.1.3.0 67 ------- null} + -t 9.96595 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {0.0.3.0 1.1.3.0 67 ------- null} - -t 9.96595 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {0.0.3.0 1.1.3.0 67 ------- null} h -t 9.96595 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 9.96755 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {0.0.3.0 1.1.3.0 68 ------- null} + -t 9.96755 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {0.0.3.0 1.1.3.0 68 ------- null} - -t 9.96755 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {0.0.3.0 1.1.3.0 68 ------- null} h -t 9.96755 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 9.96915 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {0.0.3.0 1.1.3.0 69 ------- null} + -t 9.96915 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {0.0.3.0 1.1.3.0 69 ------- null} - -t 9.96915 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {0.0.3.0 1.1.3.0 69 ------- null} h -t 9.96915 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 9.97075 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {0.0.3.0 1.1.3.0 70 ------- null} + -t 9.97075 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {0.0.3.0 1.1.3.0 70 ------- null} - -t 9.97075 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {0.0.3.0 1.1.3.0 70 ------- null} h -t 9.97075 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.242 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {0.0.3.0 1.1.3.0 51 ------- null} + -t 10.242 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {0.0.3.0 1.1.3.0 51 ------- null} - -t 10.242 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {0.0.3.0 1.1.3.0 51 ------- null} h -t 10.242 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.2436 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {0.0.3.0 1.1.3.0 52 ------- null} + -t 10.2436 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {0.0.3.0 1.1.3.0 52 ------- null} - -t 10.2436 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {0.0.3.0 1.1.3.0 52 ------- null} h -t 10.2436 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.2452 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 104 -a 0 -x {0.0.3.0 1.1.3.0 53 ------- null} + -t 10.2452 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 104 -a 0 -x {0.0.3.0 1.1.3.0 53 ------- null} - -t 10.2452 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 104 -a 0 -x {0.0.3.0 1.1.3.0 53 ------- null} h -t 10.2452 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 104 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.2468 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {0.0.3.0 1.1.3.0 54 ------- null} + -t 10.2468 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {0.0.3.0 1.1.3.0 54 ------- null} - -t 10.2468 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {0.0.3.0 1.1.3.0 54 ------- null} h -t 10.2468 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.2484 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 106 -a 0 -x {0.0.3.0 1.1.3.0 55 ------- null} + -t 10.2484 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 106 -a 0 -x {0.0.3.0 1.1.3.0 55 ------- null} - -t 10.2484 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 106 -a 0 -x {0.0.3.0 1.1.3.0 55 ------- null} h -t 10.2484 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 106 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.25 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {0.0.3.0 1.1.3.0 56 ------- null} + -t 10.25 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {0.0.3.0 1.1.3.0 56 ------- null} - -t 10.25 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {0.0.3.0 1.1.3.0 56 ------- null} h -t 10.25 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.2516 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 108 -a 0 -x {0.0.3.0 1.1.3.0 57 ------- null} + -t 10.2516 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 108 -a 0 -x {0.0.3.0 1.1.3.0 57 ------- null} - -t 10.2516 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 108 -a 0 -x {0.0.3.0 1.1.3.0 57 ------- null} h -t 10.2516 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 108 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.2532 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {0.0.3.0 1.1.3.0 58 ------- null} + -t 10.2532 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {0.0.3.0 1.1.3.0 58 ------- null} - -t 10.2532 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {0.0.3.0 1.1.3.0 58 ------- null} h -t 10.2532 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.2548 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 110 -a 0 -x {0.0.3.0 1.1.3.0 59 ------- null} + -t 10.2548 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 110 -a 0 -x {0.0.3.0 1.1.3.0 59 ------- null} - -t 10.2548 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 110 -a 0 -x {0.0.3.0 1.1.3.0 59 ------- null} h -t 10.2548 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 110 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.2564 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {0.0.3.0 1.1.3.0 60 ------- null} + -t 10.2564 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {0.0.3.0 1.1.3.0 60 ------- null} - -t 10.2564 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {0.0.3.0 1.1.3.0 60 ------- null} h -t 10.2564 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.258 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {0.0.3.0 1.1.3.0 61 ------- null} + -t 10.258 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {0.0.3.0 1.1.3.0 61 ------- null} - -t 10.258 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {0.0.3.0 1.1.3.0 61 ------- null} h -t 10.258 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.2596 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {0.0.3.0 1.1.3.0 62 ------- null} + -t 10.2596 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {0.0.3.0 1.1.3.0 62 ------- null} - -t 10.2596 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {0.0.3.0 1.1.3.0 62 ------- null} h -t 10.2596 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.2612 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 114 -a 0 -x {0.0.3.0 1.1.3.0 63 ------- null} + -t 10.2612 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 114 -a 0 -x {0.0.3.0 1.1.3.0 63 ------- null} - -t 10.2612 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 114 -a 0 -x {0.0.3.0 1.1.3.0 63 ------- null} h -t 10.2612 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 114 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.2628 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {0.0.3.0 1.1.3.0 64 ------- null} + -t 10.2628 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {0.0.3.0 1.1.3.0 64 ------- null} - -t 10.2628 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {0.0.3.0 1.1.3.0 64 ------- null} h -t 10.2628 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.2644 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {0.0.3.0 1.1.3.0 65 ------- null} + -t 10.2644 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {0.0.3.0 1.1.3.0 65 ------- null} - -t 10.2644 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {0.0.3.0 1.1.3.0 65 ------- null} h -t 10.2644 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.266 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {0.0.3.0 1.1.3.0 66 ------- null} + -t 10.266 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {0.0.3.0 1.1.3.0 66 ------- null} - -t 10.266 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {0.0.3.0 1.1.3.0 66 ------- null} h -t 10.266 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.2676 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {0.0.3.0 1.1.3.0 67 ------- null} + -t 10.2676 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {0.0.3.0 1.1.3.0 67 ------- null} - -t 10.2676 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {0.0.3.0 1.1.3.0 67 ------- null} h -t 10.2676 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.2692 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {0.0.3.0 1.1.3.0 68 ------- null} + -t 10.2692 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {0.0.3.0 1.1.3.0 68 ------- null} - -t 10.2692 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {0.0.3.0 1.1.3.0 68 ------- null} h -t 10.2692 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.2708 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {0.0.3.0 1.1.3.0 69 ------- null} + -t 10.2708 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {0.0.3.0 1.1.3.0 69 ------- null} - -t 10.2708 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {0.0.3.0 1.1.3.0 69 ------- null} h -t 10.2708 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.2724 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {0.0.3.0 1.1.3.0 70 ------- null} + -t 10.2724 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {0.0.3.0 1.1.3.0 70 ------- null} - -t 10.2724 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {0.0.3.0 1.1.3.0 70 ------- null} h -t 10.2724 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.3436 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {0.0.3.0 1.1.3.0 51 ------- null} + -t 10.3436 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {0.0.3.0 1.1.3.0 51 ------- null} - -t 10.3436 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {0.0.3.0 1.1.3.0 51 ------- null} h -t 10.3436 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.3452 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {0.0.3.0 1.1.3.0 52 ------- null} + -t 10.3452 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {0.0.3.0 1.1.3.0 52 ------- null} - -t 10.3452 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {0.0.3.0 1.1.3.0 52 ------- null} h -t 10.3452 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.3468 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 104 -a 0 -x {0.0.3.0 1.1.3.0 53 ------- null} + -t 10.3468 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 104 -a 0 -x {0.0.3.0 1.1.3.0 53 ------- null} - -t 10.3468 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 104 -a 0 -x {0.0.3.0 1.1.3.0 53 ------- null} h -t 10.3468 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 104 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.3484 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {0.0.3.0 1.1.3.0 54 ------- null} + -t 10.3484 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {0.0.3.0 1.1.3.0 54 ------- null} - -t 10.3484 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {0.0.3.0 1.1.3.0 54 ------- null} h -t 10.3484 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.35 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 106 -a 0 -x {0.0.3.0 1.1.3.0 55 ------- null} + -t 10.35 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 106 -a 0 -x {0.0.3.0 1.1.3.0 55 ------- null} - -t 10.35 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 106 -a 0 -x {0.0.3.0 1.1.3.0 55 ------- null} h -t 10.35 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 106 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.3516 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {0.0.3.0 1.1.3.0 56 ------- null} + -t 10.3516 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {0.0.3.0 1.1.3.0 56 ------- null} - -t 10.3516 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {0.0.3.0 1.1.3.0 56 ------- null} h -t 10.3516 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.3532 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 108 -a 0 -x {0.0.3.0 1.1.3.0 57 ------- null} + -t 10.3532 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 108 -a 0 -x {0.0.3.0 1.1.3.0 57 ------- null} - -t 10.3532 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 108 -a 0 -x {0.0.3.0 1.1.3.0 57 ------- null} h -t 10.3532 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 108 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.3548 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {0.0.3.0 1.1.3.0 58 ------- null} + -t 10.3548 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {0.0.3.0 1.1.3.0 58 ------- null} - -t 10.3548 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {0.0.3.0 1.1.3.0 58 ------- null} h -t 10.3548 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.3564 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 110 -a 0 -x {0.0.3.0 1.1.3.0 59 ------- null} + -t 10.3564 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 110 -a 0 -x {0.0.3.0 1.1.3.0 59 ------- null} - -t 10.3564 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 110 -a 0 -x {0.0.3.0 1.1.3.0 59 ------- null} h -t 10.3564 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 110 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.358 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {0.0.3.0 1.1.3.0 60 ------- null} + -t 10.358 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {0.0.3.0 1.1.3.0 60 ------- null} - -t 10.358 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {0.0.3.0 1.1.3.0 60 ------- null} h -t 10.358 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.3596 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {0.0.3.0 1.1.3.0 61 ------- null} + -t 10.3596 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {0.0.3.0 1.1.3.0 61 ------- null} - -t 10.3596 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {0.0.3.0 1.1.3.0 61 ------- null} h -t 10.3596 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.3612 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {0.0.3.0 1.1.3.0 62 ------- null} + -t 10.3612 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {0.0.3.0 1.1.3.0 62 ------- null} - -t 10.3612 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {0.0.3.0 1.1.3.0 62 ------- null} h -t 10.3612 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.3628 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 114 -a 0 -x {0.0.3.0 1.1.3.0 63 ------- null} + -t 10.3628 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 114 -a 0 -x {0.0.3.0 1.1.3.0 63 ------- null} - -t 10.3628 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 114 -a 0 -x {0.0.3.0 1.1.3.0 63 ------- null} h -t 10.3628 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 114 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.3644 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {0.0.3.0 1.1.3.0 64 ------- null} + -t 10.3644 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {0.0.3.0 1.1.3.0 64 ------- null} - -t 10.3644 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {0.0.3.0 1.1.3.0 64 ------- null} h -t 10.3644 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.366 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {0.0.3.0 1.1.3.0 65 ------- null} + -t 10.366 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {0.0.3.0 1.1.3.0 65 ------- null} - -t 10.366 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {0.0.3.0 1.1.3.0 65 ------- null} h -t 10.366 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.3676 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {0.0.3.0 1.1.3.0 66 ------- null} + -t 10.3676 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {0.0.3.0 1.1.3.0 66 ------- null} - -t 10.3676 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {0.0.3.0 1.1.3.0 66 ------- null} h -t 10.3676 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.3692 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {0.0.3.0 1.1.3.0 67 ------- null} + -t 10.3692 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {0.0.3.0 1.1.3.0 67 ------- null} - -t 10.3692 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {0.0.3.0 1.1.3.0 67 ------- null} h -t 10.3692 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.3708 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {0.0.3.0 1.1.3.0 68 ------- null} + -t 10.3708 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {0.0.3.0 1.1.3.0 68 ------- null} - -t 10.3708 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {0.0.3.0 1.1.3.0 68 ------- null} h -t 10.3708 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.3724 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {0.0.3.0 1.1.3.0 69 ------- null} + -t 10.3724 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {0.0.3.0 1.1.3.0 69 ------- null} - -t 10.3724 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {0.0.3.0 1.1.3.0 69 ------- null} h -t 10.3724 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.374 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {0.0.3.0 1.1.3.0 70 ------- null} + -t 10.374 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {0.0.3.0 1.1.3.0 70 ------- null} - -t 10.374 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {0.0.3.0 1.1.3.0 70 ------- null} h -t 10.374 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.4252 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {0.0.3.0 1.1.3.0 51 ------- null} + -t 10.4252 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {0.0.3.0 1.1.3.0 51 ------- null} - -t 10.4252 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {0.0.3.0 1.1.3.0 51 ------- null} h -t 10.4252 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.4268 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {0.0.3.0 1.1.3.0 52 ------- null} + -t 10.4268 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {0.0.3.0 1.1.3.0 52 ------- null} - -t 10.4268 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {0.0.3.0 1.1.3.0 52 ------- null} h -t 10.4268 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.4284 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 104 -a 0 -x {0.0.3.0 1.1.3.0 53 ------- null} + -t 10.4284 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 104 -a 0 -x {0.0.3.0 1.1.3.0 53 ------- null} - -t 10.4284 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 104 -a 0 -x {0.0.3.0 1.1.3.0 53 ------- null} h -t 10.4284 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 104 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.43 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {0.0.3.0 1.1.3.0 54 ------- null} + -t 10.43 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {0.0.3.0 1.1.3.0 54 ------- null} - -t 10.43 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {0.0.3.0 1.1.3.0 54 ------- null} h -t 10.43 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.4316 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 106 -a 0 -x {0.0.3.0 1.1.3.0 55 ------- null} + -t 10.4316 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 106 -a 0 -x {0.0.3.0 1.1.3.0 55 ------- null} - -t 10.4316 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 106 -a 0 -x {0.0.3.0 1.1.3.0 55 ------- null} h -t 10.4316 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 106 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.4332 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {0.0.3.0 1.1.3.0 56 ------- null} + -t 10.4332 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {0.0.3.0 1.1.3.0 56 ------- null} - -t 10.4332 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {0.0.3.0 1.1.3.0 56 ------- null} h -t 10.4332 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.4348 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 108 -a 0 -x {0.0.3.0 1.1.3.0 57 ------- null} + -t 10.4348 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 108 -a 0 -x {0.0.3.0 1.1.3.0 57 ------- null} - -t 10.4348 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 108 -a 0 -x {0.0.3.0 1.1.3.0 57 ------- null} h -t 10.4348 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 108 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.4364 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {0.0.3.0 1.1.3.0 58 ------- null} + -t 10.4364 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {0.0.3.0 1.1.3.0 58 ------- null} - -t 10.4364 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {0.0.3.0 1.1.3.0 58 ------- null} h -t 10.4364 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.438 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 110 -a 0 -x {0.0.3.0 1.1.3.0 59 ------- null} + -t 10.438 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 110 -a 0 -x {0.0.3.0 1.1.3.0 59 ------- null} - -t 10.438 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 110 -a 0 -x {0.0.3.0 1.1.3.0 59 ------- null} h -t 10.438 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 110 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.4396 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {0.0.3.0 1.1.3.0 60 ------- null} + -t 10.4396 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {0.0.3.0 1.1.3.0 60 ------- null} - -t 10.4396 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {0.0.3.0 1.1.3.0 60 ------- null} h -t 10.4396 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.4412 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {0.0.3.0 1.1.3.0 61 ------- null} + -t 10.4412 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {0.0.3.0 1.1.3.0 61 ------- null} - -t 10.4412 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {0.0.3.0 1.1.3.0 61 ------- null} h -t 10.4412 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.4428 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {0.0.3.0 1.1.3.0 62 ------- null} + -t 10.4428 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {0.0.3.0 1.1.3.0 62 ------- null} - -t 10.4428 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {0.0.3.0 1.1.3.0 62 ------- null} h -t 10.4428 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.4444 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 114 -a 0 -x {0.0.3.0 1.1.3.0 63 ------- null} + -t 10.4444 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 114 -a 0 -x {0.0.3.0 1.1.3.0 63 ------- null} - -t 10.4444 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 114 -a 0 -x {0.0.3.0 1.1.3.0 63 ------- null} h -t 10.4444 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 114 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.446 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {0.0.3.0 1.1.3.0 64 ------- null} + -t 10.446 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {0.0.3.0 1.1.3.0 64 ------- null} - -t 10.446 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {0.0.3.0 1.1.3.0 64 ------- null} h -t 10.446 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.4476 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {0.0.3.0 1.1.3.0 65 ------- null} + -t 10.4476 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {0.0.3.0 1.1.3.0 65 ------- null} - -t 10.4476 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {0.0.3.0 1.1.3.0 65 ------- null} h -t 10.4476 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.4492 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {0.0.3.0 1.1.3.0 66 ------- null} + -t 10.4492 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {0.0.3.0 1.1.3.0 66 ------- null} - -t 10.4492 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {0.0.3.0 1.1.3.0 66 ------- null} h -t 10.4492 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.4508 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {0.0.3.0 1.1.3.0 67 ------- null} + -t 10.4508 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {0.0.3.0 1.1.3.0 67 ------- null} - -t 10.4508 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {0.0.3.0 1.1.3.0 67 ------- null} h -t 10.4508 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.4524 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {0.0.3.0 1.1.3.0 68 ------- null} + -t 10.4524 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {0.0.3.0 1.1.3.0 68 ------- null} - -t 10.4524 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {0.0.3.0 1.1.3.0 68 ------- null} h -t 10.4524 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.454 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {0.0.3.0 1.1.3.0 69 ------- null} + -t 10.454 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {0.0.3.0 1.1.3.0 69 ------- null} - -t 10.454 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {0.0.3.0 1.1.3.0 69 ------- null} h -t 10.454 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.4556 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {0.0.3.0 1.1.3.0 70 ------- null} + -t 10.4556 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {0.0.3.0 1.1.3.0 70 ------- null} - -t 10.4556 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {0.0.3.0 1.1.3.0 70 ------- null} h -t 10.4556 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.5068 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {0.0.3.0 1.1.3.0 51 ------- null} + -t 10.5068 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {0.0.3.0 1.1.3.0 51 ------- null} - -t 10.5068 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {0.0.3.0 1.1.3.0 51 ------- null} h -t 10.5068 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.5084 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {0.0.3.0 1.1.3.0 52 ------- null} + -t 10.5084 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {0.0.3.0 1.1.3.0 52 ------- null} - -t 10.5084 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {0.0.3.0 1.1.3.0 52 ------- null} h -t 10.5084 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.51 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 104 -a 0 -x {0.0.3.0 1.1.3.0 53 ------- null} + -t 10.51 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 104 -a 0 -x {0.0.3.0 1.1.3.0 53 ------- null} - -t 10.51 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 104 -a 0 -x {0.0.3.0 1.1.3.0 53 ------- null} h -t 10.51 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 104 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.5116 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {0.0.3.0 1.1.3.0 54 ------- null} + -t 10.5116 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {0.0.3.0 1.1.3.0 54 ------- null} - -t 10.5116 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {0.0.3.0 1.1.3.0 54 ------- null} h -t 10.5116 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.5132 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 106 -a 0 -x {0.0.3.0 1.1.3.0 55 ------- null} + -t 10.5132 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 106 -a 0 -x {0.0.3.0 1.1.3.0 55 ------- null} - -t 10.5132 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 106 -a 0 -x {0.0.3.0 1.1.3.0 55 ------- null} h -t 10.5132 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 106 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.5148 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {0.0.3.0 1.1.3.0 56 ------- null} + -t 10.5148 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {0.0.3.0 1.1.3.0 56 ------- null} - -t 10.5148 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {0.0.3.0 1.1.3.0 56 ------- null} h -t 10.5148 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.5164 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 108 -a 0 -x {0.0.3.0 1.1.3.0 57 ------- null} + -t 10.5164 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 108 -a 0 -x {0.0.3.0 1.1.3.0 57 ------- null} - -t 10.5164 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 108 -a 0 -x {0.0.3.0 1.1.3.0 57 ------- null} h -t 10.5164 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 108 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.518 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {0.0.3.0 1.1.3.0 58 ------- null} + -t 10.518 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {0.0.3.0 1.1.3.0 58 ------- null} - -t 10.518 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {0.0.3.0 1.1.3.0 58 ------- null} h -t 10.518 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.5196 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 110 -a 0 -x {0.0.3.0 1.1.3.0 59 ------- null} + -t 10.5196 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 110 -a 0 -x {0.0.3.0 1.1.3.0 59 ------- null} - -t 10.5196 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 110 -a 0 -x {0.0.3.0 1.1.3.0 59 ------- null} h -t 10.5196 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 110 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.5212 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {0.0.3.0 1.1.3.0 60 ------- null} + -t 10.5212 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {0.0.3.0 1.1.3.0 60 ------- null} - -t 10.5212 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {0.0.3.0 1.1.3.0 60 ------- null} h -t 10.5212 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.5228 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {0.0.3.0 1.1.3.0 61 ------- null} + -t 10.5228 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {0.0.3.0 1.1.3.0 61 ------- null} - -t 10.5228 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {0.0.3.0 1.1.3.0 61 ------- null} h -t 10.5228 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.5244 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {0.0.3.0 1.1.3.0 62 ------- null} + -t 10.5244 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {0.0.3.0 1.1.3.0 62 ------- null} - -t 10.5244 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {0.0.3.0 1.1.3.0 62 ------- null} h -t 10.5244 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.526 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 114 -a 0 -x {0.0.3.0 1.1.3.0 63 ------- null} + -t 10.526 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 114 -a 0 -x {0.0.3.0 1.1.3.0 63 ------- null} - -t 10.526 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 114 -a 0 -x {0.0.3.0 1.1.3.0 63 ------- null} h -t 10.526 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 114 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.5276 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {0.0.3.0 1.1.3.0 64 ------- null} + -t 10.5276 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {0.0.3.0 1.1.3.0 64 ------- null} - -t 10.5276 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {0.0.3.0 1.1.3.0 64 ------- null} h -t 10.5276 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.5292 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {0.0.3.0 1.1.3.0 65 ------- null} + -t 10.5292 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {0.0.3.0 1.1.3.0 65 ------- null} - -t 10.5292 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {0.0.3.0 1.1.3.0 65 ------- null} h -t 10.5292 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.5308 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {0.0.3.0 1.1.3.0 66 ------- null} + -t 10.5308 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {0.0.3.0 1.1.3.0 66 ------- null} - -t 10.5308 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {0.0.3.0 1.1.3.0 66 ------- null} h -t 10.5308 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.5324 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {0.0.3.0 1.1.3.0 67 ------- null} + -t 10.5324 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {0.0.3.0 1.1.3.0 67 ------- null} - -t 10.5324 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {0.0.3.0 1.1.3.0 67 ------- null} h -t 10.5324 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.534 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {0.0.3.0 1.1.3.0 68 ------- null} + -t 10.534 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {0.0.3.0 1.1.3.0 68 ------- null} - -t 10.534 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {0.0.3.0 1.1.3.0 68 ------- null} h -t 10.534 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.5356 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {0.0.3.0 1.1.3.0 69 ------- null} + -t 10.5356 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {0.0.3.0 1.1.3.0 69 ------- null} - -t 10.5356 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {0.0.3.0 1.1.3.0 69 ------- null} h -t 10.5356 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.5372 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {0.0.3.0 1.1.3.0 70 ------- null} + -t 10.5372 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {0.0.3.0 1.1.3.0 70 ------- null} - -t 10.5372 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {0.0.3.0 1.1.3.0 70 ------- null} h -t 10.5372 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 10.5684 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 102 -a 0 -x {0.0.3.0 1.1.3.0 51 ------- null} + -t 10.5684 -s 21 -d 28 -p ack -e 40 -c 0 -i 122 -a 1 -x {1.1.3.0 0.0.3.0 51 ------- null} - -t 10.5684 -s 21 -d 28 -p ack -e 40 -c 0 -i 122 -a 1 -x {1.1.3.0 0.0.3.0 51 ------- null} h -t 10.5684 -s 21 -d 28 -p ack -e 40 -c 0 -i 122 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 10.57 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {0.0.3.0 1.1.3.0 52 ------- null} + -t 10.57 -s 21 -d 28 -p ack -e 40 -c 0 -i 123 -a 1 -x {1.1.3.0 0.0.3.0 52 ------- null} - -t 10.57 -s 21 -d 28 -p ack -e 40 -c 0 -i 123 -a 1 -x {1.1.3.0 0.0.3.0 52 ------- null} h -t 10.57 -s 21 -d 28 -p ack -e 40 -c 0 -i 123 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 10.5716 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 104 -a 0 -x {0.0.3.0 1.1.3.0 53 ------- null} + -t 10.5716 -s 21 -d 28 -p ack -e 40 -c 0 -i 124 -a 1 -x {1.1.3.0 0.0.3.0 53 ------- null} - -t 10.5716 -s 21 -d 28 -p ack -e 40 -c 0 -i 124 -a 1 -x {1.1.3.0 0.0.3.0 53 ------- null} h -t 10.5716 -s 21 -d 28 -p ack -e 40 -c 0 -i 124 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 10.5732 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {0.0.3.0 1.1.3.0 54 ------- null} + -t 10.5732 -s 21 -d 28 -p ack -e 40 -c 0 -i 125 -a 1 -x {1.1.3.0 0.0.3.0 54 ------- null} - -t 10.5732 -s 21 -d 28 -p ack -e 40 -c 0 -i 125 -a 1 -x {1.1.3.0 0.0.3.0 54 ------- null} h -t 10.5732 -s 21 -d 28 -p ack -e 40 -c 0 -i 125 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 10.5748 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 106 -a 0 -x {0.0.3.0 1.1.3.0 55 ------- null} + -t 10.5748 -s 21 -d 28 -p ack -e 40 -c 0 -i 126 -a 1 -x {1.1.3.0 0.0.3.0 55 ------- null} - -t 10.5748 -s 21 -d 28 -p ack -e 40 -c 0 -i 126 -a 1 -x {1.1.3.0 0.0.3.0 55 ------- null} h -t 10.5748 -s 21 -d 28 -p ack -e 40 -c 0 -i 126 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 10.5764 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {0.0.3.0 1.1.3.0 56 ------- null} + -t 10.5764 -s 21 -d 28 -p ack -e 40 -c 0 -i 127 -a 1 -x {1.1.3.0 0.0.3.0 56 ------- null} - -t 10.5764 -s 21 -d 28 -p ack -e 40 -c 0 -i 127 -a 1 -x {1.1.3.0 0.0.3.0 56 ------- null} h -t 10.5764 -s 21 -d 28 -p ack -e 40 -c 0 -i 127 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 10.578 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 108 -a 0 -x {0.0.3.0 1.1.3.0 57 ------- null} + -t 10.578 -s 21 -d 28 -p ack -e 40 -c 0 -i 128 -a 1 -x {1.1.3.0 0.0.3.0 57 ------- null} - -t 10.578 -s 21 -d 28 -p ack -e 40 -c 0 -i 128 -a 1 -x {1.1.3.0 0.0.3.0 57 ------- null} h -t 10.578 -s 21 -d 28 -p ack -e 40 -c 0 -i 128 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 10.5796 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {0.0.3.0 1.1.3.0 58 ------- null} + -t 10.5796 -s 21 -d 28 -p ack -e 40 -c 0 -i 129 -a 1 -x {1.1.3.0 0.0.3.0 58 ------- null} - -t 10.5796 -s 21 -d 28 -p ack -e 40 -c 0 -i 129 -a 1 -x {1.1.3.0 0.0.3.0 58 ------- null} h -t 10.5796 -s 21 -d 28 -p ack -e 40 -c 0 -i 129 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 10.5812 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 110 -a 0 -x {0.0.3.0 1.1.3.0 59 ------- null} + -t 10.5812 -s 21 -d 28 -p ack -e 40 -c 0 -i 130 -a 1 -x {1.1.3.0 0.0.3.0 59 ------- null} - -t 10.5812 -s 21 -d 28 -p ack -e 40 -c 0 -i 130 -a 1 -x {1.1.3.0 0.0.3.0 59 ------- null} h -t 10.5812 -s 21 -d 28 -p ack -e 40 -c 0 -i 130 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 10.5828 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {0.0.3.0 1.1.3.0 60 ------- null} + -t 10.5828 -s 21 -d 28 -p ack -e 40 -c 0 -i 131 -a 1 -x {1.1.3.0 0.0.3.0 60 ------- null} - -t 10.5828 -s 21 -d 28 -p ack -e 40 -c 0 -i 131 -a 1 -x {1.1.3.0 0.0.3.0 60 ------- null} h -t 10.5828 -s 21 -d 28 -p ack -e 40 -c 0 -i 131 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 10.5844 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 112 -a 0 -x {0.0.3.0 1.1.3.0 61 ------- null} + -t 10.5844 -s 21 -d 28 -p ack -e 40 -c 0 -i 132 -a 1 -x {1.1.3.0 0.0.3.0 61 ------- null} - -t 10.5844 -s 21 -d 28 -p ack -e 40 -c 0 -i 132 -a 1 -x {1.1.3.0 0.0.3.0 61 ------- null} h -t 10.5844 -s 21 -d 28 -p ack -e 40 -c 0 -i 132 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 10.586 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {0.0.3.0 1.1.3.0 62 ------- null} + -t 10.586 -s 21 -d 28 -p ack -e 40 -c 0 -i 133 -a 1 -x {1.1.3.0 0.0.3.0 62 ------- null} - -t 10.586 -s 21 -d 28 -p ack -e 40 -c 0 -i 133 -a 1 -x {1.1.3.0 0.0.3.0 62 ------- null} h -t 10.586 -s 21 -d 28 -p ack -e 40 -c 0 -i 133 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 10.5876 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 114 -a 0 -x {0.0.3.0 1.1.3.0 63 ------- null} + -t 10.5876 -s 21 -d 28 -p ack -e 40 -c 0 -i 134 -a 1 -x {1.1.3.0 0.0.3.0 63 ------- null} - -t 10.5876 -s 21 -d 28 -p ack -e 40 -c 0 -i 134 -a 1 -x {1.1.3.0 0.0.3.0 63 ------- null} h -t 10.5876 -s 21 -d 28 -p ack -e 40 -c 0 -i 134 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 10.5892 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {0.0.3.0 1.1.3.0 64 ------- null} + -t 10.5892 -s 21 -d 28 -p ack -e 40 -c 0 -i 135 -a 1 -x {1.1.3.0 0.0.3.0 64 ------- null} - -t 10.5892 -s 21 -d 28 -p ack -e 40 -c 0 -i 135 -a 1 -x {1.1.3.0 0.0.3.0 64 ------- null} h -t 10.5892 -s 21 -d 28 -p ack -e 40 -c 0 -i 135 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 10.5908 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 116 -a 0 -x {0.0.3.0 1.1.3.0 65 ------- null} + -t 10.5908 -s 21 -d 28 -p ack -e 40 -c 0 -i 136 -a 1 -x {1.1.3.0 0.0.3.0 65 ------- null} - -t 10.5908 -s 21 -d 28 -p ack -e 40 -c 0 -i 136 -a 1 -x {1.1.3.0 0.0.3.0 65 ------- null} h -t 10.5908 -s 21 -d 28 -p ack -e 40 -c 0 -i 136 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 10.5924 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {0.0.3.0 1.1.3.0 66 ------- null} + -t 10.5924 -s 21 -d 28 -p ack -e 40 -c 0 -i 137 -a 1 -x {1.1.3.0 0.0.3.0 66 ------- null} - -t 10.5924 -s 21 -d 28 -p ack -e 40 -c 0 -i 137 -a 1 -x {1.1.3.0 0.0.3.0 66 ------- null} h -t 10.5924 -s 21 -d 28 -p ack -e 40 -c 0 -i 137 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 10.594 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {0.0.3.0 1.1.3.0 67 ------- null} + -t 10.594 -s 21 -d 28 -p ack -e 40 -c 0 -i 138 -a 1 -x {1.1.3.0 0.0.3.0 67 ------- null} - -t 10.594 -s 21 -d 28 -p ack -e 40 -c 0 -i 138 -a 1 -x {1.1.3.0 0.0.3.0 67 ------- null} h -t 10.594 -s 21 -d 28 -p ack -e 40 -c 0 -i 138 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 10.5956 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {0.0.3.0 1.1.3.0 68 ------- null} + -t 10.5956 -s 21 -d 28 -p ack -e 40 -c 0 -i 139 -a 1 -x {1.1.3.0 0.0.3.0 68 ------- null} - -t 10.5956 -s 21 -d 28 -p ack -e 40 -c 0 -i 139 -a 1 -x {1.1.3.0 0.0.3.0 68 ------- null} h -t 10.5956 -s 21 -d 28 -p ack -e 40 -c 0 -i 139 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 10.5972 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 120 -a 0 -x {0.0.3.0 1.1.3.0 69 ------- null} + -t 10.5972 -s 21 -d 28 -p ack -e 40 -c 0 -i 140 -a 1 -x {1.1.3.0 0.0.3.0 69 ------- null} - -t 10.5972 -s 21 -d 28 -p ack -e 40 -c 0 -i 140 -a 1 -x {1.1.3.0 0.0.3.0 69 ------- null} h -t 10.5972 -s 21 -d 28 -p ack -e 40 -c 0 -i 140 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 10.5988 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {0.0.3.0 1.1.3.0 70 ------- null} + -t 10.5988 -s 21 -d 28 -p ack -e 40 -c 0 -i 141 -a 1 -x {1.1.3.0 0.0.3.0 70 ------- null} - -t 10.5988 -s 21 -d 28 -p ack -e 40 -c 0 -i 141 -a 1 -x {1.1.3.0 0.0.3.0 70 ------- null} h -t 10.5988 -s 21 -d 28 -p ack -e 40 -c 0 -i 141 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 10.9184 -s 21 -d 28 -p ack -e 40 -c 0 -i 122 -a 1 -x {1.1.3.0 0.0.3.0 51 ------- null} + -t 10.9184 -s 28 -d 1 -p ack -e 40 -c 0 -i 122 -a 1 -x {1.1.3.0 0.0.3.0 51 ------- null} - -t 10.9184 -s 28 -d 1 -p ack -e 40 -c 0 -i 122 -a 1 -x {1.1.3.0 0.0.3.0 51 ------- null} h -t 10.9184 -s 28 -d 1 -p ack -e 40 -c 0 -i 122 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 10.92 -s 21 -d 28 -p ack -e 40 -c 0 -i 123 -a 1 -x {1.1.3.0 0.0.3.0 52 ------- null} + -t 10.92 -s 28 -d 1 -p ack -e 40 -c 0 -i 123 -a 1 -x {1.1.3.0 0.0.3.0 52 ------- null} - -t 10.92 -s 28 -d 1 -p ack -e 40 -c 0 -i 123 -a 1 -x {1.1.3.0 0.0.3.0 52 ------- null} h -t 10.92 -s 28 -d 1 -p ack -e 40 -c 0 -i 123 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 10.9216 -s 21 -d 28 -p ack -e 40 -c 0 -i 124 -a 1 -x {1.1.3.0 0.0.3.0 53 ------- null} + -t 10.9216 -s 28 -d 1 -p ack -e 40 -c 0 -i 124 -a 1 -x {1.1.3.0 0.0.3.0 53 ------- null} - -t 10.9216 -s 28 -d 1 -p ack -e 40 -c 0 -i 124 -a 1 -x {1.1.3.0 0.0.3.0 53 ------- null} h -t 10.9216 -s 28 -d 1 -p ack -e 40 -c 0 -i 124 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 10.9232 -s 21 -d 28 -p ack -e 40 -c 0 -i 125 -a 1 -x {1.1.3.0 0.0.3.0 54 ------- null} + -t 10.9232 -s 28 -d 1 -p ack -e 40 -c 0 -i 125 -a 1 -x {1.1.3.0 0.0.3.0 54 ------- null} - -t 10.9232 -s 28 -d 1 -p ack -e 40 -c 0 -i 125 -a 1 -x {1.1.3.0 0.0.3.0 54 ------- null} h -t 10.9232 -s 28 -d 1 -p ack -e 40 -c 0 -i 125 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 10.9248 -s 21 -d 28 -p ack -e 40 -c 0 -i 126 -a 1 -x {1.1.3.0 0.0.3.0 55 ------- null} + -t 10.9248 -s 28 -d 1 -p ack -e 40 -c 0 -i 126 -a 1 -x {1.1.3.0 0.0.3.0 55 ------- null} - -t 10.9248 -s 28 -d 1 -p ack -e 40 -c 0 -i 126 -a 1 -x {1.1.3.0 0.0.3.0 55 ------- null} h -t 10.9248 -s 28 -d 1 -p ack -e 40 -c 0 -i 126 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 10.9264 -s 21 -d 28 -p ack -e 40 -c 0 -i 127 -a 1 -x {1.1.3.0 0.0.3.0 56 ------- null} + -t 10.9264 -s 28 -d 1 -p ack -e 40 -c 0 -i 127 -a 1 -x {1.1.3.0 0.0.3.0 56 ------- null} - -t 10.9264 -s 28 -d 1 -p ack -e 40 -c 0 -i 127 -a 1 -x {1.1.3.0 0.0.3.0 56 ------- null} h -t 10.9264 -s 28 -d 1 -p ack -e 40 -c 0 -i 127 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 10.928 -s 21 -d 28 -p ack -e 40 -c 0 -i 128 -a 1 -x {1.1.3.0 0.0.3.0 57 ------- null} + -t 10.928 -s 28 -d 1 -p ack -e 40 -c 0 -i 128 -a 1 -x {1.1.3.0 0.0.3.0 57 ------- null} - -t 10.928 -s 28 -d 1 -p ack -e 40 -c 0 -i 128 -a 1 -x {1.1.3.0 0.0.3.0 57 ------- null} h -t 10.928 -s 28 -d 1 -p ack -e 40 -c 0 -i 128 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 10.9296 -s 21 -d 28 -p ack -e 40 -c 0 -i 129 -a 1 -x {1.1.3.0 0.0.3.0 58 ------- null} + -t 10.9296 -s 28 -d 1 -p ack -e 40 -c 0 -i 129 -a 1 -x {1.1.3.0 0.0.3.0 58 ------- null} - -t 10.9296 -s 28 -d 1 -p ack -e 40 -c 0 -i 129 -a 1 -x {1.1.3.0 0.0.3.0 58 ------- null} h -t 10.9296 -s 28 -d 1 -p ack -e 40 -c 0 -i 129 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 10.9312 -s 21 -d 28 -p ack -e 40 -c 0 -i 130 -a 1 -x {1.1.3.0 0.0.3.0 59 ------- null} + -t 10.9312 -s 28 -d 1 -p ack -e 40 -c 0 -i 130 -a 1 -x {1.1.3.0 0.0.3.0 59 ------- null} - -t 10.9312 -s 28 -d 1 -p ack -e 40 -c 0 -i 130 -a 1 -x {1.1.3.0 0.0.3.0 59 ------- null} h -t 10.9312 -s 28 -d 1 -p ack -e 40 -c 0 -i 130 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 10.9328 -s 21 -d 28 -p ack -e 40 -c 0 -i 131 -a 1 -x {1.1.3.0 0.0.3.0 60 ------- null} + -t 10.9328 -s 28 -d 1 -p ack -e 40 -c 0 -i 131 -a 1 -x {1.1.3.0 0.0.3.0 60 ------- null} - -t 10.9328 -s 28 -d 1 -p ack -e 40 -c 0 -i 131 -a 1 -x {1.1.3.0 0.0.3.0 60 ------- null} h -t 10.9328 -s 28 -d 1 -p ack -e 40 -c 0 -i 131 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 10.9344 -s 21 -d 28 -p ack -e 40 -c 0 -i 132 -a 1 -x {1.1.3.0 0.0.3.0 61 ------- null} + -t 10.9344 -s 28 -d 1 -p ack -e 40 -c 0 -i 132 -a 1 -x {1.1.3.0 0.0.3.0 61 ------- null} - -t 10.9344 -s 28 -d 1 -p ack -e 40 -c 0 -i 132 -a 1 -x {1.1.3.0 0.0.3.0 61 ------- null} h -t 10.9344 -s 28 -d 1 -p ack -e 40 -c 0 -i 132 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 10.936 -s 21 -d 28 -p ack -e 40 -c 0 -i 133 -a 1 -x {1.1.3.0 0.0.3.0 62 ------- null} + -t 10.936 -s 28 -d 1 -p ack -e 40 -c 0 -i 133 -a 1 -x {1.1.3.0 0.0.3.0 62 ------- null} - -t 10.936 -s 28 -d 1 -p ack -e 40 -c 0 -i 133 -a 1 -x {1.1.3.0 0.0.3.0 62 ------- null} h -t 10.936 -s 28 -d 1 -p ack -e 40 -c 0 -i 133 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 10.9376 -s 21 -d 28 -p ack -e 40 -c 0 -i 134 -a 1 -x {1.1.3.0 0.0.3.0 63 ------- null} + -t 10.9376 -s 28 -d 1 -p ack -e 40 -c 0 -i 134 -a 1 -x {1.1.3.0 0.0.3.0 63 ------- null} - -t 10.9376 -s 28 -d 1 -p ack -e 40 -c 0 -i 134 -a 1 -x {1.1.3.0 0.0.3.0 63 ------- null} h -t 10.9376 -s 28 -d 1 -p ack -e 40 -c 0 -i 134 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 10.9392 -s 21 -d 28 -p ack -e 40 -c 0 -i 135 -a 1 -x {1.1.3.0 0.0.3.0 64 ------- null} + -t 10.9392 -s 28 -d 1 -p ack -e 40 -c 0 -i 135 -a 1 -x {1.1.3.0 0.0.3.0 64 ------- null} - -t 10.9392 -s 28 -d 1 -p ack -e 40 -c 0 -i 135 -a 1 -x {1.1.3.0 0.0.3.0 64 ------- null} h -t 10.9392 -s 28 -d 1 -p ack -e 40 -c 0 -i 135 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 10.9408 -s 21 -d 28 -p ack -e 40 -c 0 -i 136 -a 1 -x {1.1.3.0 0.0.3.0 65 ------- null} + -t 10.9408 -s 28 -d 1 -p ack -e 40 -c 0 -i 136 -a 1 -x {1.1.3.0 0.0.3.0 65 ------- null} - -t 10.9408 -s 28 -d 1 -p ack -e 40 -c 0 -i 136 -a 1 -x {1.1.3.0 0.0.3.0 65 ------- null} h -t 10.9408 -s 28 -d 1 -p ack -e 40 -c 0 -i 136 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 10.9424 -s 21 -d 28 -p ack -e 40 -c 0 -i 137 -a 1 -x {1.1.3.0 0.0.3.0 66 ------- null} + -t 10.9424 -s 28 -d 1 -p ack -e 40 -c 0 -i 137 -a 1 -x {1.1.3.0 0.0.3.0 66 ------- null} - -t 10.9424 -s 28 -d 1 -p ack -e 40 -c 0 -i 137 -a 1 -x {1.1.3.0 0.0.3.0 66 ------- null} h -t 10.9424 -s 28 -d 1 -p ack -e 40 -c 0 -i 137 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 10.944 -s 21 -d 28 -p ack -e 40 -c 0 -i 138 -a 1 -x {1.1.3.0 0.0.3.0 67 ------- null} + -t 10.944 -s 28 -d 1 -p ack -e 40 -c 0 -i 138 -a 1 -x {1.1.3.0 0.0.3.0 67 ------- null} - -t 10.944 -s 28 -d 1 -p ack -e 40 -c 0 -i 138 -a 1 -x {1.1.3.0 0.0.3.0 67 ------- null} h -t 10.944 -s 28 -d 1 -p ack -e 40 -c 0 -i 138 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 10.9456 -s 21 -d 28 -p ack -e 40 -c 0 -i 139 -a 1 -x {1.1.3.0 0.0.3.0 68 ------- null} + -t 10.9456 -s 28 -d 1 -p ack -e 40 -c 0 -i 139 -a 1 -x {1.1.3.0 0.0.3.0 68 ------- null} - -t 10.9456 -s 28 -d 1 -p ack -e 40 -c 0 -i 139 -a 1 -x {1.1.3.0 0.0.3.0 68 ------- null} h -t 10.9456 -s 28 -d 1 -p ack -e 40 -c 0 -i 139 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 10.9472 -s 21 -d 28 -p ack -e 40 -c 0 -i 140 -a 1 -x {1.1.3.0 0.0.3.0 69 ------- null} + -t 10.9472 -s 28 -d 1 -p ack -e 40 -c 0 -i 140 -a 1 -x {1.1.3.0 0.0.3.0 69 ------- null} - -t 10.9472 -s 28 -d 1 -p ack -e 40 -c 0 -i 140 -a 1 -x {1.1.3.0 0.0.3.0 69 ------- null} h -t 10.9472 -s 28 -d 1 -p ack -e 40 -c 0 -i 140 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 10.9488 -s 21 -d 28 -p ack -e 40 -c 0 -i 141 -a 1 -x {1.1.3.0 0.0.3.0 70 ------- null} + -t 10.9488 -s 28 -d 1 -p ack -e 40 -c 0 -i 141 -a 1 -x {1.1.3.0 0.0.3.0 70 ------- null} - -t 10.9488 -s 28 -d 1 -p ack -e 40 -c 0 -i 141 -a 1 -x {1.1.3.0 0.0.3.0 70 ------- null} h -t 10.9488 -s 28 -d 1 -p ack -e 40 -c 0 -i 141 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 11.2185 -s 28 -d 1 -p ack -e 40 -c 0 -i 122 -a 1 -x {1.1.3.0 0.0.3.0 51 ------- null} + -t 11.2185 -s 1 -d 3 -p ack -e 40 -c 0 -i 122 -a 1 -x {1.1.3.0 0.0.3.0 51 ------- null} - -t 11.2185 -s 1 -d 3 -p ack -e 40 -c 0 -i 122 -a 1 -x {1.1.3.0 0.0.3.0 51 ------- null} h -t 11.2185 -s 1 -d 3 -p ack -e 40 -c 0 -i 122 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 11.2201 -s 28 -d 1 -p ack -e 40 -c 0 -i 123 -a 1 -x {1.1.3.0 0.0.3.0 52 ------- null} + -t 11.2201 -s 1 -d 3 -p ack -e 40 -c 0 -i 123 -a 1 -x {1.1.3.0 0.0.3.0 52 ------- null} - -t 11.2201 -s 1 -d 3 -p ack -e 40 -c 0 -i 123 -a 1 -x {1.1.3.0 0.0.3.0 52 ------- null} h -t 11.2201 -s 1 -d 3 -p ack -e 40 -c 0 -i 123 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 11.2217 -s 28 -d 1 -p ack -e 40 -c 0 -i 124 -a 1 -x {1.1.3.0 0.0.3.0 53 ------- null} + -t 11.2217 -s 1 -d 3 -p ack -e 40 -c 0 -i 124 -a 1 -x {1.1.3.0 0.0.3.0 53 ------- null} - -t 11.2217 -s 1 -d 3 -p ack -e 40 -c 0 -i 124 -a 1 -x {1.1.3.0 0.0.3.0 53 ------- null} h -t 11.2217 -s 1 -d 3 -p ack -e 40 -c 0 -i 124 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 11.2233 -s 28 -d 1 -p ack -e 40 -c 0 -i 125 -a 1 -x {1.1.3.0 0.0.3.0 54 ------- null} + -t 11.2233 -s 1 -d 3 -p ack -e 40 -c 0 -i 125 -a 1 -x {1.1.3.0 0.0.3.0 54 ------- null} - -t 11.2233 -s 1 -d 3 -p ack -e 40 -c 0 -i 125 -a 1 -x {1.1.3.0 0.0.3.0 54 ------- null} h -t 11.2233 -s 1 -d 3 -p ack -e 40 -c 0 -i 125 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 11.2249 -s 28 -d 1 -p ack -e 40 -c 0 -i 126 -a 1 -x {1.1.3.0 0.0.3.0 55 ------- null} + -t 11.2249 -s 1 -d 3 -p ack -e 40 -c 0 -i 126 -a 1 -x {1.1.3.0 0.0.3.0 55 ------- null} - -t 11.2249 -s 1 -d 3 -p ack -e 40 -c 0 -i 126 -a 1 -x {1.1.3.0 0.0.3.0 55 ------- null} h -t 11.2249 -s 1 -d 3 -p ack -e 40 -c 0 -i 126 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 11.2265 -s 28 -d 1 -p ack -e 40 -c 0 -i 127 -a 1 -x {1.1.3.0 0.0.3.0 56 ------- null} + -t 11.2265 -s 1 -d 3 -p ack -e 40 -c 0 -i 127 -a 1 -x {1.1.3.0 0.0.3.0 56 ------- null} - -t 11.2265 -s 1 -d 3 -p ack -e 40 -c 0 -i 127 -a 1 -x {1.1.3.0 0.0.3.0 56 ------- null} h -t 11.2265 -s 1 -d 3 -p ack -e 40 -c 0 -i 127 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 11.2281 -s 28 -d 1 -p ack -e 40 -c 0 -i 128 -a 1 -x {1.1.3.0 0.0.3.0 57 ------- null} + -t 11.2281 -s 1 -d 3 -p ack -e 40 -c 0 -i 128 -a 1 -x {1.1.3.0 0.0.3.0 57 ------- null} - -t 11.2281 -s 1 -d 3 -p ack -e 40 -c 0 -i 128 -a 1 -x {1.1.3.0 0.0.3.0 57 ------- null} h -t 11.2281 -s 1 -d 3 -p ack -e 40 -c 0 -i 128 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 11.2297 -s 28 -d 1 -p ack -e 40 -c 0 -i 129 -a 1 -x {1.1.3.0 0.0.3.0 58 ------- null} + -t 11.2297 -s 1 -d 3 -p ack -e 40 -c 0 -i 129 -a 1 -x {1.1.3.0 0.0.3.0 58 ------- null} - -t 11.2297 -s 1 -d 3 -p ack -e 40 -c 0 -i 129 -a 1 -x {1.1.3.0 0.0.3.0 58 ------- null} h -t 11.2297 -s 1 -d 3 -p ack -e 40 -c 0 -i 129 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 11.2313 -s 28 -d 1 -p ack -e 40 -c 0 -i 130 -a 1 -x {1.1.3.0 0.0.3.0 59 ------- null} + -t 11.2313 -s 1 -d 3 -p ack -e 40 -c 0 -i 130 -a 1 -x {1.1.3.0 0.0.3.0 59 ------- null} - -t 11.2313 -s 1 -d 3 -p ack -e 40 -c 0 -i 130 -a 1 -x {1.1.3.0 0.0.3.0 59 ------- null} h -t 11.2313 -s 1 -d 3 -p ack -e 40 -c 0 -i 130 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 11.2329 -s 28 -d 1 -p ack -e 40 -c 0 -i 131 -a 1 -x {1.1.3.0 0.0.3.0 60 ------- null} + -t 11.2329 -s 1 -d 3 -p ack -e 40 -c 0 -i 131 -a 1 -x {1.1.3.0 0.0.3.0 60 ------- null} - -t 11.2329 -s 1 -d 3 -p ack -e 40 -c 0 -i 131 -a 1 -x {1.1.3.0 0.0.3.0 60 ------- null} h -t 11.2329 -s 1 -d 3 -p ack -e 40 -c 0 -i 131 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 11.2345 -s 28 -d 1 -p ack -e 40 -c 0 -i 132 -a 1 -x {1.1.3.0 0.0.3.0 61 ------- null} + -t 11.2345 -s 1 -d 3 -p ack -e 40 -c 0 -i 132 -a 1 -x {1.1.3.0 0.0.3.0 61 ------- null} - -t 11.2345 -s 1 -d 3 -p ack -e 40 -c 0 -i 132 -a 1 -x {1.1.3.0 0.0.3.0 61 ------- null} h -t 11.2345 -s 1 -d 3 -p ack -e 40 -c 0 -i 132 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 11.2361 -s 28 -d 1 -p ack -e 40 -c 0 -i 133 -a 1 -x {1.1.3.0 0.0.3.0 62 ------- null} + -t 11.2361 -s 1 -d 3 -p ack -e 40 -c 0 -i 133 -a 1 -x {1.1.3.0 0.0.3.0 62 ------- null} - -t 11.2361 -s 1 -d 3 -p ack -e 40 -c 0 -i 133 -a 1 -x {1.1.3.0 0.0.3.0 62 ------- null} h -t 11.2361 -s 1 -d 3 -p ack -e 40 -c 0 -i 133 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 11.2377 -s 28 -d 1 -p ack -e 40 -c 0 -i 134 -a 1 -x {1.1.3.0 0.0.3.0 63 ------- null} + -t 11.2377 -s 1 -d 3 -p ack -e 40 -c 0 -i 134 -a 1 -x {1.1.3.0 0.0.3.0 63 ------- null} - -t 11.2377 -s 1 -d 3 -p ack -e 40 -c 0 -i 134 -a 1 -x {1.1.3.0 0.0.3.0 63 ------- null} h -t 11.2377 -s 1 -d 3 -p ack -e 40 -c 0 -i 134 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 11.2393 -s 28 -d 1 -p ack -e 40 -c 0 -i 135 -a 1 -x {1.1.3.0 0.0.3.0 64 ------- null} + -t 11.2393 -s 1 -d 3 -p ack -e 40 -c 0 -i 135 -a 1 -x {1.1.3.0 0.0.3.0 64 ------- null} - -t 11.2393 -s 1 -d 3 -p ack -e 40 -c 0 -i 135 -a 1 -x {1.1.3.0 0.0.3.0 64 ------- null} h -t 11.2393 -s 1 -d 3 -p ack -e 40 -c 0 -i 135 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 11.2409 -s 28 -d 1 -p ack -e 40 -c 0 -i 136 -a 1 -x {1.1.3.0 0.0.3.0 65 ------- null} + -t 11.2409 -s 1 -d 3 -p ack -e 40 -c 0 -i 136 -a 1 -x {1.1.3.0 0.0.3.0 65 ------- null} - -t 11.2409 -s 1 -d 3 -p ack -e 40 -c 0 -i 136 -a 1 -x {1.1.3.0 0.0.3.0 65 ------- null} h -t 11.2409 -s 1 -d 3 -p ack -e 40 -c 0 -i 136 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 11.2425 -s 28 -d 1 -p ack -e 40 -c 0 -i 137 -a 1 -x {1.1.3.0 0.0.3.0 66 ------- null} + -t 11.2425 -s 1 -d 3 -p ack -e 40 -c 0 -i 137 -a 1 -x {1.1.3.0 0.0.3.0 66 ------- null} - -t 11.2425 -s 1 -d 3 -p ack -e 40 -c 0 -i 137 -a 1 -x {1.1.3.0 0.0.3.0 66 ------- null} h -t 11.2425 -s 1 -d 3 -p ack -e 40 -c 0 -i 137 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 11.2441 -s 28 -d 1 -p ack -e 40 -c 0 -i 138 -a 1 -x {1.1.3.0 0.0.3.0 67 ------- null} + -t 11.2441 -s 1 -d 3 -p ack -e 40 -c 0 -i 138 -a 1 -x {1.1.3.0 0.0.3.0 67 ------- null} - -t 11.2441 -s 1 -d 3 -p ack -e 40 -c 0 -i 138 -a 1 -x {1.1.3.0 0.0.3.0 67 ------- null} h -t 11.2441 -s 1 -d 3 -p ack -e 40 -c 0 -i 138 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 11.2457 -s 28 -d 1 -p ack -e 40 -c 0 -i 139 -a 1 -x {1.1.3.0 0.0.3.0 68 ------- null} + -t 11.2457 -s 1 -d 3 -p ack -e 40 -c 0 -i 139 -a 1 -x {1.1.3.0 0.0.3.0 68 ------- null} - -t 11.2457 -s 1 -d 3 -p ack -e 40 -c 0 -i 139 -a 1 -x {1.1.3.0 0.0.3.0 68 ------- null} h -t 11.2457 -s 1 -d 3 -p ack -e 40 -c 0 -i 139 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 11.2473 -s 28 -d 1 -p ack -e 40 -c 0 -i 140 -a 1 -x {1.1.3.0 0.0.3.0 69 ------- null} + -t 11.2473 -s 1 -d 3 -p ack -e 40 -c 0 -i 140 -a 1 -x {1.1.3.0 0.0.3.0 69 ------- null} - -t 11.2473 -s 1 -d 3 -p ack -e 40 -c 0 -i 140 -a 1 -x {1.1.3.0 0.0.3.0 69 ------- null} h -t 11.2473 -s 1 -d 3 -p ack -e 40 -c 0 -i 140 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 11.2489 -s 28 -d 1 -p ack -e 40 -c 0 -i 141 -a 1 -x {1.1.3.0 0.0.3.0 70 ------- null} + -t 11.2489 -s 1 -d 3 -p ack -e 40 -c 0 -i 141 -a 1 -x {1.1.3.0 0.0.3.0 70 ------- null} - -t 11.2489 -s 1 -d 3 -p ack -e 40 -c 0 -i 141 -a 1 -x {1.1.3.0 0.0.3.0 70 ------- null} h -t 11.2489 -s 1 -d 3 -p ack -e 40 -c 0 -i 141 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 11.3585 -s 1 -d 3 -p ack -e 40 -c 0 -i 122 -a 1 -x {1.1.3.0 0.0.3.0 51 ------- null} + -t 11.3585 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 142 -a 0 -x {0.0.3.0 1.1.3.0 71 ------- null} - -t 11.3585 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 142 -a 0 -x {0.0.3.0 1.1.3.0 71 ------- null} h -t 11.3585 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 142 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.3601 -s 1 -d 3 -p ack -e 40 -c 0 -i 123 -a 1 -x {1.1.3.0 0.0.3.0 52 ------- null} + -t 11.3601 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {0.0.3.0 1.1.3.0 72 ------- null} - -t 11.3601 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {0.0.3.0 1.1.3.0 72 ------- null} h -t 11.3601 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.3617 -s 1 -d 3 -p ack -e 40 -c 0 -i 124 -a 1 -x {1.1.3.0 0.0.3.0 53 ------- null} + -t 11.3617 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 144 -a 0 -x {0.0.3.0 1.1.3.0 73 ------- null} - -t 11.3617 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 144 -a 0 -x {0.0.3.0 1.1.3.0 73 ------- null} h -t 11.3617 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 144 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.3633 -s 1 -d 3 -p ack -e 40 -c 0 -i 125 -a 1 -x {1.1.3.0 0.0.3.0 54 ------- null} + -t 11.3633 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {0.0.3.0 1.1.3.0 74 ------- null} - -t 11.3633 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {0.0.3.0 1.1.3.0 74 ------- null} h -t 11.3633 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.3649 -s 1 -d 3 -p ack -e 40 -c 0 -i 126 -a 1 -x {1.1.3.0 0.0.3.0 55 ------- null} + -t 11.3649 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 146 -a 0 -x {0.0.3.0 1.1.3.0 75 ------- null} - -t 11.3649 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 146 -a 0 -x {0.0.3.0 1.1.3.0 75 ------- null} h -t 11.3649 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 146 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.3665 -s 1 -d 3 -p ack -e 40 -c 0 -i 127 -a 1 -x {1.1.3.0 0.0.3.0 56 ------- null} + -t 11.3665 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {0.0.3.0 1.1.3.0 76 ------- null} - -t 11.3665 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {0.0.3.0 1.1.3.0 76 ------- null} h -t 11.3665 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.3681 -s 1 -d 3 -p ack -e 40 -c 0 -i 128 -a 1 -x {1.1.3.0 0.0.3.0 57 ------- null} + -t 11.3681 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 148 -a 0 -x {0.0.3.0 1.1.3.0 77 ------- null} - -t 11.3681 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 148 -a 0 -x {0.0.3.0 1.1.3.0 77 ------- null} h -t 11.3681 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 148 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.3697 -s 1 -d 3 -p ack -e 40 -c 0 -i 129 -a 1 -x {1.1.3.0 0.0.3.0 58 ------- null} + -t 11.3697 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {0.0.3.0 1.1.3.0 78 ------- null} - -t 11.3697 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {0.0.3.0 1.1.3.0 78 ------- null} h -t 11.3697 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.3713 -s 1 -d 3 -p ack -e 40 -c 0 -i 130 -a 1 -x {1.1.3.0 0.0.3.0 59 ------- null} + -t 11.3713 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 150 -a 0 -x {0.0.3.0 1.1.3.0 79 ------- null} - -t 11.3713 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 150 -a 0 -x {0.0.3.0 1.1.3.0 79 ------- null} h -t 11.3713 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 150 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.3729 -s 1 -d 3 -p ack -e 40 -c 0 -i 131 -a 1 -x {1.1.3.0 0.0.3.0 60 ------- null} + -t 11.3729 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {0.0.3.0 1.1.3.0 80 ------- null} - -t 11.3729 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {0.0.3.0 1.1.3.0 80 ------- null} h -t 11.3729 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.3745 -s 1 -d 3 -p ack -e 40 -c 0 -i 132 -a 1 -x {1.1.3.0 0.0.3.0 61 ------- null} + -t 11.3745 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 152 -a 0 -x {0.0.3.0 1.1.3.0 81 ------- null} - -t 11.3745 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 152 -a 0 -x {0.0.3.0 1.1.3.0 81 ------- null} h -t 11.3745 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 152 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.3761 -s 1 -d 3 -p ack -e 40 -c 0 -i 133 -a 1 -x {1.1.3.0 0.0.3.0 62 ------- null} + -t 11.3761 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {0.0.3.0 1.1.3.0 82 ------- null} - -t 11.3761 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {0.0.3.0 1.1.3.0 82 ------- null} h -t 11.3761 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.3777 -s 1 -d 3 -p ack -e 40 -c 0 -i 134 -a 1 -x {1.1.3.0 0.0.3.0 63 ------- null} + -t 11.3777 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 154 -a 0 -x {0.0.3.0 1.1.3.0 83 ------- null} - -t 11.3777 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 154 -a 0 -x {0.0.3.0 1.1.3.0 83 ------- null} h -t 11.3777 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 154 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.3793 -s 1 -d 3 -p ack -e 40 -c 0 -i 135 -a 1 -x {1.1.3.0 0.0.3.0 64 ------- null} + -t 11.3793 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {0.0.3.0 1.1.3.0 84 ------- null} - -t 11.3793 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {0.0.3.0 1.1.3.0 84 ------- null} h -t 11.3793 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.3809 -s 1 -d 3 -p ack -e 40 -c 0 -i 136 -a 1 -x {1.1.3.0 0.0.3.0 65 ------- null} + -t 11.3809 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 156 -a 0 -x {0.0.3.0 1.1.3.0 85 ------- null} - -t 11.3809 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 156 -a 0 -x {0.0.3.0 1.1.3.0 85 ------- null} h -t 11.3809 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 156 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.3825 -s 1 -d 3 -p ack -e 40 -c 0 -i 137 -a 1 -x {1.1.3.0 0.0.3.0 66 ------- null} + -t 11.3825 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {0.0.3.0 1.1.3.0 86 ------- null} - -t 11.3825 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {0.0.3.0 1.1.3.0 86 ------- null} h -t 11.3825 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.3841 -s 1 -d 3 -p ack -e 40 -c 0 -i 138 -a 1 -x {1.1.3.0 0.0.3.0 67 ------- null} + -t 11.3841 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {0.0.3.0 1.1.3.0 87 ------- null} - -t 11.3841 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {0.0.3.0 1.1.3.0 87 ------- null} h -t 11.3841 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.3857 -s 1 -d 3 -p ack -e 40 -c 0 -i 139 -a 1 -x {1.1.3.0 0.0.3.0 68 ------- null} + -t 11.3857 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {0.0.3.0 1.1.3.0 88 ------- null} - -t 11.3857 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {0.0.3.0 1.1.3.0 88 ------- null} h -t 11.3857 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.3873 -s 1 -d 3 -p ack -e 40 -c 0 -i 140 -a 1 -x {1.1.3.0 0.0.3.0 69 ------- null} + -t 11.3873 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 160 -a 0 -x {0.0.3.0 1.1.3.0 89 ------- null} - -t 11.3873 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 160 -a 0 -x {0.0.3.0 1.1.3.0 89 ------- null} h -t 11.3873 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 160 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.3889 -s 1 -d 3 -p ack -e 40 -c 0 -i 141 -a 1 -x {1.1.3.0 0.0.3.0 70 ------- null} + -t 11.3889 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {0.0.3.0 1.1.3.0 90 ------- null} - -t 11.3889 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {0.0.3.0 1.1.3.0 90 ------- null} h -t 11.3889 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.5201 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 142 -a 0 -x {0.0.3.0 1.1.3.0 71 ------- null} + -t 11.5201 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 142 -a 0 -x {0.0.3.0 1.1.3.0 71 ------- null} - -t 11.5201 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 142 -a 0 -x {0.0.3.0 1.1.3.0 71 ------- null} h -t 11.5201 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 142 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.5217 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {0.0.3.0 1.1.3.0 72 ------- null} + -t 11.5217 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {0.0.3.0 1.1.3.0 72 ------- null} - -t 11.5217 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {0.0.3.0 1.1.3.0 72 ------- null} h -t 11.5217 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.5233 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 144 -a 0 -x {0.0.3.0 1.1.3.0 73 ------- null} + -t 11.5233 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 144 -a 0 -x {0.0.3.0 1.1.3.0 73 ------- null} - -t 11.5233 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 144 -a 0 -x {0.0.3.0 1.1.3.0 73 ------- null} h -t 11.5233 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 144 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.5249 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {0.0.3.0 1.1.3.0 74 ------- null} + -t 11.5249 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {0.0.3.0 1.1.3.0 74 ------- null} - -t 11.5249 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {0.0.3.0 1.1.3.0 74 ------- null} h -t 11.5249 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.5265 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 146 -a 0 -x {0.0.3.0 1.1.3.0 75 ------- null} + -t 11.5265 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 146 -a 0 -x {0.0.3.0 1.1.3.0 75 ------- null} - -t 11.5265 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 146 -a 0 -x {0.0.3.0 1.1.3.0 75 ------- null} h -t 11.5265 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 146 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.5281 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {0.0.3.0 1.1.3.0 76 ------- null} + -t 11.5281 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {0.0.3.0 1.1.3.0 76 ------- null} - -t 11.5281 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {0.0.3.0 1.1.3.0 76 ------- null} h -t 11.5281 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.5297 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 148 -a 0 -x {0.0.3.0 1.1.3.0 77 ------- null} + -t 11.5297 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 148 -a 0 -x {0.0.3.0 1.1.3.0 77 ------- null} - -t 11.5297 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 148 -a 0 -x {0.0.3.0 1.1.3.0 77 ------- null} h -t 11.5297 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 148 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.5313 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {0.0.3.0 1.1.3.0 78 ------- null} + -t 11.5313 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {0.0.3.0 1.1.3.0 78 ------- null} - -t 11.5313 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {0.0.3.0 1.1.3.0 78 ------- null} h -t 11.5313 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.5329 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 150 -a 0 -x {0.0.3.0 1.1.3.0 79 ------- null} + -t 11.5329 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 150 -a 0 -x {0.0.3.0 1.1.3.0 79 ------- null} - -t 11.5329 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 150 -a 0 -x {0.0.3.0 1.1.3.0 79 ------- null} h -t 11.5329 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 150 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.5345 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {0.0.3.0 1.1.3.0 80 ------- null} + -t 11.5345 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {0.0.3.0 1.1.3.0 80 ------- null} - -t 11.5345 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {0.0.3.0 1.1.3.0 80 ------- null} h -t 11.5345 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.5361 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 152 -a 0 -x {0.0.3.0 1.1.3.0 81 ------- null} + -t 11.5361 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 152 -a 0 -x {0.0.3.0 1.1.3.0 81 ------- null} - -t 11.5361 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 152 -a 0 -x {0.0.3.0 1.1.3.0 81 ------- null} h -t 11.5361 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 152 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.5377 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {0.0.3.0 1.1.3.0 82 ------- null} + -t 11.5377 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {0.0.3.0 1.1.3.0 82 ------- null} - -t 11.5377 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {0.0.3.0 1.1.3.0 82 ------- null} h -t 11.5377 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.5393 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 154 -a 0 -x {0.0.3.0 1.1.3.0 83 ------- null} + -t 11.5393 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 154 -a 0 -x {0.0.3.0 1.1.3.0 83 ------- null} - -t 11.5393 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 154 -a 0 -x {0.0.3.0 1.1.3.0 83 ------- null} h -t 11.5393 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 154 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.5409 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {0.0.3.0 1.1.3.0 84 ------- null} + -t 11.5409 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {0.0.3.0 1.1.3.0 84 ------- null} - -t 11.5409 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {0.0.3.0 1.1.3.0 84 ------- null} h -t 11.5409 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.5425 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 156 -a 0 -x {0.0.3.0 1.1.3.0 85 ------- null} + -t 11.5425 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 156 -a 0 -x {0.0.3.0 1.1.3.0 85 ------- null} - -t 11.5425 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 156 -a 0 -x {0.0.3.0 1.1.3.0 85 ------- null} h -t 11.5425 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 156 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.5441 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {0.0.3.0 1.1.3.0 86 ------- null} + -t 11.5441 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {0.0.3.0 1.1.3.0 86 ------- null} - -t 11.5441 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {0.0.3.0 1.1.3.0 86 ------- null} h -t 11.5441 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.5457 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {0.0.3.0 1.1.3.0 87 ------- null} + -t 11.5457 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {0.0.3.0 1.1.3.0 87 ------- null} - -t 11.5457 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {0.0.3.0 1.1.3.0 87 ------- null} h -t 11.5457 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.5473 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {0.0.3.0 1.1.3.0 88 ------- null} + -t 11.5473 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {0.0.3.0 1.1.3.0 88 ------- null} - -t 11.5473 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {0.0.3.0 1.1.3.0 88 ------- null} h -t 11.5473 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.5489 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 160 -a 0 -x {0.0.3.0 1.1.3.0 89 ------- null} + -t 11.5489 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 160 -a 0 -x {0.0.3.0 1.1.3.0 89 ------- null} - -t 11.5489 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 160 -a 0 -x {0.0.3.0 1.1.3.0 89 ------- null} h -t 11.5489 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 160 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.5505 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {0.0.3.0 1.1.3.0 90 ------- null} + -t 11.5505 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {0.0.3.0 1.1.3.0 90 ------- null} - -t 11.5505 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {0.0.3.0 1.1.3.0 90 ------- null} h -t 11.5505 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.8217 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 142 -a 0 -x {0.0.3.0 1.1.3.0 71 ------- null} + -t 11.8217 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 142 -a 0 -x {0.0.3.0 1.1.3.0 71 ------- null} - -t 11.8217 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 142 -a 0 -x {0.0.3.0 1.1.3.0 71 ------- null} h -t 11.8217 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 142 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.8233 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {0.0.3.0 1.1.3.0 72 ------- null} + -t 11.8233 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {0.0.3.0 1.1.3.0 72 ------- null} - -t 11.8233 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {0.0.3.0 1.1.3.0 72 ------- null} h -t 11.8233 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.8249 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 144 -a 0 -x {0.0.3.0 1.1.3.0 73 ------- null} + -t 11.8249 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 144 -a 0 -x {0.0.3.0 1.1.3.0 73 ------- null} - -t 11.8249 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 144 -a 0 -x {0.0.3.0 1.1.3.0 73 ------- null} h -t 11.8249 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 144 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.8265 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {0.0.3.0 1.1.3.0 74 ------- null} + -t 11.8265 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {0.0.3.0 1.1.3.0 74 ------- null} - -t 11.8265 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {0.0.3.0 1.1.3.0 74 ------- null} h -t 11.8265 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.8281 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 146 -a 0 -x {0.0.3.0 1.1.3.0 75 ------- null} + -t 11.8281 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 146 -a 0 -x {0.0.3.0 1.1.3.0 75 ------- null} - -t 11.8281 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 146 -a 0 -x {0.0.3.0 1.1.3.0 75 ------- null} h -t 11.8281 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 146 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.8297 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {0.0.3.0 1.1.3.0 76 ------- null} + -t 11.8297 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {0.0.3.0 1.1.3.0 76 ------- null} - -t 11.8297 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {0.0.3.0 1.1.3.0 76 ------- null} h -t 11.8297 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.8313 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 148 -a 0 -x {0.0.3.0 1.1.3.0 77 ------- null} + -t 11.8313 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 148 -a 0 -x {0.0.3.0 1.1.3.0 77 ------- null} - -t 11.8313 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 148 -a 0 -x {0.0.3.0 1.1.3.0 77 ------- null} h -t 11.8313 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 148 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.8329 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {0.0.3.0 1.1.3.0 78 ------- null} + -t 11.8329 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {0.0.3.0 1.1.3.0 78 ------- null} - -t 11.8329 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {0.0.3.0 1.1.3.0 78 ------- null} h -t 11.8329 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.8345 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 150 -a 0 -x {0.0.3.0 1.1.3.0 79 ------- null} + -t 11.8345 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 150 -a 0 -x {0.0.3.0 1.1.3.0 79 ------- null} - -t 11.8345 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 150 -a 0 -x {0.0.3.0 1.1.3.0 79 ------- null} h -t 11.8345 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 150 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.8361 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {0.0.3.0 1.1.3.0 80 ------- null} + -t 11.8361 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {0.0.3.0 1.1.3.0 80 ------- null} - -t 11.8361 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {0.0.3.0 1.1.3.0 80 ------- null} h -t 11.8361 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.8377 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 152 -a 0 -x {0.0.3.0 1.1.3.0 81 ------- null} + -t 11.8377 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 152 -a 0 -x {0.0.3.0 1.1.3.0 81 ------- null} - -t 11.8377 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 152 -a 0 -x {0.0.3.0 1.1.3.0 81 ------- null} h -t 11.8377 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 152 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.8393 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {0.0.3.0 1.1.3.0 82 ------- null} + -t 11.8393 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {0.0.3.0 1.1.3.0 82 ------- null} - -t 11.8393 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {0.0.3.0 1.1.3.0 82 ------- null} h -t 11.8393 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.8409 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 154 -a 0 -x {0.0.3.0 1.1.3.0 83 ------- null} + -t 11.8409 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 154 -a 0 -x {0.0.3.0 1.1.3.0 83 ------- null} - -t 11.8409 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 154 -a 0 -x {0.0.3.0 1.1.3.0 83 ------- null} h -t 11.8409 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 154 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.8425 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {0.0.3.0 1.1.3.0 84 ------- null} + -t 11.8425 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {0.0.3.0 1.1.3.0 84 ------- null} - -t 11.8425 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {0.0.3.0 1.1.3.0 84 ------- null} h -t 11.8425 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.8441 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 156 -a 0 -x {0.0.3.0 1.1.3.0 85 ------- null} + -t 11.8441 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 156 -a 0 -x {0.0.3.0 1.1.3.0 85 ------- null} - -t 11.8441 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 156 -a 0 -x {0.0.3.0 1.1.3.0 85 ------- null} h -t 11.8441 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 156 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.8457 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {0.0.3.0 1.1.3.0 86 ------- null} + -t 11.8457 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {0.0.3.0 1.1.3.0 86 ------- null} - -t 11.8457 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {0.0.3.0 1.1.3.0 86 ------- null} h -t 11.8457 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.8473 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {0.0.3.0 1.1.3.0 87 ------- null} + -t 11.8473 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {0.0.3.0 1.1.3.0 87 ------- null} - -t 11.8473 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {0.0.3.0 1.1.3.0 87 ------- null} h -t 11.8473 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.8489 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {0.0.3.0 1.1.3.0 88 ------- null} + -t 11.8489 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {0.0.3.0 1.1.3.0 88 ------- null} - -t 11.8489 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {0.0.3.0 1.1.3.0 88 ------- null} h -t 11.8489 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.8505 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 160 -a 0 -x {0.0.3.0 1.1.3.0 89 ------- null} + -t 11.8505 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 160 -a 0 -x {0.0.3.0 1.1.3.0 89 ------- null} - -t 11.8505 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 160 -a 0 -x {0.0.3.0 1.1.3.0 89 ------- null} h -t 11.8505 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 160 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.8521 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {0.0.3.0 1.1.3.0 90 ------- null} + -t 11.8521 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {0.0.3.0 1.1.3.0 90 ------- null} - -t 11.8521 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {0.0.3.0 1.1.3.0 90 ------- null} h -t 11.8521 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.9233 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 142 -a 0 -x {0.0.3.0 1.1.3.0 71 ------- null} + -t 11.9233 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 142 -a 0 -x {0.0.3.0 1.1.3.0 71 ------- null} - -t 11.9233 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 142 -a 0 -x {0.0.3.0 1.1.3.0 71 ------- null} h -t 11.9233 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 142 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.9249 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {0.0.3.0 1.1.3.0 72 ------- null} + -t 11.9249 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {0.0.3.0 1.1.3.0 72 ------- null} - -t 11.9249 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {0.0.3.0 1.1.3.0 72 ------- null} h -t 11.9249 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.9265 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 144 -a 0 -x {0.0.3.0 1.1.3.0 73 ------- null} + -t 11.9265 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 144 -a 0 -x {0.0.3.0 1.1.3.0 73 ------- null} - -t 11.9265 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 144 -a 0 -x {0.0.3.0 1.1.3.0 73 ------- null} h -t 11.9265 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 144 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.9281 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {0.0.3.0 1.1.3.0 74 ------- null} + -t 11.9281 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {0.0.3.0 1.1.3.0 74 ------- null} - -t 11.9281 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {0.0.3.0 1.1.3.0 74 ------- null} h -t 11.9281 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.9297 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 146 -a 0 -x {0.0.3.0 1.1.3.0 75 ------- null} + -t 11.9297 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 146 -a 0 -x {0.0.3.0 1.1.3.0 75 ------- null} - -t 11.9297 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 146 -a 0 -x {0.0.3.0 1.1.3.0 75 ------- null} h -t 11.9297 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 146 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.9313 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {0.0.3.0 1.1.3.0 76 ------- null} + -t 11.9313 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {0.0.3.0 1.1.3.0 76 ------- null} - -t 11.9313 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {0.0.3.0 1.1.3.0 76 ------- null} h -t 11.9313 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.9329 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 148 -a 0 -x {0.0.3.0 1.1.3.0 77 ------- null} + -t 11.9329 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 148 -a 0 -x {0.0.3.0 1.1.3.0 77 ------- null} - -t 11.9329 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 148 -a 0 -x {0.0.3.0 1.1.3.0 77 ------- null} h -t 11.9329 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 148 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.9345 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {0.0.3.0 1.1.3.0 78 ------- null} + -t 11.9345 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {0.0.3.0 1.1.3.0 78 ------- null} - -t 11.9345 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {0.0.3.0 1.1.3.0 78 ------- null} h -t 11.9345 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.9361 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 150 -a 0 -x {0.0.3.0 1.1.3.0 79 ------- null} + -t 11.9361 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 150 -a 0 -x {0.0.3.0 1.1.3.0 79 ------- null} - -t 11.9361 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 150 -a 0 -x {0.0.3.0 1.1.3.0 79 ------- null} h -t 11.9361 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 150 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.9377 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {0.0.3.0 1.1.3.0 80 ------- null} + -t 11.9377 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {0.0.3.0 1.1.3.0 80 ------- null} - -t 11.9377 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {0.0.3.0 1.1.3.0 80 ------- null} h -t 11.9377 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.9393 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 152 -a 0 -x {0.0.3.0 1.1.3.0 81 ------- null} + -t 11.9393 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 152 -a 0 -x {0.0.3.0 1.1.3.0 81 ------- null} - -t 11.9393 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 152 -a 0 -x {0.0.3.0 1.1.3.0 81 ------- null} h -t 11.9393 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 152 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.9409 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {0.0.3.0 1.1.3.0 82 ------- null} + -t 11.9409 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {0.0.3.0 1.1.3.0 82 ------- null} - -t 11.9409 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {0.0.3.0 1.1.3.0 82 ------- null} h -t 11.9409 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.9425 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 154 -a 0 -x {0.0.3.0 1.1.3.0 83 ------- null} + -t 11.9425 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 154 -a 0 -x {0.0.3.0 1.1.3.0 83 ------- null} - -t 11.9425 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 154 -a 0 -x {0.0.3.0 1.1.3.0 83 ------- null} h -t 11.9425 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 154 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.9441 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {0.0.3.0 1.1.3.0 84 ------- null} + -t 11.9441 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {0.0.3.0 1.1.3.0 84 ------- null} - -t 11.9441 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {0.0.3.0 1.1.3.0 84 ------- null} h -t 11.9441 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.9457 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 156 -a 0 -x {0.0.3.0 1.1.3.0 85 ------- null} + -t 11.9457 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 156 -a 0 -x {0.0.3.0 1.1.3.0 85 ------- null} - -t 11.9457 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 156 -a 0 -x {0.0.3.0 1.1.3.0 85 ------- null} h -t 11.9457 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 156 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.9473 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {0.0.3.0 1.1.3.0 86 ------- null} + -t 11.9473 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {0.0.3.0 1.1.3.0 86 ------- null} - -t 11.9473 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {0.0.3.0 1.1.3.0 86 ------- null} h -t 11.9473 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.9489 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {0.0.3.0 1.1.3.0 87 ------- null} + -t 11.9489 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {0.0.3.0 1.1.3.0 87 ------- null} - -t 11.9489 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {0.0.3.0 1.1.3.0 87 ------- null} h -t 11.9489 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.9505 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {0.0.3.0 1.1.3.0 88 ------- null} + -t 11.9505 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {0.0.3.0 1.1.3.0 88 ------- null} - -t 11.9505 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {0.0.3.0 1.1.3.0 88 ------- null} h -t 11.9505 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.9521 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 160 -a 0 -x {0.0.3.0 1.1.3.0 89 ------- null} + -t 11.9521 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 160 -a 0 -x {0.0.3.0 1.1.3.0 89 ------- null} - -t 11.9521 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 160 -a 0 -x {0.0.3.0 1.1.3.0 89 ------- null} h -t 11.9521 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 160 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 11.9537 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {0.0.3.0 1.1.3.0 90 ------- null} + -t 11.9537 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {0.0.3.0 1.1.3.0 90 ------- null} - -t 11.9537 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {0.0.3.0 1.1.3.0 90 ------- null} h -t 11.9537 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.0049 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 142 -a 0 -x {0.0.3.0 1.1.3.0 71 ------- null} + -t 12.0049 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 142 -a 0 -x {0.0.3.0 1.1.3.0 71 ------- null} - -t 12.0049 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 142 -a 0 -x {0.0.3.0 1.1.3.0 71 ------- null} h -t 12.0049 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 142 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.0065 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {0.0.3.0 1.1.3.0 72 ------- null} + -t 12.0065 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {0.0.3.0 1.1.3.0 72 ------- null} - -t 12.0065 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {0.0.3.0 1.1.3.0 72 ------- null} h -t 12.0065 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.0081 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 144 -a 0 -x {0.0.3.0 1.1.3.0 73 ------- null} + -t 12.0081 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 144 -a 0 -x {0.0.3.0 1.1.3.0 73 ------- null} - -t 12.0081 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 144 -a 0 -x {0.0.3.0 1.1.3.0 73 ------- null} h -t 12.0081 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 144 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.0097 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {0.0.3.0 1.1.3.0 74 ------- null} + -t 12.0097 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {0.0.3.0 1.1.3.0 74 ------- null} - -t 12.0097 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {0.0.3.0 1.1.3.0 74 ------- null} h -t 12.0097 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.0113 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 146 -a 0 -x {0.0.3.0 1.1.3.0 75 ------- null} + -t 12.0113 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 146 -a 0 -x {0.0.3.0 1.1.3.0 75 ------- null} - -t 12.0113 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 146 -a 0 -x {0.0.3.0 1.1.3.0 75 ------- null} h -t 12.0113 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 146 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.0129 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {0.0.3.0 1.1.3.0 76 ------- null} + -t 12.0129 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {0.0.3.0 1.1.3.0 76 ------- null} - -t 12.0129 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {0.0.3.0 1.1.3.0 76 ------- null} h -t 12.0129 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.0145 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 148 -a 0 -x {0.0.3.0 1.1.3.0 77 ------- null} + -t 12.0145 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 148 -a 0 -x {0.0.3.0 1.1.3.0 77 ------- null} - -t 12.0145 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 148 -a 0 -x {0.0.3.0 1.1.3.0 77 ------- null} h -t 12.0145 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 148 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.0161 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {0.0.3.0 1.1.3.0 78 ------- null} + -t 12.0161 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {0.0.3.0 1.1.3.0 78 ------- null} - -t 12.0161 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {0.0.3.0 1.1.3.0 78 ------- null} h -t 12.0161 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.0177 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 150 -a 0 -x {0.0.3.0 1.1.3.0 79 ------- null} + -t 12.0177 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 150 -a 0 -x {0.0.3.0 1.1.3.0 79 ------- null} - -t 12.0177 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 150 -a 0 -x {0.0.3.0 1.1.3.0 79 ------- null} h -t 12.0177 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 150 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.0193 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {0.0.3.0 1.1.3.0 80 ------- null} + -t 12.0193 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {0.0.3.0 1.1.3.0 80 ------- null} - -t 12.0193 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {0.0.3.0 1.1.3.0 80 ------- null} h -t 12.0193 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.0209 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 152 -a 0 -x {0.0.3.0 1.1.3.0 81 ------- null} + -t 12.0209 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 152 -a 0 -x {0.0.3.0 1.1.3.0 81 ------- null} - -t 12.0209 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 152 -a 0 -x {0.0.3.0 1.1.3.0 81 ------- null} h -t 12.0209 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 152 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.0225 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {0.0.3.0 1.1.3.0 82 ------- null} + -t 12.0225 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {0.0.3.0 1.1.3.0 82 ------- null} - -t 12.0225 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {0.0.3.0 1.1.3.0 82 ------- null} h -t 12.0225 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.0241 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 154 -a 0 -x {0.0.3.0 1.1.3.0 83 ------- null} + -t 12.0241 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 154 -a 0 -x {0.0.3.0 1.1.3.0 83 ------- null} - -t 12.0241 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 154 -a 0 -x {0.0.3.0 1.1.3.0 83 ------- null} h -t 12.0241 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 154 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.0257 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {0.0.3.0 1.1.3.0 84 ------- null} + -t 12.0257 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {0.0.3.0 1.1.3.0 84 ------- null} - -t 12.0257 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {0.0.3.0 1.1.3.0 84 ------- null} h -t 12.0257 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.0273 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 156 -a 0 -x {0.0.3.0 1.1.3.0 85 ------- null} + -t 12.0273 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 156 -a 0 -x {0.0.3.0 1.1.3.0 85 ------- null} - -t 12.0273 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 156 -a 0 -x {0.0.3.0 1.1.3.0 85 ------- null} h -t 12.0273 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 156 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.0289 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {0.0.3.0 1.1.3.0 86 ------- null} + -t 12.0289 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {0.0.3.0 1.1.3.0 86 ------- null} - -t 12.0289 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {0.0.3.0 1.1.3.0 86 ------- null} h -t 12.0289 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.0305 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {0.0.3.0 1.1.3.0 87 ------- null} + -t 12.0305 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {0.0.3.0 1.1.3.0 87 ------- null} - -t 12.0305 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {0.0.3.0 1.1.3.0 87 ------- null} h -t 12.0305 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.0321 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {0.0.3.0 1.1.3.0 88 ------- null} + -t 12.0321 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {0.0.3.0 1.1.3.0 88 ------- null} - -t 12.0321 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {0.0.3.0 1.1.3.0 88 ------- null} h -t 12.0321 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.0337 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 160 -a 0 -x {0.0.3.0 1.1.3.0 89 ------- null} + -t 12.0337 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 160 -a 0 -x {0.0.3.0 1.1.3.0 89 ------- null} - -t 12.0337 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 160 -a 0 -x {0.0.3.0 1.1.3.0 89 ------- null} h -t 12.0337 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 160 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.0353 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {0.0.3.0 1.1.3.0 90 ------- null} + -t 12.0353 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {0.0.3.0 1.1.3.0 90 ------- null} - -t 12.0353 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {0.0.3.0 1.1.3.0 90 ------- null} h -t 12.0353 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.0865 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 142 -a 0 -x {0.0.3.0 1.1.3.0 71 ------- null} + -t 12.0865 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 142 -a 0 -x {0.0.3.0 1.1.3.0 71 ------- null} - -t 12.0865 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 142 -a 0 -x {0.0.3.0 1.1.3.0 71 ------- null} h -t 12.0865 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 142 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.0881 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {0.0.3.0 1.1.3.0 72 ------- null} + -t 12.0881 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {0.0.3.0 1.1.3.0 72 ------- null} - -t 12.0881 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {0.0.3.0 1.1.3.0 72 ------- null} h -t 12.0881 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.0897 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 144 -a 0 -x {0.0.3.0 1.1.3.0 73 ------- null} + -t 12.0897 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 144 -a 0 -x {0.0.3.0 1.1.3.0 73 ------- null} - -t 12.0897 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 144 -a 0 -x {0.0.3.0 1.1.3.0 73 ------- null} h -t 12.0897 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 144 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.0913 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {0.0.3.0 1.1.3.0 74 ------- null} + -t 12.0913 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {0.0.3.0 1.1.3.0 74 ------- null} - -t 12.0913 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {0.0.3.0 1.1.3.0 74 ------- null} h -t 12.0913 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.0929 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 146 -a 0 -x {0.0.3.0 1.1.3.0 75 ------- null} + -t 12.0929 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 146 -a 0 -x {0.0.3.0 1.1.3.0 75 ------- null} - -t 12.0929 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 146 -a 0 -x {0.0.3.0 1.1.3.0 75 ------- null} h -t 12.0929 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 146 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.0945 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {0.0.3.0 1.1.3.0 76 ------- null} + -t 12.0945 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {0.0.3.0 1.1.3.0 76 ------- null} - -t 12.0945 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {0.0.3.0 1.1.3.0 76 ------- null} h -t 12.0945 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.0961 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 148 -a 0 -x {0.0.3.0 1.1.3.0 77 ------- null} + -t 12.0961 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 148 -a 0 -x {0.0.3.0 1.1.3.0 77 ------- null} - -t 12.0961 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 148 -a 0 -x {0.0.3.0 1.1.3.0 77 ------- null} h -t 12.0961 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 148 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.0977 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {0.0.3.0 1.1.3.0 78 ------- null} + -t 12.0977 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {0.0.3.0 1.1.3.0 78 ------- null} - -t 12.0977 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {0.0.3.0 1.1.3.0 78 ------- null} h -t 12.0977 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.0993 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 150 -a 0 -x {0.0.3.0 1.1.3.0 79 ------- null} + -t 12.0993 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 150 -a 0 -x {0.0.3.0 1.1.3.0 79 ------- null} - -t 12.0993 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 150 -a 0 -x {0.0.3.0 1.1.3.0 79 ------- null} h -t 12.0993 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 150 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.1009 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {0.0.3.0 1.1.3.0 80 ------- null} + -t 12.1009 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {0.0.3.0 1.1.3.0 80 ------- null} - -t 12.1009 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {0.0.3.0 1.1.3.0 80 ------- null} h -t 12.1009 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.1025 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 152 -a 0 -x {0.0.3.0 1.1.3.0 81 ------- null} + -t 12.1025 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 152 -a 0 -x {0.0.3.0 1.1.3.0 81 ------- null} - -t 12.1025 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 152 -a 0 -x {0.0.3.0 1.1.3.0 81 ------- null} h -t 12.1025 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 152 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.1041 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {0.0.3.0 1.1.3.0 82 ------- null} + -t 12.1041 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {0.0.3.0 1.1.3.0 82 ------- null} - -t 12.1041 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {0.0.3.0 1.1.3.0 82 ------- null} h -t 12.1041 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.1057 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 154 -a 0 -x {0.0.3.0 1.1.3.0 83 ------- null} + -t 12.1057 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 154 -a 0 -x {0.0.3.0 1.1.3.0 83 ------- null} - -t 12.1057 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 154 -a 0 -x {0.0.3.0 1.1.3.0 83 ------- null} h -t 12.1057 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 154 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.1073 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {0.0.3.0 1.1.3.0 84 ------- null} + -t 12.1073 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {0.0.3.0 1.1.3.0 84 ------- null} - -t 12.1073 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {0.0.3.0 1.1.3.0 84 ------- null} h -t 12.1073 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.1089 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 156 -a 0 -x {0.0.3.0 1.1.3.0 85 ------- null} + -t 12.1089 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 156 -a 0 -x {0.0.3.0 1.1.3.0 85 ------- null} - -t 12.1089 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 156 -a 0 -x {0.0.3.0 1.1.3.0 85 ------- null} h -t 12.1089 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 156 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.1105 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {0.0.3.0 1.1.3.0 86 ------- null} + -t 12.1105 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {0.0.3.0 1.1.3.0 86 ------- null} - -t 12.1105 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {0.0.3.0 1.1.3.0 86 ------- null} h -t 12.1105 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.1121 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {0.0.3.0 1.1.3.0 87 ------- null} + -t 12.1121 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {0.0.3.0 1.1.3.0 87 ------- null} - -t 12.1121 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {0.0.3.0 1.1.3.0 87 ------- null} h -t 12.1121 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.1137 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {0.0.3.0 1.1.3.0 88 ------- null} + -t 12.1137 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {0.0.3.0 1.1.3.0 88 ------- null} - -t 12.1137 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {0.0.3.0 1.1.3.0 88 ------- null} h -t 12.1137 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.1153 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 160 -a 0 -x {0.0.3.0 1.1.3.0 89 ------- null} + -t 12.1153 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 160 -a 0 -x {0.0.3.0 1.1.3.0 89 ------- null} - -t 12.1153 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 160 -a 0 -x {0.0.3.0 1.1.3.0 89 ------- null} h -t 12.1153 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 160 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.1169 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {0.0.3.0 1.1.3.0 90 ------- null} + -t 12.1169 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {0.0.3.0 1.1.3.0 90 ------- null} - -t 12.1169 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {0.0.3.0 1.1.3.0 90 ------- null} h -t 12.1169 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.1481 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 142 -a 0 -x {0.0.3.0 1.1.3.0 71 ------- null} + -t 12.1481 -s 21 -d 28 -p ack -e 40 -c 0 -i 162 -a 1 -x {1.1.3.0 0.0.3.0 71 ------- null} - -t 12.1481 -s 21 -d 28 -p ack -e 40 -c 0 -i 162 -a 1 -x {1.1.3.0 0.0.3.0 71 ------- null} h -t 12.1481 -s 21 -d 28 -p ack -e 40 -c 0 -i 162 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.1497 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {0.0.3.0 1.1.3.0 72 ------- null} + -t 12.1497 -s 21 -d 28 -p ack -e 40 -c 0 -i 163 -a 1 -x {1.1.3.0 0.0.3.0 72 ------- null} - -t 12.1497 -s 21 -d 28 -p ack -e 40 -c 0 -i 163 -a 1 -x {1.1.3.0 0.0.3.0 72 ------- null} h -t 12.1497 -s 21 -d 28 -p ack -e 40 -c 0 -i 163 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.1513 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 144 -a 0 -x {0.0.3.0 1.1.3.0 73 ------- null} + -t 12.1513 -s 21 -d 28 -p ack -e 40 -c 0 -i 164 -a 1 -x {1.1.3.0 0.0.3.0 73 ------- null} - -t 12.1513 -s 21 -d 28 -p ack -e 40 -c 0 -i 164 -a 1 -x {1.1.3.0 0.0.3.0 73 ------- null} h -t 12.1513 -s 21 -d 28 -p ack -e 40 -c 0 -i 164 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.1529 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {0.0.3.0 1.1.3.0 74 ------- null} + -t 12.1529 -s 21 -d 28 -p ack -e 40 -c 0 -i 165 -a 1 -x {1.1.3.0 0.0.3.0 74 ------- null} - -t 12.1529 -s 21 -d 28 -p ack -e 40 -c 0 -i 165 -a 1 -x {1.1.3.0 0.0.3.0 74 ------- null} h -t 12.1529 -s 21 -d 28 -p ack -e 40 -c 0 -i 165 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.1545 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 146 -a 0 -x {0.0.3.0 1.1.3.0 75 ------- null} + -t 12.1545 -s 21 -d 28 -p ack -e 40 -c 0 -i 166 -a 1 -x {1.1.3.0 0.0.3.0 75 ------- null} - -t 12.1545 -s 21 -d 28 -p ack -e 40 -c 0 -i 166 -a 1 -x {1.1.3.0 0.0.3.0 75 ------- null} h -t 12.1545 -s 21 -d 28 -p ack -e 40 -c 0 -i 166 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.1561 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {0.0.3.0 1.1.3.0 76 ------- null} + -t 12.1561 -s 21 -d 28 -p ack -e 40 -c 0 -i 167 -a 1 -x {1.1.3.0 0.0.3.0 76 ------- null} - -t 12.1561 -s 21 -d 28 -p ack -e 40 -c 0 -i 167 -a 1 -x {1.1.3.0 0.0.3.0 76 ------- null} h -t 12.1561 -s 21 -d 28 -p ack -e 40 -c 0 -i 167 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.1577 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 148 -a 0 -x {0.0.3.0 1.1.3.0 77 ------- null} + -t 12.1577 -s 21 -d 28 -p ack -e 40 -c 0 -i 168 -a 1 -x {1.1.3.0 0.0.3.0 77 ------- null} - -t 12.1577 -s 21 -d 28 -p ack -e 40 -c 0 -i 168 -a 1 -x {1.1.3.0 0.0.3.0 77 ------- null} h -t 12.1577 -s 21 -d 28 -p ack -e 40 -c 0 -i 168 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.1593 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {0.0.3.0 1.1.3.0 78 ------- null} + -t 12.1593 -s 21 -d 28 -p ack -e 40 -c 0 -i 169 -a 1 -x {1.1.3.0 0.0.3.0 78 ------- null} - -t 12.1593 -s 21 -d 28 -p ack -e 40 -c 0 -i 169 -a 1 -x {1.1.3.0 0.0.3.0 78 ------- null} h -t 12.1593 -s 21 -d 28 -p ack -e 40 -c 0 -i 169 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.1609 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 150 -a 0 -x {0.0.3.0 1.1.3.0 79 ------- null} + -t 12.1609 -s 21 -d 28 -p ack -e 40 -c 0 -i 170 -a 1 -x {1.1.3.0 0.0.3.0 79 ------- null} - -t 12.1609 -s 21 -d 28 -p ack -e 40 -c 0 -i 170 -a 1 -x {1.1.3.0 0.0.3.0 79 ------- null} h -t 12.1609 -s 21 -d 28 -p ack -e 40 -c 0 -i 170 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.1625 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {0.0.3.0 1.1.3.0 80 ------- null} + -t 12.1625 -s 21 -d 28 -p ack -e 40 -c 0 -i 171 -a 1 -x {1.1.3.0 0.0.3.0 80 ------- null} - -t 12.1625 -s 21 -d 28 -p ack -e 40 -c 0 -i 171 -a 1 -x {1.1.3.0 0.0.3.0 80 ------- null} h -t 12.1625 -s 21 -d 28 -p ack -e 40 -c 0 -i 171 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.1641 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 152 -a 0 -x {0.0.3.0 1.1.3.0 81 ------- null} + -t 12.1641 -s 21 -d 28 -p ack -e 40 -c 0 -i 172 -a 1 -x {1.1.3.0 0.0.3.0 81 ------- null} - -t 12.1641 -s 21 -d 28 -p ack -e 40 -c 0 -i 172 -a 1 -x {1.1.3.0 0.0.3.0 81 ------- null} h -t 12.1641 -s 21 -d 28 -p ack -e 40 -c 0 -i 172 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.1657 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {0.0.3.0 1.1.3.0 82 ------- null} + -t 12.1657 -s 21 -d 28 -p ack -e 40 -c 0 -i 173 -a 1 -x {1.1.3.0 0.0.3.0 82 ------- null} - -t 12.1657 -s 21 -d 28 -p ack -e 40 -c 0 -i 173 -a 1 -x {1.1.3.0 0.0.3.0 82 ------- null} h -t 12.1657 -s 21 -d 28 -p ack -e 40 -c 0 -i 173 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.1673 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 154 -a 0 -x {0.0.3.0 1.1.3.0 83 ------- null} + -t 12.1673 -s 21 -d 28 -p ack -e 40 -c 0 -i 174 -a 1 -x {1.1.3.0 0.0.3.0 83 ------- null} - -t 12.1673 -s 21 -d 28 -p ack -e 40 -c 0 -i 174 -a 1 -x {1.1.3.0 0.0.3.0 83 ------- null} h -t 12.1673 -s 21 -d 28 -p ack -e 40 -c 0 -i 174 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.1689 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {0.0.3.0 1.1.3.0 84 ------- null} + -t 12.1689 -s 21 -d 28 -p ack -e 40 -c 0 -i 175 -a 1 -x {1.1.3.0 0.0.3.0 84 ------- null} - -t 12.1689 -s 21 -d 28 -p ack -e 40 -c 0 -i 175 -a 1 -x {1.1.3.0 0.0.3.0 84 ------- null} h -t 12.1689 -s 21 -d 28 -p ack -e 40 -c 0 -i 175 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.1705 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 156 -a 0 -x {0.0.3.0 1.1.3.0 85 ------- null} + -t 12.1705 -s 21 -d 28 -p ack -e 40 -c 0 -i 176 -a 1 -x {1.1.3.0 0.0.3.0 85 ------- null} - -t 12.1705 -s 21 -d 28 -p ack -e 40 -c 0 -i 176 -a 1 -x {1.1.3.0 0.0.3.0 85 ------- null} h -t 12.1705 -s 21 -d 28 -p ack -e 40 -c 0 -i 176 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.1721 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {0.0.3.0 1.1.3.0 86 ------- null} + -t 12.1721 -s 21 -d 28 -p ack -e 40 -c 0 -i 177 -a 1 -x {1.1.3.0 0.0.3.0 86 ------- null} - -t 12.1721 -s 21 -d 28 -p ack -e 40 -c 0 -i 177 -a 1 -x {1.1.3.0 0.0.3.0 86 ------- null} h -t 12.1721 -s 21 -d 28 -p ack -e 40 -c 0 -i 177 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.1737 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 158 -a 0 -x {0.0.3.0 1.1.3.0 87 ------- null} + -t 12.1737 -s 21 -d 28 -p ack -e 40 -c 0 -i 178 -a 1 -x {1.1.3.0 0.0.3.0 87 ------- null} - -t 12.1737 -s 21 -d 28 -p ack -e 40 -c 0 -i 178 -a 1 -x {1.1.3.0 0.0.3.0 87 ------- null} h -t 12.1737 -s 21 -d 28 -p ack -e 40 -c 0 -i 178 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.1753 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {0.0.3.0 1.1.3.0 88 ------- null} + -t 12.1753 -s 21 -d 28 -p ack -e 40 -c 0 -i 179 -a 1 -x {1.1.3.0 0.0.3.0 88 ------- null} - -t 12.1753 -s 21 -d 28 -p ack -e 40 -c 0 -i 179 -a 1 -x {1.1.3.0 0.0.3.0 88 ------- null} h -t 12.1753 -s 21 -d 28 -p ack -e 40 -c 0 -i 179 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.1769 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 160 -a 0 -x {0.0.3.0 1.1.3.0 89 ------- null} + -t 12.1769 -s 21 -d 28 -p ack -e 40 -c 0 -i 180 -a 1 -x {1.1.3.0 0.0.3.0 89 ------- null} - -t 12.1769 -s 21 -d 28 -p ack -e 40 -c 0 -i 180 -a 1 -x {1.1.3.0 0.0.3.0 89 ------- null} h -t 12.1769 -s 21 -d 28 -p ack -e 40 -c 0 -i 180 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.1785 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {0.0.3.0 1.1.3.0 90 ------- null} + -t 12.1785 -s 21 -d 28 -p ack -e 40 -c 0 -i 181 -a 1 -x {1.1.3.0 0.0.3.0 90 ------- null} - -t 12.1785 -s 21 -d 28 -p ack -e 40 -c 0 -i 181 -a 1 -x {1.1.3.0 0.0.3.0 90 ------- null} h -t 12.1785 -s 21 -d 28 -p ack -e 40 -c 0 -i 181 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.4982 -s 21 -d 28 -p ack -e 40 -c 0 -i 162 -a 1 -x {1.1.3.0 0.0.3.0 71 ------- null} + -t 12.4982 -s 28 -d 1 -p ack -e 40 -c 0 -i 162 -a 1 -x {1.1.3.0 0.0.3.0 71 ------- null} - -t 12.4982 -s 28 -d 1 -p ack -e 40 -c 0 -i 162 -a 1 -x {1.1.3.0 0.0.3.0 71 ------- null} h -t 12.4982 -s 28 -d 1 -p ack -e 40 -c 0 -i 162 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.4998 -s 21 -d 28 -p ack -e 40 -c 0 -i 163 -a 1 -x {1.1.3.0 0.0.3.0 72 ------- null} + -t 12.4998 -s 28 -d 1 -p ack -e 40 -c 0 -i 163 -a 1 -x {1.1.3.0 0.0.3.0 72 ------- null} - -t 12.4998 -s 28 -d 1 -p ack -e 40 -c 0 -i 163 -a 1 -x {1.1.3.0 0.0.3.0 72 ------- null} h -t 12.4998 -s 28 -d 1 -p ack -e 40 -c 0 -i 163 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.5014 -s 21 -d 28 -p ack -e 40 -c 0 -i 164 -a 1 -x {1.1.3.0 0.0.3.0 73 ------- null} + -t 12.5014 -s 28 -d 1 -p ack -e 40 -c 0 -i 164 -a 1 -x {1.1.3.0 0.0.3.0 73 ------- null} - -t 12.5014 -s 28 -d 1 -p ack -e 40 -c 0 -i 164 -a 1 -x {1.1.3.0 0.0.3.0 73 ------- null} h -t 12.5014 -s 28 -d 1 -p ack -e 40 -c 0 -i 164 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.503 -s 21 -d 28 -p ack -e 40 -c 0 -i 165 -a 1 -x {1.1.3.0 0.0.3.0 74 ------- null} + -t 12.503 -s 28 -d 1 -p ack -e 40 -c 0 -i 165 -a 1 -x {1.1.3.0 0.0.3.0 74 ------- null} - -t 12.503 -s 28 -d 1 -p ack -e 40 -c 0 -i 165 -a 1 -x {1.1.3.0 0.0.3.0 74 ------- null} h -t 12.503 -s 28 -d 1 -p ack -e 40 -c 0 -i 165 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.5046 -s 21 -d 28 -p ack -e 40 -c 0 -i 166 -a 1 -x {1.1.3.0 0.0.3.0 75 ------- null} + -t 12.5046 -s 28 -d 1 -p ack -e 40 -c 0 -i 166 -a 1 -x {1.1.3.0 0.0.3.0 75 ------- null} - -t 12.5046 -s 28 -d 1 -p ack -e 40 -c 0 -i 166 -a 1 -x {1.1.3.0 0.0.3.0 75 ------- null} h -t 12.5046 -s 28 -d 1 -p ack -e 40 -c 0 -i 166 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.5062 -s 21 -d 28 -p ack -e 40 -c 0 -i 167 -a 1 -x {1.1.3.0 0.0.3.0 76 ------- null} + -t 12.5062 -s 28 -d 1 -p ack -e 40 -c 0 -i 167 -a 1 -x {1.1.3.0 0.0.3.0 76 ------- null} - -t 12.5062 -s 28 -d 1 -p ack -e 40 -c 0 -i 167 -a 1 -x {1.1.3.0 0.0.3.0 76 ------- null} h -t 12.5062 -s 28 -d 1 -p ack -e 40 -c 0 -i 167 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.5078 -s 21 -d 28 -p ack -e 40 -c 0 -i 168 -a 1 -x {1.1.3.0 0.0.3.0 77 ------- null} + -t 12.5078 -s 28 -d 1 -p ack -e 40 -c 0 -i 168 -a 1 -x {1.1.3.0 0.0.3.0 77 ------- null} - -t 12.5078 -s 28 -d 1 -p ack -e 40 -c 0 -i 168 -a 1 -x {1.1.3.0 0.0.3.0 77 ------- null} h -t 12.5078 -s 28 -d 1 -p ack -e 40 -c 0 -i 168 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.5094 -s 21 -d 28 -p ack -e 40 -c 0 -i 169 -a 1 -x {1.1.3.0 0.0.3.0 78 ------- null} + -t 12.5094 -s 28 -d 1 -p ack -e 40 -c 0 -i 169 -a 1 -x {1.1.3.0 0.0.3.0 78 ------- null} - -t 12.5094 -s 28 -d 1 -p ack -e 40 -c 0 -i 169 -a 1 -x {1.1.3.0 0.0.3.0 78 ------- null} h -t 12.5094 -s 28 -d 1 -p ack -e 40 -c 0 -i 169 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.511 -s 21 -d 28 -p ack -e 40 -c 0 -i 170 -a 1 -x {1.1.3.0 0.0.3.0 79 ------- null} + -t 12.511 -s 28 -d 1 -p ack -e 40 -c 0 -i 170 -a 1 -x {1.1.3.0 0.0.3.0 79 ------- null} - -t 12.511 -s 28 -d 1 -p ack -e 40 -c 0 -i 170 -a 1 -x {1.1.3.0 0.0.3.0 79 ------- null} h -t 12.511 -s 28 -d 1 -p ack -e 40 -c 0 -i 170 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.5126 -s 21 -d 28 -p ack -e 40 -c 0 -i 171 -a 1 -x {1.1.3.0 0.0.3.0 80 ------- null} + -t 12.5126 -s 28 -d 1 -p ack -e 40 -c 0 -i 171 -a 1 -x {1.1.3.0 0.0.3.0 80 ------- null} - -t 12.5126 -s 28 -d 1 -p ack -e 40 -c 0 -i 171 -a 1 -x {1.1.3.0 0.0.3.0 80 ------- null} h -t 12.5126 -s 28 -d 1 -p ack -e 40 -c 0 -i 171 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.5142 -s 21 -d 28 -p ack -e 40 -c 0 -i 172 -a 1 -x {1.1.3.0 0.0.3.0 81 ------- null} + -t 12.5142 -s 28 -d 1 -p ack -e 40 -c 0 -i 172 -a 1 -x {1.1.3.0 0.0.3.0 81 ------- null} - -t 12.5142 -s 28 -d 1 -p ack -e 40 -c 0 -i 172 -a 1 -x {1.1.3.0 0.0.3.0 81 ------- null} h -t 12.5142 -s 28 -d 1 -p ack -e 40 -c 0 -i 172 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.5158 -s 21 -d 28 -p ack -e 40 -c 0 -i 173 -a 1 -x {1.1.3.0 0.0.3.0 82 ------- null} + -t 12.5158 -s 28 -d 1 -p ack -e 40 -c 0 -i 173 -a 1 -x {1.1.3.0 0.0.3.0 82 ------- null} - -t 12.5158 -s 28 -d 1 -p ack -e 40 -c 0 -i 173 -a 1 -x {1.1.3.0 0.0.3.0 82 ------- null} h -t 12.5158 -s 28 -d 1 -p ack -e 40 -c 0 -i 173 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.5174 -s 21 -d 28 -p ack -e 40 -c 0 -i 174 -a 1 -x {1.1.3.0 0.0.3.0 83 ------- null} + -t 12.5174 -s 28 -d 1 -p ack -e 40 -c 0 -i 174 -a 1 -x {1.1.3.0 0.0.3.0 83 ------- null} - -t 12.5174 -s 28 -d 1 -p ack -e 40 -c 0 -i 174 -a 1 -x {1.1.3.0 0.0.3.0 83 ------- null} h -t 12.5174 -s 28 -d 1 -p ack -e 40 -c 0 -i 174 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.519 -s 21 -d 28 -p ack -e 40 -c 0 -i 175 -a 1 -x {1.1.3.0 0.0.3.0 84 ------- null} + -t 12.519 -s 28 -d 1 -p ack -e 40 -c 0 -i 175 -a 1 -x {1.1.3.0 0.0.3.0 84 ------- null} - -t 12.519 -s 28 -d 1 -p ack -e 40 -c 0 -i 175 -a 1 -x {1.1.3.0 0.0.3.0 84 ------- null} h -t 12.519 -s 28 -d 1 -p ack -e 40 -c 0 -i 175 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.5206 -s 21 -d 28 -p ack -e 40 -c 0 -i 176 -a 1 -x {1.1.3.0 0.0.3.0 85 ------- null} + -t 12.5206 -s 28 -d 1 -p ack -e 40 -c 0 -i 176 -a 1 -x {1.1.3.0 0.0.3.0 85 ------- null} - -t 12.5206 -s 28 -d 1 -p ack -e 40 -c 0 -i 176 -a 1 -x {1.1.3.0 0.0.3.0 85 ------- null} h -t 12.5206 -s 28 -d 1 -p ack -e 40 -c 0 -i 176 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.5222 -s 21 -d 28 -p ack -e 40 -c 0 -i 177 -a 1 -x {1.1.3.0 0.0.3.0 86 ------- null} + -t 12.5222 -s 28 -d 1 -p ack -e 40 -c 0 -i 177 -a 1 -x {1.1.3.0 0.0.3.0 86 ------- null} - -t 12.5222 -s 28 -d 1 -p ack -e 40 -c 0 -i 177 -a 1 -x {1.1.3.0 0.0.3.0 86 ------- null} h -t 12.5222 -s 28 -d 1 -p ack -e 40 -c 0 -i 177 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.5238 -s 21 -d 28 -p ack -e 40 -c 0 -i 178 -a 1 -x {1.1.3.0 0.0.3.0 87 ------- null} + -t 12.5238 -s 28 -d 1 -p ack -e 40 -c 0 -i 178 -a 1 -x {1.1.3.0 0.0.3.0 87 ------- null} - -t 12.5238 -s 28 -d 1 -p ack -e 40 -c 0 -i 178 -a 1 -x {1.1.3.0 0.0.3.0 87 ------- null} h -t 12.5238 -s 28 -d 1 -p ack -e 40 -c 0 -i 178 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.5254 -s 21 -d 28 -p ack -e 40 -c 0 -i 179 -a 1 -x {1.1.3.0 0.0.3.0 88 ------- null} + -t 12.5254 -s 28 -d 1 -p ack -e 40 -c 0 -i 179 -a 1 -x {1.1.3.0 0.0.3.0 88 ------- null} - -t 12.5254 -s 28 -d 1 -p ack -e 40 -c 0 -i 179 -a 1 -x {1.1.3.0 0.0.3.0 88 ------- null} h -t 12.5254 -s 28 -d 1 -p ack -e 40 -c 0 -i 179 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.527 -s 21 -d 28 -p ack -e 40 -c 0 -i 180 -a 1 -x {1.1.3.0 0.0.3.0 89 ------- null} + -t 12.527 -s 28 -d 1 -p ack -e 40 -c 0 -i 180 -a 1 -x {1.1.3.0 0.0.3.0 89 ------- null} - -t 12.527 -s 28 -d 1 -p ack -e 40 -c 0 -i 180 -a 1 -x {1.1.3.0 0.0.3.0 89 ------- null} h -t 12.527 -s 28 -d 1 -p ack -e 40 -c 0 -i 180 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.5286 -s 21 -d 28 -p ack -e 40 -c 0 -i 181 -a 1 -x {1.1.3.0 0.0.3.0 90 ------- null} + -t 12.5286 -s 28 -d 1 -p ack -e 40 -c 0 -i 181 -a 1 -x {1.1.3.0 0.0.3.0 90 ------- null} - -t 12.5286 -s 28 -d 1 -p ack -e 40 -c 0 -i 181 -a 1 -x {1.1.3.0 0.0.3.0 90 ------- null} h -t 12.5286 -s 28 -d 1 -p ack -e 40 -c 0 -i 181 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.7983 -s 28 -d 1 -p ack -e 40 -c 0 -i 162 -a 1 -x {1.1.3.0 0.0.3.0 71 ------- null} + -t 12.7983 -s 1 -d 3 -p ack -e 40 -c 0 -i 162 -a 1 -x {1.1.3.0 0.0.3.0 71 ------- null} - -t 12.7983 -s 1 -d 3 -p ack -e 40 -c 0 -i 162 -a 1 -x {1.1.3.0 0.0.3.0 71 ------- null} h -t 12.7983 -s 1 -d 3 -p ack -e 40 -c 0 -i 162 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.7999 -s 28 -d 1 -p ack -e 40 -c 0 -i 163 -a 1 -x {1.1.3.0 0.0.3.0 72 ------- null} + -t 12.7999 -s 1 -d 3 -p ack -e 40 -c 0 -i 163 -a 1 -x {1.1.3.0 0.0.3.0 72 ------- null} - -t 12.7999 -s 1 -d 3 -p ack -e 40 -c 0 -i 163 -a 1 -x {1.1.3.0 0.0.3.0 72 ------- null} h -t 12.7999 -s 1 -d 3 -p ack -e 40 -c 0 -i 163 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.8015 -s 28 -d 1 -p ack -e 40 -c 0 -i 164 -a 1 -x {1.1.3.0 0.0.3.0 73 ------- null} + -t 12.8015 -s 1 -d 3 -p ack -e 40 -c 0 -i 164 -a 1 -x {1.1.3.0 0.0.3.0 73 ------- null} - -t 12.8015 -s 1 -d 3 -p ack -e 40 -c 0 -i 164 -a 1 -x {1.1.3.0 0.0.3.0 73 ------- null} h -t 12.8015 -s 1 -d 3 -p ack -e 40 -c 0 -i 164 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.8031 -s 28 -d 1 -p ack -e 40 -c 0 -i 165 -a 1 -x {1.1.3.0 0.0.3.0 74 ------- null} + -t 12.8031 -s 1 -d 3 -p ack -e 40 -c 0 -i 165 -a 1 -x {1.1.3.0 0.0.3.0 74 ------- null} - -t 12.8031 -s 1 -d 3 -p ack -e 40 -c 0 -i 165 -a 1 -x {1.1.3.0 0.0.3.0 74 ------- null} h -t 12.8031 -s 1 -d 3 -p ack -e 40 -c 0 -i 165 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.8047 -s 28 -d 1 -p ack -e 40 -c 0 -i 166 -a 1 -x {1.1.3.0 0.0.3.0 75 ------- null} + -t 12.8047 -s 1 -d 3 -p ack -e 40 -c 0 -i 166 -a 1 -x {1.1.3.0 0.0.3.0 75 ------- null} - -t 12.8047 -s 1 -d 3 -p ack -e 40 -c 0 -i 166 -a 1 -x {1.1.3.0 0.0.3.0 75 ------- null} h -t 12.8047 -s 1 -d 3 -p ack -e 40 -c 0 -i 166 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.8063 -s 28 -d 1 -p ack -e 40 -c 0 -i 167 -a 1 -x {1.1.3.0 0.0.3.0 76 ------- null} + -t 12.8063 -s 1 -d 3 -p ack -e 40 -c 0 -i 167 -a 1 -x {1.1.3.0 0.0.3.0 76 ------- null} - -t 12.8063 -s 1 -d 3 -p ack -e 40 -c 0 -i 167 -a 1 -x {1.1.3.0 0.0.3.0 76 ------- null} h -t 12.8063 -s 1 -d 3 -p ack -e 40 -c 0 -i 167 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.8079 -s 28 -d 1 -p ack -e 40 -c 0 -i 168 -a 1 -x {1.1.3.0 0.0.3.0 77 ------- null} + -t 12.8079 -s 1 -d 3 -p ack -e 40 -c 0 -i 168 -a 1 -x {1.1.3.0 0.0.3.0 77 ------- null} - -t 12.8079 -s 1 -d 3 -p ack -e 40 -c 0 -i 168 -a 1 -x {1.1.3.0 0.0.3.0 77 ------- null} h -t 12.8079 -s 1 -d 3 -p ack -e 40 -c 0 -i 168 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.8095 -s 28 -d 1 -p ack -e 40 -c 0 -i 169 -a 1 -x {1.1.3.0 0.0.3.0 78 ------- null} + -t 12.8095 -s 1 -d 3 -p ack -e 40 -c 0 -i 169 -a 1 -x {1.1.3.0 0.0.3.0 78 ------- null} - -t 12.8095 -s 1 -d 3 -p ack -e 40 -c 0 -i 169 -a 1 -x {1.1.3.0 0.0.3.0 78 ------- null} h -t 12.8095 -s 1 -d 3 -p ack -e 40 -c 0 -i 169 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.8111 -s 28 -d 1 -p ack -e 40 -c 0 -i 170 -a 1 -x {1.1.3.0 0.0.3.0 79 ------- null} + -t 12.8111 -s 1 -d 3 -p ack -e 40 -c 0 -i 170 -a 1 -x {1.1.3.0 0.0.3.0 79 ------- null} - -t 12.8111 -s 1 -d 3 -p ack -e 40 -c 0 -i 170 -a 1 -x {1.1.3.0 0.0.3.0 79 ------- null} h -t 12.8111 -s 1 -d 3 -p ack -e 40 -c 0 -i 170 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.8127 -s 28 -d 1 -p ack -e 40 -c 0 -i 171 -a 1 -x {1.1.3.0 0.0.3.0 80 ------- null} + -t 12.8127 -s 1 -d 3 -p ack -e 40 -c 0 -i 171 -a 1 -x {1.1.3.0 0.0.3.0 80 ------- null} - -t 12.8127 -s 1 -d 3 -p ack -e 40 -c 0 -i 171 -a 1 -x {1.1.3.0 0.0.3.0 80 ------- null} h -t 12.8127 -s 1 -d 3 -p ack -e 40 -c 0 -i 171 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.8143 -s 28 -d 1 -p ack -e 40 -c 0 -i 172 -a 1 -x {1.1.3.0 0.0.3.0 81 ------- null} + -t 12.8143 -s 1 -d 3 -p ack -e 40 -c 0 -i 172 -a 1 -x {1.1.3.0 0.0.3.0 81 ------- null} - -t 12.8143 -s 1 -d 3 -p ack -e 40 -c 0 -i 172 -a 1 -x {1.1.3.0 0.0.3.0 81 ------- null} h -t 12.8143 -s 1 -d 3 -p ack -e 40 -c 0 -i 172 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.8159 -s 28 -d 1 -p ack -e 40 -c 0 -i 173 -a 1 -x {1.1.3.0 0.0.3.0 82 ------- null} + -t 12.8159 -s 1 -d 3 -p ack -e 40 -c 0 -i 173 -a 1 -x {1.1.3.0 0.0.3.0 82 ------- null} - -t 12.8159 -s 1 -d 3 -p ack -e 40 -c 0 -i 173 -a 1 -x {1.1.3.0 0.0.3.0 82 ------- null} h -t 12.8159 -s 1 -d 3 -p ack -e 40 -c 0 -i 173 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.8175 -s 28 -d 1 -p ack -e 40 -c 0 -i 174 -a 1 -x {1.1.3.0 0.0.3.0 83 ------- null} + -t 12.8175 -s 1 -d 3 -p ack -e 40 -c 0 -i 174 -a 1 -x {1.1.3.0 0.0.3.0 83 ------- null} - -t 12.8175 -s 1 -d 3 -p ack -e 40 -c 0 -i 174 -a 1 -x {1.1.3.0 0.0.3.0 83 ------- null} h -t 12.8175 -s 1 -d 3 -p ack -e 40 -c 0 -i 174 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.8191 -s 28 -d 1 -p ack -e 40 -c 0 -i 175 -a 1 -x {1.1.3.0 0.0.3.0 84 ------- null} + -t 12.8191 -s 1 -d 3 -p ack -e 40 -c 0 -i 175 -a 1 -x {1.1.3.0 0.0.3.0 84 ------- null} - -t 12.8191 -s 1 -d 3 -p ack -e 40 -c 0 -i 175 -a 1 -x {1.1.3.0 0.0.3.0 84 ------- null} h -t 12.8191 -s 1 -d 3 -p ack -e 40 -c 0 -i 175 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.8207 -s 28 -d 1 -p ack -e 40 -c 0 -i 176 -a 1 -x {1.1.3.0 0.0.3.0 85 ------- null} + -t 12.8207 -s 1 -d 3 -p ack -e 40 -c 0 -i 176 -a 1 -x {1.1.3.0 0.0.3.0 85 ------- null} - -t 12.8207 -s 1 -d 3 -p ack -e 40 -c 0 -i 176 -a 1 -x {1.1.3.0 0.0.3.0 85 ------- null} h -t 12.8207 -s 1 -d 3 -p ack -e 40 -c 0 -i 176 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.8223 -s 28 -d 1 -p ack -e 40 -c 0 -i 177 -a 1 -x {1.1.3.0 0.0.3.0 86 ------- null} + -t 12.8223 -s 1 -d 3 -p ack -e 40 -c 0 -i 177 -a 1 -x {1.1.3.0 0.0.3.0 86 ------- null} - -t 12.8223 -s 1 -d 3 -p ack -e 40 -c 0 -i 177 -a 1 -x {1.1.3.0 0.0.3.0 86 ------- null} h -t 12.8223 -s 1 -d 3 -p ack -e 40 -c 0 -i 177 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.8239 -s 28 -d 1 -p ack -e 40 -c 0 -i 178 -a 1 -x {1.1.3.0 0.0.3.0 87 ------- null} + -t 12.8239 -s 1 -d 3 -p ack -e 40 -c 0 -i 178 -a 1 -x {1.1.3.0 0.0.3.0 87 ------- null} - -t 12.8239 -s 1 -d 3 -p ack -e 40 -c 0 -i 178 -a 1 -x {1.1.3.0 0.0.3.0 87 ------- null} h -t 12.8239 -s 1 -d 3 -p ack -e 40 -c 0 -i 178 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.8255 -s 28 -d 1 -p ack -e 40 -c 0 -i 179 -a 1 -x {1.1.3.0 0.0.3.0 88 ------- null} + -t 12.8255 -s 1 -d 3 -p ack -e 40 -c 0 -i 179 -a 1 -x {1.1.3.0 0.0.3.0 88 ------- null} - -t 12.8255 -s 1 -d 3 -p ack -e 40 -c 0 -i 179 -a 1 -x {1.1.3.0 0.0.3.0 88 ------- null} h -t 12.8255 -s 1 -d 3 -p ack -e 40 -c 0 -i 179 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.8271 -s 28 -d 1 -p ack -e 40 -c 0 -i 180 -a 1 -x {1.1.3.0 0.0.3.0 89 ------- null} + -t 12.8271 -s 1 -d 3 -p ack -e 40 -c 0 -i 180 -a 1 -x {1.1.3.0 0.0.3.0 89 ------- null} - -t 12.8271 -s 1 -d 3 -p ack -e 40 -c 0 -i 180 -a 1 -x {1.1.3.0 0.0.3.0 89 ------- null} h -t 12.8271 -s 1 -d 3 -p ack -e 40 -c 0 -i 180 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.8287 -s 28 -d 1 -p ack -e 40 -c 0 -i 181 -a 1 -x {1.1.3.0 0.0.3.0 90 ------- null} + -t 12.8287 -s 1 -d 3 -p ack -e 40 -c 0 -i 181 -a 1 -x {1.1.3.0 0.0.3.0 90 ------- null} - -t 12.8287 -s 1 -d 3 -p ack -e 40 -c 0 -i 181 -a 1 -x {1.1.3.0 0.0.3.0 90 ------- null} h -t 12.8287 -s 1 -d 3 -p ack -e 40 -c 0 -i 181 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 12.9383 -s 1 -d 3 -p ack -e 40 -c 0 -i 162 -a 1 -x {1.1.3.0 0.0.3.0 71 ------- null} + -t 12.9383 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {0.0.3.0 1.1.3.0 91 ------- null} - -t 12.9383 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {0.0.3.0 1.1.3.0 91 ------- null} h -t 12.9383 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.9399 -s 1 -d 3 -p ack -e 40 -c 0 -i 163 -a 1 -x {1.1.3.0 0.0.3.0 72 ------- null} + -t 12.9399 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {0.0.3.0 1.1.3.0 92 ------- null} - -t 12.9399 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {0.0.3.0 1.1.3.0 92 ------- null} h -t 12.9399 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.9415 -s 1 -d 3 -p ack -e 40 -c 0 -i 164 -a 1 -x {1.1.3.0 0.0.3.0 73 ------- null} + -t 12.9415 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 184 -a 0 -x {0.0.3.0 1.1.3.0 93 ------- null} - -t 12.9415 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 184 -a 0 -x {0.0.3.0 1.1.3.0 93 ------- null} h -t 12.9415 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 184 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.9431 -s 1 -d 3 -p ack -e 40 -c 0 -i 165 -a 1 -x {1.1.3.0 0.0.3.0 74 ------- null} + -t 12.9431 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {0.0.3.0 1.1.3.0 94 ------- null} - -t 12.9431 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {0.0.3.0 1.1.3.0 94 ------- null} h -t 12.9431 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.9447 -s 1 -d 3 -p ack -e 40 -c 0 -i 166 -a 1 -x {1.1.3.0 0.0.3.0 75 ------- null} + -t 12.9447 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 186 -a 0 -x {0.0.3.0 1.1.3.0 95 ------- null} - -t 12.9447 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 186 -a 0 -x {0.0.3.0 1.1.3.0 95 ------- null} h -t 12.9447 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 186 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.9463 -s 1 -d 3 -p ack -e 40 -c 0 -i 167 -a 1 -x {1.1.3.0 0.0.3.0 76 ------- null} + -t 12.9463 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {0.0.3.0 1.1.3.0 96 ------- null} - -t 12.9463 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {0.0.3.0 1.1.3.0 96 ------- null} h -t 12.9463 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.9479 -s 1 -d 3 -p ack -e 40 -c 0 -i 168 -a 1 -x {1.1.3.0 0.0.3.0 77 ------- null} + -t 12.9479 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 188 -a 0 -x {0.0.3.0 1.1.3.0 97 ------- null} - -t 12.9479 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 188 -a 0 -x {0.0.3.0 1.1.3.0 97 ------- null} h -t 12.9479 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 188 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.9495 -s 1 -d 3 -p ack -e 40 -c 0 -i 169 -a 1 -x {1.1.3.0 0.0.3.0 78 ------- null} + -t 12.9495 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {0.0.3.0 1.1.3.0 98 ------- null} - -t 12.9495 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {0.0.3.0 1.1.3.0 98 ------- null} h -t 12.9495 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.9511 -s 1 -d 3 -p ack -e 40 -c 0 -i 170 -a 1 -x {1.1.3.0 0.0.3.0 79 ------- null} + -t 12.9511 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 190 -a 0 -x {0.0.3.0 1.1.3.0 99 ------- null} - -t 12.9511 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 190 -a 0 -x {0.0.3.0 1.1.3.0 99 ------- null} h -t 12.9511 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 190 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.9527 -s 1 -d 3 -p ack -e 40 -c 0 -i 171 -a 1 -x {1.1.3.0 0.0.3.0 80 ------- null} + -t 12.9527 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {0.0.3.0 1.1.3.0 100 ------- null} - -t 12.9527 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {0.0.3.0 1.1.3.0 100 ------- null} h -t 12.9527 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.9543 -s 1 -d 3 -p ack -e 40 -c 0 -i 172 -a 1 -x {1.1.3.0 0.0.3.0 81 ------- null} + -t 12.9543 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 192 -a 0 -x {0.0.3.0 1.1.3.0 101 ------- null} - -t 12.9543 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 192 -a 0 -x {0.0.3.0 1.1.3.0 101 ------- null} h -t 12.9543 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 192 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.9559 -s 1 -d 3 -p ack -e 40 -c 0 -i 173 -a 1 -x {1.1.3.0 0.0.3.0 82 ------- null} + -t 12.9559 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {0.0.3.0 1.1.3.0 102 ------- null} - -t 12.9559 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {0.0.3.0 1.1.3.0 102 ------- null} h -t 12.9559 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.9575 -s 1 -d 3 -p ack -e 40 -c 0 -i 174 -a 1 -x {1.1.3.0 0.0.3.0 83 ------- null} + -t 12.9575 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 194 -a 0 -x {0.0.3.0 1.1.3.0 103 ------- null} - -t 12.9575 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 194 -a 0 -x {0.0.3.0 1.1.3.0 103 ------- null} h -t 12.9575 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 194 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.9591 -s 1 -d 3 -p ack -e 40 -c 0 -i 175 -a 1 -x {1.1.3.0 0.0.3.0 84 ------- null} + -t 12.9591 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {0.0.3.0 1.1.3.0 104 ------- null} - -t 12.9591 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {0.0.3.0 1.1.3.0 104 ------- null} h -t 12.9591 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.9607 -s 1 -d 3 -p ack -e 40 -c 0 -i 176 -a 1 -x {1.1.3.0 0.0.3.0 85 ------- null} + -t 12.9607 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 196 -a 0 -x {0.0.3.0 1.1.3.0 105 ------- null} - -t 12.9607 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 196 -a 0 -x {0.0.3.0 1.1.3.0 105 ------- null} h -t 12.9607 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 196 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.9623 -s 1 -d 3 -p ack -e 40 -c 0 -i 177 -a 1 -x {1.1.3.0 0.0.3.0 86 ------- null} + -t 12.9623 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {0.0.3.0 1.1.3.0 106 ------- null} - -t 12.9623 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {0.0.3.0 1.1.3.0 106 ------- null} h -t 12.9623 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.9639 -s 1 -d 3 -p ack -e 40 -c 0 -i 178 -a 1 -x {1.1.3.0 0.0.3.0 87 ------- null} + -t 12.9639 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 198 -a 0 -x {0.0.3.0 1.1.3.0 107 ------- null} - -t 12.9639 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 198 -a 0 -x {0.0.3.0 1.1.3.0 107 ------- null} h -t 12.9639 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 198 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.9655 -s 1 -d 3 -p ack -e 40 -c 0 -i 179 -a 1 -x {1.1.3.0 0.0.3.0 88 ------- null} + -t 12.9655 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {0.0.3.0 1.1.3.0 108 ------- null} - -t 12.9655 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {0.0.3.0 1.1.3.0 108 ------- null} h -t 12.9655 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.9671 -s 1 -d 3 -p ack -e 40 -c 0 -i 180 -a 1 -x {1.1.3.0 0.0.3.0 89 ------- null} + -t 12.9671 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 200 -a 0 -x {0.0.3.0 1.1.3.0 109 ------- null} - -t 12.9671 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 200 -a 0 -x {0.0.3.0 1.1.3.0 109 ------- null} h -t 12.9671 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 200 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 12.9687 -s 1 -d 3 -p ack -e 40 -c 0 -i 181 -a 1 -x {1.1.3.0 0.0.3.0 90 ------- null} + -t 12.9687 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {0.0.3.0 1.1.3.0 110 ------- null} - -t 12.9687 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {0.0.3.0 1.1.3.0 110 ------- null} h -t 12.9687 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.0999 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {0.0.3.0 1.1.3.0 91 ------- null} + -t 13.0999 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {0.0.3.0 1.1.3.0 91 ------- null} - -t 13.0999 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {0.0.3.0 1.1.3.0 91 ------- null} h -t 13.0999 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.1015 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {0.0.3.0 1.1.3.0 92 ------- null} + -t 13.1015 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {0.0.3.0 1.1.3.0 92 ------- null} - -t 13.1015 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {0.0.3.0 1.1.3.0 92 ------- null} h -t 13.1015 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.1031 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 184 -a 0 -x {0.0.3.0 1.1.3.0 93 ------- null} + -t 13.1031 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 184 -a 0 -x {0.0.3.0 1.1.3.0 93 ------- null} - -t 13.1031 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 184 -a 0 -x {0.0.3.0 1.1.3.0 93 ------- null} h -t 13.1031 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 184 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.1047 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {0.0.3.0 1.1.3.0 94 ------- null} + -t 13.1047 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {0.0.3.0 1.1.3.0 94 ------- null} - -t 13.1047 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {0.0.3.0 1.1.3.0 94 ------- null} h -t 13.1047 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.1063 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 186 -a 0 -x {0.0.3.0 1.1.3.0 95 ------- null} + -t 13.1063 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 186 -a 0 -x {0.0.3.0 1.1.3.0 95 ------- null} - -t 13.1063 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 186 -a 0 -x {0.0.3.0 1.1.3.0 95 ------- null} h -t 13.1063 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 186 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.1079 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {0.0.3.0 1.1.3.0 96 ------- null} + -t 13.1079 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {0.0.3.0 1.1.3.0 96 ------- null} - -t 13.1079 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {0.0.3.0 1.1.3.0 96 ------- null} h -t 13.1079 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.1095 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 188 -a 0 -x {0.0.3.0 1.1.3.0 97 ------- null} + -t 13.1095 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 188 -a 0 -x {0.0.3.0 1.1.3.0 97 ------- null} - -t 13.1095 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 188 -a 0 -x {0.0.3.0 1.1.3.0 97 ------- null} h -t 13.1095 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 188 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.1111 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {0.0.3.0 1.1.3.0 98 ------- null} + -t 13.1111 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {0.0.3.0 1.1.3.0 98 ------- null} - -t 13.1111 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {0.0.3.0 1.1.3.0 98 ------- null} h -t 13.1111 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.1127 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 190 -a 0 -x {0.0.3.0 1.1.3.0 99 ------- null} + -t 13.1127 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 190 -a 0 -x {0.0.3.0 1.1.3.0 99 ------- null} - -t 13.1127 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 190 -a 0 -x {0.0.3.0 1.1.3.0 99 ------- null} h -t 13.1127 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 190 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.1143 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {0.0.3.0 1.1.3.0 100 ------- null} + -t 13.1143 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {0.0.3.0 1.1.3.0 100 ------- null} - -t 13.1143 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {0.0.3.0 1.1.3.0 100 ------- null} h -t 13.1143 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.1159 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 192 -a 0 -x {0.0.3.0 1.1.3.0 101 ------- null} + -t 13.1159 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 192 -a 0 -x {0.0.3.0 1.1.3.0 101 ------- null} - -t 13.1159 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 192 -a 0 -x {0.0.3.0 1.1.3.0 101 ------- null} h -t 13.1159 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 192 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.1175 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {0.0.3.0 1.1.3.0 102 ------- null} + -t 13.1175 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {0.0.3.0 1.1.3.0 102 ------- null} - -t 13.1175 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {0.0.3.0 1.1.3.0 102 ------- null} h -t 13.1175 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.1191 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 194 -a 0 -x {0.0.3.0 1.1.3.0 103 ------- null} + -t 13.1191 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 194 -a 0 -x {0.0.3.0 1.1.3.0 103 ------- null} - -t 13.1191 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 194 -a 0 -x {0.0.3.0 1.1.3.0 103 ------- null} h -t 13.1191 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 194 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.1207 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {0.0.3.0 1.1.3.0 104 ------- null} + -t 13.1207 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {0.0.3.0 1.1.3.0 104 ------- null} - -t 13.1207 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {0.0.3.0 1.1.3.0 104 ------- null} h -t 13.1207 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.1223 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 196 -a 0 -x {0.0.3.0 1.1.3.0 105 ------- null} + -t 13.1223 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 196 -a 0 -x {0.0.3.0 1.1.3.0 105 ------- null} - -t 13.1223 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 196 -a 0 -x {0.0.3.0 1.1.3.0 105 ------- null} h -t 13.1223 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 196 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.1239 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {0.0.3.0 1.1.3.0 106 ------- null} + -t 13.1239 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {0.0.3.0 1.1.3.0 106 ------- null} - -t 13.1239 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {0.0.3.0 1.1.3.0 106 ------- null} h -t 13.1239 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.1255 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 198 -a 0 -x {0.0.3.0 1.1.3.0 107 ------- null} + -t 13.1255 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 198 -a 0 -x {0.0.3.0 1.1.3.0 107 ------- null} - -t 13.1255 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 198 -a 0 -x {0.0.3.0 1.1.3.0 107 ------- null} h -t 13.1255 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 198 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.1271 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {0.0.3.0 1.1.3.0 108 ------- null} + -t 13.1271 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {0.0.3.0 1.1.3.0 108 ------- null} - -t 13.1271 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {0.0.3.0 1.1.3.0 108 ------- null} h -t 13.1271 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.1287 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 200 -a 0 -x {0.0.3.0 1.1.3.0 109 ------- null} + -t 13.1287 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 200 -a 0 -x {0.0.3.0 1.1.3.0 109 ------- null} - -t 13.1287 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 200 -a 0 -x {0.0.3.0 1.1.3.0 109 ------- null} h -t 13.1287 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 200 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.1303 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {0.0.3.0 1.1.3.0 110 ------- null} + -t 13.1303 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {0.0.3.0 1.1.3.0 110 ------- null} - -t 13.1303 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {0.0.3.0 1.1.3.0 110 ------- null} h -t 13.1303 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.4015 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {0.0.3.0 1.1.3.0 91 ------- null} + -t 13.4015 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {0.0.3.0 1.1.3.0 91 ------- null} - -t 13.4015 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {0.0.3.0 1.1.3.0 91 ------- null} h -t 13.4015 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.4031 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {0.0.3.0 1.1.3.0 92 ------- null} + -t 13.4031 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {0.0.3.0 1.1.3.0 92 ------- null} - -t 13.4031 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {0.0.3.0 1.1.3.0 92 ------- null} h -t 13.4031 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.4047 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 184 -a 0 -x {0.0.3.0 1.1.3.0 93 ------- null} + -t 13.4047 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 184 -a 0 -x {0.0.3.0 1.1.3.0 93 ------- null} - -t 13.4047 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 184 -a 0 -x {0.0.3.0 1.1.3.0 93 ------- null} h -t 13.4047 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 184 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.4063 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {0.0.3.0 1.1.3.0 94 ------- null} + -t 13.4063 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {0.0.3.0 1.1.3.0 94 ------- null} - -t 13.4063 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {0.0.3.0 1.1.3.0 94 ------- null} h -t 13.4063 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.4079 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 186 -a 0 -x {0.0.3.0 1.1.3.0 95 ------- null} + -t 13.4079 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 186 -a 0 -x {0.0.3.0 1.1.3.0 95 ------- null} - -t 13.4079 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 186 -a 0 -x {0.0.3.0 1.1.3.0 95 ------- null} h -t 13.4079 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 186 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.4095 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {0.0.3.0 1.1.3.0 96 ------- null} + -t 13.4095 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {0.0.3.0 1.1.3.0 96 ------- null} - -t 13.4095 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {0.0.3.0 1.1.3.0 96 ------- null} h -t 13.4095 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.4111 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 188 -a 0 -x {0.0.3.0 1.1.3.0 97 ------- null} + -t 13.4111 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 188 -a 0 -x {0.0.3.0 1.1.3.0 97 ------- null} - -t 13.4111 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 188 -a 0 -x {0.0.3.0 1.1.3.0 97 ------- null} h -t 13.4111 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 188 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.4127 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {0.0.3.0 1.1.3.0 98 ------- null} + -t 13.4127 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {0.0.3.0 1.1.3.0 98 ------- null} - -t 13.4127 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {0.0.3.0 1.1.3.0 98 ------- null} h -t 13.4127 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.4143 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 190 -a 0 -x {0.0.3.0 1.1.3.0 99 ------- null} + -t 13.4143 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 190 -a 0 -x {0.0.3.0 1.1.3.0 99 ------- null} - -t 13.4143 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 190 -a 0 -x {0.0.3.0 1.1.3.0 99 ------- null} h -t 13.4143 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 190 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.4159 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {0.0.3.0 1.1.3.0 100 ------- null} + -t 13.4159 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {0.0.3.0 1.1.3.0 100 ------- null} - -t 13.4159 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {0.0.3.0 1.1.3.0 100 ------- null} h -t 13.4159 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.4175 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 192 -a 0 -x {0.0.3.0 1.1.3.0 101 ------- null} + -t 13.4175 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 192 -a 0 -x {0.0.3.0 1.1.3.0 101 ------- null} - -t 13.4175 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 192 -a 0 -x {0.0.3.0 1.1.3.0 101 ------- null} h -t 13.4175 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 192 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.4191 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {0.0.3.0 1.1.3.0 102 ------- null} + -t 13.4191 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {0.0.3.0 1.1.3.0 102 ------- null} - -t 13.4191 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {0.0.3.0 1.1.3.0 102 ------- null} h -t 13.4191 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.4207 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 194 -a 0 -x {0.0.3.0 1.1.3.0 103 ------- null} + -t 13.4207 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 194 -a 0 -x {0.0.3.0 1.1.3.0 103 ------- null} - -t 13.4207 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 194 -a 0 -x {0.0.3.0 1.1.3.0 103 ------- null} h -t 13.4207 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 194 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.4223 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {0.0.3.0 1.1.3.0 104 ------- null} + -t 13.4223 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {0.0.3.0 1.1.3.0 104 ------- null} - -t 13.4223 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {0.0.3.0 1.1.3.0 104 ------- null} h -t 13.4223 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.4239 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 196 -a 0 -x {0.0.3.0 1.1.3.0 105 ------- null} + -t 13.4239 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 196 -a 0 -x {0.0.3.0 1.1.3.0 105 ------- null} - -t 13.4239 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 196 -a 0 -x {0.0.3.0 1.1.3.0 105 ------- null} h -t 13.4239 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 196 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.4255 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {0.0.3.0 1.1.3.0 106 ------- null} + -t 13.4255 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {0.0.3.0 1.1.3.0 106 ------- null} - -t 13.4255 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {0.0.3.0 1.1.3.0 106 ------- null} h -t 13.4255 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.4271 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 198 -a 0 -x {0.0.3.0 1.1.3.0 107 ------- null} + -t 13.4271 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 198 -a 0 -x {0.0.3.0 1.1.3.0 107 ------- null} - -t 13.4271 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 198 -a 0 -x {0.0.3.0 1.1.3.0 107 ------- null} h -t 13.4271 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 198 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.4287 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {0.0.3.0 1.1.3.0 108 ------- null} + -t 13.4287 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {0.0.3.0 1.1.3.0 108 ------- null} - -t 13.4287 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {0.0.3.0 1.1.3.0 108 ------- null} h -t 13.4287 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.4303 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 200 -a 0 -x {0.0.3.0 1.1.3.0 109 ------- null} + -t 13.4303 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 200 -a 0 -x {0.0.3.0 1.1.3.0 109 ------- null} - -t 13.4303 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 200 -a 0 -x {0.0.3.0 1.1.3.0 109 ------- null} h -t 13.4303 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 200 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.4319 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {0.0.3.0 1.1.3.0 110 ------- null} + -t 13.4319 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {0.0.3.0 1.1.3.0 110 ------- null} - -t 13.4319 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {0.0.3.0 1.1.3.0 110 ------- null} h -t 13.4319 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.5031 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {0.0.3.0 1.1.3.0 91 ------- null} + -t 13.5031 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {0.0.3.0 1.1.3.0 91 ------- null} - -t 13.5031 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {0.0.3.0 1.1.3.0 91 ------- null} h -t 13.5031 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.5047 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {0.0.3.0 1.1.3.0 92 ------- null} + -t 13.5047 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {0.0.3.0 1.1.3.0 92 ------- null} - -t 13.5047 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {0.0.3.0 1.1.3.0 92 ------- null} h -t 13.5047 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.5063 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 184 -a 0 -x {0.0.3.0 1.1.3.0 93 ------- null} + -t 13.5063 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 184 -a 0 -x {0.0.3.0 1.1.3.0 93 ------- null} - -t 13.5063 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 184 -a 0 -x {0.0.3.0 1.1.3.0 93 ------- null} h -t 13.5063 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 184 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.5079 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {0.0.3.0 1.1.3.0 94 ------- null} + -t 13.5079 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {0.0.3.0 1.1.3.0 94 ------- null} - -t 13.5079 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {0.0.3.0 1.1.3.0 94 ------- null} h -t 13.5079 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.5095 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 186 -a 0 -x {0.0.3.0 1.1.3.0 95 ------- null} + -t 13.5095 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 186 -a 0 -x {0.0.3.0 1.1.3.0 95 ------- null} - -t 13.5095 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 186 -a 0 -x {0.0.3.0 1.1.3.0 95 ------- null} h -t 13.5095 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 186 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.5111 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {0.0.3.0 1.1.3.0 96 ------- null} + -t 13.5111 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {0.0.3.0 1.1.3.0 96 ------- null} - -t 13.5111 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {0.0.3.0 1.1.3.0 96 ------- null} h -t 13.5111 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.5127 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 188 -a 0 -x {0.0.3.0 1.1.3.0 97 ------- null} + -t 13.5127 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 188 -a 0 -x {0.0.3.0 1.1.3.0 97 ------- null} - -t 13.5127 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 188 -a 0 -x {0.0.3.0 1.1.3.0 97 ------- null} h -t 13.5127 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 188 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.5143 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {0.0.3.0 1.1.3.0 98 ------- null} + -t 13.5143 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {0.0.3.0 1.1.3.0 98 ------- null} - -t 13.5143 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {0.0.3.0 1.1.3.0 98 ------- null} h -t 13.5143 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.5159 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 190 -a 0 -x {0.0.3.0 1.1.3.0 99 ------- null} + -t 13.5159 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 190 -a 0 -x {0.0.3.0 1.1.3.0 99 ------- null} - -t 13.5159 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 190 -a 0 -x {0.0.3.0 1.1.3.0 99 ------- null} h -t 13.5159 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 190 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.5175 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {0.0.3.0 1.1.3.0 100 ------- null} + -t 13.5175 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {0.0.3.0 1.1.3.0 100 ------- null} - -t 13.5175 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {0.0.3.0 1.1.3.0 100 ------- null} h -t 13.5175 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.5191 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 192 -a 0 -x {0.0.3.0 1.1.3.0 101 ------- null} + -t 13.5191 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 192 -a 0 -x {0.0.3.0 1.1.3.0 101 ------- null} - -t 13.5191 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 192 -a 0 -x {0.0.3.0 1.1.3.0 101 ------- null} h -t 13.5191 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 192 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.5207 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {0.0.3.0 1.1.3.0 102 ------- null} + -t 13.5207 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {0.0.3.0 1.1.3.0 102 ------- null} - -t 13.5207 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {0.0.3.0 1.1.3.0 102 ------- null} h -t 13.5207 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.5223 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 194 -a 0 -x {0.0.3.0 1.1.3.0 103 ------- null} + -t 13.5223 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 194 -a 0 -x {0.0.3.0 1.1.3.0 103 ------- null} - -t 13.5223 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 194 -a 0 -x {0.0.3.0 1.1.3.0 103 ------- null} h -t 13.5223 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 194 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.5239 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {0.0.3.0 1.1.3.0 104 ------- null} + -t 13.5239 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {0.0.3.0 1.1.3.0 104 ------- null} - -t 13.5239 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {0.0.3.0 1.1.3.0 104 ------- null} h -t 13.5239 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.5255 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 196 -a 0 -x {0.0.3.0 1.1.3.0 105 ------- null} + -t 13.5255 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 196 -a 0 -x {0.0.3.0 1.1.3.0 105 ------- null} - -t 13.5255 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 196 -a 0 -x {0.0.3.0 1.1.3.0 105 ------- null} h -t 13.5255 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 196 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.5271 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {0.0.3.0 1.1.3.0 106 ------- null} + -t 13.5271 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {0.0.3.0 1.1.3.0 106 ------- null} - -t 13.5271 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {0.0.3.0 1.1.3.0 106 ------- null} h -t 13.5271 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.5287 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 198 -a 0 -x {0.0.3.0 1.1.3.0 107 ------- null} + -t 13.5287 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 198 -a 0 -x {0.0.3.0 1.1.3.0 107 ------- null} - -t 13.5287 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 198 -a 0 -x {0.0.3.0 1.1.3.0 107 ------- null} h -t 13.5287 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 198 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.5303 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {0.0.3.0 1.1.3.0 108 ------- null} + -t 13.5303 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {0.0.3.0 1.1.3.0 108 ------- null} - -t 13.5303 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {0.0.3.0 1.1.3.0 108 ------- null} h -t 13.5303 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.5319 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 200 -a 0 -x {0.0.3.0 1.1.3.0 109 ------- null} + -t 13.5319 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 200 -a 0 -x {0.0.3.0 1.1.3.0 109 ------- null} - -t 13.5319 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 200 -a 0 -x {0.0.3.0 1.1.3.0 109 ------- null} h -t 13.5319 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 200 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.5335 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {0.0.3.0 1.1.3.0 110 ------- null} + -t 13.5335 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {0.0.3.0 1.1.3.0 110 ------- null} - -t 13.5335 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {0.0.3.0 1.1.3.0 110 ------- null} h -t 13.5335 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.5847 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {0.0.3.0 1.1.3.0 91 ------- null} + -t 13.5847 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {0.0.3.0 1.1.3.0 91 ------- null} - -t 13.5847 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {0.0.3.0 1.1.3.0 91 ------- null} h -t 13.5847 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.5863 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {0.0.3.0 1.1.3.0 92 ------- null} + -t 13.5863 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {0.0.3.0 1.1.3.0 92 ------- null} - -t 13.5863 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {0.0.3.0 1.1.3.0 92 ------- null} h -t 13.5863 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.5879 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 184 -a 0 -x {0.0.3.0 1.1.3.0 93 ------- null} + -t 13.5879 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 184 -a 0 -x {0.0.3.0 1.1.3.0 93 ------- null} - -t 13.5879 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 184 -a 0 -x {0.0.3.0 1.1.3.0 93 ------- null} h -t 13.5879 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 184 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.5895 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {0.0.3.0 1.1.3.0 94 ------- null} + -t 13.5895 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {0.0.3.0 1.1.3.0 94 ------- null} - -t 13.5895 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {0.0.3.0 1.1.3.0 94 ------- null} h -t 13.5895 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.5911 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 186 -a 0 -x {0.0.3.0 1.1.3.0 95 ------- null} + -t 13.5911 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 186 -a 0 -x {0.0.3.0 1.1.3.0 95 ------- null} - -t 13.5911 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 186 -a 0 -x {0.0.3.0 1.1.3.0 95 ------- null} h -t 13.5911 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 186 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.5927 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {0.0.3.0 1.1.3.0 96 ------- null} + -t 13.5927 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {0.0.3.0 1.1.3.0 96 ------- null} - -t 13.5927 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {0.0.3.0 1.1.3.0 96 ------- null} h -t 13.5927 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.5943 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 188 -a 0 -x {0.0.3.0 1.1.3.0 97 ------- null} + -t 13.5943 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 188 -a 0 -x {0.0.3.0 1.1.3.0 97 ------- null} - -t 13.5943 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 188 -a 0 -x {0.0.3.0 1.1.3.0 97 ------- null} h -t 13.5943 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 188 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.5959 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {0.0.3.0 1.1.3.0 98 ------- null} + -t 13.5959 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {0.0.3.0 1.1.3.0 98 ------- null} - -t 13.5959 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {0.0.3.0 1.1.3.0 98 ------- null} h -t 13.5959 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.5975 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 190 -a 0 -x {0.0.3.0 1.1.3.0 99 ------- null} + -t 13.5975 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 190 -a 0 -x {0.0.3.0 1.1.3.0 99 ------- null} - -t 13.5975 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 190 -a 0 -x {0.0.3.0 1.1.3.0 99 ------- null} h -t 13.5975 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 190 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.5991 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {0.0.3.0 1.1.3.0 100 ------- null} + -t 13.5991 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {0.0.3.0 1.1.3.0 100 ------- null} - -t 13.5991 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {0.0.3.0 1.1.3.0 100 ------- null} h -t 13.5991 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.6007 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 192 -a 0 -x {0.0.3.0 1.1.3.0 101 ------- null} + -t 13.6007 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 192 -a 0 -x {0.0.3.0 1.1.3.0 101 ------- null} - -t 13.6007 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 192 -a 0 -x {0.0.3.0 1.1.3.0 101 ------- null} h -t 13.6007 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 192 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.6023 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {0.0.3.0 1.1.3.0 102 ------- null} + -t 13.6023 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {0.0.3.0 1.1.3.0 102 ------- null} - -t 13.6023 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {0.0.3.0 1.1.3.0 102 ------- null} h -t 13.6023 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.6039 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 194 -a 0 -x {0.0.3.0 1.1.3.0 103 ------- null} + -t 13.6039 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 194 -a 0 -x {0.0.3.0 1.1.3.0 103 ------- null} - -t 13.6039 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 194 -a 0 -x {0.0.3.0 1.1.3.0 103 ------- null} h -t 13.6039 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 194 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.6055 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {0.0.3.0 1.1.3.0 104 ------- null} + -t 13.6055 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {0.0.3.0 1.1.3.0 104 ------- null} - -t 13.6055 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {0.0.3.0 1.1.3.0 104 ------- null} h -t 13.6055 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.6071 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 196 -a 0 -x {0.0.3.0 1.1.3.0 105 ------- null} + -t 13.6071 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 196 -a 0 -x {0.0.3.0 1.1.3.0 105 ------- null} - -t 13.6071 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 196 -a 0 -x {0.0.3.0 1.1.3.0 105 ------- null} h -t 13.6071 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 196 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.6087 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {0.0.3.0 1.1.3.0 106 ------- null} + -t 13.6087 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {0.0.3.0 1.1.3.0 106 ------- null} - -t 13.6087 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {0.0.3.0 1.1.3.0 106 ------- null} h -t 13.6087 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.6103 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 198 -a 0 -x {0.0.3.0 1.1.3.0 107 ------- null} + -t 13.6103 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 198 -a 0 -x {0.0.3.0 1.1.3.0 107 ------- null} - -t 13.6103 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 198 -a 0 -x {0.0.3.0 1.1.3.0 107 ------- null} h -t 13.6103 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 198 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.6119 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {0.0.3.0 1.1.3.0 108 ------- null} + -t 13.6119 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {0.0.3.0 1.1.3.0 108 ------- null} - -t 13.6119 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {0.0.3.0 1.1.3.0 108 ------- null} h -t 13.6119 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.6135 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 200 -a 0 -x {0.0.3.0 1.1.3.0 109 ------- null} + -t 13.6135 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 200 -a 0 -x {0.0.3.0 1.1.3.0 109 ------- null} - -t 13.6135 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 200 -a 0 -x {0.0.3.0 1.1.3.0 109 ------- null} h -t 13.6135 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 200 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.6151 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {0.0.3.0 1.1.3.0 110 ------- null} + -t 13.6151 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {0.0.3.0 1.1.3.0 110 ------- null} - -t 13.6151 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {0.0.3.0 1.1.3.0 110 ------- null} h -t 13.6151 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.6663 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {0.0.3.0 1.1.3.0 91 ------- null} + -t 13.6663 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {0.0.3.0 1.1.3.0 91 ------- null} - -t 13.6663 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {0.0.3.0 1.1.3.0 91 ------- null} h -t 13.6663 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.6679 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {0.0.3.0 1.1.3.0 92 ------- null} + -t 13.6679 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {0.0.3.0 1.1.3.0 92 ------- null} - -t 13.6679 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {0.0.3.0 1.1.3.0 92 ------- null} h -t 13.6679 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.6695 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 184 -a 0 -x {0.0.3.0 1.1.3.0 93 ------- null} + -t 13.6695 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 184 -a 0 -x {0.0.3.0 1.1.3.0 93 ------- null} - -t 13.6695 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 184 -a 0 -x {0.0.3.0 1.1.3.0 93 ------- null} h -t 13.6695 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 184 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.6711 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {0.0.3.0 1.1.3.0 94 ------- null} + -t 13.6711 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {0.0.3.0 1.1.3.0 94 ------- null} - -t 13.6711 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {0.0.3.0 1.1.3.0 94 ------- null} h -t 13.6711 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.6727 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 186 -a 0 -x {0.0.3.0 1.1.3.0 95 ------- null} + -t 13.6727 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 186 -a 0 -x {0.0.3.0 1.1.3.0 95 ------- null} - -t 13.6727 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 186 -a 0 -x {0.0.3.0 1.1.3.0 95 ------- null} h -t 13.6727 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 186 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.6743 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {0.0.3.0 1.1.3.0 96 ------- null} + -t 13.6743 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {0.0.3.0 1.1.3.0 96 ------- null} - -t 13.6743 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {0.0.3.0 1.1.3.0 96 ------- null} h -t 13.6743 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.6759 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 188 -a 0 -x {0.0.3.0 1.1.3.0 97 ------- null} + -t 13.6759 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 188 -a 0 -x {0.0.3.0 1.1.3.0 97 ------- null} - -t 13.6759 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 188 -a 0 -x {0.0.3.0 1.1.3.0 97 ------- null} h -t 13.6759 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 188 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.6775 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {0.0.3.0 1.1.3.0 98 ------- null} + -t 13.6775 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {0.0.3.0 1.1.3.0 98 ------- null} - -t 13.6775 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {0.0.3.0 1.1.3.0 98 ------- null} h -t 13.6775 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.6791 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 190 -a 0 -x {0.0.3.0 1.1.3.0 99 ------- null} + -t 13.6791 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 190 -a 0 -x {0.0.3.0 1.1.3.0 99 ------- null} - -t 13.6791 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 190 -a 0 -x {0.0.3.0 1.1.3.0 99 ------- null} h -t 13.6791 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 190 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.6807 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {0.0.3.0 1.1.3.0 100 ------- null} + -t 13.6807 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {0.0.3.0 1.1.3.0 100 ------- null} - -t 13.6807 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {0.0.3.0 1.1.3.0 100 ------- null} h -t 13.6807 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.6823 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 192 -a 0 -x {0.0.3.0 1.1.3.0 101 ------- null} + -t 13.6823 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 192 -a 0 -x {0.0.3.0 1.1.3.0 101 ------- null} - -t 13.6823 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 192 -a 0 -x {0.0.3.0 1.1.3.0 101 ------- null} h -t 13.6823 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 192 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.6839 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {0.0.3.0 1.1.3.0 102 ------- null} + -t 13.6839 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {0.0.3.0 1.1.3.0 102 ------- null} - -t 13.6839 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {0.0.3.0 1.1.3.0 102 ------- null} h -t 13.6839 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.6855 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 194 -a 0 -x {0.0.3.0 1.1.3.0 103 ------- null} + -t 13.6855 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 194 -a 0 -x {0.0.3.0 1.1.3.0 103 ------- null} - -t 13.6855 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 194 -a 0 -x {0.0.3.0 1.1.3.0 103 ------- null} h -t 13.6855 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 194 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.6871 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {0.0.3.0 1.1.3.0 104 ------- null} + -t 13.6871 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {0.0.3.0 1.1.3.0 104 ------- null} - -t 13.6871 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {0.0.3.0 1.1.3.0 104 ------- null} h -t 13.6871 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.6887 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 196 -a 0 -x {0.0.3.0 1.1.3.0 105 ------- null} + -t 13.6887 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 196 -a 0 -x {0.0.3.0 1.1.3.0 105 ------- null} - -t 13.6887 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 196 -a 0 -x {0.0.3.0 1.1.3.0 105 ------- null} h -t 13.6887 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 196 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.6903 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {0.0.3.0 1.1.3.0 106 ------- null} + -t 13.6903 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {0.0.3.0 1.1.3.0 106 ------- null} - -t 13.6903 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {0.0.3.0 1.1.3.0 106 ------- null} h -t 13.6903 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.6919 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 198 -a 0 -x {0.0.3.0 1.1.3.0 107 ------- null} + -t 13.6919 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 198 -a 0 -x {0.0.3.0 1.1.3.0 107 ------- null} - -t 13.6919 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 198 -a 0 -x {0.0.3.0 1.1.3.0 107 ------- null} h -t 13.6919 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 198 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.6935 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {0.0.3.0 1.1.3.0 108 ------- null} + -t 13.6935 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {0.0.3.0 1.1.3.0 108 ------- null} - -t 13.6935 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {0.0.3.0 1.1.3.0 108 ------- null} h -t 13.6935 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.6951 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 200 -a 0 -x {0.0.3.0 1.1.3.0 109 ------- null} + -t 13.6951 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 200 -a 0 -x {0.0.3.0 1.1.3.0 109 ------- null} - -t 13.6951 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 200 -a 0 -x {0.0.3.0 1.1.3.0 109 ------- null} h -t 13.6951 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 200 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.6967 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {0.0.3.0 1.1.3.0 110 ------- null} + -t 13.6967 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {0.0.3.0 1.1.3.0 110 ------- null} - -t 13.6967 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {0.0.3.0 1.1.3.0 110 ------- null} h -t 13.6967 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 13.7279 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 182 -a 0 -x {0.0.3.0 1.1.3.0 91 ------- null} + -t 13.7279 -s 21 -d 28 -p ack -e 40 -c 0 -i 202 -a 1 -x {1.1.3.0 0.0.3.0 91 ------- null} - -t 13.7279 -s 21 -d 28 -p ack -e 40 -c 0 -i 202 -a 1 -x {1.1.3.0 0.0.3.0 91 ------- null} h -t 13.7279 -s 21 -d 28 -p ack -e 40 -c 0 -i 202 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 13.7295 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {0.0.3.0 1.1.3.0 92 ------- null} + -t 13.7295 -s 21 -d 28 -p ack -e 40 -c 0 -i 203 -a 1 -x {1.1.3.0 0.0.3.0 92 ------- null} - -t 13.7295 -s 21 -d 28 -p ack -e 40 -c 0 -i 203 -a 1 -x {1.1.3.0 0.0.3.0 92 ------- null} h -t 13.7295 -s 21 -d 28 -p ack -e 40 -c 0 -i 203 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 13.7311 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 184 -a 0 -x {0.0.3.0 1.1.3.0 93 ------- null} + -t 13.7311 -s 21 -d 28 -p ack -e 40 -c 0 -i 204 -a 1 -x {1.1.3.0 0.0.3.0 93 ------- null} - -t 13.7311 -s 21 -d 28 -p ack -e 40 -c 0 -i 204 -a 1 -x {1.1.3.0 0.0.3.0 93 ------- null} h -t 13.7311 -s 21 -d 28 -p ack -e 40 -c 0 -i 204 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 13.7327 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {0.0.3.0 1.1.3.0 94 ------- null} + -t 13.7327 -s 21 -d 28 -p ack -e 40 -c 0 -i 205 -a 1 -x {1.1.3.0 0.0.3.0 94 ------- null} - -t 13.7327 -s 21 -d 28 -p ack -e 40 -c 0 -i 205 -a 1 -x {1.1.3.0 0.0.3.0 94 ------- null} h -t 13.7327 -s 21 -d 28 -p ack -e 40 -c 0 -i 205 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 13.7343 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 186 -a 0 -x {0.0.3.0 1.1.3.0 95 ------- null} + -t 13.7343 -s 21 -d 28 -p ack -e 40 -c 0 -i 206 -a 1 -x {1.1.3.0 0.0.3.0 95 ------- null} - -t 13.7343 -s 21 -d 28 -p ack -e 40 -c 0 -i 206 -a 1 -x {1.1.3.0 0.0.3.0 95 ------- null} h -t 13.7343 -s 21 -d 28 -p ack -e 40 -c 0 -i 206 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 13.7359 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {0.0.3.0 1.1.3.0 96 ------- null} + -t 13.7359 -s 21 -d 28 -p ack -e 40 -c 0 -i 207 -a 1 -x {1.1.3.0 0.0.3.0 96 ------- null} - -t 13.7359 -s 21 -d 28 -p ack -e 40 -c 0 -i 207 -a 1 -x {1.1.3.0 0.0.3.0 96 ------- null} h -t 13.7359 -s 21 -d 28 -p ack -e 40 -c 0 -i 207 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 13.7375 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 188 -a 0 -x {0.0.3.0 1.1.3.0 97 ------- null} + -t 13.7375 -s 21 -d 28 -p ack -e 40 -c 0 -i 208 -a 1 -x {1.1.3.0 0.0.3.0 97 ------- null} - -t 13.7375 -s 21 -d 28 -p ack -e 40 -c 0 -i 208 -a 1 -x {1.1.3.0 0.0.3.0 97 ------- null} h -t 13.7375 -s 21 -d 28 -p ack -e 40 -c 0 -i 208 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 13.7391 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {0.0.3.0 1.1.3.0 98 ------- null} + -t 13.7391 -s 21 -d 28 -p ack -e 40 -c 0 -i 209 -a 1 -x {1.1.3.0 0.0.3.0 98 ------- null} - -t 13.7391 -s 21 -d 28 -p ack -e 40 -c 0 -i 209 -a 1 -x {1.1.3.0 0.0.3.0 98 ------- null} h -t 13.7391 -s 21 -d 28 -p ack -e 40 -c 0 -i 209 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 13.7407 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 190 -a 0 -x {0.0.3.0 1.1.3.0 99 ------- null} + -t 13.7407 -s 21 -d 28 -p ack -e 40 -c 0 -i 210 -a 1 -x {1.1.3.0 0.0.3.0 99 ------- null} - -t 13.7407 -s 21 -d 28 -p ack -e 40 -c 0 -i 210 -a 1 -x {1.1.3.0 0.0.3.0 99 ------- null} h -t 13.7407 -s 21 -d 28 -p ack -e 40 -c 0 -i 210 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 13.7423 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {0.0.3.0 1.1.3.0 100 ------- null} + -t 13.7423 -s 21 -d 28 -p ack -e 40 -c 0 -i 211 -a 1 -x {1.1.3.0 0.0.3.0 100 ------- null} - -t 13.7423 -s 21 -d 28 -p ack -e 40 -c 0 -i 211 -a 1 -x {1.1.3.0 0.0.3.0 100 ------- null} h -t 13.7423 -s 21 -d 28 -p ack -e 40 -c 0 -i 211 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 13.7439 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 192 -a 0 -x {0.0.3.0 1.1.3.0 101 ------- null} + -t 13.7439 -s 21 -d 28 -p ack -e 40 -c 0 -i 212 -a 1 -x {1.1.3.0 0.0.3.0 101 ------- null} - -t 13.7439 -s 21 -d 28 -p ack -e 40 -c 0 -i 212 -a 1 -x {1.1.3.0 0.0.3.0 101 ------- null} h -t 13.7439 -s 21 -d 28 -p ack -e 40 -c 0 -i 212 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 13.7455 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {0.0.3.0 1.1.3.0 102 ------- null} + -t 13.7455 -s 21 -d 28 -p ack -e 40 -c 0 -i 213 -a 1 -x {1.1.3.0 0.0.3.0 102 ------- null} - -t 13.7455 -s 21 -d 28 -p ack -e 40 -c 0 -i 213 -a 1 -x {1.1.3.0 0.0.3.0 102 ------- null} h -t 13.7455 -s 21 -d 28 -p ack -e 40 -c 0 -i 213 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 13.7471 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 194 -a 0 -x {0.0.3.0 1.1.3.0 103 ------- null} + -t 13.7471 -s 21 -d 28 -p ack -e 40 -c 0 -i 214 -a 1 -x {1.1.3.0 0.0.3.0 103 ------- null} - -t 13.7471 -s 21 -d 28 -p ack -e 40 -c 0 -i 214 -a 1 -x {1.1.3.0 0.0.3.0 103 ------- null} h -t 13.7471 -s 21 -d 28 -p ack -e 40 -c 0 -i 214 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 13.7487 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {0.0.3.0 1.1.3.0 104 ------- null} + -t 13.7487 -s 21 -d 28 -p ack -e 40 -c 0 -i 215 -a 1 -x {1.1.3.0 0.0.3.0 104 ------- null} - -t 13.7487 -s 21 -d 28 -p ack -e 40 -c 0 -i 215 -a 1 -x {1.1.3.0 0.0.3.0 104 ------- null} h -t 13.7487 -s 21 -d 28 -p ack -e 40 -c 0 -i 215 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 13.7503 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 196 -a 0 -x {0.0.3.0 1.1.3.0 105 ------- null} + -t 13.7503 -s 21 -d 28 -p ack -e 40 -c 0 -i 216 -a 1 -x {1.1.3.0 0.0.3.0 105 ------- null} - -t 13.7503 -s 21 -d 28 -p ack -e 40 -c 0 -i 216 -a 1 -x {1.1.3.0 0.0.3.0 105 ------- null} h -t 13.7503 -s 21 -d 28 -p ack -e 40 -c 0 -i 216 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 13.7519 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {0.0.3.0 1.1.3.0 106 ------- null} + -t 13.7519 -s 21 -d 28 -p ack -e 40 -c 0 -i 217 -a 1 -x {1.1.3.0 0.0.3.0 106 ------- null} - -t 13.7519 -s 21 -d 28 -p ack -e 40 -c 0 -i 217 -a 1 -x {1.1.3.0 0.0.3.0 106 ------- null} h -t 13.7519 -s 21 -d 28 -p ack -e 40 -c 0 -i 217 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 13.7535 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 198 -a 0 -x {0.0.3.0 1.1.3.0 107 ------- null} + -t 13.7535 -s 21 -d 28 -p ack -e 40 -c 0 -i 218 -a 1 -x {1.1.3.0 0.0.3.0 107 ------- null} - -t 13.7535 -s 21 -d 28 -p ack -e 40 -c 0 -i 218 -a 1 -x {1.1.3.0 0.0.3.0 107 ------- null} h -t 13.7535 -s 21 -d 28 -p ack -e 40 -c 0 -i 218 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 13.7551 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {0.0.3.0 1.1.3.0 108 ------- null} + -t 13.7551 -s 21 -d 28 -p ack -e 40 -c 0 -i 219 -a 1 -x {1.1.3.0 0.0.3.0 108 ------- null} - -t 13.7551 -s 21 -d 28 -p ack -e 40 -c 0 -i 219 -a 1 -x {1.1.3.0 0.0.3.0 108 ------- null} h -t 13.7551 -s 21 -d 28 -p ack -e 40 -c 0 -i 219 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 13.7567 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 200 -a 0 -x {0.0.3.0 1.1.3.0 109 ------- null} + -t 13.7567 -s 21 -d 28 -p ack -e 40 -c 0 -i 220 -a 1 -x {1.1.3.0 0.0.3.0 109 ------- null} - -t 13.7567 -s 21 -d 28 -p ack -e 40 -c 0 -i 220 -a 1 -x {1.1.3.0 0.0.3.0 109 ------- null} h -t 13.7567 -s 21 -d 28 -p ack -e 40 -c 0 -i 220 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 13.7583 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {0.0.3.0 1.1.3.0 110 ------- null} + -t 13.7583 -s 21 -d 28 -p ack -e 40 -c 0 -i 221 -a 1 -x {1.1.3.0 0.0.3.0 110 ------- null} - -t 13.7583 -s 21 -d 28 -p ack -e 40 -c 0 -i 221 -a 1 -x {1.1.3.0 0.0.3.0 110 ------- null} h -t 13.7583 -s 21 -d 28 -p ack -e 40 -c 0 -i 221 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 14.078 -s 21 -d 28 -p ack -e 40 -c 0 -i 202 -a 1 -x {1.1.3.0 0.0.3.0 91 ------- null} + -t 14.078 -s 28 -d 1 -p ack -e 40 -c 0 -i 202 -a 1 -x {1.1.3.0 0.0.3.0 91 ------- null} - -t 14.078 -s 28 -d 1 -p ack -e 40 -c 0 -i 202 -a 1 -x {1.1.3.0 0.0.3.0 91 ------- null} h -t 14.078 -s 28 -d 1 -p ack -e 40 -c 0 -i 202 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 14.0796 -s 21 -d 28 -p ack -e 40 -c 0 -i 203 -a 1 -x {1.1.3.0 0.0.3.0 92 ------- null} + -t 14.0796 -s 28 -d 1 -p ack -e 40 -c 0 -i 203 -a 1 -x {1.1.3.0 0.0.3.0 92 ------- null} - -t 14.0796 -s 28 -d 1 -p ack -e 40 -c 0 -i 203 -a 1 -x {1.1.3.0 0.0.3.0 92 ------- null} h -t 14.0796 -s 28 -d 1 -p ack -e 40 -c 0 -i 203 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 14.0812 -s 21 -d 28 -p ack -e 40 -c 0 -i 204 -a 1 -x {1.1.3.0 0.0.3.0 93 ------- null} + -t 14.0812 -s 28 -d 1 -p ack -e 40 -c 0 -i 204 -a 1 -x {1.1.3.0 0.0.3.0 93 ------- null} - -t 14.0812 -s 28 -d 1 -p ack -e 40 -c 0 -i 204 -a 1 -x {1.1.3.0 0.0.3.0 93 ------- null} h -t 14.0812 -s 28 -d 1 -p ack -e 40 -c 0 -i 204 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 14.0828 -s 21 -d 28 -p ack -e 40 -c 0 -i 205 -a 1 -x {1.1.3.0 0.0.3.0 94 ------- null} + -t 14.0828 -s 28 -d 1 -p ack -e 40 -c 0 -i 205 -a 1 -x {1.1.3.0 0.0.3.0 94 ------- null} - -t 14.0828 -s 28 -d 1 -p ack -e 40 -c 0 -i 205 -a 1 -x {1.1.3.0 0.0.3.0 94 ------- null} h -t 14.0828 -s 28 -d 1 -p ack -e 40 -c 0 -i 205 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 14.0844 -s 21 -d 28 -p ack -e 40 -c 0 -i 206 -a 1 -x {1.1.3.0 0.0.3.0 95 ------- null} + -t 14.0844 -s 28 -d 1 -p ack -e 40 -c 0 -i 206 -a 1 -x {1.1.3.0 0.0.3.0 95 ------- null} - -t 14.0844 -s 28 -d 1 -p ack -e 40 -c 0 -i 206 -a 1 -x {1.1.3.0 0.0.3.0 95 ------- null} h -t 14.0844 -s 28 -d 1 -p ack -e 40 -c 0 -i 206 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 14.086 -s 21 -d 28 -p ack -e 40 -c 0 -i 207 -a 1 -x {1.1.3.0 0.0.3.0 96 ------- null} + -t 14.086 -s 28 -d 1 -p ack -e 40 -c 0 -i 207 -a 1 -x {1.1.3.0 0.0.3.0 96 ------- null} - -t 14.086 -s 28 -d 1 -p ack -e 40 -c 0 -i 207 -a 1 -x {1.1.3.0 0.0.3.0 96 ------- null} h -t 14.086 -s 28 -d 1 -p ack -e 40 -c 0 -i 207 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 14.0876 -s 21 -d 28 -p ack -e 40 -c 0 -i 208 -a 1 -x {1.1.3.0 0.0.3.0 97 ------- null} + -t 14.0876 -s 28 -d 1 -p ack -e 40 -c 0 -i 208 -a 1 -x {1.1.3.0 0.0.3.0 97 ------- null} - -t 14.0876 -s 28 -d 1 -p ack -e 40 -c 0 -i 208 -a 1 -x {1.1.3.0 0.0.3.0 97 ------- null} h -t 14.0876 -s 28 -d 1 -p ack -e 40 -c 0 -i 208 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 14.0892 -s 21 -d 28 -p ack -e 40 -c 0 -i 209 -a 1 -x {1.1.3.0 0.0.3.0 98 ------- null} + -t 14.0892 -s 28 -d 1 -p ack -e 40 -c 0 -i 209 -a 1 -x {1.1.3.0 0.0.3.0 98 ------- null} - -t 14.0892 -s 28 -d 1 -p ack -e 40 -c 0 -i 209 -a 1 -x {1.1.3.0 0.0.3.0 98 ------- null} h -t 14.0892 -s 28 -d 1 -p ack -e 40 -c 0 -i 209 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 14.0908 -s 21 -d 28 -p ack -e 40 -c 0 -i 210 -a 1 -x {1.1.3.0 0.0.3.0 99 ------- null} + -t 14.0908 -s 28 -d 1 -p ack -e 40 -c 0 -i 210 -a 1 -x {1.1.3.0 0.0.3.0 99 ------- null} - -t 14.0908 -s 28 -d 1 -p ack -e 40 -c 0 -i 210 -a 1 -x {1.1.3.0 0.0.3.0 99 ------- null} h -t 14.0908 -s 28 -d 1 -p ack -e 40 -c 0 -i 210 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 14.0924 -s 21 -d 28 -p ack -e 40 -c 0 -i 211 -a 1 -x {1.1.3.0 0.0.3.0 100 ------- null} + -t 14.0924 -s 28 -d 1 -p ack -e 40 -c 0 -i 211 -a 1 -x {1.1.3.0 0.0.3.0 100 ------- null} - -t 14.0924 -s 28 -d 1 -p ack -e 40 -c 0 -i 211 -a 1 -x {1.1.3.0 0.0.3.0 100 ------- null} h -t 14.0924 -s 28 -d 1 -p ack -e 40 -c 0 -i 211 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 14.094 -s 21 -d 28 -p ack -e 40 -c 0 -i 212 -a 1 -x {1.1.3.0 0.0.3.0 101 ------- null} + -t 14.094 -s 28 -d 1 -p ack -e 40 -c 0 -i 212 -a 1 -x {1.1.3.0 0.0.3.0 101 ------- null} - -t 14.094 -s 28 -d 1 -p ack -e 40 -c 0 -i 212 -a 1 -x {1.1.3.0 0.0.3.0 101 ------- null} h -t 14.094 -s 28 -d 1 -p ack -e 40 -c 0 -i 212 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 14.0956 -s 21 -d 28 -p ack -e 40 -c 0 -i 213 -a 1 -x {1.1.3.0 0.0.3.0 102 ------- null} + -t 14.0956 -s 28 -d 1 -p ack -e 40 -c 0 -i 213 -a 1 -x {1.1.3.0 0.0.3.0 102 ------- null} - -t 14.0956 -s 28 -d 1 -p ack -e 40 -c 0 -i 213 -a 1 -x {1.1.3.0 0.0.3.0 102 ------- null} h -t 14.0956 -s 28 -d 1 -p ack -e 40 -c 0 -i 213 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 14.0972 -s 21 -d 28 -p ack -e 40 -c 0 -i 214 -a 1 -x {1.1.3.0 0.0.3.0 103 ------- null} + -t 14.0972 -s 28 -d 1 -p ack -e 40 -c 0 -i 214 -a 1 -x {1.1.3.0 0.0.3.0 103 ------- null} - -t 14.0972 -s 28 -d 1 -p ack -e 40 -c 0 -i 214 -a 1 -x {1.1.3.0 0.0.3.0 103 ------- null} h -t 14.0972 -s 28 -d 1 -p ack -e 40 -c 0 -i 214 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 14.0988 -s 21 -d 28 -p ack -e 40 -c 0 -i 215 -a 1 -x {1.1.3.0 0.0.3.0 104 ------- null} + -t 14.0988 -s 28 -d 1 -p ack -e 40 -c 0 -i 215 -a 1 -x {1.1.3.0 0.0.3.0 104 ------- null} - -t 14.0988 -s 28 -d 1 -p ack -e 40 -c 0 -i 215 -a 1 -x {1.1.3.0 0.0.3.0 104 ------- null} h -t 14.0988 -s 28 -d 1 -p ack -e 40 -c 0 -i 215 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 14.1004 -s 21 -d 28 -p ack -e 40 -c 0 -i 216 -a 1 -x {1.1.3.0 0.0.3.0 105 ------- null} + -t 14.1004 -s 28 -d 1 -p ack -e 40 -c 0 -i 216 -a 1 -x {1.1.3.0 0.0.3.0 105 ------- null} - -t 14.1004 -s 28 -d 1 -p ack -e 40 -c 0 -i 216 -a 1 -x {1.1.3.0 0.0.3.0 105 ------- null} h -t 14.1004 -s 28 -d 1 -p ack -e 40 -c 0 -i 216 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 14.102 -s 21 -d 28 -p ack -e 40 -c 0 -i 217 -a 1 -x {1.1.3.0 0.0.3.0 106 ------- null} + -t 14.102 -s 28 -d 1 -p ack -e 40 -c 0 -i 217 -a 1 -x {1.1.3.0 0.0.3.0 106 ------- null} - -t 14.102 -s 28 -d 1 -p ack -e 40 -c 0 -i 217 -a 1 -x {1.1.3.0 0.0.3.0 106 ------- null} h -t 14.102 -s 28 -d 1 -p ack -e 40 -c 0 -i 217 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 14.1036 -s 21 -d 28 -p ack -e 40 -c 0 -i 218 -a 1 -x {1.1.3.0 0.0.3.0 107 ------- null} + -t 14.1036 -s 28 -d 1 -p ack -e 40 -c 0 -i 218 -a 1 -x {1.1.3.0 0.0.3.0 107 ------- null} - -t 14.1036 -s 28 -d 1 -p ack -e 40 -c 0 -i 218 -a 1 -x {1.1.3.0 0.0.3.0 107 ------- null} h -t 14.1036 -s 28 -d 1 -p ack -e 40 -c 0 -i 218 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 14.1052 -s 21 -d 28 -p ack -e 40 -c 0 -i 219 -a 1 -x {1.1.3.0 0.0.3.0 108 ------- null} + -t 14.1052 -s 28 -d 1 -p ack -e 40 -c 0 -i 219 -a 1 -x {1.1.3.0 0.0.3.0 108 ------- null} - -t 14.1052 -s 28 -d 1 -p ack -e 40 -c 0 -i 219 -a 1 -x {1.1.3.0 0.0.3.0 108 ------- null} h -t 14.1052 -s 28 -d 1 -p ack -e 40 -c 0 -i 219 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 14.1068 -s 21 -d 28 -p ack -e 40 -c 0 -i 220 -a 1 -x {1.1.3.0 0.0.3.0 109 ------- null} + -t 14.1068 -s 28 -d 1 -p ack -e 40 -c 0 -i 220 -a 1 -x {1.1.3.0 0.0.3.0 109 ------- null} - -t 14.1068 -s 28 -d 1 -p ack -e 40 -c 0 -i 220 -a 1 -x {1.1.3.0 0.0.3.0 109 ------- null} h -t 14.1068 -s 28 -d 1 -p ack -e 40 -c 0 -i 220 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 14.1084 -s 21 -d 28 -p ack -e 40 -c 0 -i 221 -a 1 -x {1.1.3.0 0.0.3.0 110 ------- null} + -t 14.1084 -s 28 -d 1 -p ack -e 40 -c 0 -i 221 -a 1 -x {1.1.3.0 0.0.3.0 110 ------- null} - -t 14.1084 -s 28 -d 1 -p ack -e 40 -c 0 -i 221 -a 1 -x {1.1.3.0 0.0.3.0 110 ------- null} h -t 14.1084 -s 28 -d 1 -p ack -e 40 -c 0 -i 221 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 14.3781 -s 28 -d 1 -p ack -e 40 -c 0 -i 202 -a 1 -x {1.1.3.0 0.0.3.0 91 ------- null} + -t 14.3781 -s 1 -d 3 -p ack -e 40 -c 0 -i 202 -a 1 -x {1.1.3.0 0.0.3.0 91 ------- null} - -t 14.3781 -s 1 -d 3 -p ack -e 40 -c 0 -i 202 -a 1 -x {1.1.3.0 0.0.3.0 91 ------- null} h -t 14.3781 -s 1 -d 3 -p ack -e 40 -c 0 -i 202 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 14.3797 -s 28 -d 1 -p ack -e 40 -c 0 -i 203 -a 1 -x {1.1.3.0 0.0.3.0 92 ------- null} + -t 14.3797 -s 1 -d 3 -p ack -e 40 -c 0 -i 203 -a 1 -x {1.1.3.0 0.0.3.0 92 ------- null} - -t 14.3797 -s 1 -d 3 -p ack -e 40 -c 0 -i 203 -a 1 -x {1.1.3.0 0.0.3.0 92 ------- null} h -t 14.3797 -s 1 -d 3 -p ack -e 40 -c 0 -i 203 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 14.3813 -s 28 -d 1 -p ack -e 40 -c 0 -i 204 -a 1 -x {1.1.3.0 0.0.3.0 93 ------- null} + -t 14.3813 -s 1 -d 3 -p ack -e 40 -c 0 -i 204 -a 1 -x {1.1.3.0 0.0.3.0 93 ------- null} - -t 14.3813 -s 1 -d 3 -p ack -e 40 -c 0 -i 204 -a 1 -x {1.1.3.0 0.0.3.0 93 ------- null} h -t 14.3813 -s 1 -d 3 -p ack -e 40 -c 0 -i 204 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 14.3829 -s 28 -d 1 -p ack -e 40 -c 0 -i 205 -a 1 -x {1.1.3.0 0.0.3.0 94 ------- null} + -t 14.3829 -s 1 -d 3 -p ack -e 40 -c 0 -i 205 -a 1 -x {1.1.3.0 0.0.3.0 94 ------- null} - -t 14.3829 -s 1 -d 3 -p ack -e 40 -c 0 -i 205 -a 1 -x {1.1.3.0 0.0.3.0 94 ------- null} h -t 14.3829 -s 1 -d 3 -p ack -e 40 -c 0 -i 205 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 14.3845 -s 28 -d 1 -p ack -e 40 -c 0 -i 206 -a 1 -x {1.1.3.0 0.0.3.0 95 ------- null} + -t 14.3845 -s 1 -d 3 -p ack -e 40 -c 0 -i 206 -a 1 -x {1.1.3.0 0.0.3.0 95 ------- null} - -t 14.3845 -s 1 -d 3 -p ack -e 40 -c 0 -i 206 -a 1 -x {1.1.3.0 0.0.3.0 95 ------- null} h -t 14.3845 -s 1 -d 3 -p ack -e 40 -c 0 -i 206 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 14.3861 -s 28 -d 1 -p ack -e 40 -c 0 -i 207 -a 1 -x {1.1.3.0 0.0.3.0 96 ------- null} + -t 14.3861 -s 1 -d 3 -p ack -e 40 -c 0 -i 207 -a 1 -x {1.1.3.0 0.0.3.0 96 ------- null} - -t 14.3861 -s 1 -d 3 -p ack -e 40 -c 0 -i 207 -a 1 -x {1.1.3.0 0.0.3.0 96 ------- null} h -t 14.3861 -s 1 -d 3 -p ack -e 40 -c 0 -i 207 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 14.3877 -s 28 -d 1 -p ack -e 40 -c 0 -i 208 -a 1 -x {1.1.3.0 0.0.3.0 97 ------- null} + -t 14.3877 -s 1 -d 3 -p ack -e 40 -c 0 -i 208 -a 1 -x {1.1.3.0 0.0.3.0 97 ------- null} - -t 14.3877 -s 1 -d 3 -p ack -e 40 -c 0 -i 208 -a 1 -x {1.1.3.0 0.0.3.0 97 ------- null} h -t 14.3877 -s 1 -d 3 -p ack -e 40 -c 0 -i 208 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 14.3893 -s 28 -d 1 -p ack -e 40 -c 0 -i 209 -a 1 -x {1.1.3.0 0.0.3.0 98 ------- null} + -t 14.3893 -s 1 -d 3 -p ack -e 40 -c 0 -i 209 -a 1 -x {1.1.3.0 0.0.3.0 98 ------- null} - -t 14.3893 -s 1 -d 3 -p ack -e 40 -c 0 -i 209 -a 1 -x {1.1.3.0 0.0.3.0 98 ------- null} h -t 14.3893 -s 1 -d 3 -p ack -e 40 -c 0 -i 209 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 14.3909 -s 28 -d 1 -p ack -e 40 -c 0 -i 210 -a 1 -x {1.1.3.0 0.0.3.0 99 ------- null} + -t 14.3909 -s 1 -d 3 -p ack -e 40 -c 0 -i 210 -a 1 -x {1.1.3.0 0.0.3.0 99 ------- null} - -t 14.3909 -s 1 -d 3 -p ack -e 40 -c 0 -i 210 -a 1 -x {1.1.3.0 0.0.3.0 99 ------- null} h -t 14.3909 -s 1 -d 3 -p ack -e 40 -c 0 -i 210 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 14.3925 -s 28 -d 1 -p ack -e 40 -c 0 -i 211 -a 1 -x {1.1.3.0 0.0.3.0 100 ------- null} + -t 14.3925 -s 1 -d 3 -p ack -e 40 -c 0 -i 211 -a 1 -x {1.1.3.0 0.0.3.0 100 ------- null} - -t 14.3925 -s 1 -d 3 -p ack -e 40 -c 0 -i 211 -a 1 -x {1.1.3.0 0.0.3.0 100 ------- null} h -t 14.3925 -s 1 -d 3 -p ack -e 40 -c 0 -i 211 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 14.3941 -s 28 -d 1 -p ack -e 40 -c 0 -i 212 -a 1 -x {1.1.3.0 0.0.3.0 101 ------- null} + -t 14.3941 -s 1 -d 3 -p ack -e 40 -c 0 -i 212 -a 1 -x {1.1.3.0 0.0.3.0 101 ------- null} - -t 14.3941 -s 1 -d 3 -p ack -e 40 -c 0 -i 212 -a 1 -x {1.1.3.0 0.0.3.0 101 ------- null} h -t 14.3941 -s 1 -d 3 -p ack -e 40 -c 0 -i 212 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 14.3957 -s 28 -d 1 -p ack -e 40 -c 0 -i 213 -a 1 -x {1.1.3.0 0.0.3.0 102 ------- null} + -t 14.3957 -s 1 -d 3 -p ack -e 40 -c 0 -i 213 -a 1 -x {1.1.3.0 0.0.3.0 102 ------- null} - -t 14.3957 -s 1 -d 3 -p ack -e 40 -c 0 -i 213 -a 1 -x {1.1.3.0 0.0.3.0 102 ------- null} h -t 14.3957 -s 1 -d 3 -p ack -e 40 -c 0 -i 213 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 14.3973 -s 28 -d 1 -p ack -e 40 -c 0 -i 214 -a 1 -x {1.1.3.0 0.0.3.0 103 ------- null} + -t 14.3973 -s 1 -d 3 -p ack -e 40 -c 0 -i 214 -a 1 -x {1.1.3.0 0.0.3.0 103 ------- null} - -t 14.3973 -s 1 -d 3 -p ack -e 40 -c 0 -i 214 -a 1 -x {1.1.3.0 0.0.3.0 103 ------- null} h -t 14.3973 -s 1 -d 3 -p ack -e 40 -c 0 -i 214 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 14.3989 -s 28 -d 1 -p ack -e 40 -c 0 -i 215 -a 1 -x {1.1.3.0 0.0.3.0 104 ------- null} + -t 14.3989 -s 1 -d 3 -p ack -e 40 -c 0 -i 215 -a 1 -x {1.1.3.0 0.0.3.0 104 ------- null} - -t 14.3989 -s 1 -d 3 -p ack -e 40 -c 0 -i 215 -a 1 -x {1.1.3.0 0.0.3.0 104 ------- null} h -t 14.3989 -s 1 -d 3 -p ack -e 40 -c 0 -i 215 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 14.4005 -s 28 -d 1 -p ack -e 40 -c 0 -i 216 -a 1 -x {1.1.3.0 0.0.3.0 105 ------- null} + -t 14.4005 -s 1 -d 3 -p ack -e 40 -c 0 -i 216 -a 1 -x {1.1.3.0 0.0.3.0 105 ------- null} - -t 14.4005 -s 1 -d 3 -p ack -e 40 -c 0 -i 216 -a 1 -x {1.1.3.0 0.0.3.0 105 ------- null} h -t 14.4005 -s 1 -d 3 -p ack -e 40 -c 0 -i 216 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 14.4021 -s 28 -d 1 -p ack -e 40 -c 0 -i 217 -a 1 -x {1.1.3.0 0.0.3.0 106 ------- null} + -t 14.4021 -s 1 -d 3 -p ack -e 40 -c 0 -i 217 -a 1 -x {1.1.3.0 0.0.3.0 106 ------- null} - -t 14.4021 -s 1 -d 3 -p ack -e 40 -c 0 -i 217 -a 1 -x {1.1.3.0 0.0.3.0 106 ------- null} h -t 14.4021 -s 1 -d 3 -p ack -e 40 -c 0 -i 217 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 14.4037 -s 28 -d 1 -p ack -e 40 -c 0 -i 218 -a 1 -x {1.1.3.0 0.0.3.0 107 ------- null} + -t 14.4037 -s 1 -d 3 -p ack -e 40 -c 0 -i 218 -a 1 -x {1.1.3.0 0.0.3.0 107 ------- null} - -t 14.4037 -s 1 -d 3 -p ack -e 40 -c 0 -i 218 -a 1 -x {1.1.3.0 0.0.3.0 107 ------- null} h -t 14.4037 -s 1 -d 3 -p ack -e 40 -c 0 -i 218 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 14.4053 -s 28 -d 1 -p ack -e 40 -c 0 -i 219 -a 1 -x {1.1.3.0 0.0.3.0 108 ------- null} + -t 14.4053 -s 1 -d 3 -p ack -e 40 -c 0 -i 219 -a 1 -x {1.1.3.0 0.0.3.0 108 ------- null} - -t 14.4053 -s 1 -d 3 -p ack -e 40 -c 0 -i 219 -a 1 -x {1.1.3.0 0.0.3.0 108 ------- null} h -t 14.4053 -s 1 -d 3 -p ack -e 40 -c 0 -i 219 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 14.4069 -s 28 -d 1 -p ack -e 40 -c 0 -i 220 -a 1 -x {1.1.3.0 0.0.3.0 109 ------- null} + -t 14.4069 -s 1 -d 3 -p ack -e 40 -c 0 -i 220 -a 1 -x {1.1.3.0 0.0.3.0 109 ------- null} - -t 14.4069 -s 1 -d 3 -p ack -e 40 -c 0 -i 220 -a 1 -x {1.1.3.0 0.0.3.0 109 ------- null} h -t 14.4069 -s 1 -d 3 -p ack -e 40 -c 0 -i 220 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 14.4085 -s 28 -d 1 -p ack -e 40 -c 0 -i 221 -a 1 -x {1.1.3.0 0.0.3.0 110 ------- null} + -t 14.4085 -s 1 -d 3 -p ack -e 40 -c 0 -i 221 -a 1 -x {1.1.3.0 0.0.3.0 110 ------- null} - -t 14.4085 -s 1 -d 3 -p ack -e 40 -c 0 -i 221 -a 1 -x {1.1.3.0 0.0.3.0 110 ------- null} h -t 14.4085 -s 1 -d 3 -p ack -e 40 -c 0 -i 221 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 14.5181 -s 1 -d 3 -p ack -e 40 -c 0 -i 202 -a 1 -x {1.1.3.0 0.0.3.0 91 ------- null} + -t 14.5181 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 222 -a 0 -x {0.0.3.0 1.1.3.0 111 ------- null} - -t 14.5181 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 222 -a 0 -x {0.0.3.0 1.1.3.0 111 ------- null} h -t 14.5181 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 222 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.5197 -s 1 -d 3 -p ack -e 40 -c 0 -i 203 -a 1 -x {1.1.3.0 0.0.3.0 92 ------- null} + -t 14.5197 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {0.0.3.0 1.1.3.0 112 ------- null} - -t 14.5197 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {0.0.3.0 1.1.3.0 112 ------- null} h -t 14.5197 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.5213 -s 1 -d 3 -p ack -e 40 -c 0 -i 204 -a 1 -x {1.1.3.0 0.0.3.0 93 ------- null} + -t 14.5213 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {0.0.3.0 1.1.3.0 113 ------- null} - -t 14.5213 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {0.0.3.0 1.1.3.0 113 ------- null} h -t 14.5213 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.5229 -s 1 -d 3 -p ack -e 40 -c 0 -i 205 -a 1 -x {1.1.3.0 0.0.3.0 94 ------- null} + -t 14.5229 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {0.0.3.0 1.1.3.0 114 ------- null} - -t 14.5229 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {0.0.3.0 1.1.3.0 114 ------- null} h -t 14.5229 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.5245 -s 1 -d 3 -p ack -e 40 -c 0 -i 206 -a 1 -x {1.1.3.0 0.0.3.0 95 ------- null} + -t 14.5245 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 226 -a 0 -x {0.0.3.0 1.1.3.0 115 ------- null} - -t 14.5245 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 226 -a 0 -x {0.0.3.0 1.1.3.0 115 ------- null} h -t 14.5245 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 226 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.5261 -s 1 -d 3 -p ack -e 40 -c 0 -i 207 -a 1 -x {1.1.3.0 0.0.3.0 96 ------- null} + -t 14.5261 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {0.0.3.0 1.1.3.0 116 ------- null} - -t 14.5261 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {0.0.3.0 1.1.3.0 116 ------- null} h -t 14.5261 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.5277 -s 1 -d 3 -p ack -e 40 -c 0 -i 208 -a 1 -x {1.1.3.0 0.0.3.0 97 ------- null} + -t 14.5277 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0.3.0 1.1.3.0 117 ------- null} - -t 14.5277 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0.3.0 1.1.3.0 117 ------- null} h -t 14.5277 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.5293 -s 1 -d 3 -p ack -e 40 -c 0 -i 209 -a 1 -x {1.1.3.0 0.0.3.0 98 ------- null} + -t 14.5293 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {0.0.3.0 1.1.3.0 118 ------- null} - -t 14.5293 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {0.0.3.0 1.1.3.0 118 ------- null} h -t 14.5293 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.5309 -s 1 -d 3 -p ack -e 40 -c 0 -i 210 -a 1 -x {1.1.3.0 0.0.3.0 99 ------- null} + -t 14.5309 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {0.0.3.0 1.1.3.0 119 ------- null} - -t 14.5309 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {0.0.3.0 1.1.3.0 119 ------- null} h -t 14.5309 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.5325 -s 1 -d 3 -p ack -e 40 -c 0 -i 211 -a 1 -x {1.1.3.0 0.0.3.0 100 ------- null} + -t 14.5325 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {0.0.3.0 1.1.3.0 120 ------- null} - -t 14.5325 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {0.0.3.0 1.1.3.0 120 ------- null} h -t 14.5325 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.5341 -s 1 -d 3 -p ack -e 40 -c 0 -i 212 -a 1 -x {1.1.3.0 0.0.3.0 101 ------- null} + -t 14.5341 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {0.0.3.0 1.1.3.0 121 ------- null} - -t 14.5341 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {0.0.3.0 1.1.3.0 121 ------- null} h -t 14.5341 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.5357 -s 1 -d 3 -p ack -e 40 -c 0 -i 213 -a 1 -x {1.1.3.0 0.0.3.0 102 ------- null} + -t 14.5357 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {0.0.3.0 1.1.3.0 122 ------- null} - -t 14.5357 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {0.0.3.0 1.1.3.0 122 ------- null} h -t 14.5357 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.5373 -s 1 -d 3 -p ack -e 40 -c 0 -i 214 -a 1 -x {1.1.3.0 0.0.3.0 103 ------- null} + -t 14.5373 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 234 -a 0 -x {0.0.3.0 1.1.3.0 123 ------- null} - -t 14.5373 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 234 -a 0 -x {0.0.3.0 1.1.3.0 123 ------- null} h -t 14.5373 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 234 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.5389 -s 1 -d 3 -p ack -e 40 -c 0 -i 215 -a 1 -x {1.1.3.0 0.0.3.0 104 ------- null} + -t 14.5389 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {0.0.3.0 1.1.3.0 124 ------- null} - -t 14.5389 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {0.0.3.0 1.1.3.0 124 ------- null} h -t 14.5389 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.5405 -s 1 -d 3 -p ack -e 40 -c 0 -i 216 -a 1 -x {1.1.3.0 0.0.3.0 105 ------- null} + -t 14.5405 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {0.0.3.0 1.1.3.0 125 ------- null} - -t 14.5405 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {0.0.3.0 1.1.3.0 125 ------- null} h -t 14.5405 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.5421 -s 1 -d 3 -p ack -e 40 -c 0 -i 217 -a 1 -x {1.1.3.0 0.0.3.0 106 ------- null} + -t 14.5421 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {0.0.3.0 1.1.3.0 126 ------- null} - -t 14.5421 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {0.0.3.0 1.1.3.0 126 ------- null} h -t 14.5421 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.5437 -s 1 -d 3 -p ack -e 40 -c 0 -i 218 -a 1 -x {1.1.3.0 0.0.3.0 107 ------- null} + -t 14.5437 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 238 -a 0 -x {0.0.3.0 1.1.3.0 127 ------- null} - -t 14.5437 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 238 -a 0 -x {0.0.3.0 1.1.3.0 127 ------- null} h -t 14.5437 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 238 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.5453 -s 1 -d 3 -p ack -e 40 -c 0 -i 219 -a 1 -x {1.1.3.0 0.0.3.0 108 ------- null} + -t 14.5453 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {0.0.3.0 1.1.3.0 128 ------- null} - -t 14.5453 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {0.0.3.0 1.1.3.0 128 ------- null} h -t 14.5453 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.5469 -s 1 -d 3 -p ack -e 40 -c 0 -i 220 -a 1 -x {1.1.3.0 0.0.3.0 109 ------- null} + -t 14.5469 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {0.0.3.0 1.1.3.0 129 ------- null} - -t 14.5469 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {0.0.3.0 1.1.3.0 129 ------- null} h -t 14.5469 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.5485 -s 1 -d 3 -p ack -e 40 -c 0 -i 221 -a 1 -x {1.1.3.0 0.0.3.0 110 ------- null} + -t 14.5485 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {0.0.3.0 1.1.3.0 130 ------- null} - -t 14.5485 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {0.0.3.0 1.1.3.0 130 ------- null} h -t 14.5485 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.6797 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 222 -a 0 -x {0.0.3.0 1.1.3.0 111 ------- null} + -t 14.6797 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 222 -a 0 -x {0.0.3.0 1.1.3.0 111 ------- null} - -t 14.6797 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 222 -a 0 -x {0.0.3.0 1.1.3.0 111 ------- null} h -t 14.6797 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 222 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.6813 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {0.0.3.0 1.1.3.0 112 ------- null} + -t 14.6813 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {0.0.3.0 1.1.3.0 112 ------- null} - -t 14.6813 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {0.0.3.0 1.1.3.0 112 ------- null} h -t 14.6813 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.6829 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {0.0.3.0 1.1.3.0 113 ------- null} + -t 14.6829 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {0.0.3.0 1.1.3.0 113 ------- null} - -t 14.6829 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {0.0.3.0 1.1.3.0 113 ------- null} h -t 14.6829 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.6845 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {0.0.3.0 1.1.3.0 114 ------- null} + -t 14.6845 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {0.0.3.0 1.1.3.0 114 ------- null} - -t 14.6845 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {0.0.3.0 1.1.3.0 114 ------- null} h -t 14.6845 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.6861 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 226 -a 0 -x {0.0.3.0 1.1.3.0 115 ------- null} + -t 14.6861 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 226 -a 0 -x {0.0.3.0 1.1.3.0 115 ------- null} - -t 14.6861 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 226 -a 0 -x {0.0.3.0 1.1.3.0 115 ------- null} h -t 14.6861 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 226 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.6877 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {0.0.3.0 1.1.3.0 116 ------- null} + -t 14.6877 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {0.0.3.0 1.1.3.0 116 ------- null} - -t 14.6877 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {0.0.3.0 1.1.3.0 116 ------- null} h -t 14.6877 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.6893 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0.3.0 1.1.3.0 117 ------- null} + -t 14.6893 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0.3.0 1.1.3.0 117 ------- null} - -t 14.6893 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0.3.0 1.1.3.0 117 ------- null} h -t 14.6893 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.6909 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {0.0.3.0 1.1.3.0 118 ------- null} + -t 14.6909 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {0.0.3.0 1.1.3.0 118 ------- null} - -t 14.6909 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {0.0.3.0 1.1.3.0 118 ------- null} h -t 14.6909 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.6925 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {0.0.3.0 1.1.3.0 119 ------- null} + -t 14.6925 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {0.0.3.0 1.1.3.0 119 ------- null} - -t 14.6925 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {0.0.3.0 1.1.3.0 119 ------- null} h -t 14.6925 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.6941 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {0.0.3.0 1.1.3.0 120 ------- null} + -t 14.6941 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {0.0.3.0 1.1.3.0 120 ------- null} - -t 14.6941 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {0.0.3.0 1.1.3.0 120 ------- null} h -t 14.6941 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.6957 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {0.0.3.0 1.1.3.0 121 ------- null} + -t 14.6957 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {0.0.3.0 1.1.3.0 121 ------- null} - -t 14.6957 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {0.0.3.0 1.1.3.0 121 ------- null} h -t 14.6957 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.6973 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {0.0.3.0 1.1.3.0 122 ------- null} + -t 14.6973 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {0.0.3.0 1.1.3.0 122 ------- null} - -t 14.6973 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {0.0.3.0 1.1.3.0 122 ------- null} h -t 14.6973 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.6989 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 234 -a 0 -x {0.0.3.0 1.1.3.0 123 ------- null} + -t 14.6989 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 234 -a 0 -x {0.0.3.0 1.1.3.0 123 ------- null} - -t 14.6989 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 234 -a 0 -x {0.0.3.0 1.1.3.0 123 ------- null} h -t 14.6989 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 234 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.7005 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {0.0.3.0 1.1.3.0 124 ------- null} + -t 14.7005 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {0.0.3.0 1.1.3.0 124 ------- null} - -t 14.7005 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {0.0.3.0 1.1.3.0 124 ------- null} h -t 14.7005 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.7021 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {0.0.3.0 1.1.3.0 125 ------- null} + -t 14.7021 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {0.0.3.0 1.1.3.0 125 ------- null} - -t 14.7021 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {0.0.3.0 1.1.3.0 125 ------- null} h -t 14.7021 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.7037 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {0.0.3.0 1.1.3.0 126 ------- null} + -t 14.7037 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {0.0.3.0 1.1.3.0 126 ------- null} - -t 14.7037 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {0.0.3.0 1.1.3.0 126 ------- null} h -t 14.7037 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.7053 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 238 -a 0 -x {0.0.3.0 1.1.3.0 127 ------- null} + -t 14.7053 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 238 -a 0 -x {0.0.3.0 1.1.3.0 127 ------- null} - -t 14.7053 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 238 -a 0 -x {0.0.3.0 1.1.3.0 127 ------- null} h -t 14.7053 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 238 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.7069 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {0.0.3.0 1.1.3.0 128 ------- null} + -t 14.7069 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {0.0.3.0 1.1.3.0 128 ------- null} - -t 14.7069 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {0.0.3.0 1.1.3.0 128 ------- null} h -t 14.7069 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.7085 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {0.0.3.0 1.1.3.0 129 ------- null} + -t 14.7085 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {0.0.3.0 1.1.3.0 129 ------- null} - -t 14.7085 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {0.0.3.0 1.1.3.0 129 ------- null} h -t 14.7085 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.7101 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {0.0.3.0 1.1.3.0 130 ------- null} + -t 14.7101 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {0.0.3.0 1.1.3.0 130 ------- null} - -t 14.7101 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {0.0.3.0 1.1.3.0 130 ------- null} h -t 14.7101 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.9813 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 222 -a 0 -x {0.0.3.0 1.1.3.0 111 ------- null} + -t 14.9813 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 222 -a 0 -x {0.0.3.0 1.1.3.0 111 ------- null} - -t 14.9813 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 222 -a 0 -x {0.0.3.0 1.1.3.0 111 ------- null} h -t 14.9813 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 222 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.9829 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {0.0.3.0 1.1.3.0 112 ------- null} + -t 14.9829 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {0.0.3.0 1.1.3.0 112 ------- null} - -t 14.9829 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {0.0.3.0 1.1.3.0 112 ------- null} h -t 14.9829 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.9845 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {0.0.3.0 1.1.3.0 113 ------- null} + -t 14.9845 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {0.0.3.0 1.1.3.0 113 ------- null} - -t 14.9845 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {0.0.3.0 1.1.3.0 113 ------- null} h -t 14.9845 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.9861 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {0.0.3.0 1.1.3.0 114 ------- null} + -t 14.9861 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {0.0.3.0 1.1.3.0 114 ------- null} - -t 14.9861 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {0.0.3.0 1.1.3.0 114 ------- null} h -t 14.9861 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.9877 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 226 -a 0 -x {0.0.3.0 1.1.3.0 115 ------- null} + -t 14.9877 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 226 -a 0 -x {0.0.3.0 1.1.3.0 115 ------- null} - -t 14.9877 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 226 -a 0 -x {0.0.3.0 1.1.3.0 115 ------- null} h -t 14.9877 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 226 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.9893 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {0.0.3.0 1.1.3.0 116 ------- null} + -t 14.9893 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {0.0.3.0 1.1.3.0 116 ------- null} - -t 14.9893 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {0.0.3.0 1.1.3.0 116 ------- null} h -t 14.9893 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.9909 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0.3.0 1.1.3.0 117 ------- null} + -t 14.9909 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0.3.0 1.1.3.0 117 ------- null} - -t 14.9909 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0.3.0 1.1.3.0 117 ------- null} h -t 14.9909 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.9925 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {0.0.3.0 1.1.3.0 118 ------- null} + -t 14.9925 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {0.0.3.0 1.1.3.0 118 ------- null} - -t 14.9925 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {0.0.3.0 1.1.3.0 118 ------- null} h -t 14.9925 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.9941 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {0.0.3.0 1.1.3.0 119 ------- null} + -t 14.9941 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {0.0.3.0 1.1.3.0 119 ------- null} - -t 14.9941 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {0.0.3.0 1.1.3.0 119 ------- null} h -t 14.9941 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.9957 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {0.0.3.0 1.1.3.0 120 ------- null} + -t 14.9957 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {0.0.3.0 1.1.3.0 120 ------- null} - -t 14.9957 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {0.0.3.0 1.1.3.0 120 ------- null} h -t 14.9957 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.9973 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {0.0.3.0 1.1.3.0 121 ------- null} + -t 14.9973 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {0.0.3.0 1.1.3.0 121 ------- null} - -t 14.9973 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {0.0.3.0 1.1.3.0 121 ------- null} h -t 14.9973 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 14.9989 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {0.0.3.0 1.1.3.0 122 ------- null} + -t 14.9989 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {0.0.3.0 1.1.3.0 122 ------- null} - -t 14.9989 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {0.0.3.0 1.1.3.0 122 ------- null} h -t 14.9989 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.0005 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 234 -a 0 -x {0.0.3.0 1.1.3.0 123 ------- null} + -t 15.0005 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 234 -a 0 -x {0.0.3.0 1.1.3.0 123 ------- null} - -t 15.0005 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 234 -a 0 -x {0.0.3.0 1.1.3.0 123 ------- null} h -t 15.0005 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 234 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.0021 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {0.0.3.0 1.1.3.0 124 ------- null} + -t 15.0021 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {0.0.3.0 1.1.3.0 124 ------- null} - -t 15.0021 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {0.0.3.0 1.1.3.0 124 ------- null} h -t 15.0021 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.0037 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {0.0.3.0 1.1.3.0 125 ------- null} + -t 15.0037 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {0.0.3.0 1.1.3.0 125 ------- null} - -t 15.0037 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {0.0.3.0 1.1.3.0 125 ------- null} h -t 15.0037 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.0053 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {0.0.3.0 1.1.3.0 126 ------- null} + -t 15.0053 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {0.0.3.0 1.1.3.0 126 ------- null} - -t 15.0053 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {0.0.3.0 1.1.3.0 126 ------- null} h -t 15.0053 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.0069 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 238 -a 0 -x {0.0.3.0 1.1.3.0 127 ------- null} + -t 15.0069 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 238 -a 0 -x {0.0.3.0 1.1.3.0 127 ------- null} - -t 15.0069 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 238 -a 0 -x {0.0.3.0 1.1.3.0 127 ------- null} h -t 15.0069 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 238 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.0085 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {0.0.3.0 1.1.3.0 128 ------- null} + -t 15.0085 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {0.0.3.0 1.1.3.0 128 ------- null} - -t 15.0085 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {0.0.3.0 1.1.3.0 128 ------- null} h -t 15.0085 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.0101 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {0.0.3.0 1.1.3.0 129 ------- null} + -t 15.0101 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {0.0.3.0 1.1.3.0 129 ------- null} - -t 15.0101 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {0.0.3.0 1.1.3.0 129 ------- null} h -t 15.0101 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.0117 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {0.0.3.0 1.1.3.0 130 ------- null} + -t 15.0117 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {0.0.3.0 1.1.3.0 130 ------- null} - -t 15.0117 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {0.0.3.0 1.1.3.0 130 ------- null} h -t 15.0117 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.0829 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 222 -a 0 -x {0.0.3.0 1.1.3.0 111 ------- null} + -t 15.0829 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 222 -a 0 -x {0.0.3.0 1.1.3.0 111 ------- null} - -t 15.0829 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 222 -a 0 -x {0.0.3.0 1.1.3.0 111 ------- null} h -t 15.0829 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 222 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.0845 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {0.0.3.0 1.1.3.0 112 ------- null} + -t 15.0845 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {0.0.3.0 1.1.3.0 112 ------- null} - -t 15.0845 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {0.0.3.0 1.1.3.0 112 ------- null} h -t 15.0845 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.0861 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {0.0.3.0 1.1.3.0 113 ------- null} + -t 15.0861 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {0.0.3.0 1.1.3.0 113 ------- null} - -t 15.0861 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {0.0.3.0 1.1.3.0 113 ------- null} h -t 15.0861 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.0877 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {0.0.3.0 1.1.3.0 114 ------- null} + -t 15.0877 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {0.0.3.0 1.1.3.0 114 ------- null} - -t 15.0877 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {0.0.3.0 1.1.3.0 114 ------- null} h -t 15.0877 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.0893 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 226 -a 0 -x {0.0.3.0 1.1.3.0 115 ------- null} + -t 15.0893 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 226 -a 0 -x {0.0.3.0 1.1.3.0 115 ------- null} - -t 15.0893 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 226 -a 0 -x {0.0.3.0 1.1.3.0 115 ------- null} h -t 15.0893 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 226 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.0909 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {0.0.3.0 1.1.3.0 116 ------- null} + -t 15.0909 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {0.0.3.0 1.1.3.0 116 ------- null} - -t 15.0909 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {0.0.3.0 1.1.3.0 116 ------- null} h -t 15.0909 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.0925 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0.3.0 1.1.3.0 117 ------- null} + -t 15.0925 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0.3.0 1.1.3.0 117 ------- null} - -t 15.0925 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0.3.0 1.1.3.0 117 ------- null} h -t 15.0925 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.0941 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {0.0.3.0 1.1.3.0 118 ------- null} + -t 15.0941 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {0.0.3.0 1.1.3.0 118 ------- null} - -t 15.0941 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {0.0.3.0 1.1.3.0 118 ------- null} h -t 15.0941 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.0957 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {0.0.3.0 1.1.3.0 119 ------- null} + -t 15.0957 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {0.0.3.0 1.1.3.0 119 ------- null} - -t 15.0957 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {0.0.3.0 1.1.3.0 119 ------- null} h -t 15.0957 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.0973 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {0.0.3.0 1.1.3.0 120 ------- null} + -t 15.0973 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {0.0.3.0 1.1.3.0 120 ------- null} - -t 15.0973 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {0.0.3.0 1.1.3.0 120 ------- null} h -t 15.0973 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.0989 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {0.0.3.0 1.1.3.0 121 ------- null} + -t 15.0989 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {0.0.3.0 1.1.3.0 121 ------- null} - -t 15.0989 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {0.0.3.0 1.1.3.0 121 ------- null} h -t 15.0989 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.1005 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {0.0.3.0 1.1.3.0 122 ------- null} + -t 15.1005 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {0.0.3.0 1.1.3.0 122 ------- null} - -t 15.1005 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {0.0.3.0 1.1.3.0 122 ------- null} h -t 15.1005 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.1021 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 234 -a 0 -x {0.0.3.0 1.1.3.0 123 ------- null} + -t 15.1021 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 234 -a 0 -x {0.0.3.0 1.1.3.0 123 ------- null} - -t 15.1021 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 234 -a 0 -x {0.0.3.0 1.1.3.0 123 ------- null} h -t 15.1021 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 234 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.1037 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {0.0.3.0 1.1.3.0 124 ------- null} + -t 15.1037 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {0.0.3.0 1.1.3.0 124 ------- null} - -t 15.1037 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {0.0.3.0 1.1.3.0 124 ------- null} h -t 15.1037 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.1053 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {0.0.3.0 1.1.3.0 125 ------- null} + -t 15.1053 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {0.0.3.0 1.1.3.0 125 ------- null} - -t 15.1053 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {0.0.3.0 1.1.3.0 125 ------- null} h -t 15.1053 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.1069 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {0.0.3.0 1.1.3.0 126 ------- null} + -t 15.1069 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {0.0.3.0 1.1.3.0 126 ------- null} - -t 15.1069 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {0.0.3.0 1.1.3.0 126 ------- null} h -t 15.1069 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.1085 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 238 -a 0 -x {0.0.3.0 1.1.3.0 127 ------- null} + -t 15.1085 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 238 -a 0 -x {0.0.3.0 1.1.3.0 127 ------- null} - -t 15.1085 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 238 -a 0 -x {0.0.3.0 1.1.3.0 127 ------- null} h -t 15.1085 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 238 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.1101 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {0.0.3.0 1.1.3.0 128 ------- null} + -t 15.1101 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {0.0.3.0 1.1.3.0 128 ------- null} - -t 15.1101 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {0.0.3.0 1.1.3.0 128 ------- null} h -t 15.1101 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.1117 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {0.0.3.0 1.1.3.0 129 ------- null} + -t 15.1117 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {0.0.3.0 1.1.3.0 129 ------- null} - -t 15.1117 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {0.0.3.0 1.1.3.0 129 ------- null} h -t 15.1117 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.1133 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {0.0.3.0 1.1.3.0 130 ------- null} + -t 15.1133 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {0.0.3.0 1.1.3.0 130 ------- null} - -t 15.1133 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {0.0.3.0 1.1.3.0 130 ------- null} h -t 15.1133 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.1645 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 222 -a 0 -x {0.0.3.0 1.1.3.0 111 ------- null} + -t 15.1645 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 222 -a 0 -x {0.0.3.0 1.1.3.0 111 ------- null} - -t 15.1645 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 222 -a 0 -x {0.0.3.0 1.1.3.0 111 ------- null} h -t 15.1645 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 222 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.1661 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {0.0.3.0 1.1.3.0 112 ------- null} + -t 15.1661 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {0.0.3.0 1.1.3.0 112 ------- null} - -t 15.1661 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {0.0.3.0 1.1.3.0 112 ------- null} h -t 15.1661 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.1677 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {0.0.3.0 1.1.3.0 113 ------- null} + -t 15.1677 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {0.0.3.0 1.1.3.0 113 ------- null} - -t 15.1677 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {0.0.3.0 1.1.3.0 113 ------- null} h -t 15.1677 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.1693 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {0.0.3.0 1.1.3.0 114 ------- null} + -t 15.1693 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {0.0.3.0 1.1.3.0 114 ------- null} - -t 15.1693 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {0.0.3.0 1.1.3.0 114 ------- null} h -t 15.1693 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.1709 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 226 -a 0 -x {0.0.3.0 1.1.3.0 115 ------- null} + -t 15.1709 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 226 -a 0 -x {0.0.3.0 1.1.3.0 115 ------- null} - -t 15.1709 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 226 -a 0 -x {0.0.3.0 1.1.3.0 115 ------- null} h -t 15.1709 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 226 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.1725 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {0.0.3.0 1.1.3.0 116 ------- null} + -t 15.1725 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {0.0.3.0 1.1.3.0 116 ------- null} - -t 15.1725 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {0.0.3.0 1.1.3.0 116 ------- null} h -t 15.1725 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.1741 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0.3.0 1.1.3.0 117 ------- null} + -t 15.1741 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0.3.0 1.1.3.0 117 ------- null} - -t 15.1741 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0.3.0 1.1.3.0 117 ------- null} h -t 15.1741 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.1757 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {0.0.3.0 1.1.3.0 118 ------- null} + -t 15.1757 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {0.0.3.0 1.1.3.0 118 ------- null} - -t 15.1757 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {0.0.3.0 1.1.3.0 118 ------- null} h -t 15.1757 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.1773 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {0.0.3.0 1.1.3.0 119 ------- null} + -t 15.1773 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {0.0.3.0 1.1.3.0 119 ------- null} - -t 15.1773 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {0.0.3.0 1.1.3.0 119 ------- null} h -t 15.1773 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.1789 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {0.0.3.0 1.1.3.0 120 ------- null} + -t 15.1789 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {0.0.3.0 1.1.3.0 120 ------- null} - -t 15.1789 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {0.0.3.0 1.1.3.0 120 ------- null} h -t 15.1789 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.1805 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {0.0.3.0 1.1.3.0 121 ------- null} + -t 15.1805 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {0.0.3.0 1.1.3.0 121 ------- null} - -t 15.1805 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {0.0.3.0 1.1.3.0 121 ------- null} h -t 15.1805 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.1821 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {0.0.3.0 1.1.3.0 122 ------- null} + -t 15.1821 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {0.0.3.0 1.1.3.0 122 ------- null} - -t 15.1821 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {0.0.3.0 1.1.3.0 122 ------- null} h -t 15.1821 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.1837 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 234 -a 0 -x {0.0.3.0 1.1.3.0 123 ------- null} + -t 15.1837 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 234 -a 0 -x {0.0.3.0 1.1.3.0 123 ------- null} - -t 15.1837 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 234 -a 0 -x {0.0.3.0 1.1.3.0 123 ------- null} h -t 15.1837 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 234 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.1853 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {0.0.3.0 1.1.3.0 124 ------- null} + -t 15.1853 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {0.0.3.0 1.1.3.0 124 ------- null} - -t 15.1853 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {0.0.3.0 1.1.3.0 124 ------- null} h -t 15.1853 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.1869 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {0.0.3.0 1.1.3.0 125 ------- null} + -t 15.1869 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {0.0.3.0 1.1.3.0 125 ------- null} - -t 15.1869 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {0.0.3.0 1.1.3.0 125 ------- null} h -t 15.1869 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.1885 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {0.0.3.0 1.1.3.0 126 ------- null} + -t 15.1885 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {0.0.3.0 1.1.3.0 126 ------- null} - -t 15.1885 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {0.0.3.0 1.1.3.0 126 ------- null} h -t 15.1885 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.1901 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 238 -a 0 -x {0.0.3.0 1.1.3.0 127 ------- null} + -t 15.1901 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 238 -a 0 -x {0.0.3.0 1.1.3.0 127 ------- null} - -t 15.1901 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 238 -a 0 -x {0.0.3.0 1.1.3.0 127 ------- null} h -t 15.1901 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 238 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.1917 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {0.0.3.0 1.1.3.0 128 ------- null} + -t 15.1917 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {0.0.3.0 1.1.3.0 128 ------- null} - -t 15.1917 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {0.0.3.0 1.1.3.0 128 ------- null} h -t 15.1917 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.1933 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {0.0.3.0 1.1.3.0 129 ------- null} + -t 15.1933 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {0.0.3.0 1.1.3.0 129 ------- null} - -t 15.1933 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {0.0.3.0 1.1.3.0 129 ------- null} h -t 15.1933 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.1949 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {0.0.3.0 1.1.3.0 130 ------- null} + -t 15.1949 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {0.0.3.0 1.1.3.0 130 ------- null} - -t 15.1949 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {0.0.3.0 1.1.3.0 130 ------- null} h -t 15.1949 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.2461 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 222 -a 0 -x {0.0.3.0 1.1.3.0 111 ------- null} + -t 15.2461 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 222 -a 0 -x {0.0.3.0 1.1.3.0 111 ------- null} - -t 15.2461 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 222 -a 0 -x {0.0.3.0 1.1.3.0 111 ------- null} h -t 15.2461 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 222 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.2477 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {0.0.3.0 1.1.3.0 112 ------- null} + -t 15.2477 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {0.0.3.0 1.1.3.0 112 ------- null} - -t 15.2477 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {0.0.3.0 1.1.3.0 112 ------- null} h -t 15.2477 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.2493 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {0.0.3.0 1.1.3.0 113 ------- null} + -t 15.2493 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {0.0.3.0 1.1.3.0 113 ------- null} - -t 15.2493 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {0.0.3.0 1.1.3.0 113 ------- null} h -t 15.2493 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.2509 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {0.0.3.0 1.1.3.0 114 ------- null} + -t 15.2509 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {0.0.3.0 1.1.3.0 114 ------- null} - -t 15.2509 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {0.0.3.0 1.1.3.0 114 ------- null} h -t 15.2509 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.2525 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 226 -a 0 -x {0.0.3.0 1.1.3.0 115 ------- null} + -t 15.2525 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 226 -a 0 -x {0.0.3.0 1.1.3.0 115 ------- null} - -t 15.2525 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 226 -a 0 -x {0.0.3.0 1.1.3.0 115 ------- null} h -t 15.2525 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 226 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.2541 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {0.0.3.0 1.1.3.0 116 ------- null} + -t 15.2541 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {0.0.3.0 1.1.3.0 116 ------- null} - -t 15.2541 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {0.0.3.0 1.1.3.0 116 ------- null} h -t 15.2541 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.2557 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0.3.0 1.1.3.0 117 ------- null} + -t 15.2557 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0.3.0 1.1.3.0 117 ------- null} - -t 15.2557 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0.3.0 1.1.3.0 117 ------- null} h -t 15.2557 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.2573 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {0.0.3.0 1.1.3.0 118 ------- null} + -t 15.2573 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {0.0.3.0 1.1.3.0 118 ------- null} - -t 15.2573 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {0.0.3.0 1.1.3.0 118 ------- null} h -t 15.2573 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.2589 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {0.0.3.0 1.1.3.0 119 ------- null} + -t 15.2589 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {0.0.3.0 1.1.3.0 119 ------- null} - -t 15.2589 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {0.0.3.0 1.1.3.0 119 ------- null} h -t 15.2589 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.2605 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {0.0.3.0 1.1.3.0 120 ------- null} + -t 15.2605 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {0.0.3.0 1.1.3.0 120 ------- null} - -t 15.2605 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {0.0.3.0 1.1.3.0 120 ------- null} h -t 15.2605 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.2621 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {0.0.3.0 1.1.3.0 121 ------- null} + -t 15.2621 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {0.0.3.0 1.1.3.0 121 ------- null} - -t 15.2621 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {0.0.3.0 1.1.3.0 121 ------- null} h -t 15.2621 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.2637 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {0.0.3.0 1.1.3.0 122 ------- null} + -t 15.2637 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {0.0.3.0 1.1.3.0 122 ------- null} - -t 15.2637 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {0.0.3.0 1.1.3.0 122 ------- null} h -t 15.2637 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.2653 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 234 -a 0 -x {0.0.3.0 1.1.3.0 123 ------- null} + -t 15.2653 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 234 -a 0 -x {0.0.3.0 1.1.3.0 123 ------- null} - -t 15.2653 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 234 -a 0 -x {0.0.3.0 1.1.3.0 123 ------- null} h -t 15.2653 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 234 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.2669 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {0.0.3.0 1.1.3.0 124 ------- null} + -t 15.2669 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {0.0.3.0 1.1.3.0 124 ------- null} - -t 15.2669 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {0.0.3.0 1.1.3.0 124 ------- null} h -t 15.2669 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.2685 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {0.0.3.0 1.1.3.0 125 ------- null} + -t 15.2685 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {0.0.3.0 1.1.3.0 125 ------- null} - -t 15.2685 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {0.0.3.0 1.1.3.0 125 ------- null} h -t 15.2685 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.2701 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {0.0.3.0 1.1.3.0 126 ------- null} + -t 15.2701 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {0.0.3.0 1.1.3.0 126 ------- null} - -t 15.2701 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {0.0.3.0 1.1.3.0 126 ------- null} h -t 15.2701 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.2717 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 238 -a 0 -x {0.0.3.0 1.1.3.0 127 ------- null} + -t 15.2717 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 238 -a 0 -x {0.0.3.0 1.1.3.0 127 ------- null} - -t 15.2717 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 238 -a 0 -x {0.0.3.0 1.1.3.0 127 ------- null} h -t 15.2717 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 238 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.2733 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {0.0.3.0 1.1.3.0 128 ------- null} + -t 15.2733 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {0.0.3.0 1.1.3.0 128 ------- null} - -t 15.2733 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {0.0.3.0 1.1.3.0 128 ------- null} h -t 15.2733 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.2749 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {0.0.3.0 1.1.3.0 129 ------- null} + -t 15.2749 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {0.0.3.0 1.1.3.0 129 ------- null} - -t 15.2749 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {0.0.3.0 1.1.3.0 129 ------- null} h -t 15.2749 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.2765 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {0.0.3.0 1.1.3.0 130 ------- null} + -t 15.2765 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {0.0.3.0 1.1.3.0 130 ------- null} - -t 15.2765 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {0.0.3.0 1.1.3.0 130 ------- null} h -t 15.2765 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 15.3077 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 222 -a 0 -x {0.0.3.0 1.1.3.0 111 ------- null} + -t 15.3077 -s 21 -d 28 -p ack -e 40 -c 0 -i 242 -a 1 -x {1.1.3.0 0.0.3.0 111 ------- null} - -t 15.3077 -s 21 -d 28 -p ack -e 40 -c 0 -i 242 -a 1 -x {1.1.3.0 0.0.3.0 111 ------- null} h -t 15.3077 -s 21 -d 28 -p ack -e 40 -c 0 -i 242 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.3093 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {0.0.3.0 1.1.3.0 112 ------- null} + -t 15.3093 -s 21 -d 28 -p ack -e 40 -c 0 -i 243 -a 1 -x {1.1.3.0 0.0.3.0 112 ------- null} - -t 15.3093 -s 21 -d 28 -p ack -e 40 -c 0 -i 243 -a 1 -x {1.1.3.0 0.0.3.0 112 ------- null} h -t 15.3093 -s 21 -d 28 -p ack -e 40 -c 0 -i 243 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.3109 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 224 -a 0 -x {0.0.3.0 1.1.3.0 113 ------- null} + -t 15.3109 -s 21 -d 28 -p ack -e 40 -c 0 -i 244 -a 1 -x {1.1.3.0 0.0.3.0 113 ------- null} - -t 15.3109 -s 21 -d 28 -p ack -e 40 -c 0 -i 244 -a 1 -x {1.1.3.0 0.0.3.0 113 ------- null} h -t 15.3109 -s 21 -d 28 -p ack -e 40 -c 0 -i 244 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.3125 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {0.0.3.0 1.1.3.0 114 ------- null} + -t 15.3125 -s 21 -d 28 -p ack -e 40 -c 0 -i 245 -a 1 -x {1.1.3.0 0.0.3.0 114 ------- null} - -t 15.3125 -s 21 -d 28 -p ack -e 40 -c 0 -i 245 -a 1 -x {1.1.3.0 0.0.3.0 114 ------- null} h -t 15.3125 -s 21 -d 28 -p ack -e 40 -c 0 -i 245 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.3141 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 226 -a 0 -x {0.0.3.0 1.1.3.0 115 ------- null} + -t 15.3141 -s 21 -d 28 -p ack -e 40 -c 0 -i 246 -a 1 -x {1.1.3.0 0.0.3.0 115 ------- null} - -t 15.3141 -s 21 -d 28 -p ack -e 40 -c 0 -i 246 -a 1 -x {1.1.3.0 0.0.3.0 115 ------- null} h -t 15.3141 -s 21 -d 28 -p ack -e 40 -c 0 -i 246 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.3157 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {0.0.3.0 1.1.3.0 116 ------- null} + -t 15.3157 -s 21 -d 28 -p ack -e 40 -c 0 -i 247 -a 1 -x {1.1.3.0 0.0.3.0 116 ------- null} - -t 15.3157 -s 21 -d 28 -p ack -e 40 -c 0 -i 247 -a 1 -x {1.1.3.0 0.0.3.0 116 ------- null} h -t 15.3157 -s 21 -d 28 -p ack -e 40 -c 0 -i 247 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.3173 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0.3.0 1.1.3.0 117 ------- null} + -t 15.3173 -s 21 -d 28 -p ack -e 40 -c 0 -i 248 -a 1 -x {1.1.3.0 0.0.3.0 117 ------- null} - -t 15.3173 -s 21 -d 28 -p ack -e 40 -c 0 -i 248 -a 1 -x {1.1.3.0 0.0.3.0 117 ------- null} h -t 15.3173 -s 21 -d 28 -p ack -e 40 -c 0 -i 248 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.3189 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {0.0.3.0 1.1.3.0 118 ------- null} + -t 15.3189 -s 21 -d 28 -p ack -e 40 -c 0 -i 249 -a 1 -x {1.1.3.0 0.0.3.0 118 ------- null} - -t 15.3189 -s 21 -d 28 -p ack -e 40 -c 0 -i 249 -a 1 -x {1.1.3.0 0.0.3.0 118 ------- null} h -t 15.3189 -s 21 -d 28 -p ack -e 40 -c 0 -i 249 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.3205 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {0.0.3.0 1.1.3.0 119 ------- null} + -t 15.3205 -s 21 -d 28 -p ack -e 40 -c 0 -i 250 -a 1 -x {1.1.3.0 0.0.3.0 119 ------- null} - -t 15.3205 -s 21 -d 28 -p ack -e 40 -c 0 -i 250 -a 1 -x {1.1.3.0 0.0.3.0 119 ------- null} h -t 15.3205 -s 21 -d 28 -p ack -e 40 -c 0 -i 250 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.3221 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {0.0.3.0 1.1.3.0 120 ------- null} + -t 15.3221 -s 21 -d 28 -p ack -e 40 -c 0 -i 251 -a 1 -x {1.1.3.0 0.0.3.0 120 ------- null} - -t 15.3221 -s 21 -d 28 -p ack -e 40 -c 0 -i 251 -a 1 -x {1.1.3.0 0.0.3.0 120 ------- null} h -t 15.3221 -s 21 -d 28 -p ack -e 40 -c 0 -i 251 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.3237 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 232 -a 0 -x {0.0.3.0 1.1.3.0 121 ------- null} + -t 15.3237 -s 21 -d 28 -p ack -e 40 -c 0 -i 252 -a 1 -x {1.1.3.0 0.0.3.0 121 ------- null} - -t 15.3237 -s 21 -d 28 -p ack -e 40 -c 0 -i 252 -a 1 -x {1.1.3.0 0.0.3.0 121 ------- null} h -t 15.3237 -s 21 -d 28 -p ack -e 40 -c 0 -i 252 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.3253 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {0.0.3.0 1.1.3.0 122 ------- null} + -t 15.3253 -s 21 -d 28 -p ack -e 40 -c 0 -i 253 -a 1 -x {1.1.3.0 0.0.3.0 122 ------- null} - -t 15.3253 -s 21 -d 28 -p ack -e 40 -c 0 -i 253 -a 1 -x {1.1.3.0 0.0.3.0 122 ------- null} h -t 15.3253 -s 21 -d 28 -p ack -e 40 -c 0 -i 253 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.3269 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 234 -a 0 -x {0.0.3.0 1.1.3.0 123 ------- null} + -t 15.3269 -s 21 -d 28 -p ack -e 40 -c 0 -i 254 -a 1 -x {1.1.3.0 0.0.3.0 123 ------- null} - -t 15.3269 -s 21 -d 28 -p ack -e 40 -c 0 -i 254 -a 1 -x {1.1.3.0 0.0.3.0 123 ------- null} h -t 15.3269 -s 21 -d 28 -p ack -e 40 -c 0 -i 254 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.3285 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {0.0.3.0 1.1.3.0 124 ------- null} + -t 15.3285 -s 21 -d 28 -p ack -e 40 -c 0 -i 255 -a 1 -x {1.1.3.0 0.0.3.0 124 ------- null} - -t 15.3285 -s 21 -d 28 -p ack -e 40 -c 0 -i 255 -a 1 -x {1.1.3.0 0.0.3.0 124 ------- null} h -t 15.3285 -s 21 -d 28 -p ack -e 40 -c 0 -i 255 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.3301 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 236 -a 0 -x {0.0.3.0 1.1.3.0 125 ------- null} + -t 15.3301 -s 21 -d 28 -p ack -e 40 -c 0 -i 256 -a 1 -x {1.1.3.0 0.0.3.0 125 ------- null} - -t 15.3301 -s 21 -d 28 -p ack -e 40 -c 0 -i 256 -a 1 -x {1.1.3.0 0.0.3.0 125 ------- null} h -t 15.3301 -s 21 -d 28 -p ack -e 40 -c 0 -i 256 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.3317 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {0.0.3.0 1.1.3.0 126 ------- null} + -t 15.3317 -s 21 -d 28 -p ack -e 40 -c 0 -i 257 -a 1 -x {1.1.3.0 0.0.3.0 126 ------- null} - -t 15.3317 -s 21 -d 28 -p ack -e 40 -c 0 -i 257 -a 1 -x {1.1.3.0 0.0.3.0 126 ------- null} h -t 15.3317 -s 21 -d 28 -p ack -e 40 -c 0 -i 257 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.3333 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 238 -a 0 -x {0.0.3.0 1.1.3.0 127 ------- null} + -t 15.3333 -s 21 -d 28 -p ack -e 40 -c 0 -i 258 -a 1 -x {1.1.3.0 0.0.3.0 127 ------- null} - -t 15.3333 -s 21 -d 28 -p ack -e 40 -c 0 -i 258 -a 1 -x {1.1.3.0 0.0.3.0 127 ------- null} h -t 15.3333 -s 21 -d 28 -p ack -e 40 -c 0 -i 258 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.3349 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {0.0.3.0 1.1.3.0 128 ------- null} + -t 15.3349 -s 21 -d 28 -p ack -e 40 -c 0 -i 259 -a 1 -x {1.1.3.0 0.0.3.0 128 ------- null} - -t 15.3349 -s 21 -d 28 -p ack -e 40 -c 0 -i 259 -a 1 -x {1.1.3.0 0.0.3.0 128 ------- null} h -t 15.3349 -s 21 -d 28 -p ack -e 40 -c 0 -i 259 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.3365 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 240 -a 0 -x {0.0.3.0 1.1.3.0 129 ------- null} + -t 15.3365 -s 21 -d 28 -p ack -e 40 -c 0 -i 260 -a 1 -x {1.1.3.0 0.0.3.0 129 ------- null} - -t 15.3365 -s 21 -d 28 -p ack -e 40 -c 0 -i 260 -a 1 -x {1.1.3.0 0.0.3.0 129 ------- null} h -t 15.3365 -s 21 -d 28 -p ack -e 40 -c 0 -i 260 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.3381 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {0.0.3.0 1.1.3.0 130 ------- null} + -t 15.3381 -s 21 -d 28 -p ack -e 40 -c 0 -i 261 -a 1 -x {1.1.3.0 0.0.3.0 130 ------- null} - -t 15.3381 -s 21 -d 28 -p ack -e 40 -c 0 -i 261 -a 1 -x {1.1.3.0 0.0.3.0 130 ------- null} h -t 15.3381 -s 21 -d 28 -p ack -e 40 -c 0 -i 261 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.6578 -s 21 -d 28 -p ack -e 40 -c 0 -i 242 -a 1 -x {1.1.3.0 0.0.3.0 111 ------- null} + -t 15.6578 -s 28 -d 1 -p ack -e 40 -c 0 -i 242 -a 1 -x {1.1.3.0 0.0.3.0 111 ------- null} - -t 15.6578 -s 28 -d 1 -p ack -e 40 -c 0 -i 242 -a 1 -x {1.1.3.0 0.0.3.0 111 ------- null} h -t 15.6578 -s 28 -d 1 -p ack -e 40 -c 0 -i 242 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.6594 -s 21 -d 28 -p ack -e 40 -c 0 -i 243 -a 1 -x {1.1.3.0 0.0.3.0 112 ------- null} + -t 15.6594 -s 28 -d 1 -p ack -e 40 -c 0 -i 243 -a 1 -x {1.1.3.0 0.0.3.0 112 ------- null} - -t 15.6594 -s 28 -d 1 -p ack -e 40 -c 0 -i 243 -a 1 -x {1.1.3.0 0.0.3.0 112 ------- null} h -t 15.6594 -s 28 -d 1 -p ack -e 40 -c 0 -i 243 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.661 -s 21 -d 28 -p ack -e 40 -c 0 -i 244 -a 1 -x {1.1.3.0 0.0.3.0 113 ------- null} + -t 15.661 -s 28 -d 1 -p ack -e 40 -c 0 -i 244 -a 1 -x {1.1.3.0 0.0.3.0 113 ------- null} - -t 15.661 -s 28 -d 1 -p ack -e 40 -c 0 -i 244 -a 1 -x {1.1.3.0 0.0.3.0 113 ------- null} h -t 15.661 -s 28 -d 1 -p ack -e 40 -c 0 -i 244 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.6626 -s 21 -d 28 -p ack -e 40 -c 0 -i 245 -a 1 -x {1.1.3.0 0.0.3.0 114 ------- null} + -t 15.6626 -s 28 -d 1 -p ack -e 40 -c 0 -i 245 -a 1 -x {1.1.3.0 0.0.3.0 114 ------- null} - -t 15.6626 -s 28 -d 1 -p ack -e 40 -c 0 -i 245 -a 1 -x {1.1.3.0 0.0.3.0 114 ------- null} h -t 15.6626 -s 28 -d 1 -p ack -e 40 -c 0 -i 245 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.6642 -s 21 -d 28 -p ack -e 40 -c 0 -i 246 -a 1 -x {1.1.3.0 0.0.3.0 115 ------- null} + -t 15.6642 -s 28 -d 1 -p ack -e 40 -c 0 -i 246 -a 1 -x {1.1.3.0 0.0.3.0 115 ------- null} - -t 15.6642 -s 28 -d 1 -p ack -e 40 -c 0 -i 246 -a 1 -x {1.1.3.0 0.0.3.0 115 ------- null} h -t 15.6642 -s 28 -d 1 -p ack -e 40 -c 0 -i 246 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.6658 -s 21 -d 28 -p ack -e 40 -c 0 -i 247 -a 1 -x {1.1.3.0 0.0.3.0 116 ------- null} + -t 15.6658 -s 28 -d 1 -p ack -e 40 -c 0 -i 247 -a 1 -x {1.1.3.0 0.0.3.0 116 ------- null} - -t 15.6658 -s 28 -d 1 -p ack -e 40 -c 0 -i 247 -a 1 -x {1.1.3.0 0.0.3.0 116 ------- null} h -t 15.6658 -s 28 -d 1 -p ack -e 40 -c 0 -i 247 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.6674 -s 21 -d 28 -p ack -e 40 -c 0 -i 248 -a 1 -x {1.1.3.0 0.0.3.0 117 ------- null} + -t 15.6674 -s 28 -d 1 -p ack -e 40 -c 0 -i 248 -a 1 -x {1.1.3.0 0.0.3.0 117 ------- null} - -t 15.6674 -s 28 -d 1 -p ack -e 40 -c 0 -i 248 -a 1 -x {1.1.3.0 0.0.3.0 117 ------- null} h -t 15.6674 -s 28 -d 1 -p ack -e 40 -c 0 -i 248 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.669 -s 21 -d 28 -p ack -e 40 -c 0 -i 249 -a 1 -x {1.1.3.0 0.0.3.0 118 ------- null} + -t 15.669 -s 28 -d 1 -p ack -e 40 -c 0 -i 249 -a 1 -x {1.1.3.0 0.0.3.0 118 ------- null} - -t 15.669 -s 28 -d 1 -p ack -e 40 -c 0 -i 249 -a 1 -x {1.1.3.0 0.0.3.0 118 ------- null} h -t 15.669 -s 28 -d 1 -p ack -e 40 -c 0 -i 249 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.6706 -s 21 -d 28 -p ack -e 40 -c 0 -i 250 -a 1 -x {1.1.3.0 0.0.3.0 119 ------- null} + -t 15.6706 -s 28 -d 1 -p ack -e 40 -c 0 -i 250 -a 1 -x {1.1.3.0 0.0.3.0 119 ------- null} - -t 15.6706 -s 28 -d 1 -p ack -e 40 -c 0 -i 250 -a 1 -x {1.1.3.0 0.0.3.0 119 ------- null} h -t 15.6706 -s 28 -d 1 -p ack -e 40 -c 0 -i 250 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.6722 -s 21 -d 28 -p ack -e 40 -c 0 -i 251 -a 1 -x {1.1.3.0 0.0.3.0 120 ------- null} + -t 15.6722 -s 28 -d 1 -p ack -e 40 -c 0 -i 251 -a 1 -x {1.1.3.0 0.0.3.0 120 ------- null} - -t 15.6722 -s 28 -d 1 -p ack -e 40 -c 0 -i 251 -a 1 -x {1.1.3.0 0.0.3.0 120 ------- null} h -t 15.6722 -s 28 -d 1 -p ack -e 40 -c 0 -i 251 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.6738 -s 21 -d 28 -p ack -e 40 -c 0 -i 252 -a 1 -x {1.1.3.0 0.0.3.0 121 ------- null} + -t 15.6738 -s 28 -d 1 -p ack -e 40 -c 0 -i 252 -a 1 -x {1.1.3.0 0.0.3.0 121 ------- null} - -t 15.6738 -s 28 -d 1 -p ack -e 40 -c 0 -i 252 -a 1 -x {1.1.3.0 0.0.3.0 121 ------- null} h -t 15.6738 -s 28 -d 1 -p ack -e 40 -c 0 -i 252 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.6754 -s 21 -d 28 -p ack -e 40 -c 0 -i 253 -a 1 -x {1.1.3.0 0.0.3.0 122 ------- null} + -t 15.6754 -s 28 -d 1 -p ack -e 40 -c 0 -i 253 -a 1 -x {1.1.3.0 0.0.3.0 122 ------- null} - -t 15.6754 -s 28 -d 1 -p ack -e 40 -c 0 -i 253 -a 1 -x {1.1.3.0 0.0.3.0 122 ------- null} h -t 15.6754 -s 28 -d 1 -p ack -e 40 -c 0 -i 253 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.677 -s 21 -d 28 -p ack -e 40 -c 0 -i 254 -a 1 -x {1.1.3.0 0.0.3.0 123 ------- null} + -t 15.677 -s 28 -d 1 -p ack -e 40 -c 0 -i 254 -a 1 -x {1.1.3.0 0.0.3.0 123 ------- null} - -t 15.677 -s 28 -d 1 -p ack -e 40 -c 0 -i 254 -a 1 -x {1.1.3.0 0.0.3.0 123 ------- null} h -t 15.677 -s 28 -d 1 -p ack -e 40 -c 0 -i 254 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.6786 -s 21 -d 28 -p ack -e 40 -c 0 -i 255 -a 1 -x {1.1.3.0 0.0.3.0 124 ------- null} + -t 15.6786 -s 28 -d 1 -p ack -e 40 -c 0 -i 255 -a 1 -x {1.1.3.0 0.0.3.0 124 ------- null} - -t 15.6786 -s 28 -d 1 -p ack -e 40 -c 0 -i 255 -a 1 -x {1.1.3.0 0.0.3.0 124 ------- null} h -t 15.6786 -s 28 -d 1 -p ack -e 40 -c 0 -i 255 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.6802 -s 21 -d 28 -p ack -e 40 -c 0 -i 256 -a 1 -x {1.1.3.0 0.0.3.0 125 ------- null} + -t 15.6802 -s 28 -d 1 -p ack -e 40 -c 0 -i 256 -a 1 -x {1.1.3.0 0.0.3.0 125 ------- null} - -t 15.6802 -s 28 -d 1 -p ack -e 40 -c 0 -i 256 -a 1 -x {1.1.3.0 0.0.3.0 125 ------- null} h -t 15.6802 -s 28 -d 1 -p ack -e 40 -c 0 -i 256 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.6818 -s 21 -d 28 -p ack -e 40 -c 0 -i 257 -a 1 -x {1.1.3.0 0.0.3.0 126 ------- null} + -t 15.6818 -s 28 -d 1 -p ack -e 40 -c 0 -i 257 -a 1 -x {1.1.3.0 0.0.3.0 126 ------- null} - -t 15.6818 -s 28 -d 1 -p ack -e 40 -c 0 -i 257 -a 1 -x {1.1.3.0 0.0.3.0 126 ------- null} h -t 15.6818 -s 28 -d 1 -p ack -e 40 -c 0 -i 257 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.6834 -s 21 -d 28 -p ack -e 40 -c 0 -i 258 -a 1 -x {1.1.3.0 0.0.3.0 127 ------- null} + -t 15.6834 -s 28 -d 1 -p ack -e 40 -c 0 -i 258 -a 1 -x {1.1.3.0 0.0.3.0 127 ------- null} - -t 15.6834 -s 28 -d 1 -p ack -e 40 -c 0 -i 258 -a 1 -x {1.1.3.0 0.0.3.0 127 ------- null} h -t 15.6834 -s 28 -d 1 -p ack -e 40 -c 0 -i 258 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.685 -s 21 -d 28 -p ack -e 40 -c 0 -i 259 -a 1 -x {1.1.3.0 0.0.3.0 128 ------- null} + -t 15.685 -s 28 -d 1 -p ack -e 40 -c 0 -i 259 -a 1 -x {1.1.3.0 0.0.3.0 128 ------- null} - -t 15.685 -s 28 -d 1 -p ack -e 40 -c 0 -i 259 -a 1 -x {1.1.3.0 0.0.3.0 128 ------- null} h -t 15.685 -s 28 -d 1 -p ack -e 40 -c 0 -i 259 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.6866 -s 21 -d 28 -p ack -e 40 -c 0 -i 260 -a 1 -x {1.1.3.0 0.0.3.0 129 ------- null} + -t 15.6866 -s 28 -d 1 -p ack -e 40 -c 0 -i 260 -a 1 -x {1.1.3.0 0.0.3.0 129 ------- null} - -t 15.6866 -s 28 -d 1 -p ack -e 40 -c 0 -i 260 -a 1 -x {1.1.3.0 0.0.3.0 129 ------- null} h -t 15.6866 -s 28 -d 1 -p ack -e 40 -c 0 -i 260 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.6882 -s 21 -d 28 -p ack -e 40 -c 0 -i 261 -a 1 -x {1.1.3.0 0.0.3.0 130 ------- null} + -t 15.6882 -s 28 -d 1 -p ack -e 40 -c 0 -i 261 -a 1 -x {1.1.3.0 0.0.3.0 130 ------- null} - -t 15.6882 -s 28 -d 1 -p ack -e 40 -c 0 -i 261 -a 1 -x {1.1.3.0 0.0.3.0 130 ------- null} h -t 15.6882 -s 28 -d 1 -p ack -e 40 -c 0 -i 261 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.9579 -s 28 -d 1 -p ack -e 40 -c 0 -i 242 -a 1 -x {1.1.3.0 0.0.3.0 111 ------- null} + -t 15.9579 -s 1 -d 3 -p ack -e 40 -c 0 -i 242 -a 1 -x {1.1.3.0 0.0.3.0 111 ------- null} - -t 15.9579 -s 1 -d 3 -p ack -e 40 -c 0 -i 242 -a 1 -x {1.1.3.0 0.0.3.0 111 ------- null} h -t 15.9579 -s 1 -d 3 -p ack -e 40 -c 0 -i 242 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.9595 -s 28 -d 1 -p ack -e 40 -c 0 -i 243 -a 1 -x {1.1.3.0 0.0.3.0 112 ------- null} + -t 15.9595 -s 1 -d 3 -p ack -e 40 -c 0 -i 243 -a 1 -x {1.1.3.0 0.0.3.0 112 ------- null} - -t 15.9595 -s 1 -d 3 -p ack -e 40 -c 0 -i 243 -a 1 -x {1.1.3.0 0.0.3.0 112 ------- null} h -t 15.9595 -s 1 -d 3 -p ack -e 40 -c 0 -i 243 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.9611 -s 28 -d 1 -p ack -e 40 -c 0 -i 244 -a 1 -x {1.1.3.0 0.0.3.0 113 ------- null} + -t 15.9611 -s 1 -d 3 -p ack -e 40 -c 0 -i 244 -a 1 -x {1.1.3.0 0.0.3.0 113 ------- null} - -t 15.9611 -s 1 -d 3 -p ack -e 40 -c 0 -i 244 -a 1 -x {1.1.3.0 0.0.3.0 113 ------- null} h -t 15.9611 -s 1 -d 3 -p ack -e 40 -c 0 -i 244 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.9627 -s 28 -d 1 -p ack -e 40 -c 0 -i 245 -a 1 -x {1.1.3.0 0.0.3.0 114 ------- null} + -t 15.9627 -s 1 -d 3 -p ack -e 40 -c 0 -i 245 -a 1 -x {1.1.3.0 0.0.3.0 114 ------- null} - -t 15.9627 -s 1 -d 3 -p ack -e 40 -c 0 -i 245 -a 1 -x {1.1.3.0 0.0.3.0 114 ------- null} h -t 15.9627 -s 1 -d 3 -p ack -e 40 -c 0 -i 245 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.9643 -s 28 -d 1 -p ack -e 40 -c 0 -i 246 -a 1 -x {1.1.3.0 0.0.3.0 115 ------- null} + -t 15.9643 -s 1 -d 3 -p ack -e 40 -c 0 -i 246 -a 1 -x {1.1.3.0 0.0.3.0 115 ------- null} - -t 15.9643 -s 1 -d 3 -p ack -e 40 -c 0 -i 246 -a 1 -x {1.1.3.0 0.0.3.0 115 ------- null} h -t 15.9643 -s 1 -d 3 -p ack -e 40 -c 0 -i 246 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.9659 -s 28 -d 1 -p ack -e 40 -c 0 -i 247 -a 1 -x {1.1.3.0 0.0.3.0 116 ------- null} + -t 15.9659 -s 1 -d 3 -p ack -e 40 -c 0 -i 247 -a 1 -x {1.1.3.0 0.0.3.0 116 ------- null} - -t 15.9659 -s 1 -d 3 -p ack -e 40 -c 0 -i 247 -a 1 -x {1.1.3.0 0.0.3.0 116 ------- null} h -t 15.9659 -s 1 -d 3 -p ack -e 40 -c 0 -i 247 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.9675 -s 28 -d 1 -p ack -e 40 -c 0 -i 248 -a 1 -x {1.1.3.0 0.0.3.0 117 ------- null} + -t 15.9675 -s 1 -d 3 -p ack -e 40 -c 0 -i 248 -a 1 -x {1.1.3.0 0.0.3.0 117 ------- null} - -t 15.9675 -s 1 -d 3 -p ack -e 40 -c 0 -i 248 -a 1 -x {1.1.3.0 0.0.3.0 117 ------- null} h -t 15.9675 -s 1 -d 3 -p ack -e 40 -c 0 -i 248 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.9691 -s 28 -d 1 -p ack -e 40 -c 0 -i 249 -a 1 -x {1.1.3.0 0.0.3.0 118 ------- null} + -t 15.9691 -s 1 -d 3 -p ack -e 40 -c 0 -i 249 -a 1 -x {1.1.3.0 0.0.3.0 118 ------- null} - -t 15.9691 -s 1 -d 3 -p ack -e 40 -c 0 -i 249 -a 1 -x {1.1.3.0 0.0.3.0 118 ------- null} h -t 15.9691 -s 1 -d 3 -p ack -e 40 -c 0 -i 249 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.9707 -s 28 -d 1 -p ack -e 40 -c 0 -i 250 -a 1 -x {1.1.3.0 0.0.3.0 119 ------- null} + -t 15.9707 -s 1 -d 3 -p ack -e 40 -c 0 -i 250 -a 1 -x {1.1.3.0 0.0.3.0 119 ------- null} - -t 15.9707 -s 1 -d 3 -p ack -e 40 -c 0 -i 250 -a 1 -x {1.1.3.0 0.0.3.0 119 ------- null} h -t 15.9707 -s 1 -d 3 -p ack -e 40 -c 0 -i 250 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.9723 -s 28 -d 1 -p ack -e 40 -c 0 -i 251 -a 1 -x {1.1.3.0 0.0.3.0 120 ------- null} + -t 15.9723 -s 1 -d 3 -p ack -e 40 -c 0 -i 251 -a 1 -x {1.1.3.0 0.0.3.0 120 ------- null} - -t 15.9723 -s 1 -d 3 -p ack -e 40 -c 0 -i 251 -a 1 -x {1.1.3.0 0.0.3.0 120 ------- null} h -t 15.9723 -s 1 -d 3 -p ack -e 40 -c 0 -i 251 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.9739 -s 28 -d 1 -p ack -e 40 -c 0 -i 252 -a 1 -x {1.1.3.0 0.0.3.0 121 ------- null} + -t 15.9739 -s 1 -d 3 -p ack -e 40 -c 0 -i 252 -a 1 -x {1.1.3.0 0.0.3.0 121 ------- null} - -t 15.9739 -s 1 -d 3 -p ack -e 40 -c 0 -i 252 -a 1 -x {1.1.3.0 0.0.3.0 121 ------- null} h -t 15.9739 -s 1 -d 3 -p ack -e 40 -c 0 -i 252 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.9755 -s 28 -d 1 -p ack -e 40 -c 0 -i 253 -a 1 -x {1.1.3.0 0.0.3.0 122 ------- null} + -t 15.9755 -s 1 -d 3 -p ack -e 40 -c 0 -i 253 -a 1 -x {1.1.3.0 0.0.3.0 122 ------- null} - -t 15.9755 -s 1 -d 3 -p ack -e 40 -c 0 -i 253 -a 1 -x {1.1.3.0 0.0.3.0 122 ------- null} h -t 15.9755 -s 1 -d 3 -p ack -e 40 -c 0 -i 253 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.9771 -s 28 -d 1 -p ack -e 40 -c 0 -i 254 -a 1 -x {1.1.3.0 0.0.3.0 123 ------- null} + -t 15.9771 -s 1 -d 3 -p ack -e 40 -c 0 -i 254 -a 1 -x {1.1.3.0 0.0.3.0 123 ------- null} - -t 15.9771 -s 1 -d 3 -p ack -e 40 -c 0 -i 254 -a 1 -x {1.1.3.0 0.0.3.0 123 ------- null} h -t 15.9771 -s 1 -d 3 -p ack -e 40 -c 0 -i 254 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.9787 -s 28 -d 1 -p ack -e 40 -c 0 -i 255 -a 1 -x {1.1.3.0 0.0.3.0 124 ------- null} + -t 15.9787 -s 1 -d 3 -p ack -e 40 -c 0 -i 255 -a 1 -x {1.1.3.0 0.0.3.0 124 ------- null} - -t 15.9787 -s 1 -d 3 -p ack -e 40 -c 0 -i 255 -a 1 -x {1.1.3.0 0.0.3.0 124 ------- null} h -t 15.9787 -s 1 -d 3 -p ack -e 40 -c 0 -i 255 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.9803 -s 28 -d 1 -p ack -e 40 -c 0 -i 256 -a 1 -x {1.1.3.0 0.0.3.0 125 ------- null} + -t 15.9803 -s 1 -d 3 -p ack -e 40 -c 0 -i 256 -a 1 -x {1.1.3.0 0.0.3.0 125 ------- null} - -t 15.9803 -s 1 -d 3 -p ack -e 40 -c 0 -i 256 -a 1 -x {1.1.3.0 0.0.3.0 125 ------- null} h -t 15.9803 -s 1 -d 3 -p ack -e 40 -c 0 -i 256 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.9819 -s 28 -d 1 -p ack -e 40 -c 0 -i 257 -a 1 -x {1.1.3.0 0.0.3.0 126 ------- null} + -t 15.9819 -s 1 -d 3 -p ack -e 40 -c 0 -i 257 -a 1 -x {1.1.3.0 0.0.3.0 126 ------- null} - -t 15.9819 -s 1 -d 3 -p ack -e 40 -c 0 -i 257 -a 1 -x {1.1.3.0 0.0.3.0 126 ------- null} h -t 15.9819 -s 1 -d 3 -p ack -e 40 -c 0 -i 257 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.9835 -s 28 -d 1 -p ack -e 40 -c 0 -i 258 -a 1 -x {1.1.3.0 0.0.3.0 127 ------- null} + -t 15.9835 -s 1 -d 3 -p ack -e 40 -c 0 -i 258 -a 1 -x {1.1.3.0 0.0.3.0 127 ------- null} - -t 15.9835 -s 1 -d 3 -p ack -e 40 -c 0 -i 258 -a 1 -x {1.1.3.0 0.0.3.0 127 ------- null} h -t 15.9835 -s 1 -d 3 -p ack -e 40 -c 0 -i 258 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.9851 -s 28 -d 1 -p ack -e 40 -c 0 -i 259 -a 1 -x {1.1.3.0 0.0.3.0 128 ------- null} + -t 15.9851 -s 1 -d 3 -p ack -e 40 -c 0 -i 259 -a 1 -x {1.1.3.0 0.0.3.0 128 ------- null} - -t 15.9851 -s 1 -d 3 -p ack -e 40 -c 0 -i 259 -a 1 -x {1.1.3.0 0.0.3.0 128 ------- null} h -t 15.9851 -s 1 -d 3 -p ack -e 40 -c 0 -i 259 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.9867 -s 28 -d 1 -p ack -e 40 -c 0 -i 260 -a 1 -x {1.1.3.0 0.0.3.0 129 ------- null} + -t 15.9867 -s 1 -d 3 -p ack -e 40 -c 0 -i 260 -a 1 -x {1.1.3.0 0.0.3.0 129 ------- null} - -t 15.9867 -s 1 -d 3 -p ack -e 40 -c 0 -i 260 -a 1 -x {1.1.3.0 0.0.3.0 129 ------- null} h -t 15.9867 -s 1 -d 3 -p ack -e 40 -c 0 -i 260 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 15.9883 -s 28 -d 1 -p ack -e 40 -c 0 -i 261 -a 1 -x {1.1.3.0 0.0.3.0 130 ------- null} + -t 15.9883 -s 1 -d 3 -p ack -e 40 -c 0 -i 261 -a 1 -x {1.1.3.0 0.0.3.0 130 ------- null} - -t 15.9883 -s 1 -d 3 -p ack -e 40 -c 0 -i 261 -a 1 -x {1.1.3.0 0.0.3.0 130 ------- null} h -t 15.9883 -s 1 -d 3 -p ack -e 40 -c 0 -i 261 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 16.0979 -s 1 -d 3 -p ack -e 40 -c 0 -i 242 -a 1 -x {1.1.3.0 0.0.3.0 111 ------- null} + -t 16.0979 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 262 -a 0 -x {0.0.3.0 1.1.3.0 131 ------- null} - -t 16.0979 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 262 -a 0 -x {0.0.3.0 1.1.3.0 131 ------- null} h -t 16.0979 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 262 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.0995 -s 1 -d 3 -p ack -e 40 -c 0 -i 243 -a 1 -x {1.1.3.0 0.0.3.0 112 ------- null} + -t 16.0995 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {0.0.3.0 1.1.3.0 132 ------- null} - -t 16.0995 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {0.0.3.0 1.1.3.0 132 ------- null} h -t 16.0995 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.1011 -s 1 -d 3 -p ack -e 40 -c 0 -i 244 -a 1 -x {1.1.3.0 0.0.3.0 113 ------- null} + -t 16.1011 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 264 -a 0 -x {0.0.3.0 1.1.3.0 133 ------- null} - -t 16.1011 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 264 -a 0 -x {0.0.3.0 1.1.3.0 133 ------- null} h -t 16.1011 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 264 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.1027 -s 1 -d 3 -p ack -e 40 -c 0 -i 245 -a 1 -x {1.1.3.0 0.0.3.0 114 ------- null} + -t 16.1027 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {0.0.3.0 1.1.3.0 134 ------- null} - -t 16.1027 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {0.0.3.0 1.1.3.0 134 ------- null} h -t 16.1027 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.1043 -s 1 -d 3 -p ack -e 40 -c 0 -i 246 -a 1 -x {1.1.3.0 0.0.3.0 115 ------- null} + -t 16.1043 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 266 -a 0 -x {0.0.3.0 1.1.3.0 135 ------- null} - -t 16.1043 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 266 -a 0 -x {0.0.3.0 1.1.3.0 135 ------- null} h -t 16.1043 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 266 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.1059 -s 1 -d 3 -p ack -e 40 -c 0 -i 247 -a 1 -x {1.1.3.0 0.0.3.0 116 ------- null} + -t 16.1059 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {0.0.3.0 1.1.3.0 136 ------- null} - -t 16.1059 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {0.0.3.0 1.1.3.0 136 ------- null} h -t 16.1059 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.1075 -s 1 -d 3 -p ack -e 40 -c 0 -i 248 -a 1 -x {1.1.3.0 0.0.3.0 117 ------- null} + -t 16.1075 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 268 -a 0 -x {0.0.3.0 1.1.3.0 137 ------- null} - -t 16.1075 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 268 -a 0 -x {0.0.3.0 1.1.3.0 137 ------- null} h -t 16.1075 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 268 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.1091 -s 1 -d 3 -p ack -e 40 -c 0 -i 249 -a 1 -x {1.1.3.0 0.0.3.0 118 ------- null} + -t 16.1091 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {0.0.3.0 1.1.3.0 138 ------- null} - -t 16.1091 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {0.0.3.0 1.1.3.0 138 ------- null} h -t 16.1091 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.1107 -s 1 -d 3 -p ack -e 40 -c 0 -i 250 -a 1 -x {1.1.3.0 0.0.3.0 119 ------- null} + -t 16.1107 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 270 -a 0 -x {0.0.3.0 1.1.3.0 139 ------- null} - -t 16.1107 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 270 -a 0 -x {0.0.3.0 1.1.3.0 139 ------- null} h -t 16.1107 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 270 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.1123 -s 1 -d 3 -p ack -e 40 -c 0 -i 251 -a 1 -x {1.1.3.0 0.0.3.0 120 ------- null} + -t 16.1123 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {0.0.3.0 1.1.3.0 140 ------- null} - -t 16.1123 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {0.0.3.0 1.1.3.0 140 ------- null} h -t 16.1123 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.1139 -s 1 -d 3 -p ack -e 40 -c 0 -i 252 -a 1 -x {1.1.3.0 0.0.3.0 121 ------- null} + -t 16.1139 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {0.0.3.0 1.1.3.0 141 ------- null} - -t 16.1139 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {0.0.3.0 1.1.3.0 141 ------- null} h -t 16.1139 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.1155 -s 1 -d 3 -p ack -e 40 -c 0 -i 253 -a 1 -x {1.1.3.0 0.0.3.0 122 ------- null} + -t 16.1155 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {0.0.3.0 1.1.3.0 142 ------- null} - -t 16.1155 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {0.0.3.0 1.1.3.0 142 ------- null} h -t 16.1155 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.1171 -s 1 -d 3 -p ack -e 40 -c 0 -i 254 -a 1 -x {1.1.3.0 0.0.3.0 123 ------- null} + -t 16.1171 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {0.0.3.0 1.1.3.0 143 ------- null} - -t 16.1171 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {0.0.3.0 1.1.3.0 143 ------- null} h -t 16.1171 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.1187 -s 1 -d 3 -p ack -e 40 -c 0 -i 255 -a 1 -x {1.1.3.0 0.0.3.0 124 ------- null} + -t 16.1187 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {0.0.3.0 1.1.3.0 144 ------- null} - -t 16.1187 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {0.0.3.0 1.1.3.0 144 ------- null} h -t 16.1187 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.1203 -s 1 -d 3 -p ack -e 40 -c 0 -i 256 -a 1 -x {1.1.3.0 0.0.3.0 125 ------- null} + -t 16.1203 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 276 -a 0 -x {0.0.3.0 1.1.3.0 145 ------- null} - -t 16.1203 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 276 -a 0 -x {0.0.3.0 1.1.3.0 145 ------- null} h -t 16.1203 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 276 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.1219 -s 1 -d 3 -p ack -e 40 -c 0 -i 257 -a 1 -x {1.1.3.0 0.0.3.0 126 ------- null} + -t 16.1219 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {0.0.3.0 1.1.3.0 146 ------- null} - -t 16.1219 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {0.0.3.0 1.1.3.0 146 ------- null} h -t 16.1219 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.1235 -s 1 -d 3 -p ack -e 40 -c 0 -i 258 -a 1 -x {1.1.3.0 0.0.3.0 127 ------- null} + -t 16.1235 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 278 -a 0 -x {0.0.3.0 1.1.3.0 147 ------- null} - -t 16.1235 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 278 -a 0 -x {0.0.3.0 1.1.3.0 147 ------- null} h -t 16.1235 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 278 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.1251 -s 1 -d 3 -p ack -e 40 -c 0 -i 259 -a 1 -x {1.1.3.0 0.0.3.0 128 ------- null} + -t 16.1251 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {0.0.3.0 1.1.3.0 148 ------- null} - -t 16.1251 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {0.0.3.0 1.1.3.0 148 ------- null} h -t 16.1251 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.1267 -s 1 -d 3 -p ack -e 40 -c 0 -i 260 -a 1 -x {1.1.3.0 0.0.3.0 129 ------- null} + -t 16.1267 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 280 -a 0 -x {0.0.3.0 1.1.3.0 149 ------- null} - -t 16.1267 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 280 -a 0 -x {0.0.3.0 1.1.3.0 149 ------- null} h -t 16.1267 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 280 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.1283 -s 1 -d 3 -p ack -e 40 -c 0 -i 261 -a 1 -x {1.1.3.0 0.0.3.0 130 ------- null} + -t 16.1283 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {0.0.3.0 1.1.3.0 150 ------- null} - -t 16.1283 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {0.0.3.0 1.1.3.0 150 ------- null} h -t 16.1283 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.2595 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 262 -a 0 -x {0.0.3.0 1.1.3.0 131 ------- null} + -t 16.2595 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 262 -a 0 -x {0.0.3.0 1.1.3.0 131 ------- null} - -t 16.2595 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 262 -a 0 -x {0.0.3.0 1.1.3.0 131 ------- null} h -t 16.2595 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 262 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.2611 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {0.0.3.0 1.1.3.0 132 ------- null} + -t 16.2611 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {0.0.3.0 1.1.3.0 132 ------- null} - -t 16.2611 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {0.0.3.0 1.1.3.0 132 ------- null} h -t 16.2611 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.2627 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 264 -a 0 -x {0.0.3.0 1.1.3.0 133 ------- null} + -t 16.2627 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 264 -a 0 -x {0.0.3.0 1.1.3.0 133 ------- null} - -t 16.2627 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 264 -a 0 -x {0.0.3.0 1.1.3.0 133 ------- null} h -t 16.2627 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 264 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.2643 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {0.0.3.0 1.1.3.0 134 ------- null} + -t 16.2643 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {0.0.3.0 1.1.3.0 134 ------- null} - -t 16.2643 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {0.0.3.0 1.1.3.0 134 ------- null} h -t 16.2643 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.2659 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 266 -a 0 -x {0.0.3.0 1.1.3.0 135 ------- null} + -t 16.2659 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 266 -a 0 -x {0.0.3.0 1.1.3.0 135 ------- null} - -t 16.2659 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 266 -a 0 -x {0.0.3.0 1.1.3.0 135 ------- null} h -t 16.2659 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 266 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.2675 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {0.0.3.0 1.1.3.0 136 ------- null} + -t 16.2675 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {0.0.3.0 1.1.3.0 136 ------- null} - -t 16.2675 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {0.0.3.0 1.1.3.0 136 ------- null} h -t 16.2675 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.2691 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 268 -a 0 -x {0.0.3.0 1.1.3.0 137 ------- null} + -t 16.2691 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 268 -a 0 -x {0.0.3.0 1.1.3.0 137 ------- null} - -t 16.2691 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 268 -a 0 -x {0.0.3.0 1.1.3.0 137 ------- null} h -t 16.2691 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 268 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.2707 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {0.0.3.0 1.1.3.0 138 ------- null} + -t 16.2707 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {0.0.3.0 1.1.3.0 138 ------- null} - -t 16.2707 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {0.0.3.0 1.1.3.0 138 ------- null} h -t 16.2707 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.2723 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 270 -a 0 -x {0.0.3.0 1.1.3.0 139 ------- null} + -t 16.2723 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 270 -a 0 -x {0.0.3.0 1.1.3.0 139 ------- null} - -t 16.2723 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 270 -a 0 -x {0.0.3.0 1.1.3.0 139 ------- null} h -t 16.2723 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 270 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.2739 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {0.0.3.0 1.1.3.0 140 ------- null} + -t 16.2739 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {0.0.3.0 1.1.3.0 140 ------- null} - -t 16.2739 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {0.0.3.0 1.1.3.0 140 ------- null} h -t 16.2739 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.2755 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {0.0.3.0 1.1.3.0 141 ------- null} + -t 16.2755 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {0.0.3.0 1.1.3.0 141 ------- null} - -t 16.2755 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {0.0.3.0 1.1.3.0 141 ------- null} h -t 16.2755 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.2771 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {0.0.3.0 1.1.3.0 142 ------- null} + -t 16.2771 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {0.0.3.0 1.1.3.0 142 ------- null} - -t 16.2771 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {0.0.3.0 1.1.3.0 142 ------- null} h -t 16.2771 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.2787 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {0.0.3.0 1.1.3.0 143 ------- null} + -t 16.2787 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {0.0.3.0 1.1.3.0 143 ------- null} - -t 16.2787 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {0.0.3.0 1.1.3.0 143 ------- null} h -t 16.2787 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.2803 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {0.0.3.0 1.1.3.0 144 ------- null} + -t 16.2803 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {0.0.3.0 1.1.3.0 144 ------- null} - -t 16.2803 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {0.0.3.0 1.1.3.0 144 ------- null} h -t 16.2803 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.2819 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 276 -a 0 -x {0.0.3.0 1.1.3.0 145 ------- null} + -t 16.2819 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 276 -a 0 -x {0.0.3.0 1.1.3.0 145 ------- null} - -t 16.2819 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 276 -a 0 -x {0.0.3.0 1.1.3.0 145 ------- null} h -t 16.2819 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 276 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.2835 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {0.0.3.0 1.1.3.0 146 ------- null} + -t 16.2835 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {0.0.3.0 1.1.3.0 146 ------- null} - -t 16.2835 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {0.0.3.0 1.1.3.0 146 ------- null} h -t 16.2835 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.2851 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 278 -a 0 -x {0.0.3.0 1.1.3.0 147 ------- null} + -t 16.2851 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 278 -a 0 -x {0.0.3.0 1.1.3.0 147 ------- null} - -t 16.2851 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 278 -a 0 -x {0.0.3.0 1.1.3.0 147 ------- null} h -t 16.2851 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 278 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.2867 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {0.0.3.0 1.1.3.0 148 ------- null} + -t 16.2867 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {0.0.3.0 1.1.3.0 148 ------- null} - -t 16.2867 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {0.0.3.0 1.1.3.0 148 ------- null} h -t 16.2867 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.2883 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 280 -a 0 -x {0.0.3.0 1.1.3.0 149 ------- null} + -t 16.2883 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 280 -a 0 -x {0.0.3.0 1.1.3.0 149 ------- null} - -t 16.2883 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 280 -a 0 -x {0.0.3.0 1.1.3.0 149 ------- null} h -t 16.2883 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 280 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.2899 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {0.0.3.0 1.1.3.0 150 ------- null} + -t 16.2899 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {0.0.3.0 1.1.3.0 150 ------- null} - -t 16.2899 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {0.0.3.0 1.1.3.0 150 ------- null} h -t 16.2899 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.5611 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 262 -a 0 -x {0.0.3.0 1.1.3.0 131 ------- null} + -t 16.5611 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 262 -a 0 -x {0.0.3.0 1.1.3.0 131 ------- null} - -t 16.5611 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 262 -a 0 -x {0.0.3.0 1.1.3.0 131 ------- null} h -t 16.5611 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 262 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.5627 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {0.0.3.0 1.1.3.0 132 ------- null} + -t 16.5627 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {0.0.3.0 1.1.3.0 132 ------- null} - -t 16.5627 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {0.0.3.0 1.1.3.0 132 ------- null} h -t 16.5627 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.5643 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 264 -a 0 -x {0.0.3.0 1.1.3.0 133 ------- null} + -t 16.5643 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 264 -a 0 -x {0.0.3.0 1.1.3.0 133 ------- null} - -t 16.5643 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 264 -a 0 -x {0.0.3.0 1.1.3.0 133 ------- null} h -t 16.5643 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 264 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.5659 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {0.0.3.0 1.1.3.0 134 ------- null} + -t 16.5659 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {0.0.3.0 1.1.3.0 134 ------- null} - -t 16.5659 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {0.0.3.0 1.1.3.0 134 ------- null} h -t 16.5659 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.5675 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 266 -a 0 -x {0.0.3.0 1.1.3.0 135 ------- null} + -t 16.5675 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 266 -a 0 -x {0.0.3.0 1.1.3.0 135 ------- null} - -t 16.5675 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 266 -a 0 -x {0.0.3.0 1.1.3.0 135 ------- null} h -t 16.5675 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 266 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.5691 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {0.0.3.0 1.1.3.0 136 ------- null} + -t 16.5691 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {0.0.3.0 1.1.3.0 136 ------- null} - -t 16.5691 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {0.0.3.0 1.1.3.0 136 ------- null} h -t 16.5691 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.5707 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 268 -a 0 -x {0.0.3.0 1.1.3.0 137 ------- null} + -t 16.5707 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 268 -a 0 -x {0.0.3.0 1.1.3.0 137 ------- null} - -t 16.5707 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 268 -a 0 -x {0.0.3.0 1.1.3.0 137 ------- null} h -t 16.5707 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 268 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.5723 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {0.0.3.0 1.1.3.0 138 ------- null} + -t 16.5723 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {0.0.3.0 1.1.3.0 138 ------- null} - -t 16.5723 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {0.0.3.0 1.1.3.0 138 ------- null} h -t 16.5723 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.5739 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 270 -a 0 -x {0.0.3.0 1.1.3.0 139 ------- null} + -t 16.5739 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 270 -a 0 -x {0.0.3.0 1.1.3.0 139 ------- null} - -t 16.5739 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 270 -a 0 -x {0.0.3.0 1.1.3.0 139 ------- null} h -t 16.5739 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 270 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.5755 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {0.0.3.0 1.1.3.0 140 ------- null} + -t 16.5755 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {0.0.3.0 1.1.3.0 140 ------- null} - -t 16.5755 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {0.0.3.0 1.1.3.0 140 ------- null} h -t 16.5755 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.5771 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {0.0.3.0 1.1.3.0 141 ------- null} + -t 16.5771 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {0.0.3.0 1.1.3.0 141 ------- null} - -t 16.5771 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {0.0.3.0 1.1.3.0 141 ------- null} h -t 16.5771 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.5787 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {0.0.3.0 1.1.3.0 142 ------- null} + -t 16.5787 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {0.0.3.0 1.1.3.0 142 ------- null} - -t 16.5787 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {0.0.3.0 1.1.3.0 142 ------- null} h -t 16.5787 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.5803 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {0.0.3.0 1.1.3.0 143 ------- null} + -t 16.5803 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {0.0.3.0 1.1.3.0 143 ------- null} - -t 16.5803 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {0.0.3.0 1.1.3.0 143 ------- null} h -t 16.5803 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.5819 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {0.0.3.0 1.1.3.0 144 ------- null} + -t 16.5819 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {0.0.3.0 1.1.3.0 144 ------- null} - -t 16.5819 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {0.0.3.0 1.1.3.0 144 ------- null} h -t 16.5819 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.5835 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 276 -a 0 -x {0.0.3.0 1.1.3.0 145 ------- null} + -t 16.5835 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 276 -a 0 -x {0.0.3.0 1.1.3.0 145 ------- null} - -t 16.5835 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 276 -a 0 -x {0.0.3.0 1.1.3.0 145 ------- null} h -t 16.5835 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 276 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.5851 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {0.0.3.0 1.1.3.0 146 ------- null} + -t 16.5851 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {0.0.3.0 1.1.3.0 146 ------- null} - -t 16.5851 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {0.0.3.0 1.1.3.0 146 ------- null} h -t 16.5851 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.5867 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 278 -a 0 -x {0.0.3.0 1.1.3.0 147 ------- null} + -t 16.5867 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 278 -a 0 -x {0.0.3.0 1.1.3.0 147 ------- null} - -t 16.5867 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 278 -a 0 -x {0.0.3.0 1.1.3.0 147 ------- null} h -t 16.5867 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 278 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.5883 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {0.0.3.0 1.1.3.0 148 ------- null} + -t 16.5883 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {0.0.3.0 1.1.3.0 148 ------- null} - -t 16.5883 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {0.0.3.0 1.1.3.0 148 ------- null} h -t 16.5883 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.5899 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 280 -a 0 -x {0.0.3.0 1.1.3.0 149 ------- null} + -t 16.5899 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 280 -a 0 -x {0.0.3.0 1.1.3.0 149 ------- null} - -t 16.5899 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 280 -a 0 -x {0.0.3.0 1.1.3.0 149 ------- null} h -t 16.5899 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 280 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.5915 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {0.0.3.0 1.1.3.0 150 ------- null} + -t 16.5915 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {0.0.3.0 1.1.3.0 150 ------- null} - -t 16.5915 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {0.0.3.0 1.1.3.0 150 ------- null} h -t 16.5915 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.6627 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 262 -a 0 -x {0.0.3.0 1.1.3.0 131 ------- null} + -t 16.6627 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 262 -a 0 -x {0.0.3.0 1.1.3.0 131 ------- null} - -t 16.6627 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 262 -a 0 -x {0.0.3.0 1.1.3.0 131 ------- null} h -t 16.6627 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 262 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.6643 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {0.0.3.0 1.1.3.0 132 ------- null} + -t 16.6643 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {0.0.3.0 1.1.3.0 132 ------- null} - -t 16.6643 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {0.0.3.0 1.1.3.0 132 ------- null} h -t 16.6643 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.6659 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 264 -a 0 -x {0.0.3.0 1.1.3.0 133 ------- null} + -t 16.6659 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 264 -a 0 -x {0.0.3.0 1.1.3.0 133 ------- null} - -t 16.6659 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 264 -a 0 -x {0.0.3.0 1.1.3.0 133 ------- null} h -t 16.6659 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 264 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.6675 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {0.0.3.0 1.1.3.0 134 ------- null} + -t 16.6675 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {0.0.3.0 1.1.3.0 134 ------- null} - -t 16.6675 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {0.0.3.0 1.1.3.0 134 ------- null} h -t 16.6675 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.6691 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 266 -a 0 -x {0.0.3.0 1.1.3.0 135 ------- null} + -t 16.6691 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 266 -a 0 -x {0.0.3.0 1.1.3.0 135 ------- null} - -t 16.6691 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 266 -a 0 -x {0.0.3.0 1.1.3.0 135 ------- null} h -t 16.6691 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 266 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.6707 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {0.0.3.0 1.1.3.0 136 ------- null} + -t 16.6707 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {0.0.3.0 1.1.3.0 136 ------- null} - -t 16.6707 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {0.0.3.0 1.1.3.0 136 ------- null} h -t 16.6707 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.6723 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 268 -a 0 -x {0.0.3.0 1.1.3.0 137 ------- null} + -t 16.6723 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 268 -a 0 -x {0.0.3.0 1.1.3.0 137 ------- null} - -t 16.6723 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 268 -a 0 -x {0.0.3.0 1.1.3.0 137 ------- null} h -t 16.6723 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 268 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.6739 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {0.0.3.0 1.1.3.0 138 ------- null} + -t 16.6739 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {0.0.3.0 1.1.3.0 138 ------- null} - -t 16.6739 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {0.0.3.0 1.1.3.0 138 ------- null} h -t 16.6739 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.6755 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 270 -a 0 -x {0.0.3.0 1.1.3.0 139 ------- null} + -t 16.6755 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 270 -a 0 -x {0.0.3.0 1.1.3.0 139 ------- null} - -t 16.6755 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 270 -a 0 -x {0.0.3.0 1.1.3.0 139 ------- null} h -t 16.6755 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 270 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.6771 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {0.0.3.0 1.1.3.0 140 ------- null} + -t 16.6771 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {0.0.3.0 1.1.3.0 140 ------- null} - -t 16.6771 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {0.0.3.0 1.1.3.0 140 ------- null} h -t 16.6771 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.6787 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {0.0.3.0 1.1.3.0 141 ------- null} + -t 16.6787 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {0.0.3.0 1.1.3.0 141 ------- null} - -t 16.6787 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {0.0.3.0 1.1.3.0 141 ------- null} h -t 16.6787 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.6803 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {0.0.3.0 1.1.3.0 142 ------- null} + -t 16.6803 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {0.0.3.0 1.1.3.0 142 ------- null} - -t 16.6803 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {0.0.3.0 1.1.3.0 142 ------- null} h -t 16.6803 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.6819 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {0.0.3.0 1.1.3.0 143 ------- null} + -t 16.6819 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {0.0.3.0 1.1.3.0 143 ------- null} - -t 16.6819 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {0.0.3.0 1.1.3.0 143 ------- null} h -t 16.6819 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.6835 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {0.0.3.0 1.1.3.0 144 ------- null} + -t 16.6835 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {0.0.3.0 1.1.3.0 144 ------- null} - -t 16.6835 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {0.0.3.0 1.1.3.0 144 ------- null} h -t 16.6835 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.6851 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 276 -a 0 -x {0.0.3.0 1.1.3.0 145 ------- null} + -t 16.6851 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 276 -a 0 -x {0.0.3.0 1.1.3.0 145 ------- null} - -t 16.6851 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 276 -a 0 -x {0.0.3.0 1.1.3.0 145 ------- null} h -t 16.6851 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 276 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.6867 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {0.0.3.0 1.1.3.0 146 ------- null} + -t 16.6867 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {0.0.3.0 1.1.3.0 146 ------- null} - -t 16.6867 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {0.0.3.0 1.1.3.0 146 ------- null} h -t 16.6867 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.6883 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 278 -a 0 -x {0.0.3.0 1.1.3.0 147 ------- null} + -t 16.6883 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 278 -a 0 -x {0.0.3.0 1.1.3.0 147 ------- null} - -t 16.6883 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 278 -a 0 -x {0.0.3.0 1.1.3.0 147 ------- null} h -t 16.6883 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 278 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.6899 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {0.0.3.0 1.1.3.0 148 ------- null} + -t 16.6899 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {0.0.3.0 1.1.3.0 148 ------- null} - -t 16.6899 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {0.0.3.0 1.1.3.0 148 ------- null} h -t 16.6899 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.6915 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 280 -a 0 -x {0.0.3.0 1.1.3.0 149 ------- null} + -t 16.6915 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 280 -a 0 -x {0.0.3.0 1.1.3.0 149 ------- null} - -t 16.6915 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 280 -a 0 -x {0.0.3.0 1.1.3.0 149 ------- null} h -t 16.6915 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 280 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.6931 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {0.0.3.0 1.1.3.0 150 ------- null} + -t 16.6931 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {0.0.3.0 1.1.3.0 150 ------- null} - -t 16.6931 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {0.0.3.0 1.1.3.0 150 ------- null} h -t 16.6931 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.7443 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 262 -a 0 -x {0.0.3.0 1.1.3.0 131 ------- null} + -t 16.7443 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 262 -a 0 -x {0.0.3.0 1.1.3.0 131 ------- null} - -t 16.7443 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 262 -a 0 -x {0.0.3.0 1.1.3.0 131 ------- null} h -t 16.7443 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 262 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.7459 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {0.0.3.0 1.1.3.0 132 ------- null} + -t 16.7459 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {0.0.3.0 1.1.3.0 132 ------- null} - -t 16.7459 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {0.0.3.0 1.1.3.0 132 ------- null} h -t 16.7459 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.7475 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 264 -a 0 -x {0.0.3.0 1.1.3.0 133 ------- null} + -t 16.7475 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 264 -a 0 -x {0.0.3.0 1.1.3.0 133 ------- null} - -t 16.7475 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 264 -a 0 -x {0.0.3.0 1.1.3.0 133 ------- null} h -t 16.7475 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 264 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.7491 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {0.0.3.0 1.1.3.0 134 ------- null} + -t 16.7491 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {0.0.3.0 1.1.3.0 134 ------- null} - -t 16.7491 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {0.0.3.0 1.1.3.0 134 ------- null} h -t 16.7491 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.7507 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 266 -a 0 -x {0.0.3.0 1.1.3.0 135 ------- null} + -t 16.7507 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 266 -a 0 -x {0.0.3.0 1.1.3.0 135 ------- null} - -t 16.7507 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 266 -a 0 -x {0.0.3.0 1.1.3.0 135 ------- null} h -t 16.7507 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 266 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.7523 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {0.0.3.0 1.1.3.0 136 ------- null} + -t 16.7523 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {0.0.3.0 1.1.3.0 136 ------- null} - -t 16.7523 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {0.0.3.0 1.1.3.0 136 ------- null} h -t 16.7523 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.7539 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 268 -a 0 -x {0.0.3.0 1.1.3.0 137 ------- null} + -t 16.7539 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 268 -a 0 -x {0.0.3.0 1.1.3.0 137 ------- null} - -t 16.7539 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 268 -a 0 -x {0.0.3.0 1.1.3.0 137 ------- null} h -t 16.7539 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 268 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.7555 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {0.0.3.0 1.1.3.0 138 ------- null} + -t 16.7555 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {0.0.3.0 1.1.3.0 138 ------- null} - -t 16.7555 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {0.0.3.0 1.1.3.0 138 ------- null} h -t 16.7555 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.7571 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 270 -a 0 -x {0.0.3.0 1.1.3.0 139 ------- null} + -t 16.7571 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 270 -a 0 -x {0.0.3.0 1.1.3.0 139 ------- null} - -t 16.7571 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 270 -a 0 -x {0.0.3.0 1.1.3.0 139 ------- null} h -t 16.7571 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 270 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.7587 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {0.0.3.0 1.1.3.0 140 ------- null} + -t 16.7587 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {0.0.3.0 1.1.3.0 140 ------- null} - -t 16.7587 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {0.0.3.0 1.1.3.0 140 ------- null} h -t 16.7587 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.7603 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {0.0.3.0 1.1.3.0 141 ------- null} + -t 16.7603 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {0.0.3.0 1.1.3.0 141 ------- null} - -t 16.7603 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {0.0.3.0 1.1.3.0 141 ------- null} h -t 16.7603 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.7619 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {0.0.3.0 1.1.3.0 142 ------- null} + -t 16.7619 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {0.0.3.0 1.1.3.0 142 ------- null} - -t 16.7619 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {0.0.3.0 1.1.3.0 142 ------- null} h -t 16.7619 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.7635 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {0.0.3.0 1.1.3.0 143 ------- null} + -t 16.7635 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {0.0.3.0 1.1.3.0 143 ------- null} - -t 16.7635 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {0.0.3.0 1.1.3.0 143 ------- null} h -t 16.7635 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.7651 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {0.0.3.0 1.1.3.0 144 ------- null} + -t 16.7651 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {0.0.3.0 1.1.3.0 144 ------- null} - -t 16.7651 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {0.0.3.0 1.1.3.0 144 ------- null} h -t 16.7651 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.7667 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 276 -a 0 -x {0.0.3.0 1.1.3.0 145 ------- null} + -t 16.7667 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 276 -a 0 -x {0.0.3.0 1.1.3.0 145 ------- null} - -t 16.7667 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 276 -a 0 -x {0.0.3.0 1.1.3.0 145 ------- null} h -t 16.7667 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 276 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.7683 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {0.0.3.0 1.1.3.0 146 ------- null} + -t 16.7683 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {0.0.3.0 1.1.3.0 146 ------- null} - -t 16.7683 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {0.0.3.0 1.1.3.0 146 ------- null} h -t 16.7683 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.7699 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 278 -a 0 -x {0.0.3.0 1.1.3.0 147 ------- null} + -t 16.7699 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 278 -a 0 -x {0.0.3.0 1.1.3.0 147 ------- null} - -t 16.7699 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 278 -a 0 -x {0.0.3.0 1.1.3.0 147 ------- null} h -t 16.7699 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 278 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.7715 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {0.0.3.0 1.1.3.0 148 ------- null} + -t 16.7715 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {0.0.3.0 1.1.3.0 148 ------- null} - -t 16.7715 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {0.0.3.0 1.1.3.0 148 ------- null} h -t 16.7715 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.7731 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 280 -a 0 -x {0.0.3.0 1.1.3.0 149 ------- null} + -t 16.7731 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 280 -a 0 -x {0.0.3.0 1.1.3.0 149 ------- null} - -t 16.7731 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 280 -a 0 -x {0.0.3.0 1.1.3.0 149 ------- null} h -t 16.7731 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 280 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.7747 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {0.0.3.0 1.1.3.0 150 ------- null} + -t 16.7747 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {0.0.3.0 1.1.3.0 150 ------- null} - -t 16.7747 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {0.0.3.0 1.1.3.0 150 ------- null} h -t 16.7747 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.8259 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 262 -a 0 -x {0.0.3.0 1.1.3.0 131 ------- null} + -t 16.8259 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 262 -a 0 -x {0.0.3.0 1.1.3.0 131 ------- null} - -t 16.8259 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 262 -a 0 -x {0.0.3.0 1.1.3.0 131 ------- null} h -t 16.8259 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 262 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.8275 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {0.0.3.0 1.1.3.0 132 ------- null} + -t 16.8275 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {0.0.3.0 1.1.3.0 132 ------- null} - -t 16.8275 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {0.0.3.0 1.1.3.0 132 ------- null} h -t 16.8275 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.8291 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 264 -a 0 -x {0.0.3.0 1.1.3.0 133 ------- null} + -t 16.8291 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 264 -a 0 -x {0.0.3.0 1.1.3.0 133 ------- null} - -t 16.8291 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 264 -a 0 -x {0.0.3.0 1.1.3.0 133 ------- null} h -t 16.8291 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 264 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.8307 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {0.0.3.0 1.1.3.0 134 ------- null} + -t 16.8307 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {0.0.3.0 1.1.3.0 134 ------- null} - -t 16.8307 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {0.0.3.0 1.1.3.0 134 ------- null} h -t 16.8307 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.8323 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 266 -a 0 -x {0.0.3.0 1.1.3.0 135 ------- null} + -t 16.8323 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 266 -a 0 -x {0.0.3.0 1.1.3.0 135 ------- null} - -t 16.8323 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 266 -a 0 -x {0.0.3.0 1.1.3.0 135 ------- null} h -t 16.8323 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 266 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.8339 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {0.0.3.0 1.1.3.0 136 ------- null} + -t 16.8339 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {0.0.3.0 1.1.3.0 136 ------- null} - -t 16.8339 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {0.0.3.0 1.1.3.0 136 ------- null} h -t 16.8339 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.8355 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 268 -a 0 -x {0.0.3.0 1.1.3.0 137 ------- null} + -t 16.8355 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 268 -a 0 -x {0.0.3.0 1.1.3.0 137 ------- null} - -t 16.8355 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 268 -a 0 -x {0.0.3.0 1.1.3.0 137 ------- null} h -t 16.8355 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 268 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.8371 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {0.0.3.0 1.1.3.0 138 ------- null} + -t 16.8371 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {0.0.3.0 1.1.3.0 138 ------- null} - -t 16.8371 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {0.0.3.0 1.1.3.0 138 ------- null} h -t 16.8371 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.8387 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 270 -a 0 -x {0.0.3.0 1.1.3.0 139 ------- null} + -t 16.8387 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 270 -a 0 -x {0.0.3.0 1.1.3.0 139 ------- null} - -t 16.8387 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 270 -a 0 -x {0.0.3.0 1.1.3.0 139 ------- null} h -t 16.8387 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 270 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.8403 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {0.0.3.0 1.1.3.0 140 ------- null} + -t 16.8403 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {0.0.3.0 1.1.3.0 140 ------- null} - -t 16.8403 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {0.0.3.0 1.1.3.0 140 ------- null} h -t 16.8403 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.8419 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {0.0.3.0 1.1.3.0 141 ------- null} + -t 16.8419 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {0.0.3.0 1.1.3.0 141 ------- null} - -t 16.8419 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {0.0.3.0 1.1.3.0 141 ------- null} h -t 16.8419 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.8435 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {0.0.3.0 1.1.3.0 142 ------- null} + -t 16.8435 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {0.0.3.0 1.1.3.0 142 ------- null} - -t 16.8435 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {0.0.3.0 1.1.3.0 142 ------- null} h -t 16.8435 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.8451 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {0.0.3.0 1.1.3.0 143 ------- null} + -t 16.8451 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {0.0.3.0 1.1.3.0 143 ------- null} - -t 16.8451 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {0.0.3.0 1.1.3.0 143 ------- null} h -t 16.8451 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.8467 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {0.0.3.0 1.1.3.0 144 ------- null} + -t 16.8467 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {0.0.3.0 1.1.3.0 144 ------- null} - -t 16.8467 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {0.0.3.0 1.1.3.0 144 ------- null} h -t 16.8467 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.8483 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 276 -a 0 -x {0.0.3.0 1.1.3.0 145 ------- null} + -t 16.8483 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 276 -a 0 -x {0.0.3.0 1.1.3.0 145 ------- null} - -t 16.8483 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 276 -a 0 -x {0.0.3.0 1.1.3.0 145 ------- null} h -t 16.8483 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 276 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.8499 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {0.0.3.0 1.1.3.0 146 ------- null} + -t 16.8499 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {0.0.3.0 1.1.3.0 146 ------- null} - -t 16.8499 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {0.0.3.0 1.1.3.0 146 ------- null} h -t 16.8499 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.8515 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 278 -a 0 -x {0.0.3.0 1.1.3.0 147 ------- null} + -t 16.8515 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 278 -a 0 -x {0.0.3.0 1.1.3.0 147 ------- null} - -t 16.8515 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 278 -a 0 -x {0.0.3.0 1.1.3.0 147 ------- null} h -t 16.8515 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 278 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.8531 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {0.0.3.0 1.1.3.0 148 ------- null} + -t 16.8531 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {0.0.3.0 1.1.3.0 148 ------- null} - -t 16.8531 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {0.0.3.0 1.1.3.0 148 ------- null} h -t 16.8531 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.8547 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 280 -a 0 -x {0.0.3.0 1.1.3.0 149 ------- null} + -t 16.8547 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 280 -a 0 -x {0.0.3.0 1.1.3.0 149 ------- null} - -t 16.8547 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 280 -a 0 -x {0.0.3.0 1.1.3.0 149 ------- null} h -t 16.8547 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 280 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.8563 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {0.0.3.0 1.1.3.0 150 ------- null} + -t 16.8563 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {0.0.3.0 1.1.3.0 150 ------- null} - -t 16.8563 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {0.0.3.0 1.1.3.0 150 ------- null} h -t 16.8563 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 16.8875 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 262 -a 0 -x {0.0.3.0 1.1.3.0 131 ------- null} + -t 16.8875 -s 21 -d 28 -p ack -e 40 -c 0 -i 282 -a 1 -x {1.1.3.0 0.0.3.0 131 ------- null} - -t 16.8875 -s 21 -d 28 -p ack -e 40 -c 0 -i 282 -a 1 -x {1.1.3.0 0.0.3.0 131 ------- null} h -t 16.8875 -s 21 -d 28 -p ack -e 40 -c 0 -i 282 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 16.8891 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {0.0.3.0 1.1.3.0 132 ------- null} + -t 16.8891 -s 21 -d 28 -p ack -e 40 -c 0 -i 283 -a 1 -x {1.1.3.0 0.0.3.0 132 ------- null} - -t 16.8891 -s 21 -d 28 -p ack -e 40 -c 0 -i 283 -a 1 -x {1.1.3.0 0.0.3.0 132 ------- null} h -t 16.8891 -s 21 -d 28 -p ack -e 40 -c 0 -i 283 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 16.8907 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 264 -a 0 -x {0.0.3.0 1.1.3.0 133 ------- null} + -t 16.8907 -s 21 -d 28 -p ack -e 40 -c 0 -i 284 -a 1 -x {1.1.3.0 0.0.3.0 133 ------- null} - -t 16.8907 -s 21 -d 28 -p ack -e 40 -c 0 -i 284 -a 1 -x {1.1.3.0 0.0.3.0 133 ------- null} h -t 16.8907 -s 21 -d 28 -p ack -e 40 -c 0 -i 284 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 16.8923 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {0.0.3.0 1.1.3.0 134 ------- null} + -t 16.8923 -s 21 -d 28 -p ack -e 40 -c 0 -i 285 -a 1 -x {1.1.3.0 0.0.3.0 134 ------- null} - -t 16.8923 -s 21 -d 28 -p ack -e 40 -c 0 -i 285 -a 1 -x {1.1.3.0 0.0.3.0 134 ------- null} h -t 16.8923 -s 21 -d 28 -p ack -e 40 -c 0 -i 285 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 16.8939 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 266 -a 0 -x {0.0.3.0 1.1.3.0 135 ------- null} + -t 16.8939 -s 21 -d 28 -p ack -e 40 -c 0 -i 286 -a 1 -x {1.1.3.0 0.0.3.0 135 ------- null} - -t 16.8939 -s 21 -d 28 -p ack -e 40 -c 0 -i 286 -a 1 -x {1.1.3.0 0.0.3.0 135 ------- null} h -t 16.8939 -s 21 -d 28 -p ack -e 40 -c 0 -i 286 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 16.8955 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {0.0.3.0 1.1.3.0 136 ------- null} + -t 16.8955 -s 21 -d 28 -p ack -e 40 -c 0 -i 287 -a 1 -x {1.1.3.0 0.0.3.0 136 ------- null} - -t 16.8955 -s 21 -d 28 -p ack -e 40 -c 0 -i 287 -a 1 -x {1.1.3.0 0.0.3.0 136 ------- null} h -t 16.8955 -s 21 -d 28 -p ack -e 40 -c 0 -i 287 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 16.8971 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 268 -a 0 -x {0.0.3.0 1.1.3.0 137 ------- null} + -t 16.8971 -s 21 -d 28 -p ack -e 40 -c 0 -i 288 -a 1 -x {1.1.3.0 0.0.3.0 137 ------- null} - -t 16.8971 -s 21 -d 28 -p ack -e 40 -c 0 -i 288 -a 1 -x {1.1.3.0 0.0.3.0 137 ------- null} h -t 16.8971 -s 21 -d 28 -p ack -e 40 -c 0 -i 288 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 16.8987 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {0.0.3.0 1.1.3.0 138 ------- null} + -t 16.8987 -s 21 -d 28 -p ack -e 40 -c 0 -i 289 -a 1 -x {1.1.3.0 0.0.3.0 138 ------- null} - -t 16.8987 -s 21 -d 28 -p ack -e 40 -c 0 -i 289 -a 1 -x {1.1.3.0 0.0.3.0 138 ------- null} h -t 16.8987 -s 21 -d 28 -p ack -e 40 -c 0 -i 289 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 16.9003 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 270 -a 0 -x {0.0.3.0 1.1.3.0 139 ------- null} + -t 16.9003 -s 21 -d 28 -p ack -e 40 -c 0 -i 290 -a 1 -x {1.1.3.0 0.0.3.0 139 ------- null} - -t 16.9003 -s 21 -d 28 -p ack -e 40 -c 0 -i 290 -a 1 -x {1.1.3.0 0.0.3.0 139 ------- null} h -t 16.9003 -s 21 -d 28 -p ack -e 40 -c 0 -i 290 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 16.9019 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {0.0.3.0 1.1.3.0 140 ------- null} + -t 16.9019 -s 21 -d 28 -p ack -e 40 -c 0 -i 291 -a 1 -x {1.1.3.0 0.0.3.0 140 ------- null} - -t 16.9019 -s 21 -d 28 -p ack -e 40 -c 0 -i 291 -a 1 -x {1.1.3.0 0.0.3.0 140 ------- null} h -t 16.9019 -s 21 -d 28 -p ack -e 40 -c 0 -i 291 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 16.9035 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 272 -a 0 -x {0.0.3.0 1.1.3.0 141 ------- null} + -t 16.9035 -s 21 -d 28 -p ack -e 40 -c 0 -i 292 -a 1 -x {1.1.3.0 0.0.3.0 141 ------- null} - -t 16.9035 -s 21 -d 28 -p ack -e 40 -c 0 -i 292 -a 1 -x {1.1.3.0 0.0.3.0 141 ------- null} h -t 16.9035 -s 21 -d 28 -p ack -e 40 -c 0 -i 292 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 16.9051 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {0.0.3.0 1.1.3.0 142 ------- null} + -t 16.9051 -s 21 -d 28 -p ack -e 40 -c 0 -i 293 -a 1 -x {1.1.3.0 0.0.3.0 142 ------- null} - -t 16.9051 -s 21 -d 28 -p ack -e 40 -c 0 -i 293 -a 1 -x {1.1.3.0 0.0.3.0 142 ------- null} h -t 16.9051 -s 21 -d 28 -p ack -e 40 -c 0 -i 293 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 16.9067 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 274 -a 0 -x {0.0.3.0 1.1.3.0 143 ------- null} + -t 16.9067 -s 21 -d 28 -p ack -e 40 -c 0 -i 294 -a 1 -x {1.1.3.0 0.0.3.0 143 ------- null} - -t 16.9067 -s 21 -d 28 -p ack -e 40 -c 0 -i 294 -a 1 -x {1.1.3.0 0.0.3.0 143 ------- null} h -t 16.9067 -s 21 -d 28 -p ack -e 40 -c 0 -i 294 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 16.9083 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {0.0.3.0 1.1.3.0 144 ------- null} + -t 16.9083 -s 21 -d 28 -p ack -e 40 -c 0 -i 295 -a 1 -x {1.1.3.0 0.0.3.0 144 ------- null} - -t 16.9083 -s 21 -d 28 -p ack -e 40 -c 0 -i 295 -a 1 -x {1.1.3.0 0.0.3.0 144 ------- null} h -t 16.9083 -s 21 -d 28 -p ack -e 40 -c 0 -i 295 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 16.9099 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 276 -a 0 -x {0.0.3.0 1.1.3.0 145 ------- null} + -t 16.9099 -s 21 -d 28 -p ack -e 40 -c 0 -i 296 -a 1 -x {1.1.3.0 0.0.3.0 145 ------- null} - -t 16.9099 -s 21 -d 28 -p ack -e 40 -c 0 -i 296 -a 1 -x {1.1.3.0 0.0.3.0 145 ------- null} h -t 16.9099 -s 21 -d 28 -p ack -e 40 -c 0 -i 296 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 16.9115 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {0.0.3.0 1.1.3.0 146 ------- null} + -t 16.9115 -s 21 -d 28 -p ack -e 40 -c 0 -i 297 -a 1 -x {1.1.3.0 0.0.3.0 146 ------- null} - -t 16.9115 -s 21 -d 28 -p ack -e 40 -c 0 -i 297 -a 1 -x {1.1.3.0 0.0.3.0 146 ------- null} h -t 16.9115 -s 21 -d 28 -p ack -e 40 -c 0 -i 297 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 16.9131 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 278 -a 0 -x {0.0.3.0 1.1.3.0 147 ------- null} + -t 16.9131 -s 21 -d 28 -p ack -e 40 -c 0 -i 298 -a 1 -x {1.1.3.0 0.0.3.0 147 ------- null} - -t 16.9131 -s 21 -d 28 -p ack -e 40 -c 0 -i 298 -a 1 -x {1.1.3.0 0.0.3.0 147 ------- null} h -t 16.9131 -s 21 -d 28 -p ack -e 40 -c 0 -i 298 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 16.9147 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {0.0.3.0 1.1.3.0 148 ------- null} + -t 16.9147 -s 21 -d 28 -p ack -e 40 -c 0 -i 299 -a 1 -x {1.1.3.0 0.0.3.0 148 ------- null} - -t 16.9147 -s 21 -d 28 -p ack -e 40 -c 0 -i 299 -a 1 -x {1.1.3.0 0.0.3.0 148 ------- null} h -t 16.9147 -s 21 -d 28 -p ack -e 40 -c 0 -i 299 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 16.9163 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 280 -a 0 -x {0.0.3.0 1.1.3.0 149 ------- null} + -t 16.9163 -s 21 -d 28 -p ack -e 40 -c 0 -i 300 -a 1 -x {1.1.3.0 0.0.3.0 149 ------- null} - -t 16.9163 -s 21 -d 28 -p ack -e 40 -c 0 -i 300 -a 1 -x {1.1.3.0 0.0.3.0 149 ------- null} h -t 16.9163 -s 21 -d 28 -p ack -e 40 -c 0 -i 300 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 16.9179 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {0.0.3.0 1.1.3.0 150 ------- null} + -t 16.9179 -s 21 -d 28 -p ack -e 40 -c 0 -i 301 -a 1 -x {1.1.3.0 0.0.3.0 150 ------- null} - -t 16.9179 -s 21 -d 28 -p ack -e 40 -c 0 -i 301 -a 1 -x {1.1.3.0 0.0.3.0 150 ------- null} h -t 16.9179 -s 21 -d 28 -p ack -e 40 -c 0 -i 301 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 17.2376 -s 21 -d 28 -p ack -e 40 -c 0 -i 282 -a 1 -x {1.1.3.0 0.0.3.0 131 ------- null} + -t 17.2376 -s 28 -d 1 -p ack -e 40 -c 0 -i 282 -a 1 -x {1.1.3.0 0.0.3.0 131 ------- null} - -t 17.2376 -s 28 -d 1 -p ack -e 40 -c 0 -i 282 -a 1 -x {1.1.3.0 0.0.3.0 131 ------- null} h -t 17.2376 -s 28 -d 1 -p ack -e 40 -c 0 -i 282 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 17.2392 -s 21 -d 28 -p ack -e 40 -c 0 -i 283 -a 1 -x {1.1.3.0 0.0.3.0 132 ------- null} + -t 17.2392 -s 28 -d 1 -p ack -e 40 -c 0 -i 283 -a 1 -x {1.1.3.0 0.0.3.0 132 ------- null} - -t 17.2392 -s 28 -d 1 -p ack -e 40 -c 0 -i 283 -a 1 -x {1.1.3.0 0.0.3.0 132 ------- null} h -t 17.2392 -s 28 -d 1 -p ack -e 40 -c 0 -i 283 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 17.2408 -s 21 -d 28 -p ack -e 40 -c 0 -i 284 -a 1 -x {1.1.3.0 0.0.3.0 133 ------- null} + -t 17.2408 -s 28 -d 1 -p ack -e 40 -c 0 -i 284 -a 1 -x {1.1.3.0 0.0.3.0 133 ------- null} - -t 17.2408 -s 28 -d 1 -p ack -e 40 -c 0 -i 284 -a 1 -x {1.1.3.0 0.0.3.0 133 ------- null} h -t 17.2408 -s 28 -d 1 -p ack -e 40 -c 0 -i 284 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 17.2424 -s 21 -d 28 -p ack -e 40 -c 0 -i 285 -a 1 -x {1.1.3.0 0.0.3.0 134 ------- null} + -t 17.2424 -s 28 -d 1 -p ack -e 40 -c 0 -i 285 -a 1 -x {1.1.3.0 0.0.3.0 134 ------- null} - -t 17.2424 -s 28 -d 1 -p ack -e 40 -c 0 -i 285 -a 1 -x {1.1.3.0 0.0.3.0 134 ------- null} h -t 17.2424 -s 28 -d 1 -p ack -e 40 -c 0 -i 285 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 17.244 -s 21 -d 28 -p ack -e 40 -c 0 -i 286 -a 1 -x {1.1.3.0 0.0.3.0 135 ------- null} + -t 17.244 -s 28 -d 1 -p ack -e 40 -c 0 -i 286 -a 1 -x {1.1.3.0 0.0.3.0 135 ------- null} - -t 17.244 -s 28 -d 1 -p ack -e 40 -c 0 -i 286 -a 1 -x {1.1.3.0 0.0.3.0 135 ------- null} h -t 17.244 -s 28 -d 1 -p ack -e 40 -c 0 -i 286 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 17.2456 -s 21 -d 28 -p ack -e 40 -c 0 -i 287 -a 1 -x {1.1.3.0 0.0.3.0 136 ------- null} + -t 17.2456 -s 28 -d 1 -p ack -e 40 -c 0 -i 287 -a 1 -x {1.1.3.0 0.0.3.0 136 ------- null} - -t 17.2456 -s 28 -d 1 -p ack -e 40 -c 0 -i 287 -a 1 -x {1.1.3.0 0.0.3.0 136 ------- null} h -t 17.2456 -s 28 -d 1 -p ack -e 40 -c 0 -i 287 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 17.2472 -s 21 -d 28 -p ack -e 40 -c 0 -i 288 -a 1 -x {1.1.3.0 0.0.3.0 137 ------- null} + -t 17.2472 -s 28 -d 1 -p ack -e 40 -c 0 -i 288 -a 1 -x {1.1.3.0 0.0.3.0 137 ------- null} - -t 17.2472 -s 28 -d 1 -p ack -e 40 -c 0 -i 288 -a 1 -x {1.1.3.0 0.0.3.0 137 ------- null} h -t 17.2472 -s 28 -d 1 -p ack -e 40 -c 0 -i 288 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 17.2488 -s 21 -d 28 -p ack -e 40 -c 0 -i 289 -a 1 -x {1.1.3.0 0.0.3.0 138 ------- null} + -t 17.2488 -s 28 -d 1 -p ack -e 40 -c 0 -i 289 -a 1 -x {1.1.3.0 0.0.3.0 138 ------- null} - -t 17.2488 -s 28 -d 1 -p ack -e 40 -c 0 -i 289 -a 1 -x {1.1.3.0 0.0.3.0 138 ------- null} h -t 17.2488 -s 28 -d 1 -p ack -e 40 -c 0 -i 289 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 17.2504 -s 21 -d 28 -p ack -e 40 -c 0 -i 290 -a 1 -x {1.1.3.0 0.0.3.0 139 ------- null} + -t 17.2504 -s 28 -d 1 -p ack -e 40 -c 0 -i 290 -a 1 -x {1.1.3.0 0.0.3.0 139 ------- null} - -t 17.2504 -s 28 -d 1 -p ack -e 40 -c 0 -i 290 -a 1 -x {1.1.3.0 0.0.3.0 139 ------- null} h -t 17.2504 -s 28 -d 1 -p ack -e 40 -c 0 -i 290 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 17.252 -s 21 -d 28 -p ack -e 40 -c 0 -i 291 -a 1 -x {1.1.3.0 0.0.3.0 140 ------- null} + -t 17.252 -s 28 -d 1 -p ack -e 40 -c 0 -i 291 -a 1 -x {1.1.3.0 0.0.3.0 140 ------- null} - -t 17.252 -s 28 -d 1 -p ack -e 40 -c 0 -i 291 -a 1 -x {1.1.3.0 0.0.3.0 140 ------- null} h -t 17.252 -s 28 -d 1 -p ack -e 40 -c 0 -i 291 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 17.2536 -s 21 -d 28 -p ack -e 40 -c 0 -i 292 -a 1 -x {1.1.3.0 0.0.3.0 141 ------- null} + -t 17.2536 -s 28 -d 1 -p ack -e 40 -c 0 -i 292 -a 1 -x {1.1.3.0 0.0.3.0 141 ------- null} - -t 17.2536 -s 28 -d 1 -p ack -e 40 -c 0 -i 292 -a 1 -x {1.1.3.0 0.0.3.0 141 ------- null} h -t 17.2536 -s 28 -d 1 -p ack -e 40 -c 0 -i 292 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 17.2552 -s 21 -d 28 -p ack -e 40 -c 0 -i 293 -a 1 -x {1.1.3.0 0.0.3.0 142 ------- null} + -t 17.2552 -s 28 -d 1 -p ack -e 40 -c 0 -i 293 -a 1 -x {1.1.3.0 0.0.3.0 142 ------- null} - -t 17.2552 -s 28 -d 1 -p ack -e 40 -c 0 -i 293 -a 1 -x {1.1.3.0 0.0.3.0 142 ------- null} h -t 17.2552 -s 28 -d 1 -p ack -e 40 -c 0 -i 293 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 17.2568 -s 21 -d 28 -p ack -e 40 -c 0 -i 294 -a 1 -x {1.1.3.0 0.0.3.0 143 ------- null} + -t 17.2568 -s 28 -d 1 -p ack -e 40 -c 0 -i 294 -a 1 -x {1.1.3.0 0.0.3.0 143 ------- null} - -t 17.2568 -s 28 -d 1 -p ack -e 40 -c 0 -i 294 -a 1 -x {1.1.3.0 0.0.3.0 143 ------- null} h -t 17.2568 -s 28 -d 1 -p ack -e 40 -c 0 -i 294 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 17.2584 -s 21 -d 28 -p ack -e 40 -c 0 -i 295 -a 1 -x {1.1.3.0 0.0.3.0 144 ------- null} + -t 17.2584 -s 28 -d 1 -p ack -e 40 -c 0 -i 295 -a 1 -x {1.1.3.0 0.0.3.0 144 ------- null} - -t 17.2584 -s 28 -d 1 -p ack -e 40 -c 0 -i 295 -a 1 -x {1.1.3.0 0.0.3.0 144 ------- null} h -t 17.2584 -s 28 -d 1 -p ack -e 40 -c 0 -i 295 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 17.26 -s 21 -d 28 -p ack -e 40 -c 0 -i 296 -a 1 -x {1.1.3.0 0.0.3.0 145 ------- null} + -t 17.26 -s 28 -d 1 -p ack -e 40 -c 0 -i 296 -a 1 -x {1.1.3.0 0.0.3.0 145 ------- null} - -t 17.26 -s 28 -d 1 -p ack -e 40 -c 0 -i 296 -a 1 -x {1.1.3.0 0.0.3.0 145 ------- null} h -t 17.26 -s 28 -d 1 -p ack -e 40 -c 0 -i 296 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 17.2616 -s 21 -d 28 -p ack -e 40 -c 0 -i 297 -a 1 -x {1.1.3.0 0.0.3.0 146 ------- null} + -t 17.2616 -s 28 -d 1 -p ack -e 40 -c 0 -i 297 -a 1 -x {1.1.3.0 0.0.3.0 146 ------- null} - -t 17.2616 -s 28 -d 1 -p ack -e 40 -c 0 -i 297 -a 1 -x {1.1.3.0 0.0.3.0 146 ------- null} h -t 17.2616 -s 28 -d 1 -p ack -e 40 -c 0 -i 297 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 17.2632 -s 21 -d 28 -p ack -e 40 -c 0 -i 298 -a 1 -x {1.1.3.0 0.0.3.0 147 ------- null} + -t 17.2632 -s 28 -d 1 -p ack -e 40 -c 0 -i 298 -a 1 -x {1.1.3.0 0.0.3.0 147 ------- null} - -t 17.2632 -s 28 -d 1 -p ack -e 40 -c 0 -i 298 -a 1 -x {1.1.3.0 0.0.3.0 147 ------- null} h -t 17.2632 -s 28 -d 1 -p ack -e 40 -c 0 -i 298 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 17.2648 -s 21 -d 28 -p ack -e 40 -c 0 -i 299 -a 1 -x {1.1.3.0 0.0.3.0 148 ------- null} + -t 17.2648 -s 28 -d 1 -p ack -e 40 -c 0 -i 299 -a 1 -x {1.1.3.0 0.0.3.0 148 ------- null} - -t 17.2648 -s 28 -d 1 -p ack -e 40 -c 0 -i 299 -a 1 -x {1.1.3.0 0.0.3.0 148 ------- null} h -t 17.2648 -s 28 -d 1 -p ack -e 40 -c 0 -i 299 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 17.2664 -s 21 -d 28 -p ack -e 40 -c 0 -i 300 -a 1 -x {1.1.3.0 0.0.3.0 149 ------- null} + -t 17.2664 -s 28 -d 1 -p ack -e 40 -c 0 -i 300 -a 1 -x {1.1.3.0 0.0.3.0 149 ------- null} - -t 17.2664 -s 28 -d 1 -p ack -e 40 -c 0 -i 300 -a 1 -x {1.1.3.0 0.0.3.0 149 ------- null} h -t 17.2664 -s 28 -d 1 -p ack -e 40 -c 0 -i 300 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 17.268 -s 21 -d 28 -p ack -e 40 -c 0 -i 301 -a 1 -x {1.1.3.0 0.0.3.0 150 ------- null} + -t 17.268 -s 28 -d 1 -p ack -e 40 -c 0 -i 301 -a 1 -x {1.1.3.0 0.0.3.0 150 ------- null} - -t 17.268 -s 28 -d 1 -p ack -e 40 -c 0 -i 301 -a 1 -x {1.1.3.0 0.0.3.0 150 ------- null} h -t 17.268 -s 28 -d 1 -p ack -e 40 -c 0 -i 301 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 17.5376 -s 28 -d 1 -p ack -e 40 -c 0 -i 282 -a 1 -x {1.1.3.0 0.0.3.0 131 ------- null} + -t 17.5376 -s 1 -d 3 -p ack -e 40 -c 0 -i 282 -a 1 -x {1.1.3.0 0.0.3.0 131 ------- null} - -t 17.5376 -s 1 -d 3 -p ack -e 40 -c 0 -i 282 -a 1 -x {1.1.3.0 0.0.3.0 131 ------- null} h -t 17.5376 -s 1 -d 3 -p ack -e 40 -c 0 -i 282 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 17.5392 -s 28 -d 1 -p ack -e 40 -c 0 -i 283 -a 1 -x {1.1.3.0 0.0.3.0 132 ------- null} + -t 17.5392 -s 1 -d 3 -p ack -e 40 -c 0 -i 283 -a 1 -x {1.1.3.0 0.0.3.0 132 ------- null} - -t 17.5392 -s 1 -d 3 -p ack -e 40 -c 0 -i 283 -a 1 -x {1.1.3.0 0.0.3.0 132 ------- null} h -t 17.5392 -s 1 -d 3 -p ack -e 40 -c 0 -i 283 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 17.5408 -s 28 -d 1 -p ack -e 40 -c 0 -i 284 -a 1 -x {1.1.3.0 0.0.3.0 133 ------- null} + -t 17.5408 -s 1 -d 3 -p ack -e 40 -c 0 -i 284 -a 1 -x {1.1.3.0 0.0.3.0 133 ------- null} - -t 17.5408 -s 1 -d 3 -p ack -e 40 -c 0 -i 284 -a 1 -x {1.1.3.0 0.0.3.0 133 ------- null} h -t 17.5408 -s 1 -d 3 -p ack -e 40 -c 0 -i 284 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 17.5424 -s 28 -d 1 -p ack -e 40 -c 0 -i 285 -a 1 -x {1.1.3.0 0.0.3.0 134 ------- null} + -t 17.5424 -s 1 -d 3 -p ack -e 40 -c 0 -i 285 -a 1 -x {1.1.3.0 0.0.3.0 134 ------- null} - -t 17.5424 -s 1 -d 3 -p ack -e 40 -c 0 -i 285 -a 1 -x {1.1.3.0 0.0.3.0 134 ------- null} h -t 17.5424 -s 1 -d 3 -p ack -e 40 -c 0 -i 285 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 17.544 -s 28 -d 1 -p ack -e 40 -c 0 -i 286 -a 1 -x {1.1.3.0 0.0.3.0 135 ------- null} + -t 17.544 -s 1 -d 3 -p ack -e 40 -c 0 -i 286 -a 1 -x {1.1.3.0 0.0.3.0 135 ------- null} - -t 17.544 -s 1 -d 3 -p ack -e 40 -c 0 -i 286 -a 1 -x {1.1.3.0 0.0.3.0 135 ------- null} h -t 17.544 -s 1 -d 3 -p ack -e 40 -c 0 -i 286 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 17.5456 -s 28 -d 1 -p ack -e 40 -c 0 -i 287 -a 1 -x {1.1.3.0 0.0.3.0 136 ------- null} + -t 17.5456 -s 1 -d 3 -p ack -e 40 -c 0 -i 287 -a 1 -x {1.1.3.0 0.0.3.0 136 ------- null} - -t 17.5456 -s 1 -d 3 -p ack -e 40 -c 0 -i 287 -a 1 -x {1.1.3.0 0.0.3.0 136 ------- null} h -t 17.5456 -s 1 -d 3 -p ack -e 40 -c 0 -i 287 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 17.5472 -s 28 -d 1 -p ack -e 40 -c 0 -i 288 -a 1 -x {1.1.3.0 0.0.3.0 137 ------- null} + -t 17.5472 -s 1 -d 3 -p ack -e 40 -c 0 -i 288 -a 1 -x {1.1.3.0 0.0.3.0 137 ------- null} - -t 17.5472 -s 1 -d 3 -p ack -e 40 -c 0 -i 288 -a 1 -x {1.1.3.0 0.0.3.0 137 ------- null} h -t 17.5472 -s 1 -d 3 -p ack -e 40 -c 0 -i 288 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 17.5488 -s 28 -d 1 -p ack -e 40 -c 0 -i 289 -a 1 -x {1.1.3.0 0.0.3.0 138 ------- null} + -t 17.5488 -s 1 -d 3 -p ack -e 40 -c 0 -i 289 -a 1 -x {1.1.3.0 0.0.3.0 138 ------- null} - -t 17.5488 -s 1 -d 3 -p ack -e 40 -c 0 -i 289 -a 1 -x {1.1.3.0 0.0.3.0 138 ------- null} h -t 17.5488 -s 1 -d 3 -p ack -e 40 -c 0 -i 289 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 17.5504 -s 28 -d 1 -p ack -e 40 -c 0 -i 290 -a 1 -x {1.1.3.0 0.0.3.0 139 ------- null} + -t 17.5504 -s 1 -d 3 -p ack -e 40 -c 0 -i 290 -a 1 -x {1.1.3.0 0.0.3.0 139 ------- null} - -t 17.5504 -s 1 -d 3 -p ack -e 40 -c 0 -i 290 -a 1 -x {1.1.3.0 0.0.3.0 139 ------- null} h -t 17.5504 -s 1 -d 3 -p ack -e 40 -c 0 -i 290 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 17.552 -s 28 -d 1 -p ack -e 40 -c 0 -i 291 -a 1 -x {1.1.3.0 0.0.3.0 140 ------- null} + -t 17.552 -s 1 -d 3 -p ack -e 40 -c 0 -i 291 -a 1 -x {1.1.3.0 0.0.3.0 140 ------- null} - -t 17.552 -s 1 -d 3 -p ack -e 40 -c 0 -i 291 -a 1 -x {1.1.3.0 0.0.3.0 140 ------- null} h -t 17.552 -s 1 -d 3 -p ack -e 40 -c 0 -i 291 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 17.5536 -s 28 -d 1 -p ack -e 40 -c 0 -i 292 -a 1 -x {1.1.3.0 0.0.3.0 141 ------- null} + -t 17.5536 -s 1 -d 3 -p ack -e 40 -c 0 -i 292 -a 1 -x {1.1.3.0 0.0.3.0 141 ------- null} - -t 17.5536 -s 1 -d 3 -p ack -e 40 -c 0 -i 292 -a 1 -x {1.1.3.0 0.0.3.0 141 ------- null} h -t 17.5536 -s 1 -d 3 -p ack -e 40 -c 0 -i 292 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 17.5552 -s 28 -d 1 -p ack -e 40 -c 0 -i 293 -a 1 -x {1.1.3.0 0.0.3.0 142 ------- null} + -t 17.5552 -s 1 -d 3 -p ack -e 40 -c 0 -i 293 -a 1 -x {1.1.3.0 0.0.3.0 142 ------- null} - -t 17.5552 -s 1 -d 3 -p ack -e 40 -c 0 -i 293 -a 1 -x {1.1.3.0 0.0.3.0 142 ------- null} h -t 17.5552 -s 1 -d 3 -p ack -e 40 -c 0 -i 293 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 17.5568 -s 28 -d 1 -p ack -e 40 -c 0 -i 294 -a 1 -x {1.1.3.0 0.0.3.0 143 ------- null} + -t 17.5568 -s 1 -d 3 -p ack -e 40 -c 0 -i 294 -a 1 -x {1.1.3.0 0.0.3.0 143 ------- null} - -t 17.5568 -s 1 -d 3 -p ack -e 40 -c 0 -i 294 -a 1 -x {1.1.3.0 0.0.3.0 143 ------- null} h -t 17.5568 -s 1 -d 3 -p ack -e 40 -c 0 -i 294 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 17.5584 -s 28 -d 1 -p ack -e 40 -c 0 -i 295 -a 1 -x {1.1.3.0 0.0.3.0 144 ------- null} + -t 17.5584 -s 1 -d 3 -p ack -e 40 -c 0 -i 295 -a 1 -x {1.1.3.0 0.0.3.0 144 ------- null} - -t 17.5584 -s 1 -d 3 -p ack -e 40 -c 0 -i 295 -a 1 -x {1.1.3.0 0.0.3.0 144 ------- null} h -t 17.5584 -s 1 -d 3 -p ack -e 40 -c 0 -i 295 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 17.56 -s 28 -d 1 -p ack -e 40 -c 0 -i 296 -a 1 -x {1.1.3.0 0.0.3.0 145 ------- null} + -t 17.56 -s 1 -d 3 -p ack -e 40 -c 0 -i 296 -a 1 -x {1.1.3.0 0.0.3.0 145 ------- null} - -t 17.56 -s 1 -d 3 -p ack -e 40 -c 0 -i 296 -a 1 -x {1.1.3.0 0.0.3.0 145 ------- null} h -t 17.56 -s 1 -d 3 -p ack -e 40 -c 0 -i 296 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 17.5616 -s 28 -d 1 -p ack -e 40 -c 0 -i 297 -a 1 -x {1.1.3.0 0.0.3.0 146 ------- null} + -t 17.5616 -s 1 -d 3 -p ack -e 40 -c 0 -i 297 -a 1 -x {1.1.3.0 0.0.3.0 146 ------- null} - -t 17.5616 -s 1 -d 3 -p ack -e 40 -c 0 -i 297 -a 1 -x {1.1.3.0 0.0.3.0 146 ------- null} h -t 17.5616 -s 1 -d 3 -p ack -e 40 -c 0 -i 297 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 17.5632 -s 28 -d 1 -p ack -e 40 -c 0 -i 298 -a 1 -x {1.1.3.0 0.0.3.0 147 ------- null} + -t 17.5632 -s 1 -d 3 -p ack -e 40 -c 0 -i 298 -a 1 -x {1.1.3.0 0.0.3.0 147 ------- null} - -t 17.5632 -s 1 -d 3 -p ack -e 40 -c 0 -i 298 -a 1 -x {1.1.3.0 0.0.3.0 147 ------- null} h -t 17.5632 -s 1 -d 3 -p ack -e 40 -c 0 -i 298 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 17.5648 -s 28 -d 1 -p ack -e 40 -c 0 -i 299 -a 1 -x {1.1.3.0 0.0.3.0 148 ------- null} + -t 17.5648 -s 1 -d 3 -p ack -e 40 -c 0 -i 299 -a 1 -x {1.1.3.0 0.0.3.0 148 ------- null} - -t 17.5648 -s 1 -d 3 -p ack -e 40 -c 0 -i 299 -a 1 -x {1.1.3.0 0.0.3.0 148 ------- null} h -t 17.5648 -s 1 -d 3 -p ack -e 40 -c 0 -i 299 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 17.5664 -s 28 -d 1 -p ack -e 40 -c 0 -i 300 -a 1 -x {1.1.3.0 0.0.3.0 149 ------- null} + -t 17.5664 -s 1 -d 3 -p ack -e 40 -c 0 -i 300 -a 1 -x {1.1.3.0 0.0.3.0 149 ------- null} - -t 17.5664 -s 1 -d 3 -p ack -e 40 -c 0 -i 300 -a 1 -x {1.1.3.0 0.0.3.0 149 ------- null} h -t 17.5664 -s 1 -d 3 -p ack -e 40 -c 0 -i 300 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 17.568 -s 28 -d 1 -p ack -e 40 -c 0 -i 301 -a 1 -x {1.1.3.0 0.0.3.0 150 ------- null} + -t 17.568 -s 1 -d 3 -p ack -e 40 -c 0 -i 301 -a 1 -x {1.1.3.0 0.0.3.0 150 ------- null} - -t 17.568 -s 1 -d 3 -p ack -e 40 -c 0 -i 301 -a 1 -x {1.1.3.0 0.0.3.0 150 ------- null} h -t 17.568 -s 1 -d 3 -p ack -e 40 -c 0 -i 301 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 17.6777 -s 1 -d 3 -p ack -e 40 -c 0 -i 282 -a 1 -x {1.1.3.0 0.0.3.0 131 ------- null} + -t 17.6777 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {0.0.3.0 1.1.3.0 151 ------- null} - -t 17.6777 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {0.0.3.0 1.1.3.0 151 ------- null} h -t 17.6777 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 17.6793 -s 1 -d 3 -p ack -e 40 -c 0 -i 283 -a 1 -x {1.1.3.0 0.0.3.0 132 ------- null} + -t 17.6793 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {0.0.3.0 1.1.3.0 152 ------- null} - -t 17.6793 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {0.0.3.0 1.1.3.0 152 ------- null} h -t 17.6793 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 17.6809 -s 1 -d 3 -p ack -e 40 -c 0 -i 284 -a 1 -x {1.1.3.0 0.0.3.0 133 ------- null} + -t 17.6809 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {0.0.3.0 1.1.3.0 153 ------- null} - -t 17.6809 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {0.0.3.0 1.1.3.0 153 ------- null} h -t 17.6809 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 17.6825 -s 1 -d 3 -p ack -e 40 -c 0 -i 285 -a 1 -x {1.1.3.0 0.0.3.0 134 ------- null} + -t 17.6825 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {0.0.3.0 1.1.3.0 154 ------- null} - -t 17.6825 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {0.0.3.0 1.1.3.0 154 ------- null} h -t 17.6825 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 17.6841 -s 1 -d 3 -p ack -e 40 -c 0 -i 286 -a 1 -x {1.1.3.0 0.0.3.0 135 ------- null} + -t 17.6841 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {0.0.3.0 1.1.3.0 155 ------- null} - -t 17.6841 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {0.0.3.0 1.1.3.0 155 ------- null} h -t 17.6841 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 17.6857 -s 1 -d 3 -p ack -e 40 -c 0 -i 287 -a 1 -x {1.1.3.0 0.0.3.0 136 ------- null} + -t 17.6857 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {0.0.3.0 1.1.3.0 156 ------- null} - -t 17.6857 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {0.0.3.0 1.1.3.0 156 ------- null} h -t 17.6857 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 17.6873 -s 1 -d 3 -p ack -e 40 -c 0 -i 288 -a 1 -x {1.1.3.0 0.0.3.0 137 ------- null} + -t 17.6873 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {0.0.3.0 1.1.3.0 157 ------- null} - -t 17.6873 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {0.0.3.0 1.1.3.0 157 ------- null} h -t 17.6873 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 17.6889 -s 1 -d 3 -p ack -e 40 -c 0 -i 289 -a 1 -x {1.1.3.0 0.0.3.0 138 ------- null} + -t 17.6889 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {0.0.3.0 1.1.3.0 158 ------- null} - -t 17.6889 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {0.0.3.0 1.1.3.0 158 ------- null} h -t 17.6889 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 17.6905 -s 1 -d 3 -p ack -e 40 -c 0 -i 290 -a 1 -x {1.1.3.0 0.0.3.0 139 ------- null} + -t 17.6905 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 310 -a 0 -x {0.0.3.0 1.1.3.0 159 ------- null} - -t 17.6905 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 310 -a 0 -x {0.0.3.0 1.1.3.0 159 ------- null} h -t 17.6905 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 310 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 17.6921 -s 1 -d 3 -p ack -e 40 -c 0 -i 291 -a 1 -x {1.1.3.0 0.0.3.0 140 ------- null} + -t 17.6921 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {0.0.3.0 1.1.3.0 160 ------- null} - -t 17.6921 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {0.0.3.0 1.1.3.0 160 ------- null} h -t 17.6921 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 17.6937 -s 1 -d 3 -p ack -e 40 -c 0 -i 292 -a 1 -x {1.1.3.0 0.0.3.0 141 ------- null} + -t 17.6937 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 312 -a 0 -x {0.0.3.0 1.1.3.0 161 ------- null} - -t 17.6937 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 312 -a 0 -x {0.0.3.0 1.1.3.0 161 ------- null} h -t 17.6937 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 312 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 17.6953 -s 1 -d 3 -p ack -e 40 -c 0 -i 293 -a 1 -x {1.1.3.0 0.0.3.0 142 ------- null} + -t 17.6953 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {0.0.3.0 1.1.3.0 162 ------- null} - -t 17.6953 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {0.0.3.0 1.1.3.0 162 ------- null} h -t 17.6953 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 17.6969 -s 1 -d 3 -p ack -e 40 -c 0 -i 294 -a 1 -x {1.1.3.0 0.0.3.0 143 ------- null} + -t 17.6969 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 314 -a 0 -x {0.0.3.0 1.1.3.0 163 ------- null} - -t 17.6969 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 314 -a 0 -x {0.0.3.0 1.1.3.0 163 ------- null} h -t 17.6969 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 314 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 17.6985 -s 1 -d 3 -p ack -e 40 -c 0 -i 295 -a 1 -x {1.1.3.0 0.0.3.0 144 ------- null} + -t 17.6985 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {0.0.3.0 1.1.3.0 164 ------- null} - -t 17.6985 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {0.0.3.0 1.1.3.0 164 ------- null} h -t 17.6985 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 17.7001 -s 1 -d 3 -p ack -e 40 -c 0 -i 296 -a 1 -x {1.1.3.0 0.0.3.0 145 ------- null} + -t 17.7001 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 316 -a 0 -x {0.0.3.0 1.1.3.0 165 ------- null} - -t 17.7001 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 316 -a 0 -x {0.0.3.0 1.1.3.0 165 ------- null} h -t 17.7001 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 316 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 17.7017 -s 1 -d 3 -p ack -e 40 -c 0 -i 297 -a 1 -x {1.1.3.0 0.0.3.0 146 ------- null} + -t 17.7017 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {0.0.3.0 1.1.3.0 166 ------- null} - -t 17.7017 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {0.0.3.0 1.1.3.0 166 ------- null} h -t 17.7017 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 17.7033 -s 1 -d 3 -p ack -e 40 -c 0 -i 298 -a 1 -x {1.1.3.0 0.0.3.0 147 ------- null} + -t 17.7033 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 318 -a 0 -x {0.0.3.0 1.1.3.0 167 ------- null} - -t 17.7033 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 318 -a 0 -x {0.0.3.0 1.1.3.0 167 ------- null} h -t 17.7033 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 318 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 17.7049 -s 1 -d 3 -p ack -e 40 -c 0 -i 299 -a 1 -x {1.1.3.0 0.0.3.0 148 ------- null} + -t 17.7049 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {0.0.3.0 1.1.3.0 168 ------- null} - -t 17.7049 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {0.0.3.0 1.1.3.0 168 ------- null} h -t 17.7049 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 17.7065 -s 1 -d 3 -p ack -e 40 -c 0 -i 300 -a 1 -x {1.1.3.0 0.0.3.0 149 ------- null} + -t 17.7065 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {0.0.3.0 1.1.3.0 169 ------- null} - -t 17.7065 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {0.0.3.0 1.1.3.0 169 ------- null} h -t 17.7065 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 17.7081 -s 1 -d 3 -p ack -e 40 -c 0 -i 301 -a 1 -x {1.1.3.0 0.0.3.0 150 ------- null} + -t 17.7081 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {0.0.3.0 1.1.3.0 170 ------- null} - -t 17.7081 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {0.0.3.0 1.1.3.0 170 ------- null} h -t 17.7081 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 17.8393 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {0.0.3.0 1.1.3.0 151 ------- null} + -t 17.8393 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {0.0.3.0 1.1.3.0 151 ------- null} - -t 17.8393 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {0.0.3.0 1.1.3.0 151 ------- null} h -t 17.8393 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 17.8409 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {0.0.3.0 1.1.3.0 152 ------- null} + -t 17.8409 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {0.0.3.0 1.1.3.0 152 ------- null} - -t 17.8409 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {0.0.3.0 1.1.3.0 152 ------- null} h -t 17.8409 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 17.8425 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {0.0.3.0 1.1.3.0 153 ------- null} + -t 17.8425 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {0.0.3.0 1.1.3.0 153 ------- null} - -t 17.8425 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {0.0.3.0 1.1.3.0 153 ------- null} h -t 17.8425 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 17.8441 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {0.0.3.0 1.1.3.0 154 ------- null} + -t 17.8441 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {0.0.3.0 1.1.3.0 154 ------- null} - -t 17.8441 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {0.0.3.0 1.1.3.0 154 ------- null} h -t 17.8441 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 17.8457 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {0.0.3.0 1.1.3.0 155 ------- null} + -t 17.8457 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {0.0.3.0 1.1.3.0 155 ------- null} - -t 17.8457 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {0.0.3.0 1.1.3.0 155 ------- null} h -t 17.8457 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 17.8473 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {0.0.3.0 1.1.3.0 156 ------- null} + -t 17.8473 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {0.0.3.0 1.1.3.0 156 ------- null} - -t 17.8473 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {0.0.3.0 1.1.3.0 156 ------- null} h -t 17.8473 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 17.8489 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {0.0.3.0 1.1.3.0 157 ------- null} + -t 17.8489 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {0.0.3.0 1.1.3.0 157 ------- null} - -t 17.8489 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {0.0.3.0 1.1.3.0 157 ------- null} h -t 17.8489 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 17.8505 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {0.0.3.0 1.1.3.0 158 ------- null} + -t 17.8505 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {0.0.3.0 1.1.3.0 158 ------- null} - -t 17.8505 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {0.0.3.0 1.1.3.0 158 ------- null} h -t 17.8505 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 17.8521 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 310 -a 0 -x {0.0.3.0 1.1.3.0 159 ------- null} + -t 17.8521 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 310 -a 0 -x {0.0.3.0 1.1.3.0 159 ------- null} - -t 17.8521 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 310 -a 0 -x {0.0.3.0 1.1.3.0 159 ------- null} h -t 17.8521 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 310 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 17.8537 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {0.0.3.0 1.1.3.0 160 ------- null} + -t 17.8537 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {0.0.3.0 1.1.3.0 160 ------- null} - -t 17.8537 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {0.0.3.0 1.1.3.0 160 ------- null} h -t 17.8537 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 17.8553 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 312 -a 0 -x {0.0.3.0 1.1.3.0 161 ------- null} + -t 17.8553 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 312 -a 0 -x {0.0.3.0 1.1.3.0 161 ------- null} - -t 17.8553 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 312 -a 0 -x {0.0.3.0 1.1.3.0 161 ------- null} h -t 17.8553 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 312 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 17.8569 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {0.0.3.0 1.1.3.0 162 ------- null} + -t 17.8569 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {0.0.3.0 1.1.3.0 162 ------- null} - -t 17.8569 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {0.0.3.0 1.1.3.0 162 ------- null} h -t 17.8569 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 17.8585 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 314 -a 0 -x {0.0.3.0 1.1.3.0 163 ------- null} + -t 17.8585 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 314 -a 0 -x {0.0.3.0 1.1.3.0 163 ------- null} - -t 17.8585 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 314 -a 0 -x {0.0.3.0 1.1.3.0 163 ------- null} h -t 17.8585 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 314 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 17.8601 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {0.0.3.0 1.1.3.0 164 ------- null} + -t 17.8601 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {0.0.3.0 1.1.3.0 164 ------- null} - -t 17.8601 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {0.0.3.0 1.1.3.0 164 ------- null} h -t 17.8601 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 17.8617 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 316 -a 0 -x {0.0.3.0 1.1.3.0 165 ------- null} + -t 17.8617 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 316 -a 0 -x {0.0.3.0 1.1.3.0 165 ------- null} - -t 17.8617 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 316 -a 0 -x {0.0.3.0 1.1.3.0 165 ------- null} h -t 17.8617 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 316 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 17.8633 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {0.0.3.0 1.1.3.0 166 ------- null} + -t 17.8633 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {0.0.3.0 1.1.3.0 166 ------- null} - -t 17.8633 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {0.0.3.0 1.1.3.0 166 ------- null} h -t 17.8633 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 17.8649 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 318 -a 0 -x {0.0.3.0 1.1.3.0 167 ------- null} + -t 17.8649 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 318 -a 0 -x {0.0.3.0 1.1.3.0 167 ------- null} - -t 17.8649 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 318 -a 0 -x {0.0.3.0 1.1.3.0 167 ------- null} h -t 17.8649 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 318 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 17.8665 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {0.0.3.0 1.1.3.0 168 ------- null} + -t 17.8665 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {0.0.3.0 1.1.3.0 168 ------- null} - -t 17.8665 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {0.0.3.0 1.1.3.0 168 ------- null} h -t 17.8665 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 17.8681 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {0.0.3.0 1.1.3.0 169 ------- null} + -t 17.8681 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {0.0.3.0 1.1.3.0 169 ------- null} - -t 17.8681 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {0.0.3.0 1.1.3.0 169 ------- null} h -t 17.8681 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 17.8697 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {0.0.3.0 1.1.3.0 170 ------- null} + -t 17.8697 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {0.0.3.0 1.1.3.0 170 ------- null} - -t 17.8697 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {0.0.3.0 1.1.3.0 170 ------- null} h -t 17.8697 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.1409 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {0.0.3.0 1.1.3.0 151 ------- null} + -t 18.1409 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {0.0.3.0 1.1.3.0 151 ------- null} - -t 18.1409 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {0.0.3.0 1.1.3.0 151 ------- null} h -t 18.1409 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.1425 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {0.0.3.0 1.1.3.0 152 ------- null} + -t 18.1425 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {0.0.3.0 1.1.3.0 152 ------- null} - -t 18.1425 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {0.0.3.0 1.1.3.0 152 ------- null} h -t 18.1425 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.1441 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {0.0.3.0 1.1.3.0 153 ------- null} + -t 18.1441 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {0.0.3.0 1.1.3.0 153 ------- null} - -t 18.1441 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {0.0.3.0 1.1.3.0 153 ------- null} h -t 18.1441 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.1457 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {0.0.3.0 1.1.3.0 154 ------- null} + -t 18.1457 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {0.0.3.0 1.1.3.0 154 ------- null} - -t 18.1457 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {0.0.3.0 1.1.3.0 154 ------- null} h -t 18.1457 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.1473 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {0.0.3.0 1.1.3.0 155 ------- null} + -t 18.1473 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {0.0.3.0 1.1.3.0 155 ------- null} - -t 18.1473 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {0.0.3.0 1.1.3.0 155 ------- null} h -t 18.1473 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.1489 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {0.0.3.0 1.1.3.0 156 ------- null} + -t 18.1489 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {0.0.3.0 1.1.3.0 156 ------- null} - -t 18.1489 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {0.0.3.0 1.1.3.0 156 ------- null} h -t 18.1489 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.1505 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {0.0.3.0 1.1.3.0 157 ------- null} + -t 18.1505 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {0.0.3.0 1.1.3.0 157 ------- null} - -t 18.1505 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {0.0.3.0 1.1.3.0 157 ------- null} h -t 18.1505 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.1521 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {0.0.3.0 1.1.3.0 158 ------- null} + -t 18.1521 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {0.0.3.0 1.1.3.0 158 ------- null} - -t 18.1521 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {0.0.3.0 1.1.3.0 158 ------- null} h -t 18.1521 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.1537 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 310 -a 0 -x {0.0.3.0 1.1.3.0 159 ------- null} + -t 18.1537 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 310 -a 0 -x {0.0.3.0 1.1.3.0 159 ------- null} - -t 18.1537 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 310 -a 0 -x {0.0.3.0 1.1.3.0 159 ------- null} h -t 18.1537 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 310 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.1553 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {0.0.3.0 1.1.3.0 160 ------- null} + -t 18.1553 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {0.0.3.0 1.1.3.0 160 ------- null} - -t 18.1553 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {0.0.3.0 1.1.3.0 160 ------- null} h -t 18.1553 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.1569 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 312 -a 0 -x {0.0.3.0 1.1.3.0 161 ------- null} + -t 18.1569 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 312 -a 0 -x {0.0.3.0 1.1.3.0 161 ------- null} - -t 18.1569 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 312 -a 0 -x {0.0.3.0 1.1.3.0 161 ------- null} h -t 18.1569 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 312 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.1585 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {0.0.3.0 1.1.3.0 162 ------- null} + -t 18.1585 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {0.0.3.0 1.1.3.0 162 ------- null} - -t 18.1585 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {0.0.3.0 1.1.3.0 162 ------- null} h -t 18.1585 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.1601 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 314 -a 0 -x {0.0.3.0 1.1.3.0 163 ------- null} + -t 18.1601 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 314 -a 0 -x {0.0.3.0 1.1.3.0 163 ------- null} - -t 18.1601 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 314 -a 0 -x {0.0.3.0 1.1.3.0 163 ------- null} h -t 18.1601 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 314 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.1617 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {0.0.3.0 1.1.3.0 164 ------- null} + -t 18.1617 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {0.0.3.0 1.1.3.0 164 ------- null} - -t 18.1617 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {0.0.3.0 1.1.3.0 164 ------- null} h -t 18.1617 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.1633 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 316 -a 0 -x {0.0.3.0 1.1.3.0 165 ------- null} + -t 18.1633 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 316 -a 0 -x {0.0.3.0 1.1.3.0 165 ------- null} - -t 18.1633 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 316 -a 0 -x {0.0.3.0 1.1.3.0 165 ------- null} h -t 18.1633 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 316 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.1649 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {0.0.3.0 1.1.3.0 166 ------- null} + -t 18.1649 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {0.0.3.0 1.1.3.0 166 ------- null} - -t 18.1649 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {0.0.3.0 1.1.3.0 166 ------- null} h -t 18.1649 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.1665 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 318 -a 0 -x {0.0.3.0 1.1.3.0 167 ------- null} + -t 18.1665 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 318 -a 0 -x {0.0.3.0 1.1.3.0 167 ------- null} - -t 18.1665 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 318 -a 0 -x {0.0.3.0 1.1.3.0 167 ------- null} h -t 18.1665 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 318 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.1681 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {0.0.3.0 1.1.3.0 168 ------- null} + -t 18.1681 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {0.0.3.0 1.1.3.0 168 ------- null} - -t 18.1681 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {0.0.3.0 1.1.3.0 168 ------- null} h -t 18.1681 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.1697 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {0.0.3.0 1.1.3.0 169 ------- null} + -t 18.1697 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {0.0.3.0 1.1.3.0 169 ------- null} - -t 18.1697 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {0.0.3.0 1.1.3.0 169 ------- null} h -t 18.1697 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.1713 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {0.0.3.0 1.1.3.0 170 ------- null} + -t 18.1713 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {0.0.3.0 1.1.3.0 170 ------- null} - -t 18.1713 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {0.0.3.0 1.1.3.0 170 ------- null} h -t 18.1713 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.2425 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {0.0.3.0 1.1.3.0 151 ------- null} + -t 18.2425 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {0.0.3.0 1.1.3.0 151 ------- null} - -t 18.2425 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {0.0.3.0 1.1.3.0 151 ------- null} h -t 18.2425 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.2441 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {0.0.3.0 1.1.3.0 152 ------- null} + -t 18.2441 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {0.0.3.0 1.1.3.0 152 ------- null} - -t 18.2441 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {0.0.3.0 1.1.3.0 152 ------- null} h -t 18.2441 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.2457 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {0.0.3.0 1.1.3.0 153 ------- null} + -t 18.2457 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {0.0.3.0 1.1.3.0 153 ------- null} - -t 18.2457 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {0.0.3.0 1.1.3.0 153 ------- null} h -t 18.2457 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.2473 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {0.0.3.0 1.1.3.0 154 ------- null} + -t 18.2473 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {0.0.3.0 1.1.3.0 154 ------- null} - -t 18.2473 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {0.0.3.0 1.1.3.0 154 ------- null} h -t 18.2473 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.2489 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {0.0.3.0 1.1.3.0 155 ------- null} + -t 18.2489 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {0.0.3.0 1.1.3.0 155 ------- null} - -t 18.2489 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {0.0.3.0 1.1.3.0 155 ------- null} h -t 18.2489 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.2505 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {0.0.3.0 1.1.3.0 156 ------- null} + -t 18.2505 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {0.0.3.0 1.1.3.0 156 ------- null} - -t 18.2505 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {0.0.3.0 1.1.3.0 156 ------- null} h -t 18.2505 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.2521 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {0.0.3.0 1.1.3.0 157 ------- null} + -t 18.2521 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {0.0.3.0 1.1.3.0 157 ------- null} - -t 18.2521 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {0.0.3.0 1.1.3.0 157 ------- null} h -t 18.2521 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.2537 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {0.0.3.0 1.1.3.0 158 ------- null} + -t 18.2537 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {0.0.3.0 1.1.3.0 158 ------- null} - -t 18.2537 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {0.0.3.0 1.1.3.0 158 ------- null} h -t 18.2537 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.2553 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 310 -a 0 -x {0.0.3.0 1.1.3.0 159 ------- null} + -t 18.2553 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 310 -a 0 -x {0.0.3.0 1.1.3.0 159 ------- null} - -t 18.2553 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 310 -a 0 -x {0.0.3.0 1.1.3.0 159 ------- null} h -t 18.2553 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 310 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.2569 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {0.0.3.0 1.1.3.0 160 ------- null} + -t 18.2569 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {0.0.3.0 1.1.3.0 160 ------- null} - -t 18.2569 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {0.0.3.0 1.1.3.0 160 ------- null} h -t 18.2569 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.2585 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 312 -a 0 -x {0.0.3.0 1.1.3.0 161 ------- null} + -t 18.2585 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 312 -a 0 -x {0.0.3.0 1.1.3.0 161 ------- null} - -t 18.2585 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 312 -a 0 -x {0.0.3.0 1.1.3.0 161 ------- null} h -t 18.2585 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 312 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.2601 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {0.0.3.0 1.1.3.0 162 ------- null} + -t 18.2601 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {0.0.3.0 1.1.3.0 162 ------- null} - -t 18.2601 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {0.0.3.0 1.1.3.0 162 ------- null} h -t 18.2601 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.2617 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 314 -a 0 -x {0.0.3.0 1.1.3.0 163 ------- null} + -t 18.2617 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 314 -a 0 -x {0.0.3.0 1.1.3.0 163 ------- null} - -t 18.2617 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 314 -a 0 -x {0.0.3.0 1.1.3.0 163 ------- null} h -t 18.2617 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 314 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.2633 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {0.0.3.0 1.1.3.0 164 ------- null} + -t 18.2633 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {0.0.3.0 1.1.3.0 164 ------- null} - -t 18.2633 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {0.0.3.0 1.1.3.0 164 ------- null} h -t 18.2633 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.2649 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 316 -a 0 -x {0.0.3.0 1.1.3.0 165 ------- null} + -t 18.2649 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 316 -a 0 -x {0.0.3.0 1.1.3.0 165 ------- null} - -t 18.2649 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 316 -a 0 -x {0.0.3.0 1.1.3.0 165 ------- null} h -t 18.2649 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 316 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.2665 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {0.0.3.0 1.1.3.0 166 ------- null} + -t 18.2665 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {0.0.3.0 1.1.3.0 166 ------- null} - -t 18.2665 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {0.0.3.0 1.1.3.0 166 ------- null} h -t 18.2665 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.2681 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 318 -a 0 -x {0.0.3.0 1.1.3.0 167 ------- null} + -t 18.2681 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 318 -a 0 -x {0.0.3.0 1.1.3.0 167 ------- null} - -t 18.2681 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 318 -a 0 -x {0.0.3.0 1.1.3.0 167 ------- null} h -t 18.2681 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 318 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.2697 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {0.0.3.0 1.1.3.0 168 ------- null} + -t 18.2697 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {0.0.3.0 1.1.3.0 168 ------- null} - -t 18.2697 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {0.0.3.0 1.1.3.0 168 ------- null} h -t 18.2697 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.2713 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {0.0.3.0 1.1.3.0 169 ------- null} + -t 18.2713 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {0.0.3.0 1.1.3.0 169 ------- null} - -t 18.2713 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {0.0.3.0 1.1.3.0 169 ------- null} h -t 18.2713 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.2729 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {0.0.3.0 1.1.3.0 170 ------- null} + -t 18.2729 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {0.0.3.0 1.1.3.0 170 ------- null} - -t 18.2729 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {0.0.3.0 1.1.3.0 170 ------- null} h -t 18.2729 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.3241 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {0.0.3.0 1.1.3.0 151 ------- null} + -t 18.3241 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {0.0.3.0 1.1.3.0 151 ------- null} - -t 18.3241 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {0.0.3.0 1.1.3.0 151 ------- null} h -t 18.3241 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.3257 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {0.0.3.0 1.1.3.0 152 ------- null} + -t 18.3257 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {0.0.3.0 1.1.3.0 152 ------- null} - -t 18.3257 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {0.0.3.0 1.1.3.0 152 ------- null} h -t 18.3257 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.3273 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {0.0.3.0 1.1.3.0 153 ------- null} + -t 18.3273 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {0.0.3.0 1.1.3.0 153 ------- null} - -t 18.3273 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {0.0.3.0 1.1.3.0 153 ------- null} h -t 18.3273 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.3289 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {0.0.3.0 1.1.3.0 154 ------- null} + -t 18.3289 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {0.0.3.0 1.1.3.0 154 ------- null} - -t 18.3289 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {0.0.3.0 1.1.3.0 154 ------- null} h -t 18.3289 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.3305 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {0.0.3.0 1.1.3.0 155 ------- null} + -t 18.3305 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {0.0.3.0 1.1.3.0 155 ------- null} - -t 18.3305 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {0.0.3.0 1.1.3.0 155 ------- null} h -t 18.3305 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.3321 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {0.0.3.0 1.1.3.0 156 ------- null} + -t 18.3321 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {0.0.3.0 1.1.3.0 156 ------- null} - -t 18.3321 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {0.0.3.0 1.1.3.0 156 ------- null} h -t 18.3321 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.3337 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {0.0.3.0 1.1.3.0 157 ------- null} + -t 18.3337 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {0.0.3.0 1.1.3.0 157 ------- null} - -t 18.3337 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {0.0.3.0 1.1.3.0 157 ------- null} h -t 18.3337 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.3353 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {0.0.3.0 1.1.3.0 158 ------- null} + -t 18.3353 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {0.0.3.0 1.1.3.0 158 ------- null} - -t 18.3353 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {0.0.3.0 1.1.3.0 158 ------- null} h -t 18.3353 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.3369 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 310 -a 0 -x {0.0.3.0 1.1.3.0 159 ------- null} + -t 18.3369 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 310 -a 0 -x {0.0.3.0 1.1.3.0 159 ------- null} - -t 18.3369 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 310 -a 0 -x {0.0.3.0 1.1.3.0 159 ------- null} h -t 18.3369 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 310 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.3385 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {0.0.3.0 1.1.3.0 160 ------- null} + -t 18.3385 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {0.0.3.0 1.1.3.0 160 ------- null} - -t 18.3385 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {0.0.3.0 1.1.3.0 160 ------- null} h -t 18.3385 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.3401 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 312 -a 0 -x {0.0.3.0 1.1.3.0 161 ------- null} + -t 18.3401 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 312 -a 0 -x {0.0.3.0 1.1.3.0 161 ------- null} - -t 18.3401 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 312 -a 0 -x {0.0.3.0 1.1.3.0 161 ------- null} h -t 18.3401 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 312 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.3417 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {0.0.3.0 1.1.3.0 162 ------- null} + -t 18.3417 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {0.0.3.0 1.1.3.0 162 ------- null} - -t 18.3417 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {0.0.3.0 1.1.3.0 162 ------- null} h -t 18.3417 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.3433 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 314 -a 0 -x {0.0.3.0 1.1.3.0 163 ------- null} + -t 18.3433 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 314 -a 0 -x {0.0.3.0 1.1.3.0 163 ------- null} - -t 18.3433 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 314 -a 0 -x {0.0.3.0 1.1.3.0 163 ------- null} h -t 18.3433 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 314 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.3449 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {0.0.3.0 1.1.3.0 164 ------- null} + -t 18.3449 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {0.0.3.0 1.1.3.0 164 ------- null} - -t 18.3449 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {0.0.3.0 1.1.3.0 164 ------- null} h -t 18.3449 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.3465 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 316 -a 0 -x {0.0.3.0 1.1.3.0 165 ------- null} + -t 18.3465 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 316 -a 0 -x {0.0.3.0 1.1.3.0 165 ------- null} - -t 18.3465 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 316 -a 0 -x {0.0.3.0 1.1.3.0 165 ------- null} h -t 18.3465 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 316 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.3481 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {0.0.3.0 1.1.3.0 166 ------- null} + -t 18.3481 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {0.0.3.0 1.1.3.0 166 ------- null} - -t 18.3481 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {0.0.3.0 1.1.3.0 166 ------- null} h -t 18.3481 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.3497 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 318 -a 0 -x {0.0.3.0 1.1.3.0 167 ------- null} + -t 18.3497 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 318 -a 0 -x {0.0.3.0 1.1.3.0 167 ------- null} - -t 18.3497 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 318 -a 0 -x {0.0.3.0 1.1.3.0 167 ------- null} h -t 18.3497 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 318 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.3513 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {0.0.3.0 1.1.3.0 168 ------- null} + -t 18.3513 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {0.0.3.0 1.1.3.0 168 ------- null} - -t 18.3513 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {0.0.3.0 1.1.3.0 168 ------- null} h -t 18.3513 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.3529 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {0.0.3.0 1.1.3.0 169 ------- null} + -t 18.3529 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {0.0.3.0 1.1.3.0 169 ------- null} - -t 18.3529 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {0.0.3.0 1.1.3.0 169 ------- null} h -t 18.3529 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.3545 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {0.0.3.0 1.1.3.0 170 ------- null} + -t 18.3545 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {0.0.3.0 1.1.3.0 170 ------- null} - -t 18.3545 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {0.0.3.0 1.1.3.0 170 ------- null} h -t 18.3545 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.4057 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {0.0.3.0 1.1.3.0 151 ------- null} + -t 18.4057 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {0.0.3.0 1.1.3.0 151 ------- null} - -t 18.4057 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {0.0.3.0 1.1.3.0 151 ------- null} h -t 18.4057 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.4073 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {0.0.3.0 1.1.3.0 152 ------- null} + -t 18.4073 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {0.0.3.0 1.1.3.0 152 ------- null} - -t 18.4073 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {0.0.3.0 1.1.3.0 152 ------- null} h -t 18.4073 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.4089 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {0.0.3.0 1.1.3.0 153 ------- null} + -t 18.4089 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {0.0.3.0 1.1.3.0 153 ------- null} - -t 18.4089 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {0.0.3.0 1.1.3.0 153 ------- null} h -t 18.4089 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.4105 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {0.0.3.0 1.1.3.0 154 ------- null} + -t 18.4105 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {0.0.3.0 1.1.3.0 154 ------- null} - -t 18.4105 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {0.0.3.0 1.1.3.0 154 ------- null} h -t 18.4105 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.4121 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {0.0.3.0 1.1.3.0 155 ------- null} + -t 18.4121 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {0.0.3.0 1.1.3.0 155 ------- null} - -t 18.4121 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {0.0.3.0 1.1.3.0 155 ------- null} h -t 18.4121 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.4137 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {0.0.3.0 1.1.3.0 156 ------- null} + -t 18.4137 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {0.0.3.0 1.1.3.0 156 ------- null} - -t 18.4137 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {0.0.3.0 1.1.3.0 156 ------- null} h -t 18.4137 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.4153 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {0.0.3.0 1.1.3.0 157 ------- null} + -t 18.4153 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {0.0.3.0 1.1.3.0 157 ------- null} - -t 18.4153 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {0.0.3.0 1.1.3.0 157 ------- null} h -t 18.4153 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.4169 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {0.0.3.0 1.1.3.0 158 ------- null} + -t 18.4169 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {0.0.3.0 1.1.3.0 158 ------- null} - -t 18.4169 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {0.0.3.0 1.1.3.0 158 ------- null} h -t 18.4169 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.4185 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 310 -a 0 -x {0.0.3.0 1.1.3.0 159 ------- null} + -t 18.4185 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 310 -a 0 -x {0.0.3.0 1.1.3.0 159 ------- null} - -t 18.4185 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 310 -a 0 -x {0.0.3.0 1.1.3.0 159 ------- null} h -t 18.4185 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 310 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.4201 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {0.0.3.0 1.1.3.0 160 ------- null} + -t 18.4201 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {0.0.3.0 1.1.3.0 160 ------- null} - -t 18.4201 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {0.0.3.0 1.1.3.0 160 ------- null} h -t 18.4201 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.4217 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 312 -a 0 -x {0.0.3.0 1.1.3.0 161 ------- null} + -t 18.4217 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 312 -a 0 -x {0.0.3.0 1.1.3.0 161 ------- null} - -t 18.4217 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 312 -a 0 -x {0.0.3.0 1.1.3.0 161 ------- null} h -t 18.4217 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 312 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.4233 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {0.0.3.0 1.1.3.0 162 ------- null} + -t 18.4233 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {0.0.3.0 1.1.3.0 162 ------- null} - -t 18.4233 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {0.0.3.0 1.1.3.0 162 ------- null} h -t 18.4233 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.4249 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 314 -a 0 -x {0.0.3.0 1.1.3.0 163 ------- null} + -t 18.4249 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 314 -a 0 -x {0.0.3.0 1.1.3.0 163 ------- null} - -t 18.4249 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 314 -a 0 -x {0.0.3.0 1.1.3.0 163 ------- null} h -t 18.4249 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 314 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.4265 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {0.0.3.0 1.1.3.0 164 ------- null} + -t 18.4265 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {0.0.3.0 1.1.3.0 164 ------- null} - -t 18.4265 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {0.0.3.0 1.1.3.0 164 ------- null} h -t 18.4265 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.4281 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 316 -a 0 -x {0.0.3.0 1.1.3.0 165 ------- null} + -t 18.4281 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 316 -a 0 -x {0.0.3.0 1.1.3.0 165 ------- null} - -t 18.4281 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 316 -a 0 -x {0.0.3.0 1.1.3.0 165 ------- null} h -t 18.4281 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 316 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.4297 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {0.0.3.0 1.1.3.0 166 ------- null} + -t 18.4297 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {0.0.3.0 1.1.3.0 166 ------- null} - -t 18.4297 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {0.0.3.0 1.1.3.0 166 ------- null} h -t 18.4297 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.4313 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 318 -a 0 -x {0.0.3.0 1.1.3.0 167 ------- null} + -t 18.4313 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 318 -a 0 -x {0.0.3.0 1.1.3.0 167 ------- null} - -t 18.4313 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 318 -a 0 -x {0.0.3.0 1.1.3.0 167 ------- null} h -t 18.4313 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 318 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.4329 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {0.0.3.0 1.1.3.0 168 ------- null} + -t 18.4329 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {0.0.3.0 1.1.3.0 168 ------- null} - -t 18.4329 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {0.0.3.0 1.1.3.0 168 ------- null} h -t 18.4329 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.4345 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {0.0.3.0 1.1.3.0 169 ------- null} + -t 18.4345 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {0.0.3.0 1.1.3.0 169 ------- null} - -t 18.4345 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {0.0.3.0 1.1.3.0 169 ------- null} h -t 18.4345 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.4361 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {0.0.3.0 1.1.3.0 170 ------- null} + -t 18.4361 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {0.0.3.0 1.1.3.0 170 ------- null} - -t 18.4361 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {0.0.3.0 1.1.3.0 170 ------- null} h -t 18.4361 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 18.4673 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 302 -a 0 -x {0.0.3.0 1.1.3.0 151 ------- null} + -t 18.4673 -s 21 -d 28 -p ack -e 40 -c 0 -i 322 -a 1 -x {1.1.3.0 0.0.3.0 151 ------- null} - -t 18.4673 -s 21 -d 28 -p ack -e 40 -c 0 -i 322 -a 1 -x {1.1.3.0 0.0.3.0 151 ------- null} h -t 18.4673 -s 21 -d 28 -p ack -e 40 -c 0 -i 322 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 18.4689 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {0.0.3.0 1.1.3.0 152 ------- null} + -t 18.4689 -s 21 -d 28 -p ack -e 40 -c 0 -i 323 -a 1 -x {1.1.3.0 0.0.3.0 152 ------- null} - -t 18.4689 -s 21 -d 28 -p ack -e 40 -c 0 -i 323 -a 1 -x {1.1.3.0 0.0.3.0 152 ------- null} h -t 18.4689 -s 21 -d 28 -p ack -e 40 -c 0 -i 323 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 18.4705 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 304 -a 0 -x {0.0.3.0 1.1.3.0 153 ------- null} + -t 18.4705 -s 21 -d 28 -p ack -e 40 -c 0 -i 324 -a 1 -x {1.1.3.0 0.0.3.0 153 ------- null} - -t 18.4705 -s 21 -d 28 -p ack -e 40 -c 0 -i 324 -a 1 -x {1.1.3.0 0.0.3.0 153 ------- null} h -t 18.4705 -s 21 -d 28 -p ack -e 40 -c 0 -i 324 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 18.4721 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {0.0.3.0 1.1.3.0 154 ------- null} + -t 18.4721 -s 21 -d 28 -p ack -e 40 -c 0 -i 325 -a 1 -x {1.1.3.0 0.0.3.0 154 ------- null} - -t 18.4721 -s 21 -d 28 -p ack -e 40 -c 0 -i 325 -a 1 -x {1.1.3.0 0.0.3.0 154 ------- null} h -t 18.4721 -s 21 -d 28 -p ack -e 40 -c 0 -i 325 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 18.4737 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 306 -a 0 -x {0.0.3.0 1.1.3.0 155 ------- null} + -t 18.4737 -s 21 -d 28 -p ack -e 40 -c 0 -i 326 -a 1 -x {1.1.3.0 0.0.3.0 155 ------- null} - -t 18.4737 -s 21 -d 28 -p ack -e 40 -c 0 -i 326 -a 1 -x {1.1.3.0 0.0.3.0 155 ------- null} h -t 18.4737 -s 21 -d 28 -p ack -e 40 -c 0 -i 326 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 18.4753 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {0.0.3.0 1.1.3.0 156 ------- null} + -t 18.4753 -s 21 -d 28 -p ack -e 40 -c 0 -i 327 -a 1 -x {1.1.3.0 0.0.3.0 156 ------- null} - -t 18.4753 -s 21 -d 28 -p ack -e 40 -c 0 -i 327 -a 1 -x {1.1.3.0 0.0.3.0 156 ------- null} h -t 18.4753 -s 21 -d 28 -p ack -e 40 -c 0 -i 327 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 18.4769 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 308 -a 0 -x {0.0.3.0 1.1.3.0 157 ------- null} + -t 18.4769 -s 21 -d 28 -p ack -e 40 -c 0 -i 328 -a 1 -x {1.1.3.0 0.0.3.0 157 ------- null} - -t 18.4769 -s 21 -d 28 -p ack -e 40 -c 0 -i 328 -a 1 -x {1.1.3.0 0.0.3.0 157 ------- null} h -t 18.4769 -s 21 -d 28 -p ack -e 40 -c 0 -i 328 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 18.4785 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {0.0.3.0 1.1.3.0 158 ------- null} + -t 18.4785 -s 21 -d 28 -p ack -e 40 -c 0 -i 329 -a 1 -x {1.1.3.0 0.0.3.0 158 ------- null} - -t 18.4785 -s 21 -d 28 -p ack -e 40 -c 0 -i 329 -a 1 -x {1.1.3.0 0.0.3.0 158 ------- null} h -t 18.4785 -s 21 -d 28 -p ack -e 40 -c 0 -i 329 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 18.4801 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 310 -a 0 -x {0.0.3.0 1.1.3.0 159 ------- null} + -t 18.4801 -s 21 -d 28 -p ack -e 40 -c 0 -i 330 -a 1 -x {1.1.3.0 0.0.3.0 159 ------- null} - -t 18.4801 -s 21 -d 28 -p ack -e 40 -c 0 -i 330 -a 1 -x {1.1.3.0 0.0.3.0 159 ------- null} h -t 18.4801 -s 21 -d 28 -p ack -e 40 -c 0 -i 330 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 18.4817 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {0.0.3.0 1.1.3.0 160 ------- null} + -t 18.4817 -s 21 -d 28 -p ack -e 40 -c 0 -i 331 -a 1 -x {1.1.3.0 0.0.3.0 160 ------- null} - -t 18.4817 -s 21 -d 28 -p ack -e 40 -c 0 -i 331 -a 1 -x {1.1.3.0 0.0.3.0 160 ------- null} h -t 18.4817 -s 21 -d 28 -p ack -e 40 -c 0 -i 331 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 18.4833 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 312 -a 0 -x {0.0.3.0 1.1.3.0 161 ------- null} + -t 18.4833 -s 21 -d 28 -p ack -e 40 -c 0 -i 332 -a 1 -x {1.1.3.0 0.0.3.0 161 ------- null} - -t 18.4833 -s 21 -d 28 -p ack -e 40 -c 0 -i 332 -a 1 -x {1.1.3.0 0.0.3.0 161 ------- null} h -t 18.4833 -s 21 -d 28 -p ack -e 40 -c 0 -i 332 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 18.4849 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {0.0.3.0 1.1.3.0 162 ------- null} + -t 18.4849 -s 21 -d 28 -p ack -e 40 -c 0 -i 333 -a 1 -x {1.1.3.0 0.0.3.0 162 ------- null} - -t 18.4849 -s 21 -d 28 -p ack -e 40 -c 0 -i 333 -a 1 -x {1.1.3.0 0.0.3.0 162 ------- null} h -t 18.4849 -s 21 -d 28 -p ack -e 40 -c 0 -i 333 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 18.4865 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 314 -a 0 -x {0.0.3.0 1.1.3.0 163 ------- null} + -t 18.4865 -s 21 -d 28 -p ack -e 40 -c 0 -i 334 -a 1 -x {1.1.3.0 0.0.3.0 163 ------- null} - -t 18.4865 -s 21 -d 28 -p ack -e 40 -c 0 -i 334 -a 1 -x {1.1.3.0 0.0.3.0 163 ------- null} h -t 18.4865 -s 21 -d 28 -p ack -e 40 -c 0 -i 334 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 18.4881 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {0.0.3.0 1.1.3.0 164 ------- null} + -t 18.4881 -s 21 -d 28 -p ack -e 40 -c 0 -i 335 -a 1 -x {1.1.3.0 0.0.3.0 164 ------- null} - -t 18.4881 -s 21 -d 28 -p ack -e 40 -c 0 -i 335 -a 1 -x {1.1.3.0 0.0.3.0 164 ------- null} h -t 18.4881 -s 21 -d 28 -p ack -e 40 -c 0 -i 335 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 18.4897 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 316 -a 0 -x {0.0.3.0 1.1.3.0 165 ------- null} + -t 18.4897 -s 21 -d 28 -p ack -e 40 -c 0 -i 336 -a 1 -x {1.1.3.0 0.0.3.0 165 ------- null} - -t 18.4897 -s 21 -d 28 -p ack -e 40 -c 0 -i 336 -a 1 -x {1.1.3.0 0.0.3.0 165 ------- null} h -t 18.4897 -s 21 -d 28 -p ack -e 40 -c 0 -i 336 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 18.4913 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {0.0.3.0 1.1.3.0 166 ------- null} + -t 18.4913 -s 21 -d 28 -p ack -e 40 -c 0 -i 337 -a 1 -x {1.1.3.0 0.0.3.0 166 ------- null} - -t 18.4913 -s 21 -d 28 -p ack -e 40 -c 0 -i 337 -a 1 -x {1.1.3.0 0.0.3.0 166 ------- null} h -t 18.4913 -s 21 -d 28 -p ack -e 40 -c 0 -i 337 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 18.4929 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 318 -a 0 -x {0.0.3.0 1.1.3.0 167 ------- null} + -t 18.4929 -s 21 -d 28 -p ack -e 40 -c 0 -i 338 -a 1 -x {1.1.3.0 0.0.3.0 167 ------- null} - -t 18.4929 -s 21 -d 28 -p ack -e 40 -c 0 -i 338 -a 1 -x {1.1.3.0 0.0.3.0 167 ------- null} h -t 18.4929 -s 21 -d 28 -p ack -e 40 -c 0 -i 338 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 18.4945 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {0.0.3.0 1.1.3.0 168 ------- null} + -t 18.4945 -s 21 -d 28 -p ack -e 40 -c 0 -i 339 -a 1 -x {1.1.3.0 0.0.3.0 168 ------- null} - -t 18.4945 -s 21 -d 28 -p ack -e 40 -c 0 -i 339 -a 1 -x {1.1.3.0 0.0.3.0 168 ------- null} h -t 18.4945 -s 21 -d 28 -p ack -e 40 -c 0 -i 339 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 18.4961 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 320 -a 0 -x {0.0.3.0 1.1.3.0 169 ------- null} + -t 18.4961 -s 21 -d 28 -p ack -e 40 -c 0 -i 340 -a 1 -x {1.1.3.0 0.0.3.0 169 ------- null} - -t 18.4961 -s 21 -d 28 -p ack -e 40 -c 0 -i 340 -a 1 -x {1.1.3.0 0.0.3.0 169 ------- null} h -t 18.4961 -s 21 -d 28 -p ack -e 40 -c 0 -i 340 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 18.4977 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {0.0.3.0 1.1.3.0 170 ------- null} + -t 18.4977 -s 21 -d 28 -p ack -e 40 -c 0 -i 341 -a 1 -x {1.1.3.0 0.0.3.0 170 ------- null} - -t 18.4977 -s 21 -d 28 -p ack -e 40 -c 0 -i 341 -a 1 -x {1.1.3.0 0.0.3.0 170 ------- null} h -t 18.4977 -s 21 -d 28 -p ack -e 40 -c 0 -i 341 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 18.8174 -s 21 -d 28 -p ack -e 40 -c 0 -i 322 -a 1 -x {1.1.3.0 0.0.3.0 151 ------- null} + -t 18.8174 -s 28 -d 1 -p ack -e 40 -c 0 -i 322 -a 1 -x {1.1.3.0 0.0.3.0 151 ------- null} - -t 18.8174 -s 28 -d 1 -p ack -e 40 -c 0 -i 322 -a 1 -x {1.1.3.0 0.0.3.0 151 ------- null} h -t 18.8174 -s 28 -d 1 -p ack -e 40 -c 0 -i 322 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 18.819 -s 21 -d 28 -p ack -e 40 -c 0 -i 323 -a 1 -x {1.1.3.0 0.0.3.0 152 ------- null} + -t 18.819 -s 28 -d 1 -p ack -e 40 -c 0 -i 323 -a 1 -x {1.1.3.0 0.0.3.0 152 ------- null} - -t 18.819 -s 28 -d 1 -p ack -e 40 -c 0 -i 323 -a 1 -x {1.1.3.0 0.0.3.0 152 ------- null} h -t 18.819 -s 28 -d 1 -p ack -e 40 -c 0 -i 323 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 18.8206 -s 21 -d 28 -p ack -e 40 -c 0 -i 324 -a 1 -x {1.1.3.0 0.0.3.0 153 ------- null} + -t 18.8206 -s 28 -d 1 -p ack -e 40 -c 0 -i 324 -a 1 -x {1.1.3.0 0.0.3.0 153 ------- null} - -t 18.8206 -s 28 -d 1 -p ack -e 40 -c 0 -i 324 -a 1 -x {1.1.3.0 0.0.3.0 153 ------- null} h -t 18.8206 -s 28 -d 1 -p ack -e 40 -c 0 -i 324 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 18.8222 -s 21 -d 28 -p ack -e 40 -c 0 -i 325 -a 1 -x {1.1.3.0 0.0.3.0 154 ------- null} + -t 18.8222 -s 28 -d 1 -p ack -e 40 -c 0 -i 325 -a 1 -x {1.1.3.0 0.0.3.0 154 ------- null} - -t 18.8222 -s 28 -d 1 -p ack -e 40 -c 0 -i 325 -a 1 -x {1.1.3.0 0.0.3.0 154 ------- null} h -t 18.8222 -s 28 -d 1 -p ack -e 40 -c 0 -i 325 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 18.8238 -s 21 -d 28 -p ack -e 40 -c 0 -i 326 -a 1 -x {1.1.3.0 0.0.3.0 155 ------- null} + -t 18.8238 -s 28 -d 1 -p ack -e 40 -c 0 -i 326 -a 1 -x {1.1.3.0 0.0.3.0 155 ------- null} - -t 18.8238 -s 28 -d 1 -p ack -e 40 -c 0 -i 326 -a 1 -x {1.1.3.0 0.0.3.0 155 ------- null} h -t 18.8238 -s 28 -d 1 -p ack -e 40 -c 0 -i 326 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 18.8254 -s 21 -d 28 -p ack -e 40 -c 0 -i 327 -a 1 -x {1.1.3.0 0.0.3.0 156 ------- null} + -t 18.8254 -s 28 -d 1 -p ack -e 40 -c 0 -i 327 -a 1 -x {1.1.3.0 0.0.3.0 156 ------- null} - -t 18.8254 -s 28 -d 1 -p ack -e 40 -c 0 -i 327 -a 1 -x {1.1.3.0 0.0.3.0 156 ------- null} h -t 18.8254 -s 28 -d 1 -p ack -e 40 -c 0 -i 327 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 18.827 -s 21 -d 28 -p ack -e 40 -c 0 -i 328 -a 1 -x {1.1.3.0 0.0.3.0 157 ------- null} + -t 18.827 -s 28 -d 1 -p ack -e 40 -c 0 -i 328 -a 1 -x {1.1.3.0 0.0.3.0 157 ------- null} - -t 18.827 -s 28 -d 1 -p ack -e 40 -c 0 -i 328 -a 1 -x {1.1.3.0 0.0.3.0 157 ------- null} h -t 18.827 -s 28 -d 1 -p ack -e 40 -c 0 -i 328 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 18.8286 -s 21 -d 28 -p ack -e 40 -c 0 -i 329 -a 1 -x {1.1.3.0 0.0.3.0 158 ------- null} + -t 18.8286 -s 28 -d 1 -p ack -e 40 -c 0 -i 329 -a 1 -x {1.1.3.0 0.0.3.0 158 ------- null} - -t 18.8286 -s 28 -d 1 -p ack -e 40 -c 0 -i 329 -a 1 -x {1.1.3.0 0.0.3.0 158 ------- null} h -t 18.8286 -s 28 -d 1 -p ack -e 40 -c 0 -i 329 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 18.8302 -s 21 -d 28 -p ack -e 40 -c 0 -i 330 -a 1 -x {1.1.3.0 0.0.3.0 159 ------- null} + -t 18.8302 -s 28 -d 1 -p ack -e 40 -c 0 -i 330 -a 1 -x {1.1.3.0 0.0.3.0 159 ------- null} - -t 18.8302 -s 28 -d 1 -p ack -e 40 -c 0 -i 330 -a 1 -x {1.1.3.0 0.0.3.0 159 ------- null} h -t 18.8302 -s 28 -d 1 -p ack -e 40 -c 0 -i 330 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 18.8318 -s 21 -d 28 -p ack -e 40 -c 0 -i 331 -a 1 -x {1.1.3.0 0.0.3.0 160 ------- null} + -t 18.8318 -s 28 -d 1 -p ack -e 40 -c 0 -i 331 -a 1 -x {1.1.3.0 0.0.3.0 160 ------- null} - -t 18.8318 -s 28 -d 1 -p ack -e 40 -c 0 -i 331 -a 1 -x {1.1.3.0 0.0.3.0 160 ------- null} h -t 18.8318 -s 28 -d 1 -p ack -e 40 -c 0 -i 331 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 18.8334 -s 21 -d 28 -p ack -e 40 -c 0 -i 332 -a 1 -x {1.1.3.0 0.0.3.0 161 ------- null} + -t 18.8334 -s 28 -d 1 -p ack -e 40 -c 0 -i 332 -a 1 -x {1.1.3.0 0.0.3.0 161 ------- null} - -t 18.8334 -s 28 -d 1 -p ack -e 40 -c 0 -i 332 -a 1 -x {1.1.3.0 0.0.3.0 161 ------- null} h -t 18.8334 -s 28 -d 1 -p ack -e 40 -c 0 -i 332 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 18.835 -s 21 -d 28 -p ack -e 40 -c 0 -i 333 -a 1 -x {1.1.3.0 0.0.3.0 162 ------- null} + -t 18.835 -s 28 -d 1 -p ack -e 40 -c 0 -i 333 -a 1 -x {1.1.3.0 0.0.3.0 162 ------- null} - -t 18.835 -s 28 -d 1 -p ack -e 40 -c 0 -i 333 -a 1 -x {1.1.3.0 0.0.3.0 162 ------- null} h -t 18.835 -s 28 -d 1 -p ack -e 40 -c 0 -i 333 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 18.8366 -s 21 -d 28 -p ack -e 40 -c 0 -i 334 -a 1 -x {1.1.3.0 0.0.3.0 163 ------- null} + -t 18.8366 -s 28 -d 1 -p ack -e 40 -c 0 -i 334 -a 1 -x {1.1.3.0 0.0.3.0 163 ------- null} - -t 18.8366 -s 28 -d 1 -p ack -e 40 -c 0 -i 334 -a 1 -x {1.1.3.0 0.0.3.0 163 ------- null} h -t 18.8366 -s 28 -d 1 -p ack -e 40 -c 0 -i 334 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 18.8382 -s 21 -d 28 -p ack -e 40 -c 0 -i 335 -a 1 -x {1.1.3.0 0.0.3.0 164 ------- null} + -t 18.8382 -s 28 -d 1 -p ack -e 40 -c 0 -i 335 -a 1 -x {1.1.3.0 0.0.3.0 164 ------- null} - -t 18.8382 -s 28 -d 1 -p ack -e 40 -c 0 -i 335 -a 1 -x {1.1.3.0 0.0.3.0 164 ------- null} h -t 18.8382 -s 28 -d 1 -p ack -e 40 -c 0 -i 335 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 18.8398 -s 21 -d 28 -p ack -e 40 -c 0 -i 336 -a 1 -x {1.1.3.0 0.0.3.0 165 ------- null} + -t 18.8398 -s 28 -d 1 -p ack -e 40 -c 0 -i 336 -a 1 -x {1.1.3.0 0.0.3.0 165 ------- null} - -t 18.8398 -s 28 -d 1 -p ack -e 40 -c 0 -i 336 -a 1 -x {1.1.3.0 0.0.3.0 165 ------- null} h -t 18.8398 -s 28 -d 1 -p ack -e 40 -c 0 -i 336 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 18.8414 -s 21 -d 28 -p ack -e 40 -c 0 -i 337 -a 1 -x {1.1.3.0 0.0.3.0 166 ------- null} + -t 18.8414 -s 28 -d 1 -p ack -e 40 -c 0 -i 337 -a 1 -x {1.1.3.0 0.0.3.0 166 ------- null} - -t 18.8414 -s 28 -d 1 -p ack -e 40 -c 0 -i 337 -a 1 -x {1.1.3.0 0.0.3.0 166 ------- null} h -t 18.8414 -s 28 -d 1 -p ack -e 40 -c 0 -i 337 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 18.843 -s 21 -d 28 -p ack -e 40 -c 0 -i 338 -a 1 -x {1.1.3.0 0.0.3.0 167 ------- null} + -t 18.843 -s 28 -d 1 -p ack -e 40 -c 0 -i 338 -a 1 -x {1.1.3.0 0.0.3.0 167 ------- null} - -t 18.843 -s 28 -d 1 -p ack -e 40 -c 0 -i 338 -a 1 -x {1.1.3.0 0.0.3.0 167 ------- null} h -t 18.843 -s 28 -d 1 -p ack -e 40 -c 0 -i 338 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 18.8446 -s 21 -d 28 -p ack -e 40 -c 0 -i 339 -a 1 -x {1.1.3.0 0.0.3.0 168 ------- null} + -t 18.8446 -s 28 -d 1 -p ack -e 40 -c 0 -i 339 -a 1 -x {1.1.3.0 0.0.3.0 168 ------- null} - -t 18.8446 -s 28 -d 1 -p ack -e 40 -c 0 -i 339 -a 1 -x {1.1.3.0 0.0.3.0 168 ------- null} h -t 18.8446 -s 28 -d 1 -p ack -e 40 -c 0 -i 339 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 18.8462 -s 21 -d 28 -p ack -e 40 -c 0 -i 340 -a 1 -x {1.1.3.0 0.0.3.0 169 ------- null} + -t 18.8462 -s 28 -d 1 -p ack -e 40 -c 0 -i 340 -a 1 -x {1.1.3.0 0.0.3.0 169 ------- null} - -t 18.8462 -s 28 -d 1 -p ack -e 40 -c 0 -i 340 -a 1 -x {1.1.3.0 0.0.3.0 169 ------- null} h -t 18.8462 -s 28 -d 1 -p ack -e 40 -c 0 -i 340 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 18.8478 -s 21 -d 28 -p ack -e 40 -c 0 -i 341 -a 1 -x {1.1.3.0 0.0.3.0 170 ------- null} + -t 18.8478 -s 28 -d 1 -p ack -e 40 -c 0 -i 341 -a 1 -x {1.1.3.0 0.0.3.0 170 ------- null} - -t 18.8478 -s 28 -d 1 -p ack -e 40 -c 0 -i 341 -a 1 -x {1.1.3.0 0.0.3.0 170 ------- null} h -t 18.8478 -s 28 -d 1 -p ack -e 40 -c 0 -i 341 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 19.1174 -s 28 -d 1 -p ack -e 40 -c 0 -i 322 -a 1 -x {1.1.3.0 0.0.3.0 151 ------- null} + -t 19.1174 -s 1 -d 3 -p ack -e 40 -c 0 -i 322 -a 1 -x {1.1.3.0 0.0.3.0 151 ------- null} - -t 19.1174 -s 1 -d 3 -p ack -e 40 -c 0 -i 322 -a 1 -x {1.1.3.0 0.0.3.0 151 ------- null} h -t 19.1174 -s 1 -d 3 -p ack -e 40 -c 0 -i 322 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 19.119 -s 28 -d 1 -p ack -e 40 -c 0 -i 323 -a 1 -x {1.1.3.0 0.0.3.0 152 ------- null} + -t 19.119 -s 1 -d 3 -p ack -e 40 -c 0 -i 323 -a 1 -x {1.1.3.0 0.0.3.0 152 ------- null} - -t 19.119 -s 1 -d 3 -p ack -e 40 -c 0 -i 323 -a 1 -x {1.1.3.0 0.0.3.0 152 ------- null} h -t 19.119 -s 1 -d 3 -p ack -e 40 -c 0 -i 323 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 19.1206 -s 28 -d 1 -p ack -e 40 -c 0 -i 324 -a 1 -x {1.1.3.0 0.0.3.0 153 ------- null} + -t 19.1206 -s 1 -d 3 -p ack -e 40 -c 0 -i 324 -a 1 -x {1.1.3.0 0.0.3.0 153 ------- null} - -t 19.1206 -s 1 -d 3 -p ack -e 40 -c 0 -i 324 -a 1 -x {1.1.3.0 0.0.3.0 153 ------- null} h -t 19.1206 -s 1 -d 3 -p ack -e 40 -c 0 -i 324 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 19.1222 -s 28 -d 1 -p ack -e 40 -c 0 -i 325 -a 1 -x {1.1.3.0 0.0.3.0 154 ------- null} + -t 19.1222 -s 1 -d 3 -p ack -e 40 -c 0 -i 325 -a 1 -x {1.1.3.0 0.0.3.0 154 ------- null} - -t 19.1222 -s 1 -d 3 -p ack -e 40 -c 0 -i 325 -a 1 -x {1.1.3.0 0.0.3.0 154 ------- null} h -t 19.1222 -s 1 -d 3 -p ack -e 40 -c 0 -i 325 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 19.1238 -s 28 -d 1 -p ack -e 40 -c 0 -i 326 -a 1 -x {1.1.3.0 0.0.3.0 155 ------- null} + -t 19.1238 -s 1 -d 3 -p ack -e 40 -c 0 -i 326 -a 1 -x {1.1.3.0 0.0.3.0 155 ------- null} - -t 19.1238 -s 1 -d 3 -p ack -e 40 -c 0 -i 326 -a 1 -x {1.1.3.0 0.0.3.0 155 ------- null} h -t 19.1238 -s 1 -d 3 -p ack -e 40 -c 0 -i 326 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 19.1254 -s 28 -d 1 -p ack -e 40 -c 0 -i 327 -a 1 -x {1.1.3.0 0.0.3.0 156 ------- null} + -t 19.1254 -s 1 -d 3 -p ack -e 40 -c 0 -i 327 -a 1 -x {1.1.3.0 0.0.3.0 156 ------- null} - -t 19.1254 -s 1 -d 3 -p ack -e 40 -c 0 -i 327 -a 1 -x {1.1.3.0 0.0.3.0 156 ------- null} h -t 19.1254 -s 1 -d 3 -p ack -e 40 -c 0 -i 327 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 19.127 -s 28 -d 1 -p ack -e 40 -c 0 -i 328 -a 1 -x {1.1.3.0 0.0.3.0 157 ------- null} + -t 19.127 -s 1 -d 3 -p ack -e 40 -c 0 -i 328 -a 1 -x {1.1.3.0 0.0.3.0 157 ------- null} - -t 19.127 -s 1 -d 3 -p ack -e 40 -c 0 -i 328 -a 1 -x {1.1.3.0 0.0.3.0 157 ------- null} h -t 19.127 -s 1 -d 3 -p ack -e 40 -c 0 -i 328 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 19.1286 -s 28 -d 1 -p ack -e 40 -c 0 -i 329 -a 1 -x {1.1.3.0 0.0.3.0 158 ------- null} + -t 19.1286 -s 1 -d 3 -p ack -e 40 -c 0 -i 329 -a 1 -x {1.1.3.0 0.0.3.0 158 ------- null} - -t 19.1286 -s 1 -d 3 -p ack -e 40 -c 0 -i 329 -a 1 -x {1.1.3.0 0.0.3.0 158 ------- null} h -t 19.1286 -s 1 -d 3 -p ack -e 40 -c 0 -i 329 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 19.1302 -s 28 -d 1 -p ack -e 40 -c 0 -i 330 -a 1 -x {1.1.3.0 0.0.3.0 159 ------- null} + -t 19.1302 -s 1 -d 3 -p ack -e 40 -c 0 -i 330 -a 1 -x {1.1.3.0 0.0.3.0 159 ------- null} - -t 19.1302 -s 1 -d 3 -p ack -e 40 -c 0 -i 330 -a 1 -x {1.1.3.0 0.0.3.0 159 ------- null} h -t 19.1302 -s 1 -d 3 -p ack -e 40 -c 0 -i 330 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 19.1318 -s 28 -d 1 -p ack -e 40 -c 0 -i 331 -a 1 -x {1.1.3.0 0.0.3.0 160 ------- null} + -t 19.1318 -s 1 -d 3 -p ack -e 40 -c 0 -i 331 -a 1 -x {1.1.3.0 0.0.3.0 160 ------- null} - -t 19.1318 -s 1 -d 3 -p ack -e 40 -c 0 -i 331 -a 1 -x {1.1.3.0 0.0.3.0 160 ------- null} h -t 19.1318 -s 1 -d 3 -p ack -e 40 -c 0 -i 331 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 19.1334 -s 28 -d 1 -p ack -e 40 -c 0 -i 332 -a 1 -x {1.1.3.0 0.0.3.0 161 ------- null} + -t 19.1334 -s 1 -d 3 -p ack -e 40 -c 0 -i 332 -a 1 -x {1.1.3.0 0.0.3.0 161 ------- null} - -t 19.1334 -s 1 -d 3 -p ack -e 40 -c 0 -i 332 -a 1 -x {1.1.3.0 0.0.3.0 161 ------- null} h -t 19.1334 -s 1 -d 3 -p ack -e 40 -c 0 -i 332 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 19.135 -s 28 -d 1 -p ack -e 40 -c 0 -i 333 -a 1 -x {1.1.3.0 0.0.3.0 162 ------- null} + -t 19.135 -s 1 -d 3 -p ack -e 40 -c 0 -i 333 -a 1 -x {1.1.3.0 0.0.3.0 162 ------- null} - -t 19.135 -s 1 -d 3 -p ack -e 40 -c 0 -i 333 -a 1 -x {1.1.3.0 0.0.3.0 162 ------- null} h -t 19.135 -s 1 -d 3 -p ack -e 40 -c 0 -i 333 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 19.1366 -s 28 -d 1 -p ack -e 40 -c 0 -i 334 -a 1 -x {1.1.3.0 0.0.3.0 163 ------- null} + -t 19.1366 -s 1 -d 3 -p ack -e 40 -c 0 -i 334 -a 1 -x {1.1.3.0 0.0.3.0 163 ------- null} - -t 19.1366 -s 1 -d 3 -p ack -e 40 -c 0 -i 334 -a 1 -x {1.1.3.0 0.0.3.0 163 ------- null} h -t 19.1366 -s 1 -d 3 -p ack -e 40 -c 0 -i 334 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 19.1382 -s 28 -d 1 -p ack -e 40 -c 0 -i 335 -a 1 -x {1.1.3.0 0.0.3.0 164 ------- null} + -t 19.1382 -s 1 -d 3 -p ack -e 40 -c 0 -i 335 -a 1 -x {1.1.3.0 0.0.3.0 164 ------- null} - -t 19.1382 -s 1 -d 3 -p ack -e 40 -c 0 -i 335 -a 1 -x {1.1.3.0 0.0.3.0 164 ------- null} h -t 19.1382 -s 1 -d 3 -p ack -e 40 -c 0 -i 335 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 19.1398 -s 28 -d 1 -p ack -e 40 -c 0 -i 336 -a 1 -x {1.1.3.0 0.0.3.0 165 ------- null} + -t 19.1398 -s 1 -d 3 -p ack -e 40 -c 0 -i 336 -a 1 -x {1.1.3.0 0.0.3.0 165 ------- null} - -t 19.1398 -s 1 -d 3 -p ack -e 40 -c 0 -i 336 -a 1 -x {1.1.3.0 0.0.3.0 165 ------- null} h -t 19.1398 -s 1 -d 3 -p ack -e 40 -c 0 -i 336 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 19.1414 -s 28 -d 1 -p ack -e 40 -c 0 -i 337 -a 1 -x {1.1.3.0 0.0.3.0 166 ------- null} + -t 19.1414 -s 1 -d 3 -p ack -e 40 -c 0 -i 337 -a 1 -x {1.1.3.0 0.0.3.0 166 ------- null} - -t 19.1414 -s 1 -d 3 -p ack -e 40 -c 0 -i 337 -a 1 -x {1.1.3.0 0.0.3.0 166 ------- null} h -t 19.1414 -s 1 -d 3 -p ack -e 40 -c 0 -i 337 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 19.143 -s 28 -d 1 -p ack -e 40 -c 0 -i 338 -a 1 -x {1.1.3.0 0.0.3.0 167 ------- null} + -t 19.143 -s 1 -d 3 -p ack -e 40 -c 0 -i 338 -a 1 -x {1.1.3.0 0.0.3.0 167 ------- null} - -t 19.143 -s 1 -d 3 -p ack -e 40 -c 0 -i 338 -a 1 -x {1.1.3.0 0.0.3.0 167 ------- null} h -t 19.143 -s 1 -d 3 -p ack -e 40 -c 0 -i 338 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 19.1446 -s 28 -d 1 -p ack -e 40 -c 0 -i 339 -a 1 -x {1.1.3.0 0.0.3.0 168 ------- null} + -t 19.1446 -s 1 -d 3 -p ack -e 40 -c 0 -i 339 -a 1 -x {1.1.3.0 0.0.3.0 168 ------- null} - -t 19.1446 -s 1 -d 3 -p ack -e 40 -c 0 -i 339 -a 1 -x {1.1.3.0 0.0.3.0 168 ------- null} h -t 19.1446 -s 1 -d 3 -p ack -e 40 -c 0 -i 339 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 19.1462 -s 28 -d 1 -p ack -e 40 -c 0 -i 340 -a 1 -x {1.1.3.0 0.0.3.0 169 ------- null} + -t 19.1462 -s 1 -d 3 -p ack -e 40 -c 0 -i 340 -a 1 -x {1.1.3.0 0.0.3.0 169 ------- null} - -t 19.1462 -s 1 -d 3 -p ack -e 40 -c 0 -i 340 -a 1 -x {1.1.3.0 0.0.3.0 169 ------- null} h -t 19.1462 -s 1 -d 3 -p ack -e 40 -c 0 -i 340 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 19.1478 -s 28 -d 1 -p ack -e 40 -c 0 -i 341 -a 1 -x {1.1.3.0 0.0.3.0 170 ------- null} + -t 19.1478 -s 1 -d 3 -p ack -e 40 -c 0 -i 341 -a 1 -x {1.1.3.0 0.0.3.0 170 ------- null} - -t 19.1478 -s 1 -d 3 -p ack -e 40 -c 0 -i 341 -a 1 -x {1.1.3.0 0.0.3.0 170 ------- null} h -t 19.1478 -s 1 -d 3 -p ack -e 40 -c 0 -i 341 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 19.2575 -s 1 -d 3 -p ack -e 40 -c 0 -i 322 -a 1 -x {1.1.3.0 0.0.3.0 151 ------- null} + -t 19.2575 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 342 -a 0 -x {0.0.3.0 1.1.3.0 171 ------- null} - -t 19.2575 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 342 -a 0 -x {0.0.3.0 1.1.3.0 171 ------- null} h -t 19.2575 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 342 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.2591 -s 1 -d 3 -p ack -e 40 -c 0 -i 323 -a 1 -x {1.1.3.0 0.0.3.0 152 ------- null} + -t 19.2591 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {0.0.3.0 1.1.3.0 172 ------- null} - -t 19.2591 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {0.0.3.0 1.1.3.0 172 ------- null} h -t 19.2591 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.2607 -s 1 -d 3 -p ack -e 40 -c 0 -i 324 -a 1 -x {1.1.3.0 0.0.3.0 153 ------- null} + -t 19.2607 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 344 -a 0 -x {0.0.3.0 1.1.3.0 173 ------- null} - -t 19.2607 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 344 -a 0 -x {0.0.3.0 1.1.3.0 173 ------- null} h -t 19.2607 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 344 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.2623 -s 1 -d 3 -p ack -e 40 -c 0 -i 325 -a 1 -x {1.1.3.0 0.0.3.0 154 ------- null} + -t 19.2623 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {0.0.3.0 1.1.3.0 174 ------- null} - -t 19.2623 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {0.0.3.0 1.1.3.0 174 ------- null} h -t 19.2623 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.2639 -s 1 -d 3 -p ack -e 40 -c 0 -i 326 -a 1 -x {1.1.3.0 0.0.3.0 155 ------- null} + -t 19.2639 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {0.0.3.0 1.1.3.0 175 ------- null} - -t 19.2639 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {0.0.3.0 1.1.3.0 175 ------- null} h -t 19.2639 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.2655 -s 1 -d 3 -p ack -e 40 -c 0 -i 327 -a 1 -x {1.1.3.0 0.0.3.0 156 ------- null} + -t 19.2655 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {0.0.3.0 1.1.3.0 176 ------- null} - -t 19.2655 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {0.0.3.0 1.1.3.0 176 ------- null} h -t 19.2655 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.2671 -s 1 -d 3 -p ack -e 40 -c 0 -i 328 -a 1 -x {1.1.3.0 0.0.3.0 157 ------- null} + -t 19.2671 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {0.0.3.0 1.1.3.0 177 ------- null} - -t 19.2671 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {0.0.3.0 1.1.3.0 177 ------- null} h -t 19.2671 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.2687 -s 1 -d 3 -p ack -e 40 -c 0 -i 329 -a 1 -x {1.1.3.0 0.0.3.0 158 ------- null} + -t 19.2687 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {0.0.3.0 1.1.3.0 178 ------- null} - -t 19.2687 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {0.0.3.0 1.1.3.0 178 ------- null} h -t 19.2687 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.2703 -s 1 -d 3 -p ack -e 40 -c 0 -i 330 -a 1 -x {1.1.3.0 0.0.3.0 159 ------- null} + -t 19.2703 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {0.0.3.0 1.1.3.0 179 ------- null} - -t 19.2703 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {0.0.3.0 1.1.3.0 179 ------- null} h -t 19.2703 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.2719 -s 1 -d 3 -p ack -e 40 -c 0 -i 331 -a 1 -x {1.1.3.0 0.0.3.0 160 ------- null} + -t 19.2719 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {0.0.3.0 1.1.3.0 180 ------- null} - -t 19.2719 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {0.0.3.0 1.1.3.0 180 ------- null} h -t 19.2719 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.2735 -s 1 -d 3 -p ack -e 40 -c 0 -i 332 -a 1 -x {1.1.3.0 0.0.3.0 161 ------- null} + -t 19.2735 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {0.0.3.0 1.1.3.0 181 ------- null} - -t 19.2735 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {0.0.3.0 1.1.3.0 181 ------- null} h -t 19.2735 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.2751 -s 1 -d 3 -p ack -e 40 -c 0 -i 333 -a 1 -x {1.1.3.0 0.0.3.0 162 ------- null} + -t 19.2751 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {0.0.3.0 1.1.3.0 182 ------- null} - -t 19.2751 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {0.0.3.0 1.1.3.0 182 ------- null} h -t 19.2751 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.2767 -s 1 -d 3 -p ack -e 40 -c 0 -i 334 -a 1 -x {1.1.3.0 0.0.3.0 163 ------- null} + -t 19.2767 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {0.0.3.0 1.1.3.0 183 ------- null} - -t 19.2767 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {0.0.3.0 1.1.3.0 183 ------- null} h -t 19.2767 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.2783 -s 1 -d 3 -p ack -e 40 -c 0 -i 335 -a 1 -x {1.1.3.0 0.0.3.0 164 ------- null} + -t 19.2783 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {0.0.3.0 1.1.3.0 184 ------- null} - -t 19.2783 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {0.0.3.0 1.1.3.0 184 ------- null} h -t 19.2783 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.2799 -s 1 -d 3 -p ack -e 40 -c 0 -i 336 -a 1 -x {1.1.3.0 0.0.3.0 165 ------- null} + -t 19.2799 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 356 -a 0 -x {0.0.3.0 1.1.3.0 185 ------- null} - -t 19.2799 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 356 -a 0 -x {0.0.3.0 1.1.3.0 185 ------- null} h -t 19.2799 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 356 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.2815 -s 1 -d 3 -p ack -e 40 -c 0 -i 337 -a 1 -x {1.1.3.0 0.0.3.0 166 ------- null} + -t 19.2815 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {0.0.3.0 1.1.3.0 186 ------- null} - -t 19.2815 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {0.0.3.0 1.1.3.0 186 ------- null} h -t 19.2815 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.2831 -s 1 -d 3 -p ack -e 40 -c 0 -i 338 -a 1 -x {1.1.3.0 0.0.3.0 167 ------- null} + -t 19.2831 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 358 -a 0 -x {0.0.3.0 1.1.3.0 187 ------- null} - -t 19.2831 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 358 -a 0 -x {0.0.3.0 1.1.3.0 187 ------- null} h -t 19.2831 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 358 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.2847 -s 1 -d 3 -p ack -e 40 -c 0 -i 339 -a 1 -x {1.1.3.0 0.0.3.0 168 ------- null} + -t 19.2847 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {0.0.3.0 1.1.3.0 188 ------- null} - -t 19.2847 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {0.0.3.0 1.1.3.0 188 ------- null} h -t 19.2847 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.2863 -s 1 -d 3 -p ack -e 40 -c 0 -i 340 -a 1 -x {1.1.3.0 0.0.3.0 169 ------- null} + -t 19.2863 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 360 -a 0 -x {0.0.3.0 1.1.3.0 189 ------- null} - -t 19.2863 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 360 -a 0 -x {0.0.3.0 1.1.3.0 189 ------- null} h -t 19.2863 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 360 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.2879 -s 1 -d 3 -p ack -e 40 -c 0 -i 341 -a 1 -x {1.1.3.0 0.0.3.0 170 ------- null} + -t 19.2879 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {0.0.3.0 1.1.3.0 190 ------- null} - -t 19.2879 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {0.0.3.0 1.1.3.0 190 ------- null} h -t 19.2879 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.4191 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 342 -a 0 -x {0.0.3.0 1.1.3.0 171 ------- null} + -t 19.4191 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 342 -a 0 -x {0.0.3.0 1.1.3.0 171 ------- null} - -t 19.4191 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 342 -a 0 -x {0.0.3.0 1.1.3.0 171 ------- null} h -t 19.4191 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 342 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.4207 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {0.0.3.0 1.1.3.0 172 ------- null} + -t 19.4207 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {0.0.3.0 1.1.3.0 172 ------- null} - -t 19.4207 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {0.0.3.0 1.1.3.0 172 ------- null} h -t 19.4207 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.4223 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 344 -a 0 -x {0.0.3.0 1.1.3.0 173 ------- null} + -t 19.4223 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 344 -a 0 -x {0.0.3.0 1.1.3.0 173 ------- null} - -t 19.4223 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 344 -a 0 -x {0.0.3.0 1.1.3.0 173 ------- null} h -t 19.4223 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 344 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.4239 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {0.0.3.0 1.1.3.0 174 ------- null} + -t 19.4239 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {0.0.3.0 1.1.3.0 174 ------- null} - -t 19.4239 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {0.0.3.0 1.1.3.0 174 ------- null} h -t 19.4239 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.4255 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {0.0.3.0 1.1.3.0 175 ------- null} + -t 19.4255 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {0.0.3.0 1.1.3.0 175 ------- null} - -t 19.4255 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {0.0.3.0 1.1.3.0 175 ------- null} h -t 19.4255 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.4271 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {0.0.3.0 1.1.3.0 176 ------- null} + -t 19.4271 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {0.0.3.0 1.1.3.0 176 ------- null} - -t 19.4271 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {0.0.3.0 1.1.3.0 176 ------- null} h -t 19.4271 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.4287 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {0.0.3.0 1.1.3.0 177 ------- null} + -t 19.4287 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {0.0.3.0 1.1.3.0 177 ------- null} - -t 19.4287 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {0.0.3.0 1.1.3.0 177 ------- null} h -t 19.4287 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.4303 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {0.0.3.0 1.1.3.0 178 ------- null} + -t 19.4303 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {0.0.3.0 1.1.3.0 178 ------- null} - -t 19.4303 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {0.0.3.0 1.1.3.0 178 ------- null} h -t 19.4303 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.4319 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {0.0.3.0 1.1.3.0 179 ------- null} + -t 19.4319 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {0.0.3.0 1.1.3.0 179 ------- null} - -t 19.4319 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {0.0.3.0 1.1.3.0 179 ------- null} h -t 19.4319 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.4335 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {0.0.3.0 1.1.3.0 180 ------- null} + -t 19.4335 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {0.0.3.0 1.1.3.0 180 ------- null} - -t 19.4335 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {0.0.3.0 1.1.3.0 180 ------- null} h -t 19.4335 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.4351 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {0.0.3.0 1.1.3.0 181 ------- null} + -t 19.4351 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {0.0.3.0 1.1.3.0 181 ------- null} - -t 19.4351 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {0.0.3.0 1.1.3.0 181 ------- null} h -t 19.4351 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.4367 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {0.0.3.0 1.1.3.0 182 ------- null} + -t 19.4367 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {0.0.3.0 1.1.3.0 182 ------- null} - -t 19.4367 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {0.0.3.0 1.1.3.0 182 ------- null} h -t 19.4367 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.4383 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {0.0.3.0 1.1.3.0 183 ------- null} + -t 19.4383 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {0.0.3.0 1.1.3.0 183 ------- null} - -t 19.4383 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {0.0.3.0 1.1.3.0 183 ------- null} h -t 19.4383 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.4399 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {0.0.3.0 1.1.3.0 184 ------- null} + -t 19.4399 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {0.0.3.0 1.1.3.0 184 ------- null} - -t 19.4399 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {0.0.3.0 1.1.3.0 184 ------- null} h -t 19.4399 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.4415 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 356 -a 0 -x {0.0.3.0 1.1.3.0 185 ------- null} + -t 19.4415 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 356 -a 0 -x {0.0.3.0 1.1.3.0 185 ------- null} - -t 19.4415 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 356 -a 0 -x {0.0.3.0 1.1.3.0 185 ------- null} h -t 19.4415 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 356 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.4431 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {0.0.3.0 1.1.3.0 186 ------- null} + -t 19.4431 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {0.0.3.0 1.1.3.0 186 ------- null} - -t 19.4431 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {0.0.3.0 1.1.3.0 186 ------- null} h -t 19.4431 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.4447 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 358 -a 0 -x {0.0.3.0 1.1.3.0 187 ------- null} + -t 19.4447 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 358 -a 0 -x {0.0.3.0 1.1.3.0 187 ------- null} - -t 19.4447 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 358 -a 0 -x {0.0.3.0 1.1.3.0 187 ------- null} h -t 19.4447 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 358 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.4463 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {0.0.3.0 1.1.3.0 188 ------- null} + -t 19.4463 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {0.0.3.0 1.1.3.0 188 ------- null} - -t 19.4463 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {0.0.3.0 1.1.3.0 188 ------- null} h -t 19.4463 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.4479 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 360 -a 0 -x {0.0.3.0 1.1.3.0 189 ------- null} + -t 19.4479 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 360 -a 0 -x {0.0.3.0 1.1.3.0 189 ------- null} - -t 19.4479 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 360 -a 0 -x {0.0.3.0 1.1.3.0 189 ------- null} h -t 19.4479 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 360 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.4495 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {0.0.3.0 1.1.3.0 190 ------- null} + -t 19.4495 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {0.0.3.0 1.1.3.0 190 ------- null} - -t 19.4495 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {0.0.3.0 1.1.3.0 190 ------- null} h -t 19.4495 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.7207 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 342 -a 0 -x {0.0.3.0 1.1.3.0 171 ------- null} + -t 19.7207 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 342 -a 0 -x {0.0.3.0 1.1.3.0 171 ------- null} - -t 19.7207 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 342 -a 0 -x {0.0.3.0 1.1.3.0 171 ------- null} h -t 19.7207 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 342 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.7223 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {0.0.3.0 1.1.3.0 172 ------- null} + -t 19.7223 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {0.0.3.0 1.1.3.0 172 ------- null} - -t 19.7223 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {0.0.3.0 1.1.3.0 172 ------- null} h -t 19.7223 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.7239 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 344 -a 0 -x {0.0.3.0 1.1.3.0 173 ------- null} + -t 19.7239 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 344 -a 0 -x {0.0.3.0 1.1.3.0 173 ------- null} - -t 19.7239 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 344 -a 0 -x {0.0.3.0 1.1.3.0 173 ------- null} h -t 19.7239 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 344 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.7255 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {0.0.3.0 1.1.3.0 174 ------- null} + -t 19.7255 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {0.0.3.0 1.1.3.0 174 ------- null} - -t 19.7255 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {0.0.3.0 1.1.3.0 174 ------- null} h -t 19.7255 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.7271 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {0.0.3.0 1.1.3.0 175 ------- null} + -t 19.7271 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {0.0.3.0 1.1.3.0 175 ------- null} - -t 19.7271 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {0.0.3.0 1.1.3.0 175 ------- null} h -t 19.7271 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.7287 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {0.0.3.0 1.1.3.0 176 ------- null} + -t 19.7287 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {0.0.3.0 1.1.3.0 176 ------- null} - -t 19.7287 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {0.0.3.0 1.1.3.0 176 ------- null} h -t 19.7287 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.7303 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {0.0.3.0 1.1.3.0 177 ------- null} + -t 19.7303 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {0.0.3.0 1.1.3.0 177 ------- null} - -t 19.7303 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {0.0.3.0 1.1.3.0 177 ------- null} h -t 19.7303 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.7319 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {0.0.3.0 1.1.3.0 178 ------- null} + -t 19.7319 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {0.0.3.0 1.1.3.0 178 ------- null} - -t 19.7319 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {0.0.3.0 1.1.3.0 178 ------- null} h -t 19.7319 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.7335 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {0.0.3.0 1.1.3.0 179 ------- null} + -t 19.7335 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {0.0.3.0 1.1.3.0 179 ------- null} - -t 19.7335 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {0.0.3.0 1.1.3.0 179 ------- null} h -t 19.7335 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.7351 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {0.0.3.0 1.1.3.0 180 ------- null} + -t 19.7351 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {0.0.3.0 1.1.3.0 180 ------- null} - -t 19.7351 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {0.0.3.0 1.1.3.0 180 ------- null} h -t 19.7351 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.7367 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {0.0.3.0 1.1.3.0 181 ------- null} + -t 19.7367 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {0.0.3.0 1.1.3.0 181 ------- null} - -t 19.7367 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {0.0.3.0 1.1.3.0 181 ------- null} h -t 19.7367 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.7383 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {0.0.3.0 1.1.3.0 182 ------- null} + -t 19.7383 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {0.0.3.0 1.1.3.0 182 ------- null} - -t 19.7383 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {0.0.3.0 1.1.3.0 182 ------- null} h -t 19.7383 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.7399 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {0.0.3.0 1.1.3.0 183 ------- null} + -t 19.7399 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {0.0.3.0 1.1.3.0 183 ------- null} - -t 19.7399 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {0.0.3.0 1.1.3.0 183 ------- null} h -t 19.7399 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.7415 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {0.0.3.0 1.1.3.0 184 ------- null} + -t 19.7415 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {0.0.3.0 1.1.3.0 184 ------- null} - -t 19.7415 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {0.0.3.0 1.1.3.0 184 ------- null} h -t 19.7415 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.7431 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 356 -a 0 -x {0.0.3.0 1.1.3.0 185 ------- null} + -t 19.7431 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 356 -a 0 -x {0.0.3.0 1.1.3.0 185 ------- null} - -t 19.7431 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 356 -a 0 -x {0.0.3.0 1.1.3.0 185 ------- null} h -t 19.7431 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 356 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.7447 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {0.0.3.0 1.1.3.0 186 ------- null} + -t 19.7447 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {0.0.3.0 1.1.3.0 186 ------- null} - -t 19.7447 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {0.0.3.0 1.1.3.0 186 ------- null} h -t 19.7447 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.7463 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 358 -a 0 -x {0.0.3.0 1.1.3.0 187 ------- null} + -t 19.7463 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 358 -a 0 -x {0.0.3.0 1.1.3.0 187 ------- null} - -t 19.7463 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 358 -a 0 -x {0.0.3.0 1.1.3.0 187 ------- null} h -t 19.7463 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 358 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.7479 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {0.0.3.0 1.1.3.0 188 ------- null} + -t 19.7479 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {0.0.3.0 1.1.3.0 188 ------- null} - -t 19.7479 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {0.0.3.0 1.1.3.0 188 ------- null} h -t 19.7479 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.7495 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 360 -a 0 -x {0.0.3.0 1.1.3.0 189 ------- null} + -t 19.7495 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 360 -a 0 -x {0.0.3.0 1.1.3.0 189 ------- null} - -t 19.7495 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 360 -a 0 -x {0.0.3.0 1.1.3.0 189 ------- null} h -t 19.7495 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 360 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.7511 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {0.0.3.0 1.1.3.0 190 ------- null} + -t 19.7511 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {0.0.3.0 1.1.3.0 190 ------- null} - -t 19.7511 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {0.0.3.0 1.1.3.0 190 ------- null} h -t 19.7511 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.8223 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 342 -a 0 -x {0.0.3.0 1.1.3.0 171 ------- null} + -t 19.8223 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 342 -a 0 -x {0.0.3.0 1.1.3.0 171 ------- null} - -t 19.8223 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 342 -a 0 -x {0.0.3.0 1.1.3.0 171 ------- null} h -t 19.8223 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 342 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.8239 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {0.0.3.0 1.1.3.0 172 ------- null} + -t 19.8239 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {0.0.3.0 1.1.3.0 172 ------- null} - -t 19.8239 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {0.0.3.0 1.1.3.0 172 ------- null} h -t 19.8239 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.8255 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 344 -a 0 -x {0.0.3.0 1.1.3.0 173 ------- null} + -t 19.8255 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 344 -a 0 -x {0.0.3.0 1.1.3.0 173 ------- null} - -t 19.8255 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 344 -a 0 -x {0.0.3.0 1.1.3.0 173 ------- null} h -t 19.8255 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 344 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.8271 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {0.0.3.0 1.1.3.0 174 ------- null} + -t 19.8271 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {0.0.3.0 1.1.3.0 174 ------- null} - -t 19.8271 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {0.0.3.0 1.1.3.0 174 ------- null} h -t 19.8271 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.8287 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {0.0.3.0 1.1.3.0 175 ------- null} + -t 19.8287 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {0.0.3.0 1.1.3.0 175 ------- null} - -t 19.8287 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {0.0.3.0 1.1.3.0 175 ------- null} h -t 19.8287 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.8303 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {0.0.3.0 1.1.3.0 176 ------- null} + -t 19.8303 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {0.0.3.0 1.1.3.0 176 ------- null} - -t 19.8303 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {0.0.3.0 1.1.3.0 176 ------- null} h -t 19.8303 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.8319 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {0.0.3.0 1.1.3.0 177 ------- null} + -t 19.8319 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {0.0.3.0 1.1.3.0 177 ------- null} - -t 19.8319 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {0.0.3.0 1.1.3.0 177 ------- null} h -t 19.8319 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.8335 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {0.0.3.0 1.1.3.0 178 ------- null} + -t 19.8335 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {0.0.3.0 1.1.3.0 178 ------- null} - -t 19.8335 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {0.0.3.0 1.1.3.0 178 ------- null} h -t 19.8335 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.8351 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {0.0.3.0 1.1.3.0 179 ------- null} + -t 19.8351 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {0.0.3.0 1.1.3.0 179 ------- null} - -t 19.8351 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {0.0.3.0 1.1.3.0 179 ------- null} h -t 19.8351 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.8367 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {0.0.3.0 1.1.3.0 180 ------- null} + -t 19.8367 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {0.0.3.0 1.1.3.0 180 ------- null} - -t 19.8367 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {0.0.3.0 1.1.3.0 180 ------- null} h -t 19.8367 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.8383 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {0.0.3.0 1.1.3.0 181 ------- null} + -t 19.8383 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {0.0.3.0 1.1.3.0 181 ------- null} - -t 19.8383 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {0.0.3.0 1.1.3.0 181 ------- null} h -t 19.8383 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.8399 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {0.0.3.0 1.1.3.0 182 ------- null} + -t 19.8399 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {0.0.3.0 1.1.3.0 182 ------- null} - -t 19.8399 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {0.0.3.0 1.1.3.0 182 ------- null} h -t 19.8399 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.8415 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {0.0.3.0 1.1.3.0 183 ------- null} + -t 19.8415 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {0.0.3.0 1.1.3.0 183 ------- null} - -t 19.8415 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {0.0.3.0 1.1.3.0 183 ------- null} h -t 19.8415 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.8431 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {0.0.3.0 1.1.3.0 184 ------- null} + -t 19.8431 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {0.0.3.0 1.1.3.0 184 ------- null} - -t 19.8431 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {0.0.3.0 1.1.3.0 184 ------- null} h -t 19.8431 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.8447 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 356 -a 0 -x {0.0.3.0 1.1.3.0 185 ------- null} + -t 19.8447 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 356 -a 0 -x {0.0.3.0 1.1.3.0 185 ------- null} - -t 19.8447 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 356 -a 0 -x {0.0.3.0 1.1.3.0 185 ------- null} h -t 19.8447 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 356 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.8463 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {0.0.3.0 1.1.3.0 186 ------- null} + -t 19.8463 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {0.0.3.0 1.1.3.0 186 ------- null} - -t 19.8463 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {0.0.3.0 1.1.3.0 186 ------- null} h -t 19.8463 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.8479 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 358 -a 0 -x {0.0.3.0 1.1.3.0 187 ------- null} + -t 19.8479 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 358 -a 0 -x {0.0.3.0 1.1.3.0 187 ------- null} - -t 19.8479 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 358 -a 0 -x {0.0.3.0 1.1.3.0 187 ------- null} h -t 19.8479 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 358 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.8495 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {0.0.3.0 1.1.3.0 188 ------- null} + -t 19.8495 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {0.0.3.0 1.1.3.0 188 ------- null} - -t 19.8495 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {0.0.3.0 1.1.3.0 188 ------- null} h -t 19.8495 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.8511 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 360 -a 0 -x {0.0.3.0 1.1.3.0 189 ------- null} + -t 19.8511 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 360 -a 0 -x {0.0.3.0 1.1.3.0 189 ------- null} - -t 19.8511 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 360 -a 0 -x {0.0.3.0 1.1.3.0 189 ------- null} h -t 19.8511 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 360 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.8527 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {0.0.3.0 1.1.3.0 190 ------- null} + -t 19.8527 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {0.0.3.0 1.1.3.0 190 ------- null} - -t 19.8527 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {0.0.3.0 1.1.3.0 190 ------- null} h -t 19.8527 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.9039 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 342 -a 0 -x {0.0.3.0 1.1.3.0 171 ------- null} + -t 19.9039 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 342 -a 0 -x {0.0.3.0 1.1.3.0 171 ------- null} - -t 19.9039 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 342 -a 0 -x {0.0.3.0 1.1.3.0 171 ------- null} h -t 19.9039 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 342 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.9055 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {0.0.3.0 1.1.3.0 172 ------- null} + -t 19.9055 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {0.0.3.0 1.1.3.0 172 ------- null} - -t 19.9055 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {0.0.3.0 1.1.3.0 172 ------- null} h -t 19.9055 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.9071 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 344 -a 0 -x {0.0.3.0 1.1.3.0 173 ------- null} + -t 19.9071 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 344 -a 0 -x {0.0.3.0 1.1.3.0 173 ------- null} - -t 19.9071 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 344 -a 0 -x {0.0.3.0 1.1.3.0 173 ------- null} h -t 19.9071 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 344 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.9087 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {0.0.3.0 1.1.3.0 174 ------- null} + -t 19.9087 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {0.0.3.0 1.1.3.0 174 ------- null} - -t 19.9087 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {0.0.3.0 1.1.3.0 174 ------- null} h -t 19.9087 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.9103 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {0.0.3.0 1.1.3.0 175 ------- null} + -t 19.9103 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {0.0.3.0 1.1.3.0 175 ------- null} - -t 19.9103 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {0.0.3.0 1.1.3.0 175 ------- null} h -t 19.9103 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.9119 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {0.0.3.0 1.1.3.0 176 ------- null} + -t 19.9119 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {0.0.3.0 1.1.3.0 176 ------- null} - -t 19.9119 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {0.0.3.0 1.1.3.0 176 ------- null} h -t 19.9119 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.9135 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {0.0.3.0 1.1.3.0 177 ------- null} + -t 19.9135 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {0.0.3.0 1.1.3.0 177 ------- null} - -t 19.9135 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {0.0.3.0 1.1.3.0 177 ------- null} h -t 19.9135 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.9151 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {0.0.3.0 1.1.3.0 178 ------- null} + -t 19.9151 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {0.0.3.0 1.1.3.0 178 ------- null} - -t 19.9151 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {0.0.3.0 1.1.3.0 178 ------- null} h -t 19.9151 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.9167 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {0.0.3.0 1.1.3.0 179 ------- null} + -t 19.9167 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {0.0.3.0 1.1.3.0 179 ------- null} - -t 19.9167 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {0.0.3.0 1.1.3.0 179 ------- null} h -t 19.9167 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.9183 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {0.0.3.0 1.1.3.0 180 ------- null} + -t 19.9183 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {0.0.3.0 1.1.3.0 180 ------- null} - -t 19.9183 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {0.0.3.0 1.1.3.0 180 ------- null} h -t 19.9183 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.9199 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {0.0.3.0 1.1.3.0 181 ------- null} + -t 19.9199 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {0.0.3.0 1.1.3.0 181 ------- null} - -t 19.9199 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {0.0.3.0 1.1.3.0 181 ------- null} h -t 19.9199 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.9215 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {0.0.3.0 1.1.3.0 182 ------- null} + -t 19.9215 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {0.0.3.0 1.1.3.0 182 ------- null} - -t 19.9215 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {0.0.3.0 1.1.3.0 182 ------- null} h -t 19.9215 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.9231 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {0.0.3.0 1.1.3.0 183 ------- null} + -t 19.9231 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {0.0.3.0 1.1.3.0 183 ------- null} - -t 19.9231 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {0.0.3.0 1.1.3.0 183 ------- null} h -t 19.9231 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.9247 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {0.0.3.0 1.1.3.0 184 ------- null} + -t 19.9247 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {0.0.3.0 1.1.3.0 184 ------- null} - -t 19.9247 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {0.0.3.0 1.1.3.0 184 ------- null} h -t 19.9247 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.9263 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 356 -a 0 -x {0.0.3.0 1.1.3.0 185 ------- null} + -t 19.9263 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 356 -a 0 -x {0.0.3.0 1.1.3.0 185 ------- null} - -t 19.9263 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 356 -a 0 -x {0.0.3.0 1.1.3.0 185 ------- null} h -t 19.9263 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 356 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.9279 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {0.0.3.0 1.1.3.0 186 ------- null} + -t 19.9279 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {0.0.3.0 1.1.3.0 186 ------- null} - -t 19.9279 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {0.0.3.0 1.1.3.0 186 ------- null} h -t 19.9279 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.9295 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 358 -a 0 -x {0.0.3.0 1.1.3.0 187 ------- null} + -t 19.9295 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 358 -a 0 -x {0.0.3.0 1.1.3.0 187 ------- null} - -t 19.9295 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 358 -a 0 -x {0.0.3.0 1.1.3.0 187 ------- null} h -t 19.9295 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 358 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.9311 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {0.0.3.0 1.1.3.0 188 ------- null} + -t 19.9311 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {0.0.3.0 1.1.3.0 188 ------- null} - -t 19.9311 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {0.0.3.0 1.1.3.0 188 ------- null} h -t 19.9311 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.9327 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 360 -a 0 -x {0.0.3.0 1.1.3.0 189 ------- null} + -t 19.9327 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 360 -a 0 -x {0.0.3.0 1.1.3.0 189 ------- null} - -t 19.9327 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 360 -a 0 -x {0.0.3.0 1.1.3.0 189 ------- null} h -t 19.9327 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 360 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.9343 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {0.0.3.0 1.1.3.0 190 ------- null} + -t 19.9343 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {0.0.3.0 1.1.3.0 190 ------- null} - -t 19.9343 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {0.0.3.0 1.1.3.0 190 ------- null} h -t 19.9343 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.9855 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 342 -a 0 -x {0.0.3.0 1.1.3.0 171 ------- null} + -t 19.9855 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 342 -a 0 -x {0.0.3.0 1.1.3.0 171 ------- null} - -t 19.9855 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 342 -a 0 -x {0.0.3.0 1.1.3.0 171 ------- null} h -t 19.9855 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 342 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.9871 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {0.0.3.0 1.1.3.0 172 ------- null} + -t 19.9871 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {0.0.3.0 1.1.3.0 172 ------- null} - -t 19.9871 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {0.0.3.0 1.1.3.0 172 ------- null} h -t 19.9871 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.9887 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 344 -a 0 -x {0.0.3.0 1.1.3.0 173 ------- null} + -t 19.9887 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 344 -a 0 -x {0.0.3.0 1.1.3.0 173 ------- null} - -t 19.9887 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 344 -a 0 -x {0.0.3.0 1.1.3.0 173 ------- null} h -t 19.9887 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 344 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.9903 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {0.0.3.0 1.1.3.0 174 ------- null} + -t 19.9903 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {0.0.3.0 1.1.3.0 174 ------- null} - -t 19.9903 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {0.0.3.0 1.1.3.0 174 ------- null} h -t 19.9903 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.9919 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {0.0.3.0 1.1.3.0 175 ------- null} + -t 19.9919 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {0.0.3.0 1.1.3.0 175 ------- null} - -t 19.9919 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {0.0.3.0 1.1.3.0 175 ------- null} h -t 19.9919 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.9935 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {0.0.3.0 1.1.3.0 176 ------- null} + -t 19.9935 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {0.0.3.0 1.1.3.0 176 ------- null} - -t 19.9935 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {0.0.3.0 1.1.3.0 176 ------- null} h -t 19.9935 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.9951 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {0.0.3.0 1.1.3.0 177 ------- null} + -t 19.9951 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {0.0.3.0 1.1.3.0 177 ------- null} - -t 19.9951 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {0.0.3.0 1.1.3.0 177 ------- null} h -t 19.9951 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.9967 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {0.0.3.0 1.1.3.0 178 ------- null} + -t 19.9967 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {0.0.3.0 1.1.3.0 178 ------- null} - -t 19.9967 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {0.0.3.0 1.1.3.0 178 ------- null} h -t 19.9967 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.9983 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {0.0.3.0 1.1.3.0 179 ------- null} + -t 19.9983 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {0.0.3.0 1.1.3.0 179 ------- null} - -t 19.9983 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {0.0.3.0 1.1.3.0 179 ------- null} h -t 19.9983 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 19.9999 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {0.0.3.0 1.1.3.0 180 ------- null} + -t 19.9999 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {0.0.3.0 1.1.3.0 180 ------- null} - -t 19.9999 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {0.0.3.0 1.1.3.0 180 ------- null} h -t 19.9999 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 20.0015 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {0.0.3.0 1.1.3.0 181 ------- null} + -t 20.0015 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {0.0.3.0 1.1.3.0 181 ------- null} - -t 20.0015 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {0.0.3.0 1.1.3.0 181 ------- null} h -t 20.0015 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 20.0031 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {0.0.3.0 1.1.3.0 182 ------- null} + -t 20.0031 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {0.0.3.0 1.1.3.0 182 ------- null} - -t 20.0031 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {0.0.3.0 1.1.3.0 182 ------- null} h -t 20.0031 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 20.0047 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {0.0.3.0 1.1.3.0 183 ------- null} + -t 20.0047 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {0.0.3.0 1.1.3.0 183 ------- null} - -t 20.0047 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {0.0.3.0 1.1.3.0 183 ------- null} h -t 20.0047 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 20.0063 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {0.0.3.0 1.1.3.0 184 ------- null} + -t 20.0063 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {0.0.3.0 1.1.3.0 184 ------- null} - -t 20.0063 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {0.0.3.0 1.1.3.0 184 ------- null} h -t 20.0063 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 20.0079 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 356 -a 0 -x {0.0.3.0 1.1.3.0 185 ------- null} + -t 20.0079 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 356 -a 0 -x {0.0.3.0 1.1.3.0 185 ------- null} - -t 20.0079 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 356 -a 0 -x {0.0.3.0 1.1.3.0 185 ------- null} h -t 20.0079 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 356 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 20.0095 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {0.0.3.0 1.1.3.0 186 ------- null} + -t 20.0095 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {0.0.3.0 1.1.3.0 186 ------- null} - -t 20.0095 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {0.0.3.0 1.1.3.0 186 ------- null} h -t 20.0095 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 20.0111 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 358 -a 0 -x {0.0.3.0 1.1.3.0 187 ------- null} + -t 20.0111 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 358 -a 0 -x {0.0.3.0 1.1.3.0 187 ------- null} - -t 20.0111 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 358 -a 0 -x {0.0.3.0 1.1.3.0 187 ------- null} h -t 20.0111 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 358 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 20.0127 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {0.0.3.0 1.1.3.0 188 ------- null} + -t 20.0127 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {0.0.3.0 1.1.3.0 188 ------- null} - -t 20.0127 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {0.0.3.0 1.1.3.0 188 ------- null} h -t 20.0127 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 20.0143 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 360 -a 0 -x {0.0.3.0 1.1.3.0 189 ------- null} + -t 20.0143 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 360 -a 0 -x {0.0.3.0 1.1.3.0 189 ------- null} - -t 20.0143 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 360 -a 0 -x {0.0.3.0 1.1.3.0 189 ------- null} h -t 20.0143 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 360 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 20.0159 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {0.0.3.0 1.1.3.0 190 ------- null} + -t 20.0159 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {0.0.3.0 1.1.3.0 190 ------- null} - -t 20.0159 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {0.0.3.0 1.1.3.0 190 ------- null} h -t 20.0159 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 20.0471 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 342 -a 0 -x {0.0.3.0 1.1.3.0 171 ------- null} + -t 20.0471 -s 21 -d 28 -p ack -e 40 -c 0 -i 362 -a 1 -x {1.1.3.0 0.0.3.0 171 ------- null} - -t 20.0471 -s 21 -d 28 -p ack -e 40 -c 0 -i 362 -a 1 -x {1.1.3.0 0.0.3.0 171 ------- null} h -t 20.0471 -s 21 -d 28 -p ack -e 40 -c 0 -i 362 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.0487 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {0.0.3.0 1.1.3.0 172 ------- null} + -t 20.0487 -s 21 -d 28 -p ack -e 40 -c 0 -i 363 -a 1 -x {1.1.3.0 0.0.3.0 172 ------- null} - -t 20.0487 -s 21 -d 28 -p ack -e 40 -c 0 -i 363 -a 1 -x {1.1.3.0 0.0.3.0 172 ------- null} h -t 20.0487 -s 21 -d 28 -p ack -e 40 -c 0 -i 363 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.0503 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 344 -a 0 -x {0.0.3.0 1.1.3.0 173 ------- null} + -t 20.0503 -s 21 -d 28 -p ack -e 40 -c 0 -i 364 -a 1 -x {1.1.3.0 0.0.3.0 173 ------- null} - -t 20.0503 -s 21 -d 28 -p ack -e 40 -c 0 -i 364 -a 1 -x {1.1.3.0 0.0.3.0 173 ------- null} h -t 20.0503 -s 21 -d 28 -p ack -e 40 -c 0 -i 364 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.0519 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {0.0.3.0 1.1.3.0 174 ------- null} + -t 20.0519 -s 21 -d 28 -p ack -e 40 -c 0 -i 365 -a 1 -x {1.1.3.0 0.0.3.0 174 ------- null} - -t 20.0519 -s 21 -d 28 -p ack -e 40 -c 0 -i 365 -a 1 -x {1.1.3.0 0.0.3.0 174 ------- null} h -t 20.0519 -s 21 -d 28 -p ack -e 40 -c 0 -i 365 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.0535 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 346 -a 0 -x {0.0.3.0 1.1.3.0 175 ------- null} + -t 20.0535 -s 21 -d 28 -p ack -e 40 -c 0 -i 366 -a 1 -x {1.1.3.0 0.0.3.0 175 ------- null} - -t 20.0535 -s 21 -d 28 -p ack -e 40 -c 0 -i 366 -a 1 -x {1.1.3.0 0.0.3.0 175 ------- null} h -t 20.0535 -s 21 -d 28 -p ack -e 40 -c 0 -i 366 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.0551 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {0.0.3.0 1.1.3.0 176 ------- null} + -t 20.0551 -s 21 -d 28 -p ack -e 40 -c 0 -i 367 -a 1 -x {1.1.3.0 0.0.3.0 176 ------- null} - -t 20.0551 -s 21 -d 28 -p ack -e 40 -c 0 -i 367 -a 1 -x {1.1.3.0 0.0.3.0 176 ------- null} h -t 20.0551 -s 21 -d 28 -p ack -e 40 -c 0 -i 367 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.0567 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 348 -a 0 -x {0.0.3.0 1.1.3.0 177 ------- null} + -t 20.0567 -s 21 -d 28 -p ack -e 40 -c 0 -i 368 -a 1 -x {1.1.3.0 0.0.3.0 177 ------- null} - -t 20.0567 -s 21 -d 28 -p ack -e 40 -c 0 -i 368 -a 1 -x {1.1.3.0 0.0.3.0 177 ------- null} h -t 20.0567 -s 21 -d 28 -p ack -e 40 -c 0 -i 368 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.0583 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {0.0.3.0 1.1.3.0 178 ------- null} + -t 20.0583 -s 21 -d 28 -p ack -e 40 -c 0 -i 369 -a 1 -x {1.1.3.0 0.0.3.0 178 ------- null} - -t 20.0583 -s 21 -d 28 -p ack -e 40 -c 0 -i 369 -a 1 -x {1.1.3.0 0.0.3.0 178 ------- null} h -t 20.0583 -s 21 -d 28 -p ack -e 40 -c 0 -i 369 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.0599 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 350 -a 0 -x {0.0.3.0 1.1.3.0 179 ------- null} + -t 20.0599 -s 21 -d 28 -p ack -e 40 -c 0 -i 370 -a 1 -x {1.1.3.0 0.0.3.0 179 ------- null} - -t 20.0599 -s 21 -d 28 -p ack -e 40 -c 0 -i 370 -a 1 -x {1.1.3.0 0.0.3.0 179 ------- null} h -t 20.0599 -s 21 -d 28 -p ack -e 40 -c 0 -i 370 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.0615 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {0.0.3.0 1.1.3.0 180 ------- null} + -t 20.0615 -s 21 -d 28 -p ack -e 40 -c 0 -i 371 -a 1 -x {1.1.3.0 0.0.3.0 180 ------- null} - -t 20.0615 -s 21 -d 28 -p ack -e 40 -c 0 -i 371 -a 1 -x {1.1.3.0 0.0.3.0 180 ------- null} h -t 20.0615 -s 21 -d 28 -p ack -e 40 -c 0 -i 371 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.0631 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 352 -a 0 -x {0.0.3.0 1.1.3.0 181 ------- null} + -t 20.0631 -s 21 -d 28 -p ack -e 40 -c 0 -i 372 -a 1 -x {1.1.3.0 0.0.3.0 181 ------- null} - -t 20.0631 -s 21 -d 28 -p ack -e 40 -c 0 -i 372 -a 1 -x {1.1.3.0 0.0.3.0 181 ------- null} h -t 20.0631 -s 21 -d 28 -p ack -e 40 -c 0 -i 372 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.0647 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {0.0.3.0 1.1.3.0 182 ------- null} + -t 20.0647 -s 21 -d 28 -p ack -e 40 -c 0 -i 373 -a 1 -x {1.1.3.0 0.0.3.0 182 ------- null} - -t 20.0647 -s 21 -d 28 -p ack -e 40 -c 0 -i 373 -a 1 -x {1.1.3.0 0.0.3.0 182 ------- null} h -t 20.0647 -s 21 -d 28 -p ack -e 40 -c 0 -i 373 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.0663 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 354 -a 0 -x {0.0.3.0 1.1.3.0 183 ------- null} + -t 20.0663 -s 21 -d 28 -p ack -e 40 -c 0 -i 374 -a 1 -x {1.1.3.0 0.0.3.0 183 ------- null} - -t 20.0663 -s 21 -d 28 -p ack -e 40 -c 0 -i 374 -a 1 -x {1.1.3.0 0.0.3.0 183 ------- null} h -t 20.0663 -s 21 -d 28 -p ack -e 40 -c 0 -i 374 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.0679 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {0.0.3.0 1.1.3.0 184 ------- null} + -t 20.0679 -s 21 -d 28 -p ack -e 40 -c 0 -i 375 -a 1 -x {1.1.3.0 0.0.3.0 184 ------- null} - -t 20.0679 -s 21 -d 28 -p ack -e 40 -c 0 -i 375 -a 1 -x {1.1.3.0 0.0.3.0 184 ------- null} h -t 20.0679 -s 21 -d 28 -p ack -e 40 -c 0 -i 375 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.0695 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 356 -a 0 -x {0.0.3.0 1.1.3.0 185 ------- null} + -t 20.0695 -s 21 -d 28 -p ack -e 40 -c 0 -i 376 -a 1 -x {1.1.3.0 0.0.3.0 185 ------- null} - -t 20.0695 -s 21 -d 28 -p ack -e 40 -c 0 -i 376 -a 1 -x {1.1.3.0 0.0.3.0 185 ------- null} h -t 20.0695 -s 21 -d 28 -p ack -e 40 -c 0 -i 376 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.0711 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {0.0.3.0 1.1.3.0 186 ------- null} + -t 20.0711 -s 21 -d 28 -p ack -e 40 -c 0 -i 377 -a 1 -x {1.1.3.0 0.0.3.0 186 ------- null} - -t 20.0711 -s 21 -d 28 -p ack -e 40 -c 0 -i 377 -a 1 -x {1.1.3.0 0.0.3.0 186 ------- null} h -t 20.0711 -s 21 -d 28 -p ack -e 40 -c 0 -i 377 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.0727 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 358 -a 0 -x {0.0.3.0 1.1.3.0 187 ------- null} + -t 20.0727 -s 21 -d 28 -p ack -e 40 -c 0 -i 378 -a 1 -x {1.1.3.0 0.0.3.0 187 ------- null} - -t 20.0727 -s 21 -d 28 -p ack -e 40 -c 0 -i 378 -a 1 -x {1.1.3.0 0.0.3.0 187 ------- null} h -t 20.0727 -s 21 -d 28 -p ack -e 40 -c 0 -i 378 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.0743 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {0.0.3.0 1.1.3.0 188 ------- null} + -t 20.0743 -s 21 -d 28 -p ack -e 40 -c 0 -i 379 -a 1 -x {1.1.3.0 0.0.3.0 188 ------- null} - -t 20.0743 -s 21 -d 28 -p ack -e 40 -c 0 -i 379 -a 1 -x {1.1.3.0 0.0.3.0 188 ------- null} h -t 20.0743 -s 21 -d 28 -p ack -e 40 -c 0 -i 379 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.0759 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 360 -a 0 -x {0.0.3.0 1.1.3.0 189 ------- null} + -t 20.0759 -s 21 -d 28 -p ack -e 40 -c 0 -i 380 -a 1 -x {1.1.3.0 0.0.3.0 189 ------- null} - -t 20.0759 -s 21 -d 28 -p ack -e 40 -c 0 -i 380 -a 1 -x {1.1.3.0 0.0.3.0 189 ------- null} h -t 20.0759 -s 21 -d 28 -p ack -e 40 -c 0 -i 380 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.0775 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {0.0.3.0 1.1.3.0 190 ------- null} + -t 20.0775 -s 21 -d 28 -p ack -e 40 -c 0 -i 381 -a 1 -x {1.1.3.0 0.0.3.0 190 ------- null} - -t 20.0775 -s 21 -d 28 -p ack -e 40 -c 0 -i 381 -a 1 -x {1.1.3.0 0.0.3.0 190 ------- null} h -t 20.0775 -s 21 -d 28 -p ack -e 40 -c 0 -i 381 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.3972 -s 21 -d 28 -p ack -e 40 -c 0 -i 362 -a 1 -x {1.1.3.0 0.0.3.0 171 ------- null} + -t 20.3972 -s 28 -d 1 -p ack -e 40 -c 0 -i 362 -a 1 -x {1.1.3.0 0.0.3.0 171 ------- null} - -t 20.3972 -s 28 -d 1 -p ack -e 40 -c 0 -i 362 -a 1 -x {1.1.3.0 0.0.3.0 171 ------- null} h -t 20.3972 -s 28 -d 1 -p ack -e 40 -c 0 -i 362 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.3988 -s 21 -d 28 -p ack -e 40 -c 0 -i 363 -a 1 -x {1.1.3.0 0.0.3.0 172 ------- null} + -t 20.3988 -s 28 -d 1 -p ack -e 40 -c 0 -i 363 -a 1 -x {1.1.3.0 0.0.3.0 172 ------- null} - -t 20.3988 -s 28 -d 1 -p ack -e 40 -c 0 -i 363 -a 1 -x {1.1.3.0 0.0.3.0 172 ------- null} h -t 20.3988 -s 28 -d 1 -p ack -e 40 -c 0 -i 363 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.4004 -s 21 -d 28 -p ack -e 40 -c 0 -i 364 -a 1 -x {1.1.3.0 0.0.3.0 173 ------- null} + -t 20.4004 -s 28 -d 1 -p ack -e 40 -c 0 -i 364 -a 1 -x {1.1.3.0 0.0.3.0 173 ------- null} - -t 20.4004 -s 28 -d 1 -p ack -e 40 -c 0 -i 364 -a 1 -x {1.1.3.0 0.0.3.0 173 ------- null} h -t 20.4004 -s 28 -d 1 -p ack -e 40 -c 0 -i 364 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.402 -s 21 -d 28 -p ack -e 40 -c 0 -i 365 -a 1 -x {1.1.3.0 0.0.3.0 174 ------- null} + -t 20.402 -s 28 -d 1 -p ack -e 40 -c 0 -i 365 -a 1 -x {1.1.3.0 0.0.3.0 174 ------- null} - -t 20.402 -s 28 -d 1 -p ack -e 40 -c 0 -i 365 -a 1 -x {1.1.3.0 0.0.3.0 174 ------- null} h -t 20.402 -s 28 -d 1 -p ack -e 40 -c 0 -i 365 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.4036 -s 21 -d 28 -p ack -e 40 -c 0 -i 366 -a 1 -x {1.1.3.0 0.0.3.0 175 ------- null} + -t 20.4036 -s 28 -d 1 -p ack -e 40 -c 0 -i 366 -a 1 -x {1.1.3.0 0.0.3.0 175 ------- null} - -t 20.4036 -s 28 -d 1 -p ack -e 40 -c 0 -i 366 -a 1 -x {1.1.3.0 0.0.3.0 175 ------- null} h -t 20.4036 -s 28 -d 1 -p ack -e 40 -c 0 -i 366 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.4052 -s 21 -d 28 -p ack -e 40 -c 0 -i 367 -a 1 -x {1.1.3.0 0.0.3.0 176 ------- null} + -t 20.4052 -s 28 -d 1 -p ack -e 40 -c 0 -i 367 -a 1 -x {1.1.3.0 0.0.3.0 176 ------- null} - -t 20.4052 -s 28 -d 1 -p ack -e 40 -c 0 -i 367 -a 1 -x {1.1.3.0 0.0.3.0 176 ------- null} h -t 20.4052 -s 28 -d 1 -p ack -e 40 -c 0 -i 367 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.4068 -s 21 -d 28 -p ack -e 40 -c 0 -i 368 -a 1 -x {1.1.3.0 0.0.3.0 177 ------- null} + -t 20.4068 -s 28 -d 1 -p ack -e 40 -c 0 -i 368 -a 1 -x {1.1.3.0 0.0.3.0 177 ------- null} - -t 20.4068 -s 28 -d 1 -p ack -e 40 -c 0 -i 368 -a 1 -x {1.1.3.0 0.0.3.0 177 ------- null} h -t 20.4068 -s 28 -d 1 -p ack -e 40 -c 0 -i 368 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.4084 -s 21 -d 28 -p ack -e 40 -c 0 -i 369 -a 1 -x {1.1.3.0 0.0.3.0 178 ------- null} + -t 20.4084 -s 28 -d 1 -p ack -e 40 -c 0 -i 369 -a 1 -x {1.1.3.0 0.0.3.0 178 ------- null} - -t 20.4084 -s 28 -d 1 -p ack -e 40 -c 0 -i 369 -a 1 -x {1.1.3.0 0.0.3.0 178 ------- null} h -t 20.4084 -s 28 -d 1 -p ack -e 40 -c 0 -i 369 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.41 -s 21 -d 28 -p ack -e 40 -c 0 -i 370 -a 1 -x {1.1.3.0 0.0.3.0 179 ------- null} + -t 20.41 -s 28 -d 1 -p ack -e 40 -c 0 -i 370 -a 1 -x {1.1.3.0 0.0.3.0 179 ------- null} - -t 20.41 -s 28 -d 1 -p ack -e 40 -c 0 -i 370 -a 1 -x {1.1.3.0 0.0.3.0 179 ------- null} h -t 20.41 -s 28 -d 1 -p ack -e 40 -c 0 -i 370 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.4116 -s 21 -d 28 -p ack -e 40 -c 0 -i 371 -a 1 -x {1.1.3.0 0.0.3.0 180 ------- null} + -t 20.4116 -s 28 -d 1 -p ack -e 40 -c 0 -i 371 -a 1 -x {1.1.3.0 0.0.3.0 180 ------- null} - -t 20.4116 -s 28 -d 1 -p ack -e 40 -c 0 -i 371 -a 1 -x {1.1.3.0 0.0.3.0 180 ------- null} h -t 20.4116 -s 28 -d 1 -p ack -e 40 -c 0 -i 371 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.4132 -s 21 -d 28 -p ack -e 40 -c 0 -i 372 -a 1 -x {1.1.3.0 0.0.3.0 181 ------- null} + -t 20.4132 -s 28 -d 1 -p ack -e 40 -c 0 -i 372 -a 1 -x {1.1.3.0 0.0.3.0 181 ------- null} - -t 20.4132 -s 28 -d 1 -p ack -e 40 -c 0 -i 372 -a 1 -x {1.1.3.0 0.0.3.0 181 ------- null} h -t 20.4132 -s 28 -d 1 -p ack -e 40 -c 0 -i 372 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.4148 -s 21 -d 28 -p ack -e 40 -c 0 -i 373 -a 1 -x {1.1.3.0 0.0.3.0 182 ------- null} + -t 20.4148 -s 28 -d 1 -p ack -e 40 -c 0 -i 373 -a 1 -x {1.1.3.0 0.0.3.0 182 ------- null} - -t 20.4148 -s 28 -d 1 -p ack -e 40 -c 0 -i 373 -a 1 -x {1.1.3.0 0.0.3.0 182 ------- null} h -t 20.4148 -s 28 -d 1 -p ack -e 40 -c 0 -i 373 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.4164 -s 21 -d 28 -p ack -e 40 -c 0 -i 374 -a 1 -x {1.1.3.0 0.0.3.0 183 ------- null} + -t 20.4164 -s 28 -d 1 -p ack -e 40 -c 0 -i 374 -a 1 -x {1.1.3.0 0.0.3.0 183 ------- null} - -t 20.4164 -s 28 -d 1 -p ack -e 40 -c 0 -i 374 -a 1 -x {1.1.3.0 0.0.3.0 183 ------- null} h -t 20.4164 -s 28 -d 1 -p ack -e 40 -c 0 -i 374 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.418 -s 21 -d 28 -p ack -e 40 -c 0 -i 375 -a 1 -x {1.1.3.0 0.0.3.0 184 ------- null} + -t 20.418 -s 28 -d 1 -p ack -e 40 -c 0 -i 375 -a 1 -x {1.1.3.0 0.0.3.0 184 ------- null} - -t 20.418 -s 28 -d 1 -p ack -e 40 -c 0 -i 375 -a 1 -x {1.1.3.0 0.0.3.0 184 ------- null} h -t 20.418 -s 28 -d 1 -p ack -e 40 -c 0 -i 375 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.4196 -s 21 -d 28 -p ack -e 40 -c 0 -i 376 -a 1 -x {1.1.3.0 0.0.3.0 185 ------- null} + -t 20.4196 -s 28 -d 1 -p ack -e 40 -c 0 -i 376 -a 1 -x {1.1.3.0 0.0.3.0 185 ------- null} - -t 20.4196 -s 28 -d 1 -p ack -e 40 -c 0 -i 376 -a 1 -x {1.1.3.0 0.0.3.0 185 ------- null} h -t 20.4196 -s 28 -d 1 -p ack -e 40 -c 0 -i 376 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.4212 -s 21 -d 28 -p ack -e 40 -c 0 -i 377 -a 1 -x {1.1.3.0 0.0.3.0 186 ------- null} + -t 20.4212 -s 28 -d 1 -p ack -e 40 -c 0 -i 377 -a 1 -x {1.1.3.0 0.0.3.0 186 ------- null} - -t 20.4212 -s 28 -d 1 -p ack -e 40 -c 0 -i 377 -a 1 -x {1.1.3.0 0.0.3.0 186 ------- null} h -t 20.4212 -s 28 -d 1 -p ack -e 40 -c 0 -i 377 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.4228 -s 21 -d 28 -p ack -e 40 -c 0 -i 378 -a 1 -x {1.1.3.0 0.0.3.0 187 ------- null} + -t 20.4228 -s 28 -d 1 -p ack -e 40 -c 0 -i 378 -a 1 -x {1.1.3.0 0.0.3.0 187 ------- null} - -t 20.4228 -s 28 -d 1 -p ack -e 40 -c 0 -i 378 -a 1 -x {1.1.3.0 0.0.3.0 187 ------- null} h -t 20.4228 -s 28 -d 1 -p ack -e 40 -c 0 -i 378 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.4244 -s 21 -d 28 -p ack -e 40 -c 0 -i 379 -a 1 -x {1.1.3.0 0.0.3.0 188 ------- null} + -t 20.4244 -s 28 -d 1 -p ack -e 40 -c 0 -i 379 -a 1 -x {1.1.3.0 0.0.3.0 188 ------- null} - -t 20.4244 -s 28 -d 1 -p ack -e 40 -c 0 -i 379 -a 1 -x {1.1.3.0 0.0.3.0 188 ------- null} h -t 20.4244 -s 28 -d 1 -p ack -e 40 -c 0 -i 379 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.426 -s 21 -d 28 -p ack -e 40 -c 0 -i 380 -a 1 -x {1.1.3.0 0.0.3.0 189 ------- null} + -t 20.426 -s 28 -d 1 -p ack -e 40 -c 0 -i 380 -a 1 -x {1.1.3.0 0.0.3.0 189 ------- null} - -t 20.426 -s 28 -d 1 -p ack -e 40 -c 0 -i 380 -a 1 -x {1.1.3.0 0.0.3.0 189 ------- null} h -t 20.426 -s 28 -d 1 -p ack -e 40 -c 0 -i 380 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.4276 -s 21 -d 28 -p ack -e 40 -c 0 -i 381 -a 1 -x {1.1.3.0 0.0.3.0 190 ------- null} + -t 20.4276 -s 28 -d 1 -p ack -e 40 -c 0 -i 381 -a 1 -x {1.1.3.0 0.0.3.0 190 ------- null} - -t 20.4276 -s 28 -d 1 -p ack -e 40 -c 0 -i 381 -a 1 -x {1.1.3.0 0.0.3.0 190 ------- null} h -t 20.4276 -s 28 -d 1 -p ack -e 40 -c 0 -i 381 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.6972 -s 28 -d 1 -p ack -e 40 -c 0 -i 362 -a 1 -x {1.1.3.0 0.0.3.0 171 ------- null} + -t 20.6972 -s 1 -d 3 -p ack -e 40 -c 0 -i 362 -a 1 -x {1.1.3.0 0.0.3.0 171 ------- null} - -t 20.6972 -s 1 -d 3 -p ack -e 40 -c 0 -i 362 -a 1 -x {1.1.3.0 0.0.3.0 171 ------- null} h -t 20.6972 -s 1 -d 3 -p ack -e 40 -c 0 -i 362 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.6988 -s 28 -d 1 -p ack -e 40 -c 0 -i 363 -a 1 -x {1.1.3.0 0.0.3.0 172 ------- null} + -t 20.6988 -s 1 -d 3 -p ack -e 40 -c 0 -i 363 -a 1 -x {1.1.3.0 0.0.3.0 172 ------- null} - -t 20.6988 -s 1 -d 3 -p ack -e 40 -c 0 -i 363 -a 1 -x {1.1.3.0 0.0.3.0 172 ------- null} h -t 20.6988 -s 1 -d 3 -p ack -e 40 -c 0 -i 363 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.7004 -s 28 -d 1 -p ack -e 40 -c 0 -i 364 -a 1 -x {1.1.3.0 0.0.3.0 173 ------- null} + -t 20.7004 -s 1 -d 3 -p ack -e 40 -c 0 -i 364 -a 1 -x {1.1.3.0 0.0.3.0 173 ------- null} - -t 20.7004 -s 1 -d 3 -p ack -e 40 -c 0 -i 364 -a 1 -x {1.1.3.0 0.0.3.0 173 ------- null} h -t 20.7004 -s 1 -d 3 -p ack -e 40 -c 0 -i 364 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.702 -s 28 -d 1 -p ack -e 40 -c 0 -i 365 -a 1 -x {1.1.3.0 0.0.3.0 174 ------- null} + -t 20.702 -s 1 -d 3 -p ack -e 40 -c 0 -i 365 -a 1 -x {1.1.3.0 0.0.3.0 174 ------- null} - -t 20.702 -s 1 -d 3 -p ack -e 40 -c 0 -i 365 -a 1 -x {1.1.3.0 0.0.3.0 174 ------- null} h -t 20.702 -s 1 -d 3 -p ack -e 40 -c 0 -i 365 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.7036 -s 28 -d 1 -p ack -e 40 -c 0 -i 366 -a 1 -x {1.1.3.0 0.0.3.0 175 ------- null} + -t 20.7036 -s 1 -d 3 -p ack -e 40 -c 0 -i 366 -a 1 -x {1.1.3.0 0.0.3.0 175 ------- null} - -t 20.7036 -s 1 -d 3 -p ack -e 40 -c 0 -i 366 -a 1 -x {1.1.3.0 0.0.3.0 175 ------- null} h -t 20.7036 -s 1 -d 3 -p ack -e 40 -c 0 -i 366 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.7052 -s 28 -d 1 -p ack -e 40 -c 0 -i 367 -a 1 -x {1.1.3.0 0.0.3.0 176 ------- null} + -t 20.7052 -s 1 -d 3 -p ack -e 40 -c 0 -i 367 -a 1 -x {1.1.3.0 0.0.3.0 176 ------- null} - -t 20.7052 -s 1 -d 3 -p ack -e 40 -c 0 -i 367 -a 1 -x {1.1.3.0 0.0.3.0 176 ------- null} h -t 20.7052 -s 1 -d 3 -p ack -e 40 -c 0 -i 367 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.7068 -s 28 -d 1 -p ack -e 40 -c 0 -i 368 -a 1 -x {1.1.3.0 0.0.3.0 177 ------- null} + -t 20.7068 -s 1 -d 3 -p ack -e 40 -c 0 -i 368 -a 1 -x {1.1.3.0 0.0.3.0 177 ------- null} - -t 20.7068 -s 1 -d 3 -p ack -e 40 -c 0 -i 368 -a 1 -x {1.1.3.0 0.0.3.0 177 ------- null} h -t 20.7068 -s 1 -d 3 -p ack -e 40 -c 0 -i 368 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.7084 -s 28 -d 1 -p ack -e 40 -c 0 -i 369 -a 1 -x {1.1.3.0 0.0.3.0 178 ------- null} + -t 20.7084 -s 1 -d 3 -p ack -e 40 -c 0 -i 369 -a 1 -x {1.1.3.0 0.0.3.0 178 ------- null} - -t 20.7084 -s 1 -d 3 -p ack -e 40 -c 0 -i 369 -a 1 -x {1.1.3.0 0.0.3.0 178 ------- null} h -t 20.7084 -s 1 -d 3 -p ack -e 40 -c 0 -i 369 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.71 -s 28 -d 1 -p ack -e 40 -c 0 -i 370 -a 1 -x {1.1.3.0 0.0.3.0 179 ------- null} + -t 20.71 -s 1 -d 3 -p ack -e 40 -c 0 -i 370 -a 1 -x {1.1.3.0 0.0.3.0 179 ------- null} - -t 20.71 -s 1 -d 3 -p ack -e 40 -c 0 -i 370 -a 1 -x {1.1.3.0 0.0.3.0 179 ------- null} h -t 20.71 -s 1 -d 3 -p ack -e 40 -c 0 -i 370 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.7116 -s 28 -d 1 -p ack -e 40 -c 0 -i 371 -a 1 -x {1.1.3.0 0.0.3.0 180 ------- null} + -t 20.7116 -s 1 -d 3 -p ack -e 40 -c 0 -i 371 -a 1 -x {1.1.3.0 0.0.3.0 180 ------- null} - -t 20.7116 -s 1 -d 3 -p ack -e 40 -c 0 -i 371 -a 1 -x {1.1.3.0 0.0.3.0 180 ------- null} h -t 20.7116 -s 1 -d 3 -p ack -e 40 -c 0 -i 371 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.7132 -s 28 -d 1 -p ack -e 40 -c 0 -i 372 -a 1 -x {1.1.3.0 0.0.3.0 181 ------- null} + -t 20.7132 -s 1 -d 3 -p ack -e 40 -c 0 -i 372 -a 1 -x {1.1.3.0 0.0.3.0 181 ------- null} - -t 20.7132 -s 1 -d 3 -p ack -e 40 -c 0 -i 372 -a 1 -x {1.1.3.0 0.0.3.0 181 ------- null} h -t 20.7132 -s 1 -d 3 -p ack -e 40 -c 0 -i 372 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.7148 -s 28 -d 1 -p ack -e 40 -c 0 -i 373 -a 1 -x {1.1.3.0 0.0.3.0 182 ------- null} + -t 20.7148 -s 1 -d 3 -p ack -e 40 -c 0 -i 373 -a 1 -x {1.1.3.0 0.0.3.0 182 ------- null} - -t 20.7148 -s 1 -d 3 -p ack -e 40 -c 0 -i 373 -a 1 -x {1.1.3.0 0.0.3.0 182 ------- null} h -t 20.7148 -s 1 -d 3 -p ack -e 40 -c 0 -i 373 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.7164 -s 28 -d 1 -p ack -e 40 -c 0 -i 374 -a 1 -x {1.1.3.0 0.0.3.0 183 ------- null} + -t 20.7164 -s 1 -d 3 -p ack -e 40 -c 0 -i 374 -a 1 -x {1.1.3.0 0.0.3.0 183 ------- null} - -t 20.7164 -s 1 -d 3 -p ack -e 40 -c 0 -i 374 -a 1 -x {1.1.3.0 0.0.3.0 183 ------- null} h -t 20.7164 -s 1 -d 3 -p ack -e 40 -c 0 -i 374 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.718 -s 28 -d 1 -p ack -e 40 -c 0 -i 375 -a 1 -x {1.1.3.0 0.0.3.0 184 ------- null} + -t 20.718 -s 1 -d 3 -p ack -e 40 -c 0 -i 375 -a 1 -x {1.1.3.0 0.0.3.0 184 ------- null} - -t 20.718 -s 1 -d 3 -p ack -e 40 -c 0 -i 375 -a 1 -x {1.1.3.0 0.0.3.0 184 ------- null} h -t 20.718 -s 1 -d 3 -p ack -e 40 -c 0 -i 375 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.7196 -s 28 -d 1 -p ack -e 40 -c 0 -i 376 -a 1 -x {1.1.3.0 0.0.3.0 185 ------- null} + -t 20.7196 -s 1 -d 3 -p ack -e 40 -c 0 -i 376 -a 1 -x {1.1.3.0 0.0.3.0 185 ------- null} - -t 20.7196 -s 1 -d 3 -p ack -e 40 -c 0 -i 376 -a 1 -x {1.1.3.0 0.0.3.0 185 ------- null} h -t 20.7196 -s 1 -d 3 -p ack -e 40 -c 0 -i 376 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.7212 -s 28 -d 1 -p ack -e 40 -c 0 -i 377 -a 1 -x {1.1.3.0 0.0.3.0 186 ------- null} + -t 20.7212 -s 1 -d 3 -p ack -e 40 -c 0 -i 377 -a 1 -x {1.1.3.0 0.0.3.0 186 ------- null} - -t 20.7212 -s 1 -d 3 -p ack -e 40 -c 0 -i 377 -a 1 -x {1.1.3.0 0.0.3.0 186 ------- null} h -t 20.7212 -s 1 -d 3 -p ack -e 40 -c 0 -i 377 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.7228 -s 28 -d 1 -p ack -e 40 -c 0 -i 378 -a 1 -x {1.1.3.0 0.0.3.0 187 ------- null} + -t 20.7228 -s 1 -d 3 -p ack -e 40 -c 0 -i 378 -a 1 -x {1.1.3.0 0.0.3.0 187 ------- null} - -t 20.7228 -s 1 -d 3 -p ack -e 40 -c 0 -i 378 -a 1 -x {1.1.3.0 0.0.3.0 187 ------- null} h -t 20.7228 -s 1 -d 3 -p ack -e 40 -c 0 -i 378 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.7244 -s 28 -d 1 -p ack -e 40 -c 0 -i 379 -a 1 -x {1.1.3.0 0.0.3.0 188 ------- null} + -t 20.7244 -s 1 -d 3 -p ack -e 40 -c 0 -i 379 -a 1 -x {1.1.3.0 0.0.3.0 188 ------- null} - -t 20.7244 -s 1 -d 3 -p ack -e 40 -c 0 -i 379 -a 1 -x {1.1.3.0 0.0.3.0 188 ------- null} h -t 20.7244 -s 1 -d 3 -p ack -e 40 -c 0 -i 379 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.726 -s 28 -d 1 -p ack -e 40 -c 0 -i 380 -a 1 -x {1.1.3.0 0.0.3.0 189 ------- null} + -t 20.726 -s 1 -d 3 -p ack -e 40 -c 0 -i 380 -a 1 -x {1.1.3.0 0.0.3.0 189 ------- null} - -t 20.726 -s 1 -d 3 -p ack -e 40 -c 0 -i 380 -a 1 -x {1.1.3.0 0.0.3.0 189 ------- null} h -t 20.726 -s 1 -d 3 -p ack -e 40 -c 0 -i 380 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.7276 -s 28 -d 1 -p ack -e 40 -c 0 -i 381 -a 1 -x {1.1.3.0 0.0.3.0 190 ------- null} + -t 20.7276 -s 1 -d 3 -p ack -e 40 -c 0 -i 381 -a 1 -x {1.1.3.0 0.0.3.0 190 ------- null} - -t 20.7276 -s 1 -d 3 -p ack -e 40 -c 0 -i 381 -a 1 -x {1.1.3.0 0.0.3.0 190 ------- null} h -t 20.7276 -s 1 -d 3 -p ack -e 40 -c 0 -i 381 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 20.8373 -s 1 -d 3 -p ack -e 40 -c 0 -i 362 -a 1 -x {1.1.3.0 0.0.3.0 171 ------- null} + -t 20.8373 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {0.0.3.0 1.1.3.0 191 ------- null} - -t 20.8373 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {0.0.3.0 1.1.3.0 191 ------- null} h -t 20.8373 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 20.8389 -s 1 -d 3 -p ack -e 40 -c 0 -i 363 -a 1 -x {1.1.3.0 0.0.3.0 172 ------- null} + -t 20.8389 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {0.0.3.0 1.1.3.0 192 ------- null} - -t 20.8389 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {0.0.3.0 1.1.3.0 192 ------- null} h -t 20.8389 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 20.8405 -s 1 -d 3 -p ack -e 40 -c 0 -i 364 -a 1 -x {1.1.3.0 0.0.3.0 173 ------- null} + -t 20.8405 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 384 -a 0 -x {0.0.3.0 1.1.3.0 193 ------- null} - -t 20.8405 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 384 -a 0 -x {0.0.3.0 1.1.3.0 193 ------- null} h -t 20.8405 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 384 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 20.8421 -s 1 -d 3 -p ack -e 40 -c 0 -i 365 -a 1 -x {1.1.3.0 0.0.3.0 174 ------- null} + -t 20.8421 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {0.0.3.0 1.1.3.0 194 ------- null} - -t 20.8421 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {0.0.3.0 1.1.3.0 194 ------- null} h -t 20.8421 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 20.8437 -s 1 -d 3 -p ack -e 40 -c 0 -i 366 -a 1 -x {1.1.3.0 0.0.3.0 175 ------- null} + -t 20.8437 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 386 -a 0 -x {0.0.3.0 1.1.3.0 195 ------- null} - -t 20.8437 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 386 -a 0 -x {0.0.3.0 1.1.3.0 195 ------- null} h -t 20.8437 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 386 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 20.8453 -s 1 -d 3 -p ack -e 40 -c 0 -i 367 -a 1 -x {1.1.3.0 0.0.3.0 176 ------- null} + -t 20.8453 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {0.0.3.0 1.1.3.0 196 ------- null} - -t 20.8453 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {0.0.3.0 1.1.3.0 196 ------- null} h -t 20.8453 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 20.8469 -s 1 -d 3 -p ack -e 40 -c 0 -i 368 -a 1 -x {1.1.3.0 0.0.3.0 177 ------- null} + -t 20.8469 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {0.0.3.0 1.1.3.0 197 ------- null} - -t 20.8469 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {0.0.3.0 1.1.3.0 197 ------- null} h -t 20.8469 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 20.8485 -s 1 -d 3 -p ack -e 40 -c 0 -i 369 -a 1 -x {1.1.3.0 0.0.3.0 178 ------- null} + -t 20.8485 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {0.0.3.0 1.1.3.0 198 ------- null} - -t 20.8485 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {0.0.3.0 1.1.3.0 198 ------- null} h -t 20.8485 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 20.8501 -s 1 -d 3 -p ack -e 40 -c 0 -i 370 -a 1 -x {1.1.3.0 0.0.3.0 179 ------- null} + -t 20.8501 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 390 -a 0 -x {0.0.3.0 1.1.3.0 199 ------- null} - -t 20.8501 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 390 -a 0 -x {0.0.3.0 1.1.3.0 199 ------- null} h -t 20.8501 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 390 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 20.8517 -s 1 -d 3 -p ack -e 40 -c 0 -i 371 -a 1 -x {1.1.3.0 0.0.3.0 180 ------- null} + -t 20.8517 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {0.0.3.0 1.1.3.0 200 ------- null} - -t 20.8517 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {0.0.3.0 1.1.3.0 200 ------- null} h -t 20.8517 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 20.8533 -s 1 -d 3 -p ack -e 40 -c 0 -i 372 -a 1 -x {1.1.3.0 0.0.3.0 181 ------- null} + -t 20.8533 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {0.0.3.0 1.1.3.0 201 ------- null} - -t 20.8533 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {0.0.3.0 1.1.3.0 201 ------- null} h -t 20.8533 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 20.8549 -s 1 -d 3 -p ack -e 40 -c 0 -i 373 -a 1 -x {1.1.3.0 0.0.3.0 182 ------- null} + -t 20.8549 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {0.0.3.0 1.1.3.0 202 ------- null} - -t 20.8549 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {0.0.3.0 1.1.3.0 202 ------- null} h -t 20.8549 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 20.8565 -s 1 -d 3 -p ack -e 40 -c 0 -i 374 -a 1 -x {1.1.3.0 0.0.3.0 183 ------- null} + -t 20.8565 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {0.0.3.0 1.1.3.0 203 ------- null} - -t 20.8565 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {0.0.3.0 1.1.3.0 203 ------- null} h -t 20.8565 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 20.8581 -s 1 -d 3 -p ack -e 40 -c 0 -i 375 -a 1 -x {1.1.3.0 0.0.3.0 184 ------- null} + -t 20.8581 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {0.0.3.0 1.1.3.0 204 ------- null} - -t 20.8581 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {0.0.3.0 1.1.3.0 204 ------- null} h -t 20.8581 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 20.8597 -s 1 -d 3 -p ack -e 40 -c 0 -i 376 -a 1 -x {1.1.3.0 0.0.3.0 185 ------- null} + -t 20.8597 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 396 -a 0 -x {0.0.3.0 1.1.3.0 205 ------- null} - -t 20.8597 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 396 -a 0 -x {0.0.3.0 1.1.3.0 205 ------- null} h -t 20.8597 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 396 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 20.8613 -s 1 -d 3 -p ack -e 40 -c 0 -i 377 -a 1 -x {1.1.3.0 0.0.3.0 186 ------- null} + -t 20.8613 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {0.0.3.0 1.1.3.0 206 ------- null} - -t 20.8613 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {0.0.3.0 1.1.3.0 206 ------- null} h -t 20.8613 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 20.8629 -s 1 -d 3 -p ack -e 40 -c 0 -i 378 -a 1 -x {1.1.3.0 0.0.3.0 187 ------- null} + -t 20.8629 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 398 -a 0 -x {0.0.3.0 1.1.3.0 207 ------- null} - -t 20.8629 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 398 -a 0 -x {0.0.3.0 1.1.3.0 207 ------- null} h -t 20.8629 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 398 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 20.8645 -s 1 -d 3 -p ack -e 40 -c 0 -i 379 -a 1 -x {1.1.3.0 0.0.3.0 188 ------- null} + -t 20.8645 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {0.0.3.0 1.1.3.0 208 ------- null} - -t 20.8645 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {0.0.3.0 1.1.3.0 208 ------- null} h -t 20.8645 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 20.8661 -s 1 -d 3 -p ack -e 40 -c 0 -i 380 -a 1 -x {1.1.3.0 0.0.3.0 189 ------- null} + -t 20.8661 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 400 -a 0 -x {0.0.3.0 1.1.3.0 209 ------- null} - -t 20.8661 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 400 -a 0 -x {0.0.3.0 1.1.3.0 209 ------- null} h -t 20.8661 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 400 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 20.8677 -s 1 -d 3 -p ack -e 40 -c 0 -i 381 -a 1 -x {1.1.3.0 0.0.3.0 190 ------- null} + -t 20.8677 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {0.0.3.0 1.1.3.0 210 ------- null} - -t 20.8677 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {0.0.3.0 1.1.3.0 210 ------- null} h -t 20.8677 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 20.9989 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {0.0.3.0 1.1.3.0 191 ------- null} + -t 20.9989 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {0.0.3.0 1.1.3.0 191 ------- null} - -t 20.9989 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {0.0.3.0 1.1.3.0 191 ------- null} h -t 20.9989 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.0005 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {0.0.3.0 1.1.3.0 192 ------- null} + -t 21.0005 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {0.0.3.0 1.1.3.0 192 ------- null} - -t 21.0005 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {0.0.3.0 1.1.3.0 192 ------- null} h -t 21.0005 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.0021 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 384 -a 0 -x {0.0.3.0 1.1.3.0 193 ------- null} + -t 21.0021 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 384 -a 0 -x {0.0.3.0 1.1.3.0 193 ------- null} - -t 21.0021 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 384 -a 0 -x {0.0.3.0 1.1.3.0 193 ------- null} h -t 21.0021 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 384 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.0037 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {0.0.3.0 1.1.3.0 194 ------- null} + -t 21.0037 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {0.0.3.0 1.1.3.0 194 ------- null} - -t 21.0037 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {0.0.3.0 1.1.3.0 194 ------- null} h -t 21.0037 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.0053 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 386 -a 0 -x {0.0.3.0 1.1.3.0 195 ------- null} + -t 21.0053 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 386 -a 0 -x {0.0.3.0 1.1.3.0 195 ------- null} - -t 21.0053 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 386 -a 0 -x {0.0.3.0 1.1.3.0 195 ------- null} h -t 21.0053 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 386 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.0069 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {0.0.3.0 1.1.3.0 196 ------- null} + -t 21.0069 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {0.0.3.0 1.1.3.0 196 ------- null} - -t 21.0069 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {0.0.3.0 1.1.3.0 196 ------- null} h -t 21.0069 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.0085 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {0.0.3.0 1.1.3.0 197 ------- null} + -t 21.0085 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {0.0.3.0 1.1.3.0 197 ------- null} - -t 21.0085 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {0.0.3.0 1.1.3.0 197 ------- null} h -t 21.0085 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.0101 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {0.0.3.0 1.1.3.0 198 ------- null} + -t 21.0101 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {0.0.3.0 1.1.3.0 198 ------- null} - -t 21.0101 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {0.0.3.0 1.1.3.0 198 ------- null} h -t 21.0101 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.0117 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 390 -a 0 -x {0.0.3.0 1.1.3.0 199 ------- null} + -t 21.0117 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 390 -a 0 -x {0.0.3.0 1.1.3.0 199 ------- null} - -t 21.0117 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 390 -a 0 -x {0.0.3.0 1.1.3.0 199 ------- null} h -t 21.0117 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 390 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.0133 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {0.0.3.0 1.1.3.0 200 ------- null} + -t 21.0133 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {0.0.3.0 1.1.3.0 200 ------- null} - -t 21.0133 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {0.0.3.0 1.1.3.0 200 ------- null} h -t 21.0133 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.0149 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {0.0.3.0 1.1.3.0 201 ------- null} + -t 21.0149 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {0.0.3.0 1.1.3.0 201 ------- null} - -t 21.0149 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {0.0.3.0 1.1.3.0 201 ------- null} h -t 21.0149 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.0165 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {0.0.3.0 1.1.3.0 202 ------- null} + -t 21.0165 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {0.0.3.0 1.1.3.0 202 ------- null} - -t 21.0165 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {0.0.3.0 1.1.3.0 202 ------- null} h -t 21.0165 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.0181 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {0.0.3.0 1.1.3.0 203 ------- null} + -t 21.0181 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {0.0.3.0 1.1.3.0 203 ------- null} - -t 21.0181 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {0.0.3.0 1.1.3.0 203 ------- null} h -t 21.0181 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.0197 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {0.0.3.0 1.1.3.0 204 ------- null} + -t 21.0197 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {0.0.3.0 1.1.3.0 204 ------- null} - -t 21.0197 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {0.0.3.0 1.1.3.0 204 ------- null} h -t 21.0197 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.0213 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 396 -a 0 -x {0.0.3.0 1.1.3.0 205 ------- null} + -t 21.0213 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 396 -a 0 -x {0.0.3.0 1.1.3.0 205 ------- null} - -t 21.0213 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 396 -a 0 -x {0.0.3.0 1.1.3.0 205 ------- null} h -t 21.0213 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 396 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.0229 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {0.0.3.0 1.1.3.0 206 ------- null} + -t 21.0229 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {0.0.3.0 1.1.3.0 206 ------- null} - -t 21.0229 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {0.0.3.0 1.1.3.0 206 ------- null} h -t 21.0229 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.0245 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 398 -a 0 -x {0.0.3.0 1.1.3.0 207 ------- null} + -t 21.0245 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 398 -a 0 -x {0.0.3.0 1.1.3.0 207 ------- null} - -t 21.0245 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 398 -a 0 -x {0.0.3.0 1.1.3.0 207 ------- null} h -t 21.0245 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 398 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.0261 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {0.0.3.0 1.1.3.0 208 ------- null} + -t 21.0261 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {0.0.3.0 1.1.3.0 208 ------- null} - -t 21.0261 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {0.0.3.0 1.1.3.0 208 ------- null} h -t 21.0261 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.0277 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 400 -a 0 -x {0.0.3.0 1.1.3.0 209 ------- null} + -t 21.0277 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 400 -a 0 -x {0.0.3.0 1.1.3.0 209 ------- null} - -t 21.0277 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 400 -a 0 -x {0.0.3.0 1.1.3.0 209 ------- null} h -t 21.0277 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 400 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.0293 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {0.0.3.0 1.1.3.0 210 ------- null} + -t 21.0293 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {0.0.3.0 1.1.3.0 210 ------- null} - -t 21.0293 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {0.0.3.0 1.1.3.0 210 ------- null} h -t 21.0293 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.3005 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {0.0.3.0 1.1.3.0 191 ------- null} + -t 21.3005 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {0.0.3.0 1.1.3.0 191 ------- null} - -t 21.3005 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {0.0.3.0 1.1.3.0 191 ------- null} h -t 21.3005 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.3021 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {0.0.3.0 1.1.3.0 192 ------- null} + -t 21.3021 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {0.0.3.0 1.1.3.0 192 ------- null} - -t 21.3021 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {0.0.3.0 1.1.3.0 192 ------- null} h -t 21.3021 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.3037 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 384 -a 0 -x {0.0.3.0 1.1.3.0 193 ------- null} + -t 21.3037 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 384 -a 0 -x {0.0.3.0 1.1.3.0 193 ------- null} - -t 21.3037 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 384 -a 0 -x {0.0.3.0 1.1.3.0 193 ------- null} h -t 21.3037 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 384 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.3053 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {0.0.3.0 1.1.3.0 194 ------- null} + -t 21.3053 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {0.0.3.0 1.1.3.0 194 ------- null} - -t 21.3053 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {0.0.3.0 1.1.3.0 194 ------- null} h -t 21.3053 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.3069 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 386 -a 0 -x {0.0.3.0 1.1.3.0 195 ------- null} + -t 21.3069 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 386 -a 0 -x {0.0.3.0 1.1.3.0 195 ------- null} - -t 21.3069 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 386 -a 0 -x {0.0.3.0 1.1.3.0 195 ------- null} h -t 21.3069 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 386 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.3085 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {0.0.3.0 1.1.3.0 196 ------- null} + -t 21.3085 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {0.0.3.0 1.1.3.0 196 ------- null} - -t 21.3085 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {0.0.3.0 1.1.3.0 196 ------- null} h -t 21.3085 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.3101 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {0.0.3.0 1.1.3.0 197 ------- null} + -t 21.3101 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {0.0.3.0 1.1.3.0 197 ------- null} - -t 21.3101 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {0.0.3.0 1.1.3.0 197 ------- null} h -t 21.3101 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.3117 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {0.0.3.0 1.1.3.0 198 ------- null} + -t 21.3117 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {0.0.3.0 1.1.3.0 198 ------- null} - -t 21.3117 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {0.0.3.0 1.1.3.0 198 ------- null} h -t 21.3117 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.3133 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 390 -a 0 -x {0.0.3.0 1.1.3.0 199 ------- null} + -t 21.3133 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 390 -a 0 -x {0.0.3.0 1.1.3.0 199 ------- null} - -t 21.3133 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 390 -a 0 -x {0.0.3.0 1.1.3.0 199 ------- null} h -t 21.3133 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 390 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.3149 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {0.0.3.0 1.1.3.0 200 ------- null} + -t 21.3149 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {0.0.3.0 1.1.3.0 200 ------- null} - -t 21.3149 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {0.0.3.0 1.1.3.0 200 ------- null} h -t 21.3149 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.3165 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {0.0.3.0 1.1.3.0 201 ------- null} + -t 21.3165 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {0.0.3.0 1.1.3.0 201 ------- null} - -t 21.3165 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {0.0.3.0 1.1.3.0 201 ------- null} h -t 21.3165 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.3181 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {0.0.3.0 1.1.3.0 202 ------- null} + -t 21.3181 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {0.0.3.0 1.1.3.0 202 ------- null} - -t 21.3181 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {0.0.3.0 1.1.3.0 202 ------- null} h -t 21.3181 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.3197 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {0.0.3.0 1.1.3.0 203 ------- null} + -t 21.3197 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {0.0.3.0 1.1.3.0 203 ------- null} - -t 21.3197 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {0.0.3.0 1.1.3.0 203 ------- null} h -t 21.3197 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.3213 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {0.0.3.0 1.1.3.0 204 ------- null} + -t 21.3213 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {0.0.3.0 1.1.3.0 204 ------- null} - -t 21.3213 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {0.0.3.0 1.1.3.0 204 ------- null} h -t 21.3213 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.3229 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 396 -a 0 -x {0.0.3.0 1.1.3.0 205 ------- null} + -t 21.3229 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 396 -a 0 -x {0.0.3.0 1.1.3.0 205 ------- null} - -t 21.3229 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 396 -a 0 -x {0.0.3.0 1.1.3.0 205 ------- null} h -t 21.3229 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 396 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.3245 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {0.0.3.0 1.1.3.0 206 ------- null} + -t 21.3245 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {0.0.3.0 1.1.3.0 206 ------- null} - -t 21.3245 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {0.0.3.0 1.1.3.0 206 ------- null} h -t 21.3245 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.3261 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 398 -a 0 -x {0.0.3.0 1.1.3.0 207 ------- null} + -t 21.3261 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 398 -a 0 -x {0.0.3.0 1.1.3.0 207 ------- null} - -t 21.3261 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 398 -a 0 -x {0.0.3.0 1.1.3.0 207 ------- null} h -t 21.3261 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 398 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.3277 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {0.0.3.0 1.1.3.0 208 ------- null} + -t 21.3277 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {0.0.3.0 1.1.3.0 208 ------- null} - -t 21.3277 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {0.0.3.0 1.1.3.0 208 ------- null} h -t 21.3277 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.3293 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 400 -a 0 -x {0.0.3.0 1.1.3.0 209 ------- null} + -t 21.3293 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 400 -a 0 -x {0.0.3.0 1.1.3.0 209 ------- null} - -t 21.3293 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 400 -a 0 -x {0.0.3.0 1.1.3.0 209 ------- null} h -t 21.3293 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 400 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.3309 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {0.0.3.0 1.1.3.0 210 ------- null} + -t 21.3309 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {0.0.3.0 1.1.3.0 210 ------- null} - -t 21.3309 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {0.0.3.0 1.1.3.0 210 ------- null} h -t 21.3309 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.4021 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {0.0.3.0 1.1.3.0 191 ------- null} + -t 21.4021 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {0.0.3.0 1.1.3.0 191 ------- null} - -t 21.4021 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {0.0.3.0 1.1.3.0 191 ------- null} h -t 21.4021 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.4037 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {0.0.3.0 1.1.3.0 192 ------- null} + -t 21.4037 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {0.0.3.0 1.1.3.0 192 ------- null} - -t 21.4037 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {0.0.3.0 1.1.3.0 192 ------- null} h -t 21.4037 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.4053 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 384 -a 0 -x {0.0.3.0 1.1.3.0 193 ------- null} + -t 21.4053 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 384 -a 0 -x {0.0.3.0 1.1.3.0 193 ------- null} - -t 21.4053 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 384 -a 0 -x {0.0.3.0 1.1.3.0 193 ------- null} h -t 21.4053 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 384 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.4069 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {0.0.3.0 1.1.3.0 194 ------- null} + -t 21.4069 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {0.0.3.0 1.1.3.0 194 ------- null} - -t 21.4069 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {0.0.3.0 1.1.3.0 194 ------- null} h -t 21.4069 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.4085 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 386 -a 0 -x {0.0.3.0 1.1.3.0 195 ------- null} + -t 21.4085 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 386 -a 0 -x {0.0.3.0 1.1.3.0 195 ------- null} - -t 21.4085 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 386 -a 0 -x {0.0.3.0 1.1.3.0 195 ------- null} h -t 21.4085 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 386 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.4101 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {0.0.3.0 1.1.3.0 196 ------- null} + -t 21.4101 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {0.0.3.0 1.1.3.0 196 ------- null} - -t 21.4101 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {0.0.3.0 1.1.3.0 196 ------- null} h -t 21.4101 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.4117 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {0.0.3.0 1.1.3.0 197 ------- null} + -t 21.4117 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {0.0.3.0 1.1.3.0 197 ------- null} - -t 21.4117 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {0.0.3.0 1.1.3.0 197 ------- null} h -t 21.4117 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.4133 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {0.0.3.0 1.1.3.0 198 ------- null} + -t 21.4133 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {0.0.3.0 1.1.3.0 198 ------- null} - -t 21.4133 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {0.0.3.0 1.1.3.0 198 ------- null} h -t 21.4133 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.4149 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 390 -a 0 -x {0.0.3.0 1.1.3.0 199 ------- null} + -t 21.4149 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 390 -a 0 -x {0.0.3.0 1.1.3.0 199 ------- null} - -t 21.4149 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 390 -a 0 -x {0.0.3.0 1.1.3.0 199 ------- null} h -t 21.4149 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 390 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.4165 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {0.0.3.0 1.1.3.0 200 ------- null} + -t 21.4165 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {0.0.3.0 1.1.3.0 200 ------- null} - -t 21.4165 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {0.0.3.0 1.1.3.0 200 ------- null} h -t 21.4165 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.4181 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {0.0.3.0 1.1.3.0 201 ------- null} + -t 21.4181 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {0.0.3.0 1.1.3.0 201 ------- null} - -t 21.4181 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {0.0.3.0 1.1.3.0 201 ------- null} h -t 21.4181 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.4197 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {0.0.3.0 1.1.3.0 202 ------- null} + -t 21.4197 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {0.0.3.0 1.1.3.0 202 ------- null} - -t 21.4197 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {0.0.3.0 1.1.3.0 202 ------- null} h -t 21.4197 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.4213 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {0.0.3.0 1.1.3.0 203 ------- null} + -t 21.4213 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {0.0.3.0 1.1.3.0 203 ------- null} - -t 21.4213 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {0.0.3.0 1.1.3.0 203 ------- null} h -t 21.4213 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.4229 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {0.0.3.0 1.1.3.0 204 ------- null} + -t 21.4229 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {0.0.3.0 1.1.3.0 204 ------- null} - -t 21.4229 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {0.0.3.0 1.1.3.0 204 ------- null} h -t 21.4229 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.4245 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 396 -a 0 -x {0.0.3.0 1.1.3.0 205 ------- null} + -t 21.4245 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 396 -a 0 -x {0.0.3.0 1.1.3.0 205 ------- null} - -t 21.4245 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 396 -a 0 -x {0.0.3.0 1.1.3.0 205 ------- null} h -t 21.4245 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 396 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.4261 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {0.0.3.0 1.1.3.0 206 ------- null} + -t 21.4261 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {0.0.3.0 1.1.3.0 206 ------- null} - -t 21.4261 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {0.0.3.0 1.1.3.0 206 ------- null} h -t 21.4261 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.4277 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 398 -a 0 -x {0.0.3.0 1.1.3.0 207 ------- null} + -t 21.4277 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 398 -a 0 -x {0.0.3.0 1.1.3.0 207 ------- null} - -t 21.4277 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 398 -a 0 -x {0.0.3.0 1.1.3.0 207 ------- null} h -t 21.4277 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 398 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.4293 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {0.0.3.0 1.1.3.0 208 ------- null} + -t 21.4293 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {0.0.3.0 1.1.3.0 208 ------- null} - -t 21.4293 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {0.0.3.0 1.1.3.0 208 ------- null} h -t 21.4293 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.4309 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 400 -a 0 -x {0.0.3.0 1.1.3.0 209 ------- null} + -t 21.4309 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 400 -a 0 -x {0.0.3.0 1.1.3.0 209 ------- null} - -t 21.4309 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 400 -a 0 -x {0.0.3.0 1.1.3.0 209 ------- null} h -t 21.4309 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 400 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.4325 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {0.0.3.0 1.1.3.0 210 ------- null} + -t 21.4325 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {0.0.3.0 1.1.3.0 210 ------- null} - -t 21.4325 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {0.0.3.0 1.1.3.0 210 ------- null} h -t 21.4325 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.4837 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {0.0.3.0 1.1.3.0 191 ------- null} + -t 21.4837 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {0.0.3.0 1.1.3.0 191 ------- null} - -t 21.4837 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {0.0.3.0 1.1.3.0 191 ------- null} h -t 21.4837 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.4853 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {0.0.3.0 1.1.3.0 192 ------- null} + -t 21.4853 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {0.0.3.0 1.1.3.0 192 ------- null} - -t 21.4853 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {0.0.3.0 1.1.3.0 192 ------- null} h -t 21.4853 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.4869 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 384 -a 0 -x {0.0.3.0 1.1.3.0 193 ------- null} + -t 21.4869 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 384 -a 0 -x {0.0.3.0 1.1.3.0 193 ------- null} - -t 21.4869 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 384 -a 0 -x {0.0.3.0 1.1.3.0 193 ------- null} h -t 21.4869 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 384 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.4885 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {0.0.3.0 1.1.3.0 194 ------- null} + -t 21.4885 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {0.0.3.0 1.1.3.0 194 ------- null} - -t 21.4885 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {0.0.3.0 1.1.3.0 194 ------- null} h -t 21.4885 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.4901 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 386 -a 0 -x {0.0.3.0 1.1.3.0 195 ------- null} + -t 21.4901 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 386 -a 0 -x {0.0.3.0 1.1.3.0 195 ------- null} - -t 21.4901 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 386 -a 0 -x {0.0.3.0 1.1.3.0 195 ------- null} h -t 21.4901 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 386 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.4917 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {0.0.3.0 1.1.3.0 196 ------- null} + -t 21.4917 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {0.0.3.0 1.1.3.0 196 ------- null} - -t 21.4917 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {0.0.3.0 1.1.3.0 196 ------- null} h -t 21.4917 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.4933 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {0.0.3.0 1.1.3.0 197 ------- null} + -t 21.4933 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {0.0.3.0 1.1.3.0 197 ------- null} - -t 21.4933 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {0.0.3.0 1.1.3.0 197 ------- null} h -t 21.4933 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.4949 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {0.0.3.0 1.1.3.0 198 ------- null} + -t 21.4949 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {0.0.3.0 1.1.3.0 198 ------- null} - -t 21.4949 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {0.0.3.0 1.1.3.0 198 ------- null} h -t 21.4949 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.4965 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 390 -a 0 -x {0.0.3.0 1.1.3.0 199 ------- null} + -t 21.4965 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 390 -a 0 -x {0.0.3.0 1.1.3.0 199 ------- null} - -t 21.4965 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 390 -a 0 -x {0.0.3.0 1.1.3.0 199 ------- null} h -t 21.4965 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 390 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.4981 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {0.0.3.0 1.1.3.0 200 ------- null} + -t 21.4981 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {0.0.3.0 1.1.3.0 200 ------- null} - -t 21.4981 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {0.0.3.0 1.1.3.0 200 ------- null} h -t 21.4981 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.4997 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {0.0.3.0 1.1.3.0 201 ------- null} + -t 21.4997 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {0.0.3.0 1.1.3.0 201 ------- null} - -t 21.4997 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {0.0.3.0 1.1.3.0 201 ------- null} h -t 21.4997 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.5013 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {0.0.3.0 1.1.3.0 202 ------- null} + -t 21.5013 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {0.0.3.0 1.1.3.0 202 ------- null} - -t 21.5013 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {0.0.3.0 1.1.3.0 202 ------- null} h -t 21.5013 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.5029 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {0.0.3.0 1.1.3.0 203 ------- null} + -t 21.5029 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {0.0.3.0 1.1.3.0 203 ------- null} - -t 21.5029 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {0.0.3.0 1.1.3.0 203 ------- null} h -t 21.5029 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.5045 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {0.0.3.0 1.1.3.0 204 ------- null} + -t 21.5045 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {0.0.3.0 1.1.3.0 204 ------- null} - -t 21.5045 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {0.0.3.0 1.1.3.0 204 ------- null} h -t 21.5045 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.5061 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 396 -a 0 -x {0.0.3.0 1.1.3.0 205 ------- null} + -t 21.5061 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 396 -a 0 -x {0.0.3.0 1.1.3.0 205 ------- null} - -t 21.5061 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 396 -a 0 -x {0.0.3.0 1.1.3.0 205 ------- null} h -t 21.5061 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 396 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.5077 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {0.0.3.0 1.1.3.0 206 ------- null} + -t 21.5077 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {0.0.3.0 1.1.3.0 206 ------- null} - -t 21.5077 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {0.0.3.0 1.1.3.0 206 ------- null} h -t 21.5077 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.5093 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 398 -a 0 -x {0.0.3.0 1.1.3.0 207 ------- null} + -t 21.5093 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 398 -a 0 -x {0.0.3.0 1.1.3.0 207 ------- null} - -t 21.5093 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 398 -a 0 -x {0.0.3.0 1.1.3.0 207 ------- null} h -t 21.5093 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 398 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.5109 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {0.0.3.0 1.1.3.0 208 ------- null} + -t 21.5109 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {0.0.3.0 1.1.3.0 208 ------- null} - -t 21.5109 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {0.0.3.0 1.1.3.0 208 ------- null} h -t 21.5109 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.5125 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 400 -a 0 -x {0.0.3.0 1.1.3.0 209 ------- null} + -t 21.5125 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 400 -a 0 -x {0.0.3.0 1.1.3.0 209 ------- null} - -t 21.5125 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 400 -a 0 -x {0.0.3.0 1.1.3.0 209 ------- null} h -t 21.5125 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 400 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.5141 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {0.0.3.0 1.1.3.0 210 ------- null} + -t 21.5141 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {0.0.3.0 1.1.3.0 210 ------- null} - -t 21.5141 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {0.0.3.0 1.1.3.0 210 ------- null} h -t 21.5141 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.5653 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {0.0.3.0 1.1.3.0 191 ------- null} + -t 21.5653 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {0.0.3.0 1.1.3.0 191 ------- null} - -t 21.5653 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {0.0.3.0 1.1.3.0 191 ------- null} h -t 21.5653 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.5669 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {0.0.3.0 1.1.3.0 192 ------- null} + -t 21.5669 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {0.0.3.0 1.1.3.0 192 ------- null} - -t 21.5669 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {0.0.3.0 1.1.3.0 192 ------- null} h -t 21.5669 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.5685 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 384 -a 0 -x {0.0.3.0 1.1.3.0 193 ------- null} + -t 21.5685 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 384 -a 0 -x {0.0.3.0 1.1.3.0 193 ------- null} - -t 21.5685 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 384 -a 0 -x {0.0.3.0 1.1.3.0 193 ------- null} h -t 21.5685 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 384 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.5701 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {0.0.3.0 1.1.3.0 194 ------- null} + -t 21.5701 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {0.0.3.0 1.1.3.0 194 ------- null} - -t 21.5701 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {0.0.3.0 1.1.3.0 194 ------- null} h -t 21.5701 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.5717 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 386 -a 0 -x {0.0.3.0 1.1.3.0 195 ------- null} + -t 21.5717 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 386 -a 0 -x {0.0.3.0 1.1.3.0 195 ------- null} - -t 21.5717 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 386 -a 0 -x {0.0.3.0 1.1.3.0 195 ------- null} h -t 21.5717 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 386 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.5733 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {0.0.3.0 1.1.3.0 196 ------- null} + -t 21.5733 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {0.0.3.0 1.1.3.0 196 ------- null} - -t 21.5733 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {0.0.3.0 1.1.3.0 196 ------- null} h -t 21.5733 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.5749 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {0.0.3.0 1.1.3.0 197 ------- null} + -t 21.5749 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {0.0.3.0 1.1.3.0 197 ------- null} - -t 21.5749 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {0.0.3.0 1.1.3.0 197 ------- null} h -t 21.5749 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.5765 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {0.0.3.0 1.1.3.0 198 ------- null} + -t 21.5765 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {0.0.3.0 1.1.3.0 198 ------- null} - -t 21.5765 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {0.0.3.0 1.1.3.0 198 ------- null} h -t 21.5765 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.5781 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 390 -a 0 -x {0.0.3.0 1.1.3.0 199 ------- null} + -t 21.5781 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 390 -a 0 -x {0.0.3.0 1.1.3.0 199 ------- null} - -t 21.5781 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 390 -a 0 -x {0.0.3.0 1.1.3.0 199 ------- null} h -t 21.5781 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 390 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.5797 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {0.0.3.0 1.1.3.0 200 ------- null} + -t 21.5797 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {0.0.3.0 1.1.3.0 200 ------- null} - -t 21.5797 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {0.0.3.0 1.1.3.0 200 ------- null} h -t 21.5797 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.5813 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {0.0.3.0 1.1.3.0 201 ------- null} + -t 21.5813 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {0.0.3.0 1.1.3.0 201 ------- null} - -t 21.5813 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {0.0.3.0 1.1.3.0 201 ------- null} h -t 21.5813 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.5829 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {0.0.3.0 1.1.3.0 202 ------- null} + -t 21.5829 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {0.0.3.0 1.1.3.0 202 ------- null} - -t 21.5829 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {0.0.3.0 1.1.3.0 202 ------- null} h -t 21.5829 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.5845 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {0.0.3.0 1.1.3.0 203 ------- null} + -t 21.5845 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {0.0.3.0 1.1.3.0 203 ------- null} - -t 21.5845 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {0.0.3.0 1.1.3.0 203 ------- null} h -t 21.5845 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.5861 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {0.0.3.0 1.1.3.0 204 ------- null} + -t 21.5861 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {0.0.3.0 1.1.3.0 204 ------- null} - -t 21.5861 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {0.0.3.0 1.1.3.0 204 ------- null} h -t 21.5861 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.5877 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 396 -a 0 -x {0.0.3.0 1.1.3.0 205 ------- null} + -t 21.5877 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 396 -a 0 -x {0.0.3.0 1.1.3.0 205 ------- null} - -t 21.5877 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 396 -a 0 -x {0.0.3.0 1.1.3.0 205 ------- null} h -t 21.5877 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 396 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.5893 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {0.0.3.0 1.1.3.0 206 ------- null} + -t 21.5893 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {0.0.3.0 1.1.3.0 206 ------- null} - -t 21.5893 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {0.0.3.0 1.1.3.0 206 ------- null} h -t 21.5893 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.5909 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 398 -a 0 -x {0.0.3.0 1.1.3.0 207 ------- null} + -t 21.5909 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 398 -a 0 -x {0.0.3.0 1.1.3.0 207 ------- null} - -t 21.5909 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 398 -a 0 -x {0.0.3.0 1.1.3.0 207 ------- null} h -t 21.5909 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 398 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.5925 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {0.0.3.0 1.1.3.0 208 ------- null} + -t 21.5925 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {0.0.3.0 1.1.3.0 208 ------- null} - -t 21.5925 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {0.0.3.0 1.1.3.0 208 ------- null} h -t 21.5925 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.5941 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 400 -a 0 -x {0.0.3.0 1.1.3.0 209 ------- null} + -t 21.5941 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 400 -a 0 -x {0.0.3.0 1.1.3.0 209 ------- null} - -t 21.5941 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 400 -a 0 -x {0.0.3.0 1.1.3.0 209 ------- null} h -t 21.5941 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 400 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.5957 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {0.0.3.0 1.1.3.0 210 ------- null} + -t 21.5957 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {0.0.3.0 1.1.3.0 210 ------- null} - -t 21.5957 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {0.0.3.0 1.1.3.0 210 ------- null} h -t 21.5957 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 21.6269 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 382 -a 0 -x {0.0.3.0 1.1.3.0 191 ------- null} + -t 21.6269 -s 21 -d 28 -p ack -e 40 -c 0 -i 402 -a 1 -x {1.1.3.0 0.0.3.0 191 ------- null} - -t 21.6269 -s 21 -d 28 -p ack -e 40 -c 0 -i 402 -a 1 -x {1.1.3.0 0.0.3.0 191 ------- null} h -t 21.6269 -s 21 -d 28 -p ack -e 40 -c 0 -i 402 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 21.6285 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {0.0.3.0 1.1.3.0 192 ------- null} + -t 21.6285 -s 21 -d 28 -p ack -e 40 -c 0 -i 403 -a 1 -x {1.1.3.0 0.0.3.0 192 ------- null} - -t 21.6285 -s 21 -d 28 -p ack -e 40 -c 0 -i 403 -a 1 -x {1.1.3.0 0.0.3.0 192 ------- null} h -t 21.6285 -s 21 -d 28 -p ack -e 40 -c 0 -i 403 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 21.6301 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 384 -a 0 -x {0.0.3.0 1.1.3.0 193 ------- null} + -t 21.6301 -s 21 -d 28 -p ack -e 40 -c 0 -i 404 -a 1 -x {1.1.3.0 0.0.3.0 193 ------- null} - -t 21.6301 -s 21 -d 28 -p ack -e 40 -c 0 -i 404 -a 1 -x {1.1.3.0 0.0.3.0 193 ------- null} h -t 21.6301 -s 21 -d 28 -p ack -e 40 -c 0 -i 404 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 21.6317 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {0.0.3.0 1.1.3.0 194 ------- null} + -t 21.6317 -s 21 -d 28 -p ack -e 40 -c 0 -i 405 -a 1 -x {1.1.3.0 0.0.3.0 194 ------- null} - -t 21.6317 -s 21 -d 28 -p ack -e 40 -c 0 -i 405 -a 1 -x {1.1.3.0 0.0.3.0 194 ------- null} h -t 21.6317 -s 21 -d 28 -p ack -e 40 -c 0 -i 405 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 21.6333 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 386 -a 0 -x {0.0.3.0 1.1.3.0 195 ------- null} + -t 21.6333 -s 21 -d 28 -p ack -e 40 -c 0 -i 406 -a 1 -x {1.1.3.0 0.0.3.0 195 ------- null} - -t 21.6333 -s 21 -d 28 -p ack -e 40 -c 0 -i 406 -a 1 -x {1.1.3.0 0.0.3.0 195 ------- null} h -t 21.6333 -s 21 -d 28 -p ack -e 40 -c 0 -i 406 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 21.6349 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {0.0.3.0 1.1.3.0 196 ------- null} + -t 21.6349 -s 21 -d 28 -p ack -e 40 -c 0 -i 407 -a 1 -x {1.1.3.0 0.0.3.0 196 ------- null} - -t 21.6349 -s 21 -d 28 -p ack -e 40 -c 0 -i 407 -a 1 -x {1.1.3.0 0.0.3.0 196 ------- null} h -t 21.6349 -s 21 -d 28 -p ack -e 40 -c 0 -i 407 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 21.6365 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 388 -a 0 -x {0.0.3.0 1.1.3.0 197 ------- null} + -t 21.6365 -s 21 -d 28 -p ack -e 40 -c 0 -i 408 -a 1 -x {1.1.3.0 0.0.3.0 197 ------- null} - -t 21.6365 -s 21 -d 28 -p ack -e 40 -c 0 -i 408 -a 1 -x {1.1.3.0 0.0.3.0 197 ------- null} h -t 21.6365 -s 21 -d 28 -p ack -e 40 -c 0 -i 408 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 21.6381 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {0.0.3.0 1.1.3.0 198 ------- null} + -t 21.6381 -s 21 -d 28 -p ack -e 40 -c 0 -i 409 -a 1 -x {1.1.3.0 0.0.3.0 198 ------- null} - -t 21.6381 -s 21 -d 28 -p ack -e 40 -c 0 -i 409 -a 1 -x {1.1.3.0 0.0.3.0 198 ------- null} h -t 21.6381 -s 21 -d 28 -p ack -e 40 -c 0 -i 409 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 21.6397 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 390 -a 0 -x {0.0.3.0 1.1.3.0 199 ------- null} + -t 21.6397 -s 21 -d 28 -p ack -e 40 -c 0 -i 410 -a 1 -x {1.1.3.0 0.0.3.0 199 ------- null} - -t 21.6397 -s 21 -d 28 -p ack -e 40 -c 0 -i 410 -a 1 -x {1.1.3.0 0.0.3.0 199 ------- null} h -t 21.6397 -s 21 -d 28 -p ack -e 40 -c 0 -i 410 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 21.6413 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {0.0.3.0 1.1.3.0 200 ------- null} + -t 21.6413 -s 21 -d 28 -p ack -e 40 -c 0 -i 411 -a 1 -x {1.1.3.0 0.0.3.0 200 ------- null} - -t 21.6413 -s 21 -d 28 -p ack -e 40 -c 0 -i 411 -a 1 -x {1.1.3.0 0.0.3.0 200 ------- null} h -t 21.6413 -s 21 -d 28 -p ack -e 40 -c 0 -i 411 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 21.6429 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 392 -a 0 -x {0.0.3.0 1.1.3.0 201 ------- null} + -t 21.6429 -s 21 -d 28 -p ack -e 40 -c 0 -i 412 -a 1 -x {1.1.3.0 0.0.3.0 201 ------- null} - -t 21.6429 -s 21 -d 28 -p ack -e 40 -c 0 -i 412 -a 1 -x {1.1.3.0 0.0.3.0 201 ------- null} h -t 21.6429 -s 21 -d 28 -p ack -e 40 -c 0 -i 412 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 21.6445 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {0.0.3.0 1.1.3.0 202 ------- null} + -t 21.6445 -s 21 -d 28 -p ack -e 40 -c 0 -i 413 -a 1 -x {1.1.3.0 0.0.3.0 202 ------- null} - -t 21.6445 -s 21 -d 28 -p ack -e 40 -c 0 -i 413 -a 1 -x {1.1.3.0 0.0.3.0 202 ------- null} h -t 21.6445 -s 21 -d 28 -p ack -e 40 -c 0 -i 413 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 21.6461 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 394 -a 0 -x {0.0.3.0 1.1.3.0 203 ------- null} + -t 21.6461 -s 21 -d 28 -p ack -e 40 -c 0 -i 414 -a 1 -x {1.1.3.0 0.0.3.0 203 ------- null} - -t 21.6461 -s 21 -d 28 -p ack -e 40 -c 0 -i 414 -a 1 -x {1.1.3.0 0.0.3.0 203 ------- null} h -t 21.6461 -s 21 -d 28 -p ack -e 40 -c 0 -i 414 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 21.6477 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {0.0.3.0 1.1.3.0 204 ------- null} + -t 21.6477 -s 21 -d 28 -p ack -e 40 -c 0 -i 415 -a 1 -x {1.1.3.0 0.0.3.0 204 ------- null} - -t 21.6477 -s 21 -d 28 -p ack -e 40 -c 0 -i 415 -a 1 -x {1.1.3.0 0.0.3.0 204 ------- null} h -t 21.6477 -s 21 -d 28 -p ack -e 40 -c 0 -i 415 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 21.6493 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 396 -a 0 -x {0.0.3.0 1.1.3.0 205 ------- null} + -t 21.6493 -s 21 -d 28 -p ack -e 40 -c 0 -i 416 -a 1 -x {1.1.3.0 0.0.3.0 205 ------- null} - -t 21.6493 -s 21 -d 28 -p ack -e 40 -c 0 -i 416 -a 1 -x {1.1.3.0 0.0.3.0 205 ------- null} h -t 21.6493 -s 21 -d 28 -p ack -e 40 -c 0 -i 416 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 21.6509 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {0.0.3.0 1.1.3.0 206 ------- null} + -t 21.6509 -s 21 -d 28 -p ack -e 40 -c 0 -i 417 -a 1 -x {1.1.3.0 0.0.3.0 206 ------- null} - -t 21.6509 -s 21 -d 28 -p ack -e 40 -c 0 -i 417 -a 1 -x {1.1.3.0 0.0.3.0 206 ------- null} h -t 21.6509 -s 21 -d 28 -p ack -e 40 -c 0 -i 417 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 21.6525 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 398 -a 0 -x {0.0.3.0 1.1.3.0 207 ------- null} + -t 21.6525 -s 21 -d 28 -p ack -e 40 -c 0 -i 418 -a 1 -x {1.1.3.0 0.0.3.0 207 ------- null} - -t 21.6525 -s 21 -d 28 -p ack -e 40 -c 0 -i 418 -a 1 -x {1.1.3.0 0.0.3.0 207 ------- null} h -t 21.6525 -s 21 -d 28 -p ack -e 40 -c 0 -i 418 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 21.6541 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {0.0.3.0 1.1.3.0 208 ------- null} + -t 21.6541 -s 21 -d 28 -p ack -e 40 -c 0 -i 419 -a 1 -x {1.1.3.0 0.0.3.0 208 ------- null} - -t 21.6541 -s 21 -d 28 -p ack -e 40 -c 0 -i 419 -a 1 -x {1.1.3.0 0.0.3.0 208 ------- null} h -t 21.6541 -s 21 -d 28 -p ack -e 40 -c 0 -i 419 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 21.6557 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 400 -a 0 -x {0.0.3.0 1.1.3.0 209 ------- null} + -t 21.6557 -s 21 -d 28 -p ack -e 40 -c 0 -i 420 -a 1 -x {1.1.3.0 0.0.3.0 209 ------- null} - -t 21.6557 -s 21 -d 28 -p ack -e 40 -c 0 -i 420 -a 1 -x {1.1.3.0 0.0.3.0 209 ------- null} h -t 21.6557 -s 21 -d 28 -p ack -e 40 -c 0 -i 420 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 21.6573 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {0.0.3.0 1.1.3.0 210 ------- null} + -t 21.6573 -s 21 -d 28 -p ack -e 40 -c 0 -i 421 -a 1 -x {1.1.3.0 0.0.3.0 210 ------- null} - -t 21.6573 -s 21 -d 28 -p ack -e 40 -c 0 -i 421 -a 1 -x {1.1.3.0 0.0.3.0 210 ------- null} h -t 21.6573 -s 21 -d 28 -p ack -e 40 -c 0 -i 421 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 21.977 -s 21 -d 28 -p ack -e 40 -c 0 -i 402 -a 1 -x {1.1.3.0 0.0.3.0 191 ------- null} + -t 21.977 -s 28 -d 1 -p ack -e 40 -c 0 -i 402 -a 1 -x {1.1.3.0 0.0.3.0 191 ------- null} - -t 21.977 -s 28 -d 1 -p ack -e 40 -c 0 -i 402 -a 1 -x {1.1.3.0 0.0.3.0 191 ------- null} h -t 21.977 -s 28 -d 1 -p ack -e 40 -c 0 -i 402 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 21.9786 -s 21 -d 28 -p ack -e 40 -c 0 -i 403 -a 1 -x {1.1.3.0 0.0.3.0 192 ------- null} + -t 21.9786 -s 28 -d 1 -p ack -e 40 -c 0 -i 403 -a 1 -x {1.1.3.0 0.0.3.0 192 ------- null} - -t 21.9786 -s 28 -d 1 -p ack -e 40 -c 0 -i 403 -a 1 -x {1.1.3.0 0.0.3.0 192 ------- null} h -t 21.9786 -s 28 -d 1 -p ack -e 40 -c 0 -i 403 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 21.9802 -s 21 -d 28 -p ack -e 40 -c 0 -i 404 -a 1 -x {1.1.3.0 0.0.3.0 193 ------- null} + -t 21.9802 -s 28 -d 1 -p ack -e 40 -c 0 -i 404 -a 1 -x {1.1.3.0 0.0.3.0 193 ------- null} - -t 21.9802 -s 28 -d 1 -p ack -e 40 -c 0 -i 404 -a 1 -x {1.1.3.0 0.0.3.0 193 ------- null} h -t 21.9802 -s 28 -d 1 -p ack -e 40 -c 0 -i 404 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 21.9818 -s 21 -d 28 -p ack -e 40 -c 0 -i 405 -a 1 -x {1.1.3.0 0.0.3.0 194 ------- null} + -t 21.9818 -s 28 -d 1 -p ack -e 40 -c 0 -i 405 -a 1 -x {1.1.3.0 0.0.3.0 194 ------- null} - -t 21.9818 -s 28 -d 1 -p ack -e 40 -c 0 -i 405 -a 1 -x {1.1.3.0 0.0.3.0 194 ------- null} h -t 21.9818 -s 28 -d 1 -p ack -e 40 -c 0 -i 405 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 21.9834 -s 21 -d 28 -p ack -e 40 -c 0 -i 406 -a 1 -x {1.1.3.0 0.0.3.0 195 ------- null} + -t 21.9834 -s 28 -d 1 -p ack -e 40 -c 0 -i 406 -a 1 -x {1.1.3.0 0.0.3.0 195 ------- null} - -t 21.9834 -s 28 -d 1 -p ack -e 40 -c 0 -i 406 -a 1 -x {1.1.3.0 0.0.3.0 195 ------- null} h -t 21.9834 -s 28 -d 1 -p ack -e 40 -c 0 -i 406 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 21.985 -s 21 -d 28 -p ack -e 40 -c 0 -i 407 -a 1 -x {1.1.3.0 0.0.3.0 196 ------- null} + -t 21.985 -s 28 -d 1 -p ack -e 40 -c 0 -i 407 -a 1 -x {1.1.3.0 0.0.3.0 196 ------- null} - -t 21.985 -s 28 -d 1 -p ack -e 40 -c 0 -i 407 -a 1 -x {1.1.3.0 0.0.3.0 196 ------- null} h -t 21.985 -s 28 -d 1 -p ack -e 40 -c 0 -i 407 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 21.9866 -s 21 -d 28 -p ack -e 40 -c 0 -i 408 -a 1 -x {1.1.3.0 0.0.3.0 197 ------- null} + -t 21.9866 -s 28 -d 1 -p ack -e 40 -c 0 -i 408 -a 1 -x {1.1.3.0 0.0.3.0 197 ------- null} - -t 21.9866 -s 28 -d 1 -p ack -e 40 -c 0 -i 408 -a 1 -x {1.1.3.0 0.0.3.0 197 ------- null} h -t 21.9866 -s 28 -d 1 -p ack -e 40 -c 0 -i 408 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 21.9882 -s 21 -d 28 -p ack -e 40 -c 0 -i 409 -a 1 -x {1.1.3.0 0.0.3.0 198 ------- null} + -t 21.9882 -s 28 -d 1 -p ack -e 40 -c 0 -i 409 -a 1 -x {1.1.3.0 0.0.3.0 198 ------- null} - -t 21.9882 -s 28 -d 1 -p ack -e 40 -c 0 -i 409 -a 1 -x {1.1.3.0 0.0.3.0 198 ------- null} h -t 21.9882 -s 28 -d 1 -p ack -e 40 -c 0 -i 409 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 21.9898 -s 21 -d 28 -p ack -e 40 -c 0 -i 410 -a 1 -x {1.1.3.0 0.0.3.0 199 ------- null} + -t 21.9898 -s 28 -d 1 -p ack -e 40 -c 0 -i 410 -a 1 -x {1.1.3.0 0.0.3.0 199 ------- null} - -t 21.9898 -s 28 -d 1 -p ack -e 40 -c 0 -i 410 -a 1 -x {1.1.3.0 0.0.3.0 199 ------- null} h -t 21.9898 -s 28 -d 1 -p ack -e 40 -c 0 -i 410 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 21.9914 -s 21 -d 28 -p ack -e 40 -c 0 -i 411 -a 1 -x {1.1.3.0 0.0.3.0 200 ------- null} + -t 21.9914 -s 28 -d 1 -p ack -e 40 -c 0 -i 411 -a 1 -x {1.1.3.0 0.0.3.0 200 ------- null} - -t 21.9914 -s 28 -d 1 -p ack -e 40 -c 0 -i 411 -a 1 -x {1.1.3.0 0.0.3.0 200 ------- null} h -t 21.9914 -s 28 -d 1 -p ack -e 40 -c 0 -i 411 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 21.993 -s 21 -d 28 -p ack -e 40 -c 0 -i 412 -a 1 -x {1.1.3.0 0.0.3.0 201 ------- null} + -t 21.993 -s 28 -d 1 -p ack -e 40 -c 0 -i 412 -a 1 -x {1.1.3.0 0.0.3.0 201 ------- null} - -t 21.993 -s 28 -d 1 -p ack -e 40 -c 0 -i 412 -a 1 -x {1.1.3.0 0.0.3.0 201 ------- null} h -t 21.993 -s 28 -d 1 -p ack -e 40 -c 0 -i 412 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 21.9946 -s 21 -d 28 -p ack -e 40 -c 0 -i 413 -a 1 -x {1.1.3.0 0.0.3.0 202 ------- null} + -t 21.9946 -s 28 -d 1 -p ack -e 40 -c 0 -i 413 -a 1 -x {1.1.3.0 0.0.3.0 202 ------- null} - -t 21.9946 -s 28 -d 1 -p ack -e 40 -c 0 -i 413 -a 1 -x {1.1.3.0 0.0.3.0 202 ------- null} h -t 21.9946 -s 28 -d 1 -p ack -e 40 -c 0 -i 413 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 21.9962 -s 21 -d 28 -p ack -e 40 -c 0 -i 414 -a 1 -x {1.1.3.0 0.0.3.0 203 ------- null} + -t 21.9962 -s 28 -d 1 -p ack -e 40 -c 0 -i 414 -a 1 -x {1.1.3.0 0.0.3.0 203 ------- null} - -t 21.9962 -s 28 -d 1 -p ack -e 40 -c 0 -i 414 -a 1 -x {1.1.3.0 0.0.3.0 203 ------- null} h -t 21.9962 -s 28 -d 1 -p ack -e 40 -c 0 -i 414 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 21.9978 -s 21 -d 28 -p ack -e 40 -c 0 -i 415 -a 1 -x {1.1.3.0 0.0.3.0 204 ------- null} + -t 21.9978 -s 28 -d 1 -p ack -e 40 -c 0 -i 415 -a 1 -x {1.1.3.0 0.0.3.0 204 ------- null} - -t 21.9978 -s 28 -d 1 -p ack -e 40 -c 0 -i 415 -a 1 -x {1.1.3.0 0.0.3.0 204 ------- null} h -t 21.9978 -s 28 -d 1 -p ack -e 40 -c 0 -i 415 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 21.9994 -s 21 -d 28 -p ack -e 40 -c 0 -i 416 -a 1 -x {1.1.3.0 0.0.3.0 205 ------- null} + -t 21.9994 -s 28 -d 1 -p ack -e 40 -c 0 -i 416 -a 1 -x {1.1.3.0 0.0.3.0 205 ------- null} - -t 21.9994 -s 28 -d 1 -p ack -e 40 -c 0 -i 416 -a 1 -x {1.1.3.0 0.0.3.0 205 ------- null} h -t 21.9994 -s 28 -d 1 -p ack -e 40 -c 0 -i 416 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 22.001 -s 21 -d 28 -p ack -e 40 -c 0 -i 417 -a 1 -x {1.1.3.0 0.0.3.0 206 ------- null} + -t 22.001 -s 28 -d 1 -p ack -e 40 -c 0 -i 417 -a 1 -x {1.1.3.0 0.0.3.0 206 ------- null} - -t 22.001 -s 28 -d 1 -p ack -e 40 -c 0 -i 417 -a 1 -x {1.1.3.0 0.0.3.0 206 ------- null} h -t 22.001 -s 28 -d 1 -p ack -e 40 -c 0 -i 417 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 22.0026 -s 21 -d 28 -p ack -e 40 -c 0 -i 418 -a 1 -x {1.1.3.0 0.0.3.0 207 ------- null} + -t 22.0026 -s 28 -d 1 -p ack -e 40 -c 0 -i 418 -a 1 -x {1.1.3.0 0.0.3.0 207 ------- null} - -t 22.0026 -s 28 -d 1 -p ack -e 40 -c 0 -i 418 -a 1 -x {1.1.3.0 0.0.3.0 207 ------- null} h -t 22.0026 -s 28 -d 1 -p ack -e 40 -c 0 -i 418 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 22.0042 -s 21 -d 28 -p ack -e 40 -c 0 -i 419 -a 1 -x {1.1.3.0 0.0.3.0 208 ------- null} + -t 22.0042 -s 28 -d 1 -p ack -e 40 -c 0 -i 419 -a 1 -x {1.1.3.0 0.0.3.0 208 ------- null} - -t 22.0042 -s 28 -d 1 -p ack -e 40 -c 0 -i 419 -a 1 -x {1.1.3.0 0.0.3.0 208 ------- null} h -t 22.0042 -s 28 -d 1 -p ack -e 40 -c 0 -i 419 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 22.0058 -s 21 -d 28 -p ack -e 40 -c 0 -i 420 -a 1 -x {1.1.3.0 0.0.3.0 209 ------- null} + -t 22.0058 -s 28 -d 1 -p ack -e 40 -c 0 -i 420 -a 1 -x {1.1.3.0 0.0.3.0 209 ------- null} - -t 22.0058 -s 28 -d 1 -p ack -e 40 -c 0 -i 420 -a 1 -x {1.1.3.0 0.0.3.0 209 ------- null} h -t 22.0058 -s 28 -d 1 -p ack -e 40 -c 0 -i 420 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 22.0074 -s 21 -d 28 -p ack -e 40 -c 0 -i 421 -a 1 -x {1.1.3.0 0.0.3.0 210 ------- null} + -t 22.0074 -s 28 -d 1 -p ack -e 40 -c 0 -i 421 -a 1 -x {1.1.3.0 0.0.3.0 210 ------- null} - -t 22.0074 -s 28 -d 1 -p ack -e 40 -c 0 -i 421 -a 1 -x {1.1.3.0 0.0.3.0 210 ------- null} h -t 22.0074 -s 28 -d 1 -p ack -e 40 -c 0 -i 421 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 22.277 -s 28 -d 1 -p ack -e 40 -c 0 -i 402 -a 1 -x {1.1.3.0 0.0.3.0 191 ------- null} + -t 22.277 -s 1 -d 3 -p ack -e 40 -c 0 -i 402 -a 1 -x {1.1.3.0 0.0.3.0 191 ------- null} - -t 22.277 -s 1 -d 3 -p ack -e 40 -c 0 -i 402 -a 1 -x {1.1.3.0 0.0.3.0 191 ------- null} h -t 22.277 -s 1 -d 3 -p ack -e 40 -c 0 -i 402 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 22.2786 -s 28 -d 1 -p ack -e 40 -c 0 -i 403 -a 1 -x {1.1.3.0 0.0.3.0 192 ------- null} + -t 22.2786 -s 1 -d 3 -p ack -e 40 -c 0 -i 403 -a 1 -x {1.1.3.0 0.0.3.0 192 ------- null} - -t 22.2786 -s 1 -d 3 -p ack -e 40 -c 0 -i 403 -a 1 -x {1.1.3.0 0.0.3.0 192 ------- null} h -t 22.2786 -s 1 -d 3 -p ack -e 40 -c 0 -i 403 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 22.2802 -s 28 -d 1 -p ack -e 40 -c 0 -i 404 -a 1 -x {1.1.3.0 0.0.3.0 193 ------- null} + -t 22.2802 -s 1 -d 3 -p ack -e 40 -c 0 -i 404 -a 1 -x {1.1.3.0 0.0.3.0 193 ------- null} - -t 22.2802 -s 1 -d 3 -p ack -e 40 -c 0 -i 404 -a 1 -x {1.1.3.0 0.0.3.0 193 ------- null} h -t 22.2802 -s 1 -d 3 -p ack -e 40 -c 0 -i 404 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 22.2818 -s 28 -d 1 -p ack -e 40 -c 0 -i 405 -a 1 -x {1.1.3.0 0.0.3.0 194 ------- null} + -t 22.2818 -s 1 -d 3 -p ack -e 40 -c 0 -i 405 -a 1 -x {1.1.3.0 0.0.3.0 194 ------- null} - -t 22.2818 -s 1 -d 3 -p ack -e 40 -c 0 -i 405 -a 1 -x {1.1.3.0 0.0.3.0 194 ------- null} h -t 22.2818 -s 1 -d 3 -p ack -e 40 -c 0 -i 405 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 22.2834 -s 28 -d 1 -p ack -e 40 -c 0 -i 406 -a 1 -x {1.1.3.0 0.0.3.0 195 ------- null} + -t 22.2834 -s 1 -d 3 -p ack -e 40 -c 0 -i 406 -a 1 -x {1.1.3.0 0.0.3.0 195 ------- null} - -t 22.2834 -s 1 -d 3 -p ack -e 40 -c 0 -i 406 -a 1 -x {1.1.3.0 0.0.3.0 195 ------- null} h -t 22.2834 -s 1 -d 3 -p ack -e 40 -c 0 -i 406 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 22.285 -s 28 -d 1 -p ack -e 40 -c 0 -i 407 -a 1 -x {1.1.3.0 0.0.3.0 196 ------- null} + -t 22.285 -s 1 -d 3 -p ack -e 40 -c 0 -i 407 -a 1 -x {1.1.3.0 0.0.3.0 196 ------- null} - -t 22.285 -s 1 -d 3 -p ack -e 40 -c 0 -i 407 -a 1 -x {1.1.3.0 0.0.3.0 196 ------- null} h -t 22.285 -s 1 -d 3 -p ack -e 40 -c 0 -i 407 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 22.2866 -s 28 -d 1 -p ack -e 40 -c 0 -i 408 -a 1 -x {1.1.3.0 0.0.3.0 197 ------- null} + -t 22.2866 -s 1 -d 3 -p ack -e 40 -c 0 -i 408 -a 1 -x {1.1.3.0 0.0.3.0 197 ------- null} - -t 22.2866 -s 1 -d 3 -p ack -e 40 -c 0 -i 408 -a 1 -x {1.1.3.0 0.0.3.0 197 ------- null} h -t 22.2866 -s 1 -d 3 -p ack -e 40 -c 0 -i 408 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 22.2882 -s 28 -d 1 -p ack -e 40 -c 0 -i 409 -a 1 -x {1.1.3.0 0.0.3.0 198 ------- null} + -t 22.2882 -s 1 -d 3 -p ack -e 40 -c 0 -i 409 -a 1 -x {1.1.3.0 0.0.3.0 198 ------- null} - -t 22.2882 -s 1 -d 3 -p ack -e 40 -c 0 -i 409 -a 1 -x {1.1.3.0 0.0.3.0 198 ------- null} h -t 22.2882 -s 1 -d 3 -p ack -e 40 -c 0 -i 409 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 22.2898 -s 28 -d 1 -p ack -e 40 -c 0 -i 410 -a 1 -x {1.1.3.0 0.0.3.0 199 ------- null} + -t 22.2898 -s 1 -d 3 -p ack -e 40 -c 0 -i 410 -a 1 -x {1.1.3.0 0.0.3.0 199 ------- null} - -t 22.2898 -s 1 -d 3 -p ack -e 40 -c 0 -i 410 -a 1 -x {1.1.3.0 0.0.3.0 199 ------- null} h -t 22.2898 -s 1 -d 3 -p ack -e 40 -c 0 -i 410 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 22.2914 -s 28 -d 1 -p ack -e 40 -c 0 -i 411 -a 1 -x {1.1.3.0 0.0.3.0 200 ------- null} + -t 22.2914 -s 1 -d 3 -p ack -e 40 -c 0 -i 411 -a 1 -x {1.1.3.0 0.0.3.0 200 ------- null} - -t 22.2914 -s 1 -d 3 -p ack -e 40 -c 0 -i 411 -a 1 -x {1.1.3.0 0.0.3.0 200 ------- null} h -t 22.2914 -s 1 -d 3 -p ack -e 40 -c 0 -i 411 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 22.293 -s 28 -d 1 -p ack -e 40 -c 0 -i 412 -a 1 -x {1.1.3.0 0.0.3.0 201 ------- null} + -t 22.293 -s 1 -d 3 -p ack -e 40 -c 0 -i 412 -a 1 -x {1.1.3.0 0.0.3.0 201 ------- null} - -t 22.293 -s 1 -d 3 -p ack -e 40 -c 0 -i 412 -a 1 -x {1.1.3.0 0.0.3.0 201 ------- null} h -t 22.293 -s 1 -d 3 -p ack -e 40 -c 0 -i 412 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 22.2946 -s 28 -d 1 -p ack -e 40 -c 0 -i 413 -a 1 -x {1.1.3.0 0.0.3.0 202 ------- null} + -t 22.2946 -s 1 -d 3 -p ack -e 40 -c 0 -i 413 -a 1 -x {1.1.3.0 0.0.3.0 202 ------- null} - -t 22.2946 -s 1 -d 3 -p ack -e 40 -c 0 -i 413 -a 1 -x {1.1.3.0 0.0.3.0 202 ------- null} h -t 22.2946 -s 1 -d 3 -p ack -e 40 -c 0 -i 413 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 22.2962 -s 28 -d 1 -p ack -e 40 -c 0 -i 414 -a 1 -x {1.1.3.0 0.0.3.0 203 ------- null} + -t 22.2962 -s 1 -d 3 -p ack -e 40 -c 0 -i 414 -a 1 -x {1.1.3.0 0.0.3.0 203 ------- null} - -t 22.2962 -s 1 -d 3 -p ack -e 40 -c 0 -i 414 -a 1 -x {1.1.3.0 0.0.3.0 203 ------- null} h -t 22.2962 -s 1 -d 3 -p ack -e 40 -c 0 -i 414 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 22.2978 -s 28 -d 1 -p ack -e 40 -c 0 -i 415 -a 1 -x {1.1.3.0 0.0.3.0 204 ------- null} + -t 22.2978 -s 1 -d 3 -p ack -e 40 -c 0 -i 415 -a 1 -x {1.1.3.0 0.0.3.0 204 ------- null} - -t 22.2978 -s 1 -d 3 -p ack -e 40 -c 0 -i 415 -a 1 -x {1.1.3.0 0.0.3.0 204 ------- null} h -t 22.2978 -s 1 -d 3 -p ack -e 40 -c 0 -i 415 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 22.2994 -s 28 -d 1 -p ack -e 40 -c 0 -i 416 -a 1 -x {1.1.3.0 0.0.3.0 205 ------- null} + -t 22.2994 -s 1 -d 3 -p ack -e 40 -c 0 -i 416 -a 1 -x {1.1.3.0 0.0.3.0 205 ------- null} - -t 22.2994 -s 1 -d 3 -p ack -e 40 -c 0 -i 416 -a 1 -x {1.1.3.0 0.0.3.0 205 ------- null} h -t 22.2994 -s 1 -d 3 -p ack -e 40 -c 0 -i 416 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 22.301 -s 28 -d 1 -p ack -e 40 -c 0 -i 417 -a 1 -x {1.1.3.0 0.0.3.0 206 ------- null} + -t 22.301 -s 1 -d 3 -p ack -e 40 -c 0 -i 417 -a 1 -x {1.1.3.0 0.0.3.0 206 ------- null} - -t 22.301 -s 1 -d 3 -p ack -e 40 -c 0 -i 417 -a 1 -x {1.1.3.0 0.0.3.0 206 ------- null} h -t 22.301 -s 1 -d 3 -p ack -e 40 -c 0 -i 417 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 22.3026 -s 28 -d 1 -p ack -e 40 -c 0 -i 418 -a 1 -x {1.1.3.0 0.0.3.0 207 ------- null} + -t 22.3026 -s 1 -d 3 -p ack -e 40 -c 0 -i 418 -a 1 -x {1.1.3.0 0.0.3.0 207 ------- null} - -t 22.3026 -s 1 -d 3 -p ack -e 40 -c 0 -i 418 -a 1 -x {1.1.3.0 0.0.3.0 207 ------- null} h -t 22.3026 -s 1 -d 3 -p ack -e 40 -c 0 -i 418 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 22.3042 -s 28 -d 1 -p ack -e 40 -c 0 -i 419 -a 1 -x {1.1.3.0 0.0.3.0 208 ------- null} + -t 22.3042 -s 1 -d 3 -p ack -e 40 -c 0 -i 419 -a 1 -x {1.1.3.0 0.0.3.0 208 ------- null} - -t 22.3042 -s 1 -d 3 -p ack -e 40 -c 0 -i 419 -a 1 -x {1.1.3.0 0.0.3.0 208 ------- null} h -t 22.3042 -s 1 -d 3 -p ack -e 40 -c 0 -i 419 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 22.3058 -s 28 -d 1 -p ack -e 40 -c 0 -i 420 -a 1 -x {1.1.3.0 0.0.3.0 209 ------- null} + -t 22.3058 -s 1 -d 3 -p ack -e 40 -c 0 -i 420 -a 1 -x {1.1.3.0 0.0.3.0 209 ------- null} - -t 22.3058 -s 1 -d 3 -p ack -e 40 -c 0 -i 420 -a 1 -x {1.1.3.0 0.0.3.0 209 ------- null} h -t 22.3058 -s 1 -d 3 -p ack -e 40 -c 0 -i 420 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 22.3074 -s 28 -d 1 -p ack -e 40 -c 0 -i 421 -a 1 -x {1.1.3.0 0.0.3.0 210 ------- null} + -t 22.3074 -s 1 -d 3 -p ack -e 40 -c 0 -i 421 -a 1 -x {1.1.3.0 0.0.3.0 210 ------- null} - -t 22.3074 -s 1 -d 3 -p ack -e 40 -c 0 -i 421 -a 1 -x {1.1.3.0 0.0.3.0 210 ------- null} h -t 22.3074 -s 1 -d 3 -p ack -e 40 -c 0 -i 421 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 22.4171 -s 1 -d 3 -p ack -e 40 -c 0 -i 402 -a 1 -x {1.1.3.0 0.0.3.0 191 ------- null} + -t 22.4171 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 422 -a 0 -x {0.0.3.0 1.1.3.0 211 ------- null} - -t 22.4171 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 422 -a 0 -x {0.0.3.0 1.1.3.0 211 ------- null} h -t 22.4171 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 422 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.4187 -s 1 -d 3 -p ack -e 40 -c 0 -i 403 -a 1 -x {1.1.3.0 0.0.3.0 192 ------- null} + -t 22.4187 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {0.0.3.0 1.1.3.0 212 ------- null} - -t 22.4187 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {0.0.3.0 1.1.3.0 212 ------- null} h -t 22.4187 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.4203 -s 1 -d 3 -p ack -e 40 -c 0 -i 404 -a 1 -x {1.1.3.0 0.0.3.0 193 ------- null} + -t 22.4203 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 424 -a 0 -x {0.0.3.0 1.1.3.0 213 ------- null} - -t 22.4203 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 424 -a 0 -x {0.0.3.0 1.1.3.0 213 ------- null} h -t 22.4203 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 424 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.4219 -s 1 -d 3 -p ack -e 40 -c 0 -i 405 -a 1 -x {1.1.3.0 0.0.3.0 194 ------- null} + -t 22.4219 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {0.0.3.0 1.1.3.0 214 ------- null} - -t 22.4219 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {0.0.3.0 1.1.3.0 214 ------- null} h -t 22.4219 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.4235 -s 1 -d 3 -p ack -e 40 -c 0 -i 406 -a 1 -x {1.1.3.0 0.0.3.0 195 ------- null} + -t 22.4235 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 426 -a 0 -x {0.0.3.0 1.1.3.0 215 ------- null} - -t 22.4235 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 426 -a 0 -x {0.0.3.0 1.1.3.0 215 ------- null} h -t 22.4235 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 426 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.4251 -s 1 -d 3 -p ack -e 40 -c 0 -i 407 -a 1 -x {1.1.3.0 0.0.3.0 196 ------- null} + -t 22.4251 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {0.0.3.0 1.1.3.0 216 ------- null} - -t 22.4251 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {0.0.3.0 1.1.3.0 216 ------- null} h -t 22.4251 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.4267 -s 1 -d 3 -p ack -e 40 -c 0 -i 408 -a 1 -x {1.1.3.0 0.0.3.0 197 ------- null} + -t 22.4267 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 428 -a 0 -x {0.0.3.0 1.1.3.0 217 ------- null} - -t 22.4267 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 428 -a 0 -x {0.0.3.0 1.1.3.0 217 ------- null} h -t 22.4267 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 428 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.4283 -s 1 -d 3 -p ack -e 40 -c 0 -i 409 -a 1 -x {1.1.3.0 0.0.3.0 198 ------- null} + -t 22.4283 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {0.0.3.0 1.1.3.0 218 ------- null} - -t 22.4283 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {0.0.3.0 1.1.3.0 218 ------- null} h -t 22.4283 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.4299 -s 1 -d 3 -p ack -e 40 -c 0 -i 410 -a 1 -x {1.1.3.0 0.0.3.0 199 ------- null} + -t 22.4299 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 430 -a 0 -x {0.0.3.0 1.1.3.0 219 ------- null} - -t 22.4299 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 430 -a 0 -x {0.0.3.0 1.1.3.0 219 ------- null} h -t 22.4299 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 430 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.4315 -s 1 -d 3 -p ack -e 40 -c 0 -i 411 -a 1 -x {1.1.3.0 0.0.3.0 200 ------- null} + -t 22.4315 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {0.0.3.0 1.1.3.0 220 ------- null} - -t 22.4315 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {0.0.3.0 1.1.3.0 220 ------- null} h -t 22.4315 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.4331 -s 1 -d 3 -p ack -e 40 -c 0 -i 412 -a 1 -x {1.1.3.0 0.0.3.0 201 ------- null} + -t 22.4331 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 432 -a 0 -x {0.0.3.0 1.1.3.0 221 ------- null} - -t 22.4331 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 432 -a 0 -x {0.0.3.0 1.1.3.0 221 ------- null} h -t 22.4331 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 432 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.4347 -s 1 -d 3 -p ack -e 40 -c 0 -i 413 -a 1 -x {1.1.3.0 0.0.3.0 202 ------- null} + -t 22.4347 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {0.0.3.0 1.1.3.0 222 ------- null} - -t 22.4347 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {0.0.3.0 1.1.3.0 222 ------- null} h -t 22.4347 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.4363 -s 1 -d 3 -p ack -e 40 -c 0 -i 414 -a 1 -x {1.1.3.0 0.0.3.0 203 ------- null} + -t 22.4363 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {0.0.3.0 1.1.3.0 223 ------- null} - -t 22.4363 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {0.0.3.0 1.1.3.0 223 ------- null} h -t 22.4363 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.4379 -s 1 -d 3 -p ack -e 40 -c 0 -i 415 -a 1 -x {1.1.3.0 0.0.3.0 204 ------- null} + -t 22.4379 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {0.0.3.0 1.1.3.0 224 ------- null} - -t 22.4379 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {0.0.3.0 1.1.3.0 224 ------- null} h -t 22.4379 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.4395 -s 1 -d 3 -p ack -e 40 -c 0 -i 416 -a 1 -x {1.1.3.0 0.0.3.0 205 ------- null} + -t 22.4395 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {0.0.3.0 1.1.3.0 225 ------- null} - -t 22.4395 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {0.0.3.0 1.1.3.0 225 ------- null} h -t 22.4395 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.4411 -s 1 -d 3 -p ack -e 40 -c 0 -i 417 -a 1 -x {1.1.3.0 0.0.3.0 206 ------- null} + -t 22.4411 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {0.0.3.0 1.1.3.0 226 ------- null} - -t 22.4411 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {0.0.3.0 1.1.3.0 226 ------- null} h -t 22.4411 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.4427 -s 1 -d 3 -p ack -e 40 -c 0 -i 418 -a 1 -x {1.1.3.0 0.0.3.0 207 ------- null} + -t 22.4427 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {0.0.3.0 1.1.3.0 227 ------- null} - -t 22.4427 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {0.0.3.0 1.1.3.0 227 ------- null} h -t 22.4427 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.4443 -s 1 -d 3 -p ack -e 40 -c 0 -i 419 -a 1 -x {1.1.3.0 0.0.3.0 208 ------- null} + -t 22.4443 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {0.0.3.0 1.1.3.0 228 ------- null} - -t 22.4443 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {0.0.3.0 1.1.3.0 228 ------- null} h -t 22.4443 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.4459 -s 1 -d 3 -p ack -e 40 -c 0 -i 420 -a 1 -x {1.1.3.0 0.0.3.0 209 ------- null} + -t 22.4459 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {0.0.3.0 1.1.3.0 229 ------- null} - -t 22.4459 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {0.0.3.0 1.1.3.0 229 ------- null} h -t 22.4459 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.4475 -s 1 -d 3 -p ack -e 40 -c 0 -i 421 -a 1 -x {1.1.3.0 0.0.3.0 210 ------- null} + -t 22.4475 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {0.0.3.0 1.1.3.0 230 ------- null} - -t 22.4475 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {0.0.3.0 1.1.3.0 230 ------- null} h -t 22.4475 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.5787 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 422 -a 0 -x {0.0.3.0 1.1.3.0 211 ------- null} + -t 22.5787 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 422 -a 0 -x {0.0.3.0 1.1.3.0 211 ------- null} - -t 22.5787 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 422 -a 0 -x {0.0.3.0 1.1.3.0 211 ------- null} h -t 22.5787 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 422 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.5803 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {0.0.3.0 1.1.3.0 212 ------- null} + -t 22.5803 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {0.0.3.0 1.1.3.0 212 ------- null} - -t 22.5803 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {0.0.3.0 1.1.3.0 212 ------- null} h -t 22.5803 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.5819 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 424 -a 0 -x {0.0.3.0 1.1.3.0 213 ------- null} + -t 22.5819 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 424 -a 0 -x {0.0.3.0 1.1.3.0 213 ------- null} - -t 22.5819 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 424 -a 0 -x {0.0.3.0 1.1.3.0 213 ------- null} h -t 22.5819 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 424 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.5835 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {0.0.3.0 1.1.3.0 214 ------- null} + -t 22.5835 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {0.0.3.0 1.1.3.0 214 ------- null} - -t 22.5835 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {0.0.3.0 1.1.3.0 214 ------- null} h -t 22.5835 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.5851 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 426 -a 0 -x {0.0.3.0 1.1.3.0 215 ------- null} + -t 22.5851 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 426 -a 0 -x {0.0.3.0 1.1.3.0 215 ------- null} - -t 22.5851 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 426 -a 0 -x {0.0.3.0 1.1.3.0 215 ------- null} h -t 22.5851 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 426 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.5867 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {0.0.3.0 1.1.3.0 216 ------- null} + -t 22.5867 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {0.0.3.0 1.1.3.0 216 ------- null} - -t 22.5867 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {0.0.3.0 1.1.3.0 216 ------- null} h -t 22.5867 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.5883 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 428 -a 0 -x {0.0.3.0 1.1.3.0 217 ------- null} + -t 22.5883 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 428 -a 0 -x {0.0.3.0 1.1.3.0 217 ------- null} - -t 22.5883 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 428 -a 0 -x {0.0.3.0 1.1.3.0 217 ------- null} h -t 22.5883 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 428 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.5899 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {0.0.3.0 1.1.3.0 218 ------- null} + -t 22.5899 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {0.0.3.0 1.1.3.0 218 ------- null} - -t 22.5899 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {0.0.3.0 1.1.3.0 218 ------- null} h -t 22.5899 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.5915 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 430 -a 0 -x {0.0.3.0 1.1.3.0 219 ------- null} + -t 22.5915 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 430 -a 0 -x {0.0.3.0 1.1.3.0 219 ------- null} - -t 22.5915 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 430 -a 0 -x {0.0.3.0 1.1.3.0 219 ------- null} h -t 22.5915 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 430 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.5931 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {0.0.3.0 1.1.3.0 220 ------- null} + -t 22.5931 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {0.0.3.0 1.1.3.0 220 ------- null} - -t 22.5931 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {0.0.3.0 1.1.3.0 220 ------- null} h -t 22.5931 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.5947 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 432 -a 0 -x {0.0.3.0 1.1.3.0 221 ------- null} + -t 22.5947 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 432 -a 0 -x {0.0.3.0 1.1.3.0 221 ------- null} - -t 22.5947 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 432 -a 0 -x {0.0.3.0 1.1.3.0 221 ------- null} h -t 22.5947 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 432 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.5963 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {0.0.3.0 1.1.3.0 222 ------- null} + -t 22.5963 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {0.0.3.0 1.1.3.0 222 ------- null} - -t 22.5963 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {0.0.3.0 1.1.3.0 222 ------- null} h -t 22.5963 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.5979 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {0.0.3.0 1.1.3.0 223 ------- null} + -t 22.5979 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {0.0.3.0 1.1.3.0 223 ------- null} - -t 22.5979 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {0.0.3.0 1.1.3.0 223 ------- null} h -t 22.5979 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.5995 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {0.0.3.0 1.1.3.0 224 ------- null} + -t 22.5995 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {0.0.3.0 1.1.3.0 224 ------- null} - -t 22.5995 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {0.0.3.0 1.1.3.0 224 ------- null} h -t 22.5995 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.6011 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {0.0.3.0 1.1.3.0 225 ------- null} + -t 22.6011 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {0.0.3.0 1.1.3.0 225 ------- null} - -t 22.6011 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {0.0.3.0 1.1.3.0 225 ------- null} h -t 22.6011 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.6027 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {0.0.3.0 1.1.3.0 226 ------- null} + -t 22.6027 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {0.0.3.0 1.1.3.0 226 ------- null} - -t 22.6027 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {0.0.3.0 1.1.3.0 226 ------- null} h -t 22.6027 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.6043 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {0.0.3.0 1.1.3.0 227 ------- null} + -t 22.6043 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {0.0.3.0 1.1.3.0 227 ------- null} - -t 22.6043 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {0.0.3.0 1.1.3.0 227 ------- null} h -t 22.6043 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.6059 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {0.0.3.0 1.1.3.0 228 ------- null} + -t 22.6059 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {0.0.3.0 1.1.3.0 228 ------- null} - -t 22.6059 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {0.0.3.0 1.1.3.0 228 ------- null} h -t 22.6059 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.6075 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {0.0.3.0 1.1.3.0 229 ------- null} + -t 22.6075 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {0.0.3.0 1.1.3.0 229 ------- null} - -t 22.6075 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {0.0.3.0 1.1.3.0 229 ------- null} h -t 22.6075 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.6091 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {0.0.3.0 1.1.3.0 230 ------- null} + -t 22.6091 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {0.0.3.0 1.1.3.0 230 ------- null} - -t 22.6091 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {0.0.3.0 1.1.3.0 230 ------- null} h -t 22.6091 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.8803 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 422 -a 0 -x {0.0.3.0 1.1.3.0 211 ------- null} + -t 22.8803 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 422 -a 0 -x {0.0.3.0 1.1.3.0 211 ------- null} - -t 22.8803 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 422 -a 0 -x {0.0.3.0 1.1.3.0 211 ------- null} h -t 22.8803 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 422 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.8819 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {0.0.3.0 1.1.3.0 212 ------- null} + -t 22.8819 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {0.0.3.0 1.1.3.0 212 ------- null} - -t 22.8819 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {0.0.3.0 1.1.3.0 212 ------- null} h -t 22.8819 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.8835 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 424 -a 0 -x {0.0.3.0 1.1.3.0 213 ------- null} + -t 22.8835 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 424 -a 0 -x {0.0.3.0 1.1.3.0 213 ------- null} - -t 22.8835 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 424 -a 0 -x {0.0.3.0 1.1.3.0 213 ------- null} h -t 22.8835 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 424 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.8851 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {0.0.3.0 1.1.3.0 214 ------- null} + -t 22.8851 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {0.0.3.0 1.1.3.0 214 ------- null} - -t 22.8851 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {0.0.3.0 1.1.3.0 214 ------- null} h -t 22.8851 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.8867 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 426 -a 0 -x {0.0.3.0 1.1.3.0 215 ------- null} + -t 22.8867 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 426 -a 0 -x {0.0.3.0 1.1.3.0 215 ------- null} - -t 22.8867 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 426 -a 0 -x {0.0.3.0 1.1.3.0 215 ------- null} h -t 22.8867 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 426 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.8883 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {0.0.3.0 1.1.3.0 216 ------- null} + -t 22.8883 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {0.0.3.0 1.1.3.0 216 ------- null} - -t 22.8883 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {0.0.3.0 1.1.3.0 216 ------- null} h -t 22.8883 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.8899 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 428 -a 0 -x {0.0.3.0 1.1.3.0 217 ------- null} + -t 22.8899 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 428 -a 0 -x {0.0.3.0 1.1.3.0 217 ------- null} - -t 22.8899 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 428 -a 0 -x {0.0.3.0 1.1.3.0 217 ------- null} h -t 22.8899 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 428 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.8915 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {0.0.3.0 1.1.3.0 218 ------- null} + -t 22.8915 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {0.0.3.0 1.1.3.0 218 ------- null} - -t 22.8915 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {0.0.3.0 1.1.3.0 218 ------- null} h -t 22.8915 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.8931 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 430 -a 0 -x {0.0.3.0 1.1.3.0 219 ------- null} + -t 22.8931 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 430 -a 0 -x {0.0.3.0 1.1.3.0 219 ------- null} - -t 22.8931 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 430 -a 0 -x {0.0.3.0 1.1.3.0 219 ------- null} h -t 22.8931 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 430 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.8947 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {0.0.3.0 1.1.3.0 220 ------- null} + -t 22.8947 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {0.0.3.0 1.1.3.0 220 ------- null} - -t 22.8947 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {0.0.3.0 1.1.3.0 220 ------- null} h -t 22.8947 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.8963 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 432 -a 0 -x {0.0.3.0 1.1.3.0 221 ------- null} + -t 22.8963 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 432 -a 0 -x {0.0.3.0 1.1.3.0 221 ------- null} - -t 22.8963 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 432 -a 0 -x {0.0.3.0 1.1.3.0 221 ------- null} h -t 22.8963 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 432 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.8979 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {0.0.3.0 1.1.3.0 222 ------- null} + -t 22.8979 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {0.0.3.0 1.1.3.0 222 ------- null} - -t 22.8979 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {0.0.3.0 1.1.3.0 222 ------- null} h -t 22.8979 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.8995 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {0.0.3.0 1.1.3.0 223 ------- null} + -t 22.8995 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {0.0.3.0 1.1.3.0 223 ------- null} - -t 22.8995 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {0.0.3.0 1.1.3.0 223 ------- null} h -t 22.8995 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.9011 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {0.0.3.0 1.1.3.0 224 ------- null} + -t 22.9011 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {0.0.3.0 1.1.3.0 224 ------- null} - -t 22.9011 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {0.0.3.0 1.1.3.0 224 ------- null} h -t 22.9011 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.9027 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {0.0.3.0 1.1.3.0 225 ------- null} + -t 22.9027 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {0.0.3.0 1.1.3.0 225 ------- null} - -t 22.9027 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {0.0.3.0 1.1.3.0 225 ------- null} h -t 22.9027 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.9043 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {0.0.3.0 1.1.3.0 226 ------- null} + -t 22.9043 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {0.0.3.0 1.1.3.0 226 ------- null} - -t 22.9043 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {0.0.3.0 1.1.3.0 226 ------- null} h -t 22.9043 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.9059 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {0.0.3.0 1.1.3.0 227 ------- null} + -t 22.9059 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {0.0.3.0 1.1.3.0 227 ------- null} - -t 22.9059 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {0.0.3.0 1.1.3.0 227 ------- null} h -t 22.9059 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.9075 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {0.0.3.0 1.1.3.0 228 ------- null} + -t 22.9075 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {0.0.3.0 1.1.3.0 228 ------- null} - -t 22.9075 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {0.0.3.0 1.1.3.0 228 ------- null} h -t 22.9075 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.9091 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {0.0.3.0 1.1.3.0 229 ------- null} + -t 22.9091 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {0.0.3.0 1.1.3.0 229 ------- null} - -t 22.9091 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {0.0.3.0 1.1.3.0 229 ------- null} h -t 22.9091 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.9107 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {0.0.3.0 1.1.3.0 230 ------- null} + -t 22.9107 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {0.0.3.0 1.1.3.0 230 ------- null} - -t 22.9107 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {0.0.3.0 1.1.3.0 230 ------- null} h -t 22.9107 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.9819 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 422 -a 0 -x {0.0.3.0 1.1.3.0 211 ------- null} + -t 22.9819 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 422 -a 0 -x {0.0.3.0 1.1.3.0 211 ------- null} - -t 22.9819 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 422 -a 0 -x {0.0.3.0 1.1.3.0 211 ------- null} h -t 22.9819 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 422 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.9835 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {0.0.3.0 1.1.3.0 212 ------- null} + -t 22.9835 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {0.0.3.0 1.1.3.0 212 ------- null} - -t 22.9835 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {0.0.3.0 1.1.3.0 212 ------- null} h -t 22.9835 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.9851 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 424 -a 0 -x {0.0.3.0 1.1.3.0 213 ------- null} + -t 22.9851 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 424 -a 0 -x {0.0.3.0 1.1.3.0 213 ------- null} - -t 22.9851 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 424 -a 0 -x {0.0.3.0 1.1.3.0 213 ------- null} h -t 22.9851 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 424 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.9867 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {0.0.3.0 1.1.3.0 214 ------- null} + -t 22.9867 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {0.0.3.0 1.1.3.0 214 ------- null} - -t 22.9867 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {0.0.3.0 1.1.3.0 214 ------- null} h -t 22.9867 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.9883 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 426 -a 0 -x {0.0.3.0 1.1.3.0 215 ------- null} + -t 22.9883 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 426 -a 0 -x {0.0.3.0 1.1.3.0 215 ------- null} - -t 22.9883 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 426 -a 0 -x {0.0.3.0 1.1.3.0 215 ------- null} h -t 22.9883 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 426 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.9899 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {0.0.3.0 1.1.3.0 216 ------- null} + -t 22.9899 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {0.0.3.0 1.1.3.0 216 ------- null} - -t 22.9899 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {0.0.3.0 1.1.3.0 216 ------- null} h -t 22.9899 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.9915 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 428 -a 0 -x {0.0.3.0 1.1.3.0 217 ------- null} + -t 22.9915 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 428 -a 0 -x {0.0.3.0 1.1.3.0 217 ------- null} - -t 22.9915 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 428 -a 0 -x {0.0.3.0 1.1.3.0 217 ------- null} h -t 22.9915 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 428 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.9931 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {0.0.3.0 1.1.3.0 218 ------- null} + -t 22.9931 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {0.0.3.0 1.1.3.0 218 ------- null} - -t 22.9931 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {0.0.3.0 1.1.3.0 218 ------- null} h -t 22.9931 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.9947 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 430 -a 0 -x {0.0.3.0 1.1.3.0 219 ------- null} + -t 22.9947 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 430 -a 0 -x {0.0.3.0 1.1.3.0 219 ------- null} - -t 22.9947 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 430 -a 0 -x {0.0.3.0 1.1.3.0 219 ------- null} h -t 22.9947 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 430 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.9963 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {0.0.3.0 1.1.3.0 220 ------- null} + -t 22.9963 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {0.0.3.0 1.1.3.0 220 ------- null} - -t 22.9963 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {0.0.3.0 1.1.3.0 220 ------- null} h -t 22.9963 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.9979 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 432 -a 0 -x {0.0.3.0 1.1.3.0 221 ------- null} + -t 22.9979 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 432 -a 0 -x {0.0.3.0 1.1.3.0 221 ------- null} - -t 22.9979 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 432 -a 0 -x {0.0.3.0 1.1.3.0 221 ------- null} h -t 22.9979 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 432 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 22.9995 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {0.0.3.0 1.1.3.0 222 ------- null} + -t 22.9995 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {0.0.3.0 1.1.3.0 222 ------- null} - -t 22.9995 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {0.0.3.0 1.1.3.0 222 ------- null} h -t 22.9995 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.0011 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {0.0.3.0 1.1.3.0 223 ------- null} + -t 23.0011 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {0.0.3.0 1.1.3.0 223 ------- null} - -t 23.0011 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {0.0.3.0 1.1.3.0 223 ------- null} h -t 23.0011 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.0027 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {0.0.3.0 1.1.3.0 224 ------- null} + -t 23.0027 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {0.0.3.0 1.1.3.0 224 ------- null} - -t 23.0027 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {0.0.3.0 1.1.3.0 224 ------- null} h -t 23.0027 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.0043 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {0.0.3.0 1.1.3.0 225 ------- null} + -t 23.0043 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {0.0.3.0 1.1.3.0 225 ------- null} - -t 23.0043 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {0.0.3.0 1.1.3.0 225 ------- null} h -t 23.0043 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.0059 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {0.0.3.0 1.1.3.0 226 ------- null} + -t 23.0059 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {0.0.3.0 1.1.3.0 226 ------- null} - -t 23.0059 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {0.0.3.0 1.1.3.0 226 ------- null} h -t 23.0059 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.0075 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {0.0.3.0 1.1.3.0 227 ------- null} + -t 23.0075 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {0.0.3.0 1.1.3.0 227 ------- null} - -t 23.0075 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {0.0.3.0 1.1.3.0 227 ------- null} h -t 23.0075 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.0091 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {0.0.3.0 1.1.3.0 228 ------- null} + -t 23.0091 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {0.0.3.0 1.1.3.0 228 ------- null} - -t 23.0091 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {0.0.3.0 1.1.3.0 228 ------- null} h -t 23.0091 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.0107 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {0.0.3.0 1.1.3.0 229 ------- null} + -t 23.0107 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {0.0.3.0 1.1.3.0 229 ------- null} - -t 23.0107 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {0.0.3.0 1.1.3.0 229 ------- null} h -t 23.0107 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.0123 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {0.0.3.0 1.1.3.0 230 ------- null} + -t 23.0123 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {0.0.3.0 1.1.3.0 230 ------- null} - -t 23.0123 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {0.0.3.0 1.1.3.0 230 ------- null} h -t 23.0123 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.0635 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 422 -a 0 -x {0.0.3.0 1.1.3.0 211 ------- null} + -t 23.0635 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 422 -a 0 -x {0.0.3.0 1.1.3.0 211 ------- null} - -t 23.0635 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 422 -a 0 -x {0.0.3.0 1.1.3.0 211 ------- null} h -t 23.0635 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 422 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.0651 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {0.0.3.0 1.1.3.0 212 ------- null} + -t 23.0651 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {0.0.3.0 1.1.3.0 212 ------- null} - -t 23.0651 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {0.0.3.0 1.1.3.0 212 ------- null} h -t 23.0651 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.0667 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 424 -a 0 -x {0.0.3.0 1.1.3.0 213 ------- null} + -t 23.0667 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 424 -a 0 -x {0.0.3.0 1.1.3.0 213 ------- null} - -t 23.0667 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 424 -a 0 -x {0.0.3.0 1.1.3.0 213 ------- null} h -t 23.0667 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 424 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.0683 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {0.0.3.0 1.1.3.0 214 ------- null} + -t 23.0683 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {0.0.3.0 1.1.3.0 214 ------- null} - -t 23.0683 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {0.0.3.0 1.1.3.0 214 ------- null} h -t 23.0683 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.0699 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 426 -a 0 -x {0.0.3.0 1.1.3.0 215 ------- null} + -t 23.0699 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 426 -a 0 -x {0.0.3.0 1.1.3.0 215 ------- null} - -t 23.0699 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 426 -a 0 -x {0.0.3.0 1.1.3.0 215 ------- null} h -t 23.0699 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 426 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.0715 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {0.0.3.0 1.1.3.0 216 ------- null} + -t 23.0715 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {0.0.3.0 1.1.3.0 216 ------- null} - -t 23.0715 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {0.0.3.0 1.1.3.0 216 ------- null} h -t 23.0715 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.0731 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 428 -a 0 -x {0.0.3.0 1.1.3.0 217 ------- null} + -t 23.0731 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 428 -a 0 -x {0.0.3.0 1.1.3.0 217 ------- null} - -t 23.0731 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 428 -a 0 -x {0.0.3.0 1.1.3.0 217 ------- null} h -t 23.0731 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 428 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.0747 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {0.0.3.0 1.1.3.0 218 ------- null} + -t 23.0747 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {0.0.3.0 1.1.3.0 218 ------- null} - -t 23.0747 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {0.0.3.0 1.1.3.0 218 ------- null} h -t 23.0747 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.0763 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 430 -a 0 -x {0.0.3.0 1.1.3.0 219 ------- null} + -t 23.0763 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 430 -a 0 -x {0.0.3.0 1.1.3.0 219 ------- null} - -t 23.0763 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 430 -a 0 -x {0.0.3.0 1.1.3.0 219 ------- null} h -t 23.0763 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 430 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.0779 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {0.0.3.0 1.1.3.0 220 ------- null} + -t 23.0779 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {0.0.3.0 1.1.3.0 220 ------- null} - -t 23.0779 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {0.0.3.0 1.1.3.0 220 ------- null} h -t 23.0779 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.0795 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 432 -a 0 -x {0.0.3.0 1.1.3.0 221 ------- null} + -t 23.0795 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 432 -a 0 -x {0.0.3.0 1.1.3.0 221 ------- null} - -t 23.0795 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 432 -a 0 -x {0.0.3.0 1.1.3.0 221 ------- null} h -t 23.0795 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 432 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.0811 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {0.0.3.0 1.1.3.0 222 ------- null} + -t 23.0811 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {0.0.3.0 1.1.3.0 222 ------- null} - -t 23.0811 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {0.0.3.0 1.1.3.0 222 ------- null} h -t 23.0811 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.0827 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {0.0.3.0 1.1.3.0 223 ------- null} + -t 23.0827 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {0.0.3.0 1.1.3.0 223 ------- null} - -t 23.0827 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {0.0.3.0 1.1.3.0 223 ------- null} h -t 23.0827 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.0843 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {0.0.3.0 1.1.3.0 224 ------- null} + -t 23.0843 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {0.0.3.0 1.1.3.0 224 ------- null} - -t 23.0843 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {0.0.3.0 1.1.3.0 224 ------- null} h -t 23.0843 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.0859 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {0.0.3.0 1.1.3.0 225 ------- null} + -t 23.0859 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {0.0.3.0 1.1.3.0 225 ------- null} - -t 23.0859 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {0.0.3.0 1.1.3.0 225 ------- null} h -t 23.0859 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.0875 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {0.0.3.0 1.1.3.0 226 ------- null} + -t 23.0875 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {0.0.3.0 1.1.3.0 226 ------- null} - -t 23.0875 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {0.0.3.0 1.1.3.0 226 ------- null} h -t 23.0875 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.0891 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {0.0.3.0 1.1.3.0 227 ------- null} + -t 23.0891 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {0.0.3.0 1.1.3.0 227 ------- null} - -t 23.0891 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {0.0.3.0 1.1.3.0 227 ------- null} h -t 23.0891 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.0907 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {0.0.3.0 1.1.3.0 228 ------- null} + -t 23.0907 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {0.0.3.0 1.1.3.0 228 ------- null} - -t 23.0907 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {0.0.3.0 1.1.3.0 228 ------- null} h -t 23.0907 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.0923 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {0.0.3.0 1.1.3.0 229 ------- null} + -t 23.0923 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {0.0.3.0 1.1.3.0 229 ------- null} - -t 23.0923 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {0.0.3.0 1.1.3.0 229 ------- null} h -t 23.0923 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.0939 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {0.0.3.0 1.1.3.0 230 ------- null} + -t 23.0939 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {0.0.3.0 1.1.3.0 230 ------- null} - -t 23.0939 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {0.0.3.0 1.1.3.0 230 ------- null} h -t 23.0939 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.1451 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 422 -a 0 -x {0.0.3.0 1.1.3.0 211 ------- null} + -t 23.1451 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 422 -a 0 -x {0.0.3.0 1.1.3.0 211 ------- null} - -t 23.1451 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 422 -a 0 -x {0.0.3.0 1.1.3.0 211 ------- null} h -t 23.1451 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 422 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.1467 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {0.0.3.0 1.1.3.0 212 ------- null} + -t 23.1467 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {0.0.3.0 1.1.3.0 212 ------- null} - -t 23.1467 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {0.0.3.0 1.1.3.0 212 ------- null} h -t 23.1467 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.1483 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 424 -a 0 -x {0.0.3.0 1.1.3.0 213 ------- null} + -t 23.1483 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 424 -a 0 -x {0.0.3.0 1.1.3.0 213 ------- null} - -t 23.1483 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 424 -a 0 -x {0.0.3.0 1.1.3.0 213 ------- null} h -t 23.1483 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 424 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.1499 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {0.0.3.0 1.1.3.0 214 ------- null} + -t 23.1499 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {0.0.3.0 1.1.3.0 214 ------- null} - -t 23.1499 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {0.0.3.0 1.1.3.0 214 ------- null} h -t 23.1499 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.1515 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 426 -a 0 -x {0.0.3.0 1.1.3.0 215 ------- null} + -t 23.1515 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 426 -a 0 -x {0.0.3.0 1.1.3.0 215 ------- null} - -t 23.1515 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 426 -a 0 -x {0.0.3.0 1.1.3.0 215 ------- null} h -t 23.1515 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 426 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.1531 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {0.0.3.0 1.1.3.0 216 ------- null} + -t 23.1531 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {0.0.3.0 1.1.3.0 216 ------- null} - -t 23.1531 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {0.0.3.0 1.1.3.0 216 ------- null} h -t 23.1531 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.1547 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 428 -a 0 -x {0.0.3.0 1.1.3.0 217 ------- null} + -t 23.1547 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 428 -a 0 -x {0.0.3.0 1.1.3.0 217 ------- null} - -t 23.1547 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 428 -a 0 -x {0.0.3.0 1.1.3.0 217 ------- null} h -t 23.1547 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 428 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.1563 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {0.0.3.0 1.1.3.0 218 ------- null} + -t 23.1563 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {0.0.3.0 1.1.3.0 218 ------- null} - -t 23.1563 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {0.0.3.0 1.1.3.0 218 ------- null} h -t 23.1563 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.1579 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 430 -a 0 -x {0.0.3.0 1.1.3.0 219 ------- null} + -t 23.1579 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 430 -a 0 -x {0.0.3.0 1.1.3.0 219 ------- null} - -t 23.1579 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 430 -a 0 -x {0.0.3.0 1.1.3.0 219 ------- null} h -t 23.1579 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 430 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.1595 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {0.0.3.0 1.1.3.0 220 ------- null} + -t 23.1595 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {0.0.3.0 1.1.3.0 220 ------- null} - -t 23.1595 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {0.0.3.0 1.1.3.0 220 ------- null} h -t 23.1595 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.1611 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 432 -a 0 -x {0.0.3.0 1.1.3.0 221 ------- null} + -t 23.1611 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 432 -a 0 -x {0.0.3.0 1.1.3.0 221 ------- null} - -t 23.1611 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 432 -a 0 -x {0.0.3.0 1.1.3.0 221 ------- null} h -t 23.1611 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 432 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.1627 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {0.0.3.0 1.1.3.0 222 ------- null} + -t 23.1627 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {0.0.3.0 1.1.3.0 222 ------- null} - -t 23.1627 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {0.0.3.0 1.1.3.0 222 ------- null} h -t 23.1627 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.1643 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {0.0.3.0 1.1.3.0 223 ------- null} + -t 23.1643 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {0.0.3.0 1.1.3.0 223 ------- null} - -t 23.1643 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {0.0.3.0 1.1.3.0 223 ------- null} h -t 23.1643 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.1659 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {0.0.3.0 1.1.3.0 224 ------- null} + -t 23.1659 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {0.0.3.0 1.1.3.0 224 ------- null} - -t 23.1659 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {0.0.3.0 1.1.3.0 224 ------- null} h -t 23.1659 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.1675 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {0.0.3.0 1.1.3.0 225 ------- null} + -t 23.1675 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {0.0.3.0 1.1.3.0 225 ------- null} - -t 23.1675 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {0.0.3.0 1.1.3.0 225 ------- null} h -t 23.1675 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.1691 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {0.0.3.0 1.1.3.0 226 ------- null} + -t 23.1691 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {0.0.3.0 1.1.3.0 226 ------- null} - -t 23.1691 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {0.0.3.0 1.1.3.0 226 ------- null} h -t 23.1691 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.1707 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {0.0.3.0 1.1.3.0 227 ------- null} + -t 23.1707 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {0.0.3.0 1.1.3.0 227 ------- null} - -t 23.1707 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {0.0.3.0 1.1.3.0 227 ------- null} h -t 23.1707 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.1723 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {0.0.3.0 1.1.3.0 228 ------- null} + -t 23.1723 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {0.0.3.0 1.1.3.0 228 ------- null} - -t 23.1723 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {0.0.3.0 1.1.3.0 228 ------- null} h -t 23.1723 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.1739 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {0.0.3.0 1.1.3.0 229 ------- null} + -t 23.1739 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {0.0.3.0 1.1.3.0 229 ------- null} - -t 23.1739 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {0.0.3.0 1.1.3.0 229 ------- null} h -t 23.1739 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.1755 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {0.0.3.0 1.1.3.0 230 ------- null} + -t 23.1755 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {0.0.3.0 1.1.3.0 230 ------- null} - -t 23.1755 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {0.0.3.0 1.1.3.0 230 ------- null} h -t 23.1755 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.2067 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 422 -a 0 -x {0.0.3.0 1.1.3.0 211 ------- null} + -t 23.2067 -s 21 -d 28 -p ack -e 40 -c 0 -i 442 -a 1 -x {1.1.3.0 0.0.3.0 211 ------- null} - -t 23.2067 -s 21 -d 28 -p ack -e 40 -c 0 -i 442 -a 1 -x {1.1.3.0 0.0.3.0 211 ------- null} h -t 23.2067 -s 21 -d 28 -p ack -e 40 -c 0 -i 442 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.2083 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {0.0.3.0 1.1.3.0 212 ------- null} + -t 23.2083 -s 21 -d 28 -p ack -e 40 -c 0 -i 443 -a 1 -x {1.1.3.0 0.0.3.0 212 ------- null} - -t 23.2083 -s 21 -d 28 -p ack -e 40 -c 0 -i 443 -a 1 -x {1.1.3.0 0.0.3.0 212 ------- null} h -t 23.2083 -s 21 -d 28 -p ack -e 40 -c 0 -i 443 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.2099 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 424 -a 0 -x {0.0.3.0 1.1.3.0 213 ------- null} + -t 23.2099 -s 21 -d 28 -p ack -e 40 -c 0 -i 444 -a 1 -x {1.1.3.0 0.0.3.0 213 ------- null} - -t 23.2099 -s 21 -d 28 -p ack -e 40 -c 0 -i 444 -a 1 -x {1.1.3.0 0.0.3.0 213 ------- null} h -t 23.2099 -s 21 -d 28 -p ack -e 40 -c 0 -i 444 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.2115 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {0.0.3.0 1.1.3.0 214 ------- null} + -t 23.2115 -s 21 -d 28 -p ack -e 40 -c 0 -i 445 -a 1 -x {1.1.3.0 0.0.3.0 214 ------- null} - -t 23.2115 -s 21 -d 28 -p ack -e 40 -c 0 -i 445 -a 1 -x {1.1.3.0 0.0.3.0 214 ------- null} h -t 23.2115 -s 21 -d 28 -p ack -e 40 -c 0 -i 445 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.2131 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 426 -a 0 -x {0.0.3.0 1.1.3.0 215 ------- null} + -t 23.2131 -s 21 -d 28 -p ack -e 40 -c 0 -i 446 -a 1 -x {1.1.3.0 0.0.3.0 215 ------- null} - -t 23.2131 -s 21 -d 28 -p ack -e 40 -c 0 -i 446 -a 1 -x {1.1.3.0 0.0.3.0 215 ------- null} h -t 23.2131 -s 21 -d 28 -p ack -e 40 -c 0 -i 446 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.2147 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {0.0.3.0 1.1.3.0 216 ------- null} + -t 23.2147 -s 21 -d 28 -p ack -e 40 -c 0 -i 447 -a 1 -x {1.1.3.0 0.0.3.0 216 ------- null} - -t 23.2147 -s 21 -d 28 -p ack -e 40 -c 0 -i 447 -a 1 -x {1.1.3.0 0.0.3.0 216 ------- null} h -t 23.2147 -s 21 -d 28 -p ack -e 40 -c 0 -i 447 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.2163 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 428 -a 0 -x {0.0.3.0 1.1.3.0 217 ------- null} + -t 23.2163 -s 21 -d 28 -p ack -e 40 -c 0 -i 448 -a 1 -x {1.1.3.0 0.0.3.0 217 ------- null} - -t 23.2163 -s 21 -d 28 -p ack -e 40 -c 0 -i 448 -a 1 -x {1.1.3.0 0.0.3.0 217 ------- null} h -t 23.2163 -s 21 -d 28 -p ack -e 40 -c 0 -i 448 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.2179 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {0.0.3.0 1.1.3.0 218 ------- null} + -t 23.2179 -s 21 -d 28 -p ack -e 40 -c 0 -i 449 -a 1 -x {1.1.3.0 0.0.3.0 218 ------- null} - -t 23.2179 -s 21 -d 28 -p ack -e 40 -c 0 -i 449 -a 1 -x {1.1.3.0 0.0.3.0 218 ------- null} h -t 23.2179 -s 21 -d 28 -p ack -e 40 -c 0 -i 449 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.2195 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 430 -a 0 -x {0.0.3.0 1.1.3.0 219 ------- null} + -t 23.2195 -s 21 -d 28 -p ack -e 40 -c 0 -i 450 -a 1 -x {1.1.3.0 0.0.3.0 219 ------- null} - -t 23.2195 -s 21 -d 28 -p ack -e 40 -c 0 -i 450 -a 1 -x {1.1.3.0 0.0.3.0 219 ------- null} h -t 23.2195 -s 21 -d 28 -p ack -e 40 -c 0 -i 450 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.2211 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {0.0.3.0 1.1.3.0 220 ------- null} + -t 23.2211 -s 21 -d 28 -p ack -e 40 -c 0 -i 451 -a 1 -x {1.1.3.0 0.0.3.0 220 ------- null} - -t 23.2211 -s 21 -d 28 -p ack -e 40 -c 0 -i 451 -a 1 -x {1.1.3.0 0.0.3.0 220 ------- null} h -t 23.2211 -s 21 -d 28 -p ack -e 40 -c 0 -i 451 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.2227 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 432 -a 0 -x {0.0.3.0 1.1.3.0 221 ------- null} + -t 23.2227 -s 21 -d 28 -p ack -e 40 -c 0 -i 452 -a 1 -x {1.1.3.0 0.0.3.0 221 ------- null} - -t 23.2227 -s 21 -d 28 -p ack -e 40 -c 0 -i 452 -a 1 -x {1.1.3.0 0.0.3.0 221 ------- null} h -t 23.2227 -s 21 -d 28 -p ack -e 40 -c 0 -i 452 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.2243 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {0.0.3.0 1.1.3.0 222 ------- null} + -t 23.2243 -s 21 -d 28 -p ack -e 40 -c 0 -i 453 -a 1 -x {1.1.3.0 0.0.3.0 222 ------- null} - -t 23.2243 -s 21 -d 28 -p ack -e 40 -c 0 -i 453 -a 1 -x {1.1.3.0 0.0.3.0 222 ------- null} h -t 23.2243 -s 21 -d 28 -p ack -e 40 -c 0 -i 453 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.2259 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 434 -a 0 -x {0.0.3.0 1.1.3.0 223 ------- null} + -t 23.2259 -s 21 -d 28 -p ack -e 40 -c 0 -i 454 -a 1 -x {1.1.3.0 0.0.3.0 223 ------- null} - -t 23.2259 -s 21 -d 28 -p ack -e 40 -c 0 -i 454 -a 1 -x {1.1.3.0 0.0.3.0 223 ------- null} h -t 23.2259 -s 21 -d 28 -p ack -e 40 -c 0 -i 454 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.2275 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {0.0.3.0 1.1.3.0 224 ------- null} + -t 23.2275 -s 21 -d 28 -p ack -e 40 -c 0 -i 455 -a 1 -x {1.1.3.0 0.0.3.0 224 ------- null} - -t 23.2275 -s 21 -d 28 -p ack -e 40 -c 0 -i 455 -a 1 -x {1.1.3.0 0.0.3.0 224 ------- null} h -t 23.2275 -s 21 -d 28 -p ack -e 40 -c 0 -i 455 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.2291 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 436 -a 0 -x {0.0.3.0 1.1.3.0 225 ------- null} + -t 23.2291 -s 21 -d 28 -p ack -e 40 -c 0 -i 456 -a 1 -x {1.1.3.0 0.0.3.0 225 ------- null} - -t 23.2291 -s 21 -d 28 -p ack -e 40 -c 0 -i 456 -a 1 -x {1.1.3.0 0.0.3.0 225 ------- null} h -t 23.2291 -s 21 -d 28 -p ack -e 40 -c 0 -i 456 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.2307 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {0.0.3.0 1.1.3.0 226 ------- null} + -t 23.2307 -s 21 -d 28 -p ack -e 40 -c 0 -i 457 -a 1 -x {1.1.3.0 0.0.3.0 226 ------- null} - -t 23.2307 -s 21 -d 28 -p ack -e 40 -c 0 -i 457 -a 1 -x {1.1.3.0 0.0.3.0 226 ------- null} h -t 23.2307 -s 21 -d 28 -p ack -e 40 -c 0 -i 457 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.2323 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 438 -a 0 -x {0.0.3.0 1.1.3.0 227 ------- null} + -t 23.2323 -s 21 -d 28 -p ack -e 40 -c 0 -i 458 -a 1 -x {1.1.3.0 0.0.3.0 227 ------- null} - -t 23.2323 -s 21 -d 28 -p ack -e 40 -c 0 -i 458 -a 1 -x {1.1.3.0 0.0.3.0 227 ------- null} h -t 23.2323 -s 21 -d 28 -p ack -e 40 -c 0 -i 458 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.2339 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {0.0.3.0 1.1.3.0 228 ------- null} + -t 23.2339 -s 21 -d 28 -p ack -e 40 -c 0 -i 459 -a 1 -x {1.1.3.0 0.0.3.0 228 ------- null} - -t 23.2339 -s 21 -d 28 -p ack -e 40 -c 0 -i 459 -a 1 -x {1.1.3.0 0.0.3.0 228 ------- null} h -t 23.2339 -s 21 -d 28 -p ack -e 40 -c 0 -i 459 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.2355 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 440 -a 0 -x {0.0.3.0 1.1.3.0 229 ------- null} + -t 23.2355 -s 21 -d 28 -p ack -e 40 -c 0 -i 460 -a 1 -x {1.1.3.0 0.0.3.0 229 ------- null} - -t 23.2355 -s 21 -d 28 -p ack -e 40 -c 0 -i 460 -a 1 -x {1.1.3.0 0.0.3.0 229 ------- null} h -t 23.2355 -s 21 -d 28 -p ack -e 40 -c 0 -i 460 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.2371 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {0.0.3.0 1.1.3.0 230 ------- null} + -t 23.2371 -s 21 -d 28 -p ack -e 40 -c 0 -i 461 -a 1 -x {1.1.3.0 0.0.3.0 230 ------- null} - -t 23.2371 -s 21 -d 28 -p ack -e 40 -c 0 -i 461 -a 1 -x {1.1.3.0 0.0.3.0 230 ------- null} h -t 23.2371 -s 21 -d 28 -p ack -e 40 -c 0 -i 461 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.5568 -s 21 -d 28 -p ack -e 40 -c 0 -i 442 -a 1 -x {1.1.3.0 0.0.3.0 211 ------- null} + -t 23.5568 -s 28 -d 1 -p ack -e 40 -c 0 -i 442 -a 1 -x {1.1.3.0 0.0.3.0 211 ------- null} - -t 23.5568 -s 28 -d 1 -p ack -e 40 -c 0 -i 442 -a 1 -x {1.1.3.0 0.0.3.0 211 ------- null} h -t 23.5568 -s 28 -d 1 -p ack -e 40 -c 0 -i 442 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.5584 -s 21 -d 28 -p ack -e 40 -c 0 -i 443 -a 1 -x {1.1.3.0 0.0.3.0 212 ------- null} + -t 23.5584 -s 28 -d 1 -p ack -e 40 -c 0 -i 443 -a 1 -x {1.1.3.0 0.0.3.0 212 ------- null} - -t 23.5584 -s 28 -d 1 -p ack -e 40 -c 0 -i 443 -a 1 -x {1.1.3.0 0.0.3.0 212 ------- null} h -t 23.5584 -s 28 -d 1 -p ack -e 40 -c 0 -i 443 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.56 -s 21 -d 28 -p ack -e 40 -c 0 -i 444 -a 1 -x {1.1.3.0 0.0.3.0 213 ------- null} + -t 23.56 -s 28 -d 1 -p ack -e 40 -c 0 -i 444 -a 1 -x {1.1.3.0 0.0.3.0 213 ------- null} - -t 23.56 -s 28 -d 1 -p ack -e 40 -c 0 -i 444 -a 1 -x {1.1.3.0 0.0.3.0 213 ------- null} h -t 23.56 -s 28 -d 1 -p ack -e 40 -c 0 -i 444 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.5616 -s 21 -d 28 -p ack -e 40 -c 0 -i 445 -a 1 -x {1.1.3.0 0.0.3.0 214 ------- null} + -t 23.5616 -s 28 -d 1 -p ack -e 40 -c 0 -i 445 -a 1 -x {1.1.3.0 0.0.3.0 214 ------- null} - -t 23.5616 -s 28 -d 1 -p ack -e 40 -c 0 -i 445 -a 1 -x {1.1.3.0 0.0.3.0 214 ------- null} h -t 23.5616 -s 28 -d 1 -p ack -e 40 -c 0 -i 445 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.5632 -s 21 -d 28 -p ack -e 40 -c 0 -i 446 -a 1 -x {1.1.3.0 0.0.3.0 215 ------- null} + -t 23.5632 -s 28 -d 1 -p ack -e 40 -c 0 -i 446 -a 1 -x {1.1.3.0 0.0.3.0 215 ------- null} - -t 23.5632 -s 28 -d 1 -p ack -e 40 -c 0 -i 446 -a 1 -x {1.1.3.0 0.0.3.0 215 ------- null} h -t 23.5632 -s 28 -d 1 -p ack -e 40 -c 0 -i 446 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.5648 -s 21 -d 28 -p ack -e 40 -c 0 -i 447 -a 1 -x {1.1.3.0 0.0.3.0 216 ------- null} + -t 23.5648 -s 28 -d 1 -p ack -e 40 -c 0 -i 447 -a 1 -x {1.1.3.0 0.0.3.0 216 ------- null} - -t 23.5648 -s 28 -d 1 -p ack -e 40 -c 0 -i 447 -a 1 -x {1.1.3.0 0.0.3.0 216 ------- null} h -t 23.5648 -s 28 -d 1 -p ack -e 40 -c 0 -i 447 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.5664 -s 21 -d 28 -p ack -e 40 -c 0 -i 448 -a 1 -x {1.1.3.0 0.0.3.0 217 ------- null} + -t 23.5664 -s 28 -d 1 -p ack -e 40 -c 0 -i 448 -a 1 -x {1.1.3.0 0.0.3.0 217 ------- null} - -t 23.5664 -s 28 -d 1 -p ack -e 40 -c 0 -i 448 -a 1 -x {1.1.3.0 0.0.3.0 217 ------- null} h -t 23.5664 -s 28 -d 1 -p ack -e 40 -c 0 -i 448 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.568 -s 21 -d 28 -p ack -e 40 -c 0 -i 449 -a 1 -x {1.1.3.0 0.0.3.0 218 ------- null} + -t 23.568 -s 28 -d 1 -p ack -e 40 -c 0 -i 449 -a 1 -x {1.1.3.0 0.0.3.0 218 ------- null} - -t 23.568 -s 28 -d 1 -p ack -e 40 -c 0 -i 449 -a 1 -x {1.1.3.0 0.0.3.0 218 ------- null} h -t 23.568 -s 28 -d 1 -p ack -e 40 -c 0 -i 449 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.5696 -s 21 -d 28 -p ack -e 40 -c 0 -i 450 -a 1 -x {1.1.3.0 0.0.3.0 219 ------- null} + -t 23.5696 -s 28 -d 1 -p ack -e 40 -c 0 -i 450 -a 1 -x {1.1.3.0 0.0.3.0 219 ------- null} - -t 23.5696 -s 28 -d 1 -p ack -e 40 -c 0 -i 450 -a 1 -x {1.1.3.0 0.0.3.0 219 ------- null} h -t 23.5696 -s 28 -d 1 -p ack -e 40 -c 0 -i 450 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.5712 -s 21 -d 28 -p ack -e 40 -c 0 -i 451 -a 1 -x {1.1.3.0 0.0.3.0 220 ------- null} + -t 23.5712 -s 28 -d 1 -p ack -e 40 -c 0 -i 451 -a 1 -x {1.1.3.0 0.0.3.0 220 ------- null} - -t 23.5712 -s 28 -d 1 -p ack -e 40 -c 0 -i 451 -a 1 -x {1.1.3.0 0.0.3.0 220 ------- null} h -t 23.5712 -s 28 -d 1 -p ack -e 40 -c 0 -i 451 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.5728 -s 21 -d 28 -p ack -e 40 -c 0 -i 452 -a 1 -x {1.1.3.0 0.0.3.0 221 ------- null} + -t 23.5728 -s 28 -d 1 -p ack -e 40 -c 0 -i 452 -a 1 -x {1.1.3.0 0.0.3.0 221 ------- null} - -t 23.5728 -s 28 -d 1 -p ack -e 40 -c 0 -i 452 -a 1 -x {1.1.3.0 0.0.3.0 221 ------- null} h -t 23.5728 -s 28 -d 1 -p ack -e 40 -c 0 -i 452 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.5744 -s 21 -d 28 -p ack -e 40 -c 0 -i 453 -a 1 -x {1.1.3.0 0.0.3.0 222 ------- null} + -t 23.5744 -s 28 -d 1 -p ack -e 40 -c 0 -i 453 -a 1 -x {1.1.3.0 0.0.3.0 222 ------- null} - -t 23.5744 -s 28 -d 1 -p ack -e 40 -c 0 -i 453 -a 1 -x {1.1.3.0 0.0.3.0 222 ------- null} h -t 23.5744 -s 28 -d 1 -p ack -e 40 -c 0 -i 453 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.576 -s 21 -d 28 -p ack -e 40 -c 0 -i 454 -a 1 -x {1.1.3.0 0.0.3.0 223 ------- null} + -t 23.576 -s 28 -d 1 -p ack -e 40 -c 0 -i 454 -a 1 -x {1.1.3.0 0.0.3.0 223 ------- null} - -t 23.576 -s 28 -d 1 -p ack -e 40 -c 0 -i 454 -a 1 -x {1.1.3.0 0.0.3.0 223 ------- null} h -t 23.576 -s 28 -d 1 -p ack -e 40 -c 0 -i 454 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.5776 -s 21 -d 28 -p ack -e 40 -c 0 -i 455 -a 1 -x {1.1.3.0 0.0.3.0 224 ------- null} + -t 23.5776 -s 28 -d 1 -p ack -e 40 -c 0 -i 455 -a 1 -x {1.1.3.0 0.0.3.0 224 ------- null} - -t 23.5776 -s 28 -d 1 -p ack -e 40 -c 0 -i 455 -a 1 -x {1.1.3.0 0.0.3.0 224 ------- null} h -t 23.5776 -s 28 -d 1 -p ack -e 40 -c 0 -i 455 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.5792 -s 21 -d 28 -p ack -e 40 -c 0 -i 456 -a 1 -x {1.1.3.0 0.0.3.0 225 ------- null} + -t 23.5792 -s 28 -d 1 -p ack -e 40 -c 0 -i 456 -a 1 -x {1.1.3.0 0.0.3.0 225 ------- null} - -t 23.5792 -s 28 -d 1 -p ack -e 40 -c 0 -i 456 -a 1 -x {1.1.3.0 0.0.3.0 225 ------- null} h -t 23.5792 -s 28 -d 1 -p ack -e 40 -c 0 -i 456 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.5808 -s 21 -d 28 -p ack -e 40 -c 0 -i 457 -a 1 -x {1.1.3.0 0.0.3.0 226 ------- null} + -t 23.5808 -s 28 -d 1 -p ack -e 40 -c 0 -i 457 -a 1 -x {1.1.3.0 0.0.3.0 226 ------- null} - -t 23.5808 -s 28 -d 1 -p ack -e 40 -c 0 -i 457 -a 1 -x {1.1.3.0 0.0.3.0 226 ------- null} h -t 23.5808 -s 28 -d 1 -p ack -e 40 -c 0 -i 457 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.5824 -s 21 -d 28 -p ack -e 40 -c 0 -i 458 -a 1 -x {1.1.3.0 0.0.3.0 227 ------- null} + -t 23.5824 -s 28 -d 1 -p ack -e 40 -c 0 -i 458 -a 1 -x {1.1.3.0 0.0.3.0 227 ------- null} - -t 23.5824 -s 28 -d 1 -p ack -e 40 -c 0 -i 458 -a 1 -x {1.1.3.0 0.0.3.0 227 ------- null} h -t 23.5824 -s 28 -d 1 -p ack -e 40 -c 0 -i 458 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.584 -s 21 -d 28 -p ack -e 40 -c 0 -i 459 -a 1 -x {1.1.3.0 0.0.3.0 228 ------- null} + -t 23.584 -s 28 -d 1 -p ack -e 40 -c 0 -i 459 -a 1 -x {1.1.3.0 0.0.3.0 228 ------- null} - -t 23.584 -s 28 -d 1 -p ack -e 40 -c 0 -i 459 -a 1 -x {1.1.3.0 0.0.3.0 228 ------- null} h -t 23.584 -s 28 -d 1 -p ack -e 40 -c 0 -i 459 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.5856 -s 21 -d 28 -p ack -e 40 -c 0 -i 460 -a 1 -x {1.1.3.0 0.0.3.0 229 ------- null} + -t 23.5856 -s 28 -d 1 -p ack -e 40 -c 0 -i 460 -a 1 -x {1.1.3.0 0.0.3.0 229 ------- null} - -t 23.5856 -s 28 -d 1 -p ack -e 40 -c 0 -i 460 -a 1 -x {1.1.3.0 0.0.3.0 229 ------- null} h -t 23.5856 -s 28 -d 1 -p ack -e 40 -c 0 -i 460 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.5872 -s 21 -d 28 -p ack -e 40 -c 0 -i 461 -a 1 -x {1.1.3.0 0.0.3.0 230 ------- null} + -t 23.5872 -s 28 -d 1 -p ack -e 40 -c 0 -i 461 -a 1 -x {1.1.3.0 0.0.3.0 230 ------- null} - -t 23.5872 -s 28 -d 1 -p ack -e 40 -c 0 -i 461 -a 1 -x {1.1.3.0 0.0.3.0 230 ------- null} h -t 23.5872 -s 28 -d 1 -p ack -e 40 -c 0 -i 461 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.8568 -s 28 -d 1 -p ack -e 40 -c 0 -i 442 -a 1 -x {1.1.3.0 0.0.3.0 211 ------- null} + -t 23.8568 -s 1 -d 3 -p ack -e 40 -c 0 -i 442 -a 1 -x {1.1.3.0 0.0.3.0 211 ------- null} - -t 23.8568 -s 1 -d 3 -p ack -e 40 -c 0 -i 442 -a 1 -x {1.1.3.0 0.0.3.0 211 ------- null} h -t 23.8568 -s 1 -d 3 -p ack -e 40 -c 0 -i 442 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.8584 -s 28 -d 1 -p ack -e 40 -c 0 -i 443 -a 1 -x {1.1.3.0 0.0.3.0 212 ------- null} + -t 23.8584 -s 1 -d 3 -p ack -e 40 -c 0 -i 443 -a 1 -x {1.1.3.0 0.0.3.0 212 ------- null} - -t 23.8584 -s 1 -d 3 -p ack -e 40 -c 0 -i 443 -a 1 -x {1.1.3.0 0.0.3.0 212 ------- null} h -t 23.8584 -s 1 -d 3 -p ack -e 40 -c 0 -i 443 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.86 -s 28 -d 1 -p ack -e 40 -c 0 -i 444 -a 1 -x {1.1.3.0 0.0.3.0 213 ------- null} + -t 23.86 -s 1 -d 3 -p ack -e 40 -c 0 -i 444 -a 1 -x {1.1.3.0 0.0.3.0 213 ------- null} - -t 23.86 -s 1 -d 3 -p ack -e 40 -c 0 -i 444 -a 1 -x {1.1.3.0 0.0.3.0 213 ------- null} h -t 23.86 -s 1 -d 3 -p ack -e 40 -c 0 -i 444 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.8616 -s 28 -d 1 -p ack -e 40 -c 0 -i 445 -a 1 -x {1.1.3.0 0.0.3.0 214 ------- null} + -t 23.8616 -s 1 -d 3 -p ack -e 40 -c 0 -i 445 -a 1 -x {1.1.3.0 0.0.3.0 214 ------- null} - -t 23.8616 -s 1 -d 3 -p ack -e 40 -c 0 -i 445 -a 1 -x {1.1.3.0 0.0.3.0 214 ------- null} h -t 23.8616 -s 1 -d 3 -p ack -e 40 -c 0 -i 445 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.8632 -s 28 -d 1 -p ack -e 40 -c 0 -i 446 -a 1 -x {1.1.3.0 0.0.3.0 215 ------- null} + -t 23.8632 -s 1 -d 3 -p ack -e 40 -c 0 -i 446 -a 1 -x {1.1.3.0 0.0.3.0 215 ------- null} - -t 23.8632 -s 1 -d 3 -p ack -e 40 -c 0 -i 446 -a 1 -x {1.1.3.0 0.0.3.0 215 ------- null} h -t 23.8632 -s 1 -d 3 -p ack -e 40 -c 0 -i 446 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.8648 -s 28 -d 1 -p ack -e 40 -c 0 -i 447 -a 1 -x {1.1.3.0 0.0.3.0 216 ------- null} + -t 23.8648 -s 1 -d 3 -p ack -e 40 -c 0 -i 447 -a 1 -x {1.1.3.0 0.0.3.0 216 ------- null} - -t 23.8648 -s 1 -d 3 -p ack -e 40 -c 0 -i 447 -a 1 -x {1.1.3.0 0.0.3.0 216 ------- null} h -t 23.8648 -s 1 -d 3 -p ack -e 40 -c 0 -i 447 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.8664 -s 28 -d 1 -p ack -e 40 -c 0 -i 448 -a 1 -x {1.1.3.0 0.0.3.0 217 ------- null} + -t 23.8664 -s 1 -d 3 -p ack -e 40 -c 0 -i 448 -a 1 -x {1.1.3.0 0.0.3.0 217 ------- null} - -t 23.8664 -s 1 -d 3 -p ack -e 40 -c 0 -i 448 -a 1 -x {1.1.3.0 0.0.3.0 217 ------- null} h -t 23.8664 -s 1 -d 3 -p ack -e 40 -c 0 -i 448 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.868 -s 28 -d 1 -p ack -e 40 -c 0 -i 449 -a 1 -x {1.1.3.0 0.0.3.0 218 ------- null} + -t 23.868 -s 1 -d 3 -p ack -e 40 -c 0 -i 449 -a 1 -x {1.1.3.0 0.0.3.0 218 ------- null} - -t 23.868 -s 1 -d 3 -p ack -e 40 -c 0 -i 449 -a 1 -x {1.1.3.0 0.0.3.0 218 ------- null} h -t 23.868 -s 1 -d 3 -p ack -e 40 -c 0 -i 449 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.8696 -s 28 -d 1 -p ack -e 40 -c 0 -i 450 -a 1 -x {1.1.3.0 0.0.3.0 219 ------- null} + -t 23.8696 -s 1 -d 3 -p ack -e 40 -c 0 -i 450 -a 1 -x {1.1.3.0 0.0.3.0 219 ------- null} - -t 23.8696 -s 1 -d 3 -p ack -e 40 -c 0 -i 450 -a 1 -x {1.1.3.0 0.0.3.0 219 ------- null} h -t 23.8696 -s 1 -d 3 -p ack -e 40 -c 0 -i 450 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.8712 -s 28 -d 1 -p ack -e 40 -c 0 -i 451 -a 1 -x {1.1.3.0 0.0.3.0 220 ------- null} + -t 23.8712 -s 1 -d 3 -p ack -e 40 -c 0 -i 451 -a 1 -x {1.1.3.0 0.0.3.0 220 ------- null} - -t 23.8712 -s 1 -d 3 -p ack -e 40 -c 0 -i 451 -a 1 -x {1.1.3.0 0.0.3.0 220 ------- null} h -t 23.8712 -s 1 -d 3 -p ack -e 40 -c 0 -i 451 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.8728 -s 28 -d 1 -p ack -e 40 -c 0 -i 452 -a 1 -x {1.1.3.0 0.0.3.0 221 ------- null} + -t 23.8728 -s 1 -d 3 -p ack -e 40 -c 0 -i 452 -a 1 -x {1.1.3.0 0.0.3.0 221 ------- null} - -t 23.8728 -s 1 -d 3 -p ack -e 40 -c 0 -i 452 -a 1 -x {1.1.3.0 0.0.3.0 221 ------- null} h -t 23.8728 -s 1 -d 3 -p ack -e 40 -c 0 -i 452 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.8744 -s 28 -d 1 -p ack -e 40 -c 0 -i 453 -a 1 -x {1.1.3.0 0.0.3.0 222 ------- null} + -t 23.8744 -s 1 -d 3 -p ack -e 40 -c 0 -i 453 -a 1 -x {1.1.3.0 0.0.3.0 222 ------- null} - -t 23.8744 -s 1 -d 3 -p ack -e 40 -c 0 -i 453 -a 1 -x {1.1.3.0 0.0.3.0 222 ------- null} h -t 23.8744 -s 1 -d 3 -p ack -e 40 -c 0 -i 453 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.876 -s 28 -d 1 -p ack -e 40 -c 0 -i 454 -a 1 -x {1.1.3.0 0.0.3.0 223 ------- null} + -t 23.876 -s 1 -d 3 -p ack -e 40 -c 0 -i 454 -a 1 -x {1.1.3.0 0.0.3.0 223 ------- null} - -t 23.876 -s 1 -d 3 -p ack -e 40 -c 0 -i 454 -a 1 -x {1.1.3.0 0.0.3.0 223 ------- null} h -t 23.876 -s 1 -d 3 -p ack -e 40 -c 0 -i 454 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.8776 -s 28 -d 1 -p ack -e 40 -c 0 -i 455 -a 1 -x {1.1.3.0 0.0.3.0 224 ------- null} + -t 23.8776 -s 1 -d 3 -p ack -e 40 -c 0 -i 455 -a 1 -x {1.1.3.0 0.0.3.0 224 ------- null} - -t 23.8776 -s 1 -d 3 -p ack -e 40 -c 0 -i 455 -a 1 -x {1.1.3.0 0.0.3.0 224 ------- null} h -t 23.8776 -s 1 -d 3 -p ack -e 40 -c 0 -i 455 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.8792 -s 28 -d 1 -p ack -e 40 -c 0 -i 456 -a 1 -x {1.1.3.0 0.0.3.0 225 ------- null} + -t 23.8792 -s 1 -d 3 -p ack -e 40 -c 0 -i 456 -a 1 -x {1.1.3.0 0.0.3.0 225 ------- null} - -t 23.8792 -s 1 -d 3 -p ack -e 40 -c 0 -i 456 -a 1 -x {1.1.3.0 0.0.3.0 225 ------- null} h -t 23.8792 -s 1 -d 3 -p ack -e 40 -c 0 -i 456 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.8808 -s 28 -d 1 -p ack -e 40 -c 0 -i 457 -a 1 -x {1.1.3.0 0.0.3.0 226 ------- null} + -t 23.8808 -s 1 -d 3 -p ack -e 40 -c 0 -i 457 -a 1 -x {1.1.3.0 0.0.3.0 226 ------- null} - -t 23.8808 -s 1 -d 3 -p ack -e 40 -c 0 -i 457 -a 1 -x {1.1.3.0 0.0.3.0 226 ------- null} h -t 23.8808 -s 1 -d 3 -p ack -e 40 -c 0 -i 457 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.8824 -s 28 -d 1 -p ack -e 40 -c 0 -i 458 -a 1 -x {1.1.3.0 0.0.3.0 227 ------- null} + -t 23.8824 -s 1 -d 3 -p ack -e 40 -c 0 -i 458 -a 1 -x {1.1.3.0 0.0.3.0 227 ------- null} - -t 23.8824 -s 1 -d 3 -p ack -e 40 -c 0 -i 458 -a 1 -x {1.1.3.0 0.0.3.0 227 ------- null} h -t 23.8824 -s 1 -d 3 -p ack -e 40 -c 0 -i 458 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.884 -s 28 -d 1 -p ack -e 40 -c 0 -i 459 -a 1 -x {1.1.3.0 0.0.3.0 228 ------- null} + -t 23.884 -s 1 -d 3 -p ack -e 40 -c 0 -i 459 -a 1 -x {1.1.3.0 0.0.3.0 228 ------- null} - -t 23.884 -s 1 -d 3 -p ack -e 40 -c 0 -i 459 -a 1 -x {1.1.3.0 0.0.3.0 228 ------- null} h -t 23.884 -s 1 -d 3 -p ack -e 40 -c 0 -i 459 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.8856 -s 28 -d 1 -p ack -e 40 -c 0 -i 460 -a 1 -x {1.1.3.0 0.0.3.0 229 ------- null} + -t 23.8856 -s 1 -d 3 -p ack -e 40 -c 0 -i 460 -a 1 -x {1.1.3.0 0.0.3.0 229 ------- null} - -t 23.8856 -s 1 -d 3 -p ack -e 40 -c 0 -i 460 -a 1 -x {1.1.3.0 0.0.3.0 229 ------- null} h -t 23.8856 -s 1 -d 3 -p ack -e 40 -c 0 -i 460 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.8872 -s 28 -d 1 -p ack -e 40 -c 0 -i 461 -a 1 -x {1.1.3.0 0.0.3.0 230 ------- null} + -t 23.8872 -s 1 -d 3 -p ack -e 40 -c 0 -i 461 -a 1 -x {1.1.3.0 0.0.3.0 230 ------- null} - -t 23.8872 -s 1 -d 3 -p ack -e 40 -c 0 -i 461 -a 1 -x {1.1.3.0 0.0.3.0 230 ------- null} h -t 23.8872 -s 1 -d 3 -p ack -e 40 -c 0 -i 461 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 23.9969 -s 1 -d 3 -p ack -e 40 -c 0 -i 442 -a 1 -x {1.1.3.0 0.0.3.0 211 ------- null} + -t 23.9969 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 462 -a 0 -x {0.0.3.0 1.1.3.0 231 ------- null} - -t 23.9969 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 462 -a 0 -x {0.0.3.0 1.1.3.0 231 ------- null} h -t 23.9969 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 462 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 23.9985 -s 1 -d 3 -p ack -e 40 -c 0 -i 443 -a 1 -x {1.1.3.0 0.0.3.0 212 ------- null} + -t 23.9985 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {0.0.3.0 1.1.3.0 232 ------- null} - -t 23.9985 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {0.0.3.0 1.1.3.0 232 ------- null} h -t 23.9985 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.0001 -s 1 -d 3 -p ack -e 40 -c 0 -i 444 -a 1 -x {1.1.3.0 0.0.3.0 213 ------- null} + -t 24.0001 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 464 -a 0 -x {0.0.3.0 1.1.3.0 233 ------- null} - -t 24.0001 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 464 -a 0 -x {0.0.3.0 1.1.3.0 233 ------- null} h -t 24.0001 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 464 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.0017 -s 1 -d 3 -p ack -e 40 -c 0 -i 445 -a 1 -x {1.1.3.0 0.0.3.0 214 ------- null} + -t 24.0017 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {0.0.3.0 1.1.3.0 234 ------- null} - -t 24.0017 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {0.0.3.0 1.1.3.0 234 ------- null} h -t 24.0017 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.0033 -s 1 -d 3 -p ack -e 40 -c 0 -i 446 -a 1 -x {1.1.3.0 0.0.3.0 215 ------- null} + -t 24.0033 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 466 -a 0 -x {0.0.3.0 1.1.3.0 235 ------- null} - -t 24.0033 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 466 -a 0 -x {0.0.3.0 1.1.3.0 235 ------- null} h -t 24.0033 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 466 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.0049 -s 1 -d 3 -p ack -e 40 -c 0 -i 447 -a 1 -x {1.1.3.0 0.0.3.0 216 ------- null} + -t 24.0049 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {0.0.3.0 1.1.3.0 236 ------- null} - -t 24.0049 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {0.0.3.0 1.1.3.0 236 ------- null} h -t 24.0049 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.0065 -s 1 -d 3 -p ack -e 40 -c 0 -i 448 -a 1 -x {1.1.3.0 0.0.3.0 217 ------- null} + -t 24.0065 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 468 -a 0 -x {0.0.3.0 1.1.3.0 237 ------- null} - -t 24.0065 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 468 -a 0 -x {0.0.3.0 1.1.3.0 237 ------- null} h -t 24.0065 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 468 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.0081 -s 1 -d 3 -p ack -e 40 -c 0 -i 449 -a 1 -x {1.1.3.0 0.0.3.0 218 ------- null} + -t 24.0081 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {0.0.3.0 1.1.3.0 238 ------- null} - -t 24.0081 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {0.0.3.0 1.1.3.0 238 ------- null} h -t 24.0081 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.0097 -s 1 -d 3 -p ack -e 40 -c 0 -i 450 -a 1 -x {1.1.3.0 0.0.3.0 219 ------- null} + -t 24.0097 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 470 -a 0 -x {0.0.3.0 1.1.3.0 239 ------- null} - -t 24.0097 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 470 -a 0 -x {0.0.3.0 1.1.3.0 239 ------- null} h -t 24.0097 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 470 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.0113 -s 1 -d 3 -p ack -e 40 -c 0 -i 451 -a 1 -x {1.1.3.0 0.0.3.0 220 ------- null} + -t 24.0113 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {0.0.3.0 1.1.3.0 240 ------- null} - -t 24.0113 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {0.0.3.0 1.1.3.0 240 ------- null} h -t 24.0113 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.0129 -s 1 -d 3 -p ack -e 40 -c 0 -i 452 -a 1 -x {1.1.3.0 0.0.3.0 221 ------- null} + -t 24.0129 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {0.0.3.0 1.1.3.0 241 ------- null} - -t 24.0129 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {0.0.3.0 1.1.3.0 241 ------- null} h -t 24.0129 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.0145 -s 1 -d 3 -p ack -e 40 -c 0 -i 453 -a 1 -x {1.1.3.0 0.0.3.0 222 ------- null} + -t 24.0145 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {0.0.3.0 1.1.3.0 242 ------- null} - -t 24.0145 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {0.0.3.0 1.1.3.0 242 ------- null} h -t 24.0145 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.0161 -s 1 -d 3 -p ack -e 40 -c 0 -i 454 -a 1 -x {1.1.3.0 0.0.3.0 223 ------- null} + -t 24.0161 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 474 -a 0 -x {0.0.3.0 1.1.3.0 243 ------- null} - -t 24.0161 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 474 -a 0 -x {0.0.3.0 1.1.3.0 243 ------- null} h -t 24.0161 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 474 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.0177 -s 1 -d 3 -p ack -e 40 -c 0 -i 455 -a 1 -x {1.1.3.0 0.0.3.0 224 ------- null} + -t 24.0177 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {0.0.3.0 1.1.3.0 244 ------- null} - -t 24.0177 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {0.0.3.0 1.1.3.0 244 ------- null} h -t 24.0177 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.0193 -s 1 -d 3 -p ack -e 40 -c 0 -i 456 -a 1 -x {1.1.3.0 0.0.3.0 225 ------- null} + -t 24.0193 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 476 -a 0 -x {0.0.3.0 1.1.3.0 245 ------- null} - -t 24.0193 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 476 -a 0 -x {0.0.3.0 1.1.3.0 245 ------- null} h -t 24.0193 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 476 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.0209 -s 1 -d 3 -p ack -e 40 -c 0 -i 457 -a 1 -x {1.1.3.0 0.0.3.0 226 ------- null} + -t 24.0209 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {0.0.3.0 1.1.3.0 246 ------- null} - -t 24.0209 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {0.0.3.0 1.1.3.0 246 ------- null} h -t 24.0209 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.0225 -s 1 -d 3 -p ack -e 40 -c 0 -i 458 -a 1 -x {1.1.3.0 0.0.3.0 227 ------- null} + -t 24.0225 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {0.0.3.0 1.1.3.0 247 ------- null} - -t 24.0225 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {0.0.3.0 1.1.3.0 247 ------- null} h -t 24.0225 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.0241 -s 1 -d 3 -p ack -e 40 -c 0 -i 459 -a 1 -x {1.1.3.0 0.0.3.0 228 ------- null} + -t 24.0241 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {0.0.3.0 1.1.3.0 248 ------- null} - -t 24.0241 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {0.0.3.0 1.1.3.0 248 ------- null} h -t 24.0241 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.0257 -s 1 -d 3 -p ack -e 40 -c 0 -i 460 -a 1 -x {1.1.3.0 0.0.3.0 229 ------- null} + -t 24.0257 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {0.0.3.0 1.1.3.0 249 ------- null} - -t 24.0257 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {0.0.3.0 1.1.3.0 249 ------- null} h -t 24.0257 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.0273 -s 1 -d 3 -p ack -e 40 -c 0 -i 461 -a 1 -x {1.1.3.0 0.0.3.0 230 ------- null} + -t 24.0273 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {0.0.3.0 1.1.3.0 250 ------- null} - -t 24.0273 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {0.0.3.0 1.1.3.0 250 ------- null} h -t 24.0273 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.1585 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 462 -a 0 -x {0.0.3.0 1.1.3.0 231 ------- null} + -t 24.1585 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 462 -a 0 -x {0.0.3.0 1.1.3.0 231 ------- null} - -t 24.1585 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 462 -a 0 -x {0.0.3.0 1.1.3.0 231 ------- null} h -t 24.1585 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 462 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.1601 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {0.0.3.0 1.1.3.0 232 ------- null} + -t 24.1601 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {0.0.3.0 1.1.3.0 232 ------- null} - -t 24.1601 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {0.0.3.0 1.1.3.0 232 ------- null} h -t 24.1601 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.1617 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 464 -a 0 -x {0.0.3.0 1.1.3.0 233 ------- null} + -t 24.1617 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 464 -a 0 -x {0.0.3.0 1.1.3.0 233 ------- null} - -t 24.1617 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 464 -a 0 -x {0.0.3.0 1.1.3.0 233 ------- null} h -t 24.1617 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 464 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.1633 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {0.0.3.0 1.1.3.0 234 ------- null} + -t 24.1633 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {0.0.3.0 1.1.3.0 234 ------- null} - -t 24.1633 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {0.0.3.0 1.1.3.0 234 ------- null} h -t 24.1633 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.1649 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 466 -a 0 -x {0.0.3.0 1.1.3.0 235 ------- null} + -t 24.1649 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 466 -a 0 -x {0.0.3.0 1.1.3.0 235 ------- null} - -t 24.1649 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 466 -a 0 -x {0.0.3.0 1.1.3.0 235 ------- null} h -t 24.1649 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 466 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.1665 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {0.0.3.0 1.1.3.0 236 ------- null} + -t 24.1665 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {0.0.3.0 1.1.3.0 236 ------- null} - -t 24.1665 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {0.0.3.0 1.1.3.0 236 ------- null} h -t 24.1665 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.1681 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 468 -a 0 -x {0.0.3.0 1.1.3.0 237 ------- null} + -t 24.1681 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 468 -a 0 -x {0.0.3.0 1.1.3.0 237 ------- null} - -t 24.1681 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 468 -a 0 -x {0.0.3.0 1.1.3.0 237 ------- null} h -t 24.1681 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 468 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.1697 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {0.0.3.0 1.1.3.0 238 ------- null} + -t 24.1697 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {0.0.3.0 1.1.3.0 238 ------- null} - -t 24.1697 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {0.0.3.0 1.1.3.0 238 ------- null} h -t 24.1697 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.1713 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 470 -a 0 -x {0.0.3.0 1.1.3.0 239 ------- null} + -t 24.1713 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 470 -a 0 -x {0.0.3.0 1.1.3.0 239 ------- null} - -t 24.1713 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 470 -a 0 -x {0.0.3.0 1.1.3.0 239 ------- null} h -t 24.1713 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 470 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.1729 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {0.0.3.0 1.1.3.0 240 ------- null} + -t 24.1729 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {0.0.3.0 1.1.3.0 240 ------- null} - -t 24.1729 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {0.0.3.0 1.1.3.0 240 ------- null} h -t 24.1729 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.1745 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {0.0.3.0 1.1.3.0 241 ------- null} + -t 24.1745 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {0.0.3.0 1.1.3.0 241 ------- null} - -t 24.1745 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {0.0.3.0 1.1.3.0 241 ------- null} h -t 24.1745 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.1761 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {0.0.3.0 1.1.3.0 242 ------- null} + -t 24.1761 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {0.0.3.0 1.1.3.0 242 ------- null} - -t 24.1761 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {0.0.3.0 1.1.3.0 242 ------- null} h -t 24.1761 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.1777 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 474 -a 0 -x {0.0.3.0 1.1.3.0 243 ------- null} + -t 24.1777 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 474 -a 0 -x {0.0.3.0 1.1.3.0 243 ------- null} - -t 24.1777 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 474 -a 0 -x {0.0.3.0 1.1.3.0 243 ------- null} h -t 24.1777 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 474 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.1793 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {0.0.3.0 1.1.3.0 244 ------- null} + -t 24.1793 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {0.0.3.0 1.1.3.0 244 ------- null} - -t 24.1793 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {0.0.3.0 1.1.3.0 244 ------- null} h -t 24.1793 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.1809 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 476 -a 0 -x {0.0.3.0 1.1.3.0 245 ------- null} + -t 24.1809 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 476 -a 0 -x {0.0.3.0 1.1.3.0 245 ------- null} - -t 24.1809 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 476 -a 0 -x {0.0.3.0 1.1.3.0 245 ------- null} h -t 24.1809 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 476 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.1825 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {0.0.3.0 1.1.3.0 246 ------- null} + -t 24.1825 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {0.0.3.0 1.1.3.0 246 ------- null} - -t 24.1825 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {0.0.3.0 1.1.3.0 246 ------- null} h -t 24.1825 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.1841 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {0.0.3.0 1.1.3.0 247 ------- null} + -t 24.1841 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {0.0.3.0 1.1.3.0 247 ------- null} - -t 24.1841 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {0.0.3.0 1.1.3.0 247 ------- null} h -t 24.1841 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.1857 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {0.0.3.0 1.1.3.0 248 ------- null} + -t 24.1857 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {0.0.3.0 1.1.3.0 248 ------- null} - -t 24.1857 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {0.0.3.0 1.1.3.0 248 ------- null} h -t 24.1857 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.1873 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {0.0.3.0 1.1.3.0 249 ------- null} + -t 24.1873 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {0.0.3.0 1.1.3.0 249 ------- null} - -t 24.1873 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {0.0.3.0 1.1.3.0 249 ------- null} h -t 24.1873 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.1889 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {0.0.3.0 1.1.3.0 250 ------- null} + -t 24.1889 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {0.0.3.0 1.1.3.0 250 ------- null} - -t 24.1889 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {0.0.3.0 1.1.3.0 250 ------- null} h -t 24.1889 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.4601 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 462 -a 0 -x {0.0.3.0 1.1.3.0 231 ------- null} + -t 24.4601 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 462 -a 0 -x {0.0.3.0 1.1.3.0 231 ------- null} - -t 24.4601 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 462 -a 0 -x {0.0.3.0 1.1.3.0 231 ------- null} h -t 24.4601 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 462 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.4617 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {0.0.3.0 1.1.3.0 232 ------- null} + -t 24.4617 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {0.0.3.0 1.1.3.0 232 ------- null} - -t 24.4617 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {0.0.3.0 1.1.3.0 232 ------- null} h -t 24.4617 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.4633 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 464 -a 0 -x {0.0.3.0 1.1.3.0 233 ------- null} + -t 24.4633 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 464 -a 0 -x {0.0.3.0 1.1.3.0 233 ------- null} - -t 24.4633 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 464 -a 0 -x {0.0.3.0 1.1.3.0 233 ------- null} h -t 24.4633 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 464 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.4649 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {0.0.3.0 1.1.3.0 234 ------- null} + -t 24.4649 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {0.0.3.0 1.1.3.0 234 ------- null} - -t 24.4649 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {0.0.3.0 1.1.3.0 234 ------- null} h -t 24.4649 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.4665 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 466 -a 0 -x {0.0.3.0 1.1.3.0 235 ------- null} + -t 24.4665 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 466 -a 0 -x {0.0.3.0 1.1.3.0 235 ------- null} - -t 24.4665 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 466 -a 0 -x {0.0.3.0 1.1.3.0 235 ------- null} h -t 24.4665 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 466 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.4681 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {0.0.3.0 1.1.3.0 236 ------- null} + -t 24.4681 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {0.0.3.0 1.1.3.0 236 ------- null} - -t 24.4681 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {0.0.3.0 1.1.3.0 236 ------- null} h -t 24.4681 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.4697 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 468 -a 0 -x {0.0.3.0 1.1.3.0 237 ------- null} + -t 24.4697 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 468 -a 0 -x {0.0.3.0 1.1.3.0 237 ------- null} - -t 24.4697 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 468 -a 0 -x {0.0.3.0 1.1.3.0 237 ------- null} h -t 24.4697 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 468 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.4713 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {0.0.3.0 1.1.3.0 238 ------- null} + -t 24.4713 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {0.0.3.0 1.1.3.0 238 ------- null} - -t 24.4713 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {0.0.3.0 1.1.3.0 238 ------- null} h -t 24.4713 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.4729 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 470 -a 0 -x {0.0.3.0 1.1.3.0 239 ------- null} + -t 24.4729 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 470 -a 0 -x {0.0.3.0 1.1.3.0 239 ------- null} - -t 24.4729 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 470 -a 0 -x {0.0.3.0 1.1.3.0 239 ------- null} h -t 24.4729 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 470 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.4745 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {0.0.3.0 1.1.3.0 240 ------- null} + -t 24.4745 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {0.0.3.0 1.1.3.0 240 ------- null} - -t 24.4745 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {0.0.3.0 1.1.3.0 240 ------- null} h -t 24.4745 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.4761 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {0.0.3.0 1.1.3.0 241 ------- null} + -t 24.4761 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {0.0.3.0 1.1.3.0 241 ------- null} - -t 24.4761 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {0.0.3.0 1.1.3.0 241 ------- null} h -t 24.4761 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.4777 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {0.0.3.0 1.1.3.0 242 ------- null} + -t 24.4777 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {0.0.3.0 1.1.3.0 242 ------- null} - -t 24.4777 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {0.0.3.0 1.1.3.0 242 ------- null} h -t 24.4777 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.4793 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 474 -a 0 -x {0.0.3.0 1.1.3.0 243 ------- null} + -t 24.4793 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 474 -a 0 -x {0.0.3.0 1.1.3.0 243 ------- null} - -t 24.4793 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 474 -a 0 -x {0.0.3.0 1.1.3.0 243 ------- null} h -t 24.4793 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 474 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.4809 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {0.0.3.0 1.1.3.0 244 ------- null} + -t 24.4809 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {0.0.3.0 1.1.3.0 244 ------- null} - -t 24.4809 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {0.0.3.0 1.1.3.0 244 ------- null} h -t 24.4809 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.4825 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 476 -a 0 -x {0.0.3.0 1.1.3.0 245 ------- null} + -t 24.4825 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 476 -a 0 -x {0.0.3.0 1.1.3.0 245 ------- null} - -t 24.4825 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 476 -a 0 -x {0.0.3.0 1.1.3.0 245 ------- null} h -t 24.4825 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 476 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.4841 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {0.0.3.0 1.1.3.0 246 ------- null} + -t 24.4841 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {0.0.3.0 1.1.3.0 246 ------- null} - -t 24.4841 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {0.0.3.0 1.1.3.0 246 ------- null} h -t 24.4841 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.4857 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {0.0.3.0 1.1.3.0 247 ------- null} + -t 24.4857 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {0.0.3.0 1.1.3.0 247 ------- null} - -t 24.4857 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {0.0.3.0 1.1.3.0 247 ------- null} h -t 24.4857 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.4873 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {0.0.3.0 1.1.3.0 248 ------- null} + -t 24.4873 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {0.0.3.0 1.1.3.0 248 ------- null} - -t 24.4873 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {0.0.3.0 1.1.3.0 248 ------- null} h -t 24.4873 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.4889 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {0.0.3.0 1.1.3.0 249 ------- null} + -t 24.4889 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {0.0.3.0 1.1.3.0 249 ------- null} - -t 24.4889 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {0.0.3.0 1.1.3.0 249 ------- null} h -t 24.4889 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.4905 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {0.0.3.0 1.1.3.0 250 ------- null} + -t 24.4905 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {0.0.3.0 1.1.3.0 250 ------- null} - -t 24.4905 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {0.0.3.0 1.1.3.0 250 ------- null} h -t 24.4905 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.5617 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 462 -a 0 -x {0.0.3.0 1.1.3.0 231 ------- null} + -t 24.5617 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 462 -a 0 -x {0.0.3.0 1.1.3.0 231 ------- null} - -t 24.5617 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 462 -a 0 -x {0.0.3.0 1.1.3.0 231 ------- null} h -t 24.5617 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 462 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.5633 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {0.0.3.0 1.1.3.0 232 ------- null} + -t 24.5633 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {0.0.3.0 1.1.3.0 232 ------- null} - -t 24.5633 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {0.0.3.0 1.1.3.0 232 ------- null} h -t 24.5633 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.5649 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 464 -a 0 -x {0.0.3.0 1.1.3.0 233 ------- null} + -t 24.5649 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 464 -a 0 -x {0.0.3.0 1.1.3.0 233 ------- null} - -t 24.5649 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 464 -a 0 -x {0.0.3.0 1.1.3.0 233 ------- null} h -t 24.5649 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 464 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.5665 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {0.0.3.0 1.1.3.0 234 ------- null} + -t 24.5665 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {0.0.3.0 1.1.3.0 234 ------- null} - -t 24.5665 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {0.0.3.0 1.1.3.0 234 ------- null} h -t 24.5665 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.5681 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 466 -a 0 -x {0.0.3.0 1.1.3.0 235 ------- null} + -t 24.5681 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 466 -a 0 -x {0.0.3.0 1.1.3.0 235 ------- null} - -t 24.5681 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 466 -a 0 -x {0.0.3.0 1.1.3.0 235 ------- null} h -t 24.5681 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 466 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.5697 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {0.0.3.0 1.1.3.0 236 ------- null} + -t 24.5697 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {0.0.3.0 1.1.3.0 236 ------- null} - -t 24.5697 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {0.0.3.0 1.1.3.0 236 ------- null} h -t 24.5697 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.5713 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 468 -a 0 -x {0.0.3.0 1.1.3.0 237 ------- null} + -t 24.5713 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 468 -a 0 -x {0.0.3.0 1.1.3.0 237 ------- null} - -t 24.5713 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 468 -a 0 -x {0.0.3.0 1.1.3.0 237 ------- null} h -t 24.5713 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 468 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.5729 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {0.0.3.0 1.1.3.0 238 ------- null} + -t 24.5729 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {0.0.3.0 1.1.3.0 238 ------- null} - -t 24.5729 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {0.0.3.0 1.1.3.0 238 ------- null} h -t 24.5729 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.5745 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 470 -a 0 -x {0.0.3.0 1.1.3.0 239 ------- null} + -t 24.5745 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 470 -a 0 -x {0.0.3.0 1.1.3.0 239 ------- null} - -t 24.5745 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 470 -a 0 -x {0.0.3.0 1.1.3.0 239 ------- null} h -t 24.5745 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 470 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.5761 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {0.0.3.0 1.1.3.0 240 ------- null} + -t 24.5761 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {0.0.3.0 1.1.3.0 240 ------- null} - -t 24.5761 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {0.0.3.0 1.1.3.0 240 ------- null} h -t 24.5761 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.5777 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {0.0.3.0 1.1.3.0 241 ------- null} + -t 24.5777 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {0.0.3.0 1.1.3.0 241 ------- null} - -t 24.5777 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {0.0.3.0 1.1.3.0 241 ------- null} h -t 24.5777 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.5793 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {0.0.3.0 1.1.3.0 242 ------- null} + -t 24.5793 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {0.0.3.0 1.1.3.0 242 ------- null} - -t 24.5793 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {0.0.3.0 1.1.3.0 242 ------- null} h -t 24.5793 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.5809 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 474 -a 0 -x {0.0.3.0 1.1.3.0 243 ------- null} + -t 24.5809 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 474 -a 0 -x {0.0.3.0 1.1.3.0 243 ------- null} - -t 24.5809 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 474 -a 0 -x {0.0.3.0 1.1.3.0 243 ------- null} h -t 24.5809 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 474 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.5825 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {0.0.3.0 1.1.3.0 244 ------- null} + -t 24.5825 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {0.0.3.0 1.1.3.0 244 ------- null} - -t 24.5825 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {0.0.3.0 1.1.3.0 244 ------- null} h -t 24.5825 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.5841 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 476 -a 0 -x {0.0.3.0 1.1.3.0 245 ------- null} + -t 24.5841 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 476 -a 0 -x {0.0.3.0 1.1.3.0 245 ------- null} - -t 24.5841 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 476 -a 0 -x {0.0.3.0 1.1.3.0 245 ------- null} h -t 24.5841 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 476 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.5857 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {0.0.3.0 1.1.3.0 246 ------- null} + -t 24.5857 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {0.0.3.0 1.1.3.0 246 ------- null} - -t 24.5857 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {0.0.3.0 1.1.3.0 246 ------- null} h -t 24.5857 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.5873 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {0.0.3.0 1.1.3.0 247 ------- null} + -t 24.5873 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {0.0.3.0 1.1.3.0 247 ------- null} - -t 24.5873 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {0.0.3.0 1.1.3.0 247 ------- null} h -t 24.5873 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.5889 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {0.0.3.0 1.1.3.0 248 ------- null} + -t 24.5889 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {0.0.3.0 1.1.3.0 248 ------- null} - -t 24.5889 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {0.0.3.0 1.1.3.0 248 ------- null} h -t 24.5889 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.5905 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {0.0.3.0 1.1.3.0 249 ------- null} + -t 24.5905 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {0.0.3.0 1.1.3.0 249 ------- null} - -t 24.5905 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {0.0.3.0 1.1.3.0 249 ------- null} h -t 24.5905 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.5921 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {0.0.3.0 1.1.3.0 250 ------- null} + -t 24.5921 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {0.0.3.0 1.1.3.0 250 ------- null} - -t 24.5921 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {0.0.3.0 1.1.3.0 250 ------- null} h -t 24.5921 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.6433 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 462 -a 0 -x {0.0.3.0 1.1.3.0 231 ------- null} + -t 24.6433 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 462 -a 0 -x {0.0.3.0 1.1.3.0 231 ------- null} - -t 24.6433 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 462 -a 0 -x {0.0.3.0 1.1.3.0 231 ------- null} h -t 24.6433 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 462 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.6449 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {0.0.3.0 1.1.3.0 232 ------- null} + -t 24.6449 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {0.0.3.0 1.1.3.0 232 ------- null} - -t 24.6449 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {0.0.3.0 1.1.3.0 232 ------- null} h -t 24.6449 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.6465 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 464 -a 0 -x {0.0.3.0 1.1.3.0 233 ------- null} + -t 24.6465 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 464 -a 0 -x {0.0.3.0 1.1.3.0 233 ------- null} - -t 24.6465 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 464 -a 0 -x {0.0.3.0 1.1.3.0 233 ------- null} h -t 24.6465 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 464 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.6481 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {0.0.3.0 1.1.3.0 234 ------- null} + -t 24.6481 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {0.0.3.0 1.1.3.0 234 ------- null} - -t 24.6481 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {0.0.3.0 1.1.3.0 234 ------- null} h -t 24.6481 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.6497 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 466 -a 0 -x {0.0.3.0 1.1.3.0 235 ------- null} + -t 24.6497 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 466 -a 0 -x {0.0.3.0 1.1.3.0 235 ------- null} - -t 24.6497 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 466 -a 0 -x {0.0.3.0 1.1.3.0 235 ------- null} h -t 24.6497 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 466 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.6513 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {0.0.3.0 1.1.3.0 236 ------- null} + -t 24.6513 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {0.0.3.0 1.1.3.0 236 ------- null} - -t 24.6513 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {0.0.3.0 1.1.3.0 236 ------- null} h -t 24.6513 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.6529 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 468 -a 0 -x {0.0.3.0 1.1.3.0 237 ------- null} + -t 24.6529 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 468 -a 0 -x {0.0.3.0 1.1.3.0 237 ------- null} - -t 24.6529 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 468 -a 0 -x {0.0.3.0 1.1.3.0 237 ------- null} h -t 24.6529 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 468 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.6545 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {0.0.3.0 1.1.3.0 238 ------- null} + -t 24.6545 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {0.0.3.0 1.1.3.0 238 ------- null} - -t 24.6545 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {0.0.3.0 1.1.3.0 238 ------- null} h -t 24.6545 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.6561 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 470 -a 0 -x {0.0.3.0 1.1.3.0 239 ------- null} + -t 24.6561 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 470 -a 0 -x {0.0.3.0 1.1.3.0 239 ------- null} - -t 24.6561 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 470 -a 0 -x {0.0.3.0 1.1.3.0 239 ------- null} h -t 24.6561 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 470 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.6577 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {0.0.3.0 1.1.3.0 240 ------- null} + -t 24.6577 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {0.0.3.0 1.1.3.0 240 ------- null} - -t 24.6577 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {0.0.3.0 1.1.3.0 240 ------- null} h -t 24.6577 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.6593 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {0.0.3.0 1.1.3.0 241 ------- null} + -t 24.6593 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {0.0.3.0 1.1.3.0 241 ------- null} - -t 24.6593 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {0.0.3.0 1.1.3.0 241 ------- null} h -t 24.6593 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.6609 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {0.0.3.0 1.1.3.0 242 ------- null} + -t 24.6609 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {0.0.3.0 1.1.3.0 242 ------- null} - -t 24.6609 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {0.0.3.0 1.1.3.0 242 ------- null} h -t 24.6609 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.6625 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 474 -a 0 -x {0.0.3.0 1.1.3.0 243 ------- null} + -t 24.6625 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 474 -a 0 -x {0.0.3.0 1.1.3.0 243 ------- null} - -t 24.6625 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 474 -a 0 -x {0.0.3.0 1.1.3.0 243 ------- null} h -t 24.6625 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 474 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.6641 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {0.0.3.0 1.1.3.0 244 ------- null} + -t 24.6641 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {0.0.3.0 1.1.3.0 244 ------- null} - -t 24.6641 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {0.0.3.0 1.1.3.0 244 ------- null} h -t 24.6641 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.6657 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 476 -a 0 -x {0.0.3.0 1.1.3.0 245 ------- null} + -t 24.6657 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 476 -a 0 -x {0.0.3.0 1.1.3.0 245 ------- null} - -t 24.6657 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 476 -a 0 -x {0.0.3.0 1.1.3.0 245 ------- null} h -t 24.6657 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 476 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.6673 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {0.0.3.0 1.1.3.0 246 ------- null} + -t 24.6673 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {0.0.3.0 1.1.3.0 246 ------- null} - -t 24.6673 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {0.0.3.0 1.1.3.0 246 ------- null} h -t 24.6673 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.6689 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {0.0.3.0 1.1.3.0 247 ------- null} + -t 24.6689 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {0.0.3.0 1.1.3.0 247 ------- null} - -t 24.6689 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {0.0.3.0 1.1.3.0 247 ------- null} h -t 24.6689 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.6705 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {0.0.3.0 1.1.3.0 248 ------- null} + -t 24.6705 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {0.0.3.0 1.1.3.0 248 ------- null} - -t 24.6705 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {0.0.3.0 1.1.3.0 248 ------- null} h -t 24.6705 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.6721 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {0.0.3.0 1.1.3.0 249 ------- null} + -t 24.6721 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {0.0.3.0 1.1.3.0 249 ------- null} - -t 24.6721 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {0.0.3.0 1.1.3.0 249 ------- null} h -t 24.6721 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.6737 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {0.0.3.0 1.1.3.0 250 ------- null} + -t 24.6737 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {0.0.3.0 1.1.3.0 250 ------- null} - -t 24.6737 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {0.0.3.0 1.1.3.0 250 ------- null} h -t 24.6737 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.7249 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 462 -a 0 -x {0.0.3.0 1.1.3.0 231 ------- null} + -t 24.7249 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 462 -a 0 -x {0.0.3.0 1.1.3.0 231 ------- null} - -t 24.7249 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 462 -a 0 -x {0.0.3.0 1.1.3.0 231 ------- null} h -t 24.7249 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 462 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.7265 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {0.0.3.0 1.1.3.0 232 ------- null} + -t 24.7265 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {0.0.3.0 1.1.3.0 232 ------- null} - -t 24.7265 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {0.0.3.0 1.1.3.0 232 ------- null} h -t 24.7265 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.7281 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 464 -a 0 -x {0.0.3.0 1.1.3.0 233 ------- null} + -t 24.7281 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 464 -a 0 -x {0.0.3.0 1.1.3.0 233 ------- null} - -t 24.7281 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 464 -a 0 -x {0.0.3.0 1.1.3.0 233 ------- null} h -t 24.7281 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 464 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.7297 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {0.0.3.0 1.1.3.0 234 ------- null} + -t 24.7297 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {0.0.3.0 1.1.3.0 234 ------- null} - -t 24.7297 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {0.0.3.0 1.1.3.0 234 ------- null} h -t 24.7297 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.7313 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 466 -a 0 -x {0.0.3.0 1.1.3.0 235 ------- null} + -t 24.7313 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 466 -a 0 -x {0.0.3.0 1.1.3.0 235 ------- null} - -t 24.7313 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 466 -a 0 -x {0.0.3.0 1.1.3.0 235 ------- null} h -t 24.7313 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 466 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.7329 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {0.0.3.0 1.1.3.0 236 ------- null} + -t 24.7329 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {0.0.3.0 1.1.3.0 236 ------- null} - -t 24.7329 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {0.0.3.0 1.1.3.0 236 ------- null} h -t 24.7329 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.7345 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 468 -a 0 -x {0.0.3.0 1.1.3.0 237 ------- null} + -t 24.7345 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 468 -a 0 -x {0.0.3.0 1.1.3.0 237 ------- null} - -t 24.7345 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 468 -a 0 -x {0.0.3.0 1.1.3.0 237 ------- null} h -t 24.7345 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 468 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.7361 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {0.0.3.0 1.1.3.0 238 ------- null} + -t 24.7361 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {0.0.3.0 1.1.3.0 238 ------- null} - -t 24.7361 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {0.0.3.0 1.1.3.0 238 ------- null} h -t 24.7361 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.7377 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 470 -a 0 -x {0.0.3.0 1.1.3.0 239 ------- null} + -t 24.7377 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 470 -a 0 -x {0.0.3.0 1.1.3.0 239 ------- null} - -t 24.7377 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 470 -a 0 -x {0.0.3.0 1.1.3.0 239 ------- null} h -t 24.7377 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 470 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.7393 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {0.0.3.0 1.1.3.0 240 ------- null} + -t 24.7393 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {0.0.3.0 1.1.3.0 240 ------- null} - -t 24.7393 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {0.0.3.0 1.1.3.0 240 ------- null} h -t 24.7393 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.7409 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {0.0.3.0 1.1.3.0 241 ------- null} + -t 24.7409 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {0.0.3.0 1.1.3.0 241 ------- null} - -t 24.7409 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {0.0.3.0 1.1.3.0 241 ------- null} h -t 24.7409 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.7425 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {0.0.3.0 1.1.3.0 242 ------- null} + -t 24.7425 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {0.0.3.0 1.1.3.0 242 ------- null} - -t 24.7425 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {0.0.3.0 1.1.3.0 242 ------- null} h -t 24.7425 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.7441 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 474 -a 0 -x {0.0.3.0 1.1.3.0 243 ------- null} + -t 24.7441 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 474 -a 0 -x {0.0.3.0 1.1.3.0 243 ------- null} - -t 24.7441 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 474 -a 0 -x {0.0.3.0 1.1.3.0 243 ------- null} h -t 24.7441 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 474 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.7457 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {0.0.3.0 1.1.3.0 244 ------- null} + -t 24.7457 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {0.0.3.0 1.1.3.0 244 ------- null} - -t 24.7457 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {0.0.3.0 1.1.3.0 244 ------- null} h -t 24.7457 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.7473 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 476 -a 0 -x {0.0.3.0 1.1.3.0 245 ------- null} + -t 24.7473 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 476 -a 0 -x {0.0.3.0 1.1.3.0 245 ------- null} - -t 24.7473 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 476 -a 0 -x {0.0.3.0 1.1.3.0 245 ------- null} h -t 24.7473 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 476 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.7489 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {0.0.3.0 1.1.3.0 246 ------- null} + -t 24.7489 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {0.0.3.0 1.1.3.0 246 ------- null} - -t 24.7489 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {0.0.3.0 1.1.3.0 246 ------- null} h -t 24.7489 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.7505 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {0.0.3.0 1.1.3.0 247 ------- null} + -t 24.7505 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {0.0.3.0 1.1.3.0 247 ------- null} - -t 24.7505 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {0.0.3.0 1.1.3.0 247 ------- null} h -t 24.7505 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.7521 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {0.0.3.0 1.1.3.0 248 ------- null} + -t 24.7521 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {0.0.3.0 1.1.3.0 248 ------- null} - -t 24.7521 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {0.0.3.0 1.1.3.0 248 ------- null} h -t 24.7521 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.7537 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {0.0.3.0 1.1.3.0 249 ------- null} + -t 24.7537 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {0.0.3.0 1.1.3.0 249 ------- null} - -t 24.7537 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {0.0.3.0 1.1.3.0 249 ------- null} h -t 24.7537 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.7553 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {0.0.3.0 1.1.3.0 250 ------- null} + -t 24.7553 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {0.0.3.0 1.1.3.0 250 ------- null} - -t 24.7553 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {0.0.3.0 1.1.3.0 250 ------- null} h -t 24.7553 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 24.7865 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 462 -a 0 -x {0.0.3.0 1.1.3.0 231 ------- null} + -t 24.7865 -s 21 -d 28 -p ack -e 40 -c 0 -i 482 -a 1 -x {1.1.3.0 0.0.3.0 231 ------- null} - -t 24.7865 -s 21 -d 28 -p ack -e 40 -c 0 -i 482 -a 1 -x {1.1.3.0 0.0.3.0 231 ------- null} h -t 24.7865 -s 21 -d 28 -p ack -e 40 -c 0 -i 482 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 24.7881 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {0.0.3.0 1.1.3.0 232 ------- null} + -t 24.7881 -s 21 -d 28 -p ack -e 40 -c 0 -i 483 -a 1 -x {1.1.3.0 0.0.3.0 232 ------- null} - -t 24.7881 -s 21 -d 28 -p ack -e 40 -c 0 -i 483 -a 1 -x {1.1.3.0 0.0.3.0 232 ------- null} h -t 24.7881 -s 21 -d 28 -p ack -e 40 -c 0 -i 483 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 24.7897 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 464 -a 0 -x {0.0.3.0 1.1.3.0 233 ------- null} + -t 24.7897 -s 21 -d 28 -p ack -e 40 -c 0 -i 484 -a 1 -x {1.1.3.0 0.0.3.0 233 ------- null} - -t 24.7897 -s 21 -d 28 -p ack -e 40 -c 0 -i 484 -a 1 -x {1.1.3.0 0.0.3.0 233 ------- null} h -t 24.7897 -s 21 -d 28 -p ack -e 40 -c 0 -i 484 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 24.7913 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {0.0.3.0 1.1.3.0 234 ------- null} + -t 24.7913 -s 21 -d 28 -p ack -e 40 -c 0 -i 485 -a 1 -x {1.1.3.0 0.0.3.0 234 ------- null} - -t 24.7913 -s 21 -d 28 -p ack -e 40 -c 0 -i 485 -a 1 -x {1.1.3.0 0.0.3.0 234 ------- null} h -t 24.7913 -s 21 -d 28 -p ack -e 40 -c 0 -i 485 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 24.7929 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 466 -a 0 -x {0.0.3.0 1.1.3.0 235 ------- null} + -t 24.7929 -s 21 -d 28 -p ack -e 40 -c 0 -i 486 -a 1 -x {1.1.3.0 0.0.3.0 235 ------- null} - -t 24.7929 -s 21 -d 28 -p ack -e 40 -c 0 -i 486 -a 1 -x {1.1.3.0 0.0.3.0 235 ------- null} h -t 24.7929 -s 21 -d 28 -p ack -e 40 -c 0 -i 486 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 24.7945 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {0.0.3.0 1.1.3.0 236 ------- null} + -t 24.7945 -s 21 -d 28 -p ack -e 40 -c 0 -i 487 -a 1 -x {1.1.3.0 0.0.3.0 236 ------- null} - -t 24.7945 -s 21 -d 28 -p ack -e 40 -c 0 -i 487 -a 1 -x {1.1.3.0 0.0.3.0 236 ------- null} h -t 24.7945 -s 21 -d 28 -p ack -e 40 -c 0 -i 487 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 24.7961 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 468 -a 0 -x {0.0.3.0 1.1.3.0 237 ------- null} + -t 24.7961 -s 21 -d 28 -p ack -e 40 -c 0 -i 488 -a 1 -x {1.1.3.0 0.0.3.0 237 ------- null} - -t 24.7961 -s 21 -d 28 -p ack -e 40 -c 0 -i 488 -a 1 -x {1.1.3.0 0.0.3.0 237 ------- null} h -t 24.7961 -s 21 -d 28 -p ack -e 40 -c 0 -i 488 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 24.7977 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {0.0.3.0 1.1.3.0 238 ------- null} + -t 24.7977 -s 21 -d 28 -p ack -e 40 -c 0 -i 489 -a 1 -x {1.1.3.0 0.0.3.0 238 ------- null} - -t 24.7977 -s 21 -d 28 -p ack -e 40 -c 0 -i 489 -a 1 -x {1.1.3.0 0.0.3.0 238 ------- null} h -t 24.7977 -s 21 -d 28 -p ack -e 40 -c 0 -i 489 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 24.7993 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 470 -a 0 -x {0.0.3.0 1.1.3.0 239 ------- null} + -t 24.7993 -s 21 -d 28 -p ack -e 40 -c 0 -i 490 -a 1 -x {1.1.3.0 0.0.3.0 239 ------- null} - -t 24.7993 -s 21 -d 28 -p ack -e 40 -c 0 -i 490 -a 1 -x {1.1.3.0 0.0.3.0 239 ------- null} h -t 24.7993 -s 21 -d 28 -p ack -e 40 -c 0 -i 490 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 24.8009 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {0.0.3.0 1.1.3.0 240 ------- null} + -t 24.8009 -s 21 -d 28 -p ack -e 40 -c 0 -i 491 -a 1 -x {1.1.3.0 0.0.3.0 240 ------- null} - -t 24.8009 -s 21 -d 28 -p ack -e 40 -c 0 -i 491 -a 1 -x {1.1.3.0 0.0.3.0 240 ------- null} h -t 24.8009 -s 21 -d 28 -p ack -e 40 -c 0 -i 491 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 24.8025 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 472 -a 0 -x {0.0.3.0 1.1.3.0 241 ------- null} + -t 24.8025 -s 21 -d 28 -p ack -e 40 -c 0 -i 492 -a 1 -x {1.1.3.0 0.0.3.0 241 ------- null} - -t 24.8025 -s 21 -d 28 -p ack -e 40 -c 0 -i 492 -a 1 -x {1.1.3.0 0.0.3.0 241 ------- null} h -t 24.8025 -s 21 -d 28 -p ack -e 40 -c 0 -i 492 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 24.8041 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {0.0.3.0 1.1.3.0 242 ------- null} + -t 24.8041 -s 21 -d 28 -p ack -e 40 -c 0 -i 493 -a 1 -x {1.1.3.0 0.0.3.0 242 ------- null} - -t 24.8041 -s 21 -d 28 -p ack -e 40 -c 0 -i 493 -a 1 -x {1.1.3.0 0.0.3.0 242 ------- null} h -t 24.8041 -s 21 -d 28 -p ack -e 40 -c 0 -i 493 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 24.8057 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 474 -a 0 -x {0.0.3.0 1.1.3.0 243 ------- null} + -t 24.8057 -s 21 -d 28 -p ack -e 40 -c 0 -i 494 -a 1 -x {1.1.3.0 0.0.3.0 243 ------- null} - -t 24.8057 -s 21 -d 28 -p ack -e 40 -c 0 -i 494 -a 1 -x {1.1.3.0 0.0.3.0 243 ------- null} h -t 24.8057 -s 21 -d 28 -p ack -e 40 -c 0 -i 494 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 24.8073 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {0.0.3.0 1.1.3.0 244 ------- null} + -t 24.8073 -s 21 -d 28 -p ack -e 40 -c 0 -i 495 -a 1 -x {1.1.3.0 0.0.3.0 244 ------- null} - -t 24.8073 -s 21 -d 28 -p ack -e 40 -c 0 -i 495 -a 1 -x {1.1.3.0 0.0.3.0 244 ------- null} h -t 24.8073 -s 21 -d 28 -p ack -e 40 -c 0 -i 495 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 24.8089 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 476 -a 0 -x {0.0.3.0 1.1.3.0 245 ------- null} + -t 24.8089 -s 21 -d 28 -p ack -e 40 -c 0 -i 496 -a 1 -x {1.1.3.0 0.0.3.0 245 ------- null} - -t 24.8089 -s 21 -d 28 -p ack -e 40 -c 0 -i 496 -a 1 -x {1.1.3.0 0.0.3.0 245 ------- null} h -t 24.8089 -s 21 -d 28 -p ack -e 40 -c 0 -i 496 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 24.8105 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {0.0.3.0 1.1.3.0 246 ------- null} + -t 24.8105 -s 21 -d 28 -p ack -e 40 -c 0 -i 497 -a 1 -x {1.1.3.0 0.0.3.0 246 ------- null} - -t 24.8105 -s 21 -d 28 -p ack -e 40 -c 0 -i 497 -a 1 -x {1.1.3.0 0.0.3.0 246 ------- null} h -t 24.8105 -s 21 -d 28 -p ack -e 40 -c 0 -i 497 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 24.8121 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 478 -a 0 -x {0.0.3.0 1.1.3.0 247 ------- null} + -t 24.8121 -s 21 -d 28 -p ack -e 40 -c 0 -i 498 -a 1 -x {1.1.3.0 0.0.3.0 247 ------- null} - -t 24.8121 -s 21 -d 28 -p ack -e 40 -c 0 -i 498 -a 1 -x {1.1.3.0 0.0.3.0 247 ------- null} h -t 24.8121 -s 21 -d 28 -p ack -e 40 -c 0 -i 498 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 24.8137 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {0.0.3.0 1.1.3.0 248 ------- null} + -t 24.8137 -s 21 -d 28 -p ack -e 40 -c 0 -i 499 -a 1 -x {1.1.3.0 0.0.3.0 248 ------- null} - -t 24.8137 -s 21 -d 28 -p ack -e 40 -c 0 -i 499 -a 1 -x {1.1.3.0 0.0.3.0 248 ------- null} h -t 24.8137 -s 21 -d 28 -p ack -e 40 -c 0 -i 499 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 24.8153 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 480 -a 0 -x {0.0.3.0 1.1.3.0 249 ------- null} + -t 24.8153 -s 21 -d 28 -p ack -e 40 -c 0 -i 500 -a 1 -x {1.1.3.0 0.0.3.0 249 ------- null} - -t 24.8153 -s 21 -d 28 -p ack -e 40 -c 0 -i 500 -a 1 -x {1.1.3.0 0.0.3.0 249 ------- null} h -t 24.8153 -s 21 -d 28 -p ack -e 40 -c 0 -i 500 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 24.8169 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {0.0.3.0 1.1.3.0 250 ------- null} + -t 24.8169 -s 21 -d 28 -p ack -e 40 -c 0 -i 501 -a 1 -x {1.1.3.0 0.0.3.0 250 ------- null} - -t 24.8169 -s 21 -d 28 -p ack -e 40 -c 0 -i 501 -a 1 -x {1.1.3.0 0.0.3.0 250 ------- null} h -t 24.8169 -s 21 -d 28 -p ack -e 40 -c 0 -i 501 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 25.1365 -s 21 -d 28 -p ack -e 40 -c 0 -i 482 -a 1 -x {1.1.3.0 0.0.3.0 231 ------- null} + -t 25.1365 -s 28 -d 1 -p ack -e 40 -c 0 -i 482 -a 1 -x {1.1.3.0 0.0.3.0 231 ------- null} - -t 25.1365 -s 28 -d 1 -p ack -e 40 -c 0 -i 482 -a 1 -x {1.1.3.0 0.0.3.0 231 ------- null} h -t 25.1365 -s 28 -d 1 -p ack -e 40 -c 0 -i 482 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 25.1381 -s 21 -d 28 -p ack -e 40 -c 0 -i 483 -a 1 -x {1.1.3.0 0.0.3.0 232 ------- null} + -t 25.1381 -s 28 -d 1 -p ack -e 40 -c 0 -i 483 -a 1 -x {1.1.3.0 0.0.3.0 232 ------- null} - -t 25.1381 -s 28 -d 1 -p ack -e 40 -c 0 -i 483 -a 1 -x {1.1.3.0 0.0.3.0 232 ------- null} h -t 25.1381 -s 28 -d 1 -p ack -e 40 -c 0 -i 483 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 25.1397 -s 21 -d 28 -p ack -e 40 -c 0 -i 484 -a 1 -x {1.1.3.0 0.0.3.0 233 ------- null} + -t 25.1397 -s 28 -d 1 -p ack -e 40 -c 0 -i 484 -a 1 -x {1.1.3.0 0.0.3.0 233 ------- null} - -t 25.1397 -s 28 -d 1 -p ack -e 40 -c 0 -i 484 -a 1 -x {1.1.3.0 0.0.3.0 233 ------- null} h -t 25.1397 -s 28 -d 1 -p ack -e 40 -c 0 -i 484 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 25.1413 -s 21 -d 28 -p ack -e 40 -c 0 -i 485 -a 1 -x {1.1.3.0 0.0.3.0 234 ------- null} + -t 25.1413 -s 28 -d 1 -p ack -e 40 -c 0 -i 485 -a 1 -x {1.1.3.0 0.0.3.0 234 ------- null} - -t 25.1413 -s 28 -d 1 -p ack -e 40 -c 0 -i 485 -a 1 -x {1.1.3.0 0.0.3.0 234 ------- null} h -t 25.1413 -s 28 -d 1 -p ack -e 40 -c 0 -i 485 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 25.1429 -s 21 -d 28 -p ack -e 40 -c 0 -i 486 -a 1 -x {1.1.3.0 0.0.3.0 235 ------- null} + -t 25.1429 -s 28 -d 1 -p ack -e 40 -c 0 -i 486 -a 1 -x {1.1.3.0 0.0.3.0 235 ------- null} - -t 25.1429 -s 28 -d 1 -p ack -e 40 -c 0 -i 486 -a 1 -x {1.1.3.0 0.0.3.0 235 ------- null} h -t 25.1429 -s 28 -d 1 -p ack -e 40 -c 0 -i 486 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 25.1445 -s 21 -d 28 -p ack -e 40 -c 0 -i 487 -a 1 -x {1.1.3.0 0.0.3.0 236 ------- null} + -t 25.1445 -s 28 -d 1 -p ack -e 40 -c 0 -i 487 -a 1 -x {1.1.3.0 0.0.3.0 236 ------- null} - -t 25.1445 -s 28 -d 1 -p ack -e 40 -c 0 -i 487 -a 1 -x {1.1.3.0 0.0.3.0 236 ------- null} h -t 25.1445 -s 28 -d 1 -p ack -e 40 -c 0 -i 487 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 25.1461 -s 21 -d 28 -p ack -e 40 -c 0 -i 488 -a 1 -x {1.1.3.0 0.0.3.0 237 ------- null} + -t 25.1461 -s 28 -d 1 -p ack -e 40 -c 0 -i 488 -a 1 -x {1.1.3.0 0.0.3.0 237 ------- null} - -t 25.1461 -s 28 -d 1 -p ack -e 40 -c 0 -i 488 -a 1 -x {1.1.3.0 0.0.3.0 237 ------- null} h -t 25.1461 -s 28 -d 1 -p ack -e 40 -c 0 -i 488 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 25.1477 -s 21 -d 28 -p ack -e 40 -c 0 -i 489 -a 1 -x {1.1.3.0 0.0.3.0 238 ------- null} + -t 25.1477 -s 28 -d 1 -p ack -e 40 -c 0 -i 489 -a 1 -x {1.1.3.0 0.0.3.0 238 ------- null} - -t 25.1477 -s 28 -d 1 -p ack -e 40 -c 0 -i 489 -a 1 -x {1.1.3.0 0.0.3.0 238 ------- null} h -t 25.1477 -s 28 -d 1 -p ack -e 40 -c 0 -i 489 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 25.1493 -s 21 -d 28 -p ack -e 40 -c 0 -i 490 -a 1 -x {1.1.3.0 0.0.3.0 239 ------- null} + -t 25.1493 -s 28 -d 1 -p ack -e 40 -c 0 -i 490 -a 1 -x {1.1.3.0 0.0.3.0 239 ------- null} - -t 25.1493 -s 28 -d 1 -p ack -e 40 -c 0 -i 490 -a 1 -x {1.1.3.0 0.0.3.0 239 ------- null} h -t 25.1493 -s 28 -d 1 -p ack -e 40 -c 0 -i 490 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 25.1509 -s 21 -d 28 -p ack -e 40 -c 0 -i 491 -a 1 -x {1.1.3.0 0.0.3.0 240 ------- null} + -t 25.1509 -s 28 -d 1 -p ack -e 40 -c 0 -i 491 -a 1 -x {1.1.3.0 0.0.3.0 240 ------- null} - -t 25.1509 -s 28 -d 1 -p ack -e 40 -c 0 -i 491 -a 1 -x {1.1.3.0 0.0.3.0 240 ------- null} h -t 25.1509 -s 28 -d 1 -p ack -e 40 -c 0 -i 491 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 25.1525 -s 21 -d 28 -p ack -e 40 -c 0 -i 492 -a 1 -x {1.1.3.0 0.0.3.0 241 ------- null} + -t 25.1525 -s 28 -d 1 -p ack -e 40 -c 0 -i 492 -a 1 -x {1.1.3.0 0.0.3.0 241 ------- null} - -t 25.1525 -s 28 -d 1 -p ack -e 40 -c 0 -i 492 -a 1 -x {1.1.3.0 0.0.3.0 241 ------- null} h -t 25.1525 -s 28 -d 1 -p ack -e 40 -c 0 -i 492 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 25.1541 -s 21 -d 28 -p ack -e 40 -c 0 -i 493 -a 1 -x {1.1.3.0 0.0.3.0 242 ------- null} + -t 25.1541 -s 28 -d 1 -p ack -e 40 -c 0 -i 493 -a 1 -x {1.1.3.0 0.0.3.0 242 ------- null} - -t 25.1541 -s 28 -d 1 -p ack -e 40 -c 0 -i 493 -a 1 -x {1.1.3.0 0.0.3.0 242 ------- null} h -t 25.1541 -s 28 -d 1 -p ack -e 40 -c 0 -i 493 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 25.1557 -s 21 -d 28 -p ack -e 40 -c 0 -i 494 -a 1 -x {1.1.3.0 0.0.3.0 243 ------- null} + -t 25.1557 -s 28 -d 1 -p ack -e 40 -c 0 -i 494 -a 1 -x {1.1.3.0 0.0.3.0 243 ------- null} - -t 25.1557 -s 28 -d 1 -p ack -e 40 -c 0 -i 494 -a 1 -x {1.1.3.0 0.0.3.0 243 ------- null} h -t 25.1557 -s 28 -d 1 -p ack -e 40 -c 0 -i 494 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 25.1573 -s 21 -d 28 -p ack -e 40 -c 0 -i 495 -a 1 -x {1.1.3.0 0.0.3.0 244 ------- null} + -t 25.1573 -s 28 -d 1 -p ack -e 40 -c 0 -i 495 -a 1 -x {1.1.3.0 0.0.3.0 244 ------- null} - -t 25.1573 -s 28 -d 1 -p ack -e 40 -c 0 -i 495 -a 1 -x {1.1.3.0 0.0.3.0 244 ------- null} h -t 25.1573 -s 28 -d 1 -p ack -e 40 -c 0 -i 495 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 25.1589 -s 21 -d 28 -p ack -e 40 -c 0 -i 496 -a 1 -x {1.1.3.0 0.0.3.0 245 ------- null} + -t 25.1589 -s 28 -d 1 -p ack -e 40 -c 0 -i 496 -a 1 -x {1.1.3.0 0.0.3.0 245 ------- null} - -t 25.1589 -s 28 -d 1 -p ack -e 40 -c 0 -i 496 -a 1 -x {1.1.3.0 0.0.3.0 245 ------- null} h -t 25.1589 -s 28 -d 1 -p ack -e 40 -c 0 -i 496 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 25.1605 -s 21 -d 28 -p ack -e 40 -c 0 -i 497 -a 1 -x {1.1.3.0 0.0.3.0 246 ------- null} + -t 25.1605 -s 28 -d 1 -p ack -e 40 -c 0 -i 497 -a 1 -x {1.1.3.0 0.0.3.0 246 ------- null} - -t 25.1605 -s 28 -d 1 -p ack -e 40 -c 0 -i 497 -a 1 -x {1.1.3.0 0.0.3.0 246 ------- null} h -t 25.1605 -s 28 -d 1 -p ack -e 40 -c 0 -i 497 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 25.1621 -s 21 -d 28 -p ack -e 40 -c 0 -i 498 -a 1 -x {1.1.3.0 0.0.3.0 247 ------- null} + -t 25.1621 -s 28 -d 1 -p ack -e 40 -c 0 -i 498 -a 1 -x {1.1.3.0 0.0.3.0 247 ------- null} - -t 25.1621 -s 28 -d 1 -p ack -e 40 -c 0 -i 498 -a 1 -x {1.1.3.0 0.0.3.0 247 ------- null} h -t 25.1621 -s 28 -d 1 -p ack -e 40 -c 0 -i 498 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 25.1637 -s 21 -d 28 -p ack -e 40 -c 0 -i 499 -a 1 -x {1.1.3.0 0.0.3.0 248 ------- null} + -t 25.1637 -s 28 -d 1 -p ack -e 40 -c 0 -i 499 -a 1 -x {1.1.3.0 0.0.3.0 248 ------- null} - -t 25.1637 -s 28 -d 1 -p ack -e 40 -c 0 -i 499 -a 1 -x {1.1.3.0 0.0.3.0 248 ------- null} h -t 25.1637 -s 28 -d 1 -p ack -e 40 -c 0 -i 499 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 25.1653 -s 21 -d 28 -p ack -e 40 -c 0 -i 500 -a 1 -x {1.1.3.0 0.0.3.0 249 ------- null} + -t 25.1653 -s 28 -d 1 -p ack -e 40 -c 0 -i 500 -a 1 -x {1.1.3.0 0.0.3.0 249 ------- null} - -t 25.1653 -s 28 -d 1 -p ack -e 40 -c 0 -i 500 -a 1 -x {1.1.3.0 0.0.3.0 249 ------- null} h -t 25.1653 -s 28 -d 1 -p ack -e 40 -c 0 -i 500 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 25.1669 -s 21 -d 28 -p ack -e 40 -c 0 -i 501 -a 1 -x {1.1.3.0 0.0.3.0 250 ------- null} + -t 25.1669 -s 28 -d 1 -p ack -e 40 -c 0 -i 501 -a 1 -x {1.1.3.0 0.0.3.0 250 ------- null} - -t 25.1669 -s 28 -d 1 -p ack -e 40 -c 0 -i 501 -a 1 -x {1.1.3.0 0.0.3.0 250 ------- null} h -t 25.1669 -s 28 -d 1 -p ack -e 40 -c 0 -i 501 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 25.4366 -s 28 -d 1 -p ack -e 40 -c 0 -i 482 -a 1 -x {1.1.3.0 0.0.3.0 231 ------- null} + -t 25.4366 -s 1 -d 3 -p ack -e 40 -c 0 -i 482 -a 1 -x {1.1.3.0 0.0.3.0 231 ------- null} - -t 25.4366 -s 1 -d 3 -p ack -e 40 -c 0 -i 482 -a 1 -x {1.1.3.0 0.0.3.0 231 ------- null} h -t 25.4366 -s 1 -d 3 -p ack -e 40 -c 0 -i 482 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 25.4382 -s 28 -d 1 -p ack -e 40 -c 0 -i 483 -a 1 -x {1.1.3.0 0.0.3.0 232 ------- null} + -t 25.4382 -s 1 -d 3 -p ack -e 40 -c 0 -i 483 -a 1 -x {1.1.3.0 0.0.3.0 232 ------- null} - -t 25.4382 -s 1 -d 3 -p ack -e 40 -c 0 -i 483 -a 1 -x {1.1.3.0 0.0.3.0 232 ------- null} h -t 25.4382 -s 1 -d 3 -p ack -e 40 -c 0 -i 483 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 25.4398 -s 28 -d 1 -p ack -e 40 -c 0 -i 484 -a 1 -x {1.1.3.0 0.0.3.0 233 ------- null} + -t 25.4398 -s 1 -d 3 -p ack -e 40 -c 0 -i 484 -a 1 -x {1.1.3.0 0.0.3.0 233 ------- null} - -t 25.4398 -s 1 -d 3 -p ack -e 40 -c 0 -i 484 -a 1 -x {1.1.3.0 0.0.3.0 233 ------- null} h -t 25.4398 -s 1 -d 3 -p ack -e 40 -c 0 -i 484 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 25.4414 -s 28 -d 1 -p ack -e 40 -c 0 -i 485 -a 1 -x {1.1.3.0 0.0.3.0 234 ------- null} + -t 25.4414 -s 1 -d 3 -p ack -e 40 -c 0 -i 485 -a 1 -x {1.1.3.0 0.0.3.0 234 ------- null} - -t 25.4414 -s 1 -d 3 -p ack -e 40 -c 0 -i 485 -a 1 -x {1.1.3.0 0.0.3.0 234 ------- null} h -t 25.4414 -s 1 -d 3 -p ack -e 40 -c 0 -i 485 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 25.443 -s 28 -d 1 -p ack -e 40 -c 0 -i 486 -a 1 -x {1.1.3.0 0.0.3.0 235 ------- null} + -t 25.443 -s 1 -d 3 -p ack -e 40 -c 0 -i 486 -a 1 -x {1.1.3.0 0.0.3.0 235 ------- null} - -t 25.443 -s 1 -d 3 -p ack -e 40 -c 0 -i 486 -a 1 -x {1.1.3.0 0.0.3.0 235 ------- null} h -t 25.443 -s 1 -d 3 -p ack -e 40 -c 0 -i 486 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 25.4446 -s 28 -d 1 -p ack -e 40 -c 0 -i 487 -a 1 -x {1.1.3.0 0.0.3.0 236 ------- null} + -t 25.4446 -s 1 -d 3 -p ack -e 40 -c 0 -i 487 -a 1 -x {1.1.3.0 0.0.3.0 236 ------- null} - -t 25.4446 -s 1 -d 3 -p ack -e 40 -c 0 -i 487 -a 1 -x {1.1.3.0 0.0.3.0 236 ------- null} h -t 25.4446 -s 1 -d 3 -p ack -e 40 -c 0 -i 487 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 25.4462 -s 28 -d 1 -p ack -e 40 -c 0 -i 488 -a 1 -x {1.1.3.0 0.0.3.0 237 ------- null} + -t 25.4462 -s 1 -d 3 -p ack -e 40 -c 0 -i 488 -a 1 -x {1.1.3.0 0.0.3.0 237 ------- null} - -t 25.4462 -s 1 -d 3 -p ack -e 40 -c 0 -i 488 -a 1 -x {1.1.3.0 0.0.3.0 237 ------- null} h -t 25.4462 -s 1 -d 3 -p ack -e 40 -c 0 -i 488 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 25.4478 -s 28 -d 1 -p ack -e 40 -c 0 -i 489 -a 1 -x {1.1.3.0 0.0.3.0 238 ------- null} + -t 25.4478 -s 1 -d 3 -p ack -e 40 -c 0 -i 489 -a 1 -x {1.1.3.0 0.0.3.0 238 ------- null} - -t 25.4478 -s 1 -d 3 -p ack -e 40 -c 0 -i 489 -a 1 -x {1.1.3.0 0.0.3.0 238 ------- null} h -t 25.4478 -s 1 -d 3 -p ack -e 40 -c 0 -i 489 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 25.4494 -s 28 -d 1 -p ack -e 40 -c 0 -i 490 -a 1 -x {1.1.3.0 0.0.3.0 239 ------- null} + -t 25.4494 -s 1 -d 3 -p ack -e 40 -c 0 -i 490 -a 1 -x {1.1.3.0 0.0.3.0 239 ------- null} - -t 25.4494 -s 1 -d 3 -p ack -e 40 -c 0 -i 490 -a 1 -x {1.1.3.0 0.0.3.0 239 ------- null} h -t 25.4494 -s 1 -d 3 -p ack -e 40 -c 0 -i 490 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 25.451 -s 28 -d 1 -p ack -e 40 -c 0 -i 491 -a 1 -x {1.1.3.0 0.0.3.0 240 ------- null} + -t 25.451 -s 1 -d 3 -p ack -e 40 -c 0 -i 491 -a 1 -x {1.1.3.0 0.0.3.0 240 ------- null} - -t 25.451 -s 1 -d 3 -p ack -e 40 -c 0 -i 491 -a 1 -x {1.1.3.0 0.0.3.0 240 ------- null} h -t 25.451 -s 1 -d 3 -p ack -e 40 -c 0 -i 491 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 25.4526 -s 28 -d 1 -p ack -e 40 -c 0 -i 492 -a 1 -x {1.1.3.0 0.0.3.0 241 ------- null} + -t 25.4526 -s 1 -d 3 -p ack -e 40 -c 0 -i 492 -a 1 -x {1.1.3.0 0.0.3.0 241 ------- null} - -t 25.4526 -s 1 -d 3 -p ack -e 40 -c 0 -i 492 -a 1 -x {1.1.3.0 0.0.3.0 241 ------- null} h -t 25.4526 -s 1 -d 3 -p ack -e 40 -c 0 -i 492 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 25.4542 -s 28 -d 1 -p ack -e 40 -c 0 -i 493 -a 1 -x {1.1.3.0 0.0.3.0 242 ------- null} + -t 25.4542 -s 1 -d 3 -p ack -e 40 -c 0 -i 493 -a 1 -x {1.1.3.0 0.0.3.0 242 ------- null} - -t 25.4542 -s 1 -d 3 -p ack -e 40 -c 0 -i 493 -a 1 -x {1.1.3.0 0.0.3.0 242 ------- null} h -t 25.4542 -s 1 -d 3 -p ack -e 40 -c 0 -i 493 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 25.4558 -s 28 -d 1 -p ack -e 40 -c 0 -i 494 -a 1 -x {1.1.3.0 0.0.3.0 243 ------- null} + -t 25.4558 -s 1 -d 3 -p ack -e 40 -c 0 -i 494 -a 1 -x {1.1.3.0 0.0.3.0 243 ------- null} - -t 25.4558 -s 1 -d 3 -p ack -e 40 -c 0 -i 494 -a 1 -x {1.1.3.0 0.0.3.0 243 ------- null} h -t 25.4558 -s 1 -d 3 -p ack -e 40 -c 0 -i 494 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 25.4574 -s 28 -d 1 -p ack -e 40 -c 0 -i 495 -a 1 -x {1.1.3.0 0.0.3.0 244 ------- null} + -t 25.4574 -s 1 -d 3 -p ack -e 40 -c 0 -i 495 -a 1 -x {1.1.3.0 0.0.3.0 244 ------- null} - -t 25.4574 -s 1 -d 3 -p ack -e 40 -c 0 -i 495 -a 1 -x {1.1.3.0 0.0.3.0 244 ------- null} h -t 25.4574 -s 1 -d 3 -p ack -e 40 -c 0 -i 495 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 25.459 -s 28 -d 1 -p ack -e 40 -c 0 -i 496 -a 1 -x {1.1.3.0 0.0.3.0 245 ------- null} + -t 25.459 -s 1 -d 3 -p ack -e 40 -c 0 -i 496 -a 1 -x {1.1.3.0 0.0.3.0 245 ------- null} - -t 25.459 -s 1 -d 3 -p ack -e 40 -c 0 -i 496 -a 1 -x {1.1.3.0 0.0.3.0 245 ------- null} h -t 25.459 -s 1 -d 3 -p ack -e 40 -c 0 -i 496 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 25.4606 -s 28 -d 1 -p ack -e 40 -c 0 -i 497 -a 1 -x {1.1.3.0 0.0.3.0 246 ------- null} + -t 25.4606 -s 1 -d 3 -p ack -e 40 -c 0 -i 497 -a 1 -x {1.1.3.0 0.0.3.0 246 ------- null} - -t 25.4606 -s 1 -d 3 -p ack -e 40 -c 0 -i 497 -a 1 -x {1.1.3.0 0.0.3.0 246 ------- null} h -t 25.4606 -s 1 -d 3 -p ack -e 40 -c 0 -i 497 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 25.4622 -s 28 -d 1 -p ack -e 40 -c 0 -i 498 -a 1 -x {1.1.3.0 0.0.3.0 247 ------- null} + -t 25.4622 -s 1 -d 3 -p ack -e 40 -c 0 -i 498 -a 1 -x {1.1.3.0 0.0.3.0 247 ------- null} - -t 25.4622 -s 1 -d 3 -p ack -e 40 -c 0 -i 498 -a 1 -x {1.1.3.0 0.0.3.0 247 ------- null} h -t 25.4622 -s 1 -d 3 -p ack -e 40 -c 0 -i 498 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 25.4638 -s 28 -d 1 -p ack -e 40 -c 0 -i 499 -a 1 -x {1.1.3.0 0.0.3.0 248 ------- null} + -t 25.4638 -s 1 -d 3 -p ack -e 40 -c 0 -i 499 -a 1 -x {1.1.3.0 0.0.3.0 248 ------- null} - -t 25.4638 -s 1 -d 3 -p ack -e 40 -c 0 -i 499 -a 1 -x {1.1.3.0 0.0.3.0 248 ------- null} h -t 25.4638 -s 1 -d 3 -p ack -e 40 -c 0 -i 499 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 25.4654 -s 28 -d 1 -p ack -e 40 -c 0 -i 500 -a 1 -x {1.1.3.0 0.0.3.0 249 ------- null} + -t 25.4654 -s 1 -d 3 -p ack -e 40 -c 0 -i 500 -a 1 -x {1.1.3.0 0.0.3.0 249 ------- null} - -t 25.4654 -s 1 -d 3 -p ack -e 40 -c 0 -i 500 -a 1 -x {1.1.3.0 0.0.3.0 249 ------- null} h -t 25.4654 -s 1 -d 3 -p ack -e 40 -c 0 -i 500 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 25.467 -s 28 -d 1 -p ack -e 40 -c 0 -i 501 -a 1 -x {1.1.3.0 0.0.3.0 250 ------- null} + -t 25.467 -s 1 -d 3 -p ack -e 40 -c 0 -i 501 -a 1 -x {1.1.3.0 0.0.3.0 250 ------- null} - -t 25.467 -s 1 -d 3 -p ack -e 40 -c 0 -i 501 -a 1 -x {1.1.3.0 0.0.3.0 250 ------- null} h -t 25.467 -s 1 -d 3 -p ack -e 40 -c 0 -i 501 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 25.5767 -s 1 -d 3 -p ack -e 40 -c 0 -i 482 -a 1 -x {1.1.3.0 0.0.3.0 231 ------- null} + -t 25.5767 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 502 -a 0 -x {0.0.3.0 1.1.3.0 251 ------- null} - -t 25.5767 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 502 -a 0 -x {0.0.3.0 1.1.3.0 251 ------- null} h -t 25.5767 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 502 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 25.5783 -s 1 -d 3 -p ack -e 40 -c 0 -i 483 -a 1 -x {1.1.3.0 0.0.3.0 232 ------- null} + -t 25.5783 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {0.0.3.0 1.1.3.0 252 ------- null} - -t 25.5783 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {0.0.3.0 1.1.3.0 252 ------- null} h -t 25.5783 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 25.5799 -s 1 -d 3 -p ack -e 40 -c 0 -i 484 -a 1 -x {1.1.3.0 0.0.3.0 233 ------- null} + -t 25.5799 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 504 -a 0 -x {0.0.3.0 1.1.3.0 253 ------- null} - -t 25.5799 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 504 -a 0 -x {0.0.3.0 1.1.3.0 253 ------- null} h -t 25.5799 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 504 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 25.5815 -s 1 -d 3 -p ack -e 40 -c 0 -i 485 -a 1 -x {1.1.3.0 0.0.3.0 234 ------- null} + -t 25.5815 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {0.0.3.0 1.1.3.0 254 ------- null} - -t 25.5815 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {0.0.3.0 1.1.3.0 254 ------- null} h -t 25.5815 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 25.5831 -s 1 -d 3 -p ack -e 40 -c 0 -i 486 -a 1 -x {1.1.3.0 0.0.3.0 235 ------- null} + -t 25.5831 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 506 -a 0 -x {0.0.3.0 1.1.3.0 255 ------- null} - -t 25.5831 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 506 -a 0 -x {0.0.3.0 1.1.3.0 255 ------- null} h -t 25.5831 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 506 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 25.5847 -s 1 -d 3 -p ack -e 40 -c 0 -i 487 -a 1 -x {1.1.3.0 0.0.3.0 236 ------- null} + -t 25.5847 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {0.0.3.0 1.1.3.0 256 ------- null} - -t 25.5847 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {0.0.3.0 1.1.3.0 256 ------- null} h -t 25.5847 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 25.5863 -s 1 -d 3 -p ack -e 40 -c 0 -i 488 -a 1 -x {1.1.3.0 0.0.3.0 237 ------- null} + -t 25.5863 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 508 -a 0 -x {0.0.3.0 1.1.3.0 257 ------- null} - -t 25.5863 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 508 -a 0 -x {0.0.3.0 1.1.3.0 257 ------- null} h -t 25.5863 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 508 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 25.5879 -s 1 -d 3 -p ack -e 40 -c 0 -i 489 -a 1 -x {1.1.3.0 0.0.3.0 238 ------- null} + -t 25.5879 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {0.0.3.0 1.1.3.0 258 ------- null} - -t 25.5879 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {0.0.3.0 1.1.3.0 258 ------- null} h -t 25.5879 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 25.5895 -s 1 -d 3 -p ack -e 40 -c 0 -i 490 -a 1 -x {1.1.3.0 0.0.3.0 239 ------- null} + -t 25.5895 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 510 -a 0 -x {0.0.3.0 1.1.3.0 259 ------- null} - -t 25.5895 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 510 -a 0 -x {0.0.3.0 1.1.3.0 259 ------- null} h -t 25.5895 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 510 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 25.5911 -s 1 -d 3 -p ack -e 40 -c 0 -i 491 -a 1 -x {1.1.3.0 0.0.3.0 240 ------- null} + -t 25.5911 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {0.0.3.0 1.1.3.0 260 ------- null} - -t 25.5911 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {0.0.3.0 1.1.3.0 260 ------- null} h -t 25.5911 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 25.5927 -s 1 -d 3 -p ack -e 40 -c 0 -i 492 -a 1 -x {1.1.3.0 0.0.3.0 241 ------- null} + -t 25.5927 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 512 -a 0 -x {0.0.3.0 1.1.3.0 261 ------- null} - -t 25.5927 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 512 -a 0 -x {0.0.3.0 1.1.3.0 261 ------- null} h -t 25.5927 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 512 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 25.5943 -s 1 -d 3 -p ack -e 40 -c 0 -i 493 -a 1 -x {1.1.3.0 0.0.3.0 242 ------- null} + -t 25.5943 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {0.0.3.0 1.1.3.0 262 ------- null} - -t 25.5943 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {0.0.3.0 1.1.3.0 262 ------- null} h -t 25.5943 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 25.5959 -s 1 -d 3 -p ack -e 40 -c 0 -i 494 -a 1 -x {1.1.3.0 0.0.3.0 243 ------- null} + -t 25.5959 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 514 -a 0 -x {0.0.3.0 1.1.3.0 263 ------- null} - -t 25.5959 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 514 -a 0 -x {0.0.3.0 1.1.3.0 263 ------- null} h -t 25.5959 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 514 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 25.5975 -s 1 -d 3 -p ack -e 40 -c 0 -i 495 -a 1 -x {1.1.3.0 0.0.3.0 244 ------- null} + -t 25.5975 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {0.0.3.0 1.1.3.0 264 ------- null} - -t 25.5975 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {0.0.3.0 1.1.3.0 264 ------- null} h -t 25.5975 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 25.5991 -s 1 -d 3 -p ack -e 40 -c 0 -i 496 -a 1 -x {1.1.3.0 0.0.3.0 245 ------- null} + -t 25.5991 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 516 -a 0 -x {0.0.3.0 1.1.3.0 265 ------- null} - -t 25.5991 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 516 -a 0 -x {0.0.3.0 1.1.3.0 265 ------- null} h -t 25.5991 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 516 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 25.6007 -s 1 -d 3 -p ack -e 40 -c 0 -i 497 -a 1 -x {1.1.3.0 0.0.3.0 246 ------- null} + -t 25.6007 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {0.0.3.0 1.1.3.0 266 ------- null} - -t 25.6007 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {0.0.3.0 1.1.3.0 266 ------- null} h -t 25.6007 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 25.6023 -s 1 -d 3 -p ack -e 40 -c 0 -i 498 -a 1 -x {1.1.3.0 0.0.3.0 247 ------- null} + -t 25.6023 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 518 -a 0 -x {0.0.3.0 1.1.3.0 267 ------- null} - -t 25.6023 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 518 -a 0 -x {0.0.3.0 1.1.3.0 267 ------- null} h -t 25.6023 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 518 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 25.6039 -s 1 -d 3 -p ack -e 40 -c 0 -i 499 -a 1 -x {1.1.3.0 0.0.3.0 248 ------- null} + -t 25.6039 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {0.0.3.0 1.1.3.0 268 ------- null} - -t 25.6039 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {0.0.3.0 1.1.3.0 268 ------- null} h -t 25.6039 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 25.6055 -s 1 -d 3 -p ack -e 40 -c 0 -i 500 -a 1 -x {1.1.3.0 0.0.3.0 249 ------- null} + -t 25.6055 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 520 -a 0 -x {0.0.3.0 1.1.3.0 269 ------- null} - -t 25.6055 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 520 -a 0 -x {0.0.3.0 1.1.3.0 269 ------- null} h -t 25.6055 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 520 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 25.6071 -s 1 -d 3 -p ack -e 40 -c 0 -i 501 -a 1 -x {1.1.3.0 0.0.3.0 250 ------- null} + -t 25.6071 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {0.0.3.0 1.1.3.0 270 ------- null} - -t 25.6071 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {0.0.3.0 1.1.3.0 270 ------- null} h -t 25.6071 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 25.7383 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 502 -a 0 -x {0.0.3.0 1.1.3.0 251 ------- null} + -t 25.7383 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 502 -a 0 -x {0.0.3.0 1.1.3.0 251 ------- null} - -t 25.7383 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 502 -a 0 -x {0.0.3.0 1.1.3.0 251 ------- null} h -t 25.7383 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 502 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 25.7399 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {0.0.3.0 1.1.3.0 252 ------- null} + -t 25.7399 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {0.0.3.0 1.1.3.0 252 ------- null} - -t 25.7399 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {0.0.3.0 1.1.3.0 252 ------- null} h -t 25.7399 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 25.7415 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 504 -a 0 -x {0.0.3.0 1.1.3.0 253 ------- null} + -t 25.7415 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 504 -a 0 -x {0.0.3.0 1.1.3.0 253 ------- null} - -t 25.7415 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 504 -a 0 -x {0.0.3.0 1.1.3.0 253 ------- null} h -t 25.7415 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 504 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 25.7431 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {0.0.3.0 1.1.3.0 254 ------- null} + -t 25.7431 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {0.0.3.0 1.1.3.0 254 ------- null} - -t 25.7431 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {0.0.3.0 1.1.3.0 254 ------- null} h -t 25.7431 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 25.7447 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 506 -a 0 -x {0.0.3.0 1.1.3.0 255 ------- null} + -t 25.7447 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 506 -a 0 -x {0.0.3.0 1.1.3.0 255 ------- null} - -t 25.7447 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 506 -a 0 -x {0.0.3.0 1.1.3.0 255 ------- null} h -t 25.7447 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 506 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 25.7463 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {0.0.3.0 1.1.3.0 256 ------- null} + -t 25.7463 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {0.0.3.0 1.1.3.0 256 ------- null} - -t 25.7463 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {0.0.3.0 1.1.3.0 256 ------- null} h -t 25.7463 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 25.7479 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 508 -a 0 -x {0.0.3.0 1.1.3.0 257 ------- null} + -t 25.7479 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 508 -a 0 -x {0.0.3.0 1.1.3.0 257 ------- null} - -t 25.7479 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 508 -a 0 -x {0.0.3.0 1.1.3.0 257 ------- null} h -t 25.7479 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 508 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 25.7495 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {0.0.3.0 1.1.3.0 258 ------- null} + -t 25.7495 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {0.0.3.0 1.1.3.0 258 ------- null} - -t 25.7495 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {0.0.3.0 1.1.3.0 258 ------- null} h -t 25.7495 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 25.7511 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 510 -a 0 -x {0.0.3.0 1.1.3.0 259 ------- null} + -t 25.7511 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 510 -a 0 -x {0.0.3.0 1.1.3.0 259 ------- null} - -t 25.7511 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 510 -a 0 -x {0.0.3.0 1.1.3.0 259 ------- null} h -t 25.7511 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 510 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 25.7527 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {0.0.3.0 1.1.3.0 260 ------- null} + -t 25.7527 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {0.0.3.0 1.1.3.0 260 ------- null} - -t 25.7527 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {0.0.3.0 1.1.3.0 260 ------- null} h -t 25.7527 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 25.7543 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 512 -a 0 -x {0.0.3.0 1.1.3.0 261 ------- null} + -t 25.7543 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 512 -a 0 -x {0.0.3.0 1.1.3.0 261 ------- null} - -t 25.7543 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 512 -a 0 -x {0.0.3.0 1.1.3.0 261 ------- null} h -t 25.7543 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 512 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 25.7559 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {0.0.3.0 1.1.3.0 262 ------- null} + -t 25.7559 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {0.0.3.0 1.1.3.0 262 ------- null} - -t 25.7559 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {0.0.3.0 1.1.3.0 262 ------- null} h -t 25.7559 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 25.7575 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 514 -a 0 -x {0.0.3.0 1.1.3.0 263 ------- null} + -t 25.7575 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 514 -a 0 -x {0.0.3.0 1.1.3.0 263 ------- null} - -t 25.7575 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 514 -a 0 -x {0.0.3.0 1.1.3.0 263 ------- null} h -t 25.7575 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 514 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 25.7591 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {0.0.3.0 1.1.3.0 264 ------- null} + -t 25.7591 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {0.0.3.0 1.1.3.0 264 ------- null} - -t 25.7591 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {0.0.3.0 1.1.3.0 264 ------- null} h -t 25.7591 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 25.7607 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 516 -a 0 -x {0.0.3.0 1.1.3.0 265 ------- null} + -t 25.7607 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 516 -a 0 -x {0.0.3.0 1.1.3.0 265 ------- null} - -t 25.7607 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 516 -a 0 -x {0.0.3.0 1.1.3.0 265 ------- null} h -t 25.7607 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 516 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 25.7623 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {0.0.3.0 1.1.3.0 266 ------- null} + -t 25.7623 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {0.0.3.0 1.1.3.0 266 ------- null} - -t 25.7623 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {0.0.3.0 1.1.3.0 266 ------- null} h -t 25.7623 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 25.7639 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 518 -a 0 -x {0.0.3.0 1.1.3.0 267 ------- null} + -t 25.7639 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 518 -a 0 -x {0.0.3.0 1.1.3.0 267 ------- null} - -t 25.7639 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 518 -a 0 -x {0.0.3.0 1.1.3.0 267 ------- null} h -t 25.7639 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 518 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 25.7655 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {0.0.3.0 1.1.3.0 268 ------- null} + -t 25.7655 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {0.0.3.0 1.1.3.0 268 ------- null} - -t 25.7655 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {0.0.3.0 1.1.3.0 268 ------- null} h -t 25.7655 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 25.7671 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 520 -a 0 -x {0.0.3.0 1.1.3.0 269 ------- null} + -t 25.7671 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 520 -a 0 -x {0.0.3.0 1.1.3.0 269 ------- null} - -t 25.7671 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 520 -a 0 -x {0.0.3.0 1.1.3.0 269 ------- null} h -t 25.7671 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 520 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 25.7687 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {0.0.3.0 1.1.3.0 270 ------- null} + -t 25.7687 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {0.0.3.0 1.1.3.0 270 ------- null} - -t 25.7687 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {0.0.3.0 1.1.3.0 270 ------- null} h -t 25.7687 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.0399 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 502 -a 0 -x {0.0.3.0 1.1.3.0 251 ------- null} + -t 26.0399 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 502 -a 0 -x {0.0.3.0 1.1.3.0 251 ------- null} - -t 26.0399 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 502 -a 0 -x {0.0.3.0 1.1.3.0 251 ------- null} h -t 26.0399 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 502 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.0415 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {0.0.3.0 1.1.3.0 252 ------- null} + -t 26.0415 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {0.0.3.0 1.1.3.0 252 ------- null} - -t 26.0415 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {0.0.3.0 1.1.3.0 252 ------- null} h -t 26.0415 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.0431 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 504 -a 0 -x {0.0.3.0 1.1.3.0 253 ------- null} + -t 26.0431 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 504 -a 0 -x {0.0.3.0 1.1.3.0 253 ------- null} - -t 26.0431 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 504 -a 0 -x {0.0.3.0 1.1.3.0 253 ------- null} h -t 26.0431 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 504 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.0447 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {0.0.3.0 1.1.3.0 254 ------- null} + -t 26.0447 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {0.0.3.0 1.1.3.0 254 ------- null} - -t 26.0447 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {0.0.3.0 1.1.3.0 254 ------- null} h -t 26.0447 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.0463 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 506 -a 0 -x {0.0.3.0 1.1.3.0 255 ------- null} + -t 26.0463 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 506 -a 0 -x {0.0.3.0 1.1.3.0 255 ------- null} - -t 26.0463 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 506 -a 0 -x {0.0.3.0 1.1.3.0 255 ------- null} h -t 26.0463 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 506 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.0479 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {0.0.3.0 1.1.3.0 256 ------- null} + -t 26.0479 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {0.0.3.0 1.1.3.0 256 ------- null} - -t 26.0479 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {0.0.3.0 1.1.3.0 256 ------- null} h -t 26.0479 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.0495 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 508 -a 0 -x {0.0.3.0 1.1.3.0 257 ------- null} + -t 26.0495 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 508 -a 0 -x {0.0.3.0 1.1.3.0 257 ------- null} - -t 26.0495 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 508 -a 0 -x {0.0.3.0 1.1.3.0 257 ------- null} h -t 26.0495 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 508 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.0511 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {0.0.3.0 1.1.3.0 258 ------- null} + -t 26.0511 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {0.0.3.0 1.1.3.0 258 ------- null} - -t 26.0511 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {0.0.3.0 1.1.3.0 258 ------- null} h -t 26.0511 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.0527 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 510 -a 0 -x {0.0.3.0 1.1.3.0 259 ------- null} + -t 26.0527 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 510 -a 0 -x {0.0.3.0 1.1.3.0 259 ------- null} - -t 26.0527 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 510 -a 0 -x {0.0.3.0 1.1.3.0 259 ------- null} h -t 26.0527 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 510 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.0543 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {0.0.3.0 1.1.3.0 260 ------- null} + -t 26.0543 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {0.0.3.0 1.1.3.0 260 ------- null} - -t 26.0543 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {0.0.3.0 1.1.3.0 260 ------- null} h -t 26.0543 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.0559 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 512 -a 0 -x {0.0.3.0 1.1.3.0 261 ------- null} + -t 26.0559 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 512 -a 0 -x {0.0.3.0 1.1.3.0 261 ------- null} - -t 26.0559 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 512 -a 0 -x {0.0.3.0 1.1.3.0 261 ------- null} h -t 26.0559 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 512 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.0575 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {0.0.3.0 1.1.3.0 262 ------- null} + -t 26.0575 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {0.0.3.0 1.1.3.0 262 ------- null} - -t 26.0575 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {0.0.3.0 1.1.3.0 262 ------- null} h -t 26.0575 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.0591 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 514 -a 0 -x {0.0.3.0 1.1.3.0 263 ------- null} + -t 26.0591 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 514 -a 0 -x {0.0.3.0 1.1.3.0 263 ------- null} - -t 26.0591 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 514 -a 0 -x {0.0.3.0 1.1.3.0 263 ------- null} h -t 26.0591 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 514 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.0607 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {0.0.3.0 1.1.3.0 264 ------- null} + -t 26.0607 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {0.0.3.0 1.1.3.0 264 ------- null} - -t 26.0607 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {0.0.3.0 1.1.3.0 264 ------- null} h -t 26.0607 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.0623 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 516 -a 0 -x {0.0.3.0 1.1.3.0 265 ------- null} + -t 26.0623 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 516 -a 0 -x {0.0.3.0 1.1.3.0 265 ------- null} - -t 26.0623 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 516 -a 0 -x {0.0.3.0 1.1.3.0 265 ------- null} h -t 26.0623 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 516 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.0639 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {0.0.3.0 1.1.3.0 266 ------- null} + -t 26.0639 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {0.0.3.0 1.1.3.0 266 ------- null} - -t 26.0639 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {0.0.3.0 1.1.3.0 266 ------- null} h -t 26.0639 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.0655 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 518 -a 0 -x {0.0.3.0 1.1.3.0 267 ------- null} + -t 26.0655 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 518 -a 0 -x {0.0.3.0 1.1.3.0 267 ------- null} - -t 26.0655 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 518 -a 0 -x {0.0.3.0 1.1.3.0 267 ------- null} h -t 26.0655 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 518 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.0671 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {0.0.3.0 1.1.3.0 268 ------- null} + -t 26.0671 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {0.0.3.0 1.1.3.0 268 ------- null} - -t 26.0671 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {0.0.3.0 1.1.3.0 268 ------- null} h -t 26.0671 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.0687 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 520 -a 0 -x {0.0.3.0 1.1.3.0 269 ------- null} + -t 26.0687 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 520 -a 0 -x {0.0.3.0 1.1.3.0 269 ------- null} - -t 26.0687 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 520 -a 0 -x {0.0.3.0 1.1.3.0 269 ------- null} h -t 26.0687 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 520 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.0703 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {0.0.3.0 1.1.3.0 270 ------- null} + -t 26.0703 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {0.0.3.0 1.1.3.0 270 ------- null} - -t 26.0703 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {0.0.3.0 1.1.3.0 270 ------- null} h -t 26.0703 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.1415 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 502 -a 0 -x {0.0.3.0 1.1.3.0 251 ------- null} + -t 26.1415 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 502 -a 0 -x {0.0.3.0 1.1.3.0 251 ------- null} - -t 26.1415 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 502 -a 0 -x {0.0.3.0 1.1.3.0 251 ------- null} h -t 26.1415 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 502 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.1431 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {0.0.3.0 1.1.3.0 252 ------- null} + -t 26.1431 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {0.0.3.0 1.1.3.0 252 ------- null} - -t 26.1431 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {0.0.3.0 1.1.3.0 252 ------- null} h -t 26.1431 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.1447 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 504 -a 0 -x {0.0.3.0 1.1.3.0 253 ------- null} + -t 26.1447 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 504 -a 0 -x {0.0.3.0 1.1.3.0 253 ------- null} - -t 26.1447 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 504 -a 0 -x {0.0.3.0 1.1.3.0 253 ------- null} h -t 26.1447 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 504 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.1463 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {0.0.3.0 1.1.3.0 254 ------- null} + -t 26.1463 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {0.0.3.0 1.1.3.0 254 ------- null} - -t 26.1463 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {0.0.3.0 1.1.3.0 254 ------- null} h -t 26.1463 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.1479 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 506 -a 0 -x {0.0.3.0 1.1.3.0 255 ------- null} + -t 26.1479 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 506 -a 0 -x {0.0.3.0 1.1.3.0 255 ------- null} - -t 26.1479 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 506 -a 0 -x {0.0.3.0 1.1.3.0 255 ------- null} h -t 26.1479 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 506 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.1495 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {0.0.3.0 1.1.3.0 256 ------- null} + -t 26.1495 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {0.0.3.0 1.1.3.0 256 ------- null} - -t 26.1495 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {0.0.3.0 1.1.3.0 256 ------- null} h -t 26.1495 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.1511 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 508 -a 0 -x {0.0.3.0 1.1.3.0 257 ------- null} + -t 26.1511 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 508 -a 0 -x {0.0.3.0 1.1.3.0 257 ------- null} - -t 26.1511 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 508 -a 0 -x {0.0.3.0 1.1.3.0 257 ------- null} h -t 26.1511 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 508 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.1527 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {0.0.3.0 1.1.3.0 258 ------- null} + -t 26.1527 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {0.0.3.0 1.1.3.0 258 ------- null} - -t 26.1527 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {0.0.3.0 1.1.3.0 258 ------- null} h -t 26.1527 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.1543 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 510 -a 0 -x {0.0.3.0 1.1.3.0 259 ------- null} + -t 26.1543 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 510 -a 0 -x {0.0.3.0 1.1.3.0 259 ------- null} - -t 26.1543 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 510 -a 0 -x {0.0.3.0 1.1.3.0 259 ------- null} h -t 26.1543 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 510 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.1559 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {0.0.3.0 1.1.3.0 260 ------- null} + -t 26.1559 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {0.0.3.0 1.1.3.0 260 ------- null} - -t 26.1559 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {0.0.3.0 1.1.3.0 260 ------- null} h -t 26.1559 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.1575 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 512 -a 0 -x {0.0.3.0 1.1.3.0 261 ------- null} + -t 26.1575 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 512 -a 0 -x {0.0.3.0 1.1.3.0 261 ------- null} - -t 26.1575 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 512 -a 0 -x {0.0.3.0 1.1.3.0 261 ------- null} h -t 26.1575 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 512 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.1591 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {0.0.3.0 1.1.3.0 262 ------- null} + -t 26.1591 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {0.0.3.0 1.1.3.0 262 ------- null} - -t 26.1591 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {0.0.3.0 1.1.3.0 262 ------- null} h -t 26.1591 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.1607 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 514 -a 0 -x {0.0.3.0 1.1.3.0 263 ------- null} + -t 26.1607 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 514 -a 0 -x {0.0.3.0 1.1.3.0 263 ------- null} - -t 26.1607 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 514 -a 0 -x {0.0.3.0 1.1.3.0 263 ------- null} h -t 26.1607 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 514 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.1623 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {0.0.3.0 1.1.3.0 264 ------- null} + -t 26.1623 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {0.0.3.0 1.1.3.0 264 ------- null} - -t 26.1623 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {0.0.3.0 1.1.3.0 264 ------- null} h -t 26.1623 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.1639 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 516 -a 0 -x {0.0.3.0 1.1.3.0 265 ------- null} + -t 26.1639 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 516 -a 0 -x {0.0.3.0 1.1.3.0 265 ------- null} - -t 26.1639 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 516 -a 0 -x {0.0.3.0 1.1.3.0 265 ------- null} h -t 26.1639 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 516 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.1655 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {0.0.3.0 1.1.3.0 266 ------- null} + -t 26.1655 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {0.0.3.0 1.1.3.0 266 ------- null} - -t 26.1655 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {0.0.3.0 1.1.3.0 266 ------- null} h -t 26.1655 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.1671 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 518 -a 0 -x {0.0.3.0 1.1.3.0 267 ------- null} + -t 26.1671 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 518 -a 0 -x {0.0.3.0 1.1.3.0 267 ------- null} - -t 26.1671 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 518 -a 0 -x {0.0.3.0 1.1.3.0 267 ------- null} h -t 26.1671 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 518 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.1687 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {0.0.3.0 1.1.3.0 268 ------- null} + -t 26.1687 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {0.0.3.0 1.1.3.0 268 ------- null} - -t 26.1687 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {0.0.3.0 1.1.3.0 268 ------- null} h -t 26.1687 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.1703 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 520 -a 0 -x {0.0.3.0 1.1.3.0 269 ------- null} + -t 26.1703 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 520 -a 0 -x {0.0.3.0 1.1.3.0 269 ------- null} - -t 26.1703 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 520 -a 0 -x {0.0.3.0 1.1.3.0 269 ------- null} h -t 26.1703 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 520 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.1719 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {0.0.3.0 1.1.3.0 270 ------- null} + -t 26.1719 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {0.0.3.0 1.1.3.0 270 ------- null} - -t 26.1719 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {0.0.3.0 1.1.3.0 270 ------- null} h -t 26.1719 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.2231 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 502 -a 0 -x {0.0.3.0 1.1.3.0 251 ------- null} + -t 26.2231 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 502 -a 0 -x {0.0.3.0 1.1.3.0 251 ------- null} - -t 26.2231 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 502 -a 0 -x {0.0.3.0 1.1.3.0 251 ------- null} h -t 26.2231 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 502 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.2247 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {0.0.3.0 1.1.3.0 252 ------- null} + -t 26.2247 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {0.0.3.0 1.1.3.0 252 ------- null} - -t 26.2247 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {0.0.3.0 1.1.3.0 252 ------- null} h -t 26.2247 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.2263 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 504 -a 0 -x {0.0.3.0 1.1.3.0 253 ------- null} + -t 26.2263 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 504 -a 0 -x {0.0.3.0 1.1.3.0 253 ------- null} - -t 26.2263 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 504 -a 0 -x {0.0.3.0 1.1.3.0 253 ------- null} h -t 26.2263 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 504 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.2279 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {0.0.3.0 1.1.3.0 254 ------- null} + -t 26.2279 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {0.0.3.0 1.1.3.0 254 ------- null} - -t 26.2279 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {0.0.3.0 1.1.3.0 254 ------- null} h -t 26.2279 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.2295 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 506 -a 0 -x {0.0.3.0 1.1.3.0 255 ------- null} + -t 26.2295 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 506 -a 0 -x {0.0.3.0 1.1.3.0 255 ------- null} - -t 26.2295 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 506 -a 0 -x {0.0.3.0 1.1.3.0 255 ------- null} h -t 26.2295 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 506 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.2311 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {0.0.3.0 1.1.3.0 256 ------- null} + -t 26.2311 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {0.0.3.0 1.1.3.0 256 ------- null} - -t 26.2311 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {0.0.3.0 1.1.3.0 256 ------- null} h -t 26.2311 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.2327 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 508 -a 0 -x {0.0.3.0 1.1.3.0 257 ------- null} + -t 26.2327 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 508 -a 0 -x {0.0.3.0 1.1.3.0 257 ------- null} - -t 26.2327 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 508 -a 0 -x {0.0.3.0 1.1.3.0 257 ------- null} h -t 26.2327 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 508 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.2343 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {0.0.3.0 1.1.3.0 258 ------- null} + -t 26.2343 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {0.0.3.0 1.1.3.0 258 ------- null} - -t 26.2343 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {0.0.3.0 1.1.3.0 258 ------- null} h -t 26.2343 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.2359 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 510 -a 0 -x {0.0.3.0 1.1.3.0 259 ------- null} + -t 26.2359 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 510 -a 0 -x {0.0.3.0 1.1.3.0 259 ------- null} - -t 26.2359 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 510 -a 0 -x {0.0.3.0 1.1.3.0 259 ------- null} h -t 26.2359 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 510 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.2375 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {0.0.3.0 1.1.3.0 260 ------- null} + -t 26.2375 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {0.0.3.0 1.1.3.0 260 ------- null} - -t 26.2375 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {0.0.3.0 1.1.3.0 260 ------- null} h -t 26.2375 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.2391 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 512 -a 0 -x {0.0.3.0 1.1.3.0 261 ------- null} + -t 26.2391 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 512 -a 0 -x {0.0.3.0 1.1.3.0 261 ------- null} - -t 26.2391 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 512 -a 0 -x {0.0.3.0 1.1.3.0 261 ------- null} h -t 26.2391 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 512 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.2407 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {0.0.3.0 1.1.3.0 262 ------- null} + -t 26.2407 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {0.0.3.0 1.1.3.0 262 ------- null} - -t 26.2407 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {0.0.3.0 1.1.3.0 262 ------- null} h -t 26.2407 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.2423 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 514 -a 0 -x {0.0.3.0 1.1.3.0 263 ------- null} + -t 26.2423 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 514 -a 0 -x {0.0.3.0 1.1.3.0 263 ------- null} - -t 26.2423 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 514 -a 0 -x {0.0.3.0 1.1.3.0 263 ------- null} h -t 26.2423 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 514 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.2439 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {0.0.3.0 1.1.3.0 264 ------- null} + -t 26.2439 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {0.0.3.0 1.1.3.0 264 ------- null} - -t 26.2439 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {0.0.3.0 1.1.3.0 264 ------- null} h -t 26.2439 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.2455 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 516 -a 0 -x {0.0.3.0 1.1.3.0 265 ------- null} + -t 26.2455 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 516 -a 0 -x {0.0.3.0 1.1.3.0 265 ------- null} - -t 26.2455 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 516 -a 0 -x {0.0.3.0 1.1.3.0 265 ------- null} h -t 26.2455 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 516 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.2471 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {0.0.3.0 1.1.3.0 266 ------- null} + -t 26.2471 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {0.0.3.0 1.1.3.0 266 ------- null} - -t 26.2471 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {0.0.3.0 1.1.3.0 266 ------- null} h -t 26.2471 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.2487 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 518 -a 0 -x {0.0.3.0 1.1.3.0 267 ------- null} + -t 26.2487 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 518 -a 0 -x {0.0.3.0 1.1.3.0 267 ------- null} - -t 26.2487 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 518 -a 0 -x {0.0.3.0 1.1.3.0 267 ------- null} h -t 26.2487 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 518 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.2503 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {0.0.3.0 1.1.3.0 268 ------- null} + -t 26.2503 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {0.0.3.0 1.1.3.0 268 ------- null} - -t 26.2503 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {0.0.3.0 1.1.3.0 268 ------- null} h -t 26.2503 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.2519 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 520 -a 0 -x {0.0.3.0 1.1.3.0 269 ------- null} + -t 26.2519 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 520 -a 0 -x {0.0.3.0 1.1.3.0 269 ------- null} - -t 26.2519 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 520 -a 0 -x {0.0.3.0 1.1.3.0 269 ------- null} h -t 26.2519 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 520 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.2535 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {0.0.3.0 1.1.3.0 270 ------- null} + -t 26.2535 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {0.0.3.0 1.1.3.0 270 ------- null} - -t 26.2535 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {0.0.3.0 1.1.3.0 270 ------- null} h -t 26.2535 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.3047 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 502 -a 0 -x {0.0.3.0 1.1.3.0 251 ------- null} + -t 26.3047 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 502 -a 0 -x {0.0.3.0 1.1.3.0 251 ------- null} - -t 26.3047 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 502 -a 0 -x {0.0.3.0 1.1.3.0 251 ------- null} h -t 26.3047 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 502 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.3063 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {0.0.3.0 1.1.3.0 252 ------- null} + -t 26.3063 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {0.0.3.0 1.1.3.0 252 ------- null} - -t 26.3063 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {0.0.3.0 1.1.3.0 252 ------- null} h -t 26.3063 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.3079 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 504 -a 0 -x {0.0.3.0 1.1.3.0 253 ------- null} + -t 26.3079 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 504 -a 0 -x {0.0.3.0 1.1.3.0 253 ------- null} - -t 26.3079 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 504 -a 0 -x {0.0.3.0 1.1.3.0 253 ------- null} h -t 26.3079 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 504 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.3095 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {0.0.3.0 1.1.3.0 254 ------- null} + -t 26.3095 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {0.0.3.0 1.1.3.0 254 ------- null} - -t 26.3095 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {0.0.3.0 1.1.3.0 254 ------- null} h -t 26.3095 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.3111 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 506 -a 0 -x {0.0.3.0 1.1.3.0 255 ------- null} + -t 26.3111 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 506 -a 0 -x {0.0.3.0 1.1.3.0 255 ------- null} - -t 26.3111 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 506 -a 0 -x {0.0.3.0 1.1.3.0 255 ------- null} h -t 26.3111 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 506 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.3127 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {0.0.3.0 1.1.3.0 256 ------- null} + -t 26.3127 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {0.0.3.0 1.1.3.0 256 ------- null} - -t 26.3127 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {0.0.3.0 1.1.3.0 256 ------- null} h -t 26.3127 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.3143 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 508 -a 0 -x {0.0.3.0 1.1.3.0 257 ------- null} + -t 26.3143 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 508 -a 0 -x {0.0.3.0 1.1.3.0 257 ------- null} - -t 26.3143 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 508 -a 0 -x {0.0.3.0 1.1.3.0 257 ------- null} h -t 26.3143 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 508 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.3159 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {0.0.3.0 1.1.3.0 258 ------- null} + -t 26.3159 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {0.0.3.0 1.1.3.0 258 ------- null} - -t 26.3159 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {0.0.3.0 1.1.3.0 258 ------- null} h -t 26.3159 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.3175 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 510 -a 0 -x {0.0.3.0 1.1.3.0 259 ------- null} + -t 26.3175 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 510 -a 0 -x {0.0.3.0 1.1.3.0 259 ------- null} - -t 26.3175 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 510 -a 0 -x {0.0.3.0 1.1.3.0 259 ------- null} h -t 26.3175 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 510 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.3191 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {0.0.3.0 1.1.3.0 260 ------- null} + -t 26.3191 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {0.0.3.0 1.1.3.0 260 ------- null} - -t 26.3191 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {0.0.3.0 1.1.3.0 260 ------- null} h -t 26.3191 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.3207 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 512 -a 0 -x {0.0.3.0 1.1.3.0 261 ------- null} + -t 26.3207 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 512 -a 0 -x {0.0.3.0 1.1.3.0 261 ------- null} - -t 26.3207 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 512 -a 0 -x {0.0.3.0 1.1.3.0 261 ------- null} h -t 26.3207 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 512 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.3223 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {0.0.3.0 1.1.3.0 262 ------- null} + -t 26.3223 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {0.0.3.0 1.1.3.0 262 ------- null} - -t 26.3223 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {0.0.3.0 1.1.3.0 262 ------- null} h -t 26.3223 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.3239 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 514 -a 0 -x {0.0.3.0 1.1.3.0 263 ------- null} + -t 26.3239 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 514 -a 0 -x {0.0.3.0 1.1.3.0 263 ------- null} - -t 26.3239 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 514 -a 0 -x {0.0.3.0 1.1.3.0 263 ------- null} h -t 26.3239 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 514 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.3255 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {0.0.3.0 1.1.3.0 264 ------- null} + -t 26.3255 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {0.0.3.0 1.1.3.0 264 ------- null} - -t 26.3255 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {0.0.3.0 1.1.3.0 264 ------- null} h -t 26.3255 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.3271 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 516 -a 0 -x {0.0.3.0 1.1.3.0 265 ------- null} + -t 26.3271 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 516 -a 0 -x {0.0.3.0 1.1.3.0 265 ------- null} - -t 26.3271 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 516 -a 0 -x {0.0.3.0 1.1.3.0 265 ------- null} h -t 26.3271 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 516 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.3287 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {0.0.3.0 1.1.3.0 266 ------- null} + -t 26.3287 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {0.0.3.0 1.1.3.0 266 ------- null} - -t 26.3287 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {0.0.3.0 1.1.3.0 266 ------- null} h -t 26.3287 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.3303 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 518 -a 0 -x {0.0.3.0 1.1.3.0 267 ------- null} + -t 26.3303 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 518 -a 0 -x {0.0.3.0 1.1.3.0 267 ------- null} - -t 26.3303 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 518 -a 0 -x {0.0.3.0 1.1.3.0 267 ------- null} h -t 26.3303 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 518 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.3319 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {0.0.3.0 1.1.3.0 268 ------- null} + -t 26.3319 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {0.0.3.0 1.1.3.0 268 ------- null} - -t 26.3319 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {0.0.3.0 1.1.3.0 268 ------- null} h -t 26.3319 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.3335 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 520 -a 0 -x {0.0.3.0 1.1.3.0 269 ------- null} + -t 26.3335 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 520 -a 0 -x {0.0.3.0 1.1.3.0 269 ------- null} - -t 26.3335 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 520 -a 0 -x {0.0.3.0 1.1.3.0 269 ------- null} h -t 26.3335 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 520 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.3351 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {0.0.3.0 1.1.3.0 270 ------- null} + -t 26.3351 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {0.0.3.0 1.1.3.0 270 ------- null} - -t 26.3351 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {0.0.3.0 1.1.3.0 270 ------- null} h -t 26.3351 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 26.3663 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 502 -a 0 -x {0.0.3.0 1.1.3.0 251 ------- null} + -t 26.3663 -s 21 -d 28 -p ack -e 40 -c 0 -i 522 -a 1 -x {1.1.3.0 0.0.3.0 251 ------- null} - -t 26.3663 -s 21 -d 28 -p ack -e 40 -c 0 -i 522 -a 1 -x {1.1.3.0 0.0.3.0 251 ------- null} h -t 26.3663 -s 21 -d 28 -p ack -e 40 -c 0 -i 522 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 26.3679 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {0.0.3.0 1.1.3.0 252 ------- null} + -t 26.3679 -s 21 -d 28 -p ack -e 40 -c 0 -i 523 -a 1 -x {1.1.3.0 0.0.3.0 252 ------- null} - -t 26.3679 -s 21 -d 28 -p ack -e 40 -c 0 -i 523 -a 1 -x {1.1.3.0 0.0.3.0 252 ------- null} h -t 26.3679 -s 21 -d 28 -p ack -e 40 -c 0 -i 523 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 26.3695 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 504 -a 0 -x {0.0.3.0 1.1.3.0 253 ------- null} + -t 26.3695 -s 21 -d 28 -p ack -e 40 -c 0 -i 524 -a 1 -x {1.1.3.0 0.0.3.0 253 ------- null} - -t 26.3695 -s 21 -d 28 -p ack -e 40 -c 0 -i 524 -a 1 -x {1.1.3.0 0.0.3.0 253 ------- null} h -t 26.3695 -s 21 -d 28 -p ack -e 40 -c 0 -i 524 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 26.3711 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {0.0.3.0 1.1.3.0 254 ------- null} + -t 26.3711 -s 21 -d 28 -p ack -e 40 -c 0 -i 525 -a 1 -x {1.1.3.0 0.0.3.0 254 ------- null} - -t 26.3711 -s 21 -d 28 -p ack -e 40 -c 0 -i 525 -a 1 -x {1.1.3.0 0.0.3.0 254 ------- null} h -t 26.3711 -s 21 -d 28 -p ack -e 40 -c 0 -i 525 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 26.3727 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 506 -a 0 -x {0.0.3.0 1.1.3.0 255 ------- null} + -t 26.3727 -s 21 -d 28 -p ack -e 40 -c 0 -i 526 -a 1 -x {1.1.3.0 0.0.3.0 255 ------- null} - -t 26.3727 -s 21 -d 28 -p ack -e 40 -c 0 -i 526 -a 1 -x {1.1.3.0 0.0.3.0 255 ------- null} h -t 26.3727 -s 21 -d 28 -p ack -e 40 -c 0 -i 526 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 26.3743 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {0.0.3.0 1.1.3.0 256 ------- null} + -t 26.3743 -s 21 -d 28 -p ack -e 40 -c 0 -i 527 -a 1 -x {1.1.3.0 0.0.3.0 256 ------- null} - -t 26.3743 -s 21 -d 28 -p ack -e 40 -c 0 -i 527 -a 1 -x {1.1.3.0 0.0.3.0 256 ------- null} h -t 26.3743 -s 21 -d 28 -p ack -e 40 -c 0 -i 527 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 26.3759 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 508 -a 0 -x {0.0.3.0 1.1.3.0 257 ------- null} + -t 26.3759 -s 21 -d 28 -p ack -e 40 -c 0 -i 528 -a 1 -x {1.1.3.0 0.0.3.0 257 ------- null} - -t 26.3759 -s 21 -d 28 -p ack -e 40 -c 0 -i 528 -a 1 -x {1.1.3.0 0.0.3.0 257 ------- null} h -t 26.3759 -s 21 -d 28 -p ack -e 40 -c 0 -i 528 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 26.3775 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {0.0.3.0 1.1.3.0 258 ------- null} + -t 26.3775 -s 21 -d 28 -p ack -e 40 -c 0 -i 529 -a 1 -x {1.1.3.0 0.0.3.0 258 ------- null} - -t 26.3775 -s 21 -d 28 -p ack -e 40 -c 0 -i 529 -a 1 -x {1.1.3.0 0.0.3.0 258 ------- null} h -t 26.3775 -s 21 -d 28 -p ack -e 40 -c 0 -i 529 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 26.3791 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 510 -a 0 -x {0.0.3.0 1.1.3.0 259 ------- null} + -t 26.3791 -s 21 -d 28 -p ack -e 40 -c 0 -i 530 -a 1 -x {1.1.3.0 0.0.3.0 259 ------- null} - -t 26.3791 -s 21 -d 28 -p ack -e 40 -c 0 -i 530 -a 1 -x {1.1.3.0 0.0.3.0 259 ------- null} h -t 26.3791 -s 21 -d 28 -p ack -e 40 -c 0 -i 530 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 26.3807 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {0.0.3.0 1.1.3.0 260 ------- null} + -t 26.3807 -s 21 -d 28 -p ack -e 40 -c 0 -i 531 -a 1 -x {1.1.3.0 0.0.3.0 260 ------- null} - -t 26.3807 -s 21 -d 28 -p ack -e 40 -c 0 -i 531 -a 1 -x {1.1.3.0 0.0.3.0 260 ------- null} h -t 26.3807 -s 21 -d 28 -p ack -e 40 -c 0 -i 531 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 26.3823 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 512 -a 0 -x {0.0.3.0 1.1.3.0 261 ------- null} + -t 26.3823 -s 21 -d 28 -p ack -e 40 -c 0 -i 532 -a 1 -x {1.1.3.0 0.0.3.0 261 ------- null} - -t 26.3823 -s 21 -d 28 -p ack -e 40 -c 0 -i 532 -a 1 -x {1.1.3.0 0.0.3.0 261 ------- null} h -t 26.3823 -s 21 -d 28 -p ack -e 40 -c 0 -i 532 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 26.3839 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {0.0.3.0 1.1.3.0 262 ------- null} + -t 26.3839 -s 21 -d 28 -p ack -e 40 -c 0 -i 533 -a 1 -x {1.1.3.0 0.0.3.0 262 ------- null} - -t 26.3839 -s 21 -d 28 -p ack -e 40 -c 0 -i 533 -a 1 -x {1.1.3.0 0.0.3.0 262 ------- null} h -t 26.3839 -s 21 -d 28 -p ack -e 40 -c 0 -i 533 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 26.3855 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 514 -a 0 -x {0.0.3.0 1.1.3.0 263 ------- null} + -t 26.3855 -s 21 -d 28 -p ack -e 40 -c 0 -i 534 -a 1 -x {1.1.3.0 0.0.3.0 263 ------- null} - -t 26.3855 -s 21 -d 28 -p ack -e 40 -c 0 -i 534 -a 1 -x {1.1.3.0 0.0.3.0 263 ------- null} h -t 26.3855 -s 21 -d 28 -p ack -e 40 -c 0 -i 534 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 26.3871 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {0.0.3.0 1.1.3.0 264 ------- null} + -t 26.3871 -s 21 -d 28 -p ack -e 40 -c 0 -i 535 -a 1 -x {1.1.3.0 0.0.3.0 264 ------- null} - -t 26.3871 -s 21 -d 28 -p ack -e 40 -c 0 -i 535 -a 1 -x {1.1.3.0 0.0.3.0 264 ------- null} h -t 26.3871 -s 21 -d 28 -p ack -e 40 -c 0 -i 535 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 26.3887 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 516 -a 0 -x {0.0.3.0 1.1.3.0 265 ------- null} + -t 26.3887 -s 21 -d 28 -p ack -e 40 -c 0 -i 536 -a 1 -x {1.1.3.0 0.0.3.0 265 ------- null} - -t 26.3887 -s 21 -d 28 -p ack -e 40 -c 0 -i 536 -a 1 -x {1.1.3.0 0.0.3.0 265 ------- null} h -t 26.3887 -s 21 -d 28 -p ack -e 40 -c 0 -i 536 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 26.3903 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {0.0.3.0 1.1.3.0 266 ------- null} + -t 26.3903 -s 21 -d 28 -p ack -e 40 -c 0 -i 537 -a 1 -x {1.1.3.0 0.0.3.0 266 ------- null} - -t 26.3903 -s 21 -d 28 -p ack -e 40 -c 0 -i 537 -a 1 -x {1.1.3.0 0.0.3.0 266 ------- null} h -t 26.3903 -s 21 -d 28 -p ack -e 40 -c 0 -i 537 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 26.3919 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 518 -a 0 -x {0.0.3.0 1.1.3.0 267 ------- null} + -t 26.3919 -s 21 -d 28 -p ack -e 40 -c 0 -i 538 -a 1 -x {1.1.3.0 0.0.3.0 267 ------- null} - -t 26.3919 -s 21 -d 28 -p ack -e 40 -c 0 -i 538 -a 1 -x {1.1.3.0 0.0.3.0 267 ------- null} h -t 26.3919 -s 21 -d 28 -p ack -e 40 -c 0 -i 538 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 26.3935 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {0.0.3.0 1.1.3.0 268 ------- null} + -t 26.3935 -s 21 -d 28 -p ack -e 40 -c 0 -i 539 -a 1 -x {1.1.3.0 0.0.3.0 268 ------- null} - -t 26.3935 -s 21 -d 28 -p ack -e 40 -c 0 -i 539 -a 1 -x {1.1.3.0 0.0.3.0 268 ------- null} h -t 26.3935 -s 21 -d 28 -p ack -e 40 -c 0 -i 539 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 26.3951 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 520 -a 0 -x {0.0.3.0 1.1.3.0 269 ------- null} + -t 26.3951 -s 21 -d 28 -p ack -e 40 -c 0 -i 540 -a 1 -x {1.1.3.0 0.0.3.0 269 ------- null} - -t 26.3951 -s 21 -d 28 -p ack -e 40 -c 0 -i 540 -a 1 -x {1.1.3.0 0.0.3.0 269 ------- null} h -t 26.3951 -s 21 -d 28 -p ack -e 40 -c 0 -i 540 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 26.3967 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {0.0.3.0 1.1.3.0 270 ------- null} + -t 26.3967 -s 21 -d 28 -p ack -e 40 -c 0 -i 541 -a 1 -x {1.1.3.0 0.0.3.0 270 ------- null} - -t 26.3967 -s 21 -d 28 -p ack -e 40 -c 0 -i 541 -a 1 -x {1.1.3.0 0.0.3.0 270 ------- null} h -t 26.3967 -s 21 -d 28 -p ack -e 40 -c 0 -i 541 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 26.7163 -s 21 -d 28 -p ack -e 40 -c 0 -i 522 -a 1 -x {1.1.3.0 0.0.3.0 251 ------- null} + -t 26.7163 -s 28 -d 1 -p ack -e 40 -c 0 -i 522 -a 1 -x {1.1.3.0 0.0.3.0 251 ------- null} - -t 26.7163 -s 28 -d 1 -p ack -e 40 -c 0 -i 522 -a 1 -x {1.1.3.0 0.0.3.0 251 ------- null} h -t 26.7163 -s 28 -d 1 -p ack -e 40 -c 0 -i 522 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 26.7179 -s 21 -d 28 -p ack -e 40 -c 0 -i 523 -a 1 -x {1.1.3.0 0.0.3.0 252 ------- null} + -t 26.7179 -s 28 -d 1 -p ack -e 40 -c 0 -i 523 -a 1 -x {1.1.3.0 0.0.3.0 252 ------- null} - -t 26.7179 -s 28 -d 1 -p ack -e 40 -c 0 -i 523 -a 1 -x {1.1.3.0 0.0.3.0 252 ------- null} h -t 26.7179 -s 28 -d 1 -p ack -e 40 -c 0 -i 523 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 26.7195 -s 21 -d 28 -p ack -e 40 -c 0 -i 524 -a 1 -x {1.1.3.0 0.0.3.0 253 ------- null} + -t 26.7195 -s 28 -d 1 -p ack -e 40 -c 0 -i 524 -a 1 -x {1.1.3.0 0.0.3.0 253 ------- null} - -t 26.7195 -s 28 -d 1 -p ack -e 40 -c 0 -i 524 -a 1 -x {1.1.3.0 0.0.3.0 253 ------- null} h -t 26.7195 -s 28 -d 1 -p ack -e 40 -c 0 -i 524 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 26.7211 -s 21 -d 28 -p ack -e 40 -c 0 -i 525 -a 1 -x {1.1.3.0 0.0.3.0 254 ------- null} + -t 26.7211 -s 28 -d 1 -p ack -e 40 -c 0 -i 525 -a 1 -x {1.1.3.0 0.0.3.0 254 ------- null} - -t 26.7211 -s 28 -d 1 -p ack -e 40 -c 0 -i 525 -a 1 -x {1.1.3.0 0.0.3.0 254 ------- null} h -t 26.7211 -s 28 -d 1 -p ack -e 40 -c 0 -i 525 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 26.7227 -s 21 -d 28 -p ack -e 40 -c 0 -i 526 -a 1 -x {1.1.3.0 0.0.3.0 255 ------- null} + -t 26.7227 -s 28 -d 1 -p ack -e 40 -c 0 -i 526 -a 1 -x {1.1.3.0 0.0.3.0 255 ------- null} - -t 26.7227 -s 28 -d 1 -p ack -e 40 -c 0 -i 526 -a 1 -x {1.1.3.0 0.0.3.0 255 ------- null} h -t 26.7227 -s 28 -d 1 -p ack -e 40 -c 0 -i 526 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 26.7243 -s 21 -d 28 -p ack -e 40 -c 0 -i 527 -a 1 -x {1.1.3.0 0.0.3.0 256 ------- null} + -t 26.7243 -s 28 -d 1 -p ack -e 40 -c 0 -i 527 -a 1 -x {1.1.3.0 0.0.3.0 256 ------- null} - -t 26.7243 -s 28 -d 1 -p ack -e 40 -c 0 -i 527 -a 1 -x {1.1.3.0 0.0.3.0 256 ------- null} h -t 26.7243 -s 28 -d 1 -p ack -e 40 -c 0 -i 527 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 26.7259 -s 21 -d 28 -p ack -e 40 -c 0 -i 528 -a 1 -x {1.1.3.0 0.0.3.0 257 ------- null} + -t 26.7259 -s 28 -d 1 -p ack -e 40 -c 0 -i 528 -a 1 -x {1.1.3.0 0.0.3.0 257 ------- null} - -t 26.7259 -s 28 -d 1 -p ack -e 40 -c 0 -i 528 -a 1 -x {1.1.3.0 0.0.3.0 257 ------- null} h -t 26.7259 -s 28 -d 1 -p ack -e 40 -c 0 -i 528 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 26.7275 -s 21 -d 28 -p ack -e 40 -c 0 -i 529 -a 1 -x {1.1.3.0 0.0.3.0 258 ------- null} + -t 26.7275 -s 28 -d 1 -p ack -e 40 -c 0 -i 529 -a 1 -x {1.1.3.0 0.0.3.0 258 ------- null} - -t 26.7275 -s 28 -d 1 -p ack -e 40 -c 0 -i 529 -a 1 -x {1.1.3.0 0.0.3.0 258 ------- null} h -t 26.7275 -s 28 -d 1 -p ack -e 40 -c 0 -i 529 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 26.7291 -s 21 -d 28 -p ack -e 40 -c 0 -i 530 -a 1 -x {1.1.3.0 0.0.3.0 259 ------- null} + -t 26.7291 -s 28 -d 1 -p ack -e 40 -c 0 -i 530 -a 1 -x {1.1.3.0 0.0.3.0 259 ------- null} - -t 26.7291 -s 28 -d 1 -p ack -e 40 -c 0 -i 530 -a 1 -x {1.1.3.0 0.0.3.0 259 ------- null} h -t 26.7291 -s 28 -d 1 -p ack -e 40 -c 0 -i 530 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 26.7307 -s 21 -d 28 -p ack -e 40 -c 0 -i 531 -a 1 -x {1.1.3.0 0.0.3.0 260 ------- null} + -t 26.7307 -s 28 -d 1 -p ack -e 40 -c 0 -i 531 -a 1 -x {1.1.3.0 0.0.3.0 260 ------- null} - -t 26.7307 -s 28 -d 1 -p ack -e 40 -c 0 -i 531 -a 1 -x {1.1.3.0 0.0.3.0 260 ------- null} h -t 26.7307 -s 28 -d 1 -p ack -e 40 -c 0 -i 531 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 26.7323 -s 21 -d 28 -p ack -e 40 -c 0 -i 532 -a 1 -x {1.1.3.0 0.0.3.0 261 ------- null} + -t 26.7323 -s 28 -d 1 -p ack -e 40 -c 0 -i 532 -a 1 -x {1.1.3.0 0.0.3.0 261 ------- null} - -t 26.7323 -s 28 -d 1 -p ack -e 40 -c 0 -i 532 -a 1 -x {1.1.3.0 0.0.3.0 261 ------- null} h -t 26.7323 -s 28 -d 1 -p ack -e 40 -c 0 -i 532 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 26.7339 -s 21 -d 28 -p ack -e 40 -c 0 -i 533 -a 1 -x {1.1.3.0 0.0.3.0 262 ------- null} + -t 26.7339 -s 28 -d 1 -p ack -e 40 -c 0 -i 533 -a 1 -x {1.1.3.0 0.0.3.0 262 ------- null} - -t 26.7339 -s 28 -d 1 -p ack -e 40 -c 0 -i 533 -a 1 -x {1.1.3.0 0.0.3.0 262 ------- null} h -t 26.7339 -s 28 -d 1 -p ack -e 40 -c 0 -i 533 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 26.7355 -s 21 -d 28 -p ack -e 40 -c 0 -i 534 -a 1 -x {1.1.3.0 0.0.3.0 263 ------- null} + -t 26.7355 -s 28 -d 1 -p ack -e 40 -c 0 -i 534 -a 1 -x {1.1.3.0 0.0.3.0 263 ------- null} - -t 26.7355 -s 28 -d 1 -p ack -e 40 -c 0 -i 534 -a 1 -x {1.1.3.0 0.0.3.0 263 ------- null} h -t 26.7355 -s 28 -d 1 -p ack -e 40 -c 0 -i 534 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 26.7371 -s 21 -d 28 -p ack -e 40 -c 0 -i 535 -a 1 -x {1.1.3.0 0.0.3.0 264 ------- null} + -t 26.7371 -s 28 -d 1 -p ack -e 40 -c 0 -i 535 -a 1 -x {1.1.3.0 0.0.3.0 264 ------- null} - -t 26.7371 -s 28 -d 1 -p ack -e 40 -c 0 -i 535 -a 1 -x {1.1.3.0 0.0.3.0 264 ------- null} h -t 26.7371 -s 28 -d 1 -p ack -e 40 -c 0 -i 535 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 26.7387 -s 21 -d 28 -p ack -e 40 -c 0 -i 536 -a 1 -x {1.1.3.0 0.0.3.0 265 ------- null} + -t 26.7387 -s 28 -d 1 -p ack -e 40 -c 0 -i 536 -a 1 -x {1.1.3.0 0.0.3.0 265 ------- null} - -t 26.7387 -s 28 -d 1 -p ack -e 40 -c 0 -i 536 -a 1 -x {1.1.3.0 0.0.3.0 265 ------- null} h -t 26.7387 -s 28 -d 1 -p ack -e 40 -c 0 -i 536 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 26.7403 -s 21 -d 28 -p ack -e 40 -c 0 -i 537 -a 1 -x {1.1.3.0 0.0.3.0 266 ------- null} + -t 26.7403 -s 28 -d 1 -p ack -e 40 -c 0 -i 537 -a 1 -x {1.1.3.0 0.0.3.0 266 ------- null} - -t 26.7403 -s 28 -d 1 -p ack -e 40 -c 0 -i 537 -a 1 -x {1.1.3.0 0.0.3.0 266 ------- null} h -t 26.7403 -s 28 -d 1 -p ack -e 40 -c 0 -i 537 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 26.7419 -s 21 -d 28 -p ack -e 40 -c 0 -i 538 -a 1 -x {1.1.3.0 0.0.3.0 267 ------- null} + -t 26.7419 -s 28 -d 1 -p ack -e 40 -c 0 -i 538 -a 1 -x {1.1.3.0 0.0.3.0 267 ------- null} - -t 26.7419 -s 28 -d 1 -p ack -e 40 -c 0 -i 538 -a 1 -x {1.1.3.0 0.0.3.0 267 ------- null} h -t 26.7419 -s 28 -d 1 -p ack -e 40 -c 0 -i 538 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 26.7435 -s 21 -d 28 -p ack -e 40 -c 0 -i 539 -a 1 -x {1.1.3.0 0.0.3.0 268 ------- null} + -t 26.7435 -s 28 -d 1 -p ack -e 40 -c 0 -i 539 -a 1 -x {1.1.3.0 0.0.3.0 268 ------- null} - -t 26.7435 -s 28 -d 1 -p ack -e 40 -c 0 -i 539 -a 1 -x {1.1.3.0 0.0.3.0 268 ------- null} h -t 26.7435 -s 28 -d 1 -p ack -e 40 -c 0 -i 539 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 26.7451 -s 21 -d 28 -p ack -e 40 -c 0 -i 540 -a 1 -x {1.1.3.0 0.0.3.0 269 ------- null} + -t 26.7451 -s 28 -d 1 -p ack -e 40 -c 0 -i 540 -a 1 -x {1.1.3.0 0.0.3.0 269 ------- null} - -t 26.7451 -s 28 -d 1 -p ack -e 40 -c 0 -i 540 -a 1 -x {1.1.3.0 0.0.3.0 269 ------- null} h -t 26.7451 -s 28 -d 1 -p ack -e 40 -c 0 -i 540 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 26.7467 -s 21 -d 28 -p ack -e 40 -c 0 -i 541 -a 1 -x {1.1.3.0 0.0.3.0 270 ------- null} + -t 26.7467 -s 28 -d 1 -p ack -e 40 -c 0 -i 541 -a 1 -x {1.1.3.0 0.0.3.0 270 ------- null} - -t 26.7467 -s 28 -d 1 -p ack -e 40 -c 0 -i 541 -a 1 -x {1.1.3.0 0.0.3.0 270 ------- null} h -t 26.7467 -s 28 -d 1 -p ack -e 40 -c 0 -i 541 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 27.0164 -s 28 -d 1 -p ack -e 40 -c 0 -i 522 -a 1 -x {1.1.3.0 0.0.3.0 251 ------- null} + -t 27.0164 -s 1 -d 3 -p ack -e 40 -c 0 -i 522 -a 1 -x {1.1.3.0 0.0.3.0 251 ------- null} - -t 27.0164 -s 1 -d 3 -p ack -e 40 -c 0 -i 522 -a 1 -x {1.1.3.0 0.0.3.0 251 ------- null} h -t 27.0164 -s 1 -d 3 -p ack -e 40 -c 0 -i 522 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 27.018 -s 28 -d 1 -p ack -e 40 -c 0 -i 523 -a 1 -x {1.1.3.0 0.0.3.0 252 ------- null} + -t 27.018 -s 1 -d 3 -p ack -e 40 -c 0 -i 523 -a 1 -x {1.1.3.0 0.0.3.0 252 ------- null} - -t 27.018 -s 1 -d 3 -p ack -e 40 -c 0 -i 523 -a 1 -x {1.1.3.0 0.0.3.0 252 ------- null} h -t 27.018 -s 1 -d 3 -p ack -e 40 -c 0 -i 523 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 27.0196 -s 28 -d 1 -p ack -e 40 -c 0 -i 524 -a 1 -x {1.1.3.0 0.0.3.0 253 ------- null} + -t 27.0196 -s 1 -d 3 -p ack -e 40 -c 0 -i 524 -a 1 -x {1.1.3.0 0.0.3.0 253 ------- null} - -t 27.0196 -s 1 -d 3 -p ack -e 40 -c 0 -i 524 -a 1 -x {1.1.3.0 0.0.3.0 253 ------- null} h -t 27.0196 -s 1 -d 3 -p ack -e 40 -c 0 -i 524 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 27.0212 -s 28 -d 1 -p ack -e 40 -c 0 -i 525 -a 1 -x {1.1.3.0 0.0.3.0 254 ------- null} + -t 27.0212 -s 1 -d 3 -p ack -e 40 -c 0 -i 525 -a 1 -x {1.1.3.0 0.0.3.0 254 ------- null} - -t 27.0212 -s 1 -d 3 -p ack -e 40 -c 0 -i 525 -a 1 -x {1.1.3.0 0.0.3.0 254 ------- null} h -t 27.0212 -s 1 -d 3 -p ack -e 40 -c 0 -i 525 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 27.0228 -s 28 -d 1 -p ack -e 40 -c 0 -i 526 -a 1 -x {1.1.3.0 0.0.3.0 255 ------- null} + -t 27.0228 -s 1 -d 3 -p ack -e 40 -c 0 -i 526 -a 1 -x {1.1.3.0 0.0.3.0 255 ------- null} - -t 27.0228 -s 1 -d 3 -p ack -e 40 -c 0 -i 526 -a 1 -x {1.1.3.0 0.0.3.0 255 ------- null} h -t 27.0228 -s 1 -d 3 -p ack -e 40 -c 0 -i 526 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 27.0244 -s 28 -d 1 -p ack -e 40 -c 0 -i 527 -a 1 -x {1.1.3.0 0.0.3.0 256 ------- null} + -t 27.0244 -s 1 -d 3 -p ack -e 40 -c 0 -i 527 -a 1 -x {1.1.3.0 0.0.3.0 256 ------- null} - -t 27.0244 -s 1 -d 3 -p ack -e 40 -c 0 -i 527 -a 1 -x {1.1.3.0 0.0.3.0 256 ------- null} h -t 27.0244 -s 1 -d 3 -p ack -e 40 -c 0 -i 527 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 27.026 -s 28 -d 1 -p ack -e 40 -c 0 -i 528 -a 1 -x {1.1.3.0 0.0.3.0 257 ------- null} + -t 27.026 -s 1 -d 3 -p ack -e 40 -c 0 -i 528 -a 1 -x {1.1.3.0 0.0.3.0 257 ------- null} - -t 27.026 -s 1 -d 3 -p ack -e 40 -c 0 -i 528 -a 1 -x {1.1.3.0 0.0.3.0 257 ------- null} h -t 27.026 -s 1 -d 3 -p ack -e 40 -c 0 -i 528 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 27.0276 -s 28 -d 1 -p ack -e 40 -c 0 -i 529 -a 1 -x {1.1.3.0 0.0.3.0 258 ------- null} + -t 27.0276 -s 1 -d 3 -p ack -e 40 -c 0 -i 529 -a 1 -x {1.1.3.0 0.0.3.0 258 ------- null} - -t 27.0276 -s 1 -d 3 -p ack -e 40 -c 0 -i 529 -a 1 -x {1.1.3.0 0.0.3.0 258 ------- null} h -t 27.0276 -s 1 -d 3 -p ack -e 40 -c 0 -i 529 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 27.0292 -s 28 -d 1 -p ack -e 40 -c 0 -i 530 -a 1 -x {1.1.3.0 0.0.3.0 259 ------- null} + -t 27.0292 -s 1 -d 3 -p ack -e 40 -c 0 -i 530 -a 1 -x {1.1.3.0 0.0.3.0 259 ------- null} - -t 27.0292 -s 1 -d 3 -p ack -e 40 -c 0 -i 530 -a 1 -x {1.1.3.0 0.0.3.0 259 ------- null} h -t 27.0292 -s 1 -d 3 -p ack -e 40 -c 0 -i 530 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 27.0308 -s 28 -d 1 -p ack -e 40 -c 0 -i 531 -a 1 -x {1.1.3.0 0.0.3.0 260 ------- null} + -t 27.0308 -s 1 -d 3 -p ack -e 40 -c 0 -i 531 -a 1 -x {1.1.3.0 0.0.3.0 260 ------- null} - -t 27.0308 -s 1 -d 3 -p ack -e 40 -c 0 -i 531 -a 1 -x {1.1.3.0 0.0.3.0 260 ------- null} h -t 27.0308 -s 1 -d 3 -p ack -e 40 -c 0 -i 531 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 27.0324 -s 28 -d 1 -p ack -e 40 -c 0 -i 532 -a 1 -x {1.1.3.0 0.0.3.0 261 ------- null} + -t 27.0324 -s 1 -d 3 -p ack -e 40 -c 0 -i 532 -a 1 -x {1.1.3.0 0.0.3.0 261 ------- null} - -t 27.0324 -s 1 -d 3 -p ack -e 40 -c 0 -i 532 -a 1 -x {1.1.3.0 0.0.3.0 261 ------- null} h -t 27.0324 -s 1 -d 3 -p ack -e 40 -c 0 -i 532 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 27.034 -s 28 -d 1 -p ack -e 40 -c 0 -i 533 -a 1 -x {1.1.3.0 0.0.3.0 262 ------- null} + -t 27.034 -s 1 -d 3 -p ack -e 40 -c 0 -i 533 -a 1 -x {1.1.3.0 0.0.3.0 262 ------- null} - -t 27.034 -s 1 -d 3 -p ack -e 40 -c 0 -i 533 -a 1 -x {1.1.3.0 0.0.3.0 262 ------- null} h -t 27.034 -s 1 -d 3 -p ack -e 40 -c 0 -i 533 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 27.0356 -s 28 -d 1 -p ack -e 40 -c 0 -i 534 -a 1 -x {1.1.3.0 0.0.3.0 263 ------- null} + -t 27.0356 -s 1 -d 3 -p ack -e 40 -c 0 -i 534 -a 1 -x {1.1.3.0 0.0.3.0 263 ------- null} - -t 27.0356 -s 1 -d 3 -p ack -e 40 -c 0 -i 534 -a 1 -x {1.1.3.0 0.0.3.0 263 ------- null} h -t 27.0356 -s 1 -d 3 -p ack -e 40 -c 0 -i 534 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 27.0372 -s 28 -d 1 -p ack -e 40 -c 0 -i 535 -a 1 -x {1.1.3.0 0.0.3.0 264 ------- null} + -t 27.0372 -s 1 -d 3 -p ack -e 40 -c 0 -i 535 -a 1 -x {1.1.3.0 0.0.3.0 264 ------- null} - -t 27.0372 -s 1 -d 3 -p ack -e 40 -c 0 -i 535 -a 1 -x {1.1.3.0 0.0.3.0 264 ------- null} h -t 27.0372 -s 1 -d 3 -p ack -e 40 -c 0 -i 535 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 27.0388 -s 28 -d 1 -p ack -e 40 -c 0 -i 536 -a 1 -x {1.1.3.0 0.0.3.0 265 ------- null} + -t 27.0388 -s 1 -d 3 -p ack -e 40 -c 0 -i 536 -a 1 -x {1.1.3.0 0.0.3.0 265 ------- null} - -t 27.0388 -s 1 -d 3 -p ack -e 40 -c 0 -i 536 -a 1 -x {1.1.3.0 0.0.3.0 265 ------- null} h -t 27.0388 -s 1 -d 3 -p ack -e 40 -c 0 -i 536 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 27.0404 -s 28 -d 1 -p ack -e 40 -c 0 -i 537 -a 1 -x {1.1.3.0 0.0.3.0 266 ------- null} + -t 27.0404 -s 1 -d 3 -p ack -e 40 -c 0 -i 537 -a 1 -x {1.1.3.0 0.0.3.0 266 ------- null} - -t 27.0404 -s 1 -d 3 -p ack -e 40 -c 0 -i 537 -a 1 -x {1.1.3.0 0.0.3.0 266 ------- null} h -t 27.0404 -s 1 -d 3 -p ack -e 40 -c 0 -i 537 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 27.042 -s 28 -d 1 -p ack -e 40 -c 0 -i 538 -a 1 -x {1.1.3.0 0.0.3.0 267 ------- null} + -t 27.042 -s 1 -d 3 -p ack -e 40 -c 0 -i 538 -a 1 -x {1.1.3.0 0.0.3.0 267 ------- null} - -t 27.042 -s 1 -d 3 -p ack -e 40 -c 0 -i 538 -a 1 -x {1.1.3.0 0.0.3.0 267 ------- null} h -t 27.042 -s 1 -d 3 -p ack -e 40 -c 0 -i 538 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 27.0436 -s 28 -d 1 -p ack -e 40 -c 0 -i 539 -a 1 -x {1.1.3.0 0.0.3.0 268 ------- null} + -t 27.0436 -s 1 -d 3 -p ack -e 40 -c 0 -i 539 -a 1 -x {1.1.3.0 0.0.3.0 268 ------- null} - -t 27.0436 -s 1 -d 3 -p ack -e 40 -c 0 -i 539 -a 1 -x {1.1.3.0 0.0.3.0 268 ------- null} h -t 27.0436 -s 1 -d 3 -p ack -e 40 -c 0 -i 539 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 27.0452 -s 28 -d 1 -p ack -e 40 -c 0 -i 540 -a 1 -x {1.1.3.0 0.0.3.0 269 ------- null} + -t 27.0452 -s 1 -d 3 -p ack -e 40 -c 0 -i 540 -a 1 -x {1.1.3.0 0.0.3.0 269 ------- null} - -t 27.0452 -s 1 -d 3 -p ack -e 40 -c 0 -i 540 -a 1 -x {1.1.3.0 0.0.3.0 269 ------- null} h -t 27.0452 -s 1 -d 3 -p ack -e 40 -c 0 -i 540 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 27.0468 -s 28 -d 1 -p ack -e 40 -c 0 -i 541 -a 1 -x {1.1.3.0 0.0.3.0 270 ------- null} + -t 27.0468 -s 1 -d 3 -p ack -e 40 -c 0 -i 541 -a 1 -x {1.1.3.0 0.0.3.0 270 ------- null} - -t 27.0468 -s 1 -d 3 -p ack -e 40 -c 0 -i 541 -a 1 -x {1.1.3.0 0.0.3.0 270 ------- null} h -t 27.0468 -s 1 -d 3 -p ack -e 40 -c 0 -i 541 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 27.1565 -s 1 -d 3 -p ack -e 40 -c 0 -i 522 -a 1 -x {1.1.3.0 0.0.3.0 251 ------- null} + -t 27.1565 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 542 -a 0 -x {0.0.3.0 1.1.3.0 271 ------- null} - -t 27.1565 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 542 -a 0 -x {0.0.3.0 1.1.3.0 271 ------- null} h -t 27.1565 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 542 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.1581 -s 1 -d 3 -p ack -e 40 -c 0 -i 523 -a 1 -x {1.1.3.0 0.0.3.0 252 ------- null} + -t 27.1581 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {0.0.3.0 1.1.3.0 272 ------- null} - -t 27.1581 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {0.0.3.0 1.1.3.0 272 ------- null} h -t 27.1581 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.1597 -s 1 -d 3 -p ack -e 40 -c 0 -i 524 -a 1 -x {1.1.3.0 0.0.3.0 253 ------- null} + -t 27.1597 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 544 -a 0 -x {0.0.3.0 1.1.3.0 273 ------- null} - -t 27.1597 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 544 -a 0 -x {0.0.3.0 1.1.3.0 273 ------- null} h -t 27.1597 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 544 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.1613 -s 1 -d 3 -p ack -e 40 -c 0 -i 525 -a 1 -x {1.1.3.0 0.0.3.0 254 ------- null} + -t 27.1613 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {0.0.3.0 1.1.3.0 274 ------- null} - -t 27.1613 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {0.0.3.0 1.1.3.0 274 ------- null} h -t 27.1613 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.1629 -s 1 -d 3 -p ack -e 40 -c 0 -i 526 -a 1 -x {1.1.3.0 0.0.3.0 255 ------- null} + -t 27.1629 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 546 -a 0 -x {0.0.3.0 1.1.3.0 275 ------- null} - -t 27.1629 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 546 -a 0 -x {0.0.3.0 1.1.3.0 275 ------- null} h -t 27.1629 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 546 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.1645 -s 1 -d 3 -p ack -e 40 -c 0 -i 527 -a 1 -x {1.1.3.0 0.0.3.0 256 ------- null} + -t 27.1645 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {0.0.3.0 1.1.3.0 276 ------- null} - -t 27.1645 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {0.0.3.0 1.1.3.0 276 ------- null} h -t 27.1645 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.1661 -s 1 -d 3 -p ack -e 40 -c 0 -i 528 -a 1 -x {1.1.3.0 0.0.3.0 257 ------- null} + -t 27.1661 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 548 -a 0 -x {0.0.3.0 1.1.3.0 277 ------- null} - -t 27.1661 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 548 -a 0 -x {0.0.3.0 1.1.3.0 277 ------- null} h -t 27.1661 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 548 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.1677 -s 1 -d 3 -p ack -e 40 -c 0 -i 529 -a 1 -x {1.1.3.0 0.0.3.0 258 ------- null} + -t 27.1677 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {0.0.3.0 1.1.3.0 278 ------- null} - -t 27.1677 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {0.0.3.0 1.1.3.0 278 ------- null} h -t 27.1677 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.1693 -s 1 -d 3 -p ack -e 40 -c 0 -i 530 -a 1 -x {1.1.3.0 0.0.3.0 259 ------- null} + -t 27.1693 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 550 -a 0 -x {0.0.3.0 1.1.3.0 279 ------- null} - -t 27.1693 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 550 -a 0 -x {0.0.3.0 1.1.3.0 279 ------- null} h -t 27.1693 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 550 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.1709 -s 1 -d 3 -p ack -e 40 -c 0 -i 531 -a 1 -x {1.1.3.0 0.0.3.0 260 ------- null} + -t 27.1709 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {0.0.3.0 1.1.3.0 280 ------- null} - -t 27.1709 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {0.0.3.0 1.1.3.0 280 ------- null} h -t 27.1709 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.1725 -s 1 -d 3 -p ack -e 40 -c 0 -i 532 -a 1 -x {1.1.3.0 0.0.3.0 261 ------- null} + -t 27.1725 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {0.0.3.0 1.1.3.0 281 ------- null} - -t 27.1725 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {0.0.3.0 1.1.3.0 281 ------- null} h -t 27.1725 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.1741 -s 1 -d 3 -p ack -e 40 -c 0 -i 533 -a 1 -x {1.1.3.0 0.0.3.0 262 ------- null} + -t 27.1741 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {0.0.3.0 1.1.3.0 282 ------- null} - -t 27.1741 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {0.0.3.0 1.1.3.0 282 ------- null} h -t 27.1741 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.1757 -s 1 -d 3 -p ack -e 40 -c 0 -i 534 -a 1 -x {1.1.3.0 0.0.3.0 263 ------- null} + -t 27.1757 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 554 -a 0 -x {0.0.3.0 1.1.3.0 283 ------- null} - -t 27.1757 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 554 -a 0 -x {0.0.3.0 1.1.3.0 283 ------- null} h -t 27.1757 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 554 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.1773 -s 1 -d 3 -p ack -e 40 -c 0 -i 535 -a 1 -x {1.1.3.0 0.0.3.0 264 ------- null} + -t 27.1773 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {0.0.3.0 1.1.3.0 284 ------- null} - -t 27.1773 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {0.0.3.0 1.1.3.0 284 ------- null} h -t 27.1773 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.1789 -s 1 -d 3 -p ack -e 40 -c 0 -i 536 -a 1 -x {1.1.3.0 0.0.3.0 265 ------- null} + -t 27.1789 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 556 -a 0 -x {0.0.3.0 1.1.3.0 285 ------- null} - -t 27.1789 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 556 -a 0 -x {0.0.3.0 1.1.3.0 285 ------- null} h -t 27.1789 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 556 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.1805 -s 1 -d 3 -p ack -e 40 -c 0 -i 537 -a 1 -x {1.1.3.0 0.0.3.0 266 ------- null} + -t 27.1805 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {0.0.3.0 1.1.3.0 286 ------- null} - -t 27.1805 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {0.0.3.0 1.1.3.0 286 ------- null} h -t 27.1805 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.1821 -s 1 -d 3 -p ack -e 40 -c 0 -i 538 -a 1 -x {1.1.3.0 0.0.3.0 267 ------- null} + -t 27.1821 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 558 -a 0 -x {0.0.3.0 1.1.3.0 287 ------- null} - -t 27.1821 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 558 -a 0 -x {0.0.3.0 1.1.3.0 287 ------- null} h -t 27.1821 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 558 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.1837 -s 1 -d 3 -p ack -e 40 -c 0 -i 539 -a 1 -x {1.1.3.0 0.0.3.0 268 ------- null} + -t 27.1837 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {0.0.3.0 1.1.3.0 288 ------- null} - -t 27.1837 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {0.0.3.0 1.1.3.0 288 ------- null} h -t 27.1837 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.1853 -s 1 -d 3 -p ack -e 40 -c 0 -i 540 -a 1 -x {1.1.3.0 0.0.3.0 269 ------- null} + -t 27.1853 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 560 -a 0 -x {0.0.3.0 1.1.3.0 289 ------- null} - -t 27.1853 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 560 -a 0 -x {0.0.3.0 1.1.3.0 289 ------- null} h -t 27.1853 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 560 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.1869 -s 1 -d 3 -p ack -e 40 -c 0 -i 541 -a 1 -x {1.1.3.0 0.0.3.0 270 ------- null} + -t 27.1869 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {0.0.3.0 1.1.3.0 290 ------- null} - -t 27.1869 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {0.0.3.0 1.1.3.0 290 ------- null} h -t 27.1869 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.3181 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 542 -a 0 -x {0.0.3.0 1.1.3.0 271 ------- null} + -t 27.3181 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 542 -a 0 -x {0.0.3.0 1.1.3.0 271 ------- null} - -t 27.3181 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 542 -a 0 -x {0.0.3.0 1.1.3.0 271 ------- null} h -t 27.3181 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 542 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.3197 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {0.0.3.0 1.1.3.0 272 ------- null} + -t 27.3197 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {0.0.3.0 1.1.3.0 272 ------- null} - -t 27.3197 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {0.0.3.0 1.1.3.0 272 ------- null} h -t 27.3197 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.3213 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 544 -a 0 -x {0.0.3.0 1.1.3.0 273 ------- null} + -t 27.3213 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 544 -a 0 -x {0.0.3.0 1.1.3.0 273 ------- null} - -t 27.3213 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 544 -a 0 -x {0.0.3.0 1.1.3.0 273 ------- null} h -t 27.3213 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 544 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.3229 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {0.0.3.0 1.1.3.0 274 ------- null} + -t 27.3229 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {0.0.3.0 1.1.3.0 274 ------- null} - -t 27.3229 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {0.0.3.0 1.1.3.0 274 ------- null} h -t 27.3229 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.3245 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 546 -a 0 -x {0.0.3.0 1.1.3.0 275 ------- null} + -t 27.3245 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 546 -a 0 -x {0.0.3.0 1.1.3.0 275 ------- null} - -t 27.3245 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 546 -a 0 -x {0.0.3.0 1.1.3.0 275 ------- null} h -t 27.3245 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 546 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.3261 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {0.0.3.0 1.1.3.0 276 ------- null} + -t 27.3261 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {0.0.3.0 1.1.3.0 276 ------- null} - -t 27.3261 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {0.0.3.0 1.1.3.0 276 ------- null} h -t 27.3261 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.3277 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 548 -a 0 -x {0.0.3.0 1.1.3.0 277 ------- null} + -t 27.3277 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 548 -a 0 -x {0.0.3.0 1.1.3.0 277 ------- null} - -t 27.3277 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 548 -a 0 -x {0.0.3.0 1.1.3.0 277 ------- null} h -t 27.3277 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 548 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.3293 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {0.0.3.0 1.1.3.0 278 ------- null} + -t 27.3293 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {0.0.3.0 1.1.3.0 278 ------- null} - -t 27.3293 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {0.0.3.0 1.1.3.0 278 ------- null} h -t 27.3293 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.3309 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 550 -a 0 -x {0.0.3.0 1.1.3.0 279 ------- null} + -t 27.3309 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 550 -a 0 -x {0.0.3.0 1.1.3.0 279 ------- null} - -t 27.3309 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 550 -a 0 -x {0.0.3.0 1.1.3.0 279 ------- null} h -t 27.3309 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 550 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.3325 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {0.0.3.0 1.1.3.0 280 ------- null} + -t 27.3325 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {0.0.3.0 1.1.3.0 280 ------- null} - -t 27.3325 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {0.0.3.0 1.1.3.0 280 ------- null} h -t 27.3325 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.3341 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {0.0.3.0 1.1.3.0 281 ------- null} + -t 27.3341 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {0.0.3.0 1.1.3.0 281 ------- null} - -t 27.3341 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {0.0.3.0 1.1.3.0 281 ------- null} h -t 27.3341 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.3357 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {0.0.3.0 1.1.3.0 282 ------- null} + -t 27.3357 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {0.0.3.0 1.1.3.0 282 ------- null} - -t 27.3357 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {0.0.3.0 1.1.3.0 282 ------- null} h -t 27.3357 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.3373 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 554 -a 0 -x {0.0.3.0 1.1.3.0 283 ------- null} + -t 27.3373 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 554 -a 0 -x {0.0.3.0 1.1.3.0 283 ------- null} - -t 27.3373 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 554 -a 0 -x {0.0.3.0 1.1.3.0 283 ------- null} h -t 27.3373 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 554 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.3389 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {0.0.3.0 1.1.3.0 284 ------- null} + -t 27.3389 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {0.0.3.0 1.1.3.0 284 ------- null} - -t 27.3389 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {0.0.3.0 1.1.3.0 284 ------- null} h -t 27.3389 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.3405 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 556 -a 0 -x {0.0.3.0 1.1.3.0 285 ------- null} + -t 27.3405 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 556 -a 0 -x {0.0.3.0 1.1.3.0 285 ------- null} - -t 27.3405 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 556 -a 0 -x {0.0.3.0 1.1.3.0 285 ------- null} h -t 27.3405 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 556 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.3421 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {0.0.3.0 1.1.3.0 286 ------- null} + -t 27.3421 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {0.0.3.0 1.1.3.0 286 ------- null} - -t 27.3421 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {0.0.3.0 1.1.3.0 286 ------- null} h -t 27.3421 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.3437 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 558 -a 0 -x {0.0.3.0 1.1.3.0 287 ------- null} + -t 27.3437 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 558 -a 0 -x {0.0.3.0 1.1.3.0 287 ------- null} - -t 27.3437 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 558 -a 0 -x {0.0.3.0 1.1.3.0 287 ------- null} h -t 27.3437 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 558 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.3453 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {0.0.3.0 1.1.3.0 288 ------- null} + -t 27.3453 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {0.0.3.0 1.1.3.0 288 ------- null} - -t 27.3453 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {0.0.3.0 1.1.3.0 288 ------- null} h -t 27.3453 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.3469 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 560 -a 0 -x {0.0.3.0 1.1.3.0 289 ------- null} + -t 27.3469 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 560 -a 0 -x {0.0.3.0 1.1.3.0 289 ------- null} - -t 27.3469 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 560 -a 0 -x {0.0.3.0 1.1.3.0 289 ------- null} h -t 27.3469 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 560 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.3485 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {0.0.3.0 1.1.3.0 290 ------- null} + -t 27.3485 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {0.0.3.0 1.1.3.0 290 ------- null} - -t 27.3485 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {0.0.3.0 1.1.3.0 290 ------- null} h -t 27.3485 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.6197 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 542 -a 0 -x {0.0.3.0 1.1.3.0 271 ------- null} + -t 27.6197 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 542 -a 0 -x {0.0.3.0 1.1.3.0 271 ------- null} - -t 27.6197 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 542 -a 0 -x {0.0.3.0 1.1.3.0 271 ------- null} h -t 27.6197 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 542 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.6213 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {0.0.3.0 1.1.3.0 272 ------- null} + -t 27.6213 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {0.0.3.0 1.1.3.0 272 ------- null} - -t 27.6213 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {0.0.3.0 1.1.3.0 272 ------- null} h -t 27.6213 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.6229 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 544 -a 0 -x {0.0.3.0 1.1.3.0 273 ------- null} + -t 27.6229 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 544 -a 0 -x {0.0.3.0 1.1.3.0 273 ------- null} - -t 27.6229 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 544 -a 0 -x {0.0.3.0 1.1.3.0 273 ------- null} h -t 27.6229 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 544 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.6245 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {0.0.3.0 1.1.3.0 274 ------- null} + -t 27.6245 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {0.0.3.0 1.1.3.0 274 ------- null} - -t 27.6245 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {0.0.3.0 1.1.3.0 274 ------- null} h -t 27.6245 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.6261 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 546 -a 0 -x {0.0.3.0 1.1.3.0 275 ------- null} + -t 27.6261 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 546 -a 0 -x {0.0.3.0 1.1.3.0 275 ------- null} - -t 27.6261 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 546 -a 0 -x {0.0.3.0 1.1.3.0 275 ------- null} h -t 27.6261 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 546 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.6277 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {0.0.3.0 1.1.3.0 276 ------- null} + -t 27.6277 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {0.0.3.0 1.1.3.0 276 ------- null} - -t 27.6277 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {0.0.3.0 1.1.3.0 276 ------- null} h -t 27.6277 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.6293 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 548 -a 0 -x {0.0.3.0 1.1.3.0 277 ------- null} + -t 27.6293 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 548 -a 0 -x {0.0.3.0 1.1.3.0 277 ------- null} - -t 27.6293 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 548 -a 0 -x {0.0.3.0 1.1.3.0 277 ------- null} h -t 27.6293 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 548 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.6309 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {0.0.3.0 1.1.3.0 278 ------- null} + -t 27.6309 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {0.0.3.0 1.1.3.0 278 ------- null} - -t 27.6309 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {0.0.3.0 1.1.3.0 278 ------- null} h -t 27.6309 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.6325 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 550 -a 0 -x {0.0.3.0 1.1.3.0 279 ------- null} + -t 27.6325 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 550 -a 0 -x {0.0.3.0 1.1.3.0 279 ------- null} - -t 27.6325 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 550 -a 0 -x {0.0.3.0 1.1.3.0 279 ------- null} h -t 27.6325 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 550 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.6341 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {0.0.3.0 1.1.3.0 280 ------- null} + -t 27.6341 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {0.0.3.0 1.1.3.0 280 ------- null} - -t 27.6341 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {0.0.3.0 1.1.3.0 280 ------- null} h -t 27.6341 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.6357 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {0.0.3.0 1.1.3.0 281 ------- null} + -t 27.6357 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {0.0.3.0 1.1.3.0 281 ------- null} - -t 27.6357 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {0.0.3.0 1.1.3.0 281 ------- null} h -t 27.6357 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.6373 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {0.0.3.0 1.1.3.0 282 ------- null} + -t 27.6373 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {0.0.3.0 1.1.3.0 282 ------- null} - -t 27.6373 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {0.0.3.0 1.1.3.0 282 ------- null} h -t 27.6373 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.6389 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 554 -a 0 -x {0.0.3.0 1.1.3.0 283 ------- null} + -t 27.6389 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 554 -a 0 -x {0.0.3.0 1.1.3.0 283 ------- null} - -t 27.6389 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 554 -a 0 -x {0.0.3.0 1.1.3.0 283 ------- null} h -t 27.6389 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 554 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.6405 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {0.0.3.0 1.1.3.0 284 ------- null} + -t 27.6405 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {0.0.3.0 1.1.3.0 284 ------- null} - -t 27.6405 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {0.0.3.0 1.1.3.0 284 ------- null} h -t 27.6405 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.6421 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 556 -a 0 -x {0.0.3.0 1.1.3.0 285 ------- null} + -t 27.6421 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 556 -a 0 -x {0.0.3.0 1.1.3.0 285 ------- null} - -t 27.6421 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 556 -a 0 -x {0.0.3.0 1.1.3.0 285 ------- null} h -t 27.6421 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 556 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.6437 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {0.0.3.0 1.1.3.0 286 ------- null} + -t 27.6437 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {0.0.3.0 1.1.3.0 286 ------- null} - -t 27.6437 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {0.0.3.0 1.1.3.0 286 ------- null} h -t 27.6437 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.6453 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 558 -a 0 -x {0.0.3.0 1.1.3.0 287 ------- null} + -t 27.6453 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 558 -a 0 -x {0.0.3.0 1.1.3.0 287 ------- null} - -t 27.6453 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 558 -a 0 -x {0.0.3.0 1.1.3.0 287 ------- null} h -t 27.6453 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 558 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.6469 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {0.0.3.0 1.1.3.0 288 ------- null} + -t 27.6469 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {0.0.3.0 1.1.3.0 288 ------- null} - -t 27.6469 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {0.0.3.0 1.1.3.0 288 ------- null} h -t 27.6469 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.6485 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 560 -a 0 -x {0.0.3.0 1.1.3.0 289 ------- null} + -t 27.6485 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 560 -a 0 -x {0.0.3.0 1.1.3.0 289 ------- null} - -t 27.6485 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 560 -a 0 -x {0.0.3.0 1.1.3.0 289 ------- null} h -t 27.6485 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 560 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.6501 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {0.0.3.0 1.1.3.0 290 ------- null} + -t 27.6501 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {0.0.3.0 1.1.3.0 290 ------- null} - -t 27.6501 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {0.0.3.0 1.1.3.0 290 ------- null} h -t 27.6501 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.7213 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 542 -a 0 -x {0.0.3.0 1.1.3.0 271 ------- null} + -t 27.7213 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 542 -a 0 -x {0.0.3.0 1.1.3.0 271 ------- null} - -t 27.7213 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 542 -a 0 -x {0.0.3.0 1.1.3.0 271 ------- null} h -t 27.7213 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 542 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.7229 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {0.0.3.0 1.1.3.0 272 ------- null} + -t 27.7229 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {0.0.3.0 1.1.3.0 272 ------- null} - -t 27.7229 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {0.0.3.0 1.1.3.0 272 ------- null} h -t 27.7229 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.7245 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 544 -a 0 -x {0.0.3.0 1.1.3.0 273 ------- null} + -t 27.7245 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 544 -a 0 -x {0.0.3.0 1.1.3.0 273 ------- null} - -t 27.7245 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 544 -a 0 -x {0.0.3.0 1.1.3.0 273 ------- null} h -t 27.7245 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 544 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.7261 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {0.0.3.0 1.1.3.0 274 ------- null} + -t 27.7261 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {0.0.3.0 1.1.3.0 274 ------- null} - -t 27.7261 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {0.0.3.0 1.1.3.0 274 ------- null} h -t 27.7261 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.7277 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 546 -a 0 -x {0.0.3.0 1.1.3.0 275 ------- null} + -t 27.7277 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 546 -a 0 -x {0.0.3.0 1.1.3.0 275 ------- null} - -t 27.7277 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 546 -a 0 -x {0.0.3.0 1.1.3.0 275 ------- null} h -t 27.7277 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 546 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.7293 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {0.0.3.0 1.1.3.0 276 ------- null} + -t 27.7293 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {0.0.3.0 1.1.3.0 276 ------- null} - -t 27.7293 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {0.0.3.0 1.1.3.0 276 ------- null} h -t 27.7293 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.7309 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 548 -a 0 -x {0.0.3.0 1.1.3.0 277 ------- null} + -t 27.7309 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 548 -a 0 -x {0.0.3.0 1.1.3.0 277 ------- null} - -t 27.7309 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 548 -a 0 -x {0.0.3.0 1.1.3.0 277 ------- null} h -t 27.7309 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 548 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.7325 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {0.0.3.0 1.1.3.0 278 ------- null} + -t 27.7325 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {0.0.3.0 1.1.3.0 278 ------- null} - -t 27.7325 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {0.0.3.0 1.1.3.0 278 ------- null} h -t 27.7325 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.7341 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 550 -a 0 -x {0.0.3.0 1.1.3.0 279 ------- null} + -t 27.7341 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 550 -a 0 -x {0.0.3.0 1.1.3.0 279 ------- null} - -t 27.7341 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 550 -a 0 -x {0.0.3.0 1.1.3.0 279 ------- null} h -t 27.7341 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 550 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.7357 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {0.0.3.0 1.1.3.0 280 ------- null} + -t 27.7357 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {0.0.3.0 1.1.3.0 280 ------- null} - -t 27.7357 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {0.0.3.0 1.1.3.0 280 ------- null} h -t 27.7357 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.7373 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {0.0.3.0 1.1.3.0 281 ------- null} + -t 27.7373 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {0.0.3.0 1.1.3.0 281 ------- null} - -t 27.7373 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {0.0.3.0 1.1.3.0 281 ------- null} h -t 27.7373 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.7389 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {0.0.3.0 1.1.3.0 282 ------- null} + -t 27.7389 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {0.0.3.0 1.1.3.0 282 ------- null} - -t 27.7389 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {0.0.3.0 1.1.3.0 282 ------- null} h -t 27.7389 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.7405 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 554 -a 0 -x {0.0.3.0 1.1.3.0 283 ------- null} + -t 27.7405 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 554 -a 0 -x {0.0.3.0 1.1.3.0 283 ------- null} - -t 27.7405 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 554 -a 0 -x {0.0.3.0 1.1.3.0 283 ------- null} h -t 27.7405 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 554 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.7421 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {0.0.3.0 1.1.3.0 284 ------- null} + -t 27.7421 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {0.0.3.0 1.1.3.0 284 ------- null} - -t 27.7421 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {0.0.3.0 1.1.3.0 284 ------- null} h -t 27.7421 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.7437 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 556 -a 0 -x {0.0.3.0 1.1.3.0 285 ------- null} + -t 27.7437 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 556 -a 0 -x {0.0.3.0 1.1.3.0 285 ------- null} - -t 27.7437 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 556 -a 0 -x {0.0.3.0 1.1.3.0 285 ------- null} h -t 27.7437 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 556 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.7453 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {0.0.3.0 1.1.3.0 286 ------- null} + -t 27.7453 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {0.0.3.0 1.1.3.0 286 ------- null} - -t 27.7453 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {0.0.3.0 1.1.3.0 286 ------- null} h -t 27.7453 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.7469 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 558 -a 0 -x {0.0.3.0 1.1.3.0 287 ------- null} + -t 27.7469 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 558 -a 0 -x {0.0.3.0 1.1.3.0 287 ------- null} - -t 27.7469 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 558 -a 0 -x {0.0.3.0 1.1.3.0 287 ------- null} h -t 27.7469 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 558 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.7485 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {0.0.3.0 1.1.3.0 288 ------- null} + -t 27.7485 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {0.0.3.0 1.1.3.0 288 ------- null} - -t 27.7485 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {0.0.3.0 1.1.3.0 288 ------- null} h -t 27.7485 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.7501 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 560 -a 0 -x {0.0.3.0 1.1.3.0 289 ------- null} + -t 27.7501 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 560 -a 0 -x {0.0.3.0 1.1.3.0 289 ------- null} - -t 27.7501 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 560 -a 0 -x {0.0.3.0 1.1.3.0 289 ------- null} h -t 27.7501 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 560 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.7517 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {0.0.3.0 1.1.3.0 290 ------- null} + -t 27.7517 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {0.0.3.0 1.1.3.0 290 ------- null} - -t 27.7517 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {0.0.3.0 1.1.3.0 290 ------- null} h -t 27.7517 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.8029 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 542 -a 0 -x {0.0.3.0 1.1.3.0 271 ------- null} + -t 27.8029 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 542 -a 0 -x {0.0.3.0 1.1.3.0 271 ------- null} - -t 27.8029 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 542 -a 0 -x {0.0.3.0 1.1.3.0 271 ------- null} h -t 27.8029 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 542 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.8045 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {0.0.3.0 1.1.3.0 272 ------- null} + -t 27.8045 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {0.0.3.0 1.1.3.0 272 ------- null} - -t 27.8045 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {0.0.3.0 1.1.3.0 272 ------- null} h -t 27.8045 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.8061 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 544 -a 0 -x {0.0.3.0 1.1.3.0 273 ------- null} + -t 27.8061 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 544 -a 0 -x {0.0.3.0 1.1.3.0 273 ------- null} - -t 27.8061 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 544 -a 0 -x {0.0.3.0 1.1.3.0 273 ------- null} h -t 27.8061 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 544 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.8077 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {0.0.3.0 1.1.3.0 274 ------- null} + -t 27.8077 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {0.0.3.0 1.1.3.0 274 ------- null} - -t 27.8077 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {0.0.3.0 1.1.3.0 274 ------- null} h -t 27.8077 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.8093 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 546 -a 0 -x {0.0.3.0 1.1.3.0 275 ------- null} + -t 27.8093 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 546 -a 0 -x {0.0.3.0 1.1.3.0 275 ------- null} - -t 27.8093 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 546 -a 0 -x {0.0.3.0 1.1.3.0 275 ------- null} h -t 27.8093 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 546 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.8109 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {0.0.3.0 1.1.3.0 276 ------- null} + -t 27.8109 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {0.0.3.0 1.1.3.0 276 ------- null} - -t 27.8109 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {0.0.3.0 1.1.3.0 276 ------- null} h -t 27.8109 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.8125 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 548 -a 0 -x {0.0.3.0 1.1.3.0 277 ------- null} + -t 27.8125 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 548 -a 0 -x {0.0.3.0 1.1.3.0 277 ------- null} - -t 27.8125 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 548 -a 0 -x {0.0.3.0 1.1.3.0 277 ------- null} h -t 27.8125 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 548 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.8141 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {0.0.3.0 1.1.3.0 278 ------- null} + -t 27.8141 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {0.0.3.0 1.1.3.0 278 ------- null} - -t 27.8141 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {0.0.3.0 1.1.3.0 278 ------- null} h -t 27.8141 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.8157 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 550 -a 0 -x {0.0.3.0 1.1.3.0 279 ------- null} + -t 27.8157 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 550 -a 0 -x {0.0.3.0 1.1.3.0 279 ------- null} - -t 27.8157 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 550 -a 0 -x {0.0.3.0 1.1.3.0 279 ------- null} h -t 27.8157 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 550 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.8173 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {0.0.3.0 1.1.3.0 280 ------- null} + -t 27.8173 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {0.0.3.0 1.1.3.0 280 ------- null} - -t 27.8173 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {0.0.3.0 1.1.3.0 280 ------- null} h -t 27.8173 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.8189 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {0.0.3.0 1.1.3.0 281 ------- null} + -t 27.8189 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {0.0.3.0 1.1.3.0 281 ------- null} - -t 27.8189 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {0.0.3.0 1.1.3.0 281 ------- null} h -t 27.8189 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.8205 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {0.0.3.0 1.1.3.0 282 ------- null} + -t 27.8205 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {0.0.3.0 1.1.3.0 282 ------- null} - -t 27.8205 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {0.0.3.0 1.1.3.0 282 ------- null} h -t 27.8205 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.8221 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 554 -a 0 -x {0.0.3.0 1.1.3.0 283 ------- null} + -t 27.8221 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 554 -a 0 -x {0.0.3.0 1.1.3.0 283 ------- null} - -t 27.8221 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 554 -a 0 -x {0.0.3.0 1.1.3.0 283 ------- null} h -t 27.8221 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 554 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.8237 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {0.0.3.0 1.1.3.0 284 ------- null} + -t 27.8237 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {0.0.3.0 1.1.3.0 284 ------- null} - -t 27.8237 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {0.0.3.0 1.1.3.0 284 ------- null} h -t 27.8237 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.8253 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 556 -a 0 -x {0.0.3.0 1.1.3.0 285 ------- null} + -t 27.8253 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 556 -a 0 -x {0.0.3.0 1.1.3.0 285 ------- null} - -t 27.8253 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 556 -a 0 -x {0.0.3.0 1.1.3.0 285 ------- null} h -t 27.8253 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 556 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.8269 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {0.0.3.0 1.1.3.0 286 ------- null} + -t 27.8269 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {0.0.3.0 1.1.3.0 286 ------- null} - -t 27.8269 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {0.0.3.0 1.1.3.0 286 ------- null} h -t 27.8269 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.8285 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 558 -a 0 -x {0.0.3.0 1.1.3.0 287 ------- null} + -t 27.8285 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 558 -a 0 -x {0.0.3.0 1.1.3.0 287 ------- null} - -t 27.8285 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 558 -a 0 -x {0.0.3.0 1.1.3.0 287 ------- null} h -t 27.8285 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 558 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.8301 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {0.0.3.0 1.1.3.0 288 ------- null} + -t 27.8301 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {0.0.3.0 1.1.3.0 288 ------- null} - -t 27.8301 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {0.0.3.0 1.1.3.0 288 ------- null} h -t 27.8301 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.8317 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 560 -a 0 -x {0.0.3.0 1.1.3.0 289 ------- null} + -t 27.8317 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 560 -a 0 -x {0.0.3.0 1.1.3.0 289 ------- null} - -t 27.8317 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 560 -a 0 -x {0.0.3.0 1.1.3.0 289 ------- null} h -t 27.8317 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 560 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.8333 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {0.0.3.0 1.1.3.0 290 ------- null} + -t 27.8333 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {0.0.3.0 1.1.3.0 290 ------- null} - -t 27.8333 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {0.0.3.0 1.1.3.0 290 ------- null} h -t 27.8333 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.8845 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 542 -a 0 -x {0.0.3.0 1.1.3.0 271 ------- null} + -t 27.8845 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 542 -a 0 -x {0.0.3.0 1.1.3.0 271 ------- null} - -t 27.8845 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 542 -a 0 -x {0.0.3.0 1.1.3.0 271 ------- null} h -t 27.8845 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 542 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.8861 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {0.0.3.0 1.1.3.0 272 ------- null} + -t 27.8861 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {0.0.3.0 1.1.3.0 272 ------- null} - -t 27.8861 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {0.0.3.0 1.1.3.0 272 ------- null} h -t 27.8861 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.8877 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 544 -a 0 -x {0.0.3.0 1.1.3.0 273 ------- null} + -t 27.8877 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 544 -a 0 -x {0.0.3.0 1.1.3.0 273 ------- null} - -t 27.8877 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 544 -a 0 -x {0.0.3.0 1.1.3.0 273 ------- null} h -t 27.8877 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 544 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.8893 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {0.0.3.0 1.1.3.0 274 ------- null} + -t 27.8893 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {0.0.3.0 1.1.3.0 274 ------- null} - -t 27.8893 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {0.0.3.0 1.1.3.0 274 ------- null} h -t 27.8893 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.8909 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 546 -a 0 -x {0.0.3.0 1.1.3.0 275 ------- null} + -t 27.8909 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 546 -a 0 -x {0.0.3.0 1.1.3.0 275 ------- null} - -t 27.8909 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 546 -a 0 -x {0.0.3.0 1.1.3.0 275 ------- null} h -t 27.8909 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 546 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.8925 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {0.0.3.0 1.1.3.0 276 ------- null} + -t 27.8925 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {0.0.3.0 1.1.3.0 276 ------- null} - -t 27.8925 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {0.0.3.0 1.1.3.0 276 ------- null} h -t 27.8925 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.8941 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 548 -a 0 -x {0.0.3.0 1.1.3.0 277 ------- null} + -t 27.8941 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 548 -a 0 -x {0.0.3.0 1.1.3.0 277 ------- null} - -t 27.8941 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 548 -a 0 -x {0.0.3.0 1.1.3.0 277 ------- null} h -t 27.8941 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 548 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.8957 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {0.0.3.0 1.1.3.0 278 ------- null} + -t 27.8957 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {0.0.3.0 1.1.3.0 278 ------- null} - -t 27.8957 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {0.0.3.0 1.1.3.0 278 ------- null} h -t 27.8957 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.8973 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 550 -a 0 -x {0.0.3.0 1.1.3.0 279 ------- null} + -t 27.8973 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 550 -a 0 -x {0.0.3.0 1.1.3.0 279 ------- null} - -t 27.8973 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 550 -a 0 -x {0.0.3.0 1.1.3.0 279 ------- null} h -t 27.8973 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 550 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.8989 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {0.0.3.0 1.1.3.0 280 ------- null} + -t 27.8989 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {0.0.3.0 1.1.3.0 280 ------- null} - -t 27.8989 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {0.0.3.0 1.1.3.0 280 ------- null} h -t 27.8989 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.9005 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {0.0.3.0 1.1.3.0 281 ------- null} + -t 27.9005 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {0.0.3.0 1.1.3.0 281 ------- null} - -t 27.9005 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {0.0.3.0 1.1.3.0 281 ------- null} h -t 27.9005 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.9021 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {0.0.3.0 1.1.3.0 282 ------- null} + -t 27.9021 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {0.0.3.0 1.1.3.0 282 ------- null} - -t 27.9021 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {0.0.3.0 1.1.3.0 282 ------- null} h -t 27.9021 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.9037 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 554 -a 0 -x {0.0.3.0 1.1.3.0 283 ------- null} + -t 27.9037 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 554 -a 0 -x {0.0.3.0 1.1.3.0 283 ------- null} - -t 27.9037 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 554 -a 0 -x {0.0.3.0 1.1.3.0 283 ------- null} h -t 27.9037 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 554 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.9053 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {0.0.3.0 1.1.3.0 284 ------- null} + -t 27.9053 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {0.0.3.0 1.1.3.0 284 ------- null} - -t 27.9053 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {0.0.3.0 1.1.3.0 284 ------- null} h -t 27.9053 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.9069 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 556 -a 0 -x {0.0.3.0 1.1.3.0 285 ------- null} + -t 27.9069 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 556 -a 0 -x {0.0.3.0 1.1.3.0 285 ------- null} - -t 27.9069 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 556 -a 0 -x {0.0.3.0 1.1.3.0 285 ------- null} h -t 27.9069 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 556 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.9085 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {0.0.3.0 1.1.3.0 286 ------- null} + -t 27.9085 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {0.0.3.0 1.1.3.0 286 ------- null} - -t 27.9085 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {0.0.3.0 1.1.3.0 286 ------- null} h -t 27.9085 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.9101 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 558 -a 0 -x {0.0.3.0 1.1.3.0 287 ------- null} + -t 27.9101 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 558 -a 0 -x {0.0.3.0 1.1.3.0 287 ------- null} - -t 27.9101 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 558 -a 0 -x {0.0.3.0 1.1.3.0 287 ------- null} h -t 27.9101 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 558 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.9117 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {0.0.3.0 1.1.3.0 288 ------- null} + -t 27.9117 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {0.0.3.0 1.1.3.0 288 ------- null} - -t 27.9117 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {0.0.3.0 1.1.3.0 288 ------- null} h -t 27.9117 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.9133 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 560 -a 0 -x {0.0.3.0 1.1.3.0 289 ------- null} + -t 27.9133 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 560 -a 0 -x {0.0.3.0 1.1.3.0 289 ------- null} - -t 27.9133 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 560 -a 0 -x {0.0.3.0 1.1.3.0 289 ------- null} h -t 27.9133 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 560 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.9149 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {0.0.3.0 1.1.3.0 290 ------- null} + -t 27.9149 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {0.0.3.0 1.1.3.0 290 ------- null} - -t 27.9149 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {0.0.3.0 1.1.3.0 290 ------- null} h -t 27.9149 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 27.9461 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 542 -a 0 -x {0.0.3.0 1.1.3.0 271 ------- null} + -t 27.9461 -s 21 -d 28 -p ack -e 40 -c 0 -i 562 -a 1 -x {1.1.3.0 0.0.3.0 271 ------- null} - -t 27.9461 -s 21 -d 28 -p ack -e 40 -c 0 -i 562 -a 1 -x {1.1.3.0 0.0.3.0 271 ------- null} h -t 27.9461 -s 21 -d 28 -p ack -e 40 -c 0 -i 562 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 27.9477 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {0.0.3.0 1.1.3.0 272 ------- null} + -t 27.9477 -s 21 -d 28 -p ack -e 40 -c 0 -i 563 -a 1 -x {1.1.3.0 0.0.3.0 272 ------- null} - -t 27.9477 -s 21 -d 28 -p ack -e 40 -c 0 -i 563 -a 1 -x {1.1.3.0 0.0.3.0 272 ------- null} h -t 27.9477 -s 21 -d 28 -p ack -e 40 -c 0 -i 563 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 27.9493 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 544 -a 0 -x {0.0.3.0 1.1.3.0 273 ------- null} + -t 27.9493 -s 21 -d 28 -p ack -e 40 -c 0 -i 564 -a 1 -x {1.1.3.0 0.0.3.0 273 ------- null} - -t 27.9493 -s 21 -d 28 -p ack -e 40 -c 0 -i 564 -a 1 -x {1.1.3.0 0.0.3.0 273 ------- null} h -t 27.9493 -s 21 -d 28 -p ack -e 40 -c 0 -i 564 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 27.9509 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {0.0.3.0 1.1.3.0 274 ------- null} + -t 27.9509 -s 21 -d 28 -p ack -e 40 -c 0 -i 565 -a 1 -x {1.1.3.0 0.0.3.0 274 ------- null} - -t 27.9509 -s 21 -d 28 -p ack -e 40 -c 0 -i 565 -a 1 -x {1.1.3.0 0.0.3.0 274 ------- null} h -t 27.9509 -s 21 -d 28 -p ack -e 40 -c 0 -i 565 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 27.9525 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 546 -a 0 -x {0.0.3.0 1.1.3.0 275 ------- null} + -t 27.9525 -s 21 -d 28 -p ack -e 40 -c 0 -i 566 -a 1 -x {1.1.3.0 0.0.3.0 275 ------- null} - -t 27.9525 -s 21 -d 28 -p ack -e 40 -c 0 -i 566 -a 1 -x {1.1.3.0 0.0.3.0 275 ------- null} h -t 27.9525 -s 21 -d 28 -p ack -e 40 -c 0 -i 566 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 27.9541 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {0.0.3.0 1.1.3.0 276 ------- null} + -t 27.9541 -s 21 -d 28 -p ack -e 40 -c 0 -i 567 -a 1 -x {1.1.3.0 0.0.3.0 276 ------- null} - -t 27.9541 -s 21 -d 28 -p ack -e 40 -c 0 -i 567 -a 1 -x {1.1.3.0 0.0.3.0 276 ------- null} h -t 27.9541 -s 21 -d 28 -p ack -e 40 -c 0 -i 567 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 27.9557 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 548 -a 0 -x {0.0.3.0 1.1.3.0 277 ------- null} + -t 27.9557 -s 21 -d 28 -p ack -e 40 -c 0 -i 568 -a 1 -x {1.1.3.0 0.0.3.0 277 ------- null} - -t 27.9557 -s 21 -d 28 -p ack -e 40 -c 0 -i 568 -a 1 -x {1.1.3.0 0.0.3.0 277 ------- null} h -t 27.9557 -s 21 -d 28 -p ack -e 40 -c 0 -i 568 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 27.9573 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {0.0.3.0 1.1.3.0 278 ------- null} + -t 27.9573 -s 21 -d 28 -p ack -e 40 -c 0 -i 569 -a 1 -x {1.1.3.0 0.0.3.0 278 ------- null} - -t 27.9573 -s 21 -d 28 -p ack -e 40 -c 0 -i 569 -a 1 -x {1.1.3.0 0.0.3.0 278 ------- null} h -t 27.9573 -s 21 -d 28 -p ack -e 40 -c 0 -i 569 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 27.9589 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 550 -a 0 -x {0.0.3.0 1.1.3.0 279 ------- null} + -t 27.9589 -s 21 -d 28 -p ack -e 40 -c 0 -i 570 -a 1 -x {1.1.3.0 0.0.3.0 279 ------- null} - -t 27.9589 -s 21 -d 28 -p ack -e 40 -c 0 -i 570 -a 1 -x {1.1.3.0 0.0.3.0 279 ------- null} h -t 27.9589 -s 21 -d 28 -p ack -e 40 -c 0 -i 570 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 27.9605 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {0.0.3.0 1.1.3.0 280 ------- null} + -t 27.9605 -s 21 -d 28 -p ack -e 40 -c 0 -i 571 -a 1 -x {1.1.3.0 0.0.3.0 280 ------- null} - -t 27.9605 -s 21 -d 28 -p ack -e 40 -c 0 -i 571 -a 1 -x {1.1.3.0 0.0.3.0 280 ------- null} h -t 27.9605 -s 21 -d 28 -p ack -e 40 -c 0 -i 571 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 27.9621 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 552 -a 0 -x {0.0.3.0 1.1.3.0 281 ------- null} + -t 27.9621 -s 21 -d 28 -p ack -e 40 -c 0 -i 572 -a 1 -x {1.1.3.0 0.0.3.0 281 ------- null} - -t 27.9621 -s 21 -d 28 -p ack -e 40 -c 0 -i 572 -a 1 -x {1.1.3.0 0.0.3.0 281 ------- null} h -t 27.9621 -s 21 -d 28 -p ack -e 40 -c 0 -i 572 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 27.9637 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {0.0.3.0 1.1.3.0 282 ------- null} + -t 27.9637 -s 21 -d 28 -p ack -e 40 -c 0 -i 573 -a 1 -x {1.1.3.0 0.0.3.0 282 ------- null} - -t 27.9637 -s 21 -d 28 -p ack -e 40 -c 0 -i 573 -a 1 -x {1.1.3.0 0.0.3.0 282 ------- null} h -t 27.9637 -s 21 -d 28 -p ack -e 40 -c 0 -i 573 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 27.9653 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 554 -a 0 -x {0.0.3.0 1.1.3.0 283 ------- null} + -t 27.9653 -s 21 -d 28 -p ack -e 40 -c 0 -i 574 -a 1 -x {1.1.3.0 0.0.3.0 283 ------- null} - -t 27.9653 -s 21 -d 28 -p ack -e 40 -c 0 -i 574 -a 1 -x {1.1.3.0 0.0.3.0 283 ------- null} h -t 27.9653 -s 21 -d 28 -p ack -e 40 -c 0 -i 574 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 27.9669 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {0.0.3.0 1.1.3.0 284 ------- null} + -t 27.9669 -s 21 -d 28 -p ack -e 40 -c 0 -i 575 -a 1 -x {1.1.3.0 0.0.3.0 284 ------- null} - -t 27.9669 -s 21 -d 28 -p ack -e 40 -c 0 -i 575 -a 1 -x {1.1.3.0 0.0.3.0 284 ------- null} h -t 27.9669 -s 21 -d 28 -p ack -e 40 -c 0 -i 575 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 27.9685 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 556 -a 0 -x {0.0.3.0 1.1.3.0 285 ------- null} + -t 27.9685 -s 21 -d 28 -p ack -e 40 -c 0 -i 576 -a 1 -x {1.1.3.0 0.0.3.0 285 ------- null} - -t 27.9685 -s 21 -d 28 -p ack -e 40 -c 0 -i 576 -a 1 -x {1.1.3.0 0.0.3.0 285 ------- null} h -t 27.9685 -s 21 -d 28 -p ack -e 40 -c 0 -i 576 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 27.9701 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {0.0.3.0 1.1.3.0 286 ------- null} + -t 27.9701 -s 21 -d 28 -p ack -e 40 -c 0 -i 577 -a 1 -x {1.1.3.0 0.0.3.0 286 ------- null} - -t 27.9701 -s 21 -d 28 -p ack -e 40 -c 0 -i 577 -a 1 -x {1.1.3.0 0.0.3.0 286 ------- null} h -t 27.9701 -s 21 -d 28 -p ack -e 40 -c 0 -i 577 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 27.9717 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 558 -a 0 -x {0.0.3.0 1.1.3.0 287 ------- null} + -t 27.9717 -s 21 -d 28 -p ack -e 40 -c 0 -i 578 -a 1 -x {1.1.3.0 0.0.3.0 287 ------- null} - -t 27.9717 -s 21 -d 28 -p ack -e 40 -c 0 -i 578 -a 1 -x {1.1.3.0 0.0.3.0 287 ------- null} h -t 27.9717 -s 21 -d 28 -p ack -e 40 -c 0 -i 578 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 27.9733 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {0.0.3.0 1.1.3.0 288 ------- null} + -t 27.9733 -s 21 -d 28 -p ack -e 40 -c 0 -i 579 -a 1 -x {1.1.3.0 0.0.3.0 288 ------- null} - -t 27.9733 -s 21 -d 28 -p ack -e 40 -c 0 -i 579 -a 1 -x {1.1.3.0 0.0.3.0 288 ------- null} h -t 27.9733 -s 21 -d 28 -p ack -e 40 -c 0 -i 579 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 27.9749 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 560 -a 0 -x {0.0.3.0 1.1.3.0 289 ------- null} + -t 27.9749 -s 21 -d 28 -p ack -e 40 -c 0 -i 580 -a 1 -x {1.1.3.0 0.0.3.0 289 ------- null} - -t 27.9749 -s 21 -d 28 -p ack -e 40 -c 0 -i 580 -a 1 -x {1.1.3.0 0.0.3.0 289 ------- null} h -t 27.9749 -s 21 -d 28 -p ack -e 40 -c 0 -i 580 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 27.9765 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {0.0.3.0 1.1.3.0 290 ------- null} + -t 27.9765 -s 21 -d 28 -p ack -e 40 -c 0 -i 581 -a 1 -x {1.1.3.0 0.0.3.0 290 ------- null} - -t 27.9765 -s 21 -d 28 -p ack -e 40 -c 0 -i 581 -a 1 -x {1.1.3.0 0.0.3.0 290 ------- null} h -t 27.9765 -s 21 -d 28 -p ack -e 40 -c 0 -i 581 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 28.2961 -s 21 -d 28 -p ack -e 40 -c 0 -i 562 -a 1 -x {1.1.3.0 0.0.3.0 271 ------- null} + -t 28.2961 -s 28 -d 1 -p ack -e 40 -c 0 -i 562 -a 1 -x {1.1.3.0 0.0.3.0 271 ------- null} - -t 28.2961 -s 28 -d 1 -p ack -e 40 -c 0 -i 562 -a 1 -x {1.1.3.0 0.0.3.0 271 ------- null} h -t 28.2961 -s 28 -d 1 -p ack -e 40 -c 0 -i 562 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 28.2977 -s 21 -d 28 -p ack -e 40 -c 0 -i 563 -a 1 -x {1.1.3.0 0.0.3.0 272 ------- null} + -t 28.2977 -s 28 -d 1 -p ack -e 40 -c 0 -i 563 -a 1 -x {1.1.3.0 0.0.3.0 272 ------- null} - -t 28.2977 -s 28 -d 1 -p ack -e 40 -c 0 -i 563 -a 1 -x {1.1.3.0 0.0.3.0 272 ------- null} h -t 28.2977 -s 28 -d 1 -p ack -e 40 -c 0 -i 563 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 28.2993 -s 21 -d 28 -p ack -e 40 -c 0 -i 564 -a 1 -x {1.1.3.0 0.0.3.0 273 ------- null} + -t 28.2993 -s 28 -d 1 -p ack -e 40 -c 0 -i 564 -a 1 -x {1.1.3.0 0.0.3.0 273 ------- null} - -t 28.2993 -s 28 -d 1 -p ack -e 40 -c 0 -i 564 -a 1 -x {1.1.3.0 0.0.3.0 273 ------- null} h -t 28.2993 -s 28 -d 1 -p ack -e 40 -c 0 -i 564 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 28.3009 -s 21 -d 28 -p ack -e 40 -c 0 -i 565 -a 1 -x {1.1.3.0 0.0.3.0 274 ------- null} + -t 28.3009 -s 28 -d 1 -p ack -e 40 -c 0 -i 565 -a 1 -x {1.1.3.0 0.0.3.0 274 ------- null} - -t 28.3009 -s 28 -d 1 -p ack -e 40 -c 0 -i 565 -a 1 -x {1.1.3.0 0.0.3.0 274 ------- null} h -t 28.3009 -s 28 -d 1 -p ack -e 40 -c 0 -i 565 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 28.3025 -s 21 -d 28 -p ack -e 40 -c 0 -i 566 -a 1 -x {1.1.3.0 0.0.3.0 275 ------- null} + -t 28.3025 -s 28 -d 1 -p ack -e 40 -c 0 -i 566 -a 1 -x {1.1.3.0 0.0.3.0 275 ------- null} - -t 28.3025 -s 28 -d 1 -p ack -e 40 -c 0 -i 566 -a 1 -x {1.1.3.0 0.0.3.0 275 ------- null} h -t 28.3025 -s 28 -d 1 -p ack -e 40 -c 0 -i 566 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 28.3041 -s 21 -d 28 -p ack -e 40 -c 0 -i 567 -a 1 -x {1.1.3.0 0.0.3.0 276 ------- null} + -t 28.3041 -s 28 -d 1 -p ack -e 40 -c 0 -i 567 -a 1 -x {1.1.3.0 0.0.3.0 276 ------- null} - -t 28.3041 -s 28 -d 1 -p ack -e 40 -c 0 -i 567 -a 1 -x {1.1.3.0 0.0.3.0 276 ------- null} h -t 28.3041 -s 28 -d 1 -p ack -e 40 -c 0 -i 567 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 28.3057 -s 21 -d 28 -p ack -e 40 -c 0 -i 568 -a 1 -x {1.1.3.0 0.0.3.0 277 ------- null} + -t 28.3057 -s 28 -d 1 -p ack -e 40 -c 0 -i 568 -a 1 -x {1.1.3.0 0.0.3.0 277 ------- null} - -t 28.3057 -s 28 -d 1 -p ack -e 40 -c 0 -i 568 -a 1 -x {1.1.3.0 0.0.3.0 277 ------- null} h -t 28.3057 -s 28 -d 1 -p ack -e 40 -c 0 -i 568 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 28.3073 -s 21 -d 28 -p ack -e 40 -c 0 -i 569 -a 1 -x {1.1.3.0 0.0.3.0 278 ------- null} + -t 28.3073 -s 28 -d 1 -p ack -e 40 -c 0 -i 569 -a 1 -x {1.1.3.0 0.0.3.0 278 ------- null} - -t 28.3073 -s 28 -d 1 -p ack -e 40 -c 0 -i 569 -a 1 -x {1.1.3.0 0.0.3.0 278 ------- null} h -t 28.3073 -s 28 -d 1 -p ack -e 40 -c 0 -i 569 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 28.3089 -s 21 -d 28 -p ack -e 40 -c 0 -i 570 -a 1 -x {1.1.3.0 0.0.3.0 279 ------- null} + -t 28.3089 -s 28 -d 1 -p ack -e 40 -c 0 -i 570 -a 1 -x {1.1.3.0 0.0.3.0 279 ------- null} - -t 28.3089 -s 28 -d 1 -p ack -e 40 -c 0 -i 570 -a 1 -x {1.1.3.0 0.0.3.0 279 ------- null} h -t 28.3089 -s 28 -d 1 -p ack -e 40 -c 0 -i 570 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 28.3105 -s 21 -d 28 -p ack -e 40 -c 0 -i 571 -a 1 -x {1.1.3.0 0.0.3.0 280 ------- null} + -t 28.3105 -s 28 -d 1 -p ack -e 40 -c 0 -i 571 -a 1 -x {1.1.3.0 0.0.3.0 280 ------- null} - -t 28.3105 -s 28 -d 1 -p ack -e 40 -c 0 -i 571 -a 1 -x {1.1.3.0 0.0.3.0 280 ------- null} h -t 28.3105 -s 28 -d 1 -p ack -e 40 -c 0 -i 571 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 28.3121 -s 21 -d 28 -p ack -e 40 -c 0 -i 572 -a 1 -x {1.1.3.0 0.0.3.0 281 ------- null} + -t 28.3121 -s 28 -d 1 -p ack -e 40 -c 0 -i 572 -a 1 -x {1.1.3.0 0.0.3.0 281 ------- null} - -t 28.3121 -s 28 -d 1 -p ack -e 40 -c 0 -i 572 -a 1 -x {1.1.3.0 0.0.3.0 281 ------- null} h -t 28.3121 -s 28 -d 1 -p ack -e 40 -c 0 -i 572 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 28.3137 -s 21 -d 28 -p ack -e 40 -c 0 -i 573 -a 1 -x {1.1.3.0 0.0.3.0 282 ------- null} + -t 28.3137 -s 28 -d 1 -p ack -e 40 -c 0 -i 573 -a 1 -x {1.1.3.0 0.0.3.0 282 ------- null} - -t 28.3137 -s 28 -d 1 -p ack -e 40 -c 0 -i 573 -a 1 -x {1.1.3.0 0.0.3.0 282 ------- null} h -t 28.3137 -s 28 -d 1 -p ack -e 40 -c 0 -i 573 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 28.3153 -s 21 -d 28 -p ack -e 40 -c 0 -i 574 -a 1 -x {1.1.3.0 0.0.3.0 283 ------- null} + -t 28.3153 -s 28 -d 1 -p ack -e 40 -c 0 -i 574 -a 1 -x {1.1.3.0 0.0.3.0 283 ------- null} - -t 28.3153 -s 28 -d 1 -p ack -e 40 -c 0 -i 574 -a 1 -x {1.1.3.0 0.0.3.0 283 ------- null} h -t 28.3153 -s 28 -d 1 -p ack -e 40 -c 0 -i 574 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 28.3169 -s 21 -d 28 -p ack -e 40 -c 0 -i 575 -a 1 -x {1.1.3.0 0.0.3.0 284 ------- null} + -t 28.3169 -s 28 -d 1 -p ack -e 40 -c 0 -i 575 -a 1 -x {1.1.3.0 0.0.3.0 284 ------- null} - -t 28.3169 -s 28 -d 1 -p ack -e 40 -c 0 -i 575 -a 1 -x {1.1.3.0 0.0.3.0 284 ------- null} h -t 28.3169 -s 28 -d 1 -p ack -e 40 -c 0 -i 575 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 28.3185 -s 21 -d 28 -p ack -e 40 -c 0 -i 576 -a 1 -x {1.1.3.0 0.0.3.0 285 ------- null} + -t 28.3185 -s 28 -d 1 -p ack -e 40 -c 0 -i 576 -a 1 -x {1.1.3.0 0.0.3.0 285 ------- null} - -t 28.3185 -s 28 -d 1 -p ack -e 40 -c 0 -i 576 -a 1 -x {1.1.3.0 0.0.3.0 285 ------- null} h -t 28.3185 -s 28 -d 1 -p ack -e 40 -c 0 -i 576 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 28.3201 -s 21 -d 28 -p ack -e 40 -c 0 -i 577 -a 1 -x {1.1.3.0 0.0.3.0 286 ------- null} + -t 28.3201 -s 28 -d 1 -p ack -e 40 -c 0 -i 577 -a 1 -x {1.1.3.0 0.0.3.0 286 ------- null} - -t 28.3201 -s 28 -d 1 -p ack -e 40 -c 0 -i 577 -a 1 -x {1.1.3.0 0.0.3.0 286 ------- null} h -t 28.3201 -s 28 -d 1 -p ack -e 40 -c 0 -i 577 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 28.3217 -s 21 -d 28 -p ack -e 40 -c 0 -i 578 -a 1 -x {1.1.3.0 0.0.3.0 287 ------- null} + -t 28.3217 -s 28 -d 1 -p ack -e 40 -c 0 -i 578 -a 1 -x {1.1.3.0 0.0.3.0 287 ------- null} - -t 28.3217 -s 28 -d 1 -p ack -e 40 -c 0 -i 578 -a 1 -x {1.1.3.0 0.0.3.0 287 ------- null} h -t 28.3217 -s 28 -d 1 -p ack -e 40 -c 0 -i 578 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 28.3233 -s 21 -d 28 -p ack -e 40 -c 0 -i 579 -a 1 -x {1.1.3.0 0.0.3.0 288 ------- null} + -t 28.3233 -s 28 -d 1 -p ack -e 40 -c 0 -i 579 -a 1 -x {1.1.3.0 0.0.3.0 288 ------- null} - -t 28.3233 -s 28 -d 1 -p ack -e 40 -c 0 -i 579 -a 1 -x {1.1.3.0 0.0.3.0 288 ------- null} h -t 28.3233 -s 28 -d 1 -p ack -e 40 -c 0 -i 579 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 28.3249 -s 21 -d 28 -p ack -e 40 -c 0 -i 580 -a 1 -x {1.1.3.0 0.0.3.0 289 ------- null} + -t 28.3249 -s 28 -d 1 -p ack -e 40 -c 0 -i 580 -a 1 -x {1.1.3.0 0.0.3.0 289 ------- null} - -t 28.3249 -s 28 -d 1 -p ack -e 40 -c 0 -i 580 -a 1 -x {1.1.3.0 0.0.3.0 289 ------- null} h -t 28.3249 -s 28 -d 1 -p ack -e 40 -c 0 -i 580 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 28.3265 -s 21 -d 28 -p ack -e 40 -c 0 -i 581 -a 1 -x {1.1.3.0 0.0.3.0 290 ------- null} + -t 28.3265 -s 28 -d 1 -p ack -e 40 -c 0 -i 581 -a 1 -x {1.1.3.0 0.0.3.0 290 ------- null} - -t 28.3265 -s 28 -d 1 -p ack -e 40 -c 0 -i 581 -a 1 -x {1.1.3.0 0.0.3.0 290 ------- null} h -t 28.3265 -s 28 -d 1 -p ack -e 40 -c 0 -i 581 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 28.5962 -s 28 -d 1 -p ack -e 40 -c 0 -i 562 -a 1 -x {1.1.3.0 0.0.3.0 271 ------- null} + -t 28.5962 -s 1 -d 3 -p ack -e 40 -c 0 -i 562 -a 1 -x {1.1.3.0 0.0.3.0 271 ------- null} - -t 28.5962 -s 1 -d 3 -p ack -e 40 -c 0 -i 562 -a 1 -x {1.1.3.0 0.0.3.0 271 ------- null} h -t 28.5962 -s 1 -d 3 -p ack -e 40 -c 0 -i 562 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 28.5978 -s 28 -d 1 -p ack -e 40 -c 0 -i 563 -a 1 -x {1.1.3.0 0.0.3.0 272 ------- null} + -t 28.5978 -s 1 -d 3 -p ack -e 40 -c 0 -i 563 -a 1 -x {1.1.3.0 0.0.3.0 272 ------- null} - -t 28.5978 -s 1 -d 3 -p ack -e 40 -c 0 -i 563 -a 1 -x {1.1.3.0 0.0.3.0 272 ------- null} h -t 28.5978 -s 1 -d 3 -p ack -e 40 -c 0 -i 563 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 28.5994 -s 28 -d 1 -p ack -e 40 -c 0 -i 564 -a 1 -x {1.1.3.0 0.0.3.0 273 ------- null} + -t 28.5994 -s 1 -d 3 -p ack -e 40 -c 0 -i 564 -a 1 -x {1.1.3.0 0.0.3.0 273 ------- null} - -t 28.5994 -s 1 -d 3 -p ack -e 40 -c 0 -i 564 -a 1 -x {1.1.3.0 0.0.3.0 273 ------- null} h -t 28.5994 -s 1 -d 3 -p ack -e 40 -c 0 -i 564 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 28.601 -s 28 -d 1 -p ack -e 40 -c 0 -i 565 -a 1 -x {1.1.3.0 0.0.3.0 274 ------- null} + -t 28.601 -s 1 -d 3 -p ack -e 40 -c 0 -i 565 -a 1 -x {1.1.3.0 0.0.3.0 274 ------- null} - -t 28.601 -s 1 -d 3 -p ack -e 40 -c 0 -i 565 -a 1 -x {1.1.3.0 0.0.3.0 274 ------- null} h -t 28.601 -s 1 -d 3 -p ack -e 40 -c 0 -i 565 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 28.6026 -s 28 -d 1 -p ack -e 40 -c 0 -i 566 -a 1 -x {1.1.3.0 0.0.3.0 275 ------- null} + -t 28.6026 -s 1 -d 3 -p ack -e 40 -c 0 -i 566 -a 1 -x {1.1.3.0 0.0.3.0 275 ------- null} - -t 28.6026 -s 1 -d 3 -p ack -e 40 -c 0 -i 566 -a 1 -x {1.1.3.0 0.0.3.0 275 ------- null} h -t 28.6026 -s 1 -d 3 -p ack -e 40 -c 0 -i 566 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 28.6042 -s 28 -d 1 -p ack -e 40 -c 0 -i 567 -a 1 -x {1.1.3.0 0.0.3.0 276 ------- null} + -t 28.6042 -s 1 -d 3 -p ack -e 40 -c 0 -i 567 -a 1 -x {1.1.3.0 0.0.3.0 276 ------- null} - -t 28.6042 -s 1 -d 3 -p ack -e 40 -c 0 -i 567 -a 1 -x {1.1.3.0 0.0.3.0 276 ------- null} h -t 28.6042 -s 1 -d 3 -p ack -e 40 -c 0 -i 567 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 28.6058 -s 28 -d 1 -p ack -e 40 -c 0 -i 568 -a 1 -x {1.1.3.0 0.0.3.0 277 ------- null} + -t 28.6058 -s 1 -d 3 -p ack -e 40 -c 0 -i 568 -a 1 -x {1.1.3.0 0.0.3.0 277 ------- null} - -t 28.6058 -s 1 -d 3 -p ack -e 40 -c 0 -i 568 -a 1 -x {1.1.3.0 0.0.3.0 277 ------- null} h -t 28.6058 -s 1 -d 3 -p ack -e 40 -c 0 -i 568 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 28.6074 -s 28 -d 1 -p ack -e 40 -c 0 -i 569 -a 1 -x {1.1.3.0 0.0.3.0 278 ------- null} + -t 28.6074 -s 1 -d 3 -p ack -e 40 -c 0 -i 569 -a 1 -x {1.1.3.0 0.0.3.0 278 ------- null} - -t 28.6074 -s 1 -d 3 -p ack -e 40 -c 0 -i 569 -a 1 -x {1.1.3.0 0.0.3.0 278 ------- null} h -t 28.6074 -s 1 -d 3 -p ack -e 40 -c 0 -i 569 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 28.609 -s 28 -d 1 -p ack -e 40 -c 0 -i 570 -a 1 -x {1.1.3.0 0.0.3.0 279 ------- null} + -t 28.609 -s 1 -d 3 -p ack -e 40 -c 0 -i 570 -a 1 -x {1.1.3.0 0.0.3.0 279 ------- null} - -t 28.609 -s 1 -d 3 -p ack -e 40 -c 0 -i 570 -a 1 -x {1.1.3.0 0.0.3.0 279 ------- null} h -t 28.609 -s 1 -d 3 -p ack -e 40 -c 0 -i 570 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 28.6106 -s 28 -d 1 -p ack -e 40 -c 0 -i 571 -a 1 -x {1.1.3.0 0.0.3.0 280 ------- null} + -t 28.6106 -s 1 -d 3 -p ack -e 40 -c 0 -i 571 -a 1 -x {1.1.3.0 0.0.3.0 280 ------- null} - -t 28.6106 -s 1 -d 3 -p ack -e 40 -c 0 -i 571 -a 1 -x {1.1.3.0 0.0.3.0 280 ------- null} h -t 28.6106 -s 1 -d 3 -p ack -e 40 -c 0 -i 571 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 28.6122 -s 28 -d 1 -p ack -e 40 -c 0 -i 572 -a 1 -x {1.1.3.0 0.0.3.0 281 ------- null} + -t 28.6122 -s 1 -d 3 -p ack -e 40 -c 0 -i 572 -a 1 -x {1.1.3.0 0.0.3.0 281 ------- null} - -t 28.6122 -s 1 -d 3 -p ack -e 40 -c 0 -i 572 -a 1 -x {1.1.3.0 0.0.3.0 281 ------- null} h -t 28.6122 -s 1 -d 3 -p ack -e 40 -c 0 -i 572 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 28.6138 -s 28 -d 1 -p ack -e 40 -c 0 -i 573 -a 1 -x {1.1.3.0 0.0.3.0 282 ------- null} + -t 28.6138 -s 1 -d 3 -p ack -e 40 -c 0 -i 573 -a 1 -x {1.1.3.0 0.0.3.0 282 ------- null} - -t 28.6138 -s 1 -d 3 -p ack -e 40 -c 0 -i 573 -a 1 -x {1.1.3.0 0.0.3.0 282 ------- null} h -t 28.6138 -s 1 -d 3 -p ack -e 40 -c 0 -i 573 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 28.6154 -s 28 -d 1 -p ack -e 40 -c 0 -i 574 -a 1 -x {1.1.3.0 0.0.3.0 283 ------- null} + -t 28.6154 -s 1 -d 3 -p ack -e 40 -c 0 -i 574 -a 1 -x {1.1.3.0 0.0.3.0 283 ------- null} - -t 28.6154 -s 1 -d 3 -p ack -e 40 -c 0 -i 574 -a 1 -x {1.1.3.0 0.0.3.0 283 ------- null} h -t 28.6154 -s 1 -d 3 -p ack -e 40 -c 0 -i 574 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 28.617 -s 28 -d 1 -p ack -e 40 -c 0 -i 575 -a 1 -x {1.1.3.0 0.0.3.0 284 ------- null} + -t 28.617 -s 1 -d 3 -p ack -e 40 -c 0 -i 575 -a 1 -x {1.1.3.0 0.0.3.0 284 ------- null} - -t 28.617 -s 1 -d 3 -p ack -e 40 -c 0 -i 575 -a 1 -x {1.1.3.0 0.0.3.0 284 ------- null} h -t 28.617 -s 1 -d 3 -p ack -e 40 -c 0 -i 575 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 28.6186 -s 28 -d 1 -p ack -e 40 -c 0 -i 576 -a 1 -x {1.1.3.0 0.0.3.0 285 ------- null} + -t 28.6186 -s 1 -d 3 -p ack -e 40 -c 0 -i 576 -a 1 -x {1.1.3.0 0.0.3.0 285 ------- null} - -t 28.6186 -s 1 -d 3 -p ack -e 40 -c 0 -i 576 -a 1 -x {1.1.3.0 0.0.3.0 285 ------- null} h -t 28.6186 -s 1 -d 3 -p ack -e 40 -c 0 -i 576 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 28.6202 -s 28 -d 1 -p ack -e 40 -c 0 -i 577 -a 1 -x {1.1.3.0 0.0.3.0 286 ------- null} + -t 28.6202 -s 1 -d 3 -p ack -e 40 -c 0 -i 577 -a 1 -x {1.1.3.0 0.0.3.0 286 ------- null} - -t 28.6202 -s 1 -d 3 -p ack -e 40 -c 0 -i 577 -a 1 -x {1.1.3.0 0.0.3.0 286 ------- null} h -t 28.6202 -s 1 -d 3 -p ack -e 40 -c 0 -i 577 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 28.6218 -s 28 -d 1 -p ack -e 40 -c 0 -i 578 -a 1 -x {1.1.3.0 0.0.3.0 287 ------- null} + -t 28.6218 -s 1 -d 3 -p ack -e 40 -c 0 -i 578 -a 1 -x {1.1.3.0 0.0.3.0 287 ------- null} - -t 28.6218 -s 1 -d 3 -p ack -e 40 -c 0 -i 578 -a 1 -x {1.1.3.0 0.0.3.0 287 ------- null} h -t 28.6218 -s 1 -d 3 -p ack -e 40 -c 0 -i 578 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 28.6234 -s 28 -d 1 -p ack -e 40 -c 0 -i 579 -a 1 -x {1.1.3.0 0.0.3.0 288 ------- null} + -t 28.6234 -s 1 -d 3 -p ack -e 40 -c 0 -i 579 -a 1 -x {1.1.3.0 0.0.3.0 288 ------- null} - -t 28.6234 -s 1 -d 3 -p ack -e 40 -c 0 -i 579 -a 1 -x {1.1.3.0 0.0.3.0 288 ------- null} h -t 28.6234 -s 1 -d 3 -p ack -e 40 -c 0 -i 579 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 28.625 -s 28 -d 1 -p ack -e 40 -c 0 -i 580 -a 1 -x {1.1.3.0 0.0.3.0 289 ------- null} + -t 28.625 -s 1 -d 3 -p ack -e 40 -c 0 -i 580 -a 1 -x {1.1.3.0 0.0.3.0 289 ------- null} - -t 28.625 -s 1 -d 3 -p ack -e 40 -c 0 -i 580 -a 1 -x {1.1.3.0 0.0.3.0 289 ------- null} h -t 28.625 -s 1 -d 3 -p ack -e 40 -c 0 -i 580 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 28.6266 -s 28 -d 1 -p ack -e 40 -c 0 -i 581 -a 1 -x {1.1.3.0 0.0.3.0 290 ------- null} + -t 28.6266 -s 1 -d 3 -p ack -e 40 -c 0 -i 581 -a 1 -x {1.1.3.0 0.0.3.0 290 ------- null} - -t 28.6266 -s 1 -d 3 -p ack -e 40 -c 0 -i 581 -a 1 -x {1.1.3.0 0.0.3.0 290 ------- null} h -t 28.6266 -s 1 -d 3 -p ack -e 40 -c 0 -i 581 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 28.7363 -s 1 -d 3 -p ack -e 40 -c 0 -i 562 -a 1 -x {1.1.3.0 0.0.3.0 271 ------- null} + -t 28.7363 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 582 -a 0 -x {0.0.3.0 1.1.3.0 291 ------- null} - -t 28.7363 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 582 -a 0 -x {0.0.3.0 1.1.3.0 291 ------- null} h -t 28.7363 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 582 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 28.7379 -s 1 -d 3 -p ack -e 40 -c 0 -i 563 -a 1 -x {1.1.3.0 0.0.3.0 272 ------- null} + -t 28.7379 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {0.0.3.0 1.1.3.0 292 ------- null} - -t 28.7379 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {0.0.3.0 1.1.3.0 292 ------- null} h -t 28.7379 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 28.7395 -s 1 -d 3 -p ack -e 40 -c 0 -i 564 -a 1 -x {1.1.3.0 0.0.3.0 273 ------- null} + -t 28.7395 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 584 -a 0 -x {0.0.3.0 1.1.3.0 293 ------- null} - -t 28.7395 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 584 -a 0 -x {0.0.3.0 1.1.3.0 293 ------- null} h -t 28.7395 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 584 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 28.7411 -s 1 -d 3 -p ack -e 40 -c 0 -i 565 -a 1 -x {1.1.3.0 0.0.3.0 274 ------- null} + -t 28.7411 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {0.0.3.0 1.1.3.0 294 ------- null} - -t 28.7411 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {0.0.3.0 1.1.3.0 294 ------- null} h -t 28.7411 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 28.7427 -s 1 -d 3 -p ack -e 40 -c 0 -i 566 -a 1 -x {1.1.3.0 0.0.3.0 275 ------- null} + -t 28.7427 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 586 -a 0 -x {0.0.3.0 1.1.3.0 295 ------- null} - -t 28.7427 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 586 -a 0 -x {0.0.3.0 1.1.3.0 295 ------- null} h -t 28.7427 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 586 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 28.7443 -s 1 -d 3 -p ack -e 40 -c 0 -i 567 -a 1 -x {1.1.3.0 0.0.3.0 276 ------- null} + -t 28.7443 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {0.0.3.0 1.1.3.0 296 ------- null} - -t 28.7443 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {0.0.3.0 1.1.3.0 296 ------- null} h -t 28.7443 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 28.7459 -s 1 -d 3 -p ack -e 40 -c 0 -i 568 -a 1 -x {1.1.3.0 0.0.3.0 277 ------- null} + -t 28.7459 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 588 -a 0 -x {0.0.3.0 1.1.3.0 297 ------- null} - -t 28.7459 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 588 -a 0 -x {0.0.3.0 1.1.3.0 297 ------- null} h -t 28.7459 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 588 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 28.7475 -s 1 -d 3 -p ack -e 40 -c 0 -i 569 -a 1 -x {1.1.3.0 0.0.3.0 278 ------- null} + -t 28.7475 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {0.0.3.0 1.1.3.0 298 ------- null} - -t 28.7475 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {0.0.3.0 1.1.3.0 298 ------- null} h -t 28.7475 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 28.7491 -s 1 -d 3 -p ack -e 40 -c 0 -i 570 -a 1 -x {1.1.3.0 0.0.3.0 279 ------- null} + -t 28.7491 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 590 -a 0 -x {0.0.3.0 1.1.3.0 299 ------- null} - -t 28.7491 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 590 -a 0 -x {0.0.3.0 1.1.3.0 299 ------- null} h -t 28.7491 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 590 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 28.7507 -s 1 -d 3 -p ack -e 40 -c 0 -i 571 -a 1 -x {1.1.3.0 0.0.3.0 280 ------- null} + -t 28.7507 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {0.0.3.0 1.1.3.0 300 ------- null} - -t 28.7507 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {0.0.3.0 1.1.3.0 300 ------- null} h -t 28.7507 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 28.7523 -s 1 -d 3 -p ack -e 40 -c 0 -i 572 -a 1 -x {1.1.3.0 0.0.3.0 281 ------- null} + -t 28.7523 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 592 -a 0 -x {0.0.3.0 1.1.3.0 301 ------- null} - -t 28.7523 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 592 -a 0 -x {0.0.3.0 1.1.3.0 301 ------- null} h -t 28.7523 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 592 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 28.7539 -s 1 -d 3 -p ack -e 40 -c 0 -i 573 -a 1 -x {1.1.3.0 0.0.3.0 282 ------- null} + -t 28.7539 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {0.0.3.0 1.1.3.0 302 ------- null} - -t 28.7539 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {0.0.3.0 1.1.3.0 302 ------- null} h -t 28.7539 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 28.7555 -s 1 -d 3 -p ack -e 40 -c 0 -i 574 -a 1 -x {1.1.3.0 0.0.3.0 283 ------- null} + -t 28.7555 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 594 -a 0 -x {0.0.3.0 1.1.3.0 303 ------- null} - -t 28.7555 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 594 -a 0 -x {0.0.3.0 1.1.3.0 303 ------- null} h -t 28.7555 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 594 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 28.7571 -s 1 -d 3 -p ack -e 40 -c 0 -i 575 -a 1 -x {1.1.3.0 0.0.3.0 284 ------- null} + -t 28.7571 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {0.0.3.0 1.1.3.0 304 ------- null} - -t 28.7571 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {0.0.3.0 1.1.3.0 304 ------- null} h -t 28.7571 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 28.7587 -s 1 -d 3 -p ack -e 40 -c 0 -i 576 -a 1 -x {1.1.3.0 0.0.3.0 285 ------- null} + -t 28.7587 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 596 -a 0 -x {0.0.3.0 1.1.3.0 305 ------- null} - -t 28.7587 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 596 -a 0 -x {0.0.3.0 1.1.3.0 305 ------- null} h -t 28.7587 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 596 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 28.7603 -s 1 -d 3 -p ack -e 40 -c 0 -i 577 -a 1 -x {1.1.3.0 0.0.3.0 286 ------- null} + -t 28.7603 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {0.0.3.0 1.1.3.0 306 ------- null} - -t 28.7603 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {0.0.3.0 1.1.3.0 306 ------- null} h -t 28.7603 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 28.7619 -s 1 -d 3 -p ack -e 40 -c 0 -i 578 -a 1 -x {1.1.3.0 0.0.3.0 287 ------- null} + -t 28.7619 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 598 -a 0 -x {0.0.3.0 1.1.3.0 307 ------- null} - -t 28.7619 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 598 -a 0 -x {0.0.3.0 1.1.3.0 307 ------- null} h -t 28.7619 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 598 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 28.7635 -s 1 -d 3 -p ack -e 40 -c 0 -i 579 -a 1 -x {1.1.3.0 0.0.3.0 288 ------- null} + -t 28.7635 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {0.0.3.0 1.1.3.0 308 ------- null} - -t 28.7635 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {0.0.3.0 1.1.3.0 308 ------- null} h -t 28.7635 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 28.7651 -s 1 -d 3 -p ack -e 40 -c 0 -i 580 -a 1 -x {1.1.3.0 0.0.3.0 289 ------- null} + -t 28.7651 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 600 -a 0 -x {0.0.3.0 1.1.3.0 309 ------- null} - -t 28.7651 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 600 -a 0 -x {0.0.3.0 1.1.3.0 309 ------- null} h -t 28.7651 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 600 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 28.7667 -s 1 -d 3 -p ack -e 40 -c 0 -i 581 -a 1 -x {1.1.3.0 0.0.3.0 290 ------- null} + -t 28.7667 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {0.0.3.0 1.1.3.0 310 ------- null} - -t 28.7667 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {0.0.3.0 1.1.3.0 310 ------- null} h -t 28.7667 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 28.8979 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 582 -a 0 -x {0.0.3.0 1.1.3.0 291 ------- null} + -t 28.8979 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 582 -a 0 -x {0.0.3.0 1.1.3.0 291 ------- null} - -t 28.8979 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 582 -a 0 -x {0.0.3.0 1.1.3.0 291 ------- null} h -t 28.8979 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 582 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 28.8995 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {0.0.3.0 1.1.3.0 292 ------- null} + -t 28.8995 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {0.0.3.0 1.1.3.0 292 ------- null} - -t 28.8995 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {0.0.3.0 1.1.3.0 292 ------- null} h -t 28.8995 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 28.9011 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 584 -a 0 -x {0.0.3.0 1.1.3.0 293 ------- null} + -t 28.9011 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 584 -a 0 -x {0.0.3.0 1.1.3.0 293 ------- null} - -t 28.9011 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 584 -a 0 -x {0.0.3.0 1.1.3.0 293 ------- null} h -t 28.9011 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 584 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 28.9027 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {0.0.3.0 1.1.3.0 294 ------- null} + -t 28.9027 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {0.0.3.0 1.1.3.0 294 ------- null} - -t 28.9027 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {0.0.3.0 1.1.3.0 294 ------- null} h -t 28.9027 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 28.9043 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 586 -a 0 -x {0.0.3.0 1.1.3.0 295 ------- null} + -t 28.9043 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 586 -a 0 -x {0.0.3.0 1.1.3.0 295 ------- null} - -t 28.9043 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 586 -a 0 -x {0.0.3.0 1.1.3.0 295 ------- null} h -t 28.9043 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 586 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 28.9059 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {0.0.3.0 1.1.3.0 296 ------- null} + -t 28.9059 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {0.0.3.0 1.1.3.0 296 ------- null} - -t 28.9059 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {0.0.3.0 1.1.3.0 296 ------- null} h -t 28.9059 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 28.9075 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 588 -a 0 -x {0.0.3.0 1.1.3.0 297 ------- null} + -t 28.9075 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 588 -a 0 -x {0.0.3.0 1.1.3.0 297 ------- null} - -t 28.9075 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 588 -a 0 -x {0.0.3.0 1.1.3.0 297 ------- null} h -t 28.9075 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 588 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 28.9091 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {0.0.3.0 1.1.3.0 298 ------- null} + -t 28.9091 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {0.0.3.0 1.1.3.0 298 ------- null} - -t 28.9091 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {0.0.3.0 1.1.3.0 298 ------- null} h -t 28.9091 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 28.9107 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 590 -a 0 -x {0.0.3.0 1.1.3.0 299 ------- null} + -t 28.9107 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 590 -a 0 -x {0.0.3.0 1.1.3.0 299 ------- null} - -t 28.9107 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 590 -a 0 -x {0.0.3.0 1.1.3.0 299 ------- null} h -t 28.9107 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 590 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 28.9123 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {0.0.3.0 1.1.3.0 300 ------- null} + -t 28.9123 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {0.0.3.0 1.1.3.0 300 ------- null} - -t 28.9123 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {0.0.3.0 1.1.3.0 300 ------- null} h -t 28.9123 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 28.9139 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 592 -a 0 -x {0.0.3.0 1.1.3.0 301 ------- null} + -t 28.9139 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 592 -a 0 -x {0.0.3.0 1.1.3.0 301 ------- null} - -t 28.9139 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 592 -a 0 -x {0.0.3.0 1.1.3.0 301 ------- null} h -t 28.9139 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 592 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 28.9155 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {0.0.3.0 1.1.3.0 302 ------- null} + -t 28.9155 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {0.0.3.0 1.1.3.0 302 ------- null} - -t 28.9155 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {0.0.3.0 1.1.3.0 302 ------- null} h -t 28.9155 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 28.9171 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 594 -a 0 -x {0.0.3.0 1.1.3.0 303 ------- null} + -t 28.9171 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 594 -a 0 -x {0.0.3.0 1.1.3.0 303 ------- null} - -t 28.9171 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 594 -a 0 -x {0.0.3.0 1.1.3.0 303 ------- null} h -t 28.9171 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 594 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 28.9187 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {0.0.3.0 1.1.3.0 304 ------- null} + -t 28.9187 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {0.0.3.0 1.1.3.0 304 ------- null} - -t 28.9187 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {0.0.3.0 1.1.3.0 304 ------- null} h -t 28.9187 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 28.9203 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 596 -a 0 -x {0.0.3.0 1.1.3.0 305 ------- null} + -t 28.9203 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 596 -a 0 -x {0.0.3.0 1.1.3.0 305 ------- null} - -t 28.9203 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 596 -a 0 -x {0.0.3.0 1.1.3.0 305 ------- null} h -t 28.9203 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 596 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 28.9219 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {0.0.3.0 1.1.3.0 306 ------- null} + -t 28.9219 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {0.0.3.0 1.1.3.0 306 ------- null} - -t 28.9219 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {0.0.3.0 1.1.3.0 306 ------- null} h -t 28.9219 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 28.9235 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 598 -a 0 -x {0.0.3.0 1.1.3.0 307 ------- null} + -t 28.9235 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 598 -a 0 -x {0.0.3.0 1.1.3.0 307 ------- null} - -t 28.9235 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 598 -a 0 -x {0.0.3.0 1.1.3.0 307 ------- null} h -t 28.9235 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 598 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 28.9251 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {0.0.3.0 1.1.3.0 308 ------- null} + -t 28.9251 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {0.0.3.0 1.1.3.0 308 ------- null} - -t 28.9251 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {0.0.3.0 1.1.3.0 308 ------- null} h -t 28.9251 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 28.9267 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 600 -a 0 -x {0.0.3.0 1.1.3.0 309 ------- null} + -t 28.9267 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 600 -a 0 -x {0.0.3.0 1.1.3.0 309 ------- null} - -t 28.9267 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 600 -a 0 -x {0.0.3.0 1.1.3.0 309 ------- null} h -t 28.9267 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 600 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 28.9283 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {0.0.3.0 1.1.3.0 310 ------- null} + -t 28.9283 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {0.0.3.0 1.1.3.0 310 ------- null} - -t 28.9283 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {0.0.3.0 1.1.3.0 310 ------- null} h -t 28.9283 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.1995 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 582 -a 0 -x {0.0.3.0 1.1.3.0 291 ------- null} + -t 29.1995 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 582 -a 0 -x {0.0.3.0 1.1.3.0 291 ------- null} - -t 29.1995 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 582 -a 0 -x {0.0.3.0 1.1.3.0 291 ------- null} h -t 29.1995 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 582 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.2011 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {0.0.3.0 1.1.3.0 292 ------- null} + -t 29.2011 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {0.0.3.0 1.1.3.0 292 ------- null} - -t 29.2011 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {0.0.3.0 1.1.3.0 292 ------- null} h -t 29.2011 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.2027 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 584 -a 0 -x {0.0.3.0 1.1.3.0 293 ------- null} + -t 29.2027 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 584 -a 0 -x {0.0.3.0 1.1.3.0 293 ------- null} - -t 29.2027 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 584 -a 0 -x {0.0.3.0 1.1.3.0 293 ------- null} h -t 29.2027 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 584 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.2043 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {0.0.3.0 1.1.3.0 294 ------- null} + -t 29.2043 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {0.0.3.0 1.1.3.0 294 ------- null} - -t 29.2043 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {0.0.3.0 1.1.3.0 294 ------- null} h -t 29.2043 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.2059 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 586 -a 0 -x {0.0.3.0 1.1.3.0 295 ------- null} + -t 29.2059 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 586 -a 0 -x {0.0.3.0 1.1.3.0 295 ------- null} - -t 29.2059 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 586 -a 0 -x {0.0.3.0 1.1.3.0 295 ------- null} h -t 29.2059 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 586 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.2075 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {0.0.3.0 1.1.3.0 296 ------- null} + -t 29.2075 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {0.0.3.0 1.1.3.0 296 ------- null} - -t 29.2075 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {0.0.3.0 1.1.3.0 296 ------- null} h -t 29.2075 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.2091 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 588 -a 0 -x {0.0.3.0 1.1.3.0 297 ------- null} + -t 29.2091 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 588 -a 0 -x {0.0.3.0 1.1.3.0 297 ------- null} - -t 29.2091 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 588 -a 0 -x {0.0.3.0 1.1.3.0 297 ------- null} h -t 29.2091 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 588 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.2107 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {0.0.3.0 1.1.3.0 298 ------- null} + -t 29.2107 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {0.0.3.0 1.1.3.0 298 ------- null} - -t 29.2107 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {0.0.3.0 1.1.3.0 298 ------- null} h -t 29.2107 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.2123 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 590 -a 0 -x {0.0.3.0 1.1.3.0 299 ------- null} + -t 29.2123 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 590 -a 0 -x {0.0.3.0 1.1.3.0 299 ------- null} - -t 29.2123 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 590 -a 0 -x {0.0.3.0 1.1.3.0 299 ------- null} h -t 29.2123 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 590 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.2139 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {0.0.3.0 1.1.3.0 300 ------- null} + -t 29.2139 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {0.0.3.0 1.1.3.0 300 ------- null} - -t 29.2139 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {0.0.3.0 1.1.3.0 300 ------- null} h -t 29.2139 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.2155 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 592 -a 0 -x {0.0.3.0 1.1.3.0 301 ------- null} + -t 29.2155 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 592 -a 0 -x {0.0.3.0 1.1.3.0 301 ------- null} - -t 29.2155 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 592 -a 0 -x {0.0.3.0 1.1.3.0 301 ------- null} h -t 29.2155 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 592 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.2171 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {0.0.3.0 1.1.3.0 302 ------- null} + -t 29.2171 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {0.0.3.0 1.1.3.0 302 ------- null} - -t 29.2171 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {0.0.3.0 1.1.3.0 302 ------- null} h -t 29.2171 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.2187 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 594 -a 0 -x {0.0.3.0 1.1.3.0 303 ------- null} + -t 29.2187 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 594 -a 0 -x {0.0.3.0 1.1.3.0 303 ------- null} - -t 29.2187 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 594 -a 0 -x {0.0.3.0 1.1.3.0 303 ------- null} h -t 29.2187 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 594 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.2203 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {0.0.3.0 1.1.3.0 304 ------- null} + -t 29.2203 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {0.0.3.0 1.1.3.0 304 ------- null} - -t 29.2203 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {0.0.3.0 1.1.3.0 304 ------- null} h -t 29.2203 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.2219 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 596 -a 0 -x {0.0.3.0 1.1.3.0 305 ------- null} + -t 29.2219 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 596 -a 0 -x {0.0.3.0 1.1.3.0 305 ------- null} - -t 29.2219 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 596 -a 0 -x {0.0.3.0 1.1.3.0 305 ------- null} h -t 29.2219 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 596 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.2235 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {0.0.3.0 1.1.3.0 306 ------- null} + -t 29.2235 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {0.0.3.0 1.1.3.0 306 ------- null} - -t 29.2235 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {0.0.3.0 1.1.3.0 306 ------- null} h -t 29.2235 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.2251 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 598 -a 0 -x {0.0.3.0 1.1.3.0 307 ------- null} + -t 29.2251 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 598 -a 0 -x {0.0.3.0 1.1.3.0 307 ------- null} - -t 29.2251 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 598 -a 0 -x {0.0.3.0 1.1.3.0 307 ------- null} h -t 29.2251 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 598 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.2267 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {0.0.3.0 1.1.3.0 308 ------- null} + -t 29.2267 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {0.0.3.0 1.1.3.0 308 ------- null} - -t 29.2267 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {0.0.3.0 1.1.3.0 308 ------- null} h -t 29.2267 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.2283 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 600 -a 0 -x {0.0.3.0 1.1.3.0 309 ------- null} + -t 29.2283 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 600 -a 0 -x {0.0.3.0 1.1.3.0 309 ------- null} - -t 29.2283 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 600 -a 0 -x {0.0.3.0 1.1.3.0 309 ------- null} h -t 29.2283 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 600 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.2299 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {0.0.3.0 1.1.3.0 310 ------- null} + -t 29.2299 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {0.0.3.0 1.1.3.0 310 ------- null} - -t 29.2299 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {0.0.3.0 1.1.3.0 310 ------- null} h -t 29.2299 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.3011 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 582 -a 0 -x {0.0.3.0 1.1.3.0 291 ------- null} + -t 29.3011 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 582 -a 0 -x {0.0.3.0 1.1.3.0 291 ------- null} - -t 29.3011 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 582 -a 0 -x {0.0.3.0 1.1.3.0 291 ------- null} h -t 29.3011 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 582 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.3027 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {0.0.3.0 1.1.3.0 292 ------- null} + -t 29.3027 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {0.0.3.0 1.1.3.0 292 ------- null} - -t 29.3027 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {0.0.3.0 1.1.3.0 292 ------- null} h -t 29.3027 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.3043 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 584 -a 0 -x {0.0.3.0 1.1.3.0 293 ------- null} + -t 29.3043 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 584 -a 0 -x {0.0.3.0 1.1.3.0 293 ------- null} - -t 29.3043 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 584 -a 0 -x {0.0.3.0 1.1.3.0 293 ------- null} h -t 29.3043 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 584 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.3059 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {0.0.3.0 1.1.3.0 294 ------- null} + -t 29.3059 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {0.0.3.0 1.1.3.0 294 ------- null} - -t 29.3059 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {0.0.3.0 1.1.3.0 294 ------- null} h -t 29.3059 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.3075 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 586 -a 0 -x {0.0.3.0 1.1.3.0 295 ------- null} + -t 29.3075 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 586 -a 0 -x {0.0.3.0 1.1.3.0 295 ------- null} - -t 29.3075 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 586 -a 0 -x {0.0.3.0 1.1.3.0 295 ------- null} h -t 29.3075 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 586 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.3091 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {0.0.3.0 1.1.3.0 296 ------- null} + -t 29.3091 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {0.0.3.0 1.1.3.0 296 ------- null} - -t 29.3091 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {0.0.3.0 1.1.3.0 296 ------- null} h -t 29.3091 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.3107 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 588 -a 0 -x {0.0.3.0 1.1.3.0 297 ------- null} + -t 29.3107 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 588 -a 0 -x {0.0.3.0 1.1.3.0 297 ------- null} - -t 29.3107 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 588 -a 0 -x {0.0.3.0 1.1.3.0 297 ------- null} h -t 29.3107 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 588 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.3123 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {0.0.3.0 1.1.3.0 298 ------- null} + -t 29.3123 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {0.0.3.0 1.1.3.0 298 ------- null} - -t 29.3123 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {0.0.3.0 1.1.3.0 298 ------- null} h -t 29.3123 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.3139 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 590 -a 0 -x {0.0.3.0 1.1.3.0 299 ------- null} + -t 29.3139 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 590 -a 0 -x {0.0.3.0 1.1.3.0 299 ------- null} - -t 29.3139 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 590 -a 0 -x {0.0.3.0 1.1.3.0 299 ------- null} h -t 29.3139 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 590 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.3155 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {0.0.3.0 1.1.3.0 300 ------- null} + -t 29.3155 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {0.0.3.0 1.1.3.0 300 ------- null} - -t 29.3155 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {0.0.3.0 1.1.3.0 300 ------- null} h -t 29.3155 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.3171 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 592 -a 0 -x {0.0.3.0 1.1.3.0 301 ------- null} + -t 29.3171 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 592 -a 0 -x {0.0.3.0 1.1.3.0 301 ------- null} - -t 29.3171 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 592 -a 0 -x {0.0.3.0 1.1.3.0 301 ------- null} h -t 29.3171 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 592 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.3187 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {0.0.3.0 1.1.3.0 302 ------- null} + -t 29.3187 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {0.0.3.0 1.1.3.0 302 ------- null} - -t 29.3187 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {0.0.3.0 1.1.3.0 302 ------- null} h -t 29.3187 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.3203 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 594 -a 0 -x {0.0.3.0 1.1.3.0 303 ------- null} + -t 29.3203 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 594 -a 0 -x {0.0.3.0 1.1.3.0 303 ------- null} - -t 29.3203 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 594 -a 0 -x {0.0.3.0 1.1.3.0 303 ------- null} h -t 29.3203 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 594 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.3219 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {0.0.3.0 1.1.3.0 304 ------- null} + -t 29.3219 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {0.0.3.0 1.1.3.0 304 ------- null} - -t 29.3219 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {0.0.3.0 1.1.3.0 304 ------- null} h -t 29.3219 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.3235 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 596 -a 0 -x {0.0.3.0 1.1.3.0 305 ------- null} + -t 29.3235 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 596 -a 0 -x {0.0.3.0 1.1.3.0 305 ------- null} - -t 29.3235 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 596 -a 0 -x {0.0.3.0 1.1.3.0 305 ------- null} h -t 29.3235 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 596 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.3251 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {0.0.3.0 1.1.3.0 306 ------- null} + -t 29.3251 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {0.0.3.0 1.1.3.0 306 ------- null} - -t 29.3251 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {0.0.3.0 1.1.3.0 306 ------- null} h -t 29.3251 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.3267 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 598 -a 0 -x {0.0.3.0 1.1.3.0 307 ------- null} + -t 29.3267 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 598 -a 0 -x {0.0.3.0 1.1.3.0 307 ------- null} - -t 29.3267 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 598 -a 0 -x {0.0.3.0 1.1.3.0 307 ------- null} h -t 29.3267 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 598 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.3283 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {0.0.3.0 1.1.3.0 308 ------- null} + -t 29.3283 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {0.0.3.0 1.1.3.0 308 ------- null} - -t 29.3283 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {0.0.3.0 1.1.3.0 308 ------- null} h -t 29.3283 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.3299 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 600 -a 0 -x {0.0.3.0 1.1.3.0 309 ------- null} + -t 29.3299 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 600 -a 0 -x {0.0.3.0 1.1.3.0 309 ------- null} - -t 29.3299 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 600 -a 0 -x {0.0.3.0 1.1.3.0 309 ------- null} h -t 29.3299 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 600 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.3315 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {0.0.3.0 1.1.3.0 310 ------- null} + -t 29.3315 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {0.0.3.0 1.1.3.0 310 ------- null} - -t 29.3315 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {0.0.3.0 1.1.3.0 310 ------- null} h -t 29.3315 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.3827 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 582 -a 0 -x {0.0.3.0 1.1.3.0 291 ------- null} + -t 29.3827 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 582 -a 0 -x {0.0.3.0 1.1.3.0 291 ------- null} - -t 29.3827 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 582 -a 0 -x {0.0.3.0 1.1.3.0 291 ------- null} h -t 29.3827 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 582 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.3843 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {0.0.3.0 1.1.3.0 292 ------- null} + -t 29.3843 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {0.0.3.0 1.1.3.0 292 ------- null} - -t 29.3843 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {0.0.3.0 1.1.3.0 292 ------- null} h -t 29.3843 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.3859 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 584 -a 0 -x {0.0.3.0 1.1.3.0 293 ------- null} + -t 29.3859 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 584 -a 0 -x {0.0.3.0 1.1.3.0 293 ------- null} - -t 29.3859 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 584 -a 0 -x {0.0.3.0 1.1.3.0 293 ------- null} h -t 29.3859 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 584 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.3875 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {0.0.3.0 1.1.3.0 294 ------- null} + -t 29.3875 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {0.0.3.0 1.1.3.0 294 ------- null} - -t 29.3875 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {0.0.3.0 1.1.3.0 294 ------- null} h -t 29.3875 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.3891 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 586 -a 0 -x {0.0.3.0 1.1.3.0 295 ------- null} + -t 29.3891 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 586 -a 0 -x {0.0.3.0 1.1.3.0 295 ------- null} - -t 29.3891 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 586 -a 0 -x {0.0.3.0 1.1.3.0 295 ------- null} h -t 29.3891 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 586 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.3907 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {0.0.3.0 1.1.3.0 296 ------- null} + -t 29.3907 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {0.0.3.0 1.1.3.0 296 ------- null} - -t 29.3907 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {0.0.3.0 1.1.3.0 296 ------- null} h -t 29.3907 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.3923 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 588 -a 0 -x {0.0.3.0 1.1.3.0 297 ------- null} + -t 29.3923 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 588 -a 0 -x {0.0.3.0 1.1.3.0 297 ------- null} - -t 29.3923 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 588 -a 0 -x {0.0.3.0 1.1.3.0 297 ------- null} h -t 29.3923 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 588 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.3939 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {0.0.3.0 1.1.3.0 298 ------- null} + -t 29.3939 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {0.0.3.0 1.1.3.0 298 ------- null} - -t 29.3939 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {0.0.3.0 1.1.3.0 298 ------- null} h -t 29.3939 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.3955 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 590 -a 0 -x {0.0.3.0 1.1.3.0 299 ------- null} + -t 29.3955 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 590 -a 0 -x {0.0.3.0 1.1.3.0 299 ------- null} - -t 29.3955 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 590 -a 0 -x {0.0.3.0 1.1.3.0 299 ------- null} h -t 29.3955 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 590 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.3971 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {0.0.3.0 1.1.3.0 300 ------- null} + -t 29.3971 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {0.0.3.0 1.1.3.0 300 ------- null} - -t 29.3971 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {0.0.3.0 1.1.3.0 300 ------- null} h -t 29.3971 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.3987 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 592 -a 0 -x {0.0.3.0 1.1.3.0 301 ------- null} + -t 29.3987 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 592 -a 0 -x {0.0.3.0 1.1.3.0 301 ------- null} - -t 29.3987 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 592 -a 0 -x {0.0.3.0 1.1.3.0 301 ------- null} h -t 29.3987 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 592 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.4003 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {0.0.3.0 1.1.3.0 302 ------- null} + -t 29.4003 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {0.0.3.0 1.1.3.0 302 ------- null} - -t 29.4003 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {0.0.3.0 1.1.3.0 302 ------- null} h -t 29.4003 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.4019 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 594 -a 0 -x {0.0.3.0 1.1.3.0 303 ------- null} + -t 29.4019 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 594 -a 0 -x {0.0.3.0 1.1.3.0 303 ------- null} - -t 29.4019 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 594 -a 0 -x {0.0.3.0 1.1.3.0 303 ------- null} h -t 29.4019 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 594 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.4035 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {0.0.3.0 1.1.3.0 304 ------- null} + -t 29.4035 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {0.0.3.0 1.1.3.0 304 ------- null} - -t 29.4035 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {0.0.3.0 1.1.3.0 304 ------- null} h -t 29.4035 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.4051 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 596 -a 0 -x {0.0.3.0 1.1.3.0 305 ------- null} + -t 29.4051 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 596 -a 0 -x {0.0.3.0 1.1.3.0 305 ------- null} - -t 29.4051 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 596 -a 0 -x {0.0.3.0 1.1.3.0 305 ------- null} h -t 29.4051 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 596 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.4067 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {0.0.3.0 1.1.3.0 306 ------- null} + -t 29.4067 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {0.0.3.0 1.1.3.0 306 ------- null} - -t 29.4067 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {0.0.3.0 1.1.3.0 306 ------- null} h -t 29.4067 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.4083 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 598 -a 0 -x {0.0.3.0 1.1.3.0 307 ------- null} + -t 29.4083 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 598 -a 0 -x {0.0.3.0 1.1.3.0 307 ------- null} - -t 29.4083 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 598 -a 0 -x {0.0.3.0 1.1.3.0 307 ------- null} h -t 29.4083 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 598 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.4099 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {0.0.3.0 1.1.3.0 308 ------- null} + -t 29.4099 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {0.0.3.0 1.1.3.0 308 ------- null} - -t 29.4099 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {0.0.3.0 1.1.3.0 308 ------- null} h -t 29.4099 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.4115 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 600 -a 0 -x {0.0.3.0 1.1.3.0 309 ------- null} + -t 29.4115 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 600 -a 0 -x {0.0.3.0 1.1.3.0 309 ------- null} - -t 29.4115 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 600 -a 0 -x {0.0.3.0 1.1.3.0 309 ------- null} h -t 29.4115 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 600 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.4131 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {0.0.3.0 1.1.3.0 310 ------- null} + -t 29.4131 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {0.0.3.0 1.1.3.0 310 ------- null} - -t 29.4131 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {0.0.3.0 1.1.3.0 310 ------- null} h -t 29.4131 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.4643 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 582 -a 0 -x {0.0.3.0 1.1.3.0 291 ------- null} + -t 29.4643 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 582 -a 0 -x {0.0.3.0 1.1.3.0 291 ------- null} - -t 29.4643 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 582 -a 0 -x {0.0.3.0 1.1.3.0 291 ------- null} h -t 29.4643 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 582 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.4659 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {0.0.3.0 1.1.3.0 292 ------- null} + -t 29.4659 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {0.0.3.0 1.1.3.0 292 ------- null} - -t 29.4659 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {0.0.3.0 1.1.3.0 292 ------- null} h -t 29.4659 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.4675 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 584 -a 0 -x {0.0.3.0 1.1.3.0 293 ------- null} + -t 29.4675 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 584 -a 0 -x {0.0.3.0 1.1.3.0 293 ------- null} - -t 29.4675 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 584 -a 0 -x {0.0.3.0 1.1.3.0 293 ------- null} h -t 29.4675 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 584 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.4691 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {0.0.3.0 1.1.3.0 294 ------- null} + -t 29.4691 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {0.0.3.0 1.1.3.0 294 ------- null} - -t 29.4691 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {0.0.3.0 1.1.3.0 294 ------- null} h -t 29.4691 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.4707 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 586 -a 0 -x {0.0.3.0 1.1.3.0 295 ------- null} + -t 29.4707 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 586 -a 0 -x {0.0.3.0 1.1.3.0 295 ------- null} - -t 29.4707 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 586 -a 0 -x {0.0.3.0 1.1.3.0 295 ------- null} h -t 29.4707 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 586 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.4723 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {0.0.3.0 1.1.3.0 296 ------- null} + -t 29.4723 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {0.0.3.0 1.1.3.0 296 ------- null} - -t 29.4723 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {0.0.3.0 1.1.3.0 296 ------- null} h -t 29.4723 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.4739 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 588 -a 0 -x {0.0.3.0 1.1.3.0 297 ------- null} + -t 29.4739 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 588 -a 0 -x {0.0.3.0 1.1.3.0 297 ------- null} - -t 29.4739 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 588 -a 0 -x {0.0.3.0 1.1.3.0 297 ------- null} h -t 29.4739 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 588 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.4755 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {0.0.3.0 1.1.3.0 298 ------- null} + -t 29.4755 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {0.0.3.0 1.1.3.0 298 ------- null} - -t 29.4755 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {0.0.3.0 1.1.3.0 298 ------- null} h -t 29.4755 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.4771 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 590 -a 0 -x {0.0.3.0 1.1.3.0 299 ------- null} + -t 29.4771 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 590 -a 0 -x {0.0.3.0 1.1.3.0 299 ------- null} - -t 29.4771 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 590 -a 0 -x {0.0.3.0 1.1.3.0 299 ------- null} h -t 29.4771 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 590 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.4787 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {0.0.3.0 1.1.3.0 300 ------- null} + -t 29.4787 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {0.0.3.0 1.1.3.0 300 ------- null} - -t 29.4787 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {0.0.3.0 1.1.3.0 300 ------- null} h -t 29.4787 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.4803 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 592 -a 0 -x {0.0.3.0 1.1.3.0 301 ------- null} + -t 29.4803 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 592 -a 0 -x {0.0.3.0 1.1.3.0 301 ------- null} - -t 29.4803 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 592 -a 0 -x {0.0.3.0 1.1.3.0 301 ------- null} h -t 29.4803 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 592 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.4819 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {0.0.3.0 1.1.3.0 302 ------- null} + -t 29.4819 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {0.0.3.0 1.1.3.0 302 ------- null} - -t 29.4819 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {0.0.3.0 1.1.3.0 302 ------- null} h -t 29.4819 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.4835 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 594 -a 0 -x {0.0.3.0 1.1.3.0 303 ------- null} + -t 29.4835 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 594 -a 0 -x {0.0.3.0 1.1.3.0 303 ------- null} - -t 29.4835 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 594 -a 0 -x {0.0.3.0 1.1.3.0 303 ------- null} h -t 29.4835 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 594 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.4851 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {0.0.3.0 1.1.3.0 304 ------- null} + -t 29.4851 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {0.0.3.0 1.1.3.0 304 ------- null} - -t 29.4851 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {0.0.3.0 1.1.3.0 304 ------- null} h -t 29.4851 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.4867 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 596 -a 0 -x {0.0.3.0 1.1.3.0 305 ------- null} + -t 29.4867 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 596 -a 0 -x {0.0.3.0 1.1.3.0 305 ------- null} - -t 29.4867 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 596 -a 0 -x {0.0.3.0 1.1.3.0 305 ------- null} h -t 29.4867 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 596 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.4883 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {0.0.3.0 1.1.3.0 306 ------- null} + -t 29.4883 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {0.0.3.0 1.1.3.0 306 ------- null} - -t 29.4883 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {0.0.3.0 1.1.3.0 306 ------- null} h -t 29.4883 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.4899 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 598 -a 0 -x {0.0.3.0 1.1.3.0 307 ------- null} + -t 29.4899 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 598 -a 0 -x {0.0.3.0 1.1.3.0 307 ------- null} - -t 29.4899 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 598 -a 0 -x {0.0.3.0 1.1.3.0 307 ------- null} h -t 29.4899 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 598 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.4915 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {0.0.3.0 1.1.3.0 308 ------- null} + -t 29.4915 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {0.0.3.0 1.1.3.0 308 ------- null} - -t 29.4915 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {0.0.3.0 1.1.3.0 308 ------- null} h -t 29.4915 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.4931 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 600 -a 0 -x {0.0.3.0 1.1.3.0 309 ------- null} + -t 29.4931 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 600 -a 0 -x {0.0.3.0 1.1.3.0 309 ------- null} - -t 29.4931 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 600 -a 0 -x {0.0.3.0 1.1.3.0 309 ------- null} h -t 29.4931 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 600 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.4947 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {0.0.3.0 1.1.3.0 310 ------- null} + -t 29.4947 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {0.0.3.0 1.1.3.0 310 ------- null} - -t 29.4947 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {0.0.3.0 1.1.3.0 310 ------- null} h -t 29.4947 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 29.5259 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 582 -a 0 -x {0.0.3.0 1.1.3.0 291 ------- null} + -t 29.5259 -s 21 -d 28 -p ack -e 40 -c 0 -i 602 -a 1 -x {1.1.3.0 0.0.3.0 291 ------- null} - -t 29.5259 -s 21 -d 28 -p ack -e 40 -c 0 -i 602 -a 1 -x {1.1.3.0 0.0.3.0 291 ------- null} h -t 29.5259 -s 21 -d 28 -p ack -e 40 -c 0 -i 602 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 29.5275 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {0.0.3.0 1.1.3.0 292 ------- null} + -t 29.5275 -s 21 -d 28 -p ack -e 40 -c 0 -i 603 -a 1 -x {1.1.3.0 0.0.3.0 292 ------- null} - -t 29.5275 -s 21 -d 28 -p ack -e 40 -c 0 -i 603 -a 1 -x {1.1.3.0 0.0.3.0 292 ------- null} h -t 29.5275 -s 21 -d 28 -p ack -e 40 -c 0 -i 603 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 29.5291 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 584 -a 0 -x {0.0.3.0 1.1.3.0 293 ------- null} + -t 29.5291 -s 21 -d 28 -p ack -e 40 -c 0 -i 604 -a 1 -x {1.1.3.0 0.0.3.0 293 ------- null} - -t 29.5291 -s 21 -d 28 -p ack -e 40 -c 0 -i 604 -a 1 -x {1.1.3.0 0.0.3.0 293 ------- null} h -t 29.5291 -s 21 -d 28 -p ack -e 40 -c 0 -i 604 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 29.5307 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {0.0.3.0 1.1.3.0 294 ------- null} + -t 29.5307 -s 21 -d 28 -p ack -e 40 -c 0 -i 605 -a 1 -x {1.1.3.0 0.0.3.0 294 ------- null} - -t 29.5307 -s 21 -d 28 -p ack -e 40 -c 0 -i 605 -a 1 -x {1.1.3.0 0.0.3.0 294 ------- null} h -t 29.5307 -s 21 -d 28 -p ack -e 40 -c 0 -i 605 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 29.5323 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 586 -a 0 -x {0.0.3.0 1.1.3.0 295 ------- null} + -t 29.5323 -s 21 -d 28 -p ack -e 40 -c 0 -i 606 -a 1 -x {1.1.3.0 0.0.3.0 295 ------- null} - -t 29.5323 -s 21 -d 28 -p ack -e 40 -c 0 -i 606 -a 1 -x {1.1.3.0 0.0.3.0 295 ------- null} h -t 29.5323 -s 21 -d 28 -p ack -e 40 -c 0 -i 606 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 29.5339 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {0.0.3.0 1.1.3.0 296 ------- null} + -t 29.5339 -s 21 -d 28 -p ack -e 40 -c 0 -i 607 -a 1 -x {1.1.3.0 0.0.3.0 296 ------- null} - -t 29.5339 -s 21 -d 28 -p ack -e 40 -c 0 -i 607 -a 1 -x {1.1.3.0 0.0.3.0 296 ------- null} h -t 29.5339 -s 21 -d 28 -p ack -e 40 -c 0 -i 607 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 29.5355 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 588 -a 0 -x {0.0.3.0 1.1.3.0 297 ------- null} + -t 29.5355 -s 21 -d 28 -p ack -e 40 -c 0 -i 608 -a 1 -x {1.1.3.0 0.0.3.0 297 ------- null} - -t 29.5355 -s 21 -d 28 -p ack -e 40 -c 0 -i 608 -a 1 -x {1.1.3.0 0.0.3.0 297 ------- null} h -t 29.5355 -s 21 -d 28 -p ack -e 40 -c 0 -i 608 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 29.5371 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {0.0.3.0 1.1.3.0 298 ------- null} + -t 29.5371 -s 21 -d 28 -p ack -e 40 -c 0 -i 609 -a 1 -x {1.1.3.0 0.0.3.0 298 ------- null} - -t 29.5371 -s 21 -d 28 -p ack -e 40 -c 0 -i 609 -a 1 -x {1.1.3.0 0.0.3.0 298 ------- null} h -t 29.5371 -s 21 -d 28 -p ack -e 40 -c 0 -i 609 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 29.5387 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 590 -a 0 -x {0.0.3.0 1.1.3.0 299 ------- null} + -t 29.5387 -s 21 -d 28 -p ack -e 40 -c 0 -i 610 -a 1 -x {1.1.3.0 0.0.3.0 299 ------- null} - -t 29.5387 -s 21 -d 28 -p ack -e 40 -c 0 -i 610 -a 1 -x {1.1.3.0 0.0.3.0 299 ------- null} h -t 29.5387 -s 21 -d 28 -p ack -e 40 -c 0 -i 610 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 29.5403 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {0.0.3.0 1.1.3.0 300 ------- null} + -t 29.5403 -s 21 -d 28 -p ack -e 40 -c 0 -i 611 -a 1 -x {1.1.3.0 0.0.3.0 300 ------- null} - -t 29.5403 -s 21 -d 28 -p ack -e 40 -c 0 -i 611 -a 1 -x {1.1.3.0 0.0.3.0 300 ------- null} h -t 29.5403 -s 21 -d 28 -p ack -e 40 -c 0 -i 611 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 29.5419 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 592 -a 0 -x {0.0.3.0 1.1.3.0 301 ------- null} + -t 29.5419 -s 21 -d 28 -p ack -e 40 -c 0 -i 612 -a 1 -x {1.1.3.0 0.0.3.0 301 ------- null} - -t 29.5419 -s 21 -d 28 -p ack -e 40 -c 0 -i 612 -a 1 -x {1.1.3.0 0.0.3.0 301 ------- null} h -t 29.5419 -s 21 -d 28 -p ack -e 40 -c 0 -i 612 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 29.5435 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {0.0.3.0 1.1.3.0 302 ------- null} + -t 29.5435 -s 21 -d 28 -p ack -e 40 -c 0 -i 613 -a 1 -x {1.1.3.0 0.0.3.0 302 ------- null} - -t 29.5435 -s 21 -d 28 -p ack -e 40 -c 0 -i 613 -a 1 -x {1.1.3.0 0.0.3.0 302 ------- null} h -t 29.5435 -s 21 -d 28 -p ack -e 40 -c 0 -i 613 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 29.5451 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 594 -a 0 -x {0.0.3.0 1.1.3.0 303 ------- null} + -t 29.5451 -s 21 -d 28 -p ack -e 40 -c 0 -i 614 -a 1 -x {1.1.3.0 0.0.3.0 303 ------- null} - -t 29.5451 -s 21 -d 28 -p ack -e 40 -c 0 -i 614 -a 1 -x {1.1.3.0 0.0.3.0 303 ------- null} h -t 29.5451 -s 21 -d 28 -p ack -e 40 -c 0 -i 614 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 29.5467 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {0.0.3.0 1.1.3.0 304 ------- null} + -t 29.5467 -s 21 -d 28 -p ack -e 40 -c 0 -i 615 -a 1 -x {1.1.3.0 0.0.3.0 304 ------- null} - -t 29.5467 -s 21 -d 28 -p ack -e 40 -c 0 -i 615 -a 1 -x {1.1.3.0 0.0.3.0 304 ------- null} h -t 29.5467 -s 21 -d 28 -p ack -e 40 -c 0 -i 615 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 29.5483 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 596 -a 0 -x {0.0.3.0 1.1.3.0 305 ------- null} + -t 29.5483 -s 21 -d 28 -p ack -e 40 -c 0 -i 616 -a 1 -x {1.1.3.0 0.0.3.0 305 ------- null} - -t 29.5483 -s 21 -d 28 -p ack -e 40 -c 0 -i 616 -a 1 -x {1.1.3.0 0.0.3.0 305 ------- null} h -t 29.5483 -s 21 -d 28 -p ack -e 40 -c 0 -i 616 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 29.5499 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {0.0.3.0 1.1.3.0 306 ------- null} + -t 29.5499 -s 21 -d 28 -p ack -e 40 -c 0 -i 617 -a 1 -x {1.1.3.0 0.0.3.0 306 ------- null} - -t 29.5499 -s 21 -d 28 -p ack -e 40 -c 0 -i 617 -a 1 -x {1.1.3.0 0.0.3.0 306 ------- null} h -t 29.5499 -s 21 -d 28 -p ack -e 40 -c 0 -i 617 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 29.5515 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 598 -a 0 -x {0.0.3.0 1.1.3.0 307 ------- null} + -t 29.5515 -s 21 -d 28 -p ack -e 40 -c 0 -i 618 -a 1 -x {1.1.3.0 0.0.3.0 307 ------- null} - -t 29.5515 -s 21 -d 28 -p ack -e 40 -c 0 -i 618 -a 1 -x {1.1.3.0 0.0.3.0 307 ------- null} h -t 29.5515 -s 21 -d 28 -p ack -e 40 -c 0 -i 618 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 29.5531 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {0.0.3.0 1.1.3.0 308 ------- null} + -t 29.5531 -s 21 -d 28 -p ack -e 40 -c 0 -i 619 -a 1 -x {1.1.3.0 0.0.3.0 308 ------- null} - -t 29.5531 -s 21 -d 28 -p ack -e 40 -c 0 -i 619 -a 1 -x {1.1.3.0 0.0.3.0 308 ------- null} h -t 29.5531 -s 21 -d 28 -p ack -e 40 -c 0 -i 619 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 29.5547 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 600 -a 0 -x {0.0.3.0 1.1.3.0 309 ------- null} + -t 29.5547 -s 21 -d 28 -p ack -e 40 -c 0 -i 620 -a 1 -x {1.1.3.0 0.0.3.0 309 ------- null} - -t 29.5547 -s 21 -d 28 -p ack -e 40 -c 0 -i 620 -a 1 -x {1.1.3.0 0.0.3.0 309 ------- null} h -t 29.5547 -s 21 -d 28 -p ack -e 40 -c 0 -i 620 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 29.5563 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {0.0.3.0 1.1.3.0 310 ------- null} + -t 29.5563 -s 21 -d 28 -p ack -e 40 -c 0 -i 621 -a 1 -x {1.1.3.0 0.0.3.0 310 ------- null} - -t 29.5563 -s 21 -d 28 -p ack -e 40 -c 0 -i 621 -a 1 -x {1.1.3.0 0.0.3.0 310 ------- null} h -t 29.5563 -s 21 -d 28 -p ack -e 40 -c 0 -i 621 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 29.8759 -s 21 -d 28 -p ack -e 40 -c 0 -i 602 -a 1 -x {1.1.3.0 0.0.3.0 291 ------- null} + -t 29.8759 -s 28 -d 1 -p ack -e 40 -c 0 -i 602 -a 1 -x {1.1.3.0 0.0.3.0 291 ------- null} - -t 29.8759 -s 28 -d 1 -p ack -e 40 -c 0 -i 602 -a 1 -x {1.1.3.0 0.0.3.0 291 ------- null} h -t 29.8759 -s 28 -d 1 -p ack -e 40 -c 0 -i 602 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 29.8775 -s 21 -d 28 -p ack -e 40 -c 0 -i 603 -a 1 -x {1.1.3.0 0.0.3.0 292 ------- null} + -t 29.8775 -s 28 -d 1 -p ack -e 40 -c 0 -i 603 -a 1 -x {1.1.3.0 0.0.3.0 292 ------- null} - -t 29.8775 -s 28 -d 1 -p ack -e 40 -c 0 -i 603 -a 1 -x {1.1.3.0 0.0.3.0 292 ------- null} h -t 29.8775 -s 28 -d 1 -p ack -e 40 -c 0 -i 603 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 29.8791 -s 21 -d 28 -p ack -e 40 -c 0 -i 604 -a 1 -x {1.1.3.0 0.0.3.0 293 ------- null} + -t 29.8791 -s 28 -d 1 -p ack -e 40 -c 0 -i 604 -a 1 -x {1.1.3.0 0.0.3.0 293 ------- null} - -t 29.8791 -s 28 -d 1 -p ack -e 40 -c 0 -i 604 -a 1 -x {1.1.3.0 0.0.3.0 293 ------- null} h -t 29.8791 -s 28 -d 1 -p ack -e 40 -c 0 -i 604 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 29.8807 -s 21 -d 28 -p ack -e 40 -c 0 -i 605 -a 1 -x {1.1.3.0 0.0.3.0 294 ------- null} + -t 29.8807 -s 28 -d 1 -p ack -e 40 -c 0 -i 605 -a 1 -x {1.1.3.0 0.0.3.0 294 ------- null} - -t 29.8807 -s 28 -d 1 -p ack -e 40 -c 0 -i 605 -a 1 -x {1.1.3.0 0.0.3.0 294 ------- null} h -t 29.8807 -s 28 -d 1 -p ack -e 40 -c 0 -i 605 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 29.8823 -s 21 -d 28 -p ack -e 40 -c 0 -i 606 -a 1 -x {1.1.3.0 0.0.3.0 295 ------- null} + -t 29.8823 -s 28 -d 1 -p ack -e 40 -c 0 -i 606 -a 1 -x {1.1.3.0 0.0.3.0 295 ------- null} - -t 29.8823 -s 28 -d 1 -p ack -e 40 -c 0 -i 606 -a 1 -x {1.1.3.0 0.0.3.0 295 ------- null} h -t 29.8823 -s 28 -d 1 -p ack -e 40 -c 0 -i 606 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 29.8839 -s 21 -d 28 -p ack -e 40 -c 0 -i 607 -a 1 -x {1.1.3.0 0.0.3.0 296 ------- null} + -t 29.8839 -s 28 -d 1 -p ack -e 40 -c 0 -i 607 -a 1 -x {1.1.3.0 0.0.3.0 296 ------- null} - -t 29.8839 -s 28 -d 1 -p ack -e 40 -c 0 -i 607 -a 1 -x {1.1.3.0 0.0.3.0 296 ------- null} h -t 29.8839 -s 28 -d 1 -p ack -e 40 -c 0 -i 607 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 29.8855 -s 21 -d 28 -p ack -e 40 -c 0 -i 608 -a 1 -x {1.1.3.0 0.0.3.0 297 ------- null} + -t 29.8855 -s 28 -d 1 -p ack -e 40 -c 0 -i 608 -a 1 -x {1.1.3.0 0.0.3.0 297 ------- null} - -t 29.8855 -s 28 -d 1 -p ack -e 40 -c 0 -i 608 -a 1 -x {1.1.3.0 0.0.3.0 297 ------- null} h -t 29.8855 -s 28 -d 1 -p ack -e 40 -c 0 -i 608 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 29.8871 -s 21 -d 28 -p ack -e 40 -c 0 -i 609 -a 1 -x {1.1.3.0 0.0.3.0 298 ------- null} + -t 29.8871 -s 28 -d 1 -p ack -e 40 -c 0 -i 609 -a 1 -x {1.1.3.0 0.0.3.0 298 ------- null} - -t 29.8871 -s 28 -d 1 -p ack -e 40 -c 0 -i 609 -a 1 -x {1.1.3.0 0.0.3.0 298 ------- null} h -t 29.8871 -s 28 -d 1 -p ack -e 40 -c 0 -i 609 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 29.8887 -s 21 -d 28 -p ack -e 40 -c 0 -i 610 -a 1 -x {1.1.3.0 0.0.3.0 299 ------- null} + -t 29.8887 -s 28 -d 1 -p ack -e 40 -c 0 -i 610 -a 1 -x {1.1.3.0 0.0.3.0 299 ------- null} - -t 29.8887 -s 28 -d 1 -p ack -e 40 -c 0 -i 610 -a 1 -x {1.1.3.0 0.0.3.0 299 ------- null} h -t 29.8887 -s 28 -d 1 -p ack -e 40 -c 0 -i 610 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 29.8903 -s 21 -d 28 -p ack -e 40 -c 0 -i 611 -a 1 -x {1.1.3.0 0.0.3.0 300 ------- null} + -t 29.8903 -s 28 -d 1 -p ack -e 40 -c 0 -i 611 -a 1 -x {1.1.3.0 0.0.3.0 300 ------- null} - -t 29.8903 -s 28 -d 1 -p ack -e 40 -c 0 -i 611 -a 1 -x {1.1.3.0 0.0.3.0 300 ------- null} h -t 29.8903 -s 28 -d 1 -p ack -e 40 -c 0 -i 611 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 29.8919 -s 21 -d 28 -p ack -e 40 -c 0 -i 612 -a 1 -x {1.1.3.0 0.0.3.0 301 ------- null} + -t 29.8919 -s 28 -d 1 -p ack -e 40 -c 0 -i 612 -a 1 -x {1.1.3.0 0.0.3.0 301 ------- null} - -t 29.8919 -s 28 -d 1 -p ack -e 40 -c 0 -i 612 -a 1 -x {1.1.3.0 0.0.3.0 301 ------- null} h -t 29.8919 -s 28 -d 1 -p ack -e 40 -c 0 -i 612 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 29.8935 -s 21 -d 28 -p ack -e 40 -c 0 -i 613 -a 1 -x {1.1.3.0 0.0.3.0 302 ------- null} + -t 29.8935 -s 28 -d 1 -p ack -e 40 -c 0 -i 613 -a 1 -x {1.1.3.0 0.0.3.0 302 ------- null} - -t 29.8935 -s 28 -d 1 -p ack -e 40 -c 0 -i 613 -a 1 -x {1.1.3.0 0.0.3.0 302 ------- null} h -t 29.8935 -s 28 -d 1 -p ack -e 40 -c 0 -i 613 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 29.8951 -s 21 -d 28 -p ack -e 40 -c 0 -i 614 -a 1 -x {1.1.3.0 0.0.3.0 303 ------- null} + -t 29.8951 -s 28 -d 1 -p ack -e 40 -c 0 -i 614 -a 1 -x {1.1.3.0 0.0.3.0 303 ------- null} - -t 29.8951 -s 28 -d 1 -p ack -e 40 -c 0 -i 614 -a 1 -x {1.1.3.0 0.0.3.0 303 ------- null} h -t 29.8951 -s 28 -d 1 -p ack -e 40 -c 0 -i 614 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 29.8967 -s 21 -d 28 -p ack -e 40 -c 0 -i 615 -a 1 -x {1.1.3.0 0.0.3.0 304 ------- null} + -t 29.8967 -s 28 -d 1 -p ack -e 40 -c 0 -i 615 -a 1 -x {1.1.3.0 0.0.3.0 304 ------- null} - -t 29.8967 -s 28 -d 1 -p ack -e 40 -c 0 -i 615 -a 1 -x {1.1.3.0 0.0.3.0 304 ------- null} h -t 29.8967 -s 28 -d 1 -p ack -e 40 -c 0 -i 615 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 29.8983 -s 21 -d 28 -p ack -e 40 -c 0 -i 616 -a 1 -x {1.1.3.0 0.0.3.0 305 ------- null} + -t 29.8983 -s 28 -d 1 -p ack -e 40 -c 0 -i 616 -a 1 -x {1.1.3.0 0.0.3.0 305 ------- null} - -t 29.8983 -s 28 -d 1 -p ack -e 40 -c 0 -i 616 -a 1 -x {1.1.3.0 0.0.3.0 305 ------- null} h -t 29.8983 -s 28 -d 1 -p ack -e 40 -c 0 -i 616 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 29.8999 -s 21 -d 28 -p ack -e 40 -c 0 -i 617 -a 1 -x {1.1.3.0 0.0.3.0 306 ------- null} + -t 29.8999 -s 28 -d 1 -p ack -e 40 -c 0 -i 617 -a 1 -x {1.1.3.0 0.0.3.0 306 ------- null} - -t 29.8999 -s 28 -d 1 -p ack -e 40 -c 0 -i 617 -a 1 -x {1.1.3.0 0.0.3.0 306 ------- null} h -t 29.8999 -s 28 -d 1 -p ack -e 40 -c 0 -i 617 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 29.9015 -s 21 -d 28 -p ack -e 40 -c 0 -i 618 -a 1 -x {1.1.3.0 0.0.3.0 307 ------- null} + -t 29.9015 -s 28 -d 1 -p ack -e 40 -c 0 -i 618 -a 1 -x {1.1.3.0 0.0.3.0 307 ------- null} - -t 29.9015 -s 28 -d 1 -p ack -e 40 -c 0 -i 618 -a 1 -x {1.1.3.0 0.0.3.0 307 ------- null} h -t 29.9015 -s 28 -d 1 -p ack -e 40 -c 0 -i 618 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 29.9031 -s 21 -d 28 -p ack -e 40 -c 0 -i 619 -a 1 -x {1.1.3.0 0.0.3.0 308 ------- null} + -t 29.9031 -s 28 -d 1 -p ack -e 40 -c 0 -i 619 -a 1 -x {1.1.3.0 0.0.3.0 308 ------- null} - -t 29.9031 -s 28 -d 1 -p ack -e 40 -c 0 -i 619 -a 1 -x {1.1.3.0 0.0.3.0 308 ------- null} h -t 29.9031 -s 28 -d 1 -p ack -e 40 -c 0 -i 619 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 29.9047 -s 21 -d 28 -p ack -e 40 -c 0 -i 620 -a 1 -x {1.1.3.0 0.0.3.0 309 ------- null} + -t 29.9047 -s 28 -d 1 -p ack -e 40 -c 0 -i 620 -a 1 -x {1.1.3.0 0.0.3.0 309 ------- null} - -t 29.9047 -s 28 -d 1 -p ack -e 40 -c 0 -i 620 -a 1 -x {1.1.3.0 0.0.3.0 309 ------- null} h -t 29.9047 -s 28 -d 1 -p ack -e 40 -c 0 -i 620 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 29.9063 -s 21 -d 28 -p ack -e 40 -c 0 -i 621 -a 1 -x {1.1.3.0 0.0.3.0 310 ------- null} + -t 29.9063 -s 28 -d 1 -p ack -e 40 -c 0 -i 621 -a 1 -x {1.1.3.0 0.0.3.0 310 ------- null} - -t 29.9063 -s 28 -d 1 -p ack -e 40 -c 0 -i 621 -a 1 -x {1.1.3.0 0.0.3.0 310 ------- null} h -t 29.9063 -s 28 -d 1 -p ack -e 40 -c 0 -i 621 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 30.176 -s 28 -d 1 -p ack -e 40 -c 0 -i 602 -a 1 -x {1.1.3.0 0.0.3.0 291 ------- null} + -t 30.176 -s 1 -d 3 -p ack -e 40 -c 0 -i 602 -a 1 -x {1.1.3.0 0.0.3.0 291 ------- null} - -t 30.176 -s 1 -d 3 -p ack -e 40 -c 0 -i 602 -a 1 -x {1.1.3.0 0.0.3.0 291 ------- null} h -t 30.176 -s 1 -d 3 -p ack -e 40 -c 0 -i 602 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 30.1776 -s 28 -d 1 -p ack -e 40 -c 0 -i 603 -a 1 -x {1.1.3.0 0.0.3.0 292 ------- null} + -t 30.1776 -s 1 -d 3 -p ack -e 40 -c 0 -i 603 -a 1 -x {1.1.3.0 0.0.3.0 292 ------- null} - -t 30.1776 -s 1 -d 3 -p ack -e 40 -c 0 -i 603 -a 1 -x {1.1.3.0 0.0.3.0 292 ------- null} h -t 30.1776 -s 1 -d 3 -p ack -e 40 -c 0 -i 603 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 30.1792 -s 28 -d 1 -p ack -e 40 -c 0 -i 604 -a 1 -x {1.1.3.0 0.0.3.0 293 ------- null} + -t 30.1792 -s 1 -d 3 -p ack -e 40 -c 0 -i 604 -a 1 -x {1.1.3.0 0.0.3.0 293 ------- null} - -t 30.1792 -s 1 -d 3 -p ack -e 40 -c 0 -i 604 -a 1 -x {1.1.3.0 0.0.3.0 293 ------- null} h -t 30.1792 -s 1 -d 3 -p ack -e 40 -c 0 -i 604 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 30.1808 -s 28 -d 1 -p ack -e 40 -c 0 -i 605 -a 1 -x {1.1.3.0 0.0.3.0 294 ------- null} + -t 30.1808 -s 1 -d 3 -p ack -e 40 -c 0 -i 605 -a 1 -x {1.1.3.0 0.0.3.0 294 ------- null} - -t 30.1808 -s 1 -d 3 -p ack -e 40 -c 0 -i 605 -a 1 -x {1.1.3.0 0.0.3.0 294 ------- null} h -t 30.1808 -s 1 -d 3 -p ack -e 40 -c 0 -i 605 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 30.1824 -s 28 -d 1 -p ack -e 40 -c 0 -i 606 -a 1 -x {1.1.3.0 0.0.3.0 295 ------- null} + -t 30.1824 -s 1 -d 3 -p ack -e 40 -c 0 -i 606 -a 1 -x {1.1.3.0 0.0.3.0 295 ------- null} - -t 30.1824 -s 1 -d 3 -p ack -e 40 -c 0 -i 606 -a 1 -x {1.1.3.0 0.0.3.0 295 ------- null} h -t 30.1824 -s 1 -d 3 -p ack -e 40 -c 0 -i 606 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 30.184 -s 28 -d 1 -p ack -e 40 -c 0 -i 607 -a 1 -x {1.1.3.0 0.0.3.0 296 ------- null} + -t 30.184 -s 1 -d 3 -p ack -e 40 -c 0 -i 607 -a 1 -x {1.1.3.0 0.0.3.0 296 ------- null} - -t 30.184 -s 1 -d 3 -p ack -e 40 -c 0 -i 607 -a 1 -x {1.1.3.0 0.0.3.0 296 ------- null} h -t 30.184 -s 1 -d 3 -p ack -e 40 -c 0 -i 607 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 30.1856 -s 28 -d 1 -p ack -e 40 -c 0 -i 608 -a 1 -x {1.1.3.0 0.0.3.0 297 ------- null} + -t 30.1856 -s 1 -d 3 -p ack -e 40 -c 0 -i 608 -a 1 -x {1.1.3.0 0.0.3.0 297 ------- null} - -t 30.1856 -s 1 -d 3 -p ack -e 40 -c 0 -i 608 -a 1 -x {1.1.3.0 0.0.3.0 297 ------- null} h -t 30.1856 -s 1 -d 3 -p ack -e 40 -c 0 -i 608 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 30.1872 -s 28 -d 1 -p ack -e 40 -c 0 -i 609 -a 1 -x {1.1.3.0 0.0.3.0 298 ------- null} + -t 30.1872 -s 1 -d 3 -p ack -e 40 -c 0 -i 609 -a 1 -x {1.1.3.0 0.0.3.0 298 ------- null} - -t 30.1872 -s 1 -d 3 -p ack -e 40 -c 0 -i 609 -a 1 -x {1.1.3.0 0.0.3.0 298 ------- null} h -t 30.1872 -s 1 -d 3 -p ack -e 40 -c 0 -i 609 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 30.1888 -s 28 -d 1 -p ack -e 40 -c 0 -i 610 -a 1 -x {1.1.3.0 0.0.3.0 299 ------- null} + -t 30.1888 -s 1 -d 3 -p ack -e 40 -c 0 -i 610 -a 1 -x {1.1.3.0 0.0.3.0 299 ------- null} - -t 30.1888 -s 1 -d 3 -p ack -e 40 -c 0 -i 610 -a 1 -x {1.1.3.0 0.0.3.0 299 ------- null} h -t 30.1888 -s 1 -d 3 -p ack -e 40 -c 0 -i 610 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 30.1904 -s 28 -d 1 -p ack -e 40 -c 0 -i 611 -a 1 -x {1.1.3.0 0.0.3.0 300 ------- null} + -t 30.1904 -s 1 -d 3 -p ack -e 40 -c 0 -i 611 -a 1 -x {1.1.3.0 0.0.3.0 300 ------- null} - -t 30.1904 -s 1 -d 3 -p ack -e 40 -c 0 -i 611 -a 1 -x {1.1.3.0 0.0.3.0 300 ------- null} h -t 30.1904 -s 1 -d 3 -p ack -e 40 -c 0 -i 611 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 30.192 -s 28 -d 1 -p ack -e 40 -c 0 -i 612 -a 1 -x {1.1.3.0 0.0.3.0 301 ------- null} + -t 30.192 -s 1 -d 3 -p ack -e 40 -c 0 -i 612 -a 1 -x {1.1.3.0 0.0.3.0 301 ------- null} - -t 30.192 -s 1 -d 3 -p ack -e 40 -c 0 -i 612 -a 1 -x {1.1.3.0 0.0.3.0 301 ------- null} h -t 30.192 -s 1 -d 3 -p ack -e 40 -c 0 -i 612 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 30.1936 -s 28 -d 1 -p ack -e 40 -c 0 -i 613 -a 1 -x {1.1.3.0 0.0.3.0 302 ------- null} + -t 30.1936 -s 1 -d 3 -p ack -e 40 -c 0 -i 613 -a 1 -x {1.1.3.0 0.0.3.0 302 ------- null} - -t 30.1936 -s 1 -d 3 -p ack -e 40 -c 0 -i 613 -a 1 -x {1.1.3.0 0.0.3.0 302 ------- null} h -t 30.1936 -s 1 -d 3 -p ack -e 40 -c 0 -i 613 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 30.1952 -s 28 -d 1 -p ack -e 40 -c 0 -i 614 -a 1 -x {1.1.3.0 0.0.3.0 303 ------- null} + -t 30.1952 -s 1 -d 3 -p ack -e 40 -c 0 -i 614 -a 1 -x {1.1.3.0 0.0.3.0 303 ------- null} - -t 30.1952 -s 1 -d 3 -p ack -e 40 -c 0 -i 614 -a 1 -x {1.1.3.0 0.0.3.0 303 ------- null} h -t 30.1952 -s 1 -d 3 -p ack -e 40 -c 0 -i 614 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 30.1968 -s 28 -d 1 -p ack -e 40 -c 0 -i 615 -a 1 -x {1.1.3.0 0.0.3.0 304 ------- null} + -t 30.1968 -s 1 -d 3 -p ack -e 40 -c 0 -i 615 -a 1 -x {1.1.3.0 0.0.3.0 304 ------- null} - -t 30.1968 -s 1 -d 3 -p ack -e 40 -c 0 -i 615 -a 1 -x {1.1.3.0 0.0.3.0 304 ------- null} h -t 30.1968 -s 1 -d 3 -p ack -e 40 -c 0 -i 615 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 30.1984 -s 28 -d 1 -p ack -e 40 -c 0 -i 616 -a 1 -x {1.1.3.0 0.0.3.0 305 ------- null} + -t 30.1984 -s 1 -d 3 -p ack -e 40 -c 0 -i 616 -a 1 -x {1.1.3.0 0.0.3.0 305 ------- null} - -t 30.1984 -s 1 -d 3 -p ack -e 40 -c 0 -i 616 -a 1 -x {1.1.3.0 0.0.3.0 305 ------- null} h -t 30.1984 -s 1 -d 3 -p ack -e 40 -c 0 -i 616 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 30.2 -s 28 -d 1 -p ack -e 40 -c 0 -i 617 -a 1 -x {1.1.3.0 0.0.3.0 306 ------- null} + -t 30.2 -s 1 -d 3 -p ack -e 40 -c 0 -i 617 -a 1 -x {1.1.3.0 0.0.3.0 306 ------- null} - -t 30.2 -s 1 -d 3 -p ack -e 40 -c 0 -i 617 -a 1 -x {1.1.3.0 0.0.3.0 306 ------- null} h -t 30.2 -s 1 -d 3 -p ack -e 40 -c 0 -i 617 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 30.2016 -s 28 -d 1 -p ack -e 40 -c 0 -i 618 -a 1 -x {1.1.3.0 0.0.3.0 307 ------- null} + -t 30.2016 -s 1 -d 3 -p ack -e 40 -c 0 -i 618 -a 1 -x {1.1.3.0 0.0.3.0 307 ------- null} - -t 30.2016 -s 1 -d 3 -p ack -e 40 -c 0 -i 618 -a 1 -x {1.1.3.0 0.0.3.0 307 ------- null} h -t 30.2016 -s 1 -d 3 -p ack -e 40 -c 0 -i 618 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 30.2032 -s 28 -d 1 -p ack -e 40 -c 0 -i 619 -a 1 -x {1.1.3.0 0.0.3.0 308 ------- null} + -t 30.2032 -s 1 -d 3 -p ack -e 40 -c 0 -i 619 -a 1 -x {1.1.3.0 0.0.3.0 308 ------- null} - -t 30.2032 -s 1 -d 3 -p ack -e 40 -c 0 -i 619 -a 1 -x {1.1.3.0 0.0.3.0 308 ------- null} h -t 30.2032 -s 1 -d 3 -p ack -e 40 -c 0 -i 619 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 30.2048 -s 28 -d 1 -p ack -e 40 -c 0 -i 620 -a 1 -x {1.1.3.0 0.0.3.0 309 ------- null} + -t 30.2048 -s 1 -d 3 -p ack -e 40 -c 0 -i 620 -a 1 -x {1.1.3.0 0.0.3.0 309 ------- null} - -t 30.2048 -s 1 -d 3 -p ack -e 40 -c 0 -i 620 -a 1 -x {1.1.3.0 0.0.3.0 309 ------- null} h -t 30.2048 -s 1 -d 3 -p ack -e 40 -c 0 -i 620 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 30.2064 -s 28 -d 1 -p ack -e 40 -c 0 -i 621 -a 1 -x {1.1.3.0 0.0.3.0 310 ------- null} + -t 30.2064 -s 1 -d 3 -p ack -e 40 -c 0 -i 621 -a 1 -x {1.1.3.0 0.0.3.0 310 ------- null} - -t 30.2064 -s 1 -d 3 -p ack -e 40 -c 0 -i 621 -a 1 -x {1.1.3.0 0.0.3.0 310 ------- null} h -t 30.2064 -s 1 -d 3 -p ack -e 40 -c 0 -i 621 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 30.316 -s 1 -d 3 -p ack -e 40 -c 0 -i 602 -a 1 -x {1.1.3.0 0.0.3.0 291 ------- null} + -t 30.316 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 622 -a 0 -x {0.0.3.0 1.1.3.0 311 ------- null} - -t 30.316 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 622 -a 0 -x {0.0.3.0 1.1.3.0 311 ------- null} h -t 30.316 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 622 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.3176 -s 1 -d 3 -p ack -e 40 -c 0 -i 603 -a 1 -x {1.1.3.0 0.0.3.0 292 ------- null} + -t 30.3176 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {0.0.3.0 1.1.3.0 312 ------- null} - -t 30.3176 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {0.0.3.0 1.1.3.0 312 ------- null} h -t 30.3176 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.3192 -s 1 -d 3 -p ack -e 40 -c 0 -i 604 -a 1 -x {1.1.3.0 0.0.3.0 293 ------- null} + -t 30.3192 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 624 -a 0 -x {0.0.3.0 1.1.3.0 313 ------- null} - -t 30.3192 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 624 -a 0 -x {0.0.3.0 1.1.3.0 313 ------- null} h -t 30.3192 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 624 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.3208 -s 1 -d 3 -p ack -e 40 -c 0 -i 605 -a 1 -x {1.1.3.0 0.0.3.0 294 ------- null} + -t 30.3208 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {0.0.3.0 1.1.3.0 314 ------- null} - -t 30.3208 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {0.0.3.0 1.1.3.0 314 ------- null} h -t 30.3208 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.3224 -s 1 -d 3 -p ack -e 40 -c 0 -i 606 -a 1 -x {1.1.3.0 0.0.3.0 295 ------- null} + -t 30.3224 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 626 -a 0 -x {0.0.3.0 1.1.3.0 315 ------- null} - -t 30.3224 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 626 -a 0 -x {0.0.3.0 1.1.3.0 315 ------- null} h -t 30.3224 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 626 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.324 -s 1 -d 3 -p ack -e 40 -c 0 -i 607 -a 1 -x {1.1.3.0 0.0.3.0 296 ------- null} + -t 30.324 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {0.0.3.0 1.1.3.0 316 ------- null} - -t 30.324 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {0.0.3.0 1.1.3.0 316 ------- null} h -t 30.324 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.3256 -s 1 -d 3 -p ack -e 40 -c 0 -i 608 -a 1 -x {1.1.3.0 0.0.3.0 297 ------- null} + -t 30.3256 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 628 -a 0 -x {0.0.3.0 1.1.3.0 317 ------- null} - -t 30.3256 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 628 -a 0 -x {0.0.3.0 1.1.3.0 317 ------- null} h -t 30.3256 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 628 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.3272 -s 1 -d 3 -p ack -e 40 -c 0 -i 609 -a 1 -x {1.1.3.0 0.0.3.0 298 ------- null} + -t 30.3272 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {0.0.3.0 1.1.3.0 318 ------- null} - -t 30.3272 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {0.0.3.0 1.1.3.0 318 ------- null} h -t 30.3272 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.3288 -s 1 -d 3 -p ack -e 40 -c 0 -i 610 -a 1 -x {1.1.3.0 0.0.3.0 299 ------- null} + -t 30.3288 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 630 -a 0 -x {0.0.3.0 1.1.3.0 319 ------- null} - -t 30.3288 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 630 -a 0 -x {0.0.3.0 1.1.3.0 319 ------- null} h -t 30.3288 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 630 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.3304 -s 1 -d 3 -p ack -e 40 -c 0 -i 611 -a 1 -x {1.1.3.0 0.0.3.0 300 ------- null} + -t 30.3304 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {0.0.3.0 1.1.3.0 320 ------- null} - -t 30.3304 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {0.0.3.0 1.1.3.0 320 ------- null} h -t 30.3304 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.332 -s 1 -d 3 -p ack -e 40 -c 0 -i 612 -a 1 -x {1.1.3.0 0.0.3.0 301 ------- null} + -t 30.332 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 632 -a 0 -x {0.0.3.0 1.1.3.0 321 ------- null} - -t 30.332 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 632 -a 0 -x {0.0.3.0 1.1.3.0 321 ------- null} h -t 30.332 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 632 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.3336 -s 1 -d 3 -p ack -e 40 -c 0 -i 613 -a 1 -x {1.1.3.0 0.0.3.0 302 ------- null} + -t 30.3336 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {0.0.3.0 1.1.3.0 322 ------- null} - -t 30.3336 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {0.0.3.0 1.1.3.0 322 ------- null} h -t 30.3336 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.3352 -s 1 -d 3 -p ack -e 40 -c 0 -i 614 -a 1 -x {1.1.3.0 0.0.3.0 303 ------- null} + -t 30.3352 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 634 -a 0 -x {0.0.3.0 1.1.3.0 323 ------- null} - -t 30.3352 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 634 -a 0 -x {0.0.3.0 1.1.3.0 323 ------- null} h -t 30.3352 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 634 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.3368 -s 1 -d 3 -p ack -e 40 -c 0 -i 615 -a 1 -x {1.1.3.0 0.0.3.0 304 ------- null} + -t 30.3368 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {0.0.3.0 1.1.3.0 324 ------- null} - -t 30.3368 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {0.0.3.0 1.1.3.0 324 ------- null} h -t 30.3368 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.3384 -s 1 -d 3 -p ack -e 40 -c 0 -i 616 -a 1 -x {1.1.3.0 0.0.3.0 305 ------- null} + -t 30.3384 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 636 -a 0 -x {0.0.3.0 1.1.3.0 325 ------- null} - -t 30.3384 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 636 -a 0 -x {0.0.3.0 1.1.3.0 325 ------- null} h -t 30.3384 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 636 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.34 -s 1 -d 3 -p ack -e 40 -c 0 -i 617 -a 1 -x {1.1.3.0 0.0.3.0 306 ------- null} + -t 30.34 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {0.0.3.0 1.1.3.0 326 ------- null} - -t 30.34 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {0.0.3.0 1.1.3.0 326 ------- null} h -t 30.34 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.3416 -s 1 -d 3 -p ack -e 40 -c 0 -i 618 -a 1 -x {1.1.3.0 0.0.3.0 307 ------- null} + -t 30.3416 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 638 -a 0 -x {0.0.3.0 1.1.3.0 327 ------- null} - -t 30.3416 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 638 -a 0 -x {0.0.3.0 1.1.3.0 327 ------- null} h -t 30.3416 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 638 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.3432 -s 1 -d 3 -p ack -e 40 -c 0 -i 619 -a 1 -x {1.1.3.0 0.0.3.0 308 ------- null} + -t 30.3432 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {0.0.3.0 1.1.3.0 328 ------- null} - -t 30.3432 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {0.0.3.0 1.1.3.0 328 ------- null} h -t 30.3432 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.3448 -s 1 -d 3 -p ack -e 40 -c 0 -i 620 -a 1 -x {1.1.3.0 0.0.3.0 309 ------- null} + -t 30.3448 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 640 -a 0 -x {0.0.3.0 1.1.3.0 329 ------- null} - -t 30.3448 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 640 -a 0 -x {0.0.3.0 1.1.3.0 329 ------- null} h -t 30.3448 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 640 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.3464 -s 1 -d 3 -p ack -e 40 -c 0 -i 621 -a 1 -x {1.1.3.0 0.0.3.0 310 ------- null} + -t 30.3464 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {0.0.3.0 1.1.3.0 330 ------- null} - -t 30.3464 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {0.0.3.0 1.1.3.0 330 ------- null} h -t 30.3464 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.4776 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 622 -a 0 -x {0.0.3.0 1.1.3.0 311 ------- null} + -t 30.4776 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 622 -a 0 -x {0.0.3.0 1.1.3.0 311 ------- null} - -t 30.4776 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 622 -a 0 -x {0.0.3.0 1.1.3.0 311 ------- null} h -t 30.4776 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 622 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.4792 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {0.0.3.0 1.1.3.0 312 ------- null} + -t 30.4792 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {0.0.3.0 1.1.3.0 312 ------- null} - -t 30.4792 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {0.0.3.0 1.1.3.0 312 ------- null} h -t 30.4792 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.4808 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 624 -a 0 -x {0.0.3.0 1.1.3.0 313 ------- null} + -t 30.4808 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 624 -a 0 -x {0.0.3.0 1.1.3.0 313 ------- null} - -t 30.4808 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 624 -a 0 -x {0.0.3.0 1.1.3.0 313 ------- null} h -t 30.4808 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 624 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.4824 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {0.0.3.0 1.1.3.0 314 ------- null} + -t 30.4824 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {0.0.3.0 1.1.3.0 314 ------- null} - -t 30.4824 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {0.0.3.0 1.1.3.0 314 ------- null} h -t 30.4824 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.484 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 626 -a 0 -x {0.0.3.0 1.1.3.0 315 ------- null} + -t 30.484 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 626 -a 0 -x {0.0.3.0 1.1.3.0 315 ------- null} - -t 30.484 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 626 -a 0 -x {0.0.3.0 1.1.3.0 315 ------- null} h -t 30.484 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 626 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.4856 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {0.0.3.0 1.1.3.0 316 ------- null} + -t 30.4856 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {0.0.3.0 1.1.3.0 316 ------- null} - -t 30.4856 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {0.0.3.0 1.1.3.0 316 ------- null} h -t 30.4856 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.4872 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 628 -a 0 -x {0.0.3.0 1.1.3.0 317 ------- null} + -t 30.4872 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 628 -a 0 -x {0.0.3.0 1.1.3.0 317 ------- null} - -t 30.4872 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 628 -a 0 -x {0.0.3.0 1.1.3.0 317 ------- null} h -t 30.4872 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 628 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.4888 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {0.0.3.0 1.1.3.0 318 ------- null} + -t 30.4888 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {0.0.3.0 1.1.3.0 318 ------- null} - -t 30.4888 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {0.0.3.0 1.1.3.0 318 ------- null} h -t 30.4888 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.4904 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 630 -a 0 -x {0.0.3.0 1.1.3.0 319 ------- null} + -t 30.4904 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 630 -a 0 -x {0.0.3.0 1.1.3.0 319 ------- null} - -t 30.4904 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 630 -a 0 -x {0.0.3.0 1.1.3.0 319 ------- null} h -t 30.4904 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 630 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.492 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {0.0.3.0 1.1.3.0 320 ------- null} + -t 30.492 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {0.0.3.0 1.1.3.0 320 ------- null} - -t 30.492 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {0.0.3.0 1.1.3.0 320 ------- null} h -t 30.492 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.4936 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 632 -a 0 -x {0.0.3.0 1.1.3.0 321 ------- null} + -t 30.4936 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 632 -a 0 -x {0.0.3.0 1.1.3.0 321 ------- null} - -t 30.4936 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 632 -a 0 -x {0.0.3.0 1.1.3.0 321 ------- null} h -t 30.4936 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 632 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.4952 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {0.0.3.0 1.1.3.0 322 ------- null} + -t 30.4952 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {0.0.3.0 1.1.3.0 322 ------- null} - -t 30.4952 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {0.0.3.0 1.1.3.0 322 ------- null} h -t 30.4952 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.4968 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 634 -a 0 -x {0.0.3.0 1.1.3.0 323 ------- null} + -t 30.4968 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 634 -a 0 -x {0.0.3.0 1.1.3.0 323 ------- null} - -t 30.4968 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 634 -a 0 -x {0.0.3.0 1.1.3.0 323 ------- null} h -t 30.4968 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 634 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.4984 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {0.0.3.0 1.1.3.0 324 ------- null} + -t 30.4984 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {0.0.3.0 1.1.3.0 324 ------- null} - -t 30.4984 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {0.0.3.0 1.1.3.0 324 ------- null} h -t 30.4984 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.5 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 636 -a 0 -x {0.0.3.0 1.1.3.0 325 ------- null} + -t 30.5 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 636 -a 0 -x {0.0.3.0 1.1.3.0 325 ------- null} - -t 30.5 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 636 -a 0 -x {0.0.3.0 1.1.3.0 325 ------- null} h -t 30.5 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 636 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.5016 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {0.0.3.0 1.1.3.0 326 ------- null} + -t 30.5016 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {0.0.3.0 1.1.3.0 326 ------- null} - -t 30.5016 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {0.0.3.0 1.1.3.0 326 ------- null} h -t 30.5016 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.5032 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 638 -a 0 -x {0.0.3.0 1.1.3.0 327 ------- null} + -t 30.5032 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 638 -a 0 -x {0.0.3.0 1.1.3.0 327 ------- null} - -t 30.5032 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 638 -a 0 -x {0.0.3.0 1.1.3.0 327 ------- null} h -t 30.5032 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 638 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.5048 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {0.0.3.0 1.1.3.0 328 ------- null} + -t 30.5048 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {0.0.3.0 1.1.3.0 328 ------- null} - -t 30.5048 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {0.0.3.0 1.1.3.0 328 ------- null} h -t 30.5048 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.5064 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 640 -a 0 -x {0.0.3.0 1.1.3.0 329 ------- null} + -t 30.5064 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 640 -a 0 -x {0.0.3.0 1.1.3.0 329 ------- null} - -t 30.5064 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 640 -a 0 -x {0.0.3.0 1.1.3.0 329 ------- null} h -t 30.5064 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 640 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.508 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {0.0.3.0 1.1.3.0 330 ------- null} + -t 30.508 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {0.0.3.0 1.1.3.0 330 ------- null} - -t 30.508 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {0.0.3.0 1.1.3.0 330 ------- null} h -t 30.508 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.7792 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 622 -a 0 -x {0.0.3.0 1.1.3.0 311 ------- null} + -t 30.7792 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 622 -a 0 -x {0.0.3.0 1.1.3.0 311 ------- null} - -t 30.7792 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 622 -a 0 -x {0.0.3.0 1.1.3.0 311 ------- null} h -t 30.7792 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 622 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.7808 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {0.0.3.0 1.1.3.0 312 ------- null} + -t 30.7808 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {0.0.3.0 1.1.3.0 312 ------- null} - -t 30.7808 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {0.0.3.0 1.1.3.0 312 ------- null} h -t 30.7808 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.7824 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 624 -a 0 -x {0.0.3.0 1.1.3.0 313 ------- null} + -t 30.7824 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 624 -a 0 -x {0.0.3.0 1.1.3.0 313 ------- null} - -t 30.7824 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 624 -a 0 -x {0.0.3.0 1.1.3.0 313 ------- null} h -t 30.7824 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 624 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.784 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {0.0.3.0 1.1.3.0 314 ------- null} + -t 30.784 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {0.0.3.0 1.1.3.0 314 ------- null} - -t 30.784 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {0.0.3.0 1.1.3.0 314 ------- null} h -t 30.784 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.7856 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 626 -a 0 -x {0.0.3.0 1.1.3.0 315 ------- null} + -t 30.7856 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 626 -a 0 -x {0.0.3.0 1.1.3.0 315 ------- null} - -t 30.7856 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 626 -a 0 -x {0.0.3.0 1.1.3.0 315 ------- null} h -t 30.7856 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 626 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.7872 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {0.0.3.0 1.1.3.0 316 ------- null} + -t 30.7872 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {0.0.3.0 1.1.3.0 316 ------- null} - -t 30.7872 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {0.0.3.0 1.1.3.0 316 ------- null} h -t 30.7872 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.7888 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 628 -a 0 -x {0.0.3.0 1.1.3.0 317 ------- null} + -t 30.7888 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 628 -a 0 -x {0.0.3.0 1.1.3.0 317 ------- null} - -t 30.7888 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 628 -a 0 -x {0.0.3.0 1.1.3.0 317 ------- null} h -t 30.7888 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 628 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.7904 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {0.0.3.0 1.1.3.0 318 ------- null} + -t 30.7904 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {0.0.3.0 1.1.3.0 318 ------- null} - -t 30.7904 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {0.0.3.0 1.1.3.0 318 ------- null} h -t 30.7904 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.792 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 630 -a 0 -x {0.0.3.0 1.1.3.0 319 ------- null} + -t 30.792 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 630 -a 0 -x {0.0.3.0 1.1.3.0 319 ------- null} - -t 30.792 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 630 -a 0 -x {0.0.3.0 1.1.3.0 319 ------- null} h -t 30.792 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 630 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.7936 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {0.0.3.0 1.1.3.0 320 ------- null} + -t 30.7936 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {0.0.3.0 1.1.3.0 320 ------- null} - -t 30.7936 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {0.0.3.0 1.1.3.0 320 ------- null} h -t 30.7936 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.7952 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 632 -a 0 -x {0.0.3.0 1.1.3.0 321 ------- null} + -t 30.7952 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 632 -a 0 -x {0.0.3.0 1.1.3.0 321 ------- null} - -t 30.7952 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 632 -a 0 -x {0.0.3.0 1.1.3.0 321 ------- null} h -t 30.7952 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 632 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.7968 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {0.0.3.0 1.1.3.0 322 ------- null} + -t 30.7968 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {0.0.3.0 1.1.3.0 322 ------- null} - -t 30.7968 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {0.0.3.0 1.1.3.0 322 ------- null} h -t 30.7968 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.7984 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 634 -a 0 -x {0.0.3.0 1.1.3.0 323 ------- null} + -t 30.7984 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 634 -a 0 -x {0.0.3.0 1.1.3.0 323 ------- null} - -t 30.7984 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 634 -a 0 -x {0.0.3.0 1.1.3.0 323 ------- null} h -t 30.7984 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 634 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.8 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {0.0.3.0 1.1.3.0 324 ------- null} + -t 30.8 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {0.0.3.0 1.1.3.0 324 ------- null} - -t 30.8 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {0.0.3.0 1.1.3.0 324 ------- null} h -t 30.8 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.8016 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 636 -a 0 -x {0.0.3.0 1.1.3.0 325 ------- null} + -t 30.8016 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 636 -a 0 -x {0.0.3.0 1.1.3.0 325 ------- null} - -t 30.8016 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 636 -a 0 -x {0.0.3.0 1.1.3.0 325 ------- null} h -t 30.8016 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 636 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.8032 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {0.0.3.0 1.1.3.0 326 ------- null} + -t 30.8032 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {0.0.3.0 1.1.3.0 326 ------- null} - -t 30.8032 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {0.0.3.0 1.1.3.0 326 ------- null} h -t 30.8032 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.8048 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 638 -a 0 -x {0.0.3.0 1.1.3.0 327 ------- null} + -t 30.8048 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 638 -a 0 -x {0.0.3.0 1.1.3.0 327 ------- null} - -t 30.8048 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 638 -a 0 -x {0.0.3.0 1.1.3.0 327 ------- null} h -t 30.8048 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 638 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.8064 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {0.0.3.0 1.1.3.0 328 ------- null} + -t 30.8064 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {0.0.3.0 1.1.3.0 328 ------- null} - -t 30.8064 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {0.0.3.0 1.1.3.0 328 ------- null} h -t 30.8064 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.808 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 640 -a 0 -x {0.0.3.0 1.1.3.0 329 ------- null} + -t 30.808 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 640 -a 0 -x {0.0.3.0 1.1.3.0 329 ------- null} - -t 30.808 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 640 -a 0 -x {0.0.3.0 1.1.3.0 329 ------- null} h -t 30.808 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 640 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.8096 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {0.0.3.0 1.1.3.0 330 ------- null} + -t 30.8096 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {0.0.3.0 1.1.3.0 330 ------- null} - -t 30.8096 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {0.0.3.0 1.1.3.0 330 ------- null} h -t 30.8096 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.8808 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 622 -a 0 -x {0.0.3.0 1.1.3.0 311 ------- null} + -t 30.8808 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 622 -a 0 -x {0.0.3.0 1.1.3.0 311 ------- null} - -t 30.8808 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 622 -a 0 -x {0.0.3.0 1.1.3.0 311 ------- null} h -t 30.8808 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 622 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.8824 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {0.0.3.0 1.1.3.0 312 ------- null} + -t 30.8824 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {0.0.3.0 1.1.3.0 312 ------- null} - -t 30.8824 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {0.0.3.0 1.1.3.0 312 ------- null} h -t 30.8824 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.884 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 624 -a 0 -x {0.0.3.0 1.1.3.0 313 ------- null} + -t 30.884 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 624 -a 0 -x {0.0.3.0 1.1.3.0 313 ------- null} - -t 30.884 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 624 -a 0 -x {0.0.3.0 1.1.3.0 313 ------- null} h -t 30.884 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 624 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.8856 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {0.0.3.0 1.1.3.0 314 ------- null} + -t 30.8856 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {0.0.3.0 1.1.3.0 314 ------- null} - -t 30.8856 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {0.0.3.0 1.1.3.0 314 ------- null} h -t 30.8856 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.8872 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 626 -a 0 -x {0.0.3.0 1.1.3.0 315 ------- null} + -t 30.8872 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 626 -a 0 -x {0.0.3.0 1.1.3.0 315 ------- null} - -t 30.8872 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 626 -a 0 -x {0.0.3.0 1.1.3.0 315 ------- null} h -t 30.8872 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 626 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.8888 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {0.0.3.0 1.1.3.0 316 ------- null} + -t 30.8888 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {0.0.3.0 1.1.3.0 316 ------- null} - -t 30.8888 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {0.0.3.0 1.1.3.0 316 ------- null} h -t 30.8888 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.8904 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 628 -a 0 -x {0.0.3.0 1.1.3.0 317 ------- null} + -t 30.8904 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 628 -a 0 -x {0.0.3.0 1.1.3.0 317 ------- null} - -t 30.8904 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 628 -a 0 -x {0.0.3.0 1.1.3.0 317 ------- null} h -t 30.8904 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 628 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.892 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {0.0.3.0 1.1.3.0 318 ------- null} + -t 30.892 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {0.0.3.0 1.1.3.0 318 ------- null} - -t 30.892 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {0.0.3.0 1.1.3.0 318 ------- null} h -t 30.892 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.8936 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 630 -a 0 -x {0.0.3.0 1.1.3.0 319 ------- null} + -t 30.8936 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 630 -a 0 -x {0.0.3.0 1.1.3.0 319 ------- null} - -t 30.8936 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 630 -a 0 -x {0.0.3.0 1.1.3.0 319 ------- null} h -t 30.8936 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 630 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.8952 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {0.0.3.0 1.1.3.0 320 ------- null} + -t 30.8952 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {0.0.3.0 1.1.3.0 320 ------- null} - -t 30.8952 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {0.0.3.0 1.1.3.0 320 ------- null} h -t 30.8952 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.8968 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 632 -a 0 -x {0.0.3.0 1.1.3.0 321 ------- null} + -t 30.8968 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 632 -a 0 -x {0.0.3.0 1.1.3.0 321 ------- null} - -t 30.8968 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 632 -a 0 -x {0.0.3.0 1.1.3.0 321 ------- null} h -t 30.8968 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 632 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.8984 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {0.0.3.0 1.1.3.0 322 ------- null} + -t 30.8984 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {0.0.3.0 1.1.3.0 322 ------- null} - -t 30.8984 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {0.0.3.0 1.1.3.0 322 ------- null} h -t 30.8984 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.9 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 634 -a 0 -x {0.0.3.0 1.1.3.0 323 ------- null} + -t 30.9 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 634 -a 0 -x {0.0.3.0 1.1.3.0 323 ------- null} - -t 30.9 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 634 -a 0 -x {0.0.3.0 1.1.3.0 323 ------- null} h -t 30.9 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 634 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.9016 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {0.0.3.0 1.1.3.0 324 ------- null} + -t 30.9016 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {0.0.3.0 1.1.3.0 324 ------- null} - -t 30.9016 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {0.0.3.0 1.1.3.0 324 ------- null} h -t 30.9016 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.9032 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 636 -a 0 -x {0.0.3.0 1.1.3.0 325 ------- null} + -t 30.9032 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 636 -a 0 -x {0.0.3.0 1.1.3.0 325 ------- null} - -t 30.9032 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 636 -a 0 -x {0.0.3.0 1.1.3.0 325 ------- null} h -t 30.9032 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 636 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.9048 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {0.0.3.0 1.1.3.0 326 ------- null} + -t 30.9048 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {0.0.3.0 1.1.3.0 326 ------- null} - -t 30.9048 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {0.0.3.0 1.1.3.0 326 ------- null} h -t 30.9048 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.9064 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 638 -a 0 -x {0.0.3.0 1.1.3.0 327 ------- null} + -t 30.9064 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 638 -a 0 -x {0.0.3.0 1.1.3.0 327 ------- null} - -t 30.9064 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 638 -a 0 -x {0.0.3.0 1.1.3.0 327 ------- null} h -t 30.9064 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 638 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.908 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {0.0.3.0 1.1.3.0 328 ------- null} + -t 30.908 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {0.0.3.0 1.1.3.0 328 ------- null} - -t 30.908 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {0.0.3.0 1.1.3.0 328 ------- null} h -t 30.908 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.9096 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 640 -a 0 -x {0.0.3.0 1.1.3.0 329 ------- null} + -t 30.9096 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 640 -a 0 -x {0.0.3.0 1.1.3.0 329 ------- null} - -t 30.9096 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 640 -a 0 -x {0.0.3.0 1.1.3.0 329 ------- null} h -t 30.9096 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 640 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.9112 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {0.0.3.0 1.1.3.0 330 ------- null} + -t 30.9112 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {0.0.3.0 1.1.3.0 330 ------- null} - -t 30.9112 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {0.0.3.0 1.1.3.0 330 ------- null} h -t 30.9112 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.9624 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 622 -a 0 -x {0.0.3.0 1.1.3.0 311 ------- null} + -t 30.9624 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 622 -a 0 -x {0.0.3.0 1.1.3.0 311 ------- null} - -t 30.9624 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 622 -a 0 -x {0.0.3.0 1.1.3.0 311 ------- null} h -t 30.9624 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 622 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.964 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {0.0.3.0 1.1.3.0 312 ------- null} + -t 30.964 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {0.0.3.0 1.1.3.0 312 ------- null} - -t 30.964 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {0.0.3.0 1.1.3.0 312 ------- null} h -t 30.964 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.9656 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 624 -a 0 -x {0.0.3.0 1.1.3.0 313 ------- null} + -t 30.9656 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 624 -a 0 -x {0.0.3.0 1.1.3.0 313 ------- null} - -t 30.9656 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 624 -a 0 -x {0.0.3.0 1.1.3.0 313 ------- null} h -t 30.9656 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 624 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.9672 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {0.0.3.0 1.1.3.0 314 ------- null} + -t 30.9672 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {0.0.3.0 1.1.3.0 314 ------- null} - -t 30.9672 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {0.0.3.0 1.1.3.0 314 ------- null} h -t 30.9672 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.9688 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 626 -a 0 -x {0.0.3.0 1.1.3.0 315 ------- null} + -t 30.9688 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 626 -a 0 -x {0.0.3.0 1.1.3.0 315 ------- null} - -t 30.9688 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 626 -a 0 -x {0.0.3.0 1.1.3.0 315 ------- null} h -t 30.9688 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 626 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.9704 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {0.0.3.0 1.1.3.0 316 ------- null} + -t 30.9704 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {0.0.3.0 1.1.3.0 316 ------- null} - -t 30.9704 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {0.0.3.0 1.1.3.0 316 ------- null} h -t 30.9704 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.972 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 628 -a 0 -x {0.0.3.0 1.1.3.0 317 ------- null} + -t 30.972 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 628 -a 0 -x {0.0.3.0 1.1.3.0 317 ------- null} - -t 30.972 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 628 -a 0 -x {0.0.3.0 1.1.3.0 317 ------- null} h -t 30.972 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 628 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.9736 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {0.0.3.0 1.1.3.0 318 ------- null} + -t 30.9736 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {0.0.3.0 1.1.3.0 318 ------- null} - -t 30.9736 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {0.0.3.0 1.1.3.0 318 ------- null} h -t 30.9736 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.9752 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 630 -a 0 -x {0.0.3.0 1.1.3.0 319 ------- null} + -t 30.9752 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 630 -a 0 -x {0.0.3.0 1.1.3.0 319 ------- null} - -t 30.9752 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 630 -a 0 -x {0.0.3.0 1.1.3.0 319 ------- null} h -t 30.9752 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 630 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.9768 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {0.0.3.0 1.1.3.0 320 ------- null} + -t 30.9768 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {0.0.3.0 1.1.3.0 320 ------- null} - -t 30.9768 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {0.0.3.0 1.1.3.0 320 ------- null} h -t 30.9768 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.9784 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 632 -a 0 -x {0.0.3.0 1.1.3.0 321 ------- null} + -t 30.9784 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 632 -a 0 -x {0.0.3.0 1.1.3.0 321 ------- null} - -t 30.9784 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 632 -a 0 -x {0.0.3.0 1.1.3.0 321 ------- null} h -t 30.9784 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 632 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.98 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {0.0.3.0 1.1.3.0 322 ------- null} + -t 30.98 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {0.0.3.0 1.1.3.0 322 ------- null} - -t 30.98 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {0.0.3.0 1.1.3.0 322 ------- null} h -t 30.98 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.9816 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 634 -a 0 -x {0.0.3.0 1.1.3.0 323 ------- null} + -t 30.9816 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 634 -a 0 -x {0.0.3.0 1.1.3.0 323 ------- null} - -t 30.9816 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 634 -a 0 -x {0.0.3.0 1.1.3.0 323 ------- null} h -t 30.9816 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 634 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.9832 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {0.0.3.0 1.1.3.0 324 ------- null} + -t 30.9832 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {0.0.3.0 1.1.3.0 324 ------- null} - -t 30.9832 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {0.0.3.0 1.1.3.0 324 ------- null} h -t 30.9832 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.9848 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 636 -a 0 -x {0.0.3.0 1.1.3.0 325 ------- null} + -t 30.9848 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 636 -a 0 -x {0.0.3.0 1.1.3.0 325 ------- null} - -t 30.9848 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 636 -a 0 -x {0.0.3.0 1.1.3.0 325 ------- null} h -t 30.9848 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 636 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.9864 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {0.0.3.0 1.1.3.0 326 ------- null} + -t 30.9864 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {0.0.3.0 1.1.3.0 326 ------- null} - -t 30.9864 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {0.0.3.0 1.1.3.0 326 ------- null} h -t 30.9864 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.988 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 638 -a 0 -x {0.0.3.0 1.1.3.0 327 ------- null} + -t 30.988 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 638 -a 0 -x {0.0.3.0 1.1.3.0 327 ------- null} - -t 30.988 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 638 -a 0 -x {0.0.3.0 1.1.3.0 327 ------- null} h -t 30.988 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 638 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.9896 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {0.0.3.0 1.1.3.0 328 ------- null} + -t 30.9896 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {0.0.3.0 1.1.3.0 328 ------- null} - -t 30.9896 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {0.0.3.0 1.1.3.0 328 ------- null} h -t 30.9896 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.9912 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 640 -a 0 -x {0.0.3.0 1.1.3.0 329 ------- null} + -t 30.9912 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 640 -a 0 -x {0.0.3.0 1.1.3.0 329 ------- null} - -t 30.9912 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 640 -a 0 -x {0.0.3.0 1.1.3.0 329 ------- null} h -t 30.9912 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 640 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 30.9928 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {0.0.3.0 1.1.3.0 330 ------- null} + -t 30.9928 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {0.0.3.0 1.1.3.0 330 ------- null} - -t 30.9928 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {0.0.3.0 1.1.3.0 330 ------- null} h -t 30.9928 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 31.044 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 622 -a 0 -x {0.0.3.0 1.1.3.0 311 ------- null} + -t 31.044 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 622 -a 0 -x {0.0.3.0 1.1.3.0 311 ------- null} - -t 31.044 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 622 -a 0 -x {0.0.3.0 1.1.3.0 311 ------- null} h -t 31.044 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 622 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 31.0456 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {0.0.3.0 1.1.3.0 312 ------- null} + -t 31.0456 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {0.0.3.0 1.1.3.0 312 ------- null} - -t 31.0456 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {0.0.3.0 1.1.3.0 312 ------- null} h -t 31.0456 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 31.0472 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 624 -a 0 -x {0.0.3.0 1.1.3.0 313 ------- null} + -t 31.0472 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 624 -a 0 -x {0.0.3.0 1.1.3.0 313 ------- null} - -t 31.0472 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 624 -a 0 -x {0.0.3.0 1.1.3.0 313 ------- null} h -t 31.0472 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 624 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 31.0488 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {0.0.3.0 1.1.3.0 314 ------- null} + -t 31.0488 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {0.0.3.0 1.1.3.0 314 ------- null} - -t 31.0488 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {0.0.3.0 1.1.3.0 314 ------- null} h -t 31.0488 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 31.0504 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 626 -a 0 -x {0.0.3.0 1.1.3.0 315 ------- null} + -t 31.0504 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 626 -a 0 -x {0.0.3.0 1.1.3.0 315 ------- null} - -t 31.0504 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 626 -a 0 -x {0.0.3.0 1.1.3.0 315 ------- null} h -t 31.0504 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 626 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 31.052 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {0.0.3.0 1.1.3.0 316 ------- null} + -t 31.052 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {0.0.3.0 1.1.3.0 316 ------- null} - -t 31.052 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {0.0.3.0 1.1.3.0 316 ------- null} h -t 31.052 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 31.0536 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 628 -a 0 -x {0.0.3.0 1.1.3.0 317 ------- null} + -t 31.0536 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 628 -a 0 -x {0.0.3.0 1.1.3.0 317 ------- null} - -t 31.0536 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 628 -a 0 -x {0.0.3.0 1.1.3.0 317 ------- null} h -t 31.0536 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 628 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 31.0552 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {0.0.3.0 1.1.3.0 318 ------- null} + -t 31.0552 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {0.0.3.0 1.1.3.0 318 ------- null} - -t 31.0552 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {0.0.3.0 1.1.3.0 318 ------- null} h -t 31.0552 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 31.0568 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 630 -a 0 -x {0.0.3.0 1.1.3.0 319 ------- null} + -t 31.0568 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 630 -a 0 -x {0.0.3.0 1.1.3.0 319 ------- null} - -t 31.0568 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 630 -a 0 -x {0.0.3.0 1.1.3.0 319 ------- null} h -t 31.0568 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 630 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 31.0584 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {0.0.3.0 1.1.3.0 320 ------- null} + -t 31.0584 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {0.0.3.0 1.1.3.0 320 ------- null} - -t 31.0584 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {0.0.3.0 1.1.3.0 320 ------- null} h -t 31.0584 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 31.06 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 632 -a 0 -x {0.0.3.0 1.1.3.0 321 ------- null} + -t 31.06 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 632 -a 0 -x {0.0.3.0 1.1.3.0 321 ------- null} - -t 31.06 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 632 -a 0 -x {0.0.3.0 1.1.3.0 321 ------- null} h -t 31.06 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 632 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 31.0616 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {0.0.3.0 1.1.3.0 322 ------- null} + -t 31.0616 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {0.0.3.0 1.1.3.0 322 ------- null} - -t 31.0616 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {0.0.3.0 1.1.3.0 322 ------- null} h -t 31.0616 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 31.0632 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 634 -a 0 -x {0.0.3.0 1.1.3.0 323 ------- null} + -t 31.0632 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 634 -a 0 -x {0.0.3.0 1.1.3.0 323 ------- null} - -t 31.0632 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 634 -a 0 -x {0.0.3.0 1.1.3.0 323 ------- null} h -t 31.0632 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 634 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 31.0648 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {0.0.3.0 1.1.3.0 324 ------- null} + -t 31.0648 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {0.0.3.0 1.1.3.0 324 ------- null} - -t 31.0648 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {0.0.3.0 1.1.3.0 324 ------- null} h -t 31.0648 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 31.0664 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 636 -a 0 -x {0.0.3.0 1.1.3.0 325 ------- null} + -t 31.0664 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 636 -a 0 -x {0.0.3.0 1.1.3.0 325 ------- null} - -t 31.0664 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 636 -a 0 -x {0.0.3.0 1.1.3.0 325 ------- null} h -t 31.0664 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 636 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 31.068 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {0.0.3.0 1.1.3.0 326 ------- null} + -t 31.068 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {0.0.3.0 1.1.3.0 326 ------- null} - -t 31.068 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {0.0.3.0 1.1.3.0 326 ------- null} h -t 31.068 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 31.0696 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 638 -a 0 -x {0.0.3.0 1.1.3.0 327 ------- null} + -t 31.0696 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 638 -a 0 -x {0.0.3.0 1.1.3.0 327 ------- null} - -t 31.0696 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 638 -a 0 -x {0.0.3.0 1.1.3.0 327 ------- null} h -t 31.0696 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 638 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 31.0712 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {0.0.3.0 1.1.3.0 328 ------- null} + -t 31.0712 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {0.0.3.0 1.1.3.0 328 ------- null} - -t 31.0712 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {0.0.3.0 1.1.3.0 328 ------- null} h -t 31.0712 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 31.0728 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 640 -a 0 -x {0.0.3.0 1.1.3.0 329 ------- null} + -t 31.0728 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 640 -a 0 -x {0.0.3.0 1.1.3.0 329 ------- null} - -t 31.0728 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 640 -a 0 -x {0.0.3.0 1.1.3.0 329 ------- null} h -t 31.0728 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 640 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 31.0744 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {0.0.3.0 1.1.3.0 330 ------- null} + -t 31.0744 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {0.0.3.0 1.1.3.0 330 ------- null} - -t 31.0744 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {0.0.3.0 1.1.3.0 330 ------- null} h -t 31.0744 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 31.1056 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 622 -a 0 -x {0.0.3.0 1.1.3.0 311 ------- null} + -t 31.1056 -s 21 -d 28 -p ack -e 40 -c 0 -i 642 -a 1 -x {1.1.3.0 0.0.3.0 311 ------- null} - -t 31.1056 -s 21 -d 28 -p ack -e 40 -c 0 -i 642 -a 1 -x {1.1.3.0 0.0.3.0 311 ------- null} h -t 31.1056 -s 21 -d 28 -p ack -e 40 -c 0 -i 642 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.1072 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {0.0.3.0 1.1.3.0 312 ------- null} + -t 31.1072 -s 21 -d 28 -p ack -e 40 -c 0 -i 643 -a 1 -x {1.1.3.0 0.0.3.0 312 ------- null} - -t 31.1072 -s 21 -d 28 -p ack -e 40 -c 0 -i 643 -a 1 -x {1.1.3.0 0.0.3.0 312 ------- null} h -t 31.1072 -s 21 -d 28 -p ack -e 40 -c 0 -i 643 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.1088 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 624 -a 0 -x {0.0.3.0 1.1.3.0 313 ------- null} + -t 31.1088 -s 21 -d 28 -p ack -e 40 -c 0 -i 644 -a 1 -x {1.1.3.0 0.0.3.0 313 ------- null} - -t 31.1088 -s 21 -d 28 -p ack -e 40 -c 0 -i 644 -a 1 -x {1.1.3.0 0.0.3.0 313 ------- null} h -t 31.1088 -s 21 -d 28 -p ack -e 40 -c 0 -i 644 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.1104 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {0.0.3.0 1.1.3.0 314 ------- null} + -t 31.1104 -s 21 -d 28 -p ack -e 40 -c 0 -i 645 -a 1 -x {1.1.3.0 0.0.3.0 314 ------- null} - -t 31.1104 -s 21 -d 28 -p ack -e 40 -c 0 -i 645 -a 1 -x {1.1.3.0 0.0.3.0 314 ------- null} h -t 31.1104 -s 21 -d 28 -p ack -e 40 -c 0 -i 645 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.112 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 626 -a 0 -x {0.0.3.0 1.1.3.0 315 ------- null} + -t 31.112 -s 21 -d 28 -p ack -e 40 -c 0 -i 646 -a 1 -x {1.1.3.0 0.0.3.0 315 ------- null} - -t 31.112 -s 21 -d 28 -p ack -e 40 -c 0 -i 646 -a 1 -x {1.1.3.0 0.0.3.0 315 ------- null} h -t 31.112 -s 21 -d 28 -p ack -e 40 -c 0 -i 646 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.1136 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {0.0.3.0 1.1.3.0 316 ------- null} + -t 31.1136 -s 21 -d 28 -p ack -e 40 -c 0 -i 647 -a 1 -x {1.1.3.0 0.0.3.0 316 ------- null} - -t 31.1136 -s 21 -d 28 -p ack -e 40 -c 0 -i 647 -a 1 -x {1.1.3.0 0.0.3.0 316 ------- null} h -t 31.1136 -s 21 -d 28 -p ack -e 40 -c 0 -i 647 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.1152 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 628 -a 0 -x {0.0.3.0 1.1.3.0 317 ------- null} + -t 31.1152 -s 21 -d 28 -p ack -e 40 -c 0 -i 648 -a 1 -x {1.1.3.0 0.0.3.0 317 ------- null} - -t 31.1152 -s 21 -d 28 -p ack -e 40 -c 0 -i 648 -a 1 -x {1.1.3.0 0.0.3.0 317 ------- null} h -t 31.1152 -s 21 -d 28 -p ack -e 40 -c 0 -i 648 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.1168 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {0.0.3.0 1.1.3.0 318 ------- null} + -t 31.1168 -s 21 -d 28 -p ack -e 40 -c 0 -i 649 -a 1 -x {1.1.3.0 0.0.3.0 318 ------- null} - -t 31.1168 -s 21 -d 28 -p ack -e 40 -c 0 -i 649 -a 1 -x {1.1.3.0 0.0.3.0 318 ------- null} h -t 31.1168 -s 21 -d 28 -p ack -e 40 -c 0 -i 649 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.1184 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 630 -a 0 -x {0.0.3.0 1.1.3.0 319 ------- null} + -t 31.1184 -s 21 -d 28 -p ack -e 40 -c 0 -i 650 -a 1 -x {1.1.3.0 0.0.3.0 319 ------- null} - -t 31.1184 -s 21 -d 28 -p ack -e 40 -c 0 -i 650 -a 1 -x {1.1.3.0 0.0.3.0 319 ------- null} h -t 31.1184 -s 21 -d 28 -p ack -e 40 -c 0 -i 650 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.12 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {0.0.3.0 1.1.3.0 320 ------- null} + -t 31.12 -s 21 -d 28 -p ack -e 40 -c 0 -i 651 -a 1 -x {1.1.3.0 0.0.3.0 320 ------- null} - -t 31.12 -s 21 -d 28 -p ack -e 40 -c 0 -i 651 -a 1 -x {1.1.3.0 0.0.3.0 320 ------- null} h -t 31.12 -s 21 -d 28 -p ack -e 40 -c 0 -i 651 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.1216 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 632 -a 0 -x {0.0.3.0 1.1.3.0 321 ------- null} + -t 31.1216 -s 21 -d 28 -p ack -e 40 -c 0 -i 652 -a 1 -x {1.1.3.0 0.0.3.0 321 ------- null} - -t 31.1216 -s 21 -d 28 -p ack -e 40 -c 0 -i 652 -a 1 -x {1.1.3.0 0.0.3.0 321 ------- null} h -t 31.1216 -s 21 -d 28 -p ack -e 40 -c 0 -i 652 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.1232 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {0.0.3.0 1.1.3.0 322 ------- null} + -t 31.1232 -s 21 -d 28 -p ack -e 40 -c 0 -i 653 -a 1 -x {1.1.3.0 0.0.3.0 322 ------- null} - -t 31.1232 -s 21 -d 28 -p ack -e 40 -c 0 -i 653 -a 1 -x {1.1.3.0 0.0.3.0 322 ------- null} h -t 31.1232 -s 21 -d 28 -p ack -e 40 -c 0 -i 653 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.1248 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 634 -a 0 -x {0.0.3.0 1.1.3.0 323 ------- null} + -t 31.1248 -s 21 -d 28 -p ack -e 40 -c 0 -i 654 -a 1 -x {1.1.3.0 0.0.3.0 323 ------- null} - -t 31.1248 -s 21 -d 28 -p ack -e 40 -c 0 -i 654 -a 1 -x {1.1.3.0 0.0.3.0 323 ------- null} h -t 31.1248 -s 21 -d 28 -p ack -e 40 -c 0 -i 654 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.1264 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {0.0.3.0 1.1.3.0 324 ------- null} + -t 31.1264 -s 21 -d 28 -p ack -e 40 -c 0 -i 655 -a 1 -x {1.1.3.0 0.0.3.0 324 ------- null} - -t 31.1264 -s 21 -d 28 -p ack -e 40 -c 0 -i 655 -a 1 -x {1.1.3.0 0.0.3.0 324 ------- null} h -t 31.1264 -s 21 -d 28 -p ack -e 40 -c 0 -i 655 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.128 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 636 -a 0 -x {0.0.3.0 1.1.3.0 325 ------- null} + -t 31.128 -s 21 -d 28 -p ack -e 40 -c 0 -i 656 -a 1 -x {1.1.3.0 0.0.3.0 325 ------- null} - -t 31.128 -s 21 -d 28 -p ack -e 40 -c 0 -i 656 -a 1 -x {1.1.3.0 0.0.3.0 325 ------- null} h -t 31.128 -s 21 -d 28 -p ack -e 40 -c 0 -i 656 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.1296 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {0.0.3.0 1.1.3.0 326 ------- null} + -t 31.1296 -s 21 -d 28 -p ack -e 40 -c 0 -i 657 -a 1 -x {1.1.3.0 0.0.3.0 326 ------- null} - -t 31.1296 -s 21 -d 28 -p ack -e 40 -c 0 -i 657 -a 1 -x {1.1.3.0 0.0.3.0 326 ------- null} h -t 31.1296 -s 21 -d 28 -p ack -e 40 -c 0 -i 657 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.1312 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 638 -a 0 -x {0.0.3.0 1.1.3.0 327 ------- null} + -t 31.1312 -s 21 -d 28 -p ack -e 40 -c 0 -i 658 -a 1 -x {1.1.3.0 0.0.3.0 327 ------- null} - -t 31.1312 -s 21 -d 28 -p ack -e 40 -c 0 -i 658 -a 1 -x {1.1.3.0 0.0.3.0 327 ------- null} h -t 31.1312 -s 21 -d 28 -p ack -e 40 -c 0 -i 658 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.1328 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {0.0.3.0 1.1.3.0 328 ------- null} + -t 31.1328 -s 21 -d 28 -p ack -e 40 -c 0 -i 659 -a 1 -x {1.1.3.0 0.0.3.0 328 ------- null} - -t 31.1328 -s 21 -d 28 -p ack -e 40 -c 0 -i 659 -a 1 -x {1.1.3.0 0.0.3.0 328 ------- null} h -t 31.1328 -s 21 -d 28 -p ack -e 40 -c 0 -i 659 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.1344 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 640 -a 0 -x {0.0.3.0 1.1.3.0 329 ------- null} + -t 31.1344 -s 21 -d 28 -p ack -e 40 -c 0 -i 660 -a 1 -x {1.1.3.0 0.0.3.0 329 ------- null} - -t 31.1344 -s 21 -d 28 -p ack -e 40 -c 0 -i 660 -a 1 -x {1.1.3.0 0.0.3.0 329 ------- null} h -t 31.1344 -s 21 -d 28 -p ack -e 40 -c 0 -i 660 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.136 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {0.0.3.0 1.1.3.0 330 ------- null} + -t 31.136 -s 21 -d 28 -p ack -e 40 -c 0 -i 661 -a 1 -x {1.1.3.0 0.0.3.0 330 ------- null} - -t 31.136 -s 21 -d 28 -p ack -e 40 -c 0 -i 661 -a 1 -x {1.1.3.0 0.0.3.0 330 ------- null} h -t 31.136 -s 21 -d 28 -p ack -e 40 -c 0 -i 661 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.4557 -s 21 -d 28 -p ack -e 40 -c 0 -i 642 -a 1 -x {1.1.3.0 0.0.3.0 311 ------- null} + -t 31.4557 -s 28 -d 1 -p ack -e 40 -c 0 -i 642 -a 1 -x {1.1.3.0 0.0.3.0 311 ------- null} - -t 31.4557 -s 28 -d 1 -p ack -e 40 -c 0 -i 642 -a 1 -x {1.1.3.0 0.0.3.0 311 ------- null} h -t 31.4557 -s 28 -d 1 -p ack -e 40 -c 0 -i 642 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.4573 -s 21 -d 28 -p ack -e 40 -c 0 -i 643 -a 1 -x {1.1.3.0 0.0.3.0 312 ------- null} + -t 31.4573 -s 28 -d 1 -p ack -e 40 -c 0 -i 643 -a 1 -x {1.1.3.0 0.0.3.0 312 ------- null} - -t 31.4573 -s 28 -d 1 -p ack -e 40 -c 0 -i 643 -a 1 -x {1.1.3.0 0.0.3.0 312 ------- null} h -t 31.4573 -s 28 -d 1 -p ack -e 40 -c 0 -i 643 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.4589 -s 21 -d 28 -p ack -e 40 -c 0 -i 644 -a 1 -x {1.1.3.0 0.0.3.0 313 ------- null} + -t 31.4589 -s 28 -d 1 -p ack -e 40 -c 0 -i 644 -a 1 -x {1.1.3.0 0.0.3.0 313 ------- null} - -t 31.4589 -s 28 -d 1 -p ack -e 40 -c 0 -i 644 -a 1 -x {1.1.3.0 0.0.3.0 313 ------- null} h -t 31.4589 -s 28 -d 1 -p ack -e 40 -c 0 -i 644 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.4605 -s 21 -d 28 -p ack -e 40 -c 0 -i 645 -a 1 -x {1.1.3.0 0.0.3.0 314 ------- null} + -t 31.4605 -s 28 -d 1 -p ack -e 40 -c 0 -i 645 -a 1 -x {1.1.3.0 0.0.3.0 314 ------- null} - -t 31.4605 -s 28 -d 1 -p ack -e 40 -c 0 -i 645 -a 1 -x {1.1.3.0 0.0.3.0 314 ------- null} h -t 31.4605 -s 28 -d 1 -p ack -e 40 -c 0 -i 645 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.4621 -s 21 -d 28 -p ack -e 40 -c 0 -i 646 -a 1 -x {1.1.3.0 0.0.3.0 315 ------- null} + -t 31.4621 -s 28 -d 1 -p ack -e 40 -c 0 -i 646 -a 1 -x {1.1.3.0 0.0.3.0 315 ------- null} - -t 31.4621 -s 28 -d 1 -p ack -e 40 -c 0 -i 646 -a 1 -x {1.1.3.0 0.0.3.0 315 ------- null} h -t 31.4621 -s 28 -d 1 -p ack -e 40 -c 0 -i 646 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.4637 -s 21 -d 28 -p ack -e 40 -c 0 -i 647 -a 1 -x {1.1.3.0 0.0.3.0 316 ------- null} + -t 31.4637 -s 28 -d 1 -p ack -e 40 -c 0 -i 647 -a 1 -x {1.1.3.0 0.0.3.0 316 ------- null} - -t 31.4637 -s 28 -d 1 -p ack -e 40 -c 0 -i 647 -a 1 -x {1.1.3.0 0.0.3.0 316 ------- null} h -t 31.4637 -s 28 -d 1 -p ack -e 40 -c 0 -i 647 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.4653 -s 21 -d 28 -p ack -e 40 -c 0 -i 648 -a 1 -x {1.1.3.0 0.0.3.0 317 ------- null} + -t 31.4653 -s 28 -d 1 -p ack -e 40 -c 0 -i 648 -a 1 -x {1.1.3.0 0.0.3.0 317 ------- null} - -t 31.4653 -s 28 -d 1 -p ack -e 40 -c 0 -i 648 -a 1 -x {1.1.3.0 0.0.3.0 317 ------- null} h -t 31.4653 -s 28 -d 1 -p ack -e 40 -c 0 -i 648 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.4669 -s 21 -d 28 -p ack -e 40 -c 0 -i 649 -a 1 -x {1.1.3.0 0.0.3.0 318 ------- null} + -t 31.4669 -s 28 -d 1 -p ack -e 40 -c 0 -i 649 -a 1 -x {1.1.3.0 0.0.3.0 318 ------- null} - -t 31.4669 -s 28 -d 1 -p ack -e 40 -c 0 -i 649 -a 1 -x {1.1.3.0 0.0.3.0 318 ------- null} h -t 31.4669 -s 28 -d 1 -p ack -e 40 -c 0 -i 649 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.4685 -s 21 -d 28 -p ack -e 40 -c 0 -i 650 -a 1 -x {1.1.3.0 0.0.3.0 319 ------- null} + -t 31.4685 -s 28 -d 1 -p ack -e 40 -c 0 -i 650 -a 1 -x {1.1.3.0 0.0.3.0 319 ------- null} - -t 31.4685 -s 28 -d 1 -p ack -e 40 -c 0 -i 650 -a 1 -x {1.1.3.0 0.0.3.0 319 ------- null} h -t 31.4685 -s 28 -d 1 -p ack -e 40 -c 0 -i 650 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.4701 -s 21 -d 28 -p ack -e 40 -c 0 -i 651 -a 1 -x {1.1.3.0 0.0.3.0 320 ------- null} + -t 31.4701 -s 28 -d 1 -p ack -e 40 -c 0 -i 651 -a 1 -x {1.1.3.0 0.0.3.0 320 ------- null} - -t 31.4701 -s 28 -d 1 -p ack -e 40 -c 0 -i 651 -a 1 -x {1.1.3.0 0.0.3.0 320 ------- null} h -t 31.4701 -s 28 -d 1 -p ack -e 40 -c 0 -i 651 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.4717 -s 21 -d 28 -p ack -e 40 -c 0 -i 652 -a 1 -x {1.1.3.0 0.0.3.0 321 ------- null} + -t 31.4717 -s 28 -d 1 -p ack -e 40 -c 0 -i 652 -a 1 -x {1.1.3.0 0.0.3.0 321 ------- null} - -t 31.4717 -s 28 -d 1 -p ack -e 40 -c 0 -i 652 -a 1 -x {1.1.3.0 0.0.3.0 321 ------- null} h -t 31.4717 -s 28 -d 1 -p ack -e 40 -c 0 -i 652 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.4733 -s 21 -d 28 -p ack -e 40 -c 0 -i 653 -a 1 -x {1.1.3.0 0.0.3.0 322 ------- null} + -t 31.4733 -s 28 -d 1 -p ack -e 40 -c 0 -i 653 -a 1 -x {1.1.3.0 0.0.3.0 322 ------- null} - -t 31.4733 -s 28 -d 1 -p ack -e 40 -c 0 -i 653 -a 1 -x {1.1.3.0 0.0.3.0 322 ------- null} h -t 31.4733 -s 28 -d 1 -p ack -e 40 -c 0 -i 653 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.4749 -s 21 -d 28 -p ack -e 40 -c 0 -i 654 -a 1 -x {1.1.3.0 0.0.3.0 323 ------- null} + -t 31.4749 -s 28 -d 1 -p ack -e 40 -c 0 -i 654 -a 1 -x {1.1.3.0 0.0.3.0 323 ------- null} - -t 31.4749 -s 28 -d 1 -p ack -e 40 -c 0 -i 654 -a 1 -x {1.1.3.0 0.0.3.0 323 ------- null} h -t 31.4749 -s 28 -d 1 -p ack -e 40 -c 0 -i 654 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.4765 -s 21 -d 28 -p ack -e 40 -c 0 -i 655 -a 1 -x {1.1.3.0 0.0.3.0 324 ------- null} + -t 31.4765 -s 28 -d 1 -p ack -e 40 -c 0 -i 655 -a 1 -x {1.1.3.0 0.0.3.0 324 ------- null} - -t 31.4765 -s 28 -d 1 -p ack -e 40 -c 0 -i 655 -a 1 -x {1.1.3.0 0.0.3.0 324 ------- null} h -t 31.4765 -s 28 -d 1 -p ack -e 40 -c 0 -i 655 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.4781 -s 21 -d 28 -p ack -e 40 -c 0 -i 656 -a 1 -x {1.1.3.0 0.0.3.0 325 ------- null} + -t 31.4781 -s 28 -d 1 -p ack -e 40 -c 0 -i 656 -a 1 -x {1.1.3.0 0.0.3.0 325 ------- null} - -t 31.4781 -s 28 -d 1 -p ack -e 40 -c 0 -i 656 -a 1 -x {1.1.3.0 0.0.3.0 325 ------- null} h -t 31.4781 -s 28 -d 1 -p ack -e 40 -c 0 -i 656 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.4797 -s 21 -d 28 -p ack -e 40 -c 0 -i 657 -a 1 -x {1.1.3.0 0.0.3.0 326 ------- null} + -t 31.4797 -s 28 -d 1 -p ack -e 40 -c 0 -i 657 -a 1 -x {1.1.3.0 0.0.3.0 326 ------- null} - -t 31.4797 -s 28 -d 1 -p ack -e 40 -c 0 -i 657 -a 1 -x {1.1.3.0 0.0.3.0 326 ------- null} h -t 31.4797 -s 28 -d 1 -p ack -e 40 -c 0 -i 657 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.4813 -s 21 -d 28 -p ack -e 40 -c 0 -i 658 -a 1 -x {1.1.3.0 0.0.3.0 327 ------- null} + -t 31.4813 -s 28 -d 1 -p ack -e 40 -c 0 -i 658 -a 1 -x {1.1.3.0 0.0.3.0 327 ------- null} - -t 31.4813 -s 28 -d 1 -p ack -e 40 -c 0 -i 658 -a 1 -x {1.1.3.0 0.0.3.0 327 ------- null} h -t 31.4813 -s 28 -d 1 -p ack -e 40 -c 0 -i 658 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.4829 -s 21 -d 28 -p ack -e 40 -c 0 -i 659 -a 1 -x {1.1.3.0 0.0.3.0 328 ------- null} + -t 31.4829 -s 28 -d 1 -p ack -e 40 -c 0 -i 659 -a 1 -x {1.1.3.0 0.0.3.0 328 ------- null} - -t 31.4829 -s 28 -d 1 -p ack -e 40 -c 0 -i 659 -a 1 -x {1.1.3.0 0.0.3.0 328 ------- null} h -t 31.4829 -s 28 -d 1 -p ack -e 40 -c 0 -i 659 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.4845 -s 21 -d 28 -p ack -e 40 -c 0 -i 660 -a 1 -x {1.1.3.0 0.0.3.0 329 ------- null} + -t 31.4845 -s 28 -d 1 -p ack -e 40 -c 0 -i 660 -a 1 -x {1.1.3.0 0.0.3.0 329 ------- null} - -t 31.4845 -s 28 -d 1 -p ack -e 40 -c 0 -i 660 -a 1 -x {1.1.3.0 0.0.3.0 329 ------- null} h -t 31.4845 -s 28 -d 1 -p ack -e 40 -c 0 -i 660 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.4861 -s 21 -d 28 -p ack -e 40 -c 0 -i 661 -a 1 -x {1.1.3.0 0.0.3.0 330 ------- null} + -t 31.4861 -s 28 -d 1 -p ack -e 40 -c 0 -i 661 -a 1 -x {1.1.3.0 0.0.3.0 330 ------- null} - -t 31.4861 -s 28 -d 1 -p ack -e 40 -c 0 -i 661 -a 1 -x {1.1.3.0 0.0.3.0 330 ------- null} h -t 31.4861 -s 28 -d 1 -p ack -e 40 -c 0 -i 661 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.7558 -s 28 -d 1 -p ack -e 40 -c 0 -i 642 -a 1 -x {1.1.3.0 0.0.3.0 311 ------- null} + -t 31.7558 -s 1 -d 3 -p ack -e 40 -c 0 -i 642 -a 1 -x {1.1.3.0 0.0.3.0 311 ------- null} - -t 31.7558 -s 1 -d 3 -p ack -e 40 -c 0 -i 642 -a 1 -x {1.1.3.0 0.0.3.0 311 ------- null} h -t 31.7558 -s 1 -d 3 -p ack -e 40 -c 0 -i 642 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.7574 -s 28 -d 1 -p ack -e 40 -c 0 -i 643 -a 1 -x {1.1.3.0 0.0.3.0 312 ------- null} + -t 31.7574 -s 1 -d 3 -p ack -e 40 -c 0 -i 643 -a 1 -x {1.1.3.0 0.0.3.0 312 ------- null} - -t 31.7574 -s 1 -d 3 -p ack -e 40 -c 0 -i 643 -a 1 -x {1.1.3.0 0.0.3.0 312 ------- null} h -t 31.7574 -s 1 -d 3 -p ack -e 40 -c 0 -i 643 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.759 -s 28 -d 1 -p ack -e 40 -c 0 -i 644 -a 1 -x {1.1.3.0 0.0.3.0 313 ------- null} + -t 31.759 -s 1 -d 3 -p ack -e 40 -c 0 -i 644 -a 1 -x {1.1.3.0 0.0.3.0 313 ------- null} - -t 31.759 -s 1 -d 3 -p ack -e 40 -c 0 -i 644 -a 1 -x {1.1.3.0 0.0.3.0 313 ------- null} h -t 31.759 -s 1 -d 3 -p ack -e 40 -c 0 -i 644 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.7606 -s 28 -d 1 -p ack -e 40 -c 0 -i 645 -a 1 -x {1.1.3.0 0.0.3.0 314 ------- null} + -t 31.7606 -s 1 -d 3 -p ack -e 40 -c 0 -i 645 -a 1 -x {1.1.3.0 0.0.3.0 314 ------- null} - -t 31.7606 -s 1 -d 3 -p ack -e 40 -c 0 -i 645 -a 1 -x {1.1.3.0 0.0.3.0 314 ------- null} h -t 31.7606 -s 1 -d 3 -p ack -e 40 -c 0 -i 645 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.7622 -s 28 -d 1 -p ack -e 40 -c 0 -i 646 -a 1 -x {1.1.3.0 0.0.3.0 315 ------- null} + -t 31.7622 -s 1 -d 3 -p ack -e 40 -c 0 -i 646 -a 1 -x {1.1.3.0 0.0.3.0 315 ------- null} - -t 31.7622 -s 1 -d 3 -p ack -e 40 -c 0 -i 646 -a 1 -x {1.1.3.0 0.0.3.0 315 ------- null} h -t 31.7622 -s 1 -d 3 -p ack -e 40 -c 0 -i 646 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.7638 -s 28 -d 1 -p ack -e 40 -c 0 -i 647 -a 1 -x {1.1.3.0 0.0.3.0 316 ------- null} + -t 31.7638 -s 1 -d 3 -p ack -e 40 -c 0 -i 647 -a 1 -x {1.1.3.0 0.0.3.0 316 ------- null} - -t 31.7638 -s 1 -d 3 -p ack -e 40 -c 0 -i 647 -a 1 -x {1.1.3.0 0.0.3.0 316 ------- null} h -t 31.7638 -s 1 -d 3 -p ack -e 40 -c 0 -i 647 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.7654 -s 28 -d 1 -p ack -e 40 -c 0 -i 648 -a 1 -x {1.1.3.0 0.0.3.0 317 ------- null} + -t 31.7654 -s 1 -d 3 -p ack -e 40 -c 0 -i 648 -a 1 -x {1.1.3.0 0.0.3.0 317 ------- null} - -t 31.7654 -s 1 -d 3 -p ack -e 40 -c 0 -i 648 -a 1 -x {1.1.3.0 0.0.3.0 317 ------- null} h -t 31.7654 -s 1 -d 3 -p ack -e 40 -c 0 -i 648 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.767 -s 28 -d 1 -p ack -e 40 -c 0 -i 649 -a 1 -x {1.1.3.0 0.0.3.0 318 ------- null} + -t 31.767 -s 1 -d 3 -p ack -e 40 -c 0 -i 649 -a 1 -x {1.1.3.0 0.0.3.0 318 ------- null} - -t 31.767 -s 1 -d 3 -p ack -e 40 -c 0 -i 649 -a 1 -x {1.1.3.0 0.0.3.0 318 ------- null} h -t 31.767 -s 1 -d 3 -p ack -e 40 -c 0 -i 649 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.7686 -s 28 -d 1 -p ack -e 40 -c 0 -i 650 -a 1 -x {1.1.3.0 0.0.3.0 319 ------- null} + -t 31.7686 -s 1 -d 3 -p ack -e 40 -c 0 -i 650 -a 1 -x {1.1.3.0 0.0.3.0 319 ------- null} - -t 31.7686 -s 1 -d 3 -p ack -e 40 -c 0 -i 650 -a 1 -x {1.1.3.0 0.0.3.0 319 ------- null} h -t 31.7686 -s 1 -d 3 -p ack -e 40 -c 0 -i 650 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.7702 -s 28 -d 1 -p ack -e 40 -c 0 -i 651 -a 1 -x {1.1.3.0 0.0.3.0 320 ------- null} + -t 31.7702 -s 1 -d 3 -p ack -e 40 -c 0 -i 651 -a 1 -x {1.1.3.0 0.0.3.0 320 ------- null} - -t 31.7702 -s 1 -d 3 -p ack -e 40 -c 0 -i 651 -a 1 -x {1.1.3.0 0.0.3.0 320 ------- null} h -t 31.7702 -s 1 -d 3 -p ack -e 40 -c 0 -i 651 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.7718 -s 28 -d 1 -p ack -e 40 -c 0 -i 652 -a 1 -x {1.1.3.0 0.0.3.0 321 ------- null} + -t 31.7718 -s 1 -d 3 -p ack -e 40 -c 0 -i 652 -a 1 -x {1.1.3.0 0.0.3.0 321 ------- null} - -t 31.7718 -s 1 -d 3 -p ack -e 40 -c 0 -i 652 -a 1 -x {1.1.3.0 0.0.3.0 321 ------- null} h -t 31.7718 -s 1 -d 3 -p ack -e 40 -c 0 -i 652 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.7734 -s 28 -d 1 -p ack -e 40 -c 0 -i 653 -a 1 -x {1.1.3.0 0.0.3.0 322 ------- null} + -t 31.7734 -s 1 -d 3 -p ack -e 40 -c 0 -i 653 -a 1 -x {1.1.3.0 0.0.3.0 322 ------- null} - -t 31.7734 -s 1 -d 3 -p ack -e 40 -c 0 -i 653 -a 1 -x {1.1.3.0 0.0.3.0 322 ------- null} h -t 31.7734 -s 1 -d 3 -p ack -e 40 -c 0 -i 653 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.775 -s 28 -d 1 -p ack -e 40 -c 0 -i 654 -a 1 -x {1.1.3.0 0.0.3.0 323 ------- null} + -t 31.775 -s 1 -d 3 -p ack -e 40 -c 0 -i 654 -a 1 -x {1.1.3.0 0.0.3.0 323 ------- null} - -t 31.775 -s 1 -d 3 -p ack -e 40 -c 0 -i 654 -a 1 -x {1.1.3.0 0.0.3.0 323 ------- null} h -t 31.775 -s 1 -d 3 -p ack -e 40 -c 0 -i 654 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.7766 -s 28 -d 1 -p ack -e 40 -c 0 -i 655 -a 1 -x {1.1.3.0 0.0.3.0 324 ------- null} + -t 31.7766 -s 1 -d 3 -p ack -e 40 -c 0 -i 655 -a 1 -x {1.1.3.0 0.0.3.0 324 ------- null} - -t 31.7766 -s 1 -d 3 -p ack -e 40 -c 0 -i 655 -a 1 -x {1.1.3.0 0.0.3.0 324 ------- null} h -t 31.7766 -s 1 -d 3 -p ack -e 40 -c 0 -i 655 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.7782 -s 28 -d 1 -p ack -e 40 -c 0 -i 656 -a 1 -x {1.1.3.0 0.0.3.0 325 ------- null} + -t 31.7782 -s 1 -d 3 -p ack -e 40 -c 0 -i 656 -a 1 -x {1.1.3.0 0.0.3.0 325 ------- null} - -t 31.7782 -s 1 -d 3 -p ack -e 40 -c 0 -i 656 -a 1 -x {1.1.3.0 0.0.3.0 325 ------- null} h -t 31.7782 -s 1 -d 3 -p ack -e 40 -c 0 -i 656 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.7798 -s 28 -d 1 -p ack -e 40 -c 0 -i 657 -a 1 -x {1.1.3.0 0.0.3.0 326 ------- null} + -t 31.7798 -s 1 -d 3 -p ack -e 40 -c 0 -i 657 -a 1 -x {1.1.3.0 0.0.3.0 326 ------- null} - -t 31.7798 -s 1 -d 3 -p ack -e 40 -c 0 -i 657 -a 1 -x {1.1.3.0 0.0.3.0 326 ------- null} h -t 31.7798 -s 1 -d 3 -p ack -e 40 -c 0 -i 657 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.7814 -s 28 -d 1 -p ack -e 40 -c 0 -i 658 -a 1 -x {1.1.3.0 0.0.3.0 327 ------- null} + -t 31.7814 -s 1 -d 3 -p ack -e 40 -c 0 -i 658 -a 1 -x {1.1.3.0 0.0.3.0 327 ------- null} - -t 31.7814 -s 1 -d 3 -p ack -e 40 -c 0 -i 658 -a 1 -x {1.1.3.0 0.0.3.0 327 ------- null} h -t 31.7814 -s 1 -d 3 -p ack -e 40 -c 0 -i 658 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.783 -s 28 -d 1 -p ack -e 40 -c 0 -i 659 -a 1 -x {1.1.3.0 0.0.3.0 328 ------- null} + -t 31.783 -s 1 -d 3 -p ack -e 40 -c 0 -i 659 -a 1 -x {1.1.3.0 0.0.3.0 328 ------- null} - -t 31.783 -s 1 -d 3 -p ack -e 40 -c 0 -i 659 -a 1 -x {1.1.3.0 0.0.3.0 328 ------- null} h -t 31.783 -s 1 -d 3 -p ack -e 40 -c 0 -i 659 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.7846 -s 28 -d 1 -p ack -e 40 -c 0 -i 660 -a 1 -x {1.1.3.0 0.0.3.0 329 ------- null} + -t 31.7846 -s 1 -d 3 -p ack -e 40 -c 0 -i 660 -a 1 -x {1.1.3.0 0.0.3.0 329 ------- null} - -t 31.7846 -s 1 -d 3 -p ack -e 40 -c 0 -i 660 -a 1 -x {1.1.3.0 0.0.3.0 329 ------- null} h -t 31.7846 -s 1 -d 3 -p ack -e 40 -c 0 -i 660 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.7862 -s 28 -d 1 -p ack -e 40 -c 0 -i 661 -a 1 -x {1.1.3.0 0.0.3.0 330 ------- null} + -t 31.7862 -s 1 -d 3 -p ack -e 40 -c 0 -i 661 -a 1 -x {1.1.3.0 0.0.3.0 330 ------- null} - -t 31.7862 -s 1 -d 3 -p ack -e 40 -c 0 -i 661 -a 1 -x {1.1.3.0 0.0.3.0 330 ------- null} h -t 31.7862 -s 1 -d 3 -p ack -e 40 -c 0 -i 661 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 31.8958 -s 1 -d 3 -p ack -e 40 -c 0 -i 642 -a 1 -x {1.1.3.0 0.0.3.0 311 ------- null} + -t 31.8958 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 662 -a 0 -x {0.0.3.0 1.1.3.0 331 ------- null} - -t 31.8958 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 662 -a 0 -x {0.0.3.0 1.1.3.0 331 ------- null} h -t 31.8958 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 662 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 31.8974 -s 1 -d 3 -p ack -e 40 -c 0 -i 643 -a 1 -x {1.1.3.0 0.0.3.0 312 ------- null} + -t 31.8974 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {0.0.3.0 1.1.3.0 332 ------- null} - -t 31.8974 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {0.0.3.0 1.1.3.0 332 ------- null} h -t 31.8974 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 31.899 -s 1 -d 3 -p ack -e 40 -c 0 -i 644 -a 1 -x {1.1.3.0 0.0.3.0 313 ------- null} + -t 31.899 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 664 -a 0 -x {0.0.3.0 1.1.3.0 333 ------- null} - -t 31.899 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 664 -a 0 -x {0.0.3.0 1.1.3.0 333 ------- null} h -t 31.899 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 664 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 31.9006 -s 1 -d 3 -p ack -e 40 -c 0 -i 645 -a 1 -x {1.1.3.0 0.0.3.0 314 ------- null} + -t 31.9006 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {0.0.3.0 1.1.3.0 334 ------- null} - -t 31.9006 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {0.0.3.0 1.1.3.0 334 ------- null} h -t 31.9006 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 31.9022 -s 1 -d 3 -p ack -e 40 -c 0 -i 646 -a 1 -x {1.1.3.0 0.0.3.0 315 ------- null} + -t 31.9022 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 666 -a 0 -x {0.0.3.0 1.1.3.0 335 ------- null} - -t 31.9022 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 666 -a 0 -x {0.0.3.0 1.1.3.0 335 ------- null} h -t 31.9022 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 666 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 31.9038 -s 1 -d 3 -p ack -e 40 -c 0 -i 647 -a 1 -x {1.1.3.0 0.0.3.0 316 ------- null} + -t 31.9038 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {0.0.3.0 1.1.3.0 336 ------- null} - -t 31.9038 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {0.0.3.0 1.1.3.0 336 ------- null} h -t 31.9038 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 31.9054 -s 1 -d 3 -p ack -e 40 -c 0 -i 648 -a 1 -x {1.1.3.0 0.0.3.0 317 ------- null} + -t 31.9054 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 668 -a 0 -x {0.0.3.0 1.1.3.0 337 ------- null} - -t 31.9054 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 668 -a 0 -x {0.0.3.0 1.1.3.0 337 ------- null} h -t 31.9054 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 668 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 31.907 -s 1 -d 3 -p ack -e 40 -c 0 -i 649 -a 1 -x {1.1.3.0 0.0.3.0 318 ------- null} + -t 31.907 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {0.0.3.0 1.1.3.0 338 ------- null} - -t 31.907 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {0.0.3.0 1.1.3.0 338 ------- null} h -t 31.907 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 31.9086 -s 1 -d 3 -p ack -e 40 -c 0 -i 650 -a 1 -x {1.1.3.0 0.0.3.0 319 ------- null} + -t 31.9086 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 670 -a 0 -x {0.0.3.0 1.1.3.0 339 ------- null} - -t 31.9086 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 670 -a 0 -x {0.0.3.0 1.1.3.0 339 ------- null} h -t 31.9086 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 670 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 31.9102 -s 1 -d 3 -p ack -e 40 -c 0 -i 651 -a 1 -x {1.1.3.0 0.0.3.0 320 ------- null} + -t 31.9102 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {0.0.3.0 1.1.3.0 340 ------- null} - -t 31.9102 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {0.0.3.0 1.1.3.0 340 ------- null} h -t 31.9102 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 31.9118 -s 1 -d 3 -p ack -e 40 -c 0 -i 652 -a 1 -x {1.1.3.0 0.0.3.0 321 ------- null} + -t 31.9118 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 672 -a 0 -x {0.0.3.0 1.1.3.0 341 ------- null} - -t 31.9118 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 672 -a 0 -x {0.0.3.0 1.1.3.0 341 ------- null} h -t 31.9118 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 672 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 31.9134 -s 1 -d 3 -p ack -e 40 -c 0 -i 653 -a 1 -x {1.1.3.0 0.0.3.0 322 ------- null} + -t 31.9134 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {0.0.3.0 1.1.3.0 342 ------- null} - -t 31.9134 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {0.0.3.0 1.1.3.0 342 ------- null} h -t 31.9134 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 31.915 -s 1 -d 3 -p ack -e 40 -c 0 -i 654 -a 1 -x {1.1.3.0 0.0.3.0 323 ------- null} + -t 31.915 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 674 -a 0 -x {0.0.3.0 1.1.3.0 343 ------- null} - -t 31.915 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 674 -a 0 -x {0.0.3.0 1.1.3.0 343 ------- null} h -t 31.915 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 674 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 31.9166 -s 1 -d 3 -p ack -e 40 -c 0 -i 655 -a 1 -x {1.1.3.0 0.0.3.0 324 ------- null} + -t 31.9166 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {0.0.3.0 1.1.3.0 344 ------- null} - -t 31.9166 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {0.0.3.0 1.1.3.0 344 ------- null} h -t 31.9166 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 31.9182 -s 1 -d 3 -p ack -e 40 -c 0 -i 656 -a 1 -x {1.1.3.0 0.0.3.0 325 ------- null} + -t 31.9182 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 676 -a 0 -x {0.0.3.0 1.1.3.0 345 ------- null} - -t 31.9182 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 676 -a 0 -x {0.0.3.0 1.1.3.0 345 ------- null} h -t 31.9182 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 676 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 31.9198 -s 1 -d 3 -p ack -e 40 -c 0 -i 657 -a 1 -x {1.1.3.0 0.0.3.0 326 ------- null} + -t 31.9198 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {0.0.3.0 1.1.3.0 346 ------- null} - -t 31.9198 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {0.0.3.0 1.1.3.0 346 ------- null} h -t 31.9198 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 31.9214 -s 1 -d 3 -p ack -e 40 -c 0 -i 658 -a 1 -x {1.1.3.0 0.0.3.0 327 ------- null} + -t 31.9214 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 678 -a 0 -x {0.0.3.0 1.1.3.0 347 ------- null} - -t 31.9214 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 678 -a 0 -x {0.0.3.0 1.1.3.0 347 ------- null} h -t 31.9214 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 678 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 31.923 -s 1 -d 3 -p ack -e 40 -c 0 -i 659 -a 1 -x {1.1.3.0 0.0.3.0 328 ------- null} + -t 31.923 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {0.0.3.0 1.1.3.0 348 ------- null} - -t 31.923 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {0.0.3.0 1.1.3.0 348 ------- null} h -t 31.923 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 31.9246 -s 1 -d 3 -p ack -e 40 -c 0 -i 660 -a 1 -x {1.1.3.0 0.0.3.0 329 ------- null} + -t 31.9246 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 680 -a 0 -x {0.0.3.0 1.1.3.0 349 ------- null} - -t 31.9246 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 680 -a 0 -x {0.0.3.0 1.1.3.0 349 ------- null} h -t 31.9246 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 680 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 31.9262 -s 1 -d 3 -p ack -e 40 -c 0 -i 661 -a 1 -x {1.1.3.0 0.0.3.0 330 ------- null} + -t 31.9262 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {0.0.3.0 1.1.3.0 350 ------- null} - -t 31.9262 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {0.0.3.0 1.1.3.0 350 ------- null} h -t 31.9262 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.0574 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 662 -a 0 -x {0.0.3.0 1.1.3.0 331 ------- null} + -t 32.0574 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 662 -a 0 -x {0.0.3.0 1.1.3.0 331 ------- null} - -t 32.0574 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 662 -a 0 -x {0.0.3.0 1.1.3.0 331 ------- null} h -t 32.0574 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 662 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.059 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {0.0.3.0 1.1.3.0 332 ------- null} + -t 32.059 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {0.0.3.0 1.1.3.0 332 ------- null} - -t 32.059 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {0.0.3.0 1.1.3.0 332 ------- null} h -t 32.059 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.0606 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 664 -a 0 -x {0.0.3.0 1.1.3.0 333 ------- null} + -t 32.0606 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 664 -a 0 -x {0.0.3.0 1.1.3.0 333 ------- null} - -t 32.0606 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 664 -a 0 -x {0.0.3.0 1.1.3.0 333 ------- null} h -t 32.0606 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 664 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.0622 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {0.0.3.0 1.1.3.0 334 ------- null} + -t 32.0622 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {0.0.3.0 1.1.3.0 334 ------- null} - -t 32.0622 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {0.0.3.0 1.1.3.0 334 ------- null} h -t 32.0622 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.0638 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 666 -a 0 -x {0.0.3.0 1.1.3.0 335 ------- null} + -t 32.0638 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 666 -a 0 -x {0.0.3.0 1.1.3.0 335 ------- null} - -t 32.0638 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 666 -a 0 -x {0.0.3.0 1.1.3.0 335 ------- null} h -t 32.0638 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 666 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.0654 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {0.0.3.0 1.1.3.0 336 ------- null} + -t 32.0654 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {0.0.3.0 1.1.3.0 336 ------- null} - -t 32.0654 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {0.0.3.0 1.1.3.0 336 ------- null} h -t 32.0654 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.067 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 668 -a 0 -x {0.0.3.0 1.1.3.0 337 ------- null} + -t 32.067 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 668 -a 0 -x {0.0.3.0 1.1.3.0 337 ------- null} - -t 32.067 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 668 -a 0 -x {0.0.3.0 1.1.3.0 337 ------- null} h -t 32.067 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 668 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.0686 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {0.0.3.0 1.1.3.0 338 ------- null} + -t 32.0686 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {0.0.3.0 1.1.3.0 338 ------- null} - -t 32.0686 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {0.0.3.0 1.1.3.0 338 ------- null} h -t 32.0686 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.0702 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 670 -a 0 -x {0.0.3.0 1.1.3.0 339 ------- null} + -t 32.0702 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 670 -a 0 -x {0.0.3.0 1.1.3.0 339 ------- null} - -t 32.0702 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 670 -a 0 -x {0.0.3.0 1.1.3.0 339 ------- null} h -t 32.0702 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 670 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.0718 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {0.0.3.0 1.1.3.0 340 ------- null} + -t 32.0718 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {0.0.3.0 1.1.3.0 340 ------- null} - -t 32.0718 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {0.0.3.0 1.1.3.0 340 ------- null} h -t 32.0718 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.0734 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 672 -a 0 -x {0.0.3.0 1.1.3.0 341 ------- null} + -t 32.0734 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 672 -a 0 -x {0.0.3.0 1.1.3.0 341 ------- null} - -t 32.0734 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 672 -a 0 -x {0.0.3.0 1.1.3.0 341 ------- null} h -t 32.0734 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 672 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.075 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {0.0.3.0 1.1.3.0 342 ------- null} + -t 32.075 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {0.0.3.0 1.1.3.0 342 ------- null} - -t 32.075 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {0.0.3.0 1.1.3.0 342 ------- null} h -t 32.075 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.0766 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 674 -a 0 -x {0.0.3.0 1.1.3.0 343 ------- null} + -t 32.0766 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 674 -a 0 -x {0.0.3.0 1.1.3.0 343 ------- null} - -t 32.0766 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 674 -a 0 -x {0.0.3.0 1.1.3.0 343 ------- null} h -t 32.0766 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 674 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.0782 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {0.0.3.0 1.1.3.0 344 ------- null} + -t 32.0782 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {0.0.3.0 1.1.3.0 344 ------- null} - -t 32.0782 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {0.0.3.0 1.1.3.0 344 ------- null} h -t 32.0782 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.0798 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 676 -a 0 -x {0.0.3.0 1.1.3.0 345 ------- null} + -t 32.0798 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 676 -a 0 -x {0.0.3.0 1.1.3.0 345 ------- null} - -t 32.0798 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 676 -a 0 -x {0.0.3.0 1.1.3.0 345 ------- null} h -t 32.0798 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 676 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.0814 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {0.0.3.0 1.1.3.0 346 ------- null} + -t 32.0814 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {0.0.3.0 1.1.3.0 346 ------- null} - -t 32.0814 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {0.0.3.0 1.1.3.0 346 ------- null} h -t 32.0814 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.083 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 678 -a 0 -x {0.0.3.0 1.1.3.0 347 ------- null} + -t 32.083 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 678 -a 0 -x {0.0.3.0 1.1.3.0 347 ------- null} - -t 32.083 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 678 -a 0 -x {0.0.3.0 1.1.3.0 347 ------- null} h -t 32.083 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 678 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.0846 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {0.0.3.0 1.1.3.0 348 ------- null} + -t 32.0846 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {0.0.3.0 1.1.3.0 348 ------- null} - -t 32.0846 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {0.0.3.0 1.1.3.0 348 ------- null} h -t 32.0846 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.0862 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 680 -a 0 -x {0.0.3.0 1.1.3.0 349 ------- null} + -t 32.0862 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 680 -a 0 -x {0.0.3.0 1.1.3.0 349 ------- null} - -t 32.0862 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 680 -a 0 -x {0.0.3.0 1.1.3.0 349 ------- null} h -t 32.0862 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 680 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.0878 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {0.0.3.0 1.1.3.0 350 ------- null} + -t 32.0878 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {0.0.3.0 1.1.3.0 350 ------- null} - -t 32.0878 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {0.0.3.0 1.1.3.0 350 ------- null} h -t 32.0878 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.359 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 662 -a 0 -x {0.0.3.0 1.1.3.0 331 ------- null} + -t 32.359 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 662 -a 0 -x {0.0.3.0 1.1.3.0 331 ------- null} - -t 32.359 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 662 -a 0 -x {0.0.3.0 1.1.3.0 331 ------- null} h -t 32.359 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 662 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.3606 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {0.0.3.0 1.1.3.0 332 ------- null} + -t 32.3606 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {0.0.3.0 1.1.3.0 332 ------- null} - -t 32.3606 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {0.0.3.0 1.1.3.0 332 ------- null} h -t 32.3606 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.3622 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 664 -a 0 -x {0.0.3.0 1.1.3.0 333 ------- null} + -t 32.3622 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 664 -a 0 -x {0.0.3.0 1.1.3.0 333 ------- null} - -t 32.3622 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 664 -a 0 -x {0.0.3.0 1.1.3.0 333 ------- null} h -t 32.3622 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 664 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.3638 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {0.0.3.0 1.1.3.0 334 ------- null} + -t 32.3638 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {0.0.3.0 1.1.3.0 334 ------- null} - -t 32.3638 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {0.0.3.0 1.1.3.0 334 ------- null} h -t 32.3638 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.3654 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 666 -a 0 -x {0.0.3.0 1.1.3.0 335 ------- null} + -t 32.3654 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 666 -a 0 -x {0.0.3.0 1.1.3.0 335 ------- null} - -t 32.3654 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 666 -a 0 -x {0.0.3.0 1.1.3.0 335 ------- null} h -t 32.3654 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 666 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.367 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {0.0.3.0 1.1.3.0 336 ------- null} + -t 32.367 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {0.0.3.0 1.1.3.0 336 ------- null} - -t 32.367 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {0.0.3.0 1.1.3.0 336 ------- null} h -t 32.367 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.3686 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 668 -a 0 -x {0.0.3.0 1.1.3.0 337 ------- null} + -t 32.3686 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 668 -a 0 -x {0.0.3.0 1.1.3.0 337 ------- null} - -t 32.3686 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 668 -a 0 -x {0.0.3.0 1.1.3.0 337 ------- null} h -t 32.3686 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 668 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.3702 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {0.0.3.0 1.1.3.0 338 ------- null} + -t 32.3702 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {0.0.3.0 1.1.3.0 338 ------- null} - -t 32.3702 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {0.0.3.0 1.1.3.0 338 ------- null} h -t 32.3702 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.3718 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 670 -a 0 -x {0.0.3.0 1.1.3.0 339 ------- null} + -t 32.3718 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 670 -a 0 -x {0.0.3.0 1.1.3.0 339 ------- null} - -t 32.3718 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 670 -a 0 -x {0.0.3.0 1.1.3.0 339 ------- null} h -t 32.3718 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 670 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.3734 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {0.0.3.0 1.1.3.0 340 ------- null} + -t 32.3734 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {0.0.3.0 1.1.3.0 340 ------- null} - -t 32.3734 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {0.0.3.0 1.1.3.0 340 ------- null} h -t 32.3734 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.375 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 672 -a 0 -x {0.0.3.0 1.1.3.0 341 ------- null} + -t 32.375 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 672 -a 0 -x {0.0.3.0 1.1.3.0 341 ------- null} - -t 32.375 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 672 -a 0 -x {0.0.3.0 1.1.3.0 341 ------- null} h -t 32.375 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 672 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.3766 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {0.0.3.0 1.1.3.0 342 ------- null} + -t 32.3766 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {0.0.3.0 1.1.3.0 342 ------- null} - -t 32.3766 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {0.0.3.0 1.1.3.0 342 ------- null} h -t 32.3766 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.3782 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 674 -a 0 -x {0.0.3.0 1.1.3.0 343 ------- null} + -t 32.3782 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 674 -a 0 -x {0.0.3.0 1.1.3.0 343 ------- null} - -t 32.3782 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 674 -a 0 -x {0.0.3.0 1.1.3.0 343 ------- null} h -t 32.3782 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 674 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.3798 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {0.0.3.0 1.1.3.0 344 ------- null} + -t 32.3798 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {0.0.3.0 1.1.3.0 344 ------- null} - -t 32.3798 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {0.0.3.0 1.1.3.0 344 ------- null} h -t 32.3798 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.3814 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 676 -a 0 -x {0.0.3.0 1.1.3.0 345 ------- null} + -t 32.3814 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 676 -a 0 -x {0.0.3.0 1.1.3.0 345 ------- null} - -t 32.3814 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 676 -a 0 -x {0.0.3.0 1.1.3.0 345 ------- null} h -t 32.3814 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 676 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.383 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {0.0.3.0 1.1.3.0 346 ------- null} + -t 32.383 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {0.0.3.0 1.1.3.0 346 ------- null} - -t 32.383 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {0.0.3.0 1.1.3.0 346 ------- null} h -t 32.383 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.3846 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 678 -a 0 -x {0.0.3.0 1.1.3.0 347 ------- null} + -t 32.3846 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 678 -a 0 -x {0.0.3.0 1.1.3.0 347 ------- null} - -t 32.3846 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 678 -a 0 -x {0.0.3.0 1.1.3.0 347 ------- null} h -t 32.3846 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 678 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.3862 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {0.0.3.0 1.1.3.0 348 ------- null} + -t 32.3862 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {0.0.3.0 1.1.3.0 348 ------- null} - -t 32.3862 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {0.0.3.0 1.1.3.0 348 ------- null} h -t 32.3862 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.3878 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 680 -a 0 -x {0.0.3.0 1.1.3.0 349 ------- null} + -t 32.3878 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 680 -a 0 -x {0.0.3.0 1.1.3.0 349 ------- null} - -t 32.3878 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 680 -a 0 -x {0.0.3.0 1.1.3.0 349 ------- null} h -t 32.3878 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 680 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.3894 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {0.0.3.0 1.1.3.0 350 ------- null} + -t 32.3894 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {0.0.3.0 1.1.3.0 350 ------- null} - -t 32.3894 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {0.0.3.0 1.1.3.0 350 ------- null} h -t 32.3894 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.4606 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 662 -a 0 -x {0.0.3.0 1.1.3.0 331 ------- null} + -t 32.4606 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 662 -a 0 -x {0.0.3.0 1.1.3.0 331 ------- null} - -t 32.4606 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 662 -a 0 -x {0.0.3.0 1.1.3.0 331 ------- null} h -t 32.4606 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 662 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.4622 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {0.0.3.0 1.1.3.0 332 ------- null} + -t 32.4622 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {0.0.3.0 1.1.3.0 332 ------- null} - -t 32.4622 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {0.0.3.0 1.1.3.0 332 ------- null} h -t 32.4622 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.4638 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 664 -a 0 -x {0.0.3.0 1.1.3.0 333 ------- null} + -t 32.4638 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 664 -a 0 -x {0.0.3.0 1.1.3.0 333 ------- null} - -t 32.4638 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 664 -a 0 -x {0.0.3.0 1.1.3.0 333 ------- null} h -t 32.4638 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 664 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.4654 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {0.0.3.0 1.1.3.0 334 ------- null} + -t 32.4654 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {0.0.3.0 1.1.3.0 334 ------- null} - -t 32.4654 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {0.0.3.0 1.1.3.0 334 ------- null} h -t 32.4654 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.467 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 666 -a 0 -x {0.0.3.0 1.1.3.0 335 ------- null} + -t 32.467 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 666 -a 0 -x {0.0.3.0 1.1.3.0 335 ------- null} - -t 32.467 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 666 -a 0 -x {0.0.3.0 1.1.3.0 335 ------- null} h -t 32.467 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 666 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.4686 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {0.0.3.0 1.1.3.0 336 ------- null} + -t 32.4686 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {0.0.3.0 1.1.3.0 336 ------- null} - -t 32.4686 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {0.0.3.0 1.1.3.0 336 ------- null} h -t 32.4686 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.4702 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 668 -a 0 -x {0.0.3.0 1.1.3.0 337 ------- null} + -t 32.4702 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 668 -a 0 -x {0.0.3.0 1.1.3.0 337 ------- null} - -t 32.4702 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 668 -a 0 -x {0.0.3.0 1.1.3.0 337 ------- null} h -t 32.4702 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 668 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.4718 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {0.0.3.0 1.1.3.0 338 ------- null} + -t 32.4718 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {0.0.3.0 1.1.3.0 338 ------- null} - -t 32.4718 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {0.0.3.0 1.1.3.0 338 ------- null} h -t 32.4718 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.4734 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 670 -a 0 -x {0.0.3.0 1.1.3.0 339 ------- null} + -t 32.4734 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 670 -a 0 -x {0.0.3.0 1.1.3.0 339 ------- null} - -t 32.4734 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 670 -a 0 -x {0.0.3.0 1.1.3.0 339 ------- null} h -t 32.4734 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 670 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.475 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {0.0.3.0 1.1.3.0 340 ------- null} + -t 32.475 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {0.0.3.0 1.1.3.0 340 ------- null} - -t 32.475 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {0.0.3.0 1.1.3.0 340 ------- null} h -t 32.475 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.4766 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 672 -a 0 -x {0.0.3.0 1.1.3.0 341 ------- null} + -t 32.4766 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 672 -a 0 -x {0.0.3.0 1.1.3.0 341 ------- null} - -t 32.4766 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 672 -a 0 -x {0.0.3.0 1.1.3.0 341 ------- null} h -t 32.4766 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 672 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.4782 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {0.0.3.0 1.1.3.0 342 ------- null} + -t 32.4782 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {0.0.3.0 1.1.3.0 342 ------- null} - -t 32.4782 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {0.0.3.0 1.1.3.0 342 ------- null} h -t 32.4782 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.4798 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 674 -a 0 -x {0.0.3.0 1.1.3.0 343 ------- null} + -t 32.4798 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 674 -a 0 -x {0.0.3.0 1.1.3.0 343 ------- null} - -t 32.4798 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 674 -a 0 -x {0.0.3.0 1.1.3.0 343 ------- null} h -t 32.4798 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 674 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.4814 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {0.0.3.0 1.1.3.0 344 ------- null} + -t 32.4814 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {0.0.3.0 1.1.3.0 344 ------- null} - -t 32.4814 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {0.0.3.0 1.1.3.0 344 ------- null} h -t 32.4814 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.483 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 676 -a 0 -x {0.0.3.0 1.1.3.0 345 ------- null} + -t 32.483 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 676 -a 0 -x {0.0.3.0 1.1.3.0 345 ------- null} - -t 32.483 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 676 -a 0 -x {0.0.3.0 1.1.3.0 345 ------- null} h -t 32.483 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 676 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.4846 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {0.0.3.0 1.1.3.0 346 ------- null} + -t 32.4846 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {0.0.3.0 1.1.3.0 346 ------- null} - -t 32.4846 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {0.0.3.0 1.1.3.0 346 ------- null} h -t 32.4846 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.4862 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 678 -a 0 -x {0.0.3.0 1.1.3.0 347 ------- null} + -t 32.4862 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 678 -a 0 -x {0.0.3.0 1.1.3.0 347 ------- null} - -t 32.4862 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 678 -a 0 -x {0.0.3.0 1.1.3.0 347 ------- null} h -t 32.4862 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 678 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.4878 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {0.0.3.0 1.1.3.0 348 ------- null} + -t 32.4878 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {0.0.3.0 1.1.3.0 348 ------- null} - -t 32.4878 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {0.0.3.0 1.1.3.0 348 ------- null} h -t 32.4878 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.4894 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 680 -a 0 -x {0.0.3.0 1.1.3.0 349 ------- null} + -t 32.4894 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 680 -a 0 -x {0.0.3.0 1.1.3.0 349 ------- null} - -t 32.4894 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 680 -a 0 -x {0.0.3.0 1.1.3.0 349 ------- null} h -t 32.4894 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 680 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.491 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {0.0.3.0 1.1.3.0 350 ------- null} + -t 32.491 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {0.0.3.0 1.1.3.0 350 ------- null} - -t 32.491 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {0.0.3.0 1.1.3.0 350 ------- null} h -t 32.491 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.5422 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 662 -a 0 -x {0.0.3.0 1.1.3.0 331 ------- null} + -t 32.5422 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 662 -a 0 -x {0.0.3.0 1.1.3.0 331 ------- null} - -t 32.5422 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 662 -a 0 -x {0.0.3.0 1.1.3.0 331 ------- null} h -t 32.5422 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 662 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.5438 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {0.0.3.0 1.1.3.0 332 ------- null} + -t 32.5438 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {0.0.3.0 1.1.3.0 332 ------- null} - -t 32.5438 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {0.0.3.0 1.1.3.0 332 ------- null} h -t 32.5438 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.5454 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 664 -a 0 -x {0.0.3.0 1.1.3.0 333 ------- null} + -t 32.5454 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 664 -a 0 -x {0.0.3.0 1.1.3.0 333 ------- null} - -t 32.5454 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 664 -a 0 -x {0.0.3.0 1.1.3.0 333 ------- null} h -t 32.5454 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 664 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.547 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {0.0.3.0 1.1.3.0 334 ------- null} + -t 32.547 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {0.0.3.0 1.1.3.0 334 ------- null} - -t 32.547 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {0.0.3.0 1.1.3.0 334 ------- null} h -t 32.547 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.5486 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 666 -a 0 -x {0.0.3.0 1.1.3.0 335 ------- null} + -t 32.5486 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 666 -a 0 -x {0.0.3.0 1.1.3.0 335 ------- null} - -t 32.5486 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 666 -a 0 -x {0.0.3.0 1.1.3.0 335 ------- null} h -t 32.5486 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 666 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.5502 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {0.0.3.0 1.1.3.0 336 ------- null} + -t 32.5502 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {0.0.3.0 1.1.3.0 336 ------- null} - -t 32.5502 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {0.0.3.0 1.1.3.0 336 ------- null} h -t 32.5502 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.5518 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 668 -a 0 -x {0.0.3.0 1.1.3.0 337 ------- null} + -t 32.5518 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 668 -a 0 -x {0.0.3.0 1.1.3.0 337 ------- null} - -t 32.5518 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 668 -a 0 -x {0.0.3.0 1.1.3.0 337 ------- null} h -t 32.5518 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 668 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.5534 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {0.0.3.0 1.1.3.0 338 ------- null} + -t 32.5534 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {0.0.3.0 1.1.3.0 338 ------- null} - -t 32.5534 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {0.0.3.0 1.1.3.0 338 ------- null} h -t 32.5534 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.555 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 670 -a 0 -x {0.0.3.0 1.1.3.0 339 ------- null} + -t 32.555 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 670 -a 0 -x {0.0.3.0 1.1.3.0 339 ------- null} - -t 32.555 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 670 -a 0 -x {0.0.3.0 1.1.3.0 339 ------- null} h -t 32.555 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 670 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.5566 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {0.0.3.0 1.1.3.0 340 ------- null} + -t 32.5566 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {0.0.3.0 1.1.3.0 340 ------- null} - -t 32.5566 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {0.0.3.0 1.1.3.0 340 ------- null} h -t 32.5566 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.5582 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 672 -a 0 -x {0.0.3.0 1.1.3.0 341 ------- null} + -t 32.5582 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 672 -a 0 -x {0.0.3.0 1.1.3.0 341 ------- null} - -t 32.5582 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 672 -a 0 -x {0.0.3.0 1.1.3.0 341 ------- null} h -t 32.5582 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 672 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.5598 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {0.0.3.0 1.1.3.0 342 ------- null} + -t 32.5598 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {0.0.3.0 1.1.3.0 342 ------- null} - -t 32.5598 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {0.0.3.0 1.1.3.0 342 ------- null} h -t 32.5598 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.5614 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 674 -a 0 -x {0.0.3.0 1.1.3.0 343 ------- null} + -t 32.5614 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 674 -a 0 -x {0.0.3.0 1.1.3.0 343 ------- null} - -t 32.5614 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 674 -a 0 -x {0.0.3.0 1.1.3.0 343 ------- null} h -t 32.5614 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 674 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.563 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {0.0.3.0 1.1.3.0 344 ------- null} + -t 32.563 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {0.0.3.0 1.1.3.0 344 ------- null} - -t 32.563 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {0.0.3.0 1.1.3.0 344 ------- null} h -t 32.563 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.5646 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 676 -a 0 -x {0.0.3.0 1.1.3.0 345 ------- null} + -t 32.5646 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 676 -a 0 -x {0.0.3.0 1.1.3.0 345 ------- null} - -t 32.5646 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 676 -a 0 -x {0.0.3.0 1.1.3.0 345 ------- null} h -t 32.5646 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 676 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.5662 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {0.0.3.0 1.1.3.0 346 ------- null} + -t 32.5662 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {0.0.3.0 1.1.3.0 346 ------- null} - -t 32.5662 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {0.0.3.0 1.1.3.0 346 ------- null} h -t 32.5662 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.5678 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 678 -a 0 -x {0.0.3.0 1.1.3.0 347 ------- null} + -t 32.5678 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 678 -a 0 -x {0.0.3.0 1.1.3.0 347 ------- null} - -t 32.5678 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 678 -a 0 -x {0.0.3.0 1.1.3.0 347 ------- null} h -t 32.5678 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 678 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.5694 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {0.0.3.0 1.1.3.0 348 ------- null} + -t 32.5694 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {0.0.3.0 1.1.3.0 348 ------- null} - -t 32.5694 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {0.0.3.0 1.1.3.0 348 ------- null} h -t 32.5694 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.571 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 680 -a 0 -x {0.0.3.0 1.1.3.0 349 ------- null} + -t 32.571 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 680 -a 0 -x {0.0.3.0 1.1.3.0 349 ------- null} - -t 32.571 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 680 -a 0 -x {0.0.3.0 1.1.3.0 349 ------- null} h -t 32.571 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 680 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.5726 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {0.0.3.0 1.1.3.0 350 ------- null} + -t 32.5726 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {0.0.3.0 1.1.3.0 350 ------- null} - -t 32.5726 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {0.0.3.0 1.1.3.0 350 ------- null} h -t 32.5726 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.6238 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 662 -a 0 -x {0.0.3.0 1.1.3.0 331 ------- null} + -t 32.6238 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 662 -a 0 -x {0.0.3.0 1.1.3.0 331 ------- null} - -t 32.6238 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 662 -a 0 -x {0.0.3.0 1.1.3.0 331 ------- null} h -t 32.6238 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 662 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.6254 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {0.0.3.0 1.1.3.0 332 ------- null} + -t 32.6254 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {0.0.3.0 1.1.3.0 332 ------- null} - -t 32.6254 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {0.0.3.0 1.1.3.0 332 ------- null} h -t 32.6254 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.627 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 664 -a 0 -x {0.0.3.0 1.1.3.0 333 ------- null} + -t 32.627 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 664 -a 0 -x {0.0.3.0 1.1.3.0 333 ------- null} - -t 32.627 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 664 -a 0 -x {0.0.3.0 1.1.3.0 333 ------- null} h -t 32.627 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 664 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.6286 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {0.0.3.0 1.1.3.0 334 ------- null} + -t 32.6286 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {0.0.3.0 1.1.3.0 334 ------- null} - -t 32.6286 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {0.0.3.0 1.1.3.0 334 ------- null} h -t 32.6286 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.6302 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 666 -a 0 -x {0.0.3.0 1.1.3.0 335 ------- null} + -t 32.6302 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 666 -a 0 -x {0.0.3.0 1.1.3.0 335 ------- null} - -t 32.6302 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 666 -a 0 -x {0.0.3.0 1.1.3.0 335 ------- null} h -t 32.6302 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 666 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.6318 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {0.0.3.0 1.1.3.0 336 ------- null} + -t 32.6318 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {0.0.3.0 1.1.3.0 336 ------- null} - -t 32.6318 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {0.0.3.0 1.1.3.0 336 ------- null} h -t 32.6318 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.6334 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 668 -a 0 -x {0.0.3.0 1.1.3.0 337 ------- null} + -t 32.6334 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 668 -a 0 -x {0.0.3.0 1.1.3.0 337 ------- null} - -t 32.6334 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 668 -a 0 -x {0.0.3.0 1.1.3.0 337 ------- null} h -t 32.6334 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 668 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.635 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {0.0.3.0 1.1.3.0 338 ------- null} + -t 32.635 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {0.0.3.0 1.1.3.0 338 ------- null} - -t 32.635 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {0.0.3.0 1.1.3.0 338 ------- null} h -t 32.635 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.6366 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 670 -a 0 -x {0.0.3.0 1.1.3.0 339 ------- null} + -t 32.6366 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 670 -a 0 -x {0.0.3.0 1.1.3.0 339 ------- null} - -t 32.6366 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 670 -a 0 -x {0.0.3.0 1.1.3.0 339 ------- null} h -t 32.6366 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 670 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.6382 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {0.0.3.0 1.1.3.0 340 ------- null} + -t 32.6382 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {0.0.3.0 1.1.3.0 340 ------- null} - -t 32.6382 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {0.0.3.0 1.1.3.0 340 ------- null} h -t 32.6382 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.6398 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 672 -a 0 -x {0.0.3.0 1.1.3.0 341 ------- null} + -t 32.6398 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 672 -a 0 -x {0.0.3.0 1.1.3.0 341 ------- null} - -t 32.6398 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 672 -a 0 -x {0.0.3.0 1.1.3.0 341 ------- null} h -t 32.6398 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 672 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.6414 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {0.0.3.0 1.1.3.0 342 ------- null} + -t 32.6414 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {0.0.3.0 1.1.3.0 342 ------- null} - -t 32.6414 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {0.0.3.0 1.1.3.0 342 ------- null} h -t 32.6414 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.643 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 674 -a 0 -x {0.0.3.0 1.1.3.0 343 ------- null} + -t 32.643 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 674 -a 0 -x {0.0.3.0 1.1.3.0 343 ------- null} - -t 32.643 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 674 -a 0 -x {0.0.3.0 1.1.3.0 343 ------- null} h -t 32.643 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 674 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.6446 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {0.0.3.0 1.1.3.0 344 ------- null} + -t 32.6446 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {0.0.3.0 1.1.3.0 344 ------- null} - -t 32.6446 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {0.0.3.0 1.1.3.0 344 ------- null} h -t 32.6446 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.6462 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 676 -a 0 -x {0.0.3.0 1.1.3.0 345 ------- null} + -t 32.6462 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 676 -a 0 -x {0.0.3.0 1.1.3.0 345 ------- null} - -t 32.6462 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 676 -a 0 -x {0.0.3.0 1.1.3.0 345 ------- null} h -t 32.6462 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 676 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.6478 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {0.0.3.0 1.1.3.0 346 ------- null} + -t 32.6478 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {0.0.3.0 1.1.3.0 346 ------- null} - -t 32.6478 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {0.0.3.0 1.1.3.0 346 ------- null} h -t 32.6478 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.6494 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 678 -a 0 -x {0.0.3.0 1.1.3.0 347 ------- null} + -t 32.6494 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 678 -a 0 -x {0.0.3.0 1.1.3.0 347 ------- null} - -t 32.6494 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 678 -a 0 -x {0.0.3.0 1.1.3.0 347 ------- null} h -t 32.6494 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 678 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.651 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {0.0.3.0 1.1.3.0 348 ------- null} + -t 32.651 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {0.0.3.0 1.1.3.0 348 ------- null} - -t 32.651 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {0.0.3.0 1.1.3.0 348 ------- null} h -t 32.651 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.6526 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 680 -a 0 -x {0.0.3.0 1.1.3.0 349 ------- null} + -t 32.6526 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 680 -a 0 -x {0.0.3.0 1.1.3.0 349 ------- null} - -t 32.6526 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 680 -a 0 -x {0.0.3.0 1.1.3.0 349 ------- null} h -t 32.6526 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 680 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.6542 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {0.0.3.0 1.1.3.0 350 ------- null} + -t 32.6542 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {0.0.3.0 1.1.3.0 350 ------- null} - -t 32.6542 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {0.0.3.0 1.1.3.0 350 ------- null} h -t 32.6542 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 32.6854 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 662 -a 0 -x {0.0.3.0 1.1.3.0 331 ------- null} + -t 32.6854 -s 21 -d 28 -p ack -e 40 -c 0 -i 682 -a 1 -x {1.1.3.0 0.0.3.0 331 ------- null} - -t 32.6854 -s 21 -d 28 -p ack -e 40 -c 0 -i 682 -a 1 -x {1.1.3.0 0.0.3.0 331 ------- null} h -t 32.6854 -s 21 -d 28 -p ack -e 40 -c 0 -i 682 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 32.687 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {0.0.3.0 1.1.3.0 332 ------- null} + -t 32.687 -s 21 -d 28 -p ack -e 40 -c 0 -i 683 -a 1 -x {1.1.3.0 0.0.3.0 332 ------- null} - -t 32.687 -s 21 -d 28 -p ack -e 40 -c 0 -i 683 -a 1 -x {1.1.3.0 0.0.3.0 332 ------- null} h -t 32.687 -s 21 -d 28 -p ack -e 40 -c 0 -i 683 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 32.6886 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 664 -a 0 -x {0.0.3.0 1.1.3.0 333 ------- null} + -t 32.6886 -s 21 -d 28 -p ack -e 40 -c 0 -i 684 -a 1 -x {1.1.3.0 0.0.3.0 333 ------- null} - -t 32.6886 -s 21 -d 28 -p ack -e 40 -c 0 -i 684 -a 1 -x {1.1.3.0 0.0.3.0 333 ------- null} h -t 32.6886 -s 21 -d 28 -p ack -e 40 -c 0 -i 684 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 32.6902 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {0.0.3.0 1.1.3.0 334 ------- null} + -t 32.6902 -s 21 -d 28 -p ack -e 40 -c 0 -i 685 -a 1 -x {1.1.3.0 0.0.3.0 334 ------- null} - -t 32.6902 -s 21 -d 28 -p ack -e 40 -c 0 -i 685 -a 1 -x {1.1.3.0 0.0.3.0 334 ------- null} h -t 32.6902 -s 21 -d 28 -p ack -e 40 -c 0 -i 685 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 32.6918 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 666 -a 0 -x {0.0.3.0 1.1.3.0 335 ------- null} + -t 32.6918 -s 21 -d 28 -p ack -e 40 -c 0 -i 686 -a 1 -x {1.1.3.0 0.0.3.0 335 ------- null} - -t 32.6918 -s 21 -d 28 -p ack -e 40 -c 0 -i 686 -a 1 -x {1.1.3.0 0.0.3.0 335 ------- null} h -t 32.6918 -s 21 -d 28 -p ack -e 40 -c 0 -i 686 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 32.6934 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {0.0.3.0 1.1.3.0 336 ------- null} + -t 32.6934 -s 21 -d 28 -p ack -e 40 -c 0 -i 687 -a 1 -x {1.1.3.0 0.0.3.0 336 ------- null} - -t 32.6934 -s 21 -d 28 -p ack -e 40 -c 0 -i 687 -a 1 -x {1.1.3.0 0.0.3.0 336 ------- null} h -t 32.6934 -s 21 -d 28 -p ack -e 40 -c 0 -i 687 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 32.695 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 668 -a 0 -x {0.0.3.0 1.1.3.0 337 ------- null} + -t 32.695 -s 21 -d 28 -p ack -e 40 -c 0 -i 688 -a 1 -x {1.1.3.0 0.0.3.0 337 ------- null} - -t 32.695 -s 21 -d 28 -p ack -e 40 -c 0 -i 688 -a 1 -x {1.1.3.0 0.0.3.0 337 ------- null} h -t 32.695 -s 21 -d 28 -p ack -e 40 -c 0 -i 688 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 32.6966 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {0.0.3.0 1.1.3.0 338 ------- null} + -t 32.6966 -s 21 -d 28 -p ack -e 40 -c 0 -i 689 -a 1 -x {1.1.3.0 0.0.3.0 338 ------- null} - -t 32.6966 -s 21 -d 28 -p ack -e 40 -c 0 -i 689 -a 1 -x {1.1.3.0 0.0.3.0 338 ------- null} h -t 32.6966 -s 21 -d 28 -p ack -e 40 -c 0 -i 689 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 32.6982 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 670 -a 0 -x {0.0.3.0 1.1.3.0 339 ------- null} + -t 32.6982 -s 21 -d 28 -p ack -e 40 -c 0 -i 690 -a 1 -x {1.1.3.0 0.0.3.0 339 ------- null} - -t 32.6982 -s 21 -d 28 -p ack -e 40 -c 0 -i 690 -a 1 -x {1.1.3.0 0.0.3.0 339 ------- null} h -t 32.6982 -s 21 -d 28 -p ack -e 40 -c 0 -i 690 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 32.6998 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {0.0.3.0 1.1.3.0 340 ------- null} + -t 32.6998 -s 21 -d 28 -p ack -e 40 -c 0 -i 691 -a 1 -x {1.1.3.0 0.0.3.0 340 ------- null} - -t 32.6998 -s 21 -d 28 -p ack -e 40 -c 0 -i 691 -a 1 -x {1.1.3.0 0.0.3.0 340 ------- null} h -t 32.6998 -s 21 -d 28 -p ack -e 40 -c 0 -i 691 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 32.7014 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 672 -a 0 -x {0.0.3.0 1.1.3.0 341 ------- null} + -t 32.7014 -s 21 -d 28 -p ack -e 40 -c 0 -i 692 -a 1 -x {1.1.3.0 0.0.3.0 341 ------- null} - -t 32.7014 -s 21 -d 28 -p ack -e 40 -c 0 -i 692 -a 1 -x {1.1.3.0 0.0.3.0 341 ------- null} h -t 32.7014 -s 21 -d 28 -p ack -e 40 -c 0 -i 692 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 32.703 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {0.0.3.0 1.1.3.0 342 ------- null} + -t 32.703 -s 21 -d 28 -p ack -e 40 -c 0 -i 693 -a 1 -x {1.1.3.0 0.0.3.0 342 ------- null} - -t 32.703 -s 21 -d 28 -p ack -e 40 -c 0 -i 693 -a 1 -x {1.1.3.0 0.0.3.0 342 ------- null} h -t 32.703 -s 21 -d 28 -p ack -e 40 -c 0 -i 693 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 32.7046 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 674 -a 0 -x {0.0.3.0 1.1.3.0 343 ------- null} + -t 32.7046 -s 21 -d 28 -p ack -e 40 -c 0 -i 694 -a 1 -x {1.1.3.0 0.0.3.0 343 ------- null} - -t 32.7046 -s 21 -d 28 -p ack -e 40 -c 0 -i 694 -a 1 -x {1.1.3.0 0.0.3.0 343 ------- null} h -t 32.7046 -s 21 -d 28 -p ack -e 40 -c 0 -i 694 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 32.7062 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {0.0.3.0 1.1.3.0 344 ------- null} + -t 32.7062 -s 21 -d 28 -p ack -e 40 -c 0 -i 695 -a 1 -x {1.1.3.0 0.0.3.0 344 ------- null} - -t 32.7062 -s 21 -d 28 -p ack -e 40 -c 0 -i 695 -a 1 -x {1.1.3.0 0.0.3.0 344 ------- null} h -t 32.7062 -s 21 -d 28 -p ack -e 40 -c 0 -i 695 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 32.7078 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 676 -a 0 -x {0.0.3.0 1.1.3.0 345 ------- null} + -t 32.7078 -s 21 -d 28 -p ack -e 40 -c 0 -i 696 -a 1 -x {1.1.3.0 0.0.3.0 345 ------- null} - -t 32.7078 -s 21 -d 28 -p ack -e 40 -c 0 -i 696 -a 1 -x {1.1.3.0 0.0.3.0 345 ------- null} h -t 32.7078 -s 21 -d 28 -p ack -e 40 -c 0 -i 696 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 32.7094 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {0.0.3.0 1.1.3.0 346 ------- null} + -t 32.7094 -s 21 -d 28 -p ack -e 40 -c 0 -i 697 -a 1 -x {1.1.3.0 0.0.3.0 346 ------- null} - -t 32.7094 -s 21 -d 28 -p ack -e 40 -c 0 -i 697 -a 1 -x {1.1.3.0 0.0.3.0 346 ------- null} h -t 32.7094 -s 21 -d 28 -p ack -e 40 -c 0 -i 697 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 32.711 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 678 -a 0 -x {0.0.3.0 1.1.3.0 347 ------- null} + -t 32.711 -s 21 -d 28 -p ack -e 40 -c 0 -i 698 -a 1 -x {1.1.3.0 0.0.3.0 347 ------- null} - -t 32.711 -s 21 -d 28 -p ack -e 40 -c 0 -i 698 -a 1 -x {1.1.3.0 0.0.3.0 347 ------- null} h -t 32.711 -s 21 -d 28 -p ack -e 40 -c 0 -i 698 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 32.7126 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {0.0.3.0 1.1.3.0 348 ------- null} + -t 32.7126 -s 21 -d 28 -p ack -e 40 -c 0 -i 699 -a 1 -x {1.1.3.0 0.0.3.0 348 ------- null} - -t 32.7126 -s 21 -d 28 -p ack -e 40 -c 0 -i 699 -a 1 -x {1.1.3.0 0.0.3.0 348 ------- null} h -t 32.7126 -s 21 -d 28 -p ack -e 40 -c 0 -i 699 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 32.7142 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 680 -a 0 -x {0.0.3.0 1.1.3.0 349 ------- null} + -t 32.7142 -s 21 -d 28 -p ack -e 40 -c 0 -i 700 -a 1 -x {1.1.3.0 0.0.3.0 349 ------- null} - -t 32.7142 -s 21 -d 28 -p ack -e 40 -c 0 -i 700 -a 1 -x {1.1.3.0 0.0.3.0 349 ------- null} h -t 32.7142 -s 21 -d 28 -p ack -e 40 -c 0 -i 700 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 32.7158 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {0.0.3.0 1.1.3.0 350 ------- null} + -t 32.7158 -s 21 -d 28 -p ack -e 40 -c 0 -i 701 -a 1 -x {1.1.3.0 0.0.3.0 350 ------- null} - -t 32.7158 -s 21 -d 28 -p ack -e 40 -c 0 -i 701 -a 1 -x {1.1.3.0 0.0.3.0 350 ------- null} h -t 32.7158 -s 21 -d 28 -p ack -e 40 -c 0 -i 701 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 33.0355 -s 21 -d 28 -p ack -e 40 -c 0 -i 682 -a 1 -x {1.1.3.0 0.0.3.0 331 ------- null} + -t 33.0355 -s 28 -d 1 -p ack -e 40 -c 0 -i 682 -a 1 -x {1.1.3.0 0.0.3.0 331 ------- null} - -t 33.0355 -s 28 -d 1 -p ack -e 40 -c 0 -i 682 -a 1 -x {1.1.3.0 0.0.3.0 331 ------- null} h -t 33.0355 -s 28 -d 1 -p ack -e 40 -c 0 -i 682 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 33.0371 -s 21 -d 28 -p ack -e 40 -c 0 -i 683 -a 1 -x {1.1.3.0 0.0.3.0 332 ------- null} + -t 33.0371 -s 28 -d 1 -p ack -e 40 -c 0 -i 683 -a 1 -x {1.1.3.0 0.0.3.0 332 ------- null} - -t 33.0371 -s 28 -d 1 -p ack -e 40 -c 0 -i 683 -a 1 -x {1.1.3.0 0.0.3.0 332 ------- null} h -t 33.0371 -s 28 -d 1 -p ack -e 40 -c 0 -i 683 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 33.0387 -s 21 -d 28 -p ack -e 40 -c 0 -i 684 -a 1 -x {1.1.3.0 0.0.3.0 333 ------- null} + -t 33.0387 -s 28 -d 1 -p ack -e 40 -c 0 -i 684 -a 1 -x {1.1.3.0 0.0.3.0 333 ------- null} - -t 33.0387 -s 28 -d 1 -p ack -e 40 -c 0 -i 684 -a 1 -x {1.1.3.0 0.0.3.0 333 ------- null} h -t 33.0387 -s 28 -d 1 -p ack -e 40 -c 0 -i 684 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 33.0403 -s 21 -d 28 -p ack -e 40 -c 0 -i 685 -a 1 -x {1.1.3.0 0.0.3.0 334 ------- null} + -t 33.0403 -s 28 -d 1 -p ack -e 40 -c 0 -i 685 -a 1 -x {1.1.3.0 0.0.3.0 334 ------- null} - -t 33.0403 -s 28 -d 1 -p ack -e 40 -c 0 -i 685 -a 1 -x {1.1.3.0 0.0.3.0 334 ------- null} h -t 33.0403 -s 28 -d 1 -p ack -e 40 -c 0 -i 685 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 33.0419 -s 21 -d 28 -p ack -e 40 -c 0 -i 686 -a 1 -x {1.1.3.0 0.0.3.0 335 ------- null} + -t 33.0419 -s 28 -d 1 -p ack -e 40 -c 0 -i 686 -a 1 -x {1.1.3.0 0.0.3.0 335 ------- null} - -t 33.0419 -s 28 -d 1 -p ack -e 40 -c 0 -i 686 -a 1 -x {1.1.3.0 0.0.3.0 335 ------- null} h -t 33.0419 -s 28 -d 1 -p ack -e 40 -c 0 -i 686 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 33.0435 -s 21 -d 28 -p ack -e 40 -c 0 -i 687 -a 1 -x {1.1.3.0 0.0.3.0 336 ------- null} + -t 33.0435 -s 28 -d 1 -p ack -e 40 -c 0 -i 687 -a 1 -x {1.1.3.0 0.0.3.0 336 ------- null} - -t 33.0435 -s 28 -d 1 -p ack -e 40 -c 0 -i 687 -a 1 -x {1.1.3.0 0.0.3.0 336 ------- null} h -t 33.0435 -s 28 -d 1 -p ack -e 40 -c 0 -i 687 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 33.0451 -s 21 -d 28 -p ack -e 40 -c 0 -i 688 -a 1 -x {1.1.3.0 0.0.3.0 337 ------- null} + -t 33.0451 -s 28 -d 1 -p ack -e 40 -c 0 -i 688 -a 1 -x {1.1.3.0 0.0.3.0 337 ------- null} - -t 33.0451 -s 28 -d 1 -p ack -e 40 -c 0 -i 688 -a 1 -x {1.1.3.0 0.0.3.0 337 ------- null} h -t 33.0451 -s 28 -d 1 -p ack -e 40 -c 0 -i 688 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 33.0467 -s 21 -d 28 -p ack -e 40 -c 0 -i 689 -a 1 -x {1.1.3.0 0.0.3.0 338 ------- null} + -t 33.0467 -s 28 -d 1 -p ack -e 40 -c 0 -i 689 -a 1 -x {1.1.3.0 0.0.3.0 338 ------- null} - -t 33.0467 -s 28 -d 1 -p ack -e 40 -c 0 -i 689 -a 1 -x {1.1.3.0 0.0.3.0 338 ------- null} h -t 33.0467 -s 28 -d 1 -p ack -e 40 -c 0 -i 689 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 33.0483 -s 21 -d 28 -p ack -e 40 -c 0 -i 690 -a 1 -x {1.1.3.0 0.0.3.0 339 ------- null} + -t 33.0483 -s 28 -d 1 -p ack -e 40 -c 0 -i 690 -a 1 -x {1.1.3.0 0.0.3.0 339 ------- null} - -t 33.0483 -s 28 -d 1 -p ack -e 40 -c 0 -i 690 -a 1 -x {1.1.3.0 0.0.3.0 339 ------- null} h -t 33.0483 -s 28 -d 1 -p ack -e 40 -c 0 -i 690 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 33.0499 -s 21 -d 28 -p ack -e 40 -c 0 -i 691 -a 1 -x {1.1.3.0 0.0.3.0 340 ------- null} + -t 33.0499 -s 28 -d 1 -p ack -e 40 -c 0 -i 691 -a 1 -x {1.1.3.0 0.0.3.0 340 ------- null} - -t 33.0499 -s 28 -d 1 -p ack -e 40 -c 0 -i 691 -a 1 -x {1.1.3.0 0.0.3.0 340 ------- null} h -t 33.0499 -s 28 -d 1 -p ack -e 40 -c 0 -i 691 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 33.0515 -s 21 -d 28 -p ack -e 40 -c 0 -i 692 -a 1 -x {1.1.3.0 0.0.3.0 341 ------- null} + -t 33.0515 -s 28 -d 1 -p ack -e 40 -c 0 -i 692 -a 1 -x {1.1.3.0 0.0.3.0 341 ------- null} - -t 33.0515 -s 28 -d 1 -p ack -e 40 -c 0 -i 692 -a 1 -x {1.1.3.0 0.0.3.0 341 ------- null} h -t 33.0515 -s 28 -d 1 -p ack -e 40 -c 0 -i 692 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 33.0531 -s 21 -d 28 -p ack -e 40 -c 0 -i 693 -a 1 -x {1.1.3.0 0.0.3.0 342 ------- null} + -t 33.0531 -s 28 -d 1 -p ack -e 40 -c 0 -i 693 -a 1 -x {1.1.3.0 0.0.3.0 342 ------- null} - -t 33.0531 -s 28 -d 1 -p ack -e 40 -c 0 -i 693 -a 1 -x {1.1.3.0 0.0.3.0 342 ------- null} h -t 33.0531 -s 28 -d 1 -p ack -e 40 -c 0 -i 693 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 33.0547 -s 21 -d 28 -p ack -e 40 -c 0 -i 694 -a 1 -x {1.1.3.0 0.0.3.0 343 ------- null} + -t 33.0547 -s 28 -d 1 -p ack -e 40 -c 0 -i 694 -a 1 -x {1.1.3.0 0.0.3.0 343 ------- null} - -t 33.0547 -s 28 -d 1 -p ack -e 40 -c 0 -i 694 -a 1 -x {1.1.3.0 0.0.3.0 343 ------- null} h -t 33.0547 -s 28 -d 1 -p ack -e 40 -c 0 -i 694 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 33.0563 -s 21 -d 28 -p ack -e 40 -c 0 -i 695 -a 1 -x {1.1.3.0 0.0.3.0 344 ------- null} + -t 33.0563 -s 28 -d 1 -p ack -e 40 -c 0 -i 695 -a 1 -x {1.1.3.0 0.0.3.0 344 ------- null} - -t 33.0563 -s 28 -d 1 -p ack -e 40 -c 0 -i 695 -a 1 -x {1.1.3.0 0.0.3.0 344 ------- null} h -t 33.0563 -s 28 -d 1 -p ack -e 40 -c 0 -i 695 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 33.0579 -s 21 -d 28 -p ack -e 40 -c 0 -i 696 -a 1 -x {1.1.3.0 0.0.3.0 345 ------- null} + -t 33.0579 -s 28 -d 1 -p ack -e 40 -c 0 -i 696 -a 1 -x {1.1.3.0 0.0.3.0 345 ------- null} - -t 33.0579 -s 28 -d 1 -p ack -e 40 -c 0 -i 696 -a 1 -x {1.1.3.0 0.0.3.0 345 ------- null} h -t 33.0579 -s 28 -d 1 -p ack -e 40 -c 0 -i 696 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 33.0595 -s 21 -d 28 -p ack -e 40 -c 0 -i 697 -a 1 -x {1.1.3.0 0.0.3.0 346 ------- null} + -t 33.0595 -s 28 -d 1 -p ack -e 40 -c 0 -i 697 -a 1 -x {1.1.3.0 0.0.3.0 346 ------- null} - -t 33.0595 -s 28 -d 1 -p ack -e 40 -c 0 -i 697 -a 1 -x {1.1.3.0 0.0.3.0 346 ------- null} h -t 33.0595 -s 28 -d 1 -p ack -e 40 -c 0 -i 697 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 33.0611 -s 21 -d 28 -p ack -e 40 -c 0 -i 698 -a 1 -x {1.1.3.0 0.0.3.0 347 ------- null} + -t 33.0611 -s 28 -d 1 -p ack -e 40 -c 0 -i 698 -a 1 -x {1.1.3.0 0.0.3.0 347 ------- null} - -t 33.0611 -s 28 -d 1 -p ack -e 40 -c 0 -i 698 -a 1 -x {1.1.3.0 0.0.3.0 347 ------- null} h -t 33.0611 -s 28 -d 1 -p ack -e 40 -c 0 -i 698 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 33.0627 -s 21 -d 28 -p ack -e 40 -c 0 -i 699 -a 1 -x {1.1.3.0 0.0.3.0 348 ------- null} + -t 33.0627 -s 28 -d 1 -p ack -e 40 -c 0 -i 699 -a 1 -x {1.1.3.0 0.0.3.0 348 ------- null} - -t 33.0627 -s 28 -d 1 -p ack -e 40 -c 0 -i 699 -a 1 -x {1.1.3.0 0.0.3.0 348 ------- null} h -t 33.0627 -s 28 -d 1 -p ack -e 40 -c 0 -i 699 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 33.0643 -s 21 -d 28 -p ack -e 40 -c 0 -i 700 -a 1 -x {1.1.3.0 0.0.3.0 349 ------- null} + -t 33.0643 -s 28 -d 1 -p ack -e 40 -c 0 -i 700 -a 1 -x {1.1.3.0 0.0.3.0 349 ------- null} - -t 33.0643 -s 28 -d 1 -p ack -e 40 -c 0 -i 700 -a 1 -x {1.1.3.0 0.0.3.0 349 ------- null} h -t 33.0643 -s 28 -d 1 -p ack -e 40 -c 0 -i 700 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 33.0659 -s 21 -d 28 -p ack -e 40 -c 0 -i 701 -a 1 -x {1.1.3.0 0.0.3.0 350 ------- null} + -t 33.0659 -s 28 -d 1 -p ack -e 40 -c 0 -i 701 -a 1 -x {1.1.3.0 0.0.3.0 350 ------- null} - -t 33.0659 -s 28 -d 1 -p ack -e 40 -c 0 -i 701 -a 1 -x {1.1.3.0 0.0.3.0 350 ------- null} h -t 33.0659 -s 28 -d 1 -p ack -e 40 -c 0 -i 701 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 33.3356 -s 28 -d 1 -p ack -e 40 -c 0 -i 682 -a 1 -x {1.1.3.0 0.0.3.0 331 ------- null} + -t 33.3356 -s 1 -d 3 -p ack -e 40 -c 0 -i 682 -a 1 -x {1.1.3.0 0.0.3.0 331 ------- null} - -t 33.3356 -s 1 -d 3 -p ack -e 40 -c 0 -i 682 -a 1 -x {1.1.3.0 0.0.3.0 331 ------- null} h -t 33.3356 -s 1 -d 3 -p ack -e 40 -c 0 -i 682 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 33.3372 -s 28 -d 1 -p ack -e 40 -c 0 -i 683 -a 1 -x {1.1.3.0 0.0.3.0 332 ------- null} + -t 33.3372 -s 1 -d 3 -p ack -e 40 -c 0 -i 683 -a 1 -x {1.1.3.0 0.0.3.0 332 ------- null} - -t 33.3372 -s 1 -d 3 -p ack -e 40 -c 0 -i 683 -a 1 -x {1.1.3.0 0.0.3.0 332 ------- null} h -t 33.3372 -s 1 -d 3 -p ack -e 40 -c 0 -i 683 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 33.3388 -s 28 -d 1 -p ack -e 40 -c 0 -i 684 -a 1 -x {1.1.3.0 0.0.3.0 333 ------- null} + -t 33.3388 -s 1 -d 3 -p ack -e 40 -c 0 -i 684 -a 1 -x {1.1.3.0 0.0.3.0 333 ------- null} - -t 33.3388 -s 1 -d 3 -p ack -e 40 -c 0 -i 684 -a 1 -x {1.1.3.0 0.0.3.0 333 ------- null} h -t 33.3388 -s 1 -d 3 -p ack -e 40 -c 0 -i 684 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 33.3404 -s 28 -d 1 -p ack -e 40 -c 0 -i 685 -a 1 -x {1.1.3.0 0.0.3.0 334 ------- null} + -t 33.3404 -s 1 -d 3 -p ack -e 40 -c 0 -i 685 -a 1 -x {1.1.3.0 0.0.3.0 334 ------- null} - -t 33.3404 -s 1 -d 3 -p ack -e 40 -c 0 -i 685 -a 1 -x {1.1.3.0 0.0.3.0 334 ------- null} h -t 33.3404 -s 1 -d 3 -p ack -e 40 -c 0 -i 685 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 33.342 -s 28 -d 1 -p ack -e 40 -c 0 -i 686 -a 1 -x {1.1.3.0 0.0.3.0 335 ------- null} + -t 33.342 -s 1 -d 3 -p ack -e 40 -c 0 -i 686 -a 1 -x {1.1.3.0 0.0.3.0 335 ------- null} - -t 33.342 -s 1 -d 3 -p ack -e 40 -c 0 -i 686 -a 1 -x {1.1.3.0 0.0.3.0 335 ------- null} h -t 33.342 -s 1 -d 3 -p ack -e 40 -c 0 -i 686 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 33.3436 -s 28 -d 1 -p ack -e 40 -c 0 -i 687 -a 1 -x {1.1.3.0 0.0.3.0 336 ------- null} + -t 33.3436 -s 1 -d 3 -p ack -e 40 -c 0 -i 687 -a 1 -x {1.1.3.0 0.0.3.0 336 ------- null} - -t 33.3436 -s 1 -d 3 -p ack -e 40 -c 0 -i 687 -a 1 -x {1.1.3.0 0.0.3.0 336 ------- null} h -t 33.3436 -s 1 -d 3 -p ack -e 40 -c 0 -i 687 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 33.3452 -s 28 -d 1 -p ack -e 40 -c 0 -i 688 -a 1 -x {1.1.3.0 0.0.3.0 337 ------- null} + -t 33.3452 -s 1 -d 3 -p ack -e 40 -c 0 -i 688 -a 1 -x {1.1.3.0 0.0.3.0 337 ------- null} - -t 33.3452 -s 1 -d 3 -p ack -e 40 -c 0 -i 688 -a 1 -x {1.1.3.0 0.0.3.0 337 ------- null} h -t 33.3452 -s 1 -d 3 -p ack -e 40 -c 0 -i 688 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 33.3468 -s 28 -d 1 -p ack -e 40 -c 0 -i 689 -a 1 -x {1.1.3.0 0.0.3.0 338 ------- null} + -t 33.3468 -s 1 -d 3 -p ack -e 40 -c 0 -i 689 -a 1 -x {1.1.3.0 0.0.3.0 338 ------- null} - -t 33.3468 -s 1 -d 3 -p ack -e 40 -c 0 -i 689 -a 1 -x {1.1.3.0 0.0.3.0 338 ------- null} h -t 33.3468 -s 1 -d 3 -p ack -e 40 -c 0 -i 689 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 33.3484 -s 28 -d 1 -p ack -e 40 -c 0 -i 690 -a 1 -x {1.1.3.0 0.0.3.0 339 ------- null} + -t 33.3484 -s 1 -d 3 -p ack -e 40 -c 0 -i 690 -a 1 -x {1.1.3.0 0.0.3.0 339 ------- null} - -t 33.3484 -s 1 -d 3 -p ack -e 40 -c 0 -i 690 -a 1 -x {1.1.3.0 0.0.3.0 339 ------- null} h -t 33.3484 -s 1 -d 3 -p ack -e 40 -c 0 -i 690 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 33.35 -s 28 -d 1 -p ack -e 40 -c 0 -i 691 -a 1 -x {1.1.3.0 0.0.3.0 340 ------- null} + -t 33.35 -s 1 -d 3 -p ack -e 40 -c 0 -i 691 -a 1 -x {1.1.3.0 0.0.3.0 340 ------- null} - -t 33.35 -s 1 -d 3 -p ack -e 40 -c 0 -i 691 -a 1 -x {1.1.3.0 0.0.3.0 340 ------- null} h -t 33.35 -s 1 -d 3 -p ack -e 40 -c 0 -i 691 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 33.3516 -s 28 -d 1 -p ack -e 40 -c 0 -i 692 -a 1 -x {1.1.3.0 0.0.3.0 341 ------- null} + -t 33.3516 -s 1 -d 3 -p ack -e 40 -c 0 -i 692 -a 1 -x {1.1.3.0 0.0.3.0 341 ------- null} - -t 33.3516 -s 1 -d 3 -p ack -e 40 -c 0 -i 692 -a 1 -x {1.1.3.0 0.0.3.0 341 ------- null} h -t 33.3516 -s 1 -d 3 -p ack -e 40 -c 0 -i 692 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 33.3532 -s 28 -d 1 -p ack -e 40 -c 0 -i 693 -a 1 -x {1.1.3.0 0.0.3.0 342 ------- null} + -t 33.3532 -s 1 -d 3 -p ack -e 40 -c 0 -i 693 -a 1 -x {1.1.3.0 0.0.3.0 342 ------- null} - -t 33.3532 -s 1 -d 3 -p ack -e 40 -c 0 -i 693 -a 1 -x {1.1.3.0 0.0.3.0 342 ------- null} h -t 33.3532 -s 1 -d 3 -p ack -e 40 -c 0 -i 693 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 33.3548 -s 28 -d 1 -p ack -e 40 -c 0 -i 694 -a 1 -x {1.1.3.0 0.0.3.0 343 ------- null} + -t 33.3548 -s 1 -d 3 -p ack -e 40 -c 0 -i 694 -a 1 -x {1.1.3.0 0.0.3.0 343 ------- null} - -t 33.3548 -s 1 -d 3 -p ack -e 40 -c 0 -i 694 -a 1 -x {1.1.3.0 0.0.3.0 343 ------- null} h -t 33.3548 -s 1 -d 3 -p ack -e 40 -c 0 -i 694 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 33.3564 -s 28 -d 1 -p ack -e 40 -c 0 -i 695 -a 1 -x {1.1.3.0 0.0.3.0 344 ------- null} + -t 33.3564 -s 1 -d 3 -p ack -e 40 -c 0 -i 695 -a 1 -x {1.1.3.0 0.0.3.0 344 ------- null} - -t 33.3564 -s 1 -d 3 -p ack -e 40 -c 0 -i 695 -a 1 -x {1.1.3.0 0.0.3.0 344 ------- null} h -t 33.3564 -s 1 -d 3 -p ack -e 40 -c 0 -i 695 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 33.358 -s 28 -d 1 -p ack -e 40 -c 0 -i 696 -a 1 -x {1.1.3.0 0.0.3.0 345 ------- null} + -t 33.358 -s 1 -d 3 -p ack -e 40 -c 0 -i 696 -a 1 -x {1.1.3.0 0.0.3.0 345 ------- null} - -t 33.358 -s 1 -d 3 -p ack -e 40 -c 0 -i 696 -a 1 -x {1.1.3.0 0.0.3.0 345 ------- null} h -t 33.358 -s 1 -d 3 -p ack -e 40 -c 0 -i 696 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 33.3596 -s 28 -d 1 -p ack -e 40 -c 0 -i 697 -a 1 -x {1.1.3.0 0.0.3.0 346 ------- null} + -t 33.3596 -s 1 -d 3 -p ack -e 40 -c 0 -i 697 -a 1 -x {1.1.3.0 0.0.3.0 346 ------- null} - -t 33.3596 -s 1 -d 3 -p ack -e 40 -c 0 -i 697 -a 1 -x {1.1.3.0 0.0.3.0 346 ------- null} h -t 33.3596 -s 1 -d 3 -p ack -e 40 -c 0 -i 697 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 33.3612 -s 28 -d 1 -p ack -e 40 -c 0 -i 698 -a 1 -x {1.1.3.0 0.0.3.0 347 ------- null} + -t 33.3612 -s 1 -d 3 -p ack -e 40 -c 0 -i 698 -a 1 -x {1.1.3.0 0.0.3.0 347 ------- null} - -t 33.3612 -s 1 -d 3 -p ack -e 40 -c 0 -i 698 -a 1 -x {1.1.3.0 0.0.3.0 347 ------- null} h -t 33.3612 -s 1 -d 3 -p ack -e 40 -c 0 -i 698 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 33.3628 -s 28 -d 1 -p ack -e 40 -c 0 -i 699 -a 1 -x {1.1.3.0 0.0.3.0 348 ------- null} + -t 33.3628 -s 1 -d 3 -p ack -e 40 -c 0 -i 699 -a 1 -x {1.1.3.0 0.0.3.0 348 ------- null} - -t 33.3628 -s 1 -d 3 -p ack -e 40 -c 0 -i 699 -a 1 -x {1.1.3.0 0.0.3.0 348 ------- null} h -t 33.3628 -s 1 -d 3 -p ack -e 40 -c 0 -i 699 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 33.3644 -s 28 -d 1 -p ack -e 40 -c 0 -i 700 -a 1 -x {1.1.3.0 0.0.3.0 349 ------- null} + -t 33.3644 -s 1 -d 3 -p ack -e 40 -c 0 -i 700 -a 1 -x {1.1.3.0 0.0.3.0 349 ------- null} - -t 33.3644 -s 1 -d 3 -p ack -e 40 -c 0 -i 700 -a 1 -x {1.1.3.0 0.0.3.0 349 ------- null} h -t 33.3644 -s 1 -d 3 -p ack -e 40 -c 0 -i 700 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 33.366 -s 28 -d 1 -p ack -e 40 -c 0 -i 701 -a 1 -x {1.1.3.0 0.0.3.0 350 ------- null} + -t 33.366 -s 1 -d 3 -p ack -e 40 -c 0 -i 701 -a 1 -x {1.1.3.0 0.0.3.0 350 ------- null} - -t 33.366 -s 1 -d 3 -p ack -e 40 -c 0 -i 701 -a 1 -x {1.1.3.0 0.0.3.0 350 ------- null} h -t 33.366 -s 1 -d 3 -p ack -e 40 -c 0 -i 701 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 33.4756 -s 1 -d 3 -p ack -e 40 -c 0 -i 682 -a 1 -x {1.1.3.0 0.0.3.0 331 ------- null} + -t 33.4756 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 702 -a 0 -x {0.0.3.0 1.1.3.0 351 ------- null} - -t 33.4756 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 702 -a 0 -x {0.0.3.0 1.1.3.0 351 ------- null} h -t 33.4756 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 702 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.4772 -s 1 -d 3 -p ack -e 40 -c 0 -i 683 -a 1 -x {1.1.3.0 0.0.3.0 332 ------- null} + -t 33.4772 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {0.0.3.0 1.1.3.0 352 ------- null} - -t 33.4772 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {0.0.3.0 1.1.3.0 352 ------- null} h -t 33.4772 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.4788 -s 1 -d 3 -p ack -e 40 -c 0 -i 684 -a 1 -x {1.1.3.0 0.0.3.0 333 ------- null} + -t 33.4788 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 704 -a 0 -x {0.0.3.0 1.1.3.0 353 ------- null} - -t 33.4788 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 704 -a 0 -x {0.0.3.0 1.1.3.0 353 ------- null} h -t 33.4788 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 704 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.4804 -s 1 -d 3 -p ack -e 40 -c 0 -i 685 -a 1 -x {1.1.3.0 0.0.3.0 334 ------- null} + -t 33.4804 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {0.0.3.0 1.1.3.0 354 ------- null} - -t 33.4804 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {0.0.3.0 1.1.3.0 354 ------- null} h -t 33.4804 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.482 -s 1 -d 3 -p ack -e 40 -c 0 -i 686 -a 1 -x {1.1.3.0 0.0.3.0 335 ------- null} + -t 33.482 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 706 -a 0 -x {0.0.3.0 1.1.3.0 355 ------- null} - -t 33.482 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 706 -a 0 -x {0.0.3.0 1.1.3.0 355 ------- null} h -t 33.482 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 706 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.4836 -s 1 -d 3 -p ack -e 40 -c 0 -i 687 -a 1 -x {1.1.3.0 0.0.3.0 336 ------- null} + -t 33.4836 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {0.0.3.0 1.1.3.0 356 ------- null} - -t 33.4836 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {0.0.3.0 1.1.3.0 356 ------- null} h -t 33.4836 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.4852 -s 1 -d 3 -p ack -e 40 -c 0 -i 688 -a 1 -x {1.1.3.0 0.0.3.0 337 ------- null} + -t 33.4852 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 708 -a 0 -x {0.0.3.0 1.1.3.0 357 ------- null} - -t 33.4852 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 708 -a 0 -x {0.0.3.0 1.1.3.0 357 ------- null} h -t 33.4852 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 708 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.4868 -s 1 -d 3 -p ack -e 40 -c 0 -i 689 -a 1 -x {1.1.3.0 0.0.3.0 338 ------- null} + -t 33.4868 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {0.0.3.0 1.1.3.0 358 ------- null} - -t 33.4868 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {0.0.3.0 1.1.3.0 358 ------- null} h -t 33.4868 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.4884 -s 1 -d 3 -p ack -e 40 -c 0 -i 690 -a 1 -x {1.1.3.0 0.0.3.0 339 ------- null} + -t 33.4884 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 710 -a 0 -x {0.0.3.0 1.1.3.0 359 ------- null} - -t 33.4884 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 710 -a 0 -x {0.0.3.0 1.1.3.0 359 ------- null} h -t 33.4884 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 710 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.49 -s 1 -d 3 -p ack -e 40 -c 0 -i 691 -a 1 -x {1.1.3.0 0.0.3.0 340 ------- null} + -t 33.49 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {0.0.3.0 1.1.3.0 360 ------- null} - -t 33.49 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {0.0.3.0 1.1.3.0 360 ------- null} h -t 33.49 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.4916 -s 1 -d 3 -p ack -e 40 -c 0 -i 692 -a 1 -x {1.1.3.0 0.0.3.0 341 ------- null} + -t 33.4916 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 712 -a 0 -x {0.0.3.0 1.1.3.0 361 ------- null} - -t 33.4916 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 712 -a 0 -x {0.0.3.0 1.1.3.0 361 ------- null} h -t 33.4916 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 712 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.4932 -s 1 -d 3 -p ack -e 40 -c 0 -i 693 -a 1 -x {1.1.3.0 0.0.3.0 342 ------- null} + -t 33.4932 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {0.0.3.0 1.1.3.0 362 ------- null} - -t 33.4932 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {0.0.3.0 1.1.3.0 362 ------- null} h -t 33.4932 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.4948 -s 1 -d 3 -p ack -e 40 -c 0 -i 694 -a 1 -x {1.1.3.0 0.0.3.0 343 ------- null} + -t 33.4948 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 714 -a 0 -x {0.0.3.0 1.1.3.0 363 ------- null} - -t 33.4948 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 714 -a 0 -x {0.0.3.0 1.1.3.0 363 ------- null} h -t 33.4948 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 714 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.4964 -s 1 -d 3 -p ack -e 40 -c 0 -i 695 -a 1 -x {1.1.3.0 0.0.3.0 344 ------- null} + -t 33.4964 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {0.0.3.0 1.1.3.0 364 ------- null} - -t 33.4964 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {0.0.3.0 1.1.3.0 364 ------- null} h -t 33.4964 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.498 -s 1 -d 3 -p ack -e 40 -c 0 -i 696 -a 1 -x {1.1.3.0 0.0.3.0 345 ------- null} + -t 33.498 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 716 -a 0 -x {0.0.3.0 1.1.3.0 365 ------- null} - -t 33.498 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 716 -a 0 -x {0.0.3.0 1.1.3.0 365 ------- null} h -t 33.498 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 716 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.4996 -s 1 -d 3 -p ack -e 40 -c 0 -i 697 -a 1 -x {1.1.3.0 0.0.3.0 346 ------- null} + -t 33.4996 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {0.0.3.0 1.1.3.0 366 ------- null} - -t 33.4996 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {0.0.3.0 1.1.3.0 366 ------- null} h -t 33.4996 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.5012 -s 1 -d 3 -p ack -e 40 -c 0 -i 698 -a 1 -x {1.1.3.0 0.0.3.0 347 ------- null} + -t 33.5012 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 718 -a 0 -x {0.0.3.0 1.1.3.0 367 ------- null} - -t 33.5012 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 718 -a 0 -x {0.0.3.0 1.1.3.0 367 ------- null} h -t 33.5012 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 718 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.5028 -s 1 -d 3 -p ack -e 40 -c 0 -i 699 -a 1 -x {1.1.3.0 0.0.3.0 348 ------- null} + -t 33.5028 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {0.0.3.0 1.1.3.0 368 ------- null} - -t 33.5028 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {0.0.3.0 1.1.3.0 368 ------- null} h -t 33.5028 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.5044 -s 1 -d 3 -p ack -e 40 -c 0 -i 700 -a 1 -x {1.1.3.0 0.0.3.0 349 ------- null} + -t 33.5044 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 720 -a 0 -x {0.0.3.0 1.1.3.0 369 ------- null} - -t 33.5044 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 720 -a 0 -x {0.0.3.0 1.1.3.0 369 ------- null} h -t 33.5044 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 720 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.506 -s 1 -d 3 -p ack -e 40 -c 0 -i 701 -a 1 -x {1.1.3.0 0.0.3.0 350 ------- null} + -t 33.506 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {0.0.3.0 1.1.3.0 370 ------- null} - -t 33.506 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {0.0.3.0 1.1.3.0 370 ------- null} h -t 33.506 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.6372 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 702 -a 0 -x {0.0.3.0 1.1.3.0 351 ------- null} + -t 33.6372 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 702 -a 0 -x {0.0.3.0 1.1.3.0 351 ------- null} - -t 33.6372 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 702 -a 0 -x {0.0.3.0 1.1.3.0 351 ------- null} h -t 33.6372 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 702 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.6388 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {0.0.3.0 1.1.3.0 352 ------- null} + -t 33.6388 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {0.0.3.0 1.1.3.0 352 ------- null} - -t 33.6388 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {0.0.3.0 1.1.3.0 352 ------- null} h -t 33.6388 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.6404 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 704 -a 0 -x {0.0.3.0 1.1.3.0 353 ------- null} + -t 33.6404 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 704 -a 0 -x {0.0.3.0 1.1.3.0 353 ------- null} - -t 33.6404 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 704 -a 0 -x {0.0.3.0 1.1.3.0 353 ------- null} h -t 33.6404 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 704 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.642 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {0.0.3.0 1.1.3.0 354 ------- null} + -t 33.642 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {0.0.3.0 1.1.3.0 354 ------- null} - -t 33.642 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {0.0.3.0 1.1.3.0 354 ------- null} h -t 33.642 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.6436 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 706 -a 0 -x {0.0.3.0 1.1.3.0 355 ------- null} + -t 33.6436 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 706 -a 0 -x {0.0.3.0 1.1.3.0 355 ------- null} - -t 33.6436 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 706 -a 0 -x {0.0.3.0 1.1.3.0 355 ------- null} h -t 33.6436 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 706 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.6452 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {0.0.3.0 1.1.3.0 356 ------- null} + -t 33.6452 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {0.0.3.0 1.1.3.0 356 ------- null} - -t 33.6452 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {0.0.3.0 1.1.3.0 356 ------- null} h -t 33.6452 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.6468 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 708 -a 0 -x {0.0.3.0 1.1.3.0 357 ------- null} + -t 33.6468 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 708 -a 0 -x {0.0.3.0 1.1.3.0 357 ------- null} - -t 33.6468 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 708 -a 0 -x {0.0.3.0 1.1.3.0 357 ------- null} h -t 33.6468 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 708 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.6484 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {0.0.3.0 1.1.3.0 358 ------- null} + -t 33.6484 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {0.0.3.0 1.1.3.0 358 ------- null} - -t 33.6484 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {0.0.3.0 1.1.3.0 358 ------- null} h -t 33.6484 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.65 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 710 -a 0 -x {0.0.3.0 1.1.3.0 359 ------- null} + -t 33.65 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 710 -a 0 -x {0.0.3.0 1.1.3.0 359 ------- null} - -t 33.65 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 710 -a 0 -x {0.0.3.0 1.1.3.0 359 ------- null} h -t 33.65 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 710 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.6516 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {0.0.3.0 1.1.3.0 360 ------- null} + -t 33.6516 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {0.0.3.0 1.1.3.0 360 ------- null} - -t 33.6516 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {0.0.3.0 1.1.3.0 360 ------- null} h -t 33.6516 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.6532 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 712 -a 0 -x {0.0.3.0 1.1.3.0 361 ------- null} + -t 33.6532 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 712 -a 0 -x {0.0.3.0 1.1.3.0 361 ------- null} - -t 33.6532 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 712 -a 0 -x {0.0.3.0 1.1.3.0 361 ------- null} h -t 33.6532 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 712 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.6548 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {0.0.3.0 1.1.3.0 362 ------- null} + -t 33.6548 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {0.0.3.0 1.1.3.0 362 ------- null} - -t 33.6548 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {0.0.3.0 1.1.3.0 362 ------- null} h -t 33.6548 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.6564 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 714 -a 0 -x {0.0.3.0 1.1.3.0 363 ------- null} + -t 33.6564 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 714 -a 0 -x {0.0.3.0 1.1.3.0 363 ------- null} - -t 33.6564 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 714 -a 0 -x {0.0.3.0 1.1.3.0 363 ------- null} h -t 33.6564 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 714 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.658 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {0.0.3.0 1.1.3.0 364 ------- null} + -t 33.658 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {0.0.3.0 1.1.3.0 364 ------- null} - -t 33.658 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {0.0.3.0 1.1.3.0 364 ------- null} h -t 33.658 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.6596 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 716 -a 0 -x {0.0.3.0 1.1.3.0 365 ------- null} + -t 33.6596 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 716 -a 0 -x {0.0.3.0 1.1.3.0 365 ------- null} - -t 33.6596 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 716 -a 0 -x {0.0.3.0 1.1.3.0 365 ------- null} h -t 33.6596 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 716 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.6612 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {0.0.3.0 1.1.3.0 366 ------- null} + -t 33.6612 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {0.0.3.0 1.1.3.0 366 ------- null} - -t 33.6612 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {0.0.3.0 1.1.3.0 366 ------- null} h -t 33.6612 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.6628 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 718 -a 0 -x {0.0.3.0 1.1.3.0 367 ------- null} + -t 33.6628 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 718 -a 0 -x {0.0.3.0 1.1.3.0 367 ------- null} - -t 33.6628 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 718 -a 0 -x {0.0.3.0 1.1.3.0 367 ------- null} h -t 33.6628 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 718 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.6644 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {0.0.3.0 1.1.3.0 368 ------- null} + -t 33.6644 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {0.0.3.0 1.1.3.0 368 ------- null} - -t 33.6644 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {0.0.3.0 1.1.3.0 368 ------- null} h -t 33.6644 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.666 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 720 -a 0 -x {0.0.3.0 1.1.3.0 369 ------- null} + -t 33.666 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 720 -a 0 -x {0.0.3.0 1.1.3.0 369 ------- null} - -t 33.666 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 720 -a 0 -x {0.0.3.0 1.1.3.0 369 ------- null} h -t 33.666 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 720 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.6676 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {0.0.3.0 1.1.3.0 370 ------- null} + -t 33.6676 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {0.0.3.0 1.1.3.0 370 ------- null} - -t 33.6676 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {0.0.3.0 1.1.3.0 370 ------- null} h -t 33.6676 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.9388 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 702 -a 0 -x {0.0.3.0 1.1.3.0 351 ------- null} + -t 33.9388 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 702 -a 0 -x {0.0.3.0 1.1.3.0 351 ------- null} - -t 33.9388 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 702 -a 0 -x {0.0.3.0 1.1.3.0 351 ------- null} h -t 33.9388 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 702 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.9404 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {0.0.3.0 1.1.3.0 352 ------- null} + -t 33.9404 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {0.0.3.0 1.1.3.0 352 ------- null} - -t 33.9404 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {0.0.3.0 1.1.3.0 352 ------- null} h -t 33.9404 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.942 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 704 -a 0 -x {0.0.3.0 1.1.3.0 353 ------- null} + -t 33.942 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 704 -a 0 -x {0.0.3.0 1.1.3.0 353 ------- null} - -t 33.942 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 704 -a 0 -x {0.0.3.0 1.1.3.0 353 ------- null} h -t 33.942 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 704 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.9436 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {0.0.3.0 1.1.3.0 354 ------- null} + -t 33.9436 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {0.0.3.0 1.1.3.0 354 ------- null} - -t 33.9436 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {0.0.3.0 1.1.3.0 354 ------- null} h -t 33.9436 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.9452 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 706 -a 0 -x {0.0.3.0 1.1.3.0 355 ------- null} + -t 33.9452 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 706 -a 0 -x {0.0.3.0 1.1.3.0 355 ------- null} - -t 33.9452 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 706 -a 0 -x {0.0.3.0 1.1.3.0 355 ------- null} h -t 33.9452 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 706 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.9468 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {0.0.3.0 1.1.3.0 356 ------- null} + -t 33.9468 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {0.0.3.0 1.1.3.0 356 ------- null} - -t 33.9468 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {0.0.3.0 1.1.3.0 356 ------- null} h -t 33.9468 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.9484 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 708 -a 0 -x {0.0.3.0 1.1.3.0 357 ------- null} + -t 33.9484 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 708 -a 0 -x {0.0.3.0 1.1.3.0 357 ------- null} - -t 33.9484 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 708 -a 0 -x {0.0.3.0 1.1.3.0 357 ------- null} h -t 33.9484 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 708 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.95 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {0.0.3.0 1.1.3.0 358 ------- null} + -t 33.95 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {0.0.3.0 1.1.3.0 358 ------- null} - -t 33.95 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {0.0.3.0 1.1.3.0 358 ------- null} h -t 33.95 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.9516 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 710 -a 0 -x {0.0.3.0 1.1.3.0 359 ------- null} + -t 33.9516 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 710 -a 0 -x {0.0.3.0 1.1.3.0 359 ------- null} - -t 33.9516 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 710 -a 0 -x {0.0.3.0 1.1.3.0 359 ------- null} h -t 33.9516 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 710 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.9532 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {0.0.3.0 1.1.3.0 360 ------- null} + -t 33.9532 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {0.0.3.0 1.1.3.0 360 ------- null} - -t 33.9532 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {0.0.3.0 1.1.3.0 360 ------- null} h -t 33.9532 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.9548 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 712 -a 0 -x {0.0.3.0 1.1.3.0 361 ------- null} + -t 33.9548 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 712 -a 0 -x {0.0.3.0 1.1.3.0 361 ------- null} - -t 33.9548 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 712 -a 0 -x {0.0.3.0 1.1.3.0 361 ------- null} h -t 33.9548 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 712 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.9564 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {0.0.3.0 1.1.3.0 362 ------- null} + -t 33.9564 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {0.0.3.0 1.1.3.0 362 ------- null} - -t 33.9564 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {0.0.3.0 1.1.3.0 362 ------- null} h -t 33.9564 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.958 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 714 -a 0 -x {0.0.3.0 1.1.3.0 363 ------- null} + -t 33.958 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 714 -a 0 -x {0.0.3.0 1.1.3.0 363 ------- null} - -t 33.958 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 714 -a 0 -x {0.0.3.0 1.1.3.0 363 ------- null} h -t 33.958 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 714 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.9596 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {0.0.3.0 1.1.3.0 364 ------- null} + -t 33.9596 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {0.0.3.0 1.1.3.0 364 ------- null} - -t 33.9596 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {0.0.3.0 1.1.3.0 364 ------- null} h -t 33.9596 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.9612 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 716 -a 0 -x {0.0.3.0 1.1.3.0 365 ------- null} + -t 33.9612 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 716 -a 0 -x {0.0.3.0 1.1.3.0 365 ------- null} - -t 33.9612 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 716 -a 0 -x {0.0.3.0 1.1.3.0 365 ------- null} h -t 33.9612 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 716 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.9628 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {0.0.3.0 1.1.3.0 366 ------- null} + -t 33.9628 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {0.0.3.0 1.1.3.0 366 ------- null} - -t 33.9628 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {0.0.3.0 1.1.3.0 366 ------- null} h -t 33.9628 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.9644 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 718 -a 0 -x {0.0.3.0 1.1.3.0 367 ------- null} + -t 33.9644 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 718 -a 0 -x {0.0.3.0 1.1.3.0 367 ------- null} - -t 33.9644 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 718 -a 0 -x {0.0.3.0 1.1.3.0 367 ------- null} h -t 33.9644 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 718 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.966 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {0.0.3.0 1.1.3.0 368 ------- null} + -t 33.966 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {0.0.3.0 1.1.3.0 368 ------- null} - -t 33.966 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {0.0.3.0 1.1.3.0 368 ------- null} h -t 33.966 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.9676 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 720 -a 0 -x {0.0.3.0 1.1.3.0 369 ------- null} + -t 33.9676 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 720 -a 0 -x {0.0.3.0 1.1.3.0 369 ------- null} - -t 33.9676 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 720 -a 0 -x {0.0.3.0 1.1.3.0 369 ------- null} h -t 33.9676 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 720 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 33.9692 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {0.0.3.0 1.1.3.0 370 ------- null} + -t 33.9692 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {0.0.3.0 1.1.3.0 370 ------- null} - -t 33.9692 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {0.0.3.0 1.1.3.0 370 ------- null} h -t 33.9692 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.0404 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 702 -a 0 -x {0.0.3.0 1.1.3.0 351 ------- null} + -t 34.0404 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 702 -a 0 -x {0.0.3.0 1.1.3.0 351 ------- null} - -t 34.0404 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 702 -a 0 -x {0.0.3.0 1.1.3.0 351 ------- null} h -t 34.0404 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 702 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.042 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {0.0.3.0 1.1.3.0 352 ------- null} + -t 34.042 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {0.0.3.0 1.1.3.0 352 ------- null} - -t 34.042 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {0.0.3.0 1.1.3.0 352 ------- null} h -t 34.042 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.0436 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 704 -a 0 -x {0.0.3.0 1.1.3.0 353 ------- null} + -t 34.0436 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 704 -a 0 -x {0.0.3.0 1.1.3.0 353 ------- null} - -t 34.0436 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 704 -a 0 -x {0.0.3.0 1.1.3.0 353 ------- null} h -t 34.0436 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 704 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.0452 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {0.0.3.0 1.1.3.0 354 ------- null} + -t 34.0452 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {0.0.3.0 1.1.3.0 354 ------- null} - -t 34.0452 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {0.0.3.0 1.1.3.0 354 ------- null} h -t 34.0452 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.0468 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 706 -a 0 -x {0.0.3.0 1.1.3.0 355 ------- null} + -t 34.0468 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 706 -a 0 -x {0.0.3.0 1.1.3.0 355 ------- null} - -t 34.0468 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 706 -a 0 -x {0.0.3.0 1.1.3.0 355 ------- null} h -t 34.0468 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 706 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.0484 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {0.0.3.0 1.1.3.0 356 ------- null} + -t 34.0484 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {0.0.3.0 1.1.3.0 356 ------- null} - -t 34.0484 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {0.0.3.0 1.1.3.0 356 ------- null} h -t 34.0484 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.05 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 708 -a 0 -x {0.0.3.0 1.1.3.0 357 ------- null} + -t 34.05 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 708 -a 0 -x {0.0.3.0 1.1.3.0 357 ------- null} - -t 34.05 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 708 -a 0 -x {0.0.3.0 1.1.3.0 357 ------- null} h -t 34.05 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 708 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.0516 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {0.0.3.0 1.1.3.0 358 ------- null} + -t 34.0516 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {0.0.3.0 1.1.3.0 358 ------- null} - -t 34.0516 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {0.0.3.0 1.1.3.0 358 ------- null} h -t 34.0516 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.0532 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 710 -a 0 -x {0.0.3.0 1.1.3.0 359 ------- null} + -t 34.0532 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 710 -a 0 -x {0.0.3.0 1.1.3.0 359 ------- null} - -t 34.0532 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 710 -a 0 -x {0.0.3.0 1.1.3.0 359 ------- null} h -t 34.0532 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 710 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.0548 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {0.0.3.0 1.1.3.0 360 ------- null} + -t 34.0548 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {0.0.3.0 1.1.3.0 360 ------- null} - -t 34.0548 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {0.0.3.0 1.1.3.0 360 ------- null} h -t 34.0548 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.0564 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 712 -a 0 -x {0.0.3.0 1.1.3.0 361 ------- null} + -t 34.0564 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 712 -a 0 -x {0.0.3.0 1.1.3.0 361 ------- null} - -t 34.0564 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 712 -a 0 -x {0.0.3.0 1.1.3.0 361 ------- null} h -t 34.0564 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 712 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.058 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {0.0.3.0 1.1.3.0 362 ------- null} + -t 34.058 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {0.0.3.0 1.1.3.0 362 ------- null} - -t 34.058 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {0.0.3.0 1.1.3.0 362 ------- null} h -t 34.058 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.0596 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 714 -a 0 -x {0.0.3.0 1.1.3.0 363 ------- null} + -t 34.0596 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 714 -a 0 -x {0.0.3.0 1.1.3.0 363 ------- null} - -t 34.0596 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 714 -a 0 -x {0.0.3.0 1.1.3.0 363 ------- null} h -t 34.0596 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 714 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.0612 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {0.0.3.0 1.1.3.0 364 ------- null} + -t 34.0612 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {0.0.3.0 1.1.3.0 364 ------- null} - -t 34.0612 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {0.0.3.0 1.1.3.0 364 ------- null} h -t 34.0612 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.0628 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 716 -a 0 -x {0.0.3.0 1.1.3.0 365 ------- null} + -t 34.0628 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 716 -a 0 -x {0.0.3.0 1.1.3.0 365 ------- null} - -t 34.0628 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 716 -a 0 -x {0.0.3.0 1.1.3.0 365 ------- null} h -t 34.0628 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 716 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.0644 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {0.0.3.0 1.1.3.0 366 ------- null} + -t 34.0644 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {0.0.3.0 1.1.3.0 366 ------- null} - -t 34.0644 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {0.0.3.0 1.1.3.0 366 ------- null} h -t 34.0644 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.066 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 718 -a 0 -x {0.0.3.0 1.1.3.0 367 ------- null} + -t 34.066 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 718 -a 0 -x {0.0.3.0 1.1.3.0 367 ------- null} - -t 34.066 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 718 -a 0 -x {0.0.3.0 1.1.3.0 367 ------- null} h -t 34.066 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 718 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.0676 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {0.0.3.0 1.1.3.0 368 ------- null} + -t 34.0676 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {0.0.3.0 1.1.3.0 368 ------- null} - -t 34.0676 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {0.0.3.0 1.1.3.0 368 ------- null} h -t 34.0676 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.0692 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 720 -a 0 -x {0.0.3.0 1.1.3.0 369 ------- null} + -t 34.0692 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 720 -a 0 -x {0.0.3.0 1.1.3.0 369 ------- null} - -t 34.0692 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 720 -a 0 -x {0.0.3.0 1.1.3.0 369 ------- null} h -t 34.0692 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 720 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.0708 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {0.0.3.0 1.1.3.0 370 ------- null} + -t 34.0708 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {0.0.3.0 1.1.3.0 370 ------- null} - -t 34.0708 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {0.0.3.0 1.1.3.0 370 ------- null} h -t 34.0708 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.122 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 702 -a 0 -x {0.0.3.0 1.1.3.0 351 ------- null} + -t 34.122 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 702 -a 0 -x {0.0.3.0 1.1.3.0 351 ------- null} - -t 34.122 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 702 -a 0 -x {0.0.3.0 1.1.3.0 351 ------- null} h -t 34.122 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 702 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.1236 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {0.0.3.0 1.1.3.0 352 ------- null} + -t 34.1236 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {0.0.3.0 1.1.3.0 352 ------- null} - -t 34.1236 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {0.0.3.0 1.1.3.0 352 ------- null} h -t 34.1236 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.1252 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 704 -a 0 -x {0.0.3.0 1.1.3.0 353 ------- null} + -t 34.1252 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 704 -a 0 -x {0.0.3.0 1.1.3.0 353 ------- null} - -t 34.1252 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 704 -a 0 -x {0.0.3.0 1.1.3.0 353 ------- null} h -t 34.1252 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 704 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.1268 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {0.0.3.0 1.1.3.0 354 ------- null} + -t 34.1268 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {0.0.3.0 1.1.3.0 354 ------- null} - -t 34.1268 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {0.0.3.0 1.1.3.0 354 ------- null} h -t 34.1268 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.1284 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 706 -a 0 -x {0.0.3.0 1.1.3.0 355 ------- null} + -t 34.1284 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 706 -a 0 -x {0.0.3.0 1.1.3.0 355 ------- null} - -t 34.1284 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 706 -a 0 -x {0.0.3.0 1.1.3.0 355 ------- null} h -t 34.1284 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 706 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.13 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {0.0.3.0 1.1.3.0 356 ------- null} + -t 34.13 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {0.0.3.0 1.1.3.0 356 ------- null} - -t 34.13 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {0.0.3.0 1.1.3.0 356 ------- null} h -t 34.13 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.1316 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 708 -a 0 -x {0.0.3.0 1.1.3.0 357 ------- null} + -t 34.1316 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 708 -a 0 -x {0.0.3.0 1.1.3.0 357 ------- null} - -t 34.1316 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 708 -a 0 -x {0.0.3.0 1.1.3.0 357 ------- null} h -t 34.1316 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 708 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.1332 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {0.0.3.0 1.1.3.0 358 ------- null} + -t 34.1332 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {0.0.3.0 1.1.3.0 358 ------- null} - -t 34.1332 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {0.0.3.0 1.1.3.0 358 ------- null} h -t 34.1332 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.1348 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 710 -a 0 -x {0.0.3.0 1.1.3.0 359 ------- null} + -t 34.1348 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 710 -a 0 -x {0.0.3.0 1.1.3.0 359 ------- null} - -t 34.1348 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 710 -a 0 -x {0.0.3.0 1.1.3.0 359 ------- null} h -t 34.1348 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 710 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.1364 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {0.0.3.0 1.1.3.0 360 ------- null} + -t 34.1364 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {0.0.3.0 1.1.3.0 360 ------- null} - -t 34.1364 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {0.0.3.0 1.1.3.0 360 ------- null} h -t 34.1364 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.138 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 712 -a 0 -x {0.0.3.0 1.1.3.0 361 ------- null} + -t 34.138 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 712 -a 0 -x {0.0.3.0 1.1.3.0 361 ------- null} - -t 34.138 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 712 -a 0 -x {0.0.3.0 1.1.3.0 361 ------- null} h -t 34.138 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 712 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.1396 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {0.0.3.0 1.1.3.0 362 ------- null} + -t 34.1396 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {0.0.3.0 1.1.3.0 362 ------- null} - -t 34.1396 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {0.0.3.0 1.1.3.0 362 ------- null} h -t 34.1396 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.1412 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 714 -a 0 -x {0.0.3.0 1.1.3.0 363 ------- null} + -t 34.1412 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 714 -a 0 -x {0.0.3.0 1.1.3.0 363 ------- null} - -t 34.1412 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 714 -a 0 -x {0.0.3.0 1.1.3.0 363 ------- null} h -t 34.1412 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 714 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.1428 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {0.0.3.0 1.1.3.0 364 ------- null} + -t 34.1428 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {0.0.3.0 1.1.3.0 364 ------- null} - -t 34.1428 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {0.0.3.0 1.1.3.0 364 ------- null} h -t 34.1428 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.1444 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 716 -a 0 -x {0.0.3.0 1.1.3.0 365 ------- null} + -t 34.1444 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 716 -a 0 -x {0.0.3.0 1.1.3.0 365 ------- null} - -t 34.1444 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 716 -a 0 -x {0.0.3.0 1.1.3.0 365 ------- null} h -t 34.1444 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 716 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.146 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {0.0.3.0 1.1.3.0 366 ------- null} + -t 34.146 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {0.0.3.0 1.1.3.0 366 ------- null} - -t 34.146 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {0.0.3.0 1.1.3.0 366 ------- null} h -t 34.146 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.1476 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 718 -a 0 -x {0.0.3.0 1.1.3.0 367 ------- null} + -t 34.1476 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 718 -a 0 -x {0.0.3.0 1.1.3.0 367 ------- null} - -t 34.1476 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 718 -a 0 -x {0.0.3.0 1.1.3.0 367 ------- null} h -t 34.1476 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 718 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.1492 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {0.0.3.0 1.1.3.0 368 ------- null} + -t 34.1492 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {0.0.3.0 1.1.3.0 368 ------- null} - -t 34.1492 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {0.0.3.0 1.1.3.0 368 ------- null} h -t 34.1492 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.1508 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 720 -a 0 -x {0.0.3.0 1.1.3.0 369 ------- null} + -t 34.1508 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 720 -a 0 -x {0.0.3.0 1.1.3.0 369 ------- null} - -t 34.1508 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 720 -a 0 -x {0.0.3.0 1.1.3.0 369 ------- null} h -t 34.1508 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 720 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.1524 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {0.0.3.0 1.1.3.0 370 ------- null} + -t 34.1524 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {0.0.3.0 1.1.3.0 370 ------- null} - -t 34.1524 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {0.0.3.0 1.1.3.0 370 ------- null} h -t 34.1524 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.2036 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 702 -a 0 -x {0.0.3.0 1.1.3.0 351 ------- null} + -t 34.2036 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 702 -a 0 -x {0.0.3.0 1.1.3.0 351 ------- null} - -t 34.2036 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 702 -a 0 -x {0.0.3.0 1.1.3.0 351 ------- null} h -t 34.2036 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 702 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.2052 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {0.0.3.0 1.1.3.0 352 ------- null} + -t 34.2052 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {0.0.3.0 1.1.3.0 352 ------- null} - -t 34.2052 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {0.0.3.0 1.1.3.0 352 ------- null} h -t 34.2052 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.2068 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 704 -a 0 -x {0.0.3.0 1.1.3.0 353 ------- null} + -t 34.2068 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 704 -a 0 -x {0.0.3.0 1.1.3.0 353 ------- null} - -t 34.2068 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 704 -a 0 -x {0.0.3.0 1.1.3.0 353 ------- null} h -t 34.2068 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 704 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.2084 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {0.0.3.0 1.1.3.0 354 ------- null} + -t 34.2084 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {0.0.3.0 1.1.3.0 354 ------- null} - -t 34.2084 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {0.0.3.0 1.1.3.0 354 ------- null} h -t 34.2084 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.21 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 706 -a 0 -x {0.0.3.0 1.1.3.0 355 ------- null} + -t 34.21 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 706 -a 0 -x {0.0.3.0 1.1.3.0 355 ------- null} - -t 34.21 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 706 -a 0 -x {0.0.3.0 1.1.3.0 355 ------- null} h -t 34.21 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 706 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.2116 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {0.0.3.0 1.1.3.0 356 ------- null} + -t 34.2116 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {0.0.3.0 1.1.3.0 356 ------- null} - -t 34.2116 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {0.0.3.0 1.1.3.0 356 ------- null} h -t 34.2116 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.2132 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 708 -a 0 -x {0.0.3.0 1.1.3.0 357 ------- null} + -t 34.2132 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 708 -a 0 -x {0.0.3.0 1.1.3.0 357 ------- null} - -t 34.2132 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 708 -a 0 -x {0.0.3.0 1.1.3.0 357 ------- null} h -t 34.2132 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 708 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.2148 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {0.0.3.0 1.1.3.0 358 ------- null} + -t 34.2148 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {0.0.3.0 1.1.3.0 358 ------- null} - -t 34.2148 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {0.0.3.0 1.1.3.0 358 ------- null} h -t 34.2148 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.2164 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 710 -a 0 -x {0.0.3.0 1.1.3.0 359 ------- null} + -t 34.2164 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 710 -a 0 -x {0.0.3.0 1.1.3.0 359 ------- null} - -t 34.2164 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 710 -a 0 -x {0.0.3.0 1.1.3.0 359 ------- null} h -t 34.2164 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 710 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.218 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {0.0.3.0 1.1.3.0 360 ------- null} + -t 34.218 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {0.0.3.0 1.1.3.0 360 ------- null} - -t 34.218 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {0.0.3.0 1.1.3.0 360 ------- null} h -t 34.218 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.2196 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 712 -a 0 -x {0.0.3.0 1.1.3.0 361 ------- null} + -t 34.2196 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 712 -a 0 -x {0.0.3.0 1.1.3.0 361 ------- null} - -t 34.2196 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 712 -a 0 -x {0.0.3.0 1.1.3.0 361 ------- null} h -t 34.2196 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 712 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.2212 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {0.0.3.0 1.1.3.0 362 ------- null} + -t 34.2212 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {0.0.3.0 1.1.3.0 362 ------- null} - -t 34.2212 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {0.0.3.0 1.1.3.0 362 ------- null} h -t 34.2212 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.2228 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 714 -a 0 -x {0.0.3.0 1.1.3.0 363 ------- null} + -t 34.2228 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 714 -a 0 -x {0.0.3.0 1.1.3.0 363 ------- null} - -t 34.2228 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 714 -a 0 -x {0.0.3.0 1.1.3.0 363 ------- null} h -t 34.2228 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 714 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.2244 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {0.0.3.0 1.1.3.0 364 ------- null} + -t 34.2244 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {0.0.3.0 1.1.3.0 364 ------- null} - -t 34.2244 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {0.0.3.0 1.1.3.0 364 ------- null} h -t 34.2244 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.226 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 716 -a 0 -x {0.0.3.0 1.1.3.0 365 ------- null} + -t 34.226 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 716 -a 0 -x {0.0.3.0 1.1.3.0 365 ------- null} - -t 34.226 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 716 -a 0 -x {0.0.3.0 1.1.3.0 365 ------- null} h -t 34.226 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 716 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.2276 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {0.0.3.0 1.1.3.0 366 ------- null} + -t 34.2276 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {0.0.3.0 1.1.3.0 366 ------- null} - -t 34.2276 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {0.0.3.0 1.1.3.0 366 ------- null} h -t 34.2276 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.2292 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 718 -a 0 -x {0.0.3.0 1.1.3.0 367 ------- null} + -t 34.2292 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 718 -a 0 -x {0.0.3.0 1.1.3.0 367 ------- null} - -t 34.2292 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 718 -a 0 -x {0.0.3.0 1.1.3.0 367 ------- null} h -t 34.2292 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 718 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.2308 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {0.0.3.0 1.1.3.0 368 ------- null} + -t 34.2308 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {0.0.3.0 1.1.3.0 368 ------- null} - -t 34.2308 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {0.0.3.0 1.1.3.0 368 ------- null} h -t 34.2308 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.2324 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 720 -a 0 -x {0.0.3.0 1.1.3.0 369 ------- null} + -t 34.2324 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 720 -a 0 -x {0.0.3.0 1.1.3.0 369 ------- null} - -t 34.2324 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 720 -a 0 -x {0.0.3.0 1.1.3.0 369 ------- null} h -t 34.2324 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 720 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.234 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {0.0.3.0 1.1.3.0 370 ------- null} + -t 34.234 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {0.0.3.0 1.1.3.0 370 ------- null} - -t 34.234 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {0.0.3.0 1.1.3.0 370 ------- null} h -t 34.234 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 34.2652 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 702 -a 0 -x {0.0.3.0 1.1.3.0 351 ------- null} + -t 34.2652 -s 21 -d 28 -p ack -e 40 -c 0 -i 722 -a 1 -x {1.1.3.0 0.0.3.0 351 ------- null} - -t 34.2652 -s 21 -d 28 -p ack -e 40 -c 0 -i 722 -a 1 -x {1.1.3.0 0.0.3.0 351 ------- null} h -t 34.2652 -s 21 -d 28 -p ack -e 40 -c 0 -i 722 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.2668 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {0.0.3.0 1.1.3.0 352 ------- null} + -t 34.2668 -s 21 -d 28 -p ack -e 40 -c 0 -i 723 -a 1 -x {1.1.3.0 0.0.3.0 352 ------- null} - -t 34.2668 -s 21 -d 28 -p ack -e 40 -c 0 -i 723 -a 1 -x {1.1.3.0 0.0.3.0 352 ------- null} h -t 34.2668 -s 21 -d 28 -p ack -e 40 -c 0 -i 723 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.2684 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 704 -a 0 -x {0.0.3.0 1.1.3.0 353 ------- null} + -t 34.2684 -s 21 -d 28 -p ack -e 40 -c 0 -i 724 -a 1 -x {1.1.3.0 0.0.3.0 353 ------- null} - -t 34.2684 -s 21 -d 28 -p ack -e 40 -c 0 -i 724 -a 1 -x {1.1.3.0 0.0.3.0 353 ------- null} h -t 34.2684 -s 21 -d 28 -p ack -e 40 -c 0 -i 724 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.27 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {0.0.3.0 1.1.3.0 354 ------- null} + -t 34.27 -s 21 -d 28 -p ack -e 40 -c 0 -i 725 -a 1 -x {1.1.3.0 0.0.3.0 354 ------- null} - -t 34.27 -s 21 -d 28 -p ack -e 40 -c 0 -i 725 -a 1 -x {1.1.3.0 0.0.3.0 354 ------- null} h -t 34.27 -s 21 -d 28 -p ack -e 40 -c 0 -i 725 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.2716 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 706 -a 0 -x {0.0.3.0 1.1.3.0 355 ------- null} + -t 34.2716 -s 21 -d 28 -p ack -e 40 -c 0 -i 726 -a 1 -x {1.1.3.0 0.0.3.0 355 ------- null} - -t 34.2716 -s 21 -d 28 -p ack -e 40 -c 0 -i 726 -a 1 -x {1.1.3.0 0.0.3.0 355 ------- null} h -t 34.2716 -s 21 -d 28 -p ack -e 40 -c 0 -i 726 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.2732 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {0.0.3.0 1.1.3.0 356 ------- null} + -t 34.2732 -s 21 -d 28 -p ack -e 40 -c 0 -i 727 -a 1 -x {1.1.3.0 0.0.3.0 356 ------- null} - -t 34.2732 -s 21 -d 28 -p ack -e 40 -c 0 -i 727 -a 1 -x {1.1.3.0 0.0.3.0 356 ------- null} h -t 34.2732 -s 21 -d 28 -p ack -e 40 -c 0 -i 727 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.2748 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 708 -a 0 -x {0.0.3.0 1.1.3.0 357 ------- null} + -t 34.2748 -s 21 -d 28 -p ack -e 40 -c 0 -i 728 -a 1 -x {1.1.3.0 0.0.3.0 357 ------- null} - -t 34.2748 -s 21 -d 28 -p ack -e 40 -c 0 -i 728 -a 1 -x {1.1.3.0 0.0.3.0 357 ------- null} h -t 34.2748 -s 21 -d 28 -p ack -e 40 -c 0 -i 728 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.2764 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {0.0.3.0 1.1.3.0 358 ------- null} + -t 34.2764 -s 21 -d 28 -p ack -e 40 -c 0 -i 729 -a 1 -x {1.1.3.0 0.0.3.0 358 ------- null} - -t 34.2764 -s 21 -d 28 -p ack -e 40 -c 0 -i 729 -a 1 -x {1.1.3.0 0.0.3.0 358 ------- null} h -t 34.2764 -s 21 -d 28 -p ack -e 40 -c 0 -i 729 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.278 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 710 -a 0 -x {0.0.3.0 1.1.3.0 359 ------- null} + -t 34.278 -s 21 -d 28 -p ack -e 40 -c 0 -i 730 -a 1 -x {1.1.3.0 0.0.3.0 359 ------- null} - -t 34.278 -s 21 -d 28 -p ack -e 40 -c 0 -i 730 -a 1 -x {1.1.3.0 0.0.3.0 359 ------- null} h -t 34.278 -s 21 -d 28 -p ack -e 40 -c 0 -i 730 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.2796 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {0.0.3.0 1.1.3.0 360 ------- null} + -t 34.2796 -s 21 -d 28 -p ack -e 40 -c 0 -i 731 -a 1 -x {1.1.3.0 0.0.3.0 360 ------- null} - -t 34.2796 -s 21 -d 28 -p ack -e 40 -c 0 -i 731 -a 1 -x {1.1.3.0 0.0.3.0 360 ------- null} h -t 34.2796 -s 21 -d 28 -p ack -e 40 -c 0 -i 731 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.2812 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 712 -a 0 -x {0.0.3.0 1.1.3.0 361 ------- null} + -t 34.2812 -s 21 -d 28 -p ack -e 40 -c 0 -i 732 -a 1 -x {1.1.3.0 0.0.3.0 361 ------- null} - -t 34.2812 -s 21 -d 28 -p ack -e 40 -c 0 -i 732 -a 1 -x {1.1.3.0 0.0.3.0 361 ------- null} h -t 34.2812 -s 21 -d 28 -p ack -e 40 -c 0 -i 732 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.2828 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {0.0.3.0 1.1.3.0 362 ------- null} + -t 34.2828 -s 21 -d 28 -p ack -e 40 -c 0 -i 733 -a 1 -x {1.1.3.0 0.0.3.0 362 ------- null} - -t 34.2828 -s 21 -d 28 -p ack -e 40 -c 0 -i 733 -a 1 -x {1.1.3.0 0.0.3.0 362 ------- null} h -t 34.2828 -s 21 -d 28 -p ack -e 40 -c 0 -i 733 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.2844 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 714 -a 0 -x {0.0.3.0 1.1.3.0 363 ------- null} + -t 34.2844 -s 21 -d 28 -p ack -e 40 -c 0 -i 734 -a 1 -x {1.1.3.0 0.0.3.0 363 ------- null} - -t 34.2844 -s 21 -d 28 -p ack -e 40 -c 0 -i 734 -a 1 -x {1.1.3.0 0.0.3.0 363 ------- null} h -t 34.2844 -s 21 -d 28 -p ack -e 40 -c 0 -i 734 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.286 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {0.0.3.0 1.1.3.0 364 ------- null} + -t 34.286 -s 21 -d 28 -p ack -e 40 -c 0 -i 735 -a 1 -x {1.1.3.0 0.0.3.0 364 ------- null} - -t 34.286 -s 21 -d 28 -p ack -e 40 -c 0 -i 735 -a 1 -x {1.1.3.0 0.0.3.0 364 ------- null} h -t 34.286 -s 21 -d 28 -p ack -e 40 -c 0 -i 735 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.2876 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 716 -a 0 -x {0.0.3.0 1.1.3.0 365 ------- null} + -t 34.2876 -s 21 -d 28 -p ack -e 40 -c 0 -i 736 -a 1 -x {1.1.3.0 0.0.3.0 365 ------- null} - -t 34.2876 -s 21 -d 28 -p ack -e 40 -c 0 -i 736 -a 1 -x {1.1.3.0 0.0.3.0 365 ------- null} h -t 34.2876 -s 21 -d 28 -p ack -e 40 -c 0 -i 736 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.2892 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {0.0.3.0 1.1.3.0 366 ------- null} + -t 34.2892 -s 21 -d 28 -p ack -e 40 -c 0 -i 737 -a 1 -x {1.1.3.0 0.0.3.0 366 ------- null} - -t 34.2892 -s 21 -d 28 -p ack -e 40 -c 0 -i 737 -a 1 -x {1.1.3.0 0.0.3.0 366 ------- null} h -t 34.2892 -s 21 -d 28 -p ack -e 40 -c 0 -i 737 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.2908 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 718 -a 0 -x {0.0.3.0 1.1.3.0 367 ------- null} + -t 34.2908 -s 21 -d 28 -p ack -e 40 -c 0 -i 738 -a 1 -x {1.1.3.0 0.0.3.0 367 ------- null} - -t 34.2908 -s 21 -d 28 -p ack -e 40 -c 0 -i 738 -a 1 -x {1.1.3.0 0.0.3.0 367 ------- null} h -t 34.2908 -s 21 -d 28 -p ack -e 40 -c 0 -i 738 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.2924 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {0.0.3.0 1.1.3.0 368 ------- null} + -t 34.2924 -s 21 -d 28 -p ack -e 40 -c 0 -i 739 -a 1 -x {1.1.3.0 0.0.3.0 368 ------- null} - -t 34.2924 -s 21 -d 28 -p ack -e 40 -c 0 -i 739 -a 1 -x {1.1.3.0 0.0.3.0 368 ------- null} h -t 34.2924 -s 21 -d 28 -p ack -e 40 -c 0 -i 739 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.294 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 720 -a 0 -x {0.0.3.0 1.1.3.0 369 ------- null} + -t 34.294 -s 21 -d 28 -p ack -e 40 -c 0 -i 740 -a 1 -x {1.1.3.0 0.0.3.0 369 ------- null} - -t 34.294 -s 21 -d 28 -p ack -e 40 -c 0 -i 740 -a 1 -x {1.1.3.0 0.0.3.0 369 ------- null} h -t 34.294 -s 21 -d 28 -p ack -e 40 -c 0 -i 740 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.2956 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {0.0.3.0 1.1.3.0 370 ------- null} + -t 34.2956 -s 21 -d 28 -p ack -e 40 -c 0 -i 741 -a 1 -x {1.1.3.0 0.0.3.0 370 ------- null} - -t 34.2956 -s 21 -d 28 -p ack -e 40 -c 0 -i 741 -a 1 -x {1.1.3.0 0.0.3.0 370 ------- null} h -t 34.2956 -s 21 -d 28 -p ack -e 40 -c 0 -i 741 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.6153 -s 21 -d 28 -p ack -e 40 -c 0 -i 722 -a 1 -x {1.1.3.0 0.0.3.0 351 ------- null} + -t 34.6153 -s 28 -d 1 -p ack -e 40 -c 0 -i 722 -a 1 -x {1.1.3.0 0.0.3.0 351 ------- null} - -t 34.6153 -s 28 -d 1 -p ack -e 40 -c 0 -i 722 -a 1 -x {1.1.3.0 0.0.3.0 351 ------- null} h -t 34.6153 -s 28 -d 1 -p ack -e 40 -c 0 -i 722 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.6169 -s 21 -d 28 -p ack -e 40 -c 0 -i 723 -a 1 -x {1.1.3.0 0.0.3.0 352 ------- null} + -t 34.6169 -s 28 -d 1 -p ack -e 40 -c 0 -i 723 -a 1 -x {1.1.3.0 0.0.3.0 352 ------- null} - -t 34.6169 -s 28 -d 1 -p ack -e 40 -c 0 -i 723 -a 1 -x {1.1.3.0 0.0.3.0 352 ------- null} h -t 34.6169 -s 28 -d 1 -p ack -e 40 -c 0 -i 723 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.6185 -s 21 -d 28 -p ack -e 40 -c 0 -i 724 -a 1 -x {1.1.3.0 0.0.3.0 353 ------- null} + -t 34.6185 -s 28 -d 1 -p ack -e 40 -c 0 -i 724 -a 1 -x {1.1.3.0 0.0.3.0 353 ------- null} - -t 34.6185 -s 28 -d 1 -p ack -e 40 -c 0 -i 724 -a 1 -x {1.1.3.0 0.0.3.0 353 ------- null} h -t 34.6185 -s 28 -d 1 -p ack -e 40 -c 0 -i 724 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.6201 -s 21 -d 28 -p ack -e 40 -c 0 -i 725 -a 1 -x {1.1.3.0 0.0.3.0 354 ------- null} + -t 34.6201 -s 28 -d 1 -p ack -e 40 -c 0 -i 725 -a 1 -x {1.1.3.0 0.0.3.0 354 ------- null} - -t 34.6201 -s 28 -d 1 -p ack -e 40 -c 0 -i 725 -a 1 -x {1.1.3.0 0.0.3.0 354 ------- null} h -t 34.6201 -s 28 -d 1 -p ack -e 40 -c 0 -i 725 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.6217 -s 21 -d 28 -p ack -e 40 -c 0 -i 726 -a 1 -x {1.1.3.0 0.0.3.0 355 ------- null} + -t 34.6217 -s 28 -d 1 -p ack -e 40 -c 0 -i 726 -a 1 -x {1.1.3.0 0.0.3.0 355 ------- null} - -t 34.6217 -s 28 -d 1 -p ack -e 40 -c 0 -i 726 -a 1 -x {1.1.3.0 0.0.3.0 355 ------- null} h -t 34.6217 -s 28 -d 1 -p ack -e 40 -c 0 -i 726 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.6233 -s 21 -d 28 -p ack -e 40 -c 0 -i 727 -a 1 -x {1.1.3.0 0.0.3.0 356 ------- null} + -t 34.6233 -s 28 -d 1 -p ack -e 40 -c 0 -i 727 -a 1 -x {1.1.3.0 0.0.3.0 356 ------- null} - -t 34.6233 -s 28 -d 1 -p ack -e 40 -c 0 -i 727 -a 1 -x {1.1.3.0 0.0.3.0 356 ------- null} h -t 34.6233 -s 28 -d 1 -p ack -e 40 -c 0 -i 727 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.6249 -s 21 -d 28 -p ack -e 40 -c 0 -i 728 -a 1 -x {1.1.3.0 0.0.3.0 357 ------- null} + -t 34.6249 -s 28 -d 1 -p ack -e 40 -c 0 -i 728 -a 1 -x {1.1.3.0 0.0.3.0 357 ------- null} - -t 34.6249 -s 28 -d 1 -p ack -e 40 -c 0 -i 728 -a 1 -x {1.1.3.0 0.0.3.0 357 ------- null} h -t 34.6249 -s 28 -d 1 -p ack -e 40 -c 0 -i 728 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.6265 -s 21 -d 28 -p ack -e 40 -c 0 -i 729 -a 1 -x {1.1.3.0 0.0.3.0 358 ------- null} + -t 34.6265 -s 28 -d 1 -p ack -e 40 -c 0 -i 729 -a 1 -x {1.1.3.0 0.0.3.0 358 ------- null} - -t 34.6265 -s 28 -d 1 -p ack -e 40 -c 0 -i 729 -a 1 -x {1.1.3.0 0.0.3.0 358 ------- null} h -t 34.6265 -s 28 -d 1 -p ack -e 40 -c 0 -i 729 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.6281 -s 21 -d 28 -p ack -e 40 -c 0 -i 730 -a 1 -x {1.1.3.0 0.0.3.0 359 ------- null} + -t 34.6281 -s 28 -d 1 -p ack -e 40 -c 0 -i 730 -a 1 -x {1.1.3.0 0.0.3.0 359 ------- null} - -t 34.6281 -s 28 -d 1 -p ack -e 40 -c 0 -i 730 -a 1 -x {1.1.3.0 0.0.3.0 359 ------- null} h -t 34.6281 -s 28 -d 1 -p ack -e 40 -c 0 -i 730 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.6297 -s 21 -d 28 -p ack -e 40 -c 0 -i 731 -a 1 -x {1.1.3.0 0.0.3.0 360 ------- null} + -t 34.6297 -s 28 -d 1 -p ack -e 40 -c 0 -i 731 -a 1 -x {1.1.3.0 0.0.3.0 360 ------- null} - -t 34.6297 -s 28 -d 1 -p ack -e 40 -c 0 -i 731 -a 1 -x {1.1.3.0 0.0.3.0 360 ------- null} h -t 34.6297 -s 28 -d 1 -p ack -e 40 -c 0 -i 731 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.6313 -s 21 -d 28 -p ack -e 40 -c 0 -i 732 -a 1 -x {1.1.3.0 0.0.3.0 361 ------- null} + -t 34.6313 -s 28 -d 1 -p ack -e 40 -c 0 -i 732 -a 1 -x {1.1.3.0 0.0.3.0 361 ------- null} - -t 34.6313 -s 28 -d 1 -p ack -e 40 -c 0 -i 732 -a 1 -x {1.1.3.0 0.0.3.0 361 ------- null} h -t 34.6313 -s 28 -d 1 -p ack -e 40 -c 0 -i 732 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.6329 -s 21 -d 28 -p ack -e 40 -c 0 -i 733 -a 1 -x {1.1.3.0 0.0.3.0 362 ------- null} + -t 34.6329 -s 28 -d 1 -p ack -e 40 -c 0 -i 733 -a 1 -x {1.1.3.0 0.0.3.0 362 ------- null} - -t 34.6329 -s 28 -d 1 -p ack -e 40 -c 0 -i 733 -a 1 -x {1.1.3.0 0.0.3.0 362 ------- null} h -t 34.6329 -s 28 -d 1 -p ack -e 40 -c 0 -i 733 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.6345 -s 21 -d 28 -p ack -e 40 -c 0 -i 734 -a 1 -x {1.1.3.0 0.0.3.0 363 ------- null} + -t 34.6345 -s 28 -d 1 -p ack -e 40 -c 0 -i 734 -a 1 -x {1.1.3.0 0.0.3.0 363 ------- null} - -t 34.6345 -s 28 -d 1 -p ack -e 40 -c 0 -i 734 -a 1 -x {1.1.3.0 0.0.3.0 363 ------- null} h -t 34.6345 -s 28 -d 1 -p ack -e 40 -c 0 -i 734 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.6361 -s 21 -d 28 -p ack -e 40 -c 0 -i 735 -a 1 -x {1.1.3.0 0.0.3.0 364 ------- null} + -t 34.6361 -s 28 -d 1 -p ack -e 40 -c 0 -i 735 -a 1 -x {1.1.3.0 0.0.3.0 364 ------- null} - -t 34.6361 -s 28 -d 1 -p ack -e 40 -c 0 -i 735 -a 1 -x {1.1.3.0 0.0.3.0 364 ------- null} h -t 34.6361 -s 28 -d 1 -p ack -e 40 -c 0 -i 735 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.6377 -s 21 -d 28 -p ack -e 40 -c 0 -i 736 -a 1 -x {1.1.3.0 0.0.3.0 365 ------- null} + -t 34.6377 -s 28 -d 1 -p ack -e 40 -c 0 -i 736 -a 1 -x {1.1.3.0 0.0.3.0 365 ------- null} - -t 34.6377 -s 28 -d 1 -p ack -e 40 -c 0 -i 736 -a 1 -x {1.1.3.0 0.0.3.0 365 ------- null} h -t 34.6377 -s 28 -d 1 -p ack -e 40 -c 0 -i 736 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.6393 -s 21 -d 28 -p ack -e 40 -c 0 -i 737 -a 1 -x {1.1.3.0 0.0.3.0 366 ------- null} + -t 34.6393 -s 28 -d 1 -p ack -e 40 -c 0 -i 737 -a 1 -x {1.1.3.0 0.0.3.0 366 ------- null} - -t 34.6393 -s 28 -d 1 -p ack -e 40 -c 0 -i 737 -a 1 -x {1.1.3.0 0.0.3.0 366 ------- null} h -t 34.6393 -s 28 -d 1 -p ack -e 40 -c 0 -i 737 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.6409 -s 21 -d 28 -p ack -e 40 -c 0 -i 738 -a 1 -x {1.1.3.0 0.0.3.0 367 ------- null} + -t 34.6409 -s 28 -d 1 -p ack -e 40 -c 0 -i 738 -a 1 -x {1.1.3.0 0.0.3.0 367 ------- null} - -t 34.6409 -s 28 -d 1 -p ack -e 40 -c 0 -i 738 -a 1 -x {1.1.3.0 0.0.3.0 367 ------- null} h -t 34.6409 -s 28 -d 1 -p ack -e 40 -c 0 -i 738 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.6425 -s 21 -d 28 -p ack -e 40 -c 0 -i 739 -a 1 -x {1.1.3.0 0.0.3.0 368 ------- null} + -t 34.6425 -s 28 -d 1 -p ack -e 40 -c 0 -i 739 -a 1 -x {1.1.3.0 0.0.3.0 368 ------- null} - -t 34.6425 -s 28 -d 1 -p ack -e 40 -c 0 -i 739 -a 1 -x {1.1.3.0 0.0.3.0 368 ------- null} h -t 34.6425 -s 28 -d 1 -p ack -e 40 -c 0 -i 739 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.6441 -s 21 -d 28 -p ack -e 40 -c 0 -i 740 -a 1 -x {1.1.3.0 0.0.3.0 369 ------- null} + -t 34.6441 -s 28 -d 1 -p ack -e 40 -c 0 -i 740 -a 1 -x {1.1.3.0 0.0.3.0 369 ------- null} - -t 34.6441 -s 28 -d 1 -p ack -e 40 -c 0 -i 740 -a 1 -x {1.1.3.0 0.0.3.0 369 ------- null} h -t 34.6441 -s 28 -d 1 -p ack -e 40 -c 0 -i 740 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.6457 -s 21 -d 28 -p ack -e 40 -c 0 -i 741 -a 1 -x {1.1.3.0 0.0.3.0 370 ------- null} + -t 34.6457 -s 28 -d 1 -p ack -e 40 -c 0 -i 741 -a 1 -x {1.1.3.0 0.0.3.0 370 ------- null} - -t 34.6457 -s 28 -d 1 -p ack -e 40 -c 0 -i 741 -a 1 -x {1.1.3.0 0.0.3.0 370 ------- null} h -t 34.6457 -s 28 -d 1 -p ack -e 40 -c 0 -i 741 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.9154 -s 28 -d 1 -p ack -e 40 -c 0 -i 722 -a 1 -x {1.1.3.0 0.0.3.0 351 ------- null} + -t 34.9154 -s 1 -d 3 -p ack -e 40 -c 0 -i 722 -a 1 -x {1.1.3.0 0.0.3.0 351 ------- null} - -t 34.9154 -s 1 -d 3 -p ack -e 40 -c 0 -i 722 -a 1 -x {1.1.3.0 0.0.3.0 351 ------- null} h -t 34.9154 -s 1 -d 3 -p ack -e 40 -c 0 -i 722 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.917 -s 28 -d 1 -p ack -e 40 -c 0 -i 723 -a 1 -x {1.1.3.0 0.0.3.0 352 ------- null} + -t 34.917 -s 1 -d 3 -p ack -e 40 -c 0 -i 723 -a 1 -x {1.1.3.0 0.0.3.0 352 ------- null} - -t 34.917 -s 1 -d 3 -p ack -e 40 -c 0 -i 723 -a 1 -x {1.1.3.0 0.0.3.0 352 ------- null} h -t 34.917 -s 1 -d 3 -p ack -e 40 -c 0 -i 723 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.9186 -s 28 -d 1 -p ack -e 40 -c 0 -i 724 -a 1 -x {1.1.3.0 0.0.3.0 353 ------- null} + -t 34.9186 -s 1 -d 3 -p ack -e 40 -c 0 -i 724 -a 1 -x {1.1.3.0 0.0.3.0 353 ------- null} - -t 34.9186 -s 1 -d 3 -p ack -e 40 -c 0 -i 724 -a 1 -x {1.1.3.0 0.0.3.0 353 ------- null} h -t 34.9186 -s 1 -d 3 -p ack -e 40 -c 0 -i 724 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.9202 -s 28 -d 1 -p ack -e 40 -c 0 -i 725 -a 1 -x {1.1.3.0 0.0.3.0 354 ------- null} + -t 34.9202 -s 1 -d 3 -p ack -e 40 -c 0 -i 725 -a 1 -x {1.1.3.0 0.0.3.0 354 ------- null} - -t 34.9202 -s 1 -d 3 -p ack -e 40 -c 0 -i 725 -a 1 -x {1.1.3.0 0.0.3.0 354 ------- null} h -t 34.9202 -s 1 -d 3 -p ack -e 40 -c 0 -i 725 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.9218 -s 28 -d 1 -p ack -e 40 -c 0 -i 726 -a 1 -x {1.1.3.0 0.0.3.0 355 ------- null} + -t 34.9218 -s 1 -d 3 -p ack -e 40 -c 0 -i 726 -a 1 -x {1.1.3.0 0.0.3.0 355 ------- null} - -t 34.9218 -s 1 -d 3 -p ack -e 40 -c 0 -i 726 -a 1 -x {1.1.3.0 0.0.3.0 355 ------- null} h -t 34.9218 -s 1 -d 3 -p ack -e 40 -c 0 -i 726 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.9234 -s 28 -d 1 -p ack -e 40 -c 0 -i 727 -a 1 -x {1.1.3.0 0.0.3.0 356 ------- null} + -t 34.9234 -s 1 -d 3 -p ack -e 40 -c 0 -i 727 -a 1 -x {1.1.3.0 0.0.3.0 356 ------- null} - -t 34.9234 -s 1 -d 3 -p ack -e 40 -c 0 -i 727 -a 1 -x {1.1.3.0 0.0.3.0 356 ------- null} h -t 34.9234 -s 1 -d 3 -p ack -e 40 -c 0 -i 727 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.925 -s 28 -d 1 -p ack -e 40 -c 0 -i 728 -a 1 -x {1.1.3.0 0.0.3.0 357 ------- null} + -t 34.925 -s 1 -d 3 -p ack -e 40 -c 0 -i 728 -a 1 -x {1.1.3.0 0.0.3.0 357 ------- null} - -t 34.925 -s 1 -d 3 -p ack -e 40 -c 0 -i 728 -a 1 -x {1.1.3.0 0.0.3.0 357 ------- null} h -t 34.925 -s 1 -d 3 -p ack -e 40 -c 0 -i 728 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.9266 -s 28 -d 1 -p ack -e 40 -c 0 -i 729 -a 1 -x {1.1.3.0 0.0.3.0 358 ------- null} + -t 34.9266 -s 1 -d 3 -p ack -e 40 -c 0 -i 729 -a 1 -x {1.1.3.0 0.0.3.0 358 ------- null} - -t 34.9266 -s 1 -d 3 -p ack -e 40 -c 0 -i 729 -a 1 -x {1.1.3.0 0.0.3.0 358 ------- null} h -t 34.9266 -s 1 -d 3 -p ack -e 40 -c 0 -i 729 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.9282 -s 28 -d 1 -p ack -e 40 -c 0 -i 730 -a 1 -x {1.1.3.0 0.0.3.0 359 ------- null} + -t 34.9282 -s 1 -d 3 -p ack -e 40 -c 0 -i 730 -a 1 -x {1.1.3.0 0.0.3.0 359 ------- null} - -t 34.9282 -s 1 -d 3 -p ack -e 40 -c 0 -i 730 -a 1 -x {1.1.3.0 0.0.3.0 359 ------- null} h -t 34.9282 -s 1 -d 3 -p ack -e 40 -c 0 -i 730 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.9298 -s 28 -d 1 -p ack -e 40 -c 0 -i 731 -a 1 -x {1.1.3.0 0.0.3.0 360 ------- null} + -t 34.9298 -s 1 -d 3 -p ack -e 40 -c 0 -i 731 -a 1 -x {1.1.3.0 0.0.3.0 360 ------- null} - -t 34.9298 -s 1 -d 3 -p ack -e 40 -c 0 -i 731 -a 1 -x {1.1.3.0 0.0.3.0 360 ------- null} h -t 34.9298 -s 1 -d 3 -p ack -e 40 -c 0 -i 731 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.9314 -s 28 -d 1 -p ack -e 40 -c 0 -i 732 -a 1 -x {1.1.3.0 0.0.3.0 361 ------- null} + -t 34.9314 -s 1 -d 3 -p ack -e 40 -c 0 -i 732 -a 1 -x {1.1.3.0 0.0.3.0 361 ------- null} - -t 34.9314 -s 1 -d 3 -p ack -e 40 -c 0 -i 732 -a 1 -x {1.1.3.0 0.0.3.0 361 ------- null} h -t 34.9314 -s 1 -d 3 -p ack -e 40 -c 0 -i 732 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.933 -s 28 -d 1 -p ack -e 40 -c 0 -i 733 -a 1 -x {1.1.3.0 0.0.3.0 362 ------- null} + -t 34.933 -s 1 -d 3 -p ack -e 40 -c 0 -i 733 -a 1 -x {1.1.3.0 0.0.3.0 362 ------- null} - -t 34.933 -s 1 -d 3 -p ack -e 40 -c 0 -i 733 -a 1 -x {1.1.3.0 0.0.3.0 362 ------- null} h -t 34.933 -s 1 -d 3 -p ack -e 40 -c 0 -i 733 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.9346 -s 28 -d 1 -p ack -e 40 -c 0 -i 734 -a 1 -x {1.1.3.0 0.0.3.0 363 ------- null} + -t 34.9346 -s 1 -d 3 -p ack -e 40 -c 0 -i 734 -a 1 -x {1.1.3.0 0.0.3.0 363 ------- null} - -t 34.9346 -s 1 -d 3 -p ack -e 40 -c 0 -i 734 -a 1 -x {1.1.3.0 0.0.3.0 363 ------- null} h -t 34.9346 -s 1 -d 3 -p ack -e 40 -c 0 -i 734 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.9362 -s 28 -d 1 -p ack -e 40 -c 0 -i 735 -a 1 -x {1.1.3.0 0.0.3.0 364 ------- null} + -t 34.9362 -s 1 -d 3 -p ack -e 40 -c 0 -i 735 -a 1 -x {1.1.3.0 0.0.3.0 364 ------- null} - -t 34.9362 -s 1 -d 3 -p ack -e 40 -c 0 -i 735 -a 1 -x {1.1.3.0 0.0.3.0 364 ------- null} h -t 34.9362 -s 1 -d 3 -p ack -e 40 -c 0 -i 735 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.9378 -s 28 -d 1 -p ack -e 40 -c 0 -i 736 -a 1 -x {1.1.3.0 0.0.3.0 365 ------- null} + -t 34.9378 -s 1 -d 3 -p ack -e 40 -c 0 -i 736 -a 1 -x {1.1.3.0 0.0.3.0 365 ------- null} - -t 34.9378 -s 1 -d 3 -p ack -e 40 -c 0 -i 736 -a 1 -x {1.1.3.0 0.0.3.0 365 ------- null} h -t 34.9378 -s 1 -d 3 -p ack -e 40 -c 0 -i 736 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.9394 -s 28 -d 1 -p ack -e 40 -c 0 -i 737 -a 1 -x {1.1.3.0 0.0.3.0 366 ------- null} + -t 34.9394 -s 1 -d 3 -p ack -e 40 -c 0 -i 737 -a 1 -x {1.1.3.0 0.0.3.0 366 ------- null} - -t 34.9394 -s 1 -d 3 -p ack -e 40 -c 0 -i 737 -a 1 -x {1.1.3.0 0.0.3.0 366 ------- null} h -t 34.9394 -s 1 -d 3 -p ack -e 40 -c 0 -i 737 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.941 -s 28 -d 1 -p ack -e 40 -c 0 -i 738 -a 1 -x {1.1.3.0 0.0.3.0 367 ------- null} + -t 34.941 -s 1 -d 3 -p ack -e 40 -c 0 -i 738 -a 1 -x {1.1.3.0 0.0.3.0 367 ------- null} - -t 34.941 -s 1 -d 3 -p ack -e 40 -c 0 -i 738 -a 1 -x {1.1.3.0 0.0.3.0 367 ------- null} h -t 34.941 -s 1 -d 3 -p ack -e 40 -c 0 -i 738 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.9426 -s 28 -d 1 -p ack -e 40 -c 0 -i 739 -a 1 -x {1.1.3.0 0.0.3.0 368 ------- null} + -t 34.9426 -s 1 -d 3 -p ack -e 40 -c 0 -i 739 -a 1 -x {1.1.3.0 0.0.3.0 368 ------- null} - -t 34.9426 -s 1 -d 3 -p ack -e 40 -c 0 -i 739 -a 1 -x {1.1.3.0 0.0.3.0 368 ------- null} h -t 34.9426 -s 1 -d 3 -p ack -e 40 -c 0 -i 739 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.9442 -s 28 -d 1 -p ack -e 40 -c 0 -i 740 -a 1 -x {1.1.3.0 0.0.3.0 369 ------- null} + -t 34.9442 -s 1 -d 3 -p ack -e 40 -c 0 -i 740 -a 1 -x {1.1.3.0 0.0.3.0 369 ------- null} - -t 34.9442 -s 1 -d 3 -p ack -e 40 -c 0 -i 740 -a 1 -x {1.1.3.0 0.0.3.0 369 ------- null} h -t 34.9442 -s 1 -d 3 -p ack -e 40 -c 0 -i 740 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 34.9458 -s 28 -d 1 -p ack -e 40 -c 0 -i 741 -a 1 -x {1.1.3.0 0.0.3.0 370 ------- null} + -t 34.9458 -s 1 -d 3 -p ack -e 40 -c 0 -i 741 -a 1 -x {1.1.3.0 0.0.3.0 370 ------- null} - -t 34.9458 -s 1 -d 3 -p ack -e 40 -c 0 -i 741 -a 1 -x {1.1.3.0 0.0.3.0 370 ------- null} h -t 34.9458 -s 1 -d 3 -p ack -e 40 -c 0 -i 741 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 35.0554 -s 1 -d 3 -p ack -e 40 -c 0 -i 722 -a 1 -x {1.1.3.0 0.0.3.0 351 ------- null} + -t 35.0554 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 742 -a 0 -x {0.0.3.0 1.1.3.0 371 ------- null} - -t 35.0554 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 742 -a 0 -x {0.0.3.0 1.1.3.0 371 ------- null} h -t 35.0554 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 742 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.057 -s 1 -d 3 -p ack -e 40 -c 0 -i 723 -a 1 -x {1.1.3.0 0.0.3.0 352 ------- null} + -t 35.057 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {0.0.3.0 1.1.3.0 372 ------- null} - -t 35.057 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {0.0.3.0 1.1.3.0 372 ------- null} h -t 35.057 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.0586 -s 1 -d 3 -p ack -e 40 -c 0 -i 724 -a 1 -x {1.1.3.0 0.0.3.0 353 ------- null} + -t 35.0586 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 744 -a 0 -x {0.0.3.0 1.1.3.0 373 ------- null} - -t 35.0586 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 744 -a 0 -x {0.0.3.0 1.1.3.0 373 ------- null} h -t 35.0586 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 744 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.0602 -s 1 -d 3 -p ack -e 40 -c 0 -i 725 -a 1 -x {1.1.3.0 0.0.3.0 354 ------- null} + -t 35.0602 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {0.0.3.0 1.1.3.0 374 ------- null} - -t 35.0602 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {0.0.3.0 1.1.3.0 374 ------- null} h -t 35.0602 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.0618 -s 1 -d 3 -p ack -e 40 -c 0 -i 726 -a 1 -x {1.1.3.0 0.0.3.0 355 ------- null} + -t 35.0618 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 746 -a 0 -x {0.0.3.0 1.1.3.0 375 ------- null} - -t 35.0618 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 746 -a 0 -x {0.0.3.0 1.1.3.0 375 ------- null} h -t 35.0618 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 746 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.0634 -s 1 -d 3 -p ack -e 40 -c 0 -i 727 -a 1 -x {1.1.3.0 0.0.3.0 356 ------- null} + -t 35.0634 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {0.0.3.0 1.1.3.0 376 ------- null} - -t 35.0634 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {0.0.3.0 1.1.3.0 376 ------- null} h -t 35.0634 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.065 -s 1 -d 3 -p ack -e 40 -c 0 -i 728 -a 1 -x {1.1.3.0 0.0.3.0 357 ------- null} + -t 35.065 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 748 -a 0 -x {0.0.3.0 1.1.3.0 377 ------- null} - -t 35.065 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 748 -a 0 -x {0.0.3.0 1.1.3.0 377 ------- null} h -t 35.065 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 748 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.0666 -s 1 -d 3 -p ack -e 40 -c 0 -i 729 -a 1 -x {1.1.3.0 0.0.3.0 358 ------- null} + -t 35.0666 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {0.0.3.0 1.1.3.0 378 ------- null} - -t 35.0666 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {0.0.3.0 1.1.3.0 378 ------- null} h -t 35.0666 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.0682 -s 1 -d 3 -p ack -e 40 -c 0 -i 730 -a 1 -x {1.1.3.0 0.0.3.0 359 ------- null} + -t 35.0682 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 750 -a 0 -x {0.0.3.0 1.1.3.0 379 ------- null} - -t 35.0682 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 750 -a 0 -x {0.0.3.0 1.1.3.0 379 ------- null} h -t 35.0682 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 750 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.0698 -s 1 -d 3 -p ack -e 40 -c 0 -i 731 -a 1 -x {1.1.3.0 0.0.3.0 360 ------- null} + -t 35.0698 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {0.0.3.0 1.1.3.0 380 ------- null} - -t 35.0698 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {0.0.3.0 1.1.3.0 380 ------- null} h -t 35.0698 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.0714 -s 1 -d 3 -p ack -e 40 -c 0 -i 732 -a 1 -x {1.1.3.0 0.0.3.0 361 ------- null} + -t 35.0714 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 752 -a 0 -x {0.0.3.0 1.1.3.0 381 ------- null} - -t 35.0714 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 752 -a 0 -x {0.0.3.0 1.1.3.0 381 ------- null} h -t 35.0714 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 752 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.073 -s 1 -d 3 -p ack -e 40 -c 0 -i 733 -a 1 -x {1.1.3.0 0.0.3.0 362 ------- null} + -t 35.073 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {0.0.3.0 1.1.3.0 382 ------- null} - -t 35.073 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {0.0.3.0 1.1.3.0 382 ------- null} h -t 35.073 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.0746 -s 1 -d 3 -p ack -e 40 -c 0 -i 734 -a 1 -x {1.1.3.0 0.0.3.0 363 ------- null} + -t 35.0746 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 754 -a 0 -x {0.0.3.0 1.1.3.0 383 ------- null} - -t 35.0746 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 754 -a 0 -x {0.0.3.0 1.1.3.0 383 ------- null} h -t 35.0746 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 754 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.0762 -s 1 -d 3 -p ack -e 40 -c 0 -i 735 -a 1 -x {1.1.3.0 0.0.3.0 364 ------- null} + -t 35.0762 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {0.0.3.0 1.1.3.0 384 ------- null} - -t 35.0762 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {0.0.3.0 1.1.3.0 384 ------- null} h -t 35.0762 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.0778 -s 1 -d 3 -p ack -e 40 -c 0 -i 736 -a 1 -x {1.1.3.0 0.0.3.0 365 ------- null} + -t 35.0778 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 756 -a 0 -x {0.0.3.0 1.1.3.0 385 ------- null} - -t 35.0778 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 756 -a 0 -x {0.0.3.0 1.1.3.0 385 ------- null} h -t 35.0778 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 756 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.0794 -s 1 -d 3 -p ack -e 40 -c 0 -i 737 -a 1 -x {1.1.3.0 0.0.3.0 366 ------- null} + -t 35.0794 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {0.0.3.0 1.1.3.0 386 ------- null} - -t 35.0794 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {0.0.3.0 1.1.3.0 386 ------- null} h -t 35.0794 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.081 -s 1 -d 3 -p ack -e 40 -c 0 -i 738 -a 1 -x {1.1.3.0 0.0.3.0 367 ------- null} + -t 35.081 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 758 -a 0 -x {0.0.3.0 1.1.3.0 387 ------- null} - -t 35.081 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 758 -a 0 -x {0.0.3.0 1.1.3.0 387 ------- null} h -t 35.081 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 758 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.0826 -s 1 -d 3 -p ack -e 40 -c 0 -i 739 -a 1 -x {1.1.3.0 0.0.3.0 368 ------- null} + -t 35.0826 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {0.0.3.0 1.1.3.0 388 ------- null} - -t 35.0826 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {0.0.3.0 1.1.3.0 388 ------- null} h -t 35.0826 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.0842 -s 1 -d 3 -p ack -e 40 -c 0 -i 740 -a 1 -x {1.1.3.0 0.0.3.0 369 ------- null} + -t 35.0842 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 760 -a 0 -x {0.0.3.0 1.1.3.0 389 ------- null} - -t 35.0842 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 760 -a 0 -x {0.0.3.0 1.1.3.0 389 ------- null} h -t 35.0842 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 760 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.0858 -s 1 -d 3 -p ack -e 40 -c 0 -i 741 -a 1 -x {1.1.3.0 0.0.3.0 370 ------- null} + -t 35.0858 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {0.0.3.0 1.1.3.0 390 ------- null} - -t 35.0858 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {0.0.3.0 1.1.3.0 390 ------- null} h -t 35.0858 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.217 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 742 -a 0 -x {0.0.3.0 1.1.3.0 371 ------- null} + -t 35.217 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 742 -a 0 -x {0.0.3.0 1.1.3.0 371 ------- null} - -t 35.217 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 742 -a 0 -x {0.0.3.0 1.1.3.0 371 ------- null} h -t 35.217 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 742 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.2186 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {0.0.3.0 1.1.3.0 372 ------- null} + -t 35.2186 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {0.0.3.0 1.1.3.0 372 ------- null} - -t 35.2186 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {0.0.3.0 1.1.3.0 372 ------- null} h -t 35.2186 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.2202 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 744 -a 0 -x {0.0.3.0 1.1.3.0 373 ------- null} + -t 35.2202 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 744 -a 0 -x {0.0.3.0 1.1.3.0 373 ------- null} - -t 35.2202 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 744 -a 0 -x {0.0.3.0 1.1.3.0 373 ------- null} h -t 35.2202 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 744 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.2218 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {0.0.3.0 1.1.3.0 374 ------- null} + -t 35.2218 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {0.0.3.0 1.1.3.0 374 ------- null} - -t 35.2218 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {0.0.3.0 1.1.3.0 374 ------- null} h -t 35.2218 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.2234 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 746 -a 0 -x {0.0.3.0 1.1.3.0 375 ------- null} + -t 35.2234 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 746 -a 0 -x {0.0.3.0 1.1.3.0 375 ------- null} - -t 35.2234 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 746 -a 0 -x {0.0.3.0 1.1.3.0 375 ------- null} h -t 35.2234 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 746 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.225 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {0.0.3.0 1.1.3.0 376 ------- null} + -t 35.225 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {0.0.3.0 1.1.3.0 376 ------- null} - -t 35.225 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {0.0.3.0 1.1.3.0 376 ------- null} h -t 35.225 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.2266 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 748 -a 0 -x {0.0.3.0 1.1.3.0 377 ------- null} + -t 35.2266 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 748 -a 0 -x {0.0.3.0 1.1.3.0 377 ------- null} - -t 35.2266 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 748 -a 0 -x {0.0.3.0 1.1.3.0 377 ------- null} h -t 35.2266 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 748 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.2282 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {0.0.3.0 1.1.3.0 378 ------- null} + -t 35.2282 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {0.0.3.0 1.1.3.0 378 ------- null} - -t 35.2282 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {0.0.3.0 1.1.3.0 378 ------- null} h -t 35.2282 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.2298 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 750 -a 0 -x {0.0.3.0 1.1.3.0 379 ------- null} + -t 35.2298 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 750 -a 0 -x {0.0.3.0 1.1.3.0 379 ------- null} - -t 35.2298 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 750 -a 0 -x {0.0.3.0 1.1.3.0 379 ------- null} h -t 35.2298 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 750 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.2314 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {0.0.3.0 1.1.3.0 380 ------- null} + -t 35.2314 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {0.0.3.0 1.1.3.0 380 ------- null} - -t 35.2314 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {0.0.3.0 1.1.3.0 380 ------- null} h -t 35.2314 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.233 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 752 -a 0 -x {0.0.3.0 1.1.3.0 381 ------- null} + -t 35.233 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 752 -a 0 -x {0.0.3.0 1.1.3.0 381 ------- null} - -t 35.233 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 752 -a 0 -x {0.0.3.0 1.1.3.0 381 ------- null} h -t 35.233 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 752 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.2346 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {0.0.3.0 1.1.3.0 382 ------- null} + -t 35.2346 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {0.0.3.0 1.1.3.0 382 ------- null} - -t 35.2346 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {0.0.3.0 1.1.3.0 382 ------- null} h -t 35.2346 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.2362 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 754 -a 0 -x {0.0.3.0 1.1.3.0 383 ------- null} + -t 35.2362 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 754 -a 0 -x {0.0.3.0 1.1.3.0 383 ------- null} - -t 35.2362 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 754 -a 0 -x {0.0.3.0 1.1.3.0 383 ------- null} h -t 35.2362 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 754 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.2378 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {0.0.3.0 1.1.3.0 384 ------- null} + -t 35.2378 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {0.0.3.0 1.1.3.0 384 ------- null} - -t 35.2378 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {0.0.3.0 1.1.3.0 384 ------- null} h -t 35.2378 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.2394 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 756 -a 0 -x {0.0.3.0 1.1.3.0 385 ------- null} + -t 35.2394 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 756 -a 0 -x {0.0.3.0 1.1.3.0 385 ------- null} - -t 35.2394 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 756 -a 0 -x {0.0.3.0 1.1.3.0 385 ------- null} h -t 35.2394 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 756 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.241 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {0.0.3.0 1.1.3.0 386 ------- null} + -t 35.241 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {0.0.3.0 1.1.3.0 386 ------- null} - -t 35.241 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {0.0.3.0 1.1.3.0 386 ------- null} h -t 35.241 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.2426 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 758 -a 0 -x {0.0.3.0 1.1.3.0 387 ------- null} + -t 35.2426 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 758 -a 0 -x {0.0.3.0 1.1.3.0 387 ------- null} - -t 35.2426 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 758 -a 0 -x {0.0.3.0 1.1.3.0 387 ------- null} h -t 35.2426 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 758 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.2442 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {0.0.3.0 1.1.3.0 388 ------- null} + -t 35.2442 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {0.0.3.0 1.1.3.0 388 ------- null} - -t 35.2442 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {0.0.3.0 1.1.3.0 388 ------- null} h -t 35.2442 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.2458 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 760 -a 0 -x {0.0.3.0 1.1.3.0 389 ------- null} + -t 35.2458 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 760 -a 0 -x {0.0.3.0 1.1.3.0 389 ------- null} - -t 35.2458 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 760 -a 0 -x {0.0.3.0 1.1.3.0 389 ------- null} h -t 35.2458 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 760 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.2474 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {0.0.3.0 1.1.3.0 390 ------- null} + -t 35.2474 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {0.0.3.0 1.1.3.0 390 ------- null} - -t 35.2474 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {0.0.3.0 1.1.3.0 390 ------- null} h -t 35.2474 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.5186 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 742 -a 0 -x {0.0.3.0 1.1.3.0 371 ------- null} + -t 35.5186 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 742 -a 0 -x {0.0.3.0 1.1.3.0 371 ------- null} - -t 35.5186 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 742 -a 0 -x {0.0.3.0 1.1.3.0 371 ------- null} h -t 35.5186 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 742 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.5202 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {0.0.3.0 1.1.3.0 372 ------- null} + -t 35.5202 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {0.0.3.0 1.1.3.0 372 ------- null} - -t 35.5202 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {0.0.3.0 1.1.3.0 372 ------- null} h -t 35.5202 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.5218 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 744 -a 0 -x {0.0.3.0 1.1.3.0 373 ------- null} + -t 35.5218 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 744 -a 0 -x {0.0.3.0 1.1.3.0 373 ------- null} - -t 35.5218 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 744 -a 0 -x {0.0.3.0 1.1.3.0 373 ------- null} h -t 35.5218 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 744 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.5234 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {0.0.3.0 1.1.3.0 374 ------- null} + -t 35.5234 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {0.0.3.0 1.1.3.0 374 ------- null} - -t 35.5234 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {0.0.3.0 1.1.3.0 374 ------- null} h -t 35.5234 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.525 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 746 -a 0 -x {0.0.3.0 1.1.3.0 375 ------- null} + -t 35.525 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 746 -a 0 -x {0.0.3.0 1.1.3.0 375 ------- null} - -t 35.525 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 746 -a 0 -x {0.0.3.0 1.1.3.0 375 ------- null} h -t 35.525 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 746 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.5266 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {0.0.3.0 1.1.3.0 376 ------- null} + -t 35.5266 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {0.0.3.0 1.1.3.0 376 ------- null} - -t 35.5266 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {0.0.3.0 1.1.3.0 376 ------- null} h -t 35.5266 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.5282 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 748 -a 0 -x {0.0.3.0 1.1.3.0 377 ------- null} + -t 35.5282 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 748 -a 0 -x {0.0.3.0 1.1.3.0 377 ------- null} - -t 35.5282 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 748 -a 0 -x {0.0.3.0 1.1.3.0 377 ------- null} h -t 35.5282 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 748 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.5298 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {0.0.3.0 1.1.3.0 378 ------- null} + -t 35.5298 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {0.0.3.0 1.1.3.0 378 ------- null} - -t 35.5298 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {0.0.3.0 1.1.3.0 378 ------- null} h -t 35.5298 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.5314 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 750 -a 0 -x {0.0.3.0 1.1.3.0 379 ------- null} + -t 35.5314 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 750 -a 0 -x {0.0.3.0 1.1.3.0 379 ------- null} - -t 35.5314 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 750 -a 0 -x {0.0.3.0 1.1.3.0 379 ------- null} h -t 35.5314 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 750 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.533 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {0.0.3.0 1.1.3.0 380 ------- null} + -t 35.533 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {0.0.3.0 1.1.3.0 380 ------- null} - -t 35.533 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {0.0.3.0 1.1.3.0 380 ------- null} h -t 35.533 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.5346 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 752 -a 0 -x {0.0.3.0 1.1.3.0 381 ------- null} + -t 35.5346 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 752 -a 0 -x {0.0.3.0 1.1.3.0 381 ------- null} - -t 35.5346 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 752 -a 0 -x {0.0.3.0 1.1.3.0 381 ------- null} h -t 35.5346 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 752 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.5362 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {0.0.3.0 1.1.3.0 382 ------- null} + -t 35.5362 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {0.0.3.0 1.1.3.0 382 ------- null} - -t 35.5362 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {0.0.3.0 1.1.3.0 382 ------- null} h -t 35.5362 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.5378 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 754 -a 0 -x {0.0.3.0 1.1.3.0 383 ------- null} + -t 35.5378 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 754 -a 0 -x {0.0.3.0 1.1.3.0 383 ------- null} - -t 35.5378 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 754 -a 0 -x {0.0.3.0 1.1.3.0 383 ------- null} h -t 35.5378 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 754 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.5394 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {0.0.3.0 1.1.3.0 384 ------- null} + -t 35.5394 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {0.0.3.0 1.1.3.0 384 ------- null} - -t 35.5394 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {0.0.3.0 1.1.3.0 384 ------- null} h -t 35.5394 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.541 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 756 -a 0 -x {0.0.3.0 1.1.3.0 385 ------- null} + -t 35.541 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 756 -a 0 -x {0.0.3.0 1.1.3.0 385 ------- null} - -t 35.541 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 756 -a 0 -x {0.0.3.0 1.1.3.0 385 ------- null} h -t 35.541 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 756 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.5426 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {0.0.3.0 1.1.3.0 386 ------- null} + -t 35.5426 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {0.0.3.0 1.1.3.0 386 ------- null} - -t 35.5426 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {0.0.3.0 1.1.3.0 386 ------- null} h -t 35.5426 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.5442 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 758 -a 0 -x {0.0.3.0 1.1.3.0 387 ------- null} + -t 35.5442 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 758 -a 0 -x {0.0.3.0 1.1.3.0 387 ------- null} - -t 35.5442 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 758 -a 0 -x {0.0.3.0 1.1.3.0 387 ------- null} h -t 35.5442 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 758 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.5458 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {0.0.3.0 1.1.3.0 388 ------- null} + -t 35.5458 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {0.0.3.0 1.1.3.0 388 ------- null} - -t 35.5458 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {0.0.3.0 1.1.3.0 388 ------- null} h -t 35.5458 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.5474 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 760 -a 0 -x {0.0.3.0 1.1.3.0 389 ------- null} + -t 35.5474 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 760 -a 0 -x {0.0.3.0 1.1.3.0 389 ------- null} - -t 35.5474 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 760 -a 0 -x {0.0.3.0 1.1.3.0 389 ------- null} h -t 35.5474 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 760 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.549 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {0.0.3.0 1.1.3.0 390 ------- null} + -t 35.549 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {0.0.3.0 1.1.3.0 390 ------- null} - -t 35.549 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {0.0.3.0 1.1.3.0 390 ------- null} h -t 35.549 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.6202 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 742 -a 0 -x {0.0.3.0 1.1.3.0 371 ------- null} + -t 35.6202 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 742 -a 0 -x {0.0.3.0 1.1.3.0 371 ------- null} - -t 35.6202 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 742 -a 0 -x {0.0.3.0 1.1.3.0 371 ------- null} h -t 35.6202 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 742 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.6218 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {0.0.3.0 1.1.3.0 372 ------- null} + -t 35.6218 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {0.0.3.0 1.1.3.0 372 ------- null} - -t 35.6218 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {0.0.3.0 1.1.3.0 372 ------- null} h -t 35.6218 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.6234 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 744 -a 0 -x {0.0.3.0 1.1.3.0 373 ------- null} + -t 35.6234 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 744 -a 0 -x {0.0.3.0 1.1.3.0 373 ------- null} - -t 35.6234 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 744 -a 0 -x {0.0.3.0 1.1.3.0 373 ------- null} h -t 35.6234 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 744 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.625 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {0.0.3.0 1.1.3.0 374 ------- null} + -t 35.625 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {0.0.3.0 1.1.3.0 374 ------- null} - -t 35.625 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {0.0.3.0 1.1.3.0 374 ------- null} h -t 35.625 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.6266 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 746 -a 0 -x {0.0.3.0 1.1.3.0 375 ------- null} + -t 35.6266 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 746 -a 0 -x {0.0.3.0 1.1.3.0 375 ------- null} - -t 35.6266 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 746 -a 0 -x {0.0.3.0 1.1.3.0 375 ------- null} h -t 35.6266 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 746 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.6282 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {0.0.3.0 1.1.3.0 376 ------- null} + -t 35.6282 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {0.0.3.0 1.1.3.0 376 ------- null} - -t 35.6282 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {0.0.3.0 1.1.3.0 376 ------- null} h -t 35.6282 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.6298 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 748 -a 0 -x {0.0.3.0 1.1.3.0 377 ------- null} + -t 35.6298 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 748 -a 0 -x {0.0.3.0 1.1.3.0 377 ------- null} - -t 35.6298 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 748 -a 0 -x {0.0.3.0 1.1.3.0 377 ------- null} h -t 35.6298 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 748 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.6314 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {0.0.3.0 1.1.3.0 378 ------- null} + -t 35.6314 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {0.0.3.0 1.1.3.0 378 ------- null} - -t 35.6314 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {0.0.3.0 1.1.3.0 378 ------- null} h -t 35.6314 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.633 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 750 -a 0 -x {0.0.3.0 1.1.3.0 379 ------- null} + -t 35.633 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 750 -a 0 -x {0.0.3.0 1.1.3.0 379 ------- null} - -t 35.633 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 750 -a 0 -x {0.0.3.0 1.1.3.0 379 ------- null} h -t 35.633 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 750 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.6346 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {0.0.3.0 1.1.3.0 380 ------- null} + -t 35.6346 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {0.0.3.0 1.1.3.0 380 ------- null} - -t 35.6346 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {0.0.3.0 1.1.3.0 380 ------- null} h -t 35.6346 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.6362 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 752 -a 0 -x {0.0.3.0 1.1.3.0 381 ------- null} + -t 35.6362 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 752 -a 0 -x {0.0.3.0 1.1.3.0 381 ------- null} - -t 35.6362 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 752 -a 0 -x {0.0.3.0 1.1.3.0 381 ------- null} h -t 35.6362 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 752 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.6378 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {0.0.3.0 1.1.3.0 382 ------- null} + -t 35.6378 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {0.0.3.0 1.1.3.0 382 ------- null} - -t 35.6378 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {0.0.3.0 1.1.3.0 382 ------- null} h -t 35.6378 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.6394 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 754 -a 0 -x {0.0.3.0 1.1.3.0 383 ------- null} + -t 35.6394 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 754 -a 0 -x {0.0.3.0 1.1.3.0 383 ------- null} - -t 35.6394 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 754 -a 0 -x {0.0.3.0 1.1.3.0 383 ------- null} h -t 35.6394 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 754 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.641 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {0.0.3.0 1.1.3.0 384 ------- null} + -t 35.641 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {0.0.3.0 1.1.3.0 384 ------- null} - -t 35.641 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {0.0.3.0 1.1.3.0 384 ------- null} h -t 35.641 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.6426 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 756 -a 0 -x {0.0.3.0 1.1.3.0 385 ------- null} + -t 35.6426 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 756 -a 0 -x {0.0.3.0 1.1.3.0 385 ------- null} - -t 35.6426 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 756 -a 0 -x {0.0.3.0 1.1.3.0 385 ------- null} h -t 35.6426 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 756 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.6442 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {0.0.3.0 1.1.3.0 386 ------- null} + -t 35.6442 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {0.0.3.0 1.1.3.0 386 ------- null} - -t 35.6442 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {0.0.3.0 1.1.3.0 386 ------- null} h -t 35.6442 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.6458 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 758 -a 0 -x {0.0.3.0 1.1.3.0 387 ------- null} + -t 35.6458 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 758 -a 0 -x {0.0.3.0 1.1.3.0 387 ------- null} - -t 35.6458 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 758 -a 0 -x {0.0.3.0 1.1.3.0 387 ------- null} h -t 35.6458 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 758 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.6474 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {0.0.3.0 1.1.3.0 388 ------- null} + -t 35.6474 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {0.0.3.0 1.1.3.0 388 ------- null} - -t 35.6474 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {0.0.3.0 1.1.3.0 388 ------- null} h -t 35.6474 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.649 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 760 -a 0 -x {0.0.3.0 1.1.3.0 389 ------- null} + -t 35.649 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 760 -a 0 -x {0.0.3.0 1.1.3.0 389 ------- null} - -t 35.649 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 760 -a 0 -x {0.0.3.0 1.1.3.0 389 ------- null} h -t 35.649 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 760 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.6506 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {0.0.3.0 1.1.3.0 390 ------- null} + -t 35.6506 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {0.0.3.0 1.1.3.0 390 ------- null} - -t 35.6506 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {0.0.3.0 1.1.3.0 390 ------- null} h -t 35.6506 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.7018 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 742 -a 0 -x {0.0.3.0 1.1.3.0 371 ------- null} + -t 35.7018 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 742 -a 0 -x {0.0.3.0 1.1.3.0 371 ------- null} - -t 35.7018 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 742 -a 0 -x {0.0.3.0 1.1.3.0 371 ------- null} h -t 35.7018 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 742 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.7034 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {0.0.3.0 1.1.3.0 372 ------- null} + -t 35.7034 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {0.0.3.0 1.1.3.0 372 ------- null} - -t 35.7034 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {0.0.3.0 1.1.3.0 372 ------- null} h -t 35.7034 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.705 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 744 -a 0 -x {0.0.3.0 1.1.3.0 373 ------- null} + -t 35.705 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 744 -a 0 -x {0.0.3.0 1.1.3.0 373 ------- null} - -t 35.705 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 744 -a 0 -x {0.0.3.0 1.1.3.0 373 ------- null} h -t 35.705 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 744 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.7066 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {0.0.3.0 1.1.3.0 374 ------- null} + -t 35.7066 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {0.0.3.0 1.1.3.0 374 ------- null} - -t 35.7066 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {0.0.3.0 1.1.3.0 374 ------- null} h -t 35.7066 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.7082 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 746 -a 0 -x {0.0.3.0 1.1.3.0 375 ------- null} + -t 35.7082 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 746 -a 0 -x {0.0.3.0 1.1.3.0 375 ------- null} - -t 35.7082 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 746 -a 0 -x {0.0.3.0 1.1.3.0 375 ------- null} h -t 35.7082 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 746 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.7098 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {0.0.3.0 1.1.3.0 376 ------- null} + -t 35.7098 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {0.0.3.0 1.1.3.0 376 ------- null} - -t 35.7098 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {0.0.3.0 1.1.3.0 376 ------- null} h -t 35.7098 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.7114 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 748 -a 0 -x {0.0.3.0 1.1.3.0 377 ------- null} + -t 35.7114 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 748 -a 0 -x {0.0.3.0 1.1.3.0 377 ------- null} - -t 35.7114 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 748 -a 0 -x {0.0.3.0 1.1.3.0 377 ------- null} h -t 35.7114 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 748 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.713 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {0.0.3.0 1.1.3.0 378 ------- null} + -t 35.713 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {0.0.3.0 1.1.3.0 378 ------- null} - -t 35.713 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {0.0.3.0 1.1.3.0 378 ------- null} h -t 35.713 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.7146 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 750 -a 0 -x {0.0.3.0 1.1.3.0 379 ------- null} + -t 35.7146 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 750 -a 0 -x {0.0.3.0 1.1.3.0 379 ------- null} - -t 35.7146 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 750 -a 0 -x {0.0.3.0 1.1.3.0 379 ------- null} h -t 35.7146 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 750 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.7162 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {0.0.3.0 1.1.3.0 380 ------- null} + -t 35.7162 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {0.0.3.0 1.1.3.0 380 ------- null} - -t 35.7162 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {0.0.3.0 1.1.3.0 380 ------- null} h -t 35.7162 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.7178 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 752 -a 0 -x {0.0.3.0 1.1.3.0 381 ------- null} + -t 35.7178 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 752 -a 0 -x {0.0.3.0 1.1.3.0 381 ------- null} - -t 35.7178 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 752 -a 0 -x {0.0.3.0 1.1.3.0 381 ------- null} h -t 35.7178 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 752 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.7194 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {0.0.3.0 1.1.3.0 382 ------- null} + -t 35.7194 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {0.0.3.0 1.1.3.0 382 ------- null} - -t 35.7194 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {0.0.3.0 1.1.3.0 382 ------- null} h -t 35.7194 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.721 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 754 -a 0 -x {0.0.3.0 1.1.3.0 383 ------- null} + -t 35.721 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 754 -a 0 -x {0.0.3.0 1.1.3.0 383 ------- null} - -t 35.721 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 754 -a 0 -x {0.0.3.0 1.1.3.0 383 ------- null} h -t 35.721 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 754 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.7226 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {0.0.3.0 1.1.3.0 384 ------- null} + -t 35.7226 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {0.0.3.0 1.1.3.0 384 ------- null} - -t 35.7226 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {0.0.3.0 1.1.3.0 384 ------- null} h -t 35.7226 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.7242 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 756 -a 0 -x {0.0.3.0 1.1.3.0 385 ------- null} + -t 35.7242 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 756 -a 0 -x {0.0.3.0 1.1.3.0 385 ------- null} - -t 35.7242 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 756 -a 0 -x {0.0.3.0 1.1.3.0 385 ------- null} h -t 35.7242 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 756 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.7258 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {0.0.3.0 1.1.3.0 386 ------- null} + -t 35.7258 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {0.0.3.0 1.1.3.0 386 ------- null} - -t 35.7258 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {0.0.3.0 1.1.3.0 386 ------- null} h -t 35.7258 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.7274 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 758 -a 0 -x {0.0.3.0 1.1.3.0 387 ------- null} + -t 35.7274 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 758 -a 0 -x {0.0.3.0 1.1.3.0 387 ------- null} - -t 35.7274 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 758 -a 0 -x {0.0.3.0 1.1.3.0 387 ------- null} h -t 35.7274 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 758 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.729 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {0.0.3.0 1.1.3.0 388 ------- null} + -t 35.729 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {0.0.3.0 1.1.3.0 388 ------- null} - -t 35.729 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {0.0.3.0 1.1.3.0 388 ------- null} h -t 35.729 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.7306 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 760 -a 0 -x {0.0.3.0 1.1.3.0 389 ------- null} + -t 35.7306 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 760 -a 0 -x {0.0.3.0 1.1.3.0 389 ------- null} - -t 35.7306 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 760 -a 0 -x {0.0.3.0 1.1.3.0 389 ------- null} h -t 35.7306 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 760 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.7322 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {0.0.3.0 1.1.3.0 390 ------- null} + -t 35.7322 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {0.0.3.0 1.1.3.0 390 ------- null} - -t 35.7322 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {0.0.3.0 1.1.3.0 390 ------- null} h -t 35.7322 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.7834 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 742 -a 0 -x {0.0.3.0 1.1.3.0 371 ------- null} + -t 35.7834 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 742 -a 0 -x {0.0.3.0 1.1.3.0 371 ------- null} - -t 35.7834 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 742 -a 0 -x {0.0.3.0 1.1.3.0 371 ------- null} h -t 35.7834 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 742 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.785 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {0.0.3.0 1.1.3.0 372 ------- null} + -t 35.785 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {0.0.3.0 1.1.3.0 372 ------- null} - -t 35.785 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {0.0.3.0 1.1.3.0 372 ------- null} h -t 35.785 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.7866 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 744 -a 0 -x {0.0.3.0 1.1.3.0 373 ------- null} + -t 35.7866 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 744 -a 0 -x {0.0.3.0 1.1.3.0 373 ------- null} - -t 35.7866 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 744 -a 0 -x {0.0.3.0 1.1.3.0 373 ------- null} h -t 35.7866 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 744 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.7882 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {0.0.3.0 1.1.3.0 374 ------- null} + -t 35.7882 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {0.0.3.0 1.1.3.0 374 ------- null} - -t 35.7882 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {0.0.3.0 1.1.3.0 374 ------- null} h -t 35.7882 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.7898 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 746 -a 0 -x {0.0.3.0 1.1.3.0 375 ------- null} + -t 35.7898 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 746 -a 0 -x {0.0.3.0 1.1.3.0 375 ------- null} - -t 35.7898 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 746 -a 0 -x {0.0.3.0 1.1.3.0 375 ------- null} h -t 35.7898 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 746 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.7914 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {0.0.3.0 1.1.3.0 376 ------- null} + -t 35.7914 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {0.0.3.0 1.1.3.0 376 ------- null} - -t 35.7914 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {0.0.3.0 1.1.3.0 376 ------- null} h -t 35.7914 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.793 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 748 -a 0 -x {0.0.3.0 1.1.3.0 377 ------- null} + -t 35.793 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 748 -a 0 -x {0.0.3.0 1.1.3.0 377 ------- null} - -t 35.793 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 748 -a 0 -x {0.0.3.0 1.1.3.0 377 ------- null} h -t 35.793 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 748 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.7946 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {0.0.3.0 1.1.3.0 378 ------- null} + -t 35.7946 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {0.0.3.0 1.1.3.0 378 ------- null} - -t 35.7946 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {0.0.3.0 1.1.3.0 378 ------- null} h -t 35.7946 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.7962 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 750 -a 0 -x {0.0.3.0 1.1.3.0 379 ------- null} + -t 35.7962 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 750 -a 0 -x {0.0.3.0 1.1.3.0 379 ------- null} - -t 35.7962 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 750 -a 0 -x {0.0.3.0 1.1.3.0 379 ------- null} h -t 35.7962 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 750 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.7978 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {0.0.3.0 1.1.3.0 380 ------- null} + -t 35.7978 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {0.0.3.0 1.1.3.0 380 ------- null} - -t 35.7978 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {0.0.3.0 1.1.3.0 380 ------- null} h -t 35.7978 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.7994 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 752 -a 0 -x {0.0.3.0 1.1.3.0 381 ------- null} + -t 35.7994 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 752 -a 0 -x {0.0.3.0 1.1.3.0 381 ------- null} - -t 35.7994 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 752 -a 0 -x {0.0.3.0 1.1.3.0 381 ------- null} h -t 35.7994 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 752 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.801 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {0.0.3.0 1.1.3.0 382 ------- null} + -t 35.801 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {0.0.3.0 1.1.3.0 382 ------- null} - -t 35.801 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {0.0.3.0 1.1.3.0 382 ------- null} h -t 35.801 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.8026 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 754 -a 0 -x {0.0.3.0 1.1.3.0 383 ------- null} + -t 35.8026 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 754 -a 0 -x {0.0.3.0 1.1.3.0 383 ------- null} - -t 35.8026 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 754 -a 0 -x {0.0.3.0 1.1.3.0 383 ------- null} h -t 35.8026 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 754 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.8042 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {0.0.3.0 1.1.3.0 384 ------- null} + -t 35.8042 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {0.0.3.0 1.1.3.0 384 ------- null} - -t 35.8042 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {0.0.3.0 1.1.3.0 384 ------- null} h -t 35.8042 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.8058 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 756 -a 0 -x {0.0.3.0 1.1.3.0 385 ------- null} + -t 35.8058 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 756 -a 0 -x {0.0.3.0 1.1.3.0 385 ------- null} - -t 35.8058 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 756 -a 0 -x {0.0.3.0 1.1.3.0 385 ------- null} h -t 35.8058 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 756 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.8074 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {0.0.3.0 1.1.3.0 386 ------- null} + -t 35.8074 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {0.0.3.0 1.1.3.0 386 ------- null} - -t 35.8074 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {0.0.3.0 1.1.3.0 386 ------- null} h -t 35.8074 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.809 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 758 -a 0 -x {0.0.3.0 1.1.3.0 387 ------- null} + -t 35.809 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 758 -a 0 -x {0.0.3.0 1.1.3.0 387 ------- null} - -t 35.809 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 758 -a 0 -x {0.0.3.0 1.1.3.0 387 ------- null} h -t 35.809 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 758 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.8106 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {0.0.3.0 1.1.3.0 388 ------- null} + -t 35.8106 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {0.0.3.0 1.1.3.0 388 ------- null} - -t 35.8106 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {0.0.3.0 1.1.3.0 388 ------- null} h -t 35.8106 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.8122 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 760 -a 0 -x {0.0.3.0 1.1.3.0 389 ------- null} + -t 35.8122 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 760 -a 0 -x {0.0.3.0 1.1.3.0 389 ------- null} - -t 35.8122 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 760 -a 0 -x {0.0.3.0 1.1.3.0 389 ------- null} h -t 35.8122 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 760 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.8138 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {0.0.3.0 1.1.3.0 390 ------- null} + -t 35.8138 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {0.0.3.0 1.1.3.0 390 ------- null} - -t 35.8138 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {0.0.3.0 1.1.3.0 390 ------- null} h -t 35.8138 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 35.845 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 742 -a 0 -x {0.0.3.0 1.1.3.0 371 ------- null} + -t 35.845 -s 21 -d 28 -p ack -e 40 -c 0 -i 762 -a 1 -x {1.1.3.0 0.0.3.0 371 ------- null} - -t 35.845 -s 21 -d 28 -p ack -e 40 -c 0 -i 762 -a 1 -x {1.1.3.0 0.0.3.0 371 ------- null} h -t 35.845 -s 21 -d 28 -p ack -e 40 -c 0 -i 762 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 35.8466 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {0.0.3.0 1.1.3.0 372 ------- null} + -t 35.8466 -s 21 -d 28 -p ack -e 40 -c 0 -i 763 -a 1 -x {1.1.3.0 0.0.3.0 372 ------- null} - -t 35.8466 -s 21 -d 28 -p ack -e 40 -c 0 -i 763 -a 1 -x {1.1.3.0 0.0.3.0 372 ------- null} h -t 35.8466 -s 21 -d 28 -p ack -e 40 -c 0 -i 763 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 35.8482 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 744 -a 0 -x {0.0.3.0 1.1.3.0 373 ------- null} + -t 35.8482 -s 21 -d 28 -p ack -e 40 -c 0 -i 764 -a 1 -x {1.1.3.0 0.0.3.0 373 ------- null} - -t 35.8482 -s 21 -d 28 -p ack -e 40 -c 0 -i 764 -a 1 -x {1.1.3.0 0.0.3.0 373 ------- null} h -t 35.8482 -s 21 -d 28 -p ack -e 40 -c 0 -i 764 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 35.8498 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {0.0.3.0 1.1.3.0 374 ------- null} + -t 35.8498 -s 21 -d 28 -p ack -e 40 -c 0 -i 765 -a 1 -x {1.1.3.0 0.0.3.0 374 ------- null} - -t 35.8498 -s 21 -d 28 -p ack -e 40 -c 0 -i 765 -a 1 -x {1.1.3.0 0.0.3.0 374 ------- null} h -t 35.8498 -s 21 -d 28 -p ack -e 40 -c 0 -i 765 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 35.8514 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 746 -a 0 -x {0.0.3.0 1.1.3.0 375 ------- null} + -t 35.8514 -s 21 -d 28 -p ack -e 40 -c 0 -i 766 -a 1 -x {1.1.3.0 0.0.3.0 375 ------- null} - -t 35.8514 -s 21 -d 28 -p ack -e 40 -c 0 -i 766 -a 1 -x {1.1.3.0 0.0.3.0 375 ------- null} h -t 35.8514 -s 21 -d 28 -p ack -e 40 -c 0 -i 766 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 35.853 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {0.0.3.0 1.1.3.0 376 ------- null} + -t 35.853 -s 21 -d 28 -p ack -e 40 -c 0 -i 767 -a 1 -x {1.1.3.0 0.0.3.0 376 ------- null} - -t 35.853 -s 21 -d 28 -p ack -e 40 -c 0 -i 767 -a 1 -x {1.1.3.0 0.0.3.0 376 ------- null} h -t 35.853 -s 21 -d 28 -p ack -e 40 -c 0 -i 767 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 35.8546 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 748 -a 0 -x {0.0.3.0 1.1.3.0 377 ------- null} + -t 35.8546 -s 21 -d 28 -p ack -e 40 -c 0 -i 768 -a 1 -x {1.1.3.0 0.0.3.0 377 ------- null} - -t 35.8546 -s 21 -d 28 -p ack -e 40 -c 0 -i 768 -a 1 -x {1.1.3.0 0.0.3.0 377 ------- null} h -t 35.8546 -s 21 -d 28 -p ack -e 40 -c 0 -i 768 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 35.8562 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {0.0.3.0 1.1.3.0 378 ------- null} + -t 35.8562 -s 21 -d 28 -p ack -e 40 -c 0 -i 769 -a 1 -x {1.1.3.0 0.0.3.0 378 ------- null} - -t 35.8562 -s 21 -d 28 -p ack -e 40 -c 0 -i 769 -a 1 -x {1.1.3.0 0.0.3.0 378 ------- null} h -t 35.8562 -s 21 -d 28 -p ack -e 40 -c 0 -i 769 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 35.8578 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 750 -a 0 -x {0.0.3.0 1.1.3.0 379 ------- null} + -t 35.8578 -s 21 -d 28 -p ack -e 40 -c 0 -i 770 -a 1 -x {1.1.3.0 0.0.3.0 379 ------- null} - -t 35.8578 -s 21 -d 28 -p ack -e 40 -c 0 -i 770 -a 1 -x {1.1.3.0 0.0.3.0 379 ------- null} h -t 35.8578 -s 21 -d 28 -p ack -e 40 -c 0 -i 770 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 35.8594 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {0.0.3.0 1.1.3.0 380 ------- null} + -t 35.8594 -s 21 -d 28 -p ack -e 40 -c 0 -i 771 -a 1 -x {1.1.3.0 0.0.3.0 380 ------- null} - -t 35.8594 -s 21 -d 28 -p ack -e 40 -c 0 -i 771 -a 1 -x {1.1.3.0 0.0.3.0 380 ------- null} h -t 35.8594 -s 21 -d 28 -p ack -e 40 -c 0 -i 771 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 35.861 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 752 -a 0 -x {0.0.3.0 1.1.3.0 381 ------- null} + -t 35.861 -s 21 -d 28 -p ack -e 40 -c 0 -i 772 -a 1 -x {1.1.3.0 0.0.3.0 381 ------- null} - -t 35.861 -s 21 -d 28 -p ack -e 40 -c 0 -i 772 -a 1 -x {1.1.3.0 0.0.3.0 381 ------- null} h -t 35.861 -s 21 -d 28 -p ack -e 40 -c 0 -i 772 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 35.8626 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {0.0.3.0 1.1.3.0 382 ------- null} + -t 35.8626 -s 21 -d 28 -p ack -e 40 -c 0 -i 773 -a 1 -x {1.1.3.0 0.0.3.0 382 ------- null} - -t 35.8626 -s 21 -d 28 -p ack -e 40 -c 0 -i 773 -a 1 -x {1.1.3.0 0.0.3.0 382 ------- null} h -t 35.8626 -s 21 -d 28 -p ack -e 40 -c 0 -i 773 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 35.8642 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 754 -a 0 -x {0.0.3.0 1.1.3.0 383 ------- null} + -t 35.8642 -s 21 -d 28 -p ack -e 40 -c 0 -i 774 -a 1 -x {1.1.3.0 0.0.3.0 383 ------- null} - -t 35.8642 -s 21 -d 28 -p ack -e 40 -c 0 -i 774 -a 1 -x {1.1.3.0 0.0.3.0 383 ------- null} h -t 35.8642 -s 21 -d 28 -p ack -e 40 -c 0 -i 774 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 35.8658 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {0.0.3.0 1.1.3.0 384 ------- null} + -t 35.8658 -s 21 -d 28 -p ack -e 40 -c 0 -i 775 -a 1 -x {1.1.3.0 0.0.3.0 384 ------- null} - -t 35.8658 -s 21 -d 28 -p ack -e 40 -c 0 -i 775 -a 1 -x {1.1.3.0 0.0.3.0 384 ------- null} h -t 35.8658 -s 21 -d 28 -p ack -e 40 -c 0 -i 775 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 35.8674 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 756 -a 0 -x {0.0.3.0 1.1.3.0 385 ------- null} + -t 35.8674 -s 21 -d 28 -p ack -e 40 -c 0 -i 776 -a 1 -x {1.1.3.0 0.0.3.0 385 ------- null} - -t 35.8674 -s 21 -d 28 -p ack -e 40 -c 0 -i 776 -a 1 -x {1.1.3.0 0.0.3.0 385 ------- null} h -t 35.8674 -s 21 -d 28 -p ack -e 40 -c 0 -i 776 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 35.869 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {0.0.3.0 1.1.3.0 386 ------- null} + -t 35.869 -s 21 -d 28 -p ack -e 40 -c 0 -i 777 -a 1 -x {1.1.3.0 0.0.3.0 386 ------- null} - -t 35.869 -s 21 -d 28 -p ack -e 40 -c 0 -i 777 -a 1 -x {1.1.3.0 0.0.3.0 386 ------- null} h -t 35.869 -s 21 -d 28 -p ack -e 40 -c 0 -i 777 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 35.8706 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 758 -a 0 -x {0.0.3.0 1.1.3.0 387 ------- null} + -t 35.8706 -s 21 -d 28 -p ack -e 40 -c 0 -i 778 -a 1 -x {1.1.3.0 0.0.3.0 387 ------- null} - -t 35.8706 -s 21 -d 28 -p ack -e 40 -c 0 -i 778 -a 1 -x {1.1.3.0 0.0.3.0 387 ------- null} h -t 35.8706 -s 21 -d 28 -p ack -e 40 -c 0 -i 778 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 35.8722 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {0.0.3.0 1.1.3.0 388 ------- null} + -t 35.8722 -s 21 -d 28 -p ack -e 40 -c 0 -i 779 -a 1 -x {1.1.3.0 0.0.3.0 388 ------- null} - -t 35.8722 -s 21 -d 28 -p ack -e 40 -c 0 -i 779 -a 1 -x {1.1.3.0 0.0.3.0 388 ------- null} h -t 35.8722 -s 21 -d 28 -p ack -e 40 -c 0 -i 779 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 35.8738 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 760 -a 0 -x {0.0.3.0 1.1.3.0 389 ------- null} + -t 35.8738 -s 21 -d 28 -p ack -e 40 -c 0 -i 780 -a 1 -x {1.1.3.0 0.0.3.0 389 ------- null} - -t 35.8738 -s 21 -d 28 -p ack -e 40 -c 0 -i 780 -a 1 -x {1.1.3.0 0.0.3.0 389 ------- null} h -t 35.8738 -s 21 -d 28 -p ack -e 40 -c 0 -i 780 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 35.8754 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {0.0.3.0 1.1.3.0 390 ------- null} + -t 35.8754 -s 21 -d 28 -p ack -e 40 -c 0 -i 781 -a 1 -x {1.1.3.0 0.0.3.0 390 ------- null} - -t 35.8754 -s 21 -d 28 -p ack -e 40 -c 0 -i 781 -a 1 -x {1.1.3.0 0.0.3.0 390 ------- null} h -t 35.8754 -s 21 -d 28 -p ack -e 40 -c 0 -i 781 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 36.1951 -s 21 -d 28 -p ack -e 40 -c 0 -i 762 -a 1 -x {1.1.3.0 0.0.3.0 371 ------- null} + -t 36.1951 -s 28 -d 1 -p ack -e 40 -c 0 -i 762 -a 1 -x {1.1.3.0 0.0.3.0 371 ------- null} - -t 36.1951 -s 28 -d 1 -p ack -e 40 -c 0 -i 762 -a 1 -x {1.1.3.0 0.0.3.0 371 ------- null} h -t 36.1951 -s 28 -d 1 -p ack -e 40 -c 0 -i 762 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 36.1967 -s 21 -d 28 -p ack -e 40 -c 0 -i 763 -a 1 -x {1.1.3.0 0.0.3.0 372 ------- null} + -t 36.1967 -s 28 -d 1 -p ack -e 40 -c 0 -i 763 -a 1 -x {1.1.3.0 0.0.3.0 372 ------- null} - -t 36.1967 -s 28 -d 1 -p ack -e 40 -c 0 -i 763 -a 1 -x {1.1.3.0 0.0.3.0 372 ------- null} h -t 36.1967 -s 28 -d 1 -p ack -e 40 -c 0 -i 763 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 36.1983 -s 21 -d 28 -p ack -e 40 -c 0 -i 764 -a 1 -x {1.1.3.0 0.0.3.0 373 ------- null} + -t 36.1983 -s 28 -d 1 -p ack -e 40 -c 0 -i 764 -a 1 -x {1.1.3.0 0.0.3.0 373 ------- null} - -t 36.1983 -s 28 -d 1 -p ack -e 40 -c 0 -i 764 -a 1 -x {1.1.3.0 0.0.3.0 373 ------- null} h -t 36.1983 -s 28 -d 1 -p ack -e 40 -c 0 -i 764 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 36.1999 -s 21 -d 28 -p ack -e 40 -c 0 -i 765 -a 1 -x {1.1.3.0 0.0.3.0 374 ------- null} + -t 36.1999 -s 28 -d 1 -p ack -e 40 -c 0 -i 765 -a 1 -x {1.1.3.0 0.0.3.0 374 ------- null} - -t 36.1999 -s 28 -d 1 -p ack -e 40 -c 0 -i 765 -a 1 -x {1.1.3.0 0.0.3.0 374 ------- null} h -t 36.1999 -s 28 -d 1 -p ack -e 40 -c 0 -i 765 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 36.2015 -s 21 -d 28 -p ack -e 40 -c 0 -i 766 -a 1 -x {1.1.3.0 0.0.3.0 375 ------- null} + -t 36.2015 -s 28 -d 1 -p ack -e 40 -c 0 -i 766 -a 1 -x {1.1.3.0 0.0.3.0 375 ------- null} - -t 36.2015 -s 28 -d 1 -p ack -e 40 -c 0 -i 766 -a 1 -x {1.1.3.0 0.0.3.0 375 ------- null} h -t 36.2015 -s 28 -d 1 -p ack -e 40 -c 0 -i 766 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 36.2031 -s 21 -d 28 -p ack -e 40 -c 0 -i 767 -a 1 -x {1.1.3.0 0.0.3.0 376 ------- null} + -t 36.2031 -s 28 -d 1 -p ack -e 40 -c 0 -i 767 -a 1 -x {1.1.3.0 0.0.3.0 376 ------- null} - -t 36.2031 -s 28 -d 1 -p ack -e 40 -c 0 -i 767 -a 1 -x {1.1.3.0 0.0.3.0 376 ------- null} h -t 36.2031 -s 28 -d 1 -p ack -e 40 -c 0 -i 767 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 36.2047 -s 21 -d 28 -p ack -e 40 -c 0 -i 768 -a 1 -x {1.1.3.0 0.0.3.0 377 ------- null} + -t 36.2047 -s 28 -d 1 -p ack -e 40 -c 0 -i 768 -a 1 -x {1.1.3.0 0.0.3.0 377 ------- null} - -t 36.2047 -s 28 -d 1 -p ack -e 40 -c 0 -i 768 -a 1 -x {1.1.3.0 0.0.3.0 377 ------- null} h -t 36.2047 -s 28 -d 1 -p ack -e 40 -c 0 -i 768 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 36.2063 -s 21 -d 28 -p ack -e 40 -c 0 -i 769 -a 1 -x {1.1.3.0 0.0.3.0 378 ------- null} + -t 36.2063 -s 28 -d 1 -p ack -e 40 -c 0 -i 769 -a 1 -x {1.1.3.0 0.0.3.0 378 ------- null} - -t 36.2063 -s 28 -d 1 -p ack -e 40 -c 0 -i 769 -a 1 -x {1.1.3.0 0.0.3.0 378 ------- null} h -t 36.2063 -s 28 -d 1 -p ack -e 40 -c 0 -i 769 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 36.2079 -s 21 -d 28 -p ack -e 40 -c 0 -i 770 -a 1 -x {1.1.3.0 0.0.3.0 379 ------- null} + -t 36.2079 -s 28 -d 1 -p ack -e 40 -c 0 -i 770 -a 1 -x {1.1.3.0 0.0.3.0 379 ------- null} - -t 36.2079 -s 28 -d 1 -p ack -e 40 -c 0 -i 770 -a 1 -x {1.1.3.0 0.0.3.0 379 ------- null} h -t 36.2079 -s 28 -d 1 -p ack -e 40 -c 0 -i 770 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 36.2095 -s 21 -d 28 -p ack -e 40 -c 0 -i 771 -a 1 -x {1.1.3.0 0.0.3.0 380 ------- null} + -t 36.2095 -s 28 -d 1 -p ack -e 40 -c 0 -i 771 -a 1 -x {1.1.3.0 0.0.3.0 380 ------- null} - -t 36.2095 -s 28 -d 1 -p ack -e 40 -c 0 -i 771 -a 1 -x {1.1.3.0 0.0.3.0 380 ------- null} h -t 36.2095 -s 28 -d 1 -p ack -e 40 -c 0 -i 771 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 36.2111 -s 21 -d 28 -p ack -e 40 -c 0 -i 772 -a 1 -x {1.1.3.0 0.0.3.0 381 ------- null} + -t 36.2111 -s 28 -d 1 -p ack -e 40 -c 0 -i 772 -a 1 -x {1.1.3.0 0.0.3.0 381 ------- null} - -t 36.2111 -s 28 -d 1 -p ack -e 40 -c 0 -i 772 -a 1 -x {1.1.3.0 0.0.3.0 381 ------- null} h -t 36.2111 -s 28 -d 1 -p ack -e 40 -c 0 -i 772 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 36.2127 -s 21 -d 28 -p ack -e 40 -c 0 -i 773 -a 1 -x {1.1.3.0 0.0.3.0 382 ------- null} + -t 36.2127 -s 28 -d 1 -p ack -e 40 -c 0 -i 773 -a 1 -x {1.1.3.0 0.0.3.0 382 ------- null} - -t 36.2127 -s 28 -d 1 -p ack -e 40 -c 0 -i 773 -a 1 -x {1.1.3.0 0.0.3.0 382 ------- null} h -t 36.2127 -s 28 -d 1 -p ack -e 40 -c 0 -i 773 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 36.2143 -s 21 -d 28 -p ack -e 40 -c 0 -i 774 -a 1 -x {1.1.3.0 0.0.3.0 383 ------- null} + -t 36.2143 -s 28 -d 1 -p ack -e 40 -c 0 -i 774 -a 1 -x {1.1.3.0 0.0.3.0 383 ------- null} - -t 36.2143 -s 28 -d 1 -p ack -e 40 -c 0 -i 774 -a 1 -x {1.1.3.0 0.0.3.0 383 ------- null} h -t 36.2143 -s 28 -d 1 -p ack -e 40 -c 0 -i 774 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 36.2159 -s 21 -d 28 -p ack -e 40 -c 0 -i 775 -a 1 -x {1.1.3.0 0.0.3.0 384 ------- null} + -t 36.2159 -s 28 -d 1 -p ack -e 40 -c 0 -i 775 -a 1 -x {1.1.3.0 0.0.3.0 384 ------- null} - -t 36.2159 -s 28 -d 1 -p ack -e 40 -c 0 -i 775 -a 1 -x {1.1.3.0 0.0.3.0 384 ------- null} h -t 36.2159 -s 28 -d 1 -p ack -e 40 -c 0 -i 775 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 36.2175 -s 21 -d 28 -p ack -e 40 -c 0 -i 776 -a 1 -x {1.1.3.0 0.0.3.0 385 ------- null} + -t 36.2175 -s 28 -d 1 -p ack -e 40 -c 0 -i 776 -a 1 -x {1.1.3.0 0.0.3.0 385 ------- null} - -t 36.2175 -s 28 -d 1 -p ack -e 40 -c 0 -i 776 -a 1 -x {1.1.3.0 0.0.3.0 385 ------- null} h -t 36.2175 -s 28 -d 1 -p ack -e 40 -c 0 -i 776 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 36.2191 -s 21 -d 28 -p ack -e 40 -c 0 -i 777 -a 1 -x {1.1.3.0 0.0.3.0 386 ------- null} + -t 36.2191 -s 28 -d 1 -p ack -e 40 -c 0 -i 777 -a 1 -x {1.1.3.0 0.0.3.0 386 ------- null} - -t 36.2191 -s 28 -d 1 -p ack -e 40 -c 0 -i 777 -a 1 -x {1.1.3.0 0.0.3.0 386 ------- null} h -t 36.2191 -s 28 -d 1 -p ack -e 40 -c 0 -i 777 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 36.2207 -s 21 -d 28 -p ack -e 40 -c 0 -i 778 -a 1 -x {1.1.3.0 0.0.3.0 387 ------- null} + -t 36.2207 -s 28 -d 1 -p ack -e 40 -c 0 -i 778 -a 1 -x {1.1.3.0 0.0.3.0 387 ------- null} - -t 36.2207 -s 28 -d 1 -p ack -e 40 -c 0 -i 778 -a 1 -x {1.1.3.0 0.0.3.0 387 ------- null} h -t 36.2207 -s 28 -d 1 -p ack -e 40 -c 0 -i 778 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 36.2223 -s 21 -d 28 -p ack -e 40 -c 0 -i 779 -a 1 -x {1.1.3.0 0.0.3.0 388 ------- null} + -t 36.2223 -s 28 -d 1 -p ack -e 40 -c 0 -i 779 -a 1 -x {1.1.3.0 0.0.3.0 388 ------- null} - -t 36.2223 -s 28 -d 1 -p ack -e 40 -c 0 -i 779 -a 1 -x {1.1.3.0 0.0.3.0 388 ------- null} h -t 36.2223 -s 28 -d 1 -p ack -e 40 -c 0 -i 779 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 36.2239 -s 21 -d 28 -p ack -e 40 -c 0 -i 780 -a 1 -x {1.1.3.0 0.0.3.0 389 ------- null} + -t 36.2239 -s 28 -d 1 -p ack -e 40 -c 0 -i 780 -a 1 -x {1.1.3.0 0.0.3.0 389 ------- null} - -t 36.2239 -s 28 -d 1 -p ack -e 40 -c 0 -i 780 -a 1 -x {1.1.3.0 0.0.3.0 389 ------- null} h -t 36.2239 -s 28 -d 1 -p ack -e 40 -c 0 -i 780 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 36.2255 -s 21 -d 28 -p ack -e 40 -c 0 -i 781 -a 1 -x {1.1.3.0 0.0.3.0 390 ------- null} + -t 36.2255 -s 28 -d 1 -p ack -e 40 -c 0 -i 781 -a 1 -x {1.1.3.0 0.0.3.0 390 ------- null} - -t 36.2255 -s 28 -d 1 -p ack -e 40 -c 0 -i 781 -a 1 -x {1.1.3.0 0.0.3.0 390 ------- null} h -t 36.2255 -s 28 -d 1 -p ack -e 40 -c 0 -i 781 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 36.4952 -s 28 -d 1 -p ack -e 40 -c 0 -i 762 -a 1 -x {1.1.3.0 0.0.3.0 371 ------- null} + -t 36.4952 -s 1 -d 3 -p ack -e 40 -c 0 -i 762 -a 1 -x {1.1.3.0 0.0.3.0 371 ------- null} - -t 36.4952 -s 1 -d 3 -p ack -e 40 -c 0 -i 762 -a 1 -x {1.1.3.0 0.0.3.0 371 ------- null} h -t 36.4952 -s 1 -d 3 -p ack -e 40 -c 0 -i 762 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 36.4968 -s 28 -d 1 -p ack -e 40 -c 0 -i 763 -a 1 -x {1.1.3.0 0.0.3.0 372 ------- null} + -t 36.4968 -s 1 -d 3 -p ack -e 40 -c 0 -i 763 -a 1 -x {1.1.3.0 0.0.3.0 372 ------- null} - -t 36.4968 -s 1 -d 3 -p ack -e 40 -c 0 -i 763 -a 1 -x {1.1.3.0 0.0.3.0 372 ------- null} h -t 36.4968 -s 1 -d 3 -p ack -e 40 -c 0 -i 763 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 36.4984 -s 28 -d 1 -p ack -e 40 -c 0 -i 764 -a 1 -x {1.1.3.0 0.0.3.0 373 ------- null} + -t 36.4984 -s 1 -d 3 -p ack -e 40 -c 0 -i 764 -a 1 -x {1.1.3.0 0.0.3.0 373 ------- null} - -t 36.4984 -s 1 -d 3 -p ack -e 40 -c 0 -i 764 -a 1 -x {1.1.3.0 0.0.3.0 373 ------- null} h -t 36.4984 -s 1 -d 3 -p ack -e 40 -c 0 -i 764 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 36.5 -s 28 -d 1 -p ack -e 40 -c 0 -i 765 -a 1 -x {1.1.3.0 0.0.3.0 374 ------- null} + -t 36.5 -s 1 -d 3 -p ack -e 40 -c 0 -i 765 -a 1 -x {1.1.3.0 0.0.3.0 374 ------- null} - -t 36.5 -s 1 -d 3 -p ack -e 40 -c 0 -i 765 -a 1 -x {1.1.3.0 0.0.3.0 374 ------- null} h -t 36.5 -s 1 -d 3 -p ack -e 40 -c 0 -i 765 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 36.5016 -s 28 -d 1 -p ack -e 40 -c 0 -i 766 -a 1 -x {1.1.3.0 0.0.3.0 375 ------- null} + -t 36.5016 -s 1 -d 3 -p ack -e 40 -c 0 -i 766 -a 1 -x {1.1.3.0 0.0.3.0 375 ------- null} - -t 36.5016 -s 1 -d 3 -p ack -e 40 -c 0 -i 766 -a 1 -x {1.1.3.0 0.0.3.0 375 ------- null} h -t 36.5016 -s 1 -d 3 -p ack -e 40 -c 0 -i 766 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 36.5032 -s 28 -d 1 -p ack -e 40 -c 0 -i 767 -a 1 -x {1.1.3.0 0.0.3.0 376 ------- null} + -t 36.5032 -s 1 -d 3 -p ack -e 40 -c 0 -i 767 -a 1 -x {1.1.3.0 0.0.3.0 376 ------- null} - -t 36.5032 -s 1 -d 3 -p ack -e 40 -c 0 -i 767 -a 1 -x {1.1.3.0 0.0.3.0 376 ------- null} h -t 36.5032 -s 1 -d 3 -p ack -e 40 -c 0 -i 767 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 36.5048 -s 28 -d 1 -p ack -e 40 -c 0 -i 768 -a 1 -x {1.1.3.0 0.0.3.0 377 ------- null} + -t 36.5048 -s 1 -d 3 -p ack -e 40 -c 0 -i 768 -a 1 -x {1.1.3.0 0.0.3.0 377 ------- null} - -t 36.5048 -s 1 -d 3 -p ack -e 40 -c 0 -i 768 -a 1 -x {1.1.3.0 0.0.3.0 377 ------- null} h -t 36.5048 -s 1 -d 3 -p ack -e 40 -c 0 -i 768 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 36.5064 -s 28 -d 1 -p ack -e 40 -c 0 -i 769 -a 1 -x {1.1.3.0 0.0.3.0 378 ------- null} + -t 36.5064 -s 1 -d 3 -p ack -e 40 -c 0 -i 769 -a 1 -x {1.1.3.0 0.0.3.0 378 ------- null} - -t 36.5064 -s 1 -d 3 -p ack -e 40 -c 0 -i 769 -a 1 -x {1.1.3.0 0.0.3.0 378 ------- null} h -t 36.5064 -s 1 -d 3 -p ack -e 40 -c 0 -i 769 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 36.508 -s 28 -d 1 -p ack -e 40 -c 0 -i 770 -a 1 -x {1.1.3.0 0.0.3.0 379 ------- null} + -t 36.508 -s 1 -d 3 -p ack -e 40 -c 0 -i 770 -a 1 -x {1.1.3.0 0.0.3.0 379 ------- null} - -t 36.508 -s 1 -d 3 -p ack -e 40 -c 0 -i 770 -a 1 -x {1.1.3.0 0.0.3.0 379 ------- null} h -t 36.508 -s 1 -d 3 -p ack -e 40 -c 0 -i 770 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 36.5096 -s 28 -d 1 -p ack -e 40 -c 0 -i 771 -a 1 -x {1.1.3.0 0.0.3.0 380 ------- null} + -t 36.5096 -s 1 -d 3 -p ack -e 40 -c 0 -i 771 -a 1 -x {1.1.3.0 0.0.3.0 380 ------- null} - -t 36.5096 -s 1 -d 3 -p ack -e 40 -c 0 -i 771 -a 1 -x {1.1.3.0 0.0.3.0 380 ------- null} h -t 36.5096 -s 1 -d 3 -p ack -e 40 -c 0 -i 771 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 36.5112 -s 28 -d 1 -p ack -e 40 -c 0 -i 772 -a 1 -x {1.1.3.0 0.0.3.0 381 ------- null} + -t 36.5112 -s 1 -d 3 -p ack -e 40 -c 0 -i 772 -a 1 -x {1.1.3.0 0.0.3.0 381 ------- null} - -t 36.5112 -s 1 -d 3 -p ack -e 40 -c 0 -i 772 -a 1 -x {1.1.3.0 0.0.3.0 381 ------- null} h -t 36.5112 -s 1 -d 3 -p ack -e 40 -c 0 -i 772 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 36.5128 -s 28 -d 1 -p ack -e 40 -c 0 -i 773 -a 1 -x {1.1.3.0 0.0.3.0 382 ------- null} + -t 36.5128 -s 1 -d 3 -p ack -e 40 -c 0 -i 773 -a 1 -x {1.1.3.0 0.0.3.0 382 ------- null} - -t 36.5128 -s 1 -d 3 -p ack -e 40 -c 0 -i 773 -a 1 -x {1.1.3.0 0.0.3.0 382 ------- null} h -t 36.5128 -s 1 -d 3 -p ack -e 40 -c 0 -i 773 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 36.5144 -s 28 -d 1 -p ack -e 40 -c 0 -i 774 -a 1 -x {1.1.3.0 0.0.3.0 383 ------- null} + -t 36.5144 -s 1 -d 3 -p ack -e 40 -c 0 -i 774 -a 1 -x {1.1.3.0 0.0.3.0 383 ------- null} - -t 36.5144 -s 1 -d 3 -p ack -e 40 -c 0 -i 774 -a 1 -x {1.1.3.0 0.0.3.0 383 ------- null} h -t 36.5144 -s 1 -d 3 -p ack -e 40 -c 0 -i 774 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 36.516 -s 28 -d 1 -p ack -e 40 -c 0 -i 775 -a 1 -x {1.1.3.0 0.0.3.0 384 ------- null} + -t 36.516 -s 1 -d 3 -p ack -e 40 -c 0 -i 775 -a 1 -x {1.1.3.0 0.0.3.0 384 ------- null} - -t 36.516 -s 1 -d 3 -p ack -e 40 -c 0 -i 775 -a 1 -x {1.1.3.0 0.0.3.0 384 ------- null} h -t 36.516 -s 1 -d 3 -p ack -e 40 -c 0 -i 775 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 36.5176 -s 28 -d 1 -p ack -e 40 -c 0 -i 776 -a 1 -x {1.1.3.0 0.0.3.0 385 ------- null} + -t 36.5176 -s 1 -d 3 -p ack -e 40 -c 0 -i 776 -a 1 -x {1.1.3.0 0.0.3.0 385 ------- null} - -t 36.5176 -s 1 -d 3 -p ack -e 40 -c 0 -i 776 -a 1 -x {1.1.3.0 0.0.3.0 385 ------- null} h -t 36.5176 -s 1 -d 3 -p ack -e 40 -c 0 -i 776 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 36.5192 -s 28 -d 1 -p ack -e 40 -c 0 -i 777 -a 1 -x {1.1.3.0 0.0.3.0 386 ------- null} + -t 36.5192 -s 1 -d 3 -p ack -e 40 -c 0 -i 777 -a 1 -x {1.1.3.0 0.0.3.0 386 ------- null} - -t 36.5192 -s 1 -d 3 -p ack -e 40 -c 0 -i 777 -a 1 -x {1.1.3.0 0.0.3.0 386 ------- null} h -t 36.5192 -s 1 -d 3 -p ack -e 40 -c 0 -i 777 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 36.5208 -s 28 -d 1 -p ack -e 40 -c 0 -i 778 -a 1 -x {1.1.3.0 0.0.3.0 387 ------- null} + -t 36.5208 -s 1 -d 3 -p ack -e 40 -c 0 -i 778 -a 1 -x {1.1.3.0 0.0.3.0 387 ------- null} - -t 36.5208 -s 1 -d 3 -p ack -e 40 -c 0 -i 778 -a 1 -x {1.1.3.0 0.0.3.0 387 ------- null} h -t 36.5208 -s 1 -d 3 -p ack -e 40 -c 0 -i 778 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 36.5224 -s 28 -d 1 -p ack -e 40 -c 0 -i 779 -a 1 -x {1.1.3.0 0.0.3.0 388 ------- null} + -t 36.5224 -s 1 -d 3 -p ack -e 40 -c 0 -i 779 -a 1 -x {1.1.3.0 0.0.3.0 388 ------- null} - -t 36.5224 -s 1 -d 3 -p ack -e 40 -c 0 -i 779 -a 1 -x {1.1.3.0 0.0.3.0 388 ------- null} h -t 36.5224 -s 1 -d 3 -p ack -e 40 -c 0 -i 779 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 36.524 -s 28 -d 1 -p ack -e 40 -c 0 -i 780 -a 1 -x {1.1.3.0 0.0.3.0 389 ------- null} + -t 36.524 -s 1 -d 3 -p ack -e 40 -c 0 -i 780 -a 1 -x {1.1.3.0 0.0.3.0 389 ------- null} - -t 36.524 -s 1 -d 3 -p ack -e 40 -c 0 -i 780 -a 1 -x {1.1.3.0 0.0.3.0 389 ------- null} h -t 36.524 -s 1 -d 3 -p ack -e 40 -c 0 -i 780 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 36.5256 -s 28 -d 1 -p ack -e 40 -c 0 -i 781 -a 1 -x {1.1.3.0 0.0.3.0 390 ------- null} + -t 36.5256 -s 1 -d 3 -p ack -e 40 -c 0 -i 781 -a 1 -x {1.1.3.0 0.0.3.0 390 ------- null} - -t 36.5256 -s 1 -d 3 -p ack -e 40 -c 0 -i 781 -a 1 -x {1.1.3.0 0.0.3.0 390 ------- null} h -t 36.5256 -s 1 -d 3 -p ack -e 40 -c 0 -i 781 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 36.6352 -s 1 -d 3 -p ack -e 40 -c 0 -i 762 -a 1 -x {1.1.3.0 0.0.3.0 371 ------- null} + -t 36.6352 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 782 -a 0 -x {0.0.3.0 1.1.3.0 391 ------- null} - -t 36.6352 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 782 -a 0 -x {0.0.3.0 1.1.3.0 391 ------- null} h -t 36.6352 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 782 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 36.6368 -s 1 -d 3 -p ack -e 40 -c 0 -i 763 -a 1 -x {1.1.3.0 0.0.3.0 372 ------- null} + -t 36.6368 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {0.0.3.0 1.1.3.0 392 ------- null} - -t 36.6368 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {0.0.3.0 1.1.3.0 392 ------- null} h -t 36.6368 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 36.6384 -s 1 -d 3 -p ack -e 40 -c 0 -i 764 -a 1 -x {1.1.3.0 0.0.3.0 373 ------- null} + -t 36.6384 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 784 -a 0 -x {0.0.3.0 1.1.3.0 393 ------- null} - -t 36.6384 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 784 -a 0 -x {0.0.3.0 1.1.3.0 393 ------- null} h -t 36.6384 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 784 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 36.64 -s 1 -d 3 -p ack -e 40 -c 0 -i 765 -a 1 -x {1.1.3.0 0.0.3.0 374 ------- null} + -t 36.64 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {0.0.3.0 1.1.3.0 394 ------- null} - -t 36.64 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {0.0.3.0 1.1.3.0 394 ------- null} h -t 36.64 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 36.6416 -s 1 -d 3 -p ack -e 40 -c 0 -i 766 -a 1 -x {1.1.3.0 0.0.3.0 375 ------- null} + -t 36.6416 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 786 -a 0 -x {0.0.3.0 1.1.3.0 395 ------- null} - -t 36.6416 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 786 -a 0 -x {0.0.3.0 1.1.3.0 395 ------- null} h -t 36.6416 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 786 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 36.6432 -s 1 -d 3 -p ack -e 40 -c 0 -i 767 -a 1 -x {1.1.3.0 0.0.3.0 376 ------- null} + -t 36.6432 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {0.0.3.0 1.1.3.0 396 ------- null} - -t 36.6432 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {0.0.3.0 1.1.3.0 396 ------- null} h -t 36.6432 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 36.6448 -s 1 -d 3 -p ack -e 40 -c 0 -i 768 -a 1 -x {1.1.3.0 0.0.3.0 377 ------- null} + -t 36.6448 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 788 -a 0 -x {0.0.3.0 1.1.3.0 397 ------- null} - -t 36.6448 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 788 -a 0 -x {0.0.3.0 1.1.3.0 397 ------- null} h -t 36.6448 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 788 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 36.6464 -s 1 -d 3 -p ack -e 40 -c 0 -i 769 -a 1 -x {1.1.3.0 0.0.3.0 378 ------- null} + -t 36.6464 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {0.0.3.0 1.1.3.0 398 ------- null} - -t 36.6464 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {0.0.3.0 1.1.3.0 398 ------- null} h -t 36.6464 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 36.648 -s 1 -d 3 -p ack -e 40 -c 0 -i 770 -a 1 -x {1.1.3.0 0.0.3.0 379 ------- null} + -t 36.648 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 790 -a 0 -x {0.0.3.0 1.1.3.0 399 ------- null} - -t 36.648 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 790 -a 0 -x {0.0.3.0 1.1.3.0 399 ------- null} h -t 36.648 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 790 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 36.6496 -s 1 -d 3 -p ack -e 40 -c 0 -i 771 -a 1 -x {1.1.3.0 0.0.3.0 380 ------- null} + -t 36.6496 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {0.0.3.0 1.1.3.0 400 ------- null} - -t 36.6496 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {0.0.3.0 1.1.3.0 400 ------- null} h -t 36.6496 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 36.6512 -s 1 -d 3 -p ack -e 40 -c 0 -i 772 -a 1 -x {1.1.3.0 0.0.3.0 381 ------- null} + -t 36.6512 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 792 -a 0 -x {0.0.3.0 1.1.3.0 401 ------- null} - -t 36.6512 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 792 -a 0 -x {0.0.3.0 1.1.3.0 401 ------- null} h -t 36.6512 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 792 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 36.6528 -s 1 -d 3 -p ack -e 40 -c 0 -i 773 -a 1 -x {1.1.3.0 0.0.3.0 382 ------- null} + -t 36.6528 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {0.0.3.0 1.1.3.0 402 ------- null} - -t 36.6528 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {0.0.3.0 1.1.3.0 402 ------- null} h -t 36.6528 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 36.6544 -s 1 -d 3 -p ack -e 40 -c 0 -i 774 -a 1 -x {1.1.3.0 0.0.3.0 383 ------- null} + -t 36.6544 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 794 -a 0 -x {0.0.3.0 1.1.3.0 403 ------- null} - -t 36.6544 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 794 -a 0 -x {0.0.3.0 1.1.3.0 403 ------- null} h -t 36.6544 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 794 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 36.656 -s 1 -d 3 -p ack -e 40 -c 0 -i 775 -a 1 -x {1.1.3.0 0.0.3.0 384 ------- null} + -t 36.656 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {0.0.3.0 1.1.3.0 404 ------- null} - -t 36.656 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {0.0.3.0 1.1.3.0 404 ------- null} h -t 36.656 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 36.6576 -s 1 -d 3 -p ack -e 40 -c 0 -i 776 -a 1 -x {1.1.3.0 0.0.3.0 385 ------- null} + -t 36.6576 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 796 -a 0 -x {0.0.3.0 1.1.3.0 405 ------- null} - -t 36.6576 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 796 -a 0 -x {0.0.3.0 1.1.3.0 405 ------- null} h -t 36.6576 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 796 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 36.6592 -s 1 -d 3 -p ack -e 40 -c 0 -i 777 -a 1 -x {1.1.3.0 0.0.3.0 386 ------- null} + -t 36.6592 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {0.0.3.0 1.1.3.0 406 ------- null} - -t 36.6592 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {0.0.3.0 1.1.3.0 406 ------- null} h -t 36.6592 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 36.6608 -s 1 -d 3 -p ack -e 40 -c 0 -i 778 -a 1 -x {1.1.3.0 0.0.3.0 387 ------- null} + -t 36.6608 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 798 -a 0 -x {0.0.3.0 1.1.3.0 407 ------- null} - -t 36.6608 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 798 -a 0 -x {0.0.3.0 1.1.3.0 407 ------- null} h -t 36.6608 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 798 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 36.6624 -s 1 -d 3 -p ack -e 40 -c 0 -i 779 -a 1 -x {1.1.3.0 0.0.3.0 388 ------- null} + -t 36.6624 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {0.0.3.0 1.1.3.0 408 ------- null} - -t 36.6624 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {0.0.3.0 1.1.3.0 408 ------- null} h -t 36.6624 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 36.664 -s 1 -d 3 -p ack -e 40 -c 0 -i 780 -a 1 -x {1.1.3.0 0.0.3.0 389 ------- null} + -t 36.664 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 800 -a 0 -x {0.0.3.0 1.1.3.0 409 ------- null} - -t 36.664 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 800 -a 0 -x {0.0.3.0 1.1.3.0 409 ------- null} h -t 36.664 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 800 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 36.6656 -s 1 -d 3 -p ack -e 40 -c 0 -i 781 -a 1 -x {1.1.3.0 0.0.3.0 390 ------- null} + -t 36.6656 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {0.0.3.0 1.1.3.0 410 ------- null} - -t 36.6656 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {0.0.3.0 1.1.3.0 410 ------- null} h -t 36.6656 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 36.7968 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 782 -a 0 -x {0.0.3.0 1.1.3.0 391 ------- null} + -t 36.7968 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 782 -a 0 -x {0.0.3.0 1.1.3.0 391 ------- null} - -t 36.7968 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 782 -a 0 -x {0.0.3.0 1.1.3.0 391 ------- null} h -t 36.7968 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 782 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 36.7984 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {0.0.3.0 1.1.3.0 392 ------- null} + -t 36.7984 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {0.0.3.0 1.1.3.0 392 ------- null} - -t 36.7984 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {0.0.3.0 1.1.3.0 392 ------- null} h -t 36.7984 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 36.8 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 784 -a 0 -x {0.0.3.0 1.1.3.0 393 ------- null} + -t 36.8 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 784 -a 0 -x {0.0.3.0 1.1.3.0 393 ------- null} - -t 36.8 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 784 -a 0 -x {0.0.3.0 1.1.3.0 393 ------- null} h -t 36.8 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 784 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 36.8016 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {0.0.3.0 1.1.3.0 394 ------- null} + -t 36.8016 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {0.0.3.0 1.1.3.0 394 ------- null} - -t 36.8016 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {0.0.3.0 1.1.3.0 394 ------- null} h -t 36.8016 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 36.8032 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 786 -a 0 -x {0.0.3.0 1.1.3.0 395 ------- null} + -t 36.8032 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 786 -a 0 -x {0.0.3.0 1.1.3.0 395 ------- null} - -t 36.8032 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 786 -a 0 -x {0.0.3.0 1.1.3.0 395 ------- null} h -t 36.8032 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 786 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 36.8048 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {0.0.3.0 1.1.3.0 396 ------- null} + -t 36.8048 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {0.0.3.0 1.1.3.0 396 ------- null} - -t 36.8048 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {0.0.3.0 1.1.3.0 396 ------- null} h -t 36.8048 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 36.8064 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 788 -a 0 -x {0.0.3.0 1.1.3.0 397 ------- null} + -t 36.8064 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 788 -a 0 -x {0.0.3.0 1.1.3.0 397 ------- null} - -t 36.8064 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 788 -a 0 -x {0.0.3.0 1.1.3.0 397 ------- null} h -t 36.8064 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 788 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 36.808 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {0.0.3.0 1.1.3.0 398 ------- null} + -t 36.808 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {0.0.3.0 1.1.3.0 398 ------- null} - -t 36.808 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {0.0.3.0 1.1.3.0 398 ------- null} h -t 36.808 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 36.8096 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 790 -a 0 -x {0.0.3.0 1.1.3.0 399 ------- null} + -t 36.8096 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 790 -a 0 -x {0.0.3.0 1.1.3.0 399 ------- null} - -t 36.8096 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 790 -a 0 -x {0.0.3.0 1.1.3.0 399 ------- null} h -t 36.8096 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 790 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 36.8112 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {0.0.3.0 1.1.3.0 400 ------- null} + -t 36.8112 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {0.0.3.0 1.1.3.0 400 ------- null} - -t 36.8112 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {0.0.3.0 1.1.3.0 400 ------- null} h -t 36.8112 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 36.8128 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 792 -a 0 -x {0.0.3.0 1.1.3.0 401 ------- null} + -t 36.8128 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 792 -a 0 -x {0.0.3.0 1.1.3.0 401 ------- null} - -t 36.8128 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 792 -a 0 -x {0.0.3.0 1.1.3.0 401 ------- null} h -t 36.8128 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 792 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 36.8144 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {0.0.3.0 1.1.3.0 402 ------- null} + -t 36.8144 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {0.0.3.0 1.1.3.0 402 ------- null} - -t 36.8144 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {0.0.3.0 1.1.3.0 402 ------- null} h -t 36.8144 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 36.816 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 794 -a 0 -x {0.0.3.0 1.1.3.0 403 ------- null} + -t 36.816 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 794 -a 0 -x {0.0.3.0 1.1.3.0 403 ------- null} - -t 36.816 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 794 -a 0 -x {0.0.3.0 1.1.3.0 403 ------- null} h -t 36.816 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 794 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 36.8176 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {0.0.3.0 1.1.3.0 404 ------- null} + -t 36.8176 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {0.0.3.0 1.1.3.0 404 ------- null} - -t 36.8176 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {0.0.3.0 1.1.3.0 404 ------- null} h -t 36.8176 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 36.8192 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 796 -a 0 -x {0.0.3.0 1.1.3.0 405 ------- null} + -t 36.8192 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 796 -a 0 -x {0.0.3.0 1.1.3.0 405 ------- null} - -t 36.8192 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 796 -a 0 -x {0.0.3.0 1.1.3.0 405 ------- null} h -t 36.8192 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 796 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 36.8208 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {0.0.3.0 1.1.3.0 406 ------- null} + -t 36.8208 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {0.0.3.0 1.1.3.0 406 ------- null} - -t 36.8208 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {0.0.3.0 1.1.3.0 406 ------- null} h -t 36.8208 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 36.8224 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 798 -a 0 -x {0.0.3.0 1.1.3.0 407 ------- null} + -t 36.8224 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 798 -a 0 -x {0.0.3.0 1.1.3.0 407 ------- null} - -t 36.8224 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 798 -a 0 -x {0.0.3.0 1.1.3.0 407 ------- null} h -t 36.8224 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 798 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 36.824 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {0.0.3.0 1.1.3.0 408 ------- null} + -t 36.824 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {0.0.3.0 1.1.3.0 408 ------- null} - -t 36.824 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {0.0.3.0 1.1.3.0 408 ------- null} h -t 36.824 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 36.8256 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 800 -a 0 -x {0.0.3.0 1.1.3.0 409 ------- null} + -t 36.8256 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 800 -a 0 -x {0.0.3.0 1.1.3.0 409 ------- null} - -t 36.8256 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 800 -a 0 -x {0.0.3.0 1.1.3.0 409 ------- null} h -t 36.8256 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 800 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 36.8272 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {0.0.3.0 1.1.3.0 410 ------- null} + -t 36.8272 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {0.0.3.0 1.1.3.0 410 ------- null} - -t 36.8272 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {0.0.3.0 1.1.3.0 410 ------- null} h -t 36.8272 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.0984 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 782 -a 0 -x {0.0.3.0 1.1.3.0 391 ------- null} + -t 37.0984 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 782 -a 0 -x {0.0.3.0 1.1.3.0 391 ------- null} - -t 37.0984 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 782 -a 0 -x {0.0.3.0 1.1.3.0 391 ------- null} h -t 37.0984 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 782 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.1 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {0.0.3.0 1.1.3.0 392 ------- null} + -t 37.1 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {0.0.3.0 1.1.3.0 392 ------- null} - -t 37.1 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {0.0.3.0 1.1.3.0 392 ------- null} h -t 37.1 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.1016 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 784 -a 0 -x {0.0.3.0 1.1.3.0 393 ------- null} + -t 37.1016 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 784 -a 0 -x {0.0.3.0 1.1.3.0 393 ------- null} - -t 37.1016 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 784 -a 0 -x {0.0.3.0 1.1.3.0 393 ------- null} h -t 37.1016 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 784 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.1032 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {0.0.3.0 1.1.3.0 394 ------- null} + -t 37.1032 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {0.0.3.0 1.1.3.0 394 ------- null} - -t 37.1032 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {0.0.3.0 1.1.3.0 394 ------- null} h -t 37.1032 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.1048 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 786 -a 0 -x {0.0.3.0 1.1.3.0 395 ------- null} + -t 37.1048 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 786 -a 0 -x {0.0.3.0 1.1.3.0 395 ------- null} - -t 37.1048 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 786 -a 0 -x {0.0.3.0 1.1.3.0 395 ------- null} h -t 37.1048 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 786 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.1064 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {0.0.3.0 1.1.3.0 396 ------- null} + -t 37.1064 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {0.0.3.0 1.1.3.0 396 ------- null} - -t 37.1064 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {0.0.3.0 1.1.3.0 396 ------- null} h -t 37.1064 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.108 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 788 -a 0 -x {0.0.3.0 1.1.3.0 397 ------- null} + -t 37.108 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 788 -a 0 -x {0.0.3.0 1.1.3.0 397 ------- null} - -t 37.108 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 788 -a 0 -x {0.0.3.0 1.1.3.0 397 ------- null} h -t 37.108 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 788 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.1096 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {0.0.3.0 1.1.3.0 398 ------- null} + -t 37.1096 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {0.0.3.0 1.1.3.0 398 ------- null} - -t 37.1096 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {0.0.3.0 1.1.3.0 398 ------- null} h -t 37.1096 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.1112 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 790 -a 0 -x {0.0.3.0 1.1.3.0 399 ------- null} + -t 37.1112 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 790 -a 0 -x {0.0.3.0 1.1.3.0 399 ------- null} - -t 37.1112 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 790 -a 0 -x {0.0.3.0 1.1.3.0 399 ------- null} h -t 37.1112 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 790 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.1128 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {0.0.3.0 1.1.3.0 400 ------- null} + -t 37.1128 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {0.0.3.0 1.1.3.0 400 ------- null} - -t 37.1128 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {0.0.3.0 1.1.3.0 400 ------- null} h -t 37.1128 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.1144 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 792 -a 0 -x {0.0.3.0 1.1.3.0 401 ------- null} + -t 37.1144 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 792 -a 0 -x {0.0.3.0 1.1.3.0 401 ------- null} - -t 37.1144 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 792 -a 0 -x {0.0.3.0 1.1.3.0 401 ------- null} h -t 37.1144 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 792 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.116 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {0.0.3.0 1.1.3.0 402 ------- null} + -t 37.116 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {0.0.3.0 1.1.3.0 402 ------- null} - -t 37.116 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {0.0.3.0 1.1.3.0 402 ------- null} h -t 37.116 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.1176 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 794 -a 0 -x {0.0.3.0 1.1.3.0 403 ------- null} + -t 37.1176 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 794 -a 0 -x {0.0.3.0 1.1.3.0 403 ------- null} - -t 37.1176 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 794 -a 0 -x {0.0.3.0 1.1.3.0 403 ------- null} h -t 37.1176 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 794 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.1192 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {0.0.3.0 1.1.3.0 404 ------- null} + -t 37.1192 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {0.0.3.0 1.1.3.0 404 ------- null} - -t 37.1192 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {0.0.3.0 1.1.3.0 404 ------- null} h -t 37.1192 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.1208 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 796 -a 0 -x {0.0.3.0 1.1.3.0 405 ------- null} + -t 37.1208 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 796 -a 0 -x {0.0.3.0 1.1.3.0 405 ------- null} - -t 37.1208 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 796 -a 0 -x {0.0.3.0 1.1.3.0 405 ------- null} h -t 37.1208 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 796 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.1224 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {0.0.3.0 1.1.3.0 406 ------- null} + -t 37.1224 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {0.0.3.0 1.1.3.0 406 ------- null} - -t 37.1224 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {0.0.3.0 1.1.3.0 406 ------- null} h -t 37.1224 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.124 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 798 -a 0 -x {0.0.3.0 1.1.3.0 407 ------- null} + -t 37.124 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 798 -a 0 -x {0.0.3.0 1.1.3.0 407 ------- null} - -t 37.124 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 798 -a 0 -x {0.0.3.0 1.1.3.0 407 ------- null} h -t 37.124 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 798 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.1256 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {0.0.3.0 1.1.3.0 408 ------- null} + -t 37.1256 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {0.0.3.0 1.1.3.0 408 ------- null} - -t 37.1256 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {0.0.3.0 1.1.3.0 408 ------- null} h -t 37.1256 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.1272 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 800 -a 0 -x {0.0.3.0 1.1.3.0 409 ------- null} + -t 37.1272 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 800 -a 0 -x {0.0.3.0 1.1.3.0 409 ------- null} - -t 37.1272 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 800 -a 0 -x {0.0.3.0 1.1.3.0 409 ------- null} h -t 37.1272 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 800 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.1288 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {0.0.3.0 1.1.3.0 410 ------- null} + -t 37.1288 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {0.0.3.0 1.1.3.0 410 ------- null} - -t 37.1288 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {0.0.3.0 1.1.3.0 410 ------- null} h -t 37.1288 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.2 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 782 -a 0 -x {0.0.3.0 1.1.3.0 391 ------- null} + -t 37.2 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 782 -a 0 -x {0.0.3.0 1.1.3.0 391 ------- null} - -t 37.2 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 782 -a 0 -x {0.0.3.0 1.1.3.0 391 ------- null} h -t 37.2 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 782 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.2016 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {0.0.3.0 1.1.3.0 392 ------- null} + -t 37.2016 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {0.0.3.0 1.1.3.0 392 ------- null} - -t 37.2016 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {0.0.3.0 1.1.3.0 392 ------- null} h -t 37.2016 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.2032 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 784 -a 0 -x {0.0.3.0 1.1.3.0 393 ------- null} + -t 37.2032 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 784 -a 0 -x {0.0.3.0 1.1.3.0 393 ------- null} - -t 37.2032 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 784 -a 0 -x {0.0.3.0 1.1.3.0 393 ------- null} h -t 37.2032 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 784 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.2048 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {0.0.3.0 1.1.3.0 394 ------- null} + -t 37.2048 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {0.0.3.0 1.1.3.0 394 ------- null} - -t 37.2048 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {0.0.3.0 1.1.3.0 394 ------- null} h -t 37.2048 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.2064 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 786 -a 0 -x {0.0.3.0 1.1.3.0 395 ------- null} + -t 37.2064 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 786 -a 0 -x {0.0.3.0 1.1.3.0 395 ------- null} - -t 37.2064 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 786 -a 0 -x {0.0.3.0 1.1.3.0 395 ------- null} h -t 37.2064 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 786 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.208 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {0.0.3.0 1.1.3.0 396 ------- null} + -t 37.208 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {0.0.3.0 1.1.3.0 396 ------- null} - -t 37.208 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {0.0.3.0 1.1.3.0 396 ------- null} h -t 37.208 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.2096 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 788 -a 0 -x {0.0.3.0 1.1.3.0 397 ------- null} + -t 37.2096 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 788 -a 0 -x {0.0.3.0 1.1.3.0 397 ------- null} - -t 37.2096 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 788 -a 0 -x {0.0.3.0 1.1.3.0 397 ------- null} h -t 37.2096 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 788 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.2112 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {0.0.3.0 1.1.3.0 398 ------- null} + -t 37.2112 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {0.0.3.0 1.1.3.0 398 ------- null} - -t 37.2112 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {0.0.3.0 1.1.3.0 398 ------- null} h -t 37.2112 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.2128 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 790 -a 0 -x {0.0.3.0 1.1.3.0 399 ------- null} + -t 37.2128 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 790 -a 0 -x {0.0.3.0 1.1.3.0 399 ------- null} - -t 37.2128 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 790 -a 0 -x {0.0.3.0 1.1.3.0 399 ------- null} h -t 37.2128 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 790 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.2144 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {0.0.3.0 1.1.3.0 400 ------- null} + -t 37.2144 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {0.0.3.0 1.1.3.0 400 ------- null} - -t 37.2144 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {0.0.3.0 1.1.3.0 400 ------- null} h -t 37.2144 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.216 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 792 -a 0 -x {0.0.3.0 1.1.3.0 401 ------- null} + -t 37.216 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 792 -a 0 -x {0.0.3.0 1.1.3.0 401 ------- null} - -t 37.216 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 792 -a 0 -x {0.0.3.0 1.1.3.0 401 ------- null} h -t 37.216 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 792 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.2176 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {0.0.3.0 1.1.3.0 402 ------- null} + -t 37.2176 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {0.0.3.0 1.1.3.0 402 ------- null} - -t 37.2176 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {0.0.3.0 1.1.3.0 402 ------- null} h -t 37.2176 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.2192 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 794 -a 0 -x {0.0.3.0 1.1.3.0 403 ------- null} + -t 37.2192 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 794 -a 0 -x {0.0.3.0 1.1.3.0 403 ------- null} - -t 37.2192 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 794 -a 0 -x {0.0.3.0 1.1.3.0 403 ------- null} h -t 37.2192 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 794 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.2208 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {0.0.3.0 1.1.3.0 404 ------- null} + -t 37.2208 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {0.0.3.0 1.1.3.0 404 ------- null} - -t 37.2208 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {0.0.3.0 1.1.3.0 404 ------- null} h -t 37.2208 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.2224 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 796 -a 0 -x {0.0.3.0 1.1.3.0 405 ------- null} + -t 37.2224 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 796 -a 0 -x {0.0.3.0 1.1.3.0 405 ------- null} - -t 37.2224 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 796 -a 0 -x {0.0.3.0 1.1.3.0 405 ------- null} h -t 37.2224 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 796 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.224 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {0.0.3.0 1.1.3.0 406 ------- null} + -t 37.224 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {0.0.3.0 1.1.3.0 406 ------- null} - -t 37.224 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {0.0.3.0 1.1.3.0 406 ------- null} h -t 37.224 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.2256 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 798 -a 0 -x {0.0.3.0 1.1.3.0 407 ------- null} + -t 37.2256 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 798 -a 0 -x {0.0.3.0 1.1.3.0 407 ------- null} - -t 37.2256 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 798 -a 0 -x {0.0.3.0 1.1.3.0 407 ------- null} h -t 37.2256 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 798 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.2272 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {0.0.3.0 1.1.3.0 408 ------- null} + -t 37.2272 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {0.0.3.0 1.1.3.0 408 ------- null} - -t 37.2272 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {0.0.3.0 1.1.3.0 408 ------- null} h -t 37.2272 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.2288 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 800 -a 0 -x {0.0.3.0 1.1.3.0 409 ------- null} + -t 37.2288 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 800 -a 0 -x {0.0.3.0 1.1.3.0 409 ------- null} - -t 37.2288 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 800 -a 0 -x {0.0.3.0 1.1.3.0 409 ------- null} h -t 37.2288 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 800 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.2304 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {0.0.3.0 1.1.3.0 410 ------- null} + -t 37.2304 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {0.0.3.0 1.1.3.0 410 ------- null} - -t 37.2304 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {0.0.3.0 1.1.3.0 410 ------- null} h -t 37.2304 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.2816 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 782 -a 0 -x {0.0.3.0 1.1.3.0 391 ------- null} + -t 37.2816 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 782 -a 0 -x {0.0.3.0 1.1.3.0 391 ------- null} - -t 37.2816 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 782 -a 0 -x {0.0.3.0 1.1.3.0 391 ------- null} h -t 37.2816 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 782 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.2832 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {0.0.3.0 1.1.3.0 392 ------- null} + -t 37.2832 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {0.0.3.0 1.1.3.0 392 ------- null} - -t 37.2832 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {0.0.3.0 1.1.3.0 392 ------- null} h -t 37.2832 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.2848 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 784 -a 0 -x {0.0.3.0 1.1.3.0 393 ------- null} + -t 37.2848 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 784 -a 0 -x {0.0.3.0 1.1.3.0 393 ------- null} - -t 37.2848 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 784 -a 0 -x {0.0.3.0 1.1.3.0 393 ------- null} h -t 37.2848 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 784 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.2864 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {0.0.3.0 1.1.3.0 394 ------- null} + -t 37.2864 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {0.0.3.0 1.1.3.0 394 ------- null} - -t 37.2864 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {0.0.3.0 1.1.3.0 394 ------- null} h -t 37.2864 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.288 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 786 -a 0 -x {0.0.3.0 1.1.3.0 395 ------- null} + -t 37.288 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 786 -a 0 -x {0.0.3.0 1.1.3.0 395 ------- null} - -t 37.288 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 786 -a 0 -x {0.0.3.0 1.1.3.0 395 ------- null} h -t 37.288 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 786 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.2896 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {0.0.3.0 1.1.3.0 396 ------- null} + -t 37.2896 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {0.0.3.0 1.1.3.0 396 ------- null} - -t 37.2896 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {0.0.3.0 1.1.3.0 396 ------- null} h -t 37.2896 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.2912 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 788 -a 0 -x {0.0.3.0 1.1.3.0 397 ------- null} + -t 37.2912 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 788 -a 0 -x {0.0.3.0 1.1.3.0 397 ------- null} - -t 37.2912 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 788 -a 0 -x {0.0.3.0 1.1.3.0 397 ------- null} h -t 37.2912 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 788 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.2928 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {0.0.3.0 1.1.3.0 398 ------- null} + -t 37.2928 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {0.0.3.0 1.1.3.0 398 ------- null} - -t 37.2928 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {0.0.3.0 1.1.3.0 398 ------- null} h -t 37.2928 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.2944 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 790 -a 0 -x {0.0.3.0 1.1.3.0 399 ------- null} + -t 37.2944 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 790 -a 0 -x {0.0.3.0 1.1.3.0 399 ------- null} - -t 37.2944 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 790 -a 0 -x {0.0.3.0 1.1.3.0 399 ------- null} h -t 37.2944 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 790 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.296 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {0.0.3.0 1.1.3.0 400 ------- null} + -t 37.296 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {0.0.3.0 1.1.3.0 400 ------- null} - -t 37.296 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {0.0.3.0 1.1.3.0 400 ------- null} h -t 37.296 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.2976 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 792 -a 0 -x {0.0.3.0 1.1.3.0 401 ------- null} + -t 37.2976 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 792 -a 0 -x {0.0.3.0 1.1.3.0 401 ------- null} - -t 37.2976 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 792 -a 0 -x {0.0.3.0 1.1.3.0 401 ------- null} h -t 37.2976 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 792 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.2992 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {0.0.3.0 1.1.3.0 402 ------- null} + -t 37.2992 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {0.0.3.0 1.1.3.0 402 ------- null} - -t 37.2992 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {0.0.3.0 1.1.3.0 402 ------- null} h -t 37.2992 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.3008 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 794 -a 0 -x {0.0.3.0 1.1.3.0 403 ------- null} + -t 37.3008 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 794 -a 0 -x {0.0.3.0 1.1.3.0 403 ------- null} - -t 37.3008 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 794 -a 0 -x {0.0.3.0 1.1.3.0 403 ------- null} h -t 37.3008 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 794 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.3024 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {0.0.3.0 1.1.3.0 404 ------- null} + -t 37.3024 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {0.0.3.0 1.1.3.0 404 ------- null} - -t 37.3024 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {0.0.3.0 1.1.3.0 404 ------- null} h -t 37.3024 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.304 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 796 -a 0 -x {0.0.3.0 1.1.3.0 405 ------- null} + -t 37.304 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 796 -a 0 -x {0.0.3.0 1.1.3.0 405 ------- null} - -t 37.304 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 796 -a 0 -x {0.0.3.0 1.1.3.0 405 ------- null} h -t 37.304 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 796 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.3056 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {0.0.3.0 1.1.3.0 406 ------- null} + -t 37.3056 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {0.0.3.0 1.1.3.0 406 ------- null} - -t 37.3056 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {0.0.3.0 1.1.3.0 406 ------- null} h -t 37.3056 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.3072 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 798 -a 0 -x {0.0.3.0 1.1.3.0 407 ------- null} + -t 37.3072 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 798 -a 0 -x {0.0.3.0 1.1.3.0 407 ------- null} - -t 37.3072 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 798 -a 0 -x {0.0.3.0 1.1.3.0 407 ------- null} h -t 37.3072 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 798 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.3088 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {0.0.3.0 1.1.3.0 408 ------- null} + -t 37.3088 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {0.0.3.0 1.1.3.0 408 ------- null} - -t 37.3088 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {0.0.3.0 1.1.3.0 408 ------- null} h -t 37.3088 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.3104 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 800 -a 0 -x {0.0.3.0 1.1.3.0 409 ------- null} + -t 37.3104 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 800 -a 0 -x {0.0.3.0 1.1.3.0 409 ------- null} - -t 37.3104 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 800 -a 0 -x {0.0.3.0 1.1.3.0 409 ------- null} h -t 37.3104 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 800 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.312 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {0.0.3.0 1.1.3.0 410 ------- null} + -t 37.312 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {0.0.3.0 1.1.3.0 410 ------- null} - -t 37.312 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {0.0.3.0 1.1.3.0 410 ------- null} h -t 37.312 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.3632 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 782 -a 0 -x {0.0.3.0 1.1.3.0 391 ------- null} + -t 37.3632 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 782 -a 0 -x {0.0.3.0 1.1.3.0 391 ------- null} - -t 37.3632 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 782 -a 0 -x {0.0.3.0 1.1.3.0 391 ------- null} h -t 37.3632 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 782 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.3648 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {0.0.3.0 1.1.3.0 392 ------- null} + -t 37.3648 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {0.0.3.0 1.1.3.0 392 ------- null} - -t 37.3648 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {0.0.3.0 1.1.3.0 392 ------- null} h -t 37.3648 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.3664 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 784 -a 0 -x {0.0.3.0 1.1.3.0 393 ------- null} + -t 37.3664 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 784 -a 0 -x {0.0.3.0 1.1.3.0 393 ------- null} - -t 37.3664 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 784 -a 0 -x {0.0.3.0 1.1.3.0 393 ------- null} h -t 37.3664 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 784 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.368 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {0.0.3.0 1.1.3.0 394 ------- null} + -t 37.368 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {0.0.3.0 1.1.3.0 394 ------- null} - -t 37.368 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {0.0.3.0 1.1.3.0 394 ------- null} h -t 37.368 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.3696 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 786 -a 0 -x {0.0.3.0 1.1.3.0 395 ------- null} + -t 37.3696 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 786 -a 0 -x {0.0.3.0 1.1.3.0 395 ------- null} - -t 37.3696 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 786 -a 0 -x {0.0.3.0 1.1.3.0 395 ------- null} h -t 37.3696 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 786 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.3712 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {0.0.3.0 1.1.3.0 396 ------- null} + -t 37.3712 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {0.0.3.0 1.1.3.0 396 ------- null} - -t 37.3712 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {0.0.3.0 1.1.3.0 396 ------- null} h -t 37.3712 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.3728 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 788 -a 0 -x {0.0.3.0 1.1.3.0 397 ------- null} + -t 37.3728 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 788 -a 0 -x {0.0.3.0 1.1.3.0 397 ------- null} - -t 37.3728 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 788 -a 0 -x {0.0.3.0 1.1.3.0 397 ------- null} h -t 37.3728 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 788 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.3744 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {0.0.3.0 1.1.3.0 398 ------- null} + -t 37.3744 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {0.0.3.0 1.1.3.0 398 ------- null} - -t 37.3744 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {0.0.3.0 1.1.3.0 398 ------- null} h -t 37.3744 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.376 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 790 -a 0 -x {0.0.3.0 1.1.3.0 399 ------- null} + -t 37.376 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 790 -a 0 -x {0.0.3.0 1.1.3.0 399 ------- null} - -t 37.376 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 790 -a 0 -x {0.0.3.0 1.1.3.0 399 ------- null} h -t 37.376 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 790 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.3776 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {0.0.3.0 1.1.3.0 400 ------- null} + -t 37.3776 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {0.0.3.0 1.1.3.0 400 ------- null} - -t 37.3776 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {0.0.3.0 1.1.3.0 400 ------- null} h -t 37.3776 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.3792 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 792 -a 0 -x {0.0.3.0 1.1.3.0 401 ------- null} + -t 37.3792 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 792 -a 0 -x {0.0.3.0 1.1.3.0 401 ------- null} - -t 37.3792 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 792 -a 0 -x {0.0.3.0 1.1.3.0 401 ------- null} h -t 37.3792 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 792 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.3808 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {0.0.3.0 1.1.3.0 402 ------- null} + -t 37.3808 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {0.0.3.0 1.1.3.0 402 ------- null} - -t 37.3808 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {0.0.3.0 1.1.3.0 402 ------- null} h -t 37.3808 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.3824 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 794 -a 0 -x {0.0.3.0 1.1.3.0 403 ------- null} + -t 37.3824 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 794 -a 0 -x {0.0.3.0 1.1.3.0 403 ------- null} - -t 37.3824 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 794 -a 0 -x {0.0.3.0 1.1.3.0 403 ------- null} h -t 37.3824 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 794 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.384 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {0.0.3.0 1.1.3.0 404 ------- null} + -t 37.384 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {0.0.3.0 1.1.3.0 404 ------- null} - -t 37.384 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {0.0.3.0 1.1.3.0 404 ------- null} h -t 37.384 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.3856 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 796 -a 0 -x {0.0.3.0 1.1.3.0 405 ------- null} + -t 37.3856 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 796 -a 0 -x {0.0.3.0 1.1.3.0 405 ------- null} - -t 37.3856 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 796 -a 0 -x {0.0.3.0 1.1.3.0 405 ------- null} h -t 37.3856 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 796 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.3872 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {0.0.3.0 1.1.3.0 406 ------- null} + -t 37.3872 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {0.0.3.0 1.1.3.0 406 ------- null} - -t 37.3872 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {0.0.3.0 1.1.3.0 406 ------- null} h -t 37.3872 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.3888 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 798 -a 0 -x {0.0.3.0 1.1.3.0 407 ------- null} + -t 37.3888 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 798 -a 0 -x {0.0.3.0 1.1.3.0 407 ------- null} - -t 37.3888 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 798 -a 0 -x {0.0.3.0 1.1.3.0 407 ------- null} h -t 37.3888 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 798 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.3904 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {0.0.3.0 1.1.3.0 408 ------- null} + -t 37.3904 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {0.0.3.0 1.1.3.0 408 ------- null} - -t 37.3904 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {0.0.3.0 1.1.3.0 408 ------- null} h -t 37.3904 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.392 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 800 -a 0 -x {0.0.3.0 1.1.3.0 409 ------- null} + -t 37.392 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 800 -a 0 -x {0.0.3.0 1.1.3.0 409 ------- null} - -t 37.392 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 800 -a 0 -x {0.0.3.0 1.1.3.0 409 ------- null} h -t 37.392 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 800 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.3936 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {0.0.3.0 1.1.3.0 410 ------- null} + -t 37.3936 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {0.0.3.0 1.1.3.0 410 ------- null} - -t 37.3936 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {0.0.3.0 1.1.3.0 410 ------- null} h -t 37.3936 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 37.4248 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 782 -a 0 -x {0.0.3.0 1.1.3.0 391 ------- null} + -t 37.4248 -s 21 -d 28 -p ack -e 40 -c 0 -i 802 -a 1 -x {1.1.3.0 0.0.3.0 391 ------- null} - -t 37.4248 -s 21 -d 28 -p ack -e 40 -c 0 -i 802 -a 1 -x {1.1.3.0 0.0.3.0 391 ------- null} h -t 37.4248 -s 21 -d 28 -p ack -e 40 -c 0 -i 802 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 37.4264 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {0.0.3.0 1.1.3.0 392 ------- null} + -t 37.4264 -s 21 -d 28 -p ack -e 40 -c 0 -i 803 -a 1 -x {1.1.3.0 0.0.3.0 392 ------- null} - -t 37.4264 -s 21 -d 28 -p ack -e 40 -c 0 -i 803 -a 1 -x {1.1.3.0 0.0.3.0 392 ------- null} h -t 37.4264 -s 21 -d 28 -p ack -e 40 -c 0 -i 803 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 37.428 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 784 -a 0 -x {0.0.3.0 1.1.3.0 393 ------- null} + -t 37.428 -s 21 -d 28 -p ack -e 40 -c 0 -i 804 -a 1 -x {1.1.3.0 0.0.3.0 393 ------- null} - -t 37.428 -s 21 -d 28 -p ack -e 40 -c 0 -i 804 -a 1 -x {1.1.3.0 0.0.3.0 393 ------- null} h -t 37.428 -s 21 -d 28 -p ack -e 40 -c 0 -i 804 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 37.4296 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {0.0.3.0 1.1.3.0 394 ------- null} + -t 37.4296 -s 21 -d 28 -p ack -e 40 -c 0 -i 805 -a 1 -x {1.1.3.0 0.0.3.0 394 ------- null} - -t 37.4296 -s 21 -d 28 -p ack -e 40 -c 0 -i 805 -a 1 -x {1.1.3.0 0.0.3.0 394 ------- null} h -t 37.4296 -s 21 -d 28 -p ack -e 40 -c 0 -i 805 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 37.4312 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 786 -a 0 -x {0.0.3.0 1.1.3.0 395 ------- null} + -t 37.4312 -s 21 -d 28 -p ack -e 40 -c 0 -i 806 -a 1 -x {1.1.3.0 0.0.3.0 395 ------- null} - -t 37.4312 -s 21 -d 28 -p ack -e 40 -c 0 -i 806 -a 1 -x {1.1.3.0 0.0.3.0 395 ------- null} h -t 37.4312 -s 21 -d 28 -p ack -e 40 -c 0 -i 806 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 37.4328 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {0.0.3.0 1.1.3.0 396 ------- null} + -t 37.4328 -s 21 -d 28 -p ack -e 40 -c 0 -i 807 -a 1 -x {1.1.3.0 0.0.3.0 396 ------- null} - -t 37.4328 -s 21 -d 28 -p ack -e 40 -c 0 -i 807 -a 1 -x {1.1.3.0 0.0.3.0 396 ------- null} h -t 37.4328 -s 21 -d 28 -p ack -e 40 -c 0 -i 807 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 37.4344 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 788 -a 0 -x {0.0.3.0 1.1.3.0 397 ------- null} + -t 37.4344 -s 21 -d 28 -p ack -e 40 -c 0 -i 808 -a 1 -x {1.1.3.0 0.0.3.0 397 ------- null} - -t 37.4344 -s 21 -d 28 -p ack -e 40 -c 0 -i 808 -a 1 -x {1.1.3.0 0.0.3.0 397 ------- null} h -t 37.4344 -s 21 -d 28 -p ack -e 40 -c 0 -i 808 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 37.436 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {0.0.3.0 1.1.3.0 398 ------- null} + -t 37.436 -s 21 -d 28 -p ack -e 40 -c 0 -i 809 -a 1 -x {1.1.3.0 0.0.3.0 398 ------- null} - -t 37.436 -s 21 -d 28 -p ack -e 40 -c 0 -i 809 -a 1 -x {1.1.3.0 0.0.3.0 398 ------- null} h -t 37.436 -s 21 -d 28 -p ack -e 40 -c 0 -i 809 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 37.4376 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 790 -a 0 -x {0.0.3.0 1.1.3.0 399 ------- null} + -t 37.4376 -s 21 -d 28 -p ack -e 40 -c 0 -i 810 -a 1 -x {1.1.3.0 0.0.3.0 399 ------- null} - -t 37.4376 -s 21 -d 28 -p ack -e 40 -c 0 -i 810 -a 1 -x {1.1.3.0 0.0.3.0 399 ------- null} h -t 37.4376 -s 21 -d 28 -p ack -e 40 -c 0 -i 810 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 37.4392 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {0.0.3.0 1.1.3.0 400 ------- null} + -t 37.4392 -s 21 -d 28 -p ack -e 40 -c 0 -i 811 -a 1 -x {1.1.3.0 0.0.3.0 400 ------- null} - -t 37.4392 -s 21 -d 28 -p ack -e 40 -c 0 -i 811 -a 1 -x {1.1.3.0 0.0.3.0 400 ------- null} h -t 37.4392 -s 21 -d 28 -p ack -e 40 -c 0 -i 811 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 37.4408 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 792 -a 0 -x {0.0.3.0 1.1.3.0 401 ------- null} + -t 37.4408 -s 21 -d 28 -p ack -e 40 -c 0 -i 812 -a 1 -x {1.1.3.0 0.0.3.0 401 ------- null} - -t 37.4408 -s 21 -d 28 -p ack -e 40 -c 0 -i 812 -a 1 -x {1.1.3.0 0.0.3.0 401 ------- null} h -t 37.4408 -s 21 -d 28 -p ack -e 40 -c 0 -i 812 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 37.4424 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {0.0.3.0 1.1.3.0 402 ------- null} + -t 37.4424 -s 21 -d 28 -p ack -e 40 -c 0 -i 813 -a 1 -x {1.1.3.0 0.0.3.0 402 ------- null} - -t 37.4424 -s 21 -d 28 -p ack -e 40 -c 0 -i 813 -a 1 -x {1.1.3.0 0.0.3.0 402 ------- null} h -t 37.4424 -s 21 -d 28 -p ack -e 40 -c 0 -i 813 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 37.444 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 794 -a 0 -x {0.0.3.0 1.1.3.0 403 ------- null} + -t 37.444 -s 21 -d 28 -p ack -e 40 -c 0 -i 814 -a 1 -x {1.1.3.0 0.0.3.0 403 ------- null} - -t 37.444 -s 21 -d 28 -p ack -e 40 -c 0 -i 814 -a 1 -x {1.1.3.0 0.0.3.0 403 ------- null} h -t 37.444 -s 21 -d 28 -p ack -e 40 -c 0 -i 814 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 37.4456 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {0.0.3.0 1.1.3.0 404 ------- null} + -t 37.4456 -s 21 -d 28 -p ack -e 40 -c 0 -i 815 -a 1 -x {1.1.3.0 0.0.3.0 404 ------- null} - -t 37.4456 -s 21 -d 28 -p ack -e 40 -c 0 -i 815 -a 1 -x {1.1.3.0 0.0.3.0 404 ------- null} h -t 37.4456 -s 21 -d 28 -p ack -e 40 -c 0 -i 815 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 37.4472 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 796 -a 0 -x {0.0.3.0 1.1.3.0 405 ------- null} + -t 37.4472 -s 21 -d 28 -p ack -e 40 -c 0 -i 816 -a 1 -x {1.1.3.0 0.0.3.0 405 ------- null} - -t 37.4472 -s 21 -d 28 -p ack -e 40 -c 0 -i 816 -a 1 -x {1.1.3.0 0.0.3.0 405 ------- null} h -t 37.4472 -s 21 -d 28 -p ack -e 40 -c 0 -i 816 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 37.4488 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {0.0.3.0 1.1.3.0 406 ------- null} + -t 37.4488 -s 21 -d 28 -p ack -e 40 -c 0 -i 817 -a 1 -x {1.1.3.0 0.0.3.0 406 ------- null} - -t 37.4488 -s 21 -d 28 -p ack -e 40 -c 0 -i 817 -a 1 -x {1.1.3.0 0.0.3.0 406 ------- null} h -t 37.4488 -s 21 -d 28 -p ack -e 40 -c 0 -i 817 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 37.4504 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 798 -a 0 -x {0.0.3.0 1.1.3.0 407 ------- null} + -t 37.4504 -s 21 -d 28 -p ack -e 40 -c 0 -i 818 -a 1 -x {1.1.3.0 0.0.3.0 407 ------- null} - -t 37.4504 -s 21 -d 28 -p ack -e 40 -c 0 -i 818 -a 1 -x {1.1.3.0 0.0.3.0 407 ------- null} h -t 37.4504 -s 21 -d 28 -p ack -e 40 -c 0 -i 818 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 37.452 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {0.0.3.0 1.1.3.0 408 ------- null} + -t 37.452 -s 21 -d 28 -p ack -e 40 -c 0 -i 819 -a 1 -x {1.1.3.0 0.0.3.0 408 ------- null} - -t 37.452 -s 21 -d 28 -p ack -e 40 -c 0 -i 819 -a 1 -x {1.1.3.0 0.0.3.0 408 ------- null} h -t 37.452 -s 21 -d 28 -p ack -e 40 -c 0 -i 819 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 37.4536 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 800 -a 0 -x {0.0.3.0 1.1.3.0 409 ------- null} + -t 37.4536 -s 21 -d 28 -p ack -e 40 -c 0 -i 820 -a 1 -x {1.1.3.0 0.0.3.0 409 ------- null} - -t 37.4536 -s 21 -d 28 -p ack -e 40 -c 0 -i 820 -a 1 -x {1.1.3.0 0.0.3.0 409 ------- null} h -t 37.4536 -s 21 -d 28 -p ack -e 40 -c 0 -i 820 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 37.4552 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {0.0.3.0 1.1.3.0 410 ------- null} + -t 37.4552 -s 21 -d 28 -p ack -e 40 -c 0 -i 821 -a 1 -x {1.1.3.0 0.0.3.0 410 ------- null} - -t 37.4552 -s 21 -d 28 -p ack -e 40 -c 0 -i 821 -a 1 -x {1.1.3.0 0.0.3.0 410 ------- null} h -t 37.4552 -s 21 -d 28 -p ack -e 40 -c 0 -i 821 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 37.7749 -s 21 -d 28 -p ack -e 40 -c 0 -i 802 -a 1 -x {1.1.3.0 0.0.3.0 391 ------- null} + -t 37.7749 -s 28 -d 1 -p ack -e 40 -c 0 -i 802 -a 1 -x {1.1.3.0 0.0.3.0 391 ------- null} - -t 37.7749 -s 28 -d 1 -p ack -e 40 -c 0 -i 802 -a 1 -x {1.1.3.0 0.0.3.0 391 ------- null} h -t 37.7749 -s 28 -d 1 -p ack -e 40 -c 0 -i 802 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 37.7765 -s 21 -d 28 -p ack -e 40 -c 0 -i 803 -a 1 -x {1.1.3.0 0.0.3.0 392 ------- null} + -t 37.7765 -s 28 -d 1 -p ack -e 40 -c 0 -i 803 -a 1 -x {1.1.3.0 0.0.3.0 392 ------- null} - -t 37.7765 -s 28 -d 1 -p ack -e 40 -c 0 -i 803 -a 1 -x {1.1.3.0 0.0.3.0 392 ------- null} h -t 37.7765 -s 28 -d 1 -p ack -e 40 -c 0 -i 803 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 37.7781 -s 21 -d 28 -p ack -e 40 -c 0 -i 804 -a 1 -x {1.1.3.0 0.0.3.0 393 ------- null} + -t 37.7781 -s 28 -d 1 -p ack -e 40 -c 0 -i 804 -a 1 -x {1.1.3.0 0.0.3.0 393 ------- null} - -t 37.7781 -s 28 -d 1 -p ack -e 40 -c 0 -i 804 -a 1 -x {1.1.3.0 0.0.3.0 393 ------- null} h -t 37.7781 -s 28 -d 1 -p ack -e 40 -c 0 -i 804 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 37.7797 -s 21 -d 28 -p ack -e 40 -c 0 -i 805 -a 1 -x {1.1.3.0 0.0.3.0 394 ------- null} + -t 37.7797 -s 28 -d 1 -p ack -e 40 -c 0 -i 805 -a 1 -x {1.1.3.0 0.0.3.0 394 ------- null} - -t 37.7797 -s 28 -d 1 -p ack -e 40 -c 0 -i 805 -a 1 -x {1.1.3.0 0.0.3.0 394 ------- null} h -t 37.7797 -s 28 -d 1 -p ack -e 40 -c 0 -i 805 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 37.7813 -s 21 -d 28 -p ack -e 40 -c 0 -i 806 -a 1 -x {1.1.3.0 0.0.3.0 395 ------- null} + -t 37.7813 -s 28 -d 1 -p ack -e 40 -c 0 -i 806 -a 1 -x {1.1.3.0 0.0.3.0 395 ------- null} - -t 37.7813 -s 28 -d 1 -p ack -e 40 -c 0 -i 806 -a 1 -x {1.1.3.0 0.0.3.0 395 ------- null} h -t 37.7813 -s 28 -d 1 -p ack -e 40 -c 0 -i 806 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 37.7829 -s 21 -d 28 -p ack -e 40 -c 0 -i 807 -a 1 -x {1.1.3.0 0.0.3.0 396 ------- null} + -t 37.7829 -s 28 -d 1 -p ack -e 40 -c 0 -i 807 -a 1 -x {1.1.3.0 0.0.3.0 396 ------- null} - -t 37.7829 -s 28 -d 1 -p ack -e 40 -c 0 -i 807 -a 1 -x {1.1.3.0 0.0.3.0 396 ------- null} h -t 37.7829 -s 28 -d 1 -p ack -e 40 -c 0 -i 807 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 37.7845 -s 21 -d 28 -p ack -e 40 -c 0 -i 808 -a 1 -x {1.1.3.0 0.0.3.0 397 ------- null} + -t 37.7845 -s 28 -d 1 -p ack -e 40 -c 0 -i 808 -a 1 -x {1.1.3.0 0.0.3.0 397 ------- null} - -t 37.7845 -s 28 -d 1 -p ack -e 40 -c 0 -i 808 -a 1 -x {1.1.3.0 0.0.3.0 397 ------- null} h -t 37.7845 -s 28 -d 1 -p ack -e 40 -c 0 -i 808 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 37.7861 -s 21 -d 28 -p ack -e 40 -c 0 -i 809 -a 1 -x {1.1.3.0 0.0.3.0 398 ------- null} + -t 37.7861 -s 28 -d 1 -p ack -e 40 -c 0 -i 809 -a 1 -x {1.1.3.0 0.0.3.0 398 ------- null} - -t 37.7861 -s 28 -d 1 -p ack -e 40 -c 0 -i 809 -a 1 -x {1.1.3.0 0.0.3.0 398 ------- null} h -t 37.7861 -s 28 -d 1 -p ack -e 40 -c 0 -i 809 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 37.7877 -s 21 -d 28 -p ack -e 40 -c 0 -i 810 -a 1 -x {1.1.3.0 0.0.3.0 399 ------- null} + -t 37.7877 -s 28 -d 1 -p ack -e 40 -c 0 -i 810 -a 1 -x {1.1.3.0 0.0.3.0 399 ------- null} - -t 37.7877 -s 28 -d 1 -p ack -e 40 -c 0 -i 810 -a 1 -x {1.1.3.0 0.0.3.0 399 ------- null} h -t 37.7877 -s 28 -d 1 -p ack -e 40 -c 0 -i 810 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 37.7893 -s 21 -d 28 -p ack -e 40 -c 0 -i 811 -a 1 -x {1.1.3.0 0.0.3.0 400 ------- null} + -t 37.7893 -s 28 -d 1 -p ack -e 40 -c 0 -i 811 -a 1 -x {1.1.3.0 0.0.3.0 400 ------- null} - -t 37.7893 -s 28 -d 1 -p ack -e 40 -c 0 -i 811 -a 1 -x {1.1.3.0 0.0.3.0 400 ------- null} h -t 37.7893 -s 28 -d 1 -p ack -e 40 -c 0 -i 811 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 37.7909 -s 21 -d 28 -p ack -e 40 -c 0 -i 812 -a 1 -x {1.1.3.0 0.0.3.0 401 ------- null} + -t 37.7909 -s 28 -d 1 -p ack -e 40 -c 0 -i 812 -a 1 -x {1.1.3.0 0.0.3.0 401 ------- null} - -t 37.7909 -s 28 -d 1 -p ack -e 40 -c 0 -i 812 -a 1 -x {1.1.3.0 0.0.3.0 401 ------- null} h -t 37.7909 -s 28 -d 1 -p ack -e 40 -c 0 -i 812 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 37.7925 -s 21 -d 28 -p ack -e 40 -c 0 -i 813 -a 1 -x {1.1.3.0 0.0.3.0 402 ------- null} + -t 37.7925 -s 28 -d 1 -p ack -e 40 -c 0 -i 813 -a 1 -x {1.1.3.0 0.0.3.0 402 ------- null} - -t 37.7925 -s 28 -d 1 -p ack -e 40 -c 0 -i 813 -a 1 -x {1.1.3.0 0.0.3.0 402 ------- null} h -t 37.7925 -s 28 -d 1 -p ack -e 40 -c 0 -i 813 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 37.7941 -s 21 -d 28 -p ack -e 40 -c 0 -i 814 -a 1 -x {1.1.3.0 0.0.3.0 403 ------- null} + -t 37.7941 -s 28 -d 1 -p ack -e 40 -c 0 -i 814 -a 1 -x {1.1.3.0 0.0.3.0 403 ------- null} - -t 37.7941 -s 28 -d 1 -p ack -e 40 -c 0 -i 814 -a 1 -x {1.1.3.0 0.0.3.0 403 ------- null} h -t 37.7941 -s 28 -d 1 -p ack -e 40 -c 0 -i 814 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 37.7957 -s 21 -d 28 -p ack -e 40 -c 0 -i 815 -a 1 -x {1.1.3.0 0.0.3.0 404 ------- null} + -t 37.7957 -s 28 -d 1 -p ack -e 40 -c 0 -i 815 -a 1 -x {1.1.3.0 0.0.3.0 404 ------- null} - -t 37.7957 -s 28 -d 1 -p ack -e 40 -c 0 -i 815 -a 1 -x {1.1.3.0 0.0.3.0 404 ------- null} h -t 37.7957 -s 28 -d 1 -p ack -e 40 -c 0 -i 815 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 37.7973 -s 21 -d 28 -p ack -e 40 -c 0 -i 816 -a 1 -x {1.1.3.0 0.0.3.0 405 ------- null} + -t 37.7973 -s 28 -d 1 -p ack -e 40 -c 0 -i 816 -a 1 -x {1.1.3.0 0.0.3.0 405 ------- null} - -t 37.7973 -s 28 -d 1 -p ack -e 40 -c 0 -i 816 -a 1 -x {1.1.3.0 0.0.3.0 405 ------- null} h -t 37.7973 -s 28 -d 1 -p ack -e 40 -c 0 -i 816 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 37.7989 -s 21 -d 28 -p ack -e 40 -c 0 -i 817 -a 1 -x {1.1.3.0 0.0.3.0 406 ------- null} + -t 37.7989 -s 28 -d 1 -p ack -e 40 -c 0 -i 817 -a 1 -x {1.1.3.0 0.0.3.0 406 ------- null} - -t 37.7989 -s 28 -d 1 -p ack -e 40 -c 0 -i 817 -a 1 -x {1.1.3.0 0.0.3.0 406 ------- null} h -t 37.7989 -s 28 -d 1 -p ack -e 40 -c 0 -i 817 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 37.8005 -s 21 -d 28 -p ack -e 40 -c 0 -i 818 -a 1 -x {1.1.3.0 0.0.3.0 407 ------- null} + -t 37.8005 -s 28 -d 1 -p ack -e 40 -c 0 -i 818 -a 1 -x {1.1.3.0 0.0.3.0 407 ------- null} - -t 37.8005 -s 28 -d 1 -p ack -e 40 -c 0 -i 818 -a 1 -x {1.1.3.0 0.0.3.0 407 ------- null} h -t 37.8005 -s 28 -d 1 -p ack -e 40 -c 0 -i 818 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 37.8021 -s 21 -d 28 -p ack -e 40 -c 0 -i 819 -a 1 -x {1.1.3.0 0.0.3.0 408 ------- null} + -t 37.8021 -s 28 -d 1 -p ack -e 40 -c 0 -i 819 -a 1 -x {1.1.3.0 0.0.3.0 408 ------- null} - -t 37.8021 -s 28 -d 1 -p ack -e 40 -c 0 -i 819 -a 1 -x {1.1.3.0 0.0.3.0 408 ------- null} h -t 37.8021 -s 28 -d 1 -p ack -e 40 -c 0 -i 819 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 37.8037 -s 21 -d 28 -p ack -e 40 -c 0 -i 820 -a 1 -x {1.1.3.0 0.0.3.0 409 ------- null} + -t 37.8037 -s 28 -d 1 -p ack -e 40 -c 0 -i 820 -a 1 -x {1.1.3.0 0.0.3.0 409 ------- null} - -t 37.8037 -s 28 -d 1 -p ack -e 40 -c 0 -i 820 -a 1 -x {1.1.3.0 0.0.3.0 409 ------- null} h -t 37.8037 -s 28 -d 1 -p ack -e 40 -c 0 -i 820 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 37.8053 -s 21 -d 28 -p ack -e 40 -c 0 -i 821 -a 1 -x {1.1.3.0 0.0.3.0 410 ------- null} + -t 37.8053 -s 28 -d 1 -p ack -e 40 -c 0 -i 821 -a 1 -x {1.1.3.0 0.0.3.0 410 ------- null} - -t 37.8053 -s 28 -d 1 -p ack -e 40 -c 0 -i 821 -a 1 -x {1.1.3.0 0.0.3.0 410 ------- null} h -t 37.8053 -s 28 -d 1 -p ack -e 40 -c 0 -i 821 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 38.0749 -s 28 -d 1 -p ack -e 40 -c 0 -i 802 -a 1 -x {1.1.3.0 0.0.3.0 391 ------- null} + -t 38.0749 -s 1 -d 3 -p ack -e 40 -c 0 -i 802 -a 1 -x {1.1.3.0 0.0.3.0 391 ------- null} - -t 38.0749 -s 1 -d 3 -p ack -e 40 -c 0 -i 802 -a 1 -x {1.1.3.0 0.0.3.0 391 ------- null} h -t 38.0749 -s 1 -d 3 -p ack -e 40 -c 0 -i 802 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 38.0765 -s 28 -d 1 -p ack -e 40 -c 0 -i 803 -a 1 -x {1.1.3.0 0.0.3.0 392 ------- null} + -t 38.0765 -s 1 -d 3 -p ack -e 40 -c 0 -i 803 -a 1 -x {1.1.3.0 0.0.3.0 392 ------- null} - -t 38.0765 -s 1 -d 3 -p ack -e 40 -c 0 -i 803 -a 1 -x {1.1.3.0 0.0.3.0 392 ------- null} h -t 38.0765 -s 1 -d 3 -p ack -e 40 -c 0 -i 803 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 38.0781 -s 28 -d 1 -p ack -e 40 -c 0 -i 804 -a 1 -x {1.1.3.0 0.0.3.0 393 ------- null} + -t 38.0781 -s 1 -d 3 -p ack -e 40 -c 0 -i 804 -a 1 -x {1.1.3.0 0.0.3.0 393 ------- null} - -t 38.0781 -s 1 -d 3 -p ack -e 40 -c 0 -i 804 -a 1 -x {1.1.3.0 0.0.3.0 393 ------- null} h -t 38.0781 -s 1 -d 3 -p ack -e 40 -c 0 -i 804 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 38.0797 -s 28 -d 1 -p ack -e 40 -c 0 -i 805 -a 1 -x {1.1.3.0 0.0.3.0 394 ------- null} + -t 38.0797 -s 1 -d 3 -p ack -e 40 -c 0 -i 805 -a 1 -x {1.1.3.0 0.0.3.0 394 ------- null} - -t 38.0797 -s 1 -d 3 -p ack -e 40 -c 0 -i 805 -a 1 -x {1.1.3.0 0.0.3.0 394 ------- null} h -t 38.0797 -s 1 -d 3 -p ack -e 40 -c 0 -i 805 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 38.0813 -s 28 -d 1 -p ack -e 40 -c 0 -i 806 -a 1 -x {1.1.3.0 0.0.3.0 395 ------- null} + -t 38.0813 -s 1 -d 3 -p ack -e 40 -c 0 -i 806 -a 1 -x {1.1.3.0 0.0.3.0 395 ------- null} - -t 38.0813 -s 1 -d 3 -p ack -e 40 -c 0 -i 806 -a 1 -x {1.1.3.0 0.0.3.0 395 ------- null} h -t 38.0813 -s 1 -d 3 -p ack -e 40 -c 0 -i 806 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 38.0829 -s 28 -d 1 -p ack -e 40 -c 0 -i 807 -a 1 -x {1.1.3.0 0.0.3.0 396 ------- null} + -t 38.0829 -s 1 -d 3 -p ack -e 40 -c 0 -i 807 -a 1 -x {1.1.3.0 0.0.3.0 396 ------- null} - -t 38.0829 -s 1 -d 3 -p ack -e 40 -c 0 -i 807 -a 1 -x {1.1.3.0 0.0.3.0 396 ------- null} h -t 38.0829 -s 1 -d 3 -p ack -e 40 -c 0 -i 807 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 38.0845 -s 28 -d 1 -p ack -e 40 -c 0 -i 808 -a 1 -x {1.1.3.0 0.0.3.0 397 ------- null} + -t 38.0845 -s 1 -d 3 -p ack -e 40 -c 0 -i 808 -a 1 -x {1.1.3.0 0.0.3.0 397 ------- null} - -t 38.0845 -s 1 -d 3 -p ack -e 40 -c 0 -i 808 -a 1 -x {1.1.3.0 0.0.3.0 397 ------- null} h -t 38.0845 -s 1 -d 3 -p ack -e 40 -c 0 -i 808 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 38.0861 -s 28 -d 1 -p ack -e 40 -c 0 -i 809 -a 1 -x {1.1.3.0 0.0.3.0 398 ------- null} + -t 38.0861 -s 1 -d 3 -p ack -e 40 -c 0 -i 809 -a 1 -x {1.1.3.0 0.0.3.0 398 ------- null} - -t 38.0861 -s 1 -d 3 -p ack -e 40 -c 0 -i 809 -a 1 -x {1.1.3.0 0.0.3.0 398 ------- null} h -t 38.0861 -s 1 -d 3 -p ack -e 40 -c 0 -i 809 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 38.0877 -s 28 -d 1 -p ack -e 40 -c 0 -i 810 -a 1 -x {1.1.3.0 0.0.3.0 399 ------- null} + -t 38.0877 -s 1 -d 3 -p ack -e 40 -c 0 -i 810 -a 1 -x {1.1.3.0 0.0.3.0 399 ------- null} - -t 38.0877 -s 1 -d 3 -p ack -e 40 -c 0 -i 810 -a 1 -x {1.1.3.0 0.0.3.0 399 ------- null} h -t 38.0877 -s 1 -d 3 -p ack -e 40 -c 0 -i 810 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 38.0893 -s 28 -d 1 -p ack -e 40 -c 0 -i 811 -a 1 -x {1.1.3.0 0.0.3.0 400 ------- null} + -t 38.0893 -s 1 -d 3 -p ack -e 40 -c 0 -i 811 -a 1 -x {1.1.3.0 0.0.3.0 400 ------- null} - -t 38.0893 -s 1 -d 3 -p ack -e 40 -c 0 -i 811 -a 1 -x {1.1.3.0 0.0.3.0 400 ------- null} h -t 38.0893 -s 1 -d 3 -p ack -e 40 -c 0 -i 811 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 38.0909 -s 28 -d 1 -p ack -e 40 -c 0 -i 812 -a 1 -x {1.1.3.0 0.0.3.0 401 ------- null} + -t 38.0909 -s 1 -d 3 -p ack -e 40 -c 0 -i 812 -a 1 -x {1.1.3.0 0.0.3.0 401 ------- null} - -t 38.0909 -s 1 -d 3 -p ack -e 40 -c 0 -i 812 -a 1 -x {1.1.3.0 0.0.3.0 401 ------- null} h -t 38.0909 -s 1 -d 3 -p ack -e 40 -c 0 -i 812 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 38.0925 -s 28 -d 1 -p ack -e 40 -c 0 -i 813 -a 1 -x {1.1.3.0 0.0.3.0 402 ------- null} + -t 38.0925 -s 1 -d 3 -p ack -e 40 -c 0 -i 813 -a 1 -x {1.1.3.0 0.0.3.0 402 ------- null} - -t 38.0925 -s 1 -d 3 -p ack -e 40 -c 0 -i 813 -a 1 -x {1.1.3.0 0.0.3.0 402 ------- null} h -t 38.0925 -s 1 -d 3 -p ack -e 40 -c 0 -i 813 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 38.0941 -s 28 -d 1 -p ack -e 40 -c 0 -i 814 -a 1 -x {1.1.3.0 0.0.3.0 403 ------- null} + -t 38.0941 -s 1 -d 3 -p ack -e 40 -c 0 -i 814 -a 1 -x {1.1.3.0 0.0.3.0 403 ------- null} - -t 38.0941 -s 1 -d 3 -p ack -e 40 -c 0 -i 814 -a 1 -x {1.1.3.0 0.0.3.0 403 ------- null} h -t 38.0941 -s 1 -d 3 -p ack -e 40 -c 0 -i 814 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 38.0957 -s 28 -d 1 -p ack -e 40 -c 0 -i 815 -a 1 -x {1.1.3.0 0.0.3.0 404 ------- null} + -t 38.0957 -s 1 -d 3 -p ack -e 40 -c 0 -i 815 -a 1 -x {1.1.3.0 0.0.3.0 404 ------- null} - -t 38.0957 -s 1 -d 3 -p ack -e 40 -c 0 -i 815 -a 1 -x {1.1.3.0 0.0.3.0 404 ------- null} h -t 38.0957 -s 1 -d 3 -p ack -e 40 -c 0 -i 815 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 38.0973 -s 28 -d 1 -p ack -e 40 -c 0 -i 816 -a 1 -x {1.1.3.0 0.0.3.0 405 ------- null} + -t 38.0973 -s 1 -d 3 -p ack -e 40 -c 0 -i 816 -a 1 -x {1.1.3.0 0.0.3.0 405 ------- null} - -t 38.0973 -s 1 -d 3 -p ack -e 40 -c 0 -i 816 -a 1 -x {1.1.3.0 0.0.3.0 405 ------- null} h -t 38.0973 -s 1 -d 3 -p ack -e 40 -c 0 -i 816 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 38.0989 -s 28 -d 1 -p ack -e 40 -c 0 -i 817 -a 1 -x {1.1.3.0 0.0.3.0 406 ------- null} + -t 38.0989 -s 1 -d 3 -p ack -e 40 -c 0 -i 817 -a 1 -x {1.1.3.0 0.0.3.0 406 ------- null} - -t 38.0989 -s 1 -d 3 -p ack -e 40 -c 0 -i 817 -a 1 -x {1.1.3.0 0.0.3.0 406 ------- null} h -t 38.0989 -s 1 -d 3 -p ack -e 40 -c 0 -i 817 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 38.1005 -s 28 -d 1 -p ack -e 40 -c 0 -i 818 -a 1 -x {1.1.3.0 0.0.3.0 407 ------- null} + -t 38.1005 -s 1 -d 3 -p ack -e 40 -c 0 -i 818 -a 1 -x {1.1.3.0 0.0.3.0 407 ------- null} - -t 38.1005 -s 1 -d 3 -p ack -e 40 -c 0 -i 818 -a 1 -x {1.1.3.0 0.0.3.0 407 ------- null} h -t 38.1005 -s 1 -d 3 -p ack -e 40 -c 0 -i 818 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 38.1021 -s 28 -d 1 -p ack -e 40 -c 0 -i 819 -a 1 -x {1.1.3.0 0.0.3.0 408 ------- null} + -t 38.1021 -s 1 -d 3 -p ack -e 40 -c 0 -i 819 -a 1 -x {1.1.3.0 0.0.3.0 408 ------- null} - -t 38.1021 -s 1 -d 3 -p ack -e 40 -c 0 -i 819 -a 1 -x {1.1.3.0 0.0.3.0 408 ------- null} h -t 38.1021 -s 1 -d 3 -p ack -e 40 -c 0 -i 819 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 38.1037 -s 28 -d 1 -p ack -e 40 -c 0 -i 820 -a 1 -x {1.1.3.0 0.0.3.0 409 ------- null} + -t 38.1037 -s 1 -d 3 -p ack -e 40 -c 0 -i 820 -a 1 -x {1.1.3.0 0.0.3.0 409 ------- null} - -t 38.1037 -s 1 -d 3 -p ack -e 40 -c 0 -i 820 -a 1 -x {1.1.3.0 0.0.3.0 409 ------- null} h -t 38.1037 -s 1 -d 3 -p ack -e 40 -c 0 -i 820 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 38.1053 -s 28 -d 1 -p ack -e 40 -c 0 -i 821 -a 1 -x {1.1.3.0 0.0.3.0 410 ------- null} + -t 38.1053 -s 1 -d 3 -p ack -e 40 -c 0 -i 821 -a 1 -x {1.1.3.0 0.0.3.0 410 ------- null} - -t 38.1053 -s 1 -d 3 -p ack -e 40 -c 0 -i 821 -a 1 -x {1.1.3.0 0.0.3.0 410 ------- null} h -t 38.1053 -s 1 -d 3 -p ack -e 40 -c 0 -i 821 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 38.215 -s 1 -d 3 -p ack -e 40 -c 0 -i 802 -a 1 -x {1.1.3.0 0.0.3.0 391 ------- null} + -t 38.215 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 822 -a 0 -x {0.0.3.0 1.1.3.0 411 ------- null} - -t 38.215 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 822 -a 0 -x {0.0.3.0 1.1.3.0 411 ------- null} h -t 38.215 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 822 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.2166 -s 1 -d 3 -p ack -e 40 -c 0 -i 803 -a 1 -x {1.1.3.0 0.0.3.0 392 ------- null} + -t 38.2166 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {0.0.3.0 1.1.3.0 412 ------- null} - -t 38.2166 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {0.0.3.0 1.1.3.0 412 ------- null} h -t 38.2166 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.2182 -s 1 -d 3 -p ack -e 40 -c 0 -i 804 -a 1 -x {1.1.3.0 0.0.3.0 393 ------- null} + -t 38.2182 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 824 -a 0 -x {0.0.3.0 1.1.3.0 413 ------- null} - -t 38.2182 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 824 -a 0 -x {0.0.3.0 1.1.3.0 413 ------- null} h -t 38.2182 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 824 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.2198 -s 1 -d 3 -p ack -e 40 -c 0 -i 805 -a 1 -x {1.1.3.0 0.0.3.0 394 ------- null} + -t 38.2198 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {0.0.3.0 1.1.3.0 414 ------- null} - -t 38.2198 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {0.0.3.0 1.1.3.0 414 ------- null} h -t 38.2198 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.2214 -s 1 -d 3 -p ack -e 40 -c 0 -i 806 -a 1 -x {1.1.3.0 0.0.3.0 395 ------- null} + -t 38.2214 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 826 -a 0 -x {0.0.3.0 1.1.3.0 415 ------- null} - -t 38.2214 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 826 -a 0 -x {0.0.3.0 1.1.3.0 415 ------- null} h -t 38.2214 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 826 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.223 -s 1 -d 3 -p ack -e 40 -c 0 -i 807 -a 1 -x {1.1.3.0 0.0.3.0 396 ------- null} + -t 38.223 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {0.0.3.0 1.1.3.0 416 ------- null} - -t 38.223 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {0.0.3.0 1.1.3.0 416 ------- null} h -t 38.223 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.2246 -s 1 -d 3 -p ack -e 40 -c 0 -i 808 -a 1 -x {1.1.3.0 0.0.3.0 397 ------- null} + -t 38.2246 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 828 -a 0 -x {0.0.3.0 1.1.3.0 417 ------- null} - -t 38.2246 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 828 -a 0 -x {0.0.3.0 1.1.3.0 417 ------- null} h -t 38.2246 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 828 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.2262 -s 1 -d 3 -p ack -e 40 -c 0 -i 809 -a 1 -x {1.1.3.0 0.0.3.0 398 ------- null} + -t 38.2262 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {0.0.3.0 1.1.3.0 418 ------- null} - -t 38.2262 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {0.0.3.0 1.1.3.0 418 ------- null} h -t 38.2262 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.2278 -s 1 -d 3 -p ack -e 40 -c 0 -i 810 -a 1 -x {1.1.3.0 0.0.3.0 399 ------- null} + -t 38.2278 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 830 -a 0 -x {0.0.3.0 1.1.3.0 419 ------- null} - -t 38.2278 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 830 -a 0 -x {0.0.3.0 1.1.3.0 419 ------- null} h -t 38.2278 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 830 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.2294 -s 1 -d 3 -p ack -e 40 -c 0 -i 811 -a 1 -x {1.1.3.0 0.0.3.0 400 ------- null} + -t 38.2294 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {0.0.3.0 1.1.3.0 420 ------- null} - -t 38.2294 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {0.0.3.0 1.1.3.0 420 ------- null} h -t 38.2294 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.231 -s 1 -d 3 -p ack -e 40 -c 0 -i 812 -a 1 -x {1.1.3.0 0.0.3.0 401 ------- null} + -t 38.231 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 832 -a 0 -x {0.0.3.0 1.1.3.0 421 ------- null} - -t 38.231 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 832 -a 0 -x {0.0.3.0 1.1.3.0 421 ------- null} h -t 38.231 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 832 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.2326 -s 1 -d 3 -p ack -e 40 -c 0 -i 813 -a 1 -x {1.1.3.0 0.0.3.0 402 ------- null} + -t 38.2326 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {0.0.3.0 1.1.3.0 422 ------- null} - -t 38.2326 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {0.0.3.0 1.1.3.0 422 ------- null} h -t 38.2326 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.2342 -s 1 -d 3 -p ack -e 40 -c 0 -i 814 -a 1 -x {1.1.3.0 0.0.3.0 403 ------- null} + -t 38.2342 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 834 -a 0 -x {0.0.3.0 1.1.3.0 423 ------- null} - -t 38.2342 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 834 -a 0 -x {0.0.3.0 1.1.3.0 423 ------- null} h -t 38.2342 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 834 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.2358 -s 1 -d 3 -p ack -e 40 -c 0 -i 815 -a 1 -x {1.1.3.0 0.0.3.0 404 ------- null} + -t 38.2358 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {0.0.3.0 1.1.3.0 424 ------- null} - -t 38.2358 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {0.0.3.0 1.1.3.0 424 ------- null} h -t 38.2358 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.2374 -s 1 -d 3 -p ack -e 40 -c 0 -i 816 -a 1 -x {1.1.3.0 0.0.3.0 405 ------- null} + -t 38.2374 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 836 -a 0 -x {0.0.3.0 1.1.3.0 425 ------- null} - -t 38.2374 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 836 -a 0 -x {0.0.3.0 1.1.3.0 425 ------- null} h -t 38.2374 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 836 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.239 -s 1 -d 3 -p ack -e 40 -c 0 -i 817 -a 1 -x {1.1.3.0 0.0.3.0 406 ------- null} + -t 38.239 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {0.0.3.0 1.1.3.0 426 ------- null} - -t 38.239 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {0.0.3.0 1.1.3.0 426 ------- null} h -t 38.239 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.2406 -s 1 -d 3 -p ack -e 40 -c 0 -i 818 -a 1 -x {1.1.3.0 0.0.3.0 407 ------- null} + -t 38.2406 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 838 -a 0 -x {0.0.3.0 1.1.3.0 427 ------- null} - -t 38.2406 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 838 -a 0 -x {0.0.3.0 1.1.3.0 427 ------- null} h -t 38.2406 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 838 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.2422 -s 1 -d 3 -p ack -e 40 -c 0 -i 819 -a 1 -x {1.1.3.0 0.0.3.0 408 ------- null} + -t 38.2422 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {0.0.3.0 1.1.3.0 428 ------- null} - -t 38.2422 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {0.0.3.0 1.1.3.0 428 ------- null} h -t 38.2422 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.2438 -s 1 -d 3 -p ack -e 40 -c 0 -i 820 -a 1 -x {1.1.3.0 0.0.3.0 409 ------- null} + -t 38.2438 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 840 -a 0 -x {0.0.3.0 1.1.3.0 429 ------- null} - -t 38.2438 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 840 -a 0 -x {0.0.3.0 1.1.3.0 429 ------- null} h -t 38.2438 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 840 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.2454 -s 1 -d 3 -p ack -e 40 -c 0 -i 821 -a 1 -x {1.1.3.0 0.0.3.0 410 ------- null} + -t 38.2454 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {0.0.3.0 1.1.3.0 430 ------- null} - -t 38.2454 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {0.0.3.0 1.1.3.0 430 ------- null} h -t 38.2454 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.3766 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 822 -a 0 -x {0.0.3.0 1.1.3.0 411 ------- null} + -t 38.3766 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 822 -a 0 -x {0.0.3.0 1.1.3.0 411 ------- null} - -t 38.3766 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 822 -a 0 -x {0.0.3.0 1.1.3.0 411 ------- null} h -t 38.3766 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 822 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.3782 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {0.0.3.0 1.1.3.0 412 ------- null} + -t 38.3782 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {0.0.3.0 1.1.3.0 412 ------- null} - -t 38.3782 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {0.0.3.0 1.1.3.0 412 ------- null} h -t 38.3782 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.3798 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 824 -a 0 -x {0.0.3.0 1.1.3.0 413 ------- null} + -t 38.3798 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 824 -a 0 -x {0.0.3.0 1.1.3.0 413 ------- null} - -t 38.3798 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 824 -a 0 -x {0.0.3.0 1.1.3.0 413 ------- null} h -t 38.3798 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 824 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.3814 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {0.0.3.0 1.1.3.0 414 ------- null} + -t 38.3814 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {0.0.3.0 1.1.3.0 414 ------- null} - -t 38.3814 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {0.0.3.0 1.1.3.0 414 ------- null} h -t 38.3814 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.383 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 826 -a 0 -x {0.0.3.0 1.1.3.0 415 ------- null} + -t 38.383 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 826 -a 0 -x {0.0.3.0 1.1.3.0 415 ------- null} - -t 38.383 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 826 -a 0 -x {0.0.3.0 1.1.3.0 415 ------- null} h -t 38.383 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 826 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.3846 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {0.0.3.0 1.1.3.0 416 ------- null} + -t 38.3846 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {0.0.3.0 1.1.3.0 416 ------- null} - -t 38.3846 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {0.0.3.0 1.1.3.0 416 ------- null} h -t 38.3846 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.3862 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 828 -a 0 -x {0.0.3.0 1.1.3.0 417 ------- null} + -t 38.3862 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 828 -a 0 -x {0.0.3.0 1.1.3.0 417 ------- null} - -t 38.3862 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 828 -a 0 -x {0.0.3.0 1.1.3.0 417 ------- null} h -t 38.3862 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 828 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.3878 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {0.0.3.0 1.1.3.0 418 ------- null} + -t 38.3878 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {0.0.3.0 1.1.3.0 418 ------- null} - -t 38.3878 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {0.0.3.0 1.1.3.0 418 ------- null} h -t 38.3878 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.3894 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 830 -a 0 -x {0.0.3.0 1.1.3.0 419 ------- null} + -t 38.3894 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 830 -a 0 -x {0.0.3.0 1.1.3.0 419 ------- null} - -t 38.3894 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 830 -a 0 -x {0.0.3.0 1.1.3.0 419 ------- null} h -t 38.3894 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 830 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.391 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {0.0.3.0 1.1.3.0 420 ------- null} + -t 38.391 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {0.0.3.0 1.1.3.0 420 ------- null} - -t 38.391 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {0.0.3.0 1.1.3.0 420 ------- null} h -t 38.391 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.3926 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 832 -a 0 -x {0.0.3.0 1.1.3.0 421 ------- null} + -t 38.3926 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 832 -a 0 -x {0.0.3.0 1.1.3.0 421 ------- null} - -t 38.3926 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 832 -a 0 -x {0.0.3.0 1.1.3.0 421 ------- null} h -t 38.3926 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 832 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.3942 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {0.0.3.0 1.1.3.0 422 ------- null} + -t 38.3942 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {0.0.3.0 1.1.3.0 422 ------- null} - -t 38.3942 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {0.0.3.0 1.1.3.0 422 ------- null} h -t 38.3942 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.3958 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 834 -a 0 -x {0.0.3.0 1.1.3.0 423 ------- null} + -t 38.3958 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 834 -a 0 -x {0.0.3.0 1.1.3.0 423 ------- null} - -t 38.3958 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 834 -a 0 -x {0.0.3.0 1.1.3.0 423 ------- null} h -t 38.3958 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 834 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.3974 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {0.0.3.0 1.1.3.0 424 ------- null} + -t 38.3974 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {0.0.3.0 1.1.3.0 424 ------- null} - -t 38.3974 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {0.0.3.0 1.1.3.0 424 ------- null} h -t 38.3974 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.399 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 836 -a 0 -x {0.0.3.0 1.1.3.0 425 ------- null} + -t 38.399 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 836 -a 0 -x {0.0.3.0 1.1.3.0 425 ------- null} - -t 38.399 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 836 -a 0 -x {0.0.3.0 1.1.3.0 425 ------- null} h -t 38.399 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 836 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.4006 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {0.0.3.0 1.1.3.0 426 ------- null} + -t 38.4006 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {0.0.3.0 1.1.3.0 426 ------- null} - -t 38.4006 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {0.0.3.0 1.1.3.0 426 ------- null} h -t 38.4006 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.4022 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 838 -a 0 -x {0.0.3.0 1.1.3.0 427 ------- null} + -t 38.4022 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 838 -a 0 -x {0.0.3.0 1.1.3.0 427 ------- null} - -t 38.4022 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 838 -a 0 -x {0.0.3.0 1.1.3.0 427 ------- null} h -t 38.4022 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 838 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.4038 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {0.0.3.0 1.1.3.0 428 ------- null} + -t 38.4038 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {0.0.3.0 1.1.3.0 428 ------- null} - -t 38.4038 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {0.0.3.0 1.1.3.0 428 ------- null} h -t 38.4038 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.4054 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 840 -a 0 -x {0.0.3.0 1.1.3.0 429 ------- null} + -t 38.4054 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 840 -a 0 -x {0.0.3.0 1.1.3.0 429 ------- null} - -t 38.4054 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 840 -a 0 -x {0.0.3.0 1.1.3.0 429 ------- null} h -t 38.4054 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 840 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.407 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {0.0.3.0 1.1.3.0 430 ------- null} + -t 38.407 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {0.0.3.0 1.1.3.0 430 ------- null} - -t 38.407 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {0.0.3.0 1.1.3.0 430 ------- null} h -t 38.407 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.6782 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 822 -a 0 -x {0.0.3.0 1.1.3.0 411 ------- null} + -t 38.6782 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 822 -a 0 -x {0.0.3.0 1.1.3.0 411 ------- null} - -t 38.6782 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 822 -a 0 -x {0.0.3.0 1.1.3.0 411 ------- null} h -t 38.6782 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 822 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.6798 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {0.0.3.0 1.1.3.0 412 ------- null} + -t 38.6798 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {0.0.3.0 1.1.3.0 412 ------- null} - -t 38.6798 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {0.0.3.0 1.1.3.0 412 ------- null} h -t 38.6798 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.6814 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 824 -a 0 -x {0.0.3.0 1.1.3.0 413 ------- null} + -t 38.6814 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 824 -a 0 -x {0.0.3.0 1.1.3.0 413 ------- null} - -t 38.6814 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 824 -a 0 -x {0.0.3.0 1.1.3.0 413 ------- null} h -t 38.6814 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 824 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.683 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {0.0.3.0 1.1.3.0 414 ------- null} + -t 38.683 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {0.0.3.0 1.1.3.0 414 ------- null} - -t 38.683 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {0.0.3.0 1.1.3.0 414 ------- null} h -t 38.683 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.6846 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 826 -a 0 -x {0.0.3.0 1.1.3.0 415 ------- null} + -t 38.6846 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 826 -a 0 -x {0.0.3.0 1.1.3.0 415 ------- null} - -t 38.6846 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 826 -a 0 -x {0.0.3.0 1.1.3.0 415 ------- null} h -t 38.6846 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 826 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.6862 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {0.0.3.0 1.1.3.0 416 ------- null} + -t 38.6862 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {0.0.3.0 1.1.3.0 416 ------- null} - -t 38.6862 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {0.0.3.0 1.1.3.0 416 ------- null} h -t 38.6862 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.6878 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 828 -a 0 -x {0.0.3.0 1.1.3.0 417 ------- null} + -t 38.6878 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 828 -a 0 -x {0.0.3.0 1.1.3.0 417 ------- null} - -t 38.6878 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 828 -a 0 -x {0.0.3.0 1.1.3.0 417 ------- null} h -t 38.6878 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 828 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.6894 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {0.0.3.0 1.1.3.0 418 ------- null} + -t 38.6894 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {0.0.3.0 1.1.3.0 418 ------- null} - -t 38.6894 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {0.0.3.0 1.1.3.0 418 ------- null} h -t 38.6894 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.691 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 830 -a 0 -x {0.0.3.0 1.1.3.0 419 ------- null} + -t 38.691 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 830 -a 0 -x {0.0.3.0 1.1.3.0 419 ------- null} - -t 38.691 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 830 -a 0 -x {0.0.3.0 1.1.3.0 419 ------- null} h -t 38.691 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 830 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.6926 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {0.0.3.0 1.1.3.0 420 ------- null} + -t 38.6926 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {0.0.3.0 1.1.3.0 420 ------- null} - -t 38.6926 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {0.0.3.0 1.1.3.0 420 ------- null} h -t 38.6926 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.6942 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 832 -a 0 -x {0.0.3.0 1.1.3.0 421 ------- null} + -t 38.6942 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 832 -a 0 -x {0.0.3.0 1.1.3.0 421 ------- null} - -t 38.6942 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 832 -a 0 -x {0.0.3.0 1.1.3.0 421 ------- null} h -t 38.6942 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 832 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.6958 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {0.0.3.0 1.1.3.0 422 ------- null} + -t 38.6958 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {0.0.3.0 1.1.3.0 422 ------- null} - -t 38.6958 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {0.0.3.0 1.1.3.0 422 ------- null} h -t 38.6958 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.6974 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 834 -a 0 -x {0.0.3.0 1.1.3.0 423 ------- null} + -t 38.6974 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 834 -a 0 -x {0.0.3.0 1.1.3.0 423 ------- null} - -t 38.6974 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 834 -a 0 -x {0.0.3.0 1.1.3.0 423 ------- null} h -t 38.6974 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 834 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.699 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {0.0.3.0 1.1.3.0 424 ------- null} + -t 38.699 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {0.0.3.0 1.1.3.0 424 ------- null} - -t 38.699 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {0.0.3.0 1.1.3.0 424 ------- null} h -t 38.699 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.7006 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 836 -a 0 -x {0.0.3.0 1.1.3.0 425 ------- null} + -t 38.7006 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 836 -a 0 -x {0.0.3.0 1.1.3.0 425 ------- null} - -t 38.7006 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 836 -a 0 -x {0.0.3.0 1.1.3.0 425 ------- null} h -t 38.7006 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 836 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.7022 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {0.0.3.0 1.1.3.0 426 ------- null} + -t 38.7022 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {0.0.3.0 1.1.3.0 426 ------- null} - -t 38.7022 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {0.0.3.0 1.1.3.0 426 ------- null} h -t 38.7022 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.7038 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 838 -a 0 -x {0.0.3.0 1.1.3.0 427 ------- null} + -t 38.7038 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 838 -a 0 -x {0.0.3.0 1.1.3.0 427 ------- null} - -t 38.7038 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 838 -a 0 -x {0.0.3.0 1.1.3.0 427 ------- null} h -t 38.7038 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 838 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.7054 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {0.0.3.0 1.1.3.0 428 ------- null} + -t 38.7054 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {0.0.3.0 1.1.3.0 428 ------- null} - -t 38.7054 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {0.0.3.0 1.1.3.0 428 ------- null} h -t 38.7054 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.707 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 840 -a 0 -x {0.0.3.0 1.1.3.0 429 ------- null} + -t 38.707 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 840 -a 0 -x {0.0.3.0 1.1.3.0 429 ------- null} - -t 38.707 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 840 -a 0 -x {0.0.3.0 1.1.3.0 429 ------- null} h -t 38.707 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 840 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.7086 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {0.0.3.0 1.1.3.0 430 ------- null} + -t 38.7086 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {0.0.3.0 1.1.3.0 430 ------- null} - -t 38.7086 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {0.0.3.0 1.1.3.0 430 ------- null} h -t 38.7086 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.7798 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 822 -a 0 -x {0.0.3.0 1.1.3.0 411 ------- null} + -t 38.7798 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 822 -a 0 -x {0.0.3.0 1.1.3.0 411 ------- null} - -t 38.7798 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 822 -a 0 -x {0.0.3.0 1.1.3.0 411 ------- null} h -t 38.7798 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 822 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.7814 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {0.0.3.0 1.1.3.0 412 ------- null} + -t 38.7814 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {0.0.3.0 1.1.3.0 412 ------- null} - -t 38.7814 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {0.0.3.0 1.1.3.0 412 ------- null} h -t 38.7814 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.783 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 824 -a 0 -x {0.0.3.0 1.1.3.0 413 ------- null} + -t 38.783 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 824 -a 0 -x {0.0.3.0 1.1.3.0 413 ------- null} - -t 38.783 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 824 -a 0 -x {0.0.3.0 1.1.3.0 413 ------- null} h -t 38.783 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 824 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.7846 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {0.0.3.0 1.1.3.0 414 ------- null} + -t 38.7846 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {0.0.3.0 1.1.3.0 414 ------- null} - -t 38.7846 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {0.0.3.0 1.1.3.0 414 ------- null} h -t 38.7846 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.7862 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 826 -a 0 -x {0.0.3.0 1.1.3.0 415 ------- null} + -t 38.7862 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 826 -a 0 -x {0.0.3.0 1.1.3.0 415 ------- null} - -t 38.7862 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 826 -a 0 -x {0.0.3.0 1.1.3.0 415 ------- null} h -t 38.7862 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 826 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.7878 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {0.0.3.0 1.1.3.0 416 ------- null} + -t 38.7878 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {0.0.3.0 1.1.3.0 416 ------- null} - -t 38.7878 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {0.0.3.0 1.1.3.0 416 ------- null} h -t 38.7878 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.7894 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 828 -a 0 -x {0.0.3.0 1.1.3.0 417 ------- null} + -t 38.7894 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 828 -a 0 -x {0.0.3.0 1.1.3.0 417 ------- null} - -t 38.7894 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 828 -a 0 -x {0.0.3.0 1.1.3.0 417 ------- null} h -t 38.7894 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 828 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.791 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {0.0.3.0 1.1.3.0 418 ------- null} + -t 38.791 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {0.0.3.0 1.1.3.0 418 ------- null} - -t 38.791 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {0.0.3.0 1.1.3.0 418 ------- null} h -t 38.791 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.7926 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 830 -a 0 -x {0.0.3.0 1.1.3.0 419 ------- null} + -t 38.7926 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 830 -a 0 -x {0.0.3.0 1.1.3.0 419 ------- null} - -t 38.7926 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 830 -a 0 -x {0.0.3.0 1.1.3.0 419 ------- null} h -t 38.7926 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 830 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.7942 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {0.0.3.0 1.1.3.0 420 ------- null} + -t 38.7942 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {0.0.3.0 1.1.3.0 420 ------- null} - -t 38.7942 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {0.0.3.0 1.1.3.0 420 ------- null} h -t 38.7942 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.7958 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 832 -a 0 -x {0.0.3.0 1.1.3.0 421 ------- null} + -t 38.7958 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 832 -a 0 -x {0.0.3.0 1.1.3.0 421 ------- null} - -t 38.7958 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 832 -a 0 -x {0.0.3.0 1.1.3.0 421 ------- null} h -t 38.7958 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 832 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.7974 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {0.0.3.0 1.1.3.0 422 ------- null} + -t 38.7974 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {0.0.3.0 1.1.3.0 422 ------- null} - -t 38.7974 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {0.0.3.0 1.1.3.0 422 ------- null} h -t 38.7974 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.799 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 834 -a 0 -x {0.0.3.0 1.1.3.0 423 ------- null} + -t 38.799 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 834 -a 0 -x {0.0.3.0 1.1.3.0 423 ------- null} - -t 38.799 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 834 -a 0 -x {0.0.3.0 1.1.3.0 423 ------- null} h -t 38.799 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 834 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.8006 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {0.0.3.0 1.1.3.0 424 ------- null} + -t 38.8006 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {0.0.3.0 1.1.3.0 424 ------- null} - -t 38.8006 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {0.0.3.0 1.1.3.0 424 ------- null} h -t 38.8006 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.8022 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 836 -a 0 -x {0.0.3.0 1.1.3.0 425 ------- null} + -t 38.8022 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 836 -a 0 -x {0.0.3.0 1.1.3.0 425 ------- null} - -t 38.8022 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 836 -a 0 -x {0.0.3.0 1.1.3.0 425 ------- null} h -t 38.8022 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 836 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.8038 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {0.0.3.0 1.1.3.0 426 ------- null} + -t 38.8038 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {0.0.3.0 1.1.3.0 426 ------- null} - -t 38.8038 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {0.0.3.0 1.1.3.0 426 ------- null} h -t 38.8038 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.8054 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 838 -a 0 -x {0.0.3.0 1.1.3.0 427 ------- null} + -t 38.8054 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 838 -a 0 -x {0.0.3.0 1.1.3.0 427 ------- null} - -t 38.8054 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 838 -a 0 -x {0.0.3.0 1.1.3.0 427 ------- null} h -t 38.8054 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 838 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.807 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {0.0.3.0 1.1.3.0 428 ------- null} + -t 38.807 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {0.0.3.0 1.1.3.0 428 ------- null} - -t 38.807 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {0.0.3.0 1.1.3.0 428 ------- null} h -t 38.807 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.8086 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 840 -a 0 -x {0.0.3.0 1.1.3.0 429 ------- null} + -t 38.8086 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 840 -a 0 -x {0.0.3.0 1.1.3.0 429 ------- null} - -t 38.8086 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 840 -a 0 -x {0.0.3.0 1.1.3.0 429 ------- null} h -t 38.8086 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 840 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.8102 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {0.0.3.0 1.1.3.0 430 ------- null} + -t 38.8102 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {0.0.3.0 1.1.3.0 430 ------- null} - -t 38.8102 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {0.0.3.0 1.1.3.0 430 ------- null} h -t 38.8102 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.8614 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 822 -a 0 -x {0.0.3.0 1.1.3.0 411 ------- null} + -t 38.8614 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 822 -a 0 -x {0.0.3.0 1.1.3.0 411 ------- null} - -t 38.8614 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 822 -a 0 -x {0.0.3.0 1.1.3.0 411 ------- null} h -t 38.8614 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 822 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.863 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {0.0.3.0 1.1.3.0 412 ------- null} + -t 38.863 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {0.0.3.0 1.1.3.0 412 ------- null} - -t 38.863 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {0.0.3.0 1.1.3.0 412 ------- null} h -t 38.863 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.8646 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 824 -a 0 -x {0.0.3.0 1.1.3.0 413 ------- null} + -t 38.8646 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 824 -a 0 -x {0.0.3.0 1.1.3.0 413 ------- null} - -t 38.8646 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 824 -a 0 -x {0.0.3.0 1.1.3.0 413 ------- null} h -t 38.8646 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 824 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.8662 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {0.0.3.0 1.1.3.0 414 ------- null} + -t 38.8662 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {0.0.3.0 1.1.3.0 414 ------- null} - -t 38.8662 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {0.0.3.0 1.1.3.0 414 ------- null} h -t 38.8662 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.8678 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 826 -a 0 -x {0.0.3.0 1.1.3.0 415 ------- null} + -t 38.8678 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 826 -a 0 -x {0.0.3.0 1.1.3.0 415 ------- null} - -t 38.8678 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 826 -a 0 -x {0.0.3.0 1.1.3.0 415 ------- null} h -t 38.8678 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 826 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.8694 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {0.0.3.0 1.1.3.0 416 ------- null} + -t 38.8694 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {0.0.3.0 1.1.3.0 416 ------- null} - -t 38.8694 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {0.0.3.0 1.1.3.0 416 ------- null} h -t 38.8694 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.871 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 828 -a 0 -x {0.0.3.0 1.1.3.0 417 ------- null} + -t 38.871 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 828 -a 0 -x {0.0.3.0 1.1.3.0 417 ------- null} - -t 38.871 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 828 -a 0 -x {0.0.3.0 1.1.3.0 417 ------- null} h -t 38.871 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 828 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.8726 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {0.0.3.0 1.1.3.0 418 ------- null} + -t 38.8726 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {0.0.3.0 1.1.3.0 418 ------- null} - -t 38.8726 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {0.0.3.0 1.1.3.0 418 ------- null} h -t 38.8726 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.8742 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 830 -a 0 -x {0.0.3.0 1.1.3.0 419 ------- null} + -t 38.8742 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 830 -a 0 -x {0.0.3.0 1.1.3.0 419 ------- null} - -t 38.8742 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 830 -a 0 -x {0.0.3.0 1.1.3.0 419 ------- null} h -t 38.8742 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 830 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.8758 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {0.0.3.0 1.1.3.0 420 ------- null} + -t 38.8758 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {0.0.3.0 1.1.3.0 420 ------- null} - -t 38.8758 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {0.0.3.0 1.1.3.0 420 ------- null} h -t 38.8758 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.8774 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 832 -a 0 -x {0.0.3.0 1.1.3.0 421 ------- null} + -t 38.8774 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 832 -a 0 -x {0.0.3.0 1.1.3.0 421 ------- null} - -t 38.8774 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 832 -a 0 -x {0.0.3.0 1.1.3.0 421 ------- null} h -t 38.8774 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 832 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.879 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {0.0.3.0 1.1.3.0 422 ------- null} + -t 38.879 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {0.0.3.0 1.1.3.0 422 ------- null} - -t 38.879 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {0.0.3.0 1.1.3.0 422 ------- null} h -t 38.879 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.8806 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 834 -a 0 -x {0.0.3.0 1.1.3.0 423 ------- null} + -t 38.8806 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 834 -a 0 -x {0.0.3.0 1.1.3.0 423 ------- null} - -t 38.8806 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 834 -a 0 -x {0.0.3.0 1.1.3.0 423 ------- null} h -t 38.8806 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 834 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.8822 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {0.0.3.0 1.1.3.0 424 ------- null} + -t 38.8822 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {0.0.3.0 1.1.3.0 424 ------- null} - -t 38.8822 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {0.0.3.0 1.1.3.0 424 ------- null} h -t 38.8822 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.8838 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 836 -a 0 -x {0.0.3.0 1.1.3.0 425 ------- null} + -t 38.8838 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 836 -a 0 -x {0.0.3.0 1.1.3.0 425 ------- null} - -t 38.8838 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 836 -a 0 -x {0.0.3.0 1.1.3.0 425 ------- null} h -t 38.8838 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 836 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.8854 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {0.0.3.0 1.1.3.0 426 ------- null} + -t 38.8854 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {0.0.3.0 1.1.3.0 426 ------- null} - -t 38.8854 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {0.0.3.0 1.1.3.0 426 ------- null} h -t 38.8854 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.887 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 838 -a 0 -x {0.0.3.0 1.1.3.0 427 ------- null} + -t 38.887 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 838 -a 0 -x {0.0.3.0 1.1.3.0 427 ------- null} - -t 38.887 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 838 -a 0 -x {0.0.3.0 1.1.3.0 427 ------- null} h -t 38.887 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 838 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.8886 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {0.0.3.0 1.1.3.0 428 ------- null} + -t 38.8886 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {0.0.3.0 1.1.3.0 428 ------- null} - -t 38.8886 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {0.0.3.0 1.1.3.0 428 ------- null} h -t 38.8886 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.8902 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 840 -a 0 -x {0.0.3.0 1.1.3.0 429 ------- null} + -t 38.8902 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 840 -a 0 -x {0.0.3.0 1.1.3.0 429 ------- null} - -t 38.8902 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 840 -a 0 -x {0.0.3.0 1.1.3.0 429 ------- null} h -t 38.8902 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 840 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.8918 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {0.0.3.0 1.1.3.0 430 ------- null} + -t 38.8918 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {0.0.3.0 1.1.3.0 430 ------- null} - -t 38.8918 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {0.0.3.0 1.1.3.0 430 ------- null} h -t 38.8918 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.943 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 822 -a 0 -x {0.0.3.0 1.1.3.0 411 ------- null} + -t 38.943 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 822 -a 0 -x {0.0.3.0 1.1.3.0 411 ------- null} - -t 38.943 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 822 -a 0 -x {0.0.3.0 1.1.3.0 411 ------- null} h -t 38.943 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 822 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.9446 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {0.0.3.0 1.1.3.0 412 ------- null} + -t 38.9446 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {0.0.3.0 1.1.3.0 412 ------- null} - -t 38.9446 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {0.0.3.0 1.1.3.0 412 ------- null} h -t 38.9446 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.9462 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 824 -a 0 -x {0.0.3.0 1.1.3.0 413 ------- null} + -t 38.9462 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 824 -a 0 -x {0.0.3.0 1.1.3.0 413 ------- null} - -t 38.9462 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 824 -a 0 -x {0.0.3.0 1.1.3.0 413 ------- null} h -t 38.9462 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 824 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.9478 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {0.0.3.0 1.1.3.0 414 ------- null} + -t 38.9478 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {0.0.3.0 1.1.3.0 414 ------- null} - -t 38.9478 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {0.0.3.0 1.1.3.0 414 ------- null} h -t 38.9478 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.9494 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 826 -a 0 -x {0.0.3.0 1.1.3.0 415 ------- null} + -t 38.9494 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 826 -a 0 -x {0.0.3.0 1.1.3.0 415 ------- null} - -t 38.9494 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 826 -a 0 -x {0.0.3.0 1.1.3.0 415 ------- null} h -t 38.9494 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 826 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.951 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {0.0.3.0 1.1.3.0 416 ------- null} + -t 38.951 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {0.0.3.0 1.1.3.0 416 ------- null} - -t 38.951 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {0.0.3.0 1.1.3.0 416 ------- null} h -t 38.951 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.9526 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 828 -a 0 -x {0.0.3.0 1.1.3.0 417 ------- null} + -t 38.9526 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 828 -a 0 -x {0.0.3.0 1.1.3.0 417 ------- null} - -t 38.9526 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 828 -a 0 -x {0.0.3.0 1.1.3.0 417 ------- null} h -t 38.9526 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 828 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.9542 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {0.0.3.0 1.1.3.0 418 ------- null} + -t 38.9542 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {0.0.3.0 1.1.3.0 418 ------- null} - -t 38.9542 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {0.0.3.0 1.1.3.0 418 ------- null} h -t 38.9542 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.9558 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 830 -a 0 -x {0.0.3.0 1.1.3.0 419 ------- null} + -t 38.9558 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 830 -a 0 -x {0.0.3.0 1.1.3.0 419 ------- null} - -t 38.9558 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 830 -a 0 -x {0.0.3.0 1.1.3.0 419 ------- null} h -t 38.9558 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 830 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.9574 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {0.0.3.0 1.1.3.0 420 ------- null} + -t 38.9574 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {0.0.3.0 1.1.3.0 420 ------- null} - -t 38.9574 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {0.0.3.0 1.1.3.0 420 ------- null} h -t 38.9574 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.959 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 832 -a 0 -x {0.0.3.0 1.1.3.0 421 ------- null} + -t 38.959 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 832 -a 0 -x {0.0.3.0 1.1.3.0 421 ------- null} - -t 38.959 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 832 -a 0 -x {0.0.3.0 1.1.3.0 421 ------- null} h -t 38.959 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 832 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.9606 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {0.0.3.0 1.1.3.0 422 ------- null} + -t 38.9606 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {0.0.3.0 1.1.3.0 422 ------- null} - -t 38.9606 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {0.0.3.0 1.1.3.0 422 ------- null} h -t 38.9606 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.9622 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 834 -a 0 -x {0.0.3.0 1.1.3.0 423 ------- null} + -t 38.9622 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 834 -a 0 -x {0.0.3.0 1.1.3.0 423 ------- null} - -t 38.9622 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 834 -a 0 -x {0.0.3.0 1.1.3.0 423 ------- null} h -t 38.9622 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 834 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.9638 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {0.0.3.0 1.1.3.0 424 ------- null} + -t 38.9638 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {0.0.3.0 1.1.3.0 424 ------- null} - -t 38.9638 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {0.0.3.0 1.1.3.0 424 ------- null} h -t 38.9638 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.9654 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 836 -a 0 -x {0.0.3.0 1.1.3.0 425 ------- null} + -t 38.9654 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 836 -a 0 -x {0.0.3.0 1.1.3.0 425 ------- null} - -t 38.9654 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 836 -a 0 -x {0.0.3.0 1.1.3.0 425 ------- null} h -t 38.9654 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 836 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.967 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {0.0.3.0 1.1.3.0 426 ------- null} + -t 38.967 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {0.0.3.0 1.1.3.0 426 ------- null} - -t 38.967 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {0.0.3.0 1.1.3.0 426 ------- null} h -t 38.967 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.9686 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 838 -a 0 -x {0.0.3.0 1.1.3.0 427 ------- null} + -t 38.9686 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 838 -a 0 -x {0.0.3.0 1.1.3.0 427 ------- null} - -t 38.9686 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 838 -a 0 -x {0.0.3.0 1.1.3.0 427 ------- null} h -t 38.9686 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 838 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.9702 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {0.0.3.0 1.1.3.0 428 ------- null} + -t 38.9702 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {0.0.3.0 1.1.3.0 428 ------- null} - -t 38.9702 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {0.0.3.0 1.1.3.0 428 ------- null} h -t 38.9702 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.9718 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 840 -a 0 -x {0.0.3.0 1.1.3.0 429 ------- null} + -t 38.9718 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 840 -a 0 -x {0.0.3.0 1.1.3.0 429 ------- null} - -t 38.9718 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 840 -a 0 -x {0.0.3.0 1.1.3.0 429 ------- null} h -t 38.9718 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 840 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 38.9734 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {0.0.3.0 1.1.3.0 430 ------- null} + -t 38.9734 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {0.0.3.0 1.1.3.0 430 ------- null} - -t 38.9734 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {0.0.3.0 1.1.3.0 430 ------- null} h -t 38.9734 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 39.0046 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 822 -a 0 -x {0.0.3.0 1.1.3.0 411 ------- null} + -t 39.0046 -s 21 -d 28 -p ack -e 40 -c 0 -i 842 -a 1 -x {1.1.3.0 0.0.3.0 411 ------- null} - -t 39.0046 -s 21 -d 28 -p ack -e 40 -c 0 -i 842 -a 1 -x {1.1.3.0 0.0.3.0 411 ------- null} h -t 39.0046 -s 21 -d 28 -p ack -e 40 -c 0 -i 842 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.0062 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {0.0.3.0 1.1.3.0 412 ------- null} + -t 39.0062 -s 21 -d 28 -p ack -e 40 -c 0 -i 843 -a 1 -x {1.1.3.0 0.0.3.0 412 ------- null} - -t 39.0062 -s 21 -d 28 -p ack -e 40 -c 0 -i 843 -a 1 -x {1.1.3.0 0.0.3.0 412 ------- null} h -t 39.0062 -s 21 -d 28 -p ack -e 40 -c 0 -i 843 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.0078 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 824 -a 0 -x {0.0.3.0 1.1.3.0 413 ------- null} + -t 39.0078 -s 21 -d 28 -p ack -e 40 -c 0 -i 844 -a 1 -x {1.1.3.0 0.0.3.0 413 ------- null} - -t 39.0078 -s 21 -d 28 -p ack -e 40 -c 0 -i 844 -a 1 -x {1.1.3.0 0.0.3.0 413 ------- null} h -t 39.0078 -s 21 -d 28 -p ack -e 40 -c 0 -i 844 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.0094 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {0.0.3.0 1.1.3.0 414 ------- null} + -t 39.0094 -s 21 -d 28 -p ack -e 40 -c 0 -i 845 -a 1 -x {1.1.3.0 0.0.3.0 414 ------- null} - -t 39.0094 -s 21 -d 28 -p ack -e 40 -c 0 -i 845 -a 1 -x {1.1.3.0 0.0.3.0 414 ------- null} h -t 39.0094 -s 21 -d 28 -p ack -e 40 -c 0 -i 845 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.011 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 826 -a 0 -x {0.0.3.0 1.1.3.0 415 ------- null} + -t 39.011 -s 21 -d 28 -p ack -e 40 -c 0 -i 846 -a 1 -x {1.1.3.0 0.0.3.0 415 ------- null} - -t 39.011 -s 21 -d 28 -p ack -e 40 -c 0 -i 846 -a 1 -x {1.1.3.0 0.0.3.0 415 ------- null} h -t 39.011 -s 21 -d 28 -p ack -e 40 -c 0 -i 846 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.0126 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {0.0.3.0 1.1.3.0 416 ------- null} + -t 39.0126 -s 21 -d 28 -p ack -e 40 -c 0 -i 847 -a 1 -x {1.1.3.0 0.0.3.0 416 ------- null} - -t 39.0126 -s 21 -d 28 -p ack -e 40 -c 0 -i 847 -a 1 -x {1.1.3.0 0.0.3.0 416 ------- null} h -t 39.0126 -s 21 -d 28 -p ack -e 40 -c 0 -i 847 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.0142 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 828 -a 0 -x {0.0.3.0 1.1.3.0 417 ------- null} + -t 39.0142 -s 21 -d 28 -p ack -e 40 -c 0 -i 848 -a 1 -x {1.1.3.0 0.0.3.0 417 ------- null} - -t 39.0142 -s 21 -d 28 -p ack -e 40 -c 0 -i 848 -a 1 -x {1.1.3.0 0.0.3.0 417 ------- null} h -t 39.0142 -s 21 -d 28 -p ack -e 40 -c 0 -i 848 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.0158 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {0.0.3.0 1.1.3.0 418 ------- null} + -t 39.0158 -s 21 -d 28 -p ack -e 40 -c 0 -i 849 -a 1 -x {1.1.3.0 0.0.3.0 418 ------- null} - -t 39.0158 -s 21 -d 28 -p ack -e 40 -c 0 -i 849 -a 1 -x {1.1.3.0 0.0.3.0 418 ------- null} h -t 39.0158 -s 21 -d 28 -p ack -e 40 -c 0 -i 849 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.0174 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 830 -a 0 -x {0.0.3.0 1.1.3.0 419 ------- null} + -t 39.0174 -s 21 -d 28 -p ack -e 40 -c 0 -i 850 -a 1 -x {1.1.3.0 0.0.3.0 419 ------- null} - -t 39.0174 -s 21 -d 28 -p ack -e 40 -c 0 -i 850 -a 1 -x {1.1.3.0 0.0.3.0 419 ------- null} h -t 39.0174 -s 21 -d 28 -p ack -e 40 -c 0 -i 850 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.019 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {0.0.3.0 1.1.3.0 420 ------- null} + -t 39.019 -s 21 -d 28 -p ack -e 40 -c 0 -i 851 -a 1 -x {1.1.3.0 0.0.3.0 420 ------- null} - -t 39.019 -s 21 -d 28 -p ack -e 40 -c 0 -i 851 -a 1 -x {1.1.3.0 0.0.3.0 420 ------- null} h -t 39.019 -s 21 -d 28 -p ack -e 40 -c 0 -i 851 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.0206 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 832 -a 0 -x {0.0.3.0 1.1.3.0 421 ------- null} + -t 39.0206 -s 21 -d 28 -p ack -e 40 -c 0 -i 852 -a 1 -x {1.1.3.0 0.0.3.0 421 ------- null} - -t 39.0206 -s 21 -d 28 -p ack -e 40 -c 0 -i 852 -a 1 -x {1.1.3.0 0.0.3.0 421 ------- null} h -t 39.0206 -s 21 -d 28 -p ack -e 40 -c 0 -i 852 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.0222 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {0.0.3.0 1.1.3.0 422 ------- null} + -t 39.0222 -s 21 -d 28 -p ack -e 40 -c 0 -i 853 -a 1 -x {1.1.3.0 0.0.3.0 422 ------- null} - -t 39.0222 -s 21 -d 28 -p ack -e 40 -c 0 -i 853 -a 1 -x {1.1.3.0 0.0.3.0 422 ------- null} h -t 39.0222 -s 21 -d 28 -p ack -e 40 -c 0 -i 853 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.0238 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 834 -a 0 -x {0.0.3.0 1.1.3.0 423 ------- null} + -t 39.0238 -s 21 -d 28 -p ack -e 40 -c 0 -i 854 -a 1 -x {1.1.3.0 0.0.3.0 423 ------- null} - -t 39.0238 -s 21 -d 28 -p ack -e 40 -c 0 -i 854 -a 1 -x {1.1.3.0 0.0.3.0 423 ------- null} h -t 39.0238 -s 21 -d 28 -p ack -e 40 -c 0 -i 854 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.0254 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {0.0.3.0 1.1.3.0 424 ------- null} + -t 39.0254 -s 21 -d 28 -p ack -e 40 -c 0 -i 855 -a 1 -x {1.1.3.0 0.0.3.0 424 ------- null} - -t 39.0254 -s 21 -d 28 -p ack -e 40 -c 0 -i 855 -a 1 -x {1.1.3.0 0.0.3.0 424 ------- null} h -t 39.0254 -s 21 -d 28 -p ack -e 40 -c 0 -i 855 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.027 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 836 -a 0 -x {0.0.3.0 1.1.3.0 425 ------- null} + -t 39.027 -s 21 -d 28 -p ack -e 40 -c 0 -i 856 -a 1 -x {1.1.3.0 0.0.3.0 425 ------- null} - -t 39.027 -s 21 -d 28 -p ack -e 40 -c 0 -i 856 -a 1 -x {1.1.3.0 0.0.3.0 425 ------- null} h -t 39.027 -s 21 -d 28 -p ack -e 40 -c 0 -i 856 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.0286 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {0.0.3.0 1.1.3.0 426 ------- null} + -t 39.0286 -s 21 -d 28 -p ack -e 40 -c 0 -i 857 -a 1 -x {1.1.3.0 0.0.3.0 426 ------- null} - -t 39.0286 -s 21 -d 28 -p ack -e 40 -c 0 -i 857 -a 1 -x {1.1.3.0 0.0.3.0 426 ------- null} h -t 39.0286 -s 21 -d 28 -p ack -e 40 -c 0 -i 857 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.0302 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 838 -a 0 -x {0.0.3.0 1.1.3.0 427 ------- null} + -t 39.0302 -s 21 -d 28 -p ack -e 40 -c 0 -i 858 -a 1 -x {1.1.3.0 0.0.3.0 427 ------- null} - -t 39.0302 -s 21 -d 28 -p ack -e 40 -c 0 -i 858 -a 1 -x {1.1.3.0 0.0.3.0 427 ------- null} h -t 39.0302 -s 21 -d 28 -p ack -e 40 -c 0 -i 858 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.0318 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {0.0.3.0 1.1.3.0 428 ------- null} + -t 39.0318 -s 21 -d 28 -p ack -e 40 -c 0 -i 859 -a 1 -x {1.1.3.0 0.0.3.0 428 ------- null} - -t 39.0318 -s 21 -d 28 -p ack -e 40 -c 0 -i 859 -a 1 -x {1.1.3.0 0.0.3.0 428 ------- null} h -t 39.0318 -s 21 -d 28 -p ack -e 40 -c 0 -i 859 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.0334 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 840 -a 0 -x {0.0.3.0 1.1.3.0 429 ------- null} + -t 39.0334 -s 21 -d 28 -p ack -e 40 -c 0 -i 860 -a 1 -x {1.1.3.0 0.0.3.0 429 ------- null} - -t 39.0334 -s 21 -d 28 -p ack -e 40 -c 0 -i 860 -a 1 -x {1.1.3.0 0.0.3.0 429 ------- null} h -t 39.0334 -s 21 -d 28 -p ack -e 40 -c 0 -i 860 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.035 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {0.0.3.0 1.1.3.0 430 ------- null} + -t 39.035 -s 21 -d 28 -p ack -e 40 -c 0 -i 861 -a 1 -x {1.1.3.0 0.0.3.0 430 ------- null} - -t 39.035 -s 21 -d 28 -p ack -e 40 -c 0 -i 861 -a 1 -x {1.1.3.0 0.0.3.0 430 ------- null} h -t 39.035 -s 21 -d 28 -p ack -e 40 -c 0 -i 861 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.3547 -s 21 -d 28 -p ack -e 40 -c 0 -i 842 -a 1 -x {1.1.3.0 0.0.3.0 411 ------- null} + -t 39.3547 -s 28 -d 1 -p ack -e 40 -c 0 -i 842 -a 1 -x {1.1.3.0 0.0.3.0 411 ------- null} - -t 39.3547 -s 28 -d 1 -p ack -e 40 -c 0 -i 842 -a 1 -x {1.1.3.0 0.0.3.0 411 ------- null} h -t 39.3547 -s 28 -d 1 -p ack -e 40 -c 0 -i 842 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.3563 -s 21 -d 28 -p ack -e 40 -c 0 -i 843 -a 1 -x {1.1.3.0 0.0.3.0 412 ------- null} + -t 39.3563 -s 28 -d 1 -p ack -e 40 -c 0 -i 843 -a 1 -x {1.1.3.0 0.0.3.0 412 ------- null} - -t 39.3563 -s 28 -d 1 -p ack -e 40 -c 0 -i 843 -a 1 -x {1.1.3.0 0.0.3.0 412 ------- null} h -t 39.3563 -s 28 -d 1 -p ack -e 40 -c 0 -i 843 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.3579 -s 21 -d 28 -p ack -e 40 -c 0 -i 844 -a 1 -x {1.1.3.0 0.0.3.0 413 ------- null} + -t 39.3579 -s 28 -d 1 -p ack -e 40 -c 0 -i 844 -a 1 -x {1.1.3.0 0.0.3.0 413 ------- null} - -t 39.3579 -s 28 -d 1 -p ack -e 40 -c 0 -i 844 -a 1 -x {1.1.3.0 0.0.3.0 413 ------- null} h -t 39.3579 -s 28 -d 1 -p ack -e 40 -c 0 -i 844 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.3595 -s 21 -d 28 -p ack -e 40 -c 0 -i 845 -a 1 -x {1.1.3.0 0.0.3.0 414 ------- null} + -t 39.3595 -s 28 -d 1 -p ack -e 40 -c 0 -i 845 -a 1 -x {1.1.3.0 0.0.3.0 414 ------- null} - -t 39.3595 -s 28 -d 1 -p ack -e 40 -c 0 -i 845 -a 1 -x {1.1.3.0 0.0.3.0 414 ------- null} h -t 39.3595 -s 28 -d 1 -p ack -e 40 -c 0 -i 845 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.3611 -s 21 -d 28 -p ack -e 40 -c 0 -i 846 -a 1 -x {1.1.3.0 0.0.3.0 415 ------- null} + -t 39.3611 -s 28 -d 1 -p ack -e 40 -c 0 -i 846 -a 1 -x {1.1.3.0 0.0.3.0 415 ------- null} - -t 39.3611 -s 28 -d 1 -p ack -e 40 -c 0 -i 846 -a 1 -x {1.1.3.0 0.0.3.0 415 ------- null} h -t 39.3611 -s 28 -d 1 -p ack -e 40 -c 0 -i 846 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.3627 -s 21 -d 28 -p ack -e 40 -c 0 -i 847 -a 1 -x {1.1.3.0 0.0.3.0 416 ------- null} + -t 39.3627 -s 28 -d 1 -p ack -e 40 -c 0 -i 847 -a 1 -x {1.1.3.0 0.0.3.0 416 ------- null} - -t 39.3627 -s 28 -d 1 -p ack -e 40 -c 0 -i 847 -a 1 -x {1.1.3.0 0.0.3.0 416 ------- null} h -t 39.3627 -s 28 -d 1 -p ack -e 40 -c 0 -i 847 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.3643 -s 21 -d 28 -p ack -e 40 -c 0 -i 848 -a 1 -x {1.1.3.0 0.0.3.0 417 ------- null} + -t 39.3643 -s 28 -d 1 -p ack -e 40 -c 0 -i 848 -a 1 -x {1.1.3.0 0.0.3.0 417 ------- null} - -t 39.3643 -s 28 -d 1 -p ack -e 40 -c 0 -i 848 -a 1 -x {1.1.3.0 0.0.3.0 417 ------- null} h -t 39.3643 -s 28 -d 1 -p ack -e 40 -c 0 -i 848 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.3659 -s 21 -d 28 -p ack -e 40 -c 0 -i 849 -a 1 -x {1.1.3.0 0.0.3.0 418 ------- null} + -t 39.3659 -s 28 -d 1 -p ack -e 40 -c 0 -i 849 -a 1 -x {1.1.3.0 0.0.3.0 418 ------- null} - -t 39.3659 -s 28 -d 1 -p ack -e 40 -c 0 -i 849 -a 1 -x {1.1.3.0 0.0.3.0 418 ------- null} h -t 39.3659 -s 28 -d 1 -p ack -e 40 -c 0 -i 849 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.3675 -s 21 -d 28 -p ack -e 40 -c 0 -i 850 -a 1 -x {1.1.3.0 0.0.3.0 419 ------- null} + -t 39.3675 -s 28 -d 1 -p ack -e 40 -c 0 -i 850 -a 1 -x {1.1.3.0 0.0.3.0 419 ------- null} - -t 39.3675 -s 28 -d 1 -p ack -e 40 -c 0 -i 850 -a 1 -x {1.1.3.0 0.0.3.0 419 ------- null} h -t 39.3675 -s 28 -d 1 -p ack -e 40 -c 0 -i 850 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.3691 -s 21 -d 28 -p ack -e 40 -c 0 -i 851 -a 1 -x {1.1.3.0 0.0.3.0 420 ------- null} + -t 39.3691 -s 28 -d 1 -p ack -e 40 -c 0 -i 851 -a 1 -x {1.1.3.0 0.0.3.0 420 ------- null} - -t 39.3691 -s 28 -d 1 -p ack -e 40 -c 0 -i 851 -a 1 -x {1.1.3.0 0.0.3.0 420 ------- null} h -t 39.3691 -s 28 -d 1 -p ack -e 40 -c 0 -i 851 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.3707 -s 21 -d 28 -p ack -e 40 -c 0 -i 852 -a 1 -x {1.1.3.0 0.0.3.0 421 ------- null} + -t 39.3707 -s 28 -d 1 -p ack -e 40 -c 0 -i 852 -a 1 -x {1.1.3.0 0.0.3.0 421 ------- null} - -t 39.3707 -s 28 -d 1 -p ack -e 40 -c 0 -i 852 -a 1 -x {1.1.3.0 0.0.3.0 421 ------- null} h -t 39.3707 -s 28 -d 1 -p ack -e 40 -c 0 -i 852 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.3723 -s 21 -d 28 -p ack -e 40 -c 0 -i 853 -a 1 -x {1.1.3.0 0.0.3.0 422 ------- null} + -t 39.3723 -s 28 -d 1 -p ack -e 40 -c 0 -i 853 -a 1 -x {1.1.3.0 0.0.3.0 422 ------- null} - -t 39.3723 -s 28 -d 1 -p ack -e 40 -c 0 -i 853 -a 1 -x {1.1.3.0 0.0.3.0 422 ------- null} h -t 39.3723 -s 28 -d 1 -p ack -e 40 -c 0 -i 853 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.3739 -s 21 -d 28 -p ack -e 40 -c 0 -i 854 -a 1 -x {1.1.3.0 0.0.3.0 423 ------- null} + -t 39.3739 -s 28 -d 1 -p ack -e 40 -c 0 -i 854 -a 1 -x {1.1.3.0 0.0.3.0 423 ------- null} - -t 39.3739 -s 28 -d 1 -p ack -e 40 -c 0 -i 854 -a 1 -x {1.1.3.0 0.0.3.0 423 ------- null} h -t 39.3739 -s 28 -d 1 -p ack -e 40 -c 0 -i 854 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.3755 -s 21 -d 28 -p ack -e 40 -c 0 -i 855 -a 1 -x {1.1.3.0 0.0.3.0 424 ------- null} + -t 39.3755 -s 28 -d 1 -p ack -e 40 -c 0 -i 855 -a 1 -x {1.1.3.0 0.0.3.0 424 ------- null} - -t 39.3755 -s 28 -d 1 -p ack -e 40 -c 0 -i 855 -a 1 -x {1.1.3.0 0.0.3.0 424 ------- null} h -t 39.3755 -s 28 -d 1 -p ack -e 40 -c 0 -i 855 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.3771 -s 21 -d 28 -p ack -e 40 -c 0 -i 856 -a 1 -x {1.1.3.0 0.0.3.0 425 ------- null} + -t 39.3771 -s 28 -d 1 -p ack -e 40 -c 0 -i 856 -a 1 -x {1.1.3.0 0.0.3.0 425 ------- null} - -t 39.3771 -s 28 -d 1 -p ack -e 40 -c 0 -i 856 -a 1 -x {1.1.3.0 0.0.3.0 425 ------- null} h -t 39.3771 -s 28 -d 1 -p ack -e 40 -c 0 -i 856 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.3787 -s 21 -d 28 -p ack -e 40 -c 0 -i 857 -a 1 -x {1.1.3.0 0.0.3.0 426 ------- null} + -t 39.3787 -s 28 -d 1 -p ack -e 40 -c 0 -i 857 -a 1 -x {1.1.3.0 0.0.3.0 426 ------- null} - -t 39.3787 -s 28 -d 1 -p ack -e 40 -c 0 -i 857 -a 1 -x {1.1.3.0 0.0.3.0 426 ------- null} h -t 39.3787 -s 28 -d 1 -p ack -e 40 -c 0 -i 857 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.3803 -s 21 -d 28 -p ack -e 40 -c 0 -i 858 -a 1 -x {1.1.3.0 0.0.3.0 427 ------- null} + -t 39.3803 -s 28 -d 1 -p ack -e 40 -c 0 -i 858 -a 1 -x {1.1.3.0 0.0.3.0 427 ------- null} - -t 39.3803 -s 28 -d 1 -p ack -e 40 -c 0 -i 858 -a 1 -x {1.1.3.0 0.0.3.0 427 ------- null} h -t 39.3803 -s 28 -d 1 -p ack -e 40 -c 0 -i 858 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.3819 -s 21 -d 28 -p ack -e 40 -c 0 -i 859 -a 1 -x {1.1.3.0 0.0.3.0 428 ------- null} + -t 39.3819 -s 28 -d 1 -p ack -e 40 -c 0 -i 859 -a 1 -x {1.1.3.0 0.0.3.0 428 ------- null} - -t 39.3819 -s 28 -d 1 -p ack -e 40 -c 0 -i 859 -a 1 -x {1.1.3.0 0.0.3.0 428 ------- null} h -t 39.3819 -s 28 -d 1 -p ack -e 40 -c 0 -i 859 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.3835 -s 21 -d 28 -p ack -e 40 -c 0 -i 860 -a 1 -x {1.1.3.0 0.0.3.0 429 ------- null} + -t 39.3835 -s 28 -d 1 -p ack -e 40 -c 0 -i 860 -a 1 -x {1.1.3.0 0.0.3.0 429 ------- null} - -t 39.3835 -s 28 -d 1 -p ack -e 40 -c 0 -i 860 -a 1 -x {1.1.3.0 0.0.3.0 429 ------- null} h -t 39.3835 -s 28 -d 1 -p ack -e 40 -c 0 -i 860 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.3851 -s 21 -d 28 -p ack -e 40 -c 0 -i 861 -a 1 -x {1.1.3.0 0.0.3.0 430 ------- null} + -t 39.3851 -s 28 -d 1 -p ack -e 40 -c 0 -i 861 -a 1 -x {1.1.3.0 0.0.3.0 430 ------- null} - -t 39.3851 -s 28 -d 1 -p ack -e 40 -c 0 -i 861 -a 1 -x {1.1.3.0 0.0.3.0 430 ------- null} h -t 39.3851 -s 28 -d 1 -p ack -e 40 -c 0 -i 861 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.6547 -s 28 -d 1 -p ack -e 40 -c 0 -i 842 -a 1 -x {1.1.3.0 0.0.3.0 411 ------- null} + -t 39.6547 -s 1 -d 3 -p ack -e 40 -c 0 -i 842 -a 1 -x {1.1.3.0 0.0.3.0 411 ------- null} - -t 39.6547 -s 1 -d 3 -p ack -e 40 -c 0 -i 842 -a 1 -x {1.1.3.0 0.0.3.0 411 ------- null} h -t 39.6547 -s 1 -d 3 -p ack -e 40 -c 0 -i 842 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.6563 -s 28 -d 1 -p ack -e 40 -c 0 -i 843 -a 1 -x {1.1.3.0 0.0.3.0 412 ------- null} + -t 39.6563 -s 1 -d 3 -p ack -e 40 -c 0 -i 843 -a 1 -x {1.1.3.0 0.0.3.0 412 ------- null} - -t 39.6563 -s 1 -d 3 -p ack -e 40 -c 0 -i 843 -a 1 -x {1.1.3.0 0.0.3.0 412 ------- null} h -t 39.6563 -s 1 -d 3 -p ack -e 40 -c 0 -i 843 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.6579 -s 28 -d 1 -p ack -e 40 -c 0 -i 844 -a 1 -x {1.1.3.0 0.0.3.0 413 ------- null} + -t 39.6579 -s 1 -d 3 -p ack -e 40 -c 0 -i 844 -a 1 -x {1.1.3.0 0.0.3.0 413 ------- null} - -t 39.6579 -s 1 -d 3 -p ack -e 40 -c 0 -i 844 -a 1 -x {1.1.3.0 0.0.3.0 413 ------- null} h -t 39.6579 -s 1 -d 3 -p ack -e 40 -c 0 -i 844 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.6595 -s 28 -d 1 -p ack -e 40 -c 0 -i 845 -a 1 -x {1.1.3.0 0.0.3.0 414 ------- null} + -t 39.6595 -s 1 -d 3 -p ack -e 40 -c 0 -i 845 -a 1 -x {1.1.3.0 0.0.3.0 414 ------- null} - -t 39.6595 -s 1 -d 3 -p ack -e 40 -c 0 -i 845 -a 1 -x {1.1.3.0 0.0.3.0 414 ------- null} h -t 39.6595 -s 1 -d 3 -p ack -e 40 -c 0 -i 845 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.6611 -s 28 -d 1 -p ack -e 40 -c 0 -i 846 -a 1 -x {1.1.3.0 0.0.3.0 415 ------- null} + -t 39.6611 -s 1 -d 3 -p ack -e 40 -c 0 -i 846 -a 1 -x {1.1.3.0 0.0.3.0 415 ------- null} - -t 39.6611 -s 1 -d 3 -p ack -e 40 -c 0 -i 846 -a 1 -x {1.1.3.0 0.0.3.0 415 ------- null} h -t 39.6611 -s 1 -d 3 -p ack -e 40 -c 0 -i 846 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.6627 -s 28 -d 1 -p ack -e 40 -c 0 -i 847 -a 1 -x {1.1.3.0 0.0.3.0 416 ------- null} + -t 39.6627 -s 1 -d 3 -p ack -e 40 -c 0 -i 847 -a 1 -x {1.1.3.0 0.0.3.0 416 ------- null} - -t 39.6627 -s 1 -d 3 -p ack -e 40 -c 0 -i 847 -a 1 -x {1.1.3.0 0.0.3.0 416 ------- null} h -t 39.6627 -s 1 -d 3 -p ack -e 40 -c 0 -i 847 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.6643 -s 28 -d 1 -p ack -e 40 -c 0 -i 848 -a 1 -x {1.1.3.0 0.0.3.0 417 ------- null} + -t 39.6643 -s 1 -d 3 -p ack -e 40 -c 0 -i 848 -a 1 -x {1.1.3.0 0.0.3.0 417 ------- null} - -t 39.6643 -s 1 -d 3 -p ack -e 40 -c 0 -i 848 -a 1 -x {1.1.3.0 0.0.3.0 417 ------- null} h -t 39.6643 -s 1 -d 3 -p ack -e 40 -c 0 -i 848 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.6659 -s 28 -d 1 -p ack -e 40 -c 0 -i 849 -a 1 -x {1.1.3.0 0.0.3.0 418 ------- null} + -t 39.6659 -s 1 -d 3 -p ack -e 40 -c 0 -i 849 -a 1 -x {1.1.3.0 0.0.3.0 418 ------- null} - -t 39.6659 -s 1 -d 3 -p ack -e 40 -c 0 -i 849 -a 1 -x {1.1.3.0 0.0.3.0 418 ------- null} h -t 39.6659 -s 1 -d 3 -p ack -e 40 -c 0 -i 849 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.6675 -s 28 -d 1 -p ack -e 40 -c 0 -i 850 -a 1 -x {1.1.3.0 0.0.3.0 419 ------- null} + -t 39.6675 -s 1 -d 3 -p ack -e 40 -c 0 -i 850 -a 1 -x {1.1.3.0 0.0.3.0 419 ------- null} - -t 39.6675 -s 1 -d 3 -p ack -e 40 -c 0 -i 850 -a 1 -x {1.1.3.0 0.0.3.0 419 ------- null} h -t 39.6675 -s 1 -d 3 -p ack -e 40 -c 0 -i 850 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.6691 -s 28 -d 1 -p ack -e 40 -c 0 -i 851 -a 1 -x {1.1.3.0 0.0.3.0 420 ------- null} + -t 39.6691 -s 1 -d 3 -p ack -e 40 -c 0 -i 851 -a 1 -x {1.1.3.0 0.0.3.0 420 ------- null} - -t 39.6691 -s 1 -d 3 -p ack -e 40 -c 0 -i 851 -a 1 -x {1.1.3.0 0.0.3.0 420 ------- null} h -t 39.6691 -s 1 -d 3 -p ack -e 40 -c 0 -i 851 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.6707 -s 28 -d 1 -p ack -e 40 -c 0 -i 852 -a 1 -x {1.1.3.0 0.0.3.0 421 ------- null} + -t 39.6707 -s 1 -d 3 -p ack -e 40 -c 0 -i 852 -a 1 -x {1.1.3.0 0.0.3.0 421 ------- null} - -t 39.6707 -s 1 -d 3 -p ack -e 40 -c 0 -i 852 -a 1 -x {1.1.3.0 0.0.3.0 421 ------- null} h -t 39.6707 -s 1 -d 3 -p ack -e 40 -c 0 -i 852 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.6723 -s 28 -d 1 -p ack -e 40 -c 0 -i 853 -a 1 -x {1.1.3.0 0.0.3.0 422 ------- null} + -t 39.6723 -s 1 -d 3 -p ack -e 40 -c 0 -i 853 -a 1 -x {1.1.3.0 0.0.3.0 422 ------- null} - -t 39.6723 -s 1 -d 3 -p ack -e 40 -c 0 -i 853 -a 1 -x {1.1.3.0 0.0.3.0 422 ------- null} h -t 39.6723 -s 1 -d 3 -p ack -e 40 -c 0 -i 853 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.6739 -s 28 -d 1 -p ack -e 40 -c 0 -i 854 -a 1 -x {1.1.3.0 0.0.3.0 423 ------- null} + -t 39.6739 -s 1 -d 3 -p ack -e 40 -c 0 -i 854 -a 1 -x {1.1.3.0 0.0.3.0 423 ------- null} - -t 39.6739 -s 1 -d 3 -p ack -e 40 -c 0 -i 854 -a 1 -x {1.1.3.0 0.0.3.0 423 ------- null} h -t 39.6739 -s 1 -d 3 -p ack -e 40 -c 0 -i 854 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.6755 -s 28 -d 1 -p ack -e 40 -c 0 -i 855 -a 1 -x {1.1.3.0 0.0.3.0 424 ------- null} + -t 39.6755 -s 1 -d 3 -p ack -e 40 -c 0 -i 855 -a 1 -x {1.1.3.0 0.0.3.0 424 ------- null} - -t 39.6755 -s 1 -d 3 -p ack -e 40 -c 0 -i 855 -a 1 -x {1.1.3.0 0.0.3.0 424 ------- null} h -t 39.6755 -s 1 -d 3 -p ack -e 40 -c 0 -i 855 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.6771 -s 28 -d 1 -p ack -e 40 -c 0 -i 856 -a 1 -x {1.1.3.0 0.0.3.0 425 ------- null} + -t 39.6771 -s 1 -d 3 -p ack -e 40 -c 0 -i 856 -a 1 -x {1.1.3.0 0.0.3.0 425 ------- null} - -t 39.6771 -s 1 -d 3 -p ack -e 40 -c 0 -i 856 -a 1 -x {1.1.3.0 0.0.3.0 425 ------- null} h -t 39.6771 -s 1 -d 3 -p ack -e 40 -c 0 -i 856 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.6787 -s 28 -d 1 -p ack -e 40 -c 0 -i 857 -a 1 -x {1.1.3.0 0.0.3.0 426 ------- null} + -t 39.6787 -s 1 -d 3 -p ack -e 40 -c 0 -i 857 -a 1 -x {1.1.3.0 0.0.3.0 426 ------- null} - -t 39.6787 -s 1 -d 3 -p ack -e 40 -c 0 -i 857 -a 1 -x {1.1.3.0 0.0.3.0 426 ------- null} h -t 39.6787 -s 1 -d 3 -p ack -e 40 -c 0 -i 857 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.6803 -s 28 -d 1 -p ack -e 40 -c 0 -i 858 -a 1 -x {1.1.3.0 0.0.3.0 427 ------- null} + -t 39.6803 -s 1 -d 3 -p ack -e 40 -c 0 -i 858 -a 1 -x {1.1.3.0 0.0.3.0 427 ------- null} - -t 39.6803 -s 1 -d 3 -p ack -e 40 -c 0 -i 858 -a 1 -x {1.1.3.0 0.0.3.0 427 ------- null} h -t 39.6803 -s 1 -d 3 -p ack -e 40 -c 0 -i 858 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.6819 -s 28 -d 1 -p ack -e 40 -c 0 -i 859 -a 1 -x {1.1.3.0 0.0.3.0 428 ------- null} + -t 39.6819 -s 1 -d 3 -p ack -e 40 -c 0 -i 859 -a 1 -x {1.1.3.0 0.0.3.0 428 ------- null} - -t 39.6819 -s 1 -d 3 -p ack -e 40 -c 0 -i 859 -a 1 -x {1.1.3.0 0.0.3.0 428 ------- null} h -t 39.6819 -s 1 -d 3 -p ack -e 40 -c 0 -i 859 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.6835 -s 28 -d 1 -p ack -e 40 -c 0 -i 860 -a 1 -x {1.1.3.0 0.0.3.0 429 ------- null} + -t 39.6835 -s 1 -d 3 -p ack -e 40 -c 0 -i 860 -a 1 -x {1.1.3.0 0.0.3.0 429 ------- null} - -t 39.6835 -s 1 -d 3 -p ack -e 40 -c 0 -i 860 -a 1 -x {1.1.3.0 0.0.3.0 429 ------- null} h -t 39.6835 -s 1 -d 3 -p ack -e 40 -c 0 -i 860 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.6851 -s 28 -d 1 -p ack -e 40 -c 0 -i 861 -a 1 -x {1.1.3.0 0.0.3.0 430 ------- null} + -t 39.6851 -s 1 -d 3 -p ack -e 40 -c 0 -i 861 -a 1 -x {1.1.3.0 0.0.3.0 430 ------- null} - -t 39.6851 -s 1 -d 3 -p ack -e 40 -c 0 -i 861 -a 1 -x {1.1.3.0 0.0.3.0 430 ------- null} h -t 39.6851 -s 1 -d 3 -p ack -e 40 -c 0 -i 861 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 39.7948 -s 1 -d 3 -p ack -e 40 -c 0 -i 842 -a 1 -x {1.1.3.0 0.0.3.0 411 ------- null} + -t 39.7948 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 862 -a 0 -x {0.0.3.0 1.1.3.0 431 ------- null} - -t 39.7948 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 862 -a 0 -x {0.0.3.0 1.1.3.0 431 ------- null} h -t 39.7948 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 862 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 39.7964 -s 1 -d 3 -p ack -e 40 -c 0 -i 843 -a 1 -x {1.1.3.0 0.0.3.0 412 ------- null} + -t 39.7964 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {0.0.3.0 1.1.3.0 432 ------- null} - -t 39.7964 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {0.0.3.0 1.1.3.0 432 ------- null} h -t 39.7964 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 39.798 -s 1 -d 3 -p ack -e 40 -c 0 -i 844 -a 1 -x {1.1.3.0 0.0.3.0 413 ------- null} + -t 39.798 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 864 -a 0 -x {0.0.3.0 1.1.3.0 433 ------- null} - -t 39.798 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 864 -a 0 -x {0.0.3.0 1.1.3.0 433 ------- null} h -t 39.798 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 864 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 39.7996 -s 1 -d 3 -p ack -e 40 -c 0 -i 845 -a 1 -x {1.1.3.0 0.0.3.0 414 ------- null} + -t 39.7996 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {0.0.3.0 1.1.3.0 434 ------- null} - -t 39.7996 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {0.0.3.0 1.1.3.0 434 ------- null} h -t 39.7996 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 39.8012 -s 1 -d 3 -p ack -e 40 -c 0 -i 846 -a 1 -x {1.1.3.0 0.0.3.0 415 ------- null} + -t 39.8012 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 866 -a 0 -x {0.0.3.0 1.1.3.0 435 ------- null} - -t 39.8012 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 866 -a 0 -x {0.0.3.0 1.1.3.0 435 ------- null} h -t 39.8012 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 866 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 39.8028 -s 1 -d 3 -p ack -e 40 -c 0 -i 847 -a 1 -x {1.1.3.0 0.0.3.0 416 ------- null} + -t 39.8028 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {0.0.3.0 1.1.3.0 436 ------- null} - -t 39.8028 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {0.0.3.0 1.1.3.0 436 ------- null} h -t 39.8028 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 39.8044 -s 1 -d 3 -p ack -e 40 -c 0 -i 848 -a 1 -x {1.1.3.0 0.0.3.0 417 ------- null} + -t 39.8044 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 868 -a 0 -x {0.0.3.0 1.1.3.0 437 ------- null} - -t 39.8044 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 868 -a 0 -x {0.0.3.0 1.1.3.0 437 ------- null} h -t 39.8044 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 868 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 39.806 -s 1 -d 3 -p ack -e 40 -c 0 -i 849 -a 1 -x {1.1.3.0 0.0.3.0 418 ------- null} + -t 39.806 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {0.0.3.0 1.1.3.0 438 ------- null} - -t 39.806 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {0.0.3.0 1.1.3.0 438 ------- null} h -t 39.806 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 39.8076 -s 1 -d 3 -p ack -e 40 -c 0 -i 850 -a 1 -x {1.1.3.0 0.0.3.0 419 ------- null} + -t 39.8076 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 870 -a 0 -x {0.0.3.0 1.1.3.0 439 ------- null} - -t 39.8076 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 870 -a 0 -x {0.0.3.0 1.1.3.0 439 ------- null} h -t 39.8076 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 870 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 39.8092 -s 1 -d 3 -p ack -e 40 -c 0 -i 851 -a 1 -x {1.1.3.0 0.0.3.0 420 ------- null} + -t 39.8092 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {0.0.3.0 1.1.3.0 440 ------- null} - -t 39.8092 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {0.0.3.0 1.1.3.0 440 ------- null} h -t 39.8092 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 39.8108 -s 1 -d 3 -p ack -e 40 -c 0 -i 852 -a 1 -x {1.1.3.0 0.0.3.0 421 ------- null} + -t 39.8108 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 872 -a 0 -x {0.0.3.0 1.1.3.0 441 ------- null} - -t 39.8108 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 872 -a 0 -x {0.0.3.0 1.1.3.0 441 ------- null} h -t 39.8108 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 872 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 39.8124 -s 1 -d 3 -p ack -e 40 -c 0 -i 853 -a 1 -x {1.1.3.0 0.0.3.0 422 ------- null} + -t 39.8124 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {0.0.3.0 1.1.3.0 442 ------- null} - -t 39.8124 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {0.0.3.0 1.1.3.0 442 ------- null} h -t 39.8124 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 39.814 -s 1 -d 3 -p ack -e 40 -c 0 -i 854 -a 1 -x {1.1.3.0 0.0.3.0 423 ------- null} + -t 39.814 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 874 -a 0 -x {0.0.3.0 1.1.3.0 443 ------- null} - -t 39.814 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 874 -a 0 -x {0.0.3.0 1.1.3.0 443 ------- null} h -t 39.814 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 874 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 39.8156 -s 1 -d 3 -p ack -e 40 -c 0 -i 855 -a 1 -x {1.1.3.0 0.0.3.0 424 ------- null} + -t 39.8156 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {0.0.3.0 1.1.3.0 444 ------- null} - -t 39.8156 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {0.0.3.0 1.1.3.0 444 ------- null} h -t 39.8156 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 39.8172 -s 1 -d 3 -p ack -e 40 -c 0 -i 856 -a 1 -x {1.1.3.0 0.0.3.0 425 ------- null} + -t 39.8172 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 876 -a 0 -x {0.0.3.0 1.1.3.0 445 ------- null} - -t 39.8172 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 876 -a 0 -x {0.0.3.0 1.1.3.0 445 ------- null} h -t 39.8172 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 876 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 39.8188 -s 1 -d 3 -p ack -e 40 -c 0 -i 857 -a 1 -x {1.1.3.0 0.0.3.0 426 ------- null} + -t 39.8188 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {0.0.3.0 1.1.3.0 446 ------- null} - -t 39.8188 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {0.0.3.0 1.1.3.0 446 ------- null} h -t 39.8188 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 39.8204 -s 1 -d 3 -p ack -e 40 -c 0 -i 858 -a 1 -x {1.1.3.0 0.0.3.0 427 ------- null} + -t 39.8204 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 878 -a 0 -x {0.0.3.0 1.1.3.0 447 ------- null} - -t 39.8204 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 878 -a 0 -x {0.0.3.0 1.1.3.0 447 ------- null} h -t 39.8204 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 878 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 39.822 -s 1 -d 3 -p ack -e 40 -c 0 -i 859 -a 1 -x {1.1.3.0 0.0.3.0 428 ------- null} + -t 39.822 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {0.0.3.0 1.1.3.0 448 ------- null} - -t 39.822 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {0.0.3.0 1.1.3.0 448 ------- null} h -t 39.822 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 39.8236 -s 1 -d 3 -p ack -e 40 -c 0 -i 860 -a 1 -x {1.1.3.0 0.0.3.0 429 ------- null} + -t 39.8236 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 880 -a 0 -x {0.0.3.0 1.1.3.0 449 ------- null} - -t 39.8236 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 880 -a 0 -x {0.0.3.0 1.1.3.0 449 ------- null} h -t 39.8236 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 880 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 39.8252 -s 1 -d 3 -p ack -e 40 -c 0 -i 861 -a 1 -x {1.1.3.0 0.0.3.0 430 ------- null} + -t 39.8252 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {0.0.3.0 1.1.3.0 450 ------- null} - -t 39.8252 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {0.0.3.0 1.1.3.0 450 ------- null} h -t 39.8252 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 39.9564 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 862 -a 0 -x {0.0.3.0 1.1.3.0 431 ------- null} + -t 39.9564 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 862 -a 0 -x {0.0.3.0 1.1.3.0 431 ------- null} - -t 39.9564 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 862 -a 0 -x {0.0.3.0 1.1.3.0 431 ------- null} h -t 39.9564 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 862 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 39.958 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {0.0.3.0 1.1.3.0 432 ------- null} + -t 39.958 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {0.0.3.0 1.1.3.0 432 ------- null} - -t 39.958 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {0.0.3.0 1.1.3.0 432 ------- null} h -t 39.958 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 39.9596 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 864 -a 0 -x {0.0.3.0 1.1.3.0 433 ------- null} + -t 39.9596 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 864 -a 0 -x {0.0.3.0 1.1.3.0 433 ------- null} - -t 39.9596 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 864 -a 0 -x {0.0.3.0 1.1.3.0 433 ------- null} h -t 39.9596 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 864 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 39.9612 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {0.0.3.0 1.1.3.0 434 ------- null} + -t 39.9612 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {0.0.3.0 1.1.3.0 434 ------- null} - -t 39.9612 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {0.0.3.0 1.1.3.0 434 ------- null} h -t 39.9612 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 39.9628 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 866 -a 0 -x {0.0.3.0 1.1.3.0 435 ------- null} + -t 39.9628 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 866 -a 0 -x {0.0.3.0 1.1.3.0 435 ------- null} - -t 39.9628 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 866 -a 0 -x {0.0.3.0 1.1.3.0 435 ------- null} h -t 39.9628 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 866 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 39.9644 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {0.0.3.0 1.1.3.0 436 ------- null} + -t 39.9644 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {0.0.3.0 1.1.3.0 436 ------- null} - -t 39.9644 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {0.0.3.0 1.1.3.0 436 ------- null} h -t 39.9644 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 39.966 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 868 -a 0 -x {0.0.3.0 1.1.3.0 437 ------- null} + -t 39.966 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 868 -a 0 -x {0.0.3.0 1.1.3.0 437 ------- null} - -t 39.966 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 868 -a 0 -x {0.0.3.0 1.1.3.0 437 ------- null} h -t 39.966 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 868 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 39.9676 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {0.0.3.0 1.1.3.0 438 ------- null} + -t 39.9676 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {0.0.3.0 1.1.3.0 438 ------- null} - -t 39.9676 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {0.0.3.0 1.1.3.0 438 ------- null} h -t 39.9676 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 39.9692 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 870 -a 0 -x {0.0.3.0 1.1.3.0 439 ------- null} + -t 39.9692 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 870 -a 0 -x {0.0.3.0 1.1.3.0 439 ------- null} - -t 39.9692 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 870 -a 0 -x {0.0.3.0 1.1.3.0 439 ------- null} h -t 39.9692 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 870 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 39.9708 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {0.0.3.0 1.1.3.0 440 ------- null} + -t 39.9708 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {0.0.3.0 1.1.3.0 440 ------- null} - -t 39.9708 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {0.0.3.0 1.1.3.0 440 ------- null} h -t 39.9708 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 39.9724 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 872 -a 0 -x {0.0.3.0 1.1.3.0 441 ------- null} + -t 39.9724 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 872 -a 0 -x {0.0.3.0 1.1.3.0 441 ------- null} - -t 39.9724 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 872 -a 0 -x {0.0.3.0 1.1.3.0 441 ------- null} h -t 39.9724 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 872 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 39.974 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {0.0.3.0 1.1.3.0 442 ------- null} + -t 39.974 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {0.0.3.0 1.1.3.0 442 ------- null} - -t 39.974 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {0.0.3.0 1.1.3.0 442 ------- null} h -t 39.974 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 39.9756 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 874 -a 0 -x {0.0.3.0 1.1.3.0 443 ------- null} + -t 39.9756 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 874 -a 0 -x {0.0.3.0 1.1.3.0 443 ------- null} - -t 39.9756 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 874 -a 0 -x {0.0.3.0 1.1.3.0 443 ------- null} h -t 39.9756 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 874 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 39.9772 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {0.0.3.0 1.1.3.0 444 ------- null} + -t 39.9772 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {0.0.3.0 1.1.3.0 444 ------- null} - -t 39.9772 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {0.0.3.0 1.1.3.0 444 ------- null} h -t 39.9772 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 39.9788 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 876 -a 0 -x {0.0.3.0 1.1.3.0 445 ------- null} + -t 39.9788 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 876 -a 0 -x {0.0.3.0 1.1.3.0 445 ------- null} - -t 39.9788 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 876 -a 0 -x {0.0.3.0 1.1.3.0 445 ------- null} h -t 39.9788 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 876 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 39.9804 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {0.0.3.0 1.1.3.0 446 ------- null} + -t 39.9804 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {0.0.3.0 1.1.3.0 446 ------- null} - -t 39.9804 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {0.0.3.0 1.1.3.0 446 ------- null} h -t 39.9804 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 39.982 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 878 -a 0 -x {0.0.3.0 1.1.3.0 447 ------- null} + -t 39.982 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 878 -a 0 -x {0.0.3.0 1.1.3.0 447 ------- null} - -t 39.982 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 878 -a 0 -x {0.0.3.0 1.1.3.0 447 ------- null} h -t 39.982 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 878 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 39.9836 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {0.0.3.0 1.1.3.0 448 ------- null} + -t 39.9836 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {0.0.3.0 1.1.3.0 448 ------- null} - -t 39.9836 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {0.0.3.0 1.1.3.0 448 ------- null} h -t 39.9836 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 39.9852 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 880 -a 0 -x {0.0.3.0 1.1.3.0 449 ------- null} + -t 39.9852 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 880 -a 0 -x {0.0.3.0 1.1.3.0 449 ------- null} - -t 39.9852 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 880 -a 0 -x {0.0.3.0 1.1.3.0 449 ------- null} h -t 39.9852 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 880 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 39.9868 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {0.0.3.0 1.1.3.0 450 ------- null} + -t 39.9868 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {0.0.3.0 1.1.3.0 450 ------- null} - -t 39.9868 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {0.0.3.0 1.1.3.0 450 ------- null} h -t 39.9868 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.258 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 862 -a 0 -x {0.0.3.0 1.1.3.0 431 ------- null} + -t 40.258 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 862 -a 0 -x {0.0.3.0 1.1.3.0 431 ------- null} - -t 40.258 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 862 -a 0 -x {0.0.3.0 1.1.3.0 431 ------- null} h -t 40.258 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 862 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.2596 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {0.0.3.0 1.1.3.0 432 ------- null} + -t 40.2596 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {0.0.3.0 1.1.3.0 432 ------- null} - -t 40.2596 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {0.0.3.0 1.1.3.0 432 ------- null} h -t 40.2596 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.2612 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 864 -a 0 -x {0.0.3.0 1.1.3.0 433 ------- null} + -t 40.2612 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 864 -a 0 -x {0.0.3.0 1.1.3.0 433 ------- null} - -t 40.2612 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 864 -a 0 -x {0.0.3.0 1.1.3.0 433 ------- null} h -t 40.2612 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 864 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.2628 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {0.0.3.0 1.1.3.0 434 ------- null} + -t 40.2628 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {0.0.3.0 1.1.3.0 434 ------- null} - -t 40.2628 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {0.0.3.0 1.1.3.0 434 ------- null} h -t 40.2628 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.2644 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 866 -a 0 -x {0.0.3.0 1.1.3.0 435 ------- null} + -t 40.2644 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 866 -a 0 -x {0.0.3.0 1.1.3.0 435 ------- null} - -t 40.2644 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 866 -a 0 -x {0.0.3.0 1.1.3.0 435 ------- null} h -t 40.2644 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 866 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.266 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {0.0.3.0 1.1.3.0 436 ------- null} + -t 40.266 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {0.0.3.0 1.1.3.0 436 ------- null} - -t 40.266 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {0.0.3.0 1.1.3.0 436 ------- null} h -t 40.266 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.2676 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 868 -a 0 -x {0.0.3.0 1.1.3.0 437 ------- null} + -t 40.2676 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 868 -a 0 -x {0.0.3.0 1.1.3.0 437 ------- null} - -t 40.2676 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 868 -a 0 -x {0.0.3.0 1.1.3.0 437 ------- null} h -t 40.2676 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 868 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.2692 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {0.0.3.0 1.1.3.0 438 ------- null} + -t 40.2692 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {0.0.3.0 1.1.3.0 438 ------- null} - -t 40.2692 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {0.0.3.0 1.1.3.0 438 ------- null} h -t 40.2692 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.2708 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 870 -a 0 -x {0.0.3.0 1.1.3.0 439 ------- null} + -t 40.2708 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 870 -a 0 -x {0.0.3.0 1.1.3.0 439 ------- null} - -t 40.2708 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 870 -a 0 -x {0.0.3.0 1.1.3.0 439 ------- null} h -t 40.2708 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 870 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.2724 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {0.0.3.0 1.1.3.0 440 ------- null} + -t 40.2724 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {0.0.3.0 1.1.3.0 440 ------- null} - -t 40.2724 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {0.0.3.0 1.1.3.0 440 ------- null} h -t 40.2724 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.274 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 872 -a 0 -x {0.0.3.0 1.1.3.0 441 ------- null} + -t 40.274 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 872 -a 0 -x {0.0.3.0 1.1.3.0 441 ------- null} - -t 40.274 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 872 -a 0 -x {0.0.3.0 1.1.3.0 441 ------- null} h -t 40.274 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 872 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.2756 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {0.0.3.0 1.1.3.0 442 ------- null} + -t 40.2756 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {0.0.3.0 1.1.3.0 442 ------- null} - -t 40.2756 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {0.0.3.0 1.1.3.0 442 ------- null} h -t 40.2756 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.2772 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 874 -a 0 -x {0.0.3.0 1.1.3.0 443 ------- null} + -t 40.2772 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 874 -a 0 -x {0.0.3.0 1.1.3.0 443 ------- null} - -t 40.2772 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 874 -a 0 -x {0.0.3.0 1.1.3.0 443 ------- null} h -t 40.2772 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 874 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.2788 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {0.0.3.0 1.1.3.0 444 ------- null} + -t 40.2788 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {0.0.3.0 1.1.3.0 444 ------- null} - -t 40.2788 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {0.0.3.0 1.1.3.0 444 ------- null} h -t 40.2788 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.2804 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 876 -a 0 -x {0.0.3.0 1.1.3.0 445 ------- null} + -t 40.2804 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 876 -a 0 -x {0.0.3.0 1.1.3.0 445 ------- null} - -t 40.2804 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 876 -a 0 -x {0.0.3.0 1.1.3.0 445 ------- null} h -t 40.2804 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 876 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.282 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {0.0.3.0 1.1.3.0 446 ------- null} + -t 40.282 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {0.0.3.0 1.1.3.0 446 ------- null} - -t 40.282 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {0.0.3.0 1.1.3.0 446 ------- null} h -t 40.282 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.2836 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 878 -a 0 -x {0.0.3.0 1.1.3.0 447 ------- null} + -t 40.2836 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 878 -a 0 -x {0.0.3.0 1.1.3.0 447 ------- null} - -t 40.2836 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 878 -a 0 -x {0.0.3.0 1.1.3.0 447 ------- null} h -t 40.2836 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 878 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.2852 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {0.0.3.0 1.1.3.0 448 ------- null} + -t 40.2852 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {0.0.3.0 1.1.3.0 448 ------- null} - -t 40.2852 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {0.0.3.0 1.1.3.0 448 ------- null} h -t 40.2852 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.2868 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 880 -a 0 -x {0.0.3.0 1.1.3.0 449 ------- null} + -t 40.2868 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 880 -a 0 -x {0.0.3.0 1.1.3.0 449 ------- null} - -t 40.2868 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 880 -a 0 -x {0.0.3.0 1.1.3.0 449 ------- null} h -t 40.2868 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 880 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.2884 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {0.0.3.0 1.1.3.0 450 ------- null} + -t 40.2884 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {0.0.3.0 1.1.3.0 450 ------- null} - -t 40.2884 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {0.0.3.0 1.1.3.0 450 ------- null} h -t 40.2884 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.3596 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 862 -a 0 -x {0.0.3.0 1.1.3.0 431 ------- null} + -t 40.3596 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 862 -a 0 -x {0.0.3.0 1.1.3.0 431 ------- null} - -t 40.3596 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 862 -a 0 -x {0.0.3.0 1.1.3.0 431 ------- null} h -t 40.3596 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 862 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.3612 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {0.0.3.0 1.1.3.0 432 ------- null} + -t 40.3612 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {0.0.3.0 1.1.3.0 432 ------- null} - -t 40.3612 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {0.0.3.0 1.1.3.0 432 ------- null} h -t 40.3612 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.3628 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 864 -a 0 -x {0.0.3.0 1.1.3.0 433 ------- null} + -t 40.3628 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 864 -a 0 -x {0.0.3.0 1.1.3.0 433 ------- null} - -t 40.3628 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 864 -a 0 -x {0.0.3.0 1.1.3.0 433 ------- null} h -t 40.3628 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 864 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.3644 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {0.0.3.0 1.1.3.0 434 ------- null} + -t 40.3644 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {0.0.3.0 1.1.3.0 434 ------- null} - -t 40.3644 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {0.0.3.0 1.1.3.0 434 ------- null} h -t 40.3644 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.366 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 866 -a 0 -x {0.0.3.0 1.1.3.0 435 ------- null} + -t 40.366 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 866 -a 0 -x {0.0.3.0 1.1.3.0 435 ------- null} - -t 40.366 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 866 -a 0 -x {0.0.3.0 1.1.3.0 435 ------- null} h -t 40.366 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 866 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.3676 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {0.0.3.0 1.1.3.0 436 ------- null} + -t 40.3676 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {0.0.3.0 1.1.3.0 436 ------- null} - -t 40.3676 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {0.0.3.0 1.1.3.0 436 ------- null} h -t 40.3676 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.3692 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 868 -a 0 -x {0.0.3.0 1.1.3.0 437 ------- null} + -t 40.3692 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 868 -a 0 -x {0.0.3.0 1.1.3.0 437 ------- null} - -t 40.3692 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 868 -a 0 -x {0.0.3.0 1.1.3.0 437 ------- null} h -t 40.3692 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 868 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.3708 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {0.0.3.0 1.1.3.0 438 ------- null} + -t 40.3708 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {0.0.3.0 1.1.3.0 438 ------- null} - -t 40.3708 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {0.0.3.0 1.1.3.0 438 ------- null} h -t 40.3708 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.3724 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 870 -a 0 -x {0.0.3.0 1.1.3.0 439 ------- null} + -t 40.3724 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 870 -a 0 -x {0.0.3.0 1.1.3.0 439 ------- null} - -t 40.3724 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 870 -a 0 -x {0.0.3.0 1.1.3.0 439 ------- null} h -t 40.3724 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 870 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.374 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {0.0.3.0 1.1.3.0 440 ------- null} + -t 40.374 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {0.0.3.0 1.1.3.0 440 ------- null} - -t 40.374 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {0.0.3.0 1.1.3.0 440 ------- null} h -t 40.374 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.3756 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 872 -a 0 -x {0.0.3.0 1.1.3.0 441 ------- null} + -t 40.3756 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 872 -a 0 -x {0.0.3.0 1.1.3.0 441 ------- null} - -t 40.3756 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 872 -a 0 -x {0.0.3.0 1.1.3.0 441 ------- null} h -t 40.3756 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 872 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.3772 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {0.0.3.0 1.1.3.0 442 ------- null} + -t 40.3772 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {0.0.3.0 1.1.3.0 442 ------- null} - -t 40.3772 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {0.0.3.0 1.1.3.0 442 ------- null} h -t 40.3772 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.3788 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 874 -a 0 -x {0.0.3.0 1.1.3.0 443 ------- null} + -t 40.3788 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 874 -a 0 -x {0.0.3.0 1.1.3.0 443 ------- null} - -t 40.3788 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 874 -a 0 -x {0.0.3.0 1.1.3.0 443 ------- null} h -t 40.3788 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 874 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.3804 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {0.0.3.0 1.1.3.0 444 ------- null} + -t 40.3804 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {0.0.3.0 1.1.3.0 444 ------- null} - -t 40.3804 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {0.0.3.0 1.1.3.0 444 ------- null} h -t 40.3804 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.382 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 876 -a 0 -x {0.0.3.0 1.1.3.0 445 ------- null} + -t 40.382 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 876 -a 0 -x {0.0.3.0 1.1.3.0 445 ------- null} - -t 40.382 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 876 -a 0 -x {0.0.3.0 1.1.3.0 445 ------- null} h -t 40.382 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 876 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.3836 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {0.0.3.0 1.1.3.0 446 ------- null} + -t 40.3836 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {0.0.3.0 1.1.3.0 446 ------- null} - -t 40.3836 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {0.0.3.0 1.1.3.0 446 ------- null} h -t 40.3836 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.3852 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 878 -a 0 -x {0.0.3.0 1.1.3.0 447 ------- null} + -t 40.3852 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 878 -a 0 -x {0.0.3.0 1.1.3.0 447 ------- null} - -t 40.3852 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 878 -a 0 -x {0.0.3.0 1.1.3.0 447 ------- null} h -t 40.3852 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 878 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.3868 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {0.0.3.0 1.1.3.0 448 ------- null} + -t 40.3868 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {0.0.3.0 1.1.3.0 448 ------- null} - -t 40.3868 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {0.0.3.0 1.1.3.0 448 ------- null} h -t 40.3868 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.3884 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 880 -a 0 -x {0.0.3.0 1.1.3.0 449 ------- null} + -t 40.3884 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 880 -a 0 -x {0.0.3.0 1.1.3.0 449 ------- null} - -t 40.3884 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 880 -a 0 -x {0.0.3.0 1.1.3.0 449 ------- null} h -t 40.3884 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 880 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.39 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {0.0.3.0 1.1.3.0 450 ------- null} + -t 40.39 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {0.0.3.0 1.1.3.0 450 ------- null} - -t 40.39 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {0.0.3.0 1.1.3.0 450 ------- null} h -t 40.39 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.4412 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 862 -a 0 -x {0.0.3.0 1.1.3.0 431 ------- null} + -t 40.4412 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 862 -a 0 -x {0.0.3.0 1.1.3.0 431 ------- null} - -t 40.4412 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 862 -a 0 -x {0.0.3.0 1.1.3.0 431 ------- null} h -t 40.4412 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 862 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.4428 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {0.0.3.0 1.1.3.0 432 ------- null} + -t 40.4428 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {0.0.3.0 1.1.3.0 432 ------- null} - -t 40.4428 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {0.0.3.0 1.1.3.0 432 ------- null} h -t 40.4428 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.4444 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 864 -a 0 -x {0.0.3.0 1.1.3.0 433 ------- null} + -t 40.4444 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 864 -a 0 -x {0.0.3.0 1.1.3.0 433 ------- null} - -t 40.4444 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 864 -a 0 -x {0.0.3.0 1.1.3.0 433 ------- null} h -t 40.4444 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 864 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.446 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {0.0.3.0 1.1.3.0 434 ------- null} + -t 40.446 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {0.0.3.0 1.1.3.0 434 ------- null} - -t 40.446 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {0.0.3.0 1.1.3.0 434 ------- null} h -t 40.446 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.4476 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 866 -a 0 -x {0.0.3.0 1.1.3.0 435 ------- null} + -t 40.4476 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 866 -a 0 -x {0.0.3.0 1.1.3.0 435 ------- null} - -t 40.4476 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 866 -a 0 -x {0.0.3.0 1.1.3.0 435 ------- null} h -t 40.4476 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 866 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.4492 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {0.0.3.0 1.1.3.0 436 ------- null} + -t 40.4492 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {0.0.3.0 1.1.3.0 436 ------- null} - -t 40.4492 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {0.0.3.0 1.1.3.0 436 ------- null} h -t 40.4492 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.4508 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 868 -a 0 -x {0.0.3.0 1.1.3.0 437 ------- null} + -t 40.4508 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 868 -a 0 -x {0.0.3.0 1.1.3.0 437 ------- null} - -t 40.4508 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 868 -a 0 -x {0.0.3.0 1.1.3.0 437 ------- null} h -t 40.4508 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 868 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.4524 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {0.0.3.0 1.1.3.0 438 ------- null} + -t 40.4524 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {0.0.3.0 1.1.3.0 438 ------- null} - -t 40.4524 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {0.0.3.0 1.1.3.0 438 ------- null} h -t 40.4524 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.454 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 870 -a 0 -x {0.0.3.0 1.1.3.0 439 ------- null} + -t 40.454 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 870 -a 0 -x {0.0.3.0 1.1.3.0 439 ------- null} - -t 40.454 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 870 -a 0 -x {0.0.3.0 1.1.3.0 439 ------- null} h -t 40.454 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 870 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.4556 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {0.0.3.0 1.1.3.0 440 ------- null} + -t 40.4556 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {0.0.3.0 1.1.3.0 440 ------- null} - -t 40.4556 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {0.0.3.0 1.1.3.0 440 ------- null} h -t 40.4556 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.4572 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 872 -a 0 -x {0.0.3.0 1.1.3.0 441 ------- null} + -t 40.4572 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 872 -a 0 -x {0.0.3.0 1.1.3.0 441 ------- null} - -t 40.4572 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 872 -a 0 -x {0.0.3.0 1.1.3.0 441 ------- null} h -t 40.4572 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 872 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.4588 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {0.0.3.0 1.1.3.0 442 ------- null} + -t 40.4588 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {0.0.3.0 1.1.3.0 442 ------- null} - -t 40.4588 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {0.0.3.0 1.1.3.0 442 ------- null} h -t 40.4588 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.4604 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 874 -a 0 -x {0.0.3.0 1.1.3.0 443 ------- null} + -t 40.4604 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 874 -a 0 -x {0.0.3.0 1.1.3.0 443 ------- null} - -t 40.4604 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 874 -a 0 -x {0.0.3.0 1.1.3.0 443 ------- null} h -t 40.4604 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 874 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.462 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {0.0.3.0 1.1.3.0 444 ------- null} + -t 40.462 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {0.0.3.0 1.1.3.0 444 ------- null} - -t 40.462 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {0.0.3.0 1.1.3.0 444 ------- null} h -t 40.462 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.4636 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 876 -a 0 -x {0.0.3.0 1.1.3.0 445 ------- null} + -t 40.4636 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 876 -a 0 -x {0.0.3.0 1.1.3.0 445 ------- null} - -t 40.4636 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 876 -a 0 -x {0.0.3.0 1.1.3.0 445 ------- null} h -t 40.4636 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 876 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.4652 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {0.0.3.0 1.1.3.0 446 ------- null} + -t 40.4652 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {0.0.3.0 1.1.3.0 446 ------- null} - -t 40.4652 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {0.0.3.0 1.1.3.0 446 ------- null} h -t 40.4652 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.4668 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 878 -a 0 -x {0.0.3.0 1.1.3.0 447 ------- null} + -t 40.4668 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 878 -a 0 -x {0.0.3.0 1.1.3.0 447 ------- null} - -t 40.4668 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 878 -a 0 -x {0.0.3.0 1.1.3.0 447 ------- null} h -t 40.4668 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 878 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.4684 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {0.0.3.0 1.1.3.0 448 ------- null} + -t 40.4684 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {0.0.3.0 1.1.3.0 448 ------- null} - -t 40.4684 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {0.0.3.0 1.1.3.0 448 ------- null} h -t 40.4684 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.47 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 880 -a 0 -x {0.0.3.0 1.1.3.0 449 ------- null} + -t 40.47 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 880 -a 0 -x {0.0.3.0 1.1.3.0 449 ------- null} - -t 40.47 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 880 -a 0 -x {0.0.3.0 1.1.3.0 449 ------- null} h -t 40.47 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 880 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.4716 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {0.0.3.0 1.1.3.0 450 ------- null} + -t 40.4716 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {0.0.3.0 1.1.3.0 450 ------- null} - -t 40.4716 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {0.0.3.0 1.1.3.0 450 ------- null} h -t 40.4716 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.5228 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 862 -a 0 -x {0.0.3.0 1.1.3.0 431 ------- null} + -t 40.5228 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 862 -a 0 -x {0.0.3.0 1.1.3.0 431 ------- null} - -t 40.5228 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 862 -a 0 -x {0.0.3.0 1.1.3.0 431 ------- null} h -t 40.5228 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 862 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.5244 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {0.0.3.0 1.1.3.0 432 ------- null} + -t 40.5244 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {0.0.3.0 1.1.3.0 432 ------- null} - -t 40.5244 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {0.0.3.0 1.1.3.0 432 ------- null} h -t 40.5244 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.526 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 864 -a 0 -x {0.0.3.0 1.1.3.0 433 ------- null} + -t 40.526 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 864 -a 0 -x {0.0.3.0 1.1.3.0 433 ------- null} - -t 40.526 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 864 -a 0 -x {0.0.3.0 1.1.3.0 433 ------- null} h -t 40.526 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 864 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.5276 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {0.0.3.0 1.1.3.0 434 ------- null} + -t 40.5276 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {0.0.3.0 1.1.3.0 434 ------- null} - -t 40.5276 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {0.0.3.0 1.1.3.0 434 ------- null} h -t 40.5276 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.5292 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 866 -a 0 -x {0.0.3.0 1.1.3.0 435 ------- null} + -t 40.5292 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 866 -a 0 -x {0.0.3.0 1.1.3.0 435 ------- null} - -t 40.5292 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 866 -a 0 -x {0.0.3.0 1.1.3.0 435 ------- null} h -t 40.5292 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 866 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.5308 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {0.0.3.0 1.1.3.0 436 ------- null} + -t 40.5308 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {0.0.3.0 1.1.3.0 436 ------- null} - -t 40.5308 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {0.0.3.0 1.1.3.0 436 ------- null} h -t 40.5308 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.5324 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 868 -a 0 -x {0.0.3.0 1.1.3.0 437 ------- null} + -t 40.5324 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 868 -a 0 -x {0.0.3.0 1.1.3.0 437 ------- null} - -t 40.5324 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 868 -a 0 -x {0.0.3.0 1.1.3.0 437 ------- null} h -t 40.5324 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 868 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.534 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {0.0.3.0 1.1.3.0 438 ------- null} + -t 40.534 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {0.0.3.0 1.1.3.0 438 ------- null} - -t 40.534 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {0.0.3.0 1.1.3.0 438 ------- null} h -t 40.534 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.5356 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 870 -a 0 -x {0.0.3.0 1.1.3.0 439 ------- null} + -t 40.5356 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 870 -a 0 -x {0.0.3.0 1.1.3.0 439 ------- null} - -t 40.5356 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 870 -a 0 -x {0.0.3.0 1.1.3.0 439 ------- null} h -t 40.5356 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 870 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.5372 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {0.0.3.0 1.1.3.0 440 ------- null} + -t 40.5372 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {0.0.3.0 1.1.3.0 440 ------- null} - -t 40.5372 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {0.0.3.0 1.1.3.0 440 ------- null} h -t 40.5372 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.5388 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 872 -a 0 -x {0.0.3.0 1.1.3.0 441 ------- null} + -t 40.5388 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 872 -a 0 -x {0.0.3.0 1.1.3.0 441 ------- null} - -t 40.5388 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 872 -a 0 -x {0.0.3.0 1.1.3.0 441 ------- null} h -t 40.5388 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 872 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.5404 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {0.0.3.0 1.1.3.0 442 ------- null} + -t 40.5404 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {0.0.3.0 1.1.3.0 442 ------- null} - -t 40.5404 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {0.0.3.0 1.1.3.0 442 ------- null} h -t 40.5404 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.542 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 874 -a 0 -x {0.0.3.0 1.1.3.0 443 ------- null} + -t 40.542 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 874 -a 0 -x {0.0.3.0 1.1.3.0 443 ------- null} - -t 40.542 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 874 -a 0 -x {0.0.3.0 1.1.3.0 443 ------- null} h -t 40.542 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 874 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.5436 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {0.0.3.0 1.1.3.0 444 ------- null} + -t 40.5436 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {0.0.3.0 1.1.3.0 444 ------- null} - -t 40.5436 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {0.0.3.0 1.1.3.0 444 ------- null} h -t 40.5436 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.5452 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 876 -a 0 -x {0.0.3.0 1.1.3.0 445 ------- null} + -t 40.5452 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 876 -a 0 -x {0.0.3.0 1.1.3.0 445 ------- null} - -t 40.5452 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 876 -a 0 -x {0.0.3.0 1.1.3.0 445 ------- null} h -t 40.5452 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 876 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.5468 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {0.0.3.0 1.1.3.0 446 ------- null} + -t 40.5468 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {0.0.3.0 1.1.3.0 446 ------- null} - -t 40.5468 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {0.0.3.0 1.1.3.0 446 ------- null} h -t 40.5468 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.5484 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 878 -a 0 -x {0.0.3.0 1.1.3.0 447 ------- null} + -t 40.5484 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 878 -a 0 -x {0.0.3.0 1.1.3.0 447 ------- null} - -t 40.5484 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 878 -a 0 -x {0.0.3.0 1.1.3.0 447 ------- null} h -t 40.5484 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 878 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.55 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {0.0.3.0 1.1.3.0 448 ------- null} + -t 40.55 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {0.0.3.0 1.1.3.0 448 ------- null} - -t 40.55 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {0.0.3.0 1.1.3.0 448 ------- null} h -t 40.55 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.5516 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 880 -a 0 -x {0.0.3.0 1.1.3.0 449 ------- null} + -t 40.5516 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 880 -a 0 -x {0.0.3.0 1.1.3.0 449 ------- null} - -t 40.5516 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 880 -a 0 -x {0.0.3.0 1.1.3.0 449 ------- null} h -t 40.5516 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 880 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.5532 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {0.0.3.0 1.1.3.0 450 ------- null} + -t 40.5532 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {0.0.3.0 1.1.3.0 450 ------- null} - -t 40.5532 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {0.0.3.0 1.1.3.0 450 ------- null} h -t 40.5532 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 40.5844 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 862 -a 0 -x {0.0.3.0 1.1.3.0 431 ------- null} + -t 40.5844 -s 21 -d 28 -p ack -e 40 -c 0 -i 882 -a 1 -x {1.1.3.0 0.0.3.0 431 ------- null} - -t 40.5844 -s 21 -d 28 -p ack -e 40 -c 0 -i 882 -a 1 -x {1.1.3.0 0.0.3.0 431 ------- null} h -t 40.5844 -s 21 -d 28 -p ack -e 40 -c 0 -i 882 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 40.586 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {0.0.3.0 1.1.3.0 432 ------- null} + -t 40.586 -s 21 -d 28 -p ack -e 40 -c 0 -i 883 -a 1 -x {1.1.3.0 0.0.3.0 432 ------- null} - -t 40.586 -s 21 -d 28 -p ack -e 40 -c 0 -i 883 -a 1 -x {1.1.3.0 0.0.3.0 432 ------- null} h -t 40.586 -s 21 -d 28 -p ack -e 40 -c 0 -i 883 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 40.5876 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 864 -a 0 -x {0.0.3.0 1.1.3.0 433 ------- null} + -t 40.5876 -s 21 -d 28 -p ack -e 40 -c 0 -i 884 -a 1 -x {1.1.3.0 0.0.3.0 433 ------- null} - -t 40.5876 -s 21 -d 28 -p ack -e 40 -c 0 -i 884 -a 1 -x {1.1.3.0 0.0.3.0 433 ------- null} h -t 40.5876 -s 21 -d 28 -p ack -e 40 -c 0 -i 884 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 40.5892 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {0.0.3.0 1.1.3.0 434 ------- null} + -t 40.5892 -s 21 -d 28 -p ack -e 40 -c 0 -i 885 -a 1 -x {1.1.3.0 0.0.3.0 434 ------- null} - -t 40.5892 -s 21 -d 28 -p ack -e 40 -c 0 -i 885 -a 1 -x {1.1.3.0 0.0.3.0 434 ------- null} h -t 40.5892 -s 21 -d 28 -p ack -e 40 -c 0 -i 885 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 40.5908 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 866 -a 0 -x {0.0.3.0 1.1.3.0 435 ------- null} + -t 40.5908 -s 21 -d 28 -p ack -e 40 -c 0 -i 886 -a 1 -x {1.1.3.0 0.0.3.0 435 ------- null} - -t 40.5908 -s 21 -d 28 -p ack -e 40 -c 0 -i 886 -a 1 -x {1.1.3.0 0.0.3.0 435 ------- null} h -t 40.5908 -s 21 -d 28 -p ack -e 40 -c 0 -i 886 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 40.5924 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {0.0.3.0 1.1.3.0 436 ------- null} + -t 40.5924 -s 21 -d 28 -p ack -e 40 -c 0 -i 887 -a 1 -x {1.1.3.0 0.0.3.0 436 ------- null} - -t 40.5924 -s 21 -d 28 -p ack -e 40 -c 0 -i 887 -a 1 -x {1.1.3.0 0.0.3.0 436 ------- null} h -t 40.5924 -s 21 -d 28 -p ack -e 40 -c 0 -i 887 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 40.594 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 868 -a 0 -x {0.0.3.0 1.1.3.0 437 ------- null} + -t 40.594 -s 21 -d 28 -p ack -e 40 -c 0 -i 888 -a 1 -x {1.1.3.0 0.0.3.0 437 ------- null} - -t 40.594 -s 21 -d 28 -p ack -e 40 -c 0 -i 888 -a 1 -x {1.1.3.0 0.0.3.0 437 ------- null} h -t 40.594 -s 21 -d 28 -p ack -e 40 -c 0 -i 888 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 40.5956 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {0.0.3.0 1.1.3.0 438 ------- null} + -t 40.5956 -s 21 -d 28 -p ack -e 40 -c 0 -i 889 -a 1 -x {1.1.3.0 0.0.3.0 438 ------- null} - -t 40.5956 -s 21 -d 28 -p ack -e 40 -c 0 -i 889 -a 1 -x {1.1.3.0 0.0.3.0 438 ------- null} h -t 40.5956 -s 21 -d 28 -p ack -e 40 -c 0 -i 889 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 40.5972 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 870 -a 0 -x {0.0.3.0 1.1.3.0 439 ------- null} + -t 40.5972 -s 21 -d 28 -p ack -e 40 -c 0 -i 890 -a 1 -x {1.1.3.0 0.0.3.0 439 ------- null} - -t 40.5972 -s 21 -d 28 -p ack -e 40 -c 0 -i 890 -a 1 -x {1.1.3.0 0.0.3.0 439 ------- null} h -t 40.5972 -s 21 -d 28 -p ack -e 40 -c 0 -i 890 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 40.5988 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {0.0.3.0 1.1.3.0 440 ------- null} + -t 40.5988 -s 21 -d 28 -p ack -e 40 -c 0 -i 891 -a 1 -x {1.1.3.0 0.0.3.0 440 ------- null} - -t 40.5988 -s 21 -d 28 -p ack -e 40 -c 0 -i 891 -a 1 -x {1.1.3.0 0.0.3.0 440 ------- null} h -t 40.5988 -s 21 -d 28 -p ack -e 40 -c 0 -i 891 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 40.6004 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 872 -a 0 -x {0.0.3.0 1.1.3.0 441 ------- null} + -t 40.6004 -s 21 -d 28 -p ack -e 40 -c 0 -i 892 -a 1 -x {1.1.3.0 0.0.3.0 441 ------- null} - -t 40.6004 -s 21 -d 28 -p ack -e 40 -c 0 -i 892 -a 1 -x {1.1.3.0 0.0.3.0 441 ------- null} h -t 40.6004 -s 21 -d 28 -p ack -e 40 -c 0 -i 892 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 40.602 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {0.0.3.0 1.1.3.0 442 ------- null} + -t 40.602 -s 21 -d 28 -p ack -e 40 -c 0 -i 893 -a 1 -x {1.1.3.0 0.0.3.0 442 ------- null} - -t 40.602 -s 21 -d 28 -p ack -e 40 -c 0 -i 893 -a 1 -x {1.1.3.0 0.0.3.0 442 ------- null} h -t 40.602 -s 21 -d 28 -p ack -e 40 -c 0 -i 893 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 40.6036 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 874 -a 0 -x {0.0.3.0 1.1.3.0 443 ------- null} + -t 40.6036 -s 21 -d 28 -p ack -e 40 -c 0 -i 894 -a 1 -x {1.1.3.0 0.0.3.0 443 ------- null} - -t 40.6036 -s 21 -d 28 -p ack -e 40 -c 0 -i 894 -a 1 -x {1.1.3.0 0.0.3.0 443 ------- null} h -t 40.6036 -s 21 -d 28 -p ack -e 40 -c 0 -i 894 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 40.6052 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {0.0.3.0 1.1.3.0 444 ------- null} + -t 40.6052 -s 21 -d 28 -p ack -e 40 -c 0 -i 895 -a 1 -x {1.1.3.0 0.0.3.0 444 ------- null} - -t 40.6052 -s 21 -d 28 -p ack -e 40 -c 0 -i 895 -a 1 -x {1.1.3.0 0.0.3.0 444 ------- null} h -t 40.6052 -s 21 -d 28 -p ack -e 40 -c 0 -i 895 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 40.6068 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 876 -a 0 -x {0.0.3.0 1.1.3.0 445 ------- null} + -t 40.6068 -s 21 -d 28 -p ack -e 40 -c 0 -i 896 -a 1 -x {1.1.3.0 0.0.3.0 445 ------- null} - -t 40.6068 -s 21 -d 28 -p ack -e 40 -c 0 -i 896 -a 1 -x {1.1.3.0 0.0.3.0 445 ------- null} h -t 40.6068 -s 21 -d 28 -p ack -e 40 -c 0 -i 896 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 40.6084 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {0.0.3.0 1.1.3.0 446 ------- null} + -t 40.6084 -s 21 -d 28 -p ack -e 40 -c 0 -i 897 -a 1 -x {1.1.3.0 0.0.3.0 446 ------- null} - -t 40.6084 -s 21 -d 28 -p ack -e 40 -c 0 -i 897 -a 1 -x {1.1.3.0 0.0.3.0 446 ------- null} h -t 40.6084 -s 21 -d 28 -p ack -e 40 -c 0 -i 897 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 40.61 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 878 -a 0 -x {0.0.3.0 1.1.3.0 447 ------- null} + -t 40.61 -s 21 -d 28 -p ack -e 40 -c 0 -i 898 -a 1 -x {1.1.3.0 0.0.3.0 447 ------- null} - -t 40.61 -s 21 -d 28 -p ack -e 40 -c 0 -i 898 -a 1 -x {1.1.3.0 0.0.3.0 447 ------- null} h -t 40.61 -s 21 -d 28 -p ack -e 40 -c 0 -i 898 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 40.6116 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {0.0.3.0 1.1.3.0 448 ------- null} + -t 40.6116 -s 21 -d 28 -p ack -e 40 -c 0 -i 899 -a 1 -x {1.1.3.0 0.0.3.0 448 ------- null} - -t 40.6116 -s 21 -d 28 -p ack -e 40 -c 0 -i 899 -a 1 -x {1.1.3.0 0.0.3.0 448 ------- null} h -t 40.6116 -s 21 -d 28 -p ack -e 40 -c 0 -i 899 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 40.6132 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 880 -a 0 -x {0.0.3.0 1.1.3.0 449 ------- null} + -t 40.6132 -s 21 -d 28 -p ack -e 40 -c 0 -i 900 -a 1 -x {1.1.3.0 0.0.3.0 449 ------- null} - -t 40.6132 -s 21 -d 28 -p ack -e 40 -c 0 -i 900 -a 1 -x {1.1.3.0 0.0.3.0 449 ------- null} h -t 40.6132 -s 21 -d 28 -p ack -e 40 -c 0 -i 900 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 40.6148 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {0.0.3.0 1.1.3.0 450 ------- null} + -t 40.6148 -s 21 -d 28 -p ack -e 40 -c 0 -i 901 -a 1 -x {1.1.3.0 0.0.3.0 450 ------- null} - -t 40.6148 -s 21 -d 28 -p ack -e 40 -c 0 -i 901 -a 1 -x {1.1.3.0 0.0.3.0 450 ------- null} h -t 40.6148 -s 21 -d 28 -p ack -e 40 -c 0 -i 901 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 40.9345 -s 21 -d 28 -p ack -e 40 -c 0 -i 882 -a 1 -x {1.1.3.0 0.0.3.0 431 ------- null} + -t 40.9345 -s 28 -d 1 -p ack -e 40 -c 0 -i 882 -a 1 -x {1.1.3.0 0.0.3.0 431 ------- null} - -t 40.9345 -s 28 -d 1 -p ack -e 40 -c 0 -i 882 -a 1 -x {1.1.3.0 0.0.3.0 431 ------- null} h -t 40.9345 -s 28 -d 1 -p ack -e 40 -c 0 -i 882 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 40.9361 -s 21 -d 28 -p ack -e 40 -c 0 -i 883 -a 1 -x {1.1.3.0 0.0.3.0 432 ------- null} + -t 40.9361 -s 28 -d 1 -p ack -e 40 -c 0 -i 883 -a 1 -x {1.1.3.0 0.0.3.0 432 ------- null} - -t 40.9361 -s 28 -d 1 -p ack -e 40 -c 0 -i 883 -a 1 -x {1.1.3.0 0.0.3.0 432 ------- null} h -t 40.9361 -s 28 -d 1 -p ack -e 40 -c 0 -i 883 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 40.9377 -s 21 -d 28 -p ack -e 40 -c 0 -i 884 -a 1 -x {1.1.3.0 0.0.3.0 433 ------- null} + -t 40.9377 -s 28 -d 1 -p ack -e 40 -c 0 -i 884 -a 1 -x {1.1.3.0 0.0.3.0 433 ------- null} - -t 40.9377 -s 28 -d 1 -p ack -e 40 -c 0 -i 884 -a 1 -x {1.1.3.0 0.0.3.0 433 ------- null} h -t 40.9377 -s 28 -d 1 -p ack -e 40 -c 0 -i 884 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 40.9393 -s 21 -d 28 -p ack -e 40 -c 0 -i 885 -a 1 -x {1.1.3.0 0.0.3.0 434 ------- null} + -t 40.9393 -s 28 -d 1 -p ack -e 40 -c 0 -i 885 -a 1 -x {1.1.3.0 0.0.3.0 434 ------- null} - -t 40.9393 -s 28 -d 1 -p ack -e 40 -c 0 -i 885 -a 1 -x {1.1.3.0 0.0.3.0 434 ------- null} h -t 40.9393 -s 28 -d 1 -p ack -e 40 -c 0 -i 885 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 40.9409 -s 21 -d 28 -p ack -e 40 -c 0 -i 886 -a 1 -x {1.1.3.0 0.0.3.0 435 ------- null} + -t 40.9409 -s 28 -d 1 -p ack -e 40 -c 0 -i 886 -a 1 -x {1.1.3.0 0.0.3.0 435 ------- null} - -t 40.9409 -s 28 -d 1 -p ack -e 40 -c 0 -i 886 -a 1 -x {1.1.3.0 0.0.3.0 435 ------- null} h -t 40.9409 -s 28 -d 1 -p ack -e 40 -c 0 -i 886 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 40.9425 -s 21 -d 28 -p ack -e 40 -c 0 -i 887 -a 1 -x {1.1.3.0 0.0.3.0 436 ------- null} + -t 40.9425 -s 28 -d 1 -p ack -e 40 -c 0 -i 887 -a 1 -x {1.1.3.0 0.0.3.0 436 ------- null} - -t 40.9425 -s 28 -d 1 -p ack -e 40 -c 0 -i 887 -a 1 -x {1.1.3.0 0.0.3.0 436 ------- null} h -t 40.9425 -s 28 -d 1 -p ack -e 40 -c 0 -i 887 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 40.9441 -s 21 -d 28 -p ack -e 40 -c 0 -i 888 -a 1 -x {1.1.3.0 0.0.3.0 437 ------- null} + -t 40.9441 -s 28 -d 1 -p ack -e 40 -c 0 -i 888 -a 1 -x {1.1.3.0 0.0.3.0 437 ------- null} - -t 40.9441 -s 28 -d 1 -p ack -e 40 -c 0 -i 888 -a 1 -x {1.1.3.0 0.0.3.0 437 ------- null} h -t 40.9441 -s 28 -d 1 -p ack -e 40 -c 0 -i 888 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 40.9457 -s 21 -d 28 -p ack -e 40 -c 0 -i 889 -a 1 -x {1.1.3.0 0.0.3.0 438 ------- null} + -t 40.9457 -s 28 -d 1 -p ack -e 40 -c 0 -i 889 -a 1 -x {1.1.3.0 0.0.3.0 438 ------- null} - -t 40.9457 -s 28 -d 1 -p ack -e 40 -c 0 -i 889 -a 1 -x {1.1.3.0 0.0.3.0 438 ------- null} h -t 40.9457 -s 28 -d 1 -p ack -e 40 -c 0 -i 889 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 40.9473 -s 21 -d 28 -p ack -e 40 -c 0 -i 890 -a 1 -x {1.1.3.0 0.0.3.0 439 ------- null} + -t 40.9473 -s 28 -d 1 -p ack -e 40 -c 0 -i 890 -a 1 -x {1.1.3.0 0.0.3.0 439 ------- null} - -t 40.9473 -s 28 -d 1 -p ack -e 40 -c 0 -i 890 -a 1 -x {1.1.3.0 0.0.3.0 439 ------- null} h -t 40.9473 -s 28 -d 1 -p ack -e 40 -c 0 -i 890 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 40.9489 -s 21 -d 28 -p ack -e 40 -c 0 -i 891 -a 1 -x {1.1.3.0 0.0.3.0 440 ------- null} + -t 40.9489 -s 28 -d 1 -p ack -e 40 -c 0 -i 891 -a 1 -x {1.1.3.0 0.0.3.0 440 ------- null} - -t 40.9489 -s 28 -d 1 -p ack -e 40 -c 0 -i 891 -a 1 -x {1.1.3.0 0.0.3.0 440 ------- null} h -t 40.9489 -s 28 -d 1 -p ack -e 40 -c 0 -i 891 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 40.9505 -s 21 -d 28 -p ack -e 40 -c 0 -i 892 -a 1 -x {1.1.3.0 0.0.3.0 441 ------- null} + -t 40.9505 -s 28 -d 1 -p ack -e 40 -c 0 -i 892 -a 1 -x {1.1.3.0 0.0.3.0 441 ------- null} - -t 40.9505 -s 28 -d 1 -p ack -e 40 -c 0 -i 892 -a 1 -x {1.1.3.0 0.0.3.0 441 ------- null} h -t 40.9505 -s 28 -d 1 -p ack -e 40 -c 0 -i 892 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 40.9521 -s 21 -d 28 -p ack -e 40 -c 0 -i 893 -a 1 -x {1.1.3.0 0.0.3.0 442 ------- null} + -t 40.9521 -s 28 -d 1 -p ack -e 40 -c 0 -i 893 -a 1 -x {1.1.3.0 0.0.3.0 442 ------- null} - -t 40.9521 -s 28 -d 1 -p ack -e 40 -c 0 -i 893 -a 1 -x {1.1.3.0 0.0.3.0 442 ------- null} h -t 40.9521 -s 28 -d 1 -p ack -e 40 -c 0 -i 893 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 40.9537 -s 21 -d 28 -p ack -e 40 -c 0 -i 894 -a 1 -x {1.1.3.0 0.0.3.0 443 ------- null} + -t 40.9537 -s 28 -d 1 -p ack -e 40 -c 0 -i 894 -a 1 -x {1.1.3.0 0.0.3.0 443 ------- null} - -t 40.9537 -s 28 -d 1 -p ack -e 40 -c 0 -i 894 -a 1 -x {1.1.3.0 0.0.3.0 443 ------- null} h -t 40.9537 -s 28 -d 1 -p ack -e 40 -c 0 -i 894 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 40.9553 -s 21 -d 28 -p ack -e 40 -c 0 -i 895 -a 1 -x {1.1.3.0 0.0.3.0 444 ------- null} + -t 40.9553 -s 28 -d 1 -p ack -e 40 -c 0 -i 895 -a 1 -x {1.1.3.0 0.0.3.0 444 ------- null} - -t 40.9553 -s 28 -d 1 -p ack -e 40 -c 0 -i 895 -a 1 -x {1.1.3.0 0.0.3.0 444 ------- null} h -t 40.9553 -s 28 -d 1 -p ack -e 40 -c 0 -i 895 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 40.9569 -s 21 -d 28 -p ack -e 40 -c 0 -i 896 -a 1 -x {1.1.3.0 0.0.3.0 445 ------- null} + -t 40.9569 -s 28 -d 1 -p ack -e 40 -c 0 -i 896 -a 1 -x {1.1.3.0 0.0.3.0 445 ------- null} - -t 40.9569 -s 28 -d 1 -p ack -e 40 -c 0 -i 896 -a 1 -x {1.1.3.0 0.0.3.0 445 ------- null} h -t 40.9569 -s 28 -d 1 -p ack -e 40 -c 0 -i 896 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 40.9585 -s 21 -d 28 -p ack -e 40 -c 0 -i 897 -a 1 -x {1.1.3.0 0.0.3.0 446 ------- null} + -t 40.9585 -s 28 -d 1 -p ack -e 40 -c 0 -i 897 -a 1 -x {1.1.3.0 0.0.3.0 446 ------- null} - -t 40.9585 -s 28 -d 1 -p ack -e 40 -c 0 -i 897 -a 1 -x {1.1.3.0 0.0.3.0 446 ------- null} h -t 40.9585 -s 28 -d 1 -p ack -e 40 -c 0 -i 897 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 40.9601 -s 21 -d 28 -p ack -e 40 -c 0 -i 898 -a 1 -x {1.1.3.0 0.0.3.0 447 ------- null} + -t 40.9601 -s 28 -d 1 -p ack -e 40 -c 0 -i 898 -a 1 -x {1.1.3.0 0.0.3.0 447 ------- null} - -t 40.9601 -s 28 -d 1 -p ack -e 40 -c 0 -i 898 -a 1 -x {1.1.3.0 0.0.3.0 447 ------- null} h -t 40.9601 -s 28 -d 1 -p ack -e 40 -c 0 -i 898 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 40.9617 -s 21 -d 28 -p ack -e 40 -c 0 -i 899 -a 1 -x {1.1.3.0 0.0.3.0 448 ------- null} + -t 40.9617 -s 28 -d 1 -p ack -e 40 -c 0 -i 899 -a 1 -x {1.1.3.0 0.0.3.0 448 ------- null} - -t 40.9617 -s 28 -d 1 -p ack -e 40 -c 0 -i 899 -a 1 -x {1.1.3.0 0.0.3.0 448 ------- null} h -t 40.9617 -s 28 -d 1 -p ack -e 40 -c 0 -i 899 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 40.9633 -s 21 -d 28 -p ack -e 40 -c 0 -i 900 -a 1 -x {1.1.3.0 0.0.3.0 449 ------- null} + -t 40.9633 -s 28 -d 1 -p ack -e 40 -c 0 -i 900 -a 1 -x {1.1.3.0 0.0.3.0 449 ------- null} - -t 40.9633 -s 28 -d 1 -p ack -e 40 -c 0 -i 900 -a 1 -x {1.1.3.0 0.0.3.0 449 ------- null} h -t 40.9633 -s 28 -d 1 -p ack -e 40 -c 0 -i 900 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 40.9649 -s 21 -d 28 -p ack -e 40 -c 0 -i 901 -a 1 -x {1.1.3.0 0.0.3.0 450 ------- null} + -t 40.9649 -s 28 -d 1 -p ack -e 40 -c 0 -i 901 -a 1 -x {1.1.3.0 0.0.3.0 450 ------- null} - -t 40.9649 -s 28 -d 1 -p ack -e 40 -c 0 -i 901 -a 1 -x {1.1.3.0 0.0.3.0 450 ------- null} h -t 40.9649 -s 28 -d 1 -p ack -e 40 -c 0 -i 901 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 41.2345 -s 28 -d 1 -p ack -e 40 -c 0 -i 882 -a 1 -x {1.1.3.0 0.0.3.0 431 ------- null} + -t 41.2345 -s 1 -d 3 -p ack -e 40 -c 0 -i 882 -a 1 -x {1.1.3.0 0.0.3.0 431 ------- null} - -t 41.2345 -s 1 -d 3 -p ack -e 40 -c 0 -i 882 -a 1 -x {1.1.3.0 0.0.3.0 431 ------- null} h -t 41.2345 -s 1 -d 3 -p ack -e 40 -c 0 -i 882 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 41.2361 -s 28 -d 1 -p ack -e 40 -c 0 -i 883 -a 1 -x {1.1.3.0 0.0.3.0 432 ------- null} + -t 41.2361 -s 1 -d 3 -p ack -e 40 -c 0 -i 883 -a 1 -x {1.1.3.0 0.0.3.0 432 ------- null} - -t 41.2361 -s 1 -d 3 -p ack -e 40 -c 0 -i 883 -a 1 -x {1.1.3.0 0.0.3.0 432 ------- null} h -t 41.2361 -s 1 -d 3 -p ack -e 40 -c 0 -i 883 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 41.2377 -s 28 -d 1 -p ack -e 40 -c 0 -i 884 -a 1 -x {1.1.3.0 0.0.3.0 433 ------- null} + -t 41.2377 -s 1 -d 3 -p ack -e 40 -c 0 -i 884 -a 1 -x {1.1.3.0 0.0.3.0 433 ------- null} - -t 41.2377 -s 1 -d 3 -p ack -e 40 -c 0 -i 884 -a 1 -x {1.1.3.0 0.0.3.0 433 ------- null} h -t 41.2377 -s 1 -d 3 -p ack -e 40 -c 0 -i 884 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 41.2393 -s 28 -d 1 -p ack -e 40 -c 0 -i 885 -a 1 -x {1.1.3.0 0.0.3.0 434 ------- null} + -t 41.2393 -s 1 -d 3 -p ack -e 40 -c 0 -i 885 -a 1 -x {1.1.3.0 0.0.3.0 434 ------- null} - -t 41.2393 -s 1 -d 3 -p ack -e 40 -c 0 -i 885 -a 1 -x {1.1.3.0 0.0.3.0 434 ------- null} h -t 41.2393 -s 1 -d 3 -p ack -e 40 -c 0 -i 885 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 41.2409 -s 28 -d 1 -p ack -e 40 -c 0 -i 886 -a 1 -x {1.1.3.0 0.0.3.0 435 ------- null} + -t 41.2409 -s 1 -d 3 -p ack -e 40 -c 0 -i 886 -a 1 -x {1.1.3.0 0.0.3.0 435 ------- null} - -t 41.2409 -s 1 -d 3 -p ack -e 40 -c 0 -i 886 -a 1 -x {1.1.3.0 0.0.3.0 435 ------- null} h -t 41.2409 -s 1 -d 3 -p ack -e 40 -c 0 -i 886 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 41.2425 -s 28 -d 1 -p ack -e 40 -c 0 -i 887 -a 1 -x {1.1.3.0 0.0.3.0 436 ------- null} + -t 41.2425 -s 1 -d 3 -p ack -e 40 -c 0 -i 887 -a 1 -x {1.1.3.0 0.0.3.0 436 ------- null} - -t 41.2425 -s 1 -d 3 -p ack -e 40 -c 0 -i 887 -a 1 -x {1.1.3.0 0.0.3.0 436 ------- null} h -t 41.2425 -s 1 -d 3 -p ack -e 40 -c 0 -i 887 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 41.2441 -s 28 -d 1 -p ack -e 40 -c 0 -i 888 -a 1 -x {1.1.3.0 0.0.3.0 437 ------- null} + -t 41.2441 -s 1 -d 3 -p ack -e 40 -c 0 -i 888 -a 1 -x {1.1.3.0 0.0.3.0 437 ------- null} - -t 41.2441 -s 1 -d 3 -p ack -e 40 -c 0 -i 888 -a 1 -x {1.1.3.0 0.0.3.0 437 ------- null} h -t 41.2441 -s 1 -d 3 -p ack -e 40 -c 0 -i 888 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 41.2457 -s 28 -d 1 -p ack -e 40 -c 0 -i 889 -a 1 -x {1.1.3.0 0.0.3.0 438 ------- null} + -t 41.2457 -s 1 -d 3 -p ack -e 40 -c 0 -i 889 -a 1 -x {1.1.3.0 0.0.3.0 438 ------- null} - -t 41.2457 -s 1 -d 3 -p ack -e 40 -c 0 -i 889 -a 1 -x {1.1.3.0 0.0.3.0 438 ------- null} h -t 41.2457 -s 1 -d 3 -p ack -e 40 -c 0 -i 889 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 41.2473 -s 28 -d 1 -p ack -e 40 -c 0 -i 890 -a 1 -x {1.1.3.0 0.0.3.0 439 ------- null} + -t 41.2473 -s 1 -d 3 -p ack -e 40 -c 0 -i 890 -a 1 -x {1.1.3.0 0.0.3.0 439 ------- null} - -t 41.2473 -s 1 -d 3 -p ack -e 40 -c 0 -i 890 -a 1 -x {1.1.3.0 0.0.3.0 439 ------- null} h -t 41.2473 -s 1 -d 3 -p ack -e 40 -c 0 -i 890 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 41.2489 -s 28 -d 1 -p ack -e 40 -c 0 -i 891 -a 1 -x {1.1.3.0 0.0.3.0 440 ------- null} + -t 41.2489 -s 1 -d 3 -p ack -e 40 -c 0 -i 891 -a 1 -x {1.1.3.0 0.0.3.0 440 ------- null} - -t 41.2489 -s 1 -d 3 -p ack -e 40 -c 0 -i 891 -a 1 -x {1.1.3.0 0.0.3.0 440 ------- null} h -t 41.2489 -s 1 -d 3 -p ack -e 40 -c 0 -i 891 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 41.2505 -s 28 -d 1 -p ack -e 40 -c 0 -i 892 -a 1 -x {1.1.3.0 0.0.3.0 441 ------- null} + -t 41.2505 -s 1 -d 3 -p ack -e 40 -c 0 -i 892 -a 1 -x {1.1.3.0 0.0.3.0 441 ------- null} - -t 41.2505 -s 1 -d 3 -p ack -e 40 -c 0 -i 892 -a 1 -x {1.1.3.0 0.0.3.0 441 ------- null} h -t 41.2505 -s 1 -d 3 -p ack -e 40 -c 0 -i 892 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 41.2521 -s 28 -d 1 -p ack -e 40 -c 0 -i 893 -a 1 -x {1.1.3.0 0.0.3.0 442 ------- null} + -t 41.2521 -s 1 -d 3 -p ack -e 40 -c 0 -i 893 -a 1 -x {1.1.3.0 0.0.3.0 442 ------- null} - -t 41.2521 -s 1 -d 3 -p ack -e 40 -c 0 -i 893 -a 1 -x {1.1.3.0 0.0.3.0 442 ------- null} h -t 41.2521 -s 1 -d 3 -p ack -e 40 -c 0 -i 893 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 41.2537 -s 28 -d 1 -p ack -e 40 -c 0 -i 894 -a 1 -x {1.1.3.0 0.0.3.0 443 ------- null} + -t 41.2537 -s 1 -d 3 -p ack -e 40 -c 0 -i 894 -a 1 -x {1.1.3.0 0.0.3.0 443 ------- null} - -t 41.2537 -s 1 -d 3 -p ack -e 40 -c 0 -i 894 -a 1 -x {1.1.3.0 0.0.3.0 443 ------- null} h -t 41.2537 -s 1 -d 3 -p ack -e 40 -c 0 -i 894 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 41.2553 -s 28 -d 1 -p ack -e 40 -c 0 -i 895 -a 1 -x {1.1.3.0 0.0.3.0 444 ------- null} + -t 41.2553 -s 1 -d 3 -p ack -e 40 -c 0 -i 895 -a 1 -x {1.1.3.0 0.0.3.0 444 ------- null} - -t 41.2553 -s 1 -d 3 -p ack -e 40 -c 0 -i 895 -a 1 -x {1.1.3.0 0.0.3.0 444 ------- null} h -t 41.2553 -s 1 -d 3 -p ack -e 40 -c 0 -i 895 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 41.2569 -s 28 -d 1 -p ack -e 40 -c 0 -i 896 -a 1 -x {1.1.3.0 0.0.3.0 445 ------- null} + -t 41.2569 -s 1 -d 3 -p ack -e 40 -c 0 -i 896 -a 1 -x {1.1.3.0 0.0.3.0 445 ------- null} - -t 41.2569 -s 1 -d 3 -p ack -e 40 -c 0 -i 896 -a 1 -x {1.1.3.0 0.0.3.0 445 ------- null} h -t 41.2569 -s 1 -d 3 -p ack -e 40 -c 0 -i 896 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 41.2585 -s 28 -d 1 -p ack -e 40 -c 0 -i 897 -a 1 -x {1.1.3.0 0.0.3.0 446 ------- null} + -t 41.2585 -s 1 -d 3 -p ack -e 40 -c 0 -i 897 -a 1 -x {1.1.3.0 0.0.3.0 446 ------- null} - -t 41.2585 -s 1 -d 3 -p ack -e 40 -c 0 -i 897 -a 1 -x {1.1.3.0 0.0.3.0 446 ------- null} h -t 41.2585 -s 1 -d 3 -p ack -e 40 -c 0 -i 897 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 41.2601 -s 28 -d 1 -p ack -e 40 -c 0 -i 898 -a 1 -x {1.1.3.0 0.0.3.0 447 ------- null} + -t 41.2601 -s 1 -d 3 -p ack -e 40 -c 0 -i 898 -a 1 -x {1.1.3.0 0.0.3.0 447 ------- null} - -t 41.2601 -s 1 -d 3 -p ack -e 40 -c 0 -i 898 -a 1 -x {1.1.3.0 0.0.3.0 447 ------- null} h -t 41.2601 -s 1 -d 3 -p ack -e 40 -c 0 -i 898 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 41.2617 -s 28 -d 1 -p ack -e 40 -c 0 -i 899 -a 1 -x {1.1.3.0 0.0.3.0 448 ------- null} + -t 41.2617 -s 1 -d 3 -p ack -e 40 -c 0 -i 899 -a 1 -x {1.1.3.0 0.0.3.0 448 ------- null} - -t 41.2617 -s 1 -d 3 -p ack -e 40 -c 0 -i 899 -a 1 -x {1.1.3.0 0.0.3.0 448 ------- null} h -t 41.2617 -s 1 -d 3 -p ack -e 40 -c 0 -i 899 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 41.2633 -s 28 -d 1 -p ack -e 40 -c 0 -i 900 -a 1 -x {1.1.3.0 0.0.3.0 449 ------- null} + -t 41.2633 -s 1 -d 3 -p ack -e 40 -c 0 -i 900 -a 1 -x {1.1.3.0 0.0.3.0 449 ------- null} - -t 41.2633 -s 1 -d 3 -p ack -e 40 -c 0 -i 900 -a 1 -x {1.1.3.0 0.0.3.0 449 ------- null} h -t 41.2633 -s 1 -d 3 -p ack -e 40 -c 0 -i 900 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 41.2649 -s 28 -d 1 -p ack -e 40 -c 0 -i 901 -a 1 -x {1.1.3.0 0.0.3.0 450 ------- null} + -t 41.2649 -s 1 -d 3 -p ack -e 40 -c 0 -i 901 -a 1 -x {1.1.3.0 0.0.3.0 450 ------- null} - -t 41.2649 -s 1 -d 3 -p ack -e 40 -c 0 -i 901 -a 1 -x {1.1.3.0 0.0.3.0 450 ------- null} h -t 41.2649 -s 1 -d 3 -p ack -e 40 -c 0 -i 901 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 41.3746 -s 1 -d 3 -p ack -e 40 -c 0 -i 882 -a 1 -x {1.1.3.0 0.0.3.0 431 ------- null} + -t 41.3746 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 902 -a 0 -x {0.0.3.0 1.1.3.0 451 ------- null} - -t 41.3746 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 902 -a 0 -x {0.0.3.0 1.1.3.0 451 ------- null} h -t 41.3746 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 902 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.3762 -s 1 -d 3 -p ack -e 40 -c 0 -i 883 -a 1 -x {1.1.3.0 0.0.3.0 432 ------- null} + -t 41.3762 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {0.0.3.0 1.1.3.0 452 ------- null} - -t 41.3762 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {0.0.3.0 1.1.3.0 452 ------- null} h -t 41.3762 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.3778 -s 1 -d 3 -p ack -e 40 -c 0 -i 884 -a 1 -x {1.1.3.0 0.0.3.0 433 ------- null} + -t 41.3778 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 904 -a 0 -x {0.0.3.0 1.1.3.0 453 ------- null} - -t 41.3778 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 904 -a 0 -x {0.0.3.0 1.1.3.0 453 ------- null} h -t 41.3778 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 904 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.3794 -s 1 -d 3 -p ack -e 40 -c 0 -i 885 -a 1 -x {1.1.3.0 0.0.3.0 434 ------- null} + -t 41.3794 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {0.0.3.0 1.1.3.0 454 ------- null} - -t 41.3794 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {0.0.3.0 1.1.3.0 454 ------- null} h -t 41.3794 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.381 -s 1 -d 3 -p ack -e 40 -c 0 -i 886 -a 1 -x {1.1.3.0 0.0.3.0 435 ------- null} + -t 41.381 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 906 -a 0 -x {0.0.3.0 1.1.3.0 455 ------- null} - -t 41.381 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 906 -a 0 -x {0.0.3.0 1.1.3.0 455 ------- null} h -t 41.381 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 906 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.3826 -s 1 -d 3 -p ack -e 40 -c 0 -i 887 -a 1 -x {1.1.3.0 0.0.3.0 436 ------- null} + -t 41.3826 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {0.0.3.0 1.1.3.0 456 ------- null} - -t 41.3826 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {0.0.3.0 1.1.3.0 456 ------- null} h -t 41.3826 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.3842 -s 1 -d 3 -p ack -e 40 -c 0 -i 888 -a 1 -x {1.1.3.0 0.0.3.0 437 ------- null} + -t 41.3842 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 908 -a 0 -x {0.0.3.0 1.1.3.0 457 ------- null} - -t 41.3842 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 908 -a 0 -x {0.0.3.0 1.1.3.0 457 ------- null} h -t 41.3842 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 908 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.3858 -s 1 -d 3 -p ack -e 40 -c 0 -i 889 -a 1 -x {1.1.3.0 0.0.3.0 438 ------- null} + -t 41.3858 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {0.0.3.0 1.1.3.0 458 ------- null} - -t 41.3858 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {0.0.3.0 1.1.3.0 458 ------- null} h -t 41.3858 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.3874 -s 1 -d 3 -p ack -e 40 -c 0 -i 890 -a 1 -x {1.1.3.0 0.0.3.0 439 ------- null} + -t 41.3874 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 910 -a 0 -x {0.0.3.0 1.1.3.0 459 ------- null} - -t 41.3874 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 910 -a 0 -x {0.0.3.0 1.1.3.0 459 ------- null} h -t 41.3874 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 910 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.389 -s 1 -d 3 -p ack -e 40 -c 0 -i 891 -a 1 -x {1.1.3.0 0.0.3.0 440 ------- null} + -t 41.389 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {0.0.3.0 1.1.3.0 460 ------- null} - -t 41.389 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {0.0.3.0 1.1.3.0 460 ------- null} h -t 41.389 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.3906 -s 1 -d 3 -p ack -e 40 -c 0 -i 892 -a 1 -x {1.1.3.0 0.0.3.0 441 ------- null} + -t 41.3906 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 912 -a 0 -x {0.0.3.0 1.1.3.0 461 ------- null} - -t 41.3906 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 912 -a 0 -x {0.0.3.0 1.1.3.0 461 ------- null} h -t 41.3906 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 912 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.3922 -s 1 -d 3 -p ack -e 40 -c 0 -i 893 -a 1 -x {1.1.3.0 0.0.3.0 442 ------- null} + -t 41.3922 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {0.0.3.0 1.1.3.0 462 ------- null} - -t 41.3922 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {0.0.3.0 1.1.3.0 462 ------- null} h -t 41.3922 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.3938 -s 1 -d 3 -p ack -e 40 -c 0 -i 894 -a 1 -x {1.1.3.0 0.0.3.0 443 ------- null} + -t 41.3938 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 914 -a 0 -x {0.0.3.0 1.1.3.0 463 ------- null} - -t 41.3938 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 914 -a 0 -x {0.0.3.0 1.1.3.0 463 ------- null} h -t 41.3938 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 914 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.3954 -s 1 -d 3 -p ack -e 40 -c 0 -i 895 -a 1 -x {1.1.3.0 0.0.3.0 444 ------- null} + -t 41.3954 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {0.0.3.0 1.1.3.0 464 ------- null} - -t 41.3954 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {0.0.3.0 1.1.3.0 464 ------- null} h -t 41.3954 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.397 -s 1 -d 3 -p ack -e 40 -c 0 -i 896 -a 1 -x {1.1.3.0 0.0.3.0 445 ------- null} + -t 41.397 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 916 -a 0 -x {0.0.3.0 1.1.3.0 465 ------- null} - -t 41.397 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 916 -a 0 -x {0.0.3.0 1.1.3.0 465 ------- null} h -t 41.397 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 916 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.3986 -s 1 -d 3 -p ack -e 40 -c 0 -i 897 -a 1 -x {1.1.3.0 0.0.3.0 446 ------- null} + -t 41.3986 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {0.0.3.0 1.1.3.0 466 ------- null} - -t 41.3986 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {0.0.3.0 1.1.3.0 466 ------- null} h -t 41.3986 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.4002 -s 1 -d 3 -p ack -e 40 -c 0 -i 898 -a 1 -x {1.1.3.0 0.0.3.0 447 ------- null} + -t 41.4002 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 918 -a 0 -x {0.0.3.0 1.1.3.0 467 ------- null} - -t 41.4002 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 918 -a 0 -x {0.0.3.0 1.1.3.0 467 ------- null} h -t 41.4002 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 918 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.4018 -s 1 -d 3 -p ack -e 40 -c 0 -i 899 -a 1 -x {1.1.3.0 0.0.3.0 448 ------- null} + -t 41.4018 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {0.0.3.0 1.1.3.0 468 ------- null} - -t 41.4018 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {0.0.3.0 1.1.3.0 468 ------- null} h -t 41.4018 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.4034 -s 1 -d 3 -p ack -e 40 -c 0 -i 900 -a 1 -x {1.1.3.0 0.0.3.0 449 ------- null} + -t 41.4034 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 920 -a 0 -x {0.0.3.0 1.1.3.0 469 ------- null} - -t 41.4034 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 920 -a 0 -x {0.0.3.0 1.1.3.0 469 ------- null} h -t 41.4034 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 920 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.405 -s 1 -d 3 -p ack -e 40 -c 0 -i 901 -a 1 -x {1.1.3.0 0.0.3.0 450 ------- null} + -t 41.405 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {0.0.3.0 1.1.3.0 470 ------- null} - -t 41.405 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {0.0.3.0 1.1.3.0 470 ------- null} h -t 41.405 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.5362 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 902 -a 0 -x {0.0.3.0 1.1.3.0 451 ------- null} + -t 41.5362 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 902 -a 0 -x {0.0.3.0 1.1.3.0 451 ------- null} - -t 41.5362 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 902 -a 0 -x {0.0.3.0 1.1.3.0 451 ------- null} h -t 41.5362 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 902 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.5378 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {0.0.3.0 1.1.3.0 452 ------- null} + -t 41.5378 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {0.0.3.0 1.1.3.0 452 ------- null} - -t 41.5378 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {0.0.3.0 1.1.3.0 452 ------- null} h -t 41.5378 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.5394 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 904 -a 0 -x {0.0.3.0 1.1.3.0 453 ------- null} + -t 41.5394 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 904 -a 0 -x {0.0.3.0 1.1.3.0 453 ------- null} - -t 41.5394 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 904 -a 0 -x {0.0.3.0 1.1.3.0 453 ------- null} h -t 41.5394 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 904 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.541 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {0.0.3.0 1.1.3.0 454 ------- null} + -t 41.541 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {0.0.3.0 1.1.3.0 454 ------- null} - -t 41.541 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {0.0.3.0 1.1.3.0 454 ------- null} h -t 41.541 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.5426 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 906 -a 0 -x {0.0.3.0 1.1.3.0 455 ------- null} + -t 41.5426 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 906 -a 0 -x {0.0.3.0 1.1.3.0 455 ------- null} - -t 41.5426 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 906 -a 0 -x {0.0.3.0 1.1.3.0 455 ------- null} h -t 41.5426 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 906 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.5442 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {0.0.3.0 1.1.3.0 456 ------- null} + -t 41.5442 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {0.0.3.0 1.1.3.0 456 ------- null} - -t 41.5442 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {0.0.3.0 1.1.3.0 456 ------- null} h -t 41.5442 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.5458 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 908 -a 0 -x {0.0.3.0 1.1.3.0 457 ------- null} + -t 41.5458 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 908 -a 0 -x {0.0.3.0 1.1.3.0 457 ------- null} - -t 41.5458 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 908 -a 0 -x {0.0.3.0 1.1.3.0 457 ------- null} h -t 41.5458 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 908 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.5474 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {0.0.3.0 1.1.3.0 458 ------- null} + -t 41.5474 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {0.0.3.0 1.1.3.0 458 ------- null} - -t 41.5474 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {0.0.3.0 1.1.3.0 458 ------- null} h -t 41.5474 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.549 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 910 -a 0 -x {0.0.3.0 1.1.3.0 459 ------- null} + -t 41.549 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 910 -a 0 -x {0.0.3.0 1.1.3.0 459 ------- null} - -t 41.549 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 910 -a 0 -x {0.0.3.0 1.1.3.0 459 ------- null} h -t 41.549 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 910 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.5506 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {0.0.3.0 1.1.3.0 460 ------- null} + -t 41.5506 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {0.0.3.0 1.1.3.0 460 ------- null} - -t 41.5506 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {0.0.3.0 1.1.3.0 460 ------- null} h -t 41.5506 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.5522 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 912 -a 0 -x {0.0.3.0 1.1.3.0 461 ------- null} + -t 41.5522 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 912 -a 0 -x {0.0.3.0 1.1.3.0 461 ------- null} - -t 41.5522 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 912 -a 0 -x {0.0.3.0 1.1.3.0 461 ------- null} h -t 41.5522 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 912 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.5538 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {0.0.3.0 1.1.3.0 462 ------- null} + -t 41.5538 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {0.0.3.0 1.1.3.0 462 ------- null} - -t 41.5538 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {0.0.3.0 1.1.3.0 462 ------- null} h -t 41.5538 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.5554 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 914 -a 0 -x {0.0.3.0 1.1.3.0 463 ------- null} + -t 41.5554 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 914 -a 0 -x {0.0.3.0 1.1.3.0 463 ------- null} - -t 41.5554 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 914 -a 0 -x {0.0.3.0 1.1.3.0 463 ------- null} h -t 41.5554 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 914 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.557 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {0.0.3.0 1.1.3.0 464 ------- null} + -t 41.557 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {0.0.3.0 1.1.3.0 464 ------- null} - -t 41.557 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {0.0.3.0 1.1.3.0 464 ------- null} h -t 41.557 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.5586 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 916 -a 0 -x {0.0.3.0 1.1.3.0 465 ------- null} + -t 41.5586 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 916 -a 0 -x {0.0.3.0 1.1.3.0 465 ------- null} - -t 41.5586 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 916 -a 0 -x {0.0.3.0 1.1.3.0 465 ------- null} h -t 41.5586 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 916 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.5602 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {0.0.3.0 1.1.3.0 466 ------- null} + -t 41.5602 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {0.0.3.0 1.1.3.0 466 ------- null} - -t 41.5602 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {0.0.3.0 1.1.3.0 466 ------- null} h -t 41.5602 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.5618 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 918 -a 0 -x {0.0.3.0 1.1.3.0 467 ------- null} + -t 41.5618 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 918 -a 0 -x {0.0.3.0 1.1.3.0 467 ------- null} - -t 41.5618 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 918 -a 0 -x {0.0.3.0 1.1.3.0 467 ------- null} h -t 41.5618 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 918 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.5634 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {0.0.3.0 1.1.3.0 468 ------- null} + -t 41.5634 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {0.0.3.0 1.1.3.0 468 ------- null} - -t 41.5634 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {0.0.3.0 1.1.3.0 468 ------- null} h -t 41.5634 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.565 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 920 -a 0 -x {0.0.3.0 1.1.3.0 469 ------- null} + -t 41.565 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 920 -a 0 -x {0.0.3.0 1.1.3.0 469 ------- null} - -t 41.565 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 920 -a 0 -x {0.0.3.0 1.1.3.0 469 ------- null} h -t 41.565 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 920 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.5666 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {0.0.3.0 1.1.3.0 470 ------- null} + -t 41.5666 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {0.0.3.0 1.1.3.0 470 ------- null} - -t 41.5666 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {0.0.3.0 1.1.3.0 470 ------- null} h -t 41.5666 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.8378 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 902 -a 0 -x {0.0.3.0 1.1.3.0 451 ------- null} + -t 41.8378 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 902 -a 0 -x {0.0.3.0 1.1.3.0 451 ------- null} - -t 41.8378 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 902 -a 0 -x {0.0.3.0 1.1.3.0 451 ------- null} h -t 41.8378 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 902 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.8394 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {0.0.3.0 1.1.3.0 452 ------- null} + -t 41.8394 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {0.0.3.0 1.1.3.0 452 ------- null} - -t 41.8394 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {0.0.3.0 1.1.3.0 452 ------- null} h -t 41.8394 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.841 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 904 -a 0 -x {0.0.3.0 1.1.3.0 453 ------- null} + -t 41.841 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 904 -a 0 -x {0.0.3.0 1.1.3.0 453 ------- null} - -t 41.841 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 904 -a 0 -x {0.0.3.0 1.1.3.0 453 ------- null} h -t 41.841 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 904 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.8426 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {0.0.3.0 1.1.3.0 454 ------- null} + -t 41.8426 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {0.0.3.0 1.1.3.0 454 ------- null} - -t 41.8426 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {0.0.3.0 1.1.3.0 454 ------- null} h -t 41.8426 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.8442 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 906 -a 0 -x {0.0.3.0 1.1.3.0 455 ------- null} + -t 41.8442 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 906 -a 0 -x {0.0.3.0 1.1.3.0 455 ------- null} - -t 41.8442 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 906 -a 0 -x {0.0.3.0 1.1.3.0 455 ------- null} h -t 41.8442 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 906 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.8458 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {0.0.3.0 1.1.3.0 456 ------- null} + -t 41.8458 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {0.0.3.0 1.1.3.0 456 ------- null} - -t 41.8458 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {0.0.3.0 1.1.3.0 456 ------- null} h -t 41.8458 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.8474 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 908 -a 0 -x {0.0.3.0 1.1.3.0 457 ------- null} + -t 41.8474 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 908 -a 0 -x {0.0.3.0 1.1.3.0 457 ------- null} - -t 41.8474 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 908 -a 0 -x {0.0.3.0 1.1.3.0 457 ------- null} h -t 41.8474 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 908 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.849 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {0.0.3.0 1.1.3.0 458 ------- null} + -t 41.849 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {0.0.3.0 1.1.3.0 458 ------- null} - -t 41.849 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {0.0.3.0 1.1.3.0 458 ------- null} h -t 41.849 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.8506 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 910 -a 0 -x {0.0.3.0 1.1.3.0 459 ------- null} + -t 41.8506 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 910 -a 0 -x {0.0.3.0 1.1.3.0 459 ------- null} - -t 41.8506 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 910 -a 0 -x {0.0.3.0 1.1.3.0 459 ------- null} h -t 41.8506 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 910 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.8522 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {0.0.3.0 1.1.3.0 460 ------- null} + -t 41.8522 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {0.0.3.0 1.1.3.0 460 ------- null} - -t 41.8522 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {0.0.3.0 1.1.3.0 460 ------- null} h -t 41.8522 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.8538 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 912 -a 0 -x {0.0.3.0 1.1.3.0 461 ------- null} + -t 41.8538 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 912 -a 0 -x {0.0.3.0 1.1.3.0 461 ------- null} - -t 41.8538 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 912 -a 0 -x {0.0.3.0 1.1.3.0 461 ------- null} h -t 41.8538 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 912 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.8554 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {0.0.3.0 1.1.3.0 462 ------- null} + -t 41.8554 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {0.0.3.0 1.1.3.0 462 ------- null} - -t 41.8554 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {0.0.3.0 1.1.3.0 462 ------- null} h -t 41.8554 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.857 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 914 -a 0 -x {0.0.3.0 1.1.3.0 463 ------- null} + -t 41.857 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 914 -a 0 -x {0.0.3.0 1.1.3.0 463 ------- null} - -t 41.857 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 914 -a 0 -x {0.0.3.0 1.1.3.0 463 ------- null} h -t 41.857 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 914 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.8586 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {0.0.3.0 1.1.3.0 464 ------- null} + -t 41.8586 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {0.0.3.0 1.1.3.0 464 ------- null} - -t 41.8586 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {0.0.3.0 1.1.3.0 464 ------- null} h -t 41.8586 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.8602 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 916 -a 0 -x {0.0.3.0 1.1.3.0 465 ------- null} + -t 41.8602 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 916 -a 0 -x {0.0.3.0 1.1.3.0 465 ------- null} - -t 41.8602 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 916 -a 0 -x {0.0.3.0 1.1.3.0 465 ------- null} h -t 41.8602 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 916 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.8618 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {0.0.3.0 1.1.3.0 466 ------- null} + -t 41.8618 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {0.0.3.0 1.1.3.0 466 ------- null} - -t 41.8618 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {0.0.3.0 1.1.3.0 466 ------- null} h -t 41.8618 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.8634 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 918 -a 0 -x {0.0.3.0 1.1.3.0 467 ------- null} + -t 41.8634 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 918 -a 0 -x {0.0.3.0 1.1.3.0 467 ------- null} - -t 41.8634 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 918 -a 0 -x {0.0.3.0 1.1.3.0 467 ------- null} h -t 41.8634 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 918 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.865 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {0.0.3.0 1.1.3.0 468 ------- null} + -t 41.865 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {0.0.3.0 1.1.3.0 468 ------- null} - -t 41.865 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {0.0.3.0 1.1.3.0 468 ------- null} h -t 41.865 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.8666 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 920 -a 0 -x {0.0.3.0 1.1.3.0 469 ------- null} + -t 41.8666 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 920 -a 0 -x {0.0.3.0 1.1.3.0 469 ------- null} - -t 41.8666 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 920 -a 0 -x {0.0.3.0 1.1.3.0 469 ------- null} h -t 41.8666 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 920 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.8682 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {0.0.3.0 1.1.3.0 470 ------- null} + -t 41.8682 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {0.0.3.0 1.1.3.0 470 ------- null} - -t 41.8682 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {0.0.3.0 1.1.3.0 470 ------- null} h -t 41.8682 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.9394 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 902 -a 0 -x {0.0.3.0 1.1.3.0 451 ------- null} + -t 41.9394 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 902 -a 0 -x {0.0.3.0 1.1.3.0 451 ------- null} - -t 41.9394 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 902 -a 0 -x {0.0.3.0 1.1.3.0 451 ------- null} h -t 41.9394 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 902 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.941 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {0.0.3.0 1.1.3.0 452 ------- null} + -t 41.941 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {0.0.3.0 1.1.3.0 452 ------- null} - -t 41.941 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {0.0.3.0 1.1.3.0 452 ------- null} h -t 41.941 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.9426 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 904 -a 0 -x {0.0.3.0 1.1.3.0 453 ------- null} + -t 41.9426 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 904 -a 0 -x {0.0.3.0 1.1.3.0 453 ------- null} - -t 41.9426 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 904 -a 0 -x {0.0.3.0 1.1.3.0 453 ------- null} h -t 41.9426 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 904 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.9442 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {0.0.3.0 1.1.3.0 454 ------- null} + -t 41.9442 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {0.0.3.0 1.1.3.0 454 ------- null} - -t 41.9442 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {0.0.3.0 1.1.3.0 454 ------- null} h -t 41.9442 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.9458 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 906 -a 0 -x {0.0.3.0 1.1.3.0 455 ------- null} + -t 41.9458 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 906 -a 0 -x {0.0.3.0 1.1.3.0 455 ------- null} - -t 41.9458 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 906 -a 0 -x {0.0.3.0 1.1.3.0 455 ------- null} h -t 41.9458 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 906 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.9474 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {0.0.3.0 1.1.3.0 456 ------- null} + -t 41.9474 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {0.0.3.0 1.1.3.0 456 ------- null} - -t 41.9474 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {0.0.3.0 1.1.3.0 456 ------- null} h -t 41.9474 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.949 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 908 -a 0 -x {0.0.3.0 1.1.3.0 457 ------- null} + -t 41.949 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 908 -a 0 -x {0.0.3.0 1.1.3.0 457 ------- null} - -t 41.949 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 908 -a 0 -x {0.0.3.0 1.1.3.0 457 ------- null} h -t 41.949 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 908 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.9506 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {0.0.3.0 1.1.3.0 458 ------- null} + -t 41.9506 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {0.0.3.0 1.1.3.0 458 ------- null} - -t 41.9506 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {0.0.3.0 1.1.3.0 458 ------- null} h -t 41.9506 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.9522 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 910 -a 0 -x {0.0.3.0 1.1.3.0 459 ------- null} + -t 41.9522 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 910 -a 0 -x {0.0.3.0 1.1.3.0 459 ------- null} - -t 41.9522 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 910 -a 0 -x {0.0.3.0 1.1.3.0 459 ------- null} h -t 41.9522 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 910 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.9538 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {0.0.3.0 1.1.3.0 460 ------- null} + -t 41.9538 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {0.0.3.0 1.1.3.0 460 ------- null} - -t 41.9538 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {0.0.3.0 1.1.3.0 460 ------- null} h -t 41.9538 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.9554 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 912 -a 0 -x {0.0.3.0 1.1.3.0 461 ------- null} + -t 41.9554 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 912 -a 0 -x {0.0.3.0 1.1.3.0 461 ------- null} - -t 41.9554 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 912 -a 0 -x {0.0.3.0 1.1.3.0 461 ------- null} h -t 41.9554 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 912 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.957 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {0.0.3.0 1.1.3.0 462 ------- null} + -t 41.957 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {0.0.3.0 1.1.3.0 462 ------- null} - -t 41.957 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {0.0.3.0 1.1.3.0 462 ------- null} h -t 41.957 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.9586 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 914 -a 0 -x {0.0.3.0 1.1.3.0 463 ------- null} + -t 41.9586 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 914 -a 0 -x {0.0.3.0 1.1.3.0 463 ------- null} - -t 41.9586 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 914 -a 0 -x {0.0.3.0 1.1.3.0 463 ------- null} h -t 41.9586 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 914 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.9602 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {0.0.3.0 1.1.3.0 464 ------- null} + -t 41.9602 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {0.0.3.0 1.1.3.0 464 ------- null} - -t 41.9602 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {0.0.3.0 1.1.3.0 464 ------- null} h -t 41.9602 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.9618 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 916 -a 0 -x {0.0.3.0 1.1.3.0 465 ------- null} + -t 41.9618 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 916 -a 0 -x {0.0.3.0 1.1.3.0 465 ------- null} - -t 41.9618 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 916 -a 0 -x {0.0.3.0 1.1.3.0 465 ------- null} h -t 41.9618 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 916 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.9634 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {0.0.3.0 1.1.3.0 466 ------- null} + -t 41.9634 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {0.0.3.0 1.1.3.0 466 ------- null} - -t 41.9634 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {0.0.3.0 1.1.3.0 466 ------- null} h -t 41.9634 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.965 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 918 -a 0 -x {0.0.3.0 1.1.3.0 467 ------- null} + -t 41.965 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 918 -a 0 -x {0.0.3.0 1.1.3.0 467 ------- null} - -t 41.965 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 918 -a 0 -x {0.0.3.0 1.1.3.0 467 ------- null} h -t 41.965 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 918 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.9666 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {0.0.3.0 1.1.3.0 468 ------- null} + -t 41.9666 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {0.0.3.0 1.1.3.0 468 ------- null} - -t 41.9666 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {0.0.3.0 1.1.3.0 468 ------- null} h -t 41.9666 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.9682 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 920 -a 0 -x {0.0.3.0 1.1.3.0 469 ------- null} + -t 41.9682 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 920 -a 0 -x {0.0.3.0 1.1.3.0 469 ------- null} - -t 41.9682 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 920 -a 0 -x {0.0.3.0 1.1.3.0 469 ------- null} h -t 41.9682 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 920 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 41.9698 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {0.0.3.0 1.1.3.0 470 ------- null} + -t 41.9698 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {0.0.3.0 1.1.3.0 470 ------- null} - -t 41.9698 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {0.0.3.0 1.1.3.0 470 ------- null} h -t 41.9698 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.021 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 902 -a 0 -x {0.0.3.0 1.1.3.0 451 ------- null} + -t 42.021 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 902 -a 0 -x {0.0.3.0 1.1.3.0 451 ------- null} - -t 42.021 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 902 -a 0 -x {0.0.3.0 1.1.3.0 451 ------- null} h -t 42.021 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 902 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.0226 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {0.0.3.0 1.1.3.0 452 ------- null} + -t 42.0226 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {0.0.3.0 1.1.3.0 452 ------- null} - -t 42.0226 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {0.0.3.0 1.1.3.0 452 ------- null} h -t 42.0226 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.0242 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 904 -a 0 -x {0.0.3.0 1.1.3.0 453 ------- null} + -t 42.0242 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 904 -a 0 -x {0.0.3.0 1.1.3.0 453 ------- null} - -t 42.0242 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 904 -a 0 -x {0.0.3.0 1.1.3.0 453 ------- null} h -t 42.0242 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 904 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.0258 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {0.0.3.0 1.1.3.0 454 ------- null} + -t 42.0258 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {0.0.3.0 1.1.3.0 454 ------- null} - -t 42.0258 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {0.0.3.0 1.1.3.0 454 ------- null} h -t 42.0258 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.0274 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 906 -a 0 -x {0.0.3.0 1.1.3.0 455 ------- null} + -t 42.0274 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 906 -a 0 -x {0.0.3.0 1.1.3.0 455 ------- null} - -t 42.0274 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 906 -a 0 -x {0.0.3.0 1.1.3.0 455 ------- null} h -t 42.0274 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 906 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.029 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {0.0.3.0 1.1.3.0 456 ------- null} + -t 42.029 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {0.0.3.0 1.1.3.0 456 ------- null} - -t 42.029 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {0.0.3.0 1.1.3.0 456 ------- null} h -t 42.029 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.0306 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 908 -a 0 -x {0.0.3.0 1.1.3.0 457 ------- null} + -t 42.0306 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 908 -a 0 -x {0.0.3.0 1.1.3.0 457 ------- null} - -t 42.0306 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 908 -a 0 -x {0.0.3.0 1.1.3.0 457 ------- null} h -t 42.0306 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 908 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.0322 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {0.0.3.0 1.1.3.0 458 ------- null} + -t 42.0322 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {0.0.3.0 1.1.3.0 458 ------- null} - -t 42.0322 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {0.0.3.0 1.1.3.0 458 ------- null} h -t 42.0322 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.0338 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 910 -a 0 -x {0.0.3.0 1.1.3.0 459 ------- null} + -t 42.0338 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 910 -a 0 -x {0.0.3.0 1.1.3.0 459 ------- null} - -t 42.0338 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 910 -a 0 -x {0.0.3.0 1.1.3.0 459 ------- null} h -t 42.0338 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 910 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.0354 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {0.0.3.0 1.1.3.0 460 ------- null} + -t 42.0354 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {0.0.3.0 1.1.3.0 460 ------- null} - -t 42.0354 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {0.0.3.0 1.1.3.0 460 ------- null} h -t 42.0354 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.037 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 912 -a 0 -x {0.0.3.0 1.1.3.0 461 ------- null} + -t 42.037 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 912 -a 0 -x {0.0.3.0 1.1.3.0 461 ------- null} - -t 42.037 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 912 -a 0 -x {0.0.3.0 1.1.3.0 461 ------- null} h -t 42.037 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 912 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.0386 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {0.0.3.0 1.1.3.0 462 ------- null} + -t 42.0386 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {0.0.3.0 1.1.3.0 462 ------- null} - -t 42.0386 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {0.0.3.0 1.1.3.0 462 ------- null} h -t 42.0386 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.0402 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 914 -a 0 -x {0.0.3.0 1.1.3.0 463 ------- null} + -t 42.0402 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 914 -a 0 -x {0.0.3.0 1.1.3.0 463 ------- null} - -t 42.0402 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 914 -a 0 -x {0.0.3.0 1.1.3.0 463 ------- null} h -t 42.0402 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 914 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.0418 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {0.0.3.0 1.1.3.0 464 ------- null} + -t 42.0418 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {0.0.3.0 1.1.3.0 464 ------- null} - -t 42.0418 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {0.0.3.0 1.1.3.0 464 ------- null} h -t 42.0418 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.0434 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 916 -a 0 -x {0.0.3.0 1.1.3.0 465 ------- null} + -t 42.0434 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 916 -a 0 -x {0.0.3.0 1.1.3.0 465 ------- null} - -t 42.0434 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 916 -a 0 -x {0.0.3.0 1.1.3.0 465 ------- null} h -t 42.0434 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 916 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.045 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {0.0.3.0 1.1.3.0 466 ------- null} + -t 42.045 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {0.0.3.0 1.1.3.0 466 ------- null} - -t 42.045 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {0.0.3.0 1.1.3.0 466 ------- null} h -t 42.045 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.0466 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 918 -a 0 -x {0.0.3.0 1.1.3.0 467 ------- null} + -t 42.0466 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 918 -a 0 -x {0.0.3.0 1.1.3.0 467 ------- null} - -t 42.0466 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 918 -a 0 -x {0.0.3.0 1.1.3.0 467 ------- null} h -t 42.0466 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 918 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.0482 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {0.0.3.0 1.1.3.0 468 ------- null} + -t 42.0482 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {0.0.3.0 1.1.3.0 468 ------- null} - -t 42.0482 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {0.0.3.0 1.1.3.0 468 ------- null} h -t 42.0482 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.0498 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 920 -a 0 -x {0.0.3.0 1.1.3.0 469 ------- null} + -t 42.0498 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 920 -a 0 -x {0.0.3.0 1.1.3.0 469 ------- null} - -t 42.0498 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 920 -a 0 -x {0.0.3.0 1.1.3.0 469 ------- null} h -t 42.0498 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 920 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.0514 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {0.0.3.0 1.1.3.0 470 ------- null} + -t 42.0514 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {0.0.3.0 1.1.3.0 470 ------- null} - -t 42.0514 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {0.0.3.0 1.1.3.0 470 ------- null} h -t 42.0514 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.1026 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 902 -a 0 -x {0.0.3.0 1.1.3.0 451 ------- null} + -t 42.1026 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 902 -a 0 -x {0.0.3.0 1.1.3.0 451 ------- null} - -t 42.1026 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 902 -a 0 -x {0.0.3.0 1.1.3.0 451 ------- null} h -t 42.1026 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 902 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.1042 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {0.0.3.0 1.1.3.0 452 ------- null} + -t 42.1042 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {0.0.3.0 1.1.3.0 452 ------- null} - -t 42.1042 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {0.0.3.0 1.1.3.0 452 ------- null} h -t 42.1042 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.1058 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 904 -a 0 -x {0.0.3.0 1.1.3.0 453 ------- null} + -t 42.1058 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 904 -a 0 -x {0.0.3.0 1.1.3.0 453 ------- null} - -t 42.1058 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 904 -a 0 -x {0.0.3.0 1.1.3.0 453 ------- null} h -t 42.1058 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 904 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.1074 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {0.0.3.0 1.1.3.0 454 ------- null} + -t 42.1074 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {0.0.3.0 1.1.3.0 454 ------- null} - -t 42.1074 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {0.0.3.0 1.1.3.0 454 ------- null} h -t 42.1074 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.109 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 906 -a 0 -x {0.0.3.0 1.1.3.0 455 ------- null} + -t 42.109 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 906 -a 0 -x {0.0.3.0 1.1.3.0 455 ------- null} - -t 42.109 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 906 -a 0 -x {0.0.3.0 1.1.3.0 455 ------- null} h -t 42.109 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 906 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.1106 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {0.0.3.0 1.1.3.0 456 ------- null} + -t 42.1106 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {0.0.3.0 1.1.3.0 456 ------- null} - -t 42.1106 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {0.0.3.0 1.1.3.0 456 ------- null} h -t 42.1106 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.1122 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 908 -a 0 -x {0.0.3.0 1.1.3.0 457 ------- null} + -t 42.1122 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 908 -a 0 -x {0.0.3.0 1.1.3.0 457 ------- null} - -t 42.1122 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 908 -a 0 -x {0.0.3.0 1.1.3.0 457 ------- null} h -t 42.1122 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 908 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.1138 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {0.0.3.0 1.1.3.0 458 ------- null} + -t 42.1138 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {0.0.3.0 1.1.3.0 458 ------- null} - -t 42.1138 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {0.0.3.0 1.1.3.0 458 ------- null} h -t 42.1138 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.1154 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 910 -a 0 -x {0.0.3.0 1.1.3.0 459 ------- null} + -t 42.1154 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 910 -a 0 -x {0.0.3.0 1.1.3.0 459 ------- null} - -t 42.1154 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 910 -a 0 -x {0.0.3.0 1.1.3.0 459 ------- null} h -t 42.1154 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 910 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.117 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {0.0.3.0 1.1.3.0 460 ------- null} + -t 42.117 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {0.0.3.0 1.1.3.0 460 ------- null} - -t 42.117 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {0.0.3.0 1.1.3.0 460 ------- null} h -t 42.117 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.1186 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 912 -a 0 -x {0.0.3.0 1.1.3.0 461 ------- null} + -t 42.1186 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 912 -a 0 -x {0.0.3.0 1.1.3.0 461 ------- null} - -t 42.1186 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 912 -a 0 -x {0.0.3.0 1.1.3.0 461 ------- null} h -t 42.1186 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 912 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.1202 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {0.0.3.0 1.1.3.0 462 ------- null} + -t 42.1202 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {0.0.3.0 1.1.3.0 462 ------- null} - -t 42.1202 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {0.0.3.0 1.1.3.0 462 ------- null} h -t 42.1202 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.1218 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 914 -a 0 -x {0.0.3.0 1.1.3.0 463 ------- null} + -t 42.1218 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 914 -a 0 -x {0.0.3.0 1.1.3.0 463 ------- null} - -t 42.1218 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 914 -a 0 -x {0.0.3.0 1.1.3.0 463 ------- null} h -t 42.1218 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 914 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.1234 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {0.0.3.0 1.1.3.0 464 ------- null} + -t 42.1234 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {0.0.3.0 1.1.3.0 464 ------- null} - -t 42.1234 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {0.0.3.0 1.1.3.0 464 ------- null} h -t 42.1234 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.125 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 916 -a 0 -x {0.0.3.0 1.1.3.0 465 ------- null} + -t 42.125 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 916 -a 0 -x {0.0.3.0 1.1.3.0 465 ------- null} - -t 42.125 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 916 -a 0 -x {0.0.3.0 1.1.3.0 465 ------- null} h -t 42.125 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 916 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.1266 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {0.0.3.0 1.1.3.0 466 ------- null} + -t 42.1266 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {0.0.3.0 1.1.3.0 466 ------- null} - -t 42.1266 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {0.0.3.0 1.1.3.0 466 ------- null} h -t 42.1266 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.1282 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 918 -a 0 -x {0.0.3.0 1.1.3.0 467 ------- null} + -t 42.1282 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 918 -a 0 -x {0.0.3.0 1.1.3.0 467 ------- null} - -t 42.1282 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 918 -a 0 -x {0.0.3.0 1.1.3.0 467 ------- null} h -t 42.1282 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 918 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.1298 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {0.0.3.0 1.1.3.0 468 ------- null} + -t 42.1298 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {0.0.3.0 1.1.3.0 468 ------- null} - -t 42.1298 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {0.0.3.0 1.1.3.0 468 ------- null} h -t 42.1298 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.1314 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 920 -a 0 -x {0.0.3.0 1.1.3.0 469 ------- null} + -t 42.1314 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 920 -a 0 -x {0.0.3.0 1.1.3.0 469 ------- null} - -t 42.1314 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 920 -a 0 -x {0.0.3.0 1.1.3.0 469 ------- null} h -t 42.1314 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 920 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.133 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {0.0.3.0 1.1.3.0 470 ------- null} + -t 42.133 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {0.0.3.0 1.1.3.0 470 ------- null} - -t 42.133 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {0.0.3.0 1.1.3.0 470 ------- null} h -t 42.133 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.1642 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 902 -a 0 -x {0.0.3.0 1.1.3.0 451 ------- null} + -t 42.1642 -s 21 -d 28 -p ack -e 40 -c 0 -i 922 -a 1 -x {1.1.3.0 0.0.3.0 451 ------- null} - -t 42.1642 -s 21 -d 28 -p ack -e 40 -c 0 -i 922 -a 1 -x {1.1.3.0 0.0.3.0 451 ------- null} h -t 42.1642 -s 21 -d 28 -p ack -e 40 -c 0 -i 922 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.1658 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {0.0.3.0 1.1.3.0 452 ------- null} + -t 42.1658 -s 21 -d 28 -p ack -e 40 -c 0 -i 923 -a 1 -x {1.1.3.0 0.0.3.0 452 ------- null} - -t 42.1658 -s 21 -d 28 -p ack -e 40 -c 0 -i 923 -a 1 -x {1.1.3.0 0.0.3.0 452 ------- null} h -t 42.1658 -s 21 -d 28 -p ack -e 40 -c 0 -i 923 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.1674 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 904 -a 0 -x {0.0.3.0 1.1.3.0 453 ------- null} + -t 42.1674 -s 21 -d 28 -p ack -e 40 -c 0 -i 924 -a 1 -x {1.1.3.0 0.0.3.0 453 ------- null} - -t 42.1674 -s 21 -d 28 -p ack -e 40 -c 0 -i 924 -a 1 -x {1.1.3.0 0.0.3.0 453 ------- null} h -t 42.1674 -s 21 -d 28 -p ack -e 40 -c 0 -i 924 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.169 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {0.0.3.0 1.1.3.0 454 ------- null} + -t 42.169 -s 21 -d 28 -p ack -e 40 -c 0 -i 925 -a 1 -x {1.1.3.0 0.0.3.0 454 ------- null} - -t 42.169 -s 21 -d 28 -p ack -e 40 -c 0 -i 925 -a 1 -x {1.1.3.0 0.0.3.0 454 ------- null} h -t 42.169 -s 21 -d 28 -p ack -e 40 -c 0 -i 925 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.1706 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 906 -a 0 -x {0.0.3.0 1.1.3.0 455 ------- null} + -t 42.1706 -s 21 -d 28 -p ack -e 40 -c 0 -i 926 -a 1 -x {1.1.3.0 0.0.3.0 455 ------- null} - -t 42.1706 -s 21 -d 28 -p ack -e 40 -c 0 -i 926 -a 1 -x {1.1.3.0 0.0.3.0 455 ------- null} h -t 42.1706 -s 21 -d 28 -p ack -e 40 -c 0 -i 926 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.1722 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {0.0.3.0 1.1.3.0 456 ------- null} + -t 42.1722 -s 21 -d 28 -p ack -e 40 -c 0 -i 927 -a 1 -x {1.1.3.0 0.0.3.0 456 ------- null} - -t 42.1722 -s 21 -d 28 -p ack -e 40 -c 0 -i 927 -a 1 -x {1.1.3.0 0.0.3.0 456 ------- null} h -t 42.1722 -s 21 -d 28 -p ack -e 40 -c 0 -i 927 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.1738 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 908 -a 0 -x {0.0.3.0 1.1.3.0 457 ------- null} + -t 42.1738 -s 21 -d 28 -p ack -e 40 -c 0 -i 928 -a 1 -x {1.1.3.0 0.0.3.0 457 ------- null} - -t 42.1738 -s 21 -d 28 -p ack -e 40 -c 0 -i 928 -a 1 -x {1.1.3.0 0.0.3.0 457 ------- null} h -t 42.1738 -s 21 -d 28 -p ack -e 40 -c 0 -i 928 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.1754 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {0.0.3.0 1.1.3.0 458 ------- null} + -t 42.1754 -s 21 -d 28 -p ack -e 40 -c 0 -i 929 -a 1 -x {1.1.3.0 0.0.3.0 458 ------- null} - -t 42.1754 -s 21 -d 28 -p ack -e 40 -c 0 -i 929 -a 1 -x {1.1.3.0 0.0.3.0 458 ------- null} h -t 42.1754 -s 21 -d 28 -p ack -e 40 -c 0 -i 929 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.177 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 910 -a 0 -x {0.0.3.0 1.1.3.0 459 ------- null} + -t 42.177 -s 21 -d 28 -p ack -e 40 -c 0 -i 930 -a 1 -x {1.1.3.0 0.0.3.0 459 ------- null} - -t 42.177 -s 21 -d 28 -p ack -e 40 -c 0 -i 930 -a 1 -x {1.1.3.0 0.0.3.0 459 ------- null} h -t 42.177 -s 21 -d 28 -p ack -e 40 -c 0 -i 930 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.1786 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {0.0.3.0 1.1.3.0 460 ------- null} + -t 42.1786 -s 21 -d 28 -p ack -e 40 -c 0 -i 931 -a 1 -x {1.1.3.0 0.0.3.0 460 ------- null} - -t 42.1786 -s 21 -d 28 -p ack -e 40 -c 0 -i 931 -a 1 -x {1.1.3.0 0.0.3.0 460 ------- null} h -t 42.1786 -s 21 -d 28 -p ack -e 40 -c 0 -i 931 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.1802 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 912 -a 0 -x {0.0.3.0 1.1.3.0 461 ------- null} + -t 42.1802 -s 21 -d 28 -p ack -e 40 -c 0 -i 932 -a 1 -x {1.1.3.0 0.0.3.0 461 ------- null} - -t 42.1802 -s 21 -d 28 -p ack -e 40 -c 0 -i 932 -a 1 -x {1.1.3.0 0.0.3.0 461 ------- null} h -t 42.1802 -s 21 -d 28 -p ack -e 40 -c 0 -i 932 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.1818 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {0.0.3.0 1.1.3.0 462 ------- null} + -t 42.1818 -s 21 -d 28 -p ack -e 40 -c 0 -i 933 -a 1 -x {1.1.3.0 0.0.3.0 462 ------- null} - -t 42.1818 -s 21 -d 28 -p ack -e 40 -c 0 -i 933 -a 1 -x {1.1.3.0 0.0.3.0 462 ------- null} h -t 42.1818 -s 21 -d 28 -p ack -e 40 -c 0 -i 933 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.1834 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 914 -a 0 -x {0.0.3.0 1.1.3.0 463 ------- null} + -t 42.1834 -s 21 -d 28 -p ack -e 40 -c 0 -i 934 -a 1 -x {1.1.3.0 0.0.3.0 463 ------- null} - -t 42.1834 -s 21 -d 28 -p ack -e 40 -c 0 -i 934 -a 1 -x {1.1.3.0 0.0.3.0 463 ------- null} h -t 42.1834 -s 21 -d 28 -p ack -e 40 -c 0 -i 934 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.185 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {0.0.3.0 1.1.3.0 464 ------- null} + -t 42.185 -s 21 -d 28 -p ack -e 40 -c 0 -i 935 -a 1 -x {1.1.3.0 0.0.3.0 464 ------- null} - -t 42.185 -s 21 -d 28 -p ack -e 40 -c 0 -i 935 -a 1 -x {1.1.3.0 0.0.3.0 464 ------- null} h -t 42.185 -s 21 -d 28 -p ack -e 40 -c 0 -i 935 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.1866 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 916 -a 0 -x {0.0.3.0 1.1.3.0 465 ------- null} + -t 42.1866 -s 21 -d 28 -p ack -e 40 -c 0 -i 936 -a 1 -x {1.1.3.0 0.0.3.0 465 ------- null} - -t 42.1866 -s 21 -d 28 -p ack -e 40 -c 0 -i 936 -a 1 -x {1.1.3.0 0.0.3.0 465 ------- null} h -t 42.1866 -s 21 -d 28 -p ack -e 40 -c 0 -i 936 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.1882 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {0.0.3.0 1.1.3.0 466 ------- null} + -t 42.1882 -s 21 -d 28 -p ack -e 40 -c 0 -i 937 -a 1 -x {1.1.3.0 0.0.3.0 466 ------- null} - -t 42.1882 -s 21 -d 28 -p ack -e 40 -c 0 -i 937 -a 1 -x {1.1.3.0 0.0.3.0 466 ------- null} h -t 42.1882 -s 21 -d 28 -p ack -e 40 -c 0 -i 937 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.1898 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 918 -a 0 -x {0.0.3.0 1.1.3.0 467 ------- null} + -t 42.1898 -s 21 -d 28 -p ack -e 40 -c 0 -i 938 -a 1 -x {1.1.3.0 0.0.3.0 467 ------- null} - -t 42.1898 -s 21 -d 28 -p ack -e 40 -c 0 -i 938 -a 1 -x {1.1.3.0 0.0.3.0 467 ------- null} h -t 42.1898 -s 21 -d 28 -p ack -e 40 -c 0 -i 938 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.1914 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {0.0.3.0 1.1.3.0 468 ------- null} + -t 42.1914 -s 21 -d 28 -p ack -e 40 -c 0 -i 939 -a 1 -x {1.1.3.0 0.0.3.0 468 ------- null} - -t 42.1914 -s 21 -d 28 -p ack -e 40 -c 0 -i 939 -a 1 -x {1.1.3.0 0.0.3.0 468 ------- null} h -t 42.1914 -s 21 -d 28 -p ack -e 40 -c 0 -i 939 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.193 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 920 -a 0 -x {0.0.3.0 1.1.3.0 469 ------- null} + -t 42.193 -s 21 -d 28 -p ack -e 40 -c 0 -i 940 -a 1 -x {1.1.3.0 0.0.3.0 469 ------- null} - -t 42.193 -s 21 -d 28 -p ack -e 40 -c 0 -i 940 -a 1 -x {1.1.3.0 0.0.3.0 469 ------- null} h -t 42.193 -s 21 -d 28 -p ack -e 40 -c 0 -i 940 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.1946 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {0.0.3.0 1.1.3.0 470 ------- null} + -t 42.1946 -s 21 -d 28 -p ack -e 40 -c 0 -i 941 -a 1 -x {1.1.3.0 0.0.3.0 470 ------- null} - -t 42.1946 -s 21 -d 28 -p ack -e 40 -c 0 -i 941 -a 1 -x {1.1.3.0 0.0.3.0 470 ------- null} h -t 42.1946 -s 21 -d 28 -p ack -e 40 -c 0 -i 941 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.5143 -s 21 -d 28 -p ack -e 40 -c 0 -i 922 -a 1 -x {1.1.3.0 0.0.3.0 451 ------- null} + -t 42.5143 -s 28 -d 1 -p ack -e 40 -c 0 -i 922 -a 1 -x {1.1.3.0 0.0.3.0 451 ------- null} - -t 42.5143 -s 28 -d 1 -p ack -e 40 -c 0 -i 922 -a 1 -x {1.1.3.0 0.0.3.0 451 ------- null} h -t 42.5143 -s 28 -d 1 -p ack -e 40 -c 0 -i 922 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.5159 -s 21 -d 28 -p ack -e 40 -c 0 -i 923 -a 1 -x {1.1.3.0 0.0.3.0 452 ------- null} + -t 42.5159 -s 28 -d 1 -p ack -e 40 -c 0 -i 923 -a 1 -x {1.1.3.0 0.0.3.0 452 ------- null} - -t 42.5159 -s 28 -d 1 -p ack -e 40 -c 0 -i 923 -a 1 -x {1.1.3.0 0.0.3.0 452 ------- null} h -t 42.5159 -s 28 -d 1 -p ack -e 40 -c 0 -i 923 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.5175 -s 21 -d 28 -p ack -e 40 -c 0 -i 924 -a 1 -x {1.1.3.0 0.0.3.0 453 ------- null} + -t 42.5175 -s 28 -d 1 -p ack -e 40 -c 0 -i 924 -a 1 -x {1.1.3.0 0.0.3.0 453 ------- null} - -t 42.5175 -s 28 -d 1 -p ack -e 40 -c 0 -i 924 -a 1 -x {1.1.3.0 0.0.3.0 453 ------- null} h -t 42.5175 -s 28 -d 1 -p ack -e 40 -c 0 -i 924 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.5191 -s 21 -d 28 -p ack -e 40 -c 0 -i 925 -a 1 -x {1.1.3.0 0.0.3.0 454 ------- null} + -t 42.5191 -s 28 -d 1 -p ack -e 40 -c 0 -i 925 -a 1 -x {1.1.3.0 0.0.3.0 454 ------- null} - -t 42.5191 -s 28 -d 1 -p ack -e 40 -c 0 -i 925 -a 1 -x {1.1.3.0 0.0.3.0 454 ------- null} h -t 42.5191 -s 28 -d 1 -p ack -e 40 -c 0 -i 925 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.5207 -s 21 -d 28 -p ack -e 40 -c 0 -i 926 -a 1 -x {1.1.3.0 0.0.3.0 455 ------- null} + -t 42.5207 -s 28 -d 1 -p ack -e 40 -c 0 -i 926 -a 1 -x {1.1.3.0 0.0.3.0 455 ------- null} - -t 42.5207 -s 28 -d 1 -p ack -e 40 -c 0 -i 926 -a 1 -x {1.1.3.0 0.0.3.0 455 ------- null} h -t 42.5207 -s 28 -d 1 -p ack -e 40 -c 0 -i 926 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.5223 -s 21 -d 28 -p ack -e 40 -c 0 -i 927 -a 1 -x {1.1.3.0 0.0.3.0 456 ------- null} + -t 42.5223 -s 28 -d 1 -p ack -e 40 -c 0 -i 927 -a 1 -x {1.1.3.0 0.0.3.0 456 ------- null} - -t 42.5223 -s 28 -d 1 -p ack -e 40 -c 0 -i 927 -a 1 -x {1.1.3.0 0.0.3.0 456 ------- null} h -t 42.5223 -s 28 -d 1 -p ack -e 40 -c 0 -i 927 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.5239 -s 21 -d 28 -p ack -e 40 -c 0 -i 928 -a 1 -x {1.1.3.0 0.0.3.0 457 ------- null} + -t 42.5239 -s 28 -d 1 -p ack -e 40 -c 0 -i 928 -a 1 -x {1.1.3.0 0.0.3.0 457 ------- null} - -t 42.5239 -s 28 -d 1 -p ack -e 40 -c 0 -i 928 -a 1 -x {1.1.3.0 0.0.3.0 457 ------- null} h -t 42.5239 -s 28 -d 1 -p ack -e 40 -c 0 -i 928 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.5255 -s 21 -d 28 -p ack -e 40 -c 0 -i 929 -a 1 -x {1.1.3.0 0.0.3.0 458 ------- null} + -t 42.5255 -s 28 -d 1 -p ack -e 40 -c 0 -i 929 -a 1 -x {1.1.3.0 0.0.3.0 458 ------- null} - -t 42.5255 -s 28 -d 1 -p ack -e 40 -c 0 -i 929 -a 1 -x {1.1.3.0 0.0.3.0 458 ------- null} h -t 42.5255 -s 28 -d 1 -p ack -e 40 -c 0 -i 929 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.5271 -s 21 -d 28 -p ack -e 40 -c 0 -i 930 -a 1 -x {1.1.3.0 0.0.3.0 459 ------- null} + -t 42.5271 -s 28 -d 1 -p ack -e 40 -c 0 -i 930 -a 1 -x {1.1.3.0 0.0.3.0 459 ------- null} - -t 42.5271 -s 28 -d 1 -p ack -e 40 -c 0 -i 930 -a 1 -x {1.1.3.0 0.0.3.0 459 ------- null} h -t 42.5271 -s 28 -d 1 -p ack -e 40 -c 0 -i 930 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.5287 -s 21 -d 28 -p ack -e 40 -c 0 -i 931 -a 1 -x {1.1.3.0 0.0.3.0 460 ------- null} + -t 42.5287 -s 28 -d 1 -p ack -e 40 -c 0 -i 931 -a 1 -x {1.1.3.0 0.0.3.0 460 ------- null} - -t 42.5287 -s 28 -d 1 -p ack -e 40 -c 0 -i 931 -a 1 -x {1.1.3.0 0.0.3.0 460 ------- null} h -t 42.5287 -s 28 -d 1 -p ack -e 40 -c 0 -i 931 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.5303 -s 21 -d 28 -p ack -e 40 -c 0 -i 932 -a 1 -x {1.1.3.0 0.0.3.0 461 ------- null} + -t 42.5303 -s 28 -d 1 -p ack -e 40 -c 0 -i 932 -a 1 -x {1.1.3.0 0.0.3.0 461 ------- null} - -t 42.5303 -s 28 -d 1 -p ack -e 40 -c 0 -i 932 -a 1 -x {1.1.3.0 0.0.3.0 461 ------- null} h -t 42.5303 -s 28 -d 1 -p ack -e 40 -c 0 -i 932 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.5319 -s 21 -d 28 -p ack -e 40 -c 0 -i 933 -a 1 -x {1.1.3.0 0.0.3.0 462 ------- null} + -t 42.5319 -s 28 -d 1 -p ack -e 40 -c 0 -i 933 -a 1 -x {1.1.3.0 0.0.3.0 462 ------- null} - -t 42.5319 -s 28 -d 1 -p ack -e 40 -c 0 -i 933 -a 1 -x {1.1.3.0 0.0.3.0 462 ------- null} h -t 42.5319 -s 28 -d 1 -p ack -e 40 -c 0 -i 933 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.5335 -s 21 -d 28 -p ack -e 40 -c 0 -i 934 -a 1 -x {1.1.3.0 0.0.3.0 463 ------- null} + -t 42.5335 -s 28 -d 1 -p ack -e 40 -c 0 -i 934 -a 1 -x {1.1.3.0 0.0.3.0 463 ------- null} - -t 42.5335 -s 28 -d 1 -p ack -e 40 -c 0 -i 934 -a 1 -x {1.1.3.0 0.0.3.0 463 ------- null} h -t 42.5335 -s 28 -d 1 -p ack -e 40 -c 0 -i 934 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.5351 -s 21 -d 28 -p ack -e 40 -c 0 -i 935 -a 1 -x {1.1.3.0 0.0.3.0 464 ------- null} + -t 42.5351 -s 28 -d 1 -p ack -e 40 -c 0 -i 935 -a 1 -x {1.1.3.0 0.0.3.0 464 ------- null} - -t 42.5351 -s 28 -d 1 -p ack -e 40 -c 0 -i 935 -a 1 -x {1.1.3.0 0.0.3.0 464 ------- null} h -t 42.5351 -s 28 -d 1 -p ack -e 40 -c 0 -i 935 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.5367 -s 21 -d 28 -p ack -e 40 -c 0 -i 936 -a 1 -x {1.1.3.0 0.0.3.0 465 ------- null} + -t 42.5367 -s 28 -d 1 -p ack -e 40 -c 0 -i 936 -a 1 -x {1.1.3.0 0.0.3.0 465 ------- null} - -t 42.5367 -s 28 -d 1 -p ack -e 40 -c 0 -i 936 -a 1 -x {1.1.3.0 0.0.3.0 465 ------- null} h -t 42.5367 -s 28 -d 1 -p ack -e 40 -c 0 -i 936 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.5383 -s 21 -d 28 -p ack -e 40 -c 0 -i 937 -a 1 -x {1.1.3.0 0.0.3.0 466 ------- null} + -t 42.5383 -s 28 -d 1 -p ack -e 40 -c 0 -i 937 -a 1 -x {1.1.3.0 0.0.3.0 466 ------- null} - -t 42.5383 -s 28 -d 1 -p ack -e 40 -c 0 -i 937 -a 1 -x {1.1.3.0 0.0.3.0 466 ------- null} h -t 42.5383 -s 28 -d 1 -p ack -e 40 -c 0 -i 937 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.5399 -s 21 -d 28 -p ack -e 40 -c 0 -i 938 -a 1 -x {1.1.3.0 0.0.3.0 467 ------- null} + -t 42.5399 -s 28 -d 1 -p ack -e 40 -c 0 -i 938 -a 1 -x {1.1.3.0 0.0.3.0 467 ------- null} - -t 42.5399 -s 28 -d 1 -p ack -e 40 -c 0 -i 938 -a 1 -x {1.1.3.0 0.0.3.0 467 ------- null} h -t 42.5399 -s 28 -d 1 -p ack -e 40 -c 0 -i 938 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.5415 -s 21 -d 28 -p ack -e 40 -c 0 -i 939 -a 1 -x {1.1.3.0 0.0.3.0 468 ------- null} + -t 42.5415 -s 28 -d 1 -p ack -e 40 -c 0 -i 939 -a 1 -x {1.1.3.0 0.0.3.0 468 ------- null} - -t 42.5415 -s 28 -d 1 -p ack -e 40 -c 0 -i 939 -a 1 -x {1.1.3.0 0.0.3.0 468 ------- null} h -t 42.5415 -s 28 -d 1 -p ack -e 40 -c 0 -i 939 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.5431 -s 21 -d 28 -p ack -e 40 -c 0 -i 940 -a 1 -x {1.1.3.0 0.0.3.0 469 ------- null} + -t 42.5431 -s 28 -d 1 -p ack -e 40 -c 0 -i 940 -a 1 -x {1.1.3.0 0.0.3.0 469 ------- null} - -t 42.5431 -s 28 -d 1 -p ack -e 40 -c 0 -i 940 -a 1 -x {1.1.3.0 0.0.3.0 469 ------- null} h -t 42.5431 -s 28 -d 1 -p ack -e 40 -c 0 -i 940 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.5447 -s 21 -d 28 -p ack -e 40 -c 0 -i 941 -a 1 -x {1.1.3.0 0.0.3.0 470 ------- null} + -t 42.5447 -s 28 -d 1 -p ack -e 40 -c 0 -i 941 -a 1 -x {1.1.3.0 0.0.3.0 470 ------- null} - -t 42.5447 -s 28 -d 1 -p ack -e 40 -c 0 -i 941 -a 1 -x {1.1.3.0 0.0.3.0 470 ------- null} h -t 42.5447 -s 28 -d 1 -p ack -e 40 -c 0 -i 941 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.8143 -s 28 -d 1 -p ack -e 40 -c 0 -i 922 -a 1 -x {1.1.3.0 0.0.3.0 451 ------- null} + -t 42.8143 -s 1 -d 3 -p ack -e 40 -c 0 -i 922 -a 1 -x {1.1.3.0 0.0.3.0 451 ------- null} - -t 42.8143 -s 1 -d 3 -p ack -e 40 -c 0 -i 922 -a 1 -x {1.1.3.0 0.0.3.0 451 ------- null} h -t 42.8143 -s 1 -d 3 -p ack -e 40 -c 0 -i 922 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.8159 -s 28 -d 1 -p ack -e 40 -c 0 -i 923 -a 1 -x {1.1.3.0 0.0.3.0 452 ------- null} + -t 42.8159 -s 1 -d 3 -p ack -e 40 -c 0 -i 923 -a 1 -x {1.1.3.0 0.0.3.0 452 ------- null} - -t 42.8159 -s 1 -d 3 -p ack -e 40 -c 0 -i 923 -a 1 -x {1.1.3.0 0.0.3.0 452 ------- null} h -t 42.8159 -s 1 -d 3 -p ack -e 40 -c 0 -i 923 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.8175 -s 28 -d 1 -p ack -e 40 -c 0 -i 924 -a 1 -x {1.1.3.0 0.0.3.0 453 ------- null} + -t 42.8175 -s 1 -d 3 -p ack -e 40 -c 0 -i 924 -a 1 -x {1.1.3.0 0.0.3.0 453 ------- null} - -t 42.8175 -s 1 -d 3 -p ack -e 40 -c 0 -i 924 -a 1 -x {1.1.3.0 0.0.3.0 453 ------- null} h -t 42.8175 -s 1 -d 3 -p ack -e 40 -c 0 -i 924 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.8191 -s 28 -d 1 -p ack -e 40 -c 0 -i 925 -a 1 -x {1.1.3.0 0.0.3.0 454 ------- null} + -t 42.8191 -s 1 -d 3 -p ack -e 40 -c 0 -i 925 -a 1 -x {1.1.3.0 0.0.3.0 454 ------- null} - -t 42.8191 -s 1 -d 3 -p ack -e 40 -c 0 -i 925 -a 1 -x {1.1.3.0 0.0.3.0 454 ------- null} h -t 42.8191 -s 1 -d 3 -p ack -e 40 -c 0 -i 925 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.8207 -s 28 -d 1 -p ack -e 40 -c 0 -i 926 -a 1 -x {1.1.3.0 0.0.3.0 455 ------- null} + -t 42.8207 -s 1 -d 3 -p ack -e 40 -c 0 -i 926 -a 1 -x {1.1.3.0 0.0.3.0 455 ------- null} - -t 42.8207 -s 1 -d 3 -p ack -e 40 -c 0 -i 926 -a 1 -x {1.1.3.0 0.0.3.0 455 ------- null} h -t 42.8207 -s 1 -d 3 -p ack -e 40 -c 0 -i 926 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.8223 -s 28 -d 1 -p ack -e 40 -c 0 -i 927 -a 1 -x {1.1.3.0 0.0.3.0 456 ------- null} + -t 42.8223 -s 1 -d 3 -p ack -e 40 -c 0 -i 927 -a 1 -x {1.1.3.0 0.0.3.0 456 ------- null} - -t 42.8223 -s 1 -d 3 -p ack -e 40 -c 0 -i 927 -a 1 -x {1.1.3.0 0.0.3.0 456 ------- null} h -t 42.8223 -s 1 -d 3 -p ack -e 40 -c 0 -i 927 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.8239 -s 28 -d 1 -p ack -e 40 -c 0 -i 928 -a 1 -x {1.1.3.0 0.0.3.0 457 ------- null} + -t 42.8239 -s 1 -d 3 -p ack -e 40 -c 0 -i 928 -a 1 -x {1.1.3.0 0.0.3.0 457 ------- null} - -t 42.8239 -s 1 -d 3 -p ack -e 40 -c 0 -i 928 -a 1 -x {1.1.3.0 0.0.3.0 457 ------- null} h -t 42.8239 -s 1 -d 3 -p ack -e 40 -c 0 -i 928 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.8255 -s 28 -d 1 -p ack -e 40 -c 0 -i 929 -a 1 -x {1.1.3.0 0.0.3.0 458 ------- null} + -t 42.8255 -s 1 -d 3 -p ack -e 40 -c 0 -i 929 -a 1 -x {1.1.3.0 0.0.3.0 458 ------- null} - -t 42.8255 -s 1 -d 3 -p ack -e 40 -c 0 -i 929 -a 1 -x {1.1.3.0 0.0.3.0 458 ------- null} h -t 42.8255 -s 1 -d 3 -p ack -e 40 -c 0 -i 929 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.8271 -s 28 -d 1 -p ack -e 40 -c 0 -i 930 -a 1 -x {1.1.3.0 0.0.3.0 459 ------- null} + -t 42.8271 -s 1 -d 3 -p ack -e 40 -c 0 -i 930 -a 1 -x {1.1.3.0 0.0.3.0 459 ------- null} - -t 42.8271 -s 1 -d 3 -p ack -e 40 -c 0 -i 930 -a 1 -x {1.1.3.0 0.0.3.0 459 ------- null} h -t 42.8271 -s 1 -d 3 -p ack -e 40 -c 0 -i 930 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.8287 -s 28 -d 1 -p ack -e 40 -c 0 -i 931 -a 1 -x {1.1.3.0 0.0.3.0 460 ------- null} + -t 42.8287 -s 1 -d 3 -p ack -e 40 -c 0 -i 931 -a 1 -x {1.1.3.0 0.0.3.0 460 ------- null} - -t 42.8287 -s 1 -d 3 -p ack -e 40 -c 0 -i 931 -a 1 -x {1.1.3.0 0.0.3.0 460 ------- null} h -t 42.8287 -s 1 -d 3 -p ack -e 40 -c 0 -i 931 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.8303 -s 28 -d 1 -p ack -e 40 -c 0 -i 932 -a 1 -x {1.1.3.0 0.0.3.0 461 ------- null} + -t 42.8303 -s 1 -d 3 -p ack -e 40 -c 0 -i 932 -a 1 -x {1.1.3.0 0.0.3.0 461 ------- null} - -t 42.8303 -s 1 -d 3 -p ack -e 40 -c 0 -i 932 -a 1 -x {1.1.3.0 0.0.3.0 461 ------- null} h -t 42.8303 -s 1 -d 3 -p ack -e 40 -c 0 -i 932 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.8319 -s 28 -d 1 -p ack -e 40 -c 0 -i 933 -a 1 -x {1.1.3.0 0.0.3.0 462 ------- null} + -t 42.8319 -s 1 -d 3 -p ack -e 40 -c 0 -i 933 -a 1 -x {1.1.3.0 0.0.3.0 462 ------- null} - -t 42.8319 -s 1 -d 3 -p ack -e 40 -c 0 -i 933 -a 1 -x {1.1.3.0 0.0.3.0 462 ------- null} h -t 42.8319 -s 1 -d 3 -p ack -e 40 -c 0 -i 933 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.8335 -s 28 -d 1 -p ack -e 40 -c 0 -i 934 -a 1 -x {1.1.3.0 0.0.3.0 463 ------- null} + -t 42.8335 -s 1 -d 3 -p ack -e 40 -c 0 -i 934 -a 1 -x {1.1.3.0 0.0.3.0 463 ------- null} - -t 42.8335 -s 1 -d 3 -p ack -e 40 -c 0 -i 934 -a 1 -x {1.1.3.0 0.0.3.0 463 ------- null} h -t 42.8335 -s 1 -d 3 -p ack -e 40 -c 0 -i 934 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.8351 -s 28 -d 1 -p ack -e 40 -c 0 -i 935 -a 1 -x {1.1.3.0 0.0.3.0 464 ------- null} + -t 42.8351 -s 1 -d 3 -p ack -e 40 -c 0 -i 935 -a 1 -x {1.1.3.0 0.0.3.0 464 ------- null} - -t 42.8351 -s 1 -d 3 -p ack -e 40 -c 0 -i 935 -a 1 -x {1.1.3.0 0.0.3.0 464 ------- null} h -t 42.8351 -s 1 -d 3 -p ack -e 40 -c 0 -i 935 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.8367 -s 28 -d 1 -p ack -e 40 -c 0 -i 936 -a 1 -x {1.1.3.0 0.0.3.0 465 ------- null} + -t 42.8367 -s 1 -d 3 -p ack -e 40 -c 0 -i 936 -a 1 -x {1.1.3.0 0.0.3.0 465 ------- null} - -t 42.8367 -s 1 -d 3 -p ack -e 40 -c 0 -i 936 -a 1 -x {1.1.3.0 0.0.3.0 465 ------- null} h -t 42.8367 -s 1 -d 3 -p ack -e 40 -c 0 -i 936 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.8383 -s 28 -d 1 -p ack -e 40 -c 0 -i 937 -a 1 -x {1.1.3.0 0.0.3.0 466 ------- null} + -t 42.8383 -s 1 -d 3 -p ack -e 40 -c 0 -i 937 -a 1 -x {1.1.3.0 0.0.3.0 466 ------- null} - -t 42.8383 -s 1 -d 3 -p ack -e 40 -c 0 -i 937 -a 1 -x {1.1.3.0 0.0.3.0 466 ------- null} h -t 42.8383 -s 1 -d 3 -p ack -e 40 -c 0 -i 937 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.8399 -s 28 -d 1 -p ack -e 40 -c 0 -i 938 -a 1 -x {1.1.3.0 0.0.3.0 467 ------- null} + -t 42.8399 -s 1 -d 3 -p ack -e 40 -c 0 -i 938 -a 1 -x {1.1.3.0 0.0.3.0 467 ------- null} - -t 42.8399 -s 1 -d 3 -p ack -e 40 -c 0 -i 938 -a 1 -x {1.1.3.0 0.0.3.0 467 ------- null} h -t 42.8399 -s 1 -d 3 -p ack -e 40 -c 0 -i 938 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.8415 -s 28 -d 1 -p ack -e 40 -c 0 -i 939 -a 1 -x {1.1.3.0 0.0.3.0 468 ------- null} + -t 42.8415 -s 1 -d 3 -p ack -e 40 -c 0 -i 939 -a 1 -x {1.1.3.0 0.0.3.0 468 ------- null} - -t 42.8415 -s 1 -d 3 -p ack -e 40 -c 0 -i 939 -a 1 -x {1.1.3.0 0.0.3.0 468 ------- null} h -t 42.8415 -s 1 -d 3 -p ack -e 40 -c 0 -i 939 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.8431 -s 28 -d 1 -p ack -e 40 -c 0 -i 940 -a 1 -x {1.1.3.0 0.0.3.0 469 ------- null} + -t 42.8431 -s 1 -d 3 -p ack -e 40 -c 0 -i 940 -a 1 -x {1.1.3.0 0.0.3.0 469 ------- null} - -t 42.8431 -s 1 -d 3 -p ack -e 40 -c 0 -i 940 -a 1 -x {1.1.3.0 0.0.3.0 469 ------- null} h -t 42.8431 -s 1 -d 3 -p ack -e 40 -c 0 -i 940 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.8447 -s 28 -d 1 -p ack -e 40 -c 0 -i 941 -a 1 -x {1.1.3.0 0.0.3.0 470 ------- null} + -t 42.8447 -s 1 -d 3 -p ack -e 40 -c 0 -i 941 -a 1 -x {1.1.3.0 0.0.3.0 470 ------- null} - -t 42.8447 -s 1 -d 3 -p ack -e 40 -c 0 -i 941 -a 1 -x {1.1.3.0 0.0.3.0 470 ------- null} h -t 42.8447 -s 1 -d 3 -p ack -e 40 -c 0 -i 941 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 42.9544 -s 1 -d 3 -p ack -e 40 -c 0 -i 922 -a 1 -x {1.1.3.0 0.0.3.0 451 ------- null} + -t 42.9544 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 942 -a 0 -x {0.0.3.0 1.1.3.0 471 ------- null} - -t 42.9544 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 942 -a 0 -x {0.0.3.0 1.1.3.0 471 ------- null} h -t 42.9544 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 942 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.956 -s 1 -d 3 -p ack -e 40 -c 0 -i 923 -a 1 -x {1.1.3.0 0.0.3.0 452 ------- null} + -t 42.956 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {0.0.3.0 1.1.3.0 472 ------- null} - -t 42.956 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {0.0.3.0 1.1.3.0 472 ------- null} h -t 42.956 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.9576 -s 1 -d 3 -p ack -e 40 -c 0 -i 924 -a 1 -x {1.1.3.0 0.0.3.0 453 ------- null} + -t 42.9576 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 944 -a 0 -x {0.0.3.0 1.1.3.0 473 ------- null} - -t 42.9576 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 944 -a 0 -x {0.0.3.0 1.1.3.0 473 ------- null} h -t 42.9576 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 944 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.9592 -s 1 -d 3 -p ack -e 40 -c 0 -i 925 -a 1 -x {1.1.3.0 0.0.3.0 454 ------- null} + -t 42.9592 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {0.0.3.0 1.1.3.0 474 ------- null} - -t 42.9592 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {0.0.3.0 1.1.3.0 474 ------- null} h -t 42.9592 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.9608 -s 1 -d 3 -p ack -e 40 -c 0 -i 926 -a 1 -x {1.1.3.0 0.0.3.0 455 ------- null} + -t 42.9608 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 946 -a 0 -x {0.0.3.0 1.1.3.0 475 ------- null} - -t 42.9608 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 946 -a 0 -x {0.0.3.0 1.1.3.0 475 ------- null} h -t 42.9608 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 946 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.9624 -s 1 -d 3 -p ack -e 40 -c 0 -i 927 -a 1 -x {1.1.3.0 0.0.3.0 456 ------- null} + -t 42.9624 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {0.0.3.0 1.1.3.0 476 ------- null} - -t 42.9624 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {0.0.3.0 1.1.3.0 476 ------- null} h -t 42.9624 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.964 -s 1 -d 3 -p ack -e 40 -c 0 -i 928 -a 1 -x {1.1.3.0 0.0.3.0 457 ------- null} + -t 42.964 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 948 -a 0 -x {0.0.3.0 1.1.3.0 477 ------- null} - -t 42.964 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 948 -a 0 -x {0.0.3.0 1.1.3.0 477 ------- null} h -t 42.964 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 948 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.9656 -s 1 -d 3 -p ack -e 40 -c 0 -i 929 -a 1 -x {1.1.3.0 0.0.3.0 458 ------- null} + -t 42.9656 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {0.0.3.0 1.1.3.0 478 ------- null} - -t 42.9656 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {0.0.3.0 1.1.3.0 478 ------- null} h -t 42.9656 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.9672 -s 1 -d 3 -p ack -e 40 -c 0 -i 930 -a 1 -x {1.1.3.0 0.0.3.0 459 ------- null} + -t 42.9672 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 950 -a 0 -x {0.0.3.0 1.1.3.0 479 ------- null} - -t 42.9672 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 950 -a 0 -x {0.0.3.0 1.1.3.0 479 ------- null} h -t 42.9672 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 950 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.9688 -s 1 -d 3 -p ack -e 40 -c 0 -i 931 -a 1 -x {1.1.3.0 0.0.3.0 460 ------- null} + -t 42.9688 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {0.0.3.0 1.1.3.0 480 ------- null} - -t 42.9688 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {0.0.3.0 1.1.3.0 480 ------- null} h -t 42.9688 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.9704 -s 1 -d 3 -p ack -e 40 -c 0 -i 932 -a 1 -x {1.1.3.0 0.0.3.0 461 ------- null} + -t 42.9704 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 952 -a 0 -x {0.0.3.0 1.1.3.0 481 ------- null} - -t 42.9704 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 952 -a 0 -x {0.0.3.0 1.1.3.0 481 ------- null} h -t 42.9704 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 952 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.972 -s 1 -d 3 -p ack -e 40 -c 0 -i 933 -a 1 -x {1.1.3.0 0.0.3.0 462 ------- null} + -t 42.972 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {0.0.3.0 1.1.3.0 482 ------- null} - -t 42.972 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {0.0.3.0 1.1.3.0 482 ------- null} h -t 42.972 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.9736 -s 1 -d 3 -p ack -e 40 -c 0 -i 934 -a 1 -x {1.1.3.0 0.0.3.0 463 ------- null} + -t 42.9736 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 954 -a 0 -x {0.0.3.0 1.1.3.0 483 ------- null} - -t 42.9736 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 954 -a 0 -x {0.0.3.0 1.1.3.0 483 ------- null} h -t 42.9736 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 954 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.9752 -s 1 -d 3 -p ack -e 40 -c 0 -i 935 -a 1 -x {1.1.3.0 0.0.3.0 464 ------- null} + -t 42.9752 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {0.0.3.0 1.1.3.0 484 ------- null} - -t 42.9752 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {0.0.3.0 1.1.3.0 484 ------- null} h -t 42.9752 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.9768 -s 1 -d 3 -p ack -e 40 -c 0 -i 936 -a 1 -x {1.1.3.0 0.0.3.0 465 ------- null} + -t 42.9768 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 956 -a 0 -x {0.0.3.0 1.1.3.0 485 ------- null} - -t 42.9768 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 956 -a 0 -x {0.0.3.0 1.1.3.0 485 ------- null} h -t 42.9768 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 956 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.9784 -s 1 -d 3 -p ack -e 40 -c 0 -i 937 -a 1 -x {1.1.3.0 0.0.3.0 466 ------- null} + -t 42.9784 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {0.0.3.0 1.1.3.0 486 ------- null} - -t 42.9784 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {0.0.3.0 1.1.3.0 486 ------- null} h -t 42.9784 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.98 -s 1 -d 3 -p ack -e 40 -c 0 -i 938 -a 1 -x {1.1.3.0 0.0.3.0 467 ------- null} + -t 42.98 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 958 -a 0 -x {0.0.3.0 1.1.3.0 487 ------- null} - -t 42.98 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 958 -a 0 -x {0.0.3.0 1.1.3.0 487 ------- null} h -t 42.98 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 958 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.9816 -s 1 -d 3 -p ack -e 40 -c 0 -i 939 -a 1 -x {1.1.3.0 0.0.3.0 468 ------- null} + -t 42.9816 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {0.0.3.0 1.1.3.0 488 ------- null} - -t 42.9816 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {0.0.3.0 1.1.3.0 488 ------- null} h -t 42.9816 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.9832 -s 1 -d 3 -p ack -e 40 -c 0 -i 940 -a 1 -x {1.1.3.0 0.0.3.0 469 ------- null} + -t 42.9832 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 960 -a 0 -x {0.0.3.0 1.1.3.0 489 ------- null} - -t 42.9832 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 960 -a 0 -x {0.0.3.0 1.1.3.0 489 ------- null} h -t 42.9832 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 960 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 42.9848 -s 1 -d 3 -p ack -e 40 -c 0 -i 941 -a 1 -x {1.1.3.0 0.0.3.0 470 ------- null} + -t 42.9848 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {0.0.3.0 1.1.3.0 490 ------- null} - -t 42.9848 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {0.0.3.0 1.1.3.0 490 ------- null} h -t 42.9848 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.116 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 942 -a 0 -x {0.0.3.0 1.1.3.0 471 ------- null} + -t 43.116 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 942 -a 0 -x {0.0.3.0 1.1.3.0 471 ------- null} - -t 43.116 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 942 -a 0 -x {0.0.3.0 1.1.3.0 471 ------- null} h -t 43.116 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 942 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.1176 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {0.0.3.0 1.1.3.0 472 ------- null} + -t 43.1176 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {0.0.3.0 1.1.3.0 472 ------- null} - -t 43.1176 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {0.0.3.0 1.1.3.0 472 ------- null} h -t 43.1176 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.1192 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 944 -a 0 -x {0.0.3.0 1.1.3.0 473 ------- null} + -t 43.1192 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 944 -a 0 -x {0.0.3.0 1.1.3.0 473 ------- null} - -t 43.1192 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 944 -a 0 -x {0.0.3.0 1.1.3.0 473 ------- null} h -t 43.1192 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 944 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.1208 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {0.0.3.0 1.1.3.0 474 ------- null} + -t 43.1208 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {0.0.3.0 1.1.3.0 474 ------- null} - -t 43.1208 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {0.0.3.0 1.1.3.0 474 ------- null} h -t 43.1208 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.1224 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 946 -a 0 -x {0.0.3.0 1.1.3.0 475 ------- null} + -t 43.1224 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 946 -a 0 -x {0.0.3.0 1.1.3.0 475 ------- null} - -t 43.1224 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 946 -a 0 -x {0.0.3.0 1.1.3.0 475 ------- null} h -t 43.1224 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 946 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.124 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {0.0.3.0 1.1.3.0 476 ------- null} + -t 43.124 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {0.0.3.0 1.1.3.0 476 ------- null} - -t 43.124 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {0.0.3.0 1.1.3.0 476 ------- null} h -t 43.124 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.1256 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 948 -a 0 -x {0.0.3.0 1.1.3.0 477 ------- null} + -t 43.1256 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 948 -a 0 -x {0.0.3.0 1.1.3.0 477 ------- null} - -t 43.1256 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 948 -a 0 -x {0.0.3.0 1.1.3.0 477 ------- null} h -t 43.1256 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 948 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.1272 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {0.0.3.0 1.1.3.0 478 ------- null} + -t 43.1272 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {0.0.3.0 1.1.3.0 478 ------- null} - -t 43.1272 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {0.0.3.0 1.1.3.0 478 ------- null} h -t 43.1272 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.1288 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 950 -a 0 -x {0.0.3.0 1.1.3.0 479 ------- null} + -t 43.1288 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 950 -a 0 -x {0.0.3.0 1.1.3.0 479 ------- null} - -t 43.1288 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 950 -a 0 -x {0.0.3.0 1.1.3.0 479 ------- null} h -t 43.1288 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 950 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.1304 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {0.0.3.0 1.1.3.0 480 ------- null} + -t 43.1304 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {0.0.3.0 1.1.3.0 480 ------- null} - -t 43.1304 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {0.0.3.0 1.1.3.0 480 ------- null} h -t 43.1304 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.132 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 952 -a 0 -x {0.0.3.0 1.1.3.0 481 ------- null} + -t 43.132 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 952 -a 0 -x {0.0.3.0 1.1.3.0 481 ------- null} - -t 43.132 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 952 -a 0 -x {0.0.3.0 1.1.3.0 481 ------- null} h -t 43.132 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 952 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.1336 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {0.0.3.0 1.1.3.0 482 ------- null} + -t 43.1336 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {0.0.3.0 1.1.3.0 482 ------- null} - -t 43.1336 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {0.0.3.0 1.1.3.0 482 ------- null} h -t 43.1336 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.1352 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 954 -a 0 -x {0.0.3.0 1.1.3.0 483 ------- null} + -t 43.1352 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 954 -a 0 -x {0.0.3.0 1.1.3.0 483 ------- null} - -t 43.1352 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 954 -a 0 -x {0.0.3.0 1.1.3.0 483 ------- null} h -t 43.1352 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 954 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.1368 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {0.0.3.0 1.1.3.0 484 ------- null} + -t 43.1368 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {0.0.3.0 1.1.3.0 484 ------- null} - -t 43.1368 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {0.0.3.0 1.1.3.0 484 ------- null} h -t 43.1368 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.1384 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 956 -a 0 -x {0.0.3.0 1.1.3.0 485 ------- null} + -t 43.1384 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 956 -a 0 -x {0.0.3.0 1.1.3.0 485 ------- null} - -t 43.1384 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 956 -a 0 -x {0.0.3.0 1.1.3.0 485 ------- null} h -t 43.1384 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 956 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.14 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {0.0.3.0 1.1.3.0 486 ------- null} + -t 43.14 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {0.0.3.0 1.1.3.0 486 ------- null} - -t 43.14 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {0.0.3.0 1.1.3.0 486 ------- null} h -t 43.14 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.1416 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 958 -a 0 -x {0.0.3.0 1.1.3.0 487 ------- null} + -t 43.1416 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 958 -a 0 -x {0.0.3.0 1.1.3.0 487 ------- null} - -t 43.1416 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 958 -a 0 -x {0.0.3.0 1.1.3.0 487 ------- null} h -t 43.1416 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 958 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.1432 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {0.0.3.0 1.1.3.0 488 ------- null} + -t 43.1432 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {0.0.3.0 1.1.3.0 488 ------- null} - -t 43.1432 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {0.0.3.0 1.1.3.0 488 ------- null} h -t 43.1432 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.1448 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 960 -a 0 -x {0.0.3.0 1.1.3.0 489 ------- null} + -t 43.1448 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 960 -a 0 -x {0.0.3.0 1.1.3.0 489 ------- null} - -t 43.1448 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 960 -a 0 -x {0.0.3.0 1.1.3.0 489 ------- null} h -t 43.1448 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 960 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.1464 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {0.0.3.0 1.1.3.0 490 ------- null} + -t 43.1464 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {0.0.3.0 1.1.3.0 490 ------- null} - -t 43.1464 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {0.0.3.0 1.1.3.0 490 ------- null} h -t 43.1464 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.4176 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 942 -a 0 -x {0.0.3.0 1.1.3.0 471 ------- null} + -t 43.4176 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 942 -a 0 -x {0.0.3.0 1.1.3.0 471 ------- null} - -t 43.4176 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 942 -a 0 -x {0.0.3.0 1.1.3.0 471 ------- null} h -t 43.4176 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 942 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.4192 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {0.0.3.0 1.1.3.0 472 ------- null} + -t 43.4192 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {0.0.3.0 1.1.3.0 472 ------- null} - -t 43.4192 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {0.0.3.0 1.1.3.0 472 ------- null} h -t 43.4192 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.4208 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 944 -a 0 -x {0.0.3.0 1.1.3.0 473 ------- null} + -t 43.4208 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 944 -a 0 -x {0.0.3.0 1.1.3.0 473 ------- null} - -t 43.4208 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 944 -a 0 -x {0.0.3.0 1.1.3.0 473 ------- null} h -t 43.4208 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 944 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.4224 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {0.0.3.0 1.1.3.0 474 ------- null} + -t 43.4224 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {0.0.3.0 1.1.3.0 474 ------- null} - -t 43.4224 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {0.0.3.0 1.1.3.0 474 ------- null} h -t 43.4224 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.424 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 946 -a 0 -x {0.0.3.0 1.1.3.0 475 ------- null} + -t 43.424 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 946 -a 0 -x {0.0.3.0 1.1.3.0 475 ------- null} - -t 43.424 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 946 -a 0 -x {0.0.3.0 1.1.3.0 475 ------- null} h -t 43.424 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 946 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.4256 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {0.0.3.0 1.1.3.0 476 ------- null} + -t 43.4256 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {0.0.3.0 1.1.3.0 476 ------- null} - -t 43.4256 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {0.0.3.0 1.1.3.0 476 ------- null} h -t 43.4256 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.4272 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 948 -a 0 -x {0.0.3.0 1.1.3.0 477 ------- null} + -t 43.4272 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 948 -a 0 -x {0.0.3.0 1.1.3.0 477 ------- null} - -t 43.4272 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 948 -a 0 -x {0.0.3.0 1.1.3.0 477 ------- null} h -t 43.4272 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 948 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.4288 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {0.0.3.0 1.1.3.0 478 ------- null} + -t 43.4288 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {0.0.3.0 1.1.3.0 478 ------- null} - -t 43.4288 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {0.0.3.0 1.1.3.0 478 ------- null} h -t 43.4288 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.4304 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 950 -a 0 -x {0.0.3.0 1.1.3.0 479 ------- null} + -t 43.4304 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 950 -a 0 -x {0.0.3.0 1.1.3.0 479 ------- null} - -t 43.4304 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 950 -a 0 -x {0.0.3.0 1.1.3.0 479 ------- null} h -t 43.4304 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 950 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.432 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {0.0.3.0 1.1.3.0 480 ------- null} + -t 43.432 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {0.0.3.0 1.1.3.0 480 ------- null} - -t 43.432 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {0.0.3.0 1.1.3.0 480 ------- null} h -t 43.432 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.4336 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 952 -a 0 -x {0.0.3.0 1.1.3.0 481 ------- null} + -t 43.4336 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 952 -a 0 -x {0.0.3.0 1.1.3.0 481 ------- null} - -t 43.4336 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 952 -a 0 -x {0.0.3.0 1.1.3.0 481 ------- null} h -t 43.4336 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 952 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.4352 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {0.0.3.0 1.1.3.0 482 ------- null} + -t 43.4352 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {0.0.3.0 1.1.3.0 482 ------- null} - -t 43.4352 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {0.0.3.0 1.1.3.0 482 ------- null} h -t 43.4352 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.4368 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 954 -a 0 -x {0.0.3.0 1.1.3.0 483 ------- null} + -t 43.4368 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 954 -a 0 -x {0.0.3.0 1.1.3.0 483 ------- null} - -t 43.4368 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 954 -a 0 -x {0.0.3.0 1.1.3.0 483 ------- null} h -t 43.4368 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 954 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.4384 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {0.0.3.0 1.1.3.0 484 ------- null} + -t 43.4384 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {0.0.3.0 1.1.3.0 484 ------- null} - -t 43.4384 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {0.0.3.0 1.1.3.0 484 ------- null} h -t 43.4384 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.44 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 956 -a 0 -x {0.0.3.0 1.1.3.0 485 ------- null} + -t 43.44 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 956 -a 0 -x {0.0.3.0 1.1.3.0 485 ------- null} - -t 43.44 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 956 -a 0 -x {0.0.3.0 1.1.3.0 485 ------- null} h -t 43.44 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 956 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.4416 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {0.0.3.0 1.1.3.0 486 ------- null} + -t 43.4416 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {0.0.3.0 1.1.3.0 486 ------- null} - -t 43.4416 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {0.0.3.0 1.1.3.0 486 ------- null} h -t 43.4416 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.4432 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 958 -a 0 -x {0.0.3.0 1.1.3.0 487 ------- null} + -t 43.4432 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 958 -a 0 -x {0.0.3.0 1.1.3.0 487 ------- null} - -t 43.4432 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 958 -a 0 -x {0.0.3.0 1.1.3.0 487 ------- null} h -t 43.4432 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 958 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.4448 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {0.0.3.0 1.1.3.0 488 ------- null} + -t 43.4448 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {0.0.3.0 1.1.3.0 488 ------- null} - -t 43.4448 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {0.0.3.0 1.1.3.0 488 ------- null} h -t 43.4448 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.4464 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 960 -a 0 -x {0.0.3.0 1.1.3.0 489 ------- null} + -t 43.4464 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 960 -a 0 -x {0.0.3.0 1.1.3.0 489 ------- null} - -t 43.4464 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 960 -a 0 -x {0.0.3.0 1.1.3.0 489 ------- null} h -t 43.4464 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 960 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.448 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {0.0.3.0 1.1.3.0 490 ------- null} + -t 43.448 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {0.0.3.0 1.1.3.0 490 ------- null} - -t 43.448 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {0.0.3.0 1.1.3.0 490 ------- null} h -t 43.448 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.5192 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 942 -a 0 -x {0.0.3.0 1.1.3.0 471 ------- null} + -t 43.5192 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 942 -a 0 -x {0.0.3.0 1.1.3.0 471 ------- null} - -t 43.5192 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 942 -a 0 -x {0.0.3.0 1.1.3.0 471 ------- null} h -t 43.5192 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 942 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.5208 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {0.0.3.0 1.1.3.0 472 ------- null} + -t 43.5208 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {0.0.3.0 1.1.3.0 472 ------- null} - -t 43.5208 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {0.0.3.0 1.1.3.0 472 ------- null} h -t 43.5208 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.5224 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 944 -a 0 -x {0.0.3.0 1.1.3.0 473 ------- null} + -t 43.5224 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 944 -a 0 -x {0.0.3.0 1.1.3.0 473 ------- null} - -t 43.5224 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 944 -a 0 -x {0.0.3.0 1.1.3.0 473 ------- null} h -t 43.5224 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 944 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.524 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {0.0.3.0 1.1.3.0 474 ------- null} + -t 43.524 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {0.0.3.0 1.1.3.0 474 ------- null} - -t 43.524 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {0.0.3.0 1.1.3.0 474 ------- null} h -t 43.524 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.5256 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 946 -a 0 -x {0.0.3.0 1.1.3.0 475 ------- null} + -t 43.5256 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 946 -a 0 -x {0.0.3.0 1.1.3.0 475 ------- null} - -t 43.5256 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 946 -a 0 -x {0.0.3.0 1.1.3.0 475 ------- null} h -t 43.5256 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 946 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.5272 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {0.0.3.0 1.1.3.0 476 ------- null} + -t 43.5272 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {0.0.3.0 1.1.3.0 476 ------- null} - -t 43.5272 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {0.0.3.0 1.1.3.0 476 ------- null} h -t 43.5272 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.5288 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 948 -a 0 -x {0.0.3.0 1.1.3.0 477 ------- null} + -t 43.5288 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 948 -a 0 -x {0.0.3.0 1.1.3.0 477 ------- null} - -t 43.5288 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 948 -a 0 -x {0.0.3.0 1.1.3.0 477 ------- null} h -t 43.5288 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 948 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.5304 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {0.0.3.0 1.1.3.0 478 ------- null} + -t 43.5304 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {0.0.3.0 1.1.3.0 478 ------- null} - -t 43.5304 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {0.0.3.0 1.1.3.0 478 ------- null} h -t 43.5304 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.532 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 950 -a 0 -x {0.0.3.0 1.1.3.0 479 ------- null} + -t 43.532 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 950 -a 0 -x {0.0.3.0 1.1.3.0 479 ------- null} - -t 43.532 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 950 -a 0 -x {0.0.3.0 1.1.3.0 479 ------- null} h -t 43.532 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 950 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.5336 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {0.0.3.0 1.1.3.0 480 ------- null} + -t 43.5336 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {0.0.3.0 1.1.3.0 480 ------- null} - -t 43.5336 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {0.0.3.0 1.1.3.0 480 ------- null} h -t 43.5336 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.5352 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 952 -a 0 -x {0.0.3.0 1.1.3.0 481 ------- null} + -t 43.5352 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 952 -a 0 -x {0.0.3.0 1.1.3.0 481 ------- null} - -t 43.5352 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 952 -a 0 -x {0.0.3.0 1.1.3.0 481 ------- null} h -t 43.5352 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 952 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.5368 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {0.0.3.0 1.1.3.0 482 ------- null} + -t 43.5368 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {0.0.3.0 1.1.3.0 482 ------- null} - -t 43.5368 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {0.0.3.0 1.1.3.0 482 ------- null} h -t 43.5368 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.5384 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 954 -a 0 -x {0.0.3.0 1.1.3.0 483 ------- null} + -t 43.5384 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 954 -a 0 -x {0.0.3.0 1.1.3.0 483 ------- null} - -t 43.5384 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 954 -a 0 -x {0.0.3.0 1.1.3.0 483 ------- null} h -t 43.5384 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 954 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.54 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {0.0.3.0 1.1.3.0 484 ------- null} + -t 43.54 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {0.0.3.0 1.1.3.0 484 ------- null} - -t 43.54 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {0.0.3.0 1.1.3.0 484 ------- null} h -t 43.54 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.5416 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 956 -a 0 -x {0.0.3.0 1.1.3.0 485 ------- null} + -t 43.5416 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 956 -a 0 -x {0.0.3.0 1.1.3.0 485 ------- null} - -t 43.5416 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 956 -a 0 -x {0.0.3.0 1.1.3.0 485 ------- null} h -t 43.5416 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 956 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.5432 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {0.0.3.0 1.1.3.0 486 ------- null} + -t 43.5432 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {0.0.3.0 1.1.3.0 486 ------- null} - -t 43.5432 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {0.0.3.0 1.1.3.0 486 ------- null} h -t 43.5432 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.5448 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 958 -a 0 -x {0.0.3.0 1.1.3.0 487 ------- null} + -t 43.5448 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 958 -a 0 -x {0.0.3.0 1.1.3.0 487 ------- null} - -t 43.5448 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 958 -a 0 -x {0.0.3.0 1.1.3.0 487 ------- null} h -t 43.5448 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 958 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.5464 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {0.0.3.0 1.1.3.0 488 ------- null} + -t 43.5464 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {0.0.3.0 1.1.3.0 488 ------- null} - -t 43.5464 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {0.0.3.0 1.1.3.0 488 ------- null} h -t 43.5464 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.548 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 960 -a 0 -x {0.0.3.0 1.1.3.0 489 ------- null} + -t 43.548 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 960 -a 0 -x {0.0.3.0 1.1.3.0 489 ------- null} - -t 43.548 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 960 -a 0 -x {0.0.3.0 1.1.3.0 489 ------- null} h -t 43.548 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 960 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.5496 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {0.0.3.0 1.1.3.0 490 ------- null} + -t 43.5496 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {0.0.3.0 1.1.3.0 490 ------- null} - -t 43.5496 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {0.0.3.0 1.1.3.0 490 ------- null} h -t 43.5496 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.6008 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 942 -a 0 -x {0.0.3.0 1.1.3.0 471 ------- null} + -t 43.6008 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 942 -a 0 -x {0.0.3.0 1.1.3.0 471 ------- null} - -t 43.6008 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 942 -a 0 -x {0.0.3.0 1.1.3.0 471 ------- null} h -t 43.6008 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 942 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.6024 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {0.0.3.0 1.1.3.0 472 ------- null} + -t 43.6024 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {0.0.3.0 1.1.3.0 472 ------- null} - -t 43.6024 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {0.0.3.0 1.1.3.0 472 ------- null} h -t 43.6024 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.604 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 944 -a 0 -x {0.0.3.0 1.1.3.0 473 ------- null} + -t 43.604 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 944 -a 0 -x {0.0.3.0 1.1.3.0 473 ------- null} - -t 43.604 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 944 -a 0 -x {0.0.3.0 1.1.3.0 473 ------- null} h -t 43.604 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 944 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.6056 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {0.0.3.0 1.1.3.0 474 ------- null} + -t 43.6056 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {0.0.3.0 1.1.3.0 474 ------- null} - -t 43.6056 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {0.0.3.0 1.1.3.0 474 ------- null} h -t 43.6056 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.6072 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 946 -a 0 -x {0.0.3.0 1.1.3.0 475 ------- null} + -t 43.6072 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 946 -a 0 -x {0.0.3.0 1.1.3.0 475 ------- null} - -t 43.6072 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 946 -a 0 -x {0.0.3.0 1.1.3.0 475 ------- null} h -t 43.6072 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 946 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.6088 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {0.0.3.0 1.1.3.0 476 ------- null} + -t 43.6088 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {0.0.3.0 1.1.3.0 476 ------- null} - -t 43.6088 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {0.0.3.0 1.1.3.0 476 ------- null} h -t 43.6088 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.6104 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 948 -a 0 -x {0.0.3.0 1.1.3.0 477 ------- null} + -t 43.6104 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 948 -a 0 -x {0.0.3.0 1.1.3.0 477 ------- null} - -t 43.6104 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 948 -a 0 -x {0.0.3.0 1.1.3.0 477 ------- null} h -t 43.6104 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 948 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.612 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {0.0.3.0 1.1.3.0 478 ------- null} + -t 43.612 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {0.0.3.0 1.1.3.0 478 ------- null} - -t 43.612 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {0.0.3.0 1.1.3.0 478 ------- null} h -t 43.612 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.6136 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 950 -a 0 -x {0.0.3.0 1.1.3.0 479 ------- null} + -t 43.6136 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 950 -a 0 -x {0.0.3.0 1.1.3.0 479 ------- null} - -t 43.6136 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 950 -a 0 -x {0.0.3.0 1.1.3.0 479 ------- null} h -t 43.6136 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 950 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.6152 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {0.0.3.0 1.1.3.0 480 ------- null} + -t 43.6152 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {0.0.3.0 1.1.3.0 480 ------- null} - -t 43.6152 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {0.0.3.0 1.1.3.0 480 ------- null} h -t 43.6152 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.6168 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 952 -a 0 -x {0.0.3.0 1.1.3.0 481 ------- null} + -t 43.6168 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 952 -a 0 -x {0.0.3.0 1.1.3.0 481 ------- null} - -t 43.6168 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 952 -a 0 -x {0.0.3.0 1.1.3.0 481 ------- null} h -t 43.6168 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 952 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.6184 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {0.0.3.0 1.1.3.0 482 ------- null} + -t 43.6184 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {0.0.3.0 1.1.3.0 482 ------- null} - -t 43.6184 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {0.0.3.0 1.1.3.0 482 ------- null} h -t 43.6184 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.62 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 954 -a 0 -x {0.0.3.0 1.1.3.0 483 ------- null} + -t 43.62 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 954 -a 0 -x {0.0.3.0 1.1.3.0 483 ------- null} - -t 43.62 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 954 -a 0 -x {0.0.3.0 1.1.3.0 483 ------- null} h -t 43.62 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 954 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.6216 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {0.0.3.0 1.1.3.0 484 ------- null} + -t 43.6216 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {0.0.3.0 1.1.3.0 484 ------- null} - -t 43.6216 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {0.0.3.0 1.1.3.0 484 ------- null} h -t 43.6216 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.6232 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 956 -a 0 -x {0.0.3.0 1.1.3.0 485 ------- null} + -t 43.6232 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 956 -a 0 -x {0.0.3.0 1.1.3.0 485 ------- null} - -t 43.6232 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 956 -a 0 -x {0.0.3.0 1.1.3.0 485 ------- null} h -t 43.6232 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 956 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.6248 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {0.0.3.0 1.1.3.0 486 ------- null} + -t 43.6248 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {0.0.3.0 1.1.3.0 486 ------- null} - -t 43.6248 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {0.0.3.0 1.1.3.0 486 ------- null} h -t 43.6248 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.6264 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 958 -a 0 -x {0.0.3.0 1.1.3.0 487 ------- null} + -t 43.6264 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 958 -a 0 -x {0.0.3.0 1.1.3.0 487 ------- null} - -t 43.6264 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 958 -a 0 -x {0.0.3.0 1.1.3.0 487 ------- null} h -t 43.6264 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 958 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.628 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {0.0.3.0 1.1.3.0 488 ------- null} + -t 43.628 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {0.0.3.0 1.1.3.0 488 ------- null} - -t 43.628 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {0.0.3.0 1.1.3.0 488 ------- null} h -t 43.628 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.6296 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 960 -a 0 -x {0.0.3.0 1.1.3.0 489 ------- null} + -t 43.6296 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 960 -a 0 -x {0.0.3.0 1.1.3.0 489 ------- null} - -t 43.6296 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 960 -a 0 -x {0.0.3.0 1.1.3.0 489 ------- null} h -t 43.6296 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 960 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.6312 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {0.0.3.0 1.1.3.0 490 ------- null} + -t 43.6312 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {0.0.3.0 1.1.3.0 490 ------- null} - -t 43.6312 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {0.0.3.0 1.1.3.0 490 ------- null} h -t 43.6312 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.6824 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 942 -a 0 -x {0.0.3.0 1.1.3.0 471 ------- null} + -t 43.6824 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 942 -a 0 -x {0.0.3.0 1.1.3.0 471 ------- null} - -t 43.6824 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 942 -a 0 -x {0.0.3.0 1.1.3.0 471 ------- null} h -t 43.6824 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 942 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.684 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {0.0.3.0 1.1.3.0 472 ------- null} + -t 43.684 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {0.0.3.0 1.1.3.0 472 ------- null} - -t 43.684 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {0.0.3.0 1.1.3.0 472 ------- null} h -t 43.684 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.6856 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 944 -a 0 -x {0.0.3.0 1.1.3.0 473 ------- null} + -t 43.6856 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 944 -a 0 -x {0.0.3.0 1.1.3.0 473 ------- null} - -t 43.6856 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 944 -a 0 -x {0.0.3.0 1.1.3.0 473 ------- null} h -t 43.6856 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 944 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.6872 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {0.0.3.0 1.1.3.0 474 ------- null} + -t 43.6872 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {0.0.3.0 1.1.3.0 474 ------- null} - -t 43.6872 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {0.0.3.0 1.1.3.0 474 ------- null} h -t 43.6872 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.6888 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 946 -a 0 -x {0.0.3.0 1.1.3.0 475 ------- null} + -t 43.6888 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 946 -a 0 -x {0.0.3.0 1.1.3.0 475 ------- null} - -t 43.6888 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 946 -a 0 -x {0.0.3.0 1.1.3.0 475 ------- null} h -t 43.6888 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 946 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.6904 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {0.0.3.0 1.1.3.0 476 ------- null} + -t 43.6904 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {0.0.3.0 1.1.3.0 476 ------- null} - -t 43.6904 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {0.0.3.0 1.1.3.0 476 ------- null} h -t 43.6904 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.692 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 948 -a 0 -x {0.0.3.0 1.1.3.0 477 ------- null} + -t 43.692 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 948 -a 0 -x {0.0.3.0 1.1.3.0 477 ------- null} - -t 43.692 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 948 -a 0 -x {0.0.3.0 1.1.3.0 477 ------- null} h -t 43.692 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 948 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.6936 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {0.0.3.0 1.1.3.0 478 ------- null} + -t 43.6936 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {0.0.3.0 1.1.3.0 478 ------- null} - -t 43.6936 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {0.0.3.0 1.1.3.0 478 ------- null} h -t 43.6936 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.6952 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 950 -a 0 -x {0.0.3.0 1.1.3.0 479 ------- null} + -t 43.6952 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 950 -a 0 -x {0.0.3.0 1.1.3.0 479 ------- null} - -t 43.6952 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 950 -a 0 -x {0.0.3.0 1.1.3.0 479 ------- null} h -t 43.6952 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 950 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.6968 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {0.0.3.0 1.1.3.0 480 ------- null} + -t 43.6968 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {0.0.3.0 1.1.3.0 480 ------- null} - -t 43.6968 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {0.0.3.0 1.1.3.0 480 ------- null} h -t 43.6968 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.6984 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 952 -a 0 -x {0.0.3.0 1.1.3.0 481 ------- null} + -t 43.6984 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 952 -a 0 -x {0.0.3.0 1.1.3.0 481 ------- null} - -t 43.6984 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 952 -a 0 -x {0.0.3.0 1.1.3.0 481 ------- null} h -t 43.6984 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 952 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.7 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {0.0.3.0 1.1.3.0 482 ------- null} + -t 43.7 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {0.0.3.0 1.1.3.0 482 ------- null} - -t 43.7 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {0.0.3.0 1.1.3.0 482 ------- null} h -t 43.7 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.7016 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 954 -a 0 -x {0.0.3.0 1.1.3.0 483 ------- null} + -t 43.7016 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 954 -a 0 -x {0.0.3.0 1.1.3.0 483 ------- null} - -t 43.7016 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 954 -a 0 -x {0.0.3.0 1.1.3.0 483 ------- null} h -t 43.7016 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 954 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.7032 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {0.0.3.0 1.1.3.0 484 ------- null} + -t 43.7032 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {0.0.3.0 1.1.3.0 484 ------- null} - -t 43.7032 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {0.0.3.0 1.1.3.0 484 ------- null} h -t 43.7032 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.7048 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 956 -a 0 -x {0.0.3.0 1.1.3.0 485 ------- null} + -t 43.7048 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 956 -a 0 -x {0.0.3.0 1.1.3.0 485 ------- null} - -t 43.7048 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 956 -a 0 -x {0.0.3.0 1.1.3.0 485 ------- null} h -t 43.7048 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 956 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.7064 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {0.0.3.0 1.1.3.0 486 ------- null} + -t 43.7064 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {0.0.3.0 1.1.3.0 486 ------- null} - -t 43.7064 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {0.0.3.0 1.1.3.0 486 ------- null} h -t 43.7064 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.708 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 958 -a 0 -x {0.0.3.0 1.1.3.0 487 ------- null} + -t 43.708 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 958 -a 0 -x {0.0.3.0 1.1.3.0 487 ------- null} - -t 43.708 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 958 -a 0 -x {0.0.3.0 1.1.3.0 487 ------- null} h -t 43.708 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 958 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.7096 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {0.0.3.0 1.1.3.0 488 ------- null} + -t 43.7096 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {0.0.3.0 1.1.3.0 488 ------- null} - -t 43.7096 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {0.0.3.0 1.1.3.0 488 ------- null} h -t 43.7096 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.7112 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 960 -a 0 -x {0.0.3.0 1.1.3.0 489 ------- null} + -t 43.7112 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 960 -a 0 -x {0.0.3.0 1.1.3.0 489 ------- null} - -t 43.7112 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 960 -a 0 -x {0.0.3.0 1.1.3.0 489 ------- null} h -t 43.7112 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 960 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.7128 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {0.0.3.0 1.1.3.0 490 ------- null} + -t 43.7128 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {0.0.3.0 1.1.3.0 490 ------- null} - -t 43.7128 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {0.0.3.0 1.1.3.0 490 ------- null} h -t 43.7128 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 43.744 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 942 -a 0 -x {0.0.3.0 1.1.3.0 471 ------- null} + -t 43.744 -s 21 -d 28 -p ack -e 40 -c 0 -i 962 -a 1 -x {1.1.3.0 0.0.3.0 471 ------- null} - -t 43.744 -s 21 -d 28 -p ack -e 40 -c 0 -i 962 -a 1 -x {1.1.3.0 0.0.3.0 471 ------- null} h -t 43.744 -s 21 -d 28 -p ack -e 40 -c 0 -i 962 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 43.7456 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {0.0.3.0 1.1.3.0 472 ------- null} + -t 43.7456 -s 21 -d 28 -p ack -e 40 -c 0 -i 963 -a 1 -x {1.1.3.0 0.0.3.0 472 ------- null} - -t 43.7456 -s 21 -d 28 -p ack -e 40 -c 0 -i 963 -a 1 -x {1.1.3.0 0.0.3.0 472 ------- null} h -t 43.7456 -s 21 -d 28 -p ack -e 40 -c 0 -i 963 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 43.7472 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 944 -a 0 -x {0.0.3.0 1.1.3.0 473 ------- null} + -t 43.7472 -s 21 -d 28 -p ack -e 40 -c 0 -i 964 -a 1 -x {1.1.3.0 0.0.3.0 473 ------- null} - -t 43.7472 -s 21 -d 28 -p ack -e 40 -c 0 -i 964 -a 1 -x {1.1.3.0 0.0.3.0 473 ------- null} h -t 43.7472 -s 21 -d 28 -p ack -e 40 -c 0 -i 964 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 43.7488 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {0.0.3.0 1.1.3.0 474 ------- null} + -t 43.7488 -s 21 -d 28 -p ack -e 40 -c 0 -i 965 -a 1 -x {1.1.3.0 0.0.3.0 474 ------- null} - -t 43.7488 -s 21 -d 28 -p ack -e 40 -c 0 -i 965 -a 1 -x {1.1.3.0 0.0.3.0 474 ------- null} h -t 43.7488 -s 21 -d 28 -p ack -e 40 -c 0 -i 965 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 43.7504 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 946 -a 0 -x {0.0.3.0 1.1.3.0 475 ------- null} + -t 43.7504 -s 21 -d 28 -p ack -e 40 -c 0 -i 966 -a 1 -x {1.1.3.0 0.0.3.0 475 ------- null} - -t 43.7504 -s 21 -d 28 -p ack -e 40 -c 0 -i 966 -a 1 -x {1.1.3.0 0.0.3.0 475 ------- null} h -t 43.7504 -s 21 -d 28 -p ack -e 40 -c 0 -i 966 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 43.752 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {0.0.3.0 1.1.3.0 476 ------- null} + -t 43.752 -s 21 -d 28 -p ack -e 40 -c 0 -i 967 -a 1 -x {1.1.3.0 0.0.3.0 476 ------- null} - -t 43.752 -s 21 -d 28 -p ack -e 40 -c 0 -i 967 -a 1 -x {1.1.3.0 0.0.3.0 476 ------- null} h -t 43.752 -s 21 -d 28 -p ack -e 40 -c 0 -i 967 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 43.7536 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 948 -a 0 -x {0.0.3.0 1.1.3.0 477 ------- null} + -t 43.7536 -s 21 -d 28 -p ack -e 40 -c 0 -i 968 -a 1 -x {1.1.3.0 0.0.3.0 477 ------- null} - -t 43.7536 -s 21 -d 28 -p ack -e 40 -c 0 -i 968 -a 1 -x {1.1.3.0 0.0.3.0 477 ------- null} h -t 43.7536 -s 21 -d 28 -p ack -e 40 -c 0 -i 968 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 43.7552 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {0.0.3.0 1.1.3.0 478 ------- null} + -t 43.7552 -s 21 -d 28 -p ack -e 40 -c 0 -i 969 -a 1 -x {1.1.3.0 0.0.3.0 478 ------- null} - -t 43.7552 -s 21 -d 28 -p ack -e 40 -c 0 -i 969 -a 1 -x {1.1.3.0 0.0.3.0 478 ------- null} h -t 43.7552 -s 21 -d 28 -p ack -e 40 -c 0 -i 969 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 43.7568 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 950 -a 0 -x {0.0.3.0 1.1.3.0 479 ------- null} + -t 43.7568 -s 21 -d 28 -p ack -e 40 -c 0 -i 970 -a 1 -x {1.1.3.0 0.0.3.0 479 ------- null} - -t 43.7568 -s 21 -d 28 -p ack -e 40 -c 0 -i 970 -a 1 -x {1.1.3.0 0.0.3.0 479 ------- null} h -t 43.7568 -s 21 -d 28 -p ack -e 40 -c 0 -i 970 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 43.7584 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {0.0.3.0 1.1.3.0 480 ------- null} + -t 43.7584 -s 21 -d 28 -p ack -e 40 -c 0 -i 971 -a 1 -x {1.1.3.0 0.0.3.0 480 ------- null} - -t 43.7584 -s 21 -d 28 -p ack -e 40 -c 0 -i 971 -a 1 -x {1.1.3.0 0.0.3.0 480 ------- null} h -t 43.7584 -s 21 -d 28 -p ack -e 40 -c 0 -i 971 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 43.76 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 952 -a 0 -x {0.0.3.0 1.1.3.0 481 ------- null} + -t 43.76 -s 21 -d 28 -p ack -e 40 -c 0 -i 972 -a 1 -x {1.1.3.0 0.0.3.0 481 ------- null} - -t 43.76 -s 21 -d 28 -p ack -e 40 -c 0 -i 972 -a 1 -x {1.1.3.0 0.0.3.0 481 ------- null} h -t 43.76 -s 21 -d 28 -p ack -e 40 -c 0 -i 972 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 43.7616 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {0.0.3.0 1.1.3.0 482 ------- null} + -t 43.7616 -s 21 -d 28 -p ack -e 40 -c 0 -i 973 -a 1 -x {1.1.3.0 0.0.3.0 482 ------- null} - -t 43.7616 -s 21 -d 28 -p ack -e 40 -c 0 -i 973 -a 1 -x {1.1.3.0 0.0.3.0 482 ------- null} h -t 43.7616 -s 21 -d 28 -p ack -e 40 -c 0 -i 973 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 43.7632 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 954 -a 0 -x {0.0.3.0 1.1.3.0 483 ------- null} + -t 43.7632 -s 21 -d 28 -p ack -e 40 -c 0 -i 974 -a 1 -x {1.1.3.0 0.0.3.0 483 ------- null} - -t 43.7632 -s 21 -d 28 -p ack -e 40 -c 0 -i 974 -a 1 -x {1.1.3.0 0.0.3.0 483 ------- null} h -t 43.7632 -s 21 -d 28 -p ack -e 40 -c 0 -i 974 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 43.7648 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {0.0.3.0 1.1.3.0 484 ------- null} + -t 43.7648 -s 21 -d 28 -p ack -e 40 -c 0 -i 975 -a 1 -x {1.1.3.0 0.0.3.0 484 ------- null} - -t 43.7648 -s 21 -d 28 -p ack -e 40 -c 0 -i 975 -a 1 -x {1.1.3.0 0.0.3.0 484 ------- null} h -t 43.7648 -s 21 -d 28 -p ack -e 40 -c 0 -i 975 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 43.7664 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 956 -a 0 -x {0.0.3.0 1.1.3.0 485 ------- null} + -t 43.7664 -s 21 -d 28 -p ack -e 40 -c 0 -i 976 -a 1 -x {1.1.3.0 0.0.3.0 485 ------- null} - -t 43.7664 -s 21 -d 28 -p ack -e 40 -c 0 -i 976 -a 1 -x {1.1.3.0 0.0.3.0 485 ------- null} h -t 43.7664 -s 21 -d 28 -p ack -e 40 -c 0 -i 976 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 43.768 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {0.0.3.0 1.1.3.0 486 ------- null} + -t 43.768 -s 21 -d 28 -p ack -e 40 -c 0 -i 977 -a 1 -x {1.1.3.0 0.0.3.0 486 ------- null} - -t 43.768 -s 21 -d 28 -p ack -e 40 -c 0 -i 977 -a 1 -x {1.1.3.0 0.0.3.0 486 ------- null} h -t 43.768 -s 21 -d 28 -p ack -e 40 -c 0 -i 977 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 43.7696 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 958 -a 0 -x {0.0.3.0 1.1.3.0 487 ------- null} + -t 43.7696 -s 21 -d 28 -p ack -e 40 -c 0 -i 978 -a 1 -x {1.1.3.0 0.0.3.0 487 ------- null} - -t 43.7696 -s 21 -d 28 -p ack -e 40 -c 0 -i 978 -a 1 -x {1.1.3.0 0.0.3.0 487 ------- null} h -t 43.7696 -s 21 -d 28 -p ack -e 40 -c 0 -i 978 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 43.7712 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {0.0.3.0 1.1.3.0 488 ------- null} + -t 43.7712 -s 21 -d 28 -p ack -e 40 -c 0 -i 979 -a 1 -x {1.1.3.0 0.0.3.0 488 ------- null} - -t 43.7712 -s 21 -d 28 -p ack -e 40 -c 0 -i 979 -a 1 -x {1.1.3.0 0.0.3.0 488 ------- null} h -t 43.7712 -s 21 -d 28 -p ack -e 40 -c 0 -i 979 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 43.7728 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 960 -a 0 -x {0.0.3.0 1.1.3.0 489 ------- null} + -t 43.7728 -s 21 -d 28 -p ack -e 40 -c 0 -i 980 -a 1 -x {1.1.3.0 0.0.3.0 489 ------- null} - -t 43.7728 -s 21 -d 28 -p ack -e 40 -c 0 -i 980 -a 1 -x {1.1.3.0 0.0.3.0 489 ------- null} h -t 43.7728 -s 21 -d 28 -p ack -e 40 -c 0 -i 980 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 43.7744 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {0.0.3.0 1.1.3.0 490 ------- null} + -t 43.7744 -s 21 -d 28 -p ack -e 40 -c 0 -i 981 -a 1 -x {1.1.3.0 0.0.3.0 490 ------- null} - -t 43.7744 -s 21 -d 28 -p ack -e 40 -c 0 -i 981 -a 1 -x {1.1.3.0 0.0.3.0 490 ------- null} h -t 43.7744 -s 21 -d 28 -p ack -e 40 -c 0 -i 981 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 44.094 -s 21 -d 28 -p ack -e 40 -c 0 -i 962 -a 1 -x {1.1.3.0 0.0.3.0 471 ------- null} + -t 44.094 -s 28 -d 1 -p ack -e 40 -c 0 -i 962 -a 1 -x {1.1.3.0 0.0.3.0 471 ------- null} - -t 44.094 -s 28 -d 1 -p ack -e 40 -c 0 -i 962 -a 1 -x {1.1.3.0 0.0.3.0 471 ------- null} h -t 44.094 -s 28 -d 1 -p ack -e 40 -c 0 -i 962 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 44.0956 -s 21 -d 28 -p ack -e 40 -c 0 -i 963 -a 1 -x {1.1.3.0 0.0.3.0 472 ------- null} + -t 44.0956 -s 28 -d 1 -p ack -e 40 -c 0 -i 963 -a 1 -x {1.1.3.0 0.0.3.0 472 ------- null} - -t 44.0956 -s 28 -d 1 -p ack -e 40 -c 0 -i 963 -a 1 -x {1.1.3.0 0.0.3.0 472 ------- null} h -t 44.0956 -s 28 -d 1 -p ack -e 40 -c 0 -i 963 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 44.0972 -s 21 -d 28 -p ack -e 40 -c 0 -i 964 -a 1 -x {1.1.3.0 0.0.3.0 473 ------- null} + -t 44.0972 -s 28 -d 1 -p ack -e 40 -c 0 -i 964 -a 1 -x {1.1.3.0 0.0.3.0 473 ------- null} - -t 44.0972 -s 28 -d 1 -p ack -e 40 -c 0 -i 964 -a 1 -x {1.1.3.0 0.0.3.0 473 ------- null} h -t 44.0972 -s 28 -d 1 -p ack -e 40 -c 0 -i 964 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 44.0988 -s 21 -d 28 -p ack -e 40 -c 0 -i 965 -a 1 -x {1.1.3.0 0.0.3.0 474 ------- null} + -t 44.0988 -s 28 -d 1 -p ack -e 40 -c 0 -i 965 -a 1 -x {1.1.3.0 0.0.3.0 474 ------- null} - -t 44.0988 -s 28 -d 1 -p ack -e 40 -c 0 -i 965 -a 1 -x {1.1.3.0 0.0.3.0 474 ------- null} h -t 44.0988 -s 28 -d 1 -p ack -e 40 -c 0 -i 965 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 44.1004 -s 21 -d 28 -p ack -e 40 -c 0 -i 966 -a 1 -x {1.1.3.0 0.0.3.0 475 ------- null} + -t 44.1004 -s 28 -d 1 -p ack -e 40 -c 0 -i 966 -a 1 -x {1.1.3.0 0.0.3.0 475 ------- null} - -t 44.1004 -s 28 -d 1 -p ack -e 40 -c 0 -i 966 -a 1 -x {1.1.3.0 0.0.3.0 475 ------- null} h -t 44.1004 -s 28 -d 1 -p ack -e 40 -c 0 -i 966 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 44.102 -s 21 -d 28 -p ack -e 40 -c 0 -i 967 -a 1 -x {1.1.3.0 0.0.3.0 476 ------- null} + -t 44.102 -s 28 -d 1 -p ack -e 40 -c 0 -i 967 -a 1 -x {1.1.3.0 0.0.3.0 476 ------- null} - -t 44.102 -s 28 -d 1 -p ack -e 40 -c 0 -i 967 -a 1 -x {1.1.3.0 0.0.3.0 476 ------- null} h -t 44.102 -s 28 -d 1 -p ack -e 40 -c 0 -i 967 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 44.1036 -s 21 -d 28 -p ack -e 40 -c 0 -i 968 -a 1 -x {1.1.3.0 0.0.3.0 477 ------- null} + -t 44.1036 -s 28 -d 1 -p ack -e 40 -c 0 -i 968 -a 1 -x {1.1.3.0 0.0.3.0 477 ------- null} - -t 44.1036 -s 28 -d 1 -p ack -e 40 -c 0 -i 968 -a 1 -x {1.1.3.0 0.0.3.0 477 ------- null} h -t 44.1036 -s 28 -d 1 -p ack -e 40 -c 0 -i 968 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 44.1052 -s 21 -d 28 -p ack -e 40 -c 0 -i 969 -a 1 -x {1.1.3.0 0.0.3.0 478 ------- null} + -t 44.1052 -s 28 -d 1 -p ack -e 40 -c 0 -i 969 -a 1 -x {1.1.3.0 0.0.3.0 478 ------- null} - -t 44.1052 -s 28 -d 1 -p ack -e 40 -c 0 -i 969 -a 1 -x {1.1.3.0 0.0.3.0 478 ------- null} h -t 44.1052 -s 28 -d 1 -p ack -e 40 -c 0 -i 969 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 44.1068 -s 21 -d 28 -p ack -e 40 -c 0 -i 970 -a 1 -x {1.1.3.0 0.0.3.0 479 ------- null} + -t 44.1068 -s 28 -d 1 -p ack -e 40 -c 0 -i 970 -a 1 -x {1.1.3.0 0.0.3.0 479 ------- null} - -t 44.1068 -s 28 -d 1 -p ack -e 40 -c 0 -i 970 -a 1 -x {1.1.3.0 0.0.3.0 479 ------- null} h -t 44.1068 -s 28 -d 1 -p ack -e 40 -c 0 -i 970 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 44.1084 -s 21 -d 28 -p ack -e 40 -c 0 -i 971 -a 1 -x {1.1.3.0 0.0.3.0 480 ------- null} + -t 44.1084 -s 28 -d 1 -p ack -e 40 -c 0 -i 971 -a 1 -x {1.1.3.0 0.0.3.0 480 ------- null} - -t 44.1084 -s 28 -d 1 -p ack -e 40 -c 0 -i 971 -a 1 -x {1.1.3.0 0.0.3.0 480 ------- null} h -t 44.1084 -s 28 -d 1 -p ack -e 40 -c 0 -i 971 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 44.11 -s 21 -d 28 -p ack -e 40 -c 0 -i 972 -a 1 -x {1.1.3.0 0.0.3.0 481 ------- null} + -t 44.11 -s 28 -d 1 -p ack -e 40 -c 0 -i 972 -a 1 -x {1.1.3.0 0.0.3.0 481 ------- null} - -t 44.11 -s 28 -d 1 -p ack -e 40 -c 0 -i 972 -a 1 -x {1.1.3.0 0.0.3.0 481 ------- null} h -t 44.11 -s 28 -d 1 -p ack -e 40 -c 0 -i 972 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 44.1116 -s 21 -d 28 -p ack -e 40 -c 0 -i 973 -a 1 -x {1.1.3.0 0.0.3.0 482 ------- null} + -t 44.1116 -s 28 -d 1 -p ack -e 40 -c 0 -i 973 -a 1 -x {1.1.3.0 0.0.3.0 482 ------- null} - -t 44.1116 -s 28 -d 1 -p ack -e 40 -c 0 -i 973 -a 1 -x {1.1.3.0 0.0.3.0 482 ------- null} h -t 44.1116 -s 28 -d 1 -p ack -e 40 -c 0 -i 973 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 44.1132 -s 21 -d 28 -p ack -e 40 -c 0 -i 974 -a 1 -x {1.1.3.0 0.0.3.0 483 ------- null} + -t 44.1132 -s 28 -d 1 -p ack -e 40 -c 0 -i 974 -a 1 -x {1.1.3.0 0.0.3.0 483 ------- null} - -t 44.1132 -s 28 -d 1 -p ack -e 40 -c 0 -i 974 -a 1 -x {1.1.3.0 0.0.3.0 483 ------- null} h -t 44.1132 -s 28 -d 1 -p ack -e 40 -c 0 -i 974 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 44.1148 -s 21 -d 28 -p ack -e 40 -c 0 -i 975 -a 1 -x {1.1.3.0 0.0.3.0 484 ------- null} + -t 44.1148 -s 28 -d 1 -p ack -e 40 -c 0 -i 975 -a 1 -x {1.1.3.0 0.0.3.0 484 ------- null} - -t 44.1148 -s 28 -d 1 -p ack -e 40 -c 0 -i 975 -a 1 -x {1.1.3.0 0.0.3.0 484 ------- null} h -t 44.1148 -s 28 -d 1 -p ack -e 40 -c 0 -i 975 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 44.1164 -s 21 -d 28 -p ack -e 40 -c 0 -i 976 -a 1 -x {1.1.3.0 0.0.3.0 485 ------- null} + -t 44.1164 -s 28 -d 1 -p ack -e 40 -c 0 -i 976 -a 1 -x {1.1.3.0 0.0.3.0 485 ------- null} - -t 44.1164 -s 28 -d 1 -p ack -e 40 -c 0 -i 976 -a 1 -x {1.1.3.0 0.0.3.0 485 ------- null} h -t 44.1164 -s 28 -d 1 -p ack -e 40 -c 0 -i 976 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 44.118 -s 21 -d 28 -p ack -e 40 -c 0 -i 977 -a 1 -x {1.1.3.0 0.0.3.0 486 ------- null} + -t 44.118 -s 28 -d 1 -p ack -e 40 -c 0 -i 977 -a 1 -x {1.1.3.0 0.0.3.0 486 ------- null} - -t 44.118 -s 28 -d 1 -p ack -e 40 -c 0 -i 977 -a 1 -x {1.1.3.0 0.0.3.0 486 ------- null} h -t 44.118 -s 28 -d 1 -p ack -e 40 -c 0 -i 977 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 44.1196 -s 21 -d 28 -p ack -e 40 -c 0 -i 978 -a 1 -x {1.1.3.0 0.0.3.0 487 ------- null} + -t 44.1196 -s 28 -d 1 -p ack -e 40 -c 0 -i 978 -a 1 -x {1.1.3.0 0.0.3.0 487 ------- null} - -t 44.1196 -s 28 -d 1 -p ack -e 40 -c 0 -i 978 -a 1 -x {1.1.3.0 0.0.3.0 487 ------- null} h -t 44.1196 -s 28 -d 1 -p ack -e 40 -c 0 -i 978 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 44.1212 -s 21 -d 28 -p ack -e 40 -c 0 -i 979 -a 1 -x {1.1.3.0 0.0.3.0 488 ------- null} + -t 44.1212 -s 28 -d 1 -p ack -e 40 -c 0 -i 979 -a 1 -x {1.1.3.0 0.0.3.0 488 ------- null} - -t 44.1212 -s 28 -d 1 -p ack -e 40 -c 0 -i 979 -a 1 -x {1.1.3.0 0.0.3.0 488 ------- null} h -t 44.1212 -s 28 -d 1 -p ack -e 40 -c 0 -i 979 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 44.1228 -s 21 -d 28 -p ack -e 40 -c 0 -i 980 -a 1 -x {1.1.3.0 0.0.3.0 489 ------- null} + -t 44.1228 -s 28 -d 1 -p ack -e 40 -c 0 -i 980 -a 1 -x {1.1.3.0 0.0.3.0 489 ------- null} - -t 44.1228 -s 28 -d 1 -p ack -e 40 -c 0 -i 980 -a 1 -x {1.1.3.0 0.0.3.0 489 ------- null} h -t 44.1228 -s 28 -d 1 -p ack -e 40 -c 0 -i 980 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 44.1244 -s 21 -d 28 -p ack -e 40 -c 0 -i 981 -a 1 -x {1.1.3.0 0.0.3.0 490 ------- null} + -t 44.1244 -s 28 -d 1 -p ack -e 40 -c 0 -i 981 -a 1 -x {1.1.3.0 0.0.3.0 490 ------- null} - -t 44.1244 -s 28 -d 1 -p ack -e 40 -c 0 -i 981 -a 1 -x {1.1.3.0 0.0.3.0 490 ------- null} h -t 44.1244 -s 28 -d 1 -p ack -e 40 -c 0 -i 981 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 44.3941 -s 28 -d 1 -p ack -e 40 -c 0 -i 962 -a 1 -x {1.1.3.0 0.0.3.0 471 ------- null} + -t 44.3941 -s 1 -d 3 -p ack -e 40 -c 0 -i 962 -a 1 -x {1.1.3.0 0.0.3.0 471 ------- null} - -t 44.3941 -s 1 -d 3 -p ack -e 40 -c 0 -i 962 -a 1 -x {1.1.3.0 0.0.3.0 471 ------- null} h -t 44.3941 -s 1 -d 3 -p ack -e 40 -c 0 -i 962 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 44.3957 -s 28 -d 1 -p ack -e 40 -c 0 -i 963 -a 1 -x {1.1.3.0 0.0.3.0 472 ------- null} + -t 44.3957 -s 1 -d 3 -p ack -e 40 -c 0 -i 963 -a 1 -x {1.1.3.0 0.0.3.0 472 ------- null} - -t 44.3957 -s 1 -d 3 -p ack -e 40 -c 0 -i 963 -a 1 -x {1.1.3.0 0.0.3.0 472 ------- null} h -t 44.3957 -s 1 -d 3 -p ack -e 40 -c 0 -i 963 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 44.3973 -s 28 -d 1 -p ack -e 40 -c 0 -i 964 -a 1 -x {1.1.3.0 0.0.3.0 473 ------- null} + -t 44.3973 -s 1 -d 3 -p ack -e 40 -c 0 -i 964 -a 1 -x {1.1.3.0 0.0.3.0 473 ------- null} - -t 44.3973 -s 1 -d 3 -p ack -e 40 -c 0 -i 964 -a 1 -x {1.1.3.0 0.0.3.0 473 ------- null} h -t 44.3973 -s 1 -d 3 -p ack -e 40 -c 0 -i 964 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 44.3989 -s 28 -d 1 -p ack -e 40 -c 0 -i 965 -a 1 -x {1.1.3.0 0.0.3.0 474 ------- null} + -t 44.3989 -s 1 -d 3 -p ack -e 40 -c 0 -i 965 -a 1 -x {1.1.3.0 0.0.3.0 474 ------- null} - -t 44.3989 -s 1 -d 3 -p ack -e 40 -c 0 -i 965 -a 1 -x {1.1.3.0 0.0.3.0 474 ------- null} h -t 44.3989 -s 1 -d 3 -p ack -e 40 -c 0 -i 965 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 44.4005 -s 28 -d 1 -p ack -e 40 -c 0 -i 966 -a 1 -x {1.1.3.0 0.0.3.0 475 ------- null} + -t 44.4005 -s 1 -d 3 -p ack -e 40 -c 0 -i 966 -a 1 -x {1.1.3.0 0.0.3.0 475 ------- null} - -t 44.4005 -s 1 -d 3 -p ack -e 40 -c 0 -i 966 -a 1 -x {1.1.3.0 0.0.3.0 475 ------- null} h -t 44.4005 -s 1 -d 3 -p ack -e 40 -c 0 -i 966 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 44.4021 -s 28 -d 1 -p ack -e 40 -c 0 -i 967 -a 1 -x {1.1.3.0 0.0.3.0 476 ------- null} + -t 44.4021 -s 1 -d 3 -p ack -e 40 -c 0 -i 967 -a 1 -x {1.1.3.0 0.0.3.0 476 ------- null} - -t 44.4021 -s 1 -d 3 -p ack -e 40 -c 0 -i 967 -a 1 -x {1.1.3.0 0.0.3.0 476 ------- null} h -t 44.4021 -s 1 -d 3 -p ack -e 40 -c 0 -i 967 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 44.4037 -s 28 -d 1 -p ack -e 40 -c 0 -i 968 -a 1 -x {1.1.3.0 0.0.3.0 477 ------- null} + -t 44.4037 -s 1 -d 3 -p ack -e 40 -c 0 -i 968 -a 1 -x {1.1.3.0 0.0.3.0 477 ------- null} - -t 44.4037 -s 1 -d 3 -p ack -e 40 -c 0 -i 968 -a 1 -x {1.1.3.0 0.0.3.0 477 ------- null} h -t 44.4037 -s 1 -d 3 -p ack -e 40 -c 0 -i 968 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 44.4053 -s 28 -d 1 -p ack -e 40 -c 0 -i 969 -a 1 -x {1.1.3.0 0.0.3.0 478 ------- null} + -t 44.4053 -s 1 -d 3 -p ack -e 40 -c 0 -i 969 -a 1 -x {1.1.3.0 0.0.3.0 478 ------- null} - -t 44.4053 -s 1 -d 3 -p ack -e 40 -c 0 -i 969 -a 1 -x {1.1.3.0 0.0.3.0 478 ------- null} h -t 44.4053 -s 1 -d 3 -p ack -e 40 -c 0 -i 969 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 44.4069 -s 28 -d 1 -p ack -e 40 -c 0 -i 970 -a 1 -x {1.1.3.0 0.0.3.0 479 ------- null} + -t 44.4069 -s 1 -d 3 -p ack -e 40 -c 0 -i 970 -a 1 -x {1.1.3.0 0.0.3.0 479 ------- null} - -t 44.4069 -s 1 -d 3 -p ack -e 40 -c 0 -i 970 -a 1 -x {1.1.3.0 0.0.3.0 479 ------- null} h -t 44.4069 -s 1 -d 3 -p ack -e 40 -c 0 -i 970 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 44.4085 -s 28 -d 1 -p ack -e 40 -c 0 -i 971 -a 1 -x {1.1.3.0 0.0.3.0 480 ------- null} + -t 44.4085 -s 1 -d 3 -p ack -e 40 -c 0 -i 971 -a 1 -x {1.1.3.0 0.0.3.0 480 ------- null} - -t 44.4085 -s 1 -d 3 -p ack -e 40 -c 0 -i 971 -a 1 -x {1.1.3.0 0.0.3.0 480 ------- null} h -t 44.4085 -s 1 -d 3 -p ack -e 40 -c 0 -i 971 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 44.4101 -s 28 -d 1 -p ack -e 40 -c 0 -i 972 -a 1 -x {1.1.3.0 0.0.3.0 481 ------- null} + -t 44.4101 -s 1 -d 3 -p ack -e 40 -c 0 -i 972 -a 1 -x {1.1.3.0 0.0.3.0 481 ------- null} - -t 44.4101 -s 1 -d 3 -p ack -e 40 -c 0 -i 972 -a 1 -x {1.1.3.0 0.0.3.0 481 ------- null} h -t 44.4101 -s 1 -d 3 -p ack -e 40 -c 0 -i 972 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 44.4117 -s 28 -d 1 -p ack -e 40 -c 0 -i 973 -a 1 -x {1.1.3.0 0.0.3.0 482 ------- null} + -t 44.4117 -s 1 -d 3 -p ack -e 40 -c 0 -i 973 -a 1 -x {1.1.3.0 0.0.3.0 482 ------- null} - -t 44.4117 -s 1 -d 3 -p ack -e 40 -c 0 -i 973 -a 1 -x {1.1.3.0 0.0.3.0 482 ------- null} h -t 44.4117 -s 1 -d 3 -p ack -e 40 -c 0 -i 973 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 44.4133 -s 28 -d 1 -p ack -e 40 -c 0 -i 974 -a 1 -x {1.1.3.0 0.0.3.0 483 ------- null} + -t 44.4133 -s 1 -d 3 -p ack -e 40 -c 0 -i 974 -a 1 -x {1.1.3.0 0.0.3.0 483 ------- null} - -t 44.4133 -s 1 -d 3 -p ack -e 40 -c 0 -i 974 -a 1 -x {1.1.3.0 0.0.3.0 483 ------- null} h -t 44.4133 -s 1 -d 3 -p ack -e 40 -c 0 -i 974 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 44.4149 -s 28 -d 1 -p ack -e 40 -c 0 -i 975 -a 1 -x {1.1.3.0 0.0.3.0 484 ------- null} + -t 44.4149 -s 1 -d 3 -p ack -e 40 -c 0 -i 975 -a 1 -x {1.1.3.0 0.0.3.0 484 ------- null} - -t 44.4149 -s 1 -d 3 -p ack -e 40 -c 0 -i 975 -a 1 -x {1.1.3.0 0.0.3.0 484 ------- null} h -t 44.4149 -s 1 -d 3 -p ack -e 40 -c 0 -i 975 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 44.4165 -s 28 -d 1 -p ack -e 40 -c 0 -i 976 -a 1 -x {1.1.3.0 0.0.3.0 485 ------- null} + -t 44.4165 -s 1 -d 3 -p ack -e 40 -c 0 -i 976 -a 1 -x {1.1.3.0 0.0.3.0 485 ------- null} - -t 44.4165 -s 1 -d 3 -p ack -e 40 -c 0 -i 976 -a 1 -x {1.1.3.0 0.0.3.0 485 ------- null} h -t 44.4165 -s 1 -d 3 -p ack -e 40 -c 0 -i 976 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 44.4181 -s 28 -d 1 -p ack -e 40 -c 0 -i 977 -a 1 -x {1.1.3.0 0.0.3.0 486 ------- null} + -t 44.4181 -s 1 -d 3 -p ack -e 40 -c 0 -i 977 -a 1 -x {1.1.3.0 0.0.3.0 486 ------- null} - -t 44.4181 -s 1 -d 3 -p ack -e 40 -c 0 -i 977 -a 1 -x {1.1.3.0 0.0.3.0 486 ------- null} h -t 44.4181 -s 1 -d 3 -p ack -e 40 -c 0 -i 977 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 44.4197 -s 28 -d 1 -p ack -e 40 -c 0 -i 978 -a 1 -x {1.1.3.0 0.0.3.0 487 ------- null} + -t 44.4197 -s 1 -d 3 -p ack -e 40 -c 0 -i 978 -a 1 -x {1.1.3.0 0.0.3.0 487 ------- null} - -t 44.4197 -s 1 -d 3 -p ack -e 40 -c 0 -i 978 -a 1 -x {1.1.3.0 0.0.3.0 487 ------- null} h -t 44.4197 -s 1 -d 3 -p ack -e 40 -c 0 -i 978 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 44.4213 -s 28 -d 1 -p ack -e 40 -c 0 -i 979 -a 1 -x {1.1.3.0 0.0.3.0 488 ------- null} + -t 44.4213 -s 1 -d 3 -p ack -e 40 -c 0 -i 979 -a 1 -x {1.1.3.0 0.0.3.0 488 ------- null} - -t 44.4213 -s 1 -d 3 -p ack -e 40 -c 0 -i 979 -a 1 -x {1.1.3.0 0.0.3.0 488 ------- null} h -t 44.4213 -s 1 -d 3 -p ack -e 40 -c 0 -i 979 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 44.4229 -s 28 -d 1 -p ack -e 40 -c 0 -i 980 -a 1 -x {1.1.3.0 0.0.3.0 489 ------- null} + -t 44.4229 -s 1 -d 3 -p ack -e 40 -c 0 -i 980 -a 1 -x {1.1.3.0 0.0.3.0 489 ------- null} - -t 44.4229 -s 1 -d 3 -p ack -e 40 -c 0 -i 980 -a 1 -x {1.1.3.0 0.0.3.0 489 ------- null} h -t 44.4229 -s 1 -d 3 -p ack -e 40 -c 0 -i 980 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 44.4245 -s 28 -d 1 -p ack -e 40 -c 0 -i 981 -a 1 -x {1.1.3.0 0.0.3.0 490 ------- null} + -t 44.4245 -s 1 -d 3 -p ack -e 40 -c 0 -i 981 -a 1 -x {1.1.3.0 0.0.3.0 490 ------- null} - -t 44.4245 -s 1 -d 3 -p ack -e 40 -c 0 -i 981 -a 1 -x {1.1.3.0 0.0.3.0 490 ------- null} h -t 44.4245 -s 1 -d 3 -p ack -e 40 -c 0 -i 981 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 44.5342 -s 1 -d 3 -p ack -e 40 -c 0 -i 962 -a 1 -x {1.1.3.0 0.0.3.0 471 ------- null} + -t 44.5342 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 982 -a 0 -x {0.0.3.0 1.1.3.0 491 ------- null} - -t 44.5342 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 982 -a 0 -x {0.0.3.0 1.1.3.0 491 ------- null} h -t 44.5342 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 982 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 44.5358 -s 1 -d 3 -p ack -e 40 -c 0 -i 963 -a 1 -x {1.1.3.0 0.0.3.0 472 ------- null} + -t 44.5358 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {0.0.3.0 1.1.3.0 492 ------- null} - -t 44.5358 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {0.0.3.0 1.1.3.0 492 ------- null} h -t 44.5358 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 44.5374 -s 1 -d 3 -p ack -e 40 -c 0 -i 964 -a 1 -x {1.1.3.0 0.0.3.0 473 ------- null} + -t 44.5374 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 984 -a 0 -x {0.0.3.0 1.1.3.0 493 ------- null} - -t 44.5374 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 984 -a 0 -x {0.0.3.0 1.1.3.0 493 ------- null} h -t 44.5374 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 984 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 44.539 -s 1 -d 3 -p ack -e 40 -c 0 -i 965 -a 1 -x {1.1.3.0 0.0.3.0 474 ------- null} + -t 44.539 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {0.0.3.0 1.1.3.0 494 ------- null} - -t 44.539 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {0.0.3.0 1.1.3.0 494 ------- null} h -t 44.539 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 44.5406 -s 1 -d 3 -p ack -e 40 -c 0 -i 966 -a 1 -x {1.1.3.0 0.0.3.0 475 ------- null} + -t 44.5406 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 986 -a 0 -x {0.0.3.0 1.1.3.0 495 ------- null} - -t 44.5406 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 986 -a 0 -x {0.0.3.0 1.1.3.0 495 ------- null} h -t 44.5406 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 986 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 44.5422 -s 1 -d 3 -p ack -e 40 -c 0 -i 967 -a 1 -x {1.1.3.0 0.0.3.0 476 ------- null} + -t 44.5422 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {0.0.3.0 1.1.3.0 496 ------- null} - -t 44.5422 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {0.0.3.0 1.1.3.0 496 ------- null} h -t 44.5422 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 44.5438 -s 1 -d 3 -p ack -e 40 -c 0 -i 968 -a 1 -x {1.1.3.0 0.0.3.0 477 ------- null} + -t 44.5438 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 988 -a 0 -x {0.0.3.0 1.1.3.0 497 ------- null} - -t 44.5438 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 988 -a 0 -x {0.0.3.0 1.1.3.0 497 ------- null} h -t 44.5438 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 988 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 44.5454 -s 1 -d 3 -p ack -e 40 -c 0 -i 969 -a 1 -x {1.1.3.0 0.0.3.0 478 ------- null} + -t 44.5454 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {0.0.3.0 1.1.3.0 498 ------- null} - -t 44.5454 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {0.0.3.0 1.1.3.0 498 ------- null} h -t 44.5454 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 44.547 -s 1 -d 3 -p ack -e 40 -c 0 -i 970 -a 1 -x {1.1.3.0 0.0.3.0 479 ------- null} + -t 44.547 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 990 -a 0 -x {0.0.3.0 1.1.3.0 499 ------- null} - -t 44.547 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 990 -a 0 -x {0.0.3.0 1.1.3.0 499 ------- null} h -t 44.547 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 990 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 44.5486 -s 1 -d 3 -p ack -e 40 -c 0 -i 971 -a 1 -x {1.1.3.0 0.0.3.0 480 ------- null} + -t 44.5486 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {0.0.3.0 1.1.3.0 500 ------- null} - -t 44.5486 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {0.0.3.0 1.1.3.0 500 ------- null} h -t 44.5486 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 44.5502 -s 1 -d 3 -p ack -e 40 -c 0 -i 972 -a 1 -x {1.1.3.0 0.0.3.0 481 ------- null} + -t 44.5502 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 992 -a 0 -x {0.0.3.0 1.1.3.0 501 ------- null} - -t 44.5502 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 992 -a 0 -x {0.0.3.0 1.1.3.0 501 ------- null} h -t 44.5502 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 992 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 44.5518 -s 1 -d 3 -p ack -e 40 -c 0 -i 973 -a 1 -x {1.1.3.0 0.0.3.0 482 ------- null} + -t 44.5518 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {0.0.3.0 1.1.3.0 502 ------- null} - -t 44.5518 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {0.0.3.0 1.1.3.0 502 ------- null} h -t 44.5518 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 44.5534 -s 1 -d 3 -p ack -e 40 -c 0 -i 974 -a 1 -x {1.1.3.0 0.0.3.0 483 ------- null} + -t 44.5534 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 994 -a 0 -x {0.0.3.0 1.1.3.0 503 ------- null} - -t 44.5534 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 994 -a 0 -x {0.0.3.0 1.1.3.0 503 ------- null} h -t 44.5534 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 994 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 44.555 -s 1 -d 3 -p ack -e 40 -c 0 -i 975 -a 1 -x {1.1.3.0 0.0.3.0 484 ------- null} + -t 44.555 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {0.0.3.0 1.1.3.0 504 ------- null} - -t 44.555 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {0.0.3.0 1.1.3.0 504 ------- null} h -t 44.555 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 44.5566 -s 1 -d 3 -p ack -e 40 -c 0 -i 976 -a 1 -x {1.1.3.0 0.0.3.0 485 ------- null} + -t 44.5566 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 996 -a 0 -x {0.0.3.0 1.1.3.0 505 ------- null} - -t 44.5566 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 996 -a 0 -x {0.0.3.0 1.1.3.0 505 ------- null} h -t 44.5566 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 996 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 44.5582 -s 1 -d 3 -p ack -e 40 -c 0 -i 977 -a 1 -x {1.1.3.0 0.0.3.0 486 ------- null} + -t 44.5582 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {0.0.3.0 1.1.3.0 506 ------- null} - -t 44.5582 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {0.0.3.0 1.1.3.0 506 ------- null} h -t 44.5582 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 44.5598 -s 1 -d 3 -p ack -e 40 -c 0 -i 978 -a 1 -x {1.1.3.0 0.0.3.0 487 ------- null} + -t 44.5598 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 998 -a 0 -x {0.0.3.0 1.1.3.0 507 ------- null} - -t 44.5598 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 998 -a 0 -x {0.0.3.0 1.1.3.0 507 ------- null} h -t 44.5598 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 998 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 44.5614 -s 1 -d 3 -p ack -e 40 -c 0 -i 979 -a 1 -x {1.1.3.0 0.0.3.0 488 ------- null} + -t 44.5614 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {0.0.3.0 1.1.3.0 508 ------- null} - -t 44.5614 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {0.0.3.0 1.1.3.0 508 ------- null} h -t 44.5614 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 44.563 -s 1 -d 3 -p ack -e 40 -c 0 -i 980 -a 1 -x {1.1.3.0 0.0.3.0 489 ------- null} + -t 44.563 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1000 -a 0 -x {0.0.3.0 1.1.3.0 509 ------- null} - -t 44.563 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1000 -a 0 -x {0.0.3.0 1.1.3.0 509 ------- null} h -t 44.563 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1000 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 44.5646 -s 1 -d 3 -p ack -e 40 -c 0 -i 981 -a 1 -x {1.1.3.0 0.0.3.0 490 ------- null} + -t 44.5646 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {0.0.3.0 1.1.3.0 510 ------- null} - -t 44.5646 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {0.0.3.0 1.1.3.0 510 ------- null} h -t 44.5646 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 44.6958 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 982 -a 0 -x {0.0.3.0 1.1.3.0 491 ------- null} + -t 44.6958 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 982 -a 0 -x {0.0.3.0 1.1.3.0 491 ------- null} - -t 44.6958 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 982 -a 0 -x {0.0.3.0 1.1.3.0 491 ------- null} h -t 44.6958 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 982 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 44.6974 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {0.0.3.0 1.1.3.0 492 ------- null} + -t 44.6974 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {0.0.3.0 1.1.3.0 492 ------- null} - -t 44.6974 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {0.0.3.0 1.1.3.0 492 ------- null} h -t 44.6974 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 44.699 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 984 -a 0 -x {0.0.3.0 1.1.3.0 493 ------- null} + -t 44.699 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 984 -a 0 -x {0.0.3.0 1.1.3.0 493 ------- null} - -t 44.699 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 984 -a 0 -x {0.0.3.0 1.1.3.0 493 ------- null} h -t 44.699 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 984 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 44.7006 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {0.0.3.0 1.1.3.0 494 ------- null} + -t 44.7006 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {0.0.3.0 1.1.3.0 494 ------- null} - -t 44.7006 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {0.0.3.0 1.1.3.0 494 ------- null} h -t 44.7006 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 44.7022 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 986 -a 0 -x {0.0.3.0 1.1.3.0 495 ------- null} + -t 44.7022 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 986 -a 0 -x {0.0.3.0 1.1.3.0 495 ------- null} - -t 44.7022 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 986 -a 0 -x {0.0.3.0 1.1.3.0 495 ------- null} h -t 44.7022 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 986 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 44.7038 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {0.0.3.0 1.1.3.0 496 ------- null} + -t 44.7038 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {0.0.3.0 1.1.3.0 496 ------- null} - -t 44.7038 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {0.0.3.0 1.1.3.0 496 ------- null} h -t 44.7038 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 44.7054 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 988 -a 0 -x {0.0.3.0 1.1.3.0 497 ------- null} + -t 44.7054 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 988 -a 0 -x {0.0.3.0 1.1.3.0 497 ------- null} - -t 44.7054 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 988 -a 0 -x {0.0.3.0 1.1.3.0 497 ------- null} h -t 44.7054 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 988 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 44.707 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {0.0.3.0 1.1.3.0 498 ------- null} + -t 44.707 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {0.0.3.0 1.1.3.0 498 ------- null} - -t 44.707 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {0.0.3.0 1.1.3.0 498 ------- null} h -t 44.707 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 44.7086 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 990 -a 0 -x {0.0.3.0 1.1.3.0 499 ------- null} + -t 44.7086 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 990 -a 0 -x {0.0.3.0 1.1.3.0 499 ------- null} - -t 44.7086 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 990 -a 0 -x {0.0.3.0 1.1.3.0 499 ------- null} h -t 44.7086 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 990 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 44.7102 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {0.0.3.0 1.1.3.0 500 ------- null} + -t 44.7102 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {0.0.3.0 1.1.3.0 500 ------- null} - -t 44.7102 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {0.0.3.0 1.1.3.0 500 ------- null} h -t 44.7102 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 44.7118 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 992 -a 0 -x {0.0.3.0 1.1.3.0 501 ------- null} + -t 44.7118 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 992 -a 0 -x {0.0.3.0 1.1.3.0 501 ------- null} - -t 44.7118 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 992 -a 0 -x {0.0.3.0 1.1.3.0 501 ------- null} h -t 44.7118 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 992 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 44.7134 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {0.0.3.0 1.1.3.0 502 ------- null} + -t 44.7134 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {0.0.3.0 1.1.3.0 502 ------- null} - -t 44.7134 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {0.0.3.0 1.1.3.0 502 ------- null} h -t 44.7134 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 44.715 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 994 -a 0 -x {0.0.3.0 1.1.3.0 503 ------- null} + -t 44.715 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 994 -a 0 -x {0.0.3.0 1.1.3.0 503 ------- null} - -t 44.715 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 994 -a 0 -x {0.0.3.0 1.1.3.0 503 ------- null} h -t 44.715 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 994 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 44.7166 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {0.0.3.0 1.1.3.0 504 ------- null} + -t 44.7166 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {0.0.3.0 1.1.3.0 504 ------- null} - -t 44.7166 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {0.0.3.0 1.1.3.0 504 ------- null} h -t 44.7166 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 44.7182 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 996 -a 0 -x {0.0.3.0 1.1.3.0 505 ------- null} + -t 44.7182 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 996 -a 0 -x {0.0.3.0 1.1.3.0 505 ------- null} - -t 44.7182 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 996 -a 0 -x {0.0.3.0 1.1.3.0 505 ------- null} h -t 44.7182 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 996 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 44.7198 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {0.0.3.0 1.1.3.0 506 ------- null} + -t 44.7198 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {0.0.3.0 1.1.3.0 506 ------- null} - -t 44.7198 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {0.0.3.0 1.1.3.0 506 ------- null} h -t 44.7198 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 44.7214 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 998 -a 0 -x {0.0.3.0 1.1.3.0 507 ------- null} + -t 44.7214 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 998 -a 0 -x {0.0.3.0 1.1.3.0 507 ------- null} - -t 44.7214 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 998 -a 0 -x {0.0.3.0 1.1.3.0 507 ------- null} h -t 44.7214 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 998 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 44.723 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {0.0.3.0 1.1.3.0 508 ------- null} + -t 44.723 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {0.0.3.0 1.1.3.0 508 ------- null} - -t 44.723 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {0.0.3.0 1.1.3.0 508 ------- null} h -t 44.723 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 44.7246 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1000 -a 0 -x {0.0.3.0 1.1.3.0 509 ------- null} + -t 44.7246 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1000 -a 0 -x {0.0.3.0 1.1.3.0 509 ------- null} - -t 44.7246 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1000 -a 0 -x {0.0.3.0 1.1.3.0 509 ------- null} h -t 44.7246 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1000 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 44.7262 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {0.0.3.0 1.1.3.0 510 ------- null} + -t 44.7262 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {0.0.3.0 1.1.3.0 510 ------- null} - -t 44.7262 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {0.0.3.0 1.1.3.0 510 ------- null} h -t 44.7262 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 44.9974 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 982 -a 0 -x {0.0.3.0 1.1.3.0 491 ------- null} + -t 44.9974 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 982 -a 0 -x {0.0.3.0 1.1.3.0 491 ------- null} - -t 44.9974 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 982 -a 0 -x {0.0.3.0 1.1.3.0 491 ------- null} h -t 44.9974 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 982 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 44.999 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {0.0.3.0 1.1.3.0 492 ------- null} + -t 44.999 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {0.0.3.0 1.1.3.0 492 ------- null} - -t 44.999 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {0.0.3.0 1.1.3.0 492 ------- null} h -t 44.999 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.0006 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 984 -a 0 -x {0.0.3.0 1.1.3.0 493 ------- null} + -t 45.0006 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 984 -a 0 -x {0.0.3.0 1.1.3.0 493 ------- null} - -t 45.0006 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 984 -a 0 -x {0.0.3.0 1.1.3.0 493 ------- null} h -t 45.0006 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 984 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.0022 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {0.0.3.0 1.1.3.0 494 ------- null} + -t 45.0022 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {0.0.3.0 1.1.3.0 494 ------- null} - -t 45.0022 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {0.0.3.0 1.1.3.0 494 ------- null} h -t 45.0022 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.0038 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 986 -a 0 -x {0.0.3.0 1.1.3.0 495 ------- null} + -t 45.0038 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 986 -a 0 -x {0.0.3.0 1.1.3.0 495 ------- null} - -t 45.0038 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 986 -a 0 -x {0.0.3.0 1.1.3.0 495 ------- null} h -t 45.0038 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 986 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.0054 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {0.0.3.0 1.1.3.0 496 ------- null} + -t 45.0054 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {0.0.3.0 1.1.3.0 496 ------- null} - -t 45.0054 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {0.0.3.0 1.1.3.0 496 ------- null} h -t 45.0054 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.007 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 988 -a 0 -x {0.0.3.0 1.1.3.0 497 ------- null} + -t 45.007 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 988 -a 0 -x {0.0.3.0 1.1.3.0 497 ------- null} - -t 45.007 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 988 -a 0 -x {0.0.3.0 1.1.3.0 497 ------- null} h -t 45.007 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 988 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.0086 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {0.0.3.0 1.1.3.0 498 ------- null} + -t 45.0086 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {0.0.3.0 1.1.3.0 498 ------- null} - -t 45.0086 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {0.0.3.0 1.1.3.0 498 ------- null} h -t 45.0086 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.0102 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 990 -a 0 -x {0.0.3.0 1.1.3.0 499 ------- null} + -t 45.0102 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 990 -a 0 -x {0.0.3.0 1.1.3.0 499 ------- null} - -t 45.0102 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 990 -a 0 -x {0.0.3.0 1.1.3.0 499 ------- null} h -t 45.0102 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 990 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.0118 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {0.0.3.0 1.1.3.0 500 ------- null} + -t 45.0118 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {0.0.3.0 1.1.3.0 500 ------- null} - -t 45.0118 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {0.0.3.0 1.1.3.0 500 ------- null} h -t 45.0118 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.0134 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 992 -a 0 -x {0.0.3.0 1.1.3.0 501 ------- null} + -t 45.0134 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 992 -a 0 -x {0.0.3.0 1.1.3.0 501 ------- null} - -t 45.0134 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 992 -a 0 -x {0.0.3.0 1.1.3.0 501 ------- null} h -t 45.0134 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 992 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.015 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {0.0.3.0 1.1.3.0 502 ------- null} + -t 45.015 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {0.0.3.0 1.1.3.0 502 ------- null} - -t 45.015 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {0.0.3.0 1.1.3.0 502 ------- null} h -t 45.015 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.0166 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 994 -a 0 -x {0.0.3.0 1.1.3.0 503 ------- null} + -t 45.0166 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 994 -a 0 -x {0.0.3.0 1.1.3.0 503 ------- null} - -t 45.0166 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 994 -a 0 -x {0.0.3.0 1.1.3.0 503 ------- null} h -t 45.0166 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 994 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.0182 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {0.0.3.0 1.1.3.0 504 ------- null} + -t 45.0182 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {0.0.3.0 1.1.3.0 504 ------- null} - -t 45.0182 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {0.0.3.0 1.1.3.0 504 ------- null} h -t 45.0182 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.0198 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 996 -a 0 -x {0.0.3.0 1.1.3.0 505 ------- null} + -t 45.0198 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 996 -a 0 -x {0.0.3.0 1.1.3.0 505 ------- null} - -t 45.0198 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 996 -a 0 -x {0.0.3.0 1.1.3.0 505 ------- null} h -t 45.0198 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 996 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.0214 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {0.0.3.0 1.1.3.0 506 ------- null} + -t 45.0214 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {0.0.3.0 1.1.3.0 506 ------- null} - -t 45.0214 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {0.0.3.0 1.1.3.0 506 ------- null} h -t 45.0214 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.023 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 998 -a 0 -x {0.0.3.0 1.1.3.0 507 ------- null} + -t 45.023 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 998 -a 0 -x {0.0.3.0 1.1.3.0 507 ------- null} - -t 45.023 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 998 -a 0 -x {0.0.3.0 1.1.3.0 507 ------- null} h -t 45.023 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 998 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.0246 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {0.0.3.0 1.1.3.0 508 ------- null} + -t 45.0246 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {0.0.3.0 1.1.3.0 508 ------- null} - -t 45.0246 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {0.0.3.0 1.1.3.0 508 ------- null} h -t 45.0246 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.0262 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1000 -a 0 -x {0.0.3.0 1.1.3.0 509 ------- null} + -t 45.0262 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1000 -a 0 -x {0.0.3.0 1.1.3.0 509 ------- null} - -t 45.0262 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1000 -a 0 -x {0.0.3.0 1.1.3.0 509 ------- null} h -t 45.0262 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1000 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.0278 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {0.0.3.0 1.1.3.0 510 ------- null} + -t 45.0278 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {0.0.3.0 1.1.3.0 510 ------- null} - -t 45.0278 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {0.0.3.0 1.1.3.0 510 ------- null} h -t 45.0278 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.099 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 982 -a 0 -x {0.0.3.0 1.1.3.0 491 ------- null} + -t 45.099 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 982 -a 0 -x {0.0.3.0 1.1.3.0 491 ------- null} - -t 45.099 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 982 -a 0 -x {0.0.3.0 1.1.3.0 491 ------- null} h -t 45.099 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 982 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.1006 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {0.0.3.0 1.1.3.0 492 ------- null} + -t 45.1006 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {0.0.3.0 1.1.3.0 492 ------- null} - -t 45.1006 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {0.0.3.0 1.1.3.0 492 ------- null} h -t 45.1006 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.1022 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 984 -a 0 -x {0.0.3.0 1.1.3.0 493 ------- null} + -t 45.1022 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 984 -a 0 -x {0.0.3.0 1.1.3.0 493 ------- null} - -t 45.1022 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 984 -a 0 -x {0.0.3.0 1.1.3.0 493 ------- null} h -t 45.1022 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 984 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.1038 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {0.0.3.0 1.1.3.0 494 ------- null} + -t 45.1038 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {0.0.3.0 1.1.3.0 494 ------- null} - -t 45.1038 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {0.0.3.0 1.1.3.0 494 ------- null} h -t 45.1038 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.1054 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 986 -a 0 -x {0.0.3.0 1.1.3.0 495 ------- null} + -t 45.1054 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 986 -a 0 -x {0.0.3.0 1.1.3.0 495 ------- null} - -t 45.1054 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 986 -a 0 -x {0.0.3.0 1.1.3.0 495 ------- null} h -t 45.1054 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 986 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.107 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {0.0.3.0 1.1.3.0 496 ------- null} + -t 45.107 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {0.0.3.0 1.1.3.0 496 ------- null} - -t 45.107 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {0.0.3.0 1.1.3.0 496 ------- null} h -t 45.107 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.1086 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 988 -a 0 -x {0.0.3.0 1.1.3.0 497 ------- null} + -t 45.1086 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 988 -a 0 -x {0.0.3.0 1.1.3.0 497 ------- null} - -t 45.1086 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 988 -a 0 -x {0.0.3.0 1.1.3.0 497 ------- null} h -t 45.1086 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 988 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.1102 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {0.0.3.0 1.1.3.0 498 ------- null} + -t 45.1102 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {0.0.3.0 1.1.3.0 498 ------- null} - -t 45.1102 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {0.0.3.0 1.1.3.0 498 ------- null} h -t 45.1102 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.1118 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 990 -a 0 -x {0.0.3.0 1.1.3.0 499 ------- null} + -t 45.1118 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 990 -a 0 -x {0.0.3.0 1.1.3.0 499 ------- null} - -t 45.1118 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 990 -a 0 -x {0.0.3.0 1.1.3.0 499 ------- null} h -t 45.1118 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 990 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.1134 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {0.0.3.0 1.1.3.0 500 ------- null} + -t 45.1134 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {0.0.3.0 1.1.3.0 500 ------- null} - -t 45.1134 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {0.0.3.0 1.1.3.0 500 ------- null} h -t 45.1134 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.115 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 992 -a 0 -x {0.0.3.0 1.1.3.0 501 ------- null} + -t 45.115 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 992 -a 0 -x {0.0.3.0 1.1.3.0 501 ------- null} - -t 45.115 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 992 -a 0 -x {0.0.3.0 1.1.3.0 501 ------- null} h -t 45.115 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 992 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.1166 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {0.0.3.0 1.1.3.0 502 ------- null} + -t 45.1166 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {0.0.3.0 1.1.3.0 502 ------- null} - -t 45.1166 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {0.0.3.0 1.1.3.0 502 ------- null} h -t 45.1166 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.1182 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 994 -a 0 -x {0.0.3.0 1.1.3.0 503 ------- null} + -t 45.1182 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 994 -a 0 -x {0.0.3.0 1.1.3.0 503 ------- null} - -t 45.1182 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 994 -a 0 -x {0.0.3.0 1.1.3.0 503 ------- null} h -t 45.1182 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 994 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.1198 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {0.0.3.0 1.1.3.0 504 ------- null} + -t 45.1198 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {0.0.3.0 1.1.3.0 504 ------- null} - -t 45.1198 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {0.0.3.0 1.1.3.0 504 ------- null} h -t 45.1198 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.1214 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 996 -a 0 -x {0.0.3.0 1.1.3.0 505 ------- null} + -t 45.1214 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 996 -a 0 -x {0.0.3.0 1.1.3.0 505 ------- null} - -t 45.1214 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 996 -a 0 -x {0.0.3.0 1.1.3.0 505 ------- null} h -t 45.1214 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 996 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.123 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {0.0.3.0 1.1.3.0 506 ------- null} + -t 45.123 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {0.0.3.0 1.1.3.0 506 ------- null} - -t 45.123 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {0.0.3.0 1.1.3.0 506 ------- null} h -t 45.123 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.1246 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 998 -a 0 -x {0.0.3.0 1.1.3.0 507 ------- null} + -t 45.1246 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 998 -a 0 -x {0.0.3.0 1.1.3.0 507 ------- null} - -t 45.1246 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 998 -a 0 -x {0.0.3.0 1.1.3.0 507 ------- null} h -t 45.1246 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 998 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.1262 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {0.0.3.0 1.1.3.0 508 ------- null} + -t 45.1262 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {0.0.3.0 1.1.3.0 508 ------- null} - -t 45.1262 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {0.0.3.0 1.1.3.0 508 ------- null} h -t 45.1262 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.1278 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1000 -a 0 -x {0.0.3.0 1.1.3.0 509 ------- null} + -t 45.1278 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1000 -a 0 -x {0.0.3.0 1.1.3.0 509 ------- null} - -t 45.1278 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1000 -a 0 -x {0.0.3.0 1.1.3.0 509 ------- null} h -t 45.1278 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1000 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.1294 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {0.0.3.0 1.1.3.0 510 ------- null} + -t 45.1294 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {0.0.3.0 1.1.3.0 510 ------- null} - -t 45.1294 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {0.0.3.0 1.1.3.0 510 ------- null} h -t 45.1294 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.1806 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 982 -a 0 -x {0.0.3.0 1.1.3.0 491 ------- null} + -t 45.1806 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 982 -a 0 -x {0.0.3.0 1.1.3.0 491 ------- null} - -t 45.1806 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 982 -a 0 -x {0.0.3.0 1.1.3.0 491 ------- null} h -t 45.1806 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 982 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.1822 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {0.0.3.0 1.1.3.0 492 ------- null} + -t 45.1822 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {0.0.3.0 1.1.3.0 492 ------- null} - -t 45.1822 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {0.0.3.0 1.1.3.0 492 ------- null} h -t 45.1822 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.1838 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 984 -a 0 -x {0.0.3.0 1.1.3.0 493 ------- null} + -t 45.1838 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 984 -a 0 -x {0.0.3.0 1.1.3.0 493 ------- null} - -t 45.1838 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 984 -a 0 -x {0.0.3.0 1.1.3.0 493 ------- null} h -t 45.1838 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 984 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.1854 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {0.0.3.0 1.1.3.0 494 ------- null} + -t 45.1854 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {0.0.3.0 1.1.3.0 494 ------- null} - -t 45.1854 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {0.0.3.0 1.1.3.0 494 ------- null} h -t 45.1854 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.187 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 986 -a 0 -x {0.0.3.0 1.1.3.0 495 ------- null} + -t 45.187 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 986 -a 0 -x {0.0.3.0 1.1.3.0 495 ------- null} - -t 45.187 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 986 -a 0 -x {0.0.3.0 1.1.3.0 495 ------- null} h -t 45.187 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 986 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.1886 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {0.0.3.0 1.1.3.0 496 ------- null} + -t 45.1886 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {0.0.3.0 1.1.3.0 496 ------- null} - -t 45.1886 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {0.0.3.0 1.1.3.0 496 ------- null} h -t 45.1886 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.1902 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 988 -a 0 -x {0.0.3.0 1.1.3.0 497 ------- null} + -t 45.1902 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 988 -a 0 -x {0.0.3.0 1.1.3.0 497 ------- null} - -t 45.1902 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 988 -a 0 -x {0.0.3.0 1.1.3.0 497 ------- null} h -t 45.1902 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 988 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.1918 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {0.0.3.0 1.1.3.0 498 ------- null} + -t 45.1918 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {0.0.3.0 1.1.3.0 498 ------- null} - -t 45.1918 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {0.0.3.0 1.1.3.0 498 ------- null} h -t 45.1918 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.1934 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 990 -a 0 -x {0.0.3.0 1.1.3.0 499 ------- null} + -t 45.1934 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 990 -a 0 -x {0.0.3.0 1.1.3.0 499 ------- null} - -t 45.1934 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 990 -a 0 -x {0.0.3.0 1.1.3.0 499 ------- null} h -t 45.1934 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 990 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.195 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {0.0.3.0 1.1.3.0 500 ------- null} + -t 45.195 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {0.0.3.0 1.1.3.0 500 ------- null} - -t 45.195 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {0.0.3.0 1.1.3.0 500 ------- null} h -t 45.195 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.1966 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 992 -a 0 -x {0.0.3.0 1.1.3.0 501 ------- null} + -t 45.1966 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 992 -a 0 -x {0.0.3.0 1.1.3.0 501 ------- null} - -t 45.1966 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 992 -a 0 -x {0.0.3.0 1.1.3.0 501 ------- null} h -t 45.1966 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 992 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.1982 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {0.0.3.0 1.1.3.0 502 ------- null} + -t 45.1982 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {0.0.3.0 1.1.3.0 502 ------- null} - -t 45.1982 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {0.0.3.0 1.1.3.0 502 ------- null} h -t 45.1982 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.1998 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 994 -a 0 -x {0.0.3.0 1.1.3.0 503 ------- null} + -t 45.1998 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 994 -a 0 -x {0.0.3.0 1.1.3.0 503 ------- null} - -t 45.1998 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 994 -a 0 -x {0.0.3.0 1.1.3.0 503 ------- null} h -t 45.1998 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 994 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.2014 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {0.0.3.0 1.1.3.0 504 ------- null} + -t 45.2014 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {0.0.3.0 1.1.3.0 504 ------- null} - -t 45.2014 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {0.0.3.0 1.1.3.0 504 ------- null} h -t 45.2014 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.203 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 996 -a 0 -x {0.0.3.0 1.1.3.0 505 ------- null} + -t 45.203 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 996 -a 0 -x {0.0.3.0 1.1.3.0 505 ------- null} - -t 45.203 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 996 -a 0 -x {0.0.3.0 1.1.3.0 505 ------- null} h -t 45.203 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 996 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.2046 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {0.0.3.0 1.1.3.0 506 ------- null} + -t 45.2046 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {0.0.3.0 1.1.3.0 506 ------- null} - -t 45.2046 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {0.0.3.0 1.1.3.0 506 ------- null} h -t 45.2046 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.2062 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 998 -a 0 -x {0.0.3.0 1.1.3.0 507 ------- null} + -t 45.2062 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 998 -a 0 -x {0.0.3.0 1.1.3.0 507 ------- null} - -t 45.2062 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 998 -a 0 -x {0.0.3.0 1.1.3.0 507 ------- null} h -t 45.2062 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 998 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.2078 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {0.0.3.0 1.1.3.0 508 ------- null} + -t 45.2078 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {0.0.3.0 1.1.3.0 508 ------- null} - -t 45.2078 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {0.0.3.0 1.1.3.0 508 ------- null} h -t 45.2078 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.2094 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1000 -a 0 -x {0.0.3.0 1.1.3.0 509 ------- null} + -t 45.2094 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1000 -a 0 -x {0.0.3.0 1.1.3.0 509 ------- null} - -t 45.2094 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1000 -a 0 -x {0.0.3.0 1.1.3.0 509 ------- null} h -t 45.2094 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1000 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.211 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {0.0.3.0 1.1.3.0 510 ------- null} + -t 45.211 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {0.0.3.0 1.1.3.0 510 ------- null} - -t 45.211 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {0.0.3.0 1.1.3.0 510 ------- null} h -t 45.211 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.2622 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 982 -a 0 -x {0.0.3.0 1.1.3.0 491 ------- null} + -t 45.2622 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 982 -a 0 -x {0.0.3.0 1.1.3.0 491 ------- null} - -t 45.2622 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 982 -a 0 -x {0.0.3.0 1.1.3.0 491 ------- null} h -t 45.2622 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 982 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.2638 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {0.0.3.0 1.1.3.0 492 ------- null} + -t 45.2638 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {0.0.3.0 1.1.3.0 492 ------- null} - -t 45.2638 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {0.0.3.0 1.1.3.0 492 ------- null} h -t 45.2638 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.2654 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 984 -a 0 -x {0.0.3.0 1.1.3.0 493 ------- null} + -t 45.2654 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 984 -a 0 -x {0.0.3.0 1.1.3.0 493 ------- null} - -t 45.2654 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 984 -a 0 -x {0.0.3.0 1.1.3.0 493 ------- null} h -t 45.2654 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 984 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.267 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {0.0.3.0 1.1.3.0 494 ------- null} + -t 45.267 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {0.0.3.0 1.1.3.0 494 ------- null} - -t 45.267 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {0.0.3.0 1.1.3.0 494 ------- null} h -t 45.267 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.2686 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 986 -a 0 -x {0.0.3.0 1.1.3.0 495 ------- null} + -t 45.2686 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 986 -a 0 -x {0.0.3.0 1.1.3.0 495 ------- null} - -t 45.2686 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 986 -a 0 -x {0.0.3.0 1.1.3.0 495 ------- null} h -t 45.2686 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 986 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.2702 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {0.0.3.0 1.1.3.0 496 ------- null} + -t 45.2702 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {0.0.3.0 1.1.3.0 496 ------- null} - -t 45.2702 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {0.0.3.0 1.1.3.0 496 ------- null} h -t 45.2702 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.2718 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 988 -a 0 -x {0.0.3.0 1.1.3.0 497 ------- null} + -t 45.2718 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 988 -a 0 -x {0.0.3.0 1.1.3.0 497 ------- null} - -t 45.2718 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 988 -a 0 -x {0.0.3.0 1.1.3.0 497 ------- null} h -t 45.2718 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 988 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.2734 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {0.0.3.0 1.1.3.0 498 ------- null} + -t 45.2734 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {0.0.3.0 1.1.3.0 498 ------- null} - -t 45.2734 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {0.0.3.0 1.1.3.0 498 ------- null} h -t 45.2734 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.275 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 990 -a 0 -x {0.0.3.0 1.1.3.0 499 ------- null} + -t 45.275 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 990 -a 0 -x {0.0.3.0 1.1.3.0 499 ------- null} - -t 45.275 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 990 -a 0 -x {0.0.3.0 1.1.3.0 499 ------- null} h -t 45.275 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 990 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.2766 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {0.0.3.0 1.1.3.0 500 ------- null} + -t 45.2766 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {0.0.3.0 1.1.3.0 500 ------- null} - -t 45.2766 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {0.0.3.0 1.1.3.0 500 ------- null} h -t 45.2766 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.2782 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 992 -a 0 -x {0.0.3.0 1.1.3.0 501 ------- null} + -t 45.2782 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 992 -a 0 -x {0.0.3.0 1.1.3.0 501 ------- null} - -t 45.2782 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 992 -a 0 -x {0.0.3.0 1.1.3.0 501 ------- null} h -t 45.2782 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 992 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.2798 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {0.0.3.0 1.1.3.0 502 ------- null} + -t 45.2798 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {0.0.3.0 1.1.3.0 502 ------- null} - -t 45.2798 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {0.0.3.0 1.1.3.0 502 ------- null} h -t 45.2798 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.2814 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 994 -a 0 -x {0.0.3.0 1.1.3.0 503 ------- null} + -t 45.2814 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 994 -a 0 -x {0.0.3.0 1.1.3.0 503 ------- null} - -t 45.2814 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 994 -a 0 -x {0.0.3.0 1.1.3.0 503 ------- null} h -t 45.2814 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 994 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.283 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {0.0.3.0 1.1.3.0 504 ------- null} + -t 45.283 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {0.0.3.0 1.1.3.0 504 ------- null} - -t 45.283 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {0.0.3.0 1.1.3.0 504 ------- null} h -t 45.283 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.2846 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 996 -a 0 -x {0.0.3.0 1.1.3.0 505 ------- null} + -t 45.2846 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 996 -a 0 -x {0.0.3.0 1.1.3.0 505 ------- null} - -t 45.2846 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 996 -a 0 -x {0.0.3.0 1.1.3.0 505 ------- null} h -t 45.2846 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 996 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.2862 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {0.0.3.0 1.1.3.0 506 ------- null} + -t 45.2862 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {0.0.3.0 1.1.3.0 506 ------- null} - -t 45.2862 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {0.0.3.0 1.1.3.0 506 ------- null} h -t 45.2862 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.2878 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 998 -a 0 -x {0.0.3.0 1.1.3.0 507 ------- null} + -t 45.2878 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 998 -a 0 -x {0.0.3.0 1.1.3.0 507 ------- null} - -t 45.2878 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 998 -a 0 -x {0.0.3.0 1.1.3.0 507 ------- null} h -t 45.2878 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 998 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.2894 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {0.0.3.0 1.1.3.0 508 ------- null} + -t 45.2894 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {0.0.3.0 1.1.3.0 508 ------- null} - -t 45.2894 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {0.0.3.0 1.1.3.0 508 ------- null} h -t 45.2894 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.291 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1000 -a 0 -x {0.0.3.0 1.1.3.0 509 ------- null} + -t 45.291 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1000 -a 0 -x {0.0.3.0 1.1.3.0 509 ------- null} - -t 45.291 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1000 -a 0 -x {0.0.3.0 1.1.3.0 509 ------- null} h -t 45.291 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1000 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.2926 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {0.0.3.0 1.1.3.0 510 ------- null} + -t 45.2926 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {0.0.3.0 1.1.3.0 510 ------- null} - -t 45.2926 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {0.0.3.0 1.1.3.0 510 ------- null} h -t 45.2926 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 45.3238 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 982 -a 0 -x {0.0.3.0 1.1.3.0 491 ------- null} + -t 45.3238 -s 21 -d 28 -p ack -e 40 -c 0 -i 1002 -a 1 -x {1.1.3.0 0.0.3.0 491 ------- null} - -t 45.3238 -s 21 -d 28 -p ack -e 40 -c 0 -i 1002 -a 1 -x {1.1.3.0 0.0.3.0 491 ------- null} h -t 45.3238 -s 21 -d 28 -p ack -e 40 -c 0 -i 1002 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.3254 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {0.0.3.0 1.1.3.0 492 ------- null} + -t 45.3254 -s 21 -d 28 -p ack -e 40 -c 0 -i 1003 -a 1 -x {1.1.3.0 0.0.3.0 492 ------- null} - -t 45.3254 -s 21 -d 28 -p ack -e 40 -c 0 -i 1003 -a 1 -x {1.1.3.0 0.0.3.0 492 ------- null} h -t 45.3254 -s 21 -d 28 -p ack -e 40 -c 0 -i 1003 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.327 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 984 -a 0 -x {0.0.3.0 1.1.3.0 493 ------- null} + -t 45.327 -s 21 -d 28 -p ack -e 40 -c 0 -i 1004 -a 1 -x {1.1.3.0 0.0.3.0 493 ------- null} - -t 45.327 -s 21 -d 28 -p ack -e 40 -c 0 -i 1004 -a 1 -x {1.1.3.0 0.0.3.0 493 ------- null} h -t 45.327 -s 21 -d 28 -p ack -e 40 -c 0 -i 1004 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.3286 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {0.0.3.0 1.1.3.0 494 ------- null} + -t 45.3286 -s 21 -d 28 -p ack -e 40 -c 0 -i 1005 -a 1 -x {1.1.3.0 0.0.3.0 494 ------- null} - -t 45.3286 -s 21 -d 28 -p ack -e 40 -c 0 -i 1005 -a 1 -x {1.1.3.0 0.0.3.0 494 ------- null} h -t 45.3286 -s 21 -d 28 -p ack -e 40 -c 0 -i 1005 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.3302 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 986 -a 0 -x {0.0.3.0 1.1.3.0 495 ------- null} + -t 45.3302 -s 21 -d 28 -p ack -e 40 -c 0 -i 1006 -a 1 -x {1.1.3.0 0.0.3.0 495 ------- null} - -t 45.3302 -s 21 -d 28 -p ack -e 40 -c 0 -i 1006 -a 1 -x {1.1.3.0 0.0.3.0 495 ------- null} h -t 45.3302 -s 21 -d 28 -p ack -e 40 -c 0 -i 1006 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.3318 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {0.0.3.0 1.1.3.0 496 ------- null} + -t 45.3318 -s 21 -d 28 -p ack -e 40 -c 0 -i 1007 -a 1 -x {1.1.3.0 0.0.3.0 496 ------- null} - -t 45.3318 -s 21 -d 28 -p ack -e 40 -c 0 -i 1007 -a 1 -x {1.1.3.0 0.0.3.0 496 ------- null} h -t 45.3318 -s 21 -d 28 -p ack -e 40 -c 0 -i 1007 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.3334 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 988 -a 0 -x {0.0.3.0 1.1.3.0 497 ------- null} + -t 45.3334 -s 21 -d 28 -p ack -e 40 -c 0 -i 1008 -a 1 -x {1.1.3.0 0.0.3.0 497 ------- null} - -t 45.3334 -s 21 -d 28 -p ack -e 40 -c 0 -i 1008 -a 1 -x {1.1.3.0 0.0.3.0 497 ------- null} h -t 45.3334 -s 21 -d 28 -p ack -e 40 -c 0 -i 1008 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.335 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {0.0.3.0 1.1.3.0 498 ------- null} + -t 45.335 -s 21 -d 28 -p ack -e 40 -c 0 -i 1009 -a 1 -x {1.1.3.0 0.0.3.0 498 ------- null} - -t 45.335 -s 21 -d 28 -p ack -e 40 -c 0 -i 1009 -a 1 -x {1.1.3.0 0.0.3.0 498 ------- null} h -t 45.335 -s 21 -d 28 -p ack -e 40 -c 0 -i 1009 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.3366 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 990 -a 0 -x {0.0.3.0 1.1.3.0 499 ------- null} + -t 45.3366 -s 21 -d 28 -p ack -e 40 -c 0 -i 1010 -a 1 -x {1.1.3.0 0.0.3.0 499 ------- null} - -t 45.3366 -s 21 -d 28 -p ack -e 40 -c 0 -i 1010 -a 1 -x {1.1.3.0 0.0.3.0 499 ------- null} h -t 45.3366 -s 21 -d 28 -p ack -e 40 -c 0 -i 1010 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.3382 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {0.0.3.0 1.1.3.0 500 ------- null} + -t 45.3382 -s 21 -d 28 -p ack -e 40 -c 0 -i 1011 -a 1 -x {1.1.3.0 0.0.3.0 500 ------- null} - -t 45.3382 -s 21 -d 28 -p ack -e 40 -c 0 -i 1011 -a 1 -x {1.1.3.0 0.0.3.0 500 ------- null} h -t 45.3382 -s 21 -d 28 -p ack -e 40 -c 0 -i 1011 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.3398 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 992 -a 0 -x {0.0.3.0 1.1.3.0 501 ------- null} + -t 45.3398 -s 21 -d 28 -p ack -e 40 -c 0 -i 1012 -a 1 -x {1.1.3.0 0.0.3.0 501 ------- null} - -t 45.3398 -s 21 -d 28 -p ack -e 40 -c 0 -i 1012 -a 1 -x {1.1.3.0 0.0.3.0 501 ------- null} h -t 45.3398 -s 21 -d 28 -p ack -e 40 -c 0 -i 1012 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.3414 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {0.0.3.0 1.1.3.0 502 ------- null} + -t 45.3414 -s 21 -d 28 -p ack -e 40 -c 0 -i 1013 -a 1 -x {1.1.3.0 0.0.3.0 502 ------- null} - -t 45.3414 -s 21 -d 28 -p ack -e 40 -c 0 -i 1013 -a 1 -x {1.1.3.0 0.0.3.0 502 ------- null} h -t 45.3414 -s 21 -d 28 -p ack -e 40 -c 0 -i 1013 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.343 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 994 -a 0 -x {0.0.3.0 1.1.3.0 503 ------- null} + -t 45.343 -s 21 -d 28 -p ack -e 40 -c 0 -i 1014 -a 1 -x {1.1.3.0 0.0.3.0 503 ------- null} - -t 45.343 -s 21 -d 28 -p ack -e 40 -c 0 -i 1014 -a 1 -x {1.1.3.0 0.0.3.0 503 ------- null} h -t 45.343 -s 21 -d 28 -p ack -e 40 -c 0 -i 1014 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.3446 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {0.0.3.0 1.1.3.0 504 ------- null} + -t 45.3446 -s 21 -d 28 -p ack -e 40 -c 0 -i 1015 -a 1 -x {1.1.3.0 0.0.3.0 504 ------- null} - -t 45.3446 -s 21 -d 28 -p ack -e 40 -c 0 -i 1015 -a 1 -x {1.1.3.0 0.0.3.0 504 ------- null} h -t 45.3446 -s 21 -d 28 -p ack -e 40 -c 0 -i 1015 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.3462 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 996 -a 0 -x {0.0.3.0 1.1.3.0 505 ------- null} + -t 45.3462 -s 21 -d 28 -p ack -e 40 -c 0 -i 1016 -a 1 -x {1.1.3.0 0.0.3.0 505 ------- null} - -t 45.3462 -s 21 -d 28 -p ack -e 40 -c 0 -i 1016 -a 1 -x {1.1.3.0 0.0.3.0 505 ------- null} h -t 45.3462 -s 21 -d 28 -p ack -e 40 -c 0 -i 1016 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.3478 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {0.0.3.0 1.1.3.0 506 ------- null} + -t 45.3478 -s 21 -d 28 -p ack -e 40 -c 0 -i 1017 -a 1 -x {1.1.3.0 0.0.3.0 506 ------- null} - -t 45.3478 -s 21 -d 28 -p ack -e 40 -c 0 -i 1017 -a 1 -x {1.1.3.0 0.0.3.0 506 ------- null} h -t 45.3478 -s 21 -d 28 -p ack -e 40 -c 0 -i 1017 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.3494 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 998 -a 0 -x {0.0.3.0 1.1.3.0 507 ------- null} + -t 45.3494 -s 21 -d 28 -p ack -e 40 -c 0 -i 1018 -a 1 -x {1.1.3.0 0.0.3.0 507 ------- null} - -t 45.3494 -s 21 -d 28 -p ack -e 40 -c 0 -i 1018 -a 1 -x {1.1.3.0 0.0.3.0 507 ------- null} h -t 45.3494 -s 21 -d 28 -p ack -e 40 -c 0 -i 1018 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.351 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {0.0.3.0 1.1.3.0 508 ------- null} + -t 45.351 -s 21 -d 28 -p ack -e 40 -c 0 -i 1019 -a 1 -x {1.1.3.0 0.0.3.0 508 ------- null} - -t 45.351 -s 21 -d 28 -p ack -e 40 -c 0 -i 1019 -a 1 -x {1.1.3.0 0.0.3.0 508 ------- null} h -t 45.351 -s 21 -d 28 -p ack -e 40 -c 0 -i 1019 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.3526 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1000 -a 0 -x {0.0.3.0 1.1.3.0 509 ------- null} + -t 45.3526 -s 21 -d 28 -p ack -e 40 -c 0 -i 1020 -a 1 -x {1.1.3.0 0.0.3.0 509 ------- null} - -t 45.3526 -s 21 -d 28 -p ack -e 40 -c 0 -i 1020 -a 1 -x {1.1.3.0 0.0.3.0 509 ------- null} h -t 45.3526 -s 21 -d 28 -p ack -e 40 -c 0 -i 1020 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.3542 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {0.0.3.0 1.1.3.0 510 ------- null} + -t 45.3542 -s 21 -d 28 -p ack -e 40 -c 0 -i 1021 -a 1 -x {1.1.3.0 0.0.3.0 510 ------- null} - -t 45.3542 -s 21 -d 28 -p ack -e 40 -c 0 -i 1021 -a 1 -x {1.1.3.0 0.0.3.0 510 ------- null} h -t 45.3542 -s 21 -d 28 -p ack -e 40 -c 0 -i 1021 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.6738 -s 21 -d 28 -p ack -e 40 -c 0 -i 1002 -a 1 -x {1.1.3.0 0.0.3.0 491 ------- null} + -t 45.6738 -s 28 -d 1 -p ack -e 40 -c 0 -i 1002 -a 1 -x {1.1.3.0 0.0.3.0 491 ------- null} - -t 45.6738 -s 28 -d 1 -p ack -e 40 -c 0 -i 1002 -a 1 -x {1.1.3.0 0.0.3.0 491 ------- null} h -t 45.6738 -s 28 -d 1 -p ack -e 40 -c 0 -i 1002 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.6754 -s 21 -d 28 -p ack -e 40 -c 0 -i 1003 -a 1 -x {1.1.3.0 0.0.3.0 492 ------- null} + -t 45.6754 -s 28 -d 1 -p ack -e 40 -c 0 -i 1003 -a 1 -x {1.1.3.0 0.0.3.0 492 ------- null} - -t 45.6754 -s 28 -d 1 -p ack -e 40 -c 0 -i 1003 -a 1 -x {1.1.3.0 0.0.3.0 492 ------- null} h -t 45.6754 -s 28 -d 1 -p ack -e 40 -c 0 -i 1003 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.677 -s 21 -d 28 -p ack -e 40 -c 0 -i 1004 -a 1 -x {1.1.3.0 0.0.3.0 493 ------- null} + -t 45.677 -s 28 -d 1 -p ack -e 40 -c 0 -i 1004 -a 1 -x {1.1.3.0 0.0.3.0 493 ------- null} - -t 45.677 -s 28 -d 1 -p ack -e 40 -c 0 -i 1004 -a 1 -x {1.1.3.0 0.0.3.0 493 ------- null} h -t 45.677 -s 28 -d 1 -p ack -e 40 -c 0 -i 1004 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.6786 -s 21 -d 28 -p ack -e 40 -c 0 -i 1005 -a 1 -x {1.1.3.0 0.0.3.0 494 ------- null} + -t 45.6786 -s 28 -d 1 -p ack -e 40 -c 0 -i 1005 -a 1 -x {1.1.3.0 0.0.3.0 494 ------- null} - -t 45.6786 -s 28 -d 1 -p ack -e 40 -c 0 -i 1005 -a 1 -x {1.1.3.0 0.0.3.0 494 ------- null} h -t 45.6786 -s 28 -d 1 -p ack -e 40 -c 0 -i 1005 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.6802 -s 21 -d 28 -p ack -e 40 -c 0 -i 1006 -a 1 -x {1.1.3.0 0.0.3.0 495 ------- null} + -t 45.6802 -s 28 -d 1 -p ack -e 40 -c 0 -i 1006 -a 1 -x {1.1.3.0 0.0.3.0 495 ------- null} - -t 45.6802 -s 28 -d 1 -p ack -e 40 -c 0 -i 1006 -a 1 -x {1.1.3.0 0.0.3.0 495 ------- null} h -t 45.6802 -s 28 -d 1 -p ack -e 40 -c 0 -i 1006 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.6818 -s 21 -d 28 -p ack -e 40 -c 0 -i 1007 -a 1 -x {1.1.3.0 0.0.3.0 496 ------- null} + -t 45.6818 -s 28 -d 1 -p ack -e 40 -c 0 -i 1007 -a 1 -x {1.1.3.0 0.0.3.0 496 ------- null} - -t 45.6818 -s 28 -d 1 -p ack -e 40 -c 0 -i 1007 -a 1 -x {1.1.3.0 0.0.3.0 496 ------- null} h -t 45.6818 -s 28 -d 1 -p ack -e 40 -c 0 -i 1007 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.6834 -s 21 -d 28 -p ack -e 40 -c 0 -i 1008 -a 1 -x {1.1.3.0 0.0.3.0 497 ------- null} + -t 45.6834 -s 28 -d 1 -p ack -e 40 -c 0 -i 1008 -a 1 -x {1.1.3.0 0.0.3.0 497 ------- null} - -t 45.6834 -s 28 -d 1 -p ack -e 40 -c 0 -i 1008 -a 1 -x {1.1.3.0 0.0.3.0 497 ------- null} h -t 45.6834 -s 28 -d 1 -p ack -e 40 -c 0 -i 1008 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.685 -s 21 -d 28 -p ack -e 40 -c 0 -i 1009 -a 1 -x {1.1.3.0 0.0.3.0 498 ------- null} + -t 45.685 -s 28 -d 1 -p ack -e 40 -c 0 -i 1009 -a 1 -x {1.1.3.0 0.0.3.0 498 ------- null} - -t 45.685 -s 28 -d 1 -p ack -e 40 -c 0 -i 1009 -a 1 -x {1.1.3.0 0.0.3.0 498 ------- null} h -t 45.685 -s 28 -d 1 -p ack -e 40 -c 0 -i 1009 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.6866 -s 21 -d 28 -p ack -e 40 -c 0 -i 1010 -a 1 -x {1.1.3.0 0.0.3.0 499 ------- null} + -t 45.6866 -s 28 -d 1 -p ack -e 40 -c 0 -i 1010 -a 1 -x {1.1.3.0 0.0.3.0 499 ------- null} - -t 45.6866 -s 28 -d 1 -p ack -e 40 -c 0 -i 1010 -a 1 -x {1.1.3.0 0.0.3.0 499 ------- null} h -t 45.6866 -s 28 -d 1 -p ack -e 40 -c 0 -i 1010 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.6882 -s 21 -d 28 -p ack -e 40 -c 0 -i 1011 -a 1 -x {1.1.3.0 0.0.3.0 500 ------- null} + -t 45.6882 -s 28 -d 1 -p ack -e 40 -c 0 -i 1011 -a 1 -x {1.1.3.0 0.0.3.0 500 ------- null} - -t 45.6882 -s 28 -d 1 -p ack -e 40 -c 0 -i 1011 -a 1 -x {1.1.3.0 0.0.3.0 500 ------- null} h -t 45.6882 -s 28 -d 1 -p ack -e 40 -c 0 -i 1011 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.6898 -s 21 -d 28 -p ack -e 40 -c 0 -i 1012 -a 1 -x {1.1.3.0 0.0.3.0 501 ------- null} + -t 45.6898 -s 28 -d 1 -p ack -e 40 -c 0 -i 1012 -a 1 -x {1.1.3.0 0.0.3.0 501 ------- null} - -t 45.6898 -s 28 -d 1 -p ack -e 40 -c 0 -i 1012 -a 1 -x {1.1.3.0 0.0.3.0 501 ------- null} h -t 45.6898 -s 28 -d 1 -p ack -e 40 -c 0 -i 1012 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.6914 -s 21 -d 28 -p ack -e 40 -c 0 -i 1013 -a 1 -x {1.1.3.0 0.0.3.0 502 ------- null} + -t 45.6914 -s 28 -d 1 -p ack -e 40 -c 0 -i 1013 -a 1 -x {1.1.3.0 0.0.3.0 502 ------- null} - -t 45.6914 -s 28 -d 1 -p ack -e 40 -c 0 -i 1013 -a 1 -x {1.1.3.0 0.0.3.0 502 ------- null} h -t 45.6914 -s 28 -d 1 -p ack -e 40 -c 0 -i 1013 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.693 -s 21 -d 28 -p ack -e 40 -c 0 -i 1014 -a 1 -x {1.1.3.0 0.0.3.0 503 ------- null} + -t 45.693 -s 28 -d 1 -p ack -e 40 -c 0 -i 1014 -a 1 -x {1.1.3.0 0.0.3.0 503 ------- null} - -t 45.693 -s 28 -d 1 -p ack -e 40 -c 0 -i 1014 -a 1 -x {1.1.3.0 0.0.3.0 503 ------- null} h -t 45.693 -s 28 -d 1 -p ack -e 40 -c 0 -i 1014 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.6946 -s 21 -d 28 -p ack -e 40 -c 0 -i 1015 -a 1 -x {1.1.3.0 0.0.3.0 504 ------- null} + -t 45.6946 -s 28 -d 1 -p ack -e 40 -c 0 -i 1015 -a 1 -x {1.1.3.0 0.0.3.0 504 ------- null} - -t 45.6946 -s 28 -d 1 -p ack -e 40 -c 0 -i 1015 -a 1 -x {1.1.3.0 0.0.3.0 504 ------- null} h -t 45.6946 -s 28 -d 1 -p ack -e 40 -c 0 -i 1015 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.6962 -s 21 -d 28 -p ack -e 40 -c 0 -i 1016 -a 1 -x {1.1.3.0 0.0.3.0 505 ------- null} + -t 45.6962 -s 28 -d 1 -p ack -e 40 -c 0 -i 1016 -a 1 -x {1.1.3.0 0.0.3.0 505 ------- null} - -t 45.6962 -s 28 -d 1 -p ack -e 40 -c 0 -i 1016 -a 1 -x {1.1.3.0 0.0.3.0 505 ------- null} h -t 45.6962 -s 28 -d 1 -p ack -e 40 -c 0 -i 1016 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.6978 -s 21 -d 28 -p ack -e 40 -c 0 -i 1017 -a 1 -x {1.1.3.0 0.0.3.0 506 ------- null} + -t 45.6978 -s 28 -d 1 -p ack -e 40 -c 0 -i 1017 -a 1 -x {1.1.3.0 0.0.3.0 506 ------- null} - -t 45.6978 -s 28 -d 1 -p ack -e 40 -c 0 -i 1017 -a 1 -x {1.1.3.0 0.0.3.0 506 ------- null} h -t 45.6978 -s 28 -d 1 -p ack -e 40 -c 0 -i 1017 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.6994 -s 21 -d 28 -p ack -e 40 -c 0 -i 1018 -a 1 -x {1.1.3.0 0.0.3.0 507 ------- null} + -t 45.6994 -s 28 -d 1 -p ack -e 40 -c 0 -i 1018 -a 1 -x {1.1.3.0 0.0.3.0 507 ------- null} - -t 45.6994 -s 28 -d 1 -p ack -e 40 -c 0 -i 1018 -a 1 -x {1.1.3.0 0.0.3.0 507 ------- null} h -t 45.6994 -s 28 -d 1 -p ack -e 40 -c 0 -i 1018 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.701 -s 21 -d 28 -p ack -e 40 -c 0 -i 1019 -a 1 -x {1.1.3.0 0.0.3.0 508 ------- null} + -t 45.701 -s 28 -d 1 -p ack -e 40 -c 0 -i 1019 -a 1 -x {1.1.3.0 0.0.3.0 508 ------- null} - -t 45.701 -s 28 -d 1 -p ack -e 40 -c 0 -i 1019 -a 1 -x {1.1.3.0 0.0.3.0 508 ------- null} h -t 45.701 -s 28 -d 1 -p ack -e 40 -c 0 -i 1019 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.7026 -s 21 -d 28 -p ack -e 40 -c 0 -i 1020 -a 1 -x {1.1.3.0 0.0.3.0 509 ------- null} + -t 45.7026 -s 28 -d 1 -p ack -e 40 -c 0 -i 1020 -a 1 -x {1.1.3.0 0.0.3.0 509 ------- null} - -t 45.7026 -s 28 -d 1 -p ack -e 40 -c 0 -i 1020 -a 1 -x {1.1.3.0 0.0.3.0 509 ------- null} h -t 45.7026 -s 28 -d 1 -p ack -e 40 -c 0 -i 1020 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.7042 -s 21 -d 28 -p ack -e 40 -c 0 -i 1021 -a 1 -x {1.1.3.0 0.0.3.0 510 ------- null} + -t 45.7042 -s 28 -d 1 -p ack -e 40 -c 0 -i 1021 -a 1 -x {1.1.3.0 0.0.3.0 510 ------- null} - -t 45.7042 -s 28 -d 1 -p ack -e 40 -c 0 -i 1021 -a 1 -x {1.1.3.0 0.0.3.0 510 ------- null} h -t 45.7042 -s 28 -d 1 -p ack -e 40 -c 0 -i 1021 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.9739 -s 28 -d 1 -p ack -e 40 -c 0 -i 1002 -a 1 -x {1.1.3.0 0.0.3.0 491 ------- null} + -t 45.9739 -s 1 -d 3 -p ack -e 40 -c 0 -i 1002 -a 1 -x {1.1.3.0 0.0.3.0 491 ------- null} - -t 45.9739 -s 1 -d 3 -p ack -e 40 -c 0 -i 1002 -a 1 -x {1.1.3.0 0.0.3.0 491 ------- null} h -t 45.9739 -s 1 -d 3 -p ack -e 40 -c 0 -i 1002 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.9755 -s 28 -d 1 -p ack -e 40 -c 0 -i 1003 -a 1 -x {1.1.3.0 0.0.3.0 492 ------- null} + -t 45.9755 -s 1 -d 3 -p ack -e 40 -c 0 -i 1003 -a 1 -x {1.1.3.0 0.0.3.0 492 ------- null} - -t 45.9755 -s 1 -d 3 -p ack -e 40 -c 0 -i 1003 -a 1 -x {1.1.3.0 0.0.3.0 492 ------- null} h -t 45.9755 -s 1 -d 3 -p ack -e 40 -c 0 -i 1003 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.9771 -s 28 -d 1 -p ack -e 40 -c 0 -i 1004 -a 1 -x {1.1.3.0 0.0.3.0 493 ------- null} + -t 45.9771 -s 1 -d 3 -p ack -e 40 -c 0 -i 1004 -a 1 -x {1.1.3.0 0.0.3.0 493 ------- null} - -t 45.9771 -s 1 -d 3 -p ack -e 40 -c 0 -i 1004 -a 1 -x {1.1.3.0 0.0.3.0 493 ------- null} h -t 45.9771 -s 1 -d 3 -p ack -e 40 -c 0 -i 1004 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.9787 -s 28 -d 1 -p ack -e 40 -c 0 -i 1005 -a 1 -x {1.1.3.0 0.0.3.0 494 ------- null} + -t 45.9787 -s 1 -d 3 -p ack -e 40 -c 0 -i 1005 -a 1 -x {1.1.3.0 0.0.3.0 494 ------- null} - -t 45.9787 -s 1 -d 3 -p ack -e 40 -c 0 -i 1005 -a 1 -x {1.1.3.0 0.0.3.0 494 ------- null} h -t 45.9787 -s 1 -d 3 -p ack -e 40 -c 0 -i 1005 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.9803 -s 28 -d 1 -p ack -e 40 -c 0 -i 1006 -a 1 -x {1.1.3.0 0.0.3.0 495 ------- null} + -t 45.9803 -s 1 -d 3 -p ack -e 40 -c 0 -i 1006 -a 1 -x {1.1.3.0 0.0.3.0 495 ------- null} - -t 45.9803 -s 1 -d 3 -p ack -e 40 -c 0 -i 1006 -a 1 -x {1.1.3.0 0.0.3.0 495 ------- null} h -t 45.9803 -s 1 -d 3 -p ack -e 40 -c 0 -i 1006 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.9819 -s 28 -d 1 -p ack -e 40 -c 0 -i 1007 -a 1 -x {1.1.3.0 0.0.3.0 496 ------- null} + -t 45.9819 -s 1 -d 3 -p ack -e 40 -c 0 -i 1007 -a 1 -x {1.1.3.0 0.0.3.0 496 ------- null} - -t 45.9819 -s 1 -d 3 -p ack -e 40 -c 0 -i 1007 -a 1 -x {1.1.3.0 0.0.3.0 496 ------- null} h -t 45.9819 -s 1 -d 3 -p ack -e 40 -c 0 -i 1007 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.9835 -s 28 -d 1 -p ack -e 40 -c 0 -i 1008 -a 1 -x {1.1.3.0 0.0.3.0 497 ------- null} + -t 45.9835 -s 1 -d 3 -p ack -e 40 -c 0 -i 1008 -a 1 -x {1.1.3.0 0.0.3.0 497 ------- null} - -t 45.9835 -s 1 -d 3 -p ack -e 40 -c 0 -i 1008 -a 1 -x {1.1.3.0 0.0.3.0 497 ------- null} h -t 45.9835 -s 1 -d 3 -p ack -e 40 -c 0 -i 1008 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.9851 -s 28 -d 1 -p ack -e 40 -c 0 -i 1009 -a 1 -x {1.1.3.0 0.0.3.0 498 ------- null} + -t 45.9851 -s 1 -d 3 -p ack -e 40 -c 0 -i 1009 -a 1 -x {1.1.3.0 0.0.3.0 498 ------- null} - -t 45.9851 -s 1 -d 3 -p ack -e 40 -c 0 -i 1009 -a 1 -x {1.1.3.0 0.0.3.0 498 ------- null} h -t 45.9851 -s 1 -d 3 -p ack -e 40 -c 0 -i 1009 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.9867 -s 28 -d 1 -p ack -e 40 -c 0 -i 1010 -a 1 -x {1.1.3.0 0.0.3.0 499 ------- null} + -t 45.9867 -s 1 -d 3 -p ack -e 40 -c 0 -i 1010 -a 1 -x {1.1.3.0 0.0.3.0 499 ------- null} - -t 45.9867 -s 1 -d 3 -p ack -e 40 -c 0 -i 1010 -a 1 -x {1.1.3.0 0.0.3.0 499 ------- null} h -t 45.9867 -s 1 -d 3 -p ack -e 40 -c 0 -i 1010 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.9883 -s 28 -d 1 -p ack -e 40 -c 0 -i 1011 -a 1 -x {1.1.3.0 0.0.3.0 500 ------- null} + -t 45.9883 -s 1 -d 3 -p ack -e 40 -c 0 -i 1011 -a 1 -x {1.1.3.0 0.0.3.0 500 ------- null} - -t 45.9883 -s 1 -d 3 -p ack -e 40 -c 0 -i 1011 -a 1 -x {1.1.3.0 0.0.3.0 500 ------- null} h -t 45.9883 -s 1 -d 3 -p ack -e 40 -c 0 -i 1011 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.9899 -s 28 -d 1 -p ack -e 40 -c 0 -i 1012 -a 1 -x {1.1.3.0 0.0.3.0 501 ------- null} + -t 45.9899 -s 1 -d 3 -p ack -e 40 -c 0 -i 1012 -a 1 -x {1.1.3.0 0.0.3.0 501 ------- null} - -t 45.9899 -s 1 -d 3 -p ack -e 40 -c 0 -i 1012 -a 1 -x {1.1.3.0 0.0.3.0 501 ------- null} h -t 45.9899 -s 1 -d 3 -p ack -e 40 -c 0 -i 1012 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.9915 -s 28 -d 1 -p ack -e 40 -c 0 -i 1013 -a 1 -x {1.1.3.0 0.0.3.0 502 ------- null} + -t 45.9915 -s 1 -d 3 -p ack -e 40 -c 0 -i 1013 -a 1 -x {1.1.3.0 0.0.3.0 502 ------- null} - -t 45.9915 -s 1 -d 3 -p ack -e 40 -c 0 -i 1013 -a 1 -x {1.1.3.0 0.0.3.0 502 ------- null} h -t 45.9915 -s 1 -d 3 -p ack -e 40 -c 0 -i 1013 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.9931 -s 28 -d 1 -p ack -e 40 -c 0 -i 1014 -a 1 -x {1.1.3.0 0.0.3.0 503 ------- null} + -t 45.9931 -s 1 -d 3 -p ack -e 40 -c 0 -i 1014 -a 1 -x {1.1.3.0 0.0.3.0 503 ------- null} - -t 45.9931 -s 1 -d 3 -p ack -e 40 -c 0 -i 1014 -a 1 -x {1.1.3.0 0.0.3.0 503 ------- null} h -t 45.9931 -s 1 -d 3 -p ack -e 40 -c 0 -i 1014 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.9947 -s 28 -d 1 -p ack -e 40 -c 0 -i 1015 -a 1 -x {1.1.3.0 0.0.3.0 504 ------- null} + -t 45.9947 -s 1 -d 3 -p ack -e 40 -c 0 -i 1015 -a 1 -x {1.1.3.0 0.0.3.0 504 ------- null} - -t 45.9947 -s 1 -d 3 -p ack -e 40 -c 0 -i 1015 -a 1 -x {1.1.3.0 0.0.3.0 504 ------- null} h -t 45.9947 -s 1 -d 3 -p ack -e 40 -c 0 -i 1015 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.9963 -s 28 -d 1 -p ack -e 40 -c 0 -i 1016 -a 1 -x {1.1.3.0 0.0.3.0 505 ------- null} + -t 45.9963 -s 1 -d 3 -p ack -e 40 -c 0 -i 1016 -a 1 -x {1.1.3.0 0.0.3.0 505 ------- null} - -t 45.9963 -s 1 -d 3 -p ack -e 40 -c 0 -i 1016 -a 1 -x {1.1.3.0 0.0.3.0 505 ------- null} h -t 45.9963 -s 1 -d 3 -p ack -e 40 -c 0 -i 1016 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.9979 -s 28 -d 1 -p ack -e 40 -c 0 -i 1017 -a 1 -x {1.1.3.0 0.0.3.0 506 ------- null} + -t 45.9979 -s 1 -d 3 -p ack -e 40 -c 0 -i 1017 -a 1 -x {1.1.3.0 0.0.3.0 506 ------- null} - -t 45.9979 -s 1 -d 3 -p ack -e 40 -c 0 -i 1017 -a 1 -x {1.1.3.0 0.0.3.0 506 ------- null} h -t 45.9979 -s 1 -d 3 -p ack -e 40 -c 0 -i 1017 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 45.9995 -s 28 -d 1 -p ack -e 40 -c 0 -i 1018 -a 1 -x {1.1.3.0 0.0.3.0 507 ------- null} + -t 45.9995 -s 1 -d 3 -p ack -e 40 -c 0 -i 1018 -a 1 -x {1.1.3.0 0.0.3.0 507 ------- null} - -t 45.9995 -s 1 -d 3 -p ack -e 40 -c 0 -i 1018 -a 1 -x {1.1.3.0 0.0.3.0 507 ------- null} h -t 45.9995 -s 1 -d 3 -p ack -e 40 -c 0 -i 1018 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 46.0011 -s 28 -d 1 -p ack -e 40 -c 0 -i 1019 -a 1 -x {1.1.3.0 0.0.3.0 508 ------- null} + -t 46.0011 -s 1 -d 3 -p ack -e 40 -c 0 -i 1019 -a 1 -x {1.1.3.0 0.0.3.0 508 ------- null} - -t 46.0011 -s 1 -d 3 -p ack -e 40 -c 0 -i 1019 -a 1 -x {1.1.3.0 0.0.3.0 508 ------- null} h -t 46.0011 -s 1 -d 3 -p ack -e 40 -c 0 -i 1019 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 46.0027 -s 28 -d 1 -p ack -e 40 -c 0 -i 1020 -a 1 -x {1.1.3.0 0.0.3.0 509 ------- null} + -t 46.0027 -s 1 -d 3 -p ack -e 40 -c 0 -i 1020 -a 1 -x {1.1.3.0 0.0.3.0 509 ------- null} - -t 46.0027 -s 1 -d 3 -p ack -e 40 -c 0 -i 1020 -a 1 -x {1.1.3.0 0.0.3.0 509 ------- null} h -t 46.0027 -s 1 -d 3 -p ack -e 40 -c 0 -i 1020 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 46.0043 -s 28 -d 1 -p ack -e 40 -c 0 -i 1021 -a 1 -x {1.1.3.0 0.0.3.0 510 ------- null} + -t 46.0043 -s 1 -d 3 -p ack -e 40 -c 0 -i 1021 -a 1 -x {1.1.3.0 0.0.3.0 510 ------- null} - -t 46.0043 -s 1 -d 3 -p ack -e 40 -c 0 -i 1021 -a 1 -x {1.1.3.0 0.0.3.0 510 ------- null} h -t 46.0043 -s 1 -d 3 -p ack -e 40 -c 0 -i 1021 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 46.114 -s 1 -d 3 -p ack -e 40 -c 0 -i 1002 -a 1 -x {1.1.3.0 0.0.3.0 491 ------- null} + -t 46.114 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1022 -a 0 -x {0.0.3.0 1.1.3.0 511 ------- null} - -t 46.114 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1022 -a 0 -x {0.0.3.0 1.1.3.0 511 ------- null} h -t 46.114 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1022 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.1156 -s 1 -d 3 -p ack -e 40 -c 0 -i 1003 -a 1 -x {1.1.3.0 0.0.3.0 492 ------- null} + -t 46.1156 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {0.0.3.0 1.1.3.0 512 ------- null} - -t 46.1156 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {0.0.3.0 1.1.3.0 512 ------- null} h -t 46.1156 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.1172 -s 1 -d 3 -p ack -e 40 -c 0 -i 1004 -a 1 -x {1.1.3.0 0.0.3.0 493 ------- null} + -t 46.1172 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1024 -a 0 -x {0.0.3.0 1.1.3.0 513 ------- null} - -t 46.1172 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1024 -a 0 -x {0.0.3.0 1.1.3.0 513 ------- null} h -t 46.1172 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1024 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.1188 -s 1 -d 3 -p ack -e 40 -c 0 -i 1005 -a 1 -x {1.1.3.0 0.0.3.0 494 ------- null} + -t 46.1188 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {0.0.3.0 1.1.3.0 514 ------- null} - -t 46.1188 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {0.0.3.0 1.1.3.0 514 ------- null} h -t 46.1188 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.1204 -s 1 -d 3 -p ack -e 40 -c 0 -i 1006 -a 1 -x {1.1.3.0 0.0.3.0 495 ------- null} + -t 46.1204 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1026 -a 0 -x {0.0.3.0 1.1.3.0 515 ------- null} - -t 46.1204 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1026 -a 0 -x {0.0.3.0 1.1.3.0 515 ------- null} h -t 46.1204 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1026 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.122 -s 1 -d 3 -p ack -e 40 -c 0 -i 1007 -a 1 -x {1.1.3.0 0.0.3.0 496 ------- null} + -t 46.122 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {0.0.3.0 1.1.3.0 516 ------- null} - -t 46.122 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {0.0.3.0 1.1.3.0 516 ------- null} h -t 46.122 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.1236 -s 1 -d 3 -p ack -e 40 -c 0 -i 1008 -a 1 -x {1.1.3.0 0.0.3.0 497 ------- null} + -t 46.1236 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1028 -a 0 -x {0.0.3.0 1.1.3.0 517 ------- null} - -t 46.1236 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1028 -a 0 -x {0.0.3.0 1.1.3.0 517 ------- null} h -t 46.1236 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1028 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.1252 -s 1 -d 3 -p ack -e 40 -c 0 -i 1009 -a 1 -x {1.1.3.0 0.0.3.0 498 ------- null} + -t 46.1252 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {0.0.3.0 1.1.3.0 518 ------- null} - -t 46.1252 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {0.0.3.0 1.1.3.0 518 ------- null} h -t 46.1252 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.1268 -s 1 -d 3 -p ack -e 40 -c 0 -i 1010 -a 1 -x {1.1.3.0 0.0.3.0 499 ------- null} + -t 46.1268 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1030 -a 0 -x {0.0.3.0 1.1.3.0 519 ------- null} - -t 46.1268 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1030 -a 0 -x {0.0.3.0 1.1.3.0 519 ------- null} h -t 46.1268 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1030 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.1284 -s 1 -d 3 -p ack -e 40 -c 0 -i 1011 -a 1 -x {1.1.3.0 0.0.3.0 500 ------- null} + -t 46.1284 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {0.0.3.0 1.1.3.0 520 ------- null} - -t 46.1284 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {0.0.3.0 1.1.3.0 520 ------- null} h -t 46.1284 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.13 -s 1 -d 3 -p ack -e 40 -c 0 -i 1012 -a 1 -x {1.1.3.0 0.0.3.0 501 ------- null} + -t 46.13 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1032 -a 0 -x {0.0.3.0 1.1.3.0 521 ------- null} - -t 46.13 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1032 -a 0 -x {0.0.3.0 1.1.3.0 521 ------- null} h -t 46.13 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1032 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.1316 -s 1 -d 3 -p ack -e 40 -c 0 -i 1013 -a 1 -x {1.1.3.0 0.0.3.0 502 ------- null} + -t 46.1316 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {0.0.3.0 1.1.3.0 522 ------- null} - -t 46.1316 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {0.0.3.0 1.1.3.0 522 ------- null} h -t 46.1316 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.1332 -s 1 -d 3 -p ack -e 40 -c 0 -i 1014 -a 1 -x {1.1.3.0 0.0.3.0 503 ------- null} + -t 46.1332 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1034 -a 0 -x {0.0.3.0 1.1.3.0 523 ------- null} - -t 46.1332 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1034 -a 0 -x {0.0.3.0 1.1.3.0 523 ------- null} h -t 46.1332 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1034 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.1348 -s 1 -d 3 -p ack -e 40 -c 0 -i 1015 -a 1 -x {1.1.3.0 0.0.3.0 504 ------- null} + -t 46.1348 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {0.0.3.0 1.1.3.0 524 ------- null} - -t 46.1348 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {0.0.3.0 1.1.3.0 524 ------- null} h -t 46.1348 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.1364 -s 1 -d 3 -p ack -e 40 -c 0 -i 1016 -a 1 -x {1.1.3.0 0.0.3.0 505 ------- null} + -t 46.1364 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1036 -a 0 -x {0.0.3.0 1.1.3.0 525 ------- null} - -t 46.1364 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1036 -a 0 -x {0.0.3.0 1.1.3.0 525 ------- null} h -t 46.1364 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1036 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.138 -s 1 -d 3 -p ack -e 40 -c 0 -i 1017 -a 1 -x {1.1.3.0 0.0.3.0 506 ------- null} + -t 46.138 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {0.0.3.0 1.1.3.0 526 ------- null} - -t 46.138 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {0.0.3.0 1.1.3.0 526 ------- null} h -t 46.138 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.1396 -s 1 -d 3 -p ack -e 40 -c 0 -i 1018 -a 1 -x {1.1.3.0 0.0.3.0 507 ------- null} + -t 46.1396 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1038 -a 0 -x {0.0.3.0 1.1.3.0 527 ------- null} - -t 46.1396 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1038 -a 0 -x {0.0.3.0 1.1.3.0 527 ------- null} h -t 46.1396 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1038 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.1412 -s 1 -d 3 -p ack -e 40 -c 0 -i 1019 -a 1 -x {1.1.3.0 0.0.3.0 508 ------- null} + -t 46.1412 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {0.0.3.0 1.1.3.0 528 ------- null} - -t 46.1412 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {0.0.3.0 1.1.3.0 528 ------- null} h -t 46.1412 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.1428 -s 1 -d 3 -p ack -e 40 -c 0 -i 1020 -a 1 -x {1.1.3.0 0.0.3.0 509 ------- null} + -t 46.1428 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1040 -a 0 -x {0.0.3.0 1.1.3.0 529 ------- null} - -t 46.1428 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1040 -a 0 -x {0.0.3.0 1.1.3.0 529 ------- null} h -t 46.1428 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1040 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.1444 -s 1 -d 3 -p ack -e 40 -c 0 -i 1021 -a 1 -x {1.1.3.0 0.0.3.0 510 ------- null} + -t 46.1444 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {0.0.3.0 1.1.3.0 530 ------- null} - -t 46.1444 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {0.0.3.0 1.1.3.0 530 ------- null} h -t 46.1444 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.2756 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1022 -a 0 -x {0.0.3.0 1.1.3.0 511 ------- null} + -t 46.2756 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1022 -a 0 -x {0.0.3.0 1.1.3.0 511 ------- null} - -t 46.2756 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1022 -a 0 -x {0.0.3.0 1.1.3.0 511 ------- null} h -t 46.2756 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1022 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.2772 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {0.0.3.0 1.1.3.0 512 ------- null} + -t 46.2772 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {0.0.3.0 1.1.3.0 512 ------- null} - -t 46.2772 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {0.0.3.0 1.1.3.0 512 ------- null} h -t 46.2772 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.2788 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1024 -a 0 -x {0.0.3.0 1.1.3.0 513 ------- null} + -t 46.2788 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1024 -a 0 -x {0.0.3.0 1.1.3.0 513 ------- null} - -t 46.2788 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1024 -a 0 -x {0.0.3.0 1.1.3.0 513 ------- null} h -t 46.2788 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1024 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.2804 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {0.0.3.0 1.1.3.0 514 ------- null} + -t 46.2804 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {0.0.3.0 1.1.3.0 514 ------- null} - -t 46.2804 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {0.0.3.0 1.1.3.0 514 ------- null} h -t 46.2804 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.282 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1026 -a 0 -x {0.0.3.0 1.1.3.0 515 ------- null} + -t 46.282 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1026 -a 0 -x {0.0.3.0 1.1.3.0 515 ------- null} - -t 46.282 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1026 -a 0 -x {0.0.3.0 1.1.3.0 515 ------- null} h -t 46.282 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1026 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.2836 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {0.0.3.0 1.1.3.0 516 ------- null} + -t 46.2836 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {0.0.3.0 1.1.3.0 516 ------- null} - -t 46.2836 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {0.0.3.0 1.1.3.0 516 ------- null} h -t 46.2836 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.2852 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1028 -a 0 -x {0.0.3.0 1.1.3.0 517 ------- null} + -t 46.2852 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1028 -a 0 -x {0.0.3.0 1.1.3.0 517 ------- null} - -t 46.2852 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1028 -a 0 -x {0.0.3.0 1.1.3.0 517 ------- null} h -t 46.2852 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1028 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.2868 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {0.0.3.0 1.1.3.0 518 ------- null} + -t 46.2868 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {0.0.3.0 1.1.3.0 518 ------- null} - -t 46.2868 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {0.0.3.0 1.1.3.0 518 ------- null} h -t 46.2868 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.2884 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1030 -a 0 -x {0.0.3.0 1.1.3.0 519 ------- null} + -t 46.2884 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1030 -a 0 -x {0.0.3.0 1.1.3.0 519 ------- null} - -t 46.2884 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1030 -a 0 -x {0.0.3.0 1.1.3.0 519 ------- null} h -t 46.2884 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1030 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.29 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {0.0.3.0 1.1.3.0 520 ------- null} + -t 46.29 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {0.0.3.0 1.1.3.0 520 ------- null} - -t 46.29 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {0.0.3.0 1.1.3.0 520 ------- null} h -t 46.29 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.2916 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1032 -a 0 -x {0.0.3.0 1.1.3.0 521 ------- null} + -t 46.2916 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1032 -a 0 -x {0.0.3.0 1.1.3.0 521 ------- null} - -t 46.2916 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1032 -a 0 -x {0.0.3.0 1.1.3.0 521 ------- null} h -t 46.2916 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1032 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.2932 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {0.0.3.0 1.1.3.0 522 ------- null} + -t 46.2932 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {0.0.3.0 1.1.3.0 522 ------- null} - -t 46.2932 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {0.0.3.0 1.1.3.0 522 ------- null} h -t 46.2932 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.2948 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1034 -a 0 -x {0.0.3.0 1.1.3.0 523 ------- null} + -t 46.2948 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1034 -a 0 -x {0.0.3.0 1.1.3.0 523 ------- null} - -t 46.2948 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1034 -a 0 -x {0.0.3.0 1.1.3.0 523 ------- null} h -t 46.2948 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1034 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.2964 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {0.0.3.0 1.1.3.0 524 ------- null} + -t 46.2964 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {0.0.3.0 1.1.3.0 524 ------- null} - -t 46.2964 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {0.0.3.0 1.1.3.0 524 ------- null} h -t 46.2964 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.298 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1036 -a 0 -x {0.0.3.0 1.1.3.0 525 ------- null} + -t 46.298 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1036 -a 0 -x {0.0.3.0 1.1.3.0 525 ------- null} - -t 46.298 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1036 -a 0 -x {0.0.3.0 1.1.3.0 525 ------- null} h -t 46.298 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1036 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.2996 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {0.0.3.0 1.1.3.0 526 ------- null} + -t 46.2996 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {0.0.3.0 1.1.3.0 526 ------- null} - -t 46.2996 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {0.0.3.0 1.1.3.0 526 ------- null} h -t 46.2996 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.3012 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1038 -a 0 -x {0.0.3.0 1.1.3.0 527 ------- null} + -t 46.3012 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1038 -a 0 -x {0.0.3.0 1.1.3.0 527 ------- null} - -t 46.3012 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1038 -a 0 -x {0.0.3.0 1.1.3.0 527 ------- null} h -t 46.3012 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1038 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.3028 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {0.0.3.0 1.1.3.0 528 ------- null} + -t 46.3028 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {0.0.3.0 1.1.3.0 528 ------- null} - -t 46.3028 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {0.0.3.0 1.1.3.0 528 ------- null} h -t 46.3028 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.3044 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1040 -a 0 -x {0.0.3.0 1.1.3.0 529 ------- null} + -t 46.3044 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1040 -a 0 -x {0.0.3.0 1.1.3.0 529 ------- null} - -t 46.3044 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1040 -a 0 -x {0.0.3.0 1.1.3.0 529 ------- null} h -t 46.3044 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1040 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.306 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {0.0.3.0 1.1.3.0 530 ------- null} + -t 46.306 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {0.0.3.0 1.1.3.0 530 ------- null} - -t 46.306 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {0.0.3.0 1.1.3.0 530 ------- null} h -t 46.306 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.5772 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1022 -a 0 -x {0.0.3.0 1.1.3.0 511 ------- null} + -t 46.5772 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1022 -a 0 -x {0.0.3.0 1.1.3.0 511 ------- null} - -t 46.5772 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1022 -a 0 -x {0.0.3.0 1.1.3.0 511 ------- null} h -t 46.5772 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1022 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.5788 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {0.0.3.0 1.1.3.0 512 ------- null} + -t 46.5788 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {0.0.3.0 1.1.3.0 512 ------- null} - -t 46.5788 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {0.0.3.0 1.1.3.0 512 ------- null} h -t 46.5788 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.5804 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1024 -a 0 -x {0.0.3.0 1.1.3.0 513 ------- null} + -t 46.5804 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1024 -a 0 -x {0.0.3.0 1.1.3.0 513 ------- null} - -t 46.5804 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1024 -a 0 -x {0.0.3.0 1.1.3.0 513 ------- null} h -t 46.5804 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1024 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.582 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {0.0.3.0 1.1.3.0 514 ------- null} + -t 46.582 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {0.0.3.0 1.1.3.0 514 ------- null} - -t 46.582 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {0.0.3.0 1.1.3.0 514 ------- null} h -t 46.582 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.5836 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1026 -a 0 -x {0.0.3.0 1.1.3.0 515 ------- null} + -t 46.5836 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1026 -a 0 -x {0.0.3.0 1.1.3.0 515 ------- null} - -t 46.5836 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1026 -a 0 -x {0.0.3.0 1.1.3.0 515 ------- null} h -t 46.5836 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1026 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.5852 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {0.0.3.0 1.1.3.0 516 ------- null} + -t 46.5852 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {0.0.3.0 1.1.3.0 516 ------- null} - -t 46.5852 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {0.0.3.0 1.1.3.0 516 ------- null} h -t 46.5852 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.5868 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1028 -a 0 -x {0.0.3.0 1.1.3.0 517 ------- null} + -t 46.5868 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1028 -a 0 -x {0.0.3.0 1.1.3.0 517 ------- null} - -t 46.5868 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1028 -a 0 -x {0.0.3.0 1.1.3.0 517 ------- null} h -t 46.5868 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1028 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.5884 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {0.0.3.0 1.1.3.0 518 ------- null} + -t 46.5884 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {0.0.3.0 1.1.3.0 518 ------- null} - -t 46.5884 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {0.0.3.0 1.1.3.0 518 ------- null} h -t 46.5884 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.59 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1030 -a 0 -x {0.0.3.0 1.1.3.0 519 ------- null} + -t 46.59 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1030 -a 0 -x {0.0.3.0 1.1.3.0 519 ------- null} - -t 46.59 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1030 -a 0 -x {0.0.3.0 1.1.3.0 519 ------- null} h -t 46.59 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1030 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.5916 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {0.0.3.0 1.1.3.0 520 ------- null} + -t 46.5916 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {0.0.3.0 1.1.3.0 520 ------- null} - -t 46.5916 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {0.0.3.0 1.1.3.0 520 ------- null} h -t 46.5916 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.5932 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1032 -a 0 -x {0.0.3.0 1.1.3.0 521 ------- null} + -t 46.5932 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1032 -a 0 -x {0.0.3.0 1.1.3.0 521 ------- null} - -t 46.5932 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1032 -a 0 -x {0.0.3.0 1.1.3.0 521 ------- null} h -t 46.5932 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1032 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.5948 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {0.0.3.0 1.1.3.0 522 ------- null} + -t 46.5948 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {0.0.3.0 1.1.3.0 522 ------- null} - -t 46.5948 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {0.0.3.0 1.1.3.0 522 ------- null} h -t 46.5948 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.5964 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1034 -a 0 -x {0.0.3.0 1.1.3.0 523 ------- null} + -t 46.5964 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1034 -a 0 -x {0.0.3.0 1.1.3.0 523 ------- null} - -t 46.5964 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1034 -a 0 -x {0.0.3.0 1.1.3.0 523 ------- null} h -t 46.5964 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1034 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.598 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {0.0.3.0 1.1.3.0 524 ------- null} + -t 46.598 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {0.0.3.0 1.1.3.0 524 ------- null} - -t 46.598 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {0.0.3.0 1.1.3.0 524 ------- null} h -t 46.598 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.5996 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1036 -a 0 -x {0.0.3.0 1.1.3.0 525 ------- null} + -t 46.5996 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1036 -a 0 -x {0.0.3.0 1.1.3.0 525 ------- null} - -t 46.5996 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1036 -a 0 -x {0.0.3.0 1.1.3.0 525 ------- null} h -t 46.5996 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1036 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.6012 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {0.0.3.0 1.1.3.0 526 ------- null} + -t 46.6012 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {0.0.3.0 1.1.3.0 526 ------- null} - -t 46.6012 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {0.0.3.0 1.1.3.0 526 ------- null} h -t 46.6012 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.6028 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1038 -a 0 -x {0.0.3.0 1.1.3.0 527 ------- null} + -t 46.6028 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1038 -a 0 -x {0.0.3.0 1.1.3.0 527 ------- null} - -t 46.6028 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1038 -a 0 -x {0.0.3.0 1.1.3.0 527 ------- null} h -t 46.6028 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1038 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.6044 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {0.0.3.0 1.1.3.0 528 ------- null} + -t 46.6044 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {0.0.3.0 1.1.3.0 528 ------- null} - -t 46.6044 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {0.0.3.0 1.1.3.0 528 ------- null} h -t 46.6044 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.606 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1040 -a 0 -x {0.0.3.0 1.1.3.0 529 ------- null} + -t 46.606 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1040 -a 0 -x {0.0.3.0 1.1.3.0 529 ------- null} - -t 46.606 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1040 -a 0 -x {0.0.3.0 1.1.3.0 529 ------- null} h -t 46.606 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1040 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.6076 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {0.0.3.0 1.1.3.0 530 ------- null} + -t 46.6076 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {0.0.3.0 1.1.3.0 530 ------- null} - -t 46.6076 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {0.0.3.0 1.1.3.0 530 ------- null} h -t 46.6076 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.6788 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1022 -a 0 -x {0.0.3.0 1.1.3.0 511 ------- null} + -t 46.6788 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1022 -a 0 -x {0.0.3.0 1.1.3.0 511 ------- null} - -t 46.6788 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1022 -a 0 -x {0.0.3.0 1.1.3.0 511 ------- null} h -t 46.6788 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1022 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.6804 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {0.0.3.0 1.1.3.0 512 ------- null} + -t 46.6804 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {0.0.3.0 1.1.3.0 512 ------- null} - -t 46.6804 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {0.0.3.0 1.1.3.0 512 ------- null} h -t 46.6804 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.682 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1024 -a 0 -x {0.0.3.0 1.1.3.0 513 ------- null} + -t 46.682 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1024 -a 0 -x {0.0.3.0 1.1.3.0 513 ------- null} - -t 46.682 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1024 -a 0 -x {0.0.3.0 1.1.3.0 513 ------- null} h -t 46.682 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1024 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.6836 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {0.0.3.0 1.1.3.0 514 ------- null} + -t 46.6836 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {0.0.3.0 1.1.3.0 514 ------- null} - -t 46.6836 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {0.0.3.0 1.1.3.0 514 ------- null} h -t 46.6836 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.6852 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1026 -a 0 -x {0.0.3.0 1.1.3.0 515 ------- null} + -t 46.6852 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1026 -a 0 -x {0.0.3.0 1.1.3.0 515 ------- null} - -t 46.6852 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1026 -a 0 -x {0.0.3.0 1.1.3.0 515 ------- null} h -t 46.6852 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1026 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.6868 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {0.0.3.0 1.1.3.0 516 ------- null} + -t 46.6868 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {0.0.3.0 1.1.3.0 516 ------- null} - -t 46.6868 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {0.0.3.0 1.1.3.0 516 ------- null} h -t 46.6868 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.6884 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1028 -a 0 -x {0.0.3.0 1.1.3.0 517 ------- null} + -t 46.6884 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1028 -a 0 -x {0.0.3.0 1.1.3.0 517 ------- null} - -t 46.6884 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1028 -a 0 -x {0.0.3.0 1.1.3.0 517 ------- null} h -t 46.6884 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1028 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.69 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {0.0.3.0 1.1.3.0 518 ------- null} + -t 46.69 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {0.0.3.0 1.1.3.0 518 ------- null} - -t 46.69 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {0.0.3.0 1.1.3.0 518 ------- null} h -t 46.69 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.6916 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1030 -a 0 -x {0.0.3.0 1.1.3.0 519 ------- null} + -t 46.6916 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1030 -a 0 -x {0.0.3.0 1.1.3.0 519 ------- null} - -t 46.6916 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1030 -a 0 -x {0.0.3.0 1.1.3.0 519 ------- null} h -t 46.6916 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1030 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.6932 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {0.0.3.0 1.1.3.0 520 ------- null} + -t 46.6932 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {0.0.3.0 1.1.3.0 520 ------- null} - -t 46.6932 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {0.0.3.0 1.1.3.0 520 ------- null} h -t 46.6932 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.6948 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1032 -a 0 -x {0.0.3.0 1.1.3.0 521 ------- null} + -t 46.6948 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1032 -a 0 -x {0.0.3.0 1.1.3.0 521 ------- null} - -t 46.6948 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1032 -a 0 -x {0.0.3.0 1.1.3.0 521 ------- null} h -t 46.6948 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1032 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.6964 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {0.0.3.0 1.1.3.0 522 ------- null} + -t 46.6964 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {0.0.3.0 1.1.3.0 522 ------- null} - -t 46.6964 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {0.0.3.0 1.1.3.0 522 ------- null} h -t 46.6964 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.698 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1034 -a 0 -x {0.0.3.0 1.1.3.0 523 ------- null} + -t 46.698 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1034 -a 0 -x {0.0.3.0 1.1.3.0 523 ------- null} - -t 46.698 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1034 -a 0 -x {0.0.3.0 1.1.3.0 523 ------- null} h -t 46.698 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1034 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.6996 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {0.0.3.0 1.1.3.0 524 ------- null} + -t 46.6996 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {0.0.3.0 1.1.3.0 524 ------- null} - -t 46.6996 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {0.0.3.0 1.1.3.0 524 ------- null} h -t 46.6996 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.7012 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1036 -a 0 -x {0.0.3.0 1.1.3.0 525 ------- null} + -t 46.7012 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1036 -a 0 -x {0.0.3.0 1.1.3.0 525 ------- null} - -t 46.7012 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1036 -a 0 -x {0.0.3.0 1.1.3.0 525 ------- null} h -t 46.7012 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1036 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.7028 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {0.0.3.0 1.1.3.0 526 ------- null} + -t 46.7028 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {0.0.3.0 1.1.3.0 526 ------- null} - -t 46.7028 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {0.0.3.0 1.1.3.0 526 ------- null} h -t 46.7028 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.7044 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1038 -a 0 -x {0.0.3.0 1.1.3.0 527 ------- null} + -t 46.7044 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1038 -a 0 -x {0.0.3.0 1.1.3.0 527 ------- null} - -t 46.7044 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1038 -a 0 -x {0.0.3.0 1.1.3.0 527 ------- null} h -t 46.7044 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1038 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.706 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {0.0.3.0 1.1.3.0 528 ------- null} + -t 46.706 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {0.0.3.0 1.1.3.0 528 ------- null} - -t 46.706 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {0.0.3.0 1.1.3.0 528 ------- null} h -t 46.706 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.7076 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1040 -a 0 -x {0.0.3.0 1.1.3.0 529 ------- null} + -t 46.7076 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1040 -a 0 -x {0.0.3.0 1.1.3.0 529 ------- null} - -t 46.7076 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1040 -a 0 -x {0.0.3.0 1.1.3.0 529 ------- null} h -t 46.7076 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1040 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.7092 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {0.0.3.0 1.1.3.0 530 ------- null} + -t 46.7092 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {0.0.3.0 1.1.3.0 530 ------- null} - -t 46.7092 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {0.0.3.0 1.1.3.0 530 ------- null} h -t 46.7092 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.7604 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1022 -a 0 -x {0.0.3.0 1.1.3.0 511 ------- null} + -t 46.7604 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1022 -a 0 -x {0.0.3.0 1.1.3.0 511 ------- null} - -t 46.7604 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1022 -a 0 -x {0.0.3.0 1.1.3.0 511 ------- null} h -t 46.7604 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1022 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.762 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {0.0.3.0 1.1.3.0 512 ------- null} + -t 46.762 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {0.0.3.0 1.1.3.0 512 ------- null} - -t 46.762 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {0.0.3.0 1.1.3.0 512 ------- null} h -t 46.762 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.7636 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1024 -a 0 -x {0.0.3.0 1.1.3.0 513 ------- null} + -t 46.7636 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1024 -a 0 -x {0.0.3.0 1.1.3.0 513 ------- null} - -t 46.7636 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1024 -a 0 -x {0.0.3.0 1.1.3.0 513 ------- null} h -t 46.7636 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1024 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.7652 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {0.0.3.0 1.1.3.0 514 ------- null} + -t 46.7652 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {0.0.3.0 1.1.3.0 514 ------- null} - -t 46.7652 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {0.0.3.0 1.1.3.0 514 ------- null} h -t 46.7652 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.7668 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1026 -a 0 -x {0.0.3.0 1.1.3.0 515 ------- null} + -t 46.7668 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1026 -a 0 -x {0.0.3.0 1.1.3.0 515 ------- null} - -t 46.7668 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1026 -a 0 -x {0.0.3.0 1.1.3.0 515 ------- null} h -t 46.7668 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1026 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.7684 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {0.0.3.0 1.1.3.0 516 ------- null} + -t 46.7684 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {0.0.3.0 1.1.3.0 516 ------- null} - -t 46.7684 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {0.0.3.0 1.1.3.0 516 ------- null} h -t 46.7684 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.77 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1028 -a 0 -x {0.0.3.0 1.1.3.0 517 ------- null} + -t 46.77 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1028 -a 0 -x {0.0.3.0 1.1.3.0 517 ------- null} - -t 46.77 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1028 -a 0 -x {0.0.3.0 1.1.3.0 517 ------- null} h -t 46.77 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1028 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.7716 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {0.0.3.0 1.1.3.0 518 ------- null} + -t 46.7716 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {0.0.3.0 1.1.3.0 518 ------- null} - -t 46.7716 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {0.0.3.0 1.1.3.0 518 ------- null} h -t 46.7716 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.7732 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1030 -a 0 -x {0.0.3.0 1.1.3.0 519 ------- null} + -t 46.7732 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1030 -a 0 -x {0.0.3.0 1.1.3.0 519 ------- null} - -t 46.7732 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1030 -a 0 -x {0.0.3.0 1.1.3.0 519 ------- null} h -t 46.7732 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1030 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.7748 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {0.0.3.0 1.1.3.0 520 ------- null} + -t 46.7748 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {0.0.3.0 1.1.3.0 520 ------- null} - -t 46.7748 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {0.0.3.0 1.1.3.0 520 ------- null} h -t 46.7748 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.7764 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1032 -a 0 -x {0.0.3.0 1.1.3.0 521 ------- null} + -t 46.7764 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1032 -a 0 -x {0.0.3.0 1.1.3.0 521 ------- null} - -t 46.7764 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1032 -a 0 -x {0.0.3.0 1.1.3.0 521 ------- null} h -t 46.7764 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1032 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.778 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {0.0.3.0 1.1.3.0 522 ------- null} + -t 46.778 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {0.0.3.0 1.1.3.0 522 ------- null} - -t 46.778 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {0.0.3.0 1.1.3.0 522 ------- null} h -t 46.778 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.7796 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1034 -a 0 -x {0.0.3.0 1.1.3.0 523 ------- null} + -t 46.7796 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1034 -a 0 -x {0.0.3.0 1.1.3.0 523 ------- null} - -t 46.7796 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1034 -a 0 -x {0.0.3.0 1.1.3.0 523 ------- null} h -t 46.7796 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1034 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.7812 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {0.0.3.0 1.1.3.0 524 ------- null} + -t 46.7812 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {0.0.3.0 1.1.3.0 524 ------- null} - -t 46.7812 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {0.0.3.0 1.1.3.0 524 ------- null} h -t 46.7812 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.7828 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1036 -a 0 -x {0.0.3.0 1.1.3.0 525 ------- null} + -t 46.7828 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1036 -a 0 -x {0.0.3.0 1.1.3.0 525 ------- null} - -t 46.7828 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1036 -a 0 -x {0.0.3.0 1.1.3.0 525 ------- null} h -t 46.7828 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1036 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.7844 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {0.0.3.0 1.1.3.0 526 ------- null} + -t 46.7844 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {0.0.3.0 1.1.3.0 526 ------- null} - -t 46.7844 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {0.0.3.0 1.1.3.0 526 ------- null} h -t 46.7844 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.786 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1038 -a 0 -x {0.0.3.0 1.1.3.0 527 ------- null} + -t 46.786 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1038 -a 0 -x {0.0.3.0 1.1.3.0 527 ------- null} - -t 46.786 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1038 -a 0 -x {0.0.3.0 1.1.3.0 527 ------- null} h -t 46.786 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1038 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.7876 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {0.0.3.0 1.1.3.0 528 ------- null} + -t 46.7876 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {0.0.3.0 1.1.3.0 528 ------- null} - -t 46.7876 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {0.0.3.0 1.1.3.0 528 ------- null} h -t 46.7876 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.7892 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1040 -a 0 -x {0.0.3.0 1.1.3.0 529 ------- null} + -t 46.7892 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1040 -a 0 -x {0.0.3.0 1.1.3.0 529 ------- null} - -t 46.7892 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1040 -a 0 -x {0.0.3.0 1.1.3.0 529 ------- null} h -t 46.7892 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1040 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.7908 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {0.0.3.0 1.1.3.0 530 ------- null} + -t 46.7908 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {0.0.3.0 1.1.3.0 530 ------- null} - -t 46.7908 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {0.0.3.0 1.1.3.0 530 ------- null} h -t 46.7908 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.842 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1022 -a 0 -x {0.0.3.0 1.1.3.0 511 ------- null} + -t 46.842 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1022 -a 0 -x {0.0.3.0 1.1.3.0 511 ------- null} - -t 46.842 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1022 -a 0 -x {0.0.3.0 1.1.3.0 511 ------- null} h -t 46.842 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1022 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.8436 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {0.0.3.0 1.1.3.0 512 ------- null} + -t 46.8436 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {0.0.3.0 1.1.3.0 512 ------- null} - -t 46.8436 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {0.0.3.0 1.1.3.0 512 ------- null} h -t 46.8436 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.8452 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1024 -a 0 -x {0.0.3.0 1.1.3.0 513 ------- null} + -t 46.8452 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1024 -a 0 -x {0.0.3.0 1.1.3.0 513 ------- null} - -t 46.8452 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1024 -a 0 -x {0.0.3.0 1.1.3.0 513 ------- null} h -t 46.8452 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1024 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.8468 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {0.0.3.0 1.1.3.0 514 ------- null} + -t 46.8468 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {0.0.3.0 1.1.3.0 514 ------- null} - -t 46.8468 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {0.0.3.0 1.1.3.0 514 ------- null} h -t 46.8468 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.8484 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1026 -a 0 -x {0.0.3.0 1.1.3.0 515 ------- null} + -t 46.8484 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1026 -a 0 -x {0.0.3.0 1.1.3.0 515 ------- null} - -t 46.8484 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1026 -a 0 -x {0.0.3.0 1.1.3.0 515 ------- null} h -t 46.8484 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1026 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.85 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {0.0.3.0 1.1.3.0 516 ------- null} + -t 46.85 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {0.0.3.0 1.1.3.0 516 ------- null} - -t 46.85 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {0.0.3.0 1.1.3.0 516 ------- null} h -t 46.85 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.8516 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1028 -a 0 -x {0.0.3.0 1.1.3.0 517 ------- null} + -t 46.8516 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1028 -a 0 -x {0.0.3.0 1.1.3.0 517 ------- null} - -t 46.8516 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1028 -a 0 -x {0.0.3.0 1.1.3.0 517 ------- null} h -t 46.8516 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1028 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.8532 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {0.0.3.0 1.1.3.0 518 ------- null} + -t 46.8532 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {0.0.3.0 1.1.3.0 518 ------- null} - -t 46.8532 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {0.0.3.0 1.1.3.0 518 ------- null} h -t 46.8532 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.8548 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1030 -a 0 -x {0.0.3.0 1.1.3.0 519 ------- null} + -t 46.8548 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1030 -a 0 -x {0.0.3.0 1.1.3.0 519 ------- null} - -t 46.8548 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1030 -a 0 -x {0.0.3.0 1.1.3.0 519 ------- null} h -t 46.8548 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1030 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.8564 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {0.0.3.0 1.1.3.0 520 ------- null} + -t 46.8564 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {0.0.3.0 1.1.3.0 520 ------- null} - -t 46.8564 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {0.0.3.0 1.1.3.0 520 ------- null} h -t 46.8564 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.858 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1032 -a 0 -x {0.0.3.0 1.1.3.0 521 ------- null} + -t 46.858 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1032 -a 0 -x {0.0.3.0 1.1.3.0 521 ------- null} - -t 46.858 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1032 -a 0 -x {0.0.3.0 1.1.3.0 521 ------- null} h -t 46.858 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1032 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.8596 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {0.0.3.0 1.1.3.0 522 ------- null} + -t 46.8596 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {0.0.3.0 1.1.3.0 522 ------- null} - -t 46.8596 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {0.0.3.0 1.1.3.0 522 ------- null} h -t 46.8596 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.8612 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1034 -a 0 -x {0.0.3.0 1.1.3.0 523 ------- null} + -t 46.8612 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1034 -a 0 -x {0.0.3.0 1.1.3.0 523 ------- null} - -t 46.8612 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1034 -a 0 -x {0.0.3.0 1.1.3.0 523 ------- null} h -t 46.8612 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1034 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.8628 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {0.0.3.0 1.1.3.0 524 ------- null} + -t 46.8628 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {0.0.3.0 1.1.3.0 524 ------- null} - -t 46.8628 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {0.0.3.0 1.1.3.0 524 ------- null} h -t 46.8628 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.8644 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1036 -a 0 -x {0.0.3.0 1.1.3.0 525 ------- null} + -t 46.8644 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1036 -a 0 -x {0.0.3.0 1.1.3.0 525 ------- null} - -t 46.8644 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1036 -a 0 -x {0.0.3.0 1.1.3.0 525 ------- null} h -t 46.8644 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1036 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.866 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {0.0.3.0 1.1.3.0 526 ------- null} + -t 46.866 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {0.0.3.0 1.1.3.0 526 ------- null} - -t 46.866 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {0.0.3.0 1.1.3.0 526 ------- null} h -t 46.866 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.8676 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1038 -a 0 -x {0.0.3.0 1.1.3.0 527 ------- null} + -t 46.8676 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1038 -a 0 -x {0.0.3.0 1.1.3.0 527 ------- null} - -t 46.8676 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1038 -a 0 -x {0.0.3.0 1.1.3.0 527 ------- null} h -t 46.8676 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1038 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.8692 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {0.0.3.0 1.1.3.0 528 ------- null} + -t 46.8692 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {0.0.3.0 1.1.3.0 528 ------- null} - -t 46.8692 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {0.0.3.0 1.1.3.0 528 ------- null} h -t 46.8692 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.8708 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1040 -a 0 -x {0.0.3.0 1.1.3.0 529 ------- null} + -t 46.8708 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1040 -a 0 -x {0.0.3.0 1.1.3.0 529 ------- null} - -t 46.8708 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1040 -a 0 -x {0.0.3.0 1.1.3.0 529 ------- null} h -t 46.8708 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1040 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.8724 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {0.0.3.0 1.1.3.0 530 ------- null} + -t 46.8724 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {0.0.3.0 1.1.3.0 530 ------- null} - -t 46.8724 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {0.0.3.0 1.1.3.0 530 ------- null} h -t 46.8724 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 46.9036 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1022 -a 0 -x {0.0.3.0 1.1.3.0 511 ------- null} + -t 46.9036 -s 21 -d 28 -p ack -e 40 -c 0 -i 1042 -a 1 -x {1.1.3.0 0.0.3.0 511 ------- null} - -t 46.9036 -s 21 -d 28 -p ack -e 40 -c 0 -i 1042 -a 1 -x {1.1.3.0 0.0.3.0 511 ------- null} h -t 46.9036 -s 21 -d 28 -p ack -e 40 -c 0 -i 1042 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 46.9052 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {0.0.3.0 1.1.3.0 512 ------- null} + -t 46.9052 -s 21 -d 28 -p ack -e 40 -c 0 -i 1043 -a 1 -x {1.1.3.0 0.0.3.0 512 ------- null} - -t 46.9052 -s 21 -d 28 -p ack -e 40 -c 0 -i 1043 -a 1 -x {1.1.3.0 0.0.3.0 512 ------- null} h -t 46.9052 -s 21 -d 28 -p ack -e 40 -c 0 -i 1043 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 46.9068 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1024 -a 0 -x {0.0.3.0 1.1.3.0 513 ------- null} + -t 46.9068 -s 21 -d 28 -p ack -e 40 -c 0 -i 1044 -a 1 -x {1.1.3.0 0.0.3.0 513 ------- null} - -t 46.9068 -s 21 -d 28 -p ack -e 40 -c 0 -i 1044 -a 1 -x {1.1.3.0 0.0.3.0 513 ------- null} h -t 46.9068 -s 21 -d 28 -p ack -e 40 -c 0 -i 1044 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 46.9084 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {0.0.3.0 1.1.3.0 514 ------- null} + -t 46.9084 -s 21 -d 28 -p ack -e 40 -c 0 -i 1045 -a 1 -x {1.1.3.0 0.0.3.0 514 ------- null} - -t 46.9084 -s 21 -d 28 -p ack -e 40 -c 0 -i 1045 -a 1 -x {1.1.3.0 0.0.3.0 514 ------- null} h -t 46.9084 -s 21 -d 28 -p ack -e 40 -c 0 -i 1045 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 46.91 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1026 -a 0 -x {0.0.3.0 1.1.3.0 515 ------- null} + -t 46.91 -s 21 -d 28 -p ack -e 40 -c 0 -i 1046 -a 1 -x {1.1.3.0 0.0.3.0 515 ------- null} - -t 46.91 -s 21 -d 28 -p ack -e 40 -c 0 -i 1046 -a 1 -x {1.1.3.0 0.0.3.0 515 ------- null} h -t 46.91 -s 21 -d 28 -p ack -e 40 -c 0 -i 1046 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 46.9116 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {0.0.3.0 1.1.3.0 516 ------- null} + -t 46.9116 -s 21 -d 28 -p ack -e 40 -c 0 -i 1047 -a 1 -x {1.1.3.0 0.0.3.0 516 ------- null} - -t 46.9116 -s 21 -d 28 -p ack -e 40 -c 0 -i 1047 -a 1 -x {1.1.3.0 0.0.3.0 516 ------- null} h -t 46.9116 -s 21 -d 28 -p ack -e 40 -c 0 -i 1047 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 46.9132 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1028 -a 0 -x {0.0.3.0 1.1.3.0 517 ------- null} + -t 46.9132 -s 21 -d 28 -p ack -e 40 -c 0 -i 1048 -a 1 -x {1.1.3.0 0.0.3.0 517 ------- null} - -t 46.9132 -s 21 -d 28 -p ack -e 40 -c 0 -i 1048 -a 1 -x {1.1.3.0 0.0.3.0 517 ------- null} h -t 46.9132 -s 21 -d 28 -p ack -e 40 -c 0 -i 1048 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 46.9148 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {0.0.3.0 1.1.3.0 518 ------- null} + -t 46.9148 -s 21 -d 28 -p ack -e 40 -c 0 -i 1049 -a 1 -x {1.1.3.0 0.0.3.0 518 ------- null} - -t 46.9148 -s 21 -d 28 -p ack -e 40 -c 0 -i 1049 -a 1 -x {1.1.3.0 0.0.3.0 518 ------- null} h -t 46.9148 -s 21 -d 28 -p ack -e 40 -c 0 -i 1049 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 46.9164 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1030 -a 0 -x {0.0.3.0 1.1.3.0 519 ------- null} + -t 46.9164 -s 21 -d 28 -p ack -e 40 -c 0 -i 1050 -a 1 -x {1.1.3.0 0.0.3.0 519 ------- null} - -t 46.9164 -s 21 -d 28 -p ack -e 40 -c 0 -i 1050 -a 1 -x {1.1.3.0 0.0.3.0 519 ------- null} h -t 46.9164 -s 21 -d 28 -p ack -e 40 -c 0 -i 1050 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 46.918 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {0.0.3.0 1.1.3.0 520 ------- null} + -t 46.918 -s 21 -d 28 -p ack -e 40 -c 0 -i 1051 -a 1 -x {1.1.3.0 0.0.3.0 520 ------- null} - -t 46.918 -s 21 -d 28 -p ack -e 40 -c 0 -i 1051 -a 1 -x {1.1.3.0 0.0.3.0 520 ------- null} h -t 46.918 -s 21 -d 28 -p ack -e 40 -c 0 -i 1051 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 46.9196 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1032 -a 0 -x {0.0.3.0 1.1.3.0 521 ------- null} + -t 46.9196 -s 21 -d 28 -p ack -e 40 -c 0 -i 1052 -a 1 -x {1.1.3.0 0.0.3.0 521 ------- null} - -t 46.9196 -s 21 -d 28 -p ack -e 40 -c 0 -i 1052 -a 1 -x {1.1.3.0 0.0.3.0 521 ------- null} h -t 46.9196 -s 21 -d 28 -p ack -e 40 -c 0 -i 1052 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 46.9212 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {0.0.3.0 1.1.3.0 522 ------- null} + -t 46.9212 -s 21 -d 28 -p ack -e 40 -c 0 -i 1053 -a 1 -x {1.1.3.0 0.0.3.0 522 ------- null} - -t 46.9212 -s 21 -d 28 -p ack -e 40 -c 0 -i 1053 -a 1 -x {1.1.3.0 0.0.3.0 522 ------- null} h -t 46.9212 -s 21 -d 28 -p ack -e 40 -c 0 -i 1053 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 46.9228 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1034 -a 0 -x {0.0.3.0 1.1.3.0 523 ------- null} + -t 46.9228 -s 21 -d 28 -p ack -e 40 -c 0 -i 1054 -a 1 -x {1.1.3.0 0.0.3.0 523 ------- null} - -t 46.9228 -s 21 -d 28 -p ack -e 40 -c 0 -i 1054 -a 1 -x {1.1.3.0 0.0.3.0 523 ------- null} h -t 46.9228 -s 21 -d 28 -p ack -e 40 -c 0 -i 1054 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 46.9244 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {0.0.3.0 1.1.3.0 524 ------- null} + -t 46.9244 -s 21 -d 28 -p ack -e 40 -c 0 -i 1055 -a 1 -x {1.1.3.0 0.0.3.0 524 ------- null} - -t 46.9244 -s 21 -d 28 -p ack -e 40 -c 0 -i 1055 -a 1 -x {1.1.3.0 0.0.3.0 524 ------- null} h -t 46.9244 -s 21 -d 28 -p ack -e 40 -c 0 -i 1055 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 46.926 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1036 -a 0 -x {0.0.3.0 1.1.3.0 525 ------- null} + -t 46.926 -s 21 -d 28 -p ack -e 40 -c 0 -i 1056 -a 1 -x {1.1.3.0 0.0.3.0 525 ------- null} - -t 46.926 -s 21 -d 28 -p ack -e 40 -c 0 -i 1056 -a 1 -x {1.1.3.0 0.0.3.0 525 ------- null} h -t 46.926 -s 21 -d 28 -p ack -e 40 -c 0 -i 1056 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 46.9276 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {0.0.3.0 1.1.3.0 526 ------- null} + -t 46.9276 -s 21 -d 28 -p ack -e 40 -c 0 -i 1057 -a 1 -x {1.1.3.0 0.0.3.0 526 ------- null} - -t 46.9276 -s 21 -d 28 -p ack -e 40 -c 0 -i 1057 -a 1 -x {1.1.3.0 0.0.3.0 526 ------- null} h -t 46.9276 -s 21 -d 28 -p ack -e 40 -c 0 -i 1057 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 46.9292 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1038 -a 0 -x {0.0.3.0 1.1.3.0 527 ------- null} + -t 46.9292 -s 21 -d 28 -p ack -e 40 -c 0 -i 1058 -a 1 -x {1.1.3.0 0.0.3.0 527 ------- null} - -t 46.9292 -s 21 -d 28 -p ack -e 40 -c 0 -i 1058 -a 1 -x {1.1.3.0 0.0.3.0 527 ------- null} h -t 46.9292 -s 21 -d 28 -p ack -e 40 -c 0 -i 1058 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 46.9308 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {0.0.3.0 1.1.3.0 528 ------- null} + -t 46.9308 -s 21 -d 28 -p ack -e 40 -c 0 -i 1059 -a 1 -x {1.1.3.0 0.0.3.0 528 ------- null} - -t 46.9308 -s 21 -d 28 -p ack -e 40 -c 0 -i 1059 -a 1 -x {1.1.3.0 0.0.3.0 528 ------- null} h -t 46.9308 -s 21 -d 28 -p ack -e 40 -c 0 -i 1059 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 46.9324 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1040 -a 0 -x {0.0.3.0 1.1.3.0 529 ------- null} + -t 46.9324 -s 21 -d 28 -p ack -e 40 -c 0 -i 1060 -a 1 -x {1.1.3.0 0.0.3.0 529 ------- null} - -t 46.9324 -s 21 -d 28 -p ack -e 40 -c 0 -i 1060 -a 1 -x {1.1.3.0 0.0.3.0 529 ------- null} h -t 46.9324 -s 21 -d 28 -p ack -e 40 -c 0 -i 1060 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 46.934 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {0.0.3.0 1.1.3.0 530 ------- null} + -t 46.934 -s 21 -d 28 -p ack -e 40 -c 0 -i 1061 -a 1 -x {1.1.3.0 0.0.3.0 530 ------- null} - -t 46.934 -s 21 -d 28 -p ack -e 40 -c 0 -i 1061 -a 1 -x {1.1.3.0 0.0.3.0 530 ------- null} h -t 46.934 -s 21 -d 28 -p ack -e 40 -c 0 -i 1061 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 47.2536 -s 21 -d 28 -p ack -e 40 -c 0 -i 1042 -a 1 -x {1.1.3.0 0.0.3.0 511 ------- null} + -t 47.2536 -s 28 -d 1 -p ack -e 40 -c 0 -i 1042 -a 1 -x {1.1.3.0 0.0.3.0 511 ------- null} - -t 47.2536 -s 28 -d 1 -p ack -e 40 -c 0 -i 1042 -a 1 -x {1.1.3.0 0.0.3.0 511 ------- null} h -t 47.2536 -s 28 -d 1 -p ack -e 40 -c 0 -i 1042 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 47.2552 -s 21 -d 28 -p ack -e 40 -c 0 -i 1043 -a 1 -x {1.1.3.0 0.0.3.0 512 ------- null} + -t 47.2552 -s 28 -d 1 -p ack -e 40 -c 0 -i 1043 -a 1 -x {1.1.3.0 0.0.3.0 512 ------- null} - -t 47.2552 -s 28 -d 1 -p ack -e 40 -c 0 -i 1043 -a 1 -x {1.1.3.0 0.0.3.0 512 ------- null} h -t 47.2552 -s 28 -d 1 -p ack -e 40 -c 0 -i 1043 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 47.2568 -s 21 -d 28 -p ack -e 40 -c 0 -i 1044 -a 1 -x {1.1.3.0 0.0.3.0 513 ------- null} + -t 47.2568 -s 28 -d 1 -p ack -e 40 -c 0 -i 1044 -a 1 -x {1.1.3.0 0.0.3.0 513 ------- null} - -t 47.2568 -s 28 -d 1 -p ack -e 40 -c 0 -i 1044 -a 1 -x {1.1.3.0 0.0.3.0 513 ------- null} h -t 47.2568 -s 28 -d 1 -p ack -e 40 -c 0 -i 1044 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 47.2584 -s 21 -d 28 -p ack -e 40 -c 0 -i 1045 -a 1 -x {1.1.3.0 0.0.3.0 514 ------- null} + -t 47.2584 -s 28 -d 1 -p ack -e 40 -c 0 -i 1045 -a 1 -x {1.1.3.0 0.0.3.0 514 ------- null} - -t 47.2584 -s 28 -d 1 -p ack -e 40 -c 0 -i 1045 -a 1 -x {1.1.3.0 0.0.3.0 514 ------- null} h -t 47.2584 -s 28 -d 1 -p ack -e 40 -c 0 -i 1045 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 47.26 -s 21 -d 28 -p ack -e 40 -c 0 -i 1046 -a 1 -x {1.1.3.0 0.0.3.0 515 ------- null} + -t 47.26 -s 28 -d 1 -p ack -e 40 -c 0 -i 1046 -a 1 -x {1.1.3.0 0.0.3.0 515 ------- null} - -t 47.26 -s 28 -d 1 -p ack -e 40 -c 0 -i 1046 -a 1 -x {1.1.3.0 0.0.3.0 515 ------- null} h -t 47.26 -s 28 -d 1 -p ack -e 40 -c 0 -i 1046 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 47.2616 -s 21 -d 28 -p ack -e 40 -c 0 -i 1047 -a 1 -x {1.1.3.0 0.0.3.0 516 ------- null} + -t 47.2616 -s 28 -d 1 -p ack -e 40 -c 0 -i 1047 -a 1 -x {1.1.3.0 0.0.3.0 516 ------- null} - -t 47.2616 -s 28 -d 1 -p ack -e 40 -c 0 -i 1047 -a 1 -x {1.1.3.0 0.0.3.0 516 ------- null} h -t 47.2616 -s 28 -d 1 -p ack -e 40 -c 0 -i 1047 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 47.2632 -s 21 -d 28 -p ack -e 40 -c 0 -i 1048 -a 1 -x {1.1.3.0 0.0.3.0 517 ------- null} + -t 47.2632 -s 28 -d 1 -p ack -e 40 -c 0 -i 1048 -a 1 -x {1.1.3.0 0.0.3.0 517 ------- null} - -t 47.2632 -s 28 -d 1 -p ack -e 40 -c 0 -i 1048 -a 1 -x {1.1.3.0 0.0.3.0 517 ------- null} h -t 47.2632 -s 28 -d 1 -p ack -e 40 -c 0 -i 1048 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 47.2648 -s 21 -d 28 -p ack -e 40 -c 0 -i 1049 -a 1 -x {1.1.3.0 0.0.3.0 518 ------- null} + -t 47.2648 -s 28 -d 1 -p ack -e 40 -c 0 -i 1049 -a 1 -x {1.1.3.0 0.0.3.0 518 ------- null} - -t 47.2648 -s 28 -d 1 -p ack -e 40 -c 0 -i 1049 -a 1 -x {1.1.3.0 0.0.3.0 518 ------- null} h -t 47.2648 -s 28 -d 1 -p ack -e 40 -c 0 -i 1049 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 47.2664 -s 21 -d 28 -p ack -e 40 -c 0 -i 1050 -a 1 -x {1.1.3.0 0.0.3.0 519 ------- null} + -t 47.2664 -s 28 -d 1 -p ack -e 40 -c 0 -i 1050 -a 1 -x {1.1.3.0 0.0.3.0 519 ------- null} - -t 47.2664 -s 28 -d 1 -p ack -e 40 -c 0 -i 1050 -a 1 -x {1.1.3.0 0.0.3.0 519 ------- null} h -t 47.2664 -s 28 -d 1 -p ack -e 40 -c 0 -i 1050 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 47.268 -s 21 -d 28 -p ack -e 40 -c 0 -i 1051 -a 1 -x {1.1.3.0 0.0.3.0 520 ------- null} + -t 47.268 -s 28 -d 1 -p ack -e 40 -c 0 -i 1051 -a 1 -x {1.1.3.0 0.0.3.0 520 ------- null} - -t 47.268 -s 28 -d 1 -p ack -e 40 -c 0 -i 1051 -a 1 -x {1.1.3.0 0.0.3.0 520 ------- null} h -t 47.268 -s 28 -d 1 -p ack -e 40 -c 0 -i 1051 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 47.2696 -s 21 -d 28 -p ack -e 40 -c 0 -i 1052 -a 1 -x {1.1.3.0 0.0.3.0 521 ------- null} + -t 47.2696 -s 28 -d 1 -p ack -e 40 -c 0 -i 1052 -a 1 -x {1.1.3.0 0.0.3.0 521 ------- null} - -t 47.2696 -s 28 -d 1 -p ack -e 40 -c 0 -i 1052 -a 1 -x {1.1.3.0 0.0.3.0 521 ------- null} h -t 47.2696 -s 28 -d 1 -p ack -e 40 -c 0 -i 1052 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 47.2712 -s 21 -d 28 -p ack -e 40 -c 0 -i 1053 -a 1 -x {1.1.3.0 0.0.3.0 522 ------- null} + -t 47.2712 -s 28 -d 1 -p ack -e 40 -c 0 -i 1053 -a 1 -x {1.1.3.0 0.0.3.0 522 ------- null} - -t 47.2712 -s 28 -d 1 -p ack -e 40 -c 0 -i 1053 -a 1 -x {1.1.3.0 0.0.3.0 522 ------- null} h -t 47.2712 -s 28 -d 1 -p ack -e 40 -c 0 -i 1053 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 47.2728 -s 21 -d 28 -p ack -e 40 -c 0 -i 1054 -a 1 -x {1.1.3.0 0.0.3.0 523 ------- null} + -t 47.2728 -s 28 -d 1 -p ack -e 40 -c 0 -i 1054 -a 1 -x {1.1.3.0 0.0.3.0 523 ------- null} - -t 47.2728 -s 28 -d 1 -p ack -e 40 -c 0 -i 1054 -a 1 -x {1.1.3.0 0.0.3.0 523 ------- null} h -t 47.2728 -s 28 -d 1 -p ack -e 40 -c 0 -i 1054 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 47.2744 -s 21 -d 28 -p ack -e 40 -c 0 -i 1055 -a 1 -x {1.1.3.0 0.0.3.0 524 ------- null} + -t 47.2744 -s 28 -d 1 -p ack -e 40 -c 0 -i 1055 -a 1 -x {1.1.3.0 0.0.3.0 524 ------- null} - -t 47.2744 -s 28 -d 1 -p ack -e 40 -c 0 -i 1055 -a 1 -x {1.1.3.0 0.0.3.0 524 ------- null} h -t 47.2744 -s 28 -d 1 -p ack -e 40 -c 0 -i 1055 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 47.276 -s 21 -d 28 -p ack -e 40 -c 0 -i 1056 -a 1 -x {1.1.3.0 0.0.3.0 525 ------- null} + -t 47.276 -s 28 -d 1 -p ack -e 40 -c 0 -i 1056 -a 1 -x {1.1.3.0 0.0.3.0 525 ------- null} - -t 47.276 -s 28 -d 1 -p ack -e 40 -c 0 -i 1056 -a 1 -x {1.1.3.0 0.0.3.0 525 ------- null} h -t 47.276 -s 28 -d 1 -p ack -e 40 -c 0 -i 1056 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 47.2776 -s 21 -d 28 -p ack -e 40 -c 0 -i 1057 -a 1 -x {1.1.3.0 0.0.3.0 526 ------- null} + -t 47.2776 -s 28 -d 1 -p ack -e 40 -c 0 -i 1057 -a 1 -x {1.1.3.0 0.0.3.0 526 ------- null} - -t 47.2776 -s 28 -d 1 -p ack -e 40 -c 0 -i 1057 -a 1 -x {1.1.3.0 0.0.3.0 526 ------- null} h -t 47.2776 -s 28 -d 1 -p ack -e 40 -c 0 -i 1057 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 47.2792 -s 21 -d 28 -p ack -e 40 -c 0 -i 1058 -a 1 -x {1.1.3.0 0.0.3.0 527 ------- null} + -t 47.2792 -s 28 -d 1 -p ack -e 40 -c 0 -i 1058 -a 1 -x {1.1.3.0 0.0.3.0 527 ------- null} - -t 47.2792 -s 28 -d 1 -p ack -e 40 -c 0 -i 1058 -a 1 -x {1.1.3.0 0.0.3.0 527 ------- null} h -t 47.2792 -s 28 -d 1 -p ack -e 40 -c 0 -i 1058 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 47.2808 -s 21 -d 28 -p ack -e 40 -c 0 -i 1059 -a 1 -x {1.1.3.0 0.0.3.0 528 ------- null} + -t 47.2808 -s 28 -d 1 -p ack -e 40 -c 0 -i 1059 -a 1 -x {1.1.3.0 0.0.3.0 528 ------- null} - -t 47.2808 -s 28 -d 1 -p ack -e 40 -c 0 -i 1059 -a 1 -x {1.1.3.0 0.0.3.0 528 ------- null} h -t 47.2808 -s 28 -d 1 -p ack -e 40 -c 0 -i 1059 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 47.2824 -s 21 -d 28 -p ack -e 40 -c 0 -i 1060 -a 1 -x {1.1.3.0 0.0.3.0 529 ------- null} + -t 47.2824 -s 28 -d 1 -p ack -e 40 -c 0 -i 1060 -a 1 -x {1.1.3.0 0.0.3.0 529 ------- null} - -t 47.2824 -s 28 -d 1 -p ack -e 40 -c 0 -i 1060 -a 1 -x {1.1.3.0 0.0.3.0 529 ------- null} h -t 47.2824 -s 28 -d 1 -p ack -e 40 -c 0 -i 1060 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 47.284 -s 21 -d 28 -p ack -e 40 -c 0 -i 1061 -a 1 -x {1.1.3.0 0.0.3.0 530 ------- null} + -t 47.284 -s 28 -d 1 -p ack -e 40 -c 0 -i 1061 -a 1 -x {1.1.3.0 0.0.3.0 530 ------- null} - -t 47.284 -s 28 -d 1 -p ack -e 40 -c 0 -i 1061 -a 1 -x {1.1.3.0 0.0.3.0 530 ------- null} h -t 47.284 -s 28 -d 1 -p ack -e 40 -c 0 -i 1061 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 47.5537 -s 28 -d 1 -p ack -e 40 -c 0 -i 1042 -a 1 -x {1.1.3.0 0.0.3.0 511 ------- null} + -t 47.5537 -s 1 -d 3 -p ack -e 40 -c 0 -i 1042 -a 1 -x {1.1.3.0 0.0.3.0 511 ------- null} - -t 47.5537 -s 1 -d 3 -p ack -e 40 -c 0 -i 1042 -a 1 -x {1.1.3.0 0.0.3.0 511 ------- null} h -t 47.5537 -s 1 -d 3 -p ack -e 40 -c 0 -i 1042 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 47.5553 -s 28 -d 1 -p ack -e 40 -c 0 -i 1043 -a 1 -x {1.1.3.0 0.0.3.0 512 ------- null} + -t 47.5553 -s 1 -d 3 -p ack -e 40 -c 0 -i 1043 -a 1 -x {1.1.3.0 0.0.3.0 512 ------- null} - -t 47.5553 -s 1 -d 3 -p ack -e 40 -c 0 -i 1043 -a 1 -x {1.1.3.0 0.0.3.0 512 ------- null} h -t 47.5553 -s 1 -d 3 -p ack -e 40 -c 0 -i 1043 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 47.5569 -s 28 -d 1 -p ack -e 40 -c 0 -i 1044 -a 1 -x {1.1.3.0 0.0.3.0 513 ------- null} + -t 47.5569 -s 1 -d 3 -p ack -e 40 -c 0 -i 1044 -a 1 -x {1.1.3.0 0.0.3.0 513 ------- null} - -t 47.5569 -s 1 -d 3 -p ack -e 40 -c 0 -i 1044 -a 1 -x {1.1.3.0 0.0.3.0 513 ------- null} h -t 47.5569 -s 1 -d 3 -p ack -e 40 -c 0 -i 1044 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 47.5585 -s 28 -d 1 -p ack -e 40 -c 0 -i 1045 -a 1 -x {1.1.3.0 0.0.3.0 514 ------- null} + -t 47.5585 -s 1 -d 3 -p ack -e 40 -c 0 -i 1045 -a 1 -x {1.1.3.0 0.0.3.0 514 ------- null} - -t 47.5585 -s 1 -d 3 -p ack -e 40 -c 0 -i 1045 -a 1 -x {1.1.3.0 0.0.3.0 514 ------- null} h -t 47.5585 -s 1 -d 3 -p ack -e 40 -c 0 -i 1045 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 47.5601 -s 28 -d 1 -p ack -e 40 -c 0 -i 1046 -a 1 -x {1.1.3.0 0.0.3.0 515 ------- null} + -t 47.5601 -s 1 -d 3 -p ack -e 40 -c 0 -i 1046 -a 1 -x {1.1.3.0 0.0.3.0 515 ------- null} - -t 47.5601 -s 1 -d 3 -p ack -e 40 -c 0 -i 1046 -a 1 -x {1.1.3.0 0.0.3.0 515 ------- null} h -t 47.5601 -s 1 -d 3 -p ack -e 40 -c 0 -i 1046 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 47.5617 -s 28 -d 1 -p ack -e 40 -c 0 -i 1047 -a 1 -x {1.1.3.0 0.0.3.0 516 ------- null} + -t 47.5617 -s 1 -d 3 -p ack -e 40 -c 0 -i 1047 -a 1 -x {1.1.3.0 0.0.3.0 516 ------- null} - -t 47.5617 -s 1 -d 3 -p ack -e 40 -c 0 -i 1047 -a 1 -x {1.1.3.0 0.0.3.0 516 ------- null} h -t 47.5617 -s 1 -d 3 -p ack -e 40 -c 0 -i 1047 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 47.5633 -s 28 -d 1 -p ack -e 40 -c 0 -i 1048 -a 1 -x {1.1.3.0 0.0.3.0 517 ------- null} + -t 47.5633 -s 1 -d 3 -p ack -e 40 -c 0 -i 1048 -a 1 -x {1.1.3.0 0.0.3.0 517 ------- null} - -t 47.5633 -s 1 -d 3 -p ack -e 40 -c 0 -i 1048 -a 1 -x {1.1.3.0 0.0.3.0 517 ------- null} h -t 47.5633 -s 1 -d 3 -p ack -e 40 -c 0 -i 1048 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 47.5649 -s 28 -d 1 -p ack -e 40 -c 0 -i 1049 -a 1 -x {1.1.3.0 0.0.3.0 518 ------- null} + -t 47.5649 -s 1 -d 3 -p ack -e 40 -c 0 -i 1049 -a 1 -x {1.1.3.0 0.0.3.0 518 ------- null} - -t 47.5649 -s 1 -d 3 -p ack -e 40 -c 0 -i 1049 -a 1 -x {1.1.3.0 0.0.3.0 518 ------- null} h -t 47.5649 -s 1 -d 3 -p ack -e 40 -c 0 -i 1049 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 47.5665 -s 28 -d 1 -p ack -e 40 -c 0 -i 1050 -a 1 -x {1.1.3.0 0.0.3.0 519 ------- null} + -t 47.5665 -s 1 -d 3 -p ack -e 40 -c 0 -i 1050 -a 1 -x {1.1.3.0 0.0.3.0 519 ------- null} - -t 47.5665 -s 1 -d 3 -p ack -e 40 -c 0 -i 1050 -a 1 -x {1.1.3.0 0.0.3.0 519 ------- null} h -t 47.5665 -s 1 -d 3 -p ack -e 40 -c 0 -i 1050 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 47.5681 -s 28 -d 1 -p ack -e 40 -c 0 -i 1051 -a 1 -x {1.1.3.0 0.0.3.0 520 ------- null} + -t 47.5681 -s 1 -d 3 -p ack -e 40 -c 0 -i 1051 -a 1 -x {1.1.3.0 0.0.3.0 520 ------- null} - -t 47.5681 -s 1 -d 3 -p ack -e 40 -c 0 -i 1051 -a 1 -x {1.1.3.0 0.0.3.0 520 ------- null} h -t 47.5681 -s 1 -d 3 -p ack -e 40 -c 0 -i 1051 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 47.5697 -s 28 -d 1 -p ack -e 40 -c 0 -i 1052 -a 1 -x {1.1.3.0 0.0.3.0 521 ------- null} + -t 47.5697 -s 1 -d 3 -p ack -e 40 -c 0 -i 1052 -a 1 -x {1.1.3.0 0.0.3.0 521 ------- null} - -t 47.5697 -s 1 -d 3 -p ack -e 40 -c 0 -i 1052 -a 1 -x {1.1.3.0 0.0.3.0 521 ------- null} h -t 47.5697 -s 1 -d 3 -p ack -e 40 -c 0 -i 1052 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 47.5713 -s 28 -d 1 -p ack -e 40 -c 0 -i 1053 -a 1 -x {1.1.3.0 0.0.3.0 522 ------- null} + -t 47.5713 -s 1 -d 3 -p ack -e 40 -c 0 -i 1053 -a 1 -x {1.1.3.0 0.0.3.0 522 ------- null} - -t 47.5713 -s 1 -d 3 -p ack -e 40 -c 0 -i 1053 -a 1 -x {1.1.3.0 0.0.3.0 522 ------- null} h -t 47.5713 -s 1 -d 3 -p ack -e 40 -c 0 -i 1053 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 47.5729 -s 28 -d 1 -p ack -e 40 -c 0 -i 1054 -a 1 -x {1.1.3.0 0.0.3.0 523 ------- null} + -t 47.5729 -s 1 -d 3 -p ack -e 40 -c 0 -i 1054 -a 1 -x {1.1.3.0 0.0.3.0 523 ------- null} - -t 47.5729 -s 1 -d 3 -p ack -e 40 -c 0 -i 1054 -a 1 -x {1.1.3.0 0.0.3.0 523 ------- null} h -t 47.5729 -s 1 -d 3 -p ack -e 40 -c 0 -i 1054 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 47.5745 -s 28 -d 1 -p ack -e 40 -c 0 -i 1055 -a 1 -x {1.1.3.0 0.0.3.0 524 ------- null} + -t 47.5745 -s 1 -d 3 -p ack -e 40 -c 0 -i 1055 -a 1 -x {1.1.3.0 0.0.3.0 524 ------- null} - -t 47.5745 -s 1 -d 3 -p ack -e 40 -c 0 -i 1055 -a 1 -x {1.1.3.0 0.0.3.0 524 ------- null} h -t 47.5745 -s 1 -d 3 -p ack -e 40 -c 0 -i 1055 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 47.5761 -s 28 -d 1 -p ack -e 40 -c 0 -i 1056 -a 1 -x {1.1.3.0 0.0.3.0 525 ------- null} + -t 47.5761 -s 1 -d 3 -p ack -e 40 -c 0 -i 1056 -a 1 -x {1.1.3.0 0.0.3.0 525 ------- null} - -t 47.5761 -s 1 -d 3 -p ack -e 40 -c 0 -i 1056 -a 1 -x {1.1.3.0 0.0.3.0 525 ------- null} h -t 47.5761 -s 1 -d 3 -p ack -e 40 -c 0 -i 1056 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 47.5777 -s 28 -d 1 -p ack -e 40 -c 0 -i 1057 -a 1 -x {1.1.3.0 0.0.3.0 526 ------- null} + -t 47.5777 -s 1 -d 3 -p ack -e 40 -c 0 -i 1057 -a 1 -x {1.1.3.0 0.0.3.0 526 ------- null} - -t 47.5777 -s 1 -d 3 -p ack -e 40 -c 0 -i 1057 -a 1 -x {1.1.3.0 0.0.3.0 526 ------- null} h -t 47.5777 -s 1 -d 3 -p ack -e 40 -c 0 -i 1057 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 47.5793 -s 28 -d 1 -p ack -e 40 -c 0 -i 1058 -a 1 -x {1.1.3.0 0.0.3.0 527 ------- null} + -t 47.5793 -s 1 -d 3 -p ack -e 40 -c 0 -i 1058 -a 1 -x {1.1.3.0 0.0.3.0 527 ------- null} - -t 47.5793 -s 1 -d 3 -p ack -e 40 -c 0 -i 1058 -a 1 -x {1.1.3.0 0.0.3.0 527 ------- null} h -t 47.5793 -s 1 -d 3 -p ack -e 40 -c 0 -i 1058 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 47.5809 -s 28 -d 1 -p ack -e 40 -c 0 -i 1059 -a 1 -x {1.1.3.0 0.0.3.0 528 ------- null} + -t 47.5809 -s 1 -d 3 -p ack -e 40 -c 0 -i 1059 -a 1 -x {1.1.3.0 0.0.3.0 528 ------- null} - -t 47.5809 -s 1 -d 3 -p ack -e 40 -c 0 -i 1059 -a 1 -x {1.1.3.0 0.0.3.0 528 ------- null} h -t 47.5809 -s 1 -d 3 -p ack -e 40 -c 0 -i 1059 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 47.5825 -s 28 -d 1 -p ack -e 40 -c 0 -i 1060 -a 1 -x {1.1.3.0 0.0.3.0 529 ------- null} + -t 47.5825 -s 1 -d 3 -p ack -e 40 -c 0 -i 1060 -a 1 -x {1.1.3.0 0.0.3.0 529 ------- null} - -t 47.5825 -s 1 -d 3 -p ack -e 40 -c 0 -i 1060 -a 1 -x {1.1.3.0 0.0.3.0 529 ------- null} h -t 47.5825 -s 1 -d 3 -p ack -e 40 -c 0 -i 1060 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 47.5841 -s 28 -d 1 -p ack -e 40 -c 0 -i 1061 -a 1 -x {1.1.3.0 0.0.3.0 530 ------- null} + -t 47.5841 -s 1 -d 3 -p ack -e 40 -c 0 -i 1061 -a 1 -x {1.1.3.0 0.0.3.0 530 ------- null} - -t 47.5841 -s 1 -d 3 -p ack -e 40 -c 0 -i 1061 -a 1 -x {1.1.3.0 0.0.3.0 530 ------- null} h -t 47.5841 -s 1 -d 3 -p ack -e 40 -c 0 -i 1061 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 47.6938 -s 1 -d 3 -p ack -e 40 -c 0 -i 1042 -a 1 -x {1.1.3.0 0.0.3.0 511 ------- null} + -t 47.6938 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1062 -a 0 -x {0.0.3.0 1.1.3.0 531 ------- null} - -t 47.6938 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1062 -a 0 -x {0.0.3.0 1.1.3.0 531 ------- null} h -t 47.6938 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1062 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 47.6954 -s 1 -d 3 -p ack -e 40 -c 0 -i 1043 -a 1 -x {1.1.3.0 0.0.3.0 512 ------- null} + -t 47.6954 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {0.0.3.0 1.1.3.0 532 ------- null} - -t 47.6954 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {0.0.3.0 1.1.3.0 532 ------- null} h -t 47.6954 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 47.697 -s 1 -d 3 -p ack -e 40 -c 0 -i 1044 -a 1 -x {1.1.3.0 0.0.3.0 513 ------- null} + -t 47.697 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1064 -a 0 -x {0.0.3.0 1.1.3.0 533 ------- null} - -t 47.697 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1064 -a 0 -x {0.0.3.0 1.1.3.0 533 ------- null} h -t 47.697 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1064 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 47.6986 -s 1 -d 3 -p ack -e 40 -c 0 -i 1045 -a 1 -x {1.1.3.0 0.0.3.0 514 ------- null} + -t 47.6986 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {0.0.3.0 1.1.3.0 534 ------- null} - -t 47.6986 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {0.0.3.0 1.1.3.0 534 ------- null} h -t 47.6986 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 47.7002 -s 1 -d 3 -p ack -e 40 -c 0 -i 1046 -a 1 -x {1.1.3.0 0.0.3.0 515 ------- null} + -t 47.7002 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1066 -a 0 -x {0.0.3.0 1.1.3.0 535 ------- null} - -t 47.7002 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1066 -a 0 -x {0.0.3.0 1.1.3.0 535 ------- null} h -t 47.7002 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1066 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 47.7018 -s 1 -d 3 -p ack -e 40 -c 0 -i 1047 -a 1 -x {1.1.3.0 0.0.3.0 516 ------- null} + -t 47.7018 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {0.0.3.0 1.1.3.0 536 ------- null} - -t 47.7018 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {0.0.3.0 1.1.3.0 536 ------- null} h -t 47.7018 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 47.7034 -s 1 -d 3 -p ack -e 40 -c 0 -i 1048 -a 1 -x {1.1.3.0 0.0.3.0 517 ------- null} + -t 47.7034 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1068 -a 0 -x {0.0.3.0 1.1.3.0 537 ------- null} - -t 47.7034 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1068 -a 0 -x {0.0.3.0 1.1.3.0 537 ------- null} h -t 47.7034 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1068 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 47.705 -s 1 -d 3 -p ack -e 40 -c 0 -i 1049 -a 1 -x {1.1.3.0 0.0.3.0 518 ------- null} + -t 47.705 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {0.0.3.0 1.1.3.0 538 ------- null} - -t 47.705 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {0.0.3.0 1.1.3.0 538 ------- null} h -t 47.705 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 47.7066 -s 1 -d 3 -p ack -e 40 -c 0 -i 1050 -a 1 -x {1.1.3.0 0.0.3.0 519 ------- null} + -t 47.7066 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1070 -a 0 -x {0.0.3.0 1.1.3.0 539 ------- null} - -t 47.7066 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1070 -a 0 -x {0.0.3.0 1.1.3.0 539 ------- null} h -t 47.7066 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1070 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 47.7082 -s 1 -d 3 -p ack -e 40 -c 0 -i 1051 -a 1 -x {1.1.3.0 0.0.3.0 520 ------- null} + -t 47.7082 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {0.0.3.0 1.1.3.0 540 ------- null} - -t 47.7082 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {0.0.3.0 1.1.3.0 540 ------- null} h -t 47.7082 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 47.7098 -s 1 -d 3 -p ack -e 40 -c 0 -i 1052 -a 1 -x {1.1.3.0 0.0.3.0 521 ------- null} + -t 47.7098 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1072 -a 0 -x {0.0.3.0 1.1.3.0 541 ------- null} - -t 47.7098 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1072 -a 0 -x {0.0.3.0 1.1.3.0 541 ------- null} h -t 47.7098 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1072 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 47.7114 -s 1 -d 3 -p ack -e 40 -c 0 -i 1053 -a 1 -x {1.1.3.0 0.0.3.0 522 ------- null} + -t 47.7114 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {0.0.3.0 1.1.3.0 542 ------- null} - -t 47.7114 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {0.0.3.0 1.1.3.0 542 ------- null} h -t 47.7114 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 47.713 -s 1 -d 3 -p ack -e 40 -c 0 -i 1054 -a 1 -x {1.1.3.0 0.0.3.0 523 ------- null} + -t 47.713 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1074 -a 0 -x {0.0.3.0 1.1.3.0 543 ------- null} - -t 47.713 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1074 -a 0 -x {0.0.3.0 1.1.3.0 543 ------- null} h -t 47.713 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1074 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 47.7146 -s 1 -d 3 -p ack -e 40 -c 0 -i 1055 -a 1 -x {1.1.3.0 0.0.3.0 524 ------- null} + -t 47.7146 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {0.0.3.0 1.1.3.0 544 ------- null} - -t 47.7146 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {0.0.3.0 1.1.3.0 544 ------- null} h -t 47.7146 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 47.7162 -s 1 -d 3 -p ack -e 40 -c 0 -i 1056 -a 1 -x {1.1.3.0 0.0.3.0 525 ------- null} + -t 47.7162 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1076 -a 0 -x {0.0.3.0 1.1.3.0 545 ------- null} - -t 47.7162 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1076 -a 0 -x {0.0.3.0 1.1.3.0 545 ------- null} h -t 47.7162 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1076 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 47.7178 -s 1 -d 3 -p ack -e 40 -c 0 -i 1057 -a 1 -x {1.1.3.0 0.0.3.0 526 ------- null} + -t 47.7178 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {0.0.3.0 1.1.3.0 546 ------- null} - -t 47.7178 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {0.0.3.0 1.1.3.0 546 ------- null} h -t 47.7178 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 47.7194 -s 1 -d 3 -p ack -e 40 -c 0 -i 1058 -a 1 -x {1.1.3.0 0.0.3.0 527 ------- null} + -t 47.7194 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1078 -a 0 -x {0.0.3.0 1.1.3.0 547 ------- null} - -t 47.7194 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1078 -a 0 -x {0.0.3.0 1.1.3.0 547 ------- null} h -t 47.7194 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1078 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 47.721 -s 1 -d 3 -p ack -e 40 -c 0 -i 1059 -a 1 -x {1.1.3.0 0.0.3.0 528 ------- null} + -t 47.721 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {0.0.3.0 1.1.3.0 548 ------- null} - -t 47.721 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {0.0.3.0 1.1.3.0 548 ------- null} h -t 47.721 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 47.7226 -s 1 -d 3 -p ack -e 40 -c 0 -i 1060 -a 1 -x {1.1.3.0 0.0.3.0 529 ------- null} + -t 47.7226 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1080 -a 0 -x {0.0.3.0 1.1.3.0 549 ------- null} - -t 47.7226 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1080 -a 0 -x {0.0.3.0 1.1.3.0 549 ------- null} h -t 47.7226 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1080 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 47.7242 -s 1 -d 3 -p ack -e 40 -c 0 -i 1061 -a 1 -x {1.1.3.0 0.0.3.0 530 ------- null} + -t 47.7242 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {0.0.3.0 1.1.3.0 550 ------- null} - -t 47.7242 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {0.0.3.0 1.1.3.0 550 ------- null} h -t 47.7242 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 47.8554 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1062 -a 0 -x {0.0.3.0 1.1.3.0 531 ------- null} + -t 47.8554 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1062 -a 0 -x {0.0.3.0 1.1.3.0 531 ------- null} - -t 47.8554 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1062 -a 0 -x {0.0.3.0 1.1.3.0 531 ------- null} h -t 47.8554 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1062 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 47.857 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {0.0.3.0 1.1.3.0 532 ------- null} + -t 47.857 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {0.0.3.0 1.1.3.0 532 ------- null} - -t 47.857 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {0.0.3.0 1.1.3.0 532 ------- null} h -t 47.857 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 47.8586 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1064 -a 0 -x {0.0.3.0 1.1.3.0 533 ------- null} + -t 47.8586 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1064 -a 0 -x {0.0.3.0 1.1.3.0 533 ------- null} - -t 47.8586 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1064 -a 0 -x {0.0.3.0 1.1.3.0 533 ------- null} h -t 47.8586 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1064 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 47.8602 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {0.0.3.0 1.1.3.0 534 ------- null} + -t 47.8602 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {0.0.3.0 1.1.3.0 534 ------- null} - -t 47.8602 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {0.0.3.0 1.1.3.0 534 ------- null} h -t 47.8602 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 47.8618 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1066 -a 0 -x {0.0.3.0 1.1.3.0 535 ------- null} + -t 47.8618 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1066 -a 0 -x {0.0.3.0 1.1.3.0 535 ------- null} - -t 47.8618 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1066 -a 0 -x {0.0.3.0 1.1.3.0 535 ------- null} h -t 47.8618 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1066 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 47.8634 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {0.0.3.0 1.1.3.0 536 ------- null} + -t 47.8634 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {0.0.3.0 1.1.3.0 536 ------- null} - -t 47.8634 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {0.0.3.0 1.1.3.0 536 ------- null} h -t 47.8634 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 47.865 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1068 -a 0 -x {0.0.3.0 1.1.3.0 537 ------- null} + -t 47.865 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1068 -a 0 -x {0.0.3.0 1.1.3.0 537 ------- null} - -t 47.865 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1068 -a 0 -x {0.0.3.0 1.1.3.0 537 ------- null} h -t 47.865 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1068 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 47.8666 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {0.0.3.0 1.1.3.0 538 ------- null} + -t 47.8666 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {0.0.3.0 1.1.3.0 538 ------- null} - -t 47.8666 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {0.0.3.0 1.1.3.0 538 ------- null} h -t 47.8666 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 47.8682 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1070 -a 0 -x {0.0.3.0 1.1.3.0 539 ------- null} + -t 47.8682 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1070 -a 0 -x {0.0.3.0 1.1.3.0 539 ------- null} - -t 47.8682 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1070 -a 0 -x {0.0.3.0 1.1.3.0 539 ------- null} h -t 47.8682 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1070 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 47.8698 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {0.0.3.0 1.1.3.0 540 ------- null} + -t 47.8698 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {0.0.3.0 1.1.3.0 540 ------- null} - -t 47.8698 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {0.0.3.0 1.1.3.0 540 ------- null} h -t 47.8698 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 47.8714 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1072 -a 0 -x {0.0.3.0 1.1.3.0 541 ------- null} + -t 47.8714 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1072 -a 0 -x {0.0.3.0 1.1.3.0 541 ------- null} - -t 47.8714 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1072 -a 0 -x {0.0.3.0 1.1.3.0 541 ------- null} h -t 47.8714 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1072 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 47.873 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {0.0.3.0 1.1.3.0 542 ------- null} + -t 47.873 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {0.0.3.0 1.1.3.0 542 ------- null} - -t 47.873 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {0.0.3.0 1.1.3.0 542 ------- null} h -t 47.873 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 47.8746 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1074 -a 0 -x {0.0.3.0 1.1.3.0 543 ------- null} + -t 47.8746 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1074 -a 0 -x {0.0.3.0 1.1.3.0 543 ------- null} - -t 47.8746 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1074 -a 0 -x {0.0.3.0 1.1.3.0 543 ------- null} h -t 47.8746 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1074 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 47.8762 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {0.0.3.0 1.1.3.0 544 ------- null} + -t 47.8762 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {0.0.3.0 1.1.3.0 544 ------- null} - -t 47.8762 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {0.0.3.0 1.1.3.0 544 ------- null} h -t 47.8762 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 47.8778 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1076 -a 0 -x {0.0.3.0 1.1.3.0 545 ------- null} + -t 47.8778 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1076 -a 0 -x {0.0.3.0 1.1.3.0 545 ------- null} - -t 47.8778 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1076 -a 0 -x {0.0.3.0 1.1.3.0 545 ------- null} h -t 47.8778 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1076 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 47.8794 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {0.0.3.0 1.1.3.0 546 ------- null} + -t 47.8794 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {0.0.3.0 1.1.3.0 546 ------- null} - -t 47.8794 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {0.0.3.0 1.1.3.0 546 ------- null} h -t 47.8794 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 47.881 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1078 -a 0 -x {0.0.3.0 1.1.3.0 547 ------- null} + -t 47.881 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1078 -a 0 -x {0.0.3.0 1.1.3.0 547 ------- null} - -t 47.881 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1078 -a 0 -x {0.0.3.0 1.1.3.0 547 ------- null} h -t 47.881 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1078 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 47.8826 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {0.0.3.0 1.1.3.0 548 ------- null} + -t 47.8826 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {0.0.3.0 1.1.3.0 548 ------- null} - -t 47.8826 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {0.0.3.0 1.1.3.0 548 ------- null} h -t 47.8826 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 47.8842 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1080 -a 0 -x {0.0.3.0 1.1.3.0 549 ------- null} + -t 47.8842 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1080 -a 0 -x {0.0.3.0 1.1.3.0 549 ------- null} - -t 47.8842 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1080 -a 0 -x {0.0.3.0 1.1.3.0 549 ------- null} h -t 47.8842 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1080 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 47.8858 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {0.0.3.0 1.1.3.0 550 ------- null} + -t 47.8858 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {0.0.3.0 1.1.3.0 550 ------- null} - -t 47.8858 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {0.0.3.0 1.1.3.0 550 ------- null} h -t 47.8858 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.157 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1062 -a 0 -x {0.0.3.0 1.1.3.0 531 ------- null} + -t 48.157 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1062 -a 0 -x {0.0.3.0 1.1.3.0 531 ------- null} - -t 48.157 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1062 -a 0 -x {0.0.3.0 1.1.3.0 531 ------- null} h -t 48.157 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1062 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.1586 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {0.0.3.0 1.1.3.0 532 ------- null} + -t 48.1586 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {0.0.3.0 1.1.3.0 532 ------- null} - -t 48.1586 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {0.0.3.0 1.1.3.0 532 ------- null} h -t 48.1586 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.1602 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1064 -a 0 -x {0.0.3.0 1.1.3.0 533 ------- null} + -t 48.1602 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1064 -a 0 -x {0.0.3.0 1.1.3.0 533 ------- null} - -t 48.1602 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1064 -a 0 -x {0.0.3.0 1.1.3.0 533 ------- null} h -t 48.1602 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1064 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.1618 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {0.0.3.0 1.1.3.0 534 ------- null} + -t 48.1618 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {0.0.3.0 1.1.3.0 534 ------- null} - -t 48.1618 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {0.0.3.0 1.1.3.0 534 ------- null} h -t 48.1618 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.1634 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1066 -a 0 -x {0.0.3.0 1.1.3.0 535 ------- null} + -t 48.1634 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1066 -a 0 -x {0.0.3.0 1.1.3.0 535 ------- null} - -t 48.1634 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1066 -a 0 -x {0.0.3.0 1.1.3.0 535 ------- null} h -t 48.1634 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1066 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.165 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {0.0.3.0 1.1.3.0 536 ------- null} + -t 48.165 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {0.0.3.0 1.1.3.0 536 ------- null} - -t 48.165 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {0.0.3.0 1.1.3.0 536 ------- null} h -t 48.165 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.1666 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1068 -a 0 -x {0.0.3.0 1.1.3.0 537 ------- null} + -t 48.1666 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1068 -a 0 -x {0.0.3.0 1.1.3.0 537 ------- null} - -t 48.1666 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1068 -a 0 -x {0.0.3.0 1.1.3.0 537 ------- null} h -t 48.1666 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1068 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.1682 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {0.0.3.0 1.1.3.0 538 ------- null} + -t 48.1682 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {0.0.3.0 1.1.3.0 538 ------- null} - -t 48.1682 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {0.0.3.0 1.1.3.0 538 ------- null} h -t 48.1682 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.1698 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1070 -a 0 -x {0.0.3.0 1.1.3.0 539 ------- null} + -t 48.1698 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1070 -a 0 -x {0.0.3.0 1.1.3.0 539 ------- null} - -t 48.1698 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1070 -a 0 -x {0.0.3.0 1.1.3.0 539 ------- null} h -t 48.1698 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1070 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.1714 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {0.0.3.0 1.1.3.0 540 ------- null} + -t 48.1714 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {0.0.3.0 1.1.3.0 540 ------- null} - -t 48.1714 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {0.0.3.0 1.1.3.0 540 ------- null} h -t 48.1714 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.173 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1072 -a 0 -x {0.0.3.0 1.1.3.0 541 ------- null} + -t 48.173 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1072 -a 0 -x {0.0.3.0 1.1.3.0 541 ------- null} - -t 48.173 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1072 -a 0 -x {0.0.3.0 1.1.3.0 541 ------- null} h -t 48.173 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1072 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.1746 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {0.0.3.0 1.1.3.0 542 ------- null} + -t 48.1746 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {0.0.3.0 1.1.3.0 542 ------- null} - -t 48.1746 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {0.0.3.0 1.1.3.0 542 ------- null} h -t 48.1746 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.1762 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1074 -a 0 -x {0.0.3.0 1.1.3.0 543 ------- null} + -t 48.1762 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1074 -a 0 -x {0.0.3.0 1.1.3.0 543 ------- null} - -t 48.1762 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1074 -a 0 -x {0.0.3.0 1.1.3.0 543 ------- null} h -t 48.1762 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1074 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.1778 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {0.0.3.0 1.1.3.0 544 ------- null} + -t 48.1778 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {0.0.3.0 1.1.3.0 544 ------- null} - -t 48.1778 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {0.0.3.0 1.1.3.0 544 ------- null} h -t 48.1778 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.1794 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1076 -a 0 -x {0.0.3.0 1.1.3.0 545 ------- null} + -t 48.1794 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1076 -a 0 -x {0.0.3.0 1.1.3.0 545 ------- null} - -t 48.1794 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1076 -a 0 -x {0.0.3.0 1.1.3.0 545 ------- null} h -t 48.1794 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1076 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.181 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {0.0.3.0 1.1.3.0 546 ------- null} + -t 48.181 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {0.0.3.0 1.1.3.0 546 ------- null} - -t 48.181 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {0.0.3.0 1.1.3.0 546 ------- null} h -t 48.181 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.1826 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1078 -a 0 -x {0.0.3.0 1.1.3.0 547 ------- null} + -t 48.1826 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1078 -a 0 -x {0.0.3.0 1.1.3.0 547 ------- null} - -t 48.1826 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1078 -a 0 -x {0.0.3.0 1.1.3.0 547 ------- null} h -t 48.1826 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1078 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.1842 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {0.0.3.0 1.1.3.0 548 ------- null} + -t 48.1842 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {0.0.3.0 1.1.3.0 548 ------- null} - -t 48.1842 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {0.0.3.0 1.1.3.0 548 ------- null} h -t 48.1842 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.1858 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1080 -a 0 -x {0.0.3.0 1.1.3.0 549 ------- null} + -t 48.1858 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1080 -a 0 -x {0.0.3.0 1.1.3.0 549 ------- null} - -t 48.1858 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1080 -a 0 -x {0.0.3.0 1.1.3.0 549 ------- null} h -t 48.1858 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1080 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.1874 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {0.0.3.0 1.1.3.0 550 ------- null} + -t 48.1874 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {0.0.3.0 1.1.3.0 550 ------- null} - -t 48.1874 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {0.0.3.0 1.1.3.0 550 ------- null} h -t 48.1874 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.2586 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1062 -a 0 -x {0.0.3.0 1.1.3.0 531 ------- null} + -t 48.2586 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1062 -a 0 -x {0.0.3.0 1.1.3.0 531 ------- null} - -t 48.2586 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1062 -a 0 -x {0.0.3.0 1.1.3.0 531 ------- null} h -t 48.2586 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1062 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.2602 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {0.0.3.0 1.1.3.0 532 ------- null} + -t 48.2602 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {0.0.3.0 1.1.3.0 532 ------- null} - -t 48.2602 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {0.0.3.0 1.1.3.0 532 ------- null} h -t 48.2602 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.2618 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1064 -a 0 -x {0.0.3.0 1.1.3.0 533 ------- null} + -t 48.2618 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1064 -a 0 -x {0.0.3.0 1.1.3.0 533 ------- null} - -t 48.2618 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1064 -a 0 -x {0.0.3.0 1.1.3.0 533 ------- null} h -t 48.2618 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1064 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.2634 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {0.0.3.0 1.1.3.0 534 ------- null} + -t 48.2634 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {0.0.3.0 1.1.3.0 534 ------- null} - -t 48.2634 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {0.0.3.0 1.1.3.0 534 ------- null} h -t 48.2634 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.265 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1066 -a 0 -x {0.0.3.0 1.1.3.0 535 ------- null} + -t 48.265 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1066 -a 0 -x {0.0.3.0 1.1.3.0 535 ------- null} - -t 48.265 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1066 -a 0 -x {0.0.3.0 1.1.3.0 535 ------- null} h -t 48.265 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1066 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.2666 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {0.0.3.0 1.1.3.0 536 ------- null} + -t 48.2666 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {0.0.3.0 1.1.3.0 536 ------- null} - -t 48.2666 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {0.0.3.0 1.1.3.0 536 ------- null} h -t 48.2666 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.2682 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1068 -a 0 -x {0.0.3.0 1.1.3.0 537 ------- null} + -t 48.2682 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1068 -a 0 -x {0.0.3.0 1.1.3.0 537 ------- null} - -t 48.2682 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1068 -a 0 -x {0.0.3.0 1.1.3.0 537 ------- null} h -t 48.2682 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1068 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.2698 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {0.0.3.0 1.1.3.0 538 ------- null} + -t 48.2698 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {0.0.3.0 1.1.3.0 538 ------- null} - -t 48.2698 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {0.0.3.0 1.1.3.0 538 ------- null} h -t 48.2698 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.2714 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1070 -a 0 -x {0.0.3.0 1.1.3.0 539 ------- null} + -t 48.2714 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1070 -a 0 -x {0.0.3.0 1.1.3.0 539 ------- null} - -t 48.2714 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1070 -a 0 -x {0.0.3.0 1.1.3.0 539 ------- null} h -t 48.2714 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1070 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.273 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {0.0.3.0 1.1.3.0 540 ------- null} + -t 48.273 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {0.0.3.0 1.1.3.0 540 ------- null} - -t 48.273 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {0.0.3.0 1.1.3.0 540 ------- null} h -t 48.273 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.2746 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1072 -a 0 -x {0.0.3.0 1.1.3.0 541 ------- null} + -t 48.2746 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1072 -a 0 -x {0.0.3.0 1.1.3.0 541 ------- null} - -t 48.2746 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1072 -a 0 -x {0.0.3.0 1.1.3.0 541 ------- null} h -t 48.2746 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1072 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.2762 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {0.0.3.0 1.1.3.0 542 ------- null} + -t 48.2762 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {0.0.3.0 1.1.3.0 542 ------- null} - -t 48.2762 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {0.0.3.0 1.1.3.0 542 ------- null} h -t 48.2762 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.2778 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1074 -a 0 -x {0.0.3.0 1.1.3.0 543 ------- null} + -t 48.2778 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1074 -a 0 -x {0.0.3.0 1.1.3.0 543 ------- null} - -t 48.2778 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1074 -a 0 -x {0.0.3.0 1.1.3.0 543 ------- null} h -t 48.2778 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1074 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.2794 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {0.0.3.0 1.1.3.0 544 ------- null} + -t 48.2794 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {0.0.3.0 1.1.3.0 544 ------- null} - -t 48.2794 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {0.0.3.0 1.1.3.0 544 ------- null} h -t 48.2794 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.281 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1076 -a 0 -x {0.0.3.0 1.1.3.0 545 ------- null} + -t 48.281 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1076 -a 0 -x {0.0.3.0 1.1.3.0 545 ------- null} - -t 48.281 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1076 -a 0 -x {0.0.3.0 1.1.3.0 545 ------- null} h -t 48.281 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1076 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.2826 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {0.0.3.0 1.1.3.0 546 ------- null} + -t 48.2826 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {0.0.3.0 1.1.3.0 546 ------- null} - -t 48.2826 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {0.0.3.0 1.1.3.0 546 ------- null} h -t 48.2826 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.2842 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1078 -a 0 -x {0.0.3.0 1.1.3.0 547 ------- null} + -t 48.2842 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1078 -a 0 -x {0.0.3.0 1.1.3.0 547 ------- null} - -t 48.2842 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1078 -a 0 -x {0.0.3.0 1.1.3.0 547 ------- null} h -t 48.2842 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1078 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.2858 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {0.0.3.0 1.1.3.0 548 ------- null} + -t 48.2858 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {0.0.3.0 1.1.3.0 548 ------- null} - -t 48.2858 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {0.0.3.0 1.1.3.0 548 ------- null} h -t 48.2858 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.2874 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1080 -a 0 -x {0.0.3.0 1.1.3.0 549 ------- null} + -t 48.2874 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1080 -a 0 -x {0.0.3.0 1.1.3.0 549 ------- null} - -t 48.2874 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1080 -a 0 -x {0.0.3.0 1.1.3.0 549 ------- null} h -t 48.2874 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1080 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.289 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {0.0.3.0 1.1.3.0 550 ------- null} + -t 48.289 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {0.0.3.0 1.1.3.0 550 ------- null} - -t 48.289 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {0.0.3.0 1.1.3.0 550 ------- null} h -t 48.289 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.3402 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1062 -a 0 -x {0.0.3.0 1.1.3.0 531 ------- null} + -t 48.3402 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1062 -a 0 -x {0.0.3.0 1.1.3.0 531 ------- null} - -t 48.3402 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1062 -a 0 -x {0.0.3.0 1.1.3.0 531 ------- null} h -t 48.3402 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1062 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.3418 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {0.0.3.0 1.1.3.0 532 ------- null} + -t 48.3418 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {0.0.3.0 1.1.3.0 532 ------- null} - -t 48.3418 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {0.0.3.0 1.1.3.0 532 ------- null} h -t 48.3418 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.3434 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1064 -a 0 -x {0.0.3.0 1.1.3.0 533 ------- null} + -t 48.3434 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1064 -a 0 -x {0.0.3.0 1.1.3.0 533 ------- null} - -t 48.3434 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1064 -a 0 -x {0.0.3.0 1.1.3.0 533 ------- null} h -t 48.3434 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1064 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.345 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {0.0.3.0 1.1.3.0 534 ------- null} + -t 48.345 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {0.0.3.0 1.1.3.0 534 ------- null} - -t 48.345 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {0.0.3.0 1.1.3.0 534 ------- null} h -t 48.345 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.3466 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1066 -a 0 -x {0.0.3.0 1.1.3.0 535 ------- null} + -t 48.3466 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1066 -a 0 -x {0.0.3.0 1.1.3.0 535 ------- null} - -t 48.3466 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1066 -a 0 -x {0.0.3.0 1.1.3.0 535 ------- null} h -t 48.3466 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1066 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.3482 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {0.0.3.0 1.1.3.0 536 ------- null} + -t 48.3482 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {0.0.3.0 1.1.3.0 536 ------- null} - -t 48.3482 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {0.0.3.0 1.1.3.0 536 ------- null} h -t 48.3482 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.3498 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1068 -a 0 -x {0.0.3.0 1.1.3.0 537 ------- null} + -t 48.3498 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1068 -a 0 -x {0.0.3.0 1.1.3.0 537 ------- null} - -t 48.3498 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1068 -a 0 -x {0.0.3.0 1.1.3.0 537 ------- null} h -t 48.3498 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1068 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.3514 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {0.0.3.0 1.1.3.0 538 ------- null} + -t 48.3514 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {0.0.3.0 1.1.3.0 538 ------- null} - -t 48.3514 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {0.0.3.0 1.1.3.0 538 ------- null} h -t 48.3514 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.353 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1070 -a 0 -x {0.0.3.0 1.1.3.0 539 ------- null} + -t 48.353 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1070 -a 0 -x {0.0.3.0 1.1.3.0 539 ------- null} - -t 48.353 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1070 -a 0 -x {0.0.3.0 1.1.3.0 539 ------- null} h -t 48.353 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1070 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.3546 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {0.0.3.0 1.1.3.0 540 ------- null} + -t 48.3546 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {0.0.3.0 1.1.3.0 540 ------- null} - -t 48.3546 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {0.0.3.0 1.1.3.0 540 ------- null} h -t 48.3546 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.3562 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1072 -a 0 -x {0.0.3.0 1.1.3.0 541 ------- null} + -t 48.3562 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1072 -a 0 -x {0.0.3.0 1.1.3.0 541 ------- null} - -t 48.3562 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1072 -a 0 -x {0.0.3.0 1.1.3.0 541 ------- null} h -t 48.3562 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1072 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.3578 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {0.0.3.0 1.1.3.0 542 ------- null} + -t 48.3578 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {0.0.3.0 1.1.3.0 542 ------- null} - -t 48.3578 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {0.0.3.0 1.1.3.0 542 ------- null} h -t 48.3578 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.3594 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1074 -a 0 -x {0.0.3.0 1.1.3.0 543 ------- null} + -t 48.3594 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1074 -a 0 -x {0.0.3.0 1.1.3.0 543 ------- null} - -t 48.3594 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1074 -a 0 -x {0.0.3.0 1.1.3.0 543 ------- null} h -t 48.3594 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1074 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.361 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {0.0.3.0 1.1.3.0 544 ------- null} + -t 48.361 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {0.0.3.0 1.1.3.0 544 ------- null} - -t 48.361 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {0.0.3.0 1.1.3.0 544 ------- null} h -t 48.361 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.3626 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1076 -a 0 -x {0.0.3.0 1.1.3.0 545 ------- null} + -t 48.3626 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1076 -a 0 -x {0.0.3.0 1.1.3.0 545 ------- null} - -t 48.3626 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1076 -a 0 -x {0.0.3.0 1.1.3.0 545 ------- null} h -t 48.3626 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1076 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.3642 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {0.0.3.0 1.1.3.0 546 ------- null} + -t 48.3642 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {0.0.3.0 1.1.3.0 546 ------- null} - -t 48.3642 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {0.0.3.0 1.1.3.0 546 ------- null} h -t 48.3642 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.3658 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1078 -a 0 -x {0.0.3.0 1.1.3.0 547 ------- null} + -t 48.3658 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1078 -a 0 -x {0.0.3.0 1.1.3.0 547 ------- null} - -t 48.3658 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1078 -a 0 -x {0.0.3.0 1.1.3.0 547 ------- null} h -t 48.3658 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1078 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.3674 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {0.0.3.0 1.1.3.0 548 ------- null} + -t 48.3674 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {0.0.3.0 1.1.3.0 548 ------- null} - -t 48.3674 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {0.0.3.0 1.1.3.0 548 ------- null} h -t 48.3674 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.369 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1080 -a 0 -x {0.0.3.0 1.1.3.0 549 ------- null} + -t 48.369 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1080 -a 0 -x {0.0.3.0 1.1.3.0 549 ------- null} - -t 48.369 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1080 -a 0 -x {0.0.3.0 1.1.3.0 549 ------- null} h -t 48.369 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1080 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.3706 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {0.0.3.0 1.1.3.0 550 ------- null} + -t 48.3706 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {0.0.3.0 1.1.3.0 550 ------- null} - -t 48.3706 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {0.0.3.0 1.1.3.0 550 ------- null} h -t 48.3706 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.4218 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1062 -a 0 -x {0.0.3.0 1.1.3.0 531 ------- null} + -t 48.4218 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1062 -a 0 -x {0.0.3.0 1.1.3.0 531 ------- null} - -t 48.4218 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1062 -a 0 -x {0.0.3.0 1.1.3.0 531 ------- null} h -t 48.4218 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1062 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.4234 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {0.0.3.0 1.1.3.0 532 ------- null} + -t 48.4234 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {0.0.3.0 1.1.3.0 532 ------- null} - -t 48.4234 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {0.0.3.0 1.1.3.0 532 ------- null} h -t 48.4234 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.425 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1064 -a 0 -x {0.0.3.0 1.1.3.0 533 ------- null} + -t 48.425 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1064 -a 0 -x {0.0.3.0 1.1.3.0 533 ------- null} - -t 48.425 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1064 -a 0 -x {0.0.3.0 1.1.3.0 533 ------- null} h -t 48.425 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1064 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.4266 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {0.0.3.0 1.1.3.0 534 ------- null} + -t 48.4266 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {0.0.3.0 1.1.3.0 534 ------- null} - -t 48.4266 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {0.0.3.0 1.1.3.0 534 ------- null} h -t 48.4266 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.4282 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1066 -a 0 -x {0.0.3.0 1.1.3.0 535 ------- null} + -t 48.4282 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1066 -a 0 -x {0.0.3.0 1.1.3.0 535 ------- null} - -t 48.4282 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1066 -a 0 -x {0.0.3.0 1.1.3.0 535 ------- null} h -t 48.4282 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1066 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.4298 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {0.0.3.0 1.1.3.0 536 ------- null} + -t 48.4298 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {0.0.3.0 1.1.3.0 536 ------- null} - -t 48.4298 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {0.0.3.0 1.1.3.0 536 ------- null} h -t 48.4298 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.4314 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1068 -a 0 -x {0.0.3.0 1.1.3.0 537 ------- null} + -t 48.4314 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1068 -a 0 -x {0.0.3.0 1.1.3.0 537 ------- null} - -t 48.4314 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1068 -a 0 -x {0.0.3.0 1.1.3.0 537 ------- null} h -t 48.4314 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1068 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.433 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {0.0.3.0 1.1.3.0 538 ------- null} + -t 48.433 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {0.0.3.0 1.1.3.0 538 ------- null} - -t 48.433 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {0.0.3.0 1.1.3.0 538 ------- null} h -t 48.433 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.4346 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1070 -a 0 -x {0.0.3.0 1.1.3.0 539 ------- null} + -t 48.4346 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1070 -a 0 -x {0.0.3.0 1.1.3.0 539 ------- null} - -t 48.4346 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1070 -a 0 -x {0.0.3.0 1.1.3.0 539 ------- null} h -t 48.4346 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1070 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.4362 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {0.0.3.0 1.1.3.0 540 ------- null} + -t 48.4362 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {0.0.3.0 1.1.3.0 540 ------- null} - -t 48.4362 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {0.0.3.0 1.1.3.0 540 ------- null} h -t 48.4362 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.4378 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1072 -a 0 -x {0.0.3.0 1.1.3.0 541 ------- null} + -t 48.4378 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1072 -a 0 -x {0.0.3.0 1.1.3.0 541 ------- null} - -t 48.4378 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1072 -a 0 -x {0.0.3.0 1.1.3.0 541 ------- null} h -t 48.4378 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1072 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.4394 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {0.0.3.0 1.1.3.0 542 ------- null} + -t 48.4394 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {0.0.3.0 1.1.3.0 542 ------- null} - -t 48.4394 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {0.0.3.0 1.1.3.0 542 ------- null} h -t 48.4394 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.441 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1074 -a 0 -x {0.0.3.0 1.1.3.0 543 ------- null} + -t 48.441 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1074 -a 0 -x {0.0.3.0 1.1.3.0 543 ------- null} - -t 48.441 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1074 -a 0 -x {0.0.3.0 1.1.3.0 543 ------- null} h -t 48.441 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1074 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.4426 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {0.0.3.0 1.1.3.0 544 ------- null} + -t 48.4426 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {0.0.3.0 1.1.3.0 544 ------- null} - -t 48.4426 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {0.0.3.0 1.1.3.0 544 ------- null} h -t 48.4426 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.4442 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1076 -a 0 -x {0.0.3.0 1.1.3.0 545 ------- null} + -t 48.4442 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1076 -a 0 -x {0.0.3.0 1.1.3.0 545 ------- null} - -t 48.4442 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1076 -a 0 -x {0.0.3.0 1.1.3.0 545 ------- null} h -t 48.4442 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1076 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.4458 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {0.0.3.0 1.1.3.0 546 ------- null} + -t 48.4458 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {0.0.3.0 1.1.3.0 546 ------- null} - -t 48.4458 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {0.0.3.0 1.1.3.0 546 ------- null} h -t 48.4458 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.4474 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1078 -a 0 -x {0.0.3.0 1.1.3.0 547 ------- null} + -t 48.4474 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1078 -a 0 -x {0.0.3.0 1.1.3.0 547 ------- null} - -t 48.4474 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1078 -a 0 -x {0.0.3.0 1.1.3.0 547 ------- null} h -t 48.4474 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1078 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.449 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {0.0.3.0 1.1.3.0 548 ------- null} + -t 48.449 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {0.0.3.0 1.1.3.0 548 ------- null} - -t 48.449 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {0.0.3.0 1.1.3.0 548 ------- null} h -t 48.449 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.4506 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1080 -a 0 -x {0.0.3.0 1.1.3.0 549 ------- null} + -t 48.4506 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1080 -a 0 -x {0.0.3.0 1.1.3.0 549 ------- null} - -t 48.4506 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1080 -a 0 -x {0.0.3.0 1.1.3.0 549 ------- null} h -t 48.4506 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1080 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.4522 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {0.0.3.0 1.1.3.0 550 ------- null} + -t 48.4522 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {0.0.3.0 1.1.3.0 550 ------- null} - -t 48.4522 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {0.0.3.0 1.1.3.0 550 ------- null} h -t 48.4522 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 48.4834 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1062 -a 0 -x {0.0.3.0 1.1.3.0 531 ------- null} + -t 48.4834 -s 21 -d 28 -p ack -e 40 -c 0 -i 1082 -a 1 -x {1.1.3.0 0.0.3.0 531 ------- null} - -t 48.4834 -s 21 -d 28 -p ack -e 40 -c 0 -i 1082 -a 1 -x {1.1.3.0 0.0.3.0 531 ------- null} h -t 48.4834 -s 21 -d 28 -p ack -e 40 -c 0 -i 1082 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 48.485 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {0.0.3.0 1.1.3.0 532 ------- null} + -t 48.485 -s 21 -d 28 -p ack -e 40 -c 0 -i 1083 -a 1 -x {1.1.3.0 0.0.3.0 532 ------- null} - -t 48.485 -s 21 -d 28 -p ack -e 40 -c 0 -i 1083 -a 1 -x {1.1.3.0 0.0.3.0 532 ------- null} h -t 48.485 -s 21 -d 28 -p ack -e 40 -c 0 -i 1083 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 48.4866 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1064 -a 0 -x {0.0.3.0 1.1.3.0 533 ------- null} + -t 48.4866 -s 21 -d 28 -p ack -e 40 -c 0 -i 1084 -a 1 -x {1.1.3.0 0.0.3.0 533 ------- null} - -t 48.4866 -s 21 -d 28 -p ack -e 40 -c 0 -i 1084 -a 1 -x {1.1.3.0 0.0.3.0 533 ------- null} h -t 48.4866 -s 21 -d 28 -p ack -e 40 -c 0 -i 1084 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 48.4882 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {0.0.3.0 1.1.3.0 534 ------- null} + -t 48.4882 -s 21 -d 28 -p ack -e 40 -c 0 -i 1085 -a 1 -x {1.1.3.0 0.0.3.0 534 ------- null} - -t 48.4882 -s 21 -d 28 -p ack -e 40 -c 0 -i 1085 -a 1 -x {1.1.3.0 0.0.3.0 534 ------- null} h -t 48.4882 -s 21 -d 28 -p ack -e 40 -c 0 -i 1085 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 48.4898 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1066 -a 0 -x {0.0.3.0 1.1.3.0 535 ------- null} + -t 48.4898 -s 21 -d 28 -p ack -e 40 -c 0 -i 1086 -a 1 -x {1.1.3.0 0.0.3.0 535 ------- null} - -t 48.4898 -s 21 -d 28 -p ack -e 40 -c 0 -i 1086 -a 1 -x {1.1.3.0 0.0.3.0 535 ------- null} h -t 48.4898 -s 21 -d 28 -p ack -e 40 -c 0 -i 1086 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 48.4914 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {0.0.3.0 1.1.3.0 536 ------- null} + -t 48.4914 -s 21 -d 28 -p ack -e 40 -c 0 -i 1087 -a 1 -x {1.1.3.0 0.0.3.0 536 ------- null} - -t 48.4914 -s 21 -d 28 -p ack -e 40 -c 0 -i 1087 -a 1 -x {1.1.3.0 0.0.3.0 536 ------- null} h -t 48.4914 -s 21 -d 28 -p ack -e 40 -c 0 -i 1087 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 48.493 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1068 -a 0 -x {0.0.3.0 1.1.3.0 537 ------- null} + -t 48.493 -s 21 -d 28 -p ack -e 40 -c 0 -i 1088 -a 1 -x {1.1.3.0 0.0.3.0 537 ------- null} - -t 48.493 -s 21 -d 28 -p ack -e 40 -c 0 -i 1088 -a 1 -x {1.1.3.0 0.0.3.0 537 ------- null} h -t 48.493 -s 21 -d 28 -p ack -e 40 -c 0 -i 1088 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 48.4946 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {0.0.3.0 1.1.3.0 538 ------- null} + -t 48.4946 -s 21 -d 28 -p ack -e 40 -c 0 -i 1089 -a 1 -x {1.1.3.0 0.0.3.0 538 ------- null} - -t 48.4946 -s 21 -d 28 -p ack -e 40 -c 0 -i 1089 -a 1 -x {1.1.3.0 0.0.3.0 538 ------- null} h -t 48.4946 -s 21 -d 28 -p ack -e 40 -c 0 -i 1089 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 48.4962 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1070 -a 0 -x {0.0.3.0 1.1.3.0 539 ------- null} + -t 48.4962 -s 21 -d 28 -p ack -e 40 -c 0 -i 1090 -a 1 -x {1.1.3.0 0.0.3.0 539 ------- null} - -t 48.4962 -s 21 -d 28 -p ack -e 40 -c 0 -i 1090 -a 1 -x {1.1.3.0 0.0.3.0 539 ------- null} h -t 48.4962 -s 21 -d 28 -p ack -e 40 -c 0 -i 1090 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 48.4978 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {0.0.3.0 1.1.3.0 540 ------- null} + -t 48.4978 -s 21 -d 28 -p ack -e 40 -c 0 -i 1091 -a 1 -x {1.1.3.0 0.0.3.0 540 ------- null} - -t 48.4978 -s 21 -d 28 -p ack -e 40 -c 0 -i 1091 -a 1 -x {1.1.3.0 0.0.3.0 540 ------- null} h -t 48.4978 -s 21 -d 28 -p ack -e 40 -c 0 -i 1091 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 48.4994 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1072 -a 0 -x {0.0.3.0 1.1.3.0 541 ------- null} + -t 48.4994 -s 21 -d 28 -p ack -e 40 -c 0 -i 1092 -a 1 -x {1.1.3.0 0.0.3.0 541 ------- null} - -t 48.4994 -s 21 -d 28 -p ack -e 40 -c 0 -i 1092 -a 1 -x {1.1.3.0 0.0.3.0 541 ------- null} h -t 48.4994 -s 21 -d 28 -p ack -e 40 -c 0 -i 1092 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 48.501 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {0.0.3.0 1.1.3.0 542 ------- null} + -t 48.501 -s 21 -d 28 -p ack -e 40 -c 0 -i 1093 -a 1 -x {1.1.3.0 0.0.3.0 542 ------- null} - -t 48.501 -s 21 -d 28 -p ack -e 40 -c 0 -i 1093 -a 1 -x {1.1.3.0 0.0.3.0 542 ------- null} h -t 48.501 -s 21 -d 28 -p ack -e 40 -c 0 -i 1093 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 48.5026 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1074 -a 0 -x {0.0.3.0 1.1.3.0 543 ------- null} + -t 48.5026 -s 21 -d 28 -p ack -e 40 -c 0 -i 1094 -a 1 -x {1.1.3.0 0.0.3.0 543 ------- null} - -t 48.5026 -s 21 -d 28 -p ack -e 40 -c 0 -i 1094 -a 1 -x {1.1.3.0 0.0.3.0 543 ------- null} h -t 48.5026 -s 21 -d 28 -p ack -e 40 -c 0 -i 1094 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 48.5042 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {0.0.3.0 1.1.3.0 544 ------- null} + -t 48.5042 -s 21 -d 28 -p ack -e 40 -c 0 -i 1095 -a 1 -x {1.1.3.0 0.0.3.0 544 ------- null} - -t 48.5042 -s 21 -d 28 -p ack -e 40 -c 0 -i 1095 -a 1 -x {1.1.3.0 0.0.3.0 544 ------- null} h -t 48.5042 -s 21 -d 28 -p ack -e 40 -c 0 -i 1095 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 48.5058 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1076 -a 0 -x {0.0.3.0 1.1.3.0 545 ------- null} + -t 48.5058 -s 21 -d 28 -p ack -e 40 -c 0 -i 1096 -a 1 -x {1.1.3.0 0.0.3.0 545 ------- null} - -t 48.5058 -s 21 -d 28 -p ack -e 40 -c 0 -i 1096 -a 1 -x {1.1.3.0 0.0.3.0 545 ------- null} h -t 48.5058 -s 21 -d 28 -p ack -e 40 -c 0 -i 1096 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 48.5074 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {0.0.3.0 1.1.3.0 546 ------- null} + -t 48.5074 -s 21 -d 28 -p ack -e 40 -c 0 -i 1097 -a 1 -x {1.1.3.0 0.0.3.0 546 ------- null} - -t 48.5074 -s 21 -d 28 -p ack -e 40 -c 0 -i 1097 -a 1 -x {1.1.3.0 0.0.3.0 546 ------- null} h -t 48.5074 -s 21 -d 28 -p ack -e 40 -c 0 -i 1097 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 48.509 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1078 -a 0 -x {0.0.3.0 1.1.3.0 547 ------- null} + -t 48.509 -s 21 -d 28 -p ack -e 40 -c 0 -i 1098 -a 1 -x {1.1.3.0 0.0.3.0 547 ------- null} - -t 48.509 -s 21 -d 28 -p ack -e 40 -c 0 -i 1098 -a 1 -x {1.1.3.0 0.0.3.0 547 ------- null} h -t 48.509 -s 21 -d 28 -p ack -e 40 -c 0 -i 1098 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 48.5106 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {0.0.3.0 1.1.3.0 548 ------- null} + -t 48.5106 -s 21 -d 28 -p ack -e 40 -c 0 -i 1099 -a 1 -x {1.1.3.0 0.0.3.0 548 ------- null} - -t 48.5106 -s 21 -d 28 -p ack -e 40 -c 0 -i 1099 -a 1 -x {1.1.3.0 0.0.3.0 548 ------- null} h -t 48.5106 -s 21 -d 28 -p ack -e 40 -c 0 -i 1099 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 48.5122 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1080 -a 0 -x {0.0.3.0 1.1.3.0 549 ------- null} + -t 48.5122 -s 21 -d 28 -p ack -e 40 -c 0 -i 1100 -a 1 -x {1.1.3.0 0.0.3.0 549 ------- null} - -t 48.5122 -s 21 -d 28 -p ack -e 40 -c 0 -i 1100 -a 1 -x {1.1.3.0 0.0.3.0 549 ------- null} h -t 48.5122 -s 21 -d 28 -p ack -e 40 -c 0 -i 1100 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 48.5138 -s 22 -d 21 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {0.0.3.0 1.1.3.0 550 ------- null} + -t 48.5138 -s 21 -d 28 -p ack -e 40 -c 0 -i 1101 -a 1 -x {1.1.3.0 0.0.3.0 550 ------- null} - -t 48.5138 -s 21 -d 28 -p ack -e 40 -c 0 -i 1101 -a 1 -x {1.1.3.0 0.0.3.0 550 ------- null} h -t 48.5138 -s 21 -d 28 -p ack -e 40 -c 0 -i 1101 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 48.8334 -s 21 -d 28 -p ack -e 40 -c 0 -i 1082 -a 1 -x {1.1.3.0 0.0.3.0 531 ------- null} + -t 48.8334 -s 28 -d 1 -p ack -e 40 -c 0 -i 1082 -a 1 -x {1.1.3.0 0.0.3.0 531 ------- null} - -t 48.8334 -s 28 -d 1 -p ack -e 40 -c 0 -i 1082 -a 1 -x {1.1.3.0 0.0.3.0 531 ------- null} h -t 48.8334 -s 28 -d 1 -p ack -e 40 -c 0 -i 1082 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 48.835 -s 21 -d 28 -p ack -e 40 -c 0 -i 1083 -a 1 -x {1.1.3.0 0.0.3.0 532 ------- null} + -t 48.835 -s 28 -d 1 -p ack -e 40 -c 0 -i 1083 -a 1 -x {1.1.3.0 0.0.3.0 532 ------- null} - -t 48.835 -s 28 -d 1 -p ack -e 40 -c 0 -i 1083 -a 1 -x {1.1.3.0 0.0.3.0 532 ------- null} h -t 48.835 -s 28 -d 1 -p ack -e 40 -c 0 -i 1083 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 48.8366 -s 21 -d 28 -p ack -e 40 -c 0 -i 1084 -a 1 -x {1.1.3.0 0.0.3.0 533 ------- null} + -t 48.8366 -s 28 -d 1 -p ack -e 40 -c 0 -i 1084 -a 1 -x {1.1.3.0 0.0.3.0 533 ------- null} - -t 48.8366 -s 28 -d 1 -p ack -e 40 -c 0 -i 1084 -a 1 -x {1.1.3.0 0.0.3.0 533 ------- null} h -t 48.8366 -s 28 -d 1 -p ack -e 40 -c 0 -i 1084 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 48.8382 -s 21 -d 28 -p ack -e 40 -c 0 -i 1085 -a 1 -x {1.1.3.0 0.0.3.0 534 ------- null} + -t 48.8382 -s 28 -d 1 -p ack -e 40 -c 0 -i 1085 -a 1 -x {1.1.3.0 0.0.3.0 534 ------- null} - -t 48.8382 -s 28 -d 1 -p ack -e 40 -c 0 -i 1085 -a 1 -x {1.1.3.0 0.0.3.0 534 ------- null} h -t 48.8382 -s 28 -d 1 -p ack -e 40 -c 0 -i 1085 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 48.8398 -s 21 -d 28 -p ack -e 40 -c 0 -i 1086 -a 1 -x {1.1.3.0 0.0.3.0 535 ------- null} + -t 48.8398 -s 28 -d 1 -p ack -e 40 -c 0 -i 1086 -a 1 -x {1.1.3.0 0.0.3.0 535 ------- null} - -t 48.8398 -s 28 -d 1 -p ack -e 40 -c 0 -i 1086 -a 1 -x {1.1.3.0 0.0.3.0 535 ------- null} h -t 48.8398 -s 28 -d 1 -p ack -e 40 -c 0 -i 1086 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 48.8414 -s 21 -d 28 -p ack -e 40 -c 0 -i 1087 -a 1 -x {1.1.3.0 0.0.3.0 536 ------- null} + -t 48.8414 -s 28 -d 1 -p ack -e 40 -c 0 -i 1087 -a 1 -x {1.1.3.0 0.0.3.0 536 ------- null} - -t 48.8414 -s 28 -d 1 -p ack -e 40 -c 0 -i 1087 -a 1 -x {1.1.3.0 0.0.3.0 536 ------- null} h -t 48.8414 -s 28 -d 1 -p ack -e 40 -c 0 -i 1087 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 48.843 -s 21 -d 28 -p ack -e 40 -c 0 -i 1088 -a 1 -x {1.1.3.0 0.0.3.0 537 ------- null} + -t 48.843 -s 28 -d 1 -p ack -e 40 -c 0 -i 1088 -a 1 -x {1.1.3.0 0.0.3.0 537 ------- null} - -t 48.843 -s 28 -d 1 -p ack -e 40 -c 0 -i 1088 -a 1 -x {1.1.3.0 0.0.3.0 537 ------- null} h -t 48.843 -s 28 -d 1 -p ack -e 40 -c 0 -i 1088 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 48.8446 -s 21 -d 28 -p ack -e 40 -c 0 -i 1089 -a 1 -x {1.1.3.0 0.0.3.0 538 ------- null} + -t 48.8446 -s 28 -d 1 -p ack -e 40 -c 0 -i 1089 -a 1 -x {1.1.3.0 0.0.3.0 538 ------- null} - -t 48.8446 -s 28 -d 1 -p ack -e 40 -c 0 -i 1089 -a 1 -x {1.1.3.0 0.0.3.0 538 ------- null} h -t 48.8446 -s 28 -d 1 -p ack -e 40 -c 0 -i 1089 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 48.8462 -s 21 -d 28 -p ack -e 40 -c 0 -i 1090 -a 1 -x {1.1.3.0 0.0.3.0 539 ------- null} + -t 48.8462 -s 28 -d 1 -p ack -e 40 -c 0 -i 1090 -a 1 -x {1.1.3.0 0.0.3.0 539 ------- null} - -t 48.8462 -s 28 -d 1 -p ack -e 40 -c 0 -i 1090 -a 1 -x {1.1.3.0 0.0.3.0 539 ------- null} h -t 48.8462 -s 28 -d 1 -p ack -e 40 -c 0 -i 1090 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 48.8478 -s 21 -d 28 -p ack -e 40 -c 0 -i 1091 -a 1 -x {1.1.3.0 0.0.3.0 540 ------- null} + -t 48.8478 -s 28 -d 1 -p ack -e 40 -c 0 -i 1091 -a 1 -x {1.1.3.0 0.0.3.0 540 ------- null} - -t 48.8478 -s 28 -d 1 -p ack -e 40 -c 0 -i 1091 -a 1 -x {1.1.3.0 0.0.3.0 540 ------- null} h -t 48.8478 -s 28 -d 1 -p ack -e 40 -c 0 -i 1091 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 48.8494 -s 21 -d 28 -p ack -e 40 -c 0 -i 1092 -a 1 -x {1.1.3.0 0.0.3.0 541 ------- null} + -t 48.8494 -s 28 -d 1 -p ack -e 40 -c 0 -i 1092 -a 1 -x {1.1.3.0 0.0.3.0 541 ------- null} - -t 48.8494 -s 28 -d 1 -p ack -e 40 -c 0 -i 1092 -a 1 -x {1.1.3.0 0.0.3.0 541 ------- null} h -t 48.8494 -s 28 -d 1 -p ack -e 40 -c 0 -i 1092 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 48.851 -s 21 -d 28 -p ack -e 40 -c 0 -i 1093 -a 1 -x {1.1.3.0 0.0.3.0 542 ------- null} + -t 48.851 -s 28 -d 1 -p ack -e 40 -c 0 -i 1093 -a 1 -x {1.1.3.0 0.0.3.0 542 ------- null} - -t 48.851 -s 28 -d 1 -p ack -e 40 -c 0 -i 1093 -a 1 -x {1.1.3.0 0.0.3.0 542 ------- null} h -t 48.851 -s 28 -d 1 -p ack -e 40 -c 0 -i 1093 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 48.8526 -s 21 -d 28 -p ack -e 40 -c 0 -i 1094 -a 1 -x {1.1.3.0 0.0.3.0 543 ------- null} + -t 48.8526 -s 28 -d 1 -p ack -e 40 -c 0 -i 1094 -a 1 -x {1.1.3.0 0.0.3.0 543 ------- null} - -t 48.8526 -s 28 -d 1 -p ack -e 40 -c 0 -i 1094 -a 1 -x {1.1.3.0 0.0.3.0 543 ------- null} h -t 48.8526 -s 28 -d 1 -p ack -e 40 -c 0 -i 1094 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 48.8542 -s 21 -d 28 -p ack -e 40 -c 0 -i 1095 -a 1 -x {1.1.3.0 0.0.3.0 544 ------- null} + -t 48.8542 -s 28 -d 1 -p ack -e 40 -c 0 -i 1095 -a 1 -x {1.1.3.0 0.0.3.0 544 ------- null} - -t 48.8542 -s 28 -d 1 -p ack -e 40 -c 0 -i 1095 -a 1 -x {1.1.3.0 0.0.3.0 544 ------- null} h -t 48.8542 -s 28 -d 1 -p ack -e 40 -c 0 -i 1095 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 48.8558 -s 21 -d 28 -p ack -e 40 -c 0 -i 1096 -a 1 -x {1.1.3.0 0.0.3.0 545 ------- null} + -t 48.8558 -s 28 -d 1 -p ack -e 40 -c 0 -i 1096 -a 1 -x {1.1.3.0 0.0.3.0 545 ------- null} - -t 48.8558 -s 28 -d 1 -p ack -e 40 -c 0 -i 1096 -a 1 -x {1.1.3.0 0.0.3.0 545 ------- null} h -t 48.8558 -s 28 -d 1 -p ack -e 40 -c 0 -i 1096 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 48.8574 -s 21 -d 28 -p ack -e 40 -c 0 -i 1097 -a 1 -x {1.1.3.0 0.0.3.0 546 ------- null} + -t 48.8574 -s 28 -d 1 -p ack -e 40 -c 0 -i 1097 -a 1 -x {1.1.3.0 0.0.3.0 546 ------- null} - -t 48.8574 -s 28 -d 1 -p ack -e 40 -c 0 -i 1097 -a 1 -x {1.1.3.0 0.0.3.0 546 ------- null} h -t 48.8574 -s 28 -d 1 -p ack -e 40 -c 0 -i 1097 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 48.859 -s 21 -d 28 -p ack -e 40 -c 0 -i 1098 -a 1 -x {1.1.3.0 0.0.3.0 547 ------- null} + -t 48.859 -s 28 -d 1 -p ack -e 40 -c 0 -i 1098 -a 1 -x {1.1.3.0 0.0.3.0 547 ------- null} - -t 48.859 -s 28 -d 1 -p ack -e 40 -c 0 -i 1098 -a 1 -x {1.1.3.0 0.0.3.0 547 ------- null} h -t 48.859 -s 28 -d 1 -p ack -e 40 -c 0 -i 1098 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 48.8606 -s 21 -d 28 -p ack -e 40 -c 0 -i 1099 -a 1 -x {1.1.3.0 0.0.3.0 548 ------- null} + -t 48.8606 -s 28 -d 1 -p ack -e 40 -c 0 -i 1099 -a 1 -x {1.1.3.0 0.0.3.0 548 ------- null} - -t 48.8606 -s 28 -d 1 -p ack -e 40 -c 0 -i 1099 -a 1 -x {1.1.3.0 0.0.3.0 548 ------- null} h -t 48.8606 -s 28 -d 1 -p ack -e 40 -c 0 -i 1099 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 48.8622 -s 21 -d 28 -p ack -e 40 -c 0 -i 1100 -a 1 -x {1.1.3.0 0.0.3.0 549 ------- null} + -t 48.8622 -s 28 -d 1 -p ack -e 40 -c 0 -i 1100 -a 1 -x {1.1.3.0 0.0.3.0 549 ------- null} - -t 48.8622 -s 28 -d 1 -p ack -e 40 -c 0 -i 1100 -a 1 -x {1.1.3.0 0.0.3.0 549 ------- null} h -t 48.8622 -s 28 -d 1 -p ack -e 40 -c 0 -i 1100 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 48.8638 -s 21 -d 28 -p ack -e 40 -c 0 -i 1101 -a 1 -x {1.1.3.0 0.0.3.0 550 ------- null} + -t 48.8638 -s 28 -d 1 -p ack -e 40 -c 0 -i 1101 -a 1 -x {1.1.3.0 0.0.3.0 550 ------- null} - -t 48.8638 -s 28 -d 1 -p ack -e 40 -c 0 -i 1101 -a 1 -x {1.1.3.0 0.0.3.0 550 ------- null} h -t 48.8638 -s 28 -d 1 -p ack -e 40 -c 0 -i 1101 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 49.1335 -s 28 -d 1 -p ack -e 40 -c 0 -i 1082 -a 1 -x {1.1.3.0 0.0.3.0 531 ------- null} + -t 49.1335 -s 1 -d 3 -p ack -e 40 -c 0 -i 1082 -a 1 -x {1.1.3.0 0.0.3.0 531 ------- null} - -t 49.1335 -s 1 -d 3 -p ack -e 40 -c 0 -i 1082 -a 1 -x {1.1.3.0 0.0.3.0 531 ------- null} h -t 49.1335 -s 1 -d 3 -p ack -e 40 -c 0 -i 1082 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 49.1351 -s 28 -d 1 -p ack -e 40 -c 0 -i 1083 -a 1 -x {1.1.3.0 0.0.3.0 532 ------- null} + -t 49.1351 -s 1 -d 3 -p ack -e 40 -c 0 -i 1083 -a 1 -x {1.1.3.0 0.0.3.0 532 ------- null} - -t 49.1351 -s 1 -d 3 -p ack -e 40 -c 0 -i 1083 -a 1 -x {1.1.3.0 0.0.3.0 532 ------- null} h -t 49.1351 -s 1 -d 3 -p ack -e 40 -c 0 -i 1083 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 49.1367 -s 28 -d 1 -p ack -e 40 -c 0 -i 1084 -a 1 -x {1.1.3.0 0.0.3.0 533 ------- null} + -t 49.1367 -s 1 -d 3 -p ack -e 40 -c 0 -i 1084 -a 1 -x {1.1.3.0 0.0.3.0 533 ------- null} - -t 49.1367 -s 1 -d 3 -p ack -e 40 -c 0 -i 1084 -a 1 -x {1.1.3.0 0.0.3.0 533 ------- null} h -t 49.1367 -s 1 -d 3 -p ack -e 40 -c 0 -i 1084 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 49.1383 -s 28 -d 1 -p ack -e 40 -c 0 -i 1085 -a 1 -x {1.1.3.0 0.0.3.0 534 ------- null} + -t 49.1383 -s 1 -d 3 -p ack -e 40 -c 0 -i 1085 -a 1 -x {1.1.3.0 0.0.3.0 534 ------- null} - -t 49.1383 -s 1 -d 3 -p ack -e 40 -c 0 -i 1085 -a 1 -x {1.1.3.0 0.0.3.0 534 ------- null} h -t 49.1383 -s 1 -d 3 -p ack -e 40 -c 0 -i 1085 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 49.1399 -s 28 -d 1 -p ack -e 40 -c 0 -i 1086 -a 1 -x {1.1.3.0 0.0.3.0 535 ------- null} + -t 49.1399 -s 1 -d 3 -p ack -e 40 -c 0 -i 1086 -a 1 -x {1.1.3.0 0.0.3.0 535 ------- null} - -t 49.1399 -s 1 -d 3 -p ack -e 40 -c 0 -i 1086 -a 1 -x {1.1.3.0 0.0.3.0 535 ------- null} h -t 49.1399 -s 1 -d 3 -p ack -e 40 -c 0 -i 1086 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 49.1415 -s 28 -d 1 -p ack -e 40 -c 0 -i 1087 -a 1 -x {1.1.3.0 0.0.3.0 536 ------- null} + -t 49.1415 -s 1 -d 3 -p ack -e 40 -c 0 -i 1087 -a 1 -x {1.1.3.0 0.0.3.0 536 ------- null} - -t 49.1415 -s 1 -d 3 -p ack -e 40 -c 0 -i 1087 -a 1 -x {1.1.3.0 0.0.3.0 536 ------- null} h -t 49.1415 -s 1 -d 3 -p ack -e 40 -c 0 -i 1087 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 49.1431 -s 28 -d 1 -p ack -e 40 -c 0 -i 1088 -a 1 -x {1.1.3.0 0.0.3.0 537 ------- null} + -t 49.1431 -s 1 -d 3 -p ack -e 40 -c 0 -i 1088 -a 1 -x {1.1.3.0 0.0.3.0 537 ------- null} - -t 49.1431 -s 1 -d 3 -p ack -e 40 -c 0 -i 1088 -a 1 -x {1.1.3.0 0.0.3.0 537 ------- null} h -t 49.1431 -s 1 -d 3 -p ack -e 40 -c 0 -i 1088 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 49.1447 -s 28 -d 1 -p ack -e 40 -c 0 -i 1089 -a 1 -x {1.1.3.0 0.0.3.0 538 ------- null} + -t 49.1447 -s 1 -d 3 -p ack -e 40 -c 0 -i 1089 -a 1 -x {1.1.3.0 0.0.3.0 538 ------- null} - -t 49.1447 -s 1 -d 3 -p ack -e 40 -c 0 -i 1089 -a 1 -x {1.1.3.0 0.0.3.0 538 ------- null} h -t 49.1447 -s 1 -d 3 -p ack -e 40 -c 0 -i 1089 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 49.1463 -s 28 -d 1 -p ack -e 40 -c 0 -i 1090 -a 1 -x {1.1.3.0 0.0.3.0 539 ------- null} + -t 49.1463 -s 1 -d 3 -p ack -e 40 -c 0 -i 1090 -a 1 -x {1.1.3.0 0.0.3.0 539 ------- null} - -t 49.1463 -s 1 -d 3 -p ack -e 40 -c 0 -i 1090 -a 1 -x {1.1.3.0 0.0.3.0 539 ------- null} h -t 49.1463 -s 1 -d 3 -p ack -e 40 -c 0 -i 1090 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 49.1479 -s 28 -d 1 -p ack -e 40 -c 0 -i 1091 -a 1 -x {1.1.3.0 0.0.3.0 540 ------- null} + -t 49.1479 -s 1 -d 3 -p ack -e 40 -c 0 -i 1091 -a 1 -x {1.1.3.0 0.0.3.0 540 ------- null} - -t 49.1479 -s 1 -d 3 -p ack -e 40 -c 0 -i 1091 -a 1 -x {1.1.3.0 0.0.3.0 540 ------- null} h -t 49.1479 -s 1 -d 3 -p ack -e 40 -c 0 -i 1091 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 49.1495 -s 28 -d 1 -p ack -e 40 -c 0 -i 1092 -a 1 -x {1.1.3.0 0.0.3.0 541 ------- null} + -t 49.1495 -s 1 -d 3 -p ack -e 40 -c 0 -i 1092 -a 1 -x {1.1.3.0 0.0.3.0 541 ------- null} - -t 49.1495 -s 1 -d 3 -p ack -e 40 -c 0 -i 1092 -a 1 -x {1.1.3.0 0.0.3.0 541 ------- null} h -t 49.1495 -s 1 -d 3 -p ack -e 40 -c 0 -i 1092 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 49.1511 -s 28 -d 1 -p ack -e 40 -c 0 -i 1093 -a 1 -x {1.1.3.0 0.0.3.0 542 ------- null} + -t 49.1511 -s 1 -d 3 -p ack -e 40 -c 0 -i 1093 -a 1 -x {1.1.3.0 0.0.3.0 542 ------- null} - -t 49.1511 -s 1 -d 3 -p ack -e 40 -c 0 -i 1093 -a 1 -x {1.1.3.0 0.0.3.0 542 ------- null} h -t 49.1511 -s 1 -d 3 -p ack -e 40 -c 0 -i 1093 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 49.1527 -s 28 -d 1 -p ack -e 40 -c 0 -i 1094 -a 1 -x {1.1.3.0 0.0.3.0 543 ------- null} + -t 49.1527 -s 1 -d 3 -p ack -e 40 -c 0 -i 1094 -a 1 -x {1.1.3.0 0.0.3.0 543 ------- null} - -t 49.1527 -s 1 -d 3 -p ack -e 40 -c 0 -i 1094 -a 1 -x {1.1.3.0 0.0.3.0 543 ------- null} h -t 49.1527 -s 1 -d 3 -p ack -e 40 -c 0 -i 1094 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 49.1543 -s 28 -d 1 -p ack -e 40 -c 0 -i 1095 -a 1 -x {1.1.3.0 0.0.3.0 544 ------- null} + -t 49.1543 -s 1 -d 3 -p ack -e 40 -c 0 -i 1095 -a 1 -x {1.1.3.0 0.0.3.0 544 ------- null} - -t 49.1543 -s 1 -d 3 -p ack -e 40 -c 0 -i 1095 -a 1 -x {1.1.3.0 0.0.3.0 544 ------- null} h -t 49.1543 -s 1 -d 3 -p ack -e 40 -c 0 -i 1095 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 49.1559 -s 28 -d 1 -p ack -e 40 -c 0 -i 1096 -a 1 -x {1.1.3.0 0.0.3.0 545 ------- null} + -t 49.1559 -s 1 -d 3 -p ack -e 40 -c 0 -i 1096 -a 1 -x {1.1.3.0 0.0.3.0 545 ------- null} - -t 49.1559 -s 1 -d 3 -p ack -e 40 -c 0 -i 1096 -a 1 -x {1.1.3.0 0.0.3.0 545 ------- null} h -t 49.1559 -s 1 -d 3 -p ack -e 40 -c 0 -i 1096 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 49.1575 -s 28 -d 1 -p ack -e 40 -c 0 -i 1097 -a 1 -x {1.1.3.0 0.0.3.0 546 ------- null} + -t 49.1575 -s 1 -d 3 -p ack -e 40 -c 0 -i 1097 -a 1 -x {1.1.3.0 0.0.3.0 546 ------- null} - -t 49.1575 -s 1 -d 3 -p ack -e 40 -c 0 -i 1097 -a 1 -x {1.1.3.0 0.0.3.0 546 ------- null} h -t 49.1575 -s 1 -d 3 -p ack -e 40 -c 0 -i 1097 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 49.1591 -s 28 -d 1 -p ack -e 40 -c 0 -i 1098 -a 1 -x {1.1.3.0 0.0.3.0 547 ------- null} + -t 49.1591 -s 1 -d 3 -p ack -e 40 -c 0 -i 1098 -a 1 -x {1.1.3.0 0.0.3.0 547 ------- null} - -t 49.1591 -s 1 -d 3 -p ack -e 40 -c 0 -i 1098 -a 1 -x {1.1.3.0 0.0.3.0 547 ------- null} h -t 49.1591 -s 1 -d 3 -p ack -e 40 -c 0 -i 1098 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 49.1607 -s 28 -d 1 -p ack -e 40 -c 0 -i 1099 -a 1 -x {1.1.3.0 0.0.3.0 548 ------- null} + -t 49.1607 -s 1 -d 3 -p ack -e 40 -c 0 -i 1099 -a 1 -x {1.1.3.0 0.0.3.0 548 ------- null} - -t 49.1607 -s 1 -d 3 -p ack -e 40 -c 0 -i 1099 -a 1 -x {1.1.3.0 0.0.3.0 548 ------- null} h -t 49.1607 -s 1 -d 3 -p ack -e 40 -c 0 -i 1099 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 49.1623 -s 28 -d 1 -p ack -e 40 -c 0 -i 1100 -a 1 -x {1.1.3.0 0.0.3.0 549 ------- null} + -t 49.1623 -s 1 -d 3 -p ack -e 40 -c 0 -i 1100 -a 1 -x {1.1.3.0 0.0.3.0 549 ------- null} - -t 49.1623 -s 1 -d 3 -p ack -e 40 -c 0 -i 1100 -a 1 -x {1.1.3.0 0.0.3.0 549 ------- null} h -t 49.1623 -s 1 -d 3 -p ack -e 40 -c 0 -i 1100 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 49.1639 -s 28 -d 1 -p ack -e 40 -c 0 -i 1101 -a 1 -x {1.1.3.0 0.0.3.0 550 ------- null} + -t 49.1639 -s 1 -d 3 -p ack -e 40 -c 0 -i 1101 -a 1 -x {1.1.3.0 0.0.3.0 550 ------- null} - -t 49.1639 -s 1 -d 3 -p ack -e 40 -c 0 -i 1101 -a 1 -x {1.1.3.0 0.0.3.0 550 ------- null} h -t 49.1639 -s 1 -d 3 -p ack -e 40 -c 0 -i 1101 -a 1 -x {1.1.3.0 0.0.3.0 -1 ------- null} r -t 49.2736 -s 1 -d 3 -p ack -e 40 -c 0 -i 1082 -a 1 -x {1.1.3.0 0.0.3.0 531 ------- null} + -t 49.2736 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1102 -a 0 -x {0.0.3.0 1.1.3.0 551 ------- null} - -t 49.2736 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1102 -a 0 -x {0.0.3.0 1.1.3.0 551 ------- null} h -t 49.2736 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1102 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.2752 -s 1 -d 3 -p ack -e 40 -c 0 -i 1083 -a 1 -x {1.1.3.0 0.0.3.0 532 ------- null} + -t 49.2752 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {0.0.3.0 1.1.3.0 552 ------- null} - -t 49.2752 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {0.0.3.0 1.1.3.0 552 ------- null} h -t 49.2752 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.2768 -s 1 -d 3 -p ack -e 40 -c 0 -i 1084 -a 1 -x {1.1.3.0 0.0.3.0 533 ------- null} + -t 49.2768 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1104 -a 0 -x {0.0.3.0 1.1.3.0 553 ------- null} - -t 49.2768 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1104 -a 0 -x {0.0.3.0 1.1.3.0 553 ------- null} h -t 49.2768 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1104 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.2784 -s 1 -d 3 -p ack -e 40 -c 0 -i 1085 -a 1 -x {1.1.3.0 0.0.3.0 534 ------- null} + -t 49.2784 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {0.0.3.0 1.1.3.0 554 ------- null} - -t 49.2784 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {0.0.3.0 1.1.3.0 554 ------- null} h -t 49.2784 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.28 -s 1 -d 3 -p ack -e 40 -c 0 -i 1086 -a 1 -x {1.1.3.0 0.0.3.0 535 ------- null} + -t 49.28 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1106 -a 0 -x {0.0.3.0 1.1.3.0 555 ------- null} - -t 49.28 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1106 -a 0 -x {0.0.3.0 1.1.3.0 555 ------- null} h -t 49.28 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1106 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.2816 -s 1 -d 3 -p ack -e 40 -c 0 -i 1087 -a 1 -x {1.1.3.0 0.0.3.0 536 ------- null} + -t 49.2816 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {0.0.3.0 1.1.3.0 556 ------- null} - -t 49.2816 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {0.0.3.0 1.1.3.0 556 ------- null} h -t 49.2816 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.2832 -s 1 -d 3 -p ack -e 40 -c 0 -i 1088 -a 1 -x {1.1.3.0 0.0.3.0 537 ------- null} + -t 49.2832 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1108 -a 0 -x {0.0.3.0 1.1.3.0 557 ------- null} - -t 49.2832 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1108 -a 0 -x {0.0.3.0 1.1.3.0 557 ------- null} h -t 49.2832 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1108 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.2848 -s 1 -d 3 -p ack -e 40 -c 0 -i 1089 -a 1 -x {1.1.3.0 0.0.3.0 538 ------- null} + -t 49.2848 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {0.0.3.0 1.1.3.0 558 ------- null} - -t 49.2848 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {0.0.3.0 1.1.3.0 558 ------- null} h -t 49.2848 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.2864 -s 1 -d 3 -p ack -e 40 -c 0 -i 1090 -a 1 -x {1.1.3.0 0.0.3.0 539 ------- null} + -t 49.2864 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1110 -a 0 -x {0.0.3.0 1.1.3.0 559 ------- null} - -t 49.2864 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1110 -a 0 -x {0.0.3.0 1.1.3.0 559 ------- null} h -t 49.2864 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1110 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.288 -s 1 -d 3 -p ack -e 40 -c 0 -i 1091 -a 1 -x {1.1.3.0 0.0.3.0 540 ------- null} + -t 49.288 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {0.0.3.0 1.1.3.0 560 ------- null} - -t 49.288 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {0.0.3.0 1.1.3.0 560 ------- null} h -t 49.288 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.2896 -s 1 -d 3 -p ack -e 40 -c 0 -i 1092 -a 1 -x {1.1.3.0 0.0.3.0 541 ------- null} + -t 49.2896 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1112 -a 0 -x {0.0.3.0 1.1.3.0 561 ------- null} - -t 49.2896 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1112 -a 0 -x {0.0.3.0 1.1.3.0 561 ------- null} h -t 49.2896 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1112 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.2912 -s 1 -d 3 -p ack -e 40 -c 0 -i 1093 -a 1 -x {1.1.3.0 0.0.3.0 542 ------- null} + -t 49.2912 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {0.0.3.0 1.1.3.0 562 ------- null} - -t 49.2912 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {0.0.3.0 1.1.3.0 562 ------- null} h -t 49.2912 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.2928 -s 1 -d 3 -p ack -e 40 -c 0 -i 1094 -a 1 -x {1.1.3.0 0.0.3.0 543 ------- null} + -t 49.2928 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1114 -a 0 -x {0.0.3.0 1.1.3.0 563 ------- null} - -t 49.2928 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1114 -a 0 -x {0.0.3.0 1.1.3.0 563 ------- null} h -t 49.2928 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1114 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.2944 -s 1 -d 3 -p ack -e 40 -c 0 -i 1095 -a 1 -x {1.1.3.0 0.0.3.0 544 ------- null} + -t 49.2944 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {0.0.3.0 1.1.3.0 564 ------- null} - -t 49.2944 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {0.0.3.0 1.1.3.0 564 ------- null} h -t 49.2944 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.296 -s 1 -d 3 -p ack -e 40 -c 0 -i 1096 -a 1 -x {1.1.3.0 0.0.3.0 545 ------- null} + -t 49.296 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1116 -a 0 -x {0.0.3.0 1.1.3.0 565 ------- null} - -t 49.296 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1116 -a 0 -x {0.0.3.0 1.1.3.0 565 ------- null} h -t 49.296 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1116 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.2976 -s 1 -d 3 -p ack -e 40 -c 0 -i 1097 -a 1 -x {1.1.3.0 0.0.3.0 546 ------- null} + -t 49.2976 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {0.0.3.0 1.1.3.0 566 ------- null} - -t 49.2976 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {0.0.3.0 1.1.3.0 566 ------- null} h -t 49.2976 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.2992 -s 1 -d 3 -p ack -e 40 -c 0 -i 1098 -a 1 -x {1.1.3.0 0.0.3.0 547 ------- null} + -t 49.2992 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1118 -a 0 -x {0.0.3.0 1.1.3.0 567 ------- null} - -t 49.2992 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1118 -a 0 -x {0.0.3.0 1.1.3.0 567 ------- null} h -t 49.2992 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1118 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.3008 -s 1 -d 3 -p ack -e 40 -c 0 -i 1099 -a 1 -x {1.1.3.0 0.0.3.0 548 ------- null} + -t 49.3008 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {0.0.3.0 1.1.3.0 568 ------- null} - -t 49.3008 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {0.0.3.0 1.1.3.0 568 ------- null} h -t 49.3008 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.3024 -s 1 -d 3 -p ack -e 40 -c 0 -i 1100 -a 1 -x {1.1.3.0 0.0.3.0 549 ------- null} + -t 49.3024 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1120 -a 0 -x {0.0.3.0 1.1.3.0 569 ------- null} - -t 49.3024 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1120 -a 0 -x {0.0.3.0 1.1.3.0 569 ------- null} h -t 49.3024 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1120 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.304 -s 1 -d 3 -p ack -e 40 -c 0 -i 1101 -a 1 -x {1.1.3.0 0.0.3.0 550 ------- null} + -t 49.304 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {0.0.3.0 1.1.3.0 570 ------- null} - -t 49.304 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {0.0.3.0 1.1.3.0 570 ------- null} h -t 49.304 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.4352 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1102 -a 0 -x {0.0.3.0 1.1.3.0 551 ------- null} + -t 49.4352 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1102 -a 0 -x {0.0.3.0 1.1.3.0 551 ------- null} - -t 49.4352 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1102 -a 0 -x {0.0.3.0 1.1.3.0 551 ------- null} h -t 49.4352 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1102 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.4368 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {0.0.3.0 1.1.3.0 552 ------- null} + -t 49.4368 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {0.0.3.0 1.1.3.0 552 ------- null} - -t 49.4368 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {0.0.3.0 1.1.3.0 552 ------- null} h -t 49.4368 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.4384 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1104 -a 0 -x {0.0.3.0 1.1.3.0 553 ------- null} + -t 49.4384 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1104 -a 0 -x {0.0.3.0 1.1.3.0 553 ------- null} - -t 49.4384 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1104 -a 0 -x {0.0.3.0 1.1.3.0 553 ------- null} h -t 49.4384 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1104 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.44 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {0.0.3.0 1.1.3.0 554 ------- null} + -t 49.44 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {0.0.3.0 1.1.3.0 554 ------- null} - -t 49.44 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {0.0.3.0 1.1.3.0 554 ------- null} h -t 49.44 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.4416 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1106 -a 0 -x {0.0.3.0 1.1.3.0 555 ------- null} + -t 49.4416 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1106 -a 0 -x {0.0.3.0 1.1.3.0 555 ------- null} - -t 49.4416 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1106 -a 0 -x {0.0.3.0 1.1.3.0 555 ------- null} h -t 49.4416 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1106 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.4432 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {0.0.3.0 1.1.3.0 556 ------- null} + -t 49.4432 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {0.0.3.0 1.1.3.0 556 ------- null} - -t 49.4432 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {0.0.3.0 1.1.3.0 556 ------- null} h -t 49.4432 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.4448 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1108 -a 0 -x {0.0.3.0 1.1.3.0 557 ------- null} + -t 49.4448 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1108 -a 0 -x {0.0.3.0 1.1.3.0 557 ------- null} - -t 49.4448 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1108 -a 0 -x {0.0.3.0 1.1.3.0 557 ------- null} h -t 49.4448 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1108 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.4464 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {0.0.3.0 1.1.3.0 558 ------- null} + -t 49.4464 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {0.0.3.0 1.1.3.0 558 ------- null} - -t 49.4464 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {0.0.3.0 1.1.3.0 558 ------- null} h -t 49.4464 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.448 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1110 -a 0 -x {0.0.3.0 1.1.3.0 559 ------- null} + -t 49.448 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1110 -a 0 -x {0.0.3.0 1.1.3.0 559 ------- null} - -t 49.448 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1110 -a 0 -x {0.0.3.0 1.1.3.0 559 ------- null} h -t 49.448 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1110 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.4496 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {0.0.3.0 1.1.3.0 560 ------- null} + -t 49.4496 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {0.0.3.0 1.1.3.0 560 ------- null} - -t 49.4496 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {0.0.3.0 1.1.3.0 560 ------- null} h -t 49.4496 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.4512 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1112 -a 0 -x {0.0.3.0 1.1.3.0 561 ------- null} + -t 49.4512 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1112 -a 0 -x {0.0.3.0 1.1.3.0 561 ------- null} - -t 49.4512 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1112 -a 0 -x {0.0.3.0 1.1.3.0 561 ------- null} h -t 49.4512 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1112 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.4528 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {0.0.3.0 1.1.3.0 562 ------- null} + -t 49.4528 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {0.0.3.0 1.1.3.0 562 ------- null} - -t 49.4528 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {0.0.3.0 1.1.3.0 562 ------- null} h -t 49.4528 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.4544 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1114 -a 0 -x {0.0.3.0 1.1.3.0 563 ------- null} + -t 49.4544 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1114 -a 0 -x {0.0.3.0 1.1.3.0 563 ------- null} - -t 49.4544 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1114 -a 0 -x {0.0.3.0 1.1.3.0 563 ------- null} h -t 49.4544 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1114 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.456 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {0.0.3.0 1.1.3.0 564 ------- null} + -t 49.456 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {0.0.3.0 1.1.3.0 564 ------- null} - -t 49.456 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {0.0.3.0 1.1.3.0 564 ------- null} h -t 49.456 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.4576 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1116 -a 0 -x {0.0.3.0 1.1.3.0 565 ------- null} + -t 49.4576 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1116 -a 0 -x {0.0.3.0 1.1.3.0 565 ------- null} - -t 49.4576 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1116 -a 0 -x {0.0.3.0 1.1.3.0 565 ------- null} h -t 49.4576 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1116 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.4592 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {0.0.3.0 1.1.3.0 566 ------- null} + -t 49.4592 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {0.0.3.0 1.1.3.0 566 ------- null} - -t 49.4592 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {0.0.3.0 1.1.3.0 566 ------- null} h -t 49.4592 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.4608 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1118 -a 0 -x {0.0.3.0 1.1.3.0 567 ------- null} + -t 49.4608 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1118 -a 0 -x {0.0.3.0 1.1.3.0 567 ------- null} - -t 49.4608 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1118 -a 0 -x {0.0.3.0 1.1.3.0 567 ------- null} h -t 49.4608 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1118 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.4624 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {0.0.3.0 1.1.3.0 568 ------- null} + -t 49.4624 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {0.0.3.0 1.1.3.0 568 ------- null} - -t 49.4624 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {0.0.3.0 1.1.3.0 568 ------- null} h -t 49.4624 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.464 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1120 -a 0 -x {0.0.3.0 1.1.3.0 569 ------- null} + -t 49.464 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1120 -a 0 -x {0.0.3.0 1.1.3.0 569 ------- null} - -t 49.464 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1120 -a 0 -x {0.0.3.0 1.1.3.0 569 ------- null} h -t 49.464 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1120 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.4656 -s 3 -d 0 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {0.0.3.0 1.1.3.0 570 ------- null} + -t 49.4656 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {0.0.3.0 1.1.3.0 570 ------- null} - -t 49.4656 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {0.0.3.0 1.1.3.0 570 ------- null} h -t 49.4656 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.7368 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1102 -a 0 -x {0.0.3.0 1.1.3.0 551 ------- null} + -t 49.7368 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1102 -a 0 -x {0.0.3.0 1.1.3.0 551 ------- null} - -t 49.7368 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1102 -a 0 -x {0.0.3.0 1.1.3.0 551 ------- null} h -t 49.7368 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1102 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.7384 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {0.0.3.0 1.1.3.0 552 ------- null} + -t 49.7384 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {0.0.3.0 1.1.3.0 552 ------- null} - -t 49.7384 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {0.0.3.0 1.1.3.0 552 ------- null} h -t 49.7384 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.74 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1104 -a 0 -x {0.0.3.0 1.1.3.0 553 ------- null} + -t 49.74 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1104 -a 0 -x {0.0.3.0 1.1.3.0 553 ------- null} - -t 49.74 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1104 -a 0 -x {0.0.3.0 1.1.3.0 553 ------- null} h -t 49.74 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1104 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.7416 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {0.0.3.0 1.1.3.0 554 ------- null} + -t 49.7416 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {0.0.3.0 1.1.3.0 554 ------- null} - -t 49.7416 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {0.0.3.0 1.1.3.0 554 ------- null} h -t 49.7416 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.7432 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1106 -a 0 -x {0.0.3.0 1.1.3.0 555 ------- null} + -t 49.7432 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1106 -a 0 -x {0.0.3.0 1.1.3.0 555 ------- null} - -t 49.7432 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1106 -a 0 -x {0.0.3.0 1.1.3.0 555 ------- null} h -t 49.7432 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1106 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.7448 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {0.0.3.0 1.1.3.0 556 ------- null} + -t 49.7448 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {0.0.3.0 1.1.3.0 556 ------- null} - -t 49.7448 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {0.0.3.0 1.1.3.0 556 ------- null} h -t 49.7448 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.7464 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1108 -a 0 -x {0.0.3.0 1.1.3.0 557 ------- null} + -t 49.7464 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1108 -a 0 -x {0.0.3.0 1.1.3.0 557 ------- null} - -t 49.7464 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1108 -a 0 -x {0.0.3.0 1.1.3.0 557 ------- null} h -t 49.7464 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1108 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.748 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {0.0.3.0 1.1.3.0 558 ------- null} + -t 49.748 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {0.0.3.0 1.1.3.0 558 ------- null} - -t 49.748 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {0.0.3.0 1.1.3.0 558 ------- null} h -t 49.748 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.7496 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1110 -a 0 -x {0.0.3.0 1.1.3.0 559 ------- null} + -t 49.7496 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1110 -a 0 -x {0.0.3.0 1.1.3.0 559 ------- null} - -t 49.7496 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1110 -a 0 -x {0.0.3.0 1.1.3.0 559 ------- null} h -t 49.7496 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1110 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.7512 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {0.0.3.0 1.1.3.0 560 ------- null} + -t 49.7512 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {0.0.3.0 1.1.3.0 560 ------- null} - -t 49.7512 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {0.0.3.0 1.1.3.0 560 ------- null} h -t 49.7512 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.7528 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1112 -a 0 -x {0.0.3.0 1.1.3.0 561 ------- null} + -t 49.7528 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1112 -a 0 -x {0.0.3.0 1.1.3.0 561 ------- null} - -t 49.7528 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1112 -a 0 -x {0.0.3.0 1.1.3.0 561 ------- null} h -t 49.7528 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1112 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.7544 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {0.0.3.0 1.1.3.0 562 ------- null} + -t 49.7544 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {0.0.3.0 1.1.3.0 562 ------- null} - -t 49.7544 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {0.0.3.0 1.1.3.0 562 ------- null} h -t 49.7544 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.756 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1114 -a 0 -x {0.0.3.0 1.1.3.0 563 ------- null} + -t 49.756 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1114 -a 0 -x {0.0.3.0 1.1.3.0 563 ------- null} - -t 49.756 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1114 -a 0 -x {0.0.3.0 1.1.3.0 563 ------- null} h -t 49.756 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1114 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.7576 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {0.0.3.0 1.1.3.0 564 ------- null} + -t 49.7576 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {0.0.3.0 1.1.3.0 564 ------- null} - -t 49.7576 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {0.0.3.0 1.1.3.0 564 ------- null} h -t 49.7576 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.7592 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1116 -a 0 -x {0.0.3.0 1.1.3.0 565 ------- null} + -t 49.7592 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1116 -a 0 -x {0.0.3.0 1.1.3.0 565 ------- null} - -t 49.7592 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1116 -a 0 -x {0.0.3.0 1.1.3.0 565 ------- null} h -t 49.7592 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1116 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.7608 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {0.0.3.0 1.1.3.0 566 ------- null} + -t 49.7608 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {0.0.3.0 1.1.3.0 566 ------- null} - -t 49.7608 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {0.0.3.0 1.1.3.0 566 ------- null} h -t 49.7608 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.7624 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1118 -a 0 -x {0.0.3.0 1.1.3.0 567 ------- null} + -t 49.7624 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1118 -a 0 -x {0.0.3.0 1.1.3.0 567 ------- null} - -t 49.7624 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1118 -a 0 -x {0.0.3.0 1.1.3.0 567 ------- null} h -t 49.7624 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1118 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.764 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {0.0.3.0 1.1.3.0 568 ------- null} + -t 49.764 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {0.0.3.0 1.1.3.0 568 ------- null} - -t 49.764 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {0.0.3.0 1.1.3.0 568 ------- null} h -t 49.764 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.7656 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1120 -a 0 -x {0.0.3.0 1.1.3.0 569 ------- null} + -t 49.7656 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1120 -a 0 -x {0.0.3.0 1.1.3.0 569 ------- null} - -t 49.7656 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1120 -a 0 -x {0.0.3.0 1.1.3.0 569 ------- null} h -t 49.7656 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1120 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.7672 -s 0 -d 18 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {0.0.3.0 1.1.3.0 570 ------- null} + -t 49.7672 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {0.0.3.0 1.1.3.0 570 ------- null} - -t 49.7672 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {0.0.3.0 1.1.3.0 570 ------- null} h -t 49.7672 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.8384 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1102 -a 0 -x {0.0.3.0 1.1.3.0 551 ------- null} + -t 49.8384 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1102 -a 0 -x {0.0.3.0 1.1.3.0 551 ------- null} - -t 49.8384 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1102 -a 0 -x {0.0.3.0 1.1.3.0 551 ------- null} h -t 49.8384 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1102 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.84 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {0.0.3.0 1.1.3.0 552 ------- null} + -t 49.84 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {0.0.3.0 1.1.3.0 552 ------- null} - -t 49.84 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {0.0.3.0 1.1.3.0 552 ------- null} h -t 49.84 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.8416 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1104 -a 0 -x {0.0.3.0 1.1.3.0 553 ------- null} + -t 49.8416 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1104 -a 0 -x {0.0.3.0 1.1.3.0 553 ------- null} - -t 49.8416 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1104 -a 0 -x {0.0.3.0 1.1.3.0 553 ------- null} h -t 49.8416 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1104 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.8432 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {0.0.3.0 1.1.3.0 554 ------- null} + -t 49.8432 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {0.0.3.0 1.1.3.0 554 ------- null} - -t 49.8432 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {0.0.3.0 1.1.3.0 554 ------- null} h -t 49.8432 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.8448 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1106 -a 0 -x {0.0.3.0 1.1.3.0 555 ------- null} + -t 49.8448 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1106 -a 0 -x {0.0.3.0 1.1.3.0 555 ------- null} - -t 49.8448 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1106 -a 0 -x {0.0.3.0 1.1.3.0 555 ------- null} h -t 49.8448 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1106 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.8464 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {0.0.3.0 1.1.3.0 556 ------- null} + -t 49.8464 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {0.0.3.0 1.1.3.0 556 ------- null} - -t 49.8464 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {0.0.3.0 1.1.3.0 556 ------- null} h -t 49.8464 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.848 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1108 -a 0 -x {0.0.3.0 1.1.3.0 557 ------- null} + -t 49.848 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1108 -a 0 -x {0.0.3.0 1.1.3.0 557 ------- null} - -t 49.848 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1108 -a 0 -x {0.0.3.0 1.1.3.0 557 ------- null} h -t 49.848 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1108 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.8496 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {0.0.3.0 1.1.3.0 558 ------- null} + -t 49.8496 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {0.0.3.0 1.1.3.0 558 ------- null} - -t 49.8496 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {0.0.3.0 1.1.3.0 558 ------- null} h -t 49.8496 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.8512 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1110 -a 0 -x {0.0.3.0 1.1.3.0 559 ------- null} + -t 49.8512 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1110 -a 0 -x {0.0.3.0 1.1.3.0 559 ------- null} - -t 49.8512 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1110 -a 0 -x {0.0.3.0 1.1.3.0 559 ------- null} h -t 49.8512 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1110 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.8528 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {0.0.3.0 1.1.3.0 560 ------- null} + -t 49.8528 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {0.0.3.0 1.1.3.0 560 ------- null} - -t 49.8528 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {0.0.3.0 1.1.3.0 560 ------- null} h -t 49.8528 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.8544 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1112 -a 0 -x {0.0.3.0 1.1.3.0 561 ------- null} + -t 49.8544 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1112 -a 0 -x {0.0.3.0 1.1.3.0 561 ------- null} - -t 49.8544 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1112 -a 0 -x {0.0.3.0 1.1.3.0 561 ------- null} h -t 49.8544 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1112 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.856 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {0.0.3.0 1.1.3.0 562 ------- null} + -t 49.856 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {0.0.3.0 1.1.3.0 562 ------- null} - -t 49.856 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {0.0.3.0 1.1.3.0 562 ------- null} h -t 49.856 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.8576 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1114 -a 0 -x {0.0.3.0 1.1.3.0 563 ------- null} + -t 49.8576 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1114 -a 0 -x {0.0.3.0 1.1.3.0 563 ------- null} - -t 49.8576 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1114 -a 0 -x {0.0.3.0 1.1.3.0 563 ------- null} h -t 49.8576 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1114 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.8592 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {0.0.3.0 1.1.3.0 564 ------- null} + -t 49.8592 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {0.0.3.0 1.1.3.0 564 ------- null} - -t 49.8592 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {0.0.3.0 1.1.3.0 564 ------- null} h -t 49.8592 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.8608 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1116 -a 0 -x {0.0.3.0 1.1.3.0 565 ------- null} + -t 49.8608 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1116 -a 0 -x {0.0.3.0 1.1.3.0 565 ------- null} - -t 49.8608 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1116 -a 0 -x {0.0.3.0 1.1.3.0 565 ------- null} h -t 49.8608 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1116 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.8624 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {0.0.3.0 1.1.3.0 566 ------- null} + -t 49.8624 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {0.0.3.0 1.1.3.0 566 ------- null} - -t 49.8624 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {0.0.3.0 1.1.3.0 566 ------- null} h -t 49.8624 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.864 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1118 -a 0 -x {0.0.3.0 1.1.3.0 567 ------- null} + -t 49.864 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1118 -a 0 -x {0.0.3.0 1.1.3.0 567 ------- null} - -t 49.864 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1118 -a 0 -x {0.0.3.0 1.1.3.0 567 ------- null} h -t 49.864 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1118 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.8656 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {0.0.3.0 1.1.3.0 568 ------- null} + -t 49.8656 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {0.0.3.0 1.1.3.0 568 ------- null} - -t 49.8656 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {0.0.3.0 1.1.3.0 568 ------- null} h -t 49.8656 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.8672 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1120 -a 0 -x {0.0.3.0 1.1.3.0 569 ------- null} + -t 49.8672 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1120 -a 0 -x {0.0.3.0 1.1.3.0 569 ------- null} - -t 49.8672 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1120 -a 0 -x {0.0.3.0 1.1.3.0 569 ------- null} h -t 49.8672 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1120 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.8688 -s 18 -d 24 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {0.0.3.0 1.1.3.0 570 ------- null} + -t 49.8688 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {0.0.3.0 1.1.3.0 570 ------- null} - -t 49.8688 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {0.0.3.0 1.1.3.0 570 ------- null} h -t 49.8688 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.92 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1102 -a 0 -x {0.0.3.0 1.1.3.0 551 ------- null} + -t 49.92 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1102 -a 0 -x {0.0.3.0 1.1.3.0 551 ------- null} - -t 49.92 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1102 -a 0 -x {0.0.3.0 1.1.3.0 551 ------- null} h -t 49.92 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1102 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.9216 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {0.0.3.0 1.1.3.0 552 ------- null} + -t 49.9216 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {0.0.3.0 1.1.3.0 552 ------- null} - -t 49.9216 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {0.0.3.0 1.1.3.0 552 ------- null} h -t 49.9216 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.9232 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1104 -a 0 -x {0.0.3.0 1.1.3.0 553 ------- null} + -t 49.9232 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1104 -a 0 -x {0.0.3.0 1.1.3.0 553 ------- null} - -t 49.9232 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1104 -a 0 -x {0.0.3.0 1.1.3.0 553 ------- null} h -t 49.9232 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1104 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.9248 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {0.0.3.0 1.1.3.0 554 ------- null} + -t 49.9248 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {0.0.3.0 1.1.3.0 554 ------- null} - -t 49.9248 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {0.0.3.0 1.1.3.0 554 ------- null} h -t 49.9248 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.9264 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1106 -a 0 -x {0.0.3.0 1.1.3.0 555 ------- null} + -t 49.9264 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1106 -a 0 -x {0.0.3.0 1.1.3.0 555 ------- null} - -t 49.9264 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1106 -a 0 -x {0.0.3.0 1.1.3.0 555 ------- null} h -t 49.9264 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1106 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.928 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {0.0.3.0 1.1.3.0 556 ------- null} + -t 49.928 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {0.0.3.0 1.1.3.0 556 ------- null} - -t 49.928 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {0.0.3.0 1.1.3.0 556 ------- null} h -t 49.928 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.9296 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1108 -a 0 -x {0.0.3.0 1.1.3.0 557 ------- null} + -t 49.9296 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1108 -a 0 -x {0.0.3.0 1.1.3.0 557 ------- null} - -t 49.9296 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1108 -a 0 -x {0.0.3.0 1.1.3.0 557 ------- null} h -t 49.9296 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1108 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.9312 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {0.0.3.0 1.1.3.0 558 ------- null} + -t 49.9312 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {0.0.3.0 1.1.3.0 558 ------- null} - -t 49.9312 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {0.0.3.0 1.1.3.0 558 ------- null} h -t 49.9312 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.9328 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1110 -a 0 -x {0.0.3.0 1.1.3.0 559 ------- null} + -t 49.9328 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1110 -a 0 -x {0.0.3.0 1.1.3.0 559 ------- null} - -t 49.9328 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1110 -a 0 -x {0.0.3.0 1.1.3.0 559 ------- null} h -t 49.9328 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1110 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.9344 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {0.0.3.0 1.1.3.0 560 ------- null} + -t 49.9344 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {0.0.3.0 1.1.3.0 560 ------- null} - -t 49.9344 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {0.0.3.0 1.1.3.0 560 ------- null} h -t 49.9344 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.936 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1112 -a 0 -x {0.0.3.0 1.1.3.0 561 ------- null} + -t 49.936 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1112 -a 0 -x {0.0.3.0 1.1.3.0 561 ------- null} - -t 49.936 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1112 -a 0 -x {0.0.3.0 1.1.3.0 561 ------- null} h -t 49.936 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1112 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.9376 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {0.0.3.0 1.1.3.0 562 ------- null} + -t 49.9376 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {0.0.3.0 1.1.3.0 562 ------- null} - -t 49.9376 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {0.0.3.0 1.1.3.0 562 ------- null} h -t 49.9376 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.9392 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1114 -a 0 -x {0.0.3.0 1.1.3.0 563 ------- null} + -t 49.9392 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1114 -a 0 -x {0.0.3.0 1.1.3.0 563 ------- null} - -t 49.9392 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1114 -a 0 -x {0.0.3.0 1.1.3.0 563 ------- null} h -t 49.9392 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1114 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.9408 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {0.0.3.0 1.1.3.0 564 ------- null} + -t 49.9408 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {0.0.3.0 1.1.3.0 564 ------- null} - -t 49.9408 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {0.0.3.0 1.1.3.0 564 ------- null} h -t 49.9408 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.9424 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1116 -a 0 -x {0.0.3.0 1.1.3.0 565 ------- null} + -t 49.9424 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1116 -a 0 -x {0.0.3.0 1.1.3.0 565 ------- null} - -t 49.9424 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1116 -a 0 -x {0.0.3.0 1.1.3.0 565 ------- null} h -t 49.9424 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1116 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.944 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {0.0.3.0 1.1.3.0 566 ------- null} + -t 49.944 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {0.0.3.0 1.1.3.0 566 ------- null} - -t 49.944 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {0.0.3.0 1.1.3.0 566 ------- null} h -t 49.944 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.9456 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1118 -a 0 -x {0.0.3.0 1.1.3.0 567 ------- null} + -t 49.9456 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1118 -a 0 -x {0.0.3.0 1.1.3.0 567 ------- null} - -t 49.9456 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1118 -a 0 -x {0.0.3.0 1.1.3.0 567 ------- null} h -t 49.9456 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1118 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.9472 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {0.0.3.0 1.1.3.0 568 ------- null} + -t 49.9472 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {0.0.3.0 1.1.3.0 568 ------- null} - -t 49.9472 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {0.0.3.0 1.1.3.0 568 ------- null} h -t 49.9472 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.9488 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1120 -a 0 -x {0.0.3.0 1.1.3.0 569 ------- null} + -t 49.9488 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1120 -a 0 -x {0.0.3.0 1.1.3.0 569 ------- null} - -t 49.9488 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1120 -a 0 -x {0.0.3.0 1.1.3.0 569 ------- null} h -t 49.9488 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1120 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} r -t 49.9504 -s 24 -d 23 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {0.0.3.0 1.1.3.0 570 ------- null} + -t 49.9504 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {0.0.3.0 1.1.3.0 570 ------- null} - -t 49.9504 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {0.0.3.0 1.1.3.0 570 ------- null} h -t 49.9504 -s 23 -d 22 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {0.0.3.0 1.1.3.0 -1 ------- null} nam-1.15/ex/lan.nam0000664000076400007660000114655606610761035013005 0ustar tomhnsnamn -t * -s 0 -S UP -v circle n -t * -s 1 -S UP -v circle n -t * -s 2 -S UP -v circle n -t * -s 3 -S UP -v circle n -t * -s 4 -S UP -v circle n -t * -s 5 -S UP -v circle n -t * -s 6 -S UP -v circle n -t * -s 7 -S UP -v circle n -t * -s 8 -S UP -v circle n -t * -s 9 -S UP -v circle n -t * -s 11 -S UP -v circle n -t * -s 12 -S UP -v circle n -t * -s 13 -S UP -v circle X -t * -n 10 -r 10Mb -D 4ms -o left l -t * -s 0 -d 6 -S UP -r 10Mb -D 2ms -o right-down l -t * -s 1 -d 6 -S UP -r 10Mb -D 3ms -o right-up l -t * -s 6 -d 7 -S UP -r 1Mb -D 20ms -o right l -t * -s 7 -d 2 -S UP -r 10Mb -D 4ms -o right-up l -t * -s 7 -d 8 -S UP -r 10Mb -D 4ms -o right l -t * -s 3 -d 8 -S UP -r 10Mb -D 3ms -o right-up l -t * -s 8 -d 9 -S UP -r 1.5Mb -D 20ms -o right L -t * -s 10 -d 9 -o up L -t * -s 10 -d 5 -o down L -t * -s 10 -d 11 -o down L -t * -s 10 -d 12 -o up L -t * -s 10 -d 13 -o down L -t * -s 10 -d 4 -o down q -t * -s 6 -d 7 -a 0.5 q -t * -s 7 -d 8 -a 0.5 q -t * -s 8 -d 9 -a 0.5 c -t * -i 0 -n red c -t * -i 10 -n DarkSlateGray c -t * -i 11 -n DarkOliveGreen c -t * -i 12 -n DarkKhaki c -t * -i 13 -n DarkSalmon c -t * -i 14 -n DarkOrange c -t * -i 20 -n DarkOrchid c -t * -i 21 -n DarkViolet c -t * -i 22 -n DarkBlue c -t * -i 23 -n DarkCyan c -t * -i 24 -n DarkMagenta + -t 0 -s 1 -d 6 -p tcp -e 1000 -i 0 -a 10 - -t 0 -s 1 -d 6 -p tcp -e 1000 -i 0 -a 10 h -t 0 -s 1 -d 6 -p tcp -e 1000 -i 0 -a 10 + -t 0 -s 3 -d 8 -p tcp -e 1000 -i 1 -a 20 - -t 0 -s 3 -d 8 -p tcp -e 1000 -i 1 -a 20 h -t 0 -s 3 -d 8 -p tcp -e 1000 -i 1 -a 20 r -t 0.0038 -s 1 -d 6 -p tcp -e 1000 -i 0 -a 10 r -t 0.0038 -s 3 -d 8 -p tcp -e 1000 -i 1 -a 20 + -t 0.0038 -s 6 -d 7 -p tcp -e 1000 -i 0 -a 10 - -t 0.0038 -s 6 -d 7 -p tcp -e 1000 -i 0 -a 10 h -t 0.0038 -s 6 -d 7 -p tcp -e 1000 -i 0 -a 10 + -t 0.0038 -s 8 -d 9 -p tcp -e 1000 -i 1 -a 20 - -t 0.0038 -s 8 -d 9 -p tcp -e 1000 -i 1 -a 20 h -t 0.0038 -s 8 -d 9 -p tcp -e 1000 -i 1 -a 20 r -t 0.0291333 -s 8 -d 9 -p tcp -e 1000 -i 1 -a 20 + -t 0.0291333 -s 9 -d 10 -p tcp -e 1000 -i 1 -a 20 - -t 0.0291333 -s 9 -d 10 -p tcp -e 1000 -i 1 -a 20 h -t 0.0291333 -s 9 -d 10 -p tcp -e 1000 -i 1 -a 20 r -t 0.0318 -s 6 -d 7 -p tcp -e 1000 -i 0 -a 10 + -t 0.0318 -s 7 -d 2 -p tcp -e 1000 -i 0 -a 10 - -t 0.0318 -s 7 -d 2 -p tcp -e 1000 -i 0 -a 10 h -t 0.0318 -s 7 -d 2 -p tcp -e 1000 -i 0 -a 10 r -t 0.0339333 -s 9 -d 10 -p tcp -e 1000 -i 1 -a 20 + -t 0.0339333 -s 4 -d 10 -p ack -e 40 -i 2 -a 20 - -t 0.0339333 -s 4 -d 10 -p ack -e 40 -i 2 -a 20 h -t 0.0339333 -s 4 -d 10 -p ack -e 40 -i 2 -a 20 r -t 0.0366 -s 7 -d 2 -p tcp -e 1000 -i 0 -a 10 + -t 0.0366 -s 2 -d 7 -p ack -e 40 -i 3 -a 10 - -t 0.0366 -s 2 -d 7 -p ack -e 40 -i 3 -a 10 h -t 0.0366 -s 2 -d 7 -p ack -e 40 -i 3 -a 10 r -t 0.0379653 -s 4 -d 10 -p ack -e 40 -i 2 -a 20 + -t 0.0379653 -s 9 -d 8 -p ack -e 40 -i 2 -a 20 - -t 0.0379653 -s 9 -d 8 -p ack -e 40 -i 2 -a 20 h -t 0.0379653 -s 9 -d 8 -p ack -e 40 -i 2 -a 20 R -t 0.038 -s 9 -d 8 -g 24 -m iif -p * -T 2.0 R -t 0.038 -s 3 -d 8 -g 24 -m oif -p * -T 2.0 R -t 0.038 -s 8 -d 9 -g 24 -m oif -p * -T 2.0 R -t 0.038 -s 8 -d 9 -g 23 -m oif -p * -T 2.0 R -t 0.038 -s 8 -d 7 -g 24 -m oif -p * -T 2.0 R -t 0.038 -s 7 -d 2 -g 24 -m oif -p * -T 2.0 R -t 0.038 -s 7 -d 6 -g 24 -m oif -n -p * -T 2.0 r -t 0.040632 -s 2 -d 7 -p ack -e 40 -i 3 -a 10 + -t 0.040632 -s 7 -d 6 -p ack -e 40 -i 3 -a 10 - -t 0.040632 -s 7 -d 6 -p ack -e 40 -i 3 -a 10 h -t 0.040632 -s 7 -d 6 -p ack -e 40 -i 3 -a 10 r -t 0.0581786 -s 9 -d 8 -p ack -e 40 -i 2 -a 20 + -t 0.0581787 -s 8 -d 3 -p ack -e 40 -i 2 -a 20 - -t 0.0581787 -s 8 -d 3 -p ack -e 40 -i 2 -a 20 h -t 0.0581787 -s 8 -d 3 -p ack -e 40 -i 2 -a 20 r -t 0.060952 -s 7 -d 6 -p ack -e 40 -i 3 -a 10 + -t 0.060952 -s 6 -d 1 -p ack -e 40 -i 3 -a 10 - -t 0.060952 -s 6 -d 1 -p ack -e 40 -i 3 -a 10 h -t 0.060952 -s 6 -d 1 -p ack -e 40 -i 3 -a 10 r -t 0.0612107 -s 8 -d 3 -p ack -e 40 -i 2 -a 20 + -t 0.0612107 -s 3 -d 8 -p tcp -e 1000 -i 4 -a 20 - -t 0.0612107 -s 3 -d 8 -p tcp -e 1000 -i 4 -a 20 h -t 0.0612107 -s 3 -d 8 -p tcp -e 1000 -i 4 -a 20 + -t 0.0612107 -s 3 -d 8 -p tcp -e 1000 -i 5 -a 20 - -t 0.0620107 -s 3 -d 8 -p tcp -e 1000 -i 5 -a 20 h -t 0.0620107 -s 3 -d 8 -p tcp -e 1000 -i 5 -a 20 r -t 0.063984 -s 6 -d 1 -p ack -e 40 -i 3 -a 10 + -t 0.063984 -s 1 -d 6 -p tcp -e 1000 -i 6 -a 10 - -t 0.063984 -s 1 -d 6 -p tcp -e 1000 -i 6 -a 10 h -t 0.063984 -s 1 -d 6 -p tcp -e 1000 -i 6 -a 10 + -t 0.063984 -s 1 -d 6 -p tcp -e 1000 -i 7 -a 10 - -t 0.064784 -s 1 -d 6 -p tcp -e 1000 -i 7 -a 10 h -t 0.064784 -s 1 -d 6 -p tcp -e 1000 -i 7 -a 10 r -t 0.0650107 -s 3 -d 8 -p tcp -e 1000 -i 4 -a 20 + -t 0.0650107 -s 8 -d 9 -p tcp -e 1000 -i 4 -a 20 - -t 0.0650107 -s 8 -d 9 -p tcp -e 1000 -i 4 -a 20 h -t 0.0650107 -s 8 -d 9 -p tcp -e 1000 -i 4 -a 20 r -t 0.0658107 -s 3 -d 8 -p tcp -e 1000 -i 5 -a 20 + -t 0.0658107 -s 8 -d 9 -p tcp -e 1000 -i 5 -a 20 r -t 0.067784 -s 1 -d 6 -p tcp -e 1000 -i 6 -a 10 + -t 0.067784 -s 6 -d 7 -p tcp -e 1000 -i 6 -a 10 - -t 0.067784 -s 6 -d 7 -p tcp -e 1000 -i 6 -a 10 h -t 0.067784 -s 6 -d 7 -p tcp -e 1000 -i 6 -a 10 r -t 0.068584 -s 1 -d 6 -p tcp -e 1000 -i 7 -a 10 + -t 0.068584 -s 6 -d 7 -p tcp -e 1000 -i 7 -a 10 - -t 0.070344 -s 8 -d 9 -p tcp -e 1000 -i 5 -a 20 h -t 0.070344 -s 8 -d 9 -p tcp -e 1000 -i 5 -a 20 - -t 0.075784 -s 6 -d 7 -p tcp -e 1000 -i 7 -a 10 h -t 0.075784 -s 6 -d 7 -p tcp -e 1000 -i 7 -a 10 r -t 0.090344 -s 8 -d 9 -p tcp -e 1000 -i 4 -a 20 + -t 0.090344 -s 9 -d 10 -p tcp -e 1000 -i 4 -a 20 - -t 0.090344 -s 9 -d 10 -p tcp -e 1000 -i 4 -a 20 h -t 0.090344 -s 9 -d 10 -p tcp -e 1000 -i 4 -a 20 r -t 0.095144 -s 9 -d 10 -p tcp -e 1000 -i 4 -a 20 + -t 0.095144 -s 4 -d 10 -p ack -e 40 -i 8 -a 20 - -t 0.095144 -s 4 -d 10 -p ack -e 40 -i 8 -a 20 h -t 0.095144 -s 4 -d 10 -p ack -e 40 -i 8 -a 20 r -t 0.0956773 -s 8 -d 9 -p tcp -e 1000 -i 5 -a 20 + -t 0.0956773 -s 9 -d 10 -p tcp -e 1000 -i 5 -a 20 - -t 0.0956773 -s 9 -d 10 -p tcp -e 1000 -i 5 -a 20 h -t 0.0956773 -s 9 -d 10 -p tcp -e 1000 -i 5 -a 20 r -t 0.095784 -s 6 -d 7 -p tcp -e 1000 -i 6 -a 10 + -t 0.095784 -s 7 -d 2 -p tcp -e 1000 -i 6 -a 10 - -t 0.095784 -s 7 -d 2 -p tcp -e 1000 -i 6 -a 10 h -t 0.095784 -s 7 -d 2 -p tcp -e 1000 -i 6 -a 10 r -t 0.099176 -s 4 -d 10 -p ack -e 40 -i 8 -a 20 + -t 0.099176 -s 9 -d 8 -p ack -e 40 -i 8 -a 20 - -t 0.099176 -s 9 -d 8 -p ack -e 40 -i 8 -a 20 h -t 0.099176 -s 9 -d 8 -p ack -e 40 -i 8 -a 20 + -t 0.1 -s 1 -d 6 -p tcp -e 1000 -i 9 -a 11 - -t 0.1 -s 1 -d 6 -p tcp -e 1000 -i 9 -a 11 h -t 0.1 -s 1 -d 6 -p tcp -e 1000 -i 9 -a 11 a -t 0.1 -s 3 -d 8 -n "TCP 21" a -t 0.1 -s 3 -d 8 -n "TCP 22" f -t 0.1 -s 3 -a "TCP 21" -n cwin -T v -v 1000 + -t 0.1 -s 3 -d 8 -p tcp -e 1000 -i 10 -a 21 - -t 0.1 -s 3 -d 8 -p tcp -e 1000 -i 10 -a 21 h -t 0.1 -s 3 -d 8 -p tcp -e 1000 -i 10 -a 21 r -t 0.100477 -s 9 -d 10 -p tcp -e 1000 -i 5 -a 20 + -t 0.100477 -s 4 -d 10 -p ack -e 40 -i 11 -a 20 - -t 0.100477 -s 4 -d 10 -p ack -e 40 -i 11 -a 20 h -t 0.100477 -s 4 -d 10 -p ack -e 40 -i 11 -a 20 r -t 0.100584 -s 7 -d 2 -p tcp -e 1000 -i 6 -a 10 + -t 0.100584 -s 2 -d 7 -p ack -e 40 -i 12 -a 10 - -t 0.100584 -s 2 -d 7 -p ack -e 40 -i 12 -a 10 h -t 0.100584 -s 2 -d 7 -p ack -e 40 -i 12 -a 10 r -t 0.103784 -s 6 -d 7 -p tcp -e 1000 -i 7 -a 10 + -t 0.103784 -s 7 -d 2 -p tcp -e 1000 -i 7 -a 10 - -t 0.103784 -s 7 -d 2 -p tcp -e 1000 -i 7 -a 10 h -t 0.103784 -s 7 -d 2 -p tcp -e 1000 -i 7 -a 10 r -t 0.1038 -s 3 -d 8 -p tcp -e 1000 -i 10 -a 21 r -t 0.1038 -s 1 -d 6 -p tcp -e 1000 -i 9 -a 11 + -t 0.1038 -s 6 -d 7 -p tcp -e 1000 -i 9 -a 11 - -t 0.1038 -s 6 -d 7 -p tcp -e 1000 -i 9 -a 11 h -t 0.1038 -s 6 -d 7 -p tcp -e 1000 -i 9 -a 11 + -t 0.1038 -s 8 -d 9 -p tcp -e 1000 -i 10 -a 21 - -t 0.1038 -s 8 -d 9 -p tcp -e 1000 -i 10 -a 21 h -t 0.1038 -s 8 -d 9 -p tcp -e 1000 -i 10 -a 21 r -t 0.104509 -s 4 -d 10 -p ack -e 40 -i 11 -a 20 + -t 0.104509 -s 9 -d 8 -p ack -e 40 -i 11 -a 20 - -t 0.104509 -s 9 -d 8 -p ack -e 40 -i 11 -a 20 h -t 0.104509 -s 9 -d 8 -p ack -e 40 -i 11 -a 20 r -t 0.104616 -s 2 -d 7 -p ack -e 40 -i 12 -a 10 + -t 0.104616 -s 7 -d 6 -p ack -e 40 -i 12 -a 10 - -t 0.104616 -s 7 -d 6 -p ack -e 40 -i 12 -a 10 h -t 0.104616 -s 7 -d 6 -p ack -e 40 -i 12 -a 10 r -t 0.108584 -s 7 -d 2 -p tcp -e 1000 -i 7 -a 10 + -t 0.108584 -s 2 -d 7 -p ack -e 40 -i 13 -a 10 - -t 0.108584 -s 2 -d 7 -p ack -e 40 -i 13 -a 10 h -t 0.108584 -s 2 -d 7 -p ack -e 40 -i 13 -a 10 r -t 0.112616 -s 2 -d 7 -p ack -e 40 -i 13 -a 10 + -t 0.112616 -s 7 -d 6 -p ack -e 40 -i 13 -a 10 - -t 0.112616 -s 7 -d 6 -p ack -e 40 -i 13 -a 10 h -t 0.112616 -s 7 -d 6 -p ack -e 40 -i 13 -a 10 r -t 0.119389 -s 9 -d 8 -p ack -e 40 -i 8 -a 20 + -t 0.119389 -s 8 -d 3 -p ack -e 40 -i 8 -a 20 - -t 0.119389 -s 8 -d 3 -p ack -e 40 -i 8 -a 20 h -t 0.119389 -s 8 -d 3 -p ack -e 40 -i 8 -a 20 r -t 0.122421 -s 8 -d 3 -p ack -e 40 -i 8 -a 20 + -t 0.122421 -s 3 -d 8 -p tcp -e 1000 -i 14 -a 20 - -t 0.122421 -s 3 -d 8 -p tcp -e 1000 -i 14 -a 20 h -t 0.122421 -s 3 -d 8 -p tcp -e 1000 -i 14 -a 20 + -t 0.122421 -s 3 -d 8 -p tcp -e 1000 -i 15 -a 20 - -t 0.123221 -s 3 -d 8 -p tcp -e 1000 -i 15 -a 20 h -t 0.123221 -s 3 -d 8 -p tcp -e 1000 -i 15 -a 20 r -t 0.124722 -s 9 -d 8 -p ack -e 40 -i 11 -a 20 + -t 0.124723 -s 8 -d 3 -p ack -e 40 -i 11 -a 20 - -t 0.124723 -s 8 -d 3 -p ack -e 40 -i 11 -a 20 h -t 0.124723 -s 8 -d 3 -p ack -e 40 -i 11 -a 20 r -t 0.124936 -s 7 -d 6 -p ack -e 40 -i 12 -a 10 + -t 0.124936 -s 6 -d 1 -p ack -e 40 -i 12 -a 10 - -t 0.124936 -s 6 -d 1 -p ack -e 40 -i 12 -a 10 h -t 0.124936 -s 6 -d 1 -p ack -e 40 -i 12 -a 10 r -t 0.126221 -s 3 -d 8 -p tcp -e 1000 -i 14 -a 20 + -t 0.126221 -s 8 -d 9 -p tcp -e 1000 -i 14 -a 20 - -t 0.126221 -s 8 -d 9 -p tcp -e 1000 -i 14 -a 20 h -t 0.126221 -s 8 -d 9 -p tcp -e 1000 -i 14 -a 20 r -t 0.127021 -s 3 -d 8 -p tcp -e 1000 -i 15 -a 20 + -t 0.127021 -s 8 -d 9 -p tcp -e 1000 -i 15 -a 20 r -t 0.127755 -s 8 -d 3 -p ack -e 40 -i 11 -a 20 + -t 0.127755 -s 3 -d 8 -p tcp -e 1000 -i 16 -a 20 - -t 0.127755 -s 3 -d 8 -p tcp -e 1000 -i 16 -a 20 h -t 0.127755 -s 3 -d 8 -p tcp -e 1000 -i 16 -a 20 + -t 0.127755 -s 3 -d 8 -p tcp -e 1000 -i 17 -a 20 r -t 0.127968 -s 6 -d 1 -p ack -e 40 -i 12 -a 10 + -t 0.127968 -s 1 -d 6 -p tcp -e 1000 -i 18 -a 10 - -t 0.127968 -s 1 -d 6 -p tcp -e 1000 -i 18 -a 10 h -t 0.127968 -s 1 -d 6 -p tcp -e 1000 -i 18 -a 10 + -t 0.127968 -s 1 -d 6 -p tcp -e 1000 -i 19 -a 10 - -t 0.128555 -s 3 -d 8 -p tcp -e 1000 -i 17 -a 20 h -t 0.128555 -s 3 -d 8 -p tcp -e 1000 -i 17 -a 20 - -t 0.128768 -s 1 -d 6 -p tcp -e 1000 -i 19 -a 10 h -t 0.128768 -s 1 -d 6 -p tcp -e 1000 -i 19 -a 10 r -t 0.129133 -s 8 -d 9 -p tcp -e 1000 -i 10 -a 21 + -t 0.129133 -s 9 -d 10 -p tcp -e 1000 -i 10 -a 21 - -t 0.129133 -s 9 -d 10 -p tcp -e 1000 -i 10 -a 21 h -t 0.129133 -s 9 -d 10 -p tcp -e 1000 -i 10 -a 21 r -t 0.131555 -s 3 -d 8 -p tcp -e 1000 -i 16 -a 20 - -t 0.131555 -s 8 -d 9 -p tcp -e 1000 -i 15 -a 20 h -t 0.131555 -s 8 -d 9 -p tcp -e 1000 -i 15 -a 20 + -t 0.131555 -s 8 -d 9 -p tcp -e 1000 -i 16 -a 20 r -t 0.131768 -s 1 -d 6 -p tcp -e 1000 -i 18 -a 10 + -t 0.131768 -s 6 -d 7 -p tcp -e 1000 -i 18 -a 10 - -t 0.131768 -s 6 -d 7 -p tcp -e 1000 -i 18 -a 10 h -t 0.131768 -s 6 -d 7 -p tcp -e 1000 -i 18 -a 10 r -t 0.1318 -s 6 -d 7 -p tcp -e 1000 -i 9 -a 11 + -t 0.1318 -s 7 -d 2 -p tcp -e 1000 -i 9 -a 11 - -t 0.1318 -s 7 -d 2 -p tcp -e 1000 -i 9 -a 11 h -t 0.1318 -s 7 -d 2 -p tcp -e 1000 -i 9 -a 11 r -t 0.132355 -s 3 -d 8 -p tcp -e 1000 -i 17 -a 20 + -t 0.132355 -s 8 -d 9 -p tcp -e 1000 -i 17 -a 20 r -t 0.132568 -s 1 -d 6 -p tcp -e 1000 -i 19 -a 10 + -t 0.132568 -s 6 -d 7 -p tcp -e 1000 -i 19 -a 10 r -t 0.132936 -s 7 -d 6 -p ack -e 40 -i 13 -a 10 + -t 0.132936 -s 6 -d 1 -p ack -e 40 -i 13 -a 10 - -t 0.132936 -s 6 -d 1 -p ack -e 40 -i 13 -a 10 h -t 0.132936 -s 6 -d 1 -p ack -e 40 -i 13 -a 10 r -t 0.133933 -s 9 -d 10 -p tcp -e 1000 -i 10 -a 21 a -t 0.133933 -s 4 -d 10 -n "TCP 21" + -t 0.133933 -s 4 -d 10 -p ack -e 40 -i 20 -a 21 - -t 0.133933 -s 4 -d 10 -p ack -e 40 -i 20 -a 21 h -t 0.133933 -s 4 -d 10 -p ack -e 40 -i 20 -a 21 r -t 0.135968 -s 6 -d 1 -p ack -e 40 -i 13 -a 10 + -t 0.135968 -s 1 -d 6 -p tcp -e 1000 -i 21 -a 10 - -t 0.135968 -s 1 -d 6 -p tcp -e 1000 -i 21 -a 10 h -t 0.135968 -s 1 -d 6 -p tcp -e 1000 -i 21 -a 10 + -t 0.135968 -s 1 -d 6 -p tcp -e 1000 -i 22 -a 10 r -t 0.1366 -s 7 -d 2 -p tcp -e 1000 -i 9 -a 11 + -t 0.1366 -s 2 -d 7 -p ack -e 40 -i 23 -a 11 - -t 0.1366 -s 2 -d 7 -p ack -e 40 -i 23 -a 11 h -t 0.1366 -s 2 -d 7 -p ack -e 40 -i 23 -a 11 - -t 0.136768 -s 1 -d 6 -p tcp -e 1000 -i 22 -a 10 h -t 0.136768 -s 1 -d 6 -p tcp -e 1000 -i 22 -a 10 - -t 0.136888 -s 8 -d 9 -p tcp -e 1000 -i 16 -a 20 h -t 0.136888 -s 8 -d 9 -p tcp -e 1000 -i 16 -a 20 r -t 0.137965 -s 4 -d 10 -p ack -e 40 -i 20 -a 21 + -t 0.137965 -s 9 -d 8 -p ack -e 40 -i 20 -a 21 - -t 0.137965 -s 9 -d 8 -p ack -e 40 -i 20 -a 21 h -t 0.137965 -s 9 -d 8 -p ack -e 40 -i 20 -a 21 r -t 0.139768 -s 1 -d 6 -p tcp -e 1000 -i 21 -a 10 - -t 0.139768 -s 6 -d 7 -p tcp -e 1000 -i 19 -a 10 h -t 0.139768 -s 6 -d 7 -p tcp -e 1000 -i 19 -a 10 + -t 0.139768 -s 6 -d 7 -p tcp -e 1000 -i 21 -a 10 r -t 0.140568 -s 1 -d 6 -p tcp -e 1000 -i 22 -a 10 + -t 0.140568 -s 6 -d 7 -p tcp -e 1000 -i 22 -a 10 r -t 0.140632 -s 2 -d 7 -p ack -e 40 -i 23 -a 11 + -t 0.140632 -s 7 -d 6 -p ack -e 40 -i 23 -a 11 - -t 0.140632 -s 7 -d 6 -p ack -e 40 -i 23 -a 11 h -t 0.140632 -s 7 -d 6 -p ack -e 40 -i 23 -a 11 - -t 0.142221 -s 8 -d 9 -p tcp -e 1000 -i 17 -a 20 h -t 0.142221 -s 8 -d 9 -p tcp -e 1000 -i 17 -a 20 l -t 0.145293 -s 8 -d 9 -S DOWN n -t 0.145293 -s 8 -S DOWN R -t 0.145293 -s 8 -d 9 -g 24 -m oif -p * -T 2.0 -x R -t 0.145293 -s 8 -d 9 -g 23 -m oif -p * -T 2.0 -x R -t 0.145293 -s 8 -d 7 -g 24 -m oif -p * -T 2.0 -x d -t 0.145293 -e 1000 -s 8 -d 9 -a 20 -c 20 -p tcp -i 17 d -t 0.145293 -e 40 -s 9 -d 8 -a 21 -c 21 -p ack -i 20 d -t 0.145293 -e 1000 -s 8 -d 9 -a 20 -c 20 -p tcp -i 16 d -t 0.145293 -e 1000 -s 8 -d 9 -a 20 -c 20 -p tcp -i 15 d -t 0.145293 -e 1000 -s 8 -d 9 -a 20 -c 20 -p tcp -i 14 - -t 0.147768 -s 6 -d 7 -p tcp -e 1000 -i 21 -a 10 h -t 0.147768 -s 6 -d 7 -p tcp -e 1000 -i 21 -a 10 n -t 0.151555 -s 8 -S UP l -t 0.151555 -s 8 -d 9 -S UP - -t 0.155768 -s 6 -d 7 -p tcp -e 1000 -i 22 -a 10 h -t 0.155768 -s 6 -d 7 -p tcp -e 1000 -i 22 -a 10 + -t 0.156355 -s 4 -d 10 -p ack -e 40 -i 24 -a 20 - -t 0.156355 -s 4 -d 10 -p ack -e 40 -i 24 -a 20 h -t 0.156355 -s 4 -d 10 -p ack -e 40 -i 24 -a 20 R -t 0.156355 -s 8 -d 9 -g 23 -m oif -p * -T 2.0 r -t 0.158178 -s 9 -d 8 -p ack -e 40 -i 20 -a 21 + -t 0.158179 -s 8 -d 3 -p ack -e 40 -i 20 -a 21 - -t 0.158179 -s 8 -d 3 -p ack -e 40 -i 20 -a 21 h -t 0.158179 -s 8 -d 3 -p ack -e 40 -i 20 -a 21 R -t 0.159768 -s 8 -d 9 -g 24 -m oif -p * -T 2.0 r -t 0.159768 -s 6 -d 7 -p tcp -e 1000 -i 18 -a 10 + -t 0.159768 -s 7 -d 2 -p tcp -e 1000 -i 18 -a 10 - -t 0.159768 -s 7 -d 2 -p tcp -e 1000 -i 18 -a 10 h -t 0.159768 -s 7 -d 2 -p tcp -e 1000 -i 18 -a 10 r -t 0.160387 -s 4 -d 10 -p ack -e 40 -i 24 -a 20 + -t 0.160387 -s 9 -d 8 -p ack -e 40 -i 24 -a 20 - -t 0.160387 -s 9 -d 8 -p ack -e 40 -i 24 -a 20 h -t 0.160387 -s 9 -d 8 -p ack -e 40 -i 24 -a 20 r -t 0.160952 -s 7 -d 6 -p ack -e 40 -i 23 -a 11 + -t 0.160952 -s 6 -d 1 -p ack -e 40 -i 23 -a 11 - -t 0.160952 -s 6 -d 1 -p ack -e 40 -i 23 -a 11 h -t 0.160952 -s 6 -d 1 -p ack -e 40 -i 23 -a 11 r -t 0.161211 -s 8 -d 3 -p ack -e 40 -i 20 -a 21 f -t 0.1 -s 3 -a "TCP 21" -n cwin -T v -v 2000 + -t 0.161211 -s 3 -d 8 -p tcp -e 1000 -i 25 -a 21 - -t 0.161211 -s 3 -d 8 -p tcp -e 1000 -i 25 -a 21 h -t 0.161211 -s 3 -d 8 -p tcp -e 1000 -i 25 -a 21 + -t 0.161211 -s 3 -d 8 -p tcp -e 1000 -i 26 -a 21 R -t 0.161211 -s 8 -d 7 -g 24 -m oif -p * -T 2.0 + -t 0.161688 -s 4 -d 10 -p ack -e 40 -i 27 -a 20 - -t 0.161688 -s 4 -d 10 -p ack -e 40 -i 27 -a 20 h -t 0.161688 -s 4 -d 10 -p ack -e 40 -i 27 -a 20 - -t 0.162011 -s 3 -d 8 -p tcp -e 1000 -i 26 -a 21 h -t 0.162011 -s 3 -d 8 -p tcp -e 1000 -i 26 -a 21 r -t 0.163984 -s 6 -d 1 -p ack -e 40 -i 23 -a 11 + -t 0.163984 -s 1 -d 6 -p tcp -e 1000 -i 28 -a 11 - -t 0.163984 -s 1 -d 6 -p tcp -e 1000 -i 28 -a 11 h -t 0.163984 -s 1 -d 6 -p tcp -e 1000 -i 28 -a 11 + -t 0.163984 -s 1 -d 6 -p tcp -e 1000 -i 29 -a 11 r -t 0.164568 -s 7 -d 2 -p tcp -e 1000 -i 18 -a 10 + -t 0.164568 -s 2 -d 7 -p ack -e 40 -i 30 -a 10 - -t 0.164568 -s 2 -d 7 -p ack -e 40 -i 30 -a 10 h -t 0.164568 -s 2 -d 7 -p ack -e 40 -i 30 -a 10 - -t 0.164784 -s 1 -d 6 -p tcp -e 1000 -i 29 -a 11 h -t 0.164784 -s 1 -d 6 -p tcp -e 1000 -i 29 -a 11 r -t 0.165011 -s 3 -d 8 -p tcp -e 1000 -i 25 -a 21 + -t 0.165011 -s 8 -d 9 -p tcp -e 1000 -i 25 -a 21 - -t 0.165011 -s 8 -d 9 -p tcp -e 1000 -i 25 -a 21 h -t 0.165011 -s 8 -d 9 -p tcp -e 1000 -i 25 -a 21 r -t 0.16572 -s 4 -d 10 -p ack -e 40 -i 27 -a 20 + -t 0.16572 -s 9 -d 8 -p ack -e 40 -i 27 -a 20 - -t 0.16572 -s 9 -d 8 -p ack -e 40 -i 27 -a 20 h -t 0.16572 -s 9 -d 8 -p ack -e 40 -i 27 -a 20 r -t 0.165811 -s 3 -d 8 -p tcp -e 1000 -i 26 -a 21 + -t 0.165811 -s 8 -d 9 -p tcp -e 1000 -i 26 -a 21 r -t 0.167021 -s 9 -d 10 -p tcp -e 1000 -i 16 -a 20 + -t 0.167021 -s 4 -d 10 -p ack -e 40 -i 31 -a 20 - -t 0.167021 -s 4 -d 10 -p ack -e 40 -i 31 -a 20 h -t 0.167021 -s 4 -d 10 -p ack -e 40 -i 31 -a 20 r -t 0.167768 -s 6 -d 7 -p tcp -e 1000 -i 19 -a 10 + -t 0.167768 -s 7 -d 2 -p tcp -e 1000 -i 19 -a 10 - -t 0.167768 -s 7 -d 2 -p tcp -e 1000 -i 19 -a 10 h -t 0.167768 -s 7 -d 2 -p tcp -e 1000 -i 19 -a 10 r -t 0.167784 -s 1 -d 6 -p tcp -e 1000 -i 28 -a 11 + -t 0.167784 -s 6 -d 7 -p tcp -e 1000 -i 28 -a 11 - -t 0.167784 -s 6 -d 7 -p tcp -e 1000 -i 28 -a 11 h -t 0.167784 -s 6 -d 7 -p tcp -e 1000 -i 28 -a 11 r -t 0.168584 -s 1 -d 6 -p tcp -e 1000 -i 29 -a 11 + -t 0.168584 -s 6 -d 7 -p tcp -e 1000 -i 29 -a 11 r -t 0.1686 -s 2 -d 7 -p ack -e 40 -i 30 -a 10 + -t 0.1686 -s 7 -d 6 -p ack -e 40 -i 30 -a 10 - -t 0.1686 -s 7 -d 6 -p ack -e 40 -i 30 -a 10 h -t 0.1686 -s 7 -d 6 -p ack -e 40 -i 30 -a 10 - -t 0.170344 -s 8 -d 9 -p tcp -e 1000 -i 26 -a 21 h -t 0.170344 -s 8 -d 9 -p tcp -e 1000 -i 26 -a 21 r -t 0.171053 -s 4 -d 10 -p ack -e 40 -i 31 -a 20 + -t 0.171053 -s 9 -d 8 -p ack -e 40 -i 31 -a 20 - -t 0.171053 -s 9 -d 8 -p ack -e 40 -i 31 -a 20 h -t 0.171053 -s 9 -d 8 -p ack -e 40 -i 31 -a 20 + -t 0.172355 -s 4 -d 10 -p ack -e 40 -i 32 -a 20 - -t 0.172355 -s 4 -d 10 -p ack -e 40 -i 32 -a 20 h -t 0.172355 -s 4 -d 10 -p ack -e 40 -i 32 -a 20 r -t 0.172568 -s 7 -d 2 -p tcp -e 1000 -i 19 -a 10 + -t 0.172568 -s 2 -d 7 -p ack -e 40 -i 33 -a 10 - -t 0.172568 -s 2 -d 7 -p ack -e 40 -i 33 -a 10 h -t 0.172568 -s 2 -d 7 -p ack -e 40 -i 33 -a 10 r -t 0.175768 -s 6 -d 7 -p tcp -e 1000 -i 21 -a 10 + -t 0.175768 -s 7 -d 2 -p tcp -e 1000 -i 21 -a 10 - -t 0.175768 -s 7 -d 2 -p tcp -e 1000 -i 21 -a 10 h -t 0.175768 -s 7 -d 2 -p tcp -e 1000 -i 21 -a 10 - -t 0.175784 -s 6 -d 7 -p tcp -e 1000 -i 29 -a 11 h -t 0.175784 -s 6 -d 7 -p tcp -e 1000 -i 29 -a 11 r -t 0.176387 -s 4 -d 10 -p ack -e 40 -i 32 -a 20 + -t 0.176387 -s 9 -d 8 -p ack -e 40 -i 32 -a 20 - -t 0.176387 -s 9 -d 8 -p ack -e 40 -i 32 -a 20 h -t 0.176387 -s 9 -d 8 -p ack -e 40 -i 32 -a 20 r -t 0.1766 -s 2 -d 7 -p ack -e 40 -i 33 -a 10 + -t 0.1766 -s 7 -d 6 -p ack -e 40 -i 33 -a 10 - -t 0.1766 -s 7 -d 6 -p ack -e 40 -i 33 -a 10 h -t 0.1766 -s 7 -d 6 -p ack -e 40 -i 33 -a 10 r -t 0.180568 -s 7 -d 2 -p tcp -e 1000 -i 21 -a 10 + -t 0.180568 -s 2 -d 7 -p ack -e 40 -i 34 -a 10 - -t 0.180568 -s 2 -d 7 -p ack -e 40 -i 34 -a 10 h -t 0.180568 -s 2 -d 7 -p ack -e 40 -i 34 -a 10 r -t 0.1806 -s 9 -d 8 -p ack -e 40 -i 24 -a 20 + -t 0.1806 -s 8 -d 3 -p ack -e 40 -i 24 -a 20 - -t 0.1806 -s 8 -d 3 -p ack -e 40 -i 24 -a 20 h -t 0.1806 -s 8 -d 3 -p ack -e 40 -i 24 -a 20 r -t 0.183632 -s 8 -d 3 -p ack -e 40 -i 24 -a 20 + -t 0.183632 -s 3 -d 8 -p tcp -e 1000 -i 35 -a 20 - -t 0.183632 -s 3 -d 8 -p tcp -e 1000 -i 35 -a 20 h -t 0.183632 -s 3 -d 8 -p tcp -e 1000 -i 35 -a 20 + -t 0.183632 -s 3 -d 8 -p tcp -e 1000 -i 36 -a 20 r -t 0.183768 -s 6 -d 7 -p tcp -e 1000 -i 22 -a 10 + -t 0.183768 -s 7 -d 2 -p tcp -e 1000 -i 22 -a 10 - -t 0.183768 -s 7 -d 2 -p tcp -e 1000 -i 22 -a 10 h -t 0.183768 -s 7 -d 2 -p tcp -e 1000 -i 22 -a 10 - -t 0.184432 -s 3 -d 8 -p tcp -e 1000 -i 36 -a 20 h -t 0.184432 -s 3 -d 8 -p tcp -e 1000 -i 36 -a 20 r -t 0.1846 -s 2 -d 7 -p ack -e 40 -i 34 -a 10 + -t 0.1846 -s 7 -d 6 -p ack -e 40 -i 34 -a 10 - -t 0.1846 -s 7 -d 6 -p ack -e 40 -i 34 -a 10 h -t 0.1846 -s 7 -d 6 -p ack -e 40 -i 34 -a 10 r -t 0.185933 -s 9 -d 8 -p ack -e 40 -i 27 -a 20 + -t 0.185933 -s 8 -d 3 -p ack -e 40 -i 27 -a 20 - -t 0.185933 -s 8 -d 3 -p ack -e 40 -i 27 -a 20 h -t 0.185933 -s 8 -d 3 -p ack -e 40 -i 27 -a 20 r -t 0.187432 -s 3 -d 8 -p tcp -e 1000 -i 35 -a 20 + -t 0.187432 -s 8 -d 9 -p tcp -e 1000 -i 35 -a 20 - -t 0.187432 -s 8 -d 9 -p tcp -e 1000 -i 35 -a 20 h -t 0.187432 -s 8 -d 9 -p tcp -e 1000 -i 35 -a 20 r -t 0.188232 -s 3 -d 8 -p tcp -e 1000 -i 36 -a 20 + -t 0.188232 -s 8 -d 9 -p tcp -e 1000 -i 36 -a 20 r -t 0.188568 -s 7 -d 2 -p tcp -e 1000 -i 22 -a 10 + -t 0.188568 -s 2 -d 7 -p ack -e 40 -i 37 -a 10 - -t 0.188568 -s 2 -d 7 -p ack -e 40 -i 37 -a 10 h -t 0.188568 -s 2 -d 7 -p ack -e 40 -i 37 -a 10 r -t 0.18892 -s 7 -d 6 -p ack -e 40 -i 30 -a 10 + -t 0.18892 -s 6 -d 1 -p ack -e 40 -i 30 -a 10 - -t 0.18892 -s 6 -d 1 -p ack -e 40 -i 30 -a 10 h -t 0.18892 -s 6 -d 1 -p ack -e 40 -i 30 -a 10 r -t 0.188965 -s 8 -d 3 -p ack -e 40 -i 27 -a 20 + -t 0.188965 -s 3 -d 8 -p tcp -e 1000 -i 38 -a 20 - -t 0.188965 -s 3 -d 8 -p tcp -e 1000 -i 38 -a 20 h -t 0.188965 -s 3 -d 8 -p tcp -e 1000 -i 38 -a 20 + -t 0.188965 -s 3 -d 8 -p tcp -e 1000 -i 39 -a 20 - -t 0.189765 -s 3 -d 8 -p tcp -e 1000 -i 39 -a 20 h -t 0.189765 -s 3 -d 8 -p tcp -e 1000 -i 39 -a 20 r -t 0.190344 -s 8 -d 9 -p tcp -e 1000 -i 25 -a 21 + -t 0.190344 -s 9 -d 10 -p tcp -e 1000 -i 25 -a 21 - -t 0.190344 -s 9 -d 10 -p tcp -e 1000 -i 25 -a 21 h -t 0.190344 -s 9 -d 10 -p tcp -e 1000 -i 25 -a 21 r -t 0.191266 -s 9 -d 8 -p ack -e 40 -i 31 -a 20 + -t 0.191267 -s 8 -d 3 -p ack -e 40 -i 31 -a 20 - -t 0.191267 -s 8 -d 3 -p ack -e 40 -i 31 -a 20 h -t 0.191267 -s 8 -d 3 -p ack -e 40 -i 31 -a 20 r -t 0.191952 -s 6 -d 1 -p ack -e 40 -i 30 -a 10 + -t 0.191952 -s 1 -d 6 -p tcp -e 1000 -i 40 -a 10 - -t 0.191952 -s 1 -d 6 -p tcp -e 1000 -i 40 -a 10 h -t 0.191952 -s 1 -d 6 -p tcp -e 1000 -i 40 -a 10 + -t 0.191952 -s 1 -d 6 -p tcp -e 1000 -i 41 -a 10 r -t 0.1926 -s 2 -d 7 -p ack -e 40 -i 37 -a 10 + -t 0.1926 -s 7 -d 6 -p ack -e 40 -i 37 -a 10 - -t 0.1926 -s 7 -d 6 -p ack -e 40 -i 37 -a 10 h -t 0.1926 -s 7 -d 6 -p ack -e 40 -i 37 -a 10 - -t 0.192752 -s 1 -d 6 -p tcp -e 1000 -i 41 -a 10 h -t 0.192752 -s 1 -d 6 -p tcp -e 1000 -i 41 -a 10 r -t 0.192765 -s 3 -d 8 -p tcp -e 1000 -i 38 -a 20 + -t 0.192765 -s 8 -d 9 -p tcp -e 1000 -i 38 -a 20 - -t 0.192765 -s 8 -d 9 -p tcp -e 1000 -i 36 -a 20 h -t 0.192765 -s 8 -d 9 -p tcp -e 1000 -i 36 -a 20 r -t 0.193565 -s 3 -d 8 -p tcp -e 1000 -i 39 -a 20 + -t 0.193565 -s 8 -d 9 -p tcp -e 1000 -i 39 -a 20 r -t 0.194299 -s 8 -d 3 -p ack -e 40 -i 31 -a 20 + -t 0.194299 -s 3 -d 8 -p tcp -e 1000 -i 42 -a 20 - -t 0.194299 -s 3 -d 8 -p tcp -e 1000 -i 42 -a 20 h -t 0.194299 -s 3 -d 8 -p tcp -e 1000 -i 42 -a 20 + -t 0.194299 -s 3 -d 8 -p tcp -e 1000 -i 43 -a 20 - -t 0.195099 -s 3 -d 8 -p tcp -e 1000 -i 43 -a 20 h -t 0.195099 -s 3 -d 8 -p tcp -e 1000 -i 43 -a 20 r -t 0.195144 -s 9 -d 10 -p tcp -e 1000 -i 25 -a 21 + -t 0.195144 -s 4 -d 10 -p ack -e 40 -i 44 -a 21 - -t 0.195144 -s 4 -d 10 -p ack -e 40 -i 44 -a 21 h -t 0.195144 -s 4 -d 10 -p ack -e 40 -i 44 -a 21 r -t 0.195677 -s 8 -d 9 -p tcp -e 1000 -i 26 -a 21 + -t 0.195677 -s 9 -d 10 -p tcp -e 1000 -i 26 -a 21 - -t 0.195677 -s 9 -d 10 -p tcp -e 1000 -i 26 -a 21 h -t 0.195677 -s 9 -d 10 -p tcp -e 1000 -i 26 -a 21 r -t 0.195752 -s 1 -d 6 -p tcp -e 1000 -i 40 -a 10 + -t 0.195752 -s 6 -d 7 -p tcp -e 1000 -i 40 -a 10 - -t 0.195752 -s 6 -d 7 -p tcp -e 1000 -i 40 -a 10 h -t 0.195752 -s 6 -d 7 -p tcp -e 1000 -i 40 -a 10 r -t 0.195784 -s 6 -d 7 -p tcp -e 1000 -i 28 -a 11 + -t 0.195784 -s 7 -d 2 -p tcp -e 1000 -i 28 -a 11 - -t 0.195784 -s 7 -d 2 -p tcp -e 1000 -i 28 -a 11 h -t 0.195784 -s 7 -d 2 -p tcp -e 1000 -i 28 -a 11 r -t 0.196552 -s 1 -d 6 -p tcp -e 1000 -i 41 -a 10 + -t 0.196552 -s 6 -d 7 -p tcp -e 1000 -i 41 -a 10 r -t 0.1966 -s 9 -d 8 -p ack -e 40 -i 32 -a 20 + -t 0.1966 -s 8 -d 3 -p ack -e 40 -i 32 -a 20 - -t 0.1966 -s 8 -d 3 -p ack -e 40 -i 32 -a 20 h -t 0.1966 -s 8 -d 3 -p ack -e 40 -i 32 -a 20 r -t 0.19692 -s 7 -d 6 -p ack -e 40 -i 33 -a 10 + -t 0.19692 -s 6 -d 1 -p ack -e 40 -i 33 -a 10 - -t 0.19692 -s 6 -d 1 -p ack -e 40 -i 33 -a 10 h -t 0.19692 -s 6 -d 1 -p ack -e 40 -i 33 -a 10 r -t 0.198099 -s 3 -d 8 -p tcp -e 1000 -i 42 -a 20 - -t 0.198099 -s 8 -d 9 -p tcp -e 1000 -i 38 -a 20 h -t 0.198099 -s 8 -d 9 -p tcp -e 1000 -i 38 -a 20 + -t 0.198099 -s 8 -d 9 -p tcp -e 1000 -i 42 -a 20 r -t 0.198899 -s 3 -d 8 -p tcp -e 1000 -i 43 -a 20 + -t 0.198899 -s 8 -d 9 -p tcp -e 1000 -i 43 -a 20 r -t 0.199176 -s 4 -d 10 -p ack -e 40 -i 44 -a 21 + -t 0.199176 -s 9 -d 8 -p ack -e 40 -i 44 -a 21 - -t 0.199176 -s 9 -d 8 -p ack -e 40 -i 44 -a 21 h -t 0.199176 -s 9 -d 8 -p ack -e 40 -i 44 -a 21 r -t 0.199632 -s 8 -d 3 -p ack -e 40 -i 32 -a 20 + -t 0.199632 -s 3 -d 8 -p tcp -e 1000 -i 45 -a 20 - -t 0.199632 -s 3 -d 8 -p tcp -e 1000 -i 45 -a 20 h -t 0.199632 -s 3 -d 8 -p tcp -e 1000 -i 45 -a 20 + -t 0.199632 -s 3 -d 8 -p tcp -e 1000 -i 46 -a 20 r -t 0.199952 -s 6 -d 1 -p ack -e 40 -i 33 -a 10 + -t 0.199952 -s 1 -d 6 -p tcp -e 1000 -i 47 -a 10 - -t 0.199952 -s 1 -d 6 -p tcp -e 1000 -i 47 -a 10 h -t 0.199952 -s 1 -d 6 -p tcp -e 1000 -i 47 -a 10 + -t 0.199952 -s 1 -d 6 -p tcp -e 1000 -i 48 -a 10 + -t 0.2 -s 1 -d 6 -p tcp -e 1000 -i 49 -a 12 + -t 0.2 -s 3 -d 8 -p tcp -e 1000 -i 50 -a 22 - -t 0.200432 -s 3 -d 8 -p tcp -e 1000 -i 46 -a 20 h -t 0.200432 -s 3 -d 8 -p tcp -e 1000 -i 46 -a 20 r -t 0.200477 -s 9 -d 10 -p tcp -e 1000 -i 26 -a 21 + -t 0.200477 -s 4 -d 10 -p ack -e 40 -i 51 -a 21 - -t 0.200477 -s 4 -d 10 -p ack -e 40 -i 51 -a 21 h -t 0.200477 -s 4 -d 10 -p ack -e 40 -i 51 -a 21 r -t 0.200584 -s 7 -d 2 -p tcp -e 1000 -i 28 -a 11 + -t 0.200584 -s 2 -d 7 -p ack -e 40 -i 52 -a 11 - -t 0.200584 -s 2 -d 7 -p ack -e 40 -i 52 -a 11 h -t 0.200584 -s 2 -d 7 -p ack -e 40 -i 52 -a 11 - -t 0.200752 -s 1 -d 6 -p tcp -e 1000 -i 48 -a 10 h -t 0.200752 -s 1 -d 6 -p tcp -e 1000 -i 48 -a 10 - -t 0.201232 -s 3 -d 8 -p tcp -e 1000 -i 50 -a 22 h -t 0.201232 -s 3 -d 8 -p tcp -e 1000 -i 50 -a 22 - -t 0.201552 -s 1 -d 6 -p tcp -e 1000 -i 49 -a 12 h -t 0.201552 -s 1 -d 6 -p tcp -e 1000 -i 49 -a 12 r -t 0.203432 -s 3 -d 8 -p tcp -e 1000 -i 45 -a 20 + -t 0.203432 -s 8 -d 9 -p tcp -e 1000 -i 45 -a 20 - -t 0.203432 -s 8 -d 9 -p tcp -e 1000 -i 39 -a 20 h -t 0.203432 -s 8 -d 9 -p tcp -e 1000 -i 39 -a 20 r -t 0.203752 -s 1 -d 6 -p tcp -e 1000 -i 47 -a 10 - -t 0.203752 -s 6 -d 7 -p tcp -e 1000 -i 41 -a 10 h -t 0.203752 -s 6 -d 7 -p tcp -e 1000 -i 41 -a 10 + -t 0.203752 -s 6 -d 7 -p tcp -e 1000 -i 47 -a 10 r -t 0.203784 -s 6 -d 7 -p tcp -e 1000 -i 29 -a 11 + -t 0.203784 -s 7 -d 2 -p tcp -e 1000 -i 29 -a 11 - -t 0.203784 -s 7 -d 2 -p tcp -e 1000 -i 29 -a 11 h -t 0.203784 -s 7 -d 2 -p tcp -e 1000 -i 29 -a 11 r -t 0.204232 -s 3 -d 8 -p tcp -e 1000 -i 46 -a 20 + -t 0.204232 -s 8 -d 9 -p tcp -e 1000 -i 46 -a 20 r -t 0.204509 -s 4 -d 10 -p ack -e 40 -i 51 -a 21 + -t 0.204509 -s 9 -d 8 -p ack -e 40 -i 51 -a 21 - -t 0.204509 -s 9 -d 8 -p ack -e 40 -i 51 -a 21 h -t 0.204509 -s 9 -d 8 -p ack -e 40 -i 51 -a 21 r -t 0.204552 -s 1 -d 6 -p tcp -e 1000 -i 48 -a 10 + -t 0.204552 -s 6 -d 7 -p tcp -e 1000 -i 48 -a 10 r -t 0.204616 -s 2 -d 7 -p ack -e 40 -i 52 -a 11 + -t 0.204616 -s 7 -d 6 -p ack -e 40 -i 52 -a 11 - -t 0.204616 -s 7 -d 6 -p ack -e 40 -i 52 -a 11 h -t 0.204616 -s 7 -d 6 -p ack -e 40 -i 52 -a 11 r -t 0.20492 -s 7 -d 6 -p ack -e 40 -i 34 -a 10 + -t 0.20492 -s 6 -d 1 -p ack -e 40 -i 34 -a 10 - -t 0.20492 -s 6 -d 1 -p ack -e 40 -i 34 -a 10 h -t 0.20492 -s 6 -d 1 -p ack -e 40 -i 34 -a 10 r -t 0.205032 -s 3 -d 8 -p tcp -e 1000 -i 50 -a 22 + -t 0.205032 -s 8 -d 9 -p tcp -e 1000 -i 50 -a 22 r -t 0.205352 -s 1 -d 6 -p tcp -e 1000 -i 49 -a 12 + -t 0.205352 -s 6 -d 7 -p tcp -e 1000 -i 49 -a 12 r -t 0.207952 -s 6 -d 1 -p ack -e 40 -i 34 -a 10 + -t 0.207952 -s 1 -d 6 -p tcp -e 1000 -i 53 -a 10 - -t 0.207952 -s 1 -d 6 -p tcp -e 1000 -i 53 -a 10 h -t 0.207952 -s 1 -d 6 -p tcp -e 1000 -i 53 -a 10 + -t 0.207952 -s 1 -d 6 -p tcp -e 1000 -i 54 -a 10 r -t 0.208584 -s 7 -d 2 -p tcp -e 1000 -i 29 -a 11 + -t 0.208584 -s 2 -d 7 -p ack -e 40 -i 55 -a 11 - -t 0.208584 -s 2 -d 7 -p ack -e 40 -i 55 -a 11 h -t 0.208584 -s 2 -d 7 -p ack -e 40 -i 55 -a 11 - -t 0.208752 -s 1 -d 6 -p tcp -e 1000 -i 54 -a 10 h -t 0.208752 -s 1 -d 6 -p tcp -e 1000 -i 54 -a 10 - -t 0.208765 -s 8 -d 9 -p tcp -e 1000 -i 42 -a 20 h -t 0.208765 -s 8 -d 9 -p tcp -e 1000 -i 42 -a 20 r -t 0.211752 -s 1 -d 6 -p tcp -e 1000 -i 53 -a 10 - -t 0.211752 -s 6 -d 7 -p tcp -e 1000 -i 47 -a 10 h -t 0.211752 -s 6 -d 7 -p tcp -e 1000 -i 47 -a 10 + -t 0.211752 -s 6 -d 7 -p tcp -e 1000 -i 53 -a 10 r -t 0.212552 -s 1 -d 6 -p tcp -e 1000 -i 54 -a 10 + -t 0.212552 -s 6 -d 7 -p tcp -e 1000 -i 54 -a 10 r -t 0.212616 -s 2 -d 7 -p ack -e 40 -i 55 -a 11 + -t 0.212616 -s 7 -d 6 -p ack -e 40 -i 55 -a 11 - -t 0.212616 -s 7 -d 6 -p ack -e 40 -i 55 -a 11 h -t 0.212616 -s 7 -d 6 -p ack -e 40 -i 55 -a 11 r -t 0.212765 -s 8 -d 9 -p tcp -e 1000 -i 35 -a 20 + -t 0.212765 -s 9 -d 10 -p tcp -e 1000 -i 35 -a 20 - -t 0.212765 -s 9 -d 10 -p tcp -e 1000 -i 35 -a 20 h -t 0.212765 -s 9 -d 10 -p tcp -e 1000 -i 35 -a 20 r -t 0.21292 -s 7 -d 6 -p ack -e 40 -i 37 -a 10 + -t 0.21292 -s 6 -d 1 -p ack -e 40 -i 37 -a 10 - -t 0.21292 -s 6 -d 1 -p ack -e 40 -i 37 -a 10 h -t 0.21292 -s 6 -d 1 -p ack -e 40 -i 37 -a 10 - -t 0.214099 -s 8 -d 9 -p tcp -e 1000 -i 43 -a 20 h -t 0.214099 -s 8 -d 9 -p tcp -e 1000 -i 43 -a 20 r -t 0.215952 -s 6 -d 1 -p ack -e 40 -i 37 -a 10 + -t 0.215952 -s 1 -d 6 -p tcp -e 1000 -i 56 -a 10 - -t 0.215952 -s 1 -d 6 -p tcp -e 1000 -i 56 -a 10 h -t 0.215952 -s 1 -d 6 -p tcp -e 1000 -i 56 -a 10 + -t 0.215952 -s 1 -d 6 -p tcp -e 1000 -i 57 -a 10 - -t 0.216752 -s 1 -d 6 -p tcp -e 1000 -i 57 -a 10 h -t 0.216752 -s 1 -d 6 -p tcp -e 1000 -i 57 -a 10 r -t 0.217565 -s 9 -d 10 -p tcp -e 1000 -i 35 -a 20 + -t 0.217565 -s 4 -d 10 -p ack -e 40 -i 58 -a 20 - -t 0.217565 -s 4 -d 10 -p ack -e 40 -i 58 -a 20 h -t 0.217565 -s 4 -d 10 -p ack -e 40 -i 58 -a 20 r -t 0.218098 -s 8 -d 9 -p tcp -e 1000 -i 36 -a 20 + -t 0.218099 -s 9 -d 10 -p tcp -e 1000 -i 36 -a 20 - -t 0.218099 -s 9 -d 10 -p tcp -e 1000 -i 36 -a 20 h -t 0.218099 -s 9 -d 10 -p tcp -e 1000 -i 36 -a 20 r -t 0.219389 -s 9 -d 8 -p ack -e 40 -i 44 -a 21 + -t 0.219389 -s 8 -d 3 -p ack -e 40 -i 44 -a 21 - -t 0.219389 -s 8 -d 3 -p ack -e 40 -i 44 -a 21 h -t 0.219389 -s 8 -d 3 -p ack -e 40 -i 44 -a 21 - -t 0.219432 -s 8 -d 9 -p tcp -e 1000 -i 45 -a 20 h -t 0.219432 -s 8 -d 9 -p tcp -e 1000 -i 45 -a 20 r -t 0.219752 -s 1 -d 6 -p tcp -e 1000 -i 56 -a 10 - -t 0.219752 -s 6 -d 7 -p tcp -e 1000 -i 49 -a 12 h -t 0.219752 -s 6 -d 7 -p tcp -e 1000 -i 49 -a 12 + -t 0.219752 -s 6 -d 7 -p tcp -e 1000 -i 56 -a 10 r -t 0.220552 -s 1 -d 6 -p tcp -e 1000 -i 57 -a 10 + -t 0.220552 -s 6 -d 7 -p tcp -e 1000 -i 57 -a 10 r -t 0.221597 -s 4 -d 10 -p ack -e 40 -i 58 -a 20 + -t 0.221597 -s 9 -d 8 -p ack -e 40 -i 58 -a 20 - -t 0.221597 -s 9 -d 8 -p ack -e 40 -i 58 -a 20 h -t 0.221597 -s 9 -d 8 -p ack -e 40 -i 58 -a 20 r -t 0.222421 -s 8 -d 3 -p ack -e 40 -i 44 -a 21 f -t 0.1 -s 3 -a "TCP 21" -n cwin -T v -v 3000 + -t 0.222421 -s 3 -d 8 -p tcp -e 1000 -i 59 -a 21 - -t 0.222421 -s 3 -d 8 -p tcp -e 1000 -i 59 -a 21 h -t 0.222421 -s 3 -d 8 -p tcp -e 1000 -i 59 -a 21 + -t 0.222421 -s 3 -d 8 -p tcp -e 1000 -i 60 -a 21 r -t 0.222899 -s 9 -d 10 -p tcp -e 1000 -i 36 -a 20 + -t 0.222899 -s 4 -d 10 -p ack -e 40 -i 61 -a 20 - -t 0.222899 -s 4 -d 10 -p ack -e 40 -i 61 -a 20 h -t 0.222899 -s 4 -d 10 -p ack -e 40 -i 61 -a 20 - -t 0.223221 -s 3 -d 8 -p tcp -e 1000 -i 60 -a 21 h -t 0.223221 -s 3 -d 8 -p tcp -e 1000 -i 60 -a 21 r -t 0.223432 -s 8 -d 9 -p tcp -e 1000 -i 38 -a 20 + -t 0.223432 -s 9 -d 10 -p tcp -e 1000 -i 38 -a 20 - -t 0.223432 -s 9 -d 10 -p tcp -e 1000 -i 38 -a 20 h -t 0.223432 -s 9 -d 10 -p tcp -e 1000 -i 38 -a 20 r -t 0.223752 -s 6 -d 7 -p tcp -e 1000 -i 40 -a 10 + -t 0.223752 -s 7 -d 2 -p tcp -e 1000 -i 40 -a 10 - -t 0.223752 -s 7 -d 2 -p tcp -e 1000 -i 40 -a 10 h -t 0.223752 -s 7 -d 2 -p tcp -e 1000 -i 40 -a 10 r -t 0.224722 -s 9 -d 8 -p ack -e 40 -i 51 -a 21 + -t 0.224723 -s 8 -d 3 -p ack -e 40 -i 51 -a 21 - -t 0.224723 -s 8 -d 3 -p ack -e 40 -i 51 -a 21 h -t 0.224723 -s 8 -d 3 -p ack -e 40 -i 51 -a 21 - -t 0.224765 -s 8 -d 9 -p tcp -e 1000 -i 50 -a 22 h -t 0.224765 -s 8 -d 9 -p tcp -e 1000 -i 50 -a 22 r -t 0.224936 -s 7 -d 6 -p ack -e 40 -i 52 -a 11 + -t 0.224936 -s 6 -d 1 -p ack -e 40 -i 52 -a 11 - -t 0.224936 -s 6 -d 1 -p ack -e 40 -i 52 -a 11 h -t 0.224936 -s 6 -d 1 -p ack -e 40 -i 52 -a 11 r -t 0.226221 -s 3 -d 8 -p tcp -e 1000 -i 59 -a 21 + -t 0.226221 -s 8 -d 9 -p tcp -e 1000 -i 59 -a 21 r -t 0.226931 -s 4 -d 10 -p ack -e 40 -i 61 -a 20 + -t 0.226931 -s 9 -d 8 -p ack -e 40 -i 61 -a 20 - -t 0.226931 -s 9 -d 8 -p ack -e 40 -i 61 -a 20 h -t 0.226931 -s 9 -d 8 -p ack -e 40 -i 61 -a 20 r -t 0.227021 -s 3 -d 8 -p tcp -e 1000 -i 60 -a 21 + -t 0.227021 -s 8 -d 9 -p tcp -e 1000 -i 60 -a 21 - -t 0.227752 -s 6 -d 7 -p tcp -e 1000 -i 48 -a 10 h -t 0.227752 -s 6 -d 7 -p tcp -e 1000 -i 48 -a 10 f -t 0.1 -s 3 -a "TCP 21" -n cwin -T v -v 4000 r -t 0.227755 -s 8 -d 3 -p ack -e 40 -i 51 -a 21 + -t 0.227755 -s 3 -d 8 -p tcp -e 1000 -i 62 -a 21 - -t 0.227755 -s 3 -d 8 -p tcp -e 1000 -i 62 -a 21 h -t 0.227755 -s 3 -d 8 -p tcp -e 1000 -i 62 -a 21 + -t 0.227755 -s 3 -d 8 -p tcp -e 1000 -i 63 -a 21 r -t 0.227968 -s 6 -d 1 -p ack -e 40 -i 52 -a 11 + -t 0.227968 -s 1 -d 6 -p tcp -e 1000 -i 64 -a 11 - -t 0.227968 -s 1 -d 6 -p tcp -e 1000 -i 64 -a 11 h -t 0.227968 -s 1 -d 6 -p tcp -e 1000 -i 64 -a 11 + -t 0.227968 -s 1 -d 6 -p tcp -e 1000 -i 65 -a 11 r -t 0.228232 -s 9 -d 10 -p tcp -e 1000 -i 38 -a 20 + -t 0.228232 -s 4 -d 10 -p ack -e 40 -i 66 -a 20 - -t 0.228232 -s 4 -d 10 -p ack -e 40 -i 66 -a 20 h -t 0.228232 -s 4 -d 10 -p ack -e 40 -i 66 -a 20 r -t 0.228552 -s 7 -d 2 -p tcp -e 1000 -i 40 -a 10 + -t 0.228552 -s 2 -d 7 -p ack -e 40 -i 67 -a 10 - -t 0.228552 -s 2 -d 7 -p ack -e 40 -i 67 -a 10 h -t 0.228552 -s 2 -d 7 -p ack -e 40 -i 67 -a 10 - -t 0.228555 -s 3 -d 8 -p tcp -e 1000 -i 63 -a 21 h -t 0.228555 -s 3 -d 8 -p tcp -e 1000 -i 63 -a 21 r -t 0.228765 -s 8 -d 9 -p tcp -e 1000 -i 39 -a 20 + -t 0.228765 -s 9 -d 10 -p tcp -e 1000 -i 39 -a 20 - -t 0.228765 -s 9 -d 10 -p tcp -e 1000 -i 39 -a 20 h -t 0.228765 -s 9 -d 10 -p tcp -e 1000 -i 39 -a 20 - -t 0.228768 -s 1 -d 6 -p tcp -e 1000 -i 65 -a 11 h -t 0.228768 -s 1 -d 6 -p tcp -e 1000 -i 65 -a 11 - -t 0.230099 -s 8 -d 9 -p tcp -e 1000 -i 46 -a 20 h -t 0.230099 -s 8 -d 9 -p tcp -e 1000 -i 46 -a 20 r -t 0.231555 -s 3 -d 8 -p tcp -e 1000 -i 62 -a 21 + -t 0.231555 -s 8 -d 9 -p tcp -e 1000 -i 62 -a 21 r -t 0.231752 -s 6 -d 7 -p tcp -e 1000 -i 41 -a 10 + -t 0.231752 -s 7 -d 2 -p tcp -e 1000 -i 41 -a 10 - -t 0.231752 -s 7 -d 2 -p tcp -e 1000 -i 41 -a 10 h -t 0.231752 -s 7 -d 2 -p tcp -e 1000 -i 41 -a 10 r -t 0.231768 -s 1 -d 6 -p tcp -e 1000 -i 64 -a 11 + -t 0.231768 -s 6 -d 7 -p tcp -e 1000 -i 64 -a 11 r -t 0.232264 -s 4 -d 10 -p ack -e 40 -i 66 -a 20 + -t 0.232264 -s 9 -d 8 -p ack -e 40 -i 66 -a 20 - -t 0.232264 -s 9 -d 8 -p ack -e 40 -i 66 -a 20 h -t 0.232264 -s 9 -d 8 -p ack -e 40 -i 66 -a 20 r -t 0.232355 -s 3 -d 8 -p tcp -e 1000 -i 63 -a 21 + -t 0.232355 -s 8 -d 9 -p tcp -e 1000 -i 63 -a 21 r -t 0.232568 -s 1 -d 6 -p tcp -e 1000 -i 65 -a 11 + -t 0.232568 -s 6 -d 7 -p tcp -e 1000 -i 65 -a 11 r -t 0.232584 -s 2 -d 7 -p ack -e 40 -i 67 -a 10 + -t 0.232584 -s 7 -d 6 -p ack -e 40 -i 67 -a 10 - -t 0.232584 -s 7 -d 6 -p ack -e 40 -i 67 -a 10 h -t 0.232584 -s 7 -d 6 -p ack -e 40 -i 67 -a 10 r -t 0.232936 -s 7 -d 6 -p ack -e 40 -i 55 -a 11 + -t 0.232936 -s 6 -d 1 -p ack -e 40 -i 55 -a 11 - -t 0.232936 -s 6 -d 1 -p ack -e 40 -i 55 -a 11 h -t 0.232936 -s 6 -d 1 -p ack -e 40 -i 55 -a 11 r -t 0.233565 -s 9 -d 10 -p tcp -e 1000 -i 39 -a 20 + -t 0.233565 -s 4 -d 10 -p ack -e 40 -i 68 -a 20 - -t 0.233565 -s 4 -d 10 -p ack -e 40 -i 68 -a 20 h -t 0.233565 -s 4 -d 10 -p ack -e 40 -i 68 -a 20 r -t 0.234098 -s 8 -d 9 -p tcp -e 1000 -i 42 -a 20 + -t 0.234099 -s 9 -d 10 -p tcp -e 1000 -i 42 -a 20 - -t 0.234099 -s 9 -d 10 -p tcp -e 1000 -i 42 -a 20 h -t 0.234099 -s 9 -d 10 -p tcp -e 1000 -i 42 -a 20 - -t 0.235432 -s 8 -d 9 -p tcp -e 1000 -i 59 -a 21 h -t 0.235432 -s 8 -d 9 -p tcp -e 1000 -i 59 -a 21 - -t 0.235752 -s 6 -d 7 -p tcp -e 1000 -i 53 -a 10 h -t 0.235752 -s 6 -d 7 -p tcp -e 1000 -i 53 -a 10 r -t 0.235968 -s 6 -d 1 -p ack -e 40 -i 55 -a 11 + -t 0.235968 -s 1 -d 6 -p tcp -e 1000 -i 69 -a 11 - -t 0.235968 -s 1 -d 6 -p tcp -e 1000 -i 69 -a 11 h -t 0.235968 -s 1 -d 6 -p tcp -e 1000 -i 69 -a 11 + -t 0.235968 -s 1 -d 6 -p tcp -e 1000 -i 70 -a 11 r -t 0.236552 -s 7 -d 2 -p tcp -e 1000 -i 41 -a 10 + -t 0.236552 -s 2 -d 7 -p ack -e 40 -i 71 -a 10 - -t 0.236552 -s 2 -d 7 -p ack -e 40 -i 71 -a 10 h -t 0.236552 -s 2 -d 7 -p ack -e 40 -i 71 -a 10 - -t 0.236768 -s 1 -d 6 -p tcp -e 1000 -i 70 -a 11 h -t 0.236768 -s 1 -d 6 -p tcp -e 1000 -i 70 -a 11 r -t 0.237597 -s 4 -d 10 -p ack -e 40 -i 68 -a 20 + -t 0.237597 -s 9 -d 8 -p ack -e 40 -i 68 -a 20 - -t 0.237597 -s 9 -d 8 -p ack -e 40 -i 68 -a 20 h -t 0.237597 -s 9 -d 8 -p ack -e 40 -i 68 -a 20 r -t 0.238899 -s 9 -d 10 -p tcp -e 1000 -i 42 -a 20 + -t 0.238899 -s 4 -d 10 -p ack -e 40 -i 72 -a 20 - -t 0.238899 -s 4 -d 10 -p ack -e 40 -i 72 -a 20 h -t 0.238899 -s 4 -d 10 -p ack -e 40 -i 72 -a 20 r -t 0.239432 -s 8 -d 9 -p tcp -e 1000 -i 43 -a 20 + -t 0.239432 -s 9 -d 10 -p tcp -e 1000 -i 43 -a 20 - -t 0.239432 -s 9 -d 10 -p tcp -e 1000 -i 43 -a 20 h -t 0.239432 -s 9 -d 10 -p tcp -e 1000 -i 43 -a 20 r -t 0.239752 -s 6 -d 7 -p tcp -e 1000 -i 47 -a 10 + -t 0.239752 -s 7 -d 2 -p tcp -e 1000 -i 47 -a 10 - -t 0.239752 -s 7 -d 2 -p tcp -e 1000 -i 47 -a 10 h -t 0.239752 -s 7 -d 2 -p tcp -e 1000 -i 47 -a 10 r -t 0.239768 -s 1 -d 6 -p tcp -e 1000 -i 69 -a 11 + -t 0.239768 -s 6 -d 7 -p tcp -e 1000 -i 69 -a 11 r -t 0.240568 -s 1 -d 6 -p tcp -e 1000 -i 70 -a 11 + -t 0.240568 -s 6 -d 7 -p tcp -e 1000 -i 70 -a 11 r -t 0.240584 -s 2 -d 7 -p ack -e 40 -i 71 -a 10 + -t 0.240584 -s 7 -d 6 -p ack -e 40 -i 71 -a 10 - -t 0.240584 -s 7 -d 6 -p ack -e 40 -i 71 -a 10 h -t 0.240584 -s 7 -d 6 -p ack -e 40 -i 71 -a 10 - -t 0.240765 -s 8 -d 9 -p tcp -e 1000 -i 60 -a 21 h -t 0.240765 -s 8 -d 9 -p tcp -e 1000 -i 60 -a 21 r -t 0.24181 -s 9 -d 8 -p ack -e 40 -i 58 -a 20 + -t 0.241811 -s 8 -d 3 -p ack -e 40 -i 58 -a 20 - -t 0.241811 -s 8 -d 3 -p ack -e 40 -i 58 -a 20 h -t 0.241811 -s 8 -d 3 -p ack -e 40 -i 58 -a 20 r -t 0.242931 -s 4 -d 10 -p ack -e 40 -i 72 -a 20 + -t 0.242931 -s 9 -d 8 -p ack -e 40 -i 72 -a 20 - -t 0.242931 -s 9 -d 8 -p ack -e 40 -i 72 -a 20 h -t 0.242931 -s 9 -d 8 -p ack -e 40 -i 72 -a 20 - -t 0.243752 -s 6 -d 7 -p tcp -e 1000 -i 54 -a 10 h -t 0.243752 -s 6 -d 7 -p tcp -e 1000 -i 54 -a 10 r -t 0.244232 -s 9 -d 10 -p tcp -e 1000 -i 43 -a 20 + -t 0.244232 -s 4 -d 10 -p ack -e 40 -i 73 -a 20 - -t 0.244232 -s 4 -d 10 -p ack -e 40 -i 73 -a 20 h -t 0.244232 -s 4 -d 10 -p ack -e 40 -i 73 -a 20 r -t 0.244552 -s 7 -d 2 -p tcp -e 1000 -i 47 -a 10 + -t 0.244552 -s 2 -d 7 -p ack -e 40 -i 74 -a 10 - -t 0.244552 -s 2 -d 7 -p ack -e 40 -i 74 -a 10 h -t 0.244552 -s 2 -d 7 -p ack -e 40 -i 74 -a 10 r -t 0.244765 -s 8 -d 9 -p tcp -e 1000 -i 45 -a 20 + -t 0.244765 -s 9 -d 10 -p tcp -e 1000 -i 45 -a 20 - -t 0.244765 -s 9 -d 10 -p tcp -e 1000 -i 45 -a 20 h -t 0.244765 -s 9 -d 10 -p tcp -e 1000 -i 45 -a 20 r -t 0.244843 -s 8 -d 3 -p ack -e 40 -i 58 -a 20 + -t 0.244843 -s 3 -d 8 -p tcp -e 1000 -i 75 -a 20 - -t 0.244843 -s 3 -d 8 -p tcp -e 1000 -i 75 -a 20 h -t 0.244843 -s 3 -d 8 -p tcp -e 1000 -i 75 -a 20 + -t 0.244843 -s 3 -d 8 -p tcp -e 1000 -i 76 -a 20 - -t 0.245643 -s 3 -d 8 -p tcp -e 1000 -i 76 -a 20 h -t 0.245643 -s 3 -d 8 -p tcp -e 1000 -i 76 -a 20 - -t 0.246099 -s 8 -d 9 -p tcp -e 1000 -i 62 -a 21 h -t 0.246099 -s 8 -d 9 -p tcp -e 1000 -i 62 -a 21 r -t 0.247144 -s 9 -d 8 -p ack -e 40 -i 61 -a 20 + -t 0.247144 -s 8 -d 3 -p ack -e 40 -i 61 -a 20 - -t 0.247144 -s 8 -d 3 -p ack -e 40 -i 61 -a 20 h -t 0.247144 -s 8 -d 3 -p ack -e 40 -i 61 -a 20 r -t 0.247752 -s 6 -d 7 -p tcp -e 1000 -i 49 -a 12 + -t 0.247752 -s 7 -d 2 -p tcp -e 1000 -i 49 -a 12 - -t 0.247752 -s 7 -d 2 -p tcp -e 1000 -i 49 -a 12 h -t 0.247752 -s 7 -d 2 -p tcp -e 1000 -i 49 -a 12 r -t 0.248264 -s 4 -d 10 -p ack -e 40 -i 73 -a 20 + -t 0.248264 -s 9 -d 8 -p ack -e 40 -i 73 -a 20 - -t 0.248264 -s 9 -d 8 -p ack -e 40 -i 73 -a 20 h -t 0.248264 -s 9 -d 8 -p ack -e 40 -i 73 -a 20 r -t 0.248584 -s 2 -d 7 -p ack -e 40 -i 74 -a 10 + -t 0.248584 -s 7 -d 6 -p ack -e 40 -i 74 -a 10 - -t 0.248584 -s 7 -d 6 -p ack -e 40 -i 74 -a 10 h -t 0.248584 -s 7 -d 6 -p ack -e 40 -i 74 -a 10 r -t 0.248643 -s 3 -d 8 -p tcp -e 1000 -i 75 -a 20 + -t 0.248643 -s 8 -d 9 -p tcp -e 1000 -i 75 -a 20 r -t 0.249443 -s 3 -d 8 -p tcp -e 1000 -i 76 -a 20 + -t 0.249443 -s 8 -d 9 -p tcp -e 1000 -i 76 -a 20 r -t 0.249565 -s 9 -d 10 -p tcp -e 1000 -i 45 -a 20 + -t 0.249565 -s 4 -d 10 -p ack -e 40 -i 77 -a 20 - -t 0.249565 -s 4 -d 10 -p ack -e 40 -i 77 -a 20 h -t 0.249565 -s 4 -d 10 -p ack -e 40 -i 77 -a 20 r -t 0.250098 -s 8 -d 9 -p tcp -e 1000 -i 50 -a 22 + -t 0.250099 -s 9 -d 10 -p tcp -e 1000 -i 50 -a 22 - -t 0.250099 -s 9 -d 10 -p tcp -e 1000 -i 50 -a 22 h -t 0.250099 -s 9 -d 10 -p tcp -e 1000 -i 50 -a 22 r -t 0.250176 -s 8 -d 3 -p ack -e 40 -i 61 -a 20 + -t 0.250176 -s 3 -d 8 -p tcp -e 1000 -i 78 -a 20 - -t 0.250176 -s 3 -d 8 -p tcp -e 1000 -i 78 -a 20 h -t 0.250176 -s 3 -d 8 -p tcp -e 1000 -i 78 -a 20 + -t 0.250176 -s 3 -d 8 -p tcp -e 1000 -i 79 -a 20 - -t 0.250976 -s 3 -d 8 -p tcp -e 1000 -i 79 -a 20 h -t 0.250976 -s 3 -d 8 -p tcp -e 1000 -i 79 -a 20 - -t 0.251432 -s 8 -d 9 -p tcp -e 1000 -i 63 -a 21 h -t 0.251432 -s 8 -d 9 -p tcp -e 1000 -i 63 -a 21 - -t 0.251752 -s 6 -d 7 -p tcp -e 1000 -i 56 -a 10 h -t 0.251752 -s 6 -d 7 -p tcp -e 1000 -i 56 -a 10 r -t 0.252477 -s 9 -d 8 -p ack -e 40 -i 66 -a 20 + -t 0.252477 -s 8 -d 3 -p ack -e 40 -i 66 -a 20 - -t 0.252477 -s 8 -d 3 -p ack -e 40 -i 66 -a 20 h -t 0.252477 -s 8 -d 3 -p ack -e 40 -i 66 -a 20 r -t 0.252552 -s 7 -d 2 -p tcp -e 1000 -i 49 -a 12 + -t 0.252552 -s 2 -d 7 -p ack -e 40 -i 80 -a 12 - -t 0.252552 -s 2 -d 7 -p ack -e 40 -i 80 -a 12 h -t 0.252552 -s 2 -d 7 -p ack -e 40 -i 80 -a 12 r -t 0.252904 -s 7 -d 6 -p ack -e 40 -i 67 -a 10 + -t 0.252904 -s 6 -d 1 -p ack -e 40 -i 67 -a 10 - -t 0.252904 -s 6 -d 1 -p ack -e 40 -i 67 -a 10 h -t 0.252904 -s 6 -d 1 -p ack -e 40 -i 67 -a 10 r -t 0.253597 -s 4 -d 10 -p ack -e 40 -i 77 -a 20 + -t 0.253597 -s 9 -d 8 -p ack -e 40 -i 77 -a 20 - -t 0.253597 -s 9 -d 8 -p ack -e 40 -i 77 -a 20 h -t 0.253597 -s 9 -d 8 -p ack -e 40 -i 77 -a 20 r -t 0.253976 -s 3 -d 8 -p tcp -e 1000 -i 78 -a 20 + -t 0.253976 -s 8 -d 9 -p tcp -e 1000 -i 78 -a 20 r -t 0.254776 -s 3 -d 8 -p tcp -e 1000 -i 79 -a 20 + -t 0.254776 -s 8 -d 9 -p tcp -e 1000 -i 79 -a 20 r -t 0.254899 -s 9 -d 10 -p tcp -e 1000 -i 50 -a 22 + -t 0.254899 -s 4 -d 10 -p ack -e 40 -i 81 -a 22 - -t 0.254899 -s 4 -d 10 -p ack -e 40 -i 81 -a 22 h -t 0.254899 -s 4 -d 10 -p ack -e 40 -i 81 -a 22 r -t 0.255432 -s 8 -d 9 -p tcp -e 1000 -i 46 -a 20 + -t 0.255432 -s 9 -d 10 -p tcp -e 1000 -i 46 -a 20 - -t 0.255432 -s 9 -d 10 -p tcp -e 1000 -i 46 -a 20 h -t 0.255432 -s 9 -d 10 -p tcp -e 1000 -i 46 -a 20 r -t 0.255509 -s 8 -d 3 -p ack -e 40 -i 66 -a 20 + -t 0.255509 -s 3 -d 8 -p tcp -e 1000 -i 82 -a 20 - -t 0.255509 -s 3 -d 8 -p tcp -e 1000 -i 82 -a 20 h -t 0.255509 -s 3 -d 8 -p tcp -e 1000 -i 82 -a 20 + -t 0.255509 -s 3 -d 8 -p tcp -e 1000 -i 83 -a 20 r -t 0.255752 -s 6 -d 7 -p tcp -e 1000 -i 48 -a 10 + -t 0.255752 -s 7 -d 2 -p tcp -e 1000 -i 48 -a 10 - -t 0.255752 -s 7 -d 2 -p tcp -e 1000 -i 48 -a 10 h -t 0.255752 -s 7 -d 2 -p tcp -e 1000 -i 48 -a 10 r -t 0.255936 -s 6 -d 1 -p ack -e 40 -i 67 -a 10 + -t 0.255936 -s 1 -d 6 -p tcp -e 1000 -i 84 -a 10 - -t 0.255936 -s 1 -d 6 -p tcp -e 1000 -i 84 -a 10 h -t 0.255936 -s 1 -d 6 -p tcp -e 1000 -i 84 -a 10 + -t 0.255936 -s 1 -d 6 -p tcp -e 1000 -i 85 -a 10 - -t 0.256309 -s 3 -d 8 -p tcp -e 1000 -i 83 -a 20 h -t 0.256309 -s 3 -d 8 -p tcp -e 1000 -i 83 -a 20 r -t 0.256584 -s 2 -d 7 -p ack -e 40 -i 80 -a 12 + -t 0.256584 -s 7 -d 6 -p ack -e 40 -i 80 -a 12 - -t 0.256584 -s 7 -d 6 -p ack -e 40 -i 80 -a 12 h -t 0.256584 -s 7 -d 6 -p ack -e 40 -i 80 -a 12 - -t 0.256736 -s 1 -d 6 -p tcp -e 1000 -i 85 -a 10 h -t 0.256736 -s 1 -d 6 -p tcp -e 1000 -i 85 -a 10 - -t 0.256765 -s 8 -d 9 -p tcp -e 1000 -i 75 -a 20 h -t 0.256765 -s 8 -d 9 -p tcp -e 1000 -i 75 -a 20 r -t 0.25781 -s 9 -d 8 -p ack -e 40 -i 68 -a 20 + -t 0.257811 -s 8 -d 3 -p ack -e 40 -i 68 -a 20 - -t 0.257811 -s 8 -d 3 -p ack -e 40 -i 68 -a 20 h -t 0.257811 -s 8 -d 3 -p ack -e 40 -i 68 -a 20 r -t 0.258931 -s 4 -d 10 -p ack -e 40 -i 81 -a 22 + -t 0.258931 -s 9 -d 8 -p ack -e 40 -i 81 -a 22 - -t 0.258931 -s 9 -d 8 -p ack -e 40 -i 81 -a 22 h -t 0.258931 -s 9 -d 8 -p ack -e 40 -i 81 -a 22 r -t 0.259309 -s 3 -d 8 -p tcp -e 1000 -i 82 -a 20 + -t 0.259309 -s 8 -d 9 -p tcp -e 1000 -i 82 -a 20 r -t 0.259736 -s 1 -d 6 -p tcp -e 1000 -i 84 -a 10 + -t 0.259736 -s 6 -d 7 -p tcp -e 1000 -i 84 -a 10 - -t 0.259752 -s 6 -d 7 -p tcp -e 1000 -i 64 -a 11 h -t 0.259752 -s 6 -d 7 -p tcp -e 1000 -i 64 -a 11 r -t 0.260109 -s 3 -d 8 -p tcp -e 1000 -i 83 -a 20 + -t 0.260109 -s 8 -d 9 -p tcp -e 1000 -i 83 -a 20 r -t 0.260232 -s 9 -d 10 -p tcp -e 1000 -i 46 -a 20 + -t 0.260232 -s 4 -d 10 -p ack -e 40 -i 86 -a 20 - -t 0.260232 -s 4 -d 10 -p ack -e 40 -i 86 -a 20 h -t 0.260232 -s 4 -d 10 -p ack -e 40 -i 86 -a 20 r -t 0.260536 -s 1 -d 6 -p tcp -e 1000 -i 85 -a 10 + -t 0.260536 -s 6 -d 7 -p tcp -e 1000 -i 85 -a 10 r -t 0.260552 -s 7 -d 2 -p tcp -e 1000 -i 48 -a 10 + -t 0.260552 -s 2 -d 7 -p ack -e 40 -i 87 -a 10 - -t 0.260552 -s 2 -d 7 -p ack -e 40 -i 87 -a 10 h -t 0.260552 -s 2 -d 7 -p ack -e 40 -i 87 -a 10 r -t 0.260765 -s 8 -d 9 -p tcp -e 1000 -i 59 -a 21 + -t 0.260765 -s 9 -d 10 -p tcp -e 1000 -i 59 -a 21 - -t 0.260765 -s 9 -d 10 -p tcp -e 1000 -i 59 -a 21 h -t 0.260765 -s 9 -d 10 -p tcp -e 1000 -i 59 -a 21 r -t 0.260843 -s 8 -d 3 -p ack -e 40 -i 68 -a 20 + -t 0.260843 -s 3 -d 8 -p tcp -e 1000 -i 88 -a 20 - -t 0.260843 -s 3 -d 8 -p tcp -e 1000 -i 88 -a 20 h -t 0.260843 -s 3 -d 8 -p tcp -e 1000 -i 88 -a 20 + -t 0.260843 -s 3 -d 8 -p tcp -e 1000 -i 89 -a 20 r -t 0.260904 -s 7 -d 6 -p ack -e 40 -i 71 -a 10 + -t 0.260904 -s 6 -d 1 -p ack -e 40 -i 71 -a 10 - -t 0.260904 -s 6 -d 1 -p ack -e 40 -i 71 -a 10 h -t 0.260904 -s 6 -d 1 -p ack -e 40 -i 71 -a 10 - -t 0.261643 -s 3 -d 8 -p tcp -e 1000 -i 89 -a 20 h -t 0.261643 -s 3 -d 8 -p tcp -e 1000 -i 89 -a 20 - -t 0.262099 -s 8 -d 9 -p tcp -e 1000 -i 76 -a 20 h -t 0.262099 -s 8 -d 9 -p tcp -e 1000 -i 76 -a 20 r -t 0.263144 -s 9 -d 8 -p ack -e 40 -i 72 -a 20 + -t 0.263144 -s 8 -d 3 -p ack -e 40 -i 72 -a 20 - -t 0.263144 -s 8 -d 3 -p ack -e 40 -i 72 -a 20 h -t 0.263144 -s 8 -d 3 -p ack -e 40 -i 72 -a 20 r -t 0.263752 -s 6 -d 7 -p tcp -e 1000 -i 53 -a 10 + -t 0.263752 -s 7 -d 2 -p tcp -e 1000 -i 53 -a 10 - -t 0.263752 -s 7 -d 2 -p tcp -e 1000 -i 53 -a 10 h -t 0.263752 -s 7 -d 2 -p tcp -e 1000 -i 53 -a 10 r -t 0.263936 -s 6 -d 1 -p ack -e 40 -i 71 -a 10 + -t 0.263936 -s 1 -d 6 -p tcp -e 1000 -i 90 -a 10 - -t 0.263936 -s 1 -d 6 -p tcp -e 1000 -i 90 -a 10 h -t 0.263936 -s 1 -d 6 -p tcp -e 1000 -i 90 -a 10 + -t 0.263936 -s 1 -d 6 -p tcp -e 1000 -i 91 -a 10 r -t 0.264264 -s 4 -d 10 -p ack -e 40 -i 86 -a 20 + -t 0.264264 -s 9 -d 8 -p ack -e 40 -i 86 -a 20 - -t 0.264264 -s 9 -d 8 -p ack -e 40 -i 86 -a 20 h -t 0.264264 -s 9 -d 8 -p ack -e 40 -i 86 -a 20 r -t 0.264584 -s 2 -d 7 -p ack -e 40 -i 87 -a 10 + -t 0.264584 -s 7 -d 6 -p ack -e 40 -i 87 -a 10 - -t 0.264584 -s 7 -d 6 -p ack -e 40 -i 87 -a 10 h -t 0.264584 -s 7 -d 6 -p ack -e 40 -i 87 -a 10 r -t 0.264643 -s 3 -d 8 -p tcp -e 1000 -i 88 -a 20 + -t 0.264643 -s 8 -d 9 -p tcp -e 1000 -i 88 -a 20 - -t 0.264736 -s 1 -d 6 -p tcp -e 1000 -i 91 -a 10 h -t 0.264736 -s 1 -d 6 -p tcp -e 1000 -i 91 -a 10 r -t 0.265443 -s 3 -d 8 -p tcp -e 1000 -i 89 -a 20 + -t 0.265443 -s 8 -d 9 -p tcp -e 1000 -i 89 -a 20 r -t 0.265565 -s 9 -d 10 -p tcp -e 1000 -i 59 -a 21 + -t 0.265565 -s 4 -d 10 -p ack -e 40 -i 92 -a 21 - -t 0.265565 -s 4 -d 10 -p ack -e 40 -i 92 -a 21 h -t 0.265565 -s 4 -d 10 -p ack -e 40 -i 92 -a 21 r -t 0.266098 -s 8 -d 9 -p tcp -e 1000 -i 60 -a 21 + -t 0.266099 -s 9 -d 10 -p tcp -e 1000 -i 60 -a 21 - -t 0.266099 -s 9 -d 10 -p tcp -e 1000 -i 60 -a 21 h -t 0.266099 -s 9 -d 10 -p tcp -e 1000 -i 60 -a 21 r -t 0.266176 -s 8 -d 3 -p ack -e 40 -i 72 -a 20 + -t 0.266176 -s 3 -d 8 -p tcp -e 1000 -i 93 -a 20 - -t 0.266176 -s 3 -d 8 -p tcp -e 1000 -i 93 -a 20 h -t 0.266176 -s 3 -d 8 -p tcp -e 1000 -i 93 -a 20 + -t 0.266176 -s 3 -d 8 -p tcp -e 1000 -i 94 -a 20 - -t 0.266976 -s 3 -d 8 -p tcp -e 1000 -i 94 -a 20 h -t 0.266976 -s 3 -d 8 -p tcp -e 1000 -i 94 -a 20 - -t 0.267432 -s 8 -d 9 -p tcp -e 1000 -i 78 -a 20 h -t 0.267432 -s 8 -d 9 -p tcp -e 1000 -i 78 -a 20 r -t 0.267736 -s 1 -d 6 -p tcp -e 1000 -i 90 -a 10 + -t 0.267736 -s 6 -d 7 -p tcp -e 1000 -i 90 -a 10 - -t 0.267752 -s 6 -d 7 -p tcp -e 1000 -i 57 -a 10 h -t 0.267752 -s 6 -d 7 -p tcp -e 1000 -i 57 -a 10 r -t 0.268477 -s 9 -d 8 -p ack -e 40 -i 73 -a 20 + -t 0.268477 -s 8 -d 3 -p ack -e 40 -i 73 -a 20 - -t 0.268477 -s 8 -d 3 -p ack -e 40 -i 73 -a 20 h -t 0.268477 -s 8 -d 3 -p ack -e 40 -i 73 -a 20 r -t 0.268536 -s 1 -d 6 -p tcp -e 1000 -i 91 -a 10 + -t 0.268536 -s 6 -d 7 -p tcp -e 1000 -i 91 -a 10 r -t 0.268552 -s 7 -d 2 -p tcp -e 1000 -i 53 -a 10 + -t 0.268552 -s 2 -d 7 -p ack -e 40 -i 95 -a 10 - -t 0.268552 -s 2 -d 7 -p ack -e 40 -i 95 -a 10 h -t 0.268552 -s 2 -d 7 -p ack -e 40 -i 95 -a 10 r -t 0.268904 -s 7 -d 6 -p ack -e 40 -i 74 -a 10 + -t 0.268904 -s 6 -d 1 -p ack -e 40 -i 74 -a 10 - -t 0.268904 -s 6 -d 1 -p ack -e 40 -i 74 -a 10 h -t 0.268904 -s 6 -d 1 -p ack -e 40 -i 74 -a 10 r -t 0.269597 -s 4 -d 10 -p ack -e 40 -i 92 -a 21 + -t 0.269597 -s 9 -d 8 -p ack -e 40 -i 92 -a 21 - -t 0.269597 -s 9 -d 8 -p ack -e 40 -i 92 -a 21 h -t 0.269597 -s 9 -d 8 -p ack -e 40 -i 92 -a 21 r -t 0.269976 -s 3 -d 8 -p tcp -e 1000 -i 93 -a 20 + -t 0.269976 -s 8 -d 9 -p tcp -e 1000 -i 93 -a 20 r -t 0.270776 -s 3 -d 8 -p tcp -e 1000 -i 94 -a 20 + -t 0.270776 -s 8 -d 9 -p tcp -e 1000 -i 94 -a 20 r -t 0.270899 -s 9 -d 10 -p tcp -e 1000 -i 60 -a 21 + -t 0.270899 -s 4 -d 10 -p ack -e 40 -i 96 -a 21 - -t 0.270899 -s 4 -d 10 -p ack -e 40 -i 96 -a 21 h -t 0.270899 -s 4 -d 10 -p ack -e 40 -i 96 -a 21 r -t 0.271432 -s 8 -d 9 -p tcp -e 1000 -i 62 -a 21 + -t 0.271432 -s 9 -d 10 -p tcp -e 1000 -i 62 -a 21 - -t 0.271432 -s 9 -d 10 -p tcp -e 1000 -i 62 -a 21 h -t 0.271432 -s 9 -d 10 -p tcp -e 1000 -i 62 -a 21 r -t 0.271509 -s 8 -d 3 -p ack -e 40 -i 73 -a 20 + -t 0.271509 -s 3 -d 8 -p tcp -e 1000 -i 97 -a 20 - -t 0.271509 -s 3 -d 8 -p tcp -e 1000 -i 97 -a 20 h -t 0.271509 -s 3 -d 8 -p tcp -e 1000 -i 97 -a 20 + -t 0.271509 -s 3 -d 8 -p tcp -e 1000 -i 98 -a 20 r -t 0.271752 -s 6 -d 7 -p tcp -e 1000 -i 54 -a 10 + -t 0.271752 -s 7 -d 2 -p tcp -e 1000 -i 54 -a 10 - -t 0.271752 -s 7 -d 2 -p tcp -e 1000 -i 54 -a 10 h -t 0.271752 -s 7 -d 2 -p tcp -e 1000 -i 54 -a 10 r -t 0.271936 -s 6 -d 1 -p ack -e 40 -i 74 -a 10 + -t 0.271936 -s 1 -d 6 -p tcp -e 1000 -i 99 -a 10 - -t 0.271936 -s 1 -d 6 -p tcp -e 1000 -i 99 -a 10 h -t 0.271936 -s 1 -d 6 -p tcp -e 1000 -i 99 -a 10 + -t 0.271936 -s 1 -d 6 -p tcp -e 1000 -i 100 -a 10 - -t 0.272309 -s 3 -d 8 -p tcp -e 1000 -i 98 -a 20 h -t 0.272309 -s 3 -d 8 -p tcp -e 1000 -i 98 -a 20 r -t 0.272584 -s 2 -d 7 -p ack -e 40 -i 95 -a 10 + -t 0.272584 -s 7 -d 6 -p ack -e 40 -i 95 -a 10 - -t 0.272584 -s 7 -d 6 -p ack -e 40 -i 95 -a 10 h -t 0.272584 -s 7 -d 6 -p ack -e 40 -i 95 -a 10 - -t 0.272736 -s 1 -d 6 -p tcp -e 1000 -i 100 -a 10 h -t 0.272736 -s 1 -d 6 -p tcp -e 1000 -i 100 -a 10 - -t 0.272765 -s 8 -d 9 -p tcp -e 1000 -i 79 -a 20 h -t 0.272765 -s 8 -d 9 -p tcp -e 1000 -i 79 -a 20 r -t 0.27381 -s 9 -d 8 -p ack -e 40 -i 77 -a 20 + -t 0.273811 -s 8 -d 3 -p ack -e 40 -i 77 -a 20 - -t 0.273811 -s 8 -d 3 -p ack -e 40 -i 77 -a 20 h -t 0.273811 -s 8 -d 3 -p ack -e 40 -i 77 -a 20 r -t 0.274931 -s 4 -d 10 -p ack -e 40 -i 96 -a 21 + -t 0.274931 -s 9 -d 8 -p ack -e 40 -i 96 -a 21 - -t 0.274931 -s 9 -d 8 -p ack -e 40 -i 96 -a 21 h -t 0.274931 -s 9 -d 8 -p ack -e 40 -i 96 -a 21 r -t 0.275309 -s 3 -d 8 -p tcp -e 1000 -i 97 -a 20 + -t 0.275309 -s 8 -d 9 -p tcp -e 1000 -i 97 -a 20 r -t 0.275736 -s 1 -d 6 -p tcp -e 1000 -i 99 -a 10 + -t 0.275736 -s 6 -d 7 -p tcp -e 1000 -i 99 -a 10 - -t 0.275752 -s 6 -d 7 -p tcp -e 1000 -i 65 -a 11 h -t 0.275752 -s 6 -d 7 -p tcp -e 1000 -i 65 -a 11 r -t 0.276109 -s 3 -d 8 -p tcp -e 1000 -i 98 -a 20 + -t 0.276109 -s 8 -d 9 -p tcp -e 1000 -i 98 -a 20 r -t 0.276232 -s 9 -d 10 -p tcp -e 1000 -i 62 -a 21 + -t 0.276232 -s 4 -d 10 -p ack -e 40 -i 101 -a 21 - -t 0.276232 -s 4 -d 10 -p ack -e 40 -i 101 -a 21 h -t 0.276232 -s 4 -d 10 -p ack -e 40 -i 101 -a 21 r -t 0.276536 -s 1 -d 6 -p tcp -e 1000 -i 100 -a 10 + -t 0.276536 -s 6 -d 7 -p tcp -e 1000 -i 100 -a 10 r -t 0.276552 -s 7 -d 2 -p tcp -e 1000 -i 54 -a 10 + -t 0.276552 -s 2 -d 7 -p ack -e 40 -i 102 -a 10 - -t 0.276552 -s 2 -d 7 -p ack -e 40 -i 102 -a 10 h -t 0.276552 -s 2 -d 7 -p ack -e 40 -i 102 -a 10 r -t 0.276765 -s 8 -d 9 -p tcp -e 1000 -i 63 -a 21 + -t 0.276765 -s 9 -d 10 -p tcp -e 1000 -i 63 -a 21 - -t 0.276765 -s 9 -d 10 -p tcp -e 1000 -i 63 -a 21 h -t 0.276765 -s 9 -d 10 -p tcp -e 1000 -i 63 -a 21 r -t 0.276843 -s 8 -d 3 -p ack -e 40 -i 77 -a 20 + -t 0.276843 -s 3 -d 8 -p tcp -e 1000 -i 103 -a 20 - -t 0.276843 -s 3 -d 8 -p tcp -e 1000 -i 103 -a 20 h -t 0.276843 -s 3 -d 8 -p tcp -e 1000 -i 103 -a 20 + -t 0.276843 -s 3 -d 8 -p tcp -e 1000 -i 104 -a 20 r -t 0.276904 -s 7 -d 6 -p ack -e 40 -i 80 -a 12 + -t 0.276904 -s 6 -d 1 -p ack -e 40 -i 80 -a 12 - -t 0.276904 -s 6 -d 1 -p ack -e 40 -i 80 -a 12 h -t 0.276904 -s 6 -d 1 -p ack -e 40 -i 80 -a 12 - -t 0.277643 -s 3 -d 8 -p tcp -e 1000 -i 104 -a 20 h -t 0.277643 -s 3 -d 8 -p tcp -e 1000 -i 104 -a 20 - -t 0.278099 -s 8 -d 9 -p tcp -e 1000 -i 82 -a 20 h -t 0.278099 -s 8 -d 9 -p tcp -e 1000 -i 82 -a 20 r -t 0.279144 -s 9 -d 8 -p ack -e 40 -i 81 -a 22 + -t 0.279144 -s 8 -d 3 -p ack -e 40 -i 81 -a 22 - -t 0.279144 -s 8 -d 3 -p ack -e 40 -i 81 -a 22 h -t 0.279144 -s 8 -d 3 -p ack -e 40 -i 81 -a 22 r -t 0.279752 -s 6 -d 7 -p tcp -e 1000 -i 56 -a 10 + -t 0.279752 -s 7 -d 2 -p tcp -e 1000 -i 56 -a 10 - -t 0.279752 -s 7 -d 2 -p tcp -e 1000 -i 56 -a 10 h -t 0.279752 -s 7 -d 2 -p tcp -e 1000 -i 56 -a 10 r -t 0.279936 -s 6 -d 1 -p ack -e 40 -i 80 -a 12 + -t 0.279936 -s 1 -d 6 -p tcp -e 1000 -i 105 -a 12 - -t 0.279936 -s 1 -d 6 -p tcp -e 1000 -i 105 -a 12 h -t 0.279936 -s 1 -d 6 -p tcp -e 1000 -i 105 -a 12 + -t 0.279936 -s 1 -d 6 -p tcp -e 1000 -i 106 -a 12 r -t 0.280264 -s 4 -d 10 -p ack -e 40 -i 101 -a 21 + -t 0.280264 -s 9 -d 8 -p ack -e 40 -i 101 -a 21 - -t 0.280264 -s 9 -d 8 -p ack -e 40 -i 101 -a 21 h -t 0.280264 -s 9 -d 8 -p ack -e 40 -i 101 -a 21 r -t 0.280584 -s 2 -d 7 -p ack -e 40 -i 102 -a 10 + -t 0.280584 -s 7 -d 6 -p ack -e 40 -i 102 -a 10 - -t 0.280584 -s 7 -d 6 -p ack -e 40 -i 102 -a 10 h -t 0.280584 -s 7 -d 6 -p ack -e 40 -i 102 -a 10 r -t 0.280643 -s 3 -d 8 -p tcp -e 1000 -i 103 -a 20 + -t 0.280643 -s 8 -d 9 -p tcp -e 1000 -i 103 -a 20 - -t 0.280736 -s 1 -d 6 -p tcp -e 1000 -i 106 -a 12 h -t 0.280736 -s 1 -d 6 -p tcp -e 1000 -i 106 -a 12 r -t 0.281443 -s 3 -d 8 -p tcp -e 1000 -i 104 -a 20 + -t 0.281443 -s 8 -d 9 -p tcp -e 1000 -i 104 -a 20 r -t 0.281565 -s 9 -d 10 -p tcp -e 1000 -i 63 -a 21 + -t 0.281565 -s 4 -d 10 -p ack -e 40 -i 107 -a 21 - -t 0.281565 -s 4 -d 10 -p ack -e 40 -i 107 -a 21 h -t 0.281565 -s 4 -d 10 -p ack -e 40 -i 107 -a 21 r -t 0.282098 -s 8 -d 9 -p tcp -e 1000 -i 75 -a 20 + -t 0.282099 -s 9 -d 10 -p tcp -e 1000 -i 75 -a 20 - -t 0.282099 -s 9 -d 10 -p tcp -e 1000 -i 75 -a 20 h -t 0.282099 -s 9 -d 10 -p tcp -e 1000 -i 75 -a 20 r -t 0.282176 -s 8 -d 3 -p ack -e 40 -i 81 -a 22 + -t 0.282176 -s 3 -d 8 -p tcp -e 1000 -i 108 -a 22 - -t 0.282176 -s 3 -d 8 -p tcp -e 1000 -i 108 -a 22 h -t 0.282176 -s 3 -d 8 -p tcp -e 1000 -i 108 -a 22 + -t 0.282176 -s 3 -d 8 -p tcp -e 1000 -i 109 -a 22 - -t 0.282976 -s 3 -d 8 -p tcp -e 1000 -i 109 -a 22 h -t 0.282976 -s 3 -d 8 -p tcp -e 1000 -i 109 -a 22 - -t 0.283432 -s 8 -d 9 -p tcp -e 1000 -i 83 -a 20 h -t 0.283432 -s 8 -d 9 -p tcp -e 1000 -i 83 -a 20 r -t 0.283736 -s 1 -d 6 -p tcp -e 1000 -i 105 -a 12 + -t 0.283736 -s 6 -d 7 -p tcp -e 1000 -i 105 -a 12 - -t 0.283752 -s 6 -d 7 -p tcp -e 1000 -i 69 -a 11 h -t 0.283752 -s 6 -d 7 -p tcp -e 1000 -i 69 -a 11 r -t 0.284477 -s 9 -d 8 -p ack -e 40 -i 86 -a 20 + -t 0.284477 -s 8 -d 3 -p ack -e 40 -i 86 -a 20 - -t 0.284477 -s 8 -d 3 -p ack -e 40 -i 86 -a 20 h -t 0.284477 -s 8 -d 3 -p ack -e 40 -i 86 -a 20 r -t 0.284536 -s 1 -d 6 -p tcp -e 1000 -i 106 -a 12 + -t 0.284536 -s 6 -d 7 -p tcp -e 1000 -i 106 -a 12 r -t 0.284552 -s 7 -d 2 -p tcp -e 1000 -i 56 -a 10 + -t 0.284552 -s 2 -d 7 -p ack -e 40 -i 110 -a 10 - -t 0.284552 -s 2 -d 7 -p ack -e 40 -i 110 -a 10 h -t 0.284552 -s 2 -d 7 -p ack -e 40 -i 110 -a 10 r -t 0.284904 -s 7 -d 6 -p ack -e 40 -i 87 -a 10 + -t 0.284904 -s 6 -d 1 -p ack -e 40 -i 87 -a 10 - -t 0.284904 -s 6 -d 1 -p ack -e 40 -i 87 -a 10 h -t 0.284904 -s 6 -d 1 -p ack -e 40 -i 87 -a 10 r -t 0.285597 -s 4 -d 10 -p ack -e 40 -i 107 -a 21 + -t 0.285597 -s 9 -d 8 -p ack -e 40 -i 107 -a 21 - -t 0.285597 -s 9 -d 8 -p ack -e 40 -i 107 -a 21 h -t 0.285597 -s 9 -d 8 -p ack -e 40 -i 107 -a 21 r -t 0.285976 -s 3 -d 8 -p tcp -e 1000 -i 108 -a 22 + -t 0.285976 -s 8 -d 9 -p tcp -e 1000 -i 108 -a 22 r -t 0.286776 -s 3 -d 8 -p tcp -e 1000 -i 109 -a 22 + -t 0.286776 -s 8 -d 9 -p tcp -e 1000 -i 109 -a 22 d -t 0.286776 -s 8 -d 9 -p tcp -e 1000 -i 109 -a 22 r -t 0.286899 -s 9 -d 10 -p tcp -e 1000 -i 75 -a 20 + -t 0.286899 -s 4 -d 10 -p ack -e 40 -i 111 -a 20 - -t 0.286899 -s 4 -d 10 -p ack -e 40 -i 111 -a 20 h -t 0.286899 -s 4 -d 10 -p ack -e 40 -i 111 -a 20 r -t 0.287432 -s 8 -d 9 -p tcp -e 1000 -i 76 -a 20 + -t 0.287432 -s 9 -d 10 -p tcp -e 1000 -i 76 -a 20 - -t 0.287432 -s 9 -d 10 -p tcp -e 1000 -i 76 -a 20 h -t 0.287432 -s 9 -d 10 -p tcp -e 1000 -i 76 -a 20 r -t 0.287509 -s 8 -d 3 -p ack -e 40 -i 86 -a 20 + -t 0.287509 -s 3 -d 8 -p tcp -e 1000 -i 112 -a 20 - -t 0.287509 -s 3 -d 8 -p tcp -e 1000 -i 112 -a 20 h -t 0.287509 -s 3 -d 8 -p tcp -e 1000 -i 112 -a 20 + -t 0.287509 -s 3 -d 8 -p tcp -e 1000 -i 113 -a 20 r -t 0.287752 -s 6 -d 7 -p tcp -e 1000 -i 64 -a 11 + -t 0.287752 -s 7 -d 2 -p tcp -e 1000 -i 64 -a 11 - -t 0.287752 -s 7 -d 2 -p tcp -e 1000 -i 64 -a 11 h -t 0.287752 -s 7 -d 2 -p tcp -e 1000 -i 64 -a 11 r -t 0.287936 -s 6 -d 1 -p ack -e 40 -i 87 -a 10 + -t 0.287936 -s 1 -d 6 -p tcp -e 1000 -i 114 -a 10 - -t 0.287936 -s 1 -d 6 -p tcp -e 1000 -i 114 -a 10 h -t 0.287936 -s 1 -d 6 -p tcp -e 1000 -i 114 -a 10 + -t 0.287936 -s 1 -d 6 -p tcp -e 1000 -i 115 -a 10 - -t 0.288309 -s 3 -d 8 -p tcp -e 1000 -i 113 -a 20 h -t 0.288309 -s 3 -d 8 -p tcp -e 1000 -i 113 -a 20 r -t 0.288584 -s 2 -d 7 -p ack -e 40 -i 110 -a 10 + -t 0.288584 -s 7 -d 6 -p ack -e 40 -i 110 -a 10 - -t 0.288584 -s 7 -d 6 -p ack -e 40 -i 110 -a 10 h -t 0.288584 -s 7 -d 6 -p ack -e 40 -i 110 -a 10 - -t 0.288736 -s 1 -d 6 -p tcp -e 1000 -i 115 -a 10 h -t 0.288736 -s 1 -d 6 -p tcp -e 1000 -i 115 -a 10 - -t 0.288765 -s 8 -d 9 -p tcp -e 1000 -i 88 -a 20 h -t 0.288765 -s 8 -d 9 -p tcp -e 1000 -i 88 -a 20 r -t 0.28981 -s 9 -d 8 -p ack -e 40 -i 92 -a 21 + -t 0.289811 -s 8 -d 3 -p ack -e 40 -i 92 -a 21 - -t 0.289811 -s 8 -d 3 -p ack -e 40 -i 92 -a 21 h -t 0.289811 -s 8 -d 3 -p ack -e 40 -i 92 -a 21 r -t 0.290931 -s 4 -d 10 -p ack -e 40 -i 111 -a 20 + -t 0.290931 -s 9 -d 8 -p ack -e 40 -i 111 -a 20 - -t 0.290931 -s 9 -d 8 -p ack -e 40 -i 111 -a 20 h -t 0.290931 -s 9 -d 8 -p ack -e 40 -i 111 -a 20 r -t 0.291309 -s 3 -d 8 -p tcp -e 1000 -i 112 -a 20 + -t 0.291309 -s 8 -d 9 -p tcp -e 1000 -i 112 -a 20 r -t 0.291736 -s 1 -d 6 -p tcp -e 1000 -i 114 -a 10 + -t 0.291736 -s 6 -d 7 -p tcp -e 1000 -i 114 -a 10 d -t 0.291736 -s 6 -d 7 -p tcp -e 1000 -i 114 -a 10 - -t 0.291752 -s 6 -d 7 -p tcp -e 1000 -i 84 -a 10 h -t 0.291752 -s 6 -d 7 -p tcp -e 1000 -i 84 -a 10 r -t 0.292109 -s 3 -d 8 -p tcp -e 1000 -i 113 -a 20 + -t 0.292109 -s 8 -d 9 -p tcp -e 1000 -i 113 -a 20 d -t 0.292109 -s 8 -d 9 -p tcp -e 1000 -i 113 -a 20 r -t 0.292232 -s 9 -d 10 -p tcp -e 1000 -i 76 -a 20 + -t 0.292232 -s 4 -d 10 -p ack -e 40 -i 116 -a 20 - -t 0.292232 -s 4 -d 10 -p ack -e 40 -i 116 -a 20 h -t 0.292232 -s 4 -d 10 -p ack -e 40 -i 116 -a 20 r -t 0.292536 -s 1 -d 6 -p tcp -e 1000 -i 115 -a 10 + -t 0.292536 -s 6 -d 7 -p tcp -e 1000 -i 115 -a 10 r -t 0.292552 -s 7 -d 2 -p tcp -e 1000 -i 64 -a 11 + -t 0.292552 -s 2 -d 7 -p ack -e 40 -i 117 -a 11 - -t 0.292552 -s 2 -d 7 -p ack -e 40 -i 117 -a 11 h -t 0.292552 -s 2 -d 7 -p ack -e 40 -i 117 -a 11 r -t 0.292765 -s 8 -d 9 -p tcp -e 1000 -i 78 -a 20 + -t 0.292765 -s 9 -d 10 -p tcp -e 1000 -i 78 -a 20 - -t 0.292765 -s 9 -d 10 -p tcp -e 1000 -i 78 -a 20 h -t 0.292765 -s 9 -d 10 -p tcp -e 1000 -i 78 -a 20 r -t 0.292843 -s 8 -d 3 -p ack -e 40 -i 92 -a 21 + -t 0.292843 -s 3 -d 8 -p tcp -e 1000 -i 118 -a 21 - -t 0.292843 -s 3 -d 8 -p tcp -e 1000 -i 118 -a 21 h -t 0.292843 -s 3 -d 8 -p tcp -e 1000 -i 118 -a 21 + -t 0.292843 -s 3 -d 8 -p tcp -e 1000 -i 119 -a 21 r -t 0.292904 -s 7 -d 6 -p ack -e 40 -i 95 -a 10 + -t 0.292904 -s 6 -d 1 -p ack -e 40 -i 95 -a 10 - -t 0.292904 -s 6 -d 1 -p ack -e 40 -i 95 -a 10 h -t 0.292904 -s 6 -d 1 -p ack -e 40 -i 95 -a 10 - -t 0.293643 -s 3 -d 8 -p tcp -e 1000 -i 119 -a 21 h -t 0.293643 -s 3 -d 8 -p tcp -e 1000 -i 119 -a 21 - -t 0.294099 -s 8 -d 9 -p tcp -e 1000 -i 89 -a 20 h -t 0.294099 -s 8 -d 9 -p tcp -e 1000 -i 89 -a 20 r -t 0.295144 -s 9 -d 8 -p ack -e 40 -i 96 -a 21 + -t 0.295144 -s 8 -d 3 -p ack -e 40 -i 96 -a 21 - -t 0.295144 -s 8 -d 3 -p ack -e 40 -i 96 -a 21 h -t 0.295144 -s 8 -d 3 -p ack -e 40 -i 96 -a 21 r -t 0.295752 -s 6 -d 7 -p tcp -e 1000 -i 57 -a 10 + -t 0.295752 -s 7 -d 2 -p tcp -e 1000 -i 57 -a 10 - -t 0.295752 -s 7 -d 2 -p tcp -e 1000 -i 57 -a 10 h -t 0.295752 -s 7 -d 2 -p tcp -e 1000 -i 57 -a 10 r -t 0.295936 -s 6 -d 1 -p ack -e 40 -i 95 -a 10 + -t 0.295936 -s 1 -d 6 -p tcp -e 1000 -i 120 -a 10 - -t 0.295936 -s 1 -d 6 -p tcp -e 1000 -i 120 -a 10 h -t 0.295936 -s 1 -d 6 -p tcp -e 1000 -i 120 -a 10 + -t 0.295936 -s 1 -d 6 -p tcp -e 1000 -i 121 -a 10 r -t 0.296264 -s 4 -d 10 -p ack -e 40 -i 116 -a 20 + -t 0.296264 -s 9 -d 8 -p ack -e 40 -i 116 -a 20 - -t 0.296264 -s 9 -d 8 -p ack -e 40 -i 116 -a 20 h -t 0.296264 -s 9 -d 8 -p ack -e 40 -i 116 -a 20 r -t 0.296584 -s 2 -d 7 -p ack -e 40 -i 117 -a 11 + -t 0.296584 -s 7 -d 6 -p ack -e 40 -i 117 -a 11 - -t 0.296584 -s 7 -d 6 -p ack -e 40 -i 117 -a 11 h -t 0.296584 -s 7 -d 6 -p ack -e 40 -i 117 -a 11 r -t 0.296643 -s 3 -d 8 -p tcp -e 1000 -i 118 -a 21 + -t 0.296643 -s 8 -d 9 -p tcp -e 1000 -i 118 -a 21 - -t 0.296736 -s 1 -d 6 -p tcp -e 1000 -i 121 -a 10 h -t 0.296736 -s 1 -d 6 -p tcp -e 1000 -i 121 -a 10 r -t 0.297443 -s 3 -d 8 -p tcp -e 1000 -i 119 -a 21 + -t 0.297443 -s 8 -d 9 -p tcp -e 1000 -i 119 -a 21 d -t 0.297443 -s 8 -d 9 -p tcp -e 1000 -i 119 -a 21 r -t 0.297565 -s 9 -d 10 -p tcp -e 1000 -i 78 -a 20 + -t 0.297565 -s 4 -d 10 -p ack -e 40 -i 122 -a 20 - -t 0.297565 -s 4 -d 10 -p ack -e 40 -i 122 -a 20 h -t 0.297565 -s 4 -d 10 -p ack -e 40 -i 122 -a 20 r -t 0.298098 -s 8 -d 9 -p tcp -e 1000 -i 79 -a 20 + -t 0.298099 -s 9 -d 10 -p tcp -e 1000 -i 79 -a 20 - -t 0.298099 -s 9 -d 10 -p tcp -e 1000 -i 79 -a 20 h -t 0.298099 -s 9 -d 10 -p tcp -e 1000 -i 79 -a 20 r -t 0.298176 -s 8 -d 3 -p ack -e 40 -i 96 -a 21 + -t 0.298176 -s 3 -d 8 -p tcp -e 1000 -i 123 -a 21 - -t 0.298176 -s 3 -d 8 -p tcp -e 1000 -i 123 -a 21 h -t 0.298176 -s 3 -d 8 -p tcp -e 1000 -i 123 -a 21 + -t 0.298176 -s 3 -d 8 -p tcp -e 1000 -i 124 -a 21 - -t 0.298976 -s 3 -d 8 -p tcp -e 1000 -i 124 -a 21 h -t 0.298976 -s 3 -d 8 -p tcp -e 1000 -i 124 -a 21 - -t 0.299432 -s 8 -d 9 -p tcp -e 1000 -i 93 -a 20 h -t 0.299432 -s 8 -d 9 -p tcp -e 1000 -i 93 -a 20 r -t 0.299736 -s 1 -d 6 -p tcp -e 1000 -i 120 -a 10 + -t 0.299736 -s 6 -d 7 -p tcp -e 1000 -i 120 -a 10 d -t 0.299736 -s 6 -d 7 -p tcp -e 1000 -i 120 -a 10 - -t 0.299752 -s 6 -d 7 -p tcp -e 1000 -i 70 -a 11 h -t 0.299752 -s 6 -d 7 -p tcp -e 1000 -i 70 -a 11 + -t 0.3 -s 1 -d 6 -p tcp -e 1000 -i 125 -a 13 - -t 0.3 -s 1 -d 6 -p tcp -e 1000 -i 125 -a 13 h -t 0.3 -s 1 -d 6 -p tcp -e 1000 -i 125 -a 13 + -t 0.3 -s 3 -d 8 -p tcp -e 1000 -i 126 -a 23 - -t 0.3 -s 3 -d 8 -p tcp -e 1000 -i 126 -a 23 h -t 0.3 -s 3 -d 8 -p tcp -e 1000 -i 126 -a 23 r -t 0.300477 -s 9 -d 8 -p ack -e 40 -i 101 -a 21 + -t 0.300477 -s 8 -d 3 -p ack -e 40 -i 101 -a 21 - -t 0.300477 -s 8 -d 3 -p ack -e 40 -i 101 -a 21 h -t 0.300477 -s 8 -d 3 -p ack -e 40 -i 101 -a 21 r -t 0.300536 -s 1 -d 6 -p tcp -e 1000 -i 121 -a 10 + -t 0.300536 -s 6 -d 7 -p tcp -e 1000 -i 121 -a 10 r -t 0.300552 -s 7 -d 2 -p tcp -e 1000 -i 57 -a 10 + -t 0.300552 -s 2 -d 7 -p ack -e 40 -i 127 -a 10 - -t 0.300552 -s 2 -d 7 -p ack -e 40 -i 127 -a 10 h -t 0.300552 -s 2 -d 7 -p ack -e 40 -i 127 -a 10 r -t 0.300904 -s 7 -d 6 -p ack -e 40 -i 102 -a 10 + -t 0.300904 -s 6 -d 1 -p ack -e 40 -i 102 -a 10 - -t 0.300904 -s 6 -d 1 -p ack -e 40 -i 102 -a 10 h -t 0.300904 -s 6 -d 1 -p ack -e 40 -i 102 -a 10 r -t 0.301597 -s 4 -d 10 -p ack -e 40 -i 122 -a 20 + -t 0.301597 -s 9 -d 8 -p ack -e 40 -i 122 -a 20 - -t 0.301597 -s 9 -d 8 -p ack -e 40 -i 122 -a 20 h -t 0.301597 -s 9 -d 8 -p ack -e 40 -i 122 -a 20 r -t 0.301976 -s 3 -d 8 -p tcp -e 1000 -i 123 -a 21 + -t 0.301976 -s 8 -d 9 -p tcp -e 1000 -i 123 -a 21 r -t 0.302776 -s 3 -d 8 -p tcp -e 1000 -i 124 -a 21 + -t 0.302776 -s 8 -d 9 -p tcp -e 1000 -i 124 -a 21 d -t 0.302776 -s 8 -d 9 -p tcp -e 1000 -i 124 -a 21 r -t 0.302899 -s 9 -d 10 -p tcp -e 1000 -i 79 -a 20 + -t 0.302899 -s 4 -d 10 -p ack -e 40 -i 128 -a 20 - -t 0.302899 -s 4 -d 10 -p ack -e 40 -i 128 -a 20 h -t 0.302899 -s 4 -d 10 -p ack -e 40 -i 128 -a 20 r -t 0.303432 -s 8 -d 9 -p tcp -e 1000 -i 82 -a 20 + -t 0.303432 -s 9 -d 10 -p tcp -e 1000 -i 82 -a 20 - -t 0.303432 -s 9 -d 10 -p tcp -e 1000 -i 82 -a 20 h -t 0.303432 -s 9 -d 10 -p tcp -e 1000 -i 82 -a 20 r -t 0.303509 -s 8 -d 3 -p ack -e 40 -i 101 -a 21 + -t 0.303509 -s 3 -d 8 -p tcp -e 1000 -i 129 -a 21 - -t 0.303509 -s 3 -d 8 -p tcp -e 1000 -i 129 -a 21 h -t 0.303509 -s 3 -d 8 -p tcp -e 1000 -i 129 -a 21 + -t 0.303509 -s 3 -d 8 -p tcp -e 1000 -i 130 -a 21 r -t 0.303752 -s 6 -d 7 -p tcp -e 1000 -i 65 -a 11 + -t 0.303752 -s 7 -d 2 -p tcp -e 1000 -i 65 -a 11 - -t 0.303752 -s 7 -d 2 -p tcp -e 1000 -i 65 -a 11 h -t 0.303752 -s 7 -d 2 -p tcp -e 1000 -i 65 -a 11 r -t 0.3038 -s 3 -d 8 -p tcp -e 1000 -i 126 -a 23 r -t 0.3038 -s 1 -d 6 -p tcp -e 1000 -i 125 -a 13 + -t 0.3038 -s 6 -d 7 -p tcp -e 1000 -i 125 -a 13 d -t 0.3038 -s 6 -d 7 -p tcp -e 1000 -i 121 -a 10 + -t 0.3038 -s 8 -d 9 -p tcp -e 1000 -i 126 -a 23 d -t 0.3038 -s 8 -d 9 -p tcp -e 1000 -i 126 -a 23 r -t 0.303936 -s 6 -d 1 -p ack -e 40 -i 102 -a 10 + -t 0.303936 -s 1 -d 6 -p tcp -e 1000 -i 131 -a 10 - -t 0.303936 -s 1 -d 6 -p tcp -e 1000 -i 131 -a 10 h -t 0.303936 -s 1 -d 6 -p tcp -e 1000 -i 131 -a 10 + -t 0.303936 -s 1 -d 6 -p tcp -e 1000 -i 132 -a 10 - -t 0.304309 -s 3 -d 8 -p tcp -e 1000 -i 130 -a 21 h -t 0.304309 -s 3 -d 8 -p tcp -e 1000 -i 130 -a 21 r -t 0.304584 -s 2 -d 7 -p ack -e 40 -i 127 -a 10 + -t 0.304584 -s 7 -d 6 -p ack -e 40 -i 127 -a 10 - -t 0.304584 -s 7 -d 6 -p ack -e 40 -i 127 -a 10 h -t 0.304584 -s 7 -d 6 -p ack -e 40 -i 127 -a 10 - -t 0.304736 -s 1 -d 6 -p tcp -e 1000 -i 132 -a 10 h -t 0.304736 -s 1 -d 6 -p tcp -e 1000 -i 132 -a 10 - -t 0.304765 -s 8 -d 9 -p tcp -e 1000 -i 94 -a 20 h -t 0.304765 -s 8 -d 9 -p tcp -e 1000 -i 94 -a 20 r -t 0.30581 -s 9 -d 8 -p ack -e 40 -i 107 -a 21 + -t 0.305811 -s 8 -d 3 -p ack -e 40 -i 107 -a 21 - -t 0.305811 -s 8 -d 3 -p ack -e 40 -i 107 -a 21 h -t 0.305811 -s 8 -d 3 -p ack -e 40 -i 107 -a 21 r -t 0.306931 -s 4 -d 10 -p ack -e 40 -i 128 -a 20 + -t 0.306931 -s 9 -d 8 -p ack -e 40 -i 128 -a 20 - -t 0.306931 -s 9 -d 8 -p ack -e 40 -i 128 -a 20 h -t 0.306931 -s 9 -d 8 -p ack -e 40 -i 128 -a 20 r -t 0.307309 -s 3 -d 8 -p tcp -e 1000 -i 129 -a 21 + -t 0.307309 -s 8 -d 9 -p tcp -e 1000 -i 129 -a 21 r -t 0.307736 -s 1 -d 6 -p tcp -e 1000 -i 131 -a 10 + -t 0.307736 -s 6 -d 7 -p tcp -e 1000 -i 131 -a 10 d -t 0.307736 -s 6 -d 7 -p tcp -e 1000 -i 131 -a 10 - -t 0.307752 -s 6 -d 7 -p tcp -e 1000 -i 85 -a 10 h -t 0.307752 -s 6 -d 7 -p tcp -e 1000 -i 85 -a 10 r -t 0.308109 -s 3 -d 8 -p tcp -e 1000 -i 130 -a 21 + -t 0.308109 -s 8 -d 9 -p tcp -e 1000 -i 130 -a 21 d -t 0.308109 -s 8 -d 9 -p tcp -e 1000 -i 130 -a 21 r -t 0.308232 -s 9 -d 10 -p tcp -e 1000 -i 82 -a 20 + -t 0.308232 -s 4 -d 10 -p ack -e 40 -i 133 -a 20 - -t 0.308232 -s 4 -d 10 -p ack -e 40 -i 133 -a 20 h -t 0.308232 -s 4 -d 10 -p ack -e 40 -i 133 -a 20 r -t 0.308536 -s 1 -d 6 -p tcp -e 1000 -i 132 -a 10 + -t 0.308536 -s 6 -d 7 -p tcp -e 1000 -i 132 -a 10 r -t 0.308552 -s 7 -d 2 -p tcp -e 1000 -i 65 -a 11 + -t 0.308552 -s 2 -d 7 -p ack -e 40 -i 134 -a 11 - -t 0.308552 -s 2 -d 7 -p ack -e 40 -i 134 -a 11 h -t 0.308552 -s 2 -d 7 -p ack -e 40 -i 134 -a 11 r -t 0.308765 -s 8 -d 9 -p tcp -e 1000 -i 83 -a 20 + -t 0.308765 -s 9 -d 10 -p tcp -e 1000 -i 83 -a 20 - -t 0.308765 -s 9 -d 10 -p tcp -e 1000 -i 83 -a 20 h -t 0.308765 -s 9 -d 10 -p tcp -e 1000 -i 83 -a 20 r -t 0.308843 -s 8 -d 3 -p ack -e 40 -i 107 -a 21 + -t 0.308843 -s 3 -d 8 -p tcp -e 1000 -i 135 -a 21 - -t 0.308843 -s 3 -d 8 -p tcp -e 1000 -i 135 -a 21 h -t 0.308843 -s 3 -d 8 -p tcp -e 1000 -i 135 -a 21 + -t 0.308843 -s 3 -d 8 -p tcp -e 1000 -i 136 -a 21 r -t 0.308904 -s 7 -d 6 -p ack -e 40 -i 110 -a 10 + -t 0.308904 -s 6 -d 1 -p ack -e 40 -i 110 -a 10 - -t 0.308904 -s 6 -d 1 -p ack -e 40 -i 110 -a 10 h -t 0.308904 -s 6 -d 1 -p ack -e 40 -i 110 -a 10 - -t 0.309643 -s 3 -d 8 -p tcp -e 1000 -i 136 -a 21 h -t 0.309643 -s 3 -d 8 -p tcp -e 1000 -i 136 -a 21 - -t 0.310099 -s 8 -d 9 -p tcp -e 1000 -i 97 -a 20 h -t 0.310099 -s 8 -d 9 -p tcp -e 1000 -i 97 -a 20 r -t 0.311144 -s 9 -d 8 -p ack -e 40 -i 111 -a 20 + -t 0.311144 -s 8 -d 3 -p ack -e 40 -i 111 -a 20 - -t 0.311144 -s 8 -d 3 -p ack -e 40 -i 111 -a 20 h -t 0.311144 -s 8 -d 3 -p ack -e 40 -i 111 -a 20 r -t 0.311752 -s 6 -d 7 -p tcp -e 1000 -i 69 -a 11 + -t 0.311752 -s 7 -d 2 -p tcp -e 1000 -i 69 -a 11 - -t 0.311752 -s 7 -d 2 -p tcp -e 1000 -i 69 -a 11 h -t 0.311752 -s 7 -d 2 -p tcp -e 1000 -i 69 -a 11 r -t 0.311936 -s 6 -d 1 -p ack -e 40 -i 110 -a 10 + -t 0.311936 -s 1 -d 6 -p tcp -e 1000 -i 137 -a 10 - -t 0.311936 -s 1 -d 6 -p tcp -e 1000 -i 137 -a 10 h -t 0.311936 -s 1 -d 6 -p tcp -e 1000 -i 137 -a 10 + -t 0.311936 -s 1 -d 6 -p tcp -e 1000 -i 138 -a 10 r -t 0.312264 -s 4 -d 10 -p ack -e 40 -i 133 -a 20 + -t 0.312264 -s 9 -d 8 -p ack -e 40 -i 133 -a 20 - -t 0.312264 -s 9 -d 8 -p ack -e 40 -i 133 -a 20 h -t 0.312264 -s 9 -d 8 -p ack -e 40 -i 133 -a 20 r -t 0.312584 -s 2 -d 7 -p ack -e 40 -i 134 -a 11 + -t 0.312584 -s 7 -d 6 -p ack -e 40 -i 134 -a 11 - -t 0.312584 -s 7 -d 6 -p ack -e 40 -i 134 -a 11 h -t 0.312584 -s 7 -d 6 -p ack -e 40 -i 134 -a 11 r -t 0.312643 -s 3 -d 8 -p tcp -e 1000 -i 135 -a 21 + -t 0.312643 -s 8 -d 9 -p tcp -e 1000 -i 135 -a 21 - -t 0.312736 -s 1 -d 6 -p tcp -e 1000 -i 138 -a 10 h -t 0.312736 -s 1 -d 6 -p tcp -e 1000 -i 138 -a 10 r -t 0.313443 -s 3 -d 8 -p tcp -e 1000 -i 136 -a 21 + -t 0.313443 -s 8 -d 9 -p tcp -e 1000 -i 136 -a 21 d -t 0.313443 -s 8 -d 9 -p tcp -e 1000 -i 136 -a 21 r -t 0.313565 -s 9 -d 10 -p tcp -e 1000 -i 83 -a 20 + -t 0.313565 -s 4 -d 10 -p ack -e 40 -i 139 -a 20 - -t 0.313565 -s 4 -d 10 -p ack -e 40 -i 139 -a 20 h -t 0.313565 -s 4 -d 10 -p ack -e 40 -i 139 -a 20 r -t 0.314098 -s 8 -d 9 -p tcp -e 1000 -i 88 -a 20 + -t 0.314099 -s 9 -d 10 -p tcp -e 1000 -i 88 -a 20 - -t 0.314099 -s 9 -d 10 -p tcp -e 1000 -i 88 -a 20 h -t 0.314099 -s 9 -d 10 -p tcp -e 1000 -i 88 -a 20 r -t 0.314176 -s 8 -d 3 -p ack -e 40 -i 111 -a 20 + -t 0.314176 -s 3 -d 8 -p tcp -e 1000 -i 140 -a 20 - -t 0.314176 -s 3 -d 8 -p tcp -e 1000 -i 140 -a 20 h -t 0.314176 -s 3 -d 8 -p tcp -e 1000 -i 140 -a 20 + -t 0.314176 -s 3 -d 8 -p tcp -e 1000 -i 141 -a 20 - -t 0.314976 -s 3 -d 8 -p tcp -e 1000 -i 141 -a 20 h -t 0.314976 -s 3 -d 8 -p tcp -e 1000 -i 141 -a 20 - -t 0.315432 -s 8 -d 9 -p tcp -e 1000 -i 98 -a 20 h -t 0.315432 -s 8 -d 9 -p tcp -e 1000 -i 98 -a 20 r -t 0.315736 -s 1 -d 6 -p tcp -e 1000 -i 137 -a 10 + -t 0.315736 -s 6 -d 7 -p tcp -e 1000 -i 137 -a 10 d -t 0.315736 -s 6 -d 7 -p tcp -e 1000 -i 137 -a 10 - -t 0.315752 -s 6 -d 7 -p tcp -e 1000 -i 90 -a 10 h -t 0.315752 -s 6 -d 7 -p tcp -e 1000 -i 90 -a 10 r -t 0.316477 -s 9 -d 8 -p ack -e 40 -i 116 -a 20 + -t 0.316477 -s 8 -d 3 -p ack -e 40 -i 116 -a 20 - -t 0.316477 -s 8 -d 3 -p ack -e 40 -i 116 -a 20 h -t 0.316477 -s 8 -d 3 -p ack -e 40 -i 116 -a 20 r -t 0.316536 -s 1 -d 6 -p tcp -e 1000 -i 138 -a 10 + -t 0.316536 -s 6 -d 7 -p tcp -e 1000 -i 138 -a 10 r -t 0.316552 -s 7 -d 2 -p tcp -e 1000 -i 69 -a 11 + -t 0.316552 -s 2 -d 7 -p ack -e 40 -i 142 -a 11 - -t 0.316552 -s 2 -d 7 -p ack -e 40 -i 142 -a 11 h -t 0.316552 -s 2 -d 7 -p ack -e 40 -i 142 -a 11 r -t 0.316904 -s 7 -d 6 -p ack -e 40 -i 117 -a 11 + -t 0.316904 -s 6 -d 1 -p ack -e 40 -i 117 -a 11 - -t 0.316904 -s 6 -d 1 -p ack -e 40 -i 117 -a 11 h -t 0.316904 -s 6 -d 1 -p ack -e 40 -i 117 -a 11 r -t 0.317597 -s 4 -d 10 -p ack -e 40 -i 139 -a 20 + -t 0.317597 -s 9 -d 8 -p ack -e 40 -i 139 -a 20 - -t 0.317597 -s 9 -d 8 -p ack -e 40 -i 139 -a 20 h -t 0.317597 -s 9 -d 8 -p ack -e 40 -i 139 -a 20 r -t 0.317976 -s 3 -d 8 -p tcp -e 1000 -i 140 -a 20 + -t 0.317976 -s 8 -d 9 -p tcp -e 1000 -i 140 -a 20 r -t 0.318776 -s 3 -d 8 -p tcp -e 1000 -i 141 -a 20 + -t 0.318776 -s 8 -d 9 -p tcp -e 1000 -i 141 -a 20 d -t 0.318776 -s 8 -d 9 -p tcp -e 1000 -i 141 -a 20 r -t 0.318899 -s 9 -d 10 -p tcp -e 1000 -i 88 -a 20 + -t 0.318899 -s 4 -d 10 -p ack -e 40 -i 143 -a 20 - -t 0.318899 -s 4 -d 10 -p ack -e 40 -i 143 -a 20 h -t 0.318899 -s 4 -d 10 -p ack -e 40 -i 143 -a 20 r -t 0.319432 -s 8 -d 9 -p tcp -e 1000 -i 89 -a 20 + -t 0.319432 -s 9 -d 10 -p tcp -e 1000 -i 89 -a 20 - -t 0.319432 -s 9 -d 10 -p tcp -e 1000 -i 89 -a 20 h -t 0.319432 -s 9 -d 10 -p tcp -e 1000 -i 89 -a 20 r -t 0.319509 -s 8 -d 3 -p ack -e 40 -i 116 -a 20 + -t 0.319509 -s 3 -d 8 -p tcp -e 1000 -i 144 -a 20 - -t 0.319509 -s 3 -d 8 -p tcp -e 1000 -i 144 -a 20 h -t 0.319509 -s 3 -d 8 -p tcp -e 1000 -i 144 -a 20 + -t 0.319509 -s 3 -d 8 -p tcp -e 1000 -i 145 -a 20 r -t 0.319752 -s 6 -d 7 -p tcp -e 1000 -i 84 -a 10 + -t 0.319752 -s 7 -d 2 -p tcp -e 1000 -i 84 -a 10 - -t 0.319752 -s 7 -d 2 -p tcp -e 1000 -i 84 -a 10 h -t 0.319752 -s 7 -d 2 -p tcp -e 1000 -i 84 -a 10 r -t 0.319936 -s 6 -d 1 -p ack -e 40 -i 117 -a 11 + -t 0.319936 -s 1 -d 6 -p tcp -e 1000 -i 146 -a 11 - -t 0.319936 -s 1 -d 6 -p tcp -e 1000 -i 146 -a 11 h -t 0.319936 -s 1 -d 6 -p tcp -e 1000 -i 146 -a 11 + -t 0.319936 -s 1 -d 6 -p tcp -e 1000 -i 147 -a 11 - -t 0.320309 -s 3 -d 8 -p tcp -e 1000 -i 145 -a 20 h -t 0.320309 -s 3 -d 8 -p tcp -e 1000 -i 145 -a 20 r -t 0.320584 -s 2 -d 7 -p ack -e 40 -i 142 -a 11 + -t 0.320584 -s 7 -d 6 -p ack -e 40 -i 142 -a 11 - -t 0.320584 -s 7 -d 6 -p ack -e 40 -i 142 -a 11 h -t 0.320584 -s 7 -d 6 -p ack -e 40 -i 142 -a 11 - -t 0.320736 -s 1 -d 6 -p tcp -e 1000 -i 147 -a 11 h -t 0.320736 -s 1 -d 6 -p tcp -e 1000 -i 147 -a 11 - -t 0.320765 -s 8 -d 9 -p tcp -e 1000 -i 103 -a 20 h -t 0.320765 -s 8 -d 9 -p tcp -e 1000 -i 103 -a 20 r -t 0.32181 -s 9 -d 8 -p ack -e 40 -i 122 -a 20 + -t 0.321811 -s 8 -d 3 -p ack -e 40 -i 122 -a 20 - -t 0.321811 -s 8 -d 3 -p ack -e 40 -i 122 -a 20 h -t 0.321811 -s 8 -d 3 -p ack -e 40 -i 122 -a 20 r -t 0.322931 -s 4 -d 10 -p ack -e 40 -i 143 -a 20 + -t 0.322931 -s 9 -d 8 -p ack -e 40 -i 143 -a 20 - -t 0.322931 -s 9 -d 8 -p ack -e 40 -i 143 -a 20 h -t 0.322931 -s 9 -d 8 -p ack -e 40 -i 143 -a 20 r -t 0.323309 -s 3 -d 8 -p tcp -e 1000 -i 144 -a 20 + -t 0.323309 -s 8 -d 9 -p tcp -e 1000 -i 144 -a 20 r -t 0.323736 -s 1 -d 6 -p tcp -e 1000 -i 146 -a 11 + -t 0.323736 -s 6 -d 7 -p tcp -e 1000 -i 146 -a 11 d -t 0.323736 -s 6 -d 7 -p tcp -e 1000 -i 138 -a 10 - -t 0.323752 -s 6 -d 7 -p tcp -e 1000 -i 91 -a 10 h -t 0.323752 -s 6 -d 7 -p tcp -e 1000 -i 91 -a 10 r -t 0.324109 -s 3 -d 8 -p tcp -e 1000 -i 145 -a 20 + -t 0.324109 -s 8 -d 9 -p tcp -e 1000 -i 145 -a 20 d -t 0.324109 -s 8 -d 9 -p tcp -e 1000 -i 145 -a 20 r -t 0.324232 -s 9 -d 10 -p tcp -e 1000 -i 89 -a 20 + -t 0.324232 -s 4 -d 10 -p ack -e 40 -i 148 -a 20 - -t 0.324232 -s 4 -d 10 -p ack -e 40 -i 148 -a 20 h -t 0.324232 -s 4 -d 10 -p ack -e 40 -i 148 -a 20 r -t 0.324536 -s 1 -d 6 -p tcp -e 1000 -i 147 -a 11 + -t 0.324536 -s 6 -d 7 -p tcp -e 1000 -i 147 -a 11 r -t 0.324552 -s 7 -d 2 -p tcp -e 1000 -i 84 -a 10 + -t 0.324552 -s 2 -d 7 -p ack -e 40 -i 149 -a 10 - -t 0.324552 -s 2 -d 7 -p ack -e 40 -i 149 -a 10 h -t 0.324552 -s 2 -d 7 -p ack -e 40 -i 149 -a 10 r -t 0.324765 -s 8 -d 9 -p tcp -e 1000 -i 93 -a 20 + -t 0.324765 -s 9 -d 10 -p tcp -e 1000 -i 93 -a 20 - -t 0.324765 -s 9 -d 10 -p tcp -e 1000 -i 93 -a 20 h -t 0.324765 -s 9 -d 10 -p tcp -e 1000 -i 93 -a 20 r -t 0.324843 -s 8 -d 3 -p ack -e 40 -i 122 -a 20 + -t 0.324843 -s 3 -d 8 -p tcp -e 1000 -i 150 -a 20 - -t 0.324843 -s 3 -d 8 -p tcp -e 1000 -i 150 -a 20 h -t 0.324843 -s 3 -d 8 -p tcp -e 1000 -i 150 -a 20 + -t 0.324843 -s 3 -d 8 -p tcp -e 1000 -i 151 -a 20 r -t 0.324904 -s 7 -d 6 -p ack -e 40 -i 127 -a 10 + -t 0.324904 -s 6 -d 1 -p ack -e 40 -i 127 -a 10 - -t 0.324904 -s 6 -d 1 -p ack -e 40 -i 127 -a 10 h -t 0.324904 -s 6 -d 1 -p ack -e 40 -i 127 -a 10 - -t 0.325643 -s 3 -d 8 -p tcp -e 1000 -i 151 -a 20 h -t 0.325643 -s 3 -d 8 -p tcp -e 1000 -i 151 -a 20 - -t 0.326099 -s 8 -d 9 -p tcp -e 1000 -i 108 -a 22 h -t 0.326099 -s 8 -d 9 -p tcp -e 1000 -i 108 -a 22 r -t 0.327144 -s 9 -d 8 -p ack -e 40 -i 128 -a 20 + -t 0.327144 -s 8 -d 3 -p ack -e 40 -i 128 -a 20 - -t 0.327144 -s 8 -d 3 -p ack -e 40 -i 128 -a 20 h -t 0.327144 -s 8 -d 3 -p ack -e 40 -i 128 -a 20 r -t 0.327752 -s 6 -d 7 -p tcp -e 1000 -i 70 -a 11 + -t 0.327752 -s 7 -d 2 -p tcp -e 1000 -i 70 -a 11 - -t 0.327752 -s 7 -d 2 -p tcp -e 1000 -i 70 -a 11 h -t 0.327752 -s 7 -d 2 -p tcp -e 1000 -i 70 -a 11 r -t 0.327936 -s 6 -d 1 -p ack -e 40 -i 127 -a 10 + -t 0.327936 -s 1 -d 6 -p tcp -e 1000 -i 152 -a 10 - -t 0.327936 -s 1 -d 6 -p tcp -e 1000 -i 152 -a 10 h -t 0.327936 -s 1 -d 6 -p tcp -e 1000 -i 152 -a 10 + -t 0.327936 -s 1 -d 6 -p tcp -e 1000 -i 153 -a 10 r -t 0.328264 -s 4 -d 10 -p ack -e 40 -i 148 -a 20 + -t 0.328264 -s 9 -d 8 -p ack -e 40 -i 148 -a 20 - -t 0.328264 -s 9 -d 8 -p ack -e 40 -i 148 -a 20 h -t 0.328264 -s 9 -d 8 -p ack -e 40 -i 148 -a 20 r -t 0.328584 -s 2 -d 7 -p ack -e 40 -i 149 -a 10 + -t 0.328584 -s 7 -d 6 -p ack -e 40 -i 149 -a 10 - -t 0.328584 -s 7 -d 6 -p ack -e 40 -i 149 -a 10 h -t 0.328584 -s 7 -d 6 -p ack -e 40 -i 149 -a 10 r -t 0.328643 -s 3 -d 8 -p tcp -e 1000 -i 150 -a 20 + -t 0.328643 -s 8 -d 9 -p tcp -e 1000 -i 150 -a 20 - -t 0.328736 -s 1 -d 6 -p tcp -e 1000 -i 153 -a 10 h -t 0.328736 -s 1 -d 6 -p tcp -e 1000 -i 153 -a 10 r -t 0.329443 -s 3 -d 8 -p tcp -e 1000 -i 151 -a 20 + -t 0.329443 -s 8 -d 9 -p tcp -e 1000 -i 151 -a 20 d -t 0.329443 -s 8 -d 9 -p tcp -e 1000 -i 151 -a 20 r -t 0.329565 -s 9 -d 10 -p tcp -e 1000 -i 93 -a 20 + -t 0.329565 -s 4 -d 10 -p ack -e 40 -i 154 -a 20 - -t 0.329565 -s 4 -d 10 -p ack -e 40 -i 154 -a 20 h -t 0.329565 -s 4 -d 10 -p ack -e 40 -i 154 -a 20 r -t 0.330098 -s 8 -d 9 -p tcp -e 1000 -i 94 -a 20 + -t 0.330099 -s 9 -d 10 -p tcp -e 1000 -i 94 -a 20 - -t 0.330099 -s 9 -d 10 -p tcp -e 1000 -i 94 -a 20 h -t 0.330099 -s 9 -d 10 -p tcp -e 1000 -i 94 -a 20 r -t 0.330176 -s 8 -d 3 -p ack -e 40 -i 128 -a 20 + -t 0.330176 -s 3 -d 8 -p tcp -e 1000 -i 155 -a 20 - -t 0.330176 -s 3 -d 8 -p tcp -e 1000 -i 155 -a 20 h -t 0.330176 -s 3 -d 8 -p tcp -e 1000 -i 155 -a 20 + -t 0.330176 -s 3 -d 8 -p tcp -e 1000 -i 156 -a 20 - -t 0.330976 -s 3 -d 8 -p tcp -e 1000 -i 156 -a 20 h -t 0.330976 -s 3 -d 8 -p tcp -e 1000 -i 156 -a 20 - -t 0.331432 -s 8 -d 9 -p tcp -e 1000 -i 104 -a 20 h -t 0.331432 -s 8 -d 9 -p tcp -e 1000 -i 104 -a 20 r -t 0.331736 -s 1 -d 6 -p tcp -e 1000 -i 152 -a 10 + -t 0.331736 -s 6 -d 7 -p tcp -e 1000 -i 152 -a 10 d -t 0.331736 -s 6 -d 7 -p tcp -e 1000 -i 147 -a 11 - -t 0.331752 -s 6 -d 7 -p tcp -e 1000 -i 99 -a 10 h -t 0.331752 -s 6 -d 7 -p tcp -e 1000 -i 99 -a 10 r -t 0.332477 -s 9 -d 8 -p ack -e 40 -i 133 -a 20 + -t 0.332477 -s 8 -d 3 -p ack -e 40 -i 133 -a 20 - -t 0.332477 -s 8 -d 3 -p ack -e 40 -i 133 -a 20 h -t 0.332477 -s 8 -d 3 -p ack -e 40 -i 133 -a 20 r -t 0.332536 -s 1 -d 6 -p tcp -e 1000 -i 153 -a 10 + -t 0.332536 -s 6 -d 7 -p tcp -e 1000 -i 153 -a 10 r -t 0.332552 -s 7 -d 2 -p tcp -e 1000 -i 70 -a 11 + -t 0.332552 -s 2 -d 7 -p ack -e 40 -i 157 -a 11 - -t 0.332552 -s 2 -d 7 -p ack -e 40 -i 157 -a 11 h -t 0.332552 -s 2 -d 7 -p ack -e 40 -i 157 -a 11 r -t 0.332904 -s 7 -d 6 -p ack -e 40 -i 134 -a 11 + -t 0.332904 -s 6 -d 1 -p ack -e 40 -i 134 -a 11 - -t 0.332904 -s 6 -d 1 -p ack -e 40 -i 134 -a 11 h -t 0.332904 -s 6 -d 1 -p ack -e 40 -i 134 -a 11 r -t 0.333597 -s 4 -d 10 -p ack -e 40 -i 154 -a 20 + -t 0.333597 -s 9 -d 8 -p ack -e 40 -i 154 -a 20 - -t 0.333597 -s 9 -d 8 -p ack -e 40 -i 154 -a 20 h -t 0.333597 -s 9 -d 8 -p ack -e 40 -i 154 -a 20 r -t 0.333976 -s 3 -d 8 -p tcp -e 1000 -i 155 -a 20 + -t 0.333976 -s 8 -d 9 -p tcp -e 1000 -i 155 -a 20 r -t 0.334776 -s 3 -d 8 -p tcp -e 1000 -i 156 -a 20 + -t 0.334776 -s 8 -d 9 -p tcp -e 1000 -i 156 -a 20 d -t 0.334776 -s 8 -d 9 -p tcp -e 1000 -i 156 -a 20 r -t 0.334899 -s 9 -d 10 -p tcp -e 1000 -i 94 -a 20 + -t 0.334899 -s 4 -d 10 -p ack -e 40 -i 158 -a 20 - -t 0.334899 -s 4 -d 10 -p ack -e 40 -i 158 -a 20 h -t 0.334899 -s 4 -d 10 -p ack -e 40 -i 158 -a 20 r -t 0.335432 -s 8 -d 9 -p tcp -e 1000 -i 97 -a 20 + -t 0.335432 -s 9 -d 10 -p tcp -e 1000 -i 97 -a 20 - -t 0.335432 -s 9 -d 10 -p tcp -e 1000 -i 97 -a 20 h -t 0.335432 -s 9 -d 10 -p tcp -e 1000 -i 97 -a 20 r -t 0.335509 -s 8 -d 3 -p ack -e 40 -i 133 -a 20 + -t 0.335509 -s 3 -d 8 -p tcp -e 1000 -i 159 -a 20 - -t 0.335509 -s 3 -d 8 -p tcp -e 1000 -i 159 -a 20 h -t 0.335509 -s 3 -d 8 -p tcp -e 1000 -i 159 -a 20 + -t 0.335509 -s 3 -d 8 -p tcp -e 1000 -i 160 -a 20 r -t 0.335752 -s 6 -d 7 -p tcp -e 1000 -i 85 -a 10 + -t 0.335752 -s 7 -d 2 -p tcp -e 1000 -i 85 -a 10 - -t 0.335752 -s 7 -d 2 -p tcp -e 1000 -i 85 -a 10 h -t 0.335752 -s 7 -d 2 -p tcp -e 1000 -i 85 -a 10 r -t 0.335936 -s 6 -d 1 -p ack -e 40 -i 134 -a 11 + -t 0.335936 -s 1 -d 6 -p tcp -e 1000 -i 161 -a 11 - -t 0.335936 -s 1 -d 6 -p tcp -e 1000 -i 161 -a 11 h -t 0.335936 -s 1 -d 6 -p tcp -e 1000 -i 161 -a 11 + -t 0.335936 -s 1 -d 6 -p tcp -e 1000 -i 162 -a 11 - -t 0.336309 -s 3 -d 8 -p tcp -e 1000 -i 160 -a 20 h -t 0.336309 -s 3 -d 8 -p tcp -e 1000 -i 160 -a 20 r -t 0.336584 -s 2 -d 7 -p ack -e 40 -i 157 -a 11 + -t 0.336584 -s 7 -d 6 -p ack -e 40 -i 157 -a 11 - -t 0.336584 -s 7 -d 6 -p ack -e 40 -i 157 -a 11 h -t 0.336584 -s 7 -d 6 -p ack -e 40 -i 157 -a 11 - -t 0.336736 -s 1 -d 6 -p tcp -e 1000 -i 162 -a 11 h -t 0.336736 -s 1 -d 6 -p tcp -e 1000 -i 162 -a 11 - -t 0.336765 -s 8 -d 9 -p tcp -e 1000 -i 112 -a 20 h -t 0.336765 -s 8 -d 9 -p tcp -e 1000 -i 112 -a 20 r -t 0.33781 -s 9 -d 8 -p ack -e 40 -i 139 -a 20 + -t 0.337811 -s 8 -d 3 -p ack -e 40 -i 139 -a 20 - -t 0.337811 -s 8 -d 3 -p ack -e 40 -i 139 -a 20 h -t 0.337811 -s 8 -d 3 -p ack -e 40 -i 139 -a 20 r -t 0.338931 -s 4 -d 10 -p ack -e 40 -i 158 -a 20 + -t 0.338931 -s 9 -d 8 -p ack -e 40 -i 158 -a 20 - -t 0.338931 -s 9 -d 8 -p ack -e 40 -i 158 -a 20 h -t 0.338931 -s 9 -d 8 -p ack -e 40 -i 158 -a 20 r -t 0.339309 -s 3 -d 8 -p tcp -e 1000 -i 159 -a 20 + -t 0.339309 -s 8 -d 9 -p tcp -e 1000 -i 159 -a 20 r -t 0.339736 -s 1 -d 6 -p tcp -e 1000 -i 161 -a 11 + -t 0.339736 -s 6 -d 7 -p tcp -e 1000 -i 161 -a 11 d -t 0.339736 -s 6 -d 7 -p tcp -e 1000 -i 153 -a 10 - -t 0.339752 -s 6 -d 7 -p tcp -e 1000 -i 105 -a 12 h -t 0.339752 -s 6 -d 7 -p tcp -e 1000 -i 105 -a 12 r -t 0.340109 -s 3 -d 8 -p tcp -e 1000 -i 160 -a 20 + -t 0.340109 -s 8 -d 9 -p tcp -e 1000 -i 160 -a 20 d -t 0.340109 -s 8 -d 9 -p tcp -e 1000 -i 160 -a 20 r -t 0.340232 -s 9 -d 10 -p tcp -e 1000 -i 97 -a 20 + -t 0.340232 -s 4 -d 10 -p ack -e 40 -i 163 -a 20 - -t 0.340232 -s 4 -d 10 -p ack -e 40 -i 163 -a 20 h -t 0.340232 -s 4 -d 10 -p ack -e 40 -i 163 -a 20 r -t 0.340536 -s 1 -d 6 -p tcp -e 1000 -i 162 -a 11 + -t 0.340536 -s 6 -d 7 -p tcp -e 1000 -i 162 -a 11 r -t 0.340552 -s 7 -d 2 -p tcp -e 1000 -i 85 -a 10 + -t 0.340552 -s 2 -d 7 -p ack -e 40 -i 164 -a 10 - -t 0.340552 -s 2 -d 7 -p ack -e 40 -i 164 -a 10 h -t 0.340552 -s 2 -d 7 -p ack -e 40 -i 164 -a 10 r -t 0.340765 -s 8 -d 9 -p tcp -e 1000 -i 98 -a 20 + -t 0.340765 -s 9 -d 10 -p tcp -e 1000 -i 98 -a 20 - -t 0.340765 -s 9 -d 10 -p tcp -e 1000 -i 98 -a 20 h -t 0.340765 -s 9 -d 10 -p tcp -e 1000 -i 98 -a 20 r -t 0.340843 -s 8 -d 3 -p ack -e 40 -i 139 -a 20 + -t 0.340843 -s 3 -d 8 -p tcp -e 1000 -i 165 -a 20 - -t 0.340843 -s 3 -d 8 -p tcp -e 1000 -i 165 -a 20 h -t 0.340843 -s 3 -d 8 -p tcp -e 1000 -i 165 -a 20 + -t 0.340843 -s 3 -d 8 -p tcp -e 1000 -i 166 -a 20 r -t 0.340904 -s 7 -d 6 -p ack -e 40 -i 142 -a 11 + -t 0.340904 -s 6 -d 1 -p ack -e 40 -i 142 -a 11 - -t 0.340904 -s 6 -d 1 -p ack -e 40 -i 142 -a 11 h -t 0.340904 -s 6 -d 1 -p ack -e 40 -i 142 -a 11 - -t 0.341643 -s 3 -d 8 -p tcp -e 1000 -i 166 -a 20 h -t 0.341643 -s 3 -d 8 -p tcp -e 1000 -i 166 -a 20 - -t 0.342099 -s 8 -d 9 -p tcp -e 1000 -i 118 -a 21 h -t 0.342099 -s 8 -d 9 -p tcp -e 1000 -i 118 -a 21 r -t 0.343144 -s 9 -d 8 -p ack -e 40 -i 143 -a 20 + -t 0.343144 -s 8 -d 3 -p ack -e 40 -i 143 -a 20 - -t 0.343144 -s 8 -d 3 -p ack -e 40 -i 143 -a 20 h -t 0.343144 -s 8 -d 3 -p ack -e 40 -i 143 -a 20 r -t 0.343752 -s 6 -d 7 -p tcp -e 1000 -i 90 -a 10 + -t 0.343752 -s 7 -d 2 -p tcp -e 1000 -i 90 -a 10 - -t 0.343752 -s 7 -d 2 -p tcp -e 1000 -i 90 -a 10 h -t 0.343752 -s 7 -d 2 -p tcp -e 1000 -i 90 -a 10 r -t 0.343936 -s 6 -d 1 -p ack -e 40 -i 142 -a 11 + -t 0.343936 -s 1 -d 6 -p tcp -e 1000 -i 167 -a 11 - -t 0.343936 -s 1 -d 6 -p tcp -e 1000 -i 167 -a 11 h -t 0.343936 -s 1 -d 6 -p tcp -e 1000 -i 167 -a 11 + -t 0.343936 -s 1 -d 6 -p tcp -e 1000 -i 168 -a 11 r -t 0.344264 -s 4 -d 10 -p ack -e 40 -i 163 -a 20 + -t 0.344264 -s 9 -d 8 -p ack -e 40 -i 163 -a 20 - -t 0.344264 -s 9 -d 8 -p ack -e 40 -i 163 -a 20 h -t 0.344264 -s 9 -d 8 -p ack -e 40 -i 163 -a 20 r -t 0.344584 -s 2 -d 7 -p ack -e 40 -i 164 -a 10 + -t 0.344584 -s 7 -d 6 -p ack -e 40 -i 164 -a 10 - -t 0.344584 -s 7 -d 6 -p ack -e 40 -i 164 -a 10 h -t 0.344584 -s 7 -d 6 -p ack -e 40 -i 164 -a 10 r -t 0.344643 -s 3 -d 8 -p tcp -e 1000 -i 165 -a 20 + -t 0.344643 -s 8 -d 9 -p tcp -e 1000 -i 165 -a 20 - -t 0.344736 -s 1 -d 6 -p tcp -e 1000 -i 168 -a 11 h -t 0.344736 -s 1 -d 6 -p tcp -e 1000 -i 168 -a 11 r -t 0.345443 -s 3 -d 8 -p tcp -e 1000 -i 166 -a 20 + -t 0.345443 -s 8 -d 9 -p tcp -e 1000 -i 166 -a 20 d -t 0.345443 -s 8 -d 9 -p tcp -e 1000 -i 166 -a 20 r -t 0.345565 -s 9 -d 10 -p tcp -e 1000 -i 98 -a 20 + -t 0.345565 -s 4 -d 10 -p ack -e 40 -i 169 -a 20 - -t 0.345565 -s 4 -d 10 -p ack -e 40 -i 169 -a 20 h -t 0.345565 -s 4 -d 10 -p ack -e 40 -i 169 -a 20 r -t 0.346098 -s 8 -d 9 -p tcp -e 1000 -i 103 -a 20 + -t 0.346099 -s 9 -d 10 -p tcp -e 1000 -i 103 -a 20 - -t 0.346099 -s 9 -d 10 -p tcp -e 1000 -i 103 -a 20 h -t 0.346099 -s 9 -d 10 -p tcp -e 1000 -i 103 -a 20 r -t 0.346176 -s 8 -d 3 -p ack -e 40 -i 143 -a 20 + -t 0.346176 -s 3 -d 8 -p tcp -e 1000 -i 170 -a 20 - -t 0.346176 -s 3 -d 8 -p tcp -e 1000 -i 170 -a 20 h -t 0.346176 -s 3 -d 8 -p tcp -e 1000 -i 170 -a 20 + -t 0.346176 -s 3 -d 8 -p tcp -e 1000 -i 171 -a 20 - -t 0.346976 -s 3 -d 8 -p tcp -e 1000 -i 171 -a 20 h -t 0.346976 -s 3 -d 8 -p tcp -e 1000 -i 171 -a 20 - -t 0.347432 -s 8 -d 9 -p tcp -e 1000 -i 123 -a 21 h -t 0.347432 -s 8 -d 9 -p tcp -e 1000 -i 123 -a 21 r -t 0.347736 -s 1 -d 6 -p tcp -e 1000 -i 167 -a 11 + -t 0.347736 -s 6 -d 7 -p tcp -e 1000 -i 167 -a 11 d -t 0.347736 -s 6 -d 7 -p tcp -e 1000 -i 167 -a 11 - -t 0.347752 -s 6 -d 7 -p tcp -e 1000 -i 100 -a 10 h -t 0.347752 -s 6 -d 7 -p tcp -e 1000 -i 100 -a 10 r -t 0.348477 -s 9 -d 8 -p ack -e 40 -i 148 -a 20 + -t 0.348477 -s 8 -d 3 -p ack -e 40 -i 148 -a 20 - -t 0.348477 -s 8 -d 3 -p ack -e 40 -i 148 -a 20 h -t 0.348477 -s 8 -d 3 -p ack -e 40 -i 148 -a 20 r -t 0.348536 -s 1 -d 6 -p tcp -e 1000 -i 168 -a 11 + -t 0.348536 -s 6 -d 7 -p tcp -e 1000 -i 168 -a 11 r -t 0.348552 -s 7 -d 2 -p tcp -e 1000 -i 90 -a 10 + -t 0.348552 -s 2 -d 7 -p ack -e 40 -i 172 -a 10 - -t 0.348552 -s 2 -d 7 -p ack -e 40 -i 172 -a 10 h -t 0.348552 -s 2 -d 7 -p ack -e 40 -i 172 -a 10 r -t 0.348904 -s 7 -d 6 -p ack -e 40 -i 149 -a 10 + -t 0.348904 -s 6 -d 1 -p ack -e 40 -i 149 -a 10 - -t 0.348904 -s 6 -d 1 -p ack -e 40 -i 149 -a 10 h -t 0.348904 -s 6 -d 1 -p ack -e 40 -i 149 -a 10 r -t 0.349597 -s 4 -d 10 -p ack -e 40 -i 169 -a 20 + -t 0.349597 -s 9 -d 8 -p ack -e 40 -i 169 -a 20 - -t 0.349597 -s 9 -d 8 -p ack -e 40 -i 169 -a 20 h -t 0.349597 -s 9 -d 8 -p ack -e 40 -i 169 -a 20 r -t 0.349976 -s 3 -d 8 -p tcp -e 1000 -i 170 -a 20 + -t 0.349976 -s 8 -d 9 -p tcp -e 1000 -i 170 -a 20 r -t 0.350776 -s 3 -d 8 -p tcp -e 1000 -i 171 -a 20 + -t 0.350776 -s 8 -d 9 -p tcp -e 1000 -i 171 -a 20 d -t 0.350776 -s 8 -d 9 -p tcp -e 1000 -i 171 -a 20 r -t 0.350899 -s 9 -d 10 -p tcp -e 1000 -i 103 -a 20 + -t 0.350899 -s 4 -d 10 -p ack -e 40 -i 173 -a 20 - -t 0.350899 -s 4 -d 10 -p ack -e 40 -i 173 -a 20 h -t 0.350899 -s 4 -d 10 -p ack -e 40 -i 173 -a 20 r -t 0.351432 -s 8 -d 9 -p tcp -e 1000 -i 108 -a 22 + -t 0.351432 -s 9 -d 10 -p tcp -e 1000 -i 108 -a 22 - -t 0.351432 -s 9 -d 10 -p tcp -e 1000 -i 108 -a 22 h -t 0.351432 -s 9 -d 10 -p tcp -e 1000 -i 108 -a 22 r -t 0.351509 -s 8 -d 3 -p ack -e 40 -i 148 -a 20 + -t 0.351509 -s 3 -d 8 -p tcp -e 1000 -i 174 -a 20 - -t 0.351509 -s 3 -d 8 -p tcp -e 1000 -i 174 -a 20 h -t 0.351509 -s 3 -d 8 -p tcp -e 1000 -i 174 -a 20 + -t 0.351509 -s 3 -d 8 -p tcp -e 1000 -i 175 -a 20 r -t 0.351752 -s 6 -d 7 -p tcp -e 1000 -i 91 -a 10 + -t 0.351752 -s 7 -d 2 -p tcp -e 1000 -i 91 -a 10 - -t 0.351752 -s 7 -d 2 -p tcp -e 1000 -i 91 -a 10 h -t 0.351752 -s 7 -d 2 -p tcp -e 1000 -i 91 -a 10 r -t 0.351936 -s 6 -d 1 -p ack -e 40 -i 149 -a 10 + -t 0.351936 -s 1 -d 6 -p tcp -e 1000 -i 176 -a 10 - -t 0.351936 -s 1 -d 6 -p tcp -e 1000 -i 176 -a 10 h -t 0.351936 -s 1 -d 6 -p tcp -e 1000 -i 176 -a 10 + -t 0.351936 -s 1 -d 6 -p tcp -e 1000 -i 177 -a 10 - -t 0.352309 -s 3 -d 8 -p tcp -e 1000 -i 175 -a 20 h -t 0.352309 -s 3 -d 8 -p tcp -e 1000 -i 175 -a 20 r -t 0.352584 -s 2 -d 7 -p ack -e 40 -i 172 -a 10 + -t 0.352584 -s 7 -d 6 -p ack -e 40 -i 172 -a 10 - -t 0.352584 -s 7 -d 6 -p ack -e 40 -i 172 -a 10 h -t 0.352584 -s 7 -d 6 -p ack -e 40 -i 172 -a 10 - -t 0.352736 -s 1 -d 6 -p tcp -e 1000 -i 177 -a 10 h -t 0.352736 -s 1 -d 6 -p tcp -e 1000 -i 177 -a 10 - -t 0.352765 -s 8 -d 9 -p tcp -e 1000 -i 129 -a 21 h -t 0.352765 -s 8 -d 9 -p tcp -e 1000 -i 129 -a 21 r -t 0.35381 -s 9 -d 8 -p ack -e 40 -i 154 -a 20 + -t 0.353811 -s 8 -d 3 -p ack -e 40 -i 154 -a 20 - -t 0.353811 -s 8 -d 3 -p ack -e 40 -i 154 -a 20 h -t 0.353811 -s 8 -d 3 -p ack -e 40 -i 154 -a 20 r -t 0.354931 -s 4 -d 10 -p ack -e 40 -i 173 -a 20 + -t 0.354931 -s 9 -d 8 -p ack -e 40 -i 173 -a 20 - -t 0.354931 -s 9 -d 8 -p ack -e 40 -i 173 -a 20 h -t 0.354931 -s 9 -d 8 -p ack -e 40 -i 173 -a 20 r -t 0.355309 -s 3 -d 8 -p tcp -e 1000 -i 174 -a 20 + -t 0.355309 -s 8 -d 9 -p tcp -e 1000 -i 174 -a 20 r -t 0.355736 -s 1 -d 6 -p tcp -e 1000 -i 176 -a 10 + -t 0.355736 -s 6 -d 7 -p tcp -e 1000 -i 176 -a 10 d -t 0.355736 -s 6 -d 7 -p tcp -e 1000 -i 168 -a 11 - -t 0.355752 -s 6 -d 7 -p tcp -e 1000 -i 106 -a 12 h -t 0.355752 -s 6 -d 7 -p tcp -e 1000 -i 106 -a 12 r -t 0.356109 -s 3 -d 8 -p tcp -e 1000 -i 175 -a 20 + -t 0.356109 -s 8 -d 9 -p tcp -e 1000 -i 175 -a 20 d -t 0.356109 -s 8 -d 9 -p tcp -e 1000 -i 175 -a 20 r -t 0.356232 -s 9 -d 10 -p tcp -e 1000 -i 108 -a 22 + -t 0.356232 -s 4 -d 10 -p ack -e 40 -i 178 -a 22 - -t 0.356232 -s 4 -d 10 -p ack -e 40 -i 178 -a 22 h -t 0.356232 -s 4 -d 10 -p ack -e 40 -i 178 -a 22 r -t 0.356536 -s 1 -d 6 -p tcp -e 1000 -i 177 -a 10 + -t 0.356536 -s 6 -d 7 -p tcp -e 1000 -i 177 -a 10 r -t 0.356552 -s 7 -d 2 -p tcp -e 1000 -i 91 -a 10 + -t 0.356552 -s 2 -d 7 -p ack -e 40 -i 179 -a 10 - -t 0.356552 -s 2 -d 7 -p ack -e 40 -i 179 -a 10 h -t 0.356552 -s 2 -d 7 -p ack -e 40 -i 179 -a 10 r -t 0.356765 -s 8 -d 9 -p tcp -e 1000 -i 104 -a 20 + -t 0.356765 -s 9 -d 10 -p tcp -e 1000 -i 104 -a 20 - -t 0.356765 -s 9 -d 10 -p tcp -e 1000 -i 104 -a 20 h -t 0.356765 -s 9 -d 10 -p tcp -e 1000 -i 104 -a 20 r -t 0.356843 -s 8 -d 3 -p ack -e 40 -i 154 -a 20 + -t 0.356843 -s 3 -d 8 -p tcp -e 1000 -i 180 -a 20 - -t 0.356843 -s 3 -d 8 -p tcp -e 1000 -i 180 -a 20 h -t 0.356843 -s 3 -d 8 -p tcp -e 1000 -i 180 -a 20 + -t 0.356843 -s 3 -d 8 -p tcp -e 1000 -i 181 -a 20 r -t 0.356904 -s 7 -d 6 -p ack -e 40 -i 157 -a 11 + -t 0.356904 -s 6 -d 1 -p ack -e 40 -i 157 -a 11 - -t 0.356904 -s 6 -d 1 -p ack -e 40 -i 157 -a 11 h -t 0.356904 -s 6 -d 1 -p ack -e 40 -i 157 -a 11 - -t 0.357643 -s 3 -d 8 -p tcp -e 1000 -i 181 -a 20 h -t 0.357643 -s 3 -d 8 -p tcp -e 1000 -i 181 -a 20 - -t 0.358099 -s 8 -d 9 -p tcp -e 1000 -i 135 -a 21 h -t 0.358099 -s 8 -d 9 -p tcp -e 1000 -i 135 -a 21 r -t 0.359144 -s 9 -d 8 -p ack -e 40 -i 158 -a 20 + -t 0.359144 -s 8 -d 3 -p ack -e 40 -i 158 -a 20 - -t 0.359144 -s 8 -d 3 -p ack -e 40 -i 158 -a 20 h -t 0.359144 -s 8 -d 3 -p ack -e 40 -i 158 -a 20 r -t 0.359752 -s 6 -d 7 -p tcp -e 1000 -i 99 -a 10 + -t 0.359752 -s 7 -d 2 -p tcp -e 1000 -i 99 -a 10 - -t 0.359752 -s 7 -d 2 -p tcp -e 1000 -i 99 -a 10 h -t 0.359752 -s 7 -d 2 -p tcp -e 1000 -i 99 -a 10 r -t 0.359936 -s 6 -d 1 -p ack -e 40 -i 157 -a 11 + -t 0.359936 -s 1 -d 6 -p tcp -e 1000 -i 182 -a 11 - -t 0.359936 -s 1 -d 6 -p tcp -e 1000 -i 182 -a 11 h -t 0.359936 -s 1 -d 6 -p tcp -e 1000 -i 182 -a 11 + -t 0.359936 -s 1 -d 6 -p tcp -e 1000 -i 183 -a 11 r -t 0.360264 -s 4 -d 10 -p ack -e 40 -i 178 -a 22 + -t 0.360264 -s 9 -d 8 -p ack -e 40 -i 178 -a 22 - -t 0.360264 -s 9 -d 8 -p ack -e 40 -i 178 -a 22 h -t 0.360264 -s 9 -d 8 -p ack -e 40 -i 178 -a 22 r -t 0.360584 -s 2 -d 7 -p ack -e 40 -i 179 -a 10 + -t 0.360584 -s 7 -d 6 -p ack -e 40 -i 179 -a 10 - -t 0.360584 -s 7 -d 6 -p ack -e 40 -i 179 -a 10 h -t 0.360584 -s 7 -d 6 -p ack -e 40 -i 179 -a 10 r -t 0.360643 -s 3 -d 8 -p tcp -e 1000 -i 180 -a 20 + -t 0.360643 -s 8 -d 9 -p tcp -e 1000 -i 180 -a 20 - -t 0.360736 -s 1 -d 6 -p tcp -e 1000 -i 183 -a 11 h -t 0.360736 -s 1 -d 6 -p tcp -e 1000 -i 183 -a 11 r -t 0.361443 -s 3 -d 8 -p tcp -e 1000 -i 181 -a 20 + -t 0.361443 -s 8 -d 9 -p tcp -e 1000 -i 181 -a 20 d -t 0.361443 -s 8 -d 9 -p tcp -e 1000 -i 181 -a 20 r -t 0.361565 -s 9 -d 10 -p tcp -e 1000 -i 104 -a 20 + -t 0.361565 -s 4 -d 10 -p ack -e 40 -i 184 -a 20 - -t 0.361565 -s 4 -d 10 -p ack -e 40 -i 184 -a 20 h -t 0.361565 -s 4 -d 10 -p ack -e 40 -i 184 -a 20 r -t 0.362098 -s 8 -d 9 -p tcp -e 1000 -i 112 -a 20 + -t 0.362099 -s 9 -d 10 -p tcp -e 1000 -i 112 -a 20 - -t 0.362099 -s 9 -d 10 -p tcp -e 1000 -i 112 -a 20 h -t 0.362099 -s 9 -d 10 -p tcp -e 1000 -i 112 -a 20 r -t 0.362176 -s 8 -d 3 -p ack -e 40 -i 158 -a 20 + -t 0.362176 -s 3 -d 8 -p tcp -e 1000 -i 185 -a 20 - -t 0.362176 -s 3 -d 8 -p tcp -e 1000 -i 185 -a 20 h -t 0.362176 -s 3 -d 8 -p tcp -e 1000 -i 185 -a 20 + -t 0.362176 -s 3 -d 8 -p tcp -e 1000 -i 186 -a 20 - -t 0.362976 -s 3 -d 8 -p tcp -e 1000 -i 186 -a 20 h -t 0.362976 -s 3 -d 8 -p tcp -e 1000 -i 186 -a 20 - -t 0.363432 -s 8 -d 9 -p tcp -e 1000 -i 140 -a 20 h -t 0.363432 -s 8 -d 9 -p tcp -e 1000 -i 140 -a 20 r -t 0.363736 -s 1 -d 6 -p tcp -e 1000 -i 182 -a 11 + -t 0.363736 -s 6 -d 7 -p tcp -e 1000 -i 182 -a 11 d -t 0.363736 -s 6 -d 7 -p tcp -e 1000 -i 177 -a 10 - -t 0.363752 -s 6 -d 7 -p tcp -e 1000 -i 115 -a 10 h -t 0.363752 -s 6 -d 7 -p tcp -e 1000 -i 115 -a 10 r -t 0.364477 -s 9 -d 8 -p ack -e 40 -i 163 -a 20 + -t 0.364477 -s 8 -d 3 -p ack -e 40 -i 163 -a 20 - -t 0.364477 -s 8 -d 3 -p ack -e 40 -i 163 -a 20 h -t 0.364477 -s 8 -d 3 -p ack -e 40 -i 163 -a 20 r -t 0.364536 -s 1 -d 6 -p tcp -e 1000 -i 183 -a 11 + -t 0.364536 -s 6 -d 7 -p tcp -e 1000 -i 183 -a 11 r -t 0.364552 -s 7 -d 2 -p tcp -e 1000 -i 99 -a 10 + -t 0.364552 -s 2 -d 7 -p ack -e 40 -i 187 -a 10 - -t 0.364552 -s 2 -d 7 -p ack -e 40 -i 187 -a 10 h -t 0.364552 -s 2 -d 7 -p ack -e 40 -i 187 -a 10 r -t 0.364904 -s 7 -d 6 -p ack -e 40 -i 164 -a 10 + -t 0.364904 -s 6 -d 1 -p ack -e 40 -i 164 -a 10 - -t 0.364904 -s 6 -d 1 -p ack -e 40 -i 164 -a 10 h -t 0.364904 -s 6 -d 1 -p ack -e 40 -i 164 -a 10 r -t 0.365597 -s 4 -d 10 -p ack -e 40 -i 184 -a 20 + -t 0.365597 -s 9 -d 8 -p ack -e 40 -i 184 -a 20 - -t 0.365597 -s 9 -d 8 -p ack -e 40 -i 184 -a 20 h -t 0.365597 -s 9 -d 8 -p ack -e 40 -i 184 -a 20 r -t 0.365976 -s 3 -d 8 -p tcp -e 1000 -i 185 -a 20 + -t 0.365976 -s 8 -d 9 -p tcp -e 1000 -i 185 -a 20 r -t 0.366776 -s 3 -d 8 -p tcp -e 1000 -i 186 -a 20 + -t 0.366776 -s 8 -d 9 -p tcp -e 1000 -i 186 -a 20 d -t 0.366776 -s 8 -d 9 -p tcp -e 1000 -i 186 -a 20 r -t 0.366899 -s 9 -d 10 -p tcp -e 1000 -i 112 -a 20 + -t 0.366899 -s 4 -d 10 -p ack -e 40 -i 188 -a 20 - -t 0.366899 -s 4 -d 10 -p ack -e 40 -i 188 -a 20 h -t 0.366899 -s 4 -d 10 -p ack -e 40 -i 188 -a 20 r -t 0.367432 -s 8 -d 9 -p tcp -e 1000 -i 118 -a 21 + -t 0.367432 -s 9 -d 10 -p tcp -e 1000 -i 118 -a 21 - -t 0.367432 -s 9 -d 10 -p tcp -e 1000 -i 118 -a 21 h -t 0.367432 -s 9 -d 10 -p tcp -e 1000 -i 118 -a 21 r -t 0.367509 -s 8 -d 3 -p ack -e 40 -i 163 -a 20 + -t 0.367509 -s 3 -d 8 -p tcp -e 1000 -i 189 -a 20 - -t 0.367509 -s 3 -d 8 -p tcp -e 1000 -i 189 -a 20 h -t 0.367509 -s 3 -d 8 -p tcp -e 1000 -i 189 -a 20 + -t 0.367509 -s 3 -d 8 -p tcp -e 1000 -i 190 -a 20 r -t 0.367752 -s 6 -d 7 -p tcp -e 1000 -i 105 -a 12 + -t 0.367752 -s 7 -d 2 -p tcp -e 1000 -i 105 -a 12 - -t 0.367752 -s 7 -d 2 -p tcp -e 1000 -i 105 -a 12 h -t 0.367752 -s 7 -d 2 -p tcp -e 1000 -i 105 -a 12 r -t 0.367936 -s 6 -d 1 -p ack -e 40 -i 164 -a 10 + -t 0.367936 -s 1 -d 6 -p tcp -e 1000 -i 191 -a 10 - -t 0.367936 -s 1 -d 6 -p tcp -e 1000 -i 191 -a 10 h -t 0.367936 -s 1 -d 6 -p tcp -e 1000 -i 191 -a 10 + -t 0.367936 -s 1 -d 6 -p tcp -e 1000 -i 192 -a 10 - -t 0.368309 -s 3 -d 8 -p tcp -e 1000 -i 190 -a 20 h -t 0.368309 -s 3 -d 8 -p tcp -e 1000 -i 190 -a 20 r -t 0.368584 -s 2 -d 7 -p ack -e 40 -i 187 -a 10 + -t 0.368584 -s 7 -d 6 -p ack -e 40 -i 187 -a 10 - -t 0.368584 -s 7 -d 6 -p ack -e 40 -i 187 -a 10 h -t 0.368584 -s 7 -d 6 -p ack -e 40 -i 187 -a 10 - -t 0.368736 -s 1 -d 6 -p tcp -e 1000 -i 192 -a 10 h -t 0.368736 -s 1 -d 6 -p tcp -e 1000 -i 192 -a 10 - -t 0.368765 -s 8 -d 9 -p tcp -e 1000 -i 144 -a 20 h -t 0.368765 -s 8 -d 9 -p tcp -e 1000 -i 144 -a 20 r -t 0.36981 -s 9 -d 8 -p ack -e 40 -i 169 -a 20 + -t 0.369811 -s 8 -d 3 -p ack -e 40 -i 169 -a 20 - -t 0.369811 -s 8 -d 3 -p ack -e 40 -i 169 -a 20 h -t 0.369811 -s 8 -d 3 -p ack -e 40 -i 169 -a 20 r -t 0.370931 -s 4 -d 10 -p ack -e 40 -i 188 -a 20 + -t 0.370931 -s 9 -d 8 -p ack -e 40 -i 188 -a 20 - -t 0.370931 -s 9 -d 8 -p ack -e 40 -i 188 -a 20 h -t 0.370931 -s 9 -d 8 -p ack -e 40 -i 188 -a 20 r -t 0.371309 -s 3 -d 8 -p tcp -e 1000 -i 189 -a 20 + -t 0.371309 -s 8 -d 9 -p tcp -e 1000 -i 189 -a 20 r -t 0.371736 -s 1 -d 6 -p tcp -e 1000 -i 191 -a 10 + -t 0.371736 -s 6 -d 7 -p tcp -e 1000 -i 191 -a 10 d -t 0.371736 -s 6 -d 7 -p tcp -e 1000 -i 183 -a 11 - -t 0.371752 -s 6 -d 7 -p tcp -e 1000 -i 125 -a 13 h -t 0.371752 -s 6 -d 7 -p tcp -e 1000 -i 125 -a 13 r -t 0.372109 -s 3 -d 8 -p tcp -e 1000 -i 190 -a 20 + -t 0.372109 -s 8 -d 9 -p tcp -e 1000 -i 190 -a 20 d -t 0.372109 -s 8 -d 9 -p tcp -e 1000 -i 190 -a 20 r -t 0.372232 -s 9 -d 10 -p tcp -e 1000 -i 118 -a 21 + -t 0.372232 -s 4 -d 10 -p ack -e 40 -i 193 -a 21 - -t 0.372232 -s 4 -d 10 -p ack -e 40 -i 193 -a 21 h -t 0.372232 -s 4 -d 10 -p ack -e 40 -i 193 -a 21 r -t 0.372536 -s 1 -d 6 -p tcp -e 1000 -i 192 -a 10 + -t 0.372536 -s 6 -d 7 -p tcp -e 1000 -i 192 -a 10 r -t 0.372552 -s 7 -d 2 -p tcp -e 1000 -i 105 -a 12 + -t 0.372552 -s 2 -d 7 -p ack -e 40 -i 194 -a 12 - -t 0.372552 -s 2 -d 7 -p ack -e 40 -i 194 -a 12 h -t 0.372552 -s 2 -d 7 -p ack -e 40 -i 194 -a 12 r -t 0.372765 -s 8 -d 9 -p tcp -e 1000 -i 123 -a 21 + -t 0.372765 -s 9 -d 10 -p tcp -e 1000 -i 123 -a 21 - -t 0.372765 -s 9 -d 10 -p tcp -e 1000 -i 123 -a 21 h -t 0.372765 -s 9 -d 10 -p tcp -e 1000 -i 123 -a 21 r -t 0.372843 -s 8 -d 3 -p ack -e 40 -i 169 -a 20 + -t 0.372843 -s 3 -d 8 -p tcp -e 1000 -i 195 -a 20 - -t 0.372843 -s 3 -d 8 -p tcp -e 1000 -i 195 -a 20 h -t 0.372843 -s 3 -d 8 -p tcp -e 1000 -i 195 -a 20 + -t 0.372843 -s 3 -d 8 -p tcp -e 1000 -i 196 -a 20 r -t 0.372904 -s 7 -d 6 -p ack -e 40 -i 172 -a 10 + -t 0.372904 -s 6 -d 1 -p ack -e 40 -i 172 -a 10 - -t 0.372904 -s 6 -d 1 -p ack -e 40 -i 172 -a 10 h -t 0.372904 -s 6 -d 1 -p ack -e 40 -i 172 -a 10 - -t 0.373643 -s 3 -d 8 -p tcp -e 1000 -i 196 -a 20 h -t 0.373643 -s 3 -d 8 -p tcp -e 1000 -i 196 -a 20 - -t 0.374099 -s 8 -d 9 -p tcp -e 1000 -i 150 -a 20 h -t 0.374099 -s 8 -d 9 -p tcp -e 1000 -i 150 -a 20 r -t 0.375144 -s 9 -d 8 -p ack -e 40 -i 173 -a 20 + -t 0.375144 -s 8 -d 3 -p ack -e 40 -i 173 -a 20 - -t 0.375144 -s 8 -d 3 -p ack -e 40 -i 173 -a 20 h -t 0.375144 -s 8 -d 3 -p ack -e 40 -i 173 -a 20 r -t 0.375752 -s 6 -d 7 -p tcp -e 1000 -i 100 -a 10 + -t 0.375752 -s 7 -d 2 -p tcp -e 1000 -i 100 -a 10 - -t 0.375752 -s 7 -d 2 -p tcp -e 1000 -i 100 -a 10 h -t 0.375752 -s 7 -d 2 -p tcp -e 1000 -i 100 -a 10 r -t 0.375936 -s 6 -d 1 -p ack -e 40 -i 172 -a 10 + -t 0.375936 -s 1 -d 6 -p tcp -e 1000 -i 197 -a 10 - -t 0.375936 -s 1 -d 6 -p tcp -e 1000 -i 197 -a 10 h -t 0.375936 -s 1 -d 6 -p tcp -e 1000 -i 197 -a 10 + -t 0.375936 -s 1 -d 6 -p tcp -e 1000 -i 198 -a 10 r -t 0.376264 -s 4 -d 10 -p ack -e 40 -i 193 -a 21 + -t 0.376264 -s 9 -d 8 -p ack -e 40 -i 193 -a 21 - -t 0.376264 -s 9 -d 8 -p ack -e 40 -i 193 -a 21 h -t 0.376264 -s 9 -d 8 -p ack -e 40 -i 193 -a 21 r -t 0.376584 -s 2 -d 7 -p ack -e 40 -i 194 -a 12 + -t 0.376584 -s 7 -d 6 -p ack -e 40 -i 194 -a 12 - -t 0.376584 -s 7 -d 6 -p ack -e 40 -i 194 -a 12 h -t 0.376584 -s 7 -d 6 -p ack -e 40 -i 194 -a 12 r -t 0.376643 -s 3 -d 8 -p tcp -e 1000 -i 195 -a 20 + -t 0.376643 -s 8 -d 9 -p tcp -e 1000 -i 195 -a 20 - -t 0.376736 -s 1 -d 6 -p tcp -e 1000 -i 198 -a 10 h -t 0.376736 -s 1 -d 6 -p tcp -e 1000 -i 198 -a 10 r -t 0.377443 -s 3 -d 8 -p tcp -e 1000 -i 196 -a 20 + -t 0.377443 -s 8 -d 9 -p tcp -e 1000 -i 196 -a 20 d -t 0.377443 -s 8 -d 9 -p tcp -e 1000 -i 196 -a 20 r -t 0.377565 -s 9 -d 10 -p tcp -e 1000 -i 123 -a 21 + -t 0.377565 -s 4 -d 10 -p ack -e 40 -i 199 -a 21 - -t 0.377565 -s 4 -d 10 -p ack -e 40 -i 199 -a 21 h -t 0.377565 -s 4 -d 10 -p ack -e 40 -i 199 -a 21 r -t 0.378098 -s 8 -d 9 -p tcp -e 1000 -i 129 -a 21 + -t 0.378099 -s 9 -d 10 -p tcp -e 1000 -i 129 -a 21 - -t 0.378099 -s 9 -d 10 -p tcp -e 1000 -i 129 -a 21 h -t 0.378099 -s 9 -d 10 -p tcp -e 1000 -i 129 -a 21 r -t 0.378176 -s 8 -d 3 -p ack -e 40 -i 173 -a 20 + -t 0.378176 -s 3 -d 8 -p tcp -e 1000 -i 200 -a 20 - -t 0.378176 -s 3 -d 8 -p tcp -e 1000 -i 200 -a 20 h -t 0.378176 -s 3 -d 8 -p tcp -e 1000 -i 200 -a 20 + -t 0.378176 -s 3 -d 8 -p tcp -e 1000 -i 201 -a 20 - -t 0.378976 -s 3 -d 8 -p tcp -e 1000 -i 201 -a 20 h -t 0.378976 -s 3 -d 8 -p tcp -e 1000 -i 201 -a 20 - -t 0.379432 -s 8 -d 9 -p tcp -e 1000 -i 155 -a 20 h -t 0.379432 -s 8 -d 9 -p tcp -e 1000 -i 155 -a 20 r -t 0.379736 -s 1 -d 6 -p tcp -e 1000 -i 197 -a 10 + -t 0.379736 -s 6 -d 7 -p tcp -e 1000 -i 197 -a 10 d -t 0.379736 -s 6 -d 7 -p tcp -e 1000 -i 197 -a 10 - -t 0.379752 -s 6 -d 7 -p tcp -e 1000 -i 132 -a 10 h -t 0.379752 -s 6 -d 7 -p tcp -e 1000 -i 132 -a 10 r -t 0.380477 -s 9 -d 8 -p ack -e 40 -i 178 -a 22 + -t 0.380477 -s 8 -d 3 -p ack -e 40 -i 178 -a 22 - -t 0.380477 -s 8 -d 3 -p ack -e 40 -i 178 -a 22 h -t 0.380477 -s 8 -d 3 -p ack -e 40 -i 178 -a 22 r -t 0.380536 -s 1 -d 6 -p tcp -e 1000 -i 198 -a 10 + -t 0.380536 -s 6 -d 7 -p tcp -e 1000 -i 198 -a 10 r -t 0.380552 -s 7 -d 2 -p tcp -e 1000 -i 100 -a 10 + -t 0.380552 -s 2 -d 7 -p ack -e 40 -i 202 -a 10 - -t 0.380552 -s 2 -d 7 -p ack -e 40 -i 202 -a 10 h -t 0.380552 -s 2 -d 7 -p ack -e 40 -i 202 -a 10 r -t 0.380904 -s 7 -d 6 -p ack -e 40 -i 179 -a 10 + -t 0.380904 -s 6 -d 1 -p ack -e 40 -i 179 -a 10 - -t 0.380904 -s 6 -d 1 -p ack -e 40 -i 179 -a 10 h -t 0.380904 -s 6 -d 1 -p ack -e 40 -i 179 -a 10 r -t 0.381597 -s 4 -d 10 -p ack -e 40 -i 199 -a 21 + -t 0.381597 -s 9 -d 8 -p ack -e 40 -i 199 -a 21 - -t 0.381597 -s 9 -d 8 -p ack -e 40 -i 199 -a 21 h -t 0.381597 -s 9 -d 8 -p ack -e 40 -i 199 -a 21 r -t 0.381976 -s 3 -d 8 -p tcp -e 1000 -i 200 -a 20 + -t 0.381976 -s 8 -d 9 -p tcp -e 1000 -i 200 -a 20 r -t 0.382776 -s 3 -d 8 -p tcp -e 1000 -i 201 -a 20 + -t 0.382776 -s 8 -d 9 -p tcp -e 1000 -i 201 -a 20 d -t 0.382776 -s 8 -d 9 -p tcp -e 1000 -i 201 -a 20 r -t 0.382899 -s 9 -d 10 -p tcp -e 1000 -i 129 -a 21 + -t 0.382899 -s 4 -d 10 -p ack -e 40 -i 203 -a 21 - -t 0.382899 -s 4 -d 10 -p ack -e 40 -i 203 -a 21 h -t 0.382899 -s 4 -d 10 -p ack -e 40 -i 203 -a 21 r -t 0.383432 -s 8 -d 9 -p tcp -e 1000 -i 135 -a 21 + -t 0.383432 -s 9 -d 10 -p tcp -e 1000 -i 135 -a 21 - -t 0.383432 -s 9 -d 10 -p tcp -e 1000 -i 135 -a 21 h -t 0.383432 -s 9 -d 10 -p tcp -e 1000 -i 135 -a 21 r -t 0.383509 -s 8 -d 3 -p ack -e 40 -i 178 -a 22 + -t 0.383509 -s 3 -d 8 -p tcp -e 1000 -i 204 -a 22 - -t 0.383509 -s 3 -d 8 -p tcp -e 1000 -i 204 -a 22 h -t 0.383509 -s 3 -d 8 -p tcp -e 1000 -i 204 -a 22 + -t 0.383509 -s 3 -d 8 -p tcp -e 1000 -i 205 -a 22 r -t 0.383752 -s 6 -d 7 -p tcp -e 1000 -i 106 -a 12 + -t 0.383752 -s 7 -d 2 -p tcp -e 1000 -i 106 -a 12 - -t 0.383752 -s 7 -d 2 -p tcp -e 1000 -i 106 -a 12 h -t 0.383752 -s 7 -d 2 -p tcp -e 1000 -i 106 -a 12 r -t 0.383936 -s 6 -d 1 -p ack -e 40 -i 179 -a 10 + -t 0.383936 -s 1 -d 6 -p tcp -e 1000 -i 206 -a 10 - -t 0.383936 -s 1 -d 6 -p tcp -e 1000 -i 206 -a 10 h -t 0.383936 -s 1 -d 6 -p tcp -e 1000 -i 206 -a 10 + -t 0.383936 -s 1 -d 6 -p tcp -e 1000 -i 207 -a 10 - -t 0.384309 -s 3 -d 8 -p tcp -e 1000 -i 205 -a 22 h -t 0.384309 -s 3 -d 8 -p tcp -e 1000 -i 205 -a 22 r -t 0.384584 -s 2 -d 7 -p ack -e 40 -i 202 -a 10 + -t 0.384584 -s 7 -d 6 -p ack -e 40 -i 202 -a 10 - -t 0.384584 -s 7 -d 6 -p ack -e 40 -i 202 -a 10 h -t 0.384584 -s 7 -d 6 -p ack -e 40 -i 202 -a 10 - -t 0.384736 -s 1 -d 6 -p tcp -e 1000 -i 207 -a 10 h -t 0.384736 -s 1 -d 6 -p tcp -e 1000 -i 207 -a 10 - -t 0.384765 -s 8 -d 9 -p tcp -e 1000 -i 159 -a 20 h -t 0.384765 -s 8 -d 9 -p tcp -e 1000 -i 159 -a 20 r -t 0.38581 -s 9 -d 8 -p ack -e 40 -i 184 -a 20 + -t 0.385811 -s 8 -d 3 -p ack -e 40 -i 184 -a 20 - -t 0.385811 -s 8 -d 3 -p ack -e 40 -i 184 -a 20 h -t 0.385811 -s 8 -d 3 -p ack -e 40 -i 184 -a 20 r -t 0.386931 -s 4 -d 10 -p ack -e 40 -i 203 -a 21 + -t 0.386931 -s 9 -d 8 -p ack -e 40 -i 203 -a 21 - -t 0.386931 -s 9 -d 8 -p ack -e 40 -i 203 -a 21 h -t 0.386931 -s 9 -d 8 -p ack -e 40 -i 203 -a 21 r -t 0.387309 -s 3 -d 8 -p tcp -e 1000 -i 204 -a 22 + -t 0.387309 -s 8 -d 9 -p tcp -e 1000 -i 204 -a 22 r -t 0.387736 -s 1 -d 6 -p tcp -e 1000 -i 206 -a 10 + -t 0.387736 -s 6 -d 7 -p tcp -e 1000 -i 206 -a 10 d -t 0.387736 -s 6 -d 7 -p tcp -e 1000 -i 206 -a 10 - -t 0.387752 -s 6 -d 7 -p tcp -e 1000 -i 146 -a 11 h -t 0.387752 -s 6 -d 7 -p tcp -e 1000 -i 146 -a 11 r -t 0.388109 -s 3 -d 8 -p tcp -e 1000 -i 205 -a 22 + -t 0.388109 -s 8 -d 9 -p tcp -e 1000 -i 205 -a 22 d -t 0.388109 -s 8 -d 9 -p tcp -e 1000 -i 205 -a 22 r -t 0.388232 -s 9 -d 10 -p tcp -e 1000 -i 135 -a 21 + -t 0.388232 -s 4 -d 10 -p ack -e 40 -i 208 -a 21 - -t 0.388232 -s 4 -d 10 -p ack -e 40 -i 208 -a 21 h -t 0.388232 -s 4 -d 10 -p ack -e 40 -i 208 -a 21 r -t 0.388536 -s 1 -d 6 -p tcp -e 1000 -i 207 -a 10 + -t 0.388536 -s 6 -d 7 -p tcp -e 1000 -i 207 -a 10 r -t 0.388552 -s 7 -d 2 -p tcp -e 1000 -i 106 -a 12 + -t 0.388552 -s 2 -d 7 -p ack -e 40 -i 209 -a 12 - -t 0.388552 -s 2 -d 7 -p ack -e 40 -i 209 -a 12 h -t 0.388552 -s 2 -d 7 -p ack -e 40 -i 209 -a 12 r -t 0.388765 -s 8 -d 9 -p tcp -e 1000 -i 140 -a 20 + -t 0.388765 -s 9 -d 10 -p tcp -e 1000 -i 140 -a 20 - -t 0.388765 -s 9 -d 10 -p tcp -e 1000 -i 140 -a 20 h -t 0.388765 -s 9 -d 10 -p tcp -e 1000 -i 140 -a 20 r -t 0.388843 -s 8 -d 3 -p ack -e 40 -i 184 -a 20 + -t 0.388843 -s 3 -d 8 -p tcp -e 1000 -i 210 -a 20 - -t 0.388843 -s 3 -d 8 -p tcp -e 1000 -i 210 -a 20 h -t 0.388843 -s 3 -d 8 -p tcp -e 1000 -i 210 -a 20 + -t 0.388843 -s 3 -d 8 -p tcp -e 1000 -i 211 -a 20 r -t 0.388904 -s 7 -d 6 -p ack -e 40 -i 187 -a 10 + -t 0.388904 -s 6 -d 1 -p ack -e 40 -i 187 -a 10 - -t 0.388904 -s 6 -d 1 -p ack -e 40 -i 187 -a 10 h -t 0.388904 -s 6 -d 1 -p ack -e 40 -i 187 -a 10 - -t 0.389643 -s 3 -d 8 -p tcp -e 1000 -i 211 -a 20 h -t 0.389643 -s 3 -d 8 -p tcp -e 1000 -i 211 -a 20 - -t 0.390099 -s 8 -d 9 -p tcp -e 1000 -i 165 -a 20 h -t 0.390099 -s 8 -d 9 -p tcp -e 1000 -i 165 -a 20 r -t 0.391144 -s 9 -d 8 -p ack -e 40 -i 188 -a 20 + -t 0.391144 -s 8 -d 3 -p ack -e 40 -i 188 -a 20 - -t 0.391144 -s 8 -d 3 -p ack -e 40 -i 188 -a 20 h -t 0.391144 -s 8 -d 3 -p ack -e 40 -i 188 -a 20 r -t 0.391752 -s 6 -d 7 -p tcp -e 1000 -i 115 -a 10 + -t 0.391752 -s 7 -d 2 -p tcp -e 1000 -i 115 -a 10 - -t 0.391752 -s 7 -d 2 -p tcp -e 1000 -i 115 -a 10 h -t 0.391752 -s 7 -d 2 -p tcp -e 1000 -i 115 -a 10 r -t 0.391936 -s 6 -d 1 -p ack -e 40 -i 187 -a 10 + -t 0.391936 -s 1 -d 6 -p tcp -e 1000 -i 212 -a 10 - -t 0.391936 -s 1 -d 6 -p tcp -e 1000 -i 212 -a 10 h -t 0.391936 -s 1 -d 6 -p tcp -e 1000 -i 212 -a 10 + -t 0.391936 -s 1 -d 6 -p tcp -e 1000 -i 213 -a 10 r -t 0.392264 -s 4 -d 10 -p ack -e 40 -i 208 -a 21 + -t 0.392264 -s 9 -d 8 -p ack -e 40 -i 208 -a 21 - -t 0.392264 -s 9 -d 8 -p ack -e 40 -i 208 -a 21 h -t 0.392264 -s 9 -d 8 -p ack -e 40 -i 208 -a 21 r -t 0.392584 -s 2 -d 7 -p ack -e 40 -i 209 -a 12 + -t 0.392584 -s 7 -d 6 -p ack -e 40 -i 209 -a 12 - -t 0.392584 -s 7 -d 6 -p ack -e 40 -i 209 -a 12 h -t 0.392584 -s 7 -d 6 -p ack -e 40 -i 209 -a 12 r -t 0.392643 -s 3 -d 8 -p tcp -e 1000 -i 210 -a 20 + -t 0.392643 -s 8 -d 9 -p tcp -e 1000 -i 210 -a 20 - -t 0.392736 -s 1 -d 6 -p tcp -e 1000 -i 213 -a 10 h -t 0.392736 -s 1 -d 6 -p tcp -e 1000 -i 213 -a 10 r -t 0.393443 -s 3 -d 8 -p tcp -e 1000 -i 211 -a 20 + -t 0.393443 -s 8 -d 9 -p tcp -e 1000 -i 211 -a 20 d -t 0.393443 -s 8 -d 9 -p tcp -e 1000 -i 211 -a 20 r -t 0.393565 -s 9 -d 10 -p tcp -e 1000 -i 140 -a 20 + -t 0.393565 -s 4 -d 10 -p ack -e 40 -i 214 -a 20 - -t 0.393565 -s 4 -d 10 -p ack -e 40 -i 214 -a 20 h -t 0.393565 -s 4 -d 10 -p ack -e 40 -i 214 -a 20 r -t 0.394098 -s 8 -d 9 -p tcp -e 1000 -i 144 -a 20 + -t 0.394099 -s 9 -d 10 -p tcp -e 1000 -i 144 -a 20 - -t 0.394099 -s 9 -d 10 -p tcp -e 1000 -i 144 -a 20 h -t 0.394099 -s 9 -d 10 -p tcp -e 1000 -i 144 -a 20 r -t 0.394176 -s 8 -d 3 -p ack -e 40 -i 188 -a 20 + -t 0.394176 -s 3 -d 8 -p tcp -e 1000 -i 215 -a 20 - -t 0.394176 -s 3 -d 8 -p tcp -e 1000 -i 215 -a 20 h -t 0.394176 -s 3 -d 8 -p tcp -e 1000 -i 215 -a 20 + -t 0.394176 -s 3 -d 8 -p tcp -e 1000 -i 216 -a 20 - -t 0.394976 -s 3 -d 8 -p tcp -e 1000 -i 216 -a 20 h -t 0.394976 -s 3 -d 8 -p tcp -e 1000 -i 216 -a 20 - -t 0.395432 -s 8 -d 9 -p tcp -e 1000 -i 170 -a 20 h -t 0.395432 -s 8 -d 9 -p tcp -e 1000 -i 170 -a 20 r -t 0.395736 -s 1 -d 6 -p tcp -e 1000 -i 212 -a 10 + -t 0.395736 -s 6 -d 7 -p tcp -e 1000 -i 212 -a 10 d -t 0.395736 -s 6 -d 7 -p tcp -e 1000 -i 212 -a 10 - -t 0.395752 -s 6 -d 7 -p tcp -e 1000 -i 152 -a 10 h -t 0.395752 -s 6 -d 7 -p tcp -e 1000 -i 152 -a 10 r -t 0.396477 -s 9 -d 8 -p ack -e 40 -i 193 -a 21 + -t 0.396477 -s 8 -d 3 -p ack -e 40 -i 193 -a 21 - -t 0.396477 -s 8 -d 3 -p ack -e 40 -i 193 -a 21 h -t 0.396477 -s 8 -d 3 -p ack -e 40 -i 193 -a 21 r -t 0.396536 -s 1 -d 6 -p tcp -e 1000 -i 213 -a 10 + -t 0.396536 -s 6 -d 7 -p tcp -e 1000 -i 213 -a 10 r -t 0.396552 -s 7 -d 2 -p tcp -e 1000 -i 115 -a 10 + -t 0.396552 -s 2 -d 7 -p ack -e 40 -i 217 -a 10 - -t 0.396552 -s 2 -d 7 -p ack -e 40 -i 217 -a 10 h -t 0.396552 -s 2 -d 7 -p ack -e 40 -i 217 -a 10 r -t 0.396904 -s 7 -d 6 -p ack -e 40 -i 194 -a 12 + -t 0.396904 -s 6 -d 1 -p ack -e 40 -i 194 -a 12 - -t 0.396904 -s 6 -d 1 -p ack -e 40 -i 194 -a 12 h -t 0.396904 -s 6 -d 1 -p ack -e 40 -i 194 -a 12 r -t 0.397597 -s 4 -d 10 -p ack -e 40 -i 214 -a 20 + -t 0.397597 -s 9 -d 8 -p ack -e 40 -i 214 -a 20 - -t 0.397597 -s 9 -d 8 -p ack -e 40 -i 214 -a 20 h -t 0.397597 -s 9 -d 8 -p ack -e 40 -i 214 -a 20 r -t 0.397976 -s 3 -d 8 -p tcp -e 1000 -i 215 -a 20 + -t 0.397976 -s 8 -d 9 -p tcp -e 1000 -i 215 -a 20 r -t 0.398776 -s 3 -d 8 -p tcp -e 1000 -i 216 -a 20 + -t 0.398776 -s 8 -d 9 -p tcp -e 1000 -i 216 -a 20 d -t 0.398776 -s 8 -d 9 -p tcp -e 1000 -i 216 -a 20 r -t 0.398899 -s 9 -d 10 -p tcp -e 1000 -i 144 -a 20 + -t 0.398899 -s 4 -d 10 -p ack -e 40 -i 218 -a 20 - -t 0.398899 -s 4 -d 10 -p ack -e 40 -i 218 -a 20 h -t 0.398899 -s 4 -d 10 -p ack -e 40 -i 218 -a 20 r -t 0.399432 -s 8 -d 9 -p tcp -e 1000 -i 150 -a 20 + -t 0.399432 -s 9 -d 10 -p tcp -e 1000 -i 150 -a 20 - -t 0.399432 -s 9 -d 10 -p tcp -e 1000 -i 150 -a 20 h -t 0.399432 -s 9 -d 10 -p tcp -e 1000 -i 150 -a 20 r -t 0.399509 -s 8 -d 3 -p ack -e 40 -i 193 -a 21 + -t 0.399509 -s 3 -d 8 -p tcp -e 1000 -i 219 -a 21 - -t 0.399509 -s 3 -d 8 -p tcp -e 1000 -i 219 -a 21 h -t 0.399509 -s 3 -d 8 -p tcp -e 1000 -i 219 -a 21 + -t 0.399509 -s 3 -d 8 -p tcp -e 1000 -i 220 -a 21 r -t 0.399752 -s 6 -d 7 -p tcp -e 1000 -i 125 -a 13 + -t 0.399752 -s 7 -d 2 -p tcp -e 1000 -i 125 -a 13 - -t 0.399752 -s 7 -d 2 -p tcp -e 1000 -i 125 -a 13 h -t 0.399752 -s 7 -d 2 -p tcp -e 1000 -i 125 -a 13 r -t 0.399936 -s 6 -d 1 -p ack -e 40 -i 194 -a 12 + -t 0.399936 -s 1 -d 6 -p tcp -e 1000 -i 221 -a 12 - -t 0.399936 -s 1 -d 6 -p tcp -e 1000 -i 221 -a 12 h -t 0.399936 -s 1 -d 6 -p tcp -e 1000 -i 221 -a 12 + -t 0.399936 -s 1 -d 6 -p tcp -e 1000 -i 222 -a 12 + -t 0.4 -s 1 -d 6 -p tcp -e 1000 -i 223 -a 14 + -t 0.4 -s 3 -d 8 -p tcp -e 1000 -i 224 -a 24 - -t 0.400309 -s 3 -d 8 -p tcp -e 1000 -i 220 -a 21 h -t 0.400309 -s 3 -d 8 -p tcp -e 1000 -i 220 -a 21 r -t 0.400584 -s 2 -d 7 -p ack -e 40 -i 217 -a 10 + -t 0.400584 -s 7 -d 6 -p ack -e 40 -i 217 -a 10 - -t 0.400584 -s 7 -d 6 -p ack -e 40 -i 217 -a 10 h -t 0.400584 -s 7 -d 6 -p ack -e 40 -i 217 -a 10 - -t 0.400736 -s 1 -d 6 -p tcp -e 1000 -i 222 -a 12 h -t 0.400736 -s 1 -d 6 -p tcp -e 1000 -i 222 -a 12 - -t 0.400765 -s 8 -d 9 -p tcp -e 1000 -i 174 -a 20 h -t 0.400765 -s 8 -d 9 -p tcp -e 1000 -i 174 -a 20 - -t 0.401109 -s 3 -d 8 -p tcp -e 1000 -i 224 -a 24 h -t 0.401109 -s 3 -d 8 -p tcp -e 1000 -i 224 -a 24 - -t 0.401536 -s 1 -d 6 -p tcp -e 1000 -i 223 -a 14 h -t 0.401536 -s 1 -d 6 -p tcp -e 1000 -i 223 -a 14 r -t 0.40181 -s 9 -d 8 -p ack -e 40 -i 199 -a 21 + -t 0.401811 -s 8 -d 3 -p ack -e 40 -i 199 -a 21 - -t 0.401811 -s 8 -d 3 -p ack -e 40 -i 199 -a 21 h -t 0.401811 -s 8 -d 3 -p ack -e 40 -i 199 -a 21 r -t 0.402931 -s 4 -d 10 -p ack -e 40 -i 218 -a 20 + -t 0.402931 -s 9 -d 8 -p ack -e 40 -i 218 -a 20 - -t 0.402931 -s 9 -d 8 -p ack -e 40 -i 218 -a 20 h -t 0.402931 -s 9 -d 8 -p ack -e 40 -i 218 -a 20 r -t 0.403309 -s 3 -d 8 -p tcp -e 1000 -i 219 -a 21 + -t 0.403309 -s 8 -d 9 -p tcp -e 1000 -i 219 -a 21 r -t 0.403736 -s 1 -d 6 -p tcp -e 1000 -i 221 -a 12 + -t 0.403736 -s 6 -d 7 -p tcp -e 1000 -i 221 -a 12 d -t 0.403736 -s 6 -d 7 -p tcp -e 1000 -i 213 -a 10 - -t 0.403752 -s 6 -d 7 -p tcp -e 1000 -i 161 -a 11 h -t 0.403752 -s 6 -d 7 -p tcp -e 1000 -i 161 -a 11 r -t 0.404109 -s 3 -d 8 -p tcp -e 1000 -i 220 -a 21 + -t 0.404109 -s 8 -d 9 -p tcp -e 1000 -i 220 -a 21 d -t 0.404109 -s 8 -d 9 -p tcp -e 1000 -i 220 -a 21 r -t 0.404232 -s 9 -d 10 -p tcp -e 1000 -i 150 -a 20 + -t 0.404232 -s 4 -d 10 -p ack -e 40 -i 225 -a 20 - -t 0.404232 -s 4 -d 10 -p ack -e 40 -i 225 -a 20 h -t 0.404232 -s 4 -d 10 -p ack -e 40 -i 225 -a 20 r -t 0.404536 -s 1 -d 6 -p tcp -e 1000 -i 222 -a 12 + -t 0.404536 -s 6 -d 7 -p tcp -e 1000 -i 222 -a 12 r -t 0.404552 -s 7 -d 2 -p tcp -e 1000 -i 125 -a 13 + -t 0.404552 -s 2 -d 7 -p ack -e 40 -i 226 -a 13 - -t 0.404552 -s 2 -d 7 -p ack -e 40 -i 226 -a 13 h -t 0.404552 -s 2 -d 7 -p ack -e 40 -i 226 -a 13 r -t 0.404765 -s 8 -d 9 -p tcp -e 1000 -i 155 -a 20 + -t 0.404765 -s 9 -d 10 -p tcp -e 1000 -i 155 -a 20 - -t 0.404765 -s 9 -d 10 -p tcp -e 1000 -i 155 -a 20 h -t 0.404765 -s 9 -d 10 -p tcp -e 1000 -i 155 -a 20 r -t 0.404843 -s 8 -d 3 -p ack -e 40 -i 199 -a 21 r -t 0.404904 -s 7 -d 6 -p ack -e 40 -i 202 -a 10 + -t 0.404904 -s 6 -d 1 -p ack -e 40 -i 202 -a 10 - -t 0.404904 -s 6 -d 1 -p ack -e 40 -i 202 -a 10 h -t 0.404904 -s 6 -d 1 -p ack -e 40 -i 202 -a 10 r -t 0.404909 -s 3 -d 8 -p tcp -e 1000 -i 224 -a 24 + -t 0.404909 -s 8 -d 9 -p tcp -e 1000 -i 224 -a 24 d -t 0.404909 -s 8 -d 9 -p tcp -e 1000 -i 224 -a 24 r -t 0.405336 -s 1 -d 6 -p tcp -e 1000 -i 223 -a 14 + -t 0.405336 -s 6 -d 7 -p tcp -e 1000 -i 223 -a 14 d -t 0.405336 -s 6 -d 7 -p tcp -e 1000 -i 222 -a 12 - -t 0.406099 -s 8 -d 9 -p tcp -e 1000 -i 180 -a 20 h -t 0.406099 -s 8 -d 9 -p tcp -e 1000 -i 180 -a 20 r -t 0.407144 -s 9 -d 8 -p ack -e 40 -i 203 -a 21 + -t 0.407144 -s 8 -d 3 -p ack -e 40 -i 203 -a 21 - -t 0.407144 -s 8 -d 3 -p ack -e 40 -i 203 -a 21 h -t 0.407144 -s 8 -d 3 -p ack -e 40 -i 203 -a 21 r -t 0.407752 -s 6 -d 7 -p tcp -e 1000 -i 132 -a 10 + -t 0.407752 -s 7 -d 2 -p tcp -e 1000 -i 132 -a 10 - -t 0.407752 -s 7 -d 2 -p tcp -e 1000 -i 132 -a 10 h -t 0.407752 -s 7 -d 2 -p tcp -e 1000 -i 132 -a 10 r -t 0.407936 -s 6 -d 1 -p ack -e 40 -i 202 -a 10 + -t 0.407936 -s 1 -d 6 -p tcp -e 1000 -i 227 -a 10 - -t 0.407936 -s 1 -d 6 -p tcp -e 1000 -i 227 -a 10 h -t 0.407936 -s 1 -d 6 -p tcp -e 1000 -i 227 -a 10 + -t 0.407936 -s 1 -d 6 -p tcp -e 1000 -i 228 -a 10 r -t 0.408264 -s 4 -d 10 -p ack -e 40 -i 225 -a 20 + -t 0.408264 -s 9 -d 8 -p ack -e 40 -i 225 -a 20 - -t 0.408264 -s 9 -d 8 -p ack -e 40 -i 225 -a 20 h -t 0.408264 -s 9 -d 8 -p ack -e 40 -i 225 -a 20 r -t 0.408584 -s 2 -d 7 -p ack -e 40 -i 226 -a 13 + -t 0.408584 -s 7 -d 6 -p ack -e 40 -i 226 -a 13 - -t 0.408584 -s 7 -d 6 -p ack -e 40 -i 226 -a 13 h -t 0.408584 -s 7 -d 6 -p ack -e 40 -i 226 -a 13 - -t 0.408736 -s 1 -d 6 -p tcp -e 1000 -i 228 -a 10 h -t 0.408736 -s 1 -d 6 -p tcp -e 1000 -i 228 -a 10 r -t 0.409565 -s 9 -d 10 -p tcp -e 1000 -i 155 -a 20 + -t 0.409565 -s 4 -d 10 -p ack -e 40 -i 229 -a 20 - -t 0.409565 -s 4 -d 10 -p ack -e 40 -i 229 -a 20 h -t 0.409565 -s 4 -d 10 -p ack -e 40 -i 229 -a 20 r -t 0.410098 -s 8 -d 9 -p tcp -e 1000 -i 159 -a 20 + -t 0.410099 -s 9 -d 10 -p tcp -e 1000 -i 159 -a 20 - -t 0.410099 -s 9 -d 10 -p tcp -e 1000 -i 159 -a 20 h -t 0.410099 -s 9 -d 10 -p tcp -e 1000 -i 159 -a 20 r -t 0.410176 -s 8 -d 3 -p ack -e 40 -i 203 -a 21 - -t 0.411432 -s 8 -d 9 -p tcp -e 1000 -i 185 -a 20 h -t 0.411432 -s 8 -d 9 -p tcp -e 1000 -i 185 -a 20 r -t 0.411736 -s 1 -d 6 -p tcp -e 1000 -i 227 -a 10 + -t 0.411736 -s 6 -d 7 -p tcp -e 1000 -i 227 -a 10 d -t 0.411736 -s 6 -d 7 -p tcp -e 1000 -i 227 -a 10 - -t 0.411752 -s 6 -d 7 -p tcp -e 1000 -i 162 -a 11 h -t 0.411752 -s 6 -d 7 -p tcp -e 1000 -i 162 -a 11 r -t 0.412477 -s 9 -d 8 -p ack -e 40 -i 208 -a 21 + -t 0.412477 -s 8 -d 3 -p ack -e 40 -i 208 -a 21 - -t 0.412477 -s 8 -d 3 -p ack -e 40 -i 208 -a 21 h -t 0.412477 -s 8 -d 3 -p ack -e 40 -i 208 -a 21 r -t 0.412536 -s 1 -d 6 -p tcp -e 1000 -i 228 -a 10 + -t 0.412536 -s 6 -d 7 -p tcp -e 1000 -i 228 -a 10 r -t 0.412552 -s 7 -d 2 -p tcp -e 1000 -i 132 -a 10 + -t 0.412552 -s 2 -d 7 -p ack -e 40 -i 230 -a 10 - -t 0.412552 -s 2 -d 7 -p ack -e 40 -i 230 -a 10 h -t 0.412552 -s 2 -d 7 -p ack -e 40 -i 230 -a 10 r -t 0.412904 -s 7 -d 6 -p ack -e 40 -i 209 -a 12 + -t 0.412904 -s 6 -d 1 -p ack -e 40 -i 209 -a 12 - -t 0.412904 -s 6 -d 1 -p ack -e 40 -i 209 -a 12 h -t 0.412904 -s 6 -d 1 -p ack -e 40 -i 209 -a 12 r -t 0.413597 -s 4 -d 10 -p ack -e 40 -i 229 -a 20 + -t 0.413597 -s 9 -d 8 -p ack -e 40 -i 229 -a 20 - -t 0.413597 -s 9 -d 8 -p ack -e 40 -i 229 -a 20 h -t 0.413597 -s 9 -d 8 -p ack -e 40 -i 229 -a 20 r -t 0.414899 -s 9 -d 10 -p tcp -e 1000 -i 159 -a 20 + -t 0.414899 -s 4 -d 10 -p ack -e 40 -i 231 -a 20 - -t 0.414899 -s 4 -d 10 -p ack -e 40 -i 231 -a 20 h -t 0.414899 -s 4 -d 10 -p ack -e 40 -i 231 -a 20 r -t 0.415432 -s 8 -d 9 -p tcp -e 1000 -i 165 -a 20 + -t 0.415432 -s 9 -d 10 -p tcp -e 1000 -i 165 -a 20 - -t 0.415432 -s 9 -d 10 -p tcp -e 1000 -i 165 -a 20 h -t 0.415432 -s 9 -d 10 -p tcp -e 1000 -i 165 -a 20 r -t 0.415509 -s 8 -d 3 -p ack -e 40 -i 208 -a 21 + -t 0.415509 -s 3 -d 8 -p tcp -e 1000 -i 232 -a 21 - -t 0.415509 -s 3 -d 8 -p tcp -e 1000 -i 232 -a 21 h -t 0.415509 -s 3 -d 8 -p tcp -e 1000 -i 232 -a 21 r -t 0.415752 -s 6 -d 7 -p tcp -e 1000 -i 146 -a 11 + -t 0.415752 -s 7 -d 2 -p tcp -e 1000 -i 146 -a 11 - -t 0.415752 -s 7 -d 2 -p tcp -e 1000 -i 146 -a 11 h -t 0.415752 -s 7 -d 2 -p tcp -e 1000 -i 146 -a 11 r -t 0.415936 -s 6 -d 1 -p ack -e 40 -i 209 -a 12 + -t 0.415936 -s 1 -d 6 -p tcp -e 1000 -i 233 -a 12 - -t 0.415936 -s 1 -d 6 -p tcp -e 1000 -i 233 -a 12 h -t 0.415936 -s 1 -d 6 -p tcp -e 1000 -i 233 -a 12 + -t 0.415936 -s 1 -d 6 -p tcp -e 1000 -i 234 -a 12 r -t 0.416584 -s 2 -d 7 -p ack -e 40 -i 230 -a 10 + -t 0.416584 -s 7 -d 6 -p ack -e 40 -i 230 -a 10 - -t 0.416584 -s 7 -d 6 -p ack -e 40 -i 230 -a 10 h -t 0.416584 -s 7 -d 6 -p ack -e 40 -i 230 -a 10 - -t 0.416736 -s 1 -d 6 -p tcp -e 1000 -i 234 -a 12 h -t 0.416736 -s 1 -d 6 -p tcp -e 1000 -i 234 -a 12 - -t 0.416765 -s 8 -d 9 -p tcp -e 1000 -i 189 -a 20 h -t 0.416765 -s 8 -d 9 -p tcp -e 1000 -i 189 -a 20 r -t 0.41781 -s 9 -d 8 -p ack -e 40 -i 214 -a 20 + -t 0.417811 -s 8 -d 3 -p ack -e 40 -i 214 -a 20 - -t 0.417811 -s 8 -d 3 -p ack -e 40 -i 214 -a 20 h -t 0.417811 -s 8 -d 3 -p ack -e 40 -i 214 -a 20 r -t 0.418931 -s 4 -d 10 -p ack -e 40 -i 231 -a 20 + -t 0.418931 -s 9 -d 8 -p ack -e 40 -i 231 -a 20 - -t 0.418931 -s 9 -d 8 -p ack -e 40 -i 231 -a 20 h -t 0.418931 -s 9 -d 8 -p ack -e 40 -i 231 -a 20 r -t 0.419309 -s 3 -d 8 -p tcp -e 1000 -i 232 -a 21 + -t 0.419309 -s 8 -d 9 -p tcp -e 1000 -i 232 -a 21 r -t 0.419736 -s 1 -d 6 -p tcp -e 1000 -i 233 -a 12 + -t 0.419736 -s 6 -d 7 -p tcp -e 1000 -i 233 -a 12 d -t 0.419736 -s 6 -d 7 -p tcp -e 1000 -i 233 -a 12 - -t 0.419752 -s 6 -d 7 -p tcp -e 1000 -i 176 -a 10 h -t 0.419752 -s 6 -d 7 -p tcp -e 1000 -i 176 -a 10 r -t 0.420232 -s 9 -d 10 -p tcp -e 1000 -i 165 -a 20 + -t 0.420232 -s 4 -d 10 -p ack -e 40 -i 235 -a 20 - -t 0.420232 -s 4 -d 10 -p ack -e 40 -i 235 -a 20 h -t 0.420232 -s 4 -d 10 -p ack -e 40 -i 235 -a 20 r -t 0.420536 -s 1 -d 6 -p tcp -e 1000 -i 234 -a 12 + -t 0.420536 -s 6 -d 7 -p tcp -e 1000 -i 234 -a 12 r -t 0.420552 -s 7 -d 2 -p tcp -e 1000 -i 146 -a 11 + -t 0.420552 -s 2 -d 7 -p ack -e 40 -i 236 -a 11 - -t 0.420552 -s 2 -d 7 -p ack -e 40 -i 236 -a 11 h -t 0.420552 -s 2 -d 7 -p ack -e 40 -i 236 -a 11 r -t 0.420765 -s 8 -d 9 -p tcp -e 1000 -i 170 -a 20 + -t 0.420765 -s 9 -d 10 -p tcp -e 1000 -i 170 -a 20 - -t 0.420765 -s 9 -d 10 -p tcp -e 1000 -i 170 -a 20 h -t 0.420765 -s 9 -d 10 -p tcp -e 1000 -i 170 -a 20 r -t 0.420843 -s 8 -d 3 -p ack -e 40 -i 214 -a 20 r -t 0.420904 -s 7 -d 6 -p ack -e 40 -i 217 -a 10 + -t 0.420904 -s 6 -d 1 -p ack -e 40 -i 217 -a 10 - -t 0.420904 -s 6 -d 1 -p ack -e 40 -i 217 -a 10 h -t 0.420904 -s 6 -d 1 -p ack -e 40 -i 217 -a 10 - -t 0.422099 -s 8 -d 9 -p tcp -e 1000 -i 195 -a 20 h -t 0.422099 -s 8 -d 9 -p tcp -e 1000 -i 195 -a 20 r -t 0.423144 -s 9 -d 8 -p ack -e 40 -i 218 -a 20 + -t 0.423144 -s 8 -d 3 -p ack -e 40 -i 218 -a 20 - -t 0.423144 -s 8 -d 3 -p ack -e 40 -i 218 -a 20 h -t 0.423144 -s 8 -d 3 -p ack -e 40 -i 218 -a 20 r -t 0.423752 -s 6 -d 7 -p tcp -e 1000 -i 152 -a 10 + -t 0.423752 -s 7 -d 2 -p tcp -e 1000 -i 152 -a 10 - -t 0.423752 -s 7 -d 2 -p tcp -e 1000 -i 152 -a 10 h -t 0.423752 -s 7 -d 2 -p tcp -e 1000 -i 152 -a 10 r -t 0.424264 -s 4 -d 10 -p ack -e 40 -i 235 -a 20 r -t 0.423936 -s 6 -d 1 -p ack -e 40 -i 217 -a 10 + -t 0.424264 -s 9 -d 8 -p ack -e 40 -i 235 -a 20 - -t 0.424264 -s 9 -d 8 -p ack -e 40 -i 235 -a 20 h -t 0.424264 -s 9 -d 8 -p ack -e 40 -i 235 -a 20 r -t 0.424584 -s 2 -d 7 -p ack -e 40 -i 236 -a 11 + -t 0.424584 -s 7 -d 6 -p ack -e 40 -i 236 -a 11 - -t 0.424584 -s 7 -d 6 -p ack -e 40 -i 236 -a 11 h -t 0.424584 -s 7 -d 6 -p ack -e 40 -i 236 -a 11 r -t 0.425565 -s 9 -d 10 -p tcp -e 1000 -i 170 -a 20 + -t 0.425565 -s 4 -d 10 -p ack -e 40 -i 237 -a 20 - -t 0.425565 -s 4 -d 10 -p ack -e 40 -i 237 -a 20 h -t 0.425565 -s 4 -d 10 -p ack -e 40 -i 237 -a 20 r -t 0.426098 -s 8 -d 9 -p tcp -e 1000 -i 174 -a 20 + -t 0.426099 -s 9 -d 10 -p tcp -e 1000 -i 174 -a 20 - -t 0.426099 -s 9 -d 10 -p tcp -e 1000 -i 174 -a 20 h -t 0.426099 -s 9 -d 10 -p tcp -e 1000 -i 174 -a 20 r -t 0.426176 -s 8 -d 3 -p ack -e 40 -i 218 -a 20 - -t 0.427432 -s 8 -d 9 -p tcp -e 1000 -i 200 -a 20 h -t 0.427432 -s 8 -d 9 -p tcp -e 1000 -i 200 -a 20 - -t 0.427752 -s 6 -d 7 -p tcp -e 1000 -i 182 -a 11 h -t 0.427752 -s 6 -d 7 -p tcp -e 1000 -i 182 -a 11 r -t 0.428477 -s 9 -d 8 -p ack -e 40 -i 225 -a 20 + -t 0.428477 -s 8 -d 3 -p ack -e 40 -i 225 -a 20 - -t 0.428477 -s 8 -d 3 -p ack -e 40 -i 225 -a 20 h -t 0.428477 -s 8 -d 3 -p ack -e 40 -i 225 -a 20 r -t 0.428552 -s 7 -d 2 -p tcp -e 1000 -i 152 -a 10 + -t 0.428552 -s 2 -d 7 -p ack -e 40 -i 238 -a 10 - -t 0.428552 -s 2 -d 7 -p ack -e 40 -i 238 -a 10 h -t 0.428552 -s 2 -d 7 -p ack -e 40 -i 238 -a 10 r -t 0.428904 -s 7 -d 6 -p ack -e 40 -i 226 -a 13 + -t 0.428904 -s 6 -d 1 -p ack -e 40 -i 226 -a 13 - -t 0.428904 -s 6 -d 1 -p ack -e 40 -i 226 -a 13 h -t 0.428904 -s 6 -d 1 -p ack -e 40 -i 226 -a 13 r -t 0.429597 -s 4 -d 10 -p ack -e 40 -i 237 -a 20 + -t 0.429597 -s 9 -d 8 -p ack -e 40 -i 237 -a 20 - -t 0.429597 -s 9 -d 8 -p ack -e 40 -i 237 -a 20 h -t 0.429597 -s 9 -d 8 -p ack -e 40 -i 237 -a 20 r -t 0.430899 -s 9 -d 10 -p tcp -e 1000 -i 174 -a 20 + -t 0.430899 -s 4 -d 10 -p ack -e 40 -i 239 -a 20 - -t 0.430899 -s 4 -d 10 -p ack -e 40 -i 239 -a 20 h -t 0.430899 -s 4 -d 10 -p ack -e 40 -i 239 -a 20 r -t 0.431432 -s 8 -d 9 -p tcp -e 1000 -i 180 -a 20 + -t 0.431432 -s 9 -d 10 -p tcp -e 1000 -i 180 -a 20 - -t 0.431432 -s 9 -d 10 -p tcp -e 1000 -i 180 -a 20 h -t 0.431432 -s 9 -d 10 -p tcp -e 1000 -i 180 -a 20 r -t 0.431509 -s 8 -d 3 -p ack -e 40 -i 225 -a 20 + -t 0.431509 -s 3 -d 8 -p tcp -e 1000 -i 240 -a 20 - -t 0.431509 -s 3 -d 8 -p tcp -e 1000 -i 240 -a 20 h -t 0.431509 -s 3 -d 8 -p tcp -e 1000 -i 240 -a 20 r -t 0.431752 -s 6 -d 7 -p tcp -e 1000 -i 161 -a 11 + -t 0.431752 -s 7 -d 2 -p tcp -e 1000 -i 161 -a 11 - -t 0.431752 -s 7 -d 2 -p tcp -e 1000 -i 161 -a 11 h -t 0.431752 -s 7 -d 2 -p tcp -e 1000 -i 161 -a 11 r -t 0.431936 -s 6 -d 1 -p ack -e 40 -i 226 -a 13 + -t 0.431936 -s 1 -d 6 -p tcp -e 1000 -i 241 -a 13 - -t 0.431936 -s 1 -d 6 -p tcp -e 1000 -i 241 -a 13 h -t 0.431936 -s 1 -d 6 -p tcp -e 1000 -i 241 -a 13 + -t 0.431936 -s 1 -d 6 -p tcp -e 1000 -i 242 -a 13 r -t 0.432584 -s 2 -d 7 -p ack -e 40 -i 238 -a 10 + -t 0.432584 -s 7 -d 6 -p ack -e 40 -i 238 -a 10 - -t 0.432584 -s 7 -d 6 -p ack -e 40 -i 238 -a 10 h -t 0.432584 -s 7 -d 6 -p ack -e 40 -i 238 -a 10 - -t 0.432736 -s 1 -d 6 -p tcp -e 1000 -i 242 -a 13 h -t 0.432736 -s 1 -d 6 -p tcp -e 1000 -i 242 -a 13 - -t 0.432765 -s 8 -d 9 -p tcp -e 1000 -i 204 -a 22 h -t 0.432765 -s 8 -d 9 -p tcp -e 1000 -i 204 -a 22 r -t 0.43381 -s 9 -d 8 -p ack -e 40 -i 229 -a 20 + -t 0.433811 -s 8 -d 3 -p ack -e 40 -i 229 -a 20 - -t 0.433811 -s 8 -d 3 -p ack -e 40 -i 229 -a 20 h -t 0.433811 -s 8 -d 3 -p ack -e 40 -i 229 -a 20 r -t 0.434931 -s 4 -d 10 -p ack -e 40 -i 239 -a 20 + -t 0.434931 -s 9 -d 8 -p ack -e 40 -i 239 -a 20 - -t 0.434931 -s 9 -d 8 -p ack -e 40 -i 239 -a 20 h -t 0.434931 -s 9 -d 8 -p ack -e 40 -i 239 -a 20 r -t 0.435309 -s 3 -d 8 -p tcp -e 1000 -i 240 -a 20 + -t 0.435309 -s 8 -d 9 -p tcp -e 1000 -i 240 -a 20 r -t 0.435736 -s 1 -d 6 -p tcp -e 1000 -i 241 -a 13 + -t 0.435736 -s 6 -d 7 -p tcp -e 1000 -i 241 -a 13 - -t 0.435752 -s 6 -d 7 -p tcp -e 1000 -i 191 -a 10 h -t 0.435752 -s 6 -d 7 -p tcp -e 1000 -i 191 -a 10 r -t 0.436232 -s 9 -d 10 -p tcp -e 1000 -i 180 -a 20 + -t 0.436232 -s 4 -d 10 -p ack -e 40 -i 243 -a 20 - -t 0.436232 -s 4 -d 10 -p ack -e 40 -i 243 -a 20 h -t 0.436232 -s 4 -d 10 -p ack -e 40 -i 243 -a 20 r -t 0.436536 -s 1 -d 6 -p tcp -e 1000 -i 242 -a 13 + -t 0.436536 -s 6 -d 7 -p tcp -e 1000 -i 242 -a 13 r -t 0.436552 -s 7 -d 2 -p tcp -e 1000 -i 161 -a 11 + -t 0.436552 -s 2 -d 7 -p ack -e 40 -i 244 -a 11 - -t 0.436552 -s 2 -d 7 -p ack -e 40 -i 244 -a 11 h -t 0.436552 -s 2 -d 7 -p ack -e 40 -i 244 -a 11 r -t 0.436765 -s 8 -d 9 -p tcp -e 1000 -i 185 -a 20 + -t 0.436765 -s 9 -d 10 -p tcp -e 1000 -i 185 -a 20 - -t 0.436765 -s 9 -d 10 -p tcp -e 1000 -i 185 -a 20 h -t 0.436765 -s 9 -d 10 -p tcp -e 1000 -i 185 -a 20 r -t 0.436843 -s 8 -d 3 -p ack -e 40 -i 229 -a 20 r -t 0.436904 -s 7 -d 6 -p ack -e 40 -i 230 -a 10 + -t 0.436904 -s 6 -d 1 -p ack -e 40 -i 230 -a 10 - -t 0.436904 -s 6 -d 1 -p ack -e 40 -i 230 -a 10 h -t 0.436904 -s 6 -d 1 -p ack -e 40 -i 230 -a 10 - -t 0.438099 -s 8 -d 9 -p tcp -e 1000 -i 210 -a 20 h -t 0.438099 -s 8 -d 9 -p tcp -e 1000 -i 210 -a 20 r -t 0.439144 -s 9 -d 8 -p ack -e 40 -i 231 -a 20 + -t 0.439144 -s 8 -d 3 -p ack -e 40 -i 231 -a 20 - -t 0.439144 -s 8 -d 3 -p ack -e 40 -i 231 -a 20 h -t 0.439144 -s 8 -d 3 -p ack -e 40 -i 231 -a 20 r -t 0.439752 -s 6 -d 7 -p tcp -e 1000 -i 162 -a 11 + -t 0.439752 -s 7 -d 2 -p tcp -e 1000 -i 162 -a 11 - -t 0.439752 -s 7 -d 2 -p tcp -e 1000 -i 162 -a 11 h -t 0.439752 -s 7 -d 2 -p tcp -e 1000 -i 162 -a 11 r -t 0.439936 -s 6 -d 1 -p ack -e 40 -i 230 -a 10 r -t 0.440264 -s 4 -d 10 -p ack -e 40 -i 243 -a 20 + -t 0.440264 -s 9 -d 8 -p ack -e 40 -i 243 -a 20 - -t 0.440264 -s 9 -d 8 -p ack -e 40 -i 243 -a 20 h -t 0.440264 -s 9 -d 8 -p ack -e 40 -i 243 -a 20 r -t 0.440584 -s 2 -d 7 -p ack -e 40 -i 244 -a 11 + -t 0.440584 -s 7 -d 6 -p ack -e 40 -i 244 -a 11 - -t 0.440584 -s 7 -d 6 -p ack -e 40 -i 244 -a 11 h -t 0.440584 -s 7 -d 6 -p ack -e 40 -i 244 -a 11 r -t 0.441565 -s 9 -d 10 -p tcp -e 1000 -i 185 -a 20 + -t 0.441565 -s 4 -d 10 -p ack -e 40 -i 245 -a 20 - -t 0.441565 -s 4 -d 10 -p ack -e 40 -i 245 -a 20 h -t 0.441565 -s 4 -d 10 -p ack -e 40 -i 245 -a 20 r -t 0.442098 -s 8 -d 9 -p tcp -e 1000 -i 189 -a 20 + -t 0.442099 -s 9 -d 10 -p tcp -e 1000 -i 189 -a 20 - -t 0.442099 -s 9 -d 10 -p tcp -e 1000 -i 189 -a 20 h -t 0.442099 -s 9 -d 10 -p tcp -e 1000 -i 189 -a 20 r -t 0.442176 -s 8 -d 3 -p ack -e 40 -i 231 -a 20 - -t 0.443432 -s 8 -d 9 -p tcp -e 1000 -i 215 -a 20 h -t 0.443432 -s 8 -d 9 -p tcp -e 1000 -i 215 -a 20 - -t 0.443752 -s 6 -d 7 -p tcp -e 1000 -i 192 -a 10 h -t 0.443752 -s 6 -d 7 -p tcp -e 1000 -i 192 -a 10 r -t 0.444477 -s 9 -d 8 -p ack -e 40 -i 235 -a 20 + -t 0.444477 -s 8 -d 3 -p ack -e 40 -i 235 -a 20 - -t 0.444477 -s 8 -d 3 -p ack -e 40 -i 235 -a 20 h -t 0.444477 -s 8 -d 3 -p ack -e 40 -i 235 -a 20 r -t 0.444552 -s 7 -d 2 -p tcp -e 1000 -i 162 -a 11 + -t 0.444552 -s 2 -d 7 -p ack -e 40 -i 246 -a 11 - -t 0.444552 -s 2 -d 7 -p ack -e 40 -i 246 -a 11 h -t 0.444552 -s 2 -d 7 -p ack -e 40 -i 246 -a 11 r -t 0.444904 -s 7 -d 6 -p ack -e 40 -i 236 -a 11 + -t 0.444904 -s 6 -d 1 -p ack -e 40 -i 236 -a 11 - -t 0.444904 -s 6 -d 1 -p ack -e 40 -i 236 -a 11 h -t 0.444904 -s 6 -d 1 -p ack -e 40 -i 236 -a 11 r -t 0.445597 -s 4 -d 10 -p ack -e 40 -i 245 -a 20 + -t 0.445597 -s 9 -d 8 -p ack -e 40 -i 245 -a 20 - -t 0.445597 -s 9 -d 8 -p ack -e 40 -i 245 -a 20 h -t 0.445597 -s 9 -d 8 -p ack -e 40 -i 245 -a 20 r -t 0.446899 -s 9 -d 10 -p tcp -e 1000 -i 189 -a 20 + -t 0.446899 -s 4 -d 10 -p ack -e 40 -i 247 -a 20 - -t 0.446899 -s 4 -d 10 -p ack -e 40 -i 247 -a 20 h -t 0.446899 -s 4 -d 10 -p ack -e 40 -i 247 -a 20 r -t 0.447432 -s 8 -d 9 -p tcp -e 1000 -i 195 -a 20 + -t 0.447432 -s 9 -d 10 -p tcp -e 1000 -i 195 -a 20 - -t 0.447432 -s 9 -d 10 -p tcp -e 1000 -i 195 -a 20 h -t 0.447432 -s 9 -d 10 -p tcp -e 1000 -i 195 -a 20 r -t 0.447752 -s 6 -d 7 -p tcp -e 1000 -i 176 -a 10 r -t 0.447509 -s 8 -d 3 -p ack -e 40 -i 235 -a 20 + -t 0.447752 -s 7 -d 2 -p tcp -e 1000 -i 176 -a 10 - -t 0.447752 -s 7 -d 2 -p tcp -e 1000 -i 176 -a 10 h -t 0.447752 -s 7 -d 2 -p tcp -e 1000 -i 176 -a 10 r -t 0.447936 -s 6 -d 1 -p ack -e 40 -i 236 -a 11 + -t 0.447936 -s 1 -d 6 -p tcp -e 1000 -i 248 -a 11 - -t 0.447936 -s 1 -d 6 -p tcp -e 1000 -i 248 -a 11 h -t 0.447936 -s 1 -d 6 -p tcp -e 1000 -i 248 -a 11 + -t 0.447936 -s 1 -d 6 -p tcp -e 1000 -i 249 -a 11 r -t 0.448584 -s 2 -d 7 -p ack -e 40 -i 246 -a 11 + -t 0.448584 -s 7 -d 6 -p ack -e 40 -i 246 -a 11 - -t 0.448584 -s 7 -d 6 -p ack -e 40 -i 246 -a 11 h -t 0.448584 -s 7 -d 6 -p ack -e 40 -i 246 -a 11 - -t 0.448736 -s 1 -d 6 -p tcp -e 1000 -i 249 -a 11 h -t 0.448736 -s 1 -d 6 -p tcp -e 1000 -i 249 -a 11 - -t 0.448765 -s 8 -d 9 -p tcp -e 1000 -i 219 -a 21 h -t 0.448765 -s 8 -d 9 -p tcp -e 1000 -i 219 -a 21 r -t 0.44981 -s 9 -d 8 -p ack -e 40 -i 237 -a 20 + -t 0.449811 -s 8 -d 3 -p ack -e 40 -i 237 -a 20 - -t 0.449811 -s 8 -d 3 -p ack -e 40 -i 237 -a 20 h -t 0.449811 -s 8 -d 3 -p ack -e 40 -i 237 -a 20 r -t 0.450931 -s 4 -d 10 -p ack -e 40 -i 247 -a 20 + -t 0.450931 -s 9 -d 8 -p ack -e 40 -i 247 -a 20 - -t 0.450931 -s 9 -d 8 -p ack -e 40 -i 247 -a 20 h -t 0.450931 -s 9 -d 8 -p ack -e 40 -i 247 -a 20 r -t 0.451736 -s 1 -d 6 -p tcp -e 1000 -i 248 -a 11 + -t 0.451736 -s 6 -d 7 -p tcp -e 1000 -i 248 -a 11 - -t 0.451752 -s 6 -d 7 -p tcp -e 1000 -i 198 -a 10 h -t 0.451752 -s 6 -d 7 -p tcp -e 1000 -i 198 -a 10 r -t 0.452232 -s 9 -d 10 -p tcp -e 1000 -i 195 -a 20 + -t 0.452232 -s 4 -d 10 -p ack -e 40 -i 250 -a 20 - -t 0.452232 -s 4 -d 10 -p ack -e 40 -i 250 -a 20 h -t 0.452232 -s 4 -d 10 -p ack -e 40 -i 250 -a 20 r -t 0.452536 -s 1 -d 6 -p tcp -e 1000 -i 249 -a 11 + -t 0.452536 -s 6 -d 7 -p tcp -e 1000 -i 249 -a 11 r -t 0.452552 -s 7 -d 2 -p tcp -e 1000 -i 176 -a 10 + -t 0.452552 -s 2 -d 7 -p ack -e 40 -i 251 -a 10 - -t 0.452552 -s 2 -d 7 -p ack -e 40 -i 251 -a 10 h -t 0.452552 -s 2 -d 7 -p ack -e 40 -i 251 -a 10 r -t 0.452765 -s 8 -d 9 -p tcp -e 1000 -i 200 -a 20 + -t 0.452765 -s 9 -d 10 -p tcp -e 1000 -i 200 -a 20 - -t 0.452765 -s 9 -d 10 -p tcp -e 1000 -i 200 -a 20 h -t 0.452765 -s 9 -d 10 -p tcp -e 1000 -i 200 -a 20 r -t 0.452904 -s 7 -d 6 -p ack -e 40 -i 238 -a 10 r -t 0.452843 -s 8 -d 3 -p ack -e 40 -i 237 -a 20 + -t 0.452904 -s 6 -d 1 -p ack -e 40 -i 238 -a 10 - -t 0.452904 -s 6 -d 1 -p ack -e 40 -i 238 -a 10 h -t 0.452904 -s 6 -d 1 -p ack -e 40 -i 238 -a 10 - -t 0.454099 -s 8 -d 9 -p tcp -e 1000 -i 240 -a 20 h -t 0.454099 -s 8 -d 9 -p tcp -e 1000 -i 240 -a 20 r -t 0.455144 -s 9 -d 8 -p ack -e 40 -i 239 -a 20 + -t 0.455144 -s 8 -d 3 -p ack -e 40 -i 239 -a 20 - -t 0.455144 -s 8 -d 3 -p ack -e 40 -i 239 -a 20 h -t 0.455144 -s 8 -d 3 -p ack -e 40 -i 239 -a 20 r -t 0.455752 -s 6 -d 7 -p tcp -e 1000 -i 182 -a 11 + -t 0.455752 -s 7 -d 2 -p tcp -e 1000 -i 182 -a 11 - -t 0.455752 -s 7 -d 2 -p tcp -e 1000 -i 182 -a 11 h -t 0.455752 -s 7 -d 2 -p tcp -e 1000 -i 182 -a 11 r -t 0.455936 -s 6 -d 1 -p ack -e 40 -i 238 -a 10 + -t 0.455936 -s 1 -d 6 -p tcp -e 1000 -i 252 -a 10 - -t 0.455936 -s 1 -d 6 -p tcp -e 1000 -i 252 -a 10 h -t 0.455936 -s 1 -d 6 -p tcp -e 1000 -i 252 -a 10 r -t 0.456264 -s 4 -d 10 -p ack -e 40 -i 250 -a 20 + -t 0.456264 -s 9 -d 8 -p ack -e 40 -i 250 -a 20 - -t 0.456264 -s 9 -d 8 -p ack -e 40 -i 250 -a 20 h -t 0.456264 -s 9 -d 8 -p ack -e 40 -i 250 -a 20 r -t 0.456584 -s 2 -d 7 -p ack -e 40 -i 251 -a 10 + -t 0.456584 -s 7 -d 6 -p ack -e 40 -i 251 -a 10 - -t 0.456584 -s 7 -d 6 -p ack -e 40 -i 251 -a 10 h -t 0.456584 -s 7 -d 6 -p ack -e 40 -i 251 -a 10 r -t 0.457565 -s 9 -d 10 -p tcp -e 1000 -i 200 -a 20 + -t 0.457565 -s 4 -d 10 -p ack -e 40 -i 253 -a 20 - -t 0.457565 -s 4 -d 10 -p ack -e 40 -i 253 -a 20 h -t 0.457565 -s 4 -d 10 -p ack -e 40 -i 253 -a 20 r -t 0.458098 -s 8 -d 9 -p tcp -e 1000 -i 204 -a 22 + -t 0.458099 -s 9 -d 10 -p tcp -e 1000 -i 204 -a 22 - -t 0.458099 -s 9 -d 10 -p tcp -e 1000 -i 204 -a 22 h -t 0.458099 -s 9 -d 10 -p tcp -e 1000 -i 204 -a 22 r -t 0.458176 -s 8 -d 3 -p ack -e 40 -i 239 -a 20 - -t 0.459432 -s 8 -d 9 -p tcp -e 1000 -i 232 -a 21 h -t 0.459432 -s 8 -d 9 -p tcp -e 1000 -i 232 -a 21 r -t 0.459736 -s 1 -d 6 -p tcp -e 1000 -i 252 -a 10 + -t 0.459736 -s 6 -d 7 -p tcp -e 1000 -i 252 -a 10 d -t 0.459736 -s 6 -d 7 -p tcp -e 1000 -i 252 -a 10 - -t 0.459752 -s 6 -d 7 -p tcp -e 1000 -i 207 -a 10 h -t 0.459752 -s 6 -d 7 -p tcp -e 1000 -i 207 -a 10 r -t 0.460477 -s 9 -d 8 -p ack -e 40 -i 243 -a 20 + -t 0.460477 -s 8 -d 3 -p ack -e 40 -i 243 -a 20 - -t 0.460477 -s 8 -d 3 -p ack -e 40 -i 243 -a 20 h -t 0.460477 -s 8 -d 3 -p ack -e 40 -i 243 -a 20 r -t 0.460552 -s 7 -d 2 -p tcp -e 1000 -i 182 -a 11 + -t 0.460552 -s 2 -d 7 -p ack -e 40 -i 254 -a 11 - -t 0.460552 -s 2 -d 7 -p ack -e 40 -i 254 -a 11 h -t 0.460552 -s 2 -d 7 -p ack -e 40 -i 254 -a 11 r -t 0.460904 -s 7 -d 6 -p ack -e 40 -i 244 -a 11 + -t 0.460904 -s 6 -d 1 -p ack -e 40 -i 244 -a 11 - -t 0.460904 -s 6 -d 1 -p ack -e 40 -i 244 -a 11 h -t 0.460904 -s 6 -d 1 -p ack -e 40 -i 244 -a 11 r -t 0.461597 -s 4 -d 10 -p ack -e 40 -i 253 -a 20 + -t 0.461597 -s 9 -d 8 -p ack -e 40 -i 253 -a 20 - -t 0.461597 -s 9 -d 8 -p ack -e 40 -i 253 -a 20 h -t 0.461597 -s 9 -d 8 -p ack -e 40 -i 253 -a 20 r -t 0.462899 -s 9 -d 10 -p tcp -e 1000 -i 204 -a 22 + -t 0.462899 -s 4 -d 10 -p ack -e 40 -i 255 -a 22 - -t 0.462899 -s 4 -d 10 -p ack -e 40 -i 255 -a 22 h -t 0.462899 -s 4 -d 10 -p ack -e 40 -i 255 -a 22 r -t 0.463432 -s 8 -d 9 -p tcp -e 1000 -i 210 -a 20 + -t 0.463432 -s 9 -d 10 -p tcp -e 1000 -i 210 -a 20 - -t 0.463432 -s 9 -d 10 -p tcp -e 1000 -i 210 -a 20 h -t 0.463432 -s 9 -d 10 -p tcp -e 1000 -i 210 -a 20 r -t 0.463509 -s 8 -d 3 -p ack -e 40 -i 243 -a 20 r -t 0.463752 -s 6 -d 7 -p tcp -e 1000 -i 191 -a 10 + -t 0.463752 -s 7 -d 2 -p tcp -e 1000 -i 191 -a 10 - -t 0.463752 -s 7 -d 2 -p tcp -e 1000 -i 191 -a 10 h -t 0.463752 -s 7 -d 2 -p tcp -e 1000 -i 191 -a 10 r -t 0.463936 -s 6 -d 1 -p ack -e 40 -i 244 -a 11 r -t 0.464584 -s 2 -d 7 -p ack -e 40 -i 254 -a 11 + -t 0.464584 -s 7 -d 6 -p ack -e 40 -i 254 -a 11 - -t 0.464584 -s 7 -d 6 -p ack -e 40 -i 254 -a 11 h -t 0.464584 -s 7 -d 6 -p ack -e 40 -i 254 -a 11 r -t 0.46581 -s 9 -d 8 -p ack -e 40 -i 245 -a 20 + -t 0.465811 -s 8 -d 3 -p ack -e 40 -i 245 -a 20 - -t 0.465811 -s 8 -d 3 -p ack -e 40 -i 245 -a 20 h -t 0.465811 -s 8 -d 3 -p ack -e 40 -i 245 -a 20 r -t 0.466931 -s 4 -d 10 -p ack -e 40 -i 255 -a 22 + -t 0.466931 -s 9 -d 8 -p ack -e 40 -i 255 -a 22 - -t 0.466931 -s 9 -d 8 -p ack -e 40 -i 255 -a 22 h -t 0.466931 -s 9 -d 8 -p ack -e 40 -i 255 -a 22 - -t 0.467752 -s 6 -d 7 -p tcp -e 1000 -i 221 -a 12 h -t 0.467752 -s 6 -d 7 -p tcp -e 1000 -i 221 -a 12 r -t 0.468232 -s 9 -d 10 -p tcp -e 1000 -i 210 -a 20 + -t 0.468232 -s 4 -d 10 -p ack -e 40 -i 256 -a 20 - -t 0.468232 -s 4 -d 10 -p ack -e 40 -i 256 -a 20 h -t 0.468232 -s 4 -d 10 -p ack -e 40 -i 256 -a 20 r -t 0.468552 -s 7 -d 2 -p tcp -e 1000 -i 191 -a 10 + -t 0.468552 -s 2 -d 7 -p ack -e 40 -i 257 -a 10 - -t 0.468552 -s 2 -d 7 -p ack -e 40 -i 257 -a 10 h -t 0.468552 -s 2 -d 7 -p ack -e 40 -i 257 -a 10 r -t 0.468765 -s 8 -d 9 -p tcp -e 1000 -i 215 -a 20 + -t 0.468765 -s 9 -d 10 -p tcp -e 1000 -i 215 -a 20 - -t 0.468765 -s 9 -d 10 -p tcp -e 1000 -i 215 -a 20 h -t 0.468765 -s 9 -d 10 -p tcp -e 1000 -i 215 -a 20 r -t 0.468843 -s 8 -d 3 -p ack -e 40 -i 245 -a 20 r -t 0.468904 -s 7 -d 6 -p ack -e 40 -i 246 -a 11 + -t 0.468904 -s 6 -d 1 -p ack -e 40 -i 246 -a 11 - -t 0.468904 -s 6 -d 1 -p ack -e 40 -i 246 -a 11 h -t 0.468904 -s 6 -d 1 -p ack -e 40 -i 246 -a 11 r -t 0.471144 -s 9 -d 8 -p ack -e 40 -i 247 -a 20 + -t 0.471144 -s 8 -d 3 -p ack -e 40 -i 247 -a 20 - -t 0.471144 -s 8 -d 3 -p ack -e 40 -i 247 -a 20 h -t 0.471144 -s 8 -d 3 -p ack -e 40 -i 247 -a 20 r -t 0.471752 -s 6 -d 7 -p tcp -e 1000 -i 192 -a 10 + -t 0.471752 -s 7 -d 2 -p tcp -e 1000 -i 192 -a 10 - -t 0.471752 -s 7 -d 2 -p tcp -e 1000 -i 192 -a 10 h -t 0.471752 -s 7 -d 2 -p tcp -e 1000 -i 192 -a 10 r -t 0.472264 -s 4 -d 10 -p ack -e 40 -i 256 -a 20 r -t 0.471936 -s 6 -d 1 -p ack -e 40 -i 246 -a 11 + -t 0.472264 -s 9 -d 8 -p ack -e 40 -i 256 -a 20 - -t 0.472264 -s 9 -d 8 -p ack -e 40 -i 256 -a 20 h -t 0.472264 -s 9 -d 8 -p ack -e 40 -i 256 -a 20 r -t 0.472584 -s 2 -d 7 -p ack -e 40 -i 257 -a 10 + -t 0.472584 -s 7 -d 6 -p ack -e 40 -i 257 -a 10 - -t 0.472584 -s 7 -d 6 -p ack -e 40 -i 257 -a 10 h -t 0.472584 -s 7 -d 6 -p ack -e 40 -i 257 -a 10 r -t 0.473565 -s 9 -d 10 -p tcp -e 1000 -i 215 -a 20 + -t 0.473565 -s 4 -d 10 -p ack -e 40 -i 258 -a 20 - -t 0.473565 -s 4 -d 10 -p ack -e 40 -i 258 -a 20 h -t 0.473565 -s 4 -d 10 -p ack -e 40 -i 258 -a 20 r -t 0.474098 -s 8 -d 9 -p tcp -e 1000 -i 219 -a 21 + -t 0.474099 -s 9 -d 10 -p tcp -e 1000 -i 219 -a 21 - -t 0.474099 -s 9 -d 10 -p tcp -e 1000 -i 219 -a 21 h -t 0.474099 -s 9 -d 10 -p tcp -e 1000 -i 219 -a 21 r -t 0.474176 -s 8 -d 3 -p ack -e 40 -i 247 -a 20 - -t 0.475752 -s 6 -d 7 -p tcp -e 1000 -i 223 -a 14 h -t 0.475752 -s 6 -d 7 -p tcp -e 1000 -i 223 -a 14 r -t 0.476477 -s 9 -d 8 -p ack -e 40 -i 250 -a 20 + -t 0.476477 -s 8 -d 3 -p ack -e 40 -i 250 -a 20 - -t 0.476477 -s 8 -d 3 -p ack -e 40 -i 250 -a 20 h -t 0.476477 -s 8 -d 3 -p ack -e 40 -i 250 -a 20 r -t 0.476552 -s 7 -d 2 -p tcp -e 1000 -i 192 -a 10 + -t 0.476552 -s 2 -d 7 -p ack -e 40 -i 259 -a 10 - -t 0.476552 -s 2 -d 7 -p ack -e 40 -i 259 -a 10 h -t 0.476552 -s 2 -d 7 -p ack -e 40 -i 259 -a 10 r -t 0.476904 -s 7 -d 6 -p ack -e 40 -i 251 -a 10 + -t 0.476904 -s 6 -d 1 -p ack -e 40 -i 251 -a 10 - -t 0.476904 -s 6 -d 1 -p ack -e 40 -i 251 -a 10 h -t 0.476904 -s 6 -d 1 -p ack -e 40 -i 251 -a 10 r -t 0.477597 -s 4 -d 10 -p ack -e 40 -i 258 -a 20 + -t 0.477597 -s 9 -d 8 -p ack -e 40 -i 258 -a 20 - -t 0.477597 -s 9 -d 8 -p ack -e 40 -i 258 -a 20 h -t 0.477597 -s 9 -d 8 -p ack -e 40 -i 258 -a 20 r -t 0.478899 -s 9 -d 10 -p tcp -e 1000 -i 219 -a 21 + -t 0.478899 -s 4 -d 10 -p ack -e 40 -i 260 -a 21 - -t 0.478899 -s 4 -d 10 -p ack -e 40 -i 260 -a 21 h -t 0.478899 -s 4 -d 10 -p ack -e 40 -i 260 -a 21 r -t 0.479432 -s 8 -d 9 -p tcp -e 1000 -i 240 -a 20 + -t 0.479432 -s 9 -d 10 -p tcp -e 1000 -i 240 -a 20 - -t 0.479432 -s 9 -d 10 -p tcp -e 1000 -i 240 -a 20 h -t 0.479432 -s 9 -d 10 -p tcp -e 1000 -i 240 -a 20 r -t 0.479752 -s 6 -d 7 -p tcp -e 1000 -i 198 -a 10 r -t 0.479509 -s 8 -d 3 -p ack -e 40 -i 250 -a 20 + -t 0.479752 -s 7 -d 2 -p tcp -e 1000 -i 198 -a 10 - -t 0.479752 -s 7 -d 2 -p tcp -e 1000 -i 198 -a 10 h -t 0.479752 -s 7 -d 2 -p tcp -e 1000 -i 198 -a 10 r -t 0.480584 -s 2 -d 7 -p ack -e 40 -i 259 -a 10 r -t 0.479936 -s 6 -d 1 -p ack -e 40 -i 251 -a 10 + -t 0.480584 -s 7 -d 6 -p ack -e 40 -i 259 -a 10 - -t 0.480584 -s 7 -d 6 -p ack -e 40 -i 259 -a 10 h -t 0.480584 -s 7 -d 6 -p ack -e 40 -i 259 -a 10 r -t 0.48181 -s 9 -d 8 -p ack -e 40 -i 253 -a 20 + -t 0.481811 -s 8 -d 3 -p ack -e 40 -i 253 -a 20 - -t 0.481811 -s 8 -d 3 -p ack -e 40 -i 253 -a 20 h -t 0.481811 -s 8 -d 3 -p ack -e 40 -i 253 -a 20 r -t 0.482931 -s 4 -d 10 -p ack -e 40 -i 260 -a 21 + -t 0.482931 -s 9 -d 8 -p ack -e 40 -i 260 -a 21 - -t 0.482931 -s 9 -d 8 -p ack -e 40 -i 260 -a 21 h -t 0.482931 -s 9 -d 8 -p ack -e 40 -i 260 -a 21 - -t 0.483752 -s 6 -d 7 -p tcp -e 1000 -i 228 -a 10 h -t 0.483752 -s 6 -d 7 -p tcp -e 1000 -i 228 -a 10 r -t 0.484232 -s 9 -d 10 -p tcp -e 1000 -i 240 -a 20 + -t 0.484232 -s 4 -d 10 -p ack -e 40 -i 261 -a 20 - -t 0.484232 -s 4 -d 10 -p ack -e 40 -i 261 -a 20 h -t 0.484232 -s 4 -d 10 -p ack -e 40 -i 261 -a 20 r -t 0.484552 -s 7 -d 2 -p tcp -e 1000 -i 198 -a 10 + -t 0.484552 -s 2 -d 7 -p ack -e 40 -i 262 -a 10 - -t 0.484552 -s 2 -d 7 -p ack -e 40 -i 262 -a 10 h -t 0.484552 -s 2 -d 7 -p ack -e 40 -i 262 -a 10 r -t 0.484765 -s 8 -d 9 -p tcp -e 1000 -i 232 -a 21 + -t 0.484765 -s 9 -d 10 -p tcp -e 1000 -i 232 -a 21 - -t 0.484765 -s 9 -d 10 -p tcp -e 1000 -i 232 -a 21 h -t 0.484765 -s 9 -d 10 -p tcp -e 1000 -i 232 -a 21 r -t 0.484843 -s 8 -d 3 -p ack -e 40 -i 253 -a 20 r -t 0.484904 -s 7 -d 6 -p ack -e 40 -i 254 -a 11 + -t 0.484904 -s 6 -d 1 -p ack -e 40 -i 254 -a 11 - -t 0.484904 -s 6 -d 1 -p ack -e 40 -i 254 -a 11 h -t 0.484904 -s 6 -d 1 -p ack -e 40 -i 254 -a 11 r -t 0.487144 -s 9 -d 8 -p ack -e 40 -i 255 -a 22 + -t 0.487144 -s 8 -d 3 -p ack -e 40 -i 255 -a 22 - -t 0.487144 -s 8 -d 3 -p ack -e 40 -i 255 -a 22 h -t 0.487144 -s 8 -d 3 -p ack -e 40 -i 255 -a 22 r -t 0.487752 -s 6 -d 7 -p tcp -e 1000 -i 207 -a 10 + -t 0.487752 -s 7 -d 2 -p tcp -e 1000 -i 207 -a 10 - -t 0.487752 -s 7 -d 2 -p tcp -e 1000 -i 207 -a 10 h -t 0.487752 -s 7 -d 2 -p tcp -e 1000 -i 207 -a 10 r -t 0.487936 -s 6 -d 1 -p ack -e 40 -i 254 -a 11 + -t 0.487936 -s 1 -d 6 -p tcp -e 1000 -i 263 -a 11 - -t 0.487936 -s 1 -d 6 -p tcp -e 1000 -i 263 -a 11 h -t 0.487936 -s 1 -d 6 -p tcp -e 1000 -i 263 -a 11 r -t 0.488264 -s 4 -d 10 -p ack -e 40 -i 261 -a 20 + -t 0.488264 -s 9 -d 8 -p ack -e 40 -i 261 -a 20 - -t 0.488264 -s 9 -d 8 -p ack -e 40 -i 261 -a 20 h -t 0.488264 -s 9 -d 8 -p ack -e 40 -i 261 -a 20 r -t 0.488584 -s 2 -d 7 -p ack -e 40 -i 262 -a 10 + -t 0.488584 -s 7 -d 6 -p ack -e 40 -i 262 -a 10 - -t 0.488584 -s 7 -d 6 -p ack -e 40 -i 262 -a 10 h -t 0.488584 -s 7 -d 6 -p ack -e 40 -i 262 -a 10 r -t 0.489565 -s 9 -d 10 -p tcp -e 1000 -i 232 -a 21 + -t 0.489565 -s 4 -d 10 -p ack -e 40 -i 264 -a 21 - -t 0.489565 -s 4 -d 10 -p ack -e 40 -i 264 -a 21 h -t 0.489565 -s 4 -d 10 -p ack -e 40 -i 264 -a 21 r -t 0.490176 -s 8 -d 3 -p ack -e 40 -i 255 -a 22 r -t 0.491736 -s 1 -d 6 -p tcp -e 1000 -i 263 -a 11 + -t 0.491736 -s 6 -d 7 -p tcp -e 1000 -i 263 -a 11 - -t 0.491752 -s 6 -d 7 -p tcp -e 1000 -i 234 -a 12 h -t 0.491752 -s 6 -d 7 -p tcp -e 1000 -i 234 -a 12 r -t 0.492477 -s 9 -d 8 -p ack -e 40 -i 256 -a 20 + -t 0.492477 -s 8 -d 3 -p ack -e 40 -i 256 -a 20 - -t 0.492477 -s 8 -d 3 -p ack -e 40 -i 256 -a 20 h -t 0.492477 -s 8 -d 3 -p ack -e 40 -i 256 -a 20 r -t 0.492552 -s 7 -d 2 -p tcp -e 1000 -i 207 -a 10 + -t 0.492552 -s 2 -d 7 -p ack -e 40 -i 265 -a 10 - -t 0.492552 -s 2 -d 7 -p ack -e 40 -i 265 -a 10 h -t 0.492552 -s 2 -d 7 -p ack -e 40 -i 265 -a 10 r -t 0.492904 -s 7 -d 6 -p ack -e 40 -i 257 -a 10 + -t 0.492904 -s 6 -d 1 -p ack -e 40 -i 257 -a 10 - -t 0.492904 -s 6 -d 1 -p ack -e 40 -i 257 -a 10 h -t 0.492904 -s 6 -d 1 -p ack -e 40 -i 257 -a 10 r -t 0.493597 -s 4 -d 10 -p ack -e 40 -i 264 -a 21 + -t 0.493597 -s 9 -d 8 -p ack -e 40 -i 264 -a 21 - -t 0.493597 -s 9 -d 8 -p ack -e 40 -i 264 -a 21 h -t 0.493597 -s 9 -d 8 -p ack -e 40 -i 264 -a 21 r -t 0.495509 -s 8 -d 3 -p ack -e 40 -i 256 -a 20 r -t 0.495752 -s 6 -d 7 -p tcp -e 1000 -i 221 -a 12 + -t 0.495752 -s 7 -d 2 -p tcp -e 1000 -i 221 -a 12 - -t 0.495752 -s 7 -d 2 -p tcp -e 1000 -i 221 -a 12 h -t 0.495752 -s 7 -d 2 -p tcp -e 1000 -i 221 -a 12 r -t 0.496584 -s 2 -d 7 -p ack -e 40 -i 265 -a 10 r -t 0.495936 -s 6 -d 1 -p ack -e 40 -i 257 -a 10 + -t 0.496584 -s 7 -d 6 -p ack -e 40 -i 265 -a 10 - -t 0.496584 -s 7 -d 6 -p ack -e 40 -i 265 -a 10 h -t 0.496584 -s 7 -d 6 -p ack -e 40 -i 265 -a 10 r -t 0.49781 -s 9 -d 8 -p ack -e 40 -i 258 -a 20 + -t 0.497811 -s 8 -d 3 -p ack -e 40 -i 258 -a 20 - -t 0.497811 -s 8 -d 3 -p ack -e 40 -i 258 -a 20 h -t 0.497811 -s 8 -d 3 -p ack -e 40 -i 258 -a 20 - -t 0.499752 -s 6 -d 7 -p tcp -e 1000 -i 241 -a 13 h -t 0.499752 -s 6 -d 7 -p tcp -e 1000 -i 241 -a 13 r -t 0.500552 -s 7 -d 2 -p tcp -e 1000 -i 221 -a 12 + -t 0.500552 -s 2 -d 7 -p ack -e 40 -i 266 -a 12 - -t 0.500552 -s 2 -d 7 -p ack -e 40 -i 266 -a 12 h -t 0.500552 -s 2 -d 7 -p ack -e 40 -i 266 -a 12 r -t 0.500904 -s 7 -d 6 -p ack -e 40 -i 259 -a 10 r -t 0.500843 -s 8 -d 3 -p ack -e 40 -i 258 -a 20 + -t 0.500904 -s 6 -d 1 -p ack -e 40 -i 259 -a 10 - -t 0.500904 -s 6 -d 1 -p ack -e 40 -i 259 -a 10 h -t 0.500904 -s 6 -d 1 -p ack -e 40 -i 259 -a 10 r -t 0.503144 -s 9 -d 8 -p ack -e 40 -i 260 -a 21 + -t 0.503144 -s 8 -d 3 -p ack -e 40 -i 260 -a 21 - -t 0.503144 -s 8 -d 3 -p ack -e 40 -i 260 -a 21 h -t 0.503144 -s 8 -d 3 -p ack -e 40 -i 260 -a 21 r -t 0.503752 -s 6 -d 7 -p tcp -e 1000 -i 223 -a 14 + -t 0.503752 -s 7 -d 2 -p tcp -e 1000 -i 223 -a 14 - -t 0.503752 -s 7 -d 2 -p tcp -e 1000 -i 223 -a 14 h -t 0.503752 -s 7 -d 2 -p tcp -e 1000 -i 223 -a 14 r -t 0.504584 -s 2 -d 7 -p ack -e 40 -i 266 -a 12 r -t 0.503936 -s 6 -d 1 -p ack -e 40 -i 259 -a 10 + -t 0.504584 -s 7 -d 6 -p ack -e 40 -i 266 -a 12 - -t 0.504584 -s 7 -d 6 -p ack -e 40 -i 266 -a 12 h -t 0.504584 -s 7 -d 6 -p ack -e 40 -i 266 -a 12 r -t 0.506176 -s 8 -d 3 -p ack -e 40 -i 260 -a 21 - -t 0.507752 -s 6 -d 7 -p tcp -e 1000 -i 248 -a 11 h -t 0.507752 -s 6 -d 7 -p tcp -e 1000 -i 248 -a 11 r -t 0.508477 -s 9 -d 8 -p ack -e 40 -i 261 -a 20 + -t 0.508477 -s 8 -d 3 -p ack -e 40 -i 261 -a 20 - -t 0.508477 -s 8 -d 3 -p ack -e 40 -i 261 -a 20 h -t 0.508477 -s 8 -d 3 -p ack -e 40 -i 261 -a 20 r -t 0.508552 -s 7 -d 2 -p tcp -e 1000 -i 223 -a 14 + -t 0.508552 -s 2 -d 7 -p ack -e 40 -i 267 -a 14 - -t 0.508552 -s 2 -d 7 -p ack -e 40 -i 267 -a 14 h -t 0.508552 -s 2 -d 7 -p ack -e 40 -i 267 -a 14 r -t 0.508904 -s 7 -d 6 -p ack -e 40 -i 262 -a 10 + -t 0.508904 -s 6 -d 1 -p ack -e 40 -i 262 -a 10 - -t 0.508904 -s 6 -d 1 -p ack -e 40 -i 262 -a 10 h -t 0.508904 -s 6 -d 1 -p ack -e 40 -i 262 -a 10 r -t 0.511509 -s 8 -d 3 -p ack -e 40 -i 261 -a 20 + -t 0.511509 -s 3 -d 8 -p tcp -e 1000 -i 268 -a 20 - -t 0.511509 -s 3 -d 8 -p tcp -e 1000 -i 268 -a 20 h -t 0.511509 -s 3 -d 8 -p tcp -e 1000 -i 268 -a 20 + -t 0.511509 -s 3 -d 8 -p tcp -e 1000 -i 269 -a 20 r -t 0.511752 -s 6 -d 7 -p tcp -e 1000 -i 228 -a 10 + -t 0.511752 -s 7 -d 2 -p tcp -e 1000 -i 228 -a 10 - -t 0.511752 -s 7 -d 2 -p tcp -e 1000 -i 228 -a 10 h -t 0.511752 -s 7 -d 2 -p tcp -e 1000 -i 228 -a 10 r -t 0.511936 -s 6 -d 1 -p ack -e 40 -i 262 -a 10 - -t 0.512309 -s 3 -d 8 -p tcp -e 1000 -i 269 -a 20 h -t 0.512309 -s 3 -d 8 -p tcp -e 1000 -i 269 -a 20 r -t 0.512584 -s 2 -d 7 -p ack -e 40 -i 267 -a 14 + -t 0.512584 -s 7 -d 6 -p ack -e 40 -i 267 -a 14 - -t 0.512584 -s 7 -d 6 -p ack -e 40 -i 267 -a 14 h -t 0.512584 -s 7 -d 6 -p ack -e 40 -i 267 -a 14 r -t 0.51381 -s 9 -d 8 -p ack -e 40 -i 264 -a 21 + -t 0.513811 -s 8 -d 3 -p ack -e 40 -i 264 -a 21 - -t 0.513811 -s 8 -d 3 -p ack -e 40 -i 264 -a 21 h -t 0.513811 -s 8 -d 3 -p ack -e 40 -i 264 -a 21 r -t 0.515309 -s 3 -d 8 -p tcp -e 1000 -i 268 -a 20 + -t 0.515309 -s 8 -d 9 -p tcp -e 1000 -i 268 -a 20 - -t 0.515309 -s 8 -d 9 -p tcp -e 1000 -i 268 -a 20 h -t 0.515309 -s 8 -d 9 -p tcp -e 1000 -i 268 -a 20 - -t 0.515752 -s 6 -d 7 -p tcp -e 1000 -i 242 -a 13 h -t 0.515752 -s 6 -d 7 -p tcp -e 1000 -i 242 -a 13 r -t 0.516109 -s 3 -d 8 -p tcp -e 1000 -i 269 -a 20 + -t 0.516109 -s 8 -d 9 -p tcp -e 1000 -i 269 -a 20 r -t 0.516552 -s 7 -d 2 -p tcp -e 1000 -i 228 -a 10 + -t 0.516552 -s 2 -d 7 -p ack -e 40 -i 270 -a 10 - -t 0.516552 -s 2 -d 7 -p ack -e 40 -i 270 -a 10 h -t 0.516552 -s 2 -d 7 -p ack -e 40 -i 270 -a 10 r -t 0.516843 -s 8 -d 3 -p ack -e 40 -i 264 -a 21 + -t 0.516843 -s 3 -d 8 -p tcp -e 1000 -i 271 -a 21 - -t 0.516843 -s 3 -d 8 -p tcp -e 1000 -i 271 -a 21 h -t 0.516843 -s 3 -d 8 -p tcp -e 1000 -i 271 -a 21 + -t 0.516843 -s 3 -d 8 -p tcp -e 1000 -i 272 -a 21 r -t 0.516904 -s 7 -d 6 -p ack -e 40 -i 265 -a 10 + -t 0.516904 -s 6 -d 1 -p ack -e 40 -i 265 -a 10 - -t 0.516904 -s 6 -d 1 -p ack -e 40 -i 265 -a 10 h -t 0.516904 -s 6 -d 1 -p ack -e 40 -i 265 -a 10 - -t 0.517643 -s 3 -d 8 -p tcp -e 1000 -i 272 -a 21 h -t 0.517643 -s 3 -d 8 -p tcp -e 1000 -i 272 -a 21 r -t 0.519752 -s 6 -d 7 -p tcp -e 1000 -i 234 -a 12 + -t 0.519752 -s 7 -d 2 -p tcp -e 1000 -i 234 -a 12 - -t 0.519752 -s 7 -d 2 -p tcp -e 1000 -i 234 -a 12 h -t 0.519752 -s 7 -d 2 -p tcp -e 1000 -i 234 -a 12 r -t 0.520584 -s 2 -d 7 -p ack -e 40 -i 270 -a 10 r -t 0.519936 -s 6 -d 1 -p ack -e 40 -i 265 -a 10 + -t 0.520584 -s 7 -d 6 -p ack -e 40 -i 270 -a 10 - -t 0.520584 -s 7 -d 6 -p ack -e 40 -i 270 -a 10 h -t 0.520584 -s 7 -d 6 -p ack -e 40 -i 270 -a 10 r -t 0.520643 -s 3 -d 8 -p tcp -e 1000 -i 271 -a 21 - -t 0.520643 -s 8 -d 9 -p tcp -e 1000 -i 269 -a 20 h -t 0.520643 -s 8 -d 9 -p tcp -e 1000 -i 269 -a 20 + -t 0.520643 -s 8 -d 9 -p tcp -e 1000 -i 271 -a 21 r -t 0.521443 -s 3 -d 8 -p tcp -e 1000 -i 272 -a 21 + -t 0.521443 -s 8 -d 9 -p tcp -e 1000 -i 272 -a 21 - -t 0.523752 -s 6 -d 7 -p tcp -e 1000 -i 249 -a 11 h -t 0.523752 -s 6 -d 7 -p tcp -e 1000 -i 249 -a 11 r -t 0.524552 -s 7 -d 2 -p tcp -e 1000 -i 234 -a 12 + -t 0.524552 -s 2 -d 7 -p ack -e 40 -i 273 -a 12 - -t 0.524552 -s 2 -d 7 -p ack -e 40 -i 273 -a 12 h -t 0.524552 -s 2 -d 7 -p ack -e 40 -i 273 -a 12 r -t 0.524904 -s 7 -d 6 -p ack -e 40 -i 266 -a 12 + -t 0.524904 -s 6 -d 1 -p ack -e 40 -i 266 -a 12 - -t 0.524904 -s 6 -d 1 -p ack -e 40 -i 266 -a 12 h -t 0.524904 -s 6 -d 1 -p ack -e 40 -i 266 -a 12 - -t 0.525976 -s 8 -d 9 -p tcp -e 1000 -i 271 -a 21 h -t 0.525976 -s 8 -d 9 -p tcp -e 1000 -i 271 -a 21 r -t 0.527752 -s 6 -d 7 -p tcp -e 1000 -i 241 -a 13 + -t 0.527752 -s 7 -d 2 -p tcp -e 1000 -i 241 -a 13 - -t 0.527752 -s 7 -d 2 -p tcp -e 1000 -i 241 -a 13 h -t 0.527752 -s 7 -d 2 -p tcp -e 1000 -i 241 -a 13 r -t 0.527936 -s 6 -d 1 -p ack -e 40 -i 266 -a 12 + -t 0.527936 -s 1 -d 6 -p tcp -e 1000 -i 274 -a 12 - -t 0.527936 -s 1 -d 6 -p tcp -e 1000 -i 274 -a 12 h -t 0.527936 -s 1 -d 6 -p tcp -e 1000 -i 274 -a 12 + -t 0.527936 -s 1 -d 6 -p tcp -e 1000 -i 275 -a 12 r -t 0.528584 -s 2 -d 7 -p ack -e 40 -i 273 -a 12 + -t 0.528584 -s 7 -d 6 -p ack -e 40 -i 273 -a 12 - -t 0.528584 -s 7 -d 6 -p ack -e 40 -i 273 -a 12 h -t 0.528584 -s 7 -d 6 -p ack -e 40 -i 273 -a 12 - -t 0.528736 -s 1 -d 6 -p tcp -e 1000 -i 275 -a 12 h -t 0.528736 -s 1 -d 6 -p tcp -e 1000 -i 275 -a 12 - -t 0.531309 -s 8 -d 9 -p tcp -e 1000 -i 272 -a 21 h -t 0.531309 -s 8 -d 9 -p tcp -e 1000 -i 272 -a 21 r -t 0.531736 -s 1 -d 6 -p tcp -e 1000 -i 274 -a 12 + -t 0.531736 -s 6 -d 7 -p tcp -e 1000 -i 274 -a 12 - -t 0.531752 -s 6 -d 7 -p tcp -e 1000 -i 263 -a 11 h -t 0.531752 -s 6 -d 7 -p tcp -e 1000 -i 263 -a 11 r -t 0.532536 -s 1 -d 6 -p tcp -e 1000 -i 275 -a 12 + -t 0.532536 -s 6 -d 7 -p tcp -e 1000 -i 275 -a 12 r -t 0.532552 -s 7 -d 2 -p tcp -e 1000 -i 241 -a 13 + -t 0.532552 -s 2 -d 7 -p ack -e 40 -i 276 -a 13 - -t 0.532552 -s 2 -d 7 -p ack -e 40 -i 276 -a 13 h -t 0.532552 -s 2 -d 7 -p ack -e 40 -i 276 -a 13 r -t 0.532904 -s 7 -d 6 -p ack -e 40 -i 267 -a 14 + -t 0.532904 -s 6 -d 1 -p ack -e 40 -i 267 -a 14 - -t 0.532904 -s 6 -d 1 -p ack -e 40 -i 267 -a 14 h -t 0.532904 -s 6 -d 1 -p ack -e 40 -i 267 -a 14 r -t 0.535752 -s 6 -d 7 -p tcp -e 1000 -i 248 -a 11 + -t 0.535752 -s 7 -d 2 -p tcp -e 1000 -i 248 -a 11 - -t 0.535752 -s 7 -d 2 -p tcp -e 1000 -i 248 -a 11 h -t 0.535752 -s 7 -d 2 -p tcp -e 1000 -i 248 -a 11 r -t 0.535936 -s 6 -d 1 -p ack -e 40 -i 267 -a 14 + -t 0.535936 -s 1 -d 6 -p tcp -e 1000 -i 277 -a 14 - -t 0.535936 -s 1 -d 6 -p tcp -e 1000 -i 277 -a 14 h -t 0.535936 -s 1 -d 6 -p tcp -e 1000 -i 277 -a 14 + -t 0.535936 -s 1 -d 6 -p tcp -e 1000 -i 278 -a 14 r -t 0.536584 -s 2 -d 7 -p ack -e 40 -i 276 -a 13 + -t 0.536584 -s 7 -d 6 -p ack -e 40 -i 276 -a 13 - -t 0.536584 -s 7 -d 6 -p ack -e 40 -i 276 -a 13 h -t 0.536584 -s 7 -d 6 -p ack -e 40 -i 276 -a 13 - -t 0.536736 -s 1 -d 6 -p tcp -e 1000 -i 278 -a 14 h -t 0.536736 -s 1 -d 6 -p tcp -e 1000 -i 278 -a 14 r -t 0.539736 -s 1 -d 6 -p tcp -e 1000 -i 277 -a 14 + -t 0.539736 -s 6 -d 7 -p tcp -e 1000 -i 277 -a 14 - -t 0.539752 -s 6 -d 7 -p tcp -e 1000 -i 274 -a 12 h -t 0.539752 -s 6 -d 7 -p tcp -e 1000 -i 274 -a 12 r -t 0.540536 -s 1 -d 6 -p tcp -e 1000 -i 278 -a 14 + -t 0.540536 -s 6 -d 7 -p tcp -e 1000 -i 278 -a 14 r -t 0.540552 -s 7 -d 2 -p tcp -e 1000 -i 248 -a 11 + -t 0.540552 -s 2 -d 7 -p ack -e 40 -i 279 -a 11 - -t 0.540552 -s 2 -d 7 -p ack -e 40 -i 279 -a 11 h -t 0.540552 -s 2 -d 7 -p ack -e 40 -i 279 -a 11 r -t 0.540642 -s 8 -d 9 -p tcp -e 1000 -i 268 -a 20 + -t 0.540643 -s 9 -d 10 -p tcp -e 1000 -i 268 -a 20 - -t 0.540643 -s 9 -d 10 -p tcp -e 1000 -i 268 -a 20 h -t 0.540643 -s 9 -d 10 -p tcp -e 1000 -i 268 -a 20 r -t 0.540904 -s 7 -d 6 -p ack -e 40 -i 270 -a 10 + -t 0.540904 -s 6 -d 1 -p ack -e 40 -i 270 -a 10 - -t 0.540904 -s 6 -d 1 -p ack -e 40 -i 270 -a 10 h -t 0.540904 -s 6 -d 1 -p ack -e 40 -i 270 -a 10 r -t 0.543752 -s 6 -d 7 -p tcp -e 1000 -i 242 -a 13 + -t 0.543752 -s 7 -d 2 -p tcp -e 1000 -i 242 -a 13 - -t 0.543752 -s 7 -d 2 -p tcp -e 1000 -i 242 -a 13 h -t 0.543752 -s 7 -d 2 -p tcp -e 1000 -i 242 -a 13 r -t 0.544584 -s 2 -d 7 -p ack -e 40 -i 279 -a 11 r -t 0.543936 -s 6 -d 1 -p ack -e 40 -i 270 -a 10 + -t 0.544584 -s 7 -d 6 -p ack -e 40 -i 279 -a 11 - -t 0.544584 -s 7 -d 6 -p ack -e 40 -i 279 -a 11 h -t 0.544584 -s 7 -d 6 -p ack -e 40 -i 279 -a 11 r -t 0.545443 -s 9 -d 10 -p tcp -e 1000 -i 268 -a 20 + -t 0.545443 -s 4 -d 10 -p ack -e 40 -i 280 -a 20 - -t 0.545443 -s 4 -d 10 -p ack -e 40 -i 280 -a 20 h -t 0.545443 -s 4 -d 10 -p ack -e 40 -i 280 -a 20 r -t 0.545976 -s 8 -d 9 -p tcp -e 1000 -i 269 -a 20 + -t 0.545976 -s 9 -d 10 -p tcp -e 1000 -i 269 -a 20 - -t 0.545976 -s 9 -d 10 -p tcp -e 1000 -i 269 -a 20 h -t 0.545976 -s 9 -d 10 -p tcp -e 1000 -i 269 -a 20 - -t 0.547752 -s 6 -d 7 -p tcp -e 1000 -i 277 -a 14 h -t 0.547752 -s 6 -d 7 -p tcp -e 1000 -i 277 -a 14 r -t 0.548552 -s 7 -d 2 -p tcp -e 1000 -i 242 -a 13 + -t 0.548552 -s 2 -d 7 -p ack -e 40 -i 281 -a 13 - -t 0.548552 -s 2 -d 7 -p ack -e 40 -i 281 -a 13 h -t 0.548552 -s 2 -d 7 -p ack -e 40 -i 281 -a 13 r -t 0.548904 -s 7 -d 6 -p ack -e 40 -i 273 -a 12 + -t 0.548904 -s 6 -d 1 -p ack -e 40 -i 273 -a 12 - -t 0.548904 -s 6 -d 1 -p ack -e 40 -i 273 -a 12 h -t 0.548904 -s 6 -d 1 -p ack -e 40 -i 273 -a 12 r -t 0.549475 -s 4 -d 10 -p ack -e 40 -i 280 -a 20 + -t 0.549475 -s 9 -d 8 -p ack -e 40 -i 280 -a 20 - -t 0.549475 -s 9 -d 8 -p ack -e 40 -i 280 -a 20 h -t 0.549475 -s 9 -d 8 -p ack -e 40 -i 280 -a 20 r -t 0.550776 -s 9 -d 10 -p tcp -e 1000 -i 269 -a 20 + -t 0.550776 -s 4 -d 10 -p ack -e 40 -i 282 -a 20 - -t 0.550776 -s 4 -d 10 -p ack -e 40 -i 282 -a 20 h -t 0.550776 -s 4 -d 10 -p ack -e 40 -i 282 -a 20 r -t 0.551309 -s 8 -d 9 -p tcp -e 1000 -i 271 -a 21 + -t 0.551309 -s 9 -d 10 -p tcp -e 1000 -i 271 -a 21 - -t 0.551309 -s 9 -d 10 -p tcp -e 1000 -i 271 -a 21 h -t 0.551309 -s 9 -d 10 -p tcp -e 1000 -i 271 -a 21 r -t 0.551752 -s 6 -d 7 -p tcp -e 1000 -i 249 -a 11 + -t 0.551752 -s 7 -d 2 -p tcp -e 1000 -i 249 -a 11 - -t 0.551752 -s 7 -d 2 -p tcp -e 1000 -i 249 -a 11 h -t 0.551752 -s 7 -d 2 -p tcp -e 1000 -i 249 -a 11 r -t 0.552584 -s 2 -d 7 -p ack -e 40 -i 281 -a 13 r -t 0.551936 -s 6 -d 1 -p ack -e 40 -i 273 -a 12 + -t 0.552584 -s 7 -d 6 -p ack -e 40 -i 281 -a 13 - -t 0.552584 -s 7 -d 6 -p ack -e 40 -i 281 -a 13 h -t 0.552584 -s 7 -d 6 -p ack -e 40 -i 281 -a 13 r -t 0.554808 -s 4 -d 10 -p ack -e 40 -i 282 -a 20 + -t 0.554808 -s 9 -d 8 -p ack -e 40 -i 282 -a 20 - -t 0.554808 -s 9 -d 8 -p ack -e 40 -i 282 -a 20 h -t 0.554808 -s 9 -d 8 -p ack -e 40 -i 282 -a 20 - -t 0.555752 -s 6 -d 7 -p tcp -e 1000 -i 275 -a 12 h -t 0.555752 -s 6 -d 7 -p tcp -e 1000 -i 275 -a 12 r -t 0.556109 -s 9 -d 10 -p tcp -e 1000 -i 271 -a 21 + -t 0.556109 -s 4 -d 10 -p ack -e 40 -i 283 -a 21 - -t 0.556109 -s 4 -d 10 -p ack -e 40 -i 283 -a 21 h -t 0.556109 -s 4 -d 10 -p ack -e 40 -i 283 -a 21 r -t 0.556552 -s 7 -d 2 -p tcp -e 1000 -i 249 -a 11 + -t 0.556552 -s 2 -d 7 -p ack -e 40 -i 284 -a 11 - -t 0.556552 -s 2 -d 7 -p ack -e 40 -i 284 -a 11 h -t 0.556552 -s 2 -d 7 -p ack -e 40 -i 284 -a 11 r -t 0.556642 -s 8 -d 9 -p tcp -e 1000 -i 272 -a 21 + -t 0.556643 -s 9 -d 10 -p tcp -e 1000 -i 272 -a 21 - -t 0.556643 -s 9 -d 10 -p tcp -e 1000 -i 272 -a 21 h -t 0.556643 -s 9 -d 10 -p tcp -e 1000 -i 272 -a 21 r -t 0.556904 -s 7 -d 6 -p ack -e 40 -i 276 -a 13 + -t 0.556904 -s 6 -d 1 -p ack -e 40 -i 276 -a 13 - -t 0.556904 -s 6 -d 1 -p ack -e 40 -i 276 -a 13 h -t 0.556904 -s 6 -d 1 -p ack -e 40 -i 276 -a 13 r -t 0.559752 -s 6 -d 7 -p tcp -e 1000 -i 263 -a 11 + -t 0.559752 -s 7 -d 2 -p tcp -e 1000 -i 263 -a 11 - -t 0.559752 -s 7 -d 2 -p tcp -e 1000 -i 263 -a 11 h -t 0.559752 -s 7 -d 2 -p tcp -e 1000 -i 263 -a 11 r -t 0.559936 -s 6 -d 1 -p ack -e 40 -i 276 -a 13 + -t 0.559936 -s 1 -d 6 -p tcp -e 1000 -i 285 -a 13 - -t 0.559936 -s 1 -d 6 -p tcp -e 1000 -i 285 -a 13 h -t 0.559936 -s 1 -d 6 -p tcp -e 1000 -i 285 -a 13 + -t 0.559936 -s 1 -d 6 -p tcp -e 1000 -i 286 -a 13 r -t 0.560141 -s 4 -d 10 -p ack -e 40 -i 283 -a 21 + -t 0.560141 -s 9 -d 8 -p ack -e 40 -i 283 -a 21 - -t 0.560141 -s 9 -d 8 -p ack -e 40 -i 283 -a 21 h -t 0.560141 -s 9 -d 8 -p ack -e 40 -i 283 -a 21 r -t 0.560584 -s 2 -d 7 -p ack -e 40 -i 284 -a 11 + -t 0.560584 -s 7 -d 6 -p ack -e 40 -i 284 -a 11 - -t 0.560584 -s 7 -d 6 -p ack -e 40 -i 284 -a 11 h -t 0.560584 -s 7 -d 6 -p ack -e 40 -i 284 -a 11 - -t 0.560736 -s 1 -d 6 -p tcp -e 1000 -i 286 -a 13 h -t 0.560736 -s 1 -d 6 -p tcp -e 1000 -i 286 -a 13 r -t 0.561443 -s 9 -d 10 -p tcp -e 1000 -i 272 -a 21 + -t 0.561443 -s 4 -d 10 -p ack -e 40 -i 287 -a 21 - -t 0.561443 -s 4 -d 10 -p ack -e 40 -i 287 -a 21 h -t 0.561443 -s 4 -d 10 -p ack -e 40 -i 287 -a 21 r -t 0.563736 -s 1 -d 6 -p tcp -e 1000 -i 285 -a 13 + -t 0.563736 -s 6 -d 7 -p tcp -e 1000 -i 285 -a 13 - -t 0.563752 -s 6 -d 7 -p tcp -e 1000 -i 278 -a 14 h -t 0.563752 -s 6 -d 7 -p tcp -e 1000 -i 278 -a 14 r -t 0.564536 -s 1 -d 6 -p tcp -e 1000 -i 286 -a 13 + -t 0.564536 -s 6 -d 7 -p tcp -e 1000 -i 286 -a 13 r -t 0.564552 -s 7 -d 2 -p tcp -e 1000 -i 263 -a 11 + -t 0.564552 -s 2 -d 7 -p ack -e 40 -i 288 -a 11 - -t 0.564552 -s 2 -d 7 -p ack -e 40 -i 288 -a 11 h -t 0.564552 -s 2 -d 7 -p ack -e 40 -i 288 -a 11 r -t 0.564904 -s 7 -d 6 -p ack -e 40 -i 279 -a 11 + -t 0.564904 -s 6 -d 1 -p ack -e 40 -i 279 -a 11 - -t 0.564904 -s 6 -d 1 -p ack -e 40 -i 279 -a 11 h -t 0.564904 -s 6 -d 1 -p ack -e 40 -i 279 -a 11 r -t 0.565475 -s 4 -d 10 -p ack -e 40 -i 287 -a 21 + -t 0.565475 -s 9 -d 8 -p ack -e 40 -i 287 -a 21 - -t 0.565475 -s 9 -d 8 -p ack -e 40 -i 287 -a 21 h -t 0.565475 -s 9 -d 8 -p ack -e 40 -i 287 -a 21 r -t 0.567752 -s 6 -d 7 -p tcp -e 1000 -i 274 -a 12 + -t 0.567752 -s 7 -d 2 -p tcp -e 1000 -i 274 -a 12 - -t 0.567752 -s 7 -d 2 -p tcp -e 1000 -i 274 -a 12 h -t 0.567752 -s 7 -d 2 -p tcp -e 1000 -i 274 -a 12 r -t 0.568584 -s 2 -d 7 -p ack -e 40 -i 288 -a 11 r -t 0.567936 -s 6 -d 1 -p ack -e 40 -i 279 -a 11 + -t 0.568584 -s 7 -d 6 -p ack -e 40 -i 288 -a 11 - -t 0.568584 -s 7 -d 6 -p ack -e 40 -i 288 -a 11 h -t 0.568584 -s 7 -d 6 -p ack -e 40 -i 288 -a 11 r -t 0.569688 -s 9 -d 8 -p ack -e 40 -i 280 -a 20 + -t 0.569688 -s 8 -d 3 -p ack -e 40 -i 280 -a 20 - -t 0.569688 -s 8 -d 3 -p ack -e 40 -i 280 -a 20 h -t 0.569688 -s 8 -d 3 -p ack -e 40 -i 280 -a 20 - -t 0.571752 -s 6 -d 7 -p tcp -e 1000 -i 285 -a 13 h -t 0.571752 -s 6 -d 7 -p tcp -e 1000 -i 285 -a 13 r -t 0.572552 -s 7 -d 2 -p tcp -e 1000 -i 274 -a 12 + -t 0.572552 -s 2 -d 7 -p ack -e 40 -i 289 -a 12 - -t 0.572552 -s 2 -d 7 -p ack -e 40 -i 289 -a 12 h -t 0.572552 -s 2 -d 7 -p ack -e 40 -i 289 -a 12 r -t 0.57272 -s 8 -d 3 -p ack -e 40 -i 280 -a 20 + -t 0.57272 -s 3 -d 8 -p tcp -e 1000 -i 290 -a 20 - -t 0.57272 -s 3 -d 8 -p tcp -e 1000 -i 290 -a 20 h -t 0.57272 -s 3 -d 8 -p tcp -e 1000 -i 290 -a 20 + -t 0.57272 -s 3 -d 8 -p tcp -e 1000 -i 291 -a 20 + -t 0.57272 -s 3 -d 8 -p tcp -e 1000 -i 292 -a 20 r -t 0.572904 -s 7 -d 6 -p ack -e 40 -i 281 -a 13 + -t 0.572904 -s 6 -d 1 -p ack -e 40 -i 281 -a 13 - -t 0.572904 -s 6 -d 1 -p ack -e 40 -i 281 -a 13 h -t 0.572904 -s 6 -d 1 -p ack -e 40 -i 281 -a 13 - -t 0.57352 -s 3 -d 8 -p tcp -e 1000 -i 291 -a 20 h -t 0.57352 -s 3 -d 8 -p tcp -e 1000 -i 291 -a 20 - -t 0.57432 -s 3 -d 8 -p tcp -e 1000 -i 292 -a 20 h -t 0.57432 -s 3 -d 8 -p tcp -e 1000 -i 292 -a 20 r -t 0.575021 -s 9 -d 8 -p ack -e 40 -i 282 -a 20 + -t 0.575021 -s 8 -d 3 -p ack -e 40 -i 282 -a 20 - -t 0.575021 -s 8 -d 3 -p ack -e 40 -i 282 -a 20 h -t 0.575021 -s 8 -d 3 -p ack -e 40 -i 282 -a 20 r -t 0.575752 -s 6 -d 7 -p tcp -e 1000 -i 277 -a 14 + -t 0.575752 -s 7 -d 2 -p tcp -e 1000 -i 277 -a 14 - -t 0.575752 -s 7 -d 2 -p tcp -e 1000 -i 277 -a 14 h -t 0.575752 -s 7 -d 2 -p tcp -e 1000 -i 277 -a 14 r -t 0.575936 -s 6 -d 1 -p ack -e 40 -i 281 -a 13 + -t 0.575936 -s 1 -d 6 -p tcp -e 1000 -i 293 -a 13 - -t 0.575936 -s 1 -d 6 -p tcp -e 1000 -i 293 -a 13 h -t 0.575936 -s 1 -d 6 -p tcp -e 1000 -i 293 -a 13 + -t 0.575936 -s 1 -d 6 -p tcp -e 1000 -i 294 -a 13 r -t 0.57652 -s 3 -d 8 -p tcp -e 1000 -i 290 -a 20 + -t 0.57652 -s 8 -d 9 -p tcp -e 1000 -i 290 -a 20 - -t 0.57652 -s 8 -d 9 -p tcp -e 1000 -i 290 -a 20 h -t 0.57652 -s 8 -d 9 -p tcp -e 1000 -i 290 -a 20 r -t 0.576584 -s 2 -d 7 -p ack -e 40 -i 289 -a 12 + -t 0.576584 -s 7 -d 6 -p ack -e 40 -i 289 -a 12 - -t 0.576584 -s 7 -d 6 -p ack -e 40 -i 289 -a 12 h -t 0.576584 -s 7 -d 6 -p ack -e 40 -i 289 -a 12 - -t 0.576736 -s 1 -d 6 -p tcp -e 1000 -i 294 -a 13 h -t 0.576736 -s 1 -d 6 -p tcp -e 1000 -i 294 -a 13 r -t 0.57732 -s 3 -d 8 -p tcp -e 1000 -i 291 -a 20 + -t 0.57732 -s 8 -d 9 -p tcp -e 1000 -i 291 -a 20 r -t 0.578053 -s 8 -d 3 -p ack -e 40 -i 282 -a 20 r -t 0.57812 -s 3 -d 8 -p tcp -e 1000 -i 292 -a 20 + -t 0.57812 -s 8 -d 9 -p tcp -e 1000 -i 292 -a 20 r -t 0.579736 -s 1 -d 6 -p tcp -e 1000 -i 293 -a 13 + -t 0.579736 -s 6 -d 7 -p tcp -e 1000 -i 293 -a 13 - -t 0.579752 -s 6 -d 7 -p tcp -e 1000 -i 286 -a 13 h -t 0.579752 -s 6 -d 7 -p tcp -e 1000 -i 286 -a 13 r -t 0.580354 -s 9 -d 8 -p ack -e 40 -i 283 -a 21 + -t 0.580355 -s 8 -d 3 -p ack -e 40 -i 283 -a 21 - -t 0.580355 -s 8 -d 3 -p ack -e 40 -i 283 -a 21 h -t 0.580355 -s 8 -d 3 -p ack -e 40 -i 283 -a 21 r -t 0.580536 -s 1 -d 6 -p tcp -e 1000 -i 294 -a 13 + -t 0.580536 -s 6 -d 7 -p tcp -e 1000 -i 294 -a 13 r -t 0.580552 -s 7 -d 2 -p tcp -e 1000 -i 277 -a 14 + -t 0.580552 -s 2 -d 7 -p ack -e 40 -i 295 -a 14 - -t 0.580552 -s 2 -d 7 -p ack -e 40 -i 295 -a 14 h -t 0.580552 -s 2 -d 7 -p ack -e 40 -i 295 -a 14 r -t 0.580904 -s 7 -d 6 -p ack -e 40 -i 284 -a 11 + -t 0.580904 -s 6 -d 1 -p ack -e 40 -i 284 -a 11 - -t 0.580904 -s 6 -d 1 -p ack -e 40 -i 284 -a 11 h -t 0.580904 -s 6 -d 1 -p ack -e 40 -i 284 -a 11 - -t 0.581853 -s 8 -d 9 -p tcp -e 1000 -i 291 -a 20 h -t 0.581853 -s 8 -d 9 -p tcp -e 1000 -i 291 -a 20 r -t 0.583387 -s 8 -d 3 -p ack -e 40 -i 283 -a 21 + -t 0.583387 -s 3 -d 8 -p tcp -e 1000 -i 296 -a 21 - -t 0.583387 -s 3 -d 8 -p tcp -e 1000 -i 296 -a 21 h -t 0.583387 -s 3 -d 8 -p tcp -e 1000 -i 296 -a 21 + -t 0.583387 -s 3 -d 8 -p tcp -e 1000 -i 297 -a 21 + -t 0.583387 -s 3 -d 8 -p tcp -e 1000 -i 298 -a 21 r -t 0.583752 -s 6 -d 7 -p tcp -e 1000 -i 275 -a 12 + -t 0.583752 -s 7 -d 2 -p tcp -e 1000 -i 275 -a 12 - -t 0.583752 -s 7 -d 2 -p tcp -e 1000 -i 275 -a 12 h -t 0.583752 -s 7 -d 2 -p tcp -e 1000 -i 275 -a 12 r -t 0.583936 -s 6 -d 1 -p ack -e 40 -i 284 -a 11 - -t 0.584187 -s 3 -d 8 -p tcp -e 1000 -i 297 -a 21 h -t 0.584187 -s 3 -d 8 -p tcp -e 1000 -i 297 -a 21 r -t 0.584584 -s 2 -d 7 -p ack -e 40 -i 295 -a 14 + -t 0.584584 -s 7 -d 6 -p ack -e 40 -i 295 -a 14 - -t 0.584584 -s 7 -d 6 -p ack -e 40 -i 295 -a 14 h -t 0.584584 -s 7 -d 6 -p ack -e 40 -i 295 -a 14 - -t 0.584987 -s 3 -d 8 -p tcp -e 1000 -i 298 -a 21 h -t 0.584987 -s 3 -d 8 -p tcp -e 1000 -i 298 -a 21 r -t 0.585688 -s 9 -d 8 -p ack -e 40 -i 287 -a 21 + -t 0.585688 -s 8 -d 3 -p ack -e 40 -i 287 -a 21 - -t 0.585688 -s 8 -d 3 -p ack -e 40 -i 287 -a 21 h -t 0.585688 -s 8 -d 3 -p ack -e 40 -i 287 -a 21 r -t 0.587187 -s 3 -d 8 -p tcp -e 1000 -i 296 -a 21 - -t 0.587187 -s 8 -d 9 -p tcp -e 1000 -i 292 -a 20 h -t 0.587187 -s 8 -d 9 -p tcp -e 1000 -i 292 -a 20 + -t 0.587187 -s 8 -d 9 -p tcp -e 1000 -i 296 -a 21 - -t 0.587752 -s 6 -d 7 -p tcp -e 1000 -i 293 -a 13 h -t 0.587752 -s 6 -d 7 -p tcp -e 1000 -i 293 -a 13 r -t 0.587987 -s 3 -d 8 -p tcp -e 1000 -i 297 -a 21 + -t 0.587987 -s 8 -d 9 -p tcp -e 1000 -i 297 -a 21 r -t 0.588552 -s 7 -d 2 -p tcp -e 1000 -i 275 -a 12 + -t 0.588552 -s 2 -d 7 -p ack -e 40 -i 299 -a 12 - -t 0.588552 -s 2 -d 7 -p ack -e 40 -i 299 -a 12 h -t 0.588552 -s 2 -d 7 -p ack -e 40 -i 299 -a 12 r -t 0.588787 -s 3 -d 8 -p tcp -e 1000 -i 298 -a 21 r -t 0.58872 -s 8 -d 3 -p ack -e 40 -i 287 -a 21 + -t 0.588787 -s 8 -d 9 -p tcp -e 1000 -i 298 -a 21 r -t 0.588904 -s 7 -d 6 -p ack -e 40 -i 288 -a 11 + -t 0.588904 -s 6 -d 1 -p ack -e 40 -i 288 -a 11 - -t 0.588904 -s 6 -d 1 -p ack -e 40 -i 288 -a 11 h -t 0.588904 -s 6 -d 1 -p ack -e 40 -i 288 -a 11 r -t 0.591752 -s 6 -d 7 -p tcp -e 1000 -i 278 -a 14 + -t 0.591752 -s 7 -d 2 -p tcp -e 1000 -i 278 -a 14 - -t 0.591752 -s 7 -d 2 -p tcp -e 1000 -i 278 -a 14 h -t 0.591752 -s 7 -d 2 -p tcp -e 1000 -i 278 -a 14 r -t 0.591936 -s 6 -d 1 -p ack -e 40 -i 288 -a 11 + -t 0.591936 -s 1 -d 6 -p tcp -e 1000 -i 300 -a 11 - -t 0.591936 -s 1 -d 6 -p tcp -e 1000 -i 300 -a 11 h -t 0.591936 -s 1 -d 6 -p tcp -e 1000 -i 300 -a 11 + -t 0.591936 -s 1 -d 6 -p tcp -e 1000 -i 301 -a 11 - -t 0.59252 -s 8 -d 9 -p tcp -e 1000 -i 296 -a 21 h -t 0.59252 -s 8 -d 9 -p tcp -e 1000 -i 296 -a 21 r -t 0.592584 -s 2 -d 7 -p ack -e 40 -i 299 -a 12 + -t 0.592584 -s 7 -d 6 -p ack -e 40 -i 299 -a 12 - -t 0.592584 -s 7 -d 6 -p ack -e 40 -i 299 -a 12 h -t 0.592584 -s 7 -d 6 -p ack -e 40 -i 299 -a 12 - -t 0.592736 -s 1 -d 6 -p tcp -e 1000 -i 301 -a 11 h -t 0.592736 -s 1 -d 6 -p tcp -e 1000 -i 301 -a 11 r -t 0.595736 -s 1 -d 6 -p tcp -e 1000 -i 300 -a 11 + -t 0.595736 -s 6 -d 7 -p tcp -e 1000 -i 300 -a 11 - -t 0.595752 -s 6 -d 7 -p tcp -e 1000 -i 294 -a 13 h -t 0.595752 -s 6 -d 7 -p tcp -e 1000 -i 294 -a 13 r -t 0.596536 -s 1 -d 6 -p tcp -e 1000 -i 301 -a 11 + -t 0.596536 -s 6 -d 7 -p tcp -e 1000 -i 301 -a 11 r -t 0.596552 -s 7 -d 2 -p tcp -e 1000 -i 278 -a 14 + -t 0.596552 -s 2 -d 7 -p ack -e 40 -i 302 -a 14 - -t 0.596552 -s 2 -d 7 -p ack -e 40 -i 302 -a 14 h -t 0.596552 -s 2 -d 7 -p ack -e 40 -i 302 -a 14 r -t 0.596904 -s 7 -d 6 -p ack -e 40 -i 289 -a 12 + -t 0.596904 -s 6 -d 1 -p ack -e 40 -i 289 -a 12 - -t 0.596904 -s 6 -d 1 -p ack -e 40 -i 289 -a 12 h -t 0.596904 -s 6 -d 1 -p ack -e 40 -i 289 -a 12 - -t 0.597853 -s 8 -d 9 -p tcp -e 1000 -i 297 -a 21 h -t 0.597853 -s 8 -d 9 -p tcp -e 1000 -i 297 -a 21 r -t 0.599752 -s 6 -d 7 -p tcp -e 1000 -i 285 -a 13 + -t 0.599752 -s 7 -d 2 -p tcp -e 1000 -i 285 -a 13 - -t 0.599752 -s 7 -d 2 -p tcp -e 1000 -i 285 -a 13 h -t 0.599752 -s 7 -d 2 -p tcp -e 1000 -i 285 -a 13 r -t 0.599936 -s 6 -d 1 -p ack -e 40 -i 289 -a 12 r -t 0.600584 -s 2 -d 7 -p ack -e 40 -i 302 -a 14 + -t 0.600584 -s 7 -d 6 -p ack -e 40 -i 302 -a 14 - -t 0.600584 -s 7 -d 6 -p ack -e 40 -i 302 -a 14 h -t 0.600584 -s 7 -d 6 -p ack -e 40 -i 302 -a 14 r -t 0.601853 -s 8 -d 9 -p tcp -e 1000 -i 290 -a 20 + -t 0.601853 -s 9 -d 10 -p tcp -e 1000 -i 290 -a 20 - -t 0.601853 -s 9 -d 10 -p tcp -e 1000 -i 290 -a 20 h -t 0.601853 -s 9 -d 10 -p tcp -e 1000 -i 290 -a 20 - -t 0.603187 -s 8 -d 9 -p tcp -e 1000 -i 298 -a 21 h -t 0.603187 -s 8 -d 9 -p tcp -e 1000 -i 298 -a 21 - -t 0.603752 -s 6 -d 7 -p tcp -e 1000 -i 300 -a 11 h -t 0.603752 -s 6 -d 7 -p tcp -e 1000 -i 300 -a 11 r -t 0.604552 -s 7 -d 2 -p tcp -e 1000 -i 285 -a 13 + -t 0.604552 -s 2 -d 7 -p ack -e 40 -i 303 -a 13 - -t 0.604552 -s 2 -d 7 -p ack -e 40 -i 303 -a 13 h -t 0.604552 -s 2 -d 7 -p ack -e 40 -i 303 -a 13 r -t 0.604904 -s 7 -d 6 -p ack -e 40 -i 295 -a 14 + -t 0.604904 -s 6 -d 1 -p ack -e 40 -i 295 -a 14 - -t 0.604904 -s 6 -d 1 -p ack -e 40 -i 295 -a 14 h -t 0.604904 -s 6 -d 1 -p ack -e 40 -i 295 -a 14 r -t 0.606653 -s 9 -d 10 -p tcp -e 1000 -i 290 -a 20 + -t 0.606653 -s 4 -d 10 -p ack -e 40 -i 304 -a 20 - -t 0.606653 -s 4 -d 10 -p ack -e 40 -i 304 -a 20 h -t 0.606653 -s 4 -d 10 -p ack -e 40 -i 304 -a 20 r -t 0.607186 -s 8 -d 9 -p tcp -e 1000 -i 291 -a 20 + -t 0.607187 -s 9 -d 10 -p tcp -e 1000 -i 291 -a 20 - -t 0.607187 -s 9 -d 10 -p tcp -e 1000 -i 291 -a 20 h -t 0.607187 -s 9 -d 10 -p tcp -e 1000 -i 291 -a 20 r -t 0.607752 -s 6 -d 7 -p tcp -e 1000 -i 286 -a 13 + -t 0.607752 -s 7 -d 2 -p tcp -e 1000 -i 286 -a 13 - -t 0.607752 -s 7 -d 2 -p tcp -e 1000 -i 286 -a 13 h -t 0.607752 -s 7 -d 2 -p tcp -e 1000 -i 286 -a 13 r -t 0.607936 -s 6 -d 1 -p ack -e 40 -i 295 -a 14 + -t 0.607936 -s 1 -d 6 -p tcp -e 1000 -i 305 -a 14 - -t 0.607936 -s 1 -d 6 -p tcp -e 1000 -i 305 -a 14 h -t 0.607936 -s 1 -d 6 -p tcp -e 1000 -i 305 -a 14 + -t 0.607936 -s 1 -d 6 -p tcp -e 1000 -i 306 -a 14 r -t 0.608584 -s 2 -d 7 -p ack -e 40 -i 303 -a 13 + -t 0.608584 -s 7 -d 6 -p ack -e 40 -i 303 -a 13 - -t 0.608584 -s 7 -d 6 -p ack -e 40 -i 303 -a 13 h -t 0.608584 -s 7 -d 6 -p ack -e 40 -i 303 -a 13 - -t 0.608736 -s 1 -d 6 -p tcp -e 1000 -i 306 -a 14 h -t 0.608736 -s 1 -d 6 -p tcp -e 1000 -i 306 -a 14 r -t 0.610685 -s 4 -d 10 -p ack -e 40 -i 304 -a 20 + -t 0.610685 -s 9 -d 8 -p ack -e 40 -i 304 -a 20 - -t 0.610685 -s 9 -d 8 -p ack -e 40 -i 304 -a 20 h -t 0.610685 -s 9 -d 8 -p ack -e 40 -i 304 -a 20 r -t 0.611736 -s 1 -d 6 -p tcp -e 1000 -i 305 -a 14 + -t 0.611736 -s 6 -d 7 -p tcp -e 1000 -i 305 -a 14 - -t 0.611752 -s 6 -d 7 -p tcp -e 1000 -i 301 -a 11 h -t 0.611752 -s 6 -d 7 -p tcp -e 1000 -i 301 -a 11 r -t 0.611987 -s 9 -d 10 -p tcp -e 1000 -i 291 -a 20 + -t 0.611987 -s 4 -d 10 -p ack -e 40 -i 307 -a 20 - -t 0.611987 -s 4 -d 10 -p ack -e 40 -i 307 -a 20 h -t 0.611987 -s 4 -d 10 -p ack -e 40 -i 307 -a 20 r -t 0.61252 -s 8 -d 9 -p tcp -e 1000 -i 292 -a 20 + -t 0.61252 -s 9 -d 10 -p tcp -e 1000 -i 292 -a 20 - -t 0.61252 -s 9 -d 10 -p tcp -e 1000 -i 292 -a 20 h -t 0.61252 -s 9 -d 10 -p tcp -e 1000 -i 292 -a 20 r -t 0.612536 -s 1 -d 6 -p tcp -e 1000 -i 306 -a 14 + -t 0.612536 -s 6 -d 7 -p tcp -e 1000 -i 306 -a 14 r -t 0.612552 -s 7 -d 2 -p tcp -e 1000 -i 286 -a 13 + -t 0.612552 -s 2 -d 7 -p ack -e 40 -i 308 -a 13 - -t 0.612552 -s 2 -d 7 -p ack -e 40 -i 308 -a 13 h -t 0.612552 -s 2 -d 7 -p ack -e 40 -i 308 -a 13 r -t 0.612904 -s 7 -d 6 -p ack -e 40 -i 299 -a 12 + -t 0.612904 -s 6 -d 1 -p ack -e 40 -i 299 -a 12 - -t 0.612904 -s 6 -d 1 -p ack -e 40 -i 299 -a 12 h -t 0.612904 -s 6 -d 1 -p ack -e 40 -i 299 -a 12 r -t 0.615752 -s 6 -d 7 -p tcp -e 1000 -i 293 -a 13 + -t 0.615752 -s 7 -d 2 -p tcp -e 1000 -i 293 -a 13 - -t 0.615752 -s 7 -d 2 -p tcp -e 1000 -i 293 -a 13 h -t 0.615752 -s 7 -d 2 -p tcp -e 1000 -i 293 -a 13 r -t 0.615936 -s 6 -d 1 -p ack -e 40 -i 299 -a 12 + -t 0.615936 -s 1 -d 6 -p tcp -e 1000 -i 309 -a 12 - -t 0.615936 -s 1 -d 6 -p tcp -e 1000 -i 309 -a 12 h -t 0.615936 -s 1 -d 6 -p tcp -e 1000 -i 309 -a 12 r -t 0.616019 -s 4 -d 10 -p ack -e 40 -i 307 -a 20 + -t 0.616019 -s 9 -d 8 -p ack -e 40 -i 307 -a 20 - -t 0.616019 -s 9 -d 8 -p ack -e 40 -i 307 -a 20 h -t 0.616019 -s 9 -d 8 -p ack -e 40 -i 307 -a 20 r -t 0.616584 -s 2 -d 7 -p ack -e 40 -i 308 -a 13 + -t 0.616584 -s 7 -d 6 -p ack -e 40 -i 308 -a 13 - -t 0.616584 -s 7 -d 6 -p ack -e 40 -i 308 -a 13 h -t 0.616584 -s 7 -d 6 -p ack -e 40 -i 308 -a 13 r -t 0.61732 -s 9 -d 10 -p tcp -e 1000 -i 292 -a 20 + -t 0.61732 -s 4 -d 10 -p ack -e 40 -i 310 -a 20 - -t 0.61732 -s 4 -d 10 -p ack -e 40 -i 310 -a 20 h -t 0.61732 -s 4 -d 10 -p ack -e 40 -i 310 -a 20 r -t 0.617853 -s 8 -d 9 -p tcp -e 1000 -i 296 -a 21 + -t 0.617853 -s 9 -d 10 -p tcp -e 1000 -i 296 -a 21 - -t 0.617853 -s 9 -d 10 -p tcp -e 1000 -i 296 -a 21 h -t 0.617853 -s 9 -d 10 -p tcp -e 1000 -i 296 -a 21 r -t 0.619736 -s 1 -d 6 -p tcp -e 1000 -i 309 -a 12 + -t 0.619736 -s 6 -d 7 -p tcp -e 1000 -i 309 -a 12 - -t 0.619752 -s 6 -d 7 -p tcp -e 1000 -i 305 -a 14 h -t 0.619752 -s 6 -d 7 -p tcp -e 1000 -i 305 -a 14 r -t 0.620552 -s 7 -d 2 -p tcp -e 1000 -i 293 -a 13 + -t 0.620552 -s 2 -d 7 -p ack -e 40 -i 311 -a 13 - -t 0.620552 -s 2 -d 7 -p ack -e 40 -i 311 -a 13 h -t 0.620552 -s 2 -d 7 -p ack -e 40 -i 311 -a 13 r -t 0.620904 -s 7 -d 6 -p ack -e 40 -i 302 -a 14 + -t 0.620904 -s 6 -d 1 -p ack -e 40 -i 302 -a 14 - -t 0.620904 -s 6 -d 1 -p ack -e 40 -i 302 -a 14 h -t 0.620904 -s 6 -d 1 -p ack -e 40 -i 302 -a 14 r -t 0.621352 -s 4 -d 10 -p ack -e 40 -i 310 -a 20 + -t 0.621352 -s 9 -d 8 -p ack -e 40 -i 310 -a 20 - -t 0.621352 -s 9 -d 8 -p ack -e 40 -i 310 -a 20 h -t 0.621352 -s 9 -d 8 -p ack -e 40 -i 310 -a 20 r -t 0.622653 -s 9 -d 10 -p tcp -e 1000 -i 296 -a 21 + -t 0.622653 -s 4 -d 10 -p ack -e 40 -i 312 -a 21 - -t 0.622653 -s 4 -d 10 -p ack -e 40 -i 312 -a 21 h -t 0.622653 -s 4 -d 10 -p ack -e 40 -i 312 -a 21 r -t 0.623186 -s 8 -d 9 -p tcp -e 1000 -i 297 -a 21 + -t 0.623187 -s 9 -d 10 -p tcp -e 1000 -i 297 -a 21 - -t 0.623187 -s 9 -d 10 -p tcp -e 1000 -i 297 -a 21 h -t 0.623187 -s 9 -d 10 -p tcp -e 1000 -i 297 -a 21 r -t 0.623752 -s 6 -d 7 -p tcp -e 1000 -i 294 -a 13 + -t 0.623752 -s 7 -d 2 -p tcp -e 1000 -i 294 -a 13 - -t 0.623752 -s 7 -d 2 -p tcp -e 1000 -i 294 -a 13 h -t 0.623752 -s 7 -d 2 -p tcp -e 1000 -i 294 -a 13 r -t 0.623936 -s 6 -d 1 -p ack -e 40 -i 302 -a 14 + -t 0.623936 -s 1 -d 6 -p tcp -e 1000 -i 313 -a 14 - -t 0.623936 -s 1 -d 6 -p tcp -e 1000 -i 313 -a 14 h -t 0.623936 -s 1 -d 6 -p tcp -e 1000 -i 313 -a 14 + -t 0.623936 -s 1 -d 6 -p tcp -e 1000 -i 314 -a 14 r -t 0.624584 -s 2 -d 7 -p ack -e 40 -i 311 -a 13 + -t 0.624584 -s 7 -d 6 -p ack -e 40 -i 311 -a 13 - -t 0.624584 -s 7 -d 6 -p ack -e 40 -i 311 -a 13 h -t 0.624584 -s 7 -d 6 -p ack -e 40 -i 311 -a 13 - -t 0.624736 -s 1 -d 6 -p tcp -e 1000 -i 314 -a 14 h -t 0.624736 -s 1 -d 6 -p tcp -e 1000 -i 314 -a 14 r -t 0.626685 -s 4 -d 10 -p ack -e 40 -i 312 -a 21 + -t 0.626685 -s 9 -d 8 -p ack -e 40 -i 312 -a 21 - -t 0.626685 -s 9 -d 8 -p ack -e 40 -i 312 -a 21 h -t 0.626685 -s 9 -d 8 -p ack -e 40 -i 312 -a 21 r -t 0.627736 -s 1 -d 6 -p tcp -e 1000 -i 313 -a 14 + -t 0.627736 -s 6 -d 7 -p tcp -e 1000 -i 313 -a 14 - -t 0.627752 -s 6 -d 7 -p tcp -e 1000 -i 309 -a 12 h -t 0.627752 -s 6 -d 7 -p tcp -e 1000 -i 309 -a 12 r -t 0.627987 -s 9 -d 10 -p tcp -e 1000 -i 297 -a 21 + -t 0.627987 -s 4 -d 10 -p ack -e 40 -i 315 -a 21 - -t 0.627987 -s 4 -d 10 -p ack -e 40 -i 315 -a 21 h -t 0.627987 -s 4 -d 10 -p ack -e 40 -i 315 -a 21 r -t 0.62852 -s 8 -d 9 -p tcp -e 1000 -i 298 -a 21 + -t 0.62852 -s 9 -d 10 -p tcp -e 1000 -i 298 -a 21 - -t 0.62852 -s 9 -d 10 -p tcp -e 1000 -i 298 -a 21 h -t 0.62852 -s 9 -d 10 -p tcp -e 1000 -i 298 -a 21 r -t 0.628536 -s 1 -d 6 -p tcp -e 1000 -i 314 -a 14 + -t 0.628536 -s 6 -d 7 -p tcp -e 1000 -i 314 -a 14 r -t 0.628552 -s 7 -d 2 -p tcp -e 1000 -i 294 -a 13 + -t 0.628552 -s 2 -d 7 -p ack -e 40 -i 316 -a 13 - -t 0.628552 -s 2 -d 7 -p ack -e 40 -i 316 -a 13 h -t 0.628552 -s 2 -d 7 -p ack -e 40 -i 316 -a 13 r -t 0.628904 -s 7 -d 6 -p ack -e 40 -i 303 -a 13 + -t 0.628904 -s 6 -d 1 -p ack -e 40 -i 303 -a 13 - -t 0.628904 -s 6 -d 1 -p ack -e 40 -i 303 -a 13 h -t 0.628904 -s 6 -d 1 -p ack -e 40 -i 303 -a 13 r -t 0.630898 -s 9 -d 8 -p ack -e 40 -i 304 -a 20 + -t 0.630899 -s 8 -d 3 -p ack -e 40 -i 304 -a 20 - -t 0.630899 -s 8 -d 3 -p ack -e 40 -i 304 -a 20 h -t 0.630899 -s 8 -d 3 -p ack -e 40 -i 304 -a 20 r -t 0.631752 -s 6 -d 7 -p tcp -e 1000 -i 300 -a 11 + -t 0.631752 -s 7 -d 2 -p tcp -e 1000 -i 300 -a 11 - -t 0.631752 -s 7 -d 2 -p tcp -e 1000 -i 300 -a 11 h -t 0.631752 -s 7 -d 2 -p tcp -e 1000 -i 300 -a 11 r -t 0.631936 -s 6 -d 1 -p ack -e 40 -i 303 -a 13 + -t 0.631936 -s 1 -d 6 -p tcp -e 1000 -i 317 -a 13 - -t 0.631936 -s 1 -d 6 -p tcp -e 1000 -i 317 -a 13 h -t 0.631936 -s 1 -d 6 -p tcp -e 1000 -i 317 -a 13 + -t 0.631936 -s 1 -d 6 -p tcp -e 1000 -i 318 -a 13 r -t 0.632019 -s 4 -d 10 -p ack -e 40 -i 315 -a 21 + -t 0.632019 -s 9 -d 8 -p ack -e 40 -i 315 -a 21 - -t 0.632019 -s 9 -d 8 -p ack -e 40 -i 315 -a 21 h -t 0.632019 -s 9 -d 8 -p ack -e 40 -i 315 -a 21 r -t 0.632584 -s 2 -d 7 -p ack -e 40 -i 316 -a 13 + -t 0.632584 -s 7 -d 6 -p ack -e 40 -i 316 -a 13 - -t 0.632584 -s 7 -d 6 -p ack -e 40 -i 316 -a 13 h -t 0.632584 -s 7 -d 6 -p ack -e 40 -i 316 -a 13 - -t 0.632736 -s 1 -d 6 -p tcp -e 1000 -i 318 -a 13 h -t 0.632736 -s 1 -d 6 -p tcp -e 1000 -i 318 -a 13 r -t 0.63332 -s 9 -d 10 -p tcp -e 1000 -i 298 -a 21 + -t 0.63332 -s 4 -d 10 -p ack -e 40 -i 319 -a 21 - -t 0.63332 -s 4 -d 10 -p ack -e 40 -i 319 -a 21 h -t 0.63332 -s 4 -d 10 -p ack -e 40 -i 319 -a 21 r -t 0.633931 -s 8 -d 3 -p ack -e 40 -i 304 -a 20 + -t 0.633931 -s 3 -d 8 -p tcp -e 1000 -i 320 -a 20 - -t 0.633931 -s 3 -d 8 -p tcp -e 1000 -i 320 -a 20 h -t 0.633931 -s 3 -d 8 -p tcp -e 1000 -i 320 -a 20 + -t 0.633931 -s 3 -d 8 -p tcp -e 1000 -i 321 -a 20 + -t 0.633931 -s 3 -d 8 -p tcp -e 1000 -i 322 -a 20 - -t 0.634731 -s 3 -d 8 -p tcp -e 1000 -i 321 -a 20 h -t 0.634731 -s 3 -d 8 -p tcp -e 1000 -i 321 -a 20 - -t 0.635531 -s 3 -d 8 -p tcp -e 1000 -i 322 -a 20 h -t 0.635531 -s 3 -d 8 -p tcp -e 1000 -i 322 -a 20 r -t 0.635736 -s 1 -d 6 -p tcp -e 1000 -i 317 -a 13 + -t 0.635736 -s 6 -d 7 -p tcp -e 1000 -i 317 -a 13 - -t 0.635752 -s 6 -d 7 -p tcp -e 1000 -i 306 -a 14 h -t 0.635752 -s 6 -d 7 -p tcp -e 1000 -i 306 -a 14 r -t 0.636232 -s 9 -d 8 -p ack -e 40 -i 307 -a 20 + -t 0.636232 -s 8 -d 3 -p ack -e 40 -i 307 -a 20 - -t 0.636232 -s 8 -d 3 -p ack -e 40 -i 307 -a 20 h -t 0.636232 -s 8 -d 3 -p ack -e 40 -i 307 -a 20 r -t 0.636536 -s 1 -d 6 -p tcp -e 1000 -i 318 -a 13 + -t 0.636536 -s 6 -d 7 -p tcp -e 1000 -i 318 -a 13 r -t 0.636552 -s 7 -d 2 -p tcp -e 1000 -i 300 -a 11 + -t 0.636552 -s 2 -d 7 -p ack -e 40 -i 323 -a 11 - -t 0.636552 -s 2 -d 7 -p ack -e 40 -i 323 -a 11 h -t 0.636552 -s 2 -d 7 -p ack -e 40 -i 323 -a 11 r -t 0.636904 -s 7 -d 6 -p ack -e 40 -i 308 -a 13 + -t 0.636904 -s 6 -d 1 -p ack -e 40 -i 308 -a 13 - -t 0.636904 -s 6 -d 1 -p ack -e 40 -i 308 -a 13 h -t 0.636904 -s 6 -d 1 -p ack -e 40 -i 308 -a 13 r -t 0.637352 -s 4 -d 10 -p ack -e 40 -i 319 -a 21 + -t 0.637352 -s 9 -d 8 -p ack -e 40 -i 319 -a 21 - -t 0.637352 -s 9 -d 8 -p ack -e 40 -i 319 -a 21 h -t 0.637352 -s 9 -d 8 -p ack -e 40 -i 319 -a 21 r -t 0.637731 -s 3 -d 8 -p tcp -e 1000 -i 320 -a 20 + -t 0.637731 -s 8 -d 9 -p tcp -e 1000 -i 320 -a 20 - -t 0.637731 -s 8 -d 9 -p tcp -e 1000 -i 320 -a 20 h -t 0.637731 -s 8 -d 9 -p tcp -e 1000 -i 320 -a 20 r -t 0.638531 -s 3 -d 8 -p tcp -e 1000 -i 321 -a 20 + -t 0.638531 -s 8 -d 9 -p tcp -e 1000 -i 321 -a 20 r -t 0.639331 -s 3 -d 8 -p tcp -e 1000 -i 322 -a 20 r -t 0.639264 -s 8 -d 3 -p ack -e 40 -i 307 -a 20 + -t 0.639331 -s 8 -d 9 -p tcp -e 1000 -i 322 -a 20 r -t 0.639752 -s 6 -d 7 -p tcp -e 1000 -i 301 -a 11 + -t 0.639752 -s 7 -d 2 -p tcp -e 1000 -i 301 -a 11 - -t 0.639752 -s 7 -d 2 -p tcp -e 1000 -i 301 -a 11 h -t 0.639752 -s 7 -d 2 -p tcp -e 1000 -i 301 -a 11 r -t 0.639936 -s 6 -d 1 -p ack -e 40 -i 308 -a 13 + -t 0.639936 -s 1 -d 6 -p tcp -e 1000 -i 324 -a 13 - -t 0.639936 -s 1 -d 6 -p tcp -e 1000 -i 324 -a 13 h -t 0.639936 -s 1 -d 6 -p tcp -e 1000 -i 324 -a 13 + -t 0.639936 -s 1 -d 6 -p tcp -e 1000 -i 325 -a 13 r -t 0.640584 -s 2 -d 7 -p ack -e 40 -i 323 -a 11 + -t 0.640584 -s 7 -d 6 -p ack -e 40 -i 323 -a 11 - -t 0.640584 -s 7 -d 6 -p ack -e 40 -i 323 -a 11 h -t 0.640584 -s 7 -d 6 -p ack -e 40 -i 323 -a 11 - -t 0.640736 -s 1 -d 6 -p tcp -e 1000 -i 325 -a 13 h -t 0.640736 -s 1 -d 6 -p tcp -e 1000 -i 325 -a 13 r -t 0.641565 -s 9 -d 8 -p ack -e 40 -i 310 -a 20 + -t 0.641565 -s 8 -d 3 -p ack -e 40 -i 310 -a 20 - -t 0.641565 -s 8 -d 3 -p ack -e 40 -i 310 -a 20 h -t 0.641565 -s 8 -d 3 -p ack -e 40 -i 310 -a 20 - -t 0.643064 -s 8 -d 9 -p tcp -e 1000 -i 321 -a 20 h -t 0.643064 -s 8 -d 9 -p tcp -e 1000 -i 321 -a 20 r -t 0.643736 -s 1 -d 6 -p tcp -e 1000 -i 324 -a 13 + -t 0.643736 -s 6 -d 7 -p tcp -e 1000 -i 324 -a 13 - -t 0.643752 -s 6 -d 7 -p tcp -e 1000 -i 313 -a 14 h -t 0.643752 -s 6 -d 7 -p tcp -e 1000 -i 313 -a 14 r -t 0.644536 -s 1 -d 6 -p tcp -e 1000 -i 325 -a 13 + -t 0.644536 -s 6 -d 7 -p tcp -e 1000 -i 325 -a 13 r -t 0.644552 -s 7 -d 2 -p tcp -e 1000 -i 301 -a 11 + -t 0.644552 -s 2 -d 7 -p ack -e 40 -i 326 -a 11 - -t 0.644552 -s 2 -d 7 -p ack -e 40 -i 326 -a 11 h -t 0.644552 -s 2 -d 7 -p ack -e 40 -i 326 -a 11 r -t 0.644597 -s 8 -d 3 -p ack -e 40 -i 310 -a 20 + -t 0.644597 -s 3 -d 8 -p tcp -e 1000 -i 327 -a 20 - -t 0.644597 -s 3 -d 8 -p tcp -e 1000 -i 327 -a 20 h -t 0.644597 -s 3 -d 8 -p tcp -e 1000 -i 327 -a 20 + -t 0.644597 -s 3 -d 8 -p tcp -e 1000 -i 328 -a 20 + -t 0.644597 -s 3 -d 8 -p tcp -e 1000 -i 329 -a 20 r -t 0.644904 -s 7 -d 6 -p ack -e 40 -i 311 -a 13 + -t 0.644904 -s 6 -d 1 -p ack -e 40 -i 311 -a 13 - -t 0.644904 -s 6 -d 1 -p ack -e 40 -i 311 -a 13 h -t 0.644904 -s 6 -d 1 -p ack -e 40 -i 311 -a 13 - -t 0.645397 -s 3 -d 8 -p tcp -e 1000 -i 328 -a 20 h -t 0.645397 -s 3 -d 8 -p tcp -e 1000 -i 328 -a 20 - -t 0.646197 -s 3 -d 8 -p tcp -e 1000 -i 329 -a 20 h -t 0.646197 -s 3 -d 8 -p tcp -e 1000 -i 329 -a 20 r -t 0.646898 -s 9 -d 8 -p ack -e 40 -i 312 -a 21 + -t 0.646899 -s 8 -d 3 -p ack -e 40 -i 312 -a 21 - -t 0.646899 -s 8 -d 3 -p ack -e 40 -i 312 -a 21 h -t 0.646899 -s 8 -d 3 -p ack -e 40 -i 312 -a 21 r -t 0.647752 -s 6 -d 7 -p tcp -e 1000 -i 305 -a 14 + -t 0.647752 -s 7 -d 2 -p tcp -e 1000 -i 305 -a 14 - -t 0.647752 -s 7 -d 2 -p tcp -e 1000 -i 305 -a 14 h -t 0.647752 -s 7 -d 2 -p tcp -e 1000 -i 305 -a 14 r -t 0.647936 -s 6 -d 1 -p ack -e 40 -i 311 -a 13 + -t 0.647936 -s 1 -d 6 -p tcp -e 1000 -i 330 -a 13 - -t 0.647936 -s 1 -d 6 -p tcp -e 1000 -i 330 -a 13 h -t 0.647936 -s 1 -d 6 -p tcp -e 1000 -i 330 -a 13 + -t 0.647936 -s 1 -d 6 -p tcp -e 1000 -i 331 -a 13 r -t 0.648397 -s 3 -d 8 -p tcp -e 1000 -i 327 -a 20 - -t 0.648397 -s 8 -d 9 -p tcp -e 1000 -i 322 -a 20 h -t 0.648397 -s 8 -d 9 -p tcp -e 1000 -i 322 -a 20 + -t 0.648397 -s 8 -d 9 -p tcp -e 1000 -i 327 -a 20 r -t 0.648584 -s 2 -d 7 -p ack -e 40 -i 326 -a 11 + -t 0.648584 -s 7 -d 6 -p ack -e 40 -i 326 -a 11 - -t 0.648584 -s 7 -d 6 -p ack -e 40 -i 326 -a 11 h -t 0.648584 -s 7 -d 6 -p ack -e 40 -i 326 -a 11 - -t 0.648736 -s 1 -d 6 -p tcp -e 1000 -i 331 -a 13 h -t 0.648736 -s 1 -d 6 -p tcp -e 1000 -i 331 -a 13 r -t 0.649197 -s 3 -d 8 -p tcp -e 1000 -i 328 -a 20 + -t 0.649197 -s 8 -d 9 -p tcp -e 1000 -i 328 -a 20 r -t 0.649931 -s 8 -d 3 -p ack -e 40 -i 312 -a 21 + -t 0.649931 -s 3 -d 8 -p tcp -e 1000 -i 332 -a 21 - -t 0.649931 -s 3 -d 8 -p tcp -e 1000 -i 332 -a 21 h -t 0.649931 -s 3 -d 8 -p tcp -e 1000 -i 332 -a 21 + -t 0.649931 -s 3 -d 8 -p tcp -e 1000 -i 333 -a 21 + -t 0.649931 -s 3 -d 8 -p tcp -e 1000 -i 334 -a 21 r -t 0.649997 -s 3 -d 8 -p tcp -e 1000 -i 329 -a 20 + -t 0.649997 -s 8 -d 9 -p tcp -e 1000 -i 329 -a 20 - -t 0.650731 -s 3 -d 8 -p tcp -e 1000 -i 333 -a 21 h -t 0.650731 -s 3 -d 8 -p tcp -e 1000 -i 333 -a 21 - -t 0.651531 -s 3 -d 8 -p tcp -e 1000 -i 334 -a 21 h -t 0.651531 -s 3 -d 8 -p tcp -e 1000 -i 334 -a 21 r -t 0.651736 -s 1 -d 6 -p tcp -e 1000 -i 330 -a 13 + -t 0.651736 -s 6 -d 7 -p tcp -e 1000 -i 330 -a 13 - -t 0.651752 -s 6 -d 7 -p tcp -e 1000 -i 317 -a 13 h -t 0.651752 -s 6 -d 7 -p tcp -e 1000 -i 317 -a 13 r -t 0.652232 -s 9 -d 8 -p ack -e 40 -i 315 -a 21 + -t 0.652232 -s 8 -d 3 -p ack -e 40 -i 315 -a 21 - -t 0.652232 -s 8 -d 3 -p ack -e 40 -i 315 -a 21 h -t 0.652232 -s 8 -d 3 -p ack -e 40 -i 315 -a 21 r -t 0.652536 -s 1 -d 6 -p tcp -e 1000 -i 331 -a 13 + -t 0.652536 -s 6 -d 7 -p tcp -e 1000 -i 331 -a 13 r -t 0.652552 -s 7 -d 2 -p tcp -e 1000 -i 305 -a 14 + -t 0.652552 -s 2 -d 7 -p ack -e 40 -i 335 -a 14 - -t 0.652552 -s 2 -d 7 -p ack -e 40 -i 335 -a 14 h -t 0.652552 -s 2 -d 7 -p ack -e 40 -i 335 -a 14 r -t 0.652904 -s 7 -d 6 -p ack -e 40 -i 316 -a 13 + -t 0.652904 -s 6 -d 1 -p ack -e 40 -i 316 -a 13 - -t 0.652904 -s 6 -d 1 -p ack -e 40 -i 316 -a 13 h -t 0.652904 -s 6 -d 1 -p ack -e 40 -i 316 -a 13 r -t 0.653731 -s 3 -d 8 -p tcp -e 1000 -i 332 -a 21 - -t 0.653731 -s 8 -d 9 -p tcp -e 1000 -i 327 -a 20 h -t 0.653731 -s 8 -d 9 -p tcp -e 1000 -i 327 -a 20 + -t 0.653731 -s 8 -d 9 -p tcp -e 1000 -i 332 -a 21 r -t 0.654531 -s 3 -d 8 -p tcp -e 1000 -i 333 -a 21 + -t 0.654531 -s 8 -d 9 -p tcp -e 1000 -i 333 -a 21 r -t 0.655264 -s 8 -d 3 -p ack -e 40 -i 315 -a 21 r -t 0.655331 -s 3 -d 8 -p tcp -e 1000 -i 334 -a 21 + -t 0.655331 -s 8 -d 9 -p tcp -e 1000 -i 334 -a 21 r -t 0.655752 -s 6 -d 7 -p tcp -e 1000 -i 309 -a 12 + -t 0.655752 -s 7 -d 2 -p tcp -e 1000 -i 309 -a 12 - -t 0.655752 -s 7 -d 2 -p tcp -e 1000 -i 309 -a 12 h -t 0.655752 -s 7 -d 2 -p tcp -e 1000 -i 309 -a 12 r -t 0.655936 -s 6 -d 1 -p ack -e 40 -i 316 -a 13 + -t 0.655936 -s 1 -d 6 -p tcp -e 1000 -i 336 -a 13 - -t 0.655936 -s 1 -d 6 -p tcp -e 1000 -i 336 -a 13 h -t 0.655936 -s 1 -d 6 -p tcp -e 1000 -i 336 -a 13 + -t 0.655936 -s 1 -d 6 -p tcp -e 1000 -i 337 -a 13 r -t 0.656584 -s 2 -d 7 -p ack -e 40 -i 335 -a 14 + -t 0.656584 -s 7 -d 6 -p ack -e 40 -i 335 -a 14 - -t 0.656584 -s 7 -d 6 -p ack -e 40 -i 335 -a 14 h -t 0.656584 -s 7 -d 6 -p ack -e 40 -i 335 -a 14 - -t 0.656736 -s 1 -d 6 -p tcp -e 1000 -i 337 -a 13 h -t 0.656736 -s 1 -d 6 -p tcp -e 1000 -i 337 -a 13 r -t 0.657565 -s 9 -d 8 -p ack -e 40 -i 319 -a 21 + -t 0.657565 -s 8 -d 3 -p ack -e 40 -i 319 -a 21 - -t 0.657565 -s 8 -d 3 -p ack -e 40 -i 319 -a 21 h -t 0.657565 -s 8 -d 3 -p ack -e 40 -i 319 -a 21 - -t 0.659064 -s 8 -d 9 -p tcp -e 1000 -i 328 -a 20 h -t 0.659064 -s 8 -d 9 -p tcp -e 1000 -i 328 -a 20 r -t 0.659736 -s 1 -d 6 -p tcp -e 1000 -i 336 -a 13 + -t 0.659736 -s 6 -d 7 -p tcp -e 1000 -i 336 -a 13 - -t 0.659752 -s 6 -d 7 -p tcp -e 1000 -i 314 -a 14 h -t 0.659752 -s 6 -d 7 -p tcp -e 1000 -i 314 -a 14 r -t 0.660536 -s 1 -d 6 -p tcp -e 1000 -i 337 -a 13 + -t 0.660536 -s 6 -d 7 -p tcp -e 1000 -i 337 -a 13 r -t 0.660552 -s 7 -d 2 -p tcp -e 1000 -i 309 -a 12 + -t 0.660552 -s 2 -d 7 -p ack -e 40 -i 338 -a 12 - -t 0.660552 -s 2 -d 7 -p ack -e 40 -i 338 -a 12 h -t 0.660552 -s 2 -d 7 -p ack -e 40 -i 338 -a 12 r -t 0.660597 -s 8 -d 3 -p ack -e 40 -i 319 -a 21 + -t 0.660597 -s 3 -d 8 -p tcp -e 1000 -i 339 -a 21 - -t 0.660597 -s 3 -d 8 -p tcp -e 1000 -i 339 -a 21 h -t 0.660597 -s 3 -d 8 -p tcp -e 1000 -i 339 -a 21 + -t 0.660597 -s 3 -d 8 -p tcp -e 1000 -i 340 -a 21 r -t 0.660904 -s 7 -d 6 -p ack -e 40 -i 323 -a 11 + -t 0.660904 -s 6 -d 1 -p ack -e 40 -i 323 -a 11 - -t 0.660904 -s 6 -d 1 -p ack -e 40 -i 323 -a 11 h -t 0.660904 -s 6 -d 1 -p ack -e 40 -i 323 -a 11 - -t 0.661397 -s 3 -d 8 -p tcp -e 1000 -i 340 -a 21 h -t 0.661397 -s 3 -d 8 -p tcp -e 1000 -i 340 -a 21 r -t 0.663064 -s 8 -d 9 -p tcp -e 1000 -i 320 -a 20 + -t 0.663064 -s 9 -d 10 -p tcp -e 1000 -i 320 -a 20 - -t 0.663064 -s 9 -d 10 -p tcp -e 1000 -i 320 -a 20 h -t 0.663064 -s 9 -d 10 -p tcp -e 1000 -i 320 -a 20 r -t 0.663752 -s 6 -d 7 -p tcp -e 1000 -i 306 -a 14 + -t 0.663752 -s 7 -d 2 -p tcp -e 1000 -i 306 -a 14 - -t 0.663752 -s 7 -d 2 -p tcp -e 1000 -i 306 -a 14 h -t 0.663752 -s 7 -d 2 -p tcp -e 1000 -i 306 -a 14 r -t 0.663936 -s 6 -d 1 -p ack -e 40 -i 323 -a 11 + -t 0.663936 -s 1 -d 6 -p tcp -e 1000 -i 341 -a 11 - -t 0.663936 -s 1 -d 6 -p tcp -e 1000 -i 341 -a 11 h -t 0.663936 -s 1 -d 6 -p tcp -e 1000 -i 341 -a 11 + -t 0.663936 -s 1 -d 6 -p tcp -e 1000 -i 342 -a 11 r -t 0.664397 -s 3 -d 8 -p tcp -e 1000 -i 339 -a 21 - -t 0.664397 -s 8 -d 9 -p tcp -e 1000 -i 332 -a 21 h -t 0.664397 -s 8 -d 9 -p tcp -e 1000 -i 332 -a 21 + -t 0.664397 -s 8 -d 9 -p tcp -e 1000 -i 339 -a 21 r -t 0.664584 -s 2 -d 7 -p ack -e 40 -i 338 -a 12 + -t 0.664584 -s 7 -d 6 -p ack -e 40 -i 338 -a 12 - -t 0.664584 -s 7 -d 6 -p ack -e 40 -i 338 -a 12 h -t 0.664584 -s 7 -d 6 -p ack -e 40 -i 338 -a 12 - -t 0.664736 -s 1 -d 6 -p tcp -e 1000 -i 342 -a 11 h -t 0.664736 -s 1 -d 6 -p tcp -e 1000 -i 342 -a 11 r -t 0.665197 -s 3 -d 8 -p tcp -e 1000 -i 340 -a 21 + -t 0.665197 -s 8 -d 9 -p tcp -e 1000 -i 340 -a 21 r -t 0.667736 -s 1 -d 6 -p tcp -e 1000 -i 341 -a 11 + -t 0.667736 -s 6 -d 7 -p tcp -e 1000 -i 341 -a 11 - -t 0.667752 -s 6 -d 7 -p tcp -e 1000 -i 318 -a 13 h -t 0.667752 -s 6 -d 7 -p tcp -e 1000 -i 318 -a 13 r -t 0.667864 -s 9 -d 10 -p tcp -e 1000 -i 320 -a 20 + -t 0.667864 -s 4 -d 10 -p ack -e 40 -i 343 -a 20 - -t 0.667864 -s 4 -d 10 -p ack -e 40 -i 343 -a 20 h -t 0.667864 -s 4 -d 10 -p ack -e 40 -i 343 -a 20 r -t 0.668397 -s 8 -d 9 -p tcp -e 1000 -i 321 -a 20 + -t 0.668397 -s 9 -d 10 -p tcp -e 1000 -i 321 -a 20 - -t 0.668397 -s 9 -d 10 -p tcp -e 1000 -i 321 -a 20 h -t 0.668397 -s 9 -d 10 -p tcp -e 1000 -i 321 -a 20 r -t 0.668536 -s 1 -d 6 -p tcp -e 1000 -i 342 -a 11 + -t 0.668536 -s 6 -d 7 -p tcp -e 1000 -i 342 -a 11 r -t 0.668552 -s 7 -d 2 -p tcp -e 1000 -i 306 -a 14 + -t 0.668552 -s 2 -d 7 -p ack -e 40 -i 344 -a 14 - -t 0.668552 -s 2 -d 7 -p ack -e 40 -i 344 -a 14 h -t 0.668552 -s 2 -d 7 -p ack -e 40 -i 344 -a 14 r -t 0.668904 -s 7 -d 6 -p ack -e 40 -i 326 -a 11 + -t 0.668904 -s 6 -d 1 -p ack -e 40 -i 326 -a 11 - -t 0.668904 -s 6 -d 1 -p ack -e 40 -i 326 -a 11 h -t 0.668904 -s 6 -d 1 -p ack -e 40 -i 326 -a 11 - -t 0.669731 -s 8 -d 9 -p tcp -e 1000 -i 329 -a 20 h -t 0.669731 -s 8 -d 9 -p tcp -e 1000 -i 329 -a 20 r -t 0.671752 -s 6 -d 7 -p tcp -e 1000 -i 313 -a 14 + -t 0.671752 -s 7 -d 2 -p tcp -e 1000 -i 313 -a 14 - -t 0.671752 -s 7 -d 2 -p tcp -e 1000 -i 313 -a 14 h -t 0.671752 -s 7 -d 2 -p tcp -e 1000 -i 313 -a 14 r -t 0.671896 -s 4 -d 10 -p ack -e 40 -i 343 -a 20 + -t 0.671896 -s 9 -d 8 -p ack -e 40 -i 343 -a 20 - -t 0.671896 -s 9 -d 8 -p ack -e 40 -i 343 -a 20 h -t 0.671896 -s 9 -d 8 -p ack -e 40 -i 343 -a 20 r -t 0.671936 -s 6 -d 1 -p ack -e 40 -i 326 -a 11 + -t 0.671936 -s 1 -d 6 -p tcp -e 1000 -i 345 -a 11 - -t 0.671936 -s 1 -d 6 -p tcp -e 1000 -i 345 -a 11 h -t 0.671936 -s 1 -d 6 -p tcp -e 1000 -i 345 -a 11 + -t 0.671936 -s 1 -d 6 -p tcp -e 1000 -i 346 -a 11 + -t 0.671936 -s 1 -d 6 -p tcp -e 1000 -i 347 -a 11 r -t 0.672584 -s 2 -d 7 -p ack -e 40 -i 344 -a 14 + -t 0.672584 -s 7 -d 6 -p ack -e 40 -i 344 -a 14 - -t 0.672584 -s 7 -d 6 -p ack -e 40 -i 344 -a 14 h -t 0.672584 -s 7 -d 6 -p ack -e 40 -i 344 -a 14 - -t 0.672736 -s 1 -d 6 -p tcp -e 1000 -i 346 -a 11 h -t 0.672736 -s 1 -d 6 -p tcp -e 1000 -i 346 -a 11 r -t 0.673197 -s 9 -d 10 -p tcp -e 1000 -i 321 -a 20 + -t 0.673197 -s 4 -d 10 -p ack -e 40 -i 348 -a 20 - -t 0.673197 -s 4 -d 10 -p ack -e 40 -i 348 -a 20 h -t 0.673197 -s 4 -d 10 -p ack -e 40 -i 348 -a 20 - -t 0.673536 -s 1 -d 6 -p tcp -e 1000 -i 347 -a 11 h -t 0.673536 -s 1 -d 6 -p tcp -e 1000 -i 347 -a 11 r -t 0.67373 -s 8 -d 9 -p tcp -e 1000 -i 322 -a 20 + -t 0.673731 -s 9 -d 10 -p tcp -e 1000 -i 322 -a 20 - -t 0.673731 -s 9 -d 10 -p tcp -e 1000 -i 322 -a 20 h -t 0.673731 -s 9 -d 10 -p tcp -e 1000 -i 322 -a 20 - -t 0.675064 -s 8 -d 9 -p tcp -e 1000 -i 333 -a 21 h -t 0.675064 -s 8 -d 9 -p tcp -e 1000 -i 333 -a 21 r -t 0.675736 -s 1 -d 6 -p tcp -e 1000 -i 345 -a 11 + -t 0.675736 -s 6 -d 7 -p tcp -e 1000 -i 345 -a 11 - -t 0.675752 -s 6 -d 7 -p tcp -e 1000 -i 324 -a 13 h -t 0.675752 -s 6 -d 7 -p tcp -e 1000 -i 324 -a 13 r -t 0.676536 -s 1 -d 6 -p tcp -e 1000 -i 346 -a 11 + -t 0.676536 -s 6 -d 7 -p tcp -e 1000 -i 346 -a 11 r -t 0.676552 -s 7 -d 2 -p tcp -e 1000 -i 313 -a 14 + -t 0.676552 -s 2 -d 7 -p ack -e 40 -i 349 -a 14 - -t 0.676552 -s 2 -d 7 -p ack -e 40 -i 349 -a 14 h -t 0.676552 -s 2 -d 7 -p ack -e 40 -i 349 -a 14 r -t 0.676904 -s 7 -d 6 -p ack -e 40 -i 335 -a 14 + -t 0.676904 -s 6 -d 1 -p ack -e 40 -i 335 -a 14 - -t 0.676904 -s 6 -d 1 -p ack -e 40 -i 335 -a 14 h -t 0.676904 -s 6 -d 1 -p ack -e 40 -i 335 -a 14 r -t 0.677229 -s 4 -d 10 -p ack -e 40 -i 348 -a 20 + -t 0.677229 -s 9 -d 8 -p ack -e 40 -i 348 -a 20 - -t 0.677229 -s 9 -d 8 -p ack -e 40 -i 348 -a 20 h -t 0.677229 -s 9 -d 8 -p ack -e 40 -i 348 -a 20 r -t 0.677336 -s 1 -d 6 -p tcp -e 1000 -i 347 -a 11 + -t 0.677336 -s 6 -d 7 -p tcp -e 1000 -i 347 -a 11 d -t 0.677336 -s 6 -d 7 -p tcp -e 1000 -i 347 -a 11 r -t 0.678531 -s 9 -d 10 -p tcp -e 1000 -i 322 -a 20 + -t 0.678531 -s 4 -d 10 -p ack -e 40 -i 350 -a 20 - -t 0.678531 -s 4 -d 10 -p ack -e 40 -i 350 -a 20 h -t 0.678531 -s 4 -d 10 -p ack -e 40 -i 350 -a 20 r -t 0.679064 -s 8 -d 9 -p tcp -e 1000 -i 327 -a 20 + -t 0.679064 -s 9 -d 10 -p tcp -e 1000 -i 327 -a 20 - -t 0.679064 -s 9 -d 10 -p tcp -e 1000 -i 327 -a 20 h -t 0.679064 -s 9 -d 10 -p tcp -e 1000 -i 327 -a 20 r -t 0.679752 -s 6 -d 7 -p tcp -e 1000 -i 317 -a 13 + -t 0.679752 -s 7 -d 2 -p tcp -e 1000 -i 317 -a 13 - -t 0.679752 -s 7 -d 2 -p tcp -e 1000 -i 317 -a 13 h -t 0.679752 -s 7 -d 2 -p tcp -e 1000 -i 317 -a 13 r -t 0.679936 -s 6 -d 1 -p ack -e 40 -i 335 -a 14 + -t 0.679936 -s 1 -d 6 -p tcp -e 1000 -i 351 -a 14 - -t 0.679936 -s 1 -d 6 -p tcp -e 1000 -i 351 -a 14 h -t 0.679936 -s 1 -d 6 -p tcp -e 1000 -i 351 -a 14 + -t 0.679936 -s 1 -d 6 -p tcp -e 1000 -i 352 -a 14 - -t 0.680397 -s 8 -d 9 -p tcp -e 1000 -i 334 -a 21 h -t 0.680397 -s 8 -d 9 -p tcp -e 1000 -i 334 -a 21 r -t 0.680584 -s 2 -d 7 -p ack -e 40 -i 349 -a 14 + -t 0.680584 -s 7 -d 6 -p ack -e 40 -i 349 -a 14 - -t 0.680584 -s 7 -d 6 -p ack -e 40 -i 349 -a 14 h -t 0.680584 -s 7 -d 6 -p ack -e 40 -i 349 -a 14 - -t 0.680736 -s 1 -d 6 -p tcp -e 1000 -i 352 -a 14 h -t 0.680736 -s 1 -d 6 -p tcp -e 1000 -i 352 -a 14 r -t 0.682563 -s 4 -d 10 -p ack -e 40 -i 350 -a 20 + -t 0.682563 -s 9 -d 8 -p ack -e 40 -i 350 -a 20 - -t 0.682563 -s 9 -d 8 -p ack -e 40 -i 350 -a 20 h -t 0.682563 -s 9 -d 8 -p ack -e 40 -i 350 -a 20 + -t 0.683509 -s 3 -d 8 -p tcp -e 1000 -i 353 -a 22 - -t 0.683509 -s 3 -d 8 -p tcp -e 1000 -i 353 -a 22 h -t 0.683509 -s 3 -d 8 -p tcp -e 1000 -i 353 -a 22 r -t 0.683736 -s 1 -d 6 -p tcp -e 1000 -i 351 -a 14 + -t 0.683736 -s 6 -d 7 -p tcp -e 1000 -i 351 -a 14 d -t 0.683736 -s 6 -d 7 -p tcp -e 1000 -i 351 -a 14 - -t 0.683752 -s 6 -d 7 -p tcp -e 1000 -i 325 -a 13 h -t 0.683752 -s 6 -d 7 -p tcp -e 1000 -i 325 -a 13 r -t 0.683864 -s 9 -d 10 -p tcp -e 1000 -i 327 -a 20 + -t 0.683864 -s 4 -d 10 -p ack -e 40 -i 354 -a 20 - -t 0.683864 -s 4 -d 10 -p ack -e 40 -i 354 -a 20 h -t 0.683864 -s 4 -d 10 -p ack -e 40 -i 354 -a 20 r -t 0.684397 -s 8 -d 9 -p tcp -e 1000 -i 328 -a 20 + -t 0.684397 -s 9 -d 10 -p tcp -e 1000 -i 328 -a 20 - -t 0.684397 -s 9 -d 10 -p tcp -e 1000 -i 328 -a 20 h -t 0.684397 -s 9 -d 10 -p tcp -e 1000 -i 328 -a 20 r -t 0.684536 -s 1 -d 6 -p tcp -e 1000 -i 352 -a 14 + -t 0.684536 -s 6 -d 7 -p tcp -e 1000 -i 352 -a 14 r -t 0.684552 -s 7 -d 2 -p tcp -e 1000 -i 317 -a 13 + -t 0.684552 -s 2 -d 7 -p ack -e 40 -i 355 -a 13 - -t 0.684552 -s 2 -d 7 -p ack -e 40 -i 355 -a 13 h -t 0.684552 -s 2 -d 7 -p ack -e 40 -i 355 -a 13 r -t 0.684904 -s 7 -d 6 -p ack -e 40 -i 338 -a 12 + -t 0.684904 -s 6 -d 1 -p ack -e 40 -i 338 -a 12 - -t 0.684904 -s 6 -d 1 -p ack -e 40 -i 338 -a 12 h -t 0.684904 -s 6 -d 1 -p ack -e 40 -i 338 -a 12 - -t 0.685731 -s 8 -d 9 -p tcp -e 1000 -i 339 -a 21 h -t 0.685731 -s 8 -d 9 -p tcp -e 1000 -i 339 -a 21 r -t 0.687309 -s 3 -d 8 -p tcp -e 1000 -i 353 -a 22 + -t 0.687309 -s 8 -d 9 -p tcp -e 1000 -i 353 -a 22 r -t 0.687752 -s 6 -d 7 -p tcp -e 1000 -i 314 -a 14 + -t 0.687752 -s 7 -d 2 -p tcp -e 1000 -i 314 -a 14 - -t 0.687752 -s 7 -d 2 -p tcp -e 1000 -i 314 -a 14 h -t 0.687752 -s 7 -d 2 -p tcp -e 1000 -i 314 -a 14 r -t 0.687896 -s 4 -d 10 -p ack -e 40 -i 354 -a 20 + -t 0.687896 -s 9 -d 8 -p ack -e 40 -i 354 -a 20 - -t 0.687896 -s 9 -d 8 -p ack -e 40 -i 354 -a 20 h -t 0.687896 -s 9 -d 8 -p ack -e 40 -i 354 -a 20 r -t 0.687936 -s 6 -d 1 -p ack -e 40 -i 338 -a 12 + -t 0.687936 -s 1 -d 6 -p tcp -e 1000 -i 356 -a 12 - -t 0.687936 -s 1 -d 6 -p tcp -e 1000 -i 356 -a 12 h -t 0.687936 -s 1 -d 6 -p tcp -e 1000 -i 356 -a 12 + -t 0.687936 -s 1 -d 6 -p tcp -e 1000 -i 357 -a 12 r -t 0.688584 -s 2 -d 7 -p ack -e 40 -i 355 -a 13 + -t 0.688584 -s 7 -d 6 -p ack -e 40 -i 355 -a 13 - -t 0.688584 -s 7 -d 6 -p ack -e 40 -i 355 -a 13 h -t 0.688584 -s 7 -d 6 -p ack -e 40 -i 355 -a 13 - -t 0.688736 -s 1 -d 6 -p tcp -e 1000 -i 357 -a 12 h -t 0.688736 -s 1 -d 6 -p tcp -e 1000 -i 357 -a 12 r -t 0.689197 -s 9 -d 10 -p tcp -e 1000 -i 328 -a 20 + -t 0.689197 -s 4 -d 10 -p ack -e 40 -i 358 -a 20 - -t 0.689197 -s 4 -d 10 -p ack -e 40 -i 358 -a 20 h -t 0.689197 -s 4 -d 10 -p ack -e 40 -i 358 -a 20 r -t 0.68973 -s 8 -d 9 -p tcp -e 1000 -i 332 -a 21 + -t 0.689731 -s 9 -d 10 -p tcp -e 1000 -i 332 -a 21 - -t 0.689731 -s 9 -d 10 -p tcp -e 1000 -i 332 -a 21 h -t 0.689731 -s 9 -d 10 -p tcp -e 1000 -i 332 -a 21 - -t 0.691064 -s 8 -d 9 -p tcp -e 1000 -i 340 -a 21 h -t 0.691064 -s 8 -d 9 -p tcp -e 1000 -i 340 -a 21 r -t 0.691736 -s 1 -d 6 -p tcp -e 1000 -i 356 -a 12 + -t 0.691736 -s 6 -d 7 -p tcp -e 1000 -i 356 -a 12 d -t 0.691736 -s 6 -d 7 -p tcp -e 1000 -i 356 -a 12 - -t 0.691752 -s 6 -d 7 -p tcp -e 1000 -i 330 -a 13 h -t 0.691752 -s 6 -d 7 -p tcp -e 1000 -i 330 -a 13 r -t 0.692109 -s 9 -d 8 -p ack -e 40 -i 343 -a 20 + -t 0.692109 -s 8 -d 3 -p ack -e 40 -i 343 -a 20 - -t 0.692109 -s 8 -d 3 -p ack -e 40 -i 343 -a 20 h -t 0.692109 -s 8 -d 3 -p ack -e 40 -i 343 -a 20 r -t 0.692536 -s 1 -d 6 -p tcp -e 1000 -i 357 -a 12 + -t 0.692536 -s 6 -d 7 -p tcp -e 1000 -i 357 -a 12 r -t 0.692552 -s 7 -d 2 -p tcp -e 1000 -i 314 -a 14 + -t 0.692552 -s 2 -d 7 -p ack -e 40 -i 359 -a 14 - -t 0.692552 -s 2 -d 7 -p ack -e 40 -i 359 -a 14 h -t 0.692552 -s 2 -d 7 -p ack -e 40 -i 359 -a 14 r -t 0.692904 -s 7 -d 6 -p ack -e 40 -i 344 -a 14 + -t 0.692904 -s 6 -d 1 -p ack -e 40 -i 344 -a 14 - -t 0.692904 -s 6 -d 1 -p ack -e 40 -i 344 -a 14 h -t 0.692904 -s 6 -d 1 -p ack -e 40 -i 344 -a 14 r -t 0.693229 -s 4 -d 10 -p ack -e 40 -i 358 -a 20 + -t 0.693229 -s 9 -d 8 -p ack -e 40 -i 358 -a 20 - -t 0.693229 -s 9 -d 8 -p ack -e 40 -i 358 -a 20 h -t 0.693229 -s 9 -d 8 -p ack -e 40 -i 358 -a 20 r -t 0.694531 -s 9 -d 10 -p tcp -e 1000 -i 332 -a 21 + -t 0.694531 -s 4 -d 10 -p ack -e 40 -i 360 -a 21 - -t 0.694531 -s 4 -d 10 -p ack -e 40 -i 360 -a 21 h -t 0.694531 -s 4 -d 10 -p ack -e 40 -i 360 -a 21 r -t 0.695064 -s 8 -d 9 -p tcp -e 1000 -i 329 -a 20 + -t 0.695064 -s 9 -d 10 -p tcp -e 1000 -i 329 -a 20 - -t 0.695064 -s 9 -d 10 -p tcp -e 1000 -i 329 -a 20 h -t 0.695064 -s 9 -d 10 -p tcp -e 1000 -i 329 -a 20 r -t 0.695141 -s 8 -d 3 -p ack -e 40 -i 343 -a 20 r -t 0.695752 -s 6 -d 7 -p tcp -e 1000 -i 318 -a 13 + -t 0.695752 -s 7 -d 2 -p tcp -e 1000 -i 318 -a 13 - -t 0.695752 -s 7 -d 2 -p tcp -e 1000 -i 318 -a 13 h -t 0.695752 -s 7 -d 2 -p tcp -e 1000 -i 318 -a 13 r -t 0.695936 -s 6 -d 1 -p ack -e 40 -i 344 -a 14 + -t 0.695936 -s 1 -d 6 -p tcp -e 1000 -i 361 -a 14 - -t 0.695936 -s 1 -d 6 -p tcp -e 1000 -i 361 -a 14 h -t 0.695936 -s 1 -d 6 -p tcp -e 1000 -i 361 -a 14 + -t 0.695936 -s 1 -d 6 -p tcp -e 1000 -i 362 -a 14 - -t 0.696397 -s 8 -d 9 -p tcp -e 1000 -i 353 -a 22 h -t 0.696397 -s 8 -d 9 -p tcp -e 1000 -i 353 -a 22 r -t 0.696584 -s 2 -d 7 -p ack -e 40 -i 359 -a 14 + -t 0.696584 -s 7 -d 6 -p ack -e 40 -i 359 -a 14 - -t 0.696584 -s 7 -d 6 -p ack -e 40 -i 359 -a 14 h -t 0.696584 -s 7 -d 6 -p ack -e 40 -i 359 -a 14 - -t 0.696736 -s 1 -d 6 -p tcp -e 1000 -i 362 -a 14 h -t 0.696736 -s 1 -d 6 -p tcp -e 1000 -i 362 -a 14 r -t 0.697442 -s 9 -d 8 -p ack -e 40 -i 348 -a 20 + -t 0.697443 -s 8 -d 3 -p ack -e 40 -i 348 -a 20 - -t 0.697443 -s 8 -d 3 -p ack -e 40 -i 348 -a 20 h -t 0.697443 -s 8 -d 3 -p ack -e 40 -i 348 -a 20 r -t 0.698563 -s 4 -d 10 -p ack -e 40 -i 360 -a 21 + -t 0.698563 -s 9 -d 8 -p ack -e 40 -i 360 -a 21 - -t 0.698563 -s 9 -d 8 -p ack -e 40 -i 360 -a 21 h -t 0.698563 -s 9 -d 8 -p ack -e 40 -i 360 -a 21 r -t 0.699736 -s 1 -d 6 -p tcp -e 1000 -i 361 -a 14 + -t 0.699736 -s 6 -d 7 -p tcp -e 1000 -i 361 -a 14 d -t 0.699736 -s 6 -d 7 -p tcp -e 1000 -i 361 -a 14 - -t 0.699752 -s 6 -d 7 -p tcp -e 1000 -i 331 -a 13 h -t 0.699752 -s 6 -d 7 -p tcp -e 1000 -i 331 -a 13 r -t 0.699864 -s 9 -d 10 -p tcp -e 1000 -i 329 -a 20 + -t 0.699864 -s 4 -d 10 -p ack -e 40 -i 363 -a 20 - -t 0.699864 -s 4 -d 10 -p ack -e 40 -i 363 -a 20 h -t 0.699864 -s 4 -d 10 -p ack -e 40 -i 363 -a 20 r -t 0.700397 -s 8 -d 9 -p tcp -e 1000 -i 333 -a 21 + -t 0.700397 -s 9 -d 10 -p tcp -e 1000 -i 333 -a 21 - -t 0.700397 -s 9 -d 10 -p tcp -e 1000 -i 333 -a 21 h -t 0.700397 -s 9 -d 10 -p tcp -e 1000 -i 333 -a 21 r -t 0.700475 -s 8 -d 3 -p ack -e 40 -i 348 -a 20 + -t 0.700475 -s 3 -d 8 -p tcp -e 1000 -i 364 -a 20 - -t 0.700475 -s 3 -d 8 -p tcp -e 1000 -i 364 -a 20 h -t 0.700475 -s 3 -d 8 -p tcp -e 1000 -i 364 -a 20 + -t 0.700475 -s 3 -d 8 -p tcp -e 1000 -i 365 -a 20 + -t 0.700475 -s 3 -d 8 -p tcp -e 1000 -i 366 -a 20 r -t 0.700536 -s 1 -d 6 -p tcp -e 1000 -i 362 -a 14 + -t 0.700536 -s 6 -d 7 -p tcp -e 1000 -i 362 -a 14 r -t 0.700552 -s 7 -d 2 -p tcp -e 1000 -i 318 -a 13 + -t 0.700552 -s 2 -d 7 -p ack -e 40 -i 367 -a 13 - -t 0.700552 -s 2 -d 7 -p ack -e 40 -i 367 -a 13 h -t 0.700552 -s 2 -d 7 -p ack -e 40 -i 367 -a 13 r -t 0.700904 -s 7 -d 6 -p ack -e 40 -i 349 -a 14 + -t 0.700904 -s 6 -d 1 -p ack -e 40 -i 349 -a 14 - -t 0.700904 -s 6 -d 1 -p ack -e 40 -i 349 -a 14 h -t 0.700904 -s 6 -d 1 -p ack -e 40 -i 349 -a 14 - -t 0.701275 -s 3 -d 8 -p tcp -e 1000 -i 365 -a 20 h -t 0.701275 -s 3 -d 8 -p tcp -e 1000 -i 365 -a 20 - -t 0.702075 -s 3 -d 8 -p tcp -e 1000 -i 366 -a 20 h -t 0.702075 -s 3 -d 8 -p tcp -e 1000 -i 366 -a 20 r -t 0.702776 -s 9 -d 8 -p ack -e 40 -i 350 -a 20 + -t 0.702776 -s 8 -d 3 -p ack -e 40 -i 350 -a 20 - -t 0.702776 -s 8 -d 3 -p ack -e 40 -i 350 -a 20 h -t 0.702776 -s 8 -d 3 -p ack -e 40 -i 350 -a 20 r -t 0.703752 -s 6 -d 7 -p tcp -e 1000 -i 324 -a 13 + -t 0.703752 -s 7 -d 2 -p tcp -e 1000 -i 324 -a 13 - -t 0.703752 -s 7 -d 2 -p tcp -e 1000 -i 324 -a 13 h -t 0.703752 -s 7 -d 2 -p tcp -e 1000 -i 324 -a 13 r -t 0.703896 -s 4 -d 10 -p ack -e 40 -i 363 -a 20 + -t 0.703896 -s 9 -d 8 -p ack -e 40 -i 363 -a 20 - -t 0.703896 -s 9 -d 8 -p ack -e 40 -i 363 -a 20 h -t 0.703896 -s 9 -d 8 -p ack -e 40 -i 363 -a 20 r -t 0.703936 -s 6 -d 1 -p ack -e 40 -i 349 -a 14 + -t 0.703936 -s 1 -d 6 -p tcp -e 1000 -i 368 -a 14 - -t 0.703936 -s 1 -d 6 -p tcp -e 1000 -i 368 -a 14 h -t 0.703936 -s 1 -d 6 -p tcp -e 1000 -i 368 -a 14 + -t 0.703936 -s 1 -d 6 -p tcp -e 1000 -i 369 -a 14 r -t 0.704275 -s 3 -d 8 -p tcp -e 1000 -i 364 -a 20 + -t 0.704275 -s 8 -d 9 -p tcp -e 1000 -i 364 -a 20 - -t 0.704275 -s 8 -d 9 -p tcp -e 1000 -i 364 -a 20 h -t 0.704275 -s 8 -d 9 -p tcp -e 1000 -i 364 -a 20 r -t 0.704584 -s 2 -d 7 -p ack -e 40 -i 367 -a 13 + -t 0.704584 -s 7 -d 6 -p ack -e 40 -i 367 -a 13 - -t 0.704584 -s 7 -d 6 -p ack -e 40 -i 367 -a 13 h -t 0.704584 -s 7 -d 6 -p ack -e 40 -i 367 -a 13 - -t 0.704736 -s 1 -d 6 -p tcp -e 1000 -i 369 -a 14 h -t 0.704736 -s 1 -d 6 -p tcp -e 1000 -i 369 -a 14 r -t 0.705075 -s 3 -d 8 -p tcp -e 1000 -i 365 -a 20 + -t 0.705075 -s 8 -d 9 -p tcp -e 1000 -i 365 -a 20 r -t 0.705197 -s 9 -d 10 -p tcp -e 1000 -i 333 -a 21 + -t 0.705197 -s 4 -d 10 -p ack -e 40 -i 370 -a 21 - -t 0.705197 -s 4 -d 10 -p ack -e 40 -i 370 -a 21 h -t 0.705197 -s 4 -d 10 -p ack -e 40 -i 370 -a 21 r -t 0.70573 -s 8 -d 9 -p tcp -e 1000 -i 334 -a 21 + -t 0.705731 -s 9 -d 10 -p tcp -e 1000 -i 334 -a 21 - -t 0.705731 -s 9 -d 10 -p tcp -e 1000 -i 334 -a 21 h -t 0.705731 -s 9 -d 10 -p tcp -e 1000 -i 334 -a 21 r -t 0.705875 -s 3 -d 8 -p tcp -e 1000 -i 366 -a 20 r -t 0.705808 -s 8 -d 3 -p ack -e 40 -i 350 -a 20 + -t 0.705875 -s 8 -d 9 -p tcp -e 1000 -i 366 -a 20 r -t 0.707736 -s 1 -d 6 -p tcp -e 1000 -i 368 -a 14 + -t 0.707736 -s 6 -d 7 -p tcp -e 1000 -i 368 -a 14 d -t 0.707736 -s 6 -d 7 -p tcp -e 1000 -i 368 -a 14 - -t 0.707752 -s 6 -d 7 -p tcp -e 1000 -i 336 -a 13 h -t 0.707752 -s 6 -d 7 -p tcp -e 1000 -i 336 -a 13 r -t 0.708109 -s 9 -d 8 -p ack -e 40 -i 354 -a 20 + -t 0.708109 -s 8 -d 3 -p ack -e 40 -i 354 -a 20 - -t 0.708109 -s 8 -d 3 -p ack -e 40 -i 354 -a 20 h -t 0.708109 -s 8 -d 3 -p ack -e 40 -i 354 -a 20 r -t 0.708536 -s 1 -d 6 -p tcp -e 1000 -i 369 -a 14 + -t 0.708536 -s 6 -d 7 -p tcp -e 1000 -i 369 -a 14 r -t 0.708552 -s 7 -d 2 -p tcp -e 1000 -i 324 -a 13 + -t 0.708552 -s 2 -d 7 -p ack -e 40 -i 371 -a 13 - -t 0.708552 -s 2 -d 7 -p ack -e 40 -i 371 -a 13 h -t 0.708552 -s 2 -d 7 -p ack -e 40 -i 371 -a 13 r -t 0.708904 -s 7 -d 6 -p ack -e 40 -i 355 -a 13 + -t 0.708904 -s 6 -d 1 -p ack -e 40 -i 355 -a 13 - -t 0.708904 -s 6 -d 1 -p ack -e 40 -i 355 -a 13 h -t 0.708904 -s 6 -d 1 -p ack -e 40 -i 355 -a 13 r -t 0.709229 -s 4 -d 10 -p ack -e 40 -i 370 -a 21 + -t 0.709229 -s 9 -d 8 -p ack -e 40 -i 370 -a 21 - -t 0.709229 -s 9 -d 8 -p ack -e 40 -i 370 -a 21 h -t 0.709229 -s 9 -d 8 -p ack -e 40 -i 370 -a 21 - -t 0.709608 -s 8 -d 9 -p tcp -e 1000 -i 365 -a 20 h -t 0.709608 -s 8 -d 9 -p tcp -e 1000 -i 365 -a 20 r -t 0.710531 -s 9 -d 10 -p tcp -e 1000 -i 334 -a 21 + -t 0.710531 -s 4 -d 10 -p ack -e 40 -i 372 -a 21 - -t 0.710531 -s 4 -d 10 -p ack -e 40 -i 372 -a 21 h -t 0.710531 -s 4 -d 10 -p ack -e 40 -i 372 -a 21 r -t 0.711064 -s 8 -d 9 -p tcp -e 1000 -i 339 -a 21 + -t 0.711064 -s 9 -d 10 -p tcp -e 1000 -i 339 -a 21 - -t 0.711064 -s 9 -d 10 -p tcp -e 1000 -i 339 -a 21 h -t 0.711064 -s 9 -d 10 -p tcp -e 1000 -i 339 -a 21 r -t 0.711141 -s 8 -d 3 -p ack -e 40 -i 354 -a 20 + -t 0.711141 -s 3 -d 8 -p tcp -e 1000 -i 373 -a 20 - -t 0.711141 -s 3 -d 8 -p tcp -e 1000 -i 373 -a 20 h -t 0.711141 -s 3 -d 8 -p tcp -e 1000 -i 373 -a 20 + -t 0.711141 -s 3 -d 8 -p tcp -e 1000 -i 374 -a 20 + -t 0.711141 -s 3 -d 8 -p tcp -e 1000 -i 375 -a 20 r -t 0.711752 -s 6 -d 7 -p tcp -e 1000 -i 325 -a 13 + -t 0.711752 -s 7 -d 2 -p tcp -e 1000 -i 325 -a 13 - -t 0.711752 -s 7 -d 2 -p tcp -e 1000 -i 325 -a 13 h -t 0.711752 -s 7 -d 2 -p tcp -e 1000 -i 325 -a 13 r -t 0.711936 -s 6 -d 1 -p ack -e 40 -i 355 -a 13 + -t 0.711936 -s 1 -d 6 -p tcp -e 1000 -i 376 -a 13 - -t 0.711936 -s 1 -d 6 -p tcp -e 1000 -i 376 -a 13 h -t 0.711936 -s 1 -d 6 -p tcp -e 1000 -i 376 -a 13 + -t 0.711936 -s 1 -d 6 -p tcp -e 1000 -i 377 -a 13 - -t 0.711941 -s 3 -d 8 -p tcp -e 1000 -i 374 -a 20 h -t 0.711941 -s 3 -d 8 -p tcp -e 1000 -i 374 -a 20 r -t 0.712584 -s 2 -d 7 -p ack -e 40 -i 371 -a 13 + -t 0.712584 -s 7 -d 6 -p ack -e 40 -i 371 -a 13 - -t 0.712584 -s 7 -d 6 -p ack -e 40 -i 371 -a 13 h -t 0.712584 -s 7 -d 6 -p ack -e 40 -i 371 -a 13 - -t 0.712736 -s 1 -d 6 -p tcp -e 1000 -i 377 -a 13 h -t 0.712736 -s 1 -d 6 -p tcp -e 1000 -i 377 -a 13 - -t 0.712741 -s 3 -d 8 -p tcp -e 1000 -i 375 -a 20 h -t 0.712741 -s 3 -d 8 -p tcp -e 1000 -i 375 -a 20 r -t 0.713442 -s 9 -d 8 -p ack -e 40 -i 358 -a 20 + -t 0.713443 -s 8 -d 3 -p ack -e 40 -i 358 -a 20 - -t 0.713443 -s 8 -d 3 -p ack -e 40 -i 358 -a 20 h -t 0.713443 -s 8 -d 3 -p ack -e 40 -i 358 -a 20 r -t 0.714563 -s 4 -d 10 -p ack -e 40 -i 372 -a 21 + -t 0.714563 -s 9 -d 8 -p ack -e 40 -i 372 -a 21 - -t 0.714563 -s 9 -d 8 -p ack -e 40 -i 372 -a 21 h -t 0.714563 -s 9 -d 8 -p ack -e 40 -i 372 -a 21 r -t 0.714941 -s 3 -d 8 -p tcp -e 1000 -i 373 -a 20 - -t 0.714941 -s 8 -d 9 -p tcp -e 1000 -i 366 -a 20 h -t 0.714941 -s 8 -d 9 -p tcp -e 1000 -i 366 -a 20 + -t 0.714941 -s 8 -d 9 -p tcp -e 1000 -i 373 -a 20 r -t 0.715736 -s 1 -d 6 -p tcp -e 1000 -i 376 -a 13 + -t 0.715736 -s 6 -d 7 -p tcp -e 1000 -i 376 -a 13 d -t 0.715736 -s 6 -d 7 -p tcp -e 1000 -i 369 -a 14 r -t 0.715741 -s 3 -d 8 -p tcp -e 1000 -i 374 -a 20 + -t 0.715741 -s 8 -d 9 -p tcp -e 1000 -i 374 -a 20 - -t 0.715752 -s 6 -d 7 -p tcp -e 1000 -i 341 -a 11 h -t 0.715752 -s 6 -d 7 -p tcp -e 1000 -i 341 -a 11 r -t 0.715864 -s 9 -d 10 -p tcp -e 1000 -i 339 -a 21 + -t 0.715864 -s 4 -d 10 -p ack -e 40 -i 378 -a 21 - -t 0.715864 -s 4 -d 10 -p ack -e 40 -i 378 -a 21 h -t 0.715864 -s 4 -d 10 -p ack -e 40 -i 378 -a 21 r -t 0.716397 -s 8 -d 9 -p tcp -e 1000 -i 340 -a 21 + -t 0.716397 -s 9 -d 10 -p tcp -e 1000 -i 340 -a 21 - -t 0.716397 -s 9 -d 10 -p tcp -e 1000 -i 340 -a 21 h -t 0.716397 -s 9 -d 10 -p tcp -e 1000 -i 340 -a 21 r -t 0.716536 -s 1 -d 6 -p tcp -e 1000 -i 377 -a 13 r -t 0.716475 -s 8 -d 3 -p ack -e 40 -i 358 -a 20 + -t 0.716536 -s 6 -d 7 -p tcp -e 1000 -i 377 -a 13 r -t 0.716541 -s 3 -d 8 -p tcp -e 1000 -i 375 -a 20 + -t 0.716541 -s 8 -d 9 -p tcp -e 1000 -i 375 -a 20 r -t 0.716552 -s 7 -d 2 -p tcp -e 1000 -i 325 -a 13 + -t 0.716552 -s 2 -d 7 -p ack -e 40 -i 379 -a 13 - -t 0.716552 -s 2 -d 7 -p ack -e 40 -i 379 -a 13 h -t 0.716552 -s 2 -d 7 -p ack -e 40 -i 379 -a 13 r -t 0.716904 -s 7 -d 6 -p ack -e 40 -i 359 -a 14 + -t 0.716904 -s 6 -d 1 -p ack -e 40 -i 359 -a 14 - -t 0.716904 -s 6 -d 1 -p ack -e 40 -i 359 -a 14 h -t 0.716904 -s 6 -d 1 -p ack -e 40 -i 359 -a 14 r -t 0.718776 -s 9 -d 8 -p ack -e 40 -i 360 -a 21 + -t 0.718776 -s 8 -d 3 -p ack -e 40 -i 360 -a 21 - -t 0.718776 -s 8 -d 3 -p ack -e 40 -i 360 -a 21 h -t 0.718776 -s 8 -d 3 -p ack -e 40 -i 360 -a 21 r -t 0.719752 -s 6 -d 7 -p tcp -e 1000 -i 330 -a 13 + -t 0.719752 -s 7 -d 2 -p tcp -e 1000 -i 330 -a 13 - -t 0.719752 -s 7 -d 2 -p tcp -e 1000 -i 330 -a 13 h -t 0.719752 -s 7 -d 2 -p tcp -e 1000 -i 330 -a 13 r -t 0.719896 -s 4 -d 10 -p ack -e 40 -i 378 -a 21 + -t 0.719896 -s 9 -d 8 -p ack -e 40 -i 378 -a 21 - -t 0.719896 -s 9 -d 8 -p ack -e 40 -i 378 -a 21 h -t 0.719896 -s 9 -d 8 -p ack -e 40 -i 378 -a 21 r -t 0.719936 -s 6 -d 1 -p ack -e 40 -i 359 -a 14 + -t 0.719936 -s 1 -d 6 -p tcp -e 1000 -i 380 -a 14 - -t 0.719936 -s 1 -d 6 -p tcp -e 1000 -i 380 -a 14 h -t 0.719936 -s 1 -d 6 -p tcp -e 1000 -i 380 -a 14 + -t 0.719936 -s 1 -d 6 -p tcp -e 1000 -i 381 -a 14 - -t 0.720275 -s 8 -d 9 -p tcp -e 1000 -i 373 -a 20 h -t 0.720275 -s 8 -d 9 -p tcp -e 1000 -i 373 -a 20 r -t 0.720584 -s 2 -d 7 -p ack -e 40 -i 379 -a 13 + -t 0.720584 -s 7 -d 6 -p ack -e 40 -i 379 -a 13 - -t 0.720584 -s 7 -d 6 -p ack -e 40 -i 379 -a 13 h -t 0.720584 -s 7 -d 6 -p ack -e 40 -i 379 -a 13 - -t 0.720736 -s 1 -d 6 -p tcp -e 1000 -i 381 -a 14 h -t 0.720736 -s 1 -d 6 -p tcp -e 1000 -i 381 -a 14 r -t 0.721197 -s 9 -d 10 -p tcp -e 1000 -i 340 -a 21 + -t 0.721197 -s 4 -d 10 -p ack -e 40 -i 382 -a 21 - -t 0.721197 -s 4 -d 10 -p ack -e 40 -i 382 -a 21 h -t 0.721197 -s 4 -d 10 -p ack -e 40 -i 382 -a 21 r -t 0.72173 -s 8 -d 9 -p tcp -e 1000 -i 353 -a 22 + -t 0.721731 -s 9 -d 10 -p tcp -e 1000 -i 353 -a 22 - -t 0.721731 -s 9 -d 10 -p tcp -e 1000 -i 353 -a 22 h -t 0.721731 -s 9 -d 10 -p tcp -e 1000 -i 353 -a 22 r -t 0.721808 -s 8 -d 3 -p ack -e 40 -i 360 -a 21 r -t 0.723736 -s 1 -d 6 -p tcp -e 1000 -i 380 -a 14 + -t 0.723736 -s 6 -d 7 -p tcp -e 1000 -i 380 -a 14 d -t 0.723736 -s 6 -d 7 -p tcp -e 1000 -i 377 -a 13 - -t 0.723752 -s 6 -d 7 -p tcp -e 1000 -i 337 -a 13 h -t 0.723752 -s 6 -d 7 -p tcp -e 1000 -i 337 -a 13 r -t 0.724109 -s 9 -d 8 -p ack -e 40 -i 363 -a 20 + -t 0.724109 -s 8 -d 3 -p ack -e 40 -i 363 -a 20 - -t 0.724109 -s 8 -d 3 -p ack -e 40 -i 363 -a 20 h -t 0.724109 -s 8 -d 3 -p ack -e 40 -i 363 -a 20 r -t 0.724536 -s 1 -d 6 -p tcp -e 1000 -i 381 -a 14 + -t 0.724536 -s 6 -d 7 -p tcp -e 1000 -i 381 -a 14 r -t 0.724552 -s 7 -d 2 -p tcp -e 1000 -i 330 -a 13 + -t 0.724552 -s 2 -d 7 -p ack -e 40 -i 383 -a 13 - -t 0.724552 -s 2 -d 7 -p ack -e 40 -i 383 -a 13 h -t 0.724552 -s 2 -d 7 -p ack -e 40 -i 383 -a 13 r -t 0.724904 -s 7 -d 6 -p ack -e 40 -i 367 -a 13 + -t 0.724904 -s 6 -d 1 -p ack -e 40 -i 367 -a 13 - -t 0.724904 -s 6 -d 1 -p ack -e 40 -i 367 -a 13 h -t 0.724904 -s 6 -d 1 -p ack -e 40 -i 367 -a 13 r -t 0.725229 -s 4 -d 10 -p ack -e 40 -i 382 -a 21 + -t 0.725229 -s 9 -d 8 -p ack -e 40 -i 382 -a 21 - -t 0.725229 -s 9 -d 8 -p ack -e 40 -i 382 -a 21 h -t 0.725229 -s 9 -d 8 -p ack -e 40 -i 382 -a 21 - -t 0.725608 -s 8 -d 9 -p tcp -e 1000 -i 374 -a 20 h -t 0.725608 -s 8 -d 9 -p tcp -e 1000 -i 374 -a 20 r -t 0.726531 -s 9 -d 10 -p tcp -e 1000 -i 353 -a 22 + -t 0.726531 -s 4 -d 10 -p ack -e 40 -i 384 -a 22 - -t 0.726531 -s 4 -d 10 -p ack -e 40 -i 384 -a 22 h -t 0.726531 -s 4 -d 10 -p ack -e 40 -i 384 -a 22 r -t 0.727141 -s 8 -d 3 -p ack -e 40 -i 363 -a 20 + -t 0.727141 -s 3 -d 8 -p tcp -e 1000 -i 385 -a 20 - -t 0.727141 -s 3 -d 8 -p tcp -e 1000 -i 385 -a 20 h -t 0.727141 -s 3 -d 8 -p tcp -e 1000 -i 385 -a 20 + -t 0.727141 -s 3 -d 8 -p tcp -e 1000 -i 386 -a 20 + -t 0.727141 -s 3 -d 8 -p tcp -e 1000 -i 387 -a 20 r -t 0.727752 -s 6 -d 7 -p tcp -e 1000 -i 331 -a 13 + -t 0.727752 -s 7 -d 2 -p tcp -e 1000 -i 331 -a 13 - -t 0.727752 -s 7 -d 2 -p tcp -e 1000 -i 331 -a 13 h -t 0.727752 -s 7 -d 2 -p tcp -e 1000 -i 331 -a 13 r -t 0.727936 -s 6 -d 1 -p ack -e 40 -i 367 -a 13 + -t 0.727936 -s 1 -d 6 -p tcp -e 1000 -i 388 -a 13 - -t 0.727936 -s 1 -d 6 -p tcp -e 1000 -i 388 -a 13 h -t 0.727936 -s 1 -d 6 -p tcp -e 1000 -i 388 -a 13 + -t 0.727936 -s 1 -d 6 -p tcp -e 1000 -i 389 -a 13 - -t 0.727941 -s 3 -d 8 -p tcp -e 1000 -i 386 -a 20 h -t 0.727941 -s 3 -d 8 -p tcp -e 1000 -i 386 -a 20 r -t 0.728584 -s 2 -d 7 -p ack -e 40 -i 383 -a 13 + -t 0.728584 -s 7 -d 6 -p ack -e 40 -i 383 -a 13 - -t 0.728584 -s 7 -d 6 -p ack -e 40 -i 383 -a 13 h -t 0.728584 -s 7 -d 6 -p ack -e 40 -i 383 -a 13 - -t 0.728736 -s 1 -d 6 -p tcp -e 1000 -i 389 -a 13 h -t 0.728736 -s 1 -d 6 -p tcp -e 1000 -i 389 -a 13 - -t 0.728741 -s 3 -d 8 -p tcp -e 1000 -i 387 -a 20 h -t 0.728741 -s 3 -d 8 -p tcp -e 1000 -i 387 -a 20 r -t 0.729442 -s 9 -d 8 -p ack -e 40 -i 370 -a 21 + -t 0.729443 -s 8 -d 3 -p ack -e 40 -i 370 -a 21 - -t 0.729443 -s 8 -d 3 -p ack -e 40 -i 370 -a 21 h -t 0.729443 -s 8 -d 3 -p ack -e 40 -i 370 -a 21 r -t 0.729608 -s 8 -d 9 -p tcp -e 1000 -i 364 -a 20 + -t 0.729608 -s 9 -d 10 -p tcp -e 1000 -i 364 -a 20 - -t 0.729608 -s 9 -d 10 -p tcp -e 1000 -i 364 -a 20 h -t 0.729608 -s 9 -d 10 -p tcp -e 1000 -i 364 -a 20 r -t 0.730563 -s 4 -d 10 -p ack -e 40 -i 384 -a 22 + -t 0.730563 -s 9 -d 8 -p ack -e 40 -i 384 -a 22 - -t 0.730563 -s 9 -d 8 -p ack -e 40 -i 384 -a 22 h -t 0.730563 -s 9 -d 8 -p ack -e 40 -i 384 -a 22 r -t 0.730941 -s 3 -d 8 -p tcp -e 1000 -i 385 -a 20 - -t 0.730941 -s 8 -d 9 -p tcp -e 1000 -i 375 -a 20 h -t 0.730941 -s 8 -d 9 -p tcp -e 1000 -i 375 -a 20 + -t 0.730941 -s 8 -d 9 -p tcp -e 1000 -i 385 -a 20 r -t 0.731736 -s 1 -d 6 -p tcp -e 1000 -i 388 -a 13 + -t 0.731736 -s 6 -d 7 -p tcp -e 1000 -i 388 -a 13 d -t 0.731736 -s 6 -d 7 -p tcp -e 1000 -i 381 -a 14 r -t 0.731741 -s 3 -d 8 -p tcp -e 1000 -i 386 -a 20 + -t 0.731741 -s 8 -d 9 -p tcp -e 1000 -i 386 -a 20 - -t 0.731752 -s 6 -d 7 -p tcp -e 1000 -i 342 -a 11 h -t 0.731752 -s 6 -d 7 -p tcp -e 1000 -i 342 -a 11 r -t 0.732475 -s 8 -d 3 -p ack -e 40 -i 370 -a 21 + -t 0.732475 -s 3 -d 8 -p tcp -e 1000 -i 390 -a 21 - -t 0.732475 -s 3 -d 8 -p tcp -e 1000 -i 390 -a 21 h -t 0.732475 -s 3 -d 8 -p tcp -e 1000 -i 390 -a 21 r -t 0.732536 -s 1 -d 6 -p tcp -e 1000 -i 389 -a 13 + -t 0.732536 -s 6 -d 7 -p tcp -e 1000 -i 389 -a 13 r -t 0.732541 -s 3 -d 8 -p tcp -e 1000 -i 387 -a 20 + -t 0.732541 -s 8 -d 9 -p tcp -e 1000 -i 387 -a 20 r -t 0.732552 -s 7 -d 2 -p tcp -e 1000 -i 331 -a 13 + -t 0.732552 -s 2 -d 7 -p ack -e 40 -i 391 -a 13 - -t 0.732552 -s 2 -d 7 -p ack -e 40 -i 391 -a 13 h -t 0.732552 -s 2 -d 7 -p ack -e 40 -i 391 -a 13 r -t 0.732904 -s 7 -d 6 -p ack -e 40 -i 371 -a 13 + -t 0.732904 -s 6 -d 1 -p ack -e 40 -i 371 -a 13 - -t 0.732904 -s 6 -d 1 -p ack -e 40 -i 371 -a 13 h -t 0.732904 -s 6 -d 1 -p ack -e 40 -i 371 -a 13 r -t 0.734408 -s 9 -d 10 -p tcp -e 1000 -i 364 -a 20 + -t 0.734408 -s 4 -d 10 -p ack -e 40 -i 392 -a 20 - -t 0.734408 -s 4 -d 10 -p ack -e 40 -i 392 -a 20 h -t 0.734408 -s 4 -d 10 -p ack -e 40 -i 392 -a 20 r -t 0.734776 -s 9 -d 8 -p ack -e 40 -i 372 -a 21 + -t 0.734776 -s 8 -d 3 -p ack -e 40 -i 372 -a 21 - -t 0.734776 -s 8 -d 3 -p ack -e 40 -i 372 -a 21 h -t 0.734776 -s 8 -d 3 -p ack -e 40 -i 372 -a 21 r -t 0.734941 -s 8 -d 9 -p tcp -e 1000 -i 365 -a 20 + -t 0.734941 -s 9 -d 10 -p tcp -e 1000 -i 365 -a 20 - -t 0.734941 -s 9 -d 10 -p tcp -e 1000 -i 365 -a 20 h -t 0.734941 -s 9 -d 10 -p tcp -e 1000 -i 365 -a 20 r -t 0.735752 -s 6 -d 7 -p tcp -e 1000 -i 336 -a 13 + -t 0.735752 -s 7 -d 2 -p tcp -e 1000 -i 336 -a 13 - -t 0.735752 -s 7 -d 2 -p tcp -e 1000 -i 336 -a 13 h -t 0.735752 -s 7 -d 2 -p tcp -e 1000 -i 336 -a 13 r -t 0.735936 -s 6 -d 1 -p ack -e 40 -i 371 -a 13 + -t 0.735936 -s 1 -d 6 -p tcp -e 1000 -i 393 -a 13 - -t 0.735936 -s 1 -d 6 -p tcp -e 1000 -i 393 -a 13 h -t 0.735936 -s 1 -d 6 -p tcp -e 1000 -i 393 -a 13 + -t 0.735936 -s 1 -d 6 -p tcp -e 1000 -i 394 -a 13 r -t 0.736275 -s 3 -d 8 -p tcp -e 1000 -i 390 -a 21 - -t 0.736275 -s 8 -d 9 -p tcp -e 1000 -i 385 -a 20 h -t 0.736275 -s 8 -d 9 -p tcp -e 1000 -i 385 -a 20 + -t 0.736275 -s 8 -d 9 -p tcp -e 1000 -i 390 -a 21 r -t 0.736584 -s 2 -d 7 -p ack -e 40 -i 391 -a 13 + -t 0.736584 -s 7 -d 6 -p ack -e 40 -i 391 -a 13 - -t 0.736584 -s 7 -d 6 -p ack -e 40 -i 391 -a 13 h -t 0.736584 -s 7 -d 6 -p ack -e 40 -i 391 -a 13 - -t 0.736736 -s 1 -d 6 -p tcp -e 1000 -i 394 -a 13 h -t 0.736736 -s 1 -d 6 -p tcp -e 1000 -i 394 -a 13 r -t 0.737808 -s 8 -d 3 -p ack -e 40 -i 372 -a 21 + -t 0.737808 -s 3 -d 8 -p tcp -e 1000 -i 395 -a 21 - -t 0.737808 -s 3 -d 8 -p tcp -e 1000 -i 395 -a 21 h -t 0.737808 -s 3 -d 8 -p tcp -e 1000 -i 395 -a 21 r -t 0.73844 -s 4 -d 10 -p ack -e 40 -i 392 -a 20 + -t 0.73844 -s 9 -d 8 -p ack -e 40 -i 392 -a 20 - -t 0.73844 -s 9 -d 8 -p ack -e 40 -i 392 -a 20 h -t 0.73844 -s 9 -d 8 -p ack -e 40 -i 392 -a 20 r -t 0.739736 -s 1 -d 6 -p tcp -e 1000 -i 393 -a 13 + -t 0.739736 -s 6 -d 7 -p tcp -e 1000 -i 393 -a 13 d -t 0.739736 -s 6 -d 7 -p tcp -e 1000 -i 393 -a 13 r -t 0.739741 -s 9 -d 10 -p tcp -e 1000 -i 365 -a 20 + -t 0.739741 -s 4 -d 10 -p ack -e 40 -i 396 -a 20 - -t 0.739741 -s 4 -d 10 -p ack -e 40 -i 396 -a 20 h -t 0.739741 -s 4 -d 10 -p ack -e 40 -i 396 -a 20 - -t 0.739752 -s 6 -d 7 -p tcp -e 1000 -i 345 -a 11 h -t 0.739752 -s 6 -d 7 -p tcp -e 1000 -i 345 -a 11 r -t 0.740109 -s 9 -d 8 -p ack -e 40 -i 378 -a 21 + -t 0.740109 -s 8 -d 3 -p ack -e 40 -i 378 -a 21 - -t 0.740109 -s 8 -d 3 -p ack -e 40 -i 378 -a 21 h -t 0.740109 -s 8 -d 3 -p ack -e 40 -i 378 -a 21 r -t 0.740274 -s 8 -d 9 -p tcp -e 1000 -i 366 -a 20 + -t 0.740275 -s 9 -d 10 -p tcp -e 1000 -i 366 -a 20 - -t 0.740275 -s 9 -d 10 -p tcp -e 1000 -i 366 -a 20 h -t 0.740275 -s 9 -d 10 -p tcp -e 1000 -i 366 -a 20 r -t 0.740536 -s 1 -d 6 -p tcp -e 1000 -i 394 -a 13 + -t 0.740536 -s 6 -d 7 -p tcp -e 1000 -i 394 -a 13 r -t 0.740552 -s 7 -d 2 -p tcp -e 1000 -i 336 -a 13 + -t 0.740552 -s 2 -d 7 -p ack -e 40 -i 397 -a 13 - -t 0.740552 -s 2 -d 7 -p ack -e 40 -i 397 -a 13 h -t 0.740552 -s 2 -d 7 -p ack -e 40 -i 397 -a 13 r -t 0.740904 -s 7 -d 6 -p ack -e 40 -i 379 -a 13 + -t 0.740904 -s 6 -d 1 -p ack -e 40 -i 379 -a 13 - -t 0.740904 -s 6 -d 1 -p ack -e 40 -i 379 -a 13 h -t 0.740904 -s 6 -d 1 -p ack -e 40 -i 379 -a 13 r -t 0.741608 -s 3 -d 8 -p tcp -e 1000 -i 395 -a 21 - -t 0.741608 -s 8 -d 9 -p tcp -e 1000 -i 386 -a 20 h -t 0.741608 -s 8 -d 9 -p tcp -e 1000 -i 386 -a 20 + -t 0.741608 -s 8 -d 9 -p tcp -e 1000 -i 395 -a 21 r -t 0.743141 -s 8 -d 3 -p ack -e 40 -i 378 -a 21 + -t 0.743141 -s 3 -d 8 -p tcp -e 1000 -i 398 -a 21 - -t 0.743141 -s 3 -d 8 -p tcp -e 1000 -i 398 -a 21 h -t 0.743141 -s 3 -d 8 -p tcp -e 1000 -i 398 -a 21 r -t 0.743752 -s 6 -d 7 -p tcp -e 1000 -i 341 -a 11 + -t 0.743752 -s 7 -d 2 -p tcp -e 1000 -i 341 -a 11 - -t 0.743752 -s 7 -d 2 -p tcp -e 1000 -i 341 -a 11 h -t 0.743752 -s 7 -d 2 -p tcp -e 1000 -i 341 -a 11 r -t 0.743773 -s 4 -d 10 -p ack -e 40 -i 396 -a 20 + -t 0.743773 -s 9 -d 8 -p ack -e 40 -i 396 -a 20 - -t 0.743773 -s 9 -d 8 -p ack -e 40 -i 396 -a 20 h -t 0.743773 -s 9 -d 8 -p ack -e 40 -i 396 -a 20 r -t 0.743936 -s 6 -d 1 -p ack -e 40 -i 379 -a 13 + -t 0.743936 -s 1 -d 6 -p tcp -e 1000 -i 399 -a 13 - -t 0.743936 -s 1 -d 6 -p tcp -e 1000 -i 399 -a 13 h -t 0.743936 -s 1 -d 6 -p tcp -e 1000 -i 399 -a 13 + -t 0.743936 -s 1 -d 6 -p tcp -e 1000 -i 400 -a 13 r -t 0.744584 -s 2 -d 7 -p ack -e 40 -i 397 -a 13 + -t 0.744584 -s 7 -d 6 -p ack -e 40 -i 397 -a 13 - -t 0.744584 -s 7 -d 6 -p ack -e 40 -i 397 -a 13 h -t 0.744584 -s 7 -d 6 -p ack -e 40 -i 397 -a 13 - -t 0.744736 -s 1 -d 6 -p tcp -e 1000 -i 400 -a 13 h -t 0.744736 -s 1 -d 6 -p tcp -e 1000 -i 400 -a 13 r -t 0.745075 -s 9 -d 10 -p tcp -e 1000 -i 366 -a 20 + -t 0.745075 -s 4 -d 10 -p ack -e 40 -i 401 -a 20 - -t 0.745075 -s 4 -d 10 -p ack -e 40 -i 401 -a 20 h -t 0.745075 -s 4 -d 10 -p ack -e 40 -i 401 -a 20 r -t 0.745442 -s 9 -d 8 -p ack -e 40 -i 382 -a 21 + -t 0.745443 -s 8 -d 3 -p ack -e 40 -i 382 -a 21 - -t 0.745443 -s 8 -d 3 -p ack -e 40 -i 382 -a 21 h -t 0.745443 -s 8 -d 3 -p ack -e 40 -i 382 -a 21 r -t 0.745608 -s 8 -d 9 -p tcp -e 1000 -i 373 -a 20 + -t 0.745608 -s 9 -d 10 -p tcp -e 1000 -i 373 -a 20 - -t 0.745608 -s 9 -d 10 -p tcp -e 1000 -i 373 -a 20 h -t 0.745608 -s 9 -d 10 -p tcp -e 1000 -i 373 -a 20 r -t 0.746941 -s 3 -d 8 -p tcp -e 1000 -i 398 -a 21 - -t 0.746941 -s 8 -d 9 -p tcp -e 1000 -i 390 -a 21 h -t 0.746941 -s 8 -d 9 -p tcp -e 1000 -i 390 -a 21 + -t 0.746941 -s 8 -d 9 -p tcp -e 1000 -i 398 -a 21 r -t 0.747736 -s 1 -d 6 -p tcp -e 1000 -i 399 -a 13 + -t 0.747736 -s 6 -d 7 -p tcp -e 1000 -i 399 -a 13 d -t 0.747736 -s 6 -d 7 -p tcp -e 1000 -i 399 -a 13 - -t 0.747752 -s 6 -d 7 -p tcp -e 1000 -i 346 -a 11 h -t 0.747752 -s 6 -d 7 -p tcp -e 1000 -i 346 -a 11 r -t 0.748475 -s 8 -d 3 -p ack -e 40 -i 382 -a 21 + -t 0.748475 -s 3 -d 8 -p tcp -e 1000 -i 402 -a 21 - -t 0.748475 -s 3 -d 8 -p tcp -e 1000 -i 402 -a 21 h -t 0.748475 -s 3 -d 8 -p tcp -e 1000 -i 402 -a 21 + -t 0.748475 -s 3 -d 8 -p tcp -e 1000 -i 403 -a 21 r -t 0.748536 -s 1 -d 6 -p tcp -e 1000 -i 400 -a 13 + -t 0.748536 -s 6 -d 7 -p tcp -e 1000 -i 400 -a 13 r -t 0.748552 -s 7 -d 2 -p tcp -e 1000 -i 341 -a 11 + -t 0.748552 -s 2 -d 7 -p ack -e 40 -i 404 -a 11 - -t 0.748552 -s 2 -d 7 -p ack -e 40 -i 404 -a 11 h -t 0.748552 -s 2 -d 7 -p ack -e 40 -i 404 -a 11 r -t 0.748904 -s 7 -d 6 -p ack -e 40 -i 383 -a 13 + -t 0.748904 -s 6 -d 1 -p ack -e 40 -i 383 -a 13 - -t 0.748904 -s 6 -d 1 -p ack -e 40 -i 383 -a 13 h -t 0.748904 -s 6 -d 1 -p ack -e 40 -i 383 -a 13 r -t 0.749107 -s 4 -d 10 -p ack -e 40 -i 401 -a 20 + -t 0.749107 -s 9 -d 8 -p ack -e 40 -i 401 -a 20 - -t 0.749107 -s 9 -d 8 -p ack -e 40 -i 401 -a 20 h -t 0.749107 -s 9 -d 8 -p ack -e 40 -i 401 -a 20 - -t 0.749275 -s 3 -d 8 -p tcp -e 1000 -i 403 -a 21 h -t 0.749275 -s 3 -d 8 -p tcp -e 1000 -i 403 -a 21 r -t 0.750408 -s 9 -d 10 -p tcp -e 1000 -i 373 -a 20 + -t 0.750408 -s 4 -d 10 -p ack -e 40 -i 405 -a 20 - -t 0.750408 -s 4 -d 10 -p ack -e 40 -i 405 -a 20 h -t 0.750408 -s 4 -d 10 -p ack -e 40 -i 405 -a 20 r -t 0.750776 -s 9 -d 8 -p ack -e 40 -i 384 -a 22 + -t 0.750776 -s 8 -d 3 -p ack -e 40 -i 384 -a 22 - -t 0.750776 -s 8 -d 3 -p ack -e 40 -i 384 -a 22 h -t 0.750776 -s 8 -d 3 -p ack -e 40 -i 384 -a 22 r -t 0.750941 -s 8 -d 9 -p tcp -e 1000 -i 374 -a 20 + -t 0.750941 -s 9 -d 10 -p tcp -e 1000 -i 374 -a 20 - -t 0.750941 -s 9 -d 10 -p tcp -e 1000 -i 374 -a 20 h -t 0.750941 -s 9 -d 10 -p tcp -e 1000 -i 374 -a 20 r -t 0.751752 -s 6 -d 7 -p tcp -e 1000 -i 337 -a 13 + -t 0.751752 -s 7 -d 2 -p tcp -e 1000 -i 337 -a 13 - -t 0.751752 -s 7 -d 2 -p tcp -e 1000 -i 337 -a 13 h -t 0.751752 -s 7 -d 2 -p tcp -e 1000 -i 337 -a 13 r -t 0.751936 -s 6 -d 1 -p ack -e 40 -i 383 -a 13 + -t 0.751936 -s 1 -d 6 -p tcp -e 1000 -i 406 -a 13 - -t 0.751936 -s 1 -d 6 -p tcp -e 1000 -i 406 -a 13 h -t 0.751936 -s 1 -d 6 -p tcp -e 1000 -i 406 -a 13 + -t 0.751936 -s 1 -d 6 -p tcp -e 1000 -i 407 -a 13 r -t 0.752275 -s 3 -d 8 -p tcp -e 1000 -i 402 -a 21 - -t 0.752275 -s 8 -d 9 -p tcp -e 1000 -i 387 -a 20 h -t 0.752275 -s 8 -d 9 -p tcp -e 1000 -i 387 -a 20 + -t 0.752275 -s 8 -d 9 -p tcp -e 1000 -i 402 -a 21 r -t 0.752584 -s 2 -d 7 -p ack -e 40 -i 404 -a 11 + -t 0.752584 -s 7 -d 6 -p ack -e 40 -i 404 -a 11 - -t 0.752584 -s 7 -d 6 -p ack -e 40 -i 404 -a 11 h -t 0.752584 -s 7 -d 6 -p ack -e 40 -i 404 -a 11 - -t 0.752736 -s 1 -d 6 -p tcp -e 1000 -i 407 -a 13 h -t 0.752736 -s 1 -d 6 -p tcp -e 1000 -i 407 -a 13 r -t 0.753075 -s 3 -d 8 -p tcp -e 1000 -i 403 -a 21 + -t 0.753075 -s 8 -d 9 -p tcp -e 1000 -i 403 -a 21 r -t 0.753808 -s 8 -d 3 -p ack -e 40 -i 384 -a 22 + -t 0.753808 -s 3 -d 8 -p tcp -e 1000 -i 408 -a 22 - -t 0.753808 -s 3 -d 8 -p tcp -e 1000 -i 408 -a 22 h -t 0.753808 -s 3 -d 8 -p tcp -e 1000 -i 408 -a 22 + -t 0.753808 -s 3 -d 8 -p tcp -e 1000 -i 409 -a 22 r -t 0.75444 -s 4 -d 10 -p ack -e 40 -i 405 -a 20 + -t 0.75444 -s 9 -d 8 -p ack -e 40 -i 405 -a 20 - -t 0.75444 -s 9 -d 8 -p ack -e 40 -i 405 -a 20 h -t 0.75444 -s 9 -d 8 -p ack -e 40 -i 405 -a 20 - -t 0.754608 -s 3 -d 8 -p tcp -e 1000 -i 409 -a 22 h -t 0.754608 -s 3 -d 8 -p tcp -e 1000 -i 409 -a 22 r -t 0.755736 -s 1 -d 6 -p tcp -e 1000 -i 406 -a 13 + -t 0.755736 -s 6 -d 7 -p tcp -e 1000 -i 406 -a 13 d -t 0.755736 -s 6 -d 7 -p tcp -e 1000 -i 406 -a 13 r -t 0.755741 -s 9 -d 10 -p tcp -e 1000 -i 374 -a 20 + -t 0.755741 -s 4 -d 10 -p ack -e 40 -i 410 -a 20 - -t 0.755741 -s 4 -d 10 -p ack -e 40 -i 410 -a 20 h -t 0.755741 -s 4 -d 10 -p ack -e 40 -i 410 -a 20 - -t 0.755752 -s 6 -d 7 -p tcp -e 1000 -i 352 -a 14 h -t 0.755752 -s 6 -d 7 -p tcp -e 1000 -i 352 -a 14 + -t 0.755936 -s 1 -d 6 -p tcp -e 1000 -i 411 -a 10 - -t 0.755936 -s 1 -d 6 -p tcp -e 1000 -i 411 -a 10 h -t 0.755936 -s 1 -d 6 -p tcp -e 1000 -i 411 -a 10 r -t 0.756274 -s 8 -d 9 -p tcp -e 1000 -i 375 -a 20 + -t 0.756275 -s 9 -d 10 -p tcp -e 1000 -i 375 -a 20 - -t 0.756275 -s 9 -d 10 -p tcp -e 1000 -i 375 -a 20 h -t 0.756275 -s 9 -d 10 -p tcp -e 1000 -i 375 -a 20 r -t 0.756536 -s 1 -d 6 -p tcp -e 1000 -i 407 -a 13 + -t 0.756536 -s 6 -d 7 -p tcp -e 1000 -i 407 -a 13 r -t 0.756552 -s 7 -d 2 -p tcp -e 1000 -i 337 -a 13 + -t 0.756552 -s 2 -d 7 -p ack -e 40 -i 412 -a 13 - -t 0.756552 -s 2 -d 7 -p ack -e 40 -i 412 -a 13 h -t 0.756552 -s 2 -d 7 -p ack -e 40 -i 412 -a 13 r -t 0.756904 -s 7 -d 6 -p ack -e 40 -i 391 -a 13 + -t 0.756904 -s 6 -d 1 -p ack -e 40 -i 391 -a 13 - -t 0.756904 -s 6 -d 1 -p ack -e 40 -i 391 -a 13 h -t 0.756904 -s 6 -d 1 -p ack -e 40 -i 391 -a 13 r -t 0.757608 -s 3 -d 8 -p tcp -e 1000 -i 408 -a 22 - -t 0.757608 -s 8 -d 9 -p tcp -e 1000 -i 395 -a 21 h -t 0.757608 -s 8 -d 9 -p tcp -e 1000 -i 395 -a 21 + -t 0.757608 -s 8 -d 9 -p tcp -e 1000 -i 408 -a 22 r -t 0.758408 -s 3 -d 8 -p tcp -e 1000 -i 409 -a 22 + -t 0.758408 -s 8 -d 9 -p tcp -e 1000 -i 409 -a 22 r -t 0.758653 -s 9 -d 8 -p ack -e 40 -i 392 -a 20 + -t 0.758653 -s 8 -d 3 -p ack -e 40 -i 392 -a 20 - -t 0.758653 -s 8 -d 3 -p ack -e 40 -i 392 -a 20 h -t 0.758653 -s 8 -d 3 -p ack -e 40 -i 392 -a 20 r -t 0.759736 -s 1 -d 6 -p tcp -e 1000 -i 411 -a 10 + -t 0.759736 -s 6 -d 7 -p tcp -e 1000 -i 411 -a 10 d -t 0.759736 -s 6 -d 7 -p tcp -e 1000 -i 407 -a 13 r -t 0.759752 -s 6 -d 7 -p tcp -e 1000 -i 342 -a 11 + -t 0.759752 -s 7 -d 2 -p tcp -e 1000 -i 342 -a 11 - -t 0.759752 -s 7 -d 2 -p tcp -e 1000 -i 342 -a 11 h -t 0.759752 -s 7 -d 2 -p tcp -e 1000 -i 342 -a 11 r -t 0.759773 -s 4 -d 10 -p ack -e 40 -i 410 -a 20 + -t 0.759773 -s 9 -d 8 -p ack -e 40 -i 410 -a 20 - -t 0.759773 -s 9 -d 8 -p ack -e 40 -i 410 -a 20 h -t 0.759773 -s 9 -d 8 -p ack -e 40 -i 410 -a 20 r -t 0.759936 -s 6 -d 1 -p ack -e 40 -i 391 -a 13 + -t 0.759936 -s 1 -d 6 -p tcp -e 1000 -i 413 -a 13 - -t 0.759936 -s 1 -d 6 -p tcp -e 1000 -i 413 -a 13 h -t 0.759936 -s 1 -d 6 -p tcp -e 1000 -i 413 -a 13 + -t 0.759936 -s 1 -d 6 -p tcp -e 1000 -i 414 -a 13 r -t 0.760584 -s 2 -d 7 -p ack -e 40 -i 412 -a 13 + -t 0.760584 -s 7 -d 6 -p ack -e 40 -i 412 -a 13 - -t 0.760584 -s 7 -d 6 -p ack -e 40 -i 412 -a 13 h -t 0.760584 -s 7 -d 6 -p ack -e 40 -i 412 -a 13 - -t 0.760736 -s 1 -d 6 -p tcp -e 1000 -i 414 -a 13 h -t 0.760736 -s 1 -d 6 -p tcp -e 1000 -i 414 -a 13 r -t 0.761075 -s 9 -d 10 -p tcp -e 1000 -i 375 -a 20 + -t 0.761075 -s 4 -d 10 -p ack -e 40 -i 415 -a 20 - -t 0.761075 -s 4 -d 10 -p ack -e 40 -i 415 -a 20 h -t 0.761075 -s 4 -d 10 -p ack -e 40 -i 415 -a 20 r -t 0.761608 -s 8 -d 9 -p tcp -e 1000 -i 385 -a 20 + -t 0.761608 -s 9 -d 10 -p tcp -e 1000 -i 385 -a 20 - -t 0.761608 -s 9 -d 10 -p tcp -e 1000 -i 385 -a 20 h -t 0.761608 -s 9 -d 10 -p tcp -e 1000 -i 385 -a 20 r -t 0.761685 -s 8 -d 3 -p ack -e 40 -i 392 -a 20 - -t 0.762941 -s 8 -d 9 -p tcp -e 1000 -i 398 -a 21 h -t 0.762941 -s 8 -d 9 -p tcp -e 1000 -i 398 -a 21 r -t 0.763736 -s 1 -d 6 -p tcp -e 1000 -i 413 -a 13 + -t 0.763736 -s 6 -d 7 -p tcp -e 1000 -i 413 -a 13 d -t 0.763736 -s 6 -d 7 -p tcp -e 1000 -i 413 -a 13 - -t 0.763752 -s 6 -d 7 -p tcp -e 1000 -i 357 -a 12 h -t 0.763752 -s 6 -d 7 -p tcp -e 1000 -i 357 -a 12 r -t 0.763986 -s 9 -d 8 -p ack -e 40 -i 396 -a 20 + -t 0.763987 -s 8 -d 3 -p ack -e 40 -i 396 -a 20 - -t 0.763987 -s 8 -d 3 -p ack -e 40 -i 396 -a 20 h -t 0.763987 -s 8 -d 3 -p ack -e 40 -i 396 -a 20 r -t 0.764536 -s 1 -d 6 -p tcp -e 1000 -i 414 -a 13 + -t 0.764536 -s 6 -d 7 -p tcp -e 1000 -i 414 -a 13 r -t 0.764552 -s 7 -d 2 -p tcp -e 1000 -i 342 -a 11 + -t 0.764552 -s 2 -d 7 -p ack -e 40 -i 416 -a 11 - -t 0.764552 -s 2 -d 7 -p ack -e 40 -i 416 -a 11 h -t 0.764552 -s 2 -d 7 -p ack -e 40 -i 416 -a 11 r -t 0.764904 -s 7 -d 6 -p ack -e 40 -i 397 -a 13 + -t 0.764904 -s 6 -d 1 -p ack -e 40 -i 397 -a 13 - -t 0.764904 -s 6 -d 1 -p ack -e 40 -i 397 -a 13 h -t 0.764904 -s 6 -d 1 -p ack -e 40 -i 397 -a 13 r -t 0.765107 -s 4 -d 10 -p ack -e 40 -i 415 -a 20 + -t 0.765107 -s 9 -d 8 -p ack -e 40 -i 415 -a 20 - -t 0.765107 -s 9 -d 8 -p ack -e 40 -i 415 -a 20 h -t 0.765107 -s 9 -d 8 -p ack -e 40 -i 415 -a 20 r -t 0.766408 -s 9 -d 10 -p tcp -e 1000 -i 385 -a 20 + -t 0.766408 -s 4 -d 10 -p ack -e 40 -i 417 -a 20 - -t 0.766408 -s 4 -d 10 -p ack -e 40 -i 417 -a 20 h -t 0.766408 -s 4 -d 10 -p ack -e 40 -i 417 -a 20 r -t 0.766941 -s 8 -d 9 -p tcp -e 1000 -i 386 -a 20 + -t 0.766941 -s 9 -d 10 -p tcp -e 1000 -i 386 -a 20 - -t 0.766941 -s 9 -d 10 -p tcp -e 1000 -i 386 -a 20 h -t 0.766941 -s 9 -d 10 -p tcp -e 1000 -i 386 -a 20 r -t 0.767019 -s 8 -d 3 -p ack -e 40 -i 396 -a 20 + -t 0.767019 -s 3 -d 8 -p tcp -e 1000 -i 418 -a 20 - -t 0.767019 -s 3 -d 8 -p tcp -e 1000 -i 418 -a 20 h -t 0.767019 -s 3 -d 8 -p tcp -e 1000 -i 418 -a 20 + -t 0.767019 -s 3 -d 8 -p tcp -e 1000 -i 419 -a 20 + -t 0.767019 -s 3 -d 8 -p tcp -e 1000 -i 420 -a 20 r -t 0.767752 -s 6 -d 7 -p tcp -e 1000 -i 345 -a 11 + -t 0.767752 -s 7 -d 2 -p tcp -e 1000 -i 345 -a 11 - -t 0.767752 -s 7 -d 2 -p tcp -e 1000 -i 345 -a 11 h -t 0.767752 -s 7 -d 2 -p tcp -e 1000 -i 345 -a 11 - -t 0.767819 -s 3 -d 8 -p tcp -e 1000 -i 419 -a 20 h -t 0.767819 -s 3 -d 8 -p tcp -e 1000 -i 419 -a 20 r -t 0.767936 -s 6 -d 1 -p ack -e 40 -i 397 -a 13 + -t 0.767936 -s 1 -d 6 -p tcp -e 1000 -i 421 -a 13 - -t 0.767936 -s 1 -d 6 -p tcp -e 1000 -i 421 -a 13 h -t 0.767936 -s 1 -d 6 -p tcp -e 1000 -i 421 -a 13 + -t 0.767936 -s 1 -d 6 -p tcp -e 1000 -i 422 -a 13 - -t 0.768275 -s 8 -d 9 -p tcp -e 1000 -i 402 -a 21 h -t 0.768275 -s 8 -d 9 -p tcp -e 1000 -i 402 -a 21 r -t 0.768584 -s 2 -d 7 -p ack -e 40 -i 416 -a 11 + -t 0.768584 -s 7 -d 6 -p ack -e 40 -i 416 -a 11 - -t 0.768584 -s 7 -d 6 -p ack -e 40 -i 416 -a 11 h -t 0.768584 -s 7 -d 6 -p ack -e 40 -i 416 -a 11 - -t 0.768619 -s 3 -d 8 -p tcp -e 1000 -i 420 -a 20 h -t 0.768619 -s 3 -d 8 -p tcp -e 1000 -i 420 -a 20 - -t 0.768736 -s 1 -d 6 -p tcp -e 1000 -i 422 -a 13 h -t 0.768736 -s 1 -d 6 -p tcp -e 1000 -i 422 -a 13 r -t 0.76932 -s 9 -d 8 -p ack -e 40 -i 401 -a 20 + -t 0.76932 -s 8 -d 3 -p ack -e 40 -i 401 -a 20 - -t 0.76932 -s 8 -d 3 -p ack -e 40 -i 401 -a 20 h -t 0.76932 -s 8 -d 3 -p ack -e 40 -i 401 -a 20 r -t 0.77044 -s 4 -d 10 -p ack -e 40 -i 417 -a 20 + -t 0.77044 -s 9 -d 8 -p ack -e 40 -i 417 -a 20 - -t 0.77044 -s 9 -d 8 -p ack -e 40 -i 417 -a 20 h -t 0.77044 -s 9 -d 8 -p ack -e 40 -i 417 -a 20 r -t 0.770819 -s 3 -d 8 -p tcp -e 1000 -i 418 -a 20 + -t 0.770819 -s 8 -d 9 -p tcp -e 1000 -i 418 -a 20 r -t 0.771619 -s 3 -d 8 -p tcp -e 1000 -i 419 -a 20 + -t 0.771619 -s 8 -d 9 -p tcp -e 1000 -i 419 -a 20 r -t 0.771736 -s 1 -d 6 -p tcp -e 1000 -i 421 -a 13 + -t 0.771736 -s 6 -d 7 -p tcp -e 1000 -i 421 -a 13 d -t 0.771736 -s 6 -d 7 -p tcp -e 1000 -i 421 -a 13 r -t 0.771741 -s 9 -d 10 -p tcp -e 1000 -i 386 -a 20 + -t 0.771741 -s 4 -d 10 -p ack -e 40 -i 423 -a 20 - -t 0.771741 -s 4 -d 10 -p ack -e 40 -i 423 -a 20 h -t 0.771741 -s 4 -d 10 -p ack -e 40 -i 423 -a 20 - -t 0.771752 -s 6 -d 7 -p tcp -e 1000 -i 362 -a 14 h -t 0.771752 -s 6 -d 7 -p tcp -e 1000 -i 362 -a 14 r -t 0.772274 -s 8 -d 9 -p tcp -e 1000 -i 390 -a 21 + -t 0.772275 -s 9 -d 10 -p tcp -e 1000 -i 390 -a 21 - -t 0.772275 -s 9 -d 10 -p tcp -e 1000 -i 390 -a 21 h -t 0.772275 -s 9 -d 10 -p tcp -e 1000 -i 390 -a 21 r -t 0.772419 -s 3 -d 8 -p tcp -e 1000 -i 420 -a 20 r -t 0.772352 -s 8 -d 3 -p ack -e 40 -i 401 -a 20 + -t 0.772419 -s 8 -d 9 -p tcp -e 1000 -i 420 -a 20 r -t 0.772536 -s 1 -d 6 -p tcp -e 1000 -i 422 -a 13 + -t 0.772536 -s 6 -d 7 -p tcp -e 1000 -i 422 -a 13 r -t 0.772552 -s 7 -d 2 -p tcp -e 1000 -i 345 -a 11 + -t 0.772552 -s 2 -d 7 -p ack -e 40 -i 424 -a 11 - -t 0.772552 -s 2 -d 7 -p ack -e 40 -i 424 -a 11 h -t 0.772552 -s 2 -d 7 -p ack -e 40 -i 424 -a 11 r -t 0.772904 -s 7 -d 6 -p ack -e 40 -i 404 -a 11 + -t 0.772904 -s 6 -d 1 -p ack -e 40 -i 404 -a 11 - -t 0.772904 -s 6 -d 1 -p ack -e 40 -i 404 -a 11 h -t 0.772904 -s 6 -d 1 -p ack -e 40 -i 404 -a 11 - -t 0.773608 -s 8 -d 9 -p tcp -e 1000 -i 408 -a 22 h -t 0.773608 -s 8 -d 9 -p tcp -e 1000 -i 408 -a 22 r -t 0.774653 -s 9 -d 8 -p ack -e 40 -i 405 -a 20 + -t 0.774653 -s 8 -d 3 -p ack -e 40 -i 405 -a 20 - -t 0.774653 -s 8 -d 3 -p ack -e 40 -i 405 -a 20 h -t 0.774653 -s 8 -d 3 -p ack -e 40 -i 405 -a 20 r -t 0.775752 -s 6 -d 7 -p tcp -e 1000 -i 346 -a 11 + -t 0.775752 -s 7 -d 2 -p tcp -e 1000 -i 346 -a 11 - -t 0.775752 -s 7 -d 2 -p tcp -e 1000 -i 346 -a 11 h -t 0.775752 -s 7 -d 2 -p tcp -e 1000 -i 346 -a 11 r -t 0.775773 -s 4 -d 10 -p ack -e 40 -i 423 -a 20 + -t 0.775773 -s 9 -d 8 -p ack -e 40 -i 423 -a 20 - -t 0.775773 -s 9 -d 8 -p ack -e 40 -i 423 -a 20 h -t 0.775773 -s 9 -d 8 -p ack -e 40 -i 423 -a 20 r -t 0.776584 -s 2 -d 7 -p ack -e 40 -i 424 -a 11 r -t 0.775936 -s 6 -d 1 -p ack -e 40 -i 404 -a 11 + -t 0.776584 -s 7 -d 6 -p ack -e 40 -i 424 -a 11 - -t 0.776584 -s 7 -d 6 -p ack -e 40 -i 424 -a 11 h -t 0.776584 -s 7 -d 6 -p ack -e 40 -i 424 -a 11 r -t 0.777075 -s 9 -d 10 -p tcp -e 1000 -i 390 -a 21 + -t 0.777075 -s 4 -d 10 -p ack -e 40 -i 425 -a 21 - -t 0.777075 -s 4 -d 10 -p ack -e 40 -i 425 -a 21 h -t 0.777075 -s 4 -d 10 -p ack -e 40 -i 425 -a 21 r -t 0.777608 -s 8 -d 9 -p tcp -e 1000 -i 387 -a 20 + -t 0.777608 -s 9 -d 10 -p tcp -e 1000 -i 387 -a 20 - -t 0.777608 -s 9 -d 10 -p tcp -e 1000 -i 387 -a 20 h -t 0.777608 -s 9 -d 10 -p tcp -e 1000 -i 387 -a 20 r -t 0.777685 -s 8 -d 3 -p ack -e 40 -i 405 -a 20 + -t 0.777685 -s 3 -d 8 -p tcp -e 1000 -i 426 -a 20 - -t 0.777685 -s 3 -d 8 -p tcp -e 1000 -i 426 -a 20 h -t 0.777685 -s 3 -d 8 -p tcp -e 1000 -i 426 -a 20 + -t 0.777685 -s 3 -d 8 -p tcp -e 1000 -i 427 -a 20 + -t 0.777685 -s 3 -d 8 -p tcp -e 1000 -i 428 -a 20 - -t 0.778485 -s 3 -d 8 -p tcp -e 1000 -i 427 -a 20 h -t 0.778485 -s 3 -d 8 -p tcp -e 1000 -i 427 -a 20 - -t 0.778941 -s 8 -d 9 -p tcp -e 1000 -i 403 -a 21 h -t 0.778941 -s 8 -d 9 -p tcp -e 1000 -i 403 -a 21 - -t 0.779285 -s 3 -d 8 -p tcp -e 1000 -i 428 -a 20 h -t 0.779285 -s 3 -d 8 -p tcp -e 1000 -i 428 -a 20 - -t 0.779752 -s 6 -d 7 -p tcp -e 1000 -i 376 -a 13 h -t 0.779752 -s 6 -d 7 -p tcp -e 1000 -i 376 -a 13 r -t 0.779986 -s 9 -d 8 -p ack -e 40 -i 410 -a 20 + -t 0.779987 -s 8 -d 3 -p ack -e 40 -i 410 -a 20 - -t 0.779987 -s 8 -d 3 -p ack -e 40 -i 410 -a 20 h -t 0.779987 -s 8 -d 3 -p ack -e 40 -i 410 -a 20 r -t 0.780552 -s 7 -d 2 -p tcp -e 1000 -i 346 -a 11 + -t 0.780552 -s 2 -d 7 -p ack -e 40 -i 429 -a 11 - -t 0.780552 -s 2 -d 7 -p ack -e 40 -i 429 -a 11 h -t 0.780552 -s 2 -d 7 -p ack -e 40 -i 429 -a 11 r -t 0.780904 -s 7 -d 6 -p ack -e 40 -i 412 -a 13 + -t 0.780904 -s 6 -d 1 -p ack -e 40 -i 412 -a 13 - -t 0.780904 -s 6 -d 1 -p ack -e 40 -i 412 -a 13 h -t 0.780904 -s 6 -d 1 -p ack -e 40 -i 412 -a 13 r -t 0.781107 -s 4 -d 10 -p ack -e 40 -i 425 -a 21 + -t 0.781107 -s 9 -d 8 -p ack -e 40 -i 425 -a 21 - -t 0.781107 -s 9 -d 8 -p ack -e 40 -i 425 -a 21 h -t 0.781107 -s 9 -d 8 -p ack -e 40 -i 425 -a 21 r -t 0.781485 -s 3 -d 8 -p tcp -e 1000 -i 426 -a 20 + -t 0.781485 -s 8 -d 9 -p tcp -e 1000 -i 426 -a 20 r -t 0.782285 -s 3 -d 8 -p tcp -e 1000 -i 427 -a 20 + -t 0.782285 -s 8 -d 9 -p tcp -e 1000 -i 427 -a 20 r -t 0.782408 -s 9 -d 10 -p tcp -e 1000 -i 387 -a 20 + -t 0.782408 -s 4 -d 10 -p ack -e 40 -i 430 -a 20 - -t 0.782408 -s 4 -d 10 -p ack -e 40 -i 430 -a 20 h -t 0.782408 -s 4 -d 10 -p ack -e 40 -i 430 -a 20 r -t 0.782941 -s 8 -d 9 -p tcp -e 1000 -i 395 -a 21 + -t 0.782941 -s 9 -d 10 -p tcp -e 1000 -i 395 -a 21 - -t 0.782941 -s 9 -d 10 -p tcp -e 1000 -i 395 -a 21 h -t 0.782941 -s 9 -d 10 -p tcp -e 1000 -i 395 -a 21 r -t 0.783085 -s 3 -d 8 -p tcp -e 1000 -i 428 -a 20 r -t 0.783019 -s 8 -d 3 -p ack -e 40 -i 410 -a 20 + -t 0.783085 -s 8 -d 9 -p tcp -e 1000 -i 428 -a 20 r -t 0.783752 -s 6 -d 7 -p tcp -e 1000 -i 352 -a 14 + -t 0.783752 -s 7 -d 2 -p tcp -e 1000 -i 352 -a 14 - -t 0.783752 -s 7 -d 2 -p tcp -e 1000 -i 352 -a 14 h -t 0.783752 -s 7 -d 2 -p tcp -e 1000 -i 352 -a 14 r -t 0.783936 -s 6 -d 1 -p ack -e 40 -i 412 -a 13 + -t 0.783936 -s 1 -d 6 -p tcp -e 1000 -i 431 -a 13 - -t 0.783936 -s 1 -d 6 -p tcp -e 1000 -i 431 -a 13 h -t 0.783936 -s 1 -d 6 -p tcp -e 1000 -i 431 -a 13 + -t 0.783936 -s 1 -d 6 -p tcp -e 1000 -i 432 -a 13 - -t 0.784275 -s 8 -d 9 -p tcp -e 1000 -i 409 -a 22 h -t 0.784275 -s 8 -d 9 -p tcp -e 1000 -i 409 -a 22 r -t 0.784584 -s 2 -d 7 -p ack -e 40 -i 429 -a 11 + -t 0.784584 -s 7 -d 6 -p ack -e 40 -i 429 -a 11 - -t 0.784584 -s 7 -d 6 -p ack -e 40 -i 429 -a 11 h -t 0.784584 -s 7 -d 6 -p ack -e 40 -i 429 -a 11 - -t 0.784736 -s 1 -d 6 -p tcp -e 1000 -i 432 -a 13 h -t 0.784736 -s 1 -d 6 -p tcp -e 1000 -i 432 -a 13 r -t 0.78532 -s 9 -d 8 -p ack -e 40 -i 415 -a 20 + -t 0.78532 -s 8 -d 3 -p ack -e 40 -i 415 -a 20 - -t 0.78532 -s 8 -d 3 -p ack -e 40 -i 415 -a 20 h -t 0.78532 -s 8 -d 3 -p ack -e 40 -i 415 -a 20 r -t 0.78644 -s 4 -d 10 -p ack -e 40 -i 430 -a 20 + -t 0.78644 -s 9 -d 8 -p ack -e 40 -i 430 -a 20 - -t 0.78644 -s 9 -d 8 -p ack -e 40 -i 430 -a 20 h -t 0.78644 -s 9 -d 8 -p ack -e 40 -i 430 -a 20 r -t 0.787736 -s 1 -d 6 -p tcp -e 1000 -i 431 -a 13 + -t 0.787736 -s 6 -d 7 -p tcp -e 1000 -i 431 -a 13 r -t 0.787741 -s 9 -d 10 -p tcp -e 1000 -i 395 -a 21 + -t 0.787741 -s 4 -d 10 -p ack -e 40 -i 433 -a 21 - -t 0.787741 -s 4 -d 10 -p ack -e 40 -i 433 -a 21 h -t 0.787741 -s 4 -d 10 -p ack -e 40 -i 433 -a 21 - -t 0.787752 -s 6 -d 7 -p tcp -e 1000 -i 380 -a 14 h -t 0.787752 -s 6 -d 7 -p tcp -e 1000 -i 380 -a 14 r -t 0.788274 -s 8 -d 9 -p tcp -e 1000 -i 398 -a 21 + -t 0.788275 -s 9 -d 10 -p tcp -e 1000 -i 398 -a 21 - -t 0.788275 -s 9 -d 10 -p tcp -e 1000 -i 398 -a 21 h -t 0.788275 -s 9 -d 10 -p tcp -e 1000 -i 398 -a 21 r -t 0.788352 -s 8 -d 3 -p ack -e 40 -i 415 -a 20 + -t 0.788352 -s 3 -d 8 -p tcp -e 1000 -i 434 -a 20 - -t 0.788352 -s 3 -d 8 -p tcp -e 1000 -i 434 -a 20 h -t 0.788352 -s 3 -d 8 -p tcp -e 1000 -i 434 -a 20 + -t 0.788352 -s 3 -d 8 -p tcp -e 1000 -i 435 -a 20 + -t 0.788352 -s 3 -d 8 -p tcp -e 1000 -i 436 -a 20 r -t 0.788536 -s 1 -d 6 -p tcp -e 1000 -i 432 -a 13 + -t 0.788536 -s 6 -d 7 -p tcp -e 1000 -i 432 -a 13 r -t 0.788552 -s 7 -d 2 -p tcp -e 1000 -i 352 -a 14 + -t 0.788552 -s 2 -d 7 -p ack -e 40 -i 437 -a 14 - -t 0.788552 -s 2 -d 7 -p ack -e 40 -i 437 -a 14 h -t 0.788552 -s 2 -d 7 -p ack -e 40 -i 437 -a 14 r -t 0.788904 -s 7 -d 6 -p ack -e 40 -i 416 -a 11 + -t 0.788904 -s 6 -d 1 -p ack -e 40 -i 416 -a 11 - -t 0.788904 -s 6 -d 1 -p ack -e 40 -i 416 -a 11 h -t 0.788904 -s 6 -d 1 -p ack -e 40 -i 416 -a 11 - -t 0.789152 -s 3 -d 8 -p tcp -e 1000 -i 435 -a 20 h -t 0.789152 -s 3 -d 8 -p tcp -e 1000 -i 435 -a 20 - -t 0.789608 -s 8 -d 9 -p tcp -e 1000 -i 418 -a 20 h -t 0.789608 -s 8 -d 9 -p tcp -e 1000 -i 418 -a 20 - -t 0.789952 -s 3 -d 8 -p tcp -e 1000 -i 436 -a 20 h -t 0.789952 -s 3 -d 8 -p tcp -e 1000 -i 436 -a 20 r -t 0.790653 -s 9 -d 8 -p ack -e 40 -i 417 -a 20 + -t 0.790653 -s 8 -d 3 -p ack -e 40 -i 417 -a 20 - -t 0.790653 -s 8 -d 3 -p ack -e 40 -i 417 -a 20 h -t 0.790653 -s 8 -d 3 -p ack -e 40 -i 417 -a 20 r -t 0.791752 -s 6 -d 7 -p tcp -e 1000 -i 357 -a 12 + -t 0.791752 -s 7 -d 2 -p tcp -e 1000 -i 357 -a 12 - -t 0.791752 -s 7 -d 2 -p tcp -e 1000 -i 357 -a 12 h -t 0.791752 -s 7 -d 2 -p tcp -e 1000 -i 357 -a 12 r -t 0.791773 -s 4 -d 10 -p ack -e 40 -i 433 -a 21 + -t 0.791773 -s 9 -d 8 -p ack -e 40 -i 433 -a 21 - -t 0.791773 -s 9 -d 8 -p ack -e 40 -i 433 -a 21 h -t 0.791773 -s 9 -d 8 -p ack -e 40 -i 433 -a 21 r -t 0.791936 -s 6 -d 1 -p ack -e 40 -i 416 -a 11 + -t 0.791936 -s 1 -d 6 -p tcp -e 1000 -i 438 -a 11 - -t 0.791936 -s 1 -d 6 -p tcp -e 1000 -i 438 -a 11 h -t 0.791936 -s 1 -d 6 -p tcp -e 1000 -i 438 -a 11 + -t 0.791936 -s 1 -d 6 -p tcp -e 1000 -i 439 -a 11 + -t 0.791936 -s 1 -d 6 -p tcp -e 1000 -i 440 -a 11 r -t 0.792152 -s 3 -d 8 -p tcp -e 1000 -i 434 -a 20 + -t 0.792152 -s 8 -d 9 -p tcp -e 1000 -i 434 -a 20 r -t 0.792584 -s 2 -d 7 -p ack -e 40 -i 437 -a 14 + -t 0.792584 -s 7 -d 6 -p ack -e 40 -i 437 -a 14 - -t 0.792584 -s 7 -d 6 -p ack -e 40 -i 437 -a 14 h -t 0.792584 -s 7 -d 6 -p ack -e 40 -i 437 -a 14 - -t 0.792736 -s 1 -d 6 -p tcp -e 1000 -i 439 -a 11 h -t 0.792736 -s 1 -d 6 -p tcp -e 1000 -i 439 -a 11 r -t 0.792952 -s 3 -d 8 -p tcp -e 1000 -i 435 -a 20 + -t 0.792952 -s 8 -d 9 -p tcp -e 1000 -i 435 -a 20 r -t 0.793075 -s 9 -d 10 -p tcp -e 1000 -i 398 -a 21 + -t 0.793075 -s 4 -d 10 -p ack -e 40 -i 441 -a 21 - -t 0.793075 -s 4 -d 10 -p ack -e 40 -i 441 -a 21 h -t 0.793075 -s 4 -d 10 -p ack -e 40 -i 441 -a 21 - -t 0.793536 -s 1 -d 6 -p tcp -e 1000 -i 440 -a 11 h -t 0.793536 -s 1 -d 6 -p tcp -e 1000 -i 440 -a 11 r -t 0.793608 -s 8 -d 9 -p tcp -e 1000 -i 402 -a 21 + -t 0.793608 -s 9 -d 10 -p tcp -e 1000 -i 402 -a 21 - -t 0.793608 -s 9 -d 10 -p tcp -e 1000 -i 402 -a 21 h -t 0.793608 -s 9 -d 10 -p tcp -e 1000 -i 402 -a 21 r -t 0.793752 -s 3 -d 8 -p tcp -e 1000 -i 436 -a 20 r -t 0.793685 -s 8 -d 3 -p ack -e 40 -i 417 -a 20 + -t 0.793752 -s 8 -d 9 -p tcp -e 1000 -i 436 -a 20 - -t 0.794941 -s 8 -d 9 -p tcp -e 1000 -i 419 -a 20 h -t 0.794941 -s 8 -d 9 -p tcp -e 1000 -i 419 -a 20 r -t 0.795736 -s 1 -d 6 -p tcp -e 1000 -i 438 -a 11 + -t 0.795736 -s 6 -d 7 -p tcp -e 1000 -i 438 -a 11 d -t 0.795736 -s 6 -d 7 -p tcp -e 1000 -i 432 -a 13 - -t 0.795752 -s 6 -d 7 -p tcp -e 1000 -i 388 -a 13 h -t 0.795752 -s 6 -d 7 -p tcp -e 1000 -i 388 -a 13 r -t 0.795986 -s 9 -d 8 -p ack -e 40 -i 423 -a 20 + -t 0.795987 -s 8 -d 3 -p ack -e 40 -i 423 -a 20 - -t 0.795987 -s 8 -d 3 -p ack -e 40 -i 423 -a 20 h -t 0.795987 -s 8 -d 3 -p ack -e 40 -i 423 -a 20 r -t 0.796536 -s 1 -d 6 -p tcp -e 1000 -i 439 -a 11 + -t 0.796536 -s 6 -d 7 -p tcp -e 1000 -i 439 -a 11 r -t 0.796552 -s 7 -d 2 -p tcp -e 1000 -i 357 -a 12 + -t 0.796552 -s 2 -d 7 -p ack -e 40 -i 442 -a 12 - -t 0.796552 -s 2 -d 7 -p ack -e 40 -i 442 -a 12 h -t 0.796552 -s 2 -d 7 -p ack -e 40 -i 442 -a 12 r -t 0.796904 -s 7 -d 6 -p ack -e 40 -i 424 -a 11 + -t 0.796904 -s 6 -d 1 -p ack -e 40 -i 424 -a 11 - -t 0.796904 -s 6 -d 1 -p ack -e 40 -i 424 -a 11 h -t 0.796904 -s 6 -d 1 -p ack -e 40 -i 424 -a 11 r -t 0.797107 -s 4 -d 10 -p ack -e 40 -i 441 -a 21 + -t 0.797107 -s 9 -d 8 -p ack -e 40 -i 441 -a 21 - -t 0.797107 -s 9 -d 8 -p ack -e 40 -i 441 -a 21 h -t 0.797107 -s 9 -d 8 -p ack -e 40 -i 441 -a 21 r -t 0.797336 -s 1 -d 6 -p tcp -e 1000 -i 440 -a 11 + -t 0.797336 -s 6 -d 7 -p tcp -e 1000 -i 440 -a 11 d -t 0.797336 -s 6 -d 7 -p tcp -e 1000 -i 440 -a 11 r -t 0.798408 -s 9 -d 10 -p tcp -e 1000 -i 402 -a 21 + -t 0.798408 -s 4 -d 10 -p ack -e 40 -i 443 -a 21 - -t 0.798408 -s 4 -d 10 -p ack -e 40 -i 443 -a 21 h -t 0.798408 -s 4 -d 10 -p ack -e 40 -i 443 -a 21 r -t 0.798941 -s 8 -d 9 -p tcp -e 1000 -i 408 -a 22 + -t 0.798941 -s 9 -d 10 -p tcp -e 1000 -i 408 -a 22 - -t 0.798941 -s 9 -d 10 -p tcp -e 1000 -i 408 -a 22 h -t 0.798941 -s 9 -d 10 -p tcp -e 1000 -i 408 -a 22 r -t 0.799019 -s 8 -d 3 -p ack -e 40 -i 423 -a 20 + -t 0.799019 -s 3 -d 8 -p tcp -e 1000 -i 444 -a 20 - -t 0.799019 -s 3 -d 8 -p tcp -e 1000 -i 444 -a 20 h -t 0.799019 -s 3 -d 8 -p tcp -e 1000 -i 444 -a 20 + -t 0.799019 -s 3 -d 8 -p tcp -e 1000 -i 445 -a 20 + -t 0.799019 -s 3 -d 8 -p tcp -e 1000 -i 446 -a 20 r -t 0.799752 -s 6 -d 7 -p tcp -e 1000 -i 362 -a 14 + -t 0.799752 -s 7 -d 2 -p tcp -e 1000 -i 362 -a 14 - -t 0.799752 -s 7 -d 2 -p tcp -e 1000 -i 362 -a 14 h -t 0.799752 -s 7 -d 2 -p tcp -e 1000 -i 362 -a 14 - -t 0.799819 -s 3 -d 8 -p tcp -e 1000 -i 445 -a 20 h -t 0.799819 -s 3 -d 8 -p tcp -e 1000 -i 445 -a 20 r -t 0.799936 -s 6 -d 1 -p ack -e 40 -i 424 -a 11 - -t 0.800275 -s 8 -d 9 -p tcp -e 1000 -i 420 -a 20 h -t 0.800275 -s 8 -d 9 -p tcp -e 1000 -i 420 -a 20 r -t 0.800584 -s 2 -d 7 -p ack -e 40 -i 442 -a 12 + -t 0.800584 -s 7 -d 6 -p ack -e 40 -i 442 -a 12 - -t 0.800584 -s 7 -d 6 -p ack -e 40 -i 442 -a 12 h -t 0.800584 -s 7 -d 6 -p ack -e 40 -i 442 -a 12 - -t 0.800619 -s 3 -d 8 -p tcp -e 1000 -i 446 -a 20 h -t 0.800619 -s 3 -d 8 -p tcp -e 1000 -i 446 -a 20 r -t 0.80132 -s 9 -d 8 -p ack -e 40 -i 425 -a 21 + -t 0.80132 -s 8 -d 3 -p ack -e 40 -i 425 -a 21 - -t 0.80132 -s 8 -d 3 -p ack -e 40 -i 425 -a 21 h -t 0.80132 -s 8 -d 3 -p ack -e 40 -i 425 -a 21 r -t 0.80244 -s 4 -d 10 -p ack -e 40 -i 443 -a 21 + -t 0.80244 -s 9 -d 8 -p ack -e 40 -i 443 -a 21 - -t 0.80244 -s 9 -d 8 -p ack -e 40 -i 443 -a 21 h -t 0.80244 -s 9 -d 8 -p ack -e 40 -i 443 -a 21 r -t 0.802819 -s 3 -d 8 -p tcp -e 1000 -i 444 -a 20 + -t 0.802819 -s 8 -d 9 -p tcp -e 1000 -i 444 -a 20 r -t 0.803619 -s 3 -d 8 -p tcp -e 1000 -i 445 -a 20 + -t 0.803619 -s 8 -d 9 -p tcp -e 1000 -i 445 -a 20 r -t 0.803741 -s 9 -d 10 -p tcp -e 1000 -i 408 -a 22 + -t 0.803741 -s 4 -d 10 -p ack -e 40 -i 447 -a 22 - -t 0.803741 -s 4 -d 10 -p ack -e 40 -i 447 -a 22 h -t 0.803741 -s 4 -d 10 -p ack -e 40 -i 447 -a 22 - -t 0.803752 -s 6 -d 7 -p tcp -e 1000 -i 389 -a 13 h -t 0.803752 -s 6 -d 7 -p tcp -e 1000 -i 389 -a 13 r -t 0.804274 -s 8 -d 9 -p tcp -e 1000 -i 403 -a 21 + -t 0.804275 -s 9 -d 10 -p tcp -e 1000 -i 403 -a 21 - -t 0.804275 -s 9 -d 10 -p tcp -e 1000 -i 403 -a 21 h -t 0.804275 -s 9 -d 10 -p tcp -e 1000 -i 403 -a 21 r -t 0.804352 -s 8 -d 3 -p ack -e 40 -i 425 -a 21 + -t 0.804352 -s 3 -d 8 -p tcp -e 1000 -i 448 -a 21 - -t 0.804352 -s 3 -d 8 -p tcp -e 1000 -i 448 -a 21 h -t 0.804352 -s 3 -d 8 -p tcp -e 1000 -i 448 -a 21 r -t 0.804419 -s 3 -d 8 -p tcp -e 1000 -i 446 -a 20 + -t 0.804419 -s 8 -d 9 -p tcp -e 1000 -i 446 -a 20 r -t 0.804552 -s 7 -d 2 -p tcp -e 1000 -i 362 -a 14 + -t 0.804552 -s 2 -d 7 -p ack -e 40 -i 449 -a 14 - -t 0.804552 -s 2 -d 7 -p ack -e 40 -i 449 -a 14 h -t 0.804552 -s 2 -d 7 -p ack -e 40 -i 449 -a 14 r -t 0.804904 -s 7 -d 6 -p ack -e 40 -i 429 -a 11 + -t 0.804904 -s 6 -d 1 -p ack -e 40 -i 429 -a 11 - -t 0.804904 -s 6 -d 1 -p ack -e 40 -i 429 -a 11 h -t 0.804904 -s 6 -d 1 -p ack -e 40 -i 429 -a 11 - -t 0.805608 -s 8 -d 9 -p tcp -e 1000 -i 426 -a 20 h -t 0.805608 -s 8 -d 9 -p tcp -e 1000 -i 426 -a 20 r -t 0.806653 -s 9 -d 8 -p ack -e 40 -i 430 -a 20 + -t 0.806653 -s 8 -d 3 -p ack -e 40 -i 430 -a 20 - -t 0.806653 -s 8 -d 3 -p ack -e 40 -i 430 -a 20 h -t 0.806653 -s 8 -d 3 -p ack -e 40 -i 430 -a 20 r -t 0.807752 -s 6 -d 7 -p tcp -e 1000 -i 376 -a 13 + -t 0.807752 -s 7 -d 2 -p tcp -e 1000 -i 376 -a 13 - -t 0.807752 -s 7 -d 2 -p tcp -e 1000 -i 376 -a 13 h -t 0.807752 -s 7 -d 2 -p tcp -e 1000 -i 376 -a 13 r -t 0.807773 -s 4 -d 10 -p ack -e 40 -i 447 -a 22 + -t 0.807773 -s 9 -d 8 -p ack -e 40 -i 447 -a 22 - -t 0.807773 -s 9 -d 8 -p ack -e 40 -i 447 -a 22 h -t 0.807773 -s 9 -d 8 -p ack -e 40 -i 447 -a 22 r -t 0.808152 -s 3 -d 8 -p tcp -e 1000 -i 448 -a 21 r -t 0.807936 -s 6 -d 1 -p ack -e 40 -i 429 -a 11 + -t 0.808152 -s 8 -d 9 -p tcp -e 1000 -i 448 -a 21 r -t 0.808584 -s 2 -d 7 -p ack -e 40 -i 449 -a 14 + -t 0.808584 -s 7 -d 6 -p ack -e 40 -i 449 -a 14 - -t 0.808584 -s 7 -d 6 -p ack -e 40 -i 449 -a 14 h -t 0.808584 -s 7 -d 6 -p ack -e 40 -i 449 -a 14 r -t 0.809075 -s 9 -d 10 -p tcp -e 1000 -i 403 -a 21 + -t 0.809075 -s 4 -d 10 -p ack -e 40 -i 450 -a 21 - -t 0.809075 -s 4 -d 10 -p ack -e 40 -i 450 -a 21 h -t 0.809075 -s 4 -d 10 -p ack -e 40 -i 450 -a 21 r -t 0.809608 -s 8 -d 9 -p tcp -e 1000 -i 409 -a 22 + -t 0.809608 -s 9 -d 10 -p tcp -e 1000 -i 409 -a 22 - -t 0.809608 -s 9 -d 10 -p tcp -e 1000 -i 409 -a 22 h -t 0.809608 -s 9 -d 10 -p tcp -e 1000 -i 409 -a 22 r -t 0.809685 -s 8 -d 3 -p ack -e 40 -i 430 -a 20 - -t 0.810941 -s 8 -d 9 -p tcp -e 1000 -i 427 -a 20 h -t 0.810941 -s 8 -d 9 -p tcp -e 1000 -i 427 -a 20 - -t 0.811752 -s 6 -d 7 -p tcp -e 1000 -i 394 -a 13 h -t 0.811752 -s 6 -d 7 -p tcp -e 1000 -i 394 -a 13 r -t 0.811986 -s 9 -d 8 -p ack -e 40 -i 433 -a 21 + -t 0.811987 -s 8 -d 3 -p ack -e 40 -i 433 -a 21 - -t 0.811987 -s 8 -d 3 -p ack -e 40 -i 433 -a 21 h -t 0.811987 -s 8 -d 3 -p ack -e 40 -i 433 -a 21 r -t 0.812552 -s 7 -d 2 -p tcp -e 1000 -i 376 -a 13 + -t 0.812552 -s 2 -d 7 -p ack -e 40 -i 451 -a 13 - -t 0.812552 -s 2 -d 7 -p ack -e 40 -i 451 -a 13 h -t 0.812552 -s 2 -d 7 -p ack -e 40 -i 451 -a 13 r -t 0.812904 -s 7 -d 6 -p ack -e 40 -i 437 -a 14 + -t 0.812904 -s 6 -d 1 -p ack -e 40 -i 437 -a 14 - -t 0.812904 -s 6 -d 1 -p ack -e 40 -i 437 -a 14 h -t 0.812904 -s 6 -d 1 -p ack -e 40 -i 437 -a 14 r -t 0.813107 -s 4 -d 10 -p ack -e 40 -i 450 -a 21 + -t 0.813107 -s 9 -d 8 -p ack -e 40 -i 450 -a 21 - -t 0.813107 -s 9 -d 8 -p ack -e 40 -i 450 -a 21 h -t 0.813107 -s 9 -d 8 -p ack -e 40 -i 450 -a 21 r -t 0.814408 -s 9 -d 10 -p tcp -e 1000 -i 409 -a 22 + -t 0.814408 -s 4 -d 10 -p ack -e 40 -i 452 -a 22 - -t 0.814408 -s 4 -d 10 -p ack -e 40 -i 452 -a 22 h -t 0.814408 -s 4 -d 10 -p ack -e 40 -i 452 -a 22 r -t 0.814941 -s 8 -d 9 -p tcp -e 1000 -i 418 -a 20 + -t 0.814941 -s 9 -d 10 -p tcp -e 1000 -i 418 -a 20 - -t 0.814941 -s 9 -d 10 -p tcp -e 1000 -i 418 -a 20 h -t 0.814941 -s 9 -d 10 -p tcp -e 1000 -i 418 -a 20 r -t 0.815019 -s 8 -d 3 -p ack -e 40 -i 433 -a 21 + -t 0.815019 -s 3 -d 8 -p tcp -e 1000 -i 453 -a 21 - -t 0.815019 -s 3 -d 8 -p tcp -e 1000 -i 453 -a 21 h -t 0.815019 -s 3 -d 8 -p tcp -e 1000 -i 453 -a 21 r -t 0.815752 -s 6 -d 7 -p tcp -e 1000 -i 380 -a 14 + -t 0.815752 -s 7 -d 2 -p tcp -e 1000 -i 380 -a 14 - -t 0.815752 -s 7 -d 2 -p tcp -e 1000 -i 380 -a 14 h -t 0.815752 -s 7 -d 2 -p tcp -e 1000 -i 380 -a 14 r -t 0.815936 -s 6 -d 1 -p ack -e 40 -i 437 -a 14 - -t 0.816275 -s 8 -d 9 -p tcp -e 1000 -i 428 -a 20 h -t 0.816275 -s 8 -d 9 -p tcp -e 1000 -i 428 -a 20 r -t 0.816584 -s 2 -d 7 -p ack -e 40 -i 451 -a 13 + -t 0.816584 -s 7 -d 6 -p ack -e 40 -i 451 -a 13 - -t 0.816584 -s 7 -d 6 -p ack -e 40 -i 451 -a 13 h -t 0.816584 -s 7 -d 6 -p ack -e 40 -i 451 -a 13 r -t 0.81732 -s 9 -d 8 -p ack -e 40 -i 441 -a 21 + -t 0.81732 -s 8 -d 3 -p ack -e 40 -i 441 -a 21 - -t 0.81732 -s 8 -d 3 -p ack -e 40 -i 441 -a 21 h -t 0.81732 -s 8 -d 3 -p ack -e 40 -i 441 -a 21 r -t 0.81844 -s 4 -d 10 -p ack -e 40 -i 452 -a 22 + -t 0.81844 -s 9 -d 8 -p ack -e 40 -i 452 -a 22 - -t 0.81844 -s 9 -d 8 -p ack -e 40 -i 452 -a 22 h -t 0.81844 -s 9 -d 8 -p ack -e 40 -i 452 -a 22 r -t 0.818819 -s 3 -d 8 -p tcp -e 1000 -i 453 -a 21 + -t 0.818819 -s 8 -d 9 -p tcp -e 1000 -i 453 -a 21 r -t 0.819741 -s 9 -d 10 -p tcp -e 1000 -i 418 -a 20 + -t 0.819741 -s 4 -d 10 -p ack -e 40 -i 454 -a 20 - -t 0.819741 -s 4 -d 10 -p ack -e 40 -i 454 -a 20 h -t 0.819741 -s 4 -d 10 -p ack -e 40 -i 454 -a 20 - -t 0.819752 -s 6 -d 7 -p tcp -e 1000 -i 400 -a 13 h -t 0.819752 -s 6 -d 7 -p tcp -e 1000 -i 400 -a 13 r -t 0.820274 -s 8 -d 9 -p tcp -e 1000 -i 419 -a 20 + -t 0.820275 -s 9 -d 10 -p tcp -e 1000 -i 419 -a 20 - -t 0.820275 -s 9 -d 10 -p tcp -e 1000 -i 419 -a 20 h -t 0.820275 -s 9 -d 10 -p tcp -e 1000 -i 419 -a 20 r -t 0.820352 -s 8 -d 3 -p ack -e 40 -i 441 -a 21 + -t 0.820352 -s 3 -d 8 -p tcp -e 1000 -i 455 -a 21 - -t 0.820352 -s 3 -d 8 -p tcp -e 1000 -i 455 -a 21 h -t 0.820352 -s 3 -d 8 -p tcp -e 1000 -i 455 -a 21 r -t 0.820552 -s 7 -d 2 -p tcp -e 1000 -i 380 -a 14 + -t 0.820552 -s 2 -d 7 -p ack -e 40 -i 456 -a 14 - -t 0.820552 -s 2 -d 7 -p ack -e 40 -i 456 -a 14 h -t 0.820552 -s 2 -d 7 -p ack -e 40 -i 456 -a 14 r -t 0.820904 -s 7 -d 6 -p ack -e 40 -i 442 -a 12 + -t 0.820904 -s 6 -d 1 -p ack -e 40 -i 442 -a 12 - -t 0.820904 -s 6 -d 1 -p ack -e 40 -i 442 -a 12 h -t 0.820904 -s 6 -d 1 -p ack -e 40 -i 442 -a 12 - -t 0.821608 -s 8 -d 9 -p tcp -e 1000 -i 434 -a 20 h -t 0.821608 -s 8 -d 9 -p tcp -e 1000 -i 434 -a 20 r -t 0.822653 -s 9 -d 8 -p ack -e 40 -i 443 -a 21 + -t 0.822653 -s 8 -d 3 -p ack -e 40 -i 443 -a 21 - -t 0.822653 -s 8 -d 3 -p ack -e 40 -i 443 -a 21 h -t 0.822653 -s 8 -d 3 -p ack -e 40 -i 443 -a 21 r -t 0.823752 -s 6 -d 7 -p tcp -e 1000 -i 388 -a 13 + -t 0.823752 -s 7 -d 2 -p tcp -e 1000 -i 388 -a 13 - -t 0.823752 -s 7 -d 2 -p tcp -e 1000 -i 388 -a 13 h -t 0.823752 -s 7 -d 2 -p tcp -e 1000 -i 388 -a 13 r -t 0.823773 -s 4 -d 10 -p ack -e 40 -i 454 -a 20 + -t 0.823773 -s 9 -d 8 -p ack -e 40 -i 454 -a 20 - -t 0.823773 -s 9 -d 8 -p ack -e 40 -i 454 -a 20 h -t 0.823773 -s 9 -d 8 -p ack -e 40 -i 454 -a 20 r -t 0.824152 -s 3 -d 8 -p tcp -e 1000 -i 455 -a 21 r -t 0.823936 -s 6 -d 1 -p ack -e 40 -i 442 -a 12 + -t 0.824152 -s 8 -d 9 -p tcp -e 1000 -i 455 -a 21 r -t 0.824584 -s 2 -d 7 -p ack -e 40 -i 456 -a 14 + -t 0.824584 -s 7 -d 6 -p ack -e 40 -i 456 -a 14 - -t 0.824584 -s 7 -d 6 -p ack -e 40 -i 456 -a 14 h -t 0.824584 -s 7 -d 6 -p ack -e 40 -i 456 -a 14 r -t 0.825075 -s 9 -d 10 -p tcp -e 1000 -i 419 -a 20 + -t 0.825075 -s 4 -d 10 -p ack -e 40 -i 457 -a 20 - -t 0.825075 -s 4 -d 10 -p ack -e 40 -i 457 -a 20 h -t 0.825075 -s 4 -d 10 -p ack -e 40 -i 457 -a 20 r -t 0.825608 -s 8 -d 9 -p tcp -e 1000 -i 420 -a 20 + -t 0.825608 -s 9 -d 10 -p tcp -e 1000 -i 420 -a 20 - -t 0.825608 -s 9 -d 10 -p tcp -e 1000 -i 420 -a 20 h -t 0.825608 -s 9 -d 10 -p tcp -e 1000 -i 420 -a 20 r -t 0.825685 -s 8 -d 3 -p ack -e 40 -i 443 -a 21 + -t 0.825685 -s 3 -d 8 -p tcp -e 1000 -i 458 -a 21 - -t 0.825685 -s 3 -d 8 -p tcp -e 1000 -i 458 -a 21 h -t 0.825685 -s 3 -d 8 -p tcp -e 1000 -i 458 -a 21 - -t 0.826941 -s 8 -d 9 -p tcp -e 1000 -i 435 -a 20 h -t 0.826941 -s 8 -d 9 -p tcp -e 1000 -i 435 -a 20 - -t 0.827752 -s 6 -d 7 -p tcp -e 1000 -i 411 -a 10 h -t 0.827752 -s 6 -d 7 -p tcp -e 1000 -i 411 -a 10 r -t 0.827986 -s 9 -d 8 -p ack -e 40 -i 447 -a 22 + -t 0.827987 -s 8 -d 3 -p ack -e 40 -i 447 -a 22 - -t 0.827987 -s 8 -d 3 -p ack -e 40 -i 447 -a 22 h -t 0.827987 -s 8 -d 3 -p ack -e 40 -i 447 -a 22 r -t 0.828552 -s 7 -d 2 -p tcp -e 1000 -i 388 -a 13 + -t 0.828552 -s 2 -d 7 -p ack -e 40 -i 459 -a 13 - -t 0.828552 -s 2 -d 7 -p ack -e 40 -i 459 -a 13 h -t 0.828552 -s 2 -d 7 -p ack -e 40 -i 459 -a 13 r -t 0.828904 -s 7 -d 6 -p ack -e 40 -i 449 -a 14 + -t 0.828904 -s 6 -d 1 -p ack -e 40 -i 449 -a 14 - -t 0.828904 -s 6 -d 1 -p ack -e 40 -i 449 -a 14 h -t 0.828904 -s 6 -d 1 -p ack -e 40 -i 449 -a 14 r -t 0.829107 -s 4 -d 10 -p ack -e 40 -i 457 -a 20 + -t 0.829107 -s 9 -d 8 -p ack -e 40 -i 457 -a 20 - -t 0.829107 -s 9 -d 8 -p ack -e 40 -i 457 -a 20 h -t 0.829107 -s 9 -d 8 -p ack -e 40 -i 457 -a 20 r -t 0.829485 -s 3 -d 8 -p tcp -e 1000 -i 458 -a 21 + -t 0.829485 -s 8 -d 9 -p tcp -e 1000 -i 458 -a 21 r -t 0.830408 -s 9 -d 10 -p tcp -e 1000 -i 420 -a 20 + -t 0.830408 -s 4 -d 10 -p ack -e 40 -i 460 -a 20 - -t 0.830408 -s 4 -d 10 -p ack -e 40 -i 460 -a 20 h -t 0.830408 -s 4 -d 10 -p ack -e 40 -i 460 -a 20 r -t 0.830941 -s 8 -d 9 -p tcp -e 1000 -i 426 -a 20 + -t 0.830941 -s 9 -d 10 -p tcp -e 1000 -i 426 -a 20 - -t 0.830941 -s 9 -d 10 -p tcp -e 1000 -i 426 -a 20 h -t 0.830941 -s 9 -d 10 -p tcp -e 1000 -i 426 -a 20 r -t 0.831019 -s 8 -d 3 -p ack -e 40 -i 447 -a 22 + -t 0.831019 -s 3 -d 8 -p tcp -e 1000 -i 461 -a 22 - -t 0.831019 -s 3 -d 8 -p tcp -e 1000 -i 461 -a 22 h -t 0.831019 -s 3 -d 8 -p tcp -e 1000 -i 461 -a 22 r -t 0.831752 -s 6 -d 7 -p tcp -e 1000 -i 389 -a 13 + -t 0.831752 -s 7 -d 2 -p tcp -e 1000 -i 389 -a 13 - -t 0.831752 -s 7 -d 2 -p tcp -e 1000 -i 389 -a 13 h -t 0.831752 -s 7 -d 2 -p tcp -e 1000 -i 389 -a 13 r -t 0.831936 -s 6 -d 1 -p ack -e 40 -i 449 -a 14 - -t 0.832275 -s 8 -d 9 -p tcp -e 1000 -i 436 -a 20 h -t 0.832275 -s 8 -d 9 -p tcp -e 1000 -i 436 -a 20 r -t 0.832584 -s 2 -d 7 -p ack -e 40 -i 459 -a 13 + -t 0.832584 -s 7 -d 6 -p ack -e 40 -i 459 -a 13 - -t 0.832584 -s 7 -d 6 -p ack -e 40 -i 459 -a 13 h -t 0.832584 -s 7 -d 6 -p ack -e 40 -i 459 -a 13 r -t 0.83332 -s 9 -d 8 -p ack -e 40 -i 450 -a 21 + -t 0.83332 -s 8 -d 3 -p ack -e 40 -i 450 -a 21 - -t 0.83332 -s 8 -d 3 -p ack -e 40 -i 450 -a 21 h -t 0.83332 -s 8 -d 3 -p ack -e 40 -i 450 -a 21 r -t 0.83444 -s 4 -d 10 -p ack -e 40 -i 460 -a 20 + -t 0.83444 -s 9 -d 8 -p ack -e 40 -i 460 -a 20 - -t 0.83444 -s 9 -d 8 -p ack -e 40 -i 460 -a 20 h -t 0.83444 -s 9 -d 8 -p ack -e 40 -i 460 -a 20 r -t 0.834819 -s 3 -d 8 -p tcp -e 1000 -i 461 -a 22 + -t 0.834819 -s 8 -d 9 -p tcp -e 1000 -i 461 -a 22 r -t 0.835741 -s 9 -d 10 -p tcp -e 1000 -i 426 -a 20 + -t 0.835741 -s 4 -d 10 -p ack -e 40 -i 462 -a 20 - -t 0.835741 -s 4 -d 10 -p ack -e 40 -i 462 -a 20 h -t 0.835741 -s 4 -d 10 -p ack -e 40 -i 462 -a 20 - -t 0.835752 -s 6 -d 7 -p tcp -e 1000 -i 414 -a 13 h -t 0.835752 -s 6 -d 7 -p tcp -e 1000 -i 414 -a 13 r -t 0.836274 -s 8 -d 9 -p tcp -e 1000 -i 427 -a 20 + -t 0.836275 -s 9 -d 10 -p tcp -e 1000 -i 427 -a 20 - -t 0.836275 -s 9 -d 10 -p tcp -e 1000 -i 427 -a 20 h -t 0.836275 -s 9 -d 10 -p tcp -e 1000 -i 427 -a 20 r -t 0.836352 -s 8 -d 3 -p ack -e 40 -i 450 -a 21 + -t 0.836352 -s 3 -d 8 -p tcp -e 1000 -i 463 -a 21 - -t 0.836352 -s 3 -d 8 -p tcp -e 1000 -i 463 -a 21 h -t 0.836352 -s 3 -d 8 -p tcp -e 1000 -i 463 -a 21 + -t 0.836352 -s 3 -d 8 -p tcp -e 1000 -i 464 -a 21 r -t 0.836552 -s 7 -d 2 -p tcp -e 1000 -i 389 -a 13 + -t 0.836552 -s 2 -d 7 -p ack -e 40 -i 465 -a 13 - -t 0.836552 -s 2 -d 7 -p ack -e 40 -i 465 -a 13 h -t 0.836552 -s 2 -d 7 -p ack -e 40 -i 465 -a 13 r -t 0.836904 -s 7 -d 6 -p ack -e 40 -i 451 -a 13 + -t 0.836904 -s 6 -d 1 -p ack -e 40 -i 451 -a 13 - -t 0.836904 -s 6 -d 1 -p ack -e 40 -i 451 -a 13 h -t 0.836904 -s 6 -d 1 -p ack -e 40 -i 451 -a 13 - -t 0.837152 -s 3 -d 8 -p tcp -e 1000 -i 464 -a 21 h -t 0.837152 -s 3 -d 8 -p tcp -e 1000 -i 464 -a 21 - -t 0.837608 -s 8 -d 9 -p tcp -e 1000 -i 444 -a 20 h -t 0.837608 -s 8 -d 9 -p tcp -e 1000 -i 444 -a 20 r -t 0.838653 -s 9 -d 8 -p ack -e 40 -i 452 -a 22 + -t 0.838653 -s 8 -d 3 -p ack -e 40 -i 452 -a 22 - -t 0.838653 -s 8 -d 3 -p ack -e 40 -i 452 -a 22 h -t 0.838653 -s 8 -d 3 -p ack -e 40 -i 452 -a 22 r -t 0.839752 -s 6 -d 7 -p tcp -e 1000 -i 394 -a 13 + -t 0.839752 -s 7 -d 2 -p tcp -e 1000 -i 394 -a 13 - -t 0.839752 -s 7 -d 2 -p tcp -e 1000 -i 394 -a 13 h -t 0.839752 -s 7 -d 2 -p tcp -e 1000 -i 394 -a 13 r -t 0.839773 -s 4 -d 10 -p ack -e 40 -i 462 -a 20 + -t 0.839773 -s 9 -d 8 -p ack -e 40 -i 462 -a 20 - -t 0.839773 -s 9 -d 8 -p ack -e 40 -i 462 -a 20 h -t 0.839773 -s 9 -d 8 -p ack -e 40 -i 462 -a 20 r -t 0.839936 -s 6 -d 1 -p ack -e 40 -i 451 -a 13 + -t 0.839936 -s 1 -d 6 -p tcp -e 1000 -i 466 -a 13 - -t 0.839936 -s 1 -d 6 -p tcp -e 1000 -i 466 -a 13 h -t 0.839936 -s 1 -d 6 -p tcp -e 1000 -i 466 -a 13 + -t 0.839936 -s 1 -d 6 -p tcp -e 1000 -i 467 -a 13 r -t 0.840152 -s 3 -d 8 -p tcp -e 1000 -i 463 -a 21 + -t 0.840152 -s 8 -d 9 -p tcp -e 1000 -i 463 -a 21 r -t 0.840584 -s 2 -d 7 -p ack -e 40 -i 465 -a 13 + -t 0.840584 -s 7 -d 6 -p ack -e 40 -i 465 -a 13 - -t 0.840584 -s 7 -d 6 -p ack -e 40 -i 465 -a 13 h -t 0.840584 -s 7 -d 6 -p ack -e 40 -i 465 -a 13 - -t 0.840736 -s 1 -d 6 -p tcp -e 1000 -i 467 -a 13 h -t 0.840736 -s 1 -d 6 -p tcp -e 1000 -i 467 -a 13 r -t 0.840952 -s 3 -d 8 -p tcp -e 1000 -i 464 -a 21 + -t 0.840952 -s 8 -d 9 -p tcp -e 1000 -i 464 -a 21 r -t 0.841075 -s 9 -d 10 -p tcp -e 1000 -i 427 -a 20 + -t 0.841075 -s 4 -d 10 -p ack -e 40 -i 468 -a 20 - -t 0.841075 -s 4 -d 10 -p ack -e 40 -i 468 -a 20 h -t 0.841075 -s 4 -d 10 -p ack -e 40 -i 468 -a 20 r -t 0.841608 -s 8 -d 9 -p tcp -e 1000 -i 428 -a 20 + -t 0.841608 -s 9 -d 10 -p tcp -e 1000 -i 428 -a 20 - -t 0.841608 -s 9 -d 10 -p tcp -e 1000 -i 428 -a 20 h -t 0.841608 -s 9 -d 10 -p tcp -e 1000 -i 428 -a 20 r -t 0.841685 -s 8 -d 3 -p ack -e 40 -i 452 -a 22 + -t 0.841685 -s 3 -d 8 -p tcp -e 1000 -i 469 -a 22 - -t 0.841685 -s 3 -d 8 -p tcp -e 1000 -i 469 -a 22 h -t 0.841685 -s 3 -d 8 -p tcp -e 1000 -i 469 -a 22 - -t 0.842941 -s 8 -d 9 -p tcp -e 1000 -i 445 -a 20 h -t 0.842941 -s 8 -d 9 -p tcp -e 1000 -i 445 -a 20 r -t 0.843736 -s 1 -d 6 -p tcp -e 1000 -i 466 -a 13 + -t 0.843736 -s 6 -d 7 -p tcp -e 1000 -i 466 -a 13 - -t 0.843752 -s 6 -d 7 -p tcp -e 1000 -i 422 -a 13 h -t 0.843752 -s 6 -d 7 -p tcp -e 1000 -i 422 -a 13 r -t 0.843986 -s 9 -d 8 -p ack -e 40 -i 454 -a 20 + -t 0.843987 -s 8 -d 3 -p ack -e 40 -i 454 -a 20 - -t 0.843987 -s 8 -d 3 -p ack -e 40 -i 454 -a 20 h -t 0.843987 -s 8 -d 3 -p ack -e 40 -i 454 -a 20 r -t 0.844536 -s 1 -d 6 -p tcp -e 1000 -i 467 -a 13 + -t 0.844536 -s 6 -d 7 -p tcp -e 1000 -i 467 -a 13 r -t 0.844552 -s 7 -d 2 -p tcp -e 1000 -i 394 -a 13 + -t 0.844552 -s 2 -d 7 -p ack -e 40 -i 470 -a 13 - -t 0.844552 -s 2 -d 7 -p ack -e 40 -i 470 -a 13 h -t 0.844552 -s 2 -d 7 -p ack -e 40 -i 470 -a 13 r -t 0.844904 -s 7 -d 6 -p ack -e 40 -i 456 -a 14 + -t 0.844904 -s 6 -d 1 -p ack -e 40 -i 456 -a 14 - -t 0.844904 -s 6 -d 1 -p ack -e 40 -i 456 -a 14 h -t 0.844904 -s 6 -d 1 -p ack -e 40 -i 456 -a 14 r -t 0.845107 -s 4 -d 10 -p ack -e 40 -i 468 -a 20 + -t 0.845107 -s 9 -d 8 -p ack -e 40 -i 468 -a 20 - -t 0.845107 -s 9 -d 8 -p ack -e 40 -i 468 -a 20 h -t 0.845107 -s 9 -d 8 -p ack -e 40 -i 468 -a 20 r -t 0.845485 -s 3 -d 8 -p tcp -e 1000 -i 469 -a 22 + -t 0.845485 -s 8 -d 9 -p tcp -e 1000 -i 469 -a 22 r -t 0.846408 -s 9 -d 10 -p tcp -e 1000 -i 428 -a 20 + -t 0.846408 -s 4 -d 10 -p ack -e 40 -i 471 -a 20 - -t 0.846408 -s 4 -d 10 -p ack -e 40 -i 471 -a 20 h -t 0.846408 -s 4 -d 10 -p ack -e 40 -i 471 -a 20 r -t 0.846941 -s 8 -d 9 -p tcp -e 1000 -i 434 -a 20 + -t 0.846941 -s 9 -d 10 -p tcp -e 1000 -i 434 -a 20 - -t 0.846941 -s 9 -d 10 -p tcp -e 1000 -i 434 -a 20 h -t 0.846941 -s 9 -d 10 -p tcp -e 1000 -i 434 -a 20 r -t 0.847019 -s 8 -d 3 -p ack -e 40 -i 454 -a 20 + -t 0.847019 -s 3 -d 8 -p tcp -e 1000 -i 472 -a 20 - -t 0.847019 -s 3 -d 8 -p tcp -e 1000 -i 472 -a 20 h -t 0.847019 -s 3 -d 8 -p tcp -e 1000 -i 472 -a 20 + -t 0.847019 -s 3 -d 8 -p tcp -e 1000 -i 473 -a 20 + -t 0.847019 -s 3 -d 8 -p tcp -e 1000 -i 474 -a 20 r -t 0.847752 -s 6 -d 7 -p tcp -e 1000 -i 400 -a 13 + -t 0.847752 -s 7 -d 2 -p tcp -e 1000 -i 400 -a 13 - -t 0.847752 -s 7 -d 2 -p tcp -e 1000 -i 400 -a 13 h -t 0.847752 -s 7 -d 2 -p tcp -e 1000 -i 400 -a 13 - -t 0.847819 -s 3 -d 8 -p tcp -e 1000 -i 473 -a 20 h -t 0.847819 -s 3 -d 8 -p tcp -e 1000 -i 473 -a 20 r -t 0.847936 -s 6 -d 1 -p ack -e 40 -i 456 -a 14 + -t 0.847936 -s 1 -d 6 -p tcp -e 1000 -i 475 -a 14 - -t 0.847936 -s 1 -d 6 -p tcp -e 1000 -i 475 -a 14 h -t 0.847936 -s 1 -d 6 -p tcp -e 1000 -i 475 -a 14 - -t 0.848275 -s 8 -d 9 -p tcp -e 1000 -i 448 -a 21 h -t 0.848275 -s 8 -d 9 -p tcp -e 1000 -i 448 -a 21 r -t 0.848584 -s 2 -d 7 -p ack -e 40 -i 470 -a 13 + -t 0.848584 -s 7 -d 6 -p ack -e 40 -i 470 -a 13 - -t 0.848584 -s 7 -d 6 -p ack -e 40 -i 470 -a 13 h -t 0.848584 -s 7 -d 6 -p ack -e 40 -i 470 -a 13 - -t 0.848619 -s 3 -d 8 -p tcp -e 1000 -i 474 -a 20 h -t 0.848619 -s 3 -d 8 -p tcp -e 1000 -i 474 -a 20 r -t 0.84932 -s 9 -d 8 -p ack -e 40 -i 457 -a 20 + -t 0.84932 -s 8 -d 3 -p ack -e 40 -i 457 -a 20 - -t 0.84932 -s 8 -d 3 -p ack -e 40 -i 457 -a 20 h -t 0.84932 -s 8 -d 3 -p ack -e 40 -i 457 -a 20 r -t 0.85044 -s 4 -d 10 -p ack -e 40 -i 471 -a 20 + -t 0.85044 -s 9 -d 8 -p ack -e 40 -i 471 -a 20 - -t 0.85044 -s 9 -d 8 -p ack -e 40 -i 471 -a 20 h -t 0.85044 -s 9 -d 8 -p ack -e 40 -i 471 -a 20 r -t 0.850819 -s 3 -d 8 -p tcp -e 1000 -i 472 -a 20 + -t 0.850819 -s 8 -d 9 -p tcp -e 1000 -i 472 -a 20 r -t 0.851619 -s 3 -d 8 -p tcp -e 1000 -i 473 -a 20 + -t 0.851619 -s 8 -d 9 -p tcp -e 1000 -i 473 -a 20 d -t 0.851619 -s 8 -d 9 -p tcp -e 1000 -i 473 -a 20 r -t 0.851736 -s 1 -d 6 -p tcp -e 1000 -i 475 -a 14 + -t 0.851736 -s 6 -d 7 -p tcp -e 1000 -i 475 -a 14 r -t 0.851741 -s 9 -d 10 -p tcp -e 1000 -i 434 -a 20 + -t 0.851741 -s 4 -d 10 -p ack -e 40 -i 476 -a 20 - -t 0.851741 -s 4 -d 10 -p ack -e 40 -i 476 -a 20 h -t 0.851741 -s 4 -d 10 -p ack -e 40 -i 476 -a 20 - -t 0.851752 -s 6 -d 7 -p tcp -e 1000 -i 431 -a 13 h -t 0.851752 -s 6 -d 7 -p tcp -e 1000 -i 431 -a 13 r -t 0.852274 -s 8 -d 9 -p tcp -e 1000 -i 435 -a 20 + -t 0.852275 -s 9 -d 10 -p tcp -e 1000 -i 435 -a 20 - -t 0.852275 -s 9 -d 10 -p tcp -e 1000 -i 435 -a 20 h -t 0.852275 -s 9 -d 10 -p tcp -e 1000 -i 435 -a 20 r -t 0.852419 -s 3 -d 8 -p tcp -e 1000 -i 474 -a 20 r -t 0.852352 -s 8 -d 3 -p ack -e 40 -i 457 -a 20 + -t 0.852419 -s 8 -d 9 -p tcp -e 1000 -i 474 -a 20 d -t 0.852419 -s 8 -d 9 -p tcp -e 1000 -i 474 -a 20 r -t 0.852552 -s 7 -d 2 -p tcp -e 1000 -i 400 -a 13 + -t 0.852552 -s 2 -d 7 -p ack -e 40 -i 477 -a 13 - -t 0.852552 -s 2 -d 7 -p ack -e 40 -i 477 -a 13 h -t 0.852552 -s 2 -d 7 -p ack -e 40 -i 477 -a 13 r -t 0.852904 -s 7 -d 6 -p ack -e 40 -i 459 -a 13 + -t 0.852904 -s 6 -d 1 -p ack -e 40 -i 459 -a 13 - -t 0.852904 -s 6 -d 1 -p ack -e 40 -i 459 -a 13 h -t 0.852904 -s 6 -d 1 -p ack -e 40 -i 459 -a 13 - -t 0.853608 -s 8 -d 9 -p tcp -e 1000 -i 446 -a 20 h -t 0.853608 -s 8 -d 9 -p tcp -e 1000 -i 446 -a 20 r -t 0.854653 -s 9 -d 8 -p ack -e 40 -i 460 -a 20 + -t 0.854653 -s 8 -d 3 -p ack -e 40 -i 460 -a 20 - -t 0.854653 -s 8 -d 3 -p ack -e 40 -i 460 -a 20 h -t 0.854653 -s 8 -d 3 -p ack -e 40 -i 460 -a 20 r -t 0.855752 -s 6 -d 7 -p tcp -e 1000 -i 411 -a 10 + -t 0.855752 -s 7 -d 2 -p tcp -e 1000 -i 411 -a 10 - -t 0.855752 -s 7 -d 2 -p tcp -e 1000 -i 411 -a 10 h -t 0.855752 -s 7 -d 2 -p tcp -e 1000 -i 411 -a 10 r -t 0.855773 -s 4 -d 10 -p ack -e 40 -i 476 -a 20 + -t 0.855773 -s 9 -d 8 -p ack -e 40 -i 476 -a 20 - -t 0.855773 -s 9 -d 8 -p ack -e 40 -i 476 -a 20 h -t 0.855773 -s 9 -d 8 -p ack -e 40 -i 476 -a 20 r -t 0.856584 -s 2 -d 7 -p ack -e 40 -i 477 -a 13 r -t 0.855936 -s 6 -d 1 -p ack -e 40 -i 459 -a 13 + -t 0.856584 -s 7 -d 6 -p ack -e 40 -i 477 -a 13 - -t 0.856584 -s 7 -d 6 -p ack -e 40 -i 477 -a 13 h -t 0.856584 -s 7 -d 6 -p ack -e 40 -i 477 -a 13 r -t 0.857075 -s 9 -d 10 -p tcp -e 1000 -i 435 -a 20 + -t 0.857075 -s 4 -d 10 -p ack -e 40 -i 478 -a 20 - -t 0.857075 -s 4 -d 10 -p ack -e 40 -i 478 -a 20 h -t 0.857075 -s 4 -d 10 -p ack -e 40 -i 478 -a 20 r -t 0.857608 -s 8 -d 9 -p tcp -e 1000 -i 436 -a 20 + -t 0.857608 -s 9 -d 10 -p tcp -e 1000 -i 436 -a 20 - -t 0.857608 -s 9 -d 10 -p tcp -e 1000 -i 436 -a 20 h -t 0.857608 -s 9 -d 10 -p tcp -e 1000 -i 436 -a 20 r -t 0.857685 -s 8 -d 3 -p ack -e 40 -i 460 -a 20 + -t 0.857685 -s 3 -d 8 -p tcp -e 1000 -i 479 -a 20 - -t 0.857685 -s 3 -d 8 -p tcp -e 1000 -i 479 -a 20 h -t 0.857685 -s 3 -d 8 -p tcp -e 1000 -i 479 -a 20 + -t 0.857685 -s 3 -d 8 -p tcp -e 1000 -i 480 -a 20 + -t 0.857685 -s 3 -d 8 -p tcp -e 1000 -i 481 -a 20 - -t 0.858485 -s 3 -d 8 -p tcp -e 1000 -i 480 -a 20 h -t 0.858485 -s 3 -d 8 -p tcp -e 1000 -i 480 -a 20 - -t 0.858941 -s 8 -d 9 -p tcp -e 1000 -i 453 -a 21 h -t 0.858941 -s 8 -d 9 -p tcp -e 1000 -i 453 -a 21 - -t 0.859285 -s 3 -d 8 -p tcp -e 1000 -i 481 -a 20 h -t 0.859285 -s 3 -d 8 -p tcp -e 1000 -i 481 -a 20 - -t 0.859752 -s 6 -d 7 -p tcp -e 1000 -i 438 -a 11 h -t 0.859752 -s 6 -d 7 -p tcp -e 1000 -i 438 -a 11 r -t 0.859986 -s 9 -d 8 -p ack -e 40 -i 462 -a 20 + -t 0.859987 -s 8 -d 3 -p ack -e 40 -i 462 -a 20 - -t 0.859987 -s 8 -d 3 -p ack -e 40 -i 462 -a 20 h -t 0.859987 -s 8 -d 3 -p ack -e 40 -i 462 -a 20 r -t 0.860552 -s 7 -d 2 -p tcp -e 1000 -i 411 -a 10 + -t 0.860552 -s 2 -d 7 -p ack -e 40 -i 482 -a 10 - -t 0.860552 -s 2 -d 7 -p ack -e 40 -i 482 -a 10 h -t 0.860552 -s 2 -d 7 -p ack -e 40 -i 482 -a 10 r -t 0.860904 -s 7 -d 6 -p ack -e 40 -i 465 -a 13 + -t 0.860904 -s 6 -d 1 -p ack -e 40 -i 465 -a 13 - -t 0.860904 -s 6 -d 1 -p ack -e 40 -i 465 -a 13 h -t 0.860904 -s 6 -d 1 -p ack -e 40 -i 465 -a 13 r -t 0.861107 -s 4 -d 10 -p ack -e 40 -i 478 -a 20 + -t 0.861107 -s 9 -d 8 -p ack -e 40 -i 478 -a 20 - -t 0.861107 -s 9 -d 8 -p ack -e 40 -i 478 -a 20 h -t 0.861107 -s 9 -d 8 -p ack -e 40 -i 478 -a 20 r -t 0.861485 -s 3 -d 8 -p tcp -e 1000 -i 479 -a 20 + -t 0.861485 -s 8 -d 9 -p tcp -e 1000 -i 479 -a 20 r -t 0.862285 -s 3 -d 8 -p tcp -e 1000 -i 480 -a 20 + -t 0.862285 -s 8 -d 9 -p tcp -e 1000 -i 480 -a 20 r -t 0.862408 -s 9 -d 10 -p tcp -e 1000 -i 436 -a 20 + -t 0.862408 -s 4 -d 10 -p ack -e 40 -i 483 -a 20 - -t 0.862408 -s 4 -d 10 -p ack -e 40 -i 483 -a 20 h -t 0.862408 -s 4 -d 10 -p ack -e 40 -i 483 -a 20 r -t 0.862941 -s 8 -d 9 -p tcp -e 1000 -i 444 -a 20 + -t 0.862941 -s 9 -d 10 -p tcp -e 1000 -i 444 -a 20 - -t 0.862941 -s 9 -d 10 -p tcp -e 1000 -i 444 -a 20 h -t 0.862941 -s 9 -d 10 -p tcp -e 1000 -i 444 -a 20 r -t 0.863085 -s 3 -d 8 -p tcp -e 1000 -i 481 -a 20 r -t 0.863019 -s 8 -d 3 -p ack -e 40 -i 462 -a 20 + -t 0.863085 -s 8 -d 9 -p tcp -e 1000 -i 481 -a 20 d -t 0.863085 -s 8 -d 9 -p tcp -e 1000 -i 481 -a 20 r -t 0.863752 -s 6 -d 7 -p tcp -e 1000 -i 414 -a 13 + -t 0.863752 -s 7 -d 2 -p tcp -e 1000 -i 414 -a 13 - -t 0.863752 -s 7 -d 2 -p tcp -e 1000 -i 414 -a 13 h -t 0.863752 -s 7 -d 2 -p tcp -e 1000 -i 414 -a 13 r -t 0.863936 -s 6 -d 1 -p ack -e 40 -i 465 -a 13 - -t 0.864275 -s 8 -d 9 -p tcp -e 1000 -i 455 -a 21 h -t 0.864275 -s 8 -d 9 -p tcp -e 1000 -i 455 -a 21 r -t 0.864584 -s 2 -d 7 -p ack -e 40 -i 482 -a 10 + -t 0.864584 -s 7 -d 6 -p ack -e 40 -i 482 -a 10 - -t 0.864584 -s 7 -d 6 -p ack -e 40 -i 482 -a 10 h -t 0.864584 -s 7 -d 6 -p ack -e 40 -i 482 -a 10 r -t 0.86532 -s 9 -d 8 -p ack -e 40 -i 468 -a 20 + -t 0.86532 -s 8 -d 3 -p ack -e 40 -i 468 -a 20 - -t 0.86532 -s 8 -d 3 -p ack -e 40 -i 468 -a 20 h -t 0.86532 -s 8 -d 3 -p ack -e 40 -i 468 -a 20 r -t 0.86644 -s 4 -d 10 -p ack -e 40 -i 483 -a 20 + -t 0.86644 -s 9 -d 8 -p ack -e 40 -i 483 -a 20 - -t 0.86644 -s 9 -d 8 -p ack -e 40 -i 483 -a 20 h -t 0.86644 -s 9 -d 8 -p ack -e 40 -i 483 -a 20 r -t 0.867741 -s 9 -d 10 -p tcp -e 1000 -i 444 -a 20 + -t 0.867741 -s 4 -d 10 -p ack -e 40 -i 484 -a 20 - -t 0.867741 -s 4 -d 10 -p ack -e 40 -i 484 -a 20 h -t 0.867741 -s 4 -d 10 -p ack -e 40 -i 484 -a 20 - -t 0.867752 -s 6 -d 7 -p tcp -e 1000 -i 439 -a 11 h -t 0.867752 -s 6 -d 7 -p tcp -e 1000 -i 439 -a 11 r -t 0.868274 -s 8 -d 9 -p tcp -e 1000 -i 445 -a 20 + -t 0.868275 -s 9 -d 10 -p tcp -e 1000 -i 445 -a 20 - -t 0.868275 -s 9 -d 10 -p tcp -e 1000 -i 445 -a 20 h -t 0.868275 -s 9 -d 10 -p tcp -e 1000 -i 445 -a 20 r -t 0.868352 -s 8 -d 3 -p ack -e 40 -i 468 -a 20 + -t 0.868352 -s 3 -d 8 -p tcp -e 1000 -i 485 -a 20 - -t 0.868352 -s 3 -d 8 -p tcp -e 1000 -i 485 -a 20 h -t 0.868352 -s 3 -d 8 -p tcp -e 1000 -i 485 -a 20 + -t 0.868352 -s 3 -d 8 -p tcp -e 1000 -i 486 -a 20 + -t 0.868352 -s 3 -d 8 -p tcp -e 1000 -i 487 -a 20 r -t 0.868552 -s 7 -d 2 -p tcp -e 1000 -i 414 -a 13 + -t 0.868552 -s 2 -d 7 -p ack -e 40 -i 488 -a 13 - -t 0.868552 -s 2 -d 7 -p ack -e 40 -i 488 -a 13 h -t 0.868552 -s 2 -d 7 -p ack -e 40 -i 488 -a 13 r -t 0.868904 -s 7 -d 6 -p ack -e 40 -i 470 -a 13 + -t 0.868904 -s 6 -d 1 -p ack -e 40 -i 470 -a 13 - -t 0.868904 -s 6 -d 1 -p ack -e 40 -i 470 -a 13 h -t 0.868904 -s 6 -d 1 -p ack -e 40 -i 470 -a 13 - -t 0.869152 -s 3 -d 8 -p tcp -e 1000 -i 486 -a 20 h -t 0.869152 -s 3 -d 8 -p tcp -e 1000 -i 486 -a 20 - -t 0.869608 -s 8 -d 9 -p tcp -e 1000 -i 461 -a 22 h -t 0.869608 -s 8 -d 9 -p tcp -e 1000 -i 461 -a 22 - -t 0.869952 -s 3 -d 8 -p tcp -e 1000 -i 487 -a 20 h -t 0.869952 -s 3 -d 8 -p tcp -e 1000 -i 487 -a 20 r -t 0.870653 -s 9 -d 8 -p ack -e 40 -i 471 -a 20 + -t 0.870653 -s 8 -d 3 -p ack -e 40 -i 471 -a 20 - -t 0.870653 -s 8 -d 3 -p ack -e 40 -i 471 -a 20 h -t 0.870653 -s 8 -d 3 -p ack -e 40 -i 471 -a 20 r -t 0.871752 -s 6 -d 7 -p tcp -e 1000 -i 422 -a 13 + -t 0.871752 -s 7 -d 2 -p tcp -e 1000 -i 422 -a 13 - -t 0.871752 -s 7 -d 2 -p tcp -e 1000 -i 422 -a 13 h -t 0.871752 -s 7 -d 2 -p tcp -e 1000 -i 422 -a 13 r -t 0.871773 -s 4 -d 10 -p ack -e 40 -i 484 -a 20 + -t 0.871773 -s 9 -d 8 -p ack -e 40 -i 484 -a 20 - -t 0.871773 -s 9 -d 8 -p ack -e 40 -i 484 -a 20 h -t 0.871773 -s 9 -d 8 -p ack -e 40 -i 484 -a 20 r -t 0.871936 -s 6 -d 1 -p ack -e 40 -i 470 -a 13 + -t 0.871936 -s 1 -d 6 -p tcp -e 1000 -i 489 -a 13 - -t 0.871936 -s 1 -d 6 -p tcp -e 1000 -i 489 -a 13 h -t 0.871936 -s 1 -d 6 -p tcp -e 1000 -i 489 -a 13 r -t 0.872152 -s 3 -d 8 -p tcp -e 1000 -i 485 -a 20 + -t 0.872152 -s 8 -d 9 -p tcp -e 1000 -i 485 -a 20 r -t 0.872584 -s 2 -d 7 -p ack -e 40 -i 488 -a 13 + -t 0.872584 -s 7 -d 6 -p ack -e 40 -i 488 -a 13 - -t 0.872584 -s 7 -d 6 -p ack -e 40 -i 488 -a 13 h -t 0.872584 -s 7 -d 6 -p ack -e 40 -i 488 -a 13 r -t 0.872952 -s 3 -d 8 -p tcp -e 1000 -i 486 -a 20 + -t 0.872952 -s 8 -d 9 -p tcp -e 1000 -i 486 -a 20 r -t 0.873075 -s 9 -d 10 -p tcp -e 1000 -i 445 -a 20 + -t 0.873075 -s 4 -d 10 -p ack -e 40 -i 490 -a 20 - -t 0.873075 -s 4 -d 10 -p ack -e 40 -i 490 -a 20 h -t 0.873075 -s 4 -d 10 -p ack -e 40 -i 490 -a 20 r -t 0.873608 -s 8 -d 9 -p tcp -e 1000 -i 448 -a 21 + -t 0.873608 -s 9 -d 10 -p tcp -e 1000 -i 448 -a 21 - -t 0.873608 -s 9 -d 10 -p tcp -e 1000 -i 448 -a 21 h -t 0.873608 -s 9 -d 10 -p tcp -e 1000 -i 448 -a 21 r -t 0.873685 -s 8 -d 3 -p ack -e 40 -i 471 -a 20 r -t 0.873752 -s 3 -d 8 -p tcp -e 1000 -i 487 -a 20 + -t 0.873752 -s 8 -d 9 -p tcp -e 1000 -i 487 -a 20 d -t 0.873752 -s 8 -d 9 -p tcp -e 1000 -i 487 -a 20 - -t 0.874941 -s 8 -d 9 -p tcp -e 1000 -i 458 -a 21 h -t 0.874941 -s 8 -d 9 -p tcp -e 1000 -i 458 -a 21 r -t 0.875736 -s 1 -d 6 -p tcp -e 1000 -i 489 -a 13 + -t 0.875736 -s 6 -d 7 -p tcp -e 1000 -i 489 -a 13 - -t 0.875752 -s 6 -d 7 -p tcp -e 1000 -i 466 -a 13 h -t 0.875752 -s 6 -d 7 -p tcp -e 1000 -i 466 -a 13 r -t 0.875986 -s 9 -d 8 -p ack -e 40 -i 476 -a 20 + -t 0.875987 -s 8 -d 3 -p ack -e 40 -i 476 -a 20 - -t 0.875987 -s 8 -d 3 -p ack -e 40 -i 476 -a 20 h -t 0.875987 -s 8 -d 3 -p ack -e 40 -i 476 -a 20 r -t 0.876552 -s 7 -d 2 -p tcp -e 1000 -i 422 -a 13 + -t 0.876552 -s 2 -d 7 -p ack -e 40 -i 491 -a 13 - -t 0.876552 -s 2 -d 7 -p ack -e 40 -i 491 -a 13 h -t 0.876552 -s 2 -d 7 -p ack -e 40 -i 491 -a 13 r -t 0.876904 -s 7 -d 6 -p ack -e 40 -i 477 -a 13 + -t 0.876904 -s 6 -d 1 -p ack -e 40 -i 477 -a 13 - -t 0.876904 -s 6 -d 1 -p ack -e 40 -i 477 -a 13 h -t 0.876904 -s 6 -d 1 -p ack -e 40 -i 477 -a 13 r -t 0.877107 -s 4 -d 10 -p ack -e 40 -i 490 -a 20 + -t 0.877107 -s 9 -d 8 -p ack -e 40 -i 490 -a 20 - -t 0.877107 -s 9 -d 8 -p ack -e 40 -i 490 -a 20 h -t 0.877107 -s 9 -d 8 -p ack -e 40 -i 490 -a 20 r -t 0.878408 -s 9 -d 10 -p tcp -e 1000 -i 448 -a 21 + -t 0.878408 -s 4 -d 10 -p ack -e 40 -i 492 -a 21 - -t 0.878408 -s 4 -d 10 -p ack -e 40 -i 492 -a 21 h -t 0.878408 -s 4 -d 10 -p ack -e 40 -i 492 -a 21 r -t 0.878941 -s 8 -d 9 -p tcp -e 1000 -i 446 -a 20 + -t 0.878941 -s 9 -d 10 -p tcp -e 1000 -i 446 -a 20 - -t 0.878941 -s 9 -d 10 -p tcp -e 1000 -i 446 -a 20 h -t 0.878941 -s 9 -d 10 -p tcp -e 1000 -i 446 -a 20 r -t 0.879019 -s 8 -d 3 -p ack -e 40 -i 476 -a 20 + -t 0.879019 -s 3 -d 8 -p tcp -e 1000 -i 493 -a 20 - -t 0.879019 -s 3 -d 8 -p tcp -e 1000 -i 493 -a 20 h -t 0.879019 -s 3 -d 8 -p tcp -e 1000 -i 493 -a 20 + -t 0.879019 -s 3 -d 8 -p tcp -e 1000 -i 494 -a 20 r -t 0.879752 -s 6 -d 7 -p tcp -e 1000 -i 431 -a 13 + -t 0.879752 -s 7 -d 2 -p tcp -e 1000 -i 431 -a 13 - -t 0.879752 -s 7 -d 2 -p tcp -e 1000 -i 431 -a 13 h -t 0.879752 -s 7 -d 2 -p tcp -e 1000 -i 431 -a 13 - -t 0.879819 -s 3 -d 8 -p tcp -e 1000 -i 494 -a 20 h -t 0.879819 -s 3 -d 8 -p tcp -e 1000 -i 494 -a 20 r -t 0.879936 -s 6 -d 1 -p ack -e 40 -i 477 -a 13 - -t 0.880275 -s 8 -d 9 -p tcp -e 1000 -i 463 -a 21 h -t 0.880275 -s 8 -d 9 -p tcp -e 1000 -i 463 -a 21 r -t 0.880584 -s 2 -d 7 -p ack -e 40 -i 491 -a 13 + -t 0.880584 -s 7 -d 6 -p ack -e 40 -i 491 -a 13 - -t 0.880584 -s 7 -d 6 -p ack -e 40 -i 491 -a 13 h -t 0.880584 -s 7 -d 6 -p ack -e 40 -i 491 -a 13 r -t 0.88132 -s 9 -d 8 -p ack -e 40 -i 478 -a 20 + -t 0.88132 -s 8 -d 3 -p ack -e 40 -i 478 -a 20 - -t 0.88132 -s 8 -d 3 -p ack -e 40 -i 478 -a 20 h -t 0.88132 -s 8 -d 3 -p ack -e 40 -i 478 -a 20 r -t 0.88244 -s 4 -d 10 -p ack -e 40 -i 492 -a 21 + -t 0.88244 -s 9 -d 8 -p ack -e 40 -i 492 -a 21 - -t 0.88244 -s 9 -d 8 -p ack -e 40 -i 492 -a 21 h -t 0.88244 -s 9 -d 8 -p ack -e 40 -i 492 -a 21 r -t 0.882819 -s 3 -d 8 -p tcp -e 1000 -i 493 -a 20 + -t 0.882819 -s 8 -d 9 -p tcp -e 1000 -i 493 -a 20 r -t 0.883619 -s 3 -d 8 -p tcp -e 1000 -i 494 -a 20 + -t 0.883619 -s 8 -d 9 -p tcp -e 1000 -i 494 -a 20 r -t 0.883741 -s 9 -d 10 -p tcp -e 1000 -i 446 -a 20 + -t 0.883741 -s 4 -d 10 -p ack -e 40 -i 495 -a 20 - -t 0.883741 -s 4 -d 10 -p ack -e 40 -i 495 -a 20 h -t 0.883741 -s 4 -d 10 -p ack -e 40 -i 495 -a 20 - -t 0.883752 -s 6 -d 7 -p tcp -e 1000 -i 475 -a 14 h -t 0.883752 -s 6 -d 7 -p tcp -e 1000 -i 475 -a 14 r -t 0.884274 -s 8 -d 9 -p tcp -e 1000 -i 453 -a 21 + -t 0.884275 -s 9 -d 10 -p tcp -e 1000 -i 453 -a 21 - -t 0.884275 -s 9 -d 10 -p tcp -e 1000 -i 453 -a 21 h -t 0.884275 -s 9 -d 10 -p tcp -e 1000 -i 453 -a 21 r -t 0.884552 -s 7 -d 2 -p tcp -e 1000 -i 431 -a 13 r -t 0.884352 -s 8 -d 3 -p ack -e 40 -i 478 -a 20 + -t 0.884552 -s 2 -d 7 -p ack -e 40 -i 496 -a 13 - -t 0.884552 -s 2 -d 7 -p ack -e 40 -i 496 -a 13 h -t 0.884552 -s 2 -d 7 -p ack -e 40 -i 496 -a 13 r -t 0.884904 -s 7 -d 6 -p ack -e 40 -i 482 -a 10 + -t 0.884904 -s 6 -d 1 -p ack -e 40 -i 482 -a 10 - -t 0.884904 -s 6 -d 1 -p ack -e 40 -i 482 -a 10 h -t 0.884904 -s 6 -d 1 -p ack -e 40 -i 482 -a 10 - -t 0.885608 -s 8 -d 9 -p tcp -e 1000 -i 469 -a 22 h -t 0.885608 -s 8 -d 9 -p tcp -e 1000 -i 469 -a 22 r -t 0.886653 -s 9 -d 8 -p ack -e 40 -i 483 -a 20 + -t 0.886653 -s 8 -d 3 -p ack -e 40 -i 483 -a 20 - -t 0.886653 -s 8 -d 3 -p ack -e 40 -i 483 -a 20 h -t 0.886653 -s 8 -d 3 -p ack -e 40 -i 483 -a 20 r -t 0.887752 -s 6 -d 7 -p tcp -e 1000 -i 438 -a 11 + -t 0.887752 -s 7 -d 2 -p tcp -e 1000 -i 438 -a 11 - -t 0.887752 -s 7 -d 2 -p tcp -e 1000 -i 438 -a 11 h -t 0.887752 -s 7 -d 2 -p tcp -e 1000 -i 438 -a 11 r -t 0.887773 -s 4 -d 10 -p ack -e 40 -i 495 -a 20 + -t 0.887773 -s 9 -d 8 -p ack -e 40 -i 495 -a 20 - -t 0.887773 -s 9 -d 8 -p ack -e 40 -i 495 -a 20 h -t 0.887773 -s 9 -d 8 -p ack -e 40 -i 495 -a 20 r -t 0.887936 -s 6 -d 1 -p ack -e 40 -i 482 -a 10 + -t 0.887936 -s 1 -d 6 -p tcp -e 1000 -i 497 -a 10 - -t 0.887936 -s 1 -d 6 -p tcp -e 1000 -i 497 -a 10 h -t 0.887936 -s 1 -d 6 -p tcp -e 1000 -i 497 -a 10 + -t 0.887936 -s 1 -d 6 -p tcp -e 1000 -i 498 -a 10 r -t 0.888584 -s 2 -d 7 -p ack -e 40 -i 496 -a 13 + -t 0.888584 -s 7 -d 6 -p ack -e 40 -i 496 -a 13 - -t 0.888584 -s 7 -d 6 -p ack -e 40 -i 496 -a 13 h -t 0.888584 -s 7 -d 6 -p ack -e 40 -i 496 -a 13 - -t 0.888736 -s 1 -d 6 -p tcp -e 1000 -i 498 -a 10 h -t 0.888736 -s 1 -d 6 -p tcp -e 1000 -i 498 -a 10 r -t 0.889075 -s 9 -d 10 -p tcp -e 1000 -i 453 -a 21 + -t 0.889075 -s 4 -d 10 -p ack -e 40 -i 499 -a 21 - -t 0.889075 -s 4 -d 10 -p ack -e 40 -i 499 -a 21 h -t 0.889075 -s 4 -d 10 -p ack -e 40 -i 499 -a 21 r -t 0.889608 -s 8 -d 9 -p tcp -e 1000 -i 455 -a 21 + -t 0.889608 -s 9 -d 10 -p tcp -e 1000 -i 455 -a 21 - -t 0.889608 -s 9 -d 10 -p tcp -e 1000 -i 455 -a 21 h -t 0.889608 -s 9 -d 10 -p tcp -e 1000 -i 455 -a 21 r -t 0.889685 -s 8 -d 3 -p ack -e 40 -i 483 -a 20 + -t 0.889685 -s 3 -d 8 -p tcp -e 1000 -i 500 -a 20 - -t 0.889685 -s 3 -d 8 -p tcp -e 1000 -i 500 -a 20 h -t 0.889685 -s 3 -d 8 -p tcp -e 1000 -i 500 -a 20 - -t 0.890941 -s 8 -d 9 -p tcp -e 1000 -i 464 -a 21 h -t 0.890941 -s 8 -d 9 -p tcp -e 1000 -i 464 -a 21 r -t 0.891736 -s 1 -d 6 -p tcp -e 1000 -i 497 -a 10 + -t 0.891736 -s 6 -d 7 -p tcp -e 1000 -i 497 -a 10 - -t 0.891752 -s 6 -d 7 -p tcp -e 1000 -i 467 -a 13 h -t 0.891752 -s 6 -d 7 -p tcp -e 1000 -i 467 -a 13 r -t 0.891986 -s 9 -d 8 -p ack -e 40 -i 484 -a 20 + -t 0.891987 -s 8 -d 3 -p ack -e 40 -i 484 -a 20 - -t 0.891987 -s 8 -d 3 -p ack -e 40 -i 484 -a 20 h -t 0.891987 -s 8 -d 3 -p ack -e 40 -i 484 -a 20 r -t 0.892536 -s 1 -d 6 -p tcp -e 1000 -i 498 -a 10 + -t 0.892536 -s 6 -d 7 -p tcp -e 1000 -i 498 -a 10 r -t 0.892552 -s 7 -d 2 -p tcp -e 1000 -i 438 -a 11 + -t 0.892552 -s 2 -d 7 -p ack -e 40 -i 501 -a 11 - -t 0.892552 -s 2 -d 7 -p ack -e 40 -i 501 -a 11 h -t 0.892552 -s 2 -d 7 -p ack -e 40 -i 501 -a 11 r -t 0.892904 -s 7 -d 6 -p ack -e 40 -i 488 -a 13 + -t 0.892904 -s 6 -d 1 -p ack -e 40 -i 488 -a 13 - -t 0.892904 -s 6 -d 1 -p ack -e 40 -i 488 -a 13 h -t 0.892904 -s 6 -d 1 -p ack -e 40 -i 488 -a 13 r -t 0.893107 -s 4 -d 10 -p ack -e 40 -i 499 -a 21 + -t 0.893107 -s 9 -d 8 -p ack -e 40 -i 499 -a 21 - -t 0.893107 -s 9 -d 8 -p ack -e 40 -i 499 -a 21 h -t 0.893107 -s 9 -d 8 -p ack -e 40 -i 499 -a 21 r -t 0.893485 -s 3 -d 8 -p tcp -e 1000 -i 500 -a 20 + -t 0.893485 -s 8 -d 9 -p tcp -e 1000 -i 500 -a 20 r -t 0.894408 -s 9 -d 10 -p tcp -e 1000 -i 455 -a 21 + -t 0.894408 -s 4 -d 10 -p ack -e 40 -i 502 -a 21 - -t 0.894408 -s 4 -d 10 -p ack -e 40 -i 502 -a 21 h -t 0.894408 -s 4 -d 10 -p ack -e 40 -i 502 -a 21 r -t 0.894941 -s 8 -d 9 -p tcp -e 1000 -i 461 -a 22 + -t 0.894941 -s 9 -d 10 -p tcp -e 1000 -i 461 -a 22 - -t 0.894941 -s 9 -d 10 -p tcp -e 1000 -i 461 -a 22 h -t 0.894941 -s 9 -d 10 -p tcp -e 1000 -i 461 -a 22 r -t 0.895019 -s 8 -d 3 -p ack -e 40 -i 484 -a 20 + -t 0.895019 -s 3 -d 8 -p tcp -e 1000 -i 503 -a 20 - -t 0.895019 -s 3 -d 8 -p tcp -e 1000 -i 503 -a 20 h -t 0.895019 -s 3 -d 8 -p tcp -e 1000 -i 503 -a 20 r -t 0.895752 -s 6 -d 7 -p tcp -e 1000 -i 439 -a 11 + -t 0.895752 -s 7 -d 2 -p tcp -e 1000 -i 439 -a 11 - -t 0.895752 -s 7 -d 2 -p tcp -e 1000 -i 439 -a 11 h -t 0.895752 -s 7 -d 2 -p tcp -e 1000 -i 439 -a 11 r -t 0.895936 -s 6 -d 1 -p ack -e 40 -i 488 -a 13 - -t 0.896275 -s 8 -d 9 -p tcp -e 1000 -i 472 -a 20 h -t 0.896275 -s 8 -d 9 -p tcp -e 1000 -i 472 -a 20 r -t 0.896584 -s 2 -d 7 -p ack -e 40 -i 501 -a 11 + -t 0.896584 -s 7 -d 6 -p ack -e 40 -i 501 -a 11 - -t 0.896584 -s 7 -d 6 -p ack -e 40 -i 501 -a 11 h -t 0.896584 -s 7 -d 6 -p ack -e 40 -i 501 -a 11 r -t 0.89732 -s 9 -d 8 -p ack -e 40 -i 490 -a 20 + -t 0.89732 -s 8 -d 3 -p ack -e 40 -i 490 -a 20 - -t 0.89732 -s 8 -d 3 -p ack -e 40 -i 490 -a 20 h -t 0.89732 -s 8 -d 3 -p ack -e 40 -i 490 -a 20 r -t 0.89844 -s 4 -d 10 -p ack -e 40 -i 502 -a 21 + -t 0.89844 -s 9 -d 8 -p ack -e 40 -i 502 -a 21 - -t 0.89844 -s 9 -d 8 -p ack -e 40 -i 502 -a 21 h -t 0.89844 -s 9 -d 8 -p ack -e 40 -i 502 -a 21 r -t 0.898819 -s 3 -d 8 -p tcp -e 1000 -i 503 -a 20 + -t 0.898819 -s 8 -d 9 -p tcp -e 1000 -i 503 -a 20 r -t 0.899741 -s 9 -d 10 -p tcp -e 1000 -i 461 -a 22 + -t 0.899741 -s 4 -d 10 -p ack -e 40 -i 504 -a 22 - -t 0.899741 -s 4 -d 10 -p ack -e 40 -i 504 -a 22 h -t 0.899741 -s 4 -d 10 -p ack -e 40 -i 504 -a 22 - -t 0.899752 -s 6 -d 7 -p tcp -e 1000 -i 497 -a 10 h -t 0.899752 -s 6 -d 7 -p tcp -e 1000 -i 497 -a 10 r -t 0.900274 -s 8 -d 9 -p tcp -e 1000 -i 458 -a 21 + -t 0.900275 -s 9 -d 10 -p tcp -e 1000 -i 458 -a 21 - -t 0.900275 -s 9 -d 10 -p tcp -e 1000 -i 458 -a 21 h -t 0.900275 -s 9 -d 10 -p tcp -e 1000 -i 458 -a 21 r -t 0.900352 -s 8 -d 3 -p ack -e 40 -i 490 -a 20 + -t 0.900352 -s 3 -d 8 -p tcp -e 1000 -i 505 -a 20 - -t 0.900352 -s 3 -d 8 -p tcp -e 1000 -i 505 -a 20 h -t 0.900352 -s 3 -d 8 -p tcp -e 1000 -i 505 -a 20 r -t 0.900552 -s 7 -d 2 -p tcp -e 1000 -i 439 -a 11 + -t 0.900552 -s 2 -d 7 -p ack -e 40 -i 506 -a 11 - -t 0.900552 -s 2 -d 7 -p ack -e 40 -i 506 -a 11 h -t 0.900552 -s 2 -d 7 -p ack -e 40 -i 506 -a 11 r -t 0.900904 -s 7 -d 6 -p ack -e 40 -i 491 -a 13 + -t 0.900904 -s 6 -d 1 -p ack -e 40 -i 491 -a 13 - -t 0.900904 -s 6 -d 1 -p ack -e 40 -i 491 -a 13 h -t 0.900904 -s 6 -d 1 -p ack -e 40 -i 491 -a 13 - -t 0.901608 -s 8 -d 9 -p tcp -e 1000 -i 479 -a 20 h -t 0.901608 -s 8 -d 9 -p tcp -e 1000 -i 479 -a 20 r -t 0.902653 -s 9 -d 8 -p ack -e 40 -i 492 -a 21 + -t 0.902653 -s 8 -d 3 -p ack -e 40 -i 492 -a 21 - -t 0.902653 -s 8 -d 3 -p ack -e 40 -i 492 -a 21 h -t 0.902653 -s 8 -d 3 -p ack -e 40 -i 492 -a 21 r -t 0.903752 -s 6 -d 7 -p tcp -e 1000 -i 466 -a 13 + -t 0.903752 -s 7 -d 2 -p tcp -e 1000 -i 466 -a 13 - -t 0.903752 -s 7 -d 2 -p tcp -e 1000 -i 466 -a 13 h -t 0.903752 -s 7 -d 2 -p tcp -e 1000 -i 466 -a 13 r -t 0.903773 -s 4 -d 10 -p ack -e 40 -i 504 -a 22 + -t 0.903773 -s 9 -d 8 -p ack -e 40 -i 504 -a 22 - -t 0.903773 -s 9 -d 8 -p ack -e 40 -i 504 -a 22 h -t 0.903773 -s 9 -d 8 -p ack -e 40 -i 504 -a 22 r -t 0.904152 -s 3 -d 8 -p tcp -e 1000 -i 505 -a 20 r -t 0.903936 -s 6 -d 1 -p ack -e 40 -i 491 -a 13 + -t 0.904152 -s 8 -d 9 -p tcp -e 1000 -i 505 -a 20 r -t 0.904584 -s 2 -d 7 -p ack -e 40 -i 506 -a 11 + -t 0.904584 -s 7 -d 6 -p ack -e 40 -i 506 -a 11 - -t 0.904584 -s 7 -d 6 -p ack -e 40 -i 506 -a 11 h -t 0.904584 -s 7 -d 6 -p ack -e 40 -i 506 -a 11 r -t 0.905075 -s 9 -d 10 -p tcp -e 1000 -i 458 -a 21 + -t 0.905075 -s 4 -d 10 -p ack -e 40 -i 507 -a 21 - -t 0.905075 -s 4 -d 10 -p ack -e 40 -i 507 -a 21 h -t 0.905075 -s 4 -d 10 -p ack -e 40 -i 507 -a 21 r -t 0.905608 -s 8 -d 9 -p tcp -e 1000 -i 463 -a 21 + -t 0.905608 -s 9 -d 10 -p tcp -e 1000 -i 463 -a 21 - -t 0.905608 -s 9 -d 10 -p tcp -e 1000 -i 463 -a 21 h -t 0.905608 -s 9 -d 10 -p tcp -e 1000 -i 463 -a 21 r -t 0.905685 -s 8 -d 3 -p ack -e 40 -i 492 -a 21 + -t 0.905685 -s 3 -d 8 -p tcp -e 1000 -i 508 -a 21 - -t 0.905685 -s 3 -d 8 -p tcp -e 1000 -i 508 -a 21 h -t 0.905685 -s 3 -d 8 -p tcp -e 1000 -i 508 -a 21 - -t 0.906941 -s 8 -d 9 -p tcp -e 1000 -i 480 -a 20 h -t 0.906941 -s 8 -d 9 -p tcp -e 1000 -i 480 -a 20 - -t 0.907752 -s 6 -d 7 -p tcp -e 1000 -i 489 -a 13 h -t 0.907752 -s 6 -d 7 -p tcp -e 1000 -i 489 -a 13 r -t 0.907986 -s 9 -d 8 -p ack -e 40 -i 495 -a 20 + -t 0.907987 -s 8 -d 3 -p ack -e 40 -i 495 -a 20 - -t 0.907987 -s 8 -d 3 -p ack -e 40 -i 495 -a 20 h -t 0.907987 -s 8 -d 3 -p ack -e 40 -i 495 -a 20 r -t 0.908552 -s 7 -d 2 -p tcp -e 1000 -i 466 -a 13 + -t 0.908552 -s 2 -d 7 -p ack -e 40 -i 509 -a 13 - -t 0.908552 -s 2 -d 7 -p ack -e 40 -i 509 -a 13 h -t 0.908552 -s 2 -d 7 -p ack -e 40 -i 509 -a 13 r -t 0.908904 -s 7 -d 6 -p ack -e 40 -i 496 -a 13 + -t 0.908904 -s 6 -d 1 -p ack -e 40 -i 496 -a 13 - -t 0.908904 -s 6 -d 1 -p ack -e 40 -i 496 -a 13 h -t 0.908904 -s 6 -d 1 -p ack -e 40 -i 496 -a 13 r -t 0.909107 -s 4 -d 10 -p ack -e 40 -i 507 -a 21 + -t 0.909107 -s 9 -d 8 -p ack -e 40 -i 507 -a 21 - -t 0.909107 -s 9 -d 8 -p ack -e 40 -i 507 -a 21 h -t 0.909107 -s 9 -d 8 -p ack -e 40 -i 507 -a 21 r -t 0.909485 -s 3 -d 8 -p tcp -e 1000 -i 508 -a 21 + -t 0.909485 -s 8 -d 9 -p tcp -e 1000 -i 508 -a 21 r -t 0.910408 -s 9 -d 10 -p tcp -e 1000 -i 463 -a 21 + -t 0.910408 -s 4 -d 10 -p ack -e 40 -i 510 -a 21 - -t 0.910408 -s 4 -d 10 -p ack -e 40 -i 510 -a 21 h -t 0.910408 -s 4 -d 10 -p ack -e 40 -i 510 -a 21 r -t 0.910941 -s 8 -d 9 -p tcp -e 1000 -i 469 -a 22 + -t 0.910941 -s 9 -d 10 -p tcp -e 1000 -i 469 -a 22 - -t 0.910941 -s 9 -d 10 -p tcp -e 1000 -i 469 -a 22 h -t 0.910941 -s 9 -d 10 -p tcp -e 1000 -i 469 -a 22 r -t 0.911019 -s 8 -d 3 -p ack -e 40 -i 495 -a 20 + -t 0.911019 -s 3 -d 8 -p tcp -e 1000 -i 511 -a 20 - -t 0.911019 -s 3 -d 8 -p tcp -e 1000 -i 511 -a 20 h -t 0.911019 -s 3 -d 8 -p tcp -e 1000 -i 511 -a 20 r -t 0.911752 -s 6 -d 7 -p tcp -e 1000 -i 475 -a 14 + -t 0.911752 -s 7 -d 2 -p tcp -e 1000 -i 475 -a 14 - -t 0.911752 -s 7 -d 2 -p tcp -e 1000 -i 475 -a 14 h -t 0.911752 -s 7 -d 2 -p tcp -e 1000 -i 475 -a 14 r -t 0.911936 -s 6 -d 1 -p ack -e 40 -i 496 -a 13 - -t 0.912275 -s 8 -d 9 -p tcp -e 1000 -i 485 -a 20 h -t 0.912275 -s 8 -d 9 -p tcp -e 1000 -i 485 -a 20 r -t 0.912584 -s 2 -d 7 -p ack -e 40 -i 509 -a 13 + -t 0.912584 -s 7 -d 6 -p ack -e 40 -i 509 -a 13 - -t 0.912584 -s 7 -d 6 -p ack -e 40 -i 509 -a 13 h -t 0.912584 -s 7 -d 6 -p ack -e 40 -i 509 -a 13 r -t 0.91332 -s 9 -d 8 -p ack -e 40 -i 499 -a 21 + -t 0.91332 -s 8 -d 3 -p ack -e 40 -i 499 -a 21 - -t 0.91332 -s 8 -d 3 -p ack -e 40 -i 499 -a 21 h -t 0.91332 -s 8 -d 3 -p ack -e 40 -i 499 -a 21 r -t 0.91444 -s 4 -d 10 -p ack -e 40 -i 510 -a 21 + -t 0.91444 -s 9 -d 8 -p ack -e 40 -i 510 -a 21 - -t 0.91444 -s 9 -d 8 -p ack -e 40 -i 510 -a 21 h -t 0.91444 -s 9 -d 8 -p ack -e 40 -i 510 -a 21 r -t 0.914819 -s 3 -d 8 -p tcp -e 1000 -i 511 -a 20 + -t 0.914819 -s 8 -d 9 -p tcp -e 1000 -i 511 -a 20 r -t 0.915741 -s 9 -d 10 -p tcp -e 1000 -i 469 -a 22 + -t 0.915741 -s 4 -d 10 -p ack -e 40 -i 512 -a 22 - -t 0.915741 -s 4 -d 10 -p ack -e 40 -i 512 -a 22 h -t 0.915741 -s 4 -d 10 -p ack -e 40 -i 512 -a 22 - -t 0.915752 -s 6 -d 7 -p tcp -e 1000 -i 498 -a 10 h -t 0.915752 -s 6 -d 7 -p tcp -e 1000 -i 498 -a 10 r -t 0.916274 -s 8 -d 9 -p tcp -e 1000 -i 464 -a 21 + -t 0.916275 -s 9 -d 10 -p tcp -e 1000 -i 464 -a 21 - -t 0.916275 -s 9 -d 10 -p tcp -e 1000 -i 464 -a 21 h -t 0.916275 -s 9 -d 10 -p tcp -e 1000 -i 464 -a 21 r -t 0.916352 -s 8 -d 3 -p ack -e 40 -i 499 -a 21 + -t 0.916352 -s 3 -d 8 -p tcp -e 1000 -i 513 -a 21 - -t 0.916352 -s 3 -d 8 -p tcp -e 1000 -i 513 -a 21 h -t 0.916352 -s 3 -d 8 -p tcp -e 1000 -i 513 -a 21 r -t 0.916552 -s 7 -d 2 -p tcp -e 1000 -i 475 -a 14 + -t 0.916552 -s 2 -d 7 -p ack -e 40 -i 514 -a 14 - -t 0.916552 -s 2 -d 7 -p ack -e 40 -i 514 -a 14 h -t 0.916552 -s 2 -d 7 -p ack -e 40 -i 514 -a 14 r -t 0.916904 -s 7 -d 6 -p ack -e 40 -i 501 -a 11 + -t 0.916904 -s 6 -d 1 -p ack -e 40 -i 501 -a 11 - -t 0.916904 -s 6 -d 1 -p ack -e 40 -i 501 -a 11 h -t 0.916904 -s 6 -d 1 -p ack -e 40 -i 501 -a 11 - -t 0.917608 -s 8 -d 9 -p tcp -e 1000 -i 486 -a 20 h -t 0.917608 -s 8 -d 9 -p tcp -e 1000 -i 486 -a 20 r -t 0.918653 -s 9 -d 8 -p ack -e 40 -i 502 -a 21 + -t 0.918653 -s 8 -d 3 -p ack -e 40 -i 502 -a 21 - -t 0.918653 -s 8 -d 3 -p ack -e 40 -i 502 -a 21 h -t 0.918653 -s 8 -d 3 -p ack -e 40 -i 502 -a 21 r -t 0.919752 -s 6 -d 7 -p tcp -e 1000 -i 467 -a 13 + -t 0.919752 -s 7 -d 2 -p tcp -e 1000 -i 467 -a 13 - -t 0.919752 -s 7 -d 2 -p tcp -e 1000 -i 467 -a 13 h -t 0.919752 -s 7 -d 2 -p tcp -e 1000 -i 467 -a 13 r -t 0.919773 -s 4 -d 10 -p ack -e 40 -i 512 -a 22 + -t 0.919773 -s 9 -d 8 -p ack -e 40 -i 512 -a 22 - -t 0.919773 -s 9 -d 8 -p ack -e 40 -i 512 -a 22 h -t 0.919773 -s 9 -d 8 -p ack -e 40 -i 512 -a 22 r -t 0.920152 -s 3 -d 8 -p tcp -e 1000 -i 513 -a 21 r -t 0.919936 -s 6 -d 1 -p ack -e 40 -i 501 -a 11 + -t 0.920152 -s 8 -d 9 -p tcp -e 1000 -i 513 -a 21 r -t 0.920584 -s 2 -d 7 -p ack -e 40 -i 514 -a 14 + -t 0.920584 -s 7 -d 6 -p ack -e 40 -i 514 -a 14 - -t 0.920584 -s 7 -d 6 -p ack -e 40 -i 514 -a 14 h -t 0.920584 -s 7 -d 6 -p ack -e 40 -i 514 -a 14 r -t 0.921075 -s 9 -d 10 -p tcp -e 1000 -i 464 -a 21 + -t 0.921075 -s 4 -d 10 -p ack -e 40 -i 515 -a 21 - -t 0.921075 -s 4 -d 10 -p ack -e 40 -i 515 -a 21 h -t 0.921075 -s 4 -d 10 -p ack -e 40 -i 515 -a 21 r -t 0.921608 -s 8 -d 9 -p tcp -e 1000 -i 472 -a 20 + -t 0.921608 -s 9 -d 10 -p tcp -e 1000 -i 472 -a 20 - -t 0.921608 -s 9 -d 10 -p tcp -e 1000 -i 472 -a 20 h -t 0.921608 -s 9 -d 10 -p tcp -e 1000 -i 472 -a 20 r -t 0.921685 -s 8 -d 3 -p ack -e 40 -i 502 -a 21 + -t 0.921685 -s 3 -d 8 -p tcp -e 1000 -i 516 -a 21 - -t 0.921685 -s 3 -d 8 -p tcp -e 1000 -i 516 -a 21 h -t 0.921685 -s 3 -d 8 -p tcp -e 1000 -i 516 -a 21 - -t 0.922941 -s 8 -d 9 -p tcp -e 1000 -i 493 -a 20 h -t 0.922941 -s 8 -d 9 -p tcp -e 1000 -i 493 -a 20 r -t 0.923986 -s 9 -d 8 -p ack -e 40 -i 504 -a 22 + -t 0.923987 -s 8 -d 3 -p ack -e 40 -i 504 -a 22 - -t 0.923987 -s 8 -d 3 -p ack -e 40 -i 504 -a 22 h -t 0.923987 -s 8 -d 3 -p ack -e 40 -i 504 -a 22 r -t 0.924552 -s 7 -d 2 -p tcp -e 1000 -i 467 -a 13 + -t 0.924552 -s 2 -d 7 -p ack -e 40 -i 517 -a 13 - -t 0.924552 -s 2 -d 7 -p ack -e 40 -i 517 -a 13 h -t 0.924552 -s 2 -d 7 -p ack -e 40 -i 517 -a 13 r -t 0.924904 -s 7 -d 6 -p ack -e 40 -i 506 -a 11 + -t 0.924904 -s 6 -d 1 -p ack -e 40 -i 506 -a 11 - -t 0.924904 -s 6 -d 1 -p ack -e 40 -i 506 -a 11 h -t 0.924904 -s 6 -d 1 -p ack -e 40 -i 506 -a 11 r -t 0.925107 -s 4 -d 10 -p ack -e 40 -i 515 -a 21 + -t 0.925107 -s 9 -d 8 -p ack -e 40 -i 515 -a 21 - -t 0.925107 -s 9 -d 8 -p ack -e 40 -i 515 -a 21 h -t 0.925107 -s 9 -d 8 -p ack -e 40 -i 515 -a 21 r -t 0.925485 -s 3 -d 8 -p tcp -e 1000 -i 516 -a 21 + -t 0.925485 -s 8 -d 9 -p tcp -e 1000 -i 516 -a 21 r -t 0.926408 -s 9 -d 10 -p tcp -e 1000 -i 472 -a 20 + -t 0.926408 -s 4 -d 10 -p ack -e 40 -i 518 -a 20 - -t 0.926408 -s 4 -d 10 -p ack -e 40 -i 518 -a 20 h -t 0.926408 -s 4 -d 10 -p ack -e 40 -i 518 -a 20 r -t 0.926941 -s 8 -d 9 -p tcp -e 1000 -i 479 -a 20 + -t 0.926941 -s 9 -d 10 -p tcp -e 1000 -i 479 -a 20 - -t 0.926941 -s 9 -d 10 -p tcp -e 1000 -i 479 -a 20 h -t 0.926941 -s 9 -d 10 -p tcp -e 1000 -i 479 -a 20 r -t 0.927019 -s 8 -d 3 -p ack -e 40 -i 504 -a 22 + -t 0.927019 -s 3 -d 8 -p tcp -e 1000 -i 519 -a 22 - -t 0.927019 -s 3 -d 8 -p tcp -e 1000 -i 519 -a 22 h -t 0.927019 -s 3 -d 8 -p tcp -e 1000 -i 519 -a 22 + -t 0.927019 -s 3 -d 8 -p tcp -e 1000 -i 520 -a 22 r -t 0.927752 -s 6 -d 7 -p tcp -e 1000 -i 497 -a 10 + -t 0.927752 -s 7 -d 2 -p tcp -e 1000 -i 497 -a 10 - -t 0.927752 -s 7 -d 2 -p tcp -e 1000 -i 497 -a 10 h -t 0.927752 -s 7 -d 2 -p tcp -e 1000 -i 497 -a 10 - -t 0.927819 -s 3 -d 8 -p tcp -e 1000 -i 520 -a 22 h -t 0.927819 -s 3 -d 8 -p tcp -e 1000 -i 520 -a 22 r -t 0.927936 -s 6 -d 1 -p ack -e 40 -i 506 -a 11 - -t 0.928275 -s 8 -d 9 -p tcp -e 1000 -i 494 -a 20 h -t 0.928275 -s 8 -d 9 -p tcp -e 1000 -i 494 -a 20 r -t 0.928584 -s 2 -d 7 -p ack -e 40 -i 517 -a 13 + -t 0.928584 -s 7 -d 6 -p ack -e 40 -i 517 -a 13 - -t 0.928584 -s 7 -d 6 -p ack -e 40 -i 517 -a 13 h -t 0.928584 -s 7 -d 6 -p ack -e 40 -i 517 -a 13 r -t 0.92932 -s 9 -d 8 -p ack -e 40 -i 507 -a 21 + -t 0.92932 -s 8 -d 3 -p ack -e 40 -i 507 -a 21 - -t 0.92932 -s 8 -d 3 -p ack -e 40 -i 507 -a 21 h -t 0.92932 -s 8 -d 3 -p ack -e 40 -i 507 -a 21 r -t 0.93044 -s 4 -d 10 -p ack -e 40 -i 518 -a 20 + -t 0.93044 -s 9 -d 8 -p ack -e 40 -i 518 -a 20 - -t 0.93044 -s 9 -d 8 -p ack -e 40 -i 518 -a 20 h -t 0.93044 -s 9 -d 8 -p ack -e 40 -i 518 -a 20 r -t 0.930819 -s 3 -d 8 -p tcp -e 1000 -i 519 -a 22 + -t 0.930819 -s 8 -d 9 -p tcp -e 1000 -i 519 -a 22 r -t 0.931619 -s 3 -d 8 -p tcp -e 1000 -i 520 -a 22 + -t 0.931619 -s 8 -d 9 -p tcp -e 1000 -i 520 -a 22 r -t 0.931741 -s 9 -d 10 -p tcp -e 1000 -i 479 -a 20 + -t 0.931741 -s 4 -d 10 -p ack -e 40 -i 521 -a 20 - -t 0.931741 -s 4 -d 10 -p ack -e 40 -i 521 -a 20 h -t 0.931741 -s 4 -d 10 -p ack -e 40 -i 521 -a 20 r -t 0.932274 -s 8 -d 9 -p tcp -e 1000 -i 480 -a 20 + -t 0.932275 -s 9 -d 10 -p tcp -e 1000 -i 480 -a 20 - -t 0.932275 -s 9 -d 10 -p tcp -e 1000 -i 480 -a 20 h -t 0.932275 -s 9 -d 10 -p tcp -e 1000 -i 480 -a 20 r -t 0.932352 -s 8 -d 3 -p ack -e 40 -i 507 -a 21 + -t 0.932352 -s 3 -d 8 -p tcp -e 1000 -i 522 -a 21 - -t 0.932352 -s 3 -d 8 -p tcp -e 1000 -i 522 -a 21 h -t 0.932352 -s 3 -d 8 -p tcp -e 1000 -i 522 -a 21 r -t 0.932552 -s 7 -d 2 -p tcp -e 1000 -i 497 -a 10 + -t 0.932552 -s 2 -d 7 -p ack -e 40 -i 523 -a 10 - -t 0.932552 -s 2 -d 7 -p ack -e 40 -i 523 -a 10 h -t 0.932552 -s 2 -d 7 -p ack -e 40 -i 523 -a 10 r -t 0.932904 -s 7 -d 6 -p ack -e 40 -i 509 -a 13 + -t 0.932904 -s 6 -d 1 -p ack -e 40 -i 509 -a 13 - -t 0.932904 -s 6 -d 1 -p ack -e 40 -i 509 -a 13 h -t 0.932904 -s 6 -d 1 -p ack -e 40 -i 509 -a 13 - -t 0.933608 -s 8 -d 9 -p tcp -e 1000 -i 500 -a 20 h -t 0.933608 -s 8 -d 9 -p tcp -e 1000 -i 500 -a 20 r -t 0.934653 -s 9 -d 8 -p ack -e 40 -i 510 -a 21 + -t 0.934653 -s 8 -d 3 -p ack -e 40 -i 510 -a 21 - -t 0.934653 -s 8 -d 3 -p ack -e 40 -i 510 -a 21 h -t 0.934653 -s 8 -d 3 -p ack -e 40 -i 510 -a 21 r -t 0.935752 -s 6 -d 7 -p tcp -e 1000 -i 489 -a 13 + -t 0.935752 -s 7 -d 2 -p tcp -e 1000 -i 489 -a 13 - -t 0.935752 -s 7 -d 2 -p tcp -e 1000 -i 489 -a 13 h -t 0.935752 -s 7 -d 2 -p tcp -e 1000 -i 489 -a 13 r -t 0.935773 -s 4 -d 10 -p ack -e 40 -i 521 -a 20 + -t 0.935773 -s 9 -d 8 -p ack -e 40 -i 521 -a 20 - -t 0.935773 -s 9 -d 8 -p ack -e 40 -i 521 -a 20 h -t 0.935773 -s 9 -d 8 -p ack -e 40 -i 521 -a 20 r -t 0.936152 -s 3 -d 8 -p tcp -e 1000 -i 522 -a 21 r -t 0.935936 -s 6 -d 1 -p ack -e 40 -i 509 -a 13 + -t 0.936152 -s 8 -d 9 -p tcp -e 1000 -i 522 -a 21 r -t 0.936584 -s 2 -d 7 -p ack -e 40 -i 523 -a 10 + -t 0.936584 -s 7 -d 6 -p ack -e 40 -i 523 -a 10 - -t 0.936584 -s 7 -d 6 -p ack -e 40 -i 523 -a 10 h -t 0.936584 -s 7 -d 6 -p ack -e 40 -i 523 -a 10 r -t 0.937075 -s 9 -d 10 -p tcp -e 1000 -i 480 -a 20 + -t 0.937075 -s 4 -d 10 -p ack -e 40 -i 524 -a 20 - -t 0.937075 -s 4 -d 10 -p ack -e 40 -i 524 -a 20 h -t 0.937075 -s 4 -d 10 -p ack -e 40 -i 524 -a 20 r -t 0.937608 -s 8 -d 9 -p tcp -e 1000 -i 485 -a 20 + -t 0.937608 -s 9 -d 10 -p tcp -e 1000 -i 485 -a 20 - -t 0.937608 -s 9 -d 10 -p tcp -e 1000 -i 485 -a 20 h -t 0.937608 -s 9 -d 10 -p tcp -e 1000 -i 485 -a 20 r -t 0.937685 -s 8 -d 3 -p ack -e 40 -i 510 -a 21 + -t 0.937685 -s 3 -d 8 -p tcp -e 1000 -i 525 -a 21 - -t 0.937685 -s 3 -d 8 -p tcp -e 1000 -i 525 -a 21 h -t 0.937685 -s 3 -d 8 -p tcp -e 1000 -i 525 -a 21 - -t 0.938941 -s 8 -d 9 -p tcp -e 1000 -i 503 -a 20 h -t 0.938941 -s 8 -d 9 -p tcp -e 1000 -i 503 -a 20 r -t 0.939986 -s 9 -d 8 -p ack -e 40 -i 512 -a 22 + -t 0.939987 -s 8 -d 3 -p ack -e 40 -i 512 -a 22 - -t 0.939987 -s 8 -d 3 -p ack -e 40 -i 512 -a 22 h -t 0.939987 -s 8 -d 3 -p ack -e 40 -i 512 -a 22 r -t 0.940552 -s 7 -d 2 -p tcp -e 1000 -i 489 -a 13 + -t 0.940552 -s 2 -d 7 -p ack -e 40 -i 526 -a 13 - -t 0.940552 -s 2 -d 7 -p ack -e 40 -i 526 -a 13 h -t 0.940552 -s 2 -d 7 -p ack -e 40 -i 526 -a 13 r -t 0.940904 -s 7 -d 6 -p ack -e 40 -i 514 -a 14 + -t 0.940904 -s 6 -d 1 -p ack -e 40 -i 514 -a 14 - -t 0.940904 -s 6 -d 1 -p ack -e 40 -i 514 -a 14 h -t 0.940904 -s 6 -d 1 -p ack -e 40 -i 514 -a 14 r -t 0.941107 -s 4 -d 10 -p ack -e 40 -i 524 -a 20 + -t 0.941107 -s 9 -d 8 -p ack -e 40 -i 524 -a 20 - -t 0.941107 -s 9 -d 8 -p ack -e 40 -i 524 -a 20 h -t 0.941107 -s 9 -d 8 -p ack -e 40 -i 524 -a 20 r -t 0.941485 -s 3 -d 8 -p tcp -e 1000 -i 525 -a 21 + -t 0.941485 -s 8 -d 9 -p tcp -e 1000 -i 525 -a 21 r -t 0.942408 -s 9 -d 10 -p tcp -e 1000 -i 485 -a 20 + -t 0.942408 -s 4 -d 10 -p ack -e 40 -i 527 -a 20 - -t 0.942408 -s 4 -d 10 -p ack -e 40 -i 527 -a 20 h -t 0.942408 -s 4 -d 10 -p ack -e 40 -i 527 -a 20 r -t 0.942941 -s 8 -d 9 -p tcp -e 1000 -i 486 -a 20 + -t 0.942941 -s 9 -d 10 -p tcp -e 1000 -i 486 -a 20 - -t 0.942941 -s 9 -d 10 -p tcp -e 1000 -i 486 -a 20 h -t 0.942941 -s 9 -d 10 -p tcp -e 1000 -i 486 -a 20 r -t 0.943019 -s 8 -d 3 -p ack -e 40 -i 512 -a 22 + -t 0.943019 -s 3 -d 8 -p tcp -e 1000 -i 528 -a 22 - -t 0.943019 -s 3 -d 8 -p tcp -e 1000 -i 528 -a 22 h -t 0.943019 -s 3 -d 8 -p tcp -e 1000 -i 528 -a 22 r -t 0.943752 -s 6 -d 7 -p tcp -e 1000 -i 498 -a 10 + -t 0.943752 -s 7 -d 2 -p tcp -e 1000 -i 498 -a 10 - -t 0.943752 -s 7 -d 2 -p tcp -e 1000 -i 498 -a 10 h -t 0.943752 -s 7 -d 2 -p tcp -e 1000 -i 498 -a 10 r -t 0.943936 -s 6 -d 1 -p ack -e 40 -i 514 -a 14 + -t 0.943936 -s 1 -d 6 -p tcp -e 1000 -i 529 -a 14 - -t 0.943936 -s 1 -d 6 -p tcp -e 1000 -i 529 -a 14 h -t 0.943936 -s 1 -d 6 -p tcp -e 1000 -i 529 -a 14 + -t 0.943936 -s 1 -d 6 -p tcp -e 1000 -i 530 -a 14 - -t 0.944275 -s 8 -d 9 -p tcp -e 1000 -i 508 -a 21 h -t 0.944275 -s 8 -d 9 -p tcp -e 1000 -i 508 -a 21 r -t 0.944584 -s 2 -d 7 -p ack -e 40 -i 526 -a 13 + -t 0.944584 -s 7 -d 6 -p ack -e 40 -i 526 -a 13 - -t 0.944584 -s 7 -d 6 -p ack -e 40 -i 526 -a 13 h -t 0.944584 -s 7 -d 6 -p ack -e 40 -i 526 -a 13 - -t 0.944736 -s 1 -d 6 -p tcp -e 1000 -i 530 -a 14 h -t 0.944736 -s 1 -d 6 -p tcp -e 1000 -i 530 -a 14 r -t 0.94532 -s 9 -d 8 -p ack -e 40 -i 515 -a 21 + -t 0.94532 -s 8 -d 3 -p ack -e 40 -i 515 -a 21 - -t 0.94532 -s 8 -d 3 -p ack -e 40 -i 515 -a 21 h -t 0.94532 -s 8 -d 3 -p ack -e 40 -i 515 -a 21 r -t 0.94644 -s 4 -d 10 -p ack -e 40 -i 527 -a 20 + -t 0.94644 -s 9 -d 8 -p ack -e 40 -i 527 -a 20 - -t 0.94644 -s 9 -d 8 -p ack -e 40 -i 527 -a 20 h -t 0.94644 -s 9 -d 8 -p ack -e 40 -i 527 -a 20 r -t 0.946819 -s 3 -d 8 -p tcp -e 1000 -i 528 -a 22 + -t 0.946819 -s 8 -d 9 -p tcp -e 1000 -i 528 -a 22 r -t 0.947736 -s 1 -d 6 -p tcp -e 1000 -i 529 -a 14 + -t 0.947736 -s 6 -d 7 -p tcp -e 1000 -i 529 -a 14 - -t 0.947736 -s 6 -d 7 -p tcp -e 1000 -i 529 -a 14 h -t 0.947736 -s 6 -d 7 -p tcp -e 1000 -i 529 -a 14 r -t 0.947741 -s 9 -d 10 -p tcp -e 1000 -i 486 -a 20 + -t 0.947741 -s 4 -d 10 -p ack -e 40 -i 531 -a 20 - -t 0.947741 -s 4 -d 10 -p ack -e 40 -i 531 -a 20 h -t 0.947741 -s 4 -d 10 -p ack -e 40 -i 531 -a 20 r -t 0.948274 -s 8 -d 9 -p tcp -e 1000 -i 493 -a 20 + -t 0.948275 -s 9 -d 10 -p tcp -e 1000 -i 493 -a 20 - -t 0.948275 -s 9 -d 10 -p tcp -e 1000 -i 493 -a 20 h -t 0.948275 -s 9 -d 10 -p tcp -e 1000 -i 493 -a 20 r -t 0.948352 -s 8 -d 3 -p ack -e 40 -i 515 -a 21 + -t 0.948352 -s 3 -d 8 -p tcp -e 1000 -i 532 -a 21 - -t 0.948352 -s 3 -d 8 -p tcp -e 1000 -i 532 -a 21 h -t 0.948352 -s 3 -d 8 -p tcp -e 1000 -i 532 -a 21 r -t 0.948536 -s 1 -d 6 -p tcp -e 1000 -i 530 -a 14 + -t 0.948536 -s 6 -d 7 -p tcp -e 1000 -i 530 -a 14 r -t 0.948552 -s 7 -d 2 -p tcp -e 1000 -i 498 -a 10 + -t 0.948552 -s 2 -d 7 -p ack -e 40 -i 533 -a 10 - -t 0.948552 -s 2 -d 7 -p ack -e 40 -i 533 -a 10 h -t 0.948552 -s 2 -d 7 -p ack -e 40 -i 533 -a 10 r -t 0.948904 -s 7 -d 6 -p ack -e 40 -i 517 -a 13 + -t 0.948904 -s 6 -d 1 -p ack -e 40 -i 517 -a 13 - -t 0.948904 -s 6 -d 1 -p ack -e 40 -i 517 -a 13 h -t 0.948904 -s 6 -d 1 -p ack -e 40 -i 517 -a 13 - -t 0.949608 -s 8 -d 9 -p tcp -e 1000 -i 505 -a 20 h -t 0.949608 -s 8 -d 9 -p tcp -e 1000 -i 505 -a 20 r -t 0.950653 -s 9 -d 8 -p ack -e 40 -i 518 -a 20 + -t 0.950653 -s 8 -d 3 -p ack -e 40 -i 518 -a 20 - -t 0.950653 -s 8 -d 3 -p ack -e 40 -i 518 -a 20 h -t 0.950653 -s 8 -d 3 -p ack -e 40 -i 518 -a 20 r -t 0.951773 -s 4 -d 10 -p ack -e 40 -i 531 -a 20 + -t 0.951773 -s 9 -d 8 -p ack -e 40 -i 531 -a 20 - -t 0.951773 -s 9 -d 8 -p ack -e 40 -i 531 -a 20 h -t 0.951773 -s 9 -d 8 -p ack -e 40 -i 531 -a 20 r -t 0.952152 -s 3 -d 8 -p tcp -e 1000 -i 532 -a 21 r -t 0.951936 -s 6 -d 1 -p ack -e 40 -i 517 -a 13 + -t 0.952152 -s 8 -d 9 -p tcp -e 1000 -i 532 -a 21 r -t 0.952584 -s 2 -d 7 -p ack -e 40 -i 533 -a 10 + -t 0.952584 -s 7 -d 6 -p ack -e 40 -i 533 -a 10 - -t 0.952584 -s 7 -d 6 -p ack -e 40 -i 533 -a 10 h -t 0.952584 -s 7 -d 6 -p ack -e 40 -i 533 -a 10 r -t 0.953075 -s 9 -d 10 -p tcp -e 1000 -i 493 -a 20 + -t 0.953075 -s 4 -d 10 -p ack -e 40 -i 534 -a 20 - -t 0.953075 -s 4 -d 10 -p ack -e 40 -i 534 -a 20 h -t 0.953075 -s 4 -d 10 -p ack -e 40 -i 534 -a 20 r -t 0.953608 -s 8 -d 9 -p tcp -e 1000 -i 494 -a 20 + -t 0.953608 -s 9 -d 10 -p tcp -e 1000 -i 494 -a 20 - -t 0.953608 -s 9 -d 10 -p tcp -e 1000 -i 494 -a 20 h -t 0.953608 -s 9 -d 10 -p tcp -e 1000 -i 494 -a 20 r -t 0.953685 -s 8 -d 3 -p ack -e 40 -i 518 -a 20 + -t 0.953685 -s 3 -d 8 -p tcp -e 1000 -i 535 -a 20 - -t 0.953685 -s 3 -d 8 -p tcp -e 1000 -i 535 -a 20 h -t 0.953685 -s 3 -d 8 -p tcp -e 1000 -i 535 -a 20 - -t 0.954941 -s 8 -d 9 -p tcp -e 1000 -i 513 -a 21 h -t 0.954941 -s 8 -d 9 -p tcp -e 1000 -i 513 -a 21 - -t 0.955736 -s 6 -d 7 -p tcp -e 1000 -i 530 -a 14 h -t 0.955736 -s 6 -d 7 -p tcp -e 1000 -i 530 -a 14 r -t 0.955986 -s 9 -d 8 -p ack -e 40 -i 521 -a 20 + -t 0.955987 -s 8 -d 3 -p ack -e 40 -i 521 -a 20 - -t 0.955987 -s 8 -d 3 -p ack -e 40 -i 521 -a 20 h -t 0.955987 -s 8 -d 3 -p ack -e 40 -i 521 -a 20 r -t 0.956904 -s 7 -d 6 -p ack -e 40 -i 523 -a 10 + -t 0.956904 -s 6 -d 1 -p ack -e 40 -i 523 -a 10 - -t 0.956904 -s 6 -d 1 -p ack -e 40 -i 523 -a 10 h -t 0.956904 -s 6 -d 1 -p ack -e 40 -i 523 -a 10 r -t 0.957107 -s 4 -d 10 -p ack -e 40 -i 534 -a 20 + -t 0.957107 -s 9 -d 8 -p ack -e 40 -i 534 -a 20 - -t 0.957107 -s 9 -d 8 -p ack -e 40 -i 534 -a 20 h -t 0.957107 -s 9 -d 8 -p ack -e 40 -i 534 -a 20 r -t 0.957485 -s 3 -d 8 -p tcp -e 1000 -i 535 -a 20 + -t 0.957485 -s 8 -d 9 -p tcp -e 1000 -i 535 -a 20 r -t 0.958408 -s 9 -d 10 -p tcp -e 1000 -i 494 -a 20 + -t 0.958408 -s 4 -d 10 -p ack -e 40 -i 536 -a 20 - -t 0.958408 -s 4 -d 10 -p ack -e 40 -i 536 -a 20 h -t 0.958408 -s 4 -d 10 -p ack -e 40 -i 536 -a 20 r -t 0.958941 -s 8 -d 9 -p tcp -e 1000 -i 500 -a 20 + -t 0.958941 -s 9 -d 10 -p tcp -e 1000 -i 500 -a 20 - -t 0.958941 -s 9 -d 10 -p tcp -e 1000 -i 500 -a 20 h -t 0.958941 -s 9 -d 10 -p tcp -e 1000 -i 500 -a 20 r -t 0.959019 -s 8 -d 3 -p ack -e 40 -i 521 -a 20 r -t 0.959936 -s 6 -d 1 -p ack -e 40 -i 523 -a 10 + -t 0.959936 -s 1 -d 6 -p tcp -e 1000 -i 537 -a 10 - -t 0.959936 -s 1 -d 6 -p tcp -e 1000 -i 537 -a 10 h -t 0.959936 -s 1 -d 6 -p tcp -e 1000 -i 537 -a 10 - -t 0.960275 -s 8 -d 9 -p tcp -e 1000 -i 511 -a 20 h -t 0.960275 -s 8 -d 9 -p tcp -e 1000 -i 511 -a 20 r -t 0.96132 -s 9 -d 8 -p ack -e 40 -i 524 -a 20 + -t 0.96132 -s 8 -d 3 -p ack -e 40 -i 524 -a 20 - -t 0.96132 -s 8 -d 3 -p ack -e 40 -i 524 -a 20 h -t 0.96132 -s 8 -d 3 -p ack -e 40 -i 524 -a 20 r -t 0.96244 -s 4 -d 10 -p ack -e 40 -i 536 -a 20 + -t 0.96244 -s 9 -d 8 -p ack -e 40 -i 536 -a 20 - -t 0.96244 -s 9 -d 8 -p ack -e 40 -i 536 -a 20 h -t 0.96244 -s 9 -d 8 -p ack -e 40 -i 536 -a 20 r -t 0.963736 -s 1 -d 6 -p tcp -e 1000 -i 537 -a 10 + -t 0.963736 -s 6 -d 7 -p tcp -e 1000 -i 537 -a 10 - -t 0.963736 -s 6 -d 7 -p tcp -e 1000 -i 537 -a 10 h -t 0.963736 -s 6 -d 7 -p tcp -e 1000 -i 537 -a 10 r -t 0.963741 -s 9 -d 10 -p tcp -e 1000 -i 500 -a 20 + -t 0.963741 -s 4 -d 10 -p ack -e 40 -i 538 -a 20 - -t 0.963741 -s 4 -d 10 -p ack -e 40 -i 538 -a 20 h -t 0.963741 -s 4 -d 10 -p ack -e 40 -i 538 -a 20 r -t 0.964274 -s 8 -d 9 -p tcp -e 1000 -i 503 -a 20 + -t 0.964275 -s 9 -d 10 -p tcp -e 1000 -i 503 -a 20 - -t 0.964275 -s 9 -d 10 -p tcp -e 1000 -i 503 -a 20 h -t 0.964275 -s 9 -d 10 -p tcp -e 1000 -i 503 -a 20 r -t 0.964904 -s 7 -d 6 -p ack -e 40 -i 526 -a 13 r -t 0.964352 -s 8 -d 3 -p ack -e 40 -i 524 -a 20 + -t 0.964904 -s 6 -d 1 -p ack -e 40 -i 526 -a 13 - -t 0.964904 -s 6 -d 1 -p ack -e 40 -i 526 -a 13 h -t 0.964904 -s 6 -d 1 -p ack -e 40 -i 526 -a 13 - -t 0.965608 -s 8 -d 9 -p tcp -e 1000 -i 516 -a 21 h -t 0.965608 -s 8 -d 9 -p tcp -e 1000 -i 516 -a 21 r -t 0.966653 -s 9 -d 8 -p ack -e 40 -i 527 -a 20 + -t 0.966653 -s 8 -d 3 -p ack -e 40 -i 527 -a 20 - -t 0.966653 -s 8 -d 3 -p ack -e 40 -i 527 -a 20 h -t 0.966653 -s 8 -d 3 -p ack -e 40 -i 527 -a 20 r -t 0.967773 -s 4 -d 10 -p ack -e 40 -i 538 -a 20 + -t 0.967773 -s 9 -d 8 -p ack -e 40 -i 538 -a 20 - -t 0.967773 -s 9 -d 8 -p ack -e 40 -i 538 -a 20 h -t 0.967773 -s 9 -d 8 -p ack -e 40 -i 538 -a 20 r -t 0.967936 -s 6 -d 1 -p ack -e 40 -i 526 -a 13 + -t 0.967936 -s 1 -d 6 -p tcp -e 1000 -i 539 -a 13 - -t 0.967936 -s 1 -d 6 -p tcp -e 1000 -i 539 -a 13 h -t 0.967936 -s 1 -d 6 -p tcp -e 1000 -i 539 -a 13 + -t 0.967936 -s 1 -d 6 -p tcp -e 1000 -i 540 -a 13 - -t 0.968736 -s 1 -d 6 -p tcp -e 1000 -i 540 -a 13 h -t 0.968736 -s 1 -d 6 -p tcp -e 1000 -i 540 -a 13 r -t 0.969075 -s 9 -d 10 -p tcp -e 1000 -i 503 -a 20 + -t 0.969075 -s 4 -d 10 -p ack -e 40 -i 541 -a 20 - -t 0.969075 -s 4 -d 10 -p ack -e 40 -i 541 -a 20 h -t 0.969075 -s 4 -d 10 -p ack -e 40 -i 541 -a 20 r -t 0.969608 -s 8 -d 9 -p tcp -e 1000 -i 508 -a 21 + -t 0.969608 -s 9 -d 10 -p tcp -e 1000 -i 508 -a 21 - -t 0.969608 -s 9 -d 10 -p tcp -e 1000 -i 508 -a 21 h -t 0.969608 -s 9 -d 10 -p tcp -e 1000 -i 508 -a 21 r -t 0.969685 -s 8 -d 3 -p ack -e 40 -i 527 -a 20 + -t 0.969685 -s 3 -d 8 -p tcp -e 1000 -i 542 -a 20 - -t 0.969685 -s 3 -d 8 -p tcp -e 1000 -i 542 -a 20 h -t 0.969685 -s 3 -d 8 -p tcp -e 1000 -i 542 -a 20 - -t 0.970941 -s 8 -d 9 -p tcp -e 1000 -i 519 -a 22 h -t 0.970941 -s 8 -d 9 -p tcp -e 1000 -i 519 -a 22 r -t 0.971736 -s 1 -d 6 -p tcp -e 1000 -i 539 -a 13 + -t 0.971736 -s 6 -d 7 -p tcp -e 1000 -i 539 -a 13 - -t 0.971736 -s 6 -d 7 -p tcp -e 1000 -i 539 -a 13 h -t 0.971736 -s 6 -d 7 -p tcp -e 1000 -i 539 -a 13 r -t 0.971986 -s 9 -d 8 -p ack -e 40 -i 531 -a 20 + -t 0.971987 -s 8 -d 3 -p ack -e 40 -i 531 -a 20 - -t 0.971987 -s 8 -d 3 -p ack -e 40 -i 531 -a 20 h -t 0.971987 -s 8 -d 3 -p ack -e 40 -i 531 -a 20 r -t 0.972536 -s 1 -d 6 -p tcp -e 1000 -i 540 -a 13 + -t 0.972536 -s 6 -d 7 -p tcp -e 1000 -i 540 -a 13 r -t 0.972904 -s 7 -d 6 -p ack -e 40 -i 533 -a 10 + -t 0.972904 -s 6 -d 1 -p ack -e 40 -i 533 -a 10 - -t 0.972904 -s 6 -d 1 -p ack -e 40 -i 533 -a 10 h -t 0.972904 -s 6 -d 1 -p ack -e 40 -i 533 -a 10 r -t 0.973107 -s 4 -d 10 -p ack -e 40 -i 541 -a 20 + -t 0.973107 -s 9 -d 8 -p ack -e 40 -i 541 -a 20 - -t 0.973107 -s 9 -d 8 -p ack -e 40 -i 541 -a 20 h -t 0.973107 -s 9 -d 8 -p ack -e 40 -i 541 -a 20 r -t 0.973485 -s 3 -d 8 -p tcp -e 1000 -i 542 -a 20 + -t 0.973485 -s 8 -d 9 -p tcp -e 1000 -i 542 -a 20 r -t 0.974408 -s 9 -d 10 -p tcp -e 1000 -i 508 -a 21 + -t 0.974408 -s 4 -d 10 -p ack -e 40 -i 543 -a 21 - -t 0.974408 -s 4 -d 10 -p ack -e 40 -i 543 -a 21 h -t 0.974408 -s 4 -d 10 -p ack -e 40 -i 543 -a 21 r -t 0.974941 -s 8 -d 9 -p tcp -e 1000 -i 505 -a 20 + -t 0.974941 -s 9 -d 10 -p tcp -e 1000 -i 505 -a 20 - -t 0.974941 -s 9 -d 10 -p tcp -e 1000 -i 505 -a 20 h -t 0.974941 -s 9 -d 10 -p tcp -e 1000 -i 505 -a 20 r -t 0.975736 -s 6 -d 7 -p tcp -e 1000 -i 529 -a 14 r -t 0.975019 -s 8 -d 3 -p ack -e 40 -i 531 -a 20 + -t 0.975736 -s 7 -d 2 -p tcp -e 1000 -i 529 -a 14 - -t 0.975736 -s 7 -d 2 -p tcp -e 1000 -i 529 -a 14 h -t 0.975736 -s 7 -d 2 -p tcp -e 1000 -i 529 -a 14 r -t 0.975936 -s 6 -d 1 -p ack -e 40 -i 533 -a 10 + -t 0.975936 -s 1 -d 6 -p tcp -e 1000 -i 544 -a 10 - -t 0.975936 -s 1 -d 6 -p tcp -e 1000 -i 544 -a 10 h -t 0.975936 -s 1 -d 6 -p tcp -e 1000 -i 544 -a 10 - -t 0.976275 -s 8 -d 9 -p tcp -e 1000 -i 522 -a 21 h -t 0.976275 -s 8 -d 9 -p tcp -e 1000 -i 522 -a 21 r -t 0.97732 -s 9 -d 8 -p ack -e 40 -i 534 -a 20 + -t 0.97732 -s 8 -d 3 -p ack -e 40 -i 534 -a 20 - -t 0.97732 -s 8 -d 3 -p ack -e 40 -i 534 -a 20 h -t 0.97732 -s 8 -d 3 -p ack -e 40 -i 534 -a 20 r -t 0.97844 -s 4 -d 10 -p ack -e 40 -i 543 -a 21 + -t 0.97844 -s 9 -d 8 -p ack -e 40 -i 543 -a 21 - -t 0.97844 -s 9 -d 8 -p ack -e 40 -i 543 -a 21 h -t 0.97844 -s 9 -d 8 -p ack -e 40 -i 543 -a 21 r -t 0.979736 -s 1 -d 6 -p tcp -e 1000 -i 544 -a 10 - -t 0.979736 -s 6 -d 7 -p tcp -e 1000 -i 540 -a 13 h -t 0.979736 -s 6 -d 7 -p tcp -e 1000 -i 540 -a 13 + -t 0.979736 -s 6 -d 7 -p tcp -e 1000 -i 544 -a 10 r -t 0.979741 -s 9 -d 10 -p tcp -e 1000 -i 505 -a 20 + -t 0.979741 -s 4 -d 10 -p ack -e 40 -i 545 -a 20 - -t 0.979741 -s 4 -d 10 -p ack -e 40 -i 545 -a 20 h -t 0.979741 -s 4 -d 10 -p ack -e 40 -i 545 -a 20 r -t 0.980274 -s 8 -d 9 -p tcp -e 1000 -i 513 -a 21 + -t 0.980275 -s 9 -d 10 -p tcp -e 1000 -i 513 -a 21 - -t 0.980275 -s 9 -d 10 -p tcp -e 1000 -i 513 -a 21 h -t 0.980275 -s 9 -d 10 -p tcp -e 1000 -i 513 -a 21 r -t 0.980352 -s 8 -d 3 -p ack -e 40 -i 534 -a 20 r -t 0.980536 -s 7 -d 2 -p tcp -e 1000 -i 529 -a 14 + -t 0.980536 -s 2 -d 7 -p ack -e 40 -i 546 -a 14 - -t 0.980536 -s 2 -d 7 -p ack -e 40 -i 546 -a 14 h -t 0.980536 -s 2 -d 7 -p ack -e 40 -i 546 -a 14 - -t 0.981608 -s 8 -d 9 -p tcp -e 1000 -i 520 -a 22 h -t 0.981608 -s 8 -d 9 -p tcp -e 1000 -i 520 -a 22 r -t 0.982653 -s 9 -d 8 -p ack -e 40 -i 536 -a 20 + -t 0.982653 -s 8 -d 3 -p ack -e 40 -i 536 -a 20 - -t 0.982653 -s 8 -d 3 -p ack -e 40 -i 536 -a 20 h -t 0.982653 -s 8 -d 3 -p ack -e 40 -i 536 -a 20 r -t 0.983736 -s 6 -d 7 -p tcp -e 1000 -i 530 -a 14 + -t 0.983736 -s 7 -d 2 -p tcp -e 1000 -i 530 -a 14 - -t 0.983736 -s 7 -d 2 -p tcp -e 1000 -i 530 -a 14 h -t 0.983736 -s 7 -d 2 -p tcp -e 1000 -i 530 -a 14 r -t 0.983773 -s 4 -d 10 -p ack -e 40 -i 545 -a 20 + -t 0.983773 -s 9 -d 8 -p ack -e 40 -i 545 -a 20 - -t 0.983773 -s 9 -d 8 -p ack -e 40 -i 545 -a 20 h -t 0.983773 -s 9 -d 8 -p ack -e 40 -i 545 -a 20 r -t 0.984568 -s 2 -d 7 -p ack -e 40 -i 546 -a 14 + -t 0.984568 -s 7 -d 6 -p ack -e 40 -i 546 -a 14 - -t 0.984568 -s 7 -d 6 -p ack -e 40 -i 546 -a 14 h -t 0.984568 -s 7 -d 6 -p ack -e 40 -i 546 -a 14 r -t 0.985075 -s 9 -d 10 -p tcp -e 1000 -i 513 -a 21 + -t 0.985075 -s 4 -d 10 -p ack -e 40 -i 547 -a 21 - -t 0.985075 -s 4 -d 10 -p ack -e 40 -i 547 -a 21 h -t 0.985075 -s 4 -d 10 -p ack -e 40 -i 547 -a 21 r -t 0.985608 -s 8 -d 9 -p tcp -e 1000 -i 511 -a 20 + -t 0.985608 -s 9 -d 10 -p tcp -e 1000 -i 511 -a 20 - -t 0.985608 -s 9 -d 10 -p tcp -e 1000 -i 511 -a 20 h -t 0.985608 -s 9 -d 10 -p tcp -e 1000 -i 511 -a 20 r -t 0.985685 -s 8 -d 3 -p ack -e 40 -i 536 -a 20 - -t 0.986941 -s 8 -d 9 -p tcp -e 1000 -i 525 -a 21 h -t 0.986941 -s 8 -d 9 -p tcp -e 1000 -i 525 -a 21 - -t 0.987736 -s 6 -d 7 -p tcp -e 1000 -i 544 -a 10 h -t 0.987736 -s 6 -d 7 -p tcp -e 1000 -i 544 -a 10 r -t 0.987986 -s 9 -d 8 -p ack -e 40 -i 538 -a 20 + -t 0.987987 -s 8 -d 3 -p ack -e 40 -i 538 -a 20 - -t 0.987987 -s 8 -d 3 -p ack -e 40 -i 538 -a 20 h -t 0.987987 -s 8 -d 3 -p ack -e 40 -i 538 -a 20 r -t 0.988536 -s 7 -d 2 -p tcp -e 1000 -i 530 -a 14 + -t 0.988536 -s 2 -d 7 -p ack -e 40 -i 548 -a 14 - -t 0.988536 -s 2 -d 7 -p ack -e 40 -i 548 -a 14 h -t 0.988536 -s 2 -d 7 -p ack -e 40 -i 548 -a 14 r -t 0.989107 -s 4 -d 10 -p ack -e 40 -i 547 -a 21 + -t 0.989107 -s 9 -d 8 -p ack -e 40 -i 547 -a 21 - -t 0.989107 -s 9 -d 8 -p ack -e 40 -i 547 -a 21 h -t 0.989107 -s 9 -d 8 -p ack -e 40 -i 547 -a 21 r -t 0.990408 -s 9 -d 10 -p tcp -e 1000 -i 511 -a 20 + -t 0.990408 -s 4 -d 10 -p ack -e 40 -i 549 -a 20 - -t 0.990408 -s 4 -d 10 -p ack -e 40 -i 549 -a 20 h -t 0.990408 -s 4 -d 10 -p ack -e 40 -i 549 -a 20 r -t 0.990941 -s 8 -d 9 -p tcp -e 1000 -i 516 -a 21 + -t 0.990941 -s 9 -d 10 -p tcp -e 1000 -i 516 -a 21 - -t 0.990941 -s 9 -d 10 -p tcp -e 1000 -i 516 -a 21 h -t 0.990941 -s 9 -d 10 -p tcp -e 1000 -i 516 -a 21 r -t 0.991736 -s 6 -d 7 -p tcp -e 1000 -i 537 -a 10 r -t 0.991019 -s 8 -d 3 -p ack -e 40 -i 538 -a 20 + -t 0.991736 -s 7 -d 2 -p tcp -e 1000 -i 537 -a 10 - -t 0.991736 -s 7 -d 2 -p tcp -e 1000 -i 537 -a 10 h -t 0.991736 -s 7 -d 2 -p tcp -e 1000 -i 537 -a 10 - -t 0.992275 -s 8 -d 9 -p tcp -e 1000 -i 528 -a 22 h -t 0.992275 -s 8 -d 9 -p tcp -e 1000 -i 528 -a 22 r -t 0.992568 -s 2 -d 7 -p ack -e 40 -i 548 -a 14 + -t 0.992568 -s 7 -d 6 -p ack -e 40 -i 548 -a 14 - -t 0.992568 -s 7 -d 6 -p ack -e 40 -i 548 -a 14 h -t 0.992568 -s 7 -d 6 -p ack -e 40 -i 548 -a 14 r -t 0.99332 -s 9 -d 8 -p ack -e 40 -i 541 -a 20 + -t 0.99332 -s 8 -d 3 -p ack -e 40 -i 541 -a 20 - -t 0.99332 -s 8 -d 3 -p ack -e 40 -i 541 -a 20 h -t 0.99332 -s 8 -d 3 -p ack -e 40 -i 541 -a 20 r -t 0.99444 -s 4 -d 10 -p ack -e 40 -i 549 -a 20 + -t 0.99444 -s 9 -d 8 -p ack -e 40 -i 549 -a 20 - -t 0.99444 -s 9 -d 8 -p ack -e 40 -i 549 -a 20 h -t 0.99444 -s 9 -d 8 -p ack -e 40 -i 549 -a 20 r -t 0.995741 -s 9 -d 10 -p tcp -e 1000 -i 516 -a 21 + -t 0.995741 -s 4 -d 10 -p ack -e 40 -i 550 -a 21 - -t 0.995741 -s 4 -d 10 -p ack -e 40 -i 550 -a 21 h -t 0.995741 -s 4 -d 10 -p ack -e 40 -i 550 -a 21 r -t 0.996274 -s 8 -d 9 -p tcp -e 1000 -i 519 -a 22 + -t 0.996275 -s 9 -d 10 -p tcp -e 1000 -i 519 -a 22 - -t 0.996275 -s 9 -d 10 -p tcp -e 1000 -i 519 -a 22 h -t 0.996275 -s 9 -d 10 -p tcp -e 1000 -i 519 -a 22 r -t 0.996536 -s 7 -d 2 -p tcp -e 1000 -i 537 -a 10 r -t 0.996352 -s 8 -d 3 -p ack -e 40 -i 541 -a 20 + -t 0.996536 -s 2 -d 7 -p ack -e 40 -i 551 -a 10 - -t 0.996536 -s 2 -d 7 -p ack -e 40 -i 551 -a 10 h -t 0.996536 -s 2 -d 7 -p ack -e 40 -i 551 -a 10 - -t 0.997608 -s 8 -d 9 -p tcp -e 1000 -i 532 -a 21 h -t 0.997608 -s 8 -d 9 -p tcp -e 1000 -i 532 -a 21 r -t 0.998653 -s 9 -d 8 -p ack -e 40 -i 543 -a 21 + -t 0.998653 -s 8 -d 3 -p ack -e 40 -i 543 -a 21 - -t 0.998653 -s 8 -d 3 -p ack -e 40 -i 543 -a 21 h -t 0.998653 -s 8 -d 3 -p ack -e 40 -i 543 -a 21 r -t 0.999736 -s 6 -d 7 -p tcp -e 1000 -i 539 -a 13 + -t 0.999736 -s 7 -d 2 -p tcp -e 1000 -i 539 -a 13 - -t 0.999736 -s 7 -d 2 -p tcp -e 1000 -i 539 -a 13 h -t 0.999736 -s 7 -d 2 -p tcp -e 1000 -i 539 -a 13 r -t 0.999773 -s 4 -d 10 -p ack -e 40 -i 550 -a 21 + -t 0.999773 -s 9 -d 8 -p ack -e 40 -i 550 -a 21 - -t 0.999773 -s 9 -d 8 -p ack -e 40 -i 550 -a 21 h -t 0.999773 -s 9 -d 8 -p ack -e 40 -i 550 -a 21 nam-1.15/ex/lantest2.nam0000664000076400007660003523266207276631551014000 0ustar tomhnsnamv -t 0 -e set_rate_ext 200us 1 V -t * -v 1.0a5 -a 0 A -t * -n 1 -p 0 -o 255 -c 15 -a 1 A -t * -h 1 -m 127 -s 8 n -t * -a 4 -s 4 -S UP -v circle -c black n -t * -a 0 -s 0 -S UP -v circle -c black n -t * -a 10 -s 10 -S UP -v circle -c red n -t * -a 9 -s 9 -S UP -v circle -c red n -t * -a 5 -s 5 -S UP -v circle -c black n -t * -a 1 -s 1 -S UP -v circle -c black n -t * -a 11 -s 11 -S UP -v circle -c black n -t * -a 6 -s 6 -S UP -v circle -c black n -t * -a 2 -s 2 -S UP -v circle -c black n -t * -a 7 -s 7 -S UP -v circle -c black n -t * -a 3 -s 3 -S UP -v circle -c black l -t * -s 9 -d 0 -S UP -r 10000000 -D 0.002 -o right l -t * -s 10 -d 7 -S UP -r 10000000 -D 0.002 -o left l -t * -s 11 -d 6 -S UP -r 10000000 -D 0.002 -o left X -t * -n 8 -r 10Mb -D 1ms -o left L -t * -s 8 -d 0 -o up L -t * -s 8 -d 1 -o down L -t * -s 8 -d 2 -o up L -t * -s 8 -d 3 -o down L -t * -s 8 -d 4 -o up L -t * -s 8 -d 5 -o down L -t * -s 8 -d 6 -o up L -t * -s 8 -d 7 -o down + -t 0 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {9.0 10.0 0 ------- null} - -t 0 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {9.0 10.0 0 ------- null} h -t 0 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.0028 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {9.0 10.0 0 ------- null} + -t 0.0028 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {9.0 10.0 0 ------- null} h -t 0.0028 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {9.0 10.0 0 ------- null} + -t 0.004684 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {9.0 10.0 0 ------- null} - -t 0.004684 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {9.0 10.0 0 ------- null} h -t 0.004684 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.007484 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {9.0 10.0 0 ------- null} + -t 0.007484 -s 10 -d 7 -p ack -e 40 -c 0 -i 1 -a 0 -x {10.0 9.0 0 ------- null} - -t 0.007484 -s 10 -d 7 -p ack -e 40 -c 0 -i 1 -a 0 -x {10.0 9.0 0 ------- null} h -t 0.007484 -s 10 -d 7 -p ack -e 40 -c 0 -i 1 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.009516 -s 10 -d 7 -p ack -e 40 -c 0 -i 1 -a 0 -x {10.0 9.0 0 ------- null} + -t 0.009516 -s 7 -d 0 -p ack -e 40 -c 0 -i 1 -a 0 -x {10.0 9.0 0 ------- null} h -t 0.009516 -s 7 -d 8 -p ack -e 40 -c 0 -i 1 -a 0 -x {10.0 9.0 0 ------- null} + -t 0.010632 -s 0 -d 9 -p ack -e 40 -c 0 -i 1 -a 0 -x {10.0 9.0 0 ------- null} - -t 0.010632 -s 0 -d 9 -p ack -e 40 -c 0 -i 1 -a 0 -x {10.0 9.0 0 ------- null} h -t 0.010632 -s 0 -d 9 -p ack -e 40 -c 0 -i 1 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.012664 -s 0 -d 9 -p ack -e 40 -c 0 -i 1 -a 0 -x {10.0 9.0 0 ------- null} + -t 0.012664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {9.0 10.0 1 ------- null} - -t 0.012664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {9.0 10.0 1 ------- null} h -t 0.012664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.012664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {9.0 10.0 2 ------- null} - -t 0.013464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {9.0 10.0 2 ------- null} h -t 0.013464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.015464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {9.0 10.0 1 ------- null} + -t 0.015464 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {9.0 10.0 1 ------- null} h -t 0.015464 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {9.0 10.0 1 ------- null} r -t 0.016264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {9.0 10.0 2 ------- null} + -t 0.016264 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {9.0 10.0 2 ------- null} h -t 0.016264 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {9.0 10.0 2 ------- null} + -t 0.017348 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {9.0 10.0 1 ------- null} - -t 0.017348 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {9.0 10.0 1 ------- null} h -t 0.017348 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.018436 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {9.0 10.0 2 ------- null} - -t 0.018436 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {9.0 10.0 2 ------- null} h -t 0.018436 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.020148 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {9.0 10.0 1 ------- null} + -t 0.020148 -s 10 -d 7 -p ack -e 40 -c 0 -i 4 -a 0 -x {10.0 9.0 1 ------- null} - -t 0.020148 -s 10 -d 7 -p ack -e 40 -c 0 -i 4 -a 0 -x {10.0 9.0 1 ------- null} h -t 0.020148 -s 10 -d 7 -p ack -e 40 -c 0 -i 4 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.021236 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {9.0 10.0 2 ------- null} + -t 0.021236 -s 10 -d 7 -p ack -e 40 -c 0 -i 5 -a 0 -x {10.0 9.0 2 ------- null} - -t 0.021236 -s 10 -d 7 -p ack -e 40 -c 0 -i 5 -a 0 -x {10.0 9.0 2 ------- null} h -t 0.021236 -s 10 -d 7 -p ack -e 40 -c 0 -i 5 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.02218 -s 10 -d 7 -p ack -e 40 -c 0 -i 4 -a 0 -x {10.0 9.0 1 ------- null} + -t 0.02218 -s 7 -d 0 -p ack -e 40 -c 0 -i 4 -a 0 -x {10.0 9.0 1 ------- null} h -t 0.02218 -s 7 -d 8 -p ack -e 40 -c 0 -i 4 -a 0 -x {10.0 9.0 1 ------- null} r -t 0.023268 -s 10 -d 7 -p ack -e 40 -c 0 -i 5 -a 0 -x {10.0 9.0 2 ------- null} + -t 0.023268 -s 7 -d 0 -p ack -e 40 -c 0 -i 5 -a 0 -x {10.0 9.0 2 ------- null} h -t 0.023268 -s 7 -d 8 -p ack -e 40 -c 0 -i 5 -a 0 -x {10.0 9.0 2 ------- null} + -t 0.023296 -s 0 -d 9 -p ack -e 40 -c 0 -i 4 -a 0 -x {10.0 9.0 1 ------- null} - -t 0.023296 -s 0 -d 9 -p ack -e 40 -c 0 -i 4 -a 0 -x {10.0 9.0 1 ------- null} h -t 0.023296 -s 0 -d 9 -p ack -e 40 -c 0 -i 4 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.024384 -s 0 -d 9 -p ack -e 40 -c 0 -i 5 -a 0 -x {10.0 9.0 2 ------- null} - -t 0.024384 -s 0 -d 9 -p ack -e 40 -c 0 -i 5 -a 0 -x {10.0 9.0 2 ------- null} h -t 0.024384 -s 0 -d 9 -p ack -e 40 -c 0 -i 5 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.025328 -s 0 -d 9 -p ack -e 40 -c 0 -i 4 -a 0 -x {10.0 9.0 1 ------- null} + -t 0.025328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {9.0 10.0 3 ------- null} - -t 0.025328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {9.0 10.0 3 ------- null} h -t 0.025328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.025328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {9.0 10.0 4 ------- null} - -t 0.026128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {9.0 10.0 4 ------- null} h -t 0.026128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.026416 -s 0 -d 9 -p ack -e 40 -c 0 -i 5 -a 0 -x {10.0 9.0 2 ------- null} + -t 0.026416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {9.0 10.0 5 ------- null} + -t 0.026416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {9.0 10.0 6 ------- null} - -t 0.026928 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {9.0 10.0 5 ------- null} h -t 0.026928 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {9.0 10.0 -1 ------- null} - -t 0.027728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {9.0 10.0 6 ------- null} h -t 0.027728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.028128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {9.0 10.0 3 ------- null} + -t 0.028128 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {9.0 10.0 3 ------- null} h -t 0.028128 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {9.0 10.0 3 ------- null} r -t 0.028928 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {9.0 10.0 4 ------- null} + -t 0.028928 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {9.0 10.0 4 ------- null} h -t 0.028928 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {9.0 10.0 4 ------- null} r -t 0.029728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {9.0 10.0 5 ------- null} + -t 0.029728 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {9.0 10.0 5 ------- null} h -t 0.029728 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {9.0 10.0 5 ------- null} + -t 0.030012 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {9.0 10.0 3 ------- null} - -t 0.030012 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {9.0 10.0 3 ------- null} h -t 0.030012 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.030528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {9.0 10.0 6 ------- null} + -t 0.030528 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {9.0 10.0 6 ------- null} h -t 0.030528 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {9.0 10.0 6 ------- null} + -t 0.0311 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {9.0 10.0 4 ------- null} - -t 0.0311 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {9.0 10.0 4 ------- null} h -t 0.0311 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.032188 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {9.0 10.0 5 ------- null} - -t 0.032188 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {9.0 10.0 5 ------- null} h -t 0.032188 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.032812 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {9.0 10.0 3 ------- null} + -t 0.032812 -s 10 -d 7 -p ack -e 40 -c 0 -i 10 -a 0 -x {10.0 9.0 3 ------- null} - -t 0.032812 -s 10 -d 7 -p ack -e 40 -c 0 -i 10 -a 0 -x {10.0 9.0 3 ------- null} h -t 0.032812 -s 10 -d 7 -p ack -e 40 -c 0 -i 10 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.033276 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {9.0 10.0 6 ------- null} - -t 0.033276 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {9.0 10.0 6 ------- null} h -t 0.033276 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.0339 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {9.0 10.0 4 ------- null} + -t 0.0339 -s 10 -d 7 -p ack -e 40 -c 0 -i 11 -a 0 -x {10.0 9.0 4 ------- null} - -t 0.0339 -s 10 -d 7 -p ack -e 40 -c 0 -i 11 -a 0 -x {10.0 9.0 4 ------- null} h -t 0.0339 -s 10 -d 7 -p ack -e 40 -c 0 -i 11 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.034844 -s 10 -d 7 -p ack -e 40 -c 0 -i 10 -a 0 -x {10.0 9.0 3 ------- null} + -t 0.034844 -s 7 -d 0 -p ack -e 40 -c 0 -i 10 -a 0 -x {10.0 9.0 3 ------- null} h -t 0.034844 -s 7 -d 8 -p ack -e 40 -c 0 -i 10 -a 0 -x {10.0 9.0 3 ------- null} r -t 0.034988 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {9.0 10.0 5 ------- null} + -t 0.034988 -s 10 -d 7 -p ack -e 40 -c 0 -i 12 -a 0 -x {10.0 9.0 5 ------- null} - -t 0.034988 -s 10 -d 7 -p ack -e 40 -c 0 -i 12 -a 0 -x {10.0 9.0 5 ------- null} h -t 0.034988 -s 10 -d 7 -p ack -e 40 -c 0 -i 12 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.035932 -s 10 -d 7 -p ack -e 40 -c 0 -i 11 -a 0 -x {10.0 9.0 4 ------- null} + -t 0.035932 -s 7 -d 0 -p ack -e 40 -c 0 -i 11 -a 0 -x {10.0 9.0 4 ------- null} h -t 0.035932 -s 7 -d 8 -p ack -e 40 -c 0 -i 11 -a 0 -x {10.0 9.0 4 ------- null} + -t 0.03596 -s 0 -d 9 -p ack -e 40 -c 0 -i 10 -a 0 -x {10.0 9.0 3 ------- null} - -t 0.03596 -s 0 -d 9 -p ack -e 40 -c 0 -i 10 -a 0 -x {10.0 9.0 3 ------- null} h -t 0.03596 -s 0 -d 9 -p ack -e 40 -c 0 -i 10 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.036076 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {9.0 10.0 6 ------- null} + -t 0.036076 -s 10 -d 7 -p ack -e 40 -c 0 -i 13 -a 0 -x {10.0 9.0 6 ------- null} - -t 0.036076 -s 10 -d 7 -p ack -e 40 -c 0 -i 13 -a 0 -x {10.0 9.0 6 ------- null} h -t 0.036076 -s 10 -d 7 -p ack -e 40 -c 0 -i 13 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.03702 -s 10 -d 7 -p ack -e 40 -c 0 -i 12 -a 0 -x {10.0 9.0 5 ------- null} + -t 0.03702 -s 7 -d 0 -p ack -e 40 -c 0 -i 12 -a 0 -x {10.0 9.0 5 ------- null} h -t 0.03702 -s 7 -d 8 -p ack -e 40 -c 0 -i 12 -a 0 -x {10.0 9.0 5 ------- null} + -t 0.037048 -s 0 -d 9 -p ack -e 40 -c 0 -i 11 -a 0 -x {10.0 9.0 4 ------- null} - -t 0.037048 -s 0 -d 9 -p ack -e 40 -c 0 -i 11 -a 0 -x {10.0 9.0 4 ------- null} h -t 0.037048 -s 0 -d 9 -p ack -e 40 -c 0 -i 11 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.037992 -s 0 -d 9 -p ack -e 40 -c 0 -i 10 -a 0 -x {10.0 9.0 3 ------- null} + -t 0.037992 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {9.0 10.0 7 ------- null} - -t 0.037992 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {9.0 10.0 7 ------- null} h -t 0.037992 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.037992 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {9.0 10.0 8 ------- null} r -t 0.038108 -s 10 -d 7 -p ack -e 40 -c 0 -i 13 -a 0 -x {10.0 9.0 6 ------- null} + -t 0.038108 -s 7 -d 0 -p ack -e 40 -c 0 -i 13 -a 0 -x {10.0 9.0 6 ------- null} h -t 0.038108 -s 7 -d 8 -p ack -e 40 -c 0 -i 13 -a 0 -x {10.0 9.0 6 ------- null} + -t 0.038136 -s 0 -d 9 -p ack -e 40 -c 0 -i 12 -a 0 -x {10.0 9.0 5 ------- null} - -t 0.038136 -s 0 -d 9 -p ack -e 40 -c 0 -i 12 -a 0 -x {10.0 9.0 5 ------- null} h -t 0.038136 -s 0 -d 9 -p ack -e 40 -c 0 -i 12 -a 0 -x {10.0 9.0 -1 ------- null} - -t 0.038792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {9.0 10.0 8 ------- null} h -t 0.038792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.03908 -s 0 -d 9 -p ack -e 40 -c 0 -i 11 -a 0 -x {10.0 9.0 4 ------- null} + -t 0.03908 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {9.0 10.0 9 ------- null} + -t 0.03908 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {9.0 10.0 10 ------- null} + -t 0.039224 -s 0 -d 9 -p ack -e 40 -c 0 -i 13 -a 0 -x {10.0 9.0 6 ------- null} - -t 0.039224 -s 0 -d 9 -p ack -e 40 -c 0 -i 13 -a 0 -x {10.0 9.0 6 ------- null} h -t 0.039224 -s 0 -d 9 -p ack -e 40 -c 0 -i 13 -a 0 -x {10.0 9.0 -1 ------- null} - -t 0.039592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {9.0 10.0 9 ------- null} h -t 0.039592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.040168 -s 0 -d 9 -p ack -e 40 -c 0 -i 12 -a 0 -x {10.0 9.0 5 ------- null} + -t 0.040168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {9.0 10.0 11 ------- null} + -t 0.040168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {9.0 10.0 12 ------- null} - -t 0.040392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {9.0 10.0 10 ------- null} h -t 0.040392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.040792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {9.0 10.0 7 ------- null} + -t 0.040792 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {9.0 10.0 7 ------- null} h -t 0.040792 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {9.0 10.0 7 ------- null} - -t 0.041192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {9.0 10.0 11 ------- null} h -t 0.041192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.041256 -s 0 -d 9 -p ack -e 40 -c 0 -i 13 -a 0 -x {10.0 9.0 6 ------- null} + -t 0.041256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {9.0 10.0 13 ------- null} + -t 0.041256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {9.0 10.0 14 ------- null} r -t 0.041592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {9.0 10.0 8 ------- null} + -t 0.041592 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {9.0 10.0 8 ------- null} h -t 0.041592 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {9.0 10.0 8 ------- null} - -t 0.041992 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {9.0 10.0 12 ------- null} h -t 0.041992 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.042392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {9.0 10.0 9 ------- null} + -t 0.042392 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {9.0 10.0 9 ------- null} h -t 0.042392 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {9.0 10.0 9 ------- null} + -t 0.042676 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {9.0 10.0 7 ------- null} - -t 0.042676 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {9.0 10.0 7 ------- null} h -t 0.042676 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {9.0 10.0 -1 ------- null} - -t 0.042792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {9.0 10.0 13 ------- null} h -t 0.042792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.043192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {9.0 10.0 10 ------- null} + -t 0.043192 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {9.0 10.0 10 ------- null} h -t 0.043192 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {9.0 10.0 10 ------- null} - -t 0.043592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {9.0 10.0 14 ------- null} h -t 0.043592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.043764 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {9.0 10.0 8 ------- null} - -t 0.043764 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {9.0 10.0 8 ------- null} h -t 0.043764 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.043992 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {9.0 10.0 11 ------- null} + -t 0.043992 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {9.0 10.0 11 ------- null} h -t 0.043992 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {9.0 10.0 11 ------- null} r -t 0.044792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {9.0 10.0 12 ------- null} + -t 0.044792 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {9.0 10.0 12 ------- null} h -t 0.044792 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {9.0 10.0 12 ------- null} + -t 0.044852 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {9.0 10.0 9 ------- null} - -t 0.044852 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {9.0 10.0 9 ------- null} h -t 0.044852 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.045476 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {9.0 10.0 7 ------- null} + -t 0.045476 -s 10 -d 7 -p ack -e 40 -c 0 -i 22 -a 0 -x {10.0 9.0 7 ------- null} - -t 0.045476 -s 10 -d 7 -p ack -e 40 -c 0 -i 22 -a 0 -x {10.0 9.0 7 ------- null} h -t 0.045476 -s 10 -d 7 -p ack -e 40 -c 0 -i 22 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.045592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {9.0 10.0 13 ------- null} + -t 0.045592 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {9.0 10.0 13 ------- null} h -t 0.045592 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {9.0 10.0 13 ------- null} + -t 0.04594 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {9.0 10.0 10 ------- null} - -t 0.04594 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {9.0 10.0 10 ------- null} h -t 0.04594 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.046392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {9.0 10.0 14 ------- null} + -t 0.046392 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {9.0 10.0 14 ------- null} h -t 0.046392 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {9.0 10.0 14 ------- null} r -t 0.046564 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {9.0 10.0 8 ------- null} + -t 0.046564 -s 10 -d 7 -p ack -e 40 -c 0 -i 23 -a 0 -x {10.0 9.0 8 ------- null} - -t 0.046564 -s 10 -d 7 -p ack -e 40 -c 0 -i 23 -a 0 -x {10.0 9.0 8 ------- null} h -t 0.046564 -s 10 -d 7 -p ack -e 40 -c 0 -i 23 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.047028 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {9.0 10.0 11 ------- null} - -t 0.047028 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {9.0 10.0 11 ------- null} h -t 0.047028 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.047508 -s 10 -d 7 -p ack -e 40 -c 0 -i 22 -a 0 -x {10.0 9.0 7 ------- null} + -t 0.047508 -s 7 -d 0 -p ack -e 40 -c 0 -i 22 -a 0 -x {10.0 9.0 7 ------- null} h -t 0.047508 -s 7 -d 8 -p ack -e 40 -c 0 -i 22 -a 0 -x {10.0 9.0 7 ------- null} r -t 0.047652 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {9.0 10.0 9 ------- null} + -t 0.047652 -s 10 -d 7 -p ack -e 40 -c 0 -i 24 -a 0 -x {10.0 9.0 9 ------- null} - -t 0.047652 -s 10 -d 7 -p ack -e 40 -c 0 -i 24 -a 0 -x {10.0 9.0 9 ------- null} h -t 0.047652 -s 10 -d 7 -p ack -e 40 -c 0 -i 24 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.048116 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {9.0 10.0 12 ------- null} - -t 0.048116 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {9.0 10.0 12 ------- null} h -t 0.048116 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.048596 -s 10 -d 7 -p ack -e 40 -c 0 -i 23 -a 0 -x {10.0 9.0 8 ------- null} + -t 0.048596 -s 7 -d 0 -p ack -e 40 -c 0 -i 23 -a 0 -x {10.0 9.0 8 ------- null} h -t 0.048596 -s 7 -d 8 -p ack -e 40 -c 0 -i 23 -a 0 -x {10.0 9.0 8 ------- null} r -t 0.04874 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {9.0 10.0 10 ------- null} + -t 0.04874 -s 10 -d 7 -p ack -e 40 -c 0 -i 25 -a 0 -x {10.0 9.0 10 ------- null} - -t 0.04874 -s 10 -d 7 -p ack -e 40 -c 0 -i 25 -a 0 -x {10.0 9.0 10 ------- null} h -t 0.04874 -s 10 -d 7 -p ack -e 40 -c 0 -i 25 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.049204 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {9.0 10.0 13 ------- null} - -t 0.049204 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {9.0 10.0 13 ------- null} h -t 0.049204 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.049412 -s 0 -d 9 -p ack -e 40 -c 0 -i 22 -a 0 -x {10.0 9.0 7 ------- null} - -t 0.049412 -s 0 -d 9 -p ack -e 40 -c 0 -i 22 -a 0 -x {10.0 9.0 7 ------- null} h -t 0.049412 -s 0 -d 9 -p ack -e 40 -c 0 -i 22 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.049684 -s 10 -d 7 -p ack -e 40 -c 0 -i 24 -a 0 -x {10.0 9.0 9 ------- null} + -t 0.049684 -s 7 -d 0 -p ack -e 40 -c 0 -i 24 -a 0 -x {10.0 9.0 9 ------- null} h -t 0.049684 -s 7 -d 8 -p ack -e 40 -c 0 -i 24 -a 0 -x {10.0 9.0 9 ------- null} r -t 0.049828 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {9.0 10.0 11 ------- null} + -t 0.049828 -s 10 -d 7 -p ack -e 40 -c 0 -i 26 -a 0 -x {10.0 9.0 11 ------- null} - -t 0.049828 -s 10 -d 7 -p ack -e 40 -c 0 -i 26 -a 0 -x {10.0 9.0 11 ------- null} h -t 0.049828 -s 10 -d 7 -p ack -e 40 -c 0 -i 26 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.050292 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {9.0 10.0 14 ------- null} - -t 0.050292 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {9.0 10.0 14 ------- null} h -t 0.050292 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.050516 -s 0 -d 9 -p ack -e 40 -c 0 -i 23 -a 0 -x {10.0 9.0 8 ------- null} - -t 0.050516 -s 0 -d 9 -p ack -e 40 -c 0 -i 23 -a 0 -x {10.0 9.0 8 ------- null} h -t 0.050516 -s 0 -d 9 -p ack -e 40 -c 0 -i 23 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.050772 -s 10 -d 7 -p ack -e 40 -c 0 -i 25 -a 0 -x {10.0 9.0 10 ------- null} + -t 0.050772 -s 7 -d 0 -p ack -e 40 -c 0 -i 25 -a 0 -x {10.0 9.0 10 ------- null} h -t 0.050772 -s 7 -d 8 -p ack -e 40 -c 0 -i 25 -a 0 -x {10.0 9.0 10 ------- null} + -t 0.050836 -s 0 -d 9 -p ack -e 40 -c 0 -i 24 -a 0 -x {10.0 9.0 9 ------- null} - -t 0.050836 -s 0 -d 9 -p ack -e 40 -c 0 -i 24 -a 0 -x {10.0 9.0 9 ------- null} h -t 0.050836 -s 0 -d 9 -p ack -e 40 -c 0 -i 24 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.050916 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {9.0 10.0 12 ------- null} + -t 0.050916 -s 10 -d 7 -p ack -e 40 -c 0 -i 27 -a 0 -x {10.0 9.0 12 ------- null} - -t 0.050916 -s 10 -d 7 -p ack -e 40 -c 0 -i 27 -a 0 -x {10.0 9.0 12 ------- null} h -t 0.050916 -s 10 -d 7 -p ack -e 40 -c 0 -i 27 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.051444 -s 0 -d 9 -p ack -e 40 -c 0 -i 22 -a 0 -x {10.0 9.0 7 ------- null} + -t 0.051444 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 28 -a 0 -x {9.0 10.0 15 ------- null} - -t 0.051444 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 28 -a 0 -x {9.0 10.0 15 ------- null} h -t 0.051444 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 28 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.051444 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 29 -a 0 -x {9.0 10.0 16 ------- null} r -t 0.05186 -s 10 -d 7 -p ack -e 40 -c 0 -i 26 -a 0 -x {10.0 9.0 11 ------- null} + -t 0.05186 -s 7 -d 0 -p ack -e 40 -c 0 -i 26 -a 0 -x {10.0 9.0 11 ------- null} h -t 0.05186 -s 7 -d 8 -p ack -e 40 -c 0 -i 26 -a 0 -x {10.0 9.0 11 ------- null} + -t 0.051888 -s 0 -d 9 -p ack -e 40 -c 0 -i 25 -a 0 -x {10.0 9.0 10 ------- null} - -t 0.051888 -s 0 -d 9 -p ack -e 40 -c 0 -i 25 -a 0 -x {10.0 9.0 10 ------- null} h -t 0.051888 -s 0 -d 9 -p ack -e 40 -c 0 -i 25 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.052004 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {9.0 10.0 13 ------- null} + -t 0.052004 -s 10 -d 7 -p ack -e 40 -c 0 -i 30 -a 0 -x {10.0 9.0 13 ------- null} - -t 0.052004 -s 10 -d 7 -p ack -e 40 -c 0 -i 30 -a 0 -x {10.0 9.0 13 ------- null} h -t 0.052004 -s 10 -d 7 -p ack -e 40 -c 0 -i 30 -a 0 -x {10.0 9.0 -1 ------- null} - -t 0.052244 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 29 -a 0 -x {9.0 10.0 16 ------- null} h -t 0.052244 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 29 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.052548 -s 0 -d 9 -p ack -e 40 -c 0 -i 23 -a 0 -x {10.0 9.0 8 ------- null} + -t 0.052548 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {9.0 10.0 17 ------- null} + -t 0.052548 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {9.0 10.0 18 ------- null} r -t 0.052868 -s 0 -d 9 -p ack -e 40 -c 0 -i 24 -a 0 -x {10.0 9.0 9 ------- null} + -t 0.052868 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {9.0 10.0 19 ------- null} + -t 0.052868 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {9.0 10.0 20 ------- null} r -t 0.052948 -s 10 -d 7 -p ack -e 40 -c 0 -i 27 -a 0 -x {10.0 9.0 12 ------- null} + -t 0.052948 -s 7 -d 0 -p ack -e 40 -c 0 -i 27 -a 0 -x {10.0 9.0 12 ------- null} h -t 0.052948 -s 7 -d 8 -p ack -e 40 -c 0 -i 27 -a 0 -x {10.0 9.0 12 ------- null} + -t 0.052976 -s 0 -d 9 -p ack -e 40 -c 0 -i 26 -a 0 -x {10.0 9.0 11 ------- null} - -t 0.052976 -s 0 -d 9 -p ack -e 40 -c 0 -i 26 -a 0 -x {10.0 9.0 11 ------- null} h -t 0.052976 -s 0 -d 9 -p ack -e 40 -c 0 -i 26 -a 0 -x {10.0 9.0 -1 ------- null} - -t 0.053044 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {9.0 10.0 17 ------- null} h -t 0.053044 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.053092 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {9.0 10.0 14 ------- null} + -t 0.053092 -s 10 -d 7 -p ack -e 40 -c 0 -i 35 -a 0 -x {10.0 9.0 14 ------- null} - -t 0.053092 -s 10 -d 7 -p ack -e 40 -c 0 -i 35 -a 0 -x {10.0 9.0 14 ------- null} h -t 0.053092 -s 10 -d 7 -p ack -e 40 -c 0 -i 35 -a 0 -x {10.0 9.0 -1 ------- null} - -t 0.053844 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {9.0 10.0 18 ------- null} h -t 0.053844 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.05392 -s 0 -d 9 -p ack -e 40 -c 0 -i 25 -a 0 -x {10.0 9.0 10 ------- null} + -t 0.05392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {9.0 10.0 21 ------- null} + -t 0.05392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {9.0 10.0 22 ------- null} r -t 0.054036 -s 10 -d 7 -p ack -e 40 -c 0 -i 30 -a 0 -x {10.0 9.0 13 ------- null} + -t 0.054036 -s 7 -d 0 -p ack -e 40 -c 0 -i 30 -a 0 -x {10.0 9.0 13 ------- null} h -t 0.054036 -s 7 -d 8 -p ack -e 40 -c 0 -i 30 -a 0 -x {10.0 9.0 13 ------- null} + -t 0.054064 -s 0 -d 9 -p ack -e 40 -c 0 -i 27 -a 0 -x {10.0 9.0 12 ------- null} - -t 0.054064 -s 0 -d 9 -p ack -e 40 -c 0 -i 27 -a 0 -x {10.0 9.0 12 ------- null} h -t 0.054064 -s 0 -d 9 -p ack -e 40 -c 0 -i 27 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.054244 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 28 -a 0 -x {9.0 10.0 15 ------- null} + -t 0.054244 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 28 -a 0 -x {9.0 10.0 15 ------- null} h -t 0.054244 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 28 -a 0 -x {9.0 10.0 15 ------- null} - -t 0.054644 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {9.0 10.0 19 ------- null} h -t 0.054644 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.055008 -s 0 -d 9 -p ack -e 40 -c 0 -i 26 -a 0 -x {10.0 9.0 11 ------- null} + -t 0.055008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {9.0 10.0 23 ------- null} + -t 0.055008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {9.0 10.0 24 ------- null} r -t 0.055044 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 29 -a 0 -x {9.0 10.0 16 ------- null} + -t 0.055044 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 29 -a 0 -x {9.0 10.0 16 ------- null} h -t 0.055044 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 29 -a 0 -x {9.0 10.0 16 ------- null} r -t 0.055124 -s 10 -d 7 -p ack -e 40 -c 0 -i 35 -a 0 -x {10.0 9.0 14 ------- null} + -t 0.055124 -s 7 -d 0 -p ack -e 40 -c 0 -i 35 -a 0 -x {10.0 9.0 14 ------- null} h -t 0.055124 -s 7 -d 8 -p ack -e 40 -c 0 -i 35 -a 0 -x {10.0 9.0 14 ------- null} + -t 0.055152 -s 0 -d 9 -p ack -e 40 -c 0 -i 30 -a 0 -x {10.0 9.0 13 ------- null} - -t 0.055152 -s 0 -d 9 -p ack -e 40 -c 0 -i 30 -a 0 -x {10.0 9.0 13 ------- null} h -t 0.055152 -s 0 -d 9 -p ack -e 40 -c 0 -i 30 -a 0 -x {10.0 9.0 -1 ------- null} - -t 0.055444 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {9.0 10.0 20 ------- null} h -t 0.055444 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.055844 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {9.0 10.0 17 ------- null} + -t 0.055844 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {9.0 10.0 17 ------- null} h -t 0.055844 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {9.0 10.0 17 ------- null} r -t 0.056096 -s 0 -d 9 -p ack -e 40 -c 0 -i 27 -a 0 -x {10.0 9.0 12 ------- null} + -t 0.056096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {9.0 10.0 25 ------- null} + -t 0.056096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {9.0 10.0 26 ------- null} + -t 0.056128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 28 -a 0 -x {9.0 10.0 15 ------- null} - -t 0.056128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 28 -a 0 -x {9.0 10.0 15 ------- null} h -t 0.056128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 28 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.05624 -s 0 -d 9 -p ack -e 40 -c 0 -i 35 -a 0 -x {10.0 9.0 14 ------- null} - -t 0.05624 -s 0 -d 9 -p ack -e 40 -c 0 -i 35 -a 0 -x {10.0 9.0 14 ------- null} h -t 0.05624 -s 0 -d 9 -p ack -e 40 -c 0 -i 35 -a 0 -x {10.0 9.0 -1 ------- null} - -t 0.056244 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {9.0 10.0 21 ------- null} h -t 0.056244 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.056644 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {9.0 10.0 18 ------- null} + -t 0.056644 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {9.0 10.0 18 ------- null} h -t 0.056644 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {9.0 10.0 18 ------- null} - -t 0.057044 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {9.0 10.0 22 ------- null} h -t 0.057044 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.057184 -s 0 -d 9 -p ack -e 40 -c 0 -i 30 -a 0 -x {10.0 9.0 13 ------- null} + -t 0.057184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {9.0 10.0 27 ------- null} + -t 0.057184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {9.0 10.0 28 ------- null} + -t 0.057216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 29 -a 0 -x {9.0 10.0 16 ------- null} - -t 0.057216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 29 -a 0 -x {9.0 10.0 16 ------- null} h -t 0.057216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 29 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.057444 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {9.0 10.0 19 ------- null} + -t 0.057444 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {9.0 10.0 19 ------- null} h -t 0.057444 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {9.0 10.0 19 ------- null} - -t 0.057844 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {9.0 10.0 23 ------- null} h -t 0.057844 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.058244 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {9.0 10.0 20 ------- null} + -t 0.058244 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {9.0 10.0 20 ------- null} h -t 0.058244 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {9.0 10.0 20 ------- null} r -t 0.058272 -s 0 -d 9 -p ack -e 40 -c 0 -i 35 -a 0 -x {10.0 9.0 14 ------- null} + -t 0.058272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {9.0 10.0 29 ------- null} + -t 0.058304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {9.0 10.0 17 ------- null} - -t 0.058304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {9.0 10.0 17 ------- null} h -t 0.058304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {9.0 10.0 -1 ------- null} - -t 0.058644 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {9.0 10.0 24 ------- null} h -t 0.058644 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.058928 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 28 -a 0 -x {9.0 10.0 15 ------- null} + -t 0.058928 -s 10 -d 7 -p ack -e 40 -c 0 -i 45 -a 0 -x {10.0 9.0 15 ------- null} - -t 0.058928 -s 10 -d 7 -p ack -e 40 -c 0 -i 45 -a 0 -x {10.0 9.0 15 ------- null} h -t 0.058928 -s 10 -d 7 -p ack -e 40 -c 0 -i 45 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.059044 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {9.0 10.0 21 ------- null} + -t 0.059044 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {9.0 10.0 21 ------- null} h -t 0.059044 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {9.0 10.0 21 ------- null} + -t 0.059392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {9.0 10.0 18 ------- null} - -t 0.059392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {9.0 10.0 18 ------- null} h -t 0.059392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {9.0 10.0 -1 ------- null} - -t 0.059444 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {9.0 10.0 25 ------- null} h -t 0.059444 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.059844 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {9.0 10.0 22 ------- null} + -t 0.059844 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {9.0 10.0 22 ------- null} h -t 0.059844 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {9.0 10.0 22 ------- null} r -t 0.060016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 29 -a 0 -x {9.0 10.0 16 ------- null} + -t 0.060016 -s 10 -d 7 -p ack -e 40 -c 0 -i 46 -a 0 -x {10.0 9.0 16 ------- null} - -t 0.060016 -s 10 -d 7 -p ack -e 40 -c 0 -i 46 -a 0 -x {10.0 9.0 16 ------- null} h -t 0.060016 -s 10 -d 7 -p ack -e 40 -c 0 -i 46 -a 0 -x {10.0 9.0 -1 ------- null} - -t 0.060244 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {9.0 10.0 26 ------- null} h -t 0.060244 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.06048 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {9.0 10.0 19 ------- null} - -t 0.06048 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {9.0 10.0 19 ------- null} h -t 0.06048 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.060644 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {9.0 10.0 23 ------- null} + -t 0.060644 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {9.0 10.0 23 ------- null} h -t 0.060644 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {9.0 10.0 23 ------- null} r -t 0.06096 -s 10 -d 7 -p ack -e 40 -c 0 -i 45 -a 0 -x {10.0 9.0 15 ------- null} + -t 0.06096 -s 7 -d 0 -p ack -e 40 -c 0 -i 45 -a 0 -x {10.0 9.0 15 ------- null} h -t 0.06096 -s 7 -d 8 -p ack -e 40 -c 0 -i 45 -a 0 -x {10.0 9.0 15 ------- null} - -t 0.061044 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {9.0 10.0 27 ------- null} h -t 0.061044 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.061104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {9.0 10.0 17 ------- null} + -t 0.061104 -s 10 -d 7 -p ack -e 40 -c 0 -i 47 -a 0 -x {10.0 9.0 17 ------- null} - -t 0.061104 -s 10 -d 7 -p ack -e 40 -c 0 -i 47 -a 0 -x {10.0 9.0 17 ------- null} h -t 0.061104 -s 10 -d 7 -p ack -e 40 -c 0 -i 47 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.061444 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {9.0 10.0 24 ------- null} + -t 0.061444 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {9.0 10.0 24 ------- null} h -t 0.061444 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {9.0 10.0 24 ------- null} + -t 0.061568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {9.0 10.0 20 ------- null} - -t 0.061568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {9.0 10.0 20 ------- null} h -t 0.061568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {9.0 10.0 -1 ------- null} - -t 0.061844 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {9.0 10.0 28 ------- null} h -t 0.061844 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.062048 -s 10 -d 7 -p ack -e 40 -c 0 -i 46 -a 0 -x {10.0 9.0 16 ------- null} + -t 0.062048 -s 7 -d 0 -p ack -e 40 -c 0 -i 46 -a 0 -x {10.0 9.0 16 ------- null} h -t 0.062048 -s 7 -d 8 -p ack -e 40 -c 0 -i 46 -a 0 -x {10.0 9.0 16 ------- null} r -t 0.062192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {9.0 10.0 18 ------- null} + -t 0.062192 -s 10 -d 7 -p ack -e 40 -c 0 -i 48 -a 0 -x {10.0 9.0 18 ------- null} - -t 0.062192 -s 10 -d 7 -p ack -e 40 -c 0 -i 48 -a 0 -x {10.0 9.0 18 ------- null} h -t 0.062192 -s 10 -d 7 -p ack -e 40 -c 0 -i 48 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.062244 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {9.0 10.0 25 ------- null} + -t 0.062244 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {9.0 10.0 25 ------- null} h -t 0.062244 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {9.0 10.0 25 ------- null} - -t 0.062644 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {9.0 10.0 29 ------- null} h -t 0.062644 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.062656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {9.0 10.0 21 ------- null} - -t 0.062656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {9.0 10.0 21 ------- null} h -t 0.062656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.062752 -s 0 -d 9 -p ack -e 40 -c 0 -i 45 -a 0 -x {10.0 9.0 15 ------- null} - -t 0.062752 -s 0 -d 9 -p ack -e 40 -c 0 -i 45 -a 0 -x {10.0 9.0 15 ------- null} h -t 0.062752 -s 0 -d 9 -p ack -e 40 -c 0 -i 45 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.063044 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {9.0 10.0 26 ------- null} + -t 0.063044 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {9.0 10.0 26 ------- null} h -t 0.063044 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {9.0 10.0 26 ------- null} r -t 0.063136 -s 10 -d 7 -p ack -e 40 -c 0 -i 47 -a 0 -x {10.0 9.0 17 ------- null} + -t 0.063136 -s 7 -d 0 -p ack -e 40 -c 0 -i 47 -a 0 -x {10.0 9.0 17 ------- null} h -t 0.063136 -s 7 -d 8 -p ack -e 40 -c 0 -i 47 -a 0 -x {10.0 9.0 17 ------- null} r -t 0.06328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {9.0 10.0 19 ------- null} + -t 0.06328 -s 10 -d 7 -p ack -e 40 -c 0 -i 49 -a 0 -x {10.0 9.0 19 ------- null} - -t 0.06328 -s 10 -d 7 -p ack -e 40 -c 0 -i 49 -a 0 -x {10.0 9.0 19 ------- null} h -t 0.06328 -s 10 -d 7 -p ack -e 40 -c 0 -i 49 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.063744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {9.0 10.0 22 ------- null} - -t 0.063744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {9.0 10.0 22 ------- null} h -t 0.063744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.063844 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {9.0 10.0 27 ------- null} + -t 0.063844 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {9.0 10.0 27 ------- null} h -t 0.063844 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {9.0 10.0 27 ------- null} + -t 0.063936 -s 0 -d 9 -p ack -e 40 -c 0 -i 46 -a 0 -x {10.0 9.0 16 ------- null} - -t 0.063936 -s 0 -d 9 -p ack -e 40 -c 0 -i 46 -a 0 -x {10.0 9.0 16 ------- null} h -t 0.063936 -s 0 -d 9 -p ack -e 40 -c 0 -i 46 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.064224 -s 10 -d 7 -p ack -e 40 -c 0 -i 48 -a 0 -x {10.0 9.0 18 ------- null} + -t 0.064224 -s 7 -d 0 -p ack -e 40 -c 0 -i 48 -a 0 -x {10.0 9.0 18 ------- null} h -t 0.064224 -s 7 -d 8 -p ack -e 40 -c 0 -i 48 -a 0 -x {10.0 9.0 18 ------- null} r -t 0.064368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {9.0 10.0 20 ------- null} + -t 0.064368 -s 10 -d 7 -p ack -e 40 -c 0 -i 50 -a 0 -x {10.0 9.0 20 ------- null} - -t 0.064368 -s 10 -d 7 -p ack -e 40 -c 0 -i 50 -a 0 -x {10.0 9.0 20 ------- null} h -t 0.064368 -s 10 -d 7 -p ack -e 40 -c 0 -i 50 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.064644 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {9.0 10.0 28 ------- null} + -t 0.064644 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {9.0 10.0 28 ------- null} h -t 0.064644 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {9.0 10.0 28 ------- null} r -t 0.064784 -s 0 -d 9 -p ack -e 40 -c 0 -i 45 -a 0 -x {10.0 9.0 15 ------- null} + -t 0.064784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 51 -a 0 -x {9.0 10.0 30 ------- null} - -t 0.064784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 51 -a 0 -x {9.0 10.0 30 ------- null} h -t 0.064784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 51 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.064832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {9.0 10.0 23 ------- null} - -t 0.064832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {9.0 10.0 23 ------- null} h -t 0.064832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.065024 -s 0 -d 9 -p ack -e 40 -c 0 -i 47 -a 0 -x {10.0 9.0 17 ------- null} - -t 0.065024 -s 0 -d 9 -p ack -e 40 -c 0 -i 47 -a 0 -x {10.0 9.0 17 ------- null} h -t 0.065024 -s 0 -d 9 -p ack -e 40 -c 0 -i 47 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.065312 -s 10 -d 7 -p ack -e 40 -c 0 -i 49 -a 0 -x {10.0 9.0 19 ------- null} + -t 0.065312 -s 7 -d 0 -p ack -e 40 -c 0 -i 49 -a 0 -x {10.0 9.0 19 ------- null} h -t 0.065312 -s 7 -d 8 -p ack -e 40 -c 0 -i 49 -a 0 -x {10.0 9.0 19 ------- null} r -t 0.065444 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {9.0 10.0 29 ------- null} + -t 0.065444 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {9.0 10.0 29 ------- null} h -t 0.065444 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {9.0 10.0 29 ------- null} r -t 0.065456 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {9.0 10.0 21 ------- null} + -t 0.065456 -s 10 -d 7 -p ack -e 40 -c 0 -i 52 -a 0 -x {10.0 9.0 21 ------- null} - -t 0.065456 -s 10 -d 7 -p ack -e 40 -c 0 -i 52 -a 0 -x {10.0 9.0 21 ------- null} h -t 0.065456 -s 10 -d 7 -p ack -e 40 -c 0 -i 52 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.06592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {9.0 10.0 24 ------- null} - -t 0.06592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {9.0 10.0 24 ------- null} h -t 0.06592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.065968 -s 0 -d 9 -p ack -e 40 -c 0 -i 46 -a 0 -x {10.0 9.0 16 ------- null} + -t 0.065968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 53 -a 0 -x {9.0 10.0 31 ------- null} - -t 0.065968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 53 -a 0 -x {9.0 10.0 31 ------- null} h -t 0.065968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 53 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.066208 -s 0 -d 9 -p ack -e 40 -c 0 -i 48 -a 0 -x {10.0 9.0 18 ------- null} - -t 0.066208 -s 0 -d 9 -p ack -e 40 -c 0 -i 48 -a 0 -x {10.0 9.0 18 ------- null} h -t 0.066208 -s 0 -d 9 -p ack -e 40 -c 0 -i 48 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.0664 -s 10 -d 7 -p ack -e 40 -c 0 -i 50 -a 0 -x {10.0 9.0 20 ------- null} + -t 0.0664 -s 7 -d 0 -p ack -e 40 -c 0 -i 50 -a 0 -x {10.0 9.0 20 ------- null} h -t 0.0664 -s 7 -d 8 -p ack -e 40 -c 0 -i 50 -a 0 -x {10.0 9.0 20 ------- null} r -t 0.066544 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {9.0 10.0 22 ------- null} + -t 0.066544 -s 10 -d 7 -p ack -e 40 -c 0 -i 54 -a 0 -x {10.0 9.0 22 ------- null} - -t 0.066544 -s 10 -d 7 -p ack -e 40 -c 0 -i 54 -a 0 -x {10.0 9.0 22 ------- null} h -t 0.066544 -s 10 -d 7 -p ack -e 40 -c 0 -i 54 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.067056 -s 0 -d 9 -p ack -e 40 -c 0 -i 47 -a 0 -x {10.0 9.0 17 ------- null} + -t 0.067056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 55 -a 0 -x {9.0 10.0 32 ------- null} - -t 0.067056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 55 -a 0 -x {9.0 10.0 32 ------- null} h -t 0.067056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 55 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.067088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {9.0 10.0 25 ------- null} - -t 0.067088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {9.0 10.0 25 ------- null} h -t 0.067088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.06736 -s 0 -d 9 -p ack -e 40 -c 0 -i 49 -a 0 -x {10.0 9.0 19 ------- null} - -t 0.06736 -s 0 -d 9 -p ack -e 40 -c 0 -i 49 -a 0 -x {10.0 9.0 19 ------- null} h -t 0.06736 -s 0 -d 9 -p ack -e 40 -c 0 -i 49 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.067488 -s 10 -d 7 -p ack -e 40 -c 0 -i 52 -a 0 -x {10.0 9.0 21 ------- null} + -t 0.067488 -s 7 -d 0 -p ack -e 40 -c 0 -i 52 -a 0 -x {10.0 9.0 21 ------- null} h -t 0.067488 -s 7 -d 8 -p ack -e 40 -c 0 -i 52 -a 0 -x {10.0 9.0 21 ------- null} r -t 0.067584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 51 -a 0 -x {9.0 10.0 30 ------- null} + -t 0.067584 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 51 -a 0 -x {9.0 10.0 30 ------- null} h -t 0.067584 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 51 -a 0 -x {9.0 10.0 30 ------- null} r -t 0.067632 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {9.0 10.0 23 ------- null} + -t 0.067632 -s 10 -d 7 -p ack -e 40 -c 0 -i 56 -a 0 -x {10.0 9.0 23 ------- null} - -t 0.067632 -s 10 -d 7 -p ack -e 40 -c 0 -i 56 -a 0 -x {10.0 9.0 23 ------- null} h -t 0.067632 -s 10 -d 7 -p ack -e 40 -c 0 -i 56 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.06824 -s 0 -d 9 -p ack -e 40 -c 0 -i 48 -a 0 -x {10.0 9.0 18 ------- null} + -t 0.06824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 57 -a 0 -x {9.0 10.0 33 ------- null} - -t 0.06824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 57 -a 0 -x {9.0 10.0 33 ------- null} h -t 0.06824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 57 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.06832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {9.0 10.0 26 ------- null} - -t 0.06832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {9.0 10.0 26 ------- null} h -t 0.06832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.068464 -s 0 -d 9 -p ack -e 40 -c 0 -i 50 -a 0 -x {10.0 9.0 20 ------- null} - -t 0.068464 -s 0 -d 9 -p ack -e 40 -c 0 -i 50 -a 0 -x {10.0 9.0 20 ------- null} h -t 0.068464 -s 0 -d 9 -p ack -e 40 -c 0 -i 50 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.068576 -s 10 -d 7 -p ack -e 40 -c 0 -i 54 -a 0 -x {10.0 9.0 22 ------- null} + -t 0.068576 -s 7 -d 0 -p ack -e 40 -c 0 -i 54 -a 0 -x {10.0 9.0 22 ------- null} h -t 0.068576 -s 7 -d 8 -p ack -e 40 -c 0 -i 54 -a 0 -x {10.0 9.0 22 ------- null} r -t 0.06872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {9.0 10.0 24 ------- null} + -t 0.06872 -s 10 -d 7 -p ack -e 40 -c 0 -i 58 -a 0 -x {10.0 9.0 24 ------- null} - -t 0.06872 -s 10 -d 7 -p ack -e 40 -c 0 -i 58 -a 0 -x {10.0 9.0 24 ------- null} h -t 0.06872 -s 10 -d 7 -p ack -e 40 -c 0 -i 58 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.068768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 53 -a 0 -x {9.0 10.0 31 ------- null} + -t 0.068768 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 53 -a 0 -x {9.0 10.0 31 ------- null} h -t 0.068768 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 53 -a 0 -x {9.0 10.0 31 ------- null} r -t 0.069392 -s 0 -d 9 -p ack -e 40 -c 0 -i 49 -a 0 -x {10.0 9.0 19 ------- null} + -t 0.069392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 59 -a 0 -x {9.0 10.0 34 ------- null} - -t 0.069392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 59 -a 0 -x {9.0 10.0 34 ------- null} h -t 0.069392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 59 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.069408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {9.0 10.0 27 ------- null} - -t 0.069408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {9.0 10.0 27 ------- null} h -t 0.069408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.069664 -s 10 -d 7 -p ack -e 40 -c 0 -i 56 -a 0 -x {10.0 9.0 23 ------- null} + -t 0.069664 -s 7 -d 0 -p ack -e 40 -c 0 -i 56 -a 0 -x {10.0 9.0 23 ------- null} h -t 0.069664 -s 7 -d 8 -p ack -e 40 -c 0 -i 56 -a 0 -x {10.0 9.0 23 ------- null} + -t 0.069664 -s 0 -d 9 -p ack -e 40 -c 0 -i 52 -a 0 -x {10.0 9.0 21 ------- null} - -t 0.069664 -s 0 -d 9 -p ack -e 40 -c 0 -i 52 -a 0 -x {10.0 9.0 21 ------- null} h -t 0.069664 -s 0 -d 9 -p ack -e 40 -c 0 -i 52 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.069856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 55 -a 0 -x {9.0 10.0 32 ------- null} + -t 0.069856 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 55 -a 0 -x {9.0 10.0 32 ------- null} h -t 0.069856 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 55 -a 0 -x {9.0 10.0 32 ------- null} r -t 0.069888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {9.0 10.0 25 ------- null} + -t 0.069888 -s 10 -d 7 -p ack -e 40 -c 0 -i 60 -a 0 -x {10.0 9.0 25 ------- null} - -t 0.069888 -s 10 -d 7 -p ack -e 40 -c 0 -i 60 -a 0 -x {10.0 9.0 25 ------- null} h -t 0.069888 -s 10 -d 7 -p ack -e 40 -c 0 -i 60 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.070496 -s 0 -d 9 -p ack -e 40 -c 0 -i 50 -a 0 -x {10.0 9.0 20 ------- null} + -t 0.070496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 61 -a 0 -x {9.0 10.0 35 ------- null} - -t 0.070496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 61 -a 0 -x {9.0 10.0 35 ------- null} h -t 0.070496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 61 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.070528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {9.0 10.0 28 ------- null} - -t 0.070528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {9.0 10.0 28 ------- null} h -t 0.070528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.07064 -s 0 -d 9 -p ack -e 40 -c 0 -i 54 -a 0 -x {10.0 9.0 22 ------- null} - -t 0.07064 -s 0 -d 9 -p ack -e 40 -c 0 -i 54 -a 0 -x {10.0 9.0 22 ------- null} h -t 0.07064 -s 0 -d 9 -p ack -e 40 -c 0 -i 54 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.070752 -s 10 -d 7 -p ack -e 40 -c 0 -i 58 -a 0 -x {10.0 9.0 24 ------- null} + -t 0.070752 -s 7 -d 0 -p ack -e 40 -c 0 -i 58 -a 0 -x {10.0 9.0 24 ------- null} h -t 0.070752 -s 7 -d 8 -p ack -e 40 -c 0 -i 58 -a 0 -x {10.0 9.0 24 ------- null} r -t 0.07104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 57 -a 0 -x {9.0 10.0 33 ------- null} + -t 0.07104 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 57 -a 0 -x {9.0 10.0 33 ------- null} h -t 0.07104 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 57 -a 0 -x {9.0 10.0 33 ------- null} r -t 0.07112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {9.0 10.0 26 ------- null} + -t 0.07112 -s 10 -d 7 -p ack -e 40 -c 0 -i 62 -a 0 -x {10.0 9.0 26 ------- null} - -t 0.07112 -s 10 -d 7 -p ack -e 40 -c 0 -i 62 -a 0 -x {10.0 9.0 26 ------- null} h -t 0.07112 -s 10 -d 7 -p ack -e 40 -c 0 -i 62 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.071616 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {9.0 10.0 29 ------- null} - -t 0.071616 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {9.0 10.0 29 ------- null} h -t 0.071616 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.071696 -s 0 -d 9 -p ack -e 40 -c 0 -i 52 -a 0 -x {10.0 9.0 21 ------- null} + -t 0.071696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {9.0 10.0 36 ------- null} - -t 0.071696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {9.0 10.0 36 ------- null} h -t 0.071696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.071792 -s 0 -d 9 -p ack -e 40 -c 0 -i 56 -a 0 -x {10.0 9.0 23 ------- null} - -t 0.071792 -s 0 -d 9 -p ack -e 40 -c 0 -i 56 -a 0 -x {10.0 9.0 23 ------- null} h -t 0.071792 -s 0 -d 9 -p ack -e 40 -c 0 -i 56 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.07192 -s 10 -d 7 -p ack -e 40 -c 0 -i 60 -a 0 -x {10.0 9.0 25 ------- null} + -t 0.07192 -s 7 -d 0 -p ack -e 40 -c 0 -i 60 -a 0 -x {10.0 9.0 25 ------- null} h -t 0.07192 -s 7 -d 8 -p ack -e 40 -c 0 -i 60 -a 0 -x {10.0 9.0 25 ------- null} r -t 0.072192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 59 -a 0 -x {9.0 10.0 34 ------- null} + -t 0.072192 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 59 -a 0 -x {9.0 10.0 34 ------- null} h -t 0.072192 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 59 -a 0 -x {9.0 10.0 34 ------- null} r -t 0.072208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {9.0 10.0 27 ------- null} + -t 0.072208 -s 10 -d 7 -p ack -e 40 -c 0 -i 64 -a 0 -x {10.0 9.0 27 ------- null} - -t 0.072208 -s 10 -d 7 -p ack -e 40 -c 0 -i 64 -a 0 -x {10.0 9.0 27 ------- null} h -t 0.072208 -s 10 -d 7 -p ack -e 40 -c 0 -i 64 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.072672 -s 0 -d 9 -p ack -e 40 -c 0 -i 54 -a 0 -x {10.0 9.0 22 ------- null} + -t 0.072672 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {9.0 10.0 37 ------- null} - -t 0.072672 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {9.0 10.0 37 ------- null} h -t 0.072672 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.072704 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 51 -a 0 -x {9.0 10.0 30 ------- null} - -t 0.072704 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 51 -a 0 -x {9.0 10.0 30 ------- null} h -t 0.072704 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 51 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.07288 -s 0 -d 9 -p ack -e 40 -c 0 -i 58 -a 0 -x {10.0 9.0 24 ------- null} - -t 0.07288 -s 0 -d 9 -p ack -e 40 -c 0 -i 58 -a 0 -x {10.0 9.0 24 ------- null} h -t 0.07288 -s 0 -d 9 -p ack -e 40 -c 0 -i 58 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.073152 -s 10 -d 7 -p ack -e 40 -c 0 -i 62 -a 0 -x {10.0 9.0 26 ------- null} + -t 0.073152 -s 7 -d 0 -p ack -e 40 -c 0 -i 62 -a 0 -x {10.0 9.0 26 ------- null} h -t 0.073152 -s 7 -d 8 -p ack -e 40 -c 0 -i 62 -a 0 -x {10.0 9.0 26 ------- null} r -t 0.073296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 61 -a 0 -x {9.0 10.0 35 ------- null} + -t 0.073296 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 61 -a 0 -x {9.0 10.0 35 ------- null} h -t 0.073296 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 61 -a 0 -x {9.0 10.0 35 ------- null} r -t 0.073328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {9.0 10.0 28 ------- null} + -t 0.073328 -s 10 -d 7 -p ack -e 40 -c 0 -i 66 -a 0 -x {10.0 9.0 28 ------- null} - -t 0.073328 -s 10 -d 7 -p ack -e 40 -c 0 -i 66 -a 0 -x {10.0 9.0 28 ------- null} h -t 0.073328 -s 10 -d 7 -p ack -e 40 -c 0 -i 66 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.073792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 53 -a 0 -x {9.0 10.0 31 ------- null} - -t 0.073792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 53 -a 0 -x {9.0 10.0 31 ------- null} h -t 0.073792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 53 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.073824 -s 0 -d 9 -p ack -e 40 -c 0 -i 56 -a 0 -x {10.0 9.0 23 ------- null} + -t 0.073824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {9.0 10.0 38 ------- null} - -t 0.073824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {9.0 10.0 38 ------- null} h -t 0.073824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.073872 -s 0 -d 9 -p ack -e 40 -c 0 -i 60 -a 0 -x {10.0 9.0 25 ------- null} - -t 0.073872 -s 0 -d 9 -p ack -e 40 -c 0 -i 60 -a 0 -x {10.0 9.0 25 ------- null} h -t 0.073872 -s 0 -d 9 -p ack -e 40 -c 0 -i 60 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.07424 -s 10 -d 7 -p ack -e 40 -c 0 -i 64 -a 0 -x {10.0 9.0 27 ------- null} + -t 0.07424 -s 7 -d 0 -p ack -e 40 -c 0 -i 64 -a 0 -x {10.0 9.0 27 ------- null} h -t 0.07424 -s 7 -d 8 -p ack -e 40 -c 0 -i 64 -a 0 -x {10.0 9.0 27 ------- null} r -t 0.074416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {9.0 10.0 29 ------- null} + -t 0.074416 -s 10 -d 7 -p ack -e 40 -c 0 -i 68 -a 0 -x {10.0 9.0 29 ------- null} - -t 0.074416 -s 10 -d 7 -p ack -e 40 -c 0 -i 68 -a 0 -x {10.0 9.0 29 ------- null} h -t 0.074416 -s 10 -d 7 -p ack -e 40 -c 0 -i 68 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.074496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {9.0 10.0 36 ------- null} + -t 0.074496 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {9.0 10.0 36 ------- null} h -t 0.074496 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {9.0 10.0 36 ------- null} + -t 0.07488 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 55 -a 0 -x {9.0 10.0 32 ------- null} - -t 0.07488 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 55 -a 0 -x {9.0 10.0 32 ------- null} h -t 0.07488 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 55 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.074912 -s 0 -d 9 -p ack -e 40 -c 0 -i 58 -a 0 -x {10.0 9.0 24 ------- null} + -t 0.074912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {9.0 10.0 39 ------- null} - -t 0.074912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {9.0 10.0 39 ------- null} h -t 0.074912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.075072 -s 0 -d 9 -p ack -e 40 -c 0 -i 62 -a 0 -x {10.0 9.0 26 ------- null} - -t 0.075072 -s 0 -d 9 -p ack -e 40 -c 0 -i 62 -a 0 -x {10.0 9.0 26 ------- null} h -t 0.075072 -s 0 -d 9 -p ack -e 40 -c 0 -i 62 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.07536 -s 10 -d 7 -p ack -e 40 -c 0 -i 66 -a 0 -x {10.0 9.0 28 ------- null} + -t 0.07536 -s 7 -d 0 -p ack -e 40 -c 0 -i 66 -a 0 -x {10.0 9.0 28 ------- null} h -t 0.07536 -s 7 -d 8 -p ack -e 40 -c 0 -i 66 -a 0 -x {10.0 9.0 28 ------- null} r -t 0.075472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {9.0 10.0 37 ------- null} + -t 0.075472 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {9.0 10.0 37 ------- null} h -t 0.075472 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {9.0 10.0 37 ------- null} r -t 0.075504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 51 -a 0 -x {9.0 10.0 30 ------- null} + -t 0.075504 -s 10 -d 7 -p ack -e 40 -c 0 -i 70 -a 0 -x {10.0 9.0 30 ------- null} - -t 0.075504 -s 10 -d 7 -p ack -e 40 -c 0 -i 70 -a 0 -x {10.0 9.0 30 ------- null} h -t 0.075504 -s 10 -d 7 -p ack -e 40 -c 0 -i 70 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.075904 -s 0 -d 9 -p ack -e 40 -c 0 -i 60 -a 0 -x {10.0 9.0 25 ------- null} + -t 0.075904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {9.0 10.0 40 ------- null} - -t 0.075904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {9.0 10.0 40 ------- null} h -t 0.075904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.075968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 57 -a 0 -x {9.0 10.0 33 ------- null} - -t 0.075968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 57 -a 0 -x {9.0 10.0 33 ------- null} h -t 0.075968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 57 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.076096 -s 0 -d 9 -p ack -e 40 -c 0 -i 64 -a 0 -x {10.0 9.0 27 ------- null} - -t 0.076096 -s 0 -d 9 -p ack -e 40 -c 0 -i 64 -a 0 -x {10.0 9.0 27 ------- null} h -t 0.076096 -s 0 -d 9 -p ack -e 40 -c 0 -i 64 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.076448 -s 10 -d 7 -p ack -e 40 -c 0 -i 68 -a 0 -x {10.0 9.0 29 ------- null} + -t 0.076448 -s 7 -d 0 -p ack -e 40 -c 0 -i 68 -a 0 -x {10.0 9.0 29 ------- null} h -t 0.076448 -s 7 -d 8 -p ack -e 40 -c 0 -i 68 -a 0 -x {10.0 9.0 29 ------- null} r -t 0.076592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 53 -a 0 -x {9.0 10.0 31 ------- null} + -t 0.076592 -s 10 -d 7 -p ack -e 40 -c 0 -i 72 -a 0 -x {10.0 9.0 31 ------- null} - -t 0.076592 -s 10 -d 7 -p ack -e 40 -c 0 -i 72 -a 0 -x {10.0 9.0 31 ------- null} h -t 0.076592 -s 10 -d 7 -p ack -e 40 -c 0 -i 72 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.076624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {9.0 10.0 38 ------- null} + -t 0.076624 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {9.0 10.0 38 ------- null} h -t 0.076624 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {9.0 10.0 38 ------- null} + -t 0.077056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 59 -a 0 -x {9.0 10.0 34 ------- null} - -t 0.077056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 59 -a 0 -x {9.0 10.0 34 ------- null} h -t 0.077056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 59 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.077104 -s 0 -d 9 -p ack -e 40 -c 0 -i 62 -a 0 -x {10.0 9.0 26 ------- null} + -t 0.077104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {9.0 10.0 41 ------- null} - -t 0.077104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {9.0 10.0 41 ------- null} h -t 0.077104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.07736 -s 0 -d 9 -p ack -e 40 -c 0 -i 66 -a 0 -x {10.0 9.0 28 ------- null} - -t 0.07736 -s 0 -d 9 -p ack -e 40 -c 0 -i 66 -a 0 -x {10.0 9.0 28 ------- null} h -t 0.07736 -s 0 -d 9 -p ack -e 40 -c 0 -i 66 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.077536 -s 10 -d 7 -p ack -e 40 -c 0 -i 70 -a 0 -x {10.0 9.0 30 ------- null} + -t 0.077536 -s 7 -d 0 -p ack -e 40 -c 0 -i 70 -a 0 -x {10.0 9.0 30 ------- null} h -t 0.077536 -s 7 -d 8 -p ack -e 40 -c 0 -i 70 -a 0 -x {10.0 9.0 30 ------- null} r -t 0.07768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 55 -a 0 -x {9.0 10.0 32 ------- null} + -t 0.07768 -s 10 -d 7 -p ack -e 40 -c 0 -i 74 -a 0 -x {10.0 9.0 32 ------- null} - -t 0.07768 -s 10 -d 7 -p ack -e 40 -c 0 -i 74 -a 0 -x {10.0 9.0 32 ------- null} h -t 0.07768 -s 10 -d 7 -p ack -e 40 -c 0 -i 74 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.077712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {9.0 10.0 39 ------- null} + -t 0.077712 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {9.0 10.0 39 ------- null} h -t 0.077712 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {9.0 10.0 39 ------- null} r -t 0.078128 -s 0 -d 9 -p ack -e 40 -c 0 -i 64 -a 0 -x {10.0 9.0 27 ------- null} + -t 0.078128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {9.0 10.0 42 ------- null} - -t 0.078128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {9.0 10.0 42 ------- null} h -t 0.078128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.078208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 61 -a 0 -x {9.0 10.0 35 ------- null} - -t 0.078208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 61 -a 0 -x {9.0 10.0 35 ------- null} h -t 0.078208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 61 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.07848 -s 0 -d 9 -p ack -e 40 -c 0 -i 68 -a 0 -x {10.0 9.0 29 ------- null} - -t 0.07848 -s 0 -d 9 -p ack -e 40 -c 0 -i 68 -a 0 -x {10.0 9.0 29 ------- null} h -t 0.07848 -s 0 -d 9 -p ack -e 40 -c 0 -i 68 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.078624 -s 10 -d 7 -p ack -e 40 -c 0 -i 72 -a 0 -x {10.0 9.0 31 ------- null} + -t 0.078624 -s 7 -d 0 -p ack -e 40 -c 0 -i 72 -a 0 -x {10.0 9.0 31 ------- null} h -t 0.078624 -s 7 -d 8 -p ack -e 40 -c 0 -i 72 -a 0 -x {10.0 9.0 31 ------- null} r -t 0.078704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {9.0 10.0 40 ------- null} + -t 0.078704 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {9.0 10.0 40 ------- null} h -t 0.078704 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {9.0 10.0 40 ------- null} r -t 0.078768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 57 -a 0 -x {9.0 10.0 33 ------- null} + -t 0.078768 -s 10 -d 7 -p ack -e 40 -c 0 -i 76 -a 0 -x {10.0 9.0 33 ------- null} - -t 0.078768 -s 10 -d 7 -p ack -e 40 -c 0 -i 76 -a 0 -x {10.0 9.0 33 ------- null} h -t 0.078768 -s 10 -d 7 -p ack -e 40 -c 0 -i 76 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.079392 -s 0 -d 9 -p ack -e 40 -c 0 -i 66 -a 0 -x {10.0 9.0 28 ------- null} + -t 0.079392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {9.0 10.0 43 ------- null} - -t 0.079392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {9.0 10.0 43 ------- null} h -t 0.079392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.079392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {9.0 10.0 36 ------- null} - -t 0.079392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {9.0 10.0 36 ------- null} h -t 0.079392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.079584 -s 0 -d 9 -p ack -e 40 -c 0 -i 70 -a 0 -x {10.0 9.0 30 ------- null} - -t 0.079584 -s 0 -d 9 -p ack -e 40 -c 0 -i 70 -a 0 -x {10.0 9.0 30 ------- null} h -t 0.079584 -s 0 -d 9 -p ack -e 40 -c 0 -i 70 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.079712 -s 10 -d 7 -p ack -e 40 -c 0 -i 74 -a 0 -x {10.0 9.0 32 ------- null} + -t 0.079712 -s 7 -d 0 -p ack -e 40 -c 0 -i 74 -a 0 -x {10.0 9.0 32 ------- null} h -t 0.079712 -s 7 -d 8 -p ack -e 40 -c 0 -i 74 -a 0 -x {10.0 9.0 32 ------- null} r -t 0.079856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 59 -a 0 -x {9.0 10.0 34 ------- null} + -t 0.079856 -s 10 -d 7 -p ack -e 40 -c 0 -i 78 -a 0 -x {10.0 9.0 34 ------- null} - -t 0.079856 -s 10 -d 7 -p ack -e 40 -c 0 -i 78 -a 0 -x {10.0 9.0 34 ------- null} h -t 0.079856 -s 10 -d 7 -p ack -e 40 -c 0 -i 78 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.079904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {9.0 10.0 41 ------- null} + -t 0.079904 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {9.0 10.0 41 ------- null} h -t 0.079904 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {9.0 10.0 41 ------- null} + -t 0.08048 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {9.0 10.0 37 ------- null} - -t 0.08048 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {9.0 10.0 37 ------- null} h -t 0.08048 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.080512 -s 0 -d 9 -p ack -e 40 -c 0 -i 68 -a 0 -x {10.0 9.0 29 ------- null} + -t 0.080512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {9.0 10.0 44 ------- null} - -t 0.080512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {9.0 10.0 44 ------- null} h -t 0.080512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.080624 -s 0 -d 9 -p ack -e 40 -c 0 -i 72 -a 0 -x {10.0 9.0 31 ------- null} - -t 0.080624 -s 0 -d 9 -p ack -e 40 -c 0 -i 72 -a 0 -x {10.0 9.0 31 ------- null} h -t 0.080624 -s 0 -d 9 -p ack -e 40 -c 0 -i 72 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.0808 -s 10 -d 7 -p ack -e 40 -c 0 -i 76 -a 0 -x {10.0 9.0 33 ------- null} + -t 0.0808 -s 7 -d 0 -p ack -e 40 -c 0 -i 76 -a 0 -x {10.0 9.0 33 ------- null} h -t 0.0808 -s 7 -d 8 -p ack -e 40 -c 0 -i 76 -a 0 -x {10.0 9.0 33 ------- null} r -t 0.080928 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {9.0 10.0 42 ------- null} + -t 0.080928 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {9.0 10.0 42 ------- null} h -t 0.080928 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {9.0 10.0 42 ------- null} r -t 0.081008 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 61 -a 0 -x {9.0 10.0 35 ------- null} + -t 0.081008 -s 10 -d 7 -p ack -e 40 -c 0 -i 80 -a 0 -x {10.0 9.0 35 ------- null} - -t 0.081008 -s 10 -d 7 -p ack -e 40 -c 0 -i 80 -a 0 -x {10.0 9.0 35 ------- null} h -t 0.081008 -s 10 -d 7 -p ack -e 40 -c 0 -i 80 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.081568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {9.0 10.0 38 ------- null} - -t 0.081568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {9.0 10.0 38 ------- null} h -t 0.081568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.081616 -s 0 -d 9 -p ack -e 40 -c 0 -i 70 -a 0 -x {10.0 9.0 30 ------- null} + -t 0.081616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {9.0 10.0 45 ------- null} - -t 0.081616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {9.0 10.0 45 ------- null} h -t 0.081616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.081808 -s 0 -d 9 -p ack -e 40 -c 0 -i 74 -a 0 -x {10.0 9.0 32 ------- null} - -t 0.081808 -s 0 -d 9 -p ack -e 40 -c 0 -i 74 -a 0 -x {10.0 9.0 32 ------- null} h -t 0.081808 -s 0 -d 9 -p ack -e 40 -c 0 -i 74 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.081888 -s 10 -d 7 -p ack -e 40 -c 0 -i 78 -a 0 -x {10.0 9.0 34 ------- null} + -t 0.081888 -s 7 -d 0 -p ack -e 40 -c 0 -i 78 -a 0 -x {10.0 9.0 34 ------- null} h -t 0.081888 -s 7 -d 8 -p ack -e 40 -c 0 -i 78 -a 0 -x {10.0 9.0 34 ------- null} r -t 0.082192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {9.0 10.0 43 ------- null} + -t 0.082192 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {9.0 10.0 43 ------- null} h -t 0.082192 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {9.0 10.0 43 ------- null} r -t 0.082192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 63 -a 0 -x {9.0 10.0 36 ------- null} + -t 0.082192 -s 10 -d 7 -p ack -e 40 -c 0 -i 82 -a 0 -x {10.0 9.0 36 ------- null} - -t 0.082192 -s 10 -d 7 -p ack -e 40 -c 0 -i 82 -a 0 -x {10.0 9.0 36 ------- null} h -t 0.082192 -s 10 -d 7 -p ack -e 40 -c 0 -i 82 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.082656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {9.0 10.0 39 ------- null} - -t 0.082656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {9.0 10.0 39 ------- null} h -t 0.082656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.082656 -s 0 -d 9 -p ack -e 40 -c 0 -i 72 -a 0 -x {10.0 9.0 31 ------- null} + -t 0.082656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 83 -a 0 -x {9.0 10.0 46 ------- null} - -t 0.082656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 83 -a 0 -x {9.0 10.0 46 ------- null} h -t 0.082656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 83 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.082816 -s 0 -d 9 -p ack -e 40 -c 0 -i 76 -a 0 -x {10.0 9.0 33 ------- null} - -t 0.082816 -s 0 -d 9 -p ack -e 40 -c 0 -i 76 -a 0 -x {10.0 9.0 33 ------- null} h -t 0.082816 -s 0 -d 9 -p ack -e 40 -c 0 -i 76 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.08304 -s 10 -d 7 -p ack -e 40 -c 0 -i 80 -a 0 -x {10.0 9.0 35 ------- null} + -t 0.08304 -s 7 -d 0 -p ack -e 40 -c 0 -i 80 -a 0 -x {10.0 9.0 35 ------- null} h -t 0.08304 -s 7 -d 8 -p ack -e 40 -c 0 -i 80 -a 0 -x {10.0 9.0 35 ------- null} r -t 0.08328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 65 -a 0 -x {9.0 10.0 37 ------- null} + -t 0.08328 -s 10 -d 7 -p ack -e 40 -c 0 -i 84 -a 0 -x {10.0 9.0 37 ------- null} - -t 0.08328 -s 10 -d 7 -p ack -e 40 -c 0 -i 84 -a 0 -x {10.0 9.0 37 ------- null} h -t 0.08328 -s 10 -d 7 -p ack -e 40 -c 0 -i 84 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.083312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {9.0 10.0 44 ------- null} + -t 0.083312 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {9.0 10.0 44 ------- null} h -t 0.083312 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {9.0 10.0 44 ------- null} + -t 0.083744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {9.0 10.0 40 ------- null} - -t 0.083744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {9.0 10.0 40 ------- null} h -t 0.083744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.08384 -s 0 -d 9 -p ack -e 40 -c 0 -i 74 -a 0 -x {10.0 9.0 32 ------- null} + -t 0.08384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 85 -a 0 -x {9.0 10.0 47 ------- null} - -t 0.08384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 85 -a 0 -x {9.0 10.0 47 ------- null} h -t 0.08384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 85 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.083936 -s 0 -d 9 -p ack -e 40 -c 0 -i 78 -a 0 -x {10.0 9.0 34 ------- null} - -t 0.083936 -s 0 -d 9 -p ack -e 40 -c 0 -i 78 -a 0 -x {10.0 9.0 34 ------- null} h -t 0.083936 -s 0 -d 9 -p ack -e 40 -c 0 -i 78 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.084224 -s 10 -d 7 -p ack -e 40 -c 0 -i 82 -a 0 -x {10.0 9.0 36 ------- null} + -t 0.084224 -s 7 -d 0 -p ack -e 40 -c 0 -i 82 -a 0 -x {10.0 9.0 36 ------- null} h -t 0.084224 -s 7 -d 8 -p ack -e 40 -c 0 -i 82 -a 0 -x {10.0 9.0 36 ------- null} r -t 0.084368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 67 -a 0 -x {9.0 10.0 38 ------- null} + -t 0.084368 -s 10 -d 7 -p ack -e 40 -c 0 -i 86 -a 0 -x {10.0 9.0 38 ------- null} - -t 0.084368 -s 10 -d 7 -p ack -e 40 -c 0 -i 86 -a 0 -x {10.0 9.0 38 ------- null} h -t 0.084368 -s 10 -d 7 -p ack -e 40 -c 0 -i 86 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.084416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {9.0 10.0 45 ------- null} + -t 0.084416 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {9.0 10.0 45 ------- null} h -t 0.084416 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {9.0 10.0 45 ------- null} + -t 0.084832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {9.0 10.0 41 ------- null} - -t 0.084832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {9.0 10.0 41 ------- null} h -t 0.084832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.084848 -s 0 -d 9 -p ack -e 40 -c 0 -i 76 -a 0 -x {10.0 9.0 33 ------- null} + -t 0.084848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 87 -a 0 -x {9.0 10.0 48 ------- null} - -t 0.084848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 87 -a 0 -x {9.0 10.0 48 ------- null} h -t 0.084848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 87 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.085008 -s 0 -d 9 -p ack -e 40 -c 0 -i 80 -a 0 -x {10.0 9.0 35 ------- null} - -t 0.085008 -s 0 -d 9 -p ack -e 40 -c 0 -i 80 -a 0 -x {10.0 9.0 35 ------- null} h -t 0.085008 -s 0 -d 9 -p ack -e 40 -c 0 -i 80 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.085312 -s 10 -d 7 -p ack -e 40 -c 0 -i 84 -a 0 -x {10.0 9.0 37 ------- null} + -t 0.085312 -s 7 -d 0 -p ack -e 40 -c 0 -i 84 -a 0 -x {10.0 9.0 37 ------- null} h -t 0.085312 -s 7 -d 8 -p ack -e 40 -c 0 -i 84 -a 0 -x {10.0 9.0 37 ------- null} r -t 0.085456 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 69 -a 0 -x {9.0 10.0 39 ------- null} + -t 0.085456 -s 10 -d 7 -p ack -e 40 -c 0 -i 88 -a 0 -x {10.0 9.0 39 ------- null} - -t 0.085456 -s 10 -d 7 -p ack -e 40 -c 0 -i 88 -a 0 -x {10.0 9.0 39 ------- null} h -t 0.085456 -s 10 -d 7 -p ack -e 40 -c 0 -i 88 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.085456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 83 -a 0 -x {9.0 10.0 46 ------- null} + -t 0.085456 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 83 -a 0 -x {9.0 10.0 46 ------- null} h -t 0.085456 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 83 -a 0 -x {9.0 10.0 46 ------- null} + -t 0.08592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {9.0 10.0 42 ------- null} - -t 0.08592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {9.0 10.0 42 ------- null} h -t 0.08592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.085968 -s 0 -d 9 -p ack -e 40 -c 0 -i 78 -a 0 -x {10.0 9.0 34 ------- null} + -t 0.085968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 89 -a 0 -x {9.0 10.0 49 ------- null} - -t 0.085968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 89 -a 0 -x {9.0 10.0 49 ------- null} h -t 0.085968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 89 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.086128 -s 0 -d 9 -p ack -e 40 -c 0 -i 82 -a 0 -x {10.0 9.0 36 ------- null} - -t 0.086128 -s 0 -d 9 -p ack -e 40 -c 0 -i 82 -a 0 -x {10.0 9.0 36 ------- null} h -t 0.086128 -s 0 -d 9 -p ack -e 40 -c 0 -i 82 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.0864 -s 10 -d 7 -p ack -e 40 -c 0 -i 86 -a 0 -x {10.0 9.0 38 ------- null} + -t 0.0864 -s 7 -d 0 -p ack -e 40 -c 0 -i 86 -a 0 -x {10.0 9.0 38 ------- null} h -t 0.0864 -s 7 -d 8 -p ack -e 40 -c 0 -i 86 -a 0 -x {10.0 9.0 38 ------- null} r -t 0.086544 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 71 -a 0 -x {9.0 10.0 40 ------- null} + -t 0.086544 -s 10 -d 7 -p ack -e 40 -c 0 -i 90 -a 0 -x {10.0 9.0 40 ------- null} - -t 0.086544 -s 10 -d 7 -p ack -e 40 -c 0 -i 90 -a 0 -x {10.0 9.0 40 ------- null} h -t 0.086544 -s 10 -d 7 -p ack -e 40 -c 0 -i 90 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.08664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 85 -a 0 -x {9.0 10.0 47 ------- null} + -t 0.08664 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 85 -a 0 -x {9.0 10.0 47 ------- null} h -t 0.08664 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 85 -a 0 -x {9.0 10.0 47 ------- null} + -t 0.087008 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {9.0 10.0 43 ------- null} - -t 0.087008 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {9.0 10.0 43 ------- null} h -t 0.087008 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.08704 -s 0 -d 9 -p ack -e 40 -c 0 -i 80 -a 0 -x {10.0 9.0 35 ------- null} + -t 0.08704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 91 -a 0 -x {9.0 10.0 50 ------- null} - -t 0.08704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 91 -a 0 -x {9.0 10.0 50 ------- null} h -t 0.08704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 91 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.087104 -s 0 -d 9 -p ack -e 40 -c 0 -i 84 -a 0 -x {10.0 9.0 37 ------- null} - -t 0.087104 -s 0 -d 9 -p ack -e 40 -c 0 -i 84 -a 0 -x {10.0 9.0 37 ------- null} h -t 0.087104 -s 0 -d 9 -p ack -e 40 -c 0 -i 84 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.087488 -s 10 -d 7 -p ack -e 40 -c 0 -i 88 -a 0 -x {10.0 9.0 39 ------- null} + -t 0.087488 -s 7 -d 0 -p ack -e 40 -c 0 -i 88 -a 0 -x {10.0 9.0 39 ------- null} h -t 0.087488 -s 7 -d 8 -p ack -e 40 -c 0 -i 88 -a 0 -x {10.0 9.0 39 ------- null} r -t 0.087632 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 73 -a 0 -x {9.0 10.0 41 ------- null} + -t 0.087632 -s 10 -d 7 -p ack -e 40 -c 0 -i 92 -a 0 -x {10.0 9.0 41 ------- null} - -t 0.087632 -s 10 -d 7 -p ack -e 40 -c 0 -i 92 -a 0 -x {10.0 9.0 41 ------- null} h -t 0.087632 -s 10 -d 7 -p ack -e 40 -c 0 -i 92 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.087648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 87 -a 0 -x {9.0 10.0 48 ------- null} + -t 0.087648 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 87 -a 0 -x {9.0 10.0 48 ------- null} h -t 0.087648 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 87 -a 0 -x {9.0 10.0 48 ------- null} + -t 0.088096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {9.0 10.0 44 ------- null} - -t 0.088096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {9.0 10.0 44 ------- null} h -t 0.088096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.08816 -s 0 -d 9 -p ack -e 40 -c 0 -i 82 -a 0 -x {10.0 9.0 36 ------- null} + -t 0.08816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 93 -a 0 -x {9.0 10.0 51 ------- null} - -t 0.08816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 93 -a 0 -x {9.0 10.0 51 ------- null} h -t 0.08816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 93 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.088288 -s 0 -d 9 -p ack -e 40 -c 0 -i 86 -a 0 -x {10.0 9.0 38 ------- null} - -t 0.088288 -s 0 -d 9 -p ack -e 40 -c 0 -i 86 -a 0 -x {10.0 9.0 38 ------- null} h -t 0.088288 -s 0 -d 9 -p ack -e 40 -c 0 -i 86 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.088576 -s 10 -d 7 -p ack -e 40 -c 0 -i 90 -a 0 -x {10.0 9.0 40 ------- null} + -t 0.088576 -s 7 -d 0 -p ack -e 40 -c 0 -i 90 -a 0 -x {10.0 9.0 40 ------- null} h -t 0.088576 -s 7 -d 8 -p ack -e 40 -c 0 -i 90 -a 0 -x {10.0 9.0 40 ------- null} r -t 0.08872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 75 -a 0 -x {9.0 10.0 42 ------- null} + -t 0.08872 -s 10 -d 7 -p ack -e 40 -c 0 -i 94 -a 0 -x {10.0 9.0 42 ------- null} - -t 0.08872 -s 10 -d 7 -p ack -e 40 -c 0 -i 94 -a 0 -x {10.0 9.0 42 ------- null} h -t 0.08872 -s 10 -d 7 -p ack -e 40 -c 0 -i 94 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.088768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 89 -a 0 -x {9.0 10.0 49 ------- null} + -t 0.088768 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 89 -a 0 -x {9.0 10.0 49 ------- null} h -t 0.088768 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 89 -a 0 -x {9.0 10.0 49 ------- null} r -t 0.089136 -s 0 -d 9 -p ack -e 40 -c 0 -i 84 -a 0 -x {10.0 9.0 37 ------- null} + -t 0.089136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 95 -a 0 -x {9.0 10.0 52 ------- null} - -t 0.089136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 95 -a 0 -x {9.0 10.0 52 ------- null} h -t 0.089136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 95 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.089184 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {9.0 10.0 45 ------- null} - -t 0.089184 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {9.0 10.0 45 ------- null} h -t 0.089184 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.089296 -s 0 -d 9 -p ack -e 40 -c 0 -i 88 -a 0 -x {10.0 9.0 39 ------- null} - -t 0.089296 -s 0 -d 9 -p ack -e 40 -c 0 -i 88 -a 0 -x {10.0 9.0 39 ------- null} h -t 0.089296 -s 0 -d 9 -p ack -e 40 -c 0 -i 88 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.089664 -s 10 -d 7 -p ack -e 40 -c 0 -i 92 -a 0 -x {10.0 9.0 41 ------- null} + -t 0.089664 -s 7 -d 0 -p ack -e 40 -c 0 -i 92 -a 0 -x {10.0 9.0 41 ------- null} h -t 0.089664 -s 7 -d 8 -p ack -e 40 -c 0 -i 92 -a 0 -x {10.0 9.0 41 ------- null} r -t 0.089808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {9.0 10.0 43 ------- null} + -t 0.089808 -s 10 -d 7 -p ack -e 40 -c 0 -i 96 -a 0 -x {10.0 9.0 43 ------- null} - -t 0.089808 -s 10 -d 7 -p ack -e 40 -c 0 -i 96 -a 0 -x {10.0 9.0 43 ------- null} h -t 0.089808 -s 10 -d 7 -p ack -e 40 -c 0 -i 96 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.08984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 91 -a 0 -x {9.0 10.0 50 ------- null} + -t 0.08984 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 91 -a 0 -x {9.0 10.0 50 ------- null} h -t 0.08984 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 91 -a 0 -x {9.0 10.0 50 ------- null} + -t 0.090272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 83 -a 0 -x {9.0 10.0 46 ------- null} - -t 0.090272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 83 -a 0 -x {9.0 10.0 46 ------- null} h -t 0.090272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 83 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.09032 -s 0 -d 9 -p ack -e 40 -c 0 -i 86 -a 0 -x {10.0 9.0 38 ------- null} + -t 0.09032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 97 -a 0 -x {9.0 10.0 53 ------- null} - -t 0.09032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 97 -a 0 -x {9.0 10.0 53 ------- null} h -t 0.09032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 97 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.090368 -s 0 -d 9 -p ack -e 40 -c 0 -i 90 -a 0 -x {10.0 9.0 40 ------- null} - -t 0.090368 -s 0 -d 9 -p ack -e 40 -c 0 -i 90 -a 0 -x {10.0 9.0 40 ------- null} h -t 0.090368 -s 0 -d 9 -p ack -e 40 -c 0 -i 90 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.090752 -s 10 -d 7 -p ack -e 40 -c 0 -i 94 -a 0 -x {10.0 9.0 42 ------- null} + -t 0.090752 -s 7 -d 0 -p ack -e 40 -c 0 -i 94 -a 0 -x {10.0 9.0 42 ------- null} h -t 0.090752 -s 7 -d 8 -p ack -e 40 -c 0 -i 94 -a 0 -x {10.0 9.0 42 ------- null} r -t 0.090896 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 79 -a 0 -x {9.0 10.0 44 ------- null} + -t 0.090896 -s 10 -d 7 -p ack -e 40 -c 0 -i 98 -a 0 -x {10.0 9.0 44 ------- null} - -t 0.090896 -s 10 -d 7 -p ack -e 40 -c 0 -i 98 -a 0 -x {10.0 9.0 44 ------- null} h -t 0.090896 -s 10 -d 7 -p ack -e 40 -c 0 -i 98 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.09096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 93 -a 0 -x {9.0 10.0 51 ------- null} + -t 0.09096 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 93 -a 0 -x {9.0 10.0 51 ------- null} h -t 0.09096 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 93 -a 0 -x {9.0 10.0 51 ------- null} r -t 0.091328 -s 0 -d 9 -p ack -e 40 -c 0 -i 88 -a 0 -x {10.0 9.0 39 ------- null} + -t 0.091328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 99 -a 0 -x {9.0 10.0 54 ------- null} - -t 0.091328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 99 -a 0 -x {9.0 10.0 54 ------- null} h -t 0.091328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 99 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.09136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 85 -a 0 -x {9.0 10.0 47 ------- null} - -t 0.09136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 85 -a 0 -x {9.0 10.0 47 ------- null} h -t 0.09136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 85 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.09144 -s 0 -d 9 -p ack -e 40 -c 0 -i 92 -a 0 -x {10.0 9.0 41 ------- null} - -t 0.09144 -s 0 -d 9 -p ack -e 40 -c 0 -i 92 -a 0 -x {10.0 9.0 41 ------- null} h -t 0.09144 -s 0 -d 9 -p ack -e 40 -c 0 -i 92 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.09184 -s 10 -d 7 -p ack -e 40 -c 0 -i 96 -a 0 -x {10.0 9.0 43 ------- null} + -t 0.09184 -s 7 -d 0 -p ack -e 40 -c 0 -i 96 -a 0 -x {10.0 9.0 43 ------- null} h -t 0.09184 -s 7 -d 8 -p ack -e 40 -c 0 -i 96 -a 0 -x {10.0 9.0 43 ------- null} r -t 0.091936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 95 -a 0 -x {9.0 10.0 52 ------- null} + -t 0.091936 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 95 -a 0 -x {9.0 10.0 52 ------- null} h -t 0.091936 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 95 -a 0 -x {9.0 10.0 52 ------- null} r -t 0.091984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 81 -a 0 -x {9.0 10.0 45 ------- null} + -t 0.091984 -s 10 -d 7 -p ack -e 40 -c 0 -i 100 -a 0 -x {10.0 9.0 45 ------- null} - -t 0.091984 -s 10 -d 7 -p ack -e 40 -c 0 -i 100 -a 0 -x {10.0 9.0 45 ------- null} h -t 0.091984 -s 10 -d 7 -p ack -e 40 -c 0 -i 100 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.0924 -s 0 -d 9 -p ack -e 40 -c 0 -i 90 -a 0 -x {10.0 9.0 40 ------- null} + -t 0.0924 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 101 -a 0 -x {9.0 10.0 55 ------- null} - -t 0.0924 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 101 -a 0 -x {9.0 10.0 55 ------- null} h -t 0.0924 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 101 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.092448 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 87 -a 0 -x {9.0 10.0 48 ------- null} - -t 0.092448 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 87 -a 0 -x {9.0 10.0 48 ------- null} h -t 0.092448 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 87 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.09256 -s 0 -d 9 -p ack -e 40 -c 0 -i 94 -a 0 -x {10.0 9.0 42 ------- null} - -t 0.09256 -s 0 -d 9 -p ack -e 40 -c 0 -i 94 -a 0 -x {10.0 9.0 42 ------- null} h -t 0.09256 -s 0 -d 9 -p ack -e 40 -c 0 -i 94 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.092928 -s 10 -d 7 -p ack -e 40 -c 0 -i 98 -a 0 -x {10.0 9.0 44 ------- null} + -t 0.092928 -s 7 -d 0 -p ack -e 40 -c 0 -i 98 -a 0 -x {10.0 9.0 44 ------- null} h -t 0.092928 -s 7 -d 8 -p ack -e 40 -c 0 -i 98 -a 0 -x {10.0 9.0 44 ------- null} r -t 0.093072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 83 -a 0 -x {9.0 10.0 46 ------- null} + -t 0.093072 -s 10 -d 7 -p ack -e 40 -c 0 -i 102 -a 0 -x {10.0 9.0 46 ------- null} - -t 0.093072 -s 10 -d 7 -p ack -e 40 -c 0 -i 102 -a 0 -x {10.0 9.0 46 ------- null} h -t 0.093072 -s 10 -d 7 -p ack -e 40 -c 0 -i 102 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.09312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 97 -a 0 -x {9.0 10.0 53 ------- null} + -t 0.09312 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 97 -a 0 -x {9.0 10.0 53 ------- null} h -t 0.09312 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 97 -a 0 -x {9.0 10.0 53 ------- null} r -t 0.093472 -s 0 -d 9 -p ack -e 40 -c 0 -i 92 -a 0 -x {10.0 9.0 41 ------- null} + -t 0.093472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {9.0 10.0 56 ------- null} - -t 0.093472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {9.0 10.0 56 ------- null} h -t 0.093472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.093536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 89 -a 0 -x {9.0 10.0 49 ------- null} - -t 0.093536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 89 -a 0 -x {9.0 10.0 49 ------- null} h -t 0.093536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 89 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.093808 -s 0 -d 9 -p ack -e 40 -c 0 -i 96 -a 0 -x {10.0 9.0 43 ------- null} - -t 0.093808 -s 0 -d 9 -p ack -e 40 -c 0 -i 96 -a 0 -x {10.0 9.0 43 ------- null} h -t 0.093808 -s 0 -d 9 -p ack -e 40 -c 0 -i 96 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.094016 -s 10 -d 7 -p ack -e 40 -c 0 -i 100 -a 0 -x {10.0 9.0 45 ------- null} + -t 0.094016 -s 7 -d 0 -p ack -e 40 -c 0 -i 100 -a 0 -x {10.0 9.0 45 ------- null} h -t 0.094016 -s 7 -d 8 -p ack -e 40 -c 0 -i 100 -a 0 -x {10.0 9.0 45 ------- null} r -t 0.094128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 99 -a 0 -x {9.0 10.0 54 ------- null} + -t 0.094128 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 99 -a 0 -x {9.0 10.0 54 ------- null} h -t 0.094128 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 99 -a 0 -x {9.0 10.0 54 ------- null} r -t 0.09416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 85 -a 0 -x {9.0 10.0 47 ------- null} + -t 0.09416 -s 10 -d 7 -p ack -e 40 -c 0 -i 104 -a 0 -x {10.0 9.0 47 ------- null} - -t 0.09416 -s 10 -d 7 -p ack -e 40 -c 0 -i 104 -a 0 -x {10.0 9.0 47 ------- null} h -t 0.09416 -s 10 -d 7 -p ack -e 40 -c 0 -i 104 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.094592 -s 0 -d 9 -p ack -e 40 -c 0 -i 94 -a 0 -x {10.0 9.0 42 ------- null} + -t 0.094592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {9.0 10.0 57 ------- null} - -t 0.094592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {9.0 10.0 57 ------- null} h -t 0.094592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.094688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 91 -a 0 -x {9.0 10.0 50 ------- null} - -t 0.094688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 91 -a 0 -x {9.0 10.0 50 ------- null} h -t 0.094688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 91 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.094832 -s 0 -d 9 -p ack -e 40 -c 0 -i 98 -a 0 -x {10.0 9.0 44 ------- null} - -t 0.094832 -s 0 -d 9 -p ack -e 40 -c 0 -i 98 -a 0 -x {10.0 9.0 44 ------- null} h -t 0.094832 -s 0 -d 9 -p ack -e 40 -c 0 -i 98 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.095104 -s 10 -d 7 -p ack -e 40 -c 0 -i 102 -a 0 -x {10.0 9.0 46 ------- null} + -t 0.095104 -s 7 -d 0 -p ack -e 40 -c 0 -i 102 -a 0 -x {10.0 9.0 46 ------- null} h -t 0.095104 -s 7 -d 8 -p ack -e 40 -c 0 -i 102 -a 0 -x {10.0 9.0 46 ------- null} r -t 0.0952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 101 -a 0 -x {9.0 10.0 55 ------- null} + -t 0.0952 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 101 -a 0 -x {9.0 10.0 55 ------- null} h -t 0.0952 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 101 -a 0 -x {9.0 10.0 55 ------- null} r -t 0.095248 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 87 -a 0 -x {9.0 10.0 48 ------- null} + -t 0.095248 -s 10 -d 7 -p ack -e 40 -c 0 -i 106 -a 0 -x {10.0 9.0 48 ------- null} - -t 0.095248 -s 10 -d 7 -p ack -e 40 -c 0 -i 106 -a 0 -x {10.0 9.0 48 ------- null} h -t 0.095248 -s 10 -d 7 -p ack -e 40 -c 0 -i 106 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.095776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 93 -a 0 -x {9.0 10.0 51 ------- null} - -t 0.095776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 93 -a 0 -x {9.0 10.0 51 ------- null} h -t 0.095776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 93 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.09584 -s 0 -d 9 -p ack -e 40 -c 0 -i 96 -a 0 -x {10.0 9.0 43 ------- null} + -t 0.09584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {9.0 10.0 58 ------- null} - -t 0.09584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {9.0 10.0 58 ------- null} h -t 0.09584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.09608 -s 0 -d 9 -p ack -e 40 -c 0 -i 100 -a 0 -x {10.0 9.0 45 ------- null} - -t 0.09608 -s 0 -d 9 -p ack -e 40 -c 0 -i 100 -a 0 -x {10.0 9.0 45 ------- null} h -t 0.09608 -s 0 -d 9 -p ack -e 40 -c 0 -i 100 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.096192 -s 10 -d 7 -p ack -e 40 -c 0 -i 104 -a 0 -x {10.0 9.0 47 ------- null} + -t 0.096192 -s 7 -d 0 -p ack -e 40 -c 0 -i 104 -a 0 -x {10.0 9.0 47 ------- null} h -t 0.096192 -s 7 -d 8 -p ack -e 40 -c 0 -i 104 -a 0 -x {10.0 9.0 47 ------- null} r -t 0.096272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {9.0 10.0 56 ------- null} + -t 0.096272 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {9.0 10.0 56 ------- null} h -t 0.096272 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {9.0 10.0 56 ------- null} r -t 0.096336 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 89 -a 0 -x {9.0 10.0 49 ------- null} + -t 0.096336 -s 10 -d 7 -p ack -e 40 -c 0 -i 108 -a 0 -x {10.0 9.0 49 ------- null} - -t 0.096336 -s 10 -d 7 -p ack -e 40 -c 0 -i 108 -a 0 -x {10.0 9.0 49 ------- null} h -t 0.096336 -s 10 -d 7 -p ack -e 40 -c 0 -i 108 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.096864 -s 0 -d 9 -p ack -e 40 -c 0 -i 98 -a 0 -x {10.0 9.0 44 ------- null} + -t 0.096864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {9.0 10.0 59 ------- null} - -t 0.096864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {9.0 10.0 59 ------- null} h -t 0.096864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.096912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 95 -a 0 -x {9.0 10.0 52 ------- null} - -t 0.096912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 95 -a 0 -x {9.0 10.0 52 ------- null} h -t 0.096912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 95 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.096992 -s 0 -d 9 -p ack -e 40 -c 0 -i 102 -a 0 -x {10.0 9.0 46 ------- null} - -t 0.096992 -s 0 -d 9 -p ack -e 40 -c 0 -i 102 -a 0 -x {10.0 9.0 46 ------- null} h -t 0.096992 -s 0 -d 9 -p ack -e 40 -c 0 -i 102 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.09728 -s 10 -d 7 -p ack -e 40 -c 0 -i 106 -a 0 -x {10.0 9.0 48 ------- null} + -t 0.09728 -s 7 -d 0 -p ack -e 40 -c 0 -i 106 -a 0 -x {10.0 9.0 48 ------- null} h -t 0.09728 -s 7 -d 8 -p ack -e 40 -c 0 -i 106 -a 0 -x {10.0 9.0 48 ------- null} r -t 0.097392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {9.0 10.0 57 ------- null} + -t 0.097392 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {9.0 10.0 57 ------- null} h -t 0.097392 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {9.0 10.0 57 ------- null} r -t 0.097488 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 91 -a 0 -x {9.0 10.0 50 ------- null} + -t 0.097488 -s 10 -d 7 -p ack -e 40 -c 0 -i 110 -a 0 -x {10.0 9.0 50 ------- null} - -t 0.097488 -s 10 -d 7 -p ack -e 40 -c 0 -i 110 -a 0 -x {10.0 9.0 50 ------- null} h -t 0.097488 -s 10 -d 7 -p ack -e 40 -c 0 -i 110 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.098 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 97 -a 0 -x {9.0 10.0 53 ------- null} - -t 0.098 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 97 -a 0 -x {9.0 10.0 53 ------- null} h -t 0.098 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 97 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.098112 -s 0 -d 9 -p ack -e 40 -c 0 -i 100 -a 0 -x {10.0 9.0 45 ------- null} + -t 0.098112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {9.0 10.0 60 ------- null} - -t 0.098112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {9.0 10.0 60 ------- null} h -t 0.098112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.098192 -s 0 -d 9 -p ack -e 40 -c 0 -i 104 -a 0 -x {10.0 9.0 47 ------- null} - -t 0.098192 -s 0 -d 9 -p ack -e 40 -c 0 -i 104 -a 0 -x {10.0 9.0 47 ------- null} h -t 0.098192 -s 0 -d 9 -p ack -e 40 -c 0 -i 104 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.098368 -s 10 -d 7 -p ack -e 40 -c 0 -i 108 -a 0 -x {10.0 9.0 49 ------- null} + -t 0.098368 -s 7 -d 0 -p ack -e 40 -c 0 -i 108 -a 0 -x {10.0 9.0 49 ------- null} h -t 0.098368 -s 7 -d 8 -p ack -e 40 -c 0 -i 108 -a 0 -x {10.0 9.0 49 ------- null} r -t 0.098576 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 93 -a 0 -x {9.0 10.0 51 ------- null} + -t 0.098576 -s 10 -d 7 -p ack -e 40 -c 0 -i 112 -a 0 -x {10.0 9.0 51 ------- null} - -t 0.098576 -s 10 -d 7 -p ack -e 40 -c 0 -i 112 -a 0 -x {10.0 9.0 51 ------- null} h -t 0.098576 -s 10 -d 7 -p ack -e 40 -c 0 -i 112 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.09864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {9.0 10.0 58 ------- null} + -t 0.09864 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {9.0 10.0 58 ------- null} h -t 0.09864 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {9.0 10.0 58 ------- null} r -t 0.099024 -s 0 -d 9 -p ack -e 40 -c 0 -i 102 -a 0 -x {10.0 9.0 46 ------- null} + -t 0.099024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {9.0 10.0 61 ------- null} - -t 0.099024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {9.0 10.0 61 ------- null} h -t 0.099024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.099088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 99 -a 0 -x {9.0 10.0 54 ------- null} - -t 0.099088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 99 -a 0 -x {9.0 10.0 54 ------- null} h -t 0.099088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 99 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.09936 -s 0 -d 9 -p ack -e 40 -c 0 -i 106 -a 0 -x {10.0 9.0 48 ------- null} - -t 0.09936 -s 0 -d 9 -p ack -e 40 -c 0 -i 106 -a 0 -x {10.0 9.0 48 ------- null} h -t 0.09936 -s 0 -d 9 -p ack -e 40 -c 0 -i 106 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.09952 -s 10 -d 7 -p ack -e 40 -c 0 -i 110 -a 0 -x {10.0 9.0 50 ------- null} + -t 0.09952 -s 7 -d 0 -p ack -e 40 -c 0 -i 110 -a 0 -x {10.0 9.0 50 ------- null} h -t 0.09952 -s 7 -d 8 -p ack -e 40 -c 0 -i 110 -a 0 -x {10.0 9.0 50 ------- null} r -t 0.099664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {9.0 10.0 59 ------- null} + -t 0.099664 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {9.0 10.0 59 ------- null} h -t 0.099664 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {9.0 10.0 59 ------- null} r -t 0.099712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 95 -a 0 -x {9.0 10.0 52 ------- null} + -t 0.099712 -s 10 -d 7 -p ack -e 40 -c 0 -i 114 -a 0 -x {10.0 9.0 52 ------- null} - -t 0.099712 -s 10 -d 7 -p ack -e 40 -c 0 -i 114 -a 0 -x {10.0 9.0 52 ------- null} h -t 0.099712 -s 10 -d 7 -p ack -e 40 -c 0 -i 114 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.100208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 101 -a 0 -x {9.0 10.0 55 ------- null} - -t 0.100208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 101 -a 0 -x {9.0 10.0 55 ------- null} h -t 0.100208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 101 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.100224 -s 0 -d 9 -p ack -e 40 -c 0 -i 104 -a 0 -x {10.0 9.0 47 ------- null} + -t 0.100224 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {9.0 10.0 62 ------- null} - -t 0.100224 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {9.0 10.0 62 ------- null} h -t 0.100224 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.100464 -s 0 -d 9 -p ack -e 40 -c 0 -i 108 -a 0 -x {10.0 9.0 49 ------- null} - -t 0.100464 -s 0 -d 9 -p ack -e 40 -c 0 -i 108 -a 0 -x {10.0 9.0 49 ------- null} h -t 0.100464 -s 0 -d 9 -p ack -e 40 -c 0 -i 108 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.100608 -s 10 -d 7 -p ack -e 40 -c 0 -i 112 -a 0 -x {10.0 9.0 51 ------- null} + -t 0.100608 -s 7 -d 0 -p ack -e 40 -c 0 -i 112 -a 0 -x {10.0 9.0 51 ------- null} h -t 0.100608 -s 7 -d 8 -p ack -e 40 -c 0 -i 112 -a 0 -x {10.0 9.0 51 ------- null} r -t 0.1008 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 97 -a 0 -x {9.0 10.0 53 ------- null} + -t 0.1008 -s 10 -d 7 -p ack -e 40 -c 0 -i 116 -a 0 -x {10.0 9.0 53 ------- null} - -t 0.1008 -s 10 -d 7 -p ack -e 40 -c 0 -i 116 -a 0 -x {10.0 9.0 53 ------- null} h -t 0.1008 -s 10 -d 7 -p ack -e 40 -c 0 -i 116 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.100912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {9.0 10.0 60 ------- null} + -t 0.100912 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {9.0 10.0 60 ------- null} h -t 0.100912 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {9.0 10.0 60 ------- null} r -t 0.101392 -s 0 -d 9 -p ack -e 40 -c 0 -i 106 -a 0 -x {10.0 9.0 48 ------- null} + -t 0.101392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {9.0 10.0 63 ------- null} - -t 0.101392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {9.0 10.0 63 ------- null} h -t 0.101392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.101472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {9.0 10.0 56 ------- null} - -t 0.101472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {9.0 10.0 56 ------- null} h -t 0.101472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.101568 -s 0 -d 9 -p ack -e 40 -c 0 -i 110 -a 0 -x {10.0 9.0 50 ------- null} - -t 0.101568 -s 0 -d 9 -p ack -e 40 -c 0 -i 110 -a 0 -x {10.0 9.0 50 ------- null} h -t 0.101568 -s 0 -d 9 -p ack -e 40 -c 0 -i 110 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.101744 -s 10 -d 7 -p ack -e 40 -c 0 -i 114 -a 0 -x {10.0 9.0 52 ------- null} + -t 0.101744 -s 7 -d 0 -p ack -e 40 -c 0 -i 114 -a 0 -x {10.0 9.0 52 ------- null} h -t 0.101744 -s 7 -d 8 -p ack -e 40 -c 0 -i 114 -a 0 -x {10.0 9.0 52 ------- null} r -t 0.101824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {9.0 10.0 61 ------- null} + -t 0.101824 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {9.0 10.0 61 ------- null} h -t 0.101824 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {9.0 10.0 61 ------- null} r -t 0.101888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 99 -a 0 -x {9.0 10.0 54 ------- null} + -t 0.101888 -s 10 -d 7 -p ack -e 40 -c 0 -i 118 -a 0 -x {10.0 9.0 54 ------- null} - -t 0.101888 -s 10 -d 7 -p ack -e 40 -c 0 -i 118 -a 0 -x {10.0 9.0 54 ------- null} h -t 0.101888 -s 10 -d 7 -p ack -e 40 -c 0 -i 118 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.102496 -s 0 -d 9 -p ack -e 40 -c 0 -i 108 -a 0 -x {10.0 9.0 49 ------- null} + -t 0.102496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {9.0 10.0 64 ------- null} - -t 0.102496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {9.0 10.0 64 ------- null} h -t 0.102496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.10256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {9.0 10.0 57 ------- null} - -t 0.10256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {9.0 10.0 57 ------- null} h -t 0.10256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.102704 -s 0 -d 9 -p ack -e 40 -c 0 -i 112 -a 0 -x {10.0 9.0 51 ------- null} - -t 0.102704 -s 0 -d 9 -p ack -e 40 -c 0 -i 112 -a 0 -x {10.0 9.0 51 ------- null} h -t 0.102704 -s 0 -d 9 -p ack -e 40 -c 0 -i 112 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.102832 -s 10 -d 7 -p ack -e 40 -c 0 -i 116 -a 0 -x {10.0 9.0 53 ------- null} + -t 0.102832 -s 7 -d 0 -p ack -e 40 -c 0 -i 116 -a 0 -x {10.0 9.0 53 ------- null} h -t 0.102832 -s 7 -d 8 -p ack -e 40 -c 0 -i 116 -a 0 -x {10.0 9.0 53 ------- null} r -t 0.103008 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 101 -a 0 -x {9.0 10.0 55 ------- null} + -t 0.103008 -s 10 -d 7 -p ack -e 40 -c 0 -i 120 -a 0 -x {10.0 9.0 55 ------- null} - -t 0.103008 -s 10 -d 7 -p ack -e 40 -c 0 -i 120 -a 0 -x {10.0 9.0 55 ------- null} h -t 0.103008 -s 10 -d 7 -p ack -e 40 -c 0 -i 120 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.103024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {9.0 10.0 62 ------- null} + -t 0.103024 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {9.0 10.0 62 ------- null} h -t 0.103024 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {9.0 10.0 62 ------- null} r -t 0.1036 -s 0 -d 9 -p ack -e 40 -c 0 -i 110 -a 0 -x {10.0 9.0 50 ------- null} + -t 0.1036 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {9.0 10.0 65 ------- null} - -t 0.1036 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {9.0 10.0 65 ------- null} h -t 0.1036 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.103648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {9.0 10.0 58 ------- null} - -t 0.103648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {9.0 10.0 58 ------- null} h -t 0.103648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.103856 -s 0 -d 9 -p ack -e 40 -c 0 -i 114 -a 0 -x {10.0 9.0 52 ------- null} - -t 0.103856 -s 0 -d 9 -p ack -e 40 -c 0 -i 114 -a 0 -x {10.0 9.0 52 ------- null} h -t 0.103856 -s 0 -d 9 -p ack -e 40 -c 0 -i 114 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.10392 -s 10 -d 7 -p ack -e 40 -c 0 -i 118 -a 0 -x {10.0 9.0 54 ------- null} + -t 0.10392 -s 7 -d 0 -p ack -e 40 -c 0 -i 118 -a 0 -x {10.0 9.0 54 ------- null} h -t 0.10392 -s 7 -d 8 -p ack -e 40 -c 0 -i 118 -a 0 -x {10.0 9.0 54 ------- null} r -t 0.104192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {9.0 10.0 63 ------- null} + -t 0.104192 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {9.0 10.0 63 ------- null} h -t 0.104192 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {9.0 10.0 63 ------- null} r -t 0.104272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 103 -a 0 -x {9.0 10.0 56 ------- null} + -t 0.104272 -s 10 -d 7 -p ack -e 40 -c 0 -i 122 -a 0 -x {10.0 9.0 56 ------- null} - -t 0.104272 -s 10 -d 7 -p ack -e 40 -c 0 -i 122 -a 0 -x {10.0 9.0 56 ------- null} h -t 0.104272 -s 10 -d 7 -p ack -e 40 -c 0 -i 122 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.104736 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {9.0 10.0 59 ------- null} - -t 0.104736 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {9.0 10.0 59 ------- null} h -t 0.104736 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.104736 -s 0 -d 9 -p ack -e 40 -c 0 -i 112 -a 0 -x {10.0 9.0 51 ------- null} + -t 0.104736 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 123 -a 0 -x {9.0 10.0 66 ------- null} - -t 0.104736 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 123 -a 0 -x {9.0 10.0 66 ------- null} h -t 0.104736 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 123 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.104816 -s 0 -d 9 -p ack -e 40 -c 0 -i 116 -a 0 -x {10.0 9.0 53 ------- null} - -t 0.104816 -s 0 -d 9 -p ack -e 40 -c 0 -i 116 -a 0 -x {10.0 9.0 53 ------- null} h -t 0.104816 -s 0 -d 9 -p ack -e 40 -c 0 -i 116 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.10504 -s 10 -d 7 -p ack -e 40 -c 0 -i 120 -a 0 -x {10.0 9.0 55 ------- null} + -t 0.10504 -s 7 -d 0 -p ack -e 40 -c 0 -i 120 -a 0 -x {10.0 9.0 55 ------- null} h -t 0.10504 -s 7 -d 8 -p ack -e 40 -c 0 -i 120 -a 0 -x {10.0 9.0 55 ------- null} r -t 0.105296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {9.0 10.0 64 ------- null} + -t 0.105296 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {9.0 10.0 64 ------- null} h -t 0.105296 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {9.0 10.0 64 ------- null} r -t 0.10536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 105 -a 0 -x {9.0 10.0 57 ------- null} + -t 0.10536 -s 10 -d 7 -p ack -e 40 -c 0 -i 124 -a 0 -x {10.0 9.0 57 ------- null} - -t 0.10536 -s 10 -d 7 -p ack -e 40 -c 0 -i 124 -a 0 -x {10.0 9.0 57 ------- null} h -t 0.10536 -s 10 -d 7 -p ack -e 40 -c 0 -i 124 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.105824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {9.0 10.0 60 ------- null} - -t 0.105824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {9.0 10.0 60 ------- null} h -t 0.105824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.105888 -s 0 -d 9 -p ack -e 40 -c 0 -i 114 -a 0 -x {10.0 9.0 52 ------- null} + -t 0.105888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 125 -a 0 -x {9.0 10.0 67 ------- null} - -t 0.105888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 125 -a 0 -x {9.0 10.0 67 ------- null} h -t 0.105888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 125 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.105952 -s 0 -d 9 -p ack -e 40 -c 0 -i 118 -a 0 -x {10.0 9.0 54 ------- null} - -t 0.105952 -s 0 -d 9 -p ack -e 40 -c 0 -i 118 -a 0 -x {10.0 9.0 54 ------- null} h -t 0.105952 -s 0 -d 9 -p ack -e 40 -c 0 -i 118 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.106304 -s 10 -d 7 -p ack -e 40 -c 0 -i 122 -a 0 -x {10.0 9.0 56 ------- null} + -t 0.106304 -s 7 -d 0 -p ack -e 40 -c 0 -i 122 -a 0 -x {10.0 9.0 56 ------- null} h -t 0.106304 -s 7 -d 8 -p ack -e 40 -c 0 -i 122 -a 0 -x {10.0 9.0 56 ------- null} r -t 0.1064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {9.0 10.0 65 ------- null} + -t 0.1064 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {9.0 10.0 65 ------- null} h -t 0.1064 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {9.0 10.0 65 ------- null} r -t 0.106448 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 107 -a 0 -x {9.0 10.0 58 ------- null} + -t 0.106448 -s 10 -d 7 -p ack -e 40 -c 0 -i 126 -a 0 -x {10.0 9.0 58 ------- null} - -t 0.106448 -s 10 -d 7 -p ack -e 40 -c 0 -i 126 -a 0 -x {10.0 9.0 58 ------- null} h -t 0.106448 -s 10 -d 7 -p ack -e 40 -c 0 -i 126 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.106848 -s 0 -d 9 -p ack -e 40 -c 0 -i 116 -a 0 -x {10.0 9.0 53 ------- null} + -t 0.106848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 127 -a 0 -x {9.0 10.0 68 ------- null} - -t 0.106848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 127 -a 0 -x {9.0 10.0 68 ------- null} h -t 0.106848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 127 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.106912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {9.0 10.0 61 ------- null} - -t 0.106912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {9.0 10.0 61 ------- null} h -t 0.106912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.107104 -s 0 -d 9 -p ack -e 40 -c 0 -i 120 -a 0 -x {10.0 9.0 55 ------- null} - -t 0.107104 -s 0 -d 9 -p ack -e 40 -c 0 -i 120 -a 0 -x {10.0 9.0 55 ------- null} h -t 0.107104 -s 0 -d 9 -p ack -e 40 -c 0 -i 120 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.107392 -s 10 -d 7 -p ack -e 40 -c 0 -i 124 -a 0 -x {10.0 9.0 57 ------- null} + -t 0.107392 -s 7 -d 0 -p ack -e 40 -c 0 -i 124 -a 0 -x {10.0 9.0 57 ------- null} h -t 0.107392 -s 7 -d 8 -p ack -e 40 -c 0 -i 124 -a 0 -x {10.0 9.0 57 ------- null} r -t 0.107536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 109 -a 0 -x {9.0 10.0 59 ------- null} + -t 0.107536 -s 10 -d 7 -p ack -e 40 -c 0 -i 128 -a 0 -x {10.0 9.0 59 ------- null} - -t 0.107536 -s 10 -d 7 -p ack -e 40 -c 0 -i 128 -a 0 -x {10.0 9.0 59 ------- null} h -t 0.107536 -s 10 -d 7 -p ack -e 40 -c 0 -i 128 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.107536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 123 -a 0 -x {9.0 10.0 66 ------- null} + -t 0.107536 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 123 -a 0 -x {9.0 10.0 66 ------- null} h -t 0.107536 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 123 -a 0 -x {9.0 10.0 66 ------- null} r -t 0.107984 -s 0 -d 9 -p ack -e 40 -c 0 -i 118 -a 0 -x {10.0 9.0 54 ------- null} + -t 0.107984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 129 -a 0 -x {9.0 10.0 69 ------- null} - -t 0.107984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 129 -a 0 -x {9.0 10.0 69 ------- null} h -t 0.107984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 129 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.108 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {9.0 10.0 62 ------- null} - -t 0.108 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {9.0 10.0 62 ------- null} h -t 0.108 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.108128 -s 0 -d 9 -p ack -e 40 -c 0 -i 122 -a 0 -x {10.0 9.0 56 ------- null} - -t 0.108128 -s 0 -d 9 -p ack -e 40 -c 0 -i 122 -a 0 -x {10.0 9.0 56 ------- null} h -t 0.108128 -s 0 -d 9 -p ack -e 40 -c 0 -i 122 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.10848 -s 10 -d 7 -p ack -e 40 -c 0 -i 126 -a 0 -x {10.0 9.0 58 ------- null} + -t 0.10848 -s 7 -d 0 -p ack -e 40 -c 0 -i 126 -a 0 -x {10.0 9.0 58 ------- null} h -t 0.10848 -s 7 -d 8 -p ack -e 40 -c 0 -i 126 -a 0 -x {10.0 9.0 58 ------- null} r -t 0.108624 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 111 -a 0 -x {9.0 10.0 60 ------- null} + -t 0.108624 -s 10 -d 7 -p ack -e 40 -c 0 -i 130 -a 0 -x {10.0 9.0 60 ------- null} - -t 0.108624 -s 10 -d 7 -p ack -e 40 -c 0 -i 130 -a 0 -x {10.0 9.0 60 ------- null} h -t 0.108624 -s 10 -d 7 -p ack -e 40 -c 0 -i 130 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.108688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 125 -a 0 -x {9.0 10.0 67 ------- null} + -t 0.108688 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 125 -a 0 -x {9.0 10.0 67 ------- null} h -t 0.108688 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 125 -a 0 -x {9.0 10.0 67 ------- null} + -t 0.109088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {9.0 10.0 63 ------- null} - -t 0.109088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {9.0 10.0 63 ------- null} h -t 0.109088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.109136 -s 0 -d 9 -p ack -e 40 -c 0 -i 120 -a 0 -x {10.0 9.0 55 ------- null} + -t 0.109136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 131 -a 0 -x {9.0 10.0 70 ------- null} - -t 0.109136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 131 -a 0 -x {9.0 10.0 70 ------- null} h -t 0.109136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 131 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.109184 -s 0 -d 9 -p ack -e 40 -c 0 -i 124 -a 0 -x {10.0 9.0 57 ------- null} - -t 0.109184 -s 0 -d 9 -p ack -e 40 -c 0 -i 124 -a 0 -x {10.0 9.0 57 ------- null} h -t 0.109184 -s 0 -d 9 -p ack -e 40 -c 0 -i 124 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.109568 -s 10 -d 7 -p ack -e 40 -c 0 -i 128 -a 0 -x {10.0 9.0 59 ------- null} + -t 0.109568 -s 7 -d 0 -p ack -e 40 -c 0 -i 128 -a 0 -x {10.0 9.0 59 ------- null} h -t 0.109568 -s 7 -d 8 -p ack -e 40 -c 0 -i 128 -a 0 -x {10.0 9.0 59 ------- null} r -t 0.109648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 127 -a 0 -x {9.0 10.0 68 ------- null} + -t 0.109648 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 127 -a 0 -x {9.0 10.0 68 ------- null} h -t 0.109648 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 127 -a 0 -x {9.0 10.0 68 ------- null} r -t 0.109712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 113 -a 0 -x {9.0 10.0 61 ------- null} + -t 0.109712 -s 10 -d 7 -p ack -e 40 -c 0 -i 132 -a 0 -x {10.0 9.0 61 ------- null} - -t 0.109712 -s 10 -d 7 -p ack -e 40 -c 0 -i 132 -a 0 -x {10.0 9.0 61 ------- null} h -t 0.109712 -s 10 -d 7 -p ack -e 40 -c 0 -i 132 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.11016 -s 0 -d 9 -p ack -e 40 -c 0 -i 122 -a 0 -x {10.0 9.0 56 ------- null} + -t 0.11016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 133 -a 0 -x {9.0 10.0 71 ------- null} - -t 0.11016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 133 -a 0 -x {9.0 10.0 71 ------- null} h -t 0.11016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 133 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.110176 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {9.0 10.0 64 ------- null} - -t 0.110176 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {9.0 10.0 64 ------- null} h -t 0.110176 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.110432 -s 0 -d 9 -p ack -e 40 -c 0 -i 126 -a 0 -x {10.0 9.0 58 ------- null} - -t 0.110432 -s 0 -d 9 -p ack -e 40 -c 0 -i 126 -a 0 -x {10.0 9.0 58 ------- null} h -t 0.110432 -s 0 -d 9 -p ack -e 40 -c 0 -i 126 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.110656 -s 10 -d 7 -p ack -e 40 -c 0 -i 130 -a 0 -x {10.0 9.0 60 ------- null} + -t 0.110656 -s 7 -d 0 -p ack -e 40 -c 0 -i 130 -a 0 -x {10.0 9.0 60 ------- null} h -t 0.110656 -s 7 -d 8 -p ack -e 40 -c 0 -i 130 -a 0 -x {10.0 9.0 60 ------- null} r -t 0.110784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 129 -a 0 -x {9.0 10.0 69 ------- null} + -t 0.110784 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 129 -a 0 -x {9.0 10.0 69 ------- null} h -t 0.110784 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 129 -a 0 -x {9.0 10.0 69 ------- null} r -t 0.1108 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 115 -a 0 -x {9.0 10.0 62 ------- null} + -t 0.1108 -s 10 -d 7 -p ack -e 40 -c 0 -i 134 -a 0 -x {10.0 9.0 62 ------- null} - -t 0.1108 -s 10 -d 7 -p ack -e 40 -c 0 -i 134 -a 0 -x {10.0 9.0 62 ------- null} h -t 0.1108 -s 10 -d 7 -p ack -e 40 -c 0 -i 134 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.111216 -s 0 -d 9 -p ack -e 40 -c 0 -i 124 -a 0 -x {10.0 9.0 57 ------- null} + -t 0.111216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 135 -a 0 -x {9.0 10.0 72 ------- null} - -t 0.111216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 135 -a 0 -x {9.0 10.0 72 ------- null} h -t 0.111216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 135 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.111328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {9.0 10.0 65 ------- null} - -t 0.111328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {9.0 10.0 65 ------- null} h -t 0.111328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.111552 -s 0 -d 9 -p ack -e 40 -c 0 -i 128 -a 0 -x {10.0 9.0 59 ------- null} - -t 0.111552 -s 0 -d 9 -p ack -e 40 -c 0 -i 128 -a 0 -x {10.0 9.0 59 ------- null} h -t 0.111552 -s 0 -d 9 -p ack -e 40 -c 0 -i 128 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.111744 -s 10 -d 7 -p ack -e 40 -c 0 -i 132 -a 0 -x {10.0 9.0 61 ------- null} + -t 0.111744 -s 7 -d 0 -p ack -e 40 -c 0 -i 132 -a 0 -x {10.0 9.0 61 ------- null} h -t 0.111744 -s 7 -d 8 -p ack -e 40 -c 0 -i 132 -a 0 -x {10.0 9.0 61 ------- null} r -t 0.111888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 117 -a 0 -x {9.0 10.0 63 ------- null} + -t 0.111888 -s 10 -d 7 -p ack -e 40 -c 0 -i 136 -a 0 -x {10.0 9.0 63 ------- null} - -t 0.111888 -s 10 -d 7 -p ack -e 40 -c 0 -i 136 -a 0 -x {10.0 9.0 63 ------- null} h -t 0.111888 -s 10 -d 7 -p ack -e 40 -c 0 -i 136 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.111936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 131 -a 0 -x {9.0 10.0 70 ------- null} + -t 0.111936 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 131 -a 0 -x {9.0 10.0 70 ------- null} h -t 0.111936 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 131 -a 0 -x {9.0 10.0 70 ------- null} + -t 0.112416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 123 -a 0 -x {9.0 10.0 66 ------- null} - -t 0.112416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 123 -a 0 -x {9.0 10.0 66 ------- null} h -t 0.112416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 123 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.112464 -s 0 -d 9 -p ack -e 40 -c 0 -i 126 -a 0 -x {10.0 9.0 58 ------- null} + -t 0.112464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 137 -a 0 -x {9.0 10.0 73 ------- null} - -t 0.112464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 137 -a 0 -x {9.0 10.0 73 ------- null} h -t 0.112464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 137 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.112592 -s 0 -d 9 -p ack -e 40 -c 0 -i 130 -a 0 -x {10.0 9.0 60 ------- null} - -t 0.112592 -s 0 -d 9 -p ack -e 40 -c 0 -i 130 -a 0 -x {10.0 9.0 60 ------- null} h -t 0.112592 -s 0 -d 9 -p ack -e 40 -c 0 -i 130 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.112832 -s 10 -d 7 -p ack -e 40 -c 0 -i 134 -a 0 -x {10.0 9.0 62 ------- null} + -t 0.112832 -s 7 -d 0 -p ack -e 40 -c 0 -i 134 -a 0 -x {10.0 9.0 62 ------- null} h -t 0.112832 -s 7 -d 8 -p ack -e 40 -c 0 -i 134 -a 0 -x {10.0 9.0 62 ------- null} r -t 0.11296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 133 -a 0 -x {9.0 10.0 71 ------- null} + -t 0.11296 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 133 -a 0 -x {9.0 10.0 71 ------- null} h -t 0.11296 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 133 -a 0 -x {9.0 10.0 71 ------- null} r -t 0.112976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {9.0 10.0 64 ------- null} + -t 0.112976 -s 10 -d 7 -p ack -e 40 -c 0 -i 138 -a 0 -x {10.0 9.0 64 ------- null} - -t 0.112976 -s 10 -d 7 -p ack -e 40 -c 0 -i 138 -a 0 -x {10.0 9.0 64 ------- null} h -t 0.112976 -s 10 -d 7 -p ack -e 40 -c 0 -i 138 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.113504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 125 -a 0 -x {9.0 10.0 67 ------- null} - -t 0.113504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 125 -a 0 -x {9.0 10.0 67 ------- null} h -t 0.113504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 125 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.113584 -s 0 -d 9 -p ack -e 40 -c 0 -i 128 -a 0 -x {10.0 9.0 59 ------- null} + -t 0.113584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 139 -a 0 -x {9.0 10.0 74 ------- null} - -t 0.113584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 139 -a 0 -x {9.0 10.0 74 ------- null} h -t 0.113584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 139 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.113728 -s 0 -d 9 -p ack -e 40 -c 0 -i 132 -a 0 -x {10.0 9.0 61 ------- null} - -t 0.113728 -s 0 -d 9 -p ack -e 40 -c 0 -i 132 -a 0 -x {10.0 9.0 61 ------- null} h -t 0.113728 -s 0 -d 9 -p ack -e 40 -c 0 -i 132 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.11392 -s 10 -d 7 -p ack -e 40 -c 0 -i 136 -a 0 -x {10.0 9.0 63 ------- null} + -t 0.11392 -s 7 -d 0 -p ack -e 40 -c 0 -i 136 -a 0 -x {10.0 9.0 63 ------- null} h -t 0.11392 -s 7 -d 8 -p ack -e 40 -c 0 -i 136 -a 0 -x {10.0 9.0 63 ------- null} r -t 0.114016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 135 -a 0 -x {9.0 10.0 72 ------- null} + -t 0.114016 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 135 -a 0 -x {9.0 10.0 72 ------- null} h -t 0.114016 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 135 -a 0 -x {9.0 10.0 72 ------- null} r -t 0.114128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 121 -a 0 -x {9.0 10.0 65 ------- null} + -t 0.114128 -s 10 -d 7 -p ack -e 40 -c 0 -i 140 -a 0 -x {10.0 9.0 65 ------- null} - -t 0.114128 -s 10 -d 7 -p ack -e 40 -c 0 -i 140 -a 0 -x {10.0 9.0 65 ------- null} h -t 0.114128 -s 10 -d 7 -p ack -e 40 -c 0 -i 140 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.114592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 127 -a 0 -x {9.0 10.0 68 ------- null} - -t 0.114592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 127 -a 0 -x {9.0 10.0 68 ------- null} h -t 0.114592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 127 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.114624 -s 0 -d 9 -p ack -e 40 -c 0 -i 130 -a 0 -x {10.0 9.0 60 ------- null} + -t 0.114624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 141 -a 0 -x {9.0 10.0 75 ------- null} - -t 0.114624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 141 -a 0 -x {9.0 10.0 75 ------- null} h -t 0.114624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 141 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.114816 -s 0 -d 9 -p ack -e 40 -c 0 -i 134 -a 0 -x {10.0 9.0 62 ------- null} - -t 0.114816 -s 0 -d 9 -p ack -e 40 -c 0 -i 134 -a 0 -x {10.0 9.0 62 ------- null} h -t 0.114816 -s 0 -d 9 -p ack -e 40 -c 0 -i 134 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.115008 -s 10 -d 7 -p ack -e 40 -c 0 -i 138 -a 0 -x {10.0 9.0 64 ------- null} + -t 0.115008 -s 7 -d 0 -p ack -e 40 -c 0 -i 138 -a 0 -x {10.0 9.0 64 ------- null} h -t 0.115008 -s 7 -d 8 -p ack -e 40 -c 0 -i 138 -a 0 -x {10.0 9.0 64 ------- null} r -t 0.115216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 123 -a 0 -x {9.0 10.0 66 ------- null} + -t 0.115216 -s 10 -d 7 -p ack -e 40 -c 0 -i 142 -a 0 -x {10.0 9.0 66 ------- null} - -t 0.115216 -s 10 -d 7 -p ack -e 40 -c 0 -i 142 -a 0 -x {10.0 9.0 66 ------- null} h -t 0.115216 -s 10 -d 7 -p ack -e 40 -c 0 -i 142 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.115264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 137 -a 0 -x {9.0 10.0 73 ------- null} + -t 0.115264 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 137 -a 0 -x {9.0 10.0 73 ------- null} h -t 0.115264 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 137 -a 0 -x {9.0 10.0 73 ------- null} + -t 0.11568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 129 -a 0 -x {9.0 10.0 69 ------- null} - -t 0.11568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 129 -a 0 -x {9.0 10.0 69 ------- null} h -t 0.11568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 129 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.11576 -s 0 -d 9 -p ack -e 40 -c 0 -i 132 -a 0 -x {10.0 9.0 61 ------- null} + -t 0.11576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {9.0 10.0 76 ------- null} - -t 0.11576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {9.0 10.0 76 ------- null} h -t 0.11576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.115824 -s 0 -d 9 -p ack -e 40 -c 0 -i 136 -a 0 -x {10.0 9.0 63 ------- null} - -t 0.115824 -s 0 -d 9 -p ack -e 40 -c 0 -i 136 -a 0 -x {10.0 9.0 63 ------- null} h -t 0.115824 -s 0 -d 9 -p ack -e 40 -c 0 -i 136 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.11616 -s 10 -d 7 -p ack -e 40 -c 0 -i 140 -a 0 -x {10.0 9.0 65 ------- null} + -t 0.11616 -s 7 -d 0 -p ack -e 40 -c 0 -i 140 -a 0 -x {10.0 9.0 65 ------- null} h -t 0.11616 -s 7 -d 8 -p ack -e 40 -c 0 -i 140 -a 0 -x {10.0 9.0 65 ------- null} r -t 0.116304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 125 -a 0 -x {9.0 10.0 67 ------- null} + -t 0.116304 -s 10 -d 7 -p ack -e 40 -c 0 -i 144 -a 0 -x {10.0 9.0 67 ------- null} - -t 0.116304 -s 10 -d 7 -p ack -e 40 -c 0 -i 144 -a 0 -x {10.0 9.0 67 ------- null} h -t 0.116304 -s 10 -d 7 -p ack -e 40 -c 0 -i 144 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.116384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 139 -a 0 -x {9.0 10.0 74 ------- null} + -t 0.116384 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 139 -a 0 -x {9.0 10.0 74 ------- null} h -t 0.116384 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 139 -a 0 -x {9.0 10.0 74 ------- null} + -t 0.116768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 131 -a 0 -x {9.0 10.0 70 ------- null} - -t 0.116768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 131 -a 0 -x {9.0 10.0 70 ------- null} h -t 0.116768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 131 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.116848 -s 0 -d 9 -p ack -e 40 -c 0 -i 134 -a 0 -x {10.0 9.0 62 ------- null} + -t 0.116848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {9.0 10.0 77 ------- null} - -t 0.116848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {9.0 10.0 77 ------- null} h -t 0.116848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.11696 -s 0 -d 9 -p ack -e 40 -c 0 -i 138 -a 0 -x {10.0 9.0 64 ------- null} - -t 0.11696 -s 0 -d 9 -p ack -e 40 -c 0 -i 138 -a 0 -x {10.0 9.0 64 ------- null} h -t 0.11696 -s 0 -d 9 -p ack -e 40 -c 0 -i 138 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.117248 -s 10 -d 7 -p ack -e 40 -c 0 -i 142 -a 0 -x {10.0 9.0 66 ------- null} + -t 0.117248 -s 7 -d 0 -p ack -e 40 -c 0 -i 142 -a 0 -x {10.0 9.0 66 ------- null} h -t 0.117248 -s 7 -d 8 -p ack -e 40 -c 0 -i 142 -a 0 -x {10.0 9.0 66 ------- null} r -t 0.117392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 127 -a 0 -x {9.0 10.0 68 ------- null} + -t 0.117392 -s 10 -d 7 -p ack -e 40 -c 0 -i 146 -a 0 -x {10.0 9.0 68 ------- null} - -t 0.117392 -s 10 -d 7 -p ack -e 40 -c 0 -i 146 -a 0 -x {10.0 9.0 68 ------- null} h -t 0.117392 -s 10 -d 7 -p ack -e 40 -c 0 -i 146 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.117424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 141 -a 0 -x {9.0 10.0 75 ------- null} + -t 0.117424 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 141 -a 0 -x {9.0 10.0 75 ------- null} h -t 0.117424 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 141 -a 0 -x {9.0 10.0 75 ------- null} + -t 0.117856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 133 -a 0 -x {9.0 10.0 71 ------- null} - -t 0.117856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 133 -a 0 -x {9.0 10.0 71 ------- null} h -t 0.117856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 133 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.117856 -s 0 -d 9 -p ack -e 40 -c 0 -i 136 -a 0 -x {10.0 9.0 63 ------- null} + -t 0.117856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {9.0 10.0 78 ------- null} - -t 0.117856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {9.0 10.0 78 ------- null} h -t 0.117856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.118064 -s 0 -d 9 -p ack -e 40 -c 0 -i 140 -a 0 -x {10.0 9.0 65 ------- null} - -t 0.118064 -s 0 -d 9 -p ack -e 40 -c 0 -i 140 -a 0 -x {10.0 9.0 65 ------- null} h -t 0.118064 -s 0 -d 9 -p ack -e 40 -c 0 -i 140 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.118336 -s 10 -d 7 -p ack -e 40 -c 0 -i 144 -a 0 -x {10.0 9.0 67 ------- null} + -t 0.118336 -s 7 -d 0 -p ack -e 40 -c 0 -i 144 -a 0 -x {10.0 9.0 67 ------- null} h -t 0.118336 -s 7 -d 8 -p ack -e 40 -c 0 -i 144 -a 0 -x {10.0 9.0 67 ------- null} r -t 0.11848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 129 -a 0 -x {9.0 10.0 69 ------- null} + -t 0.11848 -s 10 -d 7 -p ack -e 40 -c 0 -i 148 -a 0 -x {10.0 9.0 69 ------- null} - -t 0.11848 -s 10 -d 7 -p ack -e 40 -c 0 -i 148 -a 0 -x {10.0 9.0 69 ------- null} h -t 0.11848 -s 10 -d 7 -p ack -e 40 -c 0 -i 148 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.11856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {9.0 10.0 76 ------- null} + -t 0.11856 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {9.0 10.0 76 ------- null} h -t 0.11856 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {9.0 10.0 76 ------- null} + -t 0.118944 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 135 -a 0 -x {9.0 10.0 72 ------- null} - -t 0.118944 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 135 -a 0 -x {9.0 10.0 72 ------- null} h -t 0.118944 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 135 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.118992 -s 0 -d 9 -p ack -e 40 -c 0 -i 138 -a 0 -x {10.0 9.0 64 ------- null} + -t 0.118992 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {9.0 10.0 79 ------- null} - -t 0.118992 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {9.0 10.0 79 ------- null} h -t 0.118992 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.119088 -s 0 -d 9 -p ack -e 40 -c 0 -i 142 -a 0 -x {10.0 9.0 66 ------- null} - -t 0.119088 -s 0 -d 9 -p ack -e 40 -c 0 -i 142 -a 0 -x {10.0 9.0 66 ------- null} h -t 0.119088 -s 0 -d 9 -p ack -e 40 -c 0 -i 142 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.119424 -s 10 -d 7 -p ack -e 40 -c 0 -i 146 -a 0 -x {10.0 9.0 68 ------- null} + -t 0.119424 -s 7 -d 0 -p ack -e 40 -c 0 -i 146 -a 0 -x {10.0 9.0 68 ------- null} h -t 0.119424 -s 7 -d 8 -p ack -e 40 -c 0 -i 146 -a 0 -x {10.0 9.0 68 ------- null} r -t 0.119568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 131 -a 0 -x {9.0 10.0 70 ------- null} + -t 0.119568 -s 10 -d 7 -p ack -e 40 -c 0 -i 150 -a 0 -x {10.0 9.0 70 ------- null} - -t 0.119568 -s 10 -d 7 -p ack -e 40 -c 0 -i 150 -a 0 -x {10.0 9.0 70 ------- null} h -t 0.119568 -s 10 -d 7 -p ack -e 40 -c 0 -i 150 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.119648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {9.0 10.0 77 ------- null} + -t 0.119648 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {9.0 10.0 77 ------- null} h -t 0.119648 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {9.0 10.0 77 ------- null} + -t 0.120032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 137 -a 0 -x {9.0 10.0 73 ------- null} - -t 0.120032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 137 -a 0 -x {9.0 10.0 73 ------- null} h -t 0.120032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 137 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.120096 -s 0 -d 9 -p ack -e 40 -c 0 -i 140 -a 0 -x {10.0 9.0 65 ------- null} + -t 0.120096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {9.0 10.0 80 ------- null} - -t 0.120096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {9.0 10.0 80 ------- null} h -t 0.120096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.120112 -s 0 -d 9 -p ack -e 40 -c 0 -i 144 -a 0 -x {10.0 9.0 67 ------- null} - -t 0.120112 -s 0 -d 9 -p ack -e 40 -c 0 -i 144 -a 0 -x {10.0 9.0 67 ------- null} h -t 0.120112 -s 0 -d 9 -p ack -e 40 -c 0 -i 144 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.120512 -s 10 -d 7 -p ack -e 40 -c 0 -i 148 -a 0 -x {10.0 9.0 69 ------- null} + -t 0.120512 -s 7 -d 0 -p ack -e 40 -c 0 -i 148 -a 0 -x {10.0 9.0 69 ------- null} h -t 0.120512 -s 7 -d 8 -p ack -e 40 -c 0 -i 148 -a 0 -x {10.0 9.0 69 ------- null} r -t 0.120656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 133 -a 0 -x {9.0 10.0 71 ------- null} + -t 0.120656 -s 10 -d 7 -p ack -e 40 -c 0 -i 152 -a 0 -x {10.0 9.0 71 ------- null} - -t 0.120656 -s 10 -d 7 -p ack -e 40 -c 0 -i 152 -a 0 -x {10.0 9.0 71 ------- null} h -t 0.120656 -s 10 -d 7 -p ack -e 40 -c 0 -i 152 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.120656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {9.0 10.0 78 ------- null} + -t 0.120656 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {9.0 10.0 78 ------- null} h -t 0.120656 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {9.0 10.0 78 ------- null} + -t 0.12112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 139 -a 0 -x {9.0 10.0 74 ------- null} - -t 0.12112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 139 -a 0 -x {9.0 10.0 74 ------- null} h -t 0.12112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 139 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.12112 -s 0 -d 9 -p ack -e 40 -c 0 -i 142 -a 0 -x {10.0 9.0 66 ------- null} + -t 0.12112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {9.0 10.0 81 ------- null} - -t 0.12112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {9.0 10.0 81 ------- null} h -t 0.12112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.121184 -s 0 -d 9 -p ack -e 40 -c 0 -i 146 -a 0 -x {10.0 9.0 68 ------- null} - -t 0.121184 -s 0 -d 9 -p ack -e 40 -c 0 -i 146 -a 0 -x {10.0 9.0 68 ------- null} h -t 0.121184 -s 0 -d 9 -p ack -e 40 -c 0 -i 146 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.1216 -s 10 -d 7 -p ack -e 40 -c 0 -i 150 -a 0 -x {10.0 9.0 70 ------- null} + -t 0.1216 -s 7 -d 0 -p ack -e 40 -c 0 -i 150 -a 0 -x {10.0 9.0 70 ------- null} h -t 0.1216 -s 7 -d 8 -p ack -e 40 -c 0 -i 150 -a 0 -x {10.0 9.0 70 ------- null} r -t 0.121744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 135 -a 0 -x {9.0 10.0 72 ------- null} + -t 0.121744 -s 10 -d 7 -p ack -e 40 -c 0 -i 154 -a 0 -x {10.0 9.0 72 ------- null} - -t 0.121744 -s 10 -d 7 -p ack -e 40 -c 0 -i 154 -a 0 -x {10.0 9.0 72 ------- null} h -t 0.121744 -s 10 -d 7 -p ack -e 40 -c 0 -i 154 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.121792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {9.0 10.0 79 ------- null} + -t 0.121792 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {9.0 10.0 79 ------- null} h -t 0.121792 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {9.0 10.0 79 ------- null} r -t 0.122144 -s 0 -d 9 -p ack -e 40 -c 0 -i 144 -a 0 -x {10.0 9.0 67 ------- null} + -t 0.122144 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {9.0 10.0 82 ------- null} - -t 0.122144 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {9.0 10.0 82 ------- null} h -t 0.122144 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.122208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 141 -a 0 -x {9.0 10.0 75 ------- null} - -t 0.122208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 141 -a 0 -x {9.0 10.0 75 ------- null} h -t 0.122208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 141 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.122336 -s 0 -d 9 -p ack -e 40 -c 0 -i 148 -a 0 -x {10.0 9.0 69 ------- null} - -t 0.122336 -s 0 -d 9 -p ack -e 40 -c 0 -i 148 -a 0 -x {10.0 9.0 69 ------- null} h -t 0.122336 -s 0 -d 9 -p ack -e 40 -c 0 -i 148 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.122688 -s 10 -d 7 -p ack -e 40 -c 0 -i 152 -a 0 -x {10.0 9.0 71 ------- null} + -t 0.122688 -s 7 -d 0 -p ack -e 40 -c 0 -i 152 -a 0 -x {10.0 9.0 71 ------- null} h -t 0.122688 -s 7 -d 8 -p ack -e 40 -c 0 -i 152 -a 0 -x {10.0 9.0 71 ------- null} r -t 0.122832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 137 -a 0 -x {9.0 10.0 73 ------- null} + -t 0.122832 -s 10 -d 7 -p ack -e 40 -c 0 -i 156 -a 0 -x {10.0 9.0 73 ------- null} - -t 0.122832 -s 10 -d 7 -p ack -e 40 -c 0 -i 156 -a 0 -x {10.0 9.0 73 ------- null} h -t 0.122832 -s 10 -d 7 -p ack -e 40 -c 0 -i 156 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.122896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {9.0 10.0 80 ------- null} + -t 0.122896 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {9.0 10.0 80 ------- null} h -t 0.122896 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {9.0 10.0 80 ------- null} r -t 0.123216 -s 0 -d 9 -p ack -e 40 -c 0 -i 146 -a 0 -x {10.0 9.0 68 ------- null} + -t 0.123216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {9.0 10.0 83 ------- null} - -t 0.123216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {9.0 10.0 83 ------- null} h -t 0.123216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.123296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {9.0 10.0 76 ------- null} - -t 0.123296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {9.0 10.0 76 ------- null} h -t 0.123296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.12344 -s 0 -d 9 -p ack -e 40 -c 0 -i 150 -a 0 -x {10.0 9.0 70 ------- null} - -t 0.12344 -s 0 -d 9 -p ack -e 40 -c 0 -i 150 -a 0 -x {10.0 9.0 70 ------- null} h -t 0.12344 -s 0 -d 9 -p ack -e 40 -c 0 -i 150 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.123776 -s 10 -d 7 -p ack -e 40 -c 0 -i 154 -a 0 -x {10.0 9.0 72 ------- null} + -t 0.123776 -s 7 -d 0 -p ack -e 40 -c 0 -i 154 -a 0 -x {10.0 9.0 72 ------- null} h -t 0.123776 -s 7 -d 8 -p ack -e 40 -c 0 -i 154 -a 0 -x {10.0 9.0 72 ------- null} r -t 0.12392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 139 -a 0 -x {9.0 10.0 74 ------- null} + -t 0.12392 -s 10 -d 7 -p ack -e 40 -c 0 -i 158 -a 0 -x {10.0 9.0 74 ------- null} - -t 0.12392 -s 10 -d 7 -p ack -e 40 -c 0 -i 158 -a 0 -x {10.0 9.0 74 ------- null} h -t 0.12392 -s 10 -d 7 -p ack -e 40 -c 0 -i 158 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.12392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {9.0 10.0 81 ------- null} + -t 0.12392 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {9.0 10.0 81 ------- null} h -t 0.12392 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {9.0 10.0 81 ------- null} r -t 0.124368 -s 0 -d 9 -p ack -e 40 -c 0 -i 148 -a 0 -x {10.0 9.0 69 ------- null} + -t 0.124368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {9.0 10.0 84 ------- null} - -t 0.124368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {9.0 10.0 84 ------- null} h -t 0.124368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.124384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {9.0 10.0 77 ------- null} - -t 0.124384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {9.0 10.0 77 ------- null} h -t 0.124384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.124608 -s 0 -d 9 -p ack -e 40 -c 0 -i 152 -a 0 -x {10.0 9.0 71 ------- null} - -t 0.124608 -s 0 -d 9 -p ack -e 40 -c 0 -i 152 -a 0 -x {10.0 9.0 71 ------- null} h -t 0.124608 -s 0 -d 9 -p ack -e 40 -c 0 -i 152 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.124864 -s 10 -d 7 -p ack -e 40 -c 0 -i 156 -a 0 -x {10.0 9.0 73 ------- null} + -t 0.124864 -s 7 -d 0 -p ack -e 40 -c 0 -i 156 -a 0 -x {10.0 9.0 73 ------- null} h -t 0.124864 -s 7 -d 8 -p ack -e 40 -c 0 -i 156 -a 0 -x {10.0 9.0 73 ------- null} r -t 0.124944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {9.0 10.0 82 ------- null} + -t 0.124944 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {9.0 10.0 82 ------- null} h -t 0.124944 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {9.0 10.0 82 ------- null} r -t 0.125008 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 141 -a 0 -x {9.0 10.0 75 ------- null} + -t 0.125008 -s 10 -d 7 -p ack -e 40 -c 0 -i 160 -a 0 -x {10.0 9.0 75 ------- null} - -t 0.125008 -s 10 -d 7 -p ack -e 40 -c 0 -i 160 -a 0 -x {10.0 9.0 75 ------- null} h -t 0.125008 -s 10 -d 7 -p ack -e 40 -c 0 -i 160 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.125472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {9.0 10.0 78 ------- null} - -t 0.125472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {9.0 10.0 78 ------- null} h -t 0.125472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.125472 -s 0 -d 9 -p ack -e 40 -c 0 -i 150 -a 0 -x {10.0 9.0 70 ------- null} + -t 0.125472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {9.0 10.0 85 ------- null} - -t 0.125472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {9.0 10.0 85 ------- null} h -t 0.125472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.125616 -s 0 -d 9 -p ack -e 40 -c 0 -i 154 -a 0 -x {10.0 9.0 72 ------- null} - -t 0.125616 -s 0 -d 9 -p ack -e 40 -c 0 -i 154 -a 0 -x {10.0 9.0 72 ------- null} h -t 0.125616 -s 0 -d 9 -p ack -e 40 -c 0 -i 154 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.125952 -s 10 -d 7 -p ack -e 40 -c 0 -i 158 -a 0 -x {10.0 9.0 74 ------- null} + -t 0.125952 -s 7 -d 0 -p ack -e 40 -c 0 -i 158 -a 0 -x {10.0 9.0 74 ------- null} h -t 0.125952 -s 7 -d 8 -p ack -e 40 -c 0 -i 158 -a 0 -x {10.0 9.0 74 ------- null} r -t 0.126016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {9.0 10.0 83 ------- null} + -t 0.126016 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {9.0 10.0 83 ------- null} h -t 0.126016 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {9.0 10.0 83 ------- null} r -t 0.126096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 143 -a 0 -x {9.0 10.0 76 ------- null} + -t 0.126096 -s 10 -d 7 -p ack -e 40 -c 0 -i 162 -a 0 -x {10.0 9.0 76 ------- null} - -t 0.126096 -s 10 -d 7 -p ack -e 40 -c 0 -i 162 -a 0 -x {10.0 9.0 76 ------- null} h -t 0.126096 -s 10 -d 7 -p ack -e 40 -c 0 -i 162 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.12656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {9.0 10.0 79 ------- null} - -t 0.12656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {9.0 10.0 79 ------- null} h -t 0.12656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.12664 -s 0 -d 9 -p ack -e 40 -c 0 -i 152 -a 0 -x {10.0 9.0 71 ------- null} + -t 0.12664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 163 -a 0 -x {9.0 10.0 86 ------- null} - -t 0.12664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 163 -a 0 -x {9.0 10.0 86 ------- null} h -t 0.12664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 163 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.1268 -s 0 -d 9 -p ack -e 40 -c 0 -i 156 -a 0 -x {10.0 9.0 73 ------- null} - -t 0.1268 -s 0 -d 9 -p ack -e 40 -c 0 -i 156 -a 0 -x {10.0 9.0 73 ------- null} h -t 0.1268 -s 0 -d 9 -p ack -e 40 -c 0 -i 156 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.12704 -s 10 -d 7 -p ack -e 40 -c 0 -i 160 -a 0 -x {10.0 9.0 75 ------- null} + -t 0.12704 -s 7 -d 0 -p ack -e 40 -c 0 -i 160 -a 0 -x {10.0 9.0 75 ------- null} h -t 0.12704 -s 7 -d 8 -p ack -e 40 -c 0 -i 160 -a 0 -x {10.0 9.0 75 ------- null} r -t 0.127168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {9.0 10.0 84 ------- null} + -t 0.127168 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {9.0 10.0 84 ------- null} h -t 0.127168 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {9.0 10.0 84 ------- null} r -t 0.127184 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 145 -a 0 -x {9.0 10.0 77 ------- null} + -t 0.127184 -s 10 -d 7 -p ack -e 40 -c 0 -i 164 -a 0 -x {10.0 9.0 77 ------- null} - -t 0.127184 -s 10 -d 7 -p ack -e 40 -c 0 -i 164 -a 0 -x {10.0 9.0 77 ------- null} h -t 0.127184 -s 10 -d 7 -p ack -e 40 -c 0 -i 164 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.127648 -s 0 -d 9 -p ack -e 40 -c 0 -i 154 -a 0 -x {10.0 9.0 72 ------- null} + -t 0.127648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 165 -a 0 -x {9.0 10.0 87 ------- null} - -t 0.127648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 165 -a 0 -x {9.0 10.0 87 ------- null} h -t 0.127648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 165 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.127648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {9.0 10.0 80 ------- null} - -t 0.127648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {9.0 10.0 80 ------- null} h -t 0.127648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.12792 -s 0 -d 9 -p ack -e 40 -c 0 -i 158 -a 0 -x {10.0 9.0 74 ------- null} - -t 0.12792 -s 0 -d 9 -p ack -e 40 -c 0 -i 158 -a 0 -x {10.0 9.0 74 ------- null} h -t 0.12792 -s 0 -d 9 -p ack -e 40 -c 0 -i 158 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.128128 -s 10 -d 7 -p ack -e 40 -c 0 -i 162 -a 0 -x {10.0 9.0 76 ------- null} + -t 0.128128 -s 7 -d 0 -p ack -e 40 -c 0 -i 162 -a 0 -x {10.0 9.0 76 ------- null} h -t 0.128128 -s 7 -d 8 -p ack -e 40 -c 0 -i 162 -a 0 -x {10.0 9.0 76 ------- null} r -t 0.128272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 147 -a 0 -x {9.0 10.0 78 ------- null} + -t 0.128272 -s 10 -d 7 -p ack -e 40 -c 0 -i 166 -a 0 -x {10.0 9.0 78 ------- null} - -t 0.128272 -s 10 -d 7 -p ack -e 40 -c 0 -i 166 -a 0 -x {10.0 9.0 78 ------- null} h -t 0.128272 -s 10 -d 7 -p ack -e 40 -c 0 -i 166 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.128272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {9.0 10.0 85 ------- null} + -t 0.128272 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {9.0 10.0 85 ------- null} h -t 0.128272 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {9.0 10.0 85 ------- null} r -t 0.128832 -s 0 -d 9 -p ack -e 40 -c 0 -i 156 -a 0 -x {10.0 9.0 73 ------- null} + -t 0.128832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 167 -a 0 -x {9.0 10.0 88 ------- null} - -t 0.128832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 167 -a 0 -x {9.0 10.0 88 ------- null} h -t 0.128832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 167 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.128896 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {9.0 10.0 81 ------- null} - -t 0.128896 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {9.0 10.0 81 ------- null} h -t 0.128896 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.129056 -s 0 -d 9 -p ack -e 40 -c 0 -i 160 -a 0 -x {10.0 9.0 75 ------- null} - -t 0.129056 -s 0 -d 9 -p ack -e 40 -c 0 -i 160 -a 0 -x {10.0 9.0 75 ------- null} h -t 0.129056 -s 0 -d 9 -p ack -e 40 -c 0 -i 160 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.129216 -s 10 -d 7 -p ack -e 40 -c 0 -i 164 -a 0 -x {10.0 9.0 77 ------- null} + -t 0.129216 -s 7 -d 0 -p ack -e 40 -c 0 -i 164 -a 0 -x {10.0 9.0 77 ------- null} h -t 0.129216 -s 7 -d 8 -p ack -e 40 -c 0 -i 164 -a 0 -x {10.0 9.0 77 ------- null} r -t 0.12936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 149 -a 0 -x {9.0 10.0 79 ------- null} + -t 0.12936 -s 10 -d 7 -p ack -e 40 -c 0 -i 168 -a 0 -x {10.0 9.0 79 ------- null} - -t 0.12936 -s 10 -d 7 -p ack -e 40 -c 0 -i 168 -a 0 -x {10.0 9.0 79 ------- null} h -t 0.12936 -s 10 -d 7 -p ack -e 40 -c 0 -i 168 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.12944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 163 -a 0 -x {9.0 10.0 86 ------- null} + -t 0.12944 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 163 -a 0 -x {9.0 10.0 86 ------- null} h -t 0.12944 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 163 -a 0 -x {9.0 10.0 86 ------- null} r -t 0.129952 -s 0 -d 9 -p ack -e 40 -c 0 -i 158 -a 0 -x {10.0 9.0 74 ------- null} + -t 0.129952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 169 -a 0 -x {9.0 10.0 89 ------- null} - -t 0.129952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 169 -a 0 -x {9.0 10.0 89 ------- null} h -t 0.129952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 169 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.129984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {9.0 10.0 82 ------- null} - -t 0.129984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {9.0 10.0 82 ------- null} h -t 0.129984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.13016 -s 0 -d 9 -p ack -e 40 -c 0 -i 162 -a 0 -x {10.0 9.0 76 ------- null} - -t 0.13016 -s 0 -d 9 -p ack -e 40 -c 0 -i 162 -a 0 -x {10.0 9.0 76 ------- null} h -t 0.13016 -s 0 -d 9 -p ack -e 40 -c 0 -i 162 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.130304 -s 10 -d 7 -p ack -e 40 -c 0 -i 166 -a 0 -x {10.0 9.0 78 ------- null} + -t 0.130304 -s 7 -d 0 -p ack -e 40 -c 0 -i 166 -a 0 -x {10.0 9.0 78 ------- null} h -t 0.130304 -s 7 -d 8 -p ack -e 40 -c 0 -i 166 -a 0 -x {10.0 9.0 78 ------- null} r -t 0.130448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 165 -a 0 -x {9.0 10.0 87 ------- null} + -t 0.130448 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 165 -a 0 -x {9.0 10.0 87 ------- null} h -t 0.130448 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 165 -a 0 -x {9.0 10.0 87 ------- null} r -t 0.130448 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 151 -a 0 -x {9.0 10.0 80 ------- null} + -t 0.130448 -s 10 -d 7 -p ack -e 40 -c 0 -i 170 -a 0 -x {10.0 9.0 80 ------- null} - -t 0.130448 -s 10 -d 7 -p ack -e 40 -c 0 -i 170 -a 0 -x {10.0 9.0 80 ------- null} h -t 0.130448 -s 10 -d 7 -p ack -e 40 -c 0 -i 170 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.131072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {9.0 10.0 83 ------- null} - -t 0.131072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {9.0 10.0 83 ------- null} h -t 0.131072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.131088 -s 0 -d 9 -p ack -e 40 -c 0 -i 160 -a 0 -x {10.0 9.0 75 ------- null} + -t 0.131088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 171 -a 0 -x {9.0 10.0 90 ------- null} - -t 0.131088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 171 -a 0 -x {9.0 10.0 90 ------- null} h -t 0.131088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 171 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.131264 -s 0 -d 9 -p ack -e 40 -c 0 -i 164 -a 0 -x {10.0 9.0 77 ------- null} - -t 0.131264 -s 0 -d 9 -p ack -e 40 -c 0 -i 164 -a 0 -x {10.0 9.0 77 ------- null} h -t 0.131264 -s 0 -d 9 -p ack -e 40 -c 0 -i 164 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.131392 -s 10 -d 7 -p ack -e 40 -c 0 -i 168 -a 0 -x {10.0 9.0 79 ------- null} + -t 0.131392 -s 7 -d 0 -p ack -e 40 -c 0 -i 168 -a 0 -x {10.0 9.0 79 ------- null} h -t 0.131392 -s 7 -d 8 -p ack -e 40 -c 0 -i 168 -a 0 -x {10.0 9.0 79 ------- null} r -t 0.131632 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 167 -a 0 -x {9.0 10.0 88 ------- null} + -t 0.131632 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 167 -a 0 -x {9.0 10.0 88 ------- null} h -t 0.131632 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 167 -a 0 -x {9.0 10.0 88 ------- null} r -t 0.131696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 153 -a 0 -x {9.0 10.0 81 ------- null} + -t 0.131696 -s 10 -d 7 -p ack -e 40 -c 0 -i 172 -a 0 -x {10.0 9.0 81 ------- null} - -t 0.131696 -s 10 -d 7 -p ack -e 40 -c 0 -i 172 -a 0 -x {10.0 9.0 81 ------- null} h -t 0.131696 -s 10 -d 7 -p ack -e 40 -c 0 -i 172 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.13216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {9.0 10.0 84 ------- null} - -t 0.13216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {9.0 10.0 84 ------- null} h -t 0.13216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.132192 -s 0 -d 9 -p ack -e 40 -c 0 -i 162 -a 0 -x {10.0 9.0 76 ------- null} + -t 0.132192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 173 -a 0 -x {9.0 10.0 91 ------- null} - -t 0.132192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 173 -a 0 -x {9.0 10.0 91 ------- null} h -t 0.132192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 173 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.13224 -s 0 -d 9 -p ack -e 40 -c 0 -i 166 -a 0 -x {10.0 9.0 78 ------- null} - -t 0.13224 -s 0 -d 9 -p ack -e 40 -c 0 -i 166 -a 0 -x {10.0 9.0 78 ------- null} h -t 0.13224 -s 0 -d 9 -p ack -e 40 -c 0 -i 166 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.13248 -s 10 -d 7 -p ack -e 40 -c 0 -i 170 -a 0 -x {10.0 9.0 80 ------- null} + -t 0.13248 -s 7 -d 0 -p ack -e 40 -c 0 -i 170 -a 0 -x {10.0 9.0 80 ------- null} h -t 0.13248 -s 7 -d 8 -p ack -e 40 -c 0 -i 170 -a 0 -x {10.0 9.0 80 ------- null} r -t 0.132752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 169 -a 0 -x {9.0 10.0 89 ------- null} + -t 0.132752 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 169 -a 0 -x {9.0 10.0 89 ------- null} h -t 0.132752 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 169 -a 0 -x {9.0 10.0 89 ------- null} r -t 0.132784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 155 -a 0 -x {9.0 10.0 82 ------- null} + -t 0.132784 -s 10 -d 7 -p ack -e 40 -c 0 -i 174 -a 0 -x {10.0 9.0 82 ------- null} - -t 0.132784 -s 10 -d 7 -p ack -e 40 -c 0 -i 174 -a 0 -x {10.0 9.0 82 ------- null} h -t 0.132784 -s 10 -d 7 -p ack -e 40 -c 0 -i 174 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.133248 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {9.0 10.0 85 ------- null} - -t 0.133248 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {9.0 10.0 85 ------- null} h -t 0.133248 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.133296 -s 0 -d 9 -p ack -e 40 -c 0 -i 164 -a 0 -x {10.0 9.0 77 ------- null} + -t 0.133296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 175 -a 0 -x {9.0 10.0 92 ------- null} - -t 0.133296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 175 -a 0 -x {9.0 10.0 92 ------- null} h -t 0.133296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 175 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.133392 -s 0 -d 9 -p ack -e 40 -c 0 -i 168 -a 0 -x {10.0 9.0 79 ------- null} - -t 0.133392 -s 0 -d 9 -p ack -e 40 -c 0 -i 168 -a 0 -x {10.0 9.0 79 ------- null} h -t 0.133392 -s 0 -d 9 -p ack -e 40 -c 0 -i 168 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.133728 -s 10 -d 7 -p ack -e 40 -c 0 -i 172 -a 0 -x {10.0 9.0 81 ------- null} + -t 0.133728 -s 7 -d 0 -p ack -e 40 -c 0 -i 172 -a 0 -x {10.0 9.0 81 ------- null} h -t 0.133728 -s 7 -d 8 -p ack -e 40 -c 0 -i 172 -a 0 -x {10.0 9.0 81 ------- null} r -t 0.133872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 157 -a 0 -x {9.0 10.0 83 ------- null} + -t 0.133872 -s 10 -d 7 -p ack -e 40 -c 0 -i 176 -a 0 -x {10.0 9.0 83 ------- null} - -t 0.133872 -s 10 -d 7 -p ack -e 40 -c 0 -i 176 -a 0 -x {10.0 9.0 83 ------- null} h -t 0.133872 -s 10 -d 7 -p ack -e 40 -c 0 -i 176 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.133888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 171 -a 0 -x {9.0 10.0 90 ------- null} + -t 0.133888 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 171 -a 0 -x {9.0 10.0 90 ------- null} h -t 0.133888 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 171 -a 0 -x {9.0 10.0 90 ------- null} r -t 0.134272 -s 0 -d 9 -p ack -e 40 -c 0 -i 166 -a 0 -x {10.0 9.0 78 ------- null} + -t 0.134272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 177 -a 0 -x {9.0 10.0 93 ------- null} - -t 0.134272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 177 -a 0 -x {9.0 10.0 93 ------- null} h -t 0.134272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 177 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.134336 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 163 -a 0 -x {9.0 10.0 86 ------- null} - -t 0.134336 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 163 -a 0 -x {9.0 10.0 86 ------- null} h -t 0.134336 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 163 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.134448 -s 0 -d 9 -p ack -e 40 -c 0 -i 170 -a 0 -x {10.0 9.0 80 ------- null} - -t 0.134448 -s 0 -d 9 -p ack -e 40 -c 0 -i 170 -a 0 -x {10.0 9.0 80 ------- null} h -t 0.134448 -s 0 -d 9 -p ack -e 40 -c 0 -i 170 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.134816 -s 10 -d 7 -p ack -e 40 -c 0 -i 174 -a 0 -x {10.0 9.0 82 ------- null} + -t 0.134816 -s 7 -d 0 -p ack -e 40 -c 0 -i 174 -a 0 -x {10.0 9.0 82 ------- null} h -t 0.134816 -s 7 -d 8 -p ack -e 40 -c 0 -i 174 -a 0 -x {10.0 9.0 82 ------- null} r -t 0.13496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 159 -a 0 -x {9.0 10.0 84 ------- null} + -t 0.13496 -s 10 -d 7 -p ack -e 40 -c 0 -i 178 -a 0 -x {10.0 9.0 84 ------- null} - -t 0.13496 -s 10 -d 7 -p ack -e 40 -c 0 -i 178 -a 0 -x {10.0 9.0 84 ------- null} h -t 0.13496 -s 10 -d 7 -p ack -e 40 -c 0 -i 178 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.134992 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 173 -a 0 -x {9.0 10.0 91 ------- null} + -t 0.134992 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 173 -a 0 -x {9.0 10.0 91 ------- null} h -t 0.134992 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 173 -a 0 -x {9.0 10.0 91 ------- null} r -t 0.135424 -s 0 -d 9 -p ack -e 40 -c 0 -i 168 -a 0 -x {10.0 9.0 79 ------- null} + -t 0.135424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 179 -a 0 -x {9.0 10.0 94 ------- null} - -t 0.135424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 179 -a 0 -x {9.0 10.0 94 ------- null} h -t 0.135424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 179 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.135424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 165 -a 0 -x {9.0 10.0 87 ------- null} - -t 0.135424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 165 -a 0 -x {9.0 10.0 87 ------- null} h -t 0.135424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 165 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.135712 -s 0 -d 9 -p ack -e 40 -c 0 -i 172 -a 0 -x {10.0 9.0 81 ------- null} - -t 0.135712 -s 0 -d 9 -p ack -e 40 -c 0 -i 172 -a 0 -x {10.0 9.0 81 ------- null} h -t 0.135712 -s 0 -d 9 -p ack -e 40 -c 0 -i 172 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.135904 -s 10 -d 7 -p ack -e 40 -c 0 -i 176 -a 0 -x {10.0 9.0 83 ------- null} + -t 0.135904 -s 7 -d 0 -p ack -e 40 -c 0 -i 176 -a 0 -x {10.0 9.0 83 ------- null} h -t 0.135904 -s 7 -d 8 -p ack -e 40 -c 0 -i 176 -a 0 -x {10.0 9.0 83 ------- null} r -t 0.136048 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 161 -a 0 -x {9.0 10.0 85 ------- null} + -t 0.136048 -s 10 -d 7 -p ack -e 40 -c 0 -i 180 -a 0 -x {10.0 9.0 85 ------- null} - -t 0.136048 -s 10 -d 7 -p ack -e 40 -c 0 -i 180 -a 0 -x {10.0 9.0 85 ------- null} h -t 0.136048 -s 10 -d 7 -p ack -e 40 -c 0 -i 180 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.136096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 175 -a 0 -x {9.0 10.0 92 ------- null} + -t 0.136096 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 175 -a 0 -x {9.0 10.0 92 ------- null} h -t 0.136096 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 175 -a 0 -x {9.0 10.0 92 ------- null} r -t 0.13648 -s 0 -d 9 -p ack -e 40 -c 0 -i 170 -a 0 -x {10.0 9.0 80 ------- null} + -t 0.13648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 181 -a 0 -x {9.0 10.0 95 ------- null} - -t 0.13648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 181 -a 0 -x {9.0 10.0 95 ------- null} h -t 0.13648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 181 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.136752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 167 -a 0 -x {9.0 10.0 88 ------- null} - -t 0.136752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 167 -a 0 -x {9.0 10.0 88 ------- null} h -t 0.136752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 167 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.136896 -s 0 -d 9 -p ack -e 40 -c 0 -i 174 -a 0 -x {10.0 9.0 82 ------- null} - -t 0.136896 -s 0 -d 9 -p ack -e 40 -c 0 -i 174 -a 0 -x {10.0 9.0 82 ------- null} h -t 0.136896 -s 0 -d 9 -p ack -e 40 -c 0 -i 174 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.136992 -s 10 -d 7 -p ack -e 40 -c 0 -i 178 -a 0 -x {10.0 9.0 84 ------- null} + -t 0.136992 -s 7 -d 0 -p ack -e 40 -c 0 -i 178 -a 0 -x {10.0 9.0 84 ------- null} h -t 0.136992 -s 7 -d 8 -p ack -e 40 -c 0 -i 178 -a 0 -x {10.0 9.0 84 ------- null} r -t 0.137072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 177 -a 0 -x {9.0 10.0 93 ------- null} + -t 0.137072 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 177 -a 0 -x {9.0 10.0 93 ------- null} h -t 0.137072 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 177 -a 0 -x {9.0 10.0 93 ------- null} r -t 0.137136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 163 -a 0 -x {9.0 10.0 86 ------- null} + -t 0.137136 -s 10 -d 7 -p ack -e 40 -c 0 -i 182 -a 0 -x {10.0 9.0 86 ------- null} - -t 0.137136 -s 10 -d 7 -p ack -e 40 -c 0 -i 182 -a 0 -x {10.0 9.0 86 ------- null} h -t 0.137136 -s 10 -d 7 -p ack -e 40 -c 0 -i 182 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.137744 -s 0 -d 9 -p ack -e 40 -c 0 -i 172 -a 0 -x {10.0 9.0 81 ------- null} + -t 0.137744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {9.0 10.0 96 ------- null} - -t 0.137744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {9.0 10.0 96 ------- null} h -t 0.137744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.13784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 169 -a 0 -x {9.0 10.0 89 ------- null} - -t 0.13784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 169 -a 0 -x {9.0 10.0 89 ------- null} h -t 0.13784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 169 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.137984 -s 0 -d 9 -p ack -e 40 -c 0 -i 176 -a 0 -x {10.0 9.0 83 ------- null} - -t 0.137984 -s 0 -d 9 -p ack -e 40 -c 0 -i 176 -a 0 -x {10.0 9.0 83 ------- null} h -t 0.137984 -s 0 -d 9 -p ack -e 40 -c 0 -i 176 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.13808 -s 10 -d 7 -p ack -e 40 -c 0 -i 180 -a 0 -x {10.0 9.0 85 ------- null} + -t 0.13808 -s 7 -d 0 -p ack -e 40 -c 0 -i 180 -a 0 -x {10.0 9.0 85 ------- null} h -t 0.13808 -s 7 -d 8 -p ack -e 40 -c 0 -i 180 -a 0 -x {10.0 9.0 85 ------- null} r -t 0.138224 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 179 -a 0 -x {9.0 10.0 94 ------- null} + -t 0.138224 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 179 -a 0 -x {9.0 10.0 94 ------- null} h -t 0.138224 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 179 -a 0 -x {9.0 10.0 94 ------- null} r -t 0.138224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 165 -a 0 -x {9.0 10.0 87 ------- null} + -t 0.138224 -s 10 -d 7 -p ack -e 40 -c 0 -i 184 -a 0 -x {10.0 9.0 87 ------- null} - -t 0.138224 -s 10 -d 7 -p ack -e 40 -c 0 -i 184 -a 0 -x {10.0 9.0 87 ------- null} h -t 0.138224 -s 10 -d 7 -p ack -e 40 -c 0 -i 184 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.138928 -s 0 -d 9 -p ack -e 40 -c 0 -i 174 -a 0 -x {10.0 9.0 82 ------- null} + -t 0.138928 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {9.0 10.0 97 ------- null} - -t 0.138928 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {9.0 10.0 97 ------- null} h -t 0.138928 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.138928 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 171 -a 0 -x {9.0 10.0 90 ------- null} - -t 0.138928 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 171 -a 0 -x {9.0 10.0 90 ------- null} h -t 0.138928 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 171 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.13904 -s 0 -d 9 -p ack -e 40 -c 0 -i 178 -a 0 -x {10.0 9.0 84 ------- null} - -t 0.13904 -s 0 -d 9 -p ack -e 40 -c 0 -i 178 -a 0 -x {10.0 9.0 84 ------- null} h -t 0.13904 -s 0 -d 9 -p ack -e 40 -c 0 -i 178 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.139168 -s 10 -d 7 -p ack -e 40 -c 0 -i 182 -a 0 -x {10.0 9.0 86 ------- null} + -t 0.139168 -s 7 -d 0 -p ack -e 40 -c 0 -i 182 -a 0 -x {10.0 9.0 86 ------- null} h -t 0.139168 -s 7 -d 8 -p ack -e 40 -c 0 -i 182 -a 0 -x {10.0 9.0 86 ------- null} r -t 0.13928 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 181 -a 0 -x {9.0 10.0 95 ------- null} + -t 0.13928 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 181 -a 0 -x {9.0 10.0 95 ------- null} h -t 0.13928 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 181 -a 0 -x {9.0 10.0 95 ------- null} r -t 0.139552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 167 -a 0 -x {9.0 10.0 88 ------- null} + -t 0.139552 -s 10 -d 7 -p ack -e 40 -c 0 -i 186 -a 0 -x {10.0 9.0 88 ------- null} - -t 0.139552 -s 10 -d 7 -p ack -e 40 -c 0 -i 186 -a 0 -x {10.0 9.0 88 ------- null} h -t 0.139552 -s 10 -d 7 -p ack -e 40 -c 0 -i 186 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.140016 -s 0 -d 9 -p ack -e 40 -c 0 -i 176 -a 0 -x {10.0 9.0 83 ------- null} + -t 0.140016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {9.0 10.0 98 ------- null} - -t 0.140016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {9.0 10.0 98 ------- null} h -t 0.140016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.140016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 173 -a 0 -x {9.0 10.0 91 ------- null} - -t 0.140016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 173 -a 0 -x {9.0 10.0 91 ------- null} h -t 0.140016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 173 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.140224 -s 0 -d 9 -p ack -e 40 -c 0 -i 180 -a 0 -x {10.0 9.0 85 ------- null} - -t 0.140224 -s 0 -d 9 -p ack -e 40 -c 0 -i 180 -a 0 -x {10.0 9.0 85 ------- null} h -t 0.140224 -s 0 -d 9 -p ack -e 40 -c 0 -i 180 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.140256 -s 10 -d 7 -p ack -e 40 -c 0 -i 184 -a 0 -x {10.0 9.0 87 ------- null} + -t 0.140256 -s 7 -d 0 -p ack -e 40 -c 0 -i 184 -a 0 -x {10.0 9.0 87 ------- null} h -t 0.140256 -s 7 -d 8 -p ack -e 40 -c 0 -i 184 -a 0 -x {10.0 9.0 87 ------- null} r -t 0.140544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {9.0 10.0 96 ------- null} + -t 0.140544 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {9.0 10.0 96 ------- null} h -t 0.140544 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {9.0 10.0 96 ------- null} r -t 0.14064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 169 -a 0 -x {9.0 10.0 89 ------- null} + -t 0.14064 -s 10 -d 7 -p ack -e 40 -c 0 -i 188 -a 0 -x {10.0 9.0 89 ------- null} - -t 0.14064 -s 10 -d 7 -p ack -e 40 -c 0 -i 188 -a 0 -x {10.0 9.0 89 ------- null} h -t 0.14064 -s 10 -d 7 -p ack -e 40 -c 0 -i 188 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.141072 -s 0 -d 9 -p ack -e 40 -c 0 -i 178 -a 0 -x {10.0 9.0 84 ------- null} + -t 0.141072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {9.0 10.0 99 ------- null} - -t 0.141072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {9.0 10.0 99 ------- null} h -t 0.141072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.141104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 175 -a 0 -x {9.0 10.0 92 ------- null} - -t 0.141104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 175 -a 0 -x {9.0 10.0 92 ------- null} h -t 0.141104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 175 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.141232 -s 0 -d 9 -p ack -e 40 -c 0 -i 182 -a 0 -x {10.0 9.0 86 ------- null} - -t 0.141232 -s 0 -d 9 -p ack -e 40 -c 0 -i 182 -a 0 -x {10.0 9.0 86 ------- null} h -t 0.141232 -s 0 -d 9 -p ack -e 40 -c 0 -i 182 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.141584 -s 10 -d 7 -p ack -e 40 -c 0 -i 186 -a 0 -x {10.0 9.0 88 ------- null} + -t 0.141584 -s 7 -d 0 -p ack -e 40 -c 0 -i 186 -a 0 -x {10.0 9.0 88 ------- null} h -t 0.141584 -s 7 -d 8 -p ack -e 40 -c 0 -i 186 -a 0 -x {10.0 9.0 88 ------- null} r -t 0.141728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {9.0 10.0 97 ------- null} + -t 0.141728 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {9.0 10.0 97 ------- null} h -t 0.141728 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {9.0 10.0 97 ------- null} r -t 0.141728 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 171 -a 0 -x {9.0 10.0 90 ------- null} + -t 0.141728 -s 10 -d 7 -p ack -e 40 -c 0 -i 190 -a 0 -x {10.0 9.0 90 ------- null} - -t 0.141728 -s 10 -d 7 -p ack -e 40 -c 0 -i 190 -a 0 -x {10.0 9.0 90 ------- null} h -t 0.141728 -s 10 -d 7 -p ack -e 40 -c 0 -i 190 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.142192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 177 -a 0 -x {9.0 10.0 93 ------- null} - -t 0.142192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 177 -a 0 -x {9.0 10.0 93 ------- null} h -t 0.142192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 177 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.142256 -s 0 -d 9 -p ack -e 40 -c 0 -i 180 -a 0 -x {10.0 9.0 85 ------- null} + -t 0.142256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {9.0 10.0 100 ------- null} - -t 0.142256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {9.0 10.0 100 ------- null} h -t 0.142256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.142432 -s 0 -d 9 -p ack -e 40 -c 0 -i 184 -a 0 -x {10.0 9.0 87 ------- null} - -t 0.142432 -s 0 -d 9 -p ack -e 40 -c 0 -i 184 -a 0 -x {10.0 9.0 87 ------- null} h -t 0.142432 -s 0 -d 9 -p ack -e 40 -c 0 -i 184 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.142672 -s 10 -d 7 -p ack -e 40 -c 0 -i 188 -a 0 -x {10.0 9.0 89 ------- null} + -t 0.142672 -s 7 -d 0 -p ack -e 40 -c 0 -i 188 -a 0 -x {10.0 9.0 89 ------- null} h -t 0.142672 -s 7 -d 8 -p ack -e 40 -c 0 -i 188 -a 0 -x {10.0 9.0 89 ------- null} r -t 0.142816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {9.0 10.0 98 ------- null} + -t 0.142816 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {9.0 10.0 98 ------- null} h -t 0.142816 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {9.0 10.0 98 ------- null} r -t 0.142816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 173 -a 0 -x {9.0 10.0 91 ------- null} + -t 0.142816 -s 10 -d 7 -p ack -e 40 -c 0 -i 192 -a 0 -x {10.0 9.0 91 ------- null} - -t 0.142816 -s 10 -d 7 -p ack -e 40 -c 0 -i 192 -a 0 -x {10.0 9.0 91 ------- null} h -t 0.142816 -s 10 -d 7 -p ack -e 40 -c 0 -i 192 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.143264 -s 0 -d 9 -p ack -e 40 -c 0 -i 182 -a 0 -x {10.0 9.0 86 ------- null} + -t 0.143264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {9.0 10.0 101 ------- null} - -t 0.143264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {9.0 10.0 101 ------- null} h -t 0.143264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.14328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 179 -a 0 -x {9.0 10.0 94 ------- null} - -t 0.14328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 179 -a 0 -x {9.0 10.0 94 ------- null} h -t 0.14328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 179 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.143504 -s 0 -d 9 -p ack -e 40 -c 0 -i 186 -a 0 -x {10.0 9.0 88 ------- null} - -t 0.143504 -s 0 -d 9 -p ack -e 40 -c 0 -i 186 -a 0 -x {10.0 9.0 88 ------- null} h -t 0.143504 -s 0 -d 9 -p ack -e 40 -c 0 -i 186 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.14376 -s 10 -d 7 -p ack -e 40 -c 0 -i 190 -a 0 -x {10.0 9.0 90 ------- null} + -t 0.14376 -s 7 -d 0 -p ack -e 40 -c 0 -i 190 -a 0 -x {10.0 9.0 90 ------- null} h -t 0.14376 -s 7 -d 8 -p ack -e 40 -c 0 -i 190 -a 0 -x {10.0 9.0 90 ------- null} r -t 0.143872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {9.0 10.0 99 ------- null} + -t 0.143872 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {9.0 10.0 99 ------- null} h -t 0.143872 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {9.0 10.0 99 ------- null} r -t 0.143904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 175 -a 0 -x {9.0 10.0 92 ------- null} + -t 0.143904 -s 10 -d 7 -p ack -e 40 -c 0 -i 194 -a 0 -x {10.0 9.0 92 ------- null} - -t 0.143904 -s 10 -d 7 -p ack -e 40 -c 0 -i 194 -a 0 -x {10.0 9.0 92 ------- null} h -t 0.143904 -s 10 -d 7 -p ack -e 40 -c 0 -i 194 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.144368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 181 -a 0 -x {9.0 10.0 95 ------- null} - -t 0.144368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 181 -a 0 -x {9.0 10.0 95 ------- null} h -t 0.144368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 181 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.144464 -s 0 -d 9 -p ack -e 40 -c 0 -i 184 -a 0 -x {10.0 9.0 87 ------- null} + -t 0.144464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {9.0 10.0 102 ------- null} - -t 0.144464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {9.0 10.0 102 ------- null} h -t 0.144464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.144624 -s 0 -d 9 -p ack -e 40 -c 0 -i 188 -a 0 -x {10.0 9.0 89 ------- null} - -t 0.144624 -s 0 -d 9 -p ack -e 40 -c 0 -i 188 -a 0 -x {10.0 9.0 89 ------- null} h -t 0.144624 -s 0 -d 9 -p ack -e 40 -c 0 -i 188 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.144848 -s 10 -d 7 -p ack -e 40 -c 0 -i 192 -a 0 -x {10.0 9.0 91 ------- null} + -t 0.144848 -s 7 -d 0 -p ack -e 40 -c 0 -i 192 -a 0 -x {10.0 9.0 91 ------- null} h -t 0.144848 -s 7 -d 8 -p ack -e 40 -c 0 -i 192 -a 0 -x {10.0 9.0 91 ------- null} r -t 0.144992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 177 -a 0 -x {9.0 10.0 93 ------- null} + -t 0.144992 -s 10 -d 7 -p ack -e 40 -c 0 -i 196 -a 0 -x {10.0 9.0 93 ------- null} - -t 0.144992 -s 10 -d 7 -p ack -e 40 -c 0 -i 196 -a 0 -x {10.0 9.0 93 ------- null} h -t 0.144992 -s 10 -d 7 -p ack -e 40 -c 0 -i 196 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.145056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {9.0 10.0 100 ------- null} + -t 0.145056 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {9.0 10.0 100 ------- null} h -t 0.145056 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {9.0 10.0 100 ------- null} + -t 0.145456 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {9.0 10.0 96 ------- null} - -t 0.145456 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {9.0 10.0 96 ------- null} h -t 0.145456 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.145536 -s 0 -d 9 -p ack -e 40 -c 0 -i 186 -a 0 -x {10.0 9.0 88 ------- null} + -t 0.145536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {9.0 10.0 103 ------- null} - -t 0.145536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {9.0 10.0 103 ------- null} h -t 0.145536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.145568 -s 0 -d 9 -p ack -e 40 -c 0 -i 190 -a 0 -x {10.0 9.0 90 ------- null} - -t 0.145568 -s 0 -d 9 -p ack -e 40 -c 0 -i 190 -a 0 -x {10.0 9.0 90 ------- null} h -t 0.145568 -s 0 -d 9 -p ack -e 40 -c 0 -i 190 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.145936 -s 10 -d 7 -p ack -e 40 -c 0 -i 194 -a 0 -x {10.0 9.0 92 ------- null} + -t 0.145936 -s 7 -d 0 -p ack -e 40 -c 0 -i 194 -a 0 -x {10.0 9.0 92 ------- null} h -t 0.145936 -s 7 -d 8 -p ack -e 40 -c 0 -i 194 -a 0 -x {10.0 9.0 92 ------- null} r -t 0.146064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {9.0 10.0 101 ------- null} + -t 0.146064 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {9.0 10.0 101 ------- null} h -t 0.146064 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {9.0 10.0 101 ------- null} r -t 0.14608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 179 -a 0 -x {9.0 10.0 94 ------- null} + -t 0.14608 -s 10 -d 7 -p ack -e 40 -c 0 -i 198 -a 0 -x {10.0 9.0 94 ------- null} - -t 0.14608 -s 10 -d 7 -p ack -e 40 -c 0 -i 198 -a 0 -x {10.0 9.0 94 ------- null} h -t 0.14608 -s 10 -d 7 -p ack -e 40 -c 0 -i 198 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.146544 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {9.0 10.0 97 ------- null} - -t 0.146544 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {9.0 10.0 97 ------- null} h -t 0.146544 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.146624 -s 0 -d 9 -p ack -e 40 -c 0 -i 192 -a 0 -x {10.0 9.0 91 ------- null} - -t 0.146624 -s 0 -d 9 -p ack -e 40 -c 0 -i 192 -a 0 -x {10.0 9.0 91 ------- null} h -t 0.146624 -s 0 -d 9 -p ack -e 40 -c 0 -i 192 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.146656 -s 0 -d 9 -p ack -e 40 -c 0 -i 188 -a 0 -x {10.0 9.0 89 ------- null} + -t 0.146656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {9.0 10.0 104 ------- null} - -t 0.146656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {9.0 10.0 104 ------- null} h -t 0.146656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.147024 -s 10 -d 7 -p ack -e 40 -c 0 -i 196 -a 0 -x {10.0 9.0 93 ------- null} + -t 0.147024 -s 7 -d 0 -p ack -e 40 -c 0 -i 196 -a 0 -x {10.0 9.0 93 ------- null} h -t 0.147024 -s 7 -d 8 -p ack -e 40 -c 0 -i 196 -a 0 -x {10.0 9.0 93 ------- null} r -t 0.147168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 181 -a 0 -x {9.0 10.0 95 ------- null} + -t 0.147168 -s 10 -d 7 -p ack -e 40 -c 0 -i 200 -a 0 -x {10.0 9.0 95 ------- null} - -t 0.147168 -s 10 -d 7 -p ack -e 40 -c 0 -i 200 -a 0 -x {10.0 9.0 95 ------- null} h -t 0.147168 -s 10 -d 7 -p ack -e 40 -c 0 -i 200 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.147264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {9.0 10.0 102 ------- null} + -t 0.147264 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {9.0 10.0 102 ------- null} h -t 0.147264 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {9.0 10.0 102 ------- null} r -t 0.1476 -s 0 -d 9 -p ack -e 40 -c 0 -i 190 -a 0 -x {10.0 9.0 90 ------- null} + -t 0.1476 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {9.0 10.0 105 ------- null} - -t 0.1476 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {9.0 10.0 105 ------- null} h -t 0.1476 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.147632 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {9.0 10.0 98 ------- null} - -t 0.147632 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {9.0 10.0 98 ------- null} h -t 0.147632 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.147728 -s 0 -d 9 -p ack -e 40 -c 0 -i 194 -a 0 -x {10.0 9.0 92 ------- null} - -t 0.147728 -s 0 -d 9 -p ack -e 40 -c 0 -i 194 -a 0 -x {10.0 9.0 92 ------- null} h -t 0.147728 -s 0 -d 9 -p ack -e 40 -c 0 -i 194 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.148112 -s 10 -d 7 -p ack -e 40 -c 0 -i 198 -a 0 -x {10.0 9.0 94 ------- null} + -t 0.148112 -s 7 -d 0 -p ack -e 40 -c 0 -i 198 -a 0 -x {10.0 9.0 94 ------- null} h -t 0.148112 -s 7 -d 8 -p ack -e 40 -c 0 -i 198 -a 0 -x {10.0 9.0 94 ------- null} r -t 0.148256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 183 -a 0 -x {9.0 10.0 96 ------- null} + -t 0.148256 -s 10 -d 7 -p ack -e 40 -c 0 -i 202 -a 0 -x {10.0 9.0 96 ------- null} - -t 0.148256 -s 10 -d 7 -p ack -e 40 -c 0 -i 202 -a 0 -x {10.0 9.0 96 ------- null} h -t 0.148256 -s 10 -d 7 -p ack -e 40 -c 0 -i 202 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.148336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {9.0 10.0 103 ------- null} + -t 0.148336 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {9.0 10.0 103 ------- null} h -t 0.148336 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {9.0 10.0 103 ------- null} r -t 0.148656 -s 0 -d 9 -p ack -e 40 -c 0 -i 192 -a 0 -x {10.0 9.0 91 ------- null} + -t 0.148656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 203 -a 0 -x {9.0 10.0 106 ------- null} - -t 0.148656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 203 -a 0 -x {9.0 10.0 106 ------- null} h -t 0.148656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 203 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.14872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {9.0 10.0 99 ------- null} - -t 0.14872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {9.0 10.0 99 ------- null} h -t 0.14872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.148784 -s 0 -d 9 -p ack -e 40 -c 0 -i 196 -a 0 -x {10.0 9.0 93 ------- null} - -t 0.148784 -s 0 -d 9 -p ack -e 40 -c 0 -i 196 -a 0 -x {10.0 9.0 93 ------- null} h -t 0.148784 -s 0 -d 9 -p ack -e 40 -c 0 -i 196 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.1492 -s 10 -d 7 -p ack -e 40 -c 0 -i 200 -a 0 -x {10.0 9.0 95 ------- null} + -t 0.1492 -s 7 -d 0 -p ack -e 40 -c 0 -i 200 -a 0 -x {10.0 9.0 95 ------- null} h -t 0.1492 -s 7 -d 8 -p ack -e 40 -c 0 -i 200 -a 0 -x {10.0 9.0 95 ------- null} r -t 0.149344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 185 -a 0 -x {9.0 10.0 97 ------- null} + -t 0.149344 -s 10 -d 7 -p ack -e 40 -c 0 -i 204 -a 0 -x {10.0 9.0 97 ------- null} - -t 0.149344 -s 10 -d 7 -p ack -e 40 -c 0 -i 204 -a 0 -x {10.0 9.0 97 ------- null} h -t 0.149344 -s 10 -d 7 -p ack -e 40 -c 0 -i 204 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.149456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {9.0 10.0 104 ------- null} + -t 0.149456 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {9.0 10.0 104 ------- null} h -t 0.149456 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {9.0 10.0 104 ------- null} r -t 0.14976 -s 0 -d 9 -p ack -e 40 -c 0 -i 194 -a 0 -x {10.0 9.0 92 ------- null} + -t 0.14976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 205 -a 0 -x {9.0 10.0 107 ------- null} - -t 0.14976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 205 -a 0 -x {9.0 10.0 107 ------- null} h -t 0.14976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 205 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.149808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {9.0 10.0 100 ------- null} - -t 0.149808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {9.0 10.0 100 ------- null} h -t 0.149808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.150096 -s 0 -d 9 -p ack -e 40 -c 0 -i 198 -a 0 -x {10.0 9.0 94 ------- null} - -t 0.150096 -s 0 -d 9 -p ack -e 40 -c 0 -i 198 -a 0 -x {10.0 9.0 94 ------- null} h -t 0.150096 -s 0 -d 9 -p ack -e 40 -c 0 -i 198 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.150288 -s 10 -d 7 -p ack -e 40 -c 0 -i 202 -a 0 -x {10.0 9.0 96 ------- null} + -t 0.150288 -s 7 -d 0 -p ack -e 40 -c 0 -i 202 -a 0 -x {10.0 9.0 96 ------- null} h -t 0.150288 -s 7 -d 8 -p ack -e 40 -c 0 -i 202 -a 0 -x {10.0 9.0 96 ------- null} r -t 0.1504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {9.0 10.0 105 ------- null} + -t 0.1504 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {9.0 10.0 105 ------- null} h -t 0.1504 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {9.0 10.0 105 ------- null} r -t 0.150432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 187 -a 0 -x {9.0 10.0 98 ------- null} + -t 0.150432 -s 10 -d 7 -p ack -e 40 -c 0 -i 206 -a 0 -x {10.0 9.0 98 ------- null} - -t 0.150432 -s 10 -d 7 -p ack -e 40 -c 0 -i 206 -a 0 -x {10.0 9.0 98 ------- null} h -t 0.150432 -s 10 -d 7 -p ack -e 40 -c 0 -i 206 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.150816 -s 0 -d 9 -p ack -e 40 -c 0 -i 196 -a 0 -x {10.0 9.0 93 ------- null} + -t 0.150816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 207 -a 0 -x {9.0 10.0 108 ------- null} - -t 0.150816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 207 -a 0 -x {9.0 10.0 108 ------- null} h -t 0.150816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 207 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.15112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {9.0 10.0 101 ------- null} - -t 0.15112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {9.0 10.0 101 ------- null} h -t 0.15112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.1512 -s 0 -d 9 -p ack -e 40 -c 0 -i 200 -a 0 -x {10.0 9.0 95 ------- null} - -t 0.1512 -s 0 -d 9 -p ack -e 40 -c 0 -i 200 -a 0 -x {10.0 9.0 95 ------- null} h -t 0.1512 -s 0 -d 9 -p ack -e 40 -c 0 -i 200 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.151376 -s 10 -d 7 -p ack -e 40 -c 0 -i 204 -a 0 -x {10.0 9.0 97 ------- null} + -t 0.151376 -s 7 -d 0 -p ack -e 40 -c 0 -i 204 -a 0 -x {10.0 9.0 97 ------- null} h -t 0.151376 -s 7 -d 8 -p ack -e 40 -c 0 -i 204 -a 0 -x {10.0 9.0 97 ------- null} r -t 0.151456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 203 -a 0 -x {9.0 10.0 106 ------- null} + -t 0.151456 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 203 -a 0 -x {9.0 10.0 106 ------- null} h -t 0.151456 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 203 -a 0 -x {9.0 10.0 106 ------- null} r -t 0.15152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 189 -a 0 -x {9.0 10.0 99 ------- null} + -t 0.15152 -s 10 -d 7 -p ack -e 40 -c 0 -i 208 -a 0 -x {10.0 9.0 99 ------- null} - -t 0.15152 -s 10 -d 7 -p ack -e 40 -c 0 -i 208 -a 0 -x {10.0 9.0 99 ------- null} h -t 0.15152 -s 10 -d 7 -p ack -e 40 -c 0 -i 208 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.152128 -s 0 -d 9 -p ack -e 40 -c 0 -i 198 -a 0 -x {10.0 9.0 94 ------- null} + -t 0.152128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 209 -a 0 -x {9.0 10.0 109 ------- null} - -t 0.152128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 209 -a 0 -x {9.0 10.0 109 ------- null} h -t 0.152128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 209 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.152208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {9.0 10.0 102 ------- null} - -t 0.152208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {9.0 10.0 102 ------- null} h -t 0.152208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.152368 -s 0 -d 9 -p ack -e 40 -c 0 -i 202 -a 0 -x {10.0 9.0 96 ------- null} - -t 0.152368 -s 0 -d 9 -p ack -e 40 -c 0 -i 202 -a 0 -x {10.0 9.0 96 ------- null} h -t 0.152368 -s 0 -d 9 -p ack -e 40 -c 0 -i 202 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.152464 -s 10 -d 7 -p ack -e 40 -c 0 -i 206 -a 0 -x {10.0 9.0 98 ------- null} + -t 0.152464 -s 7 -d 0 -p ack -e 40 -c 0 -i 206 -a 0 -x {10.0 9.0 98 ------- null} h -t 0.152464 -s 7 -d 8 -p ack -e 40 -c 0 -i 206 -a 0 -x {10.0 9.0 98 ------- null} r -t 0.15256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 205 -a 0 -x {9.0 10.0 107 ------- null} + -t 0.15256 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 205 -a 0 -x {9.0 10.0 107 ------- null} h -t 0.15256 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 205 -a 0 -x {9.0 10.0 107 ------- null} r -t 0.152608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 191 -a 0 -x {9.0 10.0 100 ------- null} + -t 0.152608 -s 10 -d 7 -p ack -e 40 -c 0 -i 210 -a 0 -x {10.0 9.0 100 ------- null} - -t 0.152608 -s 10 -d 7 -p ack -e 40 -c 0 -i 210 -a 0 -x {10.0 9.0 100 ------- null} h -t 0.152608 -s 10 -d 7 -p ack -e 40 -c 0 -i 210 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.153232 -s 0 -d 9 -p ack -e 40 -c 0 -i 200 -a 0 -x {10.0 9.0 95 ------- null} + -t 0.153232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 211 -a 0 -x {9.0 10.0 110 ------- null} - -t 0.153232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 211 -a 0 -x {9.0 10.0 110 ------- null} h -t 0.153232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 211 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.153296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {9.0 10.0 103 ------- null} - -t 0.153296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {9.0 10.0 103 ------- null} h -t 0.153296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.153488 -s 0 -d 9 -p ack -e 40 -c 0 -i 204 -a 0 -x {10.0 9.0 97 ------- null} - -t 0.153488 -s 0 -d 9 -p ack -e 40 -c 0 -i 204 -a 0 -x {10.0 9.0 97 ------- null} h -t 0.153488 -s 0 -d 9 -p ack -e 40 -c 0 -i 204 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.153552 -s 10 -d 7 -p ack -e 40 -c 0 -i 208 -a 0 -x {10.0 9.0 99 ------- null} + -t 0.153552 -s 7 -d 0 -p ack -e 40 -c 0 -i 208 -a 0 -x {10.0 9.0 99 ------- null} h -t 0.153552 -s 7 -d 8 -p ack -e 40 -c 0 -i 208 -a 0 -x {10.0 9.0 99 ------- null} r -t 0.153616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 207 -a 0 -x {9.0 10.0 108 ------- null} + -t 0.153616 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 207 -a 0 -x {9.0 10.0 108 ------- null} h -t 0.153616 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 207 -a 0 -x {9.0 10.0 108 ------- null} r -t 0.15392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 193 -a 0 -x {9.0 10.0 101 ------- null} + -t 0.15392 -s 10 -d 7 -p ack -e 40 -c 0 -i 212 -a 0 -x {10.0 9.0 101 ------- null} - -t 0.15392 -s 10 -d 7 -p ack -e 40 -c 0 -i 212 -a 0 -x {10.0 9.0 101 ------- null} h -t 0.15392 -s 10 -d 7 -p ack -e 40 -c 0 -i 212 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.154384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {9.0 10.0 104 ------- null} - -t 0.154384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {9.0 10.0 104 ------- null} h -t 0.154384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.1544 -s 0 -d 9 -p ack -e 40 -c 0 -i 202 -a 0 -x {10.0 9.0 96 ------- null} + -t 0.1544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 213 -a 0 -x {9.0 10.0 111 ------- null} - -t 0.1544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 213 -a 0 -x {9.0 10.0 111 ------- null} h -t 0.1544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 213 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.15464 -s 10 -d 7 -p ack -e 40 -c 0 -i 210 -a 0 -x {10.0 9.0 100 ------- null} + -t 0.15464 -s 7 -d 0 -p ack -e 40 -c 0 -i 210 -a 0 -x {10.0 9.0 100 ------- null} h -t 0.15464 -s 7 -d 8 -p ack -e 40 -c 0 -i 210 -a 0 -x {10.0 9.0 100 ------- null} + -t 0.154656 -s 0 -d 9 -p ack -e 40 -c 0 -i 206 -a 0 -x {10.0 9.0 98 ------- null} - -t 0.154656 -s 0 -d 9 -p ack -e 40 -c 0 -i 206 -a 0 -x {10.0 9.0 98 ------- null} h -t 0.154656 -s 0 -d 9 -p ack -e 40 -c 0 -i 206 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.154928 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 209 -a 0 -x {9.0 10.0 109 ------- null} + -t 0.154928 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 209 -a 0 -x {9.0 10.0 109 ------- null} h -t 0.154928 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 209 -a 0 -x {9.0 10.0 109 ------- null} r -t 0.155008 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 195 -a 0 -x {9.0 10.0 102 ------- null} + -t 0.155008 -s 10 -d 7 -p ack -e 40 -c 0 -i 214 -a 0 -x {10.0 9.0 102 ------- null} - -t 0.155008 -s 10 -d 7 -p ack -e 40 -c 0 -i 214 -a 0 -x {10.0 9.0 102 ------- null} h -t 0.155008 -s 10 -d 7 -p ack -e 40 -c 0 -i 214 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.155504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {9.0 10.0 105 ------- null} - -t 0.155504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {9.0 10.0 105 ------- null} h -t 0.155504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.15552 -s 0 -d 9 -p ack -e 40 -c 0 -i 204 -a 0 -x {10.0 9.0 97 ------- null} + -t 0.15552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 215 -a 0 -x {9.0 10.0 112 ------- null} - -t 0.15552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 215 -a 0 -x {9.0 10.0 112 ------- null} h -t 0.15552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 215 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.155808 -s 0 -d 9 -p ack -e 40 -c 0 -i 208 -a 0 -x {10.0 9.0 99 ------- null} - -t 0.155808 -s 0 -d 9 -p ack -e 40 -c 0 -i 208 -a 0 -x {10.0 9.0 99 ------- null} h -t 0.155808 -s 0 -d 9 -p ack -e 40 -c 0 -i 208 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.155952 -s 10 -d 7 -p ack -e 40 -c 0 -i 212 -a 0 -x {10.0 9.0 101 ------- null} + -t 0.155952 -s 7 -d 0 -p ack -e 40 -c 0 -i 212 -a 0 -x {10.0 9.0 101 ------- null} h -t 0.155952 -s 7 -d 8 -p ack -e 40 -c 0 -i 212 -a 0 -x {10.0 9.0 101 ------- null} r -t 0.156032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 211 -a 0 -x {9.0 10.0 110 ------- null} + -t 0.156032 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 211 -a 0 -x {9.0 10.0 110 ------- null} h -t 0.156032 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 211 -a 0 -x {9.0 10.0 110 ------- null} r -t 0.156096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 197 -a 0 -x {9.0 10.0 103 ------- null} + -t 0.156096 -s 10 -d 7 -p ack -e 40 -c 0 -i 216 -a 0 -x {10.0 9.0 103 ------- null} - -t 0.156096 -s 10 -d 7 -p ack -e 40 -c 0 -i 216 -a 0 -x {10.0 9.0 103 ------- null} h -t 0.156096 -s 10 -d 7 -p ack -e 40 -c 0 -i 216 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.156688 -s 0 -d 9 -p ack -e 40 -c 0 -i 206 -a 0 -x {10.0 9.0 98 ------- null} + -t 0.156688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 217 -a 0 -x {9.0 10.0 113 ------- null} - -t 0.156688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 217 -a 0 -x {9.0 10.0 113 ------- null} h -t 0.156688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 217 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.156704 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 203 -a 0 -x {9.0 10.0 106 ------- null} - -t 0.156704 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 203 -a 0 -x {9.0 10.0 106 ------- null} h -t 0.156704 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 203 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.156784 -s 0 -d 9 -p ack -e 40 -c 0 -i 210 -a 0 -x {10.0 9.0 100 ------- null} - -t 0.156784 -s 0 -d 9 -p ack -e 40 -c 0 -i 210 -a 0 -x {10.0 9.0 100 ------- null} h -t 0.156784 -s 0 -d 9 -p ack -e 40 -c 0 -i 210 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.15704 -s 10 -d 7 -p ack -e 40 -c 0 -i 214 -a 0 -x {10.0 9.0 102 ------- null} + -t 0.15704 -s 7 -d 0 -p ack -e 40 -c 0 -i 214 -a 0 -x {10.0 9.0 102 ------- null} h -t 0.15704 -s 7 -d 8 -p ack -e 40 -c 0 -i 214 -a 0 -x {10.0 9.0 102 ------- null} r -t 0.157184 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 199 -a 0 -x {9.0 10.0 104 ------- null} + -t 0.157184 -s 10 -d 7 -p ack -e 40 -c 0 -i 218 -a 0 -x {10.0 9.0 104 ------- null} - -t 0.157184 -s 10 -d 7 -p ack -e 40 -c 0 -i 218 -a 0 -x {10.0 9.0 104 ------- null} h -t 0.157184 -s 10 -d 7 -p ack -e 40 -c 0 -i 218 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.1572 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 213 -a 0 -x {9.0 10.0 111 ------- null} + -t 0.1572 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 213 -a 0 -x {9.0 10.0 111 ------- null} h -t 0.1572 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 213 -a 0 -x {9.0 10.0 111 ------- null} + -t 0.157792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 205 -a 0 -x {9.0 10.0 107 ------- null} - -t 0.157792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 205 -a 0 -x {9.0 10.0 107 ------- null} h -t 0.157792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 205 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.15784 -s 0 -d 9 -p ack -e 40 -c 0 -i 208 -a 0 -x {10.0 9.0 99 ------- null} + -t 0.15784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 219 -a 0 -x {9.0 10.0 114 ------- null} - -t 0.15784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 219 -a 0 -x {9.0 10.0 114 ------- null} h -t 0.15784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 219 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.15808 -s 0 -d 9 -p ack -e 40 -c 0 -i 212 -a 0 -x {10.0 9.0 101 ------- null} - -t 0.15808 -s 0 -d 9 -p ack -e 40 -c 0 -i 212 -a 0 -x {10.0 9.0 101 ------- null} h -t 0.15808 -s 0 -d 9 -p ack -e 40 -c 0 -i 212 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.158128 -s 10 -d 7 -p ack -e 40 -c 0 -i 216 -a 0 -x {10.0 9.0 103 ------- null} + -t 0.158128 -s 7 -d 0 -p ack -e 40 -c 0 -i 216 -a 0 -x {10.0 9.0 103 ------- null} h -t 0.158128 -s 7 -d 8 -p ack -e 40 -c 0 -i 216 -a 0 -x {10.0 9.0 103 ------- null} r -t 0.158304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 201 -a 0 -x {9.0 10.0 105 ------- null} + -t 0.158304 -s 10 -d 7 -p ack -e 40 -c 0 -i 220 -a 0 -x {10.0 9.0 105 ------- null} - -t 0.158304 -s 10 -d 7 -p ack -e 40 -c 0 -i 220 -a 0 -x {10.0 9.0 105 ------- null} h -t 0.158304 -s 10 -d 7 -p ack -e 40 -c 0 -i 220 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.15832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 215 -a 0 -x {9.0 10.0 112 ------- null} + -t 0.15832 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 215 -a 0 -x {9.0 10.0 112 ------- null} h -t 0.15832 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 215 -a 0 -x {9.0 10.0 112 ------- null} r -t 0.158816 -s 0 -d 9 -p ack -e 40 -c 0 -i 210 -a 0 -x {10.0 9.0 100 ------- null} + -t 0.158816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 221 -a 0 -x {9.0 10.0 115 ------- null} - -t 0.158816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 221 -a 0 -x {9.0 10.0 115 ------- null} h -t 0.158816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 221 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.159056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 207 -a 0 -x {9.0 10.0 108 ------- null} - -t 0.159056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 207 -a 0 -x {9.0 10.0 108 ------- null} h -t 0.159056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 207 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.159216 -s 10 -d 7 -p ack -e 40 -c 0 -i 218 -a 0 -x {10.0 9.0 104 ------- null} + -t 0.159216 -s 7 -d 0 -p ack -e 40 -c 0 -i 218 -a 0 -x {10.0 9.0 104 ------- null} h -t 0.159216 -s 7 -d 8 -p ack -e 40 -c 0 -i 218 -a 0 -x {10.0 9.0 104 ------- null} + -t 0.159328 -s 0 -d 9 -p ack -e 40 -c 0 -i 214 -a 0 -x {10.0 9.0 102 ------- null} - -t 0.159328 -s 0 -d 9 -p ack -e 40 -c 0 -i 214 -a 0 -x {10.0 9.0 102 ------- null} h -t 0.159328 -s 0 -d 9 -p ack -e 40 -c 0 -i 214 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.159488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 217 -a 0 -x {9.0 10.0 113 ------- null} + -t 0.159488 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 217 -a 0 -x {9.0 10.0 113 ------- null} h -t 0.159488 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 217 -a 0 -x {9.0 10.0 113 ------- null} r -t 0.159504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 203 -a 0 -x {9.0 10.0 106 ------- null} + -t 0.159504 -s 10 -d 7 -p ack -e 40 -c 0 -i 222 -a 0 -x {10.0 9.0 106 ------- null} - -t 0.159504 -s 10 -d 7 -p ack -e 40 -c 0 -i 222 -a 0 -x {10.0 9.0 106 ------- null} h -t 0.159504 -s 10 -d 7 -p ack -e 40 -c 0 -i 222 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.160112 -s 0 -d 9 -p ack -e 40 -c 0 -i 212 -a 0 -x {10.0 9.0 101 ------- null} + -t 0.160112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {9.0 10.0 116 ------- null} - -t 0.160112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {9.0 10.0 116 ------- null} h -t 0.160112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.160256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 209 -a 0 -x {9.0 10.0 109 ------- null} - -t 0.160256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 209 -a 0 -x {9.0 10.0 109 ------- null} h -t 0.160256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 209 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.16032 -s 0 -d 9 -p ack -e 40 -c 0 -i 216 -a 0 -x {10.0 9.0 103 ------- null} - -t 0.16032 -s 0 -d 9 -p ack -e 40 -c 0 -i 216 -a 0 -x {10.0 9.0 103 ------- null} h -t 0.16032 -s 0 -d 9 -p ack -e 40 -c 0 -i 216 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.160336 -s 10 -d 7 -p ack -e 40 -c 0 -i 220 -a 0 -x {10.0 9.0 105 ------- null} + -t 0.160336 -s 7 -d 0 -p ack -e 40 -c 0 -i 220 -a 0 -x {10.0 9.0 105 ------- null} h -t 0.160336 -s 7 -d 8 -p ack -e 40 -c 0 -i 220 -a 0 -x {10.0 9.0 105 ------- null} r -t 0.160592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 205 -a 0 -x {9.0 10.0 107 ------- null} + -t 0.160592 -s 10 -d 7 -p ack -e 40 -c 0 -i 224 -a 0 -x {10.0 9.0 107 ------- null} - -t 0.160592 -s 10 -d 7 -p ack -e 40 -c 0 -i 224 -a 0 -x {10.0 9.0 107 ------- null} h -t 0.160592 -s 10 -d 7 -p ack -e 40 -c 0 -i 224 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.16064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 219 -a 0 -x {9.0 10.0 114 ------- null} + -t 0.16064 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 219 -a 0 -x {9.0 10.0 114 ------- null} h -t 0.16064 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 219 -a 0 -x {9.0 10.0 114 ------- null} + -t 0.161344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 211 -a 0 -x {9.0 10.0 110 ------- null} - -t 0.161344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 211 -a 0 -x {9.0 10.0 110 ------- null} h -t 0.161344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 211 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.16136 -s 0 -d 9 -p ack -e 40 -c 0 -i 214 -a 0 -x {10.0 9.0 102 ------- null} + -t 0.16136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {9.0 10.0 117 ------- null} - -t 0.16136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {9.0 10.0 117 ------- null} h -t 0.16136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.161536 -s 10 -d 7 -p ack -e 40 -c 0 -i 222 -a 0 -x {10.0 9.0 106 ------- null} + -t 0.161536 -s 7 -d 0 -p ack -e 40 -c 0 -i 222 -a 0 -x {10.0 9.0 106 ------- null} h -t 0.161536 -s 7 -d 8 -p ack -e 40 -c 0 -i 222 -a 0 -x {10.0 9.0 106 ------- null} + -t 0.161552 -s 0 -d 9 -p ack -e 40 -c 0 -i 218 -a 0 -x {10.0 9.0 104 ------- null} - -t 0.161552 -s 0 -d 9 -p ack -e 40 -c 0 -i 218 -a 0 -x {10.0 9.0 104 ------- null} h -t 0.161552 -s 0 -d 9 -p ack -e 40 -c 0 -i 218 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.161616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 221 -a 0 -x {9.0 10.0 115 ------- null} + -t 0.161616 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 221 -a 0 -x {9.0 10.0 115 ------- null} h -t 0.161616 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 221 -a 0 -x {9.0 10.0 115 ------- null} r -t 0.161856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 207 -a 0 -x {9.0 10.0 108 ------- null} + -t 0.161856 -s 10 -d 7 -p ack -e 40 -c 0 -i 226 -a 0 -x {10.0 9.0 108 ------- null} - -t 0.161856 -s 10 -d 7 -p ack -e 40 -c 0 -i 226 -a 0 -x {10.0 9.0 108 ------- null} h -t 0.161856 -s 10 -d 7 -p ack -e 40 -c 0 -i 226 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.162352 -s 0 -d 9 -p ack -e 40 -c 0 -i 216 -a 0 -x {10.0 9.0 103 ------- null} + -t 0.162352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {9.0 10.0 118 ------- null} - -t 0.162352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {9.0 10.0 118 ------- null} h -t 0.162352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.162432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 213 -a 0 -x {9.0 10.0 111 ------- null} - -t 0.162432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 213 -a 0 -x {9.0 10.0 111 ------- null} h -t 0.162432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 213 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.162608 -s 0 -d 9 -p ack -e 40 -c 0 -i 220 -a 0 -x {10.0 9.0 105 ------- null} - -t 0.162608 -s 0 -d 9 -p ack -e 40 -c 0 -i 220 -a 0 -x {10.0 9.0 105 ------- null} h -t 0.162608 -s 0 -d 9 -p ack -e 40 -c 0 -i 220 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.162624 -s 10 -d 7 -p ack -e 40 -c 0 -i 224 -a 0 -x {10.0 9.0 107 ------- null} + -t 0.162624 -s 7 -d 0 -p ack -e 40 -c 0 -i 224 -a 0 -x {10.0 9.0 107 ------- null} h -t 0.162624 -s 7 -d 8 -p ack -e 40 -c 0 -i 224 -a 0 -x {10.0 9.0 107 ------- null} r -t 0.162912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {9.0 10.0 116 ------- null} + -t 0.162912 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {9.0 10.0 116 ------- null} h -t 0.162912 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {9.0 10.0 116 ------- null} r -t 0.163056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 209 -a 0 -x {9.0 10.0 109 ------- null} + -t 0.163056 -s 10 -d 7 -p ack -e 40 -c 0 -i 228 -a 0 -x {10.0 9.0 109 ------- null} - -t 0.163056 -s 10 -d 7 -p ack -e 40 -c 0 -i 228 -a 0 -x {10.0 9.0 109 ------- null} h -t 0.163056 -s 10 -d 7 -p ack -e 40 -c 0 -i 228 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.16352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 215 -a 0 -x {9.0 10.0 112 ------- null} - -t 0.16352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 215 -a 0 -x {9.0 10.0 112 ------- null} h -t 0.16352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 215 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.163584 -s 0 -d 9 -p ack -e 40 -c 0 -i 218 -a 0 -x {10.0 9.0 104 ------- null} + -t 0.163584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {9.0 10.0 119 ------- null} - -t 0.163584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {9.0 10.0 119 ------- null} h -t 0.163584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.1636 -s 0 -d 9 -p ack -e 40 -c 0 -i 222 -a 0 -x {10.0 9.0 106 ------- null} - -t 0.1636 -s 0 -d 9 -p ack -e 40 -c 0 -i 222 -a 0 -x {10.0 9.0 106 ------- null} h -t 0.1636 -s 0 -d 9 -p ack -e 40 -c 0 -i 222 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.163888 -s 10 -d 7 -p ack -e 40 -c 0 -i 226 -a 0 -x {10.0 9.0 108 ------- null} + -t 0.163888 -s 7 -d 0 -p ack -e 40 -c 0 -i 226 -a 0 -x {10.0 9.0 108 ------- null} h -t 0.163888 -s 7 -d 8 -p ack -e 40 -c 0 -i 226 -a 0 -x {10.0 9.0 108 ------- null} r -t 0.164144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 211 -a 0 -x {9.0 10.0 110 ------- null} + -t 0.164144 -s 10 -d 7 -p ack -e 40 -c 0 -i 230 -a 0 -x {10.0 9.0 110 ------- null} - -t 0.164144 -s 10 -d 7 -p ack -e 40 -c 0 -i 230 -a 0 -x {10.0 9.0 110 ------- null} h -t 0.164144 -s 10 -d 7 -p ack -e 40 -c 0 -i 230 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.16416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {9.0 10.0 117 ------- null} + -t 0.16416 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {9.0 10.0 117 ------- null} h -t 0.16416 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {9.0 10.0 117 ------- null} + -t 0.164608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 217 -a 0 -x {9.0 10.0 113 ------- null} - -t 0.164608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 217 -a 0 -x {9.0 10.0 113 ------- null} h -t 0.164608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 217 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.16464 -s 0 -d 9 -p ack -e 40 -c 0 -i 220 -a 0 -x {10.0 9.0 105 ------- null} + -t 0.16464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {9.0 10.0 120 ------- null} - -t 0.16464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {9.0 10.0 120 ------- null} h -t 0.16464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.164912 -s 0 -d 9 -p ack -e 40 -c 0 -i 224 -a 0 -x {10.0 9.0 107 ------- null} - -t 0.164912 -s 0 -d 9 -p ack -e 40 -c 0 -i 224 -a 0 -x {10.0 9.0 107 ------- null} h -t 0.164912 -s 0 -d 9 -p ack -e 40 -c 0 -i 224 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.165088 -s 10 -d 7 -p ack -e 40 -c 0 -i 228 -a 0 -x {10.0 9.0 109 ------- null} + -t 0.165088 -s 7 -d 0 -p ack -e 40 -c 0 -i 228 -a 0 -x {10.0 9.0 109 ------- null} h -t 0.165088 -s 7 -d 8 -p ack -e 40 -c 0 -i 228 -a 0 -x {10.0 9.0 109 ------- null} r -t 0.165152 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {9.0 10.0 118 ------- null} + -t 0.165152 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {9.0 10.0 118 ------- null} h -t 0.165152 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {9.0 10.0 118 ------- null} r -t 0.165232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 213 -a 0 -x {9.0 10.0 111 ------- null} + -t 0.165232 -s 10 -d 7 -p ack -e 40 -c 0 -i 232 -a 0 -x {10.0 9.0 111 ------- null} - -t 0.165232 -s 10 -d 7 -p ack -e 40 -c 0 -i 232 -a 0 -x {10.0 9.0 111 ------- null} h -t 0.165232 -s 10 -d 7 -p ack -e 40 -c 0 -i 232 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.165632 -s 0 -d 9 -p ack -e 40 -c 0 -i 222 -a 0 -x {10.0 9.0 106 ------- null} + -t 0.165632 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {9.0 10.0 121 ------- null} - -t 0.165632 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {9.0 10.0 121 ------- null} h -t 0.165632 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.165792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 219 -a 0 -x {9.0 10.0 114 ------- null} - -t 0.165792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 219 -a 0 -x {9.0 10.0 114 ------- null} h -t 0.165792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 219 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.166016 -s 0 -d 9 -p ack -e 40 -c 0 -i 226 -a 0 -x {10.0 9.0 108 ------- null} - -t 0.166016 -s 0 -d 9 -p ack -e 40 -c 0 -i 226 -a 0 -x {10.0 9.0 108 ------- null} h -t 0.166016 -s 0 -d 9 -p ack -e 40 -c 0 -i 226 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.166176 -s 10 -d 7 -p ack -e 40 -c 0 -i 230 -a 0 -x {10.0 9.0 110 ------- null} + -t 0.166176 -s 7 -d 0 -p ack -e 40 -c 0 -i 230 -a 0 -x {10.0 9.0 110 ------- null} h -t 0.166176 -s 7 -d 8 -p ack -e 40 -c 0 -i 230 -a 0 -x {10.0 9.0 110 ------- null} r -t 0.16632 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 215 -a 0 -x {9.0 10.0 112 ------- null} + -t 0.16632 -s 10 -d 7 -p ack -e 40 -c 0 -i 234 -a 0 -x {10.0 9.0 112 ------- null} - -t 0.16632 -s 10 -d 7 -p ack -e 40 -c 0 -i 234 -a 0 -x {10.0 9.0 112 ------- null} h -t 0.16632 -s 10 -d 7 -p ack -e 40 -c 0 -i 234 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.166384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {9.0 10.0 119 ------- null} + -t 0.166384 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {9.0 10.0 119 ------- null} h -t 0.166384 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {9.0 10.0 119 ------- null} + -t 0.16688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 221 -a 0 -x {9.0 10.0 115 ------- null} - -t 0.16688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 221 -a 0 -x {9.0 10.0 115 ------- null} h -t 0.16688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 221 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.166944 -s 0 -d 9 -p ack -e 40 -c 0 -i 224 -a 0 -x {10.0 9.0 107 ------- null} + -t 0.166944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {9.0 10.0 122 ------- null} - -t 0.166944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {9.0 10.0 122 ------- null} h -t 0.166944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.167168 -s 0 -d 9 -p ack -e 40 -c 0 -i 228 -a 0 -x {10.0 9.0 109 ------- null} - -t 0.167168 -s 0 -d 9 -p ack -e 40 -c 0 -i 228 -a 0 -x {10.0 9.0 109 ------- null} h -t 0.167168 -s 0 -d 9 -p ack -e 40 -c 0 -i 228 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.167264 -s 10 -d 7 -p ack -e 40 -c 0 -i 232 -a 0 -x {10.0 9.0 111 ------- null} + -t 0.167264 -s 7 -d 0 -p ack -e 40 -c 0 -i 232 -a 0 -x {10.0 9.0 111 ------- null} h -t 0.167264 -s 7 -d 8 -p ack -e 40 -c 0 -i 232 -a 0 -x {10.0 9.0 111 ------- null} r -t 0.167408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 217 -a 0 -x {9.0 10.0 113 ------- null} + -t 0.167408 -s 10 -d 7 -p ack -e 40 -c 0 -i 236 -a 0 -x {10.0 9.0 113 ------- null} - -t 0.167408 -s 10 -d 7 -p ack -e 40 -c 0 -i 236 -a 0 -x {10.0 9.0 113 ------- null} h -t 0.167408 -s 10 -d 7 -p ack -e 40 -c 0 -i 236 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.16744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {9.0 10.0 120 ------- null} + -t 0.16744 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {9.0 10.0 120 ------- null} h -t 0.16744 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {9.0 10.0 120 ------- null} r -t 0.168048 -s 0 -d 9 -p ack -e 40 -c 0 -i 226 -a 0 -x {10.0 9.0 108 ------- null} + -t 0.168048 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {9.0 10.0 123 ------- null} - -t 0.168048 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {9.0 10.0 123 ------- null} h -t 0.168048 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.16824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {9.0 10.0 116 ------- null} - -t 0.16824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {9.0 10.0 116 ------- null} h -t 0.16824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.168304 -s 0 -d 9 -p ack -e 40 -c 0 -i 230 -a 0 -x {10.0 9.0 110 ------- null} - -t 0.168304 -s 0 -d 9 -p ack -e 40 -c 0 -i 230 -a 0 -x {10.0 9.0 110 ------- null} h -t 0.168304 -s 0 -d 9 -p ack -e 40 -c 0 -i 230 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.168352 -s 10 -d 7 -p ack -e 40 -c 0 -i 234 -a 0 -x {10.0 9.0 112 ------- null} + -t 0.168352 -s 7 -d 0 -p ack -e 40 -c 0 -i 234 -a 0 -x {10.0 9.0 112 ------- null} h -t 0.168352 -s 7 -d 8 -p ack -e 40 -c 0 -i 234 -a 0 -x {10.0 9.0 112 ------- null} r -t 0.168432 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {9.0 10.0 121 ------- null} + -t 0.168432 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {9.0 10.0 121 ------- null} h -t 0.168432 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {9.0 10.0 121 ------- null} r -t 0.168592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 219 -a 0 -x {9.0 10.0 114 ------- null} + -t 0.168592 -s 10 -d 7 -p ack -e 40 -c 0 -i 238 -a 0 -x {10.0 9.0 114 ------- null} - -t 0.168592 -s 10 -d 7 -p ack -e 40 -c 0 -i 238 -a 0 -x {10.0 9.0 114 ------- null} h -t 0.168592 -s 10 -d 7 -p ack -e 40 -c 0 -i 238 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.1692 -s 0 -d 9 -p ack -e 40 -c 0 -i 228 -a 0 -x {10.0 9.0 109 ------- null} + -t 0.1692 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {9.0 10.0 124 ------- null} - -t 0.1692 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {9.0 10.0 124 ------- null} h -t 0.1692 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.169328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {9.0 10.0 117 ------- null} - -t 0.169328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {9.0 10.0 117 ------- null} h -t 0.169328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.16944 -s 10 -d 7 -p ack -e 40 -c 0 -i 236 -a 0 -x {10.0 9.0 113 ------- null} + -t 0.16944 -s 7 -d 0 -p ack -e 40 -c 0 -i 236 -a 0 -x {10.0 9.0 113 ------- null} h -t 0.16944 -s 7 -d 8 -p ack -e 40 -c 0 -i 236 -a 0 -x {10.0 9.0 113 ------- null} + -t 0.169584 -s 0 -d 9 -p ack -e 40 -c 0 -i 232 -a 0 -x {10.0 9.0 111 ------- null} - -t 0.169584 -s 0 -d 9 -p ack -e 40 -c 0 -i 232 -a 0 -x {10.0 9.0 111 ------- null} h -t 0.169584 -s 0 -d 9 -p ack -e 40 -c 0 -i 232 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.16968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 221 -a 0 -x {9.0 10.0 115 ------- null} + -t 0.16968 -s 10 -d 7 -p ack -e 40 -c 0 -i 240 -a 0 -x {10.0 9.0 115 ------- null} - -t 0.16968 -s 10 -d 7 -p ack -e 40 -c 0 -i 240 -a 0 -x {10.0 9.0 115 ------- null} h -t 0.16968 -s 10 -d 7 -p ack -e 40 -c 0 -i 240 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.169744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {9.0 10.0 122 ------- null} + -t 0.169744 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {9.0 10.0 122 ------- null} h -t 0.169744 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {9.0 10.0 122 ------- null} r -t 0.170336 -s 0 -d 9 -p ack -e 40 -c 0 -i 230 -a 0 -x {10.0 9.0 110 ------- null} + -t 0.170336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {9.0 10.0 125 ------- null} - -t 0.170336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {9.0 10.0 125 ------- null} h -t 0.170336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.170416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {9.0 10.0 118 ------- null} - -t 0.170416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {9.0 10.0 118 ------- null} h -t 0.170416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.170544 -s 0 -d 9 -p ack -e 40 -c 0 -i 234 -a 0 -x {10.0 9.0 112 ------- null} - -t 0.170544 -s 0 -d 9 -p ack -e 40 -c 0 -i 234 -a 0 -x {10.0 9.0 112 ------- null} h -t 0.170544 -s 0 -d 9 -p ack -e 40 -c 0 -i 234 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.170624 -s 10 -d 7 -p ack -e 40 -c 0 -i 238 -a 0 -x {10.0 9.0 114 ------- null} + -t 0.170624 -s 7 -d 0 -p ack -e 40 -c 0 -i 238 -a 0 -x {10.0 9.0 114 ------- null} h -t 0.170624 -s 7 -d 8 -p ack -e 40 -c 0 -i 238 -a 0 -x {10.0 9.0 114 ------- null} r -t 0.170848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {9.0 10.0 123 ------- null} + -t 0.170848 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {9.0 10.0 123 ------- null} h -t 0.170848 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {9.0 10.0 123 ------- null} r -t 0.17104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {9.0 10.0 116 ------- null} + -t 0.17104 -s 10 -d 7 -p ack -e 40 -c 0 -i 242 -a 0 -x {10.0 9.0 116 ------- null} - -t 0.17104 -s 10 -d 7 -p ack -e 40 -c 0 -i 242 -a 0 -x {10.0 9.0 116 ------- null} h -t 0.17104 -s 10 -d 7 -p ack -e 40 -c 0 -i 242 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.171504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {9.0 10.0 119 ------- null} - -t 0.171504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {9.0 10.0 119 ------- null} h -t 0.171504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.171616 -s 0 -d 9 -p ack -e 40 -c 0 -i 232 -a 0 -x {10.0 9.0 111 ------- null} + -t 0.171616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 243 -a 0 -x {9.0 10.0 126 ------- null} - -t 0.171616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 243 -a 0 -x {9.0 10.0 126 ------- null} h -t 0.171616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 243 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.171648 -s 0 -d 9 -p ack -e 40 -c 0 -i 236 -a 0 -x {10.0 9.0 113 ------- null} - -t 0.171648 -s 0 -d 9 -p ack -e 40 -c 0 -i 236 -a 0 -x {10.0 9.0 113 ------- null} h -t 0.171648 -s 0 -d 9 -p ack -e 40 -c 0 -i 236 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.171712 -s 10 -d 7 -p ack -e 40 -c 0 -i 240 -a 0 -x {10.0 9.0 115 ------- null} + -t 0.171712 -s 7 -d 0 -p ack -e 40 -c 0 -i 240 -a 0 -x {10.0 9.0 115 ------- null} h -t 0.171712 -s 7 -d 8 -p ack -e 40 -c 0 -i 240 -a 0 -x {10.0 9.0 115 ------- null} r -t 0.172 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {9.0 10.0 124 ------- null} + -t 0.172 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {9.0 10.0 124 ------- null} h -t 0.172 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {9.0 10.0 124 ------- null} r -t 0.172128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {9.0 10.0 117 ------- null} + -t 0.172128 -s 10 -d 7 -p ack -e 40 -c 0 -i 244 -a 0 -x {10.0 9.0 117 ------- null} - -t 0.172128 -s 10 -d 7 -p ack -e 40 -c 0 -i 244 -a 0 -x {10.0 9.0 117 ------- null} h -t 0.172128 -s 10 -d 7 -p ack -e 40 -c 0 -i 244 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.172576 -s 0 -d 9 -p ack -e 40 -c 0 -i 234 -a 0 -x {10.0 9.0 112 ------- null} + -t 0.172576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 245 -a 0 -x {9.0 10.0 127 ------- null} - -t 0.172576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 245 -a 0 -x {9.0 10.0 127 ------- null} h -t 0.172576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 245 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.172592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {9.0 10.0 120 ------- null} - -t 0.172592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {9.0 10.0 120 ------- null} h -t 0.172592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.172816 -s 0 -d 9 -p ack -e 40 -c 0 -i 238 -a 0 -x {10.0 9.0 114 ------- null} - -t 0.172816 -s 0 -d 9 -p ack -e 40 -c 0 -i 238 -a 0 -x {10.0 9.0 114 ------- null} h -t 0.172816 -s 0 -d 9 -p ack -e 40 -c 0 -i 238 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.173072 -s 10 -d 7 -p ack -e 40 -c 0 -i 242 -a 0 -x {10.0 9.0 116 ------- null} + -t 0.173072 -s 7 -d 0 -p ack -e 40 -c 0 -i 242 -a 0 -x {10.0 9.0 116 ------- null} h -t 0.173072 -s 7 -d 8 -p ack -e 40 -c 0 -i 242 -a 0 -x {10.0 9.0 116 ------- null} r -t 0.173136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {9.0 10.0 125 ------- null} + -t 0.173136 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {9.0 10.0 125 ------- null} h -t 0.173136 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {9.0 10.0 125 ------- null} r -t 0.173216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {9.0 10.0 118 ------- null} + -t 0.173216 -s 10 -d 7 -p ack -e 40 -c 0 -i 246 -a 0 -x {10.0 9.0 118 ------- null} - -t 0.173216 -s 10 -d 7 -p ack -e 40 -c 0 -i 246 -a 0 -x {10.0 9.0 118 ------- null} h -t 0.173216 -s 10 -d 7 -p ack -e 40 -c 0 -i 246 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.17368 -s 0 -d 9 -p ack -e 40 -c 0 -i 236 -a 0 -x {10.0 9.0 113 ------- null} + -t 0.17368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 247 -a 0 -x {9.0 10.0 128 ------- null} - -t 0.17368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 247 -a 0 -x {9.0 10.0 128 ------- null} h -t 0.17368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 247 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.17368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {9.0 10.0 121 ------- null} - -t 0.17368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {9.0 10.0 121 ------- null} h -t 0.17368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.173872 -s 0 -d 9 -p ack -e 40 -c 0 -i 240 -a 0 -x {10.0 9.0 115 ------- null} - -t 0.173872 -s 0 -d 9 -p ack -e 40 -c 0 -i 240 -a 0 -x {10.0 9.0 115 ------- null} h -t 0.173872 -s 0 -d 9 -p ack -e 40 -c 0 -i 240 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.17416 -s 10 -d 7 -p ack -e 40 -c 0 -i 244 -a 0 -x {10.0 9.0 117 ------- null} + -t 0.17416 -s 7 -d 0 -p ack -e 40 -c 0 -i 244 -a 0 -x {10.0 9.0 117 ------- null} h -t 0.17416 -s 7 -d 8 -p ack -e 40 -c 0 -i 244 -a 0 -x {10.0 9.0 117 ------- null} r -t 0.174304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 229 -a 0 -x {9.0 10.0 119 ------- null} + -t 0.174304 -s 10 -d 7 -p ack -e 40 -c 0 -i 248 -a 0 -x {10.0 9.0 119 ------- null} - -t 0.174304 -s 10 -d 7 -p ack -e 40 -c 0 -i 248 -a 0 -x {10.0 9.0 119 ------- null} h -t 0.174304 -s 10 -d 7 -p ack -e 40 -c 0 -i 248 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.174416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 243 -a 0 -x {9.0 10.0 126 ------- null} + -t 0.174416 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 243 -a 0 -x {9.0 10.0 126 ------- null} h -t 0.174416 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 243 -a 0 -x {9.0 10.0 126 ------- null} + -t 0.174768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {9.0 10.0 122 ------- null} - -t 0.174768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {9.0 10.0 122 ------- null} h -t 0.174768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.174848 -s 0 -d 9 -p ack -e 40 -c 0 -i 238 -a 0 -x {10.0 9.0 114 ------- null} + -t 0.174848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 249 -a 0 -x {9.0 10.0 129 ------- null} - -t 0.174848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 249 -a 0 -x {9.0 10.0 129 ------- null} h -t 0.174848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 249 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.175008 -s 0 -d 9 -p ack -e 40 -c 0 -i 242 -a 0 -x {10.0 9.0 116 ------- null} - -t 0.175008 -s 0 -d 9 -p ack -e 40 -c 0 -i 242 -a 0 -x {10.0 9.0 116 ------- null} h -t 0.175008 -s 0 -d 9 -p ack -e 40 -c 0 -i 242 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.175248 -s 10 -d 7 -p ack -e 40 -c 0 -i 246 -a 0 -x {10.0 9.0 118 ------- null} + -t 0.175248 -s 7 -d 0 -p ack -e 40 -c 0 -i 246 -a 0 -x {10.0 9.0 118 ------- null} h -t 0.175248 -s 7 -d 8 -p ack -e 40 -c 0 -i 246 -a 0 -x {10.0 9.0 118 ------- null} r -t 0.175376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 245 -a 0 -x {9.0 10.0 127 ------- null} + -t 0.175376 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 245 -a 0 -x {9.0 10.0 127 ------- null} h -t 0.175376 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 245 -a 0 -x {9.0 10.0 127 ------- null} r -t 0.175392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 231 -a 0 -x {9.0 10.0 120 ------- null} + -t 0.175392 -s 10 -d 7 -p ack -e 40 -c 0 -i 250 -a 0 -x {10.0 9.0 120 ------- null} - -t 0.175392 -s 10 -d 7 -p ack -e 40 -c 0 -i 250 -a 0 -x {10.0 9.0 120 ------- null} h -t 0.175392 -s 10 -d 7 -p ack -e 40 -c 0 -i 250 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.175856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {9.0 10.0 123 ------- null} - -t 0.175856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {9.0 10.0 123 ------- null} h -t 0.175856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.175904 -s 0 -d 9 -p ack -e 40 -c 0 -i 240 -a 0 -x {10.0 9.0 115 ------- null} + -t 0.175904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 251 -a 0 -x {9.0 10.0 130 ------- null} - -t 0.175904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 251 -a 0 -x {9.0 10.0 130 ------- null} h -t 0.175904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 251 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.17592 -s 0 -d 9 -p ack -e 40 -c 0 -i 244 -a 0 -x {10.0 9.0 117 ------- null} - -t 0.17592 -s 0 -d 9 -p ack -e 40 -c 0 -i 244 -a 0 -x {10.0 9.0 117 ------- null} h -t 0.17592 -s 0 -d 9 -p ack -e 40 -c 0 -i 244 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.176336 -s 10 -d 7 -p ack -e 40 -c 0 -i 248 -a 0 -x {10.0 9.0 119 ------- null} + -t 0.176336 -s 7 -d 0 -p ack -e 40 -c 0 -i 248 -a 0 -x {10.0 9.0 119 ------- null} h -t 0.176336 -s 7 -d 8 -p ack -e 40 -c 0 -i 248 -a 0 -x {10.0 9.0 119 ------- null} r -t 0.17648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 247 -a 0 -x {9.0 10.0 128 ------- null} + -t 0.17648 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 247 -a 0 -x {9.0 10.0 128 ------- null} h -t 0.17648 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 247 -a 0 -x {9.0 10.0 128 ------- null} r -t 0.17648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 233 -a 0 -x {9.0 10.0 121 ------- null} + -t 0.17648 -s 10 -d 7 -p ack -e 40 -c 0 -i 252 -a 0 -x {10.0 9.0 121 ------- null} - -t 0.17648 -s 10 -d 7 -p ack -e 40 -c 0 -i 252 -a 0 -x {10.0 9.0 121 ------- null} h -t 0.17648 -s 10 -d 7 -p ack -e 40 -c 0 -i 252 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.176944 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {9.0 10.0 124 ------- null} - -t 0.176944 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {9.0 10.0 124 ------- null} h -t 0.176944 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.17704 -s 0 -d 9 -p ack -e 40 -c 0 -i 242 -a 0 -x {10.0 9.0 116 ------- null} + -t 0.17704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 253 -a 0 -x {9.0 10.0 131 ------- null} - -t 0.17704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 253 -a 0 -x {9.0 10.0 131 ------- null} h -t 0.17704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 253 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.177152 -s 0 -d 9 -p ack -e 40 -c 0 -i 246 -a 0 -x {10.0 9.0 118 ------- null} - -t 0.177152 -s 0 -d 9 -p ack -e 40 -c 0 -i 246 -a 0 -x {10.0 9.0 118 ------- null} h -t 0.177152 -s 0 -d 9 -p ack -e 40 -c 0 -i 246 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.177424 -s 10 -d 7 -p ack -e 40 -c 0 -i 250 -a 0 -x {10.0 9.0 120 ------- null} + -t 0.177424 -s 7 -d 0 -p ack -e 40 -c 0 -i 250 -a 0 -x {10.0 9.0 120 ------- null} h -t 0.177424 -s 7 -d 8 -p ack -e 40 -c 0 -i 250 -a 0 -x {10.0 9.0 120 ------- null} r -t 0.177568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 235 -a 0 -x {9.0 10.0 122 ------- null} + -t 0.177568 -s 10 -d 7 -p ack -e 40 -c 0 -i 254 -a 0 -x {10.0 9.0 122 ------- null} - -t 0.177568 -s 10 -d 7 -p ack -e 40 -c 0 -i 254 -a 0 -x {10.0 9.0 122 ------- null} h -t 0.177568 -s 10 -d 7 -p ack -e 40 -c 0 -i 254 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.177648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 249 -a 0 -x {9.0 10.0 129 ------- null} + -t 0.177648 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 249 -a 0 -x {9.0 10.0 129 ------- null} h -t 0.177648 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 249 -a 0 -x {9.0 10.0 129 ------- null} r -t 0.177952 -s 0 -d 9 -p ack -e 40 -c 0 -i 244 -a 0 -x {10.0 9.0 117 ------- null} + -t 0.177952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 255 -a 0 -x {9.0 10.0 132 ------- null} - -t 0.177952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 255 -a 0 -x {9.0 10.0 132 ------- null} h -t 0.177952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 255 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.178032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {9.0 10.0 125 ------- null} - -t 0.178032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {9.0 10.0 125 ------- null} h -t 0.178032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.178128 -s 0 -d 9 -p ack -e 40 -c 0 -i 248 -a 0 -x {10.0 9.0 119 ------- null} - -t 0.178128 -s 0 -d 9 -p ack -e 40 -c 0 -i 248 -a 0 -x {10.0 9.0 119 ------- null} h -t 0.178128 -s 0 -d 9 -p ack -e 40 -c 0 -i 248 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.178512 -s 10 -d 7 -p ack -e 40 -c 0 -i 252 -a 0 -x {10.0 9.0 121 ------- null} + -t 0.178512 -s 7 -d 0 -p ack -e 40 -c 0 -i 252 -a 0 -x {10.0 9.0 121 ------- null} h -t 0.178512 -s 7 -d 8 -p ack -e 40 -c 0 -i 252 -a 0 -x {10.0 9.0 121 ------- null} r -t 0.178656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 237 -a 0 -x {9.0 10.0 123 ------- null} + -t 0.178656 -s 10 -d 7 -p ack -e 40 -c 0 -i 256 -a 0 -x {10.0 9.0 123 ------- null} - -t 0.178656 -s 10 -d 7 -p ack -e 40 -c 0 -i 256 -a 0 -x {10.0 9.0 123 ------- null} h -t 0.178656 -s 10 -d 7 -p ack -e 40 -c 0 -i 256 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.178704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 251 -a 0 -x {9.0 10.0 130 ------- null} + -t 0.178704 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 251 -a 0 -x {9.0 10.0 130 ------- null} h -t 0.178704 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 251 -a 0 -x {9.0 10.0 130 ------- null} + -t 0.17912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 243 -a 0 -x {9.0 10.0 126 ------- null} - -t 0.17912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 243 -a 0 -x {9.0 10.0 126 ------- null} h -t 0.17912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 243 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.179184 -s 0 -d 9 -p ack -e 40 -c 0 -i 246 -a 0 -x {10.0 9.0 118 ------- null} + -t 0.179184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 257 -a 0 -x {9.0 10.0 133 ------- null} - -t 0.179184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 257 -a 0 -x {9.0 10.0 133 ------- null} h -t 0.179184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 257 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.179408 -s 0 -d 9 -p ack -e 40 -c 0 -i 250 -a 0 -x {10.0 9.0 120 ------- null} - -t 0.179408 -s 0 -d 9 -p ack -e 40 -c 0 -i 250 -a 0 -x {10.0 9.0 120 ------- null} h -t 0.179408 -s 0 -d 9 -p ack -e 40 -c 0 -i 250 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.1796 -s 10 -d 7 -p ack -e 40 -c 0 -i 254 -a 0 -x {10.0 9.0 122 ------- null} + -t 0.1796 -s 7 -d 0 -p ack -e 40 -c 0 -i 254 -a 0 -x {10.0 9.0 122 ------- null} h -t 0.1796 -s 7 -d 8 -p ack -e 40 -c 0 -i 254 -a 0 -x {10.0 9.0 122 ------- null} r -t 0.179744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 239 -a 0 -x {9.0 10.0 124 ------- null} + -t 0.179744 -s 10 -d 7 -p ack -e 40 -c 0 -i 258 -a 0 -x {10.0 9.0 124 ------- null} - -t 0.179744 -s 10 -d 7 -p ack -e 40 -c 0 -i 258 -a 0 -x {10.0 9.0 124 ------- null} h -t 0.179744 -s 10 -d 7 -p ack -e 40 -c 0 -i 258 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.17984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 253 -a 0 -x {9.0 10.0 131 ------- null} + -t 0.17984 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 253 -a 0 -x {9.0 10.0 131 ------- null} h -t 0.17984 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 253 -a 0 -x {9.0 10.0 131 ------- null} r -t 0.18016 -s 0 -d 9 -p ack -e 40 -c 0 -i 248 -a 0 -x {10.0 9.0 119 ------- null} + -t 0.18016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 259 -a 0 -x {9.0 10.0 134 ------- null} - -t 0.18016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 259 -a 0 -x {9.0 10.0 134 ------- null} h -t 0.18016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 259 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.180272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 245 -a 0 -x {9.0 10.0 127 ------- null} - -t 0.180272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 245 -a 0 -x {9.0 10.0 127 ------- null} h -t 0.180272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 245 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.180432 -s 0 -d 9 -p ack -e 40 -c 0 -i 252 -a 0 -x {10.0 9.0 121 ------- null} - -t 0.180432 -s 0 -d 9 -p ack -e 40 -c 0 -i 252 -a 0 -x {10.0 9.0 121 ------- null} h -t 0.180432 -s 0 -d 9 -p ack -e 40 -c 0 -i 252 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.180688 -s 10 -d 7 -p ack -e 40 -c 0 -i 256 -a 0 -x {10.0 9.0 123 ------- null} + -t 0.180688 -s 7 -d 0 -p ack -e 40 -c 0 -i 256 -a 0 -x {10.0 9.0 123 ------- null} h -t 0.180688 -s 7 -d 8 -p ack -e 40 -c 0 -i 256 -a 0 -x {10.0 9.0 123 ------- null} r -t 0.180752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 255 -a 0 -x {9.0 10.0 132 ------- null} + -t 0.180752 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 255 -a 0 -x {9.0 10.0 132 ------- null} h -t 0.180752 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 255 -a 0 -x {9.0 10.0 132 ------- null} r -t 0.180832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 241 -a 0 -x {9.0 10.0 125 ------- null} + -t 0.180832 -s 10 -d 7 -p ack -e 40 -c 0 -i 260 -a 0 -x {10.0 9.0 125 ------- null} - -t 0.180832 -s 10 -d 7 -p ack -e 40 -c 0 -i 260 -a 0 -x {10.0 9.0 125 ------- null} h -t 0.180832 -s 10 -d 7 -p ack -e 40 -c 0 -i 260 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.18136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 247 -a 0 -x {9.0 10.0 128 ------- null} - -t 0.18136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 247 -a 0 -x {9.0 10.0 128 ------- null} h -t 0.18136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 247 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.18144 -s 0 -d 9 -p ack -e 40 -c 0 -i 250 -a 0 -x {10.0 9.0 120 ------- null} + -t 0.18144 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 261 -a 0 -x {9.0 10.0 135 ------- null} - -t 0.18144 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 261 -a 0 -x {9.0 10.0 135 ------- null} h -t 0.18144 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 261 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.181504 -s 0 -d 9 -p ack -e 40 -c 0 -i 254 -a 0 -x {10.0 9.0 122 ------- null} - -t 0.181504 -s 0 -d 9 -p ack -e 40 -c 0 -i 254 -a 0 -x {10.0 9.0 122 ------- null} h -t 0.181504 -s 0 -d 9 -p ack -e 40 -c 0 -i 254 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.181776 -s 10 -d 7 -p ack -e 40 -c 0 -i 258 -a 0 -x {10.0 9.0 124 ------- null} + -t 0.181776 -s 7 -d 0 -p ack -e 40 -c 0 -i 258 -a 0 -x {10.0 9.0 124 ------- null} h -t 0.181776 -s 7 -d 8 -p ack -e 40 -c 0 -i 258 -a 0 -x {10.0 9.0 124 ------- null} r -t 0.18192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 243 -a 0 -x {9.0 10.0 126 ------- null} + -t 0.18192 -s 10 -d 7 -p ack -e 40 -c 0 -i 262 -a 0 -x {10.0 9.0 126 ------- null} - -t 0.18192 -s 10 -d 7 -p ack -e 40 -c 0 -i 262 -a 0 -x {10.0 9.0 126 ------- null} h -t 0.18192 -s 10 -d 7 -p ack -e 40 -c 0 -i 262 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.181984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 257 -a 0 -x {9.0 10.0 133 ------- null} + -t 0.181984 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 257 -a 0 -x {9.0 10.0 133 ------- null} h -t 0.181984 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 257 -a 0 -x {9.0 10.0 133 ------- null} + -t 0.182448 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 249 -a 0 -x {9.0 10.0 129 ------- null} - -t 0.182448 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 249 -a 0 -x {9.0 10.0 129 ------- null} h -t 0.182448 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 249 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.182464 -s 0 -d 9 -p ack -e 40 -c 0 -i 252 -a 0 -x {10.0 9.0 121 ------- null} + -t 0.182464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {9.0 10.0 136 ------- null} - -t 0.182464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {9.0 10.0 136 ------- null} h -t 0.182464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.182544 -s 0 -d 9 -p ack -e 40 -c 0 -i 256 -a 0 -x {10.0 9.0 123 ------- null} - -t 0.182544 -s 0 -d 9 -p ack -e 40 -c 0 -i 256 -a 0 -x {10.0 9.0 123 ------- null} h -t 0.182544 -s 0 -d 9 -p ack -e 40 -c 0 -i 256 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.182864 -s 10 -d 7 -p ack -e 40 -c 0 -i 260 -a 0 -x {10.0 9.0 125 ------- null} + -t 0.182864 -s 7 -d 0 -p ack -e 40 -c 0 -i 260 -a 0 -x {10.0 9.0 125 ------- null} h -t 0.182864 -s 7 -d 8 -p ack -e 40 -c 0 -i 260 -a 0 -x {10.0 9.0 125 ------- null} r -t 0.18296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 259 -a 0 -x {9.0 10.0 134 ------- null} + -t 0.18296 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 259 -a 0 -x {9.0 10.0 134 ------- null} h -t 0.18296 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 259 -a 0 -x {9.0 10.0 134 ------- null} r -t 0.183072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 245 -a 0 -x {9.0 10.0 127 ------- null} + -t 0.183072 -s 10 -d 7 -p ack -e 40 -c 0 -i 264 -a 0 -x {10.0 9.0 127 ------- null} - -t 0.183072 -s 10 -d 7 -p ack -e 40 -c 0 -i 264 -a 0 -x {10.0 9.0 127 ------- null} h -t 0.183072 -s 10 -d 7 -p ack -e 40 -c 0 -i 264 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.183536 -s 0 -d 9 -p ack -e 40 -c 0 -i 254 -a 0 -x {10.0 9.0 122 ------- null} + -t 0.183536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {9.0 10.0 137 ------- null} - -t 0.183536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {9.0 10.0 137 ------- null} h -t 0.183536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.183536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 251 -a 0 -x {9.0 10.0 130 ------- null} - -t 0.183536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 251 -a 0 -x {9.0 10.0 130 ------- null} h -t 0.183536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 251 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.183792 -s 0 -d 9 -p ack -e 40 -c 0 -i 258 -a 0 -x {10.0 9.0 124 ------- null} - -t 0.183792 -s 0 -d 9 -p ack -e 40 -c 0 -i 258 -a 0 -x {10.0 9.0 124 ------- null} h -t 0.183792 -s 0 -d 9 -p ack -e 40 -c 0 -i 258 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.183952 -s 10 -d 7 -p ack -e 40 -c 0 -i 262 -a 0 -x {10.0 9.0 126 ------- null} + -t 0.183952 -s 7 -d 0 -p ack -e 40 -c 0 -i 262 -a 0 -x {10.0 9.0 126 ------- null} h -t 0.183952 -s 7 -d 8 -p ack -e 40 -c 0 -i 262 -a 0 -x {10.0 9.0 126 ------- null} r -t 0.18416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 247 -a 0 -x {9.0 10.0 128 ------- null} + -t 0.18416 -s 10 -d 7 -p ack -e 40 -c 0 -i 266 -a 0 -x {10.0 9.0 128 ------- null} - -t 0.18416 -s 10 -d 7 -p ack -e 40 -c 0 -i 266 -a 0 -x {10.0 9.0 128 ------- null} h -t 0.18416 -s 10 -d 7 -p ack -e 40 -c 0 -i 266 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.18424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 261 -a 0 -x {9.0 10.0 135 ------- null} + -t 0.18424 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 261 -a 0 -x {9.0 10.0 135 ------- null} h -t 0.18424 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 261 -a 0 -x {9.0 10.0 135 ------- null} r -t 0.184576 -s 0 -d 9 -p ack -e 40 -c 0 -i 256 -a 0 -x {10.0 9.0 123 ------- null} + -t 0.184576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {9.0 10.0 138 ------- null} - -t 0.184576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {9.0 10.0 138 ------- null} h -t 0.184576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.184624 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 253 -a 0 -x {9.0 10.0 131 ------- null} - -t 0.184624 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 253 -a 0 -x {9.0 10.0 131 ------- null} h -t 0.184624 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 253 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.184928 -s 0 -d 9 -p ack -e 40 -c 0 -i 260 -a 0 -x {10.0 9.0 125 ------- null} - -t 0.184928 -s 0 -d 9 -p ack -e 40 -c 0 -i 260 -a 0 -x {10.0 9.0 125 ------- null} h -t 0.184928 -s 0 -d 9 -p ack -e 40 -c 0 -i 260 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.185104 -s 10 -d 7 -p ack -e 40 -c 0 -i 264 -a 0 -x {10.0 9.0 127 ------- null} + -t 0.185104 -s 7 -d 0 -p ack -e 40 -c 0 -i 264 -a 0 -x {10.0 9.0 127 ------- null} h -t 0.185104 -s 7 -d 8 -p ack -e 40 -c 0 -i 264 -a 0 -x {10.0 9.0 127 ------- null} r -t 0.185248 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 249 -a 0 -x {9.0 10.0 129 ------- null} + -t 0.185248 -s 10 -d 7 -p ack -e 40 -c 0 -i 268 -a 0 -x {10.0 9.0 129 ------- null} - -t 0.185248 -s 10 -d 7 -p ack -e 40 -c 0 -i 268 -a 0 -x {10.0 9.0 129 ------- null} h -t 0.185248 -s 10 -d 7 -p ack -e 40 -c 0 -i 268 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.185264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {9.0 10.0 136 ------- null} + -t 0.185264 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {9.0 10.0 136 ------- null} h -t 0.185264 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {9.0 10.0 136 ------- null} r -t 0.185824 -s 0 -d 9 -p ack -e 40 -c 0 -i 258 -a 0 -x {10.0 9.0 124 ------- null} + -t 0.185824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {9.0 10.0 139 ------- null} - -t 0.185824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {9.0 10.0 139 ------- null} h -t 0.185824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.185968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 255 -a 0 -x {9.0 10.0 132 ------- null} - -t 0.185968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 255 -a 0 -x {9.0 10.0 132 ------- null} h -t 0.185968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 255 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.186192 -s 10 -d 7 -p ack -e 40 -c 0 -i 266 -a 0 -x {10.0 9.0 128 ------- null} + -t 0.186192 -s 7 -d 0 -p ack -e 40 -c 0 -i 266 -a 0 -x {10.0 9.0 128 ------- null} h -t 0.186192 -s 7 -d 8 -p ack -e 40 -c 0 -i 266 -a 0 -x {10.0 9.0 128 ------- null} + -t 0.186272 -s 0 -d 9 -p ack -e 40 -c 0 -i 262 -a 0 -x {10.0 9.0 126 ------- null} - -t 0.186272 -s 0 -d 9 -p ack -e 40 -c 0 -i 262 -a 0 -x {10.0 9.0 126 ------- null} h -t 0.186272 -s 0 -d 9 -p ack -e 40 -c 0 -i 262 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.186336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {9.0 10.0 137 ------- null} + -t 0.186336 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {9.0 10.0 137 ------- null} h -t 0.186336 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {9.0 10.0 137 ------- null} r -t 0.186336 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 251 -a 0 -x {9.0 10.0 130 ------- null} + -t 0.186336 -s 10 -d 7 -p ack -e 40 -c 0 -i 270 -a 0 -x {10.0 9.0 130 ------- null} - -t 0.186336 -s 10 -d 7 -p ack -e 40 -c 0 -i 270 -a 0 -x {10.0 9.0 130 ------- null} h -t 0.186336 -s 10 -d 7 -p ack -e 40 -c 0 -i 270 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.18696 -s 0 -d 9 -p ack -e 40 -c 0 -i 260 -a 0 -x {10.0 9.0 125 ------- null} + -t 0.18696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {9.0 10.0 140 ------- null} - -t 0.18696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {9.0 10.0 140 ------- null} h -t 0.18696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.187232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 257 -a 0 -x {9.0 10.0 133 ------- null} - -t 0.187232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 257 -a 0 -x {9.0 10.0 133 ------- null} h -t 0.187232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 257 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.18728 -s 10 -d 7 -p ack -e 40 -c 0 -i 268 -a 0 -x {10.0 9.0 129 ------- null} + -t 0.18728 -s 7 -d 0 -p ack -e 40 -c 0 -i 268 -a 0 -x {10.0 9.0 129 ------- null} h -t 0.18728 -s 7 -d 8 -p ack -e 40 -c 0 -i 268 -a 0 -x {10.0 9.0 129 ------- null} r -t 0.187376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {9.0 10.0 138 ------- null} + -t 0.187376 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {9.0 10.0 138 ------- null} h -t 0.187376 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {9.0 10.0 138 ------- null} + -t 0.187408 -s 0 -d 9 -p ack -e 40 -c 0 -i 264 -a 0 -x {10.0 9.0 127 ------- null} - -t 0.187408 -s 0 -d 9 -p ack -e 40 -c 0 -i 264 -a 0 -x {10.0 9.0 127 ------- null} h -t 0.187408 -s 0 -d 9 -p ack -e 40 -c 0 -i 264 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.187424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 253 -a 0 -x {9.0 10.0 131 ------- null} + -t 0.187424 -s 10 -d 7 -p ack -e 40 -c 0 -i 272 -a 0 -x {10.0 9.0 131 ------- null} - -t 0.187424 -s 10 -d 7 -p ack -e 40 -c 0 -i 272 -a 0 -x {10.0 9.0 131 ------- null} h -t 0.187424 -s 10 -d 7 -p ack -e 40 -c 0 -i 272 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.188304 -s 0 -d 9 -p ack -e 40 -c 0 -i 262 -a 0 -x {10.0 9.0 126 ------- null} + -t 0.188304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {9.0 10.0 141 ------- null} - -t 0.188304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {9.0 10.0 141 ------- null} h -t 0.188304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.18832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 259 -a 0 -x {9.0 10.0 134 ------- null} - -t 0.18832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 259 -a 0 -x {9.0 10.0 134 ------- null} h -t 0.18832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 259 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.188368 -s 10 -d 7 -p ack -e 40 -c 0 -i 270 -a 0 -x {10.0 9.0 130 ------- null} + -t 0.188368 -s 7 -d 0 -p ack -e 40 -c 0 -i 270 -a 0 -x {10.0 9.0 130 ------- null} h -t 0.188368 -s 7 -d 8 -p ack -e 40 -c 0 -i 270 -a 0 -x {10.0 9.0 130 ------- null} + -t 0.188592 -s 0 -d 9 -p ack -e 40 -c 0 -i 266 -a 0 -x {10.0 9.0 128 ------- null} - -t 0.188592 -s 0 -d 9 -p ack -e 40 -c 0 -i 266 -a 0 -x {10.0 9.0 128 ------- null} h -t 0.188592 -s 0 -d 9 -p ack -e 40 -c 0 -i 266 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.188624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {9.0 10.0 139 ------- null} + -t 0.188624 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {9.0 10.0 139 ------- null} h -t 0.188624 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {9.0 10.0 139 ------- null} r -t 0.188768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 255 -a 0 -x {9.0 10.0 132 ------- null} + -t 0.188768 -s 10 -d 7 -p ack -e 40 -c 0 -i 274 -a 0 -x {10.0 9.0 132 ------- null} - -t 0.188768 -s 10 -d 7 -p ack -e 40 -c 0 -i 274 -a 0 -x {10.0 9.0 132 ------- null} h -t 0.188768 -s 10 -d 7 -p ack -e 40 -c 0 -i 274 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.18944 -s 0 -d 9 -p ack -e 40 -c 0 -i 264 -a 0 -x {10.0 9.0 127 ------- null} + -t 0.18944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {9.0 10.0 142 ------- null} - -t 0.18944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {9.0 10.0 142 ------- null} h -t 0.18944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.189456 -s 10 -d 7 -p ack -e 40 -c 0 -i 272 -a 0 -x {10.0 9.0 131 ------- null} + -t 0.189456 -s 7 -d 0 -p ack -e 40 -c 0 -i 272 -a 0 -x {10.0 9.0 131 ------- null} h -t 0.189456 -s 7 -d 8 -p ack -e 40 -c 0 -i 272 -a 0 -x {10.0 9.0 131 ------- null} + -t 0.189648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 261 -a 0 -x {9.0 10.0 135 ------- null} - -t 0.189648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 261 -a 0 -x {9.0 10.0 135 ------- null} h -t 0.189648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 261 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.18976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {9.0 10.0 140 ------- null} + -t 0.18976 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {9.0 10.0 140 ------- null} h -t 0.18976 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {9.0 10.0 140 ------- null} + -t 0.189952 -s 0 -d 9 -p ack -e 40 -c 0 -i 268 -a 0 -x {10.0 9.0 129 ------- null} - -t 0.189952 -s 0 -d 9 -p ack -e 40 -c 0 -i 268 -a 0 -x {10.0 9.0 129 ------- null} h -t 0.189952 -s 0 -d 9 -p ack -e 40 -c 0 -i 268 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.190032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 257 -a 0 -x {9.0 10.0 133 ------- null} + -t 0.190032 -s 10 -d 7 -p ack -e 40 -c 0 -i 276 -a 0 -x {10.0 9.0 133 ------- null} - -t 0.190032 -s 10 -d 7 -p ack -e 40 -c 0 -i 276 -a 0 -x {10.0 9.0 133 ------- null} h -t 0.190032 -s 10 -d 7 -p ack -e 40 -c 0 -i 276 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.190624 -s 0 -d 9 -p ack -e 40 -c 0 -i 266 -a 0 -x {10.0 9.0 128 ------- null} + -t 0.190624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {9.0 10.0 143 ------- null} - -t 0.190624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {9.0 10.0 143 ------- null} h -t 0.190624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.1908 -s 10 -d 7 -p ack -e 40 -c 0 -i 274 -a 0 -x {10.0 9.0 132 ------- null} + -t 0.1908 -s 7 -d 0 -p ack -e 40 -c 0 -i 274 -a 0 -x {10.0 9.0 132 ------- null} h -t 0.1908 -s 7 -d 8 -p ack -e 40 -c 0 -i 274 -a 0 -x {10.0 9.0 132 ------- null} + -t 0.190816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {9.0 10.0 136 ------- null} - -t 0.190816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {9.0 10.0 136 ------- null} h -t 0.190816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.190896 -s 0 -d 9 -p ack -e 40 -c 0 -i 270 -a 0 -x {10.0 9.0 130 ------- null} - -t 0.190896 -s 0 -d 9 -p ack -e 40 -c 0 -i 270 -a 0 -x {10.0 9.0 130 ------- null} h -t 0.190896 -s 0 -d 9 -p ack -e 40 -c 0 -i 270 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.191104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {9.0 10.0 141 ------- null} + -t 0.191104 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {9.0 10.0 141 ------- null} h -t 0.191104 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {9.0 10.0 141 ------- null} r -t 0.19112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 259 -a 0 -x {9.0 10.0 134 ------- null} + -t 0.19112 -s 10 -d 7 -p ack -e 40 -c 0 -i 278 -a 0 -x {10.0 9.0 134 ------- null} - -t 0.19112 -s 10 -d 7 -p ack -e 40 -c 0 -i 278 -a 0 -x {10.0 9.0 134 ------- null} h -t 0.19112 -s 10 -d 7 -p ack -e 40 -c 0 -i 278 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.191904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {9.0 10.0 137 ------- null} - -t 0.191904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {9.0 10.0 137 ------- null} h -t 0.191904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.191968 -s 0 -d 9 -p ack -e 40 -c 0 -i 272 -a 0 -x {10.0 9.0 131 ------- null} - -t 0.191968 -s 0 -d 9 -p ack -e 40 -c 0 -i 272 -a 0 -x {10.0 9.0 131 ------- null} h -t 0.191968 -s 0 -d 9 -p ack -e 40 -c 0 -i 272 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.191984 -s 0 -d 9 -p ack -e 40 -c 0 -i 268 -a 0 -x {10.0 9.0 129 ------- null} + -t 0.191984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {9.0 10.0 144 ------- null} - -t 0.191984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {9.0 10.0 144 ------- null} h -t 0.191984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.192064 -s 10 -d 7 -p ack -e 40 -c 0 -i 276 -a 0 -x {10.0 9.0 133 ------- null} + -t 0.192064 -s 7 -d 0 -p ack -e 40 -c 0 -i 276 -a 0 -x {10.0 9.0 133 ------- null} h -t 0.192064 -s 7 -d 8 -p ack -e 40 -c 0 -i 276 -a 0 -x {10.0 9.0 133 ------- null} r -t 0.19224 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {9.0 10.0 142 ------- null} + -t 0.19224 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {9.0 10.0 142 ------- null} h -t 0.19224 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {9.0 10.0 142 ------- null} r -t 0.192448 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 261 -a 0 -x {9.0 10.0 135 ------- null} + -t 0.192448 -s 10 -d 7 -p ack -e 40 -c 0 -i 280 -a 0 -x {10.0 9.0 135 ------- null} - -t 0.192448 -s 10 -d 7 -p ack -e 40 -c 0 -i 280 -a 0 -x {10.0 9.0 135 ------- null} h -t 0.192448 -s 10 -d 7 -p ack -e 40 -c 0 -i 280 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.192928 -s 0 -d 9 -p ack -e 40 -c 0 -i 270 -a 0 -x {10.0 9.0 130 ------- null} + -t 0.192928 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {9.0 10.0 145 ------- null} - -t 0.192928 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {9.0 10.0 145 ------- null} h -t 0.192928 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.192992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {9.0 10.0 138 ------- null} - -t 0.192992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {9.0 10.0 138 ------- null} h -t 0.192992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.193152 -s 10 -d 7 -p ack -e 40 -c 0 -i 278 -a 0 -x {10.0 9.0 134 ------- null} + -t 0.193152 -s 7 -d 0 -p ack -e 40 -c 0 -i 278 -a 0 -x {10.0 9.0 134 ------- null} h -t 0.193152 -s 7 -d 8 -p ack -e 40 -c 0 -i 278 -a 0 -x {10.0 9.0 134 ------- null} + -t 0.19328 -s 0 -d 9 -p ack -e 40 -c 0 -i 274 -a 0 -x {10.0 9.0 132 ------- null} - -t 0.19328 -s 0 -d 9 -p ack -e 40 -c 0 -i 274 -a 0 -x {10.0 9.0 132 ------- null} h -t 0.19328 -s 0 -d 9 -p ack -e 40 -c 0 -i 274 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.193424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {9.0 10.0 143 ------- null} + -t 0.193424 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {9.0 10.0 143 ------- null} h -t 0.193424 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {9.0 10.0 143 ------- null} r -t 0.193616 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 263 -a 0 -x {9.0 10.0 136 ------- null} + -t 0.193616 -s 10 -d 7 -p ack -e 40 -c 0 -i 282 -a 0 -x {10.0 9.0 136 ------- null} - -t 0.193616 -s 10 -d 7 -p ack -e 40 -c 0 -i 282 -a 0 -x {10.0 9.0 136 ------- null} h -t 0.193616 -s 10 -d 7 -p ack -e 40 -c 0 -i 282 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.194 -s 0 -d 9 -p ack -e 40 -c 0 -i 272 -a 0 -x {10.0 9.0 131 ------- null} + -t 0.194 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 283 -a 0 -x {9.0 10.0 146 ------- null} - -t 0.194 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 283 -a 0 -x {9.0 10.0 146 ------- null} h -t 0.194 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 283 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.19424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {9.0 10.0 139 ------- null} - -t 0.19424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {9.0 10.0 139 ------- null} h -t 0.19424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.194416 -s 0 -d 9 -p ack -e 40 -c 0 -i 276 -a 0 -x {10.0 9.0 133 ------- null} - -t 0.194416 -s 0 -d 9 -p ack -e 40 -c 0 -i 276 -a 0 -x {10.0 9.0 133 ------- null} h -t 0.194416 -s 0 -d 9 -p ack -e 40 -c 0 -i 276 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.19448 -s 10 -d 7 -p ack -e 40 -c 0 -i 280 -a 0 -x {10.0 9.0 135 ------- null} + -t 0.19448 -s 7 -d 0 -p ack -e 40 -c 0 -i 280 -a 0 -x {10.0 9.0 135 ------- null} h -t 0.19448 -s 7 -d 8 -p ack -e 40 -c 0 -i 280 -a 0 -x {10.0 9.0 135 ------- null} r -t 0.194704 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 265 -a 0 -x {9.0 10.0 137 ------- null} + -t 0.194704 -s 10 -d 7 -p ack -e 40 -c 0 -i 284 -a 0 -x {10.0 9.0 137 ------- null} - -t 0.194704 -s 10 -d 7 -p ack -e 40 -c 0 -i 284 -a 0 -x {10.0 9.0 137 ------- null} h -t 0.194704 -s 10 -d 7 -p ack -e 40 -c 0 -i 284 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.194784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {9.0 10.0 144 ------- null} + -t 0.194784 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {9.0 10.0 144 ------- null} h -t 0.194784 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {9.0 10.0 144 ------- null} r -t 0.195312 -s 0 -d 9 -p ack -e 40 -c 0 -i 274 -a 0 -x {10.0 9.0 132 ------- null} + -t 0.195312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 285 -a 0 -x {9.0 10.0 147 ------- null} - -t 0.195312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 285 -a 0 -x {9.0 10.0 147 ------- null} h -t 0.195312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 285 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.195328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {9.0 10.0 140 ------- null} - -t 0.195328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {9.0 10.0 140 ------- null} h -t 0.195328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.195504 -s 0 -d 9 -p ack -e 40 -c 0 -i 278 -a 0 -x {10.0 9.0 134 ------- null} - -t 0.195504 -s 0 -d 9 -p ack -e 40 -c 0 -i 278 -a 0 -x {10.0 9.0 134 ------- null} h -t 0.195504 -s 0 -d 9 -p ack -e 40 -c 0 -i 278 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.195648 -s 10 -d 7 -p ack -e 40 -c 0 -i 282 -a 0 -x {10.0 9.0 136 ------- null} + -t 0.195648 -s 7 -d 0 -p ack -e 40 -c 0 -i 282 -a 0 -x {10.0 9.0 136 ------- null} h -t 0.195648 -s 7 -d 8 -p ack -e 40 -c 0 -i 282 -a 0 -x {10.0 9.0 136 ------- null} r -t 0.195728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {9.0 10.0 145 ------- null} + -t 0.195728 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {9.0 10.0 145 ------- null} h -t 0.195728 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {9.0 10.0 145 ------- null} r -t 0.195792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 267 -a 0 -x {9.0 10.0 138 ------- null} + -t 0.195792 -s 10 -d 7 -p ack -e 40 -c 0 -i 286 -a 0 -x {10.0 9.0 138 ------- null} - -t 0.195792 -s 10 -d 7 -p ack -e 40 -c 0 -i 286 -a 0 -x {10.0 9.0 138 ------- null} h -t 0.195792 -s 10 -d 7 -p ack -e 40 -c 0 -i 286 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.196416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {9.0 10.0 141 ------- null} - -t 0.196416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {9.0 10.0 141 ------- null} h -t 0.196416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.196448 -s 0 -d 9 -p ack -e 40 -c 0 -i 276 -a 0 -x {10.0 9.0 133 ------- null} + -t 0.196448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 287 -a 0 -x {9.0 10.0 148 ------- null} - -t 0.196448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 287 -a 0 -x {9.0 10.0 148 ------- null} h -t 0.196448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 287 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.196704 -s 0 -d 9 -p ack -e 40 -c 0 -i 280 -a 0 -x {10.0 9.0 135 ------- null} - -t 0.196704 -s 0 -d 9 -p ack -e 40 -c 0 -i 280 -a 0 -x {10.0 9.0 135 ------- null} h -t 0.196704 -s 0 -d 9 -p ack -e 40 -c 0 -i 280 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.196736 -s 10 -d 7 -p ack -e 40 -c 0 -i 284 -a 0 -x {10.0 9.0 137 ------- null} + -t 0.196736 -s 7 -d 0 -p ack -e 40 -c 0 -i 284 -a 0 -x {10.0 9.0 137 ------- null} h -t 0.196736 -s 7 -d 8 -p ack -e 40 -c 0 -i 284 -a 0 -x {10.0 9.0 137 ------- null} r -t 0.1968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 283 -a 0 -x {9.0 10.0 146 ------- null} + -t 0.1968 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 283 -a 0 -x {9.0 10.0 146 ------- null} h -t 0.1968 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 283 -a 0 -x {9.0 10.0 146 ------- null} r -t 0.19704 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 269 -a 0 -x {9.0 10.0 139 ------- null} + -t 0.19704 -s 10 -d 7 -p ack -e 40 -c 0 -i 288 -a 0 -x {10.0 9.0 139 ------- null} - -t 0.19704 -s 10 -d 7 -p ack -e 40 -c 0 -i 288 -a 0 -x {10.0 9.0 139 ------- null} h -t 0.19704 -s 10 -d 7 -p ack -e 40 -c 0 -i 288 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.197536 -s 0 -d 9 -p ack -e 40 -c 0 -i 278 -a 0 -x {10.0 9.0 134 ------- null} + -t 0.197536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 289 -a 0 -x {9.0 10.0 149 ------- null} - -t 0.197536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 289 -a 0 -x {9.0 10.0 149 ------- null} h -t 0.197536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 289 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.1976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {9.0 10.0 142 ------- null} - -t 0.1976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {9.0 10.0 142 ------- null} h -t 0.1976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.197696 -s 0 -d 9 -p ack -e 40 -c 0 -i 282 -a 0 -x {10.0 9.0 136 ------- null} - -t 0.197696 -s 0 -d 9 -p ack -e 40 -c 0 -i 282 -a 0 -x {10.0 9.0 136 ------- null} h -t 0.197696 -s 0 -d 9 -p ack -e 40 -c 0 -i 282 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.197824 -s 10 -d 7 -p ack -e 40 -c 0 -i 286 -a 0 -x {10.0 9.0 138 ------- null} + -t 0.197824 -s 7 -d 0 -p ack -e 40 -c 0 -i 286 -a 0 -x {10.0 9.0 138 ------- null} h -t 0.197824 -s 7 -d 8 -p ack -e 40 -c 0 -i 286 -a 0 -x {10.0 9.0 138 ------- null} r -t 0.198112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 285 -a 0 -x {9.0 10.0 147 ------- null} + -t 0.198112 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 285 -a 0 -x {9.0 10.0 147 ------- null} h -t 0.198112 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 285 -a 0 -x {9.0 10.0 147 ------- null} r -t 0.198128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 271 -a 0 -x {9.0 10.0 140 ------- null} + -t 0.198128 -s 10 -d 7 -p ack -e 40 -c 0 -i 290 -a 0 -x {10.0 9.0 140 ------- null} - -t 0.198128 -s 10 -d 7 -p ack -e 40 -c 0 -i 290 -a 0 -x {10.0 9.0 140 ------- null} h -t 0.198128 -s 10 -d 7 -p ack -e 40 -c 0 -i 290 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.198688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {9.0 10.0 143 ------- null} - -t 0.198688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {9.0 10.0 143 ------- null} h -t 0.198688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.198736 -s 0 -d 9 -p ack -e 40 -c 0 -i 280 -a 0 -x {10.0 9.0 135 ------- null} + -t 0.198736 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 291 -a 0 -x {9.0 10.0 150 ------- null} - -t 0.198736 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 291 -a 0 -x {9.0 10.0 150 ------- null} h -t 0.198736 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 291 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.198864 -s 0 -d 9 -p ack -e 40 -c 0 -i 284 -a 0 -x {10.0 9.0 137 ------- null} - -t 0.198864 -s 0 -d 9 -p ack -e 40 -c 0 -i 284 -a 0 -x {10.0 9.0 137 ------- null} h -t 0.198864 -s 0 -d 9 -p ack -e 40 -c 0 -i 284 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.199072 -s 10 -d 7 -p ack -e 40 -c 0 -i 288 -a 0 -x {10.0 9.0 139 ------- null} + -t 0.199072 -s 7 -d 0 -p ack -e 40 -c 0 -i 288 -a 0 -x {10.0 9.0 139 ------- null} h -t 0.199072 -s 7 -d 8 -p ack -e 40 -c 0 -i 288 -a 0 -x {10.0 9.0 139 ------- null} r -t 0.199216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 273 -a 0 -x {9.0 10.0 141 ------- null} + -t 0.199216 -s 10 -d 7 -p ack -e 40 -c 0 -i 292 -a 0 -x {10.0 9.0 141 ------- null} - -t 0.199216 -s 10 -d 7 -p ack -e 40 -c 0 -i 292 -a 0 -x {10.0 9.0 141 ------- null} h -t 0.199216 -s 10 -d 7 -p ack -e 40 -c 0 -i 292 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.199248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 287 -a 0 -x {9.0 10.0 148 ------- null} + -t 0.199248 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 287 -a 0 -x {9.0 10.0 148 ------- null} h -t 0.199248 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 287 -a 0 -x {9.0 10.0 148 ------- null} r -t 0.199728 -s 0 -d 9 -p ack -e 40 -c 0 -i 282 -a 0 -x {10.0 9.0 136 ------- null} + -t 0.199728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 293 -a 0 -x {9.0 10.0 151 ------- null} - -t 0.199728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 293 -a 0 -x {9.0 10.0 151 ------- null} h -t 0.199728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 293 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.199776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {9.0 10.0 144 ------- null} - -t 0.199776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {9.0 10.0 144 ------- null} h -t 0.199776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.199952 -s 0 -d 9 -p ack -e 40 -c 0 -i 286 -a 0 -x {10.0 9.0 138 ------- null} - -t 0.199952 -s 0 -d 9 -p ack -e 40 -c 0 -i 286 -a 0 -x {10.0 9.0 138 ------- null} h -t 0.199952 -s 0 -d 9 -p ack -e 40 -c 0 -i 286 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.20016 -s 10 -d 7 -p ack -e 40 -c 0 -i 290 -a 0 -x {10.0 9.0 140 ------- null} + -t 0.20016 -s 7 -d 0 -p ack -e 40 -c 0 -i 290 -a 0 -x {10.0 9.0 140 ------- null} h -t 0.20016 -s 7 -d 8 -p ack -e 40 -c 0 -i 290 -a 0 -x {10.0 9.0 140 ------- null} r -t 0.200336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 289 -a 0 -x {9.0 10.0 149 ------- null} + -t 0.200336 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 289 -a 0 -x {9.0 10.0 149 ------- null} h -t 0.200336 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 289 -a 0 -x {9.0 10.0 149 ------- null} r -t 0.2004 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 275 -a 0 -x {9.0 10.0 142 ------- null} + -t 0.2004 -s 10 -d 7 -p ack -e 40 -c 0 -i 294 -a 0 -x {10.0 9.0 142 ------- null} - -t 0.2004 -s 10 -d 7 -p ack -e 40 -c 0 -i 294 -a 0 -x {10.0 9.0 142 ------- null} h -t 0.2004 -s 10 -d 7 -p ack -e 40 -c 0 -i 294 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.200864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {9.0 10.0 145 ------- null} - -t 0.200864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {9.0 10.0 145 ------- null} h -t 0.200864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.200896 -s 0 -d 9 -p ack -e 40 -c 0 -i 284 -a 0 -x {10.0 9.0 137 ------- null} + -t 0.200896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 295 -a 0 -x {9.0 10.0 152 ------- null} - -t 0.200896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 295 -a 0 -x {9.0 10.0 152 ------- null} h -t 0.200896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 295 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.201152 -s 0 -d 9 -p ack -e 40 -c 0 -i 288 -a 0 -x {10.0 9.0 139 ------- null} - -t 0.201152 -s 0 -d 9 -p ack -e 40 -c 0 -i 288 -a 0 -x {10.0 9.0 139 ------- null} h -t 0.201152 -s 0 -d 9 -p ack -e 40 -c 0 -i 288 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.201248 -s 10 -d 7 -p ack -e 40 -c 0 -i 292 -a 0 -x {10.0 9.0 141 ------- null} + -t 0.201248 -s 7 -d 0 -p ack -e 40 -c 0 -i 292 -a 0 -x {10.0 9.0 141 ------- null} h -t 0.201248 -s 7 -d 8 -p ack -e 40 -c 0 -i 292 -a 0 -x {10.0 9.0 141 ------- null} r -t 0.201488 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 277 -a 0 -x {9.0 10.0 143 ------- null} + -t 0.201488 -s 10 -d 7 -p ack -e 40 -c 0 -i 296 -a 0 -x {10.0 9.0 143 ------- null} - -t 0.201488 -s 10 -d 7 -p ack -e 40 -c 0 -i 296 -a 0 -x {10.0 9.0 143 ------- null} h -t 0.201488 -s 10 -d 7 -p ack -e 40 -c 0 -i 296 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.201536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 291 -a 0 -x {9.0 10.0 150 ------- null} + -t 0.201536 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 291 -a 0 -x {9.0 10.0 150 ------- null} h -t 0.201536 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 291 -a 0 -x {9.0 10.0 150 ------- null} r -t 0.201984 -s 0 -d 9 -p ack -e 40 -c 0 -i 286 -a 0 -x {10.0 9.0 138 ------- null} + -t 0.201984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 297 -a 0 -x {9.0 10.0 153 ------- null} - -t 0.201984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 297 -a 0 -x {9.0 10.0 153 ------- null} h -t 0.201984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 297 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.202096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 283 -a 0 -x {9.0 10.0 146 ------- null} - -t 0.202096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 283 -a 0 -x {9.0 10.0 146 ------- null} h -t 0.202096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 283 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.202176 -s 0 -d 9 -p ack -e 40 -c 0 -i 290 -a 0 -x {10.0 9.0 140 ------- null} - -t 0.202176 -s 0 -d 9 -p ack -e 40 -c 0 -i 290 -a 0 -x {10.0 9.0 140 ------- null} h -t 0.202176 -s 0 -d 9 -p ack -e 40 -c 0 -i 290 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.202432 -s 10 -d 7 -p ack -e 40 -c 0 -i 294 -a 0 -x {10.0 9.0 142 ------- null} + -t 0.202432 -s 7 -d 0 -p ack -e 40 -c 0 -i 294 -a 0 -x {10.0 9.0 142 ------- null} h -t 0.202432 -s 7 -d 8 -p ack -e 40 -c 0 -i 294 -a 0 -x {10.0 9.0 142 ------- null} r -t 0.202528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 293 -a 0 -x {9.0 10.0 151 ------- null} + -t 0.202528 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 293 -a 0 -x {9.0 10.0 151 ------- null} h -t 0.202528 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 293 -a 0 -x {9.0 10.0 151 ------- null} r -t 0.202576 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 279 -a 0 -x {9.0 10.0 144 ------- null} + -t 0.202576 -s 10 -d 7 -p ack -e 40 -c 0 -i 298 -a 0 -x {10.0 9.0 144 ------- null} - -t 0.202576 -s 10 -d 7 -p ack -e 40 -c 0 -i 298 -a 0 -x {10.0 9.0 144 ------- null} h -t 0.202576 -s 10 -d 7 -p ack -e 40 -c 0 -i 298 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.203184 -s 0 -d 9 -p ack -e 40 -c 0 -i 288 -a 0 -x {10.0 9.0 139 ------- null} + -t 0.203184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 299 -a 0 -x {9.0 10.0 154 ------- null} - -t 0.203184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 299 -a 0 -x {9.0 10.0 154 ------- null} h -t 0.203184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 299 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.203184 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 285 -a 0 -x {9.0 10.0 147 ------- null} - -t 0.203184 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 285 -a 0 -x {9.0 10.0 147 ------- null} h -t 0.203184 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 285 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.203376 -s 0 -d 9 -p ack -e 40 -c 0 -i 292 -a 0 -x {10.0 9.0 141 ------- null} - -t 0.203376 -s 0 -d 9 -p ack -e 40 -c 0 -i 292 -a 0 -x {10.0 9.0 141 ------- null} h -t 0.203376 -s 0 -d 9 -p ack -e 40 -c 0 -i 292 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.20352 -s 10 -d 7 -p ack -e 40 -c 0 -i 296 -a 0 -x {10.0 9.0 143 ------- null} + -t 0.20352 -s 7 -d 0 -p ack -e 40 -c 0 -i 296 -a 0 -x {10.0 9.0 143 ------- null} h -t 0.20352 -s 7 -d 8 -p ack -e 40 -c 0 -i 296 -a 0 -x {10.0 9.0 143 ------- null} r -t 0.203664 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 281 -a 0 -x {9.0 10.0 145 ------- null} + -t 0.203664 -s 10 -d 7 -p ack -e 40 -c 0 -i 300 -a 0 -x {10.0 9.0 145 ------- null} - -t 0.203664 -s 10 -d 7 -p ack -e 40 -c 0 -i 300 -a 0 -x {10.0 9.0 145 ------- null} h -t 0.203664 -s 10 -d 7 -p ack -e 40 -c 0 -i 300 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.203696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 295 -a 0 -x {9.0 10.0 152 ------- null} + -t 0.203696 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 295 -a 0 -x {9.0 10.0 152 ------- null} h -t 0.203696 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 295 -a 0 -x {9.0 10.0 152 ------- null} r -t 0.204208 -s 0 -d 9 -p ack -e 40 -c 0 -i 290 -a 0 -x {10.0 9.0 140 ------- null} + -t 0.204208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 301 -a 0 -x {9.0 10.0 155 ------- null} - -t 0.204208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 301 -a 0 -x {9.0 10.0 155 ------- null} h -t 0.204208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 301 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.204272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 287 -a 0 -x {9.0 10.0 148 ------- null} - -t 0.204272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 287 -a 0 -x {9.0 10.0 148 ------- null} h -t 0.204272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 287 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.20448 -s 0 -d 9 -p ack -e 40 -c 0 -i 294 -a 0 -x {10.0 9.0 142 ------- null} - -t 0.20448 -s 0 -d 9 -p ack -e 40 -c 0 -i 294 -a 0 -x {10.0 9.0 142 ------- null} h -t 0.20448 -s 0 -d 9 -p ack -e 40 -c 0 -i 294 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.204608 -s 10 -d 7 -p ack -e 40 -c 0 -i 298 -a 0 -x {10.0 9.0 144 ------- null} + -t 0.204608 -s 7 -d 0 -p ack -e 40 -c 0 -i 298 -a 0 -x {10.0 9.0 144 ------- null} h -t 0.204608 -s 7 -d 8 -p ack -e 40 -c 0 -i 298 -a 0 -x {10.0 9.0 144 ------- null} r -t 0.204784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 297 -a 0 -x {9.0 10.0 153 ------- null} + -t 0.204784 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 297 -a 0 -x {9.0 10.0 153 ------- null} h -t 0.204784 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 297 -a 0 -x {9.0 10.0 153 ------- null} r -t 0.204896 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 283 -a 0 -x {9.0 10.0 146 ------- null} + -t 0.204896 -s 10 -d 7 -p ack -e 40 -c 0 -i 302 -a 0 -x {10.0 9.0 146 ------- null} - -t 0.204896 -s 10 -d 7 -p ack -e 40 -c 0 -i 302 -a 0 -x {10.0 9.0 146 ------- null} h -t 0.204896 -s 10 -d 7 -p ack -e 40 -c 0 -i 302 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.20536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 289 -a 0 -x {9.0 10.0 149 ------- null} - -t 0.20536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 289 -a 0 -x {9.0 10.0 149 ------- null} h -t 0.20536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 289 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.205408 -s 0 -d 9 -p ack -e 40 -c 0 -i 292 -a 0 -x {10.0 9.0 141 ------- null} + -t 0.205408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {9.0 10.0 156 ------- null} - -t 0.205408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {9.0 10.0 156 ------- null} h -t 0.205408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.205648 -s 0 -d 9 -p ack -e 40 -c 0 -i 296 -a 0 -x {10.0 9.0 143 ------- null} - -t 0.205648 -s 0 -d 9 -p ack -e 40 -c 0 -i 296 -a 0 -x {10.0 9.0 143 ------- null} h -t 0.205648 -s 0 -d 9 -p ack -e 40 -c 0 -i 296 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.205696 -s 10 -d 7 -p ack -e 40 -c 0 -i 300 -a 0 -x {10.0 9.0 145 ------- null} + -t 0.205696 -s 7 -d 0 -p ack -e 40 -c 0 -i 300 -a 0 -x {10.0 9.0 145 ------- null} h -t 0.205696 -s 7 -d 8 -p ack -e 40 -c 0 -i 300 -a 0 -x {10.0 9.0 145 ------- null} r -t 0.205984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 299 -a 0 -x {9.0 10.0 154 ------- null} + -t 0.205984 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 299 -a 0 -x {9.0 10.0 154 ------- null} h -t 0.205984 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 299 -a 0 -x {9.0 10.0 154 ------- null} r -t 0.205984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 285 -a 0 -x {9.0 10.0 147 ------- null} + -t 0.205984 -s 10 -d 7 -p ack -e 40 -c 0 -i 304 -a 0 -x {10.0 9.0 147 ------- null} - -t 0.205984 -s 10 -d 7 -p ack -e 40 -c 0 -i 304 -a 0 -x {10.0 9.0 147 ------- null} h -t 0.205984 -s 10 -d 7 -p ack -e 40 -c 0 -i 304 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.206512 -s 0 -d 9 -p ack -e 40 -c 0 -i 294 -a 0 -x {10.0 9.0 142 ------- null} + -t 0.206512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {9.0 10.0 157 ------- null} - -t 0.206512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {9.0 10.0 157 ------- null} h -t 0.206512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.206656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 291 -a 0 -x {9.0 10.0 150 ------- null} - -t 0.206656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 291 -a 0 -x {9.0 10.0 150 ------- null} h -t 0.206656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 291 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.206752 -s 0 -d 9 -p ack -e 40 -c 0 -i 298 -a 0 -x {10.0 9.0 144 ------- null} - -t 0.206752 -s 0 -d 9 -p ack -e 40 -c 0 -i 298 -a 0 -x {10.0 9.0 144 ------- null} h -t 0.206752 -s 0 -d 9 -p ack -e 40 -c 0 -i 298 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.206928 -s 10 -d 7 -p ack -e 40 -c 0 -i 302 -a 0 -x {10.0 9.0 146 ------- null} + -t 0.206928 -s 7 -d 0 -p ack -e 40 -c 0 -i 302 -a 0 -x {10.0 9.0 146 ------- null} h -t 0.206928 -s 7 -d 8 -p ack -e 40 -c 0 -i 302 -a 0 -x {10.0 9.0 146 ------- null} r -t 0.207008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 301 -a 0 -x {9.0 10.0 155 ------- null} + -t 0.207008 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 301 -a 0 -x {9.0 10.0 155 ------- null} h -t 0.207008 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 301 -a 0 -x {9.0 10.0 155 ------- null} r -t 0.207072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 287 -a 0 -x {9.0 10.0 148 ------- null} + -t 0.207072 -s 10 -d 7 -p ack -e 40 -c 0 -i 306 -a 0 -x {10.0 9.0 148 ------- null} - -t 0.207072 -s 10 -d 7 -p ack -e 40 -c 0 -i 306 -a 0 -x {10.0 9.0 148 ------- null} h -t 0.207072 -s 10 -d 7 -p ack -e 40 -c 0 -i 306 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.20768 -s 0 -d 9 -p ack -e 40 -c 0 -i 296 -a 0 -x {10.0 9.0 143 ------- null} + -t 0.20768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {9.0 10.0 158 ------- null} - -t 0.20768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {9.0 10.0 158 ------- null} h -t 0.20768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.207744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 293 -a 0 -x {9.0 10.0 151 ------- null} - -t 0.207744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 293 -a 0 -x {9.0 10.0 151 ------- null} h -t 0.207744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 293 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.207888 -s 0 -d 9 -p ack -e 40 -c 0 -i 300 -a 0 -x {10.0 9.0 145 ------- null} - -t 0.207888 -s 0 -d 9 -p ack -e 40 -c 0 -i 300 -a 0 -x {10.0 9.0 145 ------- null} h -t 0.207888 -s 0 -d 9 -p ack -e 40 -c 0 -i 300 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.208016 -s 10 -d 7 -p ack -e 40 -c 0 -i 304 -a 0 -x {10.0 9.0 147 ------- null} + -t 0.208016 -s 7 -d 0 -p ack -e 40 -c 0 -i 304 -a 0 -x {10.0 9.0 147 ------- null} h -t 0.208016 -s 7 -d 8 -p ack -e 40 -c 0 -i 304 -a 0 -x {10.0 9.0 147 ------- null} r -t 0.20816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 289 -a 0 -x {9.0 10.0 149 ------- null} + -t 0.20816 -s 10 -d 7 -p ack -e 40 -c 0 -i 308 -a 0 -x {10.0 9.0 149 ------- null} - -t 0.20816 -s 10 -d 7 -p ack -e 40 -c 0 -i 308 -a 0 -x {10.0 9.0 149 ------- null} h -t 0.20816 -s 10 -d 7 -p ack -e 40 -c 0 -i 308 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.208208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {9.0 10.0 156 ------- null} + -t 0.208208 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {9.0 10.0 156 ------- null} h -t 0.208208 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {9.0 10.0 156 ------- null} r -t 0.208784 -s 0 -d 9 -p ack -e 40 -c 0 -i 298 -a 0 -x {10.0 9.0 144 ------- null} + -t 0.208784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {9.0 10.0 159 ------- null} - -t 0.208784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {9.0 10.0 159 ------- null} h -t 0.208784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.208832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 295 -a 0 -x {9.0 10.0 152 ------- null} - -t 0.208832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 295 -a 0 -x {9.0 10.0 152 ------- null} h -t 0.208832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 295 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.208928 -s 0 -d 9 -p ack -e 40 -c 0 -i 302 -a 0 -x {10.0 9.0 146 ------- null} - -t 0.208928 -s 0 -d 9 -p ack -e 40 -c 0 -i 302 -a 0 -x {10.0 9.0 146 ------- null} h -t 0.208928 -s 0 -d 9 -p ack -e 40 -c 0 -i 302 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.209104 -s 10 -d 7 -p ack -e 40 -c 0 -i 306 -a 0 -x {10.0 9.0 148 ------- null} + -t 0.209104 -s 7 -d 0 -p ack -e 40 -c 0 -i 306 -a 0 -x {10.0 9.0 148 ------- null} h -t 0.209104 -s 7 -d 8 -p ack -e 40 -c 0 -i 306 -a 0 -x {10.0 9.0 148 ------- null} r -t 0.209312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {9.0 10.0 157 ------- null} + -t 0.209312 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {9.0 10.0 157 ------- null} h -t 0.209312 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {9.0 10.0 157 ------- null} r -t 0.209456 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 291 -a 0 -x {9.0 10.0 150 ------- null} + -t 0.209456 -s 10 -d 7 -p ack -e 40 -c 0 -i 310 -a 0 -x {10.0 9.0 150 ------- null} - -t 0.209456 -s 10 -d 7 -p ack -e 40 -c 0 -i 310 -a 0 -x {10.0 9.0 150 ------- null} h -t 0.209456 -s 10 -d 7 -p ack -e 40 -c 0 -i 310 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.20992 -s 0 -d 9 -p ack -e 40 -c 0 -i 300 -a 0 -x {10.0 9.0 145 ------- null} + -t 0.20992 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {9.0 10.0 160 ------- null} - -t 0.20992 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {9.0 10.0 160 ------- null} h -t 0.20992 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.20992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 297 -a 0 -x {9.0 10.0 153 ------- null} - -t 0.20992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 297 -a 0 -x {9.0 10.0 153 ------- null} h -t 0.20992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 297 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.21008 -s 0 -d 9 -p ack -e 40 -c 0 -i 304 -a 0 -x {10.0 9.0 147 ------- null} - -t 0.21008 -s 0 -d 9 -p ack -e 40 -c 0 -i 304 -a 0 -x {10.0 9.0 147 ------- null} h -t 0.21008 -s 0 -d 9 -p ack -e 40 -c 0 -i 304 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.210192 -s 10 -d 7 -p ack -e 40 -c 0 -i 308 -a 0 -x {10.0 9.0 149 ------- null} + -t 0.210192 -s 7 -d 0 -p ack -e 40 -c 0 -i 308 -a 0 -x {10.0 9.0 149 ------- null} h -t 0.210192 -s 7 -d 8 -p ack -e 40 -c 0 -i 308 -a 0 -x {10.0 9.0 149 ------- null} r -t 0.21048 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {9.0 10.0 158 ------- null} + -t 0.21048 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {9.0 10.0 158 ------- null} h -t 0.21048 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {9.0 10.0 158 ------- null} r -t 0.210544 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 293 -a 0 -x {9.0 10.0 151 ------- null} + -t 0.210544 -s 10 -d 7 -p ack -e 40 -c 0 -i 312 -a 0 -x {10.0 9.0 151 ------- null} - -t 0.210544 -s 10 -d 7 -p ack -e 40 -c 0 -i 312 -a 0 -x {10.0 9.0 151 ------- null} h -t 0.210544 -s 10 -d 7 -p ack -e 40 -c 0 -i 312 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.21096 -s 0 -d 9 -p ack -e 40 -c 0 -i 302 -a 0 -x {10.0 9.0 146 ------- null} + -t 0.21096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {9.0 10.0 161 ------- null} - -t 0.21096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {9.0 10.0 161 ------- null} h -t 0.21096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.211008 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 299 -a 0 -x {9.0 10.0 154 ------- null} - -t 0.211008 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 299 -a 0 -x {9.0 10.0 154 ------- null} h -t 0.211008 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 299 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.211168 -s 0 -d 9 -p ack -e 40 -c 0 -i 306 -a 0 -x {10.0 9.0 148 ------- null} - -t 0.211168 -s 0 -d 9 -p ack -e 40 -c 0 -i 306 -a 0 -x {10.0 9.0 148 ------- null} h -t 0.211168 -s 0 -d 9 -p ack -e 40 -c 0 -i 306 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.211488 -s 10 -d 7 -p ack -e 40 -c 0 -i 310 -a 0 -x {10.0 9.0 150 ------- null} + -t 0.211488 -s 7 -d 0 -p ack -e 40 -c 0 -i 310 -a 0 -x {10.0 9.0 150 ------- null} h -t 0.211488 -s 7 -d 8 -p ack -e 40 -c 0 -i 310 -a 0 -x {10.0 9.0 150 ------- null} r -t 0.211584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {9.0 10.0 159 ------- null} + -t 0.211584 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {9.0 10.0 159 ------- null} h -t 0.211584 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {9.0 10.0 159 ------- null} r -t 0.211632 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 295 -a 0 -x {9.0 10.0 152 ------- null} + -t 0.211632 -s 10 -d 7 -p ack -e 40 -c 0 -i 314 -a 0 -x {10.0 9.0 152 ------- null} - -t 0.211632 -s 10 -d 7 -p ack -e 40 -c 0 -i 314 -a 0 -x {10.0 9.0 152 ------- null} h -t 0.211632 -s 10 -d 7 -p ack -e 40 -c 0 -i 314 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.212096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 301 -a 0 -x {9.0 10.0 155 ------- null} - -t 0.212096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 301 -a 0 -x {9.0 10.0 155 ------- null} h -t 0.212096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 301 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.212112 -s 0 -d 9 -p ack -e 40 -c 0 -i 304 -a 0 -x {10.0 9.0 147 ------- null} + -t 0.212112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {9.0 10.0 162 ------- null} - -t 0.212112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {9.0 10.0 162 ------- null} h -t 0.212112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.212352 -s 0 -d 9 -p ack -e 40 -c 0 -i 308 -a 0 -x {10.0 9.0 149 ------- null} - -t 0.212352 -s 0 -d 9 -p ack -e 40 -c 0 -i 308 -a 0 -x {10.0 9.0 149 ------- null} h -t 0.212352 -s 0 -d 9 -p ack -e 40 -c 0 -i 308 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.212576 -s 10 -d 7 -p ack -e 40 -c 0 -i 312 -a 0 -x {10.0 9.0 151 ------- null} + -t 0.212576 -s 7 -d 0 -p ack -e 40 -c 0 -i 312 -a 0 -x {10.0 9.0 151 ------- null} h -t 0.212576 -s 7 -d 8 -p ack -e 40 -c 0 -i 312 -a 0 -x {10.0 9.0 151 ------- null} r -t 0.21272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {9.0 10.0 160 ------- null} + -t 0.21272 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {9.0 10.0 160 ------- null} h -t 0.21272 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {9.0 10.0 160 ------- null} r -t 0.21272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 297 -a 0 -x {9.0 10.0 153 ------- null} + -t 0.21272 -s 10 -d 7 -p ack -e 40 -c 0 -i 316 -a 0 -x {10.0 9.0 153 ------- null} - -t 0.21272 -s 10 -d 7 -p ack -e 40 -c 0 -i 316 -a 0 -x {10.0 9.0 153 ------- null} h -t 0.21272 -s 10 -d 7 -p ack -e 40 -c 0 -i 316 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.213184 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {9.0 10.0 156 ------- null} - -t 0.213184 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {9.0 10.0 156 ------- null} h -t 0.213184 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.2132 -s 0 -d 9 -p ack -e 40 -c 0 -i 306 -a 0 -x {10.0 9.0 148 ------- null} + -t 0.2132 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {9.0 10.0 163 ------- null} - -t 0.2132 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {9.0 10.0 163 ------- null} h -t 0.2132 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.213312 -s 0 -d 9 -p ack -e 40 -c 0 -i 310 -a 0 -x {10.0 9.0 150 ------- null} - -t 0.213312 -s 0 -d 9 -p ack -e 40 -c 0 -i 310 -a 0 -x {10.0 9.0 150 ------- null} h -t 0.213312 -s 0 -d 9 -p ack -e 40 -c 0 -i 310 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.213664 -s 10 -d 7 -p ack -e 40 -c 0 -i 314 -a 0 -x {10.0 9.0 152 ------- null} + -t 0.213664 -s 7 -d 0 -p ack -e 40 -c 0 -i 314 -a 0 -x {10.0 9.0 152 ------- null} h -t 0.213664 -s 7 -d 8 -p ack -e 40 -c 0 -i 314 -a 0 -x {10.0 9.0 152 ------- null} r -t 0.21376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {9.0 10.0 161 ------- null} + -t 0.21376 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {9.0 10.0 161 ------- null} h -t 0.21376 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {9.0 10.0 161 ------- null} r -t 0.213808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 299 -a 0 -x {9.0 10.0 154 ------- null} + -t 0.213808 -s 10 -d 7 -p ack -e 40 -c 0 -i 318 -a 0 -x {10.0 9.0 154 ------- null} - -t 0.213808 -s 10 -d 7 -p ack -e 40 -c 0 -i 318 -a 0 -x {10.0 9.0 154 ------- null} h -t 0.213808 -s 10 -d 7 -p ack -e 40 -c 0 -i 318 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.214272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {9.0 10.0 157 ------- null} - -t 0.214272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {9.0 10.0 157 ------- null} h -t 0.214272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.214384 -s 0 -d 9 -p ack -e 40 -c 0 -i 308 -a 0 -x {10.0 9.0 149 ------- null} + -t 0.214384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {9.0 10.0 164 ------- null} - -t 0.214384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {9.0 10.0 164 ------- null} h -t 0.214384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.21456 -s 0 -d 9 -p ack -e 40 -c 0 -i 312 -a 0 -x {10.0 9.0 151 ------- null} - -t 0.21456 -s 0 -d 9 -p ack -e 40 -c 0 -i 312 -a 0 -x {10.0 9.0 151 ------- null} h -t 0.21456 -s 0 -d 9 -p ack -e 40 -c 0 -i 312 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.214752 -s 10 -d 7 -p ack -e 40 -c 0 -i 316 -a 0 -x {10.0 9.0 153 ------- null} + -t 0.214752 -s 7 -d 0 -p ack -e 40 -c 0 -i 316 -a 0 -x {10.0 9.0 153 ------- null} h -t 0.214752 -s 7 -d 8 -p ack -e 40 -c 0 -i 316 -a 0 -x {10.0 9.0 153 ------- null} r -t 0.214896 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 301 -a 0 -x {9.0 10.0 155 ------- null} + -t 0.214896 -s 10 -d 7 -p ack -e 40 -c 0 -i 320 -a 0 -x {10.0 9.0 155 ------- null} - -t 0.214896 -s 10 -d 7 -p ack -e 40 -c 0 -i 320 -a 0 -x {10.0 9.0 155 ------- null} h -t 0.214896 -s 10 -d 7 -p ack -e 40 -c 0 -i 320 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.214912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {9.0 10.0 162 ------- null} + -t 0.214912 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {9.0 10.0 162 ------- null} h -t 0.214912 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {9.0 10.0 162 ------- null} r -t 0.215344 -s 0 -d 9 -p ack -e 40 -c 0 -i 310 -a 0 -x {10.0 9.0 150 ------- null} + -t 0.215344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {9.0 10.0 165 ------- null} - -t 0.215344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {9.0 10.0 165 ------- null} h -t 0.215344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.215488 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {9.0 10.0 158 ------- null} - -t 0.215488 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {9.0 10.0 158 ------- null} h -t 0.215488 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.215712 -s 0 -d 9 -p ack -e 40 -c 0 -i 314 -a 0 -x {10.0 9.0 152 ------- null} - -t 0.215712 -s 0 -d 9 -p ack -e 40 -c 0 -i 314 -a 0 -x {10.0 9.0 152 ------- null} h -t 0.215712 -s 0 -d 9 -p ack -e 40 -c 0 -i 314 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.21584 -s 10 -d 7 -p ack -e 40 -c 0 -i 318 -a 0 -x {10.0 9.0 154 ------- null} + -t 0.21584 -s 7 -d 0 -p ack -e 40 -c 0 -i 318 -a 0 -x {10.0 9.0 154 ------- null} h -t 0.21584 -s 7 -d 8 -p ack -e 40 -c 0 -i 318 -a 0 -x {10.0 9.0 154 ------- null} r -t 0.215984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 303 -a 0 -x {9.0 10.0 156 ------- null} + -t 0.215984 -s 10 -d 7 -p ack -e 40 -c 0 -i 322 -a 0 -x {10.0 9.0 156 ------- null} - -t 0.215984 -s 10 -d 7 -p ack -e 40 -c 0 -i 322 -a 0 -x {10.0 9.0 156 ------- null} h -t 0.215984 -s 10 -d 7 -p ack -e 40 -c 0 -i 322 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {9.0 10.0 163 ------- null} + -t 0.216 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {9.0 10.0 163 ------- null} h -t 0.216 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {9.0 10.0 163 ------- null} + -t 0.216576 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {9.0 10.0 159 ------- null} - -t 0.216576 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {9.0 10.0 159 ------- null} h -t 0.216576 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.216592 -s 0 -d 9 -p ack -e 40 -c 0 -i 312 -a 0 -x {10.0 9.0 151 ------- null} + -t 0.216592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 323 -a 0 -x {9.0 10.0 166 ------- null} - -t 0.216592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 323 -a 0 -x {9.0 10.0 166 ------- null} h -t 0.216592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 323 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.216672 -s 0 -d 9 -p ack -e 40 -c 0 -i 316 -a 0 -x {10.0 9.0 153 ------- null} - -t 0.216672 -s 0 -d 9 -p ack -e 40 -c 0 -i 316 -a 0 -x {10.0 9.0 153 ------- null} h -t 0.216672 -s 0 -d 9 -p ack -e 40 -c 0 -i 316 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.216928 -s 10 -d 7 -p ack -e 40 -c 0 -i 320 -a 0 -x {10.0 9.0 155 ------- null} + -t 0.216928 -s 7 -d 0 -p ack -e 40 -c 0 -i 320 -a 0 -x {10.0 9.0 155 ------- null} h -t 0.216928 -s 7 -d 8 -p ack -e 40 -c 0 -i 320 -a 0 -x {10.0 9.0 155 ------- null} r -t 0.217072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 305 -a 0 -x {9.0 10.0 157 ------- null} + -t 0.217072 -s 10 -d 7 -p ack -e 40 -c 0 -i 324 -a 0 -x {10.0 9.0 157 ------- null} - -t 0.217072 -s 10 -d 7 -p ack -e 40 -c 0 -i 324 -a 0 -x {10.0 9.0 157 ------- null} h -t 0.217072 -s 10 -d 7 -p ack -e 40 -c 0 -i 324 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.217184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {9.0 10.0 164 ------- null} + -t 0.217184 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {9.0 10.0 164 ------- null} h -t 0.217184 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {9.0 10.0 164 ------- null} + -t 0.217664 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {9.0 10.0 160 ------- null} - -t 0.217664 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {9.0 10.0 160 ------- null} h -t 0.217664 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.217744 -s 0 -d 9 -p ack -e 40 -c 0 -i 314 -a 0 -x {10.0 9.0 152 ------- null} + -t 0.217744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 325 -a 0 -x {9.0 10.0 167 ------- null} - -t 0.217744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 325 -a 0 -x {9.0 10.0 167 ------- null} h -t 0.217744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 325 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.217776 -s 0 -d 9 -p ack -e 40 -c 0 -i 318 -a 0 -x {10.0 9.0 154 ------- null} - -t 0.217776 -s 0 -d 9 -p ack -e 40 -c 0 -i 318 -a 0 -x {10.0 9.0 154 ------- null} h -t 0.217776 -s 0 -d 9 -p ack -e 40 -c 0 -i 318 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.218016 -s 10 -d 7 -p ack -e 40 -c 0 -i 322 -a 0 -x {10.0 9.0 156 ------- null} + -t 0.218016 -s 7 -d 0 -p ack -e 40 -c 0 -i 322 -a 0 -x {10.0 9.0 156 ------- null} h -t 0.218016 -s 7 -d 8 -p ack -e 40 -c 0 -i 322 -a 0 -x {10.0 9.0 156 ------- null} r -t 0.218144 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {9.0 10.0 165 ------- null} + -t 0.218144 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {9.0 10.0 165 ------- null} h -t 0.218144 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {9.0 10.0 165 ------- null} r -t 0.218288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 307 -a 0 -x {9.0 10.0 158 ------- null} + -t 0.218288 -s 10 -d 7 -p ack -e 40 -c 0 -i 326 -a 0 -x {10.0 9.0 158 ------- null} - -t 0.218288 -s 10 -d 7 -p ack -e 40 -c 0 -i 326 -a 0 -x {10.0 9.0 158 ------- null} h -t 0.218288 -s 10 -d 7 -p ack -e 40 -c 0 -i 326 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.218704 -s 0 -d 9 -p ack -e 40 -c 0 -i 316 -a 0 -x {10.0 9.0 153 ------- null} + -t 0.218704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 327 -a 0 -x {9.0 10.0 168 ------- null} - -t 0.218704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 327 -a 0 -x {9.0 10.0 168 ------- null} h -t 0.218704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 327 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.218752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {9.0 10.0 161 ------- null} - -t 0.218752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {9.0 10.0 161 ------- null} h -t 0.218752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.218848 -s 0 -d 9 -p ack -e 40 -c 0 -i 320 -a 0 -x {10.0 9.0 155 ------- null} - -t 0.218848 -s 0 -d 9 -p ack -e 40 -c 0 -i 320 -a 0 -x {10.0 9.0 155 ------- null} h -t 0.218848 -s 0 -d 9 -p ack -e 40 -c 0 -i 320 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.219104 -s 10 -d 7 -p ack -e 40 -c 0 -i 324 -a 0 -x {10.0 9.0 157 ------- null} + -t 0.219104 -s 7 -d 0 -p ack -e 40 -c 0 -i 324 -a 0 -x {10.0 9.0 157 ------- null} h -t 0.219104 -s 7 -d 8 -p ack -e 40 -c 0 -i 324 -a 0 -x {10.0 9.0 157 ------- null} r -t 0.219376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 309 -a 0 -x {9.0 10.0 159 ------- null} + -t 0.219376 -s 10 -d 7 -p ack -e 40 -c 0 -i 328 -a 0 -x {10.0 9.0 159 ------- null} - -t 0.219376 -s 10 -d 7 -p ack -e 40 -c 0 -i 328 -a 0 -x {10.0 9.0 159 ------- null} h -t 0.219376 -s 10 -d 7 -p ack -e 40 -c 0 -i 328 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.219392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 323 -a 0 -x {9.0 10.0 166 ------- null} + -t 0.219392 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 323 -a 0 -x {9.0 10.0 166 ------- null} h -t 0.219392 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 323 -a 0 -x {9.0 10.0 166 ------- null} r -t 0.219808 -s 0 -d 9 -p ack -e 40 -c 0 -i 318 -a 0 -x {10.0 9.0 154 ------- null} + -t 0.219808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 329 -a 0 -x {9.0 10.0 169 ------- null} - -t 0.219808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 329 -a 0 -x {9.0 10.0 169 ------- null} h -t 0.219808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 329 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.21984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {9.0 10.0 162 ------- null} - -t 0.21984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {9.0 10.0 162 ------- null} h -t 0.21984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.219968 -s 0 -d 9 -p ack -e 40 -c 0 -i 322 -a 0 -x {10.0 9.0 156 ------- null} - -t 0.219968 -s 0 -d 9 -p ack -e 40 -c 0 -i 322 -a 0 -x {10.0 9.0 156 ------- null} h -t 0.219968 -s 0 -d 9 -p ack -e 40 -c 0 -i 322 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.22032 -s 10 -d 7 -p ack -e 40 -c 0 -i 326 -a 0 -x {10.0 9.0 158 ------- null} + -t 0.22032 -s 7 -d 0 -p ack -e 40 -c 0 -i 326 -a 0 -x {10.0 9.0 158 ------- null} h -t 0.22032 -s 7 -d 8 -p ack -e 40 -c 0 -i 326 -a 0 -x {10.0 9.0 158 ------- null} r -t 0.220464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 311 -a 0 -x {9.0 10.0 160 ------- null} + -t 0.220464 -s 10 -d 7 -p ack -e 40 -c 0 -i 330 -a 0 -x {10.0 9.0 160 ------- null} - -t 0.220464 -s 10 -d 7 -p ack -e 40 -c 0 -i 330 -a 0 -x {10.0 9.0 160 ------- null} h -t 0.220464 -s 10 -d 7 -p ack -e 40 -c 0 -i 330 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.220544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 325 -a 0 -x {9.0 10.0 167 ------- null} + -t 0.220544 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 325 -a 0 -x {9.0 10.0 167 ------- null} h -t 0.220544 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 325 -a 0 -x {9.0 10.0 167 ------- null} r -t 0.22088 -s 0 -d 9 -p ack -e 40 -c 0 -i 320 -a 0 -x {10.0 9.0 155 ------- null} + -t 0.22088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 331 -a 0 -x {9.0 10.0 170 ------- null} - -t 0.22088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 331 -a 0 -x {9.0 10.0 170 ------- null} h -t 0.22088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 331 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.220928 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {9.0 10.0 163 ------- null} - -t 0.220928 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {9.0 10.0 163 ------- null} h -t 0.220928 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.221088 -s 0 -d 9 -p ack -e 40 -c 0 -i 324 -a 0 -x {10.0 9.0 157 ------- null} - -t 0.221088 -s 0 -d 9 -p ack -e 40 -c 0 -i 324 -a 0 -x {10.0 9.0 157 ------- null} h -t 0.221088 -s 0 -d 9 -p ack -e 40 -c 0 -i 324 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.221408 -s 10 -d 7 -p ack -e 40 -c 0 -i 328 -a 0 -x {10.0 9.0 159 ------- null} + -t 0.221408 -s 7 -d 0 -p ack -e 40 -c 0 -i 328 -a 0 -x {10.0 9.0 159 ------- null} h -t 0.221408 -s 7 -d 8 -p ack -e 40 -c 0 -i 328 -a 0 -x {10.0 9.0 159 ------- null} r -t 0.221504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 327 -a 0 -x {9.0 10.0 168 ------- null} + -t 0.221504 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 327 -a 0 -x {9.0 10.0 168 ------- null} h -t 0.221504 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 327 -a 0 -x {9.0 10.0 168 ------- null} r -t 0.221552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 313 -a 0 -x {9.0 10.0 161 ------- null} + -t 0.221552 -s 10 -d 7 -p ack -e 40 -c 0 -i 332 -a 0 -x {10.0 9.0 161 ------- null} - -t 0.221552 -s 10 -d 7 -p ack -e 40 -c 0 -i 332 -a 0 -x {10.0 9.0 161 ------- null} h -t 0.221552 -s 10 -d 7 -p ack -e 40 -c 0 -i 332 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.222 -s 0 -d 9 -p ack -e 40 -c 0 -i 322 -a 0 -x {10.0 9.0 156 ------- null} + -t 0.222 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 333 -a 0 -x {9.0 10.0 171 ------- null} - -t 0.222 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 333 -a 0 -x {9.0 10.0 171 ------- null} h -t 0.222 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 333 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.222016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {9.0 10.0 164 ------- null} - -t 0.222016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {9.0 10.0 164 ------- null} h -t 0.222016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.222176 -s 0 -d 9 -p ack -e 40 -c 0 -i 326 -a 0 -x {10.0 9.0 158 ------- null} - -t 0.222176 -s 0 -d 9 -p ack -e 40 -c 0 -i 326 -a 0 -x {10.0 9.0 158 ------- null} h -t 0.222176 -s 0 -d 9 -p ack -e 40 -c 0 -i 326 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.222496 -s 10 -d 7 -p ack -e 40 -c 0 -i 330 -a 0 -x {10.0 9.0 160 ------- null} + -t 0.222496 -s 7 -d 0 -p ack -e 40 -c 0 -i 330 -a 0 -x {10.0 9.0 160 ------- null} h -t 0.222496 -s 7 -d 8 -p ack -e 40 -c 0 -i 330 -a 0 -x {10.0 9.0 160 ------- null} r -t 0.222608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 329 -a 0 -x {9.0 10.0 169 ------- null} + -t 0.222608 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 329 -a 0 -x {9.0 10.0 169 ------- null} h -t 0.222608 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 329 -a 0 -x {9.0 10.0 169 ------- null} r -t 0.22264 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 315 -a 0 -x {9.0 10.0 162 ------- null} + -t 0.22264 -s 10 -d 7 -p ack -e 40 -c 0 -i 334 -a 0 -x {10.0 9.0 162 ------- null} - -t 0.22264 -s 10 -d 7 -p ack -e 40 -c 0 -i 334 -a 0 -x {10.0 9.0 162 ------- null} h -t 0.22264 -s 10 -d 7 -p ack -e 40 -c 0 -i 334 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.223104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {9.0 10.0 165 ------- null} - -t 0.223104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {9.0 10.0 165 ------- null} h -t 0.223104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.22312 -s 0 -d 9 -p ack -e 40 -c 0 -i 324 -a 0 -x {10.0 9.0 157 ------- null} + -t 0.22312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 335 -a 0 -x {9.0 10.0 172 ------- null} - -t 0.22312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 335 -a 0 -x {9.0 10.0 172 ------- null} h -t 0.22312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 335 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.22328 -s 0 -d 9 -p ack -e 40 -c 0 -i 328 -a 0 -x {10.0 9.0 159 ------- null} - -t 0.22328 -s 0 -d 9 -p ack -e 40 -c 0 -i 328 -a 0 -x {10.0 9.0 159 ------- null} h -t 0.22328 -s 0 -d 9 -p ack -e 40 -c 0 -i 328 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.223584 -s 10 -d 7 -p ack -e 40 -c 0 -i 332 -a 0 -x {10.0 9.0 161 ------- null} + -t 0.223584 -s 7 -d 0 -p ack -e 40 -c 0 -i 332 -a 0 -x {10.0 9.0 161 ------- null} h -t 0.223584 -s 7 -d 8 -p ack -e 40 -c 0 -i 332 -a 0 -x {10.0 9.0 161 ------- null} r -t 0.22368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 331 -a 0 -x {9.0 10.0 170 ------- null} + -t 0.22368 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 331 -a 0 -x {9.0 10.0 170 ------- null} h -t 0.22368 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 331 -a 0 -x {9.0 10.0 170 ------- null} r -t 0.223728 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 317 -a 0 -x {9.0 10.0 163 ------- null} + -t 0.223728 -s 10 -d 7 -p ack -e 40 -c 0 -i 336 -a 0 -x {10.0 9.0 163 ------- null} - -t 0.223728 -s 10 -d 7 -p ack -e 40 -c 0 -i 336 -a 0 -x {10.0 9.0 163 ------- null} h -t 0.223728 -s 10 -d 7 -p ack -e 40 -c 0 -i 336 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.224192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 323 -a 0 -x {9.0 10.0 166 ------- null} - -t 0.224192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 323 -a 0 -x {9.0 10.0 166 ------- null} h -t 0.224192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 323 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.224208 -s 0 -d 9 -p ack -e 40 -c 0 -i 326 -a 0 -x {10.0 9.0 158 ------- null} + -t 0.224208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 337 -a 0 -x {9.0 10.0 173 ------- null} - -t 0.224208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 337 -a 0 -x {9.0 10.0 173 ------- null} h -t 0.224208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 337 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.224496 -s 0 -d 9 -p ack -e 40 -c 0 -i 330 -a 0 -x {10.0 9.0 160 ------- null} - -t 0.224496 -s 0 -d 9 -p ack -e 40 -c 0 -i 330 -a 0 -x {10.0 9.0 160 ------- null} h -t 0.224496 -s 0 -d 9 -p ack -e 40 -c 0 -i 330 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.224672 -s 10 -d 7 -p ack -e 40 -c 0 -i 334 -a 0 -x {10.0 9.0 162 ------- null} + -t 0.224672 -s 7 -d 0 -p ack -e 40 -c 0 -i 334 -a 0 -x {10.0 9.0 162 ------- null} h -t 0.224672 -s 7 -d 8 -p ack -e 40 -c 0 -i 334 -a 0 -x {10.0 9.0 162 ------- null} r -t 0.2248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 333 -a 0 -x {9.0 10.0 171 ------- null} + -t 0.2248 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 333 -a 0 -x {9.0 10.0 171 ------- null} h -t 0.2248 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 333 -a 0 -x {9.0 10.0 171 ------- null} r -t 0.224816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 319 -a 0 -x {9.0 10.0 164 ------- null} + -t 0.224816 -s 10 -d 7 -p ack -e 40 -c 0 -i 338 -a 0 -x {10.0 9.0 164 ------- null} - -t 0.224816 -s 10 -d 7 -p ack -e 40 -c 0 -i 338 -a 0 -x {10.0 9.0 164 ------- null} h -t 0.224816 -s 10 -d 7 -p ack -e 40 -c 0 -i 338 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.225312 -s 0 -d 9 -p ack -e 40 -c 0 -i 328 -a 0 -x {10.0 9.0 159 ------- null} + -t 0.225312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 339 -a 0 -x {9.0 10.0 174 ------- null} - -t 0.225312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 339 -a 0 -x {9.0 10.0 174 ------- null} h -t 0.225312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 339 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.225376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 325 -a 0 -x {9.0 10.0 167 ------- null} - -t 0.225376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 325 -a 0 -x {9.0 10.0 167 ------- null} h -t 0.225376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 325 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.225584 -s 0 -d 9 -p ack -e 40 -c 0 -i 332 -a 0 -x {10.0 9.0 161 ------- null} - -t 0.225584 -s 0 -d 9 -p ack -e 40 -c 0 -i 332 -a 0 -x {10.0 9.0 161 ------- null} h -t 0.225584 -s 0 -d 9 -p ack -e 40 -c 0 -i 332 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.22576 -s 10 -d 7 -p ack -e 40 -c 0 -i 336 -a 0 -x {10.0 9.0 163 ------- null} + -t 0.22576 -s 7 -d 0 -p ack -e 40 -c 0 -i 336 -a 0 -x {10.0 9.0 163 ------- null} h -t 0.22576 -s 7 -d 8 -p ack -e 40 -c 0 -i 336 -a 0 -x {10.0 9.0 163 ------- null} r -t 0.225904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 321 -a 0 -x {9.0 10.0 165 ------- null} + -t 0.225904 -s 10 -d 7 -p ack -e 40 -c 0 -i 340 -a 0 -x {10.0 9.0 165 ------- null} - -t 0.225904 -s 10 -d 7 -p ack -e 40 -c 0 -i 340 -a 0 -x {10.0 9.0 165 ------- null} h -t 0.225904 -s 10 -d 7 -p ack -e 40 -c 0 -i 340 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.22592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 335 -a 0 -x {9.0 10.0 172 ------- null} + -t 0.22592 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 335 -a 0 -x {9.0 10.0 172 ------- null} h -t 0.22592 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 335 -a 0 -x {9.0 10.0 172 ------- null} + -t 0.226464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 327 -a 0 -x {9.0 10.0 168 ------- null} - -t 0.226464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 327 -a 0 -x {9.0 10.0 168 ------- null} h -t 0.226464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 327 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.226528 -s 0 -d 9 -p ack -e 40 -c 0 -i 330 -a 0 -x {10.0 9.0 160 ------- null} + -t 0.226528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 341 -a 0 -x {9.0 10.0 175 ------- null} - -t 0.226528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 341 -a 0 -x {9.0 10.0 175 ------- null} h -t 0.226528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 341 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.226544 -s 0 -d 9 -p ack -e 40 -c 0 -i 334 -a 0 -x {10.0 9.0 162 ------- null} - -t 0.226544 -s 0 -d 9 -p ack -e 40 -c 0 -i 334 -a 0 -x {10.0 9.0 162 ------- null} h -t 0.226544 -s 0 -d 9 -p ack -e 40 -c 0 -i 334 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.226848 -s 10 -d 7 -p ack -e 40 -c 0 -i 338 -a 0 -x {10.0 9.0 164 ------- null} + -t 0.226848 -s 7 -d 0 -p ack -e 40 -c 0 -i 338 -a 0 -x {10.0 9.0 164 ------- null} h -t 0.226848 -s 7 -d 8 -p ack -e 40 -c 0 -i 338 -a 0 -x {10.0 9.0 164 ------- null} r -t 0.226992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 323 -a 0 -x {9.0 10.0 166 ------- null} + -t 0.226992 -s 10 -d 7 -p ack -e 40 -c 0 -i 342 -a 0 -x {10.0 9.0 166 ------- null} - -t 0.226992 -s 10 -d 7 -p ack -e 40 -c 0 -i 342 -a 0 -x {10.0 9.0 166 ------- null} h -t 0.226992 -s 10 -d 7 -p ack -e 40 -c 0 -i 342 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.227008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 337 -a 0 -x {9.0 10.0 173 ------- null} + -t 0.227008 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 337 -a 0 -x {9.0 10.0 173 ------- null} h -t 0.227008 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 337 -a 0 -x {9.0 10.0 173 ------- null} + -t 0.227552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 329 -a 0 -x {9.0 10.0 169 ------- null} - -t 0.227552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 329 -a 0 -x {9.0 10.0 169 ------- null} h -t 0.227552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 329 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.227616 -s 0 -d 9 -p ack -e 40 -c 0 -i 332 -a 0 -x {10.0 9.0 161 ------- null} + -t 0.227616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {9.0 10.0 176 ------- null} - -t 0.227616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {9.0 10.0 176 ------- null} h -t 0.227616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.227744 -s 0 -d 9 -p ack -e 40 -c 0 -i 336 -a 0 -x {10.0 9.0 163 ------- null} - -t 0.227744 -s 0 -d 9 -p ack -e 40 -c 0 -i 336 -a 0 -x {10.0 9.0 163 ------- null} h -t 0.227744 -s 0 -d 9 -p ack -e 40 -c 0 -i 336 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.227936 -s 10 -d 7 -p ack -e 40 -c 0 -i 340 -a 0 -x {10.0 9.0 165 ------- null} + -t 0.227936 -s 7 -d 0 -p ack -e 40 -c 0 -i 340 -a 0 -x {10.0 9.0 165 ------- null} h -t 0.227936 -s 7 -d 8 -p ack -e 40 -c 0 -i 340 -a 0 -x {10.0 9.0 165 ------- null} r -t 0.228112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 339 -a 0 -x {9.0 10.0 174 ------- null} + -t 0.228112 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 339 -a 0 -x {9.0 10.0 174 ------- null} h -t 0.228112 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 339 -a 0 -x {9.0 10.0 174 ------- null} r -t 0.228176 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 325 -a 0 -x {9.0 10.0 167 ------- null} + -t 0.228176 -s 10 -d 7 -p ack -e 40 -c 0 -i 344 -a 0 -x {10.0 9.0 167 ------- null} - -t 0.228176 -s 10 -d 7 -p ack -e 40 -c 0 -i 344 -a 0 -x {10.0 9.0 167 ------- null} h -t 0.228176 -s 10 -d 7 -p ack -e 40 -c 0 -i 344 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.228576 -s 0 -d 9 -p ack -e 40 -c 0 -i 334 -a 0 -x {10.0 9.0 162 ------- null} + -t 0.228576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {9.0 10.0 177 ------- null} - -t 0.228576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {9.0 10.0 177 ------- null} h -t 0.228576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.22864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 331 -a 0 -x {9.0 10.0 170 ------- null} - -t 0.22864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 331 -a 0 -x {9.0 10.0 170 ------- null} h -t 0.22864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 331 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.228752 -s 0 -d 9 -p ack -e 40 -c 0 -i 338 -a 0 -x {10.0 9.0 164 ------- null} - -t 0.228752 -s 0 -d 9 -p ack -e 40 -c 0 -i 338 -a 0 -x {10.0 9.0 164 ------- null} h -t 0.228752 -s 0 -d 9 -p ack -e 40 -c 0 -i 338 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.229024 -s 10 -d 7 -p ack -e 40 -c 0 -i 342 -a 0 -x {10.0 9.0 166 ------- null} + -t 0.229024 -s 7 -d 0 -p ack -e 40 -c 0 -i 342 -a 0 -x {10.0 9.0 166 ------- null} h -t 0.229024 -s 7 -d 8 -p ack -e 40 -c 0 -i 342 -a 0 -x {10.0 9.0 166 ------- null} r -t 0.229264 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 327 -a 0 -x {9.0 10.0 168 ------- null} + -t 0.229264 -s 10 -d 7 -p ack -e 40 -c 0 -i 346 -a 0 -x {10.0 9.0 168 ------- null} - -t 0.229264 -s 10 -d 7 -p ack -e 40 -c 0 -i 346 -a 0 -x {10.0 9.0 168 ------- null} h -t 0.229264 -s 10 -d 7 -p ack -e 40 -c 0 -i 346 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.229328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 341 -a 0 -x {9.0 10.0 175 ------- null} + -t 0.229328 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 341 -a 0 -x {9.0 10.0 175 ------- null} h -t 0.229328 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 341 -a 0 -x {9.0 10.0 175 ------- null} + -t 0.229728 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 333 -a 0 -x {9.0 10.0 171 ------- null} - -t 0.229728 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 333 -a 0 -x {9.0 10.0 171 ------- null} h -t 0.229728 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 333 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.229776 -s 0 -d 9 -p ack -e 40 -c 0 -i 336 -a 0 -x {10.0 9.0 163 ------- null} + -t 0.229776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {9.0 10.0 178 ------- null} - -t 0.229776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {9.0 10.0 178 ------- null} h -t 0.229776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.230032 -s 0 -d 9 -p ack -e 40 -c 0 -i 340 -a 0 -x {10.0 9.0 165 ------- null} - -t 0.230032 -s 0 -d 9 -p ack -e 40 -c 0 -i 340 -a 0 -x {10.0 9.0 165 ------- null} h -t 0.230032 -s 0 -d 9 -p ack -e 40 -c 0 -i 340 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.230208 -s 10 -d 7 -p ack -e 40 -c 0 -i 344 -a 0 -x {10.0 9.0 167 ------- null} + -t 0.230208 -s 7 -d 0 -p ack -e 40 -c 0 -i 344 -a 0 -x {10.0 9.0 167 ------- null} h -t 0.230208 -s 7 -d 8 -p ack -e 40 -c 0 -i 344 -a 0 -x {10.0 9.0 167 ------- null} r -t 0.230352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 329 -a 0 -x {9.0 10.0 169 ------- null} + -t 0.230352 -s 10 -d 7 -p ack -e 40 -c 0 -i 348 -a 0 -x {10.0 9.0 169 ------- null} - -t 0.230352 -s 10 -d 7 -p ack -e 40 -c 0 -i 348 -a 0 -x {10.0 9.0 169 ------- null} h -t 0.230352 -s 10 -d 7 -p ack -e 40 -c 0 -i 348 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.230416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {9.0 10.0 176 ------- null} + -t 0.230416 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {9.0 10.0 176 ------- null} h -t 0.230416 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {9.0 10.0 176 ------- null} r -t 0.230784 -s 0 -d 9 -p ack -e 40 -c 0 -i 338 -a 0 -x {10.0 9.0 164 ------- null} + -t 0.230784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {9.0 10.0 179 ------- null} - -t 0.230784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {9.0 10.0 179 ------- null} h -t 0.230784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.23088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 335 -a 0 -x {9.0 10.0 172 ------- null} - -t 0.23088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 335 -a 0 -x {9.0 10.0 172 ------- null} h -t 0.23088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 335 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.231072 -s 0 -d 9 -p ack -e 40 -c 0 -i 342 -a 0 -x {10.0 9.0 166 ------- null} - -t 0.231072 -s 0 -d 9 -p ack -e 40 -c 0 -i 342 -a 0 -x {10.0 9.0 166 ------- null} h -t 0.231072 -s 0 -d 9 -p ack -e 40 -c 0 -i 342 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.231296 -s 10 -d 7 -p ack -e 40 -c 0 -i 346 -a 0 -x {10.0 9.0 168 ------- null} + -t 0.231296 -s 7 -d 0 -p ack -e 40 -c 0 -i 346 -a 0 -x {10.0 9.0 168 ------- null} h -t 0.231296 -s 7 -d 8 -p ack -e 40 -c 0 -i 346 -a 0 -x {10.0 9.0 168 ------- null} r -t 0.231376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {9.0 10.0 177 ------- null} + -t 0.231376 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {9.0 10.0 177 ------- null} h -t 0.231376 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {9.0 10.0 177 ------- null} r -t 0.23144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 331 -a 0 -x {9.0 10.0 170 ------- null} + -t 0.23144 -s 10 -d 7 -p ack -e 40 -c 0 -i 350 -a 0 -x {10.0 9.0 170 ------- null} - -t 0.23144 -s 10 -d 7 -p ack -e 40 -c 0 -i 350 -a 0 -x {10.0 9.0 170 ------- null} h -t 0.23144 -s 10 -d 7 -p ack -e 40 -c 0 -i 350 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.231968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 337 -a 0 -x {9.0 10.0 173 ------- null} - -t 0.231968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 337 -a 0 -x {9.0 10.0 173 ------- null} h -t 0.231968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 337 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.232064 -s 0 -d 9 -p ack -e 40 -c 0 -i 340 -a 0 -x {10.0 9.0 165 ------- null} + -t 0.232064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {9.0 10.0 180 ------- null} - -t 0.232064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {9.0 10.0 180 ------- null} h -t 0.232064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.232112 -s 0 -d 9 -p ack -e 40 -c 0 -i 344 -a 0 -x {10.0 9.0 167 ------- null} - -t 0.232112 -s 0 -d 9 -p ack -e 40 -c 0 -i 344 -a 0 -x {10.0 9.0 167 ------- null} h -t 0.232112 -s 0 -d 9 -p ack -e 40 -c 0 -i 344 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.232384 -s 10 -d 7 -p ack -e 40 -c 0 -i 348 -a 0 -x {10.0 9.0 169 ------- null} + -t 0.232384 -s 7 -d 0 -p ack -e 40 -c 0 -i 348 -a 0 -x {10.0 9.0 169 ------- null} h -t 0.232384 -s 7 -d 8 -p ack -e 40 -c 0 -i 348 -a 0 -x {10.0 9.0 169 ------- null} r -t 0.232528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 333 -a 0 -x {9.0 10.0 171 ------- null} + -t 0.232528 -s 10 -d 7 -p ack -e 40 -c 0 -i 352 -a 0 -x {10.0 9.0 171 ------- null} - -t 0.232528 -s 10 -d 7 -p ack -e 40 -c 0 -i 352 -a 0 -x {10.0 9.0 171 ------- null} h -t 0.232528 -s 10 -d 7 -p ack -e 40 -c 0 -i 352 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.232576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {9.0 10.0 178 ------- null} + -t 0.232576 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {9.0 10.0 178 ------- null} h -t 0.232576 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {9.0 10.0 178 ------- null} + -t 0.233056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 339 -a 0 -x {9.0 10.0 174 ------- null} - -t 0.233056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 339 -a 0 -x {9.0 10.0 174 ------- null} h -t 0.233056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 339 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.233104 -s 0 -d 9 -p ack -e 40 -c 0 -i 342 -a 0 -x {10.0 9.0 166 ------- null} + -t 0.233104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {9.0 10.0 181 ------- null} - -t 0.233104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {9.0 10.0 181 ------- null} h -t 0.233104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.23336 -s 0 -d 9 -p ack -e 40 -c 0 -i 346 -a 0 -x {10.0 9.0 168 ------- null} - -t 0.23336 -s 0 -d 9 -p ack -e 40 -c 0 -i 346 -a 0 -x {10.0 9.0 168 ------- null} h -t 0.23336 -s 0 -d 9 -p ack -e 40 -c 0 -i 346 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.233472 -s 10 -d 7 -p ack -e 40 -c 0 -i 350 -a 0 -x {10.0 9.0 170 ------- null} + -t 0.233472 -s 7 -d 0 -p ack -e 40 -c 0 -i 350 -a 0 -x {10.0 9.0 170 ------- null} h -t 0.233472 -s 7 -d 8 -p ack -e 40 -c 0 -i 350 -a 0 -x {10.0 9.0 170 ------- null} r -t 0.233584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {9.0 10.0 179 ------- null} + -t 0.233584 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {9.0 10.0 179 ------- null} h -t 0.233584 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {9.0 10.0 179 ------- null} r -t 0.23368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 335 -a 0 -x {9.0 10.0 172 ------- null} + -t 0.23368 -s 10 -d 7 -p ack -e 40 -c 0 -i 354 -a 0 -x {10.0 9.0 172 ------- null} - -t 0.23368 -s 10 -d 7 -p ack -e 40 -c 0 -i 354 -a 0 -x {10.0 9.0 172 ------- null} h -t 0.23368 -s 10 -d 7 -p ack -e 40 -c 0 -i 354 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.234144 -s 0 -d 9 -p ack -e 40 -c 0 -i 344 -a 0 -x {10.0 9.0 167 ------- null} + -t 0.234144 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {9.0 10.0 182 ------- null} - -t 0.234144 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {9.0 10.0 182 ------- null} h -t 0.234144 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.234256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 341 -a 0 -x {9.0 10.0 175 ------- null} - -t 0.234256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 341 -a 0 -x {9.0 10.0 175 ------- null} h -t 0.234256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 341 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.23432 -s 0 -d 9 -p ack -e 40 -c 0 -i 348 -a 0 -x {10.0 9.0 169 ------- null} - -t 0.23432 -s 0 -d 9 -p ack -e 40 -c 0 -i 348 -a 0 -x {10.0 9.0 169 ------- null} h -t 0.23432 -s 0 -d 9 -p ack -e 40 -c 0 -i 348 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.23456 -s 10 -d 7 -p ack -e 40 -c 0 -i 352 -a 0 -x {10.0 9.0 171 ------- null} + -t 0.23456 -s 7 -d 0 -p ack -e 40 -c 0 -i 352 -a 0 -x {10.0 9.0 171 ------- null} h -t 0.23456 -s 7 -d 8 -p ack -e 40 -c 0 -i 352 -a 0 -x {10.0 9.0 171 ------- null} r -t 0.234768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 337 -a 0 -x {9.0 10.0 173 ------- null} + -t 0.234768 -s 10 -d 7 -p ack -e 40 -c 0 -i 356 -a 0 -x {10.0 9.0 173 ------- null} - -t 0.234768 -s 10 -d 7 -p ack -e 40 -c 0 -i 356 -a 0 -x {10.0 9.0 173 ------- null} h -t 0.234768 -s 10 -d 7 -p ack -e 40 -c 0 -i 356 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.234864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {9.0 10.0 180 ------- null} + -t 0.234864 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {9.0 10.0 180 ------- null} h -t 0.234864 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {9.0 10.0 180 ------- null} + -t 0.235344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {9.0 10.0 176 ------- null} - -t 0.235344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {9.0 10.0 176 ------- null} h -t 0.235344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.235392 -s 0 -d 9 -p ack -e 40 -c 0 -i 346 -a 0 -x {10.0 9.0 168 ------- null} + -t 0.235392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {9.0 10.0 183 ------- null} - -t 0.235392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {9.0 10.0 183 ------- null} h -t 0.235392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.235408 -s 0 -d 9 -p ack -e 40 -c 0 -i 350 -a 0 -x {10.0 9.0 170 ------- null} - -t 0.235408 -s 0 -d 9 -p ack -e 40 -c 0 -i 350 -a 0 -x {10.0 9.0 170 ------- null} h -t 0.235408 -s 0 -d 9 -p ack -e 40 -c 0 -i 350 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.235712 -s 10 -d 7 -p ack -e 40 -c 0 -i 354 -a 0 -x {10.0 9.0 172 ------- null} + -t 0.235712 -s 7 -d 0 -p ack -e 40 -c 0 -i 354 -a 0 -x {10.0 9.0 172 ------- null} h -t 0.235712 -s 7 -d 8 -p ack -e 40 -c 0 -i 354 -a 0 -x {10.0 9.0 172 ------- null} r -t 0.235856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 339 -a 0 -x {9.0 10.0 174 ------- null} + -t 0.235856 -s 10 -d 7 -p ack -e 40 -c 0 -i 358 -a 0 -x {10.0 9.0 174 ------- null} - -t 0.235856 -s 10 -d 7 -p ack -e 40 -c 0 -i 358 -a 0 -x {10.0 9.0 174 ------- null} h -t 0.235856 -s 10 -d 7 -p ack -e 40 -c 0 -i 358 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.235904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {9.0 10.0 181 ------- null} + -t 0.235904 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {9.0 10.0 181 ------- null} h -t 0.235904 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {9.0 10.0 181 ------- null} r -t 0.236352 -s 0 -d 9 -p ack -e 40 -c 0 -i 348 -a 0 -x {10.0 9.0 169 ------- null} + -t 0.236352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {9.0 10.0 184 ------- null} - -t 0.236352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {9.0 10.0 184 ------- null} h -t 0.236352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.236432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {9.0 10.0 177 ------- null} - -t 0.236432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {9.0 10.0 177 ------- null} h -t 0.236432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.236608 -s 0 -d 9 -p ack -e 40 -c 0 -i 352 -a 0 -x {10.0 9.0 171 ------- null} - -t 0.236608 -s 0 -d 9 -p ack -e 40 -c 0 -i 352 -a 0 -x {10.0 9.0 171 ------- null} h -t 0.236608 -s 0 -d 9 -p ack -e 40 -c 0 -i 352 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.2368 -s 10 -d 7 -p ack -e 40 -c 0 -i 356 -a 0 -x {10.0 9.0 173 ------- null} + -t 0.2368 -s 7 -d 0 -p ack -e 40 -c 0 -i 356 -a 0 -x {10.0 9.0 173 ------- null} h -t 0.2368 -s 7 -d 8 -p ack -e 40 -c 0 -i 356 -a 0 -x {10.0 9.0 173 ------- null} r -t 0.236944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {9.0 10.0 182 ------- null} + -t 0.236944 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {9.0 10.0 182 ------- null} h -t 0.236944 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {9.0 10.0 182 ------- null} r -t 0.237056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 341 -a 0 -x {9.0 10.0 175 ------- null} + -t 0.237056 -s 10 -d 7 -p ack -e 40 -c 0 -i 360 -a 0 -x {10.0 9.0 175 ------- null} - -t 0.237056 -s 10 -d 7 -p ack -e 40 -c 0 -i 360 -a 0 -x {10.0 9.0 175 ------- null} h -t 0.237056 -s 10 -d 7 -p ack -e 40 -c 0 -i 360 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.23744 -s 0 -d 9 -p ack -e 40 -c 0 -i 350 -a 0 -x {10.0 9.0 170 ------- null} + -t 0.23744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {9.0 10.0 185 ------- null} - -t 0.23744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {9.0 10.0 185 ------- null} h -t 0.23744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.23752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {9.0 10.0 178 ------- null} - -t 0.23752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {9.0 10.0 178 ------- null} h -t 0.23752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.23776 -s 0 -d 9 -p ack -e 40 -c 0 -i 354 -a 0 -x {10.0 9.0 172 ------- null} - -t 0.23776 -s 0 -d 9 -p ack -e 40 -c 0 -i 354 -a 0 -x {10.0 9.0 172 ------- null} h -t 0.23776 -s 0 -d 9 -p ack -e 40 -c 0 -i 354 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.237888 -s 10 -d 7 -p ack -e 40 -c 0 -i 358 -a 0 -x {10.0 9.0 174 ------- null} + -t 0.237888 -s 7 -d 0 -p ack -e 40 -c 0 -i 358 -a 0 -x {10.0 9.0 174 ------- null} h -t 0.237888 -s 7 -d 8 -p ack -e 40 -c 0 -i 358 -a 0 -x {10.0 9.0 174 ------- null} r -t 0.238144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 343 -a 0 -x {9.0 10.0 176 ------- null} + -t 0.238144 -s 10 -d 7 -p ack -e 40 -c 0 -i 362 -a 0 -x {10.0 9.0 176 ------- null} - -t 0.238144 -s 10 -d 7 -p ack -e 40 -c 0 -i 362 -a 0 -x {10.0 9.0 176 ------- null} h -t 0.238144 -s 10 -d 7 -p ack -e 40 -c 0 -i 362 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.238192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {9.0 10.0 183 ------- null} + -t 0.238192 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {9.0 10.0 183 ------- null} h -t 0.238192 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {9.0 10.0 183 ------- null} + -t 0.238608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {9.0 10.0 179 ------- null} - -t 0.238608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {9.0 10.0 179 ------- null} h -t 0.238608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.23864 -s 0 -d 9 -p ack -e 40 -c 0 -i 352 -a 0 -x {10.0 9.0 171 ------- null} + -t 0.23864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 363 -a 0 -x {9.0 10.0 186 ------- null} - -t 0.23864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 363 -a 0 -x {9.0 10.0 186 ------- null} h -t 0.23864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 363 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.238816 -s 0 -d 9 -p ack -e 40 -c 0 -i 356 -a 0 -x {10.0 9.0 173 ------- null} - -t 0.238816 -s 0 -d 9 -p ack -e 40 -c 0 -i 356 -a 0 -x {10.0 9.0 173 ------- null} h -t 0.238816 -s 0 -d 9 -p ack -e 40 -c 0 -i 356 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.239088 -s 10 -d 7 -p ack -e 40 -c 0 -i 360 -a 0 -x {10.0 9.0 175 ------- null} + -t 0.239088 -s 7 -d 0 -p ack -e 40 -c 0 -i 360 -a 0 -x {10.0 9.0 175 ------- null} h -t 0.239088 -s 7 -d 8 -p ack -e 40 -c 0 -i 360 -a 0 -x {10.0 9.0 175 ------- null} r -t 0.239152 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {9.0 10.0 184 ------- null} + -t 0.239152 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {9.0 10.0 184 ------- null} h -t 0.239152 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {9.0 10.0 184 ------- null} r -t 0.239232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 345 -a 0 -x {9.0 10.0 177 ------- null} + -t 0.239232 -s 10 -d 7 -p ack -e 40 -c 0 -i 364 -a 0 -x {10.0 9.0 177 ------- null} - -t 0.239232 -s 10 -d 7 -p ack -e 40 -c 0 -i 364 -a 0 -x {10.0 9.0 177 ------- null} h -t 0.239232 -s 10 -d 7 -p ack -e 40 -c 0 -i 364 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.239696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {9.0 10.0 180 ------- null} - -t 0.239696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {9.0 10.0 180 ------- null} h -t 0.239696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.239792 -s 0 -d 9 -p ack -e 40 -c 0 -i 354 -a 0 -x {10.0 9.0 172 ------- null} + -t 0.239792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 365 -a 0 -x {9.0 10.0 187 ------- null} - -t 0.239792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 365 -a 0 -x {9.0 10.0 187 ------- null} h -t 0.239792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 365 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.239984 -s 0 -d 9 -p ack -e 40 -c 0 -i 358 -a 0 -x {10.0 9.0 174 ------- null} - -t 0.239984 -s 0 -d 9 -p ack -e 40 -c 0 -i 358 -a 0 -x {10.0 9.0 174 ------- null} h -t 0.239984 -s 0 -d 9 -p ack -e 40 -c 0 -i 358 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.240176 -s 10 -d 7 -p ack -e 40 -c 0 -i 362 -a 0 -x {10.0 9.0 176 ------- null} + -t 0.240176 -s 7 -d 0 -p ack -e 40 -c 0 -i 362 -a 0 -x {10.0 9.0 176 ------- null} h -t 0.240176 -s 7 -d 8 -p ack -e 40 -c 0 -i 362 -a 0 -x {10.0 9.0 176 ------- null} r -t 0.24024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {9.0 10.0 185 ------- null} + -t 0.24024 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {9.0 10.0 185 ------- null} h -t 0.24024 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {9.0 10.0 185 ------- null} r -t 0.24032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 347 -a 0 -x {9.0 10.0 178 ------- null} + -t 0.24032 -s 10 -d 7 -p ack -e 40 -c 0 -i 366 -a 0 -x {10.0 9.0 178 ------- null} - -t 0.24032 -s 10 -d 7 -p ack -e 40 -c 0 -i 366 -a 0 -x {10.0 9.0 178 ------- null} h -t 0.24032 -s 10 -d 7 -p ack -e 40 -c 0 -i 366 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.240848 -s 0 -d 9 -p ack -e 40 -c 0 -i 356 -a 0 -x {10.0 9.0 173 ------- null} + -t 0.240848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 367 -a 0 -x {9.0 10.0 188 ------- null} - -t 0.240848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 367 -a 0 -x {9.0 10.0 188 ------- null} h -t 0.240848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 367 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.240976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {9.0 10.0 181 ------- null} - -t 0.240976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {9.0 10.0 181 ------- null} h -t 0.240976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.241216 -s 0 -d 9 -p ack -e 40 -c 0 -i 360 -a 0 -x {10.0 9.0 175 ------- null} - -t 0.241216 -s 0 -d 9 -p ack -e 40 -c 0 -i 360 -a 0 -x {10.0 9.0 175 ------- null} h -t 0.241216 -s 0 -d 9 -p ack -e 40 -c 0 -i 360 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.241264 -s 10 -d 7 -p ack -e 40 -c 0 -i 364 -a 0 -x {10.0 9.0 177 ------- null} + -t 0.241264 -s 7 -d 0 -p ack -e 40 -c 0 -i 364 -a 0 -x {10.0 9.0 177 ------- null} h -t 0.241264 -s 7 -d 8 -p ack -e 40 -c 0 -i 364 -a 0 -x {10.0 9.0 177 ------- null} r -t 0.241408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 349 -a 0 -x {9.0 10.0 179 ------- null} + -t 0.241408 -s 10 -d 7 -p ack -e 40 -c 0 -i 368 -a 0 -x {10.0 9.0 179 ------- null} - -t 0.241408 -s 10 -d 7 -p ack -e 40 -c 0 -i 368 -a 0 -x {10.0 9.0 179 ------- null} h -t 0.241408 -s 10 -d 7 -p ack -e 40 -c 0 -i 368 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.24144 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 363 -a 0 -x {9.0 10.0 186 ------- null} + -t 0.24144 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 363 -a 0 -x {9.0 10.0 186 ------- null} h -t 0.24144 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 363 -a 0 -x {9.0 10.0 186 ------- null} r -t 0.242016 -s 0 -d 9 -p ack -e 40 -c 0 -i 358 -a 0 -x {10.0 9.0 174 ------- null} + -t 0.242016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 369 -a 0 -x {9.0 10.0 189 ------- null} - -t 0.242016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 369 -a 0 -x {9.0 10.0 189 ------- null} h -t 0.242016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 369 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.242064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {9.0 10.0 182 ------- null} - -t 0.242064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {9.0 10.0 182 ------- null} h -t 0.242064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.24224 -s 0 -d 9 -p ack -e 40 -c 0 -i 362 -a 0 -x {10.0 9.0 176 ------- null} - -t 0.24224 -s 0 -d 9 -p ack -e 40 -c 0 -i 362 -a 0 -x {10.0 9.0 176 ------- null} h -t 0.24224 -s 0 -d 9 -p ack -e 40 -c 0 -i 362 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.242352 -s 10 -d 7 -p ack -e 40 -c 0 -i 366 -a 0 -x {10.0 9.0 178 ------- null} + -t 0.242352 -s 7 -d 0 -p ack -e 40 -c 0 -i 366 -a 0 -x {10.0 9.0 178 ------- null} h -t 0.242352 -s 7 -d 8 -p ack -e 40 -c 0 -i 366 -a 0 -x {10.0 9.0 178 ------- null} r -t 0.242496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 351 -a 0 -x {9.0 10.0 180 ------- null} + -t 0.242496 -s 10 -d 7 -p ack -e 40 -c 0 -i 370 -a 0 -x {10.0 9.0 180 ------- null} - -t 0.242496 -s 10 -d 7 -p ack -e 40 -c 0 -i 370 -a 0 -x {10.0 9.0 180 ------- null} h -t 0.242496 -s 10 -d 7 -p ack -e 40 -c 0 -i 370 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.242592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 365 -a 0 -x {9.0 10.0 187 ------- null} + -t 0.242592 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 365 -a 0 -x {9.0 10.0 187 ------- null} h -t 0.242592 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 365 -a 0 -x {9.0 10.0 187 ------- null} + -t 0.243152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {9.0 10.0 183 ------- null} - -t 0.243152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {9.0 10.0 183 ------- null} h -t 0.243152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.243248 -s 0 -d 9 -p ack -e 40 -c 0 -i 360 -a 0 -x {10.0 9.0 175 ------- null} + -t 0.243248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 371 -a 0 -x {9.0 10.0 190 ------- null} - -t 0.243248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 371 -a 0 -x {9.0 10.0 190 ------- null} h -t 0.243248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 371 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.243344 -s 0 -d 9 -p ack -e 40 -c 0 -i 364 -a 0 -x {10.0 9.0 177 ------- null} - -t 0.243344 -s 0 -d 9 -p ack -e 40 -c 0 -i 364 -a 0 -x {10.0 9.0 177 ------- null} h -t 0.243344 -s 0 -d 9 -p ack -e 40 -c 0 -i 364 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.24344 -s 10 -d 7 -p ack -e 40 -c 0 -i 368 -a 0 -x {10.0 9.0 179 ------- null} + -t 0.24344 -s 7 -d 0 -p ack -e 40 -c 0 -i 368 -a 0 -x {10.0 9.0 179 ------- null} h -t 0.24344 -s 7 -d 8 -p ack -e 40 -c 0 -i 368 -a 0 -x {10.0 9.0 179 ------- null} r -t 0.243648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 367 -a 0 -x {9.0 10.0 188 ------- null} + -t 0.243648 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 367 -a 0 -x {9.0 10.0 188 ------- null} h -t 0.243648 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 367 -a 0 -x {9.0 10.0 188 ------- null} r -t 0.243776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 353 -a 0 -x {9.0 10.0 181 ------- null} + -t 0.243776 -s 10 -d 7 -p ack -e 40 -c 0 -i 372 -a 0 -x {10.0 9.0 181 ------- null} - -t 0.243776 -s 10 -d 7 -p ack -e 40 -c 0 -i 372 -a 0 -x {10.0 9.0 181 ------- null} h -t 0.243776 -s 10 -d 7 -p ack -e 40 -c 0 -i 372 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.24424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {9.0 10.0 184 ------- null} - -t 0.24424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {9.0 10.0 184 ------- null} h -t 0.24424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.244272 -s 0 -d 9 -p ack -e 40 -c 0 -i 362 -a 0 -x {10.0 9.0 176 ------- null} + -t 0.244272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 373 -a 0 -x {9.0 10.0 191 ------- null} - -t 0.244272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 373 -a 0 -x {9.0 10.0 191 ------- null} h -t 0.244272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 373 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.244496 -s 0 -d 9 -p ack -e 40 -c 0 -i 366 -a 0 -x {10.0 9.0 178 ------- null} - -t 0.244496 -s 0 -d 9 -p ack -e 40 -c 0 -i 366 -a 0 -x {10.0 9.0 178 ------- null} h -t 0.244496 -s 0 -d 9 -p ack -e 40 -c 0 -i 366 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.244528 -s 10 -d 7 -p ack -e 40 -c 0 -i 370 -a 0 -x {10.0 9.0 180 ------- null} + -t 0.244528 -s 7 -d 0 -p ack -e 40 -c 0 -i 370 -a 0 -x {10.0 9.0 180 ------- null} h -t 0.244528 -s 7 -d 8 -p ack -e 40 -c 0 -i 370 -a 0 -x {10.0 9.0 180 ------- null} r -t 0.244816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 369 -a 0 -x {9.0 10.0 189 ------- null} + -t 0.244816 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 369 -a 0 -x {9.0 10.0 189 ------- null} h -t 0.244816 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 369 -a 0 -x {9.0 10.0 189 ------- null} r -t 0.244864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 355 -a 0 -x {9.0 10.0 182 ------- null} + -t 0.244864 -s 10 -d 7 -p ack -e 40 -c 0 -i 374 -a 0 -x {10.0 9.0 182 ------- null} - -t 0.244864 -s 10 -d 7 -p ack -e 40 -c 0 -i 374 -a 0 -x {10.0 9.0 182 ------- null} h -t 0.244864 -s 10 -d 7 -p ack -e 40 -c 0 -i 374 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.245328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {9.0 10.0 185 ------- null} - -t 0.245328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {9.0 10.0 185 ------- null} h -t 0.245328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.245376 -s 0 -d 9 -p ack -e 40 -c 0 -i 364 -a 0 -x {10.0 9.0 177 ------- null} + -t 0.245376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 375 -a 0 -x {9.0 10.0 192 ------- null} - -t 0.245376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 375 -a 0 -x {9.0 10.0 192 ------- null} h -t 0.245376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 375 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.245632 -s 0 -d 9 -p ack -e 40 -c 0 -i 368 -a 0 -x {10.0 9.0 179 ------- null} - -t 0.245632 -s 0 -d 9 -p ack -e 40 -c 0 -i 368 -a 0 -x {10.0 9.0 179 ------- null} h -t 0.245632 -s 0 -d 9 -p ack -e 40 -c 0 -i 368 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.245808 -s 10 -d 7 -p ack -e 40 -c 0 -i 372 -a 0 -x {10.0 9.0 181 ------- null} + -t 0.245808 -s 7 -d 0 -p ack -e 40 -c 0 -i 372 -a 0 -x {10.0 9.0 181 ------- null} h -t 0.245808 -s 7 -d 8 -p ack -e 40 -c 0 -i 372 -a 0 -x {10.0 9.0 181 ------- null} r -t 0.245952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 357 -a 0 -x {9.0 10.0 183 ------- null} + -t 0.245952 -s 10 -d 7 -p ack -e 40 -c 0 -i 376 -a 0 -x {10.0 9.0 183 ------- null} - -t 0.245952 -s 10 -d 7 -p ack -e 40 -c 0 -i 376 -a 0 -x {10.0 9.0 183 ------- null} h -t 0.245952 -s 10 -d 7 -p ack -e 40 -c 0 -i 376 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.246048 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 371 -a 0 -x {9.0 10.0 190 ------- null} + -t 0.246048 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 371 -a 0 -x {9.0 10.0 190 ------- null} h -t 0.246048 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 371 -a 0 -x {9.0 10.0 190 ------- null} + -t 0.246496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 363 -a 0 -x {9.0 10.0 186 ------- null} - -t 0.246496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 363 -a 0 -x {9.0 10.0 186 ------- null} h -t 0.246496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 363 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.246528 -s 0 -d 9 -p ack -e 40 -c 0 -i 366 -a 0 -x {10.0 9.0 178 ------- null} + -t 0.246528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 377 -a 0 -x {9.0 10.0 193 ------- null} - -t 0.246528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 377 -a 0 -x {9.0 10.0 193 ------- null} h -t 0.246528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 377 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.246752 -s 0 -d 9 -p ack -e 40 -c 0 -i 370 -a 0 -x {10.0 9.0 180 ------- null} - -t 0.246752 -s 0 -d 9 -p ack -e 40 -c 0 -i 370 -a 0 -x {10.0 9.0 180 ------- null} h -t 0.246752 -s 0 -d 9 -p ack -e 40 -c 0 -i 370 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.246896 -s 10 -d 7 -p ack -e 40 -c 0 -i 374 -a 0 -x {10.0 9.0 182 ------- null} + -t 0.246896 -s 7 -d 0 -p ack -e 40 -c 0 -i 374 -a 0 -x {10.0 9.0 182 ------- null} h -t 0.246896 -s 7 -d 8 -p ack -e 40 -c 0 -i 374 -a 0 -x {10.0 9.0 182 ------- null} r -t 0.24704 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 359 -a 0 -x {9.0 10.0 184 ------- null} + -t 0.24704 -s 10 -d 7 -p ack -e 40 -c 0 -i 378 -a 0 -x {10.0 9.0 184 ------- null} - -t 0.24704 -s 10 -d 7 -p ack -e 40 -c 0 -i 378 -a 0 -x {10.0 9.0 184 ------- null} h -t 0.24704 -s 10 -d 7 -p ack -e 40 -c 0 -i 378 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.247072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 373 -a 0 -x {9.0 10.0 191 ------- null} + -t 0.247072 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 373 -a 0 -x {9.0 10.0 191 ------- null} h -t 0.247072 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 373 -a 0 -x {9.0 10.0 191 ------- null} + -t 0.247584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 365 -a 0 -x {9.0 10.0 187 ------- null} - -t 0.247584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 365 -a 0 -x {9.0 10.0 187 ------- null} h -t 0.247584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 365 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.247664 -s 0 -d 9 -p ack -e 40 -c 0 -i 368 -a 0 -x {10.0 9.0 179 ------- null} + -t 0.247664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 379 -a 0 -x {9.0 10.0 194 ------- null} - -t 0.247664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 379 -a 0 -x {9.0 10.0 194 ------- null} h -t 0.247664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 379 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.24784 -s 0 -d 9 -p ack -e 40 -c 0 -i 372 -a 0 -x {10.0 9.0 181 ------- null} - -t 0.24784 -s 0 -d 9 -p ack -e 40 -c 0 -i 372 -a 0 -x {10.0 9.0 181 ------- null} h -t 0.24784 -s 0 -d 9 -p ack -e 40 -c 0 -i 372 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.247984 -s 10 -d 7 -p ack -e 40 -c 0 -i 376 -a 0 -x {10.0 9.0 183 ------- null} + -t 0.247984 -s 7 -d 0 -p ack -e 40 -c 0 -i 376 -a 0 -x {10.0 9.0 183 ------- null} h -t 0.247984 -s 7 -d 8 -p ack -e 40 -c 0 -i 376 -a 0 -x {10.0 9.0 183 ------- null} r -t 0.248128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 361 -a 0 -x {9.0 10.0 185 ------- null} + -t 0.248128 -s 10 -d 7 -p ack -e 40 -c 0 -i 380 -a 0 -x {10.0 9.0 185 ------- null} - -t 0.248128 -s 10 -d 7 -p ack -e 40 -c 0 -i 380 -a 0 -x {10.0 9.0 185 ------- null} h -t 0.248128 -s 10 -d 7 -p ack -e 40 -c 0 -i 380 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.248176 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 375 -a 0 -x {9.0 10.0 192 ------- null} + -t 0.248176 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 375 -a 0 -x {9.0 10.0 192 ------- null} h -t 0.248176 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 375 -a 0 -x {9.0 10.0 192 ------- null} + -t 0.248672 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 367 -a 0 -x {9.0 10.0 188 ------- null} - -t 0.248672 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 367 -a 0 -x {9.0 10.0 188 ------- null} h -t 0.248672 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 367 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.248784 -s 0 -d 9 -p ack -e 40 -c 0 -i 370 -a 0 -x {10.0 9.0 180 ------- null} + -t 0.248784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 381 -a 0 -x {9.0 10.0 195 ------- null} - -t 0.248784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 381 -a 0 -x {9.0 10.0 195 ------- null} h -t 0.248784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 381 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.248848 -s 0 -d 9 -p ack -e 40 -c 0 -i 374 -a 0 -x {10.0 9.0 182 ------- null} - -t 0.248848 -s 0 -d 9 -p ack -e 40 -c 0 -i 374 -a 0 -x {10.0 9.0 182 ------- null} h -t 0.248848 -s 0 -d 9 -p ack -e 40 -c 0 -i 374 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.249072 -s 10 -d 7 -p ack -e 40 -c 0 -i 378 -a 0 -x {10.0 9.0 184 ------- null} + -t 0.249072 -s 7 -d 0 -p ack -e 40 -c 0 -i 378 -a 0 -x {10.0 9.0 184 ------- null} h -t 0.249072 -s 7 -d 8 -p ack -e 40 -c 0 -i 378 -a 0 -x {10.0 9.0 184 ------- null} r -t 0.249296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 363 -a 0 -x {9.0 10.0 186 ------- null} + -t 0.249296 -s 10 -d 7 -p ack -e 40 -c 0 -i 382 -a 0 -x {10.0 9.0 186 ------- null} - -t 0.249296 -s 10 -d 7 -p ack -e 40 -c 0 -i 382 -a 0 -x {10.0 9.0 186 ------- null} h -t 0.249296 -s 10 -d 7 -p ack -e 40 -c 0 -i 382 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.249328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 377 -a 0 -x {9.0 10.0 193 ------- null} + -t 0.249328 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 377 -a 0 -x {9.0 10.0 193 ------- null} h -t 0.249328 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 377 -a 0 -x {9.0 10.0 193 ------- null} + -t 0.24976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 369 -a 0 -x {9.0 10.0 189 ------- null} - -t 0.24976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 369 -a 0 -x {9.0 10.0 189 ------- null} h -t 0.24976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 369 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.249872 -s 0 -d 9 -p ack -e 40 -c 0 -i 372 -a 0 -x {10.0 9.0 181 ------- null} + -t 0.249872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {9.0 10.0 196 ------- null} - -t 0.249872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {9.0 10.0 196 ------- null} h -t 0.249872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.250064 -s 0 -d 9 -p ack -e 40 -c 0 -i 376 -a 0 -x {10.0 9.0 183 ------- null} - -t 0.250064 -s 0 -d 9 -p ack -e 40 -c 0 -i 376 -a 0 -x {10.0 9.0 183 ------- null} h -t 0.250064 -s 0 -d 9 -p ack -e 40 -c 0 -i 376 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.25016 -s 10 -d 7 -p ack -e 40 -c 0 -i 380 -a 0 -x {10.0 9.0 185 ------- null} + -t 0.25016 -s 7 -d 0 -p ack -e 40 -c 0 -i 380 -a 0 -x {10.0 9.0 185 ------- null} h -t 0.25016 -s 7 -d 8 -p ack -e 40 -c 0 -i 380 -a 0 -x {10.0 9.0 185 ------- null} r -t 0.250384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 365 -a 0 -x {9.0 10.0 187 ------- null} + -t 0.250384 -s 10 -d 7 -p ack -e 40 -c 0 -i 384 -a 0 -x {10.0 9.0 187 ------- null} - -t 0.250384 -s 10 -d 7 -p ack -e 40 -c 0 -i 384 -a 0 -x {10.0 9.0 187 ------- null} h -t 0.250384 -s 10 -d 7 -p ack -e 40 -c 0 -i 384 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.250464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 379 -a 0 -x {9.0 10.0 194 ------- null} + -t 0.250464 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 379 -a 0 -x {9.0 10.0 194 ------- null} h -t 0.250464 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 379 -a 0 -x {9.0 10.0 194 ------- null} r -t 0.25088 -s 0 -d 9 -p ack -e 40 -c 0 -i 374 -a 0 -x {10.0 9.0 182 ------- null} + -t 0.25088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {9.0 10.0 197 ------- null} - -t 0.25088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {9.0 10.0 197 ------- null} h -t 0.25088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.250912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 371 -a 0 -x {9.0 10.0 190 ------- null} - -t 0.250912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 371 -a 0 -x {9.0 10.0 190 ------- null} h -t 0.250912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 371 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.251184 -s 0 -d 9 -p ack -e 40 -c 0 -i 378 -a 0 -x {10.0 9.0 184 ------- null} - -t 0.251184 -s 0 -d 9 -p ack -e 40 -c 0 -i 378 -a 0 -x {10.0 9.0 184 ------- null} h -t 0.251184 -s 0 -d 9 -p ack -e 40 -c 0 -i 378 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.251328 -s 10 -d 7 -p ack -e 40 -c 0 -i 382 -a 0 -x {10.0 9.0 186 ------- null} + -t 0.251328 -s 7 -d 0 -p ack -e 40 -c 0 -i 382 -a 0 -x {10.0 9.0 186 ------- null} h -t 0.251328 -s 7 -d 8 -p ack -e 40 -c 0 -i 382 -a 0 -x {10.0 9.0 186 ------- null} r -t 0.251472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 367 -a 0 -x {9.0 10.0 188 ------- null} + -t 0.251472 -s 10 -d 7 -p ack -e 40 -c 0 -i 386 -a 0 -x {10.0 9.0 188 ------- null} - -t 0.251472 -s 10 -d 7 -p ack -e 40 -c 0 -i 386 -a 0 -x {10.0 9.0 188 ------- null} h -t 0.251472 -s 10 -d 7 -p ack -e 40 -c 0 -i 386 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.251584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 381 -a 0 -x {9.0 10.0 195 ------- null} + -t 0.251584 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 381 -a 0 -x {9.0 10.0 195 ------- null} h -t 0.251584 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 381 -a 0 -x {9.0 10.0 195 ------- null} r -t 0.252096 -s 0 -d 9 -p ack -e 40 -c 0 -i 376 -a 0 -x {10.0 9.0 183 ------- null} + -t 0.252096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {9.0 10.0 198 ------- null} - -t 0.252096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {9.0 10.0 198 ------- null} h -t 0.252096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.252096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 373 -a 0 -x {9.0 10.0 191 ------- null} - -t 0.252096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 373 -a 0 -x {9.0 10.0 191 ------- null} h -t 0.252096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 373 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.252176 -s 0 -d 9 -p ack -e 40 -c 0 -i 380 -a 0 -x {10.0 9.0 185 ------- null} - -t 0.252176 -s 0 -d 9 -p ack -e 40 -c 0 -i 380 -a 0 -x {10.0 9.0 185 ------- null} h -t 0.252176 -s 0 -d 9 -p ack -e 40 -c 0 -i 380 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.252416 -s 10 -d 7 -p ack -e 40 -c 0 -i 384 -a 0 -x {10.0 9.0 187 ------- null} + -t 0.252416 -s 7 -d 0 -p ack -e 40 -c 0 -i 384 -a 0 -x {10.0 9.0 187 ------- null} h -t 0.252416 -s 7 -d 8 -p ack -e 40 -c 0 -i 384 -a 0 -x {10.0 9.0 187 ------- null} r -t 0.25256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 369 -a 0 -x {9.0 10.0 189 ------- null} + -t 0.25256 -s 10 -d 7 -p ack -e 40 -c 0 -i 388 -a 0 -x {10.0 9.0 189 ------- null} - -t 0.25256 -s 10 -d 7 -p ack -e 40 -c 0 -i 388 -a 0 -x {10.0 9.0 189 ------- null} h -t 0.25256 -s 10 -d 7 -p ack -e 40 -c 0 -i 388 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.252672 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {9.0 10.0 196 ------- null} + -t 0.252672 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {9.0 10.0 196 ------- null} h -t 0.252672 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {9.0 10.0 196 ------- null} + -t 0.253184 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 375 -a 0 -x {9.0 10.0 192 ------- null} - -t 0.253184 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 375 -a 0 -x {9.0 10.0 192 ------- null} h -t 0.253184 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 375 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.253216 -s 0 -d 9 -p ack -e 40 -c 0 -i 378 -a 0 -x {10.0 9.0 184 ------- null} + -t 0.253216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {9.0 10.0 199 ------- null} - -t 0.253216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {9.0 10.0 199 ------- null} h -t 0.253216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.253296 -s 0 -d 9 -p ack -e 40 -c 0 -i 382 -a 0 -x {10.0 9.0 186 ------- null} - -t 0.253296 -s 0 -d 9 -p ack -e 40 -c 0 -i 382 -a 0 -x {10.0 9.0 186 ------- null} h -t 0.253296 -s 0 -d 9 -p ack -e 40 -c 0 -i 382 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.253504 -s 10 -d 7 -p ack -e 40 -c 0 -i 386 -a 0 -x {10.0 9.0 188 ------- null} + -t 0.253504 -s 7 -d 0 -p ack -e 40 -c 0 -i 386 -a 0 -x {10.0 9.0 188 ------- null} h -t 0.253504 -s 7 -d 8 -p ack -e 40 -c 0 -i 386 -a 0 -x {10.0 9.0 188 ------- null} r -t 0.25368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {9.0 10.0 197 ------- null} + -t 0.25368 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {9.0 10.0 197 ------- null} h -t 0.25368 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {9.0 10.0 197 ------- null} r -t 0.253712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 371 -a 0 -x {9.0 10.0 190 ------- null} + -t 0.253712 -s 10 -d 7 -p ack -e 40 -c 0 -i 390 -a 0 -x {10.0 9.0 190 ------- null} - -t 0.253712 -s 10 -d 7 -p ack -e 40 -c 0 -i 390 -a 0 -x {10.0 9.0 190 ------- null} h -t 0.253712 -s 10 -d 7 -p ack -e 40 -c 0 -i 390 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.254208 -s 0 -d 9 -p ack -e 40 -c 0 -i 380 -a 0 -x {10.0 9.0 185 ------- null} + -t 0.254208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {9.0 10.0 200 ------- null} - -t 0.254208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {9.0 10.0 200 ------- null} h -t 0.254208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.254272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 377 -a 0 -x {9.0 10.0 193 ------- null} - -t 0.254272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 377 -a 0 -x {9.0 10.0 193 ------- null} h -t 0.254272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 377 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.254352 -s 0 -d 9 -p ack -e 40 -c 0 -i 384 -a 0 -x {10.0 9.0 187 ------- null} - -t 0.254352 -s 0 -d 9 -p ack -e 40 -c 0 -i 384 -a 0 -x {10.0 9.0 187 ------- null} h -t 0.254352 -s 0 -d 9 -p ack -e 40 -c 0 -i 384 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.254592 -s 10 -d 7 -p ack -e 40 -c 0 -i 388 -a 0 -x {10.0 9.0 189 ------- null} + -t 0.254592 -s 7 -d 0 -p ack -e 40 -c 0 -i 388 -a 0 -x {10.0 9.0 189 ------- null} h -t 0.254592 -s 7 -d 8 -p ack -e 40 -c 0 -i 388 -a 0 -x {10.0 9.0 189 ------- null} r -t 0.254896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {9.0 10.0 198 ------- null} + -t 0.254896 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {9.0 10.0 198 ------- null} h -t 0.254896 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {9.0 10.0 198 ------- null} r -t 0.254896 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 373 -a 0 -x {9.0 10.0 191 ------- null} + -t 0.254896 -s 10 -d 7 -p ack -e 40 -c 0 -i 392 -a 0 -x {10.0 9.0 191 ------- null} - -t 0.254896 -s 10 -d 7 -p ack -e 40 -c 0 -i 392 -a 0 -x {10.0 9.0 191 ------- null} h -t 0.254896 -s 10 -d 7 -p ack -e 40 -c 0 -i 392 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.255328 -s 0 -d 9 -p ack -e 40 -c 0 -i 382 -a 0 -x {10.0 9.0 186 ------- null} + -t 0.255328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {9.0 10.0 201 ------- null} - -t 0.255328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {9.0 10.0 201 ------- null} h -t 0.255328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.25536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 379 -a 0 -x {9.0 10.0 194 ------- null} - -t 0.25536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 379 -a 0 -x {9.0 10.0 194 ------- null} h -t 0.25536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 379 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.255584 -s 0 -d 9 -p ack -e 40 -c 0 -i 386 -a 0 -x {10.0 9.0 188 ------- null} - -t 0.255584 -s 0 -d 9 -p ack -e 40 -c 0 -i 386 -a 0 -x {10.0 9.0 188 ------- null} h -t 0.255584 -s 0 -d 9 -p ack -e 40 -c 0 -i 386 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.255744 -s 10 -d 7 -p ack -e 40 -c 0 -i 390 -a 0 -x {10.0 9.0 190 ------- null} + -t 0.255744 -s 7 -d 0 -p ack -e 40 -c 0 -i 390 -a 0 -x {10.0 9.0 190 ------- null} h -t 0.255744 -s 7 -d 8 -p ack -e 40 -c 0 -i 390 -a 0 -x {10.0 9.0 190 ------- null} r -t 0.255984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 375 -a 0 -x {9.0 10.0 192 ------- null} + -t 0.255984 -s 10 -d 7 -p ack -e 40 -c 0 -i 394 -a 0 -x {10.0 9.0 192 ------- null} - -t 0.255984 -s 10 -d 7 -p ack -e 40 -c 0 -i 394 -a 0 -x {10.0 9.0 192 ------- null} h -t 0.255984 -s 10 -d 7 -p ack -e 40 -c 0 -i 394 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.256016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {9.0 10.0 199 ------- null} + -t 0.256016 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {9.0 10.0 199 ------- null} h -t 0.256016 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {9.0 10.0 199 ------- null} r -t 0.256384 -s 0 -d 9 -p ack -e 40 -c 0 -i 384 -a 0 -x {10.0 9.0 187 ------- null} + -t 0.256384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {9.0 10.0 202 ------- null} - -t 0.256384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {9.0 10.0 202 ------- null} h -t 0.256384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.256448 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 381 -a 0 -x {9.0 10.0 195 ------- null} - -t 0.256448 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 381 -a 0 -x {9.0 10.0 195 ------- null} h -t 0.256448 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 381 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.256736 -s 0 -d 9 -p ack -e 40 -c 0 -i 388 -a 0 -x {10.0 9.0 189 ------- null} - -t 0.256736 -s 0 -d 9 -p ack -e 40 -c 0 -i 388 -a 0 -x {10.0 9.0 189 ------- null} h -t 0.256736 -s 0 -d 9 -p ack -e 40 -c 0 -i 388 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.256928 -s 10 -d 7 -p ack -e 40 -c 0 -i 392 -a 0 -x {10.0 9.0 191 ------- null} + -t 0.256928 -s 7 -d 0 -p ack -e 40 -c 0 -i 392 -a 0 -x {10.0 9.0 191 ------- null} h -t 0.256928 -s 7 -d 8 -p ack -e 40 -c 0 -i 392 -a 0 -x {10.0 9.0 191 ------- null} r -t 0.257008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {9.0 10.0 200 ------- null} + -t 0.257008 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {9.0 10.0 200 ------- null} h -t 0.257008 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {9.0 10.0 200 ------- null} r -t 0.257072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 377 -a 0 -x {9.0 10.0 193 ------- null} + -t 0.257072 -s 10 -d 7 -p ack -e 40 -c 0 -i 396 -a 0 -x {10.0 9.0 193 ------- null} - -t 0.257072 -s 10 -d 7 -p ack -e 40 -c 0 -i 396 -a 0 -x {10.0 9.0 193 ------- null} h -t 0.257072 -s 10 -d 7 -p ack -e 40 -c 0 -i 396 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.257616 -s 0 -d 9 -p ack -e 40 -c 0 -i 386 -a 0 -x {10.0 9.0 188 ------- null} + -t 0.257616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {9.0 10.0 203 ------- null} - -t 0.257616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {9.0 10.0 203 ------- null} h -t 0.257616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.257616 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {9.0 10.0 196 ------- null} - -t 0.257616 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {9.0 10.0 196 ------- null} h -t 0.257616 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.25768 -s 0 -d 9 -p ack -e 40 -c 0 -i 390 -a 0 -x {10.0 9.0 190 ------- null} - -t 0.25768 -s 0 -d 9 -p ack -e 40 -c 0 -i 390 -a 0 -x {10.0 9.0 190 ------- null} h -t 0.25768 -s 0 -d 9 -p ack -e 40 -c 0 -i 390 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.258016 -s 10 -d 7 -p ack -e 40 -c 0 -i 394 -a 0 -x {10.0 9.0 192 ------- null} + -t 0.258016 -s 7 -d 0 -p ack -e 40 -c 0 -i 394 -a 0 -x {10.0 9.0 192 ------- null} h -t 0.258016 -s 7 -d 8 -p ack -e 40 -c 0 -i 394 -a 0 -x {10.0 9.0 192 ------- null} r -t 0.258128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {9.0 10.0 201 ------- null} + -t 0.258128 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {9.0 10.0 201 ------- null} h -t 0.258128 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {9.0 10.0 201 ------- null} r -t 0.25816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 379 -a 0 -x {9.0 10.0 194 ------- null} + -t 0.25816 -s 10 -d 7 -p ack -e 40 -c 0 -i 398 -a 0 -x {10.0 9.0 194 ------- null} - -t 0.25816 -s 10 -d 7 -p ack -e 40 -c 0 -i 398 -a 0 -x {10.0 9.0 194 ------- null} h -t 0.25816 -s 10 -d 7 -p ack -e 40 -c 0 -i 398 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.258704 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {9.0 10.0 197 ------- null} - -t 0.258704 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {9.0 10.0 197 ------- null} h -t 0.258704 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.258768 -s 0 -d 9 -p ack -e 40 -c 0 -i 388 -a 0 -x {10.0 9.0 189 ------- null} + -t 0.258768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {9.0 10.0 204 ------- null} - -t 0.258768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {9.0 10.0 204 ------- null} h -t 0.258768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.258784 -s 0 -d 9 -p ack -e 40 -c 0 -i 392 -a 0 -x {10.0 9.0 191 ------- null} - -t 0.258784 -s 0 -d 9 -p ack -e 40 -c 0 -i 392 -a 0 -x {10.0 9.0 191 ------- null} h -t 0.258784 -s 0 -d 9 -p ack -e 40 -c 0 -i 392 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.259104 -s 10 -d 7 -p ack -e 40 -c 0 -i 396 -a 0 -x {10.0 9.0 193 ------- null} + -t 0.259104 -s 7 -d 0 -p ack -e 40 -c 0 -i 396 -a 0 -x {10.0 9.0 193 ------- null} h -t 0.259104 -s 7 -d 8 -p ack -e 40 -c 0 -i 396 -a 0 -x {10.0 9.0 193 ------- null} r -t 0.259184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {9.0 10.0 202 ------- null} + -t 0.259184 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {9.0 10.0 202 ------- null} h -t 0.259184 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {9.0 10.0 202 ------- null} r -t 0.259248 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 381 -a 0 -x {9.0 10.0 195 ------- null} + -t 0.259248 -s 10 -d 7 -p ack -e 40 -c 0 -i 400 -a 0 -x {10.0 9.0 195 ------- null} - -t 0.259248 -s 10 -d 7 -p ack -e 40 -c 0 -i 400 -a 0 -x {10.0 9.0 195 ------- null} h -t 0.259248 -s 10 -d 7 -p ack -e 40 -c 0 -i 400 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.259712 -s 0 -d 9 -p ack -e 40 -c 0 -i 390 -a 0 -x {10.0 9.0 190 ------- null} + -t 0.259712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {9.0 10.0 205 ------- null} - -t 0.259712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {9.0 10.0 205 ------- null} h -t 0.259712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.259792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {9.0 10.0 198 ------- null} - -t 0.259792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {9.0 10.0 198 ------- null} h -t 0.259792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.26 -s 0 -d 9 -p ack -e 40 -c 0 -i 394 -a 0 -x {10.0 9.0 192 ------- null} - -t 0.26 -s 0 -d 9 -p ack -e 40 -c 0 -i 394 -a 0 -x {10.0 9.0 192 ------- null} h -t 0.26 -s 0 -d 9 -p ack -e 40 -c 0 -i 394 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.260192 -s 10 -d 7 -p ack -e 40 -c 0 -i 398 -a 0 -x {10.0 9.0 194 ------- null} + -t 0.260192 -s 7 -d 0 -p ack -e 40 -c 0 -i 398 -a 0 -x {10.0 9.0 194 ------- null} h -t 0.260192 -s 7 -d 8 -p ack -e 40 -c 0 -i 398 -a 0 -x {10.0 9.0 194 ------- null} r -t 0.260416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {9.0 10.0 203 ------- null} + -t 0.260416 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {9.0 10.0 203 ------- null} h -t 0.260416 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {9.0 10.0 203 ------- null} r -t 0.260416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 383 -a 0 -x {9.0 10.0 196 ------- null} + -t 0.260416 -s 10 -d 7 -p ack -e 40 -c 0 -i 402 -a 0 -x {10.0 9.0 196 ------- null} - -t 0.260416 -s 10 -d 7 -p ack -e 40 -c 0 -i 402 -a 0 -x {10.0 9.0 196 ------- null} h -t 0.260416 -s 10 -d 7 -p ack -e 40 -c 0 -i 402 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.260816 -s 0 -d 9 -p ack -e 40 -c 0 -i 392 -a 0 -x {10.0 9.0 191 ------- null} + -t 0.260816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 403 -a 0 -x {9.0 10.0 206 ------- null} - -t 0.260816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 403 -a 0 -x {9.0 10.0 206 ------- null} h -t 0.260816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 403 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.26088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {9.0 10.0 199 ------- null} - -t 0.26088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {9.0 10.0 199 ------- null} h -t 0.26088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.26096 -s 0 -d 9 -p ack -e 40 -c 0 -i 396 -a 0 -x {10.0 9.0 193 ------- null} - -t 0.26096 -s 0 -d 9 -p ack -e 40 -c 0 -i 396 -a 0 -x {10.0 9.0 193 ------- null} h -t 0.26096 -s 0 -d 9 -p ack -e 40 -c 0 -i 396 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.26128 -s 10 -d 7 -p ack -e 40 -c 0 -i 400 -a 0 -x {10.0 9.0 195 ------- null} + -t 0.26128 -s 7 -d 0 -p ack -e 40 -c 0 -i 400 -a 0 -x {10.0 9.0 195 ------- null} h -t 0.26128 -s 7 -d 8 -p ack -e 40 -c 0 -i 400 -a 0 -x {10.0 9.0 195 ------- null} r -t 0.261504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 385 -a 0 -x {9.0 10.0 197 ------- null} + -t 0.261504 -s 10 -d 7 -p ack -e 40 -c 0 -i 404 -a 0 -x {10.0 9.0 197 ------- null} - -t 0.261504 -s 10 -d 7 -p ack -e 40 -c 0 -i 404 -a 0 -x {10.0 9.0 197 ------- null} h -t 0.261504 -s 10 -d 7 -p ack -e 40 -c 0 -i 404 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.261568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {9.0 10.0 204 ------- null} + -t 0.261568 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {9.0 10.0 204 ------- null} h -t 0.261568 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {9.0 10.0 204 ------- null} + -t 0.261968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {9.0 10.0 200 ------- null} - -t 0.261968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {9.0 10.0 200 ------- null} h -t 0.261968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.262032 -s 0 -d 9 -p ack -e 40 -c 0 -i 394 -a 0 -x {10.0 9.0 192 ------- null} + -t 0.262032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 405 -a 0 -x {9.0 10.0 207 ------- null} - -t 0.262032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 405 -a 0 -x {9.0 10.0 207 ------- null} h -t 0.262032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 405 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.262144 -s 0 -d 9 -p ack -e 40 -c 0 -i 398 -a 0 -x {10.0 9.0 194 ------- null} - -t 0.262144 -s 0 -d 9 -p ack -e 40 -c 0 -i 398 -a 0 -x {10.0 9.0 194 ------- null} h -t 0.262144 -s 0 -d 9 -p ack -e 40 -c 0 -i 398 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.262448 -s 10 -d 7 -p ack -e 40 -c 0 -i 402 -a 0 -x {10.0 9.0 196 ------- null} + -t 0.262448 -s 7 -d 0 -p ack -e 40 -c 0 -i 402 -a 0 -x {10.0 9.0 196 ------- null} h -t 0.262448 -s 7 -d 8 -p ack -e 40 -c 0 -i 402 -a 0 -x {10.0 9.0 196 ------- null} r -t 0.262512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {9.0 10.0 205 ------- null} + -t 0.262512 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {9.0 10.0 205 ------- null} h -t 0.262512 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {9.0 10.0 205 ------- null} r -t 0.262592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 387 -a 0 -x {9.0 10.0 198 ------- null} + -t 0.262592 -s 10 -d 7 -p ack -e 40 -c 0 -i 406 -a 0 -x {10.0 9.0 198 ------- null} - -t 0.262592 -s 10 -d 7 -p ack -e 40 -c 0 -i 406 -a 0 -x {10.0 9.0 198 ------- null} h -t 0.262592 -s 10 -d 7 -p ack -e 40 -c 0 -i 406 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.262992 -s 0 -d 9 -p ack -e 40 -c 0 -i 396 -a 0 -x {10.0 9.0 193 ------- null} + -t 0.262992 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 407 -a 0 -x {9.0 10.0 208 ------- null} - -t 0.262992 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 407 -a 0 -x {9.0 10.0 208 ------- null} h -t 0.262992 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 407 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.263056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {9.0 10.0 201 ------- null} - -t 0.263056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {9.0 10.0 201 ------- null} h -t 0.263056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.263312 -s 0 -d 9 -p ack -e 40 -c 0 -i 400 -a 0 -x {10.0 9.0 195 ------- null} - -t 0.263312 -s 0 -d 9 -p ack -e 40 -c 0 -i 400 -a 0 -x {10.0 9.0 195 ------- null} h -t 0.263312 -s 0 -d 9 -p ack -e 40 -c 0 -i 400 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.263536 -s 10 -d 7 -p ack -e 40 -c 0 -i 404 -a 0 -x {10.0 9.0 197 ------- null} + -t 0.263536 -s 7 -d 0 -p ack -e 40 -c 0 -i 404 -a 0 -x {10.0 9.0 197 ------- null} h -t 0.263536 -s 7 -d 8 -p ack -e 40 -c 0 -i 404 -a 0 -x {10.0 9.0 197 ------- null} r -t 0.263616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 403 -a 0 -x {9.0 10.0 206 ------- null} + -t 0.263616 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 403 -a 0 -x {9.0 10.0 206 ------- null} h -t 0.263616 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 403 -a 0 -x {9.0 10.0 206 ------- null} r -t 0.26368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 389 -a 0 -x {9.0 10.0 199 ------- null} + -t 0.26368 -s 10 -d 7 -p ack -e 40 -c 0 -i 408 -a 0 -x {10.0 9.0 199 ------- null} - -t 0.26368 -s 10 -d 7 -p ack -e 40 -c 0 -i 408 -a 0 -x {10.0 9.0 199 ------- null} h -t 0.26368 -s 10 -d 7 -p ack -e 40 -c 0 -i 408 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.264176 -s 0 -d 9 -p ack -e 40 -c 0 -i 398 -a 0 -x {10.0 9.0 194 ------- null} + -t 0.264176 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 409 -a 0 -x {9.0 10.0 209 ------- null} - -t 0.264176 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 409 -a 0 -x {9.0 10.0 209 ------- null} h -t 0.264176 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 409 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.26432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {9.0 10.0 202 ------- null} - -t 0.26432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {9.0 10.0 202 ------- null} h -t 0.26432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.264512 -s 0 -d 9 -p ack -e 40 -c 0 -i 402 -a 0 -x {10.0 9.0 196 ------- null} - -t 0.264512 -s 0 -d 9 -p ack -e 40 -c 0 -i 402 -a 0 -x {10.0 9.0 196 ------- null} h -t 0.264512 -s 0 -d 9 -p ack -e 40 -c 0 -i 402 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.264624 -s 10 -d 7 -p ack -e 40 -c 0 -i 406 -a 0 -x {10.0 9.0 198 ------- null} + -t 0.264624 -s 7 -d 0 -p ack -e 40 -c 0 -i 406 -a 0 -x {10.0 9.0 198 ------- null} h -t 0.264624 -s 7 -d 8 -p ack -e 40 -c 0 -i 406 -a 0 -x {10.0 9.0 198 ------- null} r -t 0.264768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 391 -a 0 -x {9.0 10.0 200 ------- null} + -t 0.264768 -s 10 -d 7 -p ack -e 40 -c 0 -i 410 -a 0 -x {10.0 9.0 200 ------- null} - -t 0.264768 -s 10 -d 7 -p ack -e 40 -c 0 -i 410 -a 0 -x {10.0 9.0 200 ------- null} h -t 0.264768 -s 10 -d 7 -p ack -e 40 -c 0 -i 410 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.264832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 405 -a 0 -x {9.0 10.0 207 ------- null} + -t 0.264832 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 405 -a 0 -x {9.0 10.0 207 ------- null} h -t 0.264832 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 405 -a 0 -x {9.0 10.0 207 ------- null} r -t 0.265344 -s 0 -d 9 -p ack -e 40 -c 0 -i 400 -a 0 -x {10.0 9.0 195 ------- null} + -t 0.265344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 411 -a 0 -x {9.0 10.0 210 ------- null} - -t 0.265344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 411 -a 0 -x {9.0 10.0 210 ------- null} h -t 0.265344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 411 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.265408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {9.0 10.0 203 ------- null} - -t 0.265408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {9.0 10.0 203 ------- null} h -t 0.265408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.265712 -s 10 -d 7 -p ack -e 40 -c 0 -i 408 -a 0 -x {10.0 9.0 199 ------- null} + -t 0.265712 -s 7 -d 0 -p ack -e 40 -c 0 -i 408 -a 0 -x {10.0 9.0 199 ------- null} h -t 0.265712 -s 7 -d 8 -p ack -e 40 -c 0 -i 408 -a 0 -x {10.0 9.0 199 ------- null} + -t 0.265712 -s 0 -d 9 -p ack -e 40 -c 0 -i 404 -a 0 -x {10.0 9.0 197 ------- null} - -t 0.265712 -s 0 -d 9 -p ack -e 40 -c 0 -i 404 -a 0 -x {10.0 9.0 197 ------- null} h -t 0.265712 -s 0 -d 9 -p ack -e 40 -c 0 -i 404 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.265792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 407 -a 0 -x {9.0 10.0 208 ------- null} + -t 0.265792 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 407 -a 0 -x {9.0 10.0 208 ------- null} h -t 0.265792 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 407 -a 0 -x {9.0 10.0 208 ------- null} r -t 0.265856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 393 -a 0 -x {9.0 10.0 201 ------- null} + -t 0.265856 -s 10 -d 7 -p ack -e 40 -c 0 -i 412 -a 0 -x {10.0 9.0 201 ------- null} - -t 0.265856 -s 10 -d 7 -p ack -e 40 -c 0 -i 412 -a 0 -x {10.0 9.0 201 ------- null} h -t 0.265856 -s 10 -d 7 -p ack -e 40 -c 0 -i 412 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.266544 -s 0 -d 9 -p ack -e 40 -c 0 -i 402 -a 0 -x {10.0 9.0 196 ------- null} + -t 0.266544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 413 -a 0 -x {9.0 10.0 211 ------- null} - -t 0.266544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 413 -a 0 -x {9.0 10.0 211 ------- null} h -t 0.266544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 413 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.266784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {9.0 10.0 204 ------- null} - -t 0.266784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {9.0 10.0 204 ------- null} h -t 0.266784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.2668 -s 10 -d 7 -p ack -e 40 -c 0 -i 410 -a 0 -x {10.0 9.0 200 ------- null} + -t 0.2668 -s 7 -d 0 -p ack -e 40 -c 0 -i 410 -a 0 -x {10.0 9.0 200 ------- null} h -t 0.2668 -s 7 -d 8 -p ack -e 40 -c 0 -i 410 -a 0 -x {10.0 9.0 200 ------- null} + -t 0.26688 -s 0 -d 9 -p ack -e 40 -c 0 -i 406 -a 0 -x {10.0 9.0 198 ------- null} - -t 0.26688 -s 0 -d 9 -p ack -e 40 -c 0 -i 406 -a 0 -x {10.0 9.0 198 ------- null} h -t 0.26688 -s 0 -d 9 -p ack -e 40 -c 0 -i 406 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.266976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 409 -a 0 -x {9.0 10.0 209 ------- null} + -t 0.266976 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 409 -a 0 -x {9.0 10.0 209 ------- null} h -t 0.266976 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 409 -a 0 -x {9.0 10.0 209 ------- null} r -t 0.26712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 395 -a 0 -x {9.0 10.0 202 ------- null} + -t 0.26712 -s 10 -d 7 -p ack -e 40 -c 0 -i 414 -a 0 -x {10.0 9.0 202 ------- null} - -t 0.26712 -s 10 -d 7 -p ack -e 40 -c 0 -i 414 -a 0 -x {10.0 9.0 202 ------- null} h -t 0.26712 -s 10 -d 7 -p ack -e 40 -c 0 -i 414 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.267744 -s 0 -d 9 -p ack -e 40 -c 0 -i 404 -a 0 -x {10.0 9.0 197 ------- null} + -t 0.267744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 415 -a 0 -x {9.0 10.0 212 ------- null} - -t 0.267744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 415 -a 0 -x {9.0 10.0 212 ------- null} h -t 0.267744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 415 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.267872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {9.0 10.0 205 ------- null} - -t 0.267872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {9.0 10.0 205 ------- null} h -t 0.267872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.267888 -s 10 -d 7 -p ack -e 40 -c 0 -i 412 -a 0 -x {10.0 9.0 201 ------- null} + -t 0.267888 -s 7 -d 0 -p ack -e 40 -c 0 -i 412 -a 0 -x {10.0 9.0 201 ------- null} h -t 0.267888 -s 7 -d 8 -p ack -e 40 -c 0 -i 412 -a 0 -x {10.0 9.0 201 ------- null} + -t 0.267984 -s 0 -d 9 -p ack -e 40 -c 0 -i 408 -a 0 -x {10.0 9.0 199 ------- null} - -t 0.267984 -s 0 -d 9 -p ack -e 40 -c 0 -i 408 -a 0 -x {10.0 9.0 199 ------- null} h -t 0.267984 -s 0 -d 9 -p ack -e 40 -c 0 -i 408 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.268144 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 411 -a 0 -x {9.0 10.0 210 ------- null} + -t 0.268144 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 411 -a 0 -x {9.0 10.0 210 ------- null} h -t 0.268144 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 411 -a 0 -x {9.0 10.0 210 ------- null} r -t 0.268208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 397 -a 0 -x {9.0 10.0 203 ------- null} + -t 0.268208 -s 10 -d 7 -p ack -e 40 -c 0 -i 416 -a 0 -x {10.0 9.0 203 ------- null} - -t 0.268208 -s 10 -d 7 -p ack -e 40 -c 0 -i 416 -a 0 -x {10.0 9.0 203 ------- null} h -t 0.268208 -s 10 -d 7 -p ack -e 40 -c 0 -i 416 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.268912 -s 0 -d 9 -p ack -e 40 -c 0 -i 406 -a 0 -x {10.0 9.0 198 ------- null} + -t 0.268912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 417 -a 0 -x {9.0 10.0 213 ------- null} - -t 0.268912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 417 -a 0 -x {9.0 10.0 213 ------- null} h -t 0.268912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 417 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.26896 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 403 -a 0 -x {9.0 10.0 206 ------- null} - -t 0.26896 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 403 -a 0 -x {9.0 10.0 206 ------- null} h -t 0.26896 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 403 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.269152 -s 10 -d 7 -p ack -e 40 -c 0 -i 414 -a 0 -x {10.0 9.0 202 ------- null} + -t 0.269152 -s 7 -d 0 -p ack -e 40 -c 0 -i 414 -a 0 -x {10.0 9.0 202 ------- null} h -t 0.269152 -s 7 -d 8 -p ack -e 40 -c 0 -i 414 -a 0 -x {10.0 9.0 202 ------- null} + -t 0.269216 -s 0 -d 9 -p ack -e 40 -c 0 -i 410 -a 0 -x {10.0 9.0 200 ------- null} - -t 0.269216 -s 0 -d 9 -p ack -e 40 -c 0 -i 410 -a 0 -x {10.0 9.0 200 ------- null} h -t 0.269216 -s 0 -d 9 -p ack -e 40 -c 0 -i 410 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.269344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 413 -a 0 -x {9.0 10.0 211 ------- null} + -t 0.269344 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 413 -a 0 -x {9.0 10.0 211 ------- null} h -t 0.269344 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 413 -a 0 -x {9.0 10.0 211 ------- null} r -t 0.269584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 399 -a 0 -x {9.0 10.0 204 ------- null} + -t 0.269584 -s 10 -d 7 -p ack -e 40 -c 0 -i 418 -a 0 -x {10.0 9.0 204 ------- null} - -t 0.269584 -s 10 -d 7 -p ack -e 40 -c 0 -i 418 -a 0 -x {10.0 9.0 204 ------- null} h -t 0.269584 -s 10 -d 7 -p ack -e 40 -c 0 -i 418 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.270016 -s 0 -d 9 -p ack -e 40 -c 0 -i 408 -a 0 -x {10.0 9.0 199 ------- null} + -t 0.270016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 419 -a 0 -x {9.0 10.0 214 ------- null} - -t 0.270016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 419 -a 0 -x {9.0 10.0 214 ------- null} h -t 0.270016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 419 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.27024 -s 10 -d 7 -p ack -e 40 -c 0 -i 416 -a 0 -x {10.0 9.0 203 ------- null} + -t 0.27024 -s 7 -d 0 -p ack -e 40 -c 0 -i 416 -a 0 -x {10.0 9.0 203 ------- null} h -t 0.27024 -s 7 -d 8 -p ack -e 40 -c 0 -i 416 -a 0 -x {10.0 9.0 203 ------- null} + -t 0.270256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 405 -a 0 -x {9.0 10.0 207 ------- null} - -t 0.270256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 405 -a 0 -x {9.0 10.0 207 ------- null} h -t 0.270256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 405 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.270448 -s 0 -d 9 -p ack -e 40 -c 0 -i 412 -a 0 -x {10.0 9.0 201 ------- null} - -t 0.270448 -s 0 -d 9 -p ack -e 40 -c 0 -i 412 -a 0 -x {10.0 9.0 201 ------- null} h -t 0.270448 -s 0 -d 9 -p ack -e 40 -c 0 -i 412 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.270544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 415 -a 0 -x {9.0 10.0 212 ------- null} + -t 0.270544 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 415 -a 0 -x {9.0 10.0 212 ------- null} h -t 0.270544 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 415 -a 0 -x {9.0 10.0 212 ------- null} r -t 0.270672 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 401 -a 0 -x {9.0 10.0 205 ------- null} + -t 0.270672 -s 10 -d 7 -p ack -e 40 -c 0 -i 420 -a 0 -x {10.0 9.0 205 ------- null} - -t 0.270672 -s 10 -d 7 -p ack -e 40 -c 0 -i 420 -a 0 -x {10.0 9.0 205 ------- null} h -t 0.270672 -s 10 -d 7 -p ack -e 40 -c 0 -i 420 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.271248 -s 0 -d 9 -p ack -e 40 -c 0 -i 410 -a 0 -x {10.0 9.0 200 ------- null} + -t 0.271248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 421 -a 0 -x {9.0 10.0 215 ------- null} - -t 0.271248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 421 -a 0 -x {9.0 10.0 215 ------- null} h -t 0.271248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 421 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.271344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 407 -a 0 -x {9.0 10.0 208 ------- null} - -t 0.271344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 407 -a 0 -x {9.0 10.0 208 ------- null} h -t 0.271344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 407 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.271408 -s 0 -d 9 -p ack -e 40 -c 0 -i 414 -a 0 -x {10.0 9.0 202 ------- null} - -t 0.271408 -s 0 -d 9 -p ack -e 40 -c 0 -i 414 -a 0 -x {10.0 9.0 202 ------- null} h -t 0.271408 -s 0 -d 9 -p ack -e 40 -c 0 -i 414 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.271616 -s 10 -d 7 -p ack -e 40 -c 0 -i 418 -a 0 -x {10.0 9.0 204 ------- null} + -t 0.271616 -s 7 -d 0 -p ack -e 40 -c 0 -i 418 -a 0 -x {10.0 9.0 204 ------- null} h -t 0.271616 -s 7 -d 8 -p ack -e 40 -c 0 -i 418 -a 0 -x {10.0 9.0 204 ------- null} r -t 0.271712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 417 -a 0 -x {9.0 10.0 213 ------- null} + -t 0.271712 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 417 -a 0 -x {9.0 10.0 213 ------- null} h -t 0.271712 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 417 -a 0 -x {9.0 10.0 213 ------- null} r -t 0.27176 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 403 -a 0 -x {9.0 10.0 206 ------- null} + -t 0.27176 -s 10 -d 7 -p ack -e 40 -c 0 -i 422 -a 0 -x {10.0 9.0 206 ------- null} - -t 0.27176 -s 10 -d 7 -p ack -e 40 -c 0 -i 422 -a 0 -x {10.0 9.0 206 ------- null} h -t 0.27176 -s 10 -d 7 -p ack -e 40 -c 0 -i 422 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.272432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 409 -a 0 -x {9.0 10.0 209 ------- null} - -t 0.272432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 409 -a 0 -x {9.0 10.0 209 ------- null} h -t 0.272432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 409 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.27248 -s 0 -d 9 -p ack -e 40 -c 0 -i 412 -a 0 -x {10.0 9.0 201 ------- null} + -t 0.27248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {9.0 10.0 216 ------- null} - -t 0.27248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {9.0 10.0 216 ------- null} h -t 0.27248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.272704 -s 10 -d 7 -p ack -e 40 -c 0 -i 420 -a 0 -x {10.0 9.0 205 ------- null} + -t 0.272704 -s 7 -d 0 -p ack -e 40 -c 0 -i 420 -a 0 -x {10.0 9.0 205 ------- null} h -t 0.272704 -s 7 -d 8 -p ack -e 40 -c 0 -i 420 -a 0 -x {10.0 9.0 205 ------- null} + -t 0.27272 -s 0 -d 9 -p ack -e 40 -c 0 -i 416 -a 0 -x {10.0 9.0 203 ------- null} - -t 0.27272 -s 0 -d 9 -p ack -e 40 -c 0 -i 416 -a 0 -x {10.0 9.0 203 ------- null} h -t 0.27272 -s 0 -d 9 -p ack -e 40 -c 0 -i 416 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.272816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 419 -a 0 -x {9.0 10.0 214 ------- null} + -t 0.272816 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 419 -a 0 -x {9.0 10.0 214 ------- null} h -t 0.272816 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 419 -a 0 -x {9.0 10.0 214 ------- null} r -t 0.273056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 405 -a 0 -x {9.0 10.0 207 ------- null} + -t 0.273056 -s 10 -d 7 -p ack -e 40 -c 0 -i 424 -a 0 -x {10.0 9.0 207 ------- null} - -t 0.273056 -s 10 -d 7 -p ack -e 40 -c 0 -i 424 -a 0 -x {10.0 9.0 207 ------- null} h -t 0.273056 -s 10 -d 7 -p ack -e 40 -c 0 -i 424 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.27344 -s 0 -d 9 -p ack -e 40 -c 0 -i 414 -a 0 -x {10.0 9.0 202 ------- null} + -t 0.27344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {9.0 10.0 217 ------- null} - -t 0.27344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {9.0 10.0 217 ------- null} h -t 0.27344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.27368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 411 -a 0 -x {9.0 10.0 210 ------- null} - -t 0.27368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 411 -a 0 -x {9.0 10.0 210 ------- null} h -t 0.27368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 411 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.273792 -s 10 -d 7 -p ack -e 40 -c 0 -i 422 -a 0 -x {10.0 9.0 206 ------- null} + -t 0.273792 -s 7 -d 0 -p ack -e 40 -c 0 -i 422 -a 0 -x {10.0 9.0 206 ------- null} h -t 0.273792 -s 7 -d 8 -p ack -e 40 -c 0 -i 422 -a 0 -x {10.0 9.0 206 ------- null} + -t 0.27392 -s 0 -d 9 -p ack -e 40 -c 0 -i 418 -a 0 -x {10.0 9.0 204 ------- null} - -t 0.27392 -s 0 -d 9 -p ack -e 40 -c 0 -i 418 -a 0 -x {10.0 9.0 204 ------- null} h -t 0.27392 -s 0 -d 9 -p ack -e 40 -c 0 -i 418 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.274048 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 421 -a 0 -x {9.0 10.0 215 ------- null} + -t 0.274048 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 421 -a 0 -x {9.0 10.0 215 ------- null} h -t 0.274048 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 421 -a 0 -x {9.0 10.0 215 ------- null} r -t 0.274144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 407 -a 0 -x {9.0 10.0 208 ------- null} + -t 0.274144 -s 10 -d 7 -p ack -e 40 -c 0 -i 426 -a 0 -x {10.0 9.0 208 ------- null} - -t 0.274144 -s 10 -d 7 -p ack -e 40 -c 0 -i 426 -a 0 -x {10.0 9.0 208 ------- null} h -t 0.274144 -s 10 -d 7 -p ack -e 40 -c 0 -i 426 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.274752 -s 0 -d 9 -p ack -e 40 -c 0 -i 416 -a 0 -x {10.0 9.0 203 ------- null} + -t 0.274752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {9.0 10.0 218 ------- null} - -t 0.274752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {9.0 10.0 218 ------- null} h -t 0.274752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.274768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 413 -a 0 -x {9.0 10.0 211 ------- null} - -t 0.274768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 413 -a 0 -x {9.0 10.0 211 ------- null} h -t 0.274768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 413 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.27504 -s 0 -d 9 -p ack -e 40 -c 0 -i 420 -a 0 -x {10.0 9.0 205 ------- null} - -t 0.27504 -s 0 -d 9 -p ack -e 40 -c 0 -i 420 -a 0 -x {10.0 9.0 205 ------- null} h -t 0.27504 -s 0 -d 9 -p ack -e 40 -c 0 -i 420 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.275088 -s 10 -d 7 -p ack -e 40 -c 0 -i 424 -a 0 -x {10.0 9.0 207 ------- null} + -t 0.275088 -s 7 -d 0 -p ack -e 40 -c 0 -i 424 -a 0 -x {10.0 9.0 207 ------- null} h -t 0.275088 -s 7 -d 8 -p ack -e 40 -c 0 -i 424 -a 0 -x {10.0 9.0 207 ------- null} r -t 0.275232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 409 -a 0 -x {9.0 10.0 209 ------- null} + -t 0.275232 -s 10 -d 7 -p ack -e 40 -c 0 -i 428 -a 0 -x {10.0 9.0 209 ------- null} - -t 0.275232 -s 10 -d 7 -p ack -e 40 -c 0 -i 428 -a 0 -x {10.0 9.0 209 ------- null} h -t 0.275232 -s 10 -d 7 -p ack -e 40 -c 0 -i 428 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.27528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {9.0 10.0 216 ------- null} + -t 0.27528 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {9.0 10.0 216 ------- null} h -t 0.27528 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {9.0 10.0 216 ------- null} r -t 0.275952 -s 0 -d 9 -p ack -e 40 -c 0 -i 418 -a 0 -x {10.0 9.0 204 ------- null} + -t 0.275952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {9.0 10.0 219 ------- null} - -t 0.275952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {9.0 10.0 219 ------- null} h -t 0.275952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.276112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 415 -a 0 -x {9.0 10.0 212 ------- null} - -t 0.276112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 415 -a 0 -x {9.0 10.0 212 ------- null} h -t 0.276112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 415 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.276176 -s 10 -d 7 -p ack -e 40 -c 0 -i 426 -a 0 -x {10.0 9.0 208 ------- null} + -t 0.276176 -s 7 -d 0 -p ack -e 40 -c 0 -i 426 -a 0 -x {10.0 9.0 208 ------- null} h -t 0.276176 -s 7 -d 8 -p ack -e 40 -c 0 -i 426 -a 0 -x {10.0 9.0 208 ------- null} r -t 0.27624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {9.0 10.0 217 ------- null} + -t 0.27624 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {9.0 10.0 217 ------- null} h -t 0.27624 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {9.0 10.0 217 ------- null} + -t 0.276416 -s 0 -d 9 -p ack -e 40 -c 0 -i 422 -a 0 -x {10.0 9.0 206 ------- null} - -t 0.276416 -s 0 -d 9 -p ack -e 40 -c 0 -i 422 -a 0 -x {10.0 9.0 206 ------- null} h -t 0.276416 -s 0 -d 9 -p ack -e 40 -c 0 -i 422 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.27648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 411 -a 0 -x {9.0 10.0 210 ------- null} + -t 0.27648 -s 10 -d 7 -p ack -e 40 -c 0 -i 430 -a 0 -x {10.0 9.0 210 ------- null} - -t 0.27648 -s 10 -d 7 -p ack -e 40 -c 0 -i 430 -a 0 -x {10.0 9.0 210 ------- null} h -t 0.27648 -s 10 -d 7 -p ack -e 40 -c 0 -i 430 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.277072 -s 0 -d 9 -p ack -e 40 -c 0 -i 420 -a 0 -x {10.0 9.0 205 ------- null} + -t 0.277072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {9.0 10.0 220 ------- null} - -t 0.277072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {9.0 10.0 220 ------- null} h -t 0.277072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.277264 -s 10 -d 7 -p ack -e 40 -c 0 -i 428 -a 0 -x {10.0 9.0 209 ------- null} + -t 0.277264 -s 7 -d 0 -p ack -e 40 -c 0 -i 428 -a 0 -x {10.0 9.0 209 ------- null} h -t 0.277264 -s 7 -d 8 -p ack -e 40 -c 0 -i 428 -a 0 -x {10.0 9.0 209 ------- null} + -t 0.277264 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 417 -a 0 -x {9.0 10.0 213 ------- null} - -t 0.277264 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 417 -a 0 -x {9.0 10.0 213 ------- null} h -t 0.277264 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 417 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.277344 -s 0 -d 9 -p ack -e 40 -c 0 -i 424 -a 0 -x {10.0 9.0 207 ------- null} - -t 0.277344 -s 0 -d 9 -p ack -e 40 -c 0 -i 424 -a 0 -x {10.0 9.0 207 ------- null} h -t 0.277344 -s 0 -d 9 -p ack -e 40 -c 0 -i 424 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.277552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {9.0 10.0 218 ------- null} + -t 0.277552 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {9.0 10.0 218 ------- null} h -t 0.277552 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {9.0 10.0 218 ------- null} r -t 0.277568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 413 -a 0 -x {9.0 10.0 211 ------- null} + -t 0.277568 -s 10 -d 7 -p ack -e 40 -c 0 -i 432 -a 0 -x {10.0 9.0 211 ------- null} - -t 0.277568 -s 10 -d 7 -p ack -e 40 -c 0 -i 432 -a 0 -x {10.0 9.0 211 ------- null} h -t 0.277568 -s 10 -d 7 -p ack -e 40 -c 0 -i 432 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.278352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 419 -a 0 -x {9.0 10.0 214 ------- null} - -t 0.278352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 419 -a 0 -x {9.0 10.0 214 ------- null} h -t 0.278352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 419 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.278416 -s 0 -d 9 -p ack -e 40 -c 0 -i 426 -a 0 -x {10.0 9.0 208 ------- null} - -t 0.278416 -s 0 -d 9 -p ack -e 40 -c 0 -i 426 -a 0 -x {10.0 9.0 208 ------- null} h -t 0.278416 -s 0 -d 9 -p ack -e 40 -c 0 -i 426 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.278448 -s 0 -d 9 -p ack -e 40 -c 0 -i 422 -a 0 -x {10.0 9.0 206 ------- null} + -t 0.278448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {9.0 10.0 221 ------- null} - -t 0.278448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {9.0 10.0 221 ------- null} h -t 0.278448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.278512 -s 10 -d 7 -p ack -e 40 -c 0 -i 430 -a 0 -x {10.0 9.0 210 ------- null} + -t 0.278512 -s 7 -d 0 -p ack -e 40 -c 0 -i 430 -a 0 -x {10.0 9.0 210 ------- null} h -t 0.278512 -s 7 -d 8 -p ack -e 40 -c 0 -i 430 -a 0 -x {10.0 9.0 210 ------- null} r -t 0.278752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {9.0 10.0 219 ------- null} + -t 0.278752 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {9.0 10.0 219 ------- null} h -t 0.278752 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {9.0 10.0 219 ------- null} r -t 0.278912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 415 -a 0 -x {9.0 10.0 212 ------- null} + -t 0.278912 -s 10 -d 7 -p ack -e 40 -c 0 -i 434 -a 0 -x {10.0 9.0 212 ------- null} - -t 0.278912 -s 10 -d 7 -p ack -e 40 -c 0 -i 434 -a 0 -x {10.0 9.0 212 ------- null} h -t 0.278912 -s 10 -d 7 -p ack -e 40 -c 0 -i 434 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.279376 -s 0 -d 9 -p ack -e 40 -c 0 -i 424 -a 0 -x {10.0 9.0 207 ------- null} + -t 0.279376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {9.0 10.0 222 ------- null} - -t 0.279376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {9.0 10.0 222 ------- null} h -t 0.279376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.27944 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 421 -a 0 -x {9.0 10.0 215 ------- null} - -t 0.27944 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 421 -a 0 -x {9.0 10.0 215 ------- null} h -t 0.27944 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 421 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.2796 -s 10 -d 7 -p ack -e 40 -c 0 -i 432 -a 0 -x {10.0 9.0 211 ------- null} + -t 0.2796 -s 7 -d 0 -p ack -e 40 -c 0 -i 432 -a 0 -x {10.0 9.0 211 ------- null} h -t 0.2796 -s 7 -d 8 -p ack -e 40 -c 0 -i 432 -a 0 -x {10.0 9.0 211 ------- null} + -t 0.279744 -s 0 -d 9 -p ack -e 40 -c 0 -i 428 -a 0 -x {10.0 9.0 209 ------- null} - -t 0.279744 -s 0 -d 9 -p ack -e 40 -c 0 -i 428 -a 0 -x {10.0 9.0 209 ------- null} h -t 0.279744 -s 0 -d 9 -p ack -e 40 -c 0 -i 428 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.279872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {9.0 10.0 220 ------- null} + -t 0.279872 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {9.0 10.0 220 ------- null} h -t 0.279872 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {9.0 10.0 220 ------- null} r -t 0.280064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 417 -a 0 -x {9.0 10.0 213 ------- null} + -t 0.280064 -s 10 -d 7 -p ack -e 40 -c 0 -i 436 -a 0 -x {10.0 9.0 213 ------- null} - -t 0.280064 -s 10 -d 7 -p ack -e 40 -c 0 -i 436 -a 0 -x {10.0 9.0 213 ------- null} h -t 0.280064 -s 10 -d 7 -p ack -e 40 -c 0 -i 436 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.280448 -s 0 -d 9 -p ack -e 40 -c 0 -i 426 -a 0 -x {10.0 9.0 208 ------- null} + -t 0.280448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {9.0 10.0 223 ------- null} - -t 0.280448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {9.0 10.0 223 ------- null} h -t 0.280448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.280688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {9.0 10.0 216 ------- null} - -t 0.280688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {9.0 10.0 216 ------- null} h -t 0.280688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.280784 -s 0 -d 9 -p ack -e 40 -c 0 -i 430 -a 0 -x {10.0 9.0 210 ------- null} - -t 0.280784 -s 0 -d 9 -p ack -e 40 -c 0 -i 430 -a 0 -x {10.0 9.0 210 ------- null} h -t 0.280784 -s 0 -d 9 -p ack -e 40 -c 0 -i 430 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.280944 -s 10 -d 7 -p ack -e 40 -c 0 -i 434 -a 0 -x {10.0 9.0 212 ------- null} + -t 0.280944 -s 7 -d 0 -p ack -e 40 -c 0 -i 434 -a 0 -x {10.0 9.0 212 ------- null} h -t 0.280944 -s 7 -d 8 -p ack -e 40 -c 0 -i 434 -a 0 -x {10.0 9.0 212 ------- null} r -t 0.281152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 419 -a 0 -x {9.0 10.0 214 ------- null} + -t 0.281152 -s 10 -d 7 -p ack -e 40 -c 0 -i 438 -a 0 -x {10.0 9.0 214 ------- null} - -t 0.281152 -s 10 -d 7 -p ack -e 40 -c 0 -i 438 -a 0 -x {10.0 9.0 214 ------- null} h -t 0.281152 -s 10 -d 7 -p ack -e 40 -c 0 -i 438 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.281248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {9.0 10.0 221 ------- null} + -t 0.281248 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {9.0 10.0 221 ------- null} h -t 0.281248 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {9.0 10.0 221 ------- null} r -t 0.281776 -s 0 -d 9 -p ack -e 40 -c 0 -i 428 -a 0 -x {10.0 9.0 209 ------- null} + -t 0.281776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {9.0 10.0 224 ------- null} - -t 0.281776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {9.0 10.0 224 ------- null} h -t 0.281776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.281776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {9.0 10.0 217 ------- null} - -t 0.281776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {9.0 10.0 217 ------- null} h -t 0.281776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.281888 -s 0 -d 9 -p ack -e 40 -c 0 -i 432 -a 0 -x {10.0 9.0 211 ------- null} - -t 0.281888 -s 0 -d 9 -p ack -e 40 -c 0 -i 432 -a 0 -x {10.0 9.0 211 ------- null} h -t 0.281888 -s 0 -d 9 -p ack -e 40 -c 0 -i 432 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.282096 -s 10 -d 7 -p ack -e 40 -c 0 -i 436 -a 0 -x {10.0 9.0 213 ------- null} + -t 0.282096 -s 7 -d 0 -p ack -e 40 -c 0 -i 436 -a 0 -x {10.0 9.0 213 ------- null} h -t 0.282096 -s 7 -d 8 -p ack -e 40 -c 0 -i 436 -a 0 -x {10.0 9.0 213 ------- null} r -t 0.282176 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {9.0 10.0 222 ------- null} + -t 0.282176 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {9.0 10.0 222 ------- null} h -t 0.282176 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {9.0 10.0 222 ------- null} r -t 0.28224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 421 -a 0 -x {9.0 10.0 215 ------- null} + -t 0.28224 -s 10 -d 7 -p ack -e 40 -c 0 -i 440 -a 0 -x {10.0 9.0 215 ------- null} - -t 0.28224 -s 10 -d 7 -p ack -e 40 -c 0 -i 440 -a 0 -x {10.0 9.0 215 ------- null} h -t 0.28224 -s 10 -d 7 -p ack -e 40 -c 0 -i 440 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.282816 -s 0 -d 9 -p ack -e 40 -c 0 -i 430 -a 0 -x {10.0 9.0 210 ------- null} + -t 0.282816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {9.0 10.0 225 ------- null} - -t 0.282816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {9.0 10.0 225 ------- null} h -t 0.282816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.282864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {9.0 10.0 218 ------- null} - -t 0.282864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {9.0 10.0 218 ------- null} h -t 0.282864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.283152 -s 0 -d 9 -p ack -e 40 -c 0 -i 434 -a 0 -x {10.0 9.0 212 ------- null} - -t 0.283152 -s 0 -d 9 -p ack -e 40 -c 0 -i 434 -a 0 -x {10.0 9.0 212 ------- null} h -t 0.283152 -s 0 -d 9 -p ack -e 40 -c 0 -i 434 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.283184 -s 10 -d 7 -p ack -e 40 -c 0 -i 438 -a 0 -x {10.0 9.0 214 ------- null} + -t 0.283184 -s 7 -d 0 -p ack -e 40 -c 0 -i 438 -a 0 -x {10.0 9.0 214 ------- null} h -t 0.283184 -s 7 -d 8 -p ack -e 40 -c 0 -i 438 -a 0 -x {10.0 9.0 214 ------- null} r -t 0.283248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {9.0 10.0 223 ------- null} + -t 0.283248 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {9.0 10.0 223 ------- null} h -t 0.283248 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {9.0 10.0 223 ------- null} r -t 0.283488 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 423 -a 0 -x {9.0 10.0 216 ------- null} + -t 0.283488 -s 10 -d 7 -p ack -e 40 -c 0 -i 442 -a 0 -x {10.0 9.0 216 ------- null} - -t 0.283488 -s 10 -d 7 -p ack -e 40 -c 0 -i 442 -a 0 -x {10.0 9.0 216 ------- null} h -t 0.283488 -s 10 -d 7 -p ack -e 40 -c 0 -i 442 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.28392 -s 0 -d 9 -p ack -e 40 -c 0 -i 432 -a 0 -x {10.0 9.0 211 ------- null} + -t 0.28392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 443 -a 0 -x {9.0 10.0 226 ------- null} - -t 0.28392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 443 -a 0 -x {9.0 10.0 226 ------- null} h -t 0.28392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 443 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.284048 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {9.0 10.0 219 ------- null} - -t 0.284048 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {9.0 10.0 219 ------- null} h -t 0.284048 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.284176 -s 0 -d 9 -p ack -e 40 -c 0 -i 436 -a 0 -x {10.0 9.0 213 ------- null} - -t 0.284176 -s 0 -d 9 -p ack -e 40 -c 0 -i 436 -a 0 -x {10.0 9.0 213 ------- null} h -t 0.284176 -s 0 -d 9 -p ack -e 40 -c 0 -i 436 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.284272 -s 10 -d 7 -p ack -e 40 -c 0 -i 440 -a 0 -x {10.0 9.0 215 ------- null} + -t 0.284272 -s 7 -d 0 -p ack -e 40 -c 0 -i 440 -a 0 -x {10.0 9.0 215 ------- null} h -t 0.284272 -s 7 -d 8 -p ack -e 40 -c 0 -i 440 -a 0 -x {10.0 9.0 215 ------- null} r -t 0.284576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {9.0 10.0 224 ------- null} + -t 0.284576 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {9.0 10.0 224 ------- null} h -t 0.284576 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {9.0 10.0 224 ------- null} r -t 0.284576 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 425 -a 0 -x {9.0 10.0 217 ------- null} + -t 0.284576 -s 10 -d 7 -p ack -e 40 -c 0 -i 444 -a 0 -x {10.0 9.0 217 ------- null} - -t 0.284576 -s 10 -d 7 -p ack -e 40 -c 0 -i 444 -a 0 -x {10.0 9.0 217 ------- null} h -t 0.284576 -s 10 -d 7 -p ack -e 40 -c 0 -i 444 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.285136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {9.0 10.0 220 ------- null} - -t 0.285136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {9.0 10.0 220 ------- null} h -t 0.285136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.285184 -s 0 -d 9 -p ack -e 40 -c 0 -i 434 -a 0 -x {10.0 9.0 212 ------- null} + -t 0.285184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 445 -a 0 -x {9.0 10.0 227 ------- null} - -t 0.285184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 445 -a 0 -x {9.0 10.0 227 ------- null} h -t 0.285184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 445 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.285216 -s 0 -d 9 -p ack -e 40 -c 0 -i 438 -a 0 -x {10.0 9.0 214 ------- null} - -t 0.285216 -s 0 -d 9 -p ack -e 40 -c 0 -i 438 -a 0 -x {10.0 9.0 214 ------- null} h -t 0.285216 -s 0 -d 9 -p ack -e 40 -c 0 -i 438 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.28552 -s 10 -d 7 -p ack -e 40 -c 0 -i 442 -a 0 -x {10.0 9.0 216 ------- null} + -t 0.28552 -s 7 -d 0 -p ack -e 40 -c 0 -i 442 -a 0 -x {10.0 9.0 216 ------- null} h -t 0.28552 -s 7 -d 8 -p ack -e 40 -c 0 -i 442 -a 0 -x {10.0 9.0 216 ------- null} r -t 0.285616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {9.0 10.0 225 ------- null} + -t 0.285616 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {9.0 10.0 225 ------- null} h -t 0.285616 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {9.0 10.0 225 ------- null} r -t 0.285664 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 427 -a 0 -x {9.0 10.0 218 ------- null} + -t 0.285664 -s 10 -d 7 -p ack -e 40 -c 0 -i 446 -a 0 -x {10.0 9.0 218 ------- null} - -t 0.285664 -s 10 -d 7 -p ack -e 40 -c 0 -i 446 -a 0 -x {10.0 9.0 218 ------- null} h -t 0.285664 -s 10 -d 7 -p ack -e 40 -c 0 -i 446 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.286208 -s 0 -d 9 -p ack -e 40 -c 0 -i 436 -a 0 -x {10.0 9.0 213 ------- null} + -t 0.286208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 447 -a 0 -x {9.0 10.0 228 ------- null} - -t 0.286208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 447 -a 0 -x {9.0 10.0 228 ------- null} h -t 0.286208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 447 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.286224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {9.0 10.0 221 ------- null} - -t 0.286224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {9.0 10.0 221 ------- null} h -t 0.286224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.286464 -s 0 -d 9 -p ack -e 40 -c 0 -i 440 -a 0 -x {10.0 9.0 215 ------- null} - -t 0.286464 -s 0 -d 9 -p ack -e 40 -c 0 -i 440 -a 0 -x {10.0 9.0 215 ------- null} h -t 0.286464 -s 0 -d 9 -p ack -e 40 -c 0 -i 440 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.286608 -s 10 -d 7 -p ack -e 40 -c 0 -i 444 -a 0 -x {10.0 9.0 217 ------- null} + -t 0.286608 -s 7 -d 0 -p ack -e 40 -c 0 -i 444 -a 0 -x {10.0 9.0 217 ------- null} h -t 0.286608 -s 7 -d 8 -p ack -e 40 -c 0 -i 444 -a 0 -x {10.0 9.0 217 ------- null} r -t 0.28672 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 443 -a 0 -x {9.0 10.0 226 ------- null} + -t 0.28672 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 443 -a 0 -x {9.0 10.0 226 ------- null} h -t 0.28672 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 443 -a 0 -x {9.0 10.0 226 ------- null} r -t 0.286848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 429 -a 0 -x {9.0 10.0 219 ------- null} + -t 0.286848 -s 10 -d 7 -p ack -e 40 -c 0 -i 448 -a 0 -x {10.0 9.0 219 ------- null} - -t 0.286848 -s 10 -d 7 -p ack -e 40 -c 0 -i 448 -a 0 -x {10.0 9.0 219 ------- null} h -t 0.286848 -s 10 -d 7 -p ack -e 40 -c 0 -i 448 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.287248 -s 0 -d 9 -p ack -e 40 -c 0 -i 438 -a 0 -x {10.0 9.0 214 ------- null} + -t 0.287248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 449 -a 0 -x {9.0 10.0 229 ------- null} - -t 0.287248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 449 -a 0 -x {9.0 10.0 229 ------- null} h -t 0.287248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 449 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.287312 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {9.0 10.0 222 ------- null} - -t 0.287312 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {9.0 10.0 222 ------- null} h -t 0.287312 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.28744 -s 0 -d 9 -p ack -e 40 -c 0 -i 442 -a 0 -x {10.0 9.0 216 ------- null} - -t 0.28744 -s 0 -d 9 -p ack -e 40 -c 0 -i 442 -a 0 -x {10.0 9.0 216 ------- null} h -t 0.28744 -s 0 -d 9 -p ack -e 40 -c 0 -i 442 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.287696 -s 10 -d 7 -p ack -e 40 -c 0 -i 446 -a 0 -x {10.0 9.0 218 ------- null} + -t 0.287696 -s 7 -d 0 -p ack -e 40 -c 0 -i 446 -a 0 -x {10.0 9.0 218 ------- null} h -t 0.287696 -s 7 -d 8 -p ack -e 40 -c 0 -i 446 -a 0 -x {10.0 9.0 218 ------- null} r -t 0.287936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 431 -a 0 -x {9.0 10.0 220 ------- null} + -t 0.287936 -s 10 -d 7 -p ack -e 40 -c 0 -i 450 -a 0 -x {10.0 9.0 220 ------- null} - -t 0.287936 -s 10 -d 7 -p ack -e 40 -c 0 -i 450 -a 0 -x {10.0 9.0 220 ------- null} h -t 0.287936 -s 10 -d 7 -p ack -e 40 -c 0 -i 450 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.287984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 445 -a 0 -x {9.0 10.0 227 ------- null} + -t 0.287984 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 445 -a 0 -x {9.0 10.0 227 ------- null} h -t 0.287984 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 445 -a 0 -x {9.0 10.0 227 ------- null} + -t 0.2884 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {9.0 10.0 223 ------- null} - -t 0.2884 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {9.0 10.0 223 ------- null} h -t 0.2884 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.288496 -s 0 -d 9 -p ack -e 40 -c 0 -i 440 -a 0 -x {10.0 9.0 215 ------- null} + -t 0.288496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 451 -a 0 -x {9.0 10.0 230 ------- null} - -t 0.288496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 451 -a 0 -x {9.0 10.0 230 ------- null} h -t 0.288496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 451 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.28856 -s 0 -d 9 -p ack -e 40 -c 0 -i 444 -a 0 -x {10.0 9.0 217 ------- null} - -t 0.28856 -s 0 -d 9 -p ack -e 40 -c 0 -i 444 -a 0 -x {10.0 9.0 217 ------- null} h -t 0.28856 -s 0 -d 9 -p ack -e 40 -c 0 -i 444 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.28888 -s 10 -d 7 -p ack -e 40 -c 0 -i 448 -a 0 -x {10.0 9.0 219 ------- null} + -t 0.28888 -s 7 -d 0 -p ack -e 40 -c 0 -i 448 -a 0 -x {10.0 9.0 219 ------- null} h -t 0.28888 -s 7 -d 8 -p ack -e 40 -c 0 -i 448 -a 0 -x {10.0 9.0 219 ------- null} r -t 0.289008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 447 -a 0 -x {9.0 10.0 228 ------- null} + -t 0.289008 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 447 -a 0 -x {9.0 10.0 228 ------- null} h -t 0.289008 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 447 -a 0 -x {9.0 10.0 228 ------- null} r -t 0.289024 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 433 -a 0 -x {9.0 10.0 221 ------- null} + -t 0.289024 -s 10 -d 7 -p ack -e 40 -c 0 -i 452 -a 0 -x {10.0 9.0 221 ------- null} - -t 0.289024 -s 10 -d 7 -p ack -e 40 -c 0 -i 452 -a 0 -x {10.0 9.0 221 ------- null} h -t 0.289024 -s 10 -d 7 -p ack -e 40 -c 0 -i 452 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.289472 -s 0 -d 9 -p ack -e 40 -c 0 -i 442 -a 0 -x {10.0 9.0 216 ------- null} + -t 0.289472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 453 -a 0 -x {9.0 10.0 231 ------- null} - -t 0.289472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 453 -a 0 -x {9.0 10.0 231 ------- null} h -t 0.289472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 453 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.289488 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {9.0 10.0 224 ------- null} - -t 0.289488 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {9.0 10.0 224 ------- null} h -t 0.289488 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.28968 -s 0 -d 9 -p ack -e 40 -c 0 -i 446 -a 0 -x {10.0 9.0 218 ------- null} - -t 0.28968 -s 0 -d 9 -p ack -e 40 -c 0 -i 446 -a 0 -x {10.0 9.0 218 ------- null} h -t 0.28968 -s 0 -d 9 -p ack -e 40 -c 0 -i 446 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.289968 -s 10 -d 7 -p ack -e 40 -c 0 -i 450 -a 0 -x {10.0 9.0 220 ------- null} + -t 0.289968 -s 7 -d 0 -p ack -e 40 -c 0 -i 450 -a 0 -x {10.0 9.0 220 ------- null} h -t 0.289968 -s 7 -d 8 -p ack -e 40 -c 0 -i 450 -a 0 -x {10.0 9.0 220 ------- null} r -t 0.290048 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 449 -a 0 -x {9.0 10.0 229 ------- null} + -t 0.290048 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 449 -a 0 -x {9.0 10.0 229 ------- null} h -t 0.290048 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 449 -a 0 -x {9.0 10.0 229 ------- null} r -t 0.290112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 435 -a 0 -x {9.0 10.0 222 ------- null} + -t 0.290112 -s 10 -d 7 -p ack -e 40 -c 0 -i 454 -a 0 -x {10.0 9.0 222 ------- null} - -t 0.290112 -s 10 -d 7 -p ack -e 40 -c 0 -i 454 -a 0 -x {10.0 9.0 222 ------- null} h -t 0.290112 -s 10 -d 7 -p ack -e 40 -c 0 -i 454 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.290576 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {9.0 10.0 225 ------- null} - -t 0.290576 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {9.0 10.0 225 ------- null} h -t 0.290576 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.290592 -s 0 -d 9 -p ack -e 40 -c 0 -i 444 -a 0 -x {10.0 9.0 217 ------- null} + -t 0.290592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 455 -a 0 -x {9.0 10.0 232 ------- null} - -t 0.290592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 455 -a 0 -x {9.0 10.0 232 ------- null} h -t 0.290592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 455 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.290848 -s 0 -d 9 -p ack -e 40 -c 0 -i 448 -a 0 -x {10.0 9.0 219 ------- null} - -t 0.290848 -s 0 -d 9 -p ack -e 40 -c 0 -i 448 -a 0 -x {10.0 9.0 219 ------- null} h -t 0.290848 -s 0 -d 9 -p ack -e 40 -c 0 -i 448 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.291056 -s 10 -d 7 -p ack -e 40 -c 0 -i 452 -a 0 -x {10.0 9.0 221 ------- null} + -t 0.291056 -s 7 -d 0 -p ack -e 40 -c 0 -i 452 -a 0 -x {10.0 9.0 221 ------- null} h -t 0.291056 -s 7 -d 8 -p ack -e 40 -c 0 -i 452 -a 0 -x {10.0 9.0 221 ------- null} r -t 0.2912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 437 -a 0 -x {9.0 10.0 223 ------- null} + -t 0.2912 -s 10 -d 7 -p ack -e 40 -c 0 -i 456 -a 0 -x {10.0 9.0 223 ------- null} - -t 0.2912 -s 10 -d 7 -p ack -e 40 -c 0 -i 456 -a 0 -x {10.0 9.0 223 ------- null} h -t 0.2912 -s 10 -d 7 -p ack -e 40 -c 0 -i 456 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.291296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 451 -a 0 -x {9.0 10.0 230 ------- null} + -t 0.291296 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 451 -a 0 -x {9.0 10.0 230 ------- null} h -t 0.291296 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 451 -a 0 -x {9.0 10.0 230 ------- null} r -t 0.291712 -s 0 -d 9 -p ack -e 40 -c 0 -i 446 -a 0 -x {10.0 9.0 218 ------- null} + -t 0.291712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 457 -a 0 -x {9.0 10.0 233 ------- null} - -t 0.291712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 457 -a 0 -x {9.0 10.0 233 ------- null} h -t 0.291712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 457 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.291856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 443 -a 0 -x {9.0 10.0 226 ------- null} - -t 0.291856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 443 -a 0 -x {9.0 10.0 226 ------- null} h -t 0.291856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 443 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.291936 -s 0 -d 9 -p ack -e 40 -c 0 -i 450 -a 0 -x {10.0 9.0 220 ------- null} - -t 0.291936 -s 0 -d 9 -p ack -e 40 -c 0 -i 450 -a 0 -x {10.0 9.0 220 ------- null} h -t 0.291936 -s 0 -d 9 -p ack -e 40 -c 0 -i 450 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.292144 -s 10 -d 7 -p ack -e 40 -c 0 -i 454 -a 0 -x {10.0 9.0 222 ------- null} + -t 0.292144 -s 7 -d 0 -p ack -e 40 -c 0 -i 454 -a 0 -x {10.0 9.0 222 ------- null} h -t 0.292144 -s 7 -d 8 -p ack -e 40 -c 0 -i 454 -a 0 -x {10.0 9.0 222 ------- null} r -t 0.292272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 453 -a 0 -x {9.0 10.0 231 ------- null} + -t 0.292272 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 453 -a 0 -x {9.0 10.0 231 ------- null} h -t 0.292272 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 453 -a 0 -x {9.0 10.0 231 ------- null} r -t 0.292288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 439 -a 0 -x {9.0 10.0 224 ------- null} + -t 0.292288 -s 10 -d 7 -p ack -e 40 -c 0 -i 458 -a 0 -x {10.0 9.0 224 ------- null} - -t 0.292288 -s 10 -d 7 -p ack -e 40 -c 0 -i 458 -a 0 -x {10.0 9.0 224 ------- null} h -t 0.292288 -s 10 -d 7 -p ack -e 40 -c 0 -i 458 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.29288 -s 0 -d 9 -p ack -e 40 -c 0 -i 448 -a 0 -x {10.0 9.0 219 ------- null} + -t 0.29288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 459 -a 0 -x {9.0 10.0 234 ------- null} - -t 0.29288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 459 -a 0 -x {9.0 10.0 234 ------- null} h -t 0.29288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 459 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.292944 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 445 -a 0 -x {9.0 10.0 227 ------- null} - -t 0.292944 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 445 -a 0 -x {9.0 10.0 227 ------- null} h -t 0.292944 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 445 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.293056 -s 0 -d 9 -p ack -e 40 -c 0 -i 452 -a 0 -x {10.0 9.0 221 ------- null} - -t 0.293056 -s 0 -d 9 -p ack -e 40 -c 0 -i 452 -a 0 -x {10.0 9.0 221 ------- null} h -t 0.293056 -s 0 -d 9 -p ack -e 40 -c 0 -i 452 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.293232 -s 10 -d 7 -p ack -e 40 -c 0 -i 456 -a 0 -x {10.0 9.0 223 ------- null} + -t 0.293232 -s 7 -d 0 -p ack -e 40 -c 0 -i 456 -a 0 -x {10.0 9.0 223 ------- null} h -t 0.293232 -s 7 -d 8 -p ack -e 40 -c 0 -i 456 -a 0 -x {10.0 9.0 223 ------- null} r -t 0.293376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 441 -a 0 -x {9.0 10.0 225 ------- null} + -t 0.293376 -s 10 -d 7 -p ack -e 40 -c 0 -i 460 -a 0 -x {10.0 9.0 225 ------- null} - -t 0.293376 -s 10 -d 7 -p ack -e 40 -c 0 -i 460 -a 0 -x {10.0 9.0 225 ------- null} h -t 0.293376 -s 10 -d 7 -p ack -e 40 -c 0 -i 460 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.293392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 455 -a 0 -x {9.0 10.0 232 ------- null} + -t 0.293392 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 455 -a 0 -x {9.0 10.0 232 ------- null} h -t 0.293392 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 455 -a 0 -x {9.0 10.0 232 ------- null} r -t 0.293968 -s 0 -d 9 -p ack -e 40 -c 0 -i 450 -a 0 -x {10.0 9.0 220 ------- null} + -t 0.293968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 461 -a 0 -x {9.0 10.0 235 ------- null} - -t 0.293968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 461 -a 0 -x {9.0 10.0 235 ------- null} h -t 0.293968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 461 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.294032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 447 -a 0 -x {9.0 10.0 228 ------- null} - -t 0.294032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 447 -a 0 -x {9.0 10.0 228 ------- null} h -t 0.294032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 447 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.294144 -s 0 -d 9 -p ack -e 40 -c 0 -i 454 -a 0 -x {10.0 9.0 222 ------- null} - -t 0.294144 -s 0 -d 9 -p ack -e 40 -c 0 -i 454 -a 0 -x {10.0 9.0 222 ------- null} h -t 0.294144 -s 0 -d 9 -p ack -e 40 -c 0 -i 454 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.29432 -s 10 -d 7 -p ack -e 40 -c 0 -i 458 -a 0 -x {10.0 9.0 224 ------- null} + -t 0.29432 -s 7 -d 0 -p ack -e 40 -c 0 -i 458 -a 0 -x {10.0 9.0 224 ------- null} h -t 0.29432 -s 7 -d 8 -p ack -e 40 -c 0 -i 458 -a 0 -x {10.0 9.0 224 ------- null} r -t 0.294512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 457 -a 0 -x {9.0 10.0 233 ------- null} + -t 0.294512 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 457 -a 0 -x {9.0 10.0 233 ------- null} h -t 0.294512 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 457 -a 0 -x {9.0 10.0 233 ------- null} r -t 0.294656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 443 -a 0 -x {9.0 10.0 226 ------- null} + -t 0.294656 -s 10 -d 7 -p ack -e 40 -c 0 -i 462 -a 0 -x {10.0 9.0 226 ------- null} - -t 0.294656 -s 10 -d 7 -p ack -e 40 -c 0 -i 462 -a 0 -x {10.0 9.0 226 ------- null} h -t 0.294656 -s 10 -d 7 -p ack -e 40 -c 0 -i 462 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.295088 -s 0 -d 9 -p ack -e 40 -c 0 -i 452 -a 0 -x {10.0 9.0 221 ------- null} + -t 0.295088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {9.0 10.0 236 ------- null} - -t 0.295088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {9.0 10.0 236 ------- null} h -t 0.295088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.29512 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 449 -a 0 -x {9.0 10.0 229 ------- null} - -t 0.29512 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 449 -a 0 -x {9.0 10.0 229 ------- null} h -t 0.29512 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 449 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.295232 -s 0 -d 9 -p ack -e 40 -c 0 -i 456 -a 0 -x {10.0 9.0 223 ------- null} - -t 0.295232 -s 0 -d 9 -p ack -e 40 -c 0 -i 456 -a 0 -x {10.0 9.0 223 ------- null} h -t 0.295232 -s 0 -d 9 -p ack -e 40 -c 0 -i 456 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.295408 -s 10 -d 7 -p ack -e 40 -c 0 -i 460 -a 0 -x {10.0 9.0 225 ------- null} + -t 0.295408 -s 7 -d 0 -p ack -e 40 -c 0 -i 460 -a 0 -x {10.0 9.0 225 ------- null} h -t 0.295408 -s 7 -d 8 -p ack -e 40 -c 0 -i 460 -a 0 -x {10.0 9.0 225 ------- null} r -t 0.29568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 459 -a 0 -x {9.0 10.0 234 ------- null} + -t 0.29568 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 459 -a 0 -x {9.0 10.0 234 ------- null} h -t 0.29568 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 459 -a 0 -x {9.0 10.0 234 ------- null} r -t 0.295744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 445 -a 0 -x {9.0 10.0 227 ------- null} + -t 0.295744 -s 10 -d 7 -p ack -e 40 -c 0 -i 464 -a 0 -x {10.0 9.0 227 ------- null} - -t 0.295744 -s 10 -d 7 -p ack -e 40 -c 0 -i 464 -a 0 -x {10.0 9.0 227 ------- null} h -t 0.295744 -s 10 -d 7 -p ack -e 40 -c 0 -i 464 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.296176 -s 0 -d 9 -p ack -e 40 -c 0 -i 454 -a 0 -x {10.0 9.0 222 ------- null} + -t 0.296176 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {9.0 10.0 237 ------- null} - -t 0.296176 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {9.0 10.0 237 ------- null} h -t 0.296176 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.296208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 451 -a 0 -x {9.0 10.0 230 ------- null} - -t 0.296208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 451 -a 0 -x {9.0 10.0 230 ------- null} h -t 0.296208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 451 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.296496 -s 0 -d 9 -p ack -e 40 -c 0 -i 458 -a 0 -x {10.0 9.0 224 ------- null} - -t 0.296496 -s 0 -d 9 -p ack -e 40 -c 0 -i 458 -a 0 -x {10.0 9.0 224 ------- null} h -t 0.296496 -s 0 -d 9 -p ack -e 40 -c 0 -i 458 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.296688 -s 10 -d 7 -p ack -e 40 -c 0 -i 462 -a 0 -x {10.0 9.0 226 ------- null} + -t 0.296688 -s 7 -d 0 -p ack -e 40 -c 0 -i 462 -a 0 -x {10.0 9.0 226 ------- null} h -t 0.296688 -s 7 -d 8 -p ack -e 40 -c 0 -i 462 -a 0 -x {10.0 9.0 226 ------- null} r -t 0.296768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 461 -a 0 -x {9.0 10.0 235 ------- null} + -t 0.296768 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 461 -a 0 -x {9.0 10.0 235 ------- null} h -t 0.296768 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 461 -a 0 -x {9.0 10.0 235 ------- null} r -t 0.296832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 447 -a 0 -x {9.0 10.0 228 ------- null} + -t 0.296832 -s 10 -d 7 -p ack -e 40 -c 0 -i 466 -a 0 -x {10.0 9.0 228 ------- null} - -t 0.296832 -s 10 -d 7 -p ack -e 40 -c 0 -i 466 -a 0 -x {10.0 9.0 228 ------- null} h -t 0.296832 -s 10 -d 7 -p ack -e 40 -c 0 -i 466 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.297264 -s 0 -d 9 -p ack -e 40 -c 0 -i 456 -a 0 -x {10.0 9.0 223 ------- null} + -t 0.297264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {9.0 10.0 238 ------- null} - -t 0.297264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {9.0 10.0 238 ------- null} h -t 0.297264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.297504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 453 -a 0 -x {9.0 10.0 231 ------- null} - -t 0.297504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 453 -a 0 -x {9.0 10.0 231 ------- null} h -t 0.297504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 453 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.29768 -s 0 -d 9 -p ack -e 40 -c 0 -i 460 -a 0 -x {10.0 9.0 225 ------- null} - -t 0.29768 -s 0 -d 9 -p ack -e 40 -c 0 -i 460 -a 0 -x {10.0 9.0 225 ------- null} h -t 0.29768 -s 0 -d 9 -p ack -e 40 -c 0 -i 460 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.297776 -s 10 -d 7 -p ack -e 40 -c 0 -i 464 -a 0 -x {10.0 9.0 227 ------- null} + -t 0.297776 -s 7 -d 0 -p ack -e 40 -c 0 -i 464 -a 0 -x {10.0 9.0 227 ------- null} h -t 0.297776 -s 7 -d 8 -p ack -e 40 -c 0 -i 464 -a 0 -x {10.0 9.0 227 ------- null} r -t 0.297888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {9.0 10.0 236 ------- null} + -t 0.297888 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {9.0 10.0 236 ------- null} h -t 0.297888 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {9.0 10.0 236 ------- null} r -t 0.29792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 449 -a 0 -x {9.0 10.0 229 ------- null} + -t 0.29792 -s 10 -d 7 -p ack -e 40 -c 0 -i 468 -a 0 -x {10.0 9.0 229 ------- null} - -t 0.29792 -s 10 -d 7 -p ack -e 40 -c 0 -i 468 -a 0 -x {10.0 9.0 229 ------- null} h -t 0.29792 -s 10 -d 7 -p ack -e 40 -c 0 -i 468 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.298528 -s 0 -d 9 -p ack -e 40 -c 0 -i 458 -a 0 -x {10.0 9.0 224 ------- null} + -t 0.298528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {9.0 10.0 239 ------- null} - -t 0.298528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {9.0 10.0 239 ------- null} h -t 0.298528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.298592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 455 -a 0 -x {9.0 10.0 232 ------- null} - -t 0.298592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 455 -a 0 -x {9.0 10.0 232 ------- null} h -t 0.298592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 455 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.2988 -s 0 -d 9 -p ack -e 40 -c 0 -i 462 -a 0 -x {10.0 9.0 226 ------- null} - -t 0.2988 -s 0 -d 9 -p ack -e 40 -c 0 -i 462 -a 0 -x {10.0 9.0 226 ------- null} h -t 0.2988 -s 0 -d 9 -p ack -e 40 -c 0 -i 462 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.298864 -s 10 -d 7 -p ack -e 40 -c 0 -i 466 -a 0 -x {10.0 9.0 228 ------- null} + -t 0.298864 -s 7 -d 0 -p ack -e 40 -c 0 -i 466 -a 0 -x {10.0 9.0 228 ------- null} h -t 0.298864 -s 7 -d 8 -p ack -e 40 -c 0 -i 466 -a 0 -x {10.0 9.0 228 ------- null} r -t 0.298976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {9.0 10.0 237 ------- null} + -t 0.298976 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {9.0 10.0 237 ------- null} h -t 0.298976 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {9.0 10.0 237 ------- null} r -t 0.299008 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 451 -a 0 -x {9.0 10.0 230 ------- null} + -t 0.299008 -s 10 -d 7 -p ack -e 40 -c 0 -i 470 -a 0 -x {10.0 9.0 230 ------- null} - -t 0.299008 -s 10 -d 7 -p ack -e 40 -c 0 -i 470 -a 0 -x {10.0 9.0 230 ------- null} h -t 0.299008 -s 10 -d 7 -p ack -e 40 -c 0 -i 470 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.29968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 457 -a 0 -x {9.0 10.0 233 ------- null} - -t 0.29968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 457 -a 0 -x {9.0 10.0 233 ------- null} h -t 0.29968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 457 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.299712 -s 0 -d 9 -p ack -e 40 -c 0 -i 460 -a 0 -x {10.0 9.0 225 ------- null} + -t 0.299712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {9.0 10.0 240 ------- null} - -t 0.299712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {9.0 10.0 240 ------- null} h -t 0.299712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.299808 -s 0 -d 9 -p ack -e 40 -c 0 -i 464 -a 0 -x {10.0 9.0 227 ------- null} - -t 0.299808 -s 0 -d 9 -p ack -e 40 -c 0 -i 464 -a 0 -x {10.0 9.0 227 ------- null} h -t 0.299808 -s 0 -d 9 -p ack -e 40 -c 0 -i 464 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.299952 -s 10 -d 7 -p ack -e 40 -c 0 -i 468 -a 0 -x {10.0 9.0 229 ------- null} + -t 0.299952 -s 7 -d 0 -p ack -e 40 -c 0 -i 468 -a 0 -x {10.0 9.0 229 ------- null} h -t 0.299952 -s 7 -d 8 -p ack -e 40 -c 0 -i 468 -a 0 -x {10.0 9.0 229 ------- null} r -t 0.300064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {9.0 10.0 238 ------- null} + -t 0.300064 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {9.0 10.0 238 ------- null} h -t 0.300064 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {9.0 10.0 238 ------- null} r -t 0.300304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 453 -a 0 -x {9.0 10.0 231 ------- null} + -t 0.300304 -s 10 -d 7 -p ack -e 40 -c 0 -i 472 -a 0 -x {10.0 9.0 231 ------- null} - -t 0.300304 -s 10 -d 7 -p ack -e 40 -c 0 -i 472 -a 0 -x {10.0 9.0 231 ------- null} h -t 0.300304 -s 10 -d 7 -p ack -e 40 -c 0 -i 472 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.300768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 459 -a 0 -x {9.0 10.0 234 ------- null} - -t 0.300768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 459 -a 0 -x {9.0 10.0 234 ------- null} h -t 0.300768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 459 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.300832 -s 0 -d 9 -p ack -e 40 -c 0 -i 462 -a 0 -x {10.0 9.0 226 ------- null} + -t 0.300832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {9.0 10.0 241 ------- null} - -t 0.300832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {9.0 10.0 241 ------- null} h -t 0.300832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.300976 -s 0 -d 9 -p ack -e 40 -c 0 -i 466 -a 0 -x {10.0 9.0 228 ------- null} - -t 0.300976 -s 0 -d 9 -p ack -e 40 -c 0 -i 466 -a 0 -x {10.0 9.0 228 ------- null} h -t 0.300976 -s 0 -d 9 -p ack -e 40 -c 0 -i 466 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.30104 -s 10 -d 7 -p ack -e 40 -c 0 -i 470 -a 0 -x {10.0 9.0 230 ------- null} + -t 0.30104 -s 7 -d 0 -p ack -e 40 -c 0 -i 470 -a 0 -x {10.0 9.0 230 ------- null} h -t 0.30104 -s 7 -d 8 -p ack -e 40 -c 0 -i 470 -a 0 -x {10.0 9.0 230 ------- null} r -t 0.301328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {9.0 10.0 239 ------- null} + -t 0.301328 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {9.0 10.0 239 ------- null} h -t 0.301328 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {9.0 10.0 239 ------- null} r -t 0.301392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 455 -a 0 -x {9.0 10.0 232 ------- null} + -t 0.301392 -s 10 -d 7 -p ack -e 40 -c 0 -i 474 -a 0 -x {10.0 9.0 232 ------- null} - -t 0.301392 -s 10 -d 7 -p ack -e 40 -c 0 -i 474 -a 0 -x {10.0 9.0 232 ------- null} h -t 0.301392 -s 10 -d 7 -p ack -e 40 -c 0 -i 474 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.30184 -s 0 -d 9 -p ack -e 40 -c 0 -i 464 -a 0 -x {10.0 9.0 227 ------- null} + -t 0.30184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {9.0 10.0 242 ------- null} - -t 0.30184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {9.0 10.0 242 ------- null} h -t 0.30184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.301856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 461 -a 0 -x {9.0 10.0 235 ------- null} - -t 0.301856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 461 -a 0 -x {9.0 10.0 235 ------- null} h -t 0.301856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 461 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.302032 -s 0 -d 9 -p ack -e 40 -c 0 -i 468 -a 0 -x {10.0 9.0 229 ------- null} - -t 0.302032 -s 0 -d 9 -p ack -e 40 -c 0 -i 468 -a 0 -x {10.0 9.0 229 ------- null} h -t 0.302032 -s 0 -d 9 -p ack -e 40 -c 0 -i 468 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.302336 -s 10 -d 7 -p ack -e 40 -c 0 -i 472 -a 0 -x {10.0 9.0 231 ------- null} + -t 0.302336 -s 7 -d 0 -p ack -e 40 -c 0 -i 472 -a 0 -x {10.0 9.0 231 ------- null} h -t 0.302336 -s 7 -d 8 -p ack -e 40 -c 0 -i 472 -a 0 -x {10.0 9.0 231 ------- null} r -t 0.30248 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 457 -a 0 -x {9.0 10.0 233 ------- null} + -t 0.30248 -s 10 -d 7 -p ack -e 40 -c 0 -i 476 -a 0 -x {10.0 9.0 233 ------- null} - -t 0.30248 -s 10 -d 7 -p ack -e 40 -c 0 -i 476 -a 0 -x {10.0 9.0 233 ------- null} h -t 0.30248 -s 10 -d 7 -p ack -e 40 -c 0 -i 476 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.302512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {9.0 10.0 240 ------- null} + -t 0.302512 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {9.0 10.0 240 ------- null} h -t 0.302512 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {9.0 10.0 240 ------- null} + -t 0.302944 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {9.0 10.0 236 ------- null} - -t 0.302944 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {9.0 10.0 236 ------- null} h -t 0.302944 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.303008 -s 0 -d 9 -p ack -e 40 -c 0 -i 466 -a 0 -x {10.0 9.0 228 ------- null} + -t 0.303008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {9.0 10.0 243 ------- null} - -t 0.303008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {9.0 10.0 243 ------- null} h -t 0.303008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.303104 -s 0 -d 9 -p ack -e 40 -c 0 -i 470 -a 0 -x {10.0 9.0 230 ------- null} - -t 0.303104 -s 0 -d 9 -p ack -e 40 -c 0 -i 470 -a 0 -x {10.0 9.0 230 ------- null} h -t 0.303104 -s 0 -d 9 -p ack -e 40 -c 0 -i 470 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.303424 -s 10 -d 7 -p ack -e 40 -c 0 -i 474 -a 0 -x {10.0 9.0 232 ------- null} + -t 0.303424 -s 7 -d 0 -p ack -e 40 -c 0 -i 474 -a 0 -x {10.0 9.0 232 ------- null} h -t 0.303424 -s 7 -d 8 -p ack -e 40 -c 0 -i 474 -a 0 -x {10.0 9.0 232 ------- null} r -t 0.303568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 459 -a 0 -x {9.0 10.0 234 ------- null} + -t 0.303568 -s 10 -d 7 -p ack -e 40 -c 0 -i 478 -a 0 -x {10.0 9.0 234 ------- null} - -t 0.303568 -s 10 -d 7 -p ack -e 40 -c 0 -i 478 -a 0 -x {10.0 9.0 234 ------- null} h -t 0.303568 -s 10 -d 7 -p ack -e 40 -c 0 -i 478 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.303632 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {9.0 10.0 241 ------- null} + -t 0.303632 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {9.0 10.0 241 ------- null} h -t 0.303632 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {9.0 10.0 241 ------- null} + -t 0.304032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {9.0 10.0 237 ------- null} - -t 0.304032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {9.0 10.0 237 ------- null} h -t 0.304032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.304064 -s 0 -d 9 -p ack -e 40 -c 0 -i 468 -a 0 -x {10.0 9.0 229 ------- null} + -t 0.304064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {9.0 10.0 244 ------- null} - -t 0.304064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {9.0 10.0 244 ------- null} h -t 0.304064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.30416 -s 0 -d 9 -p ack -e 40 -c 0 -i 472 -a 0 -x {10.0 9.0 231 ------- null} - -t 0.30416 -s 0 -d 9 -p ack -e 40 -c 0 -i 472 -a 0 -x {10.0 9.0 231 ------- null} h -t 0.30416 -s 0 -d 9 -p ack -e 40 -c 0 -i 472 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.304512 -s 10 -d 7 -p ack -e 40 -c 0 -i 476 -a 0 -x {10.0 9.0 233 ------- null} + -t 0.304512 -s 7 -d 0 -p ack -e 40 -c 0 -i 476 -a 0 -x {10.0 9.0 233 ------- null} h -t 0.304512 -s 7 -d 8 -p ack -e 40 -c 0 -i 476 -a 0 -x {10.0 9.0 233 ------- null} r -t 0.30464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {9.0 10.0 242 ------- null} + -t 0.30464 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {9.0 10.0 242 ------- null} h -t 0.30464 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {9.0 10.0 242 ------- null} r -t 0.304656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 461 -a 0 -x {9.0 10.0 235 ------- null} + -t 0.304656 -s 10 -d 7 -p ack -e 40 -c 0 -i 480 -a 0 -x {10.0 9.0 235 ------- null} - -t 0.304656 -s 10 -d 7 -p ack -e 40 -c 0 -i 480 -a 0 -x {10.0 9.0 235 ------- null} h -t 0.304656 -s 10 -d 7 -p ack -e 40 -c 0 -i 480 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.30512 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {9.0 10.0 238 ------- null} - -t 0.30512 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {9.0 10.0 238 ------- null} h -t 0.30512 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.305136 -s 0 -d 9 -p ack -e 40 -c 0 -i 470 -a 0 -x {10.0 9.0 230 ------- null} + -t 0.305136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {9.0 10.0 245 ------- null} - -t 0.305136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {9.0 10.0 245 ------- null} h -t 0.305136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.3052 -s 0 -d 9 -p ack -e 40 -c 0 -i 474 -a 0 -x {10.0 9.0 232 ------- null} - -t 0.3052 -s 0 -d 9 -p ack -e 40 -c 0 -i 474 -a 0 -x {10.0 9.0 232 ------- null} h -t 0.3052 -s 0 -d 9 -p ack -e 40 -c 0 -i 474 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.3056 -s 10 -d 7 -p ack -e 40 -c 0 -i 478 -a 0 -x {10.0 9.0 234 ------- null} + -t 0.3056 -s 7 -d 0 -p ack -e 40 -c 0 -i 478 -a 0 -x {10.0 9.0 234 ------- null} h -t 0.3056 -s 7 -d 8 -p ack -e 40 -c 0 -i 478 -a 0 -x {10.0 9.0 234 ------- null} r -t 0.305744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 463 -a 0 -x {9.0 10.0 236 ------- null} + -t 0.305744 -s 10 -d 7 -p ack -e 40 -c 0 -i 482 -a 0 -x {10.0 9.0 236 ------- null} - -t 0.305744 -s 10 -d 7 -p ack -e 40 -c 0 -i 482 -a 0 -x {10.0 9.0 236 ------- null} h -t 0.305744 -s 10 -d 7 -p ack -e 40 -c 0 -i 482 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.305808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {9.0 10.0 243 ------- null} + -t 0.305808 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {9.0 10.0 243 ------- null} h -t 0.305808 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {9.0 10.0 243 ------- null} r -t 0.306192 -s 0 -d 9 -p ack -e 40 -c 0 -i 472 -a 0 -x {10.0 9.0 231 ------- null} + -t 0.306192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 483 -a 0 -x {9.0 10.0 246 ------- null} - -t 0.306192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 483 -a 0 -x {9.0 10.0 246 ------- null} h -t 0.306192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 483 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.306208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {9.0 10.0 239 ------- null} - -t 0.306208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {9.0 10.0 239 ------- null} h -t 0.306208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.306416 -s 0 -d 9 -p ack -e 40 -c 0 -i 476 -a 0 -x {10.0 9.0 233 ------- null} - -t 0.306416 -s 0 -d 9 -p ack -e 40 -c 0 -i 476 -a 0 -x {10.0 9.0 233 ------- null} h -t 0.306416 -s 0 -d 9 -p ack -e 40 -c 0 -i 476 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.306688 -s 10 -d 7 -p ack -e 40 -c 0 -i 480 -a 0 -x {10.0 9.0 235 ------- null} + -t 0.306688 -s 7 -d 0 -p ack -e 40 -c 0 -i 480 -a 0 -x {10.0 9.0 235 ------- null} h -t 0.306688 -s 7 -d 8 -p ack -e 40 -c 0 -i 480 -a 0 -x {10.0 9.0 235 ------- null} r -t 0.306832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 465 -a 0 -x {9.0 10.0 237 ------- null} + -t 0.306832 -s 10 -d 7 -p ack -e 40 -c 0 -i 484 -a 0 -x {10.0 9.0 237 ------- null} - -t 0.306832 -s 10 -d 7 -p ack -e 40 -c 0 -i 484 -a 0 -x {10.0 9.0 237 ------- null} h -t 0.306832 -s 10 -d 7 -p ack -e 40 -c 0 -i 484 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.306864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {9.0 10.0 244 ------- null} + -t 0.306864 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {9.0 10.0 244 ------- null} h -t 0.306864 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {9.0 10.0 244 ------- null} r -t 0.307232 -s 0 -d 9 -p ack -e 40 -c 0 -i 474 -a 0 -x {10.0 9.0 232 ------- null} + -t 0.307232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 485 -a 0 -x {9.0 10.0 247 ------- null} - -t 0.307232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 485 -a 0 -x {9.0 10.0 247 ------- null} h -t 0.307232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 485 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.307296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {9.0 10.0 240 ------- null} - -t 0.307296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {9.0 10.0 240 ------- null} h -t 0.307296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.30744 -s 0 -d 9 -p ack -e 40 -c 0 -i 478 -a 0 -x {10.0 9.0 234 ------- null} - -t 0.30744 -s 0 -d 9 -p ack -e 40 -c 0 -i 478 -a 0 -x {10.0 9.0 234 ------- null} h -t 0.30744 -s 0 -d 9 -p ack -e 40 -c 0 -i 478 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.307776 -s 10 -d 7 -p ack -e 40 -c 0 -i 482 -a 0 -x {10.0 9.0 236 ------- null} + -t 0.307776 -s 7 -d 0 -p ack -e 40 -c 0 -i 482 -a 0 -x {10.0 9.0 236 ------- null} h -t 0.307776 -s 7 -d 8 -p ack -e 40 -c 0 -i 482 -a 0 -x {10.0 9.0 236 ------- null} r -t 0.30792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 467 -a 0 -x {9.0 10.0 238 ------- null} + -t 0.30792 -s 10 -d 7 -p ack -e 40 -c 0 -i 486 -a 0 -x {10.0 9.0 238 ------- null} - -t 0.30792 -s 10 -d 7 -p ack -e 40 -c 0 -i 486 -a 0 -x {10.0 9.0 238 ------- null} h -t 0.30792 -s 10 -d 7 -p ack -e 40 -c 0 -i 486 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.307936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {9.0 10.0 245 ------- null} + -t 0.307936 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {9.0 10.0 245 ------- null} h -t 0.307936 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {9.0 10.0 245 ------- null} + -t 0.308384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {9.0 10.0 241 ------- null} - -t 0.308384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {9.0 10.0 241 ------- null} h -t 0.308384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.308448 -s 0 -d 9 -p ack -e 40 -c 0 -i 476 -a 0 -x {10.0 9.0 233 ------- null} + -t 0.308448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 487 -a 0 -x {9.0 10.0 248 ------- null} - -t 0.308448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 487 -a 0 -x {9.0 10.0 248 ------- null} h -t 0.308448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 487 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.308528 -s 0 -d 9 -p ack -e 40 -c 0 -i 480 -a 0 -x {10.0 9.0 235 ------- null} - -t 0.308528 -s 0 -d 9 -p ack -e 40 -c 0 -i 480 -a 0 -x {10.0 9.0 235 ------- null} h -t 0.308528 -s 0 -d 9 -p ack -e 40 -c 0 -i 480 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.308864 -s 10 -d 7 -p ack -e 40 -c 0 -i 484 -a 0 -x {10.0 9.0 237 ------- null} + -t 0.308864 -s 7 -d 0 -p ack -e 40 -c 0 -i 484 -a 0 -x {10.0 9.0 237 ------- null} h -t 0.308864 -s 7 -d 8 -p ack -e 40 -c 0 -i 484 -a 0 -x {10.0 9.0 237 ------- null} r -t 0.308992 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 483 -a 0 -x {9.0 10.0 246 ------- null} + -t 0.308992 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 483 -a 0 -x {9.0 10.0 246 ------- null} h -t 0.308992 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 483 -a 0 -x {9.0 10.0 246 ------- null} r -t 0.309008 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 469 -a 0 -x {9.0 10.0 239 ------- null} + -t 0.309008 -s 10 -d 7 -p ack -e 40 -c 0 -i 488 -a 0 -x {10.0 9.0 239 ------- null} - -t 0.309008 -s 10 -d 7 -p ack -e 40 -c 0 -i 488 -a 0 -x {10.0 9.0 239 ------- null} h -t 0.309008 -s 10 -d 7 -p ack -e 40 -c 0 -i 488 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.309472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {9.0 10.0 242 ------- null} - -t 0.309472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {9.0 10.0 242 ------- null} h -t 0.309472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.309472 -s 0 -d 9 -p ack -e 40 -c 0 -i 478 -a 0 -x {10.0 9.0 234 ------- null} + -t 0.309472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 489 -a 0 -x {9.0 10.0 249 ------- null} - -t 0.309472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 489 -a 0 -x {9.0 10.0 249 ------- null} h -t 0.309472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 489 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.309664 -s 0 -d 9 -p ack -e 40 -c 0 -i 482 -a 0 -x {10.0 9.0 236 ------- null} - -t 0.309664 -s 0 -d 9 -p ack -e 40 -c 0 -i 482 -a 0 -x {10.0 9.0 236 ------- null} h -t 0.309664 -s 0 -d 9 -p ack -e 40 -c 0 -i 482 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.309952 -s 10 -d 7 -p ack -e 40 -c 0 -i 486 -a 0 -x {10.0 9.0 238 ------- null} + -t 0.309952 -s 7 -d 0 -p ack -e 40 -c 0 -i 486 -a 0 -x {10.0 9.0 238 ------- null} h -t 0.309952 -s 7 -d 8 -p ack -e 40 -c 0 -i 486 -a 0 -x {10.0 9.0 238 ------- null} r -t 0.310032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 485 -a 0 -x {9.0 10.0 247 ------- null} + -t 0.310032 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 485 -a 0 -x {9.0 10.0 247 ------- null} h -t 0.310032 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 485 -a 0 -x {9.0 10.0 247 ------- null} r -t 0.310096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 471 -a 0 -x {9.0 10.0 240 ------- null} + -t 0.310096 -s 10 -d 7 -p ack -e 40 -c 0 -i 490 -a 0 -x {10.0 9.0 240 ------- null} - -t 0.310096 -s 10 -d 7 -p ack -e 40 -c 0 -i 490 -a 0 -x {10.0 9.0 240 ------- null} h -t 0.310096 -s 10 -d 7 -p ack -e 40 -c 0 -i 490 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.31056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {9.0 10.0 243 ------- null} - -t 0.31056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {9.0 10.0 243 ------- null} h -t 0.31056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.31056 -s 0 -d 9 -p ack -e 40 -c 0 -i 480 -a 0 -x {10.0 9.0 235 ------- null} + -t 0.31056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 491 -a 0 -x {9.0 10.0 250 ------- null} - -t 0.31056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 491 -a 0 -x {9.0 10.0 250 ------- null} h -t 0.31056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 491 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.310624 -s 0 -d 9 -p ack -e 40 -c 0 -i 484 -a 0 -x {10.0 9.0 237 ------- null} - -t 0.310624 -s 0 -d 9 -p ack -e 40 -c 0 -i 484 -a 0 -x {10.0 9.0 237 ------- null} h -t 0.310624 -s 0 -d 9 -p ack -e 40 -c 0 -i 484 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.31104 -s 10 -d 7 -p ack -e 40 -c 0 -i 488 -a 0 -x {10.0 9.0 239 ------- null} + -t 0.31104 -s 7 -d 0 -p ack -e 40 -c 0 -i 488 -a 0 -x {10.0 9.0 239 ------- null} h -t 0.31104 -s 7 -d 8 -p ack -e 40 -c 0 -i 488 -a 0 -x {10.0 9.0 239 ------- null} r -t 0.311184 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 473 -a 0 -x {9.0 10.0 241 ------- null} + -t 0.311184 -s 10 -d 7 -p ack -e 40 -c 0 -i 492 -a 0 -x {10.0 9.0 241 ------- null} - -t 0.311184 -s 10 -d 7 -p ack -e 40 -c 0 -i 492 -a 0 -x {10.0 9.0 241 ------- null} h -t 0.311184 -s 10 -d 7 -p ack -e 40 -c 0 -i 492 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.311248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 487 -a 0 -x {9.0 10.0 248 ------- null} + -t 0.311248 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 487 -a 0 -x {9.0 10.0 248 ------- null} h -t 0.311248 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 487 -a 0 -x {9.0 10.0 248 ------- null} + -t 0.311648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {9.0 10.0 244 ------- null} - -t 0.311648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {9.0 10.0 244 ------- null} h -t 0.311648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.311696 -s 0 -d 9 -p ack -e 40 -c 0 -i 482 -a 0 -x {10.0 9.0 236 ------- null} + -t 0.311696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 493 -a 0 -x {9.0 10.0 251 ------- null} - -t 0.311696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 493 -a 0 -x {9.0 10.0 251 ------- null} h -t 0.311696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 493 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.311904 -s 0 -d 9 -p ack -e 40 -c 0 -i 486 -a 0 -x {10.0 9.0 238 ------- null} - -t 0.311904 -s 0 -d 9 -p ack -e 40 -c 0 -i 486 -a 0 -x {10.0 9.0 238 ------- null} h -t 0.311904 -s 0 -d 9 -p ack -e 40 -c 0 -i 486 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.312128 -s 10 -d 7 -p ack -e 40 -c 0 -i 490 -a 0 -x {10.0 9.0 240 ------- null} + -t 0.312128 -s 7 -d 0 -p ack -e 40 -c 0 -i 490 -a 0 -x {10.0 9.0 240 ------- null} h -t 0.312128 -s 7 -d 8 -p ack -e 40 -c 0 -i 490 -a 0 -x {10.0 9.0 240 ------- null} r -t 0.312272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 475 -a 0 -x {9.0 10.0 242 ------- null} + -t 0.312272 -s 10 -d 7 -p ack -e 40 -c 0 -i 494 -a 0 -x {10.0 9.0 242 ------- null} - -t 0.312272 -s 10 -d 7 -p ack -e 40 -c 0 -i 494 -a 0 -x {10.0 9.0 242 ------- null} h -t 0.312272 -s 10 -d 7 -p ack -e 40 -c 0 -i 494 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.312272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 489 -a 0 -x {9.0 10.0 249 ------- null} + -t 0.312272 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 489 -a 0 -x {9.0 10.0 249 ------- null} h -t 0.312272 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 489 -a 0 -x {9.0 10.0 249 ------- null} r -t 0.312656 -s 0 -d 9 -p ack -e 40 -c 0 -i 484 -a 0 -x {10.0 9.0 237 ------- null} + -t 0.312656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 495 -a 0 -x {9.0 10.0 252 ------- null} - -t 0.312656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 495 -a 0 -x {9.0 10.0 252 ------- null} h -t 0.312656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 495 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.312816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {9.0 10.0 245 ------- null} - -t 0.312816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {9.0 10.0 245 ------- null} h -t 0.312816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.313008 -s 0 -d 9 -p ack -e 40 -c 0 -i 488 -a 0 -x {10.0 9.0 239 ------- null} - -t 0.313008 -s 0 -d 9 -p ack -e 40 -c 0 -i 488 -a 0 -x {10.0 9.0 239 ------- null} h -t 0.313008 -s 0 -d 9 -p ack -e 40 -c 0 -i 488 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.313216 -s 10 -d 7 -p ack -e 40 -c 0 -i 492 -a 0 -x {10.0 9.0 241 ------- null} + -t 0.313216 -s 7 -d 0 -p ack -e 40 -c 0 -i 492 -a 0 -x {10.0 9.0 241 ------- null} h -t 0.313216 -s 7 -d 8 -p ack -e 40 -c 0 -i 492 -a 0 -x {10.0 9.0 241 ------- null} r -t 0.31336 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 477 -a 0 -x {9.0 10.0 243 ------- null} + -t 0.31336 -s 10 -d 7 -p ack -e 40 -c 0 -i 496 -a 0 -x {10.0 9.0 243 ------- null} - -t 0.31336 -s 10 -d 7 -p ack -e 40 -c 0 -i 496 -a 0 -x {10.0 9.0 243 ------- null} h -t 0.31336 -s 10 -d 7 -p ack -e 40 -c 0 -i 496 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.31336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 491 -a 0 -x {9.0 10.0 250 ------- null} + -t 0.31336 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 491 -a 0 -x {9.0 10.0 250 ------- null} h -t 0.31336 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 491 -a 0 -x {9.0 10.0 250 ------- null} + -t 0.313904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 483 -a 0 -x {9.0 10.0 246 ------- null} - -t 0.313904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 483 -a 0 -x {9.0 10.0 246 ------- null} h -t 0.313904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 483 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.313936 -s 0 -d 9 -p ack -e 40 -c 0 -i 486 -a 0 -x {10.0 9.0 238 ------- null} + -t 0.313936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 497 -a 0 -x {9.0 10.0 253 ------- null} - -t 0.313936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 497 -a 0 -x {9.0 10.0 253 ------- null} h -t 0.313936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 497 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.314096 -s 0 -d 9 -p ack -e 40 -c 0 -i 490 -a 0 -x {10.0 9.0 240 ------- null} - -t 0.314096 -s 0 -d 9 -p ack -e 40 -c 0 -i 490 -a 0 -x {10.0 9.0 240 ------- null} h -t 0.314096 -s 0 -d 9 -p ack -e 40 -c 0 -i 490 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.314304 -s 10 -d 7 -p ack -e 40 -c 0 -i 494 -a 0 -x {10.0 9.0 242 ------- null} + -t 0.314304 -s 7 -d 0 -p ack -e 40 -c 0 -i 494 -a 0 -x {10.0 9.0 242 ------- null} h -t 0.314304 -s 7 -d 8 -p ack -e 40 -c 0 -i 494 -a 0 -x {10.0 9.0 242 ------- null} r -t 0.314448 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 479 -a 0 -x {9.0 10.0 244 ------- null} + -t 0.314448 -s 10 -d 7 -p ack -e 40 -c 0 -i 498 -a 0 -x {10.0 9.0 244 ------- null} - -t 0.314448 -s 10 -d 7 -p ack -e 40 -c 0 -i 498 -a 0 -x {10.0 9.0 244 ------- null} h -t 0.314448 -s 10 -d 7 -p ack -e 40 -c 0 -i 498 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.314496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 493 -a 0 -x {9.0 10.0 251 ------- null} + -t 0.314496 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 493 -a 0 -x {9.0 10.0 251 ------- null} h -t 0.314496 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 493 -a 0 -x {9.0 10.0 251 ------- null} + -t 0.314992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 485 -a 0 -x {9.0 10.0 247 ------- null} - -t 0.314992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 485 -a 0 -x {9.0 10.0 247 ------- null} h -t 0.314992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 485 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.31504 -s 0 -d 9 -p ack -e 40 -c 0 -i 488 -a 0 -x {10.0 9.0 239 ------- null} + -t 0.31504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 499 -a 0 -x {9.0 10.0 254 ------- null} - -t 0.31504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 499 -a 0 -x {9.0 10.0 254 ------- null} h -t 0.31504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 499 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.31528 -s 0 -d 9 -p ack -e 40 -c 0 -i 492 -a 0 -x {10.0 9.0 241 ------- null} - -t 0.31528 -s 0 -d 9 -p ack -e 40 -c 0 -i 492 -a 0 -x {10.0 9.0 241 ------- null} h -t 0.31528 -s 0 -d 9 -p ack -e 40 -c 0 -i 492 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.315392 -s 10 -d 7 -p ack -e 40 -c 0 -i 496 -a 0 -x {10.0 9.0 243 ------- null} + -t 0.315392 -s 7 -d 0 -p ack -e 40 -c 0 -i 496 -a 0 -x {10.0 9.0 243 ------- null} h -t 0.315392 -s 7 -d 8 -p ack -e 40 -c 0 -i 496 -a 0 -x {10.0 9.0 243 ------- null} r -t 0.315456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 495 -a 0 -x {9.0 10.0 252 ------- null} + -t 0.315456 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 495 -a 0 -x {9.0 10.0 252 ------- null} h -t 0.315456 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 495 -a 0 -x {9.0 10.0 252 ------- null} r -t 0.315616 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 481 -a 0 -x {9.0 10.0 245 ------- null} + -t 0.315616 -s 10 -d 7 -p ack -e 40 -c 0 -i 500 -a 0 -x {10.0 9.0 245 ------- null} - -t 0.315616 -s 10 -d 7 -p ack -e 40 -c 0 -i 500 -a 0 -x {10.0 9.0 245 ------- null} h -t 0.315616 -s 10 -d 7 -p ack -e 40 -c 0 -i 500 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.316128 -s 0 -d 9 -p ack -e 40 -c 0 -i 490 -a 0 -x {10.0 9.0 240 ------- null} + -t 0.316128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 501 -a 0 -x {9.0 10.0 255 ------- null} - -t 0.316128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 501 -a 0 -x {9.0 10.0 255 ------- null} h -t 0.316128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 501 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.316336 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 487 -a 0 -x {9.0 10.0 248 ------- null} - -t 0.316336 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 487 -a 0 -x {9.0 10.0 248 ------- null} h -t 0.316336 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 487 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.31648 -s 10 -d 7 -p ack -e 40 -c 0 -i 498 -a 0 -x {10.0 9.0 244 ------- null} + -t 0.31648 -s 7 -d 0 -p ack -e 40 -c 0 -i 498 -a 0 -x {10.0 9.0 244 ------- null} h -t 0.31648 -s 7 -d 8 -p ack -e 40 -c 0 -i 498 -a 0 -x {10.0 9.0 244 ------- null} + -t 0.316528 -s 0 -d 9 -p ack -e 40 -c 0 -i 494 -a 0 -x {10.0 9.0 242 ------- null} - -t 0.316528 -s 0 -d 9 -p ack -e 40 -c 0 -i 494 -a 0 -x {10.0 9.0 242 ------- null} h -t 0.316528 -s 0 -d 9 -p ack -e 40 -c 0 -i 494 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.316704 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 483 -a 0 -x {9.0 10.0 246 ------- null} + -t 0.316704 -s 10 -d 7 -p ack -e 40 -c 0 -i 502 -a 0 -x {10.0 9.0 246 ------- null} - -t 0.316704 -s 10 -d 7 -p ack -e 40 -c 0 -i 502 -a 0 -x {10.0 9.0 246 ------- null} h -t 0.316704 -s 10 -d 7 -p ack -e 40 -c 0 -i 502 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.316736 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 497 -a 0 -x {9.0 10.0 253 ------- null} + -t 0.316736 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 497 -a 0 -x {9.0 10.0 253 ------- null} h -t 0.316736 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 497 -a 0 -x {9.0 10.0 253 ------- null} r -t 0.317312 -s 0 -d 9 -p ack -e 40 -c 0 -i 492 -a 0 -x {10.0 9.0 241 ------- null} + -t 0.317312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {9.0 10.0 256 ------- null} - -t 0.317312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {9.0 10.0 256 ------- null} h -t 0.317312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.317424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 489 -a 0 -x {9.0 10.0 249 ------- null} - -t 0.317424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 489 -a 0 -x {9.0 10.0 249 ------- null} h -t 0.317424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 489 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.317552 -s 0 -d 9 -p ack -e 40 -c 0 -i 496 -a 0 -x {10.0 9.0 243 ------- null} - -t 0.317552 -s 0 -d 9 -p ack -e 40 -c 0 -i 496 -a 0 -x {10.0 9.0 243 ------- null} h -t 0.317552 -s 0 -d 9 -p ack -e 40 -c 0 -i 496 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.317648 -s 10 -d 7 -p ack -e 40 -c 0 -i 500 -a 0 -x {10.0 9.0 245 ------- null} + -t 0.317648 -s 7 -d 0 -p ack -e 40 -c 0 -i 500 -a 0 -x {10.0 9.0 245 ------- null} h -t 0.317648 -s 7 -d 8 -p ack -e 40 -c 0 -i 500 -a 0 -x {10.0 9.0 245 ------- null} r -t 0.317792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 485 -a 0 -x {9.0 10.0 247 ------- null} + -t 0.317792 -s 10 -d 7 -p ack -e 40 -c 0 -i 504 -a 0 -x {10.0 9.0 247 ------- null} - -t 0.317792 -s 10 -d 7 -p ack -e 40 -c 0 -i 504 -a 0 -x {10.0 9.0 247 ------- null} h -t 0.317792 -s 10 -d 7 -p ack -e 40 -c 0 -i 504 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.31784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 499 -a 0 -x {9.0 10.0 254 ------- null} + -t 0.31784 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 499 -a 0 -x {9.0 10.0 254 ------- null} h -t 0.31784 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 499 -a 0 -x {9.0 10.0 254 ------- null} + -t 0.318512 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 491 -a 0 -x {9.0 10.0 250 ------- null} - -t 0.318512 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 491 -a 0 -x {9.0 10.0 250 ------- null} h -t 0.318512 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 491 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.31856 -s 0 -d 9 -p ack -e 40 -c 0 -i 494 -a 0 -x {10.0 9.0 242 ------- null} + -t 0.31856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {9.0 10.0 257 ------- null} - -t 0.31856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {9.0 10.0 257 ------- null} h -t 0.31856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.318736 -s 0 -d 9 -p ack -e 40 -c 0 -i 498 -a 0 -x {10.0 9.0 244 ------- null} - -t 0.318736 -s 0 -d 9 -p ack -e 40 -c 0 -i 498 -a 0 -x {10.0 9.0 244 ------- null} h -t 0.318736 -s 0 -d 9 -p ack -e 40 -c 0 -i 498 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.318736 -s 10 -d 7 -p ack -e 40 -c 0 -i 502 -a 0 -x {10.0 9.0 246 ------- null} + -t 0.318736 -s 7 -d 0 -p ack -e 40 -c 0 -i 502 -a 0 -x {10.0 9.0 246 ------- null} h -t 0.318736 -s 7 -d 8 -p ack -e 40 -c 0 -i 502 -a 0 -x {10.0 9.0 246 ------- null} r -t 0.318928 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 501 -a 0 -x {9.0 10.0 255 ------- null} + -t 0.318928 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 501 -a 0 -x {9.0 10.0 255 ------- null} h -t 0.318928 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 501 -a 0 -x {9.0 10.0 255 ------- null} r -t 0.319136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 487 -a 0 -x {9.0 10.0 248 ------- null} + -t 0.319136 -s 10 -d 7 -p ack -e 40 -c 0 -i 506 -a 0 -x {10.0 9.0 248 ------- null} - -t 0.319136 -s 10 -d 7 -p ack -e 40 -c 0 -i 506 -a 0 -x {10.0 9.0 248 ------- null} h -t 0.319136 -s 10 -d 7 -p ack -e 40 -c 0 -i 506 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.319584 -s 0 -d 9 -p ack -e 40 -c 0 -i 496 -a 0 -x {10.0 9.0 243 ------- null} + -t 0.319584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {9.0 10.0 258 ------- null} - -t 0.319584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {9.0 10.0 258 ------- null} h -t 0.319584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.3196 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 493 -a 0 -x {9.0 10.0 251 ------- null} - -t 0.3196 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 493 -a 0 -x {9.0 10.0 251 ------- null} h -t 0.3196 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 493 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.319824 -s 10 -d 7 -p ack -e 40 -c 0 -i 504 -a 0 -x {10.0 9.0 247 ------- null} + -t 0.319824 -s 7 -d 0 -p ack -e 40 -c 0 -i 504 -a 0 -x {10.0 9.0 247 ------- null} h -t 0.319824 -s 7 -d 8 -p ack -e 40 -c 0 -i 504 -a 0 -x {10.0 9.0 247 ------- null} + -t 0.319872 -s 0 -d 9 -p ack -e 40 -c 0 -i 500 -a 0 -x {10.0 9.0 245 ------- null} - -t 0.319872 -s 0 -d 9 -p ack -e 40 -c 0 -i 500 -a 0 -x {10.0 9.0 245 ------- null} h -t 0.319872 -s 0 -d 9 -p ack -e 40 -c 0 -i 500 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.320112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {9.0 10.0 256 ------- null} + -t 0.320112 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {9.0 10.0 256 ------- null} h -t 0.320112 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {9.0 10.0 256 ------- null} r -t 0.320224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 489 -a 0 -x {9.0 10.0 249 ------- null} + -t 0.320224 -s 10 -d 7 -p ack -e 40 -c 0 -i 508 -a 0 -x {10.0 9.0 249 ------- null} - -t 0.320224 -s 10 -d 7 -p ack -e 40 -c 0 -i 508 -a 0 -x {10.0 9.0 249 ------- null} h -t 0.320224 -s 10 -d 7 -p ack -e 40 -c 0 -i 508 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.320768 -s 0 -d 9 -p ack -e 40 -c 0 -i 498 -a 0 -x {10.0 9.0 244 ------- null} + -t 0.320768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {9.0 10.0 259 ------- null} - -t 0.320768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {9.0 10.0 259 ------- null} h -t 0.320768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.320832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 495 -a 0 -x {9.0 10.0 252 ------- null} - -t 0.320832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 495 -a 0 -x {9.0 10.0 252 ------- null} h -t 0.320832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 495 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.321104 -s 0 -d 9 -p ack -e 40 -c 0 -i 502 -a 0 -x {10.0 9.0 246 ------- null} - -t 0.321104 -s 0 -d 9 -p ack -e 40 -c 0 -i 502 -a 0 -x {10.0 9.0 246 ------- null} h -t 0.321104 -s 0 -d 9 -p ack -e 40 -c 0 -i 502 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.321168 -s 10 -d 7 -p ack -e 40 -c 0 -i 506 -a 0 -x {10.0 9.0 248 ------- null} + -t 0.321168 -s 7 -d 0 -p ack -e 40 -c 0 -i 506 -a 0 -x {10.0 9.0 248 ------- null} h -t 0.321168 -s 7 -d 8 -p ack -e 40 -c 0 -i 506 -a 0 -x {10.0 9.0 248 ------- null} r -t 0.321312 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 491 -a 0 -x {9.0 10.0 250 ------- null} + -t 0.321312 -s 10 -d 7 -p ack -e 40 -c 0 -i 510 -a 0 -x {10.0 9.0 250 ------- null} - -t 0.321312 -s 10 -d 7 -p ack -e 40 -c 0 -i 510 -a 0 -x {10.0 9.0 250 ------- null} h -t 0.321312 -s 10 -d 7 -p ack -e 40 -c 0 -i 510 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.32136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {9.0 10.0 257 ------- null} + -t 0.32136 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {9.0 10.0 257 ------- null} h -t 0.32136 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {9.0 10.0 257 ------- null} r -t 0.321904 -s 0 -d 9 -p ack -e 40 -c 0 -i 500 -a 0 -x {10.0 9.0 245 ------- null} + -t 0.321904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {9.0 10.0 260 ------- null} - -t 0.321904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {9.0 10.0 260 ------- null} h -t 0.321904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.322128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 497 -a 0 -x {9.0 10.0 253 ------- null} - -t 0.322128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 497 -a 0 -x {9.0 10.0 253 ------- null} h -t 0.322128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 497 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.322256 -s 10 -d 7 -p ack -e 40 -c 0 -i 508 -a 0 -x {10.0 9.0 249 ------- null} + -t 0.322256 -s 7 -d 0 -p ack -e 40 -c 0 -i 508 -a 0 -x {10.0 9.0 249 ------- null} h -t 0.322256 -s 7 -d 8 -p ack -e 40 -c 0 -i 508 -a 0 -x {10.0 9.0 249 ------- null} + -t 0.322336 -s 0 -d 9 -p ack -e 40 -c 0 -i 504 -a 0 -x {10.0 9.0 247 ------- null} - -t 0.322336 -s 0 -d 9 -p ack -e 40 -c 0 -i 504 -a 0 -x {10.0 9.0 247 ------- null} h -t 0.322336 -s 0 -d 9 -p ack -e 40 -c 0 -i 504 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.322384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {9.0 10.0 258 ------- null} + -t 0.322384 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {9.0 10.0 258 ------- null} h -t 0.322384 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {9.0 10.0 258 ------- null} r -t 0.3224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 493 -a 0 -x {9.0 10.0 251 ------- null} + -t 0.3224 -s 10 -d 7 -p ack -e 40 -c 0 -i 512 -a 0 -x {10.0 9.0 251 ------- null} - -t 0.3224 -s 10 -d 7 -p ack -e 40 -c 0 -i 512 -a 0 -x {10.0 9.0 251 ------- null} h -t 0.3224 -s 10 -d 7 -p ack -e 40 -c 0 -i 512 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.323136 -s 0 -d 9 -p ack -e 40 -c 0 -i 502 -a 0 -x {10.0 9.0 246 ------- null} + -t 0.323136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {9.0 10.0 261 ------- null} - -t 0.323136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {9.0 10.0 261 ------- null} h -t 0.323136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.323216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 499 -a 0 -x {9.0 10.0 254 ------- null} - -t 0.323216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 499 -a 0 -x {9.0 10.0 254 ------- null} h -t 0.323216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 499 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.323312 -s 0 -d 9 -p ack -e 40 -c 0 -i 506 -a 0 -x {10.0 9.0 248 ------- null} - -t 0.323312 -s 0 -d 9 -p ack -e 40 -c 0 -i 506 -a 0 -x {10.0 9.0 248 ------- null} h -t 0.323312 -s 0 -d 9 -p ack -e 40 -c 0 -i 506 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.323344 -s 10 -d 7 -p ack -e 40 -c 0 -i 510 -a 0 -x {10.0 9.0 250 ------- null} + -t 0.323344 -s 7 -d 0 -p ack -e 40 -c 0 -i 510 -a 0 -x {10.0 9.0 250 ------- null} h -t 0.323344 -s 7 -d 8 -p ack -e 40 -c 0 -i 510 -a 0 -x {10.0 9.0 250 ------- null} r -t 0.323568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {9.0 10.0 259 ------- null} + -t 0.323568 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {9.0 10.0 259 ------- null} h -t 0.323568 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {9.0 10.0 259 ------- null} r -t 0.323632 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 495 -a 0 -x {9.0 10.0 252 ------- null} + -t 0.323632 -s 10 -d 7 -p ack -e 40 -c 0 -i 514 -a 0 -x {10.0 9.0 252 ------- null} - -t 0.323632 -s 10 -d 7 -p ack -e 40 -c 0 -i 514 -a 0 -x {10.0 9.0 252 ------- null} h -t 0.323632 -s 10 -d 7 -p ack -e 40 -c 0 -i 514 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.324304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 501 -a 0 -x {9.0 10.0 255 ------- null} - -t 0.324304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 501 -a 0 -x {9.0 10.0 255 ------- null} h -t 0.324304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 501 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.324368 -s 0 -d 9 -p ack -e 40 -c 0 -i 504 -a 0 -x {10.0 9.0 247 ------- null} + -t 0.324368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {9.0 10.0 262 ------- null} - -t 0.324368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {9.0 10.0 262 ------- null} h -t 0.324368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.324416 -s 0 -d 9 -p ack -e 40 -c 0 -i 508 -a 0 -x {10.0 9.0 249 ------- null} - -t 0.324416 -s 0 -d 9 -p ack -e 40 -c 0 -i 508 -a 0 -x {10.0 9.0 249 ------- null} h -t 0.324416 -s 0 -d 9 -p ack -e 40 -c 0 -i 508 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.324432 -s 10 -d 7 -p ack -e 40 -c 0 -i 512 -a 0 -x {10.0 9.0 251 ------- null} + -t 0.324432 -s 7 -d 0 -p ack -e 40 -c 0 -i 512 -a 0 -x {10.0 9.0 251 ------- null} h -t 0.324432 -s 7 -d 8 -p ack -e 40 -c 0 -i 512 -a 0 -x {10.0 9.0 251 ------- null} r -t 0.324704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {9.0 10.0 260 ------- null} + -t 0.324704 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {9.0 10.0 260 ------- null} h -t 0.324704 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {9.0 10.0 260 ------- null} r -t 0.324928 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 497 -a 0 -x {9.0 10.0 253 ------- null} + -t 0.324928 -s 10 -d 7 -p ack -e 40 -c 0 -i 516 -a 0 -x {10.0 9.0 253 ------- null} - -t 0.324928 -s 10 -d 7 -p ack -e 40 -c 0 -i 516 -a 0 -x {10.0 9.0 253 ------- null} h -t 0.324928 -s 10 -d 7 -p ack -e 40 -c 0 -i 516 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.325344 -s 0 -d 9 -p ack -e 40 -c 0 -i 506 -a 0 -x {10.0 9.0 248 ------- null} + -t 0.325344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {9.0 10.0 263 ------- null} - -t 0.325344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {9.0 10.0 263 ------- null} h -t 0.325344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.325392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {9.0 10.0 256 ------- null} - -t 0.325392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {9.0 10.0 256 ------- null} h -t 0.325392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.325472 -s 0 -d 9 -p ack -e 40 -c 0 -i 510 -a 0 -x {10.0 9.0 250 ------- null} - -t 0.325472 -s 0 -d 9 -p ack -e 40 -c 0 -i 510 -a 0 -x {10.0 9.0 250 ------- null} h -t 0.325472 -s 0 -d 9 -p ack -e 40 -c 0 -i 510 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.325664 -s 10 -d 7 -p ack -e 40 -c 0 -i 514 -a 0 -x {10.0 9.0 252 ------- null} + -t 0.325664 -s 7 -d 0 -p ack -e 40 -c 0 -i 514 -a 0 -x {10.0 9.0 252 ------- null} h -t 0.325664 -s 7 -d 8 -p ack -e 40 -c 0 -i 514 -a 0 -x {10.0 9.0 252 ------- null} r -t 0.325936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {9.0 10.0 261 ------- null} + -t 0.325936 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {9.0 10.0 261 ------- null} h -t 0.325936 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {9.0 10.0 261 ------- null} r -t 0.326016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 499 -a 0 -x {9.0 10.0 254 ------- null} + -t 0.326016 -s 10 -d 7 -p ack -e 40 -c 0 -i 518 -a 0 -x {10.0 9.0 254 ------- null} - -t 0.326016 -s 10 -d 7 -p ack -e 40 -c 0 -i 518 -a 0 -x {10.0 9.0 254 ------- null} h -t 0.326016 -s 10 -d 7 -p ack -e 40 -c 0 -i 518 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.326448 -s 0 -d 9 -p ack -e 40 -c 0 -i 508 -a 0 -x {10.0 9.0 249 ------- null} + -t 0.326448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {9.0 10.0 264 ------- null} - -t 0.326448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {9.0 10.0 264 ------- null} h -t 0.326448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.32648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {9.0 10.0 257 ------- null} - -t 0.32648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {9.0 10.0 257 ------- null} h -t 0.32648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.326688 -s 0 -d 9 -p ack -e 40 -c 0 -i 512 -a 0 -x {10.0 9.0 251 ------- null} - -t 0.326688 -s 0 -d 9 -p ack -e 40 -c 0 -i 512 -a 0 -x {10.0 9.0 251 ------- null} h -t 0.326688 -s 0 -d 9 -p ack -e 40 -c 0 -i 512 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.32696 -s 10 -d 7 -p ack -e 40 -c 0 -i 516 -a 0 -x {10.0 9.0 253 ------- null} + -t 0.32696 -s 7 -d 0 -p ack -e 40 -c 0 -i 516 -a 0 -x {10.0 9.0 253 ------- null} h -t 0.32696 -s 7 -d 8 -p ack -e 40 -c 0 -i 516 -a 0 -x {10.0 9.0 253 ------- null} r -t 0.327104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 501 -a 0 -x {9.0 10.0 255 ------- null} + -t 0.327104 -s 10 -d 7 -p ack -e 40 -c 0 -i 520 -a 0 -x {10.0 9.0 255 ------- null} - -t 0.327104 -s 10 -d 7 -p ack -e 40 -c 0 -i 520 -a 0 -x {10.0 9.0 255 ------- null} h -t 0.327104 -s 10 -d 7 -p ack -e 40 -c 0 -i 520 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.327168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {9.0 10.0 262 ------- null} + -t 0.327168 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {9.0 10.0 262 ------- null} h -t 0.327168 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {9.0 10.0 262 ------- null} r -t 0.327504 -s 0 -d 9 -p ack -e 40 -c 0 -i 510 -a 0 -x {10.0 9.0 250 ------- null} + -t 0.327504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {9.0 10.0 265 ------- null} - -t 0.327504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {9.0 10.0 265 ------- null} h -t 0.327504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.327568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {9.0 10.0 258 ------- null} - -t 0.327568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {9.0 10.0 258 ------- null} h -t 0.327568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.327776 -s 0 -d 9 -p ack -e 40 -c 0 -i 514 -a 0 -x {10.0 9.0 252 ------- null} - -t 0.327776 -s 0 -d 9 -p ack -e 40 -c 0 -i 514 -a 0 -x {10.0 9.0 252 ------- null} h -t 0.327776 -s 0 -d 9 -p ack -e 40 -c 0 -i 514 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.328048 -s 10 -d 7 -p ack -e 40 -c 0 -i 518 -a 0 -x {10.0 9.0 254 ------- null} + -t 0.328048 -s 7 -d 0 -p ack -e 40 -c 0 -i 518 -a 0 -x {10.0 9.0 254 ------- null} h -t 0.328048 -s 7 -d 8 -p ack -e 40 -c 0 -i 518 -a 0 -x {10.0 9.0 254 ------- null} r -t 0.328144 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {9.0 10.0 263 ------- null} + -t 0.328144 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {9.0 10.0 263 ------- null} h -t 0.328144 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {9.0 10.0 263 ------- null} r -t 0.328192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 503 -a 0 -x {9.0 10.0 256 ------- null} + -t 0.328192 -s 10 -d 7 -p ack -e 40 -c 0 -i 522 -a 0 -x {10.0 9.0 256 ------- null} - -t 0.328192 -s 10 -d 7 -p ack -e 40 -c 0 -i 522 -a 0 -x {10.0 9.0 256 ------- null} h -t 0.328192 -s 10 -d 7 -p ack -e 40 -c 0 -i 522 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.328656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {9.0 10.0 259 ------- null} - -t 0.328656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {9.0 10.0 259 ------- null} h -t 0.328656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.32872 -s 0 -d 9 -p ack -e 40 -c 0 -i 512 -a 0 -x {10.0 9.0 251 ------- null} + -t 0.32872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 523 -a 0 -x {9.0 10.0 266 ------- null} - -t 0.32872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 523 -a 0 -x {9.0 10.0 266 ------- null} h -t 0.32872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 523 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.328896 -s 0 -d 9 -p ack -e 40 -c 0 -i 516 -a 0 -x {10.0 9.0 253 ------- null} - -t 0.328896 -s 0 -d 9 -p ack -e 40 -c 0 -i 516 -a 0 -x {10.0 9.0 253 ------- null} h -t 0.328896 -s 0 -d 9 -p ack -e 40 -c 0 -i 516 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.329136 -s 10 -d 7 -p ack -e 40 -c 0 -i 520 -a 0 -x {10.0 9.0 255 ------- null} + -t 0.329136 -s 7 -d 0 -p ack -e 40 -c 0 -i 520 -a 0 -x {10.0 9.0 255 ------- null} h -t 0.329136 -s 7 -d 8 -p ack -e 40 -c 0 -i 520 -a 0 -x {10.0 9.0 255 ------- null} r -t 0.329248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {9.0 10.0 264 ------- null} + -t 0.329248 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {9.0 10.0 264 ------- null} h -t 0.329248 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {9.0 10.0 264 ------- null} r -t 0.32928 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 505 -a 0 -x {9.0 10.0 257 ------- null} + -t 0.32928 -s 10 -d 7 -p ack -e 40 -c 0 -i 524 -a 0 -x {10.0 9.0 257 ------- null} - -t 0.32928 -s 10 -d 7 -p ack -e 40 -c 0 -i 524 -a 0 -x {10.0 9.0 257 ------- null} h -t 0.32928 -s 10 -d 7 -p ack -e 40 -c 0 -i 524 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.329744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {9.0 10.0 260 ------- null} - -t 0.329744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {9.0 10.0 260 ------- null} h -t 0.329744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.329808 -s 0 -d 9 -p ack -e 40 -c 0 -i 514 -a 0 -x {10.0 9.0 252 ------- null} + -t 0.329808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 525 -a 0 -x {9.0 10.0 267 ------- null} - -t 0.329808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 525 -a 0 -x {9.0 10.0 267 ------- null} h -t 0.329808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 525 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.330048 -s 0 -d 9 -p ack -e 40 -c 0 -i 518 -a 0 -x {10.0 9.0 254 ------- null} - -t 0.330048 -s 0 -d 9 -p ack -e 40 -c 0 -i 518 -a 0 -x {10.0 9.0 254 ------- null} h -t 0.330048 -s 0 -d 9 -p ack -e 40 -c 0 -i 518 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.330224 -s 10 -d 7 -p ack -e 40 -c 0 -i 522 -a 0 -x {10.0 9.0 256 ------- null} + -t 0.330224 -s 7 -d 0 -p ack -e 40 -c 0 -i 522 -a 0 -x {10.0 9.0 256 ------- null} h -t 0.330224 -s 7 -d 8 -p ack -e 40 -c 0 -i 522 -a 0 -x {10.0 9.0 256 ------- null} r -t 0.330304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {9.0 10.0 265 ------- null} + -t 0.330304 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {9.0 10.0 265 ------- null} h -t 0.330304 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {9.0 10.0 265 ------- null} r -t 0.330368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 507 -a 0 -x {9.0 10.0 258 ------- null} + -t 0.330368 -s 10 -d 7 -p ack -e 40 -c 0 -i 526 -a 0 -x {10.0 9.0 258 ------- null} - -t 0.330368 -s 10 -d 7 -p ack -e 40 -c 0 -i 526 -a 0 -x {10.0 9.0 258 ------- null} h -t 0.330368 -s 10 -d 7 -p ack -e 40 -c 0 -i 526 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.330928 -s 0 -d 9 -p ack -e 40 -c 0 -i 516 -a 0 -x {10.0 9.0 253 ------- null} + -t 0.330928 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 527 -a 0 -x {9.0 10.0 268 ------- null} - -t 0.330928 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 527 -a 0 -x {9.0 10.0 268 ------- null} h -t 0.330928 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 527 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.33112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {9.0 10.0 261 ------- null} - -t 0.33112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {9.0 10.0 261 ------- null} h -t 0.33112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.331264 -s 0 -d 9 -p ack -e 40 -c 0 -i 520 -a 0 -x {10.0 9.0 255 ------- null} - -t 0.331264 -s 0 -d 9 -p ack -e 40 -c 0 -i 520 -a 0 -x {10.0 9.0 255 ------- null} h -t 0.331264 -s 0 -d 9 -p ack -e 40 -c 0 -i 520 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.331312 -s 10 -d 7 -p ack -e 40 -c 0 -i 524 -a 0 -x {10.0 9.0 257 ------- null} + -t 0.331312 -s 7 -d 0 -p ack -e 40 -c 0 -i 524 -a 0 -x {10.0 9.0 257 ------- null} h -t 0.331312 -s 7 -d 8 -p ack -e 40 -c 0 -i 524 -a 0 -x {10.0 9.0 257 ------- null} r -t 0.331456 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 509 -a 0 -x {9.0 10.0 259 ------- null} + -t 0.331456 -s 10 -d 7 -p ack -e 40 -c 0 -i 528 -a 0 -x {10.0 9.0 259 ------- null} - -t 0.331456 -s 10 -d 7 -p ack -e 40 -c 0 -i 528 -a 0 -x {10.0 9.0 259 ------- null} h -t 0.331456 -s 10 -d 7 -p ack -e 40 -c 0 -i 528 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.33152 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 523 -a 0 -x {9.0 10.0 266 ------- null} + -t 0.33152 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 523 -a 0 -x {9.0 10.0 266 ------- null} h -t 0.33152 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 523 -a 0 -x {9.0 10.0 266 ------- null} r -t 0.33208 -s 0 -d 9 -p ack -e 40 -c 0 -i 518 -a 0 -x {10.0 9.0 254 ------- null} + -t 0.33208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 529 -a 0 -x {9.0 10.0 269 ------- null} - -t 0.33208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 529 -a 0 -x {9.0 10.0 269 ------- null} h -t 0.33208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 529 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.332208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {9.0 10.0 262 ------- null} - -t 0.332208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {9.0 10.0 262 ------- null} h -t 0.332208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.3324 -s 10 -d 7 -p ack -e 40 -c 0 -i 526 -a 0 -x {10.0 9.0 258 ------- null} + -t 0.3324 -s 7 -d 0 -p ack -e 40 -c 0 -i 526 -a 0 -x {10.0 9.0 258 ------- null} h -t 0.3324 -s 7 -d 8 -p ack -e 40 -c 0 -i 526 -a 0 -x {10.0 9.0 258 ------- null} + -t 0.332432 -s 0 -d 9 -p ack -e 40 -c 0 -i 522 -a 0 -x {10.0 9.0 256 ------- null} - -t 0.332432 -s 0 -d 9 -p ack -e 40 -c 0 -i 522 -a 0 -x {10.0 9.0 256 ------- null} h -t 0.332432 -s 0 -d 9 -p ack -e 40 -c 0 -i 522 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.332544 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 511 -a 0 -x {9.0 10.0 260 ------- null} + -t 0.332544 -s 10 -d 7 -p ack -e 40 -c 0 -i 530 -a 0 -x {10.0 9.0 260 ------- null} - -t 0.332544 -s 10 -d 7 -p ack -e 40 -c 0 -i 530 -a 0 -x {10.0 9.0 260 ------- null} h -t 0.332544 -s 10 -d 7 -p ack -e 40 -c 0 -i 530 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.332608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 525 -a 0 -x {9.0 10.0 267 ------- null} + -t 0.332608 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 525 -a 0 -x {9.0 10.0 267 ------- null} h -t 0.332608 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 525 -a 0 -x {9.0 10.0 267 ------- null} + -t 0.333296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {9.0 10.0 263 ------- null} - -t 0.333296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {9.0 10.0 263 ------- null} h -t 0.333296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.333296 -s 0 -d 9 -p ack -e 40 -c 0 -i 520 -a 0 -x {10.0 9.0 255 ------- null} + -t 0.333296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 531 -a 0 -x {9.0 10.0 270 ------- null} - -t 0.333296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 531 -a 0 -x {9.0 10.0 270 ------- null} h -t 0.333296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 531 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.333376 -s 0 -d 9 -p ack -e 40 -c 0 -i 524 -a 0 -x {10.0 9.0 257 ------- null} - -t 0.333376 -s 0 -d 9 -p ack -e 40 -c 0 -i 524 -a 0 -x {10.0 9.0 257 ------- null} h -t 0.333376 -s 0 -d 9 -p ack -e 40 -c 0 -i 524 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.333488 -s 10 -d 7 -p ack -e 40 -c 0 -i 528 -a 0 -x {10.0 9.0 259 ------- null} + -t 0.333488 -s 7 -d 0 -p ack -e 40 -c 0 -i 528 -a 0 -x {10.0 9.0 259 ------- null} h -t 0.333488 -s 7 -d 8 -p ack -e 40 -c 0 -i 528 -a 0 -x {10.0 9.0 259 ------- null} r -t 0.333728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 527 -a 0 -x {9.0 10.0 268 ------- null} + -t 0.333728 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 527 -a 0 -x {9.0 10.0 268 ------- null} h -t 0.333728 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 527 -a 0 -x {9.0 10.0 268 ------- null} r -t 0.33392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 513 -a 0 -x {9.0 10.0 261 ------- null} + -t 0.33392 -s 10 -d 7 -p ack -e 40 -c 0 -i 532 -a 0 -x {10.0 9.0 261 ------- null} - -t 0.33392 -s 10 -d 7 -p ack -e 40 -c 0 -i 532 -a 0 -x {10.0 9.0 261 ------- null} h -t 0.33392 -s 10 -d 7 -p ack -e 40 -c 0 -i 532 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.334384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {9.0 10.0 264 ------- null} - -t 0.334384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {9.0 10.0 264 ------- null} h -t 0.334384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.334464 -s 0 -d 9 -p ack -e 40 -c 0 -i 522 -a 0 -x {10.0 9.0 256 ------- null} + -t 0.334464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 533 -a 0 -x {9.0 10.0 271 ------- null} - -t 0.334464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 533 -a 0 -x {9.0 10.0 271 ------- null} h -t 0.334464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 533 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.334576 -s 10 -d 7 -p ack -e 40 -c 0 -i 530 -a 0 -x {10.0 9.0 260 ------- null} + -t 0.334576 -s 7 -d 0 -p ack -e 40 -c 0 -i 530 -a 0 -x {10.0 9.0 260 ------- null} h -t 0.334576 -s 7 -d 8 -p ack -e 40 -c 0 -i 530 -a 0 -x {10.0 9.0 260 ------- null} + -t 0.334576 -s 0 -d 9 -p ack -e 40 -c 0 -i 526 -a 0 -x {10.0 9.0 258 ------- null} - -t 0.334576 -s 0 -d 9 -p ack -e 40 -c 0 -i 526 -a 0 -x {10.0 9.0 258 ------- null} h -t 0.334576 -s 0 -d 9 -p ack -e 40 -c 0 -i 526 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.33488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 529 -a 0 -x {9.0 10.0 269 ------- null} + -t 0.33488 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 529 -a 0 -x {9.0 10.0 269 ------- null} h -t 0.33488 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 529 -a 0 -x {9.0 10.0 269 ------- null} r -t 0.335008 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 515 -a 0 -x {9.0 10.0 262 ------- null} + -t 0.335008 -s 10 -d 7 -p ack -e 40 -c 0 -i 534 -a 0 -x {10.0 9.0 262 ------- null} - -t 0.335008 -s 10 -d 7 -p ack -e 40 -c 0 -i 534 -a 0 -x {10.0 9.0 262 ------- null} h -t 0.335008 -s 10 -d 7 -p ack -e 40 -c 0 -i 534 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.335408 -s 0 -d 9 -p ack -e 40 -c 0 -i 524 -a 0 -x {10.0 9.0 257 ------- null} + -t 0.335408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 535 -a 0 -x {9.0 10.0 272 ------- null} - -t 0.335408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 535 -a 0 -x {9.0 10.0 272 ------- null} h -t 0.335408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 535 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.335472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {9.0 10.0 265 ------- null} - -t 0.335472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {9.0 10.0 265 ------- null} h -t 0.335472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.335616 -s 0 -d 9 -p ack -e 40 -c 0 -i 528 -a 0 -x {10.0 9.0 259 ------- null} - -t 0.335616 -s 0 -d 9 -p ack -e 40 -c 0 -i 528 -a 0 -x {10.0 9.0 259 ------- null} h -t 0.335616 -s 0 -d 9 -p ack -e 40 -c 0 -i 528 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.335952 -s 10 -d 7 -p ack -e 40 -c 0 -i 532 -a 0 -x {10.0 9.0 261 ------- null} + -t 0.335952 -s 7 -d 0 -p ack -e 40 -c 0 -i 532 -a 0 -x {10.0 9.0 261 ------- null} h -t 0.335952 -s 7 -d 8 -p ack -e 40 -c 0 -i 532 -a 0 -x {10.0 9.0 261 ------- null} r -t 0.336096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 517 -a 0 -x {9.0 10.0 263 ------- null} + -t 0.336096 -s 10 -d 7 -p ack -e 40 -c 0 -i 536 -a 0 -x {10.0 9.0 263 ------- null} - -t 0.336096 -s 10 -d 7 -p ack -e 40 -c 0 -i 536 -a 0 -x {10.0 9.0 263 ------- null} h -t 0.336096 -s 10 -d 7 -p ack -e 40 -c 0 -i 536 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.336096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 531 -a 0 -x {9.0 10.0 270 ------- null} + -t 0.336096 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 531 -a 0 -x {9.0 10.0 270 ------- null} h -t 0.336096 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 531 -a 0 -x {9.0 10.0 270 ------- null} + -t 0.33656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 523 -a 0 -x {9.0 10.0 266 ------- null} - -t 0.33656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 523 -a 0 -x {9.0 10.0 266 ------- null} h -t 0.33656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 523 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.336608 -s 0 -d 9 -p ack -e 40 -c 0 -i 526 -a 0 -x {10.0 9.0 258 ------- null} + -t 0.336608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 537 -a 0 -x {9.0 10.0 273 ------- null} - -t 0.336608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 537 -a 0 -x {9.0 10.0 273 ------- null} h -t 0.336608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 537 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.336752 -s 0 -d 9 -p ack -e 40 -c 0 -i 530 -a 0 -x {10.0 9.0 260 ------- null} - -t 0.336752 -s 0 -d 9 -p ack -e 40 -c 0 -i 530 -a 0 -x {10.0 9.0 260 ------- null} h -t 0.336752 -s 0 -d 9 -p ack -e 40 -c 0 -i 530 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.33704 -s 10 -d 7 -p ack -e 40 -c 0 -i 534 -a 0 -x {10.0 9.0 262 ------- null} + -t 0.33704 -s 7 -d 0 -p ack -e 40 -c 0 -i 534 -a 0 -x {10.0 9.0 262 ------- null} h -t 0.33704 -s 7 -d 8 -p ack -e 40 -c 0 -i 534 -a 0 -x {10.0 9.0 262 ------- null} r -t 0.337184 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 519 -a 0 -x {9.0 10.0 264 ------- null} + -t 0.337184 -s 10 -d 7 -p ack -e 40 -c 0 -i 538 -a 0 -x {10.0 9.0 264 ------- null} - -t 0.337184 -s 10 -d 7 -p ack -e 40 -c 0 -i 538 -a 0 -x {10.0 9.0 264 ------- null} h -t 0.337184 -s 10 -d 7 -p ack -e 40 -c 0 -i 538 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.337264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 533 -a 0 -x {9.0 10.0 271 ------- null} + -t 0.337264 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 533 -a 0 -x {9.0 10.0 271 ------- null} h -t 0.337264 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 533 -a 0 -x {9.0 10.0 271 ------- null} + -t 0.337648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 525 -a 0 -x {9.0 10.0 267 ------- null} - -t 0.337648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 525 -a 0 -x {9.0 10.0 267 ------- null} h -t 0.337648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 525 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.337648 -s 0 -d 9 -p ack -e 40 -c 0 -i 528 -a 0 -x {10.0 9.0 259 ------- null} + -t 0.337648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 539 -a 0 -x {9.0 10.0 274 ------- null} - -t 0.337648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 539 -a 0 -x {9.0 10.0 274 ------- null} h -t 0.337648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 539 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.337808 -s 0 -d 9 -p ack -e 40 -c 0 -i 532 -a 0 -x {10.0 9.0 261 ------- null} - -t 0.337808 -s 0 -d 9 -p ack -e 40 -c 0 -i 532 -a 0 -x {10.0 9.0 261 ------- null} h -t 0.337808 -s 0 -d 9 -p ack -e 40 -c 0 -i 532 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.338128 -s 10 -d 7 -p ack -e 40 -c 0 -i 536 -a 0 -x {10.0 9.0 263 ------- null} + -t 0.338128 -s 7 -d 0 -p ack -e 40 -c 0 -i 536 -a 0 -x {10.0 9.0 263 ------- null} h -t 0.338128 -s 7 -d 8 -p ack -e 40 -c 0 -i 536 -a 0 -x {10.0 9.0 263 ------- null} r -t 0.338208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 535 -a 0 -x {9.0 10.0 272 ------- null} + -t 0.338208 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 535 -a 0 -x {9.0 10.0 272 ------- null} h -t 0.338208 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 535 -a 0 -x {9.0 10.0 272 ------- null} r -t 0.338272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 521 -a 0 -x {9.0 10.0 265 ------- null} + -t 0.338272 -s 10 -d 7 -p ack -e 40 -c 0 -i 540 -a 0 -x {10.0 9.0 265 ------- null} - -t 0.338272 -s 10 -d 7 -p ack -e 40 -c 0 -i 540 -a 0 -x {10.0 9.0 265 ------- null} h -t 0.338272 -s 10 -d 7 -p ack -e 40 -c 0 -i 540 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.338736 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 527 -a 0 -x {9.0 10.0 268 ------- null} - -t 0.338736 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 527 -a 0 -x {9.0 10.0 268 ------- null} h -t 0.338736 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 527 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.338784 -s 0 -d 9 -p ack -e 40 -c 0 -i 530 -a 0 -x {10.0 9.0 260 ------- null} + -t 0.338784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 541 -a 0 -x {9.0 10.0 275 ------- null} - -t 0.338784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 541 -a 0 -x {9.0 10.0 275 ------- null} h -t 0.338784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 541 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.339024 -s 0 -d 9 -p ack -e 40 -c 0 -i 534 -a 0 -x {10.0 9.0 262 ------- null} - -t 0.339024 -s 0 -d 9 -p ack -e 40 -c 0 -i 534 -a 0 -x {10.0 9.0 262 ------- null} h -t 0.339024 -s 0 -d 9 -p ack -e 40 -c 0 -i 534 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.339216 -s 10 -d 7 -p ack -e 40 -c 0 -i 538 -a 0 -x {10.0 9.0 264 ------- null} + -t 0.339216 -s 7 -d 0 -p ack -e 40 -c 0 -i 538 -a 0 -x {10.0 9.0 264 ------- null} h -t 0.339216 -s 7 -d 8 -p ack -e 40 -c 0 -i 538 -a 0 -x {10.0 9.0 264 ------- null} r -t 0.33936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 523 -a 0 -x {9.0 10.0 266 ------- null} + -t 0.33936 -s 10 -d 7 -p ack -e 40 -c 0 -i 542 -a 0 -x {10.0 9.0 266 ------- null} - -t 0.33936 -s 10 -d 7 -p ack -e 40 -c 0 -i 542 -a 0 -x {10.0 9.0 266 ------- null} h -t 0.33936 -s 10 -d 7 -p ack -e 40 -c 0 -i 542 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.339408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 537 -a 0 -x {9.0 10.0 273 ------- null} + -t 0.339408 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 537 -a 0 -x {9.0 10.0 273 ------- null} h -t 0.339408 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 537 -a 0 -x {9.0 10.0 273 ------- null} r -t 0.33984 -s 0 -d 9 -p ack -e 40 -c 0 -i 532 -a 0 -x {10.0 9.0 261 ------- null} + -t 0.33984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {9.0 10.0 276 ------- null} - -t 0.33984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {9.0 10.0 276 ------- null} h -t 0.33984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.339984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 529 -a 0 -x {9.0 10.0 269 ------- null} - -t 0.339984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 529 -a 0 -x {9.0 10.0 269 ------- null} h -t 0.339984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 529 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.34024 -s 0 -d 9 -p ack -e 40 -c 0 -i 536 -a 0 -x {10.0 9.0 263 ------- null} - -t 0.34024 -s 0 -d 9 -p ack -e 40 -c 0 -i 536 -a 0 -x {10.0 9.0 263 ------- null} h -t 0.34024 -s 0 -d 9 -p ack -e 40 -c 0 -i 536 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.340304 -s 10 -d 7 -p ack -e 40 -c 0 -i 540 -a 0 -x {10.0 9.0 265 ------- null} + -t 0.340304 -s 7 -d 0 -p ack -e 40 -c 0 -i 540 -a 0 -x {10.0 9.0 265 ------- null} h -t 0.340304 -s 7 -d 8 -p ack -e 40 -c 0 -i 540 -a 0 -x {10.0 9.0 265 ------- null} r -t 0.340448 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 525 -a 0 -x {9.0 10.0 267 ------- null} + -t 0.340448 -s 10 -d 7 -p ack -e 40 -c 0 -i 544 -a 0 -x {10.0 9.0 267 ------- null} - -t 0.340448 -s 10 -d 7 -p ack -e 40 -c 0 -i 544 -a 0 -x {10.0 9.0 267 ------- null} h -t 0.340448 -s 10 -d 7 -p ack -e 40 -c 0 -i 544 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.340448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 539 -a 0 -x {9.0 10.0 274 ------- null} + -t 0.340448 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 539 -a 0 -x {9.0 10.0 274 ------- null} h -t 0.340448 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 539 -a 0 -x {9.0 10.0 274 ------- null} r -t 0.341056 -s 0 -d 9 -p ack -e 40 -c 0 -i 534 -a 0 -x {10.0 9.0 262 ------- null} + -t 0.341056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {9.0 10.0 277 ------- null} - -t 0.341056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {9.0 10.0 277 ------- null} h -t 0.341056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.341232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 531 -a 0 -x {9.0 10.0 270 ------- null} - -t 0.341232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 531 -a 0 -x {9.0 10.0 270 ------- null} h -t 0.341232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 531 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.341392 -s 10 -d 7 -p ack -e 40 -c 0 -i 542 -a 0 -x {10.0 9.0 266 ------- null} + -t 0.341392 -s 7 -d 0 -p ack -e 40 -c 0 -i 542 -a 0 -x {10.0 9.0 266 ------- null} h -t 0.341392 -s 7 -d 8 -p ack -e 40 -c 0 -i 542 -a 0 -x {10.0 9.0 266 ------- null} + -t 0.341504 -s 0 -d 9 -p ack -e 40 -c 0 -i 538 -a 0 -x {10.0 9.0 264 ------- null} - -t 0.341504 -s 0 -d 9 -p ack -e 40 -c 0 -i 538 -a 0 -x {10.0 9.0 264 ------- null} h -t 0.341504 -s 0 -d 9 -p ack -e 40 -c 0 -i 538 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.341536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 527 -a 0 -x {9.0 10.0 268 ------- null} + -t 0.341536 -s 10 -d 7 -p ack -e 40 -c 0 -i 546 -a 0 -x {10.0 9.0 268 ------- null} - -t 0.341536 -s 10 -d 7 -p ack -e 40 -c 0 -i 546 -a 0 -x {10.0 9.0 268 ------- null} h -t 0.341536 -s 10 -d 7 -p ack -e 40 -c 0 -i 546 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.341584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 541 -a 0 -x {9.0 10.0 275 ------- null} + -t 0.341584 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 541 -a 0 -x {9.0 10.0 275 ------- null} h -t 0.341584 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 541 -a 0 -x {9.0 10.0 275 ------- null} r -t 0.342272 -s 0 -d 9 -p ack -e 40 -c 0 -i 536 -a 0 -x {10.0 9.0 263 ------- null} + -t 0.342272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {9.0 10.0 278 ------- null} - -t 0.342272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {9.0 10.0 278 ------- null} h -t 0.342272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.342464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 533 -a 0 -x {9.0 10.0 271 ------- null} - -t 0.342464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 533 -a 0 -x {9.0 10.0 271 ------- null} h -t 0.342464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 533 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.34248 -s 10 -d 7 -p ack -e 40 -c 0 -i 544 -a 0 -x {10.0 9.0 267 ------- null} + -t 0.34248 -s 7 -d 0 -p ack -e 40 -c 0 -i 544 -a 0 -x {10.0 9.0 267 ------- null} h -t 0.34248 -s 7 -d 8 -p ack -e 40 -c 0 -i 544 -a 0 -x {10.0 9.0 267 ------- null} r -t 0.34264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {9.0 10.0 276 ------- null} + -t 0.34264 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {9.0 10.0 276 ------- null} h -t 0.34264 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {9.0 10.0 276 ------- null} + -t 0.342688 -s 0 -d 9 -p ack -e 40 -c 0 -i 540 -a 0 -x {10.0 9.0 265 ------- null} - -t 0.342688 -s 0 -d 9 -p ack -e 40 -c 0 -i 540 -a 0 -x {10.0 9.0 265 ------- null} h -t 0.342688 -s 0 -d 9 -p ack -e 40 -c 0 -i 540 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.342784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 529 -a 0 -x {9.0 10.0 269 ------- null} + -t 0.342784 -s 10 -d 7 -p ack -e 40 -c 0 -i 548 -a 0 -x {10.0 9.0 269 ------- null} - -t 0.342784 -s 10 -d 7 -p ack -e 40 -c 0 -i 548 -a 0 -x {10.0 9.0 269 ------- null} h -t 0.342784 -s 10 -d 7 -p ack -e 40 -c 0 -i 548 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.343536 -s 0 -d 9 -p ack -e 40 -c 0 -i 538 -a 0 -x {10.0 9.0 264 ------- null} + -t 0.343536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {9.0 10.0 279 ------- null} - -t 0.343536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {9.0 10.0 279 ------- null} h -t 0.343536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.343552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 535 -a 0 -x {9.0 10.0 272 ------- null} - -t 0.343552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 535 -a 0 -x {9.0 10.0 272 ------- null} h -t 0.343552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 535 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.343568 -s 10 -d 7 -p ack -e 40 -c 0 -i 546 -a 0 -x {10.0 9.0 268 ------- null} + -t 0.343568 -s 7 -d 0 -p ack -e 40 -c 0 -i 546 -a 0 -x {10.0 9.0 268 ------- null} h -t 0.343568 -s 7 -d 8 -p ack -e 40 -c 0 -i 546 -a 0 -x {10.0 9.0 268 ------- null} + -t 0.343792 -s 0 -d 9 -p ack -e 40 -c 0 -i 542 -a 0 -x {10.0 9.0 266 ------- null} - -t 0.343792 -s 0 -d 9 -p ack -e 40 -c 0 -i 542 -a 0 -x {10.0 9.0 266 ------- null} h -t 0.343792 -s 0 -d 9 -p ack -e 40 -c 0 -i 542 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.343856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {9.0 10.0 277 ------- null} + -t 0.343856 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {9.0 10.0 277 ------- null} h -t 0.343856 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {9.0 10.0 277 ------- null} r -t 0.344032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 531 -a 0 -x {9.0 10.0 270 ------- null} + -t 0.344032 -s 10 -d 7 -p ack -e 40 -c 0 -i 550 -a 0 -x {10.0 9.0 270 ------- null} - -t 0.344032 -s 10 -d 7 -p ack -e 40 -c 0 -i 550 -a 0 -x {10.0 9.0 270 ------- null} h -t 0.344032 -s 10 -d 7 -p ack -e 40 -c 0 -i 550 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.34464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 537 -a 0 -x {9.0 10.0 273 ------- null} - -t 0.34464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 537 -a 0 -x {9.0 10.0 273 ------- null} h -t 0.34464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 537 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.34472 -s 0 -d 9 -p ack -e 40 -c 0 -i 540 -a 0 -x {10.0 9.0 265 ------- null} + -t 0.34472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {9.0 10.0 280 ------- null} - -t 0.34472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {9.0 10.0 280 ------- null} h -t 0.34472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.344816 -s 10 -d 7 -p ack -e 40 -c 0 -i 548 -a 0 -x {10.0 9.0 269 ------- null} + -t 0.344816 -s 7 -d 0 -p ack -e 40 -c 0 -i 548 -a 0 -x {10.0 9.0 269 ------- null} h -t 0.344816 -s 7 -d 8 -p ack -e 40 -c 0 -i 548 -a 0 -x {10.0 9.0 269 ------- null} + -t 0.344912 -s 0 -d 9 -p ack -e 40 -c 0 -i 544 -a 0 -x {10.0 9.0 267 ------- null} - -t 0.344912 -s 0 -d 9 -p ack -e 40 -c 0 -i 544 -a 0 -x {10.0 9.0 267 ------- null} h -t 0.344912 -s 0 -d 9 -p ack -e 40 -c 0 -i 544 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.345072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {9.0 10.0 278 ------- null} + -t 0.345072 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {9.0 10.0 278 ------- null} h -t 0.345072 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {9.0 10.0 278 ------- null} r -t 0.345264 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 533 -a 0 -x {9.0 10.0 271 ------- null} + -t 0.345264 -s 10 -d 7 -p ack -e 40 -c 0 -i 552 -a 0 -x {10.0 9.0 271 ------- null} - -t 0.345264 -s 10 -d 7 -p ack -e 40 -c 0 -i 552 -a 0 -x {10.0 9.0 271 ------- null} h -t 0.345264 -s 10 -d 7 -p ack -e 40 -c 0 -i 552 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.345824 -s 0 -d 9 -p ack -e 40 -c 0 -i 542 -a 0 -x {10.0 9.0 266 ------- null} + -t 0.345824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {9.0 10.0 281 ------- null} - -t 0.345824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {9.0 10.0 281 ------- null} h -t 0.345824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.345824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 539 -a 0 -x {9.0 10.0 274 ------- null} - -t 0.345824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 539 -a 0 -x {9.0 10.0 274 ------- null} h -t 0.345824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 539 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.345888 -s 0 -d 9 -p ack -e 40 -c 0 -i 546 -a 0 -x {10.0 9.0 268 ------- null} - -t 0.345888 -s 0 -d 9 -p ack -e 40 -c 0 -i 546 -a 0 -x {10.0 9.0 268 ------- null} h -t 0.345888 -s 0 -d 9 -p ack -e 40 -c 0 -i 546 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.346064 -s 10 -d 7 -p ack -e 40 -c 0 -i 550 -a 0 -x {10.0 9.0 270 ------- null} + -t 0.346064 -s 7 -d 0 -p ack -e 40 -c 0 -i 550 -a 0 -x {10.0 9.0 270 ------- null} h -t 0.346064 -s 7 -d 8 -p ack -e 40 -c 0 -i 550 -a 0 -x {10.0 9.0 270 ------- null} r -t 0.346336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {9.0 10.0 279 ------- null} + -t 0.346336 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {9.0 10.0 279 ------- null} h -t 0.346336 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {9.0 10.0 279 ------- null} r -t 0.346352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 535 -a 0 -x {9.0 10.0 272 ------- null} + -t 0.346352 -s 10 -d 7 -p ack -e 40 -c 0 -i 554 -a 0 -x {10.0 9.0 272 ------- null} - -t 0.346352 -s 10 -d 7 -p ack -e 40 -c 0 -i 554 -a 0 -x {10.0 9.0 272 ------- null} h -t 0.346352 -s 10 -d 7 -p ack -e 40 -c 0 -i 554 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.346912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 541 -a 0 -x {9.0 10.0 275 ------- null} - -t 0.346912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 541 -a 0 -x {9.0 10.0 275 ------- null} h -t 0.346912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 541 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.346944 -s 0 -d 9 -p ack -e 40 -c 0 -i 544 -a 0 -x {10.0 9.0 267 ------- null} + -t 0.346944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {9.0 10.0 282 ------- null} - -t 0.346944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {9.0 10.0 282 ------- null} h -t 0.346944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.347136 -s 0 -d 9 -p ack -e 40 -c 0 -i 548 -a 0 -x {10.0 9.0 269 ------- null} - -t 0.347136 -s 0 -d 9 -p ack -e 40 -c 0 -i 548 -a 0 -x {10.0 9.0 269 ------- null} h -t 0.347136 -s 0 -d 9 -p ack -e 40 -c 0 -i 548 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.347296 -s 10 -d 7 -p ack -e 40 -c 0 -i 552 -a 0 -x {10.0 9.0 271 ------- null} + -t 0.347296 -s 7 -d 0 -p ack -e 40 -c 0 -i 552 -a 0 -x {10.0 9.0 271 ------- null} h -t 0.347296 -s 7 -d 8 -p ack -e 40 -c 0 -i 552 -a 0 -x {10.0 9.0 271 ------- null} r -t 0.34744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 537 -a 0 -x {9.0 10.0 273 ------- null} + -t 0.34744 -s 10 -d 7 -p ack -e 40 -c 0 -i 556 -a 0 -x {10.0 9.0 273 ------- null} - -t 0.34744 -s 10 -d 7 -p ack -e 40 -c 0 -i 556 -a 0 -x {10.0 9.0 273 ------- null} h -t 0.34744 -s 10 -d 7 -p ack -e 40 -c 0 -i 556 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.34752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {9.0 10.0 280 ------- null} + -t 0.34752 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {9.0 10.0 280 ------- null} h -t 0.34752 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {9.0 10.0 280 ------- null} r -t 0.34792 -s 0 -d 9 -p ack -e 40 -c 0 -i 546 -a 0 -x {10.0 9.0 268 ------- null} + -t 0.34792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {9.0 10.0 283 ------- null} - -t 0.34792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {9.0 10.0 283 ------- null} h -t 0.34792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.348 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {9.0 10.0 276 ------- null} - -t 0.348 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {9.0 10.0 276 ------- null} h -t 0.348 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.348224 -s 0 -d 9 -p ack -e 40 -c 0 -i 550 -a 0 -x {10.0 9.0 270 ------- null} - -t 0.348224 -s 0 -d 9 -p ack -e 40 -c 0 -i 550 -a 0 -x {10.0 9.0 270 ------- null} h -t 0.348224 -s 0 -d 9 -p ack -e 40 -c 0 -i 550 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.348384 -s 10 -d 7 -p ack -e 40 -c 0 -i 554 -a 0 -x {10.0 9.0 272 ------- null} + -t 0.348384 -s 7 -d 0 -p ack -e 40 -c 0 -i 554 -a 0 -x {10.0 9.0 272 ------- null} h -t 0.348384 -s 7 -d 8 -p ack -e 40 -c 0 -i 554 -a 0 -x {10.0 9.0 272 ------- null} r -t 0.348624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {9.0 10.0 281 ------- null} + -t 0.348624 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {9.0 10.0 281 ------- null} h -t 0.348624 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {9.0 10.0 281 ------- null} r -t 0.348624 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 539 -a 0 -x {9.0 10.0 274 ------- null} + -t 0.348624 -s 10 -d 7 -p ack -e 40 -c 0 -i 558 -a 0 -x {10.0 9.0 274 ------- null} - -t 0.348624 -s 10 -d 7 -p ack -e 40 -c 0 -i 558 -a 0 -x {10.0 9.0 274 ------- null} h -t 0.348624 -s 10 -d 7 -p ack -e 40 -c 0 -i 558 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.349088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {9.0 10.0 277 ------- null} - -t 0.349088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {9.0 10.0 277 ------- null} h -t 0.349088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.349168 -s 0 -d 9 -p ack -e 40 -c 0 -i 548 -a 0 -x {10.0 9.0 269 ------- null} + -t 0.349168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {9.0 10.0 284 ------- null} - -t 0.349168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {9.0 10.0 284 ------- null} h -t 0.349168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.34936 -s 0 -d 9 -p ack -e 40 -c 0 -i 552 -a 0 -x {10.0 9.0 271 ------- null} - -t 0.34936 -s 0 -d 9 -p ack -e 40 -c 0 -i 552 -a 0 -x {10.0 9.0 271 ------- null} h -t 0.34936 -s 0 -d 9 -p ack -e 40 -c 0 -i 552 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.349472 -s 10 -d 7 -p ack -e 40 -c 0 -i 556 -a 0 -x {10.0 9.0 273 ------- null} + -t 0.349472 -s 7 -d 0 -p ack -e 40 -c 0 -i 556 -a 0 -x {10.0 9.0 273 ------- null} h -t 0.349472 -s 7 -d 8 -p ack -e 40 -c 0 -i 556 -a 0 -x {10.0 9.0 273 ------- null} r -t 0.349712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 541 -a 0 -x {9.0 10.0 275 ------- null} + -t 0.349712 -s 10 -d 7 -p ack -e 40 -c 0 -i 560 -a 0 -x {10.0 9.0 275 ------- null} - -t 0.349712 -s 10 -d 7 -p ack -e 40 -c 0 -i 560 -a 0 -x {10.0 9.0 275 ------- null} h -t 0.349712 -s 10 -d 7 -p ack -e 40 -c 0 -i 560 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.349744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {9.0 10.0 282 ------- null} + -t 0.349744 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {9.0 10.0 282 ------- null} h -t 0.349744 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {9.0 10.0 282 ------- null} r -t 0.350256 -s 0 -d 9 -p ack -e 40 -c 0 -i 550 -a 0 -x {10.0 9.0 270 ------- null} + -t 0.350256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {9.0 10.0 285 ------- null} - -t 0.350256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {9.0 10.0 285 ------- null} h -t 0.350256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.350432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {9.0 10.0 278 ------- null} - -t 0.350432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {9.0 10.0 278 ------- null} h -t 0.350432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.350592 -s 0 -d 9 -p ack -e 40 -c 0 -i 554 -a 0 -x {10.0 9.0 272 ------- null} - -t 0.350592 -s 0 -d 9 -p ack -e 40 -c 0 -i 554 -a 0 -x {10.0 9.0 272 ------- null} h -t 0.350592 -s 0 -d 9 -p ack -e 40 -c 0 -i 554 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.350656 -s 10 -d 7 -p ack -e 40 -c 0 -i 558 -a 0 -x {10.0 9.0 274 ------- null} + -t 0.350656 -s 7 -d 0 -p ack -e 40 -c 0 -i 558 -a 0 -x {10.0 9.0 274 ------- null} h -t 0.350656 -s 7 -d 8 -p ack -e 40 -c 0 -i 558 -a 0 -x {10.0 9.0 274 ------- null} r -t 0.35072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {9.0 10.0 283 ------- null} + -t 0.35072 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {9.0 10.0 283 ------- null} h -t 0.35072 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {9.0 10.0 283 ------- null} r -t 0.3508 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 543 -a 0 -x {9.0 10.0 276 ------- null} + -t 0.3508 -s 10 -d 7 -p ack -e 40 -c 0 -i 562 -a 0 -x {10.0 9.0 276 ------- null} - -t 0.3508 -s 10 -d 7 -p ack -e 40 -c 0 -i 562 -a 0 -x {10.0 9.0 276 ------- null} h -t 0.3508 -s 10 -d 7 -p ack -e 40 -c 0 -i 562 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.351392 -s 0 -d 9 -p ack -e 40 -c 0 -i 552 -a 0 -x {10.0 9.0 271 ------- null} + -t 0.351392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 563 -a 0 -x {9.0 10.0 286 ------- null} - -t 0.351392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 563 -a 0 -x {9.0 10.0 286 ------- null} h -t 0.351392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 563 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.35152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {9.0 10.0 279 ------- null} - -t 0.35152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {9.0 10.0 279 ------- null} h -t 0.35152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.35168 -s 0 -d 9 -p ack -e 40 -c 0 -i 556 -a 0 -x {10.0 9.0 273 ------- null} - -t 0.35168 -s 0 -d 9 -p ack -e 40 -c 0 -i 556 -a 0 -x {10.0 9.0 273 ------- null} h -t 0.35168 -s 0 -d 9 -p ack -e 40 -c 0 -i 556 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.351744 -s 10 -d 7 -p ack -e 40 -c 0 -i 560 -a 0 -x {10.0 9.0 275 ------- null} + -t 0.351744 -s 7 -d 0 -p ack -e 40 -c 0 -i 560 -a 0 -x {10.0 9.0 275 ------- null} h -t 0.351744 -s 7 -d 8 -p ack -e 40 -c 0 -i 560 -a 0 -x {10.0 9.0 275 ------- null} r -t 0.351888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 545 -a 0 -x {9.0 10.0 277 ------- null} + -t 0.351888 -s 10 -d 7 -p ack -e 40 -c 0 -i 564 -a 0 -x {10.0 9.0 277 ------- null} - -t 0.351888 -s 10 -d 7 -p ack -e 40 -c 0 -i 564 -a 0 -x {10.0 9.0 277 ------- null} h -t 0.351888 -s 10 -d 7 -p ack -e 40 -c 0 -i 564 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.351968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {9.0 10.0 284 ------- null} + -t 0.351968 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {9.0 10.0 284 ------- null} h -t 0.351968 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {9.0 10.0 284 ------- null} + -t 0.352608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {9.0 10.0 280 ------- null} - -t 0.352608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {9.0 10.0 280 ------- null} h -t 0.352608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.352624 -s 0 -d 9 -p ack -e 40 -c 0 -i 554 -a 0 -x {10.0 9.0 272 ------- null} + -t 0.352624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 565 -a 0 -x {9.0 10.0 287 ------- null} - -t 0.352624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 565 -a 0 -x {9.0 10.0 287 ------- null} h -t 0.352624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 565 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.35272 -s 0 -d 9 -p ack -e 40 -c 0 -i 558 -a 0 -x {10.0 9.0 274 ------- null} - -t 0.35272 -s 0 -d 9 -p ack -e 40 -c 0 -i 558 -a 0 -x {10.0 9.0 274 ------- null} h -t 0.35272 -s 0 -d 9 -p ack -e 40 -c 0 -i 558 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.352832 -s 10 -d 7 -p ack -e 40 -c 0 -i 562 -a 0 -x {10.0 9.0 276 ------- null} + -t 0.352832 -s 7 -d 0 -p ack -e 40 -c 0 -i 562 -a 0 -x {10.0 9.0 276 ------- null} h -t 0.352832 -s 7 -d 8 -p ack -e 40 -c 0 -i 562 -a 0 -x {10.0 9.0 276 ------- null} r -t 0.353056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {9.0 10.0 285 ------- null} + -t 0.353056 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {9.0 10.0 285 ------- null} h -t 0.353056 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {9.0 10.0 285 ------- null} r -t 0.353232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 547 -a 0 -x {9.0 10.0 278 ------- null} + -t 0.353232 -s 10 -d 7 -p ack -e 40 -c 0 -i 566 -a 0 -x {10.0 9.0 278 ------- null} - -t 0.353232 -s 10 -d 7 -p ack -e 40 -c 0 -i 566 -a 0 -x {10.0 9.0 278 ------- null} h -t 0.353232 -s 10 -d 7 -p ack -e 40 -c 0 -i 566 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.353696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {9.0 10.0 281 ------- null} - -t 0.353696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {9.0 10.0 281 ------- null} h -t 0.353696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.353712 -s 0 -d 9 -p ack -e 40 -c 0 -i 556 -a 0 -x {10.0 9.0 273 ------- null} + -t 0.353712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 567 -a 0 -x {9.0 10.0 288 ------- null} - -t 0.353712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 567 -a 0 -x {9.0 10.0 288 ------- null} h -t 0.353712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 567 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.353904 -s 0 -d 9 -p ack -e 40 -c 0 -i 560 -a 0 -x {10.0 9.0 275 ------- null} - -t 0.353904 -s 0 -d 9 -p ack -e 40 -c 0 -i 560 -a 0 -x {10.0 9.0 275 ------- null} h -t 0.353904 -s 0 -d 9 -p ack -e 40 -c 0 -i 560 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.35392 -s 10 -d 7 -p ack -e 40 -c 0 -i 564 -a 0 -x {10.0 9.0 277 ------- null} + -t 0.35392 -s 7 -d 0 -p ack -e 40 -c 0 -i 564 -a 0 -x {10.0 9.0 277 ------- null} h -t 0.35392 -s 7 -d 8 -p ack -e 40 -c 0 -i 564 -a 0 -x {10.0 9.0 277 ------- null} r -t 0.354192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 563 -a 0 -x {9.0 10.0 286 ------- null} + -t 0.354192 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 563 -a 0 -x {9.0 10.0 286 ------- null} h -t 0.354192 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 563 -a 0 -x {9.0 10.0 286 ------- null} r -t 0.35432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 549 -a 0 -x {9.0 10.0 279 ------- null} + -t 0.35432 -s 10 -d 7 -p ack -e 40 -c 0 -i 568 -a 0 -x {10.0 9.0 279 ------- null} - -t 0.35432 -s 10 -d 7 -p ack -e 40 -c 0 -i 568 -a 0 -x {10.0 9.0 279 ------- null} h -t 0.35432 -s 10 -d 7 -p ack -e 40 -c 0 -i 568 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.354752 -s 0 -d 9 -p ack -e 40 -c 0 -i 558 -a 0 -x {10.0 9.0 274 ------- null} + -t 0.354752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 569 -a 0 -x {9.0 10.0 289 ------- null} - -t 0.354752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 569 -a 0 -x {9.0 10.0 289 ------- null} h -t 0.354752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 569 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.354784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {9.0 10.0 282 ------- null} - -t 0.354784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {9.0 10.0 282 ------- null} h -t 0.354784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.355056 -s 0 -d 9 -p ack -e 40 -c 0 -i 562 -a 0 -x {10.0 9.0 276 ------- null} - -t 0.355056 -s 0 -d 9 -p ack -e 40 -c 0 -i 562 -a 0 -x {10.0 9.0 276 ------- null} h -t 0.355056 -s 0 -d 9 -p ack -e 40 -c 0 -i 562 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.355264 -s 10 -d 7 -p ack -e 40 -c 0 -i 566 -a 0 -x {10.0 9.0 278 ------- null} + -t 0.355264 -s 7 -d 0 -p ack -e 40 -c 0 -i 566 -a 0 -x {10.0 9.0 278 ------- null} h -t 0.355264 -s 7 -d 8 -p ack -e 40 -c 0 -i 566 -a 0 -x {10.0 9.0 278 ------- null} r -t 0.355408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 551 -a 0 -x {9.0 10.0 280 ------- null} + -t 0.355408 -s 10 -d 7 -p ack -e 40 -c 0 -i 570 -a 0 -x {10.0 9.0 280 ------- null} - -t 0.355408 -s 10 -d 7 -p ack -e 40 -c 0 -i 570 -a 0 -x {10.0 9.0 280 ------- null} h -t 0.355408 -s 10 -d 7 -p ack -e 40 -c 0 -i 570 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.355424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 565 -a 0 -x {9.0 10.0 287 ------- null} + -t 0.355424 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 565 -a 0 -x {9.0 10.0 287 ------- null} h -t 0.355424 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 565 -a 0 -x {9.0 10.0 287 ------- null} r -t 0.355936 -s 0 -d 9 -p ack -e 40 -c 0 -i 560 -a 0 -x {10.0 9.0 275 ------- null} + -t 0.355936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 571 -a 0 -x {9.0 10.0 290 ------- null} - -t 0.355936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 571 -a 0 -x {9.0 10.0 290 ------- null} h -t 0.355936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 571 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.356128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {9.0 10.0 283 ------- null} - -t 0.356128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {9.0 10.0 283 ------- null} h -t 0.356128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.35632 -s 0 -d 9 -p ack -e 40 -c 0 -i 564 -a 0 -x {10.0 9.0 277 ------- null} - -t 0.35632 -s 0 -d 9 -p ack -e 40 -c 0 -i 564 -a 0 -x {10.0 9.0 277 ------- null} h -t 0.35632 -s 0 -d 9 -p ack -e 40 -c 0 -i 564 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.356352 -s 10 -d 7 -p ack -e 40 -c 0 -i 568 -a 0 -x {10.0 9.0 279 ------- null} + -t 0.356352 -s 7 -d 0 -p ack -e 40 -c 0 -i 568 -a 0 -x {10.0 9.0 279 ------- null} h -t 0.356352 -s 7 -d 8 -p ack -e 40 -c 0 -i 568 -a 0 -x {10.0 9.0 279 ------- null} r -t 0.356496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 553 -a 0 -x {9.0 10.0 281 ------- null} + -t 0.356496 -s 10 -d 7 -p ack -e 40 -c 0 -i 572 -a 0 -x {10.0 9.0 281 ------- null} - -t 0.356496 -s 10 -d 7 -p ack -e 40 -c 0 -i 572 -a 0 -x {10.0 9.0 281 ------- null} h -t 0.356496 -s 10 -d 7 -p ack -e 40 -c 0 -i 572 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.356512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 567 -a 0 -x {9.0 10.0 288 ------- null} + -t 0.356512 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 567 -a 0 -x {9.0 10.0 288 ------- null} h -t 0.356512 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 567 -a 0 -x {9.0 10.0 288 ------- null} r -t 0.357088 -s 0 -d 9 -p ack -e 40 -c 0 -i 562 -a 0 -x {10.0 9.0 276 ------- null} + -t 0.357088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 573 -a 0 -x {9.0 10.0 291 ------- null} - -t 0.357088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 573 -a 0 -x {9.0 10.0 291 ------- null} h -t 0.357088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 573 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.357216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {9.0 10.0 284 ------- null} - -t 0.357216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {9.0 10.0 284 ------- null} h -t 0.357216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.35744 -s 0 -d 9 -p ack -e 40 -c 0 -i 566 -a 0 -x {10.0 9.0 278 ------- null} - -t 0.35744 -s 0 -d 9 -p ack -e 40 -c 0 -i 566 -a 0 -x {10.0 9.0 278 ------- null} h -t 0.35744 -s 0 -d 9 -p ack -e 40 -c 0 -i 566 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.35744 -s 10 -d 7 -p ack -e 40 -c 0 -i 570 -a 0 -x {10.0 9.0 280 ------- null} + -t 0.35744 -s 7 -d 0 -p ack -e 40 -c 0 -i 570 -a 0 -x {10.0 9.0 280 ------- null} h -t 0.35744 -s 7 -d 8 -p ack -e 40 -c 0 -i 570 -a 0 -x {10.0 9.0 280 ------- null} r -t 0.357552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 569 -a 0 -x {9.0 10.0 289 ------- null} + -t 0.357552 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 569 -a 0 -x {9.0 10.0 289 ------- null} h -t 0.357552 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 569 -a 0 -x {9.0 10.0 289 ------- null} r -t 0.357584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 555 -a 0 -x {9.0 10.0 282 ------- null} + -t 0.357584 -s 10 -d 7 -p ack -e 40 -c 0 -i 574 -a 0 -x {10.0 9.0 282 ------- null} - -t 0.357584 -s 10 -d 7 -p ack -e 40 -c 0 -i 574 -a 0 -x {10.0 9.0 282 ------- null} h -t 0.357584 -s 10 -d 7 -p ack -e 40 -c 0 -i 574 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.358304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {9.0 10.0 285 ------- null} - -t 0.358304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {9.0 10.0 285 ------- null} h -t 0.358304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.358352 -s 0 -d 9 -p ack -e 40 -c 0 -i 564 -a 0 -x {10.0 9.0 277 ------- null} + -t 0.358352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 575 -a 0 -x {9.0 10.0 292 ------- null} - -t 0.358352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 575 -a 0 -x {9.0 10.0 292 ------- null} h -t 0.358352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 575 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.358512 -s 0 -d 9 -p ack -e 40 -c 0 -i 568 -a 0 -x {10.0 9.0 279 ------- null} - -t 0.358512 -s 0 -d 9 -p ack -e 40 -c 0 -i 568 -a 0 -x {10.0 9.0 279 ------- null} h -t 0.358512 -s 0 -d 9 -p ack -e 40 -c 0 -i 568 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.358528 -s 10 -d 7 -p ack -e 40 -c 0 -i 572 -a 0 -x {10.0 9.0 281 ------- null} + -t 0.358528 -s 7 -d 0 -p ack -e 40 -c 0 -i 572 -a 0 -x {10.0 9.0 281 ------- null} h -t 0.358528 -s 7 -d 8 -p ack -e 40 -c 0 -i 572 -a 0 -x {10.0 9.0 281 ------- null} r -t 0.358736 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 571 -a 0 -x {9.0 10.0 290 ------- null} + -t 0.358736 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 571 -a 0 -x {9.0 10.0 290 ------- null} h -t 0.358736 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 571 -a 0 -x {9.0 10.0 290 ------- null} r -t 0.358928 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 557 -a 0 -x {9.0 10.0 283 ------- null} + -t 0.358928 -s 10 -d 7 -p ack -e 40 -c 0 -i 576 -a 0 -x {10.0 9.0 283 ------- null} - -t 0.358928 -s 10 -d 7 -p ack -e 40 -c 0 -i 576 -a 0 -x {10.0 9.0 283 ------- null} h -t 0.358928 -s 10 -d 7 -p ack -e 40 -c 0 -i 576 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.359392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 563 -a 0 -x {9.0 10.0 286 ------- null} - -t 0.359392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 563 -a 0 -x {9.0 10.0 286 ------- null} h -t 0.359392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 563 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.359472 -s 0 -d 9 -p ack -e 40 -c 0 -i 566 -a 0 -x {10.0 9.0 278 ------- null} + -t 0.359472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 577 -a 0 -x {9.0 10.0 293 ------- null} - -t 0.359472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 577 -a 0 -x {9.0 10.0 293 ------- null} h -t 0.359472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 577 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.359536 -s 0 -d 9 -p ack -e 40 -c 0 -i 570 -a 0 -x {10.0 9.0 280 ------- null} - -t 0.359536 -s 0 -d 9 -p ack -e 40 -c 0 -i 570 -a 0 -x {10.0 9.0 280 ------- null} h -t 0.359536 -s 0 -d 9 -p ack -e 40 -c 0 -i 570 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.359616 -s 10 -d 7 -p ack -e 40 -c 0 -i 574 -a 0 -x {10.0 9.0 282 ------- null} + -t 0.359616 -s 7 -d 0 -p ack -e 40 -c 0 -i 574 -a 0 -x {10.0 9.0 282 ------- null} h -t 0.359616 -s 7 -d 8 -p ack -e 40 -c 0 -i 574 -a 0 -x {10.0 9.0 282 ------- null} r -t 0.359888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 573 -a 0 -x {9.0 10.0 291 ------- null} + -t 0.359888 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 573 -a 0 -x {9.0 10.0 291 ------- null} h -t 0.359888 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 573 -a 0 -x {9.0 10.0 291 ------- null} r -t 0.360016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 559 -a 0 -x {9.0 10.0 284 ------- null} + -t 0.360016 -s 10 -d 7 -p ack -e 40 -c 0 -i 578 -a 0 -x {10.0 9.0 284 ------- null} - -t 0.360016 -s 10 -d 7 -p ack -e 40 -c 0 -i 578 -a 0 -x {10.0 9.0 284 ------- null} h -t 0.360016 -s 10 -d 7 -p ack -e 40 -c 0 -i 578 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.36048 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 565 -a 0 -x {9.0 10.0 287 ------- null} - -t 0.36048 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 565 -a 0 -x {9.0 10.0 287 ------- null} h -t 0.36048 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 565 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.360544 -s 0 -d 9 -p ack -e 40 -c 0 -i 568 -a 0 -x {10.0 9.0 279 ------- null} + -t 0.360544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 579 -a 0 -x {9.0 10.0 294 ------- null} - -t 0.360544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 579 -a 0 -x {9.0 10.0 294 ------- null} h -t 0.360544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 579 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.360784 -s 0 -d 9 -p ack -e 40 -c 0 -i 572 -a 0 -x {10.0 9.0 281 ------- null} - -t 0.360784 -s 0 -d 9 -p ack -e 40 -c 0 -i 572 -a 0 -x {10.0 9.0 281 ------- null} h -t 0.360784 -s 0 -d 9 -p ack -e 40 -c 0 -i 572 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.36096 -s 10 -d 7 -p ack -e 40 -c 0 -i 576 -a 0 -x {10.0 9.0 283 ------- null} + -t 0.36096 -s 7 -d 0 -p ack -e 40 -c 0 -i 576 -a 0 -x {10.0 9.0 283 ------- null} h -t 0.36096 -s 7 -d 8 -p ack -e 40 -c 0 -i 576 -a 0 -x {10.0 9.0 283 ------- null} r -t 0.361104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 561 -a 0 -x {9.0 10.0 285 ------- null} + -t 0.361104 -s 10 -d 7 -p ack -e 40 -c 0 -i 580 -a 0 -x {10.0 9.0 285 ------- null} - -t 0.361104 -s 10 -d 7 -p ack -e 40 -c 0 -i 580 -a 0 -x {10.0 9.0 285 ------- null} h -t 0.361104 -s 10 -d 7 -p ack -e 40 -c 0 -i 580 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.361152 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 575 -a 0 -x {9.0 10.0 292 ------- null} + -t 0.361152 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 575 -a 0 -x {9.0 10.0 292 ------- null} h -t 0.361152 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 575 -a 0 -x {9.0 10.0 292 ------- null} r -t 0.361568 -s 0 -d 9 -p ack -e 40 -c 0 -i 570 -a 0 -x {10.0 9.0 280 ------- null} + -t 0.361568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 581 -a 0 -x {9.0 10.0 295 ------- null} - -t 0.361568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 581 -a 0 -x {9.0 10.0 295 ------- null} h -t 0.361568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 581 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.361808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 567 -a 0 -x {9.0 10.0 288 ------- null} - -t 0.361808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 567 -a 0 -x {9.0 10.0 288 ------- null} h -t 0.361808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 567 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.362048 -s 10 -d 7 -p ack -e 40 -c 0 -i 578 -a 0 -x {10.0 9.0 284 ------- null} + -t 0.362048 -s 7 -d 0 -p ack -e 40 -c 0 -i 578 -a 0 -x {10.0 9.0 284 ------- null} h -t 0.362048 -s 7 -d 8 -p ack -e 40 -c 0 -i 578 -a 0 -x {10.0 9.0 284 ------- null} + -t 0.36208 -s 0 -d 9 -p ack -e 40 -c 0 -i 574 -a 0 -x {10.0 9.0 282 ------- null} - -t 0.36208 -s 0 -d 9 -p ack -e 40 -c 0 -i 574 -a 0 -x {10.0 9.0 282 ------- null} h -t 0.36208 -s 0 -d 9 -p ack -e 40 -c 0 -i 574 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.362192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 563 -a 0 -x {9.0 10.0 286 ------- null} + -t 0.362192 -s 10 -d 7 -p ack -e 40 -c 0 -i 582 -a 0 -x {10.0 9.0 286 ------- null} - -t 0.362192 -s 10 -d 7 -p ack -e 40 -c 0 -i 582 -a 0 -x {10.0 9.0 286 ------- null} h -t 0.362192 -s 10 -d 7 -p ack -e 40 -c 0 -i 582 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.362272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 577 -a 0 -x {9.0 10.0 293 ------- null} + -t 0.362272 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 577 -a 0 -x {9.0 10.0 293 ------- null} h -t 0.362272 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 577 -a 0 -x {9.0 10.0 293 ------- null} r -t 0.362816 -s 0 -d 9 -p ack -e 40 -c 0 -i 572 -a 0 -x {10.0 9.0 281 ------- null} + -t 0.362816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {9.0 10.0 296 ------- null} - -t 0.362816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {9.0 10.0 296 ------- null} h -t 0.362816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.363056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 569 -a 0 -x {9.0 10.0 289 ------- null} - -t 0.363056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 569 -a 0 -x {9.0 10.0 289 ------- null} h -t 0.363056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 569 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.363136 -s 10 -d 7 -p ack -e 40 -c 0 -i 580 -a 0 -x {10.0 9.0 285 ------- null} + -t 0.363136 -s 7 -d 0 -p ack -e 40 -c 0 -i 580 -a 0 -x {10.0 9.0 285 ------- null} h -t 0.363136 -s 7 -d 8 -p ack -e 40 -c 0 -i 580 -a 0 -x {10.0 9.0 285 ------- null} r -t 0.36328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 565 -a 0 -x {9.0 10.0 287 ------- null} + -t 0.36328 -s 10 -d 7 -p ack -e 40 -c 0 -i 584 -a 0 -x {10.0 9.0 287 ------- null} - -t 0.36328 -s 10 -d 7 -p ack -e 40 -c 0 -i 584 -a 0 -x {10.0 9.0 287 ------- null} h -t 0.36328 -s 10 -d 7 -p ack -e 40 -c 0 -i 584 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.363328 -s 0 -d 9 -p ack -e 40 -c 0 -i 576 -a 0 -x {10.0 9.0 283 ------- null} - -t 0.363328 -s 0 -d 9 -p ack -e 40 -c 0 -i 576 -a 0 -x {10.0 9.0 283 ------- null} h -t 0.363328 -s 0 -d 9 -p ack -e 40 -c 0 -i 576 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.363344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 579 -a 0 -x {9.0 10.0 294 ------- null} + -t 0.363344 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 579 -a 0 -x {9.0 10.0 294 ------- null} h -t 0.363344 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 579 -a 0 -x {9.0 10.0 294 ------- null} r -t 0.364112 -s 0 -d 9 -p ack -e 40 -c 0 -i 574 -a 0 -x {10.0 9.0 282 ------- null} + -t 0.364112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {9.0 10.0 297 ------- null} - -t 0.364112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {9.0 10.0 297 ------- null} h -t 0.364112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.364224 -s 10 -d 7 -p ack -e 40 -c 0 -i 582 -a 0 -x {10.0 9.0 286 ------- null} + -t 0.364224 -s 7 -d 0 -p ack -e 40 -c 0 -i 582 -a 0 -x {10.0 9.0 286 ------- null} h -t 0.364224 -s 7 -d 8 -p ack -e 40 -c 0 -i 582 -a 0 -x {10.0 9.0 286 ------- null} + -t 0.364288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 571 -a 0 -x {9.0 10.0 290 ------- null} - -t 0.364288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 571 -a 0 -x {9.0 10.0 290 ------- null} h -t 0.364288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 571 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.364368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 581 -a 0 -x {9.0 10.0 295 ------- null} + -t 0.364368 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 581 -a 0 -x {9.0 10.0 295 ------- null} h -t 0.364368 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 581 -a 0 -x {9.0 10.0 295 ------- null} + -t 0.364576 -s 0 -d 9 -p ack -e 40 -c 0 -i 578 -a 0 -x {10.0 9.0 284 ------- null} - -t 0.364576 -s 0 -d 9 -p ack -e 40 -c 0 -i 578 -a 0 -x {10.0 9.0 284 ------- null} h -t 0.364576 -s 0 -d 9 -p ack -e 40 -c 0 -i 578 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.364608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 567 -a 0 -x {9.0 10.0 288 ------- null} + -t 0.364608 -s 10 -d 7 -p ack -e 40 -c 0 -i 586 -a 0 -x {10.0 9.0 288 ------- null} - -t 0.364608 -s 10 -d 7 -p ack -e 40 -c 0 -i 586 -a 0 -x {10.0 9.0 288 ------- null} h -t 0.364608 -s 10 -d 7 -p ack -e 40 -c 0 -i 586 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.365312 -s 10 -d 7 -p ack -e 40 -c 0 -i 584 -a 0 -x {10.0 9.0 287 ------- null} + -t 0.365312 -s 7 -d 0 -p ack -e 40 -c 0 -i 584 -a 0 -x {10.0 9.0 287 ------- null} h -t 0.365312 -s 7 -d 8 -p ack -e 40 -c 0 -i 584 -a 0 -x {10.0 9.0 287 ------- null} r -t 0.36536 -s 0 -d 9 -p ack -e 40 -c 0 -i 576 -a 0 -x {10.0 9.0 283 ------- null} + -t 0.36536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {9.0 10.0 298 ------- null} - -t 0.36536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {9.0 10.0 298 ------- null} h -t 0.36536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.365408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 573 -a 0 -x {9.0 10.0 291 ------- null} - -t 0.365408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 573 -a 0 -x {9.0 10.0 291 ------- null} h -t 0.365408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 573 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.365568 -s 0 -d 9 -p ack -e 40 -c 0 -i 580 -a 0 -x {10.0 9.0 285 ------- null} - -t 0.365568 -s 0 -d 9 -p ack -e 40 -c 0 -i 580 -a 0 -x {10.0 9.0 285 ------- null} h -t 0.365568 -s 0 -d 9 -p ack -e 40 -c 0 -i 580 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.365616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {9.0 10.0 296 ------- null} + -t 0.365616 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {9.0 10.0 296 ------- null} h -t 0.365616 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {9.0 10.0 296 ------- null} r -t 0.365856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 569 -a 0 -x {9.0 10.0 289 ------- null} + -t 0.365856 -s 10 -d 7 -p ack -e 40 -c 0 -i 588 -a 0 -x {10.0 9.0 289 ------- null} - -t 0.365856 -s 10 -d 7 -p ack -e 40 -c 0 -i 588 -a 0 -x {10.0 9.0 289 ------- null} h -t 0.365856 -s 10 -d 7 -p ack -e 40 -c 0 -i 588 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.366496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 575 -a 0 -x {9.0 10.0 292 ------- null} - -t 0.366496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 575 -a 0 -x {9.0 10.0 292 ------- null} h -t 0.366496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 575 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.36656 -s 0 -d 9 -p ack -e 40 -c 0 -i 582 -a 0 -x {10.0 9.0 286 ------- null} - -t 0.36656 -s 0 -d 9 -p ack -e 40 -c 0 -i 582 -a 0 -x {10.0 9.0 286 ------- null} h -t 0.36656 -s 0 -d 9 -p ack -e 40 -c 0 -i 582 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.366608 -s 0 -d 9 -p ack -e 40 -c 0 -i 578 -a 0 -x {10.0 9.0 284 ------- null} + -t 0.366608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {9.0 10.0 299 ------- null} - -t 0.366608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {9.0 10.0 299 ------- null} h -t 0.366608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.36664 -s 10 -d 7 -p ack -e 40 -c 0 -i 586 -a 0 -x {10.0 9.0 288 ------- null} + -t 0.36664 -s 7 -d 0 -p ack -e 40 -c 0 -i 586 -a 0 -x {10.0 9.0 288 ------- null} h -t 0.36664 -s 7 -d 8 -p ack -e 40 -c 0 -i 586 -a 0 -x {10.0 9.0 288 ------- null} r -t 0.366912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {9.0 10.0 297 ------- null} + -t 0.366912 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {9.0 10.0 297 ------- null} h -t 0.366912 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {9.0 10.0 297 ------- null} r -t 0.367088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 571 -a 0 -x {9.0 10.0 290 ------- null} + -t 0.367088 -s 10 -d 7 -p ack -e 40 -c 0 -i 590 -a 0 -x {10.0 9.0 290 ------- null} - -t 0.367088 -s 10 -d 7 -p ack -e 40 -c 0 -i 590 -a 0 -x {10.0 9.0 290 ------- null} h -t 0.367088 -s 10 -d 7 -p ack -e 40 -c 0 -i 590 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.367584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 577 -a 0 -x {9.0 10.0 293 ------- null} - -t 0.367584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 577 -a 0 -x {9.0 10.0 293 ------- null} h -t 0.367584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 577 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.3676 -s 0 -d 9 -p ack -e 40 -c 0 -i 580 -a 0 -x {10.0 9.0 285 ------- null} + -t 0.3676 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {9.0 10.0 300 ------- null} - -t 0.3676 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {9.0 10.0 300 ------- null} h -t 0.3676 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.367696 -s 0 -d 9 -p ack -e 40 -c 0 -i 584 -a 0 -x {10.0 9.0 287 ------- null} - -t 0.367696 -s 0 -d 9 -p ack -e 40 -c 0 -i 584 -a 0 -x {10.0 9.0 287 ------- null} h -t 0.367696 -s 0 -d 9 -p ack -e 40 -c 0 -i 584 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.367888 -s 10 -d 7 -p ack -e 40 -c 0 -i 588 -a 0 -x {10.0 9.0 289 ------- null} + -t 0.367888 -s 7 -d 0 -p ack -e 40 -c 0 -i 588 -a 0 -x {10.0 9.0 289 ------- null} h -t 0.367888 -s 7 -d 8 -p ack -e 40 -c 0 -i 588 -a 0 -x {10.0 9.0 289 ------- null} r -t 0.36816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {9.0 10.0 298 ------- null} + -t 0.36816 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {9.0 10.0 298 ------- null} h -t 0.36816 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {9.0 10.0 298 ------- null} r -t 0.368208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 573 -a 0 -x {9.0 10.0 291 ------- null} + -t 0.368208 -s 10 -d 7 -p ack -e 40 -c 0 -i 592 -a 0 -x {10.0 9.0 291 ------- null} - -t 0.368208 -s 10 -d 7 -p ack -e 40 -c 0 -i 592 -a 0 -x {10.0 9.0 291 ------- null} h -t 0.368208 -s 10 -d 7 -p ack -e 40 -c 0 -i 592 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.368592 -s 0 -d 9 -p ack -e 40 -c 0 -i 582 -a 0 -x {10.0 9.0 286 ------- null} + -t 0.368592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {9.0 10.0 301 ------- null} - -t 0.368592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {9.0 10.0 301 ------- null} h -t 0.368592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.368672 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 579 -a 0 -x {9.0 10.0 294 ------- null} - -t 0.368672 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 579 -a 0 -x {9.0 10.0 294 ------- null} h -t 0.368672 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 579 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.368912 -s 0 -d 9 -p ack -e 40 -c 0 -i 586 -a 0 -x {10.0 9.0 288 ------- null} - -t 0.368912 -s 0 -d 9 -p ack -e 40 -c 0 -i 586 -a 0 -x {10.0 9.0 288 ------- null} h -t 0.368912 -s 0 -d 9 -p ack -e 40 -c 0 -i 586 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.36912 -s 10 -d 7 -p ack -e 40 -c 0 -i 590 -a 0 -x {10.0 9.0 290 ------- null} + -t 0.36912 -s 7 -d 0 -p ack -e 40 -c 0 -i 590 -a 0 -x {10.0 9.0 290 ------- null} h -t 0.36912 -s 7 -d 8 -p ack -e 40 -c 0 -i 590 -a 0 -x {10.0 9.0 290 ------- null} r -t 0.369296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 575 -a 0 -x {9.0 10.0 292 ------- null} + -t 0.369296 -s 10 -d 7 -p ack -e 40 -c 0 -i 594 -a 0 -x {10.0 9.0 292 ------- null} - -t 0.369296 -s 10 -d 7 -p ack -e 40 -c 0 -i 594 -a 0 -x {10.0 9.0 292 ------- null} h -t 0.369296 -s 10 -d 7 -p ack -e 40 -c 0 -i 594 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.369408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {9.0 10.0 299 ------- null} + -t 0.369408 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {9.0 10.0 299 ------- null} h -t 0.369408 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {9.0 10.0 299 ------- null} r -t 0.369728 -s 0 -d 9 -p ack -e 40 -c 0 -i 584 -a 0 -x {10.0 9.0 287 ------- null} + -t 0.369728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {9.0 10.0 302 ------- null} - -t 0.369728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {9.0 10.0 302 ------- null} h -t 0.369728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.36976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 581 -a 0 -x {9.0 10.0 295 ------- null} - -t 0.36976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 581 -a 0 -x {9.0 10.0 295 ------- null} h -t 0.36976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 581 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.369952 -s 0 -d 9 -p ack -e 40 -c 0 -i 588 -a 0 -x {10.0 9.0 289 ------- null} - -t 0.369952 -s 0 -d 9 -p ack -e 40 -c 0 -i 588 -a 0 -x {10.0 9.0 289 ------- null} h -t 0.369952 -s 0 -d 9 -p ack -e 40 -c 0 -i 588 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.37024 -s 10 -d 7 -p ack -e 40 -c 0 -i 592 -a 0 -x {10.0 9.0 291 ------- null} + -t 0.37024 -s 7 -d 0 -p ack -e 40 -c 0 -i 592 -a 0 -x {10.0 9.0 291 ------- null} h -t 0.37024 -s 7 -d 8 -p ack -e 40 -c 0 -i 592 -a 0 -x {10.0 9.0 291 ------- null} r -t 0.370384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 577 -a 0 -x {9.0 10.0 293 ------- null} + -t 0.370384 -s 10 -d 7 -p ack -e 40 -c 0 -i 596 -a 0 -x {10.0 9.0 293 ------- null} - -t 0.370384 -s 10 -d 7 -p ack -e 40 -c 0 -i 596 -a 0 -x {10.0 9.0 293 ------- null} h -t 0.370384 -s 10 -d 7 -p ack -e 40 -c 0 -i 596 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.3704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {9.0 10.0 300 ------- null} + -t 0.3704 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {9.0 10.0 300 ------- null} h -t 0.3704 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {9.0 10.0 300 ------- null} + -t 0.370848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {9.0 10.0 296 ------- null} - -t 0.370848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {9.0 10.0 296 ------- null} h -t 0.370848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.370944 -s 0 -d 9 -p ack -e 40 -c 0 -i 590 -a 0 -x {10.0 9.0 290 ------- null} - -t 0.370944 -s 0 -d 9 -p ack -e 40 -c 0 -i 590 -a 0 -x {10.0 9.0 290 ------- null} h -t 0.370944 -s 0 -d 9 -p ack -e 40 -c 0 -i 590 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.370944 -s 0 -d 9 -p ack -e 40 -c 0 -i 586 -a 0 -x {10.0 9.0 288 ------- null} + -t 0.370944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {9.0 10.0 303 ------- null} - -t 0.370944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {9.0 10.0 303 ------- null} h -t 0.370944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.371328 -s 10 -d 7 -p ack -e 40 -c 0 -i 594 -a 0 -x {10.0 9.0 292 ------- null} + -t 0.371328 -s 7 -d 0 -p ack -e 40 -c 0 -i 594 -a 0 -x {10.0 9.0 292 ------- null} h -t 0.371328 -s 7 -d 8 -p ack -e 40 -c 0 -i 594 -a 0 -x {10.0 9.0 292 ------- null} r -t 0.371392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {9.0 10.0 301 ------- null} + -t 0.371392 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {9.0 10.0 301 ------- null} h -t 0.371392 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {9.0 10.0 301 ------- null} r -t 0.371472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 579 -a 0 -x {9.0 10.0 294 ------- null} + -t 0.371472 -s 10 -d 7 -p ack -e 40 -c 0 -i 598 -a 0 -x {10.0 9.0 294 ------- null} - -t 0.371472 -s 10 -d 7 -p ack -e 40 -c 0 -i 598 -a 0 -x {10.0 9.0 294 ------- null} h -t 0.371472 -s 10 -d 7 -p ack -e 40 -c 0 -i 598 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.371936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {9.0 10.0 297 ------- null} - -t 0.371936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {9.0 10.0 297 ------- null} h -t 0.371936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.371984 -s 0 -d 9 -p ack -e 40 -c 0 -i 588 -a 0 -x {10.0 9.0 289 ------- null} + -t 0.371984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {9.0 10.0 304 ------- null} - -t 0.371984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {9.0 10.0 304 ------- null} h -t 0.371984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.372048 -s 0 -d 9 -p ack -e 40 -c 0 -i 592 -a 0 -x {10.0 9.0 291 ------- null} - -t 0.372048 -s 0 -d 9 -p ack -e 40 -c 0 -i 592 -a 0 -x {10.0 9.0 291 ------- null} h -t 0.372048 -s 0 -d 9 -p ack -e 40 -c 0 -i 592 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.372416 -s 10 -d 7 -p ack -e 40 -c 0 -i 596 -a 0 -x {10.0 9.0 293 ------- null} + -t 0.372416 -s 7 -d 0 -p ack -e 40 -c 0 -i 596 -a 0 -x {10.0 9.0 293 ------- null} h -t 0.372416 -s 7 -d 8 -p ack -e 40 -c 0 -i 596 -a 0 -x {10.0 9.0 293 ------- null} r -t 0.372528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {9.0 10.0 302 ------- null} + -t 0.372528 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {9.0 10.0 302 ------- null} h -t 0.372528 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {9.0 10.0 302 ------- null} r -t 0.37256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 581 -a 0 -x {9.0 10.0 295 ------- null} + -t 0.37256 -s 10 -d 7 -p ack -e 40 -c 0 -i 600 -a 0 -x {10.0 9.0 295 ------- null} - -t 0.37256 -s 10 -d 7 -p ack -e 40 -c 0 -i 600 -a 0 -x {10.0 9.0 295 ------- null} h -t 0.37256 -s 10 -d 7 -p ack -e 40 -c 0 -i 600 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.372976 -s 0 -d 9 -p ack -e 40 -c 0 -i 590 -a 0 -x {10.0 9.0 290 ------- null} + -t 0.372976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {9.0 10.0 305 ------- null} - -t 0.372976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {9.0 10.0 305 ------- null} h -t 0.372976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.373024 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {9.0 10.0 298 ------- null} - -t 0.373024 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {9.0 10.0 298 ------- null} h -t 0.373024 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.37312 -s 0 -d 9 -p ack -e 40 -c 0 -i 594 -a 0 -x {10.0 9.0 292 ------- null} - -t 0.37312 -s 0 -d 9 -p ack -e 40 -c 0 -i 594 -a 0 -x {10.0 9.0 292 ------- null} h -t 0.37312 -s 0 -d 9 -p ack -e 40 -c 0 -i 594 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.373504 -s 10 -d 7 -p ack -e 40 -c 0 -i 598 -a 0 -x {10.0 9.0 294 ------- null} + -t 0.373504 -s 7 -d 0 -p ack -e 40 -c 0 -i 598 -a 0 -x {10.0 9.0 294 ------- null} h -t 0.373504 -s 7 -d 8 -p ack -e 40 -c 0 -i 598 -a 0 -x {10.0 9.0 294 ------- null} r -t 0.373648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 583 -a 0 -x {9.0 10.0 296 ------- null} + -t 0.373648 -s 10 -d 7 -p ack -e 40 -c 0 -i 602 -a 0 -x {10.0 9.0 296 ------- null} - -t 0.373648 -s 10 -d 7 -p ack -e 40 -c 0 -i 602 -a 0 -x {10.0 9.0 296 ------- null} h -t 0.373648 -s 10 -d 7 -p ack -e 40 -c 0 -i 602 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.373744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {9.0 10.0 303 ------- null} + -t 0.373744 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {9.0 10.0 303 ------- null} h -t 0.373744 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {9.0 10.0 303 ------- null} r -t 0.37408 -s 0 -d 9 -p ack -e 40 -c 0 -i 592 -a 0 -x {10.0 9.0 291 ------- null} + -t 0.37408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 603 -a 0 -x {9.0 10.0 306 ------- null} - -t 0.37408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 603 -a 0 -x {9.0 10.0 306 ------- null} h -t 0.37408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 603 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.374112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {9.0 10.0 299 ------- null} - -t 0.374112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {9.0 10.0 299 ------- null} h -t 0.374112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.374224 -s 0 -d 9 -p ack -e 40 -c 0 -i 596 -a 0 -x {10.0 9.0 293 ------- null} - -t 0.374224 -s 0 -d 9 -p ack -e 40 -c 0 -i 596 -a 0 -x {10.0 9.0 293 ------- null} h -t 0.374224 -s 0 -d 9 -p ack -e 40 -c 0 -i 596 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.374592 -s 10 -d 7 -p ack -e 40 -c 0 -i 600 -a 0 -x {10.0 9.0 295 ------- null} + -t 0.374592 -s 7 -d 0 -p ack -e 40 -c 0 -i 600 -a 0 -x {10.0 9.0 295 ------- null} h -t 0.374592 -s 7 -d 8 -p ack -e 40 -c 0 -i 600 -a 0 -x {10.0 9.0 295 ------- null} r -t 0.374736 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 585 -a 0 -x {9.0 10.0 297 ------- null} + -t 0.374736 -s 10 -d 7 -p ack -e 40 -c 0 -i 604 -a 0 -x {10.0 9.0 297 ------- null} - -t 0.374736 -s 10 -d 7 -p ack -e 40 -c 0 -i 604 -a 0 -x {10.0 9.0 297 ------- null} h -t 0.374736 -s 10 -d 7 -p ack -e 40 -c 0 -i 604 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.374784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {9.0 10.0 304 ------- null} + -t 0.374784 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {9.0 10.0 304 ------- null} h -t 0.374784 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {9.0 10.0 304 ------- null} r -t 0.375152 -s 0 -d 9 -p ack -e 40 -c 0 -i 594 -a 0 -x {10.0 9.0 292 ------- null} + -t 0.375152 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 605 -a 0 -x {9.0 10.0 307 ------- null} - -t 0.375152 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 605 -a 0 -x {9.0 10.0 307 ------- null} h -t 0.375152 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 605 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.3752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {9.0 10.0 300 ------- null} - -t 0.3752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {9.0 10.0 300 ------- null} h -t 0.3752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.37536 -s 0 -d 9 -p ack -e 40 -c 0 -i 598 -a 0 -x {10.0 9.0 294 ------- null} - -t 0.37536 -s 0 -d 9 -p ack -e 40 -c 0 -i 598 -a 0 -x {10.0 9.0 294 ------- null} h -t 0.37536 -s 0 -d 9 -p ack -e 40 -c 0 -i 598 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.37568 -s 10 -d 7 -p ack -e 40 -c 0 -i 602 -a 0 -x {10.0 9.0 296 ------- null} + -t 0.37568 -s 7 -d 0 -p ack -e 40 -c 0 -i 602 -a 0 -x {10.0 9.0 296 ------- null} h -t 0.37568 -s 7 -d 8 -p ack -e 40 -c 0 -i 602 -a 0 -x {10.0 9.0 296 ------- null} r -t 0.375776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {9.0 10.0 305 ------- null} + -t 0.375776 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {9.0 10.0 305 ------- null} h -t 0.375776 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {9.0 10.0 305 ------- null} r -t 0.375824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 587 -a 0 -x {9.0 10.0 298 ------- null} + -t 0.375824 -s 10 -d 7 -p ack -e 40 -c 0 -i 606 -a 0 -x {10.0 9.0 298 ------- null} - -t 0.375824 -s 10 -d 7 -p ack -e 40 -c 0 -i 606 -a 0 -x {10.0 9.0 298 ------- null} h -t 0.375824 -s 10 -d 7 -p ack -e 40 -c 0 -i 606 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.376256 -s 0 -d 9 -p ack -e 40 -c 0 -i 596 -a 0 -x {10.0 9.0 293 ------- null} + -t 0.376256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 607 -a 0 -x {9.0 10.0 308 ------- null} - -t 0.376256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 607 -a 0 -x {9.0 10.0 308 ------- null} h -t 0.376256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 607 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.376288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {9.0 10.0 301 ------- null} - -t 0.376288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {9.0 10.0 301 ------- null} h -t 0.376288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.376352 -s 0 -d 9 -p ack -e 40 -c 0 -i 600 -a 0 -x {10.0 9.0 295 ------- null} - -t 0.376352 -s 0 -d 9 -p ack -e 40 -c 0 -i 600 -a 0 -x {10.0 9.0 295 ------- null} h -t 0.376352 -s 0 -d 9 -p ack -e 40 -c 0 -i 600 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.376768 -s 10 -d 7 -p ack -e 40 -c 0 -i 604 -a 0 -x {10.0 9.0 297 ------- null} + -t 0.376768 -s 7 -d 0 -p ack -e 40 -c 0 -i 604 -a 0 -x {10.0 9.0 297 ------- null} h -t 0.376768 -s 7 -d 8 -p ack -e 40 -c 0 -i 604 -a 0 -x {10.0 9.0 297 ------- null} r -t 0.37688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 603 -a 0 -x {9.0 10.0 306 ------- null} + -t 0.37688 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 603 -a 0 -x {9.0 10.0 306 ------- null} h -t 0.37688 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 603 -a 0 -x {9.0 10.0 306 ------- null} r -t 0.376912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 589 -a 0 -x {9.0 10.0 299 ------- null} + -t 0.376912 -s 10 -d 7 -p ack -e 40 -c 0 -i 608 -a 0 -x {10.0 9.0 299 ------- null} - -t 0.376912 -s 10 -d 7 -p ack -e 40 -c 0 -i 608 -a 0 -x {10.0 9.0 299 ------- null} h -t 0.376912 -s 10 -d 7 -p ack -e 40 -c 0 -i 608 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.377376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {9.0 10.0 302 ------- null} - -t 0.377376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {9.0 10.0 302 ------- null} h -t 0.377376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.377392 -s 0 -d 9 -p ack -e 40 -c 0 -i 598 -a 0 -x {10.0 9.0 294 ------- null} + -t 0.377392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 609 -a 0 -x {9.0 10.0 309 ------- null} - -t 0.377392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 609 -a 0 -x {9.0 10.0 309 ------- null} h -t 0.377392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 609 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.377664 -s 0 -d 9 -p ack -e 40 -c 0 -i 602 -a 0 -x {10.0 9.0 296 ------- null} - -t 0.377664 -s 0 -d 9 -p ack -e 40 -c 0 -i 602 -a 0 -x {10.0 9.0 296 ------- null} h -t 0.377664 -s 0 -d 9 -p ack -e 40 -c 0 -i 602 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.377856 -s 10 -d 7 -p ack -e 40 -c 0 -i 606 -a 0 -x {10.0 9.0 298 ------- null} + -t 0.377856 -s 7 -d 0 -p ack -e 40 -c 0 -i 606 -a 0 -x {10.0 9.0 298 ------- null} h -t 0.377856 -s 7 -d 8 -p ack -e 40 -c 0 -i 606 -a 0 -x {10.0 9.0 298 ------- null} r -t 0.377952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 605 -a 0 -x {9.0 10.0 307 ------- null} + -t 0.377952 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 605 -a 0 -x {9.0 10.0 307 ------- null} h -t 0.377952 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 605 -a 0 -x {9.0 10.0 307 ------- null} r -t 0.378 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 591 -a 0 -x {9.0 10.0 300 ------- null} + -t 0.378 -s 10 -d 7 -p ack -e 40 -c 0 -i 610 -a 0 -x {10.0 9.0 300 ------- null} - -t 0.378 -s 10 -d 7 -p ack -e 40 -c 0 -i 610 -a 0 -x {10.0 9.0 300 ------- null} h -t 0.378 -s 10 -d 7 -p ack -e 40 -c 0 -i 610 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.378384 -s 0 -d 9 -p ack -e 40 -c 0 -i 600 -a 0 -x {10.0 9.0 295 ------- null} + -t 0.378384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 611 -a 0 -x {9.0 10.0 310 ------- null} - -t 0.378384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 611 -a 0 -x {9.0 10.0 310 ------- null} h -t 0.378384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 611 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.378672 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {9.0 10.0 303 ------- null} - -t 0.378672 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {9.0 10.0 303 ------- null} h -t 0.378672 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.37888 -s 0 -d 9 -p ack -e 40 -c 0 -i 604 -a 0 -x {10.0 9.0 297 ------- null} - -t 0.37888 -s 0 -d 9 -p ack -e 40 -c 0 -i 604 -a 0 -x {10.0 9.0 297 ------- null} h -t 0.37888 -s 0 -d 9 -p ack -e 40 -c 0 -i 604 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.378944 -s 10 -d 7 -p ack -e 40 -c 0 -i 608 -a 0 -x {10.0 9.0 299 ------- null} + -t 0.378944 -s 7 -d 0 -p ack -e 40 -c 0 -i 608 -a 0 -x {10.0 9.0 299 ------- null} h -t 0.378944 -s 7 -d 8 -p ack -e 40 -c 0 -i 608 -a 0 -x {10.0 9.0 299 ------- null} r -t 0.379056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 607 -a 0 -x {9.0 10.0 308 ------- null} + -t 0.379056 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 607 -a 0 -x {9.0 10.0 308 ------- null} h -t 0.379056 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 607 -a 0 -x {9.0 10.0 308 ------- null} r -t 0.379088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 593 -a 0 -x {9.0 10.0 301 ------- null} + -t 0.379088 -s 10 -d 7 -p ack -e 40 -c 0 -i 612 -a 0 -x {10.0 9.0 301 ------- null} - -t 0.379088 -s 10 -d 7 -p ack -e 40 -c 0 -i 612 -a 0 -x {10.0 9.0 301 ------- null} h -t 0.379088 -s 10 -d 7 -p ack -e 40 -c 0 -i 612 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.379696 -s 0 -d 9 -p ack -e 40 -c 0 -i 602 -a 0 -x {10.0 9.0 296 ------- null} + -t 0.379696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 613 -a 0 -x {9.0 10.0 311 ------- null} - -t 0.379696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 613 -a 0 -x {9.0 10.0 311 ------- null} h -t 0.379696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 613 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.37976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {9.0 10.0 304 ------- null} - -t 0.37976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {9.0 10.0 304 ------- null} h -t 0.37976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.379968 -s 0 -d 9 -p ack -e 40 -c 0 -i 606 -a 0 -x {10.0 9.0 298 ------- null} - -t 0.379968 -s 0 -d 9 -p ack -e 40 -c 0 -i 606 -a 0 -x {10.0 9.0 298 ------- null} h -t 0.379968 -s 0 -d 9 -p ack -e 40 -c 0 -i 606 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.380032 -s 10 -d 7 -p ack -e 40 -c 0 -i 610 -a 0 -x {10.0 9.0 300 ------- null} + -t 0.380032 -s 7 -d 0 -p ack -e 40 -c 0 -i 610 -a 0 -x {10.0 9.0 300 ------- null} h -t 0.380032 -s 7 -d 8 -p ack -e 40 -c 0 -i 610 -a 0 -x {10.0 9.0 300 ------- null} r -t 0.380176 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 595 -a 0 -x {9.0 10.0 302 ------- null} + -t 0.380176 -s 10 -d 7 -p ack -e 40 -c 0 -i 614 -a 0 -x {10.0 9.0 302 ------- null} - -t 0.380176 -s 10 -d 7 -p ack -e 40 -c 0 -i 614 -a 0 -x {10.0 9.0 302 ------- null} h -t 0.380176 -s 10 -d 7 -p ack -e 40 -c 0 -i 614 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.380192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 609 -a 0 -x {9.0 10.0 309 ------- null} + -t 0.380192 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 609 -a 0 -x {9.0 10.0 309 ------- null} h -t 0.380192 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 609 -a 0 -x {9.0 10.0 309 ------- null} + -t 0.380848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {9.0 10.0 305 ------- null} - -t 0.380848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {9.0 10.0 305 ------- null} h -t 0.380848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.380912 -s 0 -d 9 -p ack -e 40 -c 0 -i 604 -a 0 -x {10.0 9.0 297 ------- null} + -t 0.380912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 615 -a 0 -x {9.0 10.0 312 ------- null} - -t 0.380912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 615 -a 0 -x {9.0 10.0 312 ------- null} h -t 0.380912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 615 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.380944 -s 0 -d 9 -p ack -e 40 -c 0 -i 608 -a 0 -x {10.0 9.0 299 ------- null} - -t 0.380944 -s 0 -d 9 -p ack -e 40 -c 0 -i 608 -a 0 -x {10.0 9.0 299 ------- null} h -t 0.380944 -s 0 -d 9 -p ack -e 40 -c 0 -i 608 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.38112 -s 10 -d 7 -p ack -e 40 -c 0 -i 612 -a 0 -x {10.0 9.0 301 ------- null} + -t 0.38112 -s 7 -d 0 -p ack -e 40 -c 0 -i 612 -a 0 -x {10.0 9.0 301 ------- null} h -t 0.38112 -s 7 -d 8 -p ack -e 40 -c 0 -i 612 -a 0 -x {10.0 9.0 301 ------- null} r -t 0.381184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 611 -a 0 -x {9.0 10.0 310 ------- null} + -t 0.381184 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 611 -a 0 -x {9.0 10.0 310 ------- null} h -t 0.381184 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 611 -a 0 -x {9.0 10.0 310 ------- null} r -t 0.381472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 597 -a 0 -x {9.0 10.0 303 ------- null} + -t 0.381472 -s 10 -d 7 -p ack -e 40 -c 0 -i 616 -a 0 -x {10.0 9.0 303 ------- null} - -t 0.381472 -s 10 -d 7 -p ack -e 40 -c 0 -i 616 -a 0 -x {10.0 9.0 303 ------- null} h -t 0.381472 -s 10 -d 7 -p ack -e 40 -c 0 -i 616 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.381936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 603 -a 0 -x {9.0 10.0 306 ------- null} - -t 0.381936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 603 -a 0 -x {9.0 10.0 306 ------- null} h -t 0.381936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 603 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.382 -s 0 -d 9 -p ack -e 40 -c 0 -i 606 -a 0 -x {10.0 9.0 298 ------- null} + -t 0.382 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 617 -a 0 -x {9.0 10.0 313 ------- null} - -t 0.382 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 617 -a 0 -x {9.0 10.0 313 ------- null} h -t 0.382 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 617 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.382144 -s 0 -d 9 -p ack -e 40 -c 0 -i 610 -a 0 -x {10.0 9.0 300 ------- null} - -t 0.382144 -s 0 -d 9 -p ack -e 40 -c 0 -i 610 -a 0 -x {10.0 9.0 300 ------- null} h -t 0.382144 -s 0 -d 9 -p ack -e 40 -c 0 -i 610 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.382208 -s 10 -d 7 -p ack -e 40 -c 0 -i 614 -a 0 -x {10.0 9.0 302 ------- null} + -t 0.382208 -s 7 -d 0 -p ack -e 40 -c 0 -i 614 -a 0 -x {10.0 9.0 302 ------- null} h -t 0.382208 -s 7 -d 8 -p ack -e 40 -c 0 -i 614 -a 0 -x {10.0 9.0 302 ------- null} r -t 0.382496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 613 -a 0 -x {9.0 10.0 311 ------- null} + -t 0.382496 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 613 -a 0 -x {9.0 10.0 311 ------- null} h -t 0.382496 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 613 -a 0 -x {9.0 10.0 311 ------- null} r -t 0.38256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 599 -a 0 -x {9.0 10.0 304 ------- null} + -t 0.38256 -s 10 -d 7 -p ack -e 40 -c 0 -i 618 -a 0 -x {10.0 9.0 304 ------- null} - -t 0.38256 -s 10 -d 7 -p ack -e 40 -c 0 -i 618 -a 0 -x {10.0 9.0 304 ------- null} h -t 0.38256 -s 10 -d 7 -p ack -e 40 -c 0 -i 618 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.382976 -s 0 -d 9 -p ack -e 40 -c 0 -i 608 -a 0 -x {10.0 9.0 299 ------- null} + -t 0.382976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 619 -a 0 -x {9.0 10.0 314 ------- null} - -t 0.382976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 619 -a 0 -x {9.0 10.0 314 ------- null} h -t 0.382976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 619 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.383024 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 605 -a 0 -x {9.0 10.0 307 ------- null} - -t 0.383024 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 605 -a 0 -x {9.0 10.0 307 ------- null} h -t 0.383024 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 605 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.383088 -s 0 -d 9 -p ack -e 40 -c 0 -i 612 -a 0 -x {10.0 9.0 301 ------- null} - -t 0.383088 -s 0 -d 9 -p ack -e 40 -c 0 -i 612 -a 0 -x {10.0 9.0 301 ------- null} h -t 0.383088 -s 0 -d 9 -p ack -e 40 -c 0 -i 612 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.383504 -s 10 -d 7 -p ack -e 40 -c 0 -i 616 -a 0 -x {10.0 9.0 303 ------- null} + -t 0.383504 -s 7 -d 0 -p ack -e 40 -c 0 -i 616 -a 0 -x {10.0 9.0 303 ------- null} h -t 0.383504 -s 7 -d 8 -p ack -e 40 -c 0 -i 616 -a 0 -x {10.0 9.0 303 ------- null} r -t 0.383648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 601 -a 0 -x {9.0 10.0 305 ------- null} + -t 0.383648 -s 10 -d 7 -p ack -e 40 -c 0 -i 620 -a 0 -x {10.0 9.0 305 ------- null} - -t 0.383648 -s 10 -d 7 -p ack -e 40 -c 0 -i 620 -a 0 -x {10.0 9.0 305 ------- null} h -t 0.383648 -s 10 -d 7 -p ack -e 40 -c 0 -i 620 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.383712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 615 -a 0 -x {9.0 10.0 312 ------- null} + -t 0.383712 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 615 -a 0 -x {9.0 10.0 312 ------- null} h -t 0.383712 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 615 -a 0 -x {9.0 10.0 312 ------- null} + -t 0.384112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 607 -a 0 -x {9.0 10.0 308 ------- null} - -t 0.384112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 607 -a 0 -x {9.0 10.0 308 ------- null} h -t 0.384112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 607 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.384176 -s 0 -d 9 -p ack -e 40 -c 0 -i 610 -a 0 -x {10.0 9.0 300 ------- null} + -t 0.384176 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 621 -a 0 -x {9.0 10.0 315 ------- null} - -t 0.384176 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 621 -a 0 -x {9.0 10.0 315 ------- null} h -t 0.384176 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 621 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.384208 -s 0 -d 9 -p ack -e 40 -c 0 -i 614 -a 0 -x {10.0 9.0 302 ------- null} - -t 0.384208 -s 0 -d 9 -p ack -e 40 -c 0 -i 614 -a 0 -x {10.0 9.0 302 ------- null} h -t 0.384208 -s 0 -d 9 -p ack -e 40 -c 0 -i 614 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.384592 -s 10 -d 7 -p ack -e 40 -c 0 -i 618 -a 0 -x {10.0 9.0 304 ------- null} + -t 0.384592 -s 7 -d 0 -p ack -e 40 -c 0 -i 618 -a 0 -x {10.0 9.0 304 ------- null} h -t 0.384592 -s 7 -d 8 -p ack -e 40 -c 0 -i 618 -a 0 -x {10.0 9.0 304 ------- null} r -t 0.384736 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 603 -a 0 -x {9.0 10.0 306 ------- null} + -t 0.384736 -s 10 -d 7 -p ack -e 40 -c 0 -i 622 -a 0 -x {10.0 9.0 306 ------- null} - -t 0.384736 -s 10 -d 7 -p ack -e 40 -c 0 -i 622 -a 0 -x {10.0 9.0 306 ------- null} h -t 0.384736 -s 10 -d 7 -p ack -e 40 -c 0 -i 622 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.3848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 617 -a 0 -x {9.0 10.0 313 ------- null} + -t 0.3848 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 617 -a 0 -x {9.0 10.0 313 ------- null} h -t 0.3848 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 617 -a 0 -x {9.0 10.0 313 ------- null} r -t 0.38512 -s 0 -d 9 -p ack -e 40 -c 0 -i 612 -a 0 -x {10.0 9.0 301 ------- null} + -t 0.38512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {9.0 10.0 316 ------- null} - -t 0.38512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {9.0 10.0 316 ------- null} h -t 0.38512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.3852 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 609 -a 0 -x {9.0 10.0 309 ------- null} - -t 0.3852 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 609 -a 0 -x {9.0 10.0 309 ------- null} h -t 0.3852 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 609 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.385296 -s 0 -d 9 -p ack -e 40 -c 0 -i 616 -a 0 -x {10.0 9.0 303 ------- null} - -t 0.385296 -s 0 -d 9 -p ack -e 40 -c 0 -i 616 -a 0 -x {10.0 9.0 303 ------- null} h -t 0.385296 -s 0 -d 9 -p ack -e 40 -c 0 -i 616 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.38568 -s 10 -d 7 -p ack -e 40 -c 0 -i 620 -a 0 -x {10.0 9.0 305 ------- null} + -t 0.38568 -s 7 -d 0 -p ack -e 40 -c 0 -i 620 -a 0 -x {10.0 9.0 305 ------- null} h -t 0.38568 -s 7 -d 8 -p ack -e 40 -c 0 -i 620 -a 0 -x {10.0 9.0 305 ------- null} r -t 0.385776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 619 -a 0 -x {9.0 10.0 314 ------- null} + -t 0.385776 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 619 -a 0 -x {9.0 10.0 314 ------- null} h -t 0.385776 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 619 -a 0 -x {9.0 10.0 314 ------- null} r -t 0.385824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 605 -a 0 -x {9.0 10.0 307 ------- null} + -t 0.385824 -s 10 -d 7 -p ack -e 40 -c 0 -i 624 -a 0 -x {10.0 9.0 307 ------- null} - -t 0.385824 -s 10 -d 7 -p ack -e 40 -c 0 -i 624 -a 0 -x {10.0 9.0 307 ------- null} h -t 0.385824 -s 10 -d 7 -p ack -e 40 -c 0 -i 624 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.38624 -s 0 -d 9 -p ack -e 40 -c 0 -i 614 -a 0 -x {10.0 9.0 302 ------- null} + -t 0.38624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {9.0 10.0 317 ------- null} - -t 0.38624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {9.0 10.0 317 ------- null} h -t 0.38624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.386288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 611 -a 0 -x {9.0 10.0 310 ------- null} - -t 0.386288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 611 -a 0 -x {9.0 10.0 310 ------- null} h -t 0.386288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 611 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.38656 -s 0 -d 9 -p ack -e 40 -c 0 -i 618 -a 0 -x {10.0 9.0 304 ------- null} - -t 0.38656 -s 0 -d 9 -p ack -e 40 -c 0 -i 618 -a 0 -x {10.0 9.0 304 ------- null} h -t 0.38656 -s 0 -d 9 -p ack -e 40 -c 0 -i 618 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.386768 -s 10 -d 7 -p ack -e 40 -c 0 -i 622 -a 0 -x {10.0 9.0 306 ------- null} + -t 0.386768 -s 7 -d 0 -p ack -e 40 -c 0 -i 622 -a 0 -x {10.0 9.0 306 ------- null} h -t 0.386768 -s 7 -d 8 -p ack -e 40 -c 0 -i 622 -a 0 -x {10.0 9.0 306 ------- null} r -t 0.386912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 607 -a 0 -x {9.0 10.0 308 ------- null} + -t 0.386912 -s 10 -d 7 -p ack -e 40 -c 0 -i 626 -a 0 -x {10.0 9.0 308 ------- null} - -t 0.386912 -s 10 -d 7 -p ack -e 40 -c 0 -i 626 -a 0 -x {10.0 9.0 308 ------- null} h -t 0.386912 -s 10 -d 7 -p ack -e 40 -c 0 -i 626 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.386976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 621 -a 0 -x {9.0 10.0 315 ------- null} + -t 0.386976 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 621 -a 0 -x {9.0 10.0 315 ------- null} h -t 0.386976 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 621 -a 0 -x {9.0 10.0 315 ------- null} r -t 0.387328 -s 0 -d 9 -p ack -e 40 -c 0 -i 616 -a 0 -x {10.0 9.0 303 ------- null} + -t 0.387328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {9.0 10.0 318 ------- null} - -t 0.387328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {9.0 10.0 318 ------- null} h -t 0.387328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.387536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 613 -a 0 -x {9.0 10.0 311 ------- null} - -t 0.387536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 613 -a 0 -x {9.0 10.0 311 ------- null} h -t 0.387536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 613 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.387616 -s 0 -d 9 -p ack -e 40 -c 0 -i 620 -a 0 -x {10.0 9.0 305 ------- null} - -t 0.387616 -s 0 -d 9 -p ack -e 40 -c 0 -i 620 -a 0 -x {10.0 9.0 305 ------- null} h -t 0.387616 -s 0 -d 9 -p ack -e 40 -c 0 -i 620 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.387856 -s 10 -d 7 -p ack -e 40 -c 0 -i 624 -a 0 -x {10.0 9.0 307 ------- null} + -t 0.387856 -s 7 -d 0 -p ack -e 40 -c 0 -i 624 -a 0 -x {10.0 9.0 307 ------- null} h -t 0.387856 -s 7 -d 8 -p ack -e 40 -c 0 -i 624 -a 0 -x {10.0 9.0 307 ------- null} r -t 0.38792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {9.0 10.0 316 ------- null} + -t 0.38792 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {9.0 10.0 316 ------- null} h -t 0.38792 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {9.0 10.0 316 ------- null} r -t 0.388 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 609 -a 0 -x {9.0 10.0 309 ------- null} + -t 0.388 -s 10 -d 7 -p ack -e 40 -c 0 -i 628 -a 0 -x {10.0 9.0 309 ------- null} - -t 0.388 -s 10 -d 7 -p ack -e 40 -c 0 -i 628 -a 0 -x {10.0 9.0 309 ------- null} h -t 0.388 -s 10 -d 7 -p ack -e 40 -c 0 -i 628 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.388592 -s 0 -d 9 -p ack -e 40 -c 0 -i 618 -a 0 -x {10.0 9.0 304 ------- null} + -t 0.388592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {9.0 10.0 319 ------- null} - -t 0.388592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {9.0 10.0 319 ------- null} h -t 0.388592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.388624 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 615 -a 0 -x {9.0 10.0 312 ------- null} - -t 0.388624 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 615 -a 0 -x {9.0 10.0 312 ------- null} h -t 0.388624 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 615 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.3888 -s 0 -d 9 -p ack -e 40 -c 0 -i 622 -a 0 -x {10.0 9.0 306 ------- null} - -t 0.3888 -s 0 -d 9 -p ack -e 40 -c 0 -i 622 -a 0 -x {10.0 9.0 306 ------- null} h -t 0.3888 -s 0 -d 9 -p ack -e 40 -c 0 -i 622 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.388944 -s 10 -d 7 -p ack -e 40 -c 0 -i 626 -a 0 -x {10.0 9.0 308 ------- null} + -t 0.388944 -s 7 -d 0 -p ack -e 40 -c 0 -i 626 -a 0 -x {10.0 9.0 308 ------- null} h -t 0.388944 -s 7 -d 8 -p ack -e 40 -c 0 -i 626 -a 0 -x {10.0 9.0 308 ------- null} r -t 0.38904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {9.0 10.0 317 ------- null} + -t 0.38904 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {9.0 10.0 317 ------- null} h -t 0.38904 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {9.0 10.0 317 ------- null} r -t 0.389088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 611 -a 0 -x {9.0 10.0 310 ------- null} + -t 0.389088 -s 10 -d 7 -p ack -e 40 -c 0 -i 630 -a 0 -x {10.0 9.0 310 ------- null} - -t 0.389088 -s 10 -d 7 -p ack -e 40 -c 0 -i 630 -a 0 -x {10.0 9.0 310 ------- null} h -t 0.389088 -s 10 -d 7 -p ack -e 40 -c 0 -i 630 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.389648 -s 0 -d 9 -p ack -e 40 -c 0 -i 620 -a 0 -x {10.0 9.0 305 ------- null} + -t 0.389648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {9.0 10.0 320 ------- null} - -t 0.389648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {9.0 10.0 320 ------- null} h -t 0.389648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.389712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 617 -a 0 -x {9.0 10.0 313 ------- null} - -t 0.389712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 617 -a 0 -x {9.0 10.0 313 ------- null} h -t 0.389712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 617 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.389824 -s 0 -d 9 -p ack -e 40 -c 0 -i 624 -a 0 -x {10.0 9.0 307 ------- null} - -t 0.389824 -s 0 -d 9 -p ack -e 40 -c 0 -i 624 -a 0 -x {10.0 9.0 307 ------- null} h -t 0.389824 -s 0 -d 9 -p ack -e 40 -c 0 -i 624 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.390032 -s 10 -d 7 -p ack -e 40 -c 0 -i 628 -a 0 -x {10.0 9.0 309 ------- null} + -t 0.390032 -s 7 -d 0 -p ack -e 40 -c 0 -i 628 -a 0 -x {10.0 9.0 309 ------- null} h -t 0.390032 -s 7 -d 8 -p ack -e 40 -c 0 -i 628 -a 0 -x {10.0 9.0 309 ------- null} r -t 0.390128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {9.0 10.0 318 ------- null} + -t 0.390128 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {9.0 10.0 318 ------- null} h -t 0.390128 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {9.0 10.0 318 ------- null} r -t 0.390336 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 613 -a 0 -x {9.0 10.0 311 ------- null} + -t 0.390336 -s 10 -d 7 -p ack -e 40 -c 0 -i 632 -a 0 -x {10.0 9.0 311 ------- null} - -t 0.390336 -s 10 -d 7 -p ack -e 40 -c 0 -i 632 -a 0 -x {10.0 9.0 311 ------- null} h -t 0.390336 -s 10 -d 7 -p ack -e 40 -c 0 -i 632 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.3908 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 619 -a 0 -x {9.0 10.0 314 ------- null} - -t 0.3908 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 619 -a 0 -x {9.0 10.0 314 ------- null} h -t 0.3908 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 619 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.390832 -s 0 -d 9 -p ack -e 40 -c 0 -i 622 -a 0 -x {10.0 9.0 306 ------- null} + -t 0.390832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {9.0 10.0 321 ------- null} - -t 0.390832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {9.0 10.0 321 ------- null} h -t 0.390832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.39096 -s 0 -d 9 -p ack -e 40 -c 0 -i 626 -a 0 -x {10.0 9.0 308 ------- null} - -t 0.39096 -s 0 -d 9 -p ack -e 40 -c 0 -i 626 -a 0 -x {10.0 9.0 308 ------- null} h -t 0.39096 -s 0 -d 9 -p ack -e 40 -c 0 -i 626 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.39112 -s 10 -d 7 -p ack -e 40 -c 0 -i 630 -a 0 -x {10.0 9.0 310 ------- null} + -t 0.39112 -s 7 -d 0 -p ack -e 40 -c 0 -i 630 -a 0 -x {10.0 9.0 310 ------- null} h -t 0.39112 -s 7 -d 8 -p ack -e 40 -c 0 -i 630 -a 0 -x {10.0 9.0 310 ------- null} r -t 0.391392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {9.0 10.0 319 ------- null} + -t 0.391392 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {9.0 10.0 319 ------- null} h -t 0.391392 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {9.0 10.0 319 ------- null} r -t 0.391424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 615 -a 0 -x {9.0 10.0 312 ------- null} + -t 0.391424 -s 10 -d 7 -p ack -e 40 -c 0 -i 634 -a 0 -x {10.0 9.0 312 ------- null} - -t 0.391424 -s 10 -d 7 -p ack -e 40 -c 0 -i 634 -a 0 -x {10.0 9.0 312 ------- null} h -t 0.391424 -s 10 -d 7 -p ack -e 40 -c 0 -i 634 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.391856 -s 0 -d 9 -p ack -e 40 -c 0 -i 624 -a 0 -x {10.0 9.0 307 ------- null} + -t 0.391856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {9.0 10.0 322 ------- null} - -t 0.391856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {9.0 10.0 322 ------- null} h -t 0.391856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.391888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 621 -a 0 -x {9.0 10.0 315 ------- null} - -t 0.391888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 621 -a 0 -x {9.0 10.0 315 ------- null} h -t 0.391888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 621 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.392032 -s 0 -d 9 -p ack -e 40 -c 0 -i 628 -a 0 -x {10.0 9.0 309 ------- null} - -t 0.392032 -s 0 -d 9 -p ack -e 40 -c 0 -i 628 -a 0 -x {10.0 9.0 309 ------- null} h -t 0.392032 -s 0 -d 9 -p ack -e 40 -c 0 -i 628 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.392368 -s 10 -d 7 -p ack -e 40 -c 0 -i 632 -a 0 -x {10.0 9.0 311 ------- null} + -t 0.392368 -s 7 -d 0 -p ack -e 40 -c 0 -i 632 -a 0 -x {10.0 9.0 311 ------- null} h -t 0.392368 -s 7 -d 8 -p ack -e 40 -c 0 -i 632 -a 0 -x {10.0 9.0 311 ------- null} r -t 0.392448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {9.0 10.0 320 ------- null} + -t 0.392448 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {9.0 10.0 320 ------- null} h -t 0.392448 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {9.0 10.0 320 ------- null} r -t 0.392512 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 617 -a 0 -x {9.0 10.0 313 ------- null} + -t 0.392512 -s 10 -d 7 -p ack -e 40 -c 0 -i 636 -a 0 -x {10.0 9.0 313 ------- null} - -t 0.392512 -s 10 -d 7 -p ack -e 40 -c 0 -i 636 -a 0 -x {10.0 9.0 313 ------- null} h -t 0.392512 -s 10 -d 7 -p ack -e 40 -c 0 -i 636 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.392976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {9.0 10.0 316 ------- null} - -t 0.392976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {9.0 10.0 316 ------- null} h -t 0.392976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.392992 -s 0 -d 9 -p ack -e 40 -c 0 -i 626 -a 0 -x {10.0 9.0 308 ------- null} + -t 0.392992 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {9.0 10.0 323 ------- null} - -t 0.392992 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {9.0 10.0 323 ------- null} h -t 0.392992 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.393088 -s 0 -d 9 -p ack -e 40 -c 0 -i 630 -a 0 -x {10.0 9.0 310 ------- null} - -t 0.393088 -s 0 -d 9 -p ack -e 40 -c 0 -i 630 -a 0 -x {10.0 9.0 310 ------- null} h -t 0.393088 -s 0 -d 9 -p ack -e 40 -c 0 -i 630 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.393456 -s 10 -d 7 -p ack -e 40 -c 0 -i 634 -a 0 -x {10.0 9.0 312 ------- null} + -t 0.393456 -s 7 -d 0 -p ack -e 40 -c 0 -i 634 -a 0 -x {10.0 9.0 312 ------- null} h -t 0.393456 -s 7 -d 8 -p ack -e 40 -c 0 -i 634 -a 0 -x {10.0 9.0 312 ------- null} r -t 0.3936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 619 -a 0 -x {9.0 10.0 314 ------- null} + -t 0.3936 -s 10 -d 7 -p ack -e 40 -c 0 -i 638 -a 0 -x {10.0 9.0 314 ------- null} - -t 0.3936 -s 10 -d 7 -p ack -e 40 -c 0 -i 638 -a 0 -x {10.0 9.0 314 ------- null} h -t 0.3936 -s 10 -d 7 -p ack -e 40 -c 0 -i 638 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.393632 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {9.0 10.0 321 ------- null} + -t 0.393632 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {9.0 10.0 321 ------- null} h -t 0.393632 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {9.0 10.0 321 ------- null} + -t 0.394064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {9.0 10.0 317 ------- null} - -t 0.394064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {9.0 10.0 317 ------- null} h -t 0.394064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.394064 -s 0 -d 9 -p ack -e 40 -c 0 -i 628 -a 0 -x {10.0 9.0 309 ------- null} + -t 0.394064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {9.0 10.0 324 ------- null} - -t 0.394064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {9.0 10.0 324 ------- null} h -t 0.394064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.394304 -s 0 -d 9 -p ack -e 40 -c 0 -i 632 -a 0 -x {10.0 9.0 311 ------- null} - -t 0.394304 -s 0 -d 9 -p ack -e 40 -c 0 -i 632 -a 0 -x {10.0 9.0 311 ------- null} h -t 0.394304 -s 0 -d 9 -p ack -e 40 -c 0 -i 632 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.394544 -s 10 -d 7 -p ack -e 40 -c 0 -i 636 -a 0 -x {10.0 9.0 313 ------- null} + -t 0.394544 -s 7 -d 0 -p ack -e 40 -c 0 -i 636 -a 0 -x {10.0 9.0 313 ------- null} h -t 0.394544 -s 7 -d 8 -p ack -e 40 -c 0 -i 636 -a 0 -x {10.0 9.0 313 ------- null} r -t 0.394656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {9.0 10.0 322 ------- null} + -t 0.394656 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {9.0 10.0 322 ------- null} h -t 0.394656 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {9.0 10.0 322 ------- null} r -t 0.394688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 621 -a 0 -x {9.0 10.0 315 ------- null} + -t 0.394688 -s 10 -d 7 -p ack -e 40 -c 0 -i 640 -a 0 -x {10.0 9.0 315 ------- null} - -t 0.394688 -s 10 -d 7 -p ack -e 40 -c 0 -i 640 -a 0 -x {10.0 9.0 315 ------- null} h -t 0.394688 -s 10 -d 7 -p ack -e 40 -c 0 -i 640 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.39512 -s 0 -d 9 -p ack -e 40 -c 0 -i 630 -a 0 -x {10.0 9.0 310 ------- null} + -t 0.39512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {9.0 10.0 325 ------- null} - -t 0.39512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {9.0 10.0 325 ------- null} h -t 0.39512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.395152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {9.0 10.0 318 ------- null} - -t 0.395152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {9.0 10.0 318 ------- null} h -t 0.395152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.395328 -s 0 -d 9 -p ack -e 40 -c 0 -i 634 -a 0 -x {10.0 9.0 312 ------- null} - -t 0.395328 -s 0 -d 9 -p ack -e 40 -c 0 -i 634 -a 0 -x {10.0 9.0 312 ------- null} h -t 0.395328 -s 0 -d 9 -p ack -e 40 -c 0 -i 634 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.395632 -s 10 -d 7 -p ack -e 40 -c 0 -i 638 -a 0 -x {10.0 9.0 314 ------- null} + -t 0.395632 -s 7 -d 0 -p ack -e 40 -c 0 -i 638 -a 0 -x {10.0 9.0 314 ------- null} h -t 0.395632 -s 7 -d 8 -p ack -e 40 -c 0 -i 638 -a 0 -x {10.0 9.0 314 ------- null} r -t 0.395776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 623 -a 0 -x {9.0 10.0 316 ------- null} + -t 0.395776 -s 10 -d 7 -p ack -e 40 -c 0 -i 642 -a 0 -x {10.0 9.0 316 ------- null} - -t 0.395776 -s 10 -d 7 -p ack -e 40 -c 0 -i 642 -a 0 -x {10.0 9.0 316 ------- null} h -t 0.395776 -s 10 -d 7 -p ack -e 40 -c 0 -i 642 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.395792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {9.0 10.0 323 ------- null} + -t 0.395792 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {9.0 10.0 323 ------- null} h -t 0.395792 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {9.0 10.0 323 ------- null} + -t 0.39624 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {9.0 10.0 319 ------- null} - -t 0.39624 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {9.0 10.0 319 ------- null} h -t 0.39624 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.396336 -s 0 -d 9 -p ack -e 40 -c 0 -i 632 -a 0 -x {10.0 9.0 311 ------- null} + -t 0.396336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 643 -a 0 -x {9.0 10.0 326 ------- null} - -t 0.396336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 643 -a 0 -x {9.0 10.0 326 ------- null} h -t 0.396336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 643 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.396352 -s 0 -d 9 -p ack -e 40 -c 0 -i 636 -a 0 -x {10.0 9.0 313 ------- null} - -t 0.396352 -s 0 -d 9 -p ack -e 40 -c 0 -i 636 -a 0 -x {10.0 9.0 313 ------- null} h -t 0.396352 -s 0 -d 9 -p ack -e 40 -c 0 -i 636 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.39672 -s 10 -d 7 -p ack -e 40 -c 0 -i 640 -a 0 -x {10.0 9.0 315 ------- null} + -t 0.39672 -s 7 -d 0 -p ack -e 40 -c 0 -i 640 -a 0 -x {10.0 9.0 315 ------- null} h -t 0.39672 -s 7 -d 8 -p ack -e 40 -c 0 -i 640 -a 0 -x {10.0 9.0 315 ------- null} r -t 0.396864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 625 -a 0 -x {9.0 10.0 317 ------- null} + -t 0.396864 -s 10 -d 7 -p ack -e 40 -c 0 -i 644 -a 0 -x {10.0 9.0 317 ------- null} - -t 0.396864 -s 10 -d 7 -p ack -e 40 -c 0 -i 644 -a 0 -x {10.0 9.0 317 ------- null} h -t 0.396864 -s 10 -d 7 -p ack -e 40 -c 0 -i 644 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.396864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {9.0 10.0 324 ------- null} + -t 0.396864 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {9.0 10.0 324 ------- null} h -t 0.396864 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {9.0 10.0 324 ------- null} + -t 0.397328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {9.0 10.0 320 ------- null} - -t 0.397328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {9.0 10.0 320 ------- null} h -t 0.397328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.39736 -s 0 -d 9 -p ack -e 40 -c 0 -i 634 -a 0 -x {10.0 9.0 312 ------- null} + -t 0.39736 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 645 -a 0 -x {9.0 10.0 327 ------- null} - -t 0.39736 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 645 -a 0 -x {9.0 10.0 327 ------- null} h -t 0.39736 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 645 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.397472 -s 0 -d 9 -p ack -e 40 -c 0 -i 638 -a 0 -x {10.0 9.0 314 ------- null} - -t 0.397472 -s 0 -d 9 -p ack -e 40 -c 0 -i 638 -a 0 -x {10.0 9.0 314 ------- null} h -t 0.397472 -s 0 -d 9 -p ack -e 40 -c 0 -i 638 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.397808 -s 10 -d 7 -p ack -e 40 -c 0 -i 642 -a 0 -x {10.0 9.0 316 ------- null} + -t 0.397808 -s 7 -d 0 -p ack -e 40 -c 0 -i 642 -a 0 -x {10.0 9.0 316 ------- null} h -t 0.397808 -s 7 -d 8 -p ack -e 40 -c 0 -i 642 -a 0 -x {10.0 9.0 316 ------- null} r -t 0.39792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {9.0 10.0 325 ------- null} + -t 0.39792 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {9.0 10.0 325 ------- null} h -t 0.39792 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {9.0 10.0 325 ------- null} r -t 0.397952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 627 -a 0 -x {9.0 10.0 318 ------- null} + -t 0.397952 -s 10 -d 7 -p ack -e 40 -c 0 -i 646 -a 0 -x {10.0 9.0 318 ------- null} - -t 0.397952 -s 10 -d 7 -p ack -e 40 -c 0 -i 646 -a 0 -x {10.0 9.0 318 ------- null} h -t 0.397952 -s 10 -d 7 -p ack -e 40 -c 0 -i 646 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.398384 -s 0 -d 9 -p ack -e 40 -c 0 -i 636 -a 0 -x {10.0 9.0 313 ------- null} + -t 0.398384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 647 -a 0 -x {9.0 10.0 328 ------- null} - -t 0.398384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 647 -a 0 -x {9.0 10.0 328 ------- null} h -t 0.398384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 647 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.398416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {9.0 10.0 321 ------- null} - -t 0.398416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {9.0 10.0 321 ------- null} h -t 0.398416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.398528 -s 0 -d 9 -p ack -e 40 -c 0 -i 640 -a 0 -x {10.0 9.0 315 ------- null} - -t 0.398528 -s 0 -d 9 -p ack -e 40 -c 0 -i 640 -a 0 -x {10.0 9.0 315 ------- null} h -t 0.398528 -s 0 -d 9 -p ack -e 40 -c 0 -i 640 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.398896 -s 10 -d 7 -p ack -e 40 -c 0 -i 644 -a 0 -x {10.0 9.0 317 ------- null} + -t 0.398896 -s 7 -d 0 -p ack -e 40 -c 0 -i 644 -a 0 -x {10.0 9.0 317 ------- null} h -t 0.398896 -s 7 -d 8 -p ack -e 40 -c 0 -i 644 -a 0 -x {10.0 9.0 317 ------- null} r -t 0.39904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 629 -a 0 -x {9.0 10.0 319 ------- null} + -t 0.39904 -s 10 -d 7 -p ack -e 40 -c 0 -i 648 -a 0 -x {10.0 9.0 319 ------- null} - -t 0.39904 -s 10 -d 7 -p ack -e 40 -c 0 -i 648 -a 0 -x {10.0 9.0 319 ------- null} h -t 0.39904 -s 10 -d 7 -p ack -e 40 -c 0 -i 648 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.399136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 643 -a 0 -x {9.0 10.0 326 ------- null} + -t 0.399136 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 643 -a 0 -x {9.0 10.0 326 ------- null} h -t 0.399136 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 643 -a 0 -x {9.0 10.0 326 ------- null} + -t 0.399504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {9.0 10.0 322 ------- null} - -t 0.399504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {9.0 10.0 322 ------- null} h -t 0.399504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.399504 -s 0 -d 9 -p ack -e 40 -c 0 -i 638 -a 0 -x {10.0 9.0 314 ------- null} + -t 0.399504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 649 -a 0 -x {9.0 10.0 329 ------- null} - -t 0.399504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 649 -a 0 -x {9.0 10.0 329 ------- null} h -t 0.399504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 649 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.39968 -s 0 -d 9 -p ack -e 40 -c 0 -i 642 -a 0 -x {10.0 9.0 316 ------- null} - -t 0.39968 -s 0 -d 9 -p ack -e 40 -c 0 -i 642 -a 0 -x {10.0 9.0 316 ------- null} h -t 0.39968 -s 0 -d 9 -p ack -e 40 -c 0 -i 642 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.399984 -s 10 -d 7 -p ack -e 40 -c 0 -i 646 -a 0 -x {10.0 9.0 318 ------- null} + -t 0.399984 -s 7 -d 0 -p ack -e 40 -c 0 -i 646 -a 0 -x {10.0 9.0 318 ------- null} h -t 0.399984 -s 7 -d 8 -p ack -e 40 -c 0 -i 646 -a 0 -x {10.0 9.0 318 ------- null} r -t 0.400128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 631 -a 0 -x {9.0 10.0 320 ------- null} + -t 0.400128 -s 10 -d 7 -p ack -e 40 -c 0 -i 650 -a 0 -x {10.0 9.0 320 ------- null} - -t 0.400128 -s 10 -d 7 -p ack -e 40 -c 0 -i 650 -a 0 -x {10.0 9.0 320 ------- null} h -t 0.400128 -s 10 -d 7 -p ack -e 40 -c 0 -i 650 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.40016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 645 -a 0 -x {9.0 10.0 327 ------- null} + -t 0.40016 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 645 -a 0 -x {9.0 10.0 327 ------- null} h -t 0.40016 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 645 -a 0 -x {9.0 10.0 327 ------- null} r -t 0.40056 -s 0 -d 9 -p ack -e 40 -c 0 -i 640 -a 0 -x {10.0 9.0 315 ------- null} + -t 0.40056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 651 -a 0 -x {9.0 10.0 330 ------- null} - -t 0.40056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 651 -a 0 -x {9.0 10.0 330 ------- null} h -t 0.40056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 651 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.400592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {9.0 10.0 323 ------- null} - -t 0.400592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {9.0 10.0 323 ------- null} h -t 0.400592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.4008 -s 0 -d 9 -p ack -e 40 -c 0 -i 644 -a 0 -x {10.0 9.0 317 ------- null} - -t 0.4008 -s 0 -d 9 -p ack -e 40 -c 0 -i 644 -a 0 -x {10.0 9.0 317 ------- null} h -t 0.4008 -s 0 -d 9 -p ack -e 40 -c 0 -i 644 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.401072 -s 10 -d 7 -p ack -e 40 -c 0 -i 648 -a 0 -x {10.0 9.0 319 ------- null} + -t 0.401072 -s 7 -d 0 -p ack -e 40 -c 0 -i 648 -a 0 -x {10.0 9.0 319 ------- null} h -t 0.401072 -s 7 -d 8 -p ack -e 40 -c 0 -i 648 -a 0 -x {10.0 9.0 319 ------- null} r -t 0.401184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 647 -a 0 -x {9.0 10.0 328 ------- null} + -t 0.401184 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 647 -a 0 -x {9.0 10.0 328 ------- null} h -t 0.401184 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 647 -a 0 -x {9.0 10.0 328 ------- null} r -t 0.401216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 633 -a 0 -x {9.0 10.0 321 ------- null} + -t 0.401216 -s 10 -d 7 -p ack -e 40 -c 0 -i 652 -a 0 -x {10.0 9.0 321 ------- null} - -t 0.401216 -s 10 -d 7 -p ack -e 40 -c 0 -i 652 -a 0 -x {10.0 9.0 321 ------- null} h -t 0.401216 -s 10 -d 7 -p ack -e 40 -c 0 -i 652 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.40168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {9.0 10.0 324 ------- null} - -t 0.40168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {9.0 10.0 324 ------- null} h -t 0.40168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.401712 -s 0 -d 9 -p ack -e 40 -c 0 -i 642 -a 0 -x {10.0 9.0 316 ------- null} + -t 0.401712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 653 -a 0 -x {9.0 10.0 331 ------- null} - -t 0.401712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 653 -a 0 -x {9.0 10.0 331 ------- null} h -t 0.401712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 653 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.401984 -s 0 -d 9 -p ack -e 40 -c 0 -i 646 -a 0 -x {10.0 9.0 318 ------- null} - -t 0.401984 -s 0 -d 9 -p ack -e 40 -c 0 -i 646 -a 0 -x {10.0 9.0 318 ------- null} h -t 0.401984 -s 0 -d 9 -p ack -e 40 -c 0 -i 646 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.40216 -s 10 -d 7 -p ack -e 40 -c 0 -i 650 -a 0 -x {10.0 9.0 320 ------- null} + -t 0.40216 -s 7 -d 0 -p ack -e 40 -c 0 -i 650 -a 0 -x {10.0 9.0 320 ------- null} h -t 0.40216 -s 7 -d 8 -p ack -e 40 -c 0 -i 650 -a 0 -x {10.0 9.0 320 ------- null} r -t 0.402304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 635 -a 0 -x {9.0 10.0 322 ------- null} + -t 0.402304 -s 10 -d 7 -p ack -e 40 -c 0 -i 654 -a 0 -x {10.0 9.0 322 ------- null} - -t 0.402304 -s 10 -d 7 -p ack -e 40 -c 0 -i 654 -a 0 -x {10.0 9.0 322 ------- null} h -t 0.402304 -s 10 -d 7 -p ack -e 40 -c 0 -i 654 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.402304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 649 -a 0 -x {9.0 10.0 329 ------- null} + -t 0.402304 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 649 -a 0 -x {9.0 10.0 329 ------- null} h -t 0.402304 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 649 -a 0 -x {9.0 10.0 329 ------- null} r -t 0.402832 -s 0 -d 9 -p ack -e 40 -c 0 -i 644 -a 0 -x {10.0 9.0 317 ------- null} + -t 0.402832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 655 -a 0 -x {9.0 10.0 332 ------- null} - -t 0.402832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 655 -a 0 -x {9.0 10.0 332 ------- null} h -t 0.402832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 655 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.40288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {9.0 10.0 325 ------- null} - -t 0.40288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {9.0 10.0 325 ------- null} h -t 0.40288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.40296 -s 0 -d 9 -p ack -e 40 -c 0 -i 648 -a 0 -x {10.0 9.0 319 ------- null} - -t 0.40296 -s 0 -d 9 -p ack -e 40 -c 0 -i 648 -a 0 -x {10.0 9.0 319 ------- null} h -t 0.40296 -s 0 -d 9 -p ack -e 40 -c 0 -i 648 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.403248 -s 10 -d 7 -p ack -e 40 -c 0 -i 652 -a 0 -x {10.0 9.0 321 ------- null} + -t 0.403248 -s 7 -d 0 -p ack -e 40 -c 0 -i 652 -a 0 -x {10.0 9.0 321 ------- null} h -t 0.403248 -s 7 -d 8 -p ack -e 40 -c 0 -i 652 -a 0 -x {10.0 9.0 321 ------- null} r -t 0.40336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 651 -a 0 -x {9.0 10.0 330 ------- null} + -t 0.40336 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 651 -a 0 -x {9.0 10.0 330 ------- null} h -t 0.40336 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 651 -a 0 -x {9.0 10.0 330 ------- null} r -t 0.403392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 637 -a 0 -x {9.0 10.0 323 ------- null} + -t 0.403392 -s 10 -d 7 -p ack -e 40 -c 0 -i 656 -a 0 -x {10.0 9.0 323 ------- null} - -t 0.403392 -s 10 -d 7 -p ack -e 40 -c 0 -i 656 -a 0 -x {10.0 9.0 323 ------- null} h -t 0.403392 -s 10 -d 7 -p ack -e 40 -c 0 -i 656 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.403968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 643 -a 0 -x {9.0 10.0 326 ------- null} - -t 0.403968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 643 -a 0 -x {9.0 10.0 326 ------- null} h -t 0.403968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 643 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.404016 -s 0 -d 9 -p ack -e 40 -c 0 -i 646 -a 0 -x {10.0 9.0 318 ------- null} + -t 0.404016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 657 -a 0 -x {9.0 10.0 333 ------- null} - -t 0.404016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 657 -a 0 -x {9.0 10.0 333 ------- null} h -t 0.404016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 657 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.404192 -s 0 -d 9 -p ack -e 40 -c 0 -i 650 -a 0 -x {10.0 9.0 320 ------- null} - -t 0.404192 -s 0 -d 9 -p ack -e 40 -c 0 -i 650 -a 0 -x {10.0 9.0 320 ------- null} h -t 0.404192 -s 0 -d 9 -p ack -e 40 -c 0 -i 650 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.404336 -s 10 -d 7 -p ack -e 40 -c 0 -i 654 -a 0 -x {10.0 9.0 322 ------- null} + -t 0.404336 -s 7 -d 0 -p ack -e 40 -c 0 -i 654 -a 0 -x {10.0 9.0 322 ------- null} h -t 0.404336 -s 7 -d 8 -p ack -e 40 -c 0 -i 654 -a 0 -x {10.0 9.0 322 ------- null} r -t 0.40448 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 639 -a 0 -x {9.0 10.0 324 ------- null} + -t 0.40448 -s 10 -d 7 -p ack -e 40 -c 0 -i 658 -a 0 -x {10.0 9.0 324 ------- null} - -t 0.40448 -s 10 -d 7 -p ack -e 40 -c 0 -i 658 -a 0 -x {10.0 9.0 324 ------- null} h -t 0.40448 -s 10 -d 7 -p ack -e 40 -c 0 -i 658 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.404512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 653 -a 0 -x {9.0 10.0 331 ------- null} + -t 0.404512 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 653 -a 0 -x {9.0 10.0 331 ------- null} h -t 0.404512 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 653 -a 0 -x {9.0 10.0 331 ------- null} r -t 0.404992 -s 0 -d 9 -p ack -e 40 -c 0 -i 648 -a 0 -x {10.0 9.0 319 ------- null} + -t 0.404992 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 659 -a 0 -x {9.0 10.0 334 ------- null} - -t 0.404992 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 659 -a 0 -x {9.0 10.0 334 ------- null} h -t 0.404992 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 659 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.405056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 645 -a 0 -x {9.0 10.0 327 ------- null} - -t 0.405056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 645 -a 0 -x {9.0 10.0 327 ------- null} h -t 0.405056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 645 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.405168 -s 0 -d 9 -p ack -e 40 -c 0 -i 652 -a 0 -x {10.0 9.0 321 ------- null} - -t 0.405168 -s 0 -d 9 -p ack -e 40 -c 0 -i 652 -a 0 -x {10.0 9.0 321 ------- null} h -t 0.405168 -s 0 -d 9 -p ack -e 40 -c 0 -i 652 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.405424 -s 10 -d 7 -p ack -e 40 -c 0 -i 656 -a 0 -x {10.0 9.0 323 ------- null} + -t 0.405424 -s 7 -d 0 -p ack -e 40 -c 0 -i 656 -a 0 -x {10.0 9.0 323 ------- null} h -t 0.405424 -s 7 -d 8 -p ack -e 40 -c 0 -i 656 -a 0 -x {10.0 9.0 323 ------- null} r -t 0.405632 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 655 -a 0 -x {9.0 10.0 332 ------- null} + -t 0.405632 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 655 -a 0 -x {9.0 10.0 332 ------- null} h -t 0.405632 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 655 -a 0 -x {9.0 10.0 332 ------- null} r -t 0.40568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 641 -a 0 -x {9.0 10.0 325 ------- null} + -t 0.40568 -s 10 -d 7 -p ack -e 40 -c 0 -i 660 -a 0 -x {10.0 9.0 325 ------- null} - -t 0.40568 -s 10 -d 7 -p ack -e 40 -c 0 -i 660 -a 0 -x {10.0 9.0 325 ------- null} h -t 0.40568 -s 10 -d 7 -p ack -e 40 -c 0 -i 660 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.406144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 647 -a 0 -x {9.0 10.0 328 ------- null} - -t 0.406144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 647 -a 0 -x {9.0 10.0 328 ------- null} h -t 0.406144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 647 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.406224 -s 0 -d 9 -p ack -e 40 -c 0 -i 650 -a 0 -x {10.0 9.0 320 ------- null} + -t 0.406224 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 661 -a 0 -x {9.0 10.0 335 ------- null} - -t 0.406224 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 661 -a 0 -x {9.0 10.0 335 ------- null} h -t 0.406224 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 661 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.406432 -s 0 -d 9 -p ack -e 40 -c 0 -i 654 -a 0 -x {10.0 9.0 322 ------- null} - -t 0.406432 -s 0 -d 9 -p ack -e 40 -c 0 -i 654 -a 0 -x {10.0 9.0 322 ------- null} h -t 0.406432 -s 0 -d 9 -p ack -e 40 -c 0 -i 654 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.406512 -s 10 -d 7 -p ack -e 40 -c 0 -i 658 -a 0 -x {10.0 9.0 324 ------- null} + -t 0.406512 -s 7 -d 0 -p ack -e 40 -c 0 -i 658 -a 0 -x {10.0 9.0 324 ------- null} h -t 0.406512 -s 7 -d 8 -p ack -e 40 -c 0 -i 658 -a 0 -x {10.0 9.0 324 ------- null} r -t 0.406768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 643 -a 0 -x {9.0 10.0 326 ------- null} + -t 0.406768 -s 10 -d 7 -p ack -e 40 -c 0 -i 662 -a 0 -x {10.0 9.0 326 ------- null} - -t 0.406768 -s 10 -d 7 -p ack -e 40 -c 0 -i 662 -a 0 -x {10.0 9.0 326 ------- null} h -t 0.406768 -s 10 -d 7 -p ack -e 40 -c 0 -i 662 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.406816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 657 -a 0 -x {9.0 10.0 333 ------- null} + -t 0.406816 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 657 -a 0 -x {9.0 10.0 333 ------- null} h -t 0.406816 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 657 -a 0 -x {9.0 10.0 333 ------- null} r -t 0.4072 -s 0 -d 9 -p ack -e 40 -c 0 -i 652 -a 0 -x {10.0 9.0 321 ------- null} + -t 0.4072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {9.0 10.0 336 ------- null} - -t 0.4072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {9.0 10.0 336 ------- null} h -t 0.4072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.407424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 649 -a 0 -x {9.0 10.0 329 ------- null} - -t 0.407424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 649 -a 0 -x {9.0 10.0 329 ------- null} h -t 0.407424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 649 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.407488 -s 0 -d 9 -p ack -e 40 -c 0 -i 656 -a 0 -x {10.0 9.0 323 ------- null} - -t 0.407488 -s 0 -d 9 -p ack -e 40 -c 0 -i 656 -a 0 -x {10.0 9.0 323 ------- null} h -t 0.407488 -s 0 -d 9 -p ack -e 40 -c 0 -i 656 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.407712 -s 10 -d 7 -p ack -e 40 -c 0 -i 660 -a 0 -x {10.0 9.0 325 ------- null} + -t 0.407712 -s 7 -d 0 -p ack -e 40 -c 0 -i 660 -a 0 -x {10.0 9.0 325 ------- null} h -t 0.407712 -s 7 -d 8 -p ack -e 40 -c 0 -i 660 -a 0 -x {10.0 9.0 325 ------- null} r -t 0.407792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 659 -a 0 -x {9.0 10.0 334 ------- null} + -t 0.407792 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 659 -a 0 -x {9.0 10.0 334 ------- null} h -t 0.407792 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 659 -a 0 -x {9.0 10.0 334 ------- null} r -t 0.407856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 645 -a 0 -x {9.0 10.0 327 ------- null} + -t 0.407856 -s 10 -d 7 -p ack -e 40 -c 0 -i 664 -a 0 -x {10.0 9.0 327 ------- null} - -t 0.407856 -s 10 -d 7 -p ack -e 40 -c 0 -i 664 -a 0 -x {10.0 9.0 327 ------- null} h -t 0.407856 -s 10 -d 7 -p ack -e 40 -c 0 -i 664 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.408464 -s 0 -d 9 -p ack -e 40 -c 0 -i 654 -a 0 -x {10.0 9.0 322 ------- null} + -t 0.408464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {9.0 10.0 337 ------- null} - -t 0.408464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {9.0 10.0 337 ------- null} h -t 0.408464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.408512 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 651 -a 0 -x {9.0 10.0 330 ------- null} - -t 0.408512 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 651 -a 0 -x {9.0 10.0 330 ------- null} h -t 0.408512 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 651 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.408768 -s 0 -d 9 -p ack -e 40 -c 0 -i 658 -a 0 -x {10.0 9.0 324 ------- null} - -t 0.408768 -s 0 -d 9 -p ack -e 40 -c 0 -i 658 -a 0 -x {10.0 9.0 324 ------- null} h -t 0.408768 -s 0 -d 9 -p ack -e 40 -c 0 -i 658 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.4088 -s 10 -d 7 -p ack -e 40 -c 0 -i 662 -a 0 -x {10.0 9.0 326 ------- null} + -t 0.4088 -s 7 -d 0 -p ack -e 40 -c 0 -i 662 -a 0 -x {10.0 9.0 326 ------- null} h -t 0.4088 -s 7 -d 8 -p ack -e 40 -c 0 -i 662 -a 0 -x {10.0 9.0 326 ------- null} r -t 0.408944 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 647 -a 0 -x {9.0 10.0 328 ------- null} + -t 0.408944 -s 10 -d 7 -p ack -e 40 -c 0 -i 666 -a 0 -x {10.0 9.0 328 ------- null} - -t 0.408944 -s 10 -d 7 -p ack -e 40 -c 0 -i 666 -a 0 -x {10.0 9.0 328 ------- null} h -t 0.408944 -s 10 -d 7 -p ack -e 40 -c 0 -i 666 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.409024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 661 -a 0 -x {9.0 10.0 335 ------- null} + -t 0.409024 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 661 -a 0 -x {9.0 10.0 335 ------- null} h -t 0.409024 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 661 -a 0 -x {9.0 10.0 335 ------- null} r -t 0.40952 -s 0 -d 9 -p ack -e 40 -c 0 -i 656 -a 0 -x {10.0 9.0 323 ------- null} + -t 0.40952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {9.0 10.0 338 ------- null} - -t 0.40952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {9.0 10.0 338 ------- null} h -t 0.40952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.409808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 653 -a 0 -x {9.0 10.0 331 ------- null} - -t 0.409808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 653 -a 0 -x {9.0 10.0 331 ------- null} h -t 0.409808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 653 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.409888 -s 10 -d 7 -p ack -e 40 -c 0 -i 664 -a 0 -x {10.0 9.0 327 ------- null} + -t 0.409888 -s 7 -d 0 -p ack -e 40 -c 0 -i 664 -a 0 -x {10.0 9.0 327 ------- null} h -t 0.409888 -s 7 -d 8 -p ack -e 40 -c 0 -i 664 -a 0 -x {10.0 9.0 327 ------- null} + -t 0.40992 -s 0 -d 9 -p ack -e 40 -c 0 -i 660 -a 0 -x {10.0 9.0 325 ------- null} - -t 0.40992 -s 0 -d 9 -p ack -e 40 -c 0 -i 660 -a 0 -x {10.0 9.0 325 ------- null} h -t 0.40992 -s 0 -d 9 -p ack -e 40 -c 0 -i 660 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.41 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {9.0 10.0 336 ------- null} + -t 0.41 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {9.0 10.0 336 ------- null} h -t 0.41 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {9.0 10.0 336 ------- null} r -t 0.410224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 649 -a 0 -x {9.0 10.0 329 ------- null} + -t 0.410224 -s 10 -d 7 -p ack -e 40 -c 0 -i 668 -a 0 -x {10.0 9.0 329 ------- null} - -t 0.410224 -s 10 -d 7 -p ack -e 40 -c 0 -i 668 -a 0 -x {10.0 9.0 329 ------- null} h -t 0.410224 -s 10 -d 7 -p ack -e 40 -c 0 -i 668 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.4108 -s 0 -d 9 -p ack -e 40 -c 0 -i 658 -a 0 -x {10.0 9.0 324 ------- null} + -t 0.4108 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {9.0 10.0 339 ------- null} - -t 0.4108 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {9.0 10.0 339 ------- null} h -t 0.4108 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.410896 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 655 -a 0 -x {9.0 10.0 332 ------- null} - -t 0.410896 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 655 -a 0 -x {9.0 10.0 332 ------- null} h -t 0.410896 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 655 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.410976 -s 10 -d 7 -p ack -e 40 -c 0 -i 666 -a 0 -x {10.0 9.0 328 ------- null} + -t 0.410976 -s 7 -d 0 -p ack -e 40 -c 0 -i 666 -a 0 -x {10.0 9.0 328 ------- null} h -t 0.410976 -s 7 -d 8 -p ack -e 40 -c 0 -i 666 -a 0 -x {10.0 9.0 328 ------- null} + -t 0.410976 -s 0 -d 9 -p ack -e 40 -c 0 -i 662 -a 0 -x {10.0 9.0 326 ------- null} - -t 0.410976 -s 0 -d 9 -p ack -e 40 -c 0 -i 662 -a 0 -x {10.0 9.0 326 ------- null} h -t 0.410976 -s 0 -d 9 -p ack -e 40 -c 0 -i 662 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.411264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {9.0 10.0 337 ------- null} + -t 0.411264 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {9.0 10.0 337 ------- null} h -t 0.411264 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {9.0 10.0 337 ------- null} r -t 0.411312 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 651 -a 0 -x {9.0 10.0 330 ------- null} + -t 0.411312 -s 10 -d 7 -p ack -e 40 -c 0 -i 670 -a 0 -x {10.0 9.0 330 ------- null} - -t 0.411312 -s 10 -d 7 -p ack -e 40 -c 0 -i 670 -a 0 -x {10.0 9.0 330 ------- null} h -t 0.411312 -s 10 -d 7 -p ack -e 40 -c 0 -i 670 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.411952 -s 0 -d 9 -p ack -e 40 -c 0 -i 660 -a 0 -x {10.0 9.0 325 ------- null} + -t 0.411952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {9.0 10.0 340 ------- null} - -t 0.411952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {9.0 10.0 340 ------- null} h -t 0.411952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.411984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 657 -a 0 -x {9.0 10.0 333 ------- null} - -t 0.411984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 657 -a 0 -x {9.0 10.0 333 ------- null} h -t 0.411984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 657 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.412048 -s 0 -d 9 -p ack -e 40 -c 0 -i 664 -a 0 -x {10.0 9.0 327 ------- null} - -t 0.412048 -s 0 -d 9 -p ack -e 40 -c 0 -i 664 -a 0 -x {10.0 9.0 327 ------- null} h -t 0.412048 -s 0 -d 9 -p ack -e 40 -c 0 -i 664 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.412256 -s 10 -d 7 -p ack -e 40 -c 0 -i 668 -a 0 -x {10.0 9.0 329 ------- null} + -t 0.412256 -s 7 -d 0 -p ack -e 40 -c 0 -i 668 -a 0 -x {10.0 9.0 329 ------- null} h -t 0.412256 -s 7 -d 8 -p ack -e 40 -c 0 -i 668 -a 0 -x {10.0 9.0 329 ------- null} r -t 0.41232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {9.0 10.0 338 ------- null} + -t 0.41232 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {9.0 10.0 338 ------- null} h -t 0.41232 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {9.0 10.0 338 ------- null} r -t 0.412608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 653 -a 0 -x {9.0 10.0 331 ------- null} + -t 0.412608 -s 10 -d 7 -p ack -e 40 -c 0 -i 672 -a 0 -x {10.0 9.0 331 ------- null} - -t 0.412608 -s 10 -d 7 -p ack -e 40 -c 0 -i 672 -a 0 -x {10.0 9.0 331 ------- null} h -t 0.412608 -s 10 -d 7 -p ack -e 40 -c 0 -i 672 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.413008 -s 0 -d 9 -p ack -e 40 -c 0 -i 662 -a 0 -x {10.0 9.0 326 ------- null} + -t 0.413008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {9.0 10.0 341 ------- null} - -t 0.413008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {9.0 10.0 341 ------- null} h -t 0.413008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.413072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 659 -a 0 -x {9.0 10.0 334 ------- null} - -t 0.413072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 659 -a 0 -x {9.0 10.0 334 ------- null} h -t 0.413072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 659 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.413344 -s 10 -d 7 -p ack -e 40 -c 0 -i 670 -a 0 -x {10.0 9.0 330 ------- null} + -t 0.413344 -s 7 -d 0 -p ack -e 40 -c 0 -i 670 -a 0 -x {10.0 9.0 330 ------- null} h -t 0.413344 -s 7 -d 8 -p ack -e 40 -c 0 -i 670 -a 0 -x {10.0 9.0 330 ------- null} + -t 0.41336 -s 0 -d 9 -p ack -e 40 -c 0 -i 666 -a 0 -x {10.0 9.0 328 ------- null} - -t 0.41336 -s 0 -d 9 -p ack -e 40 -c 0 -i 666 -a 0 -x {10.0 9.0 328 ------- null} h -t 0.41336 -s 0 -d 9 -p ack -e 40 -c 0 -i 666 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.4136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {9.0 10.0 339 ------- null} + -t 0.4136 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {9.0 10.0 339 ------- null} h -t 0.4136 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {9.0 10.0 339 ------- null} r -t 0.413696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 655 -a 0 -x {9.0 10.0 332 ------- null} + -t 0.413696 -s 10 -d 7 -p ack -e 40 -c 0 -i 674 -a 0 -x {10.0 9.0 332 ------- null} - -t 0.413696 -s 10 -d 7 -p ack -e 40 -c 0 -i 674 -a 0 -x {10.0 9.0 332 ------- null} h -t 0.413696 -s 10 -d 7 -p ack -e 40 -c 0 -i 674 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.41408 -s 0 -d 9 -p ack -e 40 -c 0 -i 664 -a 0 -x {10.0 9.0 327 ------- null} + -t 0.41408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {9.0 10.0 342 ------- null} - -t 0.41408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {9.0 10.0 342 ------- null} h -t 0.41408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.414432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 661 -a 0 -x {9.0 10.0 335 ------- null} - -t 0.414432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 661 -a 0 -x {9.0 10.0 335 ------- null} h -t 0.414432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 661 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.414496 -s 0 -d 9 -p ack -e 40 -c 0 -i 668 -a 0 -x {10.0 9.0 329 ------- null} - -t 0.414496 -s 0 -d 9 -p ack -e 40 -c 0 -i 668 -a 0 -x {10.0 9.0 329 ------- null} h -t 0.414496 -s 0 -d 9 -p ack -e 40 -c 0 -i 668 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.41464 -s 10 -d 7 -p ack -e 40 -c 0 -i 672 -a 0 -x {10.0 9.0 331 ------- null} + -t 0.41464 -s 7 -d 0 -p ack -e 40 -c 0 -i 672 -a 0 -x {10.0 9.0 331 ------- null} h -t 0.41464 -s 7 -d 8 -p ack -e 40 -c 0 -i 672 -a 0 -x {10.0 9.0 331 ------- null} r -t 0.414752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {9.0 10.0 340 ------- null} + -t 0.414752 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {9.0 10.0 340 ------- null} h -t 0.414752 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {9.0 10.0 340 ------- null} r -t 0.414784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 657 -a 0 -x {9.0 10.0 333 ------- null} + -t 0.414784 -s 10 -d 7 -p ack -e 40 -c 0 -i 676 -a 0 -x {10.0 9.0 333 ------- null} - -t 0.414784 -s 10 -d 7 -p ack -e 40 -c 0 -i 676 -a 0 -x {10.0 9.0 333 ------- null} h -t 0.414784 -s 10 -d 7 -p ack -e 40 -c 0 -i 676 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.415392 -s 0 -d 9 -p ack -e 40 -c 0 -i 666 -a 0 -x {10.0 9.0 328 ------- null} + -t 0.415392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {9.0 10.0 343 ------- null} - -t 0.415392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {9.0 10.0 343 ------- null} h -t 0.415392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.41552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {9.0 10.0 336 ------- null} - -t 0.41552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {9.0 10.0 336 ------- null} h -t 0.41552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.415728 -s 10 -d 7 -p ack -e 40 -c 0 -i 674 -a 0 -x {10.0 9.0 332 ------- null} + -t 0.415728 -s 7 -d 0 -p ack -e 40 -c 0 -i 674 -a 0 -x {10.0 9.0 332 ------- null} h -t 0.415728 -s 7 -d 8 -p ack -e 40 -c 0 -i 674 -a 0 -x {10.0 9.0 332 ------- null} + -t 0.41576 -s 0 -d 9 -p ack -e 40 -c 0 -i 670 -a 0 -x {10.0 9.0 330 ------- null} - -t 0.41576 -s 0 -d 9 -p ack -e 40 -c 0 -i 670 -a 0 -x {10.0 9.0 330 ------- null} h -t 0.41576 -s 0 -d 9 -p ack -e 40 -c 0 -i 670 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.415808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {9.0 10.0 341 ------- null} + -t 0.415808 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {9.0 10.0 341 ------- null} h -t 0.415808 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {9.0 10.0 341 ------- null} r -t 0.415872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 659 -a 0 -x {9.0 10.0 334 ------- null} + -t 0.415872 -s 10 -d 7 -p ack -e 40 -c 0 -i 678 -a 0 -x {10.0 9.0 334 ------- null} - -t 0.415872 -s 10 -d 7 -p ack -e 40 -c 0 -i 678 -a 0 -x {10.0 9.0 334 ------- null} h -t 0.415872 -s 10 -d 7 -p ack -e 40 -c 0 -i 678 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.416528 -s 0 -d 9 -p ack -e 40 -c 0 -i 668 -a 0 -x {10.0 9.0 329 ------- null} + -t 0.416528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {9.0 10.0 344 ------- null} - -t 0.416528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {9.0 10.0 344 ------- null} h -t 0.416528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.416608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {9.0 10.0 337 ------- null} - -t 0.416608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {9.0 10.0 337 ------- null} h -t 0.416608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.416816 -s 10 -d 7 -p ack -e 40 -c 0 -i 676 -a 0 -x {10.0 9.0 333 ------- null} + -t 0.416816 -s 7 -d 0 -p ack -e 40 -c 0 -i 676 -a 0 -x {10.0 9.0 333 ------- null} h -t 0.416816 -s 7 -d 8 -p ack -e 40 -c 0 -i 676 -a 0 -x {10.0 9.0 333 ------- null} + -t 0.416864 -s 0 -d 9 -p ack -e 40 -c 0 -i 672 -a 0 -x {10.0 9.0 331 ------- null} - -t 0.416864 -s 0 -d 9 -p ack -e 40 -c 0 -i 672 -a 0 -x {10.0 9.0 331 ------- null} h -t 0.416864 -s 0 -d 9 -p ack -e 40 -c 0 -i 672 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.41688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {9.0 10.0 342 ------- null} + -t 0.41688 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {9.0 10.0 342 ------- null} h -t 0.41688 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {9.0 10.0 342 ------- null} r -t 0.417232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 661 -a 0 -x {9.0 10.0 335 ------- null} + -t 0.417232 -s 10 -d 7 -p ack -e 40 -c 0 -i 680 -a 0 -x {10.0 9.0 335 ------- null} - -t 0.417232 -s 10 -d 7 -p ack -e 40 -c 0 -i 680 -a 0 -x {10.0 9.0 335 ------- null} h -t 0.417232 -s 10 -d 7 -p ack -e 40 -c 0 -i 680 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.417792 -s 0 -d 9 -p ack -e 40 -c 0 -i 670 -a 0 -x {10.0 9.0 330 ------- null} + -t 0.417792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {9.0 10.0 345 ------- null} - -t 0.417792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {9.0 10.0 345 ------- null} h -t 0.417792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.417824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {9.0 10.0 338 ------- null} - -t 0.417824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {9.0 10.0 338 ------- null} h -t 0.417824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.417904 -s 10 -d 7 -p ack -e 40 -c 0 -i 678 -a 0 -x {10.0 9.0 334 ------- null} + -t 0.417904 -s 7 -d 0 -p ack -e 40 -c 0 -i 678 -a 0 -x {10.0 9.0 334 ------- null} h -t 0.417904 -s 7 -d 8 -p ack -e 40 -c 0 -i 678 -a 0 -x {10.0 9.0 334 ------- null} + -t 0.417968 -s 0 -d 9 -p ack -e 40 -c 0 -i 674 -a 0 -x {10.0 9.0 332 ------- null} - -t 0.417968 -s 0 -d 9 -p ack -e 40 -c 0 -i 674 -a 0 -x {10.0 9.0 332 ------- null} h -t 0.417968 -s 0 -d 9 -p ack -e 40 -c 0 -i 674 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.418192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {9.0 10.0 343 ------- null} + -t 0.418192 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {9.0 10.0 343 ------- null} h -t 0.418192 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {9.0 10.0 343 ------- null} r -t 0.41832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 663 -a 0 -x {9.0 10.0 336 ------- null} + -t 0.41832 -s 10 -d 7 -p ack -e 40 -c 0 -i 682 -a 0 -x {10.0 9.0 336 ------- null} - -t 0.41832 -s 10 -d 7 -p ack -e 40 -c 0 -i 682 -a 0 -x {10.0 9.0 336 ------- null} h -t 0.41832 -s 10 -d 7 -p ack -e 40 -c 0 -i 682 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.418896 -s 0 -d 9 -p ack -e 40 -c 0 -i 672 -a 0 -x {10.0 9.0 331 ------- null} + -t 0.418896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 683 -a 0 -x {9.0 10.0 346 ------- null} - -t 0.418896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 683 -a 0 -x {9.0 10.0 346 ------- null} h -t 0.418896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 683 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.418912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {9.0 10.0 339 ------- null} - -t 0.418912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {9.0 10.0 339 ------- null} h -t 0.418912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.419136 -s 0 -d 9 -p ack -e 40 -c 0 -i 676 -a 0 -x {10.0 9.0 333 ------- null} - -t 0.419136 -s 0 -d 9 -p ack -e 40 -c 0 -i 676 -a 0 -x {10.0 9.0 333 ------- null} h -t 0.419136 -s 0 -d 9 -p ack -e 40 -c 0 -i 676 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.419264 -s 10 -d 7 -p ack -e 40 -c 0 -i 680 -a 0 -x {10.0 9.0 335 ------- null} + -t 0.419264 -s 7 -d 0 -p ack -e 40 -c 0 -i 680 -a 0 -x {10.0 9.0 335 ------- null} h -t 0.419264 -s 7 -d 8 -p ack -e 40 -c 0 -i 680 -a 0 -x {10.0 9.0 335 ------- null} r -t 0.419328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {9.0 10.0 344 ------- null} + -t 0.419328 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {9.0 10.0 344 ------- null} h -t 0.419328 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {9.0 10.0 344 ------- null} r -t 0.419408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 665 -a 0 -x {9.0 10.0 337 ------- null} + -t 0.419408 -s 10 -d 7 -p ack -e 40 -c 0 -i 684 -a 0 -x {10.0 9.0 337 ------- null} - -t 0.419408 -s 10 -d 7 -p ack -e 40 -c 0 -i 684 -a 0 -x {10.0 9.0 337 ------- null} h -t 0.419408 -s 10 -d 7 -p ack -e 40 -c 0 -i 684 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.42 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {9.0 10.0 340 ------- null} - -t 0.42 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {9.0 10.0 340 ------- null} h -t 0.42 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.42 -s 0 -d 9 -p ack -e 40 -c 0 -i 674 -a 0 -x {10.0 9.0 332 ------- null} + -t 0.42 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 685 -a 0 -x {9.0 10.0 347 ------- null} - -t 0.42 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 685 -a 0 -x {9.0 10.0 347 ------- null} h -t 0.42 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 685 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.42024 -s 0 -d 9 -p ack -e 40 -c 0 -i 678 -a 0 -x {10.0 9.0 334 ------- null} - -t 0.42024 -s 0 -d 9 -p ack -e 40 -c 0 -i 678 -a 0 -x {10.0 9.0 334 ------- null} h -t 0.42024 -s 0 -d 9 -p ack -e 40 -c 0 -i 678 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.420352 -s 10 -d 7 -p ack -e 40 -c 0 -i 682 -a 0 -x {10.0 9.0 336 ------- null} + -t 0.420352 -s 7 -d 0 -p ack -e 40 -c 0 -i 682 -a 0 -x {10.0 9.0 336 ------- null} h -t 0.420352 -s 7 -d 8 -p ack -e 40 -c 0 -i 682 -a 0 -x {10.0 9.0 336 ------- null} r -t 0.420592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {9.0 10.0 345 ------- null} + -t 0.420592 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {9.0 10.0 345 ------- null} h -t 0.420592 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {9.0 10.0 345 ------- null} r -t 0.420624 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 667 -a 0 -x {9.0 10.0 338 ------- null} + -t 0.420624 -s 10 -d 7 -p ack -e 40 -c 0 -i 686 -a 0 -x {10.0 9.0 338 ------- null} - -t 0.420624 -s 10 -d 7 -p ack -e 40 -c 0 -i 686 -a 0 -x {10.0 9.0 338 ------- null} h -t 0.420624 -s 10 -d 7 -p ack -e 40 -c 0 -i 686 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.421088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {9.0 10.0 341 ------- null} - -t 0.421088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {9.0 10.0 341 ------- null} h -t 0.421088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.421168 -s 0 -d 9 -p ack -e 40 -c 0 -i 676 -a 0 -x {10.0 9.0 333 ------- null} + -t 0.421168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 687 -a 0 -x {9.0 10.0 348 ------- null} - -t 0.421168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 687 -a 0 -x {9.0 10.0 348 ------- null} h -t 0.421168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 687 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.421216 -s 0 -d 9 -p ack -e 40 -c 0 -i 680 -a 0 -x {10.0 9.0 335 ------- null} - -t 0.421216 -s 0 -d 9 -p ack -e 40 -c 0 -i 680 -a 0 -x {10.0 9.0 335 ------- null} h -t 0.421216 -s 0 -d 9 -p ack -e 40 -c 0 -i 680 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.42144 -s 10 -d 7 -p ack -e 40 -c 0 -i 684 -a 0 -x {10.0 9.0 337 ------- null} + -t 0.42144 -s 7 -d 0 -p ack -e 40 -c 0 -i 684 -a 0 -x {10.0 9.0 337 ------- null} h -t 0.42144 -s 7 -d 8 -p ack -e 40 -c 0 -i 684 -a 0 -x {10.0 9.0 337 ------- null} r -t 0.421696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 683 -a 0 -x {9.0 10.0 346 ------- null} + -t 0.421696 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 683 -a 0 -x {9.0 10.0 346 ------- null} h -t 0.421696 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 683 -a 0 -x {9.0 10.0 346 ------- null} r -t 0.421712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 669 -a 0 -x {9.0 10.0 339 ------- null} + -t 0.421712 -s 10 -d 7 -p ack -e 40 -c 0 -i 688 -a 0 -x {10.0 9.0 339 ------- null} - -t 0.421712 -s 10 -d 7 -p ack -e 40 -c 0 -i 688 -a 0 -x {10.0 9.0 339 ------- null} h -t 0.421712 -s 10 -d 7 -p ack -e 40 -c 0 -i 688 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.422176 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {9.0 10.0 342 ------- null} - -t 0.422176 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {9.0 10.0 342 ------- null} h -t 0.422176 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.422272 -s 0 -d 9 -p ack -e 40 -c 0 -i 678 -a 0 -x {10.0 9.0 334 ------- null} + -t 0.422272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 689 -a 0 -x {9.0 10.0 349 ------- null} - -t 0.422272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 689 -a 0 -x {9.0 10.0 349 ------- null} h -t 0.422272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 689 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.422336 -s 0 -d 9 -p ack -e 40 -c 0 -i 682 -a 0 -x {10.0 9.0 336 ------- null} - -t 0.422336 -s 0 -d 9 -p ack -e 40 -c 0 -i 682 -a 0 -x {10.0 9.0 336 ------- null} h -t 0.422336 -s 0 -d 9 -p ack -e 40 -c 0 -i 682 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.422656 -s 10 -d 7 -p ack -e 40 -c 0 -i 686 -a 0 -x {10.0 9.0 338 ------- null} + -t 0.422656 -s 7 -d 0 -p ack -e 40 -c 0 -i 686 -a 0 -x {10.0 9.0 338 ------- null} h -t 0.422656 -s 7 -d 8 -p ack -e 40 -c 0 -i 686 -a 0 -x {10.0 9.0 338 ------- null} r -t 0.4228 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 671 -a 0 -x {9.0 10.0 340 ------- null} + -t 0.4228 -s 10 -d 7 -p ack -e 40 -c 0 -i 690 -a 0 -x {10.0 9.0 340 ------- null} - -t 0.4228 -s 10 -d 7 -p ack -e 40 -c 0 -i 690 -a 0 -x {10.0 9.0 340 ------- null} h -t 0.4228 -s 10 -d 7 -p ack -e 40 -c 0 -i 690 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.4228 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 685 -a 0 -x {9.0 10.0 347 ------- null} + -t 0.4228 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 685 -a 0 -x {9.0 10.0 347 ------- null} h -t 0.4228 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 685 -a 0 -x {9.0 10.0 347 ------- null} r -t 0.423248 -s 0 -d 9 -p ack -e 40 -c 0 -i 680 -a 0 -x {10.0 9.0 335 ------- null} + -t 0.423248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 691 -a 0 -x {9.0 10.0 350 ------- null} - -t 0.423248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 691 -a 0 -x {9.0 10.0 350 ------- null} h -t 0.423248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 691 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.423264 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {9.0 10.0 343 ------- null} - -t 0.423264 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {9.0 10.0 343 ------- null} h -t 0.423264 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.423552 -s 0 -d 9 -p ack -e 40 -c 0 -i 684 -a 0 -x {10.0 9.0 337 ------- null} - -t 0.423552 -s 0 -d 9 -p ack -e 40 -c 0 -i 684 -a 0 -x {10.0 9.0 337 ------- null} h -t 0.423552 -s 0 -d 9 -p ack -e 40 -c 0 -i 684 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.423744 -s 10 -d 7 -p ack -e 40 -c 0 -i 688 -a 0 -x {10.0 9.0 339 ------- null} + -t 0.423744 -s 7 -d 0 -p ack -e 40 -c 0 -i 688 -a 0 -x {10.0 9.0 339 ------- null} h -t 0.423744 -s 7 -d 8 -p ack -e 40 -c 0 -i 688 -a 0 -x {10.0 9.0 339 ------- null} r -t 0.423888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 673 -a 0 -x {9.0 10.0 341 ------- null} + -t 0.423888 -s 10 -d 7 -p ack -e 40 -c 0 -i 692 -a 0 -x {10.0 9.0 341 ------- null} - -t 0.423888 -s 10 -d 7 -p ack -e 40 -c 0 -i 692 -a 0 -x {10.0 9.0 341 ------- null} h -t 0.423888 -s 10 -d 7 -p ack -e 40 -c 0 -i 692 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.423968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 687 -a 0 -x {9.0 10.0 348 ------- null} + -t 0.423968 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 687 -a 0 -x {9.0 10.0 348 ------- null} h -t 0.423968 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 687 -a 0 -x {9.0 10.0 348 ------- null} r -t 0.424368 -s 0 -d 9 -p ack -e 40 -c 0 -i 682 -a 0 -x {10.0 9.0 336 ------- null} + -t 0.424368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 693 -a 0 -x {9.0 10.0 351 ------- null} - -t 0.424368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 693 -a 0 -x {9.0 10.0 351 ------- null} h -t 0.424368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 693 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.424576 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {9.0 10.0 344 ------- null} - -t 0.424576 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {9.0 10.0 344 ------- null} h -t 0.424576 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.424752 -s 0 -d 9 -p ack -e 40 -c 0 -i 686 -a 0 -x {10.0 9.0 338 ------- null} - -t 0.424752 -s 0 -d 9 -p ack -e 40 -c 0 -i 686 -a 0 -x {10.0 9.0 338 ------- null} h -t 0.424752 -s 0 -d 9 -p ack -e 40 -c 0 -i 686 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.424832 -s 10 -d 7 -p ack -e 40 -c 0 -i 690 -a 0 -x {10.0 9.0 340 ------- null} + -t 0.424832 -s 7 -d 0 -p ack -e 40 -c 0 -i 690 -a 0 -x {10.0 9.0 340 ------- null} h -t 0.424832 -s 7 -d 8 -p ack -e 40 -c 0 -i 690 -a 0 -x {10.0 9.0 340 ------- null} r -t 0.424976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 675 -a 0 -x {9.0 10.0 342 ------- null} + -t 0.424976 -s 10 -d 7 -p ack -e 40 -c 0 -i 694 -a 0 -x {10.0 9.0 342 ------- null} - -t 0.424976 -s 10 -d 7 -p ack -e 40 -c 0 -i 694 -a 0 -x {10.0 9.0 342 ------- null} h -t 0.424976 -s 10 -d 7 -p ack -e 40 -c 0 -i 694 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.425072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 689 -a 0 -x {9.0 10.0 349 ------- null} + -t 0.425072 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 689 -a 0 -x {9.0 10.0 349 ------- null} h -t 0.425072 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 689 -a 0 -x {9.0 10.0 349 ------- null} r -t 0.425584 -s 0 -d 9 -p ack -e 40 -c 0 -i 684 -a 0 -x {10.0 9.0 337 ------- null} + -t 0.425584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 695 -a 0 -x {9.0 10.0 352 ------- null} - -t 0.425584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 695 -a 0 -x {9.0 10.0 352 ------- null} h -t 0.425584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 695 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.425664 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {9.0 10.0 345 ------- null} - -t 0.425664 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {9.0 10.0 345 ------- null} h -t 0.425664 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.425856 -s 0 -d 9 -p ack -e 40 -c 0 -i 688 -a 0 -x {10.0 9.0 339 ------- null} - -t 0.425856 -s 0 -d 9 -p ack -e 40 -c 0 -i 688 -a 0 -x {10.0 9.0 339 ------- null} h -t 0.425856 -s 0 -d 9 -p ack -e 40 -c 0 -i 688 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.42592 -s 10 -d 7 -p ack -e 40 -c 0 -i 692 -a 0 -x {10.0 9.0 341 ------- null} + -t 0.42592 -s 7 -d 0 -p ack -e 40 -c 0 -i 692 -a 0 -x {10.0 9.0 341 ------- null} h -t 0.42592 -s 7 -d 8 -p ack -e 40 -c 0 -i 692 -a 0 -x {10.0 9.0 341 ------- null} r -t 0.426048 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 691 -a 0 -x {9.0 10.0 350 ------- null} + -t 0.426048 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 691 -a 0 -x {9.0 10.0 350 ------- null} h -t 0.426048 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 691 -a 0 -x {9.0 10.0 350 ------- null} r -t 0.426064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 677 -a 0 -x {9.0 10.0 343 ------- null} + -t 0.426064 -s 10 -d 7 -p ack -e 40 -c 0 -i 696 -a 0 -x {10.0 9.0 343 ------- null} - -t 0.426064 -s 10 -d 7 -p ack -e 40 -c 0 -i 696 -a 0 -x {10.0 9.0 343 ------- null} h -t 0.426064 -s 10 -d 7 -p ack -e 40 -c 0 -i 696 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.426752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 683 -a 0 -x {9.0 10.0 346 ------- null} - -t 0.426752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 683 -a 0 -x {9.0 10.0 346 ------- null} h -t 0.426752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 683 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.426784 -s 0 -d 9 -p ack -e 40 -c 0 -i 686 -a 0 -x {10.0 9.0 338 ------- null} + -t 0.426784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 697 -a 0 -x {9.0 10.0 353 ------- null} - -t 0.426784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 697 -a 0 -x {9.0 10.0 353 ------- null} h -t 0.426784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 697 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.427008 -s 10 -d 7 -p ack -e 40 -c 0 -i 694 -a 0 -x {10.0 9.0 342 ------- null} + -t 0.427008 -s 7 -d 0 -p ack -e 40 -c 0 -i 694 -a 0 -x {10.0 9.0 342 ------- null} h -t 0.427008 -s 7 -d 8 -p ack -e 40 -c 0 -i 694 -a 0 -x {10.0 9.0 342 ------- null} + -t 0.42704 -s 0 -d 9 -p ack -e 40 -c 0 -i 690 -a 0 -x {10.0 9.0 340 ------- null} - -t 0.42704 -s 0 -d 9 -p ack -e 40 -c 0 -i 690 -a 0 -x {10.0 9.0 340 ------- null} h -t 0.42704 -s 0 -d 9 -p ack -e 40 -c 0 -i 690 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.427168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 693 -a 0 -x {9.0 10.0 351 ------- null} + -t 0.427168 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 693 -a 0 -x {9.0 10.0 351 ------- null} h -t 0.427168 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 693 -a 0 -x {9.0 10.0 351 ------- null} r -t 0.427376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 679 -a 0 -x {9.0 10.0 344 ------- null} + -t 0.427376 -s 10 -d 7 -p ack -e 40 -c 0 -i 698 -a 0 -x {10.0 9.0 344 ------- null} - -t 0.427376 -s 10 -d 7 -p ack -e 40 -c 0 -i 698 -a 0 -x {10.0 9.0 344 ------- null} h -t 0.427376 -s 10 -d 7 -p ack -e 40 -c 0 -i 698 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.427888 -s 0 -d 9 -p ack -e 40 -c 0 -i 688 -a 0 -x {10.0 9.0 339 ------- null} + -t 0.427888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 699 -a 0 -x {9.0 10.0 354 ------- null} - -t 0.427888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 699 -a 0 -x {9.0 10.0 354 ------- null} h -t 0.427888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 699 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.42808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 685 -a 0 -x {9.0 10.0 347 ------- null} - -t 0.42808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 685 -a 0 -x {9.0 10.0 347 ------- null} h -t 0.42808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 685 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.428096 -s 10 -d 7 -p ack -e 40 -c 0 -i 696 -a 0 -x {10.0 9.0 343 ------- null} + -t 0.428096 -s 7 -d 0 -p ack -e 40 -c 0 -i 696 -a 0 -x {10.0 9.0 343 ------- null} h -t 0.428096 -s 7 -d 8 -p ack -e 40 -c 0 -i 696 -a 0 -x {10.0 9.0 343 ------- null} + -t 0.428368 -s 0 -d 9 -p ack -e 40 -c 0 -i 692 -a 0 -x {10.0 9.0 341 ------- null} - -t 0.428368 -s 0 -d 9 -p ack -e 40 -c 0 -i 692 -a 0 -x {10.0 9.0 341 ------- null} h -t 0.428368 -s 0 -d 9 -p ack -e 40 -c 0 -i 692 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.428384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 695 -a 0 -x {9.0 10.0 352 ------- null} + -t 0.428384 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 695 -a 0 -x {9.0 10.0 352 ------- null} h -t 0.428384 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 695 -a 0 -x {9.0 10.0 352 ------- null} r -t 0.428464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 681 -a 0 -x {9.0 10.0 345 ------- null} + -t 0.428464 -s 10 -d 7 -p ack -e 40 -c 0 -i 700 -a 0 -x {10.0 9.0 345 ------- null} - -t 0.428464 -s 10 -d 7 -p ack -e 40 -c 0 -i 700 -a 0 -x {10.0 9.0 345 ------- null} h -t 0.428464 -s 10 -d 7 -p ack -e 40 -c 0 -i 700 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.429072 -s 0 -d 9 -p ack -e 40 -c 0 -i 690 -a 0 -x {10.0 9.0 340 ------- null} + -t 0.429072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 701 -a 0 -x {9.0 10.0 355 ------- null} - -t 0.429072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 701 -a 0 -x {9.0 10.0 355 ------- null} h -t 0.429072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 701 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.429344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 687 -a 0 -x {9.0 10.0 348 ------- null} - -t 0.429344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 687 -a 0 -x {9.0 10.0 348 ------- null} h -t 0.429344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 687 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.429408 -s 10 -d 7 -p ack -e 40 -c 0 -i 698 -a 0 -x {10.0 9.0 344 ------- null} + -t 0.429408 -s 7 -d 0 -p ack -e 40 -c 0 -i 698 -a 0 -x {10.0 9.0 344 ------- null} h -t 0.429408 -s 7 -d 8 -p ack -e 40 -c 0 -i 698 -a 0 -x {10.0 9.0 344 ------- null} + -t 0.429456 -s 0 -d 9 -p ack -e 40 -c 0 -i 694 -a 0 -x {10.0 9.0 342 ------- null} - -t 0.429456 -s 0 -d 9 -p ack -e 40 -c 0 -i 694 -a 0 -x {10.0 9.0 342 ------- null} h -t 0.429456 -s 0 -d 9 -p ack -e 40 -c 0 -i 694 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.429552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 683 -a 0 -x {9.0 10.0 346 ------- null} + -t 0.429552 -s 10 -d 7 -p ack -e 40 -c 0 -i 702 -a 0 -x {10.0 9.0 346 ------- null} - -t 0.429552 -s 10 -d 7 -p ack -e 40 -c 0 -i 702 -a 0 -x {10.0 9.0 346 ------- null} h -t 0.429552 -s 10 -d 7 -p ack -e 40 -c 0 -i 702 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.429584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 697 -a 0 -x {9.0 10.0 353 ------- null} + -t 0.429584 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 697 -a 0 -x {9.0 10.0 353 ------- null} h -t 0.429584 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 697 -a 0 -x {9.0 10.0 353 ------- null} r -t 0.4304 -s 0 -d 9 -p ack -e 40 -c 0 -i 692 -a 0 -x {10.0 9.0 341 ------- null} + -t 0.4304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {9.0 10.0 356 ------- null} - -t 0.4304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {9.0 10.0 356 ------- null} h -t 0.4304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.430432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 689 -a 0 -x {9.0 10.0 349 ------- null} - -t 0.430432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 689 -a 0 -x {9.0 10.0 349 ------- null} h -t 0.430432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 689 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.430496 -s 10 -d 7 -p ack -e 40 -c 0 -i 700 -a 0 -x {10.0 9.0 345 ------- null} + -t 0.430496 -s 7 -d 0 -p ack -e 40 -c 0 -i 700 -a 0 -x {10.0 9.0 345 ------- null} h -t 0.430496 -s 7 -d 8 -p ack -e 40 -c 0 -i 700 -a 0 -x {10.0 9.0 345 ------- null} + -t 0.430592 -s 0 -d 9 -p ack -e 40 -c 0 -i 696 -a 0 -x {10.0 9.0 343 ------- null} - -t 0.430592 -s 0 -d 9 -p ack -e 40 -c 0 -i 696 -a 0 -x {10.0 9.0 343 ------- null} h -t 0.430592 -s 0 -d 9 -p ack -e 40 -c 0 -i 696 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.430688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 699 -a 0 -x {9.0 10.0 354 ------- null} + -t 0.430688 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 699 -a 0 -x {9.0 10.0 354 ------- null} h -t 0.430688 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 699 -a 0 -x {9.0 10.0 354 ------- null} r -t 0.43088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 685 -a 0 -x {9.0 10.0 347 ------- null} + -t 0.43088 -s 10 -d 7 -p ack -e 40 -c 0 -i 704 -a 0 -x {10.0 9.0 347 ------- null} - -t 0.43088 -s 10 -d 7 -p ack -e 40 -c 0 -i 704 -a 0 -x {10.0 9.0 347 ------- null} h -t 0.43088 -s 10 -d 7 -p ack -e 40 -c 0 -i 704 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.431488 -s 0 -d 9 -p ack -e 40 -c 0 -i 694 -a 0 -x {10.0 9.0 342 ------- null} + -t 0.431488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {9.0 10.0 357 ------- null} - -t 0.431488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {9.0 10.0 357 ------- null} h -t 0.431488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.43152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 691 -a 0 -x {9.0 10.0 350 ------- null} - -t 0.43152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 691 -a 0 -x {9.0 10.0 350 ------- null} h -t 0.43152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 691 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.431584 -s 10 -d 7 -p ack -e 40 -c 0 -i 702 -a 0 -x {10.0 9.0 346 ------- null} + -t 0.431584 -s 7 -d 0 -p ack -e 40 -c 0 -i 702 -a 0 -x {10.0 9.0 346 ------- null} h -t 0.431584 -s 7 -d 8 -p ack -e 40 -c 0 -i 702 -a 0 -x {10.0 9.0 346 ------- null} + -t 0.431696 -s 0 -d 9 -p ack -e 40 -c 0 -i 698 -a 0 -x {10.0 9.0 344 ------- null} - -t 0.431696 -s 0 -d 9 -p ack -e 40 -c 0 -i 698 -a 0 -x {10.0 9.0 344 ------- null} h -t 0.431696 -s 0 -d 9 -p ack -e 40 -c 0 -i 698 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.431872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 701 -a 0 -x {9.0 10.0 355 ------- null} + -t 0.431872 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 701 -a 0 -x {9.0 10.0 355 ------- null} h -t 0.431872 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 701 -a 0 -x {9.0 10.0 355 ------- null} r -t 0.432144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 687 -a 0 -x {9.0 10.0 348 ------- null} + -t 0.432144 -s 10 -d 7 -p ack -e 40 -c 0 -i 706 -a 0 -x {10.0 9.0 348 ------- null} - -t 0.432144 -s 10 -d 7 -p ack -e 40 -c 0 -i 706 -a 0 -x {10.0 9.0 348 ------- null} h -t 0.432144 -s 10 -d 7 -p ack -e 40 -c 0 -i 706 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.432608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 693 -a 0 -x {9.0 10.0 351 ------- null} - -t 0.432608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 693 -a 0 -x {9.0 10.0 351 ------- null} h -t 0.432608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 693 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.432624 -s 0 -d 9 -p ack -e 40 -c 0 -i 696 -a 0 -x {10.0 9.0 343 ------- null} + -t 0.432624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {9.0 10.0 358 ------- null} - -t 0.432624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {9.0 10.0 358 ------- null} h -t 0.432624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.432784 -s 0 -d 9 -p ack -e 40 -c 0 -i 700 -a 0 -x {10.0 9.0 345 ------- null} - -t 0.432784 -s 0 -d 9 -p ack -e 40 -c 0 -i 700 -a 0 -x {10.0 9.0 345 ------- null} h -t 0.432784 -s 0 -d 9 -p ack -e 40 -c 0 -i 700 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.432912 -s 10 -d 7 -p ack -e 40 -c 0 -i 704 -a 0 -x {10.0 9.0 347 ------- null} + -t 0.432912 -s 7 -d 0 -p ack -e 40 -c 0 -i 704 -a 0 -x {10.0 9.0 347 ------- null} h -t 0.432912 -s 7 -d 8 -p ack -e 40 -c 0 -i 704 -a 0 -x {10.0 9.0 347 ------- null} r -t 0.4332 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {9.0 10.0 356 ------- null} + -t 0.4332 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {9.0 10.0 356 ------- null} h -t 0.4332 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {9.0 10.0 356 ------- null} r -t 0.433232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 689 -a 0 -x {9.0 10.0 349 ------- null} + -t 0.433232 -s 10 -d 7 -p ack -e 40 -c 0 -i 708 -a 0 -x {10.0 9.0 349 ------- null} - -t 0.433232 -s 10 -d 7 -p ack -e 40 -c 0 -i 708 -a 0 -x {10.0 9.0 349 ------- null} h -t 0.433232 -s 10 -d 7 -p ack -e 40 -c 0 -i 708 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.433696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 695 -a 0 -x {9.0 10.0 352 ------- null} - -t 0.433696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 695 -a 0 -x {9.0 10.0 352 ------- null} h -t 0.433696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 695 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.433728 -s 0 -d 9 -p ack -e 40 -c 0 -i 698 -a 0 -x {10.0 9.0 344 ------- null} + -t 0.433728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {9.0 10.0 359 ------- null} - -t 0.433728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {9.0 10.0 359 ------- null} h -t 0.433728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.433792 -s 0 -d 9 -p ack -e 40 -c 0 -i 702 -a 0 -x {10.0 9.0 346 ------- null} - -t 0.433792 -s 0 -d 9 -p ack -e 40 -c 0 -i 702 -a 0 -x {10.0 9.0 346 ------- null} h -t 0.433792 -s 0 -d 9 -p ack -e 40 -c 0 -i 702 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.434176 -s 10 -d 7 -p ack -e 40 -c 0 -i 706 -a 0 -x {10.0 9.0 348 ------- null} + -t 0.434176 -s 7 -d 0 -p ack -e 40 -c 0 -i 706 -a 0 -x {10.0 9.0 348 ------- null} h -t 0.434176 -s 7 -d 8 -p ack -e 40 -c 0 -i 706 -a 0 -x {10.0 9.0 348 ------- null} r -t 0.434288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {9.0 10.0 357 ------- null} + -t 0.434288 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {9.0 10.0 357 ------- null} h -t 0.434288 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {9.0 10.0 357 ------- null} r -t 0.43432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 691 -a 0 -x {9.0 10.0 350 ------- null} + -t 0.43432 -s 10 -d 7 -p ack -e 40 -c 0 -i 710 -a 0 -x {10.0 9.0 350 ------- null} - -t 0.43432 -s 10 -d 7 -p ack -e 40 -c 0 -i 710 -a 0 -x {10.0 9.0 350 ------- null} h -t 0.43432 -s 10 -d 7 -p ack -e 40 -c 0 -i 710 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.434784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 697 -a 0 -x {9.0 10.0 353 ------- null} - -t 0.434784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 697 -a 0 -x {9.0 10.0 353 ------- null} h -t 0.434784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 697 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.434816 -s 0 -d 9 -p ack -e 40 -c 0 -i 700 -a 0 -x {10.0 9.0 345 ------- null} + -t 0.434816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {9.0 10.0 360 ------- null} - -t 0.434816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {9.0 10.0 360 ------- null} h -t 0.434816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.434976 -s 0 -d 9 -p ack -e 40 -c 0 -i 704 -a 0 -x {10.0 9.0 347 ------- null} - -t 0.434976 -s 0 -d 9 -p ack -e 40 -c 0 -i 704 -a 0 -x {10.0 9.0 347 ------- null} h -t 0.434976 -s 0 -d 9 -p ack -e 40 -c 0 -i 704 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.435264 -s 10 -d 7 -p ack -e 40 -c 0 -i 708 -a 0 -x {10.0 9.0 349 ------- null} + -t 0.435264 -s 7 -d 0 -p ack -e 40 -c 0 -i 708 -a 0 -x {10.0 9.0 349 ------- null} h -t 0.435264 -s 7 -d 8 -p ack -e 40 -c 0 -i 708 -a 0 -x {10.0 9.0 349 ------- null} r -t 0.435408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 693 -a 0 -x {9.0 10.0 351 ------- null} + -t 0.435408 -s 10 -d 7 -p ack -e 40 -c 0 -i 712 -a 0 -x {10.0 9.0 351 ------- null} - -t 0.435408 -s 10 -d 7 -p ack -e 40 -c 0 -i 712 -a 0 -x {10.0 9.0 351 ------- null} h -t 0.435408 -s 10 -d 7 -p ack -e 40 -c 0 -i 712 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.435424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {9.0 10.0 358 ------- null} + -t 0.435424 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {9.0 10.0 358 ------- null} h -t 0.435424 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {9.0 10.0 358 ------- null} r -t 0.435824 -s 0 -d 9 -p ack -e 40 -c 0 -i 702 -a 0 -x {10.0 9.0 346 ------- null} + -t 0.435824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {9.0 10.0 361 ------- null} - -t 0.435824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {9.0 10.0 361 ------- null} h -t 0.435824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.435872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 699 -a 0 -x {9.0 10.0 354 ------- null} - -t 0.435872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 699 -a 0 -x {9.0 10.0 354 ------- null} h -t 0.435872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 699 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.435984 -s 0 -d 9 -p ack -e 40 -c 0 -i 706 -a 0 -x {10.0 9.0 348 ------- null} - -t 0.435984 -s 0 -d 9 -p ack -e 40 -c 0 -i 706 -a 0 -x {10.0 9.0 348 ------- null} h -t 0.435984 -s 0 -d 9 -p ack -e 40 -c 0 -i 706 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.436352 -s 10 -d 7 -p ack -e 40 -c 0 -i 710 -a 0 -x {10.0 9.0 350 ------- null} + -t 0.436352 -s 7 -d 0 -p ack -e 40 -c 0 -i 710 -a 0 -x {10.0 9.0 350 ------- null} h -t 0.436352 -s 7 -d 8 -p ack -e 40 -c 0 -i 710 -a 0 -x {10.0 9.0 350 ------- null} r -t 0.436496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 695 -a 0 -x {9.0 10.0 352 ------- null} + -t 0.436496 -s 10 -d 7 -p ack -e 40 -c 0 -i 714 -a 0 -x {10.0 9.0 352 ------- null} - -t 0.436496 -s 10 -d 7 -p ack -e 40 -c 0 -i 714 -a 0 -x {10.0 9.0 352 ------- null} h -t 0.436496 -s 10 -d 7 -p ack -e 40 -c 0 -i 714 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.436528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {9.0 10.0 359 ------- null} + -t 0.436528 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {9.0 10.0 359 ------- null} h -t 0.436528 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {9.0 10.0 359 ------- null} + -t 0.43696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 701 -a 0 -x {9.0 10.0 355 ------- null} - -t 0.43696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 701 -a 0 -x {9.0 10.0 355 ------- null} h -t 0.43696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 701 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.437008 -s 0 -d 9 -p ack -e 40 -c 0 -i 704 -a 0 -x {10.0 9.0 347 ------- null} + -t 0.437008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {9.0 10.0 362 ------- null} - -t 0.437008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {9.0 10.0 362 ------- null} h -t 0.437008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.437056 -s 0 -d 9 -p ack -e 40 -c 0 -i 708 -a 0 -x {10.0 9.0 349 ------- null} - -t 0.437056 -s 0 -d 9 -p ack -e 40 -c 0 -i 708 -a 0 -x {10.0 9.0 349 ------- null} h -t 0.437056 -s 0 -d 9 -p ack -e 40 -c 0 -i 708 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.43744 -s 10 -d 7 -p ack -e 40 -c 0 -i 712 -a 0 -x {10.0 9.0 351 ------- null} + -t 0.43744 -s 7 -d 0 -p ack -e 40 -c 0 -i 712 -a 0 -x {10.0 9.0 351 ------- null} h -t 0.43744 -s 7 -d 8 -p ack -e 40 -c 0 -i 712 -a 0 -x {10.0 9.0 351 ------- null} r -t 0.437584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 697 -a 0 -x {9.0 10.0 353 ------- null} + -t 0.437584 -s 10 -d 7 -p ack -e 40 -c 0 -i 716 -a 0 -x {10.0 9.0 353 ------- null} - -t 0.437584 -s 10 -d 7 -p ack -e 40 -c 0 -i 716 -a 0 -x {10.0 9.0 353 ------- null} h -t 0.437584 -s 10 -d 7 -p ack -e 40 -c 0 -i 716 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.437616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {9.0 10.0 360 ------- null} + -t 0.437616 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {9.0 10.0 360 ------- null} h -t 0.437616 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {9.0 10.0 360 ------- null} r -t 0.438016 -s 0 -d 9 -p ack -e 40 -c 0 -i 706 -a 0 -x {10.0 9.0 348 ------- null} + -t 0.438016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {9.0 10.0 363 ------- null} - -t 0.438016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {9.0 10.0 363 ------- null} h -t 0.438016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.438048 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {9.0 10.0 356 ------- null} - -t 0.438048 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {9.0 10.0 356 ------- null} h -t 0.438048 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.438288 -s 0 -d 9 -p ack -e 40 -c 0 -i 710 -a 0 -x {10.0 9.0 350 ------- null} - -t 0.438288 -s 0 -d 9 -p ack -e 40 -c 0 -i 710 -a 0 -x {10.0 9.0 350 ------- null} h -t 0.438288 -s 0 -d 9 -p ack -e 40 -c 0 -i 710 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.438528 -s 10 -d 7 -p ack -e 40 -c 0 -i 714 -a 0 -x {10.0 9.0 352 ------- null} + -t 0.438528 -s 7 -d 0 -p ack -e 40 -c 0 -i 714 -a 0 -x {10.0 9.0 352 ------- null} h -t 0.438528 -s 7 -d 8 -p ack -e 40 -c 0 -i 714 -a 0 -x {10.0 9.0 352 ------- null} r -t 0.438624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {9.0 10.0 361 ------- null} + -t 0.438624 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {9.0 10.0 361 ------- null} h -t 0.438624 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {9.0 10.0 361 ------- null} r -t 0.438672 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 699 -a 0 -x {9.0 10.0 354 ------- null} + -t 0.438672 -s 10 -d 7 -p ack -e 40 -c 0 -i 718 -a 0 -x {10.0 9.0 354 ------- null} - -t 0.438672 -s 10 -d 7 -p ack -e 40 -c 0 -i 718 -a 0 -x {10.0 9.0 354 ------- null} h -t 0.438672 -s 10 -d 7 -p ack -e 40 -c 0 -i 718 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.439088 -s 0 -d 9 -p ack -e 40 -c 0 -i 708 -a 0 -x {10.0 9.0 349 ------- null} + -t 0.439088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {9.0 10.0 364 ------- null} - -t 0.439088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {9.0 10.0 364 ------- null} h -t 0.439088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.439136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {9.0 10.0 357 ------- null} - -t 0.439136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {9.0 10.0 357 ------- null} h -t 0.439136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.439408 -s 0 -d 9 -p ack -e 40 -c 0 -i 712 -a 0 -x {10.0 9.0 351 ------- null} - -t 0.439408 -s 0 -d 9 -p ack -e 40 -c 0 -i 712 -a 0 -x {10.0 9.0 351 ------- null} h -t 0.439408 -s 0 -d 9 -p ack -e 40 -c 0 -i 712 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.439616 -s 10 -d 7 -p ack -e 40 -c 0 -i 716 -a 0 -x {10.0 9.0 353 ------- null} + -t 0.439616 -s 7 -d 0 -p ack -e 40 -c 0 -i 716 -a 0 -x {10.0 9.0 353 ------- null} h -t 0.439616 -s 7 -d 8 -p ack -e 40 -c 0 -i 716 -a 0 -x {10.0 9.0 353 ------- null} r -t 0.43976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 701 -a 0 -x {9.0 10.0 355 ------- null} + -t 0.43976 -s 10 -d 7 -p ack -e 40 -c 0 -i 720 -a 0 -x {10.0 9.0 355 ------- null} - -t 0.43976 -s 10 -d 7 -p ack -e 40 -c 0 -i 720 -a 0 -x {10.0 9.0 355 ------- null} h -t 0.43976 -s 10 -d 7 -p ack -e 40 -c 0 -i 720 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.439808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {9.0 10.0 362 ------- null} + -t 0.439808 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {9.0 10.0 362 ------- null} h -t 0.439808 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {9.0 10.0 362 ------- null} r -t 0.44032 -s 0 -d 9 -p ack -e 40 -c 0 -i 710 -a 0 -x {10.0 9.0 350 ------- null} + -t 0.44032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {9.0 10.0 365 ------- null} - -t 0.44032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {9.0 10.0 365 ------- null} h -t 0.44032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.440464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {9.0 10.0 358 ------- null} - -t 0.440464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {9.0 10.0 358 ------- null} h -t 0.440464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.44056 -s 0 -d 9 -p ack -e 40 -c 0 -i 714 -a 0 -x {10.0 9.0 352 ------- null} - -t 0.44056 -s 0 -d 9 -p ack -e 40 -c 0 -i 714 -a 0 -x {10.0 9.0 352 ------- null} h -t 0.44056 -s 0 -d 9 -p ack -e 40 -c 0 -i 714 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.440704 -s 10 -d 7 -p ack -e 40 -c 0 -i 718 -a 0 -x {10.0 9.0 354 ------- null} + -t 0.440704 -s 7 -d 0 -p ack -e 40 -c 0 -i 718 -a 0 -x {10.0 9.0 354 ------- null} h -t 0.440704 -s 7 -d 8 -p ack -e 40 -c 0 -i 718 -a 0 -x {10.0 9.0 354 ------- null} r -t 0.440816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {9.0 10.0 363 ------- null} + -t 0.440816 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {9.0 10.0 363 ------- null} h -t 0.440816 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {9.0 10.0 363 ------- null} r -t 0.440848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 703 -a 0 -x {9.0 10.0 356 ------- null} + -t 0.440848 -s 10 -d 7 -p ack -e 40 -c 0 -i 722 -a 0 -x {10.0 9.0 356 ------- null} - -t 0.440848 -s 10 -d 7 -p ack -e 40 -c 0 -i 722 -a 0 -x {10.0 9.0 356 ------- null} h -t 0.440848 -s 10 -d 7 -p ack -e 40 -c 0 -i 722 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.44144 -s 0 -d 9 -p ack -e 40 -c 0 -i 712 -a 0 -x {10.0 9.0 351 ------- null} + -t 0.44144 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 723 -a 0 -x {9.0 10.0 366 ------- null} - -t 0.44144 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 723 -a 0 -x {9.0 10.0 366 ------- null} h -t 0.44144 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 723 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.441552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {9.0 10.0 359 ------- null} - -t 0.441552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {9.0 10.0 359 ------- null} h -t 0.441552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.441792 -s 0 -d 9 -p ack -e 40 -c 0 -i 716 -a 0 -x {10.0 9.0 353 ------- null} - -t 0.441792 -s 0 -d 9 -p ack -e 40 -c 0 -i 716 -a 0 -x {10.0 9.0 353 ------- null} h -t 0.441792 -s 0 -d 9 -p ack -e 40 -c 0 -i 716 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.441792 -s 10 -d 7 -p ack -e 40 -c 0 -i 720 -a 0 -x {10.0 9.0 355 ------- null} + -t 0.441792 -s 7 -d 0 -p ack -e 40 -c 0 -i 720 -a 0 -x {10.0 9.0 355 ------- null} h -t 0.441792 -s 7 -d 8 -p ack -e 40 -c 0 -i 720 -a 0 -x {10.0 9.0 355 ------- null} r -t 0.441888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {9.0 10.0 364 ------- null} + -t 0.441888 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {9.0 10.0 364 ------- null} h -t 0.441888 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {9.0 10.0 364 ------- null} r -t 0.441936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 705 -a 0 -x {9.0 10.0 357 ------- null} + -t 0.441936 -s 10 -d 7 -p ack -e 40 -c 0 -i 724 -a 0 -x {10.0 9.0 357 ------- null} - -t 0.441936 -s 10 -d 7 -p ack -e 40 -c 0 -i 724 -a 0 -x {10.0 9.0 357 ------- null} h -t 0.441936 -s 10 -d 7 -p ack -e 40 -c 0 -i 724 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.442592 -s 0 -d 9 -p ack -e 40 -c 0 -i 714 -a 0 -x {10.0 9.0 352 ------- null} + -t 0.442592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 725 -a 0 -x {9.0 10.0 367 ------- null} - -t 0.442592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 725 -a 0 -x {9.0 10.0 367 ------- null} h -t 0.442592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 725 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.44264 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {9.0 10.0 360 ------- null} - -t 0.44264 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {9.0 10.0 360 ------- null} h -t 0.44264 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.44288 -s 10 -d 7 -p ack -e 40 -c 0 -i 722 -a 0 -x {10.0 9.0 356 ------- null} + -t 0.44288 -s 7 -d 0 -p ack -e 40 -c 0 -i 722 -a 0 -x {10.0 9.0 356 ------- null} h -t 0.44288 -s 7 -d 8 -p ack -e 40 -c 0 -i 722 -a 0 -x {10.0 9.0 356 ------- null} + -t 0.442928 -s 0 -d 9 -p ack -e 40 -c 0 -i 718 -a 0 -x {10.0 9.0 354 ------- null} - -t 0.442928 -s 0 -d 9 -p ack -e 40 -c 0 -i 718 -a 0 -x {10.0 9.0 354 ------- null} h -t 0.442928 -s 0 -d 9 -p ack -e 40 -c 0 -i 718 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.44312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {9.0 10.0 365 ------- null} + -t 0.44312 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {9.0 10.0 365 ------- null} h -t 0.44312 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {9.0 10.0 365 ------- null} r -t 0.443264 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 707 -a 0 -x {9.0 10.0 358 ------- null} + -t 0.443264 -s 10 -d 7 -p ack -e 40 -c 0 -i 726 -a 0 -x {10.0 9.0 358 ------- null} - -t 0.443264 -s 10 -d 7 -p ack -e 40 -c 0 -i 726 -a 0 -x {10.0 9.0 358 ------- null} h -t 0.443264 -s 10 -d 7 -p ack -e 40 -c 0 -i 726 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.443824 -s 0 -d 9 -p ack -e 40 -c 0 -i 716 -a 0 -x {10.0 9.0 353 ------- null} + -t 0.443824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 727 -a 0 -x {9.0 10.0 368 ------- null} - -t 0.443824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 727 -a 0 -x {9.0 10.0 368 ------- null} h -t 0.443824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 727 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.44384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {9.0 10.0 361 ------- null} - -t 0.44384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {9.0 10.0 361 ------- null} h -t 0.44384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.443968 -s 10 -d 7 -p ack -e 40 -c 0 -i 724 -a 0 -x {10.0 9.0 357 ------- null} + -t 0.443968 -s 7 -d 0 -p ack -e 40 -c 0 -i 724 -a 0 -x {10.0 9.0 357 ------- null} h -t 0.443968 -s 7 -d 8 -p ack -e 40 -c 0 -i 724 -a 0 -x {10.0 9.0 357 ------- null} + -t 0.444032 -s 0 -d 9 -p ack -e 40 -c 0 -i 720 -a 0 -x {10.0 9.0 355 ------- null} - -t 0.444032 -s 0 -d 9 -p ack -e 40 -c 0 -i 720 -a 0 -x {10.0 9.0 355 ------- null} h -t 0.444032 -s 0 -d 9 -p ack -e 40 -c 0 -i 720 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.44424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 723 -a 0 -x {9.0 10.0 366 ------- null} + -t 0.44424 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 723 -a 0 -x {9.0 10.0 366 ------- null} h -t 0.44424 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 723 -a 0 -x {9.0 10.0 366 ------- null} r -t 0.444352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 709 -a 0 -x {9.0 10.0 359 ------- null} + -t 0.444352 -s 10 -d 7 -p ack -e 40 -c 0 -i 728 -a 0 -x {10.0 9.0 359 ------- null} - -t 0.444352 -s 10 -d 7 -p ack -e 40 -c 0 -i 728 -a 0 -x {10.0 9.0 359 ------- null} h -t 0.444352 -s 10 -d 7 -p ack -e 40 -c 0 -i 728 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.444928 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {9.0 10.0 362 ------- null} - -t 0.444928 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {9.0 10.0 362 ------- null} h -t 0.444928 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.44496 -s 0 -d 9 -p ack -e 40 -c 0 -i 718 -a 0 -x {10.0 9.0 354 ------- null} + -t 0.44496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 729 -a 0 -x {9.0 10.0 369 ------- null} - -t 0.44496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 729 -a 0 -x {9.0 10.0 369 ------- null} h -t 0.44496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 729 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.445184 -s 0 -d 9 -p ack -e 40 -c 0 -i 722 -a 0 -x {10.0 9.0 356 ------- null} - -t 0.445184 -s 0 -d 9 -p ack -e 40 -c 0 -i 722 -a 0 -x {10.0 9.0 356 ------- null} h -t 0.445184 -s 0 -d 9 -p ack -e 40 -c 0 -i 722 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.445296 -s 10 -d 7 -p ack -e 40 -c 0 -i 726 -a 0 -x {10.0 9.0 358 ------- null} + -t 0.445296 -s 7 -d 0 -p ack -e 40 -c 0 -i 726 -a 0 -x {10.0 9.0 358 ------- null} h -t 0.445296 -s 7 -d 8 -p ack -e 40 -c 0 -i 726 -a 0 -x {10.0 9.0 358 ------- null} r -t 0.445392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 725 -a 0 -x {9.0 10.0 367 ------- null} + -t 0.445392 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 725 -a 0 -x {9.0 10.0 367 ------- null} h -t 0.445392 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 725 -a 0 -x {9.0 10.0 367 ------- null} r -t 0.44544 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 711 -a 0 -x {9.0 10.0 360 ------- null} + -t 0.44544 -s 10 -d 7 -p ack -e 40 -c 0 -i 730 -a 0 -x {10.0 9.0 360 ------- null} - -t 0.44544 -s 10 -d 7 -p ack -e 40 -c 0 -i 730 -a 0 -x {10.0 9.0 360 ------- null} h -t 0.44544 -s 10 -d 7 -p ack -e 40 -c 0 -i 730 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.446064 -s 0 -d 9 -p ack -e 40 -c 0 -i 720 -a 0 -x {10.0 9.0 355 ------- null} + -t 0.446064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 731 -a 0 -x {9.0 10.0 370 ------- null} - -t 0.446064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 731 -a 0 -x {9.0 10.0 370 ------- null} h -t 0.446064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 731 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.44608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {9.0 10.0 363 ------- null} - -t 0.44608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {9.0 10.0 363 ------- null} h -t 0.44608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.446368 -s 0 -d 9 -p ack -e 40 -c 0 -i 724 -a 0 -x {10.0 9.0 357 ------- null} - -t 0.446368 -s 0 -d 9 -p ack -e 40 -c 0 -i 724 -a 0 -x {10.0 9.0 357 ------- null} h -t 0.446368 -s 0 -d 9 -p ack -e 40 -c 0 -i 724 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.446384 -s 10 -d 7 -p ack -e 40 -c 0 -i 728 -a 0 -x {10.0 9.0 359 ------- null} + -t 0.446384 -s 7 -d 0 -p ack -e 40 -c 0 -i 728 -a 0 -x {10.0 9.0 359 ------- null} h -t 0.446384 -s 7 -d 8 -p ack -e 40 -c 0 -i 728 -a 0 -x {10.0 9.0 359 ------- null} r -t 0.446624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 727 -a 0 -x {9.0 10.0 368 ------- null} + -t 0.446624 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 727 -a 0 -x {9.0 10.0 368 ------- null} h -t 0.446624 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 727 -a 0 -x {9.0 10.0 368 ------- null} r -t 0.44664 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 713 -a 0 -x {9.0 10.0 361 ------- null} + -t 0.44664 -s 10 -d 7 -p ack -e 40 -c 0 -i 732 -a 0 -x {10.0 9.0 361 ------- null} - -t 0.44664 -s 10 -d 7 -p ack -e 40 -c 0 -i 732 -a 0 -x {10.0 9.0 361 ------- null} h -t 0.44664 -s 10 -d 7 -p ack -e 40 -c 0 -i 732 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.4472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {9.0 10.0 364 ------- null} - -t 0.4472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {9.0 10.0 364 ------- null} h -t 0.4472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.447216 -s 0 -d 9 -p ack -e 40 -c 0 -i 722 -a 0 -x {10.0 9.0 356 ------- null} + -t 0.447216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 733 -a 0 -x {9.0 10.0 371 ------- null} - -t 0.447216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 733 -a 0 -x {9.0 10.0 371 ------- null} h -t 0.447216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 733 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.447312 -s 0 -d 9 -p ack -e 40 -c 0 -i 726 -a 0 -x {10.0 9.0 358 ------- null} - -t 0.447312 -s 0 -d 9 -p ack -e 40 -c 0 -i 726 -a 0 -x {10.0 9.0 358 ------- null} h -t 0.447312 -s 0 -d 9 -p ack -e 40 -c 0 -i 726 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.447472 -s 10 -d 7 -p ack -e 40 -c 0 -i 730 -a 0 -x {10.0 9.0 360 ------- null} + -t 0.447472 -s 7 -d 0 -p ack -e 40 -c 0 -i 730 -a 0 -x {10.0 9.0 360 ------- null} h -t 0.447472 -s 7 -d 8 -p ack -e 40 -c 0 -i 730 -a 0 -x {10.0 9.0 360 ------- null} r -t 0.447728 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 715 -a 0 -x {9.0 10.0 362 ------- null} + -t 0.447728 -s 10 -d 7 -p ack -e 40 -c 0 -i 734 -a 0 -x {10.0 9.0 362 ------- null} - -t 0.447728 -s 10 -d 7 -p ack -e 40 -c 0 -i 734 -a 0 -x {10.0 9.0 362 ------- null} h -t 0.447728 -s 10 -d 7 -p ack -e 40 -c 0 -i 734 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.44776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 729 -a 0 -x {9.0 10.0 369 ------- null} + -t 0.44776 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 729 -a 0 -x {9.0 10.0 369 ------- null} h -t 0.44776 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 729 -a 0 -x {9.0 10.0 369 ------- null} + -t 0.448288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {9.0 10.0 365 ------- null} - -t 0.448288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {9.0 10.0 365 ------- null} h -t 0.448288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.4484 -s 0 -d 9 -p ack -e 40 -c 0 -i 724 -a 0 -x {10.0 9.0 357 ------- null} + -t 0.4484 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 735 -a 0 -x {9.0 10.0 372 ------- null} - -t 0.4484 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 735 -a 0 -x {9.0 10.0 372 ------- null} h -t 0.4484 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 735 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.44848 -s 0 -d 9 -p ack -e 40 -c 0 -i 728 -a 0 -x {10.0 9.0 359 ------- null} - -t 0.44848 -s 0 -d 9 -p ack -e 40 -c 0 -i 728 -a 0 -x {10.0 9.0 359 ------- null} h -t 0.44848 -s 0 -d 9 -p ack -e 40 -c 0 -i 728 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.448672 -s 10 -d 7 -p ack -e 40 -c 0 -i 732 -a 0 -x {10.0 9.0 361 ------- null} + -t 0.448672 -s 7 -d 0 -p ack -e 40 -c 0 -i 732 -a 0 -x {10.0 9.0 361 ------- null} h -t 0.448672 -s 7 -d 8 -p ack -e 40 -c 0 -i 732 -a 0 -x {10.0 9.0 361 ------- null} r -t 0.448864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 731 -a 0 -x {9.0 10.0 370 ------- null} + -t 0.448864 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 731 -a 0 -x {9.0 10.0 370 ------- null} h -t 0.448864 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 731 -a 0 -x {9.0 10.0 370 ------- null} r -t 0.44888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 717 -a 0 -x {9.0 10.0 363 ------- null} + -t 0.44888 -s 10 -d 7 -p ack -e 40 -c 0 -i 736 -a 0 -x {10.0 9.0 363 ------- null} - -t 0.44888 -s 10 -d 7 -p ack -e 40 -c 0 -i 736 -a 0 -x {10.0 9.0 363 ------- null} h -t 0.44888 -s 10 -d 7 -p ack -e 40 -c 0 -i 736 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.449344 -s 0 -d 9 -p ack -e 40 -c 0 -i 726 -a 0 -x {10.0 9.0 358 ------- null} + -t 0.449344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 737 -a 0 -x {9.0 10.0 373 ------- null} - -t 0.449344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 737 -a 0 -x {9.0 10.0 373 ------- null} h -t 0.449344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 737 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.449376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 723 -a 0 -x {9.0 10.0 366 ------- null} - -t 0.449376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 723 -a 0 -x {9.0 10.0 366 ------- null} h -t 0.449376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 723 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.449568 -s 0 -d 9 -p ack -e 40 -c 0 -i 730 -a 0 -x {10.0 9.0 360 ------- null} - -t 0.449568 -s 0 -d 9 -p ack -e 40 -c 0 -i 730 -a 0 -x {10.0 9.0 360 ------- null} h -t 0.449568 -s 0 -d 9 -p ack -e 40 -c 0 -i 730 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.44976 -s 10 -d 7 -p ack -e 40 -c 0 -i 734 -a 0 -x {10.0 9.0 362 ------- null} + -t 0.44976 -s 7 -d 0 -p ack -e 40 -c 0 -i 734 -a 0 -x {10.0 9.0 362 ------- null} h -t 0.44976 -s 7 -d 8 -p ack -e 40 -c 0 -i 734 -a 0 -x {10.0 9.0 362 ------- null} r -t 0.45 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 719 -a 0 -x {9.0 10.0 364 ------- null} + -t 0.45 -s 10 -d 7 -p ack -e 40 -c 0 -i 738 -a 0 -x {10.0 9.0 364 ------- null} - -t 0.45 -s 10 -d 7 -p ack -e 40 -c 0 -i 738 -a 0 -x {10.0 9.0 364 ------- null} h -t 0.45 -s 10 -d 7 -p ack -e 40 -c 0 -i 738 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.450016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 733 -a 0 -x {9.0 10.0 371 ------- null} + -t 0.450016 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 733 -a 0 -x {9.0 10.0 371 ------- null} h -t 0.450016 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 733 -a 0 -x {9.0 10.0 371 ------- null} + -t 0.450464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 725 -a 0 -x {9.0 10.0 367 ------- null} - -t 0.450464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 725 -a 0 -x {9.0 10.0 367 ------- null} h -t 0.450464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 725 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.450512 -s 0 -d 9 -p ack -e 40 -c 0 -i 728 -a 0 -x {10.0 9.0 359 ------- null} + -t 0.450512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 739 -a 0 -x {9.0 10.0 374 ------- null} - -t 0.450512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 739 -a 0 -x {9.0 10.0 374 ------- null} h -t 0.450512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 739 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.450624 -s 0 -d 9 -p ack -e 40 -c 0 -i 732 -a 0 -x {10.0 9.0 361 ------- null} - -t 0.450624 -s 0 -d 9 -p ack -e 40 -c 0 -i 732 -a 0 -x {10.0 9.0 361 ------- null} h -t 0.450624 -s 0 -d 9 -p ack -e 40 -c 0 -i 732 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.450912 -s 10 -d 7 -p ack -e 40 -c 0 -i 736 -a 0 -x {10.0 9.0 363 ------- null} + -t 0.450912 -s 7 -d 0 -p ack -e 40 -c 0 -i 736 -a 0 -x {10.0 9.0 363 ------- null} h -t 0.450912 -s 7 -d 8 -p ack -e 40 -c 0 -i 736 -a 0 -x {10.0 9.0 363 ------- null} r -t 0.451088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 721 -a 0 -x {9.0 10.0 365 ------- null} + -t 0.451088 -s 10 -d 7 -p ack -e 40 -c 0 -i 740 -a 0 -x {10.0 9.0 365 ------- null} - -t 0.451088 -s 10 -d 7 -p ack -e 40 -c 0 -i 740 -a 0 -x {10.0 9.0 365 ------- null} h -t 0.451088 -s 10 -d 7 -p ack -e 40 -c 0 -i 740 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.4512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 735 -a 0 -x {9.0 10.0 372 ------- null} + -t 0.4512 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 735 -a 0 -x {9.0 10.0 372 ------- null} h -t 0.4512 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 735 -a 0 -x {9.0 10.0 372 ------- null} + -t 0.451552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 727 -a 0 -x {9.0 10.0 368 ------- null} - -t 0.451552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 727 -a 0 -x {9.0 10.0 368 ------- null} h -t 0.451552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 727 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.4516 -s 0 -d 9 -p ack -e 40 -c 0 -i 730 -a 0 -x {10.0 9.0 360 ------- null} + -t 0.4516 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 741 -a 0 -x {9.0 10.0 375 ------- null} - -t 0.4516 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 741 -a 0 -x {9.0 10.0 375 ------- null} h -t 0.4516 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 741 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.451856 -s 0 -d 9 -p ack -e 40 -c 0 -i 734 -a 0 -x {10.0 9.0 362 ------- null} - -t 0.451856 -s 0 -d 9 -p ack -e 40 -c 0 -i 734 -a 0 -x {10.0 9.0 362 ------- null} h -t 0.451856 -s 0 -d 9 -p ack -e 40 -c 0 -i 734 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.452032 -s 10 -d 7 -p ack -e 40 -c 0 -i 738 -a 0 -x {10.0 9.0 364 ------- null} + -t 0.452032 -s 7 -d 0 -p ack -e 40 -c 0 -i 738 -a 0 -x {10.0 9.0 364 ------- null} h -t 0.452032 -s 7 -d 8 -p ack -e 40 -c 0 -i 738 -a 0 -x {10.0 9.0 364 ------- null} r -t 0.452144 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 737 -a 0 -x {9.0 10.0 373 ------- null} + -t 0.452144 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 737 -a 0 -x {9.0 10.0 373 ------- null} h -t 0.452144 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 737 -a 0 -x {9.0 10.0 373 ------- null} r -t 0.452176 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 723 -a 0 -x {9.0 10.0 366 ------- null} + -t 0.452176 -s 10 -d 7 -p ack -e 40 -c 0 -i 742 -a 0 -x {10.0 9.0 366 ------- null} - -t 0.452176 -s 10 -d 7 -p ack -e 40 -c 0 -i 742 -a 0 -x {10.0 9.0 366 ------- null} h -t 0.452176 -s 10 -d 7 -p ack -e 40 -c 0 -i 742 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.452656 -s 0 -d 9 -p ack -e 40 -c 0 -i 732 -a 0 -x {10.0 9.0 361 ------- null} + -t 0.452656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {9.0 10.0 376 ------- null} - -t 0.452656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {9.0 10.0 376 ------- null} h -t 0.452656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.452752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 729 -a 0 -x {9.0 10.0 369 ------- null} - -t 0.452752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 729 -a 0 -x {9.0 10.0 369 ------- null} h -t 0.452752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 729 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.452928 -s 0 -d 9 -p ack -e 40 -c 0 -i 736 -a 0 -x {10.0 9.0 363 ------- null} - -t 0.452928 -s 0 -d 9 -p ack -e 40 -c 0 -i 736 -a 0 -x {10.0 9.0 363 ------- null} h -t 0.452928 -s 0 -d 9 -p ack -e 40 -c 0 -i 736 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.45312 -s 10 -d 7 -p ack -e 40 -c 0 -i 740 -a 0 -x {10.0 9.0 365 ------- null} + -t 0.45312 -s 7 -d 0 -p ack -e 40 -c 0 -i 740 -a 0 -x {10.0 9.0 365 ------- null} h -t 0.45312 -s 7 -d 8 -p ack -e 40 -c 0 -i 740 -a 0 -x {10.0 9.0 365 ------- null} r -t 0.453264 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 725 -a 0 -x {9.0 10.0 367 ------- null} + -t 0.453264 -s 10 -d 7 -p ack -e 40 -c 0 -i 744 -a 0 -x {10.0 9.0 367 ------- null} - -t 0.453264 -s 10 -d 7 -p ack -e 40 -c 0 -i 744 -a 0 -x {10.0 9.0 367 ------- null} h -t 0.453264 -s 10 -d 7 -p ack -e 40 -c 0 -i 744 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.453312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 739 -a 0 -x {9.0 10.0 374 ------- null} + -t 0.453312 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 739 -a 0 -x {9.0 10.0 374 ------- null} h -t 0.453312 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 739 -a 0 -x {9.0 10.0 374 ------- null} + -t 0.45384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 731 -a 0 -x {9.0 10.0 370 ------- null} - -t 0.45384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 731 -a 0 -x {9.0 10.0 370 ------- null} h -t 0.45384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 731 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.453888 -s 0 -d 9 -p ack -e 40 -c 0 -i 734 -a 0 -x {10.0 9.0 362 ------- null} + -t 0.453888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {9.0 10.0 377 ------- null} - -t 0.453888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {9.0 10.0 377 ------- null} h -t 0.453888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.454144 -s 0 -d 9 -p ack -e 40 -c 0 -i 738 -a 0 -x {10.0 9.0 364 ------- null} - -t 0.454144 -s 0 -d 9 -p ack -e 40 -c 0 -i 738 -a 0 -x {10.0 9.0 364 ------- null} h -t 0.454144 -s 0 -d 9 -p ack -e 40 -c 0 -i 738 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.454208 -s 10 -d 7 -p ack -e 40 -c 0 -i 742 -a 0 -x {10.0 9.0 366 ------- null} + -t 0.454208 -s 7 -d 0 -p ack -e 40 -c 0 -i 742 -a 0 -x {10.0 9.0 366 ------- null} h -t 0.454208 -s 7 -d 8 -p ack -e 40 -c 0 -i 742 -a 0 -x {10.0 9.0 366 ------- null} r -t 0.454352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 727 -a 0 -x {9.0 10.0 368 ------- null} + -t 0.454352 -s 10 -d 7 -p ack -e 40 -c 0 -i 746 -a 0 -x {10.0 9.0 368 ------- null} - -t 0.454352 -s 10 -d 7 -p ack -e 40 -c 0 -i 746 -a 0 -x {10.0 9.0 368 ------- null} h -t 0.454352 -s 10 -d 7 -p ack -e 40 -c 0 -i 746 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.4544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 741 -a 0 -x {9.0 10.0 375 ------- null} + -t 0.4544 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 741 -a 0 -x {9.0 10.0 375 ------- null} h -t 0.4544 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 741 -a 0 -x {9.0 10.0 375 ------- null} r -t 0.45496 -s 0 -d 9 -p ack -e 40 -c 0 -i 736 -a 0 -x {10.0 9.0 363 ------- null} + -t 0.45496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {9.0 10.0 378 ------- null} - -t 0.45496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {9.0 10.0 378 ------- null} h -t 0.45496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.454992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 733 -a 0 -x {9.0 10.0 371 ------- null} - -t 0.454992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 733 -a 0 -x {9.0 10.0 371 ------- null} h -t 0.454992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 733 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.455136 -s 0 -d 9 -p ack -e 40 -c 0 -i 740 -a 0 -x {10.0 9.0 365 ------- null} - -t 0.455136 -s 0 -d 9 -p ack -e 40 -c 0 -i 740 -a 0 -x {10.0 9.0 365 ------- null} h -t 0.455136 -s 0 -d 9 -p ack -e 40 -c 0 -i 740 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.455296 -s 10 -d 7 -p ack -e 40 -c 0 -i 744 -a 0 -x {10.0 9.0 367 ------- null} + -t 0.455296 -s 7 -d 0 -p ack -e 40 -c 0 -i 744 -a 0 -x {10.0 9.0 367 ------- null} h -t 0.455296 -s 7 -d 8 -p ack -e 40 -c 0 -i 744 -a 0 -x {10.0 9.0 367 ------- null} r -t 0.455456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {9.0 10.0 376 ------- null} + -t 0.455456 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {9.0 10.0 376 ------- null} h -t 0.455456 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {9.0 10.0 376 ------- null} r -t 0.455552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 729 -a 0 -x {9.0 10.0 369 ------- null} + -t 0.455552 -s 10 -d 7 -p ack -e 40 -c 0 -i 748 -a 0 -x {10.0 9.0 369 ------- null} - -t 0.455552 -s 10 -d 7 -p ack -e 40 -c 0 -i 748 -a 0 -x {10.0 9.0 369 ------- null} h -t 0.455552 -s 10 -d 7 -p ack -e 40 -c 0 -i 748 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.45608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 735 -a 0 -x {9.0 10.0 372 ------- null} - -t 0.45608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 735 -a 0 -x {9.0 10.0 372 ------- null} h -t 0.45608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 735 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.456176 -s 0 -d 9 -p ack -e 40 -c 0 -i 738 -a 0 -x {10.0 9.0 364 ------- null} + -t 0.456176 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {9.0 10.0 379 ------- null} - -t 0.456176 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {9.0 10.0 379 ------- null} h -t 0.456176 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.456272 -s 0 -d 9 -p ack -e 40 -c 0 -i 742 -a 0 -x {10.0 9.0 366 ------- null} - -t 0.456272 -s 0 -d 9 -p ack -e 40 -c 0 -i 742 -a 0 -x {10.0 9.0 366 ------- null} h -t 0.456272 -s 0 -d 9 -p ack -e 40 -c 0 -i 742 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.456384 -s 10 -d 7 -p ack -e 40 -c 0 -i 746 -a 0 -x {10.0 9.0 368 ------- null} + -t 0.456384 -s 7 -d 0 -p ack -e 40 -c 0 -i 746 -a 0 -x {10.0 9.0 368 ------- null} h -t 0.456384 -s 7 -d 8 -p ack -e 40 -c 0 -i 746 -a 0 -x {10.0 9.0 368 ------- null} r -t 0.45664 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 731 -a 0 -x {9.0 10.0 370 ------- null} + -t 0.45664 -s 10 -d 7 -p ack -e 40 -c 0 -i 750 -a 0 -x {10.0 9.0 370 ------- null} - -t 0.45664 -s 10 -d 7 -p ack -e 40 -c 0 -i 750 -a 0 -x {10.0 9.0 370 ------- null} h -t 0.45664 -s 10 -d 7 -p ack -e 40 -c 0 -i 750 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.456688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {9.0 10.0 377 ------- null} + -t 0.456688 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {9.0 10.0 377 ------- null} h -t 0.456688 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {9.0 10.0 377 ------- null} + -t 0.457168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 737 -a 0 -x {9.0 10.0 373 ------- null} - -t 0.457168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 737 -a 0 -x {9.0 10.0 373 ------- null} h -t 0.457168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 737 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.457168 -s 0 -d 9 -p ack -e 40 -c 0 -i 740 -a 0 -x {10.0 9.0 365 ------- null} + -t 0.457168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {9.0 10.0 380 ------- null} - -t 0.457168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {9.0 10.0 380 ------- null} h -t 0.457168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.457264 -s 0 -d 9 -p ack -e 40 -c 0 -i 744 -a 0 -x {10.0 9.0 367 ------- null} - -t 0.457264 -s 0 -d 9 -p ack -e 40 -c 0 -i 744 -a 0 -x {10.0 9.0 367 ------- null} h -t 0.457264 -s 0 -d 9 -p ack -e 40 -c 0 -i 744 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.457584 -s 10 -d 7 -p ack -e 40 -c 0 -i 748 -a 0 -x {10.0 9.0 369 ------- null} + -t 0.457584 -s 7 -d 0 -p ack -e 40 -c 0 -i 748 -a 0 -x {10.0 9.0 369 ------- null} h -t 0.457584 -s 7 -d 8 -p ack -e 40 -c 0 -i 748 -a 0 -x {10.0 9.0 369 ------- null} r -t 0.45776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {9.0 10.0 378 ------- null} + -t 0.45776 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {9.0 10.0 378 ------- null} h -t 0.45776 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {9.0 10.0 378 ------- null} r -t 0.457792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 733 -a 0 -x {9.0 10.0 371 ------- null} + -t 0.457792 -s 10 -d 7 -p ack -e 40 -c 0 -i 752 -a 0 -x {10.0 9.0 371 ------- null} - -t 0.457792 -s 10 -d 7 -p ack -e 40 -c 0 -i 752 -a 0 -x {10.0 9.0 371 ------- null} h -t 0.457792 -s 10 -d 7 -p ack -e 40 -c 0 -i 752 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.458256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 739 -a 0 -x {9.0 10.0 374 ------- null} - -t 0.458256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 739 -a 0 -x {9.0 10.0 374 ------- null} h -t 0.458256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 739 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.458304 -s 0 -d 9 -p ack -e 40 -c 0 -i 742 -a 0 -x {10.0 9.0 366 ------- null} + -t 0.458304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {9.0 10.0 381 ------- null} - -t 0.458304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {9.0 10.0 381 ------- null} h -t 0.458304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.45848 -s 0 -d 9 -p ack -e 40 -c 0 -i 746 -a 0 -x {10.0 9.0 368 ------- null} - -t 0.45848 -s 0 -d 9 -p ack -e 40 -c 0 -i 746 -a 0 -x {10.0 9.0 368 ------- null} h -t 0.45848 -s 0 -d 9 -p ack -e 40 -c 0 -i 746 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.458672 -s 10 -d 7 -p ack -e 40 -c 0 -i 750 -a 0 -x {10.0 9.0 370 ------- null} + -t 0.458672 -s 7 -d 0 -p ack -e 40 -c 0 -i 750 -a 0 -x {10.0 9.0 370 ------- null} h -t 0.458672 -s 7 -d 8 -p ack -e 40 -c 0 -i 750 -a 0 -x {10.0 9.0 370 ------- null} r -t 0.45888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 735 -a 0 -x {9.0 10.0 372 ------- null} + -t 0.45888 -s 10 -d 7 -p ack -e 40 -c 0 -i 754 -a 0 -x {10.0 9.0 372 ------- null} - -t 0.45888 -s 10 -d 7 -p ack -e 40 -c 0 -i 754 -a 0 -x {10.0 9.0 372 ------- null} h -t 0.45888 -s 10 -d 7 -p ack -e 40 -c 0 -i 754 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.458976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {9.0 10.0 379 ------- null} + -t 0.458976 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {9.0 10.0 379 ------- null} h -t 0.458976 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {9.0 10.0 379 ------- null} r -t 0.459296 -s 0 -d 9 -p ack -e 40 -c 0 -i 744 -a 0 -x {10.0 9.0 367 ------- null} + -t 0.459296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {9.0 10.0 382 ------- null} - -t 0.459296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {9.0 10.0 382 ------- null} h -t 0.459296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.459344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 741 -a 0 -x {9.0 10.0 375 ------- null} - -t 0.459344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 741 -a 0 -x {9.0 10.0 375 ------- null} h -t 0.459344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 741 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.459424 -s 0 -d 9 -p ack -e 40 -c 0 -i 748 -a 0 -x {10.0 9.0 369 ------- null} - -t 0.459424 -s 0 -d 9 -p ack -e 40 -c 0 -i 748 -a 0 -x {10.0 9.0 369 ------- null} h -t 0.459424 -s 0 -d 9 -p ack -e 40 -c 0 -i 748 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.459824 -s 10 -d 7 -p ack -e 40 -c 0 -i 752 -a 0 -x {10.0 9.0 371 ------- null} + -t 0.459824 -s 7 -d 0 -p ack -e 40 -c 0 -i 752 -a 0 -x {10.0 9.0 371 ------- null} h -t 0.459824 -s 7 -d 8 -p ack -e 40 -c 0 -i 752 -a 0 -x {10.0 9.0 371 ------- null} r -t 0.459968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 737 -a 0 -x {9.0 10.0 373 ------- null} + -t 0.459968 -s 10 -d 7 -p ack -e 40 -c 0 -i 756 -a 0 -x {10.0 9.0 373 ------- null} - -t 0.459968 -s 10 -d 7 -p ack -e 40 -c 0 -i 756 -a 0 -x {10.0 9.0 373 ------- null} h -t 0.459968 -s 10 -d 7 -p ack -e 40 -c 0 -i 756 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.459968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {9.0 10.0 380 ------- null} + -t 0.459968 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {9.0 10.0 380 ------- null} h -t 0.459968 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {9.0 10.0 380 ------- null} + -t 0.460432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {9.0 10.0 376 ------- null} - -t 0.460432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {9.0 10.0 376 ------- null} h -t 0.460432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.460512 -s 0 -d 9 -p ack -e 40 -c 0 -i 746 -a 0 -x {10.0 9.0 368 ------- null} + -t 0.460512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {9.0 10.0 383 ------- null} - -t 0.460512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {9.0 10.0 383 ------- null} h -t 0.460512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.460704 -s 0 -d 9 -p ack -e 40 -c 0 -i 750 -a 0 -x {10.0 9.0 370 ------- null} - -t 0.460704 -s 0 -d 9 -p ack -e 40 -c 0 -i 750 -a 0 -x {10.0 9.0 370 ------- null} h -t 0.460704 -s 0 -d 9 -p ack -e 40 -c 0 -i 750 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.460912 -s 10 -d 7 -p ack -e 40 -c 0 -i 754 -a 0 -x {10.0 9.0 372 ------- null} + -t 0.460912 -s 7 -d 0 -p ack -e 40 -c 0 -i 754 -a 0 -x {10.0 9.0 372 ------- null} h -t 0.460912 -s 7 -d 8 -p ack -e 40 -c 0 -i 754 -a 0 -x {10.0 9.0 372 ------- null} r -t 0.461056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 739 -a 0 -x {9.0 10.0 374 ------- null} + -t 0.461056 -s 10 -d 7 -p ack -e 40 -c 0 -i 758 -a 0 -x {10.0 9.0 374 ------- null} - -t 0.461056 -s 10 -d 7 -p ack -e 40 -c 0 -i 758 -a 0 -x {10.0 9.0 374 ------- null} h -t 0.461056 -s 10 -d 7 -p ack -e 40 -c 0 -i 758 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.461104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {9.0 10.0 381 ------- null} + -t 0.461104 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {9.0 10.0 381 ------- null} h -t 0.461104 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {9.0 10.0 381 ------- null} r -t 0.461456 -s 0 -d 9 -p ack -e 40 -c 0 -i 748 -a 0 -x {10.0 9.0 369 ------- null} + -t 0.461456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {9.0 10.0 384 ------- null} - -t 0.461456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {9.0 10.0 384 ------- null} h -t 0.461456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.461664 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {9.0 10.0 377 ------- null} - -t 0.461664 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {9.0 10.0 377 ------- null} h -t 0.461664 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.461744 -s 0 -d 9 -p ack -e 40 -c 0 -i 752 -a 0 -x {10.0 9.0 371 ------- null} - -t 0.461744 -s 0 -d 9 -p ack -e 40 -c 0 -i 752 -a 0 -x {10.0 9.0 371 ------- null} h -t 0.461744 -s 0 -d 9 -p ack -e 40 -c 0 -i 752 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.462 -s 10 -d 7 -p ack -e 40 -c 0 -i 756 -a 0 -x {10.0 9.0 373 ------- null} + -t 0.462 -s 7 -d 0 -p ack -e 40 -c 0 -i 756 -a 0 -x {10.0 9.0 373 ------- null} h -t 0.462 -s 7 -d 8 -p ack -e 40 -c 0 -i 756 -a 0 -x {10.0 9.0 373 ------- null} r -t 0.462096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {9.0 10.0 382 ------- null} + -t 0.462096 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {9.0 10.0 382 ------- null} h -t 0.462096 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {9.0 10.0 382 ------- null} r -t 0.462144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 741 -a 0 -x {9.0 10.0 375 ------- null} + -t 0.462144 -s 10 -d 7 -p ack -e 40 -c 0 -i 760 -a 0 -x {10.0 9.0 375 ------- null} - -t 0.462144 -s 10 -d 7 -p ack -e 40 -c 0 -i 760 -a 0 -x {10.0 9.0 375 ------- null} h -t 0.462144 -s 10 -d 7 -p ack -e 40 -c 0 -i 760 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.462736 -s 0 -d 9 -p ack -e 40 -c 0 -i 750 -a 0 -x {10.0 9.0 370 ------- null} + -t 0.462736 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {9.0 10.0 385 ------- null} - -t 0.462736 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {9.0 10.0 385 ------- null} h -t 0.462736 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.462752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {9.0 10.0 378 ------- null} - -t 0.462752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {9.0 10.0 378 ------- null} h -t 0.462752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.463008 -s 0 -d 9 -p ack -e 40 -c 0 -i 754 -a 0 -x {10.0 9.0 372 ------- null} - -t 0.463008 -s 0 -d 9 -p ack -e 40 -c 0 -i 754 -a 0 -x {10.0 9.0 372 ------- null} h -t 0.463008 -s 0 -d 9 -p ack -e 40 -c 0 -i 754 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.463088 -s 10 -d 7 -p ack -e 40 -c 0 -i 758 -a 0 -x {10.0 9.0 374 ------- null} + -t 0.463088 -s 7 -d 0 -p ack -e 40 -c 0 -i 758 -a 0 -x {10.0 9.0 374 ------- null} h -t 0.463088 -s 7 -d 8 -p ack -e 40 -c 0 -i 758 -a 0 -x {10.0 9.0 374 ------- null} r -t 0.463232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 743 -a 0 -x {9.0 10.0 376 ------- null} + -t 0.463232 -s 10 -d 7 -p ack -e 40 -c 0 -i 762 -a 0 -x {10.0 9.0 376 ------- null} - -t 0.463232 -s 10 -d 7 -p ack -e 40 -c 0 -i 762 -a 0 -x {10.0 9.0 376 ------- null} h -t 0.463232 -s 10 -d 7 -p ack -e 40 -c 0 -i 762 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.463312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {9.0 10.0 383 ------- null} + -t 0.463312 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {9.0 10.0 383 ------- null} h -t 0.463312 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {9.0 10.0 383 ------- null} r -t 0.463776 -s 0 -d 9 -p ack -e 40 -c 0 -i 752 -a 0 -x {10.0 9.0 371 ------- null} + -t 0.463776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 763 -a 0 -x {9.0 10.0 386 ------- null} - -t 0.463776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 763 -a 0 -x {9.0 10.0 386 ------- null} h -t 0.463776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 763 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.463952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {9.0 10.0 379 ------- null} - -t 0.463952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {9.0 10.0 379 ------- null} h -t 0.463952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.46408 -s 0 -d 9 -p ack -e 40 -c 0 -i 756 -a 0 -x {10.0 9.0 373 ------- null} - -t 0.46408 -s 0 -d 9 -p ack -e 40 -c 0 -i 756 -a 0 -x {10.0 9.0 373 ------- null} h -t 0.46408 -s 0 -d 9 -p ack -e 40 -c 0 -i 756 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.464176 -s 10 -d 7 -p ack -e 40 -c 0 -i 760 -a 0 -x {10.0 9.0 375 ------- null} + -t 0.464176 -s 7 -d 0 -p ack -e 40 -c 0 -i 760 -a 0 -x {10.0 9.0 375 ------- null} h -t 0.464176 -s 7 -d 8 -p ack -e 40 -c 0 -i 760 -a 0 -x {10.0 9.0 375 ------- null} r -t 0.464256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {9.0 10.0 384 ------- null} + -t 0.464256 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {9.0 10.0 384 ------- null} h -t 0.464256 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {9.0 10.0 384 ------- null} r -t 0.464464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 745 -a 0 -x {9.0 10.0 377 ------- null} + -t 0.464464 -s 10 -d 7 -p ack -e 40 -c 0 -i 764 -a 0 -x {10.0 9.0 377 ------- null} - -t 0.464464 -s 10 -d 7 -p ack -e 40 -c 0 -i 764 -a 0 -x {10.0 9.0 377 ------- null} h -t 0.464464 -s 10 -d 7 -p ack -e 40 -c 0 -i 764 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.46504 -s 0 -d 9 -p ack -e 40 -c 0 -i 754 -a 0 -x {10.0 9.0 372 ------- null} + -t 0.46504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 765 -a 0 -x {9.0 10.0 387 ------- null} - -t 0.46504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 765 -a 0 -x {9.0 10.0 387 ------- null} h -t 0.46504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 765 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.46504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {9.0 10.0 380 ------- null} - -t 0.46504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {9.0 10.0 380 ------- null} h -t 0.46504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.465184 -s 0 -d 9 -p ack -e 40 -c 0 -i 758 -a 0 -x {10.0 9.0 374 ------- null} - -t 0.465184 -s 0 -d 9 -p ack -e 40 -c 0 -i 758 -a 0 -x {10.0 9.0 374 ------- null} h -t 0.465184 -s 0 -d 9 -p ack -e 40 -c 0 -i 758 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.465264 -s 10 -d 7 -p ack -e 40 -c 0 -i 762 -a 0 -x {10.0 9.0 376 ------- null} + -t 0.465264 -s 7 -d 0 -p ack -e 40 -c 0 -i 762 -a 0 -x {10.0 9.0 376 ------- null} h -t 0.465264 -s 7 -d 8 -p ack -e 40 -c 0 -i 762 -a 0 -x {10.0 9.0 376 ------- null} r -t 0.465536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {9.0 10.0 385 ------- null} + -t 0.465536 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {9.0 10.0 385 ------- null} h -t 0.465536 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {9.0 10.0 385 ------- null} r -t 0.465552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 747 -a 0 -x {9.0 10.0 378 ------- null} + -t 0.465552 -s 10 -d 7 -p ack -e 40 -c 0 -i 766 -a 0 -x {10.0 9.0 378 ------- null} - -t 0.465552 -s 10 -d 7 -p ack -e 40 -c 0 -i 766 -a 0 -x {10.0 9.0 378 ------- null} h -t 0.465552 -s 10 -d 7 -p ack -e 40 -c 0 -i 766 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.466112 -s 0 -d 9 -p ack -e 40 -c 0 -i 756 -a 0 -x {10.0 9.0 373 ------- null} + -t 0.466112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 767 -a 0 -x {9.0 10.0 388 ------- null} - -t 0.466112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 767 -a 0 -x {9.0 10.0 388 ------- null} h -t 0.466112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 767 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.466128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {9.0 10.0 381 ------- null} - -t 0.466128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {9.0 10.0 381 ------- null} h -t 0.466128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.46632 -s 0 -d 9 -p ack -e 40 -c 0 -i 760 -a 0 -x {10.0 9.0 375 ------- null} - -t 0.46632 -s 0 -d 9 -p ack -e 40 -c 0 -i 760 -a 0 -x {10.0 9.0 375 ------- null} h -t 0.46632 -s 0 -d 9 -p ack -e 40 -c 0 -i 760 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.466496 -s 10 -d 7 -p ack -e 40 -c 0 -i 764 -a 0 -x {10.0 9.0 377 ------- null} + -t 0.466496 -s 7 -d 0 -p ack -e 40 -c 0 -i 764 -a 0 -x {10.0 9.0 377 ------- null} h -t 0.466496 -s 7 -d 8 -p ack -e 40 -c 0 -i 764 -a 0 -x {10.0 9.0 377 ------- null} r -t 0.466576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 763 -a 0 -x {9.0 10.0 386 ------- null} + -t 0.466576 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 763 -a 0 -x {9.0 10.0 386 ------- null} h -t 0.466576 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 763 -a 0 -x {9.0 10.0 386 ------- null} r -t 0.466752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 749 -a 0 -x {9.0 10.0 379 ------- null} + -t 0.466752 -s 10 -d 7 -p ack -e 40 -c 0 -i 768 -a 0 -x {10.0 9.0 379 ------- null} - -t 0.466752 -s 10 -d 7 -p ack -e 40 -c 0 -i 768 -a 0 -x {10.0 9.0 379 ------- null} h -t 0.466752 -s 10 -d 7 -p ack -e 40 -c 0 -i 768 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.467216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {9.0 10.0 382 ------- null} - -t 0.467216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {9.0 10.0 382 ------- null} h -t 0.467216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.467216 -s 0 -d 9 -p ack -e 40 -c 0 -i 758 -a 0 -x {10.0 9.0 374 ------- null} + -t 0.467216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 769 -a 0 -x {9.0 10.0 389 ------- null} - -t 0.467216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 769 -a 0 -x {9.0 10.0 389 ------- null} h -t 0.467216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 769 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.467504 -s 0 -d 9 -p ack -e 40 -c 0 -i 762 -a 0 -x {10.0 9.0 376 ------- null} - -t 0.467504 -s 0 -d 9 -p ack -e 40 -c 0 -i 762 -a 0 -x {10.0 9.0 376 ------- null} h -t 0.467504 -s 0 -d 9 -p ack -e 40 -c 0 -i 762 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.467584 -s 10 -d 7 -p ack -e 40 -c 0 -i 766 -a 0 -x {10.0 9.0 378 ------- null} + -t 0.467584 -s 7 -d 0 -p ack -e 40 -c 0 -i 766 -a 0 -x {10.0 9.0 378 ------- null} h -t 0.467584 -s 7 -d 8 -p ack -e 40 -c 0 -i 766 -a 0 -x {10.0 9.0 378 ------- null} r -t 0.46784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 765 -a 0 -x {9.0 10.0 387 ------- null} + -t 0.46784 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 765 -a 0 -x {9.0 10.0 387 ------- null} h -t 0.46784 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 765 -a 0 -x {9.0 10.0 387 ------- null} r -t 0.46784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 751 -a 0 -x {9.0 10.0 380 ------- null} + -t 0.46784 -s 10 -d 7 -p ack -e 40 -c 0 -i 770 -a 0 -x {10.0 9.0 380 ------- null} - -t 0.46784 -s 10 -d 7 -p ack -e 40 -c 0 -i 770 -a 0 -x {10.0 9.0 380 ------- null} h -t 0.46784 -s 10 -d 7 -p ack -e 40 -c 0 -i 770 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.468352 -s 0 -d 9 -p ack -e 40 -c 0 -i 760 -a 0 -x {10.0 9.0 375 ------- null} + -t 0.468352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 771 -a 0 -x {9.0 10.0 390 ------- null} - -t 0.468352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 771 -a 0 -x {9.0 10.0 390 ------- null} h -t 0.468352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 771 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.468528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {9.0 10.0 383 ------- null} - -t 0.468528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {9.0 10.0 383 ------- null} h -t 0.468528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.468768 -s 0 -d 9 -p ack -e 40 -c 0 -i 764 -a 0 -x {10.0 9.0 377 ------- null} - -t 0.468768 -s 0 -d 9 -p ack -e 40 -c 0 -i 764 -a 0 -x {10.0 9.0 377 ------- null} h -t 0.468768 -s 0 -d 9 -p ack -e 40 -c 0 -i 764 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.468784 -s 10 -d 7 -p ack -e 40 -c 0 -i 768 -a 0 -x {10.0 9.0 379 ------- null} + -t 0.468784 -s 7 -d 0 -p ack -e 40 -c 0 -i 768 -a 0 -x {10.0 9.0 379 ------- null} h -t 0.468784 -s 7 -d 8 -p ack -e 40 -c 0 -i 768 -a 0 -x {10.0 9.0 379 ------- null} r -t 0.468912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 767 -a 0 -x {9.0 10.0 388 ------- null} + -t 0.468912 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 767 -a 0 -x {9.0 10.0 388 ------- null} h -t 0.468912 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 767 -a 0 -x {9.0 10.0 388 ------- null} r -t 0.468928 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 753 -a 0 -x {9.0 10.0 381 ------- null} + -t 0.468928 -s 10 -d 7 -p ack -e 40 -c 0 -i 772 -a 0 -x {10.0 9.0 381 ------- null} - -t 0.468928 -s 10 -d 7 -p ack -e 40 -c 0 -i 772 -a 0 -x {10.0 9.0 381 ------- null} h -t 0.468928 -s 10 -d 7 -p ack -e 40 -c 0 -i 772 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.469536 -s 0 -d 9 -p ack -e 40 -c 0 -i 762 -a 0 -x {10.0 9.0 376 ------- null} + -t 0.469536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 773 -a 0 -x {9.0 10.0 391 ------- null} - -t 0.469536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 773 -a 0 -x {9.0 10.0 391 ------- null} h -t 0.469536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 773 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.469616 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {9.0 10.0 384 ------- null} - -t 0.469616 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {9.0 10.0 384 ------- null} h -t 0.469616 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.469824 -s 0 -d 9 -p ack -e 40 -c 0 -i 766 -a 0 -x {10.0 9.0 378 ------- null} - -t 0.469824 -s 0 -d 9 -p ack -e 40 -c 0 -i 766 -a 0 -x {10.0 9.0 378 ------- null} h -t 0.469824 -s 0 -d 9 -p ack -e 40 -c 0 -i 766 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.469872 -s 10 -d 7 -p ack -e 40 -c 0 -i 770 -a 0 -x {10.0 9.0 380 ------- null} + -t 0.469872 -s 7 -d 0 -p ack -e 40 -c 0 -i 770 -a 0 -x {10.0 9.0 380 ------- null} h -t 0.469872 -s 7 -d 8 -p ack -e 40 -c 0 -i 770 -a 0 -x {10.0 9.0 380 ------- null} r -t 0.470016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 755 -a 0 -x {9.0 10.0 382 ------- null} + -t 0.470016 -s 10 -d 7 -p ack -e 40 -c 0 -i 774 -a 0 -x {10.0 9.0 382 ------- null} - -t 0.470016 -s 10 -d 7 -p ack -e 40 -c 0 -i 774 -a 0 -x {10.0 9.0 382 ------- null} h -t 0.470016 -s 10 -d 7 -p ack -e 40 -c 0 -i 774 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.470016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 769 -a 0 -x {9.0 10.0 389 ------- null} + -t 0.470016 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 769 -a 0 -x {9.0 10.0 389 ------- null} h -t 0.470016 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 769 -a 0 -x {9.0 10.0 389 ------- null} + -t 0.470704 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {9.0 10.0 385 ------- null} - -t 0.470704 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {9.0 10.0 385 ------- null} h -t 0.470704 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.4708 -s 0 -d 9 -p ack -e 40 -c 0 -i 764 -a 0 -x {10.0 9.0 377 ------- null} + -t 0.4708 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 775 -a 0 -x {9.0 10.0 392 ------- null} - -t 0.4708 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 775 -a 0 -x {9.0 10.0 392 ------- null} h -t 0.4708 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 775 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.47096 -s 10 -d 7 -p ack -e 40 -c 0 -i 772 -a 0 -x {10.0 9.0 381 ------- null} + -t 0.47096 -s 7 -d 0 -p ack -e 40 -c 0 -i 772 -a 0 -x {10.0 9.0 381 ------- null} h -t 0.47096 -s 7 -d 8 -p ack -e 40 -c 0 -i 772 -a 0 -x {10.0 9.0 381 ------- null} + -t 0.471008 -s 0 -d 9 -p ack -e 40 -c 0 -i 768 -a 0 -x {10.0 9.0 379 ------- null} - -t 0.471008 -s 0 -d 9 -p ack -e 40 -c 0 -i 768 -a 0 -x {10.0 9.0 379 ------- null} h -t 0.471008 -s 0 -d 9 -p ack -e 40 -c 0 -i 768 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.471152 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 771 -a 0 -x {9.0 10.0 390 ------- null} + -t 0.471152 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 771 -a 0 -x {9.0 10.0 390 ------- null} h -t 0.471152 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 771 -a 0 -x {9.0 10.0 390 ------- null} r -t 0.471328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 757 -a 0 -x {9.0 10.0 383 ------- null} + -t 0.471328 -s 10 -d 7 -p ack -e 40 -c 0 -i 776 -a 0 -x {10.0 9.0 383 ------- null} - -t 0.471328 -s 10 -d 7 -p ack -e 40 -c 0 -i 776 -a 0 -x {10.0 9.0 383 ------- null} h -t 0.471328 -s 10 -d 7 -p ack -e 40 -c 0 -i 776 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.471856 -s 0 -d 9 -p ack -e 40 -c 0 -i 766 -a 0 -x {10.0 9.0 378 ------- null} + -t 0.471856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 777 -a 0 -x {9.0 10.0 393 ------- null} - -t 0.471856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 777 -a 0 -x {9.0 10.0 393 ------- null} h -t 0.471856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 777 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 763 -a 0 -x {9.0 10.0 386 ------- null} - -t 0.472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 763 -a 0 -x {9.0 10.0 386 ------- null} h -t 0.472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 763 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.472048 -s 10 -d 7 -p ack -e 40 -c 0 -i 774 -a 0 -x {10.0 9.0 382 ------- null} + -t 0.472048 -s 7 -d 0 -p ack -e 40 -c 0 -i 774 -a 0 -x {10.0 9.0 382 ------- null} h -t 0.472048 -s 7 -d 8 -p ack -e 40 -c 0 -i 774 -a 0 -x {10.0 9.0 382 ------- null} + -t 0.472224 -s 0 -d 9 -p ack -e 40 -c 0 -i 770 -a 0 -x {10.0 9.0 380 ------- null} - -t 0.472224 -s 0 -d 9 -p ack -e 40 -c 0 -i 770 -a 0 -x {10.0 9.0 380 ------- null} h -t 0.472224 -s 0 -d 9 -p ack -e 40 -c 0 -i 770 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.472336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 773 -a 0 -x {9.0 10.0 391 ------- null} + -t 0.472336 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 773 -a 0 -x {9.0 10.0 391 ------- null} h -t 0.472336 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 773 -a 0 -x {9.0 10.0 391 ------- null} r -t 0.472416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 759 -a 0 -x {9.0 10.0 384 ------- null} + -t 0.472416 -s 10 -d 7 -p ack -e 40 -c 0 -i 778 -a 0 -x {10.0 9.0 384 ------- null} - -t 0.472416 -s 10 -d 7 -p ack -e 40 -c 0 -i 778 -a 0 -x {10.0 9.0 384 ------- null} h -t 0.472416 -s 10 -d 7 -p ack -e 40 -c 0 -i 778 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.47304 -s 0 -d 9 -p ack -e 40 -c 0 -i 768 -a 0 -x {10.0 9.0 379 ------- null} + -t 0.47304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 779 -a 0 -x {9.0 10.0 394 ------- null} - -t 0.47304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 779 -a 0 -x {9.0 10.0 394 ------- null} h -t 0.47304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 779 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.473088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 765 -a 0 -x {9.0 10.0 387 ------- null} - -t 0.473088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 765 -a 0 -x {9.0 10.0 387 ------- null} h -t 0.473088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 765 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.473312 -s 0 -d 9 -p ack -e 40 -c 0 -i 772 -a 0 -x {10.0 9.0 381 ------- null} - -t 0.473312 -s 0 -d 9 -p ack -e 40 -c 0 -i 772 -a 0 -x {10.0 9.0 381 ------- null} h -t 0.473312 -s 0 -d 9 -p ack -e 40 -c 0 -i 772 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.47336 -s 10 -d 7 -p ack -e 40 -c 0 -i 776 -a 0 -x {10.0 9.0 383 ------- null} + -t 0.47336 -s 7 -d 0 -p ack -e 40 -c 0 -i 776 -a 0 -x {10.0 9.0 383 ------- null} h -t 0.47336 -s 7 -d 8 -p ack -e 40 -c 0 -i 776 -a 0 -x {10.0 9.0 383 ------- null} r -t 0.473504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 761 -a 0 -x {9.0 10.0 385 ------- null} + -t 0.473504 -s 10 -d 7 -p ack -e 40 -c 0 -i 780 -a 0 -x {10.0 9.0 385 ------- null} - -t 0.473504 -s 10 -d 7 -p ack -e 40 -c 0 -i 780 -a 0 -x {10.0 9.0 385 ------- null} h -t 0.473504 -s 10 -d 7 -p ack -e 40 -c 0 -i 780 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.4736 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 775 -a 0 -x {9.0 10.0 392 ------- null} + -t 0.4736 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 775 -a 0 -x {9.0 10.0 392 ------- null} h -t 0.4736 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 775 -a 0 -x {9.0 10.0 392 ------- null} + -t 0.474176 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 767 -a 0 -x {9.0 10.0 388 ------- null} - -t 0.474176 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 767 -a 0 -x {9.0 10.0 388 ------- null} h -t 0.474176 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 767 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.474256 -s 0 -d 9 -p ack -e 40 -c 0 -i 770 -a 0 -x {10.0 9.0 380 ------- null} + -t 0.474256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 781 -a 0 -x {9.0 10.0 395 ------- null} - -t 0.474256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 781 -a 0 -x {9.0 10.0 395 ------- null} h -t 0.474256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 781 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.474256 -s 0 -d 9 -p ack -e 40 -c 0 -i 774 -a 0 -x {10.0 9.0 382 ------- null} - -t 0.474256 -s 0 -d 9 -p ack -e 40 -c 0 -i 774 -a 0 -x {10.0 9.0 382 ------- null} h -t 0.474256 -s 0 -d 9 -p ack -e 40 -c 0 -i 774 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.474448 -s 10 -d 7 -p ack -e 40 -c 0 -i 778 -a 0 -x {10.0 9.0 384 ------- null} + -t 0.474448 -s 7 -d 0 -p ack -e 40 -c 0 -i 778 -a 0 -x {10.0 9.0 384 ------- null} h -t 0.474448 -s 7 -d 8 -p ack -e 40 -c 0 -i 778 -a 0 -x {10.0 9.0 384 ------- null} r -t 0.474656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 777 -a 0 -x {9.0 10.0 393 ------- null} + -t 0.474656 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 777 -a 0 -x {9.0 10.0 393 ------- null} h -t 0.474656 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 777 -a 0 -x {9.0 10.0 393 ------- null} r -t 0.4748 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 763 -a 0 -x {9.0 10.0 386 ------- null} + -t 0.4748 -s 10 -d 7 -p ack -e 40 -c 0 -i 782 -a 0 -x {10.0 9.0 386 ------- null} - -t 0.4748 -s 10 -d 7 -p ack -e 40 -c 0 -i 782 -a 0 -x {10.0 9.0 386 ------- null} h -t 0.4748 -s 10 -d 7 -p ack -e 40 -c 0 -i 782 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.475264 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 769 -a 0 -x {9.0 10.0 389 ------- null} - -t 0.475264 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 769 -a 0 -x {9.0 10.0 389 ------- null} h -t 0.475264 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 769 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.475344 -s 0 -d 9 -p ack -e 40 -c 0 -i 772 -a 0 -x {10.0 9.0 381 ------- null} + -t 0.475344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {9.0 10.0 396 ------- null} - -t 0.475344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {9.0 10.0 396 ------- null} h -t 0.475344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.475472 -s 0 -d 9 -p ack -e 40 -c 0 -i 776 -a 0 -x {10.0 9.0 383 ------- null} - -t 0.475472 -s 0 -d 9 -p ack -e 40 -c 0 -i 776 -a 0 -x {10.0 9.0 383 ------- null} h -t 0.475472 -s 0 -d 9 -p ack -e 40 -c 0 -i 776 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.475536 -s 10 -d 7 -p ack -e 40 -c 0 -i 780 -a 0 -x {10.0 9.0 385 ------- null} + -t 0.475536 -s 7 -d 0 -p ack -e 40 -c 0 -i 780 -a 0 -x {10.0 9.0 385 ------- null} h -t 0.475536 -s 7 -d 8 -p ack -e 40 -c 0 -i 780 -a 0 -x {10.0 9.0 385 ------- null} r -t 0.47584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 779 -a 0 -x {9.0 10.0 394 ------- null} + -t 0.47584 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 779 -a 0 -x {9.0 10.0 394 ------- null} h -t 0.47584 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 779 -a 0 -x {9.0 10.0 394 ------- null} r -t 0.475888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 765 -a 0 -x {9.0 10.0 387 ------- null} + -t 0.475888 -s 10 -d 7 -p ack -e 40 -c 0 -i 784 -a 0 -x {10.0 9.0 387 ------- null} - -t 0.475888 -s 10 -d 7 -p ack -e 40 -c 0 -i 784 -a 0 -x {10.0 9.0 387 ------- null} h -t 0.475888 -s 10 -d 7 -p ack -e 40 -c 0 -i 784 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.476288 -s 0 -d 9 -p ack -e 40 -c 0 -i 774 -a 0 -x {10.0 9.0 382 ------- null} + -t 0.476288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {9.0 10.0 397 ------- null} - -t 0.476288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {9.0 10.0 397 ------- null} h -t 0.476288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.476352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 771 -a 0 -x {9.0 10.0 390 ------- null} - -t 0.476352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 771 -a 0 -x {9.0 10.0 390 ------- null} h -t 0.476352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 771 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.476624 -s 0 -d 9 -p ack -e 40 -c 0 -i 778 -a 0 -x {10.0 9.0 384 ------- null} - -t 0.476624 -s 0 -d 9 -p ack -e 40 -c 0 -i 778 -a 0 -x {10.0 9.0 384 ------- null} h -t 0.476624 -s 0 -d 9 -p ack -e 40 -c 0 -i 778 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.476832 -s 10 -d 7 -p ack -e 40 -c 0 -i 782 -a 0 -x {10.0 9.0 386 ------- null} + -t 0.476832 -s 7 -d 0 -p ack -e 40 -c 0 -i 782 -a 0 -x {10.0 9.0 386 ------- null} h -t 0.476832 -s 7 -d 8 -p ack -e 40 -c 0 -i 782 -a 0 -x {10.0 9.0 386 ------- null} r -t 0.476976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 767 -a 0 -x {9.0 10.0 388 ------- null} + -t 0.476976 -s 10 -d 7 -p ack -e 40 -c 0 -i 786 -a 0 -x {10.0 9.0 388 ------- null} - -t 0.476976 -s 10 -d 7 -p ack -e 40 -c 0 -i 786 -a 0 -x {10.0 9.0 388 ------- null} h -t 0.476976 -s 10 -d 7 -p ack -e 40 -c 0 -i 786 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.477056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 781 -a 0 -x {9.0 10.0 395 ------- null} + -t 0.477056 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 781 -a 0 -x {9.0 10.0 395 ------- null} h -t 0.477056 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 781 -a 0 -x {9.0 10.0 395 ------- null} + -t 0.477456 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 773 -a 0 -x {9.0 10.0 391 ------- null} - -t 0.477456 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 773 -a 0 -x {9.0 10.0 391 ------- null} h -t 0.477456 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 773 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.477504 -s 0 -d 9 -p ack -e 40 -c 0 -i 776 -a 0 -x {10.0 9.0 383 ------- null} + -t 0.477504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {9.0 10.0 398 ------- null} - -t 0.477504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {9.0 10.0 398 ------- null} h -t 0.477504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.477616 -s 0 -d 9 -p ack -e 40 -c 0 -i 780 -a 0 -x {10.0 9.0 385 ------- null} - -t 0.477616 -s 0 -d 9 -p ack -e 40 -c 0 -i 780 -a 0 -x {10.0 9.0 385 ------- null} h -t 0.477616 -s 0 -d 9 -p ack -e 40 -c 0 -i 780 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.47792 -s 10 -d 7 -p ack -e 40 -c 0 -i 784 -a 0 -x {10.0 9.0 387 ------- null} + -t 0.47792 -s 7 -d 0 -p ack -e 40 -c 0 -i 784 -a 0 -x {10.0 9.0 387 ------- null} h -t 0.47792 -s 7 -d 8 -p ack -e 40 -c 0 -i 784 -a 0 -x {10.0 9.0 387 ------- null} r -t 0.478064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 769 -a 0 -x {9.0 10.0 389 ------- null} + -t 0.478064 -s 10 -d 7 -p ack -e 40 -c 0 -i 788 -a 0 -x {10.0 9.0 389 ------- null} - -t 0.478064 -s 10 -d 7 -p ack -e 40 -c 0 -i 788 -a 0 -x {10.0 9.0 389 ------- null} h -t 0.478064 -s 10 -d 7 -p ack -e 40 -c 0 -i 788 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.478144 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {9.0 10.0 396 ------- null} + -t 0.478144 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {9.0 10.0 396 ------- null} h -t 0.478144 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {9.0 10.0 396 ------- null} + -t 0.478544 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 775 -a 0 -x {9.0 10.0 392 ------- null} - -t 0.478544 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 775 -a 0 -x {9.0 10.0 392 ------- null} h -t 0.478544 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 775 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.478656 -s 0 -d 9 -p ack -e 40 -c 0 -i 778 -a 0 -x {10.0 9.0 384 ------- null} + -t 0.478656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {9.0 10.0 399 ------- null} - -t 0.478656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {9.0 10.0 399 ------- null} h -t 0.478656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.478784 -s 0 -d 9 -p ack -e 40 -c 0 -i 782 -a 0 -x {10.0 9.0 386 ------- null} - -t 0.478784 -s 0 -d 9 -p ack -e 40 -c 0 -i 782 -a 0 -x {10.0 9.0 386 ------- null} h -t 0.478784 -s 0 -d 9 -p ack -e 40 -c 0 -i 782 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.479008 -s 10 -d 7 -p ack -e 40 -c 0 -i 786 -a 0 -x {10.0 9.0 388 ------- null} + -t 0.479008 -s 7 -d 0 -p ack -e 40 -c 0 -i 786 -a 0 -x {10.0 9.0 388 ------- null} h -t 0.479008 -s 7 -d 8 -p ack -e 40 -c 0 -i 786 -a 0 -x {10.0 9.0 388 ------- null} r -t 0.479088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {9.0 10.0 397 ------- null} + -t 0.479088 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {9.0 10.0 397 ------- null} h -t 0.479088 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {9.0 10.0 397 ------- null} r -t 0.479152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 771 -a 0 -x {9.0 10.0 390 ------- null} + -t 0.479152 -s 10 -d 7 -p ack -e 40 -c 0 -i 790 -a 0 -x {10.0 9.0 390 ------- null} - -t 0.479152 -s 10 -d 7 -p ack -e 40 -c 0 -i 790 -a 0 -x {10.0 9.0 390 ------- null} h -t 0.479152 -s 10 -d 7 -p ack -e 40 -c 0 -i 790 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.479632 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 777 -a 0 -x {9.0 10.0 393 ------- null} - -t 0.479632 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 777 -a 0 -x {9.0 10.0 393 ------- null} h -t 0.479632 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 777 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.479648 -s 0 -d 9 -p ack -e 40 -c 0 -i 780 -a 0 -x {10.0 9.0 385 ------- null} + -t 0.479648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {9.0 10.0 400 ------- null} - -t 0.479648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {9.0 10.0 400 ------- null} h -t 0.479648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.479696 -s 0 -d 9 -p ack -e 40 -c 0 -i 784 -a 0 -x {10.0 9.0 387 ------- null} - -t 0.479696 -s 0 -d 9 -p ack -e 40 -c 0 -i 784 -a 0 -x {10.0 9.0 387 ------- null} h -t 0.479696 -s 0 -d 9 -p ack -e 40 -c 0 -i 784 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.480096 -s 10 -d 7 -p ack -e 40 -c 0 -i 788 -a 0 -x {10.0 9.0 389 ------- null} + -t 0.480096 -s 7 -d 0 -p ack -e 40 -c 0 -i 788 -a 0 -x {10.0 9.0 389 ------- null} h -t 0.480096 -s 7 -d 8 -p ack -e 40 -c 0 -i 788 -a 0 -x {10.0 9.0 389 ------- null} r -t 0.480256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 773 -a 0 -x {9.0 10.0 391 ------- null} + -t 0.480256 -s 10 -d 7 -p ack -e 40 -c 0 -i 792 -a 0 -x {10.0 9.0 391 ------- null} - -t 0.480256 -s 10 -d 7 -p ack -e 40 -c 0 -i 792 -a 0 -x {10.0 9.0 391 ------- null} h -t 0.480256 -s 10 -d 7 -p ack -e 40 -c 0 -i 792 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.480304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {9.0 10.0 398 ------- null} + -t 0.480304 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {9.0 10.0 398 ------- null} h -t 0.480304 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {9.0 10.0 398 ------- null} + -t 0.48072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 779 -a 0 -x {9.0 10.0 394 ------- null} - -t 0.48072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 779 -a 0 -x {9.0 10.0 394 ------- null} h -t 0.48072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 779 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.480816 -s 0 -d 9 -p ack -e 40 -c 0 -i 782 -a 0 -x {10.0 9.0 386 ------- null} + -t 0.480816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {9.0 10.0 401 ------- null} - -t 0.480816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {9.0 10.0 401 ------- null} h -t 0.480816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.48096 -s 0 -d 9 -p ack -e 40 -c 0 -i 786 -a 0 -x {10.0 9.0 388 ------- null} - -t 0.48096 -s 0 -d 9 -p ack -e 40 -c 0 -i 786 -a 0 -x {10.0 9.0 388 ------- null} h -t 0.48096 -s 0 -d 9 -p ack -e 40 -c 0 -i 786 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.481184 -s 10 -d 7 -p ack -e 40 -c 0 -i 790 -a 0 -x {10.0 9.0 390 ------- null} + -t 0.481184 -s 7 -d 0 -p ack -e 40 -c 0 -i 790 -a 0 -x {10.0 9.0 390 ------- null} h -t 0.481184 -s 7 -d 8 -p ack -e 40 -c 0 -i 790 -a 0 -x {10.0 9.0 390 ------- null} r -t 0.481344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 775 -a 0 -x {9.0 10.0 392 ------- null} + -t 0.481344 -s 10 -d 7 -p ack -e 40 -c 0 -i 794 -a 0 -x {10.0 9.0 392 ------- null} - -t 0.481344 -s 10 -d 7 -p ack -e 40 -c 0 -i 794 -a 0 -x {10.0 9.0 392 ------- null} h -t 0.481344 -s 10 -d 7 -p ack -e 40 -c 0 -i 794 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.481456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {9.0 10.0 399 ------- null} + -t 0.481456 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {9.0 10.0 399 ------- null} h -t 0.481456 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {9.0 10.0 399 ------- null} r -t 0.481728 -s 0 -d 9 -p ack -e 40 -c 0 -i 784 -a 0 -x {10.0 9.0 387 ------- null} + -t 0.481728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {9.0 10.0 402 ------- null} - -t 0.481728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {9.0 10.0 402 ------- null} h -t 0.481728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.481808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 781 -a 0 -x {9.0 10.0 395 ------- null} - -t 0.481808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 781 -a 0 -x {9.0 10.0 395 ------- null} h -t 0.481808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 781 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.48208 -s 0 -d 9 -p ack -e 40 -c 0 -i 788 -a 0 -x {10.0 9.0 389 ------- null} - -t 0.48208 -s 0 -d 9 -p ack -e 40 -c 0 -i 788 -a 0 -x {10.0 9.0 389 ------- null} h -t 0.48208 -s 0 -d 9 -p ack -e 40 -c 0 -i 788 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.482288 -s 10 -d 7 -p ack -e 40 -c 0 -i 792 -a 0 -x {10.0 9.0 391 ------- null} + -t 0.482288 -s 7 -d 0 -p ack -e 40 -c 0 -i 792 -a 0 -x {10.0 9.0 391 ------- null} h -t 0.482288 -s 7 -d 8 -p ack -e 40 -c 0 -i 792 -a 0 -x {10.0 9.0 391 ------- null} r -t 0.482432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 777 -a 0 -x {9.0 10.0 393 ------- null} + -t 0.482432 -s 10 -d 7 -p ack -e 40 -c 0 -i 796 -a 0 -x {10.0 9.0 393 ------- null} - -t 0.482432 -s 10 -d 7 -p ack -e 40 -c 0 -i 796 -a 0 -x {10.0 9.0 393 ------- null} h -t 0.482432 -s 10 -d 7 -p ack -e 40 -c 0 -i 796 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.482448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {9.0 10.0 400 ------- null} + -t 0.482448 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {9.0 10.0 400 ------- null} h -t 0.482448 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {9.0 10.0 400 ------- null} r -t 0.482992 -s 0 -d 9 -p ack -e 40 -c 0 -i 786 -a 0 -x {10.0 9.0 388 ------- null} + -t 0.482992 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {9.0 10.0 403 ------- null} - -t 0.482992 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {9.0 10.0 403 ------- null} h -t 0.482992 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.483136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {9.0 10.0 396 ------- null} - -t 0.483136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {9.0 10.0 396 ------- null} h -t 0.483136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.4832 -s 0 -d 9 -p ack -e 40 -c 0 -i 790 -a 0 -x {10.0 9.0 390 ------- null} - -t 0.4832 -s 0 -d 9 -p ack -e 40 -c 0 -i 790 -a 0 -x {10.0 9.0 390 ------- null} h -t 0.4832 -s 0 -d 9 -p ack -e 40 -c 0 -i 790 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.483376 -s 10 -d 7 -p ack -e 40 -c 0 -i 794 -a 0 -x {10.0 9.0 392 ------- null} + -t 0.483376 -s 7 -d 0 -p ack -e 40 -c 0 -i 794 -a 0 -x {10.0 9.0 392 ------- null} h -t 0.483376 -s 7 -d 8 -p ack -e 40 -c 0 -i 794 -a 0 -x {10.0 9.0 392 ------- null} r -t 0.48352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 779 -a 0 -x {9.0 10.0 394 ------- null} + -t 0.48352 -s 10 -d 7 -p ack -e 40 -c 0 -i 798 -a 0 -x {10.0 9.0 394 ------- null} - -t 0.48352 -s 10 -d 7 -p ack -e 40 -c 0 -i 798 -a 0 -x {10.0 9.0 394 ------- null} h -t 0.48352 -s 10 -d 7 -p ack -e 40 -c 0 -i 798 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.483616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {9.0 10.0 401 ------- null} + -t 0.483616 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {9.0 10.0 401 ------- null} h -t 0.483616 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {9.0 10.0 401 ------- null} r -t 0.484112 -s 0 -d 9 -p ack -e 40 -c 0 -i 788 -a 0 -x {10.0 9.0 389 ------- null} + -t 0.484112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {9.0 10.0 404 ------- null} - -t 0.484112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {9.0 10.0 404 ------- null} h -t 0.484112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.484224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {9.0 10.0 397 ------- null} - -t 0.484224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {9.0 10.0 397 ------- null} h -t 0.484224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.484464 -s 10 -d 7 -p ack -e 40 -c 0 -i 796 -a 0 -x {10.0 9.0 393 ------- null} + -t 0.484464 -s 7 -d 0 -p ack -e 40 -c 0 -i 796 -a 0 -x {10.0 9.0 393 ------- null} h -t 0.484464 -s 7 -d 8 -p ack -e 40 -c 0 -i 796 -a 0 -x {10.0 9.0 393 ------- null} + -t 0.484528 -s 0 -d 9 -p ack -e 40 -c 0 -i 792 -a 0 -x {10.0 9.0 391 ------- null} - -t 0.484528 -s 0 -d 9 -p ack -e 40 -c 0 -i 792 -a 0 -x {10.0 9.0 391 ------- null} h -t 0.484528 -s 0 -d 9 -p ack -e 40 -c 0 -i 792 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.484528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {9.0 10.0 402 ------- null} + -t 0.484528 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {9.0 10.0 402 ------- null} h -t 0.484528 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {9.0 10.0 402 ------- null} r -t 0.484608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 781 -a 0 -x {9.0 10.0 395 ------- null} + -t 0.484608 -s 10 -d 7 -p ack -e 40 -c 0 -i 800 -a 0 -x {10.0 9.0 395 ------- null} - -t 0.484608 -s 10 -d 7 -p ack -e 40 -c 0 -i 800 -a 0 -x {10.0 9.0 395 ------- null} h -t 0.484608 -s 10 -d 7 -p ack -e 40 -c 0 -i 800 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.485232 -s 0 -d 9 -p ack -e 40 -c 0 -i 790 -a 0 -x {10.0 9.0 390 ------- null} + -t 0.485232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {9.0 10.0 405 ------- null} - -t 0.485232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {9.0 10.0 405 ------- null} h -t 0.485232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.485472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {9.0 10.0 398 ------- null} - -t 0.485472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {9.0 10.0 398 ------- null} h -t 0.485472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.485552 -s 10 -d 7 -p ack -e 40 -c 0 -i 798 -a 0 -x {10.0 9.0 394 ------- null} + -t 0.485552 -s 7 -d 0 -p ack -e 40 -c 0 -i 798 -a 0 -x {10.0 9.0 394 ------- null} h -t 0.485552 -s 7 -d 8 -p ack -e 40 -c 0 -i 798 -a 0 -x {10.0 9.0 394 ------- null} + -t 0.485712 -s 0 -d 9 -p ack -e 40 -c 0 -i 794 -a 0 -x {10.0 9.0 392 ------- null} - -t 0.485712 -s 0 -d 9 -p ack -e 40 -c 0 -i 794 -a 0 -x {10.0 9.0 392 ------- null} h -t 0.485712 -s 0 -d 9 -p ack -e 40 -c 0 -i 794 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.485792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {9.0 10.0 403 ------- null} + -t 0.485792 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {9.0 10.0 403 ------- null} h -t 0.485792 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {9.0 10.0 403 ------- null} r -t 0.485936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 783 -a 0 -x {9.0 10.0 396 ------- null} + -t 0.485936 -s 10 -d 7 -p ack -e 40 -c 0 -i 802 -a 0 -x {10.0 9.0 396 ------- null} - -t 0.485936 -s 10 -d 7 -p ack -e 40 -c 0 -i 802 -a 0 -x {10.0 9.0 396 ------- null} h -t 0.485936 -s 10 -d 7 -p ack -e 40 -c 0 -i 802 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.48656 -s 0 -d 9 -p ack -e 40 -c 0 -i 792 -a 0 -x {10.0 9.0 391 ------- null} + -t 0.48656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 803 -a 0 -x {9.0 10.0 406 ------- null} - -t 0.48656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 803 -a 0 -x {9.0 10.0 406 ------- null} h -t 0.48656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 803 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.48656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {9.0 10.0 399 ------- null} - -t 0.48656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {9.0 10.0 399 ------- null} h -t 0.48656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.48664 -s 10 -d 7 -p ack -e 40 -c 0 -i 800 -a 0 -x {10.0 9.0 395 ------- null} + -t 0.48664 -s 7 -d 0 -p ack -e 40 -c 0 -i 800 -a 0 -x {10.0 9.0 395 ------- null} h -t 0.48664 -s 7 -d 8 -p ack -e 40 -c 0 -i 800 -a 0 -x {10.0 9.0 395 ------- null} + -t 0.4868 -s 0 -d 9 -p ack -e 40 -c 0 -i 796 -a 0 -x {10.0 9.0 393 ------- null} - -t 0.4868 -s 0 -d 9 -p ack -e 40 -c 0 -i 796 -a 0 -x {10.0 9.0 393 ------- null} h -t 0.4868 -s 0 -d 9 -p ack -e 40 -c 0 -i 796 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.486912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {9.0 10.0 404 ------- null} + -t 0.486912 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {9.0 10.0 404 ------- null} h -t 0.486912 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {9.0 10.0 404 ------- null} r -t 0.487024 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 785 -a 0 -x {9.0 10.0 397 ------- null} + -t 0.487024 -s 10 -d 7 -p ack -e 40 -c 0 -i 804 -a 0 -x {10.0 9.0 397 ------- null} - -t 0.487024 -s 10 -d 7 -p ack -e 40 -c 0 -i 804 -a 0 -x {10.0 9.0 397 ------- null} h -t 0.487024 -s 10 -d 7 -p ack -e 40 -c 0 -i 804 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.487648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {9.0 10.0 400 ------- null} - -t 0.487648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {9.0 10.0 400 ------- null} h -t 0.487648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.487744 -s 0 -d 9 -p ack -e 40 -c 0 -i 794 -a 0 -x {10.0 9.0 392 ------- null} + -t 0.487744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 805 -a 0 -x {9.0 10.0 407 ------- null} - -t 0.487744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 805 -a 0 -x {9.0 10.0 407 ------- null} h -t 0.487744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 805 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.487936 -s 0 -d 9 -p ack -e 40 -c 0 -i 798 -a 0 -x {10.0 9.0 394 ------- null} - -t 0.487936 -s 0 -d 9 -p ack -e 40 -c 0 -i 798 -a 0 -x {10.0 9.0 394 ------- null} h -t 0.487936 -s 0 -d 9 -p ack -e 40 -c 0 -i 798 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.487968 -s 10 -d 7 -p ack -e 40 -c 0 -i 802 -a 0 -x {10.0 9.0 396 ------- null} + -t 0.487968 -s 7 -d 0 -p ack -e 40 -c 0 -i 802 -a 0 -x {10.0 9.0 396 ------- null} h -t 0.487968 -s 7 -d 8 -p ack -e 40 -c 0 -i 802 -a 0 -x {10.0 9.0 396 ------- null} r -t 0.488032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {9.0 10.0 405 ------- null} + -t 0.488032 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {9.0 10.0 405 ------- null} h -t 0.488032 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {9.0 10.0 405 ------- null} r -t 0.488272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 787 -a 0 -x {9.0 10.0 398 ------- null} + -t 0.488272 -s 10 -d 7 -p ack -e 40 -c 0 -i 806 -a 0 -x {10.0 9.0 398 ------- null} - -t 0.488272 -s 10 -d 7 -p ack -e 40 -c 0 -i 806 -a 0 -x {10.0 9.0 398 ------- null} h -t 0.488272 -s 10 -d 7 -p ack -e 40 -c 0 -i 806 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.488832 -s 0 -d 9 -p ack -e 40 -c 0 -i 796 -a 0 -x {10.0 9.0 393 ------- null} + -t 0.488832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 807 -a 0 -x {9.0 10.0 408 ------- null} - -t 0.488832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 807 -a 0 -x {9.0 10.0 408 ------- null} h -t 0.488832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 807 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.488912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {9.0 10.0 401 ------- null} - -t 0.488912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {9.0 10.0 401 ------- null} h -t 0.488912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.488992 -s 0 -d 9 -p ack -e 40 -c 0 -i 800 -a 0 -x {10.0 9.0 395 ------- null} - -t 0.488992 -s 0 -d 9 -p ack -e 40 -c 0 -i 800 -a 0 -x {10.0 9.0 395 ------- null} h -t 0.488992 -s 0 -d 9 -p ack -e 40 -c 0 -i 800 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.489056 -s 10 -d 7 -p ack -e 40 -c 0 -i 804 -a 0 -x {10.0 9.0 397 ------- null} + -t 0.489056 -s 7 -d 0 -p ack -e 40 -c 0 -i 804 -a 0 -x {10.0 9.0 397 ------- null} h -t 0.489056 -s 7 -d 8 -p ack -e 40 -c 0 -i 804 -a 0 -x {10.0 9.0 397 ------- null} r -t 0.48936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 803 -a 0 -x {9.0 10.0 406 ------- null} + -t 0.48936 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 803 -a 0 -x {9.0 10.0 406 ------- null} h -t 0.48936 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 803 -a 0 -x {9.0 10.0 406 ------- null} r -t 0.48936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 789 -a 0 -x {9.0 10.0 399 ------- null} + -t 0.48936 -s 10 -d 7 -p ack -e 40 -c 0 -i 808 -a 0 -x {10.0 9.0 399 ------- null} - -t 0.48936 -s 10 -d 7 -p ack -e 40 -c 0 -i 808 -a 0 -x {10.0 9.0 399 ------- null} h -t 0.48936 -s 10 -d 7 -p ack -e 40 -c 0 -i 808 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.489968 -s 0 -d 9 -p ack -e 40 -c 0 -i 798 -a 0 -x {10.0 9.0 394 ------- null} + -t 0.489968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 809 -a 0 -x {9.0 10.0 409 ------- null} - -t 0.489968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 809 -a 0 -x {9.0 10.0 409 ------- null} h -t 0.489968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 809 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.49 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {9.0 10.0 402 ------- null} - -t 0.49 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {9.0 10.0 402 ------- null} h -t 0.49 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.490272 -s 0 -d 9 -p ack -e 40 -c 0 -i 802 -a 0 -x {10.0 9.0 396 ------- null} - -t 0.490272 -s 0 -d 9 -p ack -e 40 -c 0 -i 802 -a 0 -x {10.0 9.0 396 ------- null} h -t 0.490272 -s 0 -d 9 -p ack -e 40 -c 0 -i 802 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.490304 -s 10 -d 7 -p ack -e 40 -c 0 -i 806 -a 0 -x {10.0 9.0 398 ------- null} + -t 0.490304 -s 7 -d 0 -p ack -e 40 -c 0 -i 806 -a 0 -x {10.0 9.0 398 ------- null} h -t 0.490304 -s 7 -d 8 -p ack -e 40 -c 0 -i 806 -a 0 -x {10.0 9.0 398 ------- null} r -t 0.490448 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 791 -a 0 -x {9.0 10.0 400 ------- null} + -t 0.490448 -s 10 -d 7 -p ack -e 40 -c 0 -i 810 -a 0 -x {10.0 9.0 400 ------- null} - -t 0.490448 -s 10 -d 7 -p ack -e 40 -c 0 -i 810 -a 0 -x {10.0 9.0 400 ------- null} h -t 0.490448 -s 10 -d 7 -p ack -e 40 -c 0 -i 810 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.490544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 805 -a 0 -x {9.0 10.0 407 ------- null} + -t 0.490544 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 805 -a 0 -x {9.0 10.0 407 ------- null} h -t 0.490544 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 805 -a 0 -x {9.0 10.0 407 ------- null} r -t 0.491024 -s 0 -d 9 -p ack -e 40 -c 0 -i 800 -a 0 -x {10.0 9.0 395 ------- null} + -t 0.491024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 811 -a 0 -x {9.0 10.0 410 ------- null} - -t 0.491024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 811 -a 0 -x {9.0 10.0 410 ------- null} h -t 0.491024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 811 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.491168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {9.0 10.0 403 ------- null} - -t 0.491168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {9.0 10.0 403 ------- null} h -t 0.491168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.491264 -s 0 -d 9 -p ack -e 40 -c 0 -i 804 -a 0 -x {10.0 9.0 397 ------- null} - -t 0.491264 -s 0 -d 9 -p ack -e 40 -c 0 -i 804 -a 0 -x {10.0 9.0 397 ------- null} h -t 0.491264 -s 0 -d 9 -p ack -e 40 -c 0 -i 804 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.491392 -s 10 -d 7 -p ack -e 40 -c 0 -i 808 -a 0 -x {10.0 9.0 399 ------- null} + -t 0.491392 -s 7 -d 0 -p ack -e 40 -c 0 -i 808 -a 0 -x {10.0 9.0 399 ------- null} h -t 0.491392 -s 7 -d 8 -p ack -e 40 -c 0 -i 808 -a 0 -x {10.0 9.0 399 ------- null} r -t 0.491632 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 807 -a 0 -x {9.0 10.0 408 ------- null} + -t 0.491632 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 807 -a 0 -x {9.0 10.0 408 ------- null} h -t 0.491632 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 807 -a 0 -x {9.0 10.0 408 ------- null} r -t 0.491712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 793 -a 0 -x {9.0 10.0 401 ------- null} + -t 0.491712 -s 10 -d 7 -p ack -e 40 -c 0 -i 812 -a 0 -x {10.0 9.0 401 ------- null} - -t 0.491712 -s 10 -d 7 -p ack -e 40 -c 0 -i 812 -a 0 -x {10.0 9.0 401 ------- null} h -t 0.491712 -s 10 -d 7 -p ack -e 40 -c 0 -i 812 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.492256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {9.0 10.0 404 ------- null} - -t 0.492256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {9.0 10.0 404 ------- null} h -t 0.492256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.492304 -s 0 -d 9 -p ack -e 40 -c 0 -i 802 -a 0 -x {10.0 9.0 396 ------- null} + -t 0.492304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 813 -a 0 -x {9.0 10.0 411 ------- null} - -t 0.492304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 813 -a 0 -x {9.0 10.0 411 ------- null} h -t 0.492304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 813 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.49248 -s 10 -d 7 -p ack -e 40 -c 0 -i 810 -a 0 -x {10.0 9.0 400 ------- null} + -t 0.49248 -s 7 -d 0 -p ack -e 40 -c 0 -i 810 -a 0 -x {10.0 9.0 400 ------- null} h -t 0.49248 -s 7 -d 8 -p ack -e 40 -c 0 -i 810 -a 0 -x {10.0 9.0 400 ------- null} + -t 0.492496 -s 0 -d 9 -p ack -e 40 -c 0 -i 806 -a 0 -x {10.0 9.0 398 ------- null} - -t 0.492496 -s 0 -d 9 -p ack -e 40 -c 0 -i 806 -a 0 -x {10.0 9.0 398 ------- null} h -t 0.492496 -s 0 -d 9 -p ack -e 40 -c 0 -i 806 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.492768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 809 -a 0 -x {9.0 10.0 409 ------- null} + -t 0.492768 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 809 -a 0 -x {9.0 10.0 409 ------- null} h -t 0.492768 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 809 -a 0 -x {9.0 10.0 409 ------- null} r -t 0.4928 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 795 -a 0 -x {9.0 10.0 402 ------- null} + -t 0.4928 -s 10 -d 7 -p ack -e 40 -c 0 -i 814 -a 0 -x {10.0 9.0 402 ------- null} - -t 0.4928 -s 10 -d 7 -p ack -e 40 -c 0 -i 814 -a 0 -x {10.0 9.0 402 ------- null} h -t 0.4928 -s 10 -d 7 -p ack -e 40 -c 0 -i 814 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.493296 -s 0 -d 9 -p ack -e 40 -c 0 -i 804 -a 0 -x {10.0 9.0 397 ------- null} + -t 0.493296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 815 -a 0 -x {9.0 10.0 412 ------- null} - -t 0.493296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 815 -a 0 -x {9.0 10.0 412 ------- null} h -t 0.493296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 815 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.493344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {9.0 10.0 405 ------- null} - -t 0.493344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {9.0 10.0 405 ------- null} h -t 0.493344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.493504 -s 0 -d 9 -p ack -e 40 -c 0 -i 808 -a 0 -x {10.0 9.0 399 ------- null} - -t 0.493504 -s 0 -d 9 -p ack -e 40 -c 0 -i 808 -a 0 -x {10.0 9.0 399 ------- null} h -t 0.493504 -s 0 -d 9 -p ack -e 40 -c 0 -i 808 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.493744 -s 10 -d 7 -p ack -e 40 -c 0 -i 812 -a 0 -x {10.0 9.0 401 ------- null} + -t 0.493744 -s 7 -d 0 -p ack -e 40 -c 0 -i 812 -a 0 -x {10.0 9.0 401 ------- null} h -t 0.493744 -s 7 -d 8 -p ack -e 40 -c 0 -i 812 -a 0 -x {10.0 9.0 401 ------- null} r -t 0.493824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 811 -a 0 -x {9.0 10.0 410 ------- null} + -t 0.493824 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 811 -a 0 -x {9.0 10.0 410 ------- null} h -t 0.493824 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 811 -a 0 -x {9.0 10.0 410 ------- null} r -t 0.493968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 797 -a 0 -x {9.0 10.0 403 ------- null} + -t 0.493968 -s 10 -d 7 -p ack -e 40 -c 0 -i 816 -a 0 -x {10.0 9.0 403 ------- null} - -t 0.493968 -s 10 -d 7 -p ack -e 40 -c 0 -i 816 -a 0 -x {10.0 9.0 403 ------- null} h -t 0.493968 -s 10 -d 7 -p ack -e 40 -c 0 -i 816 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.494432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 803 -a 0 -x {9.0 10.0 406 ------- null} - -t 0.494432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 803 -a 0 -x {9.0 10.0 406 ------- null} h -t 0.494432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 803 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.494528 -s 0 -d 9 -p ack -e 40 -c 0 -i 806 -a 0 -x {10.0 9.0 398 ------- null} + -t 0.494528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 817 -a 0 -x {9.0 10.0 413 ------- null} - -t 0.494528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 817 -a 0 -x {9.0 10.0 413 ------- null} h -t 0.494528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 817 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.494576 -s 0 -d 9 -p ack -e 40 -c 0 -i 810 -a 0 -x {10.0 9.0 400 ------- null} - -t 0.494576 -s 0 -d 9 -p ack -e 40 -c 0 -i 810 -a 0 -x {10.0 9.0 400 ------- null} h -t 0.494576 -s 0 -d 9 -p ack -e 40 -c 0 -i 810 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.494832 -s 10 -d 7 -p ack -e 40 -c 0 -i 814 -a 0 -x {10.0 9.0 402 ------- null} + -t 0.494832 -s 7 -d 0 -p ack -e 40 -c 0 -i 814 -a 0 -x {10.0 9.0 402 ------- null} h -t 0.494832 -s 7 -d 8 -p ack -e 40 -c 0 -i 814 -a 0 -x {10.0 9.0 402 ------- null} r -t 0.495056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 799 -a 0 -x {9.0 10.0 404 ------- null} + -t 0.495056 -s 10 -d 7 -p ack -e 40 -c 0 -i 818 -a 0 -x {10.0 9.0 404 ------- null} - -t 0.495056 -s 10 -d 7 -p ack -e 40 -c 0 -i 818 -a 0 -x {10.0 9.0 404 ------- null} h -t 0.495056 -s 10 -d 7 -p ack -e 40 -c 0 -i 818 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.495104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 813 -a 0 -x {9.0 10.0 411 ------- null} + -t 0.495104 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 813 -a 0 -x {9.0 10.0 411 ------- null} h -t 0.495104 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 813 -a 0 -x {9.0 10.0 411 ------- null} + -t 0.49552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 805 -a 0 -x {9.0 10.0 407 ------- null} - -t 0.49552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 805 -a 0 -x {9.0 10.0 407 ------- null} h -t 0.49552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 805 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.495536 -s 0 -d 9 -p ack -e 40 -c 0 -i 808 -a 0 -x {10.0 9.0 399 ------- null} + -t 0.495536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 819 -a 0 -x {9.0 10.0 414 ------- null} - -t 0.495536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 819 -a 0 -x {9.0 10.0 414 ------- null} h -t 0.495536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 819 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.495792 -s 0 -d 9 -p ack -e 40 -c 0 -i 812 -a 0 -x {10.0 9.0 401 ------- null} - -t 0.495792 -s 0 -d 9 -p ack -e 40 -c 0 -i 812 -a 0 -x {10.0 9.0 401 ------- null} h -t 0.495792 -s 0 -d 9 -p ack -e 40 -c 0 -i 812 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.496 -s 10 -d 7 -p ack -e 40 -c 0 -i 816 -a 0 -x {10.0 9.0 403 ------- null} + -t 0.496 -s 7 -d 0 -p ack -e 40 -c 0 -i 816 -a 0 -x {10.0 9.0 403 ------- null} h -t 0.496 -s 7 -d 8 -p ack -e 40 -c 0 -i 816 -a 0 -x {10.0 9.0 403 ------- null} r -t 0.496096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 815 -a 0 -x {9.0 10.0 412 ------- null} + -t 0.496096 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 815 -a 0 -x {9.0 10.0 412 ------- null} h -t 0.496096 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 815 -a 0 -x {9.0 10.0 412 ------- null} r -t 0.496144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 801 -a 0 -x {9.0 10.0 405 ------- null} + -t 0.496144 -s 10 -d 7 -p ack -e 40 -c 0 -i 820 -a 0 -x {10.0 9.0 405 ------- null} - -t 0.496144 -s 10 -d 7 -p ack -e 40 -c 0 -i 820 -a 0 -x {10.0 9.0 405 ------- null} h -t 0.496144 -s 10 -d 7 -p ack -e 40 -c 0 -i 820 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.496608 -s 0 -d 9 -p ack -e 40 -c 0 -i 810 -a 0 -x {10.0 9.0 400 ------- null} + -t 0.496608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 821 -a 0 -x {9.0 10.0 415 ------- null} - -t 0.496608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 821 -a 0 -x {9.0 10.0 415 ------- null} h -t 0.496608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 821 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.496816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 807 -a 0 -x {9.0 10.0 408 ------- null} - -t 0.496816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 807 -a 0 -x {9.0 10.0 408 ------- null} h -t 0.496816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 807 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.496992 -s 0 -d 9 -p ack -e 40 -c 0 -i 814 -a 0 -x {10.0 9.0 402 ------- null} - -t 0.496992 -s 0 -d 9 -p ack -e 40 -c 0 -i 814 -a 0 -x {10.0 9.0 402 ------- null} h -t 0.496992 -s 0 -d 9 -p ack -e 40 -c 0 -i 814 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.497088 -s 10 -d 7 -p ack -e 40 -c 0 -i 818 -a 0 -x {10.0 9.0 404 ------- null} + -t 0.497088 -s 7 -d 0 -p ack -e 40 -c 0 -i 818 -a 0 -x {10.0 9.0 404 ------- null} h -t 0.497088 -s 7 -d 8 -p ack -e 40 -c 0 -i 818 -a 0 -x {10.0 9.0 404 ------- null} r -t 0.497232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 803 -a 0 -x {9.0 10.0 406 ------- null} + -t 0.497232 -s 10 -d 7 -p ack -e 40 -c 0 -i 822 -a 0 -x {10.0 9.0 406 ------- null} - -t 0.497232 -s 10 -d 7 -p ack -e 40 -c 0 -i 822 -a 0 -x {10.0 9.0 406 ------- null} h -t 0.497232 -s 10 -d 7 -p ack -e 40 -c 0 -i 822 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.497328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 817 -a 0 -x {9.0 10.0 413 ------- null} + -t 0.497328 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 817 -a 0 -x {9.0 10.0 413 ------- null} h -t 0.497328 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 817 -a 0 -x {9.0 10.0 413 ------- null} r -t 0.497824 -s 0 -d 9 -p ack -e 40 -c 0 -i 812 -a 0 -x {10.0 9.0 401 ------- null} + -t 0.497824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {9.0 10.0 416 ------- null} - -t 0.497824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {9.0 10.0 416 ------- null} h -t 0.497824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.497904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 809 -a 0 -x {9.0 10.0 409 ------- null} - -t 0.497904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 809 -a 0 -x {9.0 10.0 409 ------- null} h -t 0.497904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 809 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.49808 -s 0 -d 9 -p ack -e 40 -c 0 -i 816 -a 0 -x {10.0 9.0 403 ------- null} - -t 0.49808 -s 0 -d 9 -p ack -e 40 -c 0 -i 816 -a 0 -x {10.0 9.0 403 ------- null} h -t 0.49808 -s 0 -d 9 -p ack -e 40 -c 0 -i 816 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.498176 -s 10 -d 7 -p ack -e 40 -c 0 -i 820 -a 0 -x {10.0 9.0 405 ------- null} + -t 0.498176 -s 7 -d 0 -p ack -e 40 -c 0 -i 820 -a 0 -x {10.0 9.0 405 ------- null} h -t 0.498176 -s 7 -d 8 -p ack -e 40 -c 0 -i 820 -a 0 -x {10.0 9.0 405 ------- null} r -t 0.49832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 805 -a 0 -x {9.0 10.0 407 ------- null} + -t 0.49832 -s 10 -d 7 -p ack -e 40 -c 0 -i 824 -a 0 -x {10.0 9.0 407 ------- null} - -t 0.49832 -s 10 -d 7 -p ack -e 40 -c 0 -i 824 -a 0 -x {10.0 9.0 407 ------- null} h -t 0.49832 -s 10 -d 7 -p ack -e 40 -c 0 -i 824 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.498336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 819 -a 0 -x {9.0 10.0 414 ------- null} + -t 0.498336 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 819 -a 0 -x {9.0 10.0 414 ------- null} h -t 0.498336 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 819 -a 0 -x {9.0 10.0 414 ------- null} + -t 0.498992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 811 -a 0 -x {9.0 10.0 410 ------- null} - -t 0.498992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 811 -a 0 -x {9.0 10.0 410 ------- null} h -t 0.498992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 811 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.499024 -s 0 -d 9 -p ack -e 40 -c 0 -i 814 -a 0 -x {10.0 9.0 402 ------- null} + -t 0.499024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {9.0 10.0 417 ------- null} - -t 0.499024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {9.0 10.0 417 ------- null} h -t 0.499024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.499264 -s 10 -d 7 -p ack -e 40 -c 0 -i 822 -a 0 -x {10.0 9.0 406 ------- null} + -t 0.499264 -s 7 -d 0 -p ack -e 40 -c 0 -i 822 -a 0 -x {10.0 9.0 406 ------- null} h -t 0.499264 -s 7 -d 8 -p ack -e 40 -c 0 -i 822 -a 0 -x {10.0 9.0 406 ------- null} + -t 0.49928 -s 0 -d 9 -p ack -e 40 -c 0 -i 818 -a 0 -x {10.0 9.0 404 ------- null} - -t 0.49928 -s 0 -d 9 -p ack -e 40 -c 0 -i 818 -a 0 -x {10.0 9.0 404 ------- null} h -t 0.49928 -s 0 -d 9 -p ack -e 40 -c 0 -i 818 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.499408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 821 -a 0 -x {9.0 10.0 415 ------- null} + -t 0.499408 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 821 -a 0 -x {9.0 10.0 415 ------- null} h -t 0.499408 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 821 -a 0 -x {9.0 10.0 415 ------- null} r -t 0.499616 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 807 -a 0 -x {9.0 10.0 408 ------- null} + -t 0.499616 -s 10 -d 7 -p ack -e 40 -c 0 -i 826 -a 0 -x {10.0 9.0 408 ------- null} - -t 0.499616 -s 10 -d 7 -p ack -e 40 -c 0 -i 826 -a 0 -x {10.0 9.0 408 ------- null} h -t 0.499616 -s 10 -d 7 -p ack -e 40 -c 0 -i 826 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.500112 -s 0 -d 9 -p ack -e 40 -c 0 -i 816 -a 0 -x {10.0 9.0 403 ------- null} + -t 0.500112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {9.0 10.0 418 ------- null} - -t 0.500112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {9.0 10.0 418 ------- null} h -t 0.500112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.500256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 813 -a 0 -x {9.0 10.0 411 ------- null} - -t 0.500256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 813 -a 0 -x {9.0 10.0 411 ------- null} h -t 0.500256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 813 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.500336 -s 0 -d 9 -p ack -e 40 -c 0 -i 820 -a 0 -x {10.0 9.0 405 ------- null} - -t 0.500336 -s 0 -d 9 -p ack -e 40 -c 0 -i 820 -a 0 -x {10.0 9.0 405 ------- null} h -t 0.500336 -s 0 -d 9 -p ack -e 40 -c 0 -i 820 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.500352 -s 10 -d 7 -p ack -e 40 -c 0 -i 824 -a 0 -x {10.0 9.0 407 ------- null} + -t 0.500352 -s 7 -d 0 -p ack -e 40 -c 0 -i 824 -a 0 -x {10.0 9.0 407 ------- null} h -t 0.500352 -s 7 -d 8 -p ack -e 40 -c 0 -i 824 -a 0 -x {10.0 9.0 407 ------- null} r -t 0.500624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {9.0 10.0 416 ------- null} + -t 0.500624 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {9.0 10.0 416 ------- null} h -t 0.500624 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {9.0 10.0 416 ------- null} r -t 0.500704 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 809 -a 0 -x {9.0 10.0 409 ------- null} + -t 0.500704 -s 10 -d 7 -p ack -e 40 -c 0 -i 828 -a 0 -x {10.0 9.0 409 ------- null} - -t 0.500704 -s 10 -d 7 -p ack -e 40 -c 0 -i 828 -a 0 -x {10.0 9.0 409 ------- null} h -t 0.500704 -s 10 -d 7 -p ack -e 40 -c 0 -i 828 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.501312 -s 0 -d 9 -p ack -e 40 -c 0 -i 818 -a 0 -x {10.0 9.0 404 ------- null} + -t 0.501312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {9.0 10.0 419 ------- null} - -t 0.501312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {9.0 10.0 419 ------- null} h -t 0.501312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.501344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 815 -a 0 -x {9.0 10.0 412 ------- null} - -t 0.501344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 815 -a 0 -x {9.0 10.0 412 ------- null} h -t 0.501344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 815 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.501616 -s 0 -d 9 -p ack -e 40 -c 0 -i 822 -a 0 -x {10.0 9.0 406 ------- null} - -t 0.501616 -s 0 -d 9 -p ack -e 40 -c 0 -i 822 -a 0 -x {10.0 9.0 406 ------- null} h -t 0.501616 -s 0 -d 9 -p ack -e 40 -c 0 -i 822 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.501648 -s 10 -d 7 -p ack -e 40 -c 0 -i 826 -a 0 -x {10.0 9.0 408 ------- null} + -t 0.501648 -s 7 -d 0 -p ack -e 40 -c 0 -i 826 -a 0 -x {10.0 9.0 408 ------- null} h -t 0.501648 -s 7 -d 8 -p ack -e 40 -c 0 -i 826 -a 0 -x {10.0 9.0 408 ------- null} r -t 0.501792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 811 -a 0 -x {9.0 10.0 410 ------- null} + -t 0.501792 -s 10 -d 7 -p ack -e 40 -c 0 -i 830 -a 0 -x {10.0 9.0 410 ------- null} - -t 0.501792 -s 10 -d 7 -p ack -e 40 -c 0 -i 830 -a 0 -x {10.0 9.0 410 ------- null} h -t 0.501792 -s 10 -d 7 -p ack -e 40 -c 0 -i 830 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.501824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {9.0 10.0 417 ------- null} + -t 0.501824 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {9.0 10.0 417 ------- null} h -t 0.501824 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {9.0 10.0 417 ------- null} r -t 0.502368 -s 0 -d 9 -p ack -e 40 -c 0 -i 820 -a 0 -x {10.0 9.0 405 ------- null} + -t 0.502368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {9.0 10.0 420 ------- null} - -t 0.502368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {9.0 10.0 420 ------- null} h -t 0.502368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.502656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 817 -a 0 -x {9.0 10.0 413 ------- null} - -t 0.502656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 817 -a 0 -x {9.0 10.0 413 ------- null} h -t 0.502656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 817 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.502736 -s 10 -d 7 -p ack -e 40 -c 0 -i 828 -a 0 -x {10.0 9.0 409 ------- null} + -t 0.502736 -s 7 -d 0 -p ack -e 40 -c 0 -i 828 -a 0 -x {10.0 9.0 409 ------- null} h -t 0.502736 -s 7 -d 8 -p ack -e 40 -c 0 -i 828 -a 0 -x {10.0 9.0 409 ------- null} r -t 0.502912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {9.0 10.0 418 ------- null} + -t 0.502912 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {9.0 10.0 418 ------- null} h -t 0.502912 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {9.0 10.0 418 ------- null} + -t 0.502944 -s 0 -d 9 -p ack -e 40 -c 0 -i 824 -a 0 -x {10.0 9.0 407 ------- null} - -t 0.502944 -s 0 -d 9 -p ack -e 40 -c 0 -i 824 -a 0 -x {10.0 9.0 407 ------- null} h -t 0.502944 -s 0 -d 9 -p ack -e 40 -c 0 -i 824 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.503056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 813 -a 0 -x {9.0 10.0 411 ------- null} + -t 0.503056 -s 10 -d 7 -p ack -e 40 -c 0 -i 832 -a 0 -x {10.0 9.0 411 ------- null} - -t 0.503056 -s 10 -d 7 -p ack -e 40 -c 0 -i 832 -a 0 -x {10.0 9.0 411 ------- null} h -t 0.503056 -s 10 -d 7 -p ack -e 40 -c 0 -i 832 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.503648 -s 0 -d 9 -p ack -e 40 -c 0 -i 822 -a 0 -x {10.0 9.0 406 ------- null} + -t 0.503648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {9.0 10.0 421 ------- null} - -t 0.503648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {9.0 10.0 421 ------- null} h -t 0.503648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.503824 -s 10 -d 7 -p ack -e 40 -c 0 -i 830 -a 0 -x {10.0 9.0 410 ------- null} + -t 0.503824 -s 7 -d 0 -p ack -e 40 -c 0 -i 830 -a 0 -x {10.0 9.0 410 ------- null} h -t 0.503824 -s 7 -d 8 -p ack -e 40 -c 0 -i 830 -a 0 -x {10.0 9.0 410 ------- null} + -t 0.50384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 819 -a 0 -x {9.0 10.0 414 ------- null} - -t 0.50384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 819 -a 0 -x {9.0 10.0 414 ------- null} h -t 0.50384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 819 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.504032 -s 0 -d 9 -p ack -e 40 -c 0 -i 826 -a 0 -x {10.0 9.0 408 ------- null} - -t 0.504032 -s 0 -d 9 -p ack -e 40 -c 0 -i 826 -a 0 -x {10.0 9.0 408 ------- null} h -t 0.504032 -s 0 -d 9 -p ack -e 40 -c 0 -i 826 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.504112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {9.0 10.0 419 ------- null} + -t 0.504112 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {9.0 10.0 419 ------- null} h -t 0.504112 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {9.0 10.0 419 ------- null} r -t 0.504144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 815 -a 0 -x {9.0 10.0 412 ------- null} + -t 0.504144 -s 10 -d 7 -p ack -e 40 -c 0 -i 834 -a 0 -x {10.0 9.0 412 ------- null} - -t 0.504144 -s 10 -d 7 -p ack -e 40 -c 0 -i 834 -a 0 -x {10.0 9.0 412 ------- null} h -t 0.504144 -s 10 -d 7 -p ack -e 40 -c 0 -i 834 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.504928 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 821 -a 0 -x {9.0 10.0 415 ------- null} - -t 0.504928 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 821 -a 0 -x {9.0 10.0 415 ------- null} h -t 0.504928 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 821 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.504976 -s 0 -d 9 -p ack -e 40 -c 0 -i 824 -a 0 -x {10.0 9.0 407 ------- null} + -t 0.504976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {9.0 10.0 422 ------- null} - -t 0.504976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {9.0 10.0 422 ------- null} h -t 0.504976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.505056 -s 0 -d 9 -p ack -e 40 -c 0 -i 828 -a 0 -x {10.0 9.0 409 ------- null} - -t 0.505056 -s 0 -d 9 -p ack -e 40 -c 0 -i 828 -a 0 -x {10.0 9.0 409 ------- null} h -t 0.505056 -s 0 -d 9 -p ack -e 40 -c 0 -i 828 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.505088 -s 10 -d 7 -p ack -e 40 -c 0 -i 832 -a 0 -x {10.0 9.0 411 ------- null} + -t 0.505088 -s 7 -d 0 -p ack -e 40 -c 0 -i 832 -a 0 -x {10.0 9.0 411 ------- null} h -t 0.505088 -s 7 -d 8 -p ack -e 40 -c 0 -i 832 -a 0 -x {10.0 9.0 411 ------- null} r -t 0.505168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {9.0 10.0 420 ------- null} + -t 0.505168 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {9.0 10.0 420 ------- null} h -t 0.505168 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {9.0 10.0 420 ------- null} r -t 0.505456 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 817 -a 0 -x {9.0 10.0 413 ------- null} + -t 0.505456 -s 10 -d 7 -p ack -e 40 -c 0 -i 836 -a 0 -x {10.0 9.0 413 ------- null} - -t 0.505456 -s 10 -d 7 -p ack -e 40 -c 0 -i 836 -a 0 -x {10.0 9.0 413 ------- null} h -t 0.505456 -s 10 -d 7 -p ack -e 40 -c 0 -i 836 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.506016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {9.0 10.0 416 ------- null} - -t 0.506016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {9.0 10.0 416 ------- null} h -t 0.506016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.506064 -s 0 -d 9 -p ack -e 40 -c 0 -i 826 -a 0 -x {10.0 9.0 408 ------- null} + -t 0.506064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {9.0 10.0 423 ------- null} - -t 0.506064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {9.0 10.0 423 ------- null} h -t 0.506064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.506176 -s 10 -d 7 -p ack -e 40 -c 0 -i 834 -a 0 -x {10.0 9.0 412 ------- null} + -t 0.506176 -s 7 -d 0 -p ack -e 40 -c 0 -i 834 -a 0 -x {10.0 9.0 412 ------- null} h -t 0.506176 -s 7 -d 8 -p ack -e 40 -c 0 -i 834 -a 0 -x {10.0 9.0 412 ------- null} + -t 0.50624 -s 0 -d 9 -p ack -e 40 -c 0 -i 830 -a 0 -x {10.0 9.0 410 ------- null} - -t 0.50624 -s 0 -d 9 -p ack -e 40 -c 0 -i 830 -a 0 -x {10.0 9.0 410 ------- null} h -t 0.50624 -s 0 -d 9 -p ack -e 40 -c 0 -i 830 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.506448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {9.0 10.0 421 ------- null} + -t 0.506448 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {9.0 10.0 421 ------- null} h -t 0.506448 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {9.0 10.0 421 ------- null} r -t 0.50664 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 819 -a 0 -x {9.0 10.0 414 ------- null} + -t 0.50664 -s 10 -d 7 -p ack -e 40 -c 0 -i 838 -a 0 -x {10.0 9.0 414 ------- null} - -t 0.50664 -s 10 -d 7 -p ack -e 40 -c 0 -i 838 -a 0 -x {10.0 9.0 414 ------- null} h -t 0.50664 -s 10 -d 7 -p ack -e 40 -c 0 -i 838 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.507088 -s 0 -d 9 -p ack -e 40 -c 0 -i 828 -a 0 -x {10.0 9.0 409 ------- null} + -t 0.507088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {9.0 10.0 424 ------- null} - -t 0.507088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {9.0 10.0 424 ------- null} h -t 0.507088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.507104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {9.0 10.0 417 ------- null} - -t 0.507104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {9.0 10.0 417 ------- null} h -t 0.507104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.507296 -s 0 -d 9 -p ack -e 40 -c 0 -i 832 -a 0 -x {10.0 9.0 411 ------- null} - -t 0.507296 -s 0 -d 9 -p ack -e 40 -c 0 -i 832 -a 0 -x {10.0 9.0 411 ------- null} h -t 0.507296 -s 0 -d 9 -p ack -e 40 -c 0 -i 832 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.507488 -s 10 -d 7 -p ack -e 40 -c 0 -i 836 -a 0 -x {10.0 9.0 413 ------- null} + -t 0.507488 -s 7 -d 0 -p ack -e 40 -c 0 -i 836 -a 0 -x {10.0 9.0 413 ------- null} h -t 0.507488 -s 7 -d 8 -p ack -e 40 -c 0 -i 836 -a 0 -x {10.0 9.0 413 ------- null} r -t 0.507728 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 821 -a 0 -x {9.0 10.0 415 ------- null} + -t 0.507728 -s 10 -d 7 -p ack -e 40 -c 0 -i 840 -a 0 -x {10.0 9.0 415 ------- null} - -t 0.507728 -s 10 -d 7 -p ack -e 40 -c 0 -i 840 -a 0 -x {10.0 9.0 415 ------- null} h -t 0.507728 -s 10 -d 7 -p ack -e 40 -c 0 -i 840 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.507776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {9.0 10.0 422 ------- null} + -t 0.507776 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {9.0 10.0 422 ------- null} h -t 0.507776 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {9.0 10.0 422 ------- null} + -t 0.508192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {9.0 10.0 418 ------- null} - -t 0.508192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {9.0 10.0 418 ------- null} h -t 0.508192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.508272 -s 0 -d 9 -p ack -e 40 -c 0 -i 830 -a 0 -x {10.0 9.0 410 ------- null} + -t 0.508272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {9.0 10.0 425 ------- null} - -t 0.508272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {9.0 10.0 425 ------- null} h -t 0.508272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.508384 -s 0 -d 9 -p ack -e 40 -c 0 -i 834 -a 0 -x {10.0 9.0 412 ------- null} - -t 0.508384 -s 0 -d 9 -p ack -e 40 -c 0 -i 834 -a 0 -x {10.0 9.0 412 ------- null} h -t 0.508384 -s 0 -d 9 -p ack -e 40 -c 0 -i 834 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.508672 -s 10 -d 7 -p ack -e 40 -c 0 -i 838 -a 0 -x {10.0 9.0 414 ------- null} + -t 0.508672 -s 7 -d 0 -p ack -e 40 -c 0 -i 838 -a 0 -x {10.0 9.0 414 ------- null} h -t 0.508672 -s 7 -d 8 -p ack -e 40 -c 0 -i 838 -a 0 -x {10.0 9.0 414 ------- null} r -t 0.508816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 823 -a 0 -x {9.0 10.0 416 ------- null} + -t 0.508816 -s 10 -d 7 -p ack -e 40 -c 0 -i 842 -a 0 -x {10.0 9.0 416 ------- null} - -t 0.508816 -s 10 -d 7 -p ack -e 40 -c 0 -i 842 -a 0 -x {10.0 9.0 416 ------- null} h -t 0.508816 -s 10 -d 7 -p ack -e 40 -c 0 -i 842 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.508864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {9.0 10.0 423 ------- null} + -t 0.508864 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {9.0 10.0 423 ------- null} h -t 0.508864 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {9.0 10.0 423 ------- null} + -t 0.50928 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {9.0 10.0 419 ------- null} - -t 0.50928 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {9.0 10.0 419 ------- null} h -t 0.50928 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.509328 -s 0 -d 9 -p ack -e 40 -c 0 -i 832 -a 0 -x {10.0 9.0 411 ------- null} + -t 0.509328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 843 -a 0 -x {9.0 10.0 426 ------- null} - -t 0.509328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 843 -a 0 -x {9.0 10.0 426 ------- null} h -t 0.509328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 843 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.509408 -s 0 -d 9 -p ack -e 40 -c 0 -i 836 -a 0 -x {10.0 9.0 413 ------- null} - -t 0.509408 -s 0 -d 9 -p ack -e 40 -c 0 -i 836 -a 0 -x {10.0 9.0 413 ------- null} h -t 0.509408 -s 0 -d 9 -p ack -e 40 -c 0 -i 836 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.50976 -s 10 -d 7 -p ack -e 40 -c 0 -i 840 -a 0 -x {10.0 9.0 415 ------- null} + -t 0.50976 -s 7 -d 0 -p ack -e 40 -c 0 -i 840 -a 0 -x {10.0 9.0 415 ------- null} h -t 0.50976 -s 7 -d 8 -p ack -e 40 -c 0 -i 840 -a 0 -x {10.0 9.0 415 ------- null} r -t 0.509888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {9.0 10.0 424 ------- null} + -t 0.509888 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {9.0 10.0 424 ------- null} h -t 0.509888 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {9.0 10.0 424 ------- null} r -t 0.509904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 825 -a 0 -x {9.0 10.0 417 ------- null} + -t 0.509904 -s 10 -d 7 -p ack -e 40 -c 0 -i 844 -a 0 -x {10.0 9.0 417 ------- null} - -t 0.509904 -s 10 -d 7 -p ack -e 40 -c 0 -i 844 -a 0 -x {10.0 9.0 417 ------- null} h -t 0.509904 -s 10 -d 7 -p ack -e 40 -c 0 -i 844 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.510368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {9.0 10.0 420 ------- null} - -t 0.510368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {9.0 10.0 420 ------- null} h -t 0.510368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.510416 -s 0 -d 9 -p ack -e 40 -c 0 -i 834 -a 0 -x {10.0 9.0 412 ------- null} + -t 0.510416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 845 -a 0 -x {9.0 10.0 427 ------- null} - -t 0.510416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 845 -a 0 -x {9.0 10.0 427 ------- null} h -t 0.510416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 845 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.510624 -s 0 -d 9 -p ack -e 40 -c 0 -i 838 -a 0 -x {10.0 9.0 414 ------- null} - -t 0.510624 -s 0 -d 9 -p ack -e 40 -c 0 -i 838 -a 0 -x {10.0 9.0 414 ------- null} h -t 0.510624 -s 0 -d 9 -p ack -e 40 -c 0 -i 838 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.510848 -s 10 -d 7 -p ack -e 40 -c 0 -i 842 -a 0 -x {10.0 9.0 416 ------- null} + -t 0.510848 -s 7 -d 0 -p ack -e 40 -c 0 -i 842 -a 0 -x {10.0 9.0 416 ------- null} h -t 0.510848 -s 7 -d 8 -p ack -e 40 -c 0 -i 842 -a 0 -x {10.0 9.0 416 ------- null} r -t 0.510992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 827 -a 0 -x {9.0 10.0 418 ------- null} + -t 0.510992 -s 10 -d 7 -p ack -e 40 -c 0 -i 846 -a 0 -x {10.0 9.0 418 ------- null} - -t 0.510992 -s 10 -d 7 -p ack -e 40 -c 0 -i 846 -a 0 -x {10.0 9.0 418 ------- null} h -t 0.510992 -s 10 -d 7 -p ack -e 40 -c 0 -i 846 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.511072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {9.0 10.0 425 ------- null} + -t 0.511072 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {9.0 10.0 425 ------- null} h -t 0.511072 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {9.0 10.0 425 ------- null} r -t 0.51144 -s 0 -d 9 -p ack -e 40 -c 0 -i 836 -a 0 -x {10.0 9.0 413 ------- null} + -t 0.51144 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 847 -a 0 -x {9.0 10.0 428 ------- null} - -t 0.51144 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 847 -a 0 -x {9.0 10.0 428 ------- null} h -t 0.51144 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 847 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.511456 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {9.0 10.0 421 ------- null} - -t 0.511456 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {9.0 10.0 421 ------- null} h -t 0.511456 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.511568 -s 0 -d 9 -p ack -e 40 -c 0 -i 840 -a 0 -x {10.0 9.0 415 ------- null} - -t 0.511568 -s 0 -d 9 -p ack -e 40 -c 0 -i 840 -a 0 -x {10.0 9.0 415 ------- null} h -t 0.511568 -s 0 -d 9 -p ack -e 40 -c 0 -i 840 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.511936 -s 10 -d 7 -p ack -e 40 -c 0 -i 844 -a 0 -x {10.0 9.0 417 ------- null} + -t 0.511936 -s 7 -d 0 -p ack -e 40 -c 0 -i 844 -a 0 -x {10.0 9.0 417 ------- null} h -t 0.511936 -s 7 -d 8 -p ack -e 40 -c 0 -i 844 -a 0 -x {10.0 9.0 417 ------- null} r -t 0.51208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 829 -a 0 -x {9.0 10.0 419 ------- null} + -t 0.51208 -s 10 -d 7 -p ack -e 40 -c 0 -i 848 -a 0 -x {10.0 9.0 419 ------- null} - -t 0.51208 -s 10 -d 7 -p ack -e 40 -c 0 -i 848 -a 0 -x {10.0 9.0 419 ------- null} h -t 0.51208 -s 10 -d 7 -p ack -e 40 -c 0 -i 848 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.512128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 843 -a 0 -x {9.0 10.0 426 ------- null} + -t 0.512128 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 843 -a 0 -x {9.0 10.0 426 ------- null} h -t 0.512128 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 843 -a 0 -x {9.0 10.0 426 ------- null} + -t 0.512544 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {9.0 10.0 422 ------- null} - -t 0.512544 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {9.0 10.0 422 ------- null} h -t 0.512544 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.512656 -s 0 -d 9 -p ack -e 40 -c 0 -i 838 -a 0 -x {10.0 9.0 414 ------- null} + -t 0.512656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 849 -a 0 -x {9.0 10.0 429 ------- null} - -t 0.512656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 849 -a 0 -x {9.0 10.0 429 ------- null} h -t 0.512656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 849 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.512736 -s 0 -d 9 -p ack -e 40 -c 0 -i 842 -a 0 -x {10.0 9.0 416 ------- null} - -t 0.512736 -s 0 -d 9 -p ack -e 40 -c 0 -i 842 -a 0 -x {10.0 9.0 416 ------- null} h -t 0.512736 -s 0 -d 9 -p ack -e 40 -c 0 -i 842 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.513024 -s 10 -d 7 -p ack -e 40 -c 0 -i 846 -a 0 -x {10.0 9.0 418 ------- null} + -t 0.513024 -s 7 -d 0 -p ack -e 40 -c 0 -i 846 -a 0 -x {10.0 9.0 418 ------- null} h -t 0.513024 -s 7 -d 8 -p ack -e 40 -c 0 -i 846 -a 0 -x {10.0 9.0 418 ------- null} r -t 0.513168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 831 -a 0 -x {9.0 10.0 420 ------- null} + -t 0.513168 -s 10 -d 7 -p ack -e 40 -c 0 -i 850 -a 0 -x {10.0 9.0 420 ------- null} - -t 0.513168 -s 10 -d 7 -p ack -e 40 -c 0 -i 850 -a 0 -x {10.0 9.0 420 ------- null} h -t 0.513168 -s 10 -d 7 -p ack -e 40 -c 0 -i 850 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.513216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 845 -a 0 -x {9.0 10.0 427 ------- null} + -t 0.513216 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 845 -a 0 -x {9.0 10.0 427 ------- null} h -t 0.513216 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 845 -a 0 -x {9.0 10.0 427 ------- null} r -t 0.5136 -s 0 -d 9 -p ack -e 40 -c 0 -i 840 -a 0 -x {10.0 9.0 415 ------- null} + -t 0.5136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 851 -a 0 -x {9.0 10.0 430 ------- null} - -t 0.5136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 851 -a 0 -x {9.0 10.0 430 ------- null} h -t 0.5136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 851 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.513632 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {9.0 10.0 423 ------- null} - -t 0.513632 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {9.0 10.0 423 ------- null} h -t 0.513632 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.513872 -s 0 -d 9 -p ack -e 40 -c 0 -i 844 -a 0 -x {10.0 9.0 417 ------- null} - -t 0.513872 -s 0 -d 9 -p ack -e 40 -c 0 -i 844 -a 0 -x {10.0 9.0 417 ------- null} h -t 0.513872 -s 0 -d 9 -p ack -e 40 -c 0 -i 844 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.514112 -s 10 -d 7 -p ack -e 40 -c 0 -i 848 -a 0 -x {10.0 9.0 419 ------- null} + -t 0.514112 -s 7 -d 0 -p ack -e 40 -c 0 -i 848 -a 0 -x {10.0 9.0 419 ------- null} h -t 0.514112 -s 7 -d 8 -p ack -e 40 -c 0 -i 848 -a 0 -x {10.0 9.0 419 ------- null} r -t 0.51424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 847 -a 0 -x {9.0 10.0 428 ------- null} + -t 0.51424 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 847 -a 0 -x {9.0 10.0 428 ------- null} h -t 0.51424 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 847 -a 0 -x {9.0 10.0 428 ------- null} r -t 0.514256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 833 -a 0 -x {9.0 10.0 421 ------- null} + -t 0.514256 -s 10 -d 7 -p ack -e 40 -c 0 -i 852 -a 0 -x {10.0 9.0 421 ------- null} - -t 0.514256 -s 10 -d 7 -p ack -e 40 -c 0 -i 852 -a 0 -x {10.0 9.0 421 ------- null} h -t 0.514256 -s 10 -d 7 -p ack -e 40 -c 0 -i 852 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.51472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {9.0 10.0 424 ------- null} - -t 0.51472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {9.0 10.0 424 ------- null} h -t 0.51472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.514768 -s 0 -d 9 -p ack -e 40 -c 0 -i 842 -a 0 -x {10.0 9.0 416 ------- null} + -t 0.514768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 853 -a 0 -x {9.0 10.0 431 ------- null} - -t 0.514768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 853 -a 0 -x {9.0 10.0 431 ------- null} h -t 0.514768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 853 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.514944 -s 0 -d 9 -p ack -e 40 -c 0 -i 846 -a 0 -x {10.0 9.0 418 ------- null} - -t 0.514944 -s 0 -d 9 -p ack -e 40 -c 0 -i 846 -a 0 -x {10.0 9.0 418 ------- null} h -t 0.514944 -s 0 -d 9 -p ack -e 40 -c 0 -i 846 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.5152 -s 10 -d 7 -p ack -e 40 -c 0 -i 850 -a 0 -x {10.0 9.0 420 ------- null} + -t 0.5152 -s 7 -d 0 -p ack -e 40 -c 0 -i 850 -a 0 -x {10.0 9.0 420 ------- null} h -t 0.5152 -s 7 -d 8 -p ack -e 40 -c 0 -i 850 -a 0 -x {10.0 9.0 420 ------- null} r -t 0.515344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 835 -a 0 -x {9.0 10.0 422 ------- null} + -t 0.515344 -s 10 -d 7 -p ack -e 40 -c 0 -i 854 -a 0 -x {10.0 9.0 422 ------- null} - -t 0.515344 -s 10 -d 7 -p ack -e 40 -c 0 -i 854 -a 0 -x {10.0 9.0 422 ------- null} h -t 0.515344 -s 10 -d 7 -p ack -e 40 -c 0 -i 854 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.515456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 849 -a 0 -x {9.0 10.0 429 ------- null} + -t 0.515456 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 849 -a 0 -x {9.0 10.0 429 ------- null} h -t 0.515456 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 849 -a 0 -x {9.0 10.0 429 ------- null} + -t 0.515808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {9.0 10.0 425 ------- null} - -t 0.515808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {9.0 10.0 425 ------- null} h -t 0.515808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.515904 -s 0 -d 9 -p ack -e 40 -c 0 -i 844 -a 0 -x {10.0 9.0 417 ------- null} + -t 0.515904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 855 -a 0 -x {9.0 10.0 432 ------- null} - -t 0.515904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 855 -a 0 -x {9.0 10.0 432 ------- null} h -t 0.515904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 855 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.515952 -s 0 -d 9 -p ack -e 40 -c 0 -i 848 -a 0 -x {10.0 9.0 419 ------- null} - -t 0.515952 -s 0 -d 9 -p ack -e 40 -c 0 -i 848 -a 0 -x {10.0 9.0 419 ------- null} h -t 0.515952 -s 0 -d 9 -p ack -e 40 -c 0 -i 848 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.516288 -s 10 -d 7 -p ack -e 40 -c 0 -i 852 -a 0 -x {10.0 9.0 421 ------- null} + -t 0.516288 -s 7 -d 0 -p ack -e 40 -c 0 -i 852 -a 0 -x {10.0 9.0 421 ------- null} h -t 0.516288 -s 7 -d 8 -p ack -e 40 -c 0 -i 852 -a 0 -x {10.0 9.0 421 ------- null} r -t 0.5164 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 851 -a 0 -x {9.0 10.0 430 ------- null} + -t 0.5164 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 851 -a 0 -x {9.0 10.0 430 ------- null} h -t 0.5164 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 851 -a 0 -x {9.0 10.0 430 ------- null} r -t 0.516432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 837 -a 0 -x {9.0 10.0 423 ------- null} + -t 0.516432 -s 10 -d 7 -p ack -e 40 -c 0 -i 856 -a 0 -x {10.0 9.0 423 ------- null} - -t 0.516432 -s 10 -d 7 -p ack -e 40 -c 0 -i 856 -a 0 -x {10.0 9.0 423 ------- null} h -t 0.516432 -s 10 -d 7 -p ack -e 40 -c 0 -i 856 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.516896 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 843 -a 0 -x {9.0 10.0 426 ------- null} - -t 0.516896 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 843 -a 0 -x {9.0 10.0 426 ------- null} h -t 0.516896 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 843 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.516976 -s 0 -d 9 -p ack -e 40 -c 0 -i 846 -a 0 -x {10.0 9.0 418 ------- null} + -t 0.516976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 857 -a 0 -x {9.0 10.0 433 ------- null} - -t 0.516976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 857 -a 0 -x {9.0 10.0 433 ------- null} h -t 0.516976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 857 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.517136 -s 0 -d 9 -p ack -e 40 -c 0 -i 850 -a 0 -x {10.0 9.0 420 ------- null} - -t 0.517136 -s 0 -d 9 -p ack -e 40 -c 0 -i 850 -a 0 -x {10.0 9.0 420 ------- null} h -t 0.517136 -s 0 -d 9 -p ack -e 40 -c 0 -i 850 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.517376 -s 10 -d 7 -p ack -e 40 -c 0 -i 854 -a 0 -x {10.0 9.0 422 ------- null} + -t 0.517376 -s 7 -d 0 -p ack -e 40 -c 0 -i 854 -a 0 -x {10.0 9.0 422 ------- null} h -t 0.517376 -s 7 -d 8 -p ack -e 40 -c 0 -i 854 -a 0 -x {10.0 9.0 422 ------- null} r -t 0.51752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 839 -a 0 -x {9.0 10.0 424 ------- null} + -t 0.51752 -s 10 -d 7 -p ack -e 40 -c 0 -i 858 -a 0 -x {10.0 9.0 424 ------- null} - -t 0.51752 -s 10 -d 7 -p ack -e 40 -c 0 -i 858 -a 0 -x {10.0 9.0 424 ------- null} h -t 0.51752 -s 10 -d 7 -p ack -e 40 -c 0 -i 858 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.517568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 853 -a 0 -x {9.0 10.0 431 ------- null} + -t 0.517568 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 853 -a 0 -x {9.0 10.0 431 ------- null} h -t 0.517568 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 853 -a 0 -x {9.0 10.0 431 ------- null} r -t 0.517984 -s 0 -d 9 -p ack -e 40 -c 0 -i 848 -a 0 -x {10.0 9.0 419 ------- null} + -t 0.517984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 859 -a 0 -x {9.0 10.0 434 ------- null} - -t 0.517984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 859 -a 0 -x {9.0 10.0 434 ------- null} h -t 0.517984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 859 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.517984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 845 -a 0 -x {9.0 10.0 427 ------- null} - -t 0.517984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 845 -a 0 -x {9.0 10.0 427 ------- null} h -t 0.517984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 845 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.518176 -s 0 -d 9 -p ack -e 40 -c 0 -i 852 -a 0 -x {10.0 9.0 421 ------- null} - -t 0.518176 -s 0 -d 9 -p ack -e 40 -c 0 -i 852 -a 0 -x {10.0 9.0 421 ------- null} h -t 0.518176 -s 0 -d 9 -p ack -e 40 -c 0 -i 852 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.518464 -s 10 -d 7 -p ack -e 40 -c 0 -i 856 -a 0 -x {10.0 9.0 423 ------- null} + -t 0.518464 -s 7 -d 0 -p ack -e 40 -c 0 -i 856 -a 0 -x {10.0 9.0 423 ------- null} h -t 0.518464 -s 7 -d 8 -p ack -e 40 -c 0 -i 856 -a 0 -x {10.0 9.0 423 ------- null} r -t 0.518608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 841 -a 0 -x {9.0 10.0 425 ------- null} + -t 0.518608 -s 10 -d 7 -p ack -e 40 -c 0 -i 860 -a 0 -x {10.0 9.0 425 ------- null} - -t 0.518608 -s 10 -d 7 -p ack -e 40 -c 0 -i 860 -a 0 -x {10.0 9.0 425 ------- null} h -t 0.518608 -s 10 -d 7 -p ack -e 40 -c 0 -i 860 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.518704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 855 -a 0 -x {9.0 10.0 432 ------- null} + -t 0.518704 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 855 -a 0 -x {9.0 10.0 432 ------- null} h -t 0.518704 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 855 -a 0 -x {9.0 10.0 432 ------- null} + -t 0.519072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 847 -a 0 -x {9.0 10.0 428 ------- null} - -t 0.519072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 847 -a 0 -x {9.0 10.0 428 ------- null} h -t 0.519072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 847 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.519168 -s 0 -d 9 -p ack -e 40 -c 0 -i 850 -a 0 -x {10.0 9.0 420 ------- null} + -t 0.519168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 861 -a 0 -x {9.0 10.0 435 ------- null} - -t 0.519168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 861 -a 0 -x {9.0 10.0 435 ------- null} h -t 0.519168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 861 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.519312 -s 0 -d 9 -p ack -e 40 -c 0 -i 854 -a 0 -x {10.0 9.0 422 ------- null} - -t 0.519312 -s 0 -d 9 -p ack -e 40 -c 0 -i 854 -a 0 -x {10.0 9.0 422 ------- null} h -t 0.519312 -s 0 -d 9 -p ack -e 40 -c 0 -i 854 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.519552 -s 10 -d 7 -p ack -e 40 -c 0 -i 858 -a 0 -x {10.0 9.0 424 ------- null} + -t 0.519552 -s 7 -d 0 -p ack -e 40 -c 0 -i 858 -a 0 -x {10.0 9.0 424 ------- null} h -t 0.519552 -s 7 -d 8 -p ack -e 40 -c 0 -i 858 -a 0 -x {10.0 9.0 424 ------- null} r -t 0.519696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 843 -a 0 -x {9.0 10.0 426 ------- null} + -t 0.519696 -s 10 -d 7 -p ack -e 40 -c 0 -i 862 -a 0 -x {10.0 9.0 426 ------- null} - -t 0.519696 -s 10 -d 7 -p ack -e 40 -c 0 -i 862 -a 0 -x {10.0 9.0 426 ------- null} h -t 0.519696 -s 10 -d 7 -p ack -e 40 -c 0 -i 862 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.519776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 857 -a 0 -x {9.0 10.0 433 ------- null} + -t 0.519776 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 857 -a 0 -x {9.0 10.0 433 ------- null} h -t 0.519776 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 857 -a 0 -x {9.0 10.0 433 ------- null} + -t 0.52016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 849 -a 0 -x {9.0 10.0 429 ------- null} - -t 0.52016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 849 -a 0 -x {9.0 10.0 429 ------- null} h -t 0.52016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 849 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.520208 -s 0 -d 9 -p ack -e 40 -c 0 -i 852 -a 0 -x {10.0 9.0 421 ------- null} + -t 0.520208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {9.0 10.0 436 ------- null} - -t 0.520208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {9.0 10.0 436 ------- null} h -t 0.520208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.520464 -s 0 -d 9 -p ack -e 40 -c 0 -i 856 -a 0 -x {10.0 9.0 423 ------- null} - -t 0.520464 -s 0 -d 9 -p ack -e 40 -c 0 -i 856 -a 0 -x {10.0 9.0 423 ------- null} h -t 0.520464 -s 0 -d 9 -p ack -e 40 -c 0 -i 856 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.52064 -s 10 -d 7 -p ack -e 40 -c 0 -i 860 -a 0 -x {10.0 9.0 425 ------- null} + -t 0.52064 -s 7 -d 0 -p ack -e 40 -c 0 -i 860 -a 0 -x {10.0 9.0 425 ------- null} h -t 0.52064 -s 7 -d 8 -p ack -e 40 -c 0 -i 860 -a 0 -x {10.0 9.0 425 ------- null} r -t 0.520784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 859 -a 0 -x {9.0 10.0 434 ------- null} + -t 0.520784 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 859 -a 0 -x {9.0 10.0 434 ------- null} h -t 0.520784 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 859 -a 0 -x {9.0 10.0 434 ------- null} r -t 0.520784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 845 -a 0 -x {9.0 10.0 427 ------- null} + -t 0.520784 -s 10 -d 7 -p ack -e 40 -c 0 -i 864 -a 0 -x {10.0 9.0 427 ------- null} - -t 0.520784 -s 10 -d 7 -p ack -e 40 -c 0 -i 864 -a 0 -x {10.0 9.0 427 ------- null} h -t 0.520784 -s 10 -d 7 -p ack -e 40 -c 0 -i 864 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.521296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 851 -a 0 -x {9.0 10.0 430 ------- null} - -t 0.521296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 851 -a 0 -x {9.0 10.0 430 ------- null} h -t 0.521296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 851 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.521344 -s 0 -d 9 -p ack -e 40 -c 0 -i 854 -a 0 -x {10.0 9.0 422 ------- null} + -t 0.521344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {9.0 10.0 437 ------- null} - -t 0.521344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {9.0 10.0 437 ------- null} h -t 0.521344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.5216 -s 0 -d 9 -p ack -e 40 -c 0 -i 858 -a 0 -x {10.0 9.0 424 ------- null} - -t 0.5216 -s 0 -d 9 -p ack -e 40 -c 0 -i 858 -a 0 -x {10.0 9.0 424 ------- null} h -t 0.5216 -s 0 -d 9 -p ack -e 40 -c 0 -i 858 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.521728 -s 10 -d 7 -p ack -e 40 -c 0 -i 862 -a 0 -x {10.0 9.0 426 ------- null} + -t 0.521728 -s 7 -d 0 -p ack -e 40 -c 0 -i 862 -a 0 -x {10.0 9.0 426 ------- null} h -t 0.521728 -s 7 -d 8 -p ack -e 40 -c 0 -i 862 -a 0 -x {10.0 9.0 426 ------- null} r -t 0.521872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 847 -a 0 -x {9.0 10.0 428 ------- null} + -t 0.521872 -s 10 -d 7 -p ack -e 40 -c 0 -i 866 -a 0 -x {10.0 9.0 428 ------- null} - -t 0.521872 -s 10 -d 7 -p ack -e 40 -c 0 -i 866 -a 0 -x {10.0 9.0 428 ------- null} h -t 0.521872 -s 10 -d 7 -p ack -e 40 -c 0 -i 866 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.521968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 861 -a 0 -x {9.0 10.0 435 ------- null} + -t 0.521968 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 861 -a 0 -x {9.0 10.0 435 ------- null} h -t 0.521968 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 861 -a 0 -x {9.0 10.0 435 ------- null} r -t 0.522496 -s 0 -d 9 -p ack -e 40 -c 0 -i 856 -a 0 -x {10.0 9.0 423 ------- null} + -t 0.522496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {9.0 10.0 438 ------- null} - -t 0.522496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {9.0 10.0 438 ------- null} h -t 0.522496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.52264 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 853 -a 0 -x {9.0 10.0 431 ------- null} - -t 0.52264 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 853 -a 0 -x {9.0 10.0 431 ------- null} h -t 0.52264 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 853 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.522784 -s 0 -d 9 -p ack -e 40 -c 0 -i 860 -a 0 -x {10.0 9.0 425 ------- null} - -t 0.522784 -s 0 -d 9 -p ack -e 40 -c 0 -i 860 -a 0 -x {10.0 9.0 425 ------- null} h -t 0.522784 -s 0 -d 9 -p ack -e 40 -c 0 -i 860 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.522816 -s 10 -d 7 -p ack -e 40 -c 0 -i 864 -a 0 -x {10.0 9.0 427 ------- null} + -t 0.522816 -s 7 -d 0 -p ack -e 40 -c 0 -i 864 -a 0 -x {10.0 9.0 427 ------- null} h -t 0.522816 -s 7 -d 8 -p ack -e 40 -c 0 -i 864 -a 0 -x {10.0 9.0 427 ------- null} r -t 0.52296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 849 -a 0 -x {9.0 10.0 429 ------- null} + -t 0.52296 -s 10 -d 7 -p ack -e 40 -c 0 -i 868 -a 0 -x {10.0 9.0 429 ------- null} - -t 0.52296 -s 10 -d 7 -p ack -e 40 -c 0 -i 868 -a 0 -x {10.0 9.0 429 ------- null} h -t 0.52296 -s 10 -d 7 -p ack -e 40 -c 0 -i 868 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.523008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {9.0 10.0 436 ------- null} + -t 0.523008 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {9.0 10.0 436 ------- null} h -t 0.523008 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {9.0 10.0 436 ------- null} r -t 0.523632 -s 0 -d 9 -p ack -e 40 -c 0 -i 858 -a 0 -x {10.0 9.0 424 ------- null} + -t 0.523632 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {9.0 10.0 439 ------- null} - -t 0.523632 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {9.0 10.0 439 ------- null} h -t 0.523632 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.523728 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 855 -a 0 -x {9.0 10.0 432 ------- null} - -t 0.523728 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 855 -a 0 -x {9.0 10.0 432 ------- null} h -t 0.523728 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 855 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.523792 -s 0 -d 9 -p ack -e 40 -c 0 -i 862 -a 0 -x {10.0 9.0 426 ------- null} - -t 0.523792 -s 0 -d 9 -p ack -e 40 -c 0 -i 862 -a 0 -x {10.0 9.0 426 ------- null} h -t 0.523792 -s 0 -d 9 -p ack -e 40 -c 0 -i 862 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.523904 -s 10 -d 7 -p ack -e 40 -c 0 -i 866 -a 0 -x {10.0 9.0 428 ------- null} + -t 0.523904 -s 7 -d 0 -p ack -e 40 -c 0 -i 866 -a 0 -x {10.0 9.0 428 ------- null} h -t 0.523904 -s 7 -d 8 -p ack -e 40 -c 0 -i 866 -a 0 -x {10.0 9.0 428 ------- null} r -t 0.524096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 851 -a 0 -x {9.0 10.0 430 ------- null} + -t 0.524096 -s 10 -d 7 -p ack -e 40 -c 0 -i 870 -a 0 -x {10.0 9.0 430 ------- null} - -t 0.524096 -s 10 -d 7 -p ack -e 40 -c 0 -i 870 -a 0 -x {10.0 9.0 430 ------- null} h -t 0.524096 -s 10 -d 7 -p ack -e 40 -c 0 -i 870 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.524144 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {9.0 10.0 437 ------- null} + -t 0.524144 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {9.0 10.0 437 ------- null} h -t 0.524144 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {9.0 10.0 437 ------- null} r -t 0.524816 -s 0 -d 9 -p ack -e 40 -c 0 -i 860 -a 0 -x {10.0 9.0 425 ------- null} + -t 0.524816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {9.0 10.0 440 ------- null} - -t 0.524816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {9.0 10.0 440 ------- null} h -t 0.524816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.524816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 857 -a 0 -x {9.0 10.0 433 ------- null} - -t 0.524816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 857 -a 0 -x {9.0 10.0 433 ------- null} h -t 0.524816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 857 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.52488 -s 0 -d 9 -p ack -e 40 -c 0 -i 864 -a 0 -x {10.0 9.0 427 ------- null} - -t 0.52488 -s 0 -d 9 -p ack -e 40 -c 0 -i 864 -a 0 -x {10.0 9.0 427 ------- null} h -t 0.52488 -s 0 -d 9 -p ack -e 40 -c 0 -i 864 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.524992 -s 10 -d 7 -p ack -e 40 -c 0 -i 868 -a 0 -x {10.0 9.0 429 ------- null} + -t 0.524992 -s 7 -d 0 -p ack -e 40 -c 0 -i 868 -a 0 -x {10.0 9.0 429 ------- null} h -t 0.524992 -s 7 -d 8 -p ack -e 40 -c 0 -i 868 -a 0 -x {10.0 9.0 429 ------- null} r -t 0.525296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {9.0 10.0 438 ------- null} + -t 0.525296 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {9.0 10.0 438 ------- null} h -t 0.525296 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {9.0 10.0 438 ------- null} r -t 0.52544 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 853 -a 0 -x {9.0 10.0 431 ------- null} + -t 0.52544 -s 10 -d 7 -p ack -e 40 -c 0 -i 872 -a 0 -x {10.0 9.0 431 ------- null} - -t 0.52544 -s 10 -d 7 -p ack -e 40 -c 0 -i 872 -a 0 -x {10.0 9.0 431 ------- null} h -t 0.52544 -s 10 -d 7 -p ack -e 40 -c 0 -i 872 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.525824 -s 0 -d 9 -p ack -e 40 -c 0 -i 862 -a 0 -x {10.0 9.0 426 ------- null} + -t 0.525824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {9.0 10.0 441 ------- null} - -t 0.525824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {9.0 10.0 441 ------- null} h -t 0.525824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.525904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 859 -a 0 -x {9.0 10.0 434 ------- null} - -t 0.525904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 859 -a 0 -x {9.0 10.0 434 ------- null} h -t 0.525904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 859 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.526064 -s 0 -d 9 -p ack -e 40 -c 0 -i 866 -a 0 -x {10.0 9.0 428 ------- null} - -t 0.526064 -s 0 -d 9 -p ack -e 40 -c 0 -i 866 -a 0 -x {10.0 9.0 428 ------- null} h -t 0.526064 -s 0 -d 9 -p ack -e 40 -c 0 -i 866 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.526128 -s 10 -d 7 -p ack -e 40 -c 0 -i 870 -a 0 -x {10.0 9.0 430 ------- null} + -t 0.526128 -s 7 -d 0 -p ack -e 40 -c 0 -i 870 -a 0 -x {10.0 9.0 430 ------- null} h -t 0.526128 -s 7 -d 8 -p ack -e 40 -c 0 -i 870 -a 0 -x {10.0 9.0 430 ------- null} r -t 0.526432 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {9.0 10.0 439 ------- null} + -t 0.526432 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {9.0 10.0 439 ------- null} h -t 0.526432 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {9.0 10.0 439 ------- null} r -t 0.526528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 855 -a 0 -x {9.0 10.0 432 ------- null} + -t 0.526528 -s 10 -d 7 -p ack -e 40 -c 0 -i 874 -a 0 -x {10.0 9.0 432 ------- null} - -t 0.526528 -s 10 -d 7 -p ack -e 40 -c 0 -i 874 -a 0 -x {10.0 9.0 432 ------- null} h -t 0.526528 -s 10 -d 7 -p ack -e 40 -c 0 -i 874 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.526912 -s 0 -d 9 -p ack -e 40 -c 0 -i 864 -a 0 -x {10.0 9.0 427 ------- null} + -t 0.526912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {9.0 10.0 442 ------- null} - -t 0.526912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {9.0 10.0 442 ------- null} h -t 0.526912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.526992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 861 -a 0 -x {9.0 10.0 435 ------- null} - -t 0.526992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 861 -a 0 -x {9.0 10.0 435 ------- null} h -t 0.526992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 861 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.527264 -s 0 -d 9 -p ack -e 40 -c 0 -i 868 -a 0 -x {10.0 9.0 429 ------- null} - -t 0.527264 -s 0 -d 9 -p ack -e 40 -c 0 -i 868 -a 0 -x {10.0 9.0 429 ------- null} h -t 0.527264 -s 0 -d 9 -p ack -e 40 -c 0 -i 868 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.527472 -s 10 -d 7 -p ack -e 40 -c 0 -i 872 -a 0 -x {10.0 9.0 431 ------- null} + -t 0.527472 -s 7 -d 0 -p ack -e 40 -c 0 -i 872 -a 0 -x {10.0 9.0 431 ------- null} h -t 0.527472 -s 7 -d 8 -p ack -e 40 -c 0 -i 872 -a 0 -x {10.0 9.0 431 ------- null} r -t 0.527616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {9.0 10.0 440 ------- null} + -t 0.527616 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {9.0 10.0 440 ------- null} h -t 0.527616 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {9.0 10.0 440 ------- null} r -t 0.527616 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 857 -a 0 -x {9.0 10.0 433 ------- null} + -t 0.527616 -s 10 -d 7 -p ack -e 40 -c 0 -i 876 -a 0 -x {10.0 9.0 433 ------- null} - -t 0.527616 -s 10 -d 7 -p ack -e 40 -c 0 -i 876 -a 0 -x {10.0 9.0 433 ------- null} h -t 0.527616 -s 10 -d 7 -p ack -e 40 -c 0 -i 876 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.528096 -s 0 -d 9 -p ack -e 40 -c 0 -i 866 -a 0 -x {10.0 9.0 428 ------- null} + -t 0.528096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {9.0 10.0 443 ------- null} - -t 0.528096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {9.0 10.0 443 ------- null} h -t 0.528096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.528272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {9.0 10.0 436 ------- null} - -t 0.528272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {9.0 10.0 436 ------- null} h -t 0.528272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.528432 -s 0 -d 9 -p ack -e 40 -c 0 -i 870 -a 0 -x {10.0 9.0 430 ------- null} - -t 0.528432 -s 0 -d 9 -p ack -e 40 -c 0 -i 870 -a 0 -x {10.0 9.0 430 ------- null} h -t 0.528432 -s 0 -d 9 -p ack -e 40 -c 0 -i 870 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.52856 -s 10 -d 7 -p ack -e 40 -c 0 -i 874 -a 0 -x {10.0 9.0 432 ------- null} + -t 0.52856 -s 7 -d 0 -p ack -e 40 -c 0 -i 874 -a 0 -x {10.0 9.0 432 ------- null} h -t 0.52856 -s 7 -d 8 -p ack -e 40 -c 0 -i 874 -a 0 -x {10.0 9.0 432 ------- null} r -t 0.528624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {9.0 10.0 441 ------- null} + -t 0.528624 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {9.0 10.0 441 ------- null} h -t 0.528624 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {9.0 10.0 441 ------- null} r -t 0.528704 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 859 -a 0 -x {9.0 10.0 434 ------- null} + -t 0.528704 -s 10 -d 7 -p ack -e 40 -c 0 -i 878 -a 0 -x {10.0 9.0 434 ------- null} - -t 0.528704 -s 10 -d 7 -p ack -e 40 -c 0 -i 878 -a 0 -x {10.0 9.0 434 ------- null} h -t 0.528704 -s 10 -d 7 -p ack -e 40 -c 0 -i 878 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.529296 -s 0 -d 9 -p ack -e 40 -c 0 -i 868 -a 0 -x {10.0 9.0 429 ------- null} + -t 0.529296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {9.0 10.0 444 ------- null} - -t 0.529296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {9.0 10.0 444 ------- null} h -t 0.529296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.52936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {9.0 10.0 437 ------- null} - -t 0.52936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {9.0 10.0 437 ------- null} h -t 0.52936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.529648 -s 10 -d 7 -p ack -e 40 -c 0 -i 876 -a 0 -x {10.0 9.0 433 ------- null} + -t 0.529648 -s 7 -d 0 -p ack -e 40 -c 0 -i 876 -a 0 -x {10.0 9.0 433 ------- null} h -t 0.529648 -s 7 -d 8 -p ack -e 40 -c 0 -i 876 -a 0 -x {10.0 9.0 433 ------- null} + -t 0.529664 -s 0 -d 9 -p ack -e 40 -c 0 -i 872 -a 0 -x {10.0 9.0 431 ------- null} - -t 0.529664 -s 0 -d 9 -p ack -e 40 -c 0 -i 872 -a 0 -x {10.0 9.0 431 ------- null} h -t 0.529664 -s 0 -d 9 -p ack -e 40 -c 0 -i 872 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.529712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {9.0 10.0 442 ------- null} + -t 0.529712 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {9.0 10.0 442 ------- null} h -t 0.529712 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {9.0 10.0 442 ------- null} r -t 0.529792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 861 -a 0 -x {9.0 10.0 435 ------- null} + -t 0.529792 -s 10 -d 7 -p ack -e 40 -c 0 -i 880 -a 0 -x {10.0 9.0 435 ------- null} - -t 0.529792 -s 10 -d 7 -p ack -e 40 -c 0 -i 880 -a 0 -x {10.0 9.0 435 ------- null} h -t 0.529792 -s 10 -d 7 -p ack -e 40 -c 0 -i 880 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.530464 -s 0 -d 9 -p ack -e 40 -c 0 -i 870 -a 0 -x {10.0 9.0 430 ------- null} + -t 0.530464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {9.0 10.0 445 ------- null} - -t 0.530464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {9.0 10.0 445 ------- null} h -t 0.530464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.530672 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {9.0 10.0 438 ------- null} - -t 0.530672 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {9.0 10.0 438 ------- null} h -t 0.530672 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.530736 -s 10 -d 7 -p ack -e 40 -c 0 -i 878 -a 0 -x {10.0 9.0 434 ------- null} + -t 0.530736 -s 7 -d 0 -p ack -e 40 -c 0 -i 878 -a 0 -x {10.0 9.0 434 ------- null} h -t 0.530736 -s 7 -d 8 -p ack -e 40 -c 0 -i 878 -a 0 -x {10.0 9.0 434 ------- null} r -t 0.530896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {9.0 10.0 443 ------- null} + -t 0.530896 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {9.0 10.0 443 ------- null} h -t 0.530896 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {9.0 10.0 443 ------- null} + -t 0.530896 -s 0 -d 9 -p ack -e 40 -c 0 -i 874 -a 0 -x {10.0 9.0 432 ------- null} - -t 0.530896 -s 0 -d 9 -p ack -e 40 -c 0 -i 874 -a 0 -x {10.0 9.0 432 ------- null} h -t 0.530896 -s 0 -d 9 -p ack -e 40 -c 0 -i 874 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.531072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 863 -a 0 -x {9.0 10.0 436 ------- null} + -t 0.531072 -s 10 -d 7 -p ack -e 40 -c 0 -i 882 -a 0 -x {10.0 9.0 436 ------- null} - -t 0.531072 -s 10 -d 7 -p ack -e 40 -c 0 -i 882 -a 0 -x {10.0 9.0 436 ------- null} h -t 0.531072 -s 10 -d 7 -p ack -e 40 -c 0 -i 882 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.531696 -s 0 -d 9 -p ack -e 40 -c 0 -i 872 -a 0 -x {10.0 9.0 431 ------- null} + -t 0.531696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 883 -a 0 -x {9.0 10.0 446 ------- null} - -t 0.531696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 883 -a 0 -x {9.0 10.0 446 ------- null} h -t 0.531696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 883 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.53176 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {9.0 10.0 439 ------- null} - -t 0.53176 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {9.0 10.0 439 ------- null} h -t 0.53176 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.531824 -s 10 -d 7 -p ack -e 40 -c 0 -i 880 -a 0 -x {10.0 9.0 435 ------- null} + -t 0.531824 -s 7 -d 0 -p ack -e 40 -c 0 -i 880 -a 0 -x {10.0 9.0 435 ------- null} h -t 0.531824 -s 7 -d 8 -p ack -e 40 -c 0 -i 880 -a 0 -x {10.0 9.0 435 ------- null} + -t 0.532032 -s 0 -d 9 -p ack -e 40 -c 0 -i 876 -a 0 -x {10.0 9.0 433 ------- null} - -t 0.532032 -s 0 -d 9 -p ack -e 40 -c 0 -i 876 -a 0 -x {10.0 9.0 433 ------- null} h -t 0.532032 -s 0 -d 9 -p ack -e 40 -c 0 -i 876 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.532096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {9.0 10.0 444 ------- null} + -t 0.532096 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {9.0 10.0 444 ------- null} h -t 0.532096 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {9.0 10.0 444 ------- null} r -t 0.53216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 865 -a 0 -x {9.0 10.0 437 ------- null} + -t 0.53216 -s 10 -d 7 -p ack -e 40 -c 0 -i 884 -a 0 -x {10.0 9.0 437 ------- null} - -t 0.53216 -s 10 -d 7 -p ack -e 40 -c 0 -i 884 -a 0 -x {10.0 9.0 437 ------- null} h -t 0.53216 -s 10 -d 7 -p ack -e 40 -c 0 -i 884 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.532928 -s 0 -d 9 -p ack -e 40 -c 0 -i 874 -a 0 -x {10.0 9.0 432 ------- null} + -t 0.532928 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 885 -a 0 -x {9.0 10.0 447 ------- null} - -t 0.532928 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 885 -a 0 -x {9.0 10.0 447 ------- null} h -t 0.532928 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 885 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.533104 -s 10 -d 7 -p ack -e 40 -c 0 -i 882 -a 0 -x {10.0 9.0 436 ------- null} + -t 0.533104 -s 7 -d 0 -p ack -e 40 -c 0 -i 882 -a 0 -x {10.0 9.0 436 ------- null} h -t 0.533104 -s 7 -d 8 -p ack -e 40 -c 0 -i 882 -a 0 -x {10.0 9.0 436 ------- null} + -t 0.533104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {9.0 10.0 440 ------- null} - -t 0.533104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {9.0 10.0 440 ------- null} h -t 0.533104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.533216 -s 0 -d 9 -p ack -e 40 -c 0 -i 878 -a 0 -x {10.0 9.0 434 ------- null} - -t 0.533216 -s 0 -d 9 -p ack -e 40 -c 0 -i 878 -a 0 -x {10.0 9.0 434 ------- null} h -t 0.533216 -s 0 -d 9 -p ack -e 40 -c 0 -i 878 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.533264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {9.0 10.0 445 ------- null} + -t 0.533264 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {9.0 10.0 445 ------- null} h -t 0.533264 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {9.0 10.0 445 ------- null} r -t 0.533472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 867 -a 0 -x {9.0 10.0 438 ------- null} + -t 0.533472 -s 10 -d 7 -p ack -e 40 -c 0 -i 886 -a 0 -x {10.0 9.0 438 ------- null} - -t 0.533472 -s 10 -d 7 -p ack -e 40 -c 0 -i 886 -a 0 -x {10.0 9.0 438 ------- null} h -t 0.533472 -s 10 -d 7 -p ack -e 40 -c 0 -i 886 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.534064 -s 0 -d 9 -p ack -e 40 -c 0 -i 876 -a 0 -x {10.0 9.0 433 ------- null} + -t 0.534064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 887 -a 0 -x {9.0 10.0 448 ------- null} - -t 0.534064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 887 -a 0 -x {9.0 10.0 448 ------- null} h -t 0.534064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 887 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.534192 -s 10 -d 7 -p ack -e 40 -c 0 -i 884 -a 0 -x {10.0 9.0 437 ------- null} + -t 0.534192 -s 7 -d 0 -p ack -e 40 -c 0 -i 884 -a 0 -x {10.0 9.0 437 ------- null} h -t 0.534192 -s 7 -d 8 -p ack -e 40 -c 0 -i 884 -a 0 -x {10.0 9.0 437 ------- null} + -t 0.534192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {9.0 10.0 441 ------- null} - -t 0.534192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {9.0 10.0 441 ------- null} h -t 0.534192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.534432 -s 0 -d 9 -p ack -e 40 -c 0 -i 880 -a 0 -x {10.0 9.0 435 ------- null} - -t 0.534432 -s 0 -d 9 -p ack -e 40 -c 0 -i 880 -a 0 -x {10.0 9.0 435 ------- null} h -t 0.534432 -s 0 -d 9 -p ack -e 40 -c 0 -i 880 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.534496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 883 -a 0 -x {9.0 10.0 446 ------- null} + -t 0.534496 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 883 -a 0 -x {9.0 10.0 446 ------- null} h -t 0.534496 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 883 -a 0 -x {9.0 10.0 446 ------- null} r -t 0.53456 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 869 -a 0 -x {9.0 10.0 439 ------- null} + -t 0.53456 -s 10 -d 7 -p ack -e 40 -c 0 -i 888 -a 0 -x {10.0 9.0 439 ------- null} - -t 0.53456 -s 10 -d 7 -p ack -e 40 -c 0 -i 888 -a 0 -x {10.0 9.0 439 ------- null} h -t 0.53456 -s 10 -d 7 -p ack -e 40 -c 0 -i 888 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.535248 -s 0 -d 9 -p ack -e 40 -c 0 -i 878 -a 0 -x {10.0 9.0 434 ------- null} + -t 0.535248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 889 -a 0 -x {9.0 10.0 449 ------- null} - -t 0.535248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 889 -a 0 -x {9.0 10.0 449 ------- null} h -t 0.535248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 889 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.53528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {9.0 10.0 442 ------- null} - -t 0.53528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {9.0 10.0 442 ------- null} h -t 0.53528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.535504 -s 10 -d 7 -p ack -e 40 -c 0 -i 886 -a 0 -x {10.0 9.0 438 ------- null} + -t 0.535504 -s 7 -d 0 -p ack -e 40 -c 0 -i 886 -a 0 -x {10.0 9.0 438 ------- null} h -t 0.535504 -s 7 -d 8 -p ack -e 40 -c 0 -i 886 -a 0 -x {10.0 9.0 438 ------- null} + -t 0.53552 -s 0 -d 9 -p ack -e 40 -c 0 -i 882 -a 0 -x {10.0 9.0 436 ------- null} - -t 0.53552 -s 0 -d 9 -p ack -e 40 -c 0 -i 882 -a 0 -x {10.0 9.0 436 ------- null} h -t 0.53552 -s 0 -d 9 -p ack -e 40 -c 0 -i 882 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.535728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 885 -a 0 -x {9.0 10.0 447 ------- null} + -t 0.535728 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 885 -a 0 -x {9.0 10.0 447 ------- null} h -t 0.535728 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 885 -a 0 -x {9.0 10.0 447 ------- null} r -t 0.535904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 871 -a 0 -x {9.0 10.0 440 ------- null} + -t 0.535904 -s 10 -d 7 -p ack -e 40 -c 0 -i 890 -a 0 -x {10.0 9.0 440 ------- null} - -t 0.535904 -s 10 -d 7 -p ack -e 40 -c 0 -i 890 -a 0 -x {10.0 9.0 440 ------- null} h -t 0.535904 -s 10 -d 7 -p ack -e 40 -c 0 -i 890 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.536368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {9.0 10.0 443 ------- null} - -t 0.536368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {9.0 10.0 443 ------- null} h -t 0.536368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.536464 -s 0 -d 9 -p ack -e 40 -c 0 -i 880 -a 0 -x {10.0 9.0 435 ------- null} + -t 0.536464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 891 -a 0 -x {9.0 10.0 450 ------- null} - -t 0.536464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 891 -a 0 -x {9.0 10.0 450 ------- null} h -t 0.536464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 891 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.536464 -s 0 -d 9 -p ack -e 40 -c 0 -i 884 -a 0 -x {10.0 9.0 437 ------- null} - -t 0.536464 -s 0 -d 9 -p ack -e 40 -c 0 -i 884 -a 0 -x {10.0 9.0 437 ------- null} h -t 0.536464 -s 0 -d 9 -p ack -e 40 -c 0 -i 884 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.536592 -s 10 -d 7 -p ack -e 40 -c 0 -i 888 -a 0 -x {10.0 9.0 439 ------- null} + -t 0.536592 -s 7 -d 0 -p ack -e 40 -c 0 -i 888 -a 0 -x {10.0 9.0 439 ------- null} h -t 0.536592 -s 7 -d 8 -p ack -e 40 -c 0 -i 888 -a 0 -x {10.0 9.0 439 ------- null} r -t 0.536864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 887 -a 0 -x {9.0 10.0 448 ------- null} + -t 0.536864 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 887 -a 0 -x {9.0 10.0 448 ------- null} h -t 0.536864 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 887 -a 0 -x {9.0 10.0 448 ------- null} r -t 0.536992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 873 -a 0 -x {9.0 10.0 441 ------- null} + -t 0.536992 -s 10 -d 7 -p ack -e 40 -c 0 -i 892 -a 0 -x {10.0 9.0 441 ------- null} - -t 0.536992 -s 10 -d 7 -p ack -e 40 -c 0 -i 892 -a 0 -x {10.0 9.0 441 ------- null} h -t 0.536992 -s 10 -d 7 -p ack -e 40 -c 0 -i 892 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.537456 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {9.0 10.0 444 ------- null} - -t 0.537456 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {9.0 10.0 444 ------- null} h -t 0.537456 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.537552 -s 0 -d 9 -p ack -e 40 -c 0 -i 882 -a 0 -x {10.0 9.0 436 ------- null} + -t 0.537552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 893 -a 0 -x {9.0 10.0 451 ------- null} - -t 0.537552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 893 -a 0 -x {9.0 10.0 451 ------- null} h -t 0.537552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 893 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.537712 -s 0 -d 9 -p ack -e 40 -c 0 -i 886 -a 0 -x {10.0 9.0 438 ------- null} - -t 0.537712 -s 0 -d 9 -p ack -e 40 -c 0 -i 886 -a 0 -x {10.0 9.0 438 ------- null} h -t 0.537712 -s 0 -d 9 -p ack -e 40 -c 0 -i 886 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.537936 -s 10 -d 7 -p ack -e 40 -c 0 -i 890 -a 0 -x {10.0 9.0 440 ------- null} + -t 0.537936 -s 7 -d 0 -p ack -e 40 -c 0 -i 890 -a 0 -x {10.0 9.0 440 ------- null} h -t 0.537936 -s 7 -d 8 -p ack -e 40 -c 0 -i 890 -a 0 -x {10.0 9.0 440 ------- null} r -t 0.538048 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 889 -a 0 -x {9.0 10.0 449 ------- null} + -t 0.538048 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 889 -a 0 -x {9.0 10.0 449 ------- null} h -t 0.538048 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 889 -a 0 -x {9.0 10.0 449 ------- null} r -t 0.53808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 875 -a 0 -x {9.0 10.0 442 ------- null} + -t 0.53808 -s 10 -d 7 -p ack -e 40 -c 0 -i 894 -a 0 -x {10.0 9.0 442 ------- null} - -t 0.53808 -s 10 -d 7 -p ack -e 40 -c 0 -i 894 -a 0 -x {10.0 9.0 442 ------- null} h -t 0.53808 -s 10 -d 7 -p ack -e 40 -c 0 -i 894 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.538496 -s 0 -d 9 -p ack -e 40 -c 0 -i 884 -a 0 -x {10.0 9.0 437 ------- null} + -t 0.538496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 895 -a 0 -x {9.0 10.0 452 ------- null} - -t 0.538496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 895 -a 0 -x {9.0 10.0 452 ------- null} h -t 0.538496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 895 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.538544 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {9.0 10.0 445 ------- null} - -t 0.538544 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {9.0 10.0 445 ------- null} h -t 0.538544 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.538832 -s 0 -d 9 -p ack -e 40 -c 0 -i 888 -a 0 -x {10.0 9.0 439 ------- null} - -t 0.538832 -s 0 -d 9 -p ack -e 40 -c 0 -i 888 -a 0 -x {10.0 9.0 439 ------- null} h -t 0.538832 -s 0 -d 9 -p ack -e 40 -c 0 -i 888 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.539024 -s 10 -d 7 -p ack -e 40 -c 0 -i 892 -a 0 -x {10.0 9.0 441 ------- null} + -t 0.539024 -s 7 -d 0 -p ack -e 40 -c 0 -i 892 -a 0 -x {10.0 9.0 441 ------- null} h -t 0.539024 -s 7 -d 8 -p ack -e 40 -c 0 -i 892 -a 0 -x {10.0 9.0 441 ------- null} r -t 0.539168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 877 -a 0 -x {9.0 10.0 443 ------- null} + -t 0.539168 -s 10 -d 7 -p ack -e 40 -c 0 -i 896 -a 0 -x {10.0 9.0 443 ------- null} - -t 0.539168 -s 10 -d 7 -p ack -e 40 -c 0 -i 896 -a 0 -x {10.0 9.0 443 ------- null} h -t 0.539168 -s 10 -d 7 -p ack -e 40 -c 0 -i 896 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.539264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 891 -a 0 -x {9.0 10.0 450 ------- null} + -t 0.539264 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 891 -a 0 -x {9.0 10.0 450 ------- null} h -t 0.539264 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 891 -a 0 -x {9.0 10.0 450 ------- null} + -t 0.539712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 883 -a 0 -x {9.0 10.0 446 ------- null} - -t 0.539712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 883 -a 0 -x {9.0 10.0 446 ------- null} h -t 0.539712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 883 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.539744 -s 0 -d 9 -p ack -e 40 -c 0 -i 886 -a 0 -x {10.0 9.0 438 ------- null} + -t 0.539744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 897 -a 0 -x {9.0 10.0 453 ------- null} - -t 0.539744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 897 -a 0 -x {9.0 10.0 453 ------- null} h -t 0.539744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 897 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.539968 -s 0 -d 9 -p ack -e 40 -c 0 -i 890 -a 0 -x {10.0 9.0 440 ------- null} - -t 0.539968 -s 0 -d 9 -p ack -e 40 -c 0 -i 890 -a 0 -x {10.0 9.0 440 ------- null} h -t 0.539968 -s 0 -d 9 -p ack -e 40 -c 0 -i 890 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.540112 -s 10 -d 7 -p ack -e 40 -c 0 -i 894 -a 0 -x {10.0 9.0 442 ------- null} + -t 0.540112 -s 7 -d 0 -p ack -e 40 -c 0 -i 894 -a 0 -x {10.0 9.0 442 ------- null} h -t 0.540112 -s 7 -d 8 -p ack -e 40 -c 0 -i 894 -a 0 -x {10.0 9.0 442 ------- null} r -t 0.540256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 879 -a 0 -x {9.0 10.0 444 ------- null} + -t 0.540256 -s 10 -d 7 -p ack -e 40 -c 0 -i 898 -a 0 -x {10.0 9.0 444 ------- null} - -t 0.540256 -s 10 -d 7 -p ack -e 40 -c 0 -i 898 -a 0 -x {10.0 9.0 444 ------- null} h -t 0.540256 -s 10 -d 7 -p ack -e 40 -c 0 -i 898 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.540352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 893 -a 0 -x {9.0 10.0 451 ------- null} + -t 0.540352 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 893 -a 0 -x {9.0 10.0 451 ------- null} h -t 0.540352 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 893 -a 0 -x {9.0 10.0 451 ------- null} + -t 0.5408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 885 -a 0 -x {9.0 10.0 447 ------- null} - -t 0.5408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 885 -a 0 -x {9.0 10.0 447 ------- null} h -t 0.5408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 885 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.540864 -s 0 -d 9 -p ack -e 40 -c 0 -i 888 -a 0 -x {10.0 9.0 439 ------- null} + -t 0.540864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 899 -a 0 -x {9.0 10.0 454 ------- null} - -t 0.540864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 899 -a 0 -x {9.0 10.0 454 ------- null} h -t 0.540864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 899 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.541008 -s 0 -d 9 -p ack -e 40 -c 0 -i 892 -a 0 -x {10.0 9.0 441 ------- null} - -t 0.541008 -s 0 -d 9 -p ack -e 40 -c 0 -i 892 -a 0 -x {10.0 9.0 441 ------- null} h -t 0.541008 -s 0 -d 9 -p ack -e 40 -c 0 -i 892 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.5412 -s 10 -d 7 -p ack -e 40 -c 0 -i 896 -a 0 -x {10.0 9.0 443 ------- null} + -t 0.5412 -s 7 -d 0 -p ack -e 40 -c 0 -i 896 -a 0 -x {10.0 9.0 443 ------- null} h -t 0.5412 -s 7 -d 8 -p ack -e 40 -c 0 -i 896 -a 0 -x {10.0 9.0 443 ------- null} r -t 0.541296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 895 -a 0 -x {9.0 10.0 452 ------- null} + -t 0.541296 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 895 -a 0 -x {9.0 10.0 452 ------- null} h -t 0.541296 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 895 -a 0 -x {9.0 10.0 452 ------- null} r -t 0.541344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 881 -a 0 -x {9.0 10.0 445 ------- null} + -t 0.541344 -s 10 -d 7 -p ack -e 40 -c 0 -i 900 -a 0 -x {10.0 9.0 445 ------- null} - -t 0.541344 -s 10 -d 7 -p ack -e 40 -c 0 -i 900 -a 0 -x {10.0 9.0 445 ------- null} h -t 0.541344 -s 10 -d 7 -p ack -e 40 -c 0 -i 900 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.541888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 887 -a 0 -x {9.0 10.0 448 ------- null} - -t 0.541888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 887 -a 0 -x {9.0 10.0 448 ------- null} h -t 0.541888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 887 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.542 -s 0 -d 9 -p ack -e 40 -c 0 -i 890 -a 0 -x {10.0 9.0 440 ------- null} + -t 0.542 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 901 -a 0 -x {9.0 10.0 455 ------- null} - -t 0.542 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 901 -a 0 -x {9.0 10.0 455 ------- null} h -t 0.542 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 901 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.542096 -s 0 -d 9 -p ack -e 40 -c 0 -i 894 -a 0 -x {10.0 9.0 442 ------- null} - -t 0.542096 -s 0 -d 9 -p ack -e 40 -c 0 -i 894 -a 0 -x {10.0 9.0 442 ------- null} h -t 0.542096 -s 0 -d 9 -p ack -e 40 -c 0 -i 894 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.542288 -s 10 -d 7 -p ack -e 40 -c 0 -i 898 -a 0 -x {10.0 9.0 444 ------- null} + -t 0.542288 -s 7 -d 0 -p ack -e 40 -c 0 -i 898 -a 0 -x {10.0 9.0 444 ------- null} h -t 0.542288 -s 7 -d 8 -p ack -e 40 -c 0 -i 898 -a 0 -x {10.0 9.0 444 ------- null} r -t 0.542512 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 883 -a 0 -x {9.0 10.0 446 ------- null} + -t 0.542512 -s 10 -d 7 -p ack -e 40 -c 0 -i 902 -a 0 -x {10.0 9.0 446 ------- null} - -t 0.542512 -s 10 -d 7 -p ack -e 40 -c 0 -i 902 -a 0 -x {10.0 9.0 446 ------- null} h -t 0.542512 -s 10 -d 7 -p ack -e 40 -c 0 -i 902 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.542544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 897 -a 0 -x {9.0 10.0 453 ------- null} + -t 0.542544 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 897 -a 0 -x {9.0 10.0 453 ------- null} h -t 0.542544 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 897 -a 0 -x {9.0 10.0 453 ------- null} + -t 0.542976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 889 -a 0 -x {9.0 10.0 449 ------- null} - -t 0.542976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 889 -a 0 -x {9.0 10.0 449 ------- null} h -t 0.542976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 889 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.54304 -s 0 -d 9 -p ack -e 40 -c 0 -i 892 -a 0 -x {10.0 9.0 441 ------- null} + -t 0.54304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {9.0 10.0 456 ------- null} - -t 0.54304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {9.0 10.0 456 ------- null} h -t 0.54304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.54312 -s 0 -d 9 -p ack -e 40 -c 0 -i 896 -a 0 -x {10.0 9.0 443 ------- null} - -t 0.54312 -s 0 -d 9 -p ack -e 40 -c 0 -i 896 -a 0 -x {10.0 9.0 443 ------- null} h -t 0.54312 -s 0 -d 9 -p ack -e 40 -c 0 -i 896 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.543376 -s 10 -d 7 -p ack -e 40 -c 0 -i 900 -a 0 -x {10.0 9.0 445 ------- null} + -t 0.543376 -s 7 -d 0 -p ack -e 40 -c 0 -i 900 -a 0 -x {10.0 9.0 445 ------- null} h -t 0.543376 -s 7 -d 8 -p ack -e 40 -c 0 -i 900 -a 0 -x {10.0 9.0 445 ------- null} r -t 0.5436 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 885 -a 0 -x {9.0 10.0 447 ------- null} + -t 0.5436 -s 10 -d 7 -p ack -e 40 -c 0 -i 904 -a 0 -x {10.0 9.0 447 ------- null} - -t 0.5436 -s 10 -d 7 -p ack -e 40 -c 0 -i 904 -a 0 -x {10.0 9.0 447 ------- null} h -t 0.5436 -s 10 -d 7 -p ack -e 40 -c 0 -i 904 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.543664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 899 -a 0 -x {9.0 10.0 454 ------- null} + -t 0.543664 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 899 -a 0 -x {9.0 10.0 454 ------- null} h -t 0.543664 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 899 -a 0 -x {9.0 10.0 454 ------- null} + -t 0.544064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 891 -a 0 -x {9.0 10.0 450 ------- null} - -t 0.544064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 891 -a 0 -x {9.0 10.0 450 ------- null} h -t 0.544064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 891 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.544128 -s 0 -d 9 -p ack -e 40 -c 0 -i 894 -a 0 -x {10.0 9.0 442 ------- null} + -t 0.544128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {9.0 10.0 457 ------- null} - -t 0.544128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {9.0 10.0 457 ------- null} h -t 0.544128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.544368 -s 0 -d 9 -p ack -e 40 -c 0 -i 898 -a 0 -x {10.0 9.0 444 ------- null} - -t 0.544368 -s 0 -d 9 -p ack -e 40 -c 0 -i 898 -a 0 -x {10.0 9.0 444 ------- null} h -t 0.544368 -s 0 -d 9 -p ack -e 40 -c 0 -i 898 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.544544 -s 10 -d 7 -p ack -e 40 -c 0 -i 902 -a 0 -x {10.0 9.0 446 ------- null} + -t 0.544544 -s 7 -d 0 -p ack -e 40 -c 0 -i 902 -a 0 -x {10.0 9.0 446 ------- null} h -t 0.544544 -s 7 -d 8 -p ack -e 40 -c 0 -i 902 -a 0 -x {10.0 9.0 446 ------- null} r -t 0.544688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 887 -a 0 -x {9.0 10.0 448 ------- null} + -t 0.544688 -s 10 -d 7 -p ack -e 40 -c 0 -i 906 -a 0 -x {10.0 9.0 448 ------- null} - -t 0.544688 -s 10 -d 7 -p ack -e 40 -c 0 -i 906 -a 0 -x {10.0 9.0 448 ------- null} h -t 0.544688 -s 10 -d 7 -p ack -e 40 -c 0 -i 906 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.5448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 901 -a 0 -x {9.0 10.0 455 ------- null} + -t 0.5448 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 901 -a 0 -x {9.0 10.0 455 ------- null} h -t 0.5448 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 901 -a 0 -x {9.0 10.0 455 ------- null} r -t 0.545152 -s 0 -d 9 -p ack -e 40 -c 0 -i 896 -a 0 -x {10.0 9.0 443 ------- null} + -t 0.545152 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {9.0 10.0 458 ------- null} - -t 0.545152 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {9.0 10.0 458 ------- null} h -t 0.545152 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.545264 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 893 -a 0 -x {9.0 10.0 451 ------- null} - -t 0.545264 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 893 -a 0 -x {9.0 10.0 451 ------- null} h -t 0.545264 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 893 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.54552 -s 0 -d 9 -p ack -e 40 -c 0 -i 900 -a 0 -x {10.0 9.0 445 ------- null} - -t 0.54552 -s 0 -d 9 -p ack -e 40 -c 0 -i 900 -a 0 -x {10.0 9.0 445 ------- null} h -t 0.54552 -s 0 -d 9 -p ack -e 40 -c 0 -i 900 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.545632 -s 10 -d 7 -p ack -e 40 -c 0 -i 904 -a 0 -x {10.0 9.0 447 ------- null} + -t 0.545632 -s 7 -d 0 -p ack -e 40 -c 0 -i 904 -a 0 -x {10.0 9.0 447 ------- null} h -t 0.545632 -s 7 -d 8 -p ack -e 40 -c 0 -i 904 -a 0 -x {10.0 9.0 447 ------- null} r -t 0.545776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 889 -a 0 -x {9.0 10.0 449 ------- null} + -t 0.545776 -s 10 -d 7 -p ack -e 40 -c 0 -i 908 -a 0 -x {10.0 9.0 449 ------- null} - -t 0.545776 -s 10 -d 7 -p ack -e 40 -c 0 -i 908 -a 0 -x {10.0 9.0 449 ------- null} h -t 0.545776 -s 10 -d 7 -p ack -e 40 -c 0 -i 908 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.54584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {9.0 10.0 456 ------- null} + -t 0.54584 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {9.0 10.0 456 ------- null} h -t 0.54584 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {9.0 10.0 456 ------- null} + -t 0.546352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 895 -a 0 -x {9.0 10.0 452 ------- null} - -t 0.546352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 895 -a 0 -x {9.0 10.0 452 ------- null} h -t 0.546352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 895 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.5464 -s 0 -d 9 -p ack -e 40 -c 0 -i 898 -a 0 -x {10.0 9.0 444 ------- null} + -t 0.5464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {9.0 10.0 459 ------- null} - -t 0.5464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {9.0 10.0 459 ------- null} h -t 0.5464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.546544 -s 0 -d 9 -p ack -e 40 -c 0 -i 902 -a 0 -x {10.0 9.0 446 ------- null} - -t 0.546544 -s 0 -d 9 -p ack -e 40 -c 0 -i 902 -a 0 -x {10.0 9.0 446 ------- null} h -t 0.546544 -s 0 -d 9 -p ack -e 40 -c 0 -i 902 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.54672 -s 10 -d 7 -p ack -e 40 -c 0 -i 906 -a 0 -x {10.0 9.0 448 ------- null} + -t 0.54672 -s 7 -d 0 -p ack -e 40 -c 0 -i 906 -a 0 -x {10.0 9.0 448 ------- null} h -t 0.54672 -s 7 -d 8 -p ack -e 40 -c 0 -i 906 -a 0 -x {10.0 9.0 448 ------- null} r -t 0.546864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 891 -a 0 -x {9.0 10.0 450 ------- null} + -t 0.546864 -s 10 -d 7 -p ack -e 40 -c 0 -i 910 -a 0 -x {10.0 9.0 450 ------- null} - -t 0.546864 -s 10 -d 7 -p ack -e 40 -c 0 -i 910 -a 0 -x {10.0 9.0 450 ------- null} h -t 0.546864 -s 10 -d 7 -p ack -e 40 -c 0 -i 910 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.546928 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {9.0 10.0 457 ------- null} + -t 0.546928 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {9.0 10.0 457 ------- null} h -t 0.546928 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {9.0 10.0 457 ------- null} + -t 0.54744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 897 -a 0 -x {9.0 10.0 453 ------- null} - -t 0.54744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 897 -a 0 -x {9.0 10.0 453 ------- null} h -t 0.54744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 897 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.547552 -s 0 -d 9 -p ack -e 40 -c 0 -i 900 -a 0 -x {10.0 9.0 445 ------- null} + -t 0.547552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {9.0 10.0 460 ------- null} - -t 0.547552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {9.0 10.0 460 ------- null} h -t 0.547552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.547648 -s 0 -d 9 -p ack -e 40 -c 0 -i 904 -a 0 -x {10.0 9.0 447 ------- null} - -t 0.547648 -s 0 -d 9 -p ack -e 40 -c 0 -i 904 -a 0 -x {10.0 9.0 447 ------- null} h -t 0.547648 -s 0 -d 9 -p ack -e 40 -c 0 -i 904 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.547808 -s 10 -d 7 -p ack -e 40 -c 0 -i 908 -a 0 -x {10.0 9.0 449 ------- null} + -t 0.547808 -s 7 -d 0 -p ack -e 40 -c 0 -i 908 -a 0 -x {10.0 9.0 449 ------- null} h -t 0.547808 -s 7 -d 8 -p ack -e 40 -c 0 -i 908 -a 0 -x {10.0 9.0 449 ------- null} r -t 0.547952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {9.0 10.0 458 ------- null} + -t 0.547952 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {9.0 10.0 458 ------- null} h -t 0.547952 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {9.0 10.0 458 ------- null} r -t 0.548064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 893 -a 0 -x {9.0 10.0 451 ------- null} + -t 0.548064 -s 10 -d 7 -p ack -e 40 -c 0 -i 912 -a 0 -x {10.0 9.0 451 ------- null} - -t 0.548064 -s 10 -d 7 -p ack -e 40 -c 0 -i 912 -a 0 -x {10.0 9.0 451 ------- null} h -t 0.548064 -s 10 -d 7 -p ack -e 40 -c 0 -i 912 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.548528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 899 -a 0 -x {9.0 10.0 454 ------- null} - -t 0.548528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 899 -a 0 -x {9.0 10.0 454 ------- null} h -t 0.548528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 899 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.548576 -s 0 -d 9 -p ack -e 40 -c 0 -i 902 -a 0 -x {10.0 9.0 446 ------- null} + -t 0.548576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {9.0 10.0 461 ------- null} - -t 0.548576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {9.0 10.0 461 ------- null} h -t 0.548576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.548704 -s 0 -d 9 -p ack -e 40 -c 0 -i 906 -a 0 -x {10.0 9.0 448 ------- null} - -t 0.548704 -s 0 -d 9 -p ack -e 40 -c 0 -i 906 -a 0 -x {10.0 9.0 448 ------- null} h -t 0.548704 -s 0 -d 9 -p ack -e 40 -c 0 -i 906 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.548896 -s 10 -d 7 -p ack -e 40 -c 0 -i 910 -a 0 -x {10.0 9.0 450 ------- null} + -t 0.548896 -s 7 -d 0 -p ack -e 40 -c 0 -i 910 -a 0 -x {10.0 9.0 450 ------- null} h -t 0.548896 -s 7 -d 8 -p ack -e 40 -c 0 -i 910 -a 0 -x {10.0 9.0 450 ------- null} r -t 0.549152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 895 -a 0 -x {9.0 10.0 452 ------- null} + -t 0.549152 -s 10 -d 7 -p ack -e 40 -c 0 -i 914 -a 0 -x {10.0 9.0 452 ------- null} - -t 0.549152 -s 10 -d 7 -p ack -e 40 -c 0 -i 914 -a 0 -x {10.0 9.0 452 ------- null} h -t 0.549152 -s 10 -d 7 -p ack -e 40 -c 0 -i 914 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.5492 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {9.0 10.0 459 ------- null} + -t 0.5492 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {9.0 10.0 459 ------- null} h -t 0.5492 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {9.0 10.0 459 ------- null} + -t 0.549616 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 901 -a 0 -x {9.0 10.0 455 ------- null} - -t 0.549616 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 901 -a 0 -x {9.0 10.0 455 ------- null} h -t 0.549616 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 901 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.54968 -s 0 -d 9 -p ack -e 40 -c 0 -i 904 -a 0 -x {10.0 9.0 447 ------- null} + -t 0.54968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {9.0 10.0 462 ------- null} - -t 0.54968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {9.0 10.0 462 ------- null} h -t 0.54968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.549904 -s 0 -d 9 -p ack -e 40 -c 0 -i 908 -a 0 -x {10.0 9.0 449 ------- null} - -t 0.549904 -s 0 -d 9 -p ack -e 40 -c 0 -i 908 -a 0 -x {10.0 9.0 449 ------- null} h -t 0.549904 -s 0 -d 9 -p ack -e 40 -c 0 -i 908 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.550096 -s 10 -d 7 -p ack -e 40 -c 0 -i 912 -a 0 -x {10.0 9.0 451 ------- null} + -t 0.550096 -s 7 -d 0 -p ack -e 40 -c 0 -i 912 -a 0 -x {10.0 9.0 451 ------- null} h -t 0.550096 -s 7 -d 8 -p ack -e 40 -c 0 -i 912 -a 0 -x {10.0 9.0 451 ------- null} r -t 0.55024 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 897 -a 0 -x {9.0 10.0 453 ------- null} + -t 0.55024 -s 10 -d 7 -p ack -e 40 -c 0 -i 916 -a 0 -x {10.0 9.0 453 ------- null} - -t 0.55024 -s 10 -d 7 -p ack -e 40 -c 0 -i 916 -a 0 -x {10.0 9.0 453 ------- null} h -t 0.55024 -s 10 -d 7 -p ack -e 40 -c 0 -i 916 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.550352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {9.0 10.0 460 ------- null} + -t 0.550352 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {9.0 10.0 460 ------- null} h -t 0.550352 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {9.0 10.0 460 ------- null} r -t 0.550736 -s 0 -d 9 -p ack -e 40 -c 0 -i 906 -a 0 -x {10.0 9.0 448 ------- null} + -t 0.550736 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {9.0 10.0 463 ------- null} - -t 0.550736 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {9.0 10.0 463 ------- null} h -t 0.550736 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.550736 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {9.0 10.0 456 ------- null} - -t 0.550736 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {9.0 10.0 456 ------- null} h -t 0.550736 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.550816 -s 0 -d 9 -p ack -e 40 -c 0 -i 910 -a 0 -x {10.0 9.0 450 ------- null} - -t 0.550816 -s 0 -d 9 -p ack -e 40 -c 0 -i 910 -a 0 -x {10.0 9.0 450 ------- null} h -t 0.550816 -s 0 -d 9 -p ack -e 40 -c 0 -i 910 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.551184 -s 10 -d 7 -p ack -e 40 -c 0 -i 914 -a 0 -x {10.0 9.0 452 ------- null} + -t 0.551184 -s 7 -d 0 -p ack -e 40 -c 0 -i 914 -a 0 -x {10.0 9.0 452 ------- null} h -t 0.551184 -s 7 -d 8 -p ack -e 40 -c 0 -i 914 -a 0 -x {10.0 9.0 452 ------- null} r -t 0.551328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 899 -a 0 -x {9.0 10.0 454 ------- null} + -t 0.551328 -s 10 -d 7 -p ack -e 40 -c 0 -i 918 -a 0 -x {10.0 9.0 454 ------- null} - -t 0.551328 -s 10 -d 7 -p ack -e 40 -c 0 -i 918 -a 0 -x {10.0 9.0 454 ------- null} h -t 0.551328 -s 10 -d 7 -p ack -e 40 -c 0 -i 918 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.551376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {9.0 10.0 461 ------- null} + -t 0.551376 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {9.0 10.0 461 ------- null} h -t 0.551376 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {9.0 10.0 461 ------- null} + -t 0.551824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {9.0 10.0 457 ------- null} - -t 0.551824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {9.0 10.0 457 ------- null} h -t 0.551824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.551936 -s 0 -d 9 -p ack -e 40 -c 0 -i 908 -a 0 -x {10.0 9.0 449 ------- null} + -t 0.551936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {9.0 10.0 464 ------- null} - -t 0.551936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {9.0 10.0 464 ------- null} h -t 0.551936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.551968 -s 0 -d 9 -p ack -e 40 -c 0 -i 912 -a 0 -x {10.0 9.0 451 ------- null} - -t 0.551968 -s 0 -d 9 -p ack -e 40 -c 0 -i 912 -a 0 -x {10.0 9.0 451 ------- null} h -t 0.551968 -s 0 -d 9 -p ack -e 40 -c 0 -i 912 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.552272 -s 10 -d 7 -p ack -e 40 -c 0 -i 916 -a 0 -x {10.0 9.0 453 ------- null} + -t 0.552272 -s 7 -d 0 -p ack -e 40 -c 0 -i 916 -a 0 -x {10.0 9.0 453 ------- null} h -t 0.552272 -s 7 -d 8 -p ack -e 40 -c 0 -i 916 -a 0 -x {10.0 9.0 453 ------- null} r -t 0.552416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 901 -a 0 -x {9.0 10.0 455 ------- null} + -t 0.552416 -s 10 -d 7 -p ack -e 40 -c 0 -i 920 -a 0 -x {10.0 9.0 455 ------- null} - -t 0.552416 -s 10 -d 7 -p ack -e 40 -c 0 -i 920 -a 0 -x {10.0 9.0 455 ------- null} h -t 0.552416 -s 10 -d 7 -p ack -e 40 -c 0 -i 920 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.55248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {9.0 10.0 462 ------- null} + -t 0.55248 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {9.0 10.0 462 ------- null} h -t 0.55248 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {9.0 10.0 462 ------- null} r -t 0.552848 -s 0 -d 9 -p ack -e 40 -c 0 -i 910 -a 0 -x {10.0 9.0 450 ------- null} + -t 0.552848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {9.0 10.0 465 ------- null} - -t 0.552848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {9.0 10.0 465 ------- null} h -t 0.552848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.552912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {9.0 10.0 458 ------- null} - -t 0.552912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {9.0 10.0 458 ------- null} h -t 0.552912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.553056 -s 0 -d 9 -p ack -e 40 -c 0 -i 914 -a 0 -x {10.0 9.0 452 ------- null} - -t 0.553056 -s 0 -d 9 -p ack -e 40 -c 0 -i 914 -a 0 -x {10.0 9.0 452 ------- null} h -t 0.553056 -s 0 -d 9 -p ack -e 40 -c 0 -i 914 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.55336 -s 10 -d 7 -p ack -e 40 -c 0 -i 918 -a 0 -x {10.0 9.0 454 ------- null} + -t 0.55336 -s 7 -d 0 -p ack -e 40 -c 0 -i 918 -a 0 -x {10.0 9.0 454 ------- null} h -t 0.55336 -s 7 -d 8 -p ack -e 40 -c 0 -i 918 -a 0 -x {10.0 9.0 454 ------- null} r -t 0.553536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {9.0 10.0 463 ------- null} + -t 0.553536 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {9.0 10.0 463 ------- null} h -t 0.553536 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {9.0 10.0 463 ------- null} r -t 0.553536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 903 -a 0 -x {9.0 10.0 456 ------- null} + -t 0.553536 -s 10 -d 7 -p ack -e 40 -c 0 -i 922 -a 0 -x {10.0 9.0 456 ------- null} - -t 0.553536 -s 10 -d 7 -p ack -e 40 -c 0 -i 922 -a 0 -x {10.0 9.0 456 ------- null} h -t 0.553536 -s 10 -d 7 -p ack -e 40 -c 0 -i 922 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.554 -s 0 -d 9 -p ack -e 40 -c 0 -i 912 -a 0 -x {10.0 9.0 451 ------- null} + -t 0.554 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 923 -a 0 -x {9.0 10.0 466 ------- null} - -t 0.554 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 923 -a 0 -x {9.0 10.0 466 ------- null} h -t 0.554 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 923 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.554 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {9.0 10.0 459 ------- null} - -t 0.554 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {9.0 10.0 459 ------- null} h -t 0.554 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.554064 -s 0 -d 9 -p ack -e 40 -c 0 -i 916 -a 0 -x {10.0 9.0 453 ------- null} - -t 0.554064 -s 0 -d 9 -p ack -e 40 -c 0 -i 916 -a 0 -x {10.0 9.0 453 ------- null} h -t 0.554064 -s 0 -d 9 -p ack -e 40 -c 0 -i 916 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.554448 -s 10 -d 7 -p ack -e 40 -c 0 -i 920 -a 0 -x {10.0 9.0 455 ------- null} + -t 0.554448 -s 7 -d 0 -p ack -e 40 -c 0 -i 920 -a 0 -x {10.0 9.0 455 ------- null} h -t 0.554448 -s 7 -d 8 -p ack -e 40 -c 0 -i 920 -a 0 -x {10.0 9.0 455 ------- null} r -t 0.554624 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 905 -a 0 -x {9.0 10.0 457 ------- null} + -t 0.554624 -s 10 -d 7 -p ack -e 40 -c 0 -i 924 -a 0 -x {10.0 9.0 457 ------- null} - -t 0.554624 -s 10 -d 7 -p ack -e 40 -c 0 -i 924 -a 0 -x {10.0 9.0 457 ------- null} h -t 0.554624 -s 10 -d 7 -p ack -e 40 -c 0 -i 924 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.554736 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {9.0 10.0 464 ------- null} + -t 0.554736 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {9.0 10.0 464 ------- null} h -t 0.554736 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {9.0 10.0 464 ------- null} r -t 0.555088 -s 0 -d 9 -p ack -e 40 -c 0 -i 914 -a 0 -x {10.0 9.0 452 ------- null} + -t 0.555088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 925 -a 0 -x {9.0 10.0 467 ------- null} - -t 0.555088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 925 -a 0 -x {9.0 10.0 467 ------- null} h -t 0.555088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 925 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.555088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {9.0 10.0 460 ------- null} - -t 0.555088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {9.0 10.0 460 ------- null} h -t 0.555088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.555264 -s 0 -d 9 -p ack -e 40 -c 0 -i 918 -a 0 -x {10.0 9.0 454 ------- null} - -t 0.555264 -s 0 -d 9 -p ack -e 40 -c 0 -i 918 -a 0 -x {10.0 9.0 454 ------- null} h -t 0.555264 -s 0 -d 9 -p ack -e 40 -c 0 -i 918 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.555568 -s 10 -d 7 -p ack -e 40 -c 0 -i 922 -a 0 -x {10.0 9.0 456 ------- null} + -t 0.555568 -s 7 -d 0 -p ack -e 40 -c 0 -i 922 -a 0 -x {10.0 9.0 456 ------- null} h -t 0.555568 -s 7 -d 8 -p ack -e 40 -c 0 -i 922 -a 0 -x {10.0 9.0 456 ------- null} r -t 0.555648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {9.0 10.0 465 ------- null} + -t 0.555648 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {9.0 10.0 465 ------- null} h -t 0.555648 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {9.0 10.0 465 ------- null} r -t 0.555712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 907 -a 0 -x {9.0 10.0 458 ------- null} + -t 0.555712 -s 10 -d 7 -p ack -e 40 -c 0 -i 926 -a 0 -x {10.0 9.0 458 ------- null} - -t 0.555712 -s 10 -d 7 -p ack -e 40 -c 0 -i 926 -a 0 -x {10.0 9.0 458 ------- null} h -t 0.555712 -s 10 -d 7 -p ack -e 40 -c 0 -i 926 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.556096 -s 0 -d 9 -p ack -e 40 -c 0 -i 916 -a 0 -x {10.0 9.0 453 ------- null} + -t 0.556096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 927 -a 0 -x {9.0 10.0 468 ------- null} - -t 0.556096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 927 -a 0 -x {9.0 10.0 468 ------- null} h -t 0.556096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 927 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.556176 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {9.0 10.0 461 ------- null} - -t 0.556176 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {9.0 10.0 461 ------- null} h -t 0.556176 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.556256 -s 0 -d 9 -p ack -e 40 -c 0 -i 920 -a 0 -x {10.0 9.0 455 ------- null} - -t 0.556256 -s 0 -d 9 -p ack -e 40 -c 0 -i 920 -a 0 -x {10.0 9.0 455 ------- null} h -t 0.556256 -s 0 -d 9 -p ack -e 40 -c 0 -i 920 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.556656 -s 10 -d 7 -p ack -e 40 -c 0 -i 924 -a 0 -x {10.0 9.0 457 ------- null} + -t 0.556656 -s 7 -d 0 -p ack -e 40 -c 0 -i 924 -a 0 -x {10.0 9.0 457 ------- null} h -t 0.556656 -s 7 -d 8 -p ack -e 40 -c 0 -i 924 -a 0 -x {10.0 9.0 457 ------- null} r -t 0.5568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 923 -a 0 -x {9.0 10.0 466 ------- null} + -t 0.5568 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 923 -a 0 -x {9.0 10.0 466 ------- null} h -t 0.5568 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 923 -a 0 -x {9.0 10.0 466 ------- null} r -t 0.5568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 909 -a 0 -x {9.0 10.0 459 ------- null} + -t 0.5568 -s 10 -d 7 -p ack -e 40 -c 0 -i 928 -a 0 -x {10.0 9.0 459 ------- null} - -t 0.5568 -s 10 -d 7 -p ack -e 40 -c 0 -i 928 -a 0 -x {10.0 9.0 459 ------- null} h -t 0.5568 -s 10 -d 7 -p ack -e 40 -c 0 -i 928 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.557264 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {9.0 10.0 462 ------- null} - -t 0.557264 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {9.0 10.0 462 ------- null} h -t 0.557264 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.557296 -s 0 -d 9 -p ack -e 40 -c 0 -i 918 -a 0 -x {10.0 9.0 454 ------- null} + -t 0.557296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 929 -a 0 -x {9.0 10.0 469 ------- null} - -t 0.557296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 929 -a 0 -x {9.0 10.0 469 ------- null} h -t 0.557296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 929 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.557472 -s 0 -d 9 -p ack -e 40 -c 0 -i 922 -a 0 -x {10.0 9.0 456 ------- null} - -t 0.557472 -s 0 -d 9 -p ack -e 40 -c 0 -i 922 -a 0 -x {10.0 9.0 456 ------- null} h -t 0.557472 -s 0 -d 9 -p ack -e 40 -c 0 -i 922 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.557744 -s 10 -d 7 -p ack -e 40 -c 0 -i 926 -a 0 -x {10.0 9.0 458 ------- null} + -t 0.557744 -s 7 -d 0 -p ack -e 40 -c 0 -i 926 -a 0 -x {10.0 9.0 458 ------- null} h -t 0.557744 -s 7 -d 8 -p ack -e 40 -c 0 -i 926 -a 0 -x {10.0 9.0 458 ------- null} r -t 0.557888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 925 -a 0 -x {9.0 10.0 467 ------- null} + -t 0.557888 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 925 -a 0 -x {9.0 10.0 467 ------- null} h -t 0.557888 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 925 -a 0 -x {9.0 10.0 467 ------- null} r -t 0.557888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 911 -a 0 -x {9.0 10.0 460 ------- null} + -t 0.557888 -s 10 -d 7 -p ack -e 40 -c 0 -i 930 -a 0 -x {10.0 9.0 460 ------- null} - -t 0.557888 -s 10 -d 7 -p ack -e 40 -c 0 -i 930 -a 0 -x {10.0 9.0 460 ------- null} h -t 0.557888 -s 10 -d 7 -p ack -e 40 -c 0 -i 930 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.558288 -s 0 -d 9 -p ack -e 40 -c 0 -i 920 -a 0 -x {10.0 9.0 455 ------- null} + -t 0.558288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 931 -a 0 -x {9.0 10.0 470 ------- null} - -t 0.558288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 931 -a 0 -x {9.0 10.0 470 ------- null} h -t 0.558288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 931 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.558352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {9.0 10.0 463 ------- null} - -t 0.558352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {9.0 10.0 463 ------- null} h -t 0.558352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.558464 -s 0 -d 9 -p ack -e 40 -c 0 -i 924 -a 0 -x {10.0 9.0 457 ------- null} - -t 0.558464 -s 0 -d 9 -p ack -e 40 -c 0 -i 924 -a 0 -x {10.0 9.0 457 ------- null} h -t 0.558464 -s 0 -d 9 -p ack -e 40 -c 0 -i 924 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.558832 -s 10 -d 7 -p ack -e 40 -c 0 -i 928 -a 0 -x {10.0 9.0 459 ------- null} + -t 0.558832 -s 7 -d 0 -p ack -e 40 -c 0 -i 928 -a 0 -x {10.0 9.0 459 ------- null} h -t 0.558832 -s 7 -d 8 -p ack -e 40 -c 0 -i 928 -a 0 -x {10.0 9.0 459 ------- null} r -t 0.558896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 927 -a 0 -x {9.0 10.0 468 ------- null} + -t 0.558896 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 927 -a 0 -x {9.0 10.0 468 ------- null} h -t 0.558896 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 927 -a 0 -x {9.0 10.0 468 ------- null} r -t 0.558976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 913 -a 0 -x {9.0 10.0 461 ------- null} + -t 0.558976 -s 10 -d 7 -p ack -e 40 -c 0 -i 932 -a 0 -x {10.0 9.0 461 ------- null} - -t 0.558976 -s 10 -d 7 -p ack -e 40 -c 0 -i 932 -a 0 -x {10.0 9.0 461 ------- null} h -t 0.558976 -s 10 -d 7 -p ack -e 40 -c 0 -i 932 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.55944 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {9.0 10.0 464 ------- null} - -t 0.55944 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {9.0 10.0 464 ------- null} h -t 0.55944 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.559504 -s 0 -d 9 -p ack -e 40 -c 0 -i 922 -a 0 -x {10.0 9.0 456 ------- null} + -t 0.559504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 933 -a 0 -x {9.0 10.0 471 ------- null} - -t 0.559504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 933 -a 0 -x {9.0 10.0 471 ------- null} h -t 0.559504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 933 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.559504 -s 0 -d 9 -p ack -e 40 -c 0 -i 926 -a 0 -x {10.0 9.0 458 ------- null} - -t 0.559504 -s 0 -d 9 -p ack -e 40 -c 0 -i 926 -a 0 -x {10.0 9.0 458 ------- null} h -t 0.559504 -s 0 -d 9 -p ack -e 40 -c 0 -i 926 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.55992 -s 10 -d 7 -p ack -e 40 -c 0 -i 930 -a 0 -x {10.0 9.0 460 ------- null} + -t 0.55992 -s 7 -d 0 -p ack -e 40 -c 0 -i 930 -a 0 -x {10.0 9.0 460 ------- null} h -t 0.55992 -s 7 -d 8 -p ack -e 40 -c 0 -i 930 -a 0 -x {10.0 9.0 460 ------- null} r -t 0.560064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 915 -a 0 -x {9.0 10.0 462 ------- null} + -t 0.560064 -s 10 -d 7 -p ack -e 40 -c 0 -i 934 -a 0 -x {10.0 9.0 462 ------- null} - -t 0.560064 -s 10 -d 7 -p ack -e 40 -c 0 -i 934 -a 0 -x {10.0 9.0 462 ------- null} h -t 0.560064 -s 10 -d 7 -p ack -e 40 -c 0 -i 934 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.560096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 929 -a 0 -x {9.0 10.0 469 ------- null} + -t 0.560096 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 929 -a 0 -x {9.0 10.0 469 ------- null} h -t 0.560096 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 929 -a 0 -x {9.0 10.0 469 ------- null} r -t 0.560496 -s 0 -d 9 -p ack -e 40 -c 0 -i 924 -a 0 -x {10.0 9.0 457 ------- null} + -t 0.560496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 935 -a 0 -x {9.0 10.0 472 ------- null} - -t 0.560496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 935 -a 0 -x {9.0 10.0 472 ------- null} h -t 0.560496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 935 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.560528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {9.0 10.0 465 ------- null} - -t 0.560528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {9.0 10.0 465 ------- null} h -t 0.560528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.56072 -s 0 -d 9 -p ack -e 40 -c 0 -i 928 -a 0 -x {10.0 9.0 459 ------- null} - -t 0.56072 -s 0 -d 9 -p ack -e 40 -c 0 -i 928 -a 0 -x {10.0 9.0 459 ------- null} h -t 0.56072 -s 0 -d 9 -p ack -e 40 -c 0 -i 928 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.561008 -s 10 -d 7 -p ack -e 40 -c 0 -i 932 -a 0 -x {10.0 9.0 461 ------- null} + -t 0.561008 -s 7 -d 0 -p ack -e 40 -c 0 -i 932 -a 0 -x {10.0 9.0 461 ------- null} h -t 0.561008 -s 7 -d 8 -p ack -e 40 -c 0 -i 932 -a 0 -x {10.0 9.0 461 ------- null} r -t 0.561088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 931 -a 0 -x {9.0 10.0 470 ------- null} + -t 0.561088 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 931 -a 0 -x {9.0 10.0 470 ------- null} h -t 0.561088 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 931 -a 0 -x {9.0 10.0 470 ------- null} r -t 0.561152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 917 -a 0 -x {9.0 10.0 463 ------- null} + -t 0.561152 -s 10 -d 7 -p ack -e 40 -c 0 -i 936 -a 0 -x {10.0 9.0 463 ------- null} - -t 0.561152 -s 10 -d 7 -p ack -e 40 -c 0 -i 936 -a 0 -x {10.0 9.0 463 ------- null} h -t 0.561152 -s 10 -d 7 -p ack -e 40 -c 0 -i 936 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.561536 -s 0 -d 9 -p ack -e 40 -c 0 -i 926 -a 0 -x {10.0 9.0 458 ------- null} + -t 0.561536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 937 -a 0 -x {9.0 10.0 473 ------- null} - -t 0.561536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 937 -a 0 -x {9.0 10.0 473 ------- null} h -t 0.561536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 937 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.561616 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 923 -a 0 -x {9.0 10.0 466 ------- null} - -t 0.561616 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 923 -a 0 -x {9.0 10.0 466 ------- null} h -t 0.561616 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 923 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.56176 -s 0 -d 9 -p ack -e 40 -c 0 -i 930 -a 0 -x {10.0 9.0 460 ------- null} - -t 0.56176 -s 0 -d 9 -p ack -e 40 -c 0 -i 930 -a 0 -x {10.0 9.0 460 ------- null} h -t 0.56176 -s 0 -d 9 -p ack -e 40 -c 0 -i 930 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.562096 -s 10 -d 7 -p ack -e 40 -c 0 -i 934 -a 0 -x {10.0 9.0 462 ------- null} + -t 0.562096 -s 7 -d 0 -p ack -e 40 -c 0 -i 934 -a 0 -x {10.0 9.0 462 ------- null} h -t 0.562096 -s 7 -d 8 -p ack -e 40 -c 0 -i 934 -a 0 -x {10.0 9.0 462 ------- null} r -t 0.56224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 919 -a 0 -x {9.0 10.0 464 ------- null} + -t 0.56224 -s 10 -d 7 -p ack -e 40 -c 0 -i 938 -a 0 -x {10.0 9.0 464 ------- null} - -t 0.56224 -s 10 -d 7 -p ack -e 40 -c 0 -i 938 -a 0 -x {10.0 9.0 464 ------- null} h -t 0.56224 -s 10 -d 7 -p ack -e 40 -c 0 -i 938 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.562304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 933 -a 0 -x {9.0 10.0 471 ------- null} + -t 0.562304 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 933 -a 0 -x {9.0 10.0 471 ------- null} h -t 0.562304 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 933 -a 0 -x {9.0 10.0 471 ------- null} + -t 0.562704 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 925 -a 0 -x {9.0 10.0 467 ------- null} - -t 0.562704 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 925 -a 0 -x {9.0 10.0 467 ------- null} h -t 0.562704 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 925 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.562752 -s 0 -d 9 -p ack -e 40 -c 0 -i 928 -a 0 -x {10.0 9.0 459 ------- null} + -t 0.562752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 939 -a 0 -x {9.0 10.0 474 ------- null} - -t 0.562752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 939 -a 0 -x {9.0 10.0 474 ------- null} h -t 0.562752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 939 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.562768 -s 0 -d 9 -p ack -e 40 -c 0 -i 932 -a 0 -x {10.0 9.0 461 ------- null} - -t 0.562768 -s 0 -d 9 -p ack -e 40 -c 0 -i 932 -a 0 -x {10.0 9.0 461 ------- null} h -t 0.562768 -s 0 -d 9 -p ack -e 40 -c 0 -i 932 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.563184 -s 10 -d 7 -p ack -e 40 -c 0 -i 936 -a 0 -x {10.0 9.0 463 ------- null} + -t 0.563184 -s 7 -d 0 -p ack -e 40 -c 0 -i 936 -a 0 -x {10.0 9.0 463 ------- null} h -t 0.563184 -s 7 -d 8 -p ack -e 40 -c 0 -i 936 -a 0 -x {10.0 9.0 463 ------- null} r -t 0.563296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 935 -a 0 -x {9.0 10.0 472 ------- null} + -t 0.563296 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 935 -a 0 -x {9.0 10.0 472 ------- null} h -t 0.563296 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 935 -a 0 -x {9.0 10.0 472 ------- null} r -t 0.563328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 921 -a 0 -x {9.0 10.0 465 ------- null} + -t 0.563328 -s 10 -d 7 -p ack -e 40 -c 0 -i 940 -a 0 -x {10.0 9.0 465 ------- null} - -t 0.563328 -s 10 -d 7 -p ack -e 40 -c 0 -i 940 -a 0 -x {10.0 9.0 465 ------- null} h -t 0.563328 -s 10 -d 7 -p ack -e 40 -c 0 -i 940 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.563792 -s 0 -d 9 -p ack -e 40 -c 0 -i 930 -a 0 -x {10.0 9.0 460 ------- null} + -t 0.563792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 941 -a 0 -x {9.0 10.0 475 ------- null} - -t 0.563792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 941 -a 0 -x {9.0 10.0 475 ------- null} h -t 0.563792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 941 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.563792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 927 -a 0 -x {9.0 10.0 468 ------- null} - -t 0.563792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 927 -a 0 -x {9.0 10.0 468 ------- null} h -t 0.563792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 927 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.563968 -s 0 -d 9 -p ack -e 40 -c 0 -i 934 -a 0 -x {10.0 9.0 462 ------- null} - -t 0.563968 -s 0 -d 9 -p ack -e 40 -c 0 -i 934 -a 0 -x {10.0 9.0 462 ------- null} h -t 0.563968 -s 0 -d 9 -p ack -e 40 -c 0 -i 934 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.564272 -s 10 -d 7 -p ack -e 40 -c 0 -i 938 -a 0 -x {10.0 9.0 464 ------- null} + -t 0.564272 -s 7 -d 0 -p ack -e 40 -c 0 -i 938 -a 0 -x {10.0 9.0 464 ------- null} h -t 0.564272 -s 7 -d 8 -p ack -e 40 -c 0 -i 938 -a 0 -x {10.0 9.0 464 ------- null} r -t 0.564336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 937 -a 0 -x {9.0 10.0 473 ------- null} + -t 0.564336 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 937 -a 0 -x {9.0 10.0 473 ------- null} h -t 0.564336 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 937 -a 0 -x {9.0 10.0 473 ------- null} r -t 0.564416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 923 -a 0 -x {9.0 10.0 466 ------- null} + -t 0.564416 -s 10 -d 7 -p ack -e 40 -c 0 -i 942 -a 0 -x {10.0 9.0 466 ------- null} - -t 0.564416 -s 10 -d 7 -p ack -e 40 -c 0 -i 942 -a 0 -x {10.0 9.0 466 ------- null} h -t 0.564416 -s 10 -d 7 -p ack -e 40 -c 0 -i 942 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.5648 -s 0 -d 9 -p ack -e 40 -c 0 -i 932 -a 0 -x {10.0 9.0 461 ------- null} + -t 0.5648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {9.0 10.0 476 ------- null} - -t 0.5648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {9.0 10.0 476 ------- null} h -t 0.5648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.56488 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 929 -a 0 -x {9.0 10.0 469 ------- null} - -t 0.56488 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 929 -a 0 -x {9.0 10.0 469 ------- null} h -t 0.56488 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 929 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.565152 -s 0 -d 9 -p ack -e 40 -c 0 -i 936 -a 0 -x {10.0 9.0 463 ------- null} - -t 0.565152 -s 0 -d 9 -p ack -e 40 -c 0 -i 936 -a 0 -x {10.0 9.0 463 ------- null} h -t 0.565152 -s 0 -d 9 -p ack -e 40 -c 0 -i 936 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.56536 -s 10 -d 7 -p ack -e 40 -c 0 -i 940 -a 0 -x {10.0 9.0 465 ------- null} + -t 0.56536 -s 7 -d 0 -p ack -e 40 -c 0 -i 940 -a 0 -x {10.0 9.0 465 ------- null} h -t 0.56536 -s 7 -d 8 -p ack -e 40 -c 0 -i 940 -a 0 -x {10.0 9.0 465 ------- null} r -t 0.565504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 925 -a 0 -x {9.0 10.0 467 ------- null} + -t 0.565504 -s 10 -d 7 -p ack -e 40 -c 0 -i 944 -a 0 -x {10.0 9.0 467 ------- null} - -t 0.565504 -s 10 -d 7 -p ack -e 40 -c 0 -i 944 -a 0 -x {10.0 9.0 467 ------- null} h -t 0.565504 -s 10 -d 7 -p ack -e 40 -c 0 -i 944 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.565552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 939 -a 0 -x {9.0 10.0 474 ------- null} + -t 0.565552 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 939 -a 0 -x {9.0 10.0 474 ------- null} h -t 0.565552 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 939 -a 0 -x {9.0 10.0 474 ------- null} r -t 0.566 -s 0 -d 9 -p ack -e 40 -c 0 -i 934 -a 0 -x {10.0 9.0 462 ------- null} + -t 0.566 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {9.0 10.0 477 ------- null} - -t 0.566 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {9.0 10.0 477 ------- null} h -t 0.566 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.566176 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 931 -a 0 -x {9.0 10.0 470 ------- null} - -t 0.566176 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 931 -a 0 -x {9.0 10.0 470 ------- null} h -t 0.566176 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 931 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.566448 -s 10 -d 7 -p ack -e 40 -c 0 -i 942 -a 0 -x {10.0 9.0 466 ------- null} + -t 0.566448 -s 7 -d 0 -p ack -e 40 -c 0 -i 942 -a 0 -x {10.0 9.0 466 ------- null} h -t 0.566448 -s 7 -d 8 -p ack -e 40 -c 0 -i 942 -a 0 -x {10.0 9.0 466 ------- null} + -t 0.566464 -s 0 -d 9 -p ack -e 40 -c 0 -i 938 -a 0 -x {10.0 9.0 464 ------- null} - -t 0.566464 -s 0 -d 9 -p ack -e 40 -c 0 -i 938 -a 0 -x {10.0 9.0 464 ------- null} h -t 0.566464 -s 0 -d 9 -p ack -e 40 -c 0 -i 938 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.566592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 941 -a 0 -x {9.0 10.0 475 ------- null} + -t 0.566592 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 941 -a 0 -x {9.0 10.0 475 ------- null} h -t 0.566592 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 941 -a 0 -x {9.0 10.0 475 ------- null} r -t 0.566592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 927 -a 0 -x {9.0 10.0 468 ------- null} + -t 0.566592 -s 10 -d 7 -p ack -e 40 -c 0 -i 946 -a 0 -x {10.0 9.0 468 ------- null} - -t 0.566592 -s 10 -d 7 -p ack -e 40 -c 0 -i 946 -a 0 -x {10.0 9.0 468 ------- null} h -t 0.566592 -s 10 -d 7 -p ack -e 40 -c 0 -i 946 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.567184 -s 0 -d 9 -p ack -e 40 -c 0 -i 936 -a 0 -x {10.0 9.0 463 ------- null} + -t 0.567184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {9.0 10.0 478 ------- null} - -t 0.567184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {9.0 10.0 478 ------- null} h -t 0.567184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.567424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 933 -a 0 -x {9.0 10.0 471 ------- null} - -t 0.567424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 933 -a 0 -x {9.0 10.0 471 ------- null} h -t 0.567424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 933 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.567536 -s 10 -d 7 -p ack -e 40 -c 0 -i 944 -a 0 -x {10.0 9.0 467 ------- null} + -t 0.567536 -s 7 -d 0 -p ack -e 40 -c 0 -i 944 -a 0 -x {10.0 9.0 467 ------- null} h -t 0.567536 -s 7 -d 8 -p ack -e 40 -c 0 -i 944 -a 0 -x {10.0 9.0 467 ------- null} r -t 0.5676 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {9.0 10.0 476 ------- null} + -t 0.5676 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {9.0 10.0 476 ------- null} h -t 0.5676 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {9.0 10.0 476 ------- null} + -t 0.567648 -s 0 -d 9 -p ack -e 40 -c 0 -i 940 -a 0 -x {10.0 9.0 465 ------- null} - -t 0.567648 -s 0 -d 9 -p ack -e 40 -c 0 -i 940 -a 0 -x {10.0 9.0 465 ------- null} h -t 0.567648 -s 0 -d 9 -p ack -e 40 -c 0 -i 940 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.56768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 929 -a 0 -x {9.0 10.0 469 ------- null} + -t 0.56768 -s 10 -d 7 -p ack -e 40 -c 0 -i 948 -a 0 -x {10.0 9.0 469 ------- null} - -t 0.56768 -s 10 -d 7 -p ack -e 40 -c 0 -i 948 -a 0 -x {10.0 9.0 469 ------- null} h -t 0.56768 -s 10 -d 7 -p ack -e 40 -c 0 -i 948 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.568496 -s 0 -d 9 -p ack -e 40 -c 0 -i 938 -a 0 -x {10.0 9.0 464 ------- null} + -t 0.568496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {9.0 10.0 479 ------- null} - -t 0.568496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {9.0 10.0 479 ------- null} h -t 0.568496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.568512 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 935 -a 0 -x {9.0 10.0 472 ------- null} - -t 0.568512 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 935 -a 0 -x {9.0 10.0 472 ------- null} h -t 0.568512 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 935 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.568624 -s 10 -d 7 -p ack -e 40 -c 0 -i 946 -a 0 -x {10.0 9.0 468 ------- null} + -t 0.568624 -s 7 -d 0 -p ack -e 40 -c 0 -i 946 -a 0 -x {10.0 9.0 468 ------- null} h -t 0.568624 -s 7 -d 8 -p ack -e 40 -c 0 -i 946 -a 0 -x {10.0 9.0 468 ------- null} + -t 0.568752 -s 0 -d 9 -p ack -e 40 -c 0 -i 942 -a 0 -x {10.0 9.0 466 ------- null} - -t 0.568752 -s 0 -d 9 -p ack -e 40 -c 0 -i 942 -a 0 -x {10.0 9.0 466 ------- null} h -t 0.568752 -s 0 -d 9 -p ack -e 40 -c 0 -i 942 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.5688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {9.0 10.0 477 ------- null} + -t 0.5688 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {9.0 10.0 477 ------- null} h -t 0.5688 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {9.0 10.0 477 ------- null} r -t 0.568976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 931 -a 0 -x {9.0 10.0 470 ------- null} + -t 0.568976 -s 10 -d 7 -p ack -e 40 -c 0 -i 950 -a 0 -x {10.0 9.0 470 ------- null} - -t 0.568976 -s 10 -d 7 -p ack -e 40 -c 0 -i 950 -a 0 -x {10.0 9.0 470 ------- null} h -t 0.568976 -s 10 -d 7 -p ack -e 40 -c 0 -i 950 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.5696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 937 -a 0 -x {9.0 10.0 473 ------- null} - -t 0.5696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 937 -a 0 -x {9.0 10.0 473 ------- null} h -t 0.5696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 937 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.56968 -s 0 -d 9 -p ack -e 40 -c 0 -i 940 -a 0 -x {10.0 9.0 465 ------- null} + -t 0.56968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {9.0 10.0 480 ------- null} - -t 0.56968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {9.0 10.0 480 ------- null} h -t 0.56968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.569712 -s 10 -d 7 -p ack -e 40 -c 0 -i 948 -a 0 -x {10.0 9.0 469 ------- null} + -t 0.569712 -s 7 -d 0 -p ack -e 40 -c 0 -i 948 -a 0 -x {10.0 9.0 469 ------- null} h -t 0.569712 -s 7 -d 8 -p ack -e 40 -c 0 -i 948 -a 0 -x {10.0 9.0 469 ------- null} + -t 0.569792 -s 0 -d 9 -p ack -e 40 -c 0 -i 944 -a 0 -x {10.0 9.0 467 ------- null} - -t 0.569792 -s 0 -d 9 -p ack -e 40 -c 0 -i 944 -a 0 -x {10.0 9.0 467 ------- null} h -t 0.569792 -s 0 -d 9 -p ack -e 40 -c 0 -i 944 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.569984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {9.0 10.0 478 ------- null} + -t 0.569984 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {9.0 10.0 478 ------- null} h -t 0.569984 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {9.0 10.0 478 ------- null} r -t 0.570224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 933 -a 0 -x {9.0 10.0 471 ------- null} + -t 0.570224 -s 10 -d 7 -p ack -e 40 -c 0 -i 952 -a 0 -x {10.0 9.0 471 ------- null} - -t 0.570224 -s 10 -d 7 -p ack -e 40 -c 0 -i 952 -a 0 -x {10.0 9.0 471 ------- null} h -t 0.570224 -s 10 -d 7 -p ack -e 40 -c 0 -i 952 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.570688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 939 -a 0 -x {9.0 10.0 474 ------- null} - -t 0.570688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 939 -a 0 -x {9.0 10.0 474 ------- null} h -t 0.570688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 939 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.570784 -s 0 -d 9 -p ack -e 40 -c 0 -i 942 -a 0 -x {10.0 9.0 466 ------- null} + -t 0.570784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {9.0 10.0 481 ------- null} - -t 0.570784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {9.0 10.0 481 ------- null} h -t 0.570784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.57088 -s 0 -d 9 -p ack -e 40 -c 0 -i 946 -a 0 -x {10.0 9.0 468 ------- null} - -t 0.57088 -s 0 -d 9 -p ack -e 40 -c 0 -i 946 -a 0 -x {10.0 9.0 468 ------- null} h -t 0.57088 -s 0 -d 9 -p ack -e 40 -c 0 -i 946 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.571008 -s 10 -d 7 -p ack -e 40 -c 0 -i 950 -a 0 -x {10.0 9.0 470 ------- null} + -t 0.571008 -s 7 -d 0 -p ack -e 40 -c 0 -i 950 -a 0 -x {10.0 9.0 470 ------- null} h -t 0.571008 -s 7 -d 8 -p ack -e 40 -c 0 -i 950 -a 0 -x {10.0 9.0 470 ------- null} r -t 0.571296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {9.0 10.0 479 ------- null} + -t 0.571296 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {9.0 10.0 479 ------- null} h -t 0.571296 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {9.0 10.0 479 ------- null} r -t 0.571312 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 935 -a 0 -x {9.0 10.0 472 ------- null} + -t 0.571312 -s 10 -d 7 -p ack -e 40 -c 0 -i 954 -a 0 -x {10.0 9.0 472 ------- null} - -t 0.571312 -s 10 -d 7 -p ack -e 40 -c 0 -i 954 -a 0 -x {10.0 9.0 472 ------- null} h -t 0.571312 -s 10 -d 7 -p ack -e 40 -c 0 -i 954 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.571776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 941 -a 0 -x {9.0 10.0 475 ------- null} - -t 0.571776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 941 -a 0 -x {9.0 10.0 475 ------- null} h -t 0.571776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 941 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.571824 -s 0 -d 9 -p ack -e 40 -c 0 -i 944 -a 0 -x {10.0 9.0 467 ------- null} + -t 0.571824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {9.0 10.0 482 ------- null} - -t 0.571824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {9.0 10.0 482 ------- null} h -t 0.571824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.571952 -s 0 -d 9 -p ack -e 40 -c 0 -i 948 -a 0 -x {10.0 9.0 469 ------- null} - -t 0.571952 -s 0 -d 9 -p ack -e 40 -c 0 -i 948 -a 0 -x {10.0 9.0 469 ------- null} h -t 0.571952 -s 0 -d 9 -p ack -e 40 -c 0 -i 948 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.572256 -s 10 -d 7 -p ack -e 40 -c 0 -i 952 -a 0 -x {10.0 9.0 471 ------- null} + -t 0.572256 -s 7 -d 0 -p ack -e 40 -c 0 -i 952 -a 0 -x {10.0 9.0 471 ------- null} h -t 0.572256 -s 7 -d 8 -p ack -e 40 -c 0 -i 952 -a 0 -x {10.0 9.0 471 ------- null} r -t 0.5724 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 937 -a 0 -x {9.0 10.0 473 ------- null} + -t 0.5724 -s 10 -d 7 -p ack -e 40 -c 0 -i 956 -a 0 -x {10.0 9.0 473 ------- null} - -t 0.5724 -s 10 -d 7 -p ack -e 40 -c 0 -i 956 -a 0 -x {10.0 9.0 473 ------- null} h -t 0.5724 -s 10 -d 7 -p ack -e 40 -c 0 -i 956 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.57248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {9.0 10.0 480 ------- null} + -t 0.57248 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {9.0 10.0 480 ------- null} h -t 0.57248 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {9.0 10.0 480 ------- null} + -t 0.572864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {9.0 10.0 476 ------- null} - -t 0.572864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {9.0 10.0 476 ------- null} h -t 0.572864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.572912 -s 0 -d 9 -p ack -e 40 -c 0 -i 946 -a 0 -x {10.0 9.0 468 ------- null} + -t 0.572912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {9.0 10.0 483 ------- null} - -t 0.572912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {9.0 10.0 483 ------- null} h -t 0.572912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.573088 -s 0 -d 9 -p ack -e 40 -c 0 -i 950 -a 0 -x {10.0 9.0 470 ------- null} - -t 0.573088 -s 0 -d 9 -p ack -e 40 -c 0 -i 950 -a 0 -x {10.0 9.0 470 ------- null} h -t 0.573088 -s 0 -d 9 -p ack -e 40 -c 0 -i 950 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.573344 -s 10 -d 7 -p ack -e 40 -c 0 -i 954 -a 0 -x {10.0 9.0 472 ------- null} + -t 0.573344 -s 7 -d 0 -p ack -e 40 -c 0 -i 954 -a 0 -x {10.0 9.0 472 ------- null} h -t 0.573344 -s 7 -d 8 -p ack -e 40 -c 0 -i 954 -a 0 -x {10.0 9.0 472 ------- null} r -t 0.573488 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 939 -a 0 -x {9.0 10.0 474 ------- null} + -t 0.573488 -s 10 -d 7 -p ack -e 40 -c 0 -i 958 -a 0 -x {10.0 9.0 474 ------- null} - -t 0.573488 -s 10 -d 7 -p ack -e 40 -c 0 -i 958 -a 0 -x {10.0 9.0 474 ------- null} h -t 0.573488 -s 10 -d 7 -p ack -e 40 -c 0 -i 958 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.573584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {9.0 10.0 481 ------- null} + -t 0.573584 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {9.0 10.0 481 ------- null} h -t 0.573584 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {9.0 10.0 481 ------- null} + -t 0.573952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {9.0 10.0 477 ------- null} - -t 0.573952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {9.0 10.0 477 ------- null} h -t 0.573952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.573984 -s 0 -d 9 -p ack -e 40 -c 0 -i 948 -a 0 -x {10.0 9.0 469 ------- null} + -t 0.573984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {9.0 10.0 484 ------- null} - -t 0.573984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {9.0 10.0 484 ------- null} h -t 0.573984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.574176 -s 0 -d 9 -p ack -e 40 -c 0 -i 952 -a 0 -x {10.0 9.0 471 ------- null} - -t 0.574176 -s 0 -d 9 -p ack -e 40 -c 0 -i 952 -a 0 -x {10.0 9.0 471 ------- null} h -t 0.574176 -s 0 -d 9 -p ack -e 40 -c 0 -i 952 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.574432 -s 10 -d 7 -p ack -e 40 -c 0 -i 956 -a 0 -x {10.0 9.0 473 ------- null} + -t 0.574432 -s 7 -d 0 -p ack -e 40 -c 0 -i 956 -a 0 -x {10.0 9.0 473 ------- null} h -t 0.574432 -s 7 -d 8 -p ack -e 40 -c 0 -i 956 -a 0 -x {10.0 9.0 473 ------- null} r -t 0.574576 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 941 -a 0 -x {9.0 10.0 475 ------- null} + -t 0.574576 -s 10 -d 7 -p ack -e 40 -c 0 -i 960 -a 0 -x {10.0 9.0 475 ------- null} - -t 0.574576 -s 10 -d 7 -p ack -e 40 -c 0 -i 960 -a 0 -x {10.0 9.0 475 ------- null} h -t 0.574576 -s 10 -d 7 -p ack -e 40 -c 0 -i 960 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.574624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {9.0 10.0 482 ------- null} + -t 0.574624 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {9.0 10.0 482 ------- null} h -t 0.574624 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {9.0 10.0 482 ------- null} + -t 0.57504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {9.0 10.0 478 ------- null} - -t 0.57504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {9.0 10.0 478 ------- null} h -t 0.57504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.57512 -s 0 -d 9 -p ack -e 40 -c 0 -i 950 -a 0 -x {10.0 9.0 470 ------- null} + -t 0.57512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {9.0 10.0 485 ------- null} - -t 0.57512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {9.0 10.0 485 ------- null} h -t 0.57512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.575152 -s 0 -d 9 -p ack -e 40 -c 0 -i 954 -a 0 -x {10.0 9.0 472 ------- null} - -t 0.575152 -s 0 -d 9 -p ack -e 40 -c 0 -i 954 -a 0 -x {10.0 9.0 472 ------- null} h -t 0.575152 -s 0 -d 9 -p ack -e 40 -c 0 -i 954 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.57552 -s 10 -d 7 -p ack -e 40 -c 0 -i 958 -a 0 -x {10.0 9.0 474 ------- null} + -t 0.57552 -s 7 -d 0 -p ack -e 40 -c 0 -i 958 -a 0 -x {10.0 9.0 474 ------- null} h -t 0.57552 -s 7 -d 8 -p ack -e 40 -c 0 -i 958 -a 0 -x {10.0 9.0 474 ------- null} r -t 0.575664 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 943 -a 0 -x {9.0 10.0 476 ------- null} + -t 0.575664 -s 10 -d 7 -p ack -e 40 -c 0 -i 962 -a 0 -x {10.0 9.0 476 ------- null} - -t 0.575664 -s 10 -d 7 -p ack -e 40 -c 0 -i 962 -a 0 -x {10.0 9.0 476 ------- null} h -t 0.575664 -s 10 -d 7 -p ack -e 40 -c 0 -i 962 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.575712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {9.0 10.0 483 ------- null} + -t 0.575712 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {9.0 10.0 483 ------- null} h -t 0.575712 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {9.0 10.0 483 ------- null} + -t 0.576128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {9.0 10.0 479 ------- null} - -t 0.576128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {9.0 10.0 479 ------- null} h -t 0.576128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.576208 -s 0 -d 9 -p ack -e 40 -c 0 -i 952 -a 0 -x {10.0 9.0 471 ------- null} + -t 0.576208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 963 -a 0 -x {9.0 10.0 486 ------- null} - -t 0.576208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 963 -a 0 -x {9.0 10.0 486 ------- null} h -t 0.576208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 963 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.57632 -s 0 -d 9 -p ack -e 40 -c 0 -i 956 -a 0 -x {10.0 9.0 473 ------- null} - -t 0.57632 -s 0 -d 9 -p ack -e 40 -c 0 -i 956 -a 0 -x {10.0 9.0 473 ------- null} h -t 0.57632 -s 0 -d 9 -p ack -e 40 -c 0 -i 956 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.576608 -s 10 -d 7 -p ack -e 40 -c 0 -i 960 -a 0 -x {10.0 9.0 475 ------- null} + -t 0.576608 -s 7 -d 0 -p ack -e 40 -c 0 -i 960 -a 0 -x {10.0 9.0 475 ------- null} h -t 0.576608 -s 7 -d 8 -p ack -e 40 -c 0 -i 960 -a 0 -x {10.0 9.0 475 ------- null} r -t 0.576752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 945 -a 0 -x {9.0 10.0 477 ------- null} + -t 0.576752 -s 10 -d 7 -p ack -e 40 -c 0 -i 964 -a 0 -x {10.0 9.0 477 ------- null} - -t 0.576752 -s 10 -d 7 -p ack -e 40 -c 0 -i 964 -a 0 -x {10.0 9.0 477 ------- null} h -t 0.576752 -s 10 -d 7 -p ack -e 40 -c 0 -i 964 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.576784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {9.0 10.0 484 ------- null} + -t 0.576784 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {9.0 10.0 484 ------- null} h -t 0.576784 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {9.0 10.0 484 ------- null} r -t 0.577184 -s 0 -d 9 -p ack -e 40 -c 0 -i 954 -a 0 -x {10.0 9.0 472 ------- null} + -t 0.577184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 965 -a 0 -x {9.0 10.0 487 ------- null} - -t 0.577184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 965 -a 0 -x {9.0 10.0 487 ------- null} h -t 0.577184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 965 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.577216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {9.0 10.0 480 ------- null} - -t 0.577216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {9.0 10.0 480 ------- null} h -t 0.577216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.577504 -s 0 -d 9 -p ack -e 40 -c 0 -i 958 -a 0 -x {10.0 9.0 474 ------- null} - -t 0.577504 -s 0 -d 9 -p ack -e 40 -c 0 -i 958 -a 0 -x {10.0 9.0 474 ------- null} h -t 0.577504 -s 0 -d 9 -p ack -e 40 -c 0 -i 958 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.577696 -s 10 -d 7 -p ack -e 40 -c 0 -i 962 -a 0 -x {10.0 9.0 476 ------- null} + -t 0.577696 -s 7 -d 0 -p ack -e 40 -c 0 -i 962 -a 0 -x {10.0 9.0 476 ------- null} h -t 0.577696 -s 7 -d 8 -p ack -e 40 -c 0 -i 962 -a 0 -x {10.0 9.0 476 ------- null} r -t 0.57784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 947 -a 0 -x {9.0 10.0 478 ------- null} + -t 0.57784 -s 10 -d 7 -p ack -e 40 -c 0 -i 966 -a 0 -x {10.0 9.0 478 ------- null} - -t 0.57784 -s 10 -d 7 -p ack -e 40 -c 0 -i 966 -a 0 -x {10.0 9.0 478 ------- null} h -t 0.57784 -s 10 -d 7 -p ack -e 40 -c 0 -i 966 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.57792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {9.0 10.0 485 ------- null} + -t 0.57792 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {9.0 10.0 485 ------- null} h -t 0.57792 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {9.0 10.0 485 ------- null} r -t 0.578352 -s 0 -d 9 -p ack -e 40 -c 0 -i 956 -a 0 -x {10.0 9.0 473 ------- null} + -t 0.578352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 967 -a 0 -x {9.0 10.0 488 ------- null} - -t 0.578352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 967 -a 0 -x {9.0 10.0 488 ------- null} h -t 0.578352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 967 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.578432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {9.0 10.0 481 ------- null} - -t 0.578432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {9.0 10.0 481 ------- null} h -t 0.578432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.57872 -s 0 -d 9 -p ack -e 40 -c 0 -i 960 -a 0 -x {10.0 9.0 475 ------- null} - -t 0.57872 -s 0 -d 9 -p ack -e 40 -c 0 -i 960 -a 0 -x {10.0 9.0 475 ------- null} h -t 0.57872 -s 0 -d 9 -p ack -e 40 -c 0 -i 960 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.578784 -s 10 -d 7 -p ack -e 40 -c 0 -i 964 -a 0 -x {10.0 9.0 477 ------- null} + -t 0.578784 -s 7 -d 0 -p ack -e 40 -c 0 -i 964 -a 0 -x {10.0 9.0 477 ------- null} h -t 0.578784 -s 7 -d 8 -p ack -e 40 -c 0 -i 964 -a 0 -x {10.0 9.0 477 ------- null} r -t 0.578928 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 949 -a 0 -x {9.0 10.0 479 ------- null} + -t 0.578928 -s 10 -d 7 -p ack -e 40 -c 0 -i 968 -a 0 -x {10.0 9.0 479 ------- null} - -t 0.578928 -s 10 -d 7 -p ack -e 40 -c 0 -i 968 -a 0 -x {10.0 9.0 479 ------- null} h -t 0.578928 -s 10 -d 7 -p ack -e 40 -c 0 -i 968 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.579008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 963 -a 0 -x {9.0 10.0 486 ------- null} + -t 0.579008 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 963 -a 0 -x {9.0 10.0 486 ------- null} h -t 0.579008 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 963 -a 0 -x {9.0 10.0 486 ------- null} r -t 0.579536 -s 0 -d 9 -p ack -e 40 -c 0 -i 958 -a 0 -x {10.0 9.0 474 ------- null} + -t 0.579536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 969 -a 0 -x {9.0 10.0 489 ------- null} - -t 0.579536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 969 -a 0 -x {9.0 10.0 489 ------- null} h -t 0.579536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 969 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.579696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {9.0 10.0 482 ------- null} - -t 0.579696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {9.0 10.0 482 ------- null} h -t 0.579696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.579872 -s 10 -d 7 -p ack -e 40 -c 0 -i 966 -a 0 -x {10.0 9.0 478 ------- null} + -t 0.579872 -s 7 -d 0 -p ack -e 40 -c 0 -i 966 -a 0 -x {10.0 9.0 478 ------- null} h -t 0.579872 -s 7 -d 8 -p ack -e 40 -c 0 -i 966 -a 0 -x {10.0 9.0 478 ------- null} r -t 0.579984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 965 -a 0 -x {9.0 10.0 487 ------- null} + -t 0.579984 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 965 -a 0 -x {9.0 10.0 487 ------- null} h -t 0.579984 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 965 -a 0 -x {9.0 10.0 487 ------- null} + -t 0.58 -s 0 -d 9 -p ack -e 40 -c 0 -i 962 -a 0 -x {10.0 9.0 476 ------- null} - -t 0.58 -s 0 -d 9 -p ack -e 40 -c 0 -i 962 -a 0 -x {10.0 9.0 476 ------- null} h -t 0.58 -s 0 -d 9 -p ack -e 40 -c 0 -i 962 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.580016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 951 -a 0 -x {9.0 10.0 480 ------- null} + -t 0.580016 -s 10 -d 7 -p ack -e 40 -c 0 -i 970 -a 0 -x {10.0 9.0 480 ------- null} - -t 0.580016 -s 10 -d 7 -p ack -e 40 -c 0 -i 970 -a 0 -x {10.0 9.0 480 ------- null} h -t 0.580016 -s 10 -d 7 -p ack -e 40 -c 0 -i 970 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.580752 -s 0 -d 9 -p ack -e 40 -c 0 -i 960 -a 0 -x {10.0 9.0 475 ------- null} + -t 0.580752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 971 -a 0 -x {9.0 10.0 490 ------- null} - -t 0.580752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 971 -a 0 -x {9.0 10.0 490 ------- null} h -t 0.580752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 971 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.580848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {9.0 10.0 483 ------- null} - -t 0.580848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {9.0 10.0 483 ------- null} h -t 0.580848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.58096 -s 10 -d 7 -p ack -e 40 -c 0 -i 968 -a 0 -x {10.0 9.0 479 ------- null} + -t 0.58096 -s 7 -d 0 -p ack -e 40 -c 0 -i 968 -a 0 -x {10.0 9.0 479 ------- null} h -t 0.58096 -s 7 -d 8 -p ack -e 40 -c 0 -i 968 -a 0 -x {10.0 9.0 479 ------- null} + -t 0.581072 -s 0 -d 9 -p ack -e 40 -c 0 -i 964 -a 0 -x {10.0 9.0 477 ------- null} - -t 0.581072 -s 0 -d 9 -p ack -e 40 -c 0 -i 964 -a 0 -x {10.0 9.0 477 ------- null} h -t 0.581072 -s 0 -d 9 -p ack -e 40 -c 0 -i 964 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.581152 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 967 -a 0 -x {9.0 10.0 488 ------- null} + -t 0.581152 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 967 -a 0 -x {9.0 10.0 488 ------- null} h -t 0.581152 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 967 -a 0 -x {9.0 10.0 488 ------- null} r -t 0.581232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 953 -a 0 -x {9.0 10.0 481 ------- null} + -t 0.581232 -s 10 -d 7 -p ack -e 40 -c 0 -i 972 -a 0 -x {10.0 9.0 481 ------- null} - -t 0.581232 -s 10 -d 7 -p ack -e 40 -c 0 -i 972 -a 0 -x {10.0 9.0 481 ------- null} h -t 0.581232 -s 10 -d 7 -p ack -e 40 -c 0 -i 972 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.581936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {9.0 10.0 484 ------- null} - -t 0.581936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {9.0 10.0 484 ------- null} h -t 0.581936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.582032 -s 0 -d 9 -p ack -e 40 -c 0 -i 962 -a 0 -x {10.0 9.0 476 ------- null} + -t 0.582032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 973 -a 0 -x {9.0 10.0 491 ------- null} - -t 0.582032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 973 -a 0 -x {9.0 10.0 491 ------- null} h -t 0.582032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 973 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.582048 -s 10 -d 7 -p ack -e 40 -c 0 -i 970 -a 0 -x {10.0 9.0 480 ------- null} + -t 0.582048 -s 7 -d 0 -p ack -e 40 -c 0 -i 970 -a 0 -x {10.0 9.0 480 ------- null} h -t 0.582048 -s 7 -d 8 -p ack -e 40 -c 0 -i 970 -a 0 -x {10.0 9.0 480 ------- null} + -t 0.582096 -s 0 -d 9 -p ack -e 40 -c 0 -i 966 -a 0 -x {10.0 9.0 478 ------- null} - -t 0.582096 -s 0 -d 9 -p ack -e 40 -c 0 -i 966 -a 0 -x {10.0 9.0 478 ------- null} h -t 0.582096 -s 0 -d 9 -p ack -e 40 -c 0 -i 966 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.582336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 969 -a 0 -x {9.0 10.0 489 ------- null} + -t 0.582336 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 969 -a 0 -x {9.0 10.0 489 ------- null} h -t 0.582336 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 969 -a 0 -x {9.0 10.0 489 ------- null} r -t 0.582496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 955 -a 0 -x {9.0 10.0 482 ------- null} + -t 0.582496 -s 10 -d 7 -p ack -e 40 -c 0 -i 974 -a 0 -x {10.0 9.0 482 ------- null} - -t 0.582496 -s 10 -d 7 -p ack -e 40 -c 0 -i 974 -a 0 -x {10.0 9.0 482 ------- null} h -t 0.582496 -s 10 -d 7 -p ack -e 40 -c 0 -i 974 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.583024 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {9.0 10.0 485 ------- null} - -t 0.583024 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {9.0 10.0 485 ------- null} h -t 0.583024 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.583104 -s 0 -d 9 -p ack -e 40 -c 0 -i 964 -a 0 -x {10.0 9.0 477 ------- null} + -t 0.583104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 975 -a 0 -x {9.0 10.0 492 ------- null} - -t 0.583104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 975 -a 0 -x {9.0 10.0 492 ------- null} h -t 0.583104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 975 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.583104 -s 0 -d 9 -p ack -e 40 -c 0 -i 968 -a 0 -x {10.0 9.0 479 ------- null} - -t 0.583104 -s 0 -d 9 -p ack -e 40 -c 0 -i 968 -a 0 -x {10.0 9.0 479 ------- null} h -t 0.583104 -s 0 -d 9 -p ack -e 40 -c 0 -i 968 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.583264 -s 10 -d 7 -p ack -e 40 -c 0 -i 972 -a 0 -x {10.0 9.0 481 ------- null} + -t 0.583264 -s 7 -d 0 -p ack -e 40 -c 0 -i 972 -a 0 -x {10.0 9.0 481 ------- null} h -t 0.583264 -s 7 -d 8 -p ack -e 40 -c 0 -i 972 -a 0 -x {10.0 9.0 481 ------- null} r -t 0.583552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 971 -a 0 -x {9.0 10.0 490 ------- null} + -t 0.583552 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 971 -a 0 -x {9.0 10.0 490 ------- null} h -t 0.583552 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 971 -a 0 -x {9.0 10.0 490 ------- null} r -t 0.583648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 957 -a 0 -x {9.0 10.0 483 ------- null} + -t 0.583648 -s 10 -d 7 -p ack -e 40 -c 0 -i 976 -a 0 -x {10.0 9.0 483 ------- null} - -t 0.583648 -s 10 -d 7 -p ack -e 40 -c 0 -i 976 -a 0 -x {10.0 9.0 483 ------- null} h -t 0.583648 -s 10 -d 7 -p ack -e 40 -c 0 -i 976 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.584112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 963 -a 0 -x {9.0 10.0 486 ------- null} - -t 0.584112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 963 -a 0 -x {9.0 10.0 486 ------- null} h -t 0.584112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 963 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.584128 -s 0 -d 9 -p ack -e 40 -c 0 -i 966 -a 0 -x {10.0 9.0 478 ------- null} + -t 0.584128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 977 -a 0 -x {9.0 10.0 493 ------- null} - -t 0.584128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 977 -a 0 -x {9.0 10.0 493 ------- null} h -t 0.584128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 977 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.584272 -s 0 -d 9 -p ack -e 40 -c 0 -i 970 -a 0 -x {10.0 9.0 480 ------- null} - -t 0.584272 -s 0 -d 9 -p ack -e 40 -c 0 -i 970 -a 0 -x {10.0 9.0 480 ------- null} h -t 0.584272 -s 0 -d 9 -p ack -e 40 -c 0 -i 970 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.584528 -s 10 -d 7 -p ack -e 40 -c 0 -i 974 -a 0 -x {10.0 9.0 482 ------- null} + -t 0.584528 -s 7 -d 0 -p ack -e 40 -c 0 -i 974 -a 0 -x {10.0 9.0 482 ------- null} h -t 0.584528 -s 7 -d 8 -p ack -e 40 -c 0 -i 974 -a 0 -x {10.0 9.0 482 ------- null} r -t 0.584736 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 959 -a 0 -x {9.0 10.0 484 ------- null} + -t 0.584736 -s 10 -d 7 -p ack -e 40 -c 0 -i 978 -a 0 -x {10.0 9.0 484 ------- null} - -t 0.584736 -s 10 -d 7 -p ack -e 40 -c 0 -i 978 -a 0 -x {10.0 9.0 484 ------- null} h -t 0.584736 -s 10 -d 7 -p ack -e 40 -c 0 -i 978 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.584832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 973 -a 0 -x {9.0 10.0 491 ------- null} + -t 0.584832 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 973 -a 0 -x {9.0 10.0 491 ------- null} h -t 0.584832 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 973 -a 0 -x {9.0 10.0 491 ------- null} r -t 0.585136 -s 0 -d 9 -p ack -e 40 -c 0 -i 968 -a 0 -x {10.0 9.0 479 ------- null} + -t 0.585136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 979 -a 0 -x {9.0 10.0 494 ------- null} - -t 0.585136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 979 -a 0 -x {9.0 10.0 494 ------- null} h -t 0.585136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 979 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.5852 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 965 -a 0 -x {9.0 10.0 487 ------- null} - -t 0.5852 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 965 -a 0 -x {9.0 10.0 487 ------- null} h -t 0.5852 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 965 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.585456 -s 0 -d 9 -p ack -e 40 -c 0 -i 972 -a 0 -x {10.0 9.0 481 ------- null} - -t 0.585456 -s 0 -d 9 -p ack -e 40 -c 0 -i 972 -a 0 -x {10.0 9.0 481 ------- null} h -t 0.585456 -s 0 -d 9 -p ack -e 40 -c 0 -i 972 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.58568 -s 10 -d 7 -p ack -e 40 -c 0 -i 976 -a 0 -x {10.0 9.0 483 ------- null} + -t 0.58568 -s 7 -d 0 -p ack -e 40 -c 0 -i 976 -a 0 -x {10.0 9.0 483 ------- null} h -t 0.58568 -s 7 -d 8 -p ack -e 40 -c 0 -i 976 -a 0 -x {10.0 9.0 483 ------- null} r -t 0.585824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 961 -a 0 -x {9.0 10.0 485 ------- null} + -t 0.585824 -s 10 -d 7 -p ack -e 40 -c 0 -i 980 -a 0 -x {10.0 9.0 485 ------- null} - -t 0.585824 -s 10 -d 7 -p ack -e 40 -c 0 -i 980 -a 0 -x {10.0 9.0 485 ------- null} h -t 0.585824 -s 10 -d 7 -p ack -e 40 -c 0 -i 980 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.585904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 975 -a 0 -x {9.0 10.0 492 ------- null} + -t 0.585904 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 975 -a 0 -x {9.0 10.0 492 ------- null} h -t 0.585904 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 975 -a 0 -x {9.0 10.0 492 ------- null} + -t 0.586288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 967 -a 0 -x {9.0 10.0 488 ------- null} - -t 0.586288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 967 -a 0 -x {9.0 10.0 488 ------- null} h -t 0.586288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 967 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.586304 -s 0 -d 9 -p ack -e 40 -c 0 -i 970 -a 0 -x {10.0 9.0 480 ------- null} + -t 0.586304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 981 -a 0 -x {9.0 10.0 495 ------- null} - -t 0.586304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 981 -a 0 -x {9.0 10.0 495 ------- null} h -t 0.586304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 981 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.586432 -s 0 -d 9 -p ack -e 40 -c 0 -i 974 -a 0 -x {10.0 9.0 482 ------- null} - -t 0.586432 -s 0 -d 9 -p ack -e 40 -c 0 -i 974 -a 0 -x {10.0 9.0 482 ------- null} h -t 0.586432 -s 0 -d 9 -p ack -e 40 -c 0 -i 974 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.586768 -s 10 -d 7 -p ack -e 40 -c 0 -i 978 -a 0 -x {10.0 9.0 484 ------- null} + -t 0.586768 -s 7 -d 0 -p ack -e 40 -c 0 -i 978 -a 0 -x {10.0 9.0 484 ------- null} h -t 0.586768 -s 7 -d 8 -p ack -e 40 -c 0 -i 978 -a 0 -x {10.0 9.0 484 ------- null} r -t 0.586912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 963 -a 0 -x {9.0 10.0 486 ------- null} + -t 0.586912 -s 10 -d 7 -p ack -e 40 -c 0 -i 982 -a 0 -x {10.0 9.0 486 ------- null} - -t 0.586912 -s 10 -d 7 -p ack -e 40 -c 0 -i 982 -a 0 -x {10.0 9.0 486 ------- null} h -t 0.586912 -s 10 -d 7 -p ack -e 40 -c 0 -i 982 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.586928 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 977 -a 0 -x {9.0 10.0 493 ------- null} + -t 0.586928 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 977 -a 0 -x {9.0 10.0 493 ------- null} h -t 0.586928 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 977 -a 0 -x {9.0 10.0 493 ------- null} + -t 0.587376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 969 -a 0 -x {9.0 10.0 489 ------- null} - -t 0.587376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 969 -a 0 -x {9.0 10.0 489 ------- null} h -t 0.587376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 969 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.587472 -s 0 -d 9 -p ack -e 40 -c 0 -i 976 -a 0 -x {10.0 9.0 483 ------- null} - -t 0.587472 -s 0 -d 9 -p ack -e 40 -c 0 -i 976 -a 0 -x {10.0 9.0 483 ------- null} h -t 0.587472 -s 0 -d 9 -p ack -e 40 -c 0 -i 976 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.587488 -s 0 -d 9 -p ack -e 40 -c 0 -i 972 -a 0 -x {10.0 9.0 481 ------- null} + -t 0.587488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {9.0 10.0 496 ------- null} - -t 0.587488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {9.0 10.0 496 ------- null} h -t 0.587488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.587856 -s 10 -d 7 -p ack -e 40 -c 0 -i 980 -a 0 -x {10.0 9.0 485 ------- null} + -t 0.587856 -s 7 -d 0 -p ack -e 40 -c 0 -i 980 -a 0 -x {10.0 9.0 485 ------- null} h -t 0.587856 -s 7 -d 8 -p ack -e 40 -c 0 -i 980 -a 0 -x {10.0 9.0 485 ------- null} r -t 0.587936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 979 -a 0 -x {9.0 10.0 494 ------- null} + -t 0.587936 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 979 -a 0 -x {9.0 10.0 494 ------- null} h -t 0.587936 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 979 -a 0 -x {9.0 10.0 494 ------- null} r -t 0.588 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 965 -a 0 -x {9.0 10.0 487 ------- null} + -t 0.588 -s 10 -d 7 -p ack -e 40 -c 0 -i 984 -a 0 -x {10.0 9.0 487 ------- null} - -t 0.588 -s 10 -d 7 -p ack -e 40 -c 0 -i 984 -a 0 -x {10.0 9.0 487 ------- null} h -t 0.588 -s 10 -d 7 -p ack -e 40 -c 0 -i 984 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.588464 -s 0 -d 9 -p ack -e 40 -c 0 -i 974 -a 0 -x {10.0 9.0 482 ------- null} + -t 0.588464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {9.0 10.0 497 ------- null} - -t 0.588464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {9.0 10.0 497 ------- null} h -t 0.588464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.588464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 971 -a 0 -x {9.0 10.0 490 ------- null} - -t 0.588464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 971 -a 0 -x {9.0 10.0 490 ------- null} h -t 0.588464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 971 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.58864 -s 0 -d 9 -p ack -e 40 -c 0 -i 978 -a 0 -x {10.0 9.0 484 ------- null} - -t 0.58864 -s 0 -d 9 -p ack -e 40 -c 0 -i 978 -a 0 -x {10.0 9.0 484 ------- null} h -t 0.58864 -s 0 -d 9 -p ack -e 40 -c 0 -i 978 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.588944 -s 10 -d 7 -p ack -e 40 -c 0 -i 982 -a 0 -x {10.0 9.0 486 ------- null} + -t 0.588944 -s 7 -d 0 -p ack -e 40 -c 0 -i 982 -a 0 -x {10.0 9.0 486 ------- null} h -t 0.588944 -s 7 -d 8 -p ack -e 40 -c 0 -i 982 -a 0 -x {10.0 9.0 486 ------- null} r -t 0.589088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 967 -a 0 -x {9.0 10.0 488 ------- null} + -t 0.589088 -s 10 -d 7 -p ack -e 40 -c 0 -i 986 -a 0 -x {10.0 9.0 488 ------- null} - -t 0.589088 -s 10 -d 7 -p ack -e 40 -c 0 -i 986 -a 0 -x {10.0 9.0 488 ------- null} h -t 0.589088 -s 10 -d 7 -p ack -e 40 -c 0 -i 986 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.589104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 981 -a 0 -x {9.0 10.0 495 ------- null} + -t 0.589104 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 981 -a 0 -x {9.0 10.0 495 ------- null} h -t 0.589104 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 981 -a 0 -x {9.0 10.0 495 ------- null} r -t 0.589504 -s 0 -d 9 -p ack -e 40 -c 0 -i 976 -a 0 -x {10.0 9.0 483 ------- null} + -t 0.589504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {9.0 10.0 498 ------- null} - -t 0.589504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {9.0 10.0 498 ------- null} h -t 0.589504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.589552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 973 -a 0 -x {9.0 10.0 491 ------- null} - -t 0.589552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 973 -a 0 -x {9.0 10.0 491 ------- null} h -t 0.589552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 973 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.589744 -s 0 -d 9 -p ack -e 40 -c 0 -i 980 -a 0 -x {10.0 9.0 485 ------- null} - -t 0.589744 -s 0 -d 9 -p ack -e 40 -c 0 -i 980 -a 0 -x {10.0 9.0 485 ------- null} h -t 0.589744 -s 0 -d 9 -p ack -e 40 -c 0 -i 980 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.590032 -s 10 -d 7 -p ack -e 40 -c 0 -i 984 -a 0 -x {10.0 9.0 487 ------- null} + -t 0.590032 -s 7 -d 0 -p ack -e 40 -c 0 -i 984 -a 0 -x {10.0 9.0 487 ------- null} h -t 0.590032 -s 7 -d 8 -p ack -e 40 -c 0 -i 984 -a 0 -x {10.0 9.0 487 ------- null} r -t 0.590176 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 969 -a 0 -x {9.0 10.0 489 ------- null} + -t 0.590176 -s 10 -d 7 -p ack -e 40 -c 0 -i 988 -a 0 -x {10.0 9.0 489 ------- null} - -t 0.590176 -s 10 -d 7 -p ack -e 40 -c 0 -i 988 -a 0 -x {10.0 9.0 489 ------- null} h -t 0.590176 -s 10 -d 7 -p ack -e 40 -c 0 -i 988 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.590288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {9.0 10.0 496 ------- null} + -t 0.590288 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {9.0 10.0 496 ------- null} h -t 0.590288 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {9.0 10.0 496 ------- null} + -t 0.59064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 975 -a 0 -x {9.0 10.0 492 ------- null} - -t 0.59064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 975 -a 0 -x {9.0 10.0 492 ------- null} h -t 0.59064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 975 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.590672 -s 0 -d 9 -p ack -e 40 -c 0 -i 978 -a 0 -x {10.0 9.0 484 ------- null} + -t 0.590672 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {9.0 10.0 499 ------- null} - -t 0.590672 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {9.0 10.0 499 ------- null} h -t 0.590672 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.590864 -s 0 -d 9 -p ack -e 40 -c 0 -i 982 -a 0 -x {10.0 9.0 486 ------- null} - -t 0.590864 -s 0 -d 9 -p ack -e 40 -c 0 -i 982 -a 0 -x {10.0 9.0 486 ------- null} h -t 0.590864 -s 0 -d 9 -p ack -e 40 -c 0 -i 982 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.59112 -s 10 -d 7 -p ack -e 40 -c 0 -i 986 -a 0 -x {10.0 9.0 488 ------- null} + -t 0.59112 -s 7 -d 0 -p ack -e 40 -c 0 -i 986 -a 0 -x {10.0 9.0 488 ------- null} h -t 0.59112 -s 7 -d 8 -p ack -e 40 -c 0 -i 986 -a 0 -x {10.0 9.0 488 ------- null} r -t 0.591264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {9.0 10.0 497 ------- null} + -t 0.591264 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {9.0 10.0 497 ------- null} h -t 0.591264 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {9.0 10.0 497 ------- null} r -t 0.591264 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 971 -a 0 -x {9.0 10.0 490 ------- null} + -t 0.591264 -s 10 -d 7 -p ack -e 40 -c 0 -i 990 -a 0 -x {10.0 9.0 490 ------- null} - -t 0.591264 -s 10 -d 7 -p ack -e 40 -c 0 -i 990 -a 0 -x {10.0 9.0 490 ------- null} h -t 0.591264 -s 10 -d 7 -p ack -e 40 -c 0 -i 990 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.591728 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 977 -a 0 -x {9.0 10.0 493 ------- null} - -t 0.591728 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 977 -a 0 -x {9.0 10.0 493 ------- null} h -t 0.591728 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 977 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.591776 -s 0 -d 9 -p ack -e 40 -c 0 -i 980 -a 0 -x {10.0 9.0 485 ------- null} + -t 0.591776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {9.0 10.0 500 ------- null} - -t 0.591776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {9.0 10.0 500 ------- null} h -t 0.591776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.591984 -s 0 -d 9 -p ack -e 40 -c 0 -i 984 -a 0 -x {10.0 9.0 487 ------- null} - -t 0.591984 -s 0 -d 9 -p ack -e 40 -c 0 -i 984 -a 0 -x {10.0 9.0 487 ------- null} h -t 0.591984 -s 0 -d 9 -p ack -e 40 -c 0 -i 984 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.592208 -s 10 -d 7 -p ack -e 40 -c 0 -i 988 -a 0 -x {10.0 9.0 489 ------- null} + -t 0.592208 -s 7 -d 0 -p ack -e 40 -c 0 -i 988 -a 0 -x {10.0 9.0 489 ------- null} h -t 0.592208 -s 7 -d 8 -p ack -e 40 -c 0 -i 988 -a 0 -x {10.0 9.0 489 ------- null} r -t 0.592304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {9.0 10.0 498 ------- null} + -t 0.592304 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {9.0 10.0 498 ------- null} h -t 0.592304 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {9.0 10.0 498 ------- null} r -t 0.592352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 973 -a 0 -x {9.0 10.0 491 ------- null} + -t 0.592352 -s 10 -d 7 -p ack -e 40 -c 0 -i 992 -a 0 -x {10.0 9.0 491 ------- null} - -t 0.592352 -s 10 -d 7 -p ack -e 40 -c 0 -i 992 -a 0 -x {10.0 9.0 491 ------- null} h -t 0.592352 -s 10 -d 7 -p ack -e 40 -c 0 -i 992 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.592816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 979 -a 0 -x {9.0 10.0 494 ------- null} - -t 0.592816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 979 -a 0 -x {9.0 10.0 494 ------- null} h -t 0.592816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 979 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.592896 -s 0 -d 9 -p ack -e 40 -c 0 -i 982 -a 0 -x {10.0 9.0 486 ------- null} + -t 0.592896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {9.0 10.0 501 ------- null} - -t 0.592896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {9.0 10.0 501 ------- null} h -t 0.592896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.593072 -s 0 -d 9 -p ack -e 40 -c 0 -i 986 -a 0 -x {10.0 9.0 488 ------- null} - -t 0.593072 -s 0 -d 9 -p ack -e 40 -c 0 -i 986 -a 0 -x {10.0 9.0 488 ------- null} h -t 0.593072 -s 0 -d 9 -p ack -e 40 -c 0 -i 986 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.593296 -s 10 -d 7 -p ack -e 40 -c 0 -i 990 -a 0 -x {10.0 9.0 490 ------- null} + -t 0.593296 -s 7 -d 0 -p ack -e 40 -c 0 -i 990 -a 0 -x {10.0 9.0 490 ------- null} h -t 0.593296 -s 7 -d 8 -p ack -e 40 -c 0 -i 990 -a 0 -x {10.0 9.0 490 ------- null} r -t 0.59344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 975 -a 0 -x {9.0 10.0 492 ------- null} + -t 0.59344 -s 10 -d 7 -p ack -e 40 -c 0 -i 994 -a 0 -x {10.0 9.0 492 ------- null} - -t 0.59344 -s 10 -d 7 -p ack -e 40 -c 0 -i 994 -a 0 -x {10.0 9.0 492 ------- null} h -t 0.59344 -s 10 -d 7 -p ack -e 40 -c 0 -i 994 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.593472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {9.0 10.0 499 ------- null} + -t 0.593472 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {9.0 10.0 499 ------- null} h -t 0.593472 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {9.0 10.0 499 ------- null} + -t 0.593904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 981 -a 0 -x {9.0 10.0 495 ------- null} - -t 0.593904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 981 -a 0 -x {9.0 10.0 495 ------- null} h -t 0.593904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 981 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.594016 -s 0 -d 9 -p ack -e 40 -c 0 -i 984 -a 0 -x {10.0 9.0 487 ------- null} + -t 0.594016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {9.0 10.0 502 ------- null} - -t 0.594016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {9.0 10.0 502 ------- null} h -t 0.594016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.59408 -s 0 -d 9 -p ack -e 40 -c 0 -i 988 -a 0 -x {10.0 9.0 489 ------- null} - -t 0.59408 -s 0 -d 9 -p ack -e 40 -c 0 -i 988 -a 0 -x {10.0 9.0 489 ------- null} h -t 0.59408 -s 0 -d 9 -p ack -e 40 -c 0 -i 988 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.594384 -s 10 -d 7 -p ack -e 40 -c 0 -i 992 -a 0 -x {10.0 9.0 491 ------- null} + -t 0.594384 -s 7 -d 0 -p ack -e 40 -c 0 -i 992 -a 0 -x {10.0 9.0 491 ------- null} h -t 0.594384 -s 7 -d 8 -p ack -e 40 -c 0 -i 992 -a 0 -x {10.0 9.0 491 ------- null} r -t 0.594528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 977 -a 0 -x {9.0 10.0 493 ------- null} + -t 0.594528 -s 10 -d 7 -p ack -e 40 -c 0 -i 996 -a 0 -x {10.0 9.0 493 ------- null} - -t 0.594528 -s 10 -d 7 -p ack -e 40 -c 0 -i 996 -a 0 -x {10.0 9.0 493 ------- null} h -t 0.594528 -s 10 -d 7 -p ack -e 40 -c 0 -i 996 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.594576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {9.0 10.0 500 ------- null} + -t 0.594576 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {9.0 10.0 500 ------- null} h -t 0.594576 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {9.0 10.0 500 ------- null} + -t 0.594992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {9.0 10.0 496 ------- null} - -t 0.594992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {9.0 10.0 496 ------- null} h -t 0.594992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.595104 -s 0 -d 9 -p ack -e 40 -c 0 -i 986 -a 0 -x {10.0 9.0 488 ------- null} + -t 0.595104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {9.0 10.0 503 ------- null} - -t 0.595104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {9.0 10.0 503 ------- null} h -t 0.595104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.595232 -s 0 -d 9 -p ack -e 40 -c 0 -i 990 -a 0 -x {10.0 9.0 490 ------- null} - -t 0.595232 -s 0 -d 9 -p ack -e 40 -c 0 -i 990 -a 0 -x {10.0 9.0 490 ------- null} h -t 0.595232 -s 0 -d 9 -p ack -e 40 -c 0 -i 990 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.595472 -s 10 -d 7 -p ack -e 40 -c 0 -i 994 -a 0 -x {10.0 9.0 492 ------- null} + -t 0.595472 -s 7 -d 0 -p ack -e 40 -c 0 -i 994 -a 0 -x {10.0 9.0 492 ------- null} h -t 0.595472 -s 7 -d 8 -p ack -e 40 -c 0 -i 994 -a 0 -x {10.0 9.0 492 ------- null} r -t 0.595616 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 979 -a 0 -x {9.0 10.0 494 ------- null} + -t 0.595616 -s 10 -d 7 -p ack -e 40 -c 0 -i 998 -a 0 -x {10.0 9.0 494 ------- null} - -t 0.595616 -s 10 -d 7 -p ack -e 40 -c 0 -i 998 -a 0 -x {10.0 9.0 494 ------- null} h -t 0.595616 -s 10 -d 7 -p ack -e 40 -c 0 -i 998 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.595696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {9.0 10.0 501 ------- null} + -t 0.595696 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {9.0 10.0 501 ------- null} h -t 0.595696 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {9.0 10.0 501 ------- null} + -t 0.59608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {9.0 10.0 497 ------- null} - -t 0.59608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {9.0 10.0 497 ------- null} h -t 0.59608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.596112 -s 0 -d 9 -p ack -e 40 -c 0 -i 988 -a 0 -x {10.0 9.0 489 ------- null} + -t 0.596112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {9.0 10.0 504 ------- null} - -t 0.596112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {9.0 10.0 504 ------- null} h -t 0.596112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.596144 -s 0 -d 9 -p ack -e 40 -c 0 -i 992 -a 0 -x {10.0 9.0 491 ------- null} - -t 0.596144 -s 0 -d 9 -p ack -e 40 -c 0 -i 992 -a 0 -x {10.0 9.0 491 ------- null} h -t 0.596144 -s 0 -d 9 -p ack -e 40 -c 0 -i 992 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.59656 -s 10 -d 7 -p ack -e 40 -c 0 -i 996 -a 0 -x {10.0 9.0 493 ------- null} + -t 0.59656 -s 7 -d 0 -p ack -e 40 -c 0 -i 996 -a 0 -x {10.0 9.0 493 ------- null} h -t 0.59656 -s 7 -d 8 -p ack -e 40 -c 0 -i 996 -a 0 -x {10.0 9.0 493 ------- null} r -t 0.596704 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 981 -a 0 -x {9.0 10.0 495 ------- null} + -t 0.596704 -s 10 -d 7 -p ack -e 40 -c 0 -i 1000 -a 0 -x {10.0 9.0 495 ------- null} - -t 0.596704 -s 10 -d 7 -p ack -e 40 -c 0 -i 1000 -a 0 -x {10.0 9.0 495 ------- null} h -t 0.596704 -s 10 -d 7 -p ack -e 40 -c 0 -i 1000 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.596816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {9.0 10.0 502 ------- null} + -t 0.596816 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {9.0 10.0 502 ------- null} h -t 0.596816 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {9.0 10.0 502 ------- null} + -t 0.597168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {9.0 10.0 498 ------- null} - -t 0.597168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {9.0 10.0 498 ------- null} h -t 0.597168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.597248 -s 0 -d 9 -p ack -e 40 -c 0 -i 994 -a 0 -x {10.0 9.0 492 ------- null} - -t 0.597248 -s 0 -d 9 -p ack -e 40 -c 0 -i 994 -a 0 -x {10.0 9.0 492 ------- null} h -t 0.597248 -s 0 -d 9 -p ack -e 40 -c 0 -i 994 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.597264 -s 0 -d 9 -p ack -e 40 -c 0 -i 990 -a 0 -x {10.0 9.0 490 ------- null} + -t 0.597264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {9.0 10.0 505 ------- null} - -t 0.597264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {9.0 10.0 505 ------- null} h -t 0.597264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.597648 -s 10 -d 7 -p ack -e 40 -c 0 -i 998 -a 0 -x {10.0 9.0 494 ------- null} + -t 0.597648 -s 7 -d 0 -p ack -e 40 -c 0 -i 998 -a 0 -x {10.0 9.0 494 ------- null} h -t 0.597648 -s 7 -d 8 -p ack -e 40 -c 0 -i 998 -a 0 -x {10.0 9.0 494 ------- null} r -t 0.597792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 983 -a 0 -x {9.0 10.0 496 ------- null} + -t 0.597792 -s 10 -d 7 -p ack -e 40 -c 0 -i 1002 -a 0 -x {10.0 9.0 496 ------- null} - -t 0.597792 -s 10 -d 7 -p ack -e 40 -c 0 -i 1002 -a 0 -x {10.0 9.0 496 ------- null} h -t 0.597792 -s 10 -d 7 -p ack -e 40 -c 0 -i 1002 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.597904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {9.0 10.0 503 ------- null} + -t 0.597904 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {9.0 10.0 503 ------- null} h -t 0.597904 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {9.0 10.0 503 ------- null} r -t 0.598176 -s 0 -d 9 -p ack -e 40 -c 0 -i 992 -a 0 -x {10.0 9.0 491 ------- null} + -t 0.598176 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1003 -a 0 -x {9.0 10.0 506 ------- null} - -t 0.598176 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1003 -a 0 -x {9.0 10.0 506 ------- null} h -t 0.598176 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1003 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.598256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {9.0 10.0 499 ------- null} - -t 0.598256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {9.0 10.0 499 ------- null} h -t 0.598256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.598368 -s 0 -d 9 -p ack -e 40 -c 0 -i 996 -a 0 -x {10.0 9.0 493 ------- null} - -t 0.598368 -s 0 -d 9 -p ack -e 40 -c 0 -i 996 -a 0 -x {10.0 9.0 493 ------- null} h -t 0.598368 -s 0 -d 9 -p ack -e 40 -c 0 -i 996 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.598736 -s 10 -d 7 -p ack -e 40 -c 0 -i 1000 -a 0 -x {10.0 9.0 495 ------- null} + -t 0.598736 -s 7 -d 0 -p ack -e 40 -c 0 -i 1000 -a 0 -x {10.0 9.0 495 ------- null} h -t 0.598736 -s 7 -d 8 -p ack -e 40 -c 0 -i 1000 -a 0 -x {10.0 9.0 495 ------- null} r -t 0.59888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 985 -a 0 -x {9.0 10.0 497 ------- null} + -t 0.59888 -s 10 -d 7 -p ack -e 40 -c 0 -i 1004 -a 0 -x {10.0 9.0 497 ------- null} - -t 0.59888 -s 10 -d 7 -p ack -e 40 -c 0 -i 1004 -a 0 -x {10.0 9.0 497 ------- null} h -t 0.59888 -s 10 -d 7 -p ack -e 40 -c 0 -i 1004 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.598912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {9.0 10.0 504 ------- null} + -t 0.598912 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {9.0 10.0 504 ------- null} h -t 0.598912 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {9.0 10.0 504 ------- null} r -t 0.59928 -s 0 -d 9 -p ack -e 40 -c 0 -i 994 -a 0 -x {10.0 9.0 492 ------- null} + -t 0.59928 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1005 -a 0 -x {9.0 10.0 507 ------- null} - -t 0.59928 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1005 -a 0 -x {9.0 10.0 507 ------- null} h -t 0.59928 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1005 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.599344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {9.0 10.0 500 ------- null} - -t 0.599344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {9.0 10.0 500 ------- null} h -t 0.599344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.599472 -s 0 -d 9 -p ack -e 40 -c 0 -i 998 -a 0 -x {10.0 9.0 494 ------- null} - -t 0.599472 -s 0 -d 9 -p ack -e 40 -c 0 -i 998 -a 0 -x {10.0 9.0 494 ------- null} h -t 0.599472 -s 0 -d 9 -p ack -e 40 -c 0 -i 998 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.599824 -s 10 -d 7 -p ack -e 40 -c 0 -i 1002 -a 0 -x {10.0 9.0 496 ------- null} + -t 0.599824 -s 7 -d 0 -p ack -e 40 -c 0 -i 1002 -a 0 -x {10.0 9.0 496 ------- null} h -t 0.599824 -s 7 -d 8 -p ack -e 40 -c 0 -i 1002 -a 0 -x {10.0 9.0 496 ------- null} r -t 0.599968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 987 -a 0 -x {9.0 10.0 498 ------- null} + -t 0.599968 -s 10 -d 7 -p ack -e 40 -c 0 -i 1006 -a 0 -x {10.0 9.0 498 ------- null} - -t 0.599968 -s 10 -d 7 -p ack -e 40 -c 0 -i 1006 -a 0 -x {10.0 9.0 498 ------- null} h -t 0.599968 -s 10 -d 7 -p ack -e 40 -c 0 -i 1006 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.600064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {9.0 10.0 505 ------- null} + -t 0.600064 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {9.0 10.0 505 ------- null} h -t 0.600064 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {9.0 10.0 505 ------- null} r -t 0.6004 -s 0 -d 9 -p ack -e 40 -c 0 -i 996 -a 0 -x {10.0 9.0 493 ------- null} + -t 0.6004 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1007 -a 0 -x {9.0 10.0 508 ------- null} - -t 0.6004 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1007 -a 0 -x {9.0 10.0 508 ------- null} h -t 0.6004 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1007 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.600432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {9.0 10.0 501 ------- null} - -t 0.600432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {9.0 10.0 501 ------- null} h -t 0.600432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.600624 -s 0 -d 9 -p ack -e 40 -c 0 -i 1000 -a 0 -x {10.0 9.0 495 ------- null} - -t 0.600624 -s 0 -d 9 -p ack -e 40 -c 0 -i 1000 -a 0 -x {10.0 9.0 495 ------- null} h -t 0.600624 -s 0 -d 9 -p ack -e 40 -c 0 -i 1000 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.600912 -s 10 -d 7 -p ack -e 40 -c 0 -i 1004 -a 0 -x {10.0 9.0 497 ------- null} + -t 0.600912 -s 7 -d 0 -p ack -e 40 -c 0 -i 1004 -a 0 -x {10.0 9.0 497 ------- null} h -t 0.600912 -s 7 -d 8 -p ack -e 40 -c 0 -i 1004 -a 0 -x {10.0 9.0 497 ------- null} r -t 0.600976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1003 -a 0 -x {9.0 10.0 506 ------- null} + -t 0.600976 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1003 -a 0 -x {9.0 10.0 506 ------- null} h -t 0.600976 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1003 -a 0 -x {9.0 10.0 506 ------- null} r -t 0.601056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 989 -a 0 -x {9.0 10.0 499 ------- null} + -t 0.601056 -s 10 -d 7 -p ack -e 40 -c 0 -i 1008 -a 0 -x {10.0 9.0 499 ------- null} - -t 0.601056 -s 10 -d 7 -p ack -e 40 -c 0 -i 1008 -a 0 -x {10.0 9.0 499 ------- null} h -t 0.601056 -s 10 -d 7 -p ack -e 40 -c 0 -i 1008 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.601504 -s 0 -d 9 -p ack -e 40 -c 0 -i 998 -a 0 -x {10.0 9.0 494 ------- null} + -t 0.601504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1009 -a 0 -x {9.0 10.0 509 ------- null} - -t 0.601504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1009 -a 0 -x {9.0 10.0 509 ------- null} h -t 0.601504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1009 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.60152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {9.0 10.0 502 ------- null} - -t 0.60152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {9.0 10.0 502 ------- null} h -t 0.60152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.601648 -s 0 -d 9 -p ack -e 40 -c 0 -i 1002 -a 0 -x {10.0 9.0 496 ------- null} - -t 0.601648 -s 0 -d 9 -p ack -e 40 -c 0 -i 1002 -a 0 -x {10.0 9.0 496 ------- null} h -t 0.601648 -s 0 -d 9 -p ack -e 40 -c 0 -i 1002 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.602 -s 10 -d 7 -p ack -e 40 -c 0 -i 1006 -a 0 -x {10.0 9.0 498 ------- null} + -t 0.602 -s 7 -d 0 -p ack -e 40 -c 0 -i 1006 -a 0 -x {10.0 9.0 498 ------- null} h -t 0.602 -s 7 -d 8 -p ack -e 40 -c 0 -i 1006 -a 0 -x {10.0 9.0 498 ------- null} r -t 0.60208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1005 -a 0 -x {9.0 10.0 507 ------- null} + -t 0.60208 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1005 -a 0 -x {9.0 10.0 507 ------- null} h -t 0.60208 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1005 -a 0 -x {9.0 10.0 507 ------- null} r -t 0.602144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 991 -a 0 -x {9.0 10.0 500 ------- null} + -t 0.602144 -s 10 -d 7 -p ack -e 40 -c 0 -i 1010 -a 0 -x {10.0 9.0 500 ------- null} - -t 0.602144 -s 10 -d 7 -p ack -e 40 -c 0 -i 1010 -a 0 -x {10.0 9.0 500 ------- null} h -t 0.602144 -s 10 -d 7 -p ack -e 40 -c 0 -i 1010 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.602608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {9.0 10.0 503 ------- null} - -t 0.602608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {9.0 10.0 503 ------- null} h -t 0.602608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.602656 -s 0 -d 9 -p ack -e 40 -c 0 -i 1000 -a 0 -x {10.0 9.0 495 ------- null} + -t 0.602656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1011 -a 0 -x {9.0 10.0 510 ------- null} - -t 0.602656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1011 -a 0 -x {9.0 10.0 510 ------- null} h -t 0.602656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1011 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.602752 -s 0 -d 9 -p ack -e 40 -c 0 -i 1004 -a 0 -x {10.0 9.0 497 ------- null} - -t 0.602752 -s 0 -d 9 -p ack -e 40 -c 0 -i 1004 -a 0 -x {10.0 9.0 497 ------- null} h -t 0.602752 -s 0 -d 9 -p ack -e 40 -c 0 -i 1004 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.603088 -s 10 -d 7 -p ack -e 40 -c 0 -i 1008 -a 0 -x {10.0 9.0 499 ------- null} + -t 0.603088 -s 7 -d 0 -p ack -e 40 -c 0 -i 1008 -a 0 -x {10.0 9.0 499 ------- null} h -t 0.603088 -s 7 -d 8 -p ack -e 40 -c 0 -i 1008 -a 0 -x {10.0 9.0 499 ------- null} r -t 0.6032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1007 -a 0 -x {9.0 10.0 508 ------- null} + -t 0.6032 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1007 -a 0 -x {9.0 10.0 508 ------- null} h -t 0.6032 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1007 -a 0 -x {9.0 10.0 508 ------- null} r -t 0.603232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 993 -a 0 -x {9.0 10.0 501 ------- null} + -t 0.603232 -s 10 -d 7 -p ack -e 40 -c 0 -i 1012 -a 0 -x {10.0 9.0 501 ------- null} - -t 0.603232 -s 10 -d 7 -p ack -e 40 -c 0 -i 1012 -a 0 -x {10.0 9.0 501 ------- null} h -t 0.603232 -s 10 -d 7 -p ack -e 40 -c 0 -i 1012 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.60368 -s 0 -d 9 -p ack -e 40 -c 0 -i 1002 -a 0 -x {10.0 9.0 496 ------- null} + -t 0.60368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1013 -a 0 -x {9.0 10.0 511 ------- null} - -t 0.60368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1013 -a 0 -x {9.0 10.0 511 ------- null} h -t 0.60368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1013 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.603696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {9.0 10.0 504 ------- null} - -t 0.603696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {9.0 10.0 504 ------- null} h -t 0.603696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.603808 -s 0 -d 9 -p ack -e 40 -c 0 -i 1006 -a 0 -x {10.0 9.0 498 ------- null} - -t 0.603808 -s 0 -d 9 -p ack -e 40 -c 0 -i 1006 -a 0 -x {10.0 9.0 498 ------- null} h -t 0.603808 -s 0 -d 9 -p ack -e 40 -c 0 -i 1006 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.604176 -s 10 -d 7 -p ack -e 40 -c 0 -i 1010 -a 0 -x {10.0 9.0 500 ------- null} + -t 0.604176 -s 7 -d 0 -p ack -e 40 -c 0 -i 1010 -a 0 -x {10.0 9.0 500 ------- null} h -t 0.604176 -s 7 -d 8 -p ack -e 40 -c 0 -i 1010 -a 0 -x {10.0 9.0 500 ------- null} r -t 0.604304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1009 -a 0 -x {9.0 10.0 509 ------- null} + -t 0.604304 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1009 -a 0 -x {9.0 10.0 509 ------- null} h -t 0.604304 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1009 -a 0 -x {9.0 10.0 509 ------- null} r -t 0.60432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 995 -a 0 -x {9.0 10.0 502 ------- null} + -t 0.60432 -s 10 -d 7 -p ack -e 40 -c 0 -i 1014 -a 0 -x {10.0 9.0 502 ------- null} - -t 0.60432 -s 10 -d 7 -p ack -e 40 -c 0 -i 1014 -a 0 -x {10.0 9.0 502 ------- null} h -t 0.60432 -s 10 -d 7 -p ack -e 40 -c 0 -i 1014 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.604784 -s 0 -d 9 -p ack -e 40 -c 0 -i 1004 -a 0 -x {10.0 9.0 497 ------- null} + -t 0.604784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1015 -a 0 -x {9.0 10.0 512 ------- null} - -t 0.604784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1015 -a 0 -x {9.0 10.0 512 ------- null} h -t 0.604784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1015 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.604784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {9.0 10.0 505 ------- null} - -t 0.604784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {9.0 10.0 505 ------- null} h -t 0.604784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.604928 -s 0 -d 9 -p ack -e 40 -c 0 -i 1008 -a 0 -x {10.0 9.0 499 ------- null} - -t 0.604928 -s 0 -d 9 -p ack -e 40 -c 0 -i 1008 -a 0 -x {10.0 9.0 499 ------- null} h -t 0.604928 -s 0 -d 9 -p ack -e 40 -c 0 -i 1008 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.605264 -s 10 -d 7 -p ack -e 40 -c 0 -i 1012 -a 0 -x {10.0 9.0 501 ------- null} + -t 0.605264 -s 7 -d 0 -p ack -e 40 -c 0 -i 1012 -a 0 -x {10.0 9.0 501 ------- null} h -t 0.605264 -s 7 -d 8 -p ack -e 40 -c 0 -i 1012 -a 0 -x {10.0 9.0 501 ------- null} r -t 0.605408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 997 -a 0 -x {9.0 10.0 503 ------- null} + -t 0.605408 -s 10 -d 7 -p ack -e 40 -c 0 -i 1016 -a 0 -x {10.0 9.0 503 ------- null} - -t 0.605408 -s 10 -d 7 -p ack -e 40 -c 0 -i 1016 -a 0 -x {10.0 9.0 503 ------- null} h -t 0.605408 -s 10 -d 7 -p ack -e 40 -c 0 -i 1016 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.605456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1011 -a 0 -x {9.0 10.0 510 ------- null} + -t 0.605456 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1011 -a 0 -x {9.0 10.0 510 ------- null} h -t 0.605456 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1011 -a 0 -x {9.0 10.0 510 ------- null} r -t 0.60584 -s 0 -d 9 -p ack -e 40 -c 0 -i 1006 -a 0 -x {10.0 9.0 498 ------- null} + -t 0.60584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1017 -a 0 -x {9.0 10.0 513 ------- null} - -t 0.60584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1017 -a 0 -x {9.0 10.0 513 ------- null} h -t 0.60584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1017 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.605872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1003 -a 0 -x {9.0 10.0 506 ------- null} - -t 0.605872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1003 -a 0 -x {9.0 10.0 506 ------- null} h -t 0.605872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1003 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.606032 -s 0 -d 9 -p ack -e 40 -c 0 -i 1010 -a 0 -x {10.0 9.0 500 ------- null} - -t 0.606032 -s 0 -d 9 -p ack -e 40 -c 0 -i 1010 -a 0 -x {10.0 9.0 500 ------- null} h -t 0.606032 -s 0 -d 9 -p ack -e 40 -c 0 -i 1010 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.606352 -s 10 -d 7 -p ack -e 40 -c 0 -i 1014 -a 0 -x {10.0 9.0 502 ------- null} + -t 0.606352 -s 7 -d 0 -p ack -e 40 -c 0 -i 1014 -a 0 -x {10.0 9.0 502 ------- null} h -t 0.606352 -s 7 -d 8 -p ack -e 40 -c 0 -i 1014 -a 0 -x {10.0 9.0 502 ------- null} r -t 0.60648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1013 -a 0 -x {9.0 10.0 511 ------- null} + -t 0.60648 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1013 -a 0 -x {9.0 10.0 511 ------- null} h -t 0.60648 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1013 -a 0 -x {9.0 10.0 511 ------- null} r -t 0.606496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 999 -a 0 -x {9.0 10.0 504 ------- null} + -t 0.606496 -s 10 -d 7 -p ack -e 40 -c 0 -i 1018 -a 0 -x {10.0 9.0 504 ------- null} - -t 0.606496 -s 10 -d 7 -p ack -e 40 -c 0 -i 1018 -a 0 -x {10.0 9.0 504 ------- null} h -t 0.606496 -s 10 -d 7 -p ack -e 40 -c 0 -i 1018 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.60696 -s 0 -d 9 -p ack -e 40 -c 0 -i 1008 -a 0 -x {10.0 9.0 499 ------- null} + -t 0.60696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1019 -a 0 -x {9.0 10.0 514 ------- null} - -t 0.60696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1019 -a 0 -x {9.0 10.0 514 ------- null} h -t 0.60696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1019 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.60696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1005 -a 0 -x {9.0 10.0 507 ------- null} - -t 0.60696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1005 -a 0 -x {9.0 10.0 507 ------- null} h -t 0.60696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1005 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.607264 -s 0 -d 9 -p ack -e 40 -c 0 -i 1012 -a 0 -x {10.0 9.0 501 ------- null} - -t 0.607264 -s 0 -d 9 -p ack -e 40 -c 0 -i 1012 -a 0 -x {10.0 9.0 501 ------- null} h -t 0.607264 -s 0 -d 9 -p ack -e 40 -c 0 -i 1012 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.60744 -s 10 -d 7 -p ack -e 40 -c 0 -i 1016 -a 0 -x {10.0 9.0 503 ------- null} + -t 0.60744 -s 7 -d 0 -p ack -e 40 -c 0 -i 1016 -a 0 -x {10.0 9.0 503 ------- null} h -t 0.60744 -s 7 -d 8 -p ack -e 40 -c 0 -i 1016 -a 0 -x {10.0 9.0 503 ------- null} r -t 0.607584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1015 -a 0 -x {9.0 10.0 512 ------- null} + -t 0.607584 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1015 -a 0 -x {9.0 10.0 512 ------- null} h -t 0.607584 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1015 -a 0 -x {9.0 10.0 512 ------- null} r -t 0.607584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1001 -a 0 -x {9.0 10.0 505 ------- null} + -t 0.607584 -s 10 -d 7 -p ack -e 40 -c 0 -i 1020 -a 0 -x {10.0 9.0 505 ------- null} - -t 0.607584 -s 10 -d 7 -p ack -e 40 -c 0 -i 1020 -a 0 -x {10.0 9.0 505 ------- null} h -t 0.607584 -s 10 -d 7 -p ack -e 40 -c 0 -i 1020 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.608064 -s 0 -d 9 -p ack -e 40 -c 0 -i 1010 -a 0 -x {10.0 9.0 500 ------- null} + -t 0.608064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1021 -a 0 -x {9.0 10.0 515 ------- null} - -t 0.608064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1021 -a 0 -x {9.0 10.0 515 ------- null} h -t 0.608064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1021 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.608096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1007 -a 0 -x {9.0 10.0 508 ------- null} - -t 0.608096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1007 -a 0 -x {9.0 10.0 508 ------- null} h -t 0.608096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1007 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.608256 -s 0 -d 9 -p ack -e 40 -c 0 -i 1014 -a 0 -x {10.0 9.0 502 ------- null} - -t 0.608256 -s 0 -d 9 -p ack -e 40 -c 0 -i 1014 -a 0 -x {10.0 9.0 502 ------- null} h -t 0.608256 -s 0 -d 9 -p ack -e 40 -c 0 -i 1014 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.608528 -s 10 -d 7 -p ack -e 40 -c 0 -i 1018 -a 0 -x {10.0 9.0 504 ------- null} + -t 0.608528 -s 7 -d 0 -p ack -e 40 -c 0 -i 1018 -a 0 -x {10.0 9.0 504 ------- null} h -t 0.608528 -s 7 -d 8 -p ack -e 40 -c 0 -i 1018 -a 0 -x {10.0 9.0 504 ------- null} r -t 0.60864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1017 -a 0 -x {9.0 10.0 513 ------- null} + -t 0.60864 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1017 -a 0 -x {9.0 10.0 513 ------- null} h -t 0.60864 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1017 -a 0 -x {9.0 10.0 513 ------- null} r -t 0.608672 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1003 -a 0 -x {9.0 10.0 506 ------- null} + -t 0.608672 -s 10 -d 7 -p ack -e 40 -c 0 -i 1022 -a 0 -x {10.0 9.0 506 ------- null} - -t 0.608672 -s 10 -d 7 -p ack -e 40 -c 0 -i 1022 -a 0 -x {10.0 9.0 506 ------- null} h -t 0.608672 -s 10 -d 7 -p ack -e 40 -c 0 -i 1022 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.609184 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1009 -a 0 -x {9.0 10.0 509 ------- null} - -t 0.609184 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1009 -a 0 -x {9.0 10.0 509 ------- null} h -t 0.609184 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1009 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.609296 -s 0 -d 9 -p ack -e 40 -c 0 -i 1012 -a 0 -x {10.0 9.0 501 ------- null} + -t 0.609296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {9.0 10.0 516 ------- null} - -t 0.609296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {9.0 10.0 516 ------- null} h -t 0.609296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.609424 -s 0 -d 9 -p ack -e 40 -c 0 -i 1016 -a 0 -x {10.0 9.0 503 ------- null} - -t 0.609424 -s 0 -d 9 -p ack -e 40 -c 0 -i 1016 -a 0 -x {10.0 9.0 503 ------- null} h -t 0.609424 -s 0 -d 9 -p ack -e 40 -c 0 -i 1016 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.609616 -s 10 -d 7 -p ack -e 40 -c 0 -i 1020 -a 0 -x {10.0 9.0 505 ------- null} + -t 0.609616 -s 7 -d 0 -p ack -e 40 -c 0 -i 1020 -a 0 -x {10.0 9.0 505 ------- null} h -t 0.609616 -s 7 -d 8 -p ack -e 40 -c 0 -i 1020 -a 0 -x {10.0 9.0 505 ------- null} r -t 0.60976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1019 -a 0 -x {9.0 10.0 514 ------- null} + -t 0.60976 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1019 -a 0 -x {9.0 10.0 514 ------- null} h -t 0.60976 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1019 -a 0 -x {9.0 10.0 514 ------- null} r -t 0.60976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1005 -a 0 -x {9.0 10.0 507 ------- null} + -t 0.60976 -s 10 -d 7 -p ack -e 40 -c 0 -i 1024 -a 0 -x {10.0 9.0 507 ------- null} - -t 0.60976 -s 10 -d 7 -p ack -e 40 -c 0 -i 1024 -a 0 -x {10.0 9.0 507 ------- null} h -t 0.60976 -s 10 -d 7 -p ack -e 40 -c 0 -i 1024 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.610272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1011 -a 0 -x {9.0 10.0 510 ------- null} - -t 0.610272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1011 -a 0 -x {9.0 10.0 510 ------- null} h -t 0.610272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1011 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.610288 -s 0 -d 9 -p ack -e 40 -c 0 -i 1014 -a 0 -x {10.0 9.0 502 ------- null} + -t 0.610288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {9.0 10.0 517 ------- null} - -t 0.610288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {9.0 10.0 517 ------- null} h -t 0.610288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.610544 -s 0 -d 9 -p ack -e 40 -c 0 -i 1018 -a 0 -x {10.0 9.0 504 ------- null} - -t 0.610544 -s 0 -d 9 -p ack -e 40 -c 0 -i 1018 -a 0 -x {10.0 9.0 504 ------- null} h -t 0.610544 -s 0 -d 9 -p ack -e 40 -c 0 -i 1018 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.610704 -s 10 -d 7 -p ack -e 40 -c 0 -i 1022 -a 0 -x {10.0 9.0 506 ------- null} + -t 0.610704 -s 7 -d 0 -p ack -e 40 -c 0 -i 1022 -a 0 -x {10.0 9.0 506 ------- null} h -t 0.610704 -s 7 -d 8 -p ack -e 40 -c 0 -i 1022 -a 0 -x {10.0 9.0 506 ------- null} r -t 0.610864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1021 -a 0 -x {9.0 10.0 515 ------- null} + -t 0.610864 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1021 -a 0 -x {9.0 10.0 515 ------- null} h -t 0.610864 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1021 -a 0 -x {9.0 10.0 515 ------- null} r -t 0.610896 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1007 -a 0 -x {9.0 10.0 508 ------- null} + -t 0.610896 -s 10 -d 7 -p ack -e 40 -c 0 -i 1026 -a 0 -x {10.0 9.0 508 ------- null} - -t 0.610896 -s 10 -d 7 -p ack -e 40 -c 0 -i 1026 -a 0 -x {10.0 9.0 508 ------- null} h -t 0.610896 -s 10 -d 7 -p ack -e 40 -c 0 -i 1026 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.611424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1013 -a 0 -x {9.0 10.0 511 ------- null} - -t 0.611424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1013 -a 0 -x {9.0 10.0 511 ------- null} h -t 0.611424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1013 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.611456 -s 0 -d 9 -p ack -e 40 -c 0 -i 1016 -a 0 -x {10.0 9.0 503 ------- null} + -t 0.611456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {9.0 10.0 518 ------- null} - -t 0.611456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {9.0 10.0 518 ------- null} h -t 0.611456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.611728 -s 0 -d 9 -p ack -e 40 -c 0 -i 1020 -a 0 -x {10.0 9.0 505 ------- null} - -t 0.611728 -s 0 -d 9 -p ack -e 40 -c 0 -i 1020 -a 0 -x {10.0 9.0 505 ------- null} h -t 0.611728 -s 0 -d 9 -p ack -e 40 -c 0 -i 1020 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.611792 -s 10 -d 7 -p ack -e 40 -c 0 -i 1024 -a 0 -x {10.0 9.0 507 ------- null} + -t 0.611792 -s 7 -d 0 -p ack -e 40 -c 0 -i 1024 -a 0 -x {10.0 9.0 507 ------- null} h -t 0.611792 -s 7 -d 8 -p ack -e 40 -c 0 -i 1024 -a 0 -x {10.0 9.0 507 ------- null} r -t 0.611984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1009 -a 0 -x {9.0 10.0 509 ------- null} + -t 0.611984 -s 10 -d 7 -p ack -e 40 -c 0 -i 1028 -a 0 -x {10.0 9.0 509 ------- null} - -t 0.611984 -s 10 -d 7 -p ack -e 40 -c 0 -i 1028 -a 0 -x {10.0 9.0 509 ------- null} h -t 0.611984 -s 10 -d 7 -p ack -e 40 -c 0 -i 1028 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.612096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {9.0 10.0 516 ------- null} + -t 0.612096 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {9.0 10.0 516 ------- null} h -t 0.612096 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {9.0 10.0 516 ------- null} r -t 0.612576 -s 0 -d 9 -p ack -e 40 -c 0 -i 1018 -a 0 -x {10.0 9.0 504 ------- null} + -t 0.612576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {9.0 10.0 519 ------- null} - -t 0.612576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {9.0 10.0 519 ------- null} h -t 0.612576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.612608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1015 -a 0 -x {9.0 10.0 512 ------- null} - -t 0.612608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1015 -a 0 -x {9.0 10.0 512 ------- null} h -t 0.612608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1015 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.61288 -s 0 -d 9 -p ack -e 40 -c 0 -i 1022 -a 0 -x {10.0 9.0 506 ------- null} - -t 0.61288 -s 0 -d 9 -p ack -e 40 -c 0 -i 1022 -a 0 -x {10.0 9.0 506 ------- null} h -t 0.61288 -s 0 -d 9 -p ack -e 40 -c 0 -i 1022 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.612928 -s 10 -d 7 -p ack -e 40 -c 0 -i 1026 -a 0 -x {10.0 9.0 508 ------- null} + -t 0.612928 -s 7 -d 0 -p ack -e 40 -c 0 -i 1026 -a 0 -x {10.0 9.0 508 ------- null} h -t 0.612928 -s 7 -d 8 -p ack -e 40 -c 0 -i 1026 -a 0 -x {10.0 9.0 508 ------- null} r -t 0.613072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1011 -a 0 -x {9.0 10.0 510 ------- null} + -t 0.613072 -s 10 -d 7 -p ack -e 40 -c 0 -i 1030 -a 0 -x {10.0 9.0 510 ------- null} - -t 0.613072 -s 10 -d 7 -p ack -e 40 -c 0 -i 1030 -a 0 -x {10.0 9.0 510 ------- null} h -t 0.613072 -s 10 -d 7 -p ack -e 40 -c 0 -i 1030 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.613088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {9.0 10.0 517 ------- null} + -t 0.613088 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {9.0 10.0 517 ------- null} h -t 0.613088 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {9.0 10.0 517 ------- null} r -t 0.61376 -s 0 -d 9 -p ack -e 40 -c 0 -i 1020 -a 0 -x {10.0 9.0 505 ------- null} + -t 0.61376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {9.0 10.0 520 ------- null} - -t 0.61376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {9.0 10.0 520 ------- null} h -t 0.61376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.613888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1017 -a 0 -x {9.0 10.0 513 ------- null} - -t 0.613888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1017 -a 0 -x {9.0 10.0 513 ------- null} h -t 0.613888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1017 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.614016 -s 10 -d 7 -p ack -e 40 -c 0 -i 1028 -a 0 -x {10.0 9.0 509 ------- null} + -t 0.614016 -s 7 -d 0 -p ack -e 40 -c 0 -i 1028 -a 0 -x {10.0 9.0 509 ------- null} h -t 0.614016 -s 7 -d 8 -p ack -e 40 -c 0 -i 1028 -a 0 -x {10.0 9.0 509 ------- null} + -t 0.614096 -s 0 -d 9 -p ack -e 40 -c 0 -i 1024 -a 0 -x {10.0 9.0 507 ------- null} - -t 0.614096 -s 0 -d 9 -p ack -e 40 -c 0 -i 1024 -a 0 -x {10.0 9.0 507 ------- null} h -t 0.614096 -s 0 -d 9 -p ack -e 40 -c 0 -i 1024 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.614224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1013 -a 0 -x {9.0 10.0 511 ------- null} + -t 0.614224 -s 10 -d 7 -p ack -e 40 -c 0 -i 1032 -a 0 -x {10.0 9.0 511 ------- null} - -t 0.614224 -s 10 -d 7 -p ack -e 40 -c 0 -i 1032 -a 0 -x {10.0 9.0 511 ------- null} h -t 0.614224 -s 10 -d 7 -p ack -e 40 -c 0 -i 1032 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.614256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {9.0 10.0 518 ------- null} + -t 0.614256 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {9.0 10.0 518 ------- null} h -t 0.614256 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {9.0 10.0 518 ------- null} r -t 0.614912 -s 0 -d 9 -p ack -e 40 -c 0 -i 1022 -a 0 -x {10.0 9.0 506 ------- null} + -t 0.614912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {9.0 10.0 521 ------- null} - -t 0.614912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {9.0 10.0 521 ------- null} h -t 0.614912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.614976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1019 -a 0 -x {9.0 10.0 514 ------- null} - -t 0.614976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1019 -a 0 -x {9.0 10.0 514 ------- null} h -t 0.614976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1019 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.615104 -s 10 -d 7 -p ack -e 40 -c 0 -i 1030 -a 0 -x {10.0 9.0 510 ------- null} + -t 0.615104 -s 7 -d 0 -p ack -e 40 -c 0 -i 1030 -a 0 -x {10.0 9.0 510 ------- null} h -t 0.615104 -s 7 -d 8 -p ack -e 40 -c 0 -i 1030 -a 0 -x {10.0 9.0 510 ------- null} + -t 0.615232 -s 0 -d 9 -p ack -e 40 -c 0 -i 1026 -a 0 -x {10.0 9.0 508 ------- null} - -t 0.615232 -s 0 -d 9 -p ack -e 40 -c 0 -i 1026 -a 0 -x {10.0 9.0 508 ------- null} h -t 0.615232 -s 0 -d 9 -p ack -e 40 -c 0 -i 1026 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.615376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {9.0 10.0 519 ------- null} + -t 0.615376 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {9.0 10.0 519 ------- null} h -t 0.615376 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {9.0 10.0 519 ------- null} r -t 0.615408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1015 -a 0 -x {9.0 10.0 512 ------- null} + -t 0.615408 -s 10 -d 7 -p ack -e 40 -c 0 -i 1034 -a 0 -x {10.0 9.0 512 ------- null} - -t 0.615408 -s 10 -d 7 -p ack -e 40 -c 0 -i 1034 -a 0 -x {10.0 9.0 512 ------- null} h -t 0.615408 -s 10 -d 7 -p ack -e 40 -c 0 -i 1034 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.616064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1021 -a 0 -x {9.0 10.0 515 ------- null} - -t 0.616064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1021 -a 0 -x {9.0 10.0 515 ------- null} h -t 0.616064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1021 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.616128 -s 0 -d 9 -p ack -e 40 -c 0 -i 1024 -a 0 -x {10.0 9.0 507 ------- null} + -t 0.616128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {9.0 10.0 522 ------- null} - -t 0.616128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {9.0 10.0 522 ------- null} h -t 0.616128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.616256 -s 10 -d 7 -p ack -e 40 -c 0 -i 1032 -a 0 -x {10.0 9.0 511 ------- null} + -t 0.616256 -s 7 -d 0 -p ack -e 40 -c 0 -i 1032 -a 0 -x {10.0 9.0 511 ------- null} h -t 0.616256 -s 7 -d 8 -p ack -e 40 -c 0 -i 1032 -a 0 -x {10.0 9.0 511 ------- null} + -t 0.616304 -s 0 -d 9 -p ack -e 40 -c 0 -i 1028 -a 0 -x {10.0 9.0 509 ------- null} - -t 0.616304 -s 0 -d 9 -p ack -e 40 -c 0 -i 1028 -a 0 -x {10.0 9.0 509 ------- null} h -t 0.616304 -s 0 -d 9 -p ack -e 40 -c 0 -i 1028 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.61656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {9.0 10.0 520 ------- null} + -t 0.61656 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {9.0 10.0 520 ------- null} h -t 0.61656 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {9.0 10.0 520 ------- null} r -t 0.616688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1017 -a 0 -x {9.0 10.0 513 ------- null} + -t 0.616688 -s 10 -d 7 -p ack -e 40 -c 0 -i 1036 -a 0 -x {10.0 9.0 513 ------- null} - -t 0.616688 -s 10 -d 7 -p ack -e 40 -c 0 -i 1036 -a 0 -x {10.0 9.0 513 ------- null} h -t 0.616688 -s 10 -d 7 -p ack -e 40 -c 0 -i 1036 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.617152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {9.0 10.0 516 ------- null} - -t 0.617152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {9.0 10.0 516 ------- null} h -t 0.617152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.617264 -s 0 -d 9 -p ack -e 40 -c 0 -i 1026 -a 0 -x {10.0 9.0 508 ------- null} + -t 0.617264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {9.0 10.0 523 ------- null} - -t 0.617264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {9.0 10.0 523 ------- null} h -t 0.617264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.617424 -s 0 -d 9 -p ack -e 40 -c 0 -i 1030 -a 0 -x {10.0 9.0 510 ------- null} - -t 0.617424 -s 0 -d 9 -p ack -e 40 -c 0 -i 1030 -a 0 -x {10.0 9.0 510 ------- null} h -t 0.617424 -s 0 -d 9 -p ack -e 40 -c 0 -i 1030 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.61744 -s 10 -d 7 -p ack -e 40 -c 0 -i 1034 -a 0 -x {10.0 9.0 512 ------- null} + -t 0.61744 -s 7 -d 0 -p ack -e 40 -c 0 -i 1034 -a 0 -x {10.0 9.0 512 ------- null} h -t 0.61744 -s 7 -d 8 -p ack -e 40 -c 0 -i 1034 -a 0 -x {10.0 9.0 512 ------- null} r -t 0.617712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {9.0 10.0 521 ------- null} + -t 0.617712 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {9.0 10.0 521 ------- null} h -t 0.617712 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {9.0 10.0 521 ------- null} r -t 0.617776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1019 -a 0 -x {9.0 10.0 514 ------- null} + -t 0.617776 -s 10 -d 7 -p ack -e 40 -c 0 -i 1038 -a 0 -x {10.0 9.0 514 ------- null} - -t 0.617776 -s 10 -d 7 -p ack -e 40 -c 0 -i 1038 -a 0 -x {10.0 9.0 514 ------- null} h -t 0.617776 -s 10 -d 7 -p ack -e 40 -c 0 -i 1038 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.618336 -s 0 -d 9 -p ack -e 40 -c 0 -i 1028 -a 0 -x {10.0 9.0 509 ------- null} + -t 0.618336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {9.0 10.0 524 ------- null} - -t 0.618336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {9.0 10.0 524 ------- null} h -t 0.618336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.618336 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {9.0 10.0 517 ------- null} - -t 0.618336 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {9.0 10.0 517 ------- null} h -t 0.618336 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.618416 -s 0 -d 9 -p ack -e 40 -c 0 -i 1032 -a 0 -x {10.0 9.0 511 ------- null} - -t 0.618416 -s 0 -d 9 -p ack -e 40 -c 0 -i 1032 -a 0 -x {10.0 9.0 511 ------- null} h -t 0.618416 -s 0 -d 9 -p ack -e 40 -c 0 -i 1032 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.61872 -s 10 -d 7 -p ack -e 40 -c 0 -i 1036 -a 0 -x {10.0 9.0 513 ------- null} + -t 0.61872 -s 7 -d 0 -p ack -e 40 -c 0 -i 1036 -a 0 -x {10.0 9.0 513 ------- null} h -t 0.61872 -s 7 -d 8 -p ack -e 40 -c 0 -i 1036 -a 0 -x {10.0 9.0 513 ------- null} r -t 0.618864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1021 -a 0 -x {9.0 10.0 515 ------- null} + -t 0.618864 -s 10 -d 7 -p ack -e 40 -c 0 -i 1040 -a 0 -x {10.0 9.0 515 ------- null} - -t 0.618864 -s 10 -d 7 -p ack -e 40 -c 0 -i 1040 -a 0 -x {10.0 9.0 515 ------- null} h -t 0.618864 -s 10 -d 7 -p ack -e 40 -c 0 -i 1040 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.618928 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {9.0 10.0 522 ------- null} + -t 0.618928 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {9.0 10.0 522 ------- null} h -t 0.618928 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {9.0 10.0 522 ------- null} + -t 0.619424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {9.0 10.0 518 ------- null} - -t 0.619424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {9.0 10.0 518 ------- null} h -t 0.619424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.619456 -s 0 -d 9 -p ack -e 40 -c 0 -i 1030 -a 0 -x {10.0 9.0 510 ------- null} + -t 0.619456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {9.0 10.0 525 ------- null} - -t 0.619456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {9.0 10.0 525 ------- null} h -t 0.619456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.619712 -s 0 -d 9 -p ack -e 40 -c 0 -i 1034 -a 0 -x {10.0 9.0 512 ------- null} - -t 0.619712 -s 0 -d 9 -p ack -e 40 -c 0 -i 1034 -a 0 -x {10.0 9.0 512 ------- null} h -t 0.619712 -s 0 -d 9 -p ack -e 40 -c 0 -i 1034 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.619808 -s 10 -d 7 -p ack -e 40 -c 0 -i 1038 -a 0 -x {10.0 9.0 514 ------- null} + -t 0.619808 -s 7 -d 0 -p ack -e 40 -c 0 -i 1038 -a 0 -x {10.0 9.0 514 ------- null} h -t 0.619808 -s 7 -d 8 -p ack -e 40 -c 0 -i 1038 -a 0 -x {10.0 9.0 514 ------- null} r -t 0.619952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1023 -a 0 -x {9.0 10.0 516 ------- null} + -t 0.619952 -s 10 -d 7 -p ack -e 40 -c 0 -i 1042 -a 0 -x {10.0 9.0 516 ------- null} - -t 0.619952 -s 10 -d 7 -p ack -e 40 -c 0 -i 1042 -a 0 -x {10.0 9.0 516 ------- null} h -t 0.619952 -s 10 -d 7 -p ack -e 40 -c 0 -i 1042 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.620064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {9.0 10.0 523 ------- null} + -t 0.620064 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {9.0 10.0 523 ------- null} h -t 0.620064 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {9.0 10.0 523 ------- null} r -t 0.620448 -s 0 -d 9 -p ack -e 40 -c 0 -i 1032 -a 0 -x {10.0 9.0 511 ------- null} + -t 0.620448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1043 -a 0 -x {9.0 10.0 526 ------- null} - -t 0.620448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1043 -a 0 -x {9.0 10.0 526 ------- null} h -t 0.620448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1043 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.62056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {9.0 10.0 519 ------- null} - -t 0.62056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {9.0 10.0 519 ------- null} h -t 0.62056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.620752 -s 0 -d 9 -p ack -e 40 -c 0 -i 1036 -a 0 -x {10.0 9.0 513 ------- null} - -t 0.620752 -s 0 -d 9 -p ack -e 40 -c 0 -i 1036 -a 0 -x {10.0 9.0 513 ------- null} h -t 0.620752 -s 0 -d 9 -p ack -e 40 -c 0 -i 1036 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.620896 -s 10 -d 7 -p ack -e 40 -c 0 -i 1040 -a 0 -x {10.0 9.0 515 ------- null} + -t 0.620896 -s 7 -d 0 -p ack -e 40 -c 0 -i 1040 -a 0 -x {10.0 9.0 515 ------- null} h -t 0.620896 -s 7 -d 8 -p ack -e 40 -c 0 -i 1040 -a 0 -x {10.0 9.0 515 ------- null} r -t 0.621136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {9.0 10.0 524 ------- null} + -t 0.621136 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {9.0 10.0 524 ------- null} h -t 0.621136 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {9.0 10.0 524 ------- null} r -t 0.621136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1025 -a 0 -x {9.0 10.0 517 ------- null} + -t 0.621136 -s 10 -d 7 -p ack -e 40 -c 0 -i 1044 -a 0 -x {10.0 9.0 517 ------- null} - -t 0.621136 -s 10 -d 7 -p ack -e 40 -c 0 -i 1044 -a 0 -x {10.0 9.0 517 ------- null} h -t 0.621136 -s 10 -d 7 -p ack -e 40 -c 0 -i 1044 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.621648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {9.0 10.0 520 ------- null} - -t 0.621648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {9.0 10.0 520 ------- null} h -t 0.621648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.621728 -s 0 -d 9 -p ack -e 40 -c 0 -i 1038 -a 0 -x {10.0 9.0 514 ------- null} - -t 0.621728 -s 0 -d 9 -p ack -e 40 -c 0 -i 1038 -a 0 -x {10.0 9.0 514 ------- null} h -t 0.621728 -s 0 -d 9 -p ack -e 40 -c 0 -i 1038 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.621744 -s 0 -d 9 -p ack -e 40 -c 0 -i 1034 -a 0 -x {10.0 9.0 512 ------- null} + -t 0.621744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1045 -a 0 -x {9.0 10.0 527 ------- null} - -t 0.621744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1045 -a 0 -x {9.0 10.0 527 ------- null} h -t 0.621744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1045 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.621984 -s 10 -d 7 -p ack -e 40 -c 0 -i 1042 -a 0 -x {10.0 9.0 516 ------- null} + -t 0.621984 -s 7 -d 0 -p ack -e 40 -c 0 -i 1042 -a 0 -x {10.0 9.0 516 ------- null} h -t 0.621984 -s 7 -d 8 -p ack -e 40 -c 0 -i 1042 -a 0 -x {10.0 9.0 516 ------- null} r -t 0.622224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1027 -a 0 -x {9.0 10.0 518 ------- null} + -t 0.622224 -s 10 -d 7 -p ack -e 40 -c 0 -i 1046 -a 0 -x {10.0 9.0 518 ------- null} - -t 0.622224 -s 10 -d 7 -p ack -e 40 -c 0 -i 1046 -a 0 -x {10.0 9.0 518 ------- null} h -t 0.622224 -s 10 -d 7 -p ack -e 40 -c 0 -i 1046 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.622256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {9.0 10.0 525 ------- null} + -t 0.622256 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {9.0 10.0 525 ------- null} h -t 0.622256 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {9.0 10.0 525 ------- null} + -t 0.622736 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {9.0 10.0 521 ------- null} - -t 0.622736 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {9.0 10.0 521 ------- null} h -t 0.622736 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.622784 -s 0 -d 9 -p ack -e 40 -c 0 -i 1036 -a 0 -x {10.0 9.0 513 ------- null} + -t 0.622784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1047 -a 0 -x {9.0 10.0 528 ------- null} - -t 0.622784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1047 -a 0 -x {9.0 10.0 528 ------- null} h -t 0.622784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1047 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.622896 -s 0 -d 9 -p ack -e 40 -c 0 -i 1040 -a 0 -x {10.0 9.0 515 ------- null} - -t 0.622896 -s 0 -d 9 -p ack -e 40 -c 0 -i 1040 -a 0 -x {10.0 9.0 515 ------- null} h -t 0.622896 -s 0 -d 9 -p ack -e 40 -c 0 -i 1040 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.623168 -s 10 -d 7 -p ack -e 40 -c 0 -i 1044 -a 0 -x {10.0 9.0 517 ------- null} + -t 0.623168 -s 7 -d 0 -p ack -e 40 -c 0 -i 1044 -a 0 -x {10.0 9.0 517 ------- null} h -t 0.623168 -s 7 -d 8 -p ack -e 40 -c 0 -i 1044 -a 0 -x {10.0 9.0 517 ------- null} r -t 0.623248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1043 -a 0 -x {9.0 10.0 526 ------- null} + -t 0.623248 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1043 -a 0 -x {9.0 10.0 526 ------- null} h -t 0.623248 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1043 -a 0 -x {9.0 10.0 526 ------- null} r -t 0.62336 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1029 -a 0 -x {9.0 10.0 519 ------- null} + -t 0.62336 -s 10 -d 7 -p ack -e 40 -c 0 -i 1048 -a 0 -x {10.0 9.0 519 ------- null} - -t 0.62336 -s 10 -d 7 -p ack -e 40 -c 0 -i 1048 -a 0 -x {10.0 9.0 519 ------- null} h -t 0.62336 -s 10 -d 7 -p ack -e 40 -c 0 -i 1048 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.62376 -s 0 -d 9 -p ack -e 40 -c 0 -i 1038 -a 0 -x {10.0 9.0 514 ------- null} + -t 0.62376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1049 -a 0 -x {9.0 10.0 529 ------- null} - -t 0.62376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1049 -a 0 -x {9.0 10.0 529 ------- null} h -t 0.62376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1049 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.623824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {9.0 10.0 522 ------- null} - -t 0.623824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {9.0 10.0 522 ------- null} h -t 0.623824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.623904 -s 0 -d 9 -p ack -e 40 -c 0 -i 1042 -a 0 -x {10.0 9.0 516 ------- null} - -t 0.623904 -s 0 -d 9 -p ack -e 40 -c 0 -i 1042 -a 0 -x {10.0 9.0 516 ------- null} h -t 0.623904 -s 0 -d 9 -p ack -e 40 -c 0 -i 1042 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.624256 -s 10 -d 7 -p ack -e 40 -c 0 -i 1046 -a 0 -x {10.0 9.0 518 ------- null} + -t 0.624256 -s 7 -d 0 -p ack -e 40 -c 0 -i 1046 -a 0 -x {10.0 9.0 518 ------- null} h -t 0.624256 -s 7 -d 8 -p ack -e 40 -c 0 -i 1046 -a 0 -x {10.0 9.0 518 ------- null} r -t 0.624448 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1031 -a 0 -x {9.0 10.0 520 ------- null} + -t 0.624448 -s 10 -d 7 -p ack -e 40 -c 0 -i 1050 -a 0 -x {10.0 9.0 520 ------- null} - -t 0.624448 -s 10 -d 7 -p ack -e 40 -c 0 -i 1050 -a 0 -x {10.0 9.0 520 ------- null} h -t 0.624448 -s 10 -d 7 -p ack -e 40 -c 0 -i 1050 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.624544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1045 -a 0 -x {9.0 10.0 527 ------- null} + -t 0.624544 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1045 -a 0 -x {9.0 10.0 527 ------- null} h -t 0.624544 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1045 -a 0 -x {9.0 10.0 527 ------- null} + -t 0.624912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {9.0 10.0 523 ------- null} - -t 0.624912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {9.0 10.0 523 ------- null} h -t 0.624912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.624928 -s 0 -d 9 -p ack -e 40 -c 0 -i 1040 -a 0 -x {10.0 9.0 515 ------- null} + -t 0.624928 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1051 -a 0 -x {9.0 10.0 530 ------- null} - -t 0.624928 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1051 -a 0 -x {9.0 10.0 530 ------- null} h -t 0.624928 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1051 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.6252 -s 0 -d 9 -p ack -e 40 -c 0 -i 1044 -a 0 -x {10.0 9.0 517 ------- null} - -t 0.6252 -s 0 -d 9 -p ack -e 40 -c 0 -i 1044 -a 0 -x {10.0 9.0 517 ------- null} h -t 0.6252 -s 0 -d 9 -p ack -e 40 -c 0 -i 1044 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.625392 -s 10 -d 7 -p ack -e 40 -c 0 -i 1048 -a 0 -x {10.0 9.0 519 ------- null} + -t 0.625392 -s 7 -d 0 -p ack -e 40 -c 0 -i 1048 -a 0 -x {10.0 9.0 519 ------- null} h -t 0.625392 -s 7 -d 8 -p ack -e 40 -c 0 -i 1048 -a 0 -x {10.0 9.0 519 ------- null} r -t 0.625536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1033 -a 0 -x {9.0 10.0 521 ------- null} + -t 0.625536 -s 10 -d 7 -p ack -e 40 -c 0 -i 1052 -a 0 -x {10.0 9.0 521 ------- null} - -t 0.625536 -s 10 -d 7 -p ack -e 40 -c 0 -i 1052 -a 0 -x {10.0 9.0 521 ------- null} h -t 0.625536 -s 10 -d 7 -p ack -e 40 -c 0 -i 1052 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.625584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1047 -a 0 -x {9.0 10.0 528 ------- null} + -t 0.625584 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1047 -a 0 -x {9.0 10.0 528 ------- null} h -t 0.625584 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1047 -a 0 -x {9.0 10.0 528 ------- null} r -t 0.625936 -s 0 -d 9 -p ack -e 40 -c 0 -i 1042 -a 0 -x {10.0 9.0 516 ------- null} + -t 0.625936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1053 -a 0 -x {9.0 10.0 531 ------- null} - -t 0.625936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1053 -a 0 -x {9.0 10.0 531 ------- null} h -t 0.625936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1053 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.626256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {9.0 10.0 524 ------- null} - -t 0.626256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {9.0 10.0 524 ------- null} h -t 0.626256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.626432 -s 0 -d 9 -p ack -e 40 -c 0 -i 1046 -a 0 -x {10.0 9.0 518 ------- null} - -t 0.626432 -s 0 -d 9 -p ack -e 40 -c 0 -i 1046 -a 0 -x {10.0 9.0 518 ------- null} h -t 0.626432 -s 0 -d 9 -p ack -e 40 -c 0 -i 1046 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.62648 -s 10 -d 7 -p ack -e 40 -c 0 -i 1050 -a 0 -x {10.0 9.0 520 ------- null} + -t 0.62648 -s 7 -d 0 -p ack -e 40 -c 0 -i 1050 -a 0 -x {10.0 9.0 520 ------- null} h -t 0.62648 -s 7 -d 8 -p ack -e 40 -c 0 -i 1050 -a 0 -x {10.0 9.0 520 ------- null} r -t 0.62656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1049 -a 0 -x {9.0 10.0 529 ------- null} + -t 0.62656 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1049 -a 0 -x {9.0 10.0 529 ------- null} h -t 0.62656 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1049 -a 0 -x {9.0 10.0 529 ------- null} r -t 0.626624 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1035 -a 0 -x {9.0 10.0 522 ------- null} + -t 0.626624 -s 10 -d 7 -p ack -e 40 -c 0 -i 1054 -a 0 -x {10.0 9.0 522 ------- null} - -t 0.626624 -s 10 -d 7 -p ack -e 40 -c 0 -i 1054 -a 0 -x {10.0 9.0 522 ------- null} h -t 0.626624 -s 10 -d 7 -p ack -e 40 -c 0 -i 1054 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.627232 -s 0 -d 9 -p ack -e 40 -c 0 -i 1044 -a 0 -x {10.0 9.0 517 ------- null} + -t 0.627232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1055 -a 0 -x {9.0 10.0 532 ------- null} - -t 0.627232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1055 -a 0 -x {9.0 10.0 532 ------- null} h -t 0.627232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1055 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.627344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {9.0 10.0 525 ------- null} - -t 0.627344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {9.0 10.0 525 ------- null} h -t 0.627344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.62744 -s 0 -d 9 -p ack -e 40 -c 0 -i 1048 -a 0 -x {10.0 9.0 519 ------- null} - -t 0.62744 -s 0 -d 9 -p ack -e 40 -c 0 -i 1048 -a 0 -x {10.0 9.0 519 ------- null} h -t 0.62744 -s 0 -d 9 -p ack -e 40 -c 0 -i 1048 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.627568 -s 10 -d 7 -p ack -e 40 -c 0 -i 1052 -a 0 -x {10.0 9.0 521 ------- null} + -t 0.627568 -s 7 -d 0 -p ack -e 40 -c 0 -i 1052 -a 0 -x {10.0 9.0 521 ------- null} h -t 0.627568 -s 7 -d 8 -p ack -e 40 -c 0 -i 1052 -a 0 -x {10.0 9.0 521 ------- null} r -t 0.627712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1037 -a 0 -x {9.0 10.0 523 ------- null} + -t 0.627712 -s 10 -d 7 -p ack -e 40 -c 0 -i 1056 -a 0 -x {10.0 9.0 523 ------- null} - -t 0.627712 -s 10 -d 7 -p ack -e 40 -c 0 -i 1056 -a 0 -x {10.0 9.0 523 ------- null} h -t 0.627712 -s 10 -d 7 -p ack -e 40 -c 0 -i 1056 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.627728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1051 -a 0 -x {9.0 10.0 530 ------- null} + -t 0.627728 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1051 -a 0 -x {9.0 10.0 530 ------- null} h -t 0.627728 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1051 -a 0 -x {9.0 10.0 530 ------- null} + -t 0.628432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1043 -a 0 -x {9.0 10.0 526 ------- null} - -t 0.628432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1043 -a 0 -x {9.0 10.0 526 ------- null} h -t 0.628432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1043 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.628464 -s 0 -d 9 -p ack -e 40 -c 0 -i 1046 -a 0 -x {10.0 9.0 518 ------- null} + -t 0.628464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1057 -a 0 -x {9.0 10.0 533 ------- null} - -t 0.628464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1057 -a 0 -x {9.0 10.0 533 ------- null} h -t 0.628464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1057 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.628496 -s 0 -d 9 -p ack -e 40 -c 0 -i 1050 -a 0 -x {10.0 9.0 520 ------- null} - -t 0.628496 -s 0 -d 9 -p ack -e 40 -c 0 -i 1050 -a 0 -x {10.0 9.0 520 ------- null} h -t 0.628496 -s 0 -d 9 -p ack -e 40 -c 0 -i 1050 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.628656 -s 10 -d 7 -p ack -e 40 -c 0 -i 1054 -a 0 -x {10.0 9.0 522 ------- null} + -t 0.628656 -s 7 -d 0 -p ack -e 40 -c 0 -i 1054 -a 0 -x {10.0 9.0 522 ------- null} h -t 0.628656 -s 7 -d 8 -p ack -e 40 -c 0 -i 1054 -a 0 -x {10.0 9.0 522 ------- null} r -t 0.628736 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1053 -a 0 -x {9.0 10.0 531 ------- null} + -t 0.628736 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1053 -a 0 -x {9.0 10.0 531 ------- null} h -t 0.628736 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1053 -a 0 -x {9.0 10.0 531 ------- null} r -t 0.629056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1039 -a 0 -x {9.0 10.0 524 ------- null} + -t 0.629056 -s 10 -d 7 -p ack -e 40 -c 0 -i 1058 -a 0 -x {10.0 9.0 524 ------- null} - -t 0.629056 -s 10 -d 7 -p ack -e 40 -c 0 -i 1058 -a 0 -x {10.0 9.0 524 ------- null} h -t 0.629056 -s 10 -d 7 -p ack -e 40 -c 0 -i 1058 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.629472 -s 0 -d 9 -p ack -e 40 -c 0 -i 1048 -a 0 -x {10.0 9.0 519 ------- null} + -t 0.629472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1059 -a 0 -x {9.0 10.0 534 ------- null} - -t 0.629472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1059 -a 0 -x {9.0 10.0 534 ------- null} h -t 0.629472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1059 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.62952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1045 -a 0 -x {9.0 10.0 527 ------- null} - -t 0.62952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1045 -a 0 -x {9.0 10.0 527 ------- null} h -t 0.62952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1045 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.629728 -s 0 -d 9 -p ack -e 40 -c 0 -i 1052 -a 0 -x {10.0 9.0 521 ------- null} - -t 0.629728 -s 0 -d 9 -p ack -e 40 -c 0 -i 1052 -a 0 -x {10.0 9.0 521 ------- null} h -t 0.629728 -s 0 -d 9 -p ack -e 40 -c 0 -i 1052 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.629744 -s 10 -d 7 -p ack -e 40 -c 0 -i 1056 -a 0 -x {10.0 9.0 523 ------- null} + -t 0.629744 -s 7 -d 0 -p ack -e 40 -c 0 -i 1056 -a 0 -x {10.0 9.0 523 ------- null} h -t 0.629744 -s 7 -d 8 -p ack -e 40 -c 0 -i 1056 -a 0 -x {10.0 9.0 523 ------- null} r -t 0.630032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1055 -a 0 -x {9.0 10.0 532 ------- null} + -t 0.630032 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1055 -a 0 -x {9.0 10.0 532 ------- null} h -t 0.630032 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1055 -a 0 -x {9.0 10.0 532 ------- null} r -t 0.630144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1041 -a 0 -x {9.0 10.0 525 ------- null} + -t 0.630144 -s 10 -d 7 -p ack -e 40 -c 0 -i 1060 -a 0 -x {10.0 9.0 525 ------- null} - -t 0.630144 -s 10 -d 7 -p ack -e 40 -c 0 -i 1060 -a 0 -x {10.0 9.0 525 ------- null} h -t 0.630144 -s 10 -d 7 -p ack -e 40 -c 0 -i 1060 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.630528 -s 0 -d 9 -p ack -e 40 -c 0 -i 1050 -a 0 -x {10.0 9.0 520 ------- null} + -t 0.630528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1061 -a 0 -x {9.0 10.0 535 ------- null} - -t 0.630528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1061 -a 0 -x {9.0 10.0 535 ------- null} h -t 0.630528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1061 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.630608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1047 -a 0 -x {9.0 10.0 528 ------- null} - -t 0.630608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1047 -a 0 -x {9.0 10.0 528 ------- null} h -t 0.630608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1047 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.630784 -s 0 -d 9 -p ack -e 40 -c 0 -i 1054 -a 0 -x {10.0 9.0 522 ------- null} - -t 0.630784 -s 0 -d 9 -p ack -e 40 -c 0 -i 1054 -a 0 -x {10.0 9.0 522 ------- null} h -t 0.630784 -s 0 -d 9 -p ack -e 40 -c 0 -i 1054 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.631088 -s 10 -d 7 -p ack -e 40 -c 0 -i 1058 -a 0 -x {10.0 9.0 524 ------- null} + -t 0.631088 -s 7 -d 0 -p ack -e 40 -c 0 -i 1058 -a 0 -x {10.0 9.0 524 ------- null} h -t 0.631088 -s 7 -d 8 -p ack -e 40 -c 0 -i 1058 -a 0 -x {10.0 9.0 524 ------- null} r -t 0.631232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1043 -a 0 -x {9.0 10.0 526 ------- null} + -t 0.631232 -s 10 -d 7 -p ack -e 40 -c 0 -i 1062 -a 0 -x {10.0 9.0 526 ------- null} - -t 0.631232 -s 10 -d 7 -p ack -e 40 -c 0 -i 1062 -a 0 -x {10.0 9.0 526 ------- null} h -t 0.631232 -s 10 -d 7 -p ack -e 40 -c 0 -i 1062 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.631264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1057 -a 0 -x {9.0 10.0 533 ------- null} + -t 0.631264 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1057 -a 0 -x {9.0 10.0 533 ------- null} h -t 0.631264 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1057 -a 0 -x {9.0 10.0 533 ------- null} + -t 0.631696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1049 -a 0 -x {9.0 10.0 529 ------- null} - -t 0.631696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1049 -a 0 -x {9.0 10.0 529 ------- null} h -t 0.631696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1049 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.63176 -s 0 -d 9 -p ack -e 40 -c 0 -i 1052 -a 0 -x {10.0 9.0 521 ------- null} + -t 0.63176 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {9.0 10.0 536 ------- null} - -t 0.63176 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {9.0 10.0 536 ------- null} h -t 0.63176 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.63176 -s 0 -d 9 -p ack -e 40 -c 0 -i 1056 -a 0 -x {10.0 9.0 523 ------- null} - -t 0.63176 -s 0 -d 9 -p ack -e 40 -c 0 -i 1056 -a 0 -x {10.0 9.0 523 ------- null} h -t 0.63176 -s 0 -d 9 -p ack -e 40 -c 0 -i 1056 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.632176 -s 10 -d 7 -p ack -e 40 -c 0 -i 1060 -a 0 -x {10.0 9.0 525 ------- null} + -t 0.632176 -s 7 -d 0 -p ack -e 40 -c 0 -i 1060 -a 0 -x {10.0 9.0 525 ------- null} h -t 0.632176 -s 7 -d 8 -p ack -e 40 -c 0 -i 1060 -a 0 -x {10.0 9.0 525 ------- null} r -t 0.632272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1059 -a 0 -x {9.0 10.0 534 ------- null} + -t 0.632272 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1059 -a 0 -x {9.0 10.0 534 ------- null} h -t 0.632272 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1059 -a 0 -x {9.0 10.0 534 ------- null} r -t 0.63232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1045 -a 0 -x {9.0 10.0 527 ------- null} + -t 0.63232 -s 10 -d 7 -p ack -e 40 -c 0 -i 1064 -a 0 -x {10.0 9.0 527 ------- null} - -t 0.63232 -s 10 -d 7 -p ack -e 40 -c 0 -i 1064 -a 0 -x {10.0 9.0 527 ------- null} h -t 0.63232 -s 10 -d 7 -p ack -e 40 -c 0 -i 1064 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.632784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1051 -a 0 -x {9.0 10.0 530 ------- null} - -t 0.632784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1051 -a 0 -x {9.0 10.0 530 ------- null} h -t 0.632784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1051 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.632816 -s 0 -d 9 -p ack -e 40 -c 0 -i 1054 -a 0 -x {10.0 9.0 522 ------- null} + -t 0.632816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {9.0 10.0 537 ------- null} - -t 0.632816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {9.0 10.0 537 ------- null} h -t 0.632816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.633088 -s 0 -d 9 -p ack -e 40 -c 0 -i 1058 -a 0 -x {10.0 9.0 524 ------- null} - -t 0.633088 -s 0 -d 9 -p ack -e 40 -c 0 -i 1058 -a 0 -x {10.0 9.0 524 ------- null} h -t 0.633088 -s 0 -d 9 -p ack -e 40 -c 0 -i 1058 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.633264 -s 10 -d 7 -p ack -e 40 -c 0 -i 1062 -a 0 -x {10.0 9.0 526 ------- null} + -t 0.633264 -s 7 -d 0 -p ack -e 40 -c 0 -i 1062 -a 0 -x {10.0 9.0 526 ------- null} h -t 0.633264 -s 7 -d 8 -p ack -e 40 -c 0 -i 1062 -a 0 -x {10.0 9.0 526 ------- null} r -t 0.633328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1061 -a 0 -x {9.0 10.0 535 ------- null} + -t 0.633328 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1061 -a 0 -x {9.0 10.0 535 ------- null} h -t 0.633328 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1061 -a 0 -x {9.0 10.0 535 ------- null} r -t 0.633408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1047 -a 0 -x {9.0 10.0 528 ------- null} + -t 0.633408 -s 10 -d 7 -p ack -e 40 -c 0 -i 1066 -a 0 -x {10.0 9.0 528 ------- null} - -t 0.633408 -s 10 -d 7 -p ack -e 40 -c 0 -i 1066 -a 0 -x {10.0 9.0 528 ------- null} h -t 0.633408 -s 10 -d 7 -p ack -e 40 -c 0 -i 1066 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.633792 -s 0 -d 9 -p ack -e 40 -c 0 -i 1056 -a 0 -x {10.0 9.0 523 ------- null} + -t 0.633792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {9.0 10.0 538 ------- null} - -t 0.633792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {9.0 10.0 538 ------- null} h -t 0.633792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.634112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1053 -a 0 -x {9.0 10.0 531 ------- null} - -t 0.634112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1053 -a 0 -x {9.0 10.0 531 ------- null} h -t 0.634112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1053 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.634288 -s 0 -d 9 -p ack -e 40 -c 0 -i 1060 -a 0 -x {10.0 9.0 525 ------- null} - -t 0.634288 -s 0 -d 9 -p ack -e 40 -c 0 -i 1060 -a 0 -x {10.0 9.0 525 ------- null} h -t 0.634288 -s 0 -d 9 -p ack -e 40 -c 0 -i 1060 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.634352 -s 10 -d 7 -p ack -e 40 -c 0 -i 1064 -a 0 -x {10.0 9.0 527 ------- null} + -t 0.634352 -s 7 -d 0 -p ack -e 40 -c 0 -i 1064 -a 0 -x {10.0 9.0 527 ------- null} h -t 0.634352 -s 7 -d 8 -p ack -e 40 -c 0 -i 1064 -a 0 -x {10.0 9.0 527 ------- null} r -t 0.634496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1049 -a 0 -x {9.0 10.0 529 ------- null} + -t 0.634496 -s 10 -d 7 -p ack -e 40 -c 0 -i 1068 -a 0 -x {10.0 9.0 529 ------- null} - -t 0.634496 -s 10 -d 7 -p ack -e 40 -c 0 -i 1068 -a 0 -x {10.0 9.0 529 ------- null} h -t 0.634496 -s 10 -d 7 -p ack -e 40 -c 0 -i 1068 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.63456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {9.0 10.0 536 ------- null} + -t 0.63456 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {9.0 10.0 536 ------- null} h -t 0.63456 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {9.0 10.0 536 ------- null} r -t 0.63512 -s 0 -d 9 -p ack -e 40 -c 0 -i 1058 -a 0 -x {10.0 9.0 524 ------- null} + -t 0.63512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {9.0 10.0 539 ------- null} - -t 0.63512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {9.0 10.0 539 ------- null} h -t 0.63512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.6352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1055 -a 0 -x {9.0 10.0 532 ------- null} - -t 0.6352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1055 -a 0 -x {9.0 10.0 532 ------- null} h -t 0.6352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1055 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.635312 -s 0 -d 9 -p ack -e 40 -c 0 -i 1062 -a 0 -x {10.0 9.0 526 ------- null} - -t 0.635312 -s 0 -d 9 -p ack -e 40 -c 0 -i 1062 -a 0 -x {10.0 9.0 526 ------- null} h -t 0.635312 -s 0 -d 9 -p ack -e 40 -c 0 -i 1062 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.63544 -s 10 -d 7 -p ack -e 40 -c 0 -i 1066 -a 0 -x {10.0 9.0 528 ------- null} + -t 0.63544 -s 7 -d 0 -p ack -e 40 -c 0 -i 1066 -a 0 -x {10.0 9.0 528 ------- null} h -t 0.63544 -s 7 -d 8 -p ack -e 40 -c 0 -i 1066 -a 0 -x {10.0 9.0 528 ------- null} r -t 0.635584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1051 -a 0 -x {9.0 10.0 530 ------- null} + -t 0.635584 -s 10 -d 7 -p ack -e 40 -c 0 -i 1070 -a 0 -x {10.0 9.0 530 ------- null} - -t 0.635584 -s 10 -d 7 -p ack -e 40 -c 0 -i 1070 -a 0 -x {10.0 9.0 530 ------- null} h -t 0.635584 -s 10 -d 7 -p ack -e 40 -c 0 -i 1070 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.635616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {9.0 10.0 537 ------- null} + -t 0.635616 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {9.0 10.0 537 ------- null} h -t 0.635616 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {9.0 10.0 537 ------- null} + -t 0.636288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1057 -a 0 -x {9.0 10.0 533 ------- null} - -t 0.636288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1057 -a 0 -x {9.0 10.0 533 ------- null} h -t 0.636288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1057 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.63632 -s 0 -d 9 -p ack -e 40 -c 0 -i 1060 -a 0 -x {10.0 9.0 525 ------- null} + -t 0.63632 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {9.0 10.0 540 ------- null} - -t 0.63632 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {9.0 10.0 540 ------- null} h -t 0.63632 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.636528 -s 10 -d 7 -p ack -e 40 -c 0 -i 1068 -a 0 -x {10.0 9.0 529 ------- null} + -t 0.636528 -s 7 -d 0 -p ack -e 40 -c 0 -i 1068 -a 0 -x {10.0 9.0 529 ------- null} h -t 0.636528 -s 7 -d 8 -p ack -e 40 -c 0 -i 1068 -a 0 -x {10.0 9.0 529 ------- null} + -t 0.636528 -s 0 -d 9 -p ack -e 40 -c 0 -i 1064 -a 0 -x {10.0 9.0 527 ------- null} - -t 0.636528 -s 0 -d 9 -p ack -e 40 -c 0 -i 1064 -a 0 -x {10.0 9.0 527 ------- null} h -t 0.636528 -s 0 -d 9 -p ack -e 40 -c 0 -i 1064 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.636592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {9.0 10.0 538 ------- null} + -t 0.636592 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {9.0 10.0 538 ------- null} h -t 0.636592 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {9.0 10.0 538 ------- null} r -t 0.636912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1053 -a 0 -x {9.0 10.0 531 ------- null} + -t 0.636912 -s 10 -d 7 -p ack -e 40 -c 0 -i 1072 -a 0 -x {10.0 9.0 531 ------- null} - -t 0.636912 -s 10 -d 7 -p ack -e 40 -c 0 -i 1072 -a 0 -x {10.0 9.0 531 ------- null} h -t 0.636912 -s 10 -d 7 -p ack -e 40 -c 0 -i 1072 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.637344 -s 0 -d 9 -p ack -e 40 -c 0 -i 1062 -a 0 -x {10.0 9.0 526 ------- null} + -t 0.637344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {9.0 10.0 541 ------- null} - -t 0.637344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {9.0 10.0 541 ------- null} h -t 0.637344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.637376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1059 -a 0 -x {9.0 10.0 534 ------- null} - -t 0.637376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1059 -a 0 -x {9.0 10.0 534 ------- null} h -t 0.637376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1059 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.637488 -s 0 -d 9 -p ack -e 40 -c 0 -i 1066 -a 0 -x {10.0 9.0 528 ------- null} - -t 0.637488 -s 0 -d 9 -p ack -e 40 -c 0 -i 1066 -a 0 -x {10.0 9.0 528 ------- null} h -t 0.637488 -s 0 -d 9 -p ack -e 40 -c 0 -i 1066 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.637616 -s 10 -d 7 -p ack -e 40 -c 0 -i 1070 -a 0 -x {10.0 9.0 530 ------- null} + -t 0.637616 -s 7 -d 0 -p ack -e 40 -c 0 -i 1070 -a 0 -x {10.0 9.0 530 ------- null} h -t 0.637616 -s 7 -d 8 -p ack -e 40 -c 0 -i 1070 -a 0 -x {10.0 9.0 530 ------- null} r -t 0.63792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {9.0 10.0 539 ------- null} + -t 0.63792 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {9.0 10.0 539 ------- null} h -t 0.63792 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {9.0 10.0 539 ------- null} r -t 0.638 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1055 -a 0 -x {9.0 10.0 532 ------- null} + -t 0.638 -s 10 -d 7 -p ack -e 40 -c 0 -i 1074 -a 0 -x {10.0 9.0 532 ------- null} - -t 0.638 -s 10 -d 7 -p ack -e 40 -c 0 -i 1074 -a 0 -x {10.0 9.0 532 ------- null} h -t 0.638 -s 10 -d 7 -p ack -e 40 -c 0 -i 1074 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.638464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1061 -a 0 -x {9.0 10.0 535 ------- null} - -t 0.638464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1061 -a 0 -x {9.0 10.0 535 ------- null} h -t 0.638464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1061 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.63856 -s 0 -d 9 -p ack -e 40 -c 0 -i 1064 -a 0 -x {10.0 9.0 527 ------- null} + -t 0.63856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {9.0 10.0 542 ------- null} - -t 0.63856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {9.0 10.0 542 ------- null} h -t 0.63856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.638656 -s 0 -d 9 -p ack -e 40 -c 0 -i 1068 -a 0 -x {10.0 9.0 529 ------- null} - -t 0.638656 -s 0 -d 9 -p ack -e 40 -c 0 -i 1068 -a 0 -x {10.0 9.0 529 ------- null} h -t 0.638656 -s 0 -d 9 -p ack -e 40 -c 0 -i 1068 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.638944 -s 10 -d 7 -p ack -e 40 -c 0 -i 1072 -a 0 -x {10.0 9.0 531 ------- null} + -t 0.638944 -s 7 -d 0 -p ack -e 40 -c 0 -i 1072 -a 0 -x {10.0 9.0 531 ------- null} h -t 0.638944 -s 7 -d 8 -p ack -e 40 -c 0 -i 1072 -a 0 -x {10.0 9.0 531 ------- null} r -t 0.639088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1057 -a 0 -x {9.0 10.0 533 ------- null} + -t 0.639088 -s 10 -d 7 -p ack -e 40 -c 0 -i 1076 -a 0 -x {10.0 9.0 533 ------- null} - -t 0.639088 -s 10 -d 7 -p ack -e 40 -c 0 -i 1076 -a 0 -x {10.0 9.0 533 ------- null} h -t 0.639088 -s 10 -d 7 -p ack -e 40 -c 0 -i 1076 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.63912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {9.0 10.0 540 ------- null} + -t 0.63912 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {9.0 10.0 540 ------- null} h -t 0.63912 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {9.0 10.0 540 ------- null} r -t 0.63952 -s 0 -d 9 -p ack -e 40 -c 0 -i 1066 -a 0 -x {10.0 9.0 528 ------- null} + -t 0.63952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {9.0 10.0 543 ------- null} - -t 0.63952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {9.0 10.0 543 ------- null} h -t 0.63952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.639552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {9.0 10.0 536 ------- null} - -t 0.639552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {9.0 10.0 536 ------- null} h -t 0.639552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.63968 -s 0 -d 9 -p ack -e 40 -c 0 -i 1070 -a 0 -x {10.0 9.0 530 ------- null} - -t 0.63968 -s 0 -d 9 -p ack -e 40 -c 0 -i 1070 -a 0 -x {10.0 9.0 530 ------- null} h -t 0.63968 -s 0 -d 9 -p ack -e 40 -c 0 -i 1070 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.640032 -s 10 -d 7 -p ack -e 40 -c 0 -i 1074 -a 0 -x {10.0 9.0 532 ------- null} + -t 0.640032 -s 7 -d 0 -p ack -e 40 -c 0 -i 1074 -a 0 -x {10.0 9.0 532 ------- null} h -t 0.640032 -s 7 -d 8 -p ack -e 40 -c 0 -i 1074 -a 0 -x {10.0 9.0 532 ------- null} r -t 0.640144 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {9.0 10.0 541 ------- null} + -t 0.640144 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {9.0 10.0 541 ------- null} h -t 0.640144 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {9.0 10.0 541 ------- null} r -t 0.640176 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1059 -a 0 -x {9.0 10.0 534 ------- null} + -t 0.640176 -s 10 -d 7 -p ack -e 40 -c 0 -i 1078 -a 0 -x {10.0 9.0 534 ------- null} - -t 0.640176 -s 10 -d 7 -p ack -e 40 -c 0 -i 1078 -a 0 -x {10.0 9.0 534 ------- null} h -t 0.640176 -s 10 -d 7 -p ack -e 40 -c 0 -i 1078 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.64064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {9.0 10.0 537 ------- null} - -t 0.64064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {9.0 10.0 537 ------- null} h -t 0.64064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.640688 -s 0 -d 9 -p ack -e 40 -c 0 -i 1068 -a 0 -x {10.0 9.0 529 ------- null} + -t 0.640688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {9.0 10.0 544 ------- null} - -t 0.640688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {9.0 10.0 544 ------- null} h -t 0.640688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.640784 -s 0 -d 9 -p ack -e 40 -c 0 -i 1072 -a 0 -x {10.0 9.0 531 ------- null} - -t 0.640784 -s 0 -d 9 -p ack -e 40 -c 0 -i 1072 -a 0 -x {10.0 9.0 531 ------- null} h -t 0.640784 -s 0 -d 9 -p ack -e 40 -c 0 -i 1072 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.64112 -s 10 -d 7 -p ack -e 40 -c 0 -i 1076 -a 0 -x {10.0 9.0 533 ------- null} + -t 0.64112 -s 7 -d 0 -p ack -e 40 -c 0 -i 1076 -a 0 -x {10.0 9.0 533 ------- null} h -t 0.64112 -s 7 -d 8 -p ack -e 40 -c 0 -i 1076 -a 0 -x {10.0 9.0 533 ------- null} r -t 0.641264 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1061 -a 0 -x {9.0 10.0 535 ------- null} + -t 0.641264 -s 10 -d 7 -p ack -e 40 -c 0 -i 1080 -a 0 -x {10.0 9.0 535 ------- null} - -t 0.641264 -s 10 -d 7 -p ack -e 40 -c 0 -i 1080 -a 0 -x {10.0 9.0 535 ------- null} h -t 0.641264 -s 10 -d 7 -p ack -e 40 -c 0 -i 1080 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.64136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {9.0 10.0 542 ------- null} + -t 0.64136 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {9.0 10.0 542 ------- null} h -t 0.64136 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {9.0 10.0 542 ------- null} r -t 0.641712 -s 0 -d 9 -p ack -e 40 -c 0 -i 1070 -a 0 -x {10.0 9.0 530 ------- null} + -t 0.641712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {9.0 10.0 545 ------- null} - -t 0.641712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {9.0 10.0 545 ------- null} h -t 0.641712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.641728 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {9.0 10.0 538 ------- null} - -t 0.641728 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {9.0 10.0 538 ------- null} h -t 0.641728 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.64192 -s 0 -d 9 -p ack -e 40 -c 0 -i 1074 -a 0 -x {10.0 9.0 532 ------- null} - -t 0.64192 -s 0 -d 9 -p ack -e 40 -c 0 -i 1074 -a 0 -x {10.0 9.0 532 ------- null} h -t 0.64192 -s 0 -d 9 -p ack -e 40 -c 0 -i 1074 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.642208 -s 10 -d 7 -p ack -e 40 -c 0 -i 1078 -a 0 -x {10.0 9.0 534 ------- null} + -t 0.642208 -s 7 -d 0 -p ack -e 40 -c 0 -i 1078 -a 0 -x {10.0 9.0 534 ------- null} h -t 0.642208 -s 7 -d 8 -p ack -e 40 -c 0 -i 1078 -a 0 -x {10.0 9.0 534 ------- null} r -t 0.64232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {9.0 10.0 543 ------- null} + -t 0.64232 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {9.0 10.0 543 ------- null} h -t 0.64232 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {9.0 10.0 543 ------- null} r -t 0.642352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1063 -a 0 -x {9.0 10.0 536 ------- null} + -t 0.642352 -s 10 -d 7 -p ack -e 40 -c 0 -i 1082 -a 0 -x {10.0 9.0 536 ------- null} - -t 0.642352 -s 10 -d 7 -p ack -e 40 -c 0 -i 1082 -a 0 -x {10.0 9.0 536 ------- null} h -t 0.642352 -s 10 -d 7 -p ack -e 40 -c 0 -i 1082 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.642816 -s 0 -d 9 -p ack -e 40 -c 0 -i 1072 -a 0 -x {10.0 9.0 531 ------- null} + -t 0.642816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1083 -a 0 -x {9.0 10.0 546 ------- null} - -t 0.642816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1083 -a 0 -x {9.0 10.0 546 ------- null} h -t 0.642816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1083 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.642816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {9.0 10.0 539 ------- null} - -t 0.642816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {9.0 10.0 539 ------- null} h -t 0.642816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.642976 -s 0 -d 9 -p ack -e 40 -c 0 -i 1076 -a 0 -x {10.0 9.0 533 ------- null} - -t 0.642976 -s 0 -d 9 -p ack -e 40 -c 0 -i 1076 -a 0 -x {10.0 9.0 533 ------- null} h -t 0.642976 -s 0 -d 9 -p ack -e 40 -c 0 -i 1076 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.643296 -s 10 -d 7 -p ack -e 40 -c 0 -i 1080 -a 0 -x {10.0 9.0 535 ------- null} + -t 0.643296 -s 7 -d 0 -p ack -e 40 -c 0 -i 1080 -a 0 -x {10.0 9.0 535 ------- null} h -t 0.643296 -s 7 -d 8 -p ack -e 40 -c 0 -i 1080 -a 0 -x {10.0 9.0 535 ------- null} r -t 0.64344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1065 -a 0 -x {9.0 10.0 537 ------- null} + -t 0.64344 -s 10 -d 7 -p ack -e 40 -c 0 -i 1084 -a 0 -x {10.0 9.0 537 ------- null} - -t 0.64344 -s 10 -d 7 -p ack -e 40 -c 0 -i 1084 -a 0 -x {10.0 9.0 537 ------- null} h -t 0.64344 -s 10 -d 7 -p ack -e 40 -c 0 -i 1084 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.643488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {9.0 10.0 544 ------- null} + -t 0.643488 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {9.0 10.0 544 ------- null} h -t 0.643488 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {9.0 10.0 544 ------- null} + -t 0.643904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {9.0 10.0 540 ------- null} - -t 0.643904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {9.0 10.0 540 ------- null} h -t 0.643904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.643952 -s 0 -d 9 -p ack -e 40 -c 0 -i 1074 -a 0 -x {10.0 9.0 532 ------- null} + -t 0.643952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1085 -a 0 -x {9.0 10.0 547 ------- null} - -t 0.643952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1085 -a 0 -x {9.0 10.0 547 ------- null} h -t 0.643952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1085 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.644144 -s 0 -d 9 -p ack -e 40 -c 0 -i 1078 -a 0 -x {10.0 9.0 534 ------- null} - -t 0.644144 -s 0 -d 9 -p ack -e 40 -c 0 -i 1078 -a 0 -x {10.0 9.0 534 ------- null} h -t 0.644144 -s 0 -d 9 -p ack -e 40 -c 0 -i 1078 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.644384 -s 10 -d 7 -p ack -e 40 -c 0 -i 1082 -a 0 -x {10.0 9.0 536 ------- null} + -t 0.644384 -s 7 -d 0 -p ack -e 40 -c 0 -i 1082 -a 0 -x {10.0 9.0 536 ------- null} h -t 0.644384 -s 7 -d 8 -p ack -e 40 -c 0 -i 1082 -a 0 -x {10.0 9.0 536 ------- null} r -t 0.644512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {9.0 10.0 545 ------- null} + -t 0.644512 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {9.0 10.0 545 ------- null} h -t 0.644512 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {9.0 10.0 545 ------- null} r -t 0.644528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1067 -a 0 -x {9.0 10.0 538 ------- null} + -t 0.644528 -s 10 -d 7 -p ack -e 40 -c 0 -i 1086 -a 0 -x {10.0 9.0 538 ------- null} - -t 0.644528 -s 10 -d 7 -p ack -e 40 -c 0 -i 1086 -a 0 -x {10.0 9.0 538 ------- null} h -t 0.644528 -s 10 -d 7 -p ack -e 40 -c 0 -i 1086 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.644992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {9.0 10.0 541 ------- null} - -t 0.644992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {9.0 10.0 541 ------- null} h -t 0.644992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.645008 -s 0 -d 9 -p ack -e 40 -c 0 -i 1076 -a 0 -x {10.0 9.0 533 ------- null} + -t 0.645008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1087 -a 0 -x {9.0 10.0 548 ------- null} - -t 0.645008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1087 -a 0 -x {9.0 10.0 548 ------- null} h -t 0.645008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1087 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.645168 -s 0 -d 9 -p ack -e 40 -c 0 -i 1080 -a 0 -x {10.0 9.0 535 ------- null} - -t 0.645168 -s 0 -d 9 -p ack -e 40 -c 0 -i 1080 -a 0 -x {10.0 9.0 535 ------- null} h -t 0.645168 -s 0 -d 9 -p ack -e 40 -c 0 -i 1080 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.645472 -s 10 -d 7 -p ack -e 40 -c 0 -i 1084 -a 0 -x {10.0 9.0 537 ------- null} + -t 0.645472 -s 7 -d 0 -p ack -e 40 -c 0 -i 1084 -a 0 -x {10.0 9.0 537 ------- null} h -t 0.645472 -s 7 -d 8 -p ack -e 40 -c 0 -i 1084 -a 0 -x {10.0 9.0 537 ------- null} r -t 0.645616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1083 -a 0 -x {9.0 10.0 546 ------- null} + -t 0.645616 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1083 -a 0 -x {9.0 10.0 546 ------- null} h -t 0.645616 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1083 -a 0 -x {9.0 10.0 546 ------- null} r -t 0.645616 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1069 -a 0 -x {9.0 10.0 539 ------- null} + -t 0.645616 -s 10 -d 7 -p ack -e 40 -c 0 -i 1088 -a 0 -x {10.0 9.0 539 ------- null} - -t 0.645616 -s 10 -d 7 -p ack -e 40 -c 0 -i 1088 -a 0 -x {10.0 9.0 539 ------- null} h -t 0.645616 -s 10 -d 7 -p ack -e 40 -c 0 -i 1088 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.64608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {9.0 10.0 542 ------- null} - -t 0.64608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {9.0 10.0 542 ------- null} h -t 0.64608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.646176 -s 0 -d 9 -p ack -e 40 -c 0 -i 1078 -a 0 -x {10.0 9.0 534 ------- null} + -t 0.646176 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1089 -a 0 -x {9.0 10.0 549 ------- null} - -t 0.646176 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1089 -a 0 -x {9.0 10.0 549 ------- null} h -t 0.646176 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1089 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.646256 -s 0 -d 9 -p ack -e 40 -c 0 -i 1082 -a 0 -x {10.0 9.0 536 ------- null} - -t 0.646256 -s 0 -d 9 -p ack -e 40 -c 0 -i 1082 -a 0 -x {10.0 9.0 536 ------- null} h -t 0.646256 -s 0 -d 9 -p ack -e 40 -c 0 -i 1082 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.64656 -s 10 -d 7 -p ack -e 40 -c 0 -i 1086 -a 0 -x {10.0 9.0 538 ------- null} + -t 0.64656 -s 7 -d 0 -p ack -e 40 -c 0 -i 1086 -a 0 -x {10.0 9.0 538 ------- null} h -t 0.64656 -s 7 -d 8 -p ack -e 40 -c 0 -i 1086 -a 0 -x {10.0 9.0 538 ------- null} r -t 0.646704 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1071 -a 0 -x {9.0 10.0 540 ------- null} + -t 0.646704 -s 10 -d 7 -p ack -e 40 -c 0 -i 1090 -a 0 -x {10.0 9.0 540 ------- null} - -t 0.646704 -s 10 -d 7 -p ack -e 40 -c 0 -i 1090 -a 0 -x {10.0 9.0 540 ------- null} h -t 0.646704 -s 10 -d 7 -p ack -e 40 -c 0 -i 1090 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.646752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1085 -a 0 -x {9.0 10.0 547 ------- null} + -t 0.646752 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1085 -a 0 -x {9.0 10.0 547 ------- null} h -t 0.646752 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1085 -a 0 -x {9.0 10.0 547 ------- null} + -t 0.647168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {9.0 10.0 543 ------- null} - -t 0.647168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {9.0 10.0 543 ------- null} h -t 0.647168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.6472 -s 0 -d 9 -p ack -e 40 -c 0 -i 1080 -a 0 -x {10.0 9.0 535 ------- null} + -t 0.6472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1091 -a 0 -x {9.0 10.0 550 ------- null} - -t 0.6472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1091 -a 0 -x {9.0 10.0 550 ------- null} h -t 0.6472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1091 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.647312 -s 0 -d 9 -p ack -e 40 -c 0 -i 1084 -a 0 -x {10.0 9.0 537 ------- null} - -t 0.647312 -s 0 -d 9 -p ack -e 40 -c 0 -i 1084 -a 0 -x {10.0 9.0 537 ------- null} h -t 0.647312 -s 0 -d 9 -p ack -e 40 -c 0 -i 1084 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.647648 -s 10 -d 7 -p ack -e 40 -c 0 -i 1088 -a 0 -x {10.0 9.0 539 ------- null} + -t 0.647648 -s 7 -d 0 -p ack -e 40 -c 0 -i 1088 -a 0 -x {10.0 9.0 539 ------- null} h -t 0.647648 -s 7 -d 8 -p ack -e 40 -c 0 -i 1088 -a 0 -x {10.0 9.0 539 ------- null} r -t 0.647792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1073 -a 0 -x {9.0 10.0 541 ------- null} + -t 0.647792 -s 10 -d 7 -p ack -e 40 -c 0 -i 1092 -a 0 -x {10.0 9.0 541 ------- null} - -t 0.647792 -s 10 -d 7 -p ack -e 40 -c 0 -i 1092 -a 0 -x {10.0 9.0 541 ------- null} h -t 0.647792 -s 10 -d 7 -p ack -e 40 -c 0 -i 1092 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.647808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1087 -a 0 -x {9.0 10.0 548 ------- null} + -t 0.647808 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1087 -a 0 -x {9.0 10.0 548 ------- null} h -t 0.647808 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1087 -a 0 -x {9.0 10.0 548 ------- null} + -t 0.648256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {9.0 10.0 544 ------- null} - -t 0.648256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {9.0 10.0 544 ------- null} h -t 0.648256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.648288 -s 0 -d 9 -p ack -e 40 -c 0 -i 1082 -a 0 -x {10.0 9.0 536 ------- null} + -t 0.648288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1093 -a 0 -x {9.0 10.0 551 ------- null} - -t 0.648288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1093 -a 0 -x {9.0 10.0 551 ------- null} h -t 0.648288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1093 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.648448 -s 0 -d 9 -p ack -e 40 -c 0 -i 1086 -a 0 -x {10.0 9.0 538 ------- null} - -t 0.648448 -s 0 -d 9 -p ack -e 40 -c 0 -i 1086 -a 0 -x {10.0 9.0 538 ------- null} h -t 0.648448 -s 0 -d 9 -p ack -e 40 -c 0 -i 1086 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.648736 -s 10 -d 7 -p ack -e 40 -c 0 -i 1090 -a 0 -x {10.0 9.0 540 ------- null} + -t 0.648736 -s 7 -d 0 -p ack -e 40 -c 0 -i 1090 -a 0 -x {10.0 9.0 540 ------- null} h -t 0.648736 -s 7 -d 8 -p ack -e 40 -c 0 -i 1090 -a 0 -x {10.0 9.0 540 ------- null} r -t 0.64888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1075 -a 0 -x {9.0 10.0 542 ------- null} + -t 0.64888 -s 10 -d 7 -p ack -e 40 -c 0 -i 1094 -a 0 -x {10.0 9.0 542 ------- null} - -t 0.64888 -s 10 -d 7 -p ack -e 40 -c 0 -i 1094 -a 0 -x {10.0 9.0 542 ------- null} h -t 0.64888 -s 10 -d 7 -p ack -e 40 -c 0 -i 1094 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.648976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1089 -a 0 -x {9.0 10.0 549 ------- null} + -t 0.648976 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1089 -a 0 -x {9.0 10.0 549 ------- null} h -t 0.648976 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1089 -a 0 -x {9.0 10.0 549 ------- null} r -t 0.649344 -s 0 -d 9 -p ack -e 40 -c 0 -i 1084 -a 0 -x {10.0 9.0 537 ------- null} + -t 0.649344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1095 -a 0 -x {9.0 10.0 552 ------- null} - -t 0.649344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1095 -a 0 -x {9.0 10.0 552 ------- null} h -t 0.649344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1095 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.649344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {9.0 10.0 545 ------- null} - -t 0.649344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {9.0 10.0 545 ------- null} h -t 0.649344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.649488 -s 0 -d 9 -p ack -e 40 -c 0 -i 1088 -a 0 -x {10.0 9.0 539 ------- null} - -t 0.649488 -s 0 -d 9 -p ack -e 40 -c 0 -i 1088 -a 0 -x {10.0 9.0 539 ------- null} h -t 0.649488 -s 0 -d 9 -p ack -e 40 -c 0 -i 1088 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.649824 -s 10 -d 7 -p ack -e 40 -c 0 -i 1092 -a 0 -x {10.0 9.0 541 ------- null} + -t 0.649824 -s 7 -d 0 -p ack -e 40 -c 0 -i 1092 -a 0 -x {10.0 9.0 541 ------- null} h -t 0.649824 -s 7 -d 8 -p ack -e 40 -c 0 -i 1092 -a 0 -x {10.0 9.0 541 ------- null} r -t 0.649968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1077 -a 0 -x {9.0 10.0 543 ------- null} + -t 0.649968 -s 10 -d 7 -p ack -e 40 -c 0 -i 1096 -a 0 -x {10.0 9.0 543 ------- null} - -t 0.649968 -s 10 -d 7 -p ack -e 40 -c 0 -i 1096 -a 0 -x {10.0 9.0 543 ------- null} h -t 0.649968 -s 10 -d 7 -p ack -e 40 -c 0 -i 1096 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.65 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1091 -a 0 -x {9.0 10.0 550 ------- null} + -t 0.65 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1091 -a 0 -x {9.0 10.0 550 ------- null} h -t 0.65 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1091 -a 0 -x {9.0 10.0 550 ------- null} + -t 0.650432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1083 -a 0 -x {9.0 10.0 546 ------- null} - -t 0.650432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1083 -a 0 -x {9.0 10.0 546 ------- null} h -t 0.650432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1083 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.65048 -s 0 -d 9 -p ack -e 40 -c 0 -i 1086 -a 0 -x {10.0 9.0 538 ------- null} + -t 0.65048 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1097 -a 0 -x {9.0 10.0 553 ------- null} - -t 0.65048 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1097 -a 0 -x {9.0 10.0 553 ------- null} h -t 0.65048 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1097 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.650512 -s 0 -d 9 -p ack -e 40 -c 0 -i 1090 -a 0 -x {10.0 9.0 540 ------- null} - -t 0.650512 -s 0 -d 9 -p ack -e 40 -c 0 -i 1090 -a 0 -x {10.0 9.0 540 ------- null} h -t 0.650512 -s 0 -d 9 -p ack -e 40 -c 0 -i 1090 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.650912 -s 10 -d 7 -p ack -e 40 -c 0 -i 1094 -a 0 -x {10.0 9.0 542 ------- null} + -t 0.650912 -s 7 -d 0 -p ack -e 40 -c 0 -i 1094 -a 0 -x {10.0 9.0 542 ------- null} h -t 0.650912 -s 7 -d 8 -p ack -e 40 -c 0 -i 1094 -a 0 -x {10.0 9.0 542 ------- null} r -t 0.651056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1079 -a 0 -x {9.0 10.0 544 ------- null} + -t 0.651056 -s 10 -d 7 -p ack -e 40 -c 0 -i 1098 -a 0 -x {10.0 9.0 544 ------- null} - -t 0.651056 -s 10 -d 7 -p ack -e 40 -c 0 -i 1098 -a 0 -x {10.0 9.0 544 ------- null} h -t 0.651056 -s 10 -d 7 -p ack -e 40 -c 0 -i 1098 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.651088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1093 -a 0 -x {9.0 10.0 551 ------- null} + -t 0.651088 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1093 -a 0 -x {9.0 10.0 551 ------- null} h -t 0.651088 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1093 -a 0 -x {9.0 10.0 551 ------- null} r -t 0.65152 -s 0 -d 9 -p ack -e 40 -c 0 -i 1088 -a 0 -x {10.0 9.0 539 ------- null} + -t 0.65152 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1099 -a 0 -x {9.0 10.0 554 ------- null} - -t 0.65152 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1099 -a 0 -x {9.0 10.0 554 ------- null} h -t 0.65152 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1099 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.65152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1085 -a 0 -x {9.0 10.0 547 ------- null} - -t 0.65152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1085 -a 0 -x {9.0 10.0 547 ------- null} h -t 0.65152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1085 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.651632 -s 0 -d 9 -p ack -e 40 -c 0 -i 1092 -a 0 -x {10.0 9.0 541 ------- null} - -t 0.651632 -s 0 -d 9 -p ack -e 40 -c 0 -i 1092 -a 0 -x {10.0 9.0 541 ------- null} h -t 0.651632 -s 0 -d 9 -p ack -e 40 -c 0 -i 1092 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.652 -s 10 -d 7 -p ack -e 40 -c 0 -i 1096 -a 0 -x {10.0 9.0 543 ------- null} + -t 0.652 -s 7 -d 0 -p ack -e 40 -c 0 -i 1096 -a 0 -x {10.0 9.0 543 ------- null} h -t 0.652 -s 7 -d 8 -p ack -e 40 -c 0 -i 1096 -a 0 -x {10.0 9.0 543 ------- null} r -t 0.652144 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1095 -a 0 -x {9.0 10.0 552 ------- null} + -t 0.652144 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1095 -a 0 -x {9.0 10.0 552 ------- null} h -t 0.652144 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1095 -a 0 -x {9.0 10.0 552 ------- null} r -t 0.652144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1081 -a 0 -x {9.0 10.0 545 ------- null} + -t 0.652144 -s 10 -d 7 -p ack -e 40 -c 0 -i 1100 -a 0 -x {10.0 9.0 545 ------- null} - -t 0.652144 -s 10 -d 7 -p ack -e 40 -c 0 -i 1100 -a 0 -x {10.0 9.0 545 ------- null} h -t 0.652144 -s 10 -d 7 -p ack -e 40 -c 0 -i 1100 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.652544 -s 0 -d 9 -p ack -e 40 -c 0 -i 1090 -a 0 -x {10.0 9.0 540 ------- null} + -t 0.652544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1101 -a 0 -x {9.0 10.0 555 ------- null} - -t 0.652544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1101 -a 0 -x {9.0 10.0 555 ------- null} h -t 0.652544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1101 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.652608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1087 -a 0 -x {9.0 10.0 548 ------- null} - -t 0.652608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1087 -a 0 -x {9.0 10.0 548 ------- null} h -t 0.652608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1087 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.652912 -s 0 -d 9 -p ack -e 40 -c 0 -i 1094 -a 0 -x {10.0 9.0 542 ------- null} - -t 0.652912 -s 0 -d 9 -p ack -e 40 -c 0 -i 1094 -a 0 -x {10.0 9.0 542 ------- null} h -t 0.652912 -s 0 -d 9 -p ack -e 40 -c 0 -i 1094 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.653088 -s 10 -d 7 -p ack -e 40 -c 0 -i 1098 -a 0 -x {10.0 9.0 544 ------- null} + -t 0.653088 -s 7 -d 0 -p ack -e 40 -c 0 -i 1098 -a 0 -x {10.0 9.0 544 ------- null} h -t 0.653088 -s 7 -d 8 -p ack -e 40 -c 0 -i 1098 -a 0 -x {10.0 9.0 544 ------- null} r -t 0.653232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1083 -a 0 -x {9.0 10.0 546 ------- null} + -t 0.653232 -s 10 -d 7 -p ack -e 40 -c 0 -i 1102 -a 0 -x {10.0 9.0 546 ------- null} - -t 0.653232 -s 10 -d 7 -p ack -e 40 -c 0 -i 1102 -a 0 -x {10.0 9.0 546 ------- null} h -t 0.653232 -s 10 -d 7 -p ack -e 40 -c 0 -i 1102 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.65328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1097 -a 0 -x {9.0 10.0 553 ------- null} + -t 0.65328 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1097 -a 0 -x {9.0 10.0 553 ------- null} h -t 0.65328 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1097 -a 0 -x {9.0 10.0 553 ------- null} r -t 0.653664 -s 0 -d 9 -p ack -e 40 -c 0 -i 1092 -a 0 -x {10.0 9.0 541 ------- null} + -t 0.653664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {9.0 10.0 556 ------- null} - -t 0.653664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {9.0 10.0 556 ------- null} h -t 0.653664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.653856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1089 -a 0 -x {9.0 10.0 549 ------- null} - -t 0.653856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1089 -a 0 -x {9.0 10.0 549 ------- null} h -t 0.653856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1089 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.65408 -s 0 -d 9 -p ack -e 40 -c 0 -i 1096 -a 0 -x {10.0 9.0 543 ------- null} - -t 0.65408 -s 0 -d 9 -p ack -e 40 -c 0 -i 1096 -a 0 -x {10.0 9.0 543 ------- null} h -t 0.65408 -s 0 -d 9 -p ack -e 40 -c 0 -i 1096 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.654176 -s 10 -d 7 -p ack -e 40 -c 0 -i 1100 -a 0 -x {10.0 9.0 545 ------- null} + -t 0.654176 -s 7 -d 0 -p ack -e 40 -c 0 -i 1100 -a 0 -x {10.0 9.0 545 ------- null} h -t 0.654176 -s 7 -d 8 -p ack -e 40 -c 0 -i 1100 -a 0 -x {10.0 9.0 545 ------- null} r -t 0.65432 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1099 -a 0 -x {9.0 10.0 554 ------- null} + -t 0.65432 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1099 -a 0 -x {9.0 10.0 554 ------- null} h -t 0.65432 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1099 -a 0 -x {9.0 10.0 554 ------- null} r -t 0.65432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1085 -a 0 -x {9.0 10.0 547 ------- null} + -t 0.65432 -s 10 -d 7 -p ack -e 40 -c 0 -i 1104 -a 0 -x {10.0 9.0 547 ------- null} - -t 0.65432 -s 10 -d 7 -p ack -e 40 -c 0 -i 1104 -a 0 -x {10.0 9.0 547 ------- null} h -t 0.65432 -s 10 -d 7 -p ack -e 40 -c 0 -i 1104 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.654944 -s 0 -d 9 -p ack -e 40 -c 0 -i 1094 -a 0 -x {10.0 9.0 542 ------- null} + -t 0.654944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {9.0 10.0 557 ------- null} - -t 0.654944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {9.0 10.0 557 ------- null} h -t 0.654944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.654944 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1091 -a 0 -x {9.0 10.0 550 ------- null} - -t 0.654944 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1091 -a 0 -x {9.0 10.0 550 ------- null} h -t 0.654944 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1091 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.655232 -s 0 -d 9 -p ack -e 40 -c 0 -i 1098 -a 0 -x {10.0 9.0 544 ------- null} - -t 0.655232 -s 0 -d 9 -p ack -e 40 -c 0 -i 1098 -a 0 -x {10.0 9.0 544 ------- null} h -t 0.655232 -s 0 -d 9 -p ack -e 40 -c 0 -i 1098 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.655264 -s 10 -d 7 -p ack -e 40 -c 0 -i 1102 -a 0 -x {10.0 9.0 546 ------- null} + -t 0.655264 -s 7 -d 0 -p ack -e 40 -c 0 -i 1102 -a 0 -x {10.0 9.0 546 ------- null} h -t 0.655264 -s 7 -d 8 -p ack -e 40 -c 0 -i 1102 -a 0 -x {10.0 9.0 546 ------- null} r -t 0.655344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1101 -a 0 -x {9.0 10.0 555 ------- null} + -t 0.655344 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1101 -a 0 -x {9.0 10.0 555 ------- null} h -t 0.655344 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1101 -a 0 -x {9.0 10.0 555 ------- null} r -t 0.655408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1087 -a 0 -x {9.0 10.0 548 ------- null} + -t 0.655408 -s 10 -d 7 -p ack -e 40 -c 0 -i 1106 -a 0 -x {10.0 9.0 548 ------- null} - -t 0.655408 -s 10 -d 7 -p ack -e 40 -c 0 -i 1106 -a 0 -x {10.0 9.0 548 ------- null} h -t 0.655408 -s 10 -d 7 -p ack -e 40 -c 0 -i 1106 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.656112 -s 0 -d 9 -p ack -e 40 -c 0 -i 1096 -a 0 -x {10.0 9.0 543 ------- null} + -t 0.656112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {9.0 10.0 558 ------- null} - -t 0.656112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {9.0 10.0 558 ------- null} h -t 0.656112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.656304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1093 -a 0 -x {9.0 10.0 551 ------- null} - -t 0.656304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1093 -a 0 -x {9.0 10.0 551 ------- null} h -t 0.656304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1093 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.656352 -s 10 -d 7 -p ack -e 40 -c 0 -i 1104 -a 0 -x {10.0 9.0 547 ------- null} + -t 0.656352 -s 7 -d 0 -p ack -e 40 -c 0 -i 1104 -a 0 -x {10.0 9.0 547 ------- null} h -t 0.656352 -s 7 -d 8 -p ack -e 40 -c 0 -i 1104 -a 0 -x {10.0 9.0 547 ------- null} + -t 0.656432 -s 0 -d 9 -p ack -e 40 -c 0 -i 1100 -a 0 -x {10.0 9.0 545 ------- null} - -t 0.656432 -s 0 -d 9 -p ack -e 40 -c 0 -i 1100 -a 0 -x {10.0 9.0 545 ------- null} h -t 0.656432 -s 0 -d 9 -p ack -e 40 -c 0 -i 1100 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.656464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {9.0 10.0 556 ------- null} + -t 0.656464 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {9.0 10.0 556 ------- null} h -t 0.656464 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {9.0 10.0 556 ------- null} r -t 0.656656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1089 -a 0 -x {9.0 10.0 549 ------- null} + -t 0.656656 -s 10 -d 7 -p ack -e 40 -c 0 -i 1108 -a 0 -x {10.0 9.0 549 ------- null} - -t 0.656656 -s 10 -d 7 -p ack -e 40 -c 0 -i 1108 -a 0 -x {10.0 9.0 549 ------- null} h -t 0.656656 -s 10 -d 7 -p ack -e 40 -c 0 -i 1108 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.657264 -s 0 -d 9 -p ack -e 40 -c 0 -i 1098 -a 0 -x {10.0 9.0 544 ------- null} + -t 0.657264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {9.0 10.0 559 ------- null} - -t 0.657264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {9.0 10.0 559 ------- null} h -t 0.657264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.657392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1095 -a 0 -x {9.0 10.0 552 ------- null} - -t 0.657392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1095 -a 0 -x {9.0 10.0 552 ------- null} h -t 0.657392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1095 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.65744 -s 10 -d 7 -p ack -e 40 -c 0 -i 1106 -a 0 -x {10.0 9.0 548 ------- null} + -t 0.65744 -s 7 -d 0 -p ack -e 40 -c 0 -i 1106 -a 0 -x {10.0 9.0 548 ------- null} h -t 0.65744 -s 7 -d 8 -p ack -e 40 -c 0 -i 1106 -a 0 -x {10.0 9.0 548 ------- null} + -t 0.657696 -s 0 -d 9 -p ack -e 40 -c 0 -i 1102 -a 0 -x {10.0 9.0 546 ------- null} - -t 0.657696 -s 0 -d 9 -p ack -e 40 -c 0 -i 1102 -a 0 -x {10.0 9.0 546 ------- null} h -t 0.657696 -s 0 -d 9 -p ack -e 40 -c 0 -i 1102 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.657744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {9.0 10.0 557 ------- null} + -t 0.657744 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {9.0 10.0 557 ------- null} h -t 0.657744 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {9.0 10.0 557 ------- null} r -t 0.657744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1091 -a 0 -x {9.0 10.0 550 ------- null} + -t 0.657744 -s 10 -d 7 -p ack -e 40 -c 0 -i 1110 -a 0 -x {10.0 9.0 550 ------- null} - -t 0.657744 -s 10 -d 7 -p ack -e 40 -c 0 -i 1110 -a 0 -x {10.0 9.0 550 ------- null} h -t 0.657744 -s 10 -d 7 -p ack -e 40 -c 0 -i 1110 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.658464 -s 0 -d 9 -p ack -e 40 -c 0 -i 1100 -a 0 -x {10.0 9.0 545 ------- null} + -t 0.658464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {9.0 10.0 560 ------- null} - -t 0.658464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {9.0 10.0 560 ------- null} h -t 0.658464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.65864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1097 -a 0 -x {9.0 10.0 553 ------- null} - -t 0.65864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1097 -a 0 -x {9.0 10.0 553 ------- null} h -t 0.65864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1097 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.658688 -s 10 -d 7 -p ack -e 40 -c 0 -i 1108 -a 0 -x {10.0 9.0 549 ------- null} + -t 0.658688 -s 7 -d 0 -p ack -e 40 -c 0 -i 1108 -a 0 -x {10.0 9.0 549 ------- null} h -t 0.658688 -s 7 -d 8 -p ack -e 40 -c 0 -i 1108 -a 0 -x {10.0 9.0 549 ------- null} r -t 0.658912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {9.0 10.0 558 ------- null} + -t 0.658912 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {9.0 10.0 558 ------- null} h -t 0.658912 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {9.0 10.0 558 ------- null} + -t 0.658912 -s 0 -d 9 -p ack -e 40 -c 0 -i 1104 -a 0 -x {10.0 9.0 547 ------- null} - -t 0.658912 -s 0 -d 9 -p ack -e 40 -c 0 -i 1104 -a 0 -x {10.0 9.0 547 ------- null} h -t 0.658912 -s 0 -d 9 -p ack -e 40 -c 0 -i 1104 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.659104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1093 -a 0 -x {9.0 10.0 551 ------- null} + -t 0.659104 -s 10 -d 7 -p ack -e 40 -c 0 -i 1112 -a 0 -x {10.0 9.0 551 ------- null} - -t 0.659104 -s 10 -d 7 -p ack -e 40 -c 0 -i 1112 -a 0 -x {10.0 9.0 551 ------- null} h -t 0.659104 -s 10 -d 7 -p ack -e 40 -c 0 -i 1112 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.659728 -s 0 -d 9 -p ack -e 40 -c 0 -i 1102 -a 0 -x {10.0 9.0 546 ------- null} + -t 0.659728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {9.0 10.0 561 ------- null} - -t 0.659728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {9.0 10.0 561 ------- null} h -t 0.659728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.659776 -s 10 -d 7 -p ack -e 40 -c 0 -i 1110 -a 0 -x {10.0 9.0 550 ------- null} + -t 0.659776 -s 7 -d 0 -p ack -e 40 -c 0 -i 1110 -a 0 -x {10.0 9.0 550 ------- null} h -t 0.659776 -s 7 -d 8 -p ack -e 40 -c 0 -i 1110 -a 0 -x {10.0 9.0 550 ------- null} + -t 0.659984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1099 -a 0 -x {9.0 10.0 554 ------- null} - -t 0.659984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1099 -a 0 -x {9.0 10.0 554 ------- null} h -t 0.659984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1099 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.660064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {9.0 10.0 559 ------- null} + -t 0.660064 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {9.0 10.0 559 ------- null} h -t 0.660064 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {9.0 10.0 559 ------- null} r -t 0.660192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1095 -a 0 -x {9.0 10.0 552 ------- null} + -t 0.660192 -s 10 -d 7 -p ack -e 40 -c 0 -i 1114 -a 0 -x {10.0 9.0 552 ------- null} - -t 0.660192 -s 10 -d 7 -p ack -e 40 -c 0 -i 1114 -a 0 -x {10.0 9.0 552 ------- null} h -t 0.660192 -s 10 -d 7 -p ack -e 40 -c 0 -i 1114 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.660224 -s 0 -d 9 -p ack -e 40 -c 0 -i 1106 -a 0 -x {10.0 9.0 548 ------- null} - -t 0.660224 -s 0 -d 9 -p ack -e 40 -c 0 -i 1106 -a 0 -x {10.0 9.0 548 ------- null} h -t 0.660224 -s 0 -d 9 -p ack -e 40 -c 0 -i 1106 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.660944 -s 0 -d 9 -p ack -e 40 -c 0 -i 1104 -a 0 -x {10.0 9.0 547 ------- null} + -t 0.660944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {9.0 10.0 562 ------- null} - -t 0.660944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {9.0 10.0 562 ------- null} h -t 0.660944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.661072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1101 -a 0 -x {9.0 10.0 555 ------- null} - -t 0.661072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1101 -a 0 -x {9.0 10.0 555 ------- null} h -t 0.661072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1101 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.661136 -s 10 -d 7 -p ack -e 40 -c 0 -i 1112 -a 0 -x {10.0 9.0 551 ------- null} + -t 0.661136 -s 7 -d 0 -p ack -e 40 -c 0 -i 1112 -a 0 -x {10.0 9.0 551 ------- null} h -t 0.661136 -s 7 -d 8 -p ack -e 40 -c 0 -i 1112 -a 0 -x {10.0 9.0 551 ------- null} r -t 0.661264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {9.0 10.0 560 ------- null} + -t 0.661264 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {9.0 10.0 560 ------- null} h -t 0.661264 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {9.0 10.0 560 ------- null} + -t 0.661328 -s 0 -d 9 -p ack -e 40 -c 0 -i 1108 -a 0 -x {10.0 9.0 549 ------- null} - -t 0.661328 -s 0 -d 9 -p ack -e 40 -c 0 -i 1108 -a 0 -x {10.0 9.0 549 ------- null} h -t 0.661328 -s 0 -d 9 -p ack -e 40 -c 0 -i 1108 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.66144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1097 -a 0 -x {9.0 10.0 553 ------- null} + -t 0.66144 -s 10 -d 7 -p ack -e 40 -c 0 -i 1116 -a 0 -x {10.0 9.0 553 ------- null} - -t 0.66144 -s 10 -d 7 -p ack -e 40 -c 0 -i 1116 -a 0 -x {10.0 9.0 553 ------- null} h -t 0.66144 -s 10 -d 7 -p ack -e 40 -c 0 -i 1116 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.66216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {9.0 10.0 556 ------- null} - -t 0.66216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {9.0 10.0 556 ------- null} h -t 0.66216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.662224 -s 10 -d 7 -p ack -e 40 -c 0 -i 1114 -a 0 -x {10.0 9.0 552 ------- null} + -t 0.662224 -s 7 -d 0 -p ack -e 40 -c 0 -i 1114 -a 0 -x {10.0 9.0 552 ------- null} h -t 0.662224 -s 7 -d 8 -p ack -e 40 -c 0 -i 1114 -a 0 -x {10.0 9.0 552 ------- null} r -t 0.662256 -s 0 -d 9 -p ack -e 40 -c 0 -i 1106 -a 0 -x {10.0 9.0 548 ------- null} + -t 0.662256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {9.0 10.0 563 ------- null} - -t 0.662256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {9.0 10.0 563 ------- null} h -t 0.662256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.662432 -s 0 -d 9 -p ack -e 40 -c 0 -i 1110 -a 0 -x {10.0 9.0 550 ------- null} - -t 0.662432 -s 0 -d 9 -p ack -e 40 -c 0 -i 1110 -a 0 -x {10.0 9.0 550 ------- null} h -t 0.662432 -s 0 -d 9 -p ack -e 40 -c 0 -i 1110 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.662528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {9.0 10.0 561 ------- null} + -t 0.662528 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {9.0 10.0 561 ------- null} h -t 0.662528 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {9.0 10.0 561 ------- null} r -t 0.662784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1099 -a 0 -x {9.0 10.0 554 ------- null} + -t 0.662784 -s 10 -d 7 -p ack -e 40 -c 0 -i 1118 -a 0 -x {10.0 9.0 554 ------- null} - -t 0.662784 -s 10 -d 7 -p ack -e 40 -c 0 -i 1118 -a 0 -x {10.0 9.0 554 ------- null} h -t 0.662784 -s 10 -d 7 -p ack -e 40 -c 0 -i 1118 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.66328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {9.0 10.0 557 ------- null} - -t 0.66328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {9.0 10.0 557 ------- null} h -t 0.66328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.66336 -s 0 -d 9 -p ack -e 40 -c 0 -i 1108 -a 0 -x {10.0 9.0 549 ------- null} + -t 0.66336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {9.0 10.0 564 ------- null} - -t 0.66336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {9.0 10.0 564 ------- null} h -t 0.66336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.66344 -s 0 -d 9 -p ack -e 40 -c 0 -i 1112 -a 0 -x {10.0 9.0 551 ------- null} - -t 0.66344 -s 0 -d 9 -p ack -e 40 -c 0 -i 1112 -a 0 -x {10.0 9.0 551 ------- null} h -t 0.66344 -s 0 -d 9 -p ack -e 40 -c 0 -i 1112 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.663472 -s 10 -d 7 -p ack -e 40 -c 0 -i 1116 -a 0 -x {10.0 9.0 553 ------- null} + -t 0.663472 -s 7 -d 0 -p ack -e 40 -c 0 -i 1116 -a 0 -x {10.0 9.0 553 ------- null} h -t 0.663472 -s 7 -d 8 -p ack -e 40 -c 0 -i 1116 -a 0 -x {10.0 9.0 553 ------- null} r -t 0.663744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {9.0 10.0 562 ------- null} + -t 0.663744 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {9.0 10.0 562 ------- null} h -t 0.663744 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {9.0 10.0 562 ------- null} r -t 0.663872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1101 -a 0 -x {9.0 10.0 555 ------- null} + -t 0.663872 -s 10 -d 7 -p ack -e 40 -c 0 -i 1120 -a 0 -x {10.0 9.0 555 ------- null} - -t 0.663872 -s 10 -d 7 -p ack -e 40 -c 0 -i 1120 -a 0 -x {10.0 9.0 555 ------- null} h -t 0.663872 -s 10 -d 7 -p ack -e 40 -c 0 -i 1120 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.664368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {9.0 10.0 558 ------- null} - -t 0.664368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {9.0 10.0 558 ------- null} h -t 0.664368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.664464 -s 0 -d 9 -p ack -e 40 -c 0 -i 1110 -a 0 -x {10.0 9.0 550 ------- null} + -t 0.664464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {9.0 10.0 565 ------- null} - -t 0.664464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {9.0 10.0 565 ------- null} h -t 0.664464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.664464 -s 0 -d 9 -p ack -e 40 -c 0 -i 1114 -a 0 -x {10.0 9.0 552 ------- null} - -t 0.664464 -s 0 -d 9 -p ack -e 40 -c 0 -i 1114 -a 0 -x {10.0 9.0 552 ------- null} h -t 0.664464 -s 0 -d 9 -p ack -e 40 -c 0 -i 1114 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.664816 -s 10 -d 7 -p ack -e 40 -c 0 -i 1118 -a 0 -x {10.0 9.0 554 ------- null} + -t 0.664816 -s 7 -d 0 -p ack -e 40 -c 0 -i 1118 -a 0 -x {10.0 9.0 554 ------- null} h -t 0.664816 -s 7 -d 8 -p ack -e 40 -c 0 -i 1118 -a 0 -x {10.0 9.0 554 ------- null} r -t 0.66496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1103 -a 0 -x {9.0 10.0 556 ------- null} + -t 0.66496 -s 10 -d 7 -p ack -e 40 -c 0 -i 1122 -a 0 -x {10.0 9.0 556 ------- null} - -t 0.66496 -s 10 -d 7 -p ack -e 40 -c 0 -i 1122 -a 0 -x {10.0 9.0 556 ------- null} h -t 0.66496 -s 10 -d 7 -p ack -e 40 -c 0 -i 1122 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.665056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {9.0 10.0 563 ------- null} + -t 0.665056 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {9.0 10.0 563 ------- null} h -t 0.665056 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {9.0 10.0 563 ------- null} + -t 0.665456 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {9.0 10.0 559 ------- null} - -t 0.665456 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {9.0 10.0 559 ------- null} h -t 0.665456 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.665472 -s 0 -d 9 -p ack -e 40 -c 0 -i 1112 -a 0 -x {10.0 9.0 551 ------- null} + -t 0.665472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1123 -a 0 -x {9.0 10.0 566 ------- null} - -t 0.665472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1123 -a 0 -x {9.0 10.0 566 ------- null} h -t 0.665472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1123 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.66568 -s 0 -d 9 -p ack -e 40 -c 0 -i 1116 -a 0 -x {10.0 9.0 553 ------- null} - -t 0.66568 -s 0 -d 9 -p ack -e 40 -c 0 -i 1116 -a 0 -x {10.0 9.0 553 ------- null} h -t 0.66568 -s 0 -d 9 -p ack -e 40 -c 0 -i 1116 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.665904 -s 10 -d 7 -p ack -e 40 -c 0 -i 1120 -a 0 -x {10.0 9.0 555 ------- null} + -t 0.665904 -s 7 -d 0 -p ack -e 40 -c 0 -i 1120 -a 0 -x {10.0 9.0 555 ------- null} h -t 0.665904 -s 7 -d 8 -p ack -e 40 -c 0 -i 1120 -a 0 -x {10.0 9.0 555 ------- null} r -t 0.66608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1105 -a 0 -x {9.0 10.0 557 ------- null} + -t 0.66608 -s 10 -d 7 -p ack -e 40 -c 0 -i 1124 -a 0 -x {10.0 9.0 557 ------- null} - -t 0.66608 -s 10 -d 7 -p ack -e 40 -c 0 -i 1124 -a 0 -x {10.0 9.0 557 ------- null} h -t 0.66608 -s 10 -d 7 -p ack -e 40 -c 0 -i 1124 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.66616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {9.0 10.0 564 ------- null} + -t 0.66616 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {9.0 10.0 564 ------- null} h -t 0.66616 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {9.0 10.0 564 ------- null} r -t 0.666496 -s 0 -d 9 -p ack -e 40 -c 0 -i 1114 -a 0 -x {10.0 9.0 552 ------- null} + -t 0.666496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1125 -a 0 -x {9.0 10.0 567 ------- null} - -t 0.666496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1125 -a 0 -x {9.0 10.0 567 ------- null} h -t 0.666496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1125 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.666544 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {9.0 10.0 560 ------- null} - -t 0.666544 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {9.0 10.0 560 ------- null} h -t 0.666544 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.66672 -s 0 -d 9 -p ack -e 40 -c 0 -i 1118 -a 0 -x {10.0 9.0 554 ------- null} - -t 0.66672 -s 0 -d 9 -p ack -e 40 -c 0 -i 1118 -a 0 -x {10.0 9.0 554 ------- null} h -t 0.66672 -s 0 -d 9 -p ack -e 40 -c 0 -i 1118 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.666992 -s 10 -d 7 -p ack -e 40 -c 0 -i 1122 -a 0 -x {10.0 9.0 556 ------- null} + -t 0.666992 -s 7 -d 0 -p ack -e 40 -c 0 -i 1122 -a 0 -x {10.0 9.0 556 ------- null} h -t 0.666992 -s 7 -d 8 -p ack -e 40 -c 0 -i 1122 -a 0 -x {10.0 9.0 556 ------- null} r -t 0.667168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1107 -a 0 -x {9.0 10.0 558 ------- null} + -t 0.667168 -s 10 -d 7 -p ack -e 40 -c 0 -i 1126 -a 0 -x {10.0 9.0 558 ------- null} - -t 0.667168 -s 10 -d 7 -p ack -e 40 -c 0 -i 1126 -a 0 -x {10.0 9.0 558 ------- null} h -t 0.667168 -s 10 -d 7 -p ack -e 40 -c 0 -i 1126 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.667264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {9.0 10.0 565 ------- null} + -t 0.667264 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {9.0 10.0 565 ------- null} h -t 0.667264 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {9.0 10.0 565 ------- null} + -t 0.667632 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {9.0 10.0 561 ------- null} - -t 0.667632 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {9.0 10.0 561 ------- null} h -t 0.667632 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.667696 -s 0 -d 9 -p ack -e 40 -c 0 -i 1120 -a 0 -x {10.0 9.0 555 ------- null} - -t 0.667696 -s 0 -d 9 -p ack -e 40 -c 0 -i 1120 -a 0 -x {10.0 9.0 555 ------- null} h -t 0.667696 -s 0 -d 9 -p ack -e 40 -c 0 -i 1120 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.667712 -s 0 -d 9 -p ack -e 40 -c 0 -i 1116 -a 0 -x {10.0 9.0 553 ------- null} + -t 0.667712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1127 -a 0 -x {9.0 10.0 568 ------- null} - -t 0.667712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1127 -a 0 -x {9.0 10.0 568 ------- null} h -t 0.667712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1127 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.668112 -s 10 -d 7 -p ack -e 40 -c 0 -i 1124 -a 0 -x {10.0 9.0 557 ------- null} + -t 0.668112 -s 7 -d 0 -p ack -e 40 -c 0 -i 1124 -a 0 -x {10.0 9.0 557 ------- null} h -t 0.668112 -s 7 -d 8 -p ack -e 40 -c 0 -i 1124 -a 0 -x {10.0 9.0 557 ------- null} r -t 0.668256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1109 -a 0 -x {9.0 10.0 559 ------- null} + -t 0.668256 -s 10 -d 7 -p ack -e 40 -c 0 -i 1128 -a 0 -x {10.0 9.0 559 ------- null} - -t 0.668256 -s 10 -d 7 -p ack -e 40 -c 0 -i 1128 -a 0 -x {10.0 9.0 559 ------- null} h -t 0.668256 -s 10 -d 7 -p ack -e 40 -c 0 -i 1128 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.668272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1123 -a 0 -x {9.0 10.0 566 ------- null} + -t 0.668272 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1123 -a 0 -x {9.0 10.0 566 ------- null} h -t 0.668272 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1123 -a 0 -x {9.0 10.0 566 ------- null} + -t 0.66872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {9.0 10.0 562 ------- null} - -t 0.66872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {9.0 10.0 562 ------- null} h -t 0.66872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.668752 -s 0 -d 9 -p ack -e 40 -c 0 -i 1118 -a 0 -x {10.0 9.0 554 ------- null} + -t 0.668752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1129 -a 0 -x {9.0 10.0 569 ------- null} - -t 0.668752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1129 -a 0 -x {9.0 10.0 569 ------- null} h -t 0.668752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1129 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.668912 -s 0 -d 9 -p ack -e 40 -c 0 -i 1122 -a 0 -x {10.0 9.0 556 ------- null} - -t 0.668912 -s 0 -d 9 -p ack -e 40 -c 0 -i 1122 -a 0 -x {10.0 9.0 556 ------- null} h -t 0.668912 -s 0 -d 9 -p ack -e 40 -c 0 -i 1122 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.6692 -s 10 -d 7 -p ack -e 40 -c 0 -i 1126 -a 0 -x {10.0 9.0 558 ------- null} + -t 0.6692 -s 7 -d 0 -p ack -e 40 -c 0 -i 1126 -a 0 -x {10.0 9.0 558 ------- null} h -t 0.6692 -s 7 -d 8 -p ack -e 40 -c 0 -i 1126 -a 0 -x {10.0 9.0 558 ------- null} r -t 0.669296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1125 -a 0 -x {9.0 10.0 567 ------- null} + -t 0.669296 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1125 -a 0 -x {9.0 10.0 567 ------- null} h -t 0.669296 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1125 -a 0 -x {9.0 10.0 567 ------- null} r -t 0.669344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1111 -a 0 -x {9.0 10.0 560 ------- null} + -t 0.669344 -s 10 -d 7 -p ack -e 40 -c 0 -i 1130 -a 0 -x {10.0 9.0 560 ------- null} - -t 0.669344 -s 10 -d 7 -p ack -e 40 -c 0 -i 1130 -a 0 -x {10.0 9.0 560 ------- null} h -t 0.669344 -s 10 -d 7 -p ack -e 40 -c 0 -i 1130 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.669728 -s 0 -d 9 -p ack -e 40 -c 0 -i 1120 -a 0 -x {10.0 9.0 555 ------- null} + -t 0.669728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1131 -a 0 -x {9.0 10.0 570 ------- null} - -t 0.669728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1131 -a 0 -x {9.0 10.0 570 ------- null} h -t 0.669728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1131 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.669808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {9.0 10.0 563 ------- null} - -t 0.669808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {9.0 10.0 563 ------- null} h -t 0.669808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.67008 -s 0 -d 9 -p ack -e 40 -c 0 -i 1124 -a 0 -x {10.0 9.0 557 ------- null} - -t 0.67008 -s 0 -d 9 -p ack -e 40 -c 0 -i 1124 -a 0 -x {10.0 9.0 557 ------- null} h -t 0.67008 -s 0 -d 9 -p ack -e 40 -c 0 -i 1124 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.670288 -s 10 -d 7 -p ack -e 40 -c 0 -i 1128 -a 0 -x {10.0 9.0 559 ------- null} + -t 0.670288 -s 7 -d 0 -p ack -e 40 -c 0 -i 1128 -a 0 -x {10.0 9.0 559 ------- null} h -t 0.670288 -s 7 -d 8 -p ack -e 40 -c 0 -i 1128 -a 0 -x {10.0 9.0 559 ------- null} r -t 0.670432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1113 -a 0 -x {9.0 10.0 561 ------- null} + -t 0.670432 -s 10 -d 7 -p ack -e 40 -c 0 -i 1132 -a 0 -x {10.0 9.0 561 ------- null} - -t 0.670432 -s 10 -d 7 -p ack -e 40 -c 0 -i 1132 -a 0 -x {10.0 9.0 561 ------- null} h -t 0.670432 -s 10 -d 7 -p ack -e 40 -c 0 -i 1132 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.670512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1127 -a 0 -x {9.0 10.0 568 ------- null} + -t 0.670512 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1127 -a 0 -x {9.0 10.0 568 ------- null} h -t 0.670512 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1127 -a 0 -x {9.0 10.0 568 ------- null} r -t 0.670944 -s 0 -d 9 -p ack -e 40 -c 0 -i 1122 -a 0 -x {10.0 9.0 556 ------- null} + -t 0.670944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1133 -a 0 -x {9.0 10.0 571 ------- null} - -t 0.670944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1133 -a 0 -x {9.0 10.0 571 ------- null} h -t 0.670944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1133 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.671008 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {9.0 10.0 564 ------- null} - -t 0.671008 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {9.0 10.0 564 ------- null} h -t 0.671008 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.671216 -s 0 -d 9 -p ack -e 40 -c 0 -i 1126 -a 0 -x {10.0 9.0 558 ------- null} - -t 0.671216 -s 0 -d 9 -p ack -e 40 -c 0 -i 1126 -a 0 -x {10.0 9.0 558 ------- null} h -t 0.671216 -s 0 -d 9 -p ack -e 40 -c 0 -i 1126 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.671376 -s 10 -d 7 -p ack -e 40 -c 0 -i 1130 -a 0 -x {10.0 9.0 560 ------- null} + -t 0.671376 -s 7 -d 0 -p ack -e 40 -c 0 -i 1130 -a 0 -x {10.0 9.0 560 ------- null} h -t 0.671376 -s 7 -d 8 -p ack -e 40 -c 0 -i 1130 -a 0 -x {10.0 9.0 560 ------- null} r -t 0.67152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1115 -a 0 -x {9.0 10.0 562 ------- null} + -t 0.67152 -s 10 -d 7 -p ack -e 40 -c 0 -i 1134 -a 0 -x {10.0 9.0 562 ------- null} - -t 0.67152 -s 10 -d 7 -p ack -e 40 -c 0 -i 1134 -a 0 -x {10.0 9.0 562 ------- null} h -t 0.67152 -s 10 -d 7 -p ack -e 40 -c 0 -i 1134 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.671552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1129 -a 0 -x {9.0 10.0 569 ------- null} + -t 0.671552 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1129 -a 0 -x {9.0 10.0 569 ------- null} h -t 0.671552 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1129 -a 0 -x {9.0 10.0 569 ------- null} + -t 0.672096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {9.0 10.0 565 ------- null} - -t 0.672096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {9.0 10.0 565 ------- null} h -t 0.672096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.672112 -s 0 -d 9 -p ack -e 40 -c 0 -i 1124 -a 0 -x {10.0 9.0 557 ------- null} + -t 0.672112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1135 -a 0 -x {9.0 10.0 572 ------- null} - -t 0.672112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1135 -a 0 -x {9.0 10.0 572 ------- null} h -t 0.672112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1135 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.672304 -s 0 -d 9 -p ack -e 40 -c 0 -i 1128 -a 0 -x {10.0 9.0 559 ------- null} - -t 0.672304 -s 0 -d 9 -p ack -e 40 -c 0 -i 1128 -a 0 -x {10.0 9.0 559 ------- null} h -t 0.672304 -s 0 -d 9 -p ack -e 40 -c 0 -i 1128 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.672464 -s 10 -d 7 -p ack -e 40 -c 0 -i 1132 -a 0 -x {10.0 9.0 561 ------- null} + -t 0.672464 -s 7 -d 0 -p ack -e 40 -c 0 -i 1132 -a 0 -x {10.0 9.0 561 ------- null} h -t 0.672464 -s 7 -d 8 -p ack -e 40 -c 0 -i 1132 -a 0 -x {10.0 9.0 561 ------- null} r -t 0.672528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1131 -a 0 -x {9.0 10.0 570 ------- null} + -t 0.672528 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1131 -a 0 -x {9.0 10.0 570 ------- null} h -t 0.672528 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1131 -a 0 -x {9.0 10.0 570 ------- null} r -t 0.672608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1117 -a 0 -x {9.0 10.0 563 ------- null} + -t 0.672608 -s 10 -d 7 -p ack -e 40 -c 0 -i 1136 -a 0 -x {10.0 9.0 563 ------- null} - -t 0.672608 -s 10 -d 7 -p ack -e 40 -c 0 -i 1136 -a 0 -x {10.0 9.0 563 ------- null} h -t 0.672608 -s 10 -d 7 -p ack -e 40 -c 0 -i 1136 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.673184 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1123 -a 0 -x {9.0 10.0 566 ------- null} - -t 0.673184 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1123 -a 0 -x {9.0 10.0 566 ------- null} h -t 0.673184 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1123 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.673248 -s 0 -d 9 -p ack -e 40 -c 0 -i 1126 -a 0 -x {10.0 9.0 558 ------- null} + -t 0.673248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1137 -a 0 -x {9.0 10.0 573 ------- null} - -t 0.673248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1137 -a 0 -x {9.0 10.0 573 ------- null} h -t 0.673248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1137 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.67344 -s 0 -d 9 -p ack -e 40 -c 0 -i 1130 -a 0 -x {10.0 9.0 560 ------- null} - -t 0.67344 -s 0 -d 9 -p ack -e 40 -c 0 -i 1130 -a 0 -x {10.0 9.0 560 ------- null} h -t 0.67344 -s 0 -d 9 -p ack -e 40 -c 0 -i 1130 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.673552 -s 10 -d 7 -p ack -e 40 -c 0 -i 1134 -a 0 -x {10.0 9.0 562 ------- null} + -t 0.673552 -s 7 -d 0 -p ack -e 40 -c 0 -i 1134 -a 0 -x {10.0 9.0 562 ------- null} h -t 0.673552 -s 7 -d 8 -p ack -e 40 -c 0 -i 1134 -a 0 -x {10.0 9.0 562 ------- null} r -t 0.673744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1133 -a 0 -x {9.0 10.0 571 ------- null} + -t 0.673744 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1133 -a 0 -x {9.0 10.0 571 ------- null} h -t 0.673744 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1133 -a 0 -x {9.0 10.0 571 ------- null} r -t 0.673808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1119 -a 0 -x {9.0 10.0 564 ------- null} + -t 0.673808 -s 10 -d 7 -p ack -e 40 -c 0 -i 1138 -a 0 -x {10.0 9.0 564 ------- null} - -t 0.673808 -s 10 -d 7 -p ack -e 40 -c 0 -i 1138 -a 0 -x {10.0 9.0 564 ------- null} h -t 0.673808 -s 10 -d 7 -p ack -e 40 -c 0 -i 1138 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.674272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1125 -a 0 -x {9.0 10.0 567 ------- null} - -t 0.674272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1125 -a 0 -x {9.0 10.0 567 ------- null} h -t 0.674272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1125 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.674336 -s 0 -d 9 -p ack -e 40 -c 0 -i 1128 -a 0 -x {10.0 9.0 559 ------- null} + -t 0.674336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1139 -a 0 -x {9.0 10.0 574 ------- null} - -t 0.674336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1139 -a 0 -x {9.0 10.0 574 ------- null} h -t 0.674336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1139 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.67448 -s 0 -d 9 -p ack -e 40 -c 0 -i 1132 -a 0 -x {10.0 9.0 561 ------- null} - -t 0.67448 -s 0 -d 9 -p ack -e 40 -c 0 -i 1132 -a 0 -x {10.0 9.0 561 ------- null} h -t 0.67448 -s 0 -d 9 -p ack -e 40 -c 0 -i 1132 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.67464 -s 10 -d 7 -p ack -e 40 -c 0 -i 1136 -a 0 -x {10.0 9.0 563 ------- null} + -t 0.67464 -s 7 -d 0 -p ack -e 40 -c 0 -i 1136 -a 0 -x {10.0 9.0 563 ------- null} h -t 0.67464 -s 7 -d 8 -p ack -e 40 -c 0 -i 1136 -a 0 -x {10.0 9.0 563 ------- null} r -t 0.674896 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1121 -a 0 -x {9.0 10.0 565 ------- null} + -t 0.674896 -s 10 -d 7 -p ack -e 40 -c 0 -i 1140 -a 0 -x {10.0 9.0 565 ------- null} - -t 0.674896 -s 10 -d 7 -p ack -e 40 -c 0 -i 1140 -a 0 -x {10.0 9.0 565 ------- null} h -t 0.674896 -s 10 -d 7 -p ack -e 40 -c 0 -i 1140 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.674912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1135 -a 0 -x {9.0 10.0 572 ------- null} + -t 0.674912 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1135 -a 0 -x {9.0 10.0 572 ------- null} h -t 0.674912 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1135 -a 0 -x {9.0 10.0 572 ------- null} + -t 0.67536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1127 -a 0 -x {9.0 10.0 568 ------- null} - -t 0.67536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1127 -a 0 -x {9.0 10.0 568 ------- null} h -t 0.67536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1127 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.675472 -s 0 -d 9 -p ack -e 40 -c 0 -i 1130 -a 0 -x {10.0 9.0 560 ------- null} + -t 0.675472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1141 -a 0 -x {9.0 10.0 575 ------- null} - -t 0.675472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1141 -a 0 -x {9.0 10.0 575 ------- null} h -t 0.675472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1141 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.675568 -s 0 -d 9 -p ack -e 40 -c 0 -i 1134 -a 0 -x {10.0 9.0 562 ------- null} - -t 0.675568 -s 0 -d 9 -p ack -e 40 -c 0 -i 1134 -a 0 -x {10.0 9.0 562 ------- null} h -t 0.675568 -s 0 -d 9 -p ack -e 40 -c 0 -i 1134 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.67584 -s 10 -d 7 -p ack -e 40 -c 0 -i 1138 -a 0 -x {10.0 9.0 564 ------- null} + -t 0.67584 -s 7 -d 0 -p ack -e 40 -c 0 -i 1138 -a 0 -x {10.0 9.0 564 ------- null} h -t 0.67584 -s 7 -d 8 -p ack -e 40 -c 0 -i 1138 -a 0 -x {10.0 9.0 564 ------- null} r -t 0.675984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1123 -a 0 -x {9.0 10.0 566 ------- null} + -t 0.675984 -s 10 -d 7 -p ack -e 40 -c 0 -i 1142 -a 0 -x {10.0 9.0 566 ------- null} - -t 0.675984 -s 10 -d 7 -p ack -e 40 -c 0 -i 1142 -a 0 -x {10.0 9.0 566 ------- null} h -t 0.675984 -s 10 -d 7 -p ack -e 40 -c 0 -i 1142 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.676048 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1137 -a 0 -x {9.0 10.0 573 ------- null} + -t 0.676048 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1137 -a 0 -x {9.0 10.0 573 ------- null} h -t 0.676048 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1137 -a 0 -x {9.0 10.0 573 ------- null} + -t 0.676448 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1129 -a 0 -x {9.0 10.0 569 ------- null} - -t 0.676448 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1129 -a 0 -x {9.0 10.0 569 ------- null} h -t 0.676448 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1129 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.676512 -s 0 -d 9 -p ack -e 40 -c 0 -i 1132 -a 0 -x {10.0 9.0 561 ------- null} + -t 0.676512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1143 -a 0 -x {9.0 10.0 576 ------- null} - -t 0.676512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1143 -a 0 -x {9.0 10.0 576 ------- null} h -t 0.676512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1143 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.676688 -s 0 -d 9 -p ack -e 40 -c 0 -i 1136 -a 0 -x {10.0 9.0 563 ------- null} - -t 0.676688 -s 0 -d 9 -p ack -e 40 -c 0 -i 1136 -a 0 -x {10.0 9.0 563 ------- null} h -t 0.676688 -s 0 -d 9 -p ack -e 40 -c 0 -i 1136 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.676928 -s 10 -d 7 -p ack -e 40 -c 0 -i 1140 -a 0 -x {10.0 9.0 565 ------- null} + -t 0.676928 -s 7 -d 0 -p ack -e 40 -c 0 -i 1140 -a 0 -x {10.0 9.0 565 ------- null} h -t 0.676928 -s 7 -d 8 -p ack -e 40 -c 0 -i 1140 -a 0 -x {10.0 9.0 565 ------- null} r -t 0.677072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1125 -a 0 -x {9.0 10.0 567 ------- null} + -t 0.677072 -s 10 -d 7 -p ack -e 40 -c 0 -i 1144 -a 0 -x {10.0 9.0 567 ------- null} - -t 0.677072 -s 10 -d 7 -p ack -e 40 -c 0 -i 1144 -a 0 -x {10.0 9.0 567 ------- null} h -t 0.677072 -s 10 -d 7 -p ack -e 40 -c 0 -i 1144 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.677136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1139 -a 0 -x {9.0 10.0 574 ------- null} + -t 0.677136 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1139 -a 0 -x {9.0 10.0 574 ------- null} h -t 0.677136 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1139 -a 0 -x {9.0 10.0 574 ------- null} + -t 0.677536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1131 -a 0 -x {9.0 10.0 570 ------- null} - -t 0.677536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1131 -a 0 -x {9.0 10.0 570 ------- null} h -t 0.677536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1131 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.6776 -s 0 -d 9 -p ack -e 40 -c 0 -i 1134 -a 0 -x {10.0 9.0 562 ------- null} + -t 0.6776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1145 -a 0 -x {9.0 10.0 577 ------- null} - -t 0.6776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1145 -a 0 -x {9.0 10.0 577 ------- null} h -t 0.6776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1145 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.677696 -s 0 -d 9 -p ack -e 40 -c 0 -i 1138 -a 0 -x {10.0 9.0 564 ------- null} - -t 0.677696 -s 0 -d 9 -p ack -e 40 -c 0 -i 1138 -a 0 -x {10.0 9.0 564 ------- null} h -t 0.677696 -s 0 -d 9 -p ack -e 40 -c 0 -i 1138 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.678016 -s 10 -d 7 -p ack -e 40 -c 0 -i 1142 -a 0 -x {10.0 9.0 566 ------- null} + -t 0.678016 -s 7 -d 0 -p ack -e 40 -c 0 -i 1142 -a 0 -x {10.0 9.0 566 ------- null} h -t 0.678016 -s 7 -d 8 -p ack -e 40 -c 0 -i 1142 -a 0 -x {10.0 9.0 566 ------- null} r -t 0.67816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1127 -a 0 -x {9.0 10.0 568 ------- null} + -t 0.67816 -s 10 -d 7 -p ack -e 40 -c 0 -i 1146 -a 0 -x {10.0 9.0 568 ------- null} - -t 0.67816 -s 10 -d 7 -p ack -e 40 -c 0 -i 1146 -a 0 -x {10.0 9.0 568 ------- null} h -t 0.67816 -s 10 -d 7 -p ack -e 40 -c 0 -i 1146 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.678272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1141 -a 0 -x {9.0 10.0 575 ------- null} + -t 0.678272 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1141 -a 0 -x {9.0 10.0 575 ------- null} h -t 0.678272 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1141 -a 0 -x {9.0 10.0 575 ------- null} + -t 0.678624 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1133 -a 0 -x {9.0 10.0 571 ------- null} - -t 0.678624 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1133 -a 0 -x {9.0 10.0 571 ------- null} h -t 0.678624 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1133 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.67872 -s 0 -d 9 -p ack -e 40 -c 0 -i 1136 -a 0 -x {10.0 9.0 563 ------- null} + -t 0.67872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1147 -a 0 -x {9.0 10.0 578 ------- null} - -t 0.67872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1147 -a 0 -x {9.0 10.0 578 ------- null} h -t 0.67872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1147 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.6788 -s 0 -d 9 -p ack -e 40 -c 0 -i 1140 -a 0 -x {10.0 9.0 565 ------- null} - -t 0.6788 -s 0 -d 9 -p ack -e 40 -c 0 -i 1140 -a 0 -x {10.0 9.0 565 ------- null} h -t 0.6788 -s 0 -d 9 -p ack -e 40 -c 0 -i 1140 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.679104 -s 10 -d 7 -p ack -e 40 -c 0 -i 1144 -a 0 -x {10.0 9.0 567 ------- null} + -t 0.679104 -s 7 -d 0 -p ack -e 40 -c 0 -i 1144 -a 0 -x {10.0 9.0 567 ------- null} h -t 0.679104 -s 7 -d 8 -p ack -e 40 -c 0 -i 1144 -a 0 -x {10.0 9.0 567 ------- null} r -t 0.679248 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1129 -a 0 -x {9.0 10.0 569 ------- null} + -t 0.679248 -s 10 -d 7 -p ack -e 40 -c 0 -i 1148 -a 0 -x {10.0 9.0 569 ------- null} - -t 0.679248 -s 10 -d 7 -p ack -e 40 -c 0 -i 1148 -a 0 -x {10.0 9.0 569 ------- null} h -t 0.679248 -s 10 -d 7 -p ack -e 40 -c 0 -i 1148 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.679312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1143 -a 0 -x {9.0 10.0 576 ------- null} + -t 0.679312 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1143 -a 0 -x {9.0 10.0 576 ------- null} h -t 0.679312 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1143 -a 0 -x {9.0 10.0 576 ------- null} + -t 0.679712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1135 -a 0 -x {9.0 10.0 572 ------- null} - -t 0.679712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1135 -a 0 -x {9.0 10.0 572 ------- null} h -t 0.679712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1135 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.679728 -s 0 -d 9 -p ack -e 40 -c 0 -i 1138 -a 0 -x {10.0 9.0 564 ------- null} + -t 0.679728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1149 -a 0 -x {9.0 10.0 579 ------- null} - -t 0.679728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1149 -a 0 -x {9.0 10.0 579 ------- null} h -t 0.679728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1149 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.679856 -s 0 -d 9 -p ack -e 40 -c 0 -i 1142 -a 0 -x {10.0 9.0 566 ------- null} - -t 0.679856 -s 0 -d 9 -p ack -e 40 -c 0 -i 1142 -a 0 -x {10.0 9.0 566 ------- null} h -t 0.679856 -s 0 -d 9 -p ack -e 40 -c 0 -i 1142 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.680192 -s 10 -d 7 -p ack -e 40 -c 0 -i 1146 -a 0 -x {10.0 9.0 568 ------- null} + -t 0.680192 -s 7 -d 0 -p ack -e 40 -c 0 -i 1146 -a 0 -x {10.0 9.0 568 ------- null} h -t 0.680192 -s 7 -d 8 -p ack -e 40 -c 0 -i 1146 -a 0 -x {10.0 9.0 568 ------- null} r -t 0.680336 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1131 -a 0 -x {9.0 10.0 570 ------- null} + -t 0.680336 -s 10 -d 7 -p ack -e 40 -c 0 -i 1150 -a 0 -x {10.0 9.0 570 ------- null} - -t 0.680336 -s 10 -d 7 -p ack -e 40 -c 0 -i 1150 -a 0 -x {10.0 9.0 570 ------- null} h -t 0.680336 -s 10 -d 7 -p ack -e 40 -c 0 -i 1150 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.6804 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1145 -a 0 -x {9.0 10.0 577 ------- null} + -t 0.6804 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1145 -a 0 -x {9.0 10.0 577 ------- null} h -t 0.6804 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1145 -a 0 -x {9.0 10.0 577 ------- null} + -t 0.6808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1137 -a 0 -x {9.0 10.0 573 ------- null} - -t 0.6808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1137 -a 0 -x {9.0 10.0 573 ------- null} h -t 0.6808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1137 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.680832 -s 0 -d 9 -p ack -e 40 -c 0 -i 1140 -a 0 -x {10.0 9.0 565 ------- null} + -t 0.680832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1151 -a 0 -x {9.0 10.0 580 ------- null} - -t 0.680832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1151 -a 0 -x {9.0 10.0 580 ------- null} h -t 0.680832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1151 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.681056 -s 0 -d 9 -p ack -e 40 -c 0 -i 1144 -a 0 -x {10.0 9.0 567 ------- null} - -t 0.681056 -s 0 -d 9 -p ack -e 40 -c 0 -i 1144 -a 0 -x {10.0 9.0 567 ------- null} h -t 0.681056 -s 0 -d 9 -p ack -e 40 -c 0 -i 1144 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.68128 -s 10 -d 7 -p ack -e 40 -c 0 -i 1148 -a 0 -x {10.0 9.0 569 ------- null} + -t 0.68128 -s 7 -d 0 -p ack -e 40 -c 0 -i 1148 -a 0 -x {10.0 9.0 569 ------- null} h -t 0.68128 -s 7 -d 8 -p ack -e 40 -c 0 -i 1148 -a 0 -x {10.0 9.0 569 ------- null} r -t 0.681424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1133 -a 0 -x {9.0 10.0 571 ------- null} + -t 0.681424 -s 10 -d 7 -p ack -e 40 -c 0 -i 1152 -a 0 -x {10.0 9.0 571 ------- null} - -t 0.681424 -s 10 -d 7 -p ack -e 40 -c 0 -i 1152 -a 0 -x {10.0 9.0 571 ------- null} h -t 0.681424 -s 10 -d 7 -p ack -e 40 -c 0 -i 1152 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.68152 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1147 -a 0 -x {9.0 10.0 578 ------- null} + -t 0.68152 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1147 -a 0 -x {9.0 10.0 578 ------- null} h -t 0.68152 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1147 -a 0 -x {9.0 10.0 578 ------- null} r -t 0.681888 -s 0 -d 9 -p ack -e 40 -c 0 -i 1142 -a 0 -x {10.0 9.0 566 ------- null} + -t 0.681888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1153 -a 0 -x {9.0 10.0 581 ------- null} - -t 0.681888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1153 -a 0 -x {9.0 10.0 581 ------- null} h -t 0.681888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1153 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.681888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1139 -a 0 -x {9.0 10.0 574 ------- null} - -t 0.681888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1139 -a 0 -x {9.0 10.0 574 ------- null} h -t 0.681888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1139 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.681952 -s 0 -d 9 -p ack -e 40 -c 0 -i 1146 -a 0 -x {10.0 9.0 568 ------- null} - -t 0.681952 -s 0 -d 9 -p ack -e 40 -c 0 -i 1146 -a 0 -x {10.0 9.0 568 ------- null} h -t 0.681952 -s 0 -d 9 -p ack -e 40 -c 0 -i 1146 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.682368 -s 10 -d 7 -p ack -e 40 -c 0 -i 1150 -a 0 -x {10.0 9.0 570 ------- null} + -t 0.682368 -s 7 -d 0 -p ack -e 40 -c 0 -i 1150 -a 0 -x {10.0 9.0 570 ------- null} h -t 0.682368 -s 7 -d 8 -p ack -e 40 -c 0 -i 1150 -a 0 -x {10.0 9.0 570 ------- null} r -t 0.682512 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1135 -a 0 -x {9.0 10.0 572 ------- null} + -t 0.682512 -s 10 -d 7 -p ack -e 40 -c 0 -i 1154 -a 0 -x {10.0 9.0 572 ------- null} - -t 0.682512 -s 10 -d 7 -p ack -e 40 -c 0 -i 1154 -a 0 -x {10.0 9.0 572 ------- null} h -t 0.682512 -s 10 -d 7 -p ack -e 40 -c 0 -i 1154 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.682528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1149 -a 0 -x {9.0 10.0 579 ------- null} + -t 0.682528 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1149 -a 0 -x {9.0 10.0 579 ------- null} h -t 0.682528 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1149 -a 0 -x {9.0 10.0 579 ------- null} + -t 0.682976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1141 -a 0 -x {9.0 10.0 575 ------- null} - -t 0.682976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1141 -a 0 -x {9.0 10.0 575 ------- null} h -t 0.682976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1141 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.683088 -s 0 -d 9 -p ack -e 40 -c 0 -i 1144 -a 0 -x {10.0 9.0 567 ------- null} + -t 0.683088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1155 -a 0 -x {9.0 10.0 582 ------- null} - -t 0.683088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1155 -a 0 -x {9.0 10.0 582 ------- null} h -t 0.683088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1155 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.6832 -s 0 -d 9 -p ack -e 40 -c 0 -i 1148 -a 0 -x {10.0 9.0 569 ------- null} - -t 0.6832 -s 0 -d 9 -p ack -e 40 -c 0 -i 1148 -a 0 -x {10.0 9.0 569 ------- null} h -t 0.6832 -s 0 -d 9 -p ack -e 40 -c 0 -i 1148 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.683456 -s 10 -d 7 -p ack -e 40 -c 0 -i 1152 -a 0 -x {10.0 9.0 571 ------- null} + -t 0.683456 -s 7 -d 0 -p ack -e 40 -c 0 -i 1152 -a 0 -x {10.0 9.0 571 ------- null} h -t 0.683456 -s 7 -d 8 -p ack -e 40 -c 0 -i 1152 -a 0 -x {10.0 9.0 571 ------- null} r -t 0.6836 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1137 -a 0 -x {9.0 10.0 573 ------- null} + -t 0.6836 -s 10 -d 7 -p ack -e 40 -c 0 -i 1156 -a 0 -x {10.0 9.0 573 ------- null} - -t 0.6836 -s 10 -d 7 -p ack -e 40 -c 0 -i 1156 -a 0 -x {10.0 9.0 573 ------- null} h -t 0.6836 -s 10 -d 7 -p ack -e 40 -c 0 -i 1156 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.683632 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1151 -a 0 -x {9.0 10.0 580 ------- null} + -t 0.683632 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1151 -a 0 -x {9.0 10.0 580 ------- null} h -t 0.683632 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1151 -a 0 -x {9.0 10.0 580 ------- null} r -t 0.683984 -s 0 -d 9 -p ack -e 40 -c 0 -i 1146 -a 0 -x {10.0 9.0 568 ------- null} + -t 0.683984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1157 -a 0 -x {9.0 10.0 583 ------- null} - -t 0.683984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1157 -a 0 -x {9.0 10.0 583 ------- null} h -t 0.683984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1157 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.684064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1143 -a 0 -x {9.0 10.0 576 ------- null} - -t 0.684064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1143 -a 0 -x {9.0 10.0 576 ------- null} h -t 0.684064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1143 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.684208 -s 0 -d 9 -p ack -e 40 -c 0 -i 1150 -a 0 -x {10.0 9.0 570 ------- null} - -t 0.684208 -s 0 -d 9 -p ack -e 40 -c 0 -i 1150 -a 0 -x {10.0 9.0 570 ------- null} h -t 0.684208 -s 0 -d 9 -p ack -e 40 -c 0 -i 1150 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.684544 -s 10 -d 7 -p ack -e 40 -c 0 -i 1154 -a 0 -x {10.0 9.0 572 ------- null} + -t 0.684544 -s 7 -d 0 -p ack -e 40 -c 0 -i 1154 -a 0 -x {10.0 9.0 572 ------- null} h -t 0.684544 -s 7 -d 8 -p ack -e 40 -c 0 -i 1154 -a 0 -x {10.0 9.0 572 ------- null} r -t 0.684688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1153 -a 0 -x {9.0 10.0 581 ------- null} + -t 0.684688 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1153 -a 0 -x {9.0 10.0 581 ------- null} h -t 0.684688 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1153 -a 0 -x {9.0 10.0 581 ------- null} r -t 0.684688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1139 -a 0 -x {9.0 10.0 574 ------- null} + -t 0.684688 -s 10 -d 7 -p ack -e 40 -c 0 -i 1158 -a 0 -x {10.0 9.0 574 ------- null} - -t 0.684688 -s 10 -d 7 -p ack -e 40 -c 0 -i 1158 -a 0 -x {10.0 9.0 574 ------- null} h -t 0.684688 -s 10 -d 7 -p ack -e 40 -c 0 -i 1158 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.685152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1145 -a 0 -x {9.0 10.0 577 ------- null} - -t 0.685152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1145 -a 0 -x {9.0 10.0 577 ------- null} h -t 0.685152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1145 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.685232 -s 0 -d 9 -p ack -e 40 -c 0 -i 1148 -a 0 -x {10.0 9.0 569 ------- null} + -t 0.685232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1159 -a 0 -x {9.0 10.0 584 ------- null} - -t 0.685232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1159 -a 0 -x {9.0 10.0 584 ------- null} h -t 0.685232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1159 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.685456 -s 0 -d 9 -p ack -e 40 -c 0 -i 1152 -a 0 -x {10.0 9.0 571 ------- null} - -t 0.685456 -s 0 -d 9 -p ack -e 40 -c 0 -i 1152 -a 0 -x {10.0 9.0 571 ------- null} h -t 0.685456 -s 0 -d 9 -p ack -e 40 -c 0 -i 1152 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.685632 -s 10 -d 7 -p ack -e 40 -c 0 -i 1156 -a 0 -x {10.0 9.0 573 ------- null} + -t 0.685632 -s 7 -d 0 -p ack -e 40 -c 0 -i 1156 -a 0 -x {10.0 9.0 573 ------- null} h -t 0.685632 -s 7 -d 8 -p ack -e 40 -c 0 -i 1156 -a 0 -x {10.0 9.0 573 ------- null} r -t 0.685776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1141 -a 0 -x {9.0 10.0 575 ------- null} + -t 0.685776 -s 10 -d 7 -p ack -e 40 -c 0 -i 1160 -a 0 -x {10.0 9.0 575 ------- null} - -t 0.685776 -s 10 -d 7 -p ack -e 40 -c 0 -i 1160 -a 0 -x {10.0 9.0 575 ------- null} h -t 0.685776 -s 10 -d 7 -p ack -e 40 -c 0 -i 1160 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.685888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1155 -a 0 -x {9.0 10.0 582 ------- null} + -t 0.685888 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1155 -a 0 -x {9.0 10.0 582 ------- null} h -t 0.685888 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1155 -a 0 -x {9.0 10.0 582 ------- null} r -t 0.68624 -s 0 -d 9 -p ack -e 40 -c 0 -i 1150 -a 0 -x {10.0 9.0 570 ------- null} + -t 0.68624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1161 -a 0 -x {9.0 10.0 585 ------- null} - -t 0.68624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1161 -a 0 -x {9.0 10.0 585 ------- null} h -t 0.68624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1161 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.686352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1147 -a 0 -x {9.0 10.0 578 ------- null} - -t 0.686352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1147 -a 0 -x {9.0 10.0 578 ------- null} h -t 0.686352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1147 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.686656 -s 0 -d 9 -p ack -e 40 -c 0 -i 1154 -a 0 -x {10.0 9.0 572 ------- null} - -t 0.686656 -s 0 -d 9 -p ack -e 40 -c 0 -i 1154 -a 0 -x {10.0 9.0 572 ------- null} h -t 0.686656 -s 0 -d 9 -p ack -e 40 -c 0 -i 1154 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.68672 -s 10 -d 7 -p ack -e 40 -c 0 -i 1158 -a 0 -x {10.0 9.0 574 ------- null} + -t 0.68672 -s 7 -d 0 -p ack -e 40 -c 0 -i 1158 -a 0 -x {10.0 9.0 574 ------- null} h -t 0.68672 -s 7 -d 8 -p ack -e 40 -c 0 -i 1158 -a 0 -x {10.0 9.0 574 ------- null} r -t 0.686784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1157 -a 0 -x {9.0 10.0 583 ------- null} + -t 0.686784 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1157 -a 0 -x {9.0 10.0 583 ------- null} h -t 0.686784 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1157 -a 0 -x {9.0 10.0 583 ------- null} r -t 0.686864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1143 -a 0 -x {9.0 10.0 576 ------- null} + -t 0.686864 -s 10 -d 7 -p ack -e 40 -c 0 -i 1162 -a 0 -x {10.0 9.0 576 ------- null} - -t 0.686864 -s 10 -d 7 -p ack -e 40 -c 0 -i 1162 -a 0 -x {10.0 9.0 576 ------- null} h -t 0.686864 -s 10 -d 7 -p ack -e 40 -c 0 -i 1162 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.687488 -s 0 -d 9 -p ack -e 40 -c 0 -i 1152 -a 0 -x {10.0 9.0 571 ------- null} + -t 0.687488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1163 -a 0 -x {9.0 10.0 586 ------- null} - -t 0.687488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1163 -a 0 -x {9.0 10.0 586 ------- null} h -t 0.687488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1163 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.687504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1149 -a 0 -x {9.0 10.0 579 ------- null} - -t 0.687504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1149 -a 0 -x {9.0 10.0 579 ------- null} h -t 0.687504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1149 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.687712 -s 0 -d 9 -p ack -e 40 -c 0 -i 1156 -a 0 -x {10.0 9.0 573 ------- null} - -t 0.687712 -s 0 -d 9 -p ack -e 40 -c 0 -i 1156 -a 0 -x {10.0 9.0 573 ------- null} h -t 0.687712 -s 0 -d 9 -p ack -e 40 -c 0 -i 1156 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.687808 -s 10 -d 7 -p ack -e 40 -c 0 -i 1160 -a 0 -x {10.0 9.0 575 ------- null} + -t 0.687808 -s 7 -d 0 -p ack -e 40 -c 0 -i 1160 -a 0 -x {10.0 9.0 575 ------- null} h -t 0.687808 -s 7 -d 8 -p ack -e 40 -c 0 -i 1160 -a 0 -x {10.0 9.0 575 ------- null} r -t 0.687952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1145 -a 0 -x {9.0 10.0 577 ------- null} + -t 0.687952 -s 10 -d 7 -p ack -e 40 -c 0 -i 1164 -a 0 -x {10.0 9.0 577 ------- null} - -t 0.687952 -s 10 -d 7 -p ack -e 40 -c 0 -i 1164 -a 0 -x {10.0 9.0 577 ------- null} h -t 0.687952 -s 10 -d 7 -p ack -e 40 -c 0 -i 1164 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.688032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1159 -a 0 -x {9.0 10.0 584 ------- null} + -t 0.688032 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1159 -a 0 -x {9.0 10.0 584 ------- null} h -t 0.688032 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1159 -a 0 -x {9.0 10.0 584 ------- null} + -t 0.688592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1151 -a 0 -x {9.0 10.0 580 ------- null} - -t 0.688592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1151 -a 0 -x {9.0 10.0 580 ------- null} h -t 0.688592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1151 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.688688 -s 0 -d 9 -p ack -e 40 -c 0 -i 1154 -a 0 -x {10.0 9.0 572 ------- null} + -t 0.688688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1165 -a 0 -x {9.0 10.0 587 ------- null} - -t 0.688688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1165 -a 0 -x {9.0 10.0 587 ------- null} h -t 0.688688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1165 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.688784 -s 0 -d 9 -p ack -e 40 -c 0 -i 1158 -a 0 -x {10.0 9.0 574 ------- null} - -t 0.688784 -s 0 -d 9 -p ack -e 40 -c 0 -i 1158 -a 0 -x {10.0 9.0 574 ------- null} h -t 0.688784 -s 0 -d 9 -p ack -e 40 -c 0 -i 1158 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.688896 -s 10 -d 7 -p ack -e 40 -c 0 -i 1162 -a 0 -x {10.0 9.0 576 ------- null} + -t 0.688896 -s 7 -d 0 -p ack -e 40 -c 0 -i 1162 -a 0 -x {10.0 9.0 576 ------- null} h -t 0.688896 -s 7 -d 8 -p ack -e 40 -c 0 -i 1162 -a 0 -x {10.0 9.0 576 ------- null} r -t 0.68904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1161 -a 0 -x {9.0 10.0 585 ------- null} + -t 0.68904 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1161 -a 0 -x {9.0 10.0 585 ------- null} h -t 0.68904 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1161 -a 0 -x {9.0 10.0 585 ------- null} r -t 0.689152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1147 -a 0 -x {9.0 10.0 578 ------- null} + -t 0.689152 -s 10 -d 7 -p ack -e 40 -c 0 -i 1166 -a 0 -x {10.0 9.0 578 ------- null} - -t 0.689152 -s 10 -d 7 -p ack -e 40 -c 0 -i 1166 -a 0 -x {10.0 9.0 578 ------- null} h -t 0.689152 -s 10 -d 7 -p ack -e 40 -c 0 -i 1166 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.68968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1153 -a 0 -x {9.0 10.0 581 ------- null} - -t 0.68968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1153 -a 0 -x {9.0 10.0 581 ------- null} h -t 0.68968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1153 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.689744 -s 0 -d 9 -p ack -e 40 -c 0 -i 1156 -a 0 -x {10.0 9.0 573 ------- null} + -t 0.689744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1167 -a 0 -x {9.0 10.0 588 ------- null} - -t 0.689744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1167 -a 0 -x {9.0 10.0 588 ------- null} h -t 0.689744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1167 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.689904 -s 0 -d 9 -p ack -e 40 -c 0 -i 1160 -a 0 -x {10.0 9.0 575 ------- null} - -t 0.689904 -s 0 -d 9 -p ack -e 40 -c 0 -i 1160 -a 0 -x {10.0 9.0 575 ------- null} h -t 0.689904 -s 0 -d 9 -p ack -e 40 -c 0 -i 1160 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.689984 -s 10 -d 7 -p ack -e 40 -c 0 -i 1164 -a 0 -x {10.0 9.0 577 ------- null} + -t 0.689984 -s 7 -d 0 -p ack -e 40 -c 0 -i 1164 -a 0 -x {10.0 9.0 577 ------- null} h -t 0.689984 -s 7 -d 8 -p ack -e 40 -c 0 -i 1164 -a 0 -x {10.0 9.0 577 ------- null} r -t 0.690288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1163 -a 0 -x {9.0 10.0 586 ------- null} + -t 0.690288 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1163 -a 0 -x {9.0 10.0 586 ------- null} h -t 0.690288 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1163 -a 0 -x {9.0 10.0 586 ------- null} r -t 0.690304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1149 -a 0 -x {9.0 10.0 579 ------- null} + -t 0.690304 -s 10 -d 7 -p ack -e 40 -c 0 -i 1168 -a 0 -x {10.0 9.0 579 ------- null} - -t 0.690304 -s 10 -d 7 -p ack -e 40 -c 0 -i 1168 -a 0 -x {10.0 9.0 579 ------- null} h -t 0.690304 -s 10 -d 7 -p ack -e 40 -c 0 -i 1168 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.690768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1155 -a 0 -x {9.0 10.0 582 ------- null} - -t 0.690768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1155 -a 0 -x {9.0 10.0 582 ------- null} h -t 0.690768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1155 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.690816 -s 0 -d 9 -p ack -e 40 -c 0 -i 1158 -a 0 -x {10.0 9.0 574 ------- null} + -t 0.690816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1169 -a 0 -x {9.0 10.0 589 ------- null} - -t 0.690816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1169 -a 0 -x {9.0 10.0 589 ------- null} h -t 0.690816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1169 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.69104 -s 0 -d 9 -p ack -e 40 -c 0 -i 1162 -a 0 -x {10.0 9.0 576 ------- null} - -t 0.69104 -s 0 -d 9 -p ack -e 40 -c 0 -i 1162 -a 0 -x {10.0 9.0 576 ------- null} h -t 0.69104 -s 0 -d 9 -p ack -e 40 -c 0 -i 1162 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.691184 -s 10 -d 7 -p ack -e 40 -c 0 -i 1166 -a 0 -x {10.0 9.0 578 ------- null} + -t 0.691184 -s 7 -d 0 -p ack -e 40 -c 0 -i 1166 -a 0 -x {10.0 9.0 578 ------- null} h -t 0.691184 -s 7 -d 8 -p ack -e 40 -c 0 -i 1166 -a 0 -x {10.0 9.0 578 ------- null} r -t 0.691392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1151 -a 0 -x {9.0 10.0 580 ------- null} + -t 0.691392 -s 10 -d 7 -p ack -e 40 -c 0 -i 1170 -a 0 -x {10.0 9.0 580 ------- null} - -t 0.691392 -s 10 -d 7 -p ack -e 40 -c 0 -i 1170 -a 0 -x {10.0 9.0 580 ------- null} h -t 0.691392 -s 10 -d 7 -p ack -e 40 -c 0 -i 1170 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.691488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1165 -a 0 -x {9.0 10.0 587 ------- null} + -t 0.691488 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1165 -a 0 -x {9.0 10.0 587 ------- null} h -t 0.691488 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1165 -a 0 -x {9.0 10.0 587 ------- null} r -t 0.691936 -s 0 -d 9 -p ack -e 40 -c 0 -i 1160 -a 0 -x {10.0 9.0 575 ------- null} + -t 0.691936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1171 -a 0 -x {9.0 10.0 590 ------- null} - -t 0.691936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1171 -a 0 -x {9.0 10.0 590 ------- null} h -t 0.691936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1171 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.69208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1157 -a 0 -x {9.0 10.0 583 ------- null} - -t 0.69208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1157 -a 0 -x {9.0 10.0 583 ------- null} h -t 0.69208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1157 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.692208 -s 0 -d 9 -p ack -e 40 -c 0 -i 1164 -a 0 -x {10.0 9.0 577 ------- null} - -t 0.692208 -s 0 -d 9 -p ack -e 40 -c 0 -i 1164 -a 0 -x {10.0 9.0 577 ------- null} h -t 0.692208 -s 0 -d 9 -p ack -e 40 -c 0 -i 1164 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.692336 -s 10 -d 7 -p ack -e 40 -c 0 -i 1168 -a 0 -x {10.0 9.0 579 ------- null} + -t 0.692336 -s 7 -d 0 -p ack -e 40 -c 0 -i 1168 -a 0 -x {10.0 9.0 579 ------- null} h -t 0.692336 -s 7 -d 8 -p ack -e 40 -c 0 -i 1168 -a 0 -x {10.0 9.0 579 ------- null} r -t 0.69248 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1153 -a 0 -x {9.0 10.0 581 ------- null} + -t 0.69248 -s 10 -d 7 -p ack -e 40 -c 0 -i 1172 -a 0 -x {10.0 9.0 581 ------- null} - -t 0.69248 -s 10 -d 7 -p ack -e 40 -c 0 -i 1172 -a 0 -x {10.0 9.0 581 ------- null} h -t 0.69248 -s 10 -d 7 -p ack -e 40 -c 0 -i 1172 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.692544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1167 -a 0 -x {9.0 10.0 588 ------- null} + -t 0.692544 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1167 -a 0 -x {9.0 10.0 588 ------- null} h -t 0.692544 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1167 -a 0 -x {9.0 10.0 588 ------- null} r -t 0.693072 -s 0 -d 9 -p ack -e 40 -c 0 -i 1162 -a 0 -x {10.0 9.0 576 ------- null} + -t 0.693072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1173 -a 0 -x {9.0 10.0 591 ------- null} - -t 0.693072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1173 -a 0 -x {9.0 10.0 591 ------- null} h -t 0.693072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1173 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.693168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1159 -a 0 -x {9.0 10.0 584 ------- null} - -t 0.693168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1159 -a 0 -x {9.0 10.0 584 ------- null} h -t 0.693168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1159 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.693408 -s 0 -d 9 -p ack -e 40 -c 0 -i 1166 -a 0 -x {10.0 9.0 578 ------- null} - -t 0.693408 -s 0 -d 9 -p ack -e 40 -c 0 -i 1166 -a 0 -x {10.0 9.0 578 ------- null} h -t 0.693408 -s 0 -d 9 -p ack -e 40 -c 0 -i 1166 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.693424 -s 10 -d 7 -p ack -e 40 -c 0 -i 1170 -a 0 -x {10.0 9.0 580 ------- null} + -t 0.693424 -s 7 -d 0 -p ack -e 40 -c 0 -i 1170 -a 0 -x {10.0 9.0 580 ------- null} h -t 0.693424 -s 7 -d 8 -p ack -e 40 -c 0 -i 1170 -a 0 -x {10.0 9.0 580 ------- null} r -t 0.693568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1155 -a 0 -x {9.0 10.0 582 ------- null} + -t 0.693568 -s 10 -d 7 -p ack -e 40 -c 0 -i 1174 -a 0 -x {10.0 9.0 582 ------- null} - -t 0.693568 -s 10 -d 7 -p ack -e 40 -c 0 -i 1174 -a 0 -x {10.0 9.0 582 ------- null} h -t 0.693568 -s 10 -d 7 -p ack -e 40 -c 0 -i 1174 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.693616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1169 -a 0 -x {9.0 10.0 589 ------- null} + -t 0.693616 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1169 -a 0 -x {9.0 10.0 589 ------- null} h -t 0.693616 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1169 -a 0 -x {9.0 10.0 589 ------- null} r -t 0.69424 -s 0 -d 9 -p ack -e 40 -c 0 -i 1164 -a 0 -x {10.0 9.0 577 ------- null} + -t 0.69424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1175 -a 0 -x {9.0 10.0 592 ------- null} - -t 0.69424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1175 -a 0 -x {9.0 10.0 592 ------- null} h -t 0.69424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1175 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.694256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1161 -a 0 -x {9.0 10.0 585 ------- null} - -t 0.694256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1161 -a 0 -x {9.0 10.0 585 ------- null} h -t 0.694256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1161 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.694352 -s 0 -d 9 -p ack -e 40 -c 0 -i 1168 -a 0 -x {10.0 9.0 579 ------- null} - -t 0.694352 -s 0 -d 9 -p ack -e 40 -c 0 -i 1168 -a 0 -x {10.0 9.0 579 ------- null} h -t 0.694352 -s 0 -d 9 -p ack -e 40 -c 0 -i 1168 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.694512 -s 10 -d 7 -p ack -e 40 -c 0 -i 1172 -a 0 -x {10.0 9.0 581 ------- null} + -t 0.694512 -s 7 -d 0 -p ack -e 40 -c 0 -i 1172 -a 0 -x {10.0 9.0 581 ------- null} h -t 0.694512 -s 7 -d 8 -p ack -e 40 -c 0 -i 1172 -a 0 -x {10.0 9.0 581 ------- null} r -t 0.694736 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1171 -a 0 -x {9.0 10.0 590 ------- null} + -t 0.694736 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1171 -a 0 -x {9.0 10.0 590 ------- null} h -t 0.694736 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1171 -a 0 -x {9.0 10.0 590 ------- null} r -t 0.69488 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1157 -a 0 -x {9.0 10.0 583 ------- null} + -t 0.69488 -s 10 -d 7 -p ack -e 40 -c 0 -i 1176 -a 0 -x {10.0 9.0 583 ------- null} - -t 0.69488 -s 10 -d 7 -p ack -e 40 -c 0 -i 1176 -a 0 -x {10.0 9.0 583 ------- null} h -t 0.69488 -s 10 -d 7 -p ack -e 40 -c 0 -i 1176 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.695344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1163 -a 0 -x {9.0 10.0 586 ------- null} - -t 0.695344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1163 -a 0 -x {9.0 10.0 586 ------- null} h -t 0.695344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1163 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.69544 -s 0 -d 9 -p ack -e 40 -c 0 -i 1166 -a 0 -x {10.0 9.0 578 ------- null} + -t 0.69544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1177 -a 0 -x {9.0 10.0 593 ------- null} - -t 0.69544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1177 -a 0 -x {9.0 10.0 593 ------- null} h -t 0.69544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1177 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.695504 -s 0 -d 9 -p ack -e 40 -c 0 -i 1170 -a 0 -x {10.0 9.0 580 ------- null} - -t 0.695504 -s 0 -d 9 -p ack -e 40 -c 0 -i 1170 -a 0 -x {10.0 9.0 580 ------- null} h -t 0.695504 -s 0 -d 9 -p ack -e 40 -c 0 -i 1170 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.6956 -s 10 -d 7 -p ack -e 40 -c 0 -i 1174 -a 0 -x {10.0 9.0 582 ------- null} + -t 0.6956 -s 7 -d 0 -p ack -e 40 -c 0 -i 1174 -a 0 -x {10.0 9.0 582 ------- null} h -t 0.6956 -s 7 -d 8 -p ack -e 40 -c 0 -i 1174 -a 0 -x {10.0 9.0 582 ------- null} r -t 0.695872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1173 -a 0 -x {9.0 10.0 591 ------- null} + -t 0.695872 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1173 -a 0 -x {9.0 10.0 591 ------- null} h -t 0.695872 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1173 -a 0 -x {9.0 10.0 591 ------- null} r -t 0.695968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1159 -a 0 -x {9.0 10.0 584 ------- null} + -t 0.695968 -s 10 -d 7 -p ack -e 40 -c 0 -i 1178 -a 0 -x {10.0 9.0 584 ------- null} - -t 0.695968 -s 10 -d 7 -p ack -e 40 -c 0 -i 1178 -a 0 -x {10.0 9.0 584 ------- null} h -t 0.695968 -s 10 -d 7 -p ack -e 40 -c 0 -i 1178 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.696384 -s 0 -d 9 -p ack -e 40 -c 0 -i 1168 -a 0 -x {10.0 9.0 579 ------- null} + -t 0.696384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1179 -a 0 -x {9.0 10.0 594 ------- null} - -t 0.696384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1179 -a 0 -x {9.0 10.0 594 ------- null} h -t 0.696384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1179 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.696432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1165 -a 0 -x {9.0 10.0 587 ------- null} - -t 0.696432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1165 -a 0 -x {9.0 10.0 587 ------- null} h -t 0.696432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1165 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.696544 -s 0 -d 9 -p ack -e 40 -c 0 -i 1172 -a 0 -x {10.0 9.0 581 ------- null} - -t 0.696544 -s 0 -d 9 -p ack -e 40 -c 0 -i 1172 -a 0 -x {10.0 9.0 581 ------- null} h -t 0.696544 -s 0 -d 9 -p ack -e 40 -c 0 -i 1172 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.696912 -s 10 -d 7 -p ack -e 40 -c 0 -i 1176 -a 0 -x {10.0 9.0 583 ------- null} + -t 0.696912 -s 7 -d 0 -p ack -e 40 -c 0 -i 1176 -a 0 -x {10.0 9.0 583 ------- null} h -t 0.696912 -s 7 -d 8 -p ack -e 40 -c 0 -i 1176 -a 0 -x {10.0 9.0 583 ------- null} r -t 0.69704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1175 -a 0 -x {9.0 10.0 592 ------- null} + -t 0.69704 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1175 -a 0 -x {9.0 10.0 592 ------- null} h -t 0.69704 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1175 -a 0 -x {9.0 10.0 592 ------- null} r -t 0.697056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1161 -a 0 -x {9.0 10.0 585 ------- null} + -t 0.697056 -s 10 -d 7 -p ack -e 40 -c 0 -i 1180 -a 0 -x {10.0 9.0 585 ------- null} - -t 0.697056 -s 10 -d 7 -p ack -e 40 -c 0 -i 1180 -a 0 -x {10.0 9.0 585 ------- null} h -t 0.697056 -s 10 -d 7 -p ack -e 40 -c 0 -i 1180 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.69752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1167 -a 0 -x {9.0 10.0 588 ------- null} - -t 0.69752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1167 -a 0 -x {9.0 10.0 588 ------- null} h -t 0.69752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1167 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.697536 -s 0 -d 9 -p ack -e 40 -c 0 -i 1170 -a 0 -x {10.0 9.0 580 ------- null} + -t 0.697536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1181 -a 0 -x {9.0 10.0 595 ------- null} - -t 0.697536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1181 -a 0 -x {9.0 10.0 595 ------- null} h -t 0.697536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1181 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.697792 -s 0 -d 9 -p ack -e 40 -c 0 -i 1174 -a 0 -x {10.0 9.0 582 ------- null} - -t 0.697792 -s 0 -d 9 -p ack -e 40 -c 0 -i 1174 -a 0 -x {10.0 9.0 582 ------- null} h -t 0.697792 -s 0 -d 9 -p ack -e 40 -c 0 -i 1174 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.698 -s 10 -d 7 -p ack -e 40 -c 0 -i 1178 -a 0 -x {10.0 9.0 584 ------- null} + -t 0.698 -s 7 -d 0 -p ack -e 40 -c 0 -i 1178 -a 0 -x {10.0 9.0 584 ------- null} h -t 0.698 -s 7 -d 8 -p ack -e 40 -c 0 -i 1178 -a 0 -x {10.0 9.0 584 ------- null} r -t 0.698144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1163 -a 0 -x {9.0 10.0 586 ------- null} + -t 0.698144 -s 10 -d 7 -p ack -e 40 -c 0 -i 1182 -a 0 -x {10.0 9.0 586 ------- null} - -t 0.698144 -s 10 -d 7 -p ack -e 40 -c 0 -i 1182 -a 0 -x {10.0 9.0 586 ------- null} h -t 0.698144 -s 10 -d 7 -p ack -e 40 -c 0 -i 1182 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.69824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1177 -a 0 -x {9.0 10.0 593 ------- null} + -t 0.69824 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1177 -a 0 -x {9.0 10.0 593 ------- null} h -t 0.69824 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1177 -a 0 -x {9.0 10.0 593 ------- null} r -t 0.698576 -s 0 -d 9 -p ack -e 40 -c 0 -i 1172 -a 0 -x {10.0 9.0 581 ------- null} + -t 0.698576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1183 -a 0 -x {9.0 10.0 596 ------- null} - -t 0.698576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1183 -a 0 -x {9.0 10.0 596 ------- null} h -t 0.698576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1183 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.698624 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1169 -a 0 -x {9.0 10.0 589 ------- null} - -t 0.698624 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1169 -a 0 -x {9.0 10.0 589 ------- null} h -t 0.698624 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1169 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.698768 -s 0 -d 9 -p ack -e 40 -c 0 -i 1176 -a 0 -x {10.0 9.0 583 ------- null} - -t 0.698768 -s 0 -d 9 -p ack -e 40 -c 0 -i 1176 -a 0 -x {10.0 9.0 583 ------- null} h -t 0.698768 -s 0 -d 9 -p ack -e 40 -c 0 -i 1176 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.699088 -s 10 -d 7 -p ack -e 40 -c 0 -i 1180 -a 0 -x {10.0 9.0 585 ------- null} + -t 0.699088 -s 7 -d 0 -p ack -e 40 -c 0 -i 1180 -a 0 -x {10.0 9.0 585 ------- null} h -t 0.699088 -s 7 -d 8 -p ack -e 40 -c 0 -i 1180 -a 0 -x {10.0 9.0 585 ------- null} r -t 0.699184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1179 -a 0 -x {9.0 10.0 594 ------- null} + -t 0.699184 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1179 -a 0 -x {9.0 10.0 594 ------- null} h -t 0.699184 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1179 -a 0 -x {9.0 10.0 594 ------- null} r -t 0.699232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1165 -a 0 -x {9.0 10.0 587 ------- null} + -t 0.699232 -s 10 -d 7 -p ack -e 40 -c 0 -i 1184 -a 0 -x {10.0 9.0 587 ------- null} - -t 0.699232 -s 10 -d 7 -p ack -e 40 -c 0 -i 1184 -a 0 -x {10.0 9.0 587 ------- null} h -t 0.699232 -s 10 -d 7 -p ack -e 40 -c 0 -i 1184 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.699712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1171 -a 0 -x {9.0 10.0 590 ------- null} - -t 0.699712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1171 -a 0 -x {9.0 10.0 590 ------- null} h -t 0.699712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1171 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.699824 -s 0 -d 9 -p ack -e 40 -c 0 -i 1174 -a 0 -x {10.0 9.0 582 ------- null} + -t 0.699824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1185 -a 0 -x {9.0 10.0 597 ------- null} - -t 0.699824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1185 -a 0 -x {9.0 10.0 597 ------- null} h -t 0.699824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1185 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.699824 -s 0 -d 9 -p ack -e 40 -c 0 -i 1178 -a 0 -x {10.0 9.0 584 ------- null} - -t 0.699824 -s 0 -d 9 -p ack -e 40 -c 0 -i 1178 -a 0 -x {10.0 9.0 584 ------- null} h -t 0.699824 -s 0 -d 9 -p ack -e 40 -c 0 -i 1178 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.700176 -s 10 -d 7 -p ack -e 40 -c 0 -i 1182 -a 0 -x {10.0 9.0 586 ------- null} + -t 0.700176 -s 7 -d 0 -p ack -e 40 -c 0 -i 1182 -a 0 -x {10.0 9.0 586 ------- null} h -t 0.700176 -s 7 -d 8 -p ack -e 40 -c 0 -i 1182 -a 0 -x {10.0 9.0 586 ------- null} r -t 0.70032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1167 -a 0 -x {9.0 10.0 588 ------- null} + -t 0.70032 -s 10 -d 7 -p ack -e 40 -c 0 -i 1186 -a 0 -x {10.0 9.0 588 ------- null} - -t 0.70032 -s 10 -d 7 -p ack -e 40 -c 0 -i 1186 -a 0 -x {10.0 9.0 588 ------- null} h -t 0.70032 -s 10 -d 7 -p ack -e 40 -c 0 -i 1186 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.700336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1181 -a 0 -x {9.0 10.0 595 ------- null} + -t 0.700336 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1181 -a 0 -x {9.0 10.0 595 ------- null} h -t 0.700336 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1181 -a 0 -x {9.0 10.0 595 ------- null} r -t 0.7008 -s 0 -d 9 -p ack -e 40 -c 0 -i 1176 -a 0 -x {10.0 9.0 583 ------- null} + -t 0.7008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1187 -a 0 -x {9.0 10.0 598 ------- null} - -t 0.7008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1187 -a 0 -x {9.0 10.0 598 ------- null} h -t 0.7008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1187 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.7008 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1173 -a 0 -x {9.0 10.0 591 ------- null} - -t 0.7008 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1173 -a 0 -x {9.0 10.0 591 ------- null} h -t 0.7008 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1173 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.700992 -s 0 -d 9 -p ack -e 40 -c 0 -i 1180 -a 0 -x {10.0 9.0 585 ------- null} - -t 0.700992 -s 0 -d 9 -p ack -e 40 -c 0 -i 1180 -a 0 -x {10.0 9.0 585 ------- null} h -t 0.700992 -s 0 -d 9 -p ack -e 40 -c 0 -i 1180 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.701264 -s 10 -d 7 -p ack -e 40 -c 0 -i 1184 -a 0 -x {10.0 9.0 587 ------- null} + -t 0.701264 -s 7 -d 0 -p ack -e 40 -c 0 -i 1184 -a 0 -x {10.0 9.0 587 ------- null} h -t 0.701264 -s 7 -d 8 -p ack -e 40 -c 0 -i 1184 -a 0 -x {10.0 9.0 587 ------- null} r -t 0.701376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1183 -a 0 -x {9.0 10.0 596 ------- null} + -t 0.701376 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1183 -a 0 -x {9.0 10.0 596 ------- null} h -t 0.701376 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1183 -a 0 -x {9.0 10.0 596 ------- null} r -t 0.701424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1169 -a 0 -x {9.0 10.0 589 ------- null} + -t 0.701424 -s 10 -d 7 -p ack -e 40 -c 0 -i 1188 -a 0 -x {10.0 9.0 589 ------- null} - -t 0.701424 -s 10 -d 7 -p ack -e 40 -c 0 -i 1188 -a 0 -x {10.0 9.0 589 ------- null} h -t 0.701424 -s 10 -d 7 -p ack -e 40 -c 0 -i 1188 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.701856 -s 0 -d 9 -p ack -e 40 -c 0 -i 1178 -a 0 -x {10.0 9.0 584 ------- null} + -t 0.701856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1189 -a 0 -x {9.0 10.0 599 ------- null} - -t 0.701856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1189 -a 0 -x {9.0 10.0 599 ------- null} h -t 0.701856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1189 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.701888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1175 -a 0 -x {9.0 10.0 592 ------- null} - -t 0.701888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1175 -a 0 -x {9.0 10.0 592 ------- null} h -t 0.701888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1175 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.702016 -s 0 -d 9 -p ack -e 40 -c 0 -i 1182 -a 0 -x {10.0 9.0 586 ------- null} - -t 0.702016 -s 0 -d 9 -p ack -e 40 -c 0 -i 1182 -a 0 -x {10.0 9.0 586 ------- null} h -t 0.702016 -s 0 -d 9 -p ack -e 40 -c 0 -i 1182 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.702352 -s 10 -d 7 -p ack -e 40 -c 0 -i 1186 -a 0 -x {10.0 9.0 588 ------- null} + -t 0.702352 -s 7 -d 0 -p ack -e 40 -c 0 -i 1186 -a 0 -x {10.0 9.0 588 ------- null} h -t 0.702352 -s 7 -d 8 -p ack -e 40 -c 0 -i 1186 -a 0 -x {10.0 9.0 588 ------- null} r -t 0.702512 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1171 -a 0 -x {9.0 10.0 590 ------- null} + -t 0.702512 -s 10 -d 7 -p ack -e 40 -c 0 -i 1190 -a 0 -x {10.0 9.0 590 ------- null} - -t 0.702512 -s 10 -d 7 -p ack -e 40 -c 0 -i 1190 -a 0 -x {10.0 9.0 590 ------- null} h -t 0.702512 -s 10 -d 7 -p ack -e 40 -c 0 -i 1190 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.702624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1185 -a 0 -x {9.0 10.0 597 ------- null} + -t 0.702624 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1185 -a 0 -x {9.0 10.0 597 ------- null} h -t 0.702624 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1185 -a 0 -x {9.0 10.0 597 ------- null} + -t 0.702976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1177 -a 0 -x {9.0 10.0 593 ------- null} - -t 0.702976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1177 -a 0 -x {9.0 10.0 593 ------- null} h -t 0.702976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1177 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.703024 -s 0 -d 9 -p ack -e 40 -c 0 -i 1180 -a 0 -x {10.0 9.0 585 ------- null} + -t 0.703024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1191 -a 0 -x {9.0 10.0 600 ------- null} - -t 0.703024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1191 -a 0 -x {9.0 10.0 600 ------- null} h -t 0.703024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1191 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.703152 -s 0 -d 9 -p ack -e 40 -c 0 -i 1184 -a 0 -x {10.0 9.0 587 ------- null} - -t 0.703152 -s 0 -d 9 -p ack -e 40 -c 0 -i 1184 -a 0 -x {10.0 9.0 587 ------- null} h -t 0.703152 -s 0 -d 9 -p ack -e 40 -c 0 -i 1184 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.703456 -s 10 -d 7 -p ack -e 40 -c 0 -i 1188 -a 0 -x {10.0 9.0 589 ------- null} + -t 0.703456 -s 7 -d 0 -p ack -e 40 -c 0 -i 1188 -a 0 -x {10.0 9.0 589 ------- null} h -t 0.703456 -s 7 -d 8 -p ack -e 40 -c 0 -i 1188 -a 0 -x {10.0 9.0 589 ------- null} r -t 0.7036 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1187 -a 0 -x {9.0 10.0 598 ------- null} + -t 0.7036 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1187 -a 0 -x {9.0 10.0 598 ------- null} h -t 0.7036 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1187 -a 0 -x {9.0 10.0 598 ------- null} r -t 0.7036 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1173 -a 0 -x {9.0 10.0 591 ------- null} + -t 0.7036 -s 10 -d 7 -p ack -e 40 -c 0 -i 1192 -a 0 -x {10.0 9.0 591 ------- null} - -t 0.7036 -s 10 -d 7 -p ack -e 40 -c 0 -i 1192 -a 0 -x {10.0 9.0 591 ------- null} h -t 0.7036 -s 10 -d 7 -p ack -e 40 -c 0 -i 1192 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.704048 -s 0 -d 9 -p ack -e 40 -c 0 -i 1182 -a 0 -x {10.0 9.0 586 ------- null} + -t 0.704048 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1193 -a 0 -x {9.0 10.0 601 ------- null} - -t 0.704048 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1193 -a 0 -x {9.0 10.0 601 ------- null} h -t 0.704048 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1193 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.704064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1179 -a 0 -x {9.0 10.0 594 ------- null} - -t 0.704064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1179 -a 0 -x {9.0 10.0 594 ------- null} h -t 0.704064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1179 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.704224 -s 0 -d 9 -p ack -e 40 -c 0 -i 1186 -a 0 -x {10.0 9.0 588 ------- null} - -t 0.704224 -s 0 -d 9 -p ack -e 40 -c 0 -i 1186 -a 0 -x {10.0 9.0 588 ------- null} h -t 0.704224 -s 0 -d 9 -p ack -e 40 -c 0 -i 1186 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.704544 -s 10 -d 7 -p ack -e 40 -c 0 -i 1190 -a 0 -x {10.0 9.0 590 ------- null} + -t 0.704544 -s 7 -d 0 -p ack -e 40 -c 0 -i 1190 -a 0 -x {10.0 9.0 590 ------- null} h -t 0.704544 -s 7 -d 8 -p ack -e 40 -c 0 -i 1190 -a 0 -x {10.0 9.0 590 ------- null} r -t 0.704656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1189 -a 0 -x {9.0 10.0 599 ------- null} + -t 0.704656 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1189 -a 0 -x {9.0 10.0 599 ------- null} h -t 0.704656 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1189 -a 0 -x {9.0 10.0 599 ------- null} r -t 0.704688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1175 -a 0 -x {9.0 10.0 592 ------- null} + -t 0.704688 -s 10 -d 7 -p ack -e 40 -c 0 -i 1194 -a 0 -x {10.0 9.0 592 ------- null} - -t 0.704688 -s 10 -d 7 -p ack -e 40 -c 0 -i 1194 -a 0 -x {10.0 9.0 592 ------- null} h -t 0.704688 -s 10 -d 7 -p ack -e 40 -c 0 -i 1194 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.705152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1181 -a 0 -x {9.0 10.0 595 ------- null} - -t 0.705152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1181 -a 0 -x {9.0 10.0 595 ------- null} h -t 0.705152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1181 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.705184 -s 0 -d 9 -p ack -e 40 -c 0 -i 1184 -a 0 -x {10.0 9.0 587 ------- null} + -t 0.705184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1195 -a 0 -x {9.0 10.0 602 ------- null} - -t 0.705184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1195 -a 0 -x {9.0 10.0 602 ------- null} h -t 0.705184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1195 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.705216 -s 0 -d 9 -p ack -e 40 -c 0 -i 1188 -a 0 -x {10.0 9.0 589 ------- null} - -t 0.705216 -s 0 -d 9 -p ack -e 40 -c 0 -i 1188 -a 0 -x {10.0 9.0 589 ------- null} h -t 0.705216 -s 0 -d 9 -p ack -e 40 -c 0 -i 1188 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.705632 -s 10 -d 7 -p ack -e 40 -c 0 -i 1192 -a 0 -x {10.0 9.0 591 ------- null} + -t 0.705632 -s 7 -d 0 -p ack -e 40 -c 0 -i 1192 -a 0 -x {10.0 9.0 591 ------- null} h -t 0.705632 -s 7 -d 8 -p ack -e 40 -c 0 -i 1192 -a 0 -x {10.0 9.0 591 ------- null} r -t 0.705776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1177 -a 0 -x {9.0 10.0 593 ------- null} + -t 0.705776 -s 10 -d 7 -p ack -e 40 -c 0 -i 1196 -a 0 -x {10.0 9.0 593 ------- null} - -t 0.705776 -s 10 -d 7 -p ack -e 40 -c 0 -i 1196 -a 0 -x {10.0 9.0 593 ------- null} h -t 0.705776 -s 10 -d 7 -p ack -e 40 -c 0 -i 1196 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.705824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1191 -a 0 -x {9.0 10.0 600 ------- null} + -t 0.705824 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1191 -a 0 -x {9.0 10.0 600 ------- null} h -t 0.705824 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1191 -a 0 -x {9.0 10.0 600 ------- null} + -t 0.70624 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1183 -a 0 -x {9.0 10.0 596 ------- null} - -t 0.70624 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1183 -a 0 -x {9.0 10.0 596 ------- null} h -t 0.70624 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1183 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.706256 -s 0 -d 9 -p ack -e 40 -c 0 -i 1186 -a 0 -x {10.0 9.0 588 ------- null} + -t 0.706256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1197 -a 0 -x {9.0 10.0 603 ------- null} - -t 0.706256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1197 -a 0 -x {9.0 10.0 603 ------- null} h -t 0.706256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1197 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.706432 -s 0 -d 9 -p ack -e 40 -c 0 -i 1190 -a 0 -x {10.0 9.0 590 ------- null} - -t 0.706432 -s 0 -d 9 -p ack -e 40 -c 0 -i 1190 -a 0 -x {10.0 9.0 590 ------- null} h -t 0.706432 -s 0 -d 9 -p ack -e 40 -c 0 -i 1190 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.70672 -s 10 -d 7 -p ack -e 40 -c 0 -i 1194 -a 0 -x {10.0 9.0 592 ------- null} + -t 0.70672 -s 7 -d 0 -p ack -e 40 -c 0 -i 1194 -a 0 -x {10.0 9.0 592 ------- null} h -t 0.70672 -s 7 -d 8 -p ack -e 40 -c 0 -i 1194 -a 0 -x {10.0 9.0 592 ------- null} r -t 0.706848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1193 -a 0 -x {9.0 10.0 601 ------- null} + -t 0.706848 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1193 -a 0 -x {9.0 10.0 601 ------- null} h -t 0.706848 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1193 -a 0 -x {9.0 10.0 601 ------- null} r -t 0.706864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1179 -a 0 -x {9.0 10.0 594 ------- null} + -t 0.706864 -s 10 -d 7 -p ack -e 40 -c 0 -i 1198 -a 0 -x {10.0 9.0 594 ------- null} - -t 0.706864 -s 10 -d 7 -p ack -e 40 -c 0 -i 1198 -a 0 -x {10.0 9.0 594 ------- null} h -t 0.706864 -s 10 -d 7 -p ack -e 40 -c 0 -i 1198 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.707248 -s 0 -d 9 -p ack -e 40 -c 0 -i 1188 -a 0 -x {10.0 9.0 589 ------- null} + -t 0.707248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1199 -a 0 -x {9.0 10.0 604 ------- null} - -t 0.707248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1199 -a 0 -x {9.0 10.0 604 ------- null} h -t 0.707248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1199 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.707328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1185 -a 0 -x {9.0 10.0 597 ------- null} - -t 0.707328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1185 -a 0 -x {9.0 10.0 597 ------- null} h -t 0.707328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1185 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.707424 -s 0 -d 9 -p ack -e 40 -c 0 -i 1192 -a 0 -x {10.0 9.0 591 ------- null} - -t 0.707424 -s 0 -d 9 -p ack -e 40 -c 0 -i 1192 -a 0 -x {10.0 9.0 591 ------- null} h -t 0.707424 -s 0 -d 9 -p ack -e 40 -c 0 -i 1192 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.707808 -s 10 -d 7 -p ack -e 40 -c 0 -i 1196 -a 0 -x {10.0 9.0 593 ------- null} + -t 0.707808 -s 7 -d 0 -p ack -e 40 -c 0 -i 1196 -a 0 -x {10.0 9.0 593 ------- null} h -t 0.707808 -s 7 -d 8 -p ack -e 40 -c 0 -i 1196 -a 0 -x {10.0 9.0 593 ------- null} r -t 0.707952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1181 -a 0 -x {9.0 10.0 595 ------- null} + -t 0.707952 -s 10 -d 7 -p ack -e 40 -c 0 -i 1200 -a 0 -x {10.0 9.0 595 ------- null} - -t 0.707952 -s 10 -d 7 -p ack -e 40 -c 0 -i 1200 -a 0 -x {10.0 9.0 595 ------- null} h -t 0.707952 -s 10 -d 7 -p ack -e 40 -c 0 -i 1200 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.707984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1195 -a 0 -x {9.0 10.0 602 ------- null} + -t 0.707984 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1195 -a 0 -x {9.0 10.0 602 ------- null} h -t 0.707984 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1195 -a 0 -x {9.0 10.0 602 ------- null} + -t 0.708416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1187 -a 0 -x {9.0 10.0 598 ------- null} - -t 0.708416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1187 -a 0 -x {9.0 10.0 598 ------- null} h -t 0.708416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1187 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.708464 -s 0 -d 9 -p ack -e 40 -c 0 -i 1190 -a 0 -x {10.0 9.0 590 ------- null} + -t 0.708464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1201 -a 0 -x {9.0 10.0 605 ------- null} - -t 0.708464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1201 -a 0 -x {9.0 10.0 605 ------- null} h -t 0.708464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1201 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.70872 -s 0 -d 9 -p ack -e 40 -c 0 -i 1194 -a 0 -x {10.0 9.0 592 ------- null} - -t 0.70872 -s 0 -d 9 -p ack -e 40 -c 0 -i 1194 -a 0 -x {10.0 9.0 592 ------- null} h -t 0.70872 -s 0 -d 9 -p ack -e 40 -c 0 -i 1194 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.708896 -s 10 -d 7 -p ack -e 40 -c 0 -i 1198 -a 0 -x {10.0 9.0 594 ------- null} + -t 0.708896 -s 7 -d 0 -p ack -e 40 -c 0 -i 1198 -a 0 -x {10.0 9.0 594 ------- null} h -t 0.708896 -s 7 -d 8 -p ack -e 40 -c 0 -i 1198 -a 0 -x {10.0 9.0 594 ------- null} r -t 0.70904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1183 -a 0 -x {9.0 10.0 596 ------- null} + -t 0.70904 -s 10 -d 7 -p ack -e 40 -c 0 -i 1202 -a 0 -x {10.0 9.0 596 ------- null} - -t 0.70904 -s 10 -d 7 -p ack -e 40 -c 0 -i 1202 -a 0 -x {10.0 9.0 596 ------- null} h -t 0.70904 -s 10 -d 7 -p ack -e 40 -c 0 -i 1202 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.709056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1197 -a 0 -x {9.0 10.0 603 ------- null} + -t 0.709056 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1197 -a 0 -x {9.0 10.0 603 ------- null} h -t 0.709056 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1197 -a 0 -x {9.0 10.0 603 ------- null} r -t 0.709456 -s 0 -d 9 -p ack -e 40 -c 0 -i 1192 -a 0 -x {10.0 9.0 591 ------- null} + -t 0.709456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1203 -a 0 -x {9.0 10.0 606 ------- null} - -t 0.709456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1203 -a 0 -x {9.0 10.0 606 ------- null} h -t 0.709456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1203 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.709792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1189 -a 0 -x {9.0 10.0 599 ------- null} - -t 0.709792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1189 -a 0 -x {9.0 10.0 599 ------- null} h -t 0.709792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1189 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.709888 -s 0 -d 9 -p ack -e 40 -c 0 -i 1196 -a 0 -x {10.0 9.0 593 ------- null} - -t 0.709888 -s 0 -d 9 -p ack -e 40 -c 0 -i 1196 -a 0 -x {10.0 9.0 593 ------- null} h -t 0.709888 -s 0 -d 9 -p ack -e 40 -c 0 -i 1196 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.709984 -s 10 -d 7 -p ack -e 40 -c 0 -i 1200 -a 0 -x {10.0 9.0 595 ------- null} + -t 0.709984 -s 7 -d 0 -p ack -e 40 -c 0 -i 1200 -a 0 -x {10.0 9.0 595 ------- null} h -t 0.709984 -s 7 -d 8 -p ack -e 40 -c 0 -i 1200 -a 0 -x {10.0 9.0 595 ------- null} r -t 0.710048 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1199 -a 0 -x {9.0 10.0 604 ------- null} + -t 0.710048 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1199 -a 0 -x {9.0 10.0 604 ------- null} h -t 0.710048 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1199 -a 0 -x {9.0 10.0 604 ------- null} r -t 0.710128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1185 -a 0 -x {9.0 10.0 597 ------- null} + -t 0.710128 -s 10 -d 7 -p ack -e 40 -c 0 -i 1204 -a 0 -x {10.0 9.0 597 ------- null} - -t 0.710128 -s 10 -d 7 -p ack -e 40 -c 0 -i 1204 -a 0 -x {10.0 9.0 597 ------- null} h -t 0.710128 -s 10 -d 7 -p ack -e 40 -c 0 -i 1204 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.710752 -s 0 -d 9 -p ack -e 40 -c 0 -i 1194 -a 0 -x {10.0 9.0 592 ------- null} + -t 0.710752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1205 -a 0 -x {9.0 10.0 607 ------- null} - -t 0.710752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1205 -a 0 -x {9.0 10.0 607 ------- null} h -t 0.710752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1205 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.71088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1191 -a 0 -x {9.0 10.0 600 ------- null} - -t 0.71088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1191 -a 0 -x {9.0 10.0 600 ------- null} h -t 0.71088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1191 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.711056 -s 0 -d 9 -p ack -e 40 -c 0 -i 1198 -a 0 -x {10.0 9.0 594 ------- null} - -t 0.711056 -s 0 -d 9 -p ack -e 40 -c 0 -i 1198 -a 0 -x {10.0 9.0 594 ------- null} h -t 0.711056 -s 0 -d 9 -p ack -e 40 -c 0 -i 1198 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.711072 -s 10 -d 7 -p ack -e 40 -c 0 -i 1202 -a 0 -x {10.0 9.0 596 ------- null} + -t 0.711072 -s 7 -d 0 -p ack -e 40 -c 0 -i 1202 -a 0 -x {10.0 9.0 596 ------- null} h -t 0.711072 -s 7 -d 8 -p ack -e 40 -c 0 -i 1202 -a 0 -x {10.0 9.0 596 ------- null} r -t 0.711216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1187 -a 0 -x {9.0 10.0 598 ------- null} + -t 0.711216 -s 10 -d 7 -p ack -e 40 -c 0 -i 1206 -a 0 -x {10.0 9.0 598 ------- null} - -t 0.711216 -s 10 -d 7 -p ack -e 40 -c 0 -i 1206 -a 0 -x {10.0 9.0 598 ------- null} h -t 0.711216 -s 10 -d 7 -p ack -e 40 -c 0 -i 1206 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.711264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1201 -a 0 -x {9.0 10.0 605 ------- null} + -t 0.711264 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1201 -a 0 -x {9.0 10.0 605 ------- null} h -t 0.711264 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1201 -a 0 -x {9.0 10.0 605 ------- null} r -t 0.71192 -s 0 -d 9 -p ack -e 40 -c 0 -i 1196 -a 0 -x {10.0 9.0 593 ------- null} + -t 0.71192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1207 -a 0 -x {9.0 10.0 608 ------- null} - -t 0.71192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1207 -a 0 -x {9.0 10.0 608 ------- null} h -t 0.71192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1207 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.711968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1193 -a 0 -x {9.0 10.0 601 ------- null} - -t 0.711968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1193 -a 0 -x {9.0 10.0 601 ------- null} h -t 0.711968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1193 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.71216 -s 10 -d 7 -p ack -e 40 -c 0 -i 1204 -a 0 -x {10.0 9.0 597 ------- null} + -t 0.71216 -s 7 -d 0 -p ack -e 40 -c 0 -i 1204 -a 0 -x {10.0 9.0 597 ------- null} h -t 0.71216 -s 7 -d 8 -p ack -e 40 -c 0 -i 1204 -a 0 -x {10.0 9.0 597 ------- null} r -t 0.712256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1203 -a 0 -x {9.0 10.0 606 ------- null} + -t 0.712256 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1203 -a 0 -x {9.0 10.0 606 ------- null} h -t 0.712256 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1203 -a 0 -x {9.0 10.0 606 ------- null} + -t 0.712256 -s 0 -d 9 -p ack -e 40 -c 0 -i 1200 -a 0 -x {10.0 9.0 595 ------- null} - -t 0.712256 -s 0 -d 9 -p ack -e 40 -c 0 -i 1200 -a 0 -x {10.0 9.0 595 ------- null} h -t 0.712256 -s 0 -d 9 -p ack -e 40 -c 0 -i 1200 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.712592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1189 -a 0 -x {9.0 10.0 599 ------- null} + -t 0.712592 -s 10 -d 7 -p ack -e 40 -c 0 -i 1208 -a 0 -x {10.0 9.0 599 ------- null} - -t 0.712592 -s 10 -d 7 -p ack -e 40 -c 0 -i 1208 -a 0 -x {10.0 9.0 599 ------- null} h -t 0.712592 -s 10 -d 7 -p ack -e 40 -c 0 -i 1208 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.713088 -s 0 -d 9 -p ack -e 40 -c 0 -i 1198 -a 0 -x {10.0 9.0 594 ------- null} + -t 0.713088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1209 -a 0 -x {9.0 10.0 609 ------- null} - -t 0.713088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1209 -a 0 -x {9.0 10.0 609 ------- null} h -t 0.713088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1209 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.713248 -s 10 -d 7 -p ack -e 40 -c 0 -i 1206 -a 0 -x {10.0 9.0 598 ------- null} + -t 0.713248 -s 7 -d 0 -p ack -e 40 -c 0 -i 1206 -a 0 -x {10.0 9.0 598 ------- null} h -t 0.713248 -s 7 -d 8 -p ack -e 40 -c 0 -i 1206 -a 0 -x {10.0 9.0 598 ------- null} + -t 0.713264 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1195 -a 0 -x {9.0 10.0 602 ------- null} - -t 0.713264 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1195 -a 0 -x {9.0 10.0 602 ------- null} h -t 0.713264 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1195 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.713344 -s 0 -d 9 -p ack -e 40 -c 0 -i 1202 -a 0 -x {10.0 9.0 596 ------- null} - -t 0.713344 -s 0 -d 9 -p ack -e 40 -c 0 -i 1202 -a 0 -x {10.0 9.0 596 ------- null} h -t 0.713344 -s 0 -d 9 -p ack -e 40 -c 0 -i 1202 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.713552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1205 -a 0 -x {9.0 10.0 607 ------- null} + -t 0.713552 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1205 -a 0 -x {9.0 10.0 607 ------- null} h -t 0.713552 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1205 -a 0 -x {9.0 10.0 607 ------- null} r -t 0.71368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1191 -a 0 -x {9.0 10.0 600 ------- null} + -t 0.71368 -s 10 -d 7 -p ack -e 40 -c 0 -i 1210 -a 0 -x {10.0 9.0 600 ------- null} - -t 0.71368 -s 10 -d 7 -p ack -e 40 -c 0 -i 1210 -a 0 -x {10.0 9.0 600 ------- null} h -t 0.71368 -s 10 -d 7 -p ack -e 40 -c 0 -i 1210 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.714288 -s 0 -d 9 -p ack -e 40 -c 0 -i 1200 -a 0 -x {10.0 9.0 595 ------- null} + -t 0.714288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1211 -a 0 -x {9.0 10.0 610 ------- null} - -t 0.714288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1211 -a 0 -x {9.0 10.0 610 ------- null} h -t 0.714288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1211 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.714352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1197 -a 0 -x {9.0 10.0 603 ------- null} - -t 0.714352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1197 -a 0 -x {9.0 10.0 603 ------- null} h -t 0.714352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1197 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.714592 -s 0 -d 9 -p ack -e 40 -c 0 -i 1204 -a 0 -x {10.0 9.0 597 ------- null} - -t 0.714592 -s 0 -d 9 -p ack -e 40 -c 0 -i 1204 -a 0 -x {10.0 9.0 597 ------- null} h -t 0.714592 -s 0 -d 9 -p ack -e 40 -c 0 -i 1204 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.714624 -s 10 -d 7 -p ack -e 40 -c 0 -i 1208 -a 0 -x {10.0 9.0 599 ------- null} + -t 0.714624 -s 7 -d 0 -p ack -e 40 -c 0 -i 1208 -a 0 -x {10.0 9.0 599 ------- null} h -t 0.714624 -s 7 -d 8 -p ack -e 40 -c 0 -i 1208 -a 0 -x {10.0 9.0 599 ------- null} r -t 0.71472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1207 -a 0 -x {9.0 10.0 608 ------- null} + -t 0.71472 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1207 -a 0 -x {9.0 10.0 608 ------- null} h -t 0.71472 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1207 -a 0 -x {9.0 10.0 608 ------- null} r -t 0.714768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1193 -a 0 -x {9.0 10.0 601 ------- null} + -t 0.714768 -s 10 -d 7 -p ack -e 40 -c 0 -i 1212 -a 0 -x {10.0 9.0 601 ------- null} - -t 0.714768 -s 10 -d 7 -p ack -e 40 -c 0 -i 1212 -a 0 -x {10.0 9.0 601 ------- null} h -t 0.714768 -s 10 -d 7 -p ack -e 40 -c 0 -i 1212 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.715376 -s 0 -d 9 -p ack -e 40 -c 0 -i 1202 -a 0 -x {10.0 9.0 596 ------- null} + -t 0.715376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1213 -a 0 -x {9.0 10.0 611 ------- null} - -t 0.715376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1213 -a 0 -x {9.0 10.0 611 ------- null} h -t 0.715376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1213 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.71544 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1199 -a 0 -x {9.0 10.0 604 ------- null} - -t 0.71544 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1199 -a 0 -x {9.0 10.0 604 ------- null} h -t 0.71544 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1199 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.715504 -s 0 -d 9 -p ack -e 40 -c 0 -i 1206 -a 0 -x {10.0 9.0 598 ------- null} - -t 0.715504 -s 0 -d 9 -p ack -e 40 -c 0 -i 1206 -a 0 -x {10.0 9.0 598 ------- null} h -t 0.715504 -s 0 -d 9 -p ack -e 40 -c 0 -i 1206 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.715712 -s 10 -d 7 -p ack -e 40 -c 0 -i 1210 -a 0 -x {10.0 9.0 600 ------- null} + -t 0.715712 -s 7 -d 0 -p ack -e 40 -c 0 -i 1210 -a 0 -x {10.0 9.0 600 ------- null} h -t 0.715712 -s 7 -d 8 -p ack -e 40 -c 0 -i 1210 -a 0 -x {10.0 9.0 600 ------- null} r -t 0.715888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1209 -a 0 -x {9.0 10.0 609 ------- null} + -t 0.715888 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1209 -a 0 -x {9.0 10.0 609 ------- null} h -t 0.715888 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1209 -a 0 -x {9.0 10.0 609 ------- null} r -t 0.716064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1195 -a 0 -x {9.0 10.0 602 ------- null} + -t 0.716064 -s 10 -d 7 -p ack -e 40 -c 0 -i 1214 -a 0 -x {10.0 9.0 602 ------- null} - -t 0.716064 -s 10 -d 7 -p ack -e 40 -c 0 -i 1214 -a 0 -x {10.0 9.0 602 ------- null} h -t 0.716064 -s 10 -d 7 -p ack -e 40 -c 0 -i 1214 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.716528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1201 -a 0 -x {9.0 10.0 605 ------- null} - -t 0.716528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1201 -a 0 -x {9.0 10.0 605 ------- null} h -t 0.716528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1201 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.716624 -s 0 -d 9 -p ack -e 40 -c 0 -i 1204 -a 0 -x {10.0 9.0 597 ------- null} + -t 0.716624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1215 -a 0 -x {9.0 10.0 612 ------- null} - -t 0.716624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1215 -a 0 -x {9.0 10.0 612 ------- null} h -t 0.716624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1215 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.716688 -s 0 -d 9 -p ack -e 40 -c 0 -i 1208 -a 0 -x {10.0 9.0 599 ------- null} - -t 0.716688 -s 0 -d 9 -p ack -e 40 -c 0 -i 1208 -a 0 -x {10.0 9.0 599 ------- null} h -t 0.716688 -s 0 -d 9 -p ack -e 40 -c 0 -i 1208 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.7168 -s 10 -d 7 -p ack -e 40 -c 0 -i 1212 -a 0 -x {10.0 9.0 601 ------- null} + -t 0.7168 -s 7 -d 0 -p ack -e 40 -c 0 -i 1212 -a 0 -x {10.0 9.0 601 ------- null} h -t 0.7168 -s 7 -d 8 -p ack -e 40 -c 0 -i 1212 -a 0 -x {10.0 9.0 601 ------- null} r -t 0.717088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1211 -a 0 -x {9.0 10.0 610 ------- null} + -t 0.717088 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1211 -a 0 -x {9.0 10.0 610 ------- null} h -t 0.717088 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1211 -a 0 -x {9.0 10.0 610 ------- null} r -t 0.717152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1197 -a 0 -x {9.0 10.0 603 ------- null} + -t 0.717152 -s 10 -d 7 -p ack -e 40 -c 0 -i 1216 -a 0 -x {10.0 9.0 603 ------- null} - -t 0.717152 -s 10 -d 7 -p ack -e 40 -c 0 -i 1216 -a 0 -x {10.0 9.0 603 ------- null} h -t 0.717152 -s 10 -d 7 -p ack -e 40 -c 0 -i 1216 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.717536 -s 0 -d 9 -p ack -e 40 -c 0 -i 1206 -a 0 -x {10.0 9.0 598 ------- null} + -t 0.717536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1217 -a 0 -x {9.0 10.0 613 ------- null} - -t 0.717536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1217 -a 0 -x {9.0 10.0 613 ------- null} h -t 0.717536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1217 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.717616 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1203 -a 0 -x {9.0 10.0 606 ------- null} - -t 0.717616 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1203 -a 0 -x {9.0 10.0 606 ------- null} h -t 0.717616 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1203 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.717792 -s 0 -d 9 -p ack -e 40 -c 0 -i 1210 -a 0 -x {10.0 9.0 600 ------- null} - -t 0.717792 -s 0 -d 9 -p ack -e 40 -c 0 -i 1210 -a 0 -x {10.0 9.0 600 ------- null} h -t 0.717792 -s 0 -d 9 -p ack -e 40 -c 0 -i 1210 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.718096 -s 10 -d 7 -p ack -e 40 -c 0 -i 1214 -a 0 -x {10.0 9.0 602 ------- null} + -t 0.718096 -s 7 -d 0 -p ack -e 40 -c 0 -i 1214 -a 0 -x {10.0 9.0 602 ------- null} h -t 0.718096 -s 7 -d 8 -p ack -e 40 -c 0 -i 1214 -a 0 -x {10.0 9.0 602 ------- null} r -t 0.718176 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1213 -a 0 -x {9.0 10.0 611 ------- null} + -t 0.718176 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1213 -a 0 -x {9.0 10.0 611 ------- null} h -t 0.718176 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1213 -a 0 -x {9.0 10.0 611 ------- null} r -t 0.71824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1199 -a 0 -x {9.0 10.0 604 ------- null} + -t 0.71824 -s 10 -d 7 -p ack -e 40 -c 0 -i 1218 -a 0 -x {10.0 9.0 604 ------- null} - -t 0.71824 -s 10 -d 7 -p ack -e 40 -c 0 -i 1218 -a 0 -x {10.0 9.0 604 ------- null} h -t 0.71824 -s 10 -d 7 -p ack -e 40 -c 0 -i 1218 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.718704 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1205 -a 0 -x {9.0 10.0 607 ------- null} - -t 0.718704 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1205 -a 0 -x {9.0 10.0 607 ------- null} h -t 0.718704 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1205 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.71872 -s 0 -d 9 -p ack -e 40 -c 0 -i 1208 -a 0 -x {10.0 9.0 599 ------- null} + -t 0.71872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1219 -a 0 -x {9.0 10.0 614 ------- null} - -t 0.71872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1219 -a 0 -x {9.0 10.0 614 ------- null} h -t 0.71872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1219 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.718992 -s 0 -d 9 -p ack -e 40 -c 0 -i 1212 -a 0 -x {10.0 9.0 601 ------- null} - -t 0.718992 -s 0 -d 9 -p ack -e 40 -c 0 -i 1212 -a 0 -x {10.0 9.0 601 ------- null} h -t 0.718992 -s 0 -d 9 -p ack -e 40 -c 0 -i 1212 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.719184 -s 10 -d 7 -p ack -e 40 -c 0 -i 1216 -a 0 -x {10.0 9.0 603 ------- null} + -t 0.719184 -s 7 -d 0 -p ack -e 40 -c 0 -i 1216 -a 0 -x {10.0 9.0 603 ------- null} h -t 0.719184 -s 7 -d 8 -p ack -e 40 -c 0 -i 1216 -a 0 -x {10.0 9.0 603 ------- null} r -t 0.719328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1201 -a 0 -x {9.0 10.0 605 ------- null} + -t 0.719328 -s 10 -d 7 -p ack -e 40 -c 0 -i 1220 -a 0 -x {10.0 9.0 605 ------- null} - -t 0.719328 -s 10 -d 7 -p ack -e 40 -c 0 -i 1220 -a 0 -x {10.0 9.0 605 ------- null} h -t 0.719328 -s 10 -d 7 -p ack -e 40 -c 0 -i 1220 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.719424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1215 -a 0 -x {9.0 10.0 612 ------- null} + -t 0.719424 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1215 -a 0 -x {9.0 10.0 612 ------- null} h -t 0.719424 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1215 -a 0 -x {9.0 10.0 612 ------- null} r -t 0.719824 -s 0 -d 9 -p ack -e 40 -c 0 -i 1210 -a 0 -x {10.0 9.0 600 ------- null} + -t 0.719824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1221 -a 0 -x {9.0 10.0 615 ------- null} - -t 0.719824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1221 -a 0 -x {9.0 10.0 615 ------- null} h -t 0.719824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1221 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.719984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1207 -a 0 -x {9.0 10.0 608 ------- null} - -t 0.719984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1207 -a 0 -x {9.0 10.0 608 ------- null} h -t 0.719984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1207 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.720272 -s 10 -d 7 -p ack -e 40 -c 0 -i 1218 -a 0 -x {10.0 9.0 604 ------- null} + -t 0.720272 -s 7 -d 0 -p ack -e 40 -c 0 -i 1218 -a 0 -x {10.0 9.0 604 ------- null} h -t 0.720272 -s 7 -d 8 -p ack -e 40 -c 0 -i 1218 -a 0 -x {10.0 9.0 604 ------- null} + -t 0.720288 -s 0 -d 9 -p ack -e 40 -c 0 -i 1214 -a 0 -x {10.0 9.0 602 ------- null} - -t 0.720288 -s 0 -d 9 -p ack -e 40 -c 0 -i 1214 -a 0 -x {10.0 9.0 602 ------- null} h -t 0.720288 -s 0 -d 9 -p ack -e 40 -c 0 -i 1214 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.720336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1217 -a 0 -x {9.0 10.0 613 ------- null} + -t 0.720336 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1217 -a 0 -x {9.0 10.0 613 ------- null} h -t 0.720336 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1217 -a 0 -x {9.0 10.0 613 ------- null} r -t 0.720416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1203 -a 0 -x {9.0 10.0 606 ------- null} + -t 0.720416 -s 10 -d 7 -p ack -e 40 -c 0 -i 1222 -a 0 -x {10.0 9.0 606 ------- null} - -t 0.720416 -s 10 -d 7 -p ack -e 40 -c 0 -i 1222 -a 0 -x {10.0 9.0 606 ------- null} h -t 0.720416 -s 10 -d 7 -p ack -e 40 -c 0 -i 1222 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.721024 -s 0 -d 9 -p ack -e 40 -c 0 -i 1212 -a 0 -x {10.0 9.0 601 ------- null} + -t 0.721024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1223 -a 0 -x {9.0 10.0 616 ------- null} - -t 0.721024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1223 -a 0 -x {9.0 10.0 616 ------- null} h -t 0.721024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1223 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.721328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1209 -a 0 -x {9.0 10.0 609 ------- null} - -t 0.721328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1209 -a 0 -x {9.0 10.0 609 ------- null} h -t 0.721328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1209 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.72136 -s 10 -d 7 -p ack -e 40 -c 0 -i 1220 -a 0 -x {10.0 9.0 605 ------- null} + -t 0.72136 -s 7 -d 0 -p ack -e 40 -c 0 -i 1220 -a 0 -x {10.0 9.0 605 ------- null} h -t 0.72136 -s 7 -d 8 -p ack -e 40 -c 0 -i 1220 -a 0 -x {10.0 9.0 605 ------- null} + -t 0.721472 -s 0 -d 9 -p ack -e 40 -c 0 -i 1216 -a 0 -x {10.0 9.0 603 ------- null} - -t 0.721472 -s 0 -d 9 -p ack -e 40 -c 0 -i 1216 -a 0 -x {10.0 9.0 603 ------- null} h -t 0.721472 -s 0 -d 9 -p ack -e 40 -c 0 -i 1216 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.721504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1205 -a 0 -x {9.0 10.0 607 ------- null} + -t 0.721504 -s 10 -d 7 -p ack -e 40 -c 0 -i 1224 -a 0 -x {10.0 9.0 607 ------- null} - -t 0.721504 -s 10 -d 7 -p ack -e 40 -c 0 -i 1224 -a 0 -x {10.0 9.0 607 ------- null} h -t 0.721504 -s 10 -d 7 -p ack -e 40 -c 0 -i 1224 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.72152 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1219 -a 0 -x {9.0 10.0 614 ------- null} + -t 0.72152 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1219 -a 0 -x {9.0 10.0 614 ------- null} h -t 0.72152 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1219 -a 0 -x {9.0 10.0 614 ------- null} r -t 0.72232 -s 0 -d 9 -p ack -e 40 -c 0 -i 1214 -a 0 -x {10.0 9.0 602 ------- null} + -t 0.72232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1225 -a 0 -x {9.0 10.0 617 ------- null} - -t 0.72232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1225 -a 0 -x {9.0 10.0 617 ------- null} h -t 0.72232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1225 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.722416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1211 -a 0 -x {9.0 10.0 610 ------- null} - -t 0.722416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1211 -a 0 -x {9.0 10.0 610 ------- null} h -t 0.722416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1211 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.722448 -s 10 -d 7 -p ack -e 40 -c 0 -i 1222 -a 0 -x {10.0 9.0 606 ------- null} + -t 0.722448 -s 7 -d 0 -p ack -e 40 -c 0 -i 1222 -a 0 -x {10.0 9.0 606 ------- null} h -t 0.722448 -s 7 -d 8 -p ack -e 40 -c 0 -i 1222 -a 0 -x {10.0 9.0 606 ------- null} + -t 0.722592 -s 0 -d 9 -p ack -e 40 -c 0 -i 1218 -a 0 -x {10.0 9.0 604 ------- null} - -t 0.722592 -s 0 -d 9 -p ack -e 40 -c 0 -i 1218 -a 0 -x {10.0 9.0 604 ------- null} h -t 0.722592 -s 0 -d 9 -p ack -e 40 -c 0 -i 1218 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.722624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1221 -a 0 -x {9.0 10.0 615 ------- null} + -t 0.722624 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1221 -a 0 -x {9.0 10.0 615 ------- null} h -t 0.722624 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1221 -a 0 -x {9.0 10.0 615 ------- null} r -t 0.722784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1207 -a 0 -x {9.0 10.0 608 ------- null} + -t 0.722784 -s 10 -d 7 -p ack -e 40 -c 0 -i 1226 -a 0 -x {10.0 9.0 608 ------- null} - -t 0.722784 -s 10 -d 7 -p ack -e 40 -c 0 -i 1226 -a 0 -x {10.0 9.0 608 ------- null} h -t 0.722784 -s 10 -d 7 -p ack -e 40 -c 0 -i 1226 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.723504 -s 0 -d 9 -p ack -e 40 -c 0 -i 1216 -a 0 -x {10.0 9.0 603 ------- null} + -t 0.723504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1227 -a 0 -x {9.0 10.0 618 ------- null} - -t 0.723504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1227 -a 0 -x {9.0 10.0 618 ------- null} h -t 0.723504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1227 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.723504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1213 -a 0 -x {9.0 10.0 611 ------- null} - -t 0.723504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1213 -a 0 -x {9.0 10.0 611 ------- null} h -t 0.723504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1213 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.723536 -s 10 -d 7 -p ack -e 40 -c 0 -i 1224 -a 0 -x {10.0 9.0 607 ------- null} + -t 0.723536 -s 7 -d 0 -p ack -e 40 -c 0 -i 1224 -a 0 -x {10.0 9.0 607 ------- null} h -t 0.723536 -s 7 -d 8 -p ack -e 40 -c 0 -i 1224 -a 0 -x {10.0 9.0 607 ------- null} + -t 0.723808 -s 0 -d 9 -p ack -e 40 -c 0 -i 1220 -a 0 -x {10.0 9.0 605 ------- null} - -t 0.723808 -s 0 -d 9 -p ack -e 40 -c 0 -i 1220 -a 0 -x {10.0 9.0 605 ------- null} h -t 0.723808 -s 0 -d 9 -p ack -e 40 -c 0 -i 1220 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.723824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1223 -a 0 -x {9.0 10.0 616 ------- null} + -t 0.723824 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1223 -a 0 -x {9.0 10.0 616 ------- null} h -t 0.723824 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1223 -a 0 -x {9.0 10.0 616 ------- null} r -t 0.724128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1209 -a 0 -x {9.0 10.0 609 ------- null} + -t 0.724128 -s 10 -d 7 -p ack -e 40 -c 0 -i 1228 -a 0 -x {10.0 9.0 609 ------- null} - -t 0.724128 -s 10 -d 7 -p ack -e 40 -c 0 -i 1228 -a 0 -x {10.0 9.0 609 ------- null} h -t 0.724128 -s 10 -d 7 -p ack -e 40 -c 0 -i 1228 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.724624 -s 0 -d 9 -p ack -e 40 -c 0 -i 1218 -a 0 -x {10.0 9.0 604 ------- null} + -t 0.724624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1229 -a 0 -x {9.0 10.0 619 ------- null} - -t 0.724624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1229 -a 0 -x {9.0 10.0 619 ------- null} h -t 0.724624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1229 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.724816 -s 10 -d 7 -p ack -e 40 -c 0 -i 1226 -a 0 -x {10.0 9.0 608 ------- null} + -t 0.724816 -s 7 -d 0 -p ack -e 40 -c 0 -i 1226 -a 0 -x {10.0 9.0 608 ------- null} h -t 0.724816 -s 7 -d 8 -p ack -e 40 -c 0 -i 1226 -a 0 -x {10.0 9.0 608 ------- null} + -t 0.72488 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1215 -a 0 -x {9.0 10.0 612 ------- null} - -t 0.72488 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1215 -a 0 -x {9.0 10.0 612 ------- null} h -t 0.72488 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1215 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.725072 -s 0 -d 9 -p ack -e 40 -c 0 -i 1222 -a 0 -x {10.0 9.0 606 ------- null} - -t 0.725072 -s 0 -d 9 -p ack -e 40 -c 0 -i 1222 -a 0 -x {10.0 9.0 606 ------- null} h -t 0.725072 -s 0 -d 9 -p ack -e 40 -c 0 -i 1222 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.72512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1225 -a 0 -x {9.0 10.0 617 ------- null} + -t 0.72512 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1225 -a 0 -x {9.0 10.0 617 ------- null} h -t 0.72512 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1225 -a 0 -x {9.0 10.0 617 ------- null} r -t 0.725216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1211 -a 0 -x {9.0 10.0 610 ------- null} + -t 0.725216 -s 10 -d 7 -p ack -e 40 -c 0 -i 1230 -a 0 -x {10.0 9.0 610 ------- null} - -t 0.725216 -s 10 -d 7 -p ack -e 40 -c 0 -i 1230 -a 0 -x {10.0 9.0 610 ------- null} h -t 0.725216 -s 10 -d 7 -p ack -e 40 -c 0 -i 1230 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.72584 -s 0 -d 9 -p ack -e 40 -c 0 -i 1220 -a 0 -x {10.0 9.0 605 ------- null} + -t 0.72584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1231 -a 0 -x {9.0 10.0 620 ------- null} - -t 0.72584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1231 -a 0 -x {9.0 10.0 620 ------- null} h -t 0.72584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1231 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.725968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1217 -a 0 -x {9.0 10.0 613 ------- null} - -t 0.725968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1217 -a 0 -x {9.0 10.0 613 ------- null} h -t 0.725968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1217 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.72616 -s 10 -d 7 -p ack -e 40 -c 0 -i 1228 -a 0 -x {10.0 9.0 609 ------- null} + -t 0.72616 -s 7 -d 0 -p ack -e 40 -c 0 -i 1228 -a 0 -x {10.0 9.0 609 ------- null} h -t 0.72616 -s 7 -d 8 -p ack -e 40 -c 0 -i 1228 -a 0 -x {10.0 9.0 609 ------- null} + -t 0.72616 -s 0 -d 9 -p ack -e 40 -c 0 -i 1224 -a 0 -x {10.0 9.0 607 ------- null} - -t 0.72616 -s 0 -d 9 -p ack -e 40 -c 0 -i 1224 -a 0 -x {10.0 9.0 607 ------- null} h -t 0.72616 -s 0 -d 9 -p ack -e 40 -c 0 -i 1224 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.726304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1227 -a 0 -x {9.0 10.0 618 ------- null} + -t 0.726304 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1227 -a 0 -x {9.0 10.0 618 ------- null} h -t 0.726304 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1227 -a 0 -x {9.0 10.0 618 ------- null} r -t 0.726304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1213 -a 0 -x {9.0 10.0 611 ------- null} + -t 0.726304 -s 10 -d 7 -p ack -e 40 -c 0 -i 1232 -a 0 -x {10.0 9.0 611 ------- null} - -t 0.726304 -s 10 -d 7 -p ack -e 40 -c 0 -i 1232 -a 0 -x {10.0 9.0 611 ------- null} h -t 0.726304 -s 10 -d 7 -p ack -e 40 -c 0 -i 1232 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.727056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1219 -a 0 -x {9.0 10.0 614 ------- null} - -t 0.727056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1219 -a 0 -x {9.0 10.0 614 ------- null} h -t 0.727056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1219 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.727104 -s 0 -d 9 -p ack -e 40 -c 0 -i 1222 -a 0 -x {10.0 9.0 606 ------- null} + -t 0.727104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1233 -a 0 -x {9.0 10.0 621 ------- null} - -t 0.727104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1233 -a 0 -x {9.0 10.0 621 ------- null} h -t 0.727104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1233 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.727248 -s 10 -d 7 -p ack -e 40 -c 0 -i 1230 -a 0 -x {10.0 9.0 610 ------- null} + -t 0.727248 -s 7 -d 0 -p ack -e 40 -c 0 -i 1230 -a 0 -x {10.0 9.0 610 ------- null} h -t 0.727248 -s 7 -d 8 -p ack -e 40 -c 0 -i 1230 -a 0 -x {10.0 9.0 610 ------- null} + -t 0.727296 -s 0 -d 9 -p ack -e 40 -c 0 -i 1226 -a 0 -x {10.0 9.0 608 ------- null} - -t 0.727296 -s 0 -d 9 -p ack -e 40 -c 0 -i 1226 -a 0 -x {10.0 9.0 608 ------- null} h -t 0.727296 -s 0 -d 9 -p ack -e 40 -c 0 -i 1226 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.727424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1229 -a 0 -x {9.0 10.0 619 ------- null} + -t 0.727424 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1229 -a 0 -x {9.0 10.0 619 ------- null} h -t 0.727424 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1229 -a 0 -x {9.0 10.0 619 ------- null} r -t 0.72768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1215 -a 0 -x {9.0 10.0 612 ------- null} + -t 0.72768 -s 10 -d 7 -p ack -e 40 -c 0 -i 1234 -a 0 -x {10.0 9.0 612 ------- null} - -t 0.72768 -s 10 -d 7 -p ack -e 40 -c 0 -i 1234 -a 0 -x {10.0 9.0 612 ------- null} h -t 0.72768 -s 10 -d 7 -p ack -e 40 -c 0 -i 1234 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.728144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1221 -a 0 -x {9.0 10.0 615 ------- null} - -t 0.728144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1221 -a 0 -x {9.0 10.0 615 ------- null} h -t 0.728144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1221 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.728192 -s 0 -d 9 -p ack -e 40 -c 0 -i 1224 -a 0 -x {10.0 9.0 607 ------- null} + -t 0.728192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1235 -a 0 -x {9.0 10.0 622 ------- null} - -t 0.728192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1235 -a 0 -x {9.0 10.0 622 ------- null} h -t 0.728192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1235 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.728336 -s 10 -d 7 -p ack -e 40 -c 0 -i 1232 -a 0 -x {10.0 9.0 611 ------- null} + -t 0.728336 -s 7 -d 0 -p ack -e 40 -c 0 -i 1232 -a 0 -x {10.0 9.0 611 ------- null} h -t 0.728336 -s 7 -d 8 -p ack -e 40 -c 0 -i 1232 -a 0 -x {10.0 9.0 611 ------- null} + -t 0.728384 -s 0 -d 9 -p ack -e 40 -c 0 -i 1228 -a 0 -x {10.0 9.0 609 ------- null} - -t 0.728384 -s 0 -d 9 -p ack -e 40 -c 0 -i 1228 -a 0 -x {10.0 9.0 609 ------- null} h -t 0.728384 -s 0 -d 9 -p ack -e 40 -c 0 -i 1228 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.72864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1231 -a 0 -x {9.0 10.0 620 ------- null} + -t 0.72864 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1231 -a 0 -x {9.0 10.0 620 ------- null} h -t 0.72864 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1231 -a 0 -x {9.0 10.0 620 ------- null} r -t 0.728768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1217 -a 0 -x {9.0 10.0 613 ------- null} + -t 0.728768 -s 10 -d 7 -p ack -e 40 -c 0 -i 1236 -a 0 -x {10.0 9.0 613 ------- null} - -t 0.728768 -s 10 -d 7 -p ack -e 40 -c 0 -i 1236 -a 0 -x {10.0 9.0 613 ------- null} h -t 0.728768 -s 10 -d 7 -p ack -e 40 -c 0 -i 1236 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.729232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1223 -a 0 -x {9.0 10.0 616 ------- null} - -t 0.729232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1223 -a 0 -x {9.0 10.0 616 ------- null} h -t 0.729232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1223 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.729328 -s 0 -d 9 -p ack -e 40 -c 0 -i 1226 -a 0 -x {10.0 9.0 608 ------- null} + -t 0.729328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1237 -a 0 -x {9.0 10.0 623 ------- null} - -t 0.729328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1237 -a 0 -x {9.0 10.0 623 ------- null} h -t 0.729328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1237 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.729536 -s 0 -d 9 -p ack -e 40 -c 0 -i 1230 -a 0 -x {10.0 9.0 610 ------- null} - -t 0.729536 -s 0 -d 9 -p ack -e 40 -c 0 -i 1230 -a 0 -x {10.0 9.0 610 ------- null} h -t 0.729536 -s 0 -d 9 -p ack -e 40 -c 0 -i 1230 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.729712 -s 10 -d 7 -p ack -e 40 -c 0 -i 1234 -a 0 -x {10.0 9.0 612 ------- null} + -t 0.729712 -s 7 -d 0 -p ack -e 40 -c 0 -i 1234 -a 0 -x {10.0 9.0 612 ------- null} h -t 0.729712 -s 7 -d 8 -p ack -e 40 -c 0 -i 1234 -a 0 -x {10.0 9.0 612 ------- null} r -t 0.729856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1219 -a 0 -x {9.0 10.0 614 ------- null} + -t 0.729856 -s 10 -d 7 -p ack -e 40 -c 0 -i 1238 -a 0 -x {10.0 9.0 614 ------- null} - -t 0.729856 -s 10 -d 7 -p ack -e 40 -c 0 -i 1238 -a 0 -x {10.0 9.0 614 ------- null} h -t 0.729856 -s 10 -d 7 -p ack -e 40 -c 0 -i 1238 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.729904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1233 -a 0 -x {9.0 10.0 621 ------- null} + -t 0.729904 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1233 -a 0 -x {9.0 10.0 621 ------- null} h -t 0.729904 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1233 -a 0 -x {9.0 10.0 621 ------- null} r -t 0.730416 -s 0 -d 9 -p ack -e 40 -c 0 -i 1228 -a 0 -x {10.0 9.0 609 ------- null} + -t 0.730416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1239 -a 0 -x {9.0 10.0 624 ------- null} - -t 0.730416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1239 -a 0 -x {9.0 10.0 624 ------- null} h -t 0.730416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1239 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.730528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1225 -a 0 -x {9.0 10.0 617 ------- null} - -t 0.730528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1225 -a 0 -x {9.0 10.0 617 ------- null} h -t 0.730528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1225 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.730784 -s 0 -d 9 -p ack -e 40 -c 0 -i 1232 -a 0 -x {10.0 9.0 611 ------- null} - -t 0.730784 -s 0 -d 9 -p ack -e 40 -c 0 -i 1232 -a 0 -x {10.0 9.0 611 ------- null} h -t 0.730784 -s 0 -d 9 -p ack -e 40 -c 0 -i 1232 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.7308 -s 10 -d 7 -p ack -e 40 -c 0 -i 1236 -a 0 -x {10.0 9.0 613 ------- null} + -t 0.7308 -s 7 -d 0 -p ack -e 40 -c 0 -i 1236 -a 0 -x {10.0 9.0 613 ------- null} h -t 0.7308 -s 7 -d 8 -p ack -e 40 -c 0 -i 1236 -a 0 -x {10.0 9.0 613 ------- null} r -t 0.730944 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1221 -a 0 -x {9.0 10.0 615 ------- null} + -t 0.730944 -s 10 -d 7 -p ack -e 40 -c 0 -i 1240 -a 0 -x {10.0 9.0 615 ------- null} - -t 0.730944 -s 10 -d 7 -p ack -e 40 -c 0 -i 1240 -a 0 -x {10.0 9.0 615 ------- null} h -t 0.730944 -s 10 -d 7 -p ack -e 40 -c 0 -i 1240 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.730992 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1235 -a 0 -x {9.0 10.0 622 ------- null} + -t 0.730992 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1235 -a 0 -x {9.0 10.0 622 ------- null} h -t 0.730992 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1235 -a 0 -x {9.0 10.0 622 ------- null} r -t 0.731568 -s 0 -d 9 -p ack -e 40 -c 0 -i 1230 -a 0 -x {10.0 9.0 610 ------- null} + -t 0.731568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1241 -a 0 -x {9.0 10.0 625 ------- null} - -t 0.731568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1241 -a 0 -x {9.0 10.0 625 ------- null} h -t 0.731568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1241 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.731616 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1227 -a 0 -x {9.0 10.0 618 ------- null} - -t 0.731616 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1227 -a 0 -x {9.0 10.0 618 ------- null} h -t 0.731616 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1227 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.731728 -s 0 -d 9 -p ack -e 40 -c 0 -i 1234 -a 0 -x {10.0 9.0 612 ------- null} - -t 0.731728 -s 0 -d 9 -p ack -e 40 -c 0 -i 1234 -a 0 -x {10.0 9.0 612 ------- null} h -t 0.731728 -s 0 -d 9 -p ack -e 40 -c 0 -i 1234 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.731888 -s 10 -d 7 -p ack -e 40 -c 0 -i 1238 -a 0 -x {10.0 9.0 614 ------- null} + -t 0.731888 -s 7 -d 0 -p ack -e 40 -c 0 -i 1238 -a 0 -x {10.0 9.0 614 ------- null} h -t 0.731888 -s 7 -d 8 -p ack -e 40 -c 0 -i 1238 -a 0 -x {10.0 9.0 614 ------- null} r -t 0.732032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1223 -a 0 -x {9.0 10.0 616 ------- null} + -t 0.732032 -s 10 -d 7 -p ack -e 40 -c 0 -i 1242 -a 0 -x {10.0 9.0 616 ------- null} - -t 0.732032 -s 10 -d 7 -p ack -e 40 -c 0 -i 1242 -a 0 -x {10.0 9.0 616 ------- null} h -t 0.732032 -s 10 -d 7 -p ack -e 40 -c 0 -i 1242 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.732128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1237 -a 0 -x {9.0 10.0 623 ------- null} + -t 0.732128 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1237 -a 0 -x {9.0 10.0 623 ------- null} h -t 0.732128 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1237 -a 0 -x {9.0 10.0 623 ------- null} + -t 0.732704 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1229 -a 0 -x {9.0 10.0 619 ------- null} - -t 0.732704 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1229 -a 0 -x {9.0 10.0 619 ------- null} h -t 0.732704 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1229 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.732816 -s 0 -d 9 -p ack -e 40 -c 0 -i 1232 -a 0 -x {10.0 9.0 611 ------- null} + -t 0.732816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1243 -a 0 -x {9.0 10.0 626 ------- null} - -t 0.732816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1243 -a 0 -x {9.0 10.0 626 ------- null} h -t 0.732816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1243 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.732912 -s 0 -d 9 -p ack -e 40 -c 0 -i 1236 -a 0 -x {10.0 9.0 613 ------- null} - -t 0.732912 -s 0 -d 9 -p ack -e 40 -c 0 -i 1236 -a 0 -x {10.0 9.0 613 ------- null} h -t 0.732912 -s 0 -d 9 -p ack -e 40 -c 0 -i 1236 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.732976 -s 10 -d 7 -p ack -e 40 -c 0 -i 1240 -a 0 -x {10.0 9.0 615 ------- null} + -t 0.732976 -s 7 -d 0 -p ack -e 40 -c 0 -i 1240 -a 0 -x {10.0 9.0 615 ------- null} h -t 0.732976 -s 7 -d 8 -p ack -e 40 -c 0 -i 1240 -a 0 -x {10.0 9.0 615 ------- null} r -t 0.733216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1239 -a 0 -x {9.0 10.0 624 ------- null} + -t 0.733216 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1239 -a 0 -x {9.0 10.0 624 ------- null} h -t 0.733216 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1239 -a 0 -x {9.0 10.0 624 ------- null} r -t 0.733328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1225 -a 0 -x {9.0 10.0 617 ------- null} + -t 0.733328 -s 10 -d 7 -p ack -e 40 -c 0 -i 1244 -a 0 -x {10.0 9.0 617 ------- null} - -t 0.733328 -s 10 -d 7 -p ack -e 40 -c 0 -i 1244 -a 0 -x {10.0 9.0 617 ------- null} h -t 0.733328 -s 10 -d 7 -p ack -e 40 -c 0 -i 1244 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.73376 -s 0 -d 9 -p ack -e 40 -c 0 -i 1234 -a 0 -x {10.0 9.0 612 ------- null} + -t 0.73376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1245 -a 0 -x {9.0 10.0 627 ------- null} - -t 0.73376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1245 -a 0 -x {9.0 10.0 627 ------- null} h -t 0.73376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1245 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.733792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1231 -a 0 -x {9.0 10.0 620 ------- null} - -t 0.733792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1231 -a 0 -x {9.0 10.0 620 ------- null} h -t 0.733792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1231 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.733872 -s 0 -d 9 -p ack -e 40 -c 0 -i 1238 -a 0 -x {10.0 9.0 614 ------- null} - -t 0.733872 -s 0 -d 9 -p ack -e 40 -c 0 -i 1238 -a 0 -x {10.0 9.0 614 ------- null} h -t 0.733872 -s 0 -d 9 -p ack -e 40 -c 0 -i 1238 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.734064 -s 10 -d 7 -p ack -e 40 -c 0 -i 1242 -a 0 -x {10.0 9.0 616 ------- null} + -t 0.734064 -s 7 -d 0 -p ack -e 40 -c 0 -i 1242 -a 0 -x {10.0 9.0 616 ------- null} h -t 0.734064 -s 7 -d 8 -p ack -e 40 -c 0 -i 1242 -a 0 -x {10.0 9.0 616 ------- null} r -t 0.734368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1241 -a 0 -x {9.0 10.0 625 ------- null} + -t 0.734368 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1241 -a 0 -x {9.0 10.0 625 ------- null} h -t 0.734368 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1241 -a 0 -x {9.0 10.0 625 ------- null} r -t 0.734416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1227 -a 0 -x {9.0 10.0 618 ------- null} + -t 0.734416 -s 10 -d 7 -p ack -e 40 -c 0 -i 1246 -a 0 -x {10.0 9.0 618 ------- null} - -t 0.734416 -s 10 -d 7 -p ack -e 40 -c 0 -i 1246 -a 0 -x {10.0 9.0 618 ------- null} h -t 0.734416 -s 10 -d 7 -p ack -e 40 -c 0 -i 1246 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.73488 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1233 -a 0 -x {9.0 10.0 621 ------- null} - -t 0.73488 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1233 -a 0 -x {9.0 10.0 621 ------- null} h -t 0.73488 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1233 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.734944 -s 0 -d 9 -p ack -e 40 -c 0 -i 1236 -a 0 -x {10.0 9.0 613 ------- null} + -t 0.734944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1247 -a 0 -x {9.0 10.0 628 ------- null} - -t 0.734944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1247 -a 0 -x {9.0 10.0 628 ------- null} h -t 0.734944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1247 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.734944 -s 0 -d 9 -p ack -e 40 -c 0 -i 1240 -a 0 -x {10.0 9.0 615 ------- null} - -t 0.734944 -s 0 -d 9 -p ack -e 40 -c 0 -i 1240 -a 0 -x {10.0 9.0 615 ------- null} h -t 0.734944 -s 0 -d 9 -p ack -e 40 -c 0 -i 1240 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.73536 -s 10 -d 7 -p ack -e 40 -c 0 -i 1244 -a 0 -x {10.0 9.0 617 ------- null} + -t 0.73536 -s 7 -d 0 -p ack -e 40 -c 0 -i 1244 -a 0 -x {10.0 9.0 617 ------- null} h -t 0.73536 -s 7 -d 8 -p ack -e 40 -c 0 -i 1244 -a 0 -x {10.0 9.0 617 ------- null} r -t 0.735504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1229 -a 0 -x {9.0 10.0 619 ------- null} + -t 0.735504 -s 10 -d 7 -p ack -e 40 -c 0 -i 1248 -a 0 -x {10.0 9.0 619 ------- null} - -t 0.735504 -s 10 -d 7 -p ack -e 40 -c 0 -i 1248 -a 0 -x {10.0 9.0 619 ------- null} h -t 0.735504 -s 10 -d 7 -p ack -e 40 -c 0 -i 1248 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.735616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1243 -a 0 -x {9.0 10.0 626 ------- null} + -t 0.735616 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1243 -a 0 -x {9.0 10.0 626 ------- null} h -t 0.735616 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1243 -a 0 -x {9.0 10.0 626 ------- null} r -t 0.735904 -s 0 -d 9 -p ack -e 40 -c 0 -i 1238 -a 0 -x {10.0 9.0 614 ------- null} + -t 0.735904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1249 -a 0 -x {9.0 10.0 629 ------- null} - -t 0.735904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1249 -a 0 -x {9.0 10.0 629 ------- null} h -t 0.735904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1249 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.735968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1235 -a 0 -x {9.0 10.0 622 ------- null} - -t 0.735968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1235 -a 0 -x {9.0 10.0 622 ------- null} h -t 0.735968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1235 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.736048 -s 0 -d 9 -p ack -e 40 -c 0 -i 1242 -a 0 -x {10.0 9.0 616 ------- null} - -t 0.736048 -s 0 -d 9 -p ack -e 40 -c 0 -i 1242 -a 0 -x {10.0 9.0 616 ------- null} h -t 0.736048 -s 0 -d 9 -p ack -e 40 -c 0 -i 1242 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.736448 -s 10 -d 7 -p ack -e 40 -c 0 -i 1246 -a 0 -x {10.0 9.0 618 ------- null} + -t 0.736448 -s 7 -d 0 -p ack -e 40 -c 0 -i 1246 -a 0 -x {10.0 9.0 618 ------- null} h -t 0.736448 -s 7 -d 8 -p ack -e 40 -c 0 -i 1246 -a 0 -x {10.0 9.0 618 ------- null} r -t 0.73656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1245 -a 0 -x {9.0 10.0 627 ------- null} + -t 0.73656 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1245 -a 0 -x {9.0 10.0 627 ------- null} h -t 0.73656 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1245 -a 0 -x {9.0 10.0 627 ------- null} r -t 0.736592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1231 -a 0 -x {9.0 10.0 620 ------- null} + -t 0.736592 -s 10 -d 7 -p ack -e 40 -c 0 -i 1250 -a 0 -x {10.0 9.0 620 ------- null} - -t 0.736592 -s 10 -d 7 -p ack -e 40 -c 0 -i 1250 -a 0 -x {10.0 9.0 620 ------- null} h -t 0.736592 -s 10 -d 7 -p ack -e 40 -c 0 -i 1250 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.736976 -s 0 -d 9 -p ack -e 40 -c 0 -i 1240 -a 0 -x {10.0 9.0 615 ------- null} + -t 0.736976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1251 -a 0 -x {9.0 10.0 630 ------- null} - -t 0.736976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1251 -a 0 -x {9.0 10.0 630 ------- null} h -t 0.736976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1251 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.737056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1237 -a 0 -x {9.0 10.0 623 ------- null} - -t 0.737056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1237 -a 0 -x {9.0 10.0 623 ------- null} h -t 0.737056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1237 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.73728 -s 0 -d 9 -p ack -e 40 -c 0 -i 1244 -a 0 -x {10.0 9.0 617 ------- null} - -t 0.73728 -s 0 -d 9 -p ack -e 40 -c 0 -i 1244 -a 0 -x {10.0 9.0 617 ------- null} h -t 0.73728 -s 0 -d 9 -p ack -e 40 -c 0 -i 1244 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.737536 -s 10 -d 7 -p ack -e 40 -c 0 -i 1248 -a 0 -x {10.0 9.0 619 ------- null} + -t 0.737536 -s 7 -d 0 -p ack -e 40 -c 0 -i 1248 -a 0 -x {10.0 9.0 619 ------- null} h -t 0.737536 -s 7 -d 8 -p ack -e 40 -c 0 -i 1248 -a 0 -x {10.0 9.0 619 ------- null} r -t 0.73768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1233 -a 0 -x {9.0 10.0 621 ------- null} + -t 0.73768 -s 10 -d 7 -p ack -e 40 -c 0 -i 1252 -a 0 -x {10.0 9.0 621 ------- null} - -t 0.73768 -s 10 -d 7 -p ack -e 40 -c 0 -i 1252 -a 0 -x {10.0 9.0 621 ------- null} h -t 0.73768 -s 10 -d 7 -p ack -e 40 -c 0 -i 1252 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.737744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1247 -a 0 -x {9.0 10.0 628 ------- null} + -t 0.737744 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1247 -a 0 -x {9.0 10.0 628 ------- null} h -t 0.737744 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1247 -a 0 -x {9.0 10.0 628 ------- null} r -t 0.73808 -s 0 -d 9 -p ack -e 40 -c 0 -i 1242 -a 0 -x {10.0 9.0 616 ------- null} + -t 0.73808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1253 -a 0 -x {9.0 10.0 631 ------- null} - -t 0.73808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1253 -a 0 -x {9.0 10.0 631 ------- null} h -t 0.73808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1253 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.738144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1239 -a 0 -x {9.0 10.0 624 ------- null} - -t 0.738144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1239 -a 0 -x {9.0 10.0 624 ------- null} h -t 0.738144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1239 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.738256 -s 0 -d 9 -p ack -e 40 -c 0 -i 1246 -a 0 -x {10.0 9.0 618 ------- null} - -t 0.738256 -s 0 -d 9 -p ack -e 40 -c 0 -i 1246 -a 0 -x {10.0 9.0 618 ------- null} h -t 0.738256 -s 0 -d 9 -p ack -e 40 -c 0 -i 1246 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.738624 -s 10 -d 7 -p ack -e 40 -c 0 -i 1250 -a 0 -x {10.0 9.0 620 ------- null} + -t 0.738624 -s 7 -d 0 -p ack -e 40 -c 0 -i 1250 -a 0 -x {10.0 9.0 620 ------- null} h -t 0.738624 -s 7 -d 8 -p ack -e 40 -c 0 -i 1250 -a 0 -x {10.0 9.0 620 ------- null} r -t 0.738704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1249 -a 0 -x {9.0 10.0 629 ------- null} + -t 0.738704 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1249 -a 0 -x {9.0 10.0 629 ------- null} h -t 0.738704 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1249 -a 0 -x {9.0 10.0 629 ------- null} r -t 0.738768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1235 -a 0 -x {9.0 10.0 622 ------- null} + -t 0.738768 -s 10 -d 7 -p ack -e 40 -c 0 -i 1254 -a 0 -x {10.0 9.0 622 ------- null} - -t 0.738768 -s 10 -d 7 -p ack -e 40 -c 0 -i 1254 -a 0 -x {10.0 9.0 622 ------- null} h -t 0.738768 -s 10 -d 7 -p ack -e 40 -c 0 -i 1254 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.739232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1241 -a 0 -x {9.0 10.0 625 ------- null} - -t 0.739232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1241 -a 0 -x {9.0 10.0 625 ------- null} h -t 0.739232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1241 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.739312 -s 0 -d 9 -p ack -e 40 -c 0 -i 1244 -a 0 -x {10.0 9.0 617 ------- null} + -t 0.739312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1255 -a 0 -x {9.0 10.0 632 ------- null} - -t 0.739312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1255 -a 0 -x {9.0 10.0 632 ------- null} h -t 0.739312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1255 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.739424 -s 0 -d 9 -p ack -e 40 -c 0 -i 1248 -a 0 -x {10.0 9.0 619 ------- null} - -t 0.739424 -s 0 -d 9 -p ack -e 40 -c 0 -i 1248 -a 0 -x {10.0 9.0 619 ------- null} h -t 0.739424 -s 0 -d 9 -p ack -e 40 -c 0 -i 1248 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.739712 -s 10 -d 7 -p ack -e 40 -c 0 -i 1252 -a 0 -x {10.0 9.0 621 ------- null} + -t 0.739712 -s 7 -d 0 -p ack -e 40 -c 0 -i 1252 -a 0 -x {10.0 9.0 621 ------- null} h -t 0.739712 -s 7 -d 8 -p ack -e 40 -c 0 -i 1252 -a 0 -x {10.0 9.0 621 ------- null} r -t 0.739776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1251 -a 0 -x {9.0 10.0 630 ------- null} + -t 0.739776 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1251 -a 0 -x {9.0 10.0 630 ------- null} h -t 0.739776 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1251 -a 0 -x {9.0 10.0 630 ------- null} r -t 0.739856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1237 -a 0 -x {9.0 10.0 623 ------- null} + -t 0.739856 -s 10 -d 7 -p ack -e 40 -c 0 -i 1256 -a 0 -x {10.0 9.0 623 ------- null} - -t 0.739856 -s 10 -d 7 -p ack -e 40 -c 0 -i 1256 -a 0 -x {10.0 9.0 623 ------- null} h -t 0.739856 -s 10 -d 7 -p ack -e 40 -c 0 -i 1256 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.740288 -s 0 -d 9 -p ack -e 40 -c 0 -i 1246 -a 0 -x {10.0 9.0 618 ------- null} + -t 0.740288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1257 -a 0 -x {9.0 10.0 633 ------- null} - -t 0.740288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1257 -a 0 -x {9.0 10.0 633 ------- null} h -t 0.740288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1257 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.74032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1243 -a 0 -x {9.0 10.0 626 ------- null} - -t 0.74032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1243 -a 0 -x {9.0 10.0 626 ------- null} h -t 0.74032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1243 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.7404 -s 0 -d 9 -p ack -e 40 -c 0 -i 1250 -a 0 -x {10.0 9.0 620 ------- null} - -t 0.7404 -s 0 -d 9 -p ack -e 40 -c 0 -i 1250 -a 0 -x {10.0 9.0 620 ------- null} h -t 0.7404 -s 0 -d 9 -p ack -e 40 -c 0 -i 1250 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.7408 -s 10 -d 7 -p ack -e 40 -c 0 -i 1254 -a 0 -x {10.0 9.0 622 ------- null} + -t 0.7408 -s 7 -d 0 -p ack -e 40 -c 0 -i 1254 -a 0 -x {10.0 9.0 622 ------- null} h -t 0.7408 -s 7 -d 8 -p ack -e 40 -c 0 -i 1254 -a 0 -x {10.0 9.0 622 ------- null} r -t 0.74088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1253 -a 0 -x {9.0 10.0 631 ------- null} + -t 0.74088 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1253 -a 0 -x {9.0 10.0 631 ------- null} h -t 0.74088 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1253 -a 0 -x {9.0 10.0 631 ------- null} r -t 0.740944 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1239 -a 0 -x {9.0 10.0 624 ------- null} + -t 0.740944 -s 10 -d 7 -p ack -e 40 -c 0 -i 1258 -a 0 -x {10.0 9.0 624 ------- null} - -t 0.740944 -s 10 -d 7 -p ack -e 40 -c 0 -i 1258 -a 0 -x {10.0 9.0 624 ------- null} h -t 0.740944 -s 10 -d 7 -p ack -e 40 -c 0 -i 1258 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.741408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1245 -a 0 -x {9.0 10.0 627 ------- null} - -t 0.741408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1245 -a 0 -x {9.0 10.0 627 ------- null} h -t 0.741408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1245 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.741456 -s 0 -d 9 -p ack -e 40 -c 0 -i 1248 -a 0 -x {10.0 9.0 619 ------- null} + -t 0.741456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1259 -a 0 -x {9.0 10.0 634 ------- null} - -t 0.741456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1259 -a 0 -x {9.0 10.0 634 ------- null} h -t 0.741456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1259 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.741648 -s 0 -d 9 -p ack -e 40 -c 0 -i 1252 -a 0 -x {10.0 9.0 621 ------- null} - -t 0.741648 -s 0 -d 9 -p ack -e 40 -c 0 -i 1252 -a 0 -x {10.0 9.0 621 ------- null} h -t 0.741648 -s 0 -d 9 -p ack -e 40 -c 0 -i 1252 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.741888 -s 10 -d 7 -p ack -e 40 -c 0 -i 1256 -a 0 -x {10.0 9.0 623 ------- null} + -t 0.741888 -s 7 -d 0 -p ack -e 40 -c 0 -i 1256 -a 0 -x {10.0 9.0 623 ------- null} h -t 0.741888 -s 7 -d 8 -p ack -e 40 -c 0 -i 1256 -a 0 -x {10.0 9.0 623 ------- null} r -t 0.742032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1241 -a 0 -x {9.0 10.0 625 ------- null} + -t 0.742032 -s 10 -d 7 -p ack -e 40 -c 0 -i 1260 -a 0 -x {10.0 9.0 625 ------- null} - -t 0.742032 -s 10 -d 7 -p ack -e 40 -c 0 -i 1260 -a 0 -x {10.0 9.0 625 ------- null} h -t 0.742032 -s 10 -d 7 -p ack -e 40 -c 0 -i 1260 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.742112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1255 -a 0 -x {9.0 10.0 632 ------- null} + -t 0.742112 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1255 -a 0 -x {9.0 10.0 632 ------- null} h -t 0.742112 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1255 -a 0 -x {9.0 10.0 632 ------- null} r -t 0.742432 -s 0 -d 9 -p ack -e 40 -c 0 -i 1250 -a 0 -x {10.0 9.0 620 ------- null} + -t 0.742432 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1261 -a 0 -x {9.0 10.0 635 ------- null} - -t 0.742432 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1261 -a 0 -x {9.0 10.0 635 ------- null} h -t 0.742432 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1261 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.742496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1247 -a 0 -x {9.0 10.0 628 ------- null} - -t 0.742496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1247 -a 0 -x {9.0 10.0 628 ------- null} h -t 0.742496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1247 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.742592 -s 0 -d 9 -p ack -e 40 -c 0 -i 1254 -a 0 -x {10.0 9.0 622 ------- null} - -t 0.742592 -s 0 -d 9 -p ack -e 40 -c 0 -i 1254 -a 0 -x {10.0 9.0 622 ------- null} h -t 0.742592 -s 0 -d 9 -p ack -e 40 -c 0 -i 1254 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.742976 -s 10 -d 7 -p ack -e 40 -c 0 -i 1258 -a 0 -x {10.0 9.0 624 ------- null} + -t 0.742976 -s 7 -d 0 -p ack -e 40 -c 0 -i 1258 -a 0 -x {10.0 9.0 624 ------- null} h -t 0.742976 -s 7 -d 8 -p ack -e 40 -c 0 -i 1258 -a 0 -x {10.0 9.0 624 ------- null} r -t 0.743088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1257 -a 0 -x {9.0 10.0 633 ------- null} + -t 0.743088 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1257 -a 0 -x {9.0 10.0 633 ------- null} h -t 0.743088 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1257 -a 0 -x {9.0 10.0 633 ------- null} r -t 0.74312 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1243 -a 0 -x {9.0 10.0 626 ------- null} + -t 0.74312 -s 10 -d 7 -p ack -e 40 -c 0 -i 1262 -a 0 -x {10.0 9.0 626 ------- null} - -t 0.74312 -s 10 -d 7 -p ack -e 40 -c 0 -i 1262 -a 0 -x {10.0 9.0 626 ------- null} h -t 0.74312 -s 10 -d 7 -p ack -e 40 -c 0 -i 1262 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.743584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1249 -a 0 -x {9.0 10.0 629 ------- null} - -t 0.743584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1249 -a 0 -x {9.0 10.0 629 ------- null} h -t 0.743584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1249 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.74368 -s 0 -d 9 -p ack -e 40 -c 0 -i 1252 -a 0 -x {10.0 9.0 621 ------- null} + -t 0.74368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1263 -a 0 -x {9.0 10.0 636 ------- null} - -t 0.74368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1263 -a 0 -x {9.0 10.0 636 ------- null} h -t 0.74368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1263 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.74376 -s 0 -d 9 -p ack -e 40 -c 0 -i 1256 -a 0 -x {10.0 9.0 623 ------- null} - -t 0.74376 -s 0 -d 9 -p ack -e 40 -c 0 -i 1256 -a 0 -x {10.0 9.0 623 ------- null} h -t 0.74376 -s 0 -d 9 -p ack -e 40 -c 0 -i 1256 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.744064 -s 10 -d 7 -p ack -e 40 -c 0 -i 1260 -a 0 -x {10.0 9.0 625 ------- null} + -t 0.744064 -s 7 -d 0 -p ack -e 40 -c 0 -i 1260 -a 0 -x {10.0 9.0 625 ------- null} h -t 0.744064 -s 7 -d 8 -p ack -e 40 -c 0 -i 1260 -a 0 -x {10.0 9.0 625 ------- null} r -t 0.744208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1245 -a 0 -x {9.0 10.0 627 ------- null} + -t 0.744208 -s 10 -d 7 -p ack -e 40 -c 0 -i 1264 -a 0 -x {10.0 9.0 627 ------- null} - -t 0.744208 -s 10 -d 7 -p ack -e 40 -c 0 -i 1264 -a 0 -x {10.0 9.0 627 ------- null} h -t 0.744208 -s 10 -d 7 -p ack -e 40 -c 0 -i 1264 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.744256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1259 -a 0 -x {9.0 10.0 634 ------- null} + -t 0.744256 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1259 -a 0 -x {9.0 10.0 634 ------- null} h -t 0.744256 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1259 -a 0 -x {9.0 10.0 634 ------- null} r -t 0.744624 -s 0 -d 9 -p ack -e 40 -c 0 -i 1254 -a 0 -x {10.0 9.0 622 ------- null} + -t 0.744624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1265 -a 0 -x {9.0 10.0 637 ------- null} - -t 0.744624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1265 -a 0 -x {9.0 10.0 637 ------- null} h -t 0.744624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1265 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.744672 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1251 -a 0 -x {9.0 10.0 630 ------- null} - -t 0.744672 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1251 -a 0 -x {9.0 10.0 630 ------- null} h -t 0.744672 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1251 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.744864 -s 0 -d 9 -p ack -e 40 -c 0 -i 1258 -a 0 -x {10.0 9.0 624 ------- null} - -t 0.744864 -s 0 -d 9 -p ack -e 40 -c 0 -i 1258 -a 0 -x {10.0 9.0 624 ------- null} h -t 0.744864 -s 0 -d 9 -p ack -e 40 -c 0 -i 1258 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.745152 -s 10 -d 7 -p ack -e 40 -c 0 -i 1262 -a 0 -x {10.0 9.0 626 ------- null} + -t 0.745152 -s 7 -d 0 -p ack -e 40 -c 0 -i 1262 -a 0 -x {10.0 9.0 626 ------- null} h -t 0.745152 -s 7 -d 8 -p ack -e 40 -c 0 -i 1262 -a 0 -x {10.0 9.0 626 ------- null} r -t 0.745232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1261 -a 0 -x {9.0 10.0 635 ------- null} + -t 0.745232 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1261 -a 0 -x {9.0 10.0 635 ------- null} h -t 0.745232 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1261 -a 0 -x {9.0 10.0 635 ------- null} r -t 0.745296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1247 -a 0 -x {9.0 10.0 628 ------- null} + -t 0.745296 -s 10 -d 7 -p ack -e 40 -c 0 -i 1266 -a 0 -x {10.0 9.0 628 ------- null} - -t 0.745296 -s 10 -d 7 -p ack -e 40 -c 0 -i 1266 -a 0 -x {10.0 9.0 628 ------- null} h -t 0.745296 -s 10 -d 7 -p ack -e 40 -c 0 -i 1266 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.74576 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1253 -a 0 -x {9.0 10.0 631 ------- null} - -t 0.74576 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1253 -a 0 -x {9.0 10.0 631 ------- null} h -t 0.74576 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1253 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.745792 -s 0 -d 9 -p ack -e 40 -c 0 -i 1256 -a 0 -x {10.0 9.0 623 ------- null} + -t 0.745792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1267 -a 0 -x {9.0 10.0 638 ------- null} - -t 0.745792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1267 -a 0 -x {9.0 10.0 638 ------- null} h -t 0.745792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1267 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.745856 -s 0 -d 9 -p ack -e 40 -c 0 -i 1260 -a 0 -x {10.0 9.0 625 ------- null} - -t 0.745856 -s 0 -d 9 -p ack -e 40 -c 0 -i 1260 -a 0 -x {10.0 9.0 625 ------- null} h -t 0.745856 -s 0 -d 9 -p ack -e 40 -c 0 -i 1260 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.74624 -s 10 -d 7 -p ack -e 40 -c 0 -i 1264 -a 0 -x {10.0 9.0 627 ------- null} + -t 0.74624 -s 7 -d 0 -p ack -e 40 -c 0 -i 1264 -a 0 -x {10.0 9.0 627 ------- null} h -t 0.74624 -s 7 -d 8 -p ack -e 40 -c 0 -i 1264 -a 0 -x {10.0 9.0 627 ------- null} r -t 0.746384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1249 -a 0 -x {9.0 10.0 629 ------- null} + -t 0.746384 -s 10 -d 7 -p ack -e 40 -c 0 -i 1268 -a 0 -x {10.0 9.0 629 ------- null} - -t 0.746384 -s 10 -d 7 -p ack -e 40 -c 0 -i 1268 -a 0 -x {10.0 9.0 629 ------- null} h -t 0.746384 -s 10 -d 7 -p ack -e 40 -c 0 -i 1268 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.74648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1263 -a 0 -x {9.0 10.0 636 ------- null} + -t 0.74648 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1263 -a 0 -x {9.0 10.0 636 ------- null} h -t 0.74648 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1263 -a 0 -x {9.0 10.0 636 ------- null} + -t 0.746848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1255 -a 0 -x {9.0 10.0 632 ------- null} - -t 0.746848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1255 -a 0 -x {9.0 10.0 632 ------- null} h -t 0.746848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1255 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.746896 -s 0 -d 9 -p ack -e 40 -c 0 -i 1258 -a 0 -x {10.0 9.0 624 ------- null} + -t 0.746896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1269 -a 0 -x {9.0 10.0 639 ------- null} - -t 0.746896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1269 -a 0 -x {9.0 10.0 639 ------- null} h -t 0.746896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1269 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.747088 -s 0 -d 9 -p ack -e 40 -c 0 -i 1262 -a 0 -x {10.0 9.0 626 ------- null} - -t 0.747088 -s 0 -d 9 -p ack -e 40 -c 0 -i 1262 -a 0 -x {10.0 9.0 626 ------- null} h -t 0.747088 -s 0 -d 9 -p ack -e 40 -c 0 -i 1262 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.747328 -s 10 -d 7 -p ack -e 40 -c 0 -i 1266 -a 0 -x {10.0 9.0 628 ------- null} + -t 0.747328 -s 7 -d 0 -p ack -e 40 -c 0 -i 1266 -a 0 -x {10.0 9.0 628 ------- null} h -t 0.747328 -s 7 -d 8 -p ack -e 40 -c 0 -i 1266 -a 0 -x {10.0 9.0 628 ------- null} r -t 0.747424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1265 -a 0 -x {9.0 10.0 637 ------- null} + -t 0.747424 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1265 -a 0 -x {9.0 10.0 637 ------- null} h -t 0.747424 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1265 -a 0 -x {9.0 10.0 637 ------- null} r -t 0.747472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1251 -a 0 -x {9.0 10.0 630 ------- null} + -t 0.747472 -s 10 -d 7 -p ack -e 40 -c 0 -i 1270 -a 0 -x {10.0 9.0 630 ------- null} - -t 0.747472 -s 10 -d 7 -p ack -e 40 -c 0 -i 1270 -a 0 -x {10.0 9.0 630 ------- null} h -t 0.747472 -s 10 -d 7 -p ack -e 40 -c 0 -i 1270 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.747888 -s 0 -d 9 -p ack -e 40 -c 0 -i 1260 -a 0 -x {10.0 9.0 625 ------- null} + -t 0.747888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1271 -a 0 -x {9.0 10.0 640 ------- null} - -t 0.747888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1271 -a 0 -x {9.0 10.0 640 ------- null} h -t 0.747888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1271 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.747936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1257 -a 0 -x {9.0 10.0 633 ------- null} - -t 0.747936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1257 -a 0 -x {9.0 10.0 633 ------- null} h -t 0.747936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1257 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.748096 -s 0 -d 9 -p ack -e 40 -c 0 -i 1264 -a 0 -x {10.0 9.0 627 ------- null} - -t 0.748096 -s 0 -d 9 -p ack -e 40 -c 0 -i 1264 -a 0 -x {10.0 9.0 627 ------- null} h -t 0.748096 -s 0 -d 9 -p ack -e 40 -c 0 -i 1264 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.748416 -s 10 -d 7 -p ack -e 40 -c 0 -i 1268 -a 0 -x {10.0 9.0 629 ------- null} + -t 0.748416 -s 7 -d 0 -p ack -e 40 -c 0 -i 1268 -a 0 -x {10.0 9.0 629 ------- null} h -t 0.748416 -s 7 -d 8 -p ack -e 40 -c 0 -i 1268 -a 0 -x {10.0 9.0 629 ------- null} r -t 0.74856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1253 -a 0 -x {9.0 10.0 631 ------- null} + -t 0.74856 -s 10 -d 7 -p ack -e 40 -c 0 -i 1272 -a 0 -x {10.0 9.0 631 ------- null} - -t 0.74856 -s 10 -d 7 -p ack -e 40 -c 0 -i 1272 -a 0 -x {10.0 9.0 631 ------- null} h -t 0.74856 -s 10 -d 7 -p ack -e 40 -c 0 -i 1272 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.748592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1267 -a 0 -x {9.0 10.0 638 ------- null} + -t 0.748592 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1267 -a 0 -x {9.0 10.0 638 ------- null} h -t 0.748592 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1267 -a 0 -x {9.0 10.0 638 ------- null} + -t 0.749024 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1259 -a 0 -x {9.0 10.0 634 ------- null} - -t 0.749024 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1259 -a 0 -x {9.0 10.0 634 ------- null} h -t 0.749024 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1259 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.74912 -s 0 -d 9 -p ack -e 40 -c 0 -i 1262 -a 0 -x {10.0 9.0 626 ------- null} + -t 0.74912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1273 -a 0 -x {9.0 10.0 641 ------- null} - -t 0.74912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1273 -a 0 -x {9.0 10.0 641 ------- null} h -t 0.74912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1273 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.749248 -s 0 -d 9 -p ack -e 40 -c 0 -i 1266 -a 0 -x {10.0 9.0 628 ------- null} - -t 0.749248 -s 0 -d 9 -p ack -e 40 -c 0 -i 1266 -a 0 -x {10.0 9.0 628 ------- null} h -t 0.749248 -s 0 -d 9 -p ack -e 40 -c 0 -i 1266 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.749504 -s 10 -d 7 -p ack -e 40 -c 0 -i 1270 -a 0 -x {10.0 9.0 630 ------- null} + -t 0.749504 -s 7 -d 0 -p ack -e 40 -c 0 -i 1270 -a 0 -x {10.0 9.0 630 ------- null} h -t 0.749504 -s 7 -d 8 -p ack -e 40 -c 0 -i 1270 -a 0 -x {10.0 9.0 630 ------- null} r -t 0.749648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1255 -a 0 -x {9.0 10.0 632 ------- null} + -t 0.749648 -s 10 -d 7 -p ack -e 40 -c 0 -i 1274 -a 0 -x {10.0 9.0 632 ------- null} - -t 0.749648 -s 10 -d 7 -p ack -e 40 -c 0 -i 1274 -a 0 -x {10.0 9.0 632 ------- null} h -t 0.749648 -s 10 -d 7 -p ack -e 40 -c 0 -i 1274 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.749696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1269 -a 0 -x {9.0 10.0 639 ------- null} + -t 0.749696 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1269 -a 0 -x {9.0 10.0 639 ------- null} h -t 0.749696 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1269 -a 0 -x {9.0 10.0 639 ------- null} + -t 0.750112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1261 -a 0 -x {9.0 10.0 635 ------- null} - -t 0.750112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1261 -a 0 -x {9.0 10.0 635 ------- null} h -t 0.750112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1261 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.750128 -s 0 -d 9 -p ack -e 40 -c 0 -i 1264 -a 0 -x {10.0 9.0 627 ------- null} + -t 0.750128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1275 -a 0 -x {9.0 10.0 642 ------- null} - -t 0.750128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1275 -a 0 -x {9.0 10.0 642 ------- null} h -t 0.750128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1275 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.75024 -s 0 -d 9 -p ack -e 40 -c 0 -i 1268 -a 0 -x {10.0 9.0 629 ------- null} - -t 0.75024 -s 0 -d 9 -p ack -e 40 -c 0 -i 1268 -a 0 -x {10.0 9.0 629 ------- null} h -t 0.75024 -s 0 -d 9 -p ack -e 40 -c 0 -i 1268 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.750592 -s 10 -d 7 -p ack -e 40 -c 0 -i 1272 -a 0 -x {10.0 9.0 631 ------- null} + -t 0.750592 -s 7 -d 0 -p ack -e 40 -c 0 -i 1272 -a 0 -x {10.0 9.0 631 ------- null} h -t 0.750592 -s 7 -d 8 -p ack -e 40 -c 0 -i 1272 -a 0 -x {10.0 9.0 631 ------- null} r -t 0.750688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1271 -a 0 -x {9.0 10.0 640 ------- null} + -t 0.750688 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1271 -a 0 -x {9.0 10.0 640 ------- null} h -t 0.750688 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1271 -a 0 -x {9.0 10.0 640 ------- null} r -t 0.750736 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1257 -a 0 -x {9.0 10.0 633 ------- null} + -t 0.750736 -s 10 -d 7 -p ack -e 40 -c 0 -i 1276 -a 0 -x {10.0 9.0 633 ------- null} - -t 0.750736 -s 10 -d 7 -p ack -e 40 -c 0 -i 1276 -a 0 -x {10.0 9.0 633 ------- null} h -t 0.750736 -s 10 -d 7 -p ack -e 40 -c 0 -i 1276 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.7512 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1263 -a 0 -x {9.0 10.0 636 ------- null} - -t 0.7512 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1263 -a 0 -x {9.0 10.0 636 ------- null} h -t 0.7512 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1263 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.75128 -s 0 -d 9 -p ack -e 40 -c 0 -i 1266 -a 0 -x {10.0 9.0 628 ------- null} + -t 0.75128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1277 -a 0 -x {9.0 10.0 643 ------- null} - -t 0.75128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1277 -a 0 -x {9.0 10.0 643 ------- null} h -t 0.75128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1277 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.751424 -s 0 -d 9 -p ack -e 40 -c 0 -i 1270 -a 0 -x {10.0 9.0 630 ------- null} - -t 0.751424 -s 0 -d 9 -p ack -e 40 -c 0 -i 1270 -a 0 -x {10.0 9.0 630 ------- null} h -t 0.751424 -s 0 -d 9 -p ack -e 40 -c 0 -i 1270 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.75168 -s 10 -d 7 -p ack -e 40 -c 0 -i 1274 -a 0 -x {10.0 9.0 632 ------- null} + -t 0.75168 -s 7 -d 0 -p ack -e 40 -c 0 -i 1274 -a 0 -x {10.0 9.0 632 ------- null} h -t 0.75168 -s 7 -d 8 -p ack -e 40 -c 0 -i 1274 -a 0 -x {10.0 9.0 632 ------- null} r -t 0.751824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1259 -a 0 -x {9.0 10.0 634 ------- null} + -t 0.751824 -s 10 -d 7 -p ack -e 40 -c 0 -i 1278 -a 0 -x {10.0 9.0 634 ------- null} - -t 0.751824 -s 10 -d 7 -p ack -e 40 -c 0 -i 1278 -a 0 -x {10.0 9.0 634 ------- null} h -t 0.751824 -s 10 -d 7 -p ack -e 40 -c 0 -i 1278 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.75192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1273 -a 0 -x {9.0 10.0 641 ------- null} + -t 0.75192 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1273 -a 0 -x {9.0 10.0 641 ------- null} h -t 0.75192 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1273 -a 0 -x {9.0 10.0 641 ------- null} r -t 0.752272 -s 0 -d 9 -p ack -e 40 -c 0 -i 1268 -a 0 -x {10.0 9.0 629 ------- null} + -t 0.752272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1279 -a 0 -x {9.0 10.0 644 ------- null} - -t 0.752272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1279 -a 0 -x {9.0 10.0 644 ------- null} h -t 0.752272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1279 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.752288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1265 -a 0 -x {9.0 10.0 637 ------- null} - -t 0.752288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1265 -a 0 -x {9.0 10.0 637 ------- null} h -t 0.752288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1265 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.752416 -s 0 -d 9 -p ack -e 40 -c 0 -i 1272 -a 0 -x {10.0 9.0 631 ------- null} - -t 0.752416 -s 0 -d 9 -p ack -e 40 -c 0 -i 1272 -a 0 -x {10.0 9.0 631 ------- null} h -t 0.752416 -s 0 -d 9 -p ack -e 40 -c 0 -i 1272 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.752768 -s 10 -d 7 -p ack -e 40 -c 0 -i 1276 -a 0 -x {10.0 9.0 633 ------- null} + -t 0.752768 -s 7 -d 0 -p ack -e 40 -c 0 -i 1276 -a 0 -x {10.0 9.0 633 ------- null} h -t 0.752768 -s 7 -d 8 -p ack -e 40 -c 0 -i 1276 -a 0 -x {10.0 9.0 633 ------- null} r -t 0.752912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1261 -a 0 -x {9.0 10.0 635 ------- null} + -t 0.752912 -s 10 -d 7 -p ack -e 40 -c 0 -i 1280 -a 0 -x {10.0 9.0 635 ------- null} - -t 0.752912 -s 10 -d 7 -p ack -e 40 -c 0 -i 1280 -a 0 -x {10.0 9.0 635 ------- null} h -t 0.752912 -s 10 -d 7 -p ack -e 40 -c 0 -i 1280 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.752928 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1275 -a 0 -x {9.0 10.0 642 ------- null} + -t 0.752928 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1275 -a 0 -x {9.0 10.0 642 ------- null} h -t 0.752928 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1275 -a 0 -x {9.0 10.0 642 ------- null} + -t 0.753376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1267 -a 0 -x {9.0 10.0 638 ------- null} - -t 0.753376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1267 -a 0 -x {9.0 10.0 638 ------- null} h -t 0.753376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1267 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.753456 -s 0 -d 9 -p ack -e 40 -c 0 -i 1270 -a 0 -x {10.0 9.0 630 ------- null} + -t 0.753456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1281 -a 0 -x {9.0 10.0 645 ------- null} - -t 0.753456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1281 -a 0 -x {9.0 10.0 645 ------- null} h -t 0.753456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1281 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.753648 -s 0 -d 9 -p ack -e 40 -c 0 -i 1274 -a 0 -x {10.0 9.0 632 ------- null} - -t 0.753648 -s 0 -d 9 -p ack -e 40 -c 0 -i 1274 -a 0 -x {10.0 9.0 632 ------- null} h -t 0.753648 -s 0 -d 9 -p ack -e 40 -c 0 -i 1274 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.753856 -s 10 -d 7 -p ack -e 40 -c 0 -i 1278 -a 0 -x {10.0 9.0 634 ------- null} + -t 0.753856 -s 7 -d 0 -p ack -e 40 -c 0 -i 1278 -a 0 -x {10.0 9.0 634 ------- null} h -t 0.753856 -s 7 -d 8 -p ack -e 40 -c 0 -i 1278 -a 0 -x {10.0 9.0 634 ------- null} r -t 0.754 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1263 -a 0 -x {9.0 10.0 636 ------- null} + -t 0.754 -s 10 -d 7 -p ack -e 40 -c 0 -i 1282 -a 0 -x {10.0 9.0 636 ------- null} - -t 0.754 -s 10 -d 7 -p ack -e 40 -c 0 -i 1282 -a 0 -x {10.0 9.0 636 ------- null} h -t 0.754 -s 10 -d 7 -p ack -e 40 -c 0 -i 1282 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.75408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1277 -a 0 -x {9.0 10.0 643 ------- null} + -t 0.75408 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1277 -a 0 -x {9.0 10.0 643 ------- null} h -t 0.75408 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1277 -a 0 -x {9.0 10.0 643 ------- null} r -t 0.754448 -s 0 -d 9 -p ack -e 40 -c 0 -i 1272 -a 0 -x {10.0 9.0 631 ------- null} + -t 0.754448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1283 -a 0 -x {9.0 10.0 646 ------- null} - -t 0.754448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1283 -a 0 -x {9.0 10.0 646 ------- null} h -t 0.754448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1283 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.754496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1269 -a 0 -x {9.0 10.0 639 ------- null} - -t 0.754496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1269 -a 0 -x {9.0 10.0 639 ------- null} h -t 0.754496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1269 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.754672 -s 0 -d 9 -p ack -e 40 -c 0 -i 1276 -a 0 -x {10.0 9.0 633 ------- null} - -t 0.754672 -s 0 -d 9 -p ack -e 40 -c 0 -i 1276 -a 0 -x {10.0 9.0 633 ------- null} h -t 0.754672 -s 0 -d 9 -p ack -e 40 -c 0 -i 1276 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.754944 -s 10 -d 7 -p ack -e 40 -c 0 -i 1280 -a 0 -x {10.0 9.0 635 ------- null} + -t 0.754944 -s 7 -d 0 -p ack -e 40 -c 0 -i 1280 -a 0 -x {10.0 9.0 635 ------- null} h -t 0.754944 -s 7 -d 8 -p ack -e 40 -c 0 -i 1280 -a 0 -x {10.0 9.0 635 ------- null} r -t 0.755072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1279 -a 0 -x {9.0 10.0 644 ------- null} + -t 0.755072 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1279 -a 0 -x {9.0 10.0 644 ------- null} h -t 0.755072 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1279 -a 0 -x {9.0 10.0 644 ------- null} r -t 0.755088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1265 -a 0 -x {9.0 10.0 637 ------- null} + -t 0.755088 -s 10 -d 7 -p ack -e 40 -c 0 -i 1284 -a 0 -x {10.0 9.0 637 ------- null} - -t 0.755088 -s 10 -d 7 -p ack -e 40 -c 0 -i 1284 -a 0 -x {10.0 9.0 637 ------- null} h -t 0.755088 -s 10 -d 7 -p ack -e 40 -c 0 -i 1284 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.755584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1271 -a 0 -x {9.0 10.0 640 ------- null} - -t 0.755584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1271 -a 0 -x {9.0 10.0 640 ------- null} h -t 0.755584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1271 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.75568 -s 0 -d 9 -p ack -e 40 -c 0 -i 1274 -a 0 -x {10.0 9.0 632 ------- null} + -t 0.75568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1285 -a 0 -x {9.0 10.0 647 ------- null} - -t 0.75568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1285 -a 0 -x {9.0 10.0 647 ------- null} h -t 0.75568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1285 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.755696 -s 0 -d 9 -p ack -e 40 -c 0 -i 1278 -a 0 -x {10.0 9.0 634 ------- null} - -t 0.755696 -s 0 -d 9 -p ack -e 40 -c 0 -i 1278 -a 0 -x {10.0 9.0 634 ------- null} h -t 0.755696 -s 0 -d 9 -p ack -e 40 -c 0 -i 1278 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.756032 -s 10 -d 7 -p ack -e 40 -c 0 -i 1282 -a 0 -x {10.0 9.0 636 ------- null} + -t 0.756032 -s 7 -d 0 -p ack -e 40 -c 0 -i 1282 -a 0 -x {10.0 9.0 636 ------- null} h -t 0.756032 -s 7 -d 8 -p ack -e 40 -c 0 -i 1282 -a 0 -x {10.0 9.0 636 ------- null} r -t 0.756176 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1267 -a 0 -x {9.0 10.0 638 ------- null} + -t 0.756176 -s 10 -d 7 -p ack -e 40 -c 0 -i 1286 -a 0 -x {10.0 9.0 638 ------- null} - -t 0.756176 -s 10 -d 7 -p ack -e 40 -c 0 -i 1286 -a 0 -x {10.0 9.0 638 ------- null} h -t 0.756176 -s 10 -d 7 -p ack -e 40 -c 0 -i 1286 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.756256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1281 -a 0 -x {9.0 10.0 645 ------- null} + -t 0.756256 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1281 -a 0 -x {9.0 10.0 645 ------- null} h -t 0.756256 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1281 -a 0 -x {9.0 10.0 645 ------- null} + -t 0.756672 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1273 -a 0 -x {9.0 10.0 641 ------- null} - -t 0.756672 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1273 -a 0 -x {9.0 10.0 641 ------- null} h -t 0.756672 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1273 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.756704 -s 0 -d 9 -p ack -e 40 -c 0 -i 1276 -a 0 -x {10.0 9.0 633 ------- null} + -t 0.756704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1287 -a 0 -x {9.0 10.0 648 ------- null} - -t 0.756704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1287 -a 0 -x {9.0 10.0 648 ------- null} h -t 0.756704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1287 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.756864 -s 0 -d 9 -p ack -e 40 -c 0 -i 1280 -a 0 -x {10.0 9.0 635 ------- null} - -t 0.756864 -s 0 -d 9 -p ack -e 40 -c 0 -i 1280 -a 0 -x {10.0 9.0 635 ------- null} h -t 0.756864 -s 0 -d 9 -p ack -e 40 -c 0 -i 1280 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.75712 -s 10 -d 7 -p ack -e 40 -c 0 -i 1284 -a 0 -x {10.0 9.0 637 ------- null} + -t 0.75712 -s 7 -d 0 -p ack -e 40 -c 0 -i 1284 -a 0 -x {10.0 9.0 637 ------- null} h -t 0.75712 -s 7 -d 8 -p ack -e 40 -c 0 -i 1284 -a 0 -x {10.0 9.0 637 ------- null} r -t 0.757248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1283 -a 0 -x {9.0 10.0 646 ------- null} + -t 0.757248 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1283 -a 0 -x {9.0 10.0 646 ------- null} h -t 0.757248 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1283 -a 0 -x {9.0 10.0 646 ------- null} r -t 0.757296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1269 -a 0 -x {9.0 10.0 639 ------- null} + -t 0.757296 -s 10 -d 7 -p ack -e 40 -c 0 -i 1288 -a 0 -x {10.0 9.0 639 ------- null} - -t 0.757296 -s 10 -d 7 -p ack -e 40 -c 0 -i 1288 -a 0 -x {10.0 9.0 639 ------- null} h -t 0.757296 -s 10 -d 7 -p ack -e 40 -c 0 -i 1288 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.757728 -s 0 -d 9 -p ack -e 40 -c 0 -i 1278 -a 0 -x {10.0 9.0 634 ------- null} + -t 0.757728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1289 -a 0 -x {9.0 10.0 649 ------- null} - -t 0.757728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1289 -a 0 -x {9.0 10.0 649 ------- null} h -t 0.757728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1289 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.75776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1275 -a 0 -x {9.0 10.0 642 ------- null} - -t 0.75776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1275 -a 0 -x {9.0 10.0 642 ------- null} h -t 0.75776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1275 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.757968 -s 0 -d 9 -p ack -e 40 -c 0 -i 1282 -a 0 -x {10.0 9.0 636 ------- null} - -t 0.757968 -s 0 -d 9 -p ack -e 40 -c 0 -i 1282 -a 0 -x {10.0 9.0 636 ------- null} h -t 0.757968 -s 0 -d 9 -p ack -e 40 -c 0 -i 1282 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.758208 -s 10 -d 7 -p ack -e 40 -c 0 -i 1286 -a 0 -x {10.0 9.0 638 ------- null} + -t 0.758208 -s 7 -d 0 -p ack -e 40 -c 0 -i 1286 -a 0 -x {10.0 9.0 638 ------- null} h -t 0.758208 -s 7 -d 8 -p ack -e 40 -c 0 -i 1286 -a 0 -x {10.0 9.0 638 ------- null} r -t 0.758384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1271 -a 0 -x {9.0 10.0 640 ------- null} + -t 0.758384 -s 10 -d 7 -p ack -e 40 -c 0 -i 1290 -a 0 -x {10.0 9.0 640 ------- null} - -t 0.758384 -s 10 -d 7 -p ack -e 40 -c 0 -i 1290 -a 0 -x {10.0 9.0 640 ------- null} h -t 0.758384 -s 10 -d 7 -p ack -e 40 -c 0 -i 1290 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.75848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1285 -a 0 -x {9.0 10.0 647 ------- null} + -t 0.75848 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1285 -a 0 -x {9.0 10.0 647 ------- null} h -t 0.75848 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1285 -a 0 -x {9.0 10.0 647 ------- null} + -t 0.758848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1277 -a 0 -x {9.0 10.0 643 ------- null} - -t 0.758848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1277 -a 0 -x {9.0 10.0 643 ------- null} h -t 0.758848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1277 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.758896 -s 0 -d 9 -p ack -e 40 -c 0 -i 1280 -a 0 -x {10.0 9.0 635 ------- null} + -t 0.758896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1291 -a 0 -x {9.0 10.0 650 ------- null} - -t 0.758896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1291 -a 0 -x {9.0 10.0 650 ------- null} h -t 0.758896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1291 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.759136 -s 0 -d 9 -p ack -e 40 -c 0 -i 1284 -a 0 -x {10.0 9.0 637 ------- null} - -t 0.759136 -s 0 -d 9 -p ack -e 40 -c 0 -i 1284 -a 0 -x {10.0 9.0 637 ------- null} h -t 0.759136 -s 0 -d 9 -p ack -e 40 -c 0 -i 1284 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.759328 -s 10 -d 7 -p ack -e 40 -c 0 -i 1288 -a 0 -x {10.0 9.0 639 ------- null} + -t 0.759328 -s 7 -d 0 -p ack -e 40 -c 0 -i 1288 -a 0 -x {10.0 9.0 639 ------- null} h -t 0.759328 -s 7 -d 8 -p ack -e 40 -c 0 -i 1288 -a 0 -x {10.0 9.0 639 ------- null} r -t 0.759472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1273 -a 0 -x {9.0 10.0 641 ------- null} + -t 0.759472 -s 10 -d 7 -p ack -e 40 -c 0 -i 1292 -a 0 -x {10.0 9.0 641 ------- null} - -t 0.759472 -s 10 -d 7 -p ack -e 40 -c 0 -i 1292 -a 0 -x {10.0 9.0 641 ------- null} h -t 0.759472 -s 10 -d 7 -p ack -e 40 -c 0 -i 1292 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.759504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1287 -a 0 -x {9.0 10.0 648 ------- null} + -t 0.759504 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1287 -a 0 -x {9.0 10.0 648 ------- null} h -t 0.759504 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1287 -a 0 -x {9.0 10.0 648 ------- null} r -t 0.76 -s 0 -d 9 -p ack -e 40 -c 0 -i 1282 -a 0 -x {10.0 9.0 636 ------- null} + -t 0.76 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1293 -a 0 -x {9.0 10.0 651 ------- null} - -t 0.76 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1293 -a 0 -x {9.0 10.0 651 ------- null} h -t 0.76 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1293 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.760112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1279 -a 0 -x {9.0 10.0 644 ------- null} - -t 0.760112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1279 -a 0 -x {9.0 10.0 644 ------- null} h -t 0.760112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1279 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.760256 -s 0 -d 9 -p ack -e 40 -c 0 -i 1286 -a 0 -x {10.0 9.0 638 ------- null} - -t 0.760256 -s 0 -d 9 -p ack -e 40 -c 0 -i 1286 -a 0 -x {10.0 9.0 638 ------- null} h -t 0.760256 -s 0 -d 9 -p ack -e 40 -c 0 -i 1286 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.760416 -s 10 -d 7 -p ack -e 40 -c 0 -i 1290 -a 0 -x {10.0 9.0 640 ------- null} + -t 0.760416 -s 7 -d 0 -p ack -e 40 -c 0 -i 1290 -a 0 -x {10.0 9.0 640 ------- null} h -t 0.760416 -s 7 -d 8 -p ack -e 40 -c 0 -i 1290 -a 0 -x {10.0 9.0 640 ------- null} r -t 0.760528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1289 -a 0 -x {9.0 10.0 649 ------- null} + -t 0.760528 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1289 -a 0 -x {9.0 10.0 649 ------- null} h -t 0.760528 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1289 -a 0 -x {9.0 10.0 649 ------- null} r -t 0.76056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1275 -a 0 -x {9.0 10.0 642 ------- null} + -t 0.76056 -s 10 -d 7 -p ack -e 40 -c 0 -i 1294 -a 0 -x {10.0 9.0 642 ------- null} - -t 0.76056 -s 10 -d 7 -p ack -e 40 -c 0 -i 1294 -a 0 -x {10.0 9.0 642 ------- null} h -t 0.76056 -s 10 -d 7 -p ack -e 40 -c 0 -i 1294 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.761168 -s 0 -d 9 -p ack -e 40 -c 0 -i 1284 -a 0 -x {10.0 9.0 637 ------- null} + -t 0.761168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1295 -a 0 -x {9.0 10.0 652 ------- null} - -t 0.761168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1295 -a 0 -x {9.0 10.0 652 ------- null} h -t 0.761168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1295 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.7612 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1281 -a 0 -x {9.0 10.0 645 ------- null} - -t 0.7612 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1281 -a 0 -x {9.0 10.0 645 ------- null} h -t 0.7612 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1281 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.761344 -s 0 -d 9 -p ack -e 40 -c 0 -i 1288 -a 0 -x {10.0 9.0 639 ------- null} - -t 0.761344 -s 0 -d 9 -p ack -e 40 -c 0 -i 1288 -a 0 -x {10.0 9.0 639 ------- null} h -t 0.761344 -s 0 -d 9 -p ack -e 40 -c 0 -i 1288 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.761504 -s 10 -d 7 -p ack -e 40 -c 0 -i 1292 -a 0 -x {10.0 9.0 641 ------- null} + -t 0.761504 -s 7 -d 0 -p ack -e 40 -c 0 -i 1292 -a 0 -x {10.0 9.0 641 ------- null} h -t 0.761504 -s 7 -d 8 -p ack -e 40 -c 0 -i 1292 -a 0 -x {10.0 9.0 641 ------- null} r -t 0.761648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1277 -a 0 -x {9.0 10.0 643 ------- null} + -t 0.761648 -s 10 -d 7 -p ack -e 40 -c 0 -i 1296 -a 0 -x {10.0 9.0 643 ------- null} - -t 0.761648 -s 10 -d 7 -p ack -e 40 -c 0 -i 1296 -a 0 -x {10.0 9.0 643 ------- null} h -t 0.761648 -s 10 -d 7 -p ack -e 40 -c 0 -i 1296 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.761696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1291 -a 0 -x {9.0 10.0 650 ------- null} + -t 0.761696 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1291 -a 0 -x {9.0 10.0 650 ------- null} h -t 0.761696 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1291 -a 0 -x {9.0 10.0 650 ------- null} r -t 0.762288 -s 0 -d 9 -p ack -e 40 -c 0 -i 1286 -a 0 -x {10.0 9.0 638 ------- null} + -t 0.762288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1297 -a 0 -x {9.0 10.0 653 ------- null} - -t 0.762288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1297 -a 0 -x {9.0 10.0 653 ------- null} h -t 0.762288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1297 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.762288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1283 -a 0 -x {9.0 10.0 646 ------- null} - -t 0.762288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1283 -a 0 -x {9.0 10.0 646 ------- null} h -t 0.762288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1283 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.762512 -s 0 -d 9 -p ack -e 40 -c 0 -i 1290 -a 0 -x {10.0 9.0 640 ------- null} - -t 0.762512 -s 0 -d 9 -p ack -e 40 -c 0 -i 1290 -a 0 -x {10.0 9.0 640 ------- null} h -t 0.762512 -s 0 -d 9 -p ack -e 40 -c 0 -i 1290 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.762592 -s 10 -d 7 -p ack -e 40 -c 0 -i 1294 -a 0 -x {10.0 9.0 642 ------- null} + -t 0.762592 -s 7 -d 0 -p ack -e 40 -c 0 -i 1294 -a 0 -x {10.0 9.0 642 ------- null} h -t 0.762592 -s 7 -d 8 -p ack -e 40 -c 0 -i 1294 -a 0 -x {10.0 9.0 642 ------- null} r -t 0.7628 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1293 -a 0 -x {9.0 10.0 651 ------- null} + -t 0.7628 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1293 -a 0 -x {9.0 10.0 651 ------- null} h -t 0.7628 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1293 -a 0 -x {9.0 10.0 651 ------- null} r -t 0.762912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1279 -a 0 -x {9.0 10.0 644 ------- null} + -t 0.762912 -s 10 -d 7 -p ack -e 40 -c 0 -i 1298 -a 0 -x {10.0 9.0 644 ------- null} - -t 0.762912 -s 10 -d 7 -p ack -e 40 -c 0 -i 1298 -a 0 -x {10.0 9.0 644 ------- null} h -t 0.762912 -s 10 -d 7 -p ack -e 40 -c 0 -i 1298 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.763376 -s 0 -d 9 -p ack -e 40 -c 0 -i 1288 -a 0 -x {10.0 9.0 639 ------- null} + -t 0.763376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1299 -a 0 -x {9.0 10.0 654 ------- null} - -t 0.763376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1299 -a 0 -x {9.0 10.0 654 ------- null} h -t 0.763376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1299 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.763376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1285 -a 0 -x {9.0 10.0 647 ------- null} - -t 0.763376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1285 -a 0 -x {9.0 10.0 647 ------- null} h -t 0.763376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1285 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.763504 -s 0 -d 9 -p ack -e 40 -c 0 -i 1292 -a 0 -x {10.0 9.0 641 ------- null} - -t 0.763504 -s 0 -d 9 -p ack -e 40 -c 0 -i 1292 -a 0 -x {10.0 9.0 641 ------- null} h -t 0.763504 -s 0 -d 9 -p ack -e 40 -c 0 -i 1292 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.76368 -s 10 -d 7 -p ack -e 40 -c 0 -i 1296 -a 0 -x {10.0 9.0 643 ------- null} + -t 0.76368 -s 7 -d 0 -p ack -e 40 -c 0 -i 1296 -a 0 -x {10.0 9.0 643 ------- null} h -t 0.76368 -s 7 -d 8 -p ack -e 40 -c 0 -i 1296 -a 0 -x {10.0 9.0 643 ------- null} r -t 0.763968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1295 -a 0 -x {9.0 10.0 652 ------- null} + -t 0.763968 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1295 -a 0 -x {9.0 10.0 652 ------- null} h -t 0.763968 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1295 -a 0 -x {9.0 10.0 652 ------- null} r -t 0.764 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1281 -a 0 -x {9.0 10.0 645 ------- null} + -t 0.764 -s 10 -d 7 -p ack -e 40 -c 0 -i 1300 -a 0 -x {10.0 9.0 645 ------- null} - -t 0.764 -s 10 -d 7 -p ack -e 40 -c 0 -i 1300 -a 0 -x {10.0 9.0 645 ------- null} h -t 0.764 -s 10 -d 7 -p ack -e 40 -c 0 -i 1300 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.764464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1287 -a 0 -x {9.0 10.0 648 ------- null} - -t 0.764464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1287 -a 0 -x {9.0 10.0 648 ------- null} h -t 0.764464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1287 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.764544 -s 0 -d 9 -p ack -e 40 -c 0 -i 1290 -a 0 -x {10.0 9.0 640 ------- null} + -t 0.764544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1301 -a 0 -x {9.0 10.0 655 ------- null} - -t 0.764544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1301 -a 0 -x {9.0 10.0 655 ------- null} h -t 0.764544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1301 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.764592 -s 0 -d 9 -p ack -e 40 -c 0 -i 1294 -a 0 -x {10.0 9.0 642 ------- null} - -t 0.764592 -s 0 -d 9 -p ack -e 40 -c 0 -i 1294 -a 0 -x {10.0 9.0 642 ------- null} h -t 0.764592 -s 0 -d 9 -p ack -e 40 -c 0 -i 1294 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.764944 -s 10 -d 7 -p ack -e 40 -c 0 -i 1298 -a 0 -x {10.0 9.0 644 ------- null} + -t 0.764944 -s 7 -d 0 -p ack -e 40 -c 0 -i 1298 -a 0 -x {10.0 9.0 644 ------- null} h -t 0.764944 -s 7 -d 8 -p ack -e 40 -c 0 -i 1298 -a 0 -x {10.0 9.0 644 ------- null} r -t 0.765088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1297 -a 0 -x {9.0 10.0 653 ------- null} + -t 0.765088 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1297 -a 0 -x {9.0 10.0 653 ------- null} h -t 0.765088 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1297 -a 0 -x {9.0 10.0 653 ------- null} r -t 0.765088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1283 -a 0 -x {9.0 10.0 646 ------- null} + -t 0.765088 -s 10 -d 7 -p ack -e 40 -c 0 -i 1302 -a 0 -x {10.0 9.0 646 ------- null} - -t 0.765088 -s 10 -d 7 -p ack -e 40 -c 0 -i 1302 -a 0 -x {10.0 9.0 646 ------- null} h -t 0.765088 -s 10 -d 7 -p ack -e 40 -c 0 -i 1302 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.765536 -s 0 -d 9 -p ack -e 40 -c 0 -i 1292 -a 0 -x {10.0 9.0 641 ------- null} + -t 0.765536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1303 -a 0 -x {9.0 10.0 656 ------- null} - -t 0.765536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1303 -a 0 -x {9.0 10.0 656 ------- null} h -t 0.765536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1303 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.765552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1289 -a 0 -x {9.0 10.0 649 ------- null} - -t 0.765552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1289 -a 0 -x {9.0 10.0 649 ------- null} h -t 0.765552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1289 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.76584 -s 0 -d 9 -p ack -e 40 -c 0 -i 1296 -a 0 -x {10.0 9.0 643 ------- null} - -t 0.76584 -s 0 -d 9 -p ack -e 40 -c 0 -i 1296 -a 0 -x {10.0 9.0 643 ------- null} h -t 0.76584 -s 0 -d 9 -p ack -e 40 -c 0 -i 1296 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.766032 -s 10 -d 7 -p ack -e 40 -c 0 -i 1300 -a 0 -x {10.0 9.0 645 ------- null} + -t 0.766032 -s 7 -d 0 -p ack -e 40 -c 0 -i 1300 -a 0 -x {10.0 9.0 645 ------- null} h -t 0.766032 -s 7 -d 8 -p ack -e 40 -c 0 -i 1300 -a 0 -x {10.0 9.0 645 ------- null} r -t 0.766176 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1299 -a 0 -x {9.0 10.0 654 ------- null} + -t 0.766176 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1299 -a 0 -x {9.0 10.0 654 ------- null} h -t 0.766176 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1299 -a 0 -x {9.0 10.0 654 ------- null} r -t 0.766176 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1285 -a 0 -x {9.0 10.0 647 ------- null} + -t 0.766176 -s 10 -d 7 -p ack -e 40 -c 0 -i 1304 -a 0 -x {10.0 9.0 647 ------- null} - -t 0.766176 -s 10 -d 7 -p ack -e 40 -c 0 -i 1304 -a 0 -x {10.0 9.0 647 ------- null} h -t 0.766176 -s 10 -d 7 -p ack -e 40 -c 0 -i 1304 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.766624 -s 0 -d 9 -p ack -e 40 -c 0 -i 1294 -a 0 -x {10.0 9.0 642 ------- null} + -t 0.766624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1305 -a 0 -x {9.0 10.0 657 ------- null} - -t 0.766624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1305 -a 0 -x {9.0 10.0 657 ------- null} h -t 0.766624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1305 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.766912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1291 -a 0 -x {9.0 10.0 650 ------- null} - -t 0.766912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1291 -a 0 -x {9.0 10.0 650 ------- null} h -t 0.766912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1291 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.767088 -s 0 -d 9 -p ack -e 40 -c 0 -i 1298 -a 0 -x {10.0 9.0 644 ------- null} - -t 0.767088 -s 0 -d 9 -p ack -e 40 -c 0 -i 1298 -a 0 -x {10.0 9.0 644 ------- null} h -t 0.767088 -s 0 -d 9 -p ack -e 40 -c 0 -i 1298 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.76712 -s 10 -d 7 -p ack -e 40 -c 0 -i 1302 -a 0 -x {10.0 9.0 646 ------- null} + -t 0.76712 -s 7 -d 0 -p ack -e 40 -c 0 -i 1302 -a 0 -x {10.0 9.0 646 ------- null} h -t 0.76712 -s 7 -d 8 -p ack -e 40 -c 0 -i 1302 -a 0 -x {10.0 9.0 646 ------- null} r -t 0.767264 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1287 -a 0 -x {9.0 10.0 648 ------- null} + -t 0.767264 -s 10 -d 7 -p ack -e 40 -c 0 -i 1306 -a 0 -x {10.0 9.0 648 ------- null} - -t 0.767264 -s 10 -d 7 -p ack -e 40 -c 0 -i 1306 -a 0 -x {10.0 9.0 648 ------- null} h -t 0.767264 -s 10 -d 7 -p ack -e 40 -c 0 -i 1306 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.767344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1301 -a 0 -x {9.0 10.0 655 ------- null} + -t 0.767344 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1301 -a 0 -x {9.0 10.0 655 ------- null} h -t 0.767344 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1301 -a 0 -x {9.0 10.0 655 ------- null} r -t 0.767872 -s 0 -d 9 -p ack -e 40 -c 0 -i 1296 -a 0 -x {10.0 9.0 643 ------- null} + -t 0.767872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1307 -a 0 -x {9.0 10.0 658 ------- null} - -t 0.767872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1307 -a 0 -x {9.0 10.0 658 ------- null} h -t 0.767872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1307 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1293 -a 0 -x {9.0 10.0 651 ------- null} - -t 0.768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1293 -a 0 -x {9.0 10.0 651 ------- null} h -t 0.768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1293 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.768208 -s 10 -d 7 -p ack -e 40 -c 0 -i 1304 -a 0 -x {10.0 9.0 647 ------- null} + -t 0.768208 -s 7 -d 0 -p ack -e 40 -c 0 -i 1304 -a 0 -x {10.0 9.0 647 ------- null} h -t 0.768208 -s 7 -d 8 -p ack -e 40 -c 0 -i 1304 -a 0 -x {10.0 9.0 647 ------- null} + -t 0.768208 -s 0 -d 9 -p ack -e 40 -c 0 -i 1300 -a 0 -x {10.0 9.0 645 ------- null} - -t 0.768208 -s 0 -d 9 -p ack -e 40 -c 0 -i 1300 -a 0 -x {10.0 9.0 645 ------- null} h -t 0.768208 -s 0 -d 9 -p ack -e 40 -c 0 -i 1300 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.768336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1303 -a 0 -x {9.0 10.0 656 ------- null} + -t 0.768336 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1303 -a 0 -x {9.0 10.0 656 ------- null} h -t 0.768336 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1303 -a 0 -x {9.0 10.0 656 ------- null} r -t 0.768352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1289 -a 0 -x {9.0 10.0 649 ------- null} + -t 0.768352 -s 10 -d 7 -p ack -e 40 -c 0 -i 1308 -a 0 -x {10.0 9.0 649 ------- null} - -t 0.768352 -s 10 -d 7 -p ack -e 40 -c 0 -i 1308 -a 0 -x {10.0 9.0 649 ------- null} h -t 0.768352 -s 10 -d 7 -p ack -e 40 -c 0 -i 1308 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.769088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1295 -a 0 -x {9.0 10.0 652 ------- null} - -t 0.769088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1295 -a 0 -x {9.0 10.0 652 ------- null} h -t 0.769088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1295 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.76912 -s 0 -d 9 -p ack -e 40 -c 0 -i 1298 -a 0 -x {10.0 9.0 644 ------- null} + -t 0.76912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1309 -a 0 -x {9.0 10.0 659 ------- null} - -t 0.76912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1309 -a 0 -x {9.0 10.0 659 ------- null} h -t 0.76912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1309 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.769296 -s 10 -d 7 -p ack -e 40 -c 0 -i 1306 -a 0 -x {10.0 9.0 648 ------- null} + -t 0.769296 -s 7 -d 0 -p ack -e 40 -c 0 -i 1306 -a 0 -x {10.0 9.0 648 ------- null} h -t 0.769296 -s 7 -d 8 -p ack -e 40 -c 0 -i 1306 -a 0 -x {10.0 9.0 648 ------- null} + -t 0.769376 -s 0 -d 9 -p ack -e 40 -c 0 -i 1302 -a 0 -x {10.0 9.0 646 ------- null} - -t 0.769376 -s 0 -d 9 -p ack -e 40 -c 0 -i 1302 -a 0 -x {10.0 9.0 646 ------- null} h -t 0.769376 -s 0 -d 9 -p ack -e 40 -c 0 -i 1302 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.769424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1305 -a 0 -x {9.0 10.0 657 ------- null} + -t 0.769424 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1305 -a 0 -x {9.0 10.0 657 ------- null} h -t 0.769424 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1305 -a 0 -x {9.0 10.0 657 ------- null} r -t 0.769712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1291 -a 0 -x {9.0 10.0 650 ------- null} + -t 0.769712 -s 10 -d 7 -p ack -e 40 -c 0 -i 1310 -a 0 -x {10.0 9.0 650 ------- null} - -t 0.769712 -s 10 -d 7 -p ack -e 40 -c 0 -i 1310 -a 0 -x {10.0 9.0 650 ------- null} h -t 0.769712 -s 10 -d 7 -p ack -e 40 -c 0 -i 1310 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.77024 -s 0 -d 9 -p ack -e 40 -c 0 -i 1300 -a 0 -x {10.0 9.0 645 ------- null} + -t 0.77024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1311 -a 0 -x {9.0 10.0 660 ------- null} - -t 0.77024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1311 -a 0 -x {9.0 10.0 660 ------- null} h -t 0.77024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1311 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.77024 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1297 -a 0 -x {9.0 10.0 653 ------- null} - -t 0.77024 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1297 -a 0 -x {9.0 10.0 653 ------- null} h -t 0.77024 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1297 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.770384 -s 10 -d 7 -p ack -e 40 -c 0 -i 1308 -a 0 -x {10.0 9.0 649 ------- null} + -t 0.770384 -s 7 -d 0 -p ack -e 40 -c 0 -i 1308 -a 0 -x {10.0 9.0 649 ------- null} h -t 0.770384 -s 7 -d 8 -p ack -e 40 -c 0 -i 1308 -a 0 -x {10.0 9.0 649 ------- null} + -t 0.77048 -s 0 -d 9 -p ack -e 40 -c 0 -i 1304 -a 0 -x {10.0 9.0 647 ------- null} - -t 0.77048 -s 0 -d 9 -p ack -e 40 -c 0 -i 1304 -a 0 -x {10.0 9.0 647 ------- null} h -t 0.77048 -s 0 -d 9 -p ack -e 40 -c 0 -i 1304 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.770672 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1307 -a 0 -x {9.0 10.0 658 ------- null} + -t 0.770672 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1307 -a 0 -x {9.0 10.0 658 ------- null} h -t 0.770672 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1307 -a 0 -x {9.0 10.0 658 ------- null} r -t 0.7708 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1293 -a 0 -x {9.0 10.0 651 ------- null} + -t 0.7708 -s 10 -d 7 -p ack -e 40 -c 0 -i 1312 -a 0 -x {10.0 9.0 651 ------- null} - -t 0.7708 -s 10 -d 7 -p ack -e 40 -c 0 -i 1312 -a 0 -x {10.0 9.0 651 ------- null} h -t 0.7708 -s 10 -d 7 -p ack -e 40 -c 0 -i 1312 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.771328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1299 -a 0 -x {9.0 10.0 654 ------- null} - -t 0.771328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1299 -a 0 -x {9.0 10.0 654 ------- null} h -t 0.771328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1299 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.771408 -s 0 -d 9 -p ack -e 40 -c 0 -i 1302 -a 0 -x {10.0 9.0 646 ------- null} + -t 0.771408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1313 -a 0 -x {9.0 10.0 661 ------- null} - -t 0.771408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1313 -a 0 -x {9.0 10.0 661 ------- null} h -t 0.771408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1313 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.771488 -s 0 -d 9 -p ack -e 40 -c 0 -i 1306 -a 0 -x {10.0 9.0 648 ------- null} - -t 0.771488 -s 0 -d 9 -p ack -e 40 -c 0 -i 1306 -a 0 -x {10.0 9.0 648 ------- null} h -t 0.771488 -s 0 -d 9 -p ack -e 40 -c 0 -i 1306 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.771744 -s 10 -d 7 -p ack -e 40 -c 0 -i 1310 -a 0 -x {10.0 9.0 650 ------- null} + -t 0.771744 -s 7 -d 0 -p ack -e 40 -c 0 -i 1310 -a 0 -x {10.0 9.0 650 ------- null} h -t 0.771744 -s 7 -d 8 -p ack -e 40 -c 0 -i 1310 -a 0 -x {10.0 9.0 650 ------- null} r -t 0.771888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1295 -a 0 -x {9.0 10.0 652 ------- null} + -t 0.771888 -s 10 -d 7 -p ack -e 40 -c 0 -i 1314 -a 0 -x {10.0 9.0 652 ------- null} - -t 0.771888 -s 10 -d 7 -p ack -e 40 -c 0 -i 1314 -a 0 -x {10.0 9.0 652 ------- null} h -t 0.771888 -s 10 -d 7 -p ack -e 40 -c 0 -i 1314 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.77192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1309 -a 0 -x {9.0 10.0 659 ------- null} + -t 0.77192 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1309 -a 0 -x {9.0 10.0 659 ------- null} h -t 0.77192 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1309 -a 0 -x {9.0 10.0 659 ------- null} + -t 0.772416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1301 -a 0 -x {9.0 10.0 655 ------- null} - -t 0.772416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1301 -a 0 -x {9.0 10.0 655 ------- null} h -t 0.772416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1301 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.772496 -s 0 -d 9 -p ack -e 40 -c 0 -i 1308 -a 0 -x {10.0 9.0 649 ------- null} - -t 0.772496 -s 0 -d 9 -p ack -e 40 -c 0 -i 1308 -a 0 -x {10.0 9.0 649 ------- null} h -t 0.772496 -s 0 -d 9 -p ack -e 40 -c 0 -i 1308 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.772512 -s 0 -d 9 -p ack -e 40 -c 0 -i 1304 -a 0 -x {10.0 9.0 647 ------- null} + -t 0.772512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1315 -a 0 -x {9.0 10.0 662 ------- null} - -t 0.772512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1315 -a 0 -x {9.0 10.0 662 ------- null} h -t 0.772512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1315 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.772832 -s 10 -d 7 -p ack -e 40 -c 0 -i 1312 -a 0 -x {10.0 9.0 651 ------- null} + -t 0.772832 -s 7 -d 0 -p ack -e 40 -c 0 -i 1312 -a 0 -x {10.0 9.0 651 ------- null} h -t 0.772832 -s 7 -d 8 -p ack -e 40 -c 0 -i 1312 -a 0 -x {10.0 9.0 651 ------- null} r -t 0.77304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1311 -a 0 -x {9.0 10.0 660 ------- null} + -t 0.77304 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1311 -a 0 -x {9.0 10.0 660 ------- null} h -t 0.77304 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1311 -a 0 -x {9.0 10.0 660 ------- null} r -t 0.77304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1297 -a 0 -x {9.0 10.0 653 ------- null} + -t 0.77304 -s 10 -d 7 -p ack -e 40 -c 0 -i 1316 -a 0 -x {10.0 9.0 653 ------- null} - -t 0.77304 -s 10 -d 7 -p ack -e 40 -c 0 -i 1316 -a 0 -x {10.0 9.0 653 ------- null} h -t 0.77304 -s 10 -d 7 -p ack -e 40 -c 0 -i 1316 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.773504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1303 -a 0 -x {9.0 10.0 656 ------- null} - -t 0.773504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1303 -a 0 -x {9.0 10.0 656 ------- null} h -t 0.773504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1303 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.77352 -s 0 -d 9 -p ack -e 40 -c 0 -i 1306 -a 0 -x {10.0 9.0 648 ------- null} + -t 0.77352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1317 -a 0 -x {9.0 10.0 663 ------- null} - -t 0.77352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1317 -a 0 -x {9.0 10.0 663 ------- null} h -t 0.77352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1317 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.773776 -s 0 -d 9 -p ack -e 40 -c 0 -i 1310 -a 0 -x {10.0 9.0 650 ------- null} - -t 0.773776 -s 0 -d 9 -p ack -e 40 -c 0 -i 1310 -a 0 -x {10.0 9.0 650 ------- null} h -t 0.773776 -s 0 -d 9 -p ack -e 40 -c 0 -i 1310 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.77392 -s 10 -d 7 -p ack -e 40 -c 0 -i 1314 -a 0 -x {10.0 9.0 652 ------- null} + -t 0.77392 -s 7 -d 0 -p ack -e 40 -c 0 -i 1314 -a 0 -x {10.0 9.0 652 ------- null} h -t 0.77392 -s 7 -d 8 -p ack -e 40 -c 0 -i 1314 -a 0 -x {10.0 9.0 652 ------- null} r -t 0.774128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1299 -a 0 -x {9.0 10.0 654 ------- null} + -t 0.774128 -s 10 -d 7 -p ack -e 40 -c 0 -i 1318 -a 0 -x {10.0 9.0 654 ------- null} - -t 0.774128 -s 10 -d 7 -p ack -e 40 -c 0 -i 1318 -a 0 -x {10.0 9.0 654 ------- null} h -t 0.774128 -s 10 -d 7 -p ack -e 40 -c 0 -i 1318 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.774208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1313 -a 0 -x {9.0 10.0 661 ------- null} + -t 0.774208 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1313 -a 0 -x {9.0 10.0 661 ------- null} h -t 0.774208 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1313 -a 0 -x {9.0 10.0 661 ------- null} r -t 0.774528 -s 0 -d 9 -p ack -e 40 -c 0 -i 1308 -a 0 -x {10.0 9.0 649 ------- null} + -t 0.774528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1319 -a 0 -x {9.0 10.0 664 ------- null} - -t 0.774528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1319 -a 0 -x {9.0 10.0 664 ------- null} h -t 0.774528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1319 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.7748 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1305 -a 0 -x {9.0 10.0 657 ------- null} - -t 0.7748 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1305 -a 0 -x {9.0 10.0 657 ------- null} h -t 0.7748 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1305 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.774864 -s 0 -d 9 -p ack -e 40 -c 0 -i 1312 -a 0 -x {10.0 9.0 651 ------- null} - -t 0.774864 -s 0 -d 9 -p ack -e 40 -c 0 -i 1312 -a 0 -x {10.0 9.0 651 ------- null} h -t 0.774864 -s 0 -d 9 -p ack -e 40 -c 0 -i 1312 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.775072 -s 10 -d 7 -p ack -e 40 -c 0 -i 1316 -a 0 -x {10.0 9.0 653 ------- null} + -t 0.775072 -s 7 -d 0 -p ack -e 40 -c 0 -i 1316 -a 0 -x {10.0 9.0 653 ------- null} h -t 0.775072 -s 7 -d 8 -p ack -e 40 -c 0 -i 1316 -a 0 -x {10.0 9.0 653 ------- null} r -t 0.775216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1301 -a 0 -x {9.0 10.0 655 ------- null} + -t 0.775216 -s 10 -d 7 -p ack -e 40 -c 0 -i 1320 -a 0 -x {10.0 9.0 655 ------- null} - -t 0.775216 -s 10 -d 7 -p ack -e 40 -c 0 -i 1320 -a 0 -x {10.0 9.0 655 ------- null} h -t 0.775216 -s 10 -d 7 -p ack -e 40 -c 0 -i 1320 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.775312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1315 -a 0 -x {9.0 10.0 662 ------- null} + -t 0.775312 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1315 -a 0 -x {9.0 10.0 662 ------- null} h -t 0.775312 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1315 -a 0 -x {9.0 10.0 662 ------- null} r -t 0.775808 -s 0 -d 9 -p ack -e 40 -c 0 -i 1310 -a 0 -x {10.0 9.0 650 ------- null} + -t 0.775808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1321 -a 0 -x {9.0 10.0 665 ------- null} - -t 0.775808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1321 -a 0 -x {9.0 10.0 665 ------- null} h -t 0.775808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1321 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.775888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1307 -a 0 -x {9.0 10.0 658 ------- null} - -t 0.775888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1307 -a 0 -x {9.0 10.0 658 ------- null} h -t 0.775888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1307 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.776128 -s 0 -d 9 -p ack -e 40 -c 0 -i 1314 -a 0 -x {10.0 9.0 652 ------- null} - -t 0.776128 -s 0 -d 9 -p ack -e 40 -c 0 -i 1314 -a 0 -x {10.0 9.0 652 ------- null} h -t 0.776128 -s 0 -d 9 -p ack -e 40 -c 0 -i 1314 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.77616 -s 10 -d 7 -p ack -e 40 -c 0 -i 1318 -a 0 -x {10.0 9.0 654 ------- null} + -t 0.77616 -s 7 -d 0 -p ack -e 40 -c 0 -i 1318 -a 0 -x {10.0 9.0 654 ------- null} h -t 0.77616 -s 7 -d 8 -p ack -e 40 -c 0 -i 1318 -a 0 -x {10.0 9.0 654 ------- null} r -t 0.776304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1303 -a 0 -x {9.0 10.0 656 ------- null} + -t 0.776304 -s 10 -d 7 -p ack -e 40 -c 0 -i 1322 -a 0 -x {10.0 9.0 656 ------- null} - -t 0.776304 -s 10 -d 7 -p ack -e 40 -c 0 -i 1322 -a 0 -x {10.0 9.0 656 ------- null} h -t 0.776304 -s 10 -d 7 -p ack -e 40 -c 0 -i 1322 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.77632 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1317 -a 0 -x {9.0 10.0 663 ------- null} + -t 0.77632 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1317 -a 0 -x {9.0 10.0 663 ------- null} h -t 0.77632 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1317 -a 0 -x {9.0 10.0 663 ------- null} r -t 0.776896 -s 0 -d 9 -p ack -e 40 -c 0 -i 1312 -a 0 -x {10.0 9.0 651 ------- null} + -t 0.776896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1323 -a 0 -x {9.0 10.0 666 ------- null} - -t 0.776896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1323 -a 0 -x {9.0 10.0 666 ------- null} h -t 0.776896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1323 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.776976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1309 -a 0 -x {9.0 10.0 659 ------- null} - -t 0.776976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1309 -a 0 -x {9.0 10.0 659 ------- null} h -t 0.776976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1309 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.77704 -s 0 -d 9 -p ack -e 40 -c 0 -i 1316 -a 0 -x {10.0 9.0 653 ------- null} - -t 0.77704 -s 0 -d 9 -p ack -e 40 -c 0 -i 1316 -a 0 -x {10.0 9.0 653 ------- null} h -t 0.77704 -s 0 -d 9 -p ack -e 40 -c 0 -i 1316 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.777248 -s 10 -d 7 -p ack -e 40 -c 0 -i 1320 -a 0 -x {10.0 9.0 655 ------- null} + -t 0.777248 -s 7 -d 0 -p ack -e 40 -c 0 -i 1320 -a 0 -x {10.0 9.0 655 ------- null} h -t 0.777248 -s 7 -d 8 -p ack -e 40 -c 0 -i 1320 -a 0 -x {10.0 9.0 655 ------- null} r -t 0.777328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1319 -a 0 -x {9.0 10.0 664 ------- null} + -t 0.777328 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1319 -a 0 -x {9.0 10.0 664 ------- null} h -t 0.777328 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1319 -a 0 -x {9.0 10.0 664 ------- null} r -t 0.7776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1305 -a 0 -x {9.0 10.0 657 ------- null} + -t 0.7776 -s 10 -d 7 -p ack -e 40 -c 0 -i 1324 -a 0 -x {10.0 9.0 657 ------- null} - -t 0.7776 -s 10 -d 7 -p ack -e 40 -c 0 -i 1324 -a 0 -x {10.0 9.0 657 ------- null} h -t 0.7776 -s 10 -d 7 -p ack -e 40 -c 0 -i 1324 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.778064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1311 -a 0 -x {9.0 10.0 660 ------- null} - -t 0.778064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1311 -a 0 -x {9.0 10.0 660 ------- null} h -t 0.778064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1311 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.77816 -s 0 -d 9 -p ack -e 40 -c 0 -i 1314 -a 0 -x {10.0 9.0 652 ------- null} + -t 0.77816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1325 -a 0 -x {9.0 10.0 667 ------- null} - -t 0.77816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1325 -a 0 -x {9.0 10.0 667 ------- null} h -t 0.77816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1325 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.77824 -s 0 -d 9 -p ack -e 40 -c 0 -i 1318 -a 0 -x {10.0 9.0 654 ------- null} - -t 0.77824 -s 0 -d 9 -p ack -e 40 -c 0 -i 1318 -a 0 -x {10.0 9.0 654 ------- null} h -t 0.77824 -s 0 -d 9 -p ack -e 40 -c 0 -i 1318 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.778336 -s 10 -d 7 -p ack -e 40 -c 0 -i 1322 -a 0 -x {10.0 9.0 656 ------- null} + -t 0.778336 -s 7 -d 0 -p ack -e 40 -c 0 -i 1322 -a 0 -x {10.0 9.0 656 ------- null} h -t 0.778336 -s 7 -d 8 -p ack -e 40 -c 0 -i 1322 -a 0 -x {10.0 9.0 656 ------- null} r -t 0.778608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1321 -a 0 -x {9.0 10.0 665 ------- null} + -t 0.778608 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1321 -a 0 -x {9.0 10.0 665 ------- null} h -t 0.778608 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1321 -a 0 -x {9.0 10.0 665 ------- null} r -t 0.778688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1307 -a 0 -x {9.0 10.0 658 ------- null} + -t 0.778688 -s 10 -d 7 -p ack -e 40 -c 0 -i 1326 -a 0 -x {10.0 9.0 658 ------- null} - -t 0.778688 -s 10 -d 7 -p ack -e 40 -c 0 -i 1326 -a 0 -x {10.0 9.0 658 ------- null} h -t 0.778688 -s 10 -d 7 -p ack -e 40 -c 0 -i 1326 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.779072 -s 0 -d 9 -p ack -e 40 -c 0 -i 1316 -a 0 -x {10.0 9.0 653 ------- null} + -t 0.779072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1327 -a 0 -x {9.0 10.0 668 ------- null} - -t 0.779072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1327 -a 0 -x {9.0 10.0 668 ------- null} h -t 0.779072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1327 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.779152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1313 -a 0 -x {9.0 10.0 661 ------- null} - -t 0.779152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1313 -a 0 -x {9.0 10.0 661 ------- null} h -t 0.779152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1313 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.77928 -s 0 -d 9 -p ack -e 40 -c 0 -i 1320 -a 0 -x {10.0 9.0 655 ------- null} - -t 0.77928 -s 0 -d 9 -p ack -e 40 -c 0 -i 1320 -a 0 -x {10.0 9.0 655 ------- null} h -t 0.77928 -s 0 -d 9 -p ack -e 40 -c 0 -i 1320 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.779632 -s 10 -d 7 -p ack -e 40 -c 0 -i 1324 -a 0 -x {10.0 9.0 657 ------- null} + -t 0.779632 -s 7 -d 0 -p ack -e 40 -c 0 -i 1324 -a 0 -x {10.0 9.0 657 ------- null} h -t 0.779632 -s 7 -d 8 -p ack -e 40 -c 0 -i 1324 -a 0 -x {10.0 9.0 657 ------- null} r -t 0.779696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1323 -a 0 -x {9.0 10.0 666 ------- null} + -t 0.779696 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1323 -a 0 -x {9.0 10.0 666 ------- null} h -t 0.779696 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1323 -a 0 -x {9.0 10.0 666 ------- null} r -t 0.779776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1309 -a 0 -x {9.0 10.0 659 ------- null} + -t 0.779776 -s 10 -d 7 -p ack -e 40 -c 0 -i 1328 -a 0 -x {10.0 9.0 659 ------- null} - -t 0.779776 -s 10 -d 7 -p ack -e 40 -c 0 -i 1328 -a 0 -x {10.0 9.0 659 ------- null} h -t 0.779776 -s 10 -d 7 -p ack -e 40 -c 0 -i 1328 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.78024 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1315 -a 0 -x {9.0 10.0 662 ------- null} - -t 0.78024 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1315 -a 0 -x {9.0 10.0 662 ------- null} h -t 0.78024 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1315 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.780272 -s 0 -d 9 -p ack -e 40 -c 0 -i 1318 -a 0 -x {10.0 9.0 654 ------- null} + -t 0.780272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1329 -a 0 -x {9.0 10.0 669 ------- null} - -t 0.780272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1329 -a 0 -x {9.0 10.0 669 ------- null} h -t 0.780272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1329 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.7804 -s 0 -d 9 -p ack -e 40 -c 0 -i 1322 -a 0 -x {10.0 9.0 656 ------- null} - -t 0.7804 -s 0 -d 9 -p ack -e 40 -c 0 -i 1322 -a 0 -x {10.0 9.0 656 ------- null} h -t 0.7804 -s 0 -d 9 -p ack -e 40 -c 0 -i 1322 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.78072 -s 10 -d 7 -p ack -e 40 -c 0 -i 1326 -a 0 -x {10.0 9.0 658 ------- null} + -t 0.78072 -s 7 -d 0 -p ack -e 40 -c 0 -i 1326 -a 0 -x {10.0 9.0 658 ------- null} h -t 0.78072 -s 7 -d 8 -p ack -e 40 -c 0 -i 1326 -a 0 -x {10.0 9.0 658 ------- null} r -t 0.780864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1311 -a 0 -x {9.0 10.0 660 ------- null} + -t 0.780864 -s 10 -d 7 -p ack -e 40 -c 0 -i 1330 -a 0 -x {10.0 9.0 660 ------- null} - -t 0.780864 -s 10 -d 7 -p ack -e 40 -c 0 -i 1330 -a 0 -x {10.0 9.0 660 ------- null} h -t 0.780864 -s 10 -d 7 -p ack -e 40 -c 0 -i 1330 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.78096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1325 -a 0 -x {9.0 10.0 667 ------- null} + -t 0.78096 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1325 -a 0 -x {9.0 10.0 667 ------- null} h -t 0.78096 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1325 -a 0 -x {9.0 10.0 667 ------- null} r -t 0.781312 -s 0 -d 9 -p ack -e 40 -c 0 -i 1320 -a 0 -x {10.0 9.0 655 ------- null} + -t 0.781312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1331 -a 0 -x {9.0 10.0 670 ------- null} - -t 0.781312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1331 -a 0 -x {9.0 10.0 670 ------- null} h -t 0.781312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1331 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.781328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1317 -a 0 -x {9.0 10.0 663 ------- null} - -t 0.781328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1317 -a 0 -x {9.0 10.0 663 ------- null} h -t 0.781328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1317 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.78152 -s 0 -d 9 -p ack -e 40 -c 0 -i 1324 -a 0 -x {10.0 9.0 657 ------- null} - -t 0.78152 -s 0 -d 9 -p ack -e 40 -c 0 -i 1324 -a 0 -x {10.0 9.0 657 ------- null} h -t 0.78152 -s 0 -d 9 -p ack -e 40 -c 0 -i 1324 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.781808 -s 10 -d 7 -p ack -e 40 -c 0 -i 1328 -a 0 -x {10.0 9.0 659 ------- null} + -t 0.781808 -s 7 -d 0 -p ack -e 40 -c 0 -i 1328 -a 0 -x {10.0 9.0 659 ------- null} h -t 0.781808 -s 7 -d 8 -p ack -e 40 -c 0 -i 1328 -a 0 -x {10.0 9.0 659 ------- null} r -t 0.781872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1327 -a 0 -x {9.0 10.0 668 ------- null} + -t 0.781872 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1327 -a 0 -x {9.0 10.0 668 ------- null} h -t 0.781872 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1327 -a 0 -x {9.0 10.0 668 ------- null} r -t 0.781952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1313 -a 0 -x {9.0 10.0 661 ------- null} + -t 0.781952 -s 10 -d 7 -p ack -e 40 -c 0 -i 1332 -a 0 -x {10.0 9.0 661 ------- null} - -t 0.781952 -s 10 -d 7 -p ack -e 40 -c 0 -i 1332 -a 0 -x {10.0 9.0 661 ------- null} h -t 0.781952 -s 10 -d 7 -p ack -e 40 -c 0 -i 1332 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.782416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1319 -a 0 -x {9.0 10.0 664 ------- null} - -t 0.782416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1319 -a 0 -x {9.0 10.0 664 ------- null} h -t 0.782416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1319 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.782432 -s 0 -d 9 -p ack -e 40 -c 0 -i 1322 -a 0 -x {10.0 9.0 656 ------- null} + -t 0.782432 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1333 -a 0 -x {9.0 10.0 671 ------- null} - -t 0.782432 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1333 -a 0 -x {9.0 10.0 671 ------- null} h -t 0.782432 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1333 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.78248 -s 0 -d 9 -p ack -e 40 -c 0 -i 1326 -a 0 -x {10.0 9.0 658 ------- null} - -t 0.78248 -s 0 -d 9 -p ack -e 40 -c 0 -i 1326 -a 0 -x {10.0 9.0 658 ------- null} h -t 0.78248 -s 0 -d 9 -p ack -e 40 -c 0 -i 1326 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.782896 -s 10 -d 7 -p ack -e 40 -c 0 -i 1330 -a 0 -x {10.0 9.0 660 ------- null} + -t 0.782896 -s 7 -d 0 -p ack -e 40 -c 0 -i 1330 -a 0 -x {10.0 9.0 660 ------- null} h -t 0.782896 -s 7 -d 8 -p ack -e 40 -c 0 -i 1330 -a 0 -x {10.0 9.0 660 ------- null} r -t 0.78304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1315 -a 0 -x {9.0 10.0 662 ------- null} + -t 0.78304 -s 10 -d 7 -p ack -e 40 -c 0 -i 1334 -a 0 -x {10.0 9.0 662 ------- null} - -t 0.78304 -s 10 -d 7 -p ack -e 40 -c 0 -i 1334 -a 0 -x {10.0 9.0 662 ------- null} h -t 0.78304 -s 10 -d 7 -p ack -e 40 -c 0 -i 1334 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.783072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1329 -a 0 -x {9.0 10.0 669 ------- null} + -t 0.783072 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1329 -a 0 -x {9.0 10.0 669 ------- null} h -t 0.783072 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1329 -a 0 -x {9.0 10.0 669 ------- null} + -t 0.783504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1321 -a 0 -x {9.0 10.0 665 ------- null} - -t 0.783504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1321 -a 0 -x {9.0 10.0 665 ------- null} h -t 0.783504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1321 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.783552 -s 0 -d 9 -p ack -e 40 -c 0 -i 1324 -a 0 -x {10.0 9.0 657 ------- null} + -t 0.783552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1335 -a 0 -x {9.0 10.0 672 ------- null} - -t 0.783552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1335 -a 0 -x {9.0 10.0 672 ------- null} h -t 0.783552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1335 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.783664 -s 0 -d 9 -p ack -e 40 -c 0 -i 1328 -a 0 -x {10.0 9.0 659 ------- null} - -t 0.783664 -s 0 -d 9 -p ack -e 40 -c 0 -i 1328 -a 0 -x {10.0 9.0 659 ------- null} h -t 0.783664 -s 0 -d 9 -p ack -e 40 -c 0 -i 1328 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.783984 -s 10 -d 7 -p ack -e 40 -c 0 -i 1332 -a 0 -x {10.0 9.0 661 ------- null} + -t 0.783984 -s 7 -d 0 -p ack -e 40 -c 0 -i 1332 -a 0 -x {10.0 9.0 661 ------- null} h -t 0.783984 -s 7 -d 8 -p ack -e 40 -c 0 -i 1332 -a 0 -x {10.0 9.0 661 ------- null} r -t 0.784112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1331 -a 0 -x {9.0 10.0 670 ------- null} + -t 0.784112 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1331 -a 0 -x {9.0 10.0 670 ------- null} h -t 0.784112 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1331 -a 0 -x {9.0 10.0 670 ------- null} r -t 0.784128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1317 -a 0 -x {9.0 10.0 663 ------- null} + -t 0.784128 -s 10 -d 7 -p ack -e 40 -c 0 -i 1336 -a 0 -x {10.0 9.0 663 ------- null} - -t 0.784128 -s 10 -d 7 -p ack -e 40 -c 0 -i 1336 -a 0 -x {10.0 9.0 663 ------- null} h -t 0.784128 -s 10 -d 7 -p ack -e 40 -c 0 -i 1336 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.784512 -s 0 -d 9 -p ack -e 40 -c 0 -i 1326 -a 0 -x {10.0 9.0 658 ------- null} + -t 0.784512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1337 -a 0 -x {9.0 10.0 673 ------- null} - -t 0.784512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1337 -a 0 -x {9.0 10.0 673 ------- null} h -t 0.784512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1337 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.784592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1323 -a 0 -x {9.0 10.0 666 ------- null} - -t 0.784592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1323 -a 0 -x {9.0 10.0 666 ------- null} h -t 0.784592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1323 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.78472 -s 0 -d 9 -p ack -e 40 -c 0 -i 1330 -a 0 -x {10.0 9.0 660 ------- null} - -t 0.78472 -s 0 -d 9 -p ack -e 40 -c 0 -i 1330 -a 0 -x {10.0 9.0 660 ------- null} h -t 0.78472 -s 0 -d 9 -p ack -e 40 -c 0 -i 1330 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.785072 -s 10 -d 7 -p ack -e 40 -c 0 -i 1334 -a 0 -x {10.0 9.0 662 ------- null} + -t 0.785072 -s 7 -d 0 -p ack -e 40 -c 0 -i 1334 -a 0 -x {10.0 9.0 662 ------- null} h -t 0.785072 -s 7 -d 8 -p ack -e 40 -c 0 -i 1334 -a 0 -x {10.0 9.0 662 ------- null} r -t 0.785216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1319 -a 0 -x {9.0 10.0 664 ------- null} + -t 0.785216 -s 10 -d 7 -p ack -e 40 -c 0 -i 1338 -a 0 -x {10.0 9.0 664 ------- null} - -t 0.785216 -s 10 -d 7 -p ack -e 40 -c 0 -i 1338 -a 0 -x {10.0 9.0 664 ------- null} h -t 0.785216 -s 10 -d 7 -p ack -e 40 -c 0 -i 1338 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.785232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1333 -a 0 -x {9.0 10.0 671 ------- null} + -t 0.785232 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1333 -a 0 -x {9.0 10.0 671 ------- null} h -t 0.785232 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1333 -a 0 -x {9.0 10.0 671 ------- null} + -t 0.78568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1325 -a 0 -x {9.0 10.0 667 ------- null} - -t 0.78568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1325 -a 0 -x {9.0 10.0 667 ------- null} h -t 0.78568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1325 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.785696 -s 0 -d 9 -p ack -e 40 -c 0 -i 1328 -a 0 -x {10.0 9.0 659 ------- null} + -t 0.785696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1339 -a 0 -x {9.0 10.0 674 ------- null} - -t 0.785696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1339 -a 0 -x {9.0 10.0 674 ------- null} h -t 0.785696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1339 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.78584 -s 0 -d 9 -p ack -e 40 -c 0 -i 1332 -a 0 -x {10.0 9.0 661 ------- null} - -t 0.78584 -s 0 -d 9 -p ack -e 40 -c 0 -i 1332 -a 0 -x {10.0 9.0 661 ------- null} h -t 0.78584 -s 0 -d 9 -p ack -e 40 -c 0 -i 1332 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.78616 -s 10 -d 7 -p ack -e 40 -c 0 -i 1336 -a 0 -x {10.0 9.0 663 ------- null} + -t 0.78616 -s 7 -d 0 -p ack -e 40 -c 0 -i 1336 -a 0 -x {10.0 9.0 663 ------- null} h -t 0.78616 -s 7 -d 8 -p ack -e 40 -c 0 -i 1336 -a 0 -x {10.0 9.0 663 ------- null} r -t 0.786304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1321 -a 0 -x {9.0 10.0 665 ------- null} + -t 0.786304 -s 10 -d 7 -p ack -e 40 -c 0 -i 1340 -a 0 -x {10.0 9.0 665 ------- null} - -t 0.786304 -s 10 -d 7 -p ack -e 40 -c 0 -i 1340 -a 0 -x {10.0 9.0 665 ------- null} h -t 0.786304 -s 10 -d 7 -p ack -e 40 -c 0 -i 1340 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.786352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1335 -a 0 -x {9.0 10.0 672 ------- null} + -t 0.786352 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1335 -a 0 -x {9.0 10.0 672 ------- null} h -t 0.786352 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1335 -a 0 -x {9.0 10.0 672 ------- null} r -t 0.786752 -s 0 -d 9 -p ack -e 40 -c 0 -i 1330 -a 0 -x {10.0 9.0 660 ------- null} + -t 0.786752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1341 -a 0 -x {9.0 10.0 675 ------- null} - -t 0.786752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1341 -a 0 -x {9.0 10.0 675 ------- null} h -t 0.786752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1341 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.786768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1327 -a 0 -x {9.0 10.0 668 ------- null} - -t 0.786768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1327 -a 0 -x {9.0 10.0 668 ------- null} h -t 0.786768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1327 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.786928 -s 0 -d 9 -p ack -e 40 -c 0 -i 1334 -a 0 -x {10.0 9.0 662 ------- null} - -t 0.786928 -s 0 -d 9 -p ack -e 40 -c 0 -i 1334 -a 0 -x {10.0 9.0 662 ------- null} h -t 0.786928 -s 0 -d 9 -p ack -e 40 -c 0 -i 1334 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.787248 -s 10 -d 7 -p ack -e 40 -c 0 -i 1338 -a 0 -x {10.0 9.0 664 ------- null} + -t 0.787248 -s 7 -d 0 -p ack -e 40 -c 0 -i 1338 -a 0 -x {10.0 9.0 664 ------- null} h -t 0.787248 -s 7 -d 8 -p ack -e 40 -c 0 -i 1338 -a 0 -x {10.0 9.0 664 ------- null} r -t 0.787312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1337 -a 0 -x {9.0 10.0 673 ------- null} + -t 0.787312 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1337 -a 0 -x {9.0 10.0 673 ------- null} h -t 0.787312 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1337 -a 0 -x {9.0 10.0 673 ------- null} r -t 0.787392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1323 -a 0 -x {9.0 10.0 666 ------- null} + -t 0.787392 -s 10 -d 7 -p ack -e 40 -c 0 -i 1342 -a 0 -x {10.0 9.0 666 ------- null} - -t 0.787392 -s 10 -d 7 -p ack -e 40 -c 0 -i 1342 -a 0 -x {10.0 9.0 666 ------- null} h -t 0.787392 -s 10 -d 7 -p ack -e 40 -c 0 -i 1342 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.787856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1329 -a 0 -x {9.0 10.0 669 ------- null} - -t 0.787856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1329 -a 0 -x {9.0 10.0 669 ------- null} h -t 0.787856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1329 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.787872 -s 0 -d 9 -p ack -e 40 -c 0 -i 1332 -a 0 -x {10.0 9.0 661 ------- null} + -t 0.787872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1343 -a 0 -x {9.0 10.0 676 ------- null} - -t 0.787872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1343 -a 0 -x {9.0 10.0 676 ------- null} h -t 0.787872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1343 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.788 -s 0 -d 9 -p ack -e 40 -c 0 -i 1336 -a 0 -x {10.0 9.0 663 ------- null} - -t 0.788 -s 0 -d 9 -p ack -e 40 -c 0 -i 1336 -a 0 -x {10.0 9.0 663 ------- null} h -t 0.788 -s 0 -d 9 -p ack -e 40 -c 0 -i 1336 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.788336 -s 10 -d 7 -p ack -e 40 -c 0 -i 1340 -a 0 -x {10.0 9.0 665 ------- null} + -t 0.788336 -s 7 -d 0 -p ack -e 40 -c 0 -i 1340 -a 0 -x {10.0 9.0 665 ------- null} h -t 0.788336 -s 7 -d 8 -p ack -e 40 -c 0 -i 1340 -a 0 -x {10.0 9.0 665 ------- null} r -t 0.78848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1325 -a 0 -x {9.0 10.0 667 ------- null} + -t 0.78848 -s 10 -d 7 -p ack -e 40 -c 0 -i 1344 -a 0 -x {10.0 9.0 667 ------- null} - -t 0.78848 -s 10 -d 7 -p ack -e 40 -c 0 -i 1344 -a 0 -x {10.0 9.0 667 ------- null} h -t 0.78848 -s 10 -d 7 -p ack -e 40 -c 0 -i 1344 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.788496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1339 -a 0 -x {9.0 10.0 674 ------- null} + -t 0.788496 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1339 -a 0 -x {9.0 10.0 674 ------- null} h -t 0.788496 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1339 -a 0 -x {9.0 10.0 674 ------- null} + -t 0.788944 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1331 -a 0 -x {9.0 10.0 670 ------- null} - -t 0.788944 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1331 -a 0 -x {9.0 10.0 670 ------- null} h -t 0.788944 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1331 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.78896 -s 0 -d 9 -p ack -e 40 -c 0 -i 1334 -a 0 -x {10.0 9.0 662 ------- null} + -t 0.78896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1345 -a 0 -x {9.0 10.0 677 ------- null} - -t 0.78896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1345 -a 0 -x {9.0 10.0 677 ------- null} h -t 0.78896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1345 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.789248 -s 0 -d 9 -p ack -e 40 -c 0 -i 1338 -a 0 -x {10.0 9.0 664 ------- null} - -t 0.789248 -s 0 -d 9 -p ack -e 40 -c 0 -i 1338 -a 0 -x {10.0 9.0 664 ------- null} h -t 0.789248 -s 0 -d 9 -p ack -e 40 -c 0 -i 1338 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.789424 -s 10 -d 7 -p ack -e 40 -c 0 -i 1342 -a 0 -x {10.0 9.0 666 ------- null} + -t 0.789424 -s 7 -d 0 -p ack -e 40 -c 0 -i 1342 -a 0 -x {10.0 9.0 666 ------- null} h -t 0.789424 -s 7 -d 8 -p ack -e 40 -c 0 -i 1342 -a 0 -x {10.0 9.0 666 ------- null} r -t 0.789552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1341 -a 0 -x {9.0 10.0 675 ------- null} + -t 0.789552 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1341 -a 0 -x {9.0 10.0 675 ------- null} h -t 0.789552 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1341 -a 0 -x {9.0 10.0 675 ------- null} r -t 0.789568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1327 -a 0 -x {9.0 10.0 668 ------- null} + -t 0.789568 -s 10 -d 7 -p ack -e 40 -c 0 -i 1346 -a 0 -x {10.0 9.0 668 ------- null} - -t 0.789568 -s 10 -d 7 -p ack -e 40 -c 0 -i 1346 -a 0 -x {10.0 9.0 668 ------- null} h -t 0.789568 -s 10 -d 7 -p ack -e 40 -c 0 -i 1346 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.790032 -s 0 -d 9 -p ack -e 40 -c 0 -i 1336 -a 0 -x {10.0 9.0 663 ------- null} + -t 0.790032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1347 -a 0 -x {9.0 10.0 678 ------- null} - -t 0.790032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1347 -a 0 -x {9.0 10.0 678 ------- null} h -t 0.790032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1347 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.790288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1333 -a 0 -x {9.0 10.0 671 ------- null} - -t 0.790288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1333 -a 0 -x {9.0 10.0 671 ------- null} h -t 0.790288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1333 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.7904 -s 0 -d 9 -p ack -e 40 -c 0 -i 1340 -a 0 -x {10.0 9.0 665 ------- null} - -t 0.7904 -s 0 -d 9 -p ack -e 40 -c 0 -i 1340 -a 0 -x {10.0 9.0 665 ------- null} h -t 0.7904 -s 0 -d 9 -p ack -e 40 -c 0 -i 1340 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.790512 -s 10 -d 7 -p ack -e 40 -c 0 -i 1344 -a 0 -x {10.0 9.0 667 ------- null} + -t 0.790512 -s 7 -d 0 -p ack -e 40 -c 0 -i 1344 -a 0 -x {10.0 9.0 667 ------- null} h -t 0.790512 -s 7 -d 8 -p ack -e 40 -c 0 -i 1344 -a 0 -x {10.0 9.0 667 ------- null} r -t 0.790656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1329 -a 0 -x {9.0 10.0 669 ------- null} + -t 0.790656 -s 10 -d 7 -p ack -e 40 -c 0 -i 1348 -a 0 -x {10.0 9.0 669 ------- null} - -t 0.790656 -s 10 -d 7 -p ack -e 40 -c 0 -i 1348 -a 0 -x {10.0 9.0 669 ------- null} h -t 0.790656 -s 10 -d 7 -p ack -e 40 -c 0 -i 1348 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.790672 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1343 -a 0 -x {9.0 10.0 676 ------- null} + -t 0.790672 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1343 -a 0 -x {9.0 10.0 676 ------- null} h -t 0.790672 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1343 -a 0 -x {9.0 10.0 676 ------- null} r -t 0.79128 -s 0 -d 9 -p ack -e 40 -c 0 -i 1338 -a 0 -x {10.0 9.0 664 ------- null} + -t 0.79128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1349 -a 0 -x {9.0 10.0 679 ------- null} - -t 0.79128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1349 -a 0 -x {9.0 10.0 679 ------- null} h -t 0.79128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1349 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.791376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1335 -a 0 -x {9.0 10.0 672 ------- null} - -t 0.791376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1335 -a 0 -x {9.0 10.0 672 ------- null} h -t 0.791376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1335 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.79152 -s 0 -d 9 -p ack -e 40 -c 0 -i 1342 -a 0 -x {10.0 9.0 666 ------- null} - -t 0.79152 -s 0 -d 9 -p ack -e 40 -c 0 -i 1342 -a 0 -x {10.0 9.0 666 ------- null} h -t 0.79152 -s 0 -d 9 -p ack -e 40 -c 0 -i 1342 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.7916 -s 10 -d 7 -p ack -e 40 -c 0 -i 1346 -a 0 -x {10.0 9.0 668 ------- null} + -t 0.7916 -s 7 -d 0 -p ack -e 40 -c 0 -i 1346 -a 0 -x {10.0 9.0 668 ------- null} h -t 0.7916 -s 7 -d 8 -p ack -e 40 -c 0 -i 1346 -a 0 -x {10.0 9.0 668 ------- null} r -t 0.791744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1331 -a 0 -x {9.0 10.0 670 ------- null} + -t 0.791744 -s 10 -d 7 -p ack -e 40 -c 0 -i 1350 -a 0 -x {10.0 9.0 670 ------- null} - -t 0.791744 -s 10 -d 7 -p ack -e 40 -c 0 -i 1350 -a 0 -x {10.0 9.0 670 ------- null} h -t 0.791744 -s 10 -d 7 -p ack -e 40 -c 0 -i 1350 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.79176 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1345 -a 0 -x {9.0 10.0 677 ------- null} + -t 0.79176 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1345 -a 0 -x {9.0 10.0 677 ------- null} h -t 0.79176 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1345 -a 0 -x {9.0 10.0 677 ------- null} r -t 0.792432 -s 0 -d 9 -p ack -e 40 -c 0 -i 1340 -a 0 -x {10.0 9.0 665 ------- null} + -t 0.792432 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1351 -a 0 -x {9.0 10.0 680 ------- null} - -t 0.792432 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1351 -a 0 -x {9.0 10.0 680 ------- null} h -t 0.792432 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1351 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.792464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1337 -a 0 -x {9.0 10.0 673 ------- null} - -t 0.792464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1337 -a 0 -x {9.0 10.0 673 ------- null} h -t 0.792464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1337 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.792608 -s 0 -d 9 -p ack -e 40 -c 0 -i 1344 -a 0 -x {10.0 9.0 667 ------- null} - -t 0.792608 -s 0 -d 9 -p ack -e 40 -c 0 -i 1344 -a 0 -x {10.0 9.0 667 ------- null} h -t 0.792608 -s 0 -d 9 -p ack -e 40 -c 0 -i 1344 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.792688 -s 10 -d 7 -p ack -e 40 -c 0 -i 1348 -a 0 -x {10.0 9.0 669 ------- null} + -t 0.792688 -s 7 -d 0 -p ack -e 40 -c 0 -i 1348 -a 0 -x {10.0 9.0 669 ------- null} h -t 0.792688 -s 7 -d 8 -p ack -e 40 -c 0 -i 1348 -a 0 -x {10.0 9.0 669 ------- null} r -t 0.792832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1347 -a 0 -x {9.0 10.0 678 ------- null} + -t 0.792832 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1347 -a 0 -x {9.0 10.0 678 ------- null} h -t 0.792832 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1347 -a 0 -x {9.0 10.0 678 ------- null} r -t 0.793088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1333 -a 0 -x {9.0 10.0 671 ------- null} + -t 0.793088 -s 10 -d 7 -p ack -e 40 -c 0 -i 1352 -a 0 -x {10.0 9.0 671 ------- null} - -t 0.793088 -s 10 -d 7 -p ack -e 40 -c 0 -i 1352 -a 0 -x {10.0 9.0 671 ------- null} h -t 0.793088 -s 10 -d 7 -p ack -e 40 -c 0 -i 1352 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.793552 -s 0 -d 9 -p ack -e 40 -c 0 -i 1342 -a 0 -x {10.0 9.0 666 ------- null} + -t 0.793552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1353 -a 0 -x {9.0 10.0 681 ------- null} - -t 0.793552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1353 -a 0 -x {9.0 10.0 681 ------- null} h -t 0.793552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1353 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.793552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1339 -a 0 -x {9.0 10.0 674 ------- null} - -t 0.793552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1339 -a 0 -x {9.0 10.0 674 ------- null} h -t 0.793552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1339 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.793632 -s 0 -d 9 -p ack -e 40 -c 0 -i 1346 -a 0 -x {10.0 9.0 668 ------- null} - -t 0.793632 -s 0 -d 9 -p ack -e 40 -c 0 -i 1346 -a 0 -x {10.0 9.0 668 ------- null} h -t 0.793632 -s 0 -d 9 -p ack -e 40 -c 0 -i 1346 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.793776 -s 10 -d 7 -p ack -e 40 -c 0 -i 1350 -a 0 -x {10.0 9.0 670 ------- null} + -t 0.793776 -s 7 -d 0 -p ack -e 40 -c 0 -i 1350 -a 0 -x {10.0 9.0 670 ------- null} h -t 0.793776 -s 7 -d 8 -p ack -e 40 -c 0 -i 1350 -a 0 -x {10.0 9.0 670 ------- null} r -t 0.79408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1349 -a 0 -x {9.0 10.0 679 ------- null} + -t 0.79408 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1349 -a 0 -x {9.0 10.0 679 ------- null} h -t 0.79408 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1349 -a 0 -x {9.0 10.0 679 ------- null} r -t 0.794176 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1335 -a 0 -x {9.0 10.0 672 ------- null} + -t 0.794176 -s 10 -d 7 -p ack -e 40 -c 0 -i 1354 -a 0 -x {10.0 9.0 672 ------- null} - -t 0.794176 -s 10 -d 7 -p ack -e 40 -c 0 -i 1354 -a 0 -x {10.0 9.0 672 ------- null} h -t 0.794176 -s 10 -d 7 -p ack -e 40 -c 0 -i 1354 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.79464 -s 0 -d 9 -p ack -e 40 -c 0 -i 1344 -a 0 -x {10.0 9.0 667 ------- null} + -t 0.79464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1355 -a 0 -x {9.0 10.0 682 ------- null} - -t 0.79464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1355 -a 0 -x {9.0 10.0 682 ------- null} h -t 0.79464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1355 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.79464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1341 -a 0 -x {9.0 10.0 675 ------- null} - -t 0.79464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1341 -a 0 -x {9.0 10.0 675 ------- null} h -t 0.79464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1341 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.794848 -s 0 -d 9 -p ack -e 40 -c 0 -i 1348 -a 0 -x {10.0 9.0 669 ------- null} - -t 0.794848 -s 0 -d 9 -p ack -e 40 -c 0 -i 1348 -a 0 -x {10.0 9.0 669 ------- null} h -t 0.794848 -s 0 -d 9 -p ack -e 40 -c 0 -i 1348 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.79512 -s 10 -d 7 -p ack -e 40 -c 0 -i 1352 -a 0 -x {10.0 9.0 671 ------- null} + -t 0.79512 -s 7 -d 0 -p ack -e 40 -c 0 -i 1352 -a 0 -x {10.0 9.0 671 ------- null} h -t 0.79512 -s 7 -d 8 -p ack -e 40 -c 0 -i 1352 -a 0 -x {10.0 9.0 671 ------- null} r -t 0.795232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1351 -a 0 -x {9.0 10.0 680 ------- null} + -t 0.795232 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1351 -a 0 -x {9.0 10.0 680 ------- null} h -t 0.795232 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1351 -a 0 -x {9.0 10.0 680 ------- null} r -t 0.795264 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1337 -a 0 -x {9.0 10.0 673 ------- null} + -t 0.795264 -s 10 -d 7 -p ack -e 40 -c 0 -i 1356 -a 0 -x {10.0 9.0 673 ------- null} - -t 0.795264 -s 10 -d 7 -p ack -e 40 -c 0 -i 1356 -a 0 -x {10.0 9.0 673 ------- null} h -t 0.795264 -s 10 -d 7 -p ack -e 40 -c 0 -i 1356 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.795664 -s 0 -d 9 -p ack -e 40 -c 0 -i 1346 -a 0 -x {10.0 9.0 668 ------- null} + -t 0.795664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1357 -a 0 -x {9.0 10.0 683 ------- null} - -t 0.795664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1357 -a 0 -x {9.0 10.0 683 ------- null} h -t 0.795664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1357 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.795728 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1343 -a 0 -x {9.0 10.0 676 ------- null} - -t 0.795728 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1343 -a 0 -x {9.0 10.0 676 ------- null} h -t 0.795728 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1343 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.795888 -s 0 -d 9 -p ack -e 40 -c 0 -i 1350 -a 0 -x {10.0 9.0 670 ------- null} - -t 0.795888 -s 0 -d 9 -p ack -e 40 -c 0 -i 1350 -a 0 -x {10.0 9.0 670 ------- null} h -t 0.795888 -s 0 -d 9 -p ack -e 40 -c 0 -i 1350 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.796208 -s 10 -d 7 -p ack -e 40 -c 0 -i 1354 -a 0 -x {10.0 9.0 672 ------- null} + -t 0.796208 -s 7 -d 0 -p ack -e 40 -c 0 -i 1354 -a 0 -x {10.0 9.0 672 ------- null} h -t 0.796208 -s 7 -d 8 -p ack -e 40 -c 0 -i 1354 -a 0 -x {10.0 9.0 672 ------- null} r -t 0.796352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1353 -a 0 -x {9.0 10.0 681 ------- null} + -t 0.796352 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1353 -a 0 -x {9.0 10.0 681 ------- null} h -t 0.796352 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1353 -a 0 -x {9.0 10.0 681 ------- null} r -t 0.796352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1339 -a 0 -x {9.0 10.0 674 ------- null} + -t 0.796352 -s 10 -d 7 -p ack -e 40 -c 0 -i 1358 -a 0 -x {10.0 9.0 674 ------- null} - -t 0.796352 -s 10 -d 7 -p ack -e 40 -c 0 -i 1358 -a 0 -x {10.0 9.0 674 ------- null} h -t 0.796352 -s 10 -d 7 -p ack -e 40 -c 0 -i 1358 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.796816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1345 -a 0 -x {9.0 10.0 677 ------- null} - -t 0.796816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1345 -a 0 -x {9.0 10.0 677 ------- null} h -t 0.796816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1345 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.79688 -s 0 -d 9 -p ack -e 40 -c 0 -i 1348 -a 0 -x {10.0 9.0 669 ------- null} + -t 0.79688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1359 -a 0 -x {9.0 10.0 684 ------- null} - -t 0.79688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1359 -a 0 -x {9.0 10.0 684 ------- null} h -t 0.79688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1359 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.797008 -s 0 -d 9 -p ack -e 40 -c 0 -i 1352 -a 0 -x {10.0 9.0 671 ------- null} - -t 0.797008 -s 0 -d 9 -p ack -e 40 -c 0 -i 1352 -a 0 -x {10.0 9.0 671 ------- null} h -t 0.797008 -s 0 -d 9 -p ack -e 40 -c 0 -i 1352 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.797296 -s 10 -d 7 -p ack -e 40 -c 0 -i 1356 -a 0 -x {10.0 9.0 673 ------- null} + -t 0.797296 -s 7 -d 0 -p ack -e 40 -c 0 -i 1356 -a 0 -x {10.0 9.0 673 ------- null} h -t 0.797296 -s 7 -d 8 -p ack -e 40 -c 0 -i 1356 -a 0 -x {10.0 9.0 673 ------- null} r -t 0.79744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1355 -a 0 -x {9.0 10.0 682 ------- null} + -t 0.79744 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1355 -a 0 -x {9.0 10.0 682 ------- null} h -t 0.79744 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1355 -a 0 -x {9.0 10.0 682 ------- null} r -t 0.79744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1341 -a 0 -x {9.0 10.0 675 ------- null} + -t 0.79744 -s 10 -d 7 -p ack -e 40 -c 0 -i 1360 -a 0 -x {10.0 9.0 675 ------- null} - -t 0.79744 -s 10 -d 7 -p ack -e 40 -c 0 -i 1360 -a 0 -x {10.0 9.0 675 ------- null} h -t 0.79744 -s 10 -d 7 -p ack -e 40 -c 0 -i 1360 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.797904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1347 -a 0 -x {9.0 10.0 678 ------- null} - -t 0.797904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1347 -a 0 -x {9.0 10.0 678 ------- null} h -t 0.797904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1347 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.79792 -s 0 -d 9 -p ack -e 40 -c 0 -i 1350 -a 0 -x {10.0 9.0 670 ------- null} + -t 0.79792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1361 -a 0 -x {9.0 10.0 685 ------- null} - -t 0.79792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1361 -a 0 -x {9.0 10.0 685 ------- null} h -t 0.79792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1361 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.798048 -s 0 -d 9 -p ack -e 40 -c 0 -i 1354 -a 0 -x {10.0 9.0 672 ------- null} - -t 0.798048 -s 0 -d 9 -p ack -e 40 -c 0 -i 1354 -a 0 -x {10.0 9.0 672 ------- null} h -t 0.798048 -s 0 -d 9 -p ack -e 40 -c 0 -i 1354 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.798384 -s 10 -d 7 -p ack -e 40 -c 0 -i 1358 -a 0 -x {10.0 9.0 674 ------- null} + -t 0.798384 -s 7 -d 0 -p ack -e 40 -c 0 -i 1358 -a 0 -x {10.0 9.0 674 ------- null} h -t 0.798384 -s 7 -d 8 -p ack -e 40 -c 0 -i 1358 -a 0 -x {10.0 9.0 674 ------- null} r -t 0.798464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1357 -a 0 -x {9.0 10.0 683 ------- null} + -t 0.798464 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1357 -a 0 -x {9.0 10.0 683 ------- null} h -t 0.798464 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1357 -a 0 -x {9.0 10.0 683 ------- null} r -t 0.798528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1343 -a 0 -x {9.0 10.0 676 ------- null} + -t 0.798528 -s 10 -d 7 -p ack -e 40 -c 0 -i 1362 -a 0 -x {10.0 9.0 676 ------- null} - -t 0.798528 -s 10 -d 7 -p ack -e 40 -c 0 -i 1362 -a 0 -x {10.0 9.0 676 ------- null} h -t 0.798528 -s 10 -d 7 -p ack -e 40 -c 0 -i 1362 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.798992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1349 -a 0 -x {9.0 10.0 679 ------- null} - -t 0.798992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1349 -a 0 -x {9.0 10.0 679 ------- null} h -t 0.798992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1349 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.79904 -s 0 -d 9 -p ack -e 40 -c 0 -i 1352 -a 0 -x {10.0 9.0 671 ------- null} + -t 0.79904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1363 -a 0 -x {9.0 10.0 686 ------- null} - -t 0.79904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1363 -a 0 -x {9.0 10.0 686 ------- null} h -t 0.79904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1363 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.799264 -s 0 -d 9 -p ack -e 40 -c 0 -i 1356 -a 0 -x {10.0 9.0 673 ------- null} - -t 0.799264 -s 0 -d 9 -p ack -e 40 -c 0 -i 1356 -a 0 -x {10.0 9.0 673 ------- null} h -t 0.799264 -s 0 -d 9 -p ack -e 40 -c 0 -i 1356 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.799472 -s 10 -d 7 -p ack -e 40 -c 0 -i 1360 -a 0 -x {10.0 9.0 675 ------- null} + -t 0.799472 -s 7 -d 0 -p ack -e 40 -c 0 -i 1360 -a 0 -x {10.0 9.0 675 ------- null} h -t 0.799472 -s 7 -d 8 -p ack -e 40 -c 0 -i 1360 -a 0 -x {10.0 9.0 675 ------- null} r -t 0.799616 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1345 -a 0 -x {9.0 10.0 677 ------- null} + -t 0.799616 -s 10 -d 7 -p ack -e 40 -c 0 -i 1364 -a 0 -x {10.0 9.0 677 ------- null} - -t 0.799616 -s 10 -d 7 -p ack -e 40 -c 0 -i 1364 -a 0 -x {10.0 9.0 677 ------- null} h -t 0.799616 -s 10 -d 7 -p ack -e 40 -c 0 -i 1364 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.79968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1359 -a 0 -x {9.0 10.0 684 ------- null} + -t 0.79968 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1359 -a 0 -x {9.0 10.0 684 ------- null} h -t 0.79968 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1359 -a 0 -x {9.0 10.0 684 ------- null} r -t 0.80008 -s 0 -d 9 -p ack -e 40 -c 0 -i 1354 -a 0 -x {10.0 9.0 672 ------- null} + -t 0.80008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1365 -a 0 -x {9.0 10.0 687 ------- null} - -t 0.80008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1365 -a 0 -x {9.0 10.0 687 ------- null} h -t 0.80008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1365 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.80024 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1351 -a 0 -x {9.0 10.0 680 ------- null} - -t 0.80024 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1351 -a 0 -x {9.0 10.0 680 ------- null} h -t 0.80024 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1351 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.800384 -s 0 -d 9 -p ack -e 40 -c 0 -i 1358 -a 0 -x {10.0 9.0 674 ------- null} - -t 0.800384 -s 0 -d 9 -p ack -e 40 -c 0 -i 1358 -a 0 -x {10.0 9.0 674 ------- null} h -t 0.800384 -s 0 -d 9 -p ack -e 40 -c 0 -i 1358 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.80056 -s 10 -d 7 -p ack -e 40 -c 0 -i 1362 -a 0 -x {10.0 9.0 676 ------- null} + -t 0.80056 -s 7 -d 0 -p ack -e 40 -c 0 -i 1362 -a 0 -x {10.0 9.0 676 ------- null} h -t 0.80056 -s 7 -d 8 -p ack -e 40 -c 0 -i 1362 -a 0 -x {10.0 9.0 676 ------- null} r -t 0.800704 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1347 -a 0 -x {9.0 10.0 678 ------- null} + -t 0.800704 -s 10 -d 7 -p ack -e 40 -c 0 -i 1366 -a 0 -x {10.0 9.0 678 ------- null} - -t 0.800704 -s 10 -d 7 -p ack -e 40 -c 0 -i 1366 -a 0 -x {10.0 9.0 678 ------- null} h -t 0.800704 -s 10 -d 7 -p ack -e 40 -c 0 -i 1366 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.80072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1361 -a 0 -x {9.0 10.0 685 ------- null} + -t 0.80072 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1361 -a 0 -x {9.0 10.0 685 ------- null} h -t 0.80072 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1361 -a 0 -x {9.0 10.0 685 ------- null} r -t 0.801296 -s 0 -d 9 -p ack -e 40 -c 0 -i 1356 -a 0 -x {10.0 9.0 673 ------- null} + -t 0.801296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1367 -a 0 -x {9.0 10.0 688 ------- null} - -t 0.801296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1367 -a 0 -x {9.0 10.0 688 ------- null} h -t 0.801296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1367 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.801328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1353 -a 0 -x {9.0 10.0 681 ------- null} - -t 0.801328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1353 -a 0 -x {9.0 10.0 681 ------- null} h -t 0.801328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1353 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.80152 -s 0 -d 9 -p ack -e 40 -c 0 -i 1360 -a 0 -x {10.0 9.0 675 ------- null} - -t 0.80152 -s 0 -d 9 -p ack -e 40 -c 0 -i 1360 -a 0 -x {10.0 9.0 675 ------- null} h -t 0.80152 -s 0 -d 9 -p ack -e 40 -c 0 -i 1360 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.801648 -s 10 -d 7 -p ack -e 40 -c 0 -i 1364 -a 0 -x {10.0 9.0 677 ------- null} + -t 0.801648 -s 7 -d 0 -p ack -e 40 -c 0 -i 1364 -a 0 -x {10.0 9.0 677 ------- null} h -t 0.801648 -s 7 -d 8 -p ack -e 40 -c 0 -i 1364 -a 0 -x {10.0 9.0 677 ------- null} r -t 0.801792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1349 -a 0 -x {9.0 10.0 679 ------- null} + -t 0.801792 -s 10 -d 7 -p ack -e 40 -c 0 -i 1368 -a 0 -x {10.0 9.0 679 ------- null} - -t 0.801792 -s 10 -d 7 -p ack -e 40 -c 0 -i 1368 -a 0 -x {10.0 9.0 679 ------- null} h -t 0.801792 -s 10 -d 7 -p ack -e 40 -c 0 -i 1368 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.80184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1363 -a 0 -x {9.0 10.0 686 ------- null} + -t 0.80184 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1363 -a 0 -x {9.0 10.0 686 ------- null} h -t 0.80184 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1363 -a 0 -x {9.0 10.0 686 ------- null} r -t 0.802416 -s 0 -d 9 -p ack -e 40 -c 0 -i 1358 -a 0 -x {10.0 9.0 674 ------- null} + -t 0.802416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1369 -a 0 -x {9.0 10.0 689 ------- null} - -t 0.802416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1369 -a 0 -x {9.0 10.0 689 ------- null} h -t 0.802416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1369 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.802416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1355 -a 0 -x {9.0 10.0 682 ------- null} - -t 0.802416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1355 -a 0 -x {9.0 10.0 682 ------- null} h -t 0.802416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1355 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.802592 -s 0 -d 9 -p ack -e 40 -c 0 -i 1362 -a 0 -x {10.0 9.0 676 ------- null} - -t 0.802592 -s 0 -d 9 -p ack -e 40 -c 0 -i 1362 -a 0 -x {10.0 9.0 676 ------- null} h -t 0.802592 -s 0 -d 9 -p ack -e 40 -c 0 -i 1362 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.802736 -s 10 -d 7 -p ack -e 40 -c 0 -i 1366 -a 0 -x {10.0 9.0 678 ------- null} + -t 0.802736 -s 7 -d 0 -p ack -e 40 -c 0 -i 1366 -a 0 -x {10.0 9.0 678 ------- null} h -t 0.802736 -s 7 -d 8 -p ack -e 40 -c 0 -i 1366 -a 0 -x {10.0 9.0 678 ------- null} r -t 0.80288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1365 -a 0 -x {9.0 10.0 687 ------- null} + -t 0.80288 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1365 -a 0 -x {9.0 10.0 687 ------- null} h -t 0.80288 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1365 -a 0 -x {9.0 10.0 687 ------- null} r -t 0.80304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1351 -a 0 -x {9.0 10.0 680 ------- null} + -t 0.80304 -s 10 -d 7 -p ack -e 40 -c 0 -i 1370 -a 0 -x {10.0 9.0 680 ------- null} - -t 0.80304 -s 10 -d 7 -p ack -e 40 -c 0 -i 1370 -a 0 -x {10.0 9.0 680 ------- null} h -t 0.80304 -s 10 -d 7 -p ack -e 40 -c 0 -i 1370 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.803504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1357 -a 0 -x {9.0 10.0 683 ------- null} - -t 0.803504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1357 -a 0 -x {9.0 10.0 683 ------- null} h -t 0.803504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1357 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.803552 -s 0 -d 9 -p ack -e 40 -c 0 -i 1360 -a 0 -x {10.0 9.0 675 ------- null} + -t 0.803552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1371 -a 0 -x {9.0 10.0 690 ------- null} - -t 0.803552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1371 -a 0 -x {9.0 10.0 690 ------- null} h -t 0.803552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1371 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.803776 -s 0 -d 9 -p ack -e 40 -c 0 -i 1364 -a 0 -x {10.0 9.0 677 ------- null} - -t 0.803776 -s 0 -d 9 -p ack -e 40 -c 0 -i 1364 -a 0 -x {10.0 9.0 677 ------- null} h -t 0.803776 -s 0 -d 9 -p ack -e 40 -c 0 -i 1364 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.803824 -s 10 -d 7 -p ack -e 40 -c 0 -i 1368 -a 0 -x {10.0 9.0 679 ------- null} + -t 0.803824 -s 7 -d 0 -p ack -e 40 -c 0 -i 1368 -a 0 -x {10.0 9.0 679 ------- null} h -t 0.803824 -s 7 -d 8 -p ack -e 40 -c 0 -i 1368 -a 0 -x {10.0 9.0 679 ------- null} r -t 0.804096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1367 -a 0 -x {9.0 10.0 688 ------- null} + -t 0.804096 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1367 -a 0 -x {9.0 10.0 688 ------- null} h -t 0.804096 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1367 -a 0 -x {9.0 10.0 688 ------- null} r -t 0.804128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1353 -a 0 -x {9.0 10.0 681 ------- null} + -t 0.804128 -s 10 -d 7 -p ack -e 40 -c 0 -i 1372 -a 0 -x {10.0 9.0 681 ------- null} - -t 0.804128 -s 10 -d 7 -p ack -e 40 -c 0 -i 1372 -a 0 -x {10.0 9.0 681 ------- null} h -t 0.804128 -s 10 -d 7 -p ack -e 40 -c 0 -i 1372 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.804624 -s 0 -d 9 -p ack -e 40 -c 0 -i 1362 -a 0 -x {10.0 9.0 676 ------- null} + -t 0.804624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1373 -a 0 -x {9.0 10.0 691 ------- null} - -t 0.804624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1373 -a 0 -x {9.0 10.0 691 ------- null} h -t 0.804624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1373 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.804656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1359 -a 0 -x {9.0 10.0 684 ------- null} - -t 0.804656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1359 -a 0 -x {9.0 10.0 684 ------- null} h -t 0.804656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1359 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.804816 -s 0 -d 9 -p ack -e 40 -c 0 -i 1366 -a 0 -x {10.0 9.0 678 ------- null} - -t 0.804816 -s 0 -d 9 -p ack -e 40 -c 0 -i 1366 -a 0 -x {10.0 9.0 678 ------- null} h -t 0.804816 -s 0 -d 9 -p ack -e 40 -c 0 -i 1366 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.805072 -s 10 -d 7 -p ack -e 40 -c 0 -i 1370 -a 0 -x {10.0 9.0 680 ------- null} + -t 0.805072 -s 7 -d 0 -p ack -e 40 -c 0 -i 1370 -a 0 -x {10.0 9.0 680 ------- null} h -t 0.805072 -s 7 -d 8 -p ack -e 40 -c 0 -i 1370 -a 0 -x {10.0 9.0 680 ------- null} r -t 0.805216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1369 -a 0 -x {9.0 10.0 689 ------- null} + -t 0.805216 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1369 -a 0 -x {9.0 10.0 689 ------- null} h -t 0.805216 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1369 -a 0 -x {9.0 10.0 689 ------- null} r -t 0.805216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1355 -a 0 -x {9.0 10.0 682 ------- null} + -t 0.805216 -s 10 -d 7 -p ack -e 40 -c 0 -i 1374 -a 0 -x {10.0 9.0 682 ------- null} - -t 0.805216 -s 10 -d 7 -p ack -e 40 -c 0 -i 1374 -a 0 -x {10.0 9.0 682 ------- null} h -t 0.805216 -s 10 -d 7 -p ack -e 40 -c 0 -i 1374 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.805744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1361 -a 0 -x {9.0 10.0 685 ------- null} - -t 0.805744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1361 -a 0 -x {9.0 10.0 685 ------- null} h -t 0.805744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1361 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.805808 -s 0 -d 9 -p ack -e 40 -c 0 -i 1364 -a 0 -x {10.0 9.0 677 ------- null} + -t 0.805808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1375 -a 0 -x {9.0 10.0 692 ------- null} - -t 0.805808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1375 -a 0 -x {9.0 10.0 692 ------- null} h -t 0.805808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1375 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.806 -s 0 -d 9 -p ack -e 40 -c 0 -i 1368 -a 0 -x {10.0 9.0 679 ------- null} - -t 0.806 -s 0 -d 9 -p ack -e 40 -c 0 -i 1368 -a 0 -x {10.0 9.0 679 ------- null} h -t 0.806 -s 0 -d 9 -p ack -e 40 -c 0 -i 1368 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.80616 -s 10 -d 7 -p ack -e 40 -c 0 -i 1372 -a 0 -x {10.0 9.0 681 ------- null} + -t 0.80616 -s 7 -d 0 -p ack -e 40 -c 0 -i 1372 -a 0 -x {10.0 9.0 681 ------- null} h -t 0.80616 -s 7 -d 8 -p ack -e 40 -c 0 -i 1372 -a 0 -x {10.0 9.0 681 ------- null} r -t 0.806304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1357 -a 0 -x {9.0 10.0 683 ------- null} + -t 0.806304 -s 10 -d 7 -p ack -e 40 -c 0 -i 1376 -a 0 -x {10.0 9.0 683 ------- null} - -t 0.806304 -s 10 -d 7 -p ack -e 40 -c 0 -i 1376 -a 0 -x {10.0 9.0 683 ------- null} h -t 0.806304 -s 10 -d 7 -p ack -e 40 -c 0 -i 1376 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.806352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1371 -a 0 -x {9.0 10.0 690 ------- null} + -t 0.806352 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1371 -a 0 -x {9.0 10.0 690 ------- null} h -t 0.806352 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1371 -a 0 -x {9.0 10.0 690 ------- null} + -t 0.806832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1363 -a 0 -x {9.0 10.0 686 ------- null} - -t 0.806832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1363 -a 0 -x {9.0 10.0 686 ------- null} h -t 0.806832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1363 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.806848 -s 0 -d 9 -p ack -e 40 -c 0 -i 1366 -a 0 -x {10.0 9.0 678 ------- null} + -t 0.806848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1377 -a 0 -x {9.0 10.0 693 ------- null} - -t 0.806848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1377 -a 0 -x {9.0 10.0 693 ------- null} h -t 0.806848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1377 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.80704 -s 0 -d 9 -p ack -e 40 -c 0 -i 1370 -a 0 -x {10.0 9.0 680 ------- null} - -t 0.80704 -s 0 -d 9 -p ack -e 40 -c 0 -i 1370 -a 0 -x {10.0 9.0 680 ------- null} h -t 0.80704 -s 0 -d 9 -p ack -e 40 -c 0 -i 1370 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.807248 -s 10 -d 7 -p ack -e 40 -c 0 -i 1374 -a 0 -x {10.0 9.0 682 ------- null} + -t 0.807248 -s 7 -d 0 -p ack -e 40 -c 0 -i 1374 -a 0 -x {10.0 9.0 682 ------- null} h -t 0.807248 -s 7 -d 8 -p ack -e 40 -c 0 -i 1374 -a 0 -x {10.0 9.0 682 ------- null} r -t 0.807424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1373 -a 0 -x {9.0 10.0 691 ------- null} + -t 0.807424 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1373 -a 0 -x {9.0 10.0 691 ------- null} h -t 0.807424 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1373 -a 0 -x {9.0 10.0 691 ------- null} r -t 0.807456 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1359 -a 0 -x {9.0 10.0 684 ------- null} + -t 0.807456 -s 10 -d 7 -p ack -e 40 -c 0 -i 1378 -a 0 -x {10.0 9.0 684 ------- null} - -t 0.807456 -s 10 -d 7 -p ack -e 40 -c 0 -i 1378 -a 0 -x {10.0 9.0 684 ------- null} h -t 0.807456 -s 10 -d 7 -p ack -e 40 -c 0 -i 1378 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.80792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1365 -a 0 -x {9.0 10.0 687 ------- null} - -t 0.80792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1365 -a 0 -x {9.0 10.0 687 ------- null} h -t 0.80792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1365 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.808032 -s 0 -d 9 -p ack -e 40 -c 0 -i 1368 -a 0 -x {10.0 9.0 679 ------- null} + -t 0.808032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1379 -a 0 -x {9.0 10.0 694 ------- null} - -t 0.808032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1379 -a 0 -x {9.0 10.0 694 ------- null} h -t 0.808032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1379 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.80808 -s 0 -d 9 -p ack -e 40 -c 0 -i 1372 -a 0 -x {10.0 9.0 681 ------- null} - -t 0.80808 -s 0 -d 9 -p ack -e 40 -c 0 -i 1372 -a 0 -x {10.0 9.0 681 ------- null} h -t 0.80808 -s 0 -d 9 -p ack -e 40 -c 0 -i 1372 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.808336 -s 10 -d 7 -p ack -e 40 -c 0 -i 1376 -a 0 -x {10.0 9.0 683 ------- null} + -t 0.808336 -s 7 -d 0 -p ack -e 40 -c 0 -i 1376 -a 0 -x {10.0 9.0 683 ------- null} h -t 0.808336 -s 7 -d 8 -p ack -e 40 -c 0 -i 1376 -a 0 -x {10.0 9.0 683 ------- null} r -t 0.808544 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1361 -a 0 -x {9.0 10.0 685 ------- null} + -t 0.808544 -s 10 -d 7 -p ack -e 40 -c 0 -i 1380 -a 0 -x {10.0 9.0 685 ------- null} - -t 0.808544 -s 10 -d 7 -p ack -e 40 -c 0 -i 1380 -a 0 -x {10.0 9.0 685 ------- null} h -t 0.808544 -s 10 -d 7 -p ack -e 40 -c 0 -i 1380 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.808608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1375 -a 0 -x {9.0 10.0 692 ------- null} + -t 0.808608 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1375 -a 0 -x {9.0 10.0 692 ------- null} h -t 0.808608 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1375 -a 0 -x {9.0 10.0 692 ------- null} + -t 0.809008 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1367 -a 0 -x {9.0 10.0 688 ------- null} - -t 0.809008 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1367 -a 0 -x {9.0 10.0 688 ------- null} h -t 0.809008 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1367 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.809072 -s 0 -d 9 -p ack -e 40 -c 0 -i 1370 -a 0 -x {10.0 9.0 680 ------- null} + -t 0.809072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1381 -a 0 -x {9.0 10.0 695 ------- null} - -t 0.809072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1381 -a 0 -x {9.0 10.0 695 ------- null} h -t 0.809072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1381 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.809168 -s 0 -d 9 -p ack -e 40 -c 0 -i 1374 -a 0 -x {10.0 9.0 682 ------- null} - -t 0.809168 -s 0 -d 9 -p ack -e 40 -c 0 -i 1374 -a 0 -x {10.0 9.0 682 ------- null} h -t 0.809168 -s 0 -d 9 -p ack -e 40 -c 0 -i 1374 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.809488 -s 10 -d 7 -p ack -e 40 -c 0 -i 1378 -a 0 -x {10.0 9.0 684 ------- null} + -t 0.809488 -s 7 -d 0 -p ack -e 40 -c 0 -i 1378 -a 0 -x {10.0 9.0 684 ------- null} h -t 0.809488 -s 7 -d 8 -p ack -e 40 -c 0 -i 1378 -a 0 -x {10.0 9.0 684 ------- null} r -t 0.809632 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1363 -a 0 -x {9.0 10.0 686 ------- null} + -t 0.809632 -s 10 -d 7 -p ack -e 40 -c 0 -i 1382 -a 0 -x {10.0 9.0 686 ------- null} - -t 0.809632 -s 10 -d 7 -p ack -e 40 -c 0 -i 1382 -a 0 -x {10.0 9.0 686 ------- null} h -t 0.809632 -s 10 -d 7 -p ack -e 40 -c 0 -i 1382 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.809648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1377 -a 0 -x {9.0 10.0 693 ------- null} + -t 0.809648 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1377 -a 0 -x {9.0 10.0 693 ------- null} h -t 0.809648 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1377 -a 0 -x {9.0 10.0 693 ------- null} + -t 0.810096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1369 -a 0 -x {9.0 10.0 689 ------- null} - -t 0.810096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1369 -a 0 -x {9.0 10.0 689 ------- null} h -t 0.810096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1369 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.810112 -s 0 -d 9 -p ack -e 40 -c 0 -i 1372 -a 0 -x {10.0 9.0 681 ------- null} + -t 0.810112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1383 -a 0 -x {9.0 10.0 696 ------- null} - -t 0.810112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1383 -a 0 -x {9.0 10.0 696 ------- null} h -t 0.810112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1383 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.810272 -s 0 -d 9 -p ack -e 40 -c 0 -i 1376 -a 0 -x {10.0 9.0 683 ------- null} - -t 0.810272 -s 0 -d 9 -p ack -e 40 -c 0 -i 1376 -a 0 -x {10.0 9.0 683 ------- null} h -t 0.810272 -s 0 -d 9 -p ack -e 40 -c 0 -i 1376 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.810576 -s 10 -d 7 -p ack -e 40 -c 0 -i 1380 -a 0 -x {10.0 9.0 685 ------- null} + -t 0.810576 -s 7 -d 0 -p ack -e 40 -c 0 -i 1380 -a 0 -x {10.0 9.0 685 ------- null} h -t 0.810576 -s 7 -d 8 -p ack -e 40 -c 0 -i 1380 -a 0 -x {10.0 9.0 685 ------- null} r -t 0.81072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1365 -a 0 -x {9.0 10.0 687 ------- null} + -t 0.81072 -s 10 -d 7 -p ack -e 40 -c 0 -i 1384 -a 0 -x {10.0 9.0 687 ------- null} - -t 0.81072 -s 10 -d 7 -p ack -e 40 -c 0 -i 1384 -a 0 -x {10.0 9.0 687 ------- null} h -t 0.81072 -s 10 -d 7 -p ack -e 40 -c 0 -i 1384 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.810832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1379 -a 0 -x {9.0 10.0 694 ------- null} + -t 0.810832 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1379 -a 0 -x {9.0 10.0 694 ------- null} h -t 0.810832 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1379 -a 0 -x {9.0 10.0 694 ------- null} + -t 0.811184 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1371 -a 0 -x {9.0 10.0 690 ------- null} - -t 0.811184 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1371 -a 0 -x {9.0 10.0 690 ------- null} h -t 0.811184 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1371 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.8112 -s 0 -d 9 -p ack -e 40 -c 0 -i 1374 -a 0 -x {10.0 9.0 682 ------- null} + -t 0.8112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1385 -a 0 -x {9.0 10.0 697 ------- null} - -t 0.8112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1385 -a 0 -x {9.0 10.0 697 ------- null} h -t 0.8112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1385 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.811296 -s 0 -d 9 -p ack -e 40 -c 0 -i 1378 -a 0 -x {10.0 9.0 684 ------- null} - -t 0.811296 -s 0 -d 9 -p ack -e 40 -c 0 -i 1378 -a 0 -x {10.0 9.0 684 ------- null} h -t 0.811296 -s 0 -d 9 -p ack -e 40 -c 0 -i 1378 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.811664 -s 10 -d 7 -p ack -e 40 -c 0 -i 1382 -a 0 -x {10.0 9.0 686 ------- null} + -t 0.811664 -s 7 -d 0 -p ack -e 40 -c 0 -i 1382 -a 0 -x {10.0 9.0 686 ------- null} h -t 0.811664 -s 7 -d 8 -p ack -e 40 -c 0 -i 1382 -a 0 -x {10.0 9.0 686 ------- null} r -t 0.811808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1367 -a 0 -x {9.0 10.0 688 ------- null} + -t 0.811808 -s 10 -d 7 -p ack -e 40 -c 0 -i 1386 -a 0 -x {10.0 9.0 688 ------- null} - -t 0.811808 -s 10 -d 7 -p ack -e 40 -c 0 -i 1386 -a 0 -x {10.0 9.0 688 ------- null} h -t 0.811808 -s 10 -d 7 -p ack -e 40 -c 0 -i 1386 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.811872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1381 -a 0 -x {9.0 10.0 695 ------- null} + -t 0.811872 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1381 -a 0 -x {9.0 10.0 695 ------- null} h -t 0.811872 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1381 -a 0 -x {9.0 10.0 695 ------- null} + -t 0.812272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1373 -a 0 -x {9.0 10.0 691 ------- null} - -t 0.812272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1373 -a 0 -x {9.0 10.0 691 ------- null} h -t 0.812272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1373 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.812304 -s 0 -d 9 -p ack -e 40 -c 0 -i 1376 -a 0 -x {10.0 9.0 683 ------- null} + -t 0.812304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1387 -a 0 -x {9.0 10.0 698 ------- null} - -t 0.812304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1387 -a 0 -x {9.0 10.0 698 ------- null} h -t 0.812304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1387 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.81248 -s 0 -d 9 -p ack -e 40 -c 0 -i 1380 -a 0 -x {10.0 9.0 685 ------- null} - -t 0.81248 -s 0 -d 9 -p ack -e 40 -c 0 -i 1380 -a 0 -x {10.0 9.0 685 ------- null} h -t 0.81248 -s 0 -d 9 -p ack -e 40 -c 0 -i 1380 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.812752 -s 10 -d 7 -p ack -e 40 -c 0 -i 1384 -a 0 -x {10.0 9.0 687 ------- null} + -t 0.812752 -s 7 -d 0 -p ack -e 40 -c 0 -i 1384 -a 0 -x {10.0 9.0 687 ------- null} h -t 0.812752 -s 7 -d 8 -p ack -e 40 -c 0 -i 1384 -a 0 -x {10.0 9.0 687 ------- null} r -t 0.812896 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1369 -a 0 -x {9.0 10.0 689 ------- null} + -t 0.812896 -s 10 -d 7 -p ack -e 40 -c 0 -i 1388 -a 0 -x {10.0 9.0 689 ------- null} - -t 0.812896 -s 10 -d 7 -p ack -e 40 -c 0 -i 1388 -a 0 -x {10.0 9.0 689 ------- null} h -t 0.812896 -s 10 -d 7 -p ack -e 40 -c 0 -i 1388 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.812912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1383 -a 0 -x {9.0 10.0 696 ------- null} + -t 0.812912 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1383 -a 0 -x {9.0 10.0 696 ------- null} h -t 0.812912 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1383 -a 0 -x {9.0 10.0 696 ------- null} r -t 0.813328 -s 0 -d 9 -p ack -e 40 -c 0 -i 1378 -a 0 -x {10.0 9.0 684 ------- null} + -t 0.813328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1389 -a 0 -x {9.0 10.0 699 ------- null} - -t 0.813328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1389 -a 0 -x {9.0 10.0 699 ------- null} h -t 0.813328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1389 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.81336 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1375 -a 0 -x {9.0 10.0 692 ------- null} - -t 0.81336 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1375 -a 0 -x {9.0 10.0 692 ------- null} h -t 0.81336 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1375 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.813456 -s 0 -d 9 -p ack -e 40 -c 0 -i 1382 -a 0 -x {10.0 9.0 686 ------- null} - -t 0.813456 -s 0 -d 9 -p ack -e 40 -c 0 -i 1382 -a 0 -x {10.0 9.0 686 ------- null} h -t 0.813456 -s 0 -d 9 -p ack -e 40 -c 0 -i 1382 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.81384 -s 10 -d 7 -p ack -e 40 -c 0 -i 1386 -a 0 -x {10.0 9.0 688 ------- null} + -t 0.81384 -s 7 -d 0 -p ack -e 40 -c 0 -i 1386 -a 0 -x {10.0 9.0 688 ------- null} h -t 0.81384 -s 7 -d 8 -p ack -e 40 -c 0 -i 1386 -a 0 -x {10.0 9.0 688 ------- null} r -t 0.813984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1371 -a 0 -x {9.0 10.0 690 ------- null} + -t 0.813984 -s 10 -d 7 -p ack -e 40 -c 0 -i 1390 -a 0 -x {10.0 9.0 690 ------- null} - -t 0.813984 -s 10 -d 7 -p ack -e 40 -c 0 -i 1390 -a 0 -x {10.0 9.0 690 ------- null} h -t 0.813984 -s 10 -d 7 -p ack -e 40 -c 0 -i 1390 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.814 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1385 -a 0 -x {9.0 10.0 697 ------- null} + -t 0.814 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1385 -a 0 -x {9.0 10.0 697 ------- null} h -t 0.814 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1385 -a 0 -x {9.0 10.0 697 ------- null} + -t 0.814448 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1377 -a 0 -x {9.0 10.0 693 ------- null} - -t 0.814448 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1377 -a 0 -x {9.0 10.0 693 ------- null} h -t 0.814448 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1377 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.814512 -s 0 -d 9 -p ack -e 40 -c 0 -i 1380 -a 0 -x {10.0 9.0 685 ------- null} + -t 0.814512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1391 -a 0 -x {9.0 10.0 700 ------- null} - -t 0.814512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1391 -a 0 -x {9.0 10.0 700 ------- null} h -t 0.814512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1391 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.814752 -s 0 -d 9 -p ack -e 40 -c 0 -i 1384 -a 0 -x {10.0 9.0 687 ------- null} - -t 0.814752 -s 0 -d 9 -p ack -e 40 -c 0 -i 1384 -a 0 -x {10.0 9.0 687 ------- null} h -t 0.814752 -s 0 -d 9 -p ack -e 40 -c 0 -i 1384 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.814928 -s 10 -d 7 -p ack -e 40 -c 0 -i 1388 -a 0 -x {10.0 9.0 689 ------- null} + -t 0.814928 -s 7 -d 0 -p ack -e 40 -c 0 -i 1388 -a 0 -x {10.0 9.0 689 ------- null} h -t 0.814928 -s 7 -d 8 -p ack -e 40 -c 0 -i 1388 -a 0 -x {10.0 9.0 689 ------- null} r -t 0.815072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1373 -a 0 -x {9.0 10.0 691 ------- null} + -t 0.815072 -s 10 -d 7 -p ack -e 40 -c 0 -i 1392 -a 0 -x {10.0 9.0 691 ------- null} - -t 0.815072 -s 10 -d 7 -p ack -e 40 -c 0 -i 1392 -a 0 -x {10.0 9.0 691 ------- null} h -t 0.815072 -s 10 -d 7 -p ack -e 40 -c 0 -i 1392 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.815104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1387 -a 0 -x {9.0 10.0 698 ------- null} + -t 0.815104 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1387 -a 0 -x {9.0 10.0 698 ------- null} h -t 0.815104 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1387 -a 0 -x {9.0 10.0 698 ------- null} r -t 0.815488 -s 0 -d 9 -p ack -e 40 -c 0 -i 1382 -a 0 -x {10.0 9.0 686 ------- null} + -t 0.815488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1393 -a 0 -x {9.0 10.0 701 ------- null} - -t 0.815488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1393 -a 0 -x {9.0 10.0 701 ------- null} h -t 0.815488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1393 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.815696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1379 -a 0 -x {9.0 10.0 694 ------- null} - -t 0.815696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1379 -a 0 -x {9.0 10.0 694 ------- null} h -t 0.815696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1379 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.815824 -s 0 -d 9 -p ack -e 40 -c 0 -i 1386 -a 0 -x {10.0 9.0 688 ------- null} - -t 0.815824 -s 0 -d 9 -p ack -e 40 -c 0 -i 1386 -a 0 -x {10.0 9.0 688 ------- null} h -t 0.815824 -s 0 -d 9 -p ack -e 40 -c 0 -i 1386 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.816016 -s 10 -d 7 -p ack -e 40 -c 0 -i 1390 -a 0 -x {10.0 9.0 690 ------- null} + -t 0.816016 -s 7 -d 0 -p ack -e 40 -c 0 -i 1390 -a 0 -x {10.0 9.0 690 ------- null} h -t 0.816016 -s 7 -d 8 -p ack -e 40 -c 0 -i 1390 -a 0 -x {10.0 9.0 690 ------- null} r -t 0.816128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1389 -a 0 -x {9.0 10.0 699 ------- null} + -t 0.816128 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1389 -a 0 -x {9.0 10.0 699 ------- null} h -t 0.816128 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1389 -a 0 -x {9.0 10.0 699 ------- null} r -t 0.81616 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1375 -a 0 -x {9.0 10.0 692 ------- null} + -t 0.81616 -s 10 -d 7 -p ack -e 40 -c 0 -i 1394 -a 0 -x {10.0 9.0 692 ------- null} - -t 0.81616 -s 10 -d 7 -p ack -e 40 -c 0 -i 1394 -a 0 -x {10.0 9.0 692 ------- null} h -t 0.81616 -s 10 -d 7 -p ack -e 40 -c 0 -i 1394 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.816784 -s 0 -d 9 -p ack -e 40 -c 0 -i 1384 -a 0 -x {10.0 9.0 687 ------- null} + -t 0.816784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1395 -a 0 -x {9.0 10.0 702 ------- null} - -t 0.816784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1395 -a 0 -x {9.0 10.0 702 ------- null} h -t 0.816784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1395 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.816784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1381 -a 0 -x {9.0 10.0 695 ------- null} - -t 0.816784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1381 -a 0 -x {9.0 10.0 695 ------- null} h -t 0.816784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1381 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.817072 -s 0 -d 9 -p ack -e 40 -c 0 -i 1388 -a 0 -x {10.0 9.0 689 ------- null} - -t 0.817072 -s 0 -d 9 -p ack -e 40 -c 0 -i 1388 -a 0 -x {10.0 9.0 689 ------- null} h -t 0.817072 -s 0 -d 9 -p ack -e 40 -c 0 -i 1388 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.817104 -s 10 -d 7 -p ack -e 40 -c 0 -i 1392 -a 0 -x {10.0 9.0 691 ------- null} + -t 0.817104 -s 7 -d 0 -p ack -e 40 -c 0 -i 1392 -a 0 -x {10.0 9.0 691 ------- null} h -t 0.817104 -s 7 -d 8 -p ack -e 40 -c 0 -i 1392 -a 0 -x {10.0 9.0 691 ------- null} r -t 0.817248 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1377 -a 0 -x {9.0 10.0 693 ------- null} + -t 0.817248 -s 10 -d 7 -p ack -e 40 -c 0 -i 1396 -a 0 -x {10.0 9.0 693 ------- null} - -t 0.817248 -s 10 -d 7 -p ack -e 40 -c 0 -i 1396 -a 0 -x {10.0 9.0 693 ------- null} h -t 0.817248 -s 10 -d 7 -p ack -e 40 -c 0 -i 1396 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.817312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1391 -a 0 -x {9.0 10.0 700 ------- null} + -t 0.817312 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1391 -a 0 -x {9.0 10.0 700 ------- null} h -t 0.817312 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1391 -a 0 -x {9.0 10.0 700 ------- null} r -t 0.817856 -s 0 -d 9 -p ack -e 40 -c 0 -i 1386 -a 0 -x {10.0 9.0 688 ------- null} + -t 0.817856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1397 -a 0 -x {9.0 10.0 703 ------- null} - -t 0.817856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1397 -a 0 -x {9.0 10.0 703 ------- null} h -t 0.817856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1397 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.817952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1383 -a 0 -x {9.0 10.0 696 ------- null} - -t 0.817952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1383 -a 0 -x {9.0 10.0 696 ------- null} h -t 0.817952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1383 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.818192 -s 10 -d 7 -p ack -e 40 -c 0 -i 1394 -a 0 -x {10.0 9.0 692 ------- null} + -t 0.818192 -s 7 -d 0 -p ack -e 40 -c 0 -i 1394 -a 0 -x {10.0 9.0 692 ------- null} h -t 0.818192 -s 7 -d 8 -p ack -e 40 -c 0 -i 1394 -a 0 -x {10.0 9.0 692 ------- null} + -t 0.81824 -s 0 -d 9 -p ack -e 40 -c 0 -i 1390 -a 0 -x {10.0 9.0 690 ------- null} - -t 0.81824 -s 0 -d 9 -p ack -e 40 -c 0 -i 1390 -a 0 -x {10.0 9.0 690 ------- null} h -t 0.81824 -s 0 -d 9 -p ack -e 40 -c 0 -i 1390 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.818288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1393 -a 0 -x {9.0 10.0 701 ------- null} + -t 0.818288 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1393 -a 0 -x {9.0 10.0 701 ------- null} h -t 0.818288 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1393 -a 0 -x {9.0 10.0 701 ------- null} r -t 0.818496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1379 -a 0 -x {9.0 10.0 694 ------- null} + -t 0.818496 -s 10 -d 7 -p ack -e 40 -c 0 -i 1398 -a 0 -x {10.0 9.0 694 ------- null} - -t 0.818496 -s 10 -d 7 -p ack -e 40 -c 0 -i 1398 -a 0 -x {10.0 9.0 694 ------- null} h -t 0.818496 -s 10 -d 7 -p ack -e 40 -c 0 -i 1398 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.819104 -s 0 -d 9 -p ack -e 40 -c 0 -i 1388 -a 0 -x {10.0 9.0 689 ------- null} + -t 0.819104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1399 -a 0 -x {9.0 10.0 704 ------- null} - -t 0.819104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1399 -a 0 -x {9.0 10.0 704 ------- null} h -t 0.819104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1399 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.819136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1385 -a 0 -x {9.0 10.0 697 ------- null} - -t 0.819136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1385 -a 0 -x {9.0 10.0 697 ------- null} h -t 0.819136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1385 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.819264 -s 0 -d 9 -p ack -e 40 -c 0 -i 1392 -a 0 -x {10.0 9.0 691 ------- null} - -t 0.819264 -s 0 -d 9 -p ack -e 40 -c 0 -i 1392 -a 0 -x {10.0 9.0 691 ------- null} h -t 0.819264 -s 0 -d 9 -p ack -e 40 -c 0 -i 1392 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.81928 -s 10 -d 7 -p ack -e 40 -c 0 -i 1396 -a 0 -x {10.0 9.0 693 ------- null} + -t 0.81928 -s 7 -d 0 -p ack -e 40 -c 0 -i 1396 -a 0 -x {10.0 9.0 693 ------- null} h -t 0.81928 -s 7 -d 8 -p ack -e 40 -c 0 -i 1396 -a 0 -x {10.0 9.0 693 ------- null} r -t 0.819584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1395 -a 0 -x {9.0 10.0 702 ------- null} + -t 0.819584 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1395 -a 0 -x {9.0 10.0 702 ------- null} h -t 0.819584 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1395 -a 0 -x {9.0 10.0 702 ------- null} r -t 0.819584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1381 -a 0 -x {9.0 10.0 695 ------- null} + -t 0.819584 -s 10 -d 7 -p ack -e 40 -c 0 -i 1400 -a 0 -x {10.0 9.0 695 ------- null} - -t 0.819584 -s 10 -d 7 -p ack -e 40 -c 0 -i 1400 -a 0 -x {10.0 9.0 695 ------- null} h -t 0.819584 -s 10 -d 7 -p ack -e 40 -c 0 -i 1400 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.820224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1387 -a 0 -x {9.0 10.0 698 ------- null} - -t 0.820224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1387 -a 0 -x {9.0 10.0 698 ------- null} h -t 0.820224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1387 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.820272 -s 0 -d 9 -p ack -e 40 -c 0 -i 1390 -a 0 -x {10.0 9.0 690 ------- null} + -t 0.820272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1401 -a 0 -x {9.0 10.0 705 ------- null} - -t 0.820272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1401 -a 0 -x {9.0 10.0 705 ------- null} h -t 0.820272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1401 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.820352 -s 0 -d 9 -p ack -e 40 -c 0 -i 1394 -a 0 -x {10.0 9.0 692 ------- null} - -t 0.820352 -s 0 -d 9 -p ack -e 40 -c 0 -i 1394 -a 0 -x {10.0 9.0 692 ------- null} h -t 0.820352 -s 0 -d 9 -p ack -e 40 -c 0 -i 1394 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.820528 -s 10 -d 7 -p ack -e 40 -c 0 -i 1398 -a 0 -x {10.0 9.0 694 ------- null} + -t 0.820528 -s 7 -d 0 -p ack -e 40 -c 0 -i 1398 -a 0 -x {10.0 9.0 694 ------- null} h -t 0.820528 -s 7 -d 8 -p ack -e 40 -c 0 -i 1398 -a 0 -x {10.0 9.0 694 ------- null} r -t 0.820656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1397 -a 0 -x {9.0 10.0 703 ------- null} + -t 0.820656 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1397 -a 0 -x {9.0 10.0 703 ------- null} h -t 0.820656 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1397 -a 0 -x {9.0 10.0 703 ------- null} r -t 0.820752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1383 -a 0 -x {9.0 10.0 696 ------- null} + -t 0.820752 -s 10 -d 7 -p ack -e 40 -c 0 -i 1402 -a 0 -x {10.0 9.0 696 ------- null} - -t 0.820752 -s 10 -d 7 -p ack -e 40 -c 0 -i 1402 -a 0 -x {10.0 9.0 696 ------- null} h -t 0.820752 -s 10 -d 7 -p ack -e 40 -c 0 -i 1402 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.821296 -s 0 -d 9 -p ack -e 40 -c 0 -i 1392 -a 0 -x {10.0 9.0 691 ------- null} + -t 0.821296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1403 -a 0 -x {9.0 10.0 706 ------- null} - -t 0.821296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1403 -a 0 -x {9.0 10.0 706 ------- null} h -t 0.821296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1403 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.821312 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1389 -a 0 -x {9.0 10.0 699 ------- null} - -t 0.821312 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1389 -a 0 -x {9.0 10.0 699 ------- null} h -t 0.821312 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1389 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.821536 -s 0 -d 9 -p ack -e 40 -c 0 -i 1396 -a 0 -x {10.0 9.0 693 ------- null} - -t 0.821536 -s 0 -d 9 -p ack -e 40 -c 0 -i 1396 -a 0 -x {10.0 9.0 693 ------- null} h -t 0.821536 -s 0 -d 9 -p ack -e 40 -c 0 -i 1396 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.821616 -s 10 -d 7 -p ack -e 40 -c 0 -i 1400 -a 0 -x {10.0 9.0 695 ------- null} + -t 0.821616 -s 7 -d 0 -p ack -e 40 -c 0 -i 1400 -a 0 -x {10.0 9.0 695 ------- null} h -t 0.821616 -s 7 -d 8 -p ack -e 40 -c 0 -i 1400 -a 0 -x {10.0 9.0 695 ------- null} r -t 0.821904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1399 -a 0 -x {9.0 10.0 704 ------- null} + -t 0.821904 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1399 -a 0 -x {9.0 10.0 704 ------- null} h -t 0.821904 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1399 -a 0 -x {9.0 10.0 704 ------- null} r -t 0.821936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1385 -a 0 -x {9.0 10.0 697 ------- null} + -t 0.821936 -s 10 -d 7 -p ack -e 40 -c 0 -i 1404 -a 0 -x {10.0 9.0 697 ------- null} - -t 0.821936 -s 10 -d 7 -p ack -e 40 -c 0 -i 1404 -a 0 -x {10.0 9.0 697 ------- null} h -t 0.821936 -s 10 -d 7 -p ack -e 40 -c 0 -i 1404 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.822384 -s 0 -d 9 -p ack -e 40 -c 0 -i 1394 -a 0 -x {10.0 9.0 692 ------- null} + -t 0.822384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1405 -a 0 -x {9.0 10.0 707 ------- null} - -t 0.822384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1405 -a 0 -x {9.0 10.0 707 ------- null} h -t 0.822384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1405 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.8224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1391 -a 0 -x {9.0 10.0 700 ------- null} - -t 0.8224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1391 -a 0 -x {9.0 10.0 700 ------- null} h -t 0.8224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1391 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.822656 -s 0 -d 9 -p ack -e 40 -c 0 -i 1398 -a 0 -x {10.0 9.0 694 ------- null} - -t 0.822656 -s 0 -d 9 -p ack -e 40 -c 0 -i 1398 -a 0 -x {10.0 9.0 694 ------- null} h -t 0.822656 -s 0 -d 9 -p ack -e 40 -c 0 -i 1398 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.822784 -s 10 -d 7 -p ack -e 40 -c 0 -i 1402 -a 0 -x {10.0 9.0 696 ------- null} + -t 0.822784 -s 7 -d 0 -p ack -e 40 -c 0 -i 1402 -a 0 -x {10.0 9.0 696 ------- null} h -t 0.822784 -s 7 -d 8 -p ack -e 40 -c 0 -i 1402 -a 0 -x {10.0 9.0 696 ------- null} r -t 0.823024 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1387 -a 0 -x {9.0 10.0 698 ------- null} + -t 0.823024 -s 10 -d 7 -p ack -e 40 -c 0 -i 1406 -a 0 -x {10.0 9.0 698 ------- null} - -t 0.823024 -s 10 -d 7 -p ack -e 40 -c 0 -i 1406 -a 0 -x {10.0 9.0 698 ------- null} h -t 0.823024 -s 10 -d 7 -p ack -e 40 -c 0 -i 1406 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.823072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1401 -a 0 -x {9.0 10.0 705 ------- null} + -t 0.823072 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1401 -a 0 -x {9.0 10.0 705 ------- null} h -t 0.823072 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1401 -a 0 -x {9.0 10.0 705 ------- null} + -t 0.823488 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1393 -a 0 -x {9.0 10.0 701 ------- null} - -t 0.823488 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1393 -a 0 -x {9.0 10.0 701 ------- null} h -t 0.823488 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1393 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.823568 -s 0 -d 9 -p ack -e 40 -c 0 -i 1396 -a 0 -x {10.0 9.0 693 ------- null} + -t 0.823568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1407 -a 0 -x {9.0 10.0 708 ------- null} - -t 0.823568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1407 -a 0 -x {9.0 10.0 708 ------- null} h -t 0.823568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1407 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.823744 -s 0 -d 9 -p ack -e 40 -c 0 -i 1400 -a 0 -x {10.0 9.0 695 ------- null} - -t 0.823744 -s 0 -d 9 -p ack -e 40 -c 0 -i 1400 -a 0 -x {10.0 9.0 695 ------- null} h -t 0.823744 -s 0 -d 9 -p ack -e 40 -c 0 -i 1400 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.823968 -s 10 -d 7 -p ack -e 40 -c 0 -i 1404 -a 0 -x {10.0 9.0 697 ------- null} + -t 0.823968 -s 7 -d 0 -p ack -e 40 -c 0 -i 1404 -a 0 -x {10.0 9.0 697 ------- null} h -t 0.823968 -s 7 -d 8 -p ack -e 40 -c 0 -i 1404 -a 0 -x {10.0 9.0 697 ------- null} r -t 0.824096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1403 -a 0 -x {9.0 10.0 706 ------- null} + -t 0.824096 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1403 -a 0 -x {9.0 10.0 706 ------- null} h -t 0.824096 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1403 -a 0 -x {9.0 10.0 706 ------- null} r -t 0.824112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1389 -a 0 -x {9.0 10.0 699 ------- null} + -t 0.824112 -s 10 -d 7 -p ack -e 40 -c 0 -i 1408 -a 0 -x {10.0 9.0 699 ------- null} - -t 0.824112 -s 10 -d 7 -p ack -e 40 -c 0 -i 1408 -a 0 -x {10.0 9.0 699 ------- null} h -t 0.824112 -s 10 -d 7 -p ack -e 40 -c 0 -i 1408 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.824576 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1395 -a 0 -x {9.0 10.0 702 ------- null} - -t 0.824576 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1395 -a 0 -x {9.0 10.0 702 ------- null} h -t 0.824576 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1395 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.824688 -s 0 -d 9 -p ack -e 40 -c 0 -i 1398 -a 0 -x {10.0 9.0 694 ------- null} + -t 0.824688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1409 -a 0 -x {9.0 10.0 709 ------- null} - -t 0.824688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1409 -a 0 -x {9.0 10.0 709 ------- null} h -t 0.824688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1409 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.8248 -s 0 -d 9 -p ack -e 40 -c 0 -i 1402 -a 0 -x {10.0 9.0 696 ------- null} - -t 0.8248 -s 0 -d 9 -p ack -e 40 -c 0 -i 1402 -a 0 -x {10.0 9.0 696 ------- null} h -t 0.8248 -s 0 -d 9 -p ack -e 40 -c 0 -i 1402 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.825056 -s 10 -d 7 -p ack -e 40 -c 0 -i 1406 -a 0 -x {10.0 9.0 698 ------- null} + -t 0.825056 -s 7 -d 0 -p ack -e 40 -c 0 -i 1406 -a 0 -x {10.0 9.0 698 ------- null} h -t 0.825056 -s 7 -d 8 -p ack -e 40 -c 0 -i 1406 -a 0 -x {10.0 9.0 698 ------- null} r -t 0.825184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1405 -a 0 -x {9.0 10.0 707 ------- null} + -t 0.825184 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1405 -a 0 -x {9.0 10.0 707 ------- null} h -t 0.825184 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1405 -a 0 -x {9.0 10.0 707 ------- null} r -t 0.8252 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1391 -a 0 -x {9.0 10.0 700 ------- null} + -t 0.8252 -s 10 -d 7 -p ack -e 40 -c 0 -i 1410 -a 0 -x {10.0 9.0 700 ------- null} - -t 0.8252 -s 10 -d 7 -p ack -e 40 -c 0 -i 1410 -a 0 -x {10.0 9.0 700 ------- null} h -t 0.8252 -s 10 -d 7 -p ack -e 40 -c 0 -i 1410 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.825664 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1397 -a 0 -x {9.0 10.0 703 ------- null} - -t 0.825664 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1397 -a 0 -x {9.0 10.0 703 ------- null} h -t 0.825664 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1397 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.825776 -s 0 -d 9 -p ack -e 40 -c 0 -i 1400 -a 0 -x {10.0 9.0 695 ------- null} + -t 0.825776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1411 -a 0 -x {9.0 10.0 710 ------- null} - -t 0.825776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1411 -a 0 -x {9.0 10.0 710 ------- null} h -t 0.825776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1411 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.825856 -s 0 -d 9 -p ack -e 40 -c 0 -i 1404 -a 0 -x {10.0 9.0 697 ------- null} - -t 0.825856 -s 0 -d 9 -p ack -e 40 -c 0 -i 1404 -a 0 -x {10.0 9.0 697 ------- null} h -t 0.825856 -s 0 -d 9 -p ack -e 40 -c 0 -i 1404 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.826144 -s 10 -d 7 -p ack -e 40 -c 0 -i 1408 -a 0 -x {10.0 9.0 699 ------- null} + -t 0.826144 -s 7 -d 0 -p ack -e 40 -c 0 -i 1408 -a 0 -x {10.0 9.0 699 ------- null} h -t 0.826144 -s 7 -d 8 -p ack -e 40 -c 0 -i 1408 -a 0 -x {10.0 9.0 699 ------- null} r -t 0.826288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1393 -a 0 -x {9.0 10.0 701 ------- null} + -t 0.826288 -s 10 -d 7 -p ack -e 40 -c 0 -i 1412 -a 0 -x {10.0 9.0 701 ------- null} - -t 0.826288 -s 10 -d 7 -p ack -e 40 -c 0 -i 1412 -a 0 -x {10.0 9.0 701 ------- null} h -t 0.826288 -s 10 -d 7 -p ack -e 40 -c 0 -i 1412 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.826368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1407 -a 0 -x {9.0 10.0 708 ------- null} + -t 0.826368 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1407 -a 0 -x {9.0 10.0 708 ------- null} h -t 0.826368 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1407 -a 0 -x {9.0 10.0 708 ------- null} + -t 0.826752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1399 -a 0 -x {9.0 10.0 704 ------- null} - -t 0.826752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1399 -a 0 -x {9.0 10.0 704 ------- null} h -t 0.826752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1399 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.826832 -s 0 -d 9 -p ack -e 40 -c 0 -i 1402 -a 0 -x {10.0 9.0 696 ------- null} + -t 0.826832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1413 -a 0 -x {9.0 10.0 711 ------- null} - -t 0.826832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1413 -a 0 -x {9.0 10.0 711 ------- null} h -t 0.826832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1413 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.826896 -s 0 -d 9 -p ack -e 40 -c 0 -i 1406 -a 0 -x {10.0 9.0 698 ------- null} - -t 0.826896 -s 0 -d 9 -p ack -e 40 -c 0 -i 1406 -a 0 -x {10.0 9.0 698 ------- null} h -t 0.826896 -s 0 -d 9 -p ack -e 40 -c 0 -i 1406 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.827232 -s 10 -d 7 -p ack -e 40 -c 0 -i 1410 -a 0 -x {10.0 9.0 700 ------- null} + -t 0.827232 -s 7 -d 0 -p ack -e 40 -c 0 -i 1410 -a 0 -x {10.0 9.0 700 ------- null} h -t 0.827232 -s 7 -d 8 -p ack -e 40 -c 0 -i 1410 -a 0 -x {10.0 9.0 700 ------- null} r -t 0.827376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1395 -a 0 -x {9.0 10.0 702 ------- null} + -t 0.827376 -s 10 -d 7 -p ack -e 40 -c 0 -i 1414 -a 0 -x {10.0 9.0 702 ------- null} - -t 0.827376 -s 10 -d 7 -p ack -e 40 -c 0 -i 1414 -a 0 -x {10.0 9.0 702 ------- null} h -t 0.827376 -s 10 -d 7 -p ack -e 40 -c 0 -i 1414 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.827488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1409 -a 0 -x {9.0 10.0 709 ------- null} + -t 0.827488 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1409 -a 0 -x {9.0 10.0 709 ------- null} h -t 0.827488 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1409 -a 0 -x {9.0 10.0 709 ------- null} + -t 0.82784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1401 -a 0 -x {9.0 10.0 705 ------- null} - -t 0.82784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1401 -a 0 -x {9.0 10.0 705 ------- null} h -t 0.82784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1401 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.827888 -s 0 -d 9 -p ack -e 40 -c 0 -i 1404 -a 0 -x {10.0 9.0 697 ------- null} + -t 0.827888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1415 -a 0 -x {9.0 10.0 712 ------- null} - -t 0.827888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1415 -a 0 -x {9.0 10.0 712 ------- null} h -t 0.827888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1415 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.828016 -s 0 -d 9 -p ack -e 40 -c 0 -i 1408 -a 0 -x {10.0 9.0 699 ------- null} - -t 0.828016 -s 0 -d 9 -p ack -e 40 -c 0 -i 1408 -a 0 -x {10.0 9.0 699 ------- null} h -t 0.828016 -s 0 -d 9 -p ack -e 40 -c 0 -i 1408 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.82832 -s 10 -d 7 -p ack -e 40 -c 0 -i 1412 -a 0 -x {10.0 9.0 701 ------- null} + -t 0.82832 -s 7 -d 0 -p ack -e 40 -c 0 -i 1412 -a 0 -x {10.0 9.0 701 ------- null} h -t 0.82832 -s 7 -d 8 -p ack -e 40 -c 0 -i 1412 -a 0 -x {10.0 9.0 701 ------- null} r -t 0.828464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1397 -a 0 -x {9.0 10.0 703 ------- null} + -t 0.828464 -s 10 -d 7 -p ack -e 40 -c 0 -i 1416 -a 0 -x {10.0 9.0 703 ------- null} - -t 0.828464 -s 10 -d 7 -p ack -e 40 -c 0 -i 1416 -a 0 -x {10.0 9.0 703 ------- null} h -t 0.828464 -s 10 -d 7 -p ack -e 40 -c 0 -i 1416 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.828576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1411 -a 0 -x {9.0 10.0 710 ------- null} + -t 0.828576 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1411 -a 0 -x {9.0 10.0 710 ------- null} h -t 0.828576 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1411 -a 0 -x {9.0 10.0 710 ------- null} r -t 0.828928 -s 0 -d 9 -p ack -e 40 -c 0 -i 1406 -a 0 -x {10.0 9.0 698 ------- null} + -t 0.828928 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1417 -a 0 -x {9.0 10.0 713 ------- null} - -t 0.828928 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1417 -a 0 -x {9.0 10.0 713 ------- null} h -t 0.828928 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1417 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.828928 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1403 -a 0 -x {9.0 10.0 706 ------- null} - -t 0.828928 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1403 -a 0 -x {9.0 10.0 706 ------- null} h -t 0.828928 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1403 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.829184 -s 0 -d 9 -p ack -e 40 -c 0 -i 1410 -a 0 -x {10.0 9.0 700 ------- null} - -t 0.829184 -s 0 -d 9 -p ack -e 40 -c 0 -i 1410 -a 0 -x {10.0 9.0 700 ------- null} h -t 0.829184 -s 0 -d 9 -p ack -e 40 -c 0 -i 1410 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.829408 -s 10 -d 7 -p ack -e 40 -c 0 -i 1414 -a 0 -x {10.0 9.0 702 ------- null} + -t 0.829408 -s 7 -d 0 -p ack -e 40 -c 0 -i 1414 -a 0 -x {10.0 9.0 702 ------- null} h -t 0.829408 -s 7 -d 8 -p ack -e 40 -c 0 -i 1414 -a 0 -x {10.0 9.0 702 ------- null} r -t 0.829552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1399 -a 0 -x {9.0 10.0 704 ------- null} + -t 0.829552 -s 10 -d 7 -p ack -e 40 -c 0 -i 1418 -a 0 -x {10.0 9.0 704 ------- null} - -t 0.829552 -s 10 -d 7 -p ack -e 40 -c 0 -i 1418 -a 0 -x {10.0 9.0 704 ------- null} h -t 0.829552 -s 10 -d 7 -p ack -e 40 -c 0 -i 1418 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.829632 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1413 -a 0 -x {9.0 10.0 711 ------- null} + -t 0.829632 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1413 -a 0 -x {9.0 10.0 711 ------- null} h -t 0.829632 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1413 -a 0 -x {9.0 10.0 711 ------- null} + -t 0.830016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1405 -a 0 -x {9.0 10.0 707 ------- null} - -t 0.830016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1405 -a 0 -x {9.0 10.0 707 ------- null} h -t 0.830016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1405 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.830048 -s 0 -d 9 -p ack -e 40 -c 0 -i 1408 -a 0 -x {10.0 9.0 699 ------- null} + -t 0.830048 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1419 -a 0 -x {9.0 10.0 714 ------- null} - -t 0.830048 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1419 -a 0 -x {9.0 10.0 714 ------- null} h -t 0.830048 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1419 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.830128 -s 0 -d 9 -p ack -e 40 -c 0 -i 1412 -a 0 -x {10.0 9.0 701 ------- null} - -t 0.830128 -s 0 -d 9 -p ack -e 40 -c 0 -i 1412 -a 0 -x {10.0 9.0 701 ------- null} h -t 0.830128 -s 0 -d 9 -p ack -e 40 -c 0 -i 1412 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.830496 -s 10 -d 7 -p ack -e 40 -c 0 -i 1416 -a 0 -x {10.0 9.0 703 ------- null} + -t 0.830496 -s 7 -d 0 -p ack -e 40 -c 0 -i 1416 -a 0 -x {10.0 9.0 703 ------- null} h -t 0.830496 -s 7 -d 8 -p ack -e 40 -c 0 -i 1416 -a 0 -x {10.0 9.0 703 ------- null} r -t 0.83064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1401 -a 0 -x {9.0 10.0 705 ------- null} + -t 0.83064 -s 10 -d 7 -p ack -e 40 -c 0 -i 1420 -a 0 -x {10.0 9.0 705 ------- null} - -t 0.83064 -s 10 -d 7 -p ack -e 40 -c 0 -i 1420 -a 0 -x {10.0 9.0 705 ------- null} h -t 0.83064 -s 10 -d 7 -p ack -e 40 -c 0 -i 1420 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.830688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1415 -a 0 -x {9.0 10.0 712 ------- null} + -t 0.830688 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1415 -a 0 -x {9.0 10.0 712 ------- null} h -t 0.830688 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1415 -a 0 -x {9.0 10.0 712 ------- null} + -t 0.831104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1407 -a 0 -x {9.0 10.0 708 ------- null} - -t 0.831104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1407 -a 0 -x {9.0 10.0 708 ------- null} h -t 0.831104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1407 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.831216 -s 0 -d 9 -p ack -e 40 -c 0 -i 1410 -a 0 -x {10.0 9.0 700 ------- null} + -t 0.831216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1421 -a 0 -x {9.0 10.0 715 ------- null} - -t 0.831216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1421 -a 0 -x {9.0 10.0 715 ------- null} h -t 0.831216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1421 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.831248 -s 0 -d 9 -p ack -e 40 -c 0 -i 1414 -a 0 -x {10.0 9.0 702 ------- null} - -t 0.831248 -s 0 -d 9 -p ack -e 40 -c 0 -i 1414 -a 0 -x {10.0 9.0 702 ------- null} h -t 0.831248 -s 0 -d 9 -p ack -e 40 -c 0 -i 1414 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.831584 -s 10 -d 7 -p ack -e 40 -c 0 -i 1418 -a 0 -x {10.0 9.0 704 ------- null} + -t 0.831584 -s 7 -d 0 -p ack -e 40 -c 0 -i 1418 -a 0 -x {10.0 9.0 704 ------- null} h -t 0.831584 -s 7 -d 8 -p ack -e 40 -c 0 -i 1418 -a 0 -x {10.0 9.0 704 ------- null} r -t 0.831728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1417 -a 0 -x {9.0 10.0 713 ------- null} + -t 0.831728 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1417 -a 0 -x {9.0 10.0 713 ------- null} h -t 0.831728 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1417 -a 0 -x {9.0 10.0 713 ------- null} r -t 0.831728 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1403 -a 0 -x {9.0 10.0 706 ------- null} + -t 0.831728 -s 10 -d 7 -p ack -e 40 -c 0 -i 1422 -a 0 -x {10.0 9.0 706 ------- null} - -t 0.831728 -s 10 -d 7 -p ack -e 40 -c 0 -i 1422 -a 0 -x {10.0 9.0 706 ------- null} h -t 0.831728 -s 10 -d 7 -p ack -e 40 -c 0 -i 1422 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.83216 -s 0 -d 9 -p ack -e 40 -c 0 -i 1412 -a 0 -x {10.0 9.0 701 ------- null} + -t 0.83216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1423 -a 0 -x {9.0 10.0 716 ------- null} - -t 0.83216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1423 -a 0 -x {9.0 10.0 716 ------- null} h -t 0.83216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1423 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.832192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1409 -a 0 -x {9.0 10.0 709 ------- null} - -t 0.832192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1409 -a 0 -x {9.0 10.0 709 ------- null} h -t 0.832192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1409 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.832416 -s 0 -d 9 -p ack -e 40 -c 0 -i 1416 -a 0 -x {10.0 9.0 703 ------- null} - -t 0.832416 -s 0 -d 9 -p ack -e 40 -c 0 -i 1416 -a 0 -x {10.0 9.0 703 ------- null} h -t 0.832416 -s 0 -d 9 -p ack -e 40 -c 0 -i 1416 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.832672 -s 10 -d 7 -p ack -e 40 -c 0 -i 1420 -a 0 -x {10.0 9.0 705 ------- null} + -t 0.832672 -s 7 -d 0 -p ack -e 40 -c 0 -i 1420 -a 0 -x {10.0 9.0 705 ------- null} h -t 0.832672 -s 7 -d 8 -p ack -e 40 -c 0 -i 1420 -a 0 -x {10.0 9.0 705 ------- null} r -t 0.832816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1405 -a 0 -x {9.0 10.0 707 ------- null} + -t 0.832816 -s 10 -d 7 -p ack -e 40 -c 0 -i 1424 -a 0 -x {10.0 9.0 707 ------- null} - -t 0.832816 -s 10 -d 7 -p ack -e 40 -c 0 -i 1424 -a 0 -x {10.0 9.0 707 ------- null} h -t 0.832816 -s 10 -d 7 -p ack -e 40 -c 0 -i 1424 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.832848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1419 -a 0 -x {9.0 10.0 714 ------- null} + -t 0.832848 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1419 -a 0 -x {9.0 10.0 714 ------- null} h -t 0.832848 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1419 -a 0 -x {9.0 10.0 714 ------- null} r -t 0.83328 -s 0 -d 9 -p ack -e 40 -c 0 -i 1414 -a 0 -x {10.0 9.0 702 ------- null} + -t 0.83328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1425 -a 0 -x {9.0 10.0 717 ------- null} - -t 0.83328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1425 -a 0 -x {9.0 10.0 717 ------- null} h -t 0.83328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1425 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.83328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1411 -a 0 -x {9.0 10.0 710 ------- null} - -t 0.83328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1411 -a 0 -x {9.0 10.0 710 ------- null} h -t 0.83328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1411 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.833472 -s 0 -d 9 -p ack -e 40 -c 0 -i 1418 -a 0 -x {10.0 9.0 704 ------- null} - -t 0.833472 -s 0 -d 9 -p ack -e 40 -c 0 -i 1418 -a 0 -x {10.0 9.0 704 ------- null} h -t 0.833472 -s 0 -d 9 -p ack -e 40 -c 0 -i 1418 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.83376 -s 10 -d 7 -p ack -e 40 -c 0 -i 1422 -a 0 -x {10.0 9.0 706 ------- null} + -t 0.83376 -s 7 -d 0 -p ack -e 40 -c 0 -i 1422 -a 0 -x {10.0 9.0 706 ------- null} h -t 0.83376 -s 7 -d 8 -p ack -e 40 -c 0 -i 1422 -a 0 -x {10.0 9.0 706 ------- null} r -t 0.833904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1407 -a 0 -x {9.0 10.0 708 ------- null} + -t 0.833904 -s 10 -d 7 -p ack -e 40 -c 0 -i 1426 -a 0 -x {10.0 9.0 708 ------- null} - -t 0.833904 -s 10 -d 7 -p ack -e 40 -c 0 -i 1426 -a 0 -x {10.0 9.0 708 ------- null} h -t 0.833904 -s 10 -d 7 -p ack -e 40 -c 0 -i 1426 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.834016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1421 -a 0 -x {9.0 10.0 715 ------- null} + -t 0.834016 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1421 -a 0 -x {9.0 10.0 715 ------- null} h -t 0.834016 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1421 -a 0 -x {9.0 10.0 715 ------- null} + -t 0.834368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1413 -a 0 -x {9.0 10.0 711 ------- null} - -t 0.834368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1413 -a 0 -x {9.0 10.0 711 ------- null} h -t 0.834368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1413 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.834448 -s 0 -d 9 -p ack -e 40 -c 0 -i 1416 -a 0 -x {10.0 9.0 703 ------- null} + -t 0.834448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1427 -a 0 -x {9.0 10.0 718 ------- null} - -t 0.834448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1427 -a 0 -x {9.0 10.0 718 ------- null} h -t 0.834448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1427 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.834608 -s 0 -d 9 -p ack -e 40 -c 0 -i 1420 -a 0 -x {10.0 9.0 705 ------- null} - -t 0.834608 -s 0 -d 9 -p ack -e 40 -c 0 -i 1420 -a 0 -x {10.0 9.0 705 ------- null} h -t 0.834608 -s 0 -d 9 -p ack -e 40 -c 0 -i 1420 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.834848 -s 10 -d 7 -p ack -e 40 -c 0 -i 1424 -a 0 -x {10.0 9.0 707 ------- null} + -t 0.834848 -s 7 -d 0 -p ack -e 40 -c 0 -i 1424 -a 0 -x {10.0 9.0 707 ------- null} h -t 0.834848 -s 7 -d 8 -p ack -e 40 -c 0 -i 1424 -a 0 -x {10.0 9.0 707 ------- null} r -t 0.83496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1423 -a 0 -x {9.0 10.0 716 ------- null} + -t 0.83496 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1423 -a 0 -x {9.0 10.0 716 ------- null} h -t 0.83496 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1423 -a 0 -x {9.0 10.0 716 ------- null} r -t 0.834992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1409 -a 0 -x {9.0 10.0 709 ------- null} + -t 0.834992 -s 10 -d 7 -p ack -e 40 -c 0 -i 1428 -a 0 -x {10.0 9.0 709 ------- null} - -t 0.834992 -s 10 -d 7 -p ack -e 40 -c 0 -i 1428 -a 0 -x {10.0 9.0 709 ------- null} h -t 0.834992 -s 10 -d 7 -p ack -e 40 -c 0 -i 1428 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.835456 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1415 -a 0 -x {9.0 10.0 712 ------- null} - -t 0.835456 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1415 -a 0 -x {9.0 10.0 712 ------- null} h -t 0.835456 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1415 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.835504 -s 0 -d 9 -p ack -e 40 -c 0 -i 1418 -a 0 -x {10.0 9.0 704 ------- null} + -t 0.835504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1429 -a 0 -x {9.0 10.0 719 ------- null} - -t 0.835504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1429 -a 0 -x {9.0 10.0 719 ------- null} h -t 0.835504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1429 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.835648 -s 0 -d 9 -p ack -e 40 -c 0 -i 1422 -a 0 -x {10.0 9.0 706 ------- null} - -t 0.835648 -s 0 -d 9 -p ack -e 40 -c 0 -i 1422 -a 0 -x {10.0 9.0 706 ------- null} h -t 0.835648 -s 0 -d 9 -p ack -e 40 -c 0 -i 1422 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.835936 -s 10 -d 7 -p ack -e 40 -c 0 -i 1426 -a 0 -x {10.0 9.0 708 ------- null} + -t 0.835936 -s 7 -d 0 -p ack -e 40 -c 0 -i 1426 -a 0 -x {10.0 9.0 708 ------- null} h -t 0.835936 -s 7 -d 8 -p ack -e 40 -c 0 -i 1426 -a 0 -x {10.0 9.0 708 ------- null} r -t 0.83608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1425 -a 0 -x {9.0 10.0 717 ------- null} + -t 0.83608 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1425 -a 0 -x {9.0 10.0 717 ------- null} h -t 0.83608 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1425 -a 0 -x {9.0 10.0 717 ------- null} r -t 0.83608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1411 -a 0 -x {9.0 10.0 710 ------- null} + -t 0.83608 -s 10 -d 7 -p ack -e 40 -c 0 -i 1430 -a 0 -x {10.0 9.0 710 ------- null} - -t 0.83608 -s 10 -d 7 -p ack -e 40 -c 0 -i 1430 -a 0 -x {10.0 9.0 710 ------- null} h -t 0.83608 -s 10 -d 7 -p ack -e 40 -c 0 -i 1430 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.836544 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1417 -a 0 -x {9.0 10.0 713 ------- null} - -t 0.836544 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1417 -a 0 -x {9.0 10.0 713 ------- null} h -t 0.836544 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1417 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.83664 -s 0 -d 9 -p ack -e 40 -c 0 -i 1420 -a 0 -x {10.0 9.0 705 ------- null} + -t 0.83664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1431 -a 0 -x {9.0 10.0 720 ------- null} - -t 0.83664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1431 -a 0 -x {9.0 10.0 720 ------- null} h -t 0.83664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1431 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.836656 -s 0 -d 9 -p ack -e 40 -c 0 -i 1424 -a 0 -x {10.0 9.0 707 ------- null} - -t 0.836656 -s 0 -d 9 -p ack -e 40 -c 0 -i 1424 -a 0 -x {10.0 9.0 707 ------- null} h -t 0.836656 -s 0 -d 9 -p ack -e 40 -c 0 -i 1424 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.837024 -s 10 -d 7 -p ack -e 40 -c 0 -i 1428 -a 0 -x {10.0 9.0 709 ------- null} + -t 0.837024 -s 7 -d 0 -p ack -e 40 -c 0 -i 1428 -a 0 -x {10.0 9.0 709 ------- null} h -t 0.837024 -s 7 -d 8 -p ack -e 40 -c 0 -i 1428 -a 0 -x {10.0 9.0 709 ------- null} r -t 0.837168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1413 -a 0 -x {9.0 10.0 711 ------- null} + -t 0.837168 -s 10 -d 7 -p ack -e 40 -c 0 -i 1432 -a 0 -x {10.0 9.0 711 ------- null} - -t 0.837168 -s 10 -d 7 -p ack -e 40 -c 0 -i 1432 -a 0 -x {10.0 9.0 711 ------- null} h -t 0.837168 -s 10 -d 7 -p ack -e 40 -c 0 -i 1432 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.837248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1427 -a 0 -x {9.0 10.0 718 ------- null} + -t 0.837248 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1427 -a 0 -x {9.0 10.0 718 ------- null} h -t 0.837248 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1427 -a 0 -x {9.0 10.0 718 ------- null} + -t 0.837632 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1419 -a 0 -x {9.0 10.0 714 ------- null} - -t 0.837632 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1419 -a 0 -x {9.0 10.0 714 ------- null} h -t 0.837632 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1419 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.83768 -s 0 -d 9 -p ack -e 40 -c 0 -i 1422 -a 0 -x {10.0 9.0 706 ------- null} + -t 0.83768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1433 -a 0 -x {9.0 10.0 721 ------- null} - -t 0.83768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1433 -a 0 -x {9.0 10.0 721 ------- null} h -t 0.83768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1433 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.837776 -s 0 -d 9 -p ack -e 40 -c 0 -i 1426 -a 0 -x {10.0 9.0 708 ------- null} - -t 0.837776 -s 0 -d 9 -p ack -e 40 -c 0 -i 1426 -a 0 -x {10.0 9.0 708 ------- null} h -t 0.837776 -s 0 -d 9 -p ack -e 40 -c 0 -i 1426 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.838112 -s 10 -d 7 -p ack -e 40 -c 0 -i 1430 -a 0 -x {10.0 9.0 710 ------- null} + -t 0.838112 -s 7 -d 0 -p ack -e 40 -c 0 -i 1430 -a 0 -x {10.0 9.0 710 ------- null} h -t 0.838112 -s 7 -d 8 -p ack -e 40 -c 0 -i 1430 -a 0 -x {10.0 9.0 710 ------- null} r -t 0.838256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1415 -a 0 -x {9.0 10.0 712 ------- null} + -t 0.838256 -s 10 -d 7 -p ack -e 40 -c 0 -i 1434 -a 0 -x {10.0 9.0 712 ------- null} - -t 0.838256 -s 10 -d 7 -p ack -e 40 -c 0 -i 1434 -a 0 -x {10.0 9.0 712 ------- null} h -t 0.838256 -s 10 -d 7 -p ack -e 40 -c 0 -i 1434 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.838304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1429 -a 0 -x {9.0 10.0 719 ------- null} + -t 0.838304 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1429 -a 0 -x {9.0 10.0 719 ------- null} h -t 0.838304 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1429 -a 0 -x {9.0 10.0 719 ------- null} r -t 0.838688 -s 0 -d 9 -p ack -e 40 -c 0 -i 1424 -a 0 -x {10.0 9.0 707 ------- null} + -t 0.838688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1435 -a 0 -x {9.0 10.0 722 ------- null} - -t 0.838688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1435 -a 0 -x {9.0 10.0 722 ------- null} h -t 0.838688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1435 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.83872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1421 -a 0 -x {9.0 10.0 715 ------- null} - -t 0.83872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1421 -a 0 -x {9.0 10.0 715 ------- null} h -t 0.83872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1421 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.839024 -s 0 -d 9 -p ack -e 40 -c 0 -i 1428 -a 0 -x {10.0 9.0 709 ------- null} - -t 0.839024 -s 0 -d 9 -p ack -e 40 -c 0 -i 1428 -a 0 -x {10.0 9.0 709 ------- null} h -t 0.839024 -s 0 -d 9 -p ack -e 40 -c 0 -i 1428 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.8392 -s 10 -d 7 -p ack -e 40 -c 0 -i 1432 -a 0 -x {10.0 9.0 711 ------- null} + -t 0.8392 -s 7 -d 0 -p ack -e 40 -c 0 -i 1432 -a 0 -x {10.0 9.0 711 ------- null} h -t 0.8392 -s 7 -d 8 -p ack -e 40 -c 0 -i 1432 -a 0 -x {10.0 9.0 711 ------- null} r -t 0.839344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1417 -a 0 -x {9.0 10.0 713 ------- null} + -t 0.839344 -s 10 -d 7 -p ack -e 40 -c 0 -i 1436 -a 0 -x {10.0 9.0 713 ------- null} - -t 0.839344 -s 10 -d 7 -p ack -e 40 -c 0 -i 1436 -a 0 -x {10.0 9.0 713 ------- null} h -t 0.839344 -s 10 -d 7 -p ack -e 40 -c 0 -i 1436 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.83944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1431 -a 0 -x {9.0 10.0 720 ------- null} + -t 0.83944 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1431 -a 0 -x {9.0 10.0 720 ------- null} h -t 0.83944 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1431 -a 0 -x {9.0 10.0 720 ------- null} r -t 0.839808 -s 0 -d 9 -p ack -e 40 -c 0 -i 1426 -a 0 -x {10.0 9.0 708 ------- null} + -t 0.839808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1437 -a 0 -x {9.0 10.0 723 ------- null} - -t 0.839808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1437 -a 0 -x {9.0 10.0 723 ------- null} h -t 0.839808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1437 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.839872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1423 -a 0 -x {9.0 10.0 716 ------- null} - -t 0.839872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1423 -a 0 -x {9.0 10.0 716 ------- null} h -t 0.839872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1423 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.840016 -s 0 -d 9 -p ack -e 40 -c 0 -i 1430 -a 0 -x {10.0 9.0 710 ------- null} - -t 0.840016 -s 0 -d 9 -p ack -e 40 -c 0 -i 1430 -a 0 -x {10.0 9.0 710 ------- null} h -t 0.840016 -s 0 -d 9 -p ack -e 40 -c 0 -i 1430 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.840288 -s 10 -d 7 -p ack -e 40 -c 0 -i 1434 -a 0 -x {10.0 9.0 712 ------- null} + -t 0.840288 -s 7 -d 0 -p ack -e 40 -c 0 -i 1434 -a 0 -x {10.0 9.0 712 ------- null} h -t 0.840288 -s 7 -d 8 -p ack -e 40 -c 0 -i 1434 -a 0 -x {10.0 9.0 712 ------- null} r -t 0.840432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1419 -a 0 -x {9.0 10.0 714 ------- null} + -t 0.840432 -s 10 -d 7 -p ack -e 40 -c 0 -i 1438 -a 0 -x {10.0 9.0 714 ------- null} - -t 0.840432 -s 10 -d 7 -p ack -e 40 -c 0 -i 1438 -a 0 -x {10.0 9.0 714 ------- null} h -t 0.840432 -s 10 -d 7 -p ack -e 40 -c 0 -i 1438 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.84048 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1433 -a 0 -x {9.0 10.0 721 ------- null} + -t 0.84048 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1433 -a 0 -x {9.0 10.0 721 ------- null} h -t 0.84048 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1433 -a 0 -x {9.0 10.0 721 ------- null} + -t 0.84096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1425 -a 0 -x {9.0 10.0 717 ------- null} - -t 0.84096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1425 -a 0 -x {9.0 10.0 717 ------- null} h -t 0.84096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1425 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.841056 -s 0 -d 9 -p ack -e 40 -c 0 -i 1428 -a 0 -x {10.0 9.0 709 ------- null} + -t 0.841056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1439 -a 0 -x {9.0 10.0 724 ------- null} - -t 0.841056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1439 -a 0 -x {9.0 10.0 724 ------- null} h -t 0.841056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1439 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.841136 -s 0 -d 9 -p ack -e 40 -c 0 -i 1432 -a 0 -x {10.0 9.0 711 ------- null} - -t 0.841136 -s 0 -d 9 -p ack -e 40 -c 0 -i 1432 -a 0 -x {10.0 9.0 711 ------- null} h -t 0.841136 -s 0 -d 9 -p ack -e 40 -c 0 -i 1432 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.841376 -s 10 -d 7 -p ack -e 40 -c 0 -i 1436 -a 0 -x {10.0 9.0 713 ------- null} + -t 0.841376 -s 7 -d 0 -p ack -e 40 -c 0 -i 1436 -a 0 -x {10.0 9.0 713 ------- null} h -t 0.841376 -s 7 -d 8 -p ack -e 40 -c 0 -i 1436 -a 0 -x {10.0 9.0 713 ------- null} r -t 0.841488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1435 -a 0 -x {9.0 10.0 722 ------- null} + -t 0.841488 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1435 -a 0 -x {9.0 10.0 722 ------- null} h -t 0.841488 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1435 -a 0 -x {9.0 10.0 722 ------- null} r -t 0.84152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1421 -a 0 -x {9.0 10.0 715 ------- null} + -t 0.84152 -s 10 -d 7 -p ack -e 40 -c 0 -i 1440 -a 0 -x {10.0 9.0 715 ------- null} - -t 0.84152 -s 10 -d 7 -p ack -e 40 -c 0 -i 1440 -a 0 -x {10.0 9.0 715 ------- null} h -t 0.84152 -s 10 -d 7 -p ack -e 40 -c 0 -i 1440 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.842048 -s 0 -d 9 -p ack -e 40 -c 0 -i 1430 -a 0 -x {10.0 9.0 710 ------- null} + -t 0.842048 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1441 -a 0 -x {9.0 10.0 725 ------- null} - -t 0.842048 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1441 -a 0 -x {9.0 10.0 725 ------- null} h -t 0.842048 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1441 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.842048 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1427 -a 0 -x {9.0 10.0 718 ------- null} - -t 0.842048 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1427 -a 0 -x {9.0 10.0 718 ------- null} h -t 0.842048 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1427 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.842352 -s 0 -d 9 -p ack -e 40 -c 0 -i 1434 -a 0 -x {10.0 9.0 712 ------- null} - -t 0.842352 -s 0 -d 9 -p ack -e 40 -c 0 -i 1434 -a 0 -x {10.0 9.0 712 ------- null} h -t 0.842352 -s 0 -d 9 -p ack -e 40 -c 0 -i 1434 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.842464 -s 10 -d 7 -p ack -e 40 -c 0 -i 1438 -a 0 -x {10.0 9.0 714 ------- null} + -t 0.842464 -s 7 -d 0 -p ack -e 40 -c 0 -i 1438 -a 0 -x {10.0 9.0 714 ------- null} h -t 0.842464 -s 7 -d 8 -p ack -e 40 -c 0 -i 1438 -a 0 -x {10.0 9.0 714 ------- null} r -t 0.842608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1437 -a 0 -x {9.0 10.0 723 ------- null} + -t 0.842608 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1437 -a 0 -x {9.0 10.0 723 ------- null} h -t 0.842608 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1437 -a 0 -x {9.0 10.0 723 ------- null} r -t 0.842672 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1423 -a 0 -x {9.0 10.0 716 ------- null} + -t 0.842672 -s 10 -d 7 -p ack -e 40 -c 0 -i 1442 -a 0 -x {10.0 9.0 716 ------- null} - -t 0.842672 -s 10 -d 7 -p ack -e 40 -c 0 -i 1442 -a 0 -x {10.0 9.0 716 ------- null} h -t 0.842672 -s 10 -d 7 -p ack -e 40 -c 0 -i 1442 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.843168 -s 0 -d 9 -p ack -e 40 -c 0 -i 1432 -a 0 -x {10.0 9.0 711 ------- null} + -t 0.843168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1443 -a 0 -x {9.0 10.0 726 ------- null} - -t 0.843168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1443 -a 0 -x {9.0 10.0 726 ------- null} h -t 0.843168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1443 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.843248 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1429 -a 0 -x {9.0 10.0 719 ------- null} - -t 0.843248 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1429 -a 0 -x {9.0 10.0 719 ------- null} h -t 0.843248 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1429 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.843376 -s 0 -d 9 -p ack -e 40 -c 0 -i 1436 -a 0 -x {10.0 9.0 713 ------- null} - -t 0.843376 -s 0 -d 9 -p ack -e 40 -c 0 -i 1436 -a 0 -x {10.0 9.0 713 ------- null} h -t 0.843376 -s 0 -d 9 -p ack -e 40 -c 0 -i 1436 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.843552 -s 10 -d 7 -p ack -e 40 -c 0 -i 1440 -a 0 -x {10.0 9.0 715 ------- null} + -t 0.843552 -s 7 -d 0 -p ack -e 40 -c 0 -i 1440 -a 0 -x {10.0 9.0 715 ------- null} h -t 0.843552 -s 7 -d 8 -p ack -e 40 -c 0 -i 1440 -a 0 -x {10.0 9.0 715 ------- null} r -t 0.84376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1425 -a 0 -x {9.0 10.0 717 ------- null} + -t 0.84376 -s 10 -d 7 -p ack -e 40 -c 0 -i 1444 -a 0 -x {10.0 9.0 717 ------- null} - -t 0.84376 -s 10 -d 7 -p ack -e 40 -c 0 -i 1444 -a 0 -x {10.0 9.0 717 ------- null} h -t 0.84376 -s 10 -d 7 -p ack -e 40 -c 0 -i 1444 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.843856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1439 -a 0 -x {9.0 10.0 724 ------- null} + -t 0.843856 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1439 -a 0 -x {9.0 10.0 724 ------- null} h -t 0.843856 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1439 -a 0 -x {9.0 10.0 724 ------- null} + -t 0.844336 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1431 -a 0 -x {9.0 10.0 720 ------- null} - -t 0.844336 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1431 -a 0 -x {9.0 10.0 720 ------- null} h -t 0.844336 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1431 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.844384 -s 0 -d 9 -p ack -e 40 -c 0 -i 1434 -a 0 -x {10.0 9.0 712 ------- null} + -t 0.844384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1445 -a 0 -x {9.0 10.0 727 ------- null} - -t 0.844384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1445 -a 0 -x {9.0 10.0 727 ------- null} h -t 0.844384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1445 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.844512 -s 0 -d 9 -p ack -e 40 -c 0 -i 1438 -a 0 -x {10.0 9.0 714 ------- null} - -t 0.844512 -s 0 -d 9 -p ack -e 40 -c 0 -i 1438 -a 0 -x {10.0 9.0 714 ------- null} h -t 0.844512 -s 0 -d 9 -p ack -e 40 -c 0 -i 1438 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.844704 -s 10 -d 7 -p ack -e 40 -c 0 -i 1442 -a 0 -x {10.0 9.0 716 ------- null} + -t 0.844704 -s 7 -d 0 -p ack -e 40 -c 0 -i 1442 -a 0 -x {10.0 9.0 716 ------- null} h -t 0.844704 -s 7 -d 8 -p ack -e 40 -c 0 -i 1442 -a 0 -x {10.0 9.0 716 ------- null} r -t 0.844848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1441 -a 0 -x {9.0 10.0 725 ------- null} + -t 0.844848 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1441 -a 0 -x {9.0 10.0 725 ------- null} h -t 0.844848 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1441 -a 0 -x {9.0 10.0 725 ------- null} r -t 0.844848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1427 -a 0 -x {9.0 10.0 718 ------- null} + -t 0.844848 -s 10 -d 7 -p ack -e 40 -c 0 -i 1446 -a 0 -x {10.0 9.0 718 ------- null} - -t 0.844848 -s 10 -d 7 -p ack -e 40 -c 0 -i 1446 -a 0 -x {10.0 9.0 718 ------- null} h -t 0.844848 -s 10 -d 7 -p ack -e 40 -c 0 -i 1446 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.845408 -s 0 -d 9 -p ack -e 40 -c 0 -i 1436 -a 0 -x {10.0 9.0 713 ------- null} + -t 0.845408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1447 -a 0 -x {9.0 10.0 728 ------- null} - -t 0.845408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1447 -a 0 -x {9.0 10.0 728 ------- null} h -t 0.845408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1447 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.845424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1433 -a 0 -x {9.0 10.0 721 ------- null} - -t 0.845424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1433 -a 0 -x {9.0 10.0 721 ------- null} h -t 0.845424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1433 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.845584 -s 0 -d 9 -p ack -e 40 -c 0 -i 1440 -a 0 -x {10.0 9.0 715 ------- null} - -t 0.845584 -s 0 -d 9 -p ack -e 40 -c 0 -i 1440 -a 0 -x {10.0 9.0 715 ------- null} h -t 0.845584 -s 0 -d 9 -p ack -e 40 -c 0 -i 1440 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.845792 -s 10 -d 7 -p ack -e 40 -c 0 -i 1444 -a 0 -x {10.0 9.0 717 ------- null} + -t 0.845792 -s 7 -d 0 -p ack -e 40 -c 0 -i 1444 -a 0 -x {10.0 9.0 717 ------- null} h -t 0.845792 -s 7 -d 8 -p ack -e 40 -c 0 -i 1444 -a 0 -x {10.0 9.0 717 ------- null} r -t 0.845968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1443 -a 0 -x {9.0 10.0 726 ------- null} + -t 0.845968 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1443 -a 0 -x {9.0 10.0 726 ------- null} h -t 0.845968 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1443 -a 0 -x {9.0 10.0 726 ------- null} r -t 0.846048 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1429 -a 0 -x {9.0 10.0 719 ------- null} + -t 0.846048 -s 10 -d 7 -p ack -e 40 -c 0 -i 1448 -a 0 -x {10.0 9.0 719 ------- null} - -t 0.846048 -s 10 -d 7 -p ack -e 40 -c 0 -i 1448 -a 0 -x {10.0 9.0 719 ------- null} h -t 0.846048 -s 10 -d 7 -p ack -e 40 -c 0 -i 1448 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.846512 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1435 -a 0 -x {9.0 10.0 722 ------- null} - -t 0.846512 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1435 -a 0 -x {9.0 10.0 722 ------- null} h -t 0.846512 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1435 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.846544 -s 0 -d 9 -p ack -e 40 -c 0 -i 1438 -a 0 -x {10.0 9.0 714 ------- null} + -t 0.846544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1449 -a 0 -x {9.0 10.0 729 ------- null} - -t 0.846544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1449 -a 0 -x {9.0 10.0 729 ------- null} h -t 0.846544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1449 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.846736 -s 0 -d 9 -p ack -e 40 -c 0 -i 1442 -a 0 -x {10.0 9.0 716 ------- null} - -t 0.846736 -s 0 -d 9 -p ack -e 40 -c 0 -i 1442 -a 0 -x {10.0 9.0 716 ------- null} h -t 0.846736 -s 0 -d 9 -p ack -e 40 -c 0 -i 1442 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.84688 -s 10 -d 7 -p ack -e 40 -c 0 -i 1446 -a 0 -x {10.0 9.0 718 ------- null} + -t 0.84688 -s 7 -d 0 -p ack -e 40 -c 0 -i 1446 -a 0 -x {10.0 9.0 718 ------- null} h -t 0.84688 -s 7 -d 8 -p ack -e 40 -c 0 -i 1446 -a 0 -x {10.0 9.0 718 ------- null} r -t 0.847136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1431 -a 0 -x {9.0 10.0 720 ------- null} + -t 0.847136 -s 10 -d 7 -p ack -e 40 -c 0 -i 1450 -a 0 -x {10.0 9.0 720 ------- null} - -t 0.847136 -s 10 -d 7 -p ack -e 40 -c 0 -i 1450 -a 0 -x {10.0 9.0 720 ------- null} h -t 0.847136 -s 10 -d 7 -p ack -e 40 -c 0 -i 1450 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.847184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1445 -a 0 -x {9.0 10.0 727 ------- null} + -t 0.847184 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1445 -a 0 -x {9.0 10.0 727 ------- null} h -t 0.847184 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1445 -a 0 -x {9.0 10.0 727 ------- null} + -t 0.8476 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1437 -a 0 -x {9.0 10.0 723 ------- null} - -t 0.8476 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1437 -a 0 -x {9.0 10.0 723 ------- null} h -t 0.8476 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1437 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.847616 -s 0 -d 9 -p ack -e 40 -c 0 -i 1440 -a 0 -x {10.0 9.0 715 ------- null} + -t 0.847616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1451 -a 0 -x {9.0 10.0 730 ------- null} - -t 0.847616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1451 -a 0 -x {9.0 10.0 730 ------- null} h -t 0.847616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1451 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.847664 -s 0 -d 9 -p ack -e 40 -c 0 -i 1444 -a 0 -x {10.0 9.0 717 ------- null} - -t 0.847664 -s 0 -d 9 -p ack -e 40 -c 0 -i 1444 -a 0 -x {10.0 9.0 717 ------- null} h -t 0.847664 -s 0 -d 9 -p ack -e 40 -c 0 -i 1444 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.84808 -s 10 -d 7 -p ack -e 40 -c 0 -i 1448 -a 0 -x {10.0 9.0 719 ------- null} + -t 0.84808 -s 7 -d 0 -p ack -e 40 -c 0 -i 1448 -a 0 -x {10.0 9.0 719 ------- null} h -t 0.84808 -s 7 -d 8 -p ack -e 40 -c 0 -i 1448 -a 0 -x {10.0 9.0 719 ------- null} r -t 0.848208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1447 -a 0 -x {9.0 10.0 728 ------- null} + -t 0.848208 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1447 -a 0 -x {9.0 10.0 728 ------- null} h -t 0.848208 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1447 -a 0 -x {9.0 10.0 728 ------- null} r -t 0.848224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1433 -a 0 -x {9.0 10.0 721 ------- null} + -t 0.848224 -s 10 -d 7 -p ack -e 40 -c 0 -i 1452 -a 0 -x {10.0 9.0 721 ------- null} - -t 0.848224 -s 10 -d 7 -p ack -e 40 -c 0 -i 1452 -a 0 -x {10.0 9.0 721 ------- null} h -t 0.848224 -s 10 -d 7 -p ack -e 40 -c 0 -i 1452 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.848688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1439 -a 0 -x {9.0 10.0 724 ------- null} - -t 0.848688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1439 -a 0 -x {9.0 10.0 724 ------- null} h -t 0.848688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1439 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.848768 -s 0 -d 9 -p ack -e 40 -c 0 -i 1442 -a 0 -x {10.0 9.0 716 ------- null} + -t 0.848768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1453 -a 0 -x {9.0 10.0 731 ------- null} - -t 0.848768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1453 -a 0 -x {9.0 10.0 731 ------- null} h -t 0.848768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1453 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.848768 -s 0 -d 9 -p ack -e 40 -c 0 -i 1446 -a 0 -x {10.0 9.0 718 ------- null} - -t 0.848768 -s 0 -d 9 -p ack -e 40 -c 0 -i 1446 -a 0 -x {10.0 9.0 718 ------- null} h -t 0.848768 -s 0 -d 9 -p ack -e 40 -c 0 -i 1446 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.849168 -s 10 -d 7 -p ack -e 40 -c 0 -i 1450 -a 0 -x {10.0 9.0 720 ------- null} + -t 0.849168 -s 7 -d 0 -p ack -e 40 -c 0 -i 1450 -a 0 -x {10.0 9.0 720 ------- null} h -t 0.849168 -s 7 -d 8 -p ack -e 40 -c 0 -i 1450 -a 0 -x {10.0 9.0 720 ------- null} r -t 0.849312 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1435 -a 0 -x {9.0 10.0 722 ------- null} + -t 0.849312 -s 10 -d 7 -p ack -e 40 -c 0 -i 1454 -a 0 -x {10.0 9.0 722 ------- null} - -t 0.849312 -s 10 -d 7 -p ack -e 40 -c 0 -i 1454 -a 0 -x {10.0 9.0 722 ------- null} h -t 0.849312 -s 10 -d 7 -p ack -e 40 -c 0 -i 1454 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.849344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1449 -a 0 -x {9.0 10.0 729 ------- null} + -t 0.849344 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1449 -a 0 -x {9.0 10.0 729 ------- null} h -t 0.849344 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1449 -a 0 -x {9.0 10.0 729 ------- null} r -t 0.849696 -s 0 -d 9 -p ack -e 40 -c 0 -i 1444 -a 0 -x {10.0 9.0 717 ------- null} + -t 0.849696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1455 -a 0 -x {9.0 10.0 732 ------- null} - -t 0.849696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1455 -a 0 -x {9.0 10.0 732 ------- null} h -t 0.849696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1455 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.849776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1441 -a 0 -x {9.0 10.0 725 ------- null} - -t 0.849776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1441 -a 0 -x {9.0 10.0 725 ------- null} h -t 0.849776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1441 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.850064 -s 0 -d 9 -p ack -e 40 -c 0 -i 1448 -a 0 -x {10.0 9.0 719 ------- null} - -t 0.850064 -s 0 -d 9 -p ack -e 40 -c 0 -i 1448 -a 0 -x {10.0 9.0 719 ------- null} h -t 0.850064 -s 0 -d 9 -p ack -e 40 -c 0 -i 1448 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.850256 -s 10 -d 7 -p ack -e 40 -c 0 -i 1452 -a 0 -x {10.0 9.0 721 ------- null} + -t 0.850256 -s 7 -d 0 -p ack -e 40 -c 0 -i 1452 -a 0 -x {10.0 9.0 721 ------- null} h -t 0.850256 -s 7 -d 8 -p ack -e 40 -c 0 -i 1452 -a 0 -x {10.0 9.0 721 ------- null} r -t 0.8504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1437 -a 0 -x {9.0 10.0 723 ------- null} + -t 0.8504 -s 10 -d 7 -p ack -e 40 -c 0 -i 1456 -a 0 -x {10.0 9.0 723 ------- null} - -t 0.8504 -s 10 -d 7 -p ack -e 40 -c 0 -i 1456 -a 0 -x {10.0 9.0 723 ------- null} h -t 0.8504 -s 10 -d 7 -p ack -e 40 -c 0 -i 1456 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.850416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1451 -a 0 -x {9.0 10.0 730 ------- null} + -t 0.850416 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1451 -a 0 -x {9.0 10.0 730 ------- null} h -t 0.850416 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1451 -a 0 -x {9.0 10.0 730 ------- null} r -t 0.8508 -s 0 -d 9 -p ack -e 40 -c 0 -i 1446 -a 0 -x {10.0 9.0 718 ------- null} + -t 0.8508 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1457 -a 0 -x {9.0 10.0 733 ------- null} - -t 0.8508 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1457 -a 0 -x {9.0 10.0 733 ------- null} h -t 0.8508 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1457 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.851056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1443 -a 0 -x {9.0 10.0 726 ------- null} - -t 0.851056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1443 -a 0 -x {9.0 10.0 726 ------- null} h -t 0.851056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1443 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.851344 -s 10 -d 7 -p ack -e 40 -c 0 -i 1454 -a 0 -x {10.0 9.0 722 ------- null} + -t 0.851344 -s 7 -d 0 -p ack -e 40 -c 0 -i 1454 -a 0 -x {10.0 9.0 722 ------- null} h -t 0.851344 -s 7 -d 8 -p ack -e 40 -c 0 -i 1454 -a 0 -x {10.0 9.0 722 ------- null} + -t 0.851344 -s 0 -d 9 -p ack -e 40 -c 0 -i 1450 -a 0 -x {10.0 9.0 720 ------- null} - -t 0.851344 -s 0 -d 9 -p ack -e 40 -c 0 -i 1450 -a 0 -x {10.0 9.0 720 ------- null} h -t 0.851344 -s 0 -d 9 -p ack -e 40 -c 0 -i 1450 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.851488 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1439 -a 0 -x {9.0 10.0 724 ------- null} + -t 0.851488 -s 10 -d 7 -p ack -e 40 -c 0 -i 1458 -a 0 -x {10.0 9.0 724 ------- null} - -t 0.851488 -s 10 -d 7 -p ack -e 40 -c 0 -i 1458 -a 0 -x {10.0 9.0 724 ------- null} h -t 0.851488 -s 10 -d 7 -p ack -e 40 -c 0 -i 1458 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.851568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1453 -a 0 -x {9.0 10.0 731 ------- null} + -t 0.851568 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1453 -a 0 -x {9.0 10.0 731 ------- null} h -t 0.851568 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1453 -a 0 -x {9.0 10.0 731 ------- null} r -t 0.852096 -s 0 -d 9 -p ack -e 40 -c 0 -i 1448 -a 0 -x {10.0 9.0 719 ------- null} + -t 0.852096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1459 -a 0 -x {9.0 10.0 734 ------- null} - -t 0.852096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1459 -a 0 -x {9.0 10.0 734 ------- null} h -t 0.852096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1459 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.852368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1445 -a 0 -x {9.0 10.0 727 ------- null} - -t 0.852368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1445 -a 0 -x {9.0 10.0 727 ------- null} h -t 0.852368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1445 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.852432 -s 10 -d 7 -p ack -e 40 -c 0 -i 1456 -a 0 -x {10.0 9.0 723 ------- null} + -t 0.852432 -s 7 -d 0 -p ack -e 40 -c 0 -i 1456 -a 0 -x {10.0 9.0 723 ------- null} h -t 0.852432 -s 7 -d 8 -p ack -e 40 -c 0 -i 1456 -a 0 -x {10.0 9.0 723 ------- null} r -t 0.852496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1455 -a 0 -x {9.0 10.0 732 ------- null} + -t 0.852496 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1455 -a 0 -x {9.0 10.0 732 ------- null} h -t 0.852496 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1455 -a 0 -x {9.0 10.0 732 ------- null} r -t 0.852576 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1441 -a 0 -x {9.0 10.0 725 ------- null} + -t 0.852576 -s 10 -d 7 -p ack -e 40 -c 0 -i 1460 -a 0 -x {10.0 9.0 725 ------- null} - -t 0.852576 -s 10 -d 7 -p ack -e 40 -c 0 -i 1460 -a 0 -x {10.0 9.0 725 ------- null} h -t 0.852576 -s 10 -d 7 -p ack -e 40 -c 0 -i 1460 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.852624 -s 0 -d 9 -p ack -e 40 -c 0 -i 1452 -a 0 -x {10.0 9.0 721 ------- null} - -t 0.852624 -s 0 -d 9 -p ack -e 40 -c 0 -i 1452 -a 0 -x {10.0 9.0 721 ------- null} h -t 0.852624 -s 0 -d 9 -p ack -e 40 -c 0 -i 1452 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.853376 -s 0 -d 9 -p ack -e 40 -c 0 -i 1450 -a 0 -x {10.0 9.0 720 ------- null} + -t 0.853376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1461 -a 0 -x {9.0 10.0 735 ------- null} - -t 0.853376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1461 -a 0 -x {9.0 10.0 735 ------- null} h -t 0.853376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1461 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.853456 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1447 -a 0 -x {9.0 10.0 728 ------- null} - -t 0.853456 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1447 -a 0 -x {9.0 10.0 728 ------- null} h -t 0.853456 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1447 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.85352 -s 10 -d 7 -p ack -e 40 -c 0 -i 1458 -a 0 -x {10.0 9.0 724 ------- null} + -t 0.85352 -s 7 -d 0 -p ack -e 40 -c 0 -i 1458 -a 0 -x {10.0 9.0 724 ------- null} h -t 0.85352 -s 7 -d 8 -p ack -e 40 -c 0 -i 1458 -a 0 -x {10.0 9.0 724 ------- null} r -t 0.8536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1457 -a 0 -x {9.0 10.0 733 ------- null} + -t 0.8536 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1457 -a 0 -x {9.0 10.0 733 ------- null} h -t 0.8536 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1457 -a 0 -x {9.0 10.0 733 ------- null} + -t 0.853664 -s 0 -d 9 -p ack -e 40 -c 0 -i 1454 -a 0 -x {10.0 9.0 722 ------- null} - -t 0.853664 -s 0 -d 9 -p ack -e 40 -c 0 -i 1454 -a 0 -x {10.0 9.0 722 ------- null} h -t 0.853664 -s 0 -d 9 -p ack -e 40 -c 0 -i 1454 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.853856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1443 -a 0 -x {9.0 10.0 726 ------- null} + -t 0.853856 -s 10 -d 7 -p ack -e 40 -c 0 -i 1462 -a 0 -x {10.0 9.0 726 ------- null} - -t 0.853856 -s 10 -d 7 -p ack -e 40 -c 0 -i 1462 -a 0 -x {10.0 9.0 726 ------- null} h -t 0.853856 -s 10 -d 7 -p ack -e 40 -c 0 -i 1462 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.854544 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1449 -a 0 -x {9.0 10.0 729 ------- null} - -t 0.854544 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1449 -a 0 -x {9.0 10.0 729 ------- null} h -t 0.854544 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1449 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.854608 -s 10 -d 7 -p ack -e 40 -c 0 -i 1460 -a 0 -x {10.0 9.0 725 ------- null} + -t 0.854608 -s 7 -d 0 -p ack -e 40 -c 0 -i 1460 -a 0 -x {10.0 9.0 725 ------- null} h -t 0.854608 -s 7 -d 8 -p ack -e 40 -c 0 -i 1460 -a 0 -x {10.0 9.0 725 ------- null} r -t 0.854656 -s 0 -d 9 -p ack -e 40 -c 0 -i 1452 -a 0 -x {10.0 9.0 721 ------- null} + -t 0.854656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1463 -a 0 -x {9.0 10.0 736 ------- null} - -t 0.854656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1463 -a 0 -x {9.0 10.0 736 ------- null} h -t 0.854656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1463 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.85472 -s 0 -d 9 -p ack -e 40 -c 0 -i 1456 -a 0 -x {10.0 9.0 723 ------- null} - -t 0.85472 -s 0 -d 9 -p ack -e 40 -c 0 -i 1456 -a 0 -x {10.0 9.0 723 ------- null} h -t 0.85472 -s 0 -d 9 -p ack -e 40 -c 0 -i 1456 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.854896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1459 -a 0 -x {9.0 10.0 734 ------- null} + -t 0.854896 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1459 -a 0 -x {9.0 10.0 734 ------- null} h -t 0.854896 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1459 -a 0 -x {9.0 10.0 734 ------- null} r -t 0.855168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1445 -a 0 -x {9.0 10.0 727 ------- null} + -t 0.855168 -s 10 -d 7 -p ack -e 40 -c 0 -i 1464 -a 0 -x {10.0 9.0 727 ------- null} - -t 0.855168 -s 10 -d 7 -p ack -e 40 -c 0 -i 1464 -a 0 -x {10.0 9.0 727 ------- null} h -t 0.855168 -s 10 -d 7 -p ack -e 40 -c 0 -i 1464 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.855632 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1451 -a 0 -x {9.0 10.0 730 ------- null} - -t 0.855632 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1451 -a 0 -x {9.0 10.0 730 ------- null} h -t 0.855632 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1451 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.855696 -s 0 -d 9 -p ack -e 40 -c 0 -i 1454 -a 0 -x {10.0 9.0 722 ------- null} + -t 0.855696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1465 -a 0 -x {9.0 10.0 737 ------- null} - -t 0.855696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1465 -a 0 -x {9.0 10.0 737 ------- null} h -t 0.855696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1465 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.85576 -s 0 -d 9 -p ack -e 40 -c 0 -i 1458 -a 0 -x {10.0 9.0 724 ------- null} - -t 0.85576 -s 0 -d 9 -p ack -e 40 -c 0 -i 1458 -a 0 -x {10.0 9.0 724 ------- null} h -t 0.85576 -s 0 -d 9 -p ack -e 40 -c 0 -i 1458 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.855888 -s 10 -d 7 -p ack -e 40 -c 0 -i 1462 -a 0 -x {10.0 9.0 726 ------- null} + -t 0.855888 -s 7 -d 0 -p ack -e 40 -c 0 -i 1462 -a 0 -x {10.0 9.0 726 ------- null} h -t 0.855888 -s 7 -d 8 -p ack -e 40 -c 0 -i 1462 -a 0 -x {10.0 9.0 726 ------- null} r -t 0.856176 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1461 -a 0 -x {9.0 10.0 735 ------- null} + -t 0.856176 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1461 -a 0 -x {9.0 10.0 735 ------- null} h -t 0.856176 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1461 -a 0 -x {9.0 10.0 735 ------- null} r -t 0.856256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1447 -a 0 -x {9.0 10.0 728 ------- null} + -t 0.856256 -s 10 -d 7 -p ack -e 40 -c 0 -i 1466 -a 0 -x {10.0 9.0 728 ------- null} - -t 0.856256 -s 10 -d 7 -p ack -e 40 -c 0 -i 1466 -a 0 -x {10.0 9.0 728 ------- null} h -t 0.856256 -s 10 -d 7 -p ack -e 40 -c 0 -i 1466 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.85672 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1453 -a 0 -x {9.0 10.0 731 ------- null} - -t 0.85672 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1453 -a 0 -x {9.0 10.0 731 ------- null} h -t 0.85672 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1453 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.856752 -s 0 -d 9 -p ack -e 40 -c 0 -i 1456 -a 0 -x {10.0 9.0 723 ------- null} + -t 0.856752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1467 -a 0 -x {9.0 10.0 738 ------- null} - -t 0.856752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1467 -a 0 -x {9.0 10.0 738 ------- null} h -t 0.856752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1467 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.856912 -s 0 -d 9 -p ack -e 40 -c 0 -i 1460 -a 0 -x {10.0 9.0 725 ------- null} - -t 0.856912 -s 0 -d 9 -p ack -e 40 -c 0 -i 1460 -a 0 -x {10.0 9.0 725 ------- null} h -t 0.856912 -s 0 -d 9 -p ack -e 40 -c 0 -i 1460 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.8572 -s 10 -d 7 -p ack -e 40 -c 0 -i 1464 -a 0 -x {10.0 9.0 727 ------- null} + -t 0.8572 -s 7 -d 0 -p ack -e 40 -c 0 -i 1464 -a 0 -x {10.0 9.0 727 ------- null} h -t 0.8572 -s 7 -d 8 -p ack -e 40 -c 0 -i 1464 -a 0 -x {10.0 9.0 727 ------- null} r -t 0.857344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1449 -a 0 -x {9.0 10.0 729 ------- null} + -t 0.857344 -s 10 -d 7 -p ack -e 40 -c 0 -i 1468 -a 0 -x {10.0 9.0 729 ------- null} - -t 0.857344 -s 10 -d 7 -p ack -e 40 -c 0 -i 1468 -a 0 -x {10.0 9.0 729 ------- null} h -t 0.857344 -s 10 -d 7 -p ack -e 40 -c 0 -i 1468 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.857456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1463 -a 0 -x {9.0 10.0 736 ------- null} + -t 0.857456 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1463 -a 0 -x {9.0 10.0 736 ------- null} h -t 0.857456 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1463 -a 0 -x {9.0 10.0 736 ------- null} r -t 0.857792 -s 0 -d 9 -p ack -e 40 -c 0 -i 1458 -a 0 -x {10.0 9.0 724 ------- null} + -t 0.857792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1469 -a 0 -x {9.0 10.0 739 ------- null} - -t 0.857792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1469 -a 0 -x {9.0 10.0 739 ------- null} h -t 0.857792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1469 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.857808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1455 -a 0 -x {9.0 10.0 732 ------- null} - -t 0.857808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1455 -a 0 -x {9.0 10.0 732 ------- null} h -t 0.857808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1455 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.858064 -s 0 -d 9 -p ack -e 40 -c 0 -i 1462 -a 0 -x {10.0 9.0 726 ------- null} - -t 0.858064 -s 0 -d 9 -p ack -e 40 -c 0 -i 1462 -a 0 -x {10.0 9.0 726 ------- null} h -t 0.858064 -s 0 -d 9 -p ack -e 40 -c 0 -i 1462 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.858288 -s 10 -d 7 -p ack -e 40 -c 0 -i 1466 -a 0 -x {10.0 9.0 728 ------- null} + -t 0.858288 -s 7 -d 0 -p ack -e 40 -c 0 -i 1466 -a 0 -x {10.0 9.0 728 ------- null} h -t 0.858288 -s 7 -d 8 -p ack -e 40 -c 0 -i 1466 -a 0 -x {10.0 9.0 728 ------- null} r -t 0.858432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1451 -a 0 -x {9.0 10.0 730 ------- null} + -t 0.858432 -s 10 -d 7 -p ack -e 40 -c 0 -i 1470 -a 0 -x {10.0 9.0 730 ------- null} - -t 0.858432 -s 10 -d 7 -p ack -e 40 -c 0 -i 1470 -a 0 -x {10.0 9.0 730 ------- null} h -t 0.858432 -s 10 -d 7 -p ack -e 40 -c 0 -i 1470 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.858496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1465 -a 0 -x {9.0 10.0 737 ------- null} + -t 0.858496 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1465 -a 0 -x {9.0 10.0 737 ------- null} h -t 0.858496 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1465 -a 0 -x {9.0 10.0 737 ------- null} + -t 0.858896 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1457 -a 0 -x {9.0 10.0 733 ------- null} - -t 0.858896 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1457 -a 0 -x {9.0 10.0 733 ------- null} h -t 0.858896 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1457 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.858944 -s 0 -d 9 -p ack -e 40 -c 0 -i 1460 -a 0 -x {10.0 9.0 725 ------- null} + -t 0.858944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1471 -a 0 -x {9.0 10.0 740 ------- null} - -t 0.858944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1471 -a 0 -x {9.0 10.0 740 ------- null} h -t 0.858944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1471 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.859136 -s 0 -d 9 -p ack -e 40 -c 0 -i 1464 -a 0 -x {10.0 9.0 727 ------- null} - -t 0.859136 -s 0 -d 9 -p ack -e 40 -c 0 -i 1464 -a 0 -x {10.0 9.0 727 ------- null} h -t 0.859136 -s 0 -d 9 -p ack -e 40 -c 0 -i 1464 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.859376 -s 10 -d 7 -p ack -e 40 -c 0 -i 1468 -a 0 -x {10.0 9.0 729 ------- null} + -t 0.859376 -s 7 -d 0 -p ack -e 40 -c 0 -i 1468 -a 0 -x {10.0 9.0 729 ------- null} h -t 0.859376 -s 7 -d 8 -p ack -e 40 -c 0 -i 1468 -a 0 -x {10.0 9.0 729 ------- null} r -t 0.85952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1453 -a 0 -x {9.0 10.0 731 ------- null} + -t 0.85952 -s 10 -d 7 -p ack -e 40 -c 0 -i 1472 -a 0 -x {10.0 9.0 731 ------- null} - -t 0.85952 -s 10 -d 7 -p ack -e 40 -c 0 -i 1472 -a 0 -x {10.0 9.0 731 ------- null} h -t 0.85952 -s 10 -d 7 -p ack -e 40 -c 0 -i 1472 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.859552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1467 -a 0 -x {9.0 10.0 738 ------- null} + -t 0.859552 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1467 -a 0 -x {9.0 10.0 738 ------- null} h -t 0.859552 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1467 -a 0 -x {9.0 10.0 738 ------- null} + -t 0.859984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1459 -a 0 -x {9.0 10.0 734 ------- null} - -t 0.859984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1459 -a 0 -x {9.0 10.0 734 ------- null} h -t 0.859984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1459 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.860096 -s 0 -d 9 -p ack -e 40 -c 0 -i 1462 -a 0 -x {10.0 9.0 726 ------- null} + -t 0.860096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1473 -a 0 -x {9.0 10.0 741 ------- null} - -t 0.860096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1473 -a 0 -x {9.0 10.0 741 ------- null} h -t 0.860096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1473 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.860208 -s 0 -d 9 -p ack -e 40 -c 0 -i 1466 -a 0 -x {10.0 9.0 728 ------- null} - -t 0.860208 -s 0 -d 9 -p ack -e 40 -c 0 -i 1466 -a 0 -x {10.0 9.0 728 ------- null} h -t 0.860208 -s 0 -d 9 -p ack -e 40 -c 0 -i 1466 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.860464 -s 10 -d 7 -p ack -e 40 -c 0 -i 1470 -a 0 -x {10.0 9.0 730 ------- null} + -t 0.860464 -s 7 -d 0 -p ack -e 40 -c 0 -i 1470 -a 0 -x {10.0 9.0 730 ------- null} h -t 0.860464 -s 7 -d 8 -p ack -e 40 -c 0 -i 1470 -a 0 -x {10.0 9.0 730 ------- null} r -t 0.860592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1469 -a 0 -x {9.0 10.0 739 ------- null} + -t 0.860592 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1469 -a 0 -x {9.0 10.0 739 ------- null} h -t 0.860592 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1469 -a 0 -x {9.0 10.0 739 ------- null} r -t 0.860608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1455 -a 0 -x {9.0 10.0 732 ------- null} + -t 0.860608 -s 10 -d 7 -p ack -e 40 -c 0 -i 1474 -a 0 -x {10.0 9.0 732 ------- null} - -t 0.860608 -s 10 -d 7 -p ack -e 40 -c 0 -i 1474 -a 0 -x {10.0 9.0 732 ------- null} h -t 0.860608 -s 10 -d 7 -p ack -e 40 -c 0 -i 1474 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.861072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1461 -a 0 -x {9.0 10.0 735 ------- null} - -t 0.861072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1461 -a 0 -x {9.0 10.0 735 ------- null} h -t 0.861072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1461 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.861168 -s 0 -d 9 -p ack -e 40 -c 0 -i 1464 -a 0 -x {10.0 9.0 727 ------- null} + -t 0.861168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1475 -a 0 -x {9.0 10.0 742 ------- null} - -t 0.861168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1475 -a 0 -x {9.0 10.0 742 ------- null} h -t 0.861168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1475 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.861248 -s 0 -d 9 -p ack -e 40 -c 0 -i 1468 -a 0 -x {10.0 9.0 729 ------- null} - -t 0.861248 -s 0 -d 9 -p ack -e 40 -c 0 -i 1468 -a 0 -x {10.0 9.0 729 ------- null} h -t 0.861248 -s 0 -d 9 -p ack -e 40 -c 0 -i 1468 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.861552 -s 10 -d 7 -p ack -e 40 -c 0 -i 1472 -a 0 -x {10.0 9.0 731 ------- null} + -t 0.861552 -s 7 -d 0 -p ack -e 40 -c 0 -i 1472 -a 0 -x {10.0 9.0 731 ------- null} h -t 0.861552 -s 7 -d 8 -p ack -e 40 -c 0 -i 1472 -a 0 -x {10.0 9.0 731 ------- null} r -t 0.861696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1457 -a 0 -x {9.0 10.0 733 ------- null} + -t 0.861696 -s 10 -d 7 -p ack -e 40 -c 0 -i 1476 -a 0 -x {10.0 9.0 733 ------- null} - -t 0.861696 -s 10 -d 7 -p ack -e 40 -c 0 -i 1476 -a 0 -x {10.0 9.0 733 ------- null} h -t 0.861696 -s 10 -d 7 -p ack -e 40 -c 0 -i 1476 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.861744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1471 -a 0 -x {9.0 10.0 740 ------- null} + -t 0.861744 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1471 -a 0 -x {9.0 10.0 740 ------- null} h -t 0.861744 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1471 -a 0 -x {9.0 10.0 740 ------- null} + -t 0.86216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1463 -a 0 -x {9.0 10.0 736 ------- null} - -t 0.86216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1463 -a 0 -x {9.0 10.0 736 ------- null} h -t 0.86216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1463 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.86224 -s 0 -d 9 -p ack -e 40 -c 0 -i 1466 -a 0 -x {10.0 9.0 728 ------- null} + -t 0.86224 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1477 -a 0 -x {9.0 10.0 743 ------- null} - -t 0.86224 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1477 -a 0 -x {9.0 10.0 743 ------- null} h -t 0.86224 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1477 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.862464 -s 0 -d 9 -p ack -e 40 -c 0 -i 1470 -a 0 -x {10.0 9.0 730 ------- null} - -t 0.862464 -s 0 -d 9 -p ack -e 40 -c 0 -i 1470 -a 0 -x {10.0 9.0 730 ------- null} h -t 0.862464 -s 0 -d 9 -p ack -e 40 -c 0 -i 1470 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.86264 -s 10 -d 7 -p ack -e 40 -c 0 -i 1474 -a 0 -x {10.0 9.0 732 ------- null} + -t 0.86264 -s 7 -d 0 -p ack -e 40 -c 0 -i 1474 -a 0 -x {10.0 9.0 732 ------- null} h -t 0.86264 -s 7 -d 8 -p ack -e 40 -c 0 -i 1474 -a 0 -x {10.0 9.0 732 ------- null} r -t 0.862784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1459 -a 0 -x {9.0 10.0 734 ------- null} + -t 0.862784 -s 10 -d 7 -p ack -e 40 -c 0 -i 1478 -a 0 -x {10.0 9.0 734 ------- null} - -t 0.862784 -s 10 -d 7 -p ack -e 40 -c 0 -i 1478 -a 0 -x {10.0 9.0 734 ------- null} h -t 0.862784 -s 10 -d 7 -p ack -e 40 -c 0 -i 1478 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.862896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1473 -a 0 -x {9.0 10.0 741 ------- null} + -t 0.862896 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1473 -a 0 -x {9.0 10.0 741 ------- null} h -t 0.862896 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1473 -a 0 -x {9.0 10.0 741 ------- null} r -t 0.86328 -s 0 -d 9 -p ack -e 40 -c 0 -i 1468 -a 0 -x {10.0 9.0 729 ------- null} + -t 0.86328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1479 -a 0 -x {9.0 10.0 744 ------- null} - -t 0.86328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1479 -a 0 -x {9.0 10.0 744 ------- null} h -t 0.86328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1479 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.863504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1465 -a 0 -x {9.0 10.0 737 ------- null} - -t 0.863504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1465 -a 0 -x {9.0 10.0 737 ------- null} h -t 0.863504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1465 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.863632 -s 0 -d 9 -p ack -e 40 -c 0 -i 1472 -a 0 -x {10.0 9.0 731 ------- null} - -t 0.863632 -s 0 -d 9 -p ack -e 40 -c 0 -i 1472 -a 0 -x {10.0 9.0 731 ------- null} h -t 0.863632 -s 0 -d 9 -p ack -e 40 -c 0 -i 1472 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.863728 -s 10 -d 7 -p ack -e 40 -c 0 -i 1476 -a 0 -x {10.0 9.0 733 ------- null} + -t 0.863728 -s 7 -d 0 -p ack -e 40 -c 0 -i 1476 -a 0 -x {10.0 9.0 733 ------- null} h -t 0.863728 -s 7 -d 8 -p ack -e 40 -c 0 -i 1476 -a 0 -x {10.0 9.0 733 ------- null} r -t 0.863872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1461 -a 0 -x {9.0 10.0 735 ------- null} + -t 0.863872 -s 10 -d 7 -p ack -e 40 -c 0 -i 1480 -a 0 -x {10.0 9.0 735 ------- null} - -t 0.863872 -s 10 -d 7 -p ack -e 40 -c 0 -i 1480 -a 0 -x {10.0 9.0 735 ------- null} h -t 0.863872 -s 10 -d 7 -p ack -e 40 -c 0 -i 1480 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.863968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1475 -a 0 -x {9.0 10.0 742 ------- null} + -t 0.863968 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1475 -a 0 -x {9.0 10.0 742 ------- null} h -t 0.863968 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1475 -a 0 -x {9.0 10.0 742 ------- null} r -t 0.864496 -s 0 -d 9 -p ack -e 40 -c 0 -i 1470 -a 0 -x {10.0 9.0 730 ------- null} + -t 0.864496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1481 -a 0 -x {9.0 10.0 745 ------- null} - -t 0.864496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1481 -a 0 -x {9.0 10.0 745 ------- null} h -t 0.864496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1481 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.864592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1467 -a 0 -x {9.0 10.0 738 ------- null} - -t 0.864592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1467 -a 0 -x {9.0 10.0 738 ------- null} h -t 0.864592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1467 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.864736 -s 0 -d 9 -p ack -e 40 -c 0 -i 1474 -a 0 -x {10.0 9.0 732 ------- null} - -t 0.864736 -s 0 -d 9 -p ack -e 40 -c 0 -i 1474 -a 0 -x {10.0 9.0 732 ------- null} h -t 0.864736 -s 0 -d 9 -p ack -e 40 -c 0 -i 1474 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.864816 -s 10 -d 7 -p ack -e 40 -c 0 -i 1478 -a 0 -x {10.0 9.0 734 ------- null} + -t 0.864816 -s 7 -d 0 -p ack -e 40 -c 0 -i 1478 -a 0 -x {10.0 9.0 734 ------- null} h -t 0.864816 -s 7 -d 8 -p ack -e 40 -c 0 -i 1478 -a 0 -x {10.0 9.0 734 ------- null} r -t 0.86496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1463 -a 0 -x {9.0 10.0 736 ------- null} + -t 0.86496 -s 10 -d 7 -p ack -e 40 -c 0 -i 1482 -a 0 -x {10.0 9.0 736 ------- null} - -t 0.86496 -s 10 -d 7 -p ack -e 40 -c 0 -i 1482 -a 0 -x {10.0 9.0 736 ------- null} h -t 0.86496 -s 10 -d 7 -p ack -e 40 -c 0 -i 1482 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.86504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1477 -a 0 -x {9.0 10.0 743 ------- null} + -t 0.86504 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1477 -a 0 -x {9.0 10.0 743 ------- null} h -t 0.86504 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1477 -a 0 -x {9.0 10.0 743 ------- null} r -t 0.865664 -s 0 -d 9 -p ack -e 40 -c 0 -i 1472 -a 0 -x {10.0 9.0 731 ------- null} + -t 0.865664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1483 -a 0 -x {9.0 10.0 746 ------- null} - -t 0.865664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1483 -a 0 -x {9.0 10.0 746 ------- null} h -t 0.865664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1483 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.86568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1469 -a 0 -x {9.0 10.0 739 ------- null} - -t 0.86568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1469 -a 0 -x {9.0 10.0 739 ------- null} h -t 0.86568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1469 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.865872 -s 0 -d 9 -p ack -e 40 -c 0 -i 1476 -a 0 -x {10.0 9.0 733 ------- null} - -t 0.865872 -s 0 -d 9 -p ack -e 40 -c 0 -i 1476 -a 0 -x {10.0 9.0 733 ------- null} h -t 0.865872 -s 0 -d 9 -p ack -e 40 -c 0 -i 1476 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.865904 -s 10 -d 7 -p ack -e 40 -c 0 -i 1480 -a 0 -x {10.0 9.0 735 ------- null} + -t 0.865904 -s 7 -d 0 -p ack -e 40 -c 0 -i 1480 -a 0 -x {10.0 9.0 735 ------- null} h -t 0.865904 -s 7 -d 8 -p ack -e 40 -c 0 -i 1480 -a 0 -x {10.0 9.0 735 ------- null} r -t 0.86608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1479 -a 0 -x {9.0 10.0 744 ------- null} + -t 0.86608 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1479 -a 0 -x {9.0 10.0 744 ------- null} h -t 0.86608 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1479 -a 0 -x {9.0 10.0 744 ------- null} r -t 0.866304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1465 -a 0 -x {9.0 10.0 737 ------- null} + -t 0.866304 -s 10 -d 7 -p ack -e 40 -c 0 -i 1484 -a 0 -x {10.0 9.0 737 ------- null} - -t 0.866304 -s 10 -d 7 -p ack -e 40 -c 0 -i 1484 -a 0 -x {10.0 9.0 737 ------- null} h -t 0.866304 -s 10 -d 7 -p ack -e 40 -c 0 -i 1484 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.866768 -s 0 -d 9 -p ack -e 40 -c 0 -i 1474 -a 0 -x {10.0 9.0 732 ------- null} + -t 0.866768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1485 -a 0 -x {9.0 10.0 747 ------- null} - -t 0.866768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1485 -a 0 -x {9.0 10.0 747 ------- null} h -t 0.866768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1485 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.866768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1471 -a 0 -x {9.0 10.0 740 ------- null} - -t 0.866768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1471 -a 0 -x {9.0 10.0 740 ------- null} h -t 0.866768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1471 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.866832 -s 0 -d 9 -p ack -e 40 -c 0 -i 1478 -a 0 -x {10.0 9.0 734 ------- null} - -t 0.866832 -s 0 -d 9 -p ack -e 40 -c 0 -i 1478 -a 0 -x {10.0 9.0 734 ------- null} h -t 0.866832 -s 0 -d 9 -p ack -e 40 -c 0 -i 1478 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.866992 -s 10 -d 7 -p ack -e 40 -c 0 -i 1482 -a 0 -x {10.0 9.0 736 ------- null} + -t 0.866992 -s 7 -d 0 -p ack -e 40 -c 0 -i 1482 -a 0 -x {10.0 9.0 736 ------- null} h -t 0.866992 -s 7 -d 8 -p ack -e 40 -c 0 -i 1482 -a 0 -x {10.0 9.0 736 ------- null} r -t 0.867296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1481 -a 0 -x {9.0 10.0 745 ------- null} + -t 0.867296 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1481 -a 0 -x {9.0 10.0 745 ------- null} h -t 0.867296 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1481 -a 0 -x {9.0 10.0 745 ------- null} r -t 0.867392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1467 -a 0 -x {9.0 10.0 738 ------- null} + -t 0.867392 -s 10 -d 7 -p ack -e 40 -c 0 -i 1486 -a 0 -x {10.0 9.0 738 ------- null} - -t 0.867392 -s 10 -d 7 -p ack -e 40 -c 0 -i 1486 -a 0 -x {10.0 9.0 738 ------- null} h -t 0.867392 -s 10 -d 7 -p ack -e 40 -c 0 -i 1486 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.867856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1473 -a 0 -x {9.0 10.0 741 ------- null} - -t 0.867856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1473 -a 0 -x {9.0 10.0 741 ------- null} h -t 0.867856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1473 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.867904 -s 0 -d 9 -p ack -e 40 -c 0 -i 1476 -a 0 -x {10.0 9.0 733 ------- null} + -t 0.867904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1487 -a 0 -x {9.0 10.0 748 ------- null} - -t 0.867904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1487 -a 0 -x {9.0 10.0 748 ------- null} h -t 0.867904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1487 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.868112 -s 0 -d 9 -p ack -e 40 -c 0 -i 1480 -a 0 -x {10.0 9.0 735 ------- null} - -t 0.868112 -s 0 -d 9 -p ack -e 40 -c 0 -i 1480 -a 0 -x {10.0 9.0 735 ------- null} h -t 0.868112 -s 0 -d 9 -p ack -e 40 -c 0 -i 1480 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.868336 -s 10 -d 7 -p ack -e 40 -c 0 -i 1484 -a 0 -x {10.0 9.0 737 ------- null} + -t 0.868336 -s 7 -d 0 -p ack -e 40 -c 0 -i 1484 -a 0 -x {10.0 9.0 737 ------- null} h -t 0.868336 -s 7 -d 8 -p ack -e 40 -c 0 -i 1484 -a 0 -x {10.0 9.0 737 ------- null} r -t 0.868464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1483 -a 0 -x {9.0 10.0 746 ------- null} + -t 0.868464 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1483 -a 0 -x {9.0 10.0 746 ------- null} h -t 0.868464 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1483 -a 0 -x {9.0 10.0 746 ------- null} r -t 0.86848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1469 -a 0 -x {9.0 10.0 739 ------- null} + -t 0.86848 -s 10 -d 7 -p ack -e 40 -c 0 -i 1488 -a 0 -x {10.0 9.0 739 ------- null} - -t 0.86848 -s 10 -d 7 -p ack -e 40 -c 0 -i 1488 -a 0 -x {10.0 9.0 739 ------- null} h -t 0.86848 -s 10 -d 7 -p ack -e 40 -c 0 -i 1488 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.868864 -s 0 -d 9 -p ack -e 40 -c 0 -i 1478 -a 0 -x {10.0 9.0 734 ------- null} + -t 0.868864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1489 -a 0 -x {9.0 10.0 749 ------- null} - -t 0.868864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1489 -a 0 -x {9.0 10.0 749 ------- null} h -t 0.868864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1489 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.868944 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1475 -a 0 -x {9.0 10.0 742 ------- null} - -t 0.868944 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1475 -a 0 -x {9.0 10.0 742 ------- null} h -t 0.868944 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1475 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.869168 -s 0 -d 9 -p ack -e 40 -c 0 -i 1482 -a 0 -x {10.0 9.0 736 ------- null} - -t 0.869168 -s 0 -d 9 -p ack -e 40 -c 0 -i 1482 -a 0 -x {10.0 9.0 736 ------- null} h -t 0.869168 -s 0 -d 9 -p ack -e 40 -c 0 -i 1482 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.869424 -s 10 -d 7 -p ack -e 40 -c 0 -i 1486 -a 0 -x {10.0 9.0 738 ------- null} + -t 0.869424 -s 7 -d 0 -p ack -e 40 -c 0 -i 1486 -a 0 -x {10.0 9.0 738 ------- null} h -t 0.869424 -s 7 -d 8 -p ack -e 40 -c 0 -i 1486 -a 0 -x {10.0 9.0 738 ------- null} r -t 0.869568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1485 -a 0 -x {9.0 10.0 747 ------- null} + -t 0.869568 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1485 -a 0 -x {9.0 10.0 747 ------- null} h -t 0.869568 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1485 -a 0 -x {9.0 10.0 747 ------- null} r -t 0.869568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1471 -a 0 -x {9.0 10.0 740 ------- null} + -t 0.869568 -s 10 -d 7 -p ack -e 40 -c 0 -i 1490 -a 0 -x {10.0 9.0 740 ------- null} - -t 0.869568 -s 10 -d 7 -p ack -e 40 -c 0 -i 1490 -a 0 -x {10.0 9.0 740 ------- null} h -t 0.869568 -s 10 -d 7 -p ack -e 40 -c 0 -i 1490 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.870032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1477 -a 0 -x {9.0 10.0 743 ------- null} - -t 0.870032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1477 -a 0 -x {9.0 10.0 743 ------- null} h -t 0.870032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1477 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.870112 -s 0 -d 9 -p ack -e 40 -c 0 -i 1484 -a 0 -x {10.0 9.0 737 ------- null} - -t 0.870112 -s 0 -d 9 -p ack -e 40 -c 0 -i 1484 -a 0 -x {10.0 9.0 737 ------- null} h -t 0.870112 -s 0 -d 9 -p ack -e 40 -c 0 -i 1484 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.870144 -s 0 -d 9 -p ack -e 40 -c 0 -i 1480 -a 0 -x {10.0 9.0 735 ------- null} + -t 0.870144 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1491 -a 0 -x {9.0 10.0 750 ------- null} - -t 0.870144 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1491 -a 0 -x {9.0 10.0 750 ------- null} h -t 0.870144 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1491 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.870512 -s 10 -d 7 -p ack -e 40 -c 0 -i 1488 -a 0 -x {10.0 9.0 739 ------- null} + -t 0.870512 -s 7 -d 0 -p ack -e 40 -c 0 -i 1488 -a 0 -x {10.0 9.0 739 ------- null} h -t 0.870512 -s 7 -d 8 -p ack -e 40 -c 0 -i 1488 -a 0 -x {10.0 9.0 739 ------- null} r -t 0.870656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1473 -a 0 -x {9.0 10.0 741 ------- null} + -t 0.870656 -s 10 -d 7 -p ack -e 40 -c 0 -i 1492 -a 0 -x {10.0 9.0 741 ------- null} - -t 0.870656 -s 10 -d 7 -p ack -e 40 -c 0 -i 1492 -a 0 -x {10.0 9.0 741 ------- null} h -t 0.870656 -s 10 -d 7 -p ack -e 40 -c 0 -i 1492 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.870704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1487 -a 0 -x {9.0 10.0 748 ------- null} + -t 0.870704 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1487 -a 0 -x {9.0 10.0 748 ------- null} h -t 0.870704 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1487 -a 0 -x {9.0 10.0 748 ------- null} + -t 0.87112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1479 -a 0 -x {9.0 10.0 744 ------- null} - -t 0.87112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1479 -a 0 -x {9.0 10.0 744 ------- null} h -t 0.87112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1479 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.8712 -s 0 -d 9 -p ack -e 40 -c 0 -i 1482 -a 0 -x {10.0 9.0 736 ------- null} + -t 0.8712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1493 -a 0 -x {9.0 10.0 751 ------- null} - -t 0.8712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1493 -a 0 -x {9.0 10.0 751 ------- null} h -t 0.8712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1493 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.871424 -s 0 -d 9 -p ack -e 40 -c 0 -i 1486 -a 0 -x {10.0 9.0 738 ------- null} - -t 0.871424 -s 0 -d 9 -p ack -e 40 -c 0 -i 1486 -a 0 -x {10.0 9.0 738 ------- null} h -t 0.871424 -s 0 -d 9 -p ack -e 40 -c 0 -i 1486 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.8716 -s 10 -d 7 -p ack -e 40 -c 0 -i 1490 -a 0 -x {10.0 9.0 740 ------- null} + -t 0.8716 -s 7 -d 0 -p ack -e 40 -c 0 -i 1490 -a 0 -x {10.0 9.0 740 ------- null} h -t 0.8716 -s 7 -d 8 -p ack -e 40 -c 0 -i 1490 -a 0 -x {10.0 9.0 740 ------- null} r -t 0.871664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1489 -a 0 -x {9.0 10.0 749 ------- null} + -t 0.871664 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1489 -a 0 -x {9.0 10.0 749 ------- null} h -t 0.871664 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1489 -a 0 -x {9.0 10.0 749 ------- null} r -t 0.871744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1475 -a 0 -x {9.0 10.0 742 ------- null} + -t 0.871744 -s 10 -d 7 -p ack -e 40 -c 0 -i 1494 -a 0 -x {10.0 9.0 742 ------- null} - -t 0.871744 -s 10 -d 7 -p ack -e 40 -c 0 -i 1494 -a 0 -x {10.0 9.0 742 ------- null} h -t 0.871744 -s 10 -d 7 -p ack -e 40 -c 0 -i 1494 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.872144 -s 0 -d 9 -p ack -e 40 -c 0 -i 1484 -a 0 -x {10.0 9.0 737 ------- null} + -t 0.872144 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1495 -a 0 -x {9.0 10.0 752 ------- null} - -t 0.872144 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1495 -a 0 -x {9.0 10.0 752 ------- null} h -t 0.872144 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1495 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.872416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1481 -a 0 -x {9.0 10.0 745 ------- null} - -t 0.872416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1481 -a 0 -x {9.0 10.0 745 ------- null} h -t 0.872416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1481 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.872576 -s 0 -d 9 -p ack -e 40 -c 0 -i 1488 -a 0 -x {10.0 9.0 739 ------- null} - -t 0.872576 -s 0 -d 9 -p ack -e 40 -c 0 -i 1488 -a 0 -x {10.0 9.0 739 ------- null} h -t 0.872576 -s 0 -d 9 -p ack -e 40 -c 0 -i 1488 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.872688 -s 10 -d 7 -p ack -e 40 -c 0 -i 1492 -a 0 -x {10.0 9.0 741 ------- null} + -t 0.872688 -s 7 -d 0 -p ack -e 40 -c 0 -i 1492 -a 0 -x {10.0 9.0 741 ------- null} h -t 0.872688 -s 7 -d 8 -p ack -e 40 -c 0 -i 1492 -a 0 -x {10.0 9.0 741 ------- null} r -t 0.872832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1477 -a 0 -x {9.0 10.0 743 ------- null} + -t 0.872832 -s 10 -d 7 -p ack -e 40 -c 0 -i 1496 -a 0 -x {10.0 9.0 743 ------- null} - -t 0.872832 -s 10 -d 7 -p ack -e 40 -c 0 -i 1496 -a 0 -x {10.0 9.0 743 ------- null} h -t 0.872832 -s 10 -d 7 -p ack -e 40 -c 0 -i 1496 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.872944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1491 -a 0 -x {9.0 10.0 750 ------- null} + -t 0.872944 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1491 -a 0 -x {9.0 10.0 750 ------- null} h -t 0.872944 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1491 -a 0 -x {9.0 10.0 750 ------- null} r -t 0.873456 -s 0 -d 9 -p ack -e 40 -c 0 -i 1486 -a 0 -x {10.0 9.0 738 ------- null} + -t 0.873456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1497 -a 0 -x {9.0 10.0 753 ------- null} - -t 0.873456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1497 -a 0 -x {9.0 10.0 753 ------- null} h -t 0.873456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1497 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.873504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1483 -a 0 -x {9.0 10.0 746 ------- null} - -t 0.873504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1483 -a 0 -x {9.0 10.0 746 ------- null} h -t 0.873504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1483 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.873776 -s 10 -d 7 -p ack -e 40 -c 0 -i 1494 -a 0 -x {10.0 9.0 742 ------- null} + -t 0.873776 -s 7 -d 0 -p ack -e 40 -c 0 -i 1494 -a 0 -x {10.0 9.0 742 ------- null} h -t 0.873776 -s 7 -d 8 -p ack -e 40 -c 0 -i 1494 -a 0 -x {10.0 9.0 742 ------- null} + -t 0.873776 -s 0 -d 9 -p ack -e 40 -c 0 -i 1490 -a 0 -x {10.0 9.0 740 ------- null} - -t 0.873776 -s 0 -d 9 -p ack -e 40 -c 0 -i 1490 -a 0 -x {10.0 9.0 740 ------- null} h -t 0.873776 -s 0 -d 9 -p ack -e 40 -c 0 -i 1490 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.87392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1479 -a 0 -x {9.0 10.0 744 ------- null} + -t 0.87392 -s 10 -d 7 -p ack -e 40 -c 0 -i 1498 -a 0 -x {10.0 9.0 744 ------- null} - -t 0.87392 -s 10 -d 7 -p ack -e 40 -c 0 -i 1498 -a 0 -x {10.0 9.0 744 ------- null} h -t 0.87392 -s 10 -d 7 -p ack -e 40 -c 0 -i 1498 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.874 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1493 -a 0 -x {9.0 10.0 751 ------- null} + -t 0.874 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1493 -a 0 -x {9.0 10.0 751 ------- null} h -t 0.874 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1493 -a 0 -x {9.0 10.0 751 ------- null} r -t 0.874608 -s 0 -d 9 -p ack -e 40 -c 0 -i 1488 -a 0 -x {10.0 9.0 739 ------- null} + -t 0.874608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1499 -a 0 -x {9.0 10.0 754 ------- null} - -t 0.874608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1499 -a 0 -x {9.0 10.0 754 ------- null} h -t 0.874608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1499 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.874832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1485 -a 0 -x {9.0 10.0 747 ------- null} - -t 0.874832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1485 -a 0 -x {9.0 10.0 747 ------- null} h -t 0.874832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1485 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.874864 -s 10 -d 7 -p ack -e 40 -c 0 -i 1496 -a 0 -x {10.0 9.0 743 ------- null} + -t 0.874864 -s 7 -d 0 -p ack -e 40 -c 0 -i 1496 -a 0 -x {10.0 9.0 743 ------- null} h -t 0.874864 -s 7 -d 8 -p ack -e 40 -c 0 -i 1496 -a 0 -x {10.0 9.0 743 ------- null} r -t 0.874944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1495 -a 0 -x {9.0 10.0 752 ------- null} + -t 0.874944 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1495 -a 0 -x {9.0 10.0 752 ------- null} h -t 0.874944 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1495 -a 0 -x {9.0 10.0 752 ------- null} + -t 0.875104 -s 0 -d 9 -p ack -e 40 -c 0 -i 1492 -a 0 -x {10.0 9.0 741 ------- null} - -t 0.875104 -s 0 -d 9 -p ack -e 40 -c 0 -i 1492 -a 0 -x {10.0 9.0 741 ------- null} h -t 0.875104 -s 0 -d 9 -p ack -e 40 -c 0 -i 1492 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.875216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1481 -a 0 -x {9.0 10.0 745 ------- null} + -t 0.875216 -s 10 -d 7 -p ack -e 40 -c 0 -i 1500 -a 0 -x {10.0 9.0 745 ------- null} - -t 0.875216 -s 10 -d 7 -p ack -e 40 -c 0 -i 1500 -a 0 -x {10.0 9.0 745 ------- null} h -t 0.875216 -s 10 -d 7 -p ack -e 40 -c 0 -i 1500 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.875808 -s 0 -d 9 -p ack -e 40 -c 0 -i 1490 -a 0 -x {10.0 9.0 740 ------- null} + -t 0.875808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1501 -a 0 -x {9.0 10.0 755 ------- null} - -t 0.875808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1501 -a 0 -x {9.0 10.0 755 ------- null} h -t 0.875808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1501 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.875952 -s 10 -d 7 -p ack -e 40 -c 0 -i 1498 -a 0 -x {10.0 9.0 744 ------- null} + -t 0.875952 -s 7 -d 0 -p ack -e 40 -c 0 -i 1498 -a 0 -x {10.0 9.0 744 ------- null} h -t 0.875952 -s 7 -d 8 -p ack -e 40 -c 0 -i 1498 -a 0 -x {10.0 9.0 744 ------- null} + -t 0.875968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1487 -a 0 -x {9.0 10.0 748 ------- null} - -t 0.875968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1487 -a 0 -x {9.0 10.0 748 ------- null} h -t 0.875968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1487 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.876048 -s 0 -d 9 -p ack -e 40 -c 0 -i 1494 -a 0 -x {10.0 9.0 742 ------- null} - -t 0.876048 -s 0 -d 9 -p ack -e 40 -c 0 -i 1494 -a 0 -x {10.0 9.0 742 ------- null} h -t 0.876048 -s 0 -d 9 -p ack -e 40 -c 0 -i 1494 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.876256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1497 -a 0 -x {9.0 10.0 753 ------- null} + -t 0.876256 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1497 -a 0 -x {9.0 10.0 753 ------- null} h -t 0.876256 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1497 -a 0 -x {9.0 10.0 753 ------- null} r -t 0.876304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1483 -a 0 -x {9.0 10.0 746 ------- null} + -t 0.876304 -s 10 -d 7 -p ack -e 40 -c 0 -i 1502 -a 0 -x {10.0 9.0 746 ------- null} - -t 0.876304 -s 10 -d 7 -p ack -e 40 -c 0 -i 1502 -a 0 -x {10.0 9.0 746 ------- null} h -t 0.876304 -s 10 -d 7 -p ack -e 40 -c 0 -i 1502 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.877056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1489 -a 0 -x {9.0 10.0 749 ------- null} - -t 0.877056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1489 -a 0 -x {9.0 10.0 749 ------- null} h -t 0.877056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1489 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.877136 -s 0 -d 9 -p ack -e 40 -c 0 -i 1492 -a 0 -x {10.0 9.0 741 ------- null} + -t 0.877136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1503 -a 0 -x {9.0 10.0 756 ------- null} - -t 0.877136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1503 -a 0 -x {9.0 10.0 756 ------- null} h -t 0.877136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1503 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.877152 -s 0 -d 9 -p ack -e 40 -c 0 -i 1496 -a 0 -x {10.0 9.0 743 ------- null} - -t 0.877152 -s 0 -d 9 -p ack -e 40 -c 0 -i 1496 -a 0 -x {10.0 9.0 743 ------- null} h -t 0.877152 -s 0 -d 9 -p ack -e 40 -c 0 -i 1496 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.877248 -s 10 -d 7 -p ack -e 40 -c 0 -i 1500 -a 0 -x {10.0 9.0 745 ------- null} + -t 0.877248 -s 7 -d 0 -p ack -e 40 -c 0 -i 1500 -a 0 -x {10.0 9.0 745 ------- null} h -t 0.877248 -s 7 -d 8 -p ack -e 40 -c 0 -i 1500 -a 0 -x {10.0 9.0 745 ------- null} r -t 0.877408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1499 -a 0 -x {9.0 10.0 754 ------- null} + -t 0.877408 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1499 -a 0 -x {9.0 10.0 754 ------- null} h -t 0.877408 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1499 -a 0 -x {9.0 10.0 754 ------- null} r -t 0.877632 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1485 -a 0 -x {9.0 10.0 747 ------- null} + -t 0.877632 -s 10 -d 7 -p ack -e 40 -c 0 -i 1504 -a 0 -x {10.0 9.0 747 ------- null} - -t 0.877632 -s 10 -d 7 -p ack -e 40 -c 0 -i 1504 -a 0 -x {10.0 9.0 747 ------- null} h -t 0.877632 -s 10 -d 7 -p ack -e 40 -c 0 -i 1504 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.87808 -s 0 -d 9 -p ack -e 40 -c 0 -i 1494 -a 0 -x {10.0 9.0 742 ------- null} + -t 0.87808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1505 -a 0 -x {9.0 10.0 757 ------- null} - -t 0.87808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1505 -a 0 -x {9.0 10.0 757 ------- null} h -t 0.87808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1505 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.878144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1491 -a 0 -x {9.0 10.0 750 ------- null} - -t 0.878144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1491 -a 0 -x {9.0 10.0 750 ------- null} h -t 0.878144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1491 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.878336 -s 10 -d 7 -p ack -e 40 -c 0 -i 1502 -a 0 -x {10.0 9.0 746 ------- null} + -t 0.878336 -s 7 -d 0 -p ack -e 40 -c 0 -i 1502 -a 0 -x {10.0 9.0 746 ------- null} h -t 0.878336 -s 7 -d 8 -p ack -e 40 -c 0 -i 1502 -a 0 -x {10.0 9.0 746 ------- null} + -t 0.878368 -s 0 -d 9 -p ack -e 40 -c 0 -i 1498 -a 0 -x {10.0 9.0 744 ------- null} - -t 0.878368 -s 0 -d 9 -p ack -e 40 -c 0 -i 1498 -a 0 -x {10.0 9.0 744 ------- null} h -t 0.878368 -s 0 -d 9 -p ack -e 40 -c 0 -i 1498 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.878608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1501 -a 0 -x {9.0 10.0 755 ------- null} + -t 0.878608 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1501 -a 0 -x {9.0 10.0 755 ------- null} h -t 0.878608 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1501 -a 0 -x {9.0 10.0 755 ------- null} r -t 0.878768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1487 -a 0 -x {9.0 10.0 748 ------- null} + -t 0.878768 -s 10 -d 7 -p ack -e 40 -c 0 -i 1506 -a 0 -x {10.0 9.0 748 ------- null} - -t 0.878768 -s 10 -d 7 -p ack -e 40 -c 0 -i 1506 -a 0 -x {10.0 9.0 748 ------- null} h -t 0.878768 -s 10 -d 7 -p ack -e 40 -c 0 -i 1506 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.879184 -s 0 -d 9 -p ack -e 40 -c 0 -i 1496 -a 0 -x {10.0 9.0 743 ------- null} + -t 0.879184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1507 -a 0 -x {9.0 10.0 758 ------- null} - -t 0.879184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1507 -a 0 -x {9.0 10.0 758 ------- null} h -t 0.879184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1507 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.879232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1493 -a 0 -x {9.0 10.0 751 ------- null} - -t 0.879232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1493 -a 0 -x {9.0 10.0 751 ------- null} h -t 0.879232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1493 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.879536 -s 0 -d 9 -p ack -e 40 -c 0 -i 1500 -a 0 -x {10.0 9.0 745 ------- null} - -t 0.879536 -s 0 -d 9 -p ack -e 40 -c 0 -i 1500 -a 0 -x {10.0 9.0 745 ------- null} h -t 0.879536 -s 0 -d 9 -p ack -e 40 -c 0 -i 1500 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.879664 -s 10 -d 7 -p ack -e 40 -c 0 -i 1504 -a 0 -x {10.0 9.0 747 ------- null} + -t 0.879664 -s 7 -d 0 -p ack -e 40 -c 0 -i 1504 -a 0 -x {10.0 9.0 747 ------- null} h -t 0.879664 -s 7 -d 8 -p ack -e 40 -c 0 -i 1504 -a 0 -x {10.0 9.0 747 ------- null} r -t 0.879856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1489 -a 0 -x {9.0 10.0 749 ------- null} + -t 0.879856 -s 10 -d 7 -p ack -e 40 -c 0 -i 1508 -a 0 -x {10.0 9.0 749 ------- null} - -t 0.879856 -s 10 -d 7 -p ack -e 40 -c 0 -i 1508 -a 0 -x {10.0 9.0 749 ------- null} h -t 0.879856 -s 10 -d 7 -p ack -e 40 -c 0 -i 1508 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.879936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1503 -a 0 -x {9.0 10.0 756 ------- null} + -t 0.879936 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1503 -a 0 -x {9.0 10.0 756 ------- null} h -t 0.879936 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1503 -a 0 -x {9.0 10.0 756 ------- null} r -t 0.8804 -s 0 -d 9 -p ack -e 40 -c 0 -i 1498 -a 0 -x {10.0 9.0 744 ------- null} + -t 0.8804 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1509 -a 0 -x {9.0 10.0 759 ------- null} - -t 0.8804 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1509 -a 0 -x {9.0 10.0 759 ------- null} h -t 0.8804 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1509 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.880608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1495 -a 0 -x {9.0 10.0 752 ------- null} - -t 0.880608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1495 -a 0 -x {9.0 10.0 752 ------- null} h -t 0.880608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1495 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.8808 -s 10 -d 7 -p ack -e 40 -c 0 -i 1506 -a 0 -x {10.0 9.0 748 ------- null} + -t 0.8808 -s 7 -d 0 -p ack -e 40 -c 0 -i 1506 -a 0 -x {10.0 9.0 748 ------- null} h -t 0.8808 -s 7 -d 8 -p ack -e 40 -c 0 -i 1506 -a 0 -x {10.0 9.0 748 ------- null} + -t 0.880848 -s 0 -d 9 -p ack -e 40 -c 0 -i 1502 -a 0 -x {10.0 9.0 746 ------- null} - -t 0.880848 -s 0 -d 9 -p ack -e 40 -c 0 -i 1502 -a 0 -x {10.0 9.0 746 ------- null} h -t 0.880848 -s 0 -d 9 -p ack -e 40 -c 0 -i 1502 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.88088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1505 -a 0 -x {9.0 10.0 757 ------- null} + -t 0.88088 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1505 -a 0 -x {9.0 10.0 757 ------- null} h -t 0.88088 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1505 -a 0 -x {9.0 10.0 757 ------- null} r -t 0.880944 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1491 -a 0 -x {9.0 10.0 750 ------- null} + -t 0.880944 -s 10 -d 7 -p ack -e 40 -c 0 -i 1510 -a 0 -x {10.0 9.0 750 ------- null} - -t 0.880944 -s 10 -d 7 -p ack -e 40 -c 0 -i 1510 -a 0 -x {10.0 9.0 750 ------- null} h -t 0.880944 -s 10 -d 7 -p ack -e 40 -c 0 -i 1510 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.881568 -s 0 -d 9 -p ack -e 40 -c 0 -i 1500 -a 0 -x {10.0 9.0 745 ------- null} + -t 0.881568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1511 -a 0 -x {9.0 10.0 760 ------- null} - -t 0.881568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1511 -a 0 -x {9.0 10.0 760 ------- null} h -t 0.881568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1511 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.881696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1497 -a 0 -x {9.0 10.0 753 ------- null} - -t 0.881696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1497 -a 0 -x {9.0 10.0 753 ------- null} h -t 0.881696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1497 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.881776 -s 0 -d 9 -p ack -e 40 -c 0 -i 1504 -a 0 -x {10.0 9.0 747 ------- null} - -t 0.881776 -s 0 -d 9 -p ack -e 40 -c 0 -i 1504 -a 0 -x {10.0 9.0 747 ------- null} h -t 0.881776 -s 0 -d 9 -p ack -e 40 -c 0 -i 1504 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.881888 -s 10 -d 7 -p ack -e 40 -c 0 -i 1508 -a 0 -x {10.0 9.0 749 ------- null} + -t 0.881888 -s 7 -d 0 -p ack -e 40 -c 0 -i 1508 -a 0 -x {10.0 9.0 749 ------- null} h -t 0.881888 -s 7 -d 8 -p ack -e 40 -c 0 -i 1508 -a 0 -x {10.0 9.0 749 ------- null} r -t 0.881984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1507 -a 0 -x {9.0 10.0 758 ------- null} + -t 0.881984 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1507 -a 0 -x {9.0 10.0 758 ------- null} h -t 0.881984 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1507 -a 0 -x {9.0 10.0 758 ------- null} r -t 0.882032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1493 -a 0 -x {9.0 10.0 751 ------- null} + -t 0.882032 -s 10 -d 7 -p ack -e 40 -c 0 -i 1512 -a 0 -x {10.0 9.0 751 ------- null} - -t 0.882032 -s 10 -d 7 -p ack -e 40 -c 0 -i 1512 -a 0 -x {10.0 9.0 751 ------- null} h -t 0.882032 -s 10 -d 7 -p ack -e 40 -c 0 -i 1512 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.882784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1499 -a 0 -x {9.0 10.0 754 ------- null} - -t 0.882784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1499 -a 0 -x {9.0 10.0 754 ------- null} h -t 0.882784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1499 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.88288 -s 0 -d 9 -p ack -e 40 -c 0 -i 1502 -a 0 -x {10.0 9.0 746 ------- null} + -t 0.88288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1513 -a 0 -x {9.0 10.0 761 ------- null} - -t 0.88288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1513 -a 0 -x {9.0 10.0 761 ------- null} h -t 0.88288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1513 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.882944 -s 0 -d 9 -p ack -e 40 -c 0 -i 1506 -a 0 -x {10.0 9.0 748 ------- null} - -t 0.882944 -s 0 -d 9 -p ack -e 40 -c 0 -i 1506 -a 0 -x {10.0 9.0 748 ------- null} h -t 0.882944 -s 0 -d 9 -p ack -e 40 -c 0 -i 1506 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.882976 -s 10 -d 7 -p ack -e 40 -c 0 -i 1510 -a 0 -x {10.0 9.0 750 ------- null} + -t 0.882976 -s 7 -d 0 -p ack -e 40 -c 0 -i 1510 -a 0 -x {10.0 9.0 750 ------- null} h -t 0.882976 -s 7 -d 8 -p ack -e 40 -c 0 -i 1510 -a 0 -x {10.0 9.0 750 ------- null} r -t 0.8832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1509 -a 0 -x {9.0 10.0 759 ------- null} + -t 0.8832 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1509 -a 0 -x {9.0 10.0 759 ------- null} h -t 0.8832 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1509 -a 0 -x {9.0 10.0 759 ------- null} r -t 0.883408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1495 -a 0 -x {9.0 10.0 752 ------- null} + -t 0.883408 -s 10 -d 7 -p ack -e 40 -c 0 -i 1514 -a 0 -x {10.0 9.0 752 ------- null} - -t 0.883408 -s 10 -d 7 -p ack -e 40 -c 0 -i 1514 -a 0 -x {10.0 9.0 752 ------- null} h -t 0.883408 -s 10 -d 7 -p ack -e 40 -c 0 -i 1514 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.883808 -s 0 -d 9 -p ack -e 40 -c 0 -i 1504 -a 0 -x {10.0 9.0 747 ------- null} + -t 0.883808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1515 -a 0 -x {9.0 10.0 762 ------- null} - -t 0.883808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1515 -a 0 -x {9.0 10.0 762 ------- null} h -t 0.883808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1515 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.883872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1501 -a 0 -x {9.0 10.0 755 ------- null} - -t 0.883872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1501 -a 0 -x {9.0 10.0 755 ------- null} h -t 0.883872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1501 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.883984 -s 0 -d 9 -p ack -e 40 -c 0 -i 1508 -a 0 -x {10.0 9.0 749 ------- null} - -t 0.883984 -s 0 -d 9 -p ack -e 40 -c 0 -i 1508 -a 0 -x {10.0 9.0 749 ------- null} h -t 0.883984 -s 0 -d 9 -p ack -e 40 -c 0 -i 1508 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.884064 -s 10 -d 7 -p ack -e 40 -c 0 -i 1512 -a 0 -x {10.0 9.0 751 ------- null} + -t 0.884064 -s 7 -d 0 -p ack -e 40 -c 0 -i 1512 -a 0 -x {10.0 9.0 751 ------- null} h -t 0.884064 -s 7 -d 8 -p ack -e 40 -c 0 -i 1512 -a 0 -x {10.0 9.0 751 ------- null} r -t 0.884368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1511 -a 0 -x {9.0 10.0 760 ------- null} + -t 0.884368 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1511 -a 0 -x {9.0 10.0 760 ------- null} h -t 0.884368 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1511 -a 0 -x {9.0 10.0 760 ------- null} r -t 0.884496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1497 -a 0 -x {9.0 10.0 753 ------- null} + -t 0.884496 -s 10 -d 7 -p ack -e 40 -c 0 -i 1516 -a 0 -x {10.0 9.0 753 ------- null} - -t 0.884496 -s 10 -d 7 -p ack -e 40 -c 0 -i 1516 -a 0 -x {10.0 9.0 753 ------- null} h -t 0.884496 -s 10 -d 7 -p ack -e 40 -c 0 -i 1516 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.88496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1503 -a 0 -x {9.0 10.0 756 ------- null} - -t 0.88496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1503 -a 0 -x {9.0 10.0 756 ------- null} h -t 0.88496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1503 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.884976 -s 0 -d 9 -p ack -e 40 -c 0 -i 1506 -a 0 -x {10.0 9.0 748 ------- null} + -t 0.884976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1517 -a 0 -x {9.0 10.0 763 ------- null} - -t 0.884976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1517 -a 0 -x {9.0 10.0 763 ------- null} h -t 0.884976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1517 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.885168 -s 0 -d 9 -p ack -e 40 -c 0 -i 1510 -a 0 -x {10.0 9.0 750 ------- null} - -t 0.885168 -s 0 -d 9 -p ack -e 40 -c 0 -i 1510 -a 0 -x {10.0 9.0 750 ------- null} h -t 0.885168 -s 0 -d 9 -p ack -e 40 -c 0 -i 1510 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.88544 -s 10 -d 7 -p ack -e 40 -c 0 -i 1514 -a 0 -x {10.0 9.0 752 ------- null} + -t 0.88544 -s 7 -d 0 -p ack -e 40 -c 0 -i 1514 -a 0 -x {10.0 9.0 752 ------- null} h -t 0.88544 -s 7 -d 8 -p ack -e 40 -c 0 -i 1514 -a 0 -x {10.0 9.0 752 ------- null} r -t 0.885584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1499 -a 0 -x {9.0 10.0 754 ------- null} + -t 0.885584 -s 10 -d 7 -p ack -e 40 -c 0 -i 1518 -a 0 -x {10.0 9.0 754 ------- null} - -t 0.885584 -s 10 -d 7 -p ack -e 40 -c 0 -i 1518 -a 0 -x {10.0 9.0 754 ------- null} h -t 0.885584 -s 10 -d 7 -p ack -e 40 -c 0 -i 1518 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.88568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1513 -a 0 -x {9.0 10.0 761 ------- null} + -t 0.88568 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1513 -a 0 -x {9.0 10.0 761 ------- null} h -t 0.88568 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1513 -a 0 -x {9.0 10.0 761 ------- null} r -t 0.886016 -s 0 -d 9 -p ack -e 40 -c 0 -i 1508 -a 0 -x {10.0 9.0 749 ------- null} + -t 0.886016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1519 -a 0 -x {9.0 10.0 764 ------- null} - -t 0.886016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1519 -a 0 -x {9.0 10.0 764 ------- null} h -t 0.886016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1519 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.886048 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1505 -a 0 -x {9.0 10.0 757 ------- null} - -t 0.886048 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1505 -a 0 -x {9.0 10.0 757 ------- null} h -t 0.886048 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1505 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.886352 -s 0 -d 9 -p ack -e 40 -c 0 -i 1512 -a 0 -x {10.0 9.0 751 ------- null} - -t 0.886352 -s 0 -d 9 -p ack -e 40 -c 0 -i 1512 -a 0 -x {10.0 9.0 751 ------- null} h -t 0.886352 -s 0 -d 9 -p ack -e 40 -c 0 -i 1512 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.886528 -s 10 -d 7 -p ack -e 40 -c 0 -i 1516 -a 0 -x {10.0 9.0 753 ------- null} + -t 0.886528 -s 7 -d 0 -p ack -e 40 -c 0 -i 1516 -a 0 -x {10.0 9.0 753 ------- null} h -t 0.886528 -s 7 -d 8 -p ack -e 40 -c 0 -i 1516 -a 0 -x {10.0 9.0 753 ------- null} r -t 0.886608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1515 -a 0 -x {9.0 10.0 762 ------- null} + -t 0.886608 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1515 -a 0 -x {9.0 10.0 762 ------- null} h -t 0.886608 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1515 -a 0 -x {9.0 10.0 762 ------- null} r -t 0.886672 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1501 -a 0 -x {9.0 10.0 755 ------- null} + -t 0.886672 -s 10 -d 7 -p ack -e 40 -c 0 -i 1520 -a 0 -x {10.0 9.0 755 ------- null} - -t 0.886672 -s 10 -d 7 -p ack -e 40 -c 0 -i 1520 -a 0 -x {10.0 9.0 755 ------- null} h -t 0.886672 -s 10 -d 7 -p ack -e 40 -c 0 -i 1520 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.8872 -s 0 -d 9 -p ack -e 40 -c 0 -i 1510 -a 0 -x {10.0 9.0 750 ------- null} + -t 0.8872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1521 -a 0 -x {9.0 10.0 765 ------- null} - -t 0.8872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1521 -a 0 -x {9.0 10.0 765 ------- null} h -t 0.8872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1521 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.887344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1507 -a 0 -x {9.0 10.0 758 ------- null} - -t 0.887344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1507 -a 0 -x {9.0 10.0 758 ------- null} h -t 0.887344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1507 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.887456 -s 0 -d 9 -p ack -e 40 -c 0 -i 1514 -a 0 -x {10.0 9.0 752 ------- null} - -t 0.887456 -s 0 -d 9 -p ack -e 40 -c 0 -i 1514 -a 0 -x {10.0 9.0 752 ------- null} h -t 0.887456 -s 0 -d 9 -p ack -e 40 -c 0 -i 1514 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.887616 -s 10 -d 7 -p ack -e 40 -c 0 -i 1518 -a 0 -x {10.0 9.0 754 ------- null} + -t 0.887616 -s 7 -d 0 -p ack -e 40 -c 0 -i 1518 -a 0 -x {10.0 9.0 754 ------- null} h -t 0.887616 -s 7 -d 8 -p ack -e 40 -c 0 -i 1518 -a 0 -x {10.0 9.0 754 ------- null} r -t 0.88776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1503 -a 0 -x {9.0 10.0 756 ------- null} + -t 0.88776 -s 10 -d 7 -p ack -e 40 -c 0 -i 1522 -a 0 -x {10.0 9.0 756 ------- null} - -t 0.88776 -s 10 -d 7 -p ack -e 40 -c 0 -i 1522 -a 0 -x {10.0 9.0 756 ------- null} h -t 0.88776 -s 10 -d 7 -p ack -e 40 -c 0 -i 1522 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.887776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1517 -a 0 -x {9.0 10.0 763 ------- null} + -t 0.887776 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1517 -a 0 -x {9.0 10.0 763 ------- null} h -t 0.887776 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1517 -a 0 -x {9.0 10.0 763 ------- null} r -t 0.888384 -s 0 -d 9 -p ack -e 40 -c 0 -i 1512 -a 0 -x {10.0 9.0 751 ------- null} + -t 0.888384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1523 -a 0 -x {9.0 10.0 766 ------- null} - -t 0.888384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1523 -a 0 -x {9.0 10.0 766 ------- null} h -t 0.888384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1523 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.888432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1509 -a 0 -x {9.0 10.0 759 ------- null} - -t 0.888432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1509 -a 0 -x {9.0 10.0 759 ------- null} h -t 0.888432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1509 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.888672 -s 0 -d 9 -p ack -e 40 -c 0 -i 1516 -a 0 -x {10.0 9.0 753 ------- null} - -t 0.888672 -s 0 -d 9 -p ack -e 40 -c 0 -i 1516 -a 0 -x {10.0 9.0 753 ------- null} h -t 0.888672 -s 0 -d 9 -p ack -e 40 -c 0 -i 1516 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.888704 -s 10 -d 7 -p ack -e 40 -c 0 -i 1520 -a 0 -x {10.0 9.0 755 ------- null} + -t 0.888704 -s 7 -d 0 -p ack -e 40 -c 0 -i 1520 -a 0 -x {10.0 9.0 755 ------- null} h -t 0.888704 -s 7 -d 8 -p ack -e 40 -c 0 -i 1520 -a 0 -x {10.0 9.0 755 ------- null} r -t 0.888816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1519 -a 0 -x {9.0 10.0 764 ------- null} + -t 0.888816 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1519 -a 0 -x {9.0 10.0 764 ------- null} h -t 0.888816 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1519 -a 0 -x {9.0 10.0 764 ------- null} r -t 0.888848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1505 -a 0 -x {9.0 10.0 757 ------- null} + -t 0.888848 -s 10 -d 7 -p ack -e 40 -c 0 -i 1524 -a 0 -x {10.0 9.0 757 ------- null} - -t 0.888848 -s 10 -d 7 -p ack -e 40 -c 0 -i 1524 -a 0 -x {10.0 9.0 757 ------- null} h -t 0.888848 -s 10 -d 7 -p ack -e 40 -c 0 -i 1524 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.889488 -s 0 -d 9 -p ack -e 40 -c 0 -i 1514 -a 0 -x {10.0 9.0 752 ------- null} + -t 0.889488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1525 -a 0 -x {9.0 10.0 767 ------- null} - -t 0.889488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1525 -a 0 -x {9.0 10.0 767 ------- null} h -t 0.889488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1525 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.88952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1511 -a 0 -x {9.0 10.0 760 ------- null} - -t 0.88952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1511 -a 0 -x {9.0 10.0 760 ------- null} h -t 0.88952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1511 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.889792 -s 10 -d 7 -p ack -e 40 -c 0 -i 1522 -a 0 -x {10.0 9.0 756 ------- null} + -t 0.889792 -s 7 -d 0 -p ack -e 40 -c 0 -i 1522 -a 0 -x {10.0 9.0 756 ------- null} h -t 0.889792 -s 7 -d 8 -p ack -e 40 -c 0 -i 1522 -a 0 -x {10.0 9.0 756 ------- null} + -t 0.889824 -s 0 -d 9 -p ack -e 40 -c 0 -i 1518 -a 0 -x {10.0 9.0 754 ------- null} - -t 0.889824 -s 0 -d 9 -p ack -e 40 -c 0 -i 1518 -a 0 -x {10.0 9.0 754 ------- null} h -t 0.889824 -s 0 -d 9 -p ack -e 40 -c 0 -i 1518 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.89 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1521 -a 0 -x {9.0 10.0 765 ------- null} + -t 0.89 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1521 -a 0 -x {9.0 10.0 765 ------- null} h -t 0.89 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1521 -a 0 -x {9.0 10.0 765 ------- null} r -t 0.890144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1507 -a 0 -x {9.0 10.0 758 ------- null} + -t 0.890144 -s 10 -d 7 -p ack -e 40 -c 0 -i 1526 -a 0 -x {10.0 9.0 758 ------- null} - -t 0.890144 -s 10 -d 7 -p ack -e 40 -c 0 -i 1526 -a 0 -x {10.0 9.0 758 ------- null} h -t 0.890144 -s 10 -d 7 -p ack -e 40 -c 0 -i 1526 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.890704 -s 0 -d 9 -p ack -e 40 -c 0 -i 1516 -a 0 -x {10.0 9.0 753 ------- null} + -t 0.890704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1527 -a 0 -x {9.0 10.0 768 ------- null} - -t 0.890704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1527 -a 0 -x {9.0 10.0 768 ------- null} h -t 0.890704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1527 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.890816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1513 -a 0 -x {9.0 10.0 761 ------- null} - -t 0.890816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1513 -a 0 -x {9.0 10.0 761 ------- null} h -t 0.890816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1513 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.89088 -s 10 -d 7 -p ack -e 40 -c 0 -i 1524 -a 0 -x {10.0 9.0 757 ------- null} + -t 0.89088 -s 7 -d 0 -p ack -e 40 -c 0 -i 1524 -a 0 -x {10.0 9.0 757 ------- null} h -t 0.89088 -s 7 -d 8 -p ack -e 40 -c 0 -i 1524 -a 0 -x {10.0 9.0 757 ------- null} + -t 0.89096 -s 0 -d 9 -p ack -e 40 -c 0 -i 1520 -a 0 -x {10.0 9.0 755 ------- null} - -t 0.89096 -s 0 -d 9 -p ack -e 40 -c 0 -i 1520 -a 0 -x {10.0 9.0 755 ------- null} h -t 0.89096 -s 0 -d 9 -p ack -e 40 -c 0 -i 1520 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.891184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1523 -a 0 -x {9.0 10.0 766 ------- null} + -t 0.891184 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1523 -a 0 -x {9.0 10.0 766 ------- null} h -t 0.891184 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1523 -a 0 -x {9.0 10.0 766 ------- null} r -t 0.891232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1509 -a 0 -x {9.0 10.0 759 ------- null} + -t 0.891232 -s 10 -d 7 -p ack -e 40 -c 0 -i 1528 -a 0 -x {10.0 9.0 759 ------- null} - -t 0.891232 -s 10 -d 7 -p ack -e 40 -c 0 -i 1528 -a 0 -x {10.0 9.0 759 ------- null} h -t 0.891232 -s 10 -d 7 -p ack -e 40 -c 0 -i 1528 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.891856 -s 0 -d 9 -p ack -e 40 -c 0 -i 1518 -a 0 -x {10.0 9.0 754 ------- null} + -t 0.891856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1529 -a 0 -x {9.0 10.0 769 ------- null} - -t 0.891856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1529 -a 0 -x {9.0 10.0 769 ------- null} h -t 0.891856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1529 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.891904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1515 -a 0 -x {9.0 10.0 762 ------- null} - -t 0.891904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1515 -a 0 -x {9.0 10.0 762 ------- null} h -t 0.891904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1515 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.89208 -s 0 -d 9 -p ack -e 40 -c 0 -i 1522 -a 0 -x {10.0 9.0 756 ------- null} - -t 0.89208 -s 0 -d 9 -p ack -e 40 -c 0 -i 1522 -a 0 -x {10.0 9.0 756 ------- null} h -t 0.89208 -s 0 -d 9 -p ack -e 40 -c 0 -i 1522 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.892176 -s 10 -d 7 -p ack -e 40 -c 0 -i 1526 -a 0 -x {10.0 9.0 758 ------- null} + -t 0.892176 -s 7 -d 0 -p ack -e 40 -c 0 -i 1526 -a 0 -x {10.0 9.0 758 ------- null} h -t 0.892176 -s 7 -d 8 -p ack -e 40 -c 0 -i 1526 -a 0 -x {10.0 9.0 758 ------- null} r -t 0.892288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1525 -a 0 -x {9.0 10.0 767 ------- null} + -t 0.892288 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1525 -a 0 -x {9.0 10.0 767 ------- null} h -t 0.892288 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1525 -a 0 -x {9.0 10.0 767 ------- null} r -t 0.89232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1511 -a 0 -x {9.0 10.0 760 ------- null} + -t 0.89232 -s 10 -d 7 -p ack -e 40 -c 0 -i 1530 -a 0 -x {10.0 9.0 760 ------- null} - -t 0.89232 -s 10 -d 7 -p ack -e 40 -c 0 -i 1530 -a 0 -x {10.0 9.0 760 ------- null} h -t 0.89232 -s 10 -d 7 -p ack -e 40 -c 0 -i 1530 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.892992 -s 0 -d 9 -p ack -e 40 -c 0 -i 1520 -a 0 -x {10.0 9.0 755 ------- null} + -t 0.892992 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1531 -a 0 -x {9.0 10.0 770 ------- null} - -t 0.892992 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1531 -a 0 -x {9.0 10.0 770 ------- null} h -t 0.892992 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1531 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.892992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1517 -a 0 -x {9.0 10.0 763 ------- null} - -t 0.892992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1517 -a 0 -x {9.0 10.0 763 ------- null} h -t 0.892992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1517 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.893088 -s 0 -d 9 -p ack -e 40 -c 0 -i 1524 -a 0 -x {10.0 9.0 757 ------- null} - -t 0.893088 -s 0 -d 9 -p ack -e 40 -c 0 -i 1524 -a 0 -x {10.0 9.0 757 ------- null} h -t 0.893088 -s 0 -d 9 -p ack -e 40 -c 0 -i 1524 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.893264 -s 10 -d 7 -p ack -e 40 -c 0 -i 1528 -a 0 -x {10.0 9.0 759 ------- null} + -t 0.893264 -s 7 -d 0 -p ack -e 40 -c 0 -i 1528 -a 0 -x {10.0 9.0 759 ------- null} h -t 0.893264 -s 7 -d 8 -p ack -e 40 -c 0 -i 1528 -a 0 -x {10.0 9.0 759 ------- null} r -t 0.893504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1527 -a 0 -x {9.0 10.0 768 ------- null} + -t 0.893504 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1527 -a 0 -x {9.0 10.0 768 ------- null} h -t 0.893504 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1527 -a 0 -x {9.0 10.0 768 ------- null} r -t 0.893616 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1513 -a 0 -x {9.0 10.0 761 ------- null} + -t 0.893616 -s 10 -d 7 -p ack -e 40 -c 0 -i 1532 -a 0 -x {10.0 9.0 761 ------- null} - -t 0.893616 -s 10 -d 7 -p ack -e 40 -c 0 -i 1532 -a 0 -x {10.0 9.0 761 ------- null} h -t 0.893616 -s 10 -d 7 -p ack -e 40 -c 0 -i 1532 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.89408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1519 -a 0 -x {9.0 10.0 764 ------- null} - -t 0.89408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1519 -a 0 -x {9.0 10.0 764 ------- null} h -t 0.89408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1519 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.894112 -s 0 -d 9 -p ack -e 40 -c 0 -i 1522 -a 0 -x {10.0 9.0 756 ------- null} + -t 0.894112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1533 -a 0 -x {9.0 10.0 771 ------- null} - -t 0.894112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1533 -a 0 -x {9.0 10.0 771 ------- null} h -t 0.894112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1533 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.894208 -s 0 -d 9 -p ack -e 40 -c 0 -i 1526 -a 0 -x {10.0 9.0 758 ------- null} - -t 0.894208 -s 0 -d 9 -p ack -e 40 -c 0 -i 1526 -a 0 -x {10.0 9.0 758 ------- null} h -t 0.894208 -s 0 -d 9 -p ack -e 40 -c 0 -i 1526 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.894352 -s 10 -d 7 -p ack -e 40 -c 0 -i 1530 -a 0 -x {10.0 9.0 760 ------- null} + -t 0.894352 -s 7 -d 0 -p ack -e 40 -c 0 -i 1530 -a 0 -x {10.0 9.0 760 ------- null} h -t 0.894352 -s 7 -d 8 -p ack -e 40 -c 0 -i 1530 -a 0 -x {10.0 9.0 760 ------- null} r -t 0.894656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1529 -a 0 -x {9.0 10.0 769 ------- null} + -t 0.894656 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1529 -a 0 -x {9.0 10.0 769 ------- null} h -t 0.894656 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1529 -a 0 -x {9.0 10.0 769 ------- null} r -t 0.894704 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1515 -a 0 -x {9.0 10.0 762 ------- null} + -t 0.894704 -s 10 -d 7 -p ack -e 40 -c 0 -i 1534 -a 0 -x {10.0 9.0 762 ------- null} - -t 0.894704 -s 10 -d 7 -p ack -e 40 -c 0 -i 1534 -a 0 -x {10.0 9.0 762 ------- null} h -t 0.894704 -s 10 -d 7 -p ack -e 40 -c 0 -i 1534 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.89512 -s 0 -d 9 -p ack -e 40 -c 0 -i 1524 -a 0 -x {10.0 9.0 757 ------- null} + -t 0.89512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1535 -a 0 -x {9.0 10.0 772 ------- null} - -t 0.89512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1535 -a 0 -x {9.0 10.0 772 ------- null} h -t 0.89512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1535 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.895168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1521 -a 0 -x {9.0 10.0 765 ------- null} - -t 0.895168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1521 -a 0 -x {9.0 10.0 765 ------- null} h -t 0.895168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1521 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.895248 -s 0 -d 9 -p ack -e 40 -c 0 -i 1528 -a 0 -x {10.0 9.0 759 ------- null} - -t 0.895248 -s 0 -d 9 -p ack -e 40 -c 0 -i 1528 -a 0 -x {10.0 9.0 759 ------- null} h -t 0.895248 -s 0 -d 9 -p ack -e 40 -c 0 -i 1528 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.895648 -s 10 -d 7 -p ack -e 40 -c 0 -i 1532 -a 0 -x {10.0 9.0 761 ------- null} + -t 0.895648 -s 7 -d 0 -p ack -e 40 -c 0 -i 1532 -a 0 -x {10.0 9.0 761 ------- null} h -t 0.895648 -s 7 -d 8 -p ack -e 40 -c 0 -i 1532 -a 0 -x {10.0 9.0 761 ------- null} r -t 0.895792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1531 -a 0 -x {9.0 10.0 770 ------- null} + -t 0.895792 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1531 -a 0 -x {9.0 10.0 770 ------- null} h -t 0.895792 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1531 -a 0 -x {9.0 10.0 770 ------- null} r -t 0.895792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1517 -a 0 -x {9.0 10.0 763 ------- null} + -t 0.895792 -s 10 -d 7 -p ack -e 40 -c 0 -i 1536 -a 0 -x {10.0 9.0 763 ------- null} - -t 0.895792 -s 10 -d 7 -p ack -e 40 -c 0 -i 1536 -a 0 -x {10.0 9.0 763 ------- null} h -t 0.895792 -s 10 -d 7 -p ack -e 40 -c 0 -i 1536 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.89624 -s 0 -d 9 -p ack -e 40 -c 0 -i 1526 -a 0 -x {10.0 9.0 758 ------- null} + -t 0.89624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1537 -a 0 -x {9.0 10.0 773 ------- null} - -t 0.89624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1537 -a 0 -x {9.0 10.0 773 ------- null} h -t 0.89624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1537 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.896256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1523 -a 0 -x {9.0 10.0 766 ------- null} - -t 0.896256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1523 -a 0 -x {9.0 10.0 766 ------- null} h -t 0.896256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1523 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.896528 -s 0 -d 9 -p ack -e 40 -c 0 -i 1530 -a 0 -x {10.0 9.0 760 ------- null} - -t 0.896528 -s 0 -d 9 -p ack -e 40 -c 0 -i 1530 -a 0 -x {10.0 9.0 760 ------- null} h -t 0.896528 -s 0 -d 9 -p ack -e 40 -c 0 -i 1530 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.896736 -s 10 -d 7 -p ack -e 40 -c 0 -i 1534 -a 0 -x {10.0 9.0 762 ------- null} + -t 0.896736 -s 7 -d 0 -p ack -e 40 -c 0 -i 1534 -a 0 -x {10.0 9.0 762 ------- null} h -t 0.896736 -s 7 -d 8 -p ack -e 40 -c 0 -i 1534 -a 0 -x {10.0 9.0 762 ------- null} r -t 0.89688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1519 -a 0 -x {9.0 10.0 764 ------- null} + -t 0.89688 -s 10 -d 7 -p ack -e 40 -c 0 -i 1538 -a 0 -x {10.0 9.0 764 ------- null} - -t 0.89688 -s 10 -d 7 -p ack -e 40 -c 0 -i 1538 -a 0 -x {10.0 9.0 764 ------- null} h -t 0.89688 -s 10 -d 7 -p ack -e 40 -c 0 -i 1538 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.896912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1533 -a 0 -x {9.0 10.0 771 ------- null} + -t 0.896912 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1533 -a 0 -x {9.0 10.0 771 ------- null} h -t 0.896912 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1533 -a 0 -x {9.0 10.0 771 ------- null} r -t 0.89728 -s 0 -d 9 -p ack -e 40 -c 0 -i 1528 -a 0 -x {10.0 9.0 759 ------- null} + -t 0.89728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1539 -a 0 -x {9.0 10.0 774 ------- null} - -t 0.89728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1539 -a 0 -x {9.0 10.0 774 ------- null} h -t 0.89728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1539 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.897456 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1525 -a 0 -x {9.0 10.0 767 ------- null} - -t 0.897456 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1525 -a 0 -x {9.0 10.0 767 ------- null} h -t 0.897456 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1525 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.897712 -s 0 -d 9 -p ack -e 40 -c 0 -i 1532 -a 0 -x {10.0 9.0 761 ------- null} - -t 0.897712 -s 0 -d 9 -p ack -e 40 -c 0 -i 1532 -a 0 -x {10.0 9.0 761 ------- null} h -t 0.897712 -s 0 -d 9 -p ack -e 40 -c 0 -i 1532 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.897824 -s 10 -d 7 -p ack -e 40 -c 0 -i 1536 -a 0 -x {10.0 9.0 763 ------- null} + -t 0.897824 -s 7 -d 0 -p ack -e 40 -c 0 -i 1536 -a 0 -x {10.0 9.0 763 ------- null} h -t 0.897824 -s 7 -d 8 -p ack -e 40 -c 0 -i 1536 -a 0 -x {10.0 9.0 763 ------- null} r -t 0.89792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1535 -a 0 -x {9.0 10.0 772 ------- null} + -t 0.89792 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1535 -a 0 -x {9.0 10.0 772 ------- null} h -t 0.89792 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1535 -a 0 -x {9.0 10.0 772 ------- null} r -t 0.897968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1521 -a 0 -x {9.0 10.0 765 ------- null} + -t 0.897968 -s 10 -d 7 -p ack -e 40 -c 0 -i 1540 -a 0 -x {10.0 9.0 765 ------- null} - -t 0.897968 -s 10 -d 7 -p ack -e 40 -c 0 -i 1540 -a 0 -x {10.0 9.0 765 ------- null} h -t 0.897968 -s 10 -d 7 -p ack -e 40 -c 0 -i 1540 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.898544 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1527 -a 0 -x {9.0 10.0 768 ------- null} - -t 0.898544 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1527 -a 0 -x {9.0 10.0 768 ------- null} h -t 0.898544 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1527 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.89856 -s 0 -d 9 -p ack -e 40 -c 0 -i 1530 -a 0 -x {10.0 9.0 760 ------- null} + -t 0.89856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1541 -a 0 -x {9.0 10.0 775 ------- null} - -t 0.89856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1541 -a 0 -x {9.0 10.0 775 ------- null} h -t 0.89856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1541 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.898704 -s 0 -d 9 -p ack -e 40 -c 0 -i 1534 -a 0 -x {10.0 9.0 762 ------- null} - -t 0.898704 -s 0 -d 9 -p ack -e 40 -c 0 -i 1534 -a 0 -x {10.0 9.0 762 ------- null} h -t 0.898704 -s 0 -d 9 -p ack -e 40 -c 0 -i 1534 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.898912 -s 10 -d 7 -p ack -e 40 -c 0 -i 1538 -a 0 -x {10.0 9.0 764 ------- null} + -t 0.898912 -s 7 -d 0 -p ack -e 40 -c 0 -i 1538 -a 0 -x {10.0 9.0 764 ------- null} h -t 0.898912 -s 7 -d 8 -p ack -e 40 -c 0 -i 1538 -a 0 -x {10.0 9.0 764 ------- null} r -t 0.89904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1537 -a 0 -x {9.0 10.0 773 ------- null} + -t 0.89904 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1537 -a 0 -x {9.0 10.0 773 ------- null} h -t 0.89904 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1537 -a 0 -x {9.0 10.0 773 ------- null} r -t 0.899056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1523 -a 0 -x {9.0 10.0 766 ------- null} + -t 0.899056 -s 10 -d 7 -p ack -e 40 -c 0 -i 1542 -a 0 -x {10.0 9.0 766 ------- null} - -t 0.899056 -s 10 -d 7 -p ack -e 40 -c 0 -i 1542 -a 0 -x {10.0 9.0 766 ------- null} h -t 0.899056 -s 10 -d 7 -p ack -e 40 -c 0 -i 1542 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.899632 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1529 -a 0 -x {9.0 10.0 769 ------- null} - -t 0.899632 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1529 -a 0 -x {9.0 10.0 769 ------- null} h -t 0.899632 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1529 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.899744 -s 0 -d 9 -p ack -e 40 -c 0 -i 1532 -a 0 -x {10.0 9.0 761 ------- null} + -t 0.899744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1543 -a 0 -x {9.0 10.0 776 ------- null} - -t 0.899744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1543 -a 0 -x {9.0 10.0 776 ------- null} h -t 0.899744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1543 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.899744 -s 0 -d 9 -p ack -e 40 -c 0 -i 1536 -a 0 -x {10.0 9.0 763 ------- null} - -t 0.899744 -s 0 -d 9 -p ack -e 40 -c 0 -i 1536 -a 0 -x {10.0 9.0 763 ------- null} h -t 0.899744 -s 0 -d 9 -p ack -e 40 -c 0 -i 1536 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.9 -s 10 -d 7 -p ack -e 40 -c 0 -i 1540 -a 0 -x {10.0 9.0 765 ------- null} + -t 0.9 -s 7 -d 0 -p ack -e 40 -c 0 -i 1540 -a 0 -x {10.0 9.0 765 ------- null} h -t 0.9 -s 7 -d 8 -p ack -e 40 -c 0 -i 1540 -a 0 -x {10.0 9.0 765 ------- null} r -t 0.90008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1539 -a 0 -x {9.0 10.0 774 ------- null} + -t 0.90008 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1539 -a 0 -x {9.0 10.0 774 ------- null} h -t 0.90008 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1539 -a 0 -x {9.0 10.0 774 ------- null} r -t 0.900256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1525 -a 0 -x {9.0 10.0 767 ------- null} + -t 0.900256 -s 10 -d 7 -p ack -e 40 -c 0 -i 1544 -a 0 -x {10.0 9.0 767 ------- null} - -t 0.900256 -s 10 -d 7 -p ack -e 40 -c 0 -i 1544 -a 0 -x {10.0 9.0 767 ------- null} h -t 0.900256 -s 10 -d 7 -p ack -e 40 -c 0 -i 1544 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.90072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1531 -a 0 -x {9.0 10.0 770 ------- null} - -t 0.90072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1531 -a 0 -x {9.0 10.0 770 ------- null} h -t 0.90072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1531 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.900736 -s 0 -d 9 -p ack -e 40 -c 0 -i 1534 -a 0 -x {10.0 9.0 762 ------- null} + -t 0.900736 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1545 -a 0 -x {9.0 10.0 777 ------- null} - -t 0.900736 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1545 -a 0 -x {9.0 10.0 777 ------- null} h -t 0.900736 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1545 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.900912 -s 0 -d 9 -p ack -e 40 -c 0 -i 1538 -a 0 -x {10.0 9.0 764 ------- null} - -t 0.900912 -s 0 -d 9 -p ack -e 40 -c 0 -i 1538 -a 0 -x {10.0 9.0 764 ------- null} h -t 0.900912 -s 0 -d 9 -p ack -e 40 -c 0 -i 1538 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.901088 -s 10 -d 7 -p ack -e 40 -c 0 -i 1542 -a 0 -x {10.0 9.0 766 ------- null} + -t 0.901088 -s 7 -d 0 -p ack -e 40 -c 0 -i 1542 -a 0 -x {10.0 9.0 766 ------- null} h -t 0.901088 -s 7 -d 8 -p ack -e 40 -c 0 -i 1542 -a 0 -x {10.0 9.0 766 ------- null} r -t 0.901344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1527 -a 0 -x {9.0 10.0 768 ------- null} + -t 0.901344 -s 10 -d 7 -p ack -e 40 -c 0 -i 1546 -a 0 -x {10.0 9.0 768 ------- null} - -t 0.901344 -s 10 -d 7 -p ack -e 40 -c 0 -i 1546 -a 0 -x {10.0 9.0 768 ------- null} h -t 0.901344 -s 10 -d 7 -p ack -e 40 -c 0 -i 1546 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.90136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1541 -a 0 -x {9.0 10.0 775 ------- null} + -t 0.90136 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1541 -a 0 -x {9.0 10.0 775 ------- null} h -t 0.90136 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1541 -a 0 -x {9.0 10.0 775 ------- null} r -t 0.901776 -s 0 -d 9 -p ack -e 40 -c 0 -i 1536 -a 0 -x {10.0 9.0 763 ------- null} + -t 0.901776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1547 -a 0 -x {9.0 10.0 778 ------- null} - -t 0.901776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1547 -a 0 -x {9.0 10.0 778 ------- null} h -t 0.901776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1547 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.901808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1533 -a 0 -x {9.0 10.0 771 ------- null} - -t 0.901808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1533 -a 0 -x {9.0 10.0 771 ------- null} h -t 0.901808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1533 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.902048 -s 0 -d 9 -p ack -e 40 -c 0 -i 1540 -a 0 -x {10.0 9.0 765 ------- null} - -t 0.902048 -s 0 -d 9 -p ack -e 40 -c 0 -i 1540 -a 0 -x {10.0 9.0 765 ------- null} h -t 0.902048 -s 0 -d 9 -p ack -e 40 -c 0 -i 1540 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.902288 -s 10 -d 7 -p ack -e 40 -c 0 -i 1544 -a 0 -x {10.0 9.0 767 ------- null} + -t 0.902288 -s 7 -d 0 -p ack -e 40 -c 0 -i 1544 -a 0 -x {10.0 9.0 767 ------- null} h -t 0.902288 -s 7 -d 8 -p ack -e 40 -c 0 -i 1544 -a 0 -x {10.0 9.0 767 ------- null} r -t 0.902432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1529 -a 0 -x {9.0 10.0 769 ------- null} + -t 0.902432 -s 10 -d 7 -p ack -e 40 -c 0 -i 1548 -a 0 -x {10.0 9.0 769 ------- null} - -t 0.902432 -s 10 -d 7 -p ack -e 40 -c 0 -i 1548 -a 0 -x {10.0 9.0 769 ------- null} h -t 0.902432 -s 10 -d 7 -p ack -e 40 -c 0 -i 1548 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.902544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1543 -a 0 -x {9.0 10.0 776 ------- null} + -t 0.902544 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1543 -a 0 -x {9.0 10.0 776 ------- null} h -t 0.902544 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1543 -a 0 -x {9.0 10.0 776 ------- null} + -t 0.902896 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1535 -a 0 -x {9.0 10.0 772 ------- null} - -t 0.902896 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1535 -a 0 -x {9.0 10.0 772 ------- null} h -t 0.902896 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1535 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.902944 -s 0 -d 9 -p ack -e 40 -c 0 -i 1538 -a 0 -x {10.0 9.0 764 ------- null} + -t 0.902944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1549 -a 0 -x {9.0 10.0 779 ------- null} - -t 0.902944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1549 -a 0 -x {9.0 10.0 779 ------- null} h -t 0.902944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1549 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.903024 -s 0 -d 9 -p ack -e 40 -c 0 -i 1542 -a 0 -x {10.0 9.0 766 ------- null} - -t 0.903024 -s 0 -d 9 -p ack -e 40 -c 0 -i 1542 -a 0 -x {10.0 9.0 766 ------- null} h -t 0.903024 -s 0 -d 9 -p ack -e 40 -c 0 -i 1542 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.903376 -s 10 -d 7 -p ack -e 40 -c 0 -i 1546 -a 0 -x {10.0 9.0 768 ------- null} + -t 0.903376 -s 7 -d 0 -p ack -e 40 -c 0 -i 1546 -a 0 -x {10.0 9.0 768 ------- null} h -t 0.903376 -s 7 -d 8 -p ack -e 40 -c 0 -i 1546 -a 0 -x {10.0 9.0 768 ------- null} r -t 0.90352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1531 -a 0 -x {9.0 10.0 770 ------- null} + -t 0.90352 -s 10 -d 7 -p ack -e 40 -c 0 -i 1550 -a 0 -x {10.0 9.0 770 ------- null} - -t 0.90352 -s 10 -d 7 -p ack -e 40 -c 0 -i 1550 -a 0 -x {10.0 9.0 770 ------- null} h -t 0.90352 -s 10 -d 7 -p ack -e 40 -c 0 -i 1550 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.903536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1545 -a 0 -x {9.0 10.0 777 ------- null} + -t 0.903536 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1545 -a 0 -x {9.0 10.0 777 ------- null} h -t 0.903536 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1545 -a 0 -x {9.0 10.0 777 ------- null} + -t 0.903984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1537 -a 0 -x {9.0 10.0 773 ------- null} - -t 0.903984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1537 -a 0 -x {9.0 10.0 773 ------- null} h -t 0.903984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1537 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.90408 -s 0 -d 9 -p ack -e 40 -c 0 -i 1540 -a 0 -x {10.0 9.0 765 ------- null} + -t 0.90408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1551 -a 0 -x {9.0 10.0 780 ------- null} - -t 0.90408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1551 -a 0 -x {9.0 10.0 780 ------- null} h -t 0.90408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1551 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.904096 -s 0 -d 9 -p ack -e 40 -c 0 -i 1544 -a 0 -x {10.0 9.0 767 ------- null} - -t 0.904096 -s 0 -d 9 -p ack -e 40 -c 0 -i 1544 -a 0 -x {10.0 9.0 767 ------- null} h -t 0.904096 -s 0 -d 9 -p ack -e 40 -c 0 -i 1544 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.904464 -s 10 -d 7 -p ack -e 40 -c 0 -i 1548 -a 0 -x {10.0 9.0 769 ------- null} + -t 0.904464 -s 7 -d 0 -p ack -e 40 -c 0 -i 1548 -a 0 -x {10.0 9.0 769 ------- null} h -t 0.904464 -s 7 -d 8 -p ack -e 40 -c 0 -i 1548 -a 0 -x {10.0 9.0 769 ------- null} r -t 0.904576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1547 -a 0 -x {9.0 10.0 778 ------- null} + -t 0.904576 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1547 -a 0 -x {9.0 10.0 778 ------- null} h -t 0.904576 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1547 -a 0 -x {9.0 10.0 778 ------- null} r -t 0.904608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1533 -a 0 -x {9.0 10.0 771 ------- null} + -t 0.904608 -s 10 -d 7 -p ack -e 40 -c 0 -i 1552 -a 0 -x {10.0 9.0 771 ------- null} - -t 0.904608 -s 10 -d 7 -p ack -e 40 -c 0 -i 1552 -a 0 -x {10.0 9.0 771 ------- null} h -t 0.904608 -s 10 -d 7 -p ack -e 40 -c 0 -i 1552 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.905056 -s 0 -d 9 -p ack -e 40 -c 0 -i 1542 -a 0 -x {10.0 9.0 766 ------- null} + -t 0.905056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1553 -a 0 -x {9.0 10.0 781 ------- null} - -t 0.905056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1553 -a 0 -x {9.0 10.0 781 ------- null} h -t 0.905056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1553 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.905072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1539 -a 0 -x {9.0 10.0 774 ------- null} - -t 0.905072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1539 -a 0 -x {9.0 10.0 774 ------- null} h -t 0.905072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1539 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.90536 -s 0 -d 9 -p ack -e 40 -c 0 -i 1546 -a 0 -x {10.0 9.0 768 ------- null} - -t 0.90536 -s 0 -d 9 -p ack -e 40 -c 0 -i 1546 -a 0 -x {10.0 9.0 768 ------- null} h -t 0.90536 -s 0 -d 9 -p ack -e 40 -c 0 -i 1546 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.905552 -s 10 -d 7 -p ack -e 40 -c 0 -i 1550 -a 0 -x {10.0 9.0 770 ------- null} + -t 0.905552 -s 7 -d 0 -p ack -e 40 -c 0 -i 1550 -a 0 -x {10.0 9.0 770 ------- null} h -t 0.905552 -s 7 -d 8 -p ack -e 40 -c 0 -i 1550 -a 0 -x {10.0 9.0 770 ------- null} r -t 0.905696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1535 -a 0 -x {9.0 10.0 772 ------- null} + -t 0.905696 -s 10 -d 7 -p ack -e 40 -c 0 -i 1554 -a 0 -x {10.0 9.0 772 ------- null} - -t 0.905696 -s 10 -d 7 -p ack -e 40 -c 0 -i 1554 -a 0 -x {10.0 9.0 772 ------- null} h -t 0.905696 -s 10 -d 7 -p ack -e 40 -c 0 -i 1554 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.905744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1549 -a 0 -x {9.0 10.0 779 ------- null} + -t 0.905744 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1549 -a 0 -x {9.0 10.0 779 ------- null} h -t 0.905744 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1549 -a 0 -x {9.0 10.0 779 ------- null} r -t 0.906128 -s 0 -d 9 -p ack -e 40 -c 0 -i 1544 -a 0 -x {10.0 9.0 767 ------- null} + -t 0.906128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1555 -a 0 -x {9.0 10.0 782 ------- null} - -t 0.906128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1555 -a 0 -x {9.0 10.0 782 ------- null} h -t 0.906128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1555 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.90632 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1541 -a 0 -x {9.0 10.0 775 ------- null} - -t 0.90632 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1541 -a 0 -x {9.0 10.0 775 ------- null} h -t 0.90632 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1541 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.906416 -s 0 -d 9 -p ack -e 40 -c 0 -i 1548 -a 0 -x {10.0 9.0 769 ------- null} - -t 0.906416 -s 0 -d 9 -p ack -e 40 -c 0 -i 1548 -a 0 -x {10.0 9.0 769 ------- null} h -t 0.906416 -s 0 -d 9 -p ack -e 40 -c 0 -i 1548 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.90664 -s 10 -d 7 -p ack -e 40 -c 0 -i 1552 -a 0 -x {10.0 9.0 771 ------- null} + -t 0.90664 -s 7 -d 0 -p ack -e 40 -c 0 -i 1552 -a 0 -x {10.0 9.0 771 ------- null} h -t 0.90664 -s 7 -d 8 -p ack -e 40 -c 0 -i 1552 -a 0 -x {10.0 9.0 771 ------- null} r -t 0.906784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1537 -a 0 -x {9.0 10.0 773 ------- null} + -t 0.906784 -s 10 -d 7 -p ack -e 40 -c 0 -i 1556 -a 0 -x {10.0 9.0 773 ------- null} - -t 0.906784 -s 10 -d 7 -p ack -e 40 -c 0 -i 1556 -a 0 -x {10.0 9.0 773 ------- null} h -t 0.906784 -s 10 -d 7 -p ack -e 40 -c 0 -i 1556 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.90688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1551 -a 0 -x {9.0 10.0 780 ------- null} + -t 0.90688 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1551 -a 0 -x {9.0 10.0 780 ------- null} h -t 0.90688 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1551 -a 0 -x {9.0 10.0 780 ------- null} r -t 0.907392 -s 0 -d 9 -p ack -e 40 -c 0 -i 1546 -a 0 -x {10.0 9.0 768 ------- null} + -t 0.907392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1557 -a 0 -x {9.0 10.0 783 ------- null} - -t 0.907392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1557 -a 0 -x {9.0 10.0 783 ------- null} h -t 0.907392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1557 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.907408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1543 -a 0 -x {9.0 10.0 776 ------- null} - -t 0.907408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1543 -a 0 -x {9.0 10.0 776 ------- null} h -t 0.907408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1543 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.907648 -s 0 -d 9 -p ack -e 40 -c 0 -i 1550 -a 0 -x {10.0 9.0 770 ------- null} - -t 0.907648 -s 0 -d 9 -p ack -e 40 -c 0 -i 1550 -a 0 -x {10.0 9.0 770 ------- null} h -t 0.907648 -s 0 -d 9 -p ack -e 40 -c 0 -i 1550 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.907728 -s 10 -d 7 -p ack -e 40 -c 0 -i 1554 -a 0 -x {10.0 9.0 772 ------- null} + -t 0.907728 -s 7 -d 0 -p ack -e 40 -c 0 -i 1554 -a 0 -x {10.0 9.0 772 ------- null} h -t 0.907728 -s 7 -d 8 -p ack -e 40 -c 0 -i 1554 -a 0 -x {10.0 9.0 772 ------- null} r -t 0.907856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1553 -a 0 -x {9.0 10.0 781 ------- null} + -t 0.907856 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1553 -a 0 -x {9.0 10.0 781 ------- null} h -t 0.907856 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1553 -a 0 -x {9.0 10.0 781 ------- null} r -t 0.907872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1539 -a 0 -x {9.0 10.0 774 ------- null} + -t 0.907872 -s 10 -d 7 -p ack -e 40 -c 0 -i 1558 -a 0 -x {10.0 9.0 774 ------- null} - -t 0.907872 -s 10 -d 7 -p ack -e 40 -c 0 -i 1558 -a 0 -x {10.0 9.0 774 ------- null} h -t 0.907872 -s 10 -d 7 -p ack -e 40 -c 0 -i 1558 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.908448 -s 0 -d 9 -p ack -e 40 -c 0 -i 1548 -a 0 -x {10.0 9.0 769 ------- null} + -t 0.908448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1559 -a 0 -x {9.0 10.0 784 ------- null} - -t 0.908448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1559 -a 0 -x {9.0 10.0 784 ------- null} h -t 0.908448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1559 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.908496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1545 -a 0 -x {9.0 10.0 777 ------- null} - -t 0.908496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1545 -a 0 -x {9.0 10.0 777 ------- null} h -t 0.908496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1545 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.908576 -s 0 -d 9 -p ack -e 40 -c 0 -i 1552 -a 0 -x {10.0 9.0 771 ------- null} - -t 0.908576 -s 0 -d 9 -p ack -e 40 -c 0 -i 1552 -a 0 -x {10.0 9.0 771 ------- null} h -t 0.908576 -s 0 -d 9 -p ack -e 40 -c 0 -i 1552 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.908816 -s 10 -d 7 -p ack -e 40 -c 0 -i 1556 -a 0 -x {10.0 9.0 773 ------- null} + -t 0.908816 -s 7 -d 0 -p ack -e 40 -c 0 -i 1556 -a 0 -x {10.0 9.0 773 ------- null} h -t 0.908816 -s 7 -d 8 -p ack -e 40 -c 0 -i 1556 -a 0 -x {10.0 9.0 773 ------- null} r -t 0.908928 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1555 -a 0 -x {9.0 10.0 782 ------- null} + -t 0.908928 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1555 -a 0 -x {9.0 10.0 782 ------- null} h -t 0.908928 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1555 -a 0 -x {9.0 10.0 782 ------- null} r -t 0.90912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1541 -a 0 -x {9.0 10.0 775 ------- null} + -t 0.90912 -s 10 -d 7 -p ack -e 40 -c 0 -i 1560 -a 0 -x {10.0 9.0 775 ------- null} - -t 0.90912 -s 10 -d 7 -p ack -e 40 -c 0 -i 1560 -a 0 -x {10.0 9.0 775 ------- null} h -t 0.90912 -s 10 -d 7 -p ack -e 40 -c 0 -i 1560 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.909584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1547 -a 0 -x {9.0 10.0 778 ------- null} - -t 0.909584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1547 -a 0 -x {9.0 10.0 778 ------- null} h -t 0.909584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1547 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.90968 -s 0 -d 9 -p ack -e 40 -c 0 -i 1550 -a 0 -x {10.0 9.0 770 ------- null} + -t 0.90968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1561 -a 0 -x {9.0 10.0 785 ------- null} - -t 0.90968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1561 -a 0 -x {9.0 10.0 785 ------- null} h -t 0.90968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1561 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.909808 -s 0 -d 9 -p ack -e 40 -c 0 -i 1554 -a 0 -x {10.0 9.0 772 ------- null} - -t 0.909808 -s 0 -d 9 -p ack -e 40 -c 0 -i 1554 -a 0 -x {10.0 9.0 772 ------- null} h -t 0.909808 -s 0 -d 9 -p ack -e 40 -c 0 -i 1554 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.909904 -s 10 -d 7 -p ack -e 40 -c 0 -i 1558 -a 0 -x {10.0 9.0 774 ------- null} + -t 0.909904 -s 7 -d 0 -p ack -e 40 -c 0 -i 1558 -a 0 -x {10.0 9.0 774 ------- null} h -t 0.909904 -s 7 -d 8 -p ack -e 40 -c 0 -i 1558 -a 0 -x {10.0 9.0 774 ------- null} r -t 0.910192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1557 -a 0 -x {9.0 10.0 783 ------- null} + -t 0.910192 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1557 -a 0 -x {9.0 10.0 783 ------- null} h -t 0.910192 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1557 -a 0 -x {9.0 10.0 783 ------- null} r -t 0.910208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1543 -a 0 -x {9.0 10.0 776 ------- null} + -t 0.910208 -s 10 -d 7 -p ack -e 40 -c 0 -i 1562 -a 0 -x {10.0 9.0 776 ------- null} - -t 0.910208 -s 10 -d 7 -p ack -e 40 -c 0 -i 1562 -a 0 -x {10.0 9.0 776 ------- null} h -t 0.910208 -s 10 -d 7 -p ack -e 40 -c 0 -i 1562 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.910608 -s 0 -d 9 -p ack -e 40 -c 0 -i 1552 -a 0 -x {10.0 9.0 771 ------- null} + -t 0.910608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1563 -a 0 -x {9.0 10.0 786 ------- null} - -t 0.910608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1563 -a 0 -x {9.0 10.0 786 ------- null} h -t 0.910608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1563 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.910672 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1549 -a 0 -x {9.0 10.0 779 ------- null} - -t 0.910672 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1549 -a 0 -x {9.0 10.0 779 ------- null} h -t 0.910672 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1549 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.910976 -s 0 -d 9 -p ack -e 40 -c 0 -i 1556 -a 0 -x {10.0 9.0 773 ------- null} - -t 0.910976 -s 0 -d 9 -p ack -e 40 -c 0 -i 1556 -a 0 -x {10.0 9.0 773 ------- null} h -t 0.910976 -s 0 -d 9 -p ack -e 40 -c 0 -i 1556 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.911152 -s 10 -d 7 -p ack -e 40 -c 0 -i 1560 -a 0 -x {10.0 9.0 775 ------- null} + -t 0.911152 -s 7 -d 0 -p ack -e 40 -c 0 -i 1560 -a 0 -x {10.0 9.0 775 ------- null} h -t 0.911152 -s 7 -d 8 -p ack -e 40 -c 0 -i 1560 -a 0 -x {10.0 9.0 775 ------- null} r -t 0.911248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1559 -a 0 -x {9.0 10.0 784 ------- null} + -t 0.911248 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1559 -a 0 -x {9.0 10.0 784 ------- null} h -t 0.911248 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1559 -a 0 -x {9.0 10.0 784 ------- null} r -t 0.911296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1545 -a 0 -x {9.0 10.0 777 ------- null} + -t 0.911296 -s 10 -d 7 -p ack -e 40 -c 0 -i 1564 -a 0 -x {10.0 9.0 777 ------- null} - -t 0.911296 -s 10 -d 7 -p ack -e 40 -c 0 -i 1564 -a 0 -x {10.0 9.0 777 ------- null} h -t 0.911296 -s 10 -d 7 -p ack -e 40 -c 0 -i 1564 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.91184 -s 0 -d 9 -p ack -e 40 -c 0 -i 1554 -a 0 -x {10.0 9.0 772 ------- null} + -t 0.91184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1565 -a 0 -x {9.0 10.0 787 ------- null} - -t 0.91184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1565 -a 0 -x {9.0 10.0 787 ------- null} h -t 0.91184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1565 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.911904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1551 -a 0 -x {9.0 10.0 780 ------- null} - -t 0.911904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1551 -a 0 -x {9.0 10.0 780 ------- null} h -t 0.911904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1551 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.911984 -s 0 -d 9 -p ack -e 40 -c 0 -i 1558 -a 0 -x {10.0 9.0 774 ------- null} - -t 0.911984 -s 0 -d 9 -p ack -e 40 -c 0 -i 1558 -a 0 -x {10.0 9.0 774 ------- null} h -t 0.911984 -s 0 -d 9 -p ack -e 40 -c 0 -i 1558 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.91224 -s 10 -d 7 -p ack -e 40 -c 0 -i 1562 -a 0 -x {10.0 9.0 776 ------- null} + -t 0.91224 -s 7 -d 0 -p ack -e 40 -c 0 -i 1562 -a 0 -x {10.0 9.0 776 ------- null} h -t 0.91224 -s 7 -d 8 -p ack -e 40 -c 0 -i 1562 -a 0 -x {10.0 9.0 776 ------- null} r -t 0.912384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1547 -a 0 -x {9.0 10.0 778 ------- null} + -t 0.912384 -s 10 -d 7 -p ack -e 40 -c 0 -i 1566 -a 0 -x {10.0 9.0 778 ------- null} - -t 0.912384 -s 10 -d 7 -p ack -e 40 -c 0 -i 1566 -a 0 -x {10.0 9.0 778 ------- null} h -t 0.912384 -s 10 -d 7 -p ack -e 40 -c 0 -i 1566 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.91248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1561 -a 0 -x {9.0 10.0 785 ------- null} + -t 0.91248 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1561 -a 0 -x {9.0 10.0 785 ------- null} h -t 0.91248 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1561 -a 0 -x {9.0 10.0 785 ------- null} + -t 0.912992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1553 -a 0 -x {9.0 10.0 781 ------- null} - -t 0.912992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1553 -a 0 -x {9.0 10.0 781 ------- null} h -t 0.912992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1553 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.913008 -s 0 -d 9 -p ack -e 40 -c 0 -i 1556 -a 0 -x {10.0 9.0 773 ------- null} + -t 0.913008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1567 -a 0 -x {9.0 10.0 788 ------- null} - -t 0.913008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1567 -a 0 -x {9.0 10.0 788 ------- null} h -t 0.913008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1567 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.913072 -s 0 -d 9 -p ack -e 40 -c 0 -i 1560 -a 0 -x {10.0 9.0 775 ------- null} - -t 0.913072 -s 0 -d 9 -p ack -e 40 -c 0 -i 1560 -a 0 -x {10.0 9.0 775 ------- null} h -t 0.913072 -s 0 -d 9 -p ack -e 40 -c 0 -i 1560 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.913328 -s 10 -d 7 -p ack -e 40 -c 0 -i 1564 -a 0 -x {10.0 9.0 777 ------- null} + -t 0.913328 -s 7 -d 0 -p ack -e 40 -c 0 -i 1564 -a 0 -x {10.0 9.0 777 ------- null} h -t 0.913328 -s 7 -d 8 -p ack -e 40 -c 0 -i 1564 -a 0 -x {10.0 9.0 777 ------- null} r -t 0.913408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1563 -a 0 -x {9.0 10.0 786 ------- null} + -t 0.913408 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1563 -a 0 -x {9.0 10.0 786 ------- null} h -t 0.913408 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1563 -a 0 -x {9.0 10.0 786 ------- null} r -t 0.913472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1549 -a 0 -x {9.0 10.0 779 ------- null} + -t 0.913472 -s 10 -d 7 -p ack -e 40 -c 0 -i 1568 -a 0 -x {10.0 9.0 779 ------- null} - -t 0.913472 -s 10 -d 7 -p ack -e 40 -c 0 -i 1568 -a 0 -x {10.0 9.0 779 ------- null} h -t 0.913472 -s 10 -d 7 -p ack -e 40 -c 0 -i 1568 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.914016 -s 0 -d 9 -p ack -e 40 -c 0 -i 1558 -a 0 -x {10.0 9.0 774 ------- null} + -t 0.914016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1569 -a 0 -x {9.0 10.0 789 ------- null} - -t 0.914016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1569 -a 0 -x {9.0 10.0 789 ------- null} h -t 0.914016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1569 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.91408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1555 -a 0 -x {9.0 10.0 782 ------- null} - -t 0.91408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1555 -a 0 -x {9.0 10.0 782 ------- null} h -t 0.91408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1555 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.914176 -s 0 -d 9 -p ack -e 40 -c 0 -i 1562 -a 0 -x {10.0 9.0 776 ------- null} - -t 0.914176 -s 0 -d 9 -p ack -e 40 -c 0 -i 1562 -a 0 -x {10.0 9.0 776 ------- null} h -t 0.914176 -s 0 -d 9 -p ack -e 40 -c 0 -i 1562 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.914416 -s 10 -d 7 -p ack -e 40 -c 0 -i 1566 -a 0 -x {10.0 9.0 778 ------- null} + -t 0.914416 -s 7 -d 0 -p ack -e 40 -c 0 -i 1566 -a 0 -x {10.0 9.0 778 ------- null} h -t 0.914416 -s 7 -d 8 -p ack -e 40 -c 0 -i 1566 -a 0 -x {10.0 9.0 778 ------- null} r -t 0.91464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1565 -a 0 -x {9.0 10.0 787 ------- null} + -t 0.91464 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1565 -a 0 -x {9.0 10.0 787 ------- null} h -t 0.91464 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1565 -a 0 -x {9.0 10.0 787 ------- null} r -t 0.914704 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1551 -a 0 -x {9.0 10.0 780 ------- null} + -t 0.914704 -s 10 -d 7 -p ack -e 40 -c 0 -i 1570 -a 0 -x {10.0 9.0 780 ------- null} - -t 0.914704 -s 10 -d 7 -p ack -e 40 -c 0 -i 1570 -a 0 -x {10.0 9.0 780 ------- null} h -t 0.914704 -s 10 -d 7 -p ack -e 40 -c 0 -i 1570 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.915104 -s 0 -d 9 -p ack -e 40 -c 0 -i 1560 -a 0 -x {10.0 9.0 775 ------- null} + -t 0.915104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1571 -a 0 -x {9.0 10.0 790 ------- null} - -t 0.915104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1571 -a 0 -x {9.0 10.0 790 ------- null} h -t 0.915104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1571 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.915168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1557 -a 0 -x {9.0 10.0 783 ------- null} - -t 0.915168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1557 -a 0 -x {9.0 10.0 783 ------- null} h -t 0.915168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1557 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.91536 -s 0 -d 9 -p ack -e 40 -c 0 -i 1564 -a 0 -x {10.0 9.0 777 ------- null} - -t 0.91536 -s 0 -d 9 -p ack -e 40 -c 0 -i 1564 -a 0 -x {10.0 9.0 777 ------- null} h -t 0.91536 -s 0 -d 9 -p ack -e 40 -c 0 -i 1564 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.915504 -s 10 -d 7 -p ack -e 40 -c 0 -i 1568 -a 0 -x {10.0 9.0 779 ------- null} + -t 0.915504 -s 7 -d 0 -p ack -e 40 -c 0 -i 1568 -a 0 -x {10.0 9.0 779 ------- null} h -t 0.915504 -s 7 -d 8 -p ack -e 40 -c 0 -i 1568 -a 0 -x {10.0 9.0 779 ------- null} r -t 0.915792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1553 -a 0 -x {9.0 10.0 781 ------- null} + -t 0.915792 -s 10 -d 7 -p ack -e 40 -c 0 -i 1572 -a 0 -x {10.0 9.0 781 ------- null} - -t 0.915792 -s 10 -d 7 -p ack -e 40 -c 0 -i 1572 -a 0 -x {10.0 9.0 781 ------- null} h -t 0.915792 -s 10 -d 7 -p ack -e 40 -c 0 -i 1572 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.915808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1567 -a 0 -x {9.0 10.0 788 ------- null} + -t 0.915808 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1567 -a 0 -x {9.0 10.0 788 ------- null} h -t 0.915808 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1567 -a 0 -x {9.0 10.0 788 ------- null} r -t 0.916208 -s 0 -d 9 -p ack -e 40 -c 0 -i 1562 -a 0 -x {10.0 9.0 776 ------- null} + -t 0.916208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1573 -a 0 -x {9.0 10.0 791 ------- null} - -t 0.916208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1573 -a 0 -x {9.0 10.0 791 ------- null} h -t 0.916208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1573 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.916256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1559 -a 0 -x {9.0 10.0 784 ------- null} - -t 0.916256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1559 -a 0 -x {9.0 10.0 784 ------- null} h -t 0.916256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1559 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.916352 -s 0 -d 9 -p ack -e 40 -c 0 -i 1566 -a 0 -x {10.0 9.0 778 ------- null} - -t 0.916352 -s 0 -d 9 -p ack -e 40 -c 0 -i 1566 -a 0 -x {10.0 9.0 778 ------- null} h -t 0.916352 -s 0 -d 9 -p ack -e 40 -c 0 -i 1566 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.916736 -s 10 -d 7 -p ack -e 40 -c 0 -i 1570 -a 0 -x {10.0 9.0 780 ------- null} + -t 0.916736 -s 7 -d 0 -p ack -e 40 -c 0 -i 1570 -a 0 -x {10.0 9.0 780 ------- null} h -t 0.916736 -s 7 -d 8 -p ack -e 40 -c 0 -i 1570 -a 0 -x {10.0 9.0 780 ------- null} r -t 0.916816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1569 -a 0 -x {9.0 10.0 789 ------- null} + -t 0.916816 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1569 -a 0 -x {9.0 10.0 789 ------- null} h -t 0.916816 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1569 -a 0 -x {9.0 10.0 789 ------- null} r -t 0.91688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1555 -a 0 -x {9.0 10.0 782 ------- null} + -t 0.91688 -s 10 -d 7 -p ack -e 40 -c 0 -i 1574 -a 0 -x {10.0 9.0 782 ------- null} - -t 0.91688 -s 10 -d 7 -p ack -e 40 -c 0 -i 1574 -a 0 -x {10.0 9.0 782 ------- null} h -t 0.91688 -s 10 -d 7 -p ack -e 40 -c 0 -i 1574 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.917344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1561 -a 0 -x {9.0 10.0 785 ------- null} - -t 0.917344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1561 -a 0 -x {9.0 10.0 785 ------- null} h -t 0.917344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1561 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.917392 -s 0 -d 9 -p ack -e 40 -c 0 -i 1564 -a 0 -x {10.0 9.0 777 ------- null} + -t 0.917392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1575 -a 0 -x {9.0 10.0 792 ------- null} - -t 0.917392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1575 -a 0 -x {9.0 10.0 792 ------- null} h -t 0.917392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1575 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.917408 -s 0 -d 9 -p ack -e 40 -c 0 -i 1568 -a 0 -x {10.0 9.0 779 ------- null} - -t 0.917408 -s 0 -d 9 -p ack -e 40 -c 0 -i 1568 -a 0 -x {10.0 9.0 779 ------- null} h -t 0.917408 -s 0 -d 9 -p ack -e 40 -c 0 -i 1568 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.917824 -s 10 -d 7 -p ack -e 40 -c 0 -i 1572 -a 0 -x {10.0 9.0 781 ------- null} + -t 0.917824 -s 7 -d 0 -p ack -e 40 -c 0 -i 1572 -a 0 -x {10.0 9.0 781 ------- null} h -t 0.917824 -s 7 -d 8 -p ack -e 40 -c 0 -i 1572 -a 0 -x {10.0 9.0 781 ------- null} r -t 0.917904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1571 -a 0 -x {9.0 10.0 790 ------- null} + -t 0.917904 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1571 -a 0 -x {9.0 10.0 790 ------- null} h -t 0.917904 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1571 -a 0 -x {9.0 10.0 790 ------- null} r -t 0.917968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1557 -a 0 -x {9.0 10.0 783 ------- null} + -t 0.917968 -s 10 -d 7 -p ack -e 40 -c 0 -i 1576 -a 0 -x {10.0 9.0 783 ------- null} - -t 0.917968 -s 10 -d 7 -p ack -e 40 -c 0 -i 1576 -a 0 -x {10.0 9.0 783 ------- null} h -t 0.917968 -s 10 -d 7 -p ack -e 40 -c 0 -i 1576 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.918384 -s 0 -d 9 -p ack -e 40 -c 0 -i 1566 -a 0 -x {10.0 9.0 778 ------- null} + -t 0.918384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1577 -a 0 -x {9.0 10.0 793 ------- null} - -t 0.918384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1577 -a 0 -x {9.0 10.0 793 ------- null} h -t 0.918384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1577 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.918432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1563 -a 0 -x {9.0 10.0 786 ------- null} - -t 0.918432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1563 -a 0 -x {9.0 10.0 786 ------- null} h -t 0.918432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1563 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.918528 -s 0 -d 9 -p ack -e 40 -c 0 -i 1570 -a 0 -x {10.0 9.0 780 ------- null} - -t 0.918528 -s 0 -d 9 -p ack -e 40 -c 0 -i 1570 -a 0 -x {10.0 9.0 780 ------- null} h -t 0.918528 -s 0 -d 9 -p ack -e 40 -c 0 -i 1570 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.918912 -s 10 -d 7 -p ack -e 40 -c 0 -i 1574 -a 0 -x {10.0 9.0 782 ------- null} + -t 0.918912 -s 7 -d 0 -p ack -e 40 -c 0 -i 1574 -a 0 -x {10.0 9.0 782 ------- null} h -t 0.918912 -s 7 -d 8 -p ack -e 40 -c 0 -i 1574 -a 0 -x {10.0 9.0 782 ------- null} r -t 0.919008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1573 -a 0 -x {9.0 10.0 791 ------- null} + -t 0.919008 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1573 -a 0 -x {9.0 10.0 791 ------- null} h -t 0.919008 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1573 -a 0 -x {9.0 10.0 791 ------- null} r -t 0.919056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1559 -a 0 -x {9.0 10.0 784 ------- null} + -t 0.919056 -s 10 -d 7 -p ack -e 40 -c 0 -i 1578 -a 0 -x {10.0 9.0 784 ------- null} - -t 0.919056 -s 10 -d 7 -p ack -e 40 -c 0 -i 1578 -a 0 -x {10.0 9.0 784 ------- null} h -t 0.919056 -s 10 -d 7 -p ack -e 40 -c 0 -i 1578 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.91944 -s 0 -d 9 -p ack -e 40 -c 0 -i 1568 -a 0 -x {10.0 9.0 779 ------- null} + -t 0.91944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1579 -a 0 -x {9.0 10.0 794 ------- null} - -t 0.91944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1579 -a 0 -x {9.0 10.0 794 ------- null} h -t 0.91944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1579 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.91952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1565 -a 0 -x {9.0 10.0 787 ------- null} - -t 0.91952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1565 -a 0 -x {9.0 10.0 787 ------- null} h -t 0.91952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1565 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.91976 -s 0 -d 9 -p ack -e 40 -c 0 -i 1572 -a 0 -x {10.0 9.0 781 ------- null} - -t 0.91976 -s 0 -d 9 -p ack -e 40 -c 0 -i 1572 -a 0 -x {10.0 9.0 781 ------- null} h -t 0.91976 -s 0 -d 9 -p ack -e 40 -c 0 -i 1572 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.92 -s 10 -d 7 -p ack -e 40 -c 0 -i 1576 -a 0 -x {10.0 9.0 783 ------- null} + -t 0.92 -s 7 -d 0 -p ack -e 40 -c 0 -i 1576 -a 0 -x {10.0 9.0 783 ------- null} h -t 0.92 -s 7 -d 8 -p ack -e 40 -c 0 -i 1576 -a 0 -x {10.0 9.0 783 ------- null} r -t 0.920144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1561 -a 0 -x {9.0 10.0 785 ------- null} + -t 0.920144 -s 10 -d 7 -p ack -e 40 -c 0 -i 1580 -a 0 -x {10.0 9.0 785 ------- null} - -t 0.920144 -s 10 -d 7 -p ack -e 40 -c 0 -i 1580 -a 0 -x {10.0 9.0 785 ------- null} h -t 0.920144 -s 10 -d 7 -p ack -e 40 -c 0 -i 1580 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.920192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1575 -a 0 -x {9.0 10.0 792 ------- null} + -t 0.920192 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1575 -a 0 -x {9.0 10.0 792 ------- null} h -t 0.920192 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1575 -a 0 -x {9.0 10.0 792 ------- null} r -t 0.92056 -s 0 -d 9 -p ack -e 40 -c 0 -i 1570 -a 0 -x {10.0 9.0 780 ------- null} + -t 0.92056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1581 -a 0 -x {9.0 10.0 795 ------- null} - -t 0.92056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1581 -a 0 -x {9.0 10.0 795 ------- null} h -t 0.92056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1581 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.920608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1567 -a 0 -x {9.0 10.0 788 ------- null} - -t 0.920608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1567 -a 0 -x {9.0 10.0 788 ------- null} h -t 0.920608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1567 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.9208 -s 0 -d 9 -p ack -e 40 -c 0 -i 1574 -a 0 -x {10.0 9.0 782 ------- null} - -t 0.9208 -s 0 -d 9 -p ack -e 40 -c 0 -i 1574 -a 0 -x {10.0 9.0 782 ------- null} h -t 0.9208 -s 0 -d 9 -p ack -e 40 -c 0 -i 1574 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.921088 -s 10 -d 7 -p ack -e 40 -c 0 -i 1578 -a 0 -x {10.0 9.0 784 ------- null} + -t 0.921088 -s 7 -d 0 -p ack -e 40 -c 0 -i 1578 -a 0 -x {10.0 9.0 784 ------- null} h -t 0.921088 -s 7 -d 8 -p ack -e 40 -c 0 -i 1578 -a 0 -x {10.0 9.0 784 ------- null} r -t 0.921184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1577 -a 0 -x {9.0 10.0 793 ------- null} + -t 0.921184 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1577 -a 0 -x {9.0 10.0 793 ------- null} h -t 0.921184 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1577 -a 0 -x {9.0 10.0 793 ------- null} r -t 0.921232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1563 -a 0 -x {9.0 10.0 786 ------- null} + -t 0.921232 -s 10 -d 7 -p ack -e 40 -c 0 -i 1582 -a 0 -x {10.0 9.0 786 ------- null} - -t 0.921232 -s 10 -d 7 -p ack -e 40 -c 0 -i 1582 -a 0 -x {10.0 9.0 786 ------- null} h -t 0.921232 -s 10 -d 7 -p ack -e 40 -c 0 -i 1582 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.921696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1569 -a 0 -x {9.0 10.0 789 ------- null} - -t 0.921696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1569 -a 0 -x {9.0 10.0 789 ------- null} h -t 0.921696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1569 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.921792 -s 0 -d 9 -p ack -e 40 -c 0 -i 1572 -a 0 -x {10.0 9.0 781 ------- null} + -t 0.921792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1583 -a 0 -x {9.0 10.0 796 ------- null} - -t 0.921792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1583 -a 0 -x {9.0 10.0 796 ------- null} h -t 0.921792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1583 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.921872 -s 0 -d 9 -p ack -e 40 -c 0 -i 1576 -a 0 -x {10.0 9.0 783 ------- null} - -t 0.921872 -s 0 -d 9 -p ack -e 40 -c 0 -i 1576 -a 0 -x {10.0 9.0 783 ------- null} h -t 0.921872 -s 0 -d 9 -p ack -e 40 -c 0 -i 1576 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.922176 -s 10 -d 7 -p ack -e 40 -c 0 -i 1580 -a 0 -x {10.0 9.0 785 ------- null} + -t 0.922176 -s 7 -d 0 -p ack -e 40 -c 0 -i 1580 -a 0 -x {10.0 9.0 785 ------- null} h -t 0.922176 -s 7 -d 8 -p ack -e 40 -c 0 -i 1580 -a 0 -x {10.0 9.0 785 ------- null} r -t 0.92224 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1579 -a 0 -x {9.0 10.0 794 ------- null} + -t 0.92224 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1579 -a 0 -x {9.0 10.0 794 ------- null} h -t 0.92224 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1579 -a 0 -x {9.0 10.0 794 ------- null} r -t 0.92232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1565 -a 0 -x {9.0 10.0 787 ------- null} + -t 0.92232 -s 10 -d 7 -p ack -e 40 -c 0 -i 1584 -a 0 -x {10.0 9.0 787 ------- null} - -t 0.92232 -s 10 -d 7 -p ack -e 40 -c 0 -i 1584 -a 0 -x {10.0 9.0 787 ------- null} h -t 0.92232 -s 10 -d 7 -p ack -e 40 -c 0 -i 1584 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.922784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1571 -a 0 -x {9.0 10.0 790 ------- null} - -t 0.922784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1571 -a 0 -x {9.0 10.0 790 ------- null} h -t 0.922784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1571 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.922832 -s 0 -d 9 -p ack -e 40 -c 0 -i 1574 -a 0 -x {10.0 9.0 782 ------- null} + -t 0.922832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1585 -a 0 -x {9.0 10.0 797 ------- null} - -t 0.922832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1585 -a 0 -x {9.0 10.0 797 ------- null} h -t 0.922832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1585 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.923008 -s 0 -d 9 -p ack -e 40 -c 0 -i 1578 -a 0 -x {10.0 9.0 784 ------- null} - -t 0.923008 -s 0 -d 9 -p ack -e 40 -c 0 -i 1578 -a 0 -x {10.0 9.0 784 ------- null} h -t 0.923008 -s 0 -d 9 -p ack -e 40 -c 0 -i 1578 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.923264 -s 10 -d 7 -p ack -e 40 -c 0 -i 1582 -a 0 -x {10.0 9.0 786 ------- null} + -t 0.923264 -s 7 -d 0 -p ack -e 40 -c 0 -i 1582 -a 0 -x {10.0 9.0 786 ------- null} h -t 0.923264 -s 7 -d 8 -p ack -e 40 -c 0 -i 1582 -a 0 -x {10.0 9.0 786 ------- null} r -t 0.92336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1581 -a 0 -x {9.0 10.0 795 ------- null} + -t 0.92336 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1581 -a 0 -x {9.0 10.0 795 ------- null} h -t 0.92336 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1581 -a 0 -x {9.0 10.0 795 ------- null} r -t 0.923408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1567 -a 0 -x {9.0 10.0 788 ------- null} + -t 0.923408 -s 10 -d 7 -p ack -e 40 -c 0 -i 1586 -a 0 -x {10.0 9.0 788 ------- null} - -t 0.923408 -s 10 -d 7 -p ack -e 40 -c 0 -i 1586 -a 0 -x {10.0 9.0 788 ------- null} h -t 0.923408 -s 10 -d 7 -p ack -e 40 -c 0 -i 1586 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.923872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1573 -a 0 -x {9.0 10.0 791 ------- null} - -t 0.923872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1573 -a 0 -x {9.0 10.0 791 ------- null} h -t 0.923872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1573 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.923904 -s 0 -d 9 -p ack -e 40 -c 0 -i 1576 -a 0 -x {10.0 9.0 783 ------- null} + -t 0.923904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1587 -a 0 -x {9.0 10.0 798 ------- null} - -t 0.923904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1587 -a 0 -x {9.0 10.0 798 ------- null} h -t 0.923904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1587 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.924048 -s 0 -d 9 -p ack -e 40 -c 0 -i 1580 -a 0 -x {10.0 9.0 785 ------- null} - -t 0.924048 -s 0 -d 9 -p ack -e 40 -c 0 -i 1580 -a 0 -x {10.0 9.0 785 ------- null} h -t 0.924048 -s 0 -d 9 -p ack -e 40 -c 0 -i 1580 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.924352 -s 10 -d 7 -p ack -e 40 -c 0 -i 1584 -a 0 -x {10.0 9.0 787 ------- null} + -t 0.924352 -s 7 -d 0 -p ack -e 40 -c 0 -i 1584 -a 0 -x {10.0 9.0 787 ------- null} h -t 0.924352 -s 7 -d 8 -p ack -e 40 -c 0 -i 1584 -a 0 -x {10.0 9.0 787 ------- null} r -t 0.924496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1569 -a 0 -x {9.0 10.0 789 ------- null} + -t 0.924496 -s 10 -d 7 -p ack -e 40 -c 0 -i 1588 -a 0 -x {10.0 9.0 789 ------- null} - -t 0.924496 -s 10 -d 7 -p ack -e 40 -c 0 -i 1588 -a 0 -x {10.0 9.0 789 ------- null} h -t 0.924496 -s 10 -d 7 -p ack -e 40 -c 0 -i 1588 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.924592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1583 -a 0 -x {9.0 10.0 796 ------- null} + -t 0.924592 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1583 -a 0 -x {9.0 10.0 796 ------- null} h -t 0.924592 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1583 -a 0 -x {9.0 10.0 796 ------- null} + -t 0.92496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1575 -a 0 -x {9.0 10.0 792 ------- null} - -t 0.92496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1575 -a 0 -x {9.0 10.0 792 ------- null} h -t 0.92496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1575 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.925024 -s 0 -d 9 -p ack -e 40 -c 0 -i 1582 -a 0 -x {10.0 9.0 786 ------- null} - -t 0.925024 -s 0 -d 9 -p ack -e 40 -c 0 -i 1582 -a 0 -x {10.0 9.0 786 ------- null} h -t 0.925024 -s 0 -d 9 -p ack -e 40 -c 0 -i 1582 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.92504 -s 0 -d 9 -p ack -e 40 -c 0 -i 1578 -a 0 -x {10.0 9.0 784 ------- null} + -t 0.92504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1589 -a 0 -x {9.0 10.0 799 ------- null} - -t 0.92504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1589 -a 0 -x {9.0 10.0 799 ------- null} h -t 0.92504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1589 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.92544 -s 10 -d 7 -p ack -e 40 -c 0 -i 1586 -a 0 -x {10.0 9.0 788 ------- null} + -t 0.92544 -s 7 -d 0 -p ack -e 40 -c 0 -i 1586 -a 0 -x {10.0 9.0 788 ------- null} h -t 0.92544 -s 7 -d 8 -p ack -e 40 -c 0 -i 1586 -a 0 -x {10.0 9.0 788 ------- null} r -t 0.925584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1571 -a 0 -x {9.0 10.0 790 ------- null} + -t 0.925584 -s 10 -d 7 -p ack -e 40 -c 0 -i 1590 -a 0 -x {10.0 9.0 790 ------- null} - -t 0.925584 -s 10 -d 7 -p ack -e 40 -c 0 -i 1590 -a 0 -x {10.0 9.0 790 ------- null} h -t 0.925584 -s 10 -d 7 -p ack -e 40 -c 0 -i 1590 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.925632 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1585 -a 0 -x {9.0 10.0 797 ------- null} + -t 0.925632 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1585 -a 0 -x {9.0 10.0 797 ------- null} h -t 0.925632 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1585 -a 0 -x {9.0 10.0 797 ------- null} + -t 0.926048 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1577 -a 0 -x {9.0 10.0 793 ------- null} - -t 0.926048 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1577 -a 0 -x {9.0 10.0 793 ------- null} h -t 0.926048 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1577 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.92608 -s 0 -d 9 -p ack -e 40 -c 0 -i 1580 -a 0 -x {10.0 9.0 785 ------- null} + -t 0.92608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1591 -a 0 -x {9.0 10.0 800 ------- null} - -t 0.92608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1591 -a 0 -x {9.0 10.0 800 ------- null} h -t 0.92608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1591 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.92616 -s 0 -d 9 -p ack -e 40 -c 0 -i 1584 -a 0 -x {10.0 9.0 787 ------- null} - -t 0.92616 -s 0 -d 9 -p ack -e 40 -c 0 -i 1584 -a 0 -x {10.0 9.0 787 ------- null} h -t 0.92616 -s 0 -d 9 -p ack -e 40 -c 0 -i 1584 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.926528 -s 10 -d 7 -p ack -e 40 -c 0 -i 1588 -a 0 -x {10.0 9.0 789 ------- null} + -t 0.926528 -s 7 -d 0 -p ack -e 40 -c 0 -i 1588 -a 0 -x {10.0 9.0 789 ------- null} h -t 0.926528 -s 7 -d 8 -p ack -e 40 -c 0 -i 1588 -a 0 -x {10.0 9.0 789 ------- null} r -t 0.926672 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1573 -a 0 -x {9.0 10.0 791 ------- null} + -t 0.926672 -s 10 -d 7 -p ack -e 40 -c 0 -i 1592 -a 0 -x {10.0 9.0 791 ------- null} - -t 0.926672 -s 10 -d 7 -p ack -e 40 -c 0 -i 1592 -a 0 -x {10.0 9.0 791 ------- null} h -t 0.926672 -s 10 -d 7 -p ack -e 40 -c 0 -i 1592 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.926704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1587 -a 0 -x {9.0 10.0 798 ------- null} + -t 0.926704 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1587 -a 0 -x {9.0 10.0 798 ------- null} h -t 0.926704 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1587 -a 0 -x {9.0 10.0 798 ------- null} r -t 0.927056 -s 0 -d 9 -p ack -e 40 -c 0 -i 1582 -a 0 -x {10.0 9.0 786 ------- null} + -t 0.927056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1593 -a 0 -x {9.0 10.0 801 ------- null} - -t 0.927056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1593 -a 0 -x {9.0 10.0 801 ------- null} h -t 0.927056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1593 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.927136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1579 -a 0 -x {9.0 10.0 794 ------- null} - -t 0.927136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1579 -a 0 -x {9.0 10.0 794 ------- null} h -t 0.927136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1579 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.927328 -s 0 -d 9 -p ack -e 40 -c 0 -i 1586 -a 0 -x {10.0 9.0 788 ------- null} - -t 0.927328 -s 0 -d 9 -p ack -e 40 -c 0 -i 1586 -a 0 -x {10.0 9.0 788 ------- null} h -t 0.927328 -s 0 -d 9 -p ack -e 40 -c 0 -i 1586 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.927616 -s 10 -d 7 -p ack -e 40 -c 0 -i 1590 -a 0 -x {10.0 9.0 790 ------- null} + -t 0.927616 -s 7 -d 0 -p ack -e 40 -c 0 -i 1590 -a 0 -x {10.0 9.0 790 ------- null} h -t 0.927616 -s 7 -d 8 -p ack -e 40 -c 0 -i 1590 -a 0 -x {10.0 9.0 790 ------- null} r -t 0.92776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1575 -a 0 -x {9.0 10.0 792 ------- null} + -t 0.92776 -s 10 -d 7 -p ack -e 40 -c 0 -i 1594 -a 0 -x {10.0 9.0 792 ------- null} - -t 0.92776 -s 10 -d 7 -p ack -e 40 -c 0 -i 1594 -a 0 -x {10.0 9.0 792 ------- null} h -t 0.92776 -s 10 -d 7 -p ack -e 40 -c 0 -i 1594 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.92784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1589 -a 0 -x {9.0 10.0 799 ------- null} + -t 0.92784 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1589 -a 0 -x {9.0 10.0 799 ------- null} h -t 0.92784 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1589 -a 0 -x {9.0 10.0 799 ------- null} r -t 0.928192 -s 0 -d 9 -p ack -e 40 -c 0 -i 1584 -a 0 -x {10.0 9.0 787 ------- null} + -t 0.928192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1595 -a 0 -x {9.0 10.0 802 ------- null} - -t 0.928192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1595 -a 0 -x {9.0 10.0 802 ------- null} h -t 0.928192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1595 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.928224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1581 -a 0 -x {9.0 10.0 795 ------- null} - -t 0.928224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1581 -a 0 -x {9.0 10.0 795 ------- null} h -t 0.928224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1581 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.928288 -s 0 -d 9 -p ack -e 40 -c 0 -i 1588 -a 0 -x {10.0 9.0 789 ------- null} - -t 0.928288 -s 0 -d 9 -p ack -e 40 -c 0 -i 1588 -a 0 -x {10.0 9.0 789 ------- null} h -t 0.928288 -s 0 -d 9 -p ack -e 40 -c 0 -i 1588 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.928704 -s 10 -d 7 -p ack -e 40 -c 0 -i 1592 -a 0 -x {10.0 9.0 791 ------- null} + -t 0.928704 -s 7 -d 0 -p ack -e 40 -c 0 -i 1592 -a 0 -x {10.0 9.0 791 ------- null} h -t 0.928704 -s 7 -d 8 -p ack -e 40 -c 0 -i 1592 -a 0 -x {10.0 9.0 791 ------- null} r -t 0.928848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1577 -a 0 -x {9.0 10.0 793 ------- null} + -t 0.928848 -s 10 -d 7 -p ack -e 40 -c 0 -i 1596 -a 0 -x {10.0 9.0 793 ------- null} - -t 0.928848 -s 10 -d 7 -p ack -e 40 -c 0 -i 1596 -a 0 -x {10.0 9.0 793 ------- null} h -t 0.928848 -s 10 -d 7 -p ack -e 40 -c 0 -i 1596 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.92888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1591 -a 0 -x {9.0 10.0 800 ------- null} + -t 0.92888 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1591 -a 0 -x {9.0 10.0 800 ------- null} h -t 0.92888 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1591 -a 0 -x {9.0 10.0 800 ------- null} + -t 0.929312 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1583 -a 0 -x {9.0 10.0 796 ------- null} - -t 0.929312 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1583 -a 0 -x {9.0 10.0 796 ------- null} h -t 0.929312 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1583 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.92936 -s 0 -d 9 -p ack -e 40 -c 0 -i 1586 -a 0 -x {10.0 9.0 788 ------- null} + -t 0.92936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1597 -a 0 -x {9.0 10.0 803 ------- null} - -t 0.92936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1597 -a 0 -x {9.0 10.0 803 ------- null} h -t 0.92936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1597 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.929568 -s 0 -d 9 -p ack -e 40 -c 0 -i 1590 -a 0 -x {10.0 9.0 790 ------- null} - -t 0.929568 -s 0 -d 9 -p ack -e 40 -c 0 -i 1590 -a 0 -x {10.0 9.0 790 ------- null} h -t 0.929568 -s 0 -d 9 -p ack -e 40 -c 0 -i 1590 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.929792 -s 10 -d 7 -p ack -e 40 -c 0 -i 1594 -a 0 -x {10.0 9.0 792 ------- null} + -t 0.929792 -s 7 -d 0 -p ack -e 40 -c 0 -i 1594 -a 0 -x {10.0 9.0 792 ------- null} h -t 0.929792 -s 7 -d 8 -p ack -e 40 -c 0 -i 1594 -a 0 -x {10.0 9.0 792 ------- null} r -t 0.929856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1593 -a 0 -x {9.0 10.0 801 ------- null} + -t 0.929856 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1593 -a 0 -x {9.0 10.0 801 ------- null} h -t 0.929856 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1593 -a 0 -x {9.0 10.0 801 ------- null} r -t 0.929936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1579 -a 0 -x {9.0 10.0 794 ------- null} + -t 0.929936 -s 10 -d 7 -p ack -e 40 -c 0 -i 1598 -a 0 -x {10.0 9.0 794 ------- null} - -t 0.929936 -s 10 -d 7 -p ack -e 40 -c 0 -i 1598 -a 0 -x {10.0 9.0 794 ------- null} h -t 0.929936 -s 10 -d 7 -p ack -e 40 -c 0 -i 1598 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.93032 -s 0 -d 9 -p ack -e 40 -c 0 -i 1588 -a 0 -x {10.0 9.0 789 ------- null} + -t 0.93032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1599 -a 0 -x {9.0 10.0 804 ------- null} - -t 0.93032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1599 -a 0 -x {9.0 10.0 804 ------- null} h -t 0.93032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1599 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.9304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1585 -a 0 -x {9.0 10.0 797 ------- null} - -t 0.9304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1585 -a 0 -x {9.0 10.0 797 ------- null} h -t 0.9304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1585 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.930656 -s 0 -d 9 -p ack -e 40 -c 0 -i 1592 -a 0 -x {10.0 9.0 791 ------- null} - -t 0.930656 -s 0 -d 9 -p ack -e 40 -c 0 -i 1592 -a 0 -x {10.0 9.0 791 ------- null} h -t 0.930656 -s 0 -d 9 -p ack -e 40 -c 0 -i 1592 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.93088 -s 10 -d 7 -p ack -e 40 -c 0 -i 1596 -a 0 -x {10.0 9.0 793 ------- null} + -t 0.93088 -s 7 -d 0 -p ack -e 40 -c 0 -i 1596 -a 0 -x {10.0 9.0 793 ------- null} h -t 0.93088 -s 7 -d 8 -p ack -e 40 -c 0 -i 1596 -a 0 -x {10.0 9.0 793 ------- null} r -t 0.930992 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1595 -a 0 -x {9.0 10.0 802 ------- null} + -t 0.930992 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1595 -a 0 -x {9.0 10.0 802 ------- null} h -t 0.930992 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1595 -a 0 -x {9.0 10.0 802 ------- null} r -t 0.931024 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1581 -a 0 -x {9.0 10.0 795 ------- null} + -t 0.931024 -s 10 -d 7 -p ack -e 40 -c 0 -i 1600 -a 0 -x {10.0 9.0 795 ------- null} - -t 0.931024 -s 10 -d 7 -p ack -e 40 -c 0 -i 1600 -a 0 -x {10.0 9.0 795 ------- null} h -t 0.931024 -s 10 -d 7 -p ack -e 40 -c 0 -i 1600 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.931488 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1587 -a 0 -x {9.0 10.0 798 ------- null} - -t 0.931488 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1587 -a 0 -x {9.0 10.0 798 ------- null} h -t 0.931488 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1587 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.9316 -s 0 -d 9 -p ack -e 40 -c 0 -i 1590 -a 0 -x {10.0 9.0 790 ------- null} + -t 0.9316 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1601 -a 0 -x {9.0 10.0 805 ------- null} - -t 0.9316 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1601 -a 0 -x {9.0 10.0 805 ------- null} h -t 0.9316 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1601 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.931712 -s 0 -d 9 -p ack -e 40 -c 0 -i 1594 -a 0 -x {10.0 9.0 792 ------- null} - -t 0.931712 -s 0 -d 9 -p ack -e 40 -c 0 -i 1594 -a 0 -x {10.0 9.0 792 ------- null} h -t 0.931712 -s 0 -d 9 -p ack -e 40 -c 0 -i 1594 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.931968 -s 10 -d 7 -p ack -e 40 -c 0 -i 1598 -a 0 -x {10.0 9.0 794 ------- null} + -t 0.931968 -s 7 -d 0 -p ack -e 40 -c 0 -i 1598 -a 0 -x {10.0 9.0 794 ------- null} h -t 0.931968 -s 7 -d 8 -p ack -e 40 -c 0 -i 1598 -a 0 -x {10.0 9.0 794 ------- null} r -t 0.932112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1583 -a 0 -x {9.0 10.0 796 ------- null} + -t 0.932112 -s 10 -d 7 -p ack -e 40 -c 0 -i 1602 -a 0 -x {10.0 9.0 796 ------- null} - -t 0.932112 -s 10 -d 7 -p ack -e 40 -c 0 -i 1602 -a 0 -x {10.0 9.0 796 ------- null} h -t 0.932112 -s 10 -d 7 -p ack -e 40 -c 0 -i 1602 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.93216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1597 -a 0 -x {9.0 10.0 803 ------- null} + -t 0.93216 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1597 -a 0 -x {9.0 10.0 803 ------- null} h -t 0.93216 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1597 -a 0 -x {9.0 10.0 803 ------- null} + -t 0.932576 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1589 -a 0 -x {9.0 10.0 799 ------- null} - -t 0.932576 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1589 -a 0 -x {9.0 10.0 799 ------- null} h -t 0.932576 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1589 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.932688 -s 0 -d 9 -p ack -e 40 -c 0 -i 1592 -a 0 -x {10.0 9.0 791 ------- null} + -t 0.932688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1603 -a 0 -x {9.0 10.0 806 ------- null} - -t 0.932688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1603 -a 0 -x {9.0 10.0 806 ------- null} h -t 0.932688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1603 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.932864 -s 0 -d 9 -p ack -e 40 -c 0 -i 1596 -a 0 -x {10.0 9.0 793 ------- null} - -t 0.932864 -s 0 -d 9 -p ack -e 40 -c 0 -i 1596 -a 0 -x {10.0 9.0 793 ------- null} h -t 0.932864 -s 0 -d 9 -p ack -e 40 -c 0 -i 1596 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.933056 -s 10 -d 7 -p ack -e 40 -c 0 -i 1600 -a 0 -x {10.0 9.0 795 ------- null} + -t 0.933056 -s 7 -d 0 -p ack -e 40 -c 0 -i 1600 -a 0 -x {10.0 9.0 795 ------- null} h -t 0.933056 -s 7 -d 8 -p ack -e 40 -c 0 -i 1600 -a 0 -x {10.0 9.0 795 ------- null} r -t 0.93312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1599 -a 0 -x {9.0 10.0 804 ------- null} + -t 0.93312 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1599 -a 0 -x {9.0 10.0 804 ------- null} h -t 0.93312 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1599 -a 0 -x {9.0 10.0 804 ------- null} r -t 0.9332 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1585 -a 0 -x {9.0 10.0 797 ------- null} + -t 0.9332 -s 10 -d 7 -p ack -e 40 -c 0 -i 1604 -a 0 -x {10.0 9.0 797 ------- null} - -t 0.9332 -s 10 -d 7 -p ack -e 40 -c 0 -i 1604 -a 0 -x {10.0 9.0 797 ------- null} h -t 0.9332 -s 10 -d 7 -p ack -e 40 -c 0 -i 1604 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.933744 -s 0 -d 9 -p ack -e 40 -c 0 -i 1594 -a 0 -x {10.0 9.0 792 ------- null} + -t 0.933744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1605 -a 0 -x {9.0 10.0 807 ------- null} - -t 0.933744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1605 -a 0 -x {9.0 10.0 807 ------- null} h -t 0.933744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1605 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.933872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1591 -a 0 -x {9.0 10.0 800 ------- null} - -t 0.933872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1591 -a 0 -x {9.0 10.0 800 ------- null} h -t 0.933872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1591 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.934 -s 0 -d 9 -p ack -e 40 -c 0 -i 1598 -a 0 -x {10.0 9.0 794 ------- null} - -t 0.934 -s 0 -d 9 -p ack -e 40 -c 0 -i 1598 -a 0 -x {10.0 9.0 794 ------- null} h -t 0.934 -s 0 -d 9 -p ack -e 40 -c 0 -i 1598 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.934144 -s 10 -d 7 -p ack -e 40 -c 0 -i 1602 -a 0 -x {10.0 9.0 796 ------- null} + -t 0.934144 -s 7 -d 0 -p ack -e 40 -c 0 -i 1602 -a 0 -x {10.0 9.0 796 ------- null} h -t 0.934144 -s 7 -d 8 -p ack -e 40 -c 0 -i 1602 -a 0 -x {10.0 9.0 796 ------- null} r -t 0.934288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1587 -a 0 -x {9.0 10.0 798 ------- null} + -t 0.934288 -s 10 -d 7 -p ack -e 40 -c 0 -i 1606 -a 0 -x {10.0 9.0 798 ------- null} - -t 0.934288 -s 10 -d 7 -p ack -e 40 -c 0 -i 1606 -a 0 -x {10.0 9.0 798 ------- null} h -t 0.934288 -s 10 -d 7 -p ack -e 40 -c 0 -i 1606 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.9344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1601 -a 0 -x {9.0 10.0 805 ------- null} + -t 0.9344 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1601 -a 0 -x {9.0 10.0 805 ------- null} h -t 0.9344 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1601 -a 0 -x {9.0 10.0 805 ------- null} r -t 0.934896 -s 0 -d 9 -p ack -e 40 -c 0 -i 1596 -a 0 -x {10.0 9.0 793 ------- null} + -t 0.934896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1607 -a 0 -x {9.0 10.0 808 ------- null} - -t 0.934896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1607 -a 0 -x {9.0 10.0 808 ------- null} h -t 0.934896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1607 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.93496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1593 -a 0 -x {9.0 10.0 801 ------- null} - -t 0.93496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1593 -a 0 -x {9.0 10.0 801 ------- null} h -t 0.93496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1593 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.935232 -s 10 -d 7 -p ack -e 40 -c 0 -i 1604 -a 0 -x {10.0 9.0 797 ------- null} + -t 0.935232 -s 7 -d 0 -p ack -e 40 -c 0 -i 1604 -a 0 -x {10.0 9.0 797 ------- null} h -t 0.935232 -s 7 -d 8 -p ack -e 40 -c 0 -i 1604 -a 0 -x {10.0 9.0 797 ------- null} + -t 0.935264 -s 0 -d 9 -p ack -e 40 -c 0 -i 1600 -a 0 -x {10.0 9.0 795 ------- null} - -t 0.935264 -s 0 -d 9 -p ack -e 40 -c 0 -i 1600 -a 0 -x {10.0 9.0 795 ------- null} h -t 0.935264 -s 0 -d 9 -p ack -e 40 -c 0 -i 1600 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.935376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1589 -a 0 -x {9.0 10.0 799 ------- null} + -t 0.935376 -s 10 -d 7 -p ack -e 40 -c 0 -i 1608 -a 0 -x {10.0 9.0 799 ------- null} - -t 0.935376 -s 10 -d 7 -p ack -e 40 -c 0 -i 1608 -a 0 -x {10.0 9.0 799 ------- null} h -t 0.935376 -s 10 -d 7 -p ack -e 40 -c 0 -i 1608 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.935488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1603 -a 0 -x {9.0 10.0 806 ------- null} + -t 0.935488 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1603 -a 0 -x {9.0 10.0 806 ------- null} h -t 0.935488 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1603 -a 0 -x {9.0 10.0 806 ------- null} r -t 0.936032 -s 0 -d 9 -p ack -e 40 -c 0 -i 1598 -a 0 -x {10.0 9.0 794 ------- null} + -t 0.936032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1609 -a 0 -x {9.0 10.0 809 ------- null} - -t 0.936032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1609 -a 0 -x {9.0 10.0 809 ------- null} h -t 0.936032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1609 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.936128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1595 -a 0 -x {9.0 10.0 802 ------- null} - -t 0.936128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1595 -a 0 -x {9.0 10.0 802 ------- null} h -t 0.936128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1595 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.936304 -s 0 -d 9 -p ack -e 40 -c 0 -i 1602 -a 0 -x {10.0 9.0 796 ------- null} - -t 0.936304 -s 0 -d 9 -p ack -e 40 -c 0 -i 1602 -a 0 -x {10.0 9.0 796 ------- null} h -t 0.936304 -s 0 -d 9 -p ack -e 40 -c 0 -i 1602 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.93632 -s 10 -d 7 -p ack -e 40 -c 0 -i 1606 -a 0 -x {10.0 9.0 798 ------- null} + -t 0.93632 -s 7 -d 0 -p ack -e 40 -c 0 -i 1606 -a 0 -x {10.0 9.0 798 ------- null} h -t 0.93632 -s 7 -d 8 -p ack -e 40 -c 0 -i 1606 -a 0 -x {10.0 9.0 798 ------- null} r -t 0.936544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1605 -a 0 -x {9.0 10.0 807 ------- null} + -t 0.936544 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1605 -a 0 -x {9.0 10.0 807 ------- null} h -t 0.936544 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1605 -a 0 -x {9.0 10.0 807 ------- null} r -t 0.936672 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1591 -a 0 -x {9.0 10.0 800 ------- null} + -t 0.936672 -s 10 -d 7 -p ack -e 40 -c 0 -i 1610 -a 0 -x {10.0 9.0 800 ------- null} - -t 0.936672 -s 10 -d 7 -p ack -e 40 -c 0 -i 1610 -a 0 -x {10.0 9.0 800 ------- null} h -t 0.936672 -s 10 -d 7 -p ack -e 40 -c 0 -i 1610 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.937216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1597 -a 0 -x {9.0 10.0 803 ------- null} - -t 0.937216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1597 -a 0 -x {9.0 10.0 803 ------- null} h -t 0.937216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1597 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.937296 -s 0 -d 9 -p ack -e 40 -c 0 -i 1600 -a 0 -x {10.0 9.0 795 ------- null} + -t 0.937296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1611 -a 0 -x {9.0 10.0 810 ------- null} - -t 0.937296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1611 -a 0 -x {9.0 10.0 810 ------- null} h -t 0.937296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1611 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.937408 -s 10 -d 7 -p ack -e 40 -c 0 -i 1608 -a 0 -x {10.0 9.0 799 ------- null} + -t 0.937408 -s 7 -d 0 -p ack -e 40 -c 0 -i 1608 -a 0 -x {10.0 9.0 799 ------- null} h -t 0.937408 -s 7 -d 8 -p ack -e 40 -c 0 -i 1608 -a 0 -x {10.0 9.0 799 ------- null} + -t 0.937456 -s 0 -d 9 -p ack -e 40 -c 0 -i 1604 -a 0 -x {10.0 9.0 797 ------- null} - -t 0.937456 -s 0 -d 9 -p ack -e 40 -c 0 -i 1604 -a 0 -x {10.0 9.0 797 ------- null} h -t 0.937456 -s 0 -d 9 -p ack -e 40 -c 0 -i 1604 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.937696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1607 -a 0 -x {9.0 10.0 808 ------- null} + -t 0.937696 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1607 -a 0 -x {9.0 10.0 808 ------- null} h -t 0.937696 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1607 -a 0 -x {9.0 10.0 808 ------- null} r -t 0.93776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1593 -a 0 -x {9.0 10.0 801 ------- null} + -t 0.93776 -s 10 -d 7 -p ack -e 40 -c 0 -i 1612 -a 0 -x {10.0 9.0 801 ------- null} - -t 0.93776 -s 10 -d 7 -p ack -e 40 -c 0 -i 1612 -a 0 -x {10.0 9.0 801 ------- null} h -t 0.93776 -s 10 -d 7 -p ack -e 40 -c 0 -i 1612 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.938304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1599 -a 0 -x {9.0 10.0 804 ------- null} - -t 0.938304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1599 -a 0 -x {9.0 10.0 804 ------- null} h -t 0.938304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1599 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.938336 -s 0 -d 9 -p ack -e 40 -c 0 -i 1602 -a 0 -x {10.0 9.0 796 ------- null} + -t 0.938336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1613 -a 0 -x {9.0 10.0 811 ------- null} - -t 0.938336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1613 -a 0 -x {9.0 10.0 811 ------- null} h -t 0.938336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1613 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.938496 -s 0 -d 9 -p ack -e 40 -c 0 -i 1606 -a 0 -x {10.0 9.0 798 ------- null} - -t 0.938496 -s 0 -d 9 -p ack -e 40 -c 0 -i 1606 -a 0 -x {10.0 9.0 798 ------- null} h -t 0.938496 -s 0 -d 9 -p ack -e 40 -c 0 -i 1606 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.938704 -s 10 -d 7 -p ack -e 40 -c 0 -i 1610 -a 0 -x {10.0 9.0 800 ------- null} + -t 0.938704 -s 7 -d 0 -p ack -e 40 -c 0 -i 1610 -a 0 -x {10.0 9.0 800 ------- null} h -t 0.938704 -s 7 -d 8 -p ack -e 40 -c 0 -i 1610 -a 0 -x {10.0 9.0 800 ------- null} r -t 0.938832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1609 -a 0 -x {9.0 10.0 809 ------- null} + -t 0.938832 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1609 -a 0 -x {9.0 10.0 809 ------- null} h -t 0.938832 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1609 -a 0 -x {9.0 10.0 809 ------- null} r -t 0.938928 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1595 -a 0 -x {9.0 10.0 802 ------- null} + -t 0.938928 -s 10 -d 7 -p ack -e 40 -c 0 -i 1614 -a 0 -x {10.0 9.0 802 ------- null} - -t 0.938928 -s 10 -d 7 -p ack -e 40 -c 0 -i 1614 -a 0 -x {10.0 9.0 802 ------- null} h -t 0.938928 -s 10 -d 7 -p ack -e 40 -c 0 -i 1614 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.939392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1601 -a 0 -x {9.0 10.0 805 ------- null} - -t 0.939392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1601 -a 0 -x {9.0 10.0 805 ------- null} h -t 0.939392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1601 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.939488 -s 0 -d 9 -p ack -e 40 -c 0 -i 1604 -a 0 -x {10.0 9.0 797 ------- null} + -t 0.939488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1615 -a 0 -x {9.0 10.0 812 ------- null} - -t 0.939488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1615 -a 0 -x {9.0 10.0 812 ------- null} h -t 0.939488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1615 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.939696 -s 0 -d 9 -p ack -e 40 -c 0 -i 1608 -a 0 -x {10.0 9.0 799 ------- null} - -t 0.939696 -s 0 -d 9 -p ack -e 40 -c 0 -i 1608 -a 0 -x {10.0 9.0 799 ------- null} h -t 0.939696 -s 0 -d 9 -p ack -e 40 -c 0 -i 1608 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.939792 -s 10 -d 7 -p ack -e 40 -c 0 -i 1612 -a 0 -x {10.0 9.0 801 ------- null} + -t 0.939792 -s 7 -d 0 -p ack -e 40 -c 0 -i 1612 -a 0 -x {10.0 9.0 801 ------- null} h -t 0.939792 -s 7 -d 8 -p ack -e 40 -c 0 -i 1612 -a 0 -x {10.0 9.0 801 ------- null} r -t 0.940016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1597 -a 0 -x {9.0 10.0 803 ------- null} + -t 0.940016 -s 10 -d 7 -p ack -e 40 -c 0 -i 1616 -a 0 -x {10.0 9.0 803 ------- null} - -t 0.940016 -s 10 -d 7 -p ack -e 40 -c 0 -i 1616 -a 0 -x {10.0 9.0 803 ------- null} h -t 0.940016 -s 10 -d 7 -p ack -e 40 -c 0 -i 1616 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.940096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1611 -a 0 -x {9.0 10.0 810 ------- null} + -t 0.940096 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1611 -a 0 -x {9.0 10.0 810 ------- null} h -t 0.940096 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1611 -a 0 -x {9.0 10.0 810 ------- null} r -t 0.940528 -s 0 -d 9 -p ack -e 40 -c 0 -i 1606 -a 0 -x {10.0 9.0 798 ------- null} + -t 0.940528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1617 -a 0 -x {9.0 10.0 813 ------- null} - -t 0.940528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1617 -a 0 -x {9.0 10.0 813 ------- null} h -t 0.940528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1617 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.940624 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1603 -a 0 -x {9.0 10.0 806 ------- null} - -t 0.940624 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1603 -a 0 -x {9.0 10.0 806 ------- null} h -t 0.940624 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1603 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.940816 -s 0 -d 9 -p ack -e 40 -c 0 -i 1610 -a 0 -x {10.0 9.0 800 ------- null} - -t 0.940816 -s 0 -d 9 -p ack -e 40 -c 0 -i 1610 -a 0 -x {10.0 9.0 800 ------- null} h -t 0.940816 -s 0 -d 9 -p ack -e 40 -c 0 -i 1610 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.94096 -s 10 -d 7 -p ack -e 40 -c 0 -i 1614 -a 0 -x {10.0 9.0 802 ------- null} + -t 0.94096 -s 7 -d 0 -p ack -e 40 -c 0 -i 1614 -a 0 -x {10.0 9.0 802 ------- null} h -t 0.94096 -s 7 -d 8 -p ack -e 40 -c 0 -i 1614 -a 0 -x {10.0 9.0 802 ------- null} r -t 0.941104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1599 -a 0 -x {9.0 10.0 804 ------- null} + -t 0.941104 -s 10 -d 7 -p ack -e 40 -c 0 -i 1618 -a 0 -x {10.0 9.0 804 ------- null} - -t 0.941104 -s 10 -d 7 -p ack -e 40 -c 0 -i 1618 -a 0 -x {10.0 9.0 804 ------- null} h -t 0.941104 -s 10 -d 7 -p ack -e 40 -c 0 -i 1618 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.941136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1613 -a 0 -x {9.0 10.0 811 ------- null} + -t 0.941136 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1613 -a 0 -x {9.0 10.0 811 ------- null} h -t 0.941136 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1613 -a 0 -x {9.0 10.0 811 ------- null} + -t 0.941712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1605 -a 0 -x {9.0 10.0 807 ------- null} - -t 0.941712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1605 -a 0 -x {9.0 10.0 807 ------- null} h -t 0.941712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1605 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.941728 -s 0 -d 9 -p ack -e 40 -c 0 -i 1608 -a 0 -x {10.0 9.0 799 ------- null} + -t 0.941728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1619 -a 0 -x {9.0 10.0 814 ------- null} - -t 0.941728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1619 -a 0 -x {9.0 10.0 814 ------- null} h -t 0.941728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1619 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.941856 -s 0 -d 9 -p ack -e 40 -c 0 -i 1612 -a 0 -x {10.0 9.0 801 ------- null} - -t 0.941856 -s 0 -d 9 -p ack -e 40 -c 0 -i 1612 -a 0 -x {10.0 9.0 801 ------- null} h -t 0.941856 -s 0 -d 9 -p ack -e 40 -c 0 -i 1612 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.942048 -s 10 -d 7 -p ack -e 40 -c 0 -i 1616 -a 0 -x {10.0 9.0 803 ------- null} + -t 0.942048 -s 7 -d 0 -p ack -e 40 -c 0 -i 1616 -a 0 -x {10.0 9.0 803 ------- null} h -t 0.942048 -s 7 -d 8 -p ack -e 40 -c 0 -i 1616 -a 0 -x {10.0 9.0 803 ------- null} r -t 0.942192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1601 -a 0 -x {9.0 10.0 805 ------- null} + -t 0.942192 -s 10 -d 7 -p ack -e 40 -c 0 -i 1620 -a 0 -x {10.0 9.0 805 ------- null} - -t 0.942192 -s 10 -d 7 -p ack -e 40 -c 0 -i 1620 -a 0 -x {10.0 9.0 805 ------- null} h -t 0.942192 -s 10 -d 7 -p ack -e 40 -c 0 -i 1620 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.942288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1615 -a 0 -x {9.0 10.0 812 ------- null} + -t 0.942288 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1615 -a 0 -x {9.0 10.0 812 ------- null} h -t 0.942288 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1615 -a 0 -x {9.0 10.0 812 ------- null} + -t 0.9428 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1607 -a 0 -x {9.0 10.0 808 ------- null} - -t 0.9428 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1607 -a 0 -x {9.0 10.0 808 ------- null} h -t 0.9428 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1607 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.942848 -s 0 -d 9 -p ack -e 40 -c 0 -i 1610 -a 0 -x {10.0 9.0 800 ------- null} + -t 0.942848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1621 -a 0 -x {9.0 10.0 815 ------- null} - -t 0.942848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1621 -a 0 -x {9.0 10.0 815 ------- null} h -t 0.942848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1621 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.942992 -s 0 -d 9 -p ack -e 40 -c 0 -i 1614 -a 0 -x {10.0 9.0 802 ------- null} - -t 0.942992 -s 0 -d 9 -p ack -e 40 -c 0 -i 1614 -a 0 -x {10.0 9.0 802 ------- null} h -t 0.942992 -s 0 -d 9 -p ack -e 40 -c 0 -i 1614 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.943136 -s 10 -d 7 -p ack -e 40 -c 0 -i 1618 -a 0 -x {10.0 9.0 804 ------- null} + -t 0.943136 -s 7 -d 0 -p ack -e 40 -c 0 -i 1618 -a 0 -x {10.0 9.0 804 ------- null} h -t 0.943136 -s 7 -d 8 -p ack -e 40 -c 0 -i 1618 -a 0 -x {10.0 9.0 804 ------- null} r -t 0.943328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1617 -a 0 -x {9.0 10.0 813 ------- null} + -t 0.943328 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1617 -a 0 -x {9.0 10.0 813 ------- null} h -t 0.943328 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1617 -a 0 -x {9.0 10.0 813 ------- null} r -t 0.943424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1603 -a 0 -x {9.0 10.0 806 ------- null} + -t 0.943424 -s 10 -d 7 -p ack -e 40 -c 0 -i 1622 -a 0 -x {10.0 9.0 806 ------- null} - -t 0.943424 -s 10 -d 7 -p ack -e 40 -c 0 -i 1622 -a 0 -x {10.0 9.0 806 ------- null} h -t 0.943424 -s 10 -d 7 -p ack -e 40 -c 0 -i 1622 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.943888 -s 0 -d 9 -p ack -e 40 -c 0 -i 1612 -a 0 -x {10.0 9.0 801 ------- null} + -t 0.943888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1623 -a 0 -x {9.0 10.0 816 ------- null} - -t 0.943888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1623 -a 0 -x {9.0 10.0 816 ------- null} h -t 0.943888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1623 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.943888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1609 -a 0 -x {9.0 10.0 809 ------- null} - -t 0.943888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1609 -a 0 -x {9.0 10.0 809 ------- null} h -t 0.943888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1609 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.943952 -s 0 -d 9 -p ack -e 40 -c 0 -i 1616 -a 0 -x {10.0 9.0 803 ------- null} - -t 0.943952 -s 0 -d 9 -p ack -e 40 -c 0 -i 1616 -a 0 -x {10.0 9.0 803 ------- null} h -t 0.943952 -s 0 -d 9 -p ack -e 40 -c 0 -i 1616 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.944224 -s 10 -d 7 -p ack -e 40 -c 0 -i 1620 -a 0 -x {10.0 9.0 805 ------- null} + -t 0.944224 -s 7 -d 0 -p ack -e 40 -c 0 -i 1620 -a 0 -x {10.0 9.0 805 ------- null} h -t 0.944224 -s 7 -d 8 -p ack -e 40 -c 0 -i 1620 -a 0 -x {10.0 9.0 805 ------- null} r -t 0.944512 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1605 -a 0 -x {9.0 10.0 807 ------- null} + -t 0.944512 -s 10 -d 7 -p ack -e 40 -c 0 -i 1624 -a 0 -x {10.0 9.0 807 ------- null} - -t 0.944512 -s 10 -d 7 -p ack -e 40 -c 0 -i 1624 -a 0 -x {10.0 9.0 807 ------- null} h -t 0.944512 -s 10 -d 7 -p ack -e 40 -c 0 -i 1624 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.944528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1619 -a 0 -x {9.0 10.0 814 ------- null} + -t 0.944528 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1619 -a 0 -x {9.0 10.0 814 ------- null} h -t 0.944528 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1619 -a 0 -x {9.0 10.0 814 ------- null} + -t 0.944976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1611 -a 0 -x {9.0 10.0 810 ------- null} - -t 0.944976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1611 -a 0 -x {9.0 10.0 810 ------- null} h -t 0.944976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1611 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.945024 -s 0 -d 9 -p ack -e 40 -c 0 -i 1614 -a 0 -x {10.0 9.0 802 ------- null} + -t 0.945024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1625 -a 0 -x {9.0 10.0 817 ------- null} - -t 0.945024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1625 -a 0 -x {9.0 10.0 817 ------- null} h -t 0.945024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1625 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.945088 -s 0 -d 9 -p ack -e 40 -c 0 -i 1618 -a 0 -x {10.0 9.0 804 ------- null} - -t 0.945088 -s 0 -d 9 -p ack -e 40 -c 0 -i 1618 -a 0 -x {10.0 9.0 804 ------- null} h -t 0.945088 -s 0 -d 9 -p ack -e 40 -c 0 -i 1618 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.945456 -s 10 -d 7 -p ack -e 40 -c 0 -i 1622 -a 0 -x {10.0 9.0 806 ------- null} + -t 0.945456 -s 7 -d 0 -p ack -e 40 -c 0 -i 1622 -a 0 -x {10.0 9.0 806 ------- null} h -t 0.945456 -s 7 -d 8 -p ack -e 40 -c 0 -i 1622 -a 0 -x {10.0 9.0 806 ------- null} r -t 0.9456 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1607 -a 0 -x {9.0 10.0 808 ------- null} + -t 0.9456 -s 10 -d 7 -p ack -e 40 -c 0 -i 1626 -a 0 -x {10.0 9.0 808 ------- null} - -t 0.9456 -s 10 -d 7 -p ack -e 40 -c 0 -i 1626 -a 0 -x {10.0 9.0 808 ------- null} h -t 0.9456 -s 10 -d 7 -p ack -e 40 -c 0 -i 1626 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.945648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1621 -a 0 -x {9.0 10.0 815 ------- null} + -t 0.945648 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1621 -a 0 -x {9.0 10.0 815 ------- null} h -t 0.945648 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1621 -a 0 -x {9.0 10.0 815 ------- null} r -t 0.945984 -s 0 -d 9 -p ack -e 40 -c 0 -i 1616 -a 0 -x {10.0 9.0 803 ------- null} + -t 0.945984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1627 -a 0 -x {9.0 10.0 818 ------- null} - -t 0.945984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1627 -a 0 -x {9.0 10.0 818 ------- null} h -t 0.945984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1627 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.946064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1613 -a 0 -x {9.0 10.0 811 ------- null} - -t 0.946064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1613 -a 0 -x {9.0 10.0 811 ------- null} h -t 0.946064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1613 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.94624 -s 0 -d 9 -p ack -e 40 -c 0 -i 1620 -a 0 -x {10.0 9.0 805 ------- null} - -t 0.94624 -s 0 -d 9 -p ack -e 40 -c 0 -i 1620 -a 0 -x {10.0 9.0 805 ------- null} h -t 0.94624 -s 0 -d 9 -p ack -e 40 -c 0 -i 1620 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.946544 -s 10 -d 7 -p ack -e 40 -c 0 -i 1624 -a 0 -x {10.0 9.0 807 ------- null} + -t 0.946544 -s 7 -d 0 -p ack -e 40 -c 0 -i 1624 -a 0 -x {10.0 9.0 807 ------- null} h -t 0.946544 -s 7 -d 8 -p ack -e 40 -c 0 -i 1624 -a 0 -x {10.0 9.0 807 ------- null} r -t 0.946688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1623 -a 0 -x {9.0 10.0 816 ------- null} + -t 0.946688 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1623 -a 0 -x {9.0 10.0 816 ------- null} h -t 0.946688 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1623 -a 0 -x {9.0 10.0 816 ------- null} r -t 0.946688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1609 -a 0 -x {9.0 10.0 809 ------- null} + -t 0.946688 -s 10 -d 7 -p ack -e 40 -c 0 -i 1628 -a 0 -x {10.0 9.0 809 ------- null} - -t 0.946688 -s 10 -d 7 -p ack -e 40 -c 0 -i 1628 -a 0 -x {10.0 9.0 809 ------- null} h -t 0.946688 -s 10 -d 7 -p ack -e 40 -c 0 -i 1628 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.94712 -s 0 -d 9 -p ack -e 40 -c 0 -i 1618 -a 0 -x {10.0 9.0 804 ------- null} + -t 0.94712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1629 -a 0 -x {9.0 10.0 819 ------- null} - -t 0.94712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1629 -a 0 -x {9.0 10.0 819 ------- null} h -t 0.94712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1629 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.947152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1615 -a 0 -x {9.0 10.0 812 ------- null} - -t 0.947152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1615 -a 0 -x {9.0 10.0 812 ------- null} h -t 0.947152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1615 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.947392 -s 0 -d 9 -p ack -e 40 -c 0 -i 1622 -a 0 -x {10.0 9.0 806 ------- null} - -t 0.947392 -s 0 -d 9 -p ack -e 40 -c 0 -i 1622 -a 0 -x {10.0 9.0 806 ------- null} h -t 0.947392 -s 0 -d 9 -p ack -e 40 -c 0 -i 1622 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.947632 -s 10 -d 7 -p ack -e 40 -c 0 -i 1626 -a 0 -x {10.0 9.0 808 ------- null} + -t 0.947632 -s 7 -d 0 -p ack -e 40 -c 0 -i 1626 -a 0 -x {10.0 9.0 808 ------- null} h -t 0.947632 -s 7 -d 8 -p ack -e 40 -c 0 -i 1626 -a 0 -x {10.0 9.0 808 ------- null} r -t 0.947776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1611 -a 0 -x {9.0 10.0 810 ------- null} + -t 0.947776 -s 10 -d 7 -p ack -e 40 -c 0 -i 1630 -a 0 -x {10.0 9.0 810 ------- null} - -t 0.947776 -s 10 -d 7 -p ack -e 40 -c 0 -i 1630 -a 0 -x {10.0 9.0 810 ------- null} h -t 0.947776 -s 10 -d 7 -p ack -e 40 -c 0 -i 1630 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.947824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1625 -a 0 -x {9.0 10.0 817 ------- null} + -t 0.947824 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1625 -a 0 -x {9.0 10.0 817 ------- null} h -t 0.947824 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1625 -a 0 -x {9.0 10.0 817 ------- null} + -t 0.94824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1617 -a 0 -x {9.0 10.0 813 ------- null} - -t 0.94824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1617 -a 0 -x {9.0 10.0 813 ------- null} h -t 0.94824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1617 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.948272 -s 0 -d 9 -p ack -e 40 -c 0 -i 1620 -a 0 -x {10.0 9.0 805 ------- null} + -t 0.948272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1631 -a 0 -x {9.0 10.0 820 ------- null} - -t 0.948272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1631 -a 0 -x {9.0 10.0 820 ------- null} h -t 0.948272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1631 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.948352 -s 0 -d 9 -p ack -e 40 -c 0 -i 1624 -a 0 -x {10.0 9.0 807 ------- null} - -t 0.948352 -s 0 -d 9 -p ack -e 40 -c 0 -i 1624 -a 0 -x {10.0 9.0 807 ------- null} h -t 0.948352 -s 0 -d 9 -p ack -e 40 -c 0 -i 1624 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.94872 -s 10 -d 7 -p ack -e 40 -c 0 -i 1628 -a 0 -x {10.0 9.0 809 ------- null} + -t 0.94872 -s 7 -d 0 -p ack -e 40 -c 0 -i 1628 -a 0 -x {10.0 9.0 809 ------- null} h -t 0.94872 -s 7 -d 8 -p ack -e 40 -c 0 -i 1628 -a 0 -x {10.0 9.0 809 ------- null} r -t 0.948784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1627 -a 0 -x {9.0 10.0 818 ------- null} + -t 0.948784 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1627 -a 0 -x {9.0 10.0 818 ------- null} h -t 0.948784 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1627 -a 0 -x {9.0 10.0 818 ------- null} r -t 0.948864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1613 -a 0 -x {9.0 10.0 811 ------- null} + -t 0.948864 -s 10 -d 7 -p ack -e 40 -c 0 -i 1632 -a 0 -x {10.0 9.0 811 ------- null} - -t 0.948864 -s 10 -d 7 -p ack -e 40 -c 0 -i 1632 -a 0 -x {10.0 9.0 811 ------- null} h -t 0.948864 -s 10 -d 7 -p ack -e 40 -c 0 -i 1632 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.949328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1619 -a 0 -x {9.0 10.0 814 ------- null} - -t 0.949328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1619 -a 0 -x {9.0 10.0 814 ------- null} h -t 0.949328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1619 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.949424 -s 0 -d 9 -p ack -e 40 -c 0 -i 1622 -a 0 -x {10.0 9.0 806 ------- null} + -t 0.949424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1633 -a 0 -x {9.0 10.0 821 ------- null} - -t 0.949424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1633 -a 0 -x {9.0 10.0 821 ------- null} h -t 0.949424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1633 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.949584 -s 0 -d 9 -p ack -e 40 -c 0 -i 1626 -a 0 -x {10.0 9.0 808 ------- null} - -t 0.949584 -s 0 -d 9 -p ack -e 40 -c 0 -i 1626 -a 0 -x {10.0 9.0 808 ------- null} h -t 0.949584 -s 0 -d 9 -p ack -e 40 -c 0 -i 1626 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.949808 -s 10 -d 7 -p ack -e 40 -c 0 -i 1630 -a 0 -x {10.0 9.0 810 ------- null} + -t 0.949808 -s 7 -d 0 -p ack -e 40 -c 0 -i 1630 -a 0 -x {10.0 9.0 810 ------- null} h -t 0.949808 -s 7 -d 8 -p ack -e 40 -c 0 -i 1630 -a 0 -x {10.0 9.0 810 ------- null} r -t 0.94992 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1629 -a 0 -x {9.0 10.0 819 ------- null} + -t 0.94992 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1629 -a 0 -x {9.0 10.0 819 ------- null} h -t 0.94992 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1629 -a 0 -x {9.0 10.0 819 ------- null} r -t 0.949952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1615 -a 0 -x {9.0 10.0 812 ------- null} + -t 0.949952 -s 10 -d 7 -p ack -e 40 -c 0 -i 1634 -a 0 -x {10.0 9.0 812 ------- null} - -t 0.949952 -s 10 -d 7 -p ack -e 40 -c 0 -i 1634 -a 0 -x {10.0 9.0 812 ------- null} h -t 0.949952 -s 10 -d 7 -p ack -e 40 -c 0 -i 1634 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.950384 -s 0 -d 9 -p ack -e 40 -c 0 -i 1624 -a 0 -x {10.0 9.0 807 ------- null} + -t 0.950384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1635 -a 0 -x {9.0 10.0 822 ------- null} - -t 0.950384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1635 -a 0 -x {9.0 10.0 822 ------- null} h -t 0.950384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1635 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.950416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1621 -a 0 -x {9.0 10.0 815 ------- null} - -t 0.950416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1621 -a 0 -x {9.0 10.0 815 ------- null} h -t 0.950416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1621 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.95056 -s 0 -d 9 -p ack -e 40 -c 0 -i 1628 -a 0 -x {10.0 9.0 809 ------- null} - -t 0.95056 -s 0 -d 9 -p ack -e 40 -c 0 -i 1628 -a 0 -x {10.0 9.0 809 ------- null} h -t 0.95056 -s 0 -d 9 -p ack -e 40 -c 0 -i 1628 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.950896 -s 10 -d 7 -p ack -e 40 -c 0 -i 1632 -a 0 -x {10.0 9.0 811 ------- null} + -t 0.950896 -s 7 -d 0 -p ack -e 40 -c 0 -i 1632 -a 0 -x {10.0 9.0 811 ------- null} h -t 0.950896 -s 7 -d 8 -p ack -e 40 -c 0 -i 1632 -a 0 -x {10.0 9.0 811 ------- null} r -t 0.95104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1617 -a 0 -x {9.0 10.0 813 ------- null} + -t 0.95104 -s 10 -d 7 -p ack -e 40 -c 0 -i 1636 -a 0 -x {10.0 9.0 813 ------- null} - -t 0.95104 -s 10 -d 7 -p ack -e 40 -c 0 -i 1636 -a 0 -x {10.0 9.0 813 ------- null} h -t 0.95104 -s 10 -d 7 -p ack -e 40 -c 0 -i 1636 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.951072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1631 -a 0 -x {9.0 10.0 820 ------- null} + -t 0.951072 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1631 -a 0 -x {9.0 10.0 820 ------- null} h -t 0.951072 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1631 -a 0 -x {9.0 10.0 820 ------- null} + -t 0.951504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1623 -a 0 -x {9.0 10.0 816 ------- null} - -t 0.951504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1623 -a 0 -x {9.0 10.0 816 ------- null} h -t 0.951504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1623 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.951616 -s 0 -d 9 -p ack -e 40 -c 0 -i 1626 -a 0 -x {10.0 9.0 808 ------- null} + -t 0.951616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1637 -a 0 -x {9.0 10.0 823 ------- null} - -t 0.951616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1637 -a 0 -x {9.0 10.0 823 ------- null} h -t 0.951616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1637 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.95168 -s 0 -d 9 -p ack -e 40 -c 0 -i 1630 -a 0 -x {10.0 9.0 810 ------- null} - -t 0.95168 -s 0 -d 9 -p ack -e 40 -c 0 -i 1630 -a 0 -x {10.0 9.0 810 ------- null} h -t 0.95168 -s 0 -d 9 -p ack -e 40 -c 0 -i 1630 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.951984 -s 10 -d 7 -p ack -e 40 -c 0 -i 1634 -a 0 -x {10.0 9.0 812 ------- null} + -t 0.951984 -s 7 -d 0 -p ack -e 40 -c 0 -i 1634 -a 0 -x {10.0 9.0 812 ------- null} h -t 0.951984 -s 7 -d 8 -p ack -e 40 -c 0 -i 1634 -a 0 -x {10.0 9.0 812 ------- null} r -t 0.952128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1619 -a 0 -x {9.0 10.0 814 ------- null} + -t 0.952128 -s 10 -d 7 -p ack -e 40 -c 0 -i 1638 -a 0 -x {10.0 9.0 814 ------- null} - -t 0.952128 -s 10 -d 7 -p ack -e 40 -c 0 -i 1638 -a 0 -x {10.0 9.0 814 ------- null} h -t 0.952128 -s 10 -d 7 -p ack -e 40 -c 0 -i 1638 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.952224 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1633 -a 0 -x {9.0 10.0 821 ------- null} + -t 0.952224 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1633 -a 0 -x {9.0 10.0 821 ------- null} h -t 0.952224 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1633 -a 0 -x {9.0 10.0 821 ------- null} r -t 0.952592 -s 0 -d 9 -p ack -e 40 -c 0 -i 1628 -a 0 -x {10.0 9.0 809 ------- null} + -t 0.952592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1639 -a 0 -x {9.0 10.0 824 ------- null} - -t 0.952592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1639 -a 0 -x {9.0 10.0 824 ------- null} h -t 0.952592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1639 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.952592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1625 -a 0 -x {9.0 10.0 817 ------- null} - -t 0.952592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1625 -a 0 -x {9.0 10.0 817 ------- null} h -t 0.952592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1625 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.952672 -s 0 -d 9 -p ack -e 40 -c 0 -i 1632 -a 0 -x {10.0 9.0 811 ------- null} - -t 0.952672 -s 0 -d 9 -p ack -e 40 -c 0 -i 1632 -a 0 -x {10.0 9.0 811 ------- null} h -t 0.952672 -s 0 -d 9 -p ack -e 40 -c 0 -i 1632 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.953072 -s 10 -d 7 -p ack -e 40 -c 0 -i 1636 -a 0 -x {10.0 9.0 813 ------- null} + -t 0.953072 -s 7 -d 0 -p ack -e 40 -c 0 -i 1636 -a 0 -x {10.0 9.0 813 ------- null} h -t 0.953072 -s 7 -d 8 -p ack -e 40 -c 0 -i 1636 -a 0 -x {10.0 9.0 813 ------- null} r -t 0.953184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1635 -a 0 -x {9.0 10.0 822 ------- null} + -t 0.953184 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1635 -a 0 -x {9.0 10.0 822 ------- null} h -t 0.953184 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1635 -a 0 -x {9.0 10.0 822 ------- null} r -t 0.953216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1621 -a 0 -x {9.0 10.0 815 ------- null} + -t 0.953216 -s 10 -d 7 -p ack -e 40 -c 0 -i 1640 -a 0 -x {10.0 9.0 815 ------- null} - -t 0.953216 -s 10 -d 7 -p ack -e 40 -c 0 -i 1640 -a 0 -x {10.0 9.0 815 ------- null} h -t 0.953216 -s 10 -d 7 -p ack -e 40 -c 0 -i 1640 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.95368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1627 -a 0 -x {9.0 10.0 818 ------- null} - -t 0.95368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1627 -a 0 -x {9.0 10.0 818 ------- null} h -t 0.95368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1627 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.953712 -s 0 -d 9 -p ack -e 40 -c 0 -i 1630 -a 0 -x {10.0 9.0 810 ------- null} + -t 0.953712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1641 -a 0 -x {9.0 10.0 825 ------- null} - -t 0.953712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1641 -a 0 -x {9.0 10.0 825 ------- null} h -t 0.953712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1641 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.95392 -s 0 -d 9 -p ack -e 40 -c 0 -i 1634 -a 0 -x {10.0 9.0 812 ------- null} - -t 0.95392 -s 0 -d 9 -p ack -e 40 -c 0 -i 1634 -a 0 -x {10.0 9.0 812 ------- null} h -t 0.95392 -s 0 -d 9 -p ack -e 40 -c 0 -i 1634 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.95416 -s 10 -d 7 -p ack -e 40 -c 0 -i 1638 -a 0 -x {10.0 9.0 814 ------- null} + -t 0.95416 -s 7 -d 0 -p ack -e 40 -c 0 -i 1638 -a 0 -x {10.0 9.0 814 ------- null} h -t 0.95416 -s 7 -d 8 -p ack -e 40 -c 0 -i 1638 -a 0 -x {10.0 9.0 814 ------- null} r -t 0.954304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1623 -a 0 -x {9.0 10.0 816 ------- null} + -t 0.954304 -s 10 -d 7 -p ack -e 40 -c 0 -i 1642 -a 0 -x {10.0 9.0 816 ------- null} - -t 0.954304 -s 10 -d 7 -p ack -e 40 -c 0 -i 1642 -a 0 -x {10.0 9.0 816 ------- null} h -t 0.954304 -s 10 -d 7 -p ack -e 40 -c 0 -i 1642 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.954416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1637 -a 0 -x {9.0 10.0 823 ------- null} + -t 0.954416 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1637 -a 0 -x {9.0 10.0 823 ------- null} h -t 0.954416 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1637 -a 0 -x {9.0 10.0 823 ------- null} r -t 0.954704 -s 0 -d 9 -p ack -e 40 -c 0 -i 1632 -a 0 -x {10.0 9.0 811 ------- null} + -t 0.954704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1643 -a 0 -x {9.0 10.0 826 ------- null} - -t 0.954704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1643 -a 0 -x {9.0 10.0 826 ------- null} h -t 0.954704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1643 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.954768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1629 -a 0 -x {9.0 10.0 819 ------- null} - -t 0.954768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1629 -a 0 -x {9.0 10.0 819 ------- null} h -t 0.954768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1629 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.955024 -s 0 -d 9 -p ack -e 40 -c 0 -i 1636 -a 0 -x {10.0 9.0 813 ------- null} - -t 0.955024 -s 0 -d 9 -p ack -e 40 -c 0 -i 1636 -a 0 -x {10.0 9.0 813 ------- null} h -t 0.955024 -s 0 -d 9 -p ack -e 40 -c 0 -i 1636 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.955248 -s 10 -d 7 -p ack -e 40 -c 0 -i 1640 -a 0 -x {10.0 9.0 815 ------- null} + -t 0.955248 -s 7 -d 0 -p ack -e 40 -c 0 -i 1640 -a 0 -x {10.0 9.0 815 ------- null} h -t 0.955248 -s 7 -d 8 -p ack -e 40 -c 0 -i 1640 -a 0 -x {10.0 9.0 815 ------- null} r -t 0.955392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1639 -a 0 -x {9.0 10.0 824 ------- null} + -t 0.955392 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1639 -a 0 -x {9.0 10.0 824 ------- null} h -t 0.955392 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1639 -a 0 -x {9.0 10.0 824 ------- null} r -t 0.955392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1625 -a 0 -x {9.0 10.0 817 ------- null} + -t 0.955392 -s 10 -d 7 -p ack -e 40 -c 0 -i 1644 -a 0 -x {10.0 9.0 817 ------- null} - -t 0.955392 -s 10 -d 7 -p ack -e 40 -c 0 -i 1644 -a 0 -x {10.0 9.0 817 ------- null} h -t 0.955392 -s 10 -d 7 -p ack -e 40 -c 0 -i 1644 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.955856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1631 -a 0 -x {9.0 10.0 820 ------- null} - -t 0.955856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1631 -a 0 -x {9.0 10.0 820 ------- null} h -t 0.955856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1631 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.955952 -s 0 -d 9 -p ack -e 40 -c 0 -i 1634 -a 0 -x {10.0 9.0 812 ------- null} + -t 0.955952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1645 -a 0 -x {9.0 10.0 827 ------- null} - -t 0.955952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1645 -a 0 -x {9.0 10.0 827 ------- null} h -t 0.955952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1645 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.955984 -s 0 -d 9 -p ack -e 40 -c 0 -i 1638 -a 0 -x {10.0 9.0 814 ------- null} - -t 0.955984 -s 0 -d 9 -p ack -e 40 -c 0 -i 1638 -a 0 -x {10.0 9.0 814 ------- null} h -t 0.955984 -s 0 -d 9 -p ack -e 40 -c 0 -i 1638 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.956336 -s 10 -d 7 -p ack -e 40 -c 0 -i 1642 -a 0 -x {10.0 9.0 816 ------- null} + -t 0.956336 -s 7 -d 0 -p ack -e 40 -c 0 -i 1642 -a 0 -x {10.0 9.0 816 ------- null} h -t 0.956336 -s 7 -d 8 -p ack -e 40 -c 0 -i 1642 -a 0 -x {10.0 9.0 816 ------- null} r -t 0.95648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1627 -a 0 -x {9.0 10.0 818 ------- null} + -t 0.95648 -s 10 -d 7 -p ack -e 40 -c 0 -i 1646 -a 0 -x {10.0 9.0 818 ------- null} - -t 0.95648 -s 10 -d 7 -p ack -e 40 -c 0 -i 1646 -a 0 -x {10.0 9.0 818 ------- null} h -t 0.95648 -s 10 -d 7 -p ack -e 40 -c 0 -i 1646 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.956512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1641 -a 0 -x {9.0 10.0 825 ------- null} + -t 0.956512 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1641 -a 0 -x {9.0 10.0 825 ------- null} h -t 0.956512 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1641 -a 0 -x {9.0 10.0 825 ------- null} + -t 0.956944 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1633 -a 0 -x {9.0 10.0 821 ------- null} - -t 0.956944 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1633 -a 0 -x {9.0 10.0 821 ------- null} h -t 0.956944 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1633 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.957056 -s 0 -d 9 -p ack -e 40 -c 0 -i 1636 -a 0 -x {10.0 9.0 813 ------- null} + -t 0.957056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1647 -a 0 -x {9.0 10.0 828 ------- null} - -t 0.957056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1647 -a 0 -x {9.0 10.0 828 ------- null} h -t 0.957056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1647 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.957136 -s 0 -d 9 -p ack -e 40 -c 0 -i 1640 -a 0 -x {10.0 9.0 815 ------- null} - -t 0.957136 -s 0 -d 9 -p ack -e 40 -c 0 -i 1640 -a 0 -x {10.0 9.0 815 ------- null} h -t 0.957136 -s 0 -d 9 -p ack -e 40 -c 0 -i 1640 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.957424 -s 10 -d 7 -p ack -e 40 -c 0 -i 1644 -a 0 -x {10.0 9.0 817 ------- null} + -t 0.957424 -s 7 -d 0 -p ack -e 40 -c 0 -i 1644 -a 0 -x {10.0 9.0 817 ------- null} h -t 0.957424 -s 7 -d 8 -p ack -e 40 -c 0 -i 1644 -a 0 -x {10.0 9.0 817 ------- null} r -t 0.957504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1643 -a 0 -x {9.0 10.0 826 ------- null} + -t 0.957504 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1643 -a 0 -x {9.0 10.0 826 ------- null} h -t 0.957504 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1643 -a 0 -x {9.0 10.0 826 ------- null} r -t 0.957568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1629 -a 0 -x {9.0 10.0 819 ------- null} + -t 0.957568 -s 10 -d 7 -p ack -e 40 -c 0 -i 1648 -a 0 -x {10.0 9.0 819 ------- null} - -t 0.957568 -s 10 -d 7 -p ack -e 40 -c 0 -i 1648 -a 0 -x {10.0 9.0 819 ------- null} h -t 0.957568 -s 10 -d 7 -p ack -e 40 -c 0 -i 1648 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.958016 -s 0 -d 9 -p ack -e 40 -c 0 -i 1638 -a 0 -x {10.0 9.0 814 ------- null} + -t 0.958016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1649 -a 0 -x {9.0 10.0 829 ------- null} - -t 0.958016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1649 -a 0 -x {9.0 10.0 829 ------- null} h -t 0.958016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1649 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.958032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1635 -a 0 -x {9.0 10.0 822 ------- null} - -t 0.958032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1635 -a 0 -x {9.0 10.0 822 ------- null} h -t 0.958032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1635 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.958128 -s 0 -d 9 -p ack -e 40 -c 0 -i 1642 -a 0 -x {10.0 9.0 816 ------- null} - -t 0.958128 -s 0 -d 9 -p ack -e 40 -c 0 -i 1642 -a 0 -x {10.0 9.0 816 ------- null} h -t 0.958128 -s 0 -d 9 -p ack -e 40 -c 0 -i 1642 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.958512 -s 10 -d 7 -p ack -e 40 -c 0 -i 1646 -a 0 -x {10.0 9.0 818 ------- null} + -t 0.958512 -s 7 -d 0 -p ack -e 40 -c 0 -i 1646 -a 0 -x {10.0 9.0 818 ------- null} h -t 0.958512 -s 7 -d 8 -p ack -e 40 -c 0 -i 1646 -a 0 -x {10.0 9.0 818 ------- null} r -t 0.958656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1631 -a 0 -x {9.0 10.0 820 ------- null} + -t 0.958656 -s 10 -d 7 -p ack -e 40 -c 0 -i 1650 -a 0 -x {10.0 9.0 820 ------- null} - -t 0.958656 -s 10 -d 7 -p ack -e 40 -c 0 -i 1650 -a 0 -x {10.0 9.0 820 ------- null} h -t 0.958656 -s 10 -d 7 -p ack -e 40 -c 0 -i 1650 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.958752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1645 -a 0 -x {9.0 10.0 827 ------- null} + -t 0.958752 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1645 -a 0 -x {9.0 10.0 827 ------- null} h -t 0.958752 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1645 -a 0 -x {9.0 10.0 827 ------- null} + -t 0.95912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1637 -a 0 -x {9.0 10.0 823 ------- null} - -t 0.95912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1637 -a 0 -x {9.0 10.0 823 ------- null} h -t 0.95912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1637 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.959168 -s 0 -d 9 -p ack -e 40 -c 0 -i 1640 -a 0 -x {10.0 9.0 815 ------- null} + -t 0.959168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1651 -a 0 -x {9.0 10.0 830 ------- null} - -t 0.959168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1651 -a 0 -x {9.0 10.0 830 ------- null} h -t 0.959168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1651 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.95936 -s 0 -d 9 -p ack -e 40 -c 0 -i 1644 -a 0 -x {10.0 9.0 817 ------- null} - -t 0.95936 -s 0 -d 9 -p ack -e 40 -c 0 -i 1644 -a 0 -x {10.0 9.0 817 ------- null} h -t 0.95936 -s 0 -d 9 -p ack -e 40 -c 0 -i 1644 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.9596 -s 10 -d 7 -p ack -e 40 -c 0 -i 1648 -a 0 -x {10.0 9.0 819 ------- null} + -t 0.9596 -s 7 -d 0 -p ack -e 40 -c 0 -i 1648 -a 0 -x {10.0 9.0 819 ------- null} h -t 0.9596 -s 7 -d 8 -p ack -e 40 -c 0 -i 1648 -a 0 -x {10.0 9.0 819 ------- null} r -t 0.959744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1633 -a 0 -x {9.0 10.0 821 ------- null} + -t 0.959744 -s 10 -d 7 -p ack -e 40 -c 0 -i 1652 -a 0 -x {10.0 9.0 821 ------- null} - -t 0.959744 -s 10 -d 7 -p ack -e 40 -c 0 -i 1652 -a 0 -x {10.0 9.0 821 ------- null} h -t 0.959744 -s 10 -d 7 -p ack -e 40 -c 0 -i 1652 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.959856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1647 -a 0 -x {9.0 10.0 828 ------- null} + -t 0.959856 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1647 -a 0 -x {9.0 10.0 828 ------- null} h -t 0.959856 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1647 -a 0 -x {9.0 10.0 828 ------- null} r -t 0.96016 -s 0 -d 9 -p ack -e 40 -c 0 -i 1642 -a 0 -x {10.0 9.0 816 ------- null} + -t 0.96016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1653 -a 0 -x {9.0 10.0 831 ------- null} - -t 0.96016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1653 -a 0 -x {9.0 10.0 831 ------- null} h -t 0.96016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1653 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.960208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1639 -a 0 -x {9.0 10.0 824 ------- null} - -t 0.960208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1639 -a 0 -x {9.0 10.0 824 ------- null} h -t 0.960208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1639 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.960432 -s 0 -d 9 -p ack -e 40 -c 0 -i 1646 -a 0 -x {10.0 9.0 818 ------- null} - -t 0.960432 -s 0 -d 9 -p ack -e 40 -c 0 -i 1646 -a 0 -x {10.0 9.0 818 ------- null} h -t 0.960432 -s 0 -d 9 -p ack -e 40 -c 0 -i 1646 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.960688 -s 10 -d 7 -p ack -e 40 -c 0 -i 1650 -a 0 -x {10.0 9.0 820 ------- null} + -t 0.960688 -s 7 -d 0 -p ack -e 40 -c 0 -i 1650 -a 0 -x {10.0 9.0 820 ------- null} h -t 0.960688 -s 7 -d 8 -p ack -e 40 -c 0 -i 1650 -a 0 -x {10.0 9.0 820 ------- null} r -t 0.960816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1649 -a 0 -x {9.0 10.0 829 ------- null} + -t 0.960816 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1649 -a 0 -x {9.0 10.0 829 ------- null} h -t 0.960816 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1649 -a 0 -x {9.0 10.0 829 ------- null} r -t 0.960832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1635 -a 0 -x {9.0 10.0 822 ------- null} + -t 0.960832 -s 10 -d 7 -p ack -e 40 -c 0 -i 1654 -a 0 -x {10.0 9.0 822 ------- null} - -t 0.960832 -s 10 -d 7 -p ack -e 40 -c 0 -i 1654 -a 0 -x {10.0 9.0 822 ------- null} h -t 0.960832 -s 10 -d 7 -p ack -e 40 -c 0 -i 1654 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.961296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1641 -a 0 -x {9.0 10.0 825 ------- null} - -t 0.961296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1641 -a 0 -x {9.0 10.0 825 ------- null} h -t 0.961296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1641 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.961392 -s 0 -d 9 -p ack -e 40 -c 0 -i 1644 -a 0 -x {10.0 9.0 817 ------- null} + -t 0.961392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1655 -a 0 -x {9.0 10.0 832 ------- null} - -t 0.961392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1655 -a 0 -x {9.0 10.0 832 ------- null} h -t 0.961392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1655 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.961552 -s 0 -d 9 -p ack -e 40 -c 0 -i 1648 -a 0 -x {10.0 9.0 819 ------- null} - -t 0.961552 -s 0 -d 9 -p ack -e 40 -c 0 -i 1648 -a 0 -x {10.0 9.0 819 ------- null} h -t 0.961552 -s 0 -d 9 -p ack -e 40 -c 0 -i 1648 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.961776 -s 10 -d 7 -p ack -e 40 -c 0 -i 1652 -a 0 -x {10.0 9.0 821 ------- null} + -t 0.961776 -s 7 -d 0 -p ack -e 40 -c 0 -i 1652 -a 0 -x {10.0 9.0 821 ------- null} h -t 0.961776 -s 7 -d 8 -p ack -e 40 -c 0 -i 1652 -a 0 -x {10.0 9.0 821 ------- null} r -t 0.96192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1637 -a 0 -x {9.0 10.0 823 ------- null} + -t 0.96192 -s 10 -d 7 -p ack -e 40 -c 0 -i 1656 -a 0 -x {10.0 9.0 823 ------- null} - -t 0.96192 -s 10 -d 7 -p ack -e 40 -c 0 -i 1656 -a 0 -x {10.0 9.0 823 ------- null} h -t 0.96192 -s 10 -d 7 -p ack -e 40 -c 0 -i 1656 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.961968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1651 -a 0 -x {9.0 10.0 830 ------- null} + -t 0.961968 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1651 -a 0 -x {9.0 10.0 830 ------- null} h -t 0.961968 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1651 -a 0 -x {9.0 10.0 830 ------- null} + -t 0.962384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1643 -a 0 -x {9.0 10.0 826 ------- null} - -t 0.962384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1643 -a 0 -x {9.0 10.0 826 ------- null} h -t 0.962384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1643 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.962464 -s 0 -d 9 -p ack -e 40 -c 0 -i 1646 -a 0 -x {10.0 9.0 818 ------- null} + -t 0.962464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1657 -a 0 -x {9.0 10.0 833 ------- null} - -t 0.962464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1657 -a 0 -x {9.0 10.0 833 ------- null} h -t 0.962464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1657 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.962656 -s 0 -d 9 -p ack -e 40 -c 0 -i 1650 -a 0 -x {10.0 9.0 820 ------- null} - -t 0.962656 -s 0 -d 9 -p ack -e 40 -c 0 -i 1650 -a 0 -x {10.0 9.0 820 ------- null} h -t 0.962656 -s 0 -d 9 -p ack -e 40 -c 0 -i 1650 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.962864 -s 10 -d 7 -p ack -e 40 -c 0 -i 1654 -a 0 -x {10.0 9.0 822 ------- null} + -t 0.962864 -s 7 -d 0 -p ack -e 40 -c 0 -i 1654 -a 0 -x {10.0 9.0 822 ------- null} h -t 0.962864 -s 7 -d 8 -p ack -e 40 -c 0 -i 1654 -a 0 -x {10.0 9.0 822 ------- null} r -t 0.96296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1653 -a 0 -x {9.0 10.0 831 ------- null} + -t 0.96296 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1653 -a 0 -x {9.0 10.0 831 ------- null} h -t 0.96296 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1653 -a 0 -x {9.0 10.0 831 ------- null} r -t 0.963008 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1639 -a 0 -x {9.0 10.0 824 ------- null} + -t 0.963008 -s 10 -d 7 -p ack -e 40 -c 0 -i 1658 -a 0 -x {10.0 9.0 824 ------- null} - -t 0.963008 -s 10 -d 7 -p ack -e 40 -c 0 -i 1658 -a 0 -x {10.0 9.0 824 ------- null} h -t 0.963008 -s 10 -d 7 -p ack -e 40 -c 0 -i 1658 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.963584 -s 0 -d 9 -p ack -e 40 -c 0 -i 1648 -a 0 -x {10.0 9.0 819 ------- null} + -t 0.963584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1659 -a 0 -x {9.0 10.0 834 ------- null} - -t 0.963584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1659 -a 0 -x {9.0 10.0 834 ------- null} h -t 0.963584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1659 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.9636 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1645 -a 0 -x {9.0 10.0 827 ------- null} - -t 0.9636 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1645 -a 0 -x {9.0 10.0 827 ------- null} h -t 0.9636 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1645 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.963824 -s 0 -d 9 -p ack -e 40 -c 0 -i 1652 -a 0 -x {10.0 9.0 821 ------- null} - -t 0.963824 -s 0 -d 9 -p ack -e 40 -c 0 -i 1652 -a 0 -x {10.0 9.0 821 ------- null} h -t 0.963824 -s 0 -d 9 -p ack -e 40 -c 0 -i 1652 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.963952 -s 10 -d 7 -p ack -e 40 -c 0 -i 1656 -a 0 -x {10.0 9.0 823 ------- null} + -t 0.963952 -s 7 -d 0 -p ack -e 40 -c 0 -i 1656 -a 0 -x {10.0 9.0 823 ------- null} h -t 0.963952 -s 7 -d 8 -p ack -e 40 -c 0 -i 1656 -a 0 -x {10.0 9.0 823 ------- null} r -t 0.964096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1641 -a 0 -x {9.0 10.0 825 ------- null} + -t 0.964096 -s 10 -d 7 -p ack -e 40 -c 0 -i 1660 -a 0 -x {10.0 9.0 825 ------- null} - -t 0.964096 -s 10 -d 7 -p ack -e 40 -c 0 -i 1660 -a 0 -x {10.0 9.0 825 ------- null} h -t 0.964096 -s 10 -d 7 -p ack -e 40 -c 0 -i 1660 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.964192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1655 -a 0 -x {9.0 10.0 832 ------- null} + -t 0.964192 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1655 -a 0 -x {9.0 10.0 832 ------- null} h -t 0.964192 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1655 -a 0 -x {9.0 10.0 832 ------- null} r -t 0.964688 -s 0 -d 9 -p ack -e 40 -c 0 -i 1650 -a 0 -x {10.0 9.0 820 ------- null} + -t 0.964688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1661 -a 0 -x {9.0 10.0 835 ------- null} - -t 0.964688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1661 -a 0 -x {9.0 10.0 835 ------- null} h -t 0.964688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1661 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.964688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1647 -a 0 -x {9.0 10.0 828 ------- null} - -t 0.964688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1647 -a 0 -x {9.0 10.0 828 ------- null} h -t 0.964688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1647 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.9648 -s 0 -d 9 -p ack -e 40 -c 0 -i 1654 -a 0 -x {10.0 9.0 822 ------- null} - -t 0.9648 -s 0 -d 9 -p ack -e 40 -c 0 -i 1654 -a 0 -x {10.0 9.0 822 ------- null} h -t 0.9648 -s 0 -d 9 -p ack -e 40 -c 0 -i 1654 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.96504 -s 10 -d 7 -p ack -e 40 -c 0 -i 1658 -a 0 -x {10.0 9.0 824 ------- null} + -t 0.96504 -s 7 -d 0 -p ack -e 40 -c 0 -i 1658 -a 0 -x {10.0 9.0 824 ------- null} h -t 0.96504 -s 7 -d 8 -p ack -e 40 -c 0 -i 1658 -a 0 -x {10.0 9.0 824 ------- null} r -t 0.965184 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1643 -a 0 -x {9.0 10.0 826 ------- null} + -t 0.965184 -s 10 -d 7 -p ack -e 40 -c 0 -i 1662 -a 0 -x {10.0 9.0 826 ------- null} - -t 0.965184 -s 10 -d 7 -p ack -e 40 -c 0 -i 1662 -a 0 -x {10.0 9.0 826 ------- null} h -t 0.965184 -s 10 -d 7 -p ack -e 40 -c 0 -i 1662 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.965264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1657 -a 0 -x {9.0 10.0 833 ------- null} + -t 0.965264 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1657 -a 0 -x {9.0 10.0 833 ------- null} h -t 0.965264 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1657 -a 0 -x {9.0 10.0 833 ------- null} + -t 0.965776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1649 -a 0 -x {9.0 10.0 829 ------- null} - -t 0.965776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1649 -a 0 -x {9.0 10.0 829 ------- null} h -t 0.965776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1649 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.965856 -s 0 -d 9 -p ack -e 40 -c 0 -i 1652 -a 0 -x {10.0 9.0 821 ------- null} + -t 0.965856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1663 -a 0 -x {9.0 10.0 836 ------- null} - -t 0.965856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1663 -a 0 -x {9.0 10.0 836 ------- null} h -t 0.965856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1663 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.965904 -s 0 -d 9 -p ack -e 40 -c 0 -i 1656 -a 0 -x {10.0 9.0 823 ------- null} - -t 0.965904 -s 0 -d 9 -p ack -e 40 -c 0 -i 1656 -a 0 -x {10.0 9.0 823 ------- null} h -t 0.965904 -s 0 -d 9 -p ack -e 40 -c 0 -i 1656 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.966128 -s 10 -d 7 -p ack -e 40 -c 0 -i 1660 -a 0 -x {10.0 9.0 825 ------- null} + -t 0.966128 -s 7 -d 0 -p ack -e 40 -c 0 -i 1660 -a 0 -x {10.0 9.0 825 ------- null} h -t 0.966128 -s 7 -d 8 -p ack -e 40 -c 0 -i 1660 -a 0 -x {10.0 9.0 825 ------- null} r -t 0.966384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1659 -a 0 -x {9.0 10.0 834 ------- null} + -t 0.966384 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1659 -a 0 -x {9.0 10.0 834 ------- null} h -t 0.966384 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1659 -a 0 -x {9.0 10.0 834 ------- null} r -t 0.9664 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1645 -a 0 -x {9.0 10.0 827 ------- null} + -t 0.9664 -s 10 -d 7 -p ack -e 40 -c 0 -i 1664 -a 0 -x {10.0 9.0 827 ------- null} - -t 0.9664 -s 10 -d 7 -p ack -e 40 -c 0 -i 1664 -a 0 -x {10.0 9.0 827 ------- null} h -t 0.9664 -s 10 -d 7 -p ack -e 40 -c 0 -i 1664 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.966832 -s 0 -d 9 -p ack -e 40 -c 0 -i 1654 -a 0 -x {10.0 9.0 822 ------- null} + -t 0.966832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1665 -a 0 -x {9.0 10.0 837 ------- null} - -t 0.966832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1665 -a 0 -x {9.0 10.0 837 ------- null} h -t 0.966832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1665 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.966864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1651 -a 0 -x {9.0 10.0 830 ------- null} - -t 0.966864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1651 -a 0 -x {9.0 10.0 830 ------- null} h -t 0.966864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1651 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.966976 -s 0 -d 9 -p ack -e 40 -c 0 -i 1658 -a 0 -x {10.0 9.0 824 ------- null} - -t 0.966976 -s 0 -d 9 -p ack -e 40 -c 0 -i 1658 -a 0 -x {10.0 9.0 824 ------- null} h -t 0.966976 -s 0 -d 9 -p ack -e 40 -c 0 -i 1658 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.967216 -s 10 -d 7 -p ack -e 40 -c 0 -i 1662 -a 0 -x {10.0 9.0 826 ------- null} + -t 0.967216 -s 7 -d 0 -p ack -e 40 -c 0 -i 1662 -a 0 -x {10.0 9.0 826 ------- null} h -t 0.967216 -s 7 -d 8 -p ack -e 40 -c 0 -i 1662 -a 0 -x {10.0 9.0 826 ------- null} r -t 0.967488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1661 -a 0 -x {9.0 10.0 835 ------- null} + -t 0.967488 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1661 -a 0 -x {9.0 10.0 835 ------- null} h -t 0.967488 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1661 -a 0 -x {9.0 10.0 835 ------- null} r -t 0.967488 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1647 -a 0 -x {9.0 10.0 828 ------- null} + -t 0.967488 -s 10 -d 7 -p ack -e 40 -c 0 -i 1666 -a 0 -x {10.0 9.0 828 ------- null} - -t 0.967488 -s 10 -d 7 -p ack -e 40 -c 0 -i 1666 -a 0 -x {10.0 9.0 828 ------- null} h -t 0.967488 -s 10 -d 7 -p ack -e 40 -c 0 -i 1666 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.967936 -s 0 -d 9 -p ack -e 40 -c 0 -i 1656 -a 0 -x {10.0 9.0 823 ------- null} + -t 0.967936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1667 -a 0 -x {9.0 10.0 838 ------- null} - -t 0.967936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1667 -a 0 -x {9.0 10.0 838 ------- null} h -t 0.967936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1667 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.967952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1653 -a 0 -x {9.0 10.0 831 ------- null} - -t 0.967952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1653 -a 0 -x {9.0 10.0 831 ------- null} h -t 0.967952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1653 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.968224 -s 0 -d 9 -p ack -e 40 -c 0 -i 1660 -a 0 -x {10.0 9.0 825 ------- null} - -t 0.968224 -s 0 -d 9 -p ack -e 40 -c 0 -i 1660 -a 0 -x {10.0 9.0 825 ------- null} h -t 0.968224 -s 0 -d 9 -p ack -e 40 -c 0 -i 1660 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.968432 -s 10 -d 7 -p ack -e 40 -c 0 -i 1664 -a 0 -x {10.0 9.0 827 ------- null} + -t 0.968432 -s 7 -d 0 -p ack -e 40 -c 0 -i 1664 -a 0 -x {10.0 9.0 827 ------- null} h -t 0.968432 -s 7 -d 8 -p ack -e 40 -c 0 -i 1664 -a 0 -x {10.0 9.0 827 ------- null} r -t 0.968576 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1649 -a 0 -x {9.0 10.0 829 ------- null} + -t 0.968576 -s 10 -d 7 -p ack -e 40 -c 0 -i 1668 -a 0 -x {10.0 9.0 829 ------- null} - -t 0.968576 -s 10 -d 7 -p ack -e 40 -c 0 -i 1668 -a 0 -x {10.0 9.0 829 ------- null} h -t 0.968576 -s 10 -d 7 -p ack -e 40 -c 0 -i 1668 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.968656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1663 -a 0 -x {9.0 10.0 836 ------- null} + -t 0.968656 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1663 -a 0 -x {9.0 10.0 836 ------- null} h -t 0.968656 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1663 -a 0 -x {9.0 10.0 836 ------- null} r -t 0.969008 -s 0 -d 9 -p ack -e 40 -c 0 -i 1658 -a 0 -x {10.0 9.0 824 ------- null} + -t 0.969008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1669 -a 0 -x {9.0 10.0 839 ------- null} - -t 0.969008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1669 -a 0 -x {9.0 10.0 839 ------- null} h -t 0.969008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1669 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.969088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1655 -a 0 -x {9.0 10.0 832 ------- null} - -t 0.969088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1655 -a 0 -x {9.0 10.0 832 ------- null} h -t 0.969088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1655 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.969328 -s 0 -d 9 -p ack -e 40 -c 0 -i 1662 -a 0 -x {10.0 9.0 826 ------- null} - -t 0.969328 -s 0 -d 9 -p ack -e 40 -c 0 -i 1662 -a 0 -x {10.0 9.0 826 ------- null} h -t 0.969328 -s 0 -d 9 -p ack -e 40 -c 0 -i 1662 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.96952 -s 10 -d 7 -p ack -e 40 -c 0 -i 1666 -a 0 -x {10.0 9.0 828 ------- null} + -t 0.96952 -s 7 -d 0 -p ack -e 40 -c 0 -i 1666 -a 0 -x {10.0 9.0 828 ------- null} h -t 0.96952 -s 7 -d 8 -p ack -e 40 -c 0 -i 1666 -a 0 -x {10.0 9.0 828 ------- null} r -t 0.969632 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1665 -a 0 -x {9.0 10.0 837 ------- null} + -t 0.969632 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1665 -a 0 -x {9.0 10.0 837 ------- null} h -t 0.969632 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1665 -a 0 -x {9.0 10.0 837 ------- null} r -t 0.969664 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1651 -a 0 -x {9.0 10.0 830 ------- null} + -t 0.969664 -s 10 -d 7 -p ack -e 40 -c 0 -i 1670 -a 0 -x {10.0 9.0 830 ------- null} - -t 0.969664 -s 10 -d 7 -p ack -e 40 -c 0 -i 1670 -a 0 -x {10.0 9.0 830 ------- null} h -t 0.969664 -s 10 -d 7 -p ack -e 40 -c 0 -i 1670 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.970176 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1657 -a 0 -x {9.0 10.0 833 ------- null} - -t 0.970176 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1657 -a 0 -x {9.0 10.0 833 ------- null} h -t 0.970176 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1657 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.970256 -s 0 -d 9 -p ack -e 40 -c 0 -i 1660 -a 0 -x {10.0 9.0 825 ------- null} + -t 0.970256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1671 -a 0 -x {9.0 10.0 840 ------- null} - -t 0.970256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1671 -a 0 -x {9.0 10.0 840 ------- null} h -t 0.970256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1671 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.970464 -s 0 -d 9 -p ack -e 40 -c 0 -i 1664 -a 0 -x {10.0 9.0 827 ------- null} - -t 0.970464 -s 0 -d 9 -p ack -e 40 -c 0 -i 1664 -a 0 -x {10.0 9.0 827 ------- null} h -t 0.970464 -s 0 -d 9 -p ack -e 40 -c 0 -i 1664 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.970608 -s 10 -d 7 -p ack -e 40 -c 0 -i 1668 -a 0 -x {10.0 9.0 829 ------- null} + -t 0.970608 -s 7 -d 0 -p ack -e 40 -c 0 -i 1668 -a 0 -x {10.0 9.0 829 ------- null} h -t 0.970608 -s 7 -d 8 -p ack -e 40 -c 0 -i 1668 -a 0 -x {10.0 9.0 829 ------- null} r -t 0.970736 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1667 -a 0 -x {9.0 10.0 838 ------- null} + -t 0.970736 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1667 -a 0 -x {9.0 10.0 838 ------- null} h -t 0.970736 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1667 -a 0 -x {9.0 10.0 838 ------- null} r -t 0.970752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1653 -a 0 -x {9.0 10.0 831 ------- null} + -t 0.970752 -s 10 -d 7 -p ack -e 40 -c 0 -i 1672 -a 0 -x {10.0 9.0 831 ------- null} - -t 0.970752 -s 10 -d 7 -p ack -e 40 -c 0 -i 1672 -a 0 -x {10.0 9.0 831 ------- null} h -t 0.970752 -s 10 -d 7 -p ack -e 40 -c 0 -i 1672 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.97136 -s 0 -d 9 -p ack -e 40 -c 0 -i 1662 -a 0 -x {10.0 9.0 826 ------- null} + -t 0.97136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1673 -a 0 -x {9.0 10.0 841 ------- null} - -t 0.97136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1673 -a 0 -x {9.0 10.0 841 ------- null} h -t 0.97136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1673 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.971376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1659 -a 0 -x {9.0 10.0 834 ------- null} - -t 0.971376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1659 -a 0 -x {9.0 10.0 834 ------- null} h -t 0.971376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1659 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.971552 -s 0 -d 9 -p ack -e 40 -c 0 -i 1666 -a 0 -x {10.0 9.0 828 ------- null} - -t 0.971552 -s 0 -d 9 -p ack -e 40 -c 0 -i 1666 -a 0 -x {10.0 9.0 828 ------- null} h -t 0.971552 -s 0 -d 9 -p ack -e 40 -c 0 -i 1666 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.971696 -s 10 -d 7 -p ack -e 40 -c 0 -i 1670 -a 0 -x {10.0 9.0 830 ------- null} + -t 0.971696 -s 7 -d 0 -p ack -e 40 -c 0 -i 1670 -a 0 -x {10.0 9.0 830 ------- null} h -t 0.971696 -s 7 -d 8 -p ack -e 40 -c 0 -i 1670 -a 0 -x {10.0 9.0 830 ------- null} r -t 0.971808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1669 -a 0 -x {9.0 10.0 839 ------- null} + -t 0.971808 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1669 -a 0 -x {9.0 10.0 839 ------- null} h -t 0.971808 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1669 -a 0 -x {9.0 10.0 839 ------- null} r -t 0.971888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1655 -a 0 -x {9.0 10.0 832 ------- null} + -t 0.971888 -s 10 -d 7 -p ack -e 40 -c 0 -i 1674 -a 0 -x {10.0 9.0 832 ------- null} - -t 0.971888 -s 10 -d 7 -p ack -e 40 -c 0 -i 1674 -a 0 -x {10.0 9.0 832 ------- null} h -t 0.971888 -s 10 -d 7 -p ack -e 40 -c 0 -i 1674 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.972464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1661 -a 0 -x {9.0 10.0 835 ------- null} - -t 0.972464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1661 -a 0 -x {9.0 10.0 835 ------- null} h -t 0.972464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1661 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.972496 -s 0 -d 9 -p ack -e 40 -c 0 -i 1664 -a 0 -x {10.0 9.0 827 ------- null} + -t 0.972496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1675 -a 0 -x {9.0 10.0 842 ------- null} - -t 0.972496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1675 -a 0 -x {9.0 10.0 842 ------- null} h -t 0.972496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1675 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.972736 -s 0 -d 9 -p ack -e 40 -c 0 -i 1668 -a 0 -x {10.0 9.0 829 ------- null} - -t 0.972736 -s 0 -d 9 -p ack -e 40 -c 0 -i 1668 -a 0 -x {10.0 9.0 829 ------- null} h -t 0.972736 -s 0 -d 9 -p ack -e 40 -c 0 -i 1668 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.972784 -s 10 -d 7 -p ack -e 40 -c 0 -i 1672 -a 0 -x {10.0 9.0 831 ------- null} + -t 0.972784 -s 7 -d 0 -p ack -e 40 -c 0 -i 1672 -a 0 -x {10.0 9.0 831 ------- null} h -t 0.972784 -s 7 -d 8 -p ack -e 40 -c 0 -i 1672 -a 0 -x {10.0 9.0 831 ------- null} r -t 0.972976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1657 -a 0 -x {9.0 10.0 833 ------- null} + -t 0.972976 -s 10 -d 7 -p ack -e 40 -c 0 -i 1676 -a 0 -x {10.0 9.0 833 ------- null} - -t 0.972976 -s 10 -d 7 -p ack -e 40 -c 0 -i 1676 -a 0 -x {10.0 9.0 833 ------- null} h -t 0.972976 -s 10 -d 7 -p ack -e 40 -c 0 -i 1676 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.973056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1671 -a 0 -x {9.0 10.0 840 ------- null} + -t 0.973056 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1671 -a 0 -x {9.0 10.0 840 ------- null} h -t 0.973056 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1671 -a 0 -x {9.0 10.0 840 ------- null} r -t 0.973584 -s 0 -d 9 -p ack -e 40 -c 0 -i 1666 -a 0 -x {10.0 9.0 828 ------- null} + -t 0.973584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1677 -a 0 -x {9.0 10.0 843 ------- null} - -t 0.973584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1677 -a 0 -x {9.0 10.0 843 ------- null} h -t 0.973584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1677 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.973776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1663 -a 0 -x {9.0 10.0 836 ------- null} - -t 0.973776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1663 -a 0 -x {9.0 10.0 836 ------- null} h -t 0.973776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1663 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.97392 -s 10 -d 7 -p ack -e 40 -c 0 -i 1674 -a 0 -x {10.0 9.0 832 ------- null} + -t 0.97392 -s 7 -d 0 -p ack -e 40 -c 0 -i 1674 -a 0 -x {10.0 9.0 832 ------- null} h -t 0.97392 -s 7 -d 8 -p ack -e 40 -c 0 -i 1674 -a 0 -x {10.0 9.0 832 ------- null} + -t 0.97408 -s 0 -d 9 -p ack -e 40 -c 0 -i 1670 -a 0 -x {10.0 9.0 830 ------- null} - -t 0.97408 -s 0 -d 9 -p ack -e 40 -c 0 -i 1670 -a 0 -x {10.0 9.0 830 ------- null} h -t 0.97408 -s 0 -d 9 -p ack -e 40 -c 0 -i 1670 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.97416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1673 -a 0 -x {9.0 10.0 841 ------- null} + -t 0.97416 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1673 -a 0 -x {9.0 10.0 841 ------- null} h -t 0.97416 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1673 -a 0 -x {9.0 10.0 841 ------- null} r -t 0.974176 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1659 -a 0 -x {9.0 10.0 834 ------- null} + -t 0.974176 -s 10 -d 7 -p ack -e 40 -c 0 -i 1678 -a 0 -x {10.0 9.0 834 ------- null} - -t 0.974176 -s 10 -d 7 -p ack -e 40 -c 0 -i 1678 -a 0 -x {10.0 9.0 834 ------- null} h -t 0.974176 -s 10 -d 7 -p ack -e 40 -c 0 -i 1678 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.974768 -s 0 -d 9 -p ack -e 40 -c 0 -i 1668 -a 0 -x {10.0 9.0 829 ------- null} + -t 0.974768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1679 -a 0 -x {9.0 10.0 844 ------- null} - -t 0.974768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1679 -a 0 -x {9.0 10.0 844 ------- null} h -t 0.974768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1679 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.974912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1665 -a 0 -x {9.0 10.0 837 ------- null} - -t 0.974912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1665 -a 0 -x {9.0 10.0 837 ------- null} h -t 0.974912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1665 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.975008 -s 10 -d 7 -p ack -e 40 -c 0 -i 1676 -a 0 -x {10.0 9.0 833 ------- null} + -t 0.975008 -s 7 -d 0 -p ack -e 40 -c 0 -i 1676 -a 0 -x {10.0 9.0 833 ------- null} h -t 0.975008 -s 7 -d 8 -p ack -e 40 -c 0 -i 1676 -a 0 -x {10.0 9.0 833 ------- null} + -t 0.975008 -s 0 -d 9 -p ack -e 40 -c 0 -i 1672 -a 0 -x {10.0 9.0 831 ------- null} - -t 0.975008 -s 0 -d 9 -p ack -e 40 -c 0 -i 1672 -a 0 -x {10.0 9.0 831 ------- null} h -t 0.975008 -s 0 -d 9 -p ack -e 40 -c 0 -i 1672 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.975264 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1661 -a 0 -x {9.0 10.0 835 ------- null} + -t 0.975264 -s 10 -d 7 -p ack -e 40 -c 0 -i 1680 -a 0 -x {10.0 9.0 835 ------- null} - -t 0.975264 -s 10 -d 7 -p ack -e 40 -c 0 -i 1680 -a 0 -x {10.0 9.0 835 ------- null} h -t 0.975264 -s 10 -d 7 -p ack -e 40 -c 0 -i 1680 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.975296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1675 -a 0 -x {9.0 10.0 842 ------- null} + -t 0.975296 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1675 -a 0 -x {9.0 10.0 842 ------- null} h -t 0.975296 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1675 -a 0 -x {9.0 10.0 842 ------- null} + -t 0.976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1667 -a 0 -x {9.0 10.0 838 ------- null} - -t 0.976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1667 -a 0 -x {9.0 10.0 838 ------- null} h -t 0.976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1667 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.976112 -s 0 -d 9 -p ack -e 40 -c 0 -i 1670 -a 0 -x {10.0 9.0 830 ------- null} + -t 0.976112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1681 -a 0 -x {9.0 10.0 845 ------- null} - -t 0.976112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1681 -a 0 -x {9.0 10.0 845 ------- null} h -t 0.976112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1681 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.976208 -s 10 -d 7 -p ack -e 40 -c 0 -i 1678 -a 0 -x {10.0 9.0 834 ------- null} + -t 0.976208 -s 7 -d 0 -p ack -e 40 -c 0 -i 1678 -a 0 -x {10.0 9.0 834 ------- null} h -t 0.976208 -s 7 -d 8 -p ack -e 40 -c 0 -i 1678 -a 0 -x {10.0 9.0 834 ------- null} + -t 0.97624 -s 0 -d 9 -p ack -e 40 -c 0 -i 1674 -a 0 -x {10.0 9.0 832 ------- null} - -t 0.97624 -s 0 -d 9 -p ack -e 40 -c 0 -i 1674 -a 0 -x {10.0 9.0 832 ------- null} h -t 0.97624 -s 0 -d 9 -p ack -e 40 -c 0 -i 1674 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.976384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1677 -a 0 -x {9.0 10.0 843 ------- null} + -t 0.976384 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1677 -a 0 -x {9.0 10.0 843 ------- null} h -t 0.976384 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1677 -a 0 -x {9.0 10.0 843 ------- null} r -t 0.976576 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1663 -a 0 -x {9.0 10.0 836 ------- null} + -t 0.976576 -s 10 -d 7 -p ack -e 40 -c 0 -i 1682 -a 0 -x {10.0 9.0 836 ------- null} - -t 0.976576 -s 10 -d 7 -p ack -e 40 -c 0 -i 1682 -a 0 -x {10.0 9.0 836 ------- null} h -t 0.976576 -s 10 -d 7 -p ack -e 40 -c 0 -i 1682 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.97704 -s 0 -d 9 -p ack -e 40 -c 0 -i 1672 -a 0 -x {10.0 9.0 831 ------- null} + -t 0.97704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1683 -a 0 -x {9.0 10.0 846 ------- null} - -t 0.97704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1683 -a 0 -x {9.0 10.0 846 ------- null} h -t 0.97704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1683 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.977088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1669 -a 0 -x {9.0 10.0 839 ------- null} - -t 0.977088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1669 -a 0 -x {9.0 10.0 839 ------- null} h -t 0.977088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1669 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.977264 -s 0 -d 9 -p ack -e 40 -c 0 -i 1676 -a 0 -x {10.0 9.0 833 ------- null} - -t 0.977264 -s 0 -d 9 -p ack -e 40 -c 0 -i 1676 -a 0 -x {10.0 9.0 833 ------- null} h -t 0.977264 -s 0 -d 9 -p ack -e 40 -c 0 -i 1676 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.977296 -s 10 -d 7 -p ack -e 40 -c 0 -i 1680 -a 0 -x {10.0 9.0 835 ------- null} + -t 0.977296 -s 7 -d 0 -p ack -e 40 -c 0 -i 1680 -a 0 -x {10.0 9.0 835 ------- null} h -t 0.977296 -s 7 -d 8 -p ack -e 40 -c 0 -i 1680 -a 0 -x {10.0 9.0 835 ------- null} r -t 0.977568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1679 -a 0 -x {9.0 10.0 844 ------- null} + -t 0.977568 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1679 -a 0 -x {9.0 10.0 844 ------- null} h -t 0.977568 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1679 -a 0 -x {9.0 10.0 844 ------- null} r -t 0.977712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1665 -a 0 -x {9.0 10.0 837 ------- null} + -t 0.977712 -s 10 -d 7 -p ack -e 40 -c 0 -i 1684 -a 0 -x {10.0 9.0 837 ------- null} - -t 0.977712 -s 10 -d 7 -p ack -e 40 -c 0 -i 1684 -a 0 -x {10.0 9.0 837 ------- null} h -t 0.977712 -s 10 -d 7 -p ack -e 40 -c 0 -i 1684 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.978176 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1671 -a 0 -x {9.0 10.0 840 ------- null} - -t 0.978176 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1671 -a 0 -x {9.0 10.0 840 ------- null} h -t 0.978176 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1671 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.978272 -s 0 -d 9 -p ack -e 40 -c 0 -i 1674 -a 0 -x {10.0 9.0 832 ------- null} + -t 0.978272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1685 -a 0 -x {9.0 10.0 847 ------- null} - -t 0.978272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1685 -a 0 -x {9.0 10.0 847 ------- null} h -t 0.978272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1685 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.978432 -s 0 -d 9 -p ack -e 40 -c 0 -i 1678 -a 0 -x {10.0 9.0 834 ------- null} - -t 0.978432 -s 0 -d 9 -p ack -e 40 -c 0 -i 1678 -a 0 -x {10.0 9.0 834 ------- null} h -t 0.978432 -s 0 -d 9 -p ack -e 40 -c 0 -i 1678 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.978608 -s 10 -d 7 -p ack -e 40 -c 0 -i 1682 -a 0 -x {10.0 9.0 836 ------- null} + -t 0.978608 -s 7 -d 0 -p ack -e 40 -c 0 -i 1682 -a 0 -x {10.0 9.0 836 ------- null} h -t 0.978608 -s 7 -d 8 -p ack -e 40 -c 0 -i 1682 -a 0 -x {10.0 9.0 836 ------- null} r -t 0.9788 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1667 -a 0 -x {9.0 10.0 838 ------- null} + -t 0.9788 -s 10 -d 7 -p ack -e 40 -c 0 -i 1686 -a 0 -x {10.0 9.0 838 ------- null} - -t 0.9788 -s 10 -d 7 -p ack -e 40 -c 0 -i 1686 -a 0 -x {10.0 9.0 838 ------- null} h -t 0.9788 -s 10 -d 7 -p ack -e 40 -c 0 -i 1686 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.978912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1681 -a 0 -x {9.0 10.0 845 ------- null} + -t 0.978912 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1681 -a 0 -x {9.0 10.0 845 ------- null} h -t 0.978912 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1681 -a 0 -x {9.0 10.0 845 ------- null} + -t 0.979264 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1673 -a 0 -x {9.0 10.0 841 ------- null} - -t 0.979264 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1673 -a 0 -x {9.0 10.0 841 ------- null} h -t 0.979264 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1673 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.979296 -s 0 -d 9 -p ack -e 40 -c 0 -i 1676 -a 0 -x {10.0 9.0 833 ------- null} + -t 0.979296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1687 -a 0 -x {9.0 10.0 848 ------- null} - -t 0.979296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1687 -a 0 -x {9.0 10.0 848 ------- null} h -t 0.979296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1687 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.979392 -s 0 -d 9 -p ack -e 40 -c 0 -i 1680 -a 0 -x {10.0 9.0 835 ------- null} - -t 0.979392 -s 0 -d 9 -p ack -e 40 -c 0 -i 1680 -a 0 -x {10.0 9.0 835 ------- null} h -t 0.979392 -s 0 -d 9 -p ack -e 40 -c 0 -i 1680 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.979744 -s 10 -d 7 -p ack -e 40 -c 0 -i 1684 -a 0 -x {10.0 9.0 837 ------- null} + -t 0.979744 -s 7 -d 0 -p ack -e 40 -c 0 -i 1684 -a 0 -x {10.0 9.0 837 ------- null} h -t 0.979744 -s 7 -d 8 -p ack -e 40 -c 0 -i 1684 -a 0 -x {10.0 9.0 837 ------- null} r -t 0.97984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1683 -a 0 -x {9.0 10.0 846 ------- null} + -t 0.97984 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1683 -a 0 -x {9.0 10.0 846 ------- null} h -t 0.97984 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1683 -a 0 -x {9.0 10.0 846 ------- null} r -t 0.979888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1669 -a 0 -x {9.0 10.0 839 ------- null} + -t 0.979888 -s 10 -d 7 -p ack -e 40 -c 0 -i 1688 -a 0 -x {10.0 9.0 839 ------- null} - -t 0.979888 -s 10 -d 7 -p ack -e 40 -c 0 -i 1688 -a 0 -x {10.0 9.0 839 ------- null} h -t 0.979888 -s 10 -d 7 -p ack -e 40 -c 0 -i 1688 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.980352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1675 -a 0 -x {9.0 10.0 842 ------- null} - -t 0.980352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1675 -a 0 -x {9.0 10.0 842 ------- null} h -t 0.980352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1675 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.980464 -s 0 -d 9 -p ack -e 40 -c 0 -i 1678 -a 0 -x {10.0 9.0 834 ------- null} + -t 0.980464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1689 -a 0 -x {9.0 10.0 849 ------- null} - -t 0.980464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1689 -a 0 -x {9.0 10.0 849 ------- null} h -t 0.980464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1689 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.980512 -s 0 -d 9 -p ack -e 40 -c 0 -i 1682 -a 0 -x {10.0 9.0 836 ------- null} - -t 0.980512 -s 0 -d 9 -p ack -e 40 -c 0 -i 1682 -a 0 -x {10.0 9.0 836 ------- null} h -t 0.980512 -s 0 -d 9 -p ack -e 40 -c 0 -i 1682 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.980832 -s 10 -d 7 -p ack -e 40 -c 0 -i 1686 -a 0 -x {10.0 9.0 838 ------- null} + -t 0.980832 -s 7 -d 0 -p ack -e 40 -c 0 -i 1686 -a 0 -x {10.0 9.0 838 ------- null} h -t 0.980832 -s 7 -d 8 -p ack -e 40 -c 0 -i 1686 -a 0 -x {10.0 9.0 838 ------- null} r -t 0.980976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1671 -a 0 -x {9.0 10.0 840 ------- null} + -t 0.980976 -s 10 -d 7 -p ack -e 40 -c 0 -i 1690 -a 0 -x {10.0 9.0 840 ------- null} - -t 0.980976 -s 10 -d 7 -p ack -e 40 -c 0 -i 1690 -a 0 -x {10.0 9.0 840 ------- null} h -t 0.980976 -s 10 -d 7 -p ack -e 40 -c 0 -i 1690 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.981072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1685 -a 0 -x {9.0 10.0 847 ------- null} + -t 0.981072 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1685 -a 0 -x {9.0 10.0 847 ------- null} h -t 0.981072 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1685 -a 0 -x {9.0 10.0 847 ------- null} r -t 0.981424 -s 0 -d 9 -p ack -e 40 -c 0 -i 1680 -a 0 -x {10.0 9.0 835 ------- null} + -t 0.981424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1691 -a 0 -x {9.0 10.0 850 ------- null} - -t 0.981424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1691 -a 0 -x {9.0 10.0 850 ------- null} h -t 0.981424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1691 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.98144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1677 -a 0 -x {9.0 10.0 843 ------- null} - -t 0.98144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1677 -a 0 -x {9.0 10.0 843 ------- null} h -t 0.98144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1677 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.981728 -s 0 -d 9 -p ack -e 40 -c 0 -i 1684 -a 0 -x {10.0 9.0 837 ------- null} - -t 0.981728 -s 0 -d 9 -p ack -e 40 -c 0 -i 1684 -a 0 -x {10.0 9.0 837 ------- null} h -t 0.981728 -s 0 -d 9 -p ack -e 40 -c 0 -i 1684 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.98192 -s 10 -d 7 -p ack -e 40 -c 0 -i 1688 -a 0 -x {10.0 9.0 839 ------- null} + -t 0.98192 -s 7 -d 0 -p ack -e 40 -c 0 -i 1688 -a 0 -x {10.0 9.0 839 ------- null} h -t 0.98192 -s 7 -d 8 -p ack -e 40 -c 0 -i 1688 -a 0 -x {10.0 9.0 839 ------- null} r -t 0.982064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1673 -a 0 -x {9.0 10.0 841 ------- null} + -t 0.982064 -s 10 -d 7 -p ack -e 40 -c 0 -i 1692 -a 0 -x {10.0 9.0 841 ------- null} - -t 0.982064 -s 10 -d 7 -p ack -e 40 -c 0 -i 1692 -a 0 -x {10.0 9.0 841 ------- null} h -t 0.982064 -s 10 -d 7 -p ack -e 40 -c 0 -i 1692 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.982096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1687 -a 0 -x {9.0 10.0 848 ------- null} + -t 0.982096 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1687 -a 0 -x {9.0 10.0 848 ------- null} h -t 0.982096 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1687 -a 0 -x {9.0 10.0 848 ------- null} r -t 0.982544 -s 0 -d 9 -p ack -e 40 -c 0 -i 1682 -a 0 -x {10.0 9.0 836 ------- null} + -t 0.982544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1693 -a 0 -x {9.0 10.0 851 ------- null} - -t 0.982544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1693 -a 0 -x {9.0 10.0 851 ------- null} h -t 0.982544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1693 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.982736 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1679 -a 0 -x {9.0 10.0 844 ------- null} - -t 0.982736 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1679 -a 0 -x {9.0 10.0 844 ------- null} h -t 0.982736 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1679 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.982944 -s 0 -d 9 -p ack -e 40 -c 0 -i 1686 -a 0 -x {10.0 9.0 838 ------- null} - -t 0.982944 -s 0 -d 9 -p ack -e 40 -c 0 -i 1686 -a 0 -x {10.0 9.0 838 ------- null} h -t 0.982944 -s 0 -d 9 -p ack -e 40 -c 0 -i 1686 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.983008 -s 10 -d 7 -p ack -e 40 -c 0 -i 1690 -a 0 -x {10.0 9.0 840 ------- null} + -t 0.983008 -s 7 -d 0 -p ack -e 40 -c 0 -i 1690 -a 0 -x {10.0 9.0 840 ------- null} h -t 0.983008 -s 7 -d 8 -p ack -e 40 -c 0 -i 1690 -a 0 -x {10.0 9.0 840 ------- null} r -t 0.983152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1675 -a 0 -x {9.0 10.0 842 ------- null} + -t 0.983152 -s 10 -d 7 -p ack -e 40 -c 0 -i 1694 -a 0 -x {10.0 9.0 842 ------- null} - -t 0.983152 -s 10 -d 7 -p ack -e 40 -c 0 -i 1694 -a 0 -x {10.0 9.0 842 ------- null} h -t 0.983152 -s 10 -d 7 -p ack -e 40 -c 0 -i 1694 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.983264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1689 -a 0 -x {9.0 10.0 849 ------- null} + -t 0.983264 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1689 -a 0 -x {9.0 10.0 849 ------- null} h -t 0.983264 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1689 -a 0 -x {9.0 10.0 849 ------- null} r -t 0.98376 -s 0 -d 9 -p ack -e 40 -c 0 -i 1684 -a 0 -x {10.0 9.0 837 ------- null} + -t 0.98376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1695 -a 0 -x {9.0 10.0 852 ------- null} - -t 0.98376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1695 -a 0 -x {9.0 10.0 852 ------- null} h -t 0.98376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1695 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.983824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1681 -a 0 -x {9.0 10.0 845 ------- null} - -t 0.983824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1681 -a 0 -x {9.0 10.0 845 ------- null} h -t 0.983824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1681 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.983904 -s 0 -d 9 -p ack -e 40 -c 0 -i 1688 -a 0 -x {10.0 9.0 839 ------- null} - -t 0.983904 -s 0 -d 9 -p ack -e 40 -c 0 -i 1688 -a 0 -x {10.0 9.0 839 ------- null} h -t 0.983904 -s 0 -d 9 -p ack -e 40 -c 0 -i 1688 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.984096 -s 10 -d 7 -p ack -e 40 -c 0 -i 1692 -a 0 -x {10.0 9.0 841 ------- null} + -t 0.984096 -s 7 -d 0 -p ack -e 40 -c 0 -i 1692 -a 0 -x {10.0 9.0 841 ------- null} h -t 0.984096 -s 7 -d 8 -p ack -e 40 -c 0 -i 1692 -a 0 -x {10.0 9.0 841 ------- null} r -t 0.984224 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1691 -a 0 -x {9.0 10.0 850 ------- null} + -t 0.984224 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1691 -a 0 -x {9.0 10.0 850 ------- null} h -t 0.984224 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1691 -a 0 -x {9.0 10.0 850 ------- null} r -t 0.98424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1677 -a 0 -x {9.0 10.0 843 ------- null} + -t 0.98424 -s 10 -d 7 -p ack -e 40 -c 0 -i 1696 -a 0 -x {10.0 9.0 843 ------- null} - -t 0.98424 -s 10 -d 7 -p ack -e 40 -c 0 -i 1696 -a 0 -x {10.0 9.0 843 ------- null} h -t 0.98424 -s 10 -d 7 -p ack -e 40 -c 0 -i 1696 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.984912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1683 -a 0 -x {9.0 10.0 846 ------- null} - -t 0.984912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1683 -a 0 -x {9.0 10.0 846 ------- null} h -t 0.984912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1683 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.984976 -s 0 -d 9 -p ack -e 40 -c 0 -i 1686 -a 0 -x {10.0 9.0 838 ------- null} + -t 0.984976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1697 -a 0 -x {9.0 10.0 853 ------- null} - -t 0.984976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1697 -a 0 -x {9.0 10.0 853 ------- null} h -t 0.984976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1697 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.985072 -s 0 -d 9 -p ack -e 40 -c 0 -i 1690 -a 0 -x {10.0 9.0 840 ------- null} - -t 0.985072 -s 0 -d 9 -p ack -e 40 -c 0 -i 1690 -a 0 -x {10.0 9.0 840 ------- null} h -t 0.985072 -s 0 -d 9 -p ack -e 40 -c 0 -i 1690 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.985184 -s 10 -d 7 -p ack -e 40 -c 0 -i 1694 -a 0 -x {10.0 9.0 842 ------- null} + -t 0.985184 -s 7 -d 0 -p ack -e 40 -c 0 -i 1694 -a 0 -x {10.0 9.0 842 ------- null} h -t 0.985184 -s 7 -d 8 -p ack -e 40 -c 0 -i 1694 -a 0 -x {10.0 9.0 842 ------- null} r -t 0.985344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1693 -a 0 -x {9.0 10.0 851 ------- null} + -t 0.985344 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1693 -a 0 -x {9.0 10.0 851 ------- null} h -t 0.985344 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1693 -a 0 -x {9.0 10.0 851 ------- null} r -t 0.985536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1679 -a 0 -x {9.0 10.0 844 ------- null} + -t 0.985536 -s 10 -d 7 -p ack -e 40 -c 0 -i 1698 -a 0 -x {10.0 9.0 844 ------- null} - -t 0.985536 -s 10 -d 7 -p ack -e 40 -c 0 -i 1698 -a 0 -x {10.0 9.0 844 ------- null} h -t 0.985536 -s 10 -d 7 -p ack -e 40 -c 0 -i 1698 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.985936 -s 0 -d 9 -p ack -e 40 -c 0 -i 1688 -a 0 -x {10.0 9.0 839 ------- null} + -t 0.985936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1699 -a 0 -x {9.0 10.0 854 ------- null} - -t 0.985936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1699 -a 0 -x {9.0 10.0 854 ------- null} h -t 0.985936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1699 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.986 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1685 -a 0 -x {9.0 10.0 847 ------- null} - -t 0.986 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1685 -a 0 -x {9.0 10.0 847 ------- null} h -t 0.986 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1685 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.986096 -s 0 -d 9 -p ack -e 40 -c 0 -i 1692 -a 0 -x {10.0 9.0 841 ------- null} - -t 0.986096 -s 0 -d 9 -p ack -e 40 -c 0 -i 1692 -a 0 -x {10.0 9.0 841 ------- null} h -t 0.986096 -s 0 -d 9 -p ack -e 40 -c 0 -i 1692 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.986272 -s 10 -d 7 -p ack -e 40 -c 0 -i 1696 -a 0 -x {10.0 9.0 843 ------- null} + -t 0.986272 -s 7 -d 0 -p ack -e 40 -c 0 -i 1696 -a 0 -x {10.0 9.0 843 ------- null} h -t 0.986272 -s 7 -d 8 -p ack -e 40 -c 0 -i 1696 -a 0 -x {10.0 9.0 843 ------- null} r -t 0.98656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1695 -a 0 -x {9.0 10.0 852 ------- null} + -t 0.98656 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1695 -a 0 -x {9.0 10.0 852 ------- null} h -t 0.98656 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1695 -a 0 -x {9.0 10.0 852 ------- null} r -t 0.986624 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1681 -a 0 -x {9.0 10.0 845 ------- null} + -t 0.986624 -s 10 -d 7 -p ack -e 40 -c 0 -i 1700 -a 0 -x {10.0 9.0 845 ------- null} - -t 0.986624 -s 10 -d 7 -p ack -e 40 -c 0 -i 1700 -a 0 -x {10.0 9.0 845 ------- null} h -t 0.986624 -s 10 -d 7 -p ack -e 40 -c 0 -i 1700 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.987088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1687 -a 0 -x {9.0 10.0 848 ------- null} - -t 0.987088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1687 -a 0 -x {9.0 10.0 848 ------- null} h -t 0.987088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1687 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.987104 -s 0 -d 9 -p ack -e 40 -c 0 -i 1690 -a 0 -x {10.0 9.0 840 ------- null} + -t 0.987104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1701 -a 0 -x {9.0 10.0 855 ------- null} - -t 0.987104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1701 -a 0 -x {9.0 10.0 855 ------- null} h -t 0.987104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1701 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.987392 -s 0 -d 9 -p ack -e 40 -c 0 -i 1694 -a 0 -x {10.0 9.0 842 ------- null} - -t 0.987392 -s 0 -d 9 -p ack -e 40 -c 0 -i 1694 -a 0 -x {10.0 9.0 842 ------- null} h -t 0.987392 -s 0 -d 9 -p ack -e 40 -c 0 -i 1694 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.987568 -s 10 -d 7 -p ack -e 40 -c 0 -i 1698 -a 0 -x {10.0 9.0 844 ------- null} + -t 0.987568 -s 7 -d 0 -p ack -e 40 -c 0 -i 1698 -a 0 -x {10.0 9.0 844 ------- null} h -t 0.987568 -s 7 -d 8 -p ack -e 40 -c 0 -i 1698 -a 0 -x {10.0 9.0 844 ------- null} r -t 0.987712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1683 -a 0 -x {9.0 10.0 846 ------- null} + -t 0.987712 -s 10 -d 7 -p ack -e 40 -c 0 -i 1702 -a 0 -x {10.0 9.0 846 ------- null} - -t 0.987712 -s 10 -d 7 -p ack -e 40 -c 0 -i 1702 -a 0 -x {10.0 9.0 846 ------- null} h -t 0.987712 -s 10 -d 7 -p ack -e 40 -c 0 -i 1702 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.987776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1697 -a 0 -x {9.0 10.0 853 ------- null} + -t 0.987776 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1697 -a 0 -x {9.0 10.0 853 ------- null} h -t 0.987776 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1697 -a 0 -x {9.0 10.0 853 ------- null} r -t 0.988128 -s 0 -d 9 -p ack -e 40 -c 0 -i 1692 -a 0 -x {10.0 9.0 841 ------- null} + -t 0.988128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1703 -a 0 -x {9.0 10.0 856 ------- null} - -t 0.988128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1703 -a 0 -x {9.0 10.0 856 ------- null} h -t 0.988128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1703 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.988288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1689 -a 0 -x {9.0 10.0 849 ------- null} - -t 0.988288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1689 -a 0 -x {9.0 10.0 849 ------- null} h -t 0.988288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1689 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.988464 -s 0 -d 9 -p ack -e 40 -c 0 -i 1696 -a 0 -x {10.0 9.0 843 ------- null} - -t 0.988464 -s 0 -d 9 -p ack -e 40 -c 0 -i 1696 -a 0 -x {10.0 9.0 843 ------- null} h -t 0.988464 -s 0 -d 9 -p ack -e 40 -c 0 -i 1696 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.988656 -s 10 -d 7 -p ack -e 40 -c 0 -i 1700 -a 0 -x {10.0 9.0 845 ------- null} + -t 0.988656 -s 7 -d 0 -p ack -e 40 -c 0 -i 1700 -a 0 -x {10.0 9.0 845 ------- null} h -t 0.988656 -s 7 -d 8 -p ack -e 40 -c 0 -i 1700 -a 0 -x {10.0 9.0 845 ------- null} r -t 0.988736 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1699 -a 0 -x {9.0 10.0 854 ------- null} + -t 0.988736 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1699 -a 0 -x {9.0 10.0 854 ------- null} h -t 0.988736 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1699 -a 0 -x {9.0 10.0 854 ------- null} r -t 0.9888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1685 -a 0 -x {9.0 10.0 847 ------- null} + -t 0.9888 -s 10 -d 7 -p ack -e 40 -c 0 -i 1704 -a 0 -x {10.0 9.0 847 ------- null} - -t 0.9888 -s 10 -d 7 -p ack -e 40 -c 0 -i 1704 -a 0 -x {10.0 9.0 847 ------- null} h -t 0.9888 -s 10 -d 7 -p ack -e 40 -c 0 -i 1704 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.989376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1691 -a 0 -x {9.0 10.0 850 ------- null} - -t 0.989376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1691 -a 0 -x {9.0 10.0 850 ------- null} h -t 0.989376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1691 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.989424 -s 0 -d 9 -p ack -e 40 -c 0 -i 1694 -a 0 -x {10.0 9.0 842 ------- null} + -t 0.989424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1705 -a 0 -x {9.0 10.0 857 ------- null} - -t 0.989424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1705 -a 0 -x {9.0 10.0 857 ------- null} h -t 0.989424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1705 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.98944 -s 0 -d 9 -p ack -e 40 -c 0 -i 1698 -a 0 -x {10.0 9.0 844 ------- null} - -t 0.98944 -s 0 -d 9 -p ack -e 40 -c 0 -i 1698 -a 0 -x {10.0 9.0 844 ------- null} h -t 0.98944 -s 0 -d 9 -p ack -e 40 -c 0 -i 1698 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.989744 -s 10 -d 7 -p ack -e 40 -c 0 -i 1702 -a 0 -x {10.0 9.0 846 ------- null} + -t 0.989744 -s 7 -d 0 -p ack -e 40 -c 0 -i 1702 -a 0 -x {10.0 9.0 846 ------- null} h -t 0.989744 -s 7 -d 8 -p ack -e 40 -c 0 -i 1702 -a 0 -x {10.0 9.0 846 ------- null} r -t 0.989888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1687 -a 0 -x {9.0 10.0 848 ------- null} + -t 0.989888 -s 10 -d 7 -p ack -e 40 -c 0 -i 1706 -a 0 -x {10.0 9.0 848 ------- null} - -t 0.989888 -s 10 -d 7 -p ack -e 40 -c 0 -i 1706 -a 0 -x {10.0 9.0 848 ------- null} h -t 0.989888 -s 10 -d 7 -p ack -e 40 -c 0 -i 1706 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.989904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1701 -a 0 -x {9.0 10.0 855 ------- null} + -t 0.989904 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1701 -a 0 -x {9.0 10.0 855 ------- null} h -t 0.989904 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1701 -a 0 -x {9.0 10.0 855 ------- null} + -t 0.990464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1693 -a 0 -x {9.0 10.0 851 ------- null} - -t 0.990464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1693 -a 0 -x {9.0 10.0 851 ------- null} h -t 0.990464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1693 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.990496 -s 0 -d 9 -p ack -e 40 -c 0 -i 1696 -a 0 -x {10.0 9.0 843 ------- null} + -t 0.990496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1707 -a 0 -x {9.0 10.0 858 ------- null} - -t 0.990496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1707 -a 0 -x {9.0 10.0 858 ------- null} h -t 0.990496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1707 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.990608 -s 0 -d 9 -p ack -e 40 -c 0 -i 1700 -a 0 -x {10.0 9.0 845 ------- null} - -t 0.990608 -s 0 -d 9 -p ack -e 40 -c 0 -i 1700 -a 0 -x {10.0 9.0 845 ------- null} h -t 0.990608 -s 0 -d 9 -p ack -e 40 -c 0 -i 1700 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.990832 -s 10 -d 7 -p ack -e 40 -c 0 -i 1704 -a 0 -x {10.0 9.0 847 ------- null} + -t 0.990832 -s 7 -d 0 -p ack -e 40 -c 0 -i 1704 -a 0 -x {10.0 9.0 847 ------- null} h -t 0.990832 -s 7 -d 8 -p ack -e 40 -c 0 -i 1704 -a 0 -x {10.0 9.0 847 ------- null} r -t 0.990928 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1703 -a 0 -x {9.0 10.0 856 ------- null} + -t 0.990928 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1703 -a 0 -x {9.0 10.0 856 ------- null} h -t 0.990928 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1703 -a 0 -x {9.0 10.0 856 ------- null} r -t 0.991088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1689 -a 0 -x {9.0 10.0 849 ------- null} + -t 0.991088 -s 10 -d 7 -p ack -e 40 -c 0 -i 1708 -a 0 -x {10.0 9.0 849 ------- null} - -t 0.991088 -s 10 -d 7 -p ack -e 40 -c 0 -i 1708 -a 0 -x {10.0 9.0 849 ------- null} h -t 0.991088 -s 10 -d 7 -p ack -e 40 -c 0 -i 1708 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.991472 -s 0 -d 9 -p ack -e 40 -c 0 -i 1698 -a 0 -x {10.0 9.0 844 ------- null} + -t 0.991472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1709 -a 0 -x {9.0 10.0 859 ------- null} - -t 0.991472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1709 -a 0 -x {9.0 10.0 859 ------- null} h -t 0.991472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1709 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.991552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1695 -a 0 -x {9.0 10.0 852 ------- null} - -t 0.991552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1695 -a 0 -x {9.0 10.0 852 ------- null} h -t 0.991552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1695 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.991856 -s 0 -d 9 -p ack -e 40 -c 0 -i 1702 -a 0 -x {10.0 9.0 846 ------- null} - -t 0.991856 -s 0 -d 9 -p ack -e 40 -c 0 -i 1702 -a 0 -x {10.0 9.0 846 ------- null} h -t 0.991856 -s 0 -d 9 -p ack -e 40 -c 0 -i 1702 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.99192 -s 10 -d 7 -p ack -e 40 -c 0 -i 1706 -a 0 -x {10.0 9.0 848 ------- null} + -t 0.99192 -s 7 -d 0 -p ack -e 40 -c 0 -i 1706 -a 0 -x {10.0 9.0 848 ------- null} h -t 0.99192 -s 7 -d 8 -p ack -e 40 -c 0 -i 1706 -a 0 -x {10.0 9.0 848 ------- null} r -t 0.992176 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1691 -a 0 -x {9.0 10.0 850 ------- null} + -t 0.992176 -s 10 -d 7 -p ack -e 40 -c 0 -i 1710 -a 0 -x {10.0 9.0 850 ------- null} - -t 0.992176 -s 10 -d 7 -p ack -e 40 -c 0 -i 1710 -a 0 -x {10.0 9.0 850 ------- null} h -t 0.992176 -s 10 -d 7 -p ack -e 40 -c 0 -i 1710 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.992224 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1705 -a 0 -x {9.0 10.0 857 ------- null} + -t 0.992224 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1705 -a 0 -x {9.0 10.0 857 ------- null} h -t 0.992224 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1705 -a 0 -x {9.0 10.0 857 ------- null} r -t 0.99264 -s 0 -d 9 -p ack -e 40 -c 0 -i 1700 -a 0 -x {10.0 9.0 845 ------- null} + -t 0.99264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1711 -a 0 -x {9.0 10.0 860 ------- null} - -t 0.99264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1711 -a 0 -x {9.0 10.0 860 ------- null} h -t 0.99264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1711 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.992912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1697 -a 0 -x {9.0 10.0 853 ------- null} - -t 0.992912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1697 -a 0 -x {9.0 10.0 853 ------- null} h -t 0.992912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1697 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.99312 -s 10 -d 7 -p ack -e 40 -c 0 -i 1708 -a 0 -x {10.0 9.0 849 ------- null} + -t 0.99312 -s 7 -d 0 -p ack -e 40 -c 0 -i 1708 -a 0 -x {10.0 9.0 849 ------- null} h -t 0.99312 -s 7 -d 8 -p ack -e 40 -c 0 -i 1708 -a 0 -x {10.0 9.0 849 ------- null} + -t 0.99312 -s 0 -d 9 -p ack -e 40 -c 0 -i 1704 -a 0 -x {10.0 9.0 847 ------- null} - -t 0.99312 -s 0 -d 9 -p ack -e 40 -c 0 -i 1704 -a 0 -x {10.0 9.0 847 ------- null} h -t 0.99312 -s 0 -d 9 -p ack -e 40 -c 0 -i 1704 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.993264 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1693 -a 0 -x {9.0 10.0 851 ------- null} + -t 0.993264 -s 10 -d 7 -p ack -e 40 -c 0 -i 1712 -a 0 -x {10.0 9.0 851 ------- null} - -t 0.993264 -s 10 -d 7 -p ack -e 40 -c 0 -i 1712 -a 0 -x {10.0 9.0 851 ------- null} h -t 0.993264 -s 10 -d 7 -p ack -e 40 -c 0 -i 1712 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.993296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1707 -a 0 -x {9.0 10.0 858 ------- null} + -t 0.993296 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1707 -a 0 -x {9.0 10.0 858 ------- null} h -t 0.993296 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1707 -a 0 -x {9.0 10.0 858 ------- null} r -t 0.993888 -s 0 -d 9 -p ack -e 40 -c 0 -i 1702 -a 0 -x {10.0 9.0 846 ------- null} + -t 0.993888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1713 -a 0 -x {9.0 10.0 861 ------- null} - -t 0.993888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1713 -a 0 -x {9.0 10.0 861 ------- null} h -t 0.993888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1713 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.994 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1699 -a 0 -x {9.0 10.0 854 ------- null} - -t 0.994 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1699 -a 0 -x {9.0 10.0 854 ------- null} h -t 0.994 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1699 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.994208 -s 10 -d 7 -p ack -e 40 -c 0 -i 1710 -a 0 -x {10.0 9.0 850 ------- null} + -t 0.994208 -s 7 -d 0 -p ack -e 40 -c 0 -i 1710 -a 0 -x {10.0 9.0 850 ------- null} h -t 0.994208 -s 7 -d 8 -p ack -e 40 -c 0 -i 1710 -a 0 -x {10.0 9.0 850 ------- null} r -t 0.994272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1709 -a 0 -x {9.0 10.0 859 ------- null} + -t 0.994272 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1709 -a 0 -x {9.0 10.0 859 ------- null} h -t 0.994272 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1709 -a 0 -x {9.0 10.0 859 ------- null} + -t 0.994272 -s 0 -d 9 -p ack -e 40 -c 0 -i 1706 -a 0 -x {10.0 9.0 848 ------- null} - -t 0.994272 -s 0 -d 9 -p ack -e 40 -c 0 -i 1706 -a 0 -x {10.0 9.0 848 ------- null} h -t 0.994272 -s 0 -d 9 -p ack -e 40 -c 0 -i 1706 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.994352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1695 -a 0 -x {9.0 10.0 852 ------- null} + -t 0.994352 -s 10 -d 7 -p ack -e 40 -c 0 -i 1714 -a 0 -x {10.0 9.0 852 ------- null} - -t 0.994352 -s 10 -d 7 -p ack -e 40 -c 0 -i 1714 -a 0 -x {10.0 9.0 852 ------- null} h -t 0.994352 -s 10 -d 7 -p ack -e 40 -c 0 -i 1714 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.995152 -s 0 -d 9 -p ack -e 40 -c 0 -i 1704 -a 0 -x {10.0 9.0 847 ------- null} + -t 0.995152 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1715 -a 0 -x {9.0 10.0 862 ------- null} - -t 0.995152 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1715 -a 0 -x {9.0 10.0 862 ------- null} h -t 0.995152 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1715 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.995232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1701 -a 0 -x {9.0 10.0 855 ------- null} - -t 0.995232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1701 -a 0 -x {9.0 10.0 855 ------- null} h -t 0.995232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1701 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.995296 -s 10 -d 7 -p ack -e 40 -c 0 -i 1712 -a 0 -x {10.0 9.0 851 ------- null} + -t 0.995296 -s 7 -d 0 -p ack -e 40 -c 0 -i 1712 -a 0 -x {10.0 9.0 851 ------- null} h -t 0.995296 -s 7 -d 8 -p ack -e 40 -c 0 -i 1712 -a 0 -x {10.0 9.0 851 ------- null} r -t 0.99544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1711 -a 0 -x {9.0 10.0 860 ------- null} + -t 0.99544 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1711 -a 0 -x {9.0 10.0 860 ------- null} h -t 0.99544 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1711 -a 0 -x {9.0 10.0 860 ------- null} + -t 0.99552 -s 0 -d 9 -p ack -e 40 -c 0 -i 1708 -a 0 -x {10.0 9.0 849 ------- null} - -t 0.99552 -s 0 -d 9 -p ack -e 40 -c 0 -i 1708 -a 0 -x {10.0 9.0 849 ------- null} h -t 0.99552 -s 0 -d 9 -p ack -e 40 -c 0 -i 1708 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.995712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1697 -a 0 -x {9.0 10.0 853 ------- null} + -t 0.995712 -s 10 -d 7 -p ack -e 40 -c 0 -i 1716 -a 0 -x {10.0 9.0 853 ------- null} - -t 0.995712 -s 10 -d 7 -p ack -e 40 -c 0 -i 1716 -a 0 -x {10.0 9.0 853 ------- null} h -t 0.995712 -s 10 -d 7 -p ack -e 40 -c 0 -i 1716 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.996304 -s 0 -d 9 -p ack -e 40 -c 0 -i 1706 -a 0 -x {10.0 9.0 848 ------- null} + -t 0.996304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1717 -a 0 -x {9.0 10.0 863 ------- null} - -t 0.996304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1717 -a 0 -x {9.0 10.0 863 ------- null} h -t 0.996304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1717 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.996384 -s 10 -d 7 -p ack -e 40 -c 0 -i 1714 -a 0 -x {10.0 9.0 852 ------- null} + -t 0.996384 -s 7 -d 0 -p ack -e 40 -c 0 -i 1714 -a 0 -x {10.0 9.0 852 ------- null} h -t 0.996384 -s 7 -d 8 -p ack -e 40 -c 0 -i 1714 -a 0 -x {10.0 9.0 852 ------- null} + -t 0.99648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1703 -a 0 -x {9.0 10.0 856 ------- null} - -t 0.99648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1703 -a 0 -x {9.0 10.0 856 ------- null} h -t 0.99648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1703 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.996688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1713 -a 0 -x {9.0 10.0 861 ------- null} + -t 0.996688 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1713 -a 0 -x {9.0 10.0 861 ------- null} h -t 0.996688 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1713 -a 0 -x {9.0 10.0 861 ------- null} + -t 0.996784 -s 0 -d 9 -p ack -e 40 -c 0 -i 1710 -a 0 -x {10.0 9.0 850 ------- null} - -t 0.996784 -s 0 -d 9 -p ack -e 40 -c 0 -i 1710 -a 0 -x {10.0 9.0 850 ------- null} h -t 0.996784 -s 0 -d 9 -p ack -e 40 -c 0 -i 1710 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.9968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1699 -a 0 -x {9.0 10.0 854 ------- null} + -t 0.9968 -s 10 -d 7 -p ack -e 40 -c 0 -i 1718 -a 0 -x {10.0 9.0 854 ------- null} - -t 0.9968 -s 10 -d 7 -p ack -e 40 -c 0 -i 1718 -a 0 -x {10.0 9.0 854 ------- null} h -t 0.9968 -s 10 -d 7 -p ack -e 40 -c 0 -i 1718 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.997552 -s 0 -d 9 -p ack -e 40 -c 0 -i 1708 -a 0 -x {10.0 9.0 849 ------- null} + -t 0.997552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1719 -a 0 -x {9.0 10.0 864 ------- null} - -t 0.997552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1719 -a 0 -x {9.0 10.0 864 ------- null} h -t 0.997552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1719 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.997744 -s 10 -d 7 -p ack -e 40 -c 0 -i 1716 -a 0 -x {10.0 9.0 853 ------- null} + -t 0.997744 -s 7 -d 0 -p ack -e 40 -c 0 -i 1716 -a 0 -x {10.0 9.0 853 ------- null} h -t 0.997744 -s 7 -d 8 -p ack -e 40 -c 0 -i 1716 -a 0 -x {10.0 9.0 853 ------- null} + -t 0.997776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1705 -a 0 -x {9.0 10.0 857 ------- null} - -t 0.997776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1705 -a 0 -x {9.0 10.0 857 ------- null} h -t 0.997776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1705 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.997952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1715 -a 0 -x {9.0 10.0 862 ------- null} + -t 0.997952 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1715 -a 0 -x {9.0 10.0 862 ------- null} h -t 0.997952 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1715 -a 0 -x {9.0 10.0 862 ------- null} + -t 0.997968 -s 0 -d 9 -p ack -e 40 -c 0 -i 1712 -a 0 -x {10.0 9.0 851 ------- null} - -t 0.997968 -s 0 -d 9 -p ack -e 40 -c 0 -i 1712 -a 0 -x {10.0 9.0 851 ------- null} h -t 0.997968 -s 0 -d 9 -p ack -e 40 -c 0 -i 1712 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.998032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1701 -a 0 -x {9.0 10.0 855 ------- null} + -t 0.998032 -s 10 -d 7 -p ack -e 40 -c 0 -i 1720 -a 0 -x {10.0 9.0 855 ------- null} - -t 0.998032 -s 10 -d 7 -p ack -e 40 -c 0 -i 1720 -a 0 -x {10.0 9.0 855 ------- null} h -t 0.998032 -s 10 -d 7 -p ack -e 40 -c 0 -i 1720 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.998816 -s 0 -d 9 -p ack -e 40 -c 0 -i 1710 -a 0 -x {10.0 9.0 850 ------- null} + -t 0.998816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1721 -a 0 -x {9.0 10.0 865 ------- null} - -t 0.998816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1721 -a 0 -x {9.0 10.0 865 ------- null} h -t 0.998816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1721 -a 0 -x {9.0 10.0 -1 ------- null} r -t 0.998832 -s 10 -d 7 -p ack -e 40 -c 0 -i 1718 -a 0 -x {10.0 9.0 854 ------- null} + -t 0.998832 -s 7 -d 0 -p ack -e 40 -c 0 -i 1718 -a 0 -x {10.0 9.0 854 ------- null} h -t 0.998832 -s 7 -d 8 -p ack -e 40 -c 0 -i 1718 -a 0 -x {10.0 9.0 854 ------- null} + -t 0.998864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1707 -a 0 -x {9.0 10.0 858 ------- null} - -t 0.998864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1707 -a 0 -x {9.0 10.0 858 ------- null} h -t 0.998864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1707 -a 0 -x {9.0 10.0 -1 ------- null} + -t 0.999088 -s 0 -d 9 -p ack -e 40 -c 0 -i 1714 -a 0 -x {10.0 9.0 852 ------- null} - -t 0.999088 -s 0 -d 9 -p ack -e 40 -c 0 -i 1714 -a 0 -x {10.0 9.0 852 ------- null} h -t 0.999088 -s 0 -d 9 -p ack -e 40 -c 0 -i 1714 -a 0 -x {10.0 9.0 -1 ------- null} r -t 0.999104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1717 -a 0 -x {9.0 10.0 863 ------- null} + -t 0.999104 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1717 -a 0 -x {9.0 10.0 863 ------- null} h -t 0.999104 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1717 -a 0 -x {9.0 10.0 863 ------- null} r -t 0.99928 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1703 -a 0 -x {9.0 10.0 856 ------- null} + -t 0.99928 -s 10 -d 7 -p ack -e 40 -c 0 -i 1722 -a 0 -x {10.0 9.0 856 ------- null} - -t 0.99928 -s 10 -d 7 -p ack -e 40 -c 0 -i 1722 -a 0 -x {10.0 9.0 856 ------- null} h -t 0.99928 -s 10 -d 7 -p ack -e 40 -c 0 -i 1722 -a 0 -x {10.0 9.0 -1 ------- null} + -t 0.999952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1709 -a 0 -x {9.0 10.0 859 ------- null} - -t 0.999952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1709 -a 0 -x {9.0 10.0 859 ------- null} h -t 0.999952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1709 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1 -s 0 -d 9 -p ack -e 40 -c 0 -i 1712 -a 0 -x {10.0 9.0 851 ------- null} + -t 1 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1723 -a 0 -x {9.0 10.0 866 ------- null} - -t 1 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1723 -a 0 -x {9.0 10.0 866 ------- null} h -t 1 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1723 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.00005 -s 0 -d 9 -p ack -e 40 -c 0 -i 1716 -a 0 -x {10.0 9.0 853 ------- null} - -t 1.00005 -s 0 -d 9 -p ack -e 40 -c 0 -i 1716 -a 0 -x {10.0 9.0 853 ------- null} h -t 1.00005 -s 0 -d 9 -p ack -e 40 -c 0 -i 1716 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.00006 -s 10 -d 7 -p ack -e 40 -c 0 -i 1720 -a 0 -x {10.0 9.0 855 ------- null} + -t 1.00006 -s 7 -d 0 -p ack -e 40 -c 0 -i 1720 -a 0 -x {10.0 9.0 855 ------- null} h -t 1.00006 -s 7 -d 8 -p ack -e 40 -c 0 -i 1720 -a 0 -x {10.0 9.0 855 ------- null} r -t 1.00035 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1719 -a 0 -x {9.0 10.0 864 ------- null} + -t 1.00035 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1719 -a 0 -x {9.0 10.0 864 ------- null} h -t 1.00035 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1719 -a 0 -x {9.0 10.0 864 ------- null} r -t 1.00058 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1705 -a 0 -x {9.0 10.0 857 ------- null} + -t 1.00058 -s 10 -d 7 -p ack -e 40 -c 0 -i 1724 -a 0 -x {10.0 9.0 857 ------- null} - -t 1.00058 -s 10 -d 7 -p ack -e 40 -c 0 -i 1724 -a 0 -x {10.0 9.0 857 ------- null} h -t 1.00058 -s 10 -d 7 -p ack -e 40 -c 0 -i 1724 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.00104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1711 -a 0 -x {9.0 10.0 860 ------- null} - -t 1.00104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1711 -a 0 -x {9.0 10.0 860 ------- null} h -t 1.00104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1711 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.00112 -s 0 -d 9 -p ack -e 40 -c 0 -i 1714 -a 0 -x {10.0 9.0 852 ------- null} + -t 1.00112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1725 -a 0 -x {9.0 10.0 867 ------- null} - -t 1.00112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1725 -a 0 -x {9.0 10.0 867 ------- null} h -t 1.00112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1725 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.00123 -s 0 -d 9 -p ack -e 40 -c 0 -i 1718 -a 0 -x {10.0 9.0 854 ------- null} - -t 1.00123 -s 0 -d 9 -p ack -e 40 -c 0 -i 1718 -a 0 -x {10.0 9.0 854 ------- null} h -t 1.00123 -s 0 -d 9 -p ack -e 40 -c 0 -i 1718 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.00131 -s 10 -d 7 -p ack -e 40 -c 0 -i 1722 -a 0 -x {10.0 9.0 856 ------- null} + -t 1.00131 -s 7 -d 0 -p ack -e 40 -c 0 -i 1722 -a 0 -x {10.0 9.0 856 ------- null} h -t 1.00131 -s 7 -d 8 -p ack -e 40 -c 0 -i 1722 -a 0 -x {10.0 9.0 856 ------- null} r -t 1.00162 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1721 -a 0 -x {9.0 10.0 865 ------- null} + -t 1.00162 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1721 -a 0 -x {9.0 10.0 865 ------- null} h -t 1.00162 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1721 -a 0 -x {9.0 10.0 865 ------- null} r -t 1.00166 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1707 -a 0 -x {9.0 10.0 858 ------- null} + -t 1.00166 -s 10 -d 7 -p ack -e 40 -c 0 -i 1726 -a 0 -x {10.0 9.0 858 ------- null} - -t 1.00166 -s 10 -d 7 -p ack -e 40 -c 0 -i 1726 -a 0 -x {10.0 9.0 858 ------- null} h -t 1.00166 -s 10 -d 7 -p ack -e 40 -c 0 -i 1726 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.00208 -s 0 -d 9 -p ack -e 40 -c 0 -i 1716 -a 0 -x {10.0 9.0 853 ------- null} + -t 1.00208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1727 -a 0 -x {9.0 10.0 868 ------- null} - -t 1.00208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1727 -a 0 -x {9.0 10.0 868 ------- null} h -t 1.00208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1727 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.00213 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1713 -a 0 -x {9.0 10.0 861 ------- null} - -t 1.00213 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1713 -a 0 -x {9.0 10.0 861 ------- null} h -t 1.00213 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1713 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.0023 -s 0 -d 9 -p ack -e 40 -c 0 -i 1720 -a 0 -x {10.0 9.0 855 ------- null} - -t 1.0023 -s 0 -d 9 -p ack -e 40 -c 0 -i 1720 -a 0 -x {10.0 9.0 855 ------- null} h -t 1.0023 -s 0 -d 9 -p ack -e 40 -c 0 -i 1720 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.00261 -s 10 -d 7 -p ack -e 40 -c 0 -i 1724 -a 0 -x {10.0 9.0 857 ------- null} + -t 1.00261 -s 7 -d 0 -p ack -e 40 -c 0 -i 1724 -a 0 -x {10.0 9.0 857 ------- null} h -t 1.00261 -s 7 -d 8 -p ack -e 40 -c 0 -i 1724 -a 0 -x {10.0 9.0 857 ------- null} r -t 1.00275 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1709 -a 0 -x {9.0 10.0 859 ------- null} + -t 1.00275 -s 10 -d 7 -p ack -e 40 -c 0 -i 1728 -a 0 -x {10.0 9.0 859 ------- null} - -t 1.00275 -s 10 -d 7 -p ack -e 40 -c 0 -i 1728 -a 0 -x {10.0 9.0 859 ------- null} h -t 1.00275 -s 10 -d 7 -p ack -e 40 -c 0 -i 1728 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.0028 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1723 -a 0 -x {9.0 10.0 866 ------- null} + -t 1.0028 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1723 -a 0 -x {9.0 10.0 866 ------- null} h -t 1.0028 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1723 -a 0 -x {9.0 10.0 866 ------- null} + -t 1.00322 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1715 -a 0 -x {9.0 10.0 862 ------- null} - -t 1.00322 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1715 -a 0 -x {9.0 10.0 862 ------- null} h -t 1.00322 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1715 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.00326 -s 0 -d 9 -p ack -e 40 -c 0 -i 1718 -a 0 -x {10.0 9.0 854 ------- null} + -t 1.00326 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1729 -a 0 -x {9.0 10.0 869 ------- null} - -t 1.00326 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1729 -a 0 -x {9.0 10.0 869 ------- null} h -t 1.00326 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1729 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.00342 -s 0 -d 9 -p ack -e 40 -c 0 -i 1722 -a 0 -x {10.0 9.0 856 ------- null} - -t 1.00342 -s 0 -d 9 -p ack -e 40 -c 0 -i 1722 -a 0 -x {10.0 9.0 856 ------- null} h -t 1.00342 -s 0 -d 9 -p ack -e 40 -c 0 -i 1722 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.0037 -s 10 -d 7 -p ack -e 40 -c 0 -i 1726 -a 0 -x {10.0 9.0 858 ------- null} + -t 1.0037 -s 7 -d 0 -p ack -e 40 -c 0 -i 1726 -a 0 -x {10.0 9.0 858 ------- null} h -t 1.0037 -s 7 -d 8 -p ack -e 40 -c 0 -i 1726 -a 0 -x {10.0 9.0 858 ------- null} r -t 1.00384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1711 -a 0 -x {9.0 10.0 860 ------- null} + -t 1.00384 -s 10 -d 7 -p ack -e 40 -c 0 -i 1730 -a 0 -x {10.0 9.0 860 ------- null} - -t 1.00384 -s 10 -d 7 -p ack -e 40 -c 0 -i 1730 -a 0 -x {10.0 9.0 860 ------- null} h -t 1.00384 -s 10 -d 7 -p ack -e 40 -c 0 -i 1730 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.00392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1725 -a 0 -x {9.0 10.0 867 ------- null} + -t 1.00392 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1725 -a 0 -x {9.0 10.0 867 ------- null} h -t 1.00392 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1725 -a 0 -x {9.0 10.0 867 ------- null} + -t 1.0043 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1717 -a 0 -x {9.0 10.0 863 ------- null} - -t 1.0043 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1717 -a 0 -x {9.0 10.0 863 ------- null} h -t 1.0043 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1717 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.00434 -s 0 -d 9 -p ack -e 40 -c 0 -i 1720 -a 0 -x {10.0 9.0 855 ------- null} + -t 1.00434 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1731 -a 0 -x {9.0 10.0 870 ------- null} - -t 1.00434 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1731 -a 0 -x {9.0 10.0 870 ------- null} h -t 1.00434 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1731 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.00442 -s 0 -d 9 -p ack -e 40 -c 0 -i 1724 -a 0 -x {10.0 9.0 857 ------- null} - -t 1.00442 -s 0 -d 9 -p ack -e 40 -c 0 -i 1724 -a 0 -x {10.0 9.0 857 ------- null} h -t 1.00442 -s 0 -d 9 -p ack -e 40 -c 0 -i 1724 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.00478 -s 10 -d 7 -p ack -e 40 -c 0 -i 1728 -a 0 -x {10.0 9.0 859 ------- null} + -t 1.00478 -s 7 -d 0 -p ack -e 40 -c 0 -i 1728 -a 0 -x {10.0 9.0 859 ------- null} h -t 1.00478 -s 7 -d 8 -p ack -e 40 -c 0 -i 1728 -a 0 -x {10.0 9.0 859 ------- null} r -t 1.00488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1727 -a 0 -x {9.0 10.0 868 ------- null} + -t 1.00488 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1727 -a 0 -x {9.0 10.0 868 ------- null} h -t 1.00488 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1727 -a 0 -x {9.0 10.0 868 ------- null} r -t 1.00493 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1713 -a 0 -x {9.0 10.0 861 ------- null} + -t 1.00493 -s 10 -d 7 -p ack -e 40 -c 0 -i 1732 -a 0 -x {10.0 9.0 861 ------- null} - -t 1.00493 -s 10 -d 7 -p ack -e 40 -c 0 -i 1732 -a 0 -x {10.0 9.0 861 ------- null} h -t 1.00493 -s 10 -d 7 -p ack -e 40 -c 0 -i 1732 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.00539 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1719 -a 0 -x {9.0 10.0 864 ------- null} - -t 1.00539 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1719 -a 0 -x {9.0 10.0 864 ------- null} h -t 1.00539 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1719 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.00546 -s 0 -d 9 -p ack -e 40 -c 0 -i 1722 -a 0 -x {10.0 9.0 856 ------- null} + -t 1.00546 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1733 -a 0 -x {9.0 10.0 871 ------- null} - -t 1.00546 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1733 -a 0 -x {9.0 10.0 871 ------- null} h -t 1.00546 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1733 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.00558 -s 0 -d 9 -p ack -e 40 -c 0 -i 1726 -a 0 -x {10.0 9.0 858 ------- null} - -t 1.00558 -s 0 -d 9 -p ack -e 40 -c 0 -i 1726 -a 0 -x {10.0 9.0 858 ------- null} h -t 1.00558 -s 0 -d 9 -p ack -e 40 -c 0 -i 1726 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.00587 -s 10 -d 7 -p ack -e 40 -c 0 -i 1730 -a 0 -x {10.0 9.0 860 ------- null} + -t 1.00587 -s 7 -d 0 -p ack -e 40 -c 0 -i 1730 -a 0 -x {10.0 9.0 860 ------- null} h -t 1.00587 -s 7 -d 8 -p ack -e 40 -c 0 -i 1730 -a 0 -x {10.0 9.0 860 ------- null} r -t 1.00602 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1715 -a 0 -x {9.0 10.0 862 ------- null} + -t 1.00602 -s 10 -d 7 -p ack -e 40 -c 0 -i 1734 -a 0 -x {10.0 9.0 862 ------- null} - -t 1.00602 -s 10 -d 7 -p ack -e 40 -c 0 -i 1734 -a 0 -x {10.0 9.0 862 ------- null} h -t 1.00602 -s 10 -d 7 -p ack -e 40 -c 0 -i 1734 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.00606 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1729 -a 0 -x {9.0 10.0 869 ------- null} + -t 1.00606 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1729 -a 0 -x {9.0 10.0 869 ------- null} h -t 1.00606 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1729 -a 0 -x {9.0 10.0 869 ------- null} r -t 1.00645 -s 0 -d 9 -p ack -e 40 -c 0 -i 1724 -a 0 -x {10.0 9.0 857 ------- null} + -t 1.00645 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1735 -a 0 -x {9.0 10.0 872 ------- null} - -t 1.00645 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1735 -a 0 -x {9.0 10.0 872 ------- null} h -t 1.00645 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1735 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.00648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1721 -a 0 -x {9.0 10.0 865 ------- null} - -t 1.00648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1721 -a 0 -x {9.0 10.0 865 ------- null} h -t 1.00648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1721 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.00667 -s 0 -d 9 -p ack -e 40 -c 0 -i 1728 -a 0 -x {10.0 9.0 859 ------- null} - -t 1.00667 -s 0 -d 9 -p ack -e 40 -c 0 -i 1728 -a 0 -x {10.0 9.0 859 ------- null} h -t 1.00667 -s 0 -d 9 -p ack -e 40 -c 0 -i 1728 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.00696 -s 10 -d 7 -p ack -e 40 -c 0 -i 1732 -a 0 -x {10.0 9.0 861 ------- null} + -t 1.00696 -s 7 -d 0 -p ack -e 40 -c 0 -i 1732 -a 0 -x {10.0 9.0 861 ------- null} h -t 1.00696 -s 7 -d 8 -p ack -e 40 -c 0 -i 1732 -a 0 -x {10.0 9.0 861 ------- null} r -t 1.0071 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1717 -a 0 -x {9.0 10.0 863 ------- null} + -t 1.0071 -s 10 -d 7 -p ack -e 40 -c 0 -i 1736 -a 0 -x {10.0 9.0 863 ------- null} - -t 1.0071 -s 10 -d 7 -p ack -e 40 -c 0 -i 1736 -a 0 -x {10.0 9.0 863 ------- null} h -t 1.0071 -s 10 -d 7 -p ack -e 40 -c 0 -i 1736 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.00714 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1731 -a 0 -x {9.0 10.0 870 ------- null} + -t 1.00714 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1731 -a 0 -x {9.0 10.0 870 ------- null} h -t 1.00714 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1731 -a 0 -x {9.0 10.0 870 ------- null} + -t 1.00757 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1723 -a 0 -x {9.0 10.0 866 ------- null} - -t 1.00757 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1723 -a 0 -x {9.0 10.0 866 ------- null} h -t 1.00757 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1723 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.00762 -s 0 -d 9 -p ack -e 40 -c 0 -i 1726 -a 0 -x {10.0 9.0 858 ------- null} + -t 1.00762 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1737 -a 0 -x {9.0 10.0 873 ------- null} - -t 1.00762 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1737 -a 0 -x {9.0 10.0 873 ------- null} h -t 1.00762 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1737 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.00787 -s 0 -d 9 -p ack -e 40 -c 0 -i 1730 -a 0 -x {10.0 9.0 860 ------- null} - -t 1.00787 -s 0 -d 9 -p ack -e 40 -c 0 -i 1730 -a 0 -x {10.0 9.0 860 ------- null} h -t 1.00787 -s 0 -d 9 -p ack -e 40 -c 0 -i 1730 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.00805 -s 10 -d 7 -p ack -e 40 -c 0 -i 1734 -a 0 -x {10.0 9.0 862 ------- null} + -t 1.00805 -s 7 -d 0 -p ack -e 40 -c 0 -i 1734 -a 0 -x {10.0 9.0 862 ------- null} h -t 1.00805 -s 7 -d 8 -p ack -e 40 -c 0 -i 1734 -a 0 -x {10.0 9.0 862 ------- null} r -t 1.00819 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1719 -a 0 -x {9.0 10.0 864 ------- null} + -t 1.00819 -s 10 -d 7 -p ack -e 40 -c 0 -i 1738 -a 0 -x {10.0 9.0 864 ------- null} - -t 1.00819 -s 10 -d 7 -p ack -e 40 -c 0 -i 1738 -a 0 -x {10.0 9.0 864 ------- null} h -t 1.00819 -s 10 -d 7 -p ack -e 40 -c 0 -i 1738 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.00826 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1733 -a 0 -x {9.0 10.0 871 ------- null} + -t 1.00826 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1733 -a 0 -x {9.0 10.0 871 ------- null} h -t 1.00826 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1733 -a 0 -x {9.0 10.0 871 ------- null} r -t 1.0087 -s 0 -d 9 -p ack -e 40 -c 0 -i 1728 -a 0 -x {10.0 9.0 859 ------- null} + -t 1.0087 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1739 -a 0 -x {9.0 10.0 874 ------- null} - -t 1.0087 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1739 -a 0 -x {9.0 10.0 874 ------- null} h -t 1.0087 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1739 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.00885 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1725 -a 0 -x {9.0 10.0 867 ------- null} - -t 1.00885 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1725 -a 0 -x {9.0 10.0 867 ------- null} h -t 1.00885 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1725 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.00893 -s 0 -d 9 -p ack -e 40 -c 0 -i 1732 -a 0 -x {10.0 9.0 861 ------- null} - -t 1.00893 -s 0 -d 9 -p ack -e 40 -c 0 -i 1732 -a 0 -x {10.0 9.0 861 ------- null} h -t 1.00893 -s 0 -d 9 -p ack -e 40 -c 0 -i 1732 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.00914 -s 10 -d 7 -p ack -e 40 -c 0 -i 1736 -a 0 -x {10.0 9.0 863 ------- null} + -t 1.00914 -s 7 -d 0 -p ack -e 40 -c 0 -i 1736 -a 0 -x {10.0 9.0 863 ------- null} h -t 1.00914 -s 7 -d 8 -p ack -e 40 -c 0 -i 1736 -a 0 -x {10.0 9.0 863 ------- null} r -t 1.00925 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1735 -a 0 -x {9.0 10.0 872 ------- null} + -t 1.00925 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1735 -a 0 -x {9.0 10.0 872 ------- null} h -t 1.00925 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1735 -a 0 -x {9.0 10.0 872 ------- null} r -t 1.00928 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1721 -a 0 -x {9.0 10.0 865 ------- null} + -t 1.00928 -s 10 -d 7 -p ack -e 40 -c 0 -i 1740 -a 0 -x {10.0 9.0 865 ------- null} - -t 1.00928 -s 10 -d 7 -p ack -e 40 -c 0 -i 1740 -a 0 -x {10.0 9.0 865 ------- null} h -t 1.00928 -s 10 -d 7 -p ack -e 40 -c 0 -i 1740 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.0099 -s 0 -d 9 -p ack -e 40 -c 0 -i 1730 -a 0 -x {10.0 9.0 860 ------- null} + -t 1.0099 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1741 -a 0 -x {9.0 10.0 875 ------- null} - -t 1.0099 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1741 -a 0 -x {9.0 10.0 875 ------- null} h -t 1.0099 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1741 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.00994 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1727 -a 0 -x {9.0 10.0 868 ------- null} - -t 1.00994 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1727 -a 0 -x {9.0 10.0 868 ------- null} h -t 1.00994 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1727 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.01022 -s 10 -d 7 -p ack -e 40 -c 0 -i 1738 -a 0 -x {10.0 9.0 864 ------- null} + -t 1.01022 -s 7 -d 0 -p ack -e 40 -c 0 -i 1738 -a 0 -x {10.0 9.0 864 ------- null} h -t 1.01022 -s 7 -d 8 -p ack -e 40 -c 0 -i 1738 -a 0 -x {10.0 9.0 864 ------- null} + -t 1.01022 -s 0 -d 9 -p ack -e 40 -c 0 -i 1734 -a 0 -x {10.0 9.0 862 ------- null} - -t 1.01022 -s 0 -d 9 -p ack -e 40 -c 0 -i 1734 -a 0 -x {10.0 9.0 862 ------- null} h -t 1.01022 -s 0 -d 9 -p ack -e 40 -c 0 -i 1734 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.01037 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1723 -a 0 -x {9.0 10.0 866 ------- null} + -t 1.01037 -s 10 -d 7 -p ack -e 40 -c 0 -i 1742 -a 0 -x {10.0 9.0 866 ------- null} - -t 1.01037 -s 10 -d 7 -p ack -e 40 -c 0 -i 1742 -a 0 -x {10.0 9.0 866 ------- null} h -t 1.01037 -s 10 -d 7 -p ack -e 40 -c 0 -i 1742 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.01042 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1737 -a 0 -x {9.0 10.0 873 ------- null} + -t 1.01042 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1737 -a 0 -x {9.0 10.0 873 ------- null} h -t 1.01042 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1737 -a 0 -x {9.0 10.0 873 ------- null} r -t 1.01096 -s 0 -d 9 -p ack -e 40 -c 0 -i 1732 -a 0 -x {10.0 9.0 861 ------- null} + -t 1.01096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1743 -a 0 -x {9.0 10.0 876 ------- null} - -t 1.01096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1743 -a 0 -x {9.0 10.0 876 ------- null} h -t 1.01096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1743 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.0112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1729 -a 0 -x {9.0 10.0 869 ------- null} - -t 1.0112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1729 -a 0 -x {9.0 10.0 869 ------- null} h -t 1.0112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1729 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.01131 -s 10 -d 7 -p ack -e 40 -c 0 -i 1740 -a 0 -x {10.0 9.0 865 ------- null} + -t 1.01131 -s 7 -d 0 -p ack -e 40 -c 0 -i 1740 -a 0 -x {10.0 9.0 865 ------- null} h -t 1.01131 -s 7 -d 8 -p ack -e 40 -c 0 -i 1740 -a 0 -x {10.0 9.0 865 ------- null} + -t 1.01133 -s 0 -d 9 -p ack -e 40 -c 0 -i 1736 -a 0 -x {10.0 9.0 863 ------- null} - -t 1.01133 -s 0 -d 9 -p ack -e 40 -c 0 -i 1736 -a 0 -x {10.0 9.0 863 ------- null} h -t 1.01133 -s 0 -d 9 -p ack -e 40 -c 0 -i 1736 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.0115 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1739 -a 0 -x {9.0 10.0 874 ------- null} + -t 1.0115 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1739 -a 0 -x {9.0 10.0 874 ------- null} h -t 1.0115 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1739 -a 0 -x {9.0 10.0 874 ------- null} r -t 1.01165 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1725 -a 0 -x {9.0 10.0 867 ------- null} + -t 1.01165 -s 10 -d 7 -p ack -e 40 -c 0 -i 1744 -a 0 -x {10.0 9.0 867 ------- null} - -t 1.01165 -s 10 -d 7 -p ack -e 40 -c 0 -i 1744 -a 0 -x {10.0 9.0 867 ------- null} h -t 1.01165 -s 10 -d 7 -p ack -e 40 -c 0 -i 1744 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.01226 -s 0 -d 9 -p ack -e 40 -c 0 -i 1734 -a 0 -x {10.0 9.0 862 ------- null} + -t 1.01226 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1745 -a 0 -x {9.0 10.0 877 ------- null} - -t 1.01226 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1745 -a 0 -x {9.0 10.0 877 ------- null} h -t 1.01226 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1745 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.01229 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1731 -a 0 -x {9.0 10.0 870 ------- null} - -t 1.01229 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1731 -a 0 -x {9.0 10.0 870 ------- null} h -t 1.01229 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1731 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.0124 -s 10 -d 7 -p ack -e 40 -c 0 -i 1742 -a 0 -x {10.0 9.0 866 ------- null} + -t 1.0124 -s 7 -d 0 -p ack -e 40 -c 0 -i 1742 -a 0 -x {10.0 9.0 866 ------- null} h -t 1.0124 -s 7 -d 8 -p ack -e 40 -c 0 -i 1742 -a 0 -x {10.0 9.0 866 ------- null} + -t 1.01251 -s 0 -d 9 -p ack -e 40 -c 0 -i 1738 -a 0 -x {10.0 9.0 864 ------- null} - -t 1.01251 -s 0 -d 9 -p ack -e 40 -c 0 -i 1738 -a 0 -x {10.0 9.0 864 ------- null} h -t 1.01251 -s 0 -d 9 -p ack -e 40 -c 0 -i 1738 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.0127 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1741 -a 0 -x {9.0 10.0 875 ------- null} + -t 1.0127 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1741 -a 0 -x {9.0 10.0 875 ------- null} h -t 1.0127 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1741 -a 0 -x {9.0 10.0 875 ------- null} r -t 1.01274 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1727 -a 0 -x {9.0 10.0 868 ------- null} + -t 1.01274 -s 10 -d 7 -p ack -e 40 -c 0 -i 1746 -a 0 -x {10.0 9.0 868 ------- null} - -t 1.01274 -s 10 -d 7 -p ack -e 40 -c 0 -i 1746 -a 0 -x {10.0 9.0 868 ------- null} h -t 1.01274 -s 10 -d 7 -p ack -e 40 -c 0 -i 1746 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.01336 -s 0 -d 9 -p ack -e 40 -c 0 -i 1736 -a 0 -x {10.0 9.0 863 ------- null} + -t 1.01336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1747 -a 0 -x {9.0 10.0 878 ------- null} - -t 1.01336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1747 -a 0 -x {9.0 10.0 878 ------- null} h -t 1.01336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1747 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.01338 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1733 -a 0 -x {9.0 10.0 871 ------- null} - -t 1.01338 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1733 -a 0 -x {9.0 10.0 871 ------- null} h -t 1.01338 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1733 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.01355 -s 0 -d 9 -p ack -e 40 -c 0 -i 1740 -a 0 -x {10.0 9.0 865 ------- null} - -t 1.01355 -s 0 -d 9 -p ack -e 40 -c 0 -i 1740 -a 0 -x {10.0 9.0 865 ------- null} h -t 1.01355 -s 0 -d 9 -p ack -e 40 -c 0 -i 1740 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.01368 -s 10 -d 7 -p ack -e 40 -c 0 -i 1744 -a 0 -x {10.0 9.0 867 ------- null} + -t 1.01368 -s 7 -d 0 -p ack -e 40 -c 0 -i 1744 -a 0 -x {10.0 9.0 867 ------- null} h -t 1.01368 -s 7 -d 8 -p ack -e 40 -c 0 -i 1744 -a 0 -x {10.0 9.0 867 ------- null} r -t 1.01376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1743 -a 0 -x {9.0 10.0 876 ------- null} + -t 1.01376 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1743 -a 0 -x {9.0 10.0 876 ------- null} h -t 1.01376 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1743 -a 0 -x {9.0 10.0 876 ------- null} r -t 1.014 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1729 -a 0 -x {9.0 10.0 869 ------- null} + -t 1.014 -s 10 -d 7 -p ack -e 40 -c 0 -i 1748 -a 0 -x {10.0 9.0 869 ------- null} - -t 1.014 -s 10 -d 7 -p ack -e 40 -c 0 -i 1748 -a 0 -x {10.0 9.0 869 ------- null} h -t 1.014 -s 10 -d 7 -p ack -e 40 -c 0 -i 1748 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.01446 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1735 -a 0 -x {9.0 10.0 872 ------- null} - -t 1.01446 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1735 -a 0 -x {9.0 10.0 872 ------- null} h -t 1.01446 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1735 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.01454 -s 0 -d 9 -p ack -e 40 -c 0 -i 1738 -a 0 -x {10.0 9.0 864 ------- null} + -t 1.01454 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1749 -a 0 -x {9.0 10.0 879 ------- null} - -t 1.01454 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1749 -a 0 -x {9.0 10.0 879 ------- null} h -t 1.01454 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1749 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.01459 -s 0 -d 9 -p ack -e 40 -c 0 -i 1742 -a 0 -x {10.0 9.0 866 ------- null} - -t 1.01459 -s 0 -d 9 -p ack -e 40 -c 0 -i 1742 -a 0 -x {10.0 9.0 866 ------- null} h -t 1.01459 -s 0 -d 9 -p ack -e 40 -c 0 -i 1742 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.01477 -s 10 -d 7 -p ack -e 40 -c 0 -i 1746 -a 0 -x {10.0 9.0 868 ------- null} + -t 1.01477 -s 7 -d 0 -p ack -e 40 -c 0 -i 1746 -a 0 -x {10.0 9.0 868 ------- null} h -t 1.01477 -s 7 -d 8 -p ack -e 40 -c 0 -i 1746 -a 0 -x {10.0 9.0 868 ------- null} r -t 1.01506 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1745 -a 0 -x {9.0 10.0 877 ------- null} + -t 1.01506 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1745 -a 0 -x {9.0 10.0 877 ------- null} h -t 1.01506 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1745 -a 0 -x {9.0 10.0 877 ------- null} r -t 1.01509 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1731 -a 0 -x {9.0 10.0 870 ------- null} + -t 1.01509 -s 10 -d 7 -p ack -e 40 -c 0 -i 1750 -a 0 -x {10.0 9.0 870 ------- null} - -t 1.01509 -s 10 -d 7 -p ack -e 40 -c 0 -i 1750 -a 0 -x {10.0 9.0 870 ------- null} h -t 1.01509 -s 10 -d 7 -p ack -e 40 -c 0 -i 1750 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.01555 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1737 -a 0 -x {9.0 10.0 873 ------- null} - -t 1.01555 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1737 -a 0 -x {9.0 10.0 873 ------- null} h -t 1.01555 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1737 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.01558 -s 0 -d 9 -p ack -e 40 -c 0 -i 1740 -a 0 -x {10.0 9.0 865 ------- null} + -t 1.01558 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1751 -a 0 -x {9.0 10.0 880 ------- null} - -t 1.01558 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1751 -a 0 -x {9.0 10.0 880 ------- null} h -t 1.01558 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1751 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.01568 -s 0 -d 9 -p ack -e 40 -c 0 -i 1744 -a 0 -x {10.0 9.0 867 ------- null} - -t 1.01568 -s 0 -d 9 -p ack -e 40 -c 0 -i 1744 -a 0 -x {10.0 9.0 867 ------- null} h -t 1.01568 -s 0 -d 9 -p ack -e 40 -c 0 -i 1744 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.01603 -s 10 -d 7 -p ack -e 40 -c 0 -i 1748 -a 0 -x {10.0 9.0 869 ------- null} + -t 1.01603 -s 7 -d 0 -p ack -e 40 -c 0 -i 1748 -a 0 -x {10.0 9.0 869 ------- null} h -t 1.01603 -s 7 -d 8 -p ack -e 40 -c 0 -i 1748 -a 0 -x {10.0 9.0 869 ------- null} r -t 1.01616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1747 -a 0 -x {9.0 10.0 878 ------- null} + -t 1.01616 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1747 -a 0 -x {9.0 10.0 878 ------- null} h -t 1.01616 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1747 -a 0 -x {9.0 10.0 878 ------- null} r -t 1.01618 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1733 -a 0 -x {9.0 10.0 871 ------- null} + -t 1.01618 -s 10 -d 7 -p ack -e 40 -c 0 -i 1752 -a 0 -x {10.0 9.0 871 ------- null} - -t 1.01618 -s 10 -d 7 -p ack -e 40 -c 0 -i 1752 -a 0 -x {10.0 9.0 871 ------- null} h -t 1.01618 -s 10 -d 7 -p ack -e 40 -c 0 -i 1752 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.01662 -s 0 -d 9 -p ack -e 40 -c 0 -i 1742 -a 0 -x {10.0 9.0 866 ------- null} + -t 1.01662 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1753 -a 0 -x {9.0 10.0 881 ------- null} - -t 1.01662 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1753 -a 0 -x {9.0 10.0 881 ------- null} h -t 1.01662 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1753 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.01664 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1739 -a 0 -x {9.0 10.0 874 ------- null} - -t 1.01664 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1739 -a 0 -x {9.0 10.0 874 ------- null} h -t 1.01664 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1739 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.01683 -s 0 -d 9 -p ack -e 40 -c 0 -i 1746 -a 0 -x {10.0 9.0 868 ------- null} - -t 1.01683 -s 0 -d 9 -p ack -e 40 -c 0 -i 1746 -a 0 -x {10.0 9.0 868 ------- null} h -t 1.01683 -s 0 -d 9 -p ack -e 40 -c 0 -i 1746 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.01712 -s 10 -d 7 -p ack -e 40 -c 0 -i 1750 -a 0 -x {10.0 9.0 870 ------- null} + -t 1.01712 -s 7 -d 0 -p ack -e 40 -c 0 -i 1750 -a 0 -x {10.0 9.0 870 ------- null} h -t 1.01712 -s 7 -d 8 -p ack -e 40 -c 0 -i 1750 -a 0 -x {10.0 9.0 870 ------- null} r -t 1.01726 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1735 -a 0 -x {9.0 10.0 872 ------- null} + -t 1.01726 -s 10 -d 7 -p ack -e 40 -c 0 -i 1754 -a 0 -x {10.0 9.0 872 ------- null} - -t 1.01726 -s 10 -d 7 -p ack -e 40 -c 0 -i 1754 -a 0 -x {10.0 9.0 872 ------- null} h -t 1.01726 -s 10 -d 7 -p ack -e 40 -c 0 -i 1754 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.01734 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1749 -a 0 -x {9.0 10.0 879 ------- null} + -t 1.01734 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1749 -a 0 -x {9.0 10.0 879 ------- null} h -t 1.01734 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1749 -a 0 -x {9.0 10.0 879 ------- null} r -t 1.01771 -s 0 -d 9 -p ack -e 40 -c 0 -i 1744 -a 0 -x {10.0 9.0 867 ------- null} + -t 1.01771 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1755 -a 0 -x {9.0 10.0 882 ------- null} - -t 1.01771 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1755 -a 0 -x {9.0 10.0 882 ------- null} h -t 1.01771 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1755 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.01773 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1741 -a 0 -x {9.0 10.0 875 ------- null} - -t 1.01773 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1741 -a 0 -x {9.0 10.0 875 ------- null} h -t 1.01773 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1741 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.01779 -s 0 -d 9 -p ack -e 40 -c 0 -i 1748 -a 0 -x {10.0 9.0 869 ------- null} - -t 1.01779 -s 0 -d 9 -p ack -e 40 -c 0 -i 1748 -a 0 -x {10.0 9.0 869 ------- null} h -t 1.01779 -s 0 -d 9 -p ack -e 40 -c 0 -i 1748 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.01821 -s 10 -d 7 -p ack -e 40 -c 0 -i 1752 -a 0 -x {10.0 9.0 871 ------- null} + -t 1.01821 -s 7 -d 0 -p ack -e 40 -c 0 -i 1752 -a 0 -x {10.0 9.0 871 ------- null} h -t 1.01821 -s 7 -d 8 -p ack -e 40 -c 0 -i 1752 -a 0 -x {10.0 9.0 871 ------- null} r -t 1.01835 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1737 -a 0 -x {9.0 10.0 873 ------- null} + -t 1.01835 -s 10 -d 7 -p ack -e 40 -c 0 -i 1756 -a 0 -x {10.0 9.0 873 ------- null} - -t 1.01835 -s 10 -d 7 -p ack -e 40 -c 0 -i 1756 -a 0 -x {10.0 9.0 873 ------- null} h -t 1.01835 -s 10 -d 7 -p ack -e 40 -c 0 -i 1756 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.01838 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1751 -a 0 -x {9.0 10.0 880 ------- null} + -t 1.01838 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1751 -a 0 -x {9.0 10.0 880 ------- null} h -t 1.01838 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1751 -a 0 -x {9.0 10.0 880 ------- null} + -t 1.01882 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1743 -a 0 -x {9.0 10.0 876 ------- null} - -t 1.01882 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1743 -a 0 -x {9.0 10.0 876 ------- null} h -t 1.01882 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1743 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.01886 -s 0 -d 9 -p ack -e 40 -c 0 -i 1746 -a 0 -x {10.0 9.0 868 ------- null} + -t 1.01886 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1757 -a 0 -x {9.0 10.0 883 ------- null} - -t 1.01886 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1757 -a 0 -x {9.0 10.0 883 ------- null} h -t 1.01886 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1757 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.01912 -s 0 -d 9 -p ack -e 40 -c 0 -i 1750 -a 0 -x {10.0 9.0 870 ------- null} - -t 1.01912 -s 0 -d 9 -p ack -e 40 -c 0 -i 1750 -a 0 -x {10.0 9.0 870 ------- null} h -t 1.01912 -s 0 -d 9 -p ack -e 40 -c 0 -i 1750 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.0193 -s 10 -d 7 -p ack -e 40 -c 0 -i 1754 -a 0 -x {10.0 9.0 872 ------- null} + -t 1.0193 -s 7 -d 0 -p ack -e 40 -c 0 -i 1754 -a 0 -x {10.0 9.0 872 ------- null} h -t 1.0193 -s 7 -d 8 -p ack -e 40 -c 0 -i 1754 -a 0 -x {10.0 9.0 872 ------- null} r -t 1.01942 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1753 -a 0 -x {9.0 10.0 881 ------- null} + -t 1.01942 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1753 -a 0 -x {9.0 10.0 881 ------- null} h -t 1.01942 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1753 -a 0 -x {9.0 10.0 881 ------- null} r -t 1.01944 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1739 -a 0 -x {9.0 10.0 874 ------- null} + -t 1.01944 -s 10 -d 7 -p ack -e 40 -c 0 -i 1758 -a 0 -x {10.0 9.0 874 ------- null} - -t 1.01944 -s 10 -d 7 -p ack -e 40 -c 0 -i 1758 -a 0 -x {10.0 9.0 874 ------- null} h -t 1.01944 -s 10 -d 7 -p ack -e 40 -c 0 -i 1758 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.01982 -s 0 -d 9 -p ack -e 40 -c 0 -i 1748 -a 0 -x {10.0 9.0 869 ------- null} + -t 1.01982 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1759 -a 0 -x {9.0 10.0 884 ------- null} - -t 1.01982 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1759 -a 0 -x {9.0 10.0 884 ------- null} h -t 1.01982 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1759 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.0201 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1745 -a 0 -x {9.0 10.0 877 ------- null} - -t 1.0201 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1745 -a 0 -x {9.0 10.0 877 ------- null} h -t 1.0201 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1745 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.02029 -s 0 -d 9 -p ack -e 40 -c 0 -i 1752 -a 0 -x {10.0 9.0 871 ------- null} - -t 1.02029 -s 0 -d 9 -p ack -e 40 -c 0 -i 1752 -a 0 -x {10.0 9.0 871 ------- null} h -t 1.02029 -s 0 -d 9 -p ack -e 40 -c 0 -i 1752 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.02038 -s 10 -d 7 -p ack -e 40 -c 0 -i 1756 -a 0 -x {10.0 9.0 873 ------- null} + -t 1.02038 -s 7 -d 0 -p ack -e 40 -c 0 -i 1756 -a 0 -x {10.0 9.0 873 ------- null} h -t 1.02038 -s 7 -d 8 -p ack -e 40 -c 0 -i 1756 -a 0 -x {10.0 9.0 873 ------- null} r -t 1.02051 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1755 -a 0 -x {9.0 10.0 882 ------- null} + -t 1.02051 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1755 -a 0 -x {9.0 10.0 882 ------- null} h -t 1.02051 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1755 -a 0 -x {9.0 10.0 882 ------- null} r -t 1.02053 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1741 -a 0 -x {9.0 10.0 875 ------- null} + -t 1.02053 -s 10 -d 7 -p ack -e 40 -c 0 -i 1760 -a 0 -x {10.0 9.0 875 ------- null} - -t 1.02053 -s 10 -d 7 -p ack -e 40 -c 0 -i 1760 -a 0 -x {10.0 9.0 875 ------- null} h -t 1.02053 -s 10 -d 7 -p ack -e 40 -c 0 -i 1760 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.02115 -s 0 -d 9 -p ack -e 40 -c 0 -i 1750 -a 0 -x {10.0 9.0 870 ------- null} + -t 1.02115 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1761 -a 0 -x {9.0 10.0 885 ------- null} - -t 1.02115 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1761 -a 0 -x {9.0 10.0 885 ------- null} h -t 1.02115 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1761 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.02118 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1747 -a 0 -x {9.0 10.0 878 ------- null} - -t 1.02118 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1747 -a 0 -x {9.0 10.0 878 ------- null} h -t 1.02118 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1747 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.02136 -s 0 -d 9 -p ack -e 40 -c 0 -i 1754 -a 0 -x {10.0 9.0 872 ------- null} - -t 1.02136 -s 0 -d 9 -p ack -e 40 -c 0 -i 1754 -a 0 -x {10.0 9.0 872 ------- null} h -t 1.02136 -s 0 -d 9 -p ack -e 40 -c 0 -i 1754 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.02147 -s 10 -d 7 -p ack -e 40 -c 0 -i 1758 -a 0 -x {10.0 9.0 874 ------- null} + -t 1.02147 -s 7 -d 0 -p ack -e 40 -c 0 -i 1758 -a 0 -x {10.0 9.0 874 ------- null} h -t 1.02147 -s 7 -d 8 -p ack -e 40 -c 0 -i 1758 -a 0 -x {10.0 9.0 874 ------- null} r -t 1.02162 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1743 -a 0 -x {9.0 10.0 876 ------- null} + -t 1.02162 -s 10 -d 7 -p ack -e 40 -c 0 -i 1762 -a 0 -x {10.0 9.0 876 ------- null} - -t 1.02162 -s 10 -d 7 -p ack -e 40 -c 0 -i 1762 -a 0 -x {10.0 9.0 876 ------- null} h -t 1.02162 -s 10 -d 7 -p ack -e 40 -c 0 -i 1762 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.02166 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1757 -a 0 -x {9.0 10.0 883 ------- null} + -t 1.02166 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1757 -a 0 -x {9.0 10.0 883 ------- null} h -t 1.02166 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1757 -a 0 -x {9.0 10.0 883 ------- null} + -t 1.02227 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1749 -a 0 -x {9.0 10.0 879 ------- null} - -t 1.02227 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1749 -a 0 -x {9.0 10.0 879 ------- null} h -t 1.02227 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1749 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.02232 -s 0 -d 9 -p ack -e 40 -c 0 -i 1752 -a 0 -x {10.0 9.0 871 ------- null} + -t 1.02232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1763 -a 0 -x {9.0 10.0 886 ------- null} - -t 1.02232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1763 -a 0 -x {9.0 10.0 886 ------- null} h -t 1.02232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1763 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.02243 -s 0 -d 9 -p ack -e 40 -c 0 -i 1756 -a 0 -x {10.0 9.0 873 ------- null} - -t 1.02243 -s 0 -d 9 -p ack -e 40 -c 0 -i 1756 -a 0 -x {10.0 9.0 873 ------- null} h -t 1.02243 -s 0 -d 9 -p ack -e 40 -c 0 -i 1756 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.02256 -s 10 -d 7 -p ack -e 40 -c 0 -i 1760 -a 0 -x {10.0 9.0 875 ------- null} + -t 1.02256 -s 7 -d 0 -p ack -e 40 -c 0 -i 1760 -a 0 -x {10.0 9.0 875 ------- null} h -t 1.02256 -s 7 -d 8 -p ack -e 40 -c 0 -i 1760 -a 0 -x {10.0 9.0 875 ------- null} r -t 1.02262 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1759 -a 0 -x {9.0 10.0 884 ------- null} + -t 1.02262 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1759 -a 0 -x {9.0 10.0 884 ------- null} h -t 1.02262 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1759 -a 0 -x {9.0 10.0 884 ------- null} r -t 1.0229 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1745 -a 0 -x {9.0 10.0 877 ------- null} + -t 1.0229 -s 10 -d 7 -p ack -e 40 -c 0 -i 1764 -a 0 -x {10.0 9.0 877 ------- null} - -t 1.0229 -s 10 -d 7 -p ack -e 40 -c 0 -i 1764 -a 0 -x {10.0 9.0 877 ------- null} h -t 1.0229 -s 10 -d 7 -p ack -e 40 -c 0 -i 1764 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.02336 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1751 -a 0 -x {9.0 10.0 880 ------- null} - -t 1.02336 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1751 -a 0 -x {9.0 10.0 880 ------- null} h -t 1.02336 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1751 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.02339 -s 0 -d 9 -p ack -e 40 -c 0 -i 1754 -a 0 -x {10.0 9.0 872 ------- null} + -t 1.02339 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1765 -a 0 -x {9.0 10.0 887 ------- null} - -t 1.02339 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1765 -a 0 -x {9.0 10.0 887 ------- null} h -t 1.02339 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1765 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.02342 -s 0 -d 9 -p ack -e 40 -c 0 -i 1758 -a 0 -x {10.0 9.0 874 ------- null} - -t 1.02342 -s 0 -d 9 -p ack -e 40 -c 0 -i 1758 -a 0 -x {10.0 9.0 874 ------- null} h -t 1.02342 -s 0 -d 9 -p ack -e 40 -c 0 -i 1758 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.02365 -s 10 -d 7 -p ack -e 40 -c 0 -i 1762 -a 0 -x {10.0 9.0 876 ------- null} + -t 1.02365 -s 7 -d 0 -p ack -e 40 -c 0 -i 1762 -a 0 -x {10.0 9.0 876 ------- null} h -t 1.02365 -s 7 -d 8 -p ack -e 40 -c 0 -i 1762 -a 0 -x {10.0 9.0 876 ------- null} r -t 1.02395 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1761 -a 0 -x {9.0 10.0 885 ------- null} + -t 1.02395 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1761 -a 0 -x {9.0 10.0 885 ------- null} h -t 1.02395 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1761 -a 0 -x {9.0 10.0 885 ------- null} r -t 1.02398 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1747 -a 0 -x {9.0 10.0 878 ------- null} + -t 1.02398 -s 10 -d 7 -p ack -e 40 -c 0 -i 1766 -a 0 -x {10.0 9.0 878 ------- null} - -t 1.02398 -s 10 -d 7 -p ack -e 40 -c 0 -i 1766 -a 0 -x {10.0 9.0 878 ------- null} h -t 1.02398 -s 10 -d 7 -p ack -e 40 -c 0 -i 1766 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.02445 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1753 -a 0 -x {9.0 10.0 881 ------- null} - -t 1.02445 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1753 -a 0 -x {9.0 10.0 881 ------- null} h -t 1.02445 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1753 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.02446 -s 0 -d 9 -p ack -e 40 -c 0 -i 1756 -a 0 -x {10.0 9.0 873 ------- null} + -t 1.02446 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1767 -a 0 -x {9.0 10.0 888 ------- null} - -t 1.02446 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1767 -a 0 -x {9.0 10.0 888 ------- null} h -t 1.02446 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1767 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.02462 -s 0 -d 9 -p ack -e 40 -c 0 -i 1760 -a 0 -x {10.0 9.0 875 ------- null} - -t 1.02462 -s 0 -d 9 -p ack -e 40 -c 0 -i 1760 -a 0 -x {10.0 9.0 875 ------- null} h -t 1.02462 -s 0 -d 9 -p ack -e 40 -c 0 -i 1760 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.02493 -s 10 -d 7 -p ack -e 40 -c 0 -i 1764 -a 0 -x {10.0 9.0 877 ------- null} + -t 1.02493 -s 7 -d 0 -p ack -e 40 -c 0 -i 1764 -a 0 -x {10.0 9.0 877 ------- null} h -t 1.02493 -s 7 -d 8 -p ack -e 40 -c 0 -i 1764 -a 0 -x {10.0 9.0 877 ------- null} r -t 1.02507 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1749 -a 0 -x {9.0 10.0 879 ------- null} + -t 1.02507 -s 10 -d 7 -p ack -e 40 -c 0 -i 1768 -a 0 -x {10.0 9.0 879 ------- null} - -t 1.02507 -s 10 -d 7 -p ack -e 40 -c 0 -i 1768 -a 0 -x {10.0 9.0 879 ------- null} h -t 1.02507 -s 10 -d 7 -p ack -e 40 -c 0 -i 1768 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.02512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1763 -a 0 -x {9.0 10.0 886 ------- null} + -t 1.02512 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1763 -a 0 -x {9.0 10.0 886 ------- null} h -t 1.02512 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1763 -a 0 -x {9.0 10.0 886 ------- null} r -t 1.02546 -s 0 -d 9 -p ack -e 40 -c 0 -i 1758 -a 0 -x {10.0 9.0 874 ------- null} + -t 1.02546 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1769 -a 0 -x {9.0 10.0 889 ------- null} - -t 1.02546 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1769 -a 0 -x {9.0 10.0 889 ------- null} h -t 1.02546 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1769 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.02554 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1755 -a 0 -x {9.0 10.0 882 ------- null} - -t 1.02554 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1755 -a 0 -x {9.0 10.0 882 ------- null} h -t 1.02554 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1755 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.02573 -s 0 -d 9 -p ack -e 40 -c 0 -i 1762 -a 0 -x {10.0 9.0 876 ------- null} - -t 1.02573 -s 0 -d 9 -p ack -e 40 -c 0 -i 1762 -a 0 -x {10.0 9.0 876 ------- null} h -t 1.02573 -s 0 -d 9 -p ack -e 40 -c 0 -i 1762 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.02602 -s 10 -d 7 -p ack -e 40 -c 0 -i 1766 -a 0 -x {10.0 9.0 878 ------- null} + -t 1.02602 -s 7 -d 0 -p ack -e 40 -c 0 -i 1766 -a 0 -x {10.0 9.0 878 ------- null} h -t 1.02602 -s 7 -d 8 -p ack -e 40 -c 0 -i 1766 -a 0 -x {10.0 9.0 878 ------- null} r -t 1.02616 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1751 -a 0 -x {9.0 10.0 880 ------- null} + -t 1.02616 -s 10 -d 7 -p ack -e 40 -c 0 -i 1770 -a 0 -x {10.0 9.0 880 ------- null} - -t 1.02616 -s 10 -d 7 -p ack -e 40 -c 0 -i 1770 -a 0 -x {10.0 9.0 880 ------- null} h -t 1.02616 -s 10 -d 7 -p ack -e 40 -c 0 -i 1770 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.02619 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1765 -a 0 -x {9.0 10.0 887 ------- null} + -t 1.02619 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1765 -a 0 -x {9.0 10.0 887 ------- null} h -t 1.02619 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1765 -a 0 -x {9.0 10.0 887 ------- null} + -t 1.02662 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1757 -a 0 -x {9.0 10.0 883 ------- null} - -t 1.02662 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1757 -a 0 -x {9.0 10.0 883 ------- null} h -t 1.02662 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1757 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.02666 -s 0 -d 9 -p ack -e 40 -c 0 -i 1760 -a 0 -x {10.0 9.0 875 ------- null} + -t 1.02666 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1771 -a 0 -x {9.0 10.0 890 ------- null} - -t 1.02666 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1771 -a 0 -x {9.0 10.0 890 ------- null} h -t 1.02666 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1771 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.02685 -s 0 -d 9 -p ack -e 40 -c 0 -i 1764 -a 0 -x {10.0 9.0 877 ------- null} - -t 1.02685 -s 0 -d 9 -p ack -e 40 -c 0 -i 1764 -a 0 -x {10.0 9.0 877 ------- null} h -t 1.02685 -s 0 -d 9 -p ack -e 40 -c 0 -i 1764 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.0271 -s 10 -d 7 -p ack -e 40 -c 0 -i 1768 -a 0 -x {10.0 9.0 879 ------- null} + -t 1.0271 -s 7 -d 0 -p ack -e 40 -c 0 -i 1768 -a 0 -x {10.0 9.0 879 ------- null} h -t 1.0271 -s 7 -d 8 -p ack -e 40 -c 0 -i 1768 -a 0 -x {10.0 9.0 879 ------- null} r -t 1.02725 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1753 -a 0 -x {9.0 10.0 881 ------- null} + -t 1.02725 -s 10 -d 7 -p ack -e 40 -c 0 -i 1772 -a 0 -x {10.0 9.0 881 ------- null} - -t 1.02725 -s 10 -d 7 -p ack -e 40 -c 0 -i 1772 -a 0 -x {10.0 9.0 881 ------- null} h -t 1.02725 -s 10 -d 7 -p ack -e 40 -c 0 -i 1772 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.02726 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1767 -a 0 -x {9.0 10.0 888 ------- null} + -t 1.02726 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1767 -a 0 -x {9.0 10.0 888 ------- null} h -t 1.02726 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1767 -a 0 -x {9.0 10.0 888 ------- null} + -t 1.02771 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1759 -a 0 -x {9.0 10.0 884 ------- null} - -t 1.02771 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1759 -a 0 -x {9.0 10.0 884 ------- null} h -t 1.02771 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1759 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.02776 -s 0 -d 9 -p ack -e 40 -c 0 -i 1762 -a 0 -x {10.0 9.0 876 ------- null} + -t 1.02776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1773 -a 0 -x {9.0 10.0 891 ------- null} - -t 1.02776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1773 -a 0 -x {9.0 10.0 891 ------- null} h -t 1.02776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1773 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.02778 -s 0 -d 9 -p ack -e 40 -c 0 -i 1766 -a 0 -x {10.0 9.0 878 ------- null} - -t 1.02778 -s 0 -d 9 -p ack -e 40 -c 0 -i 1766 -a 0 -x {10.0 9.0 878 ------- null} h -t 1.02778 -s 0 -d 9 -p ack -e 40 -c 0 -i 1766 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.02819 -s 10 -d 7 -p ack -e 40 -c 0 -i 1770 -a 0 -x {10.0 9.0 880 ------- null} + -t 1.02819 -s 7 -d 0 -p ack -e 40 -c 0 -i 1770 -a 0 -x {10.0 9.0 880 ------- null} h -t 1.02819 -s 7 -d 8 -p ack -e 40 -c 0 -i 1770 -a 0 -x {10.0 9.0 880 ------- null} r -t 1.02826 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1769 -a 0 -x {9.0 10.0 889 ------- null} + -t 1.02826 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1769 -a 0 -x {9.0 10.0 889 ------- null} h -t 1.02826 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1769 -a 0 -x {9.0 10.0 889 ------- null} r -t 1.02834 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1755 -a 0 -x {9.0 10.0 882 ------- null} + -t 1.02834 -s 10 -d 7 -p ack -e 40 -c 0 -i 1774 -a 0 -x {10.0 9.0 882 ------- null} - -t 1.02834 -s 10 -d 7 -p ack -e 40 -c 0 -i 1774 -a 0 -x {10.0 9.0 882 ------- null} h -t 1.02834 -s 10 -d 7 -p ack -e 40 -c 0 -i 1774 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.0288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1761 -a 0 -x {9.0 10.0 885 ------- null} - -t 1.0288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1761 -a 0 -x {9.0 10.0 885 ------- null} h -t 1.0288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1761 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.02888 -s 0 -d 9 -p ack -e 40 -c 0 -i 1764 -a 0 -x {10.0 9.0 877 ------- null} + -t 1.02888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1775 -a 0 -x {9.0 10.0 892 ------- null} - -t 1.02888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1775 -a 0 -x {9.0 10.0 892 ------- null} h -t 1.02888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1775 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.02906 -s 0 -d 9 -p ack -e 40 -c 0 -i 1768 -a 0 -x {10.0 9.0 879 ------- null} - -t 1.02906 -s 0 -d 9 -p ack -e 40 -c 0 -i 1768 -a 0 -x {10.0 9.0 879 ------- null} h -t 1.02906 -s 0 -d 9 -p ack -e 40 -c 0 -i 1768 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.02928 -s 10 -d 7 -p ack -e 40 -c 0 -i 1772 -a 0 -x {10.0 9.0 881 ------- null} + -t 1.02928 -s 7 -d 0 -p ack -e 40 -c 0 -i 1772 -a 0 -x {10.0 9.0 881 ------- null} h -t 1.02928 -s 7 -d 8 -p ack -e 40 -c 0 -i 1772 -a 0 -x {10.0 9.0 881 ------- null} r -t 1.02942 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1757 -a 0 -x {9.0 10.0 883 ------- null} + -t 1.02942 -s 10 -d 7 -p ack -e 40 -c 0 -i 1776 -a 0 -x {10.0 9.0 883 ------- null} - -t 1.02942 -s 10 -d 7 -p ack -e 40 -c 0 -i 1776 -a 0 -x {10.0 9.0 883 ------- null} h -t 1.02942 -s 10 -d 7 -p ack -e 40 -c 0 -i 1776 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.02946 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1771 -a 0 -x {9.0 10.0 890 ------- null} + -t 1.02946 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1771 -a 0 -x {9.0 10.0 890 ------- null} h -t 1.02946 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1771 -a 0 -x {9.0 10.0 890 ------- null} r -t 1.02981 -s 0 -d 9 -p ack -e 40 -c 0 -i 1766 -a 0 -x {10.0 9.0 878 ------- null} + -t 1.02981 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1777 -a 0 -x {9.0 10.0 893 ------- null} - -t 1.02981 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1777 -a 0 -x {9.0 10.0 893 ------- null} h -t 1.02981 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1777 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.02989 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1763 -a 0 -x {9.0 10.0 886 ------- null} - -t 1.02989 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1763 -a 0 -x {9.0 10.0 886 ------- null} h -t 1.02989 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1763 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.02995 -s 0 -d 9 -p ack -e 40 -c 0 -i 1770 -a 0 -x {10.0 9.0 880 ------- null} - -t 1.02995 -s 0 -d 9 -p ack -e 40 -c 0 -i 1770 -a 0 -x {10.0 9.0 880 ------- null} h -t 1.02995 -s 0 -d 9 -p ack -e 40 -c 0 -i 1770 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.03037 -s 10 -d 7 -p ack -e 40 -c 0 -i 1774 -a 0 -x {10.0 9.0 882 ------- null} + -t 1.03037 -s 7 -d 0 -p ack -e 40 -c 0 -i 1774 -a 0 -x {10.0 9.0 882 ------- null} h -t 1.03037 -s 7 -d 8 -p ack -e 40 -c 0 -i 1774 -a 0 -x {10.0 9.0 882 ------- null} r -t 1.03051 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1759 -a 0 -x {9.0 10.0 884 ------- null} + -t 1.03051 -s 10 -d 7 -p ack -e 40 -c 0 -i 1778 -a 0 -x {10.0 9.0 884 ------- null} - -t 1.03051 -s 10 -d 7 -p ack -e 40 -c 0 -i 1778 -a 0 -x {10.0 9.0 884 ------- null} h -t 1.03051 -s 10 -d 7 -p ack -e 40 -c 0 -i 1778 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.03056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1773 -a 0 -x {9.0 10.0 891 ------- null} + -t 1.03056 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1773 -a 0 -x {9.0 10.0 891 ------- null} h -t 1.03056 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1773 -a 0 -x {9.0 10.0 891 ------- null} + -t 1.03098 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1765 -a 0 -x {9.0 10.0 887 ------- null} - -t 1.03098 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1765 -a 0 -x {9.0 10.0 887 ------- null} h -t 1.03098 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1765 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.03104 -s 0 -d 9 -p ack -e 40 -c 0 -i 1772 -a 0 -x {10.0 9.0 881 ------- null} - -t 1.03104 -s 0 -d 9 -p ack -e 40 -c 0 -i 1772 -a 0 -x {10.0 9.0 881 ------- null} h -t 1.03104 -s 0 -d 9 -p ack -e 40 -c 0 -i 1772 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.03109 -s 0 -d 9 -p ack -e 40 -c 0 -i 1768 -a 0 -x {10.0 9.0 879 ------- null} + -t 1.03109 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1779 -a 0 -x {9.0 10.0 894 ------- null} - -t 1.03109 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1779 -a 0 -x {9.0 10.0 894 ------- null} h -t 1.03109 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1779 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.03146 -s 10 -d 7 -p ack -e 40 -c 0 -i 1776 -a 0 -x {10.0 9.0 883 ------- null} + -t 1.03146 -s 7 -d 0 -p ack -e 40 -c 0 -i 1776 -a 0 -x {10.0 9.0 883 ------- null} h -t 1.03146 -s 7 -d 8 -p ack -e 40 -c 0 -i 1776 -a 0 -x {10.0 9.0 883 ------- null} r -t 1.0316 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1761 -a 0 -x {9.0 10.0 885 ------- null} + -t 1.0316 -s 10 -d 7 -p ack -e 40 -c 0 -i 1780 -a 0 -x {10.0 9.0 885 ------- null} - -t 1.0316 -s 10 -d 7 -p ack -e 40 -c 0 -i 1780 -a 0 -x {10.0 9.0 885 ------- null} h -t 1.0316 -s 10 -d 7 -p ack -e 40 -c 0 -i 1780 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.03168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1775 -a 0 -x {9.0 10.0 892 ------- null} + -t 1.03168 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1775 -a 0 -x {9.0 10.0 892 ------- null} h -t 1.03168 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1775 -a 0 -x {9.0 10.0 892 ------- null} r -t 1.03198 -s 0 -d 9 -p ack -e 40 -c 0 -i 1770 -a 0 -x {10.0 9.0 880 ------- null} + -t 1.03198 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1781 -a 0 -x {9.0 10.0 895 ------- null} - -t 1.03198 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1781 -a 0 -x {9.0 10.0 895 ------- null} h -t 1.03198 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1781 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.03206 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1767 -a 0 -x {9.0 10.0 888 ------- null} - -t 1.03206 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1767 -a 0 -x {9.0 10.0 888 ------- null} h -t 1.03206 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1767 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.03235 -s 0 -d 9 -p ack -e 40 -c 0 -i 1774 -a 0 -x {10.0 9.0 882 ------- null} - -t 1.03235 -s 0 -d 9 -p ack -e 40 -c 0 -i 1774 -a 0 -x {10.0 9.0 882 ------- null} h -t 1.03235 -s 0 -d 9 -p ack -e 40 -c 0 -i 1774 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.03254 -s 10 -d 7 -p ack -e 40 -c 0 -i 1778 -a 0 -x {10.0 9.0 884 ------- null} + -t 1.03254 -s 7 -d 0 -p ack -e 40 -c 0 -i 1778 -a 0 -x {10.0 9.0 884 ------- null} h -t 1.03254 -s 7 -d 8 -p ack -e 40 -c 0 -i 1778 -a 0 -x {10.0 9.0 884 ------- null} r -t 1.03261 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1777 -a 0 -x {9.0 10.0 893 ------- null} + -t 1.03261 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1777 -a 0 -x {9.0 10.0 893 ------- null} h -t 1.03261 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1777 -a 0 -x {9.0 10.0 893 ------- null} r -t 1.03269 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1763 -a 0 -x {9.0 10.0 886 ------- null} + -t 1.03269 -s 10 -d 7 -p ack -e 40 -c 0 -i 1782 -a 0 -x {10.0 9.0 886 ------- null} - -t 1.03269 -s 10 -d 7 -p ack -e 40 -c 0 -i 1782 -a 0 -x {10.0 9.0 886 ------- null} h -t 1.03269 -s 10 -d 7 -p ack -e 40 -c 0 -i 1782 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.03307 -s 0 -d 9 -p ack -e 40 -c 0 -i 1772 -a 0 -x {10.0 9.0 881 ------- null} + -t 1.03307 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1783 -a 0 -x {9.0 10.0 896 ------- null} - -t 1.03307 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1783 -a 0 -x {9.0 10.0 896 ------- null} h -t 1.03307 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1783 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.03331 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1769 -a 0 -x {9.0 10.0 889 ------- null} - -t 1.03331 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1769 -a 0 -x {9.0 10.0 889 ------- null} h -t 1.03331 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1769 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.03358 -s 0 -d 9 -p ack -e 40 -c 0 -i 1776 -a 0 -x {10.0 9.0 883 ------- null} - -t 1.03358 -s 0 -d 9 -p ack -e 40 -c 0 -i 1776 -a 0 -x {10.0 9.0 883 ------- null} h -t 1.03358 -s 0 -d 9 -p ack -e 40 -c 0 -i 1776 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.03363 -s 10 -d 7 -p ack -e 40 -c 0 -i 1780 -a 0 -x {10.0 9.0 885 ------- null} + -t 1.03363 -s 7 -d 0 -p ack -e 40 -c 0 -i 1780 -a 0 -x {10.0 9.0 885 ------- null} h -t 1.03363 -s 7 -d 8 -p ack -e 40 -c 0 -i 1780 -a 0 -x {10.0 9.0 885 ------- null} r -t 1.03378 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1765 -a 0 -x {9.0 10.0 887 ------- null} + -t 1.03378 -s 10 -d 7 -p ack -e 40 -c 0 -i 1784 -a 0 -x {10.0 9.0 887 ------- null} - -t 1.03378 -s 10 -d 7 -p ack -e 40 -c 0 -i 1784 -a 0 -x {10.0 9.0 887 ------- null} h -t 1.03378 -s 10 -d 7 -p ack -e 40 -c 0 -i 1784 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.03389 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1779 -a 0 -x {9.0 10.0 894 ------- null} + -t 1.03389 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1779 -a 0 -x {9.0 10.0 894 ------- null} h -t 1.03389 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1779 -a 0 -x {9.0 10.0 894 ------- null} r -t 1.03438 -s 0 -d 9 -p ack -e 40 -c 0 -i 1774 -a 0 -x {10.0 9.0 882 ------- null} + -t 1.03438 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1785 -a 0 -x {9.0 10.0 897 ------- null} - -t 1.03438 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1785 -a 0 -x {9.0 10.0 897 ------- null} h -t 1.03438 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1785 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.03443 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1771 -a 0 -x {9.0 10.0 890 ------- null} - -t 1.03443 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1771 -a 0 -x {9.0 10.0 890 ------- null} h -t 1.03443 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1771 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.03461 -s 0 -d 9 -p ack -e 40 -c 0 -i 1778 -a 0 -x {10.0 9.0 884 ------- null} - -t 1.03461 -s 0 -d 9 -p ack -e 40 -c 0 -i 1778 -a 0 -x {10.0 9.0 884 ------- null} h -t 1.03461 -s 0 -d 9 -p ack -e 40 -c 0 -i 1778 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.03472 -s 10 -d 7 -p ack -e 40 -c 0 -i 1782 -a 0 -x {10.0 9.0 886 ------- null} + -t 1.03472 -s 7 -d 0 -p ack -e 40 -c 0 -i 1782 -a 0 -x {10.0 9.0 886 ------- null} h -t 1.03472 -s 7 -d 8 -p ack -e 40 -c 0 -i 1782 -a 0 -x {10.0 9.0 886 ------- null} r -t 1.03478 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1781 -a 0 -x {9.0 10.0 895 ------- null} + -t 1.03478 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1781 -a 0 -x {9.0 10.0 895 ------- null} h -t 1.03478 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1781 -a 0 -x {9.0 10.0 895 ------- null} r -t 1.03486 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1767 -a 0 -x {9.0 10.0 888 ------- null} + -t 1.03486 -s 10 -d 7 -p ack -e 40 -c 0 -i 1786 -a 0 -x {10.0 9.0 888 ------- null} - -t 1.03486 -s 10 -d 7 -p ack -e 40 -c 0 -i 1786 -a 0 -x {10.0 9.0 888 ------- null} h -t 1.03486 -s 10 -d 7 -p ack -e 40 -c 0 -i 1786 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.03552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1773 -a 0 -x {9.0 10.0 891 ------- null} - -t 1.03552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1773 -a 0 -x {9.0 10.0 891 ------- null} h -t 1.03552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1773 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.03562 -s 0 -d 9 -p ack -e 40 -c 0 -i 1776 -a 0 -x {10.0 9.0 883 ------- null} + -t 1.03562 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1787 -a 0 -x {9.0 10.0 898 ------- null} - -t 1.03562 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1787 -a 0 -x {9.0 10.0 898 ------- null} h -t 1.03562 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1787 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.03563 -s 0 -d 9 -p ack -e 40 -c 0 -i 1780 -a 0 -x {10.0 9.0 885 ------- null} - -t 1.03563 -s 0 -d 9 -p ack -e 40 -c 0 -i 1780 -a 0 -x {10.0 9.0 885 ------- null} h -t 1.03563 -s 0 -d 9 -p ack -e 40 -c 0 -i 1780 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.03581 -s 10 -d 7 -p ack -e 40 -c 0 -i 1784 -a 0 -x {10.0 9.0 887 ------- null} + -t 1.03581 -s 7 -d 0 -p ack -e 40 -c 0 -i 1784 -a 0 -x {10.0 9.0 887 ------- null} h -t 1.03581 -s 7 -d 8 -p ack -e 40 -c 0 -i 1784 -a 0 -x {10.0 9.0 887 ------- null} r -t 1.03587 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1783 -a 0 -x {9.0 10.0 896 ------- null} + -t 1.03587 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1783 -a 0 -x {9.0 10.0 896 ------- null} h -t 1.03587 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1783 -a 0 -x {9.0 10.0 896 ------- null} r -t 1.03611 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1769 -a 0 -x {9.0 10.0 889 ------- null} + -t 1.03611 -s 10 -d 7 -p ack -e 40 -c 0 -i 1788 -a 0 -x {10.0 9.0 889 ------- null} - -t 1.03611 -s 10 -d 7 -p ack -e 40 -c 0 -i 1788 -a 0 -x {10.0 9.0 889 ------- null} h -t 1.03611 -s 10 -d 7 -p ack -e 40 -c 0 -i 1788 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.03661 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1775 -a 0 -x {9.0 10.0 892 ------- null} - -t 1.03661 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1775 -a 0 -x {9.0 10.0 892 ------- null} h -t 1.03661 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1775 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.03664 -s 0 -d 9 -p ack -e 40 -c 0 -i 1778 -a 0 -x {10.0 9.0 884 ------- null} + -t 1.03664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1789 -a 0 -x {9.0 10.0 899 ------- null} - -t 1.03664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1789 -a 0 -x {9.0 10.0 899 ------- null} h -t 1.03664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1789 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.03672 -s 0 -d 9 -p ack -e 40 -c 0 -i 1782 -a 0 -x {10.0 9.0 886 ------- null} - -t 1.03672 -s 0 -d 9 -p ack -e 40 -c 0 -i 1782 -a 0 -x {10.0 9.0 886 ------- null} h -t 1.03672 -s 0 -d 9 -p ack -e 40 -c 0 -i 1782 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.0369 -s 10 -d 7 -p ack -e 40 -c 0 -i 1786 -a 0 -x {10.0 9.0 888 ------- null} + -t 1.0369 -s 7 -d 0 -p ack -e 40 -c 0 -i 1786 -a 0 -x {10.0 9.0 888 ------- null} h -t 1.0369 -s 7 -d 8 -p ack -e 40 -c 0 -i 1786 -a 0 -x {10.0 9.0 888 ------- null} r -t 1.03718 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1785 -a 0 -x {9.0 10.0 897 ------- null} + -t 1.03718 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1785 -a 0 -x {9.0 10.0 897 ------- null} h -t 1.03718 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1785 -a 0 -x {9.0 10.0 897 ------- null} r -t 1.03723 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1771 -a 0 -x {9.0 10.0 890 ------- null} + -t 1.03723 -s 10 -d 7 -p ack -e 40 -c 0 -i 1790 -a 0 -x {10.0 9.0 890 ------- null} - -t 1.03723 -s 10 -d 7 -p ack -e 40 -c 0 -i 1790 -a 0 -x {10.0 9.0 890 ------- null} h -t 1.03723 -s 10 -d 7 -p ack -e 40 -c 0 -i 1790 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.03766 -s 0 -d 9 -p ack -e 40 -c 0 -i 1780 -a 0 -x {10.0 9.0 885 ------- null} + -t 1.03766 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1791 -a 0 -x {9.0 10.0 900 ------- null} - -t 1.03766 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1791 -a 0 -x {9.0 10.0 900 ------- null} h -t 1.03766 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1791 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.0377 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1777 -a 0 -x {9.0 10.0 893 ------- null} - -t 1.0377 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1777 -a 0 -x {9.0 10.0 893 ------- null} h -t 1.0377 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1777 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.03798 -s 0 -d 9 -p ack -e 40 -c 0 -i 1784 -a 0 -x {10.0 9.0 887 ------- null} - -t 1.03798 -s 0 -d 9 -p ack -e 40 -c 0 -i 1784 -a 0 -x {10.0 9.0 887 ------- null} h -t 1.03798 -s 0 -d 9 -p ack -e 40 -c 0 -i 1784 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.03814 -s 10 -d 7 -p ack -e 40 -c 0 -i 1788 -a 0 -x {10.0 9.0 889 ------- null} + -t 1.03814 -s 7 -d 0 -p ack -e 40 -c 0 -i 1788 -a 0 -x {10.0 9.0 889 ------- null} h -t 1.03814 -s 7 -d 8 -p ack -e 40 -c 0 -i 1788 -a 0 -x {10.0 9.0 889 ------- null} r -t 1.03832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1773 -a 0 -x {9.0 10.0 891 ------- null} + -t 1.03832 -s 10 -d 7 -p ack -e 40 -c 0 -i 1792 -a 0 -x {10.0 9.0 891 ------- null} - -t 1.03832 -s 10 -d 7 -p ack -e 40 -c 0 -i 1792 -a 0 -x {10.0 9.0 891 ------- null} h -t 1.03832 -s 10 -d 7 -p ack -e 40 -c 0 -i 1792 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.03842 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1787 -a 0 -x {9.0 10.0 898 ------- null} + -t 1.03842 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1787 -a 0 -x {9.0 10.0 898 ------- null} h -t 1.03842 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1787 -a 0 -x {9.0 10.0 898 ------- null} r -t 1.03875 -s 0 -d 9 -p ack -e 40 -c 0 -i 1782 -a 0 -x {10.0 9.0 886 ------- null} + -t 1.03875 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1793 -a 0 -x {9.0 10.0 901 ------- null} - -t 1.03875 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1793 -a 0 -x {9.0 10.0 901 ------- null} h -t 1.03875 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1793 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.03893 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1779 -a 0 -x {9.0 10.0 894 ------- null} - -t 1.03893 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1779 -a 0 -x {9.0 10.0 894 ------- null} h -t 1.03893 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1779 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.03901 -s 0 -d 9 -p ack -e 40 -c 0 -i 1786 -a 0 -x {10.0 9.0 888 ------- null} - -t 1.03901 -s 0 -d 9 -p ack -e 40 -c 0 -i 1786 -a 0 -x {10.0 9.0 888 ------- null} h -t 1.03901 -s 0 -d 9 -p ack -e 40 -c 0 -i 1786 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.03926 -s 10 -d 7 -p ack -e 40 -c 0 -i 1790 -a 0 -x {10.0 9.0 890 ------- null} + -t 1.03926 -s 7 -d 0 -p ack -e 40 -c 0 -i 1790 -a 0 -x {10.0 9.0 890 ------- null} h -t 1.03926 -s 7 -d 8 -p ack -e 40 -c 0 -i 1790 -a 0 -x {10.0 9.0 890 ------- null} r -t 1.03941 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1775 -a 0 -x {9.0 10.0 892 ------- null} + -t 1.03941 -s 10 -d 7 -p ack -e 40 -c 0 -i 1794 -a 0 -x {10.0 9.0 892 ------- null} - -t 1.03941 -s 10 -d 7 -p ack -e 40 -c 0 -i 1794 -a 0 -x {10.0 9.0 892 ------- null} h -t 1.03941 -s 10 -d 7 -p ack -e 40 -c 0 -i 1794 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.03944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1789 -a 0 -x {9.0 10.0 899 ------- null} + -t 1.03944 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1789 -a 0 -x {9.0 10.0 899 ------- null} h -t 1.03944 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1789 -a 0 -x {9.0 10.0 899 ------- null} + -t 1.04002 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1781 -a 0 -x {9.0 10.0 895 ------- null} - -t 1.04002 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1781 -a 0 -x {9.0 10.0 895 ------- null} h -t 1.04002 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1781 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.04002 -s 0 -d 9 -p ack -e 40 -c 0 -i 1784 -a 0 -x {10.0 9.0 887 ------- null} + -t 1.04002 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1795 -a 0 -x {9.0 10.0 902 ------- null} - -t 1.04002 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1795 -a 0 -x {9.0 10.0 902 ------- null} h -t 1.04002 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1795 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.0403 -s 0 -d 9 -p ack -e 40 -c 0 -i 1788 -a 0 -x {10.0 9.0 889 ------- null} - -t 1.0403 -s 0 -d 9 -p ack -e 40 -c 0 -i 1788 -a 0 -x {10.0 9.0 889 ------- null} h -t 1.0403 -s 0 -d 9 -p ack -e 40 -c 0 -i 1788 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.04035 -s 10 -d 7 -p ack -e 40 -c 0 -i 1792 -a 0 -x {10.0 9.0 891 ------- null} + -t 1.04035 -s 7 -d 0 -p ack -e 40 -c 0 -i 1792 -a 0 -x {10.0 9.0 891 ------- null} h -t 1.04035 -s 7 -d 8 -p ack -e 40 -c 0 -i 1792 -a 0 -x {10.0 9.0 891 ------- null} r -t 1.04046 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1791 -a 0 -x {9.0 10.0 900 ------- null} + -t 1.04046 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1791 -a 0 -x {9.0 10.0 900 ------- null} h -t 1.04046 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1791 -a 0 -x {9.0 10.0 900 ------- null} r -t 1.0405 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1777 -a 0 -x {9.0 10.0 893 ------- null} + -t 1.0405 -s 10 -d 7 -p ack -e 40 -c 0 -i 1796 -a 0 -x {10.0 9.0 893 ------- null} - -t 1.0405 -s 10 -d 7 -p ack -e 40 -c 0 -i 1796 -a 0 -x {10.0 9.0 893 ------- null} h -t 1.0405 -s 10 -d 7 -p ack -e 40 -c 0 -i 1796 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.04104 -s 0 -d 9 -p ack -e 40 -c 0 -i 1786 -a 0 -x {10.0 9.0 888 ------- null} + -t 1.04104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1797 -a 0 -x {9.0 10.0 903 ------- null} - -t 1.04104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1797 -a 0 -x {9.0 10.0 903 ------- null} h -t 1.04104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1797 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.04114 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1783 -a 0 -x {9.0 10.0 896 ------- null} - -t 1.04114 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1783 -a 0 -x {9.0 10.0 896 ------- null} h -t 1.04114 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1783 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.0413 -s 0 -d 9 -p ack -e 40 -c 0 -i 1790 -a 0 -x {10.0 9.0 890 ------- null} - -t 1.0413 -s 0 -d 9 -p ack -e 40 -c 0 -i 1790 -a 0 -x {10.0 9.0 890 ------- null} h -t 1.0413 -s 0 -d 9 -p ack -e 40 -c 0 -i 1790 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.04144 -s 10 -d 7 -p ack -e 40 -c 0 -i 1794 -a 0 -x {10.0 9.0 892 ------- null} + -t 1.04144 -s 7 -d 0 -p ack -e 40 -c 0 -i 1794 -a 0 -x {10.0 9.0 892 ------- null} h -t 1.04144 -s 7 -d 8 -p ack -e 40 -c 0 -i 1794 -a 0 -x {10.0 9.0 892 ------- null} r -t 1.04155 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1793 -a 0 -x {9.0 10.0 901 ------- null} + -t 1.04155 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1793 -a 0 -x {9.0 10.0 901 ------- null} h -t 1.04155 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1793 -a 0 -x {9.0 10.0 901 ------- null} r -t 1.04173 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1779 -a 0 -x {9.0 10.0 894 ------- null} + -t 1.04173 -s 10 -d 7 -p ack -e 40 -c 0 -i 1798 -a 0 -x {10.0 9.0 894 ------- null} - -t 1.04173 -s 10 -d 7 -p ack -e 40 -c 0 -i 1798 -a 0 -x {10.0 9.0 894 ------- null} h -t 1.04173 -s 10 -d 7 -p ack -e 40 -c 0 -i 1798 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.04222 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1785 -a 0 -x {9.0 10.0 897 ------- null} - -t 1.04222 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1785 -a 0 -x {9.0 10.0 897 ------- null} h -t 1.04222 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1785 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.04229 -s 0 -d 9 -p ack -e 40 -c 0 -i 1792 -a 0 -x {10.0 9.0 891 ------- null} - -t 1.04229 -s 0 -d 9 -p ack -e 40 -c 0 -i 1792 -a 0 -x {10.0 9.0 891 ------- null} h -t 1.04229 -s 0 -d 9 -p ack -e 40 -c 0 -i 1792 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.04234 -s 0 -d 9 -p ack -e 40 -c 0 -i 1788 -a 0 -x {10.0 9.0 889 ------- null} + -t 1.04234 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1799 -a 0 -x {9.0 10.0 904 ------- null} - -t 1.04234 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1799 -a 0 -x {9.0 10.0 904 ------- null} h -t 1.04234 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1799 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.04253 -s 10 -d 7 -p ack -e 40 -c 0 -i 1796 -a 0 -x {10.0 9.0 893 ------- null} + -t 1.04253 -s 7 -d 0 -p ack -e 40 -c 0 -i 1796 -a 0 -x {10.0 9.0 893 ------- null} h -t 1.04253 -s 7 -d 8 -p ack -e 40 -c 0 -i 1796 -a 0 -x {10.0 9.0 893 ------- null} r -t 1.04282 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1781 -a 0 -x {9.0 10.0 895 ------- null} + -t 1.04282 -s 10 -d 7 -p ack -e 40 -c 0 -i 1800 -a 0 -x {10.0 9.0 895 ------- null} - -t 1.04282 -s 10 -d 7 -p ack -e 40 -c 0 -i 1800 -a 0 -x {10.0 9.0 895 ------- null} h -t 1.04282 -s 10 -d 7 -p ack -e 40 -c 0 -i 1800 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.04282 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1795 -a 0 -x {9.0 10.0 902 ------- null} + -t 1.04282 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1795 -a 0 -x {9.0 10.0 902 ------- null} h -t 1.04282 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1795 -a 0 -x {9.0 10.0 902 ------- null} + -t 1.04331 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1787 -a 0 -x {9.0 10.0 898 ------- null} - -t 1.04331 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1787 -a 0 -x {9.0 10.0 898 ------- null} h -t 1.04331 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1787 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.04333 -s 0 -d 9 -p ack -e 40 -c 0 -i 1790 -a 0 -x {10.0 9.0 890 ------- null} + -t 1.04333 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1801 -a 0 -x {9.0 10.0 905 ------- null} - -t 1.04333 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1801 -a 0 -x {9.0 10.0 905 ------- null} h -t 1.04333 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1801 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.04346 -s 0 -d 9 -p ack -e 40 -c 0 -i 1794 -a 0 -x {10.0 9.0 892 ------- null} - -t 1.04346 -s 0 -d 9 -p ack -e 40 -c 0 -i 1794 -a 0 -x {10.0 9.0 892 ------- null} h -t 1.04346 -s 0 -d 9 -p ack -e 40 -c 0 -i 1794 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.04376 -s 10 -d 7 -p ack -e 40 -c 0 -i 1798 -a 0 -x {10.0 9.0 894 ------- null} + -t 1.04376 -s 7 -d 0 -p ack -e 40 -c 0 -i 1798 -a 0 -x {10.0 9.0 894 ------- null} h -t 1.04376 -s 7 -d 8 -p ack -e 40 -c 0 -i 1798 -a 0 -x {10.0 9.0 894 ------- null} r -t 1.04384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1797 -a 0 -x {9.0 10.0 903 ------- null} + -t 1.04384 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1797 -a 0 -x {9.0 10.0 903 ------- null} h -t 1.04384 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1797 -a 0 -x {9.0 10.0 903 ------- null} r -t 1.04394 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1783 -a 0 -x {9.0 10.0 896 ------- null} + -t 1.04394 -s 10 -d 7 -p ack -e 40 -c 0 -i 1802 -a 0 -x {10.0 9.0 896 ------- null} - -t 1.04394 -s 10 -d 7 -p ack -e 40 -c 0 -i 1802 -a 0 -x {10.0 9.0 896 ------- null} h -t 1.04394 -s 10 -d 7 -p ack -e 40 -c 0 -i 1802 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.04432 -s 0 -d 9 -p ack -e 40 -c 0 -i 1792 -a 0 -x {10.0 9.0 891 ------- null} + -t 1.04432 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1803 -a 0 -x {9.0 10.0 906 ------- null} - -t 1.04432 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1803 -a 0 -x {9.0 10.0 906 ------- null} h -t 1.04432 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1803 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.0444 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1789 -a 0 -x {9.0 10.0 899 ------- null} - -t 1.0444 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1789 -a 0 -x {9.0 10.0 899 ------- null} h -t 1.0444 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1789 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.0445 -s 0 -d 9 -p ack -e 40 -c 0 -i 1796 -a 0 -x {10.0 9.0 893 ------- null} - -t 1.0445 -s 0 -d 9 -p ack -e 40 -c 0 -i 1796 -a 0 -x {10.0 9.0 893 ------- null} h -t 1.0445 -s 0 -d 9 -p ack -e 40 -c 0 -i 1796 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.04485 -s 10 -d 7 -p ack -e 40 -c 0 -i 1800 -a 0 -x {10.0 9.0 895 ------- null} + -t 1.04485 -s 7 -d 0 -p ack -e 40 -c 0 -i 1800 -a 0 -x {10.0 9.0 895 ------- null} h -t 1.04485 -s 7 -d 8 -p ack -e 40 -c 0 -i 1800 -a 0 -x {10.0 9.0 895 ------- null} r -t 1.04502 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1785 -a 0 -x {9.0 10.0 897 ------- null} + -t 1.04502 -s 10 -d 7 -p ack -e 40 -c 0 -i 1804 -a 0 -x {10.0 9.0 897 ------- null} - -t 1.04502 -s 10 -d 7 -p ack -e 40 -c 0 -i 1804 -a 0 -x {10.0 9.0 897 ------- null} h -t 1.04502 -s 10 -d 7 -p ack -e 40 -c 0 -i 1804 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.04514 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1799 -a 0 -x {9.0 10.0 904 ------- null} + -t 1.04514 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1799 -a 0 -x {9.0 10.0 904 ------- null} h -t 1.04514 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1799 -a 0 -x {9.0 10.0 904 ------- null} + -t 1.04549 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1791 -a 0 -x {9.0 10.0 900 ------- null} - -t 1.04549 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1791 -a 0 -x {9.0 10.0 900 ------- null} h -t 1.04549 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1791 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.04549 -s 0 -d 9 -p ack -e 40 -c 0 -i 1794 -a 0 -x {10.0 9.0 892 ------- null} + -t 1.04549 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1805 -a 0 -x {9.0 10.0 907 ------- null} - -t 1.04549 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1805 -a 0 -x {9.0 10.0 907 ------- null} h -t 1.04549 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1805 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.04574 -s 0 -d 9 -p ack -e 40 -c 0 -i 1798 -a 0 -x {10.0 9.0 894 ------- null} - -t 1.04574 -s 0 -d 9 -p ack -e 40 -c 0 -i 1798 -a 0 -x {10.0 9.0 894 ------- null} h -t 1.04574 -s 0 -d 9 -p ack -e 40 -c 0 -i 1798 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.04597 -s 10 -d 7 -p ack -e 40 -c 0 -i 1802 -a 0 -x {10.0 9.0 896 ------- null} + -t 1.04597 -s 7 -d 0 -p ack -e 40 -c 0 -i 1802 -a 0 -x {10.0 9.0 896 ------- null} h -t 1.04597 -s 7 -d 8 -p ack -e 40 -c 0 -i 1802 -a 0 -x {10.0 9.0 896 ------- null} r -t 1.04611 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1787 -a 0 -x {9.0 10.0 898 ------- null} + -t 1.04611 -s 10 -d 7 -p ack -e 40 -c 0 -i 1806 -a 0 -x {10.0 9.0 898 ------- null} - -t 1.04611 -s 10 -d 7 -p ack -e 40 -c 0 -i 1806 -a 0 -x {10.0 9.0 898 ------- null} h -t 1.04611 -s 10 -d 7 -p ack -e 40 -c 0 -i 1806 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.04613 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1801 -a 0 -x {9.0 10.0 905 ------- null} + -t 1.04613 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1801 -a 0 -x {9.0 10.0 905 ------- null} h -t 1.04613 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1801 -a 0 -x {9.0 10.0 905 ------- null} r -t 1.04653 -s 0 -d 9 -p ack -e 40 -c 0 -i 1796 -a 0 -x {10.0 9.0 893 ------- null} + -t 1.04653 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1807 -a 0 -x {9.0 10.0 908 ------- null} - -t 1.04653 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1807 -a 0 -x {9.0 10.0 908 ------- null} h -t 1.04653 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1807 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.04658 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1793 -a 0 -x {9.0 10.0 901 ------- null} - -t 1.04658 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1793 -a 0 -x {9.0 10.0 901 ------- null} h -t 1.04658 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1793 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.04682 -s 0 -d 9 -p ack -e 40 -c 0 -i 1800 -a 0 -x {10.0 9.0 895 ------- null} - -t 1.04682 -s 0 -d 9 -p ack -e 40 -c 0 -i 1800 -a 0 -x {10.0 9.0 895 ------- null} h -t 1.04682 -s 0 -d 9 -p ack -e 40 -c 0 -i 1800 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.04706 -s 10 -d 7 -p ack -e 40 -c 0 -i 1804 -a 0 -x {10.0 9.0 897 ------- null} + -t 1.04706 -s 7 -d 0 -p ack -e 40 -c 0 -i 1804 -a 0 -x {10.0 9.0 897 ------- null} h -t 1.04706 -s 7 -d 8 -p ack -e 40 -c 0 -i 1804 -a 0 -x {10.0 9.0 897 ------- null} r -t 1.04712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1803 -a 0 -x {9.0 10.0 906 ------- null} + -t 1.04712 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1803 -a 0 -x {9.0 10.0 906 ------- null} h -t 1.04712 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1803 -a 0 -x {9.0 10.0 906 ------- null} r -t 1.0472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1789 -a 0 -x {9.0 10.0 899 ------- null} + -t 1.0472 -s 10 -d 7 -p ack -e 40 -c 0 -i 1808 -a 0 -x {10.0 9.0 899 ------- null} - -t 1.0472 -s 10 -d 7 -p ack -e 40 -c 0 -i 1808 -a 0 -x {10.0 9.0 899 ------- null} h -t 1.0472 -s 10 -d 7 -p ack -e 40 -c 0 -i 1808 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.04766 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1795 -a 0 -x {9.0 10.0 902 ------- null} - -t 1.04766 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1795 -a 0 -x {9.0 10.0 902 ------- null} h -t 1.04766 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1795 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.04778 -s 0 -d 9 -p ack -e 40 -c 0 -i 1798 -a 0 -x {10.0 9.0 894 ------- null} + -t 1.04778 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1809 -a 0 -x {9.0 10.0 909 ------- null} - -t 1.04778 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1809 -a 0 -x {9.0 10.0 909 ------- null} h -t 1.04778 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1809 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.04786 -s 0 -d 9 -p ack -e 40 -c 0 -i 1802 -a 0 -x {10.0 9.0 896 ------- null} - -t 1.04786 -s 0 -d 9 -p ack -e 40 -c 0 -i 1802 -a 0 -x {10.0 9.0 896 ------- null} h -t 1.04786 -s 0 -d 9 -p ack -e 40 -c 0 -i 1802 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.04814 -s 10 -d 7 -p ack -e 40 -c 0 -i 1806 -a 0 -x {10.0 9.0 898 ------- null} + -t 1.04814 -s 7 -d 0 -p ack -e 40 -c 0 -i 1806 -a 0 -x {10.0 9.0 898 ------- null} h -t 1.04814 -s 7 -d 8 -p ack -e 40 -c 0 -i 1806 -a 0 -x {10.0 9.0 898 ------- null} r -t 1.04829 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1791 -a 0 -x {9.0 10.0 900 ------- null} + -t 1.04829 -s 10 -d 7 -p ack -e 40 -c 0 -i 1810 -a 0 -x {10.0 9.0 900 ------- null} - -t 1.04829 -s 10 -d 7 -p ack -e 40 -c 0 -i 1810 -a 0 -x {10.0 9.0 900 ------- null} h -t 1.04829 -s 10 -d 7 -p ack -e 40 -c 0 -i 1810 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.04829 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1805 -a 0 -x {9.0 10.0 907 ------- null} + -t 1.04829 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1805 -a 0 -x {9.0 10.0 907 ------- null} h -t 1.04829 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1805 -a 0 -x {9.0 10.0 907 ------- null} + -t 1.04875 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1797 -a 0 -x {9.0 10.0 903 ------- null} - -t 1.04875 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1797 -a 0 -x {9.0 10.0 903 ------- null} h -t 1.04875 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1797 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.04885 -s 0 -d 9 -p ack -e 40 -c 0 -i 1800 -a 0 -x {10.0 9.0 895 ------- null} + -t 1.04885 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1811 -a 0 -x {9.0 10.0 910 ------- null} - -t 1.04885 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1811 -a 0 -x {9.0 10.0 910 ------- null} h -t 1.04885 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1811 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.04902 -s 0 -d 9 -p ack -e 40 -c 0 -i 1804 -a 0 -x {10.0 9.0 897 ------- null} - -t 1.04902 -s 0 -d 9 -p ack -e 40 -c 0 -i 1804 -a 0 -x {10.0 9.0 897 ------- null} h -t 1.04902 -s 0 -d 9 -p ack -e 40 -c 0 -i 1804 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.04923 -s 10 -d 7 -p ack -e 40 -c 0 -i 1808 -a 0 -x {10.0 9.0 899 ------- null} + -t 1.04923 -s 7 -d 0 -p ack -e 40 -c 0 -i 1808 -a 0 -x {10.0 9.0 899 ------- null} h -t 1.04923 -s 7 -d 8 -p ack -e 40 -c 0 -i 1808 -a 0 -x {10.0 9.0 899 ------- null} r -t 1.04933 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1807 -a 0 -x {9.0 10.0 908 ------- null} + -t 1.04933 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1807 -a 0 -x {9.0 10.0 908 ------- null} h -t 1.04933 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1807 -a 0 -x {9.0 10.0 908 ------- null} r -t 1.04938 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1793 -a 0 -x {9.0 10.0 901 ------- null} + -t 1.04938 -s 10 -d 7 -p ack -e 40 -c 0 -i 1812 -a 0 -x {10.0 9.0 901 ------- null} - -t 1.04938 -s 10 -d 7 -p ack -e 40 -c 0 -i 1812 -a 0 -x {10.0 9.0 901 ------- null} h -t 1.04938 -s 10 -d 7 -p ack -e 40 -c 0 -i 1812 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.04989 -s 0 -d 9 -p ack -e 40 -c 0 -i 1802 -a 0 -x {10.0 9.0 896 ------- null} + -t 1.04989 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1813 -a 0 -x {9.0 10.0 911 ------- null} - -t 1.04989 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1813 -a 0 -x {9.0 10.0 911 ------- null} h -t 1.04989 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1813 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.05003 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1799 -a 0 -x {9.0 10.0 904 ------- null} - -t 1.05003 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1799 -a 0 -x {9.0 10.0 904 ------- null} h -t 1.05003 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1799 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.05018 -s 0 -d 9 -p ack -e 40 -c 0 -i 1806 -a 0 -x {10.0 9.0 898 ------- null} - -t 1.05018 -s 0 -d 9 -p ack -e 40 -c 0 -i 1806 -a 0 -x {10.0 9.0 898 ------- null} h -t 1.05018 -s 0 -d 9 -p ack -e 40 -c 0 -i 1806 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.05032 -s 10 -d 7 -p ack -e 40 -c 0 -i 1810 -a 0 -x {10.0 9.0 900 ------- null} + -t 1.05032 -s 7 -d 0 -p ack -e 40 -c 0 -i 1810 -a 0 -x {10.0 9.0 900 ------- null} h -t 1.05032 -s 7 -d 8 -p ack -e 40 -c 0 -i 1810 -a 0 -x {10.0 9.0 900 ------- null} r -t 1.05046 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1795 -a 0 -x {9.0 10.0 902 ------- null} + -t 1.05046 -s 10 -d 7 -p ack -e 40 -c 0 -i 1814 -a 0 -x {10.0 9.0 902 ------- null} - -t 1.05046 -s 10 -d 7 -p ack -e 40 -c 0 -i 1814 -a 0 -x {10.0 9.0 902 ------- null} h -t 1.05046 -s 10 -d 7 -p ack -e 40 -c 0 -i 1814 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.05058 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1809 -a 0 -x {9.0 10.0 909 ------- null} + -t 1.05058 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1809 -a 0 -x {9.0 10.0 909 ------- null} h -t 1.05058 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1809 -a 0 -x {9.0 10.0 909 ------- null} r -t 1.05106 -s 0 -d 9 -p ack -e 40 -c 0 -i 1804 -a 0 -x {10.0 9.0 897 ------- null} + -t 1.05106 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1815 -a 0 -x {9.0 10.0 912 ------- null} - -t 1.05106 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1815 -a 0 -x {9.0 10.0 912 ------- null} h -t 1.05106 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1815 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.05112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1801 -a 0 -x {9.0 10.0 905 ------- null} - -t 1.05112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1801 -a 0 -x {9.0 10.0 905 ------- null} h -t 1.05112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1801 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.05128 -s 0 -d 9 -p ack -e 40 -c 0 -i 1808 -a 0 -x {10.0 9.0 899 ------- null} - -t 1.05128 -s 0 -d 9 -p ack -e 40 -c 0 -i 1808 -a 0 -x {10.0 9.0 899 ------- null} h -t 1.05128 -s 0 -d 9 -p ack -e 40 -c 0 -i 1808 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.05141 -s 10 -d 7 -p ack -e 40 -c 0 -i 1812 -a 0 -x {10.0 9.0 901 ------- null} + -t 1.05141 -s 7 -d 0 -p ack -e 40 -c 0 -i 1812 -a 0 -x {10.0 9.0 901 ------- null} h -t 1.05141 -s 7 -d 8 -p ack -e 40 -c 0 -i 1812 -a 0 -x {10.0 9.0 901 ------- null} r -t 1.05155 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1797 -a 0 -x {9.0 10.0 903 ------- null} + -t 1.05155 -s 10 -d 7 -p ack -e 40 -c 0 -i 1816 -a 0 -x {10.0 9.0 903 ------- null} - -t 1.05155 -s 10 -d 7 -p ack -e 40 -c 0 -i 1816 -a 0 -x {10.0 9.0 903 ------- null} h -t 1.05155 -s 10 -d 7 -p ack -e 40 -c 0 -i 1816 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.05165 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1811 -a 0 -x {9.0 10.0 910 ------- null} + -t 1.05165 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1811 -a 0 -x {9.0 10.0 910 ------- null} h -t 1.05165 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1811 -a 0 -x {9.0 10.0 910 ------- null} + -t 1.05221 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1803 -a 0 -x {9.0 10.0 906 ------- null} - -t 1.05221 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1803 -a 0 -x {9.0 10.0 906 ------- null} h -t 1.05221 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1803 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.05221 -s 0 -d 9 -p ack -e 40 -c 0 -i 1806 -a 0 -x {10.0 9.0 898 ------- null} + -t 1.05221 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1817 -a 0 -x {9.0 10.0 913 ------- null} - -t 1.05221 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1817 -a 0 -x {9.0 10.0 913 ------- null} h -t 1.05221 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1817 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.05246 -s 0 -d 9 -p ack -e 40 -c 0 -i 1810 -a 0 -x {10.0 9.0 900 ------- null} - -t 1.05246 -s 0 -d 9 -p ack -e 40 -c 0 -i 1810 -a 0 -x {10.0 9.0 900 ------- null} h -t 1.05246 -s 0 -d 9 -p ack -e 40 -c 0 -i 1810 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.0525 -s 10 -d 7 -p ack -e 40 -c 0 -i 1814 -a 0 -x {10.0 9.0 902 ------- null} + -t 1.0525 -s 7 -d 0 -p ack -e 40 -c 0 -i 1814 -a 0 -x {10.0 9.0 902 ------- null} h -t 1.0525 -s 7 -d 8 -p ack -e 40 -c 0 -i 1814 -a 0 -x {10.0 9.0 902 ------- null} r -t 1.05269 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1813 -a 0 -x {9.0 10.0 911 ------- null} + -t 1.05269 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1813 -a 0 -x {9.0 10.0 911 ------- null} h -t 1.05269 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1813 -a 0 -x {9.0 10.0 911 ------- null} r -t 1.05283 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1799 -a 0 -x {9.0 10.0 904 ------- null} + -t 1.05283 -s 10 -d 7 -p ack -e 40 -c 0 -i 1818 -a 0 -x {10.0 9.0 904 ------- null} - -t 1.05283 -s 10 -d 7 -p ack -e 40 -c 0 -i 1818 -a 0 -x {10.0 9.0 904 ------- null} h -t 1.05283 -s 10 -d 7 -p ack -e 40 -c 0 -i 1818 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.0533 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1805 -a 0 -x {9.0 10.0 907 ------- null} - -t 1.0533 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1805 -a 0 -x {9.0 10.0 907 ------- null} h -t 1.0533 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1805 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.05331 -s 0 -d 9 -p ack -e 40 -c 0 -i 1808 -a 0 -x {10.0 9.0 899 ------- null} + -t 1.05331 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1819 -a 0 -x {9.0 10.0 914 ------- null} - -t 1.05331 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1819 -a 0 -x {9.0 10.0 914 ------- null} h -t 1.05331 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1819 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.05341 -s 0 -d 9 -p ack -e 40 -c 0 -i 1812 -a 0 -x {10.0 9.0 901 ------- null} - -t 1.05341 -s 0 -d 9 -p ack -e 40 -c 0 -i 1812 -a 0 -x {10.0 9.0 901 ------- null} h -t 1.05341 -s 0 -d 9 -p ack -e 40 -c 0 -i 1812 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.05358 -s 10 -d 7 -p ack -e 40 -c 0 -i 1816 -a 0 -x {10.0 9.0 903 ------- null} + -t 1.05358 -s 7 -d 0 -p ack -e 40 -c 0 -i 1816 -a 0 -x {10.0 9.0 903 ------- null} h -t 1.05358 -s 7 -d 8 -p ack -e 40 -c 0 -i 1816 -a 0 -x {10.0 9.0 903 ------- null} r -t 1.05386 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1815 -a 0 -x {9.0 10.0 912 ------- null} + -t 1.05386 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1815 -a 0 -x {9.0 10.0 912 ------- null} h -t 1.05386 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1815 -a 0 -x {9.0 10.0 912 ------- null} r -t 1.05392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1801 -a 0 -x {9.0 10.0 905 ------- null} + -t 1.05392 -s 10 -d 7 -p ack -e 40 -c 0 -i 1820 -a 0 -x {10.0 9.0 905 ------- null} - -t 1.05392 -s 10 -d 7 -p ack -e 40 -c 0 -i 1820 -a 0 -x {10.0 9.0 905 ------- null} h -t 1.05392 -s 10 -d 7 -p ack -e 40 -c 0 -i 1820 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.05438 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1807 -a 0 -x {9.0 10.0 908 ------- null} - -t 1.05438 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1807 -a 0 -x {9.0 10.0 908 ------- null} h -t 1.05438 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1807 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.0545 -s 0 -d 9 -p ack -e 40 -c 0 -i 1810 -a 0 -x {10.0 9.0 900 ------- null} + -t 1.0545 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1821 -a 0 -x {9.0 10.0 915 ------- null} - -t 1.0545 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1821 -a 0 -x {9.0 10.0 915 ------- null} h -t 1.0545 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1821 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.05466 -s 0 -d 9 -p ack -e 40 -c 0 -i 1814 -a 0 -x {10.0 9.0 902 ------- null} - -t 1.05466 -s 0 -d 9 -p ack -e 40 -c 0 -i 1814 -a 0 -x {10.0 9.0 902 ------- null} h -t 1.05466 -s 0 -d 9 -p ack -e 40 -c 0 -i 1814 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.05486 -s 10 -d 7 -p ack -e 40 -c 0 -i 1818 -a 0 -x {10.0 9.0 904 ------- null} + -t 1.05486 -s 7 -d 0 -p ack -e 40 -c 0 -i 1818 -a 0 -x {10.0 9.0 904 ------- null} h -t 1.05486 -s 7 -d 8 -p ack -e 40 -c 0 -i 1818 -a 0 -x {10.0 9.0 904 ------- null} r -t 1.05501 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1803 -a 0 -x {9.0 10.0 906 ------- null} + -t 1.05501 -s 10 -d 7 -p ack -e 40 -c 0 -i 1822 -a 0 -x {10.0 9.0 906 ------- null} - -t 1.05501 -s 10 -d 7 -p ack -e 40 -c 0 -i 1822 -a 0 -x {10.0 9.0 906 ------- null} h -t 1.05501 -s 10 -d 7 -p ack -e 40 -c 0 -i 1822 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.05501 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1817 -a 0 -x {9.0 10.0 913 ------- null} + -t 1.05501 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1817 -a 0 -x {9.0 10.0 913 ------- null} h -t 1.05501 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1817 -a 0 -x {9.0 10.0 913 ------- null} r -t 1.05544 -s 0 -d 9 -p ack -e 40 -c 0 -i 1812 -a 0 -x {10.0 9.0 901 ------- null} + -t 1.05544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1823 -a 0 -x {9.0 10.0 916 ------- null} - -t 1.05544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1823 -a 0 -x {9.0 10.0 916 ------- null} h -t 1.05544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1823 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.05566 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1809 -a 0 -x {9.0 10.0 909 ------- null} - -t 1.05566 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1809 -a 0 -x {9.0 10.0 909 ------- null} h -t 1.05566 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1809 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.05576 -s 0 -d 9 -p ack -e 40 -c 0 -i 1816 -a 0 -x {10.0 9.0 903 ------- null} - -t 1.05576 -s 0 -d 9 -p ack -e 40 -c 0 -i 1816 -a 0 -x {10.0 9.0 903 ------- null} h -t 1.05576 -s 0 -d 9 -p ack -e 40 -c 0 -i 1816 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.05595 -s 10 -d 7 -p ack -e 40 -c 0 -i 1820 -a 0 -x {10.0 9.0 905 ------- null} + -t 1.05595 -s 7 -d 0 -p ack -e 40 -c 0 -i 1820 -a 0 -x {10.0 9.0 905 ------- null} h -t 1.05595 -s 7 -d 8 -p ack -e 40 -c 0 -i 1820 -a 0 -x {10.0 9.0 905 ------- null} r -t 1.0561 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1805 -a 0 -x {9.0 10.0 907 ------- null} + -t 1.0561 -s 10 -d 7 -p ack -e 40 -c 0 -i 1824 -a 0 -x {10.0 9.0 907 ------- null} - -t 1.0561 -s 10 -d 7 -p ack -e 40 -c 0 -i 1824 -a 0 -x {10.0 9.0 907 ------- null} h -t 1.0561 -s 10 -d 7 -p ack -e 40 -c 0 -i 1824 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.05611 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1819 -a 0 -x {9.0 10.0 914 ------- null} + -t 1.05611 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1819 -a 0 -x {9.0 10.0 914 ------- null} h -t 1.05611 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1819 -a 0 -x {9.0 10.0 914 ------- null} r -t 1.05669 -s 0 -d 9 -p ack -e 40 -c 0 -i 1814 -a 0 -x {10.0 9.0 902 ------- null} + -t 1.05669 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1825 -a 0 -x {9.0 10.0 917 ------- null} - -t 1.05669 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1825 -a 0 -x {9.0 10.0 917 ------- null} h -t 1.05669 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1825 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.05675 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1811 -a 0 -x {9.0 10.0 910 ------- null} - -t 1.05675 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1811 -a 0 -x {9.0 10.0 910 ------- null} h -t 1.05675 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1811 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.05693 -s 0 -d 9 -p ack -e 40 -c 0 -i 1818 -a 0 -x {10.0 9.0 904 ------- null} - -t 1.05693 -s 0 -d 9 -p ack -e 40 -c 0 -i 1818 -a 0 -x {10.0 9.0 904 ------- null} h -t 1.05693 -s 0 -d 9 -p ack -e 40 -c 0 -i 1818 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.05704 -s 10 -d 7 -p ack -e 40 -c 0 -i 1822 -a 0 -x {10.0 9.0 906 ------- null} + -t 1.05704 -s 7 -d 0 -p ack -e 40 -c 0 -i 1822 -a 0 -x {10.0 9.0 906 ------- null} h -t 1.05704 -s 7 -d 8 -p ack -e 40 -c 0 -i 1822 -a 0 -x {10.0 9.0 906 ------- null} r -t 1.05718 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1807 -a 0 -x {9.0 10.0 908 ------- null} + -t 1.05718 -s 10 -d 7 -p ack -e 40 -c 0 -i 1826 -a 0 -x {10.0 9.0 908 ------- null} - -t 1.05718 -s 10 -d 7 -p ack -e 40 -c 0 -i 1826 -a 0 -x {10.0 9.0 908 ------- null} h -t 1.05718 -s 10 -d 7 -p ack -e 40 -c 0 -i 1826 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.0573 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1821 -a 0 -x {9.0 10.0 915 ------- null} + -t 1.0573 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1821 -a 0 -x {9.0 10.0 915 ------- null} h -t 1.0573 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1821 -a 0 -x {9.0 10.0 915 ------- null} r -t 1.05779 -s 0 -d 9 -p ack -e 40 -c 0 -i 1816 -a 0 -x {10.0 9.0 903 ------- null} + -t 1.05779 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1827 -a 0 -x {9.0 10.0 918 ------- null} - -t 1.05779 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1827 -a 0 -x {9.0 10.0 918 ------- null} h -t 1.05779 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1827 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.05784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1813 -a 0 -x {9.0 10.0 911 ------- null} - -t 1.05784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1813 -a 0 -x {9.0 10.0 911 ------- null} h -t 1.05784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1813 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.05808 -s 0 -d 9 -p ack -e 40 -c 0 -i 1820 -a 0 -x {10.0 9.0 905 ------- null} - -t 1.05808 -s 0 -d 9 -p ack -e 40 -c 0 -i 1820 -a 0 -x {10.0 9.0 905 ------- null} h -t 1.05808 -s 0 -d 9 -p ack -e 40 -c 0 -i 1820 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.05813 -s 10 -d 7 -p ack -e 40 -c 0 -i 1824 -a 0 -x {10.0 9.0 907 ------- null} + -t 1.05813 -s 7 -d 0 -p ack -e 40 -c 0 -i 1824 -a 0 -x {10.0 9.0 907 ------- null} h -t 1.05813 -s 7 -d 8 -p ack -e 40 -c 0 -i 1824 -a 0 -x {10.0 9.0 907 ------- null} r -t 1.05824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1823 -a 0 -x {9.0 10.0 916 ------- null} + -t 1.05824 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1823 -a 0 -x {9.0 10.0 916 ------- null} h -t 1.05824 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1823 -a 0 -x {9.0 10.0 916 ------- null} r -t 1.05846 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1809 -a 0 -x {9.0 10.0 909 ------- null} + -t 1.05846 -s 10 -d 7 -p ack -e 40 -c 0 -i 1828 -a 0 -x {10.0 9.0 909 ------- null} - -t 1.05846 -s 10 -d 7 -p ack -e 40 -c 0 -i 1828 -a 0 -x {10.0 9.0 909 ------- null} h -t 1.05846 -s 10 -d 7 -p ack -e 40 -c 0 -i 1828 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.05893 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1815 -a 0 -x {9.0 10.0 912 ------- null} - -t 1.05893 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1815 -a 0 -x {9.0 10.0 912 ------- null} h -t 1.05893 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1815 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.05896 -s 0 -d 9 -p ack -e 40 -c 0 -i 1818 -a 0 -x {10.0 9.0 904 ------- null} + -t 1.05896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1829 -a 0 -x {9.0 10.0 919 ------- null} - -t 1.05896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1829 -a 0 -x {9.0 10.0 919 ------- null} h -t 1.05896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1829 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.05909 -s 0 -d 9 -p ack -e 40 -c 0 -i 1822 -a 0 -x {10.0 9.0 906 ------- null} - -t 1.05909 -s 0 -d 9 -p ack -e 40 -c 0 -i 1822 -a 0 -x {10.0 9.0 906 ------- null} h -t 1.05909 -s 0 -d 9 -p ack -e 40 -c 0 -i 1822 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.05922 -s 10 -d 7 -p ack -e 40 -c 0 -i 1826 -a 0 -x {10.0 9.0 908 ------- null} + -t 1.05922 -s 7 -d 0 -p ack -e 40 -c 0 -i 1826 -a 0 -x {10.0 9.0 908 ------- null} h -t 1.05922 -s 7 -d 8 -p ack -e 40 -c 0 -i 1826 -a 0 -x {10.0 9.0 908 ------- null} r -t 1.05949 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1825 -a 0 -x {9.0 10.0 917 ------- null} + -t 1.05949 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1825 -a 0 -x {9.0 10.0 917 ------- null} h -t 1.05949 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1825 -a 0 -x {9.0 10.0 917 ------- null} r -t 1.05955 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1811 -a 0 -x {9.0 10.0 910 ------- null} + -t 1.05955 -s 10 -d 7 -p ack -e 40 -c 0 -i 1830 -a 0 -x {10.0 9.0 910 ------- null} - -t 1.05955 -s 10 -d 7 -p ack -e 40 -c 0 -i 1830 -a 0 -x {10.0 9.0 910 ------- null} h -t 1.05955 -s 10 -d 7 -p ack -e 40 -c 0 -i 1830 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.06002 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1817 -a 0 -x {9.0 10.0 913 ------- null} - -t 1.06002 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1817 -a 0 -x {9.0 10.0 913 ------- null} h -t 1.06002 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1817 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.06011 -s 0 -d 9 -p ack -e 40 -c 0 -i 1820 -a 0 -x {10.0 9.0 905 ------- null} + -t 1.06011 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1831 -a 0 -x {9.0 10.0 920 ------- null} - -t 1.06011 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1831 -a 0 -x {9.0 10.0 920 ------- null} h -t 1.06011 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1831 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.06029 -s 0 -d 9 -p ack -e 40 -c 0 -i 1824 -a 0 -x {10.0 9.0 907 ------- null} - -t 1.06029 -s 0 -d 9 -p ack -e 40 -c 0 -i 1824 -a 0 -x {10.0 9.0 907 ------- null} h -t 1.06029 -s 0 -d 9 -p ack -e 40 -c 0 -i 1824 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.0605 -s 10 -d 7 -p ack -e 40 -c 0 -i 1828 -a 0 -x {10.0 9.0 909 ------- null} + -t 1.0605 -s 7 -d 0 -p ack -e 40 -c 0 -i 1828 -a 0 -x {10.0 9.0 909 ------- null} h -t 1.0605 -s 7 -d 8 -p ack -e 40 -c 0 -i 1828 -a 0 -x {10.0 9.0 909 ------- null} r -t 1.06059 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1827 -a 0 -x {9.0 10.0 918 ------- null} + -t 1.06059 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1827 -a 0 -x {9.0 10.0 918 ------- null} h -t 1.06059 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1827 -a 0 -x {9.0 10.0 918 ------- null} r -t 1.06064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1813 -a 0 -x {9.0 10.0 911 ------- null} + -t 1.06064 -s 10 -d 7 -p ack -e 40 -c 0 -i 1832 -a 0 -x {10.0 9.0 911 ------- null} - -t 1.06064 -s 10 -d 7 -p ack -e 40 -c 0 -i 1832 -a 0 -x {10.0 9.0 911 ------- null} h -t 1.06064 -s 10 -d 7 -p ack -e 40 -c 0 -i 1832 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.06112 -s 0 -d 9 -p ack -e 40 -c 0 -i 1822 -a 0 -x {10.0 9.0 906 ------- null} + -t 1.06112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1833 -a 0 -x {9.0 10.0 921 ------- null} - -t 1.06112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1833 -a 0 -x {9.0 10.0 921 ------- null} h -t 1.06112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1833 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.06134 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1819 -a 0 -x {9.0 10.0 914 ------- null} - -t 1.06134 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1819 -a 0 -x {9.0 10.0 914 ------- null} h -t 1.06134 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1819 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.06144 -s 0 -d 9 -p ack -e 40 -c 0 -i 1826 -a 0 -x {10.0 9.0 908 ------- null} - -t 1.06144 -s 0 -d 9 -p ack -e 40 -c 0 -i 1826 -a 0 -x {10.0 9.0 908 ------- null} h -t 1.06144 -s 0 -d 9 -p ack -e 40 -c 0 -i 1826 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.06158 -s 10 -d 7 -p ack -e 40 -c 0 -i 1830 -a 0 -x {10.0 9.0 910 ------- null} + -t 1.06158 -s 7 -d 0 -p ack -e 40 -c 0 -i 1830 -a 0 -x {10.0 9.0 910 ------- null} h -t 1.06158 -s 7 -d 8 -p ack -e 40 -c 0 -i 1830 -a 0 -x {10.0 9.0 910 ------- null} r -t 1.06173 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1815 -a 0 -x {9.0 10.0 912 ------- null} + -t 1.06173 -s 10 -d 7 -p ack -e 40 -c 0 -i 1834 -a 0 -x {10.0 9.0 912 ------- null} - -t 1.06173 -s 10 -d 7 -p ack -e 40 -c 0 -i 1834 -a 0 -x {10.0 9.0 912 ------- null} h -t 1.06173 -s 10 -d 7 -p ack -e 40 -c 0 -i 1834 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.06176 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1829 -a 0 -x {9.0 10.0 919 ------- null} + -t 1.06176 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1829 -a 0 -x {9.0 10.0 919 ------- null} h -t 1.06176 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1829 -a 0 -x {9.0 10.0 919 ------- null} r -t 1.06232 -s 0 -d 9 -p ack -e 40 -c 0 -i 1824 -a 0 -x {10.0 9.0 907 ------- null} + -t 1.06232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1835 -a 0 -x {9.0 10.0 922 ------- null} - -t 1.06232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1835 -a 0 -x {9.0 10.0 922 ------- null} h -t 1.06232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1835 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.06243 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1821 -a 0 -x {9.0 10.0 915 ------- null} - -t 1.06243 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1821 -a 0 -x {9.0 10.0 915 ------- null} h -t 1.06243 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1821 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.06253 -s 0 -d 9 -p ack -e 40 -c 0 -i 1828 -a 0 -x {10.0 9.0 909 ------- null} - -t 1.06253 -s 0 -d 9 -p ack -e 40 -c 0 -i 1828 -a 0 -x {10.0 9.0 909 ------- null} h -t 1.06253 -s 0 -d 9 -p ack -e 40 -c 0 -i 1828 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.06267 -s 10 -d 7 -p ack -e 40 -c 0 -i 1832 -a 0 -x {10.0 9.0 911 ------- null} + -t 1.06267 -s 7 -d 0 -p ack -e 40 -c 0 -i 1832 -a 0 -x {10.0 9.0 911 ------- null} h -t 1.06267 -s 7 -d 8 -p ack -e 40 -c 0 -i 1832 -a 0 -x {10.0 9.0 911 ------- null} r -t 1.06282 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1817 -a 0 -x {9.0 10.0 913 ------- null} + -t 1.06282 -s 10 -d 7 -p ack -e 40 -c 0 -i 1836 -a 0 -x {10.0 9.0 913 ------- null} - -t 1.06282 -s 10 -d 7 -p ack -e 40 -c 0 -i 1836 -a 0 -x {10.0 9.0 913 ------- null} h -t 1.06282 -s 10 -d 7 -p ack -e 40 -c 0 -i 1836 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.06291 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1831 -a 0 -x {9.0 10.0 920 ------- null} + -t 1.06291 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1831 -a 0 -x {9.0 10.0 920 ------- null} h -t 1.06291 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1831 -a 0 -x {9.0 10.0 920 ------- null} r -t 1.06347 -s 0 -d 9 -p ack -e 40 -c 0 -i 1826 -a 0 -x {10.0 9.0 908 ------- null} + -t 1.06347 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1837 -a 0 -x {9.0 10.0 923 ------- null} - -t 1.06347 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1837 -a 0 -x {9.0 10.0 923 ------- null} h -t 1.06347 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1837 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.06352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1823 -a 0 -x {9.0 10.0 916 ------- null} - -t 1.06352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1823 -a 0 -x {9.0 10.0 916 ------- null} h -t 1.06352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1823 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.06371 -s 0 -d 9 -p ack -e 40 -c 0 -i 1830 -a 0 -x {10.0 9.0 910 ------- null} - -t 1.06371 -s 0 -d 9 -p ack -e 40 -c 0 -i 1830 -a 0 -x {10.0 9.0 910 ------- null} h -t 1.06371 -s 0 -d 9 -p ack -e 40 -c 0 -i 1830 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.06376 -s 10 -d 7 -p ack -e 40 -c 0 -i 1834 -a 0 -x {10.0 9.0 912 ------- null} + -t 1.06376 -s 7 -d 0 -p ack -e 40 -c 0 -i 1834 -a 0 -x {10.0 9.0 912 ------- null} h -t 1.06376 -s 7 -d 8 -p ack -e 40 -c 0 -i 1834 -a 0 -x {10.0 9.0 912 ------- null} r -t 1.06392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1833 -a 0 -x {9.0 10.0 921 ------- null} + -t 1.06392 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1833 -a 0 -x {9.0 10.0 921 ------- null} h -t 1.06392 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1833 -a 0 -x {9.0 10.0 921 ------- null} r -t 1.06414 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1819 -a 0 -x {9.0 10.0 914 ------- null} + -t 1.06414 -s 10 -d 7 -p ack -e 40 -c 0 -i 1838 -a 0 -x {10.0 9.0 914 ------- null} - -t 1.06414 -s 10 -d 7 -p ack -e 40 -c 0 -i 1838 -a 0 -x {10.0 9.0 914 ------- null} h -t 1.06414 -s 10 -d 7 -p ack -e 40 -c 0 -i 1838 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.06456 -s 0 -d 9 -p ack -e 40 -c 0 -i 1828 -a 0 -x {10.0 9.0 909 ------- null} + -t 1.06456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1839 -a 0 -x {9.0 10.0 924 ------- null} - -t 1.06456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1839 -a 0 -x {9.0 10.0 924 ------- null} h -t 1.06456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1839 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.06461 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1825 -a 0 -x {9.0 10.0 917 ------- null} - -t 1.06461 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1825 -a 0 -x {9.0 10.0 917 ------- null} h -t 1.06461 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1825 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.0648 -s 0 -d 9 -p ack -e 40 -c 0 -i 1832 -a 0 -x {10.0 9.0 911 ------- null} - -t 1.0648 -s 0 -d 9 -p ack -e 40 -c 0 -i 1832 -a 0 -x {10.0 9.0 911 ------- null} h -t 1.0648 -s 0 -d 9 -p ack -e 40 -c 0 -i 1832 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.06485 -s 10 -d 7 -p ack -e 40 -c 0 -i 1836 -a 0 -x {10.0 9.0 913 ------- null} + -t 1.06485 -s 7 -d 0 -p ack -e 40 -c 0 -i 1836 -a 0 -x {10.0 9.0 913 ------- null} h -t 1.06485 -s 7 -d 8 -p ack -e 40 -c 0 -i 1836 -a 0 -x {10.0 9.0 913 ------- null} r -t 1.06512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1835 -a 0 -x {9.0 10.0 922 ------- null} + -t 1.06512 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1835 -a 0 -x {9.0 10.0 922 ------- null} h -t 1.06512 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1835 -a 0 -x {9.0 10.0 922 ------- null} r -t 1.06523 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1821 -a 0 -x {9.0 10.0 915 ------- null} + -t 1.06523 -s 10 -d 7 -p ack -e 40 -c 0 -i 1840 -a 0 -x {10.0 9.0 915 ------- null} - -t 1.06523 -s 10 -d 7 -p ack -e 40 -c 0 -i 1840 -a 0 -x {10.0 9.0 915 ------- null} h -t 1.06523 -s 10 -d 7 -p ack -e 40 -c 0 -i 1840 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.0657 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1827 -a 0 -x {9.0 10.0 918 ------- null} - -t 1.0657 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1827 -a 0 -x {9.0 10.0 918 ------- null} h -t 1.0657 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1827 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.06574 -s 0 -d 9 -p ack -e 40 -c 0 -i 1830 -a 0 -x {10.0 9.0 910 ------- null} + -t 1.06574 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1841 -a 0 -x {9.0 10.0 925 ------- null} - -t 1.06574 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1841 -a 0 -x {9.0 10.0 925 ------- null} h -t 1.06574 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1841 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.06582 -s 0 -d 9 -p ack -e 40 -c 0 -i 1834 -a 0 -x {10.0 9.0 912 ------- null} - -t 1.06582 -s 0 -d 9 -p ack -e 40 -c 0 -i 1834 -a 0 -x {10.0 9.0 912 ------- null} h -t 1.06582 -s 0 -d 9 -p ack -e 40 -c 0 -i 1834 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.06618 -s 10 -d 7 -p ack -e 40 -c 0 -i 1838 -a 0 -x {10.0 9.0 914 ------- null} + -t 1.06618 -s 7 -d 0 -p ack -e 40 -c 0 -i 1838 -a 0 -x {10.0 9.0 914 ------- null} h -t 1.06618 -s 7 -d 8 -p ack -e 40 -c 0 -i 1838 -a 0 -x {10.0 9.0 914 ------- null} r -t 1.06627 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1837 -a 0 -x {9.0 10.0 923 ------- null} + -t 1.06627 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1837 -a 0 -x {9.0 10.0 923 ------- null} h -t 1.06627 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1837 -a 0 -x {9.0 10.0 923 ------- null} r -t 1.06632 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1823 -a 0 -x {9.0 10.0 916 ------- null} + -t 1.06632 -s 10 -d 7 -p ack -e 40 -c 0 -i 1842 -a 0 -x {10.0 9.0 916 ------- null} - -t 1.06632 -s 10 -d 7 -p ack -e 40 -c 0 -i 1842 -a 0 -x {10.0 9.0 916 ------- null} h -t 1.06632 -s 10 -d 7 -p ack -e 40 -c 0 -i 1842 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.06678 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1829 -a 0 -x {9.0 10.0 919 ------- null} - -t 1.06678 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1829 -a 0 -x {9.0 10.0 919 ------- null} h -t 1.06678 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1829 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.06683 -s 0 -d 9 -p ack -e 40 -c 0 -i 1832 -a 0 -x {10.0 9.0 911 ------- null} + -t 1.06683 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1843 -a 0 -x {9.0 10.0 926 ------- null} - -t 1.06683 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1843 -a 0 -x {9.0 10.0 926 ------- null} h -t 1.06683 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1843 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.06686 -s 0 -d 9 -p ack -e 40 -c 0 -i 1836 -a 0 -x {10.0 9.0 913 ------- null} - -t 1.06686 -s 0 -d 9 -p ack -e 40 -c 0 -i 1836 -a 0 -x {10.0 9.0 913 ------- null} h -t 1.06686 -s 0 -d 9 -p ack -e 40 -c 0 -i 1836 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.06726 -s 10 -d 7 -p ack -e 40 -c 0 -i 1840 -a 0 -x {10.0 9.0 915 ------- null} + -t 1.06726 -s 7 -d 0 -p ack -e 40 -c 0 -i 1840 -a 0 -x {10.0 9.0 915 ------- null} h -t 1.06726 -s 7 -d 8 -p ack -e 40 -c 0 -i 1840 -a 0 -x {10.0 9.0 915 ------- null} r -t 1.06736 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1839 -a 0 -x {9.0 10.0 924 ------- null} + -t 1.06736 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1839 -a 0 -x {9.0 10.0 924 ------- null} h -t 1.06736 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1839 -a 0 -x {9.0 10.0 924 ------- null} r -t 1.06741 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1825 -a 0 -x {9.0 10.0 917 ------- null} + -t 1.06741 -s 10 -d 7 -p ack -e 40 -c 0 -i 1844 -a 0 -x {10.0 9.0 917 ------- null} - -t 1.06741 -s 10 -d 7 -p ack -e 40 -c 0 -i 1844 -a 0 -x {10.0 9.0 917 ------- null} h -t 1.06741 -s 10 -d 7 -p ack -e 40 -c 0 -i 1844 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.06786 -s 0 -d 9 -p ack -e 40 -c 0 -i 1834 -a 0 -x {10.0 9.0 912 ------- null} + -t 1.06786 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1845 -a 0 -x {9.0 10.0 927 ------- null} - -t 1.06786 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1845 -a 0 -x {9.0 10.0 927 ------- null} h -t 1.06786 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1845 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.06787 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1831 -a 0 -x {9.0 10.0 920 ------- null} - -t 1.06787 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1831 -a 0 -x {9.0 10.0 920 ------- null} h -t 1.06787 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1831 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.06818 -s 0 -d 9 -p ack -e 40 -c 0 -i 1838 -a 0 -x {10.0 9.0 914 ------- null} - -t 1.06818 -s 0 -d 9 -p ack -e 40 -c 0 -i 1838 -a 0 -x {10.0 9.0 914 ------- null} h -t 1.06818 -s 0 -d 9 -p ack -e 40 -c 0 -i 1838 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.06835 -s 10 -d 7 -p ack -e 40 -c 0 -i 1842 -a 0 -x {10.0 9.0 916 ------- null} + -t 1.06835 -s 7 -d 0 -p ack -e 40 -c 0 -i 1842 -a 0 -x {10.0 9.0 916 ------- null} h -t 1.06835 -s 7 -d 8 -p ack -e 40 -c 0 -i 1842 -a 0 -x {10.0 9.0 916 ------- null} r -t 1.0685 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1827 -a 0 -x {9.0 10.0 918 ------- null} + -t 1.0685 -s 10 -d 7 -p ack -e 40 -c 0 -i 1846 -a 0 -x {10.0 9.0 918 ------- null} - -t 1.0685 -s 10 -d 7 -p ack -e 40 -c 0 -i 1846 -a 0 -x {10.0 9.0 918 ------- null} h -t 1.0685 -s 10 -d 7 -p ack -e 40 -c 0 -i 1846 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.06854 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1841 -a 0 -x {9.0 10.0 925 ------- null} + -t 1.06854 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1841 -a 0 -x {9.0 10.0 925 ------- null} h -t 1.06854 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1841 -a 0 -x {9.0 10.0 925 ------- null} r -t 1.0689 -s 0 -d 9 -p ack -e 40 -c 0 -i 1836 -a 0 -x {10.0 9.0 913 ------- null} + -t 1.0689 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1847 -a 0 -x {9.0 10.0 928 ------- null} - -t 1.0689 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1847 -a 0 -x {9.0 10.0 928 ------- null} h -t 1.0689 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1847 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.06907 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1833 -a 0 -x {9.0 10.0 921 ------- null} - -t 1.06907 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1833 -a 0 -x {9.0 10.0 921 ------- null} h -t 1.06907 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1833 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.0693 -s 0 -d 9 -p ack -e 40 -c 0 -i 1840 -a 0 -x {10.0 9.0 915 ------- null} - -t 1.0693 -s 0 -d 9 -p ack -e 40 -c 0 -i 1840 -a 0 -x {10.0 9.0 915 ------- null} h -t 1.0693 -s 0 -d 9 -p ack -e 40 -c 0 -i 1840 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.06944 -s 10 -d 7 -p ack -e 40 -c 0 -i 1844 -a 0 -x {10.0 9.0 917 ------- null} + -t 1.06944 -s 7 -d 0 -p ack -e 40 -c 0 -i 1844 -a 0 -x {10.0 9.0 917 ------- null} h -t 1.06944 -s 7 -d 8 -p ack -e 40 -c 0 -i 1844 -a 0 -x {10.0 9.0 917 ------- null} r -t 1.06958 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1829 -a 0 -x {9.0 10.0 919 ------- null} + -t 1.06958 -s 10 -d 7 -p ack -e 40 -c 0 -i 1848 -a 0 -x {10.0 9.0 919 ------- null} - -t 1.06958 -s 10 -d 7 -p ack -e 40 -c 0 -i 1848 -a 0 -x {10.0 9.0 919 ------- null} h -t 1.06958 -s 10 -d 7 -p ack -e 40 -c 0 -i 1848 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.06963 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1843 -a 0 -x {9.0 10.0 926 ------- null} + -t 1.06963 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1843 -a 0 -x {9.0 10.0 926 ------- null} h -t 1.06963 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1843 -a 0 -x {9.0 10.0 926 ------- null} + -t 1.07016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1835 -a 0 -x {9.0 10.0 922 ------- null} - -t 1.07016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1835 -a 0 -x {9.0 10.0 922 ------- null} h -t 1.07016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1835 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.07021 -s 0 -d 9 -p ack -e 40 -c 0 -i 1838 -a 0 -x {10.0 9.0 914 ------- null} + -t 1.07021 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1849 -a 0 -x {9.0 10.0 929 ------- null} - -t 1.07021 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1849 -a 0 -x {9.0 10.0 929 ------- null} h -t 1.07021 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1849 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.07043 -s 0 -d 9 -p ack -e 40 -c 0 -i 1842 -a 0 -x {10.0 9.0 916 ------- null} - -t 1.07043 -s 0 -d 9 -p ack -e 40 -c 0 -i 1842 -a 0 -x {10.0 9.0 916 ------- null} h -t 1.07043 -s 0 -d 9 -p ack -e 40 -c 0 -i 1842 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.07053 -s 10 -d 7 -p ack -e 40 -c 0 -i 1846 -a 0 -x {10.0 9.0 918 ------- null} + -t 1.07053 -s 7 -d 0 -p ack -e 40 -c 0 -i 1846 -a 0 -x {10.0 9.0 918 ------- null} h -t 1.07053 -s 7 -d 8 -p ack -e 40 -c 0 -i 1846 -a 0 -x {10.0 9.0 918 ------- null} r -t 1.07066 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1845 -a 0 -x {9.0 10.0 927 ------- null} + -t 1.07066 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1845 -a 0 -x {9.0 10.0 927 ------- null} h -t 1.07066 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1845 -a 0 -x {9.0 10.0 927 ------- null} r -t 1.07067 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1831 -a 0 -x {9.0 10.0 920 ------- null} + -t 1.07067 -s 10 -d 7 -p ack -e 40 -c 0 -i 1850 -a 0 -x {10.0 9.0 920 ------- null} - -t 1.07067 -s 10 -d 7 -p ack -e 40 -c 0 -i 1850 -a 0 -x {10.0 9.0 920 ------- null} h -t 1.07067 -s 10 -d 7 -p ack -e 40 -c 0 -i 1850 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.07133 -s 0 -d 9 -p ack -e 40 -c 0 -i 1840 -a 0 -x {10.0 9.0 915 ------- null} + -t 1.07133 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1851 -a 0 -x {9.0 10.0 930 ------- null} - -t 1.07133 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1851 -a 0 -x {9.0 10.0 930 ------- null} h -t 1.07133 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1851 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.07147 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1837 -a 0 -x {9.0 10.0 923 ------- null} - -t 1.07147 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1837 -a 0 -x {9.0 10.0 923 ------- null} h -t 1.07147 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1837 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.07162 -s 10 -d 7 -p ack -e 40 -c 0 -i 1848 -a 0 -x {10.0 9.0 919 ------- null} + -t 1.07162 -s 7 -d 0 -p ack -e 40 -c 0 -i 1848 -a 0 -x {10.0 9.0 919 ------- null} h -t 1.07162 -s 7 -d 8 -p ack -e 40 -c 0 -i 1848 -a 0 -x {10.0 9.0 919 ------- null} r -t 1.0717 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1847 -a 0 -x {9.0 10.0 928 ------- null} + -t 1.0717 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1847 -a 0 -x {9.0 10.0 928 ------- null} h -t 1.0717 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1847 -a 0 -x {9.0 10.0 928 ------- null} + -t 1.0717 -s 0 -d 9 -p ack -e 40 -c 0 -i 1844 -a 0 -x {10.0 9.0 917 ------- null} - -t 1.0717 -s 0 -d 9 -p ack -e 40 -c 0 -i 1844 -a 0 -x {10.0 9.0 917 ------- null} h -t 1.0717 -s 0 -d 9 -p ack -e 40 -c 0 -i 1844 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.07187 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1833 -a 0 -x {9.0 10.0 921 ------- null} + -t 1.07187 -s 10 -d 7 -p ack -e 40 -c 0 -i 1852 -a 0 -x {10.0 9.0 921 ------- null} - -t 1.07187 -s 10 -d 7 -p ack -e 40 -c 0 -i 1852 -a 0 -x {10.0 9.0 921 ------- null} h -t 1.07187 -s 10 -d 7 -p ack -e 40 -c 0 -i 1852 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.07246 -s 0 -d 9 -p ack -e 40 -c 0 -i 1842 -a 0 -x {10.0 9.0 916 ------- null} + -t 1.07246 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1853 -a 0 -x {9.0 10.0 931 ------- null} - -t 1.07246 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1853 -a 0 -x {9.0 10.0 931 ------- null} h -t 1.07246 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1853 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.07256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1839 -a 0 -x {9.0 10.0 924 ------- null} - -t 1.07256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1839 -a 0 -x {9.0 10.0 924 ------- null} h -t 1.07256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1839 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.0727 -s 10 -d 7 -p ack -e 40 -c 0 -i 1850 -a 0 -x {10.0 9.0 920 ------- null} + -t 1.0727 -s 7 -d 0 -p ack -e 40 -c 0 -i 1850 -a 0 -x {10.0 9.0 920 ------- null} h -t 1.0727 -s 7 -d 8 -p ack -e 40 -c 0 -i 1850 -a 0 -x {10.0 9.0 920 ------- null} + -t 1.07283 -s 0 -d 9 -p ack -e 40 -c 0 -i 1846 -a 0 -x {10.0 9.0 918 ------- null} - -t 1.07283 -s 0 -d 9 -p ack -e 40 -c 0 -i 1846 -a 0 -x {10.0 9.0 918 ------- null} h -t 1.07283 -s 0 -d 9 -p ack -e 40 -c 0 -i 1846 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.07296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1835 -a 0 -x {9.0 10.0 922 ------- null} + -t 1.07296 -s 10 -d 7 -p ack -e 40 -c 0 -i 1854 -a 0 -x {10.0 9.0 922 ------- null} - -t 1.07296 -s 10 -d 7 -p ack -e 40 -c 0 -i 1854 -a 0 -x {10.0 9.0 922 ------- null} h -t 1.07296 -s 10 -d 7 -p ack -e 40 -c 0 -i 1854 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.07301 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1849 -a 0 -x {9.0 10.0 929 ------- null} + -t 1.07301 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1849 -a 0 -x {9.0 10.0 929 ------- null} h -t 1.07301 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1849 -a 0 -x {9.0 10.0 929 ------- null} r -t 1.07373 -s 0 -d 9 -p ack -e 40 -c 0 -i 1844 -a 0 -x {10.0 9.0 917 ------- null} + -t 1.07373 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1855 -a 0 -x {9.0 10.0 932 ------- null} - -t 1.07373 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1855 -a 0 -x {9.0 10.0 932 ------- null} h -t 1.07373 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1855 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.07382 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1841 -a 0 -x {9.0 10.0 925 ------- null} - -t 1.07382 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1841 -a 0 -x {9.0 10.0 925 ------- null} h -t 1.07382 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1841 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.0739 -s 10 -d 7 -p ack -e 40 -c 0 -i 1852 -a 0 -x {10.0 9.0 921 ------- null} + -t 1.0739 -s 7 -d 0 -p ack -e 40 -c 0 -i 1852 -a 0 -x {10.0 9.0 921 ------- null} h -t 1.0739 -s 7 -d 8 -p ack -e 40 -c 0 -i 1852 -a 0 -x {10.0 9.0 921 ------- null} + -t 1.07405 -s 0 -d 9 -p ack -e 40 -c 0 -i 1848 -a 0 -x {10.0 9.0 919 ------- null} - -t 1.07405 -s 0 -d 9 -p ack -e 40 -c 0 -i 1848 -a 0 -x {10.0 9.0 919 ------- null} h -t 1.07405 -s 0 -d 9 -p ack -e 40 -c 0 -i 1848 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.07413 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1851 -a 0 -x {9.0 10.0 930 ------- null} + -t 1.07413 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1851 -a 0 -x {9.0 10.0 930 ------- null} h -t 1.07413 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1851 -a 0 -x {9.0 10.0 930 ------- null} r -t 1.07427 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1837 -a 0 -x {9.0 10.0 923 ------- null} + -t 1.07427 -s 10 -d 7 -p ack -e 40 -c 0 -i 1856 -a 0 -x {10.0 9.0 923 ------- null} - -t 1.07427 -s 10 -d 7 -p ack -e 40 -c 0 -i 1856 -a 0 -x {10.0 9.0 923 ------- null} h -t 1.07427 -s 10 -d 7 -p ack -e 40 -c 0 -i 1856 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.07486 -s 0 -d 9 -p ack -e 40 -c 0 -i 1846 -a 0 -x {10.0 9.0 918 ------- null} + -t 1.07486 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1857 -a 0 -x {9.0 10.0 933 ------- null} - -t 1.07486 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1857 -a 0 -x {9.0 10.0 933 ------- null} h -t 1.07486 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1857 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.07491 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1843 -a 0 -x {9.0 10.0 926 ------- null} - -t 1.07491 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1843 -a 0 -x {9.0 10.0 926 ------- null} h -t 1.07491 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1843 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.07499 -s 10 -d 7 -p ack -e 40 -c 0 -i 1854 -a 0 -x {10.0 9.0 922 ------- null} + -t 1.07499 -s 7 -d 0 -p ack -e 40 -c 0 -i 1854 -a 0 -x {10.0 9.0 922 ------- null} h -t 1.07499 -s 7 -d 8 -p ack -e 40 -c 0 -i 1854 -a 0 -x {10.0 9.0 922 ------- null} + -t 1.07504 -s 0 -d 9 -p ack -e 40 -c 0 -i 1850 -a 0 -x {10.0 9.0 920 ------- null} - -t 1.07504 -s 0 -d 9 -p ack -e 40 -c 0 -i 1850 -a 0 -x {10.0 9.0 920 ------- null} h -t 1.07504 -s 0 -d 9 -p ack -e 40 -c 0 -i 1850 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.07526 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1853 -a 0 -x {9.0 10.0 931 ------- null} + -t 1.07526 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1853 -a 0 -x {9.0 10.0 931 ------- null} h -t 1.07526 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1853 -a 0 -x {9.0 10.0 931 ------- null} r -t 1.07536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1839 -a 0 -x {9.0 10.0 924 ------- null} + -t 1.07536 -s 10 -d 7 -p ack -e 40 -c 0 -i 1858 -a 0 -x {10.0 9.0 924 ------- null} - -t 1.07536 -s 10 -d 7 -p ack -e 40 -c 0 -i 1858 -a 0 -x {10.0 9.0 924 ------- null} h -t 1.07536 -s 10 -d 7 -p ack -e 40 -c 0 -i 1858 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.076 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1845 -a 0 -x {9.0 10.0 927 ------- null} - -t 1.076 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1845 -a 0 -x {9.0 10.0 927 ------- null} h -t 1.076 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1845 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.07608 -s 0 -d 9 -p ack -e 40 -c 0 -i 1848 -a 0 -x {10.0 9.0 919 ------- null} + -t 1.07608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1859 -a 0 -x {9.0 10.0 934 ------- null} - -t 1.07608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1859 -a 0 -x {9.0 10.0 934 ------- null} h -t 1.07608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1859 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.07627 -s 0 -d 9 -p ack -e 40 -c 0 -i 1852 -a 0 -x {10.0 9.0 921 ------- null} - -t 1.07627 -s 0 -d 9 -p ack -e 40 -c 0 -i 1852 -a 0 -x {10.0 9.0 921 ------- null} h -t 1.07627 -s 0 -d 9 -p ack -e 40 -c 0 -i 1852 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.0763 -s 10 -d 7 -p ack -e 40 -c 0 -i 1856 -a 0 -x {10.0 9.0 923 ------- null} + -t 1.0763 -s 7 -d 0 -p ack -e 40 -c 0 -i 1856 -a 0 -x {10.0 9.0 923 ------- null} h -t 1.0763 -s 7 -d 8 -p ack -e 40 -c 0 -i 1856 -a 0 -x {10.0 9.0 923 ------- null} r -t 1.07653 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1855 -a 0 -x {9.0 10.0 932 ------- null} + -t 1.07653 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1855 -a 0 -x {9.0 10.0 932 ------- null} h -t 1.07653 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1855 -a 0 -x {9.0 10.0 932 ------- null} r -t 1.07662 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1841 -a 0 -x {9.0 10.0 925 ------- null} + -t 1.07662 -s 10 -d 7 -p ack -e 40 -c 0 -i 1860 -a 0 -x {10.0 9.0 925 ------- null} - -t 1.07662 -s 10 -d 7 -p ack -e 40 -c 0 -i 1860 -a 0 -x {10.0 9.0 925 ------- null} h -t 1.07662 -s 10 -d 7 -p ack -e 40 -c 0 -i 1860 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.07707 -s 0 -d 9 -p ack -e 40 -c 0 -i 1850 -a 0 -x {10.0 9.0 920 ------- null} + -t 1.07707 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1861 -a 0 -x {9.0 10.0 935 ------- null} - -t 1.07707 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1861 -a 0 -x {9.0 10.0 935 ------- null} h -t 1.07707 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1861 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.07723 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1847 -a 0 -x {9.0 10.0 928 ------- null} - -t 1.07723 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1847 -a 0 -x {9.0 10.0 928 ------- null} h -t 1.07723 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1847 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.07733 -s 0 -d 9 -p ack -e 40 -c 0 -i 1854 -a 0 -x {10.0 9.0 922 ------- null} - -t 1.07733 -s 0 -d 9 -p ack -e 40 -c 0 -i 1854 -a 0 -x {10.0 9.0 922 ------- null} h -t 1.07733 -s 0 -d 9 -p ack -e 40 -c 0 -i 1854 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.07739 -s 10 -d 7 -p ack -e 40 -c 0 -i 1858 -a 0 -x {10.0 9.0 924 ------- null} + -t 1.07739 -s 7 -d 0 -p ack -e 40 -c 0 -i 1858 -a 0 -x {10.0 9.0 924 ------- null} h -t 1.07739 -s 7 -d 8 -p ack -e 40 -c 0 -i 1858 -a 0 -x {10.0 9.0 924 ------- null} r -t 1.07766 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1857 -a 0 -x {9.0 10.0 933 ------- null} + -t 1.07766 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1857 -a 0 -x {9.0 10.0 933 ------- null} h -t 1.07766 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1857 -a 0 -x {9.0 10.0 933 ------- null} r -t 1.07771 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1843 -a 0 -x {9.0 10.0 926 ------- null} + -t 1.07771 -s 10 -d 7 -p ack -e 40 -c 0 -i 1862 -a 0 -x {10.0 9.0 926 ------- null} - -t 1.07771 -s 10 -d 7 -p ack -e 40 -c 0 -i 1862 -a 0 -x {10.0 9.0 926 ------- null} h -t 1.07771 -s 10 -d 7 -p ack -e 40 -c 0 -i 1862 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.0783 -s 0 -d 9 -p ack -e 40 -c 0 -i 1852 -a 0 -x {10.0 9.0 921 ------- null} + -t 1.0783 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1863 -a 0 -x {9.0 10.0 936 ------- null} - -t 1.0783 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1863 -a 0 -x {9.0 10.0 936 ------- null} h -t 1.0783 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1863 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.07832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1849 -a 0 -x {9.0 10.0 929 ------- null} - -t 1.07832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1849 -a 0 -x {9.0 10.0 929 ------- null} h -t 1.07832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1849 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.07859 -s 0 -d 9 -p ack -e 40 -c 0 -i 1856 -a 0 -x {10.0 9.0 923 ------- null} - -t 1.07859 -s 0 -d 9 -p ack -e 40 -c 0 -i 1856 -a 0 -x {10.0 9.0 923 ------- null} h -t 1.07859 -s 0 -d 9 -p ack -e 40 -c 0 -i 1856 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.07866 -s 10 -d 7 -p ack -e 40 -c 0 -i 1860 -a 0 -x {10.0 9.0 925 ------- null} + -t 1.07866 -s 7 -d 0 -p ack -e 40 -c 0 -i 1860 -a 0 -x {10.0 9.0 925 ------- null} h -t 1.07866 -s 7 -d 8 -p ack -e 40 -c 0 -i 1860 -a 0 -x {10.0 9.0 925 ------- null} r -t 1.0788 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1845 -a 0 -x {9.0 10.0 927 ------- null} + -t 1.0788 -s 10 -d 7 -p ack -e 40 -c 0 -i 1864 -a 0 -x {10.0 9.0 927 ------- null} - -t 1.0788 -s 10 -d 7 -p ack -e 40 -c 0 -i 1864 -a 0 -x {10.0 9.0 927 ------- null} h -t 1.0788 -s 10 -d 7 -p ack -e 40 -c 0 -i 1864 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.07888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1859 -a 0 -x {9.0 10.0 934 ------- null} + -t 1.07888 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1859 -a 0 -x {9.0 10.0 934 ------- null} h -t 1.07888 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1859 -a 0 -x {9.0 10.0 934 ------- null} r -t 1.07936 -s 0 -d 9 -p ack -e 40 -c 0 -i 1854 -a 0 -x {10.0 9.0 922 ------- null} + -t 1.07936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1865 -a 0 -x {9.0 10.0 937 ------- null} - -t 1.07936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1865 -a 0 -x {9.0 10.0 937 ------- null} h -t 1.07936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1865 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.07965 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1851 -a 0 -x {9.0 10.0 930 ------- null} - -t 1.07965 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1851 -a 0 -x {9.0 10.0 930 ------- null} h -t 1.07965 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1851 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.07974 -s 10 -d 7 -p ack -e 40 -c 0 -i 1862 -a 0 -x {10.0 9.0 926 ------- null} + -t 1.07974 -s 7 -d 0 -p ack -e 40 -c 0 -i 1862 -a 0 -x {10.0 9.0 926 ------- null} h -t 1.07974 -s 7 -d 8 -p ack -e 40 -c 0 -i 1862 -a 0 -x {10.0 9.0 926 ------- null} + -t 1.07978 -s 0 -d 9 -p ack -e 40 -c 0 -i 1858 -a 0 -x {10.0 9.0 924 ------- null} - -t 1.07978 -s 0 -d 9 -p ack -e 40 -c 0 -i 1858 -a 0 -x {10.0 9.0 924 ------- null} h -t 1.07978 -s 0 -d 9 -p ack -e 40 -c 0 -i 1858 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.07987 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1861 -a 0 -x {9.0 10.0 935 ------- null} + -t 1.07987 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1861 -a 0 -x {9.0 10.0 935 ------- null} h -t 1.07987 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1861 -a 0 -x {9.0 10.0 935 ------- null} r -t 1.08003 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1847 -a 0 -x {9.0 10.0 928 ------- null} + -t 1.08003 -s 10 -d 7 -p ack -e 40 -c 0 -i 1866 -a 0 -x {10.0 9.0 928 ------- null} - -t 1.08003 -s 10 -d 7 -p ack -e 40 -c 0 -i 1866 -a 0 -x {10.0 9.0 928 ------- null} h -t 1.08003 -s 10 -d 7 -p ack -e 40 -c 0 -i 1866 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.08062 -s 0 -d 9 -p ack -e 40 -c 0 -i 1856 -a 0 -x {10.0 9.0 923 ------- null} + -t 1.08062 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1867 -a 0 -x {9.0 10.0 938 ------- null} - -t 1.08062 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1867 -a 0 -x {9.0 10.0 938 ------- null} h -t 1.08062 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1867 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.08074 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1853 -a 0 -x {9.0 10.0 931 ------- null} - -t 1.08074 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1853 -a 0 -x {9.0 10.0 931 ------- null} h -t 1.08074 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1853 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.08083 -s 10 -d 7 -p ack -e 40 -c 0 -i 1864 -a 0 -x {10.0 9.0 927 ------- null} + -t 1.08083 -s 7 -d 0 -p ack -e 40 -c 0 -i 1864 -a 0 -x {10.0 9.0 927 ------- null} h -t 1.08083 -s 7 -d 8 -p ack -e 40 -c 0 -i 1864 -a 0 -x {10.0 9.0 927 ------- null} + -t 1.08104 -s 0 -d 9 -p ack -e 40 -c 0 -i 1860 -a 0 -x {10.0 9.0 925 ------- null} - -t 1.08104 -s 0 -d 9 -p ack -e 40 -c 0 -i 1860 -a 0 -x {10.0 9.0 925 ------- null} h -t 1.08104 -s 0 -d 9 -p ack -e 40 -c 0 -i 1860 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.0811 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1863 -a 0 -x {9.0 10.0 936 ------- null} + -t 1.0811 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1863 -a 0 -x {9.0 10.0 936 ------- null} h -t 1.0811 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1863 -a 0 -x {9.0 10.0 936 ------- null} r -t 1.08112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1849 -a 0 -x {9.0 10.0 929 ------- null} + -t 1.08112 -s 10 -d 7 -p ack -e 40 -c 0 -i 1868 -a 0 -x {10.0 9.0 929 ------- null} - -t 1.08112 -s 10 -d 7 -p ack -e 40 -c 0 -i 1868 -a 0 -x {10.0 9.0 929 ------- null} h -t 1.08112 -s 10 -d 7 -p ack -e 40 -c 0 -i 1868 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.08181 -s 0 -d 9 -p ack -e 40 -c 0 -i 1858 -a 0 -x {10.0 9.0 924 ------- null} + -t 1.08181 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1869 -a 0 -x {9.0 10.0 939 ------- null} - -t 1.08181 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1869 -a 0 -x {9.0 10.0 939 ------- null} h -t 1.08181 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1869 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.0819 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1855 -a 0 -x {9.0 10.0 932 ------- null} - -t 1.0819 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1855 -a 0 -x {9.0 10.0 932 ------- null} h -t 1.0819 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1855 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.08206 -s 10 -d 7 -p ack -e 40 -c 0 -i 1866 -a 0 -x {10.0 9.0 928 ------- null} + -t 1.08206 -s 7 -d 0 -p ack -e 40 -c 0 -i 1866 -a 0 -x {10.0 9.0 928 ------- null} h -t 1.08206 -s 7 -d 8 -p ack -e 40 -c 0 -i 1866 -a 0 -x {10.0 9.0 928 ------- null} r -t 1.08216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1865 -a 0 -x {9.0 10.0 937 ------- null} + -t 1.08216 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1865 -a 0 -x {9.0 10.0 937 ------- null} h -t 1.08216 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1865 -a 0 -x {9.0 10.0 937 ------- null} + -t 1.08221 -s 0 -d 9 -p ack -e 40 -c 0 -i 1862 -a 0 -x {10.0 9.0 926 ------- null} - -t 1.08221 -s 0 -d 9 -p ack -e 40 -c 0 -i 1862 -a 0 -x {10.0 9.0 926 ------- null} h -t 1.08221 -s 0 -d 9 -p ack -e 40 -c 0 -i 1862 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.08245 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1851 -a 0 -x {9.0 10.0 930 ------- null} + -t 1.08245 -s 10 -d 7 -p ack -e 40 -c 0 -i 1870 -a 0 -x {10.0 9.0 930 ------- null} - -t 1.08245 -s 10 -d 7 -p ack -e 40 -c 0 -i 1870 -a 0 -x {10.0 9.0 930 ------- null} h -t 1.08245 -s 10 -d 7 -p ack -e 40 -c 0 -i 1870 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.08307 -s 0 -d 9 -p ack -e 40 -c 0 -i 1860 -a 0 -x {10.0 9.0 925 ------- null} + -t 1.08307 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1871 -a 0 -x {9.0 10.0 940 ------- null} - -t 1.08307 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1871 -a 0 -x {9.0 10.0 940 ------- null} h -t 1.08307 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1871 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.08315 -s 10 -d 7 -p ack -e 40 -c 0 -i 1868 -a 0 -x {10.0 9.0 929 ------- null} + -t 1.08315 -s 7 -d 0 -p ack -e 40 -c 0 -i 1868 -a 0 -x {10.0 9.0 929 ------- null} h -t 1.08315 -s 7 -d 8 -p ack -e 40 -c 0 -i 1868 -a 0 -x {10.0 9.0 929 ------- null} + -t 1.08325 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1857 -a 0 -x {9.0 10.0 933 ------- null} - -t 1.08325 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1857 -a 0 -x {9.0 10.0 933 ------- null} h -t 1.08325 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1857 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.08342 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1867 -a 0 -x {9.0 10.0 938 ------- null} + -t 1.08342 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1867 -a 0 -x {9.0 10.0 938 ------- null} h -t 1.08342 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1867 -a 0 -x {9.0 10.0 938 ------- null} + -t 1.08346 -s 0 -d 9 -p ack -e 40 -c 0 -i 1864 -a 0 -x {10.0 9.0 927 ------- null} - -t 1.08346 -s 0 -d 9 -p ack -e 40 -c 0 -i 1864 -a 0 -x {10.0 9.0 927 ------- null} h -t 1.08346 -s 0 -d 9 -p ack -e 40 -c 0 -i 1864 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.08354 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1853 -a 0 -x {9.0 10.0 931 ------- null} + -t 1.08354 -s 10 -d 7 -p ack -e 40 -c 0 -i 1872 -a 0 -x {10.0 9.0 931 ------- null} - -t 1.08354 -s 10 -d 7 -p ack -e 40 -c 0 -i 1872 -a 0 -x {10.0 9.0 931 ------- null} h -t 1.08354 -s 10 -d 7 -p ack -e 40 -c 0 -i 1872 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.08424 -s 0 -d 9 -p ack -e 40 -c 0 -i 1862 -a 0 -x {10.0 9.0 926 ------- null} + -t 1.08424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1873 -a 0 -x {9.0 10.0 941 ------- null} - -t 1.08424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1873 -a 0 -x {9.0 10.0 941 ------- null} h -t 1.08424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1873 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.08434 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1859 -a 0 -x {9.0 10.0 934 ------- null} - -t 1.08434 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1859 -a 0 -x {9.0 10.0 934 ------- null} h -t 1.08434 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1859 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.08446 -s 0 -d 9 -p ack -e 40 -c 0 -i 1866 -a 0 -x {10.0 9.0 928 ------- null} - -t 1.08446 -s 0 -d 9 -p ack -e 40 -c 0 -i 1866 -a 0 -x {10.0 9.0 928 ------- null} h -t 1.08446 -s 0 -d 9 -p ack -e 40 -c 0 -i 1866 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.08448 -s 10 -d 7 -p ack -e 40 -c 0 -i 1870 -a 0 -x {10.0 9.0 930 ------- null} + -t 1.08448 -s 7 -d 0 -p ack -e 40 -c 0 -i 1870 -a 0 -x {10.0 9.0 930 ------- null} h -t 1.08448 -s 7 -d 8 -p ack -e 40 -c 0 -i 1870 -a 0 -x {10.0 9.0 930 ------- null} r -t 1.08461 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1869 -a 0 -x {9.0 10.0 939 ------- null} + -t 1.08461 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1869 -a 0 -x {9.0 10.0 939 ------- null} h -t 1.08461 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1869 -a 0 -x {9.0 10.0 939 ------- null} r -t 1.0847 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1855 -a 0 -x {9.0 10.0 932 ------- null} + -t 1.0847 -s 10 -d 7 -p ack -e 40 -c 0 -i 1874 -a 0 -x {10.0 9.0 932 ------- null} - -t 1.0847 -s 10 -d 7 -p ack -e 40 -c 0 -i 1874 -a 0 -x {10.0 9.0 932 ------- null} h -t 1.0847 -s 10 -d 7 -p ack -e 40 -c 0 -i 1874 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.08542 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1861 -a 0 -x {9.0 10.0 935 ------- null} - -t 1.08542 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1861 -a 0 -x {9.0 10.0 935 ------- null} h -t 1.08542 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1861 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.08549 -s 0 -d 9 -p ack -e 40 -c 0 -i 1864 -a 0 -x {10.0 9.0 927 ------- null} + -t 1.08549 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1875 -a 0 -x {9.0 10.0 942 ------- null} - -t 1.08549 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1875 -a 0 -x {9.0 10.0 942 ------- null} h -t 1.08549 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1875 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.08557 -s 10 -d 7 -p ack -e 40 -c 0 -i 1872 -a 0 -x {10.0 9.0 931 ------- null} + -t 1.08557 -s 7 -d 0 -p ack -e 40 -c 0 -i 1872 -a 0 -x {10.0 9.0 931 ------- null} h -t 1.08557 -s 7 -d 8 -p ack -e 40 -c 0 -i 1872 -a 0 -x {10.0 9.0 931 ------- null} + -t 1.08565 -s 0 -d 9 -p ack -e 40 -c 0 -i 1868 -a 0 -x {10.0 9.0 929 ------- null} - -t 1.08565 -s 0 -d 9 -p ack -e 40 -c 0 -i 1868 -a 0 -x {10.0 9.0 929 ------- null} h -t 1.08565 -s 0 -d 9 -p ack -e 40 -c 0 -i 1868 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.08587 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1871 -a 0 -x {9.0 10.0 940 ------- null} + -t 1.08587 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1871 -a 0 -x {9.0 10.0 940 ------- null} h -t 1.08587 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1871 -a 0 -x {9.0 10.0 940 ------- null} r -t 1.08605 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1857 -a 0 -x {9.0 10.0 933 ------- null} + -t 1.08605 -s 10 -d 7 -p ack -e 40 -c 0 -i 1876 -a 0 -x {10.0 9.0 933 ------- null} - -t 1.08605 -s 10 -d 7 -p ack -e 40 -c 0 -i 1876 -a 0 -x {10.0 9.0 933 ------- null} h -t 1.08605 -s 10 -d 7 -p ack -e 40 -c 0 -i 1876 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.0865 -s 0 -d 9 -p ack -e 40 -c 0 -i 1866 -a 0 -x {10.0 9.0 928 ------- null} + -t 1.0865 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1877 -a 0 -x {9.0 10.0 943 ------- null} - -t 1.0865 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1877 -a 0 -x {9.0 10.0 943 ------- null} h -t 1.0865 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1877 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.08651 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1863 -a 0 -x {9.0 10.0 936 ------- null} - -t 1.08651 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1863 -a 0 -x {9.0 10.0 936 ------- null} h -t 1.08651 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1863 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.08664 -s 0 -d 9 -p ack -e 40 -c 0 -i 1870 -a 0 -x {10.0 9.0 930 ------- null} - -t 1.08664 -s 0 -d 9 -p ack -e 40 -c 0 -i 1870 -a 0 -x {10.0 9.0 930 ------- null} h -t 1.08664 -s 0 -d 9 -p ack -e 40 -c 0 -i 1870 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.08674 -s 10 -d 7 -p ack -e 40 -c 0 -i 1874 -a 0 -x {10.0 9.0 932 ------- null} + -t 1.08674 -s 7 -d 0 -p ack -e 40 -c 0 -i 1874 -a 0 -x {10.0 9.0 932 ------- null} h -t 1.08674 -s 7 -d 8 -p ack -e 40 -c 0 -i 1874 -a 0 -x {10.0 9.0 932 ------- null} r -t 1.08704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1873 -a 0 -x {9.0 10.0 941 ------- null} + -t 1.08704 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1873 -a 0 -x {9.0 10.0 941 ------- null} h -t 1.08704 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1873 -a 0 -x {9.0 10.0 941 ------- null} r -t 1.08714 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1859 -a 0 -x {9.0 10.0 934 ------- null} + -t 1.08714 -s 10 -d 7 -p ack -e 40 -c 0 -i 1878 -a 0 -x {10.0 9.0 934 ------- null} - -t 1.08714 -s 10 -d 7 -p ack -e 40 -c 0 -i 1878 -a 0 -x {10.0 9.0 934 ------- null} h -t 1.08714 -s 10 -d 7 -p ack -e 40 -c 0 -i 1878 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.0876 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1865 -a 0 -x {9.0 10.0 937 ------- null} - -t 1.0876 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1865 -a 0 -x {9.0 10.0 937 ------- null} h -t 1.0876 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1865 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.08768 -s 0 -d 9 -p ack -e 40 -c 0 -i 1868 -a 0 -x {10.0 9.0 929 ------- null} + -t 1.08768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1879 -a 0 -x {9.0 10.0 944 ------- null} - -t 1.08768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1879 -a 0 -x {9.0 10.0 944 ------- null} h -t 1.08768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1879 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.08771 -s 0 -d 9 -p ack -e 40 -c 0 -i 1872 -a 0 -x {10.0 9.0 931 ------- null} - -t 1.08771 -s 0 -d 9 -p ack -e 40 -c 0 -i 1872 -a 0 -x {10.0 9.0 931 ------- null} h -t 1.08771 -s 0 -d 9 -p ack -e 40 -c 0 -i 1872 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.08808 -s 10 -d 7 -p ack -e 40 -c 0 -i 1876 -a 0 -x {10.0 9.0 933 ------- null} + -t 1.08808 -s 7 -d 0 -p ack -e 40 -c 0 -i 1876 -a 0 -x {10.0 9.0 933 ------- null} h -t 1.08808 -s 7 -d 8 -p ack -e 40 -c 0 -i 1876 -a 0 -x {10.0 9.0 933 ------- null} r -t 1.08822 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1861 -a 0 -x {9.0 10.0 935 ------- null} + -t 1.08822 -s 10 -d 7 -p ack -e 40 -c 0 -i 1880 -a 0 -x {10.0 9.0 935 ------- null} - -t 1.08822 -s 10 -d 7 -p ack -e 40 -c 0 -i 1880 -a 0 -x {10.0 9.0 935 ------- null} h -t 1.08822 -s 10 -d 7 -p ack -e 40 -c 0 -i 1880 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.08829 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1875 -a 0 -x {9.0 10.0 942 ------- null} + -t 1.08829 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1875 -a 0 -x {9.0 10.0 942 ------- null} h -t 1.08829 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1875 -a 0 -x {9.0 10.0 942 ------- null} r -t 1.08867 -s 0 -d 9 -p ack -e 40 -c 0 -i 1870 -a 0 -x {10.0 9.0 930 ------- null} + -t 1.08867 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1881 -a 0 -x {9.0 10.0 945 ------- null} - -t 1.08867 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1881 -a 0 -x {9.0 10.0 945 ------- null} h -t 1.08867 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1881 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.08869 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1867 -a 0 -x {9.0 10.0 938 ------- null} - -t 1.08869 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1867 -a 0 -x {9.0 10.0 938 ------- null} h -t 1.08869 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1867 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.08883 -s 0 -d 9 -p ack -e 40 -c 0 -i 1874 -a 0 -x {10.0 9.0 932 ------- null} - -t 1.08883 -s 0 -d 9 -p ack -e 40 -c 0 -i 1874 -a 0 -x {10.0 9.0 932 ------- null} h -t 1.08883 -s 0 -d 9 -p ack -e 40 -c 0 -i 1874 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.08917 -s 10 -d 7 -p ack -e 40 -c 0 -i 1878 -a 0 -x {10.0 9.0 934 ------- null} + -t 1.08917 -s 7 -d 0 -p ack -e 40 -c 0 -i 1878 -a 0 -x {10.0 9.0 934 ------- null} h -t 1.08917 -s 7 -d 8 -p ack -e 40 -c 0 -i 1878 -a 0 -x {10.0 9.0 934 ------- null} r -t 1.0893 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1877 -a 0 -x {9.0 10.0 943 ------- null} + -t 1.0893 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1877 -a 0 -x {9.0 10.0 943 ------- null} h -t 1.0893 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1877 -a 0 -x {9.0 10.0 943 ------- null} r -t 1.08931 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1863 -a 0 -x {9.0 10.0 936 ------- null} + -t 1.08931 -s 10 -d 7 -p ack -e 40 -c 0 -i 1882 -a 0 -x {10.0 9.0 936 ------- null} - -t 1.08931 -s 10 -d 7 -p ack -e 40 -c 0 -i 1882 -a 0 -x {10.0 9.0 936 ------- null} h -t 1.08931 -s 10 -d 7 -p ack -e 40 -c 0 -i 1882 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.08974 -s 0 -d 9 -p ack -e 40 -c 0 -i 1872 -a 0 -x {10.0 9.0 931 ------- null} + -t 1.08974 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1883 -a 0 -x {9.0 10.0 946 ------- null} - -t 1.08974 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1883 -a 0 -x {9.0 10.0 946 ------- null} h -t 1.08974 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1883 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.08978 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1869 -a 0 -x {9.0 10.0 939 ------- null} - -t 1.08978 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1869 -a 0 -x {9.0 10.0 939 ------- null} h -t 1.08978 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1869 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.09002 -s 0 -d 9 -p ack -e 40 -c 0 -i 1876 -a 0 -x {10.0 9.0 933 ------- null} - -t 1.09002 -s 0 -d 9 -p ack -e 40 -c 0 -i 1876 -a 0 -x {10.0 9.0 933 ------- null} h -t 1.09002 -s 0 -d 9 -p ack -e 40 -c 0 -i 1876 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.09026 -s 10 -d 7 -p ack -e 40 -c 0 -i 1880 -a 0 -x {10.0 9.0 935 ------- null} + -t 1.09026 -s 7 -d 0 -p ack -e 40 -c 0 -i 1880 -a 0 -x {10.0 9.0 935 ------- null} h -t 1.09026 -s 7 -d 8 -p ack -e 40 -c 0 -i 1880 -a 0 -x {10.0 9.0 935 ------- null} r -t 1.0904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1865 -a 0 -x {9.0 10.0 937 ------- null} + -t 1.0904 -s 10 -d 7 -p ack -e 40 -c 0 -i 1884 -a 0 -x {10.0 9.0 937 ------- null} - -t 1.0904 -s 10 -d 7 -p ack -e 40 -c 0 -i 1884 -a 0 -x {10.0 9.0 937 ------- null} h -t 1.0904 -s 10 -d 7 -p ack -e 40 -c 0 -i 1884 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.09048 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1879 -a 0 -x {9.0 10.0 944 ------- null} + -t 1.09048 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1879 -a 0 -x {9.0 10.0 944 ------- null} h -t 1.09048 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1879 -a 0 -x {9.0 10.0 944 ------- null} + -t 1.09086 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1871 -a 0 -x {9.0 10.0 940 ------- null} - -t 1.09086 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1871 -a 0 -x {9.0 10.0 940 ------- null} h -t 1.09086 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1871 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.09086 -s 0 -d 9 -p ack -e 40 -c 0 -i 1874 -a 0 -x {10.0 9.0 932 ------- null} + -t 1.09086 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1885 -a 0 -x {9.0 10.0 947 ------- null} - -t 1.09086 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1885 -a 0 -x {9.0 10.0 947 ------- null} h -t 1.09086 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1885 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.09099 -s 0 -d 9 -p ack -e 40 -c 0 -i 1878 -a 0 -x {10.0 9.0 934 ------- null} - -t 1.09099 -s 0 -d 9 -p ack -e 40 -c 0 -i 1878 -a 0 -x {10.0 9.0 934 ------- null} h -t 1.09099 -s 0 -d 9 -p ack -e 40 -c 0 -i 1878 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.09134 -s 10 -d 7 -p ack -e 40 -c 0 -i 1882 -a 0 -x {10.0 9.0 936 ------- null} + -t 1.09134 -s 7 -d 0 -p ack -e 40 -c 0 -i 1882 -a 0 -x {10.0 9.0 936 ------- null} h -t 1.09134 -s 7 -d 8 -p ack -e 40 -c 0 -i 1882 -a 0 -x {10.0 9.0 936 ------- null} r -t 1.09147 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1881 -a 0 -x {9.0 10.0 945 ------- null} + -t 1.09147 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1881 -a 0 -x {9.0 10.0 945 ------- null} h -t 1.09147 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1881 -a 0 -x {9.0 10.0 945 ------- null} r -t 1.09149 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1867 -a 0 -x {9.0 10.0 938 ------- null} + -t 1.09149 -s 10 -d 7 -p ack -e 40 -c 0 -i 1886 -a 0 -x {10.0 9.0 938 ------- null} - -t 1.09149 -s 10 -d 7 -p ack -e 40 -c 0 -i 1886 -a 0 -x {10.0 9.0 938 ------- null} h -t 1.09149 -s 10 -d 7 -p ack -e 40 -c 0 -i 1886 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.09195 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1873 -a 0 -x {9.0 10.0 941 ------- null} - -t 1.09195 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1873 -a 0 -x {9.0 10.0 941 ------- null} h -t 1.09195 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1873 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.09205 -s 0 -d 9 -p ack -e 40 -c 0 -i 1876 -a 0 -x {10.0 9.0 933 ------- null} + -t 1.09205 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1887 -a 0 -x {9.0 10.0 948 ------- null} - -t 1.09205 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1887 -a 0 -x {9.0 10.0 948 ------- null} h -t 1.09205 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1887 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.09216 -s 0 -d 9 -p ack -e 40 -c 0 -i 1880 -a 0 -x {10.0 9.0 935 ------- null} - -t 1.09216 -s 0 -d 9 -p ack -e 40 -c 0 -i 1880 -a 0 -x {10.0 9.0 935 ------- null} h -t 1.09216 -s 0 -d 9 -p ack -e 40 -c 0 -i 1880 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.09243 -s 10 -d 7 -p ack -e 40 -c 0 -i 1884 -a 0 -x {10.0 9.0 937 ------- null} + -t 1.09243 -s 7 -d 0 -p ack -e 40 -c 0 -i 1884 -a 0 -x {10.0 9.0 937 ------- null} h -t 1.09243 -s 7 -d 8 -p ack -e 40 -c 0 -i 1884 -a 0 -x {10.0 9.0 937 ------- null} r -t 1.09254 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1883 -a 0 -x {9.0 10.0 946 ------- null} + -t 1.09254 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1883 -a 0 -x {9.0 10.0 946 ------- null} h -t 1.09254 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1883 -a 0 -x {9.0 10.0 946 ------- null} r -t 1.09258 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1869 -a 0 -x {9.0 10.0 939 ------- null} + -t 1.09258 -s 10 -d 7 -p ack -e 40 -c 0 -i 1888 -a 0 -x {10.0 9.0 939 ------- null} - -t 1.09258 -s 10 -d 7 -p ack -e 40 -c 0 -i 1888 -a 0 -x {10.0 9.0 939 ------- null} h -t 1.09258 -s 10 -d 7 -p ack -e 40 -c 0 -i 1888 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.09302 -s 0 -d 9 -p ack -e 40 -c 0 -i 1878 -a 0 -x {10.0 9.0 934 ------- null} + -t 1.09302 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1889 -a 0 -x {9.0 10.0 949 ------- null} - -t 1.09302 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1889 -a 0 -x {9.0 10.0 949 ------- null} h -t 1.09302 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1889 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.09304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1875 -a 0 -x {9.0 10.0 942 ------- null} - -t 1.09304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1875 -a 0 -x {9.0 10.0 942 ------- null} h -t 1.09304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1875 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.0931 -s 0 -d 9 -p ack -e 40 -c 0 -i 1882 -a 0 -x {10.0 9.0 936 ------- null} - -t 1.0931 -s 0 -d 9 -p ack -e 40 -c 0 -i 1882 -a 0 -x {10.0 9.0 936 ------- null} h -t 1.0931 -s 0 -d 9 -p ack -e 40 -c 0 -i 1882 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.09352 -s 10 -d 7 -p ack -e 40 -c 0 -i 1886 -a 0 -x {10.0 9.0 938 ------- null} + -t 1.09352 -s 7 -d 0 -p ack -e 40 -c 0 -i 1886 -a 0 -x {10.0 9.0 938 ------- null} h -t 1.09352 -s 7 -d 8 -p ack -e 40 -c 0 -i 1886 -a 0 -x {10.0 9.0 938 ------- null} r -t 1.09366 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1871 -a 0 -x {9.0 10.0 940 ------- null} + -t 1.09366 -s 10 -d 7 -p ack -e 40 -c 0 -i 1890 -a 0 -x {10.0 9.0 940 ------- null} - -t 1.09366 -s 10 -d 7 -p ack -e 40 -c 0 -i 1890 -a 0 -x {10.0 9.0 940 ------- null} h -t 1.09366 -s 10 -d 7 -p ack -e 40 -c 0 -i 1890 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.09366 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1885 -a 0 -x {9.0 10.0 947 ------- null} + -t 1.09366 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1885 -a 0 -x {9.0 10.0 947 ------- null} h -t 1.09366 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1885 -a 0 -x {9.0 10.0 947 ------- null} + -t 1.09413 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1877 -a 0 -x {9.0 10.0 943 ------- null} - -t 1.09413 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1877 -a 0 -x {9.0 10.0 943 ------- null} h -t 1.09413 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1877 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.09419 -s 0 -d 9 -p ack -e 40 -c 0 -i 1880 -a 0 -x {10.0 9.0 935 ------- null} + -t 1.09419 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1891 -a 0 -x {9.0 10.0 950 ------- null} - -t 1.09419 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1891 -a 0 -x {9.0 10.0 950 ------- null} h -t 1.09419 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1891 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.09419 -s 0 -d 9 -p ack -e 40 -c 0 -i 1884 -a 0 -x {10.0 9.0 937 ------- null} - -t 1.09419 -s 0 -d 9 -p ack -e 40 -c 0 -i 1884 -a 0 -x {10.0 9.0 937 ------- null} h -t 1.09419 -s 0 -d 9 -p ack -e 40 -c 0 -i 1884 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.09461 -s 10 -d 7 -p ack -e 40 -c 0 -i 1888 -a 0 -x {10.0 9.0 939 ------- null} + -t 1.09461 -s 7 -d 0 -p ack -e 40 -c 0 -i 1888 -a 0 -x {10.0 9.0 939 ------- null} h -t 1.09461 -s 7 -d 8 -p ack -e 40 -c 0 -i 1888 -a 0 -x {10.0 9.0 939 ------- null} r -t 1.09475 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1873 -a 0 -x {9.0 10.0 941 ------- null} + -t 1.09475 -s 10 -d 7 -p ack -e 40 -c 0 -i 1892 -a 0 -x {10.0 9.0 941 ------- null} - -t 1.09475 -s 10 -d 7 -p ack -e 40 -c 0 -i 1892 -a 0 -x {10.0 9.0 941 ------- null} h -t 1.09475 -s 10 -d 7 -p ack -e 40 -c 0 -i 1892 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.09485 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1887 -a 0 -x {9.0 10.0 948 ------- null} + -t 1.09485 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1887 -a 0 -x {9.0 10.0 948 ------- null} h -t 1.09485 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1887 -a 0 -x {9.0 10.0 948 ------- null} r -t 1.09514 -s 0 -d 9 -p ack -e 40 -c 0 -i 1882 -a 0 -x {10.0 9.0 936 ------- null} + -t 1.09514 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1893 -a 0 -x {9.0 10.0 951 ------- null} - -t 1.09514 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1893 -a 0 -x {9.0 10.0 951 ------- null} h -t 1.09514 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1893 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.09522 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1879 -a 0 -x {9.0 10.0 944 ------- null} - -t 1.09522 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1879 -a 0 -x {9.0 10.0 944 ------- null} h -t 1.09522 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1879 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.09538 -s 0 -d 9 -p ack -e 40 -c 0 -i 1886 -a 0 -x {10.0 9.0 938 ------- null} - -t 1.09538 -s 0 -d 9 -p ack -e 40 -c 0 -i 1886 -a 0 -x {10.0 9.0 938 ------- null} h -t 1.09538 -s 0 -d 9 -p ack -e 40 -c 0 -i 1886 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.0957 -s 10 -d 7 -p ack -e 40 -c 0 -i 1890 -a 0 -x {10.0 9.0 940 ------- null} + -t 1.0957 -s 7 -d 0 -p ack -e 40 -c 0 -i 1890 -a 0 -x {10.0 9.0 940 ------- null} h -t 1.0957 -s 7 -d 8 -p ack -e 40 -c 0 -i 1890 -a 0 -x {10.0 9.0 940 ------- null} r -t 1.09582 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1889 -a 0 -x {9.0 10.0 949 ------- null} + -t 1.09582 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1889 -a 0 -x {9.0 10.0 949 ------- null} h -t 1.09582 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1889 -a 0 -x {9.0 10.0 949 ------- null} r -t 1.09584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1875 -a 0 -x {9.0 10.0 942 ------- null} + -t 1.09584 -s 10 -d 7 -p ack -e 40 -c 0 -i 1894 -a 0 -x {10.0 9.0 942 ------- null} - -t 1.09584 -s 10 -d 7 -p ack -e 40 -c 0 -i 1894 -a 0 -x {10.0 9.0 942 ------- null} h -t 1.09584 -s 10 -d 7 -p ack -e 40 -c 0 -i 1894 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.09622 -s 0 -d 9 -p ack -e 40 -c 0 -i 1884 -a 0 -x {10.0 9.0 937 ------- null} + -t 1.09622 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1895 -a 0 -x {9.0 10.0 952 ------- null} - -t 1.09622 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1895 -a 0 -x {9.0 10.0 952 ------- null} h -t 1.09622 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1895 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.0963 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1881 -a 0 -x {9.0 10.0 945 ------- null} - -t 1.0963 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1881 -a 0 -x {9.0 10.0 945 ------- null} h -t 1.0963 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1881 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.0965 -s 0 -d 9 -p ack -e 40 -c 0 -i 1888 -a 0 -x {10.0 9.0 939 ------- null} - -t 1.0965 -s 0 -d 9 -p ack -e 40 -c 0 -i 1888 -a 0 -x {10.0 9.0 939 ------- null} h -t 1.0965 -s 0 -d 9 -p ack -e 40 -c 0 -i 1888 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.09678 -s 10 -d 7 -p ack -e 40 -c 0 -i 1892 -a 0 -x {10.0 9.0 941 ------- null} + -t 1.09678 -s 7 -d 0 -p ack -e 40 -c 0 -i 1892 -a 0 -x {10.0 9.0 941 ------- null} h -t 1.09678 -s 7 -d 8 -p ack -e 40 -c 0 -i 1892 -a 0 -x {10.0 9.0 941 ------- null} r -t 1.09693 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1877 -a 0 -x {9.0 10.0 943 ------- null} + -t 1.09693 -s 10 -d 7 -p ack -e 40 -c 0 -i 1896 -a 0 -x {10.0 9.0 943 ------- null} - -t 1.09693 -s 10 -d 7 -p ack -e 40 -c 0 -i 1896 -a 0 -x {10.0 9.0 943 ------- null} h -t 1.09693 -s 10 -d 7 -p ack -e 40 -c 0 -i 1896 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.09699 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1891 -a 0 -x {9.0 10.0 950 ------- null} + -t 1.09699 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1891 -a 0 -x {9.0 10.0 950 ------- null} h -t 1.09699 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1891 -a 0 -x {9.0 10.0 950 ------- null} + -t 1.09739 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1883 -a 0 -x {9.0 10.0 946 ------- null} - -t 1.09739 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1883 -a 0 -x {9.0 10.0 946 ------- null} h -t 1.09739 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1883 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.09741 -s 0 -d 9 -p ack -e 40 -c 0 -i 1886 -a 0 -x {10.0 9.0 938 ------- null} + -t 1.09741 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1897 -a 0 -x {9.0 10.0 953 ------- null} - -t 1.09741 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1897 -a 0 -x {9.0 10.0 953 ------- null} h -t 1.09741 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1897 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.09746 -s 0 -d 9 -p ack -e 40 -c 0 -i 1890 -a 0 -x {10.0 9.0 940 ------- null} - -t 1.09746 -s 0 -d 9 -p ack -e 40 -c 0 -i 1890 -a 0 -x {10.0 9.0 940 ------- null} h -t 1.09746 -s 0 -d 9 -p ack -e 40 -c 0 -i 1890 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.09787 -s 10 -d 7 -p ack -e 40 -c 0 -i 1894 -a 0 -x {10.0 9.0 942 ------- null} + -t 1.09787 -s 7 -d 0 -p ack -e 40 -c 0 -i 1894 -a 0 -x {10.0 9.0 942 ------- null} h -t 1.09787 -s 7 -d 8 -p ack -e 40 -c 0 -i 1894 -a 0 -x {10.0 9.0 942 ------- null} r -t 1.09794 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1893 -a 0 -x {9.0 10.0 951 ------- null} + -t 1.09794 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1893 -a 0 -x {9.0 10.0 951 ------- null} h -t 1.09794 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1893 -a 0 -x {9.0 10.0 951 ------- null} r -t 1.09802 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1879 -a 0 -x {9.0 10.0 944 ------- null} + -t 1.09802 -s 10 -d 7 -p ack -e 40 -c 0 -i 1898 -a 0 -x {10.0 9.0 944 ------- null} - -t 1.09802 -s 10 -d 7 -p ack -e 40 -c 0 -i 1898 -a 0 -x {10.0 9.0 944 ------- null} h -t 1.09802 -s 10 -d 7 -p ack -e 40 -c 0 -i 1898 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.09848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1885 -a 0 -x {9.0 10.0 947 ------- null} - -t 1.09848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1885 -a 0 -x {9.0 10.0 947 ------- null} h -t 1.09848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1885 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.09853 -s 0 -d 9 -p ack -e 40 -c 0 -i 1888 -a 0 -x {10.0 9.0 939 ------- null} + -t 1.09853 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1899 -a 0 -x {9.0 10.0 954 ------- null} - -t 1.09853 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1899 -a 0 -x {9.0 10.0 954 ------- null} h -t 1.09853 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1899 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.09859 -s 0 -d 9 -p ack -e 40 -c 0 -i 1892 -a 0 -x {10.0 9.0 941 ------- null} - -t 1.09859 -s 0 -d 9 -p ack -e 40 -c 0 -i 1892 -a 0 -x {10.0 9.0 941 ------- null} h -t 1.09859 -s 0 -d 9 -p ack -e 40 -c 0 -i 1892 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.09896 -s 10 -d 7 -p ack -e 40 -c 0 -i 1896 -a 0 -x {10.0 9.0 943 ------- null} + -t 1.09896 -s 7 -d 0 -p ack -e 40 -c 0 -i 1896 -a 0 -x {10.0 9.0 943 ------- null} h -t 1.09896 -s 7 -d 8 -p ack -e 40 -c 0 -i 1896 -a 0 -x {10.0 9.0 943 ------- null} r -t 1.09902 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1895 -a 0 -x {9.0 10.0 952 ------- null} + -t 1.09902 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1895 -a 0 -x {9.0 10.0 952 ------- null} h -t 1.09902 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1895 -a 0 -x {9.0 10.0 952 ------- null} r -t 1.0991 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1881 -a 0 -x {9.0 10.0 945 ------- null} + -t 1.0991 -s 10 -d 7 -p ack -e 40 -c 0 -i 1900 -a 0 -x {10.0 9.0 945 ------- null} - -t 1.0991 -s 10 -d 7 -p ack -e 40 -c 0 -i 1900 -a 0 -x {10.0 9.0 945 ------- null} h -t 1.0991 -s 10 -d 7 -p ack -e 40 -c 0 -i 1900 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.09949 -s 0 -d 9 -p ack -e 40 -c 0 -i 1890 -a 0 -x {10.0 9.0 940 ------- null} + -t 1.09949 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1901 -a 0 -x {9.0 10.0 955 ------- null} - -t 1.09949 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1901 -a 0 -x {9.0 10.0 955 ------- null} h -t 1.09949 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1901 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.09957 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1887 -a 0 -x {9.0 10.0 948 ------- null} - -t 1.09957 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1887 -a 0 -x {9.0 10.0 948 ------- null} h -t 1.09957 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1887 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.09979 -s 0 -d 9 -p ack -e 40 -c 0 -i 1894 -a 0 -x {10.0 9.0 942 ------- null} - -t 1.09979 -s 0 -d 9 -p ack -e 40 -c 0 -i 1894 -a 0 -x {10.0 9.0 942 ------- null} h -t 1.09979 -s 0 -d 9 -p ack -e 40 -c 0 -i 1894 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.10005 -s 10 -d 7 -p ack -e 40 -c 0 -i 1898 -a 0 -x {10.0 9.0 944 ------- null} + -t 1.10005 -s 7 -d 0 -p ack -e 40 -c 0 -i 1898 -a 0 -x {10.0 9.0 944 ------- null} h -t 1.10005 -s 7 -d 8 -p ack -e 40 -c 0 -i 1898 -a 0 -x {10.0 9.0 944 ------- null} r -t 1.10019 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1883 -a 0 -x {9.0 10.0 946 ------- null} + -t 1.10019 -s 10 -d 7 -p ack -e 40 -c 0 -i 1902 -a 0 -x {10.0 9.0 946 ------- null} - -t 1.10019 -s 10 -d 7 -p ack -e 40 -c 0 -i 1902 -a 0 -x {10.0 9.0 946 ------- null} h -t 1.10019 -s 10 -d 7 -p ack -e 40 -c 0 -i 1902 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.10021 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1897 -a 0 -x {9.0 10.0 953 ------- null} + -t 1.10021 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1897 -a 0 -x {9.0 10.0 953 ------- null} h -t 1.10021 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1897 -a 0 -x {9.0 10.0 953 ------- null} r -t 1.10062 -s 0 -d 9 -p ack -e 40 -c 0 -i 1892 -a 0 -x {10.0 9.0 941 ------- null} + -t 1.10062 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1903 -a 0 -x {9.0 10.0 956 ------- null} - -t 1.10062 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1903 -a 0 -x {9.0 10.0 956 ------- null} h -t 1.10062 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1903 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.10066 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1889 -a 0 -x {9.0 10.0 949 ------- null} - -t 1.10066 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1889 -a 0 -x {9.0 10.0 949 ------- null} h -t 1.10066 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1889 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.10077 -s 0 -d 9 -p ack -e 40 -c 0 -i 1896 -a 0 -x {10.0 9.0 943 ------- null} - -t 1.10077 -s 0 -d 9 -p ack -e 40 -c 0 -i 1896 -a 0 -x {10.0 9.0 943 ------- null} h -t 1.10077 -s 0 -d 9 -p ack -e 40 -c 0 -i 1896 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.10114 -s 10 -d 7 -p ack -e 40 -c 0 -i 1900 -a 0 -x {10.0 9.0 945 ------- null} + -t 1.10114 -s 7 -d 0 -p ack -e 40 -c 0 -i 1900 -a 0 -x {10.0 9.0 945 ------- null} h -t 1.10114 -s 7 -d 8 -p ack -e 40 -c 0 -i 1900 -a 0 -x {10.0 9.0 945 ------- null} r -t 1.10128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1885 -a 0 -x {9.0 10.0 947 ------- null} + -t 1.10128 -s 10 -d 7 -p ack -e 40 -c 0 -i 1904 -a 0 -x {10.0 9.0 947 ------- null} - -t 1.10128 -s 10 -d 7 -p ack -e 40 -c 0 -i 1904 -a 0 -x {10.0 9.0 947 ------- null} h -t 1.10128 -s 10 -d 7 -p ack -e 40 -c 0 -i 1904 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.10133 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1899 -a 0 -x {9.0 10.0 954 ------- null} + -t 1.10133 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1899 -a 0 -x {9.0 10.0 954 ------- null} h -t 1.10133 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1899 -a 0 -x {9.0 10.0 954 ------- null} + -t 1.10174 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1891 -a 0 -x {9.0 10.0 950 ------- null} - -t 1.10174 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1891 -a 0 -x {9.0 10.0 950 ------- null} h -t 1.10174 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1891 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.10181 -s 0 -d 9 -p ack -e 40 -c 0 -i 1898 -a 0 -x {10.0 9.0 944 ------- null} - -t 1.10181 -s 0 -d 9 -p ack -e 40 -c 0 -i 1898 -a 0 -x {10.0 9.0 944 ------- null} h -t 1.10181 -s 0 -d 9 -p ack -e 40 -c 0 -i 1898 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.10182 -s 0 -d 9 -p ack -e 40 -c 0 -i 1894 -a 0 -x {10.0 9.0 942 ------- null} + -t 1.10182 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1905 -a 0 -x {9.0 10.0 957 ------- null} - -t 1.10182 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1905 -a 0 -x {9.0 10.0 957 ------- null} h -t 1.10182 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1905 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.10222 -s 10 -d 7 -p ack -e 40 -c 0 -i 1902 -a 0 -x {10.0 9.0 946 ------- null} + -t 1.10222 -s 7 -d 0 -p ack -e 40 -c 0 -i 1902 -a 0 -x {10.0 9.0 946 ------- null} h -t 1.10222 -s 7 -d 8 -p ack -e 40 -c 0 -i 1902 -a 0 -x {10.0 9.0 946 ------- null} r -t 1.10229 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1901 -a 0 -x {9.0 10.0 955 ------- null} + -t 1.10229 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1901 -a 0 -x {9.0 10.0 955 ------- null} h -t 1.10229 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1901 -a 0 -x {9.0 10.0 955 ------- null} r -t 1.10237 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1887 -a 0 -x {9.0 10.0 948 ------- null} + -t 1.10237 -s 10 -d 7 -p ack -e 40 -c 0 -i 1906 -a 0 -x {10.0 9.0 948 ------- null} - -t 1.10237 -s 10 -d 7 -p ack -e 40 -c 0 -i 1906 -a 0 -x {10.0 9.0 948 ------- null} h -t 1.10237 -s 10 -d 7 -p ack -e 40 -c 0 -i 1906 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.1028 -s 0 -d 9 -p ack -e 40 -c 0 -i 1896 -a 0 -x {10.0 9.0 943 ------- null} + -t 1.1028 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1907 -a 0 -x {9.0 10.0 958 ------- null} - -t 1.1028 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1907 -a 0 -x {9.0 10.0 958 ------- null} h -t 1.1028 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1907 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.10283 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1893 -a 0 -x {9.0 10.0 951 ------- null} - -t 1.10283 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1893 -a 0 -x {9.0 10.0 951 ------- null} h -t 1.10283 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1893 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.10294 -s 0 -d 9 -p ack -e 40 -c 0 -i 1900 -a 0 -x {10.0 9.0 945 ------- null} - -t 1.10294 -s 0 -d 9 -p ack -e 40 -c 0 -i 1900 -a 0 -x {10.0 9.0 945 ------- null} h -t 1.10294 -s 0 -d 9 -p ack -e 40 -c 0 -i 1900 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.10331 -s 10 -d 7 -p ack -e 40 -c 0 -i 1904 -a 0 -x {10.0 9.0 947 ------- null} + -t 1.10331 -s 7 -d 0 -p ack -e 40 -c 0 -i 1904 -a 0 -x {10.0 9.0 947 ------- null} h -t 1.10331 -s 7 -d 8 -p ack -e 40 -c 0 -i 1904 -a 0 -x {10.0 9.0 947 ------- null} r -t 1.10342 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1903 -a 0 -x {9.0 10.0 956 ------- null} + -t 1.10342 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1903 -a 0 -x {9.0 10.0 956 ------- null} h -t 1.10342 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1903 -a 0 -x {9.0 10.0 956 ------- null} r -t 1.10346 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1889 -a 0 -x {9.0 10.0 949 ------- null} + -t 1.10346 -s 10 -d 7 -p ack -e 40 -c 0 -i 1908 -a 0 -x {10.0 9.0 949 ------- null} - -t 1.10346 -s 10 -d 7 -p ack -e 40 -c 0 -i 1908 -a 0 -x {10.0 9.0 949 ------- null} h -t 1.10346 -s 10 -d 7 -p ack -e 40 -c 0 -i 1908 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.10384 -s 0 -d 9 -p ack -e 40 -c 0 -i 1898 -a 0 -x {10.0 9.0 944 ------- null} + -t 1.10384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1909 -a 0 -x {9.0 10.0 959 ------- null} - -t 1.10384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1909 -a 0 -x {9.0 10.0 959 ------- null} h -t 1.10384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1909 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.10392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1895 -a 0 -x {9.0 10.0 952 ------- null} - -t 1.10392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1895 -a 0 -x {9.0 10.0 952 ------- null} h -t 1.10392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1895 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.10416 -s 0 -d 9 -p ack -e 40 -c 0 -i 1902 -a 0 -x {10.0 9.0 946 ------- null} - -t 1.10416 -s 0 -d 9 -p ack -e 40 -c 0 -i 1902 -a 0 -x {10.0 9.0 946 ------- null} h -t 1.10416 -s 0 -d 9 -p ack -e 40 -c 0 -i 1902 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.1044 -s 10 -d 7 -p ack -e 40 -c 0 -i 1906 -a 0 -x {10.0 9.0 948 ------- null} + -t 1.1044 -s 7 -d 0 -p ack -e 40 -c 0 -i 1906 -a 0 -x {10.0 9.0 948 ------- null} h -t 1.1044 -s 7 -d 8 -p ack -e 40 -c 0 -i 1906 -a 0 -x {10.0 9.0 948 ------- null} r -t 1.10454 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1891 -a 0 -x {9.0 10.0 950 ------- null} + -t 1.10454 -s 10 -d 7 -p ack -e 40 -c 0 -i 1910 -a 0 -x {10.0 9.0 950 ------- null} - -t 1.10454 -s 10 -d 7 -p ack -e 40 -c 0 -i 1910 -a 0 -x {10.0 9.0 950 ------- null} h -t 1.10454 -s 10 -d 7 -p ack -e 40 -c 0 -i 1910 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.10462 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1905 -a 0 -x {9.0 10.0 957 ------- null} + -t 1.10462 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1905 -a 0 -x {9.0 10.0 957 ------- null} h -t 1.10462 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1905 -a 0 -x {9.0 10.0 957 ------- null} r -t 1.10498 -s 0 -d 9 -p ack -e 40 -c 0 -i 1900 -a 0 -x {10.0 9.0 945 ------- null} + -t 1.10498 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1911 -a 0 -x {9.0 10.0 960 ------- null} - -t 1.10498 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1911 -a 0 -x {9.0 10.0 960 ------- null} h -t 1.10498 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1911 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.10501 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1897 -a 0 -x {9.0 10.0 953 ------- null} - -t 1.10501 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1897 -a 0 -x {9.0 10.0 953 ------- null} h -t 1.10501 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1897 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.1052 -s 0 -d 9 -p ack -e 40 -c 0 -i 1904 -a 0 -x {10.0 9.0 947 ------- null} - -t 1.1052 -s 0 -d 9 -p ack -e 40 -c 0 -i 1904 -a 0 -x {10.0 9.0 947 ------- null} h -t 1.1052 -s 0 -d 9 -p ack -e 40 -c 0 -i 1904 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.10549 -s 10 -d 7 -p ack -e 40 -c 0 -i 1908 -a 0 -x {10.0 9.0 949 ------- null} + -t 1.10549 -s 7 -d 0 -p ack -e 40 -c 0 -i 1908 -a 0 -x {10.0 9.0 949 ------- null} h -t 1.10549 -s 7 -d 8 -p ack -e 40 -c 0 -i 1908 -a 0 -x {10.0 9.0 949 ------- null} r -t 1.1056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1907 -a 0 -x {9.0 10.0 958 ------- null} + -t 1.1056 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1907 -a 0 -x {9.0 10.0 958 ------- null} h -t 1.1056 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1907 -a 0 -x {9.0 10.0 958 ------- null} r -t 1.10563 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1893 -a 0 -x {9.0 10.0 951 ------- null} + -t 1.10563 -s 10 -d 7 -p ack -e 40 -c 0 -i 1912 -a 0 -x {10.0 9.0 951 ------- null} - -t 1.10563 -s 10 -d 7 -p ack -e 40 -c 0 -i 1912 -a 0 -x {10.0 9.0 951 ------- null} h -t 1.10563 -s 10 -d 7 -p ack -e 40 -c 0 -i 1912 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.1061 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1899 -a 0 -x {9.0 10.0 954 ------- null} - -t 1.1061 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1899 -a 0 -x {9.0 10.0 954 ------- null} h -t 1.1061 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1899 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.10619 -s 0 -d 9 -p ack -e 40 -c 0 -i 1902 -a 0 -x {10.0 9.0 946 ------- null} + -t 1.10619 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1913 -a 0 -x {9.0 10.0 961 ------- null} - -t 1.10619 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1913 -a 0 -x {9.0 10.0 961 ------- null} h -t 1.10619 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1913 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.10637 -s 0 -d 9 -p ack -e 40 -c 0 -i 1906 -a 0 -x {10.0 9.0 948 ------- null} - -t 1.10637 -s 0 -d 9 -p ack -e 40 -c 0 -i 1906 -a 0 -x {10.0 9.0 948 ------- null} h -t 1.10637 -s 0 -d 9 -p ack -e 40 -c 0 -i 1906 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.10658 -s 10 -d 7 -p ack -e 40 -c 0 -i 1910 -a 0 -x {10.0 9.0 950 ------- null} + -t 1.10658 -s 7 -d 0 -p ack -e 40 -c 0 -i 1910 -a 0 -x {10.0 9.0 950 ------- null} h -t 1.10658 -s 7 -d 8 -p ack -e 40 -c 0 -i 1910 -a 0 -x {10.0 9.0 950 ------- null} r -t 1.10664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1909 -a 0 -x {9.0 10.0 959 ------- null} + -t 1.10664 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1909 -a 0 -x {9.0 10.0 959 ------- null} h -t 1.10664 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1909 -a 0 -x {9.0 10.0 959 ------- null} r -t 1.10672 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1895 -a 0 -x {9.0 10.0 952 ------- null} + -t 1.10672 -s 10 -d 7 -p ack -e 40 -c 0 -i 1914 -a 0 -x {10.0 9.0 952 ------- null} - -t 1.10672 -s 10 -d 7 -p ack -e 40 -c 0 -i 1914 -a 0 -x {10.0 9.0 952 ------- null} h -t 1.10672 -s 10 -d 7 -p ack -e 40 -c 0 -i 1914 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.10723 -s 0 -d 9 -p ack -e 40 -c 0 -i 1904 -a 0 -x {10.0 9.0 947 ------- null} + -t 1.10723 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1915 -a 0 -x {9.0 10.0 962 ------- null} - -t 1.10723 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1915 -a 0 -x {9.0 10.0 962 ------- null} h -t 1.10723 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1915 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.10731 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1901 -a 0 -x {9.0 10.0 955 ------- null} - -t 1.10731 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1901 -a 0 -x {9.0 10.0 955 ------- null} h -t 1.10731 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1901 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.10752 -s 0 -d 9 -p ack -e 40 -c 0 -i 1908 -a 0 -x {10.0 9.0 949 ------- null} - -t 1.10752 -s 0 -d 9 -p ack -e 40 -c 0 -i 1908 -a 0 -x {10.0 9.0 949 ------- null} h -t 1.10752 -s 0 -d 9 -p ack -e 40 -c 0 -i 1908 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.10766 -s 10 -d 7 -p ack -e 40 -c 0 -i 1912 -a 0 -x {10.0 9.0 951 ------- null} + -t 1.10766 -s 7 -d 0 -p ack -e 40 -c 0 -i 1912 -a 0 -x {10.0 9.0 951 ------- null} h -t 1.10766 -s 7 -d 8 -p ack -e 40 -c 0 -i 1912 -a 0 -x {10.0 9.0 951 ------- null} r -t 1.10778 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1911 -a 0 -x {9.0 10.0 960 ------- null} + -t 1.10778 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1911 -a 0 -x {9.0 10.0 960 ------- null} h -t 1.10778 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1911 -a 0 -x {9.0 10.0 960 ------- null} r -t 1.10781 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1897 -a 0 -x {9.0 10.0 953 ------- null} + -t 1.10781 -s 10 -d 7 -p ack -e 40 -c 0 -i 1916 -a 0 -x {10.0 9.0 953 ------- null} - -t 1.10781 -s 10 -d 7 -p ack -e 40 -c 0 -i 1916 -a 0 -x {10.0 9.0 953 ------- null} h -t 1.10781 -s 10 -d 7 -p ack -e 40 -c 0 -i 1916 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.1084 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1903 -a 0 -x {9.0 10.0 956 ------- null} - -t 1.1084 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1903 -a 0 -x {9.0 10.0 956 ------- null} h -t 1.1084 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1903 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.1084 -s 0 -d 9 -p ack -e 40 -c 0 -i 1906 -a 0 -x {10.0 9.0 948 ------- null} + -t 1.1084 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1917 -a 0 -x {9.0 10.0 963 ------- null} - -t 1.1084 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1917 -a 0 -x {9.0 10.0 963 ------- null} h -t 1.1084 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1917 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.10862 -s 0 -d 9 -p ack -e 40 -c 0 -i 1910 -a 0 -x {10.0 9.0 950 ------- null} - -t 1.10862 -s 0 -d 9 -p ack -e 40 -c 0 -i 1910 -a 0 -x {10.0 9.0 950 ------- null} h -t 1.10862 -s 0 -d 9 -p ack -e 40 -c 0 -i 1910 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.10875 -s 10 -d 7 -p ack -e 40 -c 0 -i 1914 -a 0 -x {10.0 9.0 952 ------- null} + -t 1.10875 -s 7 -d 0 -p ack -e 40 -c 0 -i 1914 -a 0 -x {10.0 9.0 952 ------- null} h -t 1.10875 -s 7 -d 8 -p ack -e 40 -c 0 -i 1914 -a 0 -x {10.0 9.0 952 ------- null} r -t 1.1089 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1899 -a 0 -x {9.0 10.0 954 ------- null} + -t 1.1089 -s 10 -d 7 -p ack -e 40 -c 0 -i 1918 -a 0 -x {10.0 9.0 954 ------- null} - -t 1.1089 -s 10 -d 7 -p ack -e 40 -c 0 -i 1918 -a 0 -x {10.0 9.0 954 ------- null} h -t 1.1089 -s 10 -d 7 -p ack -e 40 -c 0 -i 1918 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.10899 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1913 -a 0 -x {9.0 10.0 961 ------- null} + -t 1.10899 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1913 -a 0 -x {9.0 10.0 961 ------- null} h -t 1.10899 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1913 -a 0 -x {9.0 10.0 961 ------- null} + -t 1.10949 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1905 -a 0 -x {9.0 10.0 957 ------- null} - -t 1.10949 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1905 -a 0 -x {9.0 10.0 957 ------- null} h -t 1.10949 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1905 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.10955 -s 0 -d 9 -p ack -e 40 -c 0 -i 1908 -a 0 -x {10.0 9.0 949 ------- null} + -t 1.10955 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1919 -a 0 -x {9.0 10.0 964 ------- null} - -t 1.10955 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1919 -a 0 -x {9.0 10.0 964 ------- null} h -t 1.10955 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1919 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.10957 -s 0 -d 9 -p ack -e 40 -c 0 -i 1912 -a 0 -x {10.0 9.0 951 ------- null} - -t 1.10957 -s 0 -d 9 -p ack -e 40 -c 0 -i 1912 -a 0 -x {10.0 9.0 951 ------- null} h -t 1.10957 -s 0 -d 9 -p ack -e 40 -c 0 -i 1912 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.10984 -s 10 -d 7 -p ack -e 40 -c 0 -i 1916 -a 0 -x {10.0 9.0 953 ------- null} + -t 1.10984 -s 7 -d 0 -p ack -e 40 -c 0 -i 1916 -a 0 -x {10.0 9.0 953 ------- null} h -t 1.10984 -s 7 -d 8 -p ack -e 40 -c 0 -i 1916 -a 0 -x {10.0 9.0 953 ------- null} r -t 1.11003 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1915 -a 0 -x {9.0 10.0 962 ------- null} + -t 1.11003 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1915 -a 0 -x {9.0 10.0 962 ------- null} h -t 1.11003 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1915 -a 0 -x {9.0 10.0 962 ------- null} r -t 1.11011 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1901 -a 0 -x {9.0 10.0 955 ------- null} + -t 1.11011 -s 10 -d 7 -p ack -e 40 -c 0 -i 1920 -a 0 -x {10.0 9.0 955 ------- null} - -t 1.11011 -s 10 -d 7 -p ack -e 40 -c 0 -i 1920 -a 0 -x {10.0 9.0 955 ------- null} h -t 1.11011 -s 10 -d 7 -p ack -e 40 -c 0 -i 1920 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.11058 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1907 -a 0 -x {9.0 10.0 958 ------- null} - -t 1.11058 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1907 -a 0 -x {9.0 10.0 958 ------- null} h -t 1.11058 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1907 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.11066 -s 0 -d 9 -p ack -e 40 -c 0 -i 1910 -a 0 -x {10.0 9.0 950 ------- null} + -t 1.11066 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1921 -a 0 -x {9.0 10.0 965 ------- null} - -t 1.11066 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1921 -a 0 -x {9.0 10.0 965 ------- null} h -t 1.11066 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1921 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.1107 -s 0 -d 9 -p ack -e 40 -c 0 -i 1914 -a 0 -x {10.0 9.0 952 ------- null} - -t 1.1107 -s 0 -d 9 -p ack -e 40 -c 0 -i 1914 -a 0 -x {10.0 9.0 952 ------- null} h -t 1.1107 -s 0 -d 9 -p ack -e 40 -c 0 -i 1914 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.11093 -s 10 -d 7 -p ack -e 40 -c 0 -i 1918 -a 0 -x {10.0 9.0 954 ------- null} + -t 1.11093 -s 7 -d 0 -p ack -e 40 -c 0 -i 1918 -a 0 -x {10.0 9.0 954 ------- null} h -t 1.11093 -s 7 -d 8 -p ack -e 40 -c 0 -i 1918 -a 0 -x {10.0 9.0 954 ------- null} r -t 1.1112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1903 -a 0 -x {9.0 10.0 956 ------- null} + -t 1.1112 -s 10 -d 7 -p ack -e 40 -c 0 -i 1922 -a 0 -x {10.0 9.0 956 ------- null} - -t 1.1112 -s 10 -d 7 -p ack -e 40 -c 0 -i 1922 -a 0 -x {10.0 9.0 956 ------- null} h -t 1.1112 -s 10 -d 7 -p ack -e 40 -c 0 -i 1922 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.1112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1917 -a 0 -x {9.0 10.0 963 ------- null} + -t 1.1112 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1917 -a 0 -x {9.0 10.0 963 ------- null} h -t 1.1112 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1917 -a 0 -x {9.0 10.0 963 ------- null} r -t 1.1116 -s 0 -d 9 -p ack -e 40 -c 0 -i 1912 -a 0 -x {10.0 9.0 951 ------- null} + -t 1.1116 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1923 -a 0 -x {9.0 10.0 966 ------- null} - -t 1.1116 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1923 -a 0 -x {9.0 10.0 966 ------- null} h -t 1.1116 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1923 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.11166 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1909 -a 0 -x {9.0 10.0 959 ------- null} - -t 1.11166 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1909 -a 0 -x {9.0 10.0 959 ------- null} h -t 1.11166 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1909 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.11181 -s 0 -d 9 -p ack -e 40 -c 0 -i 1916 -a 0 -x {10.0 9.0 953 ------- null} - -t 1.11181 -s 0 -d 9 -p ack -e 40 -c 0 -i 1916 -a 0 -x {10.0 9.0 953 ------- null} h -t 1.11181 -s 0 -d 9 -p ack -e 40 -c 0 -i 1916 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.11214 -s 10 -d 7 -p ack -e 40 -c 0 -i 1920 -a 0 -x {10.0 9.0 955 ------- null} + -t 1.11214 -s 7 -d 0 -p ack -e 40 -c 0 -i 1920 -a 0 -x {10.0 9.0 955 ------- null} h -t 1.11214 -s 7 -d 8 -p ack -e 40 -c 0 -i 1920 -a 0 -x {10.0 9.0 955 ------- null} r -t 1.11229 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1905 -a 0 -x {9.0 10.0 957 ------- null} + -t 1.11229 -s 10 -d 7 -p ack -e 40 -c 0 -i 1924 -a 0 -x {10.0 9.0 957 ------- null} - -t 1.11229 -s 10 -d 7 -p ack -e 40 -c 0 -i 1924 -a 0 -x {10.0 9.0 957 ------- null} h -t 1.11229 -s 10 -d 7 -p ack -e 40 -c 0 -i 1924 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.11235 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1919 -a 0 -x {9.0 10.0 964 ------- null} + -t 1.11235 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1919 -a 0 -x {9.0 10.0 964 ------- null} h -t 1.11235 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1919 -a 0 -x {9.0 10.0 964 ------- null} r -t 1.11274 -s 0 -d 9 -p ack -e 40 -c 0 -i 1914 -a 0 -x {10.0 9.0 952 ------- null} + -t 1.11274 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1925 -a 0 -x {9.0 10.0 967 ------- null} - -t 1.11274 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1925 -a 0 -x {9.0 10.0 967 ------- null} h -t 1.11274 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1925 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.11275 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1911 -a 0 -x {9.0 10.0 960 ------- null} - -t 1.11275 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1911 -a 0 -x {9.0 10.0 960 ------- null} h -t 1.11275 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1911 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.11294 -s 0 -d 9 -p ack -e 40 -c 0 -i 1918 -a 0 -x {10.0 9.0 954 ------- null} - -t 1.11294 -s 0 -d 9 -p ack -e 40 -c 0 -i 1918 -a 0 -x {10.0 9.0 954 ------- null} h -t 1.11294 -s 0 -d 9 -p ack -e 40 -c 0 -i 1918 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.11323 -s 10 -d 7 -p ack -e 40 -c 0 -i 1922 -a 0 -x {10.0 9.0 956 ------- null} + -t 1.11323 -s 7 -d 0 -p ack -e 40 -c 0 -i 1922 -a 0 -x {10.0 9.0 956 ------- null} h -t 1.11323 -s 7 -d 8 -p ack -e 40 -c 0 -i 1922 -a 0 -x {10.0 9.0 956 ------- null} r -t 1.11338 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1907 -a 0 -x {9.0 10.0 958 ------- null} + -t 1.11338 -s 10 -d 7 -p ack -e 40 -c 0 -i 1926 -a 0 -x {10.0 9.0 958 ------- null} - -t 1.11338 -s 10 -d 7 -p ack -e 40 -c 0 -i 1926 -a 0 -x {10.0 9.0 958 ------- null} h -t 1.11338 -s 10 -d 7 -p ack -e 40 -c 0 -i 1926 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.11346 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1921 -a 0 -x {9.0 10.0 965 ------- null} + -t 1.11346 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1921 -a 0 -x {9.0 10.0 965 ------- null} h -t 1.11346 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1921 -a 0 -x {9.0 10.0 965 ------- null} + -t 1.11384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1913 -a 0 -x {9.0 10.0 961 ------- null} - -t 1.11384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1913 -a 0 -x {9.0 10.0 961 ------- null} h -t 1.11384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1913 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.11384 -s 0 -d 9 -p ack -e 40 -c 0 -i 1916 -a 0 -x {10.0 9.0 953 ------- null} + -t 1.11384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1927 -a 0 -x {9.0 10.0 968 ------- null} - -t 1.11384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1927 -a 0 -x {9.0 10.0 968 ------- null} h -t 1.11384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1927 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.11392 -s 0 -d 9 -p ack -e 40 -c 0 -i 1920 -a 0 -x {10.0 9.0 955 ------- null} - -t 1.11392 -s 0 -d 9 -p ack -e 40 -c 0 -i 1920 -a 0 -x {10.0 9.0 955 ------- null} h -t 1.11392 -s 0 -d 9 -p ack -e 40 -c 0 -i 1920 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.11432 -s 10 -d 7 -p ack -e 40 -c 0 -i 1924 -a 0 -x {10.0 9.0 957 ------- null} + -t 1.11432 -s 7 -d 0 -p ack -e 40 -c 0 -i 1924 -a 0 -x {10.0 9.0 957 ------- null} h -t 1.11432 -s 7 -d 8 -p ack -e 40 -c 0 -i 1924 -a 0 -x {10.0 9.0 957 ------- null} r -t 1.1144 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1923 -a 0 -x {9.0 10.0 966 ------- null} + -t 1.1144 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1923 -a 0 -x {9.0 10.0 966 ------- null} h -t 1.1144 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1923 -a 0 -x {9.0 10.0 966 ------- null} r -t 1.11446 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1909 -a 0 -x {9.0 10.0 959 ------- null} + -t 1.11446 -s 10 -d 7 -p ack -e 40 -c 0 -i 1928 -a 0 -x {10.0 9.0 959 ------- null} - -t 1.11446 -s 10 -d 7 -p ack -e 40 -c 0 -i 1928 -a 0 -x {10.0 9.0 959 ------- null} h -t 1.11446 -s 10 -d 7 -p ack -e 40 -c 0 -i 1928 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.11493 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1915 -a 0 -x {9.0 10.0 962 ------- null} - -t 1.11493 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1915 -a 0 -x {9.0 10.0 962 ------- null} h -t 1.11493 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1915 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.11498 -s 0 -d 9 -p ack -e 40 -c 0 -i 1918 -a 0 -x {10.0 9.0 954 ------- null} + -t 1.11498 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1929 -a 0 -x {9.0 10.0 969 ------- null} - -t 1.11498 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1929 -a 0 -x {9.0 10.0 969 ------- null} h -t 1.11498 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1929 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.11501 -s 0 -d 9 -p ack -e 40 -c 0 -i 1922 -a 0 -x {10.0 9.0 956 ------- null} - -t 1.11501 -s 0 -d 9 -p ack -e 40 -c 0 -i 1922 -a 0 -x {10.0 9.0 956 ------- null} h -t 1.11501 -s 0 -d 9 -p ack -e 40 -c 0 -i 1922 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.11541 -s 10 -d 7 -p ack -e 40 -c 0 -i 1926 -a 0 -x {10.0 9.0 958 ------- null} + -t 1.11541 -s 7 -d 0 -p ack -e 40 -c 0 -i 1926 -a 0 -x {10.0 9.0 958 ------- null} h -t 1.11541 -s 7 -d 8 -p ack -e 40 -c 0 -i 1926 -a 0 -x {10.0 9.0 958 ------- null} r -t 1.11554 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1925 -a 0 -x {9.0 10.0 967 ------- null} + -t 1.11554 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1925 -a 0 -x {9.0 10.0 967 ------- null} h -t 1.11554 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1925 -a 0 -x {9.0 10.0 967 ------- null} r -t 1.11555 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1911 -a 0 -x {9.0 10.0 960 ------- null} + -t 1.11555 -s 10 -d 7 -p ack -e 40 -c 0 -i 1930 -a 0 -x {10.0 9.0 960 ------- null} - -t 1.11555 -s 10 -d 7 -p ack -e 40 -c 0 -i 1930 -a 0 -x {10.0 9.0 960 ------- null} h -t 1.11555 -s 10 -d 7 -p ack -e 40 -c 0 -i 1930 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.11595 -s 0 -d 9 -p ack -e 40 -c 0 -i 1920 -a 0 -x {10.0 9.0 955 ------- null} + -t 1.11595 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1931 -a 0 -x {9.0 10.0 970 ------- null} - -t 1.11595 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1931 -a 0 -x {9.0 10.0 970 ------- null} h -t 1.11595 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1931 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.11602 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1917 -a 0 -x {9.0 10.0 963 ------- null} - -t 1.11602 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1917 -a 0 -x {9.0 10.0 963 ------- null} h -t 1.11602 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1917 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.11616 -s 0 -d 9 -p ack -e 40 -c 0 -i 1924 -a 0 -x {10.0 9.0 957 ------- null} - -t 1.11616 -s 0 -d 9 -p ack -e 40 -c 0 -i 1924 -a 0 -x {10.0 9.0 957 ------- null} h -t 1.11616 -s 0 -d 9 -p ack -e 40 -c 0 -i 1924 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.1165 -s 10 -d 7 -p ack -e 40 -c 0 -i 1928 -a 0 -x {10.0 9.0 959 ------- null} + -t 1.1165 -s 7 -d 0 -p ack -e 40 -c 0 -i 1928 -a 0 -x {10.0 9.0 959 ------- null} h -t 1.1165 -s 7 -d 8 -p ack -e 40 -c 0 -i 1928 -a 0 -x {10.0 9.0 959 ------- null} r -t 1.11664 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1913 -a 0 -x {9.0 10.0 961 ------- null} + -t 1.11664 -s 10 -d 7 -p ack -e 40 -c 0 -i 1932 -a 0 -x {10.0 9.0 961 ------- null} - -t 1.11664 -s 10 -d 7 -p ack -e 40 -c 0 -i 1932 -a 0 -x {10.0 9.0 961 ------- null} h -t 1.11664 -s 10 -d 7 -p ack -e 40 -c 0 -i 1932 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.11664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1927 -a 0 -x {9.0 10.0 968 ------- null} + -t 1.11664 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1927 -a 0 -x {9.0 10.0 968 ------- null} h -t 1.11664 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1927 -a 0 -x {9.0 10.0 968 ------- null} r -t 1.11704 -s 0 -d 9 -p ack -e 40 -c 0 -i 1922 -a 0 -x {10.0 9.0 956 ------- null} + -t 1.11704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1933 -a 0 -x {9.0 10.0 971 ------- null} - -t 1.11704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1933 -a 0 -x {9.0 10.0 971 ------- null} h -t 1.11704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1933 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.1171 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1919 -a 0 -x {9.0 10.0 964 ------- null} - -t 1.1171 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1919 -a 0 -x {9.0 10.0 964 ------- null} h -t 1.1171 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1919 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.11728 -s 0 -d 9 -p ack -e 40 -c 0 -i 1926 -a 0 -x {10.0 9.0 958 ------- null} - -t 1.11728 -s 0 -d 9 -p ack -e 40 -c 0 -i 1926 -a 0 -x {10.0 9.0 958 ------- null} h -t 1.11728 -s 0 -d 9 -p ack -e 40 -c 0 -i 1926 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.11758 -s 10 -d 7 -p ack -e 40 -c 0 -i 1930 -a 0 -x {10.0 9.0 960 ------- null} + -t 1.11758 -s 7 -d 0 -p ack -e 40 -c 0 -i 1930 -a 0 -x {10.0 9.0 960 ------- null} h -t 1.11758 -s 7 -d 8 -p ack -e 40 -c 0 -i 1930 -a 0 -x {10.0 9.0 960 ------- null} r -t 1.11773 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1915 -a 0 -x {9.0 10.0 962 ------- null} + -t 1.11773 -s 10 -d 7 -p ack -e 40 -c 0 -i 1934 -a 0 -x {10.0 9.0 962 ------- null} - -t 1.11773 -s 10 -d 7 -p ack -e 40 -c 0 -i 1934 -a 0 -x {10.0 9.0 962 ------- null} h -t 1.11773 -s 10 -d 7 -p ack -e 40 -c 0 -i 1934 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.11778 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1929 -a 0 -x {9.0 10.0 969 ------- null} + -t 1.11778 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1929 -a 0 -x {9.0 10.0 969 ------- null} h -t 1.11778 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1929 -a 0 -x {9.0 10.0 969 ------- null} + -t 1.11819 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1921 -a 0 -x {9.0 10.0 965 ------- null} - -t 1.11819 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1921 -a 0 -x {9.0 10.0 965 ------- null} h -t 1.11819 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1921 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.11819 -s 0 -d 9 -p ack -e 40 -c 0 -i 1924 -a 0 -x {10.0 9.0 957 ------- null} + -t 1.11819 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1935 -a 0 -x {9.0 10.0 972 ------- null} - -t 1.11819 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1935 -a 0 -x {9.0 10.0 972 ------- null} h -t 1.11819 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1935 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.11843 -s 0 -d 9 -p ack -e 40 -c 0 -i 1928 -a 0 -x {10.0 9.0 959 ------- null} - -t 1.11843 -s 0 -d 9 -p ack -e 40 -c 0 -i 1928 -a 0 -x {10.0 9.0 959 ------- null} h -t 1.11843 -s 0 -d 9 -p ack -e 40 -c 0 -i 1928 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.11867 -s 10 -d 7 -p ack -e 40 -c 0 -i 1932 -a 0 -x {10.0 9.0 961 ------- null} + -t 1.11867 -s 7 -d 0 -p ack -e 40 -c 0 -i 1932 -a 0 -x {10.0 9.0 961 ------- null} h -t 1.11867 -s 7 -d 8 -p ack -e 40 -c 0 -i 1932 -a 0 -x {10.0 9.0 961 ------- null} r -t 1.11875 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1931 -a 0 -x {9.0 10.0 970 ------- null} + -t 1.11875 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1931 -a 0 -x {9.0 10.0 970 ------- null} h -t 1.11875 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1931 -a 0 -x {9.0 10.0 970 ------- null} r -t 1.11882 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1917 -a 0 -x {9.0 10.0 963 ------- null} + -t 1.11882 -s 10 -d 7 -p ack -e 40 -c 0 -i 1936 -a 0 -x {10.0 9.0 963 ------- null} - -t 1.11882 -s 10 -d 7 -p ack -e 40 -c 0 -i 1936 -a 0 -x {10.0 9.0 963 ------- null} h -t 1.11882 -s 10 -d 7 -p ack -e 40 -c 0 -i 1936 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.11928 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1923 -a 0 -x {9.0 10.0 966 ------- null} - -t 1.11928 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1923 -a 0 -x {9.0 10.0 966 ------- null} h -t 1.11928 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1923 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.11931 -s 0 -d 9 -p ack -e 40 -c 0 -i 1926 -a 0 -x {10.0 9.0 958 ------- null} + -t 1.11931 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1937 -a 0 -x {9.0 10.0 973 ------- null} - -t 1.11931 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1937 -a 0 -x {9.0 10.0 973 ------- null} h -t 1.11931 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1937 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.11952 -s 0 -d 9 -p ack -e 40 -c 0 -i 1930 -a 0 -x {10.0 9.0 960 ------- null} - -t 1.11952 -s 0 -d 9 -p ack -e 40 -c 0 -i 1930 -a 0 -x {10.0 9.0 960 ------- null} h -t 1.11952 -s 0 -d 9 -p ack -e 40 -c 0 -i 1930 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.11976 -s 10 -d 7 -p ack -e 40 -c 0 -i 1934 -a 0 -x {10.0 9.0 962 ------- null} + -t 1.11976 -s 7 -d 0 -p ack -e 40 -c 0 -i 1934 -a 0 -x {10.0 9.0 962 ------- null} h -t 1.11976 -s 7 -d 8 -p ack -e 40 -c 0 -i 1934 -a 0 -x {10.0 9.0 962 ------- null} r -t 1.11984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1933 -a 0 -x {9.0 10.0 971 ------- null} + -t 1.11984 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1933 -a 0 -x {9.0 10.0 971 ------- null} h -t 1.11984 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1933 -a 0 -x {9.0 10.0 971 ------- null} r -t 1.1199 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1919 -a 0 -x {9.0 10.0 964 ------- null} + -t 1.1199 -s 10 -d 7 -p ack -e 40 -c 0 -i 1938 -a 0 -x {10.0 9.0 964 ------- null} - -t 1.1199 -s 10 -d 7 -p ack -e 40 -c 0 -i 1938 -a 0 -x {10.0 9.0 964 ------- null} h -t 1.1199 -s 10 -d 7 -p ack -e 40 -c 0 -i 1938 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.12037 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1925 -a 0 -x {9.0 10.0 967 ------- null} - -t 1.12037 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1925 -a 0 -x {9.0 10.0 967 ------- null} h -t 1.12037 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1925 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.12046 -s 0 -d 9 -p ack -e 40 -c 0 -i 1928 -a 0 -x {10.0 9.0 959 ------- null} + -t 1.12046 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1939 -a 0 -x {9.0 10.0 974 ------- null} - -t 1.12046 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1939 -a 0 -x {9.0 10.0 974 ------- null} h -t 1.12046 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1939 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.12059 -s 0 -d 9 -p ack -e 40 -c 0 -i 1932 -a 0 -x {10.0 9.0 961 ------- null} - -t 1.12059 -s 0 -d 9 -p ack -e 40 -c 0 -i 1932 -a 0 -x {10.0 9.0 961 ------- null} h -t 1.12059 -s 0 -d 9 -p ack -e 40 -c 0 -i 1932 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.12085 -s 10 -d 7 -p ack -e 40 -c 0 -i 1936 -a 0 -x {10.0 9.0 963 ------- null} + -t 1.12085 -s 7 -d 0 -p ack -e 40 -c 0 -i 1936 -a 0 -x {10.0 9.0 963 ------- null} h -t 1.12085 -s 7 -d 8 -p ack -e 40 -c 0 -i 1936 -a 0 -x {10.0 9.0 963 ------- null} r -t 1.12099 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1921 -a 0 -x {9.0 10.0 965 ------- null} + -t 1.12099 -s 10 -d 7 -p ack -e 40 -c 0 -i 1940 -a 0 -x {10.0 9.0 965 ------- null} - -t 1.12099 -s 10 -d 7 -p ack -e 40 -c 0 -i 1940 -a 0 -x {10.0 9.0 965 ------- null} h -t 1.12099 -s 10 -d 7 -p ack -e 40 -c 0 -i 1940 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.12099 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1935 -a 0 -x {9.0 10.0 972 ------- null} + -t 1.12099 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1935 -a 0 -x {9.0 10.0 972 ------- null} h -t 1.12099 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1935 -a 0 -x {9.0 10.0 972 ------- null} + -t 1.12146 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1927 -a 0 -x {9.0 10.0 968 ------- null} - -t 1.12146 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1927 -a 0 -x {9.0 10.0 968 ------- null} h -t 1.12146 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1927 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.12155 -s 0 -d 9 -p ack -e 40 -c 0 -i 1930 -a 0 -x {10.0 9.0 960 ------- null} + -t 1.12155 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1941 -a 0 -x {9.0 10.0 975 ------- null} - -t 1.12155 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1941 -a 0 -x {9.0 10.0 975 ------- null} h -t 1.12155 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1941 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.12162 -s 0 -d 9 -p ack -e 40 -c 0 -i 1934 -a 0 -x {10.0 9.0 962 ------- null} - -t 1.12162 -s 0 -d 9 -p ack -e 40 -c 0 -i 1934 -a 0 -x {10.0 9.0 962 ------- null} h -t 1.12162 -s 0 -d 9 -p ack -e 40 -c 0 -i 1934 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.12194 -s 10 -d 7 -p ack -e 40 -c 0 -i 1938 -a 0 -x {10.0 9.0 964 ------- null} + -t 1.12194 -s 7 -d 0 -p ack -e 40 -c 0 -i 1938 -a 0 -x {10.0 9.0 964 ------- null} h -t 1.12194 -s 7 -d 8 -p ack -e 40 -c 0 -i 1938 -a 0 -x {10.0 9.0 964 ------- null} r -t 1.12208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1923 -a 0 -x {9.0 10.0 966 ------- null} + -t 1.12208 -s 10 -d 7 -p ack -e 40 -c 0 -i 1942 -a 0 -x {10.0 9.0 966 ------- null} - -t 1.12208 -s 10 -d 7 -p ack -e 40 -c 0 -i 1942 -a 0 -x {10.0 9.0 966 ------- null} h -t 1.12208 -s 10 -d 7 -p ack -e 40 -c 0 -i 1942 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.12211 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1937 -a 0 -x {9.0 10.0 973 ------- null} + -t 1.12211 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1937 -a 0 -x {9.0 10.0 973 ------- null} h -t 1.12211 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1937 -a 0 -x {9.0 10.0 973 ------- null} + -t 1.12254 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1929 -a 0 -x {9.0 10.0 969 ------- null} - -t 1.12254 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1929 -a 0 -x {9.0 10.0 969 ------- null} h -t 1.12254 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1929 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.12261 -s 0 -d 9 -p ack -e 40 -c 0 -i 1936 -a 0 -x {10.0 9.0 963 ------- null} - -t 1.12261 -s 0 -d 9 -p ack -e 40 -c 0 -i 1936 -a 0 -x {10.0 9.0 963 ------- null} h -t 1.12261 -s 0 -d 9 -p ack -e 40 -c 0 -i 1936 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.12262 -s 0 -d 9 -p ack -e 40 -c 0 -i 1932 -a 0 -x {10.0 9.0 961 ------- null} + -t 1.12262 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1943 -a 0 -x {9.0 10.0 976 ------- null} - -t 1.12262 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1943 -a 0 -x {9.0 10.0 976 ------- null} h -t 1.12262 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1943 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.12302 -s 10 -d 7 -p ack -e 40 -c 0 -i 1940 -a 0 -x {10.0 9.0 965 ------- null} + -t 1.12302 -s 7 -d 0 -p ack -e 40 -c 0 -i 1940 -a 0 -x {10.0 9.0 965 ------- null} h -t 1.12302 -s 7 -d 8 -p ack -e 40 -c 0 -i 1940 -a 0 -x {10.0 9.0 965 ------- null} r -t 1.12317 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1925 -a 0 -x {9.0 10.0 967 ------- null} + -t 1.12317 -s 10 -d 7 -p ack -e 40 -c 0 -i 1944 -a 0 -x {10.0 9.0 967 ------- null} - -t 1.12317 -s 10 -d 7 -p ack -e 40 -c 0 -i 1944 -a 0 -x {10.0 9.0 967 ------- null} h -t 1.12317 -s 10 -d 7 -p ack -e 40 -c 0 -i 1944 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.12326 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1939 -a 0 -x {9.0 10.0 974 ------- null} + -t 1.12326 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1939 -a 0 -x {9.0 10.0 974 ------- null} h -t 1.12326 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1939 -a 0 -x {9.0 10.0 974 ------- null} + -t 1.12363 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1931 -a 0 -x {9.0 10.0 970 ------- null} - -t 1.12363 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1931 -a 0 -x {9.0 10.0 970 ------- null} h -t 1.12363 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1931 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.12365 -s 0 -d 9 -p ack -e 40 -c 0 -i 1934 -a 0 -x {10.0 9.0 962 ------- null} + -t 1.12365 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1945 -a 0 -x {9.0 10.0 977 ------- null} - -t 1.12365 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1945 -a 0 -x {9.0 10.0 977 ------- null} h -t 1.12365 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1945 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.12373 -s 0 -d 9 -p ack -e 40 -c 0 -i 1938 -a 0 -x {10.0 9.0 964 ------- null} - -t 1.12373 -s 0 -d 9 -p ack -e 40 -c 0 -i 1938 -a 0 -x {10.0 9.0 964 ------- null} h -t 1.12373 -s 0 -d 9 -p ack -e 40 -c 0 -i 1938 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.12411 -s 10 -d 7 -p ack -e 40 -c 0 -i 1942 -a 0 -x {10.0 9.0 966 ------- null} + -t 1.12411 -s 7 -d 0 -p ack -e 40 -c 0 -i 1942 -a 0 -x {10.0 9.0 966 ------- null} h -t 1.12411 -s 7 -d 8 -p ack -e 40 -c 0 -i 1942 -a 0 -x {10.0 9.0 966 ------- null} r -t 1.12426 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1927 -a 0 -x {9.0 10.0 968 ------- null} + -t 1.12426 -s 10 -d 7 -p ack -e 40 -c 0 -i 1946 -a 0 -x {10.0 9.0 968 ------- null} - -t 1.12426 -s 10 -d 7 -p ack -e 40 -c 0 -i 1946 -a 0 -x {10.0 9.0 968 ------- null} h -t 1.12426 -s 10 -d 7 -p ack -e 40 -c 0 -i 1946 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.12435 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1941 -a 0 -x {9.0 10.0 975 ------- null} + -t 1.12435 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1941 -a 0 -x {9.0 10.0 975 ------- null} h -t 1.12435 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1941 -a 0 -x {9.0 10.0 975 ------- null} r -t 1.12464 -s 0 -d 9 -p ack -e 40 -c 0 -i 1936 -a 0 -x {10.0 9.0 963 ------- null} + -t 1.12464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1947 -a 0 -x {9.0 10.0 978 ------- null} - -t 1.12464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1947 -a 0 -x {9.0 10.0 978 ------- null} h -t 1.12464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1947 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.12472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1933 -a 0 -x {9.0 10.0 971 ------- null} - -t 1.12472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1933 -a 0 -x {9.0 10.0 971 ------- null} h -t 1.12472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1933 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.12493 -s 0 -d 9 -p ack -e 40 -c 0 -i 1940 -a 0 -x {10.0 9.0 965 ------- null} - -t 1.12493 -s 0 -d 9 -p ack -e 40 -c 0 -i 1940 -a 0 -x {10.0 9.0 965 ------- null} h -t 1.12493 -s 0 -d 9 -p ack -e 40 -c 0 -i 1940 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.1252 -s 10 -d 7 -p ack -e 40 -c 0 -i 1944 -a 0 -x {10.0 9.0 967 ------- null} + -t 1.1252 -s 7 -d 0 -p ack -e 40 -c 0 -i 1944 -a 0 -x {10.0 9.0 967 ------- null} h -t 1.1252 -s 7 -d 8 -p ack -e 40 -c 0 -i 1944 -a 0 -x {10.0 9.0 967 ------- null} r -t 1.12534 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1929 -a 0 -x {9.0 10.0 969 ------- null} + -t 1.12534 -s 10 -d 7 -p ack -e 40 -c 0 -i 1948 -a 0 -x {10.0 9.0 969 ------- null} - -t 1.12534 -s 10 -d 7 -p ack -e 40 -c 0 -i 1948 -a 0 -x {10.0 9.0 969 ------- null} h -t 1.12534 -s 10 -d 7 -p ack -e 40 -c 0 -i 1948 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.12542 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1943 -a 0 -x {9.0 10.0 976 ------- null} + -t 1.12542 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1943 -a 0 -x {9.0 10.0 976 ------- null} h -t 1.12542 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1943 -a 0 -x {9.0 10.0 976 ------- null} r -t 1.12576 -s 0 -d 9 -p ack -e 40 -c 0 -i 1938 -a 0 -x {10.0 9.0 964 ------- null} + -t 1.12576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1949 -a 0 -x {9.0 10.0 979 ------- null} - -t 1.12576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1949 -a 0 -x {9.0 10.0 979 ------- null} h -t 1.12576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1949 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.12581 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1935 -a 0 -x {9.0 10.0 972 ------- null} - -t 1.12581 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1935 -a 0 -x {9.0 10.0 972 ------- null} h -t 1.12581 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1935 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.12592 -s 0 -d 9 -p ack -e 40 -c 0 -i 1942 -a 0 -x {10.0 9.0 966 ------- null} - -t 1.12592 -s 0 -d 9 -p ack -e 40 -c 0 -i 1942 -a 0 -x {10.0 9.0 966 ------- null} h -t 1.12592 -s 0 -d 9 -p ack -e 40 -c 0 -i 1942 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.12629 -s 10 -d 7 -p ack -e 40 -c 0 -i 1946 -a 0 -x {10.0 9.0 968 ------- null} + -t 1.12629 -s 7 -d 0 -p ack -e 40 -c 0 -i 1946 -a 0 -x {10.0 9.0 968 ------- null} h -t 1.12629 -s 7 -d 8 -p ack -e 40 -c 0 -i 1946 -a 0 -x {10.0 9.0 968 ------- null} r -t 1.12643 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1931 -a 0 -x {9.0 10.0 970 ------- null} + -t 1.12643 -s 10 -d 7 -p ack -e 40 -c 0 -i 1950 -a 0 -x {10.0 9.0 970 ------- null} - -t 1.12643 -s 10 -d 7 -p ack -e 40 -c 0 -i 1950 -a 0 -x {10.0 9.0 970 ------- null} h -t 1.12643 -s 10 -d 7 -p ack -e 40 -c 0 -i 1950 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.12645 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1945 -a 0 -x {9.0 10.0 977 ------- null} + -t 1.12645 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1945 -a 0 -x {9.0 10.0 977 ------- null} h -t 1.12645 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1945 -a 0 -x {9.0 10.0 977 ------- null} + -t 1.1269 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1937 -a 0 -x {9.0 10.0 973 ------- null} - -t 1.1269 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1937 -a 0 -x {9.0 10.0 973 ------- null} h -t 1.1269 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1937 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.12696 -s 0 -d 9 -p ack -e 40 -c 0 -i 1940 -a 0 -x {10.0 9.0 965 ------- null} + -t 1.12696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1951 -a 0 -x {9.0 10.0 980 ------- null} - -t 1.12696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1951 -a 0 -x {9.0 10.0 980 ------- null} h -t 1.12696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1951 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.12706 -s 0 -d 9 -p ack -e 40 -c 0 -i 1944 -a 0 -x {10.0 9.0 967 ------- null} - -t 1.12706 -s 0 -d 9 -p ack -e 40 -c 0 -i 1944 -a 0 -x {10.0 9.0 967 ------- null} h -t 1.12706 -s 0 -d 9 -p ack -e 40 -c 0 -i 1944 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.12738 -s 10 -d 7 -p ack -e 40 -c 0 -i 1948 -a 0 -x {10.0 9.0 969 ------- null} + -t 1.12738 -s 7 -d 0 -p ack -e 40 -c 0 -i 1948 -a 0 -x {10.0 9.0 969 ------- null} h -t 1.12738 -s 7 -d 8 -p ack -e 40 -c 0 -i 1948 -a 0 -x {10.0 9.0 969 ------- null} r -t 1.12744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1947 -a 0 -x {9.0 10.0 978 ------- null} + -t 1.12744 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1947 -a 0 -x {9.0 10.0 978 ------- null} h -t 1.12744 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1947 -a 0 -x {9.0 10.0 978 ------- null} r -t 1.12752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1933 -a 0 -x {9.0 10.0 971 ------- null} + -t 1.12752 -s 10 -d 7 -p ack -e 40 -c 0 -i 1952 -a 0 -x {10.0 9.0 971 ------- null} - -t 1.12752 -s 10 -d 7 -p ack -e 40 -c 0 -i 1952 -a 0 -x {10.0 9.0 971 ------- null} h -t 1.12752 -s 10 -d 7 -p ack -e 40 -c 0 -i 1952 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.12795 -s 0 -d 9 -p ack -e 40 -c 0 -i 1942 -a 0 -x {10.0 9.0 966 ------- null} + -t 1.12795 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1953 -a 0 -x {9.0 10.0 981 ------- null} - -t 1.12795 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1953 -a 0 -x {9.0 10.0 981 ------- null} h -t 1.12795 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1953 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.12798 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1939 -a 0 -x {9.0 10.0 974 ------- null} - -t 1.12798 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1939 -a 0 -x {9.0 10.0 974 ------- null} h -t 1.12798 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1939 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.12811 -s 0 -d 9 -p ack -e 40 -c 0 -i 1946 -a 0 -x {10.0 9.0 968 ------- null} - -t 1.12811 -s 0 -d 9 -p ack -e 40 -c 0 -i 1946 -a 0 -x {10.0 9.0 968 ------- null} h -t 1.12811 -s 0 -d 9 -p ack -e 40 -c 0 -i 1946 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.12846 -s 10 -d 7 -p ack -e 40 -c 0 -i 1950 -a 0 -x {10.0 9.0 970 ------- null} + -t 1.12846 -s 7 -d 0 -p ack -e 40 -c 0 -i 1950 -a 0 -x {10.0 9.0 970 ------- null} h -t 1.12846 -s 7 -d 8 -p ack -e 40 -c 0 -i 1950 -a 0 -x {10.0 9.0 970 ------- null} r -t 1.12856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1949 -a 0 -x {9.0 10.0 979 ------- null} + -t 1.12856 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1949 -a 0 -x {9.0 10.0 979 ------- null} h -t 1.12856 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1949 -a 0 -x {9.0 10.0 979 ------- null} r -t 1.12861 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1935 -a 0 -x {9.0 10.0 972 ------- null} + -t 1.12861 -s 10 -d 7 -p ack -e 40 -c 0 -i 1954 -a 0 -x {10.0 9.0 972 ------- null} - -t 1.12861 -s 10 -d 7 -p ack -e 40 -c 0 -i 1954 -a 0 -x {10.0 9.0 972 ------- null} h -t 1.12861 -s 10 -d 7 -p ack -e 40 -c 0 -i 1954 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.12907 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1941 -a 0 -x {9.0 10.0 975 ------- null} - -t 1.12907 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1941 -a 0 -x {9.0 10.0 975 ------- null} h -t 1.12907 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1941 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.12909 -s 0 -d 9 -p ack -e 40 -c 0 -i 1944 -a 0 -x {10.0 9.0 967 ------- null} + -t 1.12909 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1955 -a 0 -x {9.0 10.0 982 ------- null} - -t 1.12909 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1955 -a 0 -x {9.0 10.0 982 ------- null} h -t 1.12909 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1955 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.12915 -s 0 -d 9 -p ack -e 40 -c 0 -i 1948 -a 0 -x {10.0 9.0 969 ------- null} - -t 1.12915 -s 0 -d 9 -p ack -e 40 -c 0 -i 1948 -a 0 -x {10.0 9.0 969 ------- null} h -t 1.12915 -s 0 -d 9 -p ack -e 40 -c 0 -i 1948 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.12955 -s 10 -d 7 -p ack -e 40 -c 0 -i 1952 -a 0 -x {10.0 9.0 971 ------- null} + -t 1.12955 -s 7 -d 0 -p ack -e 40 -c 0 -i 1952 -a 0 -x {10.0 9.0 971 ------- null} h -t 1.12955 -s 7 -d 8 -p ack -e 40 -c 0 -i 1952 -a 0 -x {10.0 9.0 971 ------- null} r -t 1.1297 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1937 -a 0 -x {9.0 10.0 973 ------- null} + -t 1.1297 -s 10 -d 7 -p ack -e 40 -c 0 -i 1956 -a 0 -x {10.0 9.0 973 ------- null} - -t 1.1297 -s 10 -d 7 -p ack -e 40 -c 0 -i 1956 -a 0 -x {10.0 9.0 973 ------- null} h -t 1.1297 -s 10 -d 7 -p ack -e 40 -c 0 -i 1956 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.12976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1951 -a 0 -x {9.0 10.0 980 ------- null} + -t 1.12976 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1951 -a 0 -x {9.0 10.0 980 ------- null} h -t 1.12976 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1951 -a 0 -x {9.0 10.0 980 ------- null} r -t 1.13014 -s 0 -d 9 -p ack -e 40 -c 0 -i 1946 -a 0 -x {10.0 9.0 968 ------- null} + -t 1.13014 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1957 -a 0 -x {9.0 10.0 983 ------- null} - -t 1.13014 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1957 -a 0 -x {9.0 10.0 983 ------- null} h -t 1.13014 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1957 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.13016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1943 -a 0 -x {9.0 10.0 976 ------- null} - -t 1.13016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1943 -a 0 -x {9.0 10.0 976 ------- null} h -t 1.13016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1943 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.13026 -s 0 -d 9 -p ack -e 40 -c 0 -i 1950 -a 0 -x {10.0 9.0 970 ------- null} - -t 1.13026 -s 0 -d 9 -p ack -e 40 -c 0 -i 1950 -a 0 -x {10.0 9.0 970 ------- null} h -t 1.13026 -s 0 -d 9 -p ack -e 40 -c 0 -i 1950 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.13064 -s 10 -d 7 -p ack -e 40 -c 0 -i 1954 -a 0 -x {10.0 9.0 972 ------- null} + -t 1.13064 -s 7 -d 0 -p ack -e 40 -c 0 -i 1954 -a 0 -x {10.0 9.0 972 ------- null} h -t 1.13064 -s 7 -d 8 -p ack -e 40 -c 0 -i 1954 -a 0 -x {10.0 9.0 972 ------- null} r -t 1.13075 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1953 -a 0 -x {9.0 10.0 981 ------- null} + -t 1.13075 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1953 -a 0 -x {9.0 10.0 981 ------- null} h -t 1.13075 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1953 -a 0 -x {9.0 10.0 981 ------- null} r -t 1.13078 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1939 -a 0 -x {9.0 10.0 974 ------- null} + -t 1.13078 -s 10 -d 7 -p ack -e 40 -c 0 -i 1958 -a 0 -x {10.0 9.0 974 ------- null} - -t 1.13078 -s 10 -d 7 -p ack -e 40 -c 0 -i 1958 -a 0 -x {10.0 9.0 974 ------- null} h -t 1.13078 -s 10 -d 7 -p ack -e 40 -c 0 -i 1958 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.13118 -s 0 -d 9 -p ack -e 40 -c 0 -i 1948 -a 0 -x {10.0 9.0 969 ------- null} + -t 1.13118 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1959 -a 0 -x {9.0 10.0 984 ------- null} - -t 1.13118 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1959 -a 0 -x {9.0 10.0 984 ------- null} h -t 1.13118 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1959 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.13125 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1945 -a 0 -x {9.0 10.0 977 ------- null} - -t 1.13125 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1945 -a 0 -x {9.0 10.0 977 ------- null} h -t 1.13125 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1945 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.1315 -s 0 -d 9 -p ack -e 40 -c 0 -i 1952 -a 0 -x {10.0 9.0 971 ------- null} - -t 1.1315 -s 0 -d 9 -p ack -e 40 -c 0 -i 1952 -a 0 -x {10.0 9.0 971 ------- null} h -t 1.1315 -s 0 -d 9 -p ack -e 40 -c 0 -i 1952 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.13173 -s 10 -d 7 -p ack -e 40 -c 0 -i 1956 -a 0 -x {10.0 9.0 973 ------- null} + -t 1.13173 -s 7 -d 0 -p ack -e 40 -c 0 -i 1956 -a 0 -x {10.0 9.0 973 ------- null} h -t 1.13173 -s 7 -d 8 -p ack -e 40 -c 0 -i 1956 -a 0 -x {10.0 9.0 973 ------- null} r -t 1.13187 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1941 -a 0 -x {9.0 10.0 975 ------- null} + -t 1.13187 -s 10 -d 7 -p ack -e 40 -c 0 -i 1960 -a 0 -x {10.0 9.0 975 ------- null} - -t 1.13187 -s 10 -d 7 -p ack -e 40 -c 0 -i 1960 -a 0 -x {10.0 9.0 975 ------- null} h -t 1.13187 -s 10 -d 7 -p ack -e 40 -c 0 -i 1960 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.13189 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1955 -a 0 -x {9.0 10.0 982 ------- null} + -t 1.13189 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1955 -a 0 -x {9.0 10.0 982 ------- null} h -t 1.13189 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1955 -a 0 -x {9.0 10.0 982 ------- null} r -t 1.13229 -s 0 -d 9 -p ack -e 40 -c 0 -i 1950 -a 0 -x {10.0 9.0 970 ------- null} + -t 1.13229 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1961 -a 0 -x {9.0 10.0 985 ------- null} - -t 1.13229 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1961 -a 0 -x {9.0 10.0 985 ------- null} h -t 1.13229 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1961 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.13234 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1947 -a 0 -x {9.0 10.0 978 ------- null} - -t 1.13234 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1947 -a 0 -x {9.0 10.0 978 ------- null} h -t 1.13234 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1947 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.13246 -s 0 -d 9 -p ack -e 40 -c 0 -i 1954 -a 0 -x {10.0 9.0 972 ------- null} - -t 1.13246 -s 0 -d 9 -p ack -e 40 -c 0 -i 1954 -a 0 -x {10.0 9.0 972 ------- null} h -t 1.13246 -s 0 -d 9 -p ack -e 40 -c 0 -i 1954 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.13282 -s 10 -d 7 -p ack -e 40 -c 0 -i 1958 -a 0 -x {10.0 9.0 974 ------- null} + -t 1.13282 -s 7 -d 0 -p ack -e 40 -c 0 -i 1958 -a 0 -x {10.0 9.0 974 ------- null} h -t 1.13282 -s 7 -d 8 -p ack -e 40 -c 0 -i 1958 -a 0 -x {10.0 9.0 974 ------- null} r -t 1.13294 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1957 -a 0 -x {9.0 10.0 983 ------- null} + -t 1.13294 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1957 -a 0 -x {9.0 10.0 983 ------- null} h -t 1.13294 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1957 -a 0 -x {9.0 10.0 983 ------- null} r -t 1.13296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1943 -a 0 -x {9.0 10.0 976 ------- null} + -t 1.13296 -s 10 -d 7 -p ack -e 40 -c 0 -i 1962 -a 0 -x {10.0 9.0 976 ------- null} - -t 1.13296 -s 10 -d 7 -p ack -e 40 -c 0 -i 1962 -a 0 -x {10.0 9.0 976 ------- null} h -t 1.13296 -s 10 -d 7 -p ack -e 40 -c 0 -i 1962 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.13342 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1949 -a 0 -x {9.0 10.0 979 ------- null} - -t 1.13342 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1949 -a 0 -x {9.0 10.0 979 ------- null} h -t 1.13342 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1949 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.13354 -s 0 -d 9 -p ack -e 40 -c 0 -i 1952 -a 0 -x {10.0 9.0 971 ------- null} + -t 1.13354 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1963 -a 0 -x {9.0 10.0 986 ------- null} - -t 1.13354 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1963 -a 0 -x {9.0 10.0 986 ------- null} h -t 1.13354 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1963 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.13358 -s 0 -d 9 -p ack -e 40 -c 0 -i 1956 -a 0 -x {10.0 9.0 973 ------- null} - -t 1.13358 -s 0 -d 9 -p ack -e 40 -c 0 -i 1956 -a 0 -x {10.0 9.0 973 ------- null} h -t 1.13358 -s 0 -d 9 -p ack -e 40 -c 0 -i 1956 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.1339 -s 10 -d 7 -p ack -e 40 -c 0 -i 1960 -a 0 -x {10.0 9.0 975 ------- null} + -t 1.1339 -s 7 -d 0 -p ack -e 40 -c 0 -i 1960 -a 0 -x {10.0 9.0 975 ------- null} h -t 1.1339 -s 7 -d 8 -p ack -e 40 -c 0 -i 1960 -a 0 -x {10.0 9.0 975 ------- null} r -t 1.13398 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1959 -a 0 -x {9.0 10.0 984 ------- null} + -t 1.13398 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1959 -a 0 -x {9.0 10.0 984 ------- null} h -t 1.13398 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1959 -a 0 -x {9.0 10.0 984 ------- null} r -t 1.13405 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1945 -a 0 -x {9.0 10.0 977 ------- null} + -t 1.13405 -s 10 -d 7 -p ack -e 40 -c 0 -i 1964 -a 0 -x {10.0 9.0 977 ------- null} - -t 1.13405 -s 10 -d 7 -p ack -e 40 -c 0 -i 1964 -a 0 -x {10.0 9.0 977 ------- null} h -t 1.13405 -s 10 -d 7 -p ack -e 40 -c 0 -i 1964 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.1345 -s 0 -d 9 -p ack -e 40 -c 0 -i 1954 -a 0 -x {10.0 9.0 972 ------- null} + -t 1.1345 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1965 -a 0 -x {9.0 10.0 987 ------- null} - -t 1.1345 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1965 -a 0 -x {9.0 10.0 987 ------- null} h -t 1.1345 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1965 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.13451 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1951 -a 0 -x {9.0 10.0 980 ------- null} - -t 1.13451 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1951 -a 0 -x {9.0 10.0 980 ------- null} h -t 1.13451 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1951 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.13459 -s 0 -d 9 -p ack -e 40 -c 0 -i 1958 -a 0 -x {10.0 9.0 974 ------- null} - -t 1.13459 -s 0 -d 9 -p ack -e 40 -c 0 -i 1958 -a 0 -x {10.0 9.0 974 ------- null} h -t 1.13459 -s 0 -d 9 -p ack -e 40 -c 0 -i 1958 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.13499 -s 10 -d 7 -p ack -e 40 -c 0 -i 1962 -a 0 -x {10.0 9.0 976 ------- null} + -t 1.13499 -s 7 -d 0 -p ack -e 40 -c 0 -i 1962 -a 0 -x {10.0 9.0 976 ------- null} h -t 1.13499 -s 7 -d 8 -p ack -e 40 -c 0 -i 1962 -a 0 -x {10.0 9.0 976 ------- null} r -t 1.13509 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1961 -a 0 -x {9.0 10.0 985 ------- null} + -t 1.13509 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1961 -a 0 -x {9.0 10.0 985 ------- null} h -t 1.13509 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1961 -a 0 -x {9.0 10.0 985 ------- null} r -t 1.13514 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1947 -a 0 -x {9.0 10.0 978 ------- null} + -t 1.13514 -s 10 -d 7 -p ack -e 40 -c 0 -i 1966 -a 0 -x {10.0 9.0 978 ------- null} - -t 1.13514 -s 10 -d 7 -p ack -e 40 -c 0 -i 1966 -a 0 -x {10.0 9.0 978 ------- null} h -t 1.13514 -s 10 -d 7 -p ack -e 40 -c 0 -i 1966 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.1356 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1953 -a 0 -x {9.0 10.0 981 ------- null} - -t 1.1356 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1953 -a 0 -x {9.0 10.0 981 ------- null} h -t 1.1356 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1953 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.13562 -s 0 -d 9 -p ack -e 40 -c 0 -i 1956 -a 0 -x {10.0 9.0 973 ------- null} + -t 1.13562 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1967 -a 0 -x {9.0 10.0 988 ------- null} - -t 1.13562 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1967 -a 0 -x {9.0 10.0 988 ------- null} h -t 1.13562 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1967 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.13579 -s 0 -d 9 -p ack -e 40 -c 0 -i 1960 -a 0 -x {10.0 9.0 975 ------- null} - -t 1.13579 -s 0 -d 9 -p ack -e 40 -c 0 -i 1960 -a 0 -x {10.0 9.0 975 ------- null} h -t 1.13579 -s 0 -d 9 -p ack -e 40 -c 0 -i 1960 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.13608 -s 10 -d 7 -p ack -e 40 -c 0 -i 1964 -a 0 -x {10.0 9.0 977 ------- null} + -t 1.13608 -s 7 -d 0 -p ack -e 40 -c 0 -i 1964 -a 0 -x {10.0 9.0 977 ------- null} h -t 1.13608 -s 7 -d 8 -p ack -e 40 -c 0 -i 1964 -a 0 -x {10.0 9.0 977 ------- null} r -t 1.13622 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1949 -a 0 -x {9.0 10.0 979 ------- null} + -t 1.13622 -s 10 -d 7 -p ack -e 40 -c 0 -i 1968 -a 0 -x {10.0 9.0 979 ------- null} - -t 1.13622 -s 10 -d 7 -p ack -e 40 -c 0 -i 1968 -a 0 -x {10.0 9.0 979 ------- null} h -t 1.13622 -s 10 -d 7 -p ack -e 40 -c 0 -i 1968 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.13634 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1963 -a 0 -x {9.0 10.0 986 ------- null} + -t 1.13634 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1963 -a 0 -x {9.0 10.0 986 ------- null} h -t 1.13634 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1963 -a 0 -x {9.0 10.0 986 ------- null} r -t 1.13662 -s 0 -d 9 -p ack -e 40 -c 0 -i 1958 -a 0 -x {10.0 9.0 974 ------- null} + -t 1.13662 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1969 -a 0 -x {9.0 10.0 989 ------- null} - -t 1.13662 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1969 -a 0 -x {9.0 10.0 989 ------- null} h -t 1.13662 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1969 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.13669 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1955 -a 0 -x {9.0 10.0 982 ------- null} - -t 1.13669 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1955 -a 0 -x {9.0 10.0 982 ------- null} h -t 1.13669 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1955 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.13694 -s 0 -d 9 -p ack -e 40 -c 0 -i 1962 -a 0 -x {10.0 9.0 976 ------- null} - -t 1.13694 -s 0 -d 9 -p ack -e 40 -c 0 -i 1962 -a 0 -x {10.0 9.0 976 ------- null} h -t 1.13694 -s 0 -d 9 -p ack -e 40 -c 0 -i 1962 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.13717 -s 10 -d 7 -p ack -e 40 -c 0 -i 1966 -a 0 -x {10.0 9.0 978 ------- null} + -t 1.13717 -s 7 -d 0 -p ack -e 40 -c 0 -i 1966 -a 0 -x {10.0 9.0 978 ------- null} h -t 1.13717 -s 7 -d 8 -p ack -e 40 -c 0 -i 1966 -a 0 -x {10.0 9.0 978 ------- null} r -t 1.1373 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1965 -a 0 -x {9.0 10.0 987 ------- null} + -t 1.1373 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1965 -a 0 -x {9.0 10.0 987 ------- null} h -t 1.1373 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1965 -a 0 -x {9.0 10.0 987 ------- null} r -t 1.13731 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1951 -a 0 -x {9.0 10.0 980 ------- null} + -t 1.13731 -s 10 -d 7 -p ack -e 40 -c 0 -i 1970 -a 0 -x {10.0 9.0 980 ------- null} - -t 1.13731 -s 10 -d 7 -p ack -e 40 -c 0 -i 1970 -a 0 -x {10.0 9.0 980 ------- null} h -t 1.13731 -s 10 -d 7 -p ack -e 40 -c 0 -i 1970 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.13778 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1957 -a 0 -x {9.0 10.0 983 ------- null} - -t 1.13778 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1957 -a 0 -x {9.0 10.0 983 ------- null} h -t 1.13778 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1957 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.13782 -s 0 -d 9 -p ack -e 40 -c 0 -i 1960 -a 0 -x {10.0 9.0 975 ------- null} + -t 1.13782 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1971 -a 0 -x {9.0 10.0 990 ------- null} - -t 1.13782 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1971 -a 0 -x {9.0 10.0 990 ------- null} h -t 1.13782 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1971 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.13784 -s 0 -d 9 -p ack -e 40 -c 0 -i 1964 -a 0 -x {10.0 9.0 977 ------- null} - -t 1.13784 -s 0 -d 9 -p ack -e 40 -c 0 -i 1964 -a 0 -x {10.0 9.0 977 ------- null} h -t 1.13784 -s 0 -d 9 -p ack -e 40 -c 0 -i 1964 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.13826 -s 10 -d 7 -p ack -e 40 -c 0 -i 1968 -a 0 -x {10.0 9.0 979 ------- null} + -t 1.13826 -s 7 -d 0 -p ack -e 40 -c 0 -i 1968 -a 0 -x {10.0 9.0 979 ------- null} h -t 1.13826 -s 7 -d 8 -p ack -e 40 -c 0 -i 1968 -a 0 -x {10.0 9.0 979 ------- null} r -t 1.1384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1953 -a 0 -x {9.0 10.0 981 ------- null} + -t 1.1384 -s 10 -d 7 -p ack -e 40 -c 0 -i 1972 -a 0 -x {10.0 9.0 981 ------- null} - -t 1.1384 -s 10 -d 7 -p ack -e 40 -c 0 -i 1972 -a 0 -x {10.0 9.0 981 ------- null} h -t 1.1384 -s 10 -d 7 -p ack -e 40 -c 0 -i 1972 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.13842 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1967 -a 0 -x {9.0 10.0 988 ------- null} + -t 1.13842 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1967 -a 0 -x {9.0 10.0 988 ------- null} h -t 1.13842 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1967 -a 0 -x {9.0 10.0 988 ------- null} + -t 1.13886 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1959 -a 0 -x {9.0 10.0 984 ------- null} - -t 1.13886 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1959 -a 0 -x {9.0 10.0 984 ------- null} h -t 1.13886 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1959 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.13898 -s 0 -d 9 -p ack -e 40 -c 0 -i 1962 -a 0 -x {10.0 9.0 976 ------- null} + -t 1.13898 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1973 -a 0 -x {9.0 10.0 991 ------- null} - -t 1.13898 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1973 -a 0 -x {9.0 10.0 991 ------- null} h -t 1.13898 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1973 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.13904 -s 0 -d 9 -p ack -e 40 -c 0 -i 1966 -a 0 -x {10.0 9.0 978 ------- null} - -t 1.13904 -s 0 -d 9 -p ack -e 40 -c 0 -i 1966 -a 0 -x {10.0 9.0 978 ------- null} h -t 1.13904 -s 0 -d 9 -p ack -e 40 -c 0 -i 1966 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.13934 -s 10 -d 7 -p ack -e 40 -c 0 -i 1970 -a 0 -x {10.0 9.0 980 ------- null} + -t 1.13934 -s 7 -d 0 -p ack -e 40 -c 0 -i 1970 -a 0 -x {10.0 9.0 980 ------- null} h -t 1.13934 -s 7 -d 8 -p ack -e 40 -c 0 -i 1970 -a 0 -x {10.0 9.0 980 ------- null} r -t 1.13942 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1969 -a 0 -x {9.0 10.0 989 ------- null} + -t 1.13942 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1969 -a 0 -x {9.0 10.0 989 ------- null} h -t 1.13942 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1969 -a 0 -x {9.0 10.0 989 ------- null} r -t 1.13949 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1955 -a 0 -x {9.0 10.0 982 ------- null} + -t 1.13949 -s 10 -d 7 -p ack -e 40 -c 0 -i 1974 -a 0 -x {10.0 9.0 982 ------- null} - -t 1.13949 -s 10 -d 7 -p ack -e 40 -c 0 -i 1974 -a 0 -x {10.0 9.0 982 ------- null} h -t 1.13949 -s 10 -d 7 -p ack -e 40 -c 0 -i 1974 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.13987 -s 0 -d 9 -p ack -e 40 -c 0 -i 1964 -a 0 -x {10.0 9.0 977 ------- null} + -t 1.13987 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1975 -a 0 -x {9.0 10.0 992 ------- null} - -t 1.13987 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1975 -a 0 -x {9.0 10.0 992 ------- null} h -t 1.13987 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1975 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.13995 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1961 -a 0 -x {9.0 10.0 985 ------- null} - -t 1.13995 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1961 -a 0 -x {9.0 10.0 985 ------- null} h -t 1.13995 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1961 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.14005 -s 0 -d 9 -p ack -e 40 -c 0 -i 1968 -a 0 -x {10.0 9.0 979 ------- null} - -t 1.14005 -s 0 -d 9 -p ack -e 40 -c 0 -i 1968 -a 0 -x {10.0 9.0 979 ------- null} h -t 1.14005 -s 0 -d 9 -p ack -e 40 -c 0 -i 1968 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.14043 -s 10 -d 7 -p ack -e 40 -c 0 -i 1972 -a 0 -x {10.0 9.0 981 ------- null} + -t 1.14043 -s 7 -d 0 -p ack -e 40 -c 0 -i 1972 -a 0 -x {10.0 9.0 981 ------- null} h -t 1.14043 -s 7 -d 8 -p ack -e 40 -c 0 -i 1972 -a 0 -x {10.0 9.0 981 ------- null} r -t 1.14058 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1957 -a 0 -x {9.0 10.0 983 ------- null} + -t 1.14058 -s 10 -d 7 -p ack -e 40 -c 0 -i 1976 -a 0 -x {10.0 9.0 983 ------- null} - -t 1.14058 -s 10 -d 7 -p ack -e 40 -c 0 -i 1976 -a 0 -x {10.0 9.0 983 ------- null} h -t 1.14058 -s 10 -d 7 -p ack -e 40 -c 0 -i 1976 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.14062 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1971 -a 0 -x {9.0 10.0 990 ------- null} + -t 1.14062 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1971 -a 0 -x {9.0 10.0 990 ------- null} h -t 1.14062 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1971 -a 0 -x {9.0 10.0 990 ------- null} + -t 1.14104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1963 -a 0 -x {9.0 10.0 986 ------- null} - -t 1.14104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1963 -a 0 -x {9.0 10.0 986 ------- null} h -t 1.14104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1963 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.14107 -s 0 -d 9 -p ack -e 40 -c 0 -i 1966 -a 0 -x {10.0 9.0 978 ------- null} + -t 1.14107 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1977 -a 0 -x {9.0 10.0 993 ------- null} - -t 1.14107 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1977 -a 0 -x {9.0 10.0 993 ------- null} h -t 1.14107 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1977 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.1411 -s 0 -d 9 -p ack -e 40 -c 0 -i 1970 -a 0 -x {10.0 9.0 980 ------- null} - -t 1.1411 -s 0 -d 9 -p ack -e 40 -c 0 -i 1970 -a 0 -x {10.0 9.0 980 ------- null} h -t 1.1411 -s 0 -d 9 -p ack -e 40 -c 0 -i 1970 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.14152 -s 10 -d 7 -p ack -e 40 -c 0 -i 1974 -a 0 -x {10.0 9.0 982 ------- null} + -t 1.14152 -s 7 -d 0 -p ack -e 40 -c 0 -i 1974 -a 0 -x {10.0 9.0 982 ------- null} h -t 1.14152 -s 7 -d 8 -p ack -e 40 -c 0 -i 1974 -a 0 -x {10.0 9.0 982 ------- null} r -t 1.14166 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1959 -a 0 -x {9.0 10.0 984 ------- null} + -t 1.14166 -s 10 -d 7 -p ack -e 40 -c 0 -i 1978 -a 0 -x {10.0 9.0 984 ------- null} - -t 1.14166 -s 10 -d 7 -p ack -e 40 -c 0 -i 1978 -a 0 -x {10.0 9.0 984 ------- null} h -t 1.14166 -s 10 -d 7 -p ack -e 40 -c 0 -i 1978 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.14178 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1973 -a 0 -x {9.0 10.0 991 ------- null} + -t 1.14178 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1973 -a 0 -x {9.0 10.0 991 ------- null} h -t 1.14178 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1973 -a 0 -x {9.0 10.0 991 ------- null} r -t 1.14208 -s 0 -d 9 -p ack -e 40 -c 0 -i 1968 -a 0 -x {10.0 9.0 979 ------- null} + -t 1.14208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1979 -a 0 -x {9.0 10.0 994 ------- null} - -t 1.14208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1979 -a 0 -x {9.0 10.0 994 ------- null} h -t 1.14208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1979 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.14213 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1965 -a 0 -x {9.0 10.0 987 ------- null} - -t 1.14213 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1965 -a 0 -x {9.0 10.0 987 ------- null} h -t 1.14213 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1965 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.14237 -s 0 -d 9 -p ack -e 40 -c 0 -i 1972 -a 0 -x {10.0 9.0 981 ------- null} - -t 1.14237 -s 0 -d 9 -p ack -e 40 -c 0 -i 1972 -a 0 -x {10.0 9.0 981 ------- null} h -t 1.14237 -s 0 -d 9 -p ack -e 40 -c 0 -i 1972 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.14261 -s 10 -d 7 -p ack -e 40 -c 0 -i 1976 -a 0 -x {10.0 9.0 983 ------- null} + -t 1.14261 -s 7 -d 0 -p ack -e 40 -c 0 -i 1976 -a 0 -x {10.0 9.0 983 ------- null} h -t 1.14261 -s 7 -d 8 -p ack -e 40 -c 0 -i 1976 -a 0 -x {10.0 9.0 983 ------- null} r -t 1.14267 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1975 -a 0 -x {9.0 10.0 992 ------- null} + -t 1.14267 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1975 -a 0 -x {9.0 10.0 992 ------- null} h -t 1.14267 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1975 -a 0 -x {9.0 10.0 992 ------- null} r -t 1.14275 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1961 -a 0 -x {9.0 10.0 985 ------- null} + -t 1.14275 -s 10 -d 7 -p ack -e 40 -c 0 -i 1980 -a 0 -x {10.0 9.0 985 ------- null} - -t 1.14275 -s 10 -d 7 -p ack -e 40 -c 0 -i 1980 -a 0 -x {10.0 9.0 985 ------- null} h -t 1.14275 -s 10 -d 7 -p ack -e 40 -c 0 -i 1980 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.14314 -s 0 -d 9 -p ack -e 40 -c 0 -i 1970 -a 0 -x {10.0 9.0 980 ------- null} + -t 1.14314 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1981 -a 0 -x {9.0 10.0 995 ------- null} - -t 1.14314 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1981 -a 0 -x {9.0 10.0 995 ------- null} h -t 1.14314 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1981 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.14322 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1967 -a 0 -x {9.0 10.0 988 ------- null} - -t 1.14322 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1967 -a 0 -x {9.0 10.0 988 ------- null} h -t 1.14322 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1967 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.14338 -s 0 -d 9 -p ack -e 40 -c 0 -i 1974 -a 0 -x {10.0 9.0 982 ------- null} - -t 1.14338 -s 0 -d 9 -p ack -e 40 -c 0 -i 1974 -a 0 -x {10.0 9.0 982 ------- null} h -t 1.14338 -s 0 -d 9 -p ack -e 40 -c 0 -i 1974 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.1437 -s 10 -d 7 -p ack -e 40 -c 0 -i 1978 -a 0 -x {10.0 9.0 984 ------- null} + -t 1.1437 -s 7 -d 0 -p ack -e 40 -c 0 -i 1978 -a 0 -x {10.0 9.0 984 ------- null} h -t 1.1437 -s 7 -d 8 -p ack -e 40 -c 0 -i 1978 -a 0 -x {10.0 9.0 984 ------- null} r -t 1.14384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1963 -a 0 -x {9.0 10.0 986 ------- null} + -t 1.14384 -s 10 -d 7 -p ack -e 40 -c 0 -i 1982 -a 0 -x {10.0 9.0 986 ------- null} - -t 1.14384 -s 10 -d 7 -p ack -e 40 -c 0 -i 1982 -a 0 -x {10.0 9.0 986 ------- null} h -t 1.14384 -s 10 -d 7 -p ack -e 40 -c 0 -i 1982 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.14387 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1977 -a 0 -x {9.0 10.0 993 ------- null} + -t 1.14387 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1977 -a 0 -x {9.0 10.0 993 ------- null} h -t 1.14387 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1977 -a 0 -x {9.0 10.0 993 ------- null} + -t 1.1443 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1969 -a 0 -x {9.0 10.0 989 ------- null} - -t 1.1443 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1969 -a 0 -x {9.0 10.0 989 ------- null} h -t 1.1443 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1969 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.14438 -s 0 -d 9 -p ack -e 40 -c 0 -i 1976 -a 0 -x {10.0 9.0 983 ------- null} - -t 1.14438 -s 0 -d 9 -p ack -e 40 -c 0 -i 1976 -a 0 -x {10.0 9.0 983 ------- null} h -t 1.14438 -s 0 -d 9 -p ack -e 40 -c 0 -i 1976 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.1444 -s 0 -d 9 -p ack -e 40 -c 0 -i 1972 -a 0 -x {10.0 9.0 981 ------- null} + -t 1.1444 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1983 -a 0 -x {9.0 10.0 996 ------- null} - -t 1.1444 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1983 -a 0 -x {9.0 10.0 996 ------- null} h -t 1.1444 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1983 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.14478 -s 10 -d 7 -p ack -e 40 -c 0 -i 1980 -a 0 -x {10.0 9.0 985 ------- null} + -t 1.14478 -s 7 -d 0 -p ack -e 40 -c 0 -i 1980 -a 0 -x {10.0 9.0 985 ------- null} h -t 1.14478 -s 7 -d 8 -p ack -e 40 -c 0 -i 1980 -a 0 -x {10.0 9.0 985 ------- null} r -t 1.14488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1979 -a 0 -x {9.0 10.0 994 ------- null} + -t 1.14488 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1979 -a 0 -x {9.0 10.0 994 ------- null} h -t 1.14488 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1979 -a 0 -x {9.0 10.0 994 ------- null} r -t 1.14493 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1965 -a 0 -x {9.0 10.0 987 ------- null} + -t 1.14493 -s 10 -d 7 -p ack -e 40 -c 0 -i 1984 -a 0 -x {10.0 9.0 987 ------- null} - -t 1.14493 -s 10 -d 7 -p ack -e 40 -c 0 -i 1984 -a 0 -x {10.0 9.0 987 ------- null} h -t 1.14493 -s 10 -d 7 -p ack -e 40 -c 0 -i 1984 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.14539 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1971 -a 0 -x {9.0 10.0 990 ------- null} - -t 1.14539 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1971 -a 0 -x {9.0 10.0 990 ------- null} h -t 1.14539 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1971 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.14541 -s 0 -d 9 -p ack -e 40 -c 0 -i 1974 -a 0 -x {10.0 9.0 982 ------- null} + -t 1.14541 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1985 -a 0 -x {9.0 10.0 997 ------- null} - -t 1.14541 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1985 -a 0 -x {9.0 10.0 997 ------- null} h -t 1.14541 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1985 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.14552 -s 0 -d 9 -p ack -e 40 -c 0 -i 1978 -a 0 -x {10.0 9.0 984 ------- null} - -t 1.14552 -s 0 -d 9 -p ack -e 40 -c 0 -i 1978 -a 0 -x {10.0 9.0 984 ------- null} h -t 1.14552 -s 0 -d 9 -p ack -e 40 -c 0 -i 1978 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.14587 -s 10 -d 7 -p ack -e 40 -c 0 -i 1982 -a 0 -x {10.0 9.0 986 ------- null} + -t 1.14587 -s 7 -d 0 -p ack -e 40 -c 0 -i 1982 -a 0 -x {10.0 9.0 986 ------- null} h -t 1.14587 -s 7 -d 8 -p ack -e 40 -c 0 -i 1982 -a 0 -x {10.0 9.0 986 ------- null} r -t 1.14594 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1981 -a 0 -x {9.0 10.0 995 ------- null} + -t 1.14594 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1981 -a 0 -x {9.0 10.0 995 ------- null} h -t 1.14594 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1981 -a 0 -x {9.0 10.0 995 ------- null} r -t 1.14602 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1967 -a 0 -x {9.0 10.0 988 ------- null} + -t 1.14602 -s 10 -d 7 -p ack -e 40 -c 0 -i 1986 -a 0 -x {10.0 9.0 988 ------- null} - -t 1.14602 -s 10 -d 7 -p ack -e 40 -c 0 -i 1986 -a 0 -x {10.0 9.0 988 ------- null} h -t 1.14602 -s 10 -d 7 -p ack -e 40 -c 0 -i 1986 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.14642 -s 0 -d 9 -p ack -e 40 -c 0 -i 1976 -a 0 -x {10.0 9.0 983 ------- null} + -t 1.14642 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1987 -a 0 -x {9.0 10.0 998 ------- null} - -t 1.14642 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1987 -a 0 -x {9.0 10.0 998 ------- null} h -t 1.14642 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1987 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.14648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1973 -a 0 -x {9.0 10.0 991 ------- null} - -t 1.14648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1973 -a 0 -x {9.0 10.0 991 ------- null} h -t 1.14648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1973 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.14666 -s 0 -d 9 -p ack -e 40 -c 0 -i 1980 -a 0 -x {10.0 9.0 985 ------- null} - -t 1.14666 -s 0 -d 9 -p ack -e 40 -c 0 -i 1980 -a 0 -x {10.0 9.0 985 ------- null} h -t 1.14666 -s 0 -d 9 -p ack -e 40 -c 0 -i 1980 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.14696 -s 10 -d 7 -p ack -e 40 -c 0 -i 1984 -a 0 -x {10.0 9.0 987 ------- null} + -t 1.14696 -s 7 -d 0 -p ack -e 40 -c 0 -i 1984 -a 0 -x {10.0 9.0 987 ------- null} h -t 1.14696 -s 7 -d 8 -p ack -e 40 -c 0 -i 1984 -a 0 -x {10.0 9.0 987 ------- null} r -t 1.1471 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1969 -a 0 -x {9.0 10.0 989 ------- null} + -t 1.1471 -s 10 -d 7 -p ack -e 40 -c 0 -i 1988 -a 0 -x {10.0 9.0 989 ------- null} - -t 1.1471 -s 10 -d 7 -p ack -e 40 -c 0 -i 1988 -a 0 -x {10.0 9.0 989 ------- null} h -t 1.1471 -s 10 -d 7 -p ack -e 40 -c 0 -i 1988 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.1472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1983 -a 0 -x {9.0 10.0 996 ------- null} + -t 1.1472 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1983 -a 0 -x {9.0 10.0 996 ------- null} h -t 1.1472 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1983 -a 0 -x {9.0 10.0 996 ------- null} r -t 1.14755 -s 0 -d 9 -p ack -e 40 -c 0 -i 1978 -a 0 -x {10.0 9.0 984 ------- null} + -t 1.14755 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1989 -a 0 -x {9.0 10.0 999 ------- null} - -t 1.14755 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1989 -a 0 -x {9.0 10.0 999 ------- null} h -t 1.14755 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1989 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.14757 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1975 -a 0 -x {9.0 10.0 992 ------- null} - -t 1.14757 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1975 -a 0 -x {9.0 10.0 992 ------- null} h -t 1.14757 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1975 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.14782 -s 0 -d 9 -p ack -e 40 -c 0 -i 1982 -a 0 -x {10.0 9.0 986 ------- null} - -t 1.14782 -s 0 -d 9 -p ack -e 40 -c 0 -i 1982 -a 0 -x {10.0 9.0 986 ------- null} h -t 1.14782 -s 0 -d 9 -p ack -e 40 -c 0 -i 1982 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.14805 -s 10 -d 7 -p ack -e 40 -c 0 -i 1986 -a 0 -x {10.0 9.0 988 ------- null} + -t 1.14805 -s 7 -d 0 -p ack -e 40 -c 0 -i 1986 -a 0 -x {10.0 9.0 988 ------- null} h -t 1.14805 -s 7 -d 8 -p ack -e 40 -c 0 -i 1986 -a 0 -x {10.0 9.0 988 ------- null} r -t 1.14819 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1971 -a 0 -x {9.0 10.0 990 ------- null} + -t 1.14819 -s 10 -d 7 -p ack -e 40 -c 0 -i 1990 -a 0 -x {10.0 9.0 990 ------- null} - -t 1.14819 -s 10 -d 7 -p ack -e 40 -c 0 -i 1990 -a 0 -x {10.0 9.0 990 ------- null} h -t 1.14819 -s 10 -d 7 -p ack -e 40 -c 0 -i 1990 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.14821 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1985 -a 0 -x {9.0 10.0 997 ------- null} + -t 1.14821 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1985 -a 0 -x {9.0 10.0 997 ------- null} h -t 1.14821 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1985 -a 0 -x {9.0 10.0 997 ------- null} + -t 1.14866 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1977 -a 0 -x {9.0 10.0 993 ------- null} - -t 1.14866 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1977 -a 0 -x {9.0 10.0 993 ------- null} h -t 1.14866 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1977 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.14869 -s 0 -d 9 -p ack -e 40 -c 0 -i 1980 -a 0 -x {10.0 9.0 985 ------- null} + -t 1.14869 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1991 -a 0 -x {9.0 10.0 1000 ------- null} - -t 1.14869 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1991 -a 0 -x {9.0 10.0 1000 ------- null} h -t 1.14869 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1991 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.14891 -s 0 -d 9 -p ack -e 40 -c 0 -i 1984 -a 0 -x {10.0 9.0 987 ------- null} - -t 1.14891 -s 0 -d 9 -p ack -e 40 -c 0 -i 1984 -a 0 -x {10.0 9.0 987 ------- null} h -t 1.14891 -s 0 -d 9 -p ack -e 40 -c 0 -i 1984 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.14914 -s 10 -d 7 -p ack -e 40 -c 0 -i 1988 -a 0 -x {10.0 9.0 989 ------- null} + -t 1.14914 -s 7 -d 0 -p ack -e 40 -c 0 -i 1988 -a 0 -x {10.0 9.0 989 ------- null} h -t 1.14914 -s 7 -d 8 -p ack -e 40 -c 0 -i 1988 -a 0 -x {10.0 9.0 989 ------- null} r -t 1.14922 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1987 -a 0 -x {9.0 10.0 998 ------- null} + -t 1.14922 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1987 -a 0 -x {9.0 10.0 998 ------- null} h -t 1.14922 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1987 -a 0 -x {9.0 10.0 998 ------- null} r -t 1.14928 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1973 -a 0 -x {9.0 10.0 991 ------- null} + -t 1.14928 -s 10 -d 7 -p ack -e 40 -c 0 -i 1992 -a 0 -x {10.0 9.0 991 ------- null} - -t 1.14928 -s 10 -d 7 -p ack -e 40 -c 0 -i 1992 -a 0 -x {10.0 9.0 991 ------- null} h -t 1.14928 -s 10 -d 7 -p ack -e 40 -c 0 -i 1992 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.14974 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1979 -a 0 -x {9.0 10.0 994 ------- null} - -t 1.14974 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1979 -a 0 -x {9.0 10.0 994 ------- null} h -t 1.14974 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1979 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.14981 -s 0 -d 9 -p ack -e 40 -c 0 -i 1986 -a 0 -x {10.0 9.0 988 ------- null} - -t 1.14981 -s 0 -d 9 -p ack -e 40 -c 0 -i 1986 -a 0 -x {10.0 9.0 988 ------- null} h -t 1.14981 -s 0 -d 9 -p ack -e 40 -c 0 -i 1986 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.14986 -s 0 -d 9 -p ack -e 40 -c 0 -i 1982 -a 0 -x {10.0 9.0 986 ------- null} + -t 1.14986 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1993 -a 0 -x {9.0 10.0 1001 ------- null} - -t 1.14986 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1993 -a 0 -x {9.0 10.0 1001 ------- null} h -t 1.14986 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1993 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.15022 -s 10 -d 7 -p ack -e 40 -c 0 -i 1990 -a 0 -x {10.0 9.0 990 ------- null} + -t 1.15022 -s 7 -d 0 -p ack -e 40 -c 0 -i 1990 -a 0 -x {10.0 9.0 990 ------- null} h -t 1.15022 -s 7 -d 8 -p ack -e 40 -c 0 -i 1990 -a 0 -x {10.0 9.0 990 ------- null} r -t 1.15035 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1989 -a 0 -x {9.0 10.0 999 ------- null} + -t 1.15035 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1989 -a 0 -x {9.0 10.0 999 ------- null} h -t 1.15035 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1989 -a 0 -x {9.0 10.0 999 ------- null} r -t 1.15037 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1975 -a 0 -x {9.0 10.0 992 ------- null} + -t 1.15037 -s 10 -d 7 -p ack -e 40 -c 0 -i 1994 -a 0 -x {10.0 9.0 992 ------- null} - -t 1.15037 -s 10 -d 7 -p ack -e 40 -c 0 -i 1994 -a 0 -x {10.0 9.0 992 ------- null} h -t 1.15037 -s 10 -d 7 -p ack -e 40 -c 0 -i 1994 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.15083 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1981 -a 0 -x {9.0 10.0 995 ------- null} - -t 1.15083 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1981 -a 0 -x {9.0 10.0 995 ------- null} h -t 1.15083 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1981 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.15093 -s 0 -d 9 -p ack -e 40 -c 0 -i 1988 -a 0 -x {10.0 9.0 989 ------- null} - -t 1.15093 -s 0 -d 9 -p ack -e 40 -c 0 -i 1988 -a 0 -x {10.0 9.0 989 ------- null} h -t 1.15093 -s 0 -d 9 -p ack -e 40 -c 0 -i 1988 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.15094 -s 0 -d 9 -p ack -e 40 -c 0 -i 1984 -a 0 -x {10.0 9.0 987 ------- null} + -t 1.15094 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1995 -a 0 -x {9.0 10.0 1002 ------- null} - -t 1.15094 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1995 -a 0 -x {9.0 10.0 1002 ------- null} h -t 1.15094 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1995 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.15131 -s 10 -d 7 -p ack -e 40 -c 0 -i 1992 -a 0 -x {10.0 9.0 991 ------- null} + -t 1.15131 -s 7 -d 0 -p ack -e 40 -c 0 -i 1992 -a 0 -x {10.0 9.0 991 ------- null} h -t 1.15131 -s 7 -d 8 -p ack -e 40 -c 0 -i 1992 -a 0 -x {10.0 9.0 991 ------- null} r -t 1.15146 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1977 -a 0 -x {9.0 10.0 993 ------- null} + -t 1.15146 -s 10 -d 7 -p ack -e 40 -c 0 -i 1996 -a 0 -x {10.0 9.0 993 ------- null} - -t 1.15146 -s 10 -d 7 -p ack -e 40 -c 0 -i 1996 -a 0 -x {10.0 9.0 993 ------- null} h -t 1.15146 -s 10 -d 7 -p ack -e 40 -c 0 -i 1996 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.15149 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1991 -a 0 -x {9.0 10.0 1000 ------- null} + -t 1.15149 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1991 -a 0 -x {9.0 10.0 1000 ------- null} h -t 1.15149 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1991 -a 0 -x {9.0 10.0 1000 ------- null} r -t 1.15184 -s 0 -d 9 -p ack -e 40 -c 0 -i 1986 -a 0 -x {10.0 9.0 988 ------- null} + -t 1.15184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1997 -a 0 -x {9.0 10.0 1003 ------- null} - -t 1.15184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1997 -a 0 -x {9.0 10.0 1003 ------- null} h -t 1.15184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1997 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.15192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1983 -a 0 -x {9.0 10.0 996 ------- null} - -t 1.15192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1983 -a 0 -x {9.0 10.0 996 ------- null} h -t 1.15192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1983 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.15208 -s 0 -d 9 -p ack -e 40 -c 0 -i 1990 -a 0 -x {10.0 9.0 990 ------- null} - -t 1.15208 -s 0 -d 9 -p ack -e 40 -c 0 -i 1990 -a 0 -x {10.0 9.0 990 ------- null} h -t 1.15208 -s 0 -d 9 -p ack -e 40 -c 0 -i 1990 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.1524 -s 10 -d 7 -p ack -e 40 -c 0 -i 1994 -a 0 -x {10.0 9.0 992 ------- null} + -t 1.1524 -s 7 -d 0 -p ack -e 40 -c 0 -i 1994 -a 0 -x {10.0 9.0 992 ------- null} h -t 1.1524 -s 7 -d 8 -p ack -e 40 -c 0 -i 1994 -a 0 -x {10.0 9.0 992 ------- null} r -t 1.15254 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1979 -a 0 -x {9.0 10.0 994 ------- null} + -t 1.15254 -s 10 -d 7 -p ack -e 40 -c 0 -i 1998 -a 0 -x {10.0 9.0 994 ------- null} - -t 1.15254 -s 10 -d 7 -p ack -e 40 -c 0 -i 1998 -a 0 -x {10.0 9.0 994 ------- null} h -t 1.15254 -s 10 -d 7 -p ack -e 40 -c 0 -i 1998 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.15266 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1993 -a 0 -x {9.0 10.0 1001 ------- null} + -t 1.15266 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1993 -a 0 -x {9.0 10.0 1001 ------- null} h -t 1.15266 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1993 -a 0 -x {9.0 10.0 1001 ------- null} r -t 1.15296 -s 0 -d 9 -p ack -e 40 -c 0 -i 1988 -a 0 -x {10.0 9.0 989 ------- null} + -t 1.15296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1999 -a 0 -x {9.0 10.0 1004 ------- null} - -t 1.15296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1999 -a 0 -x {9.0 10.0 1004 ------- null} h -t 1.15296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1999 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.15301 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1985 -a 0 -x {9.0 10.0 997 ------- null} - -t 1.15301 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1985 -a 0 -x {9.0 10.0 997 ------- null} h -t 1.15301 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1985 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.15326 -s 0 -d 9 -p ack -e 40 -c 0 -i 1992 -a 0 -x {10.0 9.0 991 ------- null} - -t 1.15326 -s 0 -d 9 -p ack -e 40 -c 0 -i 1992 -a 0 -x {10.0 9.0 991 ------- null} h -t 1.15326 -s 0 -d 9 -p ack -e 40 -c 0 -i 1992 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.15349 -s 10 -d 7 -p ack -e 40 -c 0 -i 1996 -a 0 -x {10.0 9.0 993 ------- null} + -t 1.15349 -s 7 -d 0 -p ack -e 40 -c 0 -i 1996 -a 0 -x {10.0 9.0 993 ------- null} h -t 1.15349 -s 7 -d 8 -p ack -e 40 -c 0 -i 1996 -a 0 -x {10.0 9.0 993 ------- null} r -t 1.15363 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1981 -a 0 -x {9.0 10.0 995 ------- null} + -t 1.15363 -s 10 -d 7 -p ack -e 40 -c 0 -i 2000 -a 0 -x {10.0 9.0 995 ------- null} - -t 1.15363 -s 10 -d 7 -p ack -e 40 -c 0 -i 2000 -a 0 -x {10.0 9.0 995 ------- null} h -t 1.15363 -s 10 -d 7 -p ack -e 40 -c 0 -i 2000 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.15374 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1995 -a 0 -x {9.0 10.0 1002 ------- null} + -t 1.15374 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1995 -a 0 -x {9.0 10.0 1002 ------- null} h -t 1.15374 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1995 -a 0 -x {9.0 10.0 1002 ------- null} + -t 1.1541 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1987 -a 0 -x {9.0 10.0 998 ------- null} - -t 1.1541 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1987 -a 0 -x {9.0 10.0 998 ------- null} h -t 1.1541 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1987 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.15411 -s 0 -d 9 -p ack -e 40 -c 0 -i 1990 -a 0 -x {10.0 9.0 990 ------- null} + -t 1.15411 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2001 -a 0 -x {9.0 10.0 1005 ------- null} - -t 1.15411 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2001 -a 0 -x {9.0 10.0 1005 ------- null} h -t 1.15411 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2001 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.1543 -s 0 -d 9 -p ack -e 40 -c 0 -i 1994 -a 0 -x {10.0 9.0 992 ------- null} - -t 1.1543 -s 0 -d 9 -p ack -e 40 -c 0 -i 1994 -a 0 -x {10.0 9.0 992 ------- null} h -t 1.1543 -s 0 -d 9 -p ack -e 40 -c 0 -i 1994 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.15458 -s 10 -d 7 -p ack -e 40 -c 0 -i 1998 -a 0 -x {10.0 9.0 994 ------- null} + -t 1.15458 -s 7 -d 0 -p ack -e 40 -c 0 -i 1998 -a 0 -x {10.0 9.0 994 ------- null} h -t 1.15458 -s 7 -d 8 -p ack -e 40 -c 0 -i 1998 -a 0 -x {10.0 9.0 994 ------- null} r -t 1.15464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1997 -a 0 -x {9.0 10.0 1003 ------- null} + -t 1.15464 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1997 -a 0 -x {9.0 10.0 1003 ------- null} h -t 1.15464 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1997 -a 0 -x {9.0 10.0 1003 ------- null} r -t 1.15472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1983 -a 0 -x {9.0 10.0 996 ------- null} + -t 1.15472 -s 10 -d 7 -p ack -e 40 -c 0 -i 2002 -a 0 -x {10.0 9.0 996 ------- null} - -t 1.15472 -s 10 -d 7 -p ack -e 40 -c 0 -i 2002 -a 0 -x {10.0 9.0 996 ------- null} h -t 1.15472 -s 10 -d 7 -p ack -e 40 -c 0 -i 2002 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.15518 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1989 -a 0 -x {9.0 10.0 999 ------- null} - -t 1.15518 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1989 -a 0 -x {9.0 10.0 999 ------- null} h -t 1.15518 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1989 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.15525 -s 0 -d 9 -p ack -e 40 -c 0 -i 1996 -a 0 -x {10.0 9.0 993 ------- null} - -t 1.15525 -s 0 -d 9 -p ack -e 40 -c 0 -i 1996 -a 0 -x {10.0 9.0 993 ------- null} h -t 1.15525 -s 0 -d 9 -p ack -e 40 -c 0 -i 1996 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.1553 -s 0 -d 9 -p ack -e 40 -c 0 -i 1992 -a 0 -x {10.0 9.0 991 ------- null} + -t 1.1553 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2003 -a 0 -x {9.0 10.0 1006 ------- null} - -t 1.1553 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2003 -a 0 -x {9.0 10.0 1006 ------- null} h -t 1.1553 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2003 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.15566 -s 10 -d 7 -p ack -e 40 -c 0 -i 2000 -a 0 -x {10.0 9.0 995 ------- null} + -t 1.15566 -s 7 -d 0 -p ack -e 40 -c 0 -i 2000 -a 0 -x {10.0 9.0 995 ------- null} h -t 1.15566 -s 7 -d 8 -p ack -e 40 -c 0 -i 2000 -a 0 -x {10.0 9.0 995 ------- null} r -t 1.15576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 1999 -a 0 -x {9.0 10.0 1004 ------- null} + -t 1.15576 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 1999 -a 0 -x {9.0 10.0 1004 ------- null} h -t 1.15576 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 1999 -a 0 -x {9.0 10.0 1004 ------- null} r -t 1.15581 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1985 -a 0 -x {9.0 10.0 997 ------- null} + -t 1.15581 -s 10 -d 7 -p ack -e 40 -c 0 -i 2004 -a 0 -x {10.0 9.0 997 ------- null} - -t 1.15581 -s 10 -d 7 -p ack -e 40 -c 0 -i 2004 -a 0 -x {10.0 9.0 997 ------- null} h -t 1.15581 -s 10 -d 7 -p ack -e 40 -c 0 -i 2004 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.15627 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1991 -a 0 -x {9.0 10.0 1000 ------- null} - -t 1.15627 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1991 -a 0 -x {9.0 10.0 1000 ------- null} h -t 1.15627 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1991 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.15634 -s 0 -d 9 -p ack -e 40 -c 0 -i 1994 -a 0 -x {10.0 9.0 992 ------- null} + -t 1.15634 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2005 -a 0 -x {9.0 10.0 1007 ------- null} - -t 1.15634 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2005 -a 0 -x {9.0 10.0 1007 ------- null} h -t 1.15634 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2005 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.15653 -s 0 -d 9 -p ack -e 40 -c 0 -i 1998 -a 0 -x {10.0 9.0 994 ------- null} - -t 1.15653 -s 0 -d 9 -p ack -e 40 -c 0 -i 1998 -a 0 -x {10.0 9.0 994 ------- null} h -t 1.15653 -s 0 -d 9 -p ack -e 40 -c 0 -i 1998 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.15675 -s 10 -d 7 -p ack -e 40 -c 0 -i 2002 -a 0 -x {10.0 9.0 996 ------- null} + -t 1.15675 -s 7 -d 0 -p ack -e 40 -c 0 -i 2002 -a 0 -x {10.0 9.0 996 ------- null} h -t 1.15675 -s 7 -d 8 -p ack -e 40 -c 0 -i 2002 -a 0 -x {10.0 9.0 996 ------- null} r -t 1.1569 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1987 -a 0 -x {9.0 10.0 998 ------- null} + -t 1.1569 -s 10 -d 7 -p ack -e 40 -c 0 -i 2006 -a 0 -x {10.0 9.0 998 ------- null} - -t 1.1569 -s 10 -d 7 -p ack -e 40 -c 0 -i 2006 -a 0 -x {10.0 9.0 998 ------- null} h -t 1.1569 -s 10 -d 7 -p ack -e 40 -c 0 -i 2006 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.15691 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2001 -a 0 -x {9.0 10.0 1005 ------- null} + -t 1.15691 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2001 -a 0 -x {9.0 10.0 1005 ------- null} h -t 1.15691 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2001 -a 0 -x {9.0 10.0 1005 ------- null} r -t 1.15728 -s 0 -d 9 -p ack -e 40 -c 0 -i 1996 -a 0 -x {10.0 9.0 993 ------- null} + -t 1.15728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2007 -a 0 -x {9.0 10.0 1008 ------- null} - -t 1.15728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2007 -a 0 -x {9.0 10.0 1008 ------- null} h -t 1.15728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2007 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.15736 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1993 -a 0 -x {9.0 10.0 1001 ------- null} - -t 1.15736 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1993 -a 0 -x {9.0 10.0 1001 ------- null} h -t 1.15736 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1993 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.15766 -s 0 -d 9 -p ack -e 40 -c 0 -i 2000 -a 0 -x {10.0 9.0 995 ------- null} - -t 1.15766 -s 0 -d 9 -p ack -e 40 -c 0 -i 2000 -a 0 -x {10.0 9.0 995 ------- null} h -t 1.15766 -s 0 -d 9 -p ack -e 40 -c 0 -i 2000 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.15784 -s 10 -d 7 -p ack -e 40 -c 0 -i 2004 -a 0 -x {10.0 9.0 997 ------- null} + -t 1.15784 -s 7 -d 0 -p ack -e 40 -c 0 -i 2004 -a 0 -x {10.0 9.0 997 ------- null} h -t 1.15784 -s 7 -d 8 -p ack -e 40 -c 0 -i 2004 -a 0 -x {10.0 9.0 997 ------- null} r -t 1.15798 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1989 -a 0 -x {9.0 10.0 999 ------- null} + -t 1.15798 -s 10 -d 7 -p ack -e 40 -c 0 -i 2008 -a 0 -x {10.0 9.0 999 ------- null} - -t 1.15798 -s 10 -d 7 -p ack -e 40 -c 0 -i 2008 -a 0 -x {10.0 9.0 999 ------- null} h -t 1.15798 -s 10 -d 7 -p ack -e 40 -c 0 -i 2008 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.1581 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2003 -a 0 -x {9.0 10.0 1006 ------- null} + -t 1.1581 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2003 -a 0 -x {9.0 10.0 1006 ------- null} h -t 1.1581 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2003 -a 0 -x {9.0 10.0 1006 ------- null} + -t 1.1585 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1995 -a 0 -x {9.0 10.0 1002 ------- null} - -t 1.1585 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1995 -a 0 -x {9.0 10.0 1002 ------- null} h -t 1.1585 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1995 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.15856 -s 0 -d 9 -p ack -e 40 -c 0 -i 1998 -a 0 -x {10.0 9.0 994 ------- null} + -t 1.15856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2009 -a 0 -x {9.0 10.0 1009 ------- null} - -t 1.15856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2009 -a 0 -x {9.0 10.0 1009 ------- null} h -t 1.15856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2009 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.15874 -s 0 -d 9 -p ack -e 40 -c 0 -i 2002 -a 0 -x {10.0 9.0 996 ------- null} - -t 1.15874 -s 0 -d 9 -p ack -e 40 -c 0 -i 2002 -a 0 -x {10.0 9.0 996 ------- null} h -t 1.15874 -s 0 -d 9 -p ack -e 40 -c 0 -i 2002 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.15893 -s 10 -d 7 -p ack -e 40 -c 0 -i 2006 -a 0 -x {10.0 9.0 998 ------- null} + -t 1.15893 -s 7 -d 0 -p ack -e 40 -c 0 -i 2006 -a 0 -x {10.0 9.0 998 ------- null} h -t 1.15893 -s 7 -d 8 -p ack -e 40 -c 0 -i 2006 -a 0 -x {10.0 9.0 998 ------- null} r -t 1.15907 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1991 -a 0 -x {9.0 10.0 1000 ------- null} + -t 1.15907 -s 10 -d 7 -p ack -e 40 -c 0 -i 2010 -a 0 -x {10.0 9.0 1000 ------- null} - -t 1.15907 -s 10 -d 7 -p ack -e 40 -c 0 -i 2010 -a 0 -x {10.0 9.0 1000 ------- null} h -t 1.15907 -s 10 -d 7 -p ack -e 40 -c 0 -i 2010 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.15914 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2005 -a 0 -x {9.0 10.0 1007 ------- null} + -t 1.15914 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2005 -a 0 -x {9.0 10.0 1007 ------- null} h -t 1.15914 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2005 -a 0 -x {9.0 10.0 1007 ------- null} + -t 1.15958 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1997 -a 0 -x {9.0 10.0 1003 ------- null} - -t 1.15958 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1997 -a 0 -x {9.0 10.0 1003 ------- null} h -t 1.15958 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1997 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.1597 -s 0 -d 9 -p ack -e 40 -c 0 -i 2000 -a 0 -x {10.0 9.0 995 ------- null} + -t 1.1597 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2011 -a 0 -x {9.0 10.0 1010 ------- null} - -t 1.1597 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2011 -a 0 -x {9.0 10.0 1010 ------- null} h -t 1.1597 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2011 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.15989 -s 0 -d 9 -p ack -e 40 -c 0 -i 2004 -a 0 -x {10.0 9.0 997 ------- null} - -t 1.15989 -s 0 -d 9 -p ack -e 40 -c 0 -i 2004 -a 0 -x {10.0 9.0 997 ------- null} h -t 1.15989 -s 0 -d 9 -p ack -e 40 -c 0 -i 2004 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.16002 -s 10 -d 7 -p ack -e 40 -c 0 -i 2008 -a 0 -x {10.0 9.0 999 ------- null} + -t 1.16002 -s 7 -d 0 -p ack -e 40 -c 0 -i 2008 -a 0 -x {10.0 9.0 999 ------- null} h -t 1.16002 -s 7 -d 8 -p ack -e 40 -c 0 -i 2008 -a 0 -x {10.0 9.0 999 ------- null} r -t 1.16008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2007 -a 0 -x {9.0 10.0 1008 ------- null} + -t 1.16008 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2007 -a 0 -x {9.0 10.0 1008 ------- null} h -t 1.16008 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2007 -a 0 -x {9.0 10.0 1008 ------- null} r -t 1.16016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1993 -a 0 -x {9.0 10.0 1001 ------- null} + -t 1.16016 -s 10 -d 7 -p ack -e 40 -c 0 -i 2012 -a 0 -x {10.0 9.0 1001 ------- null} - -t 1.16016 -s 10 -d 7 -p ack -e 40 -c 0 -i 2012 -a 0 -x {10.0 9.0 1001 ------- null} h -t 1.16016 -s 10 -d 7 -p ack -e 40 -c 0 -i 2012 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.16072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1999 -a 0 -x {9.0 10.0 1004 ------- null} - -t 1.16072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1999 -a 0 -x {9.0 10.0 1004 ------- null} h -t 1.16072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1999 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.16077 -s 0 -d 9 -p ack -e 40 -c 0 -i 2002 -a 0 -x {10.0 9.0 996 ------- null} + -t 1.16077 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2013 -a 0 -x {9.0 10.0 1011 ------- null} - -t 1.16077 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2013 -a 0 -x {9.0 10.0 1011 ------- null} h -t 1.16077 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2013 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.16093 -s 0 -d 9 -p ack -e 40 -c 0 -i 2006 -a 0 -x {10.0 9.0 998 ------- null} - -t 1.16093 -s 0 -d 9 -p ack -e 40 -c 0 -i 2006 -a 0 -x {10.0 9.0 998 ------- null} h -t 1.16093 -s 0 -d 9 -p ack -e 40 -c 0 -i 2006 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.1611 -s 10 -d 7 -p ack -e 40 -c 0 -i 2010 -a 0 -x {10.0 9.0 1000 ------- null} + -t 1.1611 -s 7 -d 0 -p ack -e 40 -c 0 -i 2010 -a 0 -x {10.0 9.0 1000 ------- null} h -t 1.1611 -s 7 -d 8 -p ack -e 40 -c 0 -i 2010 -a 0 -x {10.0 9.0 1000 ------- null} r -t 1.1613 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1995 -a 0 -x {9.0 10.0 1002 ------- null} + -t 1.1613 -s 10 -d 7 -p ack -e 40 -c 0 -i 2014 -a 0 -x {10.0 9.0 1002 ------- null} - -t 1.1613 -s 10 -d 7 -p ack -e 40 -c 0 -i 2014 -a 0 -x {10.0 9.0 1002 ------- null} h -t 1.1613 -s 10 -d 7 -p ack -e 40 -c 0 -i 2014 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.16136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2009 -a 0 -x {9.0 10.0 1009 ------- null} + -t 1.16136 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2009 -a 0 -x {9.0 10.0 1009 ------- null} h -t 1.16136 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2009 -a 0 -x {9.0 10.0 1009 ------- null} + -t 1.16181 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2001 -a 0 -x {9.0 10.0 1005 ------- null} - -t 1.16181 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2001 -a 0 -x {9.0 10.0 1005 ------- null} h -t 1.16181 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2001 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.16192 -s 0 -d 9 -p ack -e 40 -c 0 -i 2004 -a 0 -x {10.0 9.0 997 ------- null} + -t 1.16192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2015 -a 0 -x {9.0 10.0 1012 ------- null} - -t 1.16192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2015 -a 0 -x {9.0 10.0 1012 ------- null} h -t 1.16192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2015 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.16202 -s 0 -d 9 -p ack -e 40 -c 0 -i 2008 -a 0 -x {10.0 9.0 999 ------- null} - -t 1.16202 -s 0 -d 9 -p ack -e 40 -c 0 -i 2008 -a 0 -x {10.0 9.0 999 ------- null} h -t 1.16202 -s 0 -d 9 -p ack -e 40 -c 0 -i 2008 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.16219 -s 10 -d 7 -p ack -e 40 -c 0 -i 2012 -a 0 -x {10.0 9.0 1001 ------- null} + -t 1.16219 -s 7 -d 0 -p ack -e 40 -c 0 -i 2012 -a 0 -x {10.0 9.0 1001 ------- null} h -t 1.16219 -s 7 -d 8 -p ack -e 40 -c 0 -i 2012 -a 0 -x {10.0 9.0 1001 ------- null} r -t 1.16238 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1997 -a 0 -x {9.0 10.0 1003 ------- null} + -t 1.16238 -s 10 -d 7 -p ack -e 40 -c 0 -i 2016 -a 0 -x {10.0 9.0 1003 ------- null} - -t 1.16238 -s 10 -d 7 -p ack -e 40 -c 0 -i 2016 -a 0 -x {10.0 9.0 1003 ------- null} h -t 1.16238 -s 10 -d 7 -p ack -e 40 -c 0 -i 2016 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.1625 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2011 -a 0 -x {9.0 10.0 1010 ------- null} + -t 1.1625 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2011 -a 0 -x {9.0 10.0 1010 ------- null} h -t 1.1625 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2011 -a 0 -x {9.0 10.0 1010 ------- null} + -t 1.1629 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2003 -a 0 -x {9.0 10.0 1006 ------- null} - -t 1.1629 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2003 -a 0 -x {9.0 10.0 1006 ------- null} h -t 1.1629 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2003 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.16296 -s 0 -d 9 -p ack -e 40 -c 0 -i 2006 -a 0 -x {10.0 9.0 998 ------- null} + -t 1.16296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2017 -a 0 -x {9.0 10.0 1013 ------- null} - -t 1.16296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2017 -a 0 -x {9.0 10.0 1013 ------- null} h -t 1.16296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2017 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.16317 -s 0 -d 9 -p ack -e 40 -c 0 -i 2010 -a 0 -x {10.0 9.0 1000 ------- null} - -t 1.16317 -s 0 -d 9 -p ack -e 40 -c 0 -i 2010 -a 0 -x {10.0 9.0 1000 ------- null} h -t 1.16317 -s 0 -d 9 -p ack -e 40 -c 0 -i 2010 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.16333 -s 10 -d 7 -p ack -e 40 -c 0 -i 2014 -a 0 -x {10.0 9.0 1002 ------- null} + -t 1.16333 -s 7 -d 0 -p ack -e 40 -c 0 -i 2014 -a 0 -x {10.0 9.0 1002 ------- null} h -t 1.16333 -s 7 -d 8 -p ack -e 40 -c 0 -i 2014 -a 0 -x {10.0 9.0 1002 ------- null} r -t 1.16352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 1999 -a 0 -x {9.0 10.0 1004 ------- null} + -t 1.16352 -s 10 -d 7 -p ack -e 40 -c 0 -i 2018 -a 0 -x {10.0 9.0 1004 ------- null} - -t 1.16352 -s 10 -d 7 -p ack -e 40 -c 0 -i 2018 -a 0 -x {10.0 9.0 1004 ------- null} h -t 1.16352 -s 10 -d 7 -p ack -e 40 -c 0 -i 2018 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.16357 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2013 -a 0 -x {9.0 10.0 1011 ------- null} + -t 1.16357 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2013 -a 0 -x {9.0 10.0 1011 ------- null} h -t 1.16357 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2013 -a 0 -x {9.0 10.0 1011 ------- null} r -t 1.16405 -s 0 -d 9 -p ack -e 40 -c 0 -i 2008 -a 0 -x {10.0 9.0 999 ------- null} + -t 1.16405 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2019 -a 0 -x {9.0 10.0 1014 ------- null} - -t 1.16405 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2019 -a 0 -x {9.0 10.0 1014 ------- null} h -t 1.16405 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2019 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.1641 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2005 -a 0 -x {9.0 10.0 1007 ------- null} - -t 1.1641 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2005 -a 0 -x {9.0 10.0 1007 ------- null} h -t 1.1641 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2005 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.16418 -s 0 -d 9 -p ack -e 40 -c 0 -i 2012 -a 0 -x {10.0 9.0 1001 ------- null} - -t 1.16418 -s 0 -d 9 -p ack -e 40 -c 0 -i 2012 -a 0 -x {10.0 9.0 1001 ------- null} h -t 1.16418 -s 0 -d 9 -p ack -e 40 -c 0 -i 2012 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.16442 -s 10 -d 7 -p ack -e 40 -c 0 -i 2016 -a 0 -x {10.0 9.0 1003 ------- null} + -t 1.16442 -s 7 -d 0 -p ack -e 40 -c 0 -i 2016 -a 0 -x {10.0 9.0 1003 ------- null} h -t 1.16442 -s 7 -d 8 -p ack -e 40 -c 0 -i 2016 -a 0 -x {10.0 9.0 1003 ------- null} r -t 1.16461 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2001 -a 0 -x {9.0 10.0 1005 ------- null} + -t 1.16461 -s 10 -d 7 -p ack -e 40 -c 0 -i 2020 -a 0 -x {10.0 9.0 1005 ------- null} - -t 1.16461 -s 10 -d 7 -p ack -e 40 -c 0 -i 2020 -a 0 -x {10.0 9.0 1005 ------- null} h -t 1.16461 -s 10 -d 7 -p ack -e 40 -c 0 -i 2020 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.16472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2015 -a 0 -x {9.0 10.0 1012 ------- null} + -t 1.16472 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2015 -a 0 -x {9.0 10.0 1012 ------- null} h -t 1.16472 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2015 -a 0 -x {9.0 10.0 1012 ------- null} + -t 1.16518 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2007 -a 0 -x {9.0 10.0 1008 ------- null} - -t 1.16518 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2007 -a 0 -x {9.0 10.0 1008 ------- null} h -t 1.16518 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2007 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.1652 -s 0 -d 9 -p ack -e 40 -c 0 -i 2010 -a 0 -x {10.0 9.0 1000 ------- null} + -t 1.1652 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2021 -a 0 -x {9.0 10.0 1015 ------- null} - -t 1.1652 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2021 -a 0 -x {9.0 10.0 1015 ------- null} h -t 1.1652 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2021 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.16539 -s 0 -d 9 -p ack -e 40 -c 0 -i 2014 -a 0 -x {10.0 9.0 1002 ------- null} - -t 1.16539 -s 0 -d 9 -p ack -e 40 -c 0 -i 2014 -a 0 -x {10.0 9.0 1002 ------- null} h -t 1.16539 -s 0 -d 9 -p ack -e 40 -c 0 -i 2014 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.16555 -s 10 -d 7 -p ack -e 40 -c 0 -i 2018 -a 0 -x {10.0 9.0 1004 ------- null} + -t 1.16555 -s 7 -d 0 -p ack -e 40 -c 0 -i 2018 -a 0 -x {10.0 9.0 1004 ------- null} h -t 1.16555 -s 7 -d 8 -p ack -e 40 -c 0 -i 2018 -a 0 -x {10.0 9.0 1004 ------- null} r -t 1.1657 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2003 -a 0 -x {9.0 10.0 1006 ------- null} + -t 1.1657 -s 10 -d 7 -p ack -e 40 -c 0 -i 2022 -a 0 -x {10.0 9.0 1006 ------- null} - -t 1.1657 -s 10 -d 7 -p ack -e 40 -c 0 -i 2022 -a 0 -x {10.0 9.0 1006 ------- null} h -t 1.1657 -s 10 -d 7 -p ack -e 40 -c 0 -i 2022 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.16576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2017 -a 0 -x {9.0 10.0 1013 ------- null} + -t 1.16576 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2017 -a 0 -x {9.0 10.0 1013 ------- null} h -t 1.16576 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2017 -a 0 -x {9.0 10.0 1013 ------- null} r -t 1.16621 -s 0 -d 9 -p ack -e 40 -c 0 -i 2012 -a 0 -x {10.0 9.0 1001 ------- null} + -t 1.16621 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2023 -a 0 -x {9.0 10.0 1016 ------- null} - -t 1.16621 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2023 -a 0 -x {9.0 10.0 1016 ------- null} h -t 1.16621 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2023 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.16627 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2009 -a 0 -x {9.0 10.0 1009 ------- null} - -t 1.16627 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2009 -a 0 -x {9.0 10.0 1009 ------- null} h -t 1.16627 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2009 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.16638 -s 0 -d 9 -p ack -e 40 -c 0 -i 2016 -a 0 -x {10.0 9.0 1003 ------- null} - -t 1.16638 -s 0 -d 9 -p ack -e 40 -c 0 -i 2016 -a 0 -x {10.0 9.0 1003 ------- null} h -t 1.16638 -s 0 -d 9 -p ack -e 40 -c 0 -i 2016 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.16664 -s 10 -d 7 -p ack -e 40 -c 0 -i 2020 -a 0 -x {10.0 9.0 1005 ------- null} + -t 1.16664 -s 7 -d 0 -p ack -e 40 -c 0 -i 2020 -a 0 -x {10.0 9.0 1005 ------- null} h -t 1.16664 -s 7 -d 8 -p ack -e 40 -c 0 -i 2020 -a 0 -x {10.0 9.0 1005 ------- null} r -t 1.16685 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2019 -a 0 -x {9.0 10.0 1014 ------- null} + -t 1.16685 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2019 -a 0 -x {9.0 10.0 1014 ------- null} h -t 1.16685 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2019 -a 0 -x {9.0 10.0 1014 ------- null} r -t 1.1669 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2005 -a 0 -x {9.0 10.0 1007 ------- null} + -t 1.1669 -s 10 -d 7 -p ack -e 40 -c 0 -i 2024 -a 0 -x {10.0 9.0 1007 ------- null} - -t 1.1669 -s 10 -d 7 -p ack -e 40 -c 0 -i 2024 -a 0 -x {10.0 9.0 1007 ------- null} h -t 1.1669 -s 10 -d 7 -p ack -e 40 -c 0 -i 2024 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.16736 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2011 -a 0 -x {9.0 10.0 1010 ------- null} - -t 1.16736 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2011 -a 0 -x {9.0 10.0 1010 ------- null} h -t 1.16736 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2011 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.16742 -s 0 -d 9 -p ack -e 40 -c 0 -i 2014 -a 0 -x {10.0 9.0 1002 ------- null} + -t 1.16742 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2025 -a 0 -x {9.0 10.0 1017 ------- null} - -t 1.16742 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2025 -a 0 -x {9.0 10.0 1017 ------- null} h -t 1.16742 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2025 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.16763 -s 0 -d 9 -p ack -e 40 -c 0 -i 2018 -a 0 -x {10.0 9.0 1004 ------- null} - -t 1.16763 -s 0 -d 9 -p ack -e 40 -c 0 -i 2018 -a 0 -x {10.0 9.0 1004 ------- null} h -t 1.16763 -s 0 -d 9 -p ack -e 40 -c 0 -i 2018 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.16773 -s 10 -d 7 -p ack -e 40 -c 0 -i 2022 -a 0 -x {10.0 9.0 1006 ------- null} + -t 1.16773 -s 7 -d 0 -p ack -e 40 -c 0 -i 2022 -a 0 -x {10.0 9.0 1006 ------- null} h -t 1.16773 -s 7 -d 8 -p ack -e 40 -c 0 -i 2022 -a 0 -x {10.0 9.0 1006 ------- null} r -t 1.16798 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2007 -a 0 -x {9.0 10.0 1008 ------- null} + -t 1.16798 -s 10 -d 7 -p ack -e 40 -c 0 -i 2026 -a 0 -x {10.0 9.0 1008 ------- null} - -t 1.16798 -s 10 -d 7 -p ack -e 40 -c 0 -i 2026 -a 0 -x {10.0 9.0 1008 ------- null} h -t 1.16798 -s 10 -d 7 -p ack -e 40 -c 0 -i 2026 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2021 -a 0 -x {9.0 10.0 1015 ------- null} + -t 1.168 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2021 -a 0 -x {9.0 10.0 1015 ------- null} h -t 1.168 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2021 -a 0 -x {9.0 10.0 1015 ------- null} r -t 1.16842 -s 0 -d 9 -p ack -e 40 -c 0 -i 2016 -a 0 -x {10.0 9.0 1003 ------- null} + -t 1.16842 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2027 -a 0 -x {9.0 10.0 1018 ------- null} - -t 1.16842 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2027 -a 0 -x {9.0 10.0 1018 ------- null} h -t 1.16842 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2027 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.16864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2013 -a 0 -x {9.0 10.0 1011 ------- null} - -t 1.16864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2013 -a 0 -x {9.0 10.0 1011 ------- null} h -t 1.16864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2013 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.16893 -s 10 -d 7 -p ack -e 40 -c 0 -i 2024 -a 0 -x {10.0 9.0 1007 ------- null} + -t 1.16893 -s 7 -d 0 -p ack -e 40 -c 0 -i 2024 -a 0 -x {10.0 9.0 1007 ------- null} h -t 1.16893 -s 7 -d 8 -p ack -e 40 -c 0 -i 2024 -a 0 -x {10.0 9.0 1007 ------- null} + -t 1.16893 -s 0 -d 9 -p ack -e 40 -c 0 -i 2020 -a 0 -x {10.0 9.0 1005 ------- null} - -t 1.16893 -s 0 -d 9 -p ack -e 40 -c 0 -i 2020 -a 0 -x {10.0 9.0 1005 ------- null} h -t 1.16893 -s 0 -d 9 -p ack -e 40 -c 0 -i 2020 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.16901 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2023 -a 0 -x {9.0 10.0 1016 ------- null} + -t 1.16901 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2023 -a 0 -x {9.0 10.0 1016 ------- null} h -t 1.16901 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2023 -a 0 -x {9.0 10.0 1016 ------- null} r -t 1.16907 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2009 -a 0 -x {9.0 10.0 1009 ------- null} + -t 1.16907 -s 10 -d 7 -p ack -e 40 -c 0 -i 2028 -a 0 -x {10.0 9.0 1009 ------- null} - -t 1.16907 -s 10 -d 7 -p ack -e 40 -c 0 -i 2028 -a 0 -x {10.0 9.0 1009 ------- null} h -t 1.16907 -s 10 -d 7 -p ack -e 40 -c 0 -i 2028 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.16966 -s 0 -d 9 -p ack -e 40 -c 0 -i 2018 -a 0 -x {10.0 9.0 1004 ------- null} + -t 1.16966 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2029 -a 0 -x {9.0 10.0 1019 ------- null} - -t 1.16966 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2029 -a 0 -x {9.0 10.0 1019 ------- null} h -t 1.16966 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2029 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.16989 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2015 -a 0 -x {9.0 10.0 1012 ------- null} - -t 1.16989 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2015 -a 0 -x {9.0 10.0 1012 ------- null} h -t 1.16989 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2015 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.17002 -s 10 -d 7 -p ack -e 40 -c 0 -i 2026 -a 0 -x {10.0 9.0 1008 ------- null} + -t 1.17002 -s 7 -d 0 -p ack -e 40 -c 0 -i 2026 -a 0 -x {10.0 9.0 1008 ------- null} h -t 1.17002 -s 7 -d 8 -p ack -e 40 -c 0 -i 2026 -a 0 -x {10.0 9.0 1008 ------- null} + -t 1.17008 -s 0 -d 9 -p ack -e 40 -c 0 -i 2022 -a 0 -x {10.0 9.0 1006 ------- null} - -t 1.17008 -s 0 -d 9 -p ack -e 40 -c 0 -i 2022 -a 0 -x {10.0 9.0 1006 ------- null} h -t 1.17008 -s 0 -d 9 -p ack -e 40 -c 0 -i 2022 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.17016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2011 -a 0 -x {9.0 10.0 1010 ------- null} + -t 1.17016 -s 10 -d 7 -p ack -e 40 -c 0 -i 2030 -a 0 -x {10.0 9.0 1010 ------- null} - -t 1.17016 -s 10 -d 7 -p ack -e 40 -c 0 -i 2030 -a 0 -x {10.0 9.0 1010 ------- null} h -t 1.17016 -s 10 -d 7 -p ack -e 40 -c 0 -i 2030 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.17022 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2025 -a 0 -x {9.0 10.0 1017 ------- null} + -t 1.17022 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2025 -a 0 -x {9.0 10.0 1017 ------- null} h -t 1.17022 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2025 -a 0 -x {9.0 10.0 1017 ------- null} r -t 1.17096 -s 0 -d 9 -p ack -e 40 -c 0 -i 2020 -a 0 -x {10.0 9.0 1005 ------- null} + -t 1.17096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2031 -a 0 -x {9.0 10.0 1020 ------- null} - -t 1.17096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2031 -a 0 -x {9.0 10.0 1020 ------- null} h -t 1.17096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2031 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.17098 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2017 -a 0 -x {9.0 10.0 1013 ------- null} - -t 1.17098 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2017 -a 0 -x {9.0 10.0 1013 ------- null} h -t 1.17098 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2017 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.1711 -s 10 -d 7 -p ack -e 40 -c 0 -i 2028 -a 0 -x {10.0 9.0 1009 ------- null} + -t 1.1711 -s 7 -d 0 -p ack -e 40 -c 0 -i 2028 -a 0 -x {10.0 9.0 1009 ------- null} h -t 1.1711 -s 7 -d 8 -p ack -e 40 -c 0 -i 2028 -a 0 -x {10.0 9.0 1009 ------- null} r -t 1.17122 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2027 -a 0 -x {9.0 10.0 1018 ------- null} + -t 1.17122 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2027 -a 0 -x {9.0 10.0 1018 ------- null} h -t 1.17122 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2027 -a 0 -x {9.0 10.0 1018 ------- null} + -t 1.17126 -s 0 -d 9 -p ack -e 40 -c 0 -i 2024 -a 0 -x {10.0 9.0 1007 ------- null} - -t 1.17126 -s 0 -d 9 -p ack -e 40 -c 0 -i 2024 -a 0 -x {10.0 9.0 1007 ------- null} h -t 1.17126 -s 0 -d 9 -p ack -e 40 -c 0 -i 2024 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.17144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2013 -a 0 -x {9.0 10.0 1011 ------- null} + -t 1.17144 -s 10 -d 7 -p ack -e 40 -c 0 -i 2032 -a 0 -x {10.0 9.0 1011 ------- null} - -t 1.17144 -s 10 -d 7 -p ack -e 40 -c 0 -i 2032 -a 0 -x {10.0 9.0 1011 ------- null} h -t 1.17144 -s 10 -d 7 -p ack -e 40 -c 0 -i 2032 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.17211 -s 0 -d 9 -p ack -e 40 -c 0 -i 2022 -a 0 -x {10.0 9.0 1006 ------- null} + -t 1.17211 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2033 -a 0 -x {9.0 10.0 1021 ------- null} - -t 1.17211 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2033 -a 0 -x {9.0 10.0 1021 ------- null} h -t 1.17211 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2033 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.17219 -s 10 -d 7 -p ack -e 40 -c 0 -i 2030 -a 0 -x {10.0 9.0 1010 ------- null} + -t 1.17219 -s 7 -d 0 -p ack -e 40 -c 0 -i 2030 -a 0 -x {10.0 9.0 1010 ------- null} h -t 1.17219 -s 7 -d 8 -p ack -e 40 -c 0 -i 2030 -a 0 -x {10.0 9.0 1010 ------- null} + -t 1.17226 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2019 -a 0 -x {9.0 10.0 1014 ------- null} - -t 1.17226 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2019 -a 0 -x {9.0 10.0 1014 ------- null} h -t 1.17226 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2019 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.17242 -s 0 -d 9 -p ack -e 40 -c 0 -i 2026 -a 0 -x {10.0 9.0 1008 ------- null} - -t 1.17242 -s 0 -d 9 -p ack -e 40 -c 0 -i 2026 -a 0 -x {10.0 9.0 1008 ------- null} h -t 1.17242 -s 0 -d 9 -p ack -e 40 -c 0 -i 2026 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.17246 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2029 -a 0 -x {9.0 10.0 1019 ------- null} + -t 1.17246 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2029 -a 0 -x {9.0 10.0 1019 ------- null} h -t 1.17246 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2029 -a 0 -x {9.0 10.0 1019 ------- null} r -t 1.17269 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2015 -a 0 -x {9.0 10.0 1012 ------- null} + -t 1.17269 -s 10 -d 7 -p ack -e 40 -c 0 -i 2034 -a 0 -x {10.0 9.0 1012 ------- null} - -t 1.17269 -s 10 -d 7 -p ack -e 40 -c 0 -i 2034 -a 0 -x {10.0 9.0 1012 ------- null} h -t 1.17269 -s 10 -d 7 -p ack -e 40 -c 0 -i 2034 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.1733 -s 0 -d 9 -p ack -e 40 -c 0 -i 2024 -a 0 -x {10.0 9.0 1007 ------- null} + -t 1.1733 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2035 -a 0 -x {9.0 10.0 1022 ------- null} - -t 1.1733 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2035 -a 0 -x {9.0 10.0 1022 ------- null} h -t 1.1733 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2035 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.17334 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2021 -a 0 -x {9.0 10.0 1015 ------- null} - -t 1.17334 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2021 -a 0 -x {9.0 10.0 1015 ------- null} h -t 1.17334 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2021 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.17347 -s 10 -d 7 -p ack -e 40 -c 0 -i 2032 -a 0 -x {10.0 9.0 1011 ------- null} + -t 1.17347 -s 7 -d 0 -p ack -e 40 -c 0 -i 2032 -a 0 -x {10.0 9.0 1011 ------- null} h -t 1.17347 -s 7 -d 8 -p ack -e 40 -c 0 -i 2032 -a 0 -x {10.0 9.0 1011 ------- null} + -t 1.17352 -s 0 -d 9 -p ack -e 40 -c 0 -i 2028 -a 0 -x {10.0 9.0 1009 ------- null} - -t 1.17352 -s 0 -d 9 -p ack -e 40 -c 0 -i 2028 -a 0 -x {10.0 9.0 1009 ------- null} h -t 1.17352 -s 0 -d 9 -p ack -e 40 -c 0 -i 2028 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.17376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2031 -a 0 -x {9.0 10.0 1020 ------- null} + -t 1.17376 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2031 -a 0 -x {9.0 10.0 1020 ------- null} h -t 1.17376 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2031 -a 0 -x {9.0 10.0 1020 ------- null} r -t 1.17378 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2017 -a 0 -x {9.0 10.0 1013 ------- null} + -t 1.17378 -s 10 -d 7 -p ack -e 40 -c 0 -i 2036 -a 0 -x {10.0 9.0 1013 ------- null} - -t 1.17378 -s 10 -d 7 -p ack -e 40 -c 0 -i 2036 -a 0 -x {10.0 9.0 1013 ------- null} h -t 1.17378 -s 10 -d 7 -p ack -e 40 -c 0 -i 2036 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.17443 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2023 -a 0 -x {9.0 10.0 1016 ------- null} - -t 1.17443 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2023 -a 0 -x {9.0 10.0 1016 ------- null} h -t 1.17443 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2023 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.17445 -s 0 -d 9 -p ack -e 40 -c 0 -i 2026 -a 0 -x {10.0 9.0 1008 ------- null} + -t 1.17445 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2037 -a 0 -x {9.0 10.0 1023 ------- null} - -t 1.17445 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2037 -a 0 -x {9.0 10.0 1023 ------- null} h -t 1.17445 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2037 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.17464 -s 0 -d 9 -p ack -e 40 -c 0 -i 2030 -a 0 -x {10.0 9.0 1010 ------- null} - -t 1.17464 -s 0 -d 9 -p ack -e 40 -c 0 -i 2030 -a 0 -x {10.0 9.0 1010 ------- null} h -t 1.17464 -s 0 -d 9 -p ack -e 40 -c 0 -i 2030 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.17472 -s 10 -d 7 -p ack -e 40 -c 0 -i 2034 -a 0 -x {10.0 9.0 1012 ------- null} + -t 1.17472 -s 7 -d 0 -p ack -e 40 -c 0 -i 2034 -a 0 -x {10.0 9.0 1012 ------- null} h -t 1.17472 -s 7 -d 8 -p ack -e 40 -c 0 -i 2034 -a 0 -x {10.0 9.0 1012 ------- null} r -t 1.17491 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2033 -a 0 -x {9.0 10.0 1021 ------- null} + -t 1.17491 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2033 -a 0 -x {9.0 10.0 1021 ------- null} h -t 1.17491 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2033 -a 0 -x {9.0 10.0 1021 ------- null} r -t 1.17506 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2019 -a 0 -x {9.0 10.0 1014 ------- null} + -t 1.17506 -s 10 -d 7 -p ack -e 40 -c 0 -i 2038 -a 0 -x {10.0 9.0 1014 ------- null} - -t 1.17506 -s 10 -d 7 -p ack -e 40 -c 0 -i 2038 -a 0 -x {10.0 9.0 1014 ------- null} h -t 1.17506 -s 10 -d 7 -p ack -e 40 -c 0 -i 2038 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.17552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2025 -a 0 -x {9.0 10.0 1017 ------- null} - -t 1.17552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2025 -a 0 -x {9.0 10.0 1017 ------- null} h -t 1.17552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2025 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.17555 -s 0 -d 9 -p ack -e 40 -c 0 -i 2028 -a 0 -x {10.0 9.0 1009 ------- null} + -t 1.17555 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2039 -a 0 -x {9.0 10.0 1024 ------- null} - -t 1.17555 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2039 -a 0 -x {9.0 10.0 1024 ------- null} h -t 1.17555 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2039 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.17568 -s 0 -d 9 -p ack -e 40 -c 0 -i 2032 -a 0 -x {10.0 9.0 1011 ------- null} - -t 1.17568 -s 0 -d 9 -p ack -e 40 -c 0 -i 2032 -a 0 -x {10.0 9.0 1011 ------- null} h -t 1.17568 -s 0 -d 9 -p ack -e 40 -c 0 -i 2032 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.17581 -s 10 -d 7 -p ack -e 40 -c 0 -i 2036 -a 0 -x {10.0 9.0 1013 ------- null} + -t 1.17581 -s 7 -d 0 -p ack -e 40 -c 0 -i 2036 -a 0 -x {10.0 9.0 1013 ------- null} h -t 1.17581 -s 7 -d 8 -p ack -e 40 -c 0 -i 2036 -a 0 -x {10.0 9.0 1013 ------- null} r -t 1.1761 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2035 -a 0 -x {9.0 10.0 1022 ------- null} + -t 1.1761 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2035 -a 0 -x {9.0 10.0 1022 ------- null} h -t 1.1761 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2035 -a 0 -x {9.0 10.0 1022 ------- null} r -t 1.17614 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2021 -a 0 -x {9.0 10.0 1015 ------- null} + -t 1.17614 -s 10 -d 7 -p ack -e 40 -c 0 -i 2040 -a 0 -x {10.0 9.0 1015 ------- null} - -t 1.17614 -s 10 -d 7 -p ack -e 40 -c 0 -i 2040 -a 0 -x {10.0 9.0 1015 ------- null} h -t 1.17614 -s 10 -d 7 -p ack -e 40 -c 0 -i 2040 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.17661 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2027 -a 0 -x {9.0 10.0 1018 ------- null} - -t 1.17661 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2027 -a 0 -x {9.0 10.0 1018 ------- null} h -t 1.17661 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2027 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.17667 -s 0 -d 9 -p ack -e 40 -c 0 -i 2030 -a 0 -x {10.0 9.0 1010 ------- null} + -t 1.17667 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2041 -a 0 -x {9.0 10.0 1025 ------- null} - -t 1.17667 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2041 -a 0 -x {9.0 10.0 1025 ------- null} h -t 1.17667 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2041 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.17669 -s 0 -d 9 -p ack -e 40 -c 0 -i 2034 -a 0 -x {10.0 9.0 1012 ------- null} - -t 1.17669 -s 0 -d 9 -p ack -e 40 -c 0 -i 2034 -a 0 -x {10.0 9.0 1012 ------- null} h -t 1.17669 -s 0 -d 9 -p ack -e 40 -c 0 -i 2034 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.17709 -s 10 -d 7 -p ack -e 40 -c 0 -i 2038 -a 0 -x {10.0 9.0 1014 ------- null} + -t 1.17709 -s 7 -d 0 -p ack -e 40 -c 0 -i 2038 -a 0 -x {10.0 9.0 1014 ------- null} h -t 1.17709 -s 7 -d 8 -p ack -e 40 -c 0 -i 2038 -a 0 -x {10.0 9.0 1014 ------- null} r -t 1.17723 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2023 -a 0 -x {9.0 10.0 1016 ------- null} + -t 1.17723 -s 10 -d 7 -p ack -e 40 -c 0 -i 2042 -a 0 -x {10.0 9.0 1016 ------- null} - -t 1.17723 -s 10 -d 7 -p ack -e 40 -c 0 -i 2042 -a 0 -x {10.0 9.0 1016 ------- null} h -t 1.17723 -s 10 -d 7 -p ack -e 40 -c 0 -i 2042 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.17725 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2037 -a 0 -x {9.0 10.0 1023 ------- null} + -t 1.17725 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2037 -a 0 -x {9.0 10.0 1023 ------- null} h -t 1.17725 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2037 -a 0 -x {9.0 10.0 1023 ------- null} + -t 1.1777 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2029 -a 0 -x {9.0 10.0 1019 ------- null} - -t 1.1777 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2029 -a 0 -x {9.0 10.0 1019 ------- null} h -t 1.1777 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2029 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.17771 -s 0 -d 9 -p ack -e 40 -c 0 -i 2032 -a 0 -x {10.0 9.0 1011 ------- null} + -t 1.17771 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2043 -a 0 -x {9.0 10.0 1026 ------- null} - -t 1.17771 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2043 -a 0 -x {9.0 10.0 1026 ------- null} h -t 1.17771 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2043 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.17797 -s 0 -d 9 -p ack -e 40 -c 0 -i 2036 -a 0 -x {10.0 9.0 1013 ------- null} - -t 1.17797 -s 0 -d 9 -p ack -e 40 -c 0 -i 2036 -a 0 -x {10.0 9.0 1013 ------- null} h -t 1.17797 -s 0 -d 9 -p ack -e 40 -c 0 -i 2036 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.17818 -s 10 -d 7 -p ack -e 40 -c 0 -i 2040 -a 0 -x {10.0 9.0 1015 ------- null} + -t 1.17818 -s 7 -d 0 -p ack -e 40 -c 0 -i 2040 -a 0 -x {10.0 9.0 1015 ------- null} h -t 1.17818 -s 7 -d 8 -p ack -e 40 -c 0 -i 2040 -a 0 -x {10.0 9.0 1015 ------- null} r -t 1.17832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2025 -a 0 -x {9.0 10.0 1017 ------- null} + -t 1.17832 -s 10 -d 7 -p ack -e 40 -c 0 -i 2044 -a 0 -x {10.0 9.0 1017 ------- null} - -t 1.17832 -s 10 -d 7 -p ack -e 40 -c 0 -i 2044 -a 0 -x {10.0 9.0 1017 ------- null} h -t 1.17832 -s 10 -d 7 -p ack -e 40 -c 0 -i 2044 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.17835 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2039 -a 0 -x {9.0 10.0 1024 ------- null} + -t 1.17835 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2039 -a 0 -x {9.0 10.0 1024 ------- null} h -t 1.17835 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2039 -a 0 -x {9.0 10.0 1024 ------- null} r -t 1.17872 -s 0 -d 9 -p ack -e 40 -c 0 -i 2034 -a 0 -x {10.0 9.0 1012 ------- null} + -t 1.17872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2045 -a 0 -x {9.0 10.0 1027 ------- null} - -t 1.17872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2045 -a 0 -x {9.0 10.0 1027 ------- null} h -t 1.17872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2045 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.1788 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2031 -a 0 -x {9.0 10.0 1020 ------- null} - -t 1.1788 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2031 -a 0 -x {9.0 10.0 1020 ------- null} h -t 1.1788 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2031 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.17893 -s 0 -d 9 -p ack -e 40 -c 0 -i 2038 -a 0 -x {10.0 9.0 1014 ------- null} - -t 1.17893 -s 0 -d 9 -p ack -e 40 -c 0 -i 2038 -a 0 -x {10.0 9.0 1014 ------- null} h -t 1.17893 -s 0 -d 9 -p ack -e 40 -c 0 -i 2038 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.17926 -s 10 -d 7 -p ack -e 40 -c 0 -i 2042 -a 0 -x {10.0 9.0 1016 ------- null} + -t 1.17926 -s 7 -d 0 -p ack -e 40 -c 0 -i 2042 -a 0 -x {10.0 9.0 1016 ------- null} h -t 1.17926 -s 7 -d 8 -p ack -e 40 -c 0 -i 2042 -a 0 -x {10.0 9.0 1016 ------- null} r -t 1.17941 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2027 -a 0 -x {9.0 10.0 1018 ------- null} + -t 1.17941 -s 10 -d 7 -p ack -e 40 -c 0 -i 2046 -a 0 -x {10.0 9.0 1018 ------- null} - -t 1.17941 -s 10 -d 7 -p ack -e 40 -c 0 -i 2046 -a 0 -x {10.0 9.0 1018 ------- null} h -t 1.17941 -s 10 -d 7 -p ack -e 40 -c 0 -i 2046 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.17947 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2041 -a 0 -x {9.0 10.0 1025 ------- null} + -t 1.17947 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2041 -a 0 -x {9.0 10.0 1025 ------- null} h -t 1.17947 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2041 -a 0 -x {9.0 10.0 1025 ------- null} + -t 1.17989 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2033 -a 0 -x {9.0 10.0 1021 ------- null} - -t 1.17989 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2033 -a 0 -x {9.0 10.0 1021 ------- null} h -t 1.17989 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2033 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.18 -s 0 -d 9 -p ack -e 40 -c 0 -i 2036 -a 0 -x {10.0 9.0 1013 ------- null} + -t 1.18 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2047 -a 0 -x {9.0 10.0 1028 ------- null} - -t 1.18 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2047 -a 0 -x {9.0 10.0 1028 ------- null} h -t 1.18 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2047 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.18019 -s 0 -d 9 -p ack -e 40 -c 0 -i 2040 -a 0 -x {10.0 9.0 1015 ------- null} - -t 1.18019 -s 0 -d 9 -p ack -e 40 -c 0 -i 2040 -a 0 -x {10.0 9.0 1015 ------- null} h -t 1.18019 -s 0 -d 9 -p ack -e 40 -c 0 -i 2040 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.18035 -s 10 -d 7 -p ack -e 40 -c 0 -i 2044 -a 0 -x {10.0 9.0 1017 ------- null} + -t 1.18035 -s 7 -d 0 -p ack -e 40 -c 0 -i 2044 -a 0 -x {10.0 9.0 1017 ------- null} h -t 1.18035 -s 7 -d 8 -p ack -e 40 -c 0 -i 2044 -a 0 -x {10.0 9.0 1017 ------- null} r -t 1.1805 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2029 -a 0 -x {9.0 10.0 1019 ------- null} + -t 1.1805 -s 10 -d 7 -p ack -e 40 -c 0 -i 2048 -a 0 -x {10.0 9.0 1019 ------- null} - -t 1.1805 -s 10 -d 7 -p ack -e 40 -c 0 -i 2048 -a 0 -x {10.0 9.0 1019 ------- null} h -t 1.1805 -s 10 -d 7 -p ack -e 40 -c 0 -i 2048 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.18051 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2043 -a 0 -x {9.0 10.0 1026 ------- null} + -t 1.18051 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2043 -a 0 -x {9.0 10.0 1026 ------- null} h -t 1.18051 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2043 -a 0 -x {9.0 10.0 1026 ------- null} r -t 1.18096 -s 0 -d 9 -p ack -e 40 -c 0 -i 2038 -a 0 -x {10.0 9.0 1014 ------- null} + -t 1.18096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2049 -a 0 -x {9.0 10.0 1029 ------- null} - -t 1.18096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2049 -a 0 -x {9.0 10.0 1029 ------- null} h -t 1.18096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2049 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.18114 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2035 -a 0 -x {9.0 10.0 1022 ------- null} - -t 1.18114 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2035 -a 0 -x {9.0 10.0 1022 ------- null} h -t 1.18114 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2035 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.18142 -s 0 -d 9 -p ack -e 40 -c 0 -i 2042 -a 0 -x {10.0 9.0 1016 ------- null} - -t 1.18142 -s 0 -d 9 -p ack -e 40 -c 0 -i 2042 -a 0 -x {10.0 9.0 1016 ------- null} h -t 1.18142 -s 0 -d 9 -p ack -e 40 -c 0 -i 2042 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.18144 -s 10 -d 7 -p ack -e 40 -c 0 -i 2046 -a 0 -x {10.0 9.0 1018 ------- null} + -t 1.18144 -s 7 -d 0 -p ack -e 40 -c 0 -i 2046 -a 0 -x {10.0 9.0 1018 ------- null} h -t 1.18144 -s 7 -d 8 -p ack -e 40 -c 0 -i 2046 -a 0 -x {10.0 9.0 1018 ------- null} r -t 1.18152 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2045 -a 0 -x {9.0 10.0 1027 ------- null} + -t 1.18152 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2045 -a 0 -x {9.0 10.0 1027 ------- null} h -t 1.18152 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2045 -a 0 -x {9.0 10.0 1027 ------- null} r -t 1.1816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2031 -a 0 -x {9.0 10.0 1020 ------- null} + -t 1.1816 -s 10 -d 7 -p ack -e 40 -c 0 -i 2050 -a 0 -x {10.0 9.0 1020 ------- null} - -t 1.1816 -s 10 -d 7 -p ack -e 40 -c 0 -i 2050 -a 0 -x {10.0 9.0 1020 ------- null} h -t 1.1816 -s 10 -d 7 -p ack -e 40 -c 0 -i 2050 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.18222 -s 0 -d 9 -p ack -e 40 -c 0 -i 2040 -a 0 -x {10.0 9.0 1015 ------- null} + -t 1.18222 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2051 -a 0 -x {9.0 10.0 1030 ------- null} - -t 1.18222 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2051 -a 0 -x {9.0 10.0 1030 ------- null} h -t 1.18222 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2051 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.1825 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2037 -a 0 -x {9.0 10.0 1023 ------- null} - -t 1.1825 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2037 -a 0 -x {9.0 10.0 1023 ------- null} h -t 1.1825 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2037 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.18253 -s 10 -d 7 -p ack -e 40 -c 0 -i 2048 -a 0 -x {10.0 9.0 1019 ------- null} + -t 1.18253 -s 7 -d 0 -p ack -e 40 -c 0 -i 2048 -a 0 -x {10.0 9.0 1019 ------- null} h -t 1.18253 -s 7 -d 8 -p ack -e 40 -c 0 -i 2048 -a 0 -x {10.0 9.0 1019 ------- null} r -t 1.18269 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2033 -a 0 -x {9.0 10.0 1021 ------- null} + -t 1.18269 -s 10 -d 7 -p ack -e 40 -c 0 -i 2052 -a 0 -x {10.0 9.0 1021 ------- null} - -t 1.18269 -s 10 -d 7 -p ack -e 40 -c 0 -i 2052 -a 0 -x {10.0 9.0 1021 ------- null} h -t 1.18269 -s 10 -d 7 -p ack -e 40 -c 0 -i 2052 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.18277 -s 0 -d 9 -p ack -e 40 -c 0 -i 2044 -a 0 -x {10.0 9.0 1017 ------- null} - -t 1.18277 -s 0 -d 9 -p ack -e 40 -c 0 -i 2044 -a 0 -x {10.0 9.0 1017 ------- null} h -t 1.18277 -s 0 -d 9 -p ack -e 40 -c 0 -i 2044 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.1828 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2047 -a 0 -x {9.0 10.0 1028 ------- null} + -t 1.1828 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2047 -a 0 -x {9.0 10.0 1028 ------- null} h -t 1.1828 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2047 -a 0 -x {9.0 10.0 1028 ------- null} r -t 1.18346 -s 0 -d 9 -p ack -e 40 -c 0 -i 2042 -a 0 -x {10.0 9.0 1016 ------- null} + -t 1.18346 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2053 -a 0 -x {9.0 10.0 1031 ------- null} - -t 1.18346 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2053 -a 0 -x {9.0 10.0 1031 ------- null} h -t 1.18346 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2053 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.18363 -s 10 -d 7 -p ack -e 40 -c 0 -i 2050 -a 0 -x {10.0 9.0 1020 ------- null} + -t 1.18363 -s 7 -d 0 -p ack -e 40 -c 0 -i 2050 -a 0 -x {10.0 9.0 1020 ------- null} h -t 1.18363 -s 7 -d 8 -p ack -e 40 -c 0 -i 2050 -a 0 -x {10.0 9.0 1020 ------- null} + -t 1.18366 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2039 -a 0 -x {9.0 10.0 1024 ------- null} - -t 1.18366 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2039 -a 0 -x {9.0 10.0 1024 ------- null} h -t 1.18366 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2039 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.18373 -s 0 -d 9 -p ack -e 40 -c 0 -i 2046 -a 0 -x {10.0 9.0 1018 ------- null} - -t 1.18373 -s 0 -d 9 -p ack -e 40 -c 0 -i 2046 -a 0 -x {10.0 9.0 1018 ------- null} h -t 1.18373 -s 0 -d 9 -p ack -e 40 -c 0 -i 2046 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.18376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2049 -a 0 -x {9.0 10.0 1029 ------- null} + -t 1.18376 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2049 -a 0 -x {9.0 10.0 1029 ------- null} h -t 1.18376 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2049 -a 0 -x {9.0 10.0 1029 ------- null} r -t 1.18394 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2035 -a 0 -x {9.0 10.0 1022 ------- null} + -t 1.18394 -s 10 -d 7 -p ack -e 40 -c 0 -i 2054 -a 0 -x {10.0 9.0 1022 ------- null} - -t 1.18394 -s 10 -d 7 -p ack -e 40 -c 0 -i 2054 -a 0 -x {10.0 9.0 1022 ------- null} h -t 1.18394 -s 10 -d 7 -p ack -e 40 -c 0 -i 2054 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.18472 -s 10 -d 7 -p ack -e 40 -c 0 -i 2052 -a 0 -x {10.0 9.0 1021 ------- null} + -t 1.18472 -s 7 -d 0 -p ack -e 40 -c 0 -i 2052 -a 0 -x {10.0 9.0 1021 ------- null} h -t 1.18472 -s 7 -d 8 -p ack -e 40 -c 0 -i 2052 -a 0 -x {10.0 9.0 1021 ------- null} + -t 1.18475 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2041 -a 0 -x {9.0 10.0 1025 ------- null} - -t 1.18475 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2041 -a 0 -x {9.0 10.0 1025 ------- null} h -t 1.18475 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2041 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.1848 -s 0 -d 9 -p ack -e 40 -c 0 -i 2044 -a 0 -x {10.0 9.0 1017 ------- null} + -t 1.1848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2055 -a 0 -x {9.0 10.0 1032 ------- null} - -t 1.1848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2055 -a 0 -x {9.0 10.0 1032 ------- null} h -t 1.1848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2055 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.18496 -s 0 -d 9 -p ack -e 40 -c 0 -i 2048 -a 0 -x {10.0 9.0 1019 ------- null} - -t 1.18496 -s 0 -d 9 -p ack -e 40 -c 0 -i 2048 -a 0 -x {10.0 9.0 1019 ------- null} h -t 1.18496 -s 0 -d 9 -p ack -e 40 -c 0 -i 2048 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.18502 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2051 -a 0 -x {9.0 10.0 1030 ------- null} + -t 1.18502 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2051 -a 0 -x {9.0 10.0 1030 ------- null} h -t 1.18502 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2051 -a 0 -x {9.0 10.0 1030 ------- null} r -t 1.1853 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2037 -a 0 -x {9.0 10.0 1023 ------- null} + -t 1.1853 -s 10 -d 7 -p ack -e 40 -c 0 -i 2056 -a 0 -x {10.0 9.0 1023 ------- null} - -t 1.1853 -s 10 -d 7 -p ack -e 40 -c 0 -i 2056 -a 0 -x {10.0 9.0 1023 ------- null} h -t 1.1853 -s 10 -d 7 -p ack -e 40 -c 0 -i 2056 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.18576 -s 0 -d 9 -p ack -e 40 -c 0 -i 2046 -a 0 -x {10.0 9.0 1018 ------- null} + -t 1.18576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2057 -a 0 -x {9.0 10.0 1033 ------- null} - -t 1.18576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2057 -a 0 -x {9.0 10.0 1033 ------- null} h -t 1.18576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2057 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.18584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2043 -a 0 -x {9.0 10.0 1026 ------- null} - -t 1.18584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2043 -a 0 -x {9.0 10.0 1026 ------- null} h -t 1.18584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2043 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.18597 -s 10 -d 7 -p ack -e 40 -c 0 -i 2054 -a 0 -x {10.0 9.0 1022 ------- null} + -t 1.18597 -s 7 -d 0 -p ack -e 40 -c 0 -i 2054 -a 0 -x {10.0 9.0 1022 ------- null} h -t 1.18597 -s 7 -d 8 -p ack -e 40 -c 0 -i 2054 -a 0 -x {10.0 9.0 1022 ------- null} + -t 1.18613 -s 0 -d 9 -p ack -e 40 -c 0 -i 2050 -a 0 -x {10.0 9.0 1020 ------- null} - -t 1.18613 -s 0 -d 9 -p ack -e 40 -c 0 -i 2050 -a 0 -x {10.0 9.0 1020 ------- null} h -t 1.18613 -s 0 -d 9 -p ack -e 40 -c 0 -i 2050 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.18626 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2053 -a 0 -x {9.0 10.0 1031 ------- null} + -t 1.18626 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2053 -a 0 -x {9.0 10.0 1031 ------- null} h -t 1.18626 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2053 -a 0 -x {9.0 10.0 1031 ------- null} r -t 1.18646 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2039 -a 0 -x {9.0 10.0 1024 ------- null} + -t 1.18646 -s 10 -d 7 -p ack -e 40 -c 0 -i 2058 -a 0 -x {10.0 9.0 1024 ------- null} - -t 1.18646 -s 10 -d 7 -p ack -e 40 -c 0 -i 2058 -a 0 -x {10.0 9.0 1024 ------- null} h -t 1.18646 -s 10 -d 7 -p ack -e 40 -c 0 -i 2058 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.18699 -s 0 -d 9 -p ack -e 40 -c 0 -i 2048 -a 0 -x {10.0 9.0 1019 ------- null} + -t 1.18699 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2059 -a 0 -x {9.0 10.0 1034 ------- null} - -t 1.18699 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2059 -a 0 -x {9.0 10.0 1034 ------- null} h -t 1.18699 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2059 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.18707 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2045 -a 0 -x {9.0 10.0 1027 ------- null} - -t 1.18707 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2045 -a 0 -x {9.0 10.0 1027 ------- null} h -t 1.18707 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2045 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.18725 -s 0 -d 9 -p ack -e 40 -c 0 -i 2052 -a 0 -x {10.0 9.0 1021 ------- null} - -t 1.18725 -s 0 -d 9 -p ack -e 40 -c 0 -i 2052 -a 0 -x {10.0 9.0 1021 ------- null} h -t 1.18725 -s 0 -d 9 -p ack -e 40 -c 0 -i 2052 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.18733 -s 10 -d 7 -p ack -e 40 -c 0 -i 2056 -a 0 -x {10.0 9.0 1023 ------- null} + -t 1.18733 -s 7 -d 0 -p ack -e 40 -c 0 -i 2056 -a 0 -x {10.0 9.0 1023 ------- null} h -t 1.18733 -s 7 -d 8 -p ack -e 40 -c 0 -i 2056 -a 0 -x {10.0 9.0 1023 ------- null} r -t 1.18755 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2041 -a 0 -x {9.0 10.0 1025 ------- null} + -t 1.18755 -s 10 -d 7 -p ack -e 40 -c 0 -i 2060 -a 0 -x {10.0 9.0 1025 ------- null} - -t 1.18755 -s 10 -d 7 -p ack -e 40 -c 0 -i 2060 -a 0 -x {10.0 9.0 1025 ------- null} h -t 1.18755 -s 10 -d 7 -p ack -e 40 -c 0 -i 2060 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.1876 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2055 -a 0 -x {9.0 10.0 1032 ------- null} + -t 1.1876 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2055 -a 0 -x {9.0 10.0 1032 ------- null} h -t 1.1876 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2055 -a 0 -x {9.0 10.0 1032 ------- null} + -t 1.18816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2047 -a 0 -x {9.0 10.0 1028 ------- null} - -t 1.18816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2047 -a 0 -x {9.0 10.0 1028 ------- null} h -t 1.18816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2047 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.18816 -s 0 -d 9 -p ack -e 40 -c 0 -i 2050 -a 0 -x {10.0 9.0 1020 ------- null} + -t 1.18816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2061 -a 0 -x {9.0 10.0 1035 ------- null} - -t 1.18816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2061 -a 0 -x {9.0 10.0 1035 ------- null} h -t 1.18816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2061 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.1883 -s 0 -d 9 -p ack -e 40 -c 0 -i 2054 -a 0 -x {10.0 9.0 1022 ------- null} - -t 1.1883 -s 0 -d 9 -p ack -e 40 -c 0 -i 2054 -a 0 -x {10.0 9.0 1022 ------- null} h -t 1.1883 -s 0 -d 9 -p ack -e 40 -c 0 -i 2054 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.1885 -s 10 -d 7 -p ack -e 40 -c 0 -i 2058 -a 0 -x {10.0 9.0 1024 ------- null} + -t 1.1885 -s 7 -d 0 -p ack -e 40 -c 0 -i 2058 -a 0 -x {10.0 9.0 1024 ------- null} h -t 1.1885 -s 7 -d 8 -p ack -e 40 -c 0 -i 2058 -a 0 -x {10.0 9.0 1024 ------- null} r -t 1.18856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2057 -a 0 -x {9.0 10.0 1033 ------- null} + -t 1.18856 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2057 -a 0 -x {9.0 10.0 1033 ------- null} h -t 1.18856 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2057 -a 0 -x {9.0 10.0 1033 ------- null} r -t 1.18864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2043 -a 0 -x {9.0 10.0 1026 ------- null} + -t 1.18864 -s 10 -d 7 -p ack -e 40 -c 0 -i 2062 -a 0 -x {10.0 9.0 1026 ------- null} - -t 1.18864 -s 10 -d 7 -p ack -e 40 -c 0 -i 2062 -a 0 -x {10.0 9.0 1026 ------- null} h -t 1.18864 -s 10 -d 7 -p ack -e 40 -c 0 -i 2062 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.18925 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2049 -a 0 -x {9.0 10.0 1029 ------- null} - -t 1.18925 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2049 -a 0 -x {9.0 10.0 1029 ------- null} h -t 1.18925 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2049 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.18928 -s 0 -d 9 -p ack -e 40 -c 0 -i 2052 -a 0 -x {10.0 9.0 1021 ------- null} + -t 1.18928 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2063 -a 0 -x {9.0 10.0 1036 ------- null} - -t 1.18928 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2063 -a 0 -x {9.0 10.0 1036 ------- null} h -t 1.18928 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2063 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.18946 -s 0 -d 9 -p ack -e 40 -c 0 -i 2056 -a 0 -x {10.0 9.0 1023 ------- null} - -t 1.18946 -s 0 -d 9 -p ack -e 40 -c 0 -i 2056 -a 0 -x {10.0 9.0 1023 ------- null} h -t 1.18946 -s 0 -d 9 -p ack -e 40 -c 0 -i 2056 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.18958 -s 10 -d 7 -p ack -e 40 -c 0 -i 2060 -a 0 -x {10.0 9.0 1025 ------- null} + -t 1.18958 -s 7 -d 0 -p ack -e 40 -c 0 -i 2060 -a 0 -x {10.0 9.0 1025 ------- null} h -t 1.18958 -s 7 -d 8 -p ack -e 40 -c 0 -i 2060 -a 0 -x {10.0 9.0 1025 ------- null} r -t 1.18979 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2059 -a 0 -x {9.0 10.0 1034 ------- null} + -t 1.18979 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2059 -a 0 -x {9.0 10.0 1034 ------- null} h -t 1.18979 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2059 -a 0 -x {9.0 10.0 1034 ------- null} r -t 1.18987 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2045 -a 0 -x {9.0 10.0 1027 ------- null} + -t 1.18987 -s 10 -d 7 -p ack -e 40 -c 0 -i 2064 -a 0 -x {10.0 9.0 1027 ------- null} - -t 1.18987 -s 10 -d 7 -p ack -e 40 -c 0 -i 2064 -a 0 -x {10.0 9.0 1027 ------- null} h -t 1.18987 -s 10 -d 7 -p ack -e 40 -c 0 -i 2064 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.19034 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2051 -a 0 -x {9.0 10.0 1030 ------- null} - -t 1.19034 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2051 -a 0 -x {9.0 10.0 1030 ------- null} h -t 1.19034 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2051 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.19034 -s 0 -d 9 -p ack -e 40 -c 0 -i 2054 -a 0 -x {10.0 9.0 1022 ------- null} + -t 1.19034 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2065 -a 0 -x {9.0 10.0 1037 ------- null} - -t 1.19034 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2065 -a 0 -x {9.0 10.0 1037 ------- null} h -t 1.19034 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2065 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.1904 -s 0 -d 9 -p ack -e 40 -c 0 -i 2058 -a 0 -x {10.0 9.0 1024 ------- null} - -t 1.1904 -s 0 -d 9 -p ack -e 40 -c 0 -i 2058 -a 0 -x {10.0 9.0 1024 ------- null} h -t 1.1904 -s 0 -d 9 -p ack -e 40 -c 0 -i 2058 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.19067 -s 10 -d 7 -p ack -e 40 -c 0 -i 2062 -a 0 -x {10.0 9.0 1026 ------- null} + -t 1.19067 -s 7 -d 0 -p ack -e 40 -c 0 -i 2062 -a 0 -x {10.0 9.0 1026 ------- null} h -t 1.19067 -s 7 -d 8 -p ack -e 40 -c 0 -i 2062 -a 0 -x {10.0 9.0 1026 ------- null} r -t 1.19096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2047 -a 0 -x {9.0 10.0 1028 ------- null} + -t 1.19096 -s 10 -d 7 -p ack -e 40 -c 0 -i 2066 -a 0 -x {10.0 9.0 1028 ------- null} - -t 1.19096 -s 10 -d 7 -p ack -e 40 -c 0 -i 2066 -a 0 -x {10.0 9.0 1028 ------- null} h -t 1.19096 -s 10 -d 7 -p ack -e 40 -c 0 -i 2066 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.19096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2061 -a 0 -x {9.0 10.0 1035 ------- null} + -t 1.19096 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2061 -a 0 -x {9.0 10.0 1035 ------- null} h -t 1.19096 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2061 -a 0 -x {9.0 10.0 1035 ------- null} + -t 1.19142 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2053 -a 0 -x {9.0 10.0 1031 ------- null} - -t 1.19142 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2053 -a 0 -x {9.0 10.0 1031 ------- null} h -t 1.19142 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2053 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.19149 -s 0 -d 9 -p ack -e 40 -c 0 -i 2056 -a 0 -x {10.0 9.0 1023 ------- null} + -t 1.19149 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2067 -a 0 -x {9.0 10.0 1038 ------- null} - -t 1.19149 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2067 -a 0 -x {9.0 10.0 1038 ------- null} h -t 1.19149 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2067 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.19155 -s 0 -d 9 -p ack -e 40 -c 0 -i 2060 -a 0 -x {10.0 9.0 1025 ------- null} - -t 1.19155 -s 0 -d 9 -p ack -e 40 -c 0 -i 2060 -a 0 -x {10.0 9.0 1025 ------- null} h -t 1.19155 -s 0 -d 9 -p ack -e 40 -c 0 -i 2060 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.1919 -s 10 -d 7 -p ack -e 40 -c 0 -i 2064 -a 0 -x {10.0 9.0 1027 ------- null} + -t 1.1919 -s 7 -d 0 -p ack -e 40 -c 0 -i 2064 -a 0 -x {10.0 9.0 1027 ------- null} h -t 1.1919 -s 7 -d 8 -p ack -e 40 -c 0 -i 2064 -a 0 -x {10.0 9.0 1027 ------- null} r -t 1.19205 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2049 -a 0 -x {9.0 10.0 1029 ------- null} + -t 1.19205 -s 10 -d 7 -p ack -e 40 -c 0 -i 2068 -a 0 -x {10.0 9.0 1029 ------- null} - -t 1.19205 -s 10 -d 7 -p ack -e 40 -c 0 -i 2068 -a 0 -x {10.0 9.0 1029 ------- null} h -t 1.19205 -s 10 -d 7 -p ack -e 40 -c 0 -i 2068 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.19208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2063 -a 0 -x {9.0 10.0 1036 ------- null} + -t 1.19208 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2063 -a 0 -x {9.0 10.0 1036 ------- null} h -t 1.19208 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2063 -a 0 -x {9.0 10.0 1036 ------- null} r -t 1.19243 -s 0 -d 9 -p ack -e 40 -c 0 -i 2058 -a 0 -x {10.0 9.0 1024 ------- null} + -t 1.19243 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2069 -a 0 -x {9.0 10.0 1039 ------- null} - -t 1.19243 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2069 -a 0 -x {9.0 10.0 1039 ------- null} h -t 1.19243 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2069 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.19251 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2055 -a 0 -x {9.0 10.0 1032 ------- null} - -t 1.19251 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2055 -a 0 -x {9.0 10.0 1032 ------- null} h -t 1.19251 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2055 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.19262 -s 0 -d 9 -p ack -e 40 -c 0 -i 2062 -a 0 -x {10.0 9.0 1026 ------- null} - -t 1.19262 -s 0 -d 9 -p ack -e 40 -c 0 -i 2062 -a 0 -x {10.0 9.0 1026 ------- null} h -t 1.19262 -s 0 -d 9 -p ack -e 40 -c 0 -i 2062 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.19299 -s 10 -d 7 -p ack -e 40 -c 0 -i 2066 -a 0 -x {10.0 9.0 1028 ------- null} + -t 1.19299 -s 7 -d 0 -p ack -e 40 -c 0 -i 2066 -a 0 -x {10.0 9.0 1028 ------- null} h -t 1.19299 -s 7 -d 8 -p ack -e 40 -c 0 -i 2066 -a 0 -x {10.0 9.0 1028 ------- null} r -t 1.19314 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2051 -a 0 -x {9.0 10.0 1030 ------- null} + -t 1.19314 -s 10 -d 7 -p ack -e 40 -c 0 -i 2070 -a 0 -x {10.0 9.0 1030 ------- null} - -t 1.19314 -s 10 -d 7 -p ack -e 40 -c 0 -i 2070 -a 0 -x {10.0 9.0 1030 ------- null} h -t 1.19314 -s 10 -d 7 -p ack -e 40 -c 0 -i 2070 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.19314 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2065 -a 0 -x {9.0 10.0 1037 ------- null} + -t 1.19314 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2065 -a 0 -x {9.0 10.0 1037 ------- null} h -t 1.19314 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2065 -a 0 -x {9.0 10.0 1037 ------- null} r -t 1.19358 -s 0 -d 9 -p ack -e 40 -c 0 -i 2060 -a 0 -x {10.0 9.0 1025 ------- null} + -t 1.19358 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2071 -a 0 -x {9.0 10.0 1040 ------- null} - -t 1.19358 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2071 -a 0 -x {9.0 10.0 1040 ------- null} h -t 1.19358 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2071 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.1936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2057 -a 0 -x {9.0 10.0 1033 ------- null} - -t 1.1936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2057 -a 0 -x {9.0 10.0 1033 ------- null} h -t 1.1936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2057 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.19386 -s 0 -d 9 -p ack -e 40 -c 0 -i 2064 -a 0 -x {10.0 9.0 1027 ------- null} - -t 1.19386 -s 0 -d 9 -p ack -e 40 -c 0 -i 2064 -a 0 -x {10.0 9.0 1027 ------- null} h -t 1.19386 -s 0 -d 9 -p ack -e 40 -c 0 -i 2064 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.19408 -s 10 -d 7 -p ack -e 40 -c 0 -i 2068 -a 0 -x {10.0 9.0 1029 ------- null} + -t 1.19408 -s 7 -d 0 -p ack -e 40 -c 0 -i 2068 -a 0 -x {10.0 9.0 1029 ------- null} h -t 1.19408 -s 7 -d 8 -p ack -e 40 -c 0 -i 2068 -a 0 -x {10.0 9.0 1029 ------- null} r -t 1.19422 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2053 -a 0 -x {9.0 10.0 1031 ------- null} + -t 1.19422 -s 10 -d 7 -p ack -e 40 -c 0 -i 2072 -a 0 -x {10.0 9.0 1031 ------- null} - -t 1.19422 -s 10 -d 7 -p ack -e 40 -c 0 -i 2072 -a 0 -x {10.0 9.0 1031 ------- null} h -t 1.19422 -s 10 -d 7 -p ack -e 40 -c 0 -i 2072 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.19429 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2067 -a 0 -x {9.0 10.0 1038 ------- null} + -t 1.19429 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2067 -a 0 -x {9.0 10.0 1038 ------- null} h -t 1.19429 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2067 -a 0 -x {9.0 10.0 1038 ------- null} r -t 1.19466 -s 0 -d 9 -p ack -e 40 -c 0 -i 2062 -a 0 -x {10.0 9.0 1026 ------- null} + -t 1.19466 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2073 -a 0 -x {9.0 10.0 1041 ------- null} - -t 1.19466 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2073 -a 0 -x {9.0 10.0 1041 ------- null} h -t 1.19466 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2073 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.19469 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2059 -a 0 -x {9.0 10.0 1034 ------- null} - -t 1.19469 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2059 -a 0 -x {9.0 10.0 1034 ------- null} h -t 1.19469 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2059 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.19493 -s 0 -d 9 -p ack -e 40 -c 0 -i 2066 -a 0 -x {10.0 9.0 1028 ------- null} - -t 1.19493 -s 0 -d 9 -p ack -e 40 -c 0 -i 2066 -a 0 -x {10.0 9.0 1028 ------- null} h -t 1.19493 -s 0 -d 9 -p ack -e 40 -c 0 -i 2066 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.19517 -s 10 -d 7 -p ack -e 40 -c 0 -i 2070 -a 0 -x {10.0 9.0 1030 ------- null} + -t 1.19517 -s 7 -d 0 -p ack -e 40 -c 0 -i 2070 -a 0 -x {10.0 9.0 1030 ------- null} h -t 1.19517 -s 7 -d 8 -p ack -e 40 -c 0 -i 2070 -a 0 -x {10.0 9.0 1030 ------- null} r -t 1.19523 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2069 -a 0 -x {9.0 10.0 1039 ------- null} + -t 1.19523 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2069 -a 0 -x {9.0 10.0 1039 ------- null} h -t 1.19523 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2069 -a 0 -x {9.0 10.0 1039 ------- null} r -t 1.19531 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2055 -a 0 -x {9.0 10.0 1032 ------- null} + -t 1.19531 -s 10 -d 7 -p ack -e 40 -c 0 -i 2074 -a 0 -x {10.0 9.0 1032 ------- null} - -t 1.19531 -s 10 -d 7 -p ack -e 40 -c 0 -i 2074 -a 0 -x {10.0 9.0 1032 ------- null} h -t 1.19531 -s 10 -d 7 -p ack -e 40 -c 0 -i 2074 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.19578 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2061 -a 0 -x {9.0 10.0 1035 ------- null} - -t 1.19578 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2061 -a 0 -x {9.0 10.0 1035 ------- null} h -t 1.19578 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2061 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.19589 -s 0 -d 9 -p ack -e 40 -c 0 -i 2064 -a 0 -x {10.0 9.0 1027 ------- null} + -t 1.19589 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2075 -a 0 -x {9.0 10.0 1042 ------- null} - -t 1.19589 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2075 -a 0 -x {9.0 10.0 1042 ------- null} h -t 1.19589 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2075 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.19594 -s 0 -d 9 -p ack -e 40 -c 0 -i 2068 -a 0 -x {10.0 9.0 1029 ------- null} - -t 1.19594 -s 0 -d 9 -p ack -e 40 -c 0 -i 2068 -a 0 -x {10.0 9.0 1029 ------- null} h -t 1.19594 -s 0 -d 9 -p ack -e 40 -c 0 -i 2068 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.19626 -s 10 -d 7 -p ack -e 40 -c 0 -i 2072 -a 0 -x {10.0 9.0 1031 ------- null} + -t 1.19626 -s 7 -d 0 -p ack -e 40 -c 0 -i 2072 -a 0 -x {10.0 9.0 1031 ------- null} h -t 1.19626 -s 7 -d 8 -p ack -e 40 -c 0 -i 2072 -a 0 -x {10.0 9.0 1031 ------- null} r -t 1.19638 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2071 -a 0 -x {9.0 10.0 1040 ------- null} + -t 1.19638 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2071 -a 0 -x {9.0 10.0 1040 ------- null} h -t 1.19638 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2071 -a 0 -x {9.0 10.0 1040 ------- null} r -t 1.1964 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2057 -a 0 -x {9.0 10.0 1033 ------- null} + -t 1.1964 -s 10 -d 7 -p ack -e 40 -c 0 -i 2076 -a 0 -x {10.0 9.0 1033 ------- null} - -t 1.1964 -s 10 -d 7 -p ack -e 40 -c 0 -i 2076 -a 0 -x {10.0 9.0 1033 ------- null} h -t 1.1964 -s 10 -d 7 -p ack -e 40 -c 0 -i 2076 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.19686 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2063 -a 0 -x {9.0 10.0 1036 ------- null} - -t 1.19686 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2063 -a 0 -x {9.0 10.0 1036 ------- null} h -t 1.19686 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2063 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.19696 -s 0 -d 9 -p ack -e 40 -c 0 -i 2066 -a 0 -x {10.0 9.0 1028 ------- null} + -t 1.19696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2077 -a 0 -x {9.0 10.0 1043 ------- null} - -t 1.19696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2077 -a 0 -x {9.0 10.0 1043 ------- null} h -t 1.19696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2077 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.19704 -s 0 -d 9 -p ack -e 40 -c 0 -i 2070 -a 0 -x {10.0 9.0 1030 ------- null} - -t 1.19704 -s 0 -d 9 -p ack -e 40 -c 0 -i 2070 -a 0 -x {10.0 9.0 1030 ------- null} h -t 1.19704 -s 0 -d 9 -p ack -e 40 -c 0 -i 2070 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.19734 -s 10 -d 7 -p ack -e 40 -c 0 -i 2074 -a 0 -x {10.0 9.0 1032 ------- null} + -t 1.19734 -s 7 -d 0 -p ack -e 40 -c 0 -i 2074 -a 0 -x {10.0 9.0 1032 ------- null} h -t 1.19734 -s 7 -d 8 -p ack -e 40 -c 0 -i 2074 -a 0 -x {10.0 9.0 1032 ------- null} r -t 1.19746 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2073 -a 0 -x {9.0 10.0 1041 ------- null} + -t 1.19746 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2073 -a 0 -x {9.0 10.0 1041 ------- null} h -t 1.19746 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2073 -a 0 -x {9.0 10.0 1041 ------- null} r -t 1.19749 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2059 -a 0 -x {9.0 10.0 1034 ------- null} + -t 1.19749 -s 10 -d 7 -p ack -e 40 -c 0 -i 2078 -a 0 -x {10.0 9.0 1034 ------- null} - -t 1.19749 -s 10 -d 7 -p ack -e 40 -c 0 -i 2078 -a 0 -x {10.0 9.0 1034 ------- null} h -t 1.19749 -s 10 -d 7 -p ack -e 40 -c 0 -i 2078 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.19795 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2065 -a 0 -x {9.0 10.0 1037 ------- null} - -t 1.19795 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2065 -a 0 -x {9.0 10.0 1037 ------- null} h -t 1.19795 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2065 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.19797 -s 0 -d 9 -p ack -e 40 -c 0 -i 2068 -a 0 -x {10.0 9.0 1029 ------- null} + -t 1.19797 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2079 -a 0 -x {9.0 10.0 1044 ------- null} - -t 1.19797 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2079 -a 0 -x {9.0 10.0 1044 ------- null} h -t 1.19797 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2079 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.19826 -s 0 -d 9 -p ack -e 40 -c 0 -i 2072 -a 0 -x {10.0 9.0 1031 ------- null} - -t 1.19826 -s 0 -d 9 -p ack -e 40 -c 0 -i 2072 -a 0 -x {10.0 9.0 1031 ------- null} h -t 1.19826 -s 0 -d 9 -p ack -e 40 -c 0 -i 2072 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.19843 -s 10 -d 7 -p ack -e 40 -c 0 -i 2076 -a 0 -x {10.0 9.0 1033 ------- null} + -t 1.19843 -s 7 -d 0 -p ack -e 40 -c 0 -i 2076 -a 0 -x {10.0 9.0 1033 ------- null} h -t 1.19843 -s 7 -d 8 -p ack -e 40 -c 0 -i 2076 -a 0 -x {10.0 9.0 1033 ------- null} r -t 1.19858 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2061 -a 0 -x {9.0 10.0 1035 ------- null} + -t 1.19858 -s 10 -d 7 -p ack -e 40 -c 0 -i 2080 -a 0 -x {10.0 9.0 1035 ------- null} - -t 1.19858 -s 10 -d 7 -p ack -e 40 -c 0 -i 2080 -a 0 -x {10.0 9.0 1035 ------- null} h -t 1.19858 -s 10 -d 7 -p ack -e 40 -c 0 -i 2080 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.19869 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2075 -a 0 -x {9.0 10.0 1042 ------- null} + -t 1.19869 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2075 -a 0 -x {9.0 10.0 1042 ------- null} h -t 1.19869 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2075 -a 0 -x {9.0 10.0 1042 ------- null} r -t 1.19907 -s 0 -d 9 -p ack -e 40 -c 0 -i 2070 -a 0 -x {10.0 9.0 1030 ------- null} + -t 1.19907 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2081 -a 0 -x {9.0 10.0 1045 ------- null} - -t 1.19907 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2081 -a 0 -x {9.0 10.0 1045 ------- null} h -t 1.19907 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2081 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.19909 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2067 -a 0 -x {9.0 10.0 1038 ------- null} - -t 1.19909 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2067 -a 0 -x {9.0 10.0 1038 ------- null} h -t 1.19909 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2067 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.1992 -s 0 -d 9 -p ack -e 40 -c 0 -i 2074 -a 0 -x {10.0 9.0 1032 ------- null} - -t 1.1992 -s 0 -d 9 -p ack -e 40 -c 0 -i 2074 -a 0 -x {10.0 9.0 1032 ------- null} h -t 1.1992 -s 0 -d 9 -p ack -e 40 -c 0 -i 2074 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.19952 -s 10 -d 7 -p ack -e 40 -c 0 -i 2078 -a 0 -x {10.0 9.0 1034 ------- null} + -t 1.19952 -s 7 -d 0 -p ack -e 40 -c 0 -i 2078 -a 0 -x {10.0 9.0 1034 ------- null} h -t 1.19952 -s 7 -d 8 -p ack -e 40 -c 0 -i 2078 -a 0 -x {10.0 9.0 1034 ------- null} r -t 1.19966 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2063 -a 0 -x {9.0 10.0 1036 ------- null} + -t 1.19966 -s 10 -d 7 -p ack -e 40 -c 0 -i 2082 -a 0 -x {10.0 9.0 1036 ------- null} - -t 1.19966 -s 10 -d 7 -p ack -e 40 -c 0 -i 2082 -a 0 -x {10.0 9.0 1036 ------- null} h -t 1.19966 -s 10 -d 7 -p ack -e 40 -c 0 -i 2082 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.19976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2077 -a 0 -x {9.0 10.0 1043 ------- null} + -t 1.19976 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2077 -a 0 -x {9.0 10.0 1043 ------- null} h -t 1.19976 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2077 -a 0 -x {9.0 10.0 1043 ------- null} + -t 1.20018 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2069 -a 0 -x {9.0 10.0 1039 ------- null} - -t 1.20018 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2069 -a 0 -x {9.0 10.0 1039 ------- null} h -t 1.20018 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2069 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.20029 -s 0 -d 9 -p ack -e 40 -c 0 -i 2072 -a 0 -x {10.0 9.0 1031 ------- null} + -t 1.20029 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2083 -a 0 -x {9.0 10.0 1046 ------- null} - -t 1.20029 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2083 -a 0 -x {9.0 10.0 1046 ------- null} h -t 1.20029 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2083 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.20034 -s 0 -d 9 -p ack -e 40 -c 0 -i 2076 -a 0 -x {10.0 9.0 1033 ------- null} - -t 1.20034 -s 0 -d 9 -p ack -e 40 -c 0 -i 2076 -a 0 -x {10.0 9.0 1033 ------- null} h -t 1.20034 -s 0 -d 9 -p ack -e 40 -c 0 -i 2076 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.20061 -s 10 -d 7 -p ack -e 40 -c 0 -i 2080 -a 0 -x {10.0 9.0 1035 ------- null} + -t 1.20061 -s 7 -d 0 -p ack -e 40 -c 0 -i 2080 -a 0 -x {10.0 9.0 1035 ------- null} h -t 1.20061 -s 7 -d 8 -p ack -e 40 -c 0 -i 2080 -a 0 -x {10.0 9.0 1035 ------- null} r -t 1.20075 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2065 -a 0 -x {9.0 10.0 1037 ------- null} + -t 1.20075 -s 10 -d 7 -p ack -e 40 -c 0 -i 2084 -a 0 -x {10.0 9.0 1037 ------- null} - -t 1.20075 -s 10 -d 7 -p ack -e 40 -c 0 -i 2084 -a 0 -x {10.0 9.0 1037 ------- null} h -t 1.20075 -s 10 -d 7 -p ack -e 40 -c 0 -i 2084 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.20077 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2079 -a 0 -x {9.0 10.0 1044 ------- null} + -t 1.20077 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2079 -a 0 -x {9.0 10.0 1044 ------- null} h -t 1.20077 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2079 -a 0 -x {9.0 10.0 1044 ------- null} r -t 1.20123 -s 0 -d 9 -p ack -e 40 -c 0 -i 2074 -a 0 -x {10.0 9.0 1032 ------- null} + -t 1.20123 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2085 -a 0 -x {9.0 10.0 1047 ------- null} - -t 1.20123 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2085 -a 0 -x {9.0 10.0 1047 ------- null} h -t 1.20123 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2085 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.20126 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2071 -a 0 -x {9.0 10.0 1040 ------- null} - -t 1.20126 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2071 -a 0 -x {9.0 10.0 1040 ------- null} h -t 1.20126 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2071 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.20134 -s 0 -d 9 -p ack -e 40 -c 0 -i 2078 -a 0 -x {10.0 9.0 1034 ------- null} - -t 1.20134 -s 0 -d 9 -p ack -e 40 -c 0 -i 2078 -a 0 -x {10.0 9.0 1034 ------- null} h -t 1.20134 -s 0 -d 9 -p ack -e 40 -c 0 -i 2078 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.2017 -s 10 -d 7 -p ack -e 40 -c 0 -i 2082 -a 0 -x {10.0 9.0 1036 ------- null} + -t 1.2017 -s 7 -d 0 -p ack -e 40 -c 0 -i 2082 -a 0 -x {10.0 9.0 1036 ------- null} h -t 1.2017 -s 7 -d 8 -p ack -e 40 -c 0 -i 2082 -a 0 -x {10.0 9.0 1036 ------- null} r -t 1.20187 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2081 -a 0 -x {9.0 10.0 1045 ------- null} + -t 1.20187 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2081 -a 0 -x {9.0 10.0 1045 ------- null} h -t 1.20187 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2081 -a 0 -x {9.0 10.0 1045 ------- null} r -t 1.20189 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2067 -a 0 -x {9.0 10.0 1038 ------- null} + -t 1.20189 -s 10 -d 7 -p ack -e 40 -c 0 -i 2086 -a 0 -x {10.0 9.0 1038 ------- null} - -t 1.20189 -s 10 -d 7 -p ack -e 40 -c 0 -i 2086 -a 0 -x {10.0 9.0 1038 ------- null} h -t 1.20189 -s 10 -d 7 -p ack -e 40 -c 0 -i 2086 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.20235 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2073 -a 0 -x {9.0 10.0 1041 ------- null} - -t 1.20235 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2073 -a 0 -x {9.0 10.0 1041 ------- null} h -t 1.20235 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2073 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.20237 -s 0 -d 9 -p ack -e 40 -c 0 -i 2076 -a 0 -x {10.0 9.0 1033 ------- null} + -t 1.20237 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2087 -a 0 -x {9.0 10.0 1048 ------- null} - -t 1.20237 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2087 -a 0 -x {9.0 10.0 1048 ------- null} h -t 1.20237 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2087 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.20246 -s 0 -d 9 -p ack -e 40 -c 0 -i 2080 -a 0 -x {10.0 9.0 1035 ------- null} - -t 1.20246 -s 0 -d 9 -p ack -e 40 -c 0 -i 2080 -a 0 -x {10.0 9.0 1035 ------- null} h -t 1.20246 -s 0 -d 9 -p ack -e 40 -c 0 -i 2080 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.20278 -s 10 -d 7 -p ack -e 40 -c 0 -i 2084 -a 0 -x {10.0 9.0 1037 ------- null} + -t 1.20278 -s 7 -d 0 -p ack -e 40 -c 0 -i 2084 -a 0 -x {10.0 9.0 1037 ------- null} h -t 1.20278 -s 7 -d 8 -p ack -e 40 -c 0 -i 2084 -a 0 -x {10.0 9.0 1037 ------- null} r -t 1.20298 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2069 -a 0 -x {9.0 10.0 1039 ------- null} + -t 1.20298 -s 10 -d 7 -p ack -e 40 -c 0 -i 2088 -a 0 -x {10.0 9.0 1039 ------- null} - -t 1.20298 -s 10 -d 7 -p ack -e 40 -c 0 -i 2088 -a 0 -x {10.0 9.0 1039 ------- null} h -t 1.20298 -s 10 -d 7 -p ack -e 40 -c 0 -i 2088 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.20309 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2083 -a 0 -x {9.0 10.0 1046 ------- null} + -t 1.20309 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2083 -a 0 -x {9.0 10.0 1046 ------- null} h -t 1.20309 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2083 -a 0 -x {9.0 10.0 1046 ------- null} r -t 1.20338 -s 0 -d 9 -p ack -e 40 -c 0 -i 2078 -a 0 -x {10.0 9.0 1034 ------- null} + -t 1.20338 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2089 -a 0 -x {9.0 10.0 1049 ------- null} - -t 1.20338 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2089 -a 0 -x {9.0 10.0 1049 ------- null} h -t 1.20338 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2089 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.20344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2075 -a 0 -x {9.0 10.0 1042 ------- null} - -t 1.20344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2075 -a 0 -x {9.0 10.0 1042 ------- null} h -t 1.20344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2075 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.20365 -s 0 -d 9 -p ack -e 40 -c 0 -i 2082 -a 0 -x {10.0 9.0 1036 ------- null} - -t 1.20365 -s 0 -d 9 -p ack -e 40 -c 0 -i 2082 -a 0 -x {10.0 9.0 1036 ------- null} h -t 1.20365 -s 0 -d 9 -p ack -e 40 -c 0 -i 2082 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.20392 -s 10 -d 7 -p ack -e 40 -c 0 -i 2086 -a 0 -x {10.0 9.0 1038 ------- null} + -t 1.20392 -s 7 -d 0 -p ack -e 40 -c 0 -i 2086 -a 0 -x {10.0 9.0 1038 ------- null} h -t 1.20392 -s 7 -d 8 -p ack -e 40 -c 0 -i 2086 -a 0 -x {10.0 9.0 1038 ------- null} r -t 1.20403 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2085 -a 0 -x {9.0 10.0 1047 ------- null} + -t 1.20403 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2085 -a 0 -x {9.0 10.0 1047 ------- null} h -t 1.20403 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2085 -a 0 -x {9.0 10.0 1047 ------- null} r -t 1.20406 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2071 -a 0 -x {9.0 10.0 1040 ------- null} + -t 1.20406 -s 10 -d 7 -p ack -e 40 -c 0 -i 2090 -a 0 -x {10.0 9.0 1040 ------- null} - -t 1.20406 -s 10 -d 7 -p ack -e 40 -c 0 -i 2090 -a 0 -x {10.0 9.0 1040 ------- null} h -t 1.20406 -s 10 -d 7 -p ack -e 40 -c 0 -i 2090 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.2045 -s 0 -d 9 -p ack -e 40 -c 0 -i 2080 -a 0 -x {10.0 9.0 1035 ------- null} + -t 1.2045 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2091 -a 0 -x {9.0 10.0 1050 ------- null} - -t 1.2045 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2091 -a 0 -x {9.0 10.0 1050 ------- null} h -t 1.2045 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2091 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.20453 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2077 -a 0 -x {9.0 10.0 1043 ------- null} - -t 1.20453 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2077 -a 0 -x {9.0 10.0 1043 ------- null} h -t 1.20453 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2077 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.20474 -s 0 -d 9 -p ack -e 40 -c 0 -i 2084 -a 0 -x {10.0 9.0 1037 ------- null} - -t 1.20474 -s 0 -d 9 -p ack -e 40 -c 0 -i 2084 -a 0 -x {10.0 9.0 1037 ------- null} h -t 1.20474 -s 0 -d 9 -p ack -e 40 -c 0 -i 2084 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.20501 -s 10 -d 7 -p ack -e 40 -c 0 -i 2088 -a 0 -x {10.0 9.0 1039 ------- null} + -t 1.20501 -s 7 -d 0 -p ack -e 40 -c 0 -i 2088 -a 0 -x {10.0 9.0 1039 ------- null} h -t 1.20501 -s 7 -d 8 -p ack -e 40 -c 0 -i 2088 -a 0 -x {10.0 9.0 1039 ------- null} r -t 1.20515 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2073 -a 0 -x {9.0 10.0 1041 ------- null} + -t 1.20515 -s 10 -d 7 -p ack -e 40 -c 0 -i 2092 -a 0 -x {10.0 9.0 1041 ------- null} - -t 1.20515 -s 10 -d 7 -p ack -e 40 -c 0 -i 2092 -a 0 -x {10.0 9.0 1041 ------- null} h -t 1.20515 -s 10 -d 7 -p ack -e 40 -c 0 -i 2092 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.20517 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2087 -a 0 -x {9.0 10.0 1048 ------- null} + -t 1.20517 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2087 -a 0 -x {9.0 10.0 1048 ------- null} h -t 1.20517 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2087 -a 0 -x {9.0 10.0 1048 ------- null} + -t 1.20562 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2079 -a 0 -x {9.0 10.0 1044 ------- null} - -t 1.20562 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2079 -a 0 -x {9.0 10.0 1044 ------- null} h -t 1.20562 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2079 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.20568 -s 0 -d 9 -p ack -e 40 -c 0 -i 2082 -a 0 -x {10.0 9.0 1036 ------- null} + -t 1.20568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2093 -a 0 -x {9.0 10.0 1051 ------- null} - -t 1.20568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2093 -a 0 -x {9.0 10.0 1051 ------- null} h -t 1.20568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2093 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.20576 -s 0 -d 9 -p ack -e 40 -c 0 -i 2086 -a 0 -x {10.0 9.0 1038 ------- null} - -t 1.20576 -s 0 -d 9 -p ack -e 40 -c 0 -i 2086 -a 0 -x {10.0 9.0 1038 ------- null} h -t 1.20576 -s 0 -d 9 -p ack -e 40 -c 0 -i 2086 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.2061 -s 10 -d 7 -p ack -e 40 -c 0 -i 2090 -a 0 -x {10.0 9.0 1040 ------- null} + -t 1.2061 -s 7 -d 0 -p ack -e 40 -c 0 -i 2090 -a 0 -x {10.0 9.0 1040 ------- null} h -t 1.2061 -s 7 -d 8 -p ack -e 40 -c 0 -i 2090 -a 0 -x {10.0 9.0 1040 ------- null} r -t 1.20618 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2089 -a 0 -x {9.0 10.0 1049 ------- null} + -t 1.20618 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2089 -a 0 -x {9.0 10.0 1049 ------- null} h -t 1.20618 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2089 -a 0 -x {9.0 10.0 1049 ------- null} r -t 1.20624 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2075 -a 0 -x {9.0 10.0 1042 ------- null} + -t 1.20624 -s 10 -d 7 -p ack -e 40 -c 0 -i 2094 -a 0 -x {10.0 9.0 1042 ------- null} - -t 1.20624 -s 10 -d 7 -p ack -e 40 -c 0 -i 2094 -a 0 -x {10.0 9.0 1042 ------- null} h -t 1.20624 -s 10 -d 7 -p ack -e 40 -c 0 -i 2094 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.2067 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2081 -a 0 -x {9.0 10.0 1045 ------- null} - -t 1.2067 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2081 -a 0 -x {9.0 10.0 1045 ------- null} h -t 1.2067 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2081 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.20677 -s 0 -d 9 -p ack -e 40 -c 0 -i 2084 -a 0 -x {10.0 9.0 1037 ------- null} + -t 1.20677 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2095 -a 0 -x {9.0 10.0 1052 ------- null} - -t 1.20677 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2095 -a 0 -x {9.0 10.0 1052 ------- null} h -t 1.20677 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2095 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.20691 -s 0 -d 9 -p ack -e 40 -c 0 -i 2088 -a 0 -x {10.0 9.0 1039 ------- null} - -t 1.20691 -s 0 -d 9 -p ack -e 40 -c 0 -i 2088 -a 0 -x {10.0 9.0 1039 ------- null} h -t 1.20691 -s 0 -d 9 -p ack -e 40 -c 0 -i 2088 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.20718 -s 10 -d 7 -p ack -e 40 -c 0 -i 2092 -a 0 -x {10.0 9.0 1041 ------- null} + -t 1.20718 -s 7 -d 0 -p ack -e 40 -c 0 -i 2092 -a 0 -x {10.0 9.0 1041 ------- null} h -t 1.20718 -s 7 -d 8 -p ack -e 40 -c 0 -i 2092 -a 0 -x {10.0 9.0 1041 ------- null} r -t 1.2073 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2091 -a 0 -x {9.0 10.0 1050 ------- null} + -t 1.2073 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2091 -a 0 -x {9.0 10.0 1050 ------- null} h -t 1.2073 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2091 -a 0 -x {9.0 10.0 1050 ------- null} r -t 1.20733 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2077 -a 0 -x {9.0 10.0 1043 ------- null} + -t 1.20733 -s 10 -d 7 -p ack -e 40 -c 0 -i 2096 -a 0 -x {10.0 9.0 1043 ------- null} - -t 1.20733 -s 10 -d 7 -p ack -e 40 -c 0 -i 2096 -a 0 -x {10.0 9.0 1043 ------- null} h -t 1.20733 -s 10 -d 7 -p ack -e 40 -c 0 -i 2096 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.20779 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2083 -a 0 -x {9.0 10.0 1046 ------- null} - -t 1.20779 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2083 -a 0 -x {9.0 10.0 1046 ------- null} h -t 1.20779 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2083 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.20779 -s 0 -d 9 -p ack -e 40 -c 0 -i 2086 -a 0 -x {10.0 9.0 1038 ------- null} + -t 1.20779 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2097 -a 0 -x {9.0 10.0 1053 ------- null} - -t 1.20779 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2097 -a 0 -x {9.0 10.0 1053 ------- null} h -t 1.20779 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2097 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.20786 -s 0 -d 9 -p ack -e 40 -c 0 -i 2090 -a 0 -x {10.0 9.0 1040 ------- null} - -t 1.20786 -s 0 -d 9 -p ack -e 40 -c 0 -i 2090 -a 0 -x {10.0 9.0 1040 ------- null} h -t 1.20786 -s 0 -d 9 -p ack -e 40 -c 0 -i 2090 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.20827 -s 10 -d 7 -p ack -e 40 -c 0 -i 2094 -a 0 -x {10.0 9.0 1042 ------- null} + -t 1.20827 -s 7 -d 0 -p ack -e 40 -c 0 -i 2094 -a 0 -x {10.0 9.0 1042 ------- null} h -t 1.20827 -s 7 -d 8 -p ack -e 40 -c 0 -i 2094 -a 0 -x {10.0 9.0 1042 ------- null} r -t 1.20842 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2079 -a 0 -x {9.0 10.0 1044 ------- null} + -t 1.20842 -s 10 -d 7 -p ack -e 40 -c 0 -i 2098 -a 0 -x {10.0 9.0 1044 ------- null} - -t 1.20842 -s 10 -d 7 -p ack -e 40 -c 0 -i 2098 -a 0 -x {10.0 9.0 1044 ------- null} h -t 1.20842 -s 10 -d 7 -p ack -e 40 -c 0 -i 2098 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.20848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2093 -a 0 -x {9.0 10.0 1051 ------- null} + -t 1.20848 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2093 -a 0 -x {9.0 10.0 1051 ------- null} h -t 1.20848 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2093 -a 0 -x {9.0 10.0 1051 ------- null} + -t 1.20888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2085 -a 0 -x {9.0 10.0 1047 ------- null} - -t 1.20888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2085 -a 0 -x {9.0 10.0 1047 ------- null} h -t 1.20888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2085 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.20894 -s 0 -d 9 -p ack -e 40 -c 0 -i 2088 -a 0 -x {10.0 9.0 1039 ------- null} + -t 1.20894 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2099 -a 0 -x {9.0 10.0 1054 ------- null} - -t 1.20894 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2099 -a 0 -x {9.0 10.0 1054 ------- null} h -t 1.20894 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2099 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.20909 -s 0 -d 9 -p ack -e 40 -c 0 -i 2092 -a 0 -x {10.0 9.0 1041 ------- null} - -t 1.20909 -s 0 -d 9 -p ack -e 40 -c 0 -i 2092 -a 0 -x {10.0 9.0 1041 ------- null} h -t 1.20909 -s 0 -d 9 -p ack -e 40 -c 0 -i 2092 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.20936 -s 10 -d 7 -p ack -e 40 -c 0 -i 2096 -a 0 -x {10.0 9.0 1043 ------- null} + -t 1.20936 -s 7 -d 0 -p ack -e 40 -c 0 -i 2096 -a 0 -x {10.0 9.0 1043 ------- null} h -t 1.20936 -s 7 -d 8 -p ack -e 40 -c 0 -i 2096 -a 0 -x {10.0 9.0 1043 ------- null} r -t 1.2095 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2081 -a 0 -x {9.0 10.0 1045 ------- null} + -t 1.2095 -s 10 -d 7 -p ack -e 40 -c 0 -i 2100 -a 0 -x {10.0 9.0 1045 ------- null} - -t 1.2095 -s 10 -d 7 -p ack -e 40 -c 0 -i 2100 -a 0 -x {10.0 9.0 1045 ------- null} h -t 1.2095 -s 10 -d 7 -p ack -e 40 -c 0 -i 2100 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.20957 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2095 -a 0 -x {9.0 10.0 1052 ------- null} + -t 1.20957 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2095 -a 0 -x {9.0 10.0 1052 ------- null} h -t 1.20957 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2095 -a 0 -x {9.0 10.0 1052 ------- null} r -t 1.20989 -s 0 -d 9 -p ack -e 40 -c 0 -i 2090 -a 0 -x {10.0 9.0 1040 ------- null} + -t 1.20989 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2101 -a 0 -x {9.0 10.0 1055 ------- null} - -t 1.20989 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2101 -a 0 -x {9.0 10.0 1055 ------- null} h -t 1.20989 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2101 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.20997 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2087 -a 0 -x {9.0 10.0 1048 ------- null} - -t 1.20997 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2087 -a 0 -x {9.0 10.0 1048 ------- null} h -t 1.20997 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2087 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.21011 -s 0 -d 9 -p ack -e 40 -c 0 -i 2094 -a 0 -x {10.0 9.0 1042 ------- null} - -t 1.21011 -s 0 -d 9 -p ack -e 40 -c 0 -i 2094 -a 0 -x {10.0 9.0 1042 ------- null} h -t 1.21011 -s 0 -d 9 -p ack -e 40 -c 0 -i 2094 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.21045 -s 10 -d 7 -p ack -e 40 -c 0 -i 2098 -a 0 -x {10.0 9.0 1044 ------- null} + -t 1.21045 -s 7 -d 0 -p ack -e 40 -c 0 -i 2098 -a 0 -x {10.0 9.0 1044 ------- null} h -t 1.21045 -s 7 -d 8 -p ack -e 40 -c 0 -i 2098 -a 0 -x {10.0 9.0 1044 ------- null} r -t 1.21059 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2083 -a 0 -x {9.0 10.0 1046 ------- null} + -t 1.21059 -s 10 -d 7 -p ack -e 40 -c 0 -i 2102 -a 0 -x {10.0 9.0 1046 ------- null} - -t 1.21059 -s 10 -d 7 -p ack -e 40 -c 0 -i 2102 -a 0 -x {10.0 9.0 1046 ------- null} h -t 1.21059 -s 10 -d 7 -p ack -e 40 -c 0 -i 2102 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.21059 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2097 -a 0 -x {9.0 10.0 1053 ------- null} + -t 1.21059 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2097 -a 0 -x {9.0 10.0 1053 ------- null} h -t 1.21059 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2097 -a 0 -x {9.0 10.0 1053 ------- null} + -t 1.21106 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2089 -a 0 -x {9.0 10.0 1049 ------- null} - -t 1.21106 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2089 -a 0 -x {9.0 10.0 1049 ------- null} h -t 1.21106 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2089 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.21112 -s 0 -d 9 -p ack -e 40 -c 0 -i 2092 -a 0 -x {10.0 9.0 1041 ------- null} + -t 1.21112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2103 -a 0 -x {9.0 10.0 1056 ------- null} - -t 1.21112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2103 -a 0 -x {9.0 10.0 1056 ------- null} h -t 1.21112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2103 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.21128 -s 0 -d 9 -p ack -e 40 -c 0 -i 2096 -a 0 -x {10.0 9.0 1043 ------- null} - -t 1.21128 -s 0 -d 9 -p ack -e 40 -c 0 -i 2096 -a 0 -x {10.0 9.0 1043 ------- null} h -t 1.21128 -s 0 -d 9 -p ack -e 40 -c 0 -i 2096 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.21154 -s 10 -d 7 -p ack -e 40 -c 0 -i 2100 -a 0 -x {10.0 9.0 1045 ------- null} + -t 1.21154 -s 7 -d 0 -p ack -e 40 -c 0 -i 2100 -a 0 -x {10.0 9.0 1045 ------- null} h -t 1.21154 -s 7 -d 8 -p ack -e 40 -c 0 -i 2100 -a 0 -x {10.0 9.0 1045 ------- null} r -t 1.21168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2085 -a 0 -x {9.0 10.0 1047 ------- null} + -t 1.21168 -s 10 -d 7 -p ack -e 40 -c 0 -i 2104 -a 0 -x {10.0 9.0 1047 ------- null} - -t 1.21168 -s 10 -d 7 -p ack -e 40 -c 0 -i 2104 -a 0 -x {10.0 9.0 1047 ------- null} h -t 1.21168 -s 10 -d 7 -p ack -e 40 -c 0 -i 2104 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.21174 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2099 -a 0 -x {9.0 10.0 1054 ------- null} + -t 1.21174 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2099 -a 0 -x {9.0 10.0 1054 ------- null} h -t 1.21174 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2099 -a 0 -x {9.0 10.0 1054 ------- null} + -t 1.21214 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2091 -a 0 -x {9.0 10.0 1050 ------- null} - -t 1.21214 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2091 -a 0 -x {9.0 10.0 1050 ------- null} h -t 1.21214 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2091 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.21214 -s 0 -d 9 -p ack -e 40 -c 0 -i 2094 -a 0 -x {10.0 9.0 1042 ------- null} + -t 1.21214 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2105 -a 0 -x {9.0 10.0 1057 ------- null} - -t 1.21214 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2105 -a 0 -x {9.0 10.0 1057 ------- null} h -t 1.21214 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2105 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.21226 -s 0 -d 9 -p ack -e 40 -c 0 -i 2098 -a 0 -x {10.0 9.0 1044 ------- null} - -t 1.21226 -s 0 -d 9 -p ack -e 40 -c 0 -i 2098 -a 0 -x {10.0 9.0 1044 ------- null} h -t 1.21226 -s 0 -d 9 -p ack -e 40 -c 0 -i 2098 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.21262 -s 10 -d 7 -p ack -e 40 -c 0 -i 2102 -a 0 -x {10.0 9.0 1046 ------- null} + -t 1.21262 -s 7 -d 0 -p ack -e 40 -c 0 -i 2102 -a 0 -x {10.0 9.0 1046 ------- null} h -t 1.21262 -s 7 -d 8 -p ack -e 40 -c 0 -i 2102 -a 0 -x {10.0 9.0 1046 ------- null} r -t 1.21269 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2101 -a 0 -x {9.0 10.0 1055 ------- null} + -t 1.21269 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2101 -a 0 -x {9.0 10.0 1055 ------- null} h -t 1.21269 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2101 -a 0 -x {9.0 10.0 1055 ------- null} r -t 1.21277 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2087 -a 0 -x {9.0 10.0 1048 ------- null} + -t 1.21277 -s 10 -d 7 -p ack -e 40 -c 0 -i 2106 -a 0 -x {10.0 9.0 1048 ------- null} - -t 1.21277 -s 10 -d 7 -p ack -e 40 -c 0 -i 2106 -a 0 -x {10.0 9.0 1048 ------- null} h -t 1.21277 -s 10 -d 7 -p ack -e 40 -c 0 -i 2106 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.21323 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2093 -a 0 -x {9.0 10.0 1051 ------- null} - -t 1.21323 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2093 -a 0 -x {9.0 10.0 1051 ------- null} h -t 1.21323 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2093 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.21331 -s 0 -d 9 -p ack -e 40 -c 0 -i 2096 -a 0 -x {10.0 9.0 1043 ------- null} + -t 1.21331 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2107 -a 0 -x {9.0 10.0 1058 ------- null} - -t 1.21331 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2107 -a 0 -x {9.0 10.0 1058 ------- null} h -t 1.21331 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2107 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.21334 -s 0 -d 9 -p ack -e 40 -c 0 -i 2100 -a 0 -x {10.0 9.0 1045 ------- null} - -t 1.21334 -s 0 -d 9 -p ack -e 40 -c 0 -i 2100 -a 0 -x {10.0 9.0 1045 ------- null} h -t 1.21334 -s 0 -d 9 -p ack -e 40 -c 0 -i 2100 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.21371 -s 10 -d 7 -p ack -e 40 -c 0 -i 2104 -a 0 -x {10.0 9.0 1047 ------- null} + -t 1.21371 -s 7 -d 0 -p ack -e 40 -c 0 -i 2104 -a 0 -x {10.0 9.0 1047 ------- null} h -t 1.21371 -s 7 -d 8 -p ack -e 40 -c 0 -i 2104 -a 0 -x {10.0 9.0 1047 ------- null} r -t 1.21386 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2089 -a 0 -x {9.0 10.0 1049 ------- null} + -t 1.21386 -s 10 -d 7 -p ack -e 40 -c 0 -i 2108 -a 0 -x {10.0 9.0 1049 ------- null} - -t 1.21386 -s 10 -d 7 -p ack -e 40 -c 0 -i 2108 -a 0 -x {10.0 9.0 1049 ------- null} h -t 1.21386 -s 10 -d 7 -p ack -e 40 -c 0 -i 2108 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.21392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2103 -a 0 -x {9.0 10.0 1056 ------- null} + -t 1.21392 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2103 -a 0 -x {9.0 10.0 1056 ------- null} h -t 1.21392 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2103 -a 0 -x {9.0 10.0 1056 ------- null} r -t 1.21429 -s 0 -d 9 -p ack -e 40 -c 0 -i 2098 -a 0 -x {10.0 9.0 1044 ------- null} + -t 1.21429 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2109 -a 0 -x {9.0 10.0 1059 ------- null} - -t 1.21429 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2109 -a 0 -x {9.0 10.0 1059 ------- null} h -t 1.21429 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2109 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.21432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2095 -a 0 -x {9.0 10.0 1052 ------- null} - -t 1.21432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2095 -a 0 -x {9.0 10.0 1052 ------- null} h -t 1.21432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2095 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.21451 -s 0 -d 9 -p ack -e 40 -c 0 -i 2102 -a 0 -x {10.0 9.0 1046 ------- null} - -t 1.21451 -s 0 -d 9 -p ack -e 40 -c 0 -i 2102 -a 0 -x {10.0 9.0 1046 ------- null} h -t 1.21451 -s 0 -d 9 -p ack -e 40 -c 0 -i 2102 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.2148 -s 10 -d 7 -p ack -e 40 -c 0 -i 2106 -a 0 -x {10.0 9.0 1048 ------- null} + -t 1.2148 -s 7 -d 0 -p ack -e 40 -c 0 -i 2106 -a 0 -x {10.0 9.0 1048 ------- null} h -t 1.2148 -s 7 -d 8 -p ack -e 40 -c 0 -i 2106 -a 0 -x {10.0 9.0 1048 ------- null} r -t 1.21494 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2091 -a 0 -x {9.0 10.0 1050 ------- null} + -t 1.21494 -s 10 -d 7 -p ack -e 40 -c 0 -i 2110 -a 0 -x {10.0 9.0 1050 ------- null} - -t 1.21494 -s 10 -d 7 -p ack -e 40 -c 0 -i 2110 -a 0 -x {10.0 9.0 1050 ------- null} h -t 1.21494 -s 10 -d 7 -p ack -e 40 -c 0 -i 2110 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.21494 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2105 -a 0 -x {9.0 10.0 1057 ------- null} + -t 1.21494 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2105 -a 0 -x {9.0 10.0 1057 ------- null} h -t 1.21494 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2105 -a 0 -x {9.0 10.0 1057 ------- null} r -t 1.21538 -s 0 -d 9 -p ack -e 40 -c 0 -i 2100 -a 0 -x {10.0 9.0 1045 ------- null} + -t 1.21538 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2111 -a 0 -x {9.0 10.0 1060 ------- null} - -t 1.21538 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2111 -a 0 -x {9.0 10.0 1060 ------- null} h -t 1.21538 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2111 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.21541 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2097 -a 0 -x {9.0 10.0 1053 ------- null} - -t 1.21541 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2097 -a 0 -x {9.0 10.0 1053 ------- null} h -t 1.21541 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2097 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.21547 -s 0 -d 9 -p ack -e 40 -c 0 -i 2104 -a 0 -x {10.0 9.0 1047 ------- null} - -t 1.21547 -s 0 -d 9 -p ack -e 40 -c 0 -i 2104 -a 0 -x {10.0 9.0 1047 ------- null} h -t 1.21547 -s 0 -d 9 -p ack -e 40 -c 0 -i 2104 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.21589 -s 10 -d 7 -p ack -e 40 -c 0 -i 2108 -a 0 -x {10.0 9.0 1049 ------- null} + -t 1.21589 -s 7 -d 0 -p ack -e 40 -c 0 -i 2108 -a 0 -x {10.0 9.0 1049 ------- null} h -t 1.21589 -s 7 -d 8 -p ack -e 40 -c 0 -i 2108 -a 0 -x {10.0 9.0 1049 ------- null} r -t 1.21603 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2093 -a 0 -x {9.0 10.0 1051 ------- null} + -t 1.21603 -s 10 -d 7 -p ack -e 40 -c 0 -i 2112 -a 0 -x {10.0 9.0 1051 ------- null} - -t 1.21603 -s 10 -d 7 -p ack -e 40 -c 0 -i 2112 -a 0 -x {10.0 9.0 1051 ------- null} h -t 1.21603 -s 10 -d 7 -p ack -e 40 -c 0 -i 2112 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.21611 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2107 -a 0 -x {9.0 10.0 1058 ------- null} + -t 1.21611 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2107 -a 0 -x {9.0 10.0 1058 ------- null} h -t 1.21611 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2107 -a 0 -x {9.0 10.0 1058 ------- null} + -t 1.2165 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2099 -a 0 -x {9.0 10.0 1054 ------- null} - -t 1.2165 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2099 -a 0 -x {9.0 10.0 1054 ------- null} h -t 1.2165 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2099 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.21654 -s 0 -d 9 -p ack -e 40 -c 0 -i 2102 -a 0 -x {10.0 9.0 1046 ------- null} + -t 1.21654 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2113 -a 0 -x {9.0 10.0 1061 ------- null} - -t 1.21654 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2113 -a 0 -x {9.0 10.0 1061 ------- null} h -t 1.21654 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2113 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.21667 -s 0 -d 9 -p ack -e 40 -c 0 -i 2106 -a 0 -x {10.0 9.0 1048 ------- null} - -t 1.21667 -s 0 -d 9 -p ack -e 40 -c 0 -i 2106 -a 0 -x {10.0 9.0 1048 ------- null} h -t 1.21667 -s 0 -d 9 -p ack -e 40 -c 0 -i 2106 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.21698 -s 10 -d 7 -p ack -e 40 -c 0 -i 2110 -a 0 -x {10.0 9.0 1050 ------- null} + -t 1.21698 -s 7 -d 0 -p ack -e 40 -c 0 -i 2110 -a 0 -x {10.0 9.0 1050 ------- null} h -t 1.21698 -s 7 -d 8 -p ack -e 40 -c 0 -i 2110 -a 0 -x {10.0 9.0 1050 ------- null} r -t 1.21709 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2109 -a 0 -x {9.0 10.0 1059 ------- null} + -t 1.21709 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2109 -a 0 -x {9.0 10.0 1059 ------- null} h -t 1.21709 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2109 -a 0 -x {9.0 10.0 1059 ------- null} r -t 1.21712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2095 -a 0 -x {9.0 10.0 1052 ------- null} + -t 1.21712 -s 10 -d 7 -p ack -e 40 -c 0 -i 2114 -a 0 -x {10.0 9.0 1052 ------- null} - -t 1.21712 -s 10 -d 7 -p ack -e 40 -c 0 -i 2114 -a 0 -x {10.0 9.0 1052 ------- null} h -t 1.21712 -s 10 -d 7 -p ack -e 40 -c 0 -i 2114 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.2175 -s 0 -d 9 -p ack -e 40 -c 0 -i 2104 -a 0 -x {10.0 9.0 1047 ------- null} + -t 1.2175 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2115 -a 0 -x {9.0 10.0 1062 ------- null} - -t 1.2175 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2115 -a 0 -x {9.0 10.0 1062 ------- null} h -t 1.2175 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2115 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.21758 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2101 -a 0 -x {9.0 10.0 1055 ------- null} - -t 1.21758 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2101 -a 0 -x {9.0 10.0 1055 ------- null} h -t 1.21758 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2101 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.21787 -s 0 -d 9 -p ack -e 40 -c 0 -i 2108 -a 0 -x {10.0 9.0 1049 ------- null} - -t 1.21787 -s 0 -d 9 -p ack -e 40 -c 0 -i 2108 -a 0 -x {10.0 9.0 1049 ------- null} h -t 1.21787 -s 0 -d 9 -p ack -e 40 -c 0 -i 2108 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.21806 -s 10 -d 7 -p ack -e 40 -c 0 -i 2112 -a 0 -x {10.0 9.0 1051 ------- null} + -t 1.21806 -s 7 -d 0 -p ack -e 40 -c 0 -i 2112 -a 0 -x {10.0 9.0 1051 ------- null} h -t 1.21806 -s 7 -d 8 -p ack -e 40 -c 0 -i 2112 -a 0 -x {10.0 9.0 1051 ------- null} r -t 1.21818 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2111 -a 0 -x {9.0 10.0 1060 ------- null} + -t 1.21818 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2111 -a 0 -x {9.0 10.0 1060 ------- null} h -t 1.21818 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2111 -a 0 -x {9.0 10.0 1060 ------- null} r -t 1.21821 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2097 -a 0 -x {9.0 10.0 1053 ------- null} + -t 1.21821 -s 10 -d 7 -p ack -e 40 -c 0 -i 2116 -a 0 -x {10.0 9.0 1053 ------- null} - -t 1.21821 -s 10 -d 7 -p ack -e 40 -c 0 -i 2116 -a 0 -x {10.0 9.0 1053 ------- null} h -t 1.21821 -s 10 -d 7 -p ack -e 40 -c 0 -i 2116 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.2187 -s 0 -d 9 -p ack -e 40 -c 0 -i 2106 -a 0 -x {10.0 9.0 1048 ------- null} + -t 1.2187 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2117 -a 0 -x {9.0 10.0 1063 ------- null} - -t 1.2187 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2117 -a 0 -x {9.0 10.0 1063 ------- null} h -t 1.2187 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2117 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.2187 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2103 -a 0 -x {9.0 10.0 1056 ------- null} - -t 1.2187 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2103 -a 0 -x {9.0 10.0 1056 ------- null} h -t 1.2187 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2103 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.21882 -s 0 -d 9 -p ack -e 40 -c 0 -i 2110 -a 0 -x {10.0 9.0 1050 ------- null} - -t 1.21882 -s 0 -d 9 -p ack -e 40 -c 0 -i 2110 -a 0 -x {10.0 9.0 1050 ------- null} h -t 1.21882 -s 0 -d 9 -p ack -e 40 -c 0 -i 2110 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.21915 -s 10 -d 7 -p ack -e 40 -c 0 -i 2114 -a 0 -x {10.0 9.0 1052 ------- null} + -t 1.21915 -s 7 -d 0 -p ack -e 40 -c 0 -i 2114 -a 0 -x {10.0 9.0 1052 ------- null} h -t 1.21915 -s 7 -d 8 -p ack -e 40 -c 0 -i 2114 -a 0 -x {10.0 9.0 1052 ------- null} r -t 1.2193 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2099 -a 0 -x {9.0 10.0 1054 ------- null} + -t 1.2193 -s 10 -d 7 -p ack -e 40 -c 0 -i 2118 -a 0 -x {10.0 9.0 1054 ------- null} - -t 1.2193 -s 10 -d 7 -p ack -e 40 -c 0 -i 2118 -a 0 -x {10.0 9.0 1054 ------- null} h -t 1.2193 -s 10 -d 7 -p ack -e 40 -c 0 -i 2118 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.21934 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2113 -a 0 -x {9.0 10.0 1061 ------- null} + -t 1.21934 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2113 -a 0 -x {9.0 10.0 1061 ------- null} h -t 1.21934 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2113 -a 0 -x {9.0 10.0 1061 ------- null} + -t 1.21979 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2105 -a 0 -x {9.0 10.0 1057 ------- null} - -t 1.21979 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2105 -a 0 -x {9.0 10.0 1057 ------- null} h -t 1.21979 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2105 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.2199 -s 0 -d 9 -p ack -e 40 -c 0 -i 2108 -a 0 -x {10.0 9.0 1049 ------- null} + -t 1.2199 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2119 -a 0 -x {9.0 10.0 1064 ------- null} - -t 1.2199 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2119 -a 0 -x {9.0 10.0 1064 ------- null} h -t 1.2199 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2119 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.22 -s 0 -d 9 -p ack -e 40 -c 0 -i 2112 -a 0 -x {10.0 9.0 1051 ------- null} - -t 1.22 -s 0 -d 9 -p ack -e 40 -c 0 -i 2112 -a 0 -x {10.0 9.0 1051 ------- null} h -t 1.22 -s 0 -d 9 -p ack -e 40 -c 0 -i 2112 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.22024 -s 10 -d 7 -p ack -e 40 -c 0 -i 2116 -a 0 -x {10.0 9.0 1053 ------- null} + -t 1.22024 -s 7 -d 0 -p ack -e 40 -c 0 -i 2116 -a 0 -x {10.0 9.0 1053 ------- null} h -t 1.22024 -s 7 -d 8 -p ack -e 40 -c 0 -i 2116 -a 0 -x {10.0 9.0 1053 ------- null} r -t 1.2203 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2115 -a 0 -x {9.0 10.0 1062 ------- null} + -t 1.2203 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2115 -a 0 -x {9.0 10.0 1062 ------- null} h -t 1.2203 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2115 -a 0 -x {9.0 10.0 1062 ------- null} r -t 1.22038 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2101 -a 0 -x {9.0 10.0 1055 ------- null} + -t 1.22038 -s 10 -d 7 -p ack -e 40 -c 0 -i 2120 -a 0 -x {10.0 9.0 1055 ------- null} - -t 1.22038 -s 10 -d 7 -p ack -e 40 -c 0 -i 2120 -a 0 -x {10.0 9.0 1055 ------- null} h -t 1.22038 -s 10 -d 7 -p ack -e 40 -c 0 -i 2120 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.22085 -s 0 -d 9 -p ack -e 40 -c 0 -i 2110 -a 0 -x {10.0 9.0 1050 ------- null} + -t 1.22085 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2121 -a 0 -x {9.0 10.0 1065 ------- null} - -t 1.22085 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2121 -a 0 -x {9.0 10.0 1065 ------- null} h -t 1.22085 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2121 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.22088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2107 -a 0 -x {9.0 10.0 1058 ------- null} - -t 1.22088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2107 -a 0 -x {9.0 10.0 1058 ------- null} h -t 1.22088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2107 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.22114 -s 0 -d 9 -p ack -e 40 -c 0 -i 2114 -a 0 -x {10.0 9.0 1052 ------- null} - -t 1.22114 -s 0 -d 9 -p ack -e 40 -c 0 -i 2114 -a 0 -x {10.0 9.0 1052 ------- null} h -t 1.22114 -s 0 -d 9 -p ack -e 40 -c 0 -i 2114 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.22133 -s 10 -d 7 -p ack -e 40 -c 0 -i 2118 -a 0 -x {10.0 9.0 1054 ------- null} + -t 1.22133 -s 7 -d 0 -p ack -e 40 -c 0 -i 2118 -a 0 -x {10.0 9.0 1054 ------- null} h -t 1.22133 -s 7 -d 8 -p ack -e 40 -c 0 -i 2118 -a 0 -x {10.0 9.0 1054 ------- null} r -t 1.2215 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2117 -a 0 -x {9.0 10.0 1063 ------- null} + -t 1.2215 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2117 -a 0 -x {9.0 10.0 1063 ------- null} h -t 1.2215 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2117 -a 0 -x {9.0 10.0 1063 ------- null} r -t 1.2215 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2103 -a 0 -x {9.0 10.0 1056 ------- null} + -t 1.2215 -s 10 -d 7 -p ack -e 40 -c 0 -i 2122 -a 0 -x {10.0 9.0 1056 ------- null} - -t 1.2215 -s 10 -d 7 -p ack -e 40 -c 0 -i 2122 -a 0 -x {10.0 9.0 1056 ------- null} h -t 1.2215 -s 10 -d 7 -p ack -e 40 -c 0 -i 2122 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.22197 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2109 -a 0 -x {9.0 10.0 1059 ------- null} - -t 1.22197 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2109 -a 0 -x {9.0 10.0 1059 ------- null} h -t 1.22197 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2109 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.22203 -s 0 -d 9 -p ack -e 40 -c 0 -i 2112 -a 0 -x {10.0 9.0 1051 ------- null} + -t 1.22203 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2123 -a 0 -x {9.0 10.0 1066 ------- null} - -t 1.22203 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2123 -a 0 -x {9.0 10.0 1066 ------- null} h -t 1.22203 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2123 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.22214 -s 0 -d 9 -p ack -e 40 -c 0 -i 2116 -a 0 -x {10.0 9.0 1053 ------- null} - -t 1.22214 -s 0 -d 9 -p ack -e 40 -c 0 -i 2116 -a 0 -x {10.0 9.0 1053 ------- null} h -t 1.22214 -s 0 -d 9 -p ack -e 40 -c 0 -i 2116 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.22242 -s 10 -d 7 -p ack -e 40 -c 0 -i 2120 -a 0 -x {10.0 9.0 1055 ------- null} + -t 1.22242 -s 7 -d 0 -p ack -e 40 -c 0 -i 2120 -a 0 -x {10.0 9.0 1055 ------- null} h -t 1.22242 -s 7 -d 8 -p ack -e 40 -c 0 -i 2120 -a 0 -x {10.0 9.0 1055 ------- null} r -t 1.22259 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2105 -a 0 -x {9.0 10.0 1057 ------- null} + -t 1.22259 -s 10 -d 7 -p ack -e 40 -c 0 -i 2124 -a 0 -x {10.0 9.0 1057 ------- null} - -t 1.22259 -s 10 -d 7 -p ack -e 40 -c 0 -i 2124 -a 0 -x {10.0 9.0 1057 ------- null} h -t 1.22259 -s 10 -d 7 -p ack -e 40 -c 0 -i 2124 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.2227 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2119 -a 0 -x {9.0 10.0 1064 ------- null} + -t 1.2227 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2119 -a 0 -x {9.0 10.0 1064 ------- null} h -t 1.2227 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2119 -a 0 -x {9.0 10.0 1064 ------- null} + -t 1.22306 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2111 -a 0 -x {9.0 10.0 1060 ------- null} - -t 1.22306 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2111 -a 0 -x {9.0 10.0 1060 ------- null} h -t 1.22306 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2111 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.22317 -s 0 -d 9 -p ack -e 40 -c 0 -i 2114 -a 0 -x {10.0 9.0 1052 ------- null} + -t 1.22317 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2125 -a 0 -x {9.0 10.0 1067 ------- null} - -t 1.22317 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2125 -a 0 -x {9.0 10.0 1067 ------- null} h -t 1.22317 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2125 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.22331 -s 0 -d 9 -p ack -e 40 -c 0 -i 2118 -a 0 -x {10.0 9.0 1054 ------- null} - -t 1.22331 -s 0 -d 9 -p ack -e 40 -c 0 -i 2118 -a 0 -x {10.0 9.0 1054 ------- null} h -t 1.22331 -s 0 -d 9 -p ack -e 40 -c 0 -i 2118 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.22354 -s 10 -d 7 -p ack -e 40 -c 0 -i 2122 -a 0 -x {10.0 9.0 1056 ------- null} + -t 1.22354 -s 7 -d 0 -p ack -e 40 -c 0 -i 2122 -a 0 -x {10.0 9.0 1056 ------- null} h -t 1.22354 -s 7 -d 8 -p ack -e 40 -c 0 -i 2122 -a 0 -x {10.0 9.0 1056 ------- null} r -t 1.22365 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2121 -a 0 -x {9.0 10.0 1065 ------- null} + -t 1.22365 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2121 -a 0 -x {9.0 10.0 1065 ------- null} h -t 1.22365 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2121 -a 0 -x {9.0 10.0 1065 ------- null} r -t 1.22368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2107 -a 0 -x {9.0 10.0 1058 ------- null} + -t 1.22368 -s 10 -d 7 -p ack -e 40 -c 0 -i 2126 -a 0 -x {10.0 9.0 1058 ------- null} - -t 1.22368 -s 10 -d 7 -p ack -e 40 -c 0 -i 2126 -a 0 -x {10.0 9.0 1058 ------- null} h -t 1.22368 -s 10 -d 7 -p ack -e 40 -c 0 -i 2126 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.22414 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2113 -a 0 -x {9.0 10.0 1061 ------- null} - -t 1.22414 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2113 -a 0 -x {9.0 10.0 1061 ------- null} h -t 1.22414 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2113 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.22418 -s 0 -d 9 -p ack -e 40 -c 0 -i 2116 -a 0 -x {10.0 9.0 1053 ------- null} + -t 1.22418 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2127 -a 0 -x {9.0 10.0 1068 ------- null} - -t 1.22418 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2127 -a 0 -x {9.0 10.0 1068 ------- null} h -t 1.22418 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2127 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.22442 -s 0 -d 9 -p ack -e 40 -c 0 -i 2120 -a 0 -x {10.0 9.0 1055 ------- null} - -t 1.22442 -s 0 -d 9 -p ack -e 40 -c 0 -i 2120 -a 0 -x {10.0 9.0 1055 ------- null} h -t 1.22442 -s 0 -d 9 -p ack -e 40 -c 0 -i 2120 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.22462 -s 10 -d 7 -p ack -e 40 -c 0 -i 2124 -a 0 -x {10.0 9.0 1057 ------- null} + -t 1.22462 -s 7 -d 0 -p ack -e 40 -c 0 -i 2124 -a 0 -x {10.0 9.0 1057 ------- null} h -t 1.22462 -s 7 -d 8 -p ack -e 40 -c 0 -i 2124 -a 0 -x {10.0 9.0 1057 ------- null} r -t 1.22477 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2109 -a 0 -x {9.0 10.0 1059 ------- null} + -t 1.22477 -s 10 -d 7 -p ack -e 40 -c 0 -i 2128 -a 0 -x {10.0 9.0 1059 ------- null} - -t 1.22477 -s 10 -d 7 -p ack -e 40 -c 0 -i 2128 -a 0 -x {10.0 9.0 1059 ------- null} h -t 1.22477 -s 10 -d 7 -p ack -e 40 -c 0 -i 2128 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.22483 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2123 -a 0 -x {9.0 10.0 1066 ------- null} + -t 1.22483 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2123 -a 0 -x {9.0 10.0 1066 ------- null} h -t 1.22483 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2123 -a 0 -x {9.0 10.0 1066 ------- null} r -t 1.22534 -s 0 -d 9 -p ack -e 40 -c 0 -i 2118 -a 0 -x {10.0 9.0 1054 ------- null} + -t 1.22534 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2129 -a 0 -x {9.0 10.0 1069 ------- null} - -t 1.22534 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2129 -a 0 -x {9.0 10.0 1069 ------- null} h -t 1.22534 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2129 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.22541 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2115 -a 0 -x {9.0 10.0 1062 ------- null} - -t 1.22541 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2115 -a 0 -x {9.0 10.0 1062 ------- null} h -t 1.22541 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2115 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.2255 -s 0 -d 9 -p ack -e 40 -c 0 -i 2122 -a 0 -x {10.0 9.0 1056 ------- null} - -t 1.2255 -s 0 -d 9 -p ack -e 40 -c 0 -i 2122 -a 0 -x {10.0 9.0 1056 ------- null} h -t 1.2255 -s 0 -d 9 -p ack -e 40 -c 0 -i 2122 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.22571 -s 10 -d 7 -p ack -e 40 -c 0 -i 2126 -a 0 -x {10.0 9.0 1058 ------- null} + -t 1.22571 -s 7 -d 0 -p ack -e 40 -c 0 -i 2126 -a 0 -x {10.0 9.0 1058 ------- null} h -t 1.22571 -s 7 -d 8 -p ack -e 40 -c 0 -i 2126 -a 0 -x {10.0 9.0 1058 ------- null} r -t 1.22586 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2111 -a 0 -x {9.0 10.0 1060 ------- null} + -t 1.22586 -s 10 -d 7 -p ack -e 40 -c 0 -i 2130 -a 0 -x {10.0 9.0 1060 ------- null} - -t 1.22586 -s 10 -d 7 -p ack -e 40 -c 0 -i 2130 -a 0 -x {10.0 9.0 1060 ------- null} h -t 1.22586 -s 10 -d 7 -p ack -e 40 -c 0 -i 2130 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.22597 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2125 -a 0 -x {9.0 10.0 1067 ------- null} + -t 1.22597 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2125 -a 0 -x {9.0 10.0 1067 ------- null} h -t 1.22597 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2125 -a 0 -x {9.0 10.0 1067 ------- null} r -t 1.22645 -s 0 -d 9 -p ack -e 40 -c 0 -i 2120 -a 0 -x {10.0 9.0 1055 ------- null} + -t 1.22645 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2131 -a 0 -x {9.0 10.0 1070 ------- null} - -t 1.22645 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2131 -a 0 -x {9.0 10.0 1070 ------- null} h -t 1.22645 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2131 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.2265 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2117 -a 0 -x {9.0 10.0 1063 ------- null} - -t 1.2265 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2117 -a 0 -x {9.0 10.0 1063 ------- null} h -t 1.2265 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2117 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.22672 -s 0 -d 9 -p ack -e 40 -c 0 -i 2124 -a 0 -x {10.0 9.0 1057 ------- null} - -t 1.22672 -s 0 -d 9 -p ack -e 40 -c 0 -i 2124 -a 0 -x {10.0 9.0 1057 ------- null} h -t 1.22672 -s 0 -d 9 -p ack -e 40 -c 0 -i 2124 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.2268 -s 10 -d 7 -p ack -e 40 -c 0 -i 2128 -a 0 -x {10.0 9.0 1059 ------- null} + -t 1.2268 -s 7 -d 0 -p ack -e 40 -c 0 -i 2128 -a 0 -x {10.0 9.0 1059 ------- null} h -t 1.2268 -s 7 -d 8 -p ack -e 40 -c 0 -i 2128 -a 0 -x {10.0 9.0 1059 ------- null} r -t 1.22694 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2113 -a 0 -x {9.0 10.0 1061 ------- null} + -t 1.22694 -s 10 -d 7 -p ack -e 40 -c 0 -i 2132 -a 0 -x {10.0 9.0 1061 ------- null} - -t 1.22694 -s 10 -d 7 -p ack -e 40 -c 0 -i 2132 -a 0 -x {10.0 9.0 1061 ------- null} h -t 1.22694 -s 10 -d 7 -p ack -e 40 -c 0 -i 2132 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.22698 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2127 -a 0 -x {9.0 10.0 1068 ------- null} + -t 1.22698 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2127 -a 0 -x {9.0 10.0 1068 ------- null} h -t 1.22698 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2127 -a 0 -x {9.0 10.0 1068 ------- null} r -t 1.22754 -s 0 -d 9 -p ack -e 40 -c 0 -i 2122 -a 0 -x {10.0 9.0 1056 ------- null} + -t 1.22754 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2133 -a 0 -x {9.0 10.0 1071 ------- null} - -t 1.22754 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2133 -a 0 -x {9.0 10.0 1071 ------- null} h -t 1.22754 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2133 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.22758 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2119 -a 0 -x {9.0 10.0 1064 ------- null} - -t 1.22758 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2119 -a 0 -x {9.0 10.0 1064 ------- null} h -t 1.22758 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2119 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.22765 -s 0 -d 9 -p ack -e 40 -c 0 -i 2126 -a 0 -x {10.0 9.0 1058 ------- null} - -t 1.22765 -s 0 -d 9 -p ack -e 40 -c 0 -i 2126 -a 0 -x {10.0 9.0 1058 ------- null} h -t 1.22765 -s 0 -d 9 -p ack -e 40 -c 0 -i 2126 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.22789 -s 10 -d 7 -p ack -e 40 -c 0 -i 2130 -a 0 -x {10.0 9.0 1060 ------- null} + -t 1.22789 -s 7 -d 0 -p ack -e 40 -c 0 -i 2130 -a 0 -x {10.0 9.0 1060 ------- null} h -t 1.22789 -s 7 -d 8 -p ack -e 40 -c 0 -i 2130 -a 0 -x {10.0 9.0 1060 ------- null} r -t 1.22814 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2129 -a 0 -x {9.0 10.0 1069 ------- null} + -t 1.22814 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2129 -a 0 -x {9.0 10.0 1069 ------- null} h -t 1.22814 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2129 -a 0 -x {9.0 10.0 1069 ------- null} r -t 1.22821 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2115 -a 0 -x {9.0 10.0 1062 ------- null} + -t 1.22821 -s 10 -d 7 -p ack -e 40 -c 0 -i 2134 -a 0 -x {10.0 9.0 1062 ------- null} - -t 1.22821 -s 10 -d 7 -p ack -e 40 -c 0 -i 2134 -a 0 -x {10.0 9.0 1062 ------- null} h -t 1.22821 -s 10 -d 7 -p ack -e 40 -c 0 -i 2134 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.22867 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2121 -a 0 -x {9.0 10.0 1065 ------- null} - -t 1.22867 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2121 -a 0 -x {9.0 10.0 1065 ------- null} h -t 1.22867 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2121 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.22875 -s 0 -d 9 -p ack -e 40 -c 0 -i 2124 -a 0 -x {10.0 9.0 1057 ------- null} + -t 1.22875 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2135 -a 0 -x {9.0 10.0 1072 ------- null} - -t 1.22875 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2135 -a 0 -x {9.0 10.0 1072 ------- null} h -t 1.22875 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2135 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.22882 -s 0 -d 9 -p ack -e 40 -c 0 -i 2128 -a 0 -x {10.0 9.0 1059 ------- null} - -t 1.22882 -s 0 -d 9 -p ack -e 40 -c 0 -i 2128 -a 0 -x {10.0 9.0 1059 ------- null} h -t 1.22882 -s 0 -d 9 -p ack -e 40 -c 0 -i 2128 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.22898 -s 10 -d 7 -p ack -e 40 -c 0 -i 2132 -a 0 -x {10.0 9.0 1061 ------- null} + -t 1.22898 -s 7 -d 0 -p ack -e 40 -c 0 -i 2132 -a 0 -x {10.0 9.0 1061 ------- null} h -t 1.22898 -s 7 -d 8 -p ack -e 40 -c 0 -i 2132 -a 0 -x {10.0 9.0 1061 ------- null} r -t 1.22925 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2131 -a 0 -x {9.0 10.0 1070 ------- null} + -t 1.22925 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2131 -a 0 -x {9.0 10.0 1070 ------- null} h -t 1.22925 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2131 -a 0 -x {9.0 10.0 1070 ------- null} r -t 1.2293 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2117 -a 0 -x {9.0 10.0 1063 ------- null} + -t 1.2293 -s 10 -d 7 -p ack -e 40 -c 0 -i 2136 -a 0 -x {10.0 9.0 1063 ------- null} - -t 1.2293 -s 10 -d 7 -p ack -e 40 -c 0 -i 2136 -a 0 -x {10.0 9.0 1063 ------- null} h -t 1.2293 -s 10 -d 7 -p ack -e 40 -c 0 -i 2136 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.22968 -s 0 -d 9 -p ack -e 40 -c 0 -i 2126 -a 0 -x {10.0 9.0 1058 ------- null} + -t 1.22968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2137 -a 0 -x {9.0 10.0 1073 ------- null} - -t 1.22968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2137 -a 0 -x {9.0 10.0 1073 ------- null} h -t 1.22968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2137 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.22976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2123 -a 0 -x {9.0 10.0 1066 ------- null} - -t 1.22976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2123 -a 0 -x {9.0 10.0 1066 ------- null} h -t 1.22976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2123 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.22986 -s 0 -d 9 -p ack -e 40 -c 0 -i 2130 -a 0 -x {10.0 9.0 1060 ------- null} - -t 1.22986 -s 0 -d 9 -p ack -e 40 -c 0 -i 2130 -a 0 -x {10.0 9.0 1060 ------- null} h -t 1.22986 -s 0 -d 9 -p ack -e 40 -c 0 -i 2130 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.23024 -s 10 -d 7 -p ack -e 40 -c 0 -i 2134 -a 0 -x {10.0 9.0 1062 ------- null} + -t 1.23024 -s 7 -d 0 -p ack -e 40 -c 0 -i 2134 -a 0 -x {10.0 9.0 1062 ------- null} h -t 1.23024 -s 7 -d 8 -p ack -e 40 -c 0 -i 2134 -a 0 -x {10.0 9.0 1062 ------- null} r -t 1.23034 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2133 -a 0 -x {9.0 10.0 1071 ------- null} + -t 1.23034 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2133 -a 0 -x {9.0 10.0 1071 ------- null} h -t 1.23034 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2133 -a 0 -x {9.0 10.0 1071 ------- null} r -t 1.23038 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2119 -a 0 -x {9.0 10.0 1064 ------- null} + -t 1.23038 -s 10 -d 7 -p ack -e 40 -c 0 -i 2138 -a 0 -x {10.0 9.0 1064 ------- null} - -t 1.23038 -s 10 -d 7 -p ack -e 40 -c 0 -i 2138 -a 0 -x {10.0 9.0 1064 ------- null} h -t 1.23038 -s 10 -d 7 -p ack -e 40 -c 0 -i 2138 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.23085 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2125 -a 0 -x {9.0 10.0 1067 ------- null} - -t 1.23085 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2125 -a 0 -x {9.0 10.0 1067 ------- null} h -t 1.23085 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2125 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.23085 -s 0 -d 9 -p ack -e 40 -c 0 -i 2128 -a 0 -x {10.0 9.0 1059 ------- null} + -t 1.23085 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2139 -a 0 -x {9.0 10.0 1074 ------- null} - -t 1.23085 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2139 -a 0 -x {9.0 10.0 1074 ------- null} h -t 1.23085 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2139 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.23112 -s 0 -d 9 -p ack -e 40 -c 0 -i 2132 -a 0 -x {10.0 9.0 1061 ------- null} - -t 1.23112 -s 0 -d 9 -p ack -e 40 -c 0 -i 2132 -a 0 -x {10.0 9.0 1061 ------- null} h -t 1.23112 -s 0 -d 9 -p ack -e 40 -c 0 -i 2132 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.23133 -s 10 -d 7 -p ack -e 40 -c 0 -i 2136 -a 0 -x {10.0 9.0 1063 ------- null} + -t 1.23133 -s 7 -d 0 -p ack -e 40 -c 0 -i 2136 -a 0 -x {10.0 9.0 1063 ------- null} h -t 1.23133 -s 7 -d 8 -p ack -e 40 -c 0 -i 2136 -a 0 -x {10.0 9.0 1063 ------- null} r -t 1.23147 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2121 -a 0 -x {9.0 10.0 1065 ------- null} + -t 1.23147 -s 10 -d 7 -p ack -e 40 -c 0 -i 2140 -a 0 -x {10.0 9.0 1065 ------- null} - -t 1.23147 -s 10 -d 7 -p ack -e 40 -c 0 -i 2140 -a 0 -x {10.0 9.0 1065 ------- null} h -t 1.23147 -s 10 -d 7 -p ack -e 40 -c 0 -i 2140 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.23155 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2135 -a 0 -x {9.0 10.0 1072 ------- null} + -t 1.23155 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2135 -a 0 -x {9.0 10.0 1072 ------- null} h -t 1.23155 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2135 -a 0 -x {9.0 10.0 1072 ------- null} r -t 1.23189 -s 0 -d 9 -p ack -e 40 -c 0 -i 2130 -a 0 -x {10.0 9.0 1060 ------- null} + -t 1.23189 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2141 -a 0 -x {9.0 10.0 1075 ------- null} - -t 1.23189 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2141 -a 0 -x {9.0 10.0 1075 ------- null} h -t 1.23189 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2141 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.23195 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2127 -a 0 -x {9.0 10.0 1068 ------- null} - -t 1.23195 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2127 -a 0 -x {9.0 10.0 1068 ------- null} h -t 1.23195 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2127 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.23219 -s 0 -d 9 -p ack -e 40 -c 0 -i 2134 -a 0 -x {10.0 9.0 1062 ------- null} - -t 1.23219 -s 0 -d 9 -p ack -e 40 -c 0 -i 2134 -a 0 -x {10.0 9.0 1062 ------- null} h -t 1.23219 -s 0 -d 9 -p ack -e 40 -c 0 -i 2134 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.23242 -s 10 -d 7 -p ack -e 40 -c 0 -i 2138 -a 0 -x {10.0 9.0 1064 ------- null} + -t 1.23242 -s 7 -d 0 -p ack -e 40 -c 0 -i 2138 -a 0 -x {10.0 9.0 1064 ------- null} h -t 1.23242 -s 7 -d 8 -p ack -e 40 -c 0 -i 2138 -a 0 -x {10.0 9.0 1064 ------- null} r -t 1.23248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2137 -a 0 -x {9.0 10.0 1073 ------- null} + -t 1.23248 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2137 -a 0 -x {9.0 10.0 1073 ------- null} h -t 1.23248 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2137 -a 0 -x {9.0 10.0 1073 ------- null} r -t 1.23256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2123 -a 0 -x {9.0 10.0 1066 ------- null} + -t 1.23256 -s 10 -d 7 -p ack -e 40 -c 0 -i 2142 -a 0 -x {10.0 9.0 1066 ------- null} - -t 1.23256 -s 10 -d 7 -p ack -e 40 -c 0 -i 2142 -a 0 -x {10.0 9.0 1066 ------- null} h -t 1.23256 -s 10 -d 7 -p ack -e 40 -c 0 -i 2142 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.23304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2129 -a 0 -x {9.0 10.0 1069 ------- null} - -t 1.23304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2129 -a 0 -x {9.0 10.0 1069 ------- null} h -t 1.23304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2129 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.23315 -s 0 -d 9 -p ack -e 40 -c 0 -i 2132 -a 0 -x {10.0 9.0 1061 ------- null} + -t 1.23315 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2143 -a 0 -x {9.0 10.0 1076 ------- null} - -t 1.23315 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2143 -a 0 -x {9.0 10.0 1076 ------- null} h -t 1.23315 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2143 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.23328 -s 0 -d 9 -p ack -e 40 -c 0 -i 2136 -a 0 -x {10.0 9.0 1063 ------- null} - -t 1.23328 -s 0 -d 9 -p ack -e 40 -c 0 -i 2136 -a 0 -x {10.0 9.0 1063 ------- null} h -t 1.23328 -s 0 -d 9 -p ack -e 40 -c 0 -i 2136 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.2335 -s 10 -d 7 -p ack -e 40 -c 0 -i 2140 -a 0 -x {10.0 9.0 1065 ------- null} + -t 1.2335 -s 7 -d 0 -p ack -e 40 -c 0 -i 2140 -a 0 -x {10.0 9.0 1065 ------- null} h -t 1.2335 -s 7 -d 8 -p ack -e 40 -c 0 -i 2140 -a 0 -x {10.0 9.0 1065 ------- null} r -t 1.23365 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2125 -a 0 -x {9.0 10.0 1067 ------- null} + -t 1.23365 -s 10 -d 7 -p ack -e 40 -c 0 -i 2144 -a 0 -x {10.0 9.0 1067 ------- null} - -t 1.23365 -s 10 -d 7 -p ack -e 40 -c 0 -i 2144 -a 0 -x {10.0 9.0 1067 ------- null} h -t 1.23365 -s 10 -d 7 -p ack -e 40 -c 0 -i 2144 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.23365 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2139 -a 0 -x {9.0 10.0 1074 ------- null} + -t 1.23365 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2139 -a 0 -x {9.0 10.0 1074 ------- null} h -t 1.23365 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2139 -a 0 -x {9.0 10.0 1074 ------- null} + -t 1.23413 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2131 -a 0 -x {9.0 10.0 1070 ------- null} - -t 1.23413 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2131 -a 0 -x {9.0 10.0 1070 ------- null} h -t 1.23413 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2131 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.23422 -s 0 -d 9 -p ack -e 40 -c 0 -i 2134 -a 0 -x {10.0 9.0 1062 ------- null} + -t 1.23422 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2145 -a 0 -x {9.0 10.0 1077 ------- null} - -t 1.23422 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2145 -a 0 -x {9.0 10.0 1077 ------- null} h -t 1.23422 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2145 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.23437 -s 0 -d 9 -p ack -e 40 -c 0 -i 2138 -a 0 -x {10.0 9.0 1064 ------- null} - -t 1.23437 -s 0 -d 9 -p ack -e 40 -c 0 -i 2138 -a 0 -x {10.0 9.0 1064 ------- null} h -t 1.23437 -s 0 -d 9 -p ack -e 40 -c 0 -i 2138 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.23459 -s 10 -d 7 -p ack -e 40 -c 0 -i 2142 -a 0 -x {10.0 9.0 1066 ------- null} + -t 1.23459 -s 7 -d 0 -p ack -e 40 -c 0 -i 2142 -a 0 -x {10.0 9.0 1066 ------- null} h -t 1.23459 -s 7 -d 8 -p ack -e 40 -c 0 -i 2142 -a 0 -x {10.0 9.0 1066 ------- null} r -t 1.23469 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2141 -a 0 -x {9.0 10.0 1075 ------- null} + -t 1.23469 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2141 -a 0 -x {9.0 10.0 1075 ------- null} h -t 1.23469 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2141 -a 0 -x {9.0 10.0 1075 ------- null} r -t 1.23475 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2127 -a 0 -x {9.0 10.0 1068 ------- null} + -t 1.23475 -s 10 -d 7 -p ack -e 40 -c 0 -i 2146 -a 0 -x {10.0 9.0 1068 ------- null} - -t 1.23475 -s 10 -d 7 -p ack -e 40 -c 0 -i 2146 -a 0 -x {10.0 9.0 1068 ------- null} h -t 1.23475 -s 10 -d 7 -p ack -e 40 -c 0 -i 2146 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.23522 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2133 -a 0 -x {9.0 10.0 1071 ------- null} - -t 1.23522 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2133 -a 0 -x {9.0 10.0 1071 ------- null} h -t 1.23522 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2133 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.2353 -s 0 -d 9 -p ack -e 40 -c 0 -i 2140 -a 0 -x {10.0 9.0 1065 ------- null} - -t 1.2353 -s 0 -d 9 -p ack -e 40 -c 0 -i 2140 -a 0 -x {10.0 9.0 1065 ------- null} h -t 1.2353 -s 0 -d 9 -p ack -e 40 -c 0 -i 2140 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.23531 -s 0 -d 9 -p ack -e 40 -c 0 -i 2136 -a 0 -x {10.0 9.0 1063 ------- null} + -t 1.23531 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2147 -a 0 -x {9.0 10.0 1078 ------- null} - -t 1.23531 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2147 -a 0 -x {9.0 10.0 1078 ------- null} h -t 1.23531 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2147 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.23568 -s 10 -d 7 -p ack -e 40 -c 0 -i 2144 -a 0 -x {10.0 9.0 1067 ------- null} + -t 1.23568 -s 7 -d 0 -p ack -e 40 -c 0 -i 2144 -a 0 -x {10.0 9.0 1067 ------- null} h -t 1.23568 -s 7 -d 8 -p ack -e 40 -c 0 -i 2144 -a 0 -x {10.0 9.0 1067 ------- null} r -t 1.23584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2129 -a 0 -x {9.0 10.0 1069 ------- null} + -t 1.23584 -s 10 -d 7 -p ack -e 40 -c 0 -i 2148 -a 0 -x {10.0 9.0 1069 ------- null} - -t 1.23584 -s 10 -d 7 -p ack -e 40 -c 0 -i 2148 -a 0 -x {10.0 9.0 1069 ------- null} h -t 1.23584 -s 10 -d 7 -p ack -e 40 -c 0 -i 2148 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.23595 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2143 -a 0 -x {9.0 10.0 1076 ------- null} + -t 1.23595 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2143 -a 0 -x {9.0 10.0 1076 ------- null} h -t 1.23595 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2143 -a 0 -x {9.0 10.0 1076 ------- null} + -t 1.2363 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2135 -a 0 -x {9.0 10.0 1072 ------- null} - -t 1.2363 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2135 -a 0 -x {9.0 10.0 1072 ------- null} h -t 1.2363 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2135 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.2364 -s 0 -d 9 -p ack -e 40 -c 0 -i 2138 -a 0 -x {10.0 9.0 1064 ------- null} + -t 1.2364 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2149 -a 0 -x {9.0 10.0 1079 ------- null} - -t 1.2364 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2149 -a 0 -x {9.0 10.0 1079 ------- null} h -t 1.2364 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2149 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.2365 -s 0 -d 9 -p ack -e 40 -c 0 -i 2142 -a 0 -x {10.0 9.0 1066 ------- null} - -t 1.2365 -s 0 -d 9 -p ack -e 40 -c 0 -i 2142 -a 0 -x {10.0 9.0 1066 ------- null} h -t 1.2365 -s 0 -d 9 -p ack -e 40 -c 0 -i 2142 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.23678 -s 10 -d 7 -p ack -e 40 -c 0 -i 2146 -a 0 -x {10.0 9.0 1068 ------- null} + -t 1.23678 -s 7 -d 0 -p ack -e 40 -c 0 -i 2146 -a 0 -x {10.0 9.0 1068 ------- null} h -t 1.23678 -s 7 -d 8 -p ack -e 40 -c 0 -i 2146 -a 0 -x {10.0 9.0 1068 ------- null} r -t 1.23693 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2131 -a 0 -x {9.0 10.0 1070 ------- null} + -t 1.23693 -s 10 -d 7 -p ack -e 40 -c 0 -i 2150 -a 0 -x {10.0 9.0 1070 ------- null} - -t 1.23693 -s 10 -d 7 -p ack -e 40 -c 0 -i 2150 -a 0 -x {10.0 9.0 1070 ------- null} h -t 1.23693 -s 10 -d 7 -p ack -e 40 -c 0 -i 2150 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.23702 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2145 -a 0 -x {9.0 10.0 1077 ------- null} + -t 1.23702 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2145 -a 0 -x {9.0 10.0 1077 ------- null} h -t 1.23702 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2145 -a 0 -x {9.0 10.0 1077 ------- null} r -t 1.23733 -s 0 -d 9 -p ack -e 40 -c 0 -i 2140 -a 0 -x {10.0 9.0 1065 ------- null} + -t 1.23733 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2151 -a 0 -x {9.0 10.0 1080 ------- null} - -t 1.23733 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2151 -a 0 -x {9.0 10.0 1080 ------- null} h -t 1.23733 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2151 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.23739 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2137 -a 0 -x {9.0 10.0 1073 ------- null} - -t 1.23739 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2137 -a 0 -x {9.0 10.0 1073 ------- null} h -t 1.23739 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2137 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.23758 -s 0 -d 9 -p ack -e 40 -c 0 -i 2144 -a 0 -x {10.0 9.0 1067 ------- null} - -t 1.23758 -s 0 -d 9 -p ack -e 40 -c 0 -i 2144 -a 0 -x {10.0 9.0 1067 ------- null} h -t 1.23758 -s 0 -d 9 -p ack -e 40 -c 0 -i 2144 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.23787 -s 10 -d 7 -p ack -e 40 -c 0 -i 2148 -a 0 -x {10.0 9.0 1069 ------- null} + -t 1.23787 -s 7 -d 0 -p ack -e 40 -c 0 -i 2148 -a 0 -x {10.0 9.0 1069 ------- null} h -t 1.23787 -s 7 -d 8 -p ack -e 40 -c 0 -i 2148 -a 0 -x {10.0 9.0 1069 ------- null} r -t 1.23802 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2133 -a 0 -x {9.0 10.0 1071 ------- null} + -t 1.23802 -s 10 -d 7 -p ack -e 40 -c 0 -i 2152 -a 0 -x {10.0 9.0 1071 ------- null} - -t 1.23802 -s 10 -d 7 -p ack -e 40 -c 0 -i 2152 -a 0 -x {10.0 9.0 1071 ------- null} h -t 1.23802 -s 10 -d 7 -p ack -e 40 -c 0 -i 2152 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.23811 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2147 -a 0 -x {9.0 10.0 1078 ------- null} + -t 1.23811 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2147 -a 0 -x {9.0 10.0 1078 ------- null} h -t 1.23811 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2147 -a 0 -x {9.0 10.0 1078 ------- null} + -t 1.23848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2139 -a 0 -x {9.0 10.0 1074 ------- null} - -t 1.23848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2139 -a 0 -x {9.0 10.0 1074 ------- null} h -t 1.23848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2139 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.23853 -s 0 -d 9 -p ack -e 40 -c 0 -i 2142 -a 0 -x {10.0 9.0 1066 ------- null} + -t 1.23853 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2153 -a 0 -x {9.0 10.0 1081 ------- null} - -t 1.23853 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2153 -a 0 -x {9.0 10.0 1081 ------- null} h -t 1.23853 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2153 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.23858 -s 0 -d 9 -p ack -e 40 -c 0 -i 2146 -a 0 -x {10.0 9.0 1068 ------- null} - -t 1.23858 -s 0 -d 9 -p ack -e 40 -c 0 -i 2146 -a 0 -x {10.0 9.0 1068 ------- null} h -t 1.23858 -s 0 -d 9 -p ack -e 40 -c 0 -i 2146 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.23896 -s 10 -d 7 -p ack -e 40 -c 0 -i 2150 -a 0 -x {10.0 9.0 1070 ------- null} + -t 1.23896 -s 7 -d 0 -p ack -e 40 -c 0 -i 2150 -a 0 -x {10.0 9.0 1070 ------- null} h -t 1.23896 -s 7 -d 8 -p ack -e 40 -c 0 -i 2150 -a 0 -x {10.0 9.0 1070 ------- null} r -t 1.2391 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2135 -a 0 -x {9.0 10.0 1072 ------- null} + -t 1.2391 -s 10 -d 7 -p ack -e 40 -c 0 -i 2154 -a 0 -x {10.0 9.0 1072 ------- null} - -t 1.2391 -s 10 -d 7 -p ack -e 40 -c 0 -i 2154 -a 0 -x {10.0 9.0 1072 ------- null} h -t 1.2391 -s 10 -d 7 -p ack -e 40 -c 0 -i 2154 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.2392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2149 -a 0 -x {9.0 10.0 1079 ------- null} + -t 1.2392 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2149 -a 0 -x {9.0 10.0 1079 ------- null} h -t 1.2392 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2149 -a 0 -x {9.0 10.0 1079 ------- null} + -t 1.23957 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2141 -a 0 -x {9.0 10.0 1075 ------- null} - -t 1.23957 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2141 -a 0 -x {9.0 10.0 1075 ------- null} h -t 1.23957 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2141 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.23962 -s 0 -d 9 -p ack -e 40 -c 0 -i 2144 -a 0 -x {10.0 9.0 1067 ------- null} + -t 1.23962 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2155 -a 0 -x {9.0 10.0 1082 ------- null} - -t 1.23962 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2155 -a 0 -x {9.0 10.0 1082 ------- null} h -t 1.23962 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2155 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.23965 -s 0 -d 9 -p ack -e 40 -c 0 -i 2148 -a 0 -x {10.0 9.0 1069 ------- null} - -t 1.23965 -s 0 -d 9 -p ack -e 40 -c 0 -i 2148 -a 0 -x {10.0 9.0 1069 ------- null} h -t 1.23965 -s 0 -d 9 -p ack -e 40 -c 0 -i 2148 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.24005 -s 10 -d 7 -p ack -e 40 -c 0 -i 2152 -a 0 -x {10.0 9.0 1071 ------- null} + -t 1.24005 -s 7 -d 0 -p ack -e 40 -c 0 -i 2152 -a 0 -x {10.0 9.0 1071 ------- null} h -t 1.24005 -s 7 -d 8 -p ack -e 40 -c 0 -i 2152 -a 0 -x {10.0 9.0 1071 ------- null} r -t 1.24013 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2151 -a 0 -x {9.0 10.0 1080 ------- null} + -t 1.24013 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2151 -a 0 -x {9.0 10.0 1080 ------- null} h -t 1.24013 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2151 -a 0 -x {9.0 10.0 1080 ------- null} r -t 1.24019 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2137 -a 0 -x {9.0 10.0 1073 ------- null} + -t 1.24019 -s 10 -d 7 -p ack -e 40 -c 0 -i 2156 -a 0 -x {10.0 9.0 1073 ------- null} - -t 1.24019 -s 10 -d 7 -p ack -e 40 -c 0 -i 2156 -a 0 -x {10.0 9.0 1073 ------- null} h -t 1.24019 -s 10 -d 7 -p ack -e 40 -c 0 -i 2156 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.24061 -s 0 -d 9 -p ack -e 40 -c 0 -i 2146 -a 0 -x {10.0 9.0 1068 ------- null} + -t 1.24061 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2157 -a 0 -x {9.0 10.0 1083 ------- null} - -t 1.24061 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2157 -a 0 -x {9.0 10.0 1083 ------- null} h -t 1.24061 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2157 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.24066 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2143 -a 0 -x {9.0 10.0 1076 ------- null} - -t 1.24066 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2143 -a 0 -x {9.0 10.0 1076 ------- null} h -t 1.24066 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2143 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.2409 -s 0 -d 9 -p ack -e 40 -c 0 -i 2150 -a 0 -x {10.0 9.0 1070 ------- null} - -t 1.2409 -s 0 -d 9 -p ack -e 40 -c 0 -i 2150 -a 0 -x {10.0 9.0 1070 ------- null} h -t 1.2409 -s 0 -d 9 -p ack -e 40 -c 0 -i 2150 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.24114 -s 10 -d 7 -p ack -e 40 -c 0 -i 2154 -a 0 -x {10.0 9.0 1072 ------- null} + -t 1.24114 -s 7 -d 0 -p ack -e 40 -c 0 -i 2154 -a 0 -x {10.0 9.0 1072 ------- null} h -t 1.24114 -s 7 -d 8 -p ack -e 40 -c 0 -i 2154 -a 0 -x {10.0 9.0 1072 ------- null} r -t 1.24128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2139 -a 0 -x {9.0 10.0 1074 ------- null} + -t 1.24128 -s 10 -d 7 -p ack -e 40 -c 0 -i 2158 -a 0 -x {10.0 9.0 1074 ------- null} - -t 1.24128 -s 10 -d 7 -p ack -e 40 -c 0 -i 2158 -a 0 -x {10.0 9.0 1074 ------- null} h -t 1.24128 -s 10 -d 7 -p ack -e 40 -c 0 -i 2158 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.24133 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2153 -a 0 -x {9.0 10.0 1081 ------- null} + -t 1.24133 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2153 -a 0 -x {9.0 10.0 1081 ------- null} h -t 1.24133 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2153 -a 0 -x {9.0 10.0 1081 ------- null} r -t 1.24168 -s 0 -d 9 -p ack -e 40 -c 0 -i 2148 -a 0 -x {10.0 9.0 1069 ------- null} + -t 1.24168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2159 -a 0 -x {9.0 10.0 1084 ------- null} - -t 1.24168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2159 -a 0 -x {9.0 10.0 1084 ------- null} h -t 1.24168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2159 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.24174 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2145 -a 0 -x {9.0 10.0 1077 ------- null} - -t 1.24174 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2145 -a 0 -x {9.0 10.0 1077 ------- null} h -t 1.24174 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2145 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.24203 -s 0 -d 9 -p ack -e 40 -c 0 -i 2152 -a 0 -x {10.0 9.0 1071 ------- null} - -t 1.24203 -s 0 -d 9 -p ack -e 40 -c 0 -i 2152 -a 0 -x {10.0 9.0 1071 ------- null} h -t 1.24203 -s 0 -d 9 -p ack -e 40 -c 0 -i 2152 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.24222 -s 10 -d 7 -p ack -e 40 -c 0 -i 2156 -a 0 -x {10.0 9.0 1073 ------- null} + -t 1.24222 -s 7 -d 0 -p ack -e 40 -c 0 -i 2156 -a 0 -x {10.0 9.0 1073 ------- null} h -t 1.24222 -s 7 -d 8 -p ack -e 40 -c 0 -i 2156 -a 0 -x {10.0 9.0 1073 ------- null} r -t 1.24237 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2141 -a 0 -x {9.0 10.0 1075 ------- null} + -t 1.24237 -s 10 -d 7 -p ack -e 40 -c 0 -i 2160 -a 0 -x {10.0 9.0 1075 ------- null} - -t 1.24237 -s 10 -d 7 -p ack -e 40 -c 0 -i 2160 -a 0 -x {10.0 9.0 1075 ------- null} h -t 1.24237 -s 10 -d 7 -p ack -e 40 -c 0 -i 2160 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.24242 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2155 -a 0 -x {9.0 10.0 1082 ------- null} + -t 1.24242 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2155 -a 0 -x {9.0 10.0 1082 ------- null} h -t 1.24242 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2155 -a 0 -x {9.0 10.0 1082 ------- null} r -t 1.24293 -s 0 -d 9 -p ack -e 40 -c 0 -i 2150 -a 0 -x {10.0 9.0 1070 ------- null} + -t 1.24293 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2161 -a 0 -x {9.0 10.0 1085 ------- null} - -t 1.24293 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2161 -a 0 -x {9.0 10.0 1085 ------- null} h -t 1.24293 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2161 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.24293 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2147 -a 0 -x {9.0 10.0 1078 ------- null} - -t 1.24293 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2147 -a 0 -x {9.0 10.0 1078 ------- null} h -t 1.24293 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2147 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.24301 -s 0 -d 9 -p ack -e 40 -c 0 -i 2154 -a 0 -x {10.0 9.0 1072 ------- null} - -t 1.24301 -s 0 -d 9 -p ack -e 40 -c 0 -i 2154 -a 0 -x {10.0 9.0 1072 ------- null} h -t 1.24301 -s 0 -d 9 -p ack -e 40 -c 0 -i 2154 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.24331 -s 10 -d 7 -p ack -e 40 -c 0 -i 2158 -a 0 -x {10.0 9.0 1074 ------- null} + -t 1.24331 -s 7 -d 0 -p ack -e 40 -c 0 -i 2158 -a 0 -x {10.0 9.0 1074 ------- null} h -t 1.24331 -s 7 -d 8 -p ack -e 40 -c 0 -i 2158 -a 0 -x {10.0 9.0 1074 ------- null} r -t 1.24341 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2157 -a 0 -x {9.0 10.0 1083 ------- null} + -t 1.24341 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2157 -a 0 -x {9.0 10.0 1083 ------- null} h -t 1.24341 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2157 -a 0 -x {9.0 10.0 1083 ------- null} r -t 1.24346 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2143 -a 0 -x {9.0 10.0 1076 ------- null} + -t 1.24346 -s 10 -d 7 -p ack -e 40 -c 0 -i 2162 -a 0 -x {10.0 9.0 1076 ------- null} - -t 1.24346 -s 10 -d 7 -p ack -e 40 -c 0 -i 2162 -a 0 -x {10.0 9.0 1076 ------- null} h -t 1.24346 -s 10 -d 7 -p ack -e 40 -c 0 -i 2162 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.24402 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2149 -a 0 -x {9.0 10.0 1079 ------- null} - -t 1.24402 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2149 -a 0 -x {9.0 10.0 1079 ------- null} h -t 1.24402 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2149 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.24406 -s 0 -d 9 -p ack -e 40 -c 0 -i 2152 -a 0 -x {10.0 9.0 1071 ------- null} + -t 1.24406 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2163 -a 0 -x {9.0 10.0 1086 ------- null} - -t 1.24406 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2163 -a 0 -x {9.0 10.0 1086 ------- null} h -t 1.24406 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2163 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.2443 -s 0 -d 9 -p ack -e 40 -c 0 -i 2156 -a 0 -x {10.0 9.0 1073 ------- null} - -t 1.2443 -s 0 -d 9 -p ack -e 40 -c 0 -i 2156 -a 0 -x {10.0 9.0 1073 ------- null} h -t 1.2443 -s 0 -d 9 -p ack -e 40 -c 0 -i 2156 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.2444 -s 10 -d 7 -p ack -e 40 -c 0 -i 2160 -a 0 -x {10.0 9.0 1075 ------- null} + -t 1.2444 -s 7 -d 0 -p ack -e 40 -c 0 -i 2160 -a 0 -x {10.0 9.0 1075 ------- null} h -t 1.2444 -s 7 -d 8 -p ack -e 40 -c 0 -i 2160 -a 0 -x {10.0 9.0 1075 ------- null} r -t 1.24448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2159 -a 0 -x {9.0 10.0 1084 ------- null} + -t 1.24448 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2159 -a 0 -x {9.0 10.0 1084 ------- null} h -t 1.24448 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2159 -a 0 -x {9.0 10.0 1084 ------- null} r -t 1.24454 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2145 -a 0 -x {9.0 10.0 1077 ------- null} + -t 1.24454 -s 10 -d 7 -p ack -e 40 -c 0 -i 2164 -a 0 -x {10.0 9.0 1077 ------- null} - -t 1.24454 -s 10 -d 7 -p ack -e 40 -c 0 -i 2164 -a 0 -x {10.0 9.0 1077 ------- null} h -t 1.24454 -s 10 -d 7 -p ack -e 40 -c 0 -i 2164 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.24504 -s 0 -d 9 -p ack -e 40 -c 0 -i 2154 -a 0 -x {10.0 9.0 1072 ------- null} + -t 1.24504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2165 -a 0 -x {9.0 10.0 1087 ------- null} - -t 1.24504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2165 -a 0 -x {9.0 10.0 1087 ------- null} h -t 1.24504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2165 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.24514 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2151 -a 0 -x {9.0 10.0 1080 ------- null} - -t 1.24514 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2151 -a 0 -x {9.0 10.0 1080 ------- null} h -t 1.24514 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2151 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.24542 -s 0 -d 9 -p ack -e 40 -c 0 -i 2158 -a 0 -x {10.0 9.0 1074 ------- null} - -t 1.24542 -s 0 -d 9 -p ack -e 40 -c 0 -i 2158 -a 0 -x {10.0 9.0 1074 ------- null} h -t 1.24542 -s 0 -d 9 -p ack -e 40 -c 0 -i 2158 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.24549 -s 10 -d 7 -p ack -e 40 -c 0 -i 2162 -a 0 -x {10.0 9.0 1076 ------- null} + -t 1.24549 -s 7 -d 0 -p ack -e 40 -c 0 -i 2162 -a 0 -x {10.0 9.0 1076 ------- null} h -t 1.24549 -s 7 -d 8 -p ack -e 40 -c 0 -i 2162 -a 0 -x {10.0 9.0 1076 ------- null} r -t 1.24573 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2161 -a 0 -x {9.0 10.0 1085 ------- null} + -t 1.24573 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2161 -a 0 -x {9.0 10.0 1085 ------- null} h -t 1.24573 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2161 -a 0 -x {9.0 10.0 1085 ------- null} r -t 1.24573 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2147 -a 0 -x {9.0 10.0 1078 ------- null} + -t 1.24573 -s 10 -d 7 -p ack -e 40 -c 0 -i 2166 -a 0 -x {10.0 9.0 1078 ------- null} - -t 1.24573 -s 10 -d 7 -p ack -e 40 -c 0 -i 2166 -a 0 -x {10.0 9.0 1078 ------- null} h -t 1.24573 -s 10 -d 7 -p ack -e 40 -c 0 -i 2166 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.24634 -s 0 -d 9 -p ack -e 40 -c 0 -i 2156 -a 0 -x {10.0 9.0 1073 ------- null} + -t 1.24634 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2167 -a 0 -x {9.0 10.0 1088 ------- null} - -t 1.24634 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2167 -a 0 -x {9.0 10.0 1088 ------- null} h -t 1.24634 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2167 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.2465 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2153 -a 0 -x {9.0 10.0 1081 ------- null} - -t 1.2465 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2153 -a 0 -x {9.0 10.0 1081 ------- null} h -t 1.2465 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2153 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.24658 -s 10 -d 7 -p ack -e 40 -c 0 -i 2164 -a 0 -x {10.0 9.0 1077 ------- null} + -t 1.24658 -s 7 -d 0 -p ack -e 40 -c 0 -i 2164 -a 0 -x {10.0 9.0 1077 ------- null} h -t 1.24658 -s 7 -d 8 -p ack -e 40 -c 0 -i 2164 -a 0 -x {10.0 9.0 1077 ------- null} + -t 1.2468 -s 0 -d 9 -p ack -e 40 -c 0 -i 2160 -a 0 -x {10.0 9.0 1075 ------- null} - -t 1.2468 -s 0 -d 9 -p ack -e 40 -c 0 -i 2160 -a 0 -x {10.0 9.0 1075 ------- null} h -t 1.2468 -s 0 -d 9 -p ack -e 40 -c 0 -i 2160 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.24682 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2149 -a 0 -x {9.0 10.0 1079 ------- null} + -t 1.24682 -s 10 -d 7 -p ack -e 40 -c 0 -i 2168 -a 0 -x {10.0 9.0 1079 ------- null} - -t 1.24682 -s 10 -d 7 -p ack -e 40 -c 0 -i 2168 -a 0 -x {10.0 9.0 1079 ------- null} h -t 1.24682 -s 10 -d 7 -p ack -e 40 -c 0 -i 2168 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.24686 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2163 -a 0 -x {9.0 10.0 1086 ------- null} + -t 1.24686 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2163 -a 0 -x {9.0 10.0 1086 ------- null} h -t 1.24686 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2163 -a 0 -x {9.0 10.0 1086 ------- null} r -t 1.24746 -s 0 -d 9 -p ack -e 40 -c 0 -i 2158 -a 0 -x {10.0 9.0 1074 ------- null} + -t 1.24746 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2169 -a 0 -x {9.0 10.0 1089 ------- null} - -t 1.24746 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2169 -a 0 -x {9.0 10.0 1089 ------- null} h -t 1.24746 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2169 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.24771 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2155 -a 0 -x {9.0 10.0 1082 ------- null} - -t 1.24771 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2155 -a 0 -x {9.0 10.0 1082 ------- null} h -t 1.24771 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2155 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.24776 -s 10 -d 7 -p ack -e 40 -c 0 -i 2166 -a 0 -x {10.0 9.0 1078 ------- null} + -t 1.24776 -s 7 -d 0 -p ack -e 40 -c 0 -i 2166 -a 0 -x {10.0 9.0 1078 ------- null} h -t 1.24776 -s 7 -d 8 -p ack -e 40 -c 0 -i 2166 -a 0 -x {10.0 9.0 1078 ------- null} r -t 1.24784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2165 -a 0 -x {9.0 10.0 1087 ------- null} + -t 1.24784 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2165 -a 0 -x {9.0 10.0 1087 ------- null} h -t 1.24784 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2165 -a 0 -x {9.0 10.0 1087 ------- null} r -t 1.24794 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2151 -a 0 -x {9.0 10.0 1080 ------- null} + -t 1.24794 -s 10 -d 7 -p ack -e 40 -c 0 -i 2170 -a 0 -x {10.0 9.0 1080 ------- null} - -t 1.24794 -s 10 -d 7 -p ack -e 40 -c 0 -i 2170 -a 0 -x {10.0 9.0 1080 ------- null} h -t 1.24794 -s 10 -d 7 -p ack -e 40 -c 0 -i 2170 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.24797 -s 0 -d 9 -p ack -e 40 -c 0 -i 2162 -a 0 -x {10.0 9.0 1076 ------- null} - -t 1.24797 -s 0 -d 9 -p ack -e 40 -c 0 -i 2162 -a 0 -x {10.0 9.0 1076 ------- null} h -t 1.24797 -s 0 -d 9 -p ack -e 40 -c 0 -i 2162 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.2488 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2157 -a 0 -x {9.0 10.0 1083 ------- null} - -t 1.2488 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2157 -a 0 -x {9.0 10.0 1083 ------- null} h -t 1.2488 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2157 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.24883 -s 0 -d 9 -p ack -e 40 -c 0 -i 2160 -a 0 -x {10.0 9.0 1075 ------- null} + -t 1.24883 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2171 -a 0 -x {9.0 10.0 1090 ------- null} - -t 1.24883 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2171 -a 0 -x {9.0 10.0 1090 ------- null} h -t 1.24883 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2171 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.24885 -s 10 -d 7 -p ack -e 40 -c 0 -i 2168 -a 0 -x {10.0 9.0 1079 ------- null} + -t 1.24885 -s 7 -d 0 -p ack -e 40 -c 0 -i 2168 -a 0 -x {10.0 9.0 1079 ------- null} h -t 1.24885 -s 7 -d 8 -p ack -e 40 -c 0 -i 2168 -a 0 -x {10.0 9.0 1079 ------- null} + -t 1.24886 -s 0 -d 9 -p ack -e 40 -c 0 -i 2164 -a 0 -x {10.0 9.0 1077 ------- null} - -t 1.24886 -s 0 -d 9 -p ack -e 40 -c 0 -i 2164 -a 0 -x {10.0 9.0 1077 ------- null} h -t 1.24886 -s 0 -d 9 -p ack -e 40 -c 0 -i 2164 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.24914 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2167 -a 0 -x {9.0 10.0 1088 ------- null} + -t 1.24914 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2167 -a 0 -x {9.0 10.0 1088 ------- null} h -t 1.24914 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2167 -a 0 -x {9.0 10.0 1088 ------- null} r -t 1.2493 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2153 -a 0 -x {9.0 10.0 1081 ------- null} + -t 1.2493 -s 10 -d 7 -p ack -e 40 -c 0 -i 2172 -a 0 -x {10.0 9.0 1081 ------- null} - -t 1.2493 -s 10 -d 7 -p ack -e 40 -c 0 -i 2172 -a 0 -x {10.0 9.0 1081 ------- null} h -t 1.2493 -s 10 -d 7 -p ack -e 40 -c 0 -i 2172 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.24989 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2159 -a 0 -x {9.0 10.0 1084 ------- null} - -t 1.24989 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2159 -a 0 -x {9.0 10.0 1084 ------- null} h -t 1.24989 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2159 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.24997 -s 10 -d 7 -p ack -e 40 -c 0 -i 2170 -a 0 -x {10.0 9.0 1080 ------- null} + -t 1.24997 -s 7 -d 0 -p ack -e 40 -c 0 -i 2170 -a 0 -x {10.0 9.0 1080 ------- null} h -t 1.24997 -s 7 -d 8 -p ack -e 40 -c 0 -i 2170 -a 0 -x {10.0 9.0 1080 ------- null} r -t 1.25 -s 0 -d 9 -p ack -e 40 -c 0 -i 2162 -a 0 -x {10.0 9.0 1076 ------- null} + -t 1.25 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2173 -a 0 -x {9.0 10.0 1091 ------- null} - -t 1.25 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2173 -a 0 -x {9.0 10.0 1091 ------- null} h -t 1.25 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2173 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.25008 -s 0 -d 9 -p ack -e 40 -c 0 -i 2166 -a 0 -x {10.0 9.0 1078 ------- null} - -t 1.25008 -s 0 -d 9 -p ack -e 40 -c 0 -i 2166 -a 0 -x {10.0 9.0 1078 ------- null} h -t 1.25008 -s 0 -d 9 -p ack -e 40 -c 0 -i 2166 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.25026 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2169 -a 0 -x {9.0 10.0 1089 ------- null} + -t 1.25026 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2169 -a 0 -x {9.0 10.0 1089 ------- null} h -t 1.25026 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2169 -a 0 -x {9.0 10.0 1089 ------- null} r -t 1.25051 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2155 -a 0 -x {9.0 10.0 1082 ------- null} + -t 1.25051 -s 10 -d 7 -p ack -e 40 -c 0 -i 2174 -a 0 -x {10.0 9.0 1082 ------- null} - -t 1.25051 -s 10 -d 7 -p ack -e 40 -c 0 -i 2174 -a 0 -x {10.0 9.0 1082 ------- null} h -t 1.25051 -s 10 -d 7 -p ack -e 40 -c 0 -i 2174 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.2509 -s 0 -d 9 -p ack -e 40 -c 0 -i 2164 -a 0 -x {10.0 9.0 1077 ------- null} + -t 1.2509 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2175 -a 0 -x {9.0 10.0 1092 ------- null} - -t 1.2509 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2175 -a 0 -x {9.0 10.0 1092 ------- null} h -t 1.2509 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2175 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.25098 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2161 -a 0 -x {9.0 10.0 1085 ------- null} - -t 1.25098 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2161 -a 0 -x {9.0 10.0 1085 ------- null} h -t 1.25098 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2161 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.25109 -s 0 -d 9 -p ack -e 40 -c 0 -i 2168 -a 0 -x {10.0 9.0 1079 ------- null} - -t 1.25109 -s 0 -d 9 -p ack -e 40 -c 0 -i 2168 -a 0 -x {10.0 9.0 1079 ------- null} h -t 1.25109 -s 0 -d 9 -p ack -e 40 -c 0 -i 2168 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.25133 -s 10 -d 7 -p ack -e 40 -c 0 -i 2172 -a 0 -x {10.0 9.0 1081 ------- null} + -t 1.25133 -s 7 -d 0 -p ack -e 40 -c 0 -i 2172 -a 0 -x {10.0 9.0 1081 ------- null} h -t 1.25133 -s 7 -d 8 -p ack -e 40 -c 0 -i 2172 -a 0 -x {10.0 9.0 1081 ------- null} r -t 1.2516 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2157 -a 0 -x {9.0 10.0 1083 ------- null} + -t 1.2516 -s 10 -d 7 -p ack -e 40 -c 0 -i 2176 -a 0 -x {10.0 9.0 1083 ------- null} - -t 1.2516 -s 10 -d 7 -p ack -e 40 -c 0 -i 2176 -a 0 -x {10.0 9.0 1083 ------- null} h -t 1.2516 -s 10 -d 7 -p ack -e 40 -c 0 -i 2176 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.25163 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2171 -a 0 -x {9.0 10.0 1090 ------- null} + -t 1.25163 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2171 -a 0 -x {9.0 10.0 1090 ------- null} h -t 1.25163 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2171 -a 0 -x {9.0 10.0 1090 ------- null} + -t 1.25206 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2163 -a 0 -x {9.0 10.0 1086 ------- null} - -t 1.25206 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2163 -a 0 -x {9.0 10.0 1086 ------- null} h -t 1.25206 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2163 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.25211 -s 0 -d 9 -p ack -e 40 -c 0 -i 2166 -a 0 -x {10.0 9.0 1078 ------- null} + -t 1.25211 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2177 -a 0 -x {9.0 10.0 1093 ------- null} - -t 1.25211 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2177 -a 0 -x {9.0 10.0 1093 ------- null} h -t 1.25211 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2177 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.25226 -s 0 -d 9 -p ack -e 40 -c 0 -i 2170 -a 0 -x {10.0 9.0 1080 ------- null} - -t 1.25226 -s 0 -d 9 -p ack -e 40 -c 0 -i 2170 -a 0 -x {10.0 9.0 1080 ------- null} h -t 1.25226 -s 0 -d 9 -p ack -e 40 -c 0 -i 2170 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.25254 -s 10 -d 7 -p ack -e 40 -c 0 -i 2174 -a 0 -x {10.0 9.0 1082 ------- null} + -t 1.25254 -s 7 -d 0 -p ack -e 40 -c 0 -i 2174 -a 0 -x {10.0 9.0 1082 ------- null} h -t 1.25254 -s 7 -d 8 -p ack -e 40 -c 0 -i 2174 -a 0 -x {10.0 9.0 1082 ------- null} r -t 1.25269 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2159 -a 0 -x {9.0 10.0 1084 ------- null} + -t 1.25269 -s 10 -d 7 -p ack -e 40 -c 0 -i 2178 -a 0 -x {10.0 9.0 1084 ------- null} - -t 1.25269 -s 10 -d 7 -p ack -e 40 -c 0 -i 2178 -a 0 -x {10.0 9.0 1084 ------- null} h -t 1.25269 -s 10 -d 7 -p ack -e 40 -c 0 -i 2178 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.2528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2173 -a 0 -x {9.0 10.0 1091 ------- null} + -t 1.2528 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2173 -a 0 -x {9.0 10.0 1091 ------- null} h -t 1.2528 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2173 -a 0 -x {9.0 10.0 1091 ------- null} r -t 1.25312 -s 0 -d 9 -p ack -e 40 -c 0 -i 2168 -a 0 -x {10.0 9.0 1079 ------- null} + -t 1.25312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2179 -a 0 -x {9.0 10.0 1094 ------- null} - -t 1.25312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2179 -a 0 -x {9.0 10.0 1094 ------- null} h -t 1.25312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2179 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.25315 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2165 -a 0 -x {9.0 10.0 1087 ------- null} - -t 1.25315 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2165 -a 0 -x {9.0 10.0 1087 ------- null} h -t 1.25315 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2165 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.25323 -s 0 -d 9 -p ack -e 40 -c 0 -i 2172 -a 0 -x {10.0 9.0 1081 ------- null} - -t 1.25323 -s 0 -d 9 -p ack -e 40 -c 0 -i 2172 -a 0 -x {10.0 9.0 1081 ------- null} h -t 1.25323 -s 0 -d 9 -p ack -e 40 -c 0 -i 2172 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.25363 -s 10 -d 7 -p ack -e 40 -c 0 -i 2176 -a 0 -x {10.0 9.0 1083 ------- null} + -t 1.25363 -s 7 -d 0 -p ack -e 40 -c 0 -i 2176 -a 0 -x {10.0 9.0 1083 ------- null} h -t 1.25363 -s 7 -d 8 -p ack -e 40 -c 0 -i 2176 -a 0 -x {10.0 9.0 1083 ------- null} r -t 1.2537 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2175 -a 0 -x {9.0 10.0 1092 ------- null} + -t 1.2537 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2175 -a 0 -x {9.0 10.0 1092 ------- null} h -t 1.2537 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2175 -a 0 -x {9.0 10.0 1092 ------- null} r -t 1.25378 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2161 -a 0 -x {9.0 10.0 1085 ------- null} + -t 1.25378 -s 10 -d 7 -p ack -e 40 -c 0 -i 2180 -a 0 -x {10.0 9.0 1085 ------- null} - -t 1.25378 -s 10 -d 7 -p ack -e 40 -c 0 -i 2180 -a 0 -x {10.0 9.0 1085 ------- null} h -t 1.25378 -s 10 -d 7 -p ack -e 40 -c 0 -i 2180 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.25424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2167 -a 0 -x {9.0 10.0 1088 ------- null} - -t 1.25424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2167 -a 0 -x {9.0 10.0 1088 ------- null} h -t 1.25424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2167 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.25429 -s 0 -d 9 -p ack -e 40 -c 0 -i 2170 -a 0 -x {10.0 9.0 1080 ------- null} + -t 1.25429 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2181 -a 0 -x {9.0 10.0 1095 ------- null} - -t 1.25429 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2181 -a 0 -x {9.0 10.0 1095 ------- null} h -t 1.25429 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2181 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.2543 -s 0 -d 9 -p ack -e 40 -c 0 -i 2174 -a 0 -x {10.0 9.0 1082 ------- null} - -t 1.2543 -s 0 -d 9 -p ack -e 40 -c 0 -i 2174 -a 0 -x {10.0 9.0 1082 ------- null} h -t 1.2543 -s 0 -d 9 -p ack -e 40 -c 0 -i 2174 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.25472 -s 10 -d 7 -p ack -e 40 -c 0 -i 2178 -a 0 -x {10.0 9.0 1084 ------- null} + -t 1.25472 -s 7 -d 0 -p ack -e 40 -c 0 -i 2178 -a 0 -x {10.0 9.0 1084 ------- null} h -t 1.25472 -s 7 -d 8 -p ack -e 40 -c 0 -i 2178 -a 0 -x {10.0 9.0 1084 ------- null} r -t 1.25486 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2163 -a 0 -x {9.0 10.0 1086 ------- null} + -t 1.25486 -s 10 -d 7 -p ack -e 40 -c 0 -i 2182 -a 0 -x {10.0 9.0 1086 ------- null} - -t 1.25486 -s 10 -d 7 -p ack -e 40 -c 0 -i 2182 -a 0 -x {10.0 9.0 1086 ------- null} h -t 1.25486 -s 10 -d 7 -p ack -e 40 -c 0 -i 2182 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.25491 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2177 -a 0 -x {9.0 10.0 1093 ------- null} + -t 1.25491 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2177 -a 0 -x {9.0 10.0 1093 ------- null} h -t 1.25491 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2177 -a 0 -x {9.0 10.0 1093 ------- null} r -t 1.25526 -s 0 -d 9 -p ack -e 40 -c 0 -i 2172 -a 0 -x {10.0 9.0 1081 ------- null} + -t 1.25526 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2183 -a 0 -x {9.0 10.0 1096 ------- null} - -t 1.25526 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2183 -a 0 -x {9.0 10.0 1096 ------- null} h -t 1.25526 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2183 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.25533 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2169 -a 0 -x {9.0 10.0 1089 ------- null} - -t 1.25533 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2169 -a 0 -x {9.0 10.0 1089 ------- null} h -t 1.25533 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2169 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.25562 -s 0 -d 9 -p ack -e 40 -c 0 -i 2176 -a 0 -x {10.0 9.0 1083 ------- null} - -t 1.25562 -s 0 -d 9 -p ack -e 40 -c 0 -i 2176 -a 0 -x {10.0 9.0 1083 ------- null} h -t 1.25562 -s 0 -d 9 -p ack -e 40 -c 0 -i 2176 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.25581 -s 10 -d 7 -p ack -e 40 -c 0 -i 2180 -a 0 -x {10.0 9.0 1085 ------- null} + -t 1.25581 -s 7 -d 0 -p ack -e 40 -c 0 -i 2180 -a 0 -x {10.0 9.0 1085 ------- null} h -t 1.25581 -s 7 -d 8 -p ack -e 40 -c 0 -i 2180 -a 0 -x {10.0 9.0 1085 ------- null} r -t 1.25592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2179 -a 0 -x {9.0 10.0 1094 ------- null} + -t 1.25592 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2179 -a 0 -x {9.0 10.0 1094 ------- null} h -t 1.25592 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2179 -a 0 -x {9.0 10.0 1094 ------- null} r -t 1.25595 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2165 -a 0 -x {9.0 10.0 1087 ------- null} + -t 1.25595 -s 10 -d 7 -p ack -e 40 -c 0 -i 2184 -a 0 -x {10.0 9.0 1087 ------- null} - -t 1.25595 -s 10 -d 7 -p ack -e 40 -c 0 -i 2184 -a 0 -x {10.0 9.0 1087 ------- null} h -t 1.25595 -s 10 -d 7 -p ack -e 40 -c 0 -i 2184 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.25634 -s 0 -d 9 -p ack -e 40 -c 0 -i 2174 -a 0 -x {10.0 9.0 1082 ------- null} + -t 1.25634 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2185 -a 0 -x {9.0 10.0 1097 ------- null} - -t 1.25634 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2185 -a 0 -x {9.0 10.0 1097 ------- null} h -t 1.25634 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2185 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.25662 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2171 -a 0 -x {9.0 10.0 1090 ------- null} - -t 1.25662 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2171 -a 0 -x {9.0 10.0 1090 ------- null} h -t 1.25662 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2171 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.25686 -s 0 -d 9 -p ack -e 40 -c 0 -i 2178 -a 0 -x {10.0 9.0 1084 ------- null} - -t 1.25686 -s 0 -d 9 -p ack -e 40 -c 0 -i 2178 -a 0 -x {10.0 9.0 1084 ------- null} h -t 1.25686 -s 0 -d 9 -p ack -e 40 -c 0 -i 2178 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.2569 -s 10 -d 7 -p ack -e 40 -c 0 -i 2182 -a 0 -x {10.0 9.0 1086 ------- null} + -t 1.2569 -s 7 -d 0 -p ack -e 40 -c 0 -i 2182 -a 0 -x {10.0 9.0 1086 ------- null} h -t 1.2569 -s 7 -d 8 -p ack -e 40 -c 0 -i 2182 -a 0 -x {10.0 9.0 1086 ------- null} r -t 1.25704 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2167 -a 0 -x {9.0 10.0 1088 ------- null} + -t 1.25704 -s 10 -d 7 -p ack -e 40 -c 0 -i 2186 -a 0 -x {10.0 9.0 1088 ------- null} - -t 1.25704 -s 10 -d 7 -p ack -e 40 -c 0 -i 2186 -a 0 -x {10.0 9.0 1088 ------- null} h -t 1.25704 -s 10 -d 7 -p ack -e 40 -c 0 -i 2186 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.25709 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2181 -a 0 -x {9.0 10.0 1095 ------- null} + -t 1.25709 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2181 -a 0 -x {9.0 10.0 1095 ------- null} h -t 1.25709 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2181 -a 0 -x {9.0 10.0 1095 ------- null} r -t 1.25765 -s 0 -d 9 -p ack -e 40 -c 0 -i 2176 -a 0 -x {10.0 9.0 1083 ------- null} + -t 1.25765 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2187 -a 0 -x {9.0 10.0 1098 ------- null} - -t 1.25765 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2187 -a 0 -x {9.0 10.0 1098 ------- null} h -t 1.25765 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2187 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.25771 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2173 -a 0 -x {9.0 10.0 1091 ------- null} - -t 1.25771 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2173 -a 0 -x {9.0 10.0 1091 ------- null} h -t 1.25771 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2173 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.25798 -s 10 -d 7 -p ack -e 40 -c 0 -i 2184 -a 0 -x {10.0 9.0 1087 ------- null} + -t 1.25798 -s 7 -d 0 -p ack -e 40 -c 0 -i 2184 -a 0 -x {10.0 9.0 1087 ------- null} h -t 1.25798 -s 7 -d 8 -p ack -e 40 -c 0 -i 2184 -a 0 -x {10.0 9.0 1087 ------- null} + -t 1.258 -s 0 -d 9 -p ack -e 40 -c 0 -i 2180 -a 0 -x {10.0 9.0 1085 ------- null} - -t 1.258 -s 0 -d 9 -p ack -e 40 -c 0 -i 2180 -a 0 -x {10.0 9.0 1085 ------- null} h -t 1.258 -s 0 -d 9 -p ack -e 40 -c 0 -i 2180 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.25806 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2183 -a 0 -x {9.0 10.0 1096 ------- null} + -t 1.25806 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2183 -a 0 -x {9.0 10.0 1096 ------- null} h -t 1.25806 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2183 -a 0 -x {9.0 10.0 1096 ------- null} r -t 1.25813 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2169 -a 0 -x {9.0 10.0 1089 ------- null} + -t 1.25813 -s 10 -d 7 -p ack -e 40 -c 0 -i 2188 -a 0 -x {10.0 9.0 1089 ------- null} - -t 1.25813 -s 10 -d 7 -p ack -e 40 -c 0 -i 2188 -a 0 -x {10.0 9.0 1089 ------- null} h -t 1.25813 -s 10 -d 7 -p ack -e 40 -c 0 -i 2188 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.25883 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2175 -a 0 -x {9.0 10.0 1092 ------- null} - -t 1.25883 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2175 -a 0 -x {9.0 10.0 1092 ------- null} h -t 1.25883 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2175 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.2589 -s 0 -d 9 -p ack -e 40 -c 0 -i 2178 -a 0 -x {10.0 9.0 1084 ------- null} + -t 1.2589 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2189 -a 0 -x {9.0 10.0 1099 ------- null} - -t 1.2589 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2189 -a 0 -x {9.0 10.0 1099 ------- null} h -t 1.2589 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2189 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.25896 -s 0 -d 9 -p ack -e 40 -c 0 -i 2182 -a 0 -x {10.0 9.0 1086 ------- null} - -t 1.25896 -s 0 -d 9 -p ack -e 40 -c 0 -i 2182 -a 0 -x {10.0 9.0 1086 ------- null} h -t 1.25896 -s 0 -d 9 -p ack -e 40 -c 0 -i 2182 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.25907 -s 10 -d 7 -p ack -e 40 -c 0 -i 2186 -a 0 -x {10.0 9.0 1088 ------- null} + -t 1.25907 -s 7 -d 0 -p ack -e 40 -c 0 -i 2186 -a 0 -x {10.0 9.0 1088 ------- null} h -t 1.25907 -s 7 -d 8 -p ack -e 40 -c 0 -i 2186 -a 0 -x {10.0 9.0 1088 ------- null} r -t 1.25914 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2185 -a 0 -x {9.0 10.0 1097 ------- null} + -t 1.25914 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2185 -a 0 -x {9.0 10.0 1097 ------- null} h -t 1.25914 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2185 -a 0 -x {9.0 10.0 1097 ------- null} r -t 1.25942 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2171 -a 0 -x {9.0 10.0 1090 ------- null} + -t 1.25942 -s 10 -d 7 -p ack -e 40 -c 0 -i 2190 -a 0 -x {10.0 9.0 1090 ------- null} - -t 1.25942 -s 10 -d 7 -p ack -e 40 -c 0 -i 2190 -a 0 -x {10.0 9.0 1090 ------- null} h -t 1.25942 -s 10 -d 7 -p ack -e 40 -c 0 -i 2190 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.25992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2177 -a 0 -x {9.0 10.0 1093 ------- null} - -t 1.25992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2177 -a 0 -x {9.0 10.0 1093 ------- null} h -t 1.25992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2177 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.26003 -s 0 -d 9 -p ack -e 40 -c 0 -i 2180 -a 0 -x {10.0 9.0 1085 ------- null} + -t 1.26003 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2191 -a 0 -x {9.0 10.0 1100 ------- null} - -t 1.26003 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2191 -a 0 -x {9.0 10.0 1100 ------- null} h -t 1.26003 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2191 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.26013 -s 0 -d 9 -p ack -e 40 -c 0 -i 2184 -a 0 -x {10.0 9.0 1087 ------- null} - -t 1.26013 -s 0 -d 9 -p ack -e 40 -c 0 -i 2184 -a 0 -x {10.0 9.0 1087 ------- null} h -t 1.26013 -s 0 -d 9 -p ack -e 40 -c 0 -i 2184 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.26016 -s 10 -d 7 -p ack -e 40 -c 0 -i 2188 -a 0 -x {10.0 9.0 1089 ------- null} + -t 1.26016 -s 7 -d 0 -p ack -e 40 -c 0 -i 2188 -a 0 -x {10.0 9.0 1089 ------- null} h -t 1.26016 -s 7 -d 8 -p ack -e 40 -c 0 -i 2188 -a 0 -x {10.0 9.0 1089 ------- null} r -t 1.26045 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2187 -a 0 -x {9.0 10.0 1098 ------- null} + -t 1.26045 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2187 -a 0 -x {9.0 10.0 1098 ------- null} h -t 1.26045 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2187 -a 0 -x {9.0 10.0 1098 ------- null} r -t 1.26051 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2173 -a 0 -x {9.0 10.0 1091 ------- null} + -t 1.26051 -s 10 -d 7 -p ack -e 40 -c 0 -i 2192 -a 0 -x {10.0 9.0 1091 ------- null} - -t 1.26051 -s 10 -d 7 -p ack -e 40 -c 0 -i 2192 -a 0 -x {10.0 9.0 1091 ------- null} h -t 1.26051 -s 10 -d 7 -p ack -e 40 -c 0 -i 2192 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.26099 -s 0 -d 9 -p ack -e 40 -c 0 -i 2182 -a 0 -x {10.0 9.0 1086 ------- null} + -t 1.26099 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2193 -a 0 -x {9.0 10.0 1101 ------- null} - -t 1.26099 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2193 -a 0 -x {9.0 10.0 1101 ------- null} h -t 1.26099 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2193 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.26101 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2179 -a 0 -x {9.0 10.0 1094 ------- null} - -t 1.26101 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2179 -a 0 -x {9.0 10.0 1094 ------- null} h -t 1.26101 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2179 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.26112 -s 0 -d 9 -p ack -e 40 -c 0 -i 2186 -a 0 -x {10.0 9.0 1088 ------- null} - -t 1.26112 -s 0 -d 9 -p ack -e 40 -c 0 -i 2186 -a 0 -x {10.0 9.0 1088 ------- null} h -t 1.26112 -s 0 -d 9 -p ack -e 40 -c 0 -i 2186 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.26146 -s 10 -d 7 -p ack -e 40 -c 0 -i 2190 -a 0 -x {10.0 9.0 1090 ------- null} + -t 1.26146 -s 7 -d 0 -p ack -e 40 -c 0 -i 2190 -a 0 -x {10.0 9.0 1090 ------- null} h -t 1.26146 -s 7 -d 8 -p ack -e 40 -c 0 -i 2190 -a 0 -x {10.0 9.0 1090 ------- null} r -t 1.26163 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2175 -a 0 -x {9.0 10.0 1092 ------- null} + -t 1.26163 -s 10 -d 7 -p ack -e 40 -c 0 -i 2194 -a 0 -x {10.0 9.0 1092 ------- null} - -t 1.26163 -s 10 -d 7 -p ack -e 40 -c 0 -i 2194 -a 0 -x {10.0 9.0 1092 ------- null} h -t 1.26163 -s 10 -d 7 -p ack -e 40 -c 0 -i 2194 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.2617 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2189 -a 0 -x {9.0 10.0 1099 ------- null} + -t 1.2617 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2189 -a 0 -x {9.0 10.0 1099 ------- null} h -t 1.2617 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2189 -a 0 -x {9.0 10.0 1099 ------- null} + -t 1.2621 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2181 -a 0 -x {9.0 10.0 1095 ------- null} - -t 1.2621 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2181 -a 0 -x {9.0 10.0 1095 ------- null} h -t 1.2621 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2181 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.26216 -s 0 -d 9 -p ack -e 40 -c 0 -i 2184 -a 0 -x {10.0 9.0 1087 ------- null} + -t 1.26216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2195 -a 0 -x {9.0 10.0 1102 ------- null} - -t 1.26216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2195 -a 0 -x {9.0 10.0 1102 ------- null} h -t 1.26216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2195 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.26232 -s 0 -d 9 -p ack -e 40 -c 0 -i 2188 -a 0 -x {10.0 9.0 1089 ------- null} - -t 1.26232 -s 0 -d 9 -p ack -e 40 -c 0 -i 2188 -a 0 -x {10.0 9.0 1089 ------- null} h -t 1.26232 -s 0 -d 9 -p ack -e 40 -c 0 -i 2188 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.26254 -s 10 -d 7 -p ack -e 40 -c 0 -i 2192 -a 0 -x {10.0 9.0 1091 ------- null} + -t 1.26254 -s 7 -d 0 -p ack -e 40 -c 0 -i 2192 -a 0 -x {10.0 9.0 1091 ------- null} h -t 1.26254 -s 7 -d 8 -p ack -e 40 -c 0 -i 2192 -a 0 -x {10.0 9.0 1091 ------- null} r -t 1.26272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2177 -a 0 -x {9.0 10.0 1093 ------- null} + -t 1.26272 -s 10 -d 7 -p ack -e 40 -c 0 -i 2196 -a 0 -x {10.0 9.0 1093 ------- null} - -t 1.26272 -s 10 -d 7 -p ack -e 40 -c 0 -i 2196 -a 0 -x {10.0 9.0 1093 ------- null} h -t 1.26272 -s 10 -d 7 -p ack -e 40 -c 0 -i 2196 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.26283 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2191 -a 0 -x {9.0 10.0 1100 ------- null} + -t 1.26283 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2191 -a 0 -x {9.0 10.0 1100 ------- null} h -t 1.26283 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2191 -a 0 -x {9.0 10.0 1100 ------- null} r -t 1.26315 -s 0 -d 9 -p ack -e 40 -c 0 -i 2186 -a 0 -x {10.0 9.0 1088 ------- null} + -t 1.26315 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2197 -a 0 -x {9.0 10.0 1103 ------- null} - -t 1.26315 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2197 -a 0 -x {9.0 10.0 1103 ------- null} h -t 1.26315 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2197 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.26318 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2183 -a 0 -x {9.0 10.0 1096 ------- null} - -t 1.26318 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2183 -a 0 -x {9.0 10.0 1096 ------- null} h -t 1.26318 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2183 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.26339 -s 0 -d 9 -p ack -e 40 -c 0 -i 2190 -a 0 -x {10.0 9.0 1090 ------- null} - -t 1.26339 -s 0 -d 9 -p ack -e 40 -c 0 -i 2190 -a 0 -x {10.0 9.0 1090 ------- null} h -t 1.26339 -s 0 -d 9 -p ack -e 40 -c 0 -i 2190 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.26366 -s 10 -d 7 -p ack -e 40 -c 0 -i 2194 -a 0 -x {10.0 9.0 1092 ------- null} + -t 1.26366 -s 7 -d 0 -p ack -e 40 -c 0 -i 2194 -a 0 -x {10.0 9.0 1092 ------- null} h -t 1.26366 -s 7 -d 8 -p ack -e 40 -c 0 -i 2194 -a 0 -x {10.0 9.0 1092 ------- null} r -t 1.26379 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2193 -a 0 -x {9.0 10.0 1101 ------- null} + -t 1.26379 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2193 -a 0 -x {9.0 10.0 1101 ------- null} h -t 1.26379 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2193 -a 0 -x {9.0 10.0 1101 ------- null} r -t 1.26381 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2179 -a 0 -x {9.0 10.0 1094 ------- null} + -t 1.26381 -s 10 -d 7 -p ack -e 40 -c 0 -i 2198 -a 0 -x {10.0 9.0 1094 ------- null} - -t 1.26381 -s 10 -d 7 -p ack -e 40 -c 0 -i 2198 -a 0 -x {10.0 9.0 1094 ------- null} h -t 1.26381 -s 10 -d 7 -p ack -e 40 -c 0 -i 2198 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.26427 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2185 -a 0 -x {9.0 10.0 1097 ------- null} - -t 1.26427 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2185 -a 0 -x {9.0 10.0 1097 ------- null} h -t 1.26427 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2185 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.26435 -s 0 -d 9 -p ack -e 40 -c 0 -i 2188 -a 0 -x {10.0 9.0 1089 ------- null} + -t 1.26435 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2199 -a 0 -x {9.0 10.0 1104 ------- null} - -t 1.26435 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2199 -a 0 -x {9.0 10.0 1104 ------- null} h -t 1.26435 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2199 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.2645 -s 0 -d 9 -p ack -e 40 -c 0 -i 2192 -a 0 -x {10.0 9.0 1091 ------- null} - -t 1.2645 -s 0 -d 9 -p ack -e 40 -c 0 -i 2192 -a 0 -x {10.0 9.0 1091 ------- null} h -t 1.2645 -s 0 -d 9 -p ack -e 40 -c 0 -i 2192 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.26475 -s 10 -d 7 -p ack -e 40 -c 0 -i 2196 -a 0 -x {10.0 9.0 1093 ------- null} + -t 1.26475 -s 7 -d 0 -p ack -e 40 -c 0 -i 2196 -a 0 -x {10.0 9.0 1093 ------- null} h -t 1.26475 -s 7 -d 8 -p ack -e 40 -c 0 -i 2196 -a 0 -x {10.0 9.0 1093 ------- null} r -t 1.2649 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2181 -a 0 -x {9.0 10.0 1095 ------- null} + -t 1.2649 -s 10 -d 7 -p ack -e 40 -c 0 -i 2200 -a 0 -x {10.0 9.0 1095 ------- null} - -t 1.2649 -s 10 -d 7 -p ack -e 40 -c 0 -i 2200 -a 0 -x {10.0 9.0 1095 ------- null} h -t 1.2649 -s 10 -d 7 -p ack -e 40 -c 0 -i 2200 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.26496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2195 -a 0 -x {9.0 10.0 1102 ------- null} + -t 1.26496 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2195 -a 0 -x {9.0 10.0 1102 ------- null} h -t 1.26496 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2195 -a 0 -x {9.0 10.0 1102 ------- null} + -t 1.26536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2187 -a 0 -x {9.0 10.0 1098 ------- null} - -t 1.26536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2187 -a 0 -x {9.0 10.0 1098 ------- null} h -t 1.26536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2187 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.26542 -s 0 -d 9 -p ack -e 40 -c 0 -i 2190 -a 0 -x {10.0 9.0 1090 ------- null} + -t 1.26542 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2201 -a 0 -x {9.0 10.0 1105 ------- null} - -t 1.26542 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2201 -a 0 -x {9.0 10.0 1105 ------- null} h -t 1.26542 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2201 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.2655 -s 0 -d 9 -p ack -e 40 -c 0 -i 2194 -a 0 -x {10.0 9.0 1092 ------- null} - -t 1.2655 -s 0 -d 9 -p ack -e 40 -c 0 -i 2194 -a 0 -x {10.0 9.0 1092 ------- null} h -t 1.2655 -s 0 -d 9 -p ack -e 40 -c 0 -i 2194 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.26584 -s 10 -d 7 -p ack -e 40 -c 0 -i 2198 -a 0 -x {10.0 9.0 1094 ------- null} + -t 1.26584 -s 7 -d 0 -p ack -e 40 -c 0 -i 2198 -a 0 -x {10.0 9.0 1094 ------- null} h -t 1.26584 -s 7 -d 8 -p ack -e 40 -c 0 -i 2198 -a 0 -x {10.0 9.0 1094 ------- null} r -t 1.26595 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2197 -a 0 -x {9.0 10.0 1103 ------- null} + -t 1.26595 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2197 -a 0 -x {9.0 10.0 1103 ------- null} h -t 1.26595 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2197 -a 0 -x {9.0 10.0 1103 ------- null} r -t 1.26598 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2183 -a 0 -x {9.0 10.0 1096 ------- null} + -t 1.26598 -s 10 -d 7 -p ack -e 40 -c 0 -i 2202 -a 0 -x {10.0 9.0 1096 ------- null} - -t 1.26598 -s 10 -d 7 -p ack -e 40 -c 0 -i 2202 -a 0 -x {10.0 9.0 1096 ------- null} h -t 1.26598 -s 10 -d 7 -p ack -e 40 -c 0 -i 2202 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.26645 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2189 -a 0 -x {9.0 10.0 1099 ------- null} - -t 1.26645 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2189 -a 0 -x {9.0 10.0 1099 ------- null} h -t 1.26645 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2189 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.26653 -s 0 -d 9 -p ack -e 40 -c 0 -i 2192 -a 0 -x {10.0 9.0 1091 ------- null} + -t 1.26653 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2203 -a 0 -x {9.0 10.0 1106 ------- null} - -t 1.26653 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2203 -a 0 -x {9.0 10.0 1106 ------- null} h -t 1.26653 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2203 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.26661 -s 0 -d 9 -p ack -e 40 -c 0 -i 2196 -a 0 -x {10.0 9.0 1093 ------- null} - -t 1.26661 -s 0 -d 9 -p ack -e 40 -c 0 -i 2196 -a 0 -x {10.0 9.0 1093 ------- null} h -t 1.26661 -s 0 -d 9 -p ack -e 40 -c 0 -i 2196 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.26693 -s 10 -d 7 -p ack -e 40 -c 0 -i 2200 -a 0 -x {10.0 9.0 1095 ------- null} + -t 1.26693 -s 7 -d 0 -p ack -e 40 -c 0 -i 2200 -a 0 -x {10.0 9.0 1095 ------- null} h -t 1.26693 -s 7 -d 8 -p ack -e 40 -c 0 -i 2200 -a 0 -x {10.0 9.0 1095 ------- null} r -t 1.26707 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2185 -a 0 -x {9.0 10.0 1097 ------- null} + -t 1.26707 -s 10 -d 7 -p ack -e 40 -c 0 -i 2204 -a 0 -x {10.0 9.0 1097 ------- null} - -t 1.26707 -s 10 -d 7 -p ack -e 40 -c 0 -i 2204 -a 0 -x {10.0 9.0 1097 ------- null} h -t 1.26707 -s 10 -d 7 -p ack -e 40 -c 0 -i 2204 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.26715 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2199 -a 0 -x {9.0 10.0 1104 ------- null} + -t 1.26715 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2199 -a 0 -x {9.0 10.0 1104 ------- null} h -t 1.26715 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2199 -a 0 -x {9.0 10.0 1104 ------- null} + -t 1.26754 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2191 -a 0 -x {9.0 10.0 1100 ------- null} - -t 1.26754 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2191 -a 0 -x {9.0 10.0 1100 ------- null} h -t 1.26754 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2191 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.26754 -s 0 -d 9 -p ack -e 40 -c 0 -i 2194 -a 0 -x {10.0 9.0 1092 ------- null} + -t 1.26754 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2205 -a 0 -x {9.0 10.0 1107 ------- null} - -t 1.26754 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2205 -a 0 -x {9.0 10.0 1107 ------- null} h -t 1.26754 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2205 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.26766 -s 0 -d 9 -p ack -e 40 -c 0 -i 2198 -a 0 -x {10.0 9.0 1094 ------- null} - -t 1.26766 -s 0 -d 9 -p ack -e 40 -c 0 -i 2198 -a 0 -x {10.0 9.0 1094 ------- null} h -t 1.26766 -s 0 -d 9 -p ack -e 40 -c 0 -i 2198 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.26802 -s 10 -d 7 -p ack -e 40 -c 0 -i 2202 -a 0 -x {10.0 9.0 1096 ------- null} + -t 1.26802 -s 7 -d 0 -p ack -e 40 -c 0 -i 2202 -a 0 -x {10.0 9.0 1096 ------- null} h -t 1.26802 -s 7 -d 8 -p ack -e 40 -c 0 -i 2202 -a 0 -x {10.0 9.0 1096 ------- null} r -t 1.26816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2187 -a 0 -x {9.0 10.0 1098 ------- null} + -t 1.26816 -s 10 -d 7 -p ack -e 40 -c 0 -i 2206 -a 0 -x {10.0 9.0 1098 ------- null} - -t 1.26816 -s 10 -d 7 -p ack -e 40 -c 0 -i 2206 -a 0 -x {10.0 9.0 1098 ------- null} h -t 1.26816 -s 10 -d 7 -p ack -e 40 -c 0 -i 2206 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.26822 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2201 -a 0 -x {9.0 10.0 1105 ------- null} + -t 1.26822 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2201 -a 0 -x {9.0 10.0 1105 ------- null} h -t 1.26822 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2201 -a 0 -x {9.0 10.0 1105 ------- null} + -t 1.26862 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2193 -a 0 -x {9.0 10.0 1101 ------- null} - -t 1.26862 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2193 -a 0 -x {9.0 10.0 1101 ------- null} h -t 1.26862 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2193 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.26864 -s 0 -d 9 -p ack -e 40 -c 0 -i 2196 -a 0 -x {10.0 9.0 1093 ------- null} + -t 1.26864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2207 -a 0 -x {9.0 10.0 1108 ------- null} - -t 1.26864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2207 -a 0 -x {9.0 10.0 1108 ------- null} h -t 1.26864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2207 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.2688 -s 0 -d 9 -p ack -e 40 -c 0 -i 2200 -a 0 -x {10.0 9.0 1095 ------- null} - -t 1.2688 -s 0 -d 9 -p ack -e 40 -c 0 -i 2200 -a 0 -x {10.0 9.0 1095 ------- null} h -t 1.2688 -s 0 -d 9 -p ack -e 40 -c 0 -i 2200 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.2691 -s 10 -d 7 -p ack -e 40 -c 0 -i 2204 -a 0 -x {10.0 9.0 1097 ------- null} + -t 1.2691 -s 7 -d 0 -p ack -e 40 -c 0 -i 2204 -a 0 -x {10.0 9.0 1097 ------- null} h -t 1.2691 -s 7 -d 8 -p ack -e 40 -c 0 -i 2204 -a 0 -x {10.0 9.0 1097 ------- null} r -t 1.26925 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2189 -a 0 -x {9.0 10.0 1099 ------- null} + -t 1.26925 -s 10 -d 7 -p ack -e 40 -c 0 -i 2208 -a 0 -x {10.0 9.0 1099 ------- null} - -t 1.26925 -s 10 -d 7 -p ack -e 40 -c 0 -i 2208 -a 0 -x {10.0 9.0 1099 ------- null} h -t 1.26925 -s 10 -d 7 -p ack -e 40 -c 0 -i 2208 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.26933 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2203 -a 0 -x {9.0 10.0 1106 ------- null} + -t 1.26933 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2203 -a 0 -x {9.0 10.0 1106 ------- null} h -t 1.26933 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2203 -a 0 -x {9.0 10.0 1106 ------- null} r -t 1.2697 -s 0 -d 9 -p ack -e 40 -c 0 -i 2198 -a 0 -x {10.0 9.0 1094 ------- null} + -t 1.2697 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2209 -a 0 -x {9.0 10.0 1109 ------- null} - -t 1.2697 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2209 -a 0 -x {9.0 10.0 1109 ------- null} h -t 1.2697 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2209 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.26971 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2195 -a 0 -x {9.0 10.0 1102 ------- null} - -t 1.26971 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2195 -a 0 -x {9.0 10.0 1102 ------- null} h -t 1.26971 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2195 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.26982 -s 0 -d 9 -p ack -e 40 -c 0 -i 2202 -a 0 -x {10.0 9.0 1096 ------- null} - -t 1.26982 -s 0 -d 9 -p ack -e 40 -c 0 -i 2202 -a 0 -x {10.0 9.0 1096 ------- null} h -t 1.26982 -s 0 -d 9 -p ack -e 40 -c 0 -i 2202 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.27019 -s 10 -d 7 -p ack -e 40 -c 0 -i 2206 -a 0 -x {10.0 9.0 1098 ------- null} + -t 1.27019 -s 7 -d 0 -p ack -e 40 -c 0 -i 2206 -a 0 -x {10.0 9.0 1098 ------- null} h -t 1.27019 -s 7 -d 8 -p ack -e 40 -c 0 -i 2206 -a 0 -x {10.0 9.0 1098 ------- null} r -t 1.27034 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2191 -a 0 -x {9.0 10.0 1100 ------- null} + -t 1.27034 -s 10 -d 7 -p ack -e 40 -c 0 -i 2210 -a 0 -x {10.0 9.0 1100 ------- null} - -t 1.27034 -s 10 -d 7 -p ack -e 40 -c 0 -i 2210 -a 0 -x {10.0 9.0 1100 ------- null} h -t 1.27034 -s 10 -d 7 -p ack -e 40 -c 0 -i 2210 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.27034 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2205 -a 0 -x {9.0 10.0 1107 ------- null} + -t 1.27034 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2205 -a 0 -x {9.0 10.0 1107 ------- null} h -t 1.27034 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2205 -a 0 -x {9.0 10.0 1107 ------- null} + -t 1.2708 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2197 -a 0 -x {9.0 10.0 1103 ------- null} - -t 1.2708 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2197 -a 0 -x {9.0 10.0 1103 ------- null} h -t 1.2708 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2197 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.27083 -s 0 -d 9 -p ack -e 40 -c 0 -i 2200 -a 0 -x {10.0 9.0 1095 ------- null} + -t 1.27083 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2211 -a 0 -x {9.0 10.0 1110 ------- null} - -t 1.27083 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2211 -a 0 -x {9.0 10.0 1110 ------- null} h -t 1.27083 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2211 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.2709 -s 0 -d 9 -p ack -e 40 -c 0 -i 2204 -a 0 -x {10.0 9.0 1097 ------- null} - -t 1.2709 -s 0 -d 9 -p ack -e 40 -c 0 -i 2204 -a 0 -x {10.0 9.0 1097 ------- null} h -t 1.2709 -s 0 -d 9 -p ack -e 40 -c 0 -i 2204 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.27128 -s 10 -d 7 -p ack -e 40 -c 0 -i 2208 -a 0 -x {10.0 9.0 1099 ------- null} + -t 1.27128 -s 7 -d 0 -p ack -e 40 -c 0 -i 2208 -a 0 -x {10.0 9.0 1099 ------- null} h -t 1.27128 -s 7 -d 8 -p ack -e 40 -c 0 -i 2208 -a 0 -x {10.0 9.0 1099 ------- null} r -t 1.27142 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2193 -a 0 -x {9.0 10.0 1101 ------- null} + -t 1.27142 -s 10 -d 7 -p ack -e 40 -c 0 -i 2212 -a 0 -x {10.0 9.0 1101 ------- null} - -t 1.27142 -s 10 -d 7 -p ack -e 40 -c 0 -i 2212 -a 0 -x {10.0 9.0 1101 ------- null} h -t 1.27142 -s 10 -d 7 -p ack -e 40 -c 0 -i 2212 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.27144 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2207 -a 0 -x {9.0 10.0 1108 ------- null} + -t 1.27144 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2207 -a 0 -x {9.0 10.0 1108 ------- null} h -t 1.27144 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2207 -a 0 -x {9.0 10.0 1108 ------- null} r -t 1.27186 -s 0 -d 9 -p ack -e 40 -c 0 -i 2202 -a 0 -x {10.0 9.0 1096 ------- null} + -t 1.27186 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2213 -a 0 -x {9.0 10.0 1111 ------- null} - -t 1.27186 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2213 -a 0 -x {9.0 10.0 1111 ------- null} h -t 1.27186 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2213 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.27189 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2199 -a 0 -x {9.0 10.0 1104 ------- null} - -t 1.27189 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2199 -a 0 -x {9.0 10.0 1104 ------- null} h -t 1.27189 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2199 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.27214 -s 0 -d 9 -p ack -e 40 -c 0 -i 2206 -a 0 -x {10.0 9.0 1098 ------- null} - -t 1.27214 -s 0 -d 9 -p ack -e 40 -c 0 -i 2206 -a 0 -x {10.0 9.0 1098 ------- null} h -t 1.27214 -s 0 -d 9 -p ack -e 40 -c 0 -i 2206 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.27237 -s 10 -d 7 -p ack -e 40 -c 0 -i 2210 -a 0 -x {10.0 9.0 1100 ------- null} + -t 1.27237 -s 7 -d 0 -p ack -e 40 -c 0 -i 2210 -a 0 -x {10.0 9.0 1100 ------- null} h -t 1.27237 -s 7 -d 8 -p ack -e 40 -c 0 -i 2210 -a 0 -x {10.0 9.0 1100 ------- null} r -t 1.2725 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2209 -a 0 -x {9.0 10.0 1109 ------- null} + -t 1.2725 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2209 -a 0 -x {9.0 10.0 1109 ------- null} h -t 1.2725 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2209 -a 0 -x {9.0 10.0 1109 ------- null} r -t 1.27251 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2195 -a 0 -x {9.0 10.0 1102 ------- null} + -t 1.27251 -s 10 -d 7 -p ack -e 40 -c 0 -i 2214 -a 0 -x {10.0 9.0 1102 ------- null} - -t 1.27251 -s 10 -d 7 -p ack -e 40 -c 0 -i 2214 -a 0 -x {10.0 9.0 1102 ------- null} h -t 1.27251 -s 10 -d 7 -p ack -e 40 -c 0 -i 2214 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.27293 -s 0 -d 9 -p ack -e 40 -c 0 -i 2204 -a 0 -x {10.0 9.0 1097 ------- null} + -t 1.27293 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2215 -a 0 -x {9.0 10.0 1112 ------- null} - -t 1.27293 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2215 -a 0 -x {9.0 10.0 1112 ------- null} h -t 1.27293 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2215 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.27298 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2201 -a 0 -x {9.0 10.0 1105 ------- null} - -t 1.27298 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2201 -a 0 -x {9.0 10.0 1105 ------- null} h -t 1.27298 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2201 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.27317 -s 0 -d 9 -p ack -e 40 -c 0 -i 2208 -a 0 -x {10.0 9.0 1099 ------- null} - -t 1.27317 -s 0 -d 9 -p ack -e 40 -c 0 -i 2208 -a 0 -x {10.0 9.0 1099 ------- null} h -t 1.27317 -s 0 -d 9 -p ack -e 40 -c 0 -i 2208 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.27346 -s 10 -d 7 -p ack -e 40 -c 0 -i 2212 -a 0 -x {10.0 9.0 1101 ------- null} + -t 1.27346 -s 7 -d 0 -p ack -e 40 -c 0 -i 2212 -a 0 -x {10.0 9.0 1101 ------- null} h -t 1.27346 -s 7 -d 8 -p ack -e 40 -c 0 -i 2212 -a 0 -x {10.0 9.0 1101 ------- null} r -t 1.2736 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2197 -a 0 -x {9.0 10.0 1103 ------- null} + -t 1.2736 -s 10 -d 7 -p ack -e 40 -c 0 -i 2216 -a 0 -x {10.0 9.0 1103 ------- null} - -t 1.2736 -s 10 -d 7 -p ack -e 40 -c 0 -i 2216 -a 0 -x {10.0 9.0 1103 ------- null} h -t 1.2736 -s 10 -d 7 -p ack -e 40 -c 0 -i 2216 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.27363 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2211 -a 0 -x {9.0 10.0 1110 ------- null} + -t 1.27363 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2211 -a 0 -x {9.0 10.0 1110 ------- null} h -t 1.27363 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2211 -a 0 -x {9.0 10.0 1110 ------- null} + -t 1.27406 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2203 -a 0 -x {9.0 10.0 1106 ------- null} - -t 1.27406 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2203 -a 0 -x {9.0 10.0 1106 ------- null} h -t 1.27406 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2203 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.27418 -s 0 -d 9 -p ack -e 40 -c 0 -i 2206 -a 0 -x {10.0 9.0 1098 ------- null} + -t 1.27418 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2217 -a 0 -x {9.0 10.0 1113 ------- null} - -t 1.27418 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2217 -a 0 -x {9.0 10.0 1113 ------- null} h -t 1.27418 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2217 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.27437 -s 0 -d 9 -p ack -e 40 -c 0 -i 2210 -a 0 -x {10.0 9.0 1100 ------- null} - -t 1.27437 -s 0 -d 9 -p ack -e 40 -c 0 -i 2210 -a 0 -x {10.0 9.0 1100 ------- null} h -t 1.27437 -s 0 -d 9 -p ack -e 40 -c 0 -i 2210 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.27454 -s 10 -d 7 -p ack -e 40 -c 0 -i 2214 -a 0 -x {10.0 9.0 1102 ------- null} + -t 1.27454 -s 7 -d 0 -p ack -e 40 -c 0 -i 2214 -a 0 -x {10.0 9.0 1102 ------- null} h -t 1.27454 -s 7 -d 8 -p ack -e 40 -c 0 -i 2214 -a 0 -x {10.0 9.0 1102 ------- null} r -t 1.27466 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2213 -a 0 -x {9.0 10.0 1111 ------- null} + -t 1.27466 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2213 -a 0 -x {9.0 10.0 1111 ------- null} h -t 1.27466 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2213 -a 0 -x {9.0 10.0 1111 ------- null} r -t 1.27469 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2199 -a 0 -x {9.0 10.0 1104 ------- null} + -t 1.27469 -s 10 -d 7 -p ack -e 40 -c 0 -i 2218 -a 0 -x {10.0 9.0 1104 ------- null} - -t 1.27469 -s 10 -d 7 -p ack -e 40 -c 0 -i 2218 -a 0 -x {10.0 9.0 1104 ------- null} h -t 1.27469 -s 10 -d 7 -p ack -e 40 -c 0 -i 2218 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.2752 -s 0 -d 9 -p ack -e 40 -c 0 -i 2208 -a 0 -x {10.0 9.0 1099 ------- null} + -t 1.2752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2219 -a 0 -x {9.0 10.0 1114 ------- null} - -t 1.2752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2219 -a 0 -x {9.0 10.0 1114 ------- null} h -t 1.2752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2219 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.27531 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2205 -a 0 -x {9.0 10.0 1107 ------- null} - -t 1.27531 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2205 -a 0 -x {9.0 10.0 1107 ------- null} h -t 1.27531 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2205 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.27555 -s 0 -d 9 -p ack -e 40 -c 0 -i 2212 -a 0 -x {10.0 9.0 1101 ------- null} - -t 1.27555 -s 0 -d 9 -p ack -e 40 -c 0 -i 2212 -a 0 -x {10.0 9.0 1101 ------- null} h -t 1.27555 -s 0 -d 9 -p ack -e 40 -c 0 -i 2212 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.27563 -s 10 -d 7 -p ack -e 40 -c 0 -i 2216 -a 0 -x {10.0 9.0 1103 ------- null} + -t 1.27563 -s 7 -d 0 -p ack -e 40 -c 0 -i 2216 -a 0 -x {10.0 9.0 1103 ------- null} h -t 1.27563 -s 7 -d 8 -p ack -e 40 -c 0 -i 2216 -a 0 -x {10.0 9.0 1103 ------- null} r -t 1.27573 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2215 -a 0 -x {9.0 10.0 1112 ------- null} + -t 1.27573 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2215 -a 0 -x {9.0 10.0 1112 ------- null} h -t 1.27573 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2215 -a 0 -x {9.0 10.0 1112 ------- null} r -t 1.27578 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2201 -a 0 -x {9.0 10.0 1105 ------- null} + -t 1.27578 -s 10 -d 7 -p ack -e 40 -c 0 -i 2220 -a 0 -x {10.0 9.0 1105 ------- null} - -t 1.27578 -s 10 -d 7 -p ack -e 40 -c 0 -i 2220 -a 0 -x {10.0 9.0 1105 ------- null} h -t 1.27578 -s 10 -d 7 -p ack -e 40 -c 0 -i 2220 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.2764 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2207 -a 0 -x {9.0 10.0 1108 ------- null} - -t 1.2764 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2207 -a 0 -x {9.0 10.0 1108 ------- null} h -t 1.2764 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2207 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.2764 -s 0 -d 9 -p ack -e 40 -c 0 -i 2210 -a 0 -x {10.0 9.0 1100 ------- null} + -t 1.2764 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2221 -a 0 -x {9.0 10.0 1115 ------- null} - -t 1.2764 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2221 -a 0 -x {9.0 10.0 1115 ------- null} h -t 1.2764 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2221 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.27667 -s 0 -d 9 -p ack -e 40 -c 0 -i 2214 -a 0 -x {10.0 9.0 1102 ------- null} - -t 1.27667 -s 0 -d 9 -p ack -e 40 -c 0 -i 2214 -a 0 -x {10.0 9.0 1102 ------- null} h -t 1.27667 -s 0 -d 9 -p ack -e 40 -c 0 -i 2214 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.27672 -s 10 -d 7 -p ack -e 40 -c 0 -i 2218 -a 0 -x {10.0 9.0 1104 ------- null} + -t 1.27672 -s 7 -d 0 -p ack -e 40 -c 0 -i 2218 -a 0 -x {10.0 9.0 1104 ------- null} h -t 1.27672 -s 7 -d 8 -p ack -e 40 -c 0 -i 2218 -a 0 -x {10.0 9.0 1104 ------- null} r -t 1.27686 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2203 -a 0 -x {9.0 10.0 1106 ------- null} + -t 1.27686 -s 10 -d 7 -p ack -e 40 -c 0 -i 2222 -a 0 -x {10.0 9.0 1106 ------- null} - -t 1.27686 -s 10 -d 7 -p ack -e 40 -c 0 -i 2222 -a 0 -x {10.0 9.0 1106 ------- null} h -t 1.27686 -s 10 -d 7 -p ack -e 40 -c 0 -i 2222 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.27698 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2217 -a 0 -x {9.0 10.0 1113 ------- null} + -t 1.27698 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2217 -a 0 -x {9.0 10.0 1113 ------- null} h -t 1.27698 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2217 -a 0 -x {9.0 10.0 1113 ------- null} + -t 1.2775 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2209 -a 0 -x {9.0 10.0 1109 ------- null} - -t 1.2775 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2209 -a 0 -x {9.0 10.0 1109 ------- null} h -t 1.2775 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2209 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.27758 -s 0 -d 9 -p ack -e 40 -c 0 -i 2212 -a 0 -x {10.0 9.0 1101 ------- null} + -t 1.27758 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2223 -a 0 -x {9.0 10.0 1116 ------- null} - -t 1.27758 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2223 -a 0 -x {9.0 10.0 1116 ------- null} h -t 1.27758 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2223 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.27771 -s 0 -d 9 -p ack -e 40 -c 0 -i 2216 -a 0 -x {10.0 9.0 1103 ------- null} - -t 1.27771 -s 0 -d 9 -p ack -e 40 -c 0 -i 2216 -a 0 -x {10.0 9.0 1103 ------- null} h -t 1.27771 -s 0 -d 9 -p ack -e 40 -c 0 -i 2216 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.27781 -s 10 -d 7 -p ack -e 40 -c 0 -i 2220 -a 0 -x {10.0 9.0 1105 ------- null} + -t 1.27781 -s 7 -d 0 -p ack -e 40 -c 0 -i 2220 -a 0 -x {10.0 9.0 1105 ------- null} h -t 1.27781 -s 7 -d 8 -p ack -e 40 -c 0 -i 2220 -a 0 -x {10.0 9.0 1105 ------- null} r -t 1.278 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2219 -a 0 -x {9.0 10.0 1114 ------- null} + -t 1.278 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2219 -a 0 -x {9.0 10.0 1114 ------- null} h -t 1.278 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2219 -a 0 -x {9.0 10.0 1114 ------- null} r -t 1.27811 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2205 -a 0 -x {9.0 10.0 1107 ------- null} + -t 1.27811 -s 10 -d 7 -p ack -e 40 -c 0 -i 2224 -a 0 -x {10.0 9.0 1107 ------- null} - -t 1.27811 -s 10 -d 7 -p ack -e 40 -c 0 -i 2224 -a 0 -x {10.0 9.0 1107 ------- null} h -t 1.27811 -s 10 -d 7 -p ack -e 40 -c 0 -i 2224 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.27859 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2211 -a 0 -x {9.0 10.0 1110 ------- null} - -t 1.27859 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2211 -a 0 -x {9.0 10.0 1110 ------- null} h -t 1.27859 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2211 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.27869 -s 0 -d 9 -p ack -e 40 -c 0 -i 2218 -a 0 -x {10.0 9.0 1104 ------- null} - -t 1.27869 -s 0 -d 9 -p ack -e 40 -c 0 -i 2218 -a 0 -x {10.0 9.0 1104 ------- null} h -t 1.27869 -s 0 -d 9 -p ack -e 40 -c 0 -i 2218 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.2787 -s 0 -d 9 -p ack -e 40 -c 0 -i 2214 -a 0 -x {10.0 9.0 1102 ------- null} + -t 1.2787 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2225 -a 0 -x {9.0 10.0 1117 ------- null} - -t 1.2787 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2225 -a 0 -x {9.0 10.0 1117 ------- null} h -t 1.2787 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2225 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.2789 -s 10 -d 7 -p ack -e 40 -c 0 -i 2222 -a 0 -x {10.0 9.0 1106 ------- null} + -t 1.2789 -s 7 -d 0 -p ack -e 40 -c 0 -i 2222 -a 0 -x {10.0 9.0 1106 ------- null} h -t 1.2789 -s 7 -d 8 -p ack -e 40 -c 0 -i 2222 -a 0 -x {10.0 9.0 1106 ------- null} r -t 1.2792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2207 -a 0 -x {9.0 10.0 1108 ------- null} + -t 1.2792 -s 10 -d 7 -p ack -e 40 -c 0 -i 2226 -a 0 -x {10.0 9.0 1108 ------- null} - -t 1.2792 -s 10 -d 7 -p ack -e 40 -c 0 -i 2226 -a 0 -x {10.0 9.0 1108 ------- null} h -t 1.2792 -s 10 -d 7 -p ack -e 40 -c 0 -i 2226 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.2792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2221 -a 0 -x {9.0 10.0 1115 ------- null} + -t 1.2792 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2221 -a 0 -x {9.0 10.0 1115 ------- null} h -t 1.2792 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2221 -a 0 -x {9.0 10.0 1115 ------- null} + -t 1.27968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2213 -a 0 -x {9.0 10.0 1111 ------- null} - -t 1.27968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2213 -a 0 -x {9.0 10.0 1111 ------- null} h -t 1.27968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2213 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.27974 -s 0 -d 9 -p ack -e 40 -c 0 -i 2216 -a 0 -x {10.0 9.0 1103 ------- null} + -t 1.27974 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2227 -a 0 -x {9.0 10.0 1118 ------- null} - -t 1.27974 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2227 -a 0 -x {9.0 10.0 1118 ------- null} h -t 1.27974 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2227 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.27995 -s 0 -d 9 -p ack -e 40 -c 0 -i 2220 -a 0 -x {10.0 9.0 1105 ------- null} - -t 1.27995 -s 0 -d 9 -p ack -e 40 -c 0 -i 2220 -a 0 -x {10.0 9.0 1105 ------- null} h -t 1.27995 -s 0 -d 9 -p ack -e 40 -c 0 -i 2220 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.28014 -s 10 -d 7 -p ack -e 40 -c 0 -i 2224 -a 0 -x {10.0 9.0 1107 ------- null} + -t 1.28014 -s 7 -d 0 -p ack -e 40 -c 0 -i 2224 -a 0 -x {10.0 9.0 1107 ------- null} h -t 1.28014 -s 7 -d 8 -p ack -e 40 -c 0 -i 2224 -a 0 -x {10.0 9.0 1107 ------- null} r -t 1.2803 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2209 -a 0 -x {9.0 10.0 1109 ------- null} + -t 1.2803 -s 10 -d 7 -p ack -e 40 -c 0 -i 2228 -a 0 -x {10.0 9.0 1109 ------- null} - -t 1.2803 -s 10 -d 7 -p ack -e 40 -c 0 -i 2228 -a 0 -x {10.0 9.0 1109 ------- null} h -t 1.2803 -s 10 -d 7 -p ack -e 40 -c 0 -i 2228 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.28038 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2223 -a 0 -x {9.0 10.0 1116 ------- null} + -t 1.28038 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2223 -a 0 -x {9.0 10.0 1116 ------- null} h -t 1.28038 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2223 -a 0 -x {9.0 10.0 1116 ------- null} r -t 1.28072 -s 0 -d 9 -p ack -e 40 -c 0 -i 2218 -a 0 -x {10.0 9.0 1104 ------- null} + -t 1.28072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2229 -a 0 -x {9.0 10.0 1119 ------- null} - -t 1.28072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2229 -a 0 -x {9.0 10.0 1119 ------- null} h -t 1.28072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2229 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.28102 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2215 -a 0 -x {9.0 10.0 1112 ------- null} - -t 1.28102 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2215 -a 0 -x {9.0 10.0 1112 ------- null} h -t 1.28102 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2215 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.28123 -s 10 -d 7 -p ack -e 40 -c 0 -i 2226 -a 0 -x {10.0 9.0 1108 ------- null} + -t 1.28123 -s 7 -d 0 -p ack -e 40 -c 0 -i 2226 -a 0 -x {10.0 9.0 1108 ------- null} h -t 1.28123 -s 7 -d 8 -p ack -e 40 -c 0 -i 2226 -a 0 -x {10.0 9.0 1108 ------- null} + -t 1.28133 -s 0 -d 9 -p ack -e 40 -c 0 -i 2222 -a 0 -x {10.0 9.0 1106 ------- null} - -t 1.28133 -s 0 -d 9 -p ack -e 40 -c 0 -i 2222 -a 0 -x {10.0 9.0 1106 ------- null} h -t 1.28133 -s 0 -d 9 -p ack -e 40 -c 0 -i 2222 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.28139 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2211 -a 0 -x {9.0 10.0 1110 ------- null} + -t 1.28139 -s 10 -d 7 -p ack -e 40 -c 0 -i 2230 -a 0 -x {10.0 9.0 1110 ------- null} - -t 1.28139 -s 10 -d 7 -p ack -e 40 -c 0 -i 2230 -a 0 -x {10.0 9.0 1110 ------- null} h -t 1.28139 -s 10 -d 7 -p ack -e 40 -c 0 -i 2230 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.2815 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2225 -a 0 -x {9.0 10.0 1117 ------- null} + -t 1.2815 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2225 -a 0 -x {9.0 10.0 1117 ------- null} h -t 1.2815 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2225 -a 0 -x {9.0 10.0 1117 ------- null} r -t 1.28198 -s 0 -d 9 -p ack -e 40 -c 0 -i 2220 -a 0 -x {10.0 9.0 1105 ------- null} + -t 1.28198 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2231 -a 0 -x {9.0 10.0 1120 ------- null} - -t 1.28198 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2231 -a 0 -x {9.0 10.0 1120 ------- null} h -t 1.28198 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2231 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.28234 -s 10 -d 7 -p ack -e 40 -c 0 -i 2228 -a 0 -x {10.0 9.0 1109 ------- null} + -t 1.28234 -s 7 -d 0 -p ack -e 40 -c 0 -i 2228 -a 0 -x {10.0 9.0 1109 ------- null} h -t 1.28234 -s 7 -d 8 -p ack -e 40 -c 0 -i 2228 -a 0 -x {10.0 9.0 1109 ------- null} + -t 1.28234 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2217 -a 0 -x {9.0 10.0 1113 ------- null} - -t 1.28234 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2217 -a 0 -x {9.0 10.0 1113 ------- null} h -t 1.28234 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2217 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.28248 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2213 -a 0 -x {9.0 10.0 1111 ------- null} + -t 1.28248 -s 10 -d 7 -p ack -e 40 -c 0 -i 2232 -a 0 -x {10.0 9.0 1111 ------- null} - -t 1.28248 -s 10 -d 7 -p ack -e 40 -c 0 -i 2232 -a 0 -x {10.0 9.0 1111 ------- null} h -t 1.28248 -s 10 -d 7 -p ack -e 40 -c 0 -i 2232 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.28254 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2227 -a 0 -x {9.0 10.0 1118 ------- null} + -t 1.28254 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2227 -a 0 -x {9.0 10.0 1118 ------- null} h -t 1.28254 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2227 -a 0 -x {9.0 10.0 1118 ------- null} + -t 1.28259 -s 0 -d 9 -p ack -e 40 -c 0 -i 2224 -a 0 -x {10.0 9.0 1107 ------- null} - -t 1.28259 -s 0 -d 9 -p ack -e 40 -c 0 -i 2224 -a 0 -x {10.0 9.0 1107 ------- null} h -t 1.28259 -s 0 -d 9 -p ack -e 40 -c 0 -i 2224 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.28336 -s 0 -d 9 -p ack -e 40 -c 0 -i 2222 -a 0 -x {10.0 9.0 1106 ------- null} + -t 1.28336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2233 -a 0 -x {9.0 10.0 1121 ------- null} - -t 1.28336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2233 -a 0 -x {9.0 10.0 1121 ------- null} h -t 1.28336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2233 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.28342 -s 10 -d 7 -p ack -e 40 -c 0 -i 2230 -a 0 -x {10.0 9.0 1110 ------- null} + -t 1.28342 -s 7 -d 0 -p ack -e 40 -c 0 -i 2230 -a 0 -x {10.0 9.0 1110 ------- null} h -t 1.28342 -s 7 -d 8 -p ack -e 40 -c 0 -i 2230 -a 0 -x {10.0 9.0 1110 ------- null} + -t 1.28342 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2219 -a 0 -x {9.0 10.0 1114 ------- null} - -t 1.28342 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2219 -a 0 -x {9.0 10.0 1114 ------- null} h -t 1.28342 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2219 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.28352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2229 -a 0 -x {9.0 10.0 1119 ------- null} + -t 1.28352 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2229 -a 0 -x {9.0 10.0 1119 ------- null} h -t 1.28352 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2229 -a 0 -x {9.0 10.0 1119 ------- null} + -t 1.28352 -s 0 -d 9 -p ack -e 40 -c 0 -i 2226 -a 0 -x {10.0 9.0 1108 ------- null} - -t 1.28352 -s 0 -d 9 -p ack -e 40 -c 0 -i 2226 -a 0 -x {10.0 9.0 1108 ------- null} h -t 1.28352 -s 0 -d 9 -p ack -e 40 -c 0 -i 2226 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.28382 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2215 -a 0 -x {9.0 10.0 1112 ------- null} + -t 1.28382 -s 10 -d 7 -p ack -e 40 -c 0 -i 2234 -a 0 -x {10.0 9.0 1112 ------- null} - -t 1.28382 -s 10 -d 7 -p ack -e 40 -c 0 -i 2234 -a 0 -x {10.0 9.0 1112 ------- null} h -t 1.28382 -s 10 -d 7 -p ack -e 40 -c 0 -i 2234 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.28451 -s 10 -d 7 -p ack -e 40 -c 0 -i 2232 -a 0 -x {10.0 9.0 1111 ------- null} + -t 1.28451 -s 7 -d 0 -p ack -e 40 -c 0 -i 2232 -a 0 -x {10.0 9.0 1111 ------- null} h -t 1.28451 -s 7 -d 8 -p ack -e 40 -c 0 -i 2232 -a 0 -x {10.0 9.0 1111 ------- null} + -t 1.28451 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2221 -a 0 -x {9.0 10.0 1115 ------- null} - -t 1.28451 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2221 -a 0 -x {9.0 10.0 1115 ------- null} h -t 1.28451 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2221 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.28458 -s 0 -d 9 -p ack -e 40 -c 0 -i 2228 -a 0 -x {10.0 9.0 1109 ------- null} - -t 1.28458 -s 0 -d 9 -p ack -e 40 -c 0 -i 2228 -a 0 -x {10.0 9.0 1109 ------- null} h -t 1.28458 -s 0 -d 9 -p ack -e 40 -c 0 -i 2228 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.28462 -s 0 -d 9 -p ack -e 40 -c 0 -i 2224 -a 0 -x {10.0 9.0 1107 ------- null} + -t 1.28462 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2235 -a 0 -x {9.0 10.0 1122 ------- null} - -t 1.28462 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2235 -a 0 -x {9.0 10.0 1122 ------- null} h -t 1.28462 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2235 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.28478 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2231 -a 0 -x {9.0 10.0 1120 ------- null} + -t 1.28478 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2231 -a 0 -x {9.0 10.0 1120 ------- null} h -t 1.28478 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2231 -a 0 -x {9.0 10.0 1120 ------- null} r -t 1.28514 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2217 -a 0 -x {9.0 10.0 1113 ------- null} + -t 1.28514 -s 10 -d 7 -p ack -e 40 -c 0 -i 2236 -a 0 -x {10.0 9.0 1113 ------- null} - -t 1.28514 -s 10 -d 7 -p ack -e 40 -c 0 -i 2236 -a 0 -x {10.0 9.0 1113 ------- null} h -t 1.28514 -s 10 -d 7 -p ack -e 40 -c 0 -i 2236 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.28555 -s 0 -d 9 -p ack -e 40 -c 0 -i 2226 -a 0 -x {10.0 9.0 1108 ------- null} + -t 1.28555 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2237 -a 0 -x {9.0 10.0 1123 ------- null} - -t 1.28555 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2237 -a 0 -x {9.0 10.0 1123 ------- null} h -t 1.28555 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2237 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.2856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2223 -a 0 -x {9.0 10.0 1116 ------- null} - -t 1.2856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2223 -a 0 -x {9.0 10.0 1116 ------- null} h -t 1.2856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2223 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.28571 -s 0 -d 9 -p ack -e 40 -c 0 -i 2230 -a 0 -x {10.0 9.0 1110 ------- null} - -t 1.28571 -s 0 -d 9 -p ack -e 40 -c 0 -i 2230 -a 0 -x {10.0 9.0 1110 ------- null} h -t 1.28571 -s 0 -d 9 -p ack -e 40 -c 0 -i 2230 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.28586 -s 10 -d 7 -p ack -e 40 -c 0 -i 2234 -a 0 -x {10.0 9.0 1112 ------- null} + -t 1.28586 -s 7 -d 0 -p ack -e 40 -c 0 -i 2234 -a 0 -x {10.0 9.0 1112 ------- null} h -t 1.28586 -s 7 -d 8 -p ack -e 40 -c 0 -i 2234 -a 0 -x {10.0 9.0 1112 ------- null} r -t 1.28616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2233 -a 0 -x {9.0 10.0 1121 ------- null} + -t 1.28616 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2233 -a 0 -x {9.0 10.0 1121 ------- null} h -t 1.28616 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2233 -a 0 -x {9.0 10.0 1121 ------- null} r -t 1.28622 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2219 -a 0 -x {9.0 10.0 1114 ------- null} + -t 1.28622 -s 10 -d 7 -p ack -e 40 -c 0 -i 2238 -a 0 -x {10.0 9.0 1114 ------- null} - -t 1.28622 -s 10 -d 7 -p ack -e 40 -c 0 -i 2238 -a 0 -x {10.0 9.0 1114 ------- null} h -t 1.28622 -s 10 -d 7 -p ack -e 40 -c 0 -i 2238 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.28661 -s 0 -d 9 -p ack -e 40 -c 0 -i 2228 -a 0 -x {10.0 9.0 1109 ------- null} + -t 1.28661 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2239 -a 0 -x {9.0 10.0 1124 ------- null} - -t 1.28661 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2239 -a 0 -x {9.0 10.0 1124 ------- null} h -t 1.28661 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2239 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.28669 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2225 -a 0 -x {9.0 10.0 1117 ------- null} - -t 1.28669 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2225 -a 0 -x {9.0 10.0 1117 ------- null} h -t 1.28669 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2225 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.28693 -s 0 -d 9 -p ack -e 40 -c 0 -i 2232 -a 0 -x {10.0 9.0 1111 ------- null} - -t 1.28693 -s 0 -d 9 -p ack -e 40 -c 0 -i 2232 -a 0 -x {10.0 9.0 1111 ------- null} h -t 1.28693 -s 0 -d 9 -p ack -e 40 -c 0 -i 2232 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.28717 -s 10 -d 7 -p ack -e 40 -c 0 -i 2236 -a 0 -x {10.0 9.0 1113 ------- null} + -t 1.28717 -s 7 -d 0 -p ack -e 40 -c 0 -i 2236 -a 0 -x {10.0 9.0 1113 ------- null} h -t 1.28717 -s 7 -d 8 -p ack -e 40 -c 0 -i 2236 -a 0 -x {10.0 9.0 1113 ------- null} r -t 1.28731 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2221 -a 0 -x {9.0 10.0 1115 ------- null} + -t 1.28731 -s 10 -d 7 -p ack -e 40 -c 0 -i 2240 -a 0 -x {10.0 9.0 1115 ------- null} - -t 1.28731 -s 10 -d 7 -p ack -e 40 -c 0 -i 2240 -a 0 -x {10.0 9.0 1115 ------- null} h -t 1.28731 -s 10 -d 7 -p ack -e 40 -c 0 -i 2240 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.28742 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2235 -a 0 -x {9.0 10.0 1122 ------- null} + -t 1.28742 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2235 -a 0 -x {9.0 10.0 1122 ------- null} h -t 1.28742 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2235 -a 0 -x {9.0 10.0 1122 ------- null} r -t 1.28774 -s 0 -d 9 -p ack -e 40 -c 0 -i 2230 -a 0 -x {10.0 9.0 1110 ------- null} + -t 1.28774 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2241 -a 0 -x {9.0 10.0 1125 ------- null} - -t 1.28774 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2241 -a 0 -x {9.0 10.0 1125 ------- null} h -t 1.28774 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2241 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.28778 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2227 -a 0 -x {9.0 10.0 1118 ------- null} - -t 1.28778 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2227 -a 0 -x {9.0 10.0 1118 ------- null} h -t 1.28778 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2227 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.28789 -s 0 -d 9 -p ack -e 40 -c 0 -i 2234 -a 0 -x {10.0 9.0 1112 ------- null} - -t 1.28789 -s 0 -d 9 -p ack -e 40 -c 0 -i 2234 -a 0 -x {10.0 9.0 1112 ------- null} h -t 1.28789 -s 0 -d 9 -p ack -e 40 -c 0 -i 2234 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.28826 -s 10 -d 7 -p ack -e 40 -c 0 -i 2238 -a 0 -x {10.0 9.0 1114 ------- null} + -t 1.28826 -s 7 -d 0 -p ack -e 40 -c 0 -i 2238 -a 0 -x {10.0 9.0 1114 ------- null} h -t 1.28826 -s 7 -d 8 -p ack -e 40 -c 0 -i 2238 -a 0 -x {10.0 9.0 1114 ------- null} r -t 1.28835 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2237 -a 0 -x {9.0 10.0 1123 ------- null} + -t 1.28835 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2237 -a 0 -x {9.0 10.0 1123 ------- null} h -t 1.28835 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2237 -a 0 -x {9.0 10.0 1123 ------- null} r -t 1.2884 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2223 -a 0 -x {9.0 10.0 1116 ------- null} + -t 1.2884 -s 10 -d 7 -p ack -e 40 -c 0 -i 2242 -a 0 -x {10.0 9.0 1116 ------- null} - -t 1.2884 -s 10 -d 7 -p ack -e 40 -c 0 -i 2242 -a 0 -x {10.0 9.0 1116 ------- null} h -t 1.2884 -s 10 -d 7 -p ack -e 40 -c 0 -i 2242 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.28886 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2229 -a 0 -x {9.0 10.0 1119 ------- null} - -t 1.28886 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2229 -a 0 -x {9.0 10.0 1119 ------- null} h -t 1.28886 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2229 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.28896 -s 0 -d 9 -p ack -e 40 -c 0 -i 2232 -a 0 -x {10.0 9.0 1111 ------- null} + -t 1.28896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2243 -a 0 -x {9.0 10.0 1126 ------- null} - -t 1.28896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2243 -a 0 -x {9.0 10.0 1126 ------- null} h -t 1.28896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2243 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.28912 -s 0 -d 9 -p ack -e 40 -c 0 -i 2236 -a 0 -x {10.0 9.0 1113 ------- null} - -t 1.28912 -s 0 -d 9 -p ack -e 40 -c 0 -i 2236 -a 0 -x {10.0 9.0 1113 ------- null} h -t 1.28912 -s 0 -d 9 -p ack -e 40 -c 0 -i 2236 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.28934 -s 10 -d 7 -p ack -e 40 -c 0 -i 2240 -a 0 -x {10.0 9.0 1115 ------- null} + -t 1.28934 -s 7 -d 0 -p ack -e 40 -c 0 -i 2240 -a 0 -x {10.0 9.0 1115 ------- null} h -t 1.28934 -s 7 -d 8 -p ack -e 40 -c 0 -i 2240 -a 0 -x {10.0 9.0 1115 ------- null} r -t 1.28941 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2239 -a 0 -x {9.0 10.0 1124 ------- null} + -t 1.28941 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2239 -a 0 -x {9.0 10.0 1124 ------- null} h -t 1.28941 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2239 -a 0 -x {9.0 10.0 1124 ------- null} r -t 1.28949 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2225 -a 0 -x {9.0 10.0 1117 ------- null} + -t 1.28949 -s 10 -d 7 -p ack -e 40 -c 0 -i 2244 -a 0 -x {10.0 9.0 1117 ------- null} - -t 1.28949 -s 10 -d 7 -p ack -e 40 -c 0 -i 2244 -a 0 -x {10.0 9.0 1117 ------- null} h -t 1.28949 -s 10 -d 7 -p ack -e 40 -c 0 -i 2244 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.28992 -s 0 -d 9 -p ack -e 40 -c 0 -i 2234 -a 0 -x {10.0 9.0 1112 ------- null} + -t 1.28992 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2245 -a 0 -x {9.0 10.0 1127 ------- null} - -t 1.28992 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2245 -a 0 -x {9.0 10.0 1127 ------- null} h -t 1.28992 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2245 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.28995 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2231 -a 0 -x {9.0 10.0 1120 ------- null} - -t 1.28995 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2231 -a 0 -x {9.0 10.0 1120 ------- null} h -t 1.28995 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2231 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.29008 -s 0 -d 9 -p ack -e 40 -c 0 -i 2238 -a 0 -x {10.0 9.0 1114 ------- null} - -t 1.29008 -s 0 -d 9 -p ack -e 40 -c 0 -i 2238 -a 0 -x {10.0 9.0 1114 ------- null} h -t 1.29008 -s 0 -d 9 -p ack -e 40 -c 0 -i 2238 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.29043 -s 10 -d 7 -p ack -e 40 -c 0 -i 2242 -a 0 -x {10.0 9.0 1116 ------- null} + -t 1.29043 -s 7 -d 0 -p ack -e 40 -c 0 -i 2242 -a 0 -x {10.0 9.0 1116 ------- null} h -t 1.29043 -s 7 -d 8 -p ack -e 40 -c 0 -i 2242 -a 0 -x {10.0 9.0 1116 ------- null} r -t 1.29054 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2241 -a 0 -x {9.0 10.0 1125 ------- null} + -t 1.29054 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2241 -a 0 -x {9.0 10.0 1125 ------- null} h -t 1.29054 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2241 -a 0 -x {9.0 10.0 1125 ------- null} r -t 1.29058 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2227 -a 0 -x {9.0 10.0 1118 ------- null} + -t 1.29058 -s 10 -d 7 -p ack -e 40 -c 0 -i 2246 -a 0 -x {10.0 9.0 1118 ------- null} - -t 1.29058 -s 10 -d 7 -p ack -e 40 -c 0 -i 2246 -a 0 -x {10.0 9.0 1118 ------- null} h -t 1.29058 -s 10 -d 7 -p ack -e 40 -c 0 -i 2246 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.29104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2233 -a 0 -x {9.0 10.0 1121 ------- null} - -t 1.29104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2233 -a 0 -x {9.0 10.0 1121 ------- null} h -t 1.29104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2233 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.29114 -s 0 -d 9 -p ack -e 40 -c 0 -i 2240 -a 0 -x {10.0 9.0 1115 ------- null} - -t 1.29114 -s 0 -d 9 -p ack -e 40 -c 0 -i 2240 -a 0 -x {10.0 9.0 1115 ------- null} h -t 1.29114 -s 0 -d 9 -p ack -e 40 -c 0 -i 2240 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.29115 -s 0 -d 9 -p ack -e 40 -c 0 -i 2236 -a 0 -x {10.0 9.0 1113 ------- null} + -t 1.29115 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2247 -a 0 -x {9.0 10.0 1128 ------- null} - -t 1.29115 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2247 -a 0 -x {9.0 10.0 1128 ------- null} h -t 1.29115 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2247 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.29152 -s 10 -d 7 -p ack -e 40 -c 0 -i 2244 -a 0 -x {10.0 9.0 1117 ------- null} + -t 1.29152 -s 7 -d 0 -p ack -e 40 -c 0 -i 2244 -a 0 -x {10.0 9.0 1117 ------- null} h -t 1.29152 -s 7 -d 8 -p ack -e 40 -c 0 -i 2244 -a 0 -x {10.0 9.0 1117 ------- null} r -t 1.29166 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2229 -a 0 -x {9.0 10.0 1119 ------- null} + -t 1.29166 -s 10 -d 7 -p ack -e 40 -c 0 -i 2248 -a 0 -x {10.0 9.0 1119 ------- null} - -t 1.29166 -s 10 -d 7 -p ack -e 40 -c 0 -i 2248 -a 0 -x {10.0 9.0 1119 ------- null} h -t 1.29166 -s 10 -d 7 -p ack -e 40 -c 0 -i 2248 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.29176 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2243 -a 0 -x {9.0 10.0 1126 ------- null} + -t 1.29176 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2243 -a 0 -x {9.0 10.0 1126 ------- null} h -t 1.29176 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2243 -a 0 -x {9.0 10.0 1126 ------- null} r -t 1.29211 -s 0 -d 9 -p ack -e 40 -c 0 -i 2238 -a 0 -x {10.0 9.0 1114 ------- null} + -t 1.29211 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2249 -a 0 -x {9.0 10.0 1129 ------- null} - -t 1.29211 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2249 -a 0 -x {9.0 10.0 1129 ------- null} h -t 1.29211 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2249 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.29213 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2235 -a 0 -x {9.0 10.0 1122 ------- null} - -t 1.29213 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2235 -a 0 -x {9.0 10.0 1122 ------- null} h -t 1.29213 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2235 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.29235 -s 0 -d 9 -p ack -e 40 -c 0 -i 2242 -a 0 -x {10.0 9.0 1116 ------- null} - -t 1.29235 -s 0 -d 9 -p ack -e 40 -c 0 -i 2242 -a 0 -x {10.0 9.0 1116 ------- null} h -t 1.29235 -s 0 -d 9 -p ack -e 40 -c 0 -i 2242 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.29261 -s 10 -d 7 -p ack -e 40 -c 0 -i 2246 -a 0 -x {10.0 9.0 1118 ------- null} + -t 1.29261 -s 7 -d 0 -p ack -e 40 -c 0 -i 2246 -a 0 -x {10.0 9.0 1118 ------- null} h -t 1.29261 -s 7 -d 8 -p ack -e 40 -c 0 -i 2246 -a 0 -x {10.0 9.0 1118 ------- null} r -t 1.29272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2245 -a 0 -x {9.0 10.0 1127 ------- null} + -t 1.29272 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2245 -a 0 -x {9.0 10.0 1127 ------- null} h -t 1.29272 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2245 -a 0 -x {9.0 10.0 1127 ------- null} r -t 1.29275 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2231 -a 0 -x {9.0 10.0 1120 ------- null} + -t 1.29275 -s 10 -d 7 -p ack -e 40 -c 0 -i 2250 -a 0 -x {10.0 9.0 1120 ------- null} - -t 1.29275 -s 10 -d 7 -p ack -e 40 -c 0 -i 2250 -a 0 -x {10.0 9.0 1120 ------- null} h -t 1.29275 -s 10 -d 7 -p ack -e 40 -c 0 -i 2250 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.29317 -s 0 -d 9 -p ack -e 40 -c 0 -i 2240 -a 0 -x {10.0 9.0 1115 ------- null} + -t 1.29317 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2251 -a 0 -x {9.0 10.0 1130 ------- null} - -t 1.29317 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2251 -a 0 -x {9.0 10.0 1130 ------- null} h -t 1.29317 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2251 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.29322 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2237 -a 0 -x {9.0 10.0 1123 ------- null} - -t 1.29322 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2237 -a 0 -x {9.0 10.0 1123 ------- null} h -t 1.29322 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2237 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.29338 -s 0 -d 9 -p ack -e 40 -c 0 -i 2244 -a 0 -x {10.0 9.0 1117 ------- null} - -t 1.29338 -s 0 -d 9 -p ack -e 40 -c 0 -i 2244 -a 0 -x {10.0 9.0 1117 ------- null} h -t 1.29338 -s 0 -d 9 -p ack -e 40 -c 0 -i 2244 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.2937 -s 10 -d 7 -p ack -e 40 -c 0 -i 2248 -a 0 -x {10.0 9.0 1119 ------- null} + -t 1.2937 -s 7 -d 0 -p ack -e 40 -c 0 -i 2248 -a 0 -x {10.0 9.0 1119 ------- null} h -t 1.2937 -s 7 -d 8 -p ack -e 40 -c 0 -i 2248 -a 0 -x {10.0 9.0 1119 ------- null} r -t 1.29384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2233 -a 0 -x {9.0 10.0 1121 ------- null} + -t 1.29384 -s 10 -d 7 -p ack -e 40 -c 0 -i 2252 -a 0 -x {10.0 9.0 1121 ------- null} - -t 1.29384 -s 10 -d 7 -p ack -e 40 -c 0 -i 2252 -a 0 -x {10.0 9.0 1121 ------- null} h -t 1.29384 -s 10 -d 7 -p ack -e 40 -c 0 -i 2252 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.29395 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2247 -a 0 -x {9.0 10.0 1128 ------- null} + -t 1.29395 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2247 -a 0 -x {9.0 10.0 1128 ------- null} h -t 1.29395 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2247 -a 0 -x {9.0 10.0 1128 ------- null} + -t 1.2943 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2239 -a 0 -x {9.0 10.0 1124 ------- null} - -t 1.2943 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2239 -a 0 -x {9.0 10.0 1124 ------- null} h -t 1.2943 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2239 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.29438 -s 0 -d 9 -p ack -e 40 -c 0 -i 2242 -a 0 -x {10.0 9.0 1116 ------- null} + -t 1.29438 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2253 -a 0 -x {9.0 10.0 1131 ------- null} - -t 1.29438 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2253 -a 0 -x {9.0 10.0 1131 ------- null} h -t 1.29438 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2253 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.29453 -s 0 -d 9 -p ack -e 40 -c 0 -i 2246 -a 0 -x {10.0 9.0 1118 ------- null} - -t 1.29453 -s 0 -d 9 -p ack -e 40 -c 0 -i 2246 -a 0 -x {10.0 9.0 1118 ------- null} h -t 1.29453 -s 0 -d 9 -p ack -e 40 -c 0 -i 2246 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.29478 -s 10 -d 7 -p ack -e 40 -c 0 -i 2250 -a 0 -x {10.0 9.0 1120 ------- null} + -t 1.29478 -s 7 -d 0 -p ack -e 40 -c 0 -i 2250 -a 0 -x {10.0 9.0 1120 ------- null} h -t 1.29478 -s 7 -d 8 -p ack -e 40 -c 0 -i 2250 -a 0 -x {10.0 9.0 1120 ------- null} r -t 1.29491 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2249 -a 0 -x {9.0 10.0 1129 ------- null} + -t 1.29491 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2249 -a 0 -x {9.0 10.0 1129 ------- null} h -t 1.29491 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2249 -a 0 -x {9.0 10.0 1129 ------- null} r -t 1.29493 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2235 -a 0 -x {9.0 10.0 1122 ------- null} + -t 1.29493 -s 10 -d 7 -p ack -e 40 -c 0 -i 2254 -a 0 -x {10.0 9.0 1122 ------- null} - -t 1.29493 -s 10 -d 7 -p ack -e 40 -c 0 -i 2254 -a 0 -x {10.0 9.0 1122 ------- null} h -t 1.29493 -s 10 -d 7 -p ack -e 40 -c 0 -i 2254 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.29539 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2241 -a 0 -x {9.0 10.0 1125 ------- null} - -t 1.29539 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2241 -a 0 -x {9.0 10.0 1125 ------- null} h -t 1.29539 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2241 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.29541 -s 0 -d 9 -p ack -e 40 -c 0 -i 2244 -a 0 -x {10.0 9.0 1117 ------- null} + -t 1.29541 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2255 -a 0 -x {9.0 10.0 1132 ------- null} - -t 1.29541 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2255 -a 0 -x {9.0 10.0 1132 ------- null} h -t 1.29541 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2255 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.2956 -s 0 -d 9 -p ack -e 40 -c 0 -i 2248 -a 0 -x {10.0 9.0 1119 ------- null} - -t 1.2956 -s 0 -d 9 -p ack -e 40 -c 0 -i 2248 -a 0 -x {10.0 9.0 1119 ------- null} h -t 1.2956 -s 0 -d 9 -p ack -e 40 -c 0 -i 2248 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.29587 -s 10 -d 7 -p ack -e 40 -c 0 -i 2252 -a 0 -x {10.0 9.0 1121 ------- null} + -t 1.29587 -s 7 -d 0 -p ack -e 40 -c 0 -i 2252 -a 0 -x {10.0 9.0 1121 ------- null} h -t 1.29587 -s 7 -d 8 -p ack -e 40 -c 0 -i 2252 -a 0 -x {10.0 9.0 1121 ------- null} r -t 1.29597 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2251 -a 0 -x {9.0 10.0 1130 ------- null} + -t 1.29597 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2251 -a 0 -x {9.0 10.0 1130 ------- null} h -t 1.29597 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2251 -a 0 -x {9.0 10.0 1130 ------- null} r -t 1.29602 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2237 -a 0 -x {9.0 10.0 1123 ------- null} + -t 1.29602 -s 10 -d 7 -p ack -e 40 -c 0 -i 2256 -a 0 -x {10.0 9.0 1123 ------- null} - -t 1.29602 -s 10 -d 7 -p ack -e 40 -c 0 -i 2256 -a 0 -x {10.0 9.0 1123 ------- null} h -t 1.29602 -s 10 -d 7 -p ack -e 40 -c 0 -i 2256 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.29648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2243 -a 0 -x {9.0 10.0 1126 ------- null} - -t 1.29648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2243 -a 0 -x {9.0 10.0 1126 ------- null} h -t 1.29648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2243 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.29656 -s 0 -d 9 -p ack -e 40 -c 0 -i 2246 -a 0 -x {10.0 9.0 1118 ------- null} + -t 1.29656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2257 -a 0 -x {9.0 10.0 1133 ------- null} - -t 1.29656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2257 -a 0 -x {9.0 10.0 1133 ------- null} h -t 1.29656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2257 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.29662 -s 0 -d 9 -p ack -e 40 -c 0 -i 2250 -a 0 -x {10.0 9.0 1120 ------- null} - -t 1.29662 -s 0 -d 9 -p ack -e 40 -c 0 -i 2250 -a 0 -x {10.0 9.0 1120 ------- null} h -t 1.29662 -s 0 -d 9 -p ack -e 40 -c 0 -i 2250 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.29696 -s 10 -d 7 -p ack -e 40 -c 0 -i 2254 -a 0 -x {10.0 9.0 1122 ------- null} + -t 1.29696 -s 7 -d 0 -p ack -e 40 -c 0 -i 2254 -a 0 -x {10.0 9.0 1122 ------- null} h -t 1.29696 -s 7 -d 8 -p ack -e 40 -c 0 -i 2254 -a 0 -x {10.0 9.0 1122 ------- null} r -t 1.2971 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2239 -a 0 -x {9.0 10.0 1124 ------- null} + -t 1.2971 -s 10 -d 7 -p ack -e 40 -c 0 -i 2258 -a 0 -x {10.0 9.0 1124 ------- null} - -t 1.2971 -s 10 -d 7 -p ack -e 40 -c 0 -i 2258 -a 0 -x {10.0 9.0 1124 ------- null} h -t 1.2971 -s 10 -d 7 -p ack -e 40 -c 0 -i 2258 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.29718 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2253 -a 0 -x {9.0 10.0 1131 ------- null} + -t 1.29718 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2253 -a 0 -x {9.0 10.0 1131 ------- null} h -t 1.29718 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2253 -a 0 -x {9.0 10.0 1131 ------- null} + -t 1.29757 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2245 -a 0 -x {9.0 10.0 1127 ------- null} - -t 1.29757 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2245 -a 0 -x {9.0 10.0 1127 ------- null} h -t 1.29757 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2245 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.29763 -s 0 -d 9 -p ack -e 40 -c 0 -i 2248 -a 0 -x {10.0 9.0 1119 ------- null} + -t 1.29763 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2259 -a 0 -x {9.0 10.0 1134 ------- null} - -t 1.29763 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2259 -a 0 -x {9.0 10.0 1134 ------- null} h -t 1.29763 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2259 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.29787 -s 0 -d 9 -p ack -e 40 -c 0 -i 2252 -a 0 -x {10.0 9.0 1121 ------- null} - -t 1.29787 -s 0 -d 9 -p ack -e 40 -c 0 -i 2252 -a 0 -x {10.0 9.0 1121 ------- null} h -t 1.29787 -s 0 -d 9 -p ack -e 40 -c 0 -i 2252 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.29805 -s 10 -d 7 -p ack -e 40 -c 0 -i 2256 -a 0 -x {10.0 9.0 1123 ------- null} + -t 1.29805 -s 7 -d 0 -p ack -e 40 -c 0 -i 2256 -a 0 -x {10.0 9.0 1123 ------- null} h -t 1.29805 -s 7 -d 8 -p ack -e 40 -c 0 -i 2256 -a 0 -x {10.0 9.0 1123 ------- null} r -t 1.29819 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2241 -a 0 -x {9.0 10.0 1125 ------- null} + -t 1.29819 -s 10 -d 7 -p ack -e 40 -c 0 -i 2260 -a 0 -x {10.0 9.0 1125 ------- null} - -t 1.29819 -s 10 -d 7 -p ack -e 40 -c 0 -i 2260 -a 0 -x {10.0 9.0 1125 ------- null} h -t 1.29819 -s 10 -d 7 -p ack -e 40 -c 0 -i 2260 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.29821 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2255 -a 0 -x {9.0 10.0 1132 ------- null} + -t 1.29821 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2255 -a 0 -x {9.0 10.0 1132 ------- null} h -t 1.29821 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2255 -a 0 -x {9.0 10.0 1132 ------- null} r -t 1.29866 -s 0 -d 9 -p ack -e 40 -c 0 -i 2250 -a 0 -x {10.0 9.0 1120 ------- null} + -t 1.29866 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2261 -a 0 -x {9.0 10.0 1135 ------- null} - -t 1.29866 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2261 -a 0 -x {9.0 10.0 1135 ------- null} h -t 1.29866 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2261 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.29875 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2247 -a 0 -x {9.0 10.0 1128 ------- null} - -t 1.29875 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2247 -a 0 -x {9.0 10.0 1128 ------- null} h -t 1.29875 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2247 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.29906 -s 0 -d 9 -p ack -e 40 -c 0 -i 2254 -a 0 -x {10.0 9.0 1122 ------- null} - -t 1.29906 -s 0 -d 9 -p ack -e 40 -c 0 -i 2254 -a 0 -x {10.0 9.0 1122 ------- null} h -t 1.29906 -s 0 -d 9 -p ack -e 40 -c 0 -i 2254 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.29914 -s 10 -d 7 -p ack -e 40 -c 0 -i 2258 -a 0 -x {10.0 9.0 1124 ------- null} + -t 1.29914 -s 7 -d 0 -p ack -e 40 -c 0 -i 2258 -a 0 -x {10.0 9.0 1124 ------- null} h -t 1.29914 -s 7 -d 8 -p ack -e 40 -c 0 -i 2258 -a 0 -x {10.0 9.0 1124 ------- null} r -t 1.29928 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2243 -a 0 -x {9.0 10.0 1126 ------- null} + -t 1.29928 -s 10 -d 7 -p ack -e 40 -c 0 -i 2262 -a 0 -x {10.0 9.0 1126 ------- null} - -t 1.29928 -s 10 -d 7 -p ack -e 40 -c 0 -i 2262 -a 0 -x {10.0 9.0 1126 ------- null} h -t 1.29928 -s 10 -d 7 -p ack -e 40 -c 0 -i 2262 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.29936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2257 -a 0 -x {9.0 10.0 1133 ------- null} + -t 1.29936 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2257 -a 0 -x {9.0 10.0 1133 ------- null} h -t 1.29936 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2257 -a 0 -x {9.0 10.0 1133 ------- null} r -t 1.2999 -s 0 -d 9 -p ack -e 40 -c 0 -i 2252 -a 0 -x {10.0 9.0 1121 ------- null} + -t 1.2999 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2263 -a 0 -x {9.0 10.0 1136 ------- null} - -t 1.2999 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2263 -a 0 -x {9.0 10.0 1136 ------- null} h -t 1.2999 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2263 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.30013 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2249 -a 0 -x {9.0 10.0 1129 ------- null} - -t 1.30013 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2249 -a 0 -x {9.0 10.0 1129 ------- null} h -t 1.30013 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2249 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.30022 -s 10 -d 7 -p ack -e 40 -c 0 -i 2260 -a 0 -x {10.0 9.0 1125 ------- null} + -t 1.30022 -s 7 -d 0 -p ack -e 40 -c 0 -i 2260 -a 0 -x {10.0 9.0 1125 ------- null} h -t 1.30022 -s 7 -d 8 -p ack -e 40 -c 0 -i 2260 -a 0 -x {10.0 9.0 1125 ------- null} + -t 1.30024 -s 0 -d 9 -p ack -e 40 -c 0 -i 2256 -a 0 -x {10.0 9.0 1123 ------- null} - -t 1.30024 -s 0 -d 9 -p ack -e 40 -c 0 -i 2256 -a 0 -x {10.0 9.0 1123 ------- null} h -t 1.30024 -s 0 -d 9 -p ack -e 40 -c 0 -i 2256 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.30037 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2245 -a 0 -x {9.0 10.0 1127 ------- null} + -t 1.30037 -s 10 -d 7 -p ack -e 40 -c 0 -i 2264 -a 0 -x {10.0 9.0 1127 ------- null} - -t 1.30037 -s 10 -d 7 -p ack -e 40 -c 0 -i 2264 -a 0 -x {10.0 9.0 1127 ------- null} h -t 1.30037 -s 10 -d 7 -p ack -e 40 -c 0 -i 2264 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.30043 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2259 -a 0 -x {9.0 10.0 1134 ------- null} + -t 1.30043 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2259 -a 0 -x {9.0 10.0 1134 ------- null} h -t 1.30043 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2259 -a 0 -x {9.0 10.0 1134 ------- null} r -t 1.30109 -s 0 -d 9 -p ack -e 40 -c 0 -i 2254 -a 0 -x {10.0 9.0 1122 ------- null} + -t 1.30109 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2265 -a 0 -x {9.0 10.0 1137 ------- null} - -t 1.30109 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2265 -a 0 -x {9.0 10.0 1137 ------- null} h -t 1.30109 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2265 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.30122 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2251 -a 0 -x {9.0 10.0 1130 ------- null} - -t 1.30122 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2251 -a 0 -x {9.0 10.0 1130 ------- null} h -t 1.30122 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2251 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.30131 -s 10 -d 7 -p ack -e 40 -c 0 -i 2262 -a 0 -x {10.0 9.0 1126 ------- null} + -t 1.30131 -s 7 -d 0 -p ack -e 40 -c 0 -i 2262 -a 0 -x {10.0 9.0 1126 ------- null} h -t 1.30131 -s 7 -d 8 -p ack -e 40 -c 0 -i 2262 -a 0 -x {10.0 9.0 1126 ------- null} r -t 1.30146 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2261 -a 0 -x {9.0 10.0 1135 ------- null} + -t 1.30146 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2261 -a 0 -x {9.0 10.0 1135 ------- null} h -t 1.30146 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2261 -a 0 -x {9.0 10.0 1135 ------- null} + -t 1.30149 -s 0 -d 9 -p ack -e 40 -c 0 -i 2258 -a 0 -x {10.0 9.0 1124 ------- null} - -t 1.30149 -s 0 -d 9 -p ack -e 40 -c 0 -i 2258 -a 0 -x {10.0 9.0 1124 ------- null} h -t 1.30149 -s 0 -d 9 -p ack -e 40 -c 0 -i 2258 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.30155 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2247 -a 0 -x {9.0 10.0 1128 ------- null} + -t 1.30155 -s 10 -d 7 -p ack -e 40 -c 0 -i 2266 -a 0 -x {10.0 9.0 1128 ------- null} - -t 1.30155 -s 10 -d 7 -p ack -e 40 -c 0 -i 2266 -a 0 -x {10.0 9.0 1128 ------- null} h -t 1.30155 -s 10 -d 7 -p ack -e 40 -c 0 -i 2266 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.30227 -s 0 -d 9 -p ack -e 40 -c 0 -i 2256 -a 0 -x {10.0 9.0 1123 ------- null} + -t 1.30227 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2267 -a 0 -x {9.0 10.0 1138 ------- null} - -t 1.30227 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2267 -a 0 -x {9.0 10.0 1138 ------- null} h -t 1.30227 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2267 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.3024 -s 10 -d 7 -p ack -e 40 -c 0 -i 2264 -a 0 -x {10.0 9.0 1127 ------- null} + -t 1.3024 -s 7 -d 0 -p ack -e 40 -c 0 -i 2264 -a 0 -x {10.0 9.0 1127 ------- null} h -t 1.3024 -s 7 -d 8 -p ack -e 40 -c 0 -i 2264 -a 0 -x {10.0 9.0 1127 ------- null} + -t 1.30242 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2253 -a 0 -x {9.0 10.0 1131 ------- null} - -t 1.30242 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2253 -a 0 -x {9.0 10.0 1131 ------- null} h -t 1.30242 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2253 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.30258 -s 0 -d 9 -p ack -e 40 -c 0 -i 2260 -a 0 -x {10.0 9.0 1125 ------- null} - -t 1.30258 -s 0 -d 9 -p ack -e 40 -c 0 -i 2260 -a 0 -x {10.0 9.0 1125 ------- null} h -t 1.30258 -s 0 -d 9 -p ack -e 40 -c 0 -i 2260 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.3027 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2263 -a 0 -x {9.0 10.0 1136 ------- null} + -t 1.3027 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2263 -a 0 -x {9.0 10.0 1136 ------- null} h -t 1.3027 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2263 -a 0 -x {9.0 10.0 1136 ------- null} r -t 1.30293 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2249 -a 0 -x {9.0 10.0 1129 ------- null} + -t 1.30293 -s 10 -d 7 -p ack -e 40 -c 0 -i 2268 -a 0 -x {10.0 9.0 1129 ------- null} - -t 1.30293 -s 10 -d 7 -p ack -e 40 -c 0 -i 2268 -a 0 -x {10.0 9.0 1129 ------- null} h -t 1.30293 -s 10 -d 7 -p ack -e 40 -c 0 -i 2268 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.3035 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2255 -a 0 -x {9.0 10.0 1132 ------- null} - -t 1.3035 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2255 -a 0 -x {9.0 10.0 1132 ------- null} h -t 1.3035 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2255 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.30352 -s 0 -d 9 -p ack -e 40 -c 0 -i 2258 -a 0 -x {10.0 9.0 1124 ------- null} + -t 1.30352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2269 -a 0 -x {9.0 10.0 1139 ------- null} - -t 1.30352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2269 -a 0 -x {9.0 10.0 1139 ------- null} h -t 1.30352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2269 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.30358 -s 10 -d 7 -p ack -e 40 -c 0 -i 2266 -a 0 -x {10.0 9.0 1128 ------- null} + -t 1.30358 -s 7 -d 0 -p ack -e 40 -c 0 -i 2266 -a 0 -x {10.0 9.0 1128 ------- null} h -t 1.30358 -s 7 -d 8 -p ack -e 40 -c 0 -i 2266 -a 0 -x {10.0 9.0 1128 ------- null} + -t 1.30374 -s 0 -d 9 -p ack -e 40 -c 0 -i 2262 -a 0 -x {10.0 9.0 1126 ------- null} - -t 1.30374 -s 0 -d 9 -p ack -e 40 -c 0 -i 2262 -a 0 -x {10.0 9.0 1126 ------- null} h -t 1.30374 -s 0 -d 9 -p ack -e 40 -c 0 -i 2262 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.30389 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2265 -a 0 -x {9.0 10.0 1137 ------- null} + -t 1.30389 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2265 -a 0 -x {9.0 10.0 1137 ------- null} h -t 1.30389 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2265 -a 0 -x {9.0 10.0 1137 ------- null} r -t 1.30402 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2251 -a 0 -x {9.0 10.0 1130 ------- null} + -t 1.30402 -s 10 -d 7 -p ack -e 40 -c 0 -i 2270 -a 0 -x {10.0 9.0 1130 ------- null} - -t 1.30402 -s 10 -d 7 -p ack -e 40 -c 0 -i 2270 -a 0 -x {10.0 9.0 1130 ------- null} h -t 1.30402 -s 10 -d 7 -p ack -e 40 -c 0 -i 2270 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.30459 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2257 -a 0 -x {9.0 10.0 1133 ------- null} - -t 1.30459 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2257 -a 0 -x {9.0 10.0 1133 ------- null} h -t 1.30459 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2257 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.30461 -s 0 -d 9 -p ack -e 40 -c 0 -i 2260 -a 0 -x {10.0 9.0 1125 ------- null} + -t 1.30461 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2271 -a 0 -x {9.0 10.0 1140 ------- null} - -t 1.30461 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2271 -a 0 -x {9.0 10.0 1140 ------- null} h -t 1.30461 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2271 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.3047 -s 0 -d 9 -p ack -e 40 -c 0 -i 2264 -a 0 -x {10.0 9.0 1127 ------- null} - -t 1.3047 -s 0 -d 9 -p ack -e 40 -c 0 -i 2264 -a 0 -x {10.0 9.0 1127 ------- null} h -t 1.3047 -s 0 -d 9 -p ack -e 40 -c 0 -i 2264 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.30496 -s 10 -d 7 -p ack -e 40 -c 0 -i 2268 -a 0 -x {10.0 9.0 1129 ------- null} + -t 1.30496 -s 7 -d 0 -p ack -e 40 -c 0 -i 2268 -a 0 -x {10.0 9.0 1129 ------- null} h -t 1.30496 -s 7 -d 8 -p ack -e 40 -c 0 -i 2268 -a 0 -x {10.0 9.0 1129 ------- null} r -t 1.30507 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2267 -a 0 -x {9.0 10.0 1138 ------- null} + -t 1.30507 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2267 -a 0 -x {9.0 10.0 1138 ------- null} h -t 1.30507 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2267 -a 0 -x {9.0 10.0 1138 ------- null} r -t 1.30522 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2253 -a 0 -x {9.0 10.0 1131 ------- null} + -t 1.30522 -s 10 -d 7 -p ack -e 40 -c 0 -i 2272 -a 0 -x {10.0 9.0 1131 ------- null} - -t 1.30522 -s 10 -d 7 -p ack -e 40 -c 0 -i 2272 -a 0 -x {10.0 9.0 1131 ------- null} h -t 1.30522 -s 10 -d 7 -p ack -e 40 -c 0 -i 2272 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.30568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2259 -a 0 -x {9.0 10.0 1134 ------- null} - -t 1.30568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2259 -a 0 -x {9.0 10.0 1134 ------- null} h -t 1.30568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2259 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.30578 -s 0 -d 9 -p ack -e 40 -c 0 -i 2262 -a 0 -x {10.0 9.0 1126 ------- null} + -t 1.30578 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2273 -a 0 -x {9.0 10.0 1141 ------- null} - -t 1.30578 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2273 -a 0 -x {9.0 10.0 1141 ------- null} h -t 1.30578 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2273 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.30587 -s 0 -d 9 -p ack -e 40 -c 0 -i 2266 -a 0 -x {10.0 9.0 1128 ------- null} - -t 1.30587 -s 0 -d 9 -p ack -e 40 -c 0 -i 2266 -a 0 -x {10.0 9.0 1128 ------- null} h -t 1.30587 -s 0 -d 9 -p ack -e 40 -c 0 -i 2266 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.30605 -s 10 -d 7 -p ack -e 40 -c 0 -i 2270 -a 0 -x {10.0 9.0 1130 ------- null} + -t 1.30605 -s 7 -d 0 -p ack -e 40 -c 0 -i 2270 -a 0 -x {10.0 9.0 1130 ------- null} h -t 1.30605 -s 7 -d 8 -p ack -e 40 -c 0 -i 2270 -a 0 -x {10.0 9.0 1130 ------- null} r -t 1.3063 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2255 -a 0 -x {9.0 10.0 1132 ------- null} + -t 1.3063 -s 10 -d 7 -p ack -e 40 -c 0 -i 2274 -a 0 -x {10.0 9.0 1132 ------- null} - -t 1.3063 -s 10 -d 7 -p ack -e 40 -c 0 -i 2274 -a 0 -x {10.0 9.0 1132 ------- null} h -t 1.3063 -s 10 -d 7 -p ack -e 40 -c 0 -i 2274 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.30632 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2269 -a 0 -x {9.0 10.0 1139 ------- null} + -t 1.30632 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2269 -a 0 -x {9.0 10.0 1139 ------- null} h -t 1.30632 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2269 -a 0 -x {9.0 10.0 1139 ------- null} r -t 1.30674 -s 0 -d 9 -p ack -e 40 -c 0 -i 2264 -a 0 -x {10.0 9.0 1127 ------- null} + -t 1.30674 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2275 -a 0 -x {9.0 10.0 1142 ------- null} - -t 1.30674 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2275 -a 0 -x {9.0 10.0 1142 ------- null} h -t 1.30674 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2275 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.30677 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2261 -a 0 -x {9.0 10.0 1135 ------- null} - -t 1.30677 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2261 -a 0 -x {9.0 10.0 1135 ------- null} h -t 1.30677 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2261 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.30688 -s 0 -d 9 -p ack -e 40 -c 0 -i 2268 -a 0 -x {10.0 9.0 1129 ------- null} - -t 1.30688 -s 0 -d 9 -p ack -e 40 -c 0 -i 2268 -a 0 -x {10.0 9.0 1129 ------- null} h -t 1.30688 -s 0 -d 9 -p ack -e 40 -c 0 -i 2268 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.30725 -s 10 -d 7 -p ack -e 40 -c 0 -i 2272 -a 0 -x {10.0 9.0 1131 ------- null} + -t 1.30725 -s 7 -d 0 -p ack -e 40 -c 0 -i 2272 -a 0 -x {10.0 9.0 1131 ------- null} h -t 1.30725 -s 7 -d 8 -p ack -e 40 -c 0 -i 2272 -a 0 -x {10.0 9.0 1131 ------- null} r -t 1.30739 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2257 -a 0 -x {9.0 10.0 1133 ------- null} + -t 1.30739 -s 10 -d 7 -p ack -e 40 -c 0 -i 2276 -a 0 -x {10.0 9.0 1133 ------- null} - -t 1.30739 -s 10 -d 7 -p ack -e 40 -c 0 -i 2276 -a 0 -x {10.0 9.0 1133 ------- null} h -t 1.30739 -s 10 -d 7 -p ack -e 40 -c 0 -i 2276 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.30741 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2271 -a 0 -x {9.0 10.0 1140 ------- null} + -t 1.30741 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2271 -a 0 -x {9.0 10.0 1140 ------- null} h -t 1.30741 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2271 -a 0 -x {9.0 10.0 1140 ------- null} + -t 1.30786 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2263 -a 0 -x {9.0 10.0 1136 ------- null} - -t 1.30786 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2263 -a 0 -x {9.0 10.0 1136 ------- null} h -t 1.30786 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2263 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.3079 -s 0 -d 9 -p ack -e 40 -c 0 -i 2266 -a 0 -x {10.0 9.0 1128 ------- null} + -t 1.3079 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2277 -a 0 -x {9.0 10.0 1143 ------- null} - -t 1.3079 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2277 -a 0 -x {9.0 10.0 1143 ------- null} h -t 1.3079 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2277 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.30811 -s 0 -d 9 -p ack -e 40 -c 0 -i 2270 -a 0 -x {10.0 9.0 1130 ------- null} - -t 1.30811 -s 0 -d 9 -p ack -e 40 -c 0 -i 2270 -a 0 -x {10.0 9.0 1130 ------- null} h -t 1.30811 -s 0 -d 9 -p ack -e 40 -c 0 -i 2270 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.30834 -s 10 -d 7 -p ack -e 40 -c 0 -i 2274 -a 0 -x {10.0 9.0 1132 ------- null} + -t 1.30834 -s 7 -d 0 -p ack -e 40 -c 0 -i 2274 -a 0 -x {10.0 9.0 1132 ------- null} h -t 1.30834 -s 7 -d 8 -p ack -e 40 -c 0 -i 2274 -a 0 -x {10.0 9.0 1132 ------- null} r -t 1.30848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2259 -a 0 -x {9.0 10.0 1134 ------- null} + -t 1.30848 -s 10 -d 7 -p ack -e 40 -c 0 -i 2278 -a 0 -x {10.0 9.0 1134 ------- null} - -t 1.30848 -s 10 -d 7 -p ack -e 40 -c 0 -i 2278 -a 0 -x {10.0 9.0 1134 ------- null} h -t 1.30848 -s 10 -d 7 -p ack -e 40 -c 0 -i 2278 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.30858 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2273 -a 0 -x {9.0 10.0 1141 ------- null} + -t 1.30858 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2273 -a 0 -x {9.0 10.0 1141 ------- null} h -t 1.30858 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2273 -a 0 -x {9.0 10.0 1141 ------- null} r -t 1.30891 -s 0 -d 9 -p ack -e 40 -c 0 -i 2268 -a 0 -x {10.0 9.0 1129 ------- null} + -t 1.30891 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2279 -a 0 -x {9.0 10.0 1144 ------- null} - -t 1.30891 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2279 -a 0 -x {9.0 10.0 1144 ------- null} h -t 1.30891 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2279 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.30894 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2265 -a 0 -x {9.0 10.0 1137 ------- null} - -t 1.30894 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2265 -a 0 -x {9.0 10.0 1137 ------- null} h -t 1.30894 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2265 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.30912 -s 0 -d 9 -p ack -e 40 -c 0 -i 2272 -a 0 -x {10.0 9.0 1131 ------- null} - -t 1.30912 -s 0 -d 9 -p ack -e 40 -c 0 -i 2272 -a 0 -x {10.0 9.0 1131 ------- null} h -t 1.30912 -s 0 -d 9 -p ack -e 40 -c 0 -i 2272 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.30942 -s 10 -d 7 -p ack -e 40 -c 0 -i 2276 -a 0 -x {10.0 9.0 1133 ------- null} + -t 1.30942 -s 7 -d 0 -p ack -e 40 -c 0 -i 2276 -a 0 -x {10.0 9.0 1133 ------- null} h -t 1.30942 -s 7 -d 8 -p ack -e 40 -c 0 -i 2276 -a 0 -x {10.0 9.0 1133 ------- null} r -t 1.30954 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2275 -a 0 -x {9.0 10.0 1142 ------- null} + -t 1.30954 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2275 -a 0 -x {9.0 10.0 1142 ------- null} h -t 1.30954 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2275 -a 0 -x {9.0 10.0 1142 ------- null} r -t 1.30957 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2261 -a 0 -x {9.0 10.0 1135 ------- null} + -t 1.30957 -s 10 -d 7 -p ack -e 40 -c 0 -i 2280 -a 0 -x {10.0 9.0 1135 ------- null} - -t 1.30957 -s 10 -d 7 -p ack -e 40 -c 0 -i 2280 -a 0 -x {10.0 9.0 1135 ------- null} h -t 1.30957 -s 10 -d 7 -p ack -e 40 -c 0 -i 2280 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.31003 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2267 -a 0 -x {9.0 10.0 1138 ------- null} - -t 1.31003 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2267 -a 0 -x {9.0 10.0 1138 ------- null} h -t 1.31003 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2267 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.3101 -s 0 -d 9 -p ack -e 40 -c 0 -i 2274 -a 0 -x {10.0 9.0 1132 ------- null} - -t 1.3101 -s 0 -d 9 -p ack -e 40 -c 0 -i 2274 -a 0 -x {10.0 9.0 1132 ------- null} h -t 1.3101 -s 0 -d 9 -p ack -e 40 -c 0 -i 2274 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.31014 -s 0 -d 9 -p ack -e 40 -c 0 -i 2270 -a 0 -x {10.0 9.0 1130 ------- null} + -t 1.31014 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2281 -a 0 -x {9.0 10.0 1145 ------- null} - -t 1.31014 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2281 -a 0 -x {9.0 10.0 1145 ------- null} h -t 1.31014 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2281 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.31051 -s 10 -d 7 -p ack -e 40 -c 0 -i 2278 -a 0 -x {10.0 9.0 1134 ------- null} + -t 1.31051 -s 7 -d 0 -p ack -e 40 -c 0 -i 2278 -a 0 -x {10.0 9.0 1134 ------- null} h -t 1.31051 -s 7 -d 8 -p ack -e 40 -c 0 -i 2278 -a 0 -x {10.0 9.0 1134 ------- null} r -t 1.31066 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2263 -a 0 -x {9.0 10.0 1136 ------- null} + -t 1.31066 -s 10 -d 7 -p ack -e 40 -c 0 -i 2282 -a 0 -x {10.0 9.0 1136 ------- null} - -t 1.31066 -s 10 -d 7 -p ack -e 40 -c 0 -i 2282 -a 0 -x {10.0 9.0 1136 ------- null} h -t 1.31066 -s 10 -d 7 -p ack -e 40 -c 0 -i 2282 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.3107 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2277 -a 0 -x {9.0 10.0 1143 ------- null} + -t 1.3107 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2277 -a 0 -x {9.0 10.0 1143 ------- null} h -t 1.3107 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2277 -a 0 -x {9.0 10.0 1143 ------- null} + -t 1.31112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2269 -a 0 -x {9.0 10.0 1139 ------- null} - -t 1.31112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2269 -a 0 -x {9.0 10.0 1139 ------- null} h -t 1.31112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2269 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.31115 -s 0 -d 9 -p ack -e 40 -c 0 -i 2272 -a 0 -x {10.0 9.0 1131 ------- null} + -t 1.31115 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2283 -a 0 -x {9.0 10.0 1146 ------- null} - -t 1.31115 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2283 -a 0 -x {9.0 10.0 1146 ------- null} h -t 1.31115 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2283 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.31139 -s 0 -d 9 -p ack -e 40 -c 0 -i 2276 -a 0 -x {10.0 9.0 1133 ------- null} - -t 1.31139 -s 0 -d 9 -p ack -e 40 -c 0 -i 2276 -a 0 -x {10.0 9.0 1133 ------- null} h -t 1.31139 -s 0 -d 9 -p ack -e 40 -c 0 -i 2276 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.3116 -s 10 -d 7 -p ack -e 40 -c 0 -i 2280 -a 0 -x {10.0 9.0 1135 ------- null} + -t 1.3116 -s 7 -d 0 -p ack -e 40 -c 0 -i 2280 -a 0 -x {10.0 9.0 1135 ------- null} h -t 1.3116 -s 7 -d 8 -p ack -e 40 -c 0 -i 2280 -a 0 -x {10.0 9.0 1135 ------- null} r -t 1.31171 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2279 -a 0 -x {9.0 10.0 1144 ------- null} + -t 1.31171 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2279 -a 0 -x {9.0 10.0 1144 ------- null} h -t 1.31171 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2279 -a 0 -x {9.0 10.0 1144 ------- null} r -t 1.31174 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2265 -a 0 -x {9.0 10.0 1137 ------- null} + -t 1.31174 -s 10 -d 7 -p ack -e 40 -c 0 -i 2284 -a 0 -x {10.0 9.0 1137 ------- null} - -t 1.31174 -s 10 -d 7 -p ack -e 40 -c 0 -i 2284 -a 0 -x {10.0 9.0 1137 ------- null} h -t 1.31174 -s 10 -d 7 -p ack -e 40 -c 0 -i 2284 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.31213 -s 0 -d 9 -p ack -e 40 -c 0 -i 2274 -a 0 -x {10.0 9.0 1132 ------- null} + -t 1.31213 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2285 -a 0 -x {9.0 10.0 1147 ------- null} - -t 1.31213 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2285 -a 0 -x {9.0 10.0 1147 ------- null} h -t 1.31213 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2285 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.31245 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2271 -a 0 -x {9.0 10.0 1140 ------- null} - -t 1.31245 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2271 -a 0 -x {9.0 10.0 1140 ------- null} h -t 1.31245 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2271 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.31266 -s 0 -d 9 -p ack -e 40 -c 0 -i 2278 -a 0 -x {10.0 9.0 1134 ------- null} - -t 1.31266 -s 0 -d 9 -p ack -e 40 -c 0 -i 2278 -a 0 -x {10.0 9.0 1134 ------- null} h -t 1.31266 -s 0 -d 9 -p ack -e 40 -c 0 -i 2278 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.31269 -s 10 -d 7 -p ack -e 40 -c 0 -i 2282 -a 0 -x {10.0 9.0 1136 ------- null} + -t 1.31269 -s 7 -d 0 -p ack -e 40 -c 0 -i 2282 -a 0 -x {10.0 9.0 1136 ------- null} h -t 1.31269 -s 7 -d 8 -p ack -e 40 -c 0 -i 2282 -a 0 -x {10.0 9.0 1136 ------- null} r -t 1.31283 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2267 -a 0 -x {9.0 10.0 1138 ------- null} + -t 1.31283 -s 10 -d 7 -p ack -e 40 -c 0 -i 2286 -a 0 -x {10.0 9.0 1138 ------- null} - -t 1.31283 -s 10 -d 7 -p ack -e 40 -c 0 -i 2286 -a 0 -x {10.0 9.0 1138 ------- null} h -t 1.31283 -s 10 -d 7 -p ack -e 40 -c 0 -i 2286 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.31294 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2281 -a 0 -x {9.0 10.0 1145 ------- null} + -t 1.31294 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2281 -a 0 -x {9.0 10.0 1145 ------- null} h -t 1.31294 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2281 -a 0 -x {9.0 10.0 1145 ------- null} r -t 1.31342 -s 0 -d 9 -p ack -e 40 -c 0 -i 2276 -a 0 -x {10.0 9.0 1133 ------- null} + -t 1.31342 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2287 -a 0 -x {9.0 10.0 1148 ------- null} - -t 1.31342 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2287 -a 0 -x {9.0 10.0 1148 ------- null} h -t 1.31342 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2287 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.31354 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2273 -a 0 -x {9.0 10.0 1141 ------- null} - -t 1.31354 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2273 -a 0 -x {9.0 10.0 1141 ------- null} h -t 1.31354 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2273 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.31378 -s 10 -d 7 -p ack -e 40 -c 0 -i 2284 -a 0 -x {10.0 9.0 1137 ------- null} + -t 1.31378 -s 7 -d 0 -p ack -e 40 -c 0 -i 2284 -a 0 -x {10.0 9.0 1137 ------- null} h -t 1.31378 -s 7 -d 8 -p ack -e 40 -c 0 -i 2284 -a 0 -x {10.0 9.0 1137 ------- null} + -t 1.31379 -s 0 -d 9 -p ack -e 40 -c 0 -i 2280 -a 0 -x {10.0 9.0 1135 ------- null} - -t 1.31379 -s 0 -d 9 -p ack -e 40 -c 0 -i 2280 -a 0 -x {10.0 9.0 1135 ------- null} h -t 1.31379 -s 0 -d 9 -p ack -e 40 -c 0 -i 2280 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.31392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2269 -a 0 -x {9.0 10.0 1139 ------- null} + -t 1.31392 -s 10 -d 7 -p ack -e 40 -c 0 -i 2288 -a 0 -x {10.0 9.0 1139 ------- null} - -t 1.31392 -s 10 -d 7 -p ack -e 40 -c 0 -i 2288 -a 0 -x {10.0 9.0 1139 ------- null} h -t 1.31392 -s 10 -d 7 -p ack -e 40 -c 0 -i 2288 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.31395 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2283 -a 0 -x {9.0 10.0 1146 ------- null} + -t 1.31395 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2283 -a 0 -x {9.0 10.0 1146 ------- null} h -t 1.31395 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2283 -a 0 -x {9.0 10.0 1146 ------- null} + -t 1.31462 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2275 -a 0 -x {9.0 10.0 1142 ------- null} - -t 1.31462 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2275 -a 0 -x {9.0 10.0 1142 ------- null} h -t 1.31462 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2275 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.31469 -s 0 -d 9 -p ack -e 40 -c 0 -i 2278 -a 0 -x {10.0 9.0 1134 ------- null} + -t 1.31469 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2289 -a 0 -x {9.0 10.0 1149 ------- null} - -t 1.31469 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2289 -a 0 -x {9.0 10.0 1149 ------- null} h -t 1.31469 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2289 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.31486 -s 10 -d 7 -p ack -e 40 -c 0 -i 2286 -a 0 -x {10.0 9.0 1138 ------- null} + -t 1.31486 -s 7 -d 0 -p ack -e 40 -c 0 -i 2286 -a 0 -x {10.0 9.0 1138 ------- null} h -t 1.31486 -s 7 -d 8 -p ack -e 40 -c 0 -i 2286 -a 0 -x {10.0 9.0 1138 ------- null} r -t 1.31493 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2285 -a 0 -x {9.0 10.0 1147 ------- null} + -t 1.31493 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2285 -a 0 -x {9.0 10.0 1147 ------- null} h -t 1.31493 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2285 -a 0 -x {9.0 10.0 1147 ------- null} + -t 1.31493 -s 0 -d 9 -p ack -e 40 -c 0 -i 2282 -a 0 -x {10.0 9.0 1136 ------- null} - -t 1.31493 -s 0 -d 9 -p ack -e 40 -c 0 -i 2282 -a 0 -x {10.0 9.0 1136 ------- null} h -t 1.31493 -s 0 -d 9 -p ack -e 40 -c 0 -i 2282 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.31525 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2271 -a 0 -x {9.0 10.0 1140 ------- null} + -t 1.31525 -s 10 -d 7 -p ack -e 40 -c 0 -i 2290 -a 0 -x {10.0 9.0 1140 ------- null} - -t 1.31525 -s 10 -d 7 -p ack -e 40 -c 0 -i 2290 -a 0 -x {10.0 9.0 1140 ------- null} h -t 1.31525 -s 10 -d 7 -p ack -e 40 -c 0 -i 2290 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.31579 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2277 -a 0 -x {9.0 10.0 1143 ------- null} - -t 1.31579 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2277 -a 0 -x {9.0 10.0 1143 ------- null} h -t 1.31579 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2277 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.31582 -s 0 -d 9 -p ack -e 40 -c 0 -i 2280 -a 0 -x {10.0 9.0 1135 ------- null} + -t 1.31582 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2291 -a 0 -x {9.0 10.0 1150 ------- null} - -t 1.31582 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2291 -a 0 -x {9.0 10.0 1150 ------- null} h -t 1.31582 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2291 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.31589 -s 0 -d 9 -p ack -e 40 -c 0 -i 2284 -a 0 -x {10.0 9.0 1137 ------- null} - -t 1.31589 -s 0 -d 9 -p ack -e 40 -c 0 -i 2284 -a 0 -x {10.0 9.0 1137 ------- null} h -t 1.31589 -s 0 -d 9 -p ack -e 40 -c 0 -i 2284 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.31595 -s 10 -d 7 -p ack -e 40 -c 0 -i 2288 -a 0 -x {10.0 9.0 1139 ------- null} + -t 1.31595 -s 7 -d 0 -p ack -e 40 -c 0 -i 2288 -a 0 -x {10.0 9.0 1139 ------- null} h -t 1.31595 -s 7 -d 8 -p ack -e 40 -c 0 -i 2288 -a 0 -x {10.0 9.0 1139 ------- null} r -t 1.31622 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2287 -a 0 -x {9.0 10.0 1148 ------- null} + -t 1.31622 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2287 -a 0 -x {9.0 10.0 1148 ------- null} h -t 1.31622 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2287 -a 0 -x {9.0 10.0 1148 ------- null} r -t 1.31634 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2273 -a 0 -x {9.0 10.0 1141 ------- null} + -t 1.31634 -s 10 -d 7 -p ack -e 40 -c 0 -i 2292 -a 0 -x {10.0 9.0 1141 ------- null} - -t 1.31634 -s 10 -d 7 -p ack -e 40 -c 0 -i 2292 -a 0 -x {10.0 9.0 1141 ------- null} h -t 1.31634 -s 10 -d 7 -p ack -e 40 -c 0 -i 2292 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.31688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2279 -a 0 -x {9.0 10.0 1144 ------- null} - -t 1.31688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2279 -a 0 -x {9.0 10.0 1144 ------- null} h -t 1.31688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2279 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.31696 -s 0 -d 9 -p ack -e 40 -c 0 -i 2282 -a 0 -x {10.0 9.0 1136 ------- null} + -t 1.31696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2293 -a 0 -x {9.0 10.0 1151 ------- null} - -t 1.31696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2293 -a 0 -x {9.0 10.0 1151 ------- null} h -t 1.31696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2293 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.31718 -s 0 -d 9 -p ack -e 40 -c 0 -i 2286 -a 0 -x {10.0 9.0 1138 ------- null} - -t 1.31718 -s 0 -d 9 -p ack -e 40 -c 0 -i 2286 -a 0 -x {10.0 9.0 1138 ------- null} h -t 1.31718 -s 0 -d 9 -p ack -e 40 -c 0 -i 2286 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.31728 -s 10 -d 7 -p ack -e 40 -c 0 -i 2290 -a 0 -x {10.0 9.0 1140 ------- null} + -t 1.31728 -s 7 -d 0 -p ack -e 40 -c 0 -i 2290 -a 0 -x {10.0 9.0 1140 ------- null} h -t 1.31728 -s 7 -d 8 -p ack -e 40 -c 0 -i 2290 -a 0 -x {10.0 9.0 1140 ------- null} r -t 1.31742 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2275 -a 0 -x {9.0 10.0 1142 ------- null} + -t 1.31742 -s 10 -d 7 -p ack -e 40 -c 0 -i 2294 -a 0 -x {10.0 9.0 1142 ------- null} - -t 1.31742 -s 10 -d 7 -p ack -e 40 -c 0 -i 2294 -a 0 -x {10.0 9.0 1142 ------- null} h -t 1.31742 -s 10 -d 7 -p ack -e 40 -c 0 -i 2294 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.31749 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2289 -a 0 -x {9.0 10.0 1149 ------- null} + -t 1.31749 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2289 -a 0 -x {9.0 10.0 1149 ------- null} h -t 1.31749 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2289 -a 0 -x {9.0 10.0 1149 ------- null} r -t 1.31792 -s 0 -d 9 -p ack -e 40 -c 0 -i 2284 -a 0 -x {10.0 9.0 1137 ------- null} + -t 1.31792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2295 -a 0 -x {9.0 10.0 1152 ------- null} - -t 1.31792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2295 -a 0 -x {9.0 10.0 1152 ------- null} h -t 1.31792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2295 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.31803 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2281 -a 0 -x {9.0 10.0 1145 ------- null} - -t 1.31803 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2281 -a 0 -x {9.0 10.0 1145 ------- null} h -t 1.31803 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2281 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.31832 -s 0 -d 9 -p ack -e 40 -c 0 -i 2288 -a 0 -x {10.0 9.0 1139 ------- null} - -t 1.31832 -s 0 -d 9 -p ack -e 40 -c 0 -i 2288 -a 0 -x {10.0 9.0 1139 ------- null} h -t 1.31832 -s 0 -d 9 -p ack -e 40 -c 0 -i 2288 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.31837 -s 10 -d 7 -p ack -e 40 -c 0 -i 2292 -a 0 -x {10.0 9.0 1141 ------- null} + -t 1.31837 -s 7 -d 0 -p ack -e 40 -c 0 -i 2292 -a 0 -x {10.0 9.0 1141 ------- null} h -t 1.31837 -s 7 -d 8 -p ack -e 40 -c 0 -i 2292 -a 0 -x {10.0 9.0 1141 ------- null} r -t 1.31859 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2277 -a 0 -x {9.0 10.0 1143 ------- null} + -t 1.31859 -s 10 -d 7 -p ack -e 40 -c 0 -i 2296 -a 0 -x {10.0 9.0 1143 ------- null} - -t 1.31859 -s 10 -d 7 -p ack -e 40 -c 0 -i 2296 -a 0 -x {10.0 9.0 1143 ------- null} h -t 1.31859 -s 10 -d 7 -p ack -e 40 -c 0 -i 2296 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.31862 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2291 -a 0 -x {9.0 10.0 1150 ------- null} + -t 1.31862 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2291 -a 0 -x {9.0 10.0 1150 ------- null} h -t 1.31862 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2291 -a 0 -x {9.0 10.0 1150 ------- null} + -t 1.31918 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2283 -a 0 -x {9.0 10.0 1146 ------- null} - -t 1.31918 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2283 -a 0 -x {9.0 10.0 1146 ------- null} h -t 1.31918 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2283 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.31922 -s 0 -d 9 -p ack -e 40 -c 0 -i 2286 -a 0 -x {10.0 9.0 1138 ------- null} + -t 1.31922 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2297 -a 0 -x {9.0 10.0 1153 ------- null} - -t 1.31922 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2297 -a 0 -x {9.0 10.0 1153 ------- null} h -t 1.31922 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2297 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.31933 -s 0 -d 9 -p ack -e 40 -c 0 -i 2290 -a 0 -x {10.0 9.0 1140 ------- null} - -t 1.31933 -s 0 -d 9 -p ack -e 40 -c 0 -i 2290 -a 0 -x {10.0 9.0 1140 ------- null} h -t 1.31933 -s 0 -d 9 -p ack -e 40 -c 0 -i 2290 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.31946 -s 10 -d 7 -p ack -e 40 -c 0 -i 2294 -a 0 -x {10.0 9.0 1142 ------- null} + -t 1.31946 -s 7 -d 0 -p ack -e 40 -c 0 -i 2294 -a 0 -x {10.0 9.0 1142 ------- null} h -t 1.31946 -s 7 -d 8 -p ack -e 40 -c 0 -i 2294 -a 0 -x {10.0 9.0 1142 ------- null} r -t 1.31968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2279 -a 0 -x {9.0 10.0 1144 ------- null} + -t 1.31968 -s 10 -d 7 -p ack -e 40 -c 0 -i 2298 -a 0 -x {10.0 9.0 1144 ------- null} - -t 1.31968 -s 10 -d 7 -p ack -e 40 -c 0 -i 2298 -a 0 -x {10.0 9.0 1144 ------- null} h -t 1.31968 -s 10 -d 7 -p ack -e 40 -c 0 -i 2298 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.31976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2293 -a 0 -x {9.0 10.0 1151 ------- null} + -t 1.31976 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2293 -a 0 -x {9.0 10.0 1151 ------- null} h -t 1.31976 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2293 -a 0 -x {9.0 10.0 1151 ------- null} + -t 1.32027 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2285 -a 0 -x {9.0 10.0 1147 ------- null} - -t 1.32027 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2285 -a 0 -x {9.0 10.0 1147 ------- null} h -t 1.32027 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2285 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.32035 -s 0 -d 9 -p ack -e 40 -c 0 -i 2288 -a 0 -x {10.0 9.0 1139 ------- null} + -t 1.32035 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2299 -a 0 -x {9.0 10.0 1154 ------- null} - -t 1.32035 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2299 -a 0 -x {9.0 10.0 1154 ------- null} h -t 1.32035 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2299 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.3205 -s 0 -d 9 -p ack -e 40 -c 0 -i 2292 -a 0 -x {10.0 9.0 1141 ------- null} - -t 1.3205 -s 0 -d 9 -p ack -e 40 -c 0 -i 2292 -a 0 -x {10.0 9.0 1141 ------- null} h -t 1.3205 -s 0 -d 9 -p ack -e 40 -c 0 -i 2292 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.32062 -s 10 -d 7 -p ack -e 40 -c 0 -i 2296 -a 0 -x {10.0 9.0 1143 ------- null} + -t 1.32062 -s 7 -d 0 -p ack -e 40 -c 0 -i 2296 -a 0 -x {10.0 9.0 1143 ------- null} h -t 1.32062 -s 7 -d 8 -p ack -e 40 -c 0 -i 2296 -a 0 -x {10.0 9.0 1143 ------- null} r -t 1.32072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2295 -a 0 -x {9.0 10.0 1152 ------- null} + -t 1.32072 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2295 -a 0 -x {9.0 10.0 1152 ------- null} h -t 1.32072 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2295 -a 0 -x {9.0 10.0 1152 ------- null} r -t 1.32083 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2281 -a 0 -x {9.0 10.0 1145 ------- null} + -t 1.32083 -s 10 -d 7 -p ack -e 40 -c 0 -i 2300 -a 0 -x {10.0 9.0 1145 ------- null} - -t 1.32083 -s 10 -d 7 -p ack -e 40 -c 0 -i 2300 -a 0 -x {10.0 9.0 1145 ------- null} h -t 1.32083 -s 10 -d 7 -p ack -e 40 -c 0 -i 2300 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.32136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2287 -a 0 -x {9.0 10.0 1148 ------- null} - -t 1.32136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2287 -a 0 -x {9.0 10.0 1148 ------- null} h -t 1.32136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2287 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.32136 -s 0 -d 9 -p ack -e 40 -c 0 -i 2290 -a 0 -x {10.0 9.0 1140 ------- null} + -t 1.32136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2301 -a 0 -x {9.0 10.0 1155 ------- null} - -t 1.32136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2301 -a 0 -x {9.0 10.0 1155 ------- null} h -t 1.32136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2301 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.32149 -s 0 -d 9 -p ack -e 40 -c 0 -i 2294 -a 0 -x {10.0 9.0 1142 ------- null} - -t 1.32149 -s 0 -d 9 -p ack -e 40 -c 0 -i 2294 -a 0 -x {10.0 9.0 1142 ------- null} h -t 1.32149 -s 0 -d 9 -p ack -e 40 -c 0 -i 2294 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.32171 -s 10 -d 7 -p ack -e 40 -c 0 -i 2298 -a 0 -x {10.0 9.0 1144 ------- null} + -t 1.32171 -s 7 -d 0 -p ack -e 40 -c 0 -i 2298 -a 0 -x {10.0 9.0 1144 ------- null} h -t 1.32171 -s 7 -d 8 -p ack -e 40 -c 0 -i 2298 -a 0 -x {10.0 9.0 1144 ------- null} r -t 1.32198 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2283 -a 0 -x {9.0 10.0 1146 ------- null} + -t 1.32198 -s 10 -d 7 -p ack -e 40 -c 0 -i 2302 -a 0 -x {10.0 9.0 1146 ------- null} - -t 1.32198 -s 10 -d 7 -p ack -e 40 -c 0 -i 2302 -a 0 -x {10.0 9.0 1146 ------- null} h -t 1.32198 -s 10 -d 7 -p ack -e 40 -c 0 -i 2302 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.32202 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2297 -a 0 -x {9.0 10.0 1153 ------- null} + -t 1.32202 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2297 -a 0 -x {9.0 10.0 1153 ------- null} h -t 1.32202 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2297 -a 0 -x {9.0 10.0 1153 ------- null} + -t 1.32245 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2289 -a 0 -x {9.0 10.0 1149 ------- null} - -t 1.32245 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2289 -a 0 -x {9.0 10.0 1149 ------- null} h -t 1.32245 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2289 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.32253 -s 0 -d 9 -p ack -e 40 -c 0 -i 2292 -a 0 -x {10.0 9.0 1141 ------- null} + -t 1.32253 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2303 -a 0 -x {9.0 10.0 1156 ------- null} - -t 1.32253 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2303 -a 0 -x {9.0 10.0 1156 ------- null} h -t 1.32253 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2303 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.32253 -s 0 -d 9 -p ack -e 40 -c 0 -i 2296 -a 0 -x {10.0 9.0 1143 ------- null} - -t 1.32253 -s 0 -d 9 -p ack -e 40 -c 0 -i 2296 -a 0 -x {10.0 9.0 1143 ------- null} h -t 1.32253 -s 0 -d 9 -p ack -e 40 -c 0 -i 2296 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.32286 -s 10 -d 7 -p ack -e 40 -c 0 -i 2300 -a 0 -x {10.0 9.0 1145 ------- null} + -t 1.32286 -s 7 -d 0 -p ack -e 40 -c 0 -i 2300 -a 0 -x {10.0 9.0 1145 ------- null} h -t 1.32286 -s 7 -d 8 -p ack -e 40 -c 0 -i 2300 -a 0 -x {10.0 9.0 1145 ------- null} r -t 1.32307 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2285 -a 0 -x {9.0 10.0 1147 ------- null} + -t 1.32307 -s 10 -d 7 -p ack -e 40 -c 0 -i 2304 -a 0 -x {10.0 9.0 1147 ------- null} - -t 1.32307 -s 10 -d 7 -p ack -e 40 -c 0 -i 2304 -a 0 -x {10.0 9.0 1147 ------- null} h -t 1.32307 -s 10 -d 7 -p ack -e 40 -c 0 -i 2304 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.32315 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2299 -a 0 -x {9.0 10.0 1154 ------- null} + -t 1.32315 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2299 -a 0 -x {9.0 10.0 1154 ------- null} h -t 1.32315 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2299 -a 0 -x {9.0 10.0 1154 ------- null} r -t 1.32352 -s 0 -d 9 -p ack -e 40 -c 0 -i 2294 -a 0 -x {10.0 9.0 1142 ------- null} + -t 1.32352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2305 -a 0 -x {9.0 10.0 1157 ------- null} - -t 1.32352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2305 -a 0 -x {9.0 10.0 1157 ------- null} h -t 1.32352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2305 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.32354 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2291 -a 0 -x {9.0 10.0 1150 ------- null} - -t 1.32354 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2291 -a 0 -x {9.0 10.0 1150 ------- null} h -t 1.32354 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2291 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.32362 -s 0 -d 9 -p ack -e 40 -c 0 -i 2298 -a 0 -x {10.0 9.0 1144 ------- null} - -t 1.32362 -s 0 -d 9 -p ack -e 40 -c 0 -i 2298 -a 0 -x {10.0 9.0 1144 ------- null} h -t 1.32362 -s 0 -d 9 -p ack -e 40 -c 0 -i 2298 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.32402 -s 10 -d 7 -p ack -e 40 -c 0 -i 2302 -a 0 -x {10.0 9.0 1146 ------- null} + -t 1.32402 -s 7 -d 0 -p ack -e 40 -c 0 -i 2302 -a 0 -x {10.0 9.0 1146 ------- null} h -t 1.32402 -s 7 -d 8 -p ack -e 40 -c 0 -i 2302 -a 0 -x {10.0 9.0 1146 ------- null} r -t 1.32416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2287 -a 0 -x {9.0 10.0 1148 ------- null} + -t 1.32416 -s 10 -d 7 -p ack -e 40 -c 0 -i 2306 -a 0 -x {10.0 9.0 1148 ------- null} - -t 1.32416 -s 10 -d 7 -p ack -e 40 -c 0 -i 2306 -a 0 -x {10.0 9.0 1148 ------- null} h -t 1.32416 -s 10 -d 7 -p ack -e 40 -c 0 -i 2306 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.32416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2301 -a 0 -x {9.0 10.0 1155 ------- null} + -t 1.32416 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2301 -a 0 -x {9.0 10.0 1155 ------- null} h -t 1.32416 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2301 -a 0 -x {9.0 10.0 1155 ------- null} r -t 1.32456 -s 0 -d 9 -p ack -e 40 -c 0 -i 2296 -a 0 -x {10.0 9.0 1143 ------- null} + -t 1.32456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2307 -a 0 -x {9.0 10.0 1158 ------- null} - -t 1.32456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2307 -a 0 -x {9.0 10.0 1158 ------- null} h -t 1.32456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2307 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.32462 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2293 -a 0 -x {9.0 10.0 1151 ------- null} - -t 1.32462 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2293 -a 0 -x {9.0 10.0 1151 ------- null} h -t 1.32462 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2293 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.3248 -s 0 -d 9 -p ack -e 40 -c 0 -i 2300 -a 0 -x {10.0 9.0 1145 ------- null} - -t 1.3248 -s 0 -d 9 -p ack -e 40 -c 0 -i 2300 -a 0 -x {10.0 9.0 1145 ------- null} h -t 1.3248 -s 0 -d 9 -p ack -e 40 -c 0 -i 2300 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.3251 -s 10 -d 7 -p ack -e 40 -c 0 -i 2304 -a 0 -x {10.0 9.0 1147 ------- null} + -t 1.3251 -s 7 -d 0 -p ack -e 40 -c 0 -i 2304 -a 0 -x {10.0 9.0 1147 ------- null} h -t 1.3251 -s 7 -d 8 -p ack -e 40 -c 0 -i 2304 -a 0 -x {10.0 9.0 1147 ------- null} r -t 1.32525 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2289 -a 0 -x {9.0 10.0 1149 ------- null} + -t 1.32525 -s 10 -d 7 -p ack -e 40 -c 0 -i 2308 -a 0 -x {10.0 9.0 1149 ------- null} - -t 1.32525 -s 10 -d 7 -p ack -e 40 -c 0 -i 2308 -a 0 -x {10.0 9.0 1149 ------- null} h -t 1.32525 -s 10 -d 7 -p ack -e 40 -c 0 -i 2308 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.32533 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2303 -a 0 -x {9.0 10.0 1156 ------- null} + -t 1.32533 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2303 -a 0 -x {9.0 10.0 1156 ------- null} h -t 1.32533 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2303 -a 0 -x {9.0 10.0 1156 ------- null} r -t 1.32565 -s 0 -d 9 -p ack -e 40 -c 0 -i 2298 -a 0 -x {10.0 9.0 1144 ------- null} + -t 1.32565 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2309 -a 0 -x {9.0 10.0 1159 ------- null} - -t 1.32565 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2309 -a 0 -x {9.0 10.0 1159 ------- null} h -t 1.32565 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2309 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.32571 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2295 -a 0 -x {9.0 10.0 1152 ------- null} - -t 1.32571 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2295 -a 0 -x {9.0 10.0 1152 ------- null} h -t 1.32571 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2295 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.326 -s 0 -d 9 -p ack -e 40 -c 0 -i 2302 -a 0 -x {10.0 9.0 1146 ------- null} - -t 1.326 -s 0 -d 9 -p ack -e 40 -c 0 -i 2302 -a 0 -x {10.0 9.0 1146 ------- null} h -t 1.326 -s 0 -d 9 -p ack -e 40 -c 0 -i 2302 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.32619 -s 10 -d 7 -p ack -e 40 -c 0 -i 2306 -a 0 -x {10.0 9.0 1148 ------- null} + -t 1.32619 -s 7 -d 0 -p ack -e 40 -c 0 -i 2306 -a 0 -x {10.0 9.0 1148 ------- null} h -t 1.32619 -s 7 -d 8 -p ack -e 40 -c 0 -i 2306 -a 0 -x {10.0 9.0 1148 ------- null} r -t 1.32632 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2305 -a 0 -x {9.0 10.0 1157 ------- null} + -t 1.32632 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2305 -a 0 -x {9.0 10.0 1157 ------- null} h -t 1.32632 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2305 -a 0 -x {9.0 10.0 1157 ------- null} r -t 1.32634 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2291 -a 0 -x {9.0 10.0 1150 ------- null} + -t 1.32634 -s 10 -d 7 -p ack -e 40 -c 0 -i 2310 -a 0 -x {10.0 9.0 1150 ------- null} - -t 1.32634 -s 10 -d 7 -p ack -e 40 -c 0 -i 2310 -a 0 -x {10.0 9.0 1150 ------- null} h -t 1.32634 -s 10 -d 7 -p ack -e 40 -c 0 -i 2310 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.32683 -s 0 -d 9 -p ack -e 40 -c 0 -i 2300 -a 0 -x {10.0 9.0 1145 ------- null} + -t 1.32683 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2311 -a 0 -x {9.0 10.0 1160 ------- null} - -t 1.32683 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2311 -a 0 -x {9.0 10.0 1160 ------- null} h -t 1.32683 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2311 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.32696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2297 -a 0 -x {9.0 10.0 1153 ------- null} - -t 1.32696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2297 -a 0 -x {9.0 10.0 1153 ------- null} h -t 1.32696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2297 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.32715 -s 0 -d 9 -p ack -e 40 -c 0 -i 2304 -a 0 -x {10.0 9.0 1147 ------- null} - -t 1.32715 -s 0 -d 9 -p ack -e 40 -c 0 -i 2304 -a 0 -x {10.0 9.0 1147 ------- null} h -t 1.32715 -s 0 -d 9 -p ack -e 40 -c 0 -i 2304 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.32728 -s 10 -d 7 -p ack -e 40 -c 0 -i 2308 -a 0 -x {10.0 9.0 1149 ------- null} + -t 1.32728 -s 7 -d 0 -p ack -e 40 -c 0 -i 2308 -a 0 -x {10.0 9.0 1149 ------- null} h -t 1.32728 -s 7 -d 8 -p ack -e 40 -c 0 -i 2308 -a 0 -x {10.0 9.0 1149 ------- null} r -t 1.32736 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2307 -a 0 -x {9.0 10.0 1158 ------- null} + -t 1.32736 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2307 -a 0 -x {9.0 10.0 1158 ------- null} h -t 1.32736 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2307 -a 0 -x {9.0 10.0 1158 ------- null} r -t 1.32742 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2293 -a 0 -x {9.0 10.0 1151 ------- null} + -t 1.32742 -s 10 -d 7 -p ack -e 40 -c 0 -i 2312 -a 0 -x {10.0 9.0 1151 ------- null} - -t 1.32742 -s 10 -d 7 -p ack -e 40 -c 0 -i 2312 -a 0 -x {10.0 9.0 1151 ------- null} h -t 1.32742 -s 10 -d 7 -p ack -e 40 -c 0 -i 2312 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.32803 -s 0 -d 9 -p ack -e 40 -c 0 -i 2302 -a 0 -x {10.0 9.0 1146 ------- null} + -t 1.32803 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2313 -a 0 -x {9.0 10.0 1161 ------- null} - -t 1.32803 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2313 -a 0 -x {9.0 10.0 1161 ------- null} h -t 1.32803 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2313 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.32805 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2299 -a 0 -x {9.0 10.0 1154 ------- null} - -t 1.32805 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2299 -a 0 -x {9.0 10.0 1154 ------- null} h -t 1.32805 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2299 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.32811 -s 0 -d 9 -p ack -e 40 -c 0 -i 2306 -a 0 -x {10.0 9.0 1148 ------- null} - -t 1.32811 -s 0 -d 9 -p ack -e 40 -c 0 -i 2306 -a 0 -x {10.0 9.0 1148 ------- null} h -t 1.32811 -s 0 -d 9 -p ack -e 40 -c 0 -i 2306 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.32837 -s 10 -d 7 -p ack -e 40 -c 0 -i 2310 -a 0 -x {10.0 9.0 1150 ------- null} + -t 1.32837 -s 7 -d 0 -p ack -e 40 -c 0 -i 2310 -a 0 -x {10.0 9.0 1150 ------- null} h -t 1.32837 -s 7 -d 8 -p ack -e 40 -c 0 -i 2310 -a 0 -x {10.0 9.0 1150 ------- null} r -t 1.32845 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2309 -a 0 -x {9.0 10.0 1159 ------- null} + -t 1.32845 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2309 -a 0 -x {9.0 10.0 1159 ------- null} h -t 1.32845 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2309 -a 0 -x {9.0 10.0 1159 ------- null} r -t 1.32851 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2295 -a 0 -x {9.0 10.0 1152 ------- null} + -t 1.32851 -s 10 -d 7 -p ack -e 40 -c 0 -i 2314 -a 0 -x {10.0 9.0 1152 ------- null} - -t 1.32851 -s 10 -d 7 -p ack -e 40 -c 0 -i 2314 -a 0 -x {10.0 9.0 1152 ------- null} h -t 1.32851 -s 10 -d 7 -p ack -e 40 -c 0 -i 2314 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.32914 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2301 -a 0 -x {9.0 10.0 1155 ------- null} - -t 1.32914 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2301 -a 0 -x {9.0 10.0 1155 ------- null} h -t 1.32914 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2301 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.32918 -s 0 -d 9 -p ack -e 40 -c 0 -i 2304 -a 0 -x {10.0 9.0 1147 ------- null} + -t 1.32918 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2315 -a 0 -x {9.0 10.0 1162 ------- null} - -t 1.32918 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2315 -a 0 -x {9.0 10.0 1162 ------- null} h -t 1.32918 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2315 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.32925 -s 0 -d 9 -p ack -e 40 -c 0 -i 2308 -a 0 -x {10.0 9.0 1149 ------- null} - -t 1.32925 -s 0 -d 9 -p ack -e 40 -c 0 -i 2308 -a 0 -x {10.0 9.0 1149 ------- null} h -t 1.32925 -s 0 -d 9 -p ack -e 40 -c 0 -i 2308 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.32946 -s 10 -d 7 -p ack -e 40 -c 0 -i 2312 -a 0 -x {10.0 9.0 1151 ------- null} + -t 1.32946 -s 7 -d 0 -p ack -e 40 -c 0 -i 2312 -a 0 -x {10.0 9.0 1151 ------- null} h -t 1.32946 -s 7 -d 8 -p ack -e 40 -c 0 -i 2312 -a 0 -x {10.0 9.0 1151 ------- null} r -t 1.32963 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2311 -a 0 -x {9.0 10.0 1160 ------- null} + -t 1.32963 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2311 -a 0 -x {9.0 10.0 1160 ------- null} h -t 1.32963 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2311 -a 0 -x {9.0 10.0 1160 ------- null} r -t 1.32976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2297 -a 0 -x {9.0 10.0 1153 ------- null} + -t 1.32976 -s 10 -d 7 -p ack -e 40 -c 0 -i 2316 -a 0 -x {10.0 9.0 1153 ------- null} - -t 1.32976 -s 10 -d 7 -p ack -e 40 -c 0 -i 2316 -a 0 -x {10.0 9.0 1153 ------- null} h -t 1.32976 -s 10 -d 7 -p ack -e 40 -c 0 -i 2316 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.33014 -s 0 -d 9 -p ack -e 40 -c 0 -i 2306 -a 0 -x {10.0 9.0 1148 ------- null} + -t 1.33014 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2317 -a 0 -x {9.0 10.0 1163 ------- null} - -t 1.33014 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2317 -a 0 -x {9.0 10.0 1163 ------- null} h -t 1.33014 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2317 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.33022 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2303 -a 0 -x {9.0 10.0 1156 ------- null} - -t 1.33022 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2303 -a 0 -x {9.0 10.0 1156 ------- null} h -t 1.33022 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2303 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.33038 -s 0 -d 9 -p ack -e 40 -c 0 -i 2310 -a 0 -x {10.0 9.0 1150 ------- null} - -t 1.33038 -s 0 -d 9 -p ack -e 40 -c 0 -i 2310 -a 0 -x {10.0 9.0 1150 ------- null} h -t 1.33038 -s 0 -d 9 -p ack -e 40 -c 0 -i 2310 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.33054 -s 10 -d 7 -p ack -e 40 -c 0 -i 2314 -a 0 -x {10.0 9.0 1152 ------- null} + -t 1.33054 -s 7 -d 0 -p ack -e 40 -c 0 -i 2314 -a 0 -x {10.0 9.0 1152 ------- null} h -t 1.33054 -s 7 -d 8 -p ack -e 40 -c 0 -i 2314 -a 0 -x {10.0 9.0 1152 ------- null} r -t 1.33083 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2313 -a 0 -x {9.0 10.0 1161 ------- null} + -t 1.33083 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2313 -a 0 -x {9.0 10.0 1161 ------- null} h -t 1.33083 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2313 -a 0 -x {9.0 10.0 1161 ------- null} r -t 1.33085 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2299 -a 0 -x {9.0 10.0 1154 ------- null} + -t 1.33085 -s 10 -d 7 -p ack -e 40 -c 0 -i 2318 -a 0 -x {10.0 9.0 1154 ------- null} - -t 1.33085 -s 10 -d 7 -p ack -e 40 -c 0 -i 2318 -a 0 -x {10.0 9.0 1154 ------- null} h -t 1.33085 -s 10 -d 7 -p ack -e 40 -c 0 -i 2318 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.33128 -s 0 -d 9 -p ack -e 40 -c 0 -i 2308 -a 0 -x {10.0 9.0 1149 ------- null} + -t 1.33128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2319 -a 0 -x {9.0 10.0 1164 ------- null} - -t 1.33128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2319 -a 0 -x {9.0 10.0 1164 ------- null} h -t 1.33128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2319 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.33131 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2305 -a 0 -x {9.0 10.0 1157 ------- null} - -t 1.33131 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2305 -a 0 -x {9.0 10.0 1157 ------- null} h -t 1.33131 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2305 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.33158 -s 0 -d 9 -p ack -e 40 -c 0 -i 2312 -a 0 -x {10.0 9.0 1151 ------- null} - -t 1.33158 -s 0 -d 9 -p ack -e 40 -c 0 -i 2312 -a 0 -x {10.0 9.0 1151 ------- null} h -t 1.33158 -s 0 -d 9 -p ack -e 40 -c 0 -i 2312 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.33179 -s 10 -d 7 -p ack -e 40 -c 0 -i 2316 -a 0 -x {10.0 9.0 1153 ------- null} + -t 1.33179 -s 7 -d 0 -p ack -e 40 -c 0 -i 2316 -a 0 -x {10.0 9.0 1153 ------- null} h -t 1.33179 -s 7 -d 8 -p ack -e 40 -c 0 -i 2316 -a 0 -x {10.0 9.0 1153 ------- null} r -t 1.33194 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2301 -a 0 -x {9.0 10.0 1155 ------- null} + -t 1.33194 -s 10 -d 7 -p ack -e 40 -c 0 -i 2320 -a 0 -x {10.0 9.0 1155 ------- null} - -t 1.33194 -s 10 -d 7 -p ack -e 40 -c 0 -i 2320 -a 0 -x {10.0 9.0 1155 ------- null} h -t 1.33194 -s 10 -d 7 -p ack -e 40 -c 0 -i 2320 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.33198 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2315 -a 0 -x {9.0 10.0 1162 ------- null} + -t 1.33198 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2315 -a 0 -x {9.0 10.0 1162 ------- null} h -t 1.33198 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2315 -a 0 -x {9.0 10.0 1162 ------- null} r -t 1.33242 -s 0 -d 9 -p ack -e 40 -c 0 -i 2310 -a 0 -x {10.0 9.0 1150 ------- null} + -t 1.33242 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2321 -a 0 -x {9.0 10.0 1165 ------- null} - -t 1.33242 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2321 -a 0 -x {9.0 10.0 1165 ------- null} h -t 1.33242 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2321 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.33254 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2307 -a 0 -x {9.0 10.0 1158 ------- null} - -t 1.33254 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2307 -a 0 -x {9.0 10.0 1158 ------- null} h -t 1.33254 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2307 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.33275 -s 0 -d 9 -p ack -e 40 -c 0 -i 2314 -a 0 -x {10.0 9.0 1152 ------- null} - -t 1.33275 -s 0 -d 9 -p ack -e 40 -c 0 -i 2314 -a 0 -x {10.0 9.0 1152 ------- null} h -t 1.33275 -s 0 -d 9 -p ack -e 40 -c 0 -i 2314 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.33288 -s 10 -d 7 -p ack -e 40 -c 0 -i 2318 -a 0 -x {10.0 9.0 1154 ------- null} + -t 1.33288 -s 7 -d 0 -p ack -e 40 -c 0 -i 2318 -a 0 -x {10.0 9.0 1154 ------- null} h -t 1.33288 -s 7 -d 8 -p ack -e 40 -c 0 -i 2318 -a 0 -x {10.0 9.0 1154 ------- null} r -t 1.33294 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2317 -a 0 -x {9.0 10.0 1163 ------- null} + -t 1.33294 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2317 -a 0 -x {9.0 10.0 1163 ------- null} h -t 1.33294 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2317 -a 0 -x {9.0 10.0 1163 ------- null} r -t 1.33302 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2303 -a 0 -x {9.0 10.0 1156 ------- null} + -t 1.33302 -s 10 -d 7 -p ack -e 40 -c 0 -i 2322 -a 0 -x {10.0 9.0 1156 ------- null} - -t 1.33302 -s 10 -d 7 -p ack -e 40 -c 0 -i 2322 -a 0 -x {10.0 9.0 1156 ------- null} h -t 1.33302 -s 10 -d 7 -p ack -e 40 -c 0 -i 2322 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.33362 -s 0 -d 9 -p ack -e 40 -c 0 -i 2312 -a 0 -x {10.0 9.0 1151 ------- null} + -t 1.33362 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2323 -a 0 -x {9.0 10.0 1166 ------- null} - -t 1.33362 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2323 -a 0 -x {9.0 10.0 1166 ------- null} h -t 1.33362 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2323 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.33363 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2309 -a 0 -x {9.0 10.0 1159 ------- null} - -t 1.33363 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2309 -a 0 -x {9.0 10.0 1159 ------- null} h -t 1.33363 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2309 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.33374 -s 0 -d 9 -p ack -e 40 -c 0 -i 2316 -a 0 -x {10.0 9.0 1153 ------- null} - -t 1.33374 -s 0 -d 9 -p ack -e 40 -c 0 -i 2316 -a 0 -x {10.0 9.0 1153 ------- null} h -t 1.33374 -s 0 -d 9 -p ack -e 40 -c 0 -i 2316 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.33397 -s 10 -d 7 -p ack -e 40 -c 0 -i 2320 -a 0 -x {10.0 9.0 1155 ------- null} + -t 1.33397 -s 7 -d 0 -p ack -e 40 -c 0 -i 2320 -a 0 -x {10.0 9.0 1155 ------- null} h -t 1.33397 -s 7 -d 8 -p ack -e 40 -c 0 -i 2320 -a 0 -x {10.0 9.0 1155 ------- null} r -t 1.33408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2319 -a 0 -x {9.0 10.0 1164 ------- null} + -t 1.33408 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2319 -a 0 -x {9.0 10.0 1164 ------- null} h -t 1.33408 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2319 -a 0 -x {9.0 10.0 1164 ------- null} r -t 1.33411 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2305 -a 0 -x {9.0 10.0 1157 ------- null} + -t 1.33411 -s 10 -d 7 -p ack -e 40 -c 0 -i 2324 -a 0 -x {10.0 9.0 1157 ------- null} - -t 1.33411 -s 10 -d 7 -p ack -e 40 -c 0 -i 2324 -a 0 -x {10.0 9.0 1157 ------- null} h -t 1.33411 -s 10 -d 7 -p ack -e 40 -c 0 -i 2324 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.33472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2311 -a 0 -x {9.0 10.0 1160 ------- null} - -t 1.33472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2311 -a 0 -x {9.0 10.0 1160 ------- null} h -t 1.33472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2311 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.33478 -s 0 -d 9 -p ack -e 40 -c 0 -i 2314 -a 0 -x {10.0 9.0 1152 ------- null} + -t 1.33478 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2325 -a 0 -x {9.0 10.0 1167 ------- null} - -t 1.33478 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2325 -a 0 -x {9.0 10.0 1167 ------- null} h -t 1.33478 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2325 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.33485 -s 0 -d 9 -p ack -e 40 -c 0 -i 2318 -a 0 -x {10.0 9.0 1154 ------- null} - -t 1.33485 -s 0 -d 9 -p ack -e 40 -c 0 -i 2318 -a 0 -x {10.0 9.0 1154 ------- null} h -t 1.33485 -s 0 -d 9 -p ack -e 40 -c 0 -i 2318 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.33506 -s 10 -d 7 -p ack -e 40 -c 0 -i 2322 -a 0 -x {10.0 9.0 1156 ------- null} + -t 1.33506 -s 7 -d 0 -p ack -e 40 -c 0 -i 2322 -a 0 -x {10.0 9.0 1156 ------- null} h -t 1.33506 -s 7 -d 8 -p ack -e 40 -c 0 -i 2322 -a 0 -x {10.0 9.0 1156 ------- null} r -t 1.33522 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2321 -a 0 -x {9.0 10.0 1165 ------- null} + -t 1.33522 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2321 -a 0 -x {9.0 10.0 1165 ------- null} h -t 1.33522 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2321 -a 0 -x {9.0 10.0 1165 ------- null} r -t 1.33534 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2307 -a 0 -x {9.0 10.0 1158 ------- null} + -t 1.33534 -s 10 -d 7 -p ack -e 40 -c 0 -i 2326 -a 0 -x {10.0 9.0 1158 ------- null} - -t 1.33534 -s 10 -d 7 -p ack -e 40 -c 0 -i 2326 -a 0 -x {10.0 9.0 1158 ------- null} h -t 1.33534 -s 10 -d 7 -p ack -e 40 -c 0 -i 2326 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.33578 -s 0 -d 9 -p ack -e 40 -c 0 -i 2316 -a 0 -x {10.0 9.0 1153 ------- null} + -t 1.33578 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2327 -a 0 -x {9.0 10.0 1168 ------- null} - -t 1.33578 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2327 -a 0 -x {9.0 10.0 1168 ------- null} h -t 1.33578 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2327 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.33581 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2313 -a 0 -x {9.0 10.0 1161 ------- null} - -t 1.33581 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2313 -a 0 -x {9.0 10.0 1161 ------- null} h -t 1.33581 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2313 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.33594 -s 0 -d 9 -p ack -e 40 -c 0 -i 2320 -a 0 -x {10.0 9.0 1155 ------- null} - -t 1.33594 -s 0 -d 9 -p ack -e 40 -c 0 -i 2320 -a 0 -x {10.0 9.0 1155 ------- null} h -t 1.33594 -s 0 -d 9 -p ack -e 40 -c 0 -i 2320 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.33614 -s 10 -d 7 -p ack -e 40 -c 0 -i 2324 -a 0 -x {10.0 9.0 1157 ------- null} + -t 1.33614 -s 7 -d 0 -p ack -e 40 -c 0 -i 2324 -a 0 -x {10.0 9.0 1157 ------- null} h -t 1.33614 -s 7 -d 8 -p ack -e 40 -c 0 -i 2324 -a 0 -x {10.0 9.0 1157 ------- null} r -t 1.33642 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2323 -a 0 -x {9.0 10.0 1166 ------- null} + -t 1.33642 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2323 -a 0 -x {9.0 10.0 1166 ------- null} h -t 1.33642 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2323 -a 0 -x {9.0 10.0 1166 ------- null} r -t 1.33643 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2309 -a 0 -x {9.0 10.0 1159 ------- null} + -t 1.33643 -s 10 -d 7 -p ack -e 40 -c 0 -i 2328 -a 0 -x {10.0 9.0 1159 ------- null} - -t 1.33643 -s 10 -d 7 -p ack -e 40 -c 0 -i 2328 -a 0 -x {10.0 9.0 1159 ------- null} h -t 1.33643 -s 10 -d 7 -p ack -e 40 -c 0 -i 2328 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.33688 -s 0 -d 9 -p ack -e 40 -c 0 -i 2318 -a 0 -x {10.0 9.0 1154 ------- null} + -t 1.33688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2329 -a 0 -x {9.0 10.0 1169 ------- null} - -t 1.33688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2329 -a 0 -x {9.0 10.0 1169 ------- null} h -t 1.33688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2329 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.3369 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2315 -a 0 -x {9.0 10.0 1162 ------- null} - -t 1.3369 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2315 -a 0 -x {9.0 10.0 1162 ------- null} h -t 1.3369 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2315 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.33696 -s 0 -d 9 -p ack -e 40 -c 0 -i 2322 -a 0 -x {10.0 9.0 1156 ------- null} - -t 1.33696 -s 0 -d 9 -p ack -e 40 -c 0 -i 2322 -a 0 -x {10.0 9.0 1156 ------- null} h -t 1.33696 -s 0 -d 9 -p ack -e 40 -c 0 -i 2322 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.33738 -s 10 -d 7 -p ack -e 40 -c 0 -i 2326 -a 0 -x {10.0 9.0 1158 ------- null} + -t 1.33738 -s 7 -d 0 -p ack -e 40 -c 0 -i 2326 -a 0 -x {10.0 9.0 1158 ------- null} h -t 1.33738 -s 7 -d 8 -p ack -e 40 -c 0 -i 2326 -a 0 -x {10.0 9.0 1158 ------- null} r -t 1.33752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2311 -a 0 -x {9.0 10.0 1160 ------- null} + -t 1.33752 -s 10 -d 7 -p ack -e 40 -c 0 -i 2330 -a 0 -x {10.0 9.0 1160 ------- null} - -t 1.33752 -s 10 -d 7 -p ack -e 40 -c 0 -i 2330 -a 0 -x {10.0 9.0 1160 ------- null} h -t 1.33752 -s 10 -d 7 -p ack -e 40 -c 0 -i 2330 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.33758 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2325 -a 0 -x {9.0 10.0 1167 ------- null} + -t 1.33758 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2325 -a 0 -x {9.0 10.0 1167 ------- null} h -t 1.33758 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2325 -a 0 -x {9.0 10.0 1167 ------- null} r -t 1.33797 -s 0 -d 9 -p ack -e 40 -c 0 -i 2320 -a 0 -x {10.0 9.0 1155 ------- null} + -t 1.33797 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2331 -a 0 -x {9.0 10.0 1170 ------- null} - -t 1.33797 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2331 -a 0 -x {9.0 10.0 1170 ------- null} h -t 1.33797 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2331 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.33798 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2317 -a 0 -x {9.0 10.0 1163 ------- null} - -t 1.33798 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2317 -a 0 -x {9.0 10.0 1163 ------- null} h -t 1.33798 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2317 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.33814 -s 0 -d 9 -p ack -e 40 -c 0 -i 2324 -a 0 -x {10.0 9.0 1157 ------- null} - -t 1.33814 -s 0 -d 9 -p ack -e 40 -c 0 -i 2324 -a 0 -x {10.0 9.0 1157 ------- null} h -t 1.33814 -s 0 -d 9 -p ack -e 40 -c 0 -i 2324 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.33846 -s 10 -d 7 -p ack -e 40 -c 0 -i 2328 -a 0 -x {10.0 9.0 1159 ------- null} + -t 1.33846 -s 7 -d 0 -p ack -e 40 -c 0 -i 2328 -a 0 -x {10.0 9.0 1159 ------- null} h -t 1.33846 -s 7 -d 8 -p ack -e 40 -c 0 -i 2328 -a 0 -x {10.0 9.0 1159 ------- null} r -t 1.33858 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2327 -a 0 -x {9.0 10.0 1168 ------- null} + -t 1.33858 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2327 -a 0 -x {9.0 10.0 1168 ------- null} h -t 1.33858 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2327 -a 0 -x {9.0 10.0 1168 ------- null} r -t 1.33861 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2313 -a 0 -x {9.0 10.0 1161 ------- null} + -t 1.33861 -s 10 -d 7 -p ack -e 40 -c 0 -i 2332 -a 0 -x {10.0 9.0 1161 ------- null} - -t 1.33861 -s 10 -d 7 -p ack -e 40 -c 0 -i 2332 -a 0 -x {10.0 9.0 1161 ------- null} h -t 1.33861 -s 10 -d 7 -p ack -e 40 -c 0 -i 2332 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.33899 -s 0 -d 9 -p ack -e 40 -c 0 -i 2322 -a 0 -x {10.0 9.0 1156 ------- null} + -t 1.33899 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2333 -a 0 -x {9.0 10.0 1171 ------- null} - -t 1.33899 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2333 -a 0 -x {9.0 10.0 1171 ------- null} h -t 1.33899 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2333 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.33907 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2319 -a 0 -x {9.0 10.0 1164 ------- null} - -t 1.33907 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2319 -a 0 -x {9.0 10.0 1164 ------- null} h -t 1.33907 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2319 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.3392 -s 0 -d 9 -p ack -e 40 -c 0 -i 2326 -a 0 -x {10.0 9.0 1158 ------- null} - -t 1.3392 -s 0 -d 9 -p ack -e 40 -c 0 -i 2326 -a 0 -x {10.0 9.0 1158 ------- null} h -t 1.3392 -s 0 -d 9 -p ack -e 40 -c 0 -i 2326 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.33955 -s 10 -d 7 -p ack -e 40 -c 0 -i 2330 -a 0 -x {10.0 9.0 1160 ------- null} + -t 1.33955 -s 7 -d 0 -p ack -e 40 -c 0 -i 2330 -a 0 -x {10.0 9.0 1160 ------- null} h -t 1.33955 -s 7 -d 8 -p ack -e 40 -c 0 -i 2330 -a 0 -x {10.0 9.0 1160 ------- null} r -t 1.33968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2329 -a 0 -x {9.0 10.0 1169 ------- null} + -t 1.33968 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2329 -a 0 -x {9.0 10.0 1169 ------- null} h -t 1.33968 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2329 -a 0 -x {9.0 10.0 1169 ------- null} r -t 1.3397 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2315 -a 0 -x {9.0 10.0 1162 ------- null} + -t 1.3397 -s 10 -d 7 -p ack -e 40 -c 0 -i 2334 -a 0 -x {10.0 9.0 1162 ------- null} - -t 1.3397 -s 10 -d 7 -p ack -e 40 -c 0 -i 2334 -a 0 -x {10.0 9.0 1162 ------- null} h -t 1.3397 -s 10 -d 7 -p ack -e 40 -c 0 -i 2334 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.34016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2321 -a 0 -x {9.0 10.0 1165 ------- null} - -t 1.34016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2321 -a 0 -x {9.0 10.0 1165 ------- null} h -t 1.34016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2321 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.34018 -s 0 -d 9 -p ack -e 40 -c 0 -i 2324 -a 0 -x {10.0 9.0 1157 ------- null} + -t 1.34018 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2335 -a 0 -x {9.0 10.0 1172 ------- null} - -t 1.34018 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2335 -a 0 -x {9.0 10.0 1172 ------- null} h -t 1.34018 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2335 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.34034 -s 0 -d 9 -p ack -e 40 -c 0 -i 2328 -a 0 -x {10.0 9.0 1159 ------- null} - -t 1.34034 -s 0 -d 9 -p ack -e 40 -c 0 -i 2328 -a 0 -x {10.0 9.0 1159 ------- null} h -t 1.34034 -s 0 -d 9 -p ack -e 40 -c 0 -i 2328 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.34064 -s 10 -d 7 -p ack -e 40 -c 0 -i 2332 -a 0 -x {10.0 9.0 1161 ------- null} + -t 1.34064 -s 7 -d 0 -p ack -e 40 -c 0 -i 2332 -a 0 -x {10.0 9.0 1161 ------- null} h -t 1.34064 -s 7 -d 8 -p ack -e 40 -c 0 -i 2332 -a 0 -x {10.0 9.0 1161 ------- null} r -t 1.34077 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2331 -a 0 -x {9.0 10.0 1170 ------- null} + -t 1.34077 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2331 -a 0 -x {9.0 10.0 1170 ------- null} h -t 1.34077 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2331 -a 0 -x {9.0 10.0 1170 ------- null} r -t 1.34078 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2317 -a 0 -x {9.0 10.0 1163 ------- null} + -t 1.34078 -s 10 -d 7 -p ack -e 40 -c 0 -i 2336 -a 0 -x {10.0 9.0 1163 ------- null} - -t 1.34078 -s 10 -d 7 -p ack -e 40 -c 0 -i 2336 -a 0 -x {10.0 9.0 1163 ------- null} h -t 1.34078 -s 10 -d 7 -p ack -e 40 -c 0 -i 2336 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.34123 -s 0 -d 9 -p ack -e 40 -c 0 -i 2326 -a 0 -x {10.0 9.0 1158 ------- null} + -t 1.34123 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2337 -a 0 -x {9.0 10.0 1173 ------- null} - -t 1.34123 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2337 -a 0 -x {9.0 10.0 1173 ------- null} h -t 1.34123 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2337 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.34125 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2323 -a 0 -x {9.0 10.0 1166 ------- null} - -t 1.34125 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2323 -a 0 -x {9.0 10.0 1166 ------- null} h -t 1.34125 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2323 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.34142 -s 0 -d 9 -p ack -e 40 -c 0 -i 2330 -a 0 -x {10.0 9.0 1160 ------- null} - -t 1.34142 -s 0 -d 9 -p ack -e 40 -c 0 -i 2330 -a 0 -x {10.0 9.0 1160 ------- null} h -t 1.34142 -s 0 -d 9 -p ack -e 40 -c 0 -i 2330 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.34173 -s 10 -d 7 -p ack -e 40 -c 0 -i 2334 -a 0 -x {10.0 9.0 1162 ------- null} + -t 1.34173 -s 7 -d 0 -p ack -e 40 -c 0 -i 2334 -a 0 -x {10.0 9.0 1162 ------- null} h -t 1.34173 -s 7 -d 8 -p ack -e 40 -c 0 -i 2334 -a 0 -x {10.0 9.0 1162 ------- null} r -t 1.34179 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2333 -a 0 -x {9.0 10.0 1171 ------- null} + -t 1.34179 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2333 -a 0 -x {9.0 10.0 1171 ------- null} h -t 1.34179 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2333 -a 0 -x {9.0 10.0 1171 ------- null} r -t 1.34187 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2319 -a 0 -x {9.0 10.0 1164 ------- null} + -t 1.34187 -s 10 -d 7 -p ack -e 40 -c 0 -i 2338 -a 0 -x {10.0 9.0 1164 ------- null} - -t 1.34187 -s 10 -d 7 -p ack -e 40 -c 0 -i 2338 -a 0 -x {10.0 9.0 1164 ------- null} h -t 1.34187 -s 10 -d 7 -p ack -e 40 -c 0 -i 2338 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.34234 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2325 -a 0 -x {9.0 10.0 1167 ------- null} - -t 1.34234 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2325 -a 0 -x {9.0 10.0 1167 ------- null} h -t 1.34234 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2325 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.34237 -s 0 -d 9 -p ack -e 40 -c 0 -i 2328 -a 0 -x {10.0 9.0 1159 ------- null} + -t 1.34237 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2339 -a 0 -x {9.0 10.0 1174 ------- null} - -t 1.34237 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2339 -a 0 -x {9.0 10.0 1174 ------- null} h -t 1.34237 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2339 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.34262 -s 0 -d 9 -p ack -e 40 -c 0 -i 2332 -a 0 -x {10.0 9.0 1161 ------- null} - -t 1.34262 -s 0 -d 9 -p ack -e 40 -c 0 -i 2332 -a 0 -x {10.0 9.0 1161 ------- null} h -t 1.34262 -s 0 -d 9 -p ack -e 40 -c 0 -i 2332 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.34282 -s 10 -d 7 -p ack -e 40 -c 0 -i 2336 -a 0 -x {10.0 9.0 1163 ------- null} + -t 1.34282 -s 7 -d 0 -p ack -e 40 -c 0 -i 2336 -a 0 -x {10.0 9.0 1163 ------- null} h -t 1.34282 -s 7 -d 8 -p ack -e 40 -c 0 -i 2336 -a 0 -x {10.0 9.0 1163 ------- null} r -t 1.34296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2321 -a 0 -x {9.0 10.0 1165 ------- null} + -t 1.34296 -s 10 -d 7 -p ack -e 40 -c 0 -i 2340 -a 0 -x {10.0 9.0 1165 ------- null} - -t 1.34296 -s 10 -d 7 -p ack -e 40 -c 0 -i 2340 -a 0 -x {10.0 9.0 1165 ------- null} h -t 1.34296 -s 10 -d 7 -p ack -e 40 -c 0 -i 2340 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.34298 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2335 -a 0 -x {9.0 10.0 1172 ------- null} + -t 1.34298 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2335 -a 0 -x {9.0 10.0 1172 ------- null} h -t 1.34298 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2335 -a 0 -x {9.0 10.0 1172 ------- null} r -t 1.34346 -s 0 -d 9 -p ack -e 40 -c 0 -i 2330 -a 0 -x {10.0 9.0 1160 ------- null} + -t 1.34346 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2341 -a 0 -x {9.0 10.0 1175 ------- null} - -t 1.34346 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2341 -a 0 -x {9.0 10.0 1175 ------- null} h -t 1.34346 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2341 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.34365 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2327 -a 0 -x {9.0 10.0 1168 ------- null} - -t 1.34365 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2327 -a 0 -x {9.0 10.0 1168 ------- null} h -t 1.34365 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2327 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.3439 -s 10 -d 7 -p ack -e 40 -c 0 -i 2338 -a 0 -x {10.0 9.0 1164 ------- null} + -t 1.3439 -s 7 -d 0 -p ack -e 40 -c 0 -i 2338 -a 0 -x {10.0 9.0 1164 ------- null} h -t 1.3439 -s 7 -d 8 -p ack -e 40 -c 0 -i 2338 -a 0 -x {10.0 9.0 1164 ------- null} + -t 1.34395 -s 0 -d 9 -p ack -e 40 -c 0 -i 2334 -a 0 -x {10.0 9.0 1162 ------- null} - -t 1.34395 -s 0 -d 9 -p ack -e 40 -c 0 -i 2334 -a 0 -x {10.0 9.0 1162 ------- null} h -t 1.34395 -s 0 -d 9 -p ack -e 40 -c 0 -i 2334 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.34403 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2337 -a 0 -x {9.0 10.0 1173 ------- null} + -t 1.34403 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2337 -a 0 -x {9.0 10.0 1173 ------- null} h -t 1.34403 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2337 -a 0 -x {9.0 10.0 1173 ------- null} r -t 1.34405 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2323 -a 0 -x {9.0 10.0 1166 ------- null} + -t 1.34405 -s 10 -d 7 -p ack -e 40 -c 0 -i 2342 -a 0 -x {10.0 9.0 1166 ------- null} - -t 1.34405 -s 10 -d 7 -p ack -e 40 -c 0 -i 2342 -a 0 -x {10.0 9.0 1166 ------- null} h -t 1.34405 -s 10 -d 7 -p ack -e 40 -c 0 -i 2342 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.34466 -s 0 -d 9 -p ack -e 40 -c 0 -i 2332 -a 0 -x {10.0 9.0 1161 ------- null} + -t 1.34466 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2343 -a 0 -x {9.0 10.0 1176 ------- null} - -t 1.34466 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2343 -a 0 -x {9.0 10.0 1176 ------- null} h -t 1.34466 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2343 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.34499 -s 10 -d 7 -p ack -e 40 -c 0 -i 2340 -a 0 -x {10.0 9.0 1165 ------- null} + -t 1.34499 -s 7 -d 0 -p ack -e 40 -c 0 -i 2340 -a 0 -x {10.0 9.0 1165 ------- null} h -t 1.34499 -s 7 -d 8 -p ack -e 40 -c 0 -i 2340 -a 0 -x {10.0 9.0 1165 ------- null} + -t 1.34499 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2329 -a 0 -x {9.0 10.0 1169 ------- null} - -t 1.34499 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2329 -a 0 -x {9.0 10.0 1169 ------- null} h -t 1.34499 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2329 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.34506 -s 0 -d 9 -p ack -e 40 -c 0 -i 2336 -a 0 -x {10.0 9.0 1163 ------- null} - -t 1.34506 -s 0 -d 9 -p ack -e 40 -c 0 -i 2336 -a 0 -x {10.0 9.0 1163 ------- null} h -t 1.34506 -s 0 -d 9 -p ack -e 40 -c 0 -i 2336 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.34514 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2325 -a 0 -x {9.0 10.0 1167 ------- null} + -t 1.34514 -s 10 -d 7 -p ack -e 40 -c 0 -i 2344 -a 0 -x {10.0 9.0 1167 ------- null} - -t 1.34514 -s 10 -d 7 -p ack -e 40 -c 0 -i 2344 -a 0 -x {10.0 9.0 1167 ------- null} h -t 1.34514 -s 10 -d 7 -p ack -e 40 -c 0 -i 2344 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.34517 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2339 -a 0 -x {9.0 10.0 1174 ------- null} + -t 1.34517 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2339 -a 0 -x {9.0 10.0 1174 ------- null} h -t 1.34517 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2339 -a 0 -x {9.0 10.0 1174 ------- null} r -t 1.34598 -s 0 -d 9 -p ack -e 40 -c 0 -i 2334 -a 0 -x {10.0 9.0 1162 ------- null} + -t 1.34598 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2345 -a 0 -x {9.0 10.0 1177 ------- null} - -t 1.34598 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2345 -a 0 -x {9.0 10.0 1177 ------- null} h -t 1.34598 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2345 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.34608 -s 10 -d 7 -p ack -e 40 -c 0 -i 2342 -a 0 -x {10.0 9.0 1166 ------- null} + -t 1.34608 -s 7 -d 0 -p ack -e 40 -c 0 -i 2342 -a 0 -x {10.0 9.0 1166 ------- null} h -t 1.34608 -s 7 -d 8 -p ack -e 40 -c 0 -i 2342 -a 0 -x {10.0 9.0 1166 ------- null} + -t 1.34608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2331 -a 0 -x {9.0 10.0 1170 ------- null} - -t 1.34608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2331 -a 0 -x {9.0 10.0 1170 ------- null} h -t 1.34608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2331 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.34626 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2341 -a 0 -x {9.0 10.0 1175 ------- null} + -t 1.34626 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2341 -a 0 -x {9.0 10.0 1175 ------- null} h -t 1.34626 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2341 -a 0 -x {9.0 10.0 1175 ------- null} + -t 1.3463 -s 0 -d 9 -p ack -e 40 -c 0 -i 2338 -a 0 -x {10.0 9.0 1164 ------- null} - -t 1.3463 -s 0 -d 9 -p ack -e 40 -c 0 -i 2338 -a 0 -x {10.0 9.0 1164 ------- null} h -t 1.3463 -s 0 -d 9 -p ack -e 40 -c 0 -i 2338 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.34645 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2327 -a 0 -x {9.0 10.0 1168 ------- null} + -t 1.34645 -s 10 -d 7 -p ack -e 40 -c 0 -i 2346 -a 0 -x {10.0 9.0 1168 ------- null} - -t 1.34645 -s 10 -d 7 -p ack -e 40 -c 0 -i 2346 -a 0 -x {10.0 9.0 1168 ------- null} h -t 1.34645 -s 10 -d 7 -p ack -e 40 -c 0 -i 2346 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.34709 -s 0 -d 9 -p ack -e 40 -c 0 -i 2336 -a 0 -x {10.0 9.0 1163 ------- null} + -t 1.34709 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2347 -a 0 -x {9.0 10.0 1178 ------- null} - -t 1.34709 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2347 -a 0 -x {9.0 10.0 1178 ------- null} h -t 1.34709 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2347 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.34717 -s 10 -d 7 -p ack -e 40 -c 0 -i 2344 -a 0 -x {10.0 9.0 1167 ------- null} + -t 1.34717 -s 7 -d 0 -p ack -e 40 -c 0 -i 2344 -a 0 -x {10.0 9.0 1167 ------- null} h -t 1.34717 -s 7 -d 8 -p ack -e 40 -c 0 -i 2344 -a 0 -x {10.0 9.0 1167 ------- null} + -t 1.34717 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2333 -a 0 -x {9.0 10.0 1171 ------- null} - -t 1.34717 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2333 -a 0 -x {9.0 10.0 1171 ------- null} h -t 1.34717 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2333 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.34738 -s 0 -d 9 -p ack -e 40 -c 0 -i 2340 -a 0 -x {10.0 9.0 1165 ------- null} - -t 1.34738 -s 0 -d 9 -p ack -e 40 -c 0 -i 2340 -a 0 -x {10.0 9.0 1165 ------- null} h -t 1.34738 -s 0 -d 9 -p ack -e 40 -c 0 -i 2340 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.34746 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2343 -a 0 -x {9.0 10.0 1176 ------- null} + -t 1.34746 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2343 -a 0 -x {9.0 10.0 1176 ------- null} h -t 1.34746 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2343 -a 0 -x {9.0 10.0 1176 ------- null} r -t 1.34779 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2329 -a 0 -x {9.0 10.0 1169 ------- null} + -t 1.34779 -s 10 -d 7 -p ack -e 40 -c 0 -i 2348 -a 0 -x {10.0 9.0 1169 ------- null} - -t 1.34779 -s 10 -d 7 -p ack -e 40 -c 0 -i 2348 -a 0 -x {10.0 9.0 1169 ------- null} h -t 1.34779 -s 10 -d 7 -p ack -e 40 -c 0 -i 2348 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.34826 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2335 -a 0 -x {9.0 10.0 1172 ------- null} - -t 1.34826 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2335 -a 0 -x {9.0 10.0 1172 ------- null} h -t 1.34826 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2335 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.34834 -s 0 -d 9 -p ack -e 40 -c 0 -i 2338 -a 0 -x {10.0 9.0 1164 ------- null} + -t 1.34834 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2349 -a 0 -x {9.0 10.0 1179 ------- null} - -t 1.34834 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2349 -a 0 -x {9.0 10.0 1179 ------- null} h -t 1.34834 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2349 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.34835 -s 0 -d 9 -p ack -e 40 -c 0 -i 2342 -a 0 -x {10.0 9.0 1166 ------- null} - -t 1.34835 -s 0 -d 9 -p ack -e 40 -c 0 -i 2342 -a 0 -x {10.0 9.0 1166 ------- null} h -t 1.34835 -s 0 -d 9 -p ack -e 40 -c 0 -i 2342 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.34848 -s 10 -d 7 -p ack -e 40 -c 0 -i 2346 -a 0 -x {10.0 9.0 1168 ------- null} + -t 1.34848 -s 7 -d 0 -p ack -e 40 -c 0 -i 2346 -a 0 -x {10.0 9.0 1168 ------- null} h -t 1.34848 -s 7 -d 8 -p ack -e 40 -c 0 -i 2346 -a 0 -x {10.0 9.0 1168 ------- null} r -t 1.34878 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2345 -a 0 -x {9.0 10.0 1177 ------- null} + -t 1.34878 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2345 -a 0 -x {9.0 10.0 1177 ------- null} h -t 1.34878 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2345 -a 0 -x {9.0 10.0 1177 ------- null} r -t 1.34888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2331 -a 0 -x {9.0 10.0 1170 ------- null} + -t 1.34888 -s 10 -d 7 -p ack -e 40 -c 0 -i 2350 -a 0 -x {10.0 9.0 1170 ------- null} - -t 1.34888 -s 10 -d 7 -p ack -e 40 -c 0 -i 2350 -a 0 -x {10.0 9.0 1170 ------- null} h -t 1.34888 -s 10 -d 7 -p ack -e 40 -c 0 -i 2350 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.34934 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2337 -a 0 -x {9.0 10.0 1173 ------- null} - -t 1.34934 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2337 -a 0 -x {9.0 10.0 1173 ------- null} h -t 1.34934 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2337 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.34941 -s 0 -d 9 -p ack -e 40 -c 0 -i 2340 -a 0 -x {10.0 9.0 1165 ------- null} + -t 1.34941 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2351 -a 0 -x {9.0 10.0 1180 ------- null} - -t 1.34941 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2351 -a 0 -x {9.0 10.0 1180 ------- null} h -t 1.34941 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2351 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.34962 -s 0 -d 9 -p ack -e 40 -c 0 -i 2344 -a 0 -x {10.0 9.0 1167 ------- null} - -t 1.34962 -s 0 -d 9 -p ack -e 40 -c 0 -i 2344 -a 0 -x {10.0 9.0 1167 ------- null} h -t 1.34962 -s 0 -d 9 -p ack -e 40 -c 0 -i 2344 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.34982 -s 10 -d 7 -p ack -e 40 -c 0 -i 2348 -a 0 -x {10.0 9.0 1169 ------- null} + -t 1.34982 -s 7 -d 0 -p ack -e 40 -c 0 -i 2348 -a 0 -x {10.0 9.0 1169 ------- null} h -t 1.34982 -s 7 -d 8 -p ack -e 40 -c 0 -i 2348 -a 0 -x {10.0 9.0 1169 ------- null} r -t 1.34989 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2347 -a 0 -x {9.0 10.0 1178 ------- null} + -t 1.34989 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2347 -a 0 -x {9.0 10.0 1178 ------- null} h -t 1.34989 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2347 -a 0 -x {9.0 10.0 1178 ------- null} r -t 1.34997 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2333 -a 0 -x {9.0 10.0 1171 ------- null} + -t 1.34997 -s 10 -d 7 -p ack -e 40 -c 0 -i 2352 -a 0 -x {10.0 9.0 1171 ------- null} - -t 1.34997 -s 10 -d 7 -p ack -e 40 -c 0 -i 2352 -a 0 -x {10.0 9.0 1171 ------- null} h -t 1.34997 -s 10 -d 7 -p ack -e 40 -c 0 -i 2352 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.35038 -s 0 -d 9 -p ack -e 40 -c 0 -i 2342 -a 0 -x {10.0 9.0 1166 ------- null} + -t 1.35038 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2353 -a 0 -x {9.0 10.0 1181 ------- null} - -t 1.35038 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2353 -a 0 -x {9.0 10.0 1181 ------- null} h -t 1.35038 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2353 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.35053 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2339 -a 0 -x {9.0 10.0 1174 ------- null} - -t 1.35053 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2339 -a 0 -x {9.0 10.0 1174 ------- null} h -t 1.35053 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2339 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.35062 -s 0 -d 9 -p ack -e 40 -c 0 -i 2346 -a 0 -x {10.0 9.0 1168 ------- null} - -t 1.35062 -s 0 -d 9 -p ack -e 40 -c 0 -i 2346 -a 0 -x {10.0 9.0 1168 ------- null} h -t 1.35062 -s 0 -d 9 -p ack -e 40 -c 0 -i 2346 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.35091 -s 10 -d 7 -p ack -e 40 -c 0 -i 2350 -a 0 -x {10.0 9.0 1170 ------- null} + -t 1.35091 -s 7 -d 0 -p ack -e 40 -c 0 -i 2350 -a 0 -x {10.0 9.0 1170 ------- null} h -t 1.35091 -s 7 -d 8 -p ack -e 40 -c 0 -i 2350 -a 0 -x {10.0 9.0 1170 ------- null} r -t 1.35106 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2335 -a 0 -x {9.0 10.0 1172 ------- null} + -t 1.35106 -s 10 -d 7 -p ack -e 40 -c 0 -i 2354 -a 0 -x {10.0 9.0 1172 ------- null} - -t 1.35106 -s 10 -d 7 -p ack -e 40 -c 0 -i 2354 -a 0 -x {10.0 9.0 1172 ------- null} h -t 1.35106 -s 10 -d 7 -p ack -e 40 -c 0 -i 2354 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.35114 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2349 -a 0 -x {9.0 10.0 1179 ------- null} + -t 1.35114 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2349 -a 0 -x {9.0 10.0 1179 ------- null} h -t 1.35114 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2349 -a 0 -x {9.0 10.0 1179 ------- null} + -t 1.35162 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2341 -a 0 -x {9.0 10.0 1175 ------- null} - -t 1.35162 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2341 -a 0 -x {9.0 10.0 1175 ------- null} h -t 1.35162 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2341 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.35165 -s 0 -d 9 -p ack -e 40 -c 0 -i 2344 -a 0 -x {10.0 9.0 1167 ------- null} + -t 1.35165 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2355 -a 0 -x {9.0 10.0 1182 ------- null} - -t 1.35165 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2355 -a 0 -x {9.0 10.0 1182 ------- null} h -t 1.35165 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2355 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.35173 -s 0 -d 9 -p ack -e 40 -c 0 -i 2348 -a 0 -x {10.0 9.0 1169 ------- null} - -t 1.35173 -s 0 -d 9 -p ack -e 40 -c 0 -i 2348 -a 0 -x {10.0 9.0 1169 ------- null} h -t 1.35173 -s 0 -d 9 -p ack -e 40 -c 0 -i 2348 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.352 -s 10 -d 7 -p ack -e 40 -c 0 -i 2352 -a 0 -x {10.0 9.0 1171 ------- null} + -t 1.352 -s 7 -d 0 -p ack -e 40 -c 0 -i 2352 -a 0 -x {10.0 9.0 1171 ------- null} h -t 1.352 -s 7 -d 8 -p ack -e 40 -c 0 -i 2352 -a 0 -x {10.0 9.0 1171 ------- null} r -t 1.35214 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2337 -a 0 -x {9.0 10.0 1173 ------- null} + -t 1.35214 -s 10 -d 7 -p ack -e 40 -c 0 -i 2356 -a 0 -x {10.0 9.0 1173 ------- null} - -t 1.35214 -s 10 -d 7 -p ack -e 40 -c 0 -i 2356 -a 0 -x {10.0 9.0 1173 ------- null} h -t 1.35214 -s 10 -d 7 -p ack -e 40 -c 0 -i 2356 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.35221 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2351 -a 0 -x {9.0 10.0 1180 ------- null} + -t 1.35221 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2351 -a 0 -x {9.0 10.0 1180 ------- null} h -t 1.35221 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2351 -a 0 -x {9.0 10.0 1180 ------- null} r -t 1.35266 -s 0 -d 9 -p ack -e 40 -c 0 -i 2346 -a 0 -x {10.0 9.0 1168 ------- null} + -t 1.35266 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2357 -a 0 -x {9.0 10.0 1183 ------- null} - -t 1.35266 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2357 -a 0 -x {9.0 10.0 1183 ------- null} h -t 1.35266 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2357 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.3527 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2343 -a 0 -x {9.0 10.0 1176 ------- null} - -t 1.3527 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2343 -a 0 -x {9.0 10.0 1176 ------- null} h -t 1.3527 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2343 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.35298 -s 0 -d 9 -p ack -e 40 -c 0 -i 2350 -a 0 -x {10.0 9.0 1170 ------- null} - -t 1.35298 -s 0 -d 9 -p ack -e 40 -c 0 -i 2350 -a 0 -x {10.0 9.0 1170 ------- null} h -t 1.35298 -s 0 -d 9 -p ack -e 40 -c 0 -i 2350 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.35309 -s 10 -d 7 -p ack -e 40 -c 0 -i 2354 -a 0 -x {10.0 9.0 1172 ------- null} + -t 1.35309 -s 7 -d 0 -p ack -e 40 -c 0 -i 2354 -a 0 -x {10.0 9.0 1172 ------- null} h -t 1.35309 -s 7 -d 8 -p ack -e 40 -c 0 -i 2354 -a 0 -x {10.0 9.0 1172 ------- null} r -t 1.35318 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2353 -a 0 -x {9.0 10.0 1181 ------- null} + -t 1.35318 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2353 -a 0 -x {9.0 10.0 1181 ------- null} h -t 1.35318 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2353 -a 0 -x {9.0 10.0 1181 ------- null} r -t 1.35333 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2339 -a 0 -x {9.0 10.0 1174 ------- null} + -t 1.35333 -s 10 -d 7 -p ack -e 40 -c 0 -i 2358 -a 0 -x {10.0 9.0 1174 ------- null} - -t 1.35333 -s 10 -d 7 -p ack -e 40 -c 0 -i 2358 -a 0 -x {10.0 9.0 1174 ------- null} h -t 1.35333 -s 10 -d 7 -p ack -e 40 -c 0 -i 2358 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.35376 -s 0 -d 9 -p ack -e 40 -c 0 -i 2348 -a 0 -x {10.0 9.0 1169 ------- null} + -t 1.35376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2359 -a 0 -x {9.0 10.0 1184 ------- null} - -t 1.35376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2359 -a 0 -x {9.0 10.0 1184 ------- null} h -t 1.35376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2359 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.35405 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2345 -a 0 -x {9.0 10.0 1177 ------- null} - -t 1.35405 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2345 -a 0 -x {9.0 10.0 1177 ------- null} h -t 1.35405 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2345 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.35416 -s 0 -d 9 -p ack -e 40 -c 0 -i 2352 -a 0 -x {10.0 9.0 1171 ------- null} - -t 1.35416 -s 0 -d 9 -p ack -e 40 -c 0 -i 2352 -a 0 -x {10.0 9.0 1171 ------- null} h -t 1.35416 -s 0 -d 9 -p ack -e 40 -c 0 -i 2352 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.35418 -s 10 -d 7 -p ack -e 40 -c 0 -i 2356 -a 0 -x {10.0 9.0 1173 ------- null} + -t 1.35418 -s 7 -d 0 -p ack -e 40 -c 0 -i 2356 -a 0 -x {10.0 9.0 1173 ------- null} h -t 1.35418 -s 7 -d 8 -p ack -e 40 -c 0 -i 2356 -a 0 -x {10.0 9.0 1173 ------- null} r -t 1.35442 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2341 -a 0 -x {9.0 10.0 1175 ------- null} + -t 1.35442 -s 10 -d 7 -p ack -e 40 -c 0 -i 2360 -a 0 -x {10.0 9.0 1175 ------- null} - -t 1.35442 -s 10 -d 7 -p ack -e 40 -c 0 -i 2360 -a 0 -x {10.0 9.0 1175 ------- null} h -t 1.35442 -s 10 -d 7 -p ack -e 40 -c 0 -i 2360 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.35445 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2355 -a 0 -x {9.0 10.0 1182 ------- null} + -t 1.35445 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2355 -a 0 -x {9.0 10.0 1182 ------- null} h -t 1.35445 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2355 -a 0 -x {9.0 10.0 1182 ------- null} r -t 1.35501 -s 0 -d 9 -p ack -e 40 -c 0 -i 2350 -a 0 -x {10.0 9.0 1170 ------- null} + -t 1.35501 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2361 -a 0 -x {9.0 10.0 1185 ------- null} - -t 1.35501 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2361 -a 0 -x {9.0 10.0 1185 ------- null} h -t 1.35501 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2361 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.35514 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2347 -a 0 -x {9.0 10.0 1178 ------- null} - -t 1.35514 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2347 -a 0 -x {9.0 10.0 1178 ------- null} h -t 1.35514 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2347 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.35522 -s 0 -d 9 -p ack -e 40 -c 0 -i 2354 -a 0 -x {10.0 9.0 1172 ------- null} - -t 1.35522 -s 0 -d 9 -p ack -e 40 -c 0 -i 2354 -a 0 -x {10.0 9.0 1172 ------- null} h -t 1.35522 -s 0 -d 9 -p ack -e 40 -c 0 -i 2354 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.35536 -s 10 -d 7 -p ack -e 40 -c 0 -i 2358 -a 0 -x {10.0 9.0 1174 ------- null} + -t 1.35536 -s 7 -d 0 -p ack -e 40 -c 0 -i 2358 -a 0 -x {10.0 9.0 1174 ------- null} h -t 1.35536 -s 7 -d 8 -p ack -e 40 -c 0 -i 2358 -a 0 -x {10.0 9.0 1174 ------- null} r -t 1.35546 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2357 -a 0 -x {9.0 10.0 1183 ------- null} + -t 1.35546 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2357 -a 0 -x {9.0 10.0 1183 ------- null} h -t 1.35546 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2357 -a 0 -x {9.0 10.0 1183 ------- null} r -t 1.3555 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2343 -a 0 -x {9.0 10.0 1176 ------- null} + -t 1.3555 -s 10 -d 7 -p ack -e 40 -c 0 -i 2362 -a 0 -x {10.0 9.0 1176 ------- null} - -t 1.3555 -s 10 -d 7 -p ack -e 40 -c 0 -i 2362 -a 0 -x {10.0 9.0 1176 ------- null} h -t 1.3555 -s 10 -d 7 -p ack -e 40 -c 0 -i 2362 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.35619 -s 0 -d 9 -p ack -e 40 -c 0 -i 2352 -a 0 -x {10.0 9.0 1171 ------- null} + -t 1.35619 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2363 -a 0 -x {9.0 10.0 1186 ------- null} - -t 1.35619 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2363 -a 0 -x {9.0 10.0 1186 ------- null} h -t 1.35619 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2363 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.35622 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2349 -a 0 -x {9.0 10.0 1179 ------- null} - -t 1.35622 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2349 -a 0 -x {9.0 10.0 1179 ------- null} h -t 1.35622 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2349 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.35645 -s 10 -d 7 -p ack -e 40 -c 0 -i 2360 -a 0 -x {10.0 9.0 1175 ------- null} + -t 1.35645 -s 7 -d 0 -p ack -e 40 -c 0 -i 2360 -a 0 -x {10.0 9.0 1175 ------- null} h -t 1.35645 -s 7 -d 8 -p ack -e 40 -c 0 -i 2360 -a 0 -x {10.0 9.0 1175 ------- null} + -t 1.35651 -s 0 -d 9 -p ack -e 40 -c 0 -i 2356 -a 0 -x {10.0 9.0 1173 ------- null} - -t 1.35651 -s 0 -d 9 -p ack -e 40 -c 0 -i 2356 -a 0 -x {10.0 9.0 1173 ------- null} h -t 1.35651 -s 0 -d 9 -p ack -e 40 -c 0 -i 2356 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.35656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2359 -a 0 -x {9.0 10.0 1184 ------- null} + -t 1.35656 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2359 -a 0 -x {9.0 10.0 1184 ------- null} h -t 1.35656 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2359 -a 0 -x {9.0 10.0 1184 ------- null} r -t 1.35685 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2345 -a 0 -x {9.0 10.0 1177 ------- null} + -t 1.35685 -s 10 -d 7 -p ack -e 40 -c 0 -i 2364 -a 0 -x {10.0 9.0 1177 ------- null} - -t 1.35685 -s 10 -d 7 -p ack -e 40 -c 0 -i 2364 -a 0 -x {10.0 9.0 1177 ------- null} h -t 1.35685 -s 10 -d 7 -p ack -e 40 -c 0 -i 2364 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.35725 -s 0 -d 9 -p ack -e 40 -c 0 -i 2354 -a 0 -x {10.0 9.0 1172 ------- null} + -t 1.35725 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2365 -a 0 -x {9.0 10.0 1187 ------- null} - -t 1.35725 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2365 -a 0 -x {9.0 10.0 1187 ------- null} h -t 1.35725 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2365 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.35738 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2351 -a 0 -x {9.0 10.0 1180 ------- null} - -t 1.35738 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2351 -a 0 -x {9.0 10.0 1180 ------- null} h -t 1.35738 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2351 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.35754 -s 10 -d 7 -p ack -e 40 -c 0 -i 2362 -a 0 -x {10.0 9.0 1176 ------- null} + -t 1.35754 -s 7 -d 0 -p ack -e 40 -c 0 -i 2362 -a 0 -x {10.0 9.0 1176 ------- null} h -t 1.35754 -s 7 -d 8 -p ack -e 40 -c 0 -i 2362 -a 0 -x {10.0 9.0 1176 ------- null} + -t 1.35754 -s 0 -d 9 -p ack -e 40 -c 0 -i 2358 -a 0 -x {10.0 9.0 1174 ------- null} - -t 1.35754 -s 0 -d 9 -p ack -e 40 -c 0 -i 2358 -a 0 -x {10.0 9.0 1174 ------- null} h -t 1.35754 -s 0 -d 9 -p ack -e 40 -c 0 -i 2358 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.35781 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2361 -a 0 -x {9.0 10.0 1185 ------- null} + -t 1.35781 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2361 -a 0 -x {9.0 10.0 1185 ------- null} h -t 1.35781 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2361 -a 0 -x {9.0 10.0 1185 ------- null} r -t 1.35794 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2347 -a 0 -x {9.0 10.0 1178 ------- null} + -t 1.35794 -s 10 -d 7 -p ack -e 40 -c 0 -i 2366 -a 0 -x {10.0 9.0 1178 ------- null} - -t 1.35794 -s 10 -d 7 -p ack -e 40 -c 0 -i 2366 -a 0 -x {10.0 9.0 1178 ------- null} h -t 1.35794 -s 10 -d 7 -p ack -e 40 -c 0 -i 2366 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.35846 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2353 -a 0 -x {9.0 10.0 1181 ------- null} - -t 1.35846 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2353 -a 0 -x {9.0 10.0 1181 ------- null} h -t 1.35846 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2353 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.35854 -s 0 -d 9 -p ack -e 40 -c 0 -i 2356 -a 0 -x {10.0 9.0 1173 ------- null} + -t 1.35854 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2367 -a 0 -x {9.0 10.0 1188 ------- null} - -t 1.35854 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2367 -a 0 -x {9.0 10.0 1188 ------- null} h -t 1.35854 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2367 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.35869 -s 0 -d 9 -p ack -e 40 -c 0 -i 2360 -a 0 -x {10.0 9.0 1175 ------- null} - -t 1.35869 -s 0 -d 9 -p ack -e 40 -c 0 -i 2360 -a 0 -x {10.0 9.0 1175 ------- null} h -t 1.35869 -s 0 -d 9 -p ack -e 40 -c 0 -i 2360 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.35888 -s 10 -d 7 -p ack -e 40 -c 0 -i 2364 -a 0 -x {10.0 9.0 1177 ------- null} + -t 1.35888 -s 7 -d 0 -p ack -e 40 -c 0 -i 2364 -a 0 -x {10.0 9.0 1177 ------- null} h -t 1.35888 -s 7 -d 8 -p ack -e 40 -c 0 -i 2364 -a 0 -x {10.0 9.0 1177 ------- null} r -t 1.35899 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2363 -a 0 -x {9.0 10.0 1186 ------- null} + -t 1.35899 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2363 -a 0 -x {9.0 10.0 1186 ------- null} h -t 1.35899 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2363 -a 0 -x {9.0 10.0 1186 ------- null} r -t 1.35902 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2349 -a 0 -x {9.0 10.0 1179 ------- null} + -t 1.35902 -s 10 -d 7 -p ack -e 40 -c 0 -i 2368 -a 0 -x {10.0 9.0 1179 ------- null} - -t 1.35902 -s 10 -d 7 -p ack -e 40 -c 0 -i 2368 -a 0 -x {10.0 9.0 1179 ------- null} h -t 1.35902 -s 10 -d 7 -p ack -e 40 -c 0 -i 2368 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.35955 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2355 -a 0 -x {9.0 10.0 1182 ------- null} - -t 1.35955 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2355 -a 0 -x {9.0 10.0 1182 ------- null} h -t 1.35955 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2355 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.35957 -s 0 -d 9 -p ack -e 40 -c 0 -i 2358 -a 0 -x {10.0 9.0 1174 ------- null} + -t 1.35957 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2369 -a 0 -x {9.0 10.0 1189 ------- null} - -t 1.35957 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2369 -a 0 -x {9.0 10.0 1189 ------- null} h -t 1.35957 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2369 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.35966 -s 0 -d 9 -p ack -e 40 -c 0 -i 2362 -a 0 -x {10.0 9.0 1176 ------- null} - -t 1.35966 -s 0 -d 9 -p ack -e 40 -c 0 -i 2362 -a 0 -x {10.0 9.0 1176 ------- null} h -t 1.35966 -s 0 -d 9 -p ack -e 40 -c 0 -i 2362 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.35997 -s 10 -d 7 -p ack -e 40 -c 0 -i 2366 -a 0 -x {10.0 9.0 1178 ------- null} + -t 1.35997 -s 7 -d 0 -p ack -e 40 -c 0 -i 2366 -a 0 -x {10.0 9.0 1178 ------- null} h -t 1.35997 -s 7 -d 8 -p ack -e 40 -c 0 -i 2366 -a 0 -x {10.0 9.0 1178 ------- null} r -t 1.36005 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2365 -a 0 -x {9.0 10.0 1187 ------- null} + -t 1.36005 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2365 -a 0 -x {9.0 10.0 1187 ------- null} h -t 1.36005 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2365 -a 0 -x {9.0 10.0 1187 ------- null} r -t 1.36018 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2351 -a 0 -x {9.0 10.0 1180 ------- null} + -t 1.36018 -s 10 -d 7 -p ack -e 40 -c 0 -i 2370 -a 0 -x {10.0 9.0 1180 ------- null} - -t 1.36018 -s 10 -d 7 -p ack -e 40 -c 0 -i 2370 -a 0 -x {10.0 9.0 1180 ------- null} h -t 1.36018 -s 10 -d 7 -p ack -e 40 -c 0 -i 2370 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.36064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2357 -a 0 -x {9.0 10.0 1183 ------- null} - -t 1.36064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2357 -a 0 -x {9.0 10.0 1183 ------- null} h -t 1.36064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2357 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.36072 -s 0 -d 9 -p ack -e 40 -c 0 -i 2360 -a 0 -x {10.0 9.0 1175 ------- null} + -t 1.36072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2371 -a 0 -x {9.0 10.0 1190 ------- null} - -t 1.36072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2371 -a 0 -x {9.0 10.0 1190 ------- null} h -t 1.36072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2371 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.36074 -s 0 -d 9 -p ack -e 40 -c 0 -i 2364 -a 0 -x {10.0 9.0 1177 ------- null} - -t 1.36074 -s 0 -d 9 -p ack -e 40 -c 0 -i 2364 -a 0 -x {10.0 9.0 1177 ------- null} h -t 1.36074 -s 0 -d 9 -p ack -e 40 -c 0 -i 2364 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.36106 -s 10 -d 7 -p ack -e 40 -c 0 -i 2368 -a 0 -x {10.0 9.0 1179 ------- null} + -t 1.36106 -s 7 -d 0 -p ack -e 40 -c 0 -i 2368 -a 0 -x {10.0 9.0 1179 ------- null} h -t 1.36106 -s 7 -d 8 -p ack -e 40 -c 0 -i 2368 -a 0 -x {10.0 9.0 1179 ------- null} r -t 1.36126 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2353 -a 0 -x {9.0 10.0 1181 ------- null} + -t 1.36126 -s 10 -d 7 -p ack -e 40 -c 0 -i 2372 -a 0 -x {10.0 9.0 1181 ------- null} - -t 1.36126 -s 10 -d 7 -p ack -e 40 -c 0 -i 2372 -a 0 -x {10.0 9.0 1181 ------- null} h -t 1.36126 -s 10 -d 7 -p ack -e 40 -c 0 -i 2372 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.36134 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2367 -a 0 -x {9.0 10.0 1188 ------- null} + -t 1.36134 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2367 -a 0 -x {9.0 10.0 1188 ------- null} h -t 1.36134 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2367 -a 0 -x {9.0 10.0 1188 ------- null} r -t 1.3617 -s 0 -d 9 -p ack -e 40 -c 0 -i 2362 -a 0 -x {10.0 9.0 1176 ------- null} + -t 1.3617 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2373 -a 0 -x {9.0 10.0 1191 ------- null} - -t 1.3617 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2373 -a 0 -x {9.0 10.0 1191 ------- null} h -t 1.3617 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2373 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.36173 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2359 -a 0 -x {9.0 10.0 1184 ------- null} - -t 1.36173 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2359 -a 0 -x {9.0 10.0 1184 ------- null} h -t 1.36173 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2359 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.36184 -s 0 -d 9 -p ack -e 40 -c 0 -i 2366 -a 0 -x {10.0 9.0 1178 ------- null} - -t 1.36184 -s 0 -d 9 -p ack -e 40 -c 0 -i 2366 -a 0 -x {10.0 9.0 1178 ------- null} h -t 1.36184 -s 0 -d 9 -p ack -e 40 -c 0 -i 2366 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.36221 -s 10 -d 7 -p ack -e 40 -c 0 -i 2370 -a 0 -x {10.0 9.0 1180 ------- null} + -t 1.36221 -s 7 -d 0 -p ack -e 40 -c 0 -i 2370 -a 0 -x {10.0 9.0 1180 ------- null} h -t 1.36221 -s 7 -d 8 -p ack -e 40 -c 0 -i 2370 -a 0 -x {10.0 9.0 1180 ------- null} r -t 1.36235 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2355 -a 0 -x {9.0 10.0 1182 ------- null} + -t 1.36235 -s 10 -d 7 -p ack -e 40 -c 0 -i 2374 -a 0 -x {10.0 9.0 1182 ------- null} - -t 1.36235 -s 10 -d 7 -p ack -e 40 -c 0 -i 2374 -a 0 -x {10.0 9.0 1182 ------- null} h -t 1.36235 -s 10 -d 7 -p ack -e 40 -c 0 -i 2374 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.36237 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2369 -a 0 -x {9.0 10.0 1189 ------- null} + -t 1.36237 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2369 -a 0 -x {9.0 10.0 1189 ------- null} h -t 1.36237 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2369 -a 0 -x {9.0 10.0 1189 ------- null} r -t 1.36277 -s 0 -d 9 -p ack -e 40 -c 0 -i 2364 -a 0 -x {10.0 9.0 1177 ------- null} + -t 1.36277 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2375 -a 0 -x {9.0 10.0 1192 ------- null} - -t 1.36277 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2375 -a 0 -x {9.0 10.0 1192 ------- null} h -t 1.36277 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2375 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.36282 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2361 -a 0 -x {9.0 10.0 1185 ------- null} - -t 1.36282 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2361 -a 0 -x {9.0 10.0 1185 ------- null} h -t 1.36282 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2361 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.36302 -s 0 -d 9 -p ack -e 40 -c 0 -i 2368 -a 0 -x {10.0 9.0 1179 ------- null} - -t 1.36302 -s 0 -d 9 -p ack -e 40 -c 0 -i 2368 -a 0 -x {10.0 9.0 1179 ------- null} h -t 1.36302 -s 0 -d 9 -p ack -e 40 -c 0 -i 2368 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.3633 -s 10 -d 7 -p ack -e 40 -c 0 -i 2372 -a 0 -x {10.0 9.0 1181 ------- null} + -t 1.3633 -s 7 -d 0 -p ack -e 40 -c 0 -i 2372 -a 0 -x {10.0 9.0 1181 ------- null} h -t 1.3633 -s 7 -d 8 -p ack -e 40 -c 0 -i 2372 -a 0 -x {10.0 9.0 1181 ------- null} r -t 1.36344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2357 -a 0 -x {9.0 10.0 1183 ------- null} + -t 1.36344 -s 10 -d 7 -p ack -e 40 -c 0 -i 2376 -a 0 -x {10.0 9.0 1183 ------- null} - -t 1.36344 -s 10 -d 7 -p ack -e 40 -c 0 -i 2376 -a 0 -x {10.0 9.0 1183 ------- null} h -t 1.36344 -s 10 -d 7 -p ack -e 40 -c 0 -i 2376 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.36352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2371 -a 0 -x {9.0 10.0 1190 ------- null} + -t 1.36352 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2371 -a 0 -x {9.0 10.0 1190 ------- null} h -t 1.36352 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2371 -a 0 -x {9.0 10.0 1190 ------- null} r -t 1.36387 -s 0 -d 9 -p ack -e 40 -c 0 -i 2366 -a 0 -x {10.0 9.0 1178 ------- null} + -t 1.36387 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2377 -a 0 -x {9.0 10.0 1193 ------- null} - -t 1.36387 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2377 -a 0 -x {9.0 10.0 1193 ------- null} h -t 1.36387 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2377 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.3639 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2363 -a 0 -x {9.0 10.0 1186 ------- null} - -t 1.3639 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2363 -a 0 -x {9.0 10.0 1186 ------- null} h -t 1.3639 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2363 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.36413 -s 0 -d 9 -p ack -e 40 -c 0 -i 2370 -a 0 -x {10.0 9.0 1180 ------- null} - -t 1.36413 -s 0 -d 9 -p ack -e 40 -c 0 -i 2370 -a 0 -x {10.0 9.0 1180 ------- null} h -t 1.36413 -s 0 -d 9 -p ack -e 40 -c 0 -i 2370 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.36438 -s 10 -d 7 -p ack -e 40 -c 0 -i 2374 -a 0 -x {10.0 9.0 1182 ------- null} + -t 1.36438 -s 7 -d 0 -p ack -e 40 -c 0 -i 2374 -a 0 -x {10.0 9.0 1182 ------- null} h -t 1.36438 -s 7 -d 8 -p ack -e 40 -c 0 -i 2374 -a 0 -x {10.0 9.0 1182 ------- null} r -t 1.3645 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2373 -a 0 -x {9.0 10.0 1191 ------- null} + -t 1.3645 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2373 -a 0 -x {9.0 10.0 1191 ------- null} h -t 1.3645 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2373 -a 0 -x {9.0 10.0 1191 ------- null} r -t 1.36453 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2359 -a 0 -x {9.0 10.0 1184 ------- null} + -t 1.36453 -s 10 -d 7 -p ack -e 40 -c 0 -i 2378 -a 0 -x {10.0 9.0 1184 ------- null} - -t 1.36453 -s 10 -d 7 -p ack -e 40 -c 0 -i 2378 -a 0 -x {10.0 9.0 1184 ------- null} h -t 1.36453 -s 10 -d 7 -p ack -e 40 -c 0 -i 2378 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.36499 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2365 -a 0 -x {9.0 10.0 1187 ------- null} - -t 1.36499 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2365 -a 0 -x {9.0 10.0 1187 ------- null} h -t 1.36499 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2365 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.36506 -s 0 -d 9 -p ack -e 40 -c 0 -i 2368 -a 0 -x {10.0 9.0 1179 ------- null} + -t 1.36506 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2379 -a 0 -x {9.0 10.0 1194 ------- null} - -t 1.36506 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2379 -a 0 -x {9.0 10.0 1194 ------- null} h -t 1.36506 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2379 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.36525 -s 0 -d 9 -p ack -e 40 -c 0 -i 2372 -a 0 -x {10.0 9.0 1181 ------- null} - -t 1.36525 -s 0 -d 9 -p ack -e 40 -c 0 -i 2372 -a 0 -x {10.0 9.0 1181 ------- null} h -t 1.36525 -s 0 -d 9 -p ack -e 40 -c 0 -i 2372 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.36547 -s 10 -d 7 -p ack -e 40 -c 0 -i 2376 -a 0 -x {10.0 9.0 1183 ------- null} + -t 1.36547 -s 7 -d 0 -p ack -e 40 -c 0 -i 2376 -a 0 -x {10.0 9.0 1183 ------- null} h -t 1.36547 -s 7 -d 8 -p ack -e 40 -c 0 -i 2376 -a 0 -x {10.0 9.0 1183 ------- null} r -t 1.36557 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2375 -a 0 -x {9.0 10.0 1192 ------- null} + -t 1.36557 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2375 -a 0 -x {9.0 10.0 1192 ------- null} h -t 1.36557 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2375 -a 0 -x {9.0 10.0 1192 ------- null} r -t 1.36562 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2361 -a 0 -x {9.0 10.0 1185 ------- null} + -t 1.36562 -s 10 -d 7 -p ack -e 40 -c 0 -i 2380 -a 0 -x {10.0 9.0 1185 ------- null} - -t 1.36562 -s 10 -d 7 -p ack -e 40 -c 0 -i 2380 -a 0 -x {10.0 9.0 1185 ------- null} h -t 1.36562 -s 10 -d 7 -p ack -e 40 -c 0 -i 2380 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.36608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2367 -a 0 -x {9.0 10.0 1188 ------- null} - -t 1.36608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2367 -a 0 -x {9.0 10.0 1188 ------- null} h -t 1.36608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2367 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.36616 -s 0 -d 9 -p ack -e 40 -c 0 -i 2370 -a 0 -x {10.0 9.0 1180 ------- null} + -t 1.36616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2381 -a 0 -x {9.0 10.0 1195 ------- null} - -t 1.36616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2381 -a 0 -x {9.0 10.0 1195 ------- null} h -t 1.36616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2381 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.36626 -s 0 -d 9 -p ack -e 40 -c 0 -i 2374 -a 0 -x {10.0 9.0 1182 ------- null} - -t 1.36626 -s 0 -d 9 -p ack -e 40 -c 0 -i 2374 -a 0 -x {10.0 9.0 1182 ------- null} h -t 1.36626 -s 0 -d 9 -p ack -e 40 -c 0 -i 2374 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.36656 -s 10 -d 7 -p ack -e 40 -c 0 -i 2378 -a 0 -x {10.0 9.0 1184 ------- null} + -t 1.36656 -s 7 -d 0 -p ack -e 40 -c 0 -i 2378 -a 0 -x {10.0 9.0 1184 ------- null} h -t 1.36656 -s 7 -d 8 -p ack -e 40 -c 0 -i 2378 -a 0 -x {10.0 9.0 1184 ------- null} r -t 1.36667 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2377 -a 0 -x {9.0 10.0 1193 ------- null} + -t 1.36667 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2377 -a 0 -x {9.0 10.0 1193 ------- null} h -t 1.36667 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2377 -a 0 -x {9.0 10.0 1193 ------- null} r -t 1.3667 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2363 -a 0 -x {9.0 10.0 1186 ------- null} + -t 1.3667 -s 10 -d 7 -p ack -e 40 -c 0 -i 2382 -a 0 -x {10.0 9.0 1186 ------- null} - -t 1.3667 -s 10 -d 7 -p ack -e 40 -c 0 -i 2382 -a 0 -x {10.0 9.0 1186 ------- null} h -t 1.3667 -s 10 -d 7 -p ack -e 40 -c 0 -i 2382 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.36717 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2369 -a 0 -x {9.0 10.0 1189 ------- null} - -t 1.36717 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2369 -a 0 -x {9.0 10.0 1189 ------- null} h -t 1.36717 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2369 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.36728 -s 0 -d 9 -p ack -e 40 -c 0 -i 2372 -a 0 -x {10.0 9.0 1181 ------- null} + -t 1.36728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2383 -a 0 -x {9.0 10.0 1196 ------- null} - -t 1.36728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2383 -a 0 -x {9.0 10.0 1196 ------- null} h -t 1.36728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2383 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.36739 -s 0 -d 9 -p ack -e 40 -c 0 -i 2376 -a 0 -x {10.0 9.0 1183 ------- null} - -t 1.36739 -s 0 -d 9 -p ack -e 40 -c 0 -i 2376 -a 0 -x {10.0 9.0 1183 ------- null} h -t 1.36739 -s 0 -d 9 -p ack -e 40 -c 0 -i 2376 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.36765 -s 10 -d 7 -p ack -e 40 -c 0 -i 2380 -a 0 -x {10.0 9.0 1185 ------- null} + -t 1.36765 -s 7 -d 0 -p ack -e 40 -c 0 -i 2380 -a 0 -x {10.0 9.0 1185 ------- null} h -t 1.36765 -s 7 -d 8 -p ack -e 40 -c 0 -i 2380 -a 0 -x {10.0 9.0 1185 ------- null} r -t 1.36779 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2365 -a 0 -x {9.0 10.0 1187 ------- null} + -t 1.36779 -s 10 -d 7 -p ack -e 40 -c 0 -i 2384 -a 0 -x {10.0 9.0 1187 ------- null} - -t 1.36779 -s 10 -d 7 -p ack -e 40 -c 0 -i 2384 -a 0 -x {10.0 9.0 1187 ------- null} h -t 1.36779 -s 10 -d 7 -p ack -e 40 -c 0 -i 2384 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.36786 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2379 -a 0 -x {9.0 10.0 1194 ------- null} + -t 1.36786 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2379 -a 0 -x {9.0 10.0 1194 ------- null} h -t 1.36786 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2379 -a 0 -x {9.0 10.0 1194 ------- null} + -t 1.36826 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2371 -a 0 -x {9.0 10.0 1190 ------- null} - -t 1.36826 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2371 -a 0 -x {9.0 10.0 1190 ------- null} h -t 1.36826 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2371 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.36829 -s 0 -d 9 -p ack -e 40 -c 0 -i 2374 -a 0 -x {10.0 9.0 1182 ------- null} + -t 1.36829 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2385 -a 0 -x {9.0 10.0 1197 ------- null} - -t 1.36829 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2385 -a 0 -x {9.0 10.0 1197 ------- null} h -t 1.36829 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2385 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.36842 -s 0 -d 9 -p ack -e 40 -c 0 -i 2378 -a 0 -x {10.0 9.0 1184 ------- null} - -t 1.36842 -s 0 -d 9 -p ack -e 40 -c 0 -i 2378 -a 0 -x {10.0 9.0 1184 ------- null} h -t 1.36842 -s 0 -d 9 -p ack -e 40 -c 0 -i 2378 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.36874 -s 10 -d 7 -p ack -e 40 -c 0 -i 2382 -a 0 -x {10.0 9.0 1186 ------- null} + -t 1.36874 -s 7 -d 0 -p ack -e 40 -c 0 -i 2382 -a 0 -x {10.0 9.0 1186 ------- null} h -t 1.36874 -s 7 -d 8 -p ack -e 40 -c 0 -i 2382 -a 0 -x {10.0 9.0 1186 ------- null} r -t 1.36888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2367 -a 0 -x {9.0 10.0 1188 ------- null} + -t 1.36888 -s 10 -d 7 -p ack -e 40 -c 0 -i 2386 -a 0 -x {10.0 9.0 1188 ------- null} - -t 1.36888 -s 10 -d 7 -p ack -e 40 -c 0 -i 2386 -a 0 -x {10.0 9.0 1188 ------- null} h -t 1.36888 -s 10 -d 7 -p ack -e 40 -c 0 -i 2386 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.36896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2381 -a 0 -x {9.0 10.0 1195 ------- null} + -t 1.36896 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2381 -a 0 -x {9.0 10.0 1195 ------- null} h -t 1.36896 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2381 -a 0 -x {9.0 10.0 1195 ------- null} + -t 1.36934 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2373 -a 0 -x {9.0 10.0 1191 ------- null} - -t 1.36934 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2373 -a 0 -x {9.0 10.0 1191 ------- null} h -t 1.36934 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2373 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.36942 -s 0 -d 9 -p ack -e 40 -c 0 -i 2376 -a 0 -x {10.0 9.0 1183 ------- null} + -t 1.36942 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2387 -a 0 -x {9.0 10.0 1198 ------- null} - -t 1.36942 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2387 -a 0 -x {9.0 10.0 1198 ------- null} h -t 1.36942 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2387 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.36958 -s 0 -d 9 -p ack -e 40 -c 0 -i 2380 -a 0 -x {10.0 9.0 1185 ------- null} - -t 1.36958 -s 0 -d 9 -p ack -e 40 -c 0 -i 2380 -a 0 -x {10.0 9.0 1185 ------- null} h -t 1.36958 -s 0 -d 9 -p ack -e 40 -c 0 -i 2380 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.36982 -s 10 -d 7 -p ack -e 40 -c 0 -i 2384 -a 0 -x {10.0 9.0 1187 ------- null} + -t 1.36982 -s 7 -d 0 -p ack -e 40 -c 0 -i 2384 -a 0 -x {10.0 9.0 1187 ------- null} h -t 1.36982 -s 7 -d 8 -p ack -e 40 -c 0 -i 2384 -a 0 -x {10.0 9.0 1187 ------- null} r -t 1.36997 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2369 -a 0 -x {9.0 10.0 1189 ------- null} + -t 1.36997 -s 10 -d 7 -p ack -e 40 -c 0 -i 2388 -a 0 -x {10.0 9.0 1189 ------- null} - -t 1.36997 -s 10 -d 7 -p ack -e 40 -c 0 -i 2388 -a 0 -x {10.0 9.0 1189 ------- null} h -t 1.36997 -s 10 -d 7 -p ack -e 40 -c 0 -i 2388 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.37008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2383 -a 0 -x {9.0 10.0 1196 ------- null} + -t 1.37008 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2383 -a 0 -x {9.0 10.0 1196 ------- null} h -t 1.37008 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2383 -a 0 -x {9.0 10.0 1196 ------- null} + -t 1.37043 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2375 -a 0 -x {9.0 10.0 1192 ------- null} - -t 1.37043 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2375 -a 0 -x {9.0 10.0 1192 ------- null} h -t 1.37043 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2375 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.37045 -s 0 -d 9 -p ack -e 40 -c 0 -i 2378 -a 0 -x {10.0 9.0 1184 ------- null} + -t 1.37045 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2389 -a 0 -x {9.0 10.0 1199 ------- null} - -t 1.37045 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2389 -a 0 -x {9.0 10.0 1199 ------- null} h -t 1.37045 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2389 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.3705 -s 0 -d 9 -p ack -e 40 -c 0 -i 2382 -a 0 -x {10.0 9.0 1186 ------- null} - -t 1.3705 -s 0 -d 9 -p ack -e 40 -c 0 -i 2382 -a 0 -x {10.0 9.0 1186 ------- null} h -t 1.3705 -s 0 -d 9 -p ack -e 40 -c 0 -i 2382 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.37091 -s 10 -d 7 -p ack -e 40 -c 0 -i 2386 -a 0 -x {10.0 9.0 1188 ------- null} + -t 1.37091 -s 7 -d 0 -p ack -e 40 -c 0 -i 2386 -a 0 -x {10.0 9.0 1188 ------- null} h -t 1.37091 -s 7 -d 8 -p ack -e 40 -c 0 -i 2386 -a 0 -x {10.0 9.0 1188 ------- null} r -t 1.37106 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2371 -a 0 -x {9.0 10.0 1190 ------- null} + -t 1.37106 -s 10 -d 7 -p ack -e 40 -c 0 -i 2390 -a 0 -x {10.0 9.0 1190 ------- null} - -t 1.37106 -s 10 -d 7 -p ack -e 40 -c 0 -i 2390 -a 0 -x {10.0 9.0 1190 ------- null} h -t 1.37106 -s 10 -d 7 -p ack -e 40 -c 0 -i 2390 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.37109 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2385 -a 0 -x {9.0 10.0 1197 ------- null} + -t 1.37109 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2385 -a 0 -x {9.0 10.0 1197 ------- null} h -t 1.37109 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2385 -a 0 -x {9.0 10.0 1197 ------- null} + -t 1.37152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2377 -a 0 -x {9.0 10.0 1193 ------- null} - -t 1.37152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2377 -a 0 -x {9.0 10.0 1193 ------- null} h -t 1.37152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2377 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.37158 -s 0 -d 9 -p ack -e 40 -c 0 -i 2384 -a 0 -x {10.0 9.0 1187 ------- null} - -t 1.37158 -s 0 -d 9 -p ack -e 40 -c 0 -i 2384 -a 0 -x {10.0 9.0 1187 ------- null} h -t 1.37158 -s 0 -d 9 -p ack -e 40 -c 0 -i 2384 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.37162 -s 0 -d 9 -p ack -e 40 -c 0 -i 2380 -a 0 -x {10.0 9.0 1185 ------- null} + -t 1.37162 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2391 -a 0 -x {9.0 10.0 1200 ------- null} - -t 1.37162 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2391 -a 0 -x {9.0 10.0 1200 ------- null} h -t 1.37162 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2391 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.372 -s 10 -d 7 -p ack -e 40 -c 0 -i 2388 -a 0 -x {10.0 9.0 1189 ------- null} + -t 1.372 -s 7 -d 0 -p ack -e 40 -c 0 -i 2388 -a 0 -x {10.0 9.0 1189 ------- null} h -t 1.372 -s 7 -d 8 -p ack -e 40 -c 0 -i 2388 -a 0 -x {10.0 9.0 1189 ------- null} r -t 1.37214 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2373 -a 0 -x {9.0 10.0 1191 ------- null} + -t 1.37214 -s 10 -d 7 -p ack -e 40 -c 0 -i 2392 -a 0 -x {10.0 9.0 1191 ------- null} - -t 1.37214 -s 10 -d 7 -p ack -e 40 -c 0 -i 2392 -a 0 -x {10.0 9.0 1191 ------- null} h -t 1.37214 -s 10 -d 7 -p ack -e 40 -c 0 -i 2392 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.37222 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2387 -a 0 -x {9.0 10.0 1198 ------- null} + -t 1.37222 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2387 -a 0 -x {9.0 10.0 1198 ------- null} h -t 1.37222 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2387 -a 0 -x {9.0 10.0 1198 ------- null} r -t 1.37253 -s 0 -d 9 -p ack -e 40 -c 0 -i 2382 -a 0 -x {10.0 9.0 1186 ------- null} + -t 1.37253 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2393 -a 0 -x {9.0 10.0 1201 ------- null} - -t 1.37253 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2393 -a 0 -x {9.0 10.0 1201 ------- null} h -t 1.37253 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2393 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.37261 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2379 -a 0 -x {9.0 10.0 1194 ------- null} - -t 1.37261 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2379 -a 0 -x {9.0 10.0 1194 ------- null} h -t 1.37261 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2379 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.37274 -s 0 -d 9 -p ack -e 40 -c 0 -i 2386 -a 0 -x {10.0 9.0 1188 ------- null} - -t 1.37274 -s 0 -d 9 -p ack -e 40 -c 0 -i 2386 -a 0 -x {10.0 9.0 1188 ------- null} h -t 1.37274 -s 0 -d 9 -p ack -e 40 -c 0 -i 2386 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.37309 -s 10 -d 7 -p ack -e 40 -c 0 -i 2390 -a 0 -x {10.0 9.0 1190 ------- null} + -t 1.37309 -s 7 -d 0 -p ack -e 40 -c 0 -i 2390 -a 0 -x {10.0 9.0 1190 ------- null} h -t 1.37309 -s 7 -d 8 -p ack -e 40 -c 0 -i 2390 -a 0 -x {10.0 9.0 1190 ------- null} r -t 1.37323 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2375 -a 0 -x {9.0 10.0 1192 ------- null} + -t 1.37323 -s 10 -d 7 -p ack -e 40 -c 0 -i 2394 -a 0 -x {10.0 9.0 1192 ------- null} - -t 1.37323 -s 10 -d 7 -p ack -e 40 -c 0 -i 2394 -a 0 -x {10.0 9.0 1192 ------- null} h -t 1.37323 -s 10 -d 7 -p ack -e 40 -c 0 -i 2394 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.37325 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2389 -a 0 -x {9.0 10.0 1199 ------- null} + -t 1.37325 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2389 -a 0 -x {9.0 10.0 1199 ------- null} h -t 1.37325 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2389 -a 0 -x {9.0 10.0 1199 ------- null} r -t 1.37362 -s 0 -d 9 -p ack -e 40 -c 0 -i 2384 -a 0 -x {10.0 9.0 1187 ------- null} + -t 1.37362 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2395 -a 0 -x {9.0 10.0 1202 ------- null} - -t 1.37362 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2395 -a 0 -x {9.0 10.0 1202 ------- null} h -t 1.37362 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2395 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.3737 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2381 -a 0 -x {9.0 10.0 1195 ------- null} - -t 1.3737 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2381 -a 0 -x {9.0 10.0 1195 ------- null} h -t 1.3737 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2381 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.37376 -s 0 -d 9 -p ack -e 40 -c 0 -i 2388 -a 0 -x {10.0 9.0 1189 ------- null} - -t 1.37376 -s 0 -d 9 -p ack -e 40 -c 0 -i 2388 -a 0 -x {10.0 9.0 1189 ------- null} h -t 1.37376 -s 0 -d 9 -p ack -e 40 -c 0 -i 2388 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.37418 -s 10 -d 7 -p ack -e 40 -c 0 -i 2392 -a 0 -x {10.0 9.0 1191 ------- null} + -t 1.37418 -s 7 -d 0 -p ack -e 40 -c 0 -i 2392 -a 0 -x {10.0 9.0 1191 ------- null} h -t 1.37418 -s 7 -d 8 -p ack -e 40 -c 0 -i 2392 -a 0 -x {10.0 9.0 1191 ------- null} r -t 1.37432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2377 -a 0 -x {9.0 10.0 1193 ------- null} + -t 1.37432 -s 10 -d 7 -p ack -e 40 -c 0 -i 2396 -a 0 -x {10.0 9.0 1193 ------- null} - -t 1.37432 -s 10 -d 7 -p ack -e 40 -c 0 -i 2396 -a 0 -x {10.0 9.0 1193 ------- null} h -t 1.37432 -s 10 -d 7 -p ack -e 40 -c 0 -i 2396 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.37442 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2391 -a 0 -x {9.0 10.0 1200 ------- null} + -t 1.37442 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2391 -a 0 -x {9.0 10.0 1200 ------- null} h -t 1.37442 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2391 -a 0 -x {9.0 10.0 1200 ------- null} r -t 1.37477 -s 0 -d 9 -p ack -e 40 -c 0 -i 2386 -a 0 -x {10.0 9.0 1188 ------- null} + -t 1.37477 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2397 -a 0 -x {9.0 10.0 1203 ------- null} - -t 1.37477 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2397 -a 0 -x {9.0 10.0 1203 ------- null} h -t 1.37477 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2397 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.37478 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2383 -a 0 -x {9.0 10.0 1196 ------- null} - -t 1.37478 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2383 -a 0 -x {9.0 10.0 1196 ------- null} h -t 1.37478 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2383 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.3749 -s 0 -d 9 -p ack -e 40 -c 0 -i 2390 -a 0 -x {10.0 9.0 1190 ------- null} - -t 1.3749 -s 0 -d 9 -p ack -e 40 -c 0 -i 2390 -a 0 -x {10.0 9.0 1190 ------- null} h -t 1.3749 -s 0 -d 9 -p ack -e 40 -c 0 -i 2390 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.37526 -s 10 -d 7 -p ack -e 40 -c 0 -i 2394 -a 0 -x {10.0 9.0 1192 ------- null} + -t 1.37526 -s 7 -d 0 -p ack -e 40 -c 0 -i 2394 -a 0 -x {10.0 9.0 1192 ------- null} h -t 1.37526 -s 7 -d 8 -p ack -e 40 -c 0 -i 2394 -a 0 -x {10.0 9.0 1192 ------- null} r -t 1.37533 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2393 -a 0 -x {9.0 10.0 1201 ------- null} + -t 1.37533 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2393 -a 0 -x {9.0 10.0 1201 ------- null} h -t 1.37533 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2393 -a 0 -x {9.0 10.0 1201 ------- null} r -t 1.37541 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2379 -a 0 -x {9.0 10.0 1194 ------- null} + -t 1.37541 -s 10 -d 7 -p ack -e 40 -c 0 -i 2398 -a 0 -x {10.0 9.0 1194 ------- null} - -t 1.37541 -s 10 -d 7 -p ack -e 40 -c 0 -i 2398 -a 0 -x {10.0 9.0 1194 ------- null} h -t 1.37541 -s 10 -d 7 -p ack -e 40 -c 0 -i 2398 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.37579 -s 0 -d 9 -p ack -e 40 -c 0 -i 2388 -a 0 -x {10.0 9.0 1189 ------- null} + -t 1.37579 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2399 -a 0 -x {9.0 10.0 1204 ------- null} - -t 1.37579 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2399 -a 0 -x {9.0 10.0 1204 ------- null} h -t 1.37579 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2399 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.37587 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2385 -a 0 -x {9.0 10.0 1197 ------- null} - -t 1.37587 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2385 -a 0 -x {9.0 10.0 1197 ------- null} h -t 1.37587 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2385 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.37613 -s 0 -d 9 -p ack -e 40 -c 0 -i 2392 -a 0 -x {10.0 9.0 1191 ------- null} - -t 1.37613 -s 0 -d 9 -p ack -e 40 -c 0 -i 2392 -a 0 -x {10.0 9.0 1191 ------- null} h -t 1.37613 -s 0 -d 9 -p ack -e 40 -c 0 -i 2392 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.37635 -s 10 -d 7 -p ack -e 40 -c 0 -i 2396 -a 0 -x {10.0 9.0 1193 ------- null} + -t 1.37635 -s 7 -d 0 -p ack -e 40 -c 0 -i 2396 -a 0 -x {10.0 9.0 1193 ------- null} h -t 1.37635 -s 7 -d 8 -p ack -e 40 -c 0 -i 2396 -a 0 -x {10.0 9.0 1193 ------- null} r -t 1.37642 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2395 -a 0 -x {9.0 10.0 1202 ------- null} + -t 1.37642 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2395 -a 0 -x {9.0 10.0 1202 ------- null} h -t 1.37642 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2395 -a 0 -x {9.0 10.0 1202 ------- null} r -t 1.3765 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2381 -a 0 -x {9.0 10.0 1195 ------- null} + -t 1.3765 -s 10 -d 7 -p ack -e 40 -c 0 -i 2400 -a 0 -x {10.0 9.0 1195 ------- null} - -t 1.3765 -s 10 -d 7 -p ack -e 40 -c 0 -i 2400 -a 0 -x {10.0 9.0 1195 ------- null} h -t 1.3765 -s 10 -d 7 -p ack -e 40 -c 0 -i 2400 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.37693 -s 0 -d 9 -p ack -e 40 -c 0 -i 2390 -a 0 -x {10.0 9.0 1190 ------- null} + -t 1.37693 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2401 -a 0 -x {9.0 10.0 1205 ------- null} - -t 1.37693 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2401 -a 0 -x {9.0 10.0 1205 ------- null} h -t 1.37693 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2401 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.37696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2387 -a 0 -x {9.0 10.0 1198 ------- null} - -t 1.37696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2387 -a 0 -x {9.0 10.0 1198 ------- null} h -t 1.37696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2387 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.3772 -s 0 -d 9 -p ack -e 40 -c 0 -i 2394 -a 0 -x {10.0 9.0 1192 ------- null} - -t 1.3772 -s 0 -d 9 -p ack -e 40 -c 0 -i 2394 -a 0 -x {10.0 9.0 1192 ------- null} h -t 1.3772 -s 0 -d 9 -p ack -e 40 -c 0 -i 2394 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.37744 -s 10 -d 7 -p ack -e 40 -c 0 -i 2398 -a 0 -x {10.0 9.0 1194 ------- null} + -t 1.37744 -s 7 -d 0 -p ack -e 40 -c 0 -i 2398 -a 0 -x {10.0 9.0 1194 ------- null} h -t 1.37744 -s 7 -d 8 -p ack -e 40 -c 0 -i 2398 -a 0 -x {10.0 9.0 1194 ------- null} r -t 1.37757 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2397 -a 0 -x {9.0 10.0 1203 ------- null} + -t 1.37757 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2397 -a 0 -x {9.0 10.0 1203 ------- null} h -t 1.37757 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2397 -a 0 -x {9.0 10.0 1203 ------- null} r -t 1.37758 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2383 -a 0 -x {9.0 10.0 1196 ------- null} + -t 1.37758 -s 10 -d 7 -p ack -e 40 -c 0 -i 2402 -a 0 -x {10.0 9.0 1196 ------- null} - -t 1.37758 -s 10 -d 7 -p ack -e 40 -c 0 -i 2402 -a 0 -x {10.0 9.0 1196 ------- null} h -t 1.37758 -s 10 -d 7 -p ack -e 40 -c 0 -i 2402 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.37805 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2389 -a 0 -x {9.0 10.0 1199 ------- null} - -t 1.37805 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2389 -a 0 -x {9.0 10.0 1199 ------- null} h -t 1.37805 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2389 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.37816 -s 0 -d 9 -p ack -e 40 -c 0 -i 2392 -a 0 -x {10.0 9.0 1191 ------- null} + -t 1.37816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2403 -a 0 -x {9.0 10.0 1206 ------- null} - -t 1.37816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2403 -a 0 -x {9.0 10.0 1206 ------- null} h -t 1.37816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2403 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.37819 -s 0 -d 9 -p ack -e 40 -c 0 -i 2396 -a 0 -x {10.0 9.0 1193 ------- null} - -t 1.37819 -s 0 -d 9 -p ack -e 40 -c 0 -i 2396 -a 0 -x {10.0 9.0 1193 ------- null} h -t 1.37819 -s 0 -d 9 -p ack -e 40 -c 0 -i 2396 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.37853 -s 10 -d 7 -p ack -e 40 -c 0 -i 2400 -a 0 -x {10.0 9.0 1195 ------- null} + -t 1.37853 -s 7 -d 0 -p ack -e 40 -c 0 -i 2400 -a 0 -x {10.0 9.0 1195 ------- null} h -t 1.37853 -s 7 -d 8 -p ack -e 40 -c 0 -i 2400 -a 0 -x {10.0 9.0 1195 ------- null} r -t 1.37859 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2399 -a 0 -x {9.0 10.0 1204 ------- null} + -t 1.37859 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2399 -a 0 -x {9.0 10.0 1204 ------- null} h -t 1.37859 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2399 -a 0 -x {9.0 10.0 1204 ------- null} r -t 1.37867 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2385 -a 0 -x {9.0 10.0 1197 ------- null} + -t 1.37867 -s 10 -d 7 -p ack -e 40 -c 0 -i 2404 -a 0 -x {10.0 9.0 1197 ------- null} - -t 1.37867 -s 10 -d 7 -p ack -e 40 -c 0 -i 2404 -a 0 -x {10.0 9.0 1197 ------- null} h -t 1.37867 -s 10 -d 7 -p ack -e 40 -c 0 -i 2404 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.37914 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2391 -a 0 -x {9.0 10.0 1200 ------- null} - -t 1.37914 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2391 -a 0 -x {9.0 10.0 1200 ------- null} h -t 1.37914 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2391 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.3792 -s 0 -d 9 -p ack -e 40 -c 0 -i 2398 -a 0 -x {10.0 9.0 1194 ------- null} - -t 1.3792 -s 0 -d 9 -p ack -e 40 -c 0 -i 2398 -a 0 -x {10.0 9.0 1194 ------- null} h -t 1.3792 -s 0 -d 9 -p ack -e 40 -c 0 -i 2398 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.37923 -s 0 -d 9 -p ack -e 40 -c 0 -i 2394 -a 0 -x {10.0 9.0 1192 ------- null} + -t 1.37923 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2405 -a 0 -x {9.0 10.0 1207 ------- null} - -t 1.37923 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2405 -a 0 -x {9.0 10.0 1207 ------- null} h -t 1.37923 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2405 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.37962 -s 10 -d 7 -p ack -e 40 -c 0 -i 2402 -a 0 -x {10.0 9.0 1196 ------- null} + -t 1.37962 -s 7 -d 0 -p ack -e 40 -c 0 -i 2402 -a 0 -x {10.0 9.0 1196 ------- null} h -t 1.37962 -s 7 -d 8 -p ack -e 40 -c 0 -i 2402 -a 0 -x {10.0 9.0 1196 ------- null} r -t 1.37973 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2401 -a 0 -x {9.0 10.0 1205 ------- null} + -t 1.37973 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2401 -a 0 -x {9.0 10.0 1205 ------- null} h -t 1.37973 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2401 -a 0 -x {9.0 10.0 1205 ------- null} r -t 1.37976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2387 -a 0 -x {9.0 10.0 1198 ------- null} + -t 1.37976 -s 10 -d 7 -p ack -e 40 -c 0 -i 2406 -a 0 -x {10.0 9.0 1198 ------- null} - -t 1.37976 -s 10 -d 7 -p ack -e 40 -c 0 -i 2406 -a 0 -x {10.0 9.0 1198 ------- null} h -t 1.37976 -s 10 -d 7 -p ack -e 40 -c 0 -i 2406 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.38022 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2393 -a 0 -x {9.0 10.0 1201 ------- null} - -t 1.38022 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2393 -a 0 -x {9.0 10.0 1201 ------- null} h -t 1.38022 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2393 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.38022 -s 0 -d 9 -p ack -e 40 -c 0 -i 2396 -a 0 -x {10.0 9.0 1193 ------- null} + -t 1.38022 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2407 -a 0 -x {9.0 10.0 1208 ------- null} - -t 1.38022 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2407 -a 0 -x {9.0 10.0 1208 ------- null} h -t 1.38022 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2407 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.38045 -s 0 -d 9 -p ack -e 40 -c 0 -i 2400 -a 0 -x {10.0 9.0 1195 ------- null} - -t 1.38045 -s 0 -d 9 -p ack -e 40 -c 0 -i 2400 -a 0 -x {10.0 9.0 1195 ------- null} h -t 1.38045 -s 0 -d 9 -p ack -e 40 -c 0 -i 2400 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.3807 -s 10 -d 7 -p ack -e 40 -c 0 -i 2404 -a 0 -x {10.0 9.0 1197 ------- null} + -t 1.3807 -s 7 -d 0 -p ack -e 40 -c 0 -i 2404 -a 0 -x {10.0 9.0 1197 ------- null} h -t 1.3807 -s 7 -d 8 -p ack -e 40 -c 0 -i 2404 -a 0 -x {10.0 9.0 1197 ------- null} r -t 1.38085 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2389 -a 0 -x {9.0 10.0 1199 ------- null} + -t 1.38085 -s 10 -d 7 -p ack -e 40 -c 0 -i 2408 -a 0 -x {10.0 9.0 1199 ------- null} - -t 1.38085 -s 10 -d 7 -p ack -e 40 -c 0 -i 2408 -a 0 -x {10.0 9.0 1199 ------- null} h -t 1.38085 -s 10 -d 7 -p ack -e 40 -c 0 -i 2408 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.38096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2403 -a 0 -x {9.0 10.0 1206 ------- null} + -t 1.38096 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2403 -a 0 -x {9.0 10.0 1206 ------- null} h -t 1.38096 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2403 -a 0 -x {9.0 10.0 1206 ------- null} r -t 1.38123 -s 0 -d 9 -p ack -e 40 -c 0 -i 2398 -a 0 -x {10.0 9.0 1194 ------- null} + -t 1.38123 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2409 -a 0 -x {9.0 10.0 1209 ------- null} - -t 1.38123 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2409 -a 0 -x {9.0 10.0 1209 ------- null} h -t 1.38123 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2409 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.38131 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2395 -a 0 -x {9.0 10.0 1202 ------- null} - -t 1.38131 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2395 -a 0 -x {9.0 10.0 1202 ------- null} h -t 1.38131 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2395 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.3815 -s 0 -d 9 -p ack -e 40 -c 0 -i 2402 -a 0 -x {10.0 9.0 1196 ------- null} - -t 1.3815 -s 0 -d 9 -p ack -e 40 -c 0 -i 2402 -a 0 -x {10.0 9.0 1196 ------- null} h -t 1.3815 -s 0 -d 9 -p ack -e 40 -c 0 -i 2402 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.38179 -s 10 -d 7 -p ack -e 40 -c 0 -i 2406 -a 0 -x {10.0 9.0 1198 ------- null} + -t 1.38179 -s 7 -d 0 -p ack -e 40 -c 0 -i 2406 -a 0 -x {10.0 9.0 1198 ------- null} h -t 1.38179 -s 7 -d 8 -p ack -e 40 -c 0 -i 2406 -a 0 -x {10.0 9.0 1198 ------- null} r -t 1.38194 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2391 -a 0 -x {9.0 10.0 1200 ------- null} + -t 1.38194 -s 10 -d 7 -p ack -e 40 -c 0 -i 2410 -a 0 -x {10.0 9.0 1200 ------- null} - -t 1.38194 -s 10 -d 7 -p ack -e 40 -c 0 -i 2410 -a 0 -x {10.0 9.0 1200 ------- null} h -t 1.38194 -s 10 -d 7 -p ack -e 40 -c 0 -i 2410 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.38203 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2405 -a 0 -x {9.0 10.0 1207 ------- null} + -t 1.38203 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2405 -a 0 -x {9.0 10.0 1207 ------- null} h -t 1.38203 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2405 -a 0 -x {9.0 10.0 1207 ------- null} + -t 1.3824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2397 -a 0 -x {9.0 10.0 1203 ------- null} - -t 1.3824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2397 -a 0 -x {9.0 10.0 1203 ------- null} h -t 1.3824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2397 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.38248 -s 0 -d 9 -p ack -e 40 -c 0 -i 2400 -a 0 -x {10.0 9.0 1195 ------- null} + -t 1.38248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2411 -a 0 -x {9.0 10.0 1210 ------- null} - -t 1.38248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2411 -a 0 -x {9.0 10.0 1210 ------- null} h -t 1.38248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2411 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.3827 -s 0 -d 9 -p ack -e 40 -c 0 -i 2404 -a 0 -x {10.0 9.0 1197 ------- null} - -t 1.3827 -s 0 -d 9 -p ack -e 40 -c 0 -i 2404 -a 0 -x {10.0 9.0 1197 ------- null} h -t 1.3827 -s 0 -d 9 -p ack -e 40 -c 0 -i 2404 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.38288 -s 10 -d 7 -p ack -e 40 -c 0 -i 2408 -a 0 -x {10.0 9.0 1199 ------- null} + -t 1.38288 -s 7 -d 0 -p ack -e 40 -c 0 -i 2408 -a 0 -x {10.0 9.0 1199 ------- null} h -t 1.38288 -s 7 -d 8 -p ack -e 40 -c 0 -i 2408 -a 0 -x {10.0 9.0 1199 ------- null} r -t 1.38302 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2393 -a 0 -x {9.0 10.0 1201 ------- null} + -t 1.38302 -s 10 -d 7 -p ack -e 40 -c 0 -i 2412 -a 0 -x {10.0 9.0 1201 ------- null} - -t 1.38302 -s 10 -d 7 -p ack -e 40 -c 0 -i 2412 -a 0 -x {10.0 9.0 1201 ------- null} h -t 1.38302 -s 10 -d 7 -p ack -e 40 -c 0 -i 2412 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.38302 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2407 -a 0 -x {9.0 10.0 1208 ------- null} + -t 1.38302 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2407 -a 0 -x {9.0 10.0 1208 ------- null} h -t 1.38302 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2407 -a 0 -x {9.0 10.0 1208 ------- null} r -t 1.38354 -s 0 -d 9 -p ack -e 40 -c 0 -i 2402 -a 0 -x {10.0 9.0 1196 ------- null} + -t 1.38354 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2413 -a 0 -x {9.0 10.0 1211 ------- null} - -t 1.38354 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2413 -a 0 -x {9.0 10.0 1211 ------- null} h -t 1.38354 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2413 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.38374 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2399 -a 0 -x {9.0 10.0 1204 ------- null} - -t 1.38374 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2399 -a 0 -x {9.0 10.0 1204 ------- null} h -t 1.38374 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2399 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.38389 -s 0 -d 9 -p ack -e 40 -c 0 -i 2406 -a 0 -x {10.0 9.0 1198 ------- null} - -t 1.38389 -s 0 -d 9 -p ack -e 40 -c 0 -i 2406 -a 0 -x {10.0 9.0 1198 ------- null} h -t 1.38389 -s 0 -d 9 -p ack -e 40 -c 0 -i 2406 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.38397 -s 10 -d 7 -p ack -e 40 -c 0 -i 2410 -a 0 -x {10.0 9.0 1200 ------- null} + -t 1.38397 -s 7 -d 0 -p ack -e 40 -c 0 -i 2410 -a 0 -x {10.0 9.0 1200 ------- null} h -t 1.38397 -s 7 -d 8 -p ack -e 40 -c 0 -i 2410 -a 0 -x {10.0 9.0 1200 ------- null} r -t 1.38403 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2409 -a 0 -x {9.0 10.0 1209 ------- null} + -t 1.38403 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2409 -a 0 -x {9.0 10.0 1209 ------- null} h -t 1.38403 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2409 -a 0 -x {9.0 10.0 1209 ------- null} r -t 1.38411 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2395 -a 0 -x {9.0 10.0 1202 ------- null} + -t 1.38411 -s 10 -d 7 -p ack -e 40 -c 0 -i 2414 -a 0 -x {10.0 9.0 1202 ------- null} - -t 1.38411 -s 10 -d 7 -p ack -e 40 -c 0 -i 2414 -a 0 -x {10.0 9.0 1202 ------- null} h -t 1.38411 -s 10 -d 7 -p ack -e 40 -c 0 -i 2414 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.38474 -s 0 -d 9 -p ack -e 40 -c 0 -i 2404 -a 0 -x {10.0 9.0 1197 ------- null} + -t 1.38474 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2415 -a 0 -x {9.0 10.0 1212 ------- null} - -t 1.38474 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2415 -a 0 -x {9.0 10.0 1212 ------- null} h -t 1.38474 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2415 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.38483 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2401 -a 0 -x {9.0 10.0 1205 ------- null} - -t 1.38483 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2401 -a 0 -x {9.0 10.0 1205 ------- null} h -t 1.38483 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2401 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.38493 -s 0 -d 9 -p ack -e 40 -c 0 -i 2408 -a 0 -x {10.0 9.0 1199 ------- null} - -t 1.38493 -s 0 -d 9 -p ack -e 40 -c 0 -i 2408 -a 0 -x {10.0 9.0 1199 ------- null} h -t 1.38493 -s 0 -d 9 -p ack -e 40 -c 0 -i 2408 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.38506 -s 10 -d 7 -p ack -e 40 -c 0 -i 2412 -a 0 -x {10.0 9.0 1201 ------- null} + -t 1.38506 -s 7 -d 0 -p ack -e 40 -c 0 -i 2412 -a 0 -x {10.0 9.0 1201 ------- null} h -t 1.38506 -s 7 -d 8 -p ack -e 40 -c 0 -i 2412 -a 0 -x {10.0 9.0 1201 ------- null} r -t 1.3852 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2397 -a 0 -x {9.0 10.0 1203 ------- null} + -t 1.3852 -s 10 -d 7 -p ack -e 40 -c 0 -i 2416 -a 0 -x {10.0 9.0 1203 ------- null} - -t 1.3852 -s 10 -d 7 -p ack -e 40 -c 0 -i 2416 -a 0 -x {10.0 9.0 1203 ------- null} h -t 1.3852 -s 10 -d 7 -p ack -e 40 -c 0 -i 2416 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.38528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2411 -a 0 -x {9.0 10.0 1210 ------- null} + -t 1.38528 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2411 -a 0 -x {9.0 10.0 1210 ------- null} h -t 1.38528 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2411 -a 0 -x {9.0 10.0 1210 ------- null} + -t 1.38592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2403 -a 0 -x {9.0 10.0 1206 ------- null} - -t 1.38592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2403 -a 0 -x {9.0 10.0 1206 ------- null} h -t 1.38592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2403 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.38592 -s 0 -d 9 -p ack -e 40 -c 0 -i 2406 -a 0 -x {10.0 9.0 1198 ------- null} + -t 1.38592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2417 -a 0 -x {9.0 10.0 1213 ------- null} - -t 1.38592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2417 -a 0 -x {9.0 10.0 1213 ------- null} h -t 1.38592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2417 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.38614 -s 10 -d 7 -p ack -e 40 -c 0 -i 2414 -a 0 -x {10.0 9.0 1202 ------- null} + -t 1.38614 -s 7 -d 0 -p ack -e 40 -c 0 -i 2414 -a 0 -x {10.0 9.0 1202 ------- null} h -t 1.38614 -s 7 -d 8 -p ack -e 40 -c 0 -i 2414 -a 0 -x {10.0 9.0 1202 ------- null} + -t 1.38616 -s 0 -d 9 -p ack -e 40 -c 0 -i 2410 -a 0 -x {10.0 9.0 1200 ------- null} - -t 1.38616 -s 0 -d 9 -p ack -e 40 -c 0 -i 2410 -a 0 -x {10.0 9.0 1200 ------- null} h -t 1.38616 -s 0 -d 9 -p ack -e 40 -c 0 -i 2410 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.38634 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2413 -a 0 -x {9.0 10.0 1211 ------- null} + -t 1.38634 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2413 -a 0 -x {9.0 10.0 1211 ------- null} h -t 1.38634 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2413 -a 0 -x {9.0 10.0 1211 ------- null} r -t 1.38654 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2399 -a 0 -x {9.0 10.0 1204 ------- null} + -t 1.38654 -s 10 -d 7 -p ack -e 40 -c 0 -i 2418 -a 0 -x {10.0 9.0 1204 ------- null} - -t 1.38654 -s 10 -d 7 -p ack -e 40 -c 0 -i 2418 -a 0 -x {10.0 9.0 1204 ------- null} h -t 1.38654 -s 10 -d 7 -p ack -e 40 -c 0 -i 2418 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.38696 -s 0 -d 9 -p ack -e 40 -c 0 -i 2408 -a 0 -x {10.0 9.0 1199 ------- null} + -t 1.38696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2419 -a 0 -x {9.0 10.0 1214 ------- null} - -t 1.38696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2419 -a 0 -x {9.0 10.0 1214 ------- null} h -t 1.38696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2419 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.38701 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2405 -a 0 -x {9.0 10.0 1207 ------- null} - -t 1.38701 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2405 -a 0 -x {9.0 10.0 1207 ------- null} h -t 1.38701 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2405 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.38723 -s 10 -d 7 -p ack -e 40 -c 0 -i 2416 -a 0 -x {10.0 9.0 1203 ------- null} + -t 1.38723 -s 7 -d 0 -p ack -e 40 -c 0 -i 2416 -a 0 -x {10.0 9.0 1203 ------- null} h -t 1.38723 -s 7 -d 8 -p ack -e 40 -c 0 -i 2416 -a 0 -x {10.0 9.0 1203 ------- null} + -t 1.38723 -s 0 -d 9 -p ack -e 40 -c 0 -i 2412 -a 0 -x {10.0 9.0 1201 ------- null} - -t 1.38723 -s 0 -d 9 -p ack -e 40 -c 0 -i 2412 -a 0 -x {10.0 9.0 1201 ------- null} h -t 1.38723 -s 0 -d 9 -p ack -e 40 -c 0 -i 2412 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.38754 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2415 -a 0 -x {9.0 10.0 1212 ------- null} + -t 1.38754 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2415 -a 0 -x {9.0 10.0 1212 ------- null} h -t 1.38754 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2415 -a 0 -x {9.0 10.0 1212 ------- null} r -t 1.38763 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2401 -a 0 -x {9.0 10.0 1205 ------- null} + -t 1.38763 -s 10 -d 7 -p ack -e 40 -c 0 -i 2420 -a 0 -x {10.0 9.0 1205 ------- null} - -t 1.38763 -s 10 -d 7 -p ack -e 40 -c 0 -i 2420 -a 0 -x {10.0 9.0 1205 ------- null} h -t 1.38763 -s 10 -d 7 -p ack -e 40 -c 0 -i 2420 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.3881 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2407 -a 0 -x {9.0 10.0 1208 ------- null} - -t 1.3881 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2407 -a 0 -x {9.0 10.0 1208 ------- null} h -t 1.3881 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2407 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.38819 -s 0 -d 9 -p ack -e 40 -c 0 -i 2410 -a 0 -x {10.0 9.0 1200 ------- null} + -t 1.38819 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2421 -a 0 -x {9.0 10.0 1215 ------- null} - -t 1.38819 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2421 -a 0 -x {9.0 10.0 1215 ------- null} h -t 1.38819 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2421 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.38824 -s 0 -d 9 -p ack -e 40 -c 0 -i 2414 -a 0 -x {10.0 9.0 1202 ------- null} - -t 1.38824 -s 0 -d 9 -p ack -e 40 -c 0 -i 2414 -a 0 -x {10.0 9.0 1202 ------- null} h -t 1.38824 -s 0 -d 9 -p ack -e 40 -c 0 -i 2414 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.38858 -s 10 -d 7 -p ack -e 40 -c 0 -i 2418 -a 0 -x {10.0 9.0 1204 ------- null} + -t 1.38858 -s 7 -d 0 -p ack -e 40 -c 0 -i 2418 -a 0 -x {10.0 9.0 1204 ------- null} h -t 1.38858 -s 7 -d 8 -p ack -e 40 -c 0 -i 2418 -a 0 -x {10.0 9.0 1204 ------- null} r -t 1.38872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2403 -a 0 -x {9.0 10.0 1206 ------- null} + -t 1.38872 -s 10 -d 7 -p ack -e 40 -c 0 -i 2422 -a 0 -x {10.0 9.0 1206 ------- null} - -t 1.38872 -s 10 -d 7 -p ack -e 40 -c 0 -i 2422 -a 0 -x {10.0 9.0 1206 ------- null} h -t 1.38872 -s 10 -d 7 -p ack -e 40 -c 0 -i 2422 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.38872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2417 -a 0 -x {9.0 10.0 1213 ------- null} + -t 1.38872 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2417 -a 0 -x {9.0 10.0 1213 ------- null} h -t 1.38872 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2417 -a 0 -x {9.0 10.0 1213 ------- null} + -t 1.38918 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2409 -a 0 -x {9.0 10.0 1209 ------- null} - -t 1.38918 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2409 -a 0 -x {9.0 10.0 1209 ------- null} h -t 1.38918 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2409 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.38926 -s 0 -d 9 -p ack -e 40 -c 0 -i 2412 -a 0 -x {10.0 9.0 1201 ------- null} + -t 1.38926 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2423 -a 0 -x {9.0 10.0 1216 ------- null} - -t 1.38926 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2423 -a 0 -x {9.0 10.0 1216 ------- null} h -t 1.38926 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2423 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.38947 -s 0 -d 9 -p ack -e 40 -c 0 -i 2416 -a 0 -x {10.0 9.0 1203 ------- null} - -t 1.38947 -s 0 -d 9 -p ack -e 40 -c 0 -i 2416 -a 0 -x {10.0 9.0 1203 ------- null} h -t 1.38947 -s 0 -d 9 -p ack -e 40 -c 0 -i 2416 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.38966 -s 10 -d 7 -p ack -e 40 -c 0 -i 2420 -a 0 -x {10.0 9.0 1205 ------- null} + -t 1.38966 -s 7 -d 0 -p ack -e 40 -c 0 -i 2420 -a 0 -x {10.0 9.0 1205 ------- null} h -t 1.38966 -s 7 -d 8 -p ack -e 40 -c 0 -i 2420 -a 0 -x {10.0 9.0 1205 ------- null} r -t 1.38976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2419 -a 0 -x {9.0 10.0 1214 ------- null} + -t 1.38976 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2419 -a 0 -x {9.0 10.0 1214 ------- null} h -t 1.38976 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2419 -a 0 -x {9.0 10.0 1214 ------- null} r -t 1.38981 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2405 -a 0 -x {9.0 10.0 1207 ------- null} + -t 1.38981 -s 10 -d 7 -p ack -e 40 -c 0 -i 2424 -a 0 -x {10.0 9.0 1207 ------- null} - -t 1.38981 -s 10 -d 7 -p ack -e 40 -c 0 -i 2424 -a 0 -x {10.0 9.0 1207 ------- null} h -t 1.38981 -s 10 -d 7 -p ack -e 40 -c 0 -i 2424 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.39027 -s 0 -d 9 -p ack -e 40 -c 0 -i 2414 -a 0 -x {10.0 9.0 1202 ------- null} + -t 1.39027 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2425 -a 0 -x {9.0 10.0 1217 ------- null} - -t 1.39027 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2425 -a 0 -x {9.0 10.0 1217 ------- null} h -t 1.39027 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2425 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.39043 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2411 -a 0 -x {9.0 10.0 1210 ------- null} - -t 1.39043 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2411 -a 0 -x {9.0 10.0 1210 ------- null} h -t 1.39043 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2411 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.39066 -s 0 -d 9 -p ack -e 40 -c 0 -i 2418 -a 0 -x {10.0 9.0 1204 ------- null} - -t 1.39066 -s 0 -d 9 -p ack -e 40 -c 0 -i 2418 -a 0 -x {10.0 9.0 1204 ------- null} h -t 1.39066 -s 0 -d 9 -p ack -e 40 -c 0 -i 2418 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.39075 -s 10 -d 7 -p ack -e 40 -c 0 -i 2422 -a 0 -x {10.0 9.0 1206 ------- null} + -t 1.39075 -s 7 -d 0 -p ack -e 40 -c 0 -i 2422 -a 0 -x {10.0 9.0 1206 ------- null} h -t 1.39075 -s 7 -d 8 -p ack -e 40 -c 0 -i 2422 -a 0 -x {10.0 9.0 1206 ------- null} r -t 1.3909 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2407 -a 0 -x {9.0 10.0 1208 ------- null} + -t 1.3909 -s 10 -d 7 -p ack -e 40 -c 0 -i 2426 -a 0 -x {10.0 9.0 1208 ------- null} - -t 1.3909 -s 10 -d 7 -p ack -e 40 -c 0 -i 2426 -a 0 -x {10.0 9.0 1208 ------- null} h -t 1.3909 -s 10 -d 7 -p ack -e 40 -c 0 -i 2426 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.39099 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2421 -a 0 -x {9.0 10.0 1215 ------- null} + -t 1.39099 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2421 -a 0 -x {9.0 10.0 1215 ------- null} h -t 1.39099 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2421 -a 0 -x {9.0 10.0 1215 ------- null} r -t 1.3915 -s 0 -d 9 -p ack -e 40 -c 0 -i 2416 -a 0 -x {10.0 9.0 1203 ------- null} + -t 1.3915 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2427 -a 0 -x {9.0 10.0 1218 ------- null} - -t 1.3915 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2427 -a 0 -x {9.0 10.0 1218 ------- null} h -t 1.3915 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2427 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.39152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2413 -a 0 -x {9.0 10.0 1211 ------- null} - -t 1.39152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2413 -a 0 -x {9.0 10.0 1211 ------- null} h -t 1.39152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2413 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.39168 -s 0 -d 9 -p ack -e 40 -c 0 -i 2420 -a 0 -x {10.0 9.0 1205 ------- null} - -t 1.39168 -s 0 -d 9 -p ack -e 40 -c 0 -i 2420 -a 0 -x {10.0 9.0 1205 ------- null} h -t 1.39168 -s 0 -d 9 -p ack -e 40 -c 0 -i 2420 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.39184 -s 10 -d 7 -p ack -e 40 -c 0 -i 2424 -a 0 -x {10.0 9.0 1207 ------- null} + -t 1.39184 -s 7 -d 0 -p ack -e 40 -c 0 -i 2424 -a 0 -x {10.0 9.0 1207 ------- null} h -t 1.39184 -s 7 -d 8 -p ack -e 40 -c 0 -i 2424 -a 0 -x {10.0 9.0 1207 ------- null} r -t 1.39198 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2409 -a 0 -x {9.0 10.0 1209 ------- null} + -t 1.39198 -s 10 -d 7 -p ack -e 40 -c 0 -i 2428 -a 0 -x {10.0 9.0 1209 ------- null} - -t 1.39198 -s 10 -d 7 -p ack -e 40 -c 0 -i 2428 -a 0 -x {10.0 9.0 1209 ------- null} h -t 1.39198 -s 10 -d 7 -p ack -e 40 -c 0 -i 2428 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.39206 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2423 -a 0 -x {9.0 10.0 1216 ------- null} + -t 1.39206 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2423 -a 0 -x {9.0 10.0 1216 ------- null} h -t 1.39206 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2423 -a 0 -x {9.0 10.0 1216 ------- null} + -t 1.39261 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2415 -a 0 -x {9.0 10.0 1212 ------- null} - -t 1.39261 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2415 -a 0 -x {9.0 10.0 1212 ------- null} h -t 1.39261 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2415 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.39269 -s 0 -d 9 -p ack -e 40 -c 0 -i 2418 -a 0 -x {10.0 9.0 1204 ------- null} + -t 1.39269 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2429 -a 0 -x {9.0 10.0 1219 ------- null} - -t 1.39269 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2429 -a 0 -x {9.0 10.0 1219 ------- null} h -t 1.39269 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2429 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.39288 -s 0 -d 9 -p ack -e 40 -c 0 -i 2422 -a 0 -x {10.0 9.0 1206 ------- null} - -t 1.39288 -s 0 -d 9 -p ack -e 40 -c 0 -i 2422 -a 0 -x {10.0 9.0 1206 ------- null} h -t 1.39288 -s 0 -d 9 -p ack -e 40 -c 0 -i 2422 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.39293 -s 10 -d 7 -p ack -e 40 -c 0 -i 2426 -a 0 -x {10.0 9.0 1208 ------- null} + -t 1.39293 -s 7 -d 0 -p ack -e 40 -c 0 -i 2426 -a 0 -x {10.0 9.0 1208 ------- null} h -t 1.39293 -s 7 -d 8 -p ack -e 40 -c 0 -i 2426 -a 0 -x {10.0 9.0 1208 ------- null} r -t 1.39307 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2425 -a 0 -x {9.0 10.0 1217 ------- null} + -t 1.39307 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2425 -a 0 -x {9.0 10.0 1217 ------- null} h -t 1.39307 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2425 -a 0 -x {9.0 10.0 1217 ------- null} r -t 1.39323 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2411 -a 0 -x {9.0 10.0 1210 ------- null} + -t 1.39323 -s 10 -d 7 -p ack -e 40 -c 0 -i 2430 -a 0 -x {10.0 9.0 1210 ------- null} - -t 1.39323 -s 10 -d 7 -p ack -e 40 -c 0 -i 2430 -a 0 -x {10.0 9.0 1210 ------- null} h -t 1.39323 -s 10 -d 7 -p ack -e 40 -c 0 -i 2430 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.39371 -s 0 -d 9 -p ack -e 40 -c 0 -i 2420 -a 0 -x {10.0 9.0 1205 ------- null} + -t 1.39371 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2431 -a 0 -x {9.0 10.0 1220 ------- null} - -t 1.39371 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2431 -a 0 -x {9.0 10.0 1220 ------- null} h -t 1.39371 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2431 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.39392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2417 -a 0 -x {9.0 10.0 1213 ------- null} - -t 1.39392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2417 -a 0 -x {9.0 10.0 1213 ------- null} h -t 1.39392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2417 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.39402 -s 10 -d 7 -p ack -e 40 -c 0 -i 2428 -a 0 -x {10.0 9.0 1209 ------- null} + -t 1.39402 -s 7 -d 0 -p ack -e 40 -c 0 -i 2428 -a 0 -x {10.0 9.0 1209 ------- null} h -t 1.39402 -s 7 -d 8 -p ack -e 40 -c 0 -i 2428 -a 0 -x {10.0 9.0 1209 ------- null} + -t 1.39416 -s 0 -d 9 -p ack -e 40 -c 0 -i 2424 -a 0 -x {10.0 9.0 1207 ------- null} - -t 1.39416 -s 0 -d 9 -p ack -e 40 -c 0 -i 2424 -a 0 -x {10.0 9.0 1207 ------- null} h -t 1.39416 -s 0 -d 9 -p ack -e 40 -c 0 -i 2424 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.3943 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2427 -a 0 -x {9.0 10.0 1218 ------- null} + -t 1.3943 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2427 -a 0 -x {9.0 10.0 1218 ------- null} h -t 1.3943 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2427 -a 0 -x {9.0 10.0 1218 ------- null} r -t 1.39432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2413 -a 0 -x {9.0 10.0 1211 ------- null} + -t 1.39432 -s 10 -d 7 -p ack -e 40 -c 0 -i 2432 -a 0 -x {10.0 9.0 1211 ------- null} - -t 1.39432 -s 10 -d 7 -p ack -e 40 -c 0 -i 2432 -a 0 -x {10.0 9.0 1211 ------- null} h -t 1.39432 -s 10 -d 7 -p ack -e 40 -c 0 -i 2432 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.39491 -s 0 -d 9 -p ack -e 40 -c 0 -i 2422 -a 0 -x {10.0 9.0 1206 ------- null} + -t 1.39491 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2433 -a 0 -x {9.0 10.0 1221 ------- null} - -t 1.39491 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2433 -a 0 -x {9.0 10.0 1221 ------- null} h -t 1.39491 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2433 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.39501 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2419 -a 0 -x {9.0 10.0 1214 ------- null} - -t 1.39501 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2419 -a 0 -x {9.0 10.0 1214 ------- null} h -t 1.39501 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2419 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.39526 -s 10 -d 7 -p ack -e 40 -c 0 -i 2430 -a 0 -x {10.0 9.0 1210 ------- null} + -t 1.39526 -s 7 -d 0 -p ack -e 40 -c 0 -i 2430 -a 0 -x {10.0 9.0 1210 ------- null} h -t 1.39526 -s 7 -d 8 -p ack -e 40 -c 0 -i 2430 -a 0 -x {10.0 9.0 1210 ------- null} + -t 1.39526 -s 0 -d 9 -p ack -e 40 -c 0 -i 2426 -a 0 -x {10.0 9.0 1208 ------- null} - -t 1.39526 -s 0 -d 9 -p ack -e 40 -c 0 -i 2426 -a 0 -x {10.0 9.0 1208 ------- null} h -t 1.39526 -s 0 -d 9 -p ack -e 40 -c 0 -i 2426 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.39541 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2415 -a 0 -x {9.0 10.0 1212 ------- null} + -t 1.39541 -s 10 -d 7 -p ack -e 40 -c 0 -i 2434 -a 0 -x {10.0 9.0 1212 ------- null} - -t 1.39541 -s 10 -d 7 -p ack -e 40 -c 0 -i 2434 -a 0 -x {10.0 9.0 1212 ------- null} h -t 1.39541 -s 10 -d 7 -p ack -e 40 -c 0 -i 2434 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.39549 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2429 -a 0 -x {9.0 10.0 1219 ------- null} + -t 1.39549 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2429 -a 0 -x {9.0 10.0 1219 ------- null} h -t 1.39549 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2429 -a 0 -x {9.0 10.0 1219 ------- null} + -t 1.3961 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2421 -a 0 -x {9.0 10.0 1215 ------- null} - -t 1.3961 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2421 -a 0 -x {9.0 10.0 1215 ------- null} h -t 1.3961 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2421 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.39619 -s 0 -d 9 -p ack -e 40 -c 0 -i 2424 -a 0 -x {10.0 9.0 1207 ------- null} + -t 1.39619 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2435 -a 0 -x {9.0 10.0 1222 ------- null} - -t 1.39619 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2435 -a 0 -x {9.0 10.0 1222 ------- null} h -t 1.39619 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2435 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.39634 -s 0 -d 9 -p ack -e 40 -c 0 -i 2428 -a 0 -x {10.0 9.0 1209 ------- null} - -t 1.39634 -s 0 -d 9 -p ack -e 40 -c 0 -i 2428 -a 0 -x {10.0 9.0 1209 ------- null} h -t 1.39634 -s 0 -d 9 -p ack -e 40 -c 0 -i 2428 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.39635 -s 10 -d 7 -p ack -e 40 -c 0 -i 2432 -a 0 -x {10.0 9.0 1211 ------- null} + -t 1.39635 -s 7 -d 0 -p ack -e 40 -c 0 -i 2432 -a 0 -x {10.0 9.0 1211 ------- null} h -t 1.39635 -s 7 -d 8 -p ack -e 40 -c 0 -i 2432 -a 0 -x {10.0 9.0 1211 ------- null} r -t 1.39651 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2431 -a 0 -x {9.0 10.0 1220 ------- null} + -t 1.39651 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2431 -a 0 -x {9.0 10.0 1220 ------- null} h -t 1.39651 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2431 -a 0 -x {9.0 10.0 1220 ------- null} r -t 1.39672 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2417 -a 0 -x {9.0 10.0 1213 ------- null} + -t 1.39672 -s 10 -d 7 -p ack -e 40 -c 0 -i 2436 -a 0 -x {10.0 9.0 1213 ------- null} - -t 1.39672 -s 10 -d 7 -p ack -e 40 -c 0 -i 2436 -a 0 -x {10.0 9.0 1213 ------- null} h -t 1.39672 -s 10 -d 7 -p ack -e 40 -c 0 -i 2436 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.39718 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2423 -a 0 -x {9.0 10.0 1216 ------- null} - -t 1.39718 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2423 -a 0 -x {9.0 10.0 1216 ------- null} h -t 1.39718 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2423 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.3973 -s 0 -d 9 -p ack -e 40 -c 0 -i 2426 -a 0 -x {10.0 9.0 1208 ------- null} + -t 1.3973 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2437 -a 0 -x {9.0 10.0 1223 ------- null} - -t 1.3973 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2437 -a 0 -x {9.0 10.0 1223 ------- null} h -t 1.3973 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2437 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.39734 -s 0 -d 9 -p ack -e 40 -c 0 -i 2430 -a 0 -x {10.0 9.0 1210 ------- null} - -t 1.39734 -s 0 -d 9 -p ack -e 40 -c 0 -i 2430 -a 0 -x {10.0 9.0 1210 ------- null} h -t 1.39734 -s 0 -d 9 -p ack -e 40 -c 0 -i 2430 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.39744 -s 10 -d 7 -p ack -e 40 -c 0 -i 2434 -a 0 -x {10.0 9.0 1212 ------- null} + -t 1.39744 -s 7 -d 0 -p ack -e 40 -c 0 -i 2434 -a 0 -x {10.0 9.0 1212 ------- null} h -t 1.39744 -s 7 -d 8 -p ack -e 40 -c 0 -i 2434 -a 0 -x {10.0 9.0 1212 ------- null} r -t 1.39771 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2433 -a 0 -x {9.0 10.0 1221 ------- null} + -t 1.39771 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2433 -a 0 -x {9.0 10.0 1221 ------- null} h -t 1.39771 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2433 -a 0 -x {9.0 10.0 1221 ------- null} r -t 1.39781 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2419 -a 0 -x {9.0 10.0 1214 ------- null} + -t 1.39781 -s 10 -d 7 -p ack -e 40 -c 0 -i 2438 -a 0 -x {10.0 9.0 1214 ------- null} - -t 1.39781 -s 10 -d 7 -p ack -e 40 -c 0 -i 2438 -a 0 -x {10.0 9.0 1214 ------- null} h -t 1.39781 -s 10 -d 7 -p ack -e 40 -c 0 -i 2438 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.39827 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2425 -a 0 -x {9.0 10.0 1217 ------- null} - -t 1.39827 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2425 -a 0 -x {9.0 10.0 1217 ------- null} h -t 1.39827 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2425 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.39837 -s 0 -d 9 -p ack -e 40 -c 0 -i 2428 -a 0 -x {10.0 9.0 1209 ------- null} + -t 1.39837 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2439 -a 0 -x {9.0 10.0 1224 ------- null} - -t 1.39837 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2439 -a 0 -x {9.0 10.0 1224 ------- null} h -t 1.39837 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2439 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.39842 -s 0 -d 9 -p ack -e 40 -c 0 -i 2432 -a 0 -x {10.0 9.0 1211 ------- null} - -t 1.39842 -s 0 -d 9 -p ack -e 40 -c 0 -i 2432 -a 0 -x {10.0 9.0 1211 ------- null} h -t 1.39842 -s 0 -d 9 -p ack -e 40 -c 0 -i 2432 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.39875 -s 10 -d 7 -p ack -e 40 -c 0 -i 2436 -a 0 -x {10.0 9.0 1213 ------- null} + -t 1.39875 -s 7 -d 0 -p ack -e 40 -c 0 -i 2436 -a 0 -x {10.0 9.0 1213 ------- null} h -t 1.39875 -s 7 -d 8 -p ack -e 40 -c 0 -i 2436 -a 0 -x {10.0 9.0 1213 ------- null} r -t 1.3989 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2421 -a 0 -x {9.0 10.0 1215 ------- null} + -t 1.3989 -s 10 -d 7 -p ack -e 40 -c 0 -i 2440 -a 0 -x {10.0 9.0 1215 ------- null} - -t 1.3989 -s 10 -d 7 -p ack -e 40 -c 0 -i 2440 -a 0 -x {10.0 9.0 1215 ------- null} h -t 1.3989 -s 10 -d 7 -p ack -e 40 -c 0 -i 2440 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.39899 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2435 -a 0 -x {9.0 10.0 1222 ------- null} + -t 1.39899 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2435 -a 0 -x {9.0 10.0 1222 ------- null} h -t 1.39899 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2435 -a 0 -x {9.0 10.0 1222 ------- null} + -t 1.39936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2427 -a 0 -x {9.0 10.0 1218 ------- null} - -t 1.39936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2427 -a 0 -x {9.0 10.0 1218 ------- null} h -t 1.39936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2427 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.39938 -s 0 -d 9 -p ack -e 40 -c 0 -i 2430 -a 0 -x {10.0 9.0 1210 ------- null} + -t 1.39938 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2441 -a 0 -x {9.0 10.0 1225 ------- null} - -t 1.39938 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2441 -a 0 -x {9.0 10.0 1225 ------- null} h -t 1.39938 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2441 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.3996 -s 0 -d 9 -p ack -e 40 -c 0 -i 2434 -a 0 -x {10.0 9.0 1212 ------- null} - -t 1.3996 -s 0 -d 9 -p ack -e 40 -c 0 -i 2434 -a 0 -x {10.0 9.0 1212 ------- null} h -t 1.3996 -s 0 -d 9 -p ack -e 40 -c 0 -i 2434 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.39984 -s 10 -d 7 -p ack -e 40 -c 0 -i 2438 -a 0 -x {10.0 9.0 1214 ------- null} + -t 1.39984 -s 7 -d 0 -p ack -e 40 -c 0 -i 2438 -a 0 -x {10.0 9.0 1214 ------- null} h -t 1.39984 -s 7 -d 8 -p ack -e 40 -c 0 -i 2438 -a 0 -x {10.0 9.0 1214 ------- null} r -t 1.39998 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2423 -a 0 -x {9.0 10.0 1216 ------- null} + -t 1.39998 -s 10 -d 7 -p ack -e 40 -c 0 -i 2442 -a 0 -x {10.0 9.0 1216 ------- null} - -t 1.39998 -s 10 -d 7 -p ack -e 40 -c 0 -i 2442 -a 0 -x {10.0 9.0 1216 ------- null} h -t 1.39998 -s 10 -d 7 -p ack -e 40 -c 0 -i 2442 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.4001 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2437 -a 0 -x {9.0 10.0 1223 ------- null} + -t 1.4001 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2437 -a 0 -x {9.0 10.0 1223 ------- null} h -t 1.4001 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2437 -a 0 -x {9.0 10.0 1223 ------- null} + -t 1.40045 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2429 -a 0 -x {9.0 10.0 1219 ------- null} - -t 1.40045 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2429 -a 0 -x {9.0 10.0 1219 ------- null} h -t 1.40045 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2429 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.40045 -s 0 -d 9 -p ack -e 40 -c 0 -i 2432 -a 0 -x {10.0 9.0 1211 ------- null} + -t 1.40045 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2443 -a 0 -x {9.0 10.0 1226 ------- null} - -t 1.40045 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2443 -a 0 -x {9.0 10.0 1226 ------- null} h -t 1.40045 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2443 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.40072 -s 0 -d 9 -p ack -e 40 -c 0 -i 2436 -a 0 -x {10.0 9.0 1213 ------- null} - -t 1.40072 -s 0 -d 9 -p ack -e 40 -c 0 -i 2436 -a 0 -x {10.0 9.0 1213 ------- null} h -t 1.40072 -s 0 -d 9 -p ack -e 40 -c 0 -i 2436 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.40093 -s 10 -d 7 -p ack -e 40 -c 0 -i 2440 -a 0 -x {10.0 9.0 1215 ------- null} + -t 1.40093 -s 7 -d 0 -p ack -e 40 -c 0 -i 2440 -a 0 -x {10.0 9.0 1215 ------- null} h -t 1.40093 -s 7 -d 8 -p ack -e 40 -c 0 -i 2440 -a 0 -x {10.0 9.0 1215 ------- null} r -t 1.40107 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2425 -a 0 -x {9.0 10.0 1217 ------- null} + -t 1.40107 -s 10 -d 7 -p ack -e 40 -c 0 -i 2444 -a 0 -x {10.0 9.0 1217 ------- null} - -t 1.40107 -s 10 -d 7 -p ack -e 40 -c 0 -i 2444 -a 0 -x {10.0 9.0 1217 ------- null} h -t 1.40107 -s 10 -d 7 -p ack -e 40 -c 0 -i 2444 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.40117 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2439 -a 0 -x {9.0 10.0 1224 ------- null} + -t 1.40117 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2439 -a 0 -x {9.0 10.0 1224 ------- null} h -t 1.40117 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2439 -a 0 -x {9.0 10.0 1224 ------- null} + -t 1.40155 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2431 -a 0 -x {9.0 10.0 1220 ------- null} - -t 1.40155 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2431 -a 0 -x {9.0 10.0 1220 ------- null} h -t 1.40155 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2431 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.40163 -s 0 -d 9 -p ack -e 40 -c 0 -i 2434 -a 0 -x {10.0 9.0 1212 ------- null} + -t 1.40163 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2445 -a 0 -x {9.0 10.0 1227 ------- null} - -t 1.40163 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2445 -a 0 -x {9.0 10.0 1227 ------- null} h -t 1.40163 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2445 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.4017 -s 0 -d 9 -p ack -e 40 -c 0 -i 2438 -a 0 -x {10.0 9.0 1214 ------- null} - -t 1.4017 -s 0 -d 9 -p ack -e 40 -c 0 -i 2438 -a 0 -x {10.0 9.0 1214 ------- null} h -t 1.4017 -s 0 -d 9 -p ack -e 40 -c 0 -i 2438 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.40202 -s 10 -d 7 -p ack -e 40 -c 0 -i 2442 -a 0 -x {10.0 9.0 1216 ------- null} + -t 1.40202 -s 7 -d 0 -p ack -e 40 -c 0 -i 2442 -a 0 -x {10.0 9.0 1216 ------- null} h -t 1.40202 -s 7 -d 8 -p ack -e 40 -c 0 -i 2442 -a 0 -x {10.0 9.0 1216 ------- null} r -t 1.40216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2427 -a 0 -x {9.0 10.0 1218 ------- null} + -t 1.40216 -s 10 -d 7 -p ack -e 40 -c 0 -i 2446 -a 0 -x {10.0 9.0 1218 ------- null} - -t 1.40216 -s 10 -d 7 -p ack -e 40 -c 0 -i 2446 -a 0 -x {10.0 9.0 1218 ------- null} h -t 1.40216 -s 10 -d 7 -p ack -e 40 -c 0 -i 2446 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.40218 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2441 -a 0 -x {9.0 10.0 1225 ------- null} + -t 1.40218 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2441 -a 0 -x {9.0 10.0 1225 ------- null} h -t 1.40218 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2441 -a 0 -x {9.0 10.0 1225 ------- null} + -t 1.40264 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2433 -a 0 -x {9.0 10.0 1221 ------- null} - -t 1.40264 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2433 -a 0 -x {9.0 10.0 1221 ------- null} h -t 1.40264 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2433 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.40275 -s 0 -d 9 -p ack -e 40 -c 0 -i 2436 -a 0 -x {10.0 9.0 1213 ------- null} + -t 1.40275 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2447 -a 0 -x {9.0 10.0 1228 ------- null} - -t 1.40275 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2447 -a 0 -x {9.0 10.0 1228 ------- null} h -t 1.40275 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2447 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.4029 -s 0 -d 9 -p ack -e 40 -c 0 -i 2440 -a 0 -x {10.0 9.0 1215 ------- null} - -t 1.4029 -s 0 -d 9 -p ack -e 40 -c 0 -i 2440 -a 0 -x {10.0 9.0 1215 ------- null} h -t 1.4029 -s 0 -d 9 -p ack -e 40 -c 0 -i 2440 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.4031 -s 10 -d 7 -p ack -e 40 -c 0 -i 2444 -a 0 -x {10.0 9.0 1217 ------- null} + -t 1.4031 -s 7 -d 0 -p ack -e 40 -c 0 -i 2444 -a 0 -x {10.0 9.0 1217 ------- null} h -t 1.4031 -s 7 -d 8 -p ack -e 40 -c 0 -i 2444 -a 0 -x {10.0 9.0 1217 ------- null} r -t 1.40325 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2429 -a 0 -x {9.0 10.0 1219 ------- null} + -t 1.40325 -s 10 -d 7 -p ack -e 40 -c 0 -i 2448 -a 0 -x {10.0 9.0 1219 ------- null} - -t 1.40325 -s 10 -d 7 -p ack -e 40 -c 0 -i 2448 -a 0 -x {10.0 9.0 1219 ------- null} h -t 1.40325 -s 10 -d 7 -p ack -e 40 -c 0 -i 2448 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.40325 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2443 -a 0 -x {9.0 10.0 1226 ------- null} + -t 1.40325 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2443 -a 0 -x {9.0 10.0 1226 ------- null} h -t 1.40325 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2443 -a 0 -x {9.0 10.0 1226 ------- null} + -t 1.40373 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2435 -a 0 -x {9.0 10.0 1222 ------- null} - -t 1.40373 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2435 -a 0 -x {9.0 10.0 1222 ------- null} h -t 1.40373 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2435 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.40373 -s 0 -d 9 -p ack -e 40 -c 0 -i 2438 -a 0 -x {10.0 9.0 1214 ------- null} + -t 1.40373 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2449 -a 0 -x {9.0 10.0 1229 ------- null} - -t 1.40373 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2449 -a 0 -x {9.0 10.0 1229 ------- null} h -t 1.40373 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2449 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.4039 -s 0 -d 9 -p ack -e 40 -c 0 -i 2442 -a 0 -x {10.0 9.0 1216 ------- null} - -t 1.4039 -s 0 -d 9 -p ack -e 40 -c 0 -i 2442 -a 0 -x {10.0 9.0 1216 ------- null} h -t 1.4039 -s 0 -d 9 -p ack -e 40 -c 0 -i 2442 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.40419 -s 10 -d 7 -p ack -e 40 -c 0 -i 2446 -a 0 -x {10.0 9.0 1218 ------- null} + -t 1.40419 -s 7 -d 0 -p ack -e 40 -c 0 -i 2446 -a 0 -x {10.0 9.0 1218 ------- null} h -t 1.40419 -s 7 -d 8 -p ack -e 40 -c 0 -i 2446 -a 0 -x {10.0 9.0 1218 ------- null} r -t 1.40435 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2431 -a 0 -x {9.0 10.0 1220 ------- null} + -t 1.40435 -s 10 -d 7 -p ack -e 40 -c 0 -i 2450 -a 0 -x {10.0 9.0 1220 ------- null} - -t 1.40435 -s 10 -d 7 -p ack -e 40 -c 0 -i 2450 -a 0 -x {10.0 9.0 1220 ------- null} h -t 1.40435 -s 10 -d 7 -p ack -e 40 -c 0 -i 2450 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.40443 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2445 -a 0 -x {9.0 10.0 1227 ------- null} + -t 1.40443 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2445 -a 0 -x {9.0 10.0 1227 ------- null} h -t 1.40443 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2445 -a 0 -x {9.0 10.0 1227 ------- null} + -t 1.40482 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2437 -a 0 -x {9.0 10.0 1223 ------- null} - -t 1.40482 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2437 -a 0 -x {9.0 10.0 1223 ------- null} h -t 1.40482 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2437 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.40493 -s 0 -d 9 -p ack -e 40 -c 0 -i 2440 -a 0 -x {10.0 9.0 1215 ------- null} + -t 1.40493 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2451 -a 0 -x {9.0 10.0 1230 ------- null} - -t 1.40493 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2451 -a 0 -x {9.0 10.0 1230 ------- null} h -t 1.40493 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2451 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.40512 -s 0 -d 9 -p ack -e 40 -c 0 -i 2444 -a 0 -x {10.0 9.0 1217 ------- null} - -t 1.40512 -s 0 -d 9 -p ack -e 40 -c 0 -i 2444 -a 0 -x {10.0 9.0 1217 ------- null} h -t 1.40512 -s 0 -d 9 -p ack -e 40 -c 0 -i 2444 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.40528 -s 10 -d 7 -p ack -e 40 -c 0 -i 2448 -a 0 -x {10.0 9.0 1219 ------- null} + -t 1.40528 -s 7 -d 0 -p ack -e 40 -c 0 -i 2448 -a 0 -x {10.0 9.0 1219 ------- null} h -t 1.40528 -s 7 -d 8 -p ack -e 40 -c 0 -i 2448 -a 0 -x {10.0 9.0 1219 ------- null} r -t 1.40544 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2433 -a 0 -x {9.0 10.0 1221 ------- null} + -t 1.40544 -s 10 -d 7 -p ack -e 40 -c 0 -i 2452 -a 0 -x {10.0 9.0 1221 ------- null} - -t 1.40544 -s 10 -d 7 -p ack -e 40 -c 0 -i 2452 -a 0 -x {10.0 9.0 1221 ------- null} h -t 1.40544 -s 10 -d 7 -p ack -e 40 -c 0 -i 2452 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.40555 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2447 -a 0 -x {9.0 10.0 1228 ------- null} + -t 1.40555 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2447 -a 0 -x {9.0 10.0 1228 ------- null} h -t 1.40555 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2447 -a 0 -x {9.0 10.0 1228 ------- null} r -t 1.40594 -s 0 -d 9 -p ack -e 40 -c 0 -i 2442 -a 0 -x {10.0 9.0 1216 ------- null} + -t 1.40594 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2453 -a 0 -x {9.0 10.0 1231 ------- null} - -t 1.40594 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2453 -a 0 -x {9.0 10.0 1231 ------- null} h -t 1.40594 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2453 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.40595 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2439 -a 0 -x {9.0 10.0 1224 ------- null} - -t 1.40595 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2439 -a 0 -x {9.0 10.0 1224 ------- null} h -t 1.40595 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2439 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.40622 -s 0 -d 9 -p ack -e 40 -c 0 -i 2446 -a 0 -x {10.0 9.0 1218 ------- null} - -t 1.40622 -s 0 -d 9 -p ack -e 40 -c 0 -i 2446 -a 0 -x {10.0 9.0 1218 ------- null} h -t 1.40622 -s 0 -d 9 -p ack -e 40 -c 0 -i 2446 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.40638 -s 10 -d 7 -p ack -e 40 -c 0 -i 2450 -a 0 -x {10.0 9.0 1220 ------- null} + -t 1.40638 -s 7 -d 0 -p ack -e 40 -c 0 -i 2450 -a 0 -x {10.0 9.0 1220 ------- null} h -t 1.40638 -s 7 -d 8 -p ack -e 40 -c 0 -i 2450 -a 0 -x {10.0 9.0 1220 ------- null} r -t 1.40653 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2435 -a 0 -x {9.0 10.0 1222 ------- null} + -t 1.40653 -s 10 -d 7 -p ack -e 40 -c 0 -i 2454 -a 0 -x {10.0 9.0 1222 ------- null} - -t 1.40653 -s 10 -d 7 -p ack -e 40 -c 0 -i 2454 -a 0 -x {10.0 9.0 1222 ------- null} h -t 1.40653 -s 10 -d 7 -p ack -e 40 -c 0 -i 2454 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.40653 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2449 -a 0 -x {9.0 10.0 1229 ------- null} + -t 1.40653 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2449 -a 0 -x {9.0 10.0 1229 ------- null} h -t 1.40653 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2449 -a 0 -x {9.0 10.0 1229 ------- null} r -t 1.40715 -s 0 -d 9 -p ack -e 40 -c 0 -i 2444 -a 0 -x {10.0 9.0 1217 ------- null} + -t 1.40715 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2455 -a 0 -x {9.0 10.0 1232 ------- null} - -t 1.40715 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2455 -a 0 -x {9.0 10.0 1232 ------- null} h -t 1.40715 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2455 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.4073 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2441 -a 0 -x {9.0 10.0 1225 ------- null} - -t 1.4073 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2441 -a 0 -x {9.0 10.0 1225 ------- null} h -t 1.4073 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2441 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.40747 -s 10 -d 7 -p ack -e 40 -c 0 -i 2452 -a 0 -x {10.0 9.0 1221 ------- null} + -t 1.40747 -s 7 -d 0 -p ack -e 40 -c 0 -i 2452 -a 0 -x {10.0 9.0 1221 ------- null} h -t 1.40747 -s 7 -d 8 -p ack -e 40 -c 0 -i 2452 -a 0 -x {10.0 9.0 1221 ------- null} + -t 1.40755 -s 0 -d 9 -p ack -e 40 -c 0 -i 2448 -a 0 -x {10.0 9.0 1219 ------- null} - -t 1.40755 -s 0 -d 9 -p ack -e 40 -c 0 -i 2448 -a 0 -x {10.0 9.0 1219 ------- null} h -t 1.40755 -s 0 -d 9 -p ack -e 40 -c 0 -i 2448 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.40762 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2437 -a 0 -x {9.0 10.0 1223 ------- null} + -t 1.40762 -s 10 -d 7 -p ack -e 40 -c 0 -i 2456 -a 0 -x {10.0 9.0 1223 ------- null} - -t 1.40762 -s 10 -d 7 -p ack -e 40 -c 0 -i 2456 -a 0 -x {10.0 9.0 1223 ------- null} h -t 1.40762 -s 10 -d 7 -p ack -e 40 -c 0 -i 2456 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.40773 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2451 -a 0 -x {9.0 10.0 1230 ------- null} + -t 1.40773 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2451 -a 0 -x {9.0 10.0 1230 ------- null} h -t 1.40773 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2451 -a 0 -x {9.0 10.0 1230 ------- null} r -t 1.40826 -s 0 -d 9 -p ack -e 40 -c 0 -i 2446 -a 0 -x {10.0 9.0 1218 ------- null} + -t 1.40826 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2457 -a 0 -x {9.0 10.0 1233 ------- null} - -t 1.40826 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2457 -a 0 -x {9.0 10.0 1233 ------- null} h -t 1.40826 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2457 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.40838 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2443 -a 0 -x {9.0 10.0 1226 ------- null} - -t 1.40838 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2443 -a 0 -x {9.0 10.0 1226 ------- null} h -t 1.40838 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2443 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.4085 -s 0 -d 9 -p ack -e 40 -c 0 -i 2450 -a 0 -x {10.0 9.0 1220 ------- null} - -t 1.4085 -s 0 -d 9 -p ack -e 40 -c 0 -i 2450 -a 0 -x {10.0 9.0 1220 ------- null} h -t 1.4085 -s 0 -d 9 -p ack -e 40 -c 0 -i 2450 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.40856 -s 10 -d 7 -p ack -e 40 -c 0 -i 2454 -a 0 -x {10.0 9.0 1222 ------- null} + -t 1.40856 -s 7 -d 0 -p ack -e 40 -c 0 -i 2454 -a 0 -x {10.0 9.0 1222 ------- null} h -t 1.40856 -s 7 -d 8 -p ack -e 40 -c 0 -i 2454 -a 0 -x {10.0 9.0 1222 ------- null} r -t 1.40874 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2453 -a 0 -x {9.0 10.0 1231 ------- null} + -t 1.40874 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2453 -a 0 -x {9.0 10.0 1231 ------- null} h -t 1.40874 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2453 -a 0 -x {9.0 10.0 1231 ------- null} r -t 1.40875 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2439 -a 0 -x {9.0 10.0 1224 ------- null} + -t 1.40875 -s 10 -d 7 -p ack -e 40 -c 0 -i 2458 -a 0 -x {10.0 9.0 1224 ------- null} - -t 1.40875 -s 10 -d 7 -p ack -e 40 -c 0 -i 2458 -a 0 -x {10.0 9.0 1224 ------- null} h -t 1.40875 -s 10 -d 7 -p ack -e 40 -c 0 -i 2458 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.40947 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2445 -a 0 -x {9.0 10.0 1227 ------- null} - -t 1.40947 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2445 -a 0 -x {9.0 10.0 1227 ------- null} h -t 1.40947 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2445 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.40958 -s 0 -d 9 -p ack -e 40 -c 0 -i 2448 -a 0 -x {10.0 9.0 1219 ------- null} + -t 1.40958 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2459 -a 0 -x {9.0 10.0 1234 ------- null} - -t 1.40958 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2459 -a 0 -x {9.0 10.0 1234 ------- null} h -t 1.40958 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2459 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.40958 -s 0 -d 9 -p ack -e 40 -c 0 -i 2452 -a 0 -x {10.0 9.0 1221 ------- null} - -t 1.40958 -s 0 -d 9 -p ack -e 40 -c 0 -i 2452 -a 0 -x {10.0 9.0 1221 ------- null} h -t 1.40958 -s 0 -d 9 -p ack -e 40 -c 0 -i 2452 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.40965 -s 10 -d 7 -p ack -e 40 -c 0 -i 2456 -a 0 -x {10.0 9.0 1223 ------- null} + -t 1.40965 -s 7 -d 0 -p ack -e 40 -c 0 -i 2456 -a 0 -x {10.0 9.0 1223 ------- null} h -t 1.40965 -s 7 -d 8 -p ack -e 40 -c 0 -i 2456 -a 0 -x {10.0 9.0 1223 ------- null} r -t 1.40995 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2455 -a 0 -x {9.0 10.0 1232 ------- null} + -t 1.40995 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2455 -a 0 -x {9.0 10.0 1232 ------- null} h -t 1.40995 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2455 -a 0 -x {9.0 10.0 1232 ------- null} r -t 1.4101 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2441 -a 0 -x {9.0 10.0 1225 ------- null} + -t 1.4101 -s 10 -d 7 -p ack -e 40 -c 0 -i 2460 -a 0 -x {10.0 9.0 1225 ------- null} - -t 1.4101 -s 10 -d 7 -p ack -e 40 -c 0 -i 2460 -a 0 -x {10.0 9.0 1225 ------- null} h -t 1.4101 -s 10 -d 7 -p ack -e 40 -c 0 -i 2460 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.41053 -s 0 -d 9 -p ack -e 40 -c 0 -i 2450 -a 0 -x {10.0 9.0 1220 ------- null} + -t 1.41053 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2461 -a 0 -x {9.0 10.0 1235 ------- null} - -t 1.41053 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2461 -a 0 -x {9.0 10.0 1235 ------- null} h -t 1.41053 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2461 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.41056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2447 -a 0 -x {9.0 10.0 1228 ------- null} - -t 1.41056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2447 -a 0 -x {9.0 10.0 1228 ------- null} h -t 1.41056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2447 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.41064 -s 0 -d 9 -p ack -e 40 -c 0 -i 2454 -a 0 -x {10.0 9.0 1222 ------- null} - -t 1.41064 -s 0 -d 9 -p ack -e 40 -c 0 -i 2454 -a 0 -x {10.0 9.0 1222 ------- null} h -t 1.41064 -s 0 -d 9 -p ack -e 40 -c 0 -i 2454 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.41078 -s 10 -d 7 -p ack -e 40 -c 0 -i 2458 -a 0 -x {10.0 9.0 1224 ------- null} + -t 1.41078 -s 7 -d 0 -p ack -e 40 -c 0 -i 2458 -a 0 -x {10.0 9.0 1224 ------- null} h -t 1.41078 -s 7 -d 8 -p ack -e 40 -c 0 -i 2458 -a 0 -x {10.0 9.0 1224 ------- null} r -t 1.41106 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2457 -a 0 -x {9.0 10.0 1233 ------- null} + -t 1.41106 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2457 -a 0 -x {9.0 10.0 1233 ------- null} h -t 1.41106 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2457 -a 0 -x {9.0 10.0 1233 ------- null} r -t 1.41118 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2443 -a 0 -x {9.0 10.0 1226 ------- null} + -t 1.41118 -s 10 -d 7 -p ack -e 40 -c 0 -i 2462 -a 0 -x {10.0 9.0 1226 ------- null} - -t 1.41118 -s 10 -d 7 -p ack -e 40 -c 0 -i 2462 -a 0 -x {10.0 9.0 1226 ------- null} h -t 1.41118 -s 10 -d 7 -p ack -e 40 -c 0 -i 2462 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.41162 -s 0 -d 9 -p ack -e 40 -c 0 -i 2452 -a 0 -x {10.0 9.0 1221 ------- null} + -t 1.41162 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2463 -a 0 -x {9.0 10.0 1236 ------- null} - -t 1.41162 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2463 -a 0 -x {9.0 10.0 1236 ------- null} h -t 1.41162 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2463 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.41165 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2449 -a 0 -x {9.0 10.0 1229 ------- null} - -t 1.41165 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2449 -a 0 -x {9.0 10.0 1229 ------- null} h -t 1.41165 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2449 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.41171 -s 0 -d 9 -p ack -e 40 -c 0 -i 2456 -a 0 -x {10.0 9.0 1223 ------- null} - -t 1.41171 -s 0 -d 9 -p ack -e 40 -c 0 -i 2456 -a 0 -x {10.0 9.0 1223 ------- null} h -t 1.41171 -s 0 -d 9 -p ack -e 40 -c 0 -i 2456 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.41213 -s 10 -d 7 -p ack -e 40 -c 0 -i 2460 -a 0 -x {10.0 9.0 1225 ------- null} + -t 1.41213 -s 7 -d 0 -p ack -e 40 -c 0 -i 2460 -a 0 -x {10.0 9.0 1225 ------- null} h -t 1.41213 -s 7 -d 8 -p ack -e 40 -c 0 -i 2460 -a 0 -x {10.0 9.0 1225 ------- null} r -t 1.41227 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2445 -a 0 -x {9.0 10.0 1227 ------- null} + -t 1.41227 -s 10 -d 7 -p ack -e 40 -c 0 -i 2464 -a 0 -x {10.0 9.0 1227 ------- null} - -t 1.41227 -s 10 -d 7 -p ack -e 40 -c 0 -i 2464 -a 0 -x {10.0 9.0 1227 ------- null} h -t 1.41227 -s 10 -d 7 -p ack -e 40 -c 0 -i 2464 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.41238 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2459 -a 0 -x {9.0 10.0 1234 ------- null} + -t 1.41238 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2459 -a 0 -x {9.0 10.0 1234 ------- null} h -t 1.41238 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2459 -a 0 -x {9.0 10.0 1234 ------- null} r -t 1.41267 -s 0 -d 9 -p ack -e 40 -c 0 -i 2454 -a 0 -x {10.0 9.0 1222 ------- null} + -t 1.41267 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2465 -a 0 -x {9.0 10.0 1237 ------- null} - -t 1.41267 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2465 -a 0 -x {9.0 10.0 1237 ------- null} h -t 1.41267 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2465 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.41274 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2451 -a 0 -x {9.0 10.0 1230 ------- null} - -t 1.41274 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2451 -a 0 -x {9.0 10.0 1230 ------- null} h -t 1.41274 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2451 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.4129 -s 0 -d 9 -p ack -e 40 -c 0 -i 2458 -a 0 -x {10.0 9.0 1224 ------- null} - -t 1.4129 -s 0 -d 9 -p ack -e 40 -c 0 -i 2458 -a 0 -x {10.0 9.0 1224 ------- null} h -t 1.4129 -s 0 -d 9 -p ack -e 40 -c 0 -i 2458 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.41322 -s 10 -d 7 -p ack -e 40 -c 0 -i 2462 -a 0 -x {10.0 9.0 1226 ------- null} + -t 1.41322 -s 7 -d 0 -p ack -e 40 -c 0 -i 2462 -a 0 -x {10.0 9.0 1226 ------- null} h -t 1.41322 -s 7 -d 8 -p ack -e 40 -c 0 -i 2462 -a 0 -x {10.0 9.0 1226 ------- null} r -t 1.41333 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2461 -a 0 -x {9.0 10.0 1235 ------- null} + -t 1.41333 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2461 -a 0 -x {9.0 10.0 1235 ------- null} h -t 1.41333 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2461 -a 0 -x {9.0 10.0 1235 ------- null} r -t 1.41336 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2447 -a 0 -x {9.0 10.0 1228 ------- null} + -t 1.41336 -s 10 -d 7 -p ack -e 40 -c 0 -i 2466 -a 0 -x {10.0 9.0 1228 ------- null} - -t 1.41336 -s 10 -d 7 -p ack -e 40 -c 0 -i 2466 -a 0 -x {10.0 9.0 1228 ------- null} h -t 1.41336 -s 10 -d 7 -p ack -e 40 -c 0 -i 2466 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.41374 -s 0 -d 9 -p ack -e 40 -c 0 -i 2456 -a 0 -x {10.0 9.0 1223 ------- null} + -t 1.41374 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2467 -a 0 -x {9.0 10.0 1238 ------- null} - -t 1.41374 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2467 -a 0 -x {9.0 10.0 1238 ------- null} h -t 1.41374 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2467 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.41382 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2453 -a 0 -x {9.0 10.0 1231 ------- null} - -t 1.41382 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2453 -a 0 -x {9.0 10.0 1231 ------- null} h -t 1.41382 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2453 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.41389 -s 0 -d 9 -p ack -e 40 -c 0 -i 2460 -a 0 -x {10.0 9.0 1225 ------- null} - -t 1.41389 -s 0 -d 9 -p ack -e 40 -c 0 -i 2460 -a 0 -x {10.0 9.0 1225 ------- null} h -t 1.41389 -s 0 -d 9 -p ack -e 40 -c 0 -i 2460 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.4143 -s 10 -d 7 -p ack -e 40 -c 0 -i 2464 -a 0 -x {10.0 9.0 1227 ------- null} + -t 1.4143 -s 7 -d 0 -p ack -e 40 -c 0 -i 2464 -a 0 -x {10.0 9.0 1227 ------- null} h -t 1.4143 -s 7 -d 8 -p ack -e 40 -c 0 -i 2464 -a 0 -x {10.0 9.0 1227 ------- null} r -t 1.41442 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2463 -a 0 -x {9.0 10.0 1236 ------- null} + -t 1.41442 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2463 -a 0 -x {9.0 10.0 1236 ------- null} h -t 1.41442 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2463 -a 0 -x {9.0 10.0 1236 ------- null} r -t 1.41445 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2449 -a 0 -x {9.0 10.0 1229 ------- null} + -t 1.41445 -s 10 -d 7 -p ack -e 40 -c 0 -i 2468 -a 0 -x {10.0 9.0 1229 ------- null} - -t 1.41445 -s 10 -d 7 -p ack -e 40 -c 0 -i 2468 -a 0 -x {10.0 9.0 1229 ------- null} h -t 1.41445 -s 10 -d 7 -p ack -e 40 -c 0 -i 2468 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.41491 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2455 -a 0 -x {9.0 10.0 1232 ------- null} - -t 1.41491 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2455 -a 0 -x {9.0 10.0 1232 ------- null} h -t 1.41491 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2455 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.41493 -s 0 -d 9 -p ack -e 40 -c 0 -i 2458 -a 0 -x {10.0 9.0 1224 ------- null} + -t 1.41493 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2469 -a 0 -x {9.0 10.0 1239 ------- null} - -t 1.41493 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2469 -a 0 -x {9.0 10.0 1239 ------- null} h -t 1.41493 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2469 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.41509 -s 0 -d 9 -p ack -e 40 -c 0 -i 2462 -a 0 -x {10.0 9.0 1226 ------- null} - -t 1.41509 -s 0 -d 9 -p ack -e 40 -c 0 -i 2462 -a 0 -x {10.0 9.0 1226 ------- null} h -t 1.41509 -s 0 -d 9 -p ack -e 40 -c 0 -i 2462 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.41539 -s 10 -d 7 -p ack -e 40 -c 0 -i 2466 -a 0 -x {10.0 9.0 1228 ------- null} + -t 1.41539 -s 7 -d 0 -p ack -e 40 -c 0 -i 2466 -a 0 -x {10.0 9.0 1228 ------- null} h -t 1.41539 -s 7 -d 8 -p ack -e 40 -c 0 -i 2466 -a 0 -x {10.0 9.0 1228 ------- null} r -t 1.41547 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2465 -a 0 -x {9.0 10.0 1237 ------- null} + -t 1.41547 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2465 -a 0 -x {9.0 10.0 1237 ------- null} h -t 1.41547 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2465 -a 0 -x {9.0 10.0 1237 ------- null} r -t 1.41554 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2451 -a 0 -x {9.0 10.0 1230 ------- null} + -t 1.41554 -s 10 -d 7 -p ack -e 40 -c 0 -i 2470 -a 0 -x {10.0 9.0 1230 ------- null} - -t 1.41554 -s 10 -d 7 -p ack -e 40 -c 0 -i 2470 -a 0 -x {10.0 9.0 1230 ------- null} h -t 1.41554 -s 10 -d 7 -p ack -e 40 -c 0 -i 2470 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.41592 -s 0 -d 9 -p ack -e 40 -c 0 -i 2460 -a 0 -x {10.0 9.0 1225 ------- null} + -t 1.41592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2471 -a 0 -x {9.0 10.0 1240 ------- null} - -t 1.41592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2471 -a 0 -x {9.0 10.0 1240 ------- null} h -t 1.41592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2471 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2457 -a 0 -x {9.0 10.0 1233 ------- null} - -t 1.416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2457 -a 0 -x {9.0 10.0 1233 ------- null} h -t 1.416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2457 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.4163 -s 0 -d 9 -p ack -e 40 -c 0 -i 2464 -a 0 -x {10.0 9.0 1227 ------- null} - -t 1.4163 -s 0 -d 9 -p ack -e 40 -c 0 -i 2464 -a 0 -x {10.0 9.0 1227 ------- null} h -t 1.4163 -s 0 -d 9 -p ack -e 40 -c 0 -i 2464 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.41648 -s 10 -d 7 -p ack -e 40 -c 0 -i 2468 -a 0 -x {10.0 9.0 1229 ------- null} + -t 1.41648 -s 7 -d 0 -p ack -e 40 -c 0 -i 2468 -a 0 -x {10.0 9.0 1229 ------- null} h -t 1.41648 -s 7 -d 8 -p ack -e 40 -c 0 -i 2468 -a 0 -x {10.0 9.0 1229 ------- null} r -t 1.41654 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2467 -a 0 -x {9.0 10.0 1238 ------- null} + -t 1.41654 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2467 -a 0 -x {9.0 10.0 1238 ------- null} h -t 1.41654 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2467 -a 0 -x {9.0 10.0 1238 ------- null} r -t 1.41662 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2453 -a 0 -x {9.0 10.0 1231 ------- null} + -t 1.41662 -s 10 -d 7 -p ack -e 40 -c 0 -i 2472 -a 0 -x {10.0 9.0 1231 ------- null} - -t 1.41662 -s 10 -d 7 -p ack -e 40 -c 0 -i 2472 -a 0 -x {10.0 9.0 1231 ------- null} h -t 1.41662 -s 10 -d 7 -p ack -e 40 -c 0 -i 2472 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.41712 -s 0 -d 9 -p ack -e 40 -c 0 -i 2462 -a 0 -x {10.0 9.0 1226 ------- null} + -t 1.41712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2473 -a 0 -x {9.0 10.0 1241 ------- null} - -t 1.41712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2473 -a 0 -x {9.0 10.0 1241 ------- null} h -t 1.41712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2473 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.4173 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2459 -a 0 -x {9.0 10.0 1234 ------- null} - -t 1.4173 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2459 -a 0 -x {9.0 10.0 1234 ------- null} h -t 1.4173 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2459 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.41757 -s 10 -d 7 -p ack -e 40 -c 0 -i 2470 -a 0 -x {10.0 9.0 1230 ------- null} + -t 1.41757 -s 7 -d 0 -p ack -e 40 -c 0 -i 2470 -a 0 -x {10.0 9.0 1230 ------- null} h -t 1.41757 -s 7 -d 8 -p ack -e 40 -c 0 -i 2470 -a 0 -x {10.0 9.0 1230 ------- null} + -t 1.41758 -s 0 -d 9 -p ack -e 40 -c 0 -i 2466 -a 0 -x {10.0 9.0 1228 ------- null} - -t 1.41758 -s 0 -d 9 -p ack -e 40 -c 0 -i 2466 -a 0 -x {10.0 9.0 1228 ------- null} h -t 1.41758 -s 0 -d 9 -p ack -e 40 -c 0 -i 2466 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.41771 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2455 -a 0 -x {9.0 10.0 1232 ------- null} + -t 1.41771 -s 10 -d 7 -p ack -e 40 -c 0 -i 2474 -a 0 -x {10.0 9.0 1232 ------- null} - -t 1.41771 -s 10 -d 7 -p ack -e 40 -c 0 -i 2474 -a 0 -x {10.0 9.0 1232 ------- null} h -t 1.41771 -s 10 -d 7 -p ack -e 40 -c 0 -i 2474 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.41773 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2469 -a 0 -x {9.0 10.0 1239 ------- null} + -t 1.41773 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2469 -a 0 -x {9.0 10.0 1239 ------- null} h -t 1.41773 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2469 -a 0 -x {9.0 10.0 1239 ------- null} r -t 1.41834 -s 0 -d 9 -p ack -e 40 -c 0 -i 2464 -a 0 -x {10.0 9.0 1227 ------- null} + -t 1.41834 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2475 -a 0 -x {9.0 10.0 1242 ------- null} - -t 1.41834 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2475 -a 0 -x {9.0 10.0 1242 ------- null} h -t 1.41834 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2475 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.41866 -s 10 -d 7 -p ack -e 40 -c 0 -i 2472 -a 0 -x {10.0 9.0 1231 ------- null} + -t 1.41866 -s 7 -d 0 -p ack -e 40 -c 0 -i 2472 -a 0 -x {10.0 9.0 1231 ------- null} h -t 1.41866 -s 7 -d 8 -p ack -e 40 -c 0 -i 2472 -a 0 -x {10.0 9.0 1231 ------- null} + -t 1.41866 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2461 -a 0 -x {9.0 10.0 1235 ------- null} - -t 1.41866 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2461 -a 0 -x {9.0 10.0 1235 ------- null} h -t 1.41866 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2461 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.41872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2471 -a 0 -x {9.0 10.0 1240 ------- null} + -t 1.41872 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2471 -a 0 -x {9.0 10.0 1240 ------- null} h -t 1.41872 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2471 -a 0 -x {9.0 10.0 1240 ------- null} r -t 1.4188 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2457 -a 0 -x {9.0 10.0 1233 ------- null} + -t 1.4188 -s 10 -d 7 -p ack -e 40 -c 0 -i 2476 -a 0 -x {10.0 9.0 1233 ------- null} - -t 1.4188 -s 10 -d 7 -p ack -e 40 -c 0 -i 2476 -a 0 -x {10.0 9.0 1233 ------- null} h -t 1.4188 -s 10 -d 7 -p ack -e 40 -c 0 -i 2476 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.41886 -s 0 -d 9 -p ack -e 40 -c 0 -i 2468 -a 0 -x {10.0 9.0 1229 ------- null} - -t 1.41886 -s 0 -d 9 -p ack -e 40 -c 0 -i 2468 -a 0 -x {10.0 9.0 1229 ------- null} h -t 1.41886 -s 0 -d 9 -p ack -e 40 -c 0 -i 2468 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.41962 -s 0 -d 9 -p ack -e 40 -c 0 -i 2466 -a 0 -x {10.0 9.0 1228 ------- null} + -t 1.41962 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2477 -a 0 -x {9.0 10.0 1243 ------- null} - -t 1.41962 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2477 -a 0 -x {9.0 10.0 1243 ------- null} h -t 1.41962 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2477 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.41974 -s 10 -d 7 -p ack -e 40 -c 0 -i 2474 -a 0 -x {10.0 9.0 1232 ------- null} + -t 1.41974 -s 7 -d 0 -p ack -e 40 -c 0 -i 2474 -a 0 -x {10.0 9.0 1232 ------- null} h -t 1.41974 -s 7 -d 8 -p ack -e 40 -c 0 -i 2474 -a 0 -x {10.0 9.0 1232 ------- null} + -t 1.41974 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2463 -a 0 -x {9.0 10.0 1236 ------- null} - -t 1.41974 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2463 -a 0 -x {9.0 10.0 1236 ------- null} h -t 1.41974 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2463 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.41986 -s 0 -d 9 -p ack -e 40 -c 0 -i 2470 -a 0 -x {10.0 9.0 1230 ------- null} - -t 1.41986 -s 0 -d 9 -p ack -e 40 -c 0 -i 2470 -a 0 -x {10.0 9.0 1230 ------- null} h -t 1.41986 -s 0 -d 9 -p ack -e 40 -c 0 -i 2470 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.41992 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2473 -a 0 -x {9.0 10.0 1241 ------- null} + -t 1.41992 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2473 -a 0 -x {9.0 10.0 1241 ------- null} h -t 1.41992 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2473 -a 0 -x {9.0 10.0 1241 ------- null} r -t 1.4201 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2459 -a 0 -x {9.0 10.0 1234 ------- null} + -t 1.4201 -s 10 -d 7 -p ack -e 40 -c 0 -i 2478 -a 0 -x {10.0 9.0 1234 ------- null} - -t 1.4201 -s 10 -d 7 -p ack -e 40 -c 0 -i 2478 -a 0 -x {10.0 9.0 1234 ------- null} h -t 1.4201 -s 10 -d 7 -p ack -e 40 -c 0 -i 2478 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.42083 -s 10 -d 7 -p ack -e 40 -c 0 -i 2476 -a 0 -x {10.0 9.0 1233 ------- null} + -t 1.42083 -s 7 -d 0 -p ack -e 40 -c 0 -i 2476 -a 0 -x {10.0 9.0 1233 ------- null} h -t 1.42083 -s 7 -d 8 -p ack -e 40 -c 0 -i 2476 -a 0 -x {10.0 9.0 1233 ------- null} + -t 1.42083 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2465 -a 0 -x {9.0 10.0 1237 ------- null} - -t 1.42083 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2465 -a 0 -x {9.0 10.0 1237 ------- null} h -t 1.42083 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2465 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.4209 -s 0 -d 9 -p ack -e 40 -c 0 -i 2468 -a 0 -x {10.0 9.0 1229 ------- null} + -t 1.4209 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2479 -a 0 -x {9.0 10.0 1244 ------- null} - -t 1.4209 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2479 -a 0 -x {9.0 10.0 1244 ------- null} h -t 1.4209 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2479 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.42098 -s 0 -d 9 -p ack -e 40 -c 0 -i 2472 -a 0 -x {10.0 9.0 1231 ------- null} - -t 1.42098 -s 0 -d 9 -p ack -e 40 -c 0 -i 2472 -a 0 -x {10.0 9.0 1231 ------- null} h -t 1.42098 -s 0 -d 9 -p ack -e 40 -c 0 -i 2472 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.42114 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2475 -a 0 -x {9.0 10.0 1242 ------- null} + -t 1.42114 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2475 -a 0 -x {9.0 10.0 1242 ------- null} h -t 1.42114 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2475 -a 0 -x {9.0 10.0 1242 ------- null} r -t 1.42146 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2461 -a 0 -x {9.0 10.0 1235 ------- null} + -t 1.42146 -s 10 -d 7 -p ack -e 40 -c 0 -i 2480 -a 0 -x {10.0 9.0 1235 ------- null} - -t 1.42146 -s 10 -d 7 -p ack -e 40 -c 0 -i 2480 -a 0 -x {10.0 9.0 1235 ------- null} h -t 1.42146 -s 10 -d 7 -p ack -e 40 -c 0 -i 2480 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.42189 -s 0 -d 9 -p ack -e 40 -c 0 -i 2470 -a 0 -x {10.0 9.0 1230 ------- null} + -t 1.42189 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2481 -a 0 -x {9.0 10.0 1245 ------- null} - -t 1.42189 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2481 -a 0 -x {9.0 10.0 1245 ------- null} h -t 1.42189 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2481 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.42192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2467 -a 0 -x {9.0 10.0 1238 ------- null} - -t 1.42192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2467 -a 0 -x {9.0 10.0 1238 ------- null} h -t 1.42192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2467 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.4221 -s 0 -d 9 -p ack -e 40 -c 0 -i 2474 -a 0 -x {10.0 9.0 1232 ------- null} - -t 1.4221 -s 0 -d 9 -p ack -e 40 -c 0 -i 2474 -a 0 -x {10.0 9.0 1232 ------- null} h -t 1.4221 -s 0 -d 9 -p ack -e 40 -c 0 -i 2474 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.42213 -s 10 -d 7 -p ack -e 40 -c 0 -i 2478 -a 0 -x {10.0 9.0 1234 ------- null} + -t 1.42213 -s 7 -d 0 -p ack -e 40 -c 0 -i 2478 -a 0 -x {10.0 9.0 1234 ------- null} h -t 1.42213 -s 7 -d 8 -p ack -e 40 -c 0 -i 2478 -a 0 -x {10.0 9.0 1234 ------- null} r -t 1.42242 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2477 -a 0 -x {9.0 10.0 1243 ------- null} + -t 1.42242 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2477 -a 0 -x {9.0 10.0 1243 ------- null} h -t 1.42242 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2477 -a 0 -x {9.0 10.0 1243 ------- null} r -t 1.42254 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2463 -a 0 -x {9.0 10.0 1236 ------- null} + -t 1.42254 -s 10 -d 7 -p ack -e 40 -c 0 -i 2482 -a 0 -x {10.0 9.0 1236 ------- null} - -t 1.42254 -s 10 -d 7 -p ack -e 40 -c 0 -i 2482 -a 0 -x {10.0 9.0 1236 ------- null} h -t 1.42254 -s 10 -d 7 -p ack -e 40 -c 0 -i 2482 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.42301 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2469 -a 0 -x {9.0 10.0 1239 ------- null} - -t 1.42301 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2469 -a 0 -x {9.0 10.0 1239 ------- null} h -t 1.42301 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2469 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.42301 -s 0 -d 9 -p ack -e 40 -c 0 -i 2472 -a 0 -x {10.0 9.0 1231 ------- null} + -t 1.42301 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2483 -a 0 -x {9.0 10.0 1246 ------- null} - -t 1.42301 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2483 -a 0 -x {9.0 10.0 1246 ------- null} h -t 1.42301 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2483 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.42323 -s 0 -d 9 -p ack -e 40 -c 0 -i 2476 -a 0 -x {10.0 9.0 1233 ------- null} - -t 1.42323 -s 0 -d 9 -p ack -e 40 -c 0 -i 2476 -a 0 -x {10.0 9.0 1233 ------- null} h -t 1.42323 -s 0 -d 9 -p ack -e 40 -c 0 -i 2476 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.42349 -s 10 -d 7 -p ack -e 40 -c 0 -i 2480 -a 0 -x {10.0 9.0 1235 ------- null} + -t 1.42349 -s 7 -d 0 -p ack -e 40 -c 0 -i 2480 -a 0 -x {10.0 9.0 1235 ------- null} h -t 1.42349 -s 7 -d 8 -p ack -e 40 -c 0 -i 2480 -a 0 -x {10.0 9.0 1235 ------- null} r -t 1.42363 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2465 -a 0 -x {9.0 10.0 1237 ------- null} + -t 1.42363 -s 10 -d 7 -p ack -e 40 -c 0 -i 2484 -a 0 -x {10.0 9.0 1237 ------- null} - -t 1.42363 -s 10 -d 7 -p ack -e 40 -c 0 -i 2484 -a 0 -x {10.0 9.0 1237 ------- null} h -t 1.42363 -s 10 -d 7 -p ack -e 40 -c 0 -i 2484 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.4237 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2479 -a 0 -x {9.0 10.0 1244 ------- null} + -t 1.4237 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2479 -a 0 -x {9.0 10.0 1244 ------- null} h -t 1.4237 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2479 -a 0 -x {9.0 10.0 1244 ------- null} + -t 1.4241 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2471 -a 0 -x {9.0 10.0 1240 ------- null} - -t 1.4241 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2471 -a 0 -x {9.0 10.0 1240 ------- null} h -t 1.4241 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2471 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.42413 -s 0 -d 9 -p ack -e 40 -c 0 -i 2474 -a 0 -x {10.0 9.0 1232 ------- null} + -t 1.42413 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2485 -a 0 -x {9.0 10.0 1247 ------- null} - -t 1.42413 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2485 -a 0 -x {9.0 10.0 1247 ------- null} h -t 1.42413 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2485 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.42437 -s 0 -d 9 -p ack -e 40 -c 0 -i 2478 -a 0 -x {10.0 9.0 1234 ------- null} - -t 1.42437 -s 0 -d 9 -p ack -e 40 -c 0 -i 2478 -a 0 -x {10.0 9.0 1234 ------- null} h -t 1.42437 -s 0 -d 9 -p ack -e 40 -c 0 -i 2478 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.42458 -s 10 -d 7 -p ack -e 40 -c 0 -i 2482 -a 0 -x {10.0 9.0 1236 ------- null} + -t 1.42458 -s 7 -d 0 -p ack -e 40 -c 0 -i 2482 -a 0 -x {10.0 9.0 1236 ------- null} h -t 1.42458 -s 7 -d 8 -p ack -e 40 -c 0 -i 2482 -a 0 -x {10.0 9.0 1236 ------- null} r -t 1.42469 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2481 -a 0 -x {9.0 10.0 1245 ------- null} + -t 1.42469 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2481 -a 0 -x {9.0 10.0 1245 ------- null} h -t 1.42469 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2481 -a 0 -x {9.0 10.0 1245 ------- null} r -t 1.42472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2467 -a 0 -x {9.0 10.0 1238 ------- null} + -t 1.42472 -s 10 -d 7 -p ack -e 40 -c 0 -i 2486 -a 0 -x {10.0 9.0 1238 ------- null} - -t 1.42472 -s 10 -d 7 -p ack -e 40 -c 0 -i 2486 -a 0 -x {10.0 9.0 1238 ------- null} h -t 1.42472 -s 10 -d 7 -p ack -e 40 -c 0 -i 2486 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.42526 -s 0 -d 9 -p ack -e 40 -c 0 -i 2476 -a 0 -x {10.0 9.0 1233 ------- null} + -t 1.42526 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2487 -a 0 -x {9.0 10.0 1248 ------- null} - -t 1.42526 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2487 -a 0 -x {9.0 10.0 1248 ------- null} h -t 1.42526 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2487 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.42533 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2473 -a 0 -x {9.0 10.0 1241 ------- null} - -t 1.42533 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2473 -a 0 -x {9.0 10.0 1241 ------- null} h -t 1.42533 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2473 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.42563 -s 0 -d 9 -p ack -e 40 -c 0 -i 2480 -a 0 -x {10.0 9.0 1235 ------- null} - -t 1.42563 -s 0 -d 9 -p ack -e 40 -c 0 -i 2480 -a 0 -x {10.0 9.0 1235 ------- null} h -t 1.42563 -s 0 -d 9 -p ack -e 40 -c 0 -i 2480 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.42566 -s 10 -d 7 -p ack -e 40 -c 0 -i 2484 -a 0 -x {10.0 9.0 1237 ------- null} + -t 1.42566 -s 7 -d 0 -p ack -e 40 -c 0 -i 2484 -a 0 -x {10.0 9.0 1237 ------- null} h -t 1.42566 -s 7 -d 8 -p ack -e 40 -c 0 -i 2484 -a 0 -x {10.0 9.0 1237 ------- null} r -t 1.42581 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2469 -a 0 -x {9.0 10.0 1239 ------- null} + -t 1.42581 -s 10 -d 7 -p ack -e 40 -c 0 -i 2488 -a 0 -x {10.0 9.0 1239 ------- null} - -t 1.42581 -s 10 -d 7 -p ack -e 40 -c 0 -i 2488 -a 0 -x {10.0 9.0 1239 ------- null} h -t 1.42581 -s 10 -d 7 -p ack -e 40 -c 0 -i 2488 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.42581 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2483 -a 0 -x {9.0 10.0 1246 ------- null} + -t 1.42581 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2483 -a 0 -x {9.0 10.0 1246 ------- null} h -t 1.42581 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2483 -a 0 -x {9.0 10.0 1246 ------- null} r -t 1.4264 -s 0 -d 9 -p ack -e 40 -c 0 -i 2478 -a 0 -x {10.0 9.0 1234 ------- null} + -t 1.4264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2489 -a 0 -x {9.0 10.0 1249 ------- null} - -t 1.4264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2489 -a 0 -x {9.0 10.0 1249 ------- null} h -t 1.4264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2489 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.4265 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2475 -a 0 -x {9.0 10.0 1242 ------- null} - -t 1.4265 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2475 -a 0 -x {9.0 10.0 1242 ------- null} h -t 1.4265 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2475 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.42666 -s 0 -d 9 -p ack -e 40 -c 0 -i 2482 -a 0 -x {10.0 9.0 1236 ------- null} - -t 1.42666 -s 0 -d 9 -p ack -e 40 -c 0 -i 2482 -a 0 -x {10.0 9.0 1236 ------- null} h -t 1.42666 -s 0 -d 9 -p ack -e 40 -c 0 -i 2482 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.42675 -s 10 -d 7 -p ack -e 40 -c 0 -i 2486 -a 0 -x {10.0 9.0 1238 ------- null} + -t 1.42675 -s 7 -d 0 -p ack -e 40 -c 0 -i 2486 -a 0 -x {10.0 9.0 1238 ------- null} h -t 1.42675 -s 7 -d 8 -p ack -e 40 -c 0 -i 2486 -a 0 -x {10.0 9.0 1238 ------- null} r -t 1.4269 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2471 -a 0 -x {9.0 10.0 1240 ------- null} + -t 1.4269 -s 10 -d 7 -p ack -e 40 -c 0 -i 2490 -a 0 -x {10.0 9.0 1240 ------- null} - -t 1.4269 -s 10 -d 7 -p ack -e 40 -c 0 -i 2490 -a 0 -x {10.0 9.0 1240 ------- null} h -t 1.4269 -s 10 -d 7 -p ack -e 40 -c 0 -i 2490 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.42693 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2485 -a 0 -x {9.0 10.0 1247 ------- null} + -t 1.42693 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2485 -a 0 -x {9.0 10.0 1247 ------- null} h -t 1.42693 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2485 -a 0 -x {9.0 10.0 1247 ------- null} + -t 1.42758 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2477 -a 0 -x {9.0 10.0 1243 ------- null} - -t 1.42758 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2477 -a 0 -x {9.0 10.0 1243 ------- null} h -t 1.42758 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2477 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.42766 -s 0 -d 9 -p ack -e 40 -c 0 -i 2480 -a 0 -x {10.0 9.0 1235 ------- null} + -t 1.42766 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2491 -a 0 -x {9.0 10.0 1250 ------- null} - -t 1.42766 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2491 -a 0 -x {9.0 10.0 1250 ------- null} h -t 1.42766 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2491 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.42784 -s 10 -d 7 -p ack -e 40 -c 0 -i 2488 -a 0 -x {10.0 9.0 1239 ------- null} + -t 1.42784 -s 7 -d 0 -p ack -e 40 -c 0 -i 2488 -a 0 -x {10.0 9.0 1239 ------- null} h -t 1.42784 -s 7 -d 8 -p ack -e 40 -c 0 -i 2488 -a 0 -x {10.0 9.0 1239 ------- null} + -t 1.42789 -s 0 -d 9 -p ack -e 40 -c 0 -i 2484 -a 0 -x {10.0 9.0 1237 ------- null} - -t 1.42789 -s 0 -d 9 -p ack -e 40 -c 0 -i 2484 -a 0 -x {10.0 9.0 1237 ------- null} h -t 1.42789 -s 0 -d 9 -p ack -e 40 -c 0 -i 2484 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.42806 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2487 -a 0 -x {9.0 10.0 1248 ------- null} + -t 1.42806 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2487 -a 0 -x {9.0 10.0 1248 ------- null} h -t 1.42806 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2487 -a 0 -x {9.0 10.0 1248 ------- null} r -t 1.42813 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2473 -a 0 -x {9.0 10.0 1241 ------- null} + -t 1.42813 -s 10 -d 7 -p ack -e 40 -c 0 -i 2492 -a 0 -x {10.0 9.0 1241 ------- null} - -t 1.42813 -s 10 -d 7 -p ack -e 40 -c 0 -i 2492 -a 0 -x {10.0 9.0 1241 ------- null} h -t 1.42813 -s 10 -d 7 -p ack -e 40 -c 0 -i 2492 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.42869 -s 0 -d 9 -p ack -e 40 -c 0 -i 2482 -a 0 -x {10.0 9.0 1236 ------- null} + -t 1.42869 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2493 -a 0 -x {9.0 10.0 1251 ------- null} - -t 1.42869 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2493 -a 0 -x {9.0 10.0 1251 ------- null} h -t 1.42869 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2493 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.42888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2479 -a 0 -x {9.0 10.0 1244 ------- null} - -t 1.42888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2479 -a 0 -x {9.0 10.0 1244 ------- null} h -t 1.42888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2479 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.42893 -s 10 -d 7 -p ack -e 40 -c 0 -i 2490 -a 0 -x {10.0 9.0 1240 ------- null} + -t 1.42893 -s 7 -d 0 -p ack -e 40 -c 0 -i 2490 -a 0 -x {10.0 9.0 1240 ------- null} h -t 1.42893 -s 7 -d 8 -p ack -e 40 -c 0 -i 2490 -a 0 -x {10.0 9.0 1240 ------- null} + -t 1.42907 -s 0 -d 9 -p ack -e 40 -c 0 -i 2486 -a 0 -x {10.0 9.0 1238 ------- null} - -t 1.42907 -s 0 -d 9 -p ack -e 40 -c 0 -i 2486 -a 0 -x {10.0 9.0 1238 ------- null} h -t 1.42907 -s 0 -d 9 -p ack -e 40 -c 0 -i 2486 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.4292 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2489 -a 0 -x {9.0 10.0 1249 ------- null} + -t 1.4292 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2489 -a 0 -x {9.0 10.0 1249 ------- null} h -t 1.4292 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2489 -a 0 -x {9.0 10.0 1249 ------- null} r -t 1.4293 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2475 -a 0 -x {9.0 10.0 1242 ------- null} + -t 1.4293 -s 10 -d 7 -p ack -e 40 -c 0 -i 2494 -a 0 -x {10.0 9.0 1242 ------- null} - -t 1.4293 -s 10 -d 7 -p ack -e 40 -c 0 -i 2494 -a 0 -x {10.0 9.0 1242 ------- null} h -t 1.4293 -s 10 -d 7 -p ack -e 40 -c 0 -i 2494 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.42992 -s 0 -d 9 -p ack -e 40 -c 0 -i 2484 -a 0 -x {10.0 9.0 1237 ------- null} + -t 1.42992 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2495 -a 0 -x {9.0 10.0 1252 ------- null} - -t 1.42992 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2495 -a 0 -x {9.0 10.0 1252 ------- null} h -t 1.42992 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2495 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.42997 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2481 -a 0 -x {9.0 10.0 1245 ------- null} - -t 1.42997 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2481 -a 0 -x {9.0 10.0 1245 ------- null} h -t 1.42997 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2481 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.43011 -s 0 -d 9 -p ack -e 40 -c 0 -i 2488 -a 0 -x {10.0 9.0 1239 ------- null} - -t 1.43011 -s 0 -d 9 -p ack -e 40 -c 0 -i 2488 -a 0 -x {10.0 9.0 1239 ------- null} h -t 1.43011 -s 0 -d 9 -p ack -e 40 -c 0 -i 2488 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.43016 -s 10 -d 7 -p ack -e 40 -c 0 -i 2492 -a 0 -x {10.0 9.0 1241 ------- null} + -t 1.43016 -s 7 -d 0 -p ack -e 40 -c 0 -i 2492 -a 0 -x {10.0 9.0 1241 ------- null} h -t 1.43016 -s 7 -d 8 -p ack -e 40 -c 0 -i 2492 -a 0 -x {10.0 9.0 1241 ------- null} r -t 1.43038 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2477 -a 0 -x {9.0 10.0 1243 ------- null} + -t 1.43038 -s 10 -d 7 -p ack -e 40 -c 0 -i 2496 -a 0 -x {10.0 9.0 1243 ------- null} - -t 1.43038 -s 10 -d 7 -p ack -e 40 -c 0 -i 2496 -a 0 -x {10.0 9.0 1243 ------- null} h -t 1.43038 -s 10 -d 7 -p ack -e 40 -c 0 -i 2496 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.43046 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2491 -a 0 -x {9.0 10.0 1250 ------- null} + -t 1.43046 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2491 -a 0 -x {9.0 10.0 1250 ------- null} h -t 1.43046 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2491 -a 0 -x {9.0 10.0 1250 ------- null} + -t 1.43106 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2483 -a 0 -x {9.0 10.0 1246 ------- null} - -t 1.43106 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2483 -a 0 -x {9.0 10.0 1246 ------- null} h -t 1.43106 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2483 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.4311 -s 0 -d 9 -p ack -e 40 -c 0 -i 2486 -a 0 -x {10.0 9.0 1238 ------- null} + -t 1.4311 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2497 -a 0 -x {9.0 10.0 1253 ------- null} - -t 1.4311 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2497 -a 0 -x {9.0 10.0 1253 ------- null} h -t 1.4311 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2497 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.43131 -s 0 -d 9 -p ack -e 40 -c 0 -i 2490 -a 0 -x {10.0 9.0 1240 ------- null} - -t 1.43131 -s 0 -d 9 -p ack -e 40 -c 0 -i 2490 -a 0 -x {10.0 9.0 1240 ------- null} h -t 1.43131 -s 0 -d 9 -p ack -e 40 -c 0 -i 2490 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.43133 -s 10 -d 7 -p ack -e 40 -c 0 -i 2494 -a 0 -x {10.0 9.0 1242 ------- null} + -t 1.43133 -s 7 -d 0 -p ack -e 40 -c 0 -i 2494 -a 0 -x {10.0 9.0 1242 ------- null} h -t 1.43133 -s 7 -d 8 -p ack -e 40 -c 0 -i 2494 -a 0 -x {10.0 9.0 1242 ------- null} r -t 1.43149 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2493 -a 0 -x {9.0 10.0 1251 ------- null} + -t 1.43149 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2493 -a 0 -x {9.0 10.0 1251 ------- null} h -t 1.43149 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2493 -a 0 -x {9.0 10.0 1251 ------- null} r -t 1.43168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2479 -a 0 -x {9.0 10.0 1244 ------- null} + -t 1.43168 -s 10 -d 7 -p ack -e 40 -c 0 -i 2498 -a 0 -x {10.0 9.0 1244 ------- null} - -t 1.43168 -s 10 -d 7 -p ack -e 40 -c 0 -i 2498 -a 0 -x {10.0 9.0 1244 ------- null} h -t 1.43168 -s 10 -d 7 -p ack -e 40 -c 0 -i 2498 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.43214 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2485 -a 0 -x {9.0 10.0 1247 ------- null} - -t 1.43214 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2485 -a 0 -x {9.0 10.0 1247 ------- null} h -t 1.43214 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2485 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.43214 -s 0 -d 9 -p ack -e 40 -c 0 -i 2488 -a 0 -x {10.0 9.0 1239 ------- null} + -t 1.43214 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2499 -a 0 -x {9.0 10.0 1254 ------- null} - -t 1.43214 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2499 -a 0 -x {9.0 10.0 1254 ------- null} h -t 1.43214 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2499 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.43224 -s 0 -d 9 -p ack -e 40 -c 0 -i 2492 -a 0 -x {10.0 9.0 1241 ------- null} - -t 1.43224 -s 0 -d 9 -p ack -e 40 -c 0 -i 2492 -a 0 -x {10.0 9.0 1241 ------- null} h -t 1.43224 -s 0 -d 9 -p ack -e 40 -c 0 -i 2492 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.43242 -s 10 -d 7 -p ack -e 40 -c 0 -i 2496 -a 0 -x {10.0 9.0 1243 ------- null} + -t 1.43242 -s 7 -d 0 -p ack -e 40 -c 0 -i 2496 -a 0 -x {10.0 9.0 1243 ------- null} h -t 1.43242 -s 7 -d 8 -p ack -e 40 -c 0 -i 2496 -a 0 -x {10.0 9.0 1243 ------- null} r -t 1.43272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2495 -a 0 -x {9.0 10.0 1252 ------- null} + -t 1.43272 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2495 -a 0 -x {9.0 10.0 1252 ------- null} h -t 1.43272 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2495 -a 0 -x {9.0 10.0 1252 ------- null} r -t 1.43277 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2481 -a 0 -x {9.0 10.0 1245 ------- null} + -t 1.43277 -s 10 -d 7 -p ack -e 40 -c 0 -i 2500 -a 0 -x {10.0 9.0 1245 ------- null} - -t 1.43277 -s 10 -d 7 -p ack -e 40 -c 0 -i 2500 -a 0 -x {10.0 9.0 1245 ------- null} h -t 1.43277 -s 10 -d 7 -p ack -e 40 -c 0 -i 2500 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.43323 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2487 -a 0 -x {9.0 10.0 1248 ------- null} - -t 1.43323 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2487 -a 0 -x {9.0 10.0 1248 ------- null} h -t 1.43323 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2487 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.43334 -s 0 -d 9 -p ack -e 40 -c 0 -i 2490 -a 0 -x {10.0 9.0 1240 ------- null} + -t 1.43334 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2501 -a 0 -x {9.0 10.0 1255 ------- null} - -t 1.43334 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2501 -a 0 -x {9.0 10.0 1255 ------- null} h -t 1.43334 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2501 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.43347 -s 0 -d 9 -p ack -e 40 -c 0 -i 2494 -a 0 -x {10.0 9.0 1242 ------- null} - -t 1.43347 -s 0 -d 9 -p ack -e 40 -c 0 -i 2494 -a 0 -x {10.0 9.0 1242 ------- null} h -t 1.43347 -s 0 -d 9 -p ack -e 40 -c 0 -i 2494 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.43371 -s 10 -d 7 -p ack -e 40 -c 0 -i 2498 -a 0 -x {10.0 9.0 1244 ------- null} + -t 1.43371 -s 7 -d 0 -p ack -e 40 -c 0 -i 2498 -a 0 -x {10.0 9.0 1244 ------- null} h -t 1.43371 -s 7 -d 8 -p ack -e 40 -c 0 -i 2498 -a 0 -x {10.0 9.0 1244 ------- null} r -t 1.43386 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2483 -a 0 -x {9.0 10.0 1246 ------- null} + -t 1.43386 -s 10 -d 7 -p ack -e 40 -c 0 -i 2502 -a 0 -x {10.0 9.0 1246 ------- null} - -t 1.43386 -s 10 -d 7 -p ack -e 40 -c 0 -i 2502 -a 0 -x {10.0 9.0 1246 ------- null} h -t 1.43386 -s 10 -d 7 -p ack -e 40 -c 0 -i 2502 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.4339 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2497 -a 0 -x {9.0 10.0 1253 ------- null} + -t 1.4339 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2497 -a 0 -x {9.0 10.0 1253 ------- null} h -t 1.4339 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2497 -a 0 -x {9.0 10.0 1253 ------- null} r -t 1.43427 -s 0 -d 9 -p ack -e 40 -c 0 -i 2492 -a 0 -x {10.0 9.0 1241 ------- null} + -t 1.43427 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2503 -a 0 -x {9.0 10.0 1256 ------- null} - -t 1.43427 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2503 -a 0 -x {9.0 10.0 1256 ------- null} h -t 1.43427 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2503 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.43432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2489 -a 0 -x {9.0 10.0 1249 ------- null} - -t 1.43432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2489 -a 0 -x {9.0 10.0 1249 ------- null} h -t 1.43432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2489 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.43459 -s 0 -d 9 -p ack -e 40 -c 0 -i 2496 -a 0 -x {10.0 9.0 1243 ------- null} - -t 1.43459 -s 0 -d 9 -p ack -e 40 -c 0 -i 2496 -a 0 -x {10.0 9.0 1243 ------- null} h -t 1.43459 -s 0 -d 9 -p ack -e 40 -c 0 -i 2496 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.4348 -s 10 -d 7 -p ack -e 40 -c 0 -i 2500 -a 0 -x {10.0 9.0 1245 ------- null} + -t 1.4348 -s 7 -d 0 -p ack -e 40 -c 0 -i 2500 -a 0 -x {10.0 9.0 1245 ------- null} h -t 1.4348 -s 7 -d 8 -p ack -e 40 -c 0 -i 2500 -a 0 -x {10.0 9.0 1245 ------- null} r -t 1.43494 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2485 -a 0 -x {9.0 10.0 1247 ------- null} + -t 1.43494 -s 10 -d 7 -p ack -e 40 -c 0 -i 2504 -a 0 -x {10.0 9.0 1247 ------- null} - -t 1.43494 -s 10 -d 7 -p ack -e 40 -c 0 -i 2504 -a 0 -x {10.0 9.0 1247 ------- null} h -t 1.43494 -s 10 -d 7 -p ack -e 40 -c 0 -i 2504 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.43494 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2499 -a 0 -x {9.0 10.0 1254 ------- null} + -t 1.43494 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2499 -a 0 -x {9.0 10.0 1254 ------- null} h -t 1.43494 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2499 -a 0 -x {9.0 10.0 1254 ------- null} + -t 1.43549 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2491 -a 0 -x {9.0 10.0 1250 ------- null} - -t 1.43549 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2491 -a 0 -x {9.0 10.0 1250 ------- null} h -t 1.43549 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2491 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.4355 -s 0 -d 9 -p ack -e 40 -c 0 -i 2494 -a 0 -x {10.0 9.0 1242 ------- null} + -t 1.4355 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2505 -a 0 -x {9.0 10.0 1257 ------- null} - -t 1.4355 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2505 -a 0 -x {9.0 10.0 1257 ------- null} h -t 1.4355 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2505 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.4356 -s 0 -d 9 -p ack -e 40 -c 0 -i 2498 -a 0 -x {10.0 9.0 1244 ------- null} - -t 1.4356 -s 0 -d 9 -p ack -e 40 -c 0 -i 2498 -a 0 -x {10.0 9.0 1244 ------- null} h -t 1.4356 -s 0 -d 9 -p ack -e 40 -c 0 -i 2498 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.43589 -s 10 -d 7 -p ack -e 40 -c 0 -i 2502 -a 0 -x {10.0 9.0 1246 ------- null} + -t 1.43589 -s 7 -d 0 -p ack -e 40 -c 0 -i 2502 -a 0 -x {10.0 9.0 1246 ------- null} h -t 1.43589 -s 7 -d 8 -p ack -e 40 -c 0 -i 2502 -a 0 -x {10.0 9.0 1246 ------- null} r -t 1.43603 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2487 -a 0 -x {9.0 10.0 1248 ------- null} + -t 1.43603 -s 10 -d 7 -p ack -e 40 -c 0 -i 2506 -a 0 -x {10.0 9.0 1248 ------- null} - -t 1.43603 -s 10 -d 7 -p ack -e 40 -c 0 -i 2506 -a 0 -x {10.0 9.0 1248 ------- null} h -t 1.43603 -s 10 -d 7 -p ack -e 40 -c 0 -i 2506 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.43614 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2501 -a 0 -x {9.0 10.0 1255 ------- null} + -t 1.43614 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2501 -a 0 -x {9.0 10.0 1255 ------- null} h -t 1.43614 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2501 -a 0 -x {9.0 10.0 1255 ------- null} + -t 1.43658 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2493 -a 0 -x {9.0 10.0 1251 ------- null} - -t 1.43658 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2493 -a 0 -x {9.0 10.0 1251 ------- null} h -t 1.43658 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2493 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.43662 -s 0 -d 9 -p ack -e 40 -c 0 -i 2496 -a 0 -x {10.0 9.0 1243 ------- null} + -t 1.43662 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2507 -a 0 -x {9.0 10.0 1258 ------- null} - -t 1.43662 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2507 -a 0 -x {9.0 10.0 1258 ------- null} h -t 1.43662 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2507 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.4368 -s 0 -d 9 -p ack -e 40 -c 0 -i 2500 -a 0 -x {10.0 9.0 1245 ------- null} - -t 1.4368 -s 0 -d 9 -p ack -e 40 -c 0 -i 2500 -a 0 -x {10.0 9.0 1245 ------- null} h -t 1.4368 -s 0 -d 9 -p ack -e 40 -c 0 -i 2500 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.43698 -s 10 -d 7 -p ack -e 40 -c 0 -i 2504 -a 0 -x {10.0 9.0 1247 ------- null} + -t 1.43698 -s 7 -d 0 -p ack -e 40 -c 0 -i 2504 -a 0 -x {10.0 9.0 1247 ------- null} h -t 1.43698 -s 7 -d 8 -p ack -e 40 -c 0 -i 2504 -a 0 -x {10.0 9.0 1247 ------- null} r -t 1.43707 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2503 -a 0 -x {9.0 10.0 1256 ------- null} + -t 1.43707 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2503 -a 0 -x {9.0 10.0 1256 ------- null} h -t 1.43707 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2503 -a 0 -x {9.0 10.0 1256 ------- null} r -t 1.43712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2489 -a 0 -x {9.0 10.0 1249 ------- null} + -t 1.43712 -s 10 -d 7 -p ack -e 40 -c 0 -i 2508 -a 0 -x {10.0 9.0 1249 ------- null} - -t 1.43712 -s 10 -d 7 -p ack -e 40 -c 0 -i 2508 -a 0 -x {10.0 9.0 1249 ------- null} h -t 1.43712 -s 10 -d 7 -p ack -e 40 -c 0 -i 2508 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.43763 -s 0 -d 9 -p ack -e 40 -c 0 -i 2498 -a 0 -x {10.0 9.0 1244 ------- null} + -t 1.43763 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2509 -a 0 -x {9.0 10.0 1259 ------- null} - -t 1.43763 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2509 -a 0 -x {9.0 10.0 1259 ------- null} h -t 1.43763 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2509 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.43766 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2495 -a 0 -x {9.0 10.0 1252 ------- null} - -t 1.43766 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2495 -a 0 -x {9.0 10.0 1252 ------- null} h -t 1.43766 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2495 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.43784 -s 0 -d 9 -p ack -e 40 -c 0 -i 2502 -a 0 -x {10.0 9.0 1246 ------- null} - -t 1.43784 -s 0 -d 9 -p ack -e 40 -c 0 -i 2502 -a 0 -x {10.0 9.0 1246 ------- null} h -t 1.43784 -s 0 -d 9 -p ack -e 40 -c 0 -i 2502 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.43806 -s 10 -d 7 -p ack -e 40 -c 0 -i 2506 -a 0 -x {10.0 9.0 1248 ------- null} + -t 1.43806 -s 7 -d 0 -p ack -e 40 -c 0 -i 2506 -a 0 -x {10.0 9.0 1248 ------- null} h -t 1.43806 -s 7 -d 8 -p ack -e 40 -c 0 -i 2506 -a 0 -x {10.0 9.0 1248 ------- null} r -t 1.43829 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2491 -a 0 -x {9.0 10.0 1250 ------- null} + -t 1.43829 -s 10 -d 7 -p ack -e 40 -c 0 -i 2510 -a 0 -x {10.0 9.0 1250 ------- null} - -t 1.43829 -s 10 -d 7 -p ack -e 40 -c 0 -i 2510 -a 0 -x {10.0 9.0 1250 ------- null} h -t 1.43829 -s 10 -d 7 -p ack -e 40 -c 0 -i 2510 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.4383 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2505 -a 0 -x {9.0 10.0 1257 ------- null} + -t 1.4383 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2505 -a 0 -x {9.0 10.0 1257 ------- null} h -t 1.4383 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2505 -a 0 -x {9.0 10.0 1257 ------- null} + -t 1.43875 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2497 -a 0 -x {9.0 10.0 1253 ------- null} - -t 1.43875 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2497 -a 0 -x {9.0 10.0 1253 ------- null} h -t 1.43875 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2497 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.43882 -s 0 -d 9 -p ack -e 40 -c 0 -i 2504 -a 0 -x {10.0 9.0 1247 ------- null} - -t 1.43882 -s 0 -d 9 -p ack -e 40 -c 0 -i 2504 -a 0 -x {10.0 9.0 1247 ------- null} h -t 1.43882 -s 0 -d 9 -p ack -e 40 -c 0 -i 2504 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.43883 -s 0 -d 9 -p ack -e 40 -c 0 -i 2500 -a 0 -x {10.0 9.0 1245 ------- null} + -t 1.43883 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2511 -a 0 -x {9.0 10.0 1260 ------- null} - -t 1.43883 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2511 -a 0 -x {9.0 10.0 1260 ------- null} h -t 1.43883 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2511 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.43915 -s 10 -d 7 -p ack -e 40 -c 0 -i 2508 -a 0 -x {10.0 9.0 1249 ------- null} + -t 1.43915 -s 7 -d 0 -p ack -e 40 -c 0 -i 2508 -a 0 -x {10.0 9.0 1249 ------- null} h -t 1.43915 -s 7 -d 8 -p ack -e 40 -c 0 -i 2508 -a 0 -x {10.0 9.0 1249 ------- null} r -t 1.43938 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2493 -a 0 -x {9.0 10.0 1251 ------- null} + -t 1.43938 -s 10 -d 7 -p ack -e 40 -c 0 -i 2512 -a 0 -x {10.0 9.0 1251 ------- null} - -t 1.43938 -s 10 -d 7 -p ack -e 40 -c 0 -i 2512 -a 0 -x {10.0 9.0 1251 ------- null} h -t 1.43938 -s 10 -d 7 -p ack -e 40 -c 0 -i 2512 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.43942 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2507 -a 0 -x {9.0 10.0 1258 ------- null} + -t 1.43942 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2507 -a 0 -x {9.0 10.0 1258 ------- null} h -t 1.43942 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2507 -a 0 -x {9.0 10.0 1258 ------- null} + -t 1.43984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2499 -a 0 -x {9.0 10.0 1254 ------- null} - -t 1.43984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2499 -a 0 -x {9.0 10.0 1254 ------- null} h -t 1.43984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2499 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.43987 -s 0 -d 9 -p ack -e 40 -c 0 -i 2502 -a 0 -x {10.0 9.0 1246 ------- null} + -t 1.43987 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2513 -a 0 -x {9.0 10.0 1261 ------- null} - -t 1.43987 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2513 -a 0 -x {9.0 10.0 1261 ------- null} h -t 1.43987 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2513 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.44013 -s 0 -d 9 -p ack -e 40 -c 0 -i 2506 -a 0 -x {10.0 9.0 1248 ------- null} - -t 1.44013 -s 0 -d 9 -p ack -e 40 -c 0 -i 2506 -a 0 -x {10.0 9.0 1248 ------- null} h -t 1.44013 -s 0 -d 9 -p ack -e 40 -c 0 -i 2506 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.44032 -s 10 -d 7 -p ack -e 40 -c 0 -i 2510 -a 0 -x {10.0 9.0 1250 ------- null} + -t 1.44032 -s 7 -d 0 -p ack -e 40 -c 0 -i 2510 -a 0 -x {10.0 9.0 1250 ------- null} h -t 1.44032 -s 7 -d 8 -p ack -e 40 -c 0 -i 2510 -a 0 -x {10.0 9.0 1250 ------- null} r -t 1.44043 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2509 -a 0 -x {9.0 10.0 1259 ------- null} + -t 1.44043 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2509 -a 0 -x {9.0 10.0 1259 ------- null} h -t 1.44043 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2509 -a 0 -x {9.0 10.0 1259 ------- null} r -t 1.44046 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2495 -a 0 -x {9.0 10.0 1252 ------- null} + -t 1.44046 -s 10 -d 7 -p ack -e 40 -c 0 -i 2514 -a 0 -x {10.0 9.0 1252 ------- null} - -t 1.44046 -s 10 -d 7 -p ack -e 40 -c 0 -i 2514 -a 0 -x {10.0 9.0 1252 ------- null} h -t 1.44046 -s 10 -d 7 -p ack -e 40 -c 0 -i 2514 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.44085 -s 0 -d 9 -p ack -e 40 -c 0 -i 2504 -a 0 -x {10.0 9.0 1247 ------- null} + -t 1.44085 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2515 -a 0 -x {9.0 10.0 1262 ------- null} - -t 1.44085 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2515 -a 0 -x {9.0 10.0 1262 ------- null} h -t 1.44085 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2515 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.44096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2501 -a 0 -x {9.0 10.0 1255 ------- null} - -t 1.44096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2501 -a 0 -x {9.0 10.0 1255 ------- null} h -t 1.44096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2501 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.44109 -s 0 -d 9 -p ack -e 40 -c 0 -i 2508 -a 0 -x {10.0 9.0 1249 ------- null} - -t 1.44109 -s 0 -d 9 -p ack -e 40 -c 0 -i 2508 -a 0 -x {10.0 9.0 1249 ------- null} h -t 1.44109 -s 0 -d 9 -p ack -e 40 -c 0 -i 2508 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.44141 -s 10 -d 7 -p ack -e 40 -c 0 -i 2512 -a 0 -x {10.0 9.0 1251 ------- null} + -t 1.44141 -s 7 -d 0 -p ack -e 40 -c 0 -i 2512 -a 0 -x {10.0 9.0 1251 ------- null} h -t 1.44141 -s 7 -d 8 -p ack -e 40 -c 0 -i 2512 -a 0 -x {10.0 9.0 1251 ------- null} r -t 1.44155 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2497 -a 0 -x {9.0 10.0 1253 ------- null} + -t 1.44155 -s 10 -d 7 -p ack -e 40 -c 0 -i 2516 -a 0 -x {10.0 9.0 1253 ------- null} - -t 1.44155 -s 10 -d 7 -p ack -e 40 -c 0 -i 2516 -a 0 -x {10.0 9.0 1253 ------- null} h -t 1.44155 -s 10 -d 7 -p ack -e 40 -c 0 -i 2516 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.44163 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2511 -a 0 -x {9.0 10.0 1260 ------- null} + -t 1.44163 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2511 -a 0 -x {9.0 10.0 1260 ------- null} h -t 1.44163 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2511 -a 0 -x {9.0 10.0 1260 ------- null} + -t 1.44205 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2503 -a 0 -x {9.0 10.0 1256 ------- null} - -t 1.44205 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2503 -a 0 -x {9.0 10.0 1256 ------- null} h -t 1.44205 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2503 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.44216 -s 0 -d 9 -p ack -e 40 -c 0 -i 2506 -a 0 -x {10.0 9.0 1248 ------- null} + -t 1.44216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2517 -a 0 -x {9.0 10.0 1263 ------- null} - -t 1.44216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2517 -a 0 -x {9.0 10.0 1263 ------- null} h -t 1.44216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2517 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.44235 -s 0 -d 9 -p ack -e 40 -c 0 -i 2510 -a 0 -x {10.0 9.0 1250 ------- null} - -t 1.44235 -s 0 -d 9 -p ack -e 40 -c 0 -i 2510 -a 0 -x {10.0 9.0 1250 ------- null} h -t 1.44235 -s 0 -d 9 -p ack -e 40 -c 0 -i 2510 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.4425 -s 10 -d 7 -p ack -e 40 -c 0 -i 2514 -a 0 -x {10.0 9.0 1252 ------- null} + -t 1.4425 -s 7 -d 0 -p ack -e 40 -c 0 -i 2514 -a 0 -x {10.0 9.0 1252 ------- null} h -t 1.4425 -s 7 -d 8 -p ack -e 40 -c 0 -i 2514 -a 0 -x {10.0 9.0 1252 ------- null} r -t 1.44264 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2499 -a 0 -x {9.0 10.0 1254 ------- null} + -t 1.44264 -s 10 -d 7 -p ack -e 40 -c 0 -i 2518 -a 0 -x {10.0 9.0 1254 ------- null} - -t 1.44264 -s 10 -d 7 -p ack -e 40 -c 0 -i 2518 -a 0 -x {10.0 9.0 1254 ------- null} h -t 1.44264 -s 10 -d 7 -p ack -e 40 -c 0 -i 2518 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.44267 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2513 -a 0 -x {9.0 10.0 1261 ------- null} + -t 1.44267 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2513 -a 0 -x {9.0 10.0 1261 ------- null} h -t 1.44267 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2513 -a 0 -x {9.0 10.0 1261 ------- null} r -t 1.44312 -s 0 -d 9 -p ack -e 40 -c 0 -i 2508 -a 0 -x {10.0 9.0 1249 ------- null} + -t 1.44312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2519 -a 0 -x {9.0 10.0 1264 ------- null} - -t 1.44312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2519 -a 0 -x {9.0 10.0 1264 ------- null} h -t 1.44312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2519 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.44341 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2505 -a 0 -x {9.0 10.0 1257 ------- null} - -t 1.44341 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2505 -a 0 -x {9.0 10.0 1257 ------- null} h -t 1.44341 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2505 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.44358 -s 10 -d 7 -p ack -e 40 -c 0 -i 2516 -a 0 -x {10.0 9.0 1253 ------- null} + -t 1.44358 -s 7 -d 0 -p ack -e 40 -c 0 -i 2516 -a 0 -x {10.0 9.0 1253 ------- null} h -t 1.44358 -s 7 -d 8 -p ack -e 40 -c 0 -i 2516 -a 0 -x {10.0 9.0 1253 ------- null} r -t 1.44365 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2515 -a 0 -x {9.0 10.0 1262 ------- null} + -t 1.44365 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2515 -a 0 -x {9.0 10.0 1262 ------- null} h -t 1.44365 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2515 -a 0 -x {9.0 10.0 1262 ------- null} + -t 1.44371 -s 0 -d 9 -p ack -e 40 -c 0 -i 2512 -a 0 -x {10.0 9.0 1251 ------- null} - -t 1.44371 -s 0 -d 9 -p ack -e 40 -c 0 -i 2512 -a 0 -x {10.0 9.0 1251 ------- null} h -t 1.44371 -s 0 -d 9 -p ack -e 40 -c 0 -i 2512 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.44376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2501 -a 0 -x {9.0 10.0 1255 ------- null} + -t 1.44376 -s 10 -d 7 -p ack -e 40 -c 0 -i 2520 -a 0 -x {10.0 9.0 1255 ------- null} - -t 1.44376 -s 10 -d 7 -p ack -e 40 -c 0 -i 2520 -a 0 -x {10.0 9.0 1255 ------- null} h -t 1.44376 -s 10 -d 7 -p ack -e 40 -c 0 -i 2520 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.44438 -s 0 -d 9 -p ack -e 40 -c 0 -i 2510 -a 0 -x {10.0 9.0 1250 ------- null} + -t 1.44438 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2521 -a 0 -x {9.0 10.0 1265 ------- null} - -t 1.44438 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2521 -a 0 -x {9.0 10.0 1265 ------- null} h -t 1.44438 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2521 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.44467 -s 10 -d 7 -p ack -e 40 -c 0 -i 2518 -a 0 -x {10.0 9.0 1254 ------- null} + -t 1.44467 -s 7 -d 0 -p ack -e 40 -c 0 -i 2518 -a 0 -x {10.0 9.0 1254 ------- null} h -t 1.44467 -s 7 -d 8 -p ack -e 40 -c 0 -i 2518 -a 0 -x {10.0 9.0 1254 ------- null} + -t 1.4447 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2507 -a 0 -x {9.0 10.0 1258 ------- null} - -t 1.4447 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2507 -a 0 -x {9.0 10.0 1258 ------- null} h -t 1.4447 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2507 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.44485 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2503 -a 0 -x {9.0 10.0 1256 ------- null} + -t 1.44485 -s 10 -d 7 -p ack -e 40 -c 0 -i 2522 -a 0 -x {10.0 9.0 1256 ------- null} - -t 1.44485 -s 10 -d 7 -p ack -e 40 -c 0 -i 2522 -a 0 -x {10.0 9.0 1256 ------- null} h -t 1.44485 -s 10 -d 7 -p ack -e 40 -c 0 -i 2522 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.4449 -s 0 -d 9 -p ack -e 40 -c 0 -i 2514 -a 0 -x {10.0 9.0 1252 ------- null} - -t 1.4449 -s 0 -d 9 -p ack -e 40 -c 0 -i 2514 -a 0 -x {10.0 9.0 1252 ------- null} h -t 1.4449 -s 0 -d 9 -p ack -e 40 -c 0 -i 2514 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.44496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2517 -a 0 -x {9.0 10.0 1263 ------- null} + -t 1.44496 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2517 -a 0 -x {9.0 10.0 1263 ------- null} h -t 1.44496 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2517 -a 0 -x {9.0 10.0 1263 ------- null} r -t 1.44574 -s 0 -d 9 -p ack -e 40 -c 0 -i 2512 -a 0 -x {10.0 9.0 1251 ------- null} + -t 1.44574 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2523 -a 0 -x {9.0 10.0 1266 ------- null} - -t 1.44574 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2523 -a 0 -x {9.0 10.0 1266 ------- null} h -t 1.44574 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2523 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.44579 -s 10 -d 7 -p ack -e 40 -c 0 -i 2520 -a 0 -x {10.0 9.0 1255 ------- null} + -t 1.44579 -s 7 -d 0 -p ack -e 40 -c 0 -i 2520 -a 0 -x {10.0 9.0 1255 ------- null} h -t 1.44579 -s 7 -d 8 -p ack -e 40 -c 0 -i 2520 -a 0 -x {10.0 9.0 1255 ------- null} + -t 1.44579 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2509 -a 0 -x {9.0 10.0 1259 ------- null} - -t 1.44579 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2509 -a 0 -x {9.0 10.0 1259 ------- null} h -t 1.44579 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2509 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.44592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2519 -a 0 -x {9.0 10.0 1264 ------- null} + -t 1.44592 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2519 -a 0 -x {9.0 10.0 1264 ------- null} h -t 1.44592 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2519 -a 0 -x {9.0 10.0 1264 ------- null} + -t 1.44598 -s 0 -d 9 -p ack -e 40 -c 0 -i 2516 -a 0 -x {10.0 9.0 1253 ------- null} - -t 1.44598 -s 0 -d 9 -p ack -e 40 -c 0 -i 2516 -a 0 -x {10.0 9.0 1253 ------- null} h -t 1.44598 -s 0 -d 9 -p ack -e 40 -c 0 -i 2516 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.44621 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2505 -a 0 -x {9.0 10.0 1257 ------- null} + -t 1.44621 -s 10 -d 7 -p ack -e 40 -c 0 -i 2524 -a 0 -x {10.0 9.0 1257 ------- null} - -t 1.44621 -s 10 -d 7 -p ack -e 40 -c 0 -i 2524 -a 0 -x {10.0 9.0 1257 ------- null} h -t 1.44621 -s 10 -d 7 -p ack -e 40 -c 0 -i 2524 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.44688 -s 10 -d 7 -p ack -e 40 -c 0 -i 2522 -a 0 -x {10.0 9.0 1256 ------- null} + -t 1.44688 -s 7 -d 0 -p ack -e 40 -c 0 -i 2522 -a 0 -x {10.0 9.0 1256 ------- null} h -t 1.44688 -s 7 -d 8 -p ack -e 40 -c 0 -i 2522 -a 0 -x {10.0 9.0 1256 ------- null} + -t 1.44688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2511 -a 0 -x {9.0 10.0 1260 ------- null} - -t 1.44688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2511 -a 0 -x {9.0 10.0 1260 ------- null} h -t 1.44688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2511 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.44693 -s 0 -d 9 -p ack -e 40 -c 0 -i 2514 -a 0 -x {10.0 9.0 1252 ------- null} + -t 1.44693 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2525 -a 0 -x {9.0 10.0 1267 ------- null} - -t 1.44693 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2525 -a 0 -x {9.0 10.0 1267 ------- null} h -t 1.44693 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2525 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.44696 -s 0 -d 9 -p ack -e 40 -c 0 -i 2518 -a 0 -x {10.0 9.0 1254 ------- null} - -t 1.44696 -s 0 -d 9 -p ack -e 40 -c 0 -i 2518 -a 0 -x {10.0 9.0 1254 ------- null} h -t 1.44696 -s 0 -d 9 -p ack -e 40 -c 0 -i 2518 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.44718 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2521 -a 0 -x {9.0 10.0 1265 ------- null} + -t 1.44718 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2521 -a 0 -x {9.0 10.0 1265 ------- null} h -t 1.44718 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2521 -a 0 -x {9.0 10.0 1265 ------- null} r -t 1.4475 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2507 -a 0 -x {9.0 10.0 1258 ------- null} + -t 1.4475 -s 10 -d 7 -p ack -e 40 -c 0 -i 2526 -a 0 -x {10.0 9.0 1258 ------- null} - -t 1.4475 -s 10 -d 7 -p ack -e 40 -c 0 -i 2526 -a 0 -x {10.0 9.0 1258 ------- null} h -t 1.4475 -s 10 -d 7 -p ack -e 40 -c 0 -i 2526 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.44797 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2513 -a 0 -x {9.0 10.0 1261 ------- null} - -t 1.44797 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2513 -a 0 -x {9.0 10.0 1261 ------- null} h -t 1.44797 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2513 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.44802 -s 0 -d 9 -p ack -e 40 -c 0 -i 2516 -a 0 -x {10.0 9.0 1253 ------- null} + -t 1.44802 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2527 -a 0 -x {9.0 10.0 1268 ------- null} - -t 1.44802 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2527 -a 0 -x {9.0 10.0 1268 ------- null} h -t 1.44802 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2527 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.44818 -s 0 -d 9 -p ack -e 40 -c 0 -i 2520 -a 0 -x {10.0 9.0 1255 ------- null} - -t 1.44818 -s 0 -d 9 -p ack -e 40 -c 0 -i 2520 -a 0 -x {10.0 9.0 1255 ------- null} h -t 1.44818 -s 0 -d 9 -p ack -e 40 -c 0 -i 2520 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.44824 -s 10 -d 7 -p ack -e 40 -c 0 -i 2524 -a 0 -x {10.0 9.0 1257 ------- null} + -t 1.44824 -s 7 -d 0 -p ack -e 40 -c 0 -i 2524 -a 0 -x {10.0 9.0 1257 ------- null} h -t 1.44824 -s 7 -d 8 -p ack -e 40 -c 0 -i 2524 -a 0 -x {10.0 9.0 1257 ------- null} r -t 1.44854 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2523 -a 0 -x {9.0 10.0 1266 ------- null} + -t 1.44854 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2523 -a 0 -x {9.0 10.0 1266 ------- null} h -t 1.44854 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2523 -a 0 -x {9.0 10.0 1266 ------- null} r -t 1.44859 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2509 -a 0 -x {9.0 10.0 1259 ------- null} + -t 1.44859 -s 10 -d 7 -p ack -e 40 -c 0 -i 2528 -a 0 -x {10.0 9.0 1259 ------- null} - -t 1.44859 -s 10 -d 7 -p ack -e 40 -c 0 -i 2528 -a 0 -x {10.0 9.0 1259 ------- null} h -t 1.44859 -s 10 -d 7 -p ack -e 40 -c 0 -i 2528 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.44899 -s 0 -d 9 -p ack -e 40 -c 0 -i 2518 -a 0 -x {10.0 9.0 1254 ------- null} + -t 1.44899 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2529 -a 0 -x {9.0 10.0 1269 ------- null} - -t 1.44899 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2529 -a 0 -x {9.0 10.0 1269 ------- null} h -t 1.44899 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2529 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.44906 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2515 -a 0 -x {9.0 10.0 1262 ------- null} - -t 1.44906 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2515 -a 0 -x {9.0 10.0 1262 ------- null} h -t 1.44906 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2515 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.4492 -s 0 -d 9 -p ack -e 40 -c 0 -i 2522 -a 0 -x {10.0 9.0 1256 ------- null} - -t 1.4492 -s 0 -d 9 -p ack -e 40 -c 0 -i 2522 -a 0 -x {10.0 9.0 1256 ------- null} h -t 1.4492 -s 0 -d 9 -p ack -e 40 -c 0 -i 2522 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.44954 -s 10 -d 7 -p ack -e 40 -c 0 -i 2526 -a 0 -x {10.0 9.0 1258 ------- null} + -t 1.44954 -s 7 -d 0 -p ack -e 40 -c 0 -i 2526 -a 0 -x {10.0 9.0 1258 ------- null} h -t 1.44954 -s 7 -d 8 -p ack -e 40 -c 0 -i 2526 -a 0 -x {10.0 9.0 1258 ------- null} r -t 1.44968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2511 -a 0 -x {9.0 10.0 1260 ------- null} + -t 1.44968 -s 10 -d 7 -p ack -e 40 -c 0 -i 2530 -a 0 -x {10.0 9.0 1260 ------- null} - -t 1.44968 -s 10 -d 7 -p ack -e 40 -c 0 -i 2530 -a 0 -x {10.0 9.0 1260 ------- null} h -t 1.44968 -s 10 -d 7 -p ack -e 40 -c 0 -i 2530 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.44973 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2525 -a 0 -x {9.0 10.0 1267 ------- null} + -t 1.44973 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2525 -a 0 -x {9.0 10.0 1267 ------- null} h -t 1.44973 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2525 -a 0 -x {9.0 10.0 1267 ------- null} + -t 1.45014 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2517 -a 0 -x {9.0 10.0 1263 ------- null} - -t 1.45014 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2517 -a 0 -x {9.0 10.0 1263 ------- null} h -t 1.45014 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2517 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.45021 -s 0 -d 9 -p ack -e 40 -c 0 -i 2520 -a 0 -x {10.0 9.0 1255 ------- null} + -t 1.45021 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2531 -a 0 -x {9.0 10.0 1270 ------- null} - -t 1.45021 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2531 -a 0 -x {9.0 10.0 1270 ------- null} h -t 1.45021 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2531 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.45032 -s 0 -d 9 -p ack -e 40 -c 0 -i 2524 -a 0 -x {10.0 9.0 1257 ------- null} - -t 1.45032 -s 0 -d 9 -p ack -e 40 -c 0 -i 2524 -a 0 -x {10.0 9.0 1257 ------- null} h -t 1.45032 -s 0 -d 9 -p ack -e 40 -c 0 -i 2524 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.45062 -s 10 -d 7 -p ack -e 40 -c 0 -i 2528 -a 0 -x {10.0 9.0 1259 ------- null} + -t 1.45062 -s 7 -d 0 -p ack -e 40 -c 0 -i 2528 -a 0 -x {10.0 9.0 1259 ------- null} h -t 1.45062 -s 7 -d 8 -p ack -e 40 -c 0 -i 2528 -a 0 -x {10.0 9.0 1259 ------- null} r -t 1.45077 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2513 -a 0 -x {9.0 10.0 1261 ------- null} + -t 1.45077 -s 10 -d 7 -p ack -e 40 -c 0 -i 2532 -a 0 -x {10.0 9.0 1261 ------- null} - -t 1.45077 -s 10 -d 7 -p ack -e 40 -c 0 -i 2532 -a 0 -x {10.0 9.0 1261 ------- null} h -t 1.45077 -s 10 -d 7 -p ack -e 40 -c 0 -i 2532 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.45082 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2527 -a 0 -x {9.0 10.0 1268 ------- null} + -t 1.45082 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2527 -a 0 -x {9.0 10.0 1268 ------- null} h -t 1.45082 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2527 -a 0 -x {9.0 10.0 1268 ------- null} + -t 1.45123 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2519 -a 0 -x {9.0 10.0 1264 ------- null} - -t 1.45123 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2519 -a 0 -x {9.0 10.0 1264 ------- null} h -t 1.45123 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2519 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.45123 -s 0 -d 9 -p ack -e 40 -c 0 -i 2522 -a 0 -x {10.0 9.0 1256 ------- null} + -t 1.45123 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2533 -a 0 -x {9.0 10.0 1271 ------- null} - -t 1.45123 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2533 -a 0 -x {9.0 10.0 1271 ------- null} h -t 1.45123 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2533 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.4515 -s 0 -d 9 -p ack -e 40 -c 0 -i 2526 -a 0 -x {10.0 9.0 1258 ------- null} - -t 1.4515 -s 0 -d 9 -p ack -e 40 -c 0 -i 2526 -a 0 -x {10.0 9.0 1258 ------- null} h -t 1.4515 -s 0 -d 9 -p ack -e 40 -c 0 -i 2526 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.45171 -s 10 -d 7 -p ack -e 40 -c 0 -i 2530 -a 0 -x {10.0 9.0 1260 ------- null} + -t 1.45171 -s 7 -d 0 -p ack -e 40 -c 0 -i 2530 -a 0 -x {10.0 9.0 1260 ------- null} h -t 1.45171 -s 7 -d 8 -p ack -e 40 -c 0 -i 2530 -a 0 -x {10.0 9.0 1260 ------- null} r -t 1.45179 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2529 -a 0 -x {9.0 10.0 1269 ------- null} + -t 1.45179 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2529 -a 0 -x {9.0 10.0 1269 ------- null} h -t 1.45179 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2529 -a 0 -x {9.0 10.0 1269 ------- null} r -t 1.45186 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2515 -a 0 -x {9.0 10.0 1262 ------- null} + -t 1.45186 -s 10 -d 7 -p ack -e 40 -c 0 -i 2534 -a 0 -x {10.0 9.0 1262 ------- null} - -t 1.45186 -s 10 -d 7 -p ack -e 40 -c 0 -i 2534 -a 0 -x {10.0 9.0 1262 ------- null} h -t 1.45186 -s 10 -d 7 -p ack -e 40 -c 0 -i 2534 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.45235 -s 0 -d 9 -p ack -e 40 -c 0 -i 2524 -a 0 -x {10.0 9.0 1257 ------- null} + -t 1.45235 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2535 -a 0 -x {9.0 10.0 1272 ------- null} - -t 1.45235 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2535 -a 0 -x {9.0 10.0 1272 ------- null} h -t 1.45235 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2535 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.4525 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2521 -a 0 -x {9.0 10.0 1265 ------- null} - -t 1.4525 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2521 -a 0 -x {9.0 10.0 1265 ------- null} h -t 1.4525 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2521 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.45262 -s 0 -d 9 -p ack -e 40 -c 0 -i 2528 -a 0 -x {10.0 9.0 1259 ------- null} - -t 1.45262 -s 0 -d 9 -p ack -e 40 -c 0 -i 2528 -a 0 -x {10.0 9.0 1259 ------- null} h -t 1.45262 -s 0 -d 9 -p ack -e 40 -c 0 -i 2528 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.4528 -s 10 -d 7 -p ack -e 40 -c 0 -i 2532 -a 0 -x {10.0 9.0 1261 ------- null} + -t 1.4528 -s 7 -d 0 -p ack -e 40 -c 0 -i 2532 -a 0 -x {10.0 9.0 1261 ------- null} h -t 1.4528 -s 7 -d 8 -p ack -e 40 -c 0 -i 2532 -a 0 -x {10.0 9.0 1261 ------- null} r -t 1.45294 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2517 -a 0 -x {9.0 10.0 1263 ------- null} + -t 1.45294 -s 10 -d 7 -p ack -e 40 -c 0 -i 2536 -a 0 -x {10.0 9.0 1263 ------- null} - -t 1.45294 -s 10 -d 7 -p ack -e 40 -c 0 -i 2536 -a 0 -x {10.0 9.0 1263 ------- null} h -t 1.45294 -s 10 -d 7 -p ack -e 40 -c 0 -i 2536 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.45301 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2531 -a 0 -x {9.0 10.0 1270 ------- null} + -t 1.45301 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2531 -a 0 -x {9.0 10.0 1270 ------- null} h -t 1.45301 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2531 -a 0 -x {9.0 10.0 1270 ------- null} r -t 1.45354 -s 0 -d 9 -p ack -e 40 -c 0 -i 2526 -a 0 -x {10.0 9.0 1258 ------- null} + -t 1.45354 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2537 -a 0 -x {9.0 10.0 1273 ------- null} - -t 1.45354 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2537 -a 0 -x {9.0 10.0 1273 ------- null} h -t 1.45354 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2537 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.45358 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2523 -a 0 -x {9.0 10.0 1266 ------- null} - -t 1.45358 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2523 -a 0 -x {9.0 10.0 1266 ------- null} h -t 1.45358 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2523 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.45379 -s 0 -d 9 -p ack -e 40 -c 0 -i 2530 -a 0 -x {10.0 9.0 1260 ------- null} - -t 1.45379 -s 0 -d 9 -p ack -e 40 -c 0 -i 2530 -a 0 -x {10.0 9.0 1260 ------- null} h -t 1.45379 -s 0 -d 9 -p ack -e 40 -c 0 -i 2530 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.45389 -s 10 -d 7 -p ack -e 40 -c 0 -i 2534 -a 0 -x {10.0 9.0 1262 ------- null} + -t 1.45389 -s 7 -d 0 -p ack -e 40 -c 0 -i 2534 -a 0 -x {10.0 9.0 1262 ------- null} h -t 1.45389 -s 7 -d 8 -p ack -e 40 -c 0 -i 2534 -a 0 -x {10.0 9.0 1262 ------- null} r -t 1.45403 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2519 -a 0 -x {9.0 10.0 1264 ------- null} + -t 1.45403 -s 10 -d 7 -p ack -e 40 -c 0 -i 2538 -a 0 -x {10.0 9.0 1264 ------- null} - -t 1.45403 -s 10 -d 7 -p ack -e 40 -c 0 -i 2538 -a 0 -x {10.0 9.0 1264 ------- null} h -t 1.45403 -s 10 -d 7 -p ack -e 40 -c 0 -i 2538 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.45403 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2533 -a 0 -x {9.0 10.0 1271 ------- null} + -t 1.45403 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2533 -a 0 -x {9.0 10.0 1271 ------- null} h -t 1.45403 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2533 -a 0 -x {9.0 10.0 1271 ------- null} r -t 1.45466 -s 0 -d 9 -p ack -e 40 -c 0 -i 2528 -a 0 -x {10.0 9.0 1259 ------- null} + -t 1.45466 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2539 -a 0 -x {9.0 10.0 1274 ------- null} - -t 1.45466 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2539 -a 0 -x {9.0 10.0 1274 ------- null} h -t 1.45466 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2539 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.45467 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2525 -a 0 -x {9.0 10.0 1267 ------- null} - -t 1.45467 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2525 -a 0 -x {9.0 10.0 1267 ------- null} h -t 1.45467 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2525 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.45498 -s 10 -d 7 -p ack -e 40 -c 0 -i 2536 -a 0 -x {10.0 9.0 1263 ------- null} + -t 1.45498 -s 7 -d 0 -p ack -e 40 -c 0 -i 2536 -a 0 -x {10.0 9.0 1263 ------- null} h -t 1.45498 -s 7 -d 8 -p ack -e 40 -c 0 -i 2536 -a 0 -x {10.0 9.0 1263 ------- null} + -t 1.45498 -s 0 -d 9 -p ack -e 40 -c 0 -i 2532 -a 0 -x {10.0 9.0 1261 ------- null} - -t 1.45498 -s 0 -d 9 -p ack -e 40 -c 0 -i 2532 -a 0 -x {10.0 9.0 1261 ------- null} h -t 1.45498 -s 0 -d 9 -p ack -e 40 -c 0 -i 2532 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.45515 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2535 -a 0 -x {9.0 10.0 1272 ------- null} + -t 1.45515 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2535 -a 0 -x {9.0 10.0 1272 ------- null} h -t 1.45515 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2535 -a 0 -x {9.0 10.0 1272 ------- null} r -t 1.4553 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2521 -a 0 -x {9.0 10.0 1265 ------- null} + -t 1.4553 -s 10 -d 7 -p ack -e 40 -c 0 -i 2540 -a 0 -x {10.0 9.0 1265 ------- null} - -t 1.4553 -s 10 -d 7 -p ack -e 40 -c 0 -i 2540 -a 0 -x {10.0 9.0 1265 ------- null} h -t 1.4553 -s 10 -d 7 -p ack -e 40 -c 0 -i 2540 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.45582 -s 0 -d 9 -p ack -e 40 -c 0 -i 2530 -a 0 -x {10.0 9.0 1260 ------- null} + -t 1.45582 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2541 -a 0 -x {9.0 10.0 1275 ------- null} - -t 1.45582 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2541 -a 0 -x {9.0 10.0 1275 ------- null} h -t 1.45582 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2541 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.45586 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2527 -a 0 -x {9.0 10.0 1268 ------- null} - -t 1.45586 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2527 -a 0 -x {9.0 10.0 1268 ------- null} h -t 1.45586 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2527 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.45603 -s 0 -d 9 -p ack -e 40 -c 0 -i 2534 -a 0 -x {10.0 9.0 1262 ------- null} - -t 1.45603 -s 0 -d 9 -p ack -e 40 -c 0 -i 2534 -a 0 -x {10.0 9.0 1262 ------- null} h -t 1.45603 -s 0 -d 9 -p ack -e 40 -c 0 -i 2534 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.45606 -s 10 -d 7 -p ack -e 40 -c 0 -i 2538 -a 0 -x {10.0 9.0 1264 ------- null} + -t 1.45606 -s 7 -d 0 -p ack -e 40 -c 0 -i 2538 -a 0 -x {10.0 9.0 1264 ------- null} h -t 1.45606 -s 7 -d 8 -p ack -e 40 -c 0 -i 2538 -a 0 -x {10.0 9.0 1264 ------- null} r -t 1.45634 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2537 -a 0 -x {9.0 10.0 1273 ------- null} + -t 1.45634 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2537 -a 0 -x {9.0 10.0 1273 ------- null} h -t 1.45634 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2537 -a 0 -x {9.0 10.0 1273 ------- null} r -t 1.45638 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2523 -a 0 -x {9.0 10.0 1266 ------- null} + -t 1.45638 -s 10 -d 7 -p ack -e 40 -c 0 -i 2542 -a 0 -x {10.0 9.0 1266 ------- null} - -t 1.45638 -s 10 -d 7 -p ack -e 40 -c 0 -i 2542 -a 0 -x {10.0 9.0 1266 ------- null} h -t 1.45638 -s 10 -d 7 -p ack -e 40 -c 0 -i 2542 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.45694 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2529 -a 0 -x {9.0 10.0 1269 ------- null} - -t 1.45694 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2529 -a 0 -x {9.0 10.0 1269 ------- null} h -t 1.45694 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2529 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.45701 -s 0 -d 9 -p ack -e 40 -c 0 -i 2532 -a 0 -x {10.0 9.0 1261 ------- null} + -t 1.45701 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2543 -a 0 -x {9.0 10.0 1276 ------- null} - -t 1.45701 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2543 -a 0 -x {9.0 10.0 1276 ------- null} h -t 1.45701 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2543 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.45704 -s 0 -d 9 -p ack -e 40 -c 0 -i 2536 -a 0 -x {10.0 9.0 1263 ------- null} - -t 1.45704 -s 0 -d 9 -p ack -e 40 -c 0 -i 2536 -a 0 -x {10.0 9.0 1263 ------- null} h -t 1.45704 -s 0 -d 9 -p ack -e 40 -c 0 -i 2536 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.45733 -s 10 -d 7 -p ack -e 40 -c 0 -i 2540 -a 0 -x {10.0 9.0 1265 ------- null} + -t 1.45733 -s 7 -d 0 -p ack -e 40 -c 0 -i 2540 -a 0 -x {10.0 9.0 1265 ------- null} h -t 1.45733 -s 7 -d 8 -p ack -e 40 -c 0 -i 2540 -a 0 -x {10.0 9.0 1265 ------- null} r -t 1.45746 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2539 -a 0 -x {9.0 10.0 1274 ------- null} + -t 1.45746 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2539 -a 0 -x {9.0 10.0 1274 ------- null} h -t 1.45746 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2539 -a 0 -x {9.0 10.0 1274 ------- null} r -t 1.45747 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2525 -a 0 -x {9.0 10.0 1267 ------- null} + -t 1.45747 -s 10 -d 7 -p ack -e 40 -c 0 -i 2544 -a 0 -x {10.0 9.0 1267 ------- null} - -t 1.45747 -s 10 -d 7 -p ack -e 40 -c 0 -i 2544 -a 0 -x {10.0 9.0 1267 ------- null} h -t 1.45747 -s 10 -d 7 -p ack -e 40 -c 0 -i 2544 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.45803 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2531 -a 0 -x {9.0 10.0 1270 ------- null} - -t 1.45803 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2531 -a 0 -x {9.0 10.0 1270 ------- null} h -t 1.45803 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2531 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.45806 -s 0 -d 9 -p ack -e 40 -c 0 -i 2534 -a 0 -x {10.0 9.0 1262 ------- null} + -t 1.45806 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2545 -a 0 -x {9.0 10.0 1277 ------- null} - -t 1.45806 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2545 -a 0 -x {9.0 10.0 1277 ------- null} h -t 1.45806 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2545 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.45821 -s 0 -d 9 -p ack -e 40 -c 0 -i 2538 -a 0 -x {10.0 9.0 1264 ------- null} - -t 1.45821 -s 0 -d 9 -p ack -e 40 -c 0 -i 2538 -a 0 -x {10.0 9.0 1264 ------- null} h -t 1.45821 -s 0 -d 9 -p ack -e 40 -c 0 -i 2538 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.45842 -s 10 -d 7 -p ack -e 40 -c 0 -i 2542 -a 0 -x {10.0 9.0 1266 ------- null} + -t 1.45842 -s 7 -d 0 -p ack -e 40 -c 0 -i 2542 -a 0 -x {10.0 9.0 1266 ------- null} h -t 1.45842 -s 7 -d 8 -p ack -e 40 -c 0 -i 2542 -a 0 -x {10.0 9.0 1266 ------- null} r -t 1.45862 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2541 -a 0 -x {9.0 10.0 1275 ------- null} + -t 1.45862 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2541 -a 0 -x {9.0 10.0 1275 ------- null} h -t 1.45862 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2541 -a 0 -x {9.0 10.0 1275 ------- null} r -t 1.45866 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2527 -a 0 -x {9.0 10.0 1268 ------- null} + -t 1.45866 -s 10 -d 7 -p ack -e 40 -c 0 -i 2546 -a 0 -x {10.0 9.0 1268 ------- null} - -t 1.45866 -s 10 -d 7 -p ack -e 40 -c 0 -i 2546 -a 0 -x {10.0 9.0 1268 ------- null} h -t 1.45866 -s 10 -d 7 -p ack -e 40 -c 0 -i 2546 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.45907 -s 0 -d 9 -p ack -e 40 -c 0 -i 2536 -a 0 -x {10.0 9.0 1263 ------- null} + -t 1.45907 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2547 -a 0 -x {9.0 10.0 1278 ------- null} - -t 1.45907 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2547 -a 0 -x {9.0 10.0 1278 ------- null} h -t 1.45907 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2547 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.45912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2533 -a 0 -x {9.0 10.0 1271 ------- null} - -t 1.45912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2533 -a 0 -x {9.0 10.0 1271 ------- null} h -t 1.45912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2533 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.45931 -s 0 -d 9 -p ack -e 40 -c 0 -i 2540 -a 0 -x {10.0 9.0 1265 ------- null} - -t 1.45931 -s 0 -d 9 -p ack -e 40 -c 0 -i 2540 -a 0 -x {10.0 9.0 1265 ------- null} h -t 1.45931 -s 0 -d 9 -p ack -e 40 -c 0 -i 2540 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.4595 -s 10 -d 7 -p ack -e 40 -c 0 -i 2544 -a 0 -x {10.0 9.0 1267 ------- null} + -t 1.4595 -s 7 -d 0 -p ack -e 40 -c 0 -i 2544 -a 0 -x {10.0 9.0 1267 ------- null} h -t 1.4595 -s 7 -d 8 -p ack -e 40 -c 0 -i 2544 -a 0 -x {10.0 9.0 1267 ------- null} r -t 1.45974 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2529 -a 0 -x {9.0 10.0 1269 ------- null} + -t 1.45974 -s 10 -d 7 -p ack -e 40 -c 0 -i 2548 -a 0 -x {10.0 9.0 1269 ------- null} - -t 1.45974 -s 10 -d 7 -p ack -e 40 -c 0 -i 2548 -a 0 -x {10.0 9.0 1269 ------- null} h -t 1.45974 -s 10 -d 7 -p ack -e 40 -c 0 -i 2548 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.45981 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2543 -a 0 -x {9.0 10.0 1276 ------- null} + -t 1.45981 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2543 -a 0 -x {9.0 10.0 1276 ------- null} h -t 1.45981 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2543 -a 0 -x {9.0 10.0 1276 ------- null} + -t 1.46021 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2535 -a 0 -x {9.0 10.0 1272 ------- null} - -t 1.46021 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2535 -a 0 -x {9.0 10.0 1272 ------- null} h -t 1.46021 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2535 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.46024 -s 0 -d 9 -p ack -e 40 -c 0 -i 2538 -a 0 -x {10.0 9.0 1264 ------- null} + -t 1.46024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2549 -a 0 -x {9.0 10.0 1279 ------- null} - -t 1.46024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2549 -a 0 -x {9.0 10.0 1279 ------- null} h -t 1.46024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2549 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.46032 -s 0 -d 9 -p ack -e 40 -c 0 -i 2542 -a 0 -x {10.0 9.0 1266 ------- null} - -t 1.46032 -s 0 -d 9 -p ack -e 40 -c 0 -i 2542 -a 0 -x {10.0 9.0 1266 ------- null} h -t 1.46032 -s 0 -d 9 -p ack -e 40 -c 0 -i 2542 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.46069 -s 10 -d 7 -p ack -e 40 -c 0 -i 2546 -a 0 -x {10.0 9.0 1268 ------- null} + -t 1.46069 -s 7 -d 0 -p ack -e 40 -c 0 -i 2546 -a 0 -x {10.0 9.0 1268 ------- null} h -t 1.46069 -s 7 -d 8 -p ack -e 40 -c 0 -i 2546 -a 0 -x {10.0 9.0 1268 ------- null} r -t 1.46083 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2531 -a 0 -x {9.0 10.0 1270 ------- null} + -t 1.46083 -s 10 -d 7 -p ack -e 40 -c 0 -i 2550 -a 0 -x {10.0 9.0 1270 ------- null} - -t 1.46083 -s 10 -d 7 -p ack -e 40 -c 0 -i 2550 -a 0 -x {10.0 9.0 1270 ------- null} h -t 1.46083 -s 10 -d 7 -p ack -e 40 -c 0 -i 2550 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.46086 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2545 -a 0 -x {9.0 10.0 1277 ------- null} + -t 1.46086 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2545 -a 0 -x {9.0 10.0 1277 ------- null} h -t 1.46086 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2545 -a 0 -x {9.0 10.0 1277 ------- null} + -t 1.4613 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2537 -a 0 -x {9.0 10.0 1273 ------- null} - -t 1.4613 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2537 -a 0 -x {9.0 10.0 1273 ------- null} h -t 1.4613 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2537 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.46134 -s 0 -d 9 -p ack -e 40 -c 0 -i 2540 -a 0 -x {10.0 9.0 1265 ------- null} + -t 1.46134 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2551 -a 0 -x {9.0 10.0 1280 ------- null} - -t 1.46134 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2551 -a 0 -x {9.0 10.0 1280 ------- null} h -t 1.46134 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2551 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.46138 -s 0 -d 9 -p ack -e 40 -c 0 -i 2544 -a 0 -x {10.0 9.0 1267 ------- null} - -t 1.46138 -s 0 -d 9 -p ack -e 40 -c 0 -i 2544 -a 0 -x {10.0 9.0 1267 ------- null} h -t 1.46138 -s 0 -d 9 -p ack -e 40 -c 0 -i 2544 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.46178 -s 10 -d 7 -p ack -e 40 -c 0 -i 2548 -a 0 -x {10.0 9.0 1269 ------- null} + -t 1.46178 -s 7 -d 0 -p ack -e 40 -c 0 -i 2548 -a 0 -x {10.0 9.0 1269 ------- null} h -t 1.46178 -s 7 -d 8 -p ack -e 40 -c 0 -i 2548 -a 0 -x {10.0 9.0 1269 ------- null} r -t 1.46187 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2547 -a 0 -x {9.0 10.0 1278 ------- null} + -t 1.46187 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2547 -a 0 -x {9.0 10.0 1278 ------- null} h -t 1.46187 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2547 -a 0 -x {9.0 10.0 1278 ------- null} r -t 1.46192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2533 -a 0 -x {9.0 10.0 1271 ------- null} + -t 1.46192 -s 10 -d 7 -p ack -e 40 -c 0 -i 2552 -a 0 -x {10.0 9.0 1271 ------- null} - -t 1.46192 -s 10 -d 7 -p ack -e 40 -c 0 -i 2552 -a 0 -x {10.0 9.0 1271 ------- null} h -t 1.46192 -s 10 -d 7 -p ack -e 40 -c 0 -i 2552 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.46235 -s 0 -d 9 -p ack -e 40 -c 0 -i 2542 -a 0 -x {10.0 9.0 1266 ------- null} + -t 1.46235 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2553 -a 0 -x {9.0 10.0 1281 ------- null} - -t 1.46235 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2553 -a 0 -x {9.0 10.0 1281 ------- null} h -t 1.46235 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2553 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.46238 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2539 -a 0 -x {9.0 10.0 1274 ------- null} - -t 1.46238 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2539 -a 0 -x {9.0 10.0 1274 ------- null} h -t 1.46238 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2539 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.46248 -s 0 -d 9 -p ack -e 40 -c 0 -i 2546 -a 0 -x {10.0 9.0 1268 ------- null} - -t 1.46248 -s 0 -d 9 -p ack -e 40 -c 0 -i 2546 -a 0 -x {10.0 9.0 1268 ------- null} h -t 1.46248 -s 0 -d 9 -p ack -e 40 -c 0 -i 2546 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.46286 -s 10 -d 7 -p ack -e 40 -c 0 -i 2550 -a 0 -x {10.0 9.0 1270 ------- null} + -t 1.46286 -s 7 -d 0 -p ack -e 40 -c 0 -i 2550 -a 0 -x {10.0 9.0 1270 ------- null} h -t 1.46286 -s 7 -d 8 -p ack -e 40 -c 0 -i 2550 -a 0 -x {10.0 9.0 1270 ------- null} r -t 1.46301 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2535 -a 0 -x {9.0 10.0 1272 ------- null} + -t 1.46301 -s 10 -d 7 -p ack -e 40 -c 0 -i 2554 -a 0 -x {10.0 9.0 1272 ------- null} - -t 1.46301 -s 10 -d 7 -p ack -e 40 -c 0 -i 2554 -a 0 -x {10.0 9.0 1272 ------- null} h -t 1.46301 -s 10 -d 7 -p ack -e 40 -c 0 -i 2554 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.46304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2549 -a 0 -x {9.0 10.0 1279 ------- null} + -t 1.46304 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2549 -a 0 -x {9.0 10.0 1279 ------- null} h -t 1.46304 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2549 -a 0 -x {9.0 10.0 1279 ------- null} r -t 1.46341 -s 0 -d 9 -p ack -e 40 -c 0 -i 2544 -a 0 -x {10.0 9.0 1267 ------- null} + -t 1.46341 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2555 -a 0 -x {9.0 10.0 1282 ------- null} - -t 1.46341 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2555 -a 0 -x {9.0 10.0 1282 ------- null} h -t 1.46341 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2555 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.46347 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2541 -a 0 -x {9.0 10.0 1275 ------- null} - -t 1.46347 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2541 -a 0 -x {9.0 10.0 1275 ------- null} h -t 1.46347 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2541 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.46363 -s 0 -d 9 -p ack -e 40 -c 0 -i 2548 -a 0 -x {10.0 9.0 1269 ------- null} - -t 1.46363 -s 0 -d 9 -p ack -e 40 -c 0 -i 2548 -a 0 -x {10.0 9.0 1269 ------- null} h -t 1.46363 -s 0 -d 9 -p ack -e 40 -c 0 -i 2548 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.46395 -s 10 -d 7 -p ack -e 40 -c 0 -i 2552 -a 0 -x {10.0 9.0 1271 ------- null} + -t 1.46395 -s 7 -d 0 -p ack -e 40 -c 0 -i 2552 -a 0 -x {10.0 9.0 1271 ------- null} h -t 1.46395 -s 7 -d 8 -p ack -e 40 -c 0 -i 2552 -a 0 -x {10.0 9.0 1271 ------- null} r -t 1.4641 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2537 -a 0 -x {9.0 10.0 1273 ------- null} + -t 1.4641 -s 10 -d 7 -p ack -e 40 -c 0 -i 2556 -a 0 -x {10.0 9.0 1273 ------- null} - -t 1.4641 -s 10 -d 7 -p ack -e 40 -c 0 -i 2556 -a 0 -x {10.0 9.0 1273 ------- null} h -t 1.4641 -s 10 -d 7 -p ack -e 40 -c 0 -i 2556 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.46414 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2551 -a 0 -x {9.0 10.0 1280 ------- null} + -t 1.46414 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2551 -a 0 -x {9.0 10.0 1280 ------- null} h -t 1.46414 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2551 -a 0 -x {9.0 10.0 1280 ------- null} r -t 1.46451 -s 0 -d 9 -p ack -e 40 -c 0 -i 2546 -a 0 -x {10.0 9.0 1268 ------- null} + -t 1.46451 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2557 -a 0 -x {9.0 10.0 1283 ------- null} - -t 1.46451 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2557 -a 0 -x {9.0 10.0 1283 ------- null} h -t 1.46451 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2557 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.46456 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2543 -a 0 -x {9.0 10.0 1276 ------- null} - -t 1.46456 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2543 -a 0 -x {9.0 10.0 1276 ------- null} h -t 1.46456 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2543 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.46482 -s 0 -d 9 -p ack -e 40 -c 0 -i 2550 -a 0 -x {10.0 9.0 1270 ------- null} - -t 1.46482 -s 0 -d 9 -p ack -e 40 -c 0 -i 2550 -a 0 -x {10.0 9.0 1270 ------- null} h -t 1.46482 -s 0 -d 9 -p ack -e 40 -c 0 -i 2550 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.46504 -s 10 -d 7 -p ack -e 40 -c 0 -i 2554 -a 0 -x {10.0 9.0 1272 ------- null} + -t 1.46504 -s 7 -d 0 -p ack -e 40 -c 0 -i 2554 -a 0 -x {10.0 9.0 1272 ------- null} h -t 1.46504 -s 7 -d 8 -p ack -e 40 -c 0 -i 2554 -a 0 -x {10.0 9.0 1272 ------- null} r -t 1.46515 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2553 -a 0 -x {9.0 10.0 1281 ------- null} + -t 1.46515 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2553 -a 0 -x {9.0 10.0 1281 ------- null} h -t 1.46515 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2553 -a 0 -x {9.0 10.0 1281 ------- null} r -t 1.46518 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2539 -a 0 -x {9.0 10.0 1274 ------- null} + -t 1.46518 -s 10 -d 7 -p ack -e 40 -c 0 -i 2558 -a 0 -x {10.0 9.0 1274 ------- null} - -t 1.46518 -s 10 -d 7 -p ack -e 40 -c 0 -i 2558 -a 0 -x {10.0 9.0 1274 ------- null} h -t 1.46518 -s 10 -d 7 -p ack -e 40 -c 0 -i 2558 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.46565 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2545 -a 0 -x {9.0 10.0 1277 ------- null} - -t 1.46565 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2545 -a 0 -x {9.0 10.0 1277 ------- null} h -t 1.46565 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2545 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.46566 -s 0 -d 9 -p ack -e 40 -c 0 -i 2548 -a 0 -x {10.0 9.0 1269 ------- null} + -t 1.46566 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2559 -a 0 -x {9.0 10.0 1284 ------- null} - -t 1.46566 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2559 -a 0 -x {9.0 10.0 1284 ------- null} h -t 1.46566 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2559 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.46586 -s 0 -d 9 -p ack -e 40 -c 0 -i 2552 -a 0 -x {10.0 9.0 1271 ------- null} - -t 1.46586 -s 0 -d 9 -p ack -e 40 -c 0 -i 2552 -a 0 -x {10.0 9.0 1271 ------- null} h -t 1.46586 -s 0 -d 9 -p ack -e 40 -c 0 -i 2552 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.46613 -s 10 -d 7 -p ack -e 40 -c 0 -i 2556 -a 0 -x {10.0 9.0 1273 ------- null} + -t 1.46613 -s 7 -d 0 -p ack -e 40 -c 0 -i 2556 -a 0 -x {10.0 9.0 1273 ------- null} h -t 1.46613 -s 7 -d 8 -p ack -e 40 -c 0 -i 2556 -a 0 -x {10.0 9.0 1273 ------- null} r -t 1.46621 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2555 -a 0 -x {9.0 10.0 1282 ------- null} + -t 1.46621 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2555 -a 0 -x {9.0 10.0 1282 ------- null} h -t 1.46621 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2555 -a 0 -x {9.0 10.0 1282 ------- null} r -t 1.46627 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2541 -a 0 -x {9.0 10.0 1275 ------- null} + -t 1.46627 -s 10 -d 7 -p ack -e 40 -c 0 -i 2560 -a 0 -x {10.0 9.0 1275 ------- null} - -t 1.46627 -s 10 -d 7 -p ack -e 40 -c 0 -i 2560 -a 0 -x {10.0 9.0 1275 ------- null} h -t 1.46627 -s 10 -d 7 -p ack -e 40 -c 0 -i 2560 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.46674 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2547 -a 0 -x {9.0 10.0 1278 ------- null} - -t 1.46674 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2547 -a 0 -x {9.0 10.0 1278 ------- null} h -t 1.46674 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2547 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.46685 -s 0 -d 9 -p ack -e 40 -c 0 -i 2550 -a 0 -x {10.0 9.0 1270 ------- null} + -t 1.46685 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2561 -a 0 -x {9.0 10.0 1285 ------- null} - -t 1.46685 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2561 -a 0 -x {9.0 10.0 1285 ------- null} h -t 1.46685 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2561 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.46688 -s 0 -d 9 -p ack -e 40 -c 0 -i 2554 -a 0 -x {10.0 9.0 1272 ------- null} - -t 1.46688 -s 0 -d 9 -p ack -e 40 -c 0 -i 2554 -a 0 -x {10.0 9.0 1272 ------- null} h -t 1.46688 -s 0 -d 9 -p ack -e 40 -c 0 -i 2554 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.46722 -s 10 -d 7 -p ack -e 40 -c 0 -i 2558 -a 0 -x {10.0 9.0 1274 ------- null} + -t 1.46722 -s 7 -d 0 -p ack -e 40 -c 0 -i 2558 -a 0 -x {10.0 9.0 1274 ------- null} h -t 1.46722 -s 7 -d 8 -p ack -e 40 -c 0 -i 2558 -a 0 -x {10.0 9.0 1274 ------- null} r -t 1.46731 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2557 -a 0 -x {9.0 10.0 1283 ------- null} + -t 1.46731 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2557 -a 0 -x {9.0 10.0 1283 ------- null} h -t 1.46731 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2557 -a 0 -x {9.0 10.0 1283 ------- null} r -t 1.46736 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2543 -a 0 -x {9.0 10.0 1276 ------- null} + -t 1.46736 -s 10 -d 7 -p ack -e 40 -c 0 -i 2562 -a 0 -x {10.0 9.0 1276 ------- null} - -t 1.46736 -s 10 -d 7 -p ack -e 40 -c 0 -i 2562 -a 0 -x {10.0 9.0 1276 ------- null} h -t 1.46736 -s 10 -d 7 -p ack -e 40 -c 0 -i 2562 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.46782 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2549 -a 0 -x {9.0 10.0 1279 ------- null} - -t 1.46782 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2549 -a 0 -x {9.0 10.0 1279 ------- null} h -t 1.46782 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2549 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.46789 -s 0 -d 9 -p ack -e 40 -c 0 -i 2552 -a 0 -x {10.0 9.0 1271 ------- null} + -t 1.46789 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2563 -a 0 -x {9.0 10.0 1286 ------- null} - -t 1.46789 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2563 -a 0 -x {9.0 10.0 1286 ------- null} h -t 1.46789 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2563 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.46811 -s 0 -d 9 -p ack -e 40 -c 0 -i 2556 -a 0 -x {10.0 9.0 1273 ------- null} - -t 1.46811 -s 0 -d 9 -p ack -e 40 -c 0 -i 2556 -a 0 -x {10.0 9.0 1273 ------- null} h -t 1.46811 -s 0 -d 9 -p ack -e 40 -c 0 -i 2556 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.4683 -s 10 -d 7 -p ack -e 40 -c 0 -i 2560 -a 0 -x {10.0 9.0 1275 ------- null} + -t 1.4683 -s 7 -d 0 -p ack -e 40 -c 0 -i 2560 -a 0 -x {10.0 9.0 1275 ------- null} h -t 1.4683 -s 7 -d 8 -p ack -e 40 -c 0 -i 2560 -a 0 -x {10.0 9.0 1275 ------- null} r -t 1.46845 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2545 -a 0 -x {9.0 10.0 1277 ------- null} + -t 1.46845 -s 10 -d 7 -p ack -e 40 -c 0 -i 2564 -a 0 -x {10.0 9.0 1277 ------- null} - -t 1.46845 -s 10 -d 7 -p ack -e 40 -c 0 -i 2564 -a 0 -x {10.0 9.0 1277 ------- null} h -t 1.46845 -s 10 -d 7 -p ack -e 40 -c 0 -i 2564 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.46846 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2559 -a 0 -x {9.0 10.0 1284 ------- null} + -t 1.46846 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2559 -a 0 -x {9.0 10.0 1284 ------- null} h -t 1.46846 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2559 -a 0 -x {9.0 10.0 1284 ------- null} r -t 1.46891 -s 0 -d 9 -p ack -e 40 -c 0 -i 2554 -a 0 -x {10.0 9.0 1272 ------- null} + -t 1.46891 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2565 -a 0 -x {9.0 10.0 1287 ------- null} - -t 1.46891 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2565 -a 0 -x {9.0 10.0 1287 ------- null} h -t 1.46891 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2565 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.46902 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2551 -a 0 -x {9.0 10.0 1280 ------- null} - -t 1.46902 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2551 -a 0 -x {9.0 10.0 1280 ------- null} h -t 1.46902 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2551 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.46915 -s 0 -d 9 -p ack -e 40 -c 0 -i 2558 -a 0 -x {10.0 9.0 1274 ------- null} - -t 1.46915 -s 0 -d 9 -p ack -e 40 -c 0 -i 2558 -a 0 -x {10.0 9.0 1274 ------- null} h -t 1.46915 -s 0 -d 9 -p ack -e 40 -c 0 -i 2558 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.46939 -s 10 -d 7 -p ack -e 40 -c 0 -i 2562 -a 0 -x {10.0 9.0 1276 ------- null} + -t 1.46939 -s 7 -d 0 -p ack -e 40 -c 0 -i 2562 -a 0 -x {10.0 9.0 1276 ------- null} h -t 1.46939 -s 7 -d 8 -p ack -e 40 -c 0 -i 2562 -a 0 -x {10.0 9.0 1276 ------- null} r -t 1.46954 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2547 -a 0 -x {9.0 10.0 1278 ------- null} + -t 1.46954 -s 10 -d 7 -p ack -e 40 -c 0 -i 2566 -a 0 -x {10.0 9.0 1278 ------- null} - -t 1.46954 -s 10 -d 7 -p ack -e 40 -c 0 -i 2566 -a 0 -x {10.0 9.0 1278 ------- null} h -t 1.46954 -s 10 -d 7 -p ack -e 40 -c 0 -i 2566 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.46965 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2561 -a 0 -x {9.0 10.0 1285 ------- null} + -t 1.46965 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2561 -a 0 -x {9.0 10.0 1285 ------- null} h -t 1.46965 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2561 -a 0 -x {9.0 10.0 1285 ------- null} + -t 1.47011 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2553 -a 0 -x {9.0 10.0 1281 ------- null} - -t 1.47011 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2553 -a 0 -x {9.0 10.0 1281 ------- null} h -t 1.47011 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2553 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.47014 -s 0 -d 9 -p ack -e 40 -c 0 -i 2556 -a 0 -x {10.0 9.0 1273 ------- null} + -t 1.47014 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2567 -a 0 -x {9.0 10.0 1288 ------- null} - -t 1.47014 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2567 -a 0 -x {9.0 10.0 1288 ------- null} h -t 1.47014 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2567 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.47021 -s 0 -d 9 -p ack -e 40 -c 0 -i 2560 -a 0 -x {10.0 9.0 1275 ------- null} - -t 1.47021 -s 0 -d 9 -p ack -e 40 -c 0 -i 2560 -a 0 -x {10.0 9.0 1275 ------- null} h -t 1.47021 -s 0 -d 9 -p ack -e 40 -c 0 -i 2560 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.47048 -s 10 -d 7 -p ack -e 40 -c 0 -i 2564 -a 0 -x {10.0 9.0 1277 ------- null} + -t 1.47048 -s 7 -d 0 -p ack -e 40 -c 0 -i 2564 -a 0 -x {10.0 9.0 1277 ------- null} h -t 1.47048 -s 7 -d 8 -p ack -e 40 -c 0 -i 2564 -a 0 -x {10.0 9.0 1277 ------- null} r -t 1.47062 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2549 -a 0 -x {9.0 10.0 1279 ------- null} + -t 1.47062 -s 10 -d 7 -p ack -e 40 -c 0 -i 2568 -a 0 -x {10.0 9.0 1279 ------- null} - -t 1.47062 -s 10 -d 7 -p ack -e 40 -c 0 -i 2568 -a 0 -x {10.0 9.0 1279 ------- null} h -t 1.47062 -s 10 -d 7 -p ack -e 40 -c 0 -i 2568 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.47069 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2563 -a 0 -x {9.0 10.0 1286 ------- null} + -t 1.47069 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2563 -a 0 -x {9.0 10.0 1286 ------- null} h -t 1.47069 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2563 -a 0 -x {9.0 10.0 1286 ------- null} r -t 1.47118 -s 0 -d 9 -p ack -e 40 -c 0 -i 2558 -a 0 -x {10.0 9.0 1274 ------- null} + -t 1.47118 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2569 -a 0 -x {9.0 10.0 1289 ------- null} - -t 1.47118 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2569 -a 0 -x {9.0 10.0 1289 ------- null} h -t 1.47118 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2569 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.4712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2555 -a 0 -x {9.0 10.0 1282 ------- null} - -t 1.4712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2555 -a 0 -x {9.0 10.0 1282 ------- null} h -t 1.4712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2555 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.47141 -s 0 -d 9 -p ack -e 40 -c 0 -i 2562 -a 0 -x {10.0 9.0 1276 ------- null} - -t 1.47141 -s 0 -d 9 -p ack -e 40 -c 0 -i 2562 -a 0 -x {10.0 9.0 1276 ------- null} h -t 1.47141 -s 0 -d 9 -p ack -e 40 -c 0 -i 2562 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.47157 -s 10 -d 7 -p ack -e 40 -c 0 -i 2566 -a 0 -x {10.0 9.0 1278 ------- null} + -t 1.47157 -s 7 -d 0 -p ack -e 40 -c 0 -i 2566 -a 0 -x {10.0 9.0 1278 ------- null} h -t 1.47157 -s 7 -d 8 -p ack -e 40 -c 0 -i 2566 -a 0 -x {10.0 9.0 1278 ------- null} r -t 1.47171 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2565 -a 0 -x {9.0 10.0 1287 ------- null} + -t 1.47171 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2565 -a 0 -x {9.0 10.0 1287 ------- null} h -t 1.47171 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2565 -a 0 -x {9.0 10.0 1287 ------- null} r -t 1.47182 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2551 -a 0 -x {9.0 10.0 1280 ------- null} + -t 1.47182 -s 10 -d 7 -p ack -e 40 -c 0 -i 2570 -a 0 -x {10.0 9.0 1280 ------- null} - -t 1.47182 -s 10 -d 7 -p ack -e 40 -c 0 -i 2570 -a 0 -x {10.0 9.0 1280 ------- null} h -t 1.47182 -s 10 -d 7 -p ack -e 40 -c 0 -i 2570 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.47224 -s 0 -d 9 -p ack -e 40 -c 0 -i 2560 -a 0 -x {10.0 9.0 1275 ------- null} + -t 1.47224 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2571 -a 0 -x {9.0 10.0 1290 ------- null} - -t 1.47224 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2571 -a 0 -x {9.0 10.0 1290 ------- null} h -t 1.47224 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2571 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.47229 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2557 -a 0 -x {9.0 10.0 1283 ------- null} - -t 1.47229 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2557 -a 0 -x {9.0 10.0 1283 ------- null} h -t 1.47229 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2557 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.47251 -s 0 -d 9 -p ack -e 40 -c 0 -i 2564 -a 0 -x {10.0 9.0 1277 ------- null} - -t 1.47251 -s 0 -d 9 -p ack -e 40 -c 0 -i 2564 -a 0 -x {10.0 9.0 1277 ------- null} h -t 1.47251 -s 0 -d 9 -p ack -e 40 -c 0 -i 2564 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.47266 -s 10 -d 7 -p ack -e 40 -c 0 -i 2568 -a 0 -x {10.0 9.0 1279 ------- null} + -t 1.47266 -s 7 -d 0 -p ack -e 40 -c 0 -i 2568 -a 0 -x {10.0 9.0 1279 ------- null} h -t 1.47266 -s 7 -d 8 -p ack -e 40 -c 0 -i 2568 -a 0 -x {10.0 9.0 1279 ------- null} r -t 1.47291 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2553 -a 0 -x {9.0 10.0 1281 ------- null} + -t 1.47291 -s 10 -d 7 -p ack -e 40 -c 0 -i 2572 -a 0 -x {10.0 9.0 1281 ------- null} - -t 1.47291 -s 10 -d 7 -p ack -e 40 -c 0 -i 2572 -a 0 -x {10.0 9.0 1281 ------- null} h -t 1.47291 -s 10 -d 7 -p ack -e 40 -c 0 -i 2572 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.47294 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2567 -a 0 -x {9.0 10.0 1288 ------- null} + -t 1.47294 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2567 -a 0 -x {9.0 10.0 1288 ------- null} h -t 1.47294 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2567 -a 0 -x {9.0 10.0 1288 ------- null} + -t 1.47338 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2559 -a 0 -x {9.0 10.0 1284 ------- null} - -t 1.47338 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2559 -a 0 -x {9.0 10.0 1284 ------- null} h -t 1.47338 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2559 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.47344 -s 0 -d 9 -p ack -e 40 -c 0 -i 2562 -a 0 -x {10.0 9.0 1276 ------- null} + -t 1.47344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2573 -a 0 -x {9.0 10.0 1291 ------- null} - -t 1.47344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2573 -a 0 -x {9.0 10.0 1291 ------- null} h -t 1.47344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2573 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.47346 -s 0 -d 9 -p ack -e 40 -c 0 -i 2566 -a 0 -x {10.0 9.0 1278 ------- null} - -t 1.47346 -s 0 -d 9 -p ack -e 40 -c 0 -i 2566 -a 0 -x {10.0 9.0 1278 ------- null} h -t 1.47346 -s 0 -d 9 -p ack -e 40 -c 0 -i 2566 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.47386 -s 10 -d 7 -p ack -e 40 -c 0 -i 2570 -a 0 -x {10.0 9.0 1280 ------- null} + -t 1.47386 -s 7 -d 0 -p ack -e 40 -c 0 -i 2570 -a 0 -x {10.0 9.0 1280 ------- null} h -t 1.47386 -s 7 -d 8 -p ack -e 40 -c 0 -i 2570 -a 0 -x {10.0 9.0 1280 ------- null} r -t 1.47398 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2569 -a 0 -x {9.0 10.0 1289 ------- null} + -t 1.47398 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2569 -a 0 -x {9.0 10.0 1289 ------- null} h -t 1.47398 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2569 -a 0 -x {9.0 10.0 1289 ------- null} r -t 1.474 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2555 -a 0 -x {9.0 10.0 1282 ------- null} + -t 1.474 -s 10 -d 7 -p ack -e 40 -c 0 -i 2574 -a 0 -x {10.0 9.0 1282 ------- null} - -t 1.474 -s 10 -d 7 -p ack -e 40 -c 0 -i 2574 -a 0 -x {10.0 9.0 1282 ------- null} h -t 1.474 -s 10 -d 7 -p ack -e 40 -c 0 -i 2574 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.47446 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2561 -a 0 -x {9.0 10.0 1285 ------- null} - -t 1.47446 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2561 -a 0 -x {9.0 10.0 1285 ------- null} h -t 1.47446 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2561 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.47453 -s 0 -d 9 -p ack -e 40 -c 0 -i 2568 -a 0 -x {10.0 9.0 1279 ------- null} - -t 1.47453 -s 0 -d 9 -p ack -e 40 -c 0 -i 2568 -a 0 -x {10.0 9.0 1279 ------- null} h -t 1.47453 -s 0 -d 9 -p ack -e 40 -c 0 -i 2568 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.47454 -s 0 -d 9 -p ack -e 40 -c 0 -i 2564 -a 0 -x {10.0 9.0 1277 ------- null} + -t 1.47454 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2575 -a 0 -x {9.0 10.0 1292 ------- null} - -t 1.47454 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2575 -a 0 -x {9.0 10.0 1292 ------- null} h -t 1.47454 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2575 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.47494 -s 10 -d 7 -p ack -e 40 -c 0 -i 2572 -a 0 -x {10.0 9.0 1281 ------- null} + -t 1.47494 -s 7 -d 0 -p ack -e 40 -c 0 -i 2572 -a 0 -x {10.0 9.0 1281 ------- null} h -t 1.47494 -s 7 -d 8 -p ack -e 40 -c 0 -i 2572 -a 0 -x {10.0 9.0 1281 ------- null} r -t 1.47504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2571 -a 0 -x {9.0 10.0 1290 ------- null} + -t 1.47504 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2571 -a 0 -x {9.0 10.0 1290 ------- null} h -t 1.47504 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2571 -a 0 -x {9.0 10.0 1290 ------- null} r -t 1.47509 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2557 -a 0 -x {9.0 10.0 1283 ------- null} + -t 1.47509 -s 10 -d 7 -p ack -e 40 -c 0 -i 2576 -a 0 -x {10.0 9.0 1283 ------- null} - -t 1.47509 -s 10 -d 7 -p ack -e 40 -c 0 -i 2576 -a 0 -x {10.0 9.0 1283 ------- null} h -t 1.47509 -s 10 -d 7 -p ack -e 40 -c 0 -i 2576 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.47549 -s 0 -d 9 -p ack -e 40 -c 0 -i 2566 -a 0 -x {10.0 9.0 1278 ------- null} + -t 1.47549 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2577 -a 0 -x {9.0 10.0 1293 ------- null} - -t 1.47549 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2577 -a 0 -x {9.0 10.0 1293 ------- null} h -t 1.47549 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2577 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.47555 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2563 -a 0 -x {9.0 10.0 1286 ------- null} - -t 1.47555 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2563 -a 0 -x {9.0 10.0 1286 ------- null} h -t 1.47555 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2563 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.47562 -s 0 -d 9 -p ack -e 40 -c 0 -i 2570 -a 0 -x {10.0 9.0 1280 ------- null} - -t 1.47562 -s 0 -d 9 -p ack -e 40 -c 0 -i 2570 -a 0 -x {10.0 9.0 1280 ------- null} h -t 1.47562 -s 0 -d 9 -p ack -e 40 -c 0 -i 2570 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.47603 -s 10 -d 7 -p ack -e 40 -c 0 -i 2574 -a 0 -x {10.0 9.0 1282 ------- null} + -t 1.47603 -s 7 -d 0 -p ack -e 40 -c 0 -i 2574 -a 0 -x {10.0 9.0 1282 ------- null} h -t 1.47603 -s 7 -d 8 -p ack -e 40 -c 0 -i 2574 -a 0 -x {10.0 9.0 1282 ------- null} r -t 1.47618 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2559 -a 0 -x {9.0 10.0 1284 ------- null} + -t 1.47618 -s 10 -d 7 -p ack -e 40 -c 0 -i 2578 -a 0 -x {10.0 9.0 1284 ------- null} - -t 1.47618 -s 10 -d 7 -p ack -e 40 -c 0 -i 2578 -a 0 -x {10.0 9.0 1284 ------- null} h -t 1.47618 -s 10 -d 7 -p ack -e 40 -c 0 -i 2578 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.47624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2573 -a 0 -x {9.0 10.0 1291 ------- null} + -t 1.47624 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2573 -a 0 -x {9.0 10.0 1291 ------- null} h -t 1.47624 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2573 -a 0 -x {9.0 10.0 1291 ------- null} r -t 1.47656 -s 0 -d 9 -p ack -e 40 -c 0 -i 2568 -a 0 -x {10.0 9.0 1279 ------- null} + -t 1.47656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2579 -a 0 -x {9.0 10.0 1294 ------- null} - -t 1.47656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2579 -a 0 -x {9.0 10.0 1294 ------- null} h -t 1.47656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2579 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.47664 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2565 -a 0 -x {9.0 10.0 1287 ------- null} - -t 1.47664 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2565 -a 0 -x {9.0 10.0 1287 ------- null} h -t 1.47664 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2565 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.47674 -s 0 -d 9 -p ack -e 40 -c 0 -i 2572 -a 0 -x {10.0 9.0 1281 ------- null} - -t 1.47674 -s 0 -d 9 -p ack -e 40 -c 0 -i 2572 -a 0 -x {10.0 9.0 1281 ------- null} h -t 1.47674 -s 0 -d 9 -p ack -e 40 -c 0 -i 2572 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.47712 -s 10 -d 7 -p ack -e 40 -c 0 -i 2576 -a 0 -x {10.0 9.0 1283 ------- null} + -t 1.47712 -s 7 -d 0 -p ack -e 40 -c 0 -i 2576 -a 0 -x {10.0 9.0 1283 ------- null} h -t 1.47712 -s 7 -d 8 -p ack -e 40 -c 0 -i 2576 -a 0 -x {10.0 9.0 1283 ------- null} r -t 1.47726 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2561 -a 0 -x {9.0 10.0 1285 ------- null} + -t 1.47726 -s 10 -d 7 -p ack -e 40 -c 0 -i 2580 -a 0 -x {10.0 9.0 1285 ------- null} - -t 1.47726 -s 10 -d 7 -p ack -e 40 -c 0 -i 2580 -a 0 -x {10.0 9.0 1285 ------- null} h -t 1.47726 -s 10 -d 7 -p ack -e 40 -c 0 -i 2580 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.47734 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2575 -a 0 -x {9.0 10.0 1292 ------- null} + -t 1.47734 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2575 -a 0 -x {9.0 10.0 1292 ------- null} h -t 1.47734 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2575 -a 0 -x {9.0 10.0 1292 ------- null} r -t 1.47765 -s 0 -d 9 -p ack -e 40 -c 0 -i 2570 -a 0 -x {10.0 9.0 1280 ------- null} + -t 1.47765 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2581 -a 0 -x {9.0 10.0 1295 ------- null} - -t 1.47765 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2581 -a 0 -x {9.0 10.0 1295 ------- null} h -t 1.47765 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2581 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.47773 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2567 -a 0 -x {9.0 10.0 1288 ------- null} - -t 1.47773 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2567 -a 0 -x {9.0 10.0 1288 ------- null} h -t 1.47773 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2567 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.47787 -s 0 -d 9 -p ack -e 40 -c 0 -i 2574 -a 0 -x {10.0 9.0 1282 ------- null} - -t 1.47787 -s 0 -d 9 -p ack -e 40 -c 0 -i 2574 -a 0 -x {10.0 9.0 1282 ------- null} h -t 1.47787 -s 0 -d 9 -p ack -e 40 -c 0 -i 2574 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.47821 -s 10 -d 7 -p ack -e 40 -c 0 -i 2578 -a 0 -x {10.0 9.0 1284 ------- null} + -t 1.47821 -s 7 -d 0 -p ack -e 40 -c 0 -i 2578 -a 0 -x {10.0 9.0 1284 ------- null} h -t 1.47821 -s 7 -d 8 -p ack -e 40 -c 0 -i 2578 -a 0 -x {10.0 9.0 1284 ------- null} r -t 1.47829 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2577 -a 0 -x {9.0 10.0 1293 ------- null} + -t 1.47829 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2577 -a 0 -x {9.0 10.0 1293 ------- null} h -t 1.47829 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2577 -a 0 -x {9.0 10.0 1293 ------- null} r -t 1.47835 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2563 -a 0 -x {9.0 10.0 1286 ------- null} + -t 1.47835 -s 10 -d 7 -p ack -e 40 -c 0 -i 2582 -a 0 -x {10.0 9.0 1286 ------- null} - -t 1.47835 -s 10 -d 7 -p ack -e 40 -c 0 -i 2582 -a 0 -x {10.0 9.0 1286 ------- null} h -t 1.47835 -s 10 -d 7 -p ack -e 40 -c 0 -i 2582 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.47877 -s 0 -d 9 -p ack -e 40 -c 0 -i 2572 -a 0 -x {10.0 9.0 1281 ------- null} + -t 1.47877 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2583 -a 0 -x {9.0 10.0 1296 ------- null} - -t 1.47877 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2583 -a 0 -x {9.0 10.0 1296 ------- null} h -t 1.47877 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2583 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.47882 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2569 -a 0 -x {9.0 10.0 1289 ------- null} - -t 1.47882 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2569 -a 0 -x {9.0 10.0 1289 ------- null} h -t 1.47882 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2569 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.4789 -s 0 -d 9 -p ack -e 40 -c 0 -i 2576 -a 0 -x {10.0 9.0 1283 ------- null} - -t 1.4789 -s 0 -d 9 -p ack -e 40 -c 0 -i 2576 -a 0 -x {10.0 9.0 1283 ------- null} h -t 1.4789 -s 0 -d 9 -p ack -e 40 -c 0 -i 2576 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.4793 -s 10 -d 7 -p ack -e 40 -c 0 -i 2580 -a 0 -x {10.0 9.0 1285 ------- null} + -t 1.4793 -s 7 -d 0 -p ack -e 40 -c 0 -i 2580 -a 0 -x {10.0 9.0 1285 ------- null} h -t 1.4793 -s 7 -d 8 -p ack -e 40 -c 0 -i 2580 -a 0 -x {10.0 9.0 1285 ------- null} r -t 1.47936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2579 -a 0 -x {9.0 10.0 1294 ------- null} + -t 1.47936 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2579 -a 0 -x {9.0 10.0 1294 ------- null} h -t 1.47936 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2579 -a 0 -x {9.0 10.0 1294 ------- null} r -t 1.47944 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2565 -a 0 -x {9.0 10.0 1287 ------- null} + -t 1.47944 -s 10 -d 7 -p ack -e 40 -c 0 -i 2584 -a 0 -x {10.0 9.0 1287 ------- null} - -t 1.47944 -s 10 -d 7 -p ack -e 40 -c 0 -i 2584 -a 0 -x {10.0 9.0 1287 ------- null} h -t 1.47944 -s 10 -d 7 -p ack -e 40 -c 0 -i 2584 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.4799 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2571 -a 0 -x {9.0 10.0 1290 ------- null} - -t 1.4799 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2571 -a 0 -x {9.0 10.0 1290 ------- null} h -t 1.4799 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2571 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.4799 -s 0 -d 9 -p ack -e 40 -c 0 -i 2574 -a 0 -x {10.0 9.0 1282 ------- null} + -t 1.4799 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2585 -a 0 -x {9.0 10.0 1297 ------- null} - -t 1.4799 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2585 -a 0 -x {9.0 10.0 1297 ------- null} h -t 1.4799 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2585 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.48018 -s 0 -d 9 -p ack -e 40 -c 0 -i 2578 -a 0 -x {10.0 9.0 1284 ------- null} - -t 1.48018 -s 0 -d 9 -p ack -e 40 -c 0 -i 2578 -a 0 -x {10.0 9.0 1284 ------- null} h -t 1.48018 -s 0 -d 9 -p ack -e 40 -c 0 -i 2578 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.48038 -s 10 -d 7 -p ack -e 40 -c 0 -i 2582 -a 0 -x {10.0 9.0 1286 ------- null} + -t 1.48038 -s 7 -d 0 -p ack -e 40 -c 0 -i 2582 -a 0 -x {10.0 9.0 1286 ------- null} h -t 1.48038 -s 7 -d 8 -p ack -e 40 -c 0 -i 2582 -a 0 -x {10.0 9.0 1286 ------- null} r -t 1.48045 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2581 -a 0 -x {9.0 10.0 1295 ------- null} + -t 1.48045 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2581 -a 0 -x {9.0 10.0 1295 ------- null} h -t 1.48045 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2581 -a 0 -x {9.0 10.0 1295 ------- null} r -t 1.48053 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2567 -a 0 -x {9.0 10.0 1288 ------- null} + -t 1.48053 -s 10 -d 7 -p ack -e 40 -c 0 -i 2586 -a 0 -x {10.0 9.0 1288 ------- null} - -t 1.48053 -s 10 -d 7 -p ack -e 40 -c 0 -i 2586 -a 0 -x {10.0 9.0 1288 ------- null} h -t 1.48053 -s 10 -d 7 -p ack -e 40 -c 0 -i 2586 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.48093 -s 0 -d 9 -p ack -e 40 -c 0 -i 2576 -a 0 -x {10.0 9.0 1283 ------- null} + -t 1.48093 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2587 -a 0 -x {9.0 10.0 1298 ------- null} - -t 1.48093 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2587 -a 0 -x {9.0 10.0 1298 ------- null} h -t 1.48093 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2587 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.48104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2573 -a 0 -x {9.0 10.0 1291 ------- null} - -t 1.48104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2573 -a 0 -x {9.0 10.0 1291 ------- null} h -t 1.48104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2573 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.48118 -s 0 -d 9 -p ack -e 40 -c 0 -i 2580 -a 0 -x {10.0 9.0 1285 ------- null} - -t 1.48118 -s 0 -d 9 -p ack -e 40 -c 0 -i 2580 -a 0 -x {10.0 9.0 1285 ------- null} h -t 1.48118 -s 0 -d 9 -p ack -e 40 -c 0 -i 2580 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.48147 -s 10 -d 7 -p ack -e 40 -c 0 -i 2584 -a 0 -x {10.0 9.0 1287 ------- null} + -t 1.48147 -s 7 -d 0 -p ack -e 40 -c 0 -i 2584 -a 0 -x {10.0 9.0 1287 ------- null} h -t 1.48147 -s 7 -d 8 -p ack -e 40 -c 0 -i 2584 -a 0 -x {10.0 9.0 1287 ------- null} r -t 1.48157 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2583 -a 0 -x {9.0 10.0 1296 ------- null} + -t 1.48157 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2583 -a 0 -x {9.0 10.0 1296 ------- null} h -t 1.48157 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2583 -a 0 -x {9.0 10.0 1296 ------- null} r -t 1.48162 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2569 -a 0 -x {9.0 10.0 1289 ------- null} + -t 1.48162 -s 10 -d 7 -p ack -e 40 -c 0 -i 2588 -a 0 -x {10.0 9.0 1289 ------- null} - -t 1.48162 -s 10 -d 7 -p ack -e 40 -c 0 -i 2588 -a 0 -x {10.0 9.0 1289 ------- null} h -t 1.48162 -s 10 -d 7 -p ack -e 40 -c 0 -i 2588 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.48213 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2575 -a 0 -x {9.0 10.0 1292 ------- null} - -t 1.48213 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2575 -a 0 -x {9.0 10.0 1292 ------- null} h -t 1.48213 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2575 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.48219 -s 0 -d 9 -p ack -e 40 -c 0 -i 2582 -a 0 -x {10.0 9.0 1286 ------- null} - -t 1.48219 -s 0 -d 9 -p ack -e 40 -c 0 -i 2582 -a 0 -x {10.0 9.0 1286 ------- null} h -t 1.48219 -s 0 -d 9 -p ack -e 40 -c 0 -i 2582 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.48221 -s 0 -d 9 -p ack -e 40 -c 0 -i 2578 -a 0 -x {10.0 9.0 1284 ------- null} + -t 1.48221 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2589 -a 0 -x {9.0 10.0 1299 ------- null} - -t 1.48221 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2589 -a 0 -x {9.0 10.0 1299 ------- null} h -t 1.48221 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2589 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.48256 -s 10 -d 7 -p ack -e 40 -c 0 -i 2586 -a 0 -x {10.0 9.0 1288 ------- null} + -t 1.48256 -s 7 -d 0 -p ack -e 40 -c 0 -i 2586 -a 0 -x {10.0 9.0 1288 ------- null} h -t 1.48256 -s 7 -d 8 -p ack -e 40 -c 0 -i 2586 -a 0 -x {10.0 9.0 1288 ------- null} r -t 1.4827 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2571 -a 0 -x {9.0 10.0 1290 ------- null} + -t 1.4827 -s 10 -d 7 -p ack -e 40 -c 0 -i 2590 -a 0 -x {10.0 9.0 1290 ------- null} - -t 1.4827 -s 10 -d 7 -p ack -e 40 -c 0 -i 2590 -a 0 -x {10.0 9.0 1290 ------- null} h -t 1.4827 -s 10 -d 7 -p ack -e 40 -c 0 -i 2590 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.4827 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2585 -a 0 -x {9.0 10.0 1297 ------- null} + -t 1.4827 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2585 -a 0 -x {9.0 10.0 1297 ------- null} h -t 1.4827 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2585 -a 0 -x {9.0 10.0 1297 ------- null} + -t 1.48322 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2577 -a 0 -x {9.0 10.0 1293 ------- null} - -t 1.48322 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2577 -a 0 -x {9.0 10.0 1293 ------- null} h -t 1.48322 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2577 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.48322 -s 0 -d 9 -p ack -e 40 -c 0 -i 2580 -a 0 -x {10.0 9.0 1285 ------- null} + -t 1.48322 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2591 -a 0 -x {9.0 10.0 1300 ------- null} - -t 1.48322 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2591 -a 0 -x {9.0 10.0 1300 ------- null} h -t 1.48322 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2591 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.48328 -s 0 -d 9 -p ack -e 40 -c 0 -i 2584 -a 0 -x {10.0 9.0 1287 ------- null} - -t 1.48328 -s 0 -d 9 -p ack -e 40 -c 0 -i 2584 -a 0 -x {10.0 9.0 1287 ------- null} h -t 1.48328 -s 0 -d 9 -p ack -e 40 -c 0 -i 2584 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.48365 -s 10 -d 7 -p ack -e 40 -c 0 -i 2588 -a 0 -x {10.0 9.0 1289 ------- null} + -t 1.48365 -s 7 -d 0 -p ack -e 40 -c 0 -i 2588 -a 0 -x {10.0 9.0 1289 ------- null} h -t 1.48365 -s 7 -d 8 -p ack -e 40 -c 0 -i 2588 -a 0 -x {10.0 9.0 1289 ------- null} r -t 1.48373 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2587 -a 0 -x {9.0 10.0 1298 ------- null} + -t 1.48373 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2587 -a 0 -x {9.0 10.0 1298 ------- null} h -t 1.48373 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2587 -a 0 -x {9.0 10.0 1298 ------- null} r -t 1.48384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2573 -a 0 -x {9.0 10.0 1291 ------- null} + -t 1.48384 -s 10 -d 7 -p ack -e 40 -c 0 -i 2592 -a 0 -x {10.0 9.0 1291 ------- null} - -t 1.48384 -s 10 -d 7 -p ack -e 40 -c 0 -i 2592 -a 0 -x {10.0 9.0 1291 ------- null} h -t 1.48384 -s 10 -d 7 -p ack -e 40 -c 0 -i 2592 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.48422 -s 0 -d 9 -p ack -e 40 -c 0 -i 2582 -a 0 -x {10.0 9.0 1286 ------- null} + -t 1.48422 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2593 -a 0 -x {9.0 10.0 1301 ------- null} - -t 1.48422 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2593 -a 0 -x {9.0 10.0 1301 ------- null} h -t 1.48422 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2593 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.4843 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2579 -a 0 -x {9.0 10.0 1294 ------- null} - -t 1.4843 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2579 -a 0 -x {9.0 10.0 1294 ------- null} h -t 1.4843 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2579 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.48454 -s 0 -d 9 -p ack -e 40 -c 0 -i 2586 -a 0 -x {10.0 9.0 1288 ------- null} - -t 1.48454 -s 0 -d 9 -p ack -e 40 -c 0 -i 2586 -a 0 -x {10.0 9.0 1288 ------- null} h -t 1.48454 -s 0 -d 9 -p ack -e 40 -c 0 -i 2586 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.48474 -s 10 -d 7 -p ack -e 40 -c 0 -i 2590 -a 0 -x {10.0 9.0 1290 ------- null} + -t 1.48474 -s 7 -d 0 -p ack -e 40 -c 0 -i 2590 -a 0 -x {10.0 9.0 1290 ------- null} h -t 1.48474 -s 7 -d 8 -p ack -e 40 -c 0 -i 2590 -a 0 -x {10.0 9.0 1290 ------- null} r -t 1.48493 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2575 -a 0 -x {9.0 10.0 1292 ------- null} + -t 1.48493 -s 10 -d 7 -p ack -e 40 -c 0 -i 2594 -a 0 -x {10.0 9.0 1292 ------- null} - -t 1.48493 -s 10 -d 7 -p ack -e 40 -c 0 -i 2594 -a 0 -x {10.0 9.0 1292 ------- null} h -t 1.48493 -s 10 -d 7 -p ack -e 40 -c 0 -i 2594 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.48501 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2589 -a 0 -x {9.0 10.0 1299 ------- null} + -t 1.48501 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2589 -a 0 -x {9.0 10.0 1299 ------- null} h -t 1.48501 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2589 -a 0 -x {9.0 10.0 1299 ------- null} r -t 1.48531 -s 0 -d 9 -p ack -e 40 -c 0 -i 2584 -a 0 -x {10.0 9.0 1287 ------- null} + -t 1.48531 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2595 -a 0 -x {9.0 10.0 1302 ------- null} - -t 1.48531 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2595 -a 0 -x {9.0 10.0 1302 ------- null} h -t 1.48531 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2595 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.48539 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2581 -a 0 -x {9.0 10.0 1295 ------- null} - -t 1.48539 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2581 -a 0 -x {9.0 10.0 1295 ------- null} h -t 1.48539 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2581 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.4856 -s 0 -d 9 -p ack -e 40 -c 0 -i 2588 -a 0 -x {10.0 9.0 1289 ------- null} - -t 1.4856 -s 0 -d 9 -p ack -e 40 -c 0 -i 2588 -a 0 -x {10.0 9.0 1289 ------- null} h -t 1.4856 -s 0 -d 9 -p ack -e 40 -c 0 -i 2588 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.48587 -s 10 -d 7 -p ack -e 40 -c 0 -i 2592 -a 0 -x {10.0 9.0 1291 ------- null} + -t 1.48587 -s 7 -d 0 -p ack -e 40 -c 0 -i 2592 -a 0 -x {10.0 9.0 1291 ------- null} h -t 1.48587 -s 7 -d 8 -p ack -e 40 -c 0 -i 2592 -a 0 -x {10.0 9.0 1291 ------- null} r -t 1.48602 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2577 -a 0 -x {9.0 10.0 1293 ------- null} + -t 1.48602 -s 10 -d 7 -p ack -e 40 -c 0 -i 2596 -a 0 -x {10.0 9.0 1293 ------- null} - -t 1.48602 -s 10 -d 7 -p ack -e 40 -c 0 -i 2596 -a 0 -x {10.0 9.0 1293 ------- null} h -t 1.48602 -s 10 -d 7 -p ack -e 40 -c 0 -i 2596 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.48602 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2591 -a 0 -x {9.0 10.0 1300 ------- null} + -t 1.48602 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2591 -a 0 -x {9.0 10.0 1300 ------- null} h -t 1.48602 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2591 -a 0 -x {9.0 10.0 1300 ------- null} + -t 1.48648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2583 -a 0 -x {9.0 10.0 1296 ------- null} - -t 1.48648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2583 -a 0 -x {9.0 10.0 1296 ------- null} h -t 1.48648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2583 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.48658 -s 0 -d 9 -p ack -e 40 -c 0 -i 2586 -a 0 -x {10.0 9.0 1288 ------- null} + -t 1.48658 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2597 -a 0 -x {9.0 10.0 1303 ------- null} - -t 1.48658 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2597 -a 0 -x {9.0 10.0 1303 ------- null} h -t 1.48658 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2597 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.48677 -s 0 -d 9 -p ack -e 40 -c 0 -i 2590 -a 0 -x {10.0 9.0 1290 ------- null} - -t 1.48677 -s 0 -d 9 -p ack -e 40 -c 0 -i 2590 -a 0 -x {10.0 9.0 1290 ------- null} h -t 1.48677 -s 0 -d 9 -p ack -e 40 -c 0 -i 2590 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.48696 -s 10 -d 7 -p ack -e 40 -c 0 -i 2594 -a 0 -x {10.0 9.0 1292 ------- null} + -t 1.48696 -s 7 -d 0 -p ack -e 40 -c 0 -i 2594 -a 0 -x {10.0 9.0 1292 ------- null} h -t 1.48696 -s 7 -d 8 -p ack -e 40 -c 0 -i 2594 -a 0 -x {10.0 9.0 1292 ------- null} r -t 1.48702 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2593 -a 0 -x {9.0 10.0 1301 ------- null} + -t 1.48702 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2593 -a 0 -x {9.0 10.0 1301 ------- null} h -t 1.48702 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2593 -a 0 -x {9.0 10.0 1301 ------- null} r -t 1.4871 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2579 -a 0 -x {9.0 10.0 1294 ------- null} + -t 1.4871 -s 10 -d 7 -p ack -e 40 -c 0 -i 2598 -a 0 -x {10.0 9.0 1294 ------- null} - -t 1.4871 -s 10 -d 7 -p ack -e 40 -c 0 -i 2598 -a 0 -x {10.0 9.0 1294 ------- null} h -t 1.4871 -s 10 -d 7 -p ack -e 40 -c 0 -i 2598 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.48763 -s 0 -d 9 -p ack -e 40 -c 0 -i 2588 -a 0 -x {10.0 9.0 1289 ------- null} + -t 1.48763 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2599 -a 0 -x {9.0 10.0 1304 ------- null} - -t 1.48763 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2599 -a 0 -x {9.0 10.0 1304 ------- null} h -t 1.48763 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2599 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.48773 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2585 -a 0 -x {9.0 10.0 1297 ------- null} - -t 1.48773 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2585 -a 0 -x {9.0 10.0 1297 ------- null} h -t 1.48773 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2585 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.48784 -s 0 -d 9 -p ack -e 40 -c 0 -i 2592 -a 0 -x {10.0 9.0 1291 ------- null} - -t 1.48784 -s 0 -d 9 -p ack -e 40 -c 0 -i 2592 -a 0 -x {10.0 9.0 1291 ------- null} h -t 1.48784 -s 0 -d 9 -p ack -e 40 -c 0 -i 2592 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.48805 -s 10 -d 7 -p ack -e 40 -c 0 -i 2596 -a 0 -x {10.0 9.0 1293 ------- null} + -t 1.48805 -s 7 -d 0 -p ack -e 40 -c 0 -i 2596 -a 0 -x {10.0 9.0 1293 ------- null} h -t 1.48805 -s 7 -d 8 -p ack -e 40 -c 0 -i 2596 -a 0 -x {10.0 9.0 1293 ------- null} r -t 1.48811 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2595 -a 0 -x {9.0 10.0 1302 ------- null} + -t 1.48811 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2595 -a 0 -x {9.0 10.0 1302 ------- null} h -t 1.48811 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2595 -a 0 -x {9.0 10.0 1302 ------- null} r -t 1.48819 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2581 -a 0 -x {9.0 10.0 1295 ------- null} + -t 1.48819 -s 10 -d 7 -p ack -e 40 -c 0 -i 2600 -a 0 -x {10.0 9.0 1295 ------- null} - -t 1.48819 -s 10 -d 7 -p ack -e 40 -c 0 -i 2600 -a 0 -x {10.0 9.0 1295 ------- null} h -t 1.48819 -s 10 -d 7 -p ack -e 40 -c 0 -i 2600 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.4888 -s 0 -d 9 -p ack -e 40 -c 0 -i 2590 -a 0 -x {10.0 9.0 1290 ------- null} + -t 1.4888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2601 -a 0 -x {9.0 10.0 1305 ------- null} - -t 1.4888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2601 -a 0 -x {9.0 10.0 1305 ------- null} h -t 1.4888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2601 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.48882 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2587 -a 0 -x {9.0 10.0 1298 ------- null} - -t 1.48882 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2587 -a 0 -x {9.0 10.0 1298 ------- null} h -t 1.48882 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2587 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.48893 -s 0 -d 9 -p ack -e 40 -c 0 -i 2594 -a 0 -x {10.0 9.0 1292 ------- null} - -t 1.48893 -s 0 -d 9 -p ack -e 40 -c 0 -i 2594 -a 0 -x {10.0 9.0 1292 ------- null} h -t 1.48893 -s 0 -d 9 -p ack -e 40 -c 0 -i 2594 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.48914 -s 10 -d 7 -p ack -e 40 -c 0 -i 2598 -a 0 -x {10.0 9.0 1294 ------- null} + -t 1.48914 -s 7 -d 0 -p ack -e 40 -c 0 -i 2598 -a 0 -x {10.0 9.0 1294 ------- null} h -t 1.48914 -s 7 -d 8 -p ack -e 40 -c 0 -i 2598 -a 0 -x {10.0 9.0 1294 ------- null} r -t 1.48928 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2583 -a 0 -x {9.0 10.0 1296 ------- null} + -t 1.48928 -s 10 -d 7 -p ack -e 40 -c 0 -i 2602 -a 0 -x {10.0 9.0 1296 ------- null} - -t 1.48928 -s 10 -d 7 -p ack -e 40 -c 0 -i 2602 -a 0 -x {10.0 9.0 1296 ------- null} h -t 1.48928 -s 10 -d 7 -p ack -e 40 -c 0 -i 2602 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.48938 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2597 -a 0 -x {9.0 10.0 1303 ------- null} + -t 1.48938 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2597 -a 0 -x {9.0 10.0 1303 ------- null} h -t 1.48938 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2597 -a 0 -x {9.0 10.0 1303 ------- null} r -t 1.48987 -s 0 -d 9 -p ack -e 40 -c 0 -i 2592 -a 0 -x {10.0 9.0 1291 ------- null} + -t 1.48987 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2603 -a 0 -x {9.0 10.0 1306 ------- null} - -t 1.48987 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2603 -a 0 -x {9.0 10.0 1306 ------- null} h -t 1.48987 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2603 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.4899 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2589 -a 0 -x {9.0 10.0 1299 ------- null} - -t 1.4899 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2589 -a 0 -x {9.0 10.0 1299 ------- null} h -t 1.4899 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2589 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.48997 -s 0 -d 9 -p ack -e 40 -c 0 -i 2596 -a 0 -x {10.0 9.0 1293 ------- null} - -t 1.48997 -s 0 -d 9 -p ack -e 40 -c 0 -i 2596 -a 0 -x {10.0 9.0 1293 ------- null} h -t 1.48997 -s 0 -d 9 -p ack -e 40 -c 0 -i 2596 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.49022 -s 10 -d 7 -p ack -e 40 -c 0 -i 2600 -a 0 -x {10.0 9.0 1295 ------- null} + -t 1.49022 -s 7 -d 0 -p ack -e 40 -c 0 -i 2600 -a 0 -x {10.0 9.0 1295 ------- null} h -t 1.49022 -s 7 -d 8 -p ack -e 40 -c 0 -i 2600 -a 0 -x {10.0 9.0 1295 ------- null} r -t 1.49043 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2599 -a 0 -x {9.0 10.0 1304 ------- null} + -t 1.49043 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2599 -a 0 -x {9.0 10.0 1304 ------- null} h -t 1.49043 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2599 -a 0 -x {9.0 10.0 1304 ------- null} r -t 1.49053 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2585 -a 0 -x {9.0 10.0 1297 ------- null} + -t 1.49053 -s 10 -d 7 -p ack -e 40 -c 0 -i 2604 -a 0 -x {10.0 9.0 1297 ------- null} - -t 1.49053 -s 10 -d 7 -p ack -e 40 -c 0 -i 2604 -a 0 -x {10.0 9.0 1297 ------- null} h -t 1.49053 -s 10 -d 7 -p ack -e 40 -c 0 -i 2604 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.49096 -s 0 -d 9 -p ack -e 40 -c 0 -i 2594 -a 0 -x {10.0 9.0 1292 ------- null} + -t 1.49096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2605 -a 0 -x {9.0 10.0 1307 ------- null} - -t 1.49096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2605 -a 0 -x {9.0 10.0 1307 ------- null} h -t 1.49096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2605 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.49099 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2591 -a 0 -x {9.0 10.0 1300 ------- null} - -t 1.49099 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2591 -a 0 -x {9.0 10.0 1300 ------- null} h -t 1.49099 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2591 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.4911 -s 0 -d 9 -p ack -e 40 -c 0 -i 2598 -a 0 -x {10.0 9.0 1294 ------- null} - -t 1.4911 -s 0 -d 9 -p ack -e 40 -c 0 -i 2598 -a 0 -x {10.0 9.0 1294 ------- null} h -t 1.4911 -s 0 -d 9 -p ack -e 40 -c 0 -i 2598 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.49131 -s 10 -d 7 -p ack -e 40 -c 0 -i 2602 -a 0 -x {10.0 9.0 1296 ------- null} + -t 1.49131 -s 7 -d 0 -p ack -e 40 -c 0 -i 2602 -a 0 -x {10.0 9.0 1296 ------- null} h -t 1.49131 -s 7 -d 8 -p ack -e 40 -c 0 -i 2602 -a 0 -x {10.0 9.0 1296 ------- null} r -t 1.4916 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2601 -a 0 -x {9.0 10.0 1305 ------- null} + -t 1.4916 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2601 -a 0 -x {9.0 10.0 1305 ------- null} h -t 1.4916 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2601 -a 0 -x {9.0 10.0 1305 ------- null} r -t 1.49162 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2587 -a 0 -x {9.0 10.0 1298 ------- null} + -t 1.49162 -s 10 -d 7 -p ack -e 40 -c 0 -i 2606 -a 0 -x {10.0 9.0 1298 ------- null} - -t 1.49162 -s 10 -d 7 -p ack -e 40 -c 0 -i 2606 -a 0 -x {10.0 9.0 1298 ------- null} h -t 1.49162 -s 10 -d 7 -p ack -e 40 -c 0 -i 2606 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.492 -s 0 -d 9 -p ack -e 40 -c 0 -i 2596 -a 0 -x {10.0 9.0 1293 ------- null} + -t 1.492 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2607 -a 0 -x {9.0 10.0 1308 ------- null} - -t 1.492 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2607 -a 0 -x {9.0 10.0 1308 ------- null} h -t 1.492 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2607 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.49208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2593 -a 0 -x {9.0 10.0 1301 ------- null} - -t 1.49208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2593 -a 0 -x {9.0 10.0 1301 ------- null} h -t 1.49208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2593 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.4923 -s 0 -d 9 -p ack -e 40 -c 0 -i 2600 -a 0 -x {10.0 9.0 1295 ------- null} - -t 1.4923 -s 0 -d 9 -p ack -e 40 -c 0 -i 2600 -a 0 -x {10.0 9.0 1295 ------- null} h -t 1.4923 -s 0 -d 9 -p ack -e 40 -c 0 -i 2600 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.49256 -s 10 -d 7 -p ack -e 40 -c 0 -i 2604 -a 0 -x {10.0 9.0 1297 ------- null} + -t 1.49256 -s 7 -d 0 -p ack -e 40 -c 0 -i 2604 -a 0 -x {10.0 9.0 1297 ------- null} h -t 1.49256 -s 7 -d 8 -p ack -e 40 -c 0 -i 2604 -a 0 -x {10.0 9.0 1297 ------- null} r -t 1.49267 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2603 -a 0 -x {9.0 10.0 1306 ------- null} + -t 1.49267 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2603 -a 0 -x {9.0 10.0 1306 ------- null} h -t 1.49267 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2603 -a 0 -x {9.0 10.0 1306 ------- null} r -t 1.4927 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2589 -a 0 -x {9.0 10.0 1299 ------- null} + -t 1.4927 -s 10 -d 7 -p ack -e 40 -c 0 -i 2608 -a 0 -x {10.0 9.0 1299 ------- null} - -t 1.4927 -s 10 -d 7 -p ack -e 40 -c 0 -i 2608 -a 0 -x {10.0 9.0 1299 ------- null} h -t 1.4927 -s 10 -d 7 -p ack -e 40 -c 0 -i 2608 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.49314 -s 0 -d 9 -p ack -e 40 -c 0 -i 2598 -a 0 -x {10.0 9.0 1294 ------- null} + -t 1.49314 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2609 -a 0 -x {9.0 10.0 1309 ------- null} - -t 1.49314 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2609 -a 0 -x {9.0 10.0 1309 ------- null} h -t 1.49314 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2609 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.49317 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2595 -a 0 -x {9.0 10.0 1302 ------- null} - -t 1.49317 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2595 -a 0 -x {9.0 10.0 1302 ------- null} h -t 1.49317 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2595 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.49331 -s 0 -d 9 -p ack -e 40 -c 0 -i 2602 -a 0 -x {10.0 9.0 1296 ------- null} - -t 1.49331 -s 0 -d 9 -p ack -e 40 -c 0 -i 2602 -a 0 -x {10.0 9.0 1296 ------- null} h -t 1.49331 -s 0 -d 9 -p ack -e 40 -c 0 -i 2602 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.49365 -s 10 -d 7 -p ack -e 40 -c 0 -i 2606 -a 0 -x {10.0 9.0 1298 ------- null} + -t 1.49365 -s 7 -d 0 -p ack -e 40 -c 0 -i 2606 -a 0 -x {10.0 9.0 1298 ------- null} h -t 1.49365 -s 7 -d 8 -p ack -e 40 -c 0 -i 2606 -a 0 -x {10.0 9.0 1298 ------- null} r -t 1.49376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2605 -a 0 -x {9.0 10.0 1307 ------- null} + -t 1.49376 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2605 -a 0 -x {9.0 10.0 1307 ------- null} h -t 1.49376 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2605 -a 0 -x {9.0 10.0 1307 ------- null} r -t 1.49379 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2591 -a 0 -x {9.0 10.0 1300 ------- null} + -t 1.49379 -s 10 -d 7 -p ack -e 40 -c 0 -i 2610 -a 0 -x {10.0 9.0 1300 ------- null} - -t 1.49379 -s 10 -d 7 -p ack -e 40 -c 0 -i 2610 -a 0 -x {10.0 9.0 1300 ------- null} h -t 1.49379 -s 10 -d 7 -p ack -e 40 -c 0 -i 2610 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.49426 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2597 -a 0 -x {9.0 10.0 1303 ------- null} - -t 1.49426 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2597 -a 0 -x {9.0 10.0 1303 ------- null} h -t 1.49426 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2597 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.49434 -s 0 -d 9 -p ack -e 40 -c 0 -i 2600 -a 0 -x {10.0 9.0 1295 ------- null} + -t 1.49434 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2611 -a 0 -x {9.0 10.0 1310 ------- null} - -t 1.49434 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2611 -a 0 -x {9.0 10.0 1310 ------- null} h -t 1.49434 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2611 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.49446 -s 0 -d 9 -p ack -e 40 -c 0 -i 2604 -a 0 -x {10.0 9.0 1297 ------- null} - -t 1.49446 -s 0 -d 9 -p ack -e 40 -c 0 -i 2604 -a 0 -x {10.0 9.0 1297 ------- null} h -t 1.49446 -s 0 -d 9 -p ack -e 40 -c 0 -i 2604 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.49474 -s 10 -d 7 -p ack -e 40 -c 0 -i 2608 -a 0 -x {10.0 9.0 1299 ------- null} + -t 1.49474 -s 7 -d 0 -p ack -e 40 -c 0 -i 2608 -a 0 -x {10.0 9.0 1299 ------- null} h -t 1.49474 -s 7 -d 8 -p ack -e 40 -c 0 -i 2608 -a 0 -x {10.0 9.0 1299 ------- null} r -t 1.4948 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2607 -a 0 -x {9.0 10.0 1308 ------- null} + -t 1.4948 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2607 -a 0 -x {9.0 10.0 1308 ------- null} h -t 1.4948 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2607 -a 0 -x {9.0 10.0 1308 ------- null} r -t 1.49488 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2593 -a 0 -x {9.0 10.0 1301 ------- null} + -t 1.49488 -s 10 -d 7 -p ack -e 40 -c 0 -i 2612 -a 0 -x {10.0 9.0 1301 ------- null} - -t 1.49488 -s 10 -d 7 -p ack -e 40 -c 0 -i 2612 -a 0 -x {10.0 9.0 1301 ------- null} h -t 1.49488 -s 10 -d 7 -p ack -e 40 -c 0 -i 2612 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.49534 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2599 -a 0 -x {9.0 10.0 1304 ------- null} - -t 1.49534 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2599 -a 0 -x {9.0 10.0 1304 ------- null} h -t 1.49534 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2599 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.49534 -s 0 -d 9 -p ack -e 40 -c 0 -i 2602 -a 0 -x {10.0 9.0 1296 ------- null} + -t 1.49534 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2613 -a 0 -x {9.0 10.0 1311 ------- null} - -t 1.49534 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2613 -a 0 -x {9.0 10.0 1311 ------- null} h -t 1.49534 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2613 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.49562 -s 0 -d 9 -p ack -e 40 -c 0 -i 2606 -a 0 -x {10.0 9.0 1298 ------- null} - -t 1.49562 -s 0 -d 9 -p ack -e 40 -c 0 -i 2606 -a 0 -x {10.0 9.0 1298 ------- null} h -t 1.49562 -s 0 -d 9 -p ack -e 40 -c 0 -i 2606 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.49582 -s 10 -d 7 -p ack -e 40 -c 0 -i 2610 -a 0 -x {10.0 9.0 1300 ------- null} + -t 1.49582 -s 7 -d 0 -p ack -e 40 -c 0 -i 2610 -a 0 -x {10.0 9.0 1300 ------- null} h -t 1.49582 -s 7 -d 8 -p ack -e 40 -c 0 -i 2610 -a 0 -x {10.0 9.0 1300 ------- null} r -t 1.49594 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2609 -a 0 -x {9.0 10.0 1309 ------- null} + -t 1.49594 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2609 -a 0 -x {9.0 10.0 1309 ------- null} h -t 1.49594 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2609 -a 0 -x {9.0 10.0 1309 ------- null} r -t 1.49597 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2595 -a 0 -x {9.0 10.0 1302 ------- null} + -t 1.49597 -s 10 -d 7 -p ack -e 40 -c 0 -i 2614 -a 0 -x {10.0 9.0 1302 ------- null} - -t 1.49597 -s 10 -d 7 -p ack -e 40 -c 0 -i 2614 -a 0 -x {10.0 9.0 1302 ------- null} h -t 1.49597 -s 10 -d 7 -p ack -e 40 -c 0 -i 2614 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.4965 -s 0 -d 9 -p ack -e 40 -c 0 -i 2604 -a 0 -x {10.0 9.0 1297 ------- null} + -t 1.4965 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2615 -a 0 -x {9.0 10.0 1312 ------- null} - -t 1.4965 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2615 -a 0 -x {9.0 10.0 1312 ------- null} h -t 1.4965 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2615 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.4965 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2601 -a 0 -x {9.0 10.0 1305 ------- null} - -t 1.4965 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2601 -a 0 -x {9.0 10.0 1305 ------- null} h -t 1.4965 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2601 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.49678 -s 0 -d 9 -p ack -e 40 -c 0 -i 2608 -a 0 -x {10.0 9.0 1299 ------- null} - -t 1.49678 -s 0 -d 9 -p ack -e 40 -c 0 -i 2608 -a 0 -x {10.0 9.0 1299 ------- null} h -t 1.49678 -s 0 -d 9 -p ack -e 40 -c 0 -i 2608 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.49691 -s 10 -d 7 -p ack -e 40 -c 0 -i 2612 -a 0 -x {10.0 9.0 1301 ------- null} + -t 1.49691 -s 7 -d 0 -p ack -e 40 -c 0 -i 2612 -a 0 -x {10.0 9.0 1301 ------- null} h -t 1.49691 -s 7 -d 8 -p ack -e 40 -c 0 -i 2612 -a 0 -x {10.0 9.0 1301 ------- null} r -t 1.49706 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2597 -a 0 -x {9.0 10.0 1303 ------- null} + -t 1.49706 -s 10 -d 7 -p ack -e 40 -c 0 -i 2616 -a 0 -x {10.0 9.0 1303 ------- null} - -t 1.49706 -s 10 -d 7 -p ack -e 40 -c 0 -i 2616 -a 0 -x {10.0 9.0 1303 ------- null} h -t 1.49706 -s 10 -d 7 -p ack -e 40 -c 0 -i 2616 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.49714 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2611 -a 0 -x {9.0 10.0 1310 ------- null} + -t 1.49714 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2611 -a 0 -x {9.0 10.0 1310 ------- null} h -t 1.49714 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2611 -a 0 -x {9.0 10.0 1310 ------- null} r -t 1.49765 -s 0 -d 9 -p ack -e 40 -c 0 -i 2606 -a 0 -x {10.0 9.0 1298 ------- null} + -t 1.49765 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2617 -a 0 -x {9.0 10.0 1313 ------- null} - -t 1.49765 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2617 -a 0 -x {9.0 10.0 1313 ------- null} h -t 1.49765 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2617 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.49774 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2603 -a 0 -x {9.0 10.0 1306 ------- null} - -t 1.49774 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2603 -a 0 -x {9.0 10.0 1306 ------- null} h -t 1.49774 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2603 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.49782 -s 0 -d 9 -p ack -e 40 -c 0 -i 2610 -a 0 -x {10.0 9.0 1300 ------- null} - -t 1.49782 -s 0 -d 9 -p ack -e 40 -c 0 -i 2610 -a 0 -x {10.0 9.0 1300 ------- null} h -t 1.49782 -s 0 -d 9 -p ack -e 40 -c 0 -i 2610 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.498 -s 10 -d 7 -p ack -e 40 -c 0 -i 2614 -a 0 -x {10.0 9.0 1302 ------- null} + -t 1.498 -s 7 -d 0 -p ack -e 40 -c 0 -i 2614 -a 0 -x {10.0 9.0 1302 ------- null} h -t 1.498 -s 7 -d 8 -p ack -e 40 -c 0 -i 2614 -a 0 -x {10.0 9.0 1302 ------- null} r -t 1.49814 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2599 -a 0 -x {9.0 10.0 1304 ------- null} + -t 1.49814 -s 10 -d 7 -p ack -e 40 -c 0 -i 2618 -a 0 -x {10.0 9.0 1304 ------- null} - -t 1.49814 -s 10 -d 7 -p ack -e 40 -c 0 -i 2618 -a 0 -x {10.0 9.0 1304 ------- null} h -t 1.49814 -s 10 -d 7 -p ack -e 40 -c 0 -i 2618 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.49814 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2613 -a 0 -x {9.0 10.0 1311 ------- null} + -t 1.49814 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2613 -a 0 -x {9.0 10.0 1311 ------- null} h -t 1.49814 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2613 -a 0 -x {9.0 10.0 1311 ------- null} r -t 1.49882 -s 0 -d 9 -p ack -e 40 -c 0 -i 2608 -a 0 -x {10.0 9.0 1299 ------- null} + -t 1.49882 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2619 -a 0 -x {9.0 10.0 1314 ------- null} - -t 1.49882 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2619 -a 0 -x {9.0 10.0 1314 ------- null} h -t 1.49882 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2619 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.49883 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2605 -a 0 -x {9.0 10.0 1307 ------- null} - -t 1.49883 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2605 -a 0 -x {9.0 10.0 1307 ------- null} h -t 1.49883 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2605 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.49907 -s 0 -d 9 -p ack -e 40 -c 0 -i 2612 -a 0 -x {10.0 9.0 1301 ------- null} - -t 1.49907 -s 0 -d 9 -p ack -e 40 -c 0 -i 2612 -a 0 -x {10.0 9.0 1301 ------- null} h -t 1.49907 -s 0 -d 9 -p ack -e 40 -c 0 -i 2612 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.49909 -s 10 -d 7 -p ack -e 40 -c 0 -i 2616 -a 0 -x {10.0 9.0 1303 ------- null} + -t 1.49909 -s 7 -d 0 -p ack -e 40 -c 0 -i 2616 -a 0 -x {10.0 9.0 1303 ------- null} h -t 1.49909 -s 7 -d 8 -p ack -e 40 -c 0 -i 2616 -a 0 -x {10.0 9.0 1303 ------- null} r -t 1.4993 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2615 -a 0 -x {9.0 10.0 1312 ------- null} + -t 1.4993 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2615 -a 0 -x {9.0 10.0 1312 ------- null} h -t 1.4993 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2615 -a 0 -x {9.0 10.0 1312 ------- null} r -t 1.4993 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2601 -a 0 -x {9.0 10.0 1305 ------- null} + -t 1.4993 -s 10 -d 7 -p ack -e 40 -c 0 -i 2620 -a 0 -x {10.0 9.0 1305 ------- null} - -t 1.4993 -s 10 -d 7 -p ack -e 40 -c 0 -i 2620 -a 0 -x {10.0 9.0 1305 ------- null} h -t 1.4993 -s 10 -d 7 -p ack -e 40 -c 0 -i 2620 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.49986 -s 0 -d 9 -p ack -e 40 -c 0 -i 2610 -a 0 -x {10.0 9.0 1300 ------- null} + -t 1.49986 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2621 -a 0 -x {9.0 10.0 1315 ------- null} - -t 1.49986 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2621 -a 0 -x {9.0 10.0 1315 ------- null} h -t 1.49986 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2621 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.49992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2607 -a 0 -x {9.0 10.0 1308 ------- null} - -t 1.49992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2607 -a 0 -x {9.0 10.0 1308 ------- null} h -t 1.49992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2607 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.50014 -s 0 -d 9 -p ack -e 40 -c 0 -i 2614 -a 0 -x {10.0 9.0 1302 ------- null} - -t 1.50014 -s 0 -d 9 -p ack -e 40 -c 0 -i 2614 -a 0 -x {10.0 9.0 1302 ------- null} h -t 1.50014 -s 0 -d 9 -p ack -e 40 -c 0 -i 2614 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.50018 -s 10 -d 7 -p ack -e 40 -c 0 -i 2618 -a 0 -x {10.0 9.0 1304 ------- null} + -t 1.50018 -s 7 -d 0 -p ack -e 40 -c 0 -i 2618 -a 0 -x {10.0 9.0 1304 ------- null} h -t 1.50018 -s 7 -d 8 -p ack -e 40 -c 0 -i 2618 -a 0 -x {10.0 9.0 1304 ------- null} r -t 1.50045 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2617 -a 0 -x {9.0 10.0 1313 ------- null} + -t 1.50045 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2617 -a 0 -x {9.0 10.0 1313 ------- null} h -t 1.50045 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2617 -a 0 -x {9.0 10.0 1313 ------- null} r -t 1.50054 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2603 -a 0 -x {9.0 10.0 1306 ------- null} + -t 1.50054 -s 10 -d 7 -p ack -e 40 -c 0 -i 2622 -a 0 -x {10.0 9.0 1306 ------- null} - -t 1.50054 -s 10 -d 7 -p ack -e 40 -c 0 -i 2622 -a 0 -x {10.0 9.0 1306 ------- null} h -t 1.50054 -s 10 -d 7 -p ack -e 40 -c 0 -i 2622 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.50101 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2609 -a 0 -x {9.0 10.0 1309 ------- null} - -t 1.50101 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2609 -a 0 -x {9.0 10.0 1309 ------- null} h -t 1.50101 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2609 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.5011 -s 0 -d 9 -p ack -e 40 -c 0 -i 2612 -a 0 -x {10.0 9.0 1301 ------- null} + -t 1.5011 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2623 -a 0 -x {9.0 10.0 1316 ------- null} - -t 1.5011 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2623 -a 0 -x {9.0 10.0 1316 ------- null} h -t 1.5011 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2623 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.50114 -s 0 -d 9 -p ack -e 40 -c 0 -i 2616 -a 0 -x {10.0 9.0 1303 ------- null} - -t 1.50114 -s 0 -d 9 -p ack -e 40 -c 0 -i 2616 -a 0 -x {10.0 9.0 1303 ------- null} h -t 1.50114 -s 0 -d 9 -p ack -e 40 -c 0 -i 2616 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.50133 -s 10 -d 7 -p ack -e 40 -c 0 -i 2620 -a 0 -x {10.0 9.0 1305 ------- null} + -t 1.50133 -s 7 -d 0 -p ack -e 40 -c 0 -i 2620 -a 0 -x {10.0 9.0 1305 ------- null} h -t 1.50133 -s 7 -d 8 -p ack -e 40 -c 0 -i 2620 -a 0 -x {10.0 9.0 1305 ------- null} r -t 1.50162 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2619 -a 0 -x {9.0 10.0 1314 ------- null} + -t 1.50162 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2619 -a 0 -x {9.0 10.0 1314 ------- null} h -t 1.50162 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2619 -a 0 -x {9.0 10.0 1314 ------- null} r -t 1.50163 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2605 -a 0 -x {9.0 10.0 1307 ------- null} + -t 1.50163 -s 10 -d 7 -p ack -e 40 -c 0 -i 2624 -a 0 -x {10.0 9.0 1307 ------- null} - -t 1.50163 -s 10 -d 7 -p ack -e 40 -c 0 -i 2624 -a 0 -x {10.0 9.0 1307 ------- null} h -t 1.50163 -s 10 -d 7 -p ack -e 40 -c 0 -i 2624 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.5021 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2611 -a 0 -x {9.0 10.0 1310 ------- null} - -t 1.5021 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2611 -a 0 -x {9.0 10.0 1310 ------- null} h -t 1.5021 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2611 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.50218 -s 0 -d 9 -p ack -e 40 -c 0 -i 2614 -a 0 -x {10.0 9.0 1302 ------- null} + -t 1.50218 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2625 -a 0 -x {9.0 10.0 1317 ------- null} - -t 1.50218 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2625 -a 0 -x {9.0 10.0 1317 ------- null} h -t 1.50218 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2625 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.50229 -s 0 -d 9 -p ack -e 40 -c 0 -i 2618 -a 0 -x {10.0 9.0 1304 ------- null} - -t 1.50229 -s 0 -d 9 -p ack -e 40 -c 0 -i 2618 -a 0 -x {10.0 9.0 1304 ------- null} h -t 1.50229 -s 0 -d 9 -p ack -e 40 -c 0 -i 2618 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.50258 -s 10 -d 7 -p ack -e 40 -c 0 -i 2622 -a 0 -x {10.0 9.0 1306 ------- null} + -t 1.50258 -s 7 -d 0 -p ack -e 40 -c 0 -i 2622 -a 0 -x {10.0 9.0 1306 ------- null} h -t 1.50258 -s 7 -d 8 -p ack -e 40 -c 0 -i 2622 -a 0 -x {10.0 9.0 1306 ------- null} r -t 1.50266 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2621 -a 0 -x {9.0 10.0 1315 ------- null} + -t 1.50266 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2621 -a 0 -x {9.0 10.0 1315 ------- null} h -t 1.50266 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2621 -a 0 -x {9.0 10.0 1315 ------- null} r -t 1.50272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2607 -a 0 -x {9.0 10.0 1308 ------- null} + -t 1.50272 -s 10 -d 7 -p ack -e 40 -c 0 -i 2626 -a 0 -x {10.0 9.0 1308 ------- null} - -t 1.50272 -s 10 -d 7 -p ack -e 40 -c 0 -i 2626 -a 0 -x {10.0 9.0 1308 ------- null} h -t 1.50272 -s 10 -d 7 -p ack -e 40 -c 0 -i 2626 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.50317 -s 0 -d 9 -p ack -e 40 -c 0 -i 2616 -a 0 -x {10.0 9.0 1303 ------- null} + -t 1.50317 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2627 -a 0 -x {9.0 10.0 1318 ------- null} - -t 1.50317 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2627 -a 0 -x {9.0 10.0 1318 ------- null} h -t 1.50317 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2627 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.50318 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2613 -a 0 -x {9.0 10.0 1311 ------- null} - -t 1.50318 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2613 -a 0 -x {9.0 10.0 1311 ------- null} h -t 1.50318 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2613 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.50326 -s 0 -d 9 -p ack -e 40 -c 0 -i 2620 -a 0 -x {10.0 9.0 1305 ------- null} - -t 1.50326 -s 0 -d 9 -p ack -e 40 -c 0 -i 2620 -a 0 -x {10.0 9.0 1305 ------- null} h -t 1.50326 -s 0 -d 9 -p ack -e 40 -c 0 -i 2620 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.50366 -s 10 -d 7 -p ack -e 40 -c 0 -i 2624 -a 0 -x {10.0 9.0 1307 ------- null} + -t 1.50366 -s 7 -d 0 -p ack -e 40 -c 0 -i 2624 -a 0 -x {10.0 9.0 1307 ------- null} h -t 1.50366 -s 7 -d 8 -p ack -e 40 -c 0 -i 2624 -a 0 -x {10.0 9.0 1307 ------- null} r -t 1.50381 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2609 -a 0 -x {9.0 10.0 1309 ------- null} + -t 1.50381 -s 10 -d 7 -p ack -e 40 -c 0 -i 2628 -a 0 -x {10.0 9.0 1309 ------- null} - -t 1.50381 -s 10 -d 7 -p ack -e 40 -c 0 -i 2628 -a 0 -x {10.0 9.0 1309 ------- null} h -t 1.50381 -s 10 -d 7 -p ack -e 40 -c 0 -i 2628 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.5039 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2623 -a 0 -x {9.0 10.0 1316 ------- null} + -t 1.5039 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2623 -a 0 -x {9.0 10.0 1316 ------- null} h -t 1.5039 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2623 -a 0 -x {9.0 10.0 1316 ------- null} + -t 1.50427 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2615 -a 0 -x {9.0 10.0 1312 ------- null} - -t 1.50427 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2615 -a 0 -x {9.0 10.0 1312 ------- null} h -t 1.50427 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2615 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.50432 -s 0 -d 9 -p ack -e 40 -c 0 -i 2618 -a 0 -x {10.0 9.0 1304 ------- null} + -t 1.50432 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2629 -a 0 -x {9.0 10.0 1319 ------- null} - -t 1.50432 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2629 -a 0 -x {9.0 10.0 1319 ------- null} h -t 1.50432 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2629 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.50451 -s 0 -d 9 -p ack -e 40 -c 0 -i 2622 -a 0 -x {10.0 9.0 1306 ------- null} - -t 1.50451 -s 0 -d 9 -p ack -e 40 -c 0 -i 2622 -a 0 -x {10.0 9.0 1306 ------- null} h -t 1.50451 -s 0 -d 9 -p ack -e 40 -c 0 -i 2622 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.50475 -s 10 -d 7 -p ack -e 40 -c 0 -i 2626 -a 0 -x {10.0 9.0 1308 ------- null} + -t 1.50475 -s 7 -d 0 -p ack -e 40 -c 0 -i 2626 -a 0 -x {10.0 9.0 1308 ------- null} h -t 1.50475 -s 7 -d 8 -p ack -e 40 -c 0 -i 2626 -a 0 -x {10.0 9.0 1308 ------- null} r -t 1.5049 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2611 -a 0 -x {9.0 10.0 1310 ------- null} + -t 1.5049 -s 10 -d 7 -p ack -e 40 -c 0 -i 2630 -a 0 -x {10.0 9.0 1310 ------- null} - -t 1.5049 -s 10 -d 7 -p ack -e 40 -c 0 -i 2630 -a 0 -x {10.0 9.0 1310 ------- null} h -t 1.5049 -s 10 -d 7 -p ack -e 40 -c 0 -i 2630 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.50498 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2625 -a 0 -x {9.0 10.0 1317 ------- null} + -t 1.50498 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2625 -a 0 -x {9.0 10.0 1317 ------- null} h -t 1.50498 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2625 -a 0 -x {9.0 10.0 1317 ------- null} r -t 1.5053 -s 0 -d 9 -p ack -e 40 -c 0 -i 2620 -a 0 -x {10.0 9.0 1305 ------- null} + -t 1.5053 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2631 -a 0 -x {9.0 10.0 1320 ------- null} - -t 1.5053 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2631 -a 0 -x {9.0 10.0 1320 ------- null} h -t 1.5053 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2631 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.50536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2617 -a 0 -x {9.0 10.0 1313 ------- null} - -t 1.50536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2617 -a 0 -x {9.0 10.0 1313 ------- null} h -t 1.50536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2617 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.50555 -s 0 -d 9 -p ack -e 40 -c 0 -i 2624 -a 0 -x {10.0 9.0 1307 ------- null} - -t 1.50555 -s 0 -d 9 -p ack -e 40 -c 0 -i 2624 -a 0 -x {10.0 9.0 1307 ------- null} h -t 1.50555 -s 0 -d 9 -p ack -e 40 -c 0 -i 2624 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.50584 -s 10 -d 7 -p ack -e 40 -c 0 -i 2628 -a 0 -x {10.0 9.0 1309 ------- null} + -t 1.50584 -s 7 -d 0 -p ack -e 40 -c 0 -i 2628 -a 0 -x {10.0 9.0 1309 ------- null} h -t 1.50584 -s 7 -d 8 -p ack -e 40 -c 0 -i 2628 -a 0 -x {10.0 9.0 1309 ------- null} r -t 1.50597 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2627 -a 0 -x {9.0 10.0 1318 ------- null} + -t 1.50597 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2627 -a 0 -x {9.0 10.0 1318 ------- null} h -t 1.50597 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2627 -a 0 -x {9.0 10.0 1318 ------- null} r -t 1.50598 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2613 -a 0 -x {9.0 10.0 1311 ------- null} + -t 1.50598 -s 10 -d 7 -p ack -e 40 -c 0 -i 2632 -a 0 -x {10.0 9.0 1311 ------- null} - -t 1.50598 -s 10 -d 7 -p ack -e 40 -c 0 -i 2632 -a 0 -x {10.0 9.0 1311 ------- null} h -t 1.50598 -s 10 -d 7 -p ack -e 40 -c 0 -i 2632 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.50645 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2619 -a 0 -x {9.0 10.0 1314 ------- null} - -t 1.50645 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2619 -a 0 -x {9.0 10.0 1314 ------- null} h -t 1.50645 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2619 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.50654 -s 0 -d 9 -p ack -e 40 -c 0 -i 2622 -a 0 -x {10.0 9.0 1306 ------- null} + -t 1.50654 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2633 -a 0 -x {9.0 10.0 1321 ------- null} - -t 1.50654 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2633 -a 0 -x {9.0 10.0 1321 ------- null} h -t 1.50654 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2633 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.50664 -s 0 -d 9 -p ack -e 40 -c 0 -i 2626 -a 0 -x {10.0 9.0 1308 ------- null} - -t 1.50664 -s 0 -d 9 -p ack -e 40 -c 0 -i 2626 -a 0 -x {10.0 9.0 1308 ------- null} h -t 1.50664 -s 0 -d 9 -p ack -e 40 -c 0 -i 2626 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.50693 -s 10 -d 7 -p ack -e 40 -c 0 -i 2630 -a 0 -x {10.0 9.0 1310 ------- null} + -t 1.50693 -s 7 -d 0 -p ack -e 40 -c 0 -i 2630 -a 0 -x {10.0 9.0 1310 ------- null} h -t 1.50693 -s 7 -d 8 -p ack -e 40 -c 0 -i 2630 -a 0 -x {10.0 9.0 1310 ------- null} r -t 1.50707 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2615 -a 0 -x {9.0 10.0 1312 ------- null} + -t 1.50707 -s 10 -d 7 -p ack -e 40 -c 0 -i 2634 -a 0 -x {10.0 9.0 1312 ------- null} - -t 1.50707 -s 10 -d 7 -p ack -e 40 -c 0 -i 2634 -a 0 -x {10.0 9.0 1312 ------- null} h -t 1.50707 -s 10 -d 7 -p ack -e 40 -c 0 -i 2634 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.50712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2629 -a 0 -x {9.0 10.0 1319 ------- null} + -t 1.50712 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2629 -a 0 -x {9.0 10.0 1319 ------- null} h -t 1.50712 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2629 -a 0 -x {9.0 10.0 1319 ------- null} + -t 1.50754 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2621 -a 0 -x {9.0 10.0 1315 ------- null} - -t 1.50754 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2621 -a 0 -x {9.0 10.0 1315 ------- null} h -t 1.50754 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2621 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.50758 -s 0 -d 9 -p ack -e 40 -c 0 -i 2624 -a 0 -x {10.0 9.0 1307 ------- null} + -t 1.50758 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2635 -a 0 -x {9.0 10.0 1322 ------- null} - -t 1.50758 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2635 -a 0 -x {9.0 10.0 1322 ------- null} h -t 1.50758 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2635 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.50784 -s 0 -d 9 -p ack -e 40 -c 0 -i 2628 -a 0 -x {10.0 9.0 1309 ------- null} - -t 1.50784 -s 0 -d 9 -p ack -e 40 -c 0 -i 2628 -a 0 -x {10.0 9.0 1309 ------- null} h -t 1.50784 -s 0 -d 9 -p ack -e 40 -c 0 -i 2628 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.50802 -s 10 -d 7 -p ack -e 40 -c 0 -i 2632 -a 0 -x {10.0 9.0 1311 ------- null} + -t 1.50802 -s 7 -d 0 -p ack -e 40 -c 0 -i 2632 -a 0 -x {10.0 9.0 1311 ------- null} h -t 1.50802 -s 7 -d 8 -p ack -e 40 -c 0 -i 2632 -a 0 -x {10.0 9.0 1311 ------- null} r -t 1.5081 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2631 -a 0 -x {9.0 10.0 1320 ------- null} + -t 1.5081 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2631 -a 0 -x {9.0 10.0 1320 ------- null} h -t 1.5081 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2631 -a 0 -x {9.0 10.0 1320 ------- null} r -t 1.50816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2617 -a 0 -x {9.0 10.0 1313 ------- null} + -t 1.50816 -s 10 -d 7 -p ack -e 40 -c 0 -i 2636 -a 0 -x {10.0 9.0 1313 ------- null} - -t 1.50816 -s 10 -d 7 -p ack -e 40 -c 0 -i 2636 -a 0 -x {10.0 9.0 1313 ------- null} h -t 1.50816 -s 10 -d 7 -p ack -e 40 -c 0 -i 2636 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.50867 -s 0 -d 9 -p ack -e 40 -c 0 -i 2626 -a 0 -x {10.0 9.0 1308 ------- null} + -t 1.50867 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2637 -a 0 -x {9.0 10.0 1323 ------- null} - -t 1.50867 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2637 -a 0 -x {9.0 10.0 1323 ------- null} h -t 1.50867 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2637 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.50891 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2623 -a 0 -x {9.0 10.0 1316 ------- null} - -t 1.50891 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2623 -a 0 -x {9.0 10.0 1316 ------- null} h -t 1.50891 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2623 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.5091 -s 10 -d 7 -p ack -e 40 -c 0 -i 2634 -a 0 -x {10.0 9.0 1312 ------- null} + -t 1.5091 -s 7 -d 0 -p ack -e 40 -c 0 -i 2634 -a 0 -x {10.0 9.0 1312 ------- null} h -t 1.5091 -s 7 -d 8 -p ack -e 40 -c 0 -i 2634 -a 0 -x {10.0 9.0 1312 ------- null} + -t 1.50912 -s 0 -d 9 -p ack -e 40 -c 0 -i 2630 -a 0 -x {10.0 9.0 1310 ------- null} - -t 1.50912 -s 0 -d 9 -p ack -e 40 -c 0 -i 2630 -a 0 -x {10.0 9.0 1310 ------- null} h -t 1.50912 -s 0 -d 9 -p ack -e 40 -c 0 -i 2630 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.50925 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2619 -a 0 -x {9.0 10.0 1314 ------- null} + -t 1.50925 -s 10 -d 7 -p ack -e 40 -c 0 -i 2638 -a 0 -x {10.0 9.0 1314 ------- null} - -t 1.50925 -s 10 -d 7 -p ack -e 40 -c 0 -i 2638 -a 0 -x {10.0 9.0 1314 ------- null} h -t 1.50925 -s 10 -d 7 -p ack -e 40 -c 0 -i 2638 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.50934 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2633 -a 0 -x {9.0 10.0 1321 ------- null} + -t 1.50934 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2633 -a 0 -x {9.0 10.0 1321 ------- null} h -t 1.50934 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2633 -a 0 -x {9.0 10.0 1321 ------- null} r -t 1.50987 -s 0 -d 9 -p ack -e 40 -c 0 -i 2628 -a 0 -x {10.0 9.0 1309 ------- null} + -t 1.50987 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2639 -a 0 -x {9.0 10.0 1324 ------- null} - -t 1.50987 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2639 -a 0 -x {9.0 10.0 1324 ------- null} h -t 1.50987 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2639 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.51 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2625 -a 0 -x {9.0 10.0 1317 ------- null} - -t 1.51 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2625 -a 0 -x {9.0 10.0 1317 ------- null} h -t 1.51 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2625 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.51019 -s 10 -d 7 -p ack -e 40 -c 0 -i 2636 -a 0 -x {10.0 9.0 1313 ------- null} + -t 1.51019 -s 7 -d 0 -p ack -e 40 -c 0 -i 2636 -a 0 -x {10.0 9.0 1313 ------- null} h -t 1.51019 -s 7 -d 8 -p ack -e 40 -c 0 -i 2636 -a 0 -x {10.0 9.0 1313 ------- null} + -t 1.51022 -s 0 -d 9 -p ack -e 40 -c 0 -i 2632 -a 0 -x {10.0 9.0 1311 ------- null} - -t 1.51022 -s 0 -d 9 -p ack -e 40 -c 0 -i 2632 -a 0 -x {10.0 9.0 1311 ------- null} h -t 1.51022 -s 0 -d 9 -p ack -e 40 -c 0 -i 2632 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.51034 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2621 -a 0 -x {9.0 10.0 1315 ------- null} + -t 1.51034 -s 10 -d 7 -p ack -e 40 -c 0 -i 2640 -a 0 -x {10.0 9.0 1315 ------- null} - -t 1.51034 -s 10 -d 7 -p ack -e 40 -c 0 -i 2640 -a 0 -x {10.0 9.0 1315 ------- null} h -t 1.51034 -s 10 -d 7 -p ack -e 40 -c 0 -i 2640 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.51038 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2635 -a 0 -x {9.0 10.0 1322 ------- null} + -t 1.51038 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2635 -a 0 -x {9.0 10.0 1322 ------- null} h -t 1.51038 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2635 -a 0 -x {9.0 10.0 1322 ------- null} + -t 1.51109 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2627 -a 0 -x {9.0 10.0 1318 ------- null} - -t 1.51109 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2627 -a 0 -x {9.0 10.0 1318 ------- null} h -t 1.51109 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2627 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.51115 -s 0 -d 9 -p ack -e 40 -c 0 -i 2630 -a 0 -x {10.0 9.0 1310 ------- null} + -t 1.51115 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2641 -a 0 -x {9.0 10.0 1325 ------- null} - -t 1.51115 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2641 -a 0 -x {9.0 10.0 1325 ------- null} h -t 1.51115 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2641 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.51115 -s 0 -d 9 -p ack -e 40 -c 0 -i 2634 -a 0 -x {10.0 9.0 1312 ------- null} - -t 1.51115 -s 0 -d 9 -p ack -e 40 -c 0 -i 2634 -a 0 -x {10.0 9.0 1312 ------- null} h -t 1.51115 -s 0 -d 9 -p ack -e 40 -c 0 -i 2634 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.51128 -s 10 -d 7 -p ack -e 40 -c 0 -i 2638 -a 0 -x {10.0 9.0 1314 ------- null} + -t 1.51128 -s 7 -d 0 -p ack -e 40 -c 0 -i 2638 -a 0 -x {10.0 9.0 1314 ------- null} h -t 1.51128 -s 7 -d 8 -p ack -e 40 -c 0 -i 2638 -a 0 -x {10.0 9.0 1314 ------- null} r -t 1.51147 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2637 -a 0 -x {9.0 10.0 1323 ------- null} + -t 1.51147 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2637 -a 0 -x {9.0 10.0 1323 ------- null} h -t 1.51147 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2637 -a 0 -x {9.0 10.0 1323 ------- null} r -t 1.51171 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2623 -a 0 -x {9.0 10.0 1316 ------- null} + -t 1.51171 -s 10 -d 7 -p ack -e 40 -c 0 -i 2642 -a 0 -x {10.0 9.0 1316 ------- null} - -t 1.51171 -s 10 -d 7 -p ack -e 40 -c 0 -i 2642 -a 0 -x {10.0 9.0 1316 ------- null} h -t 1.51171 -s 10 -d 7 -p ack -e 40 -c 0 -i 2642 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.51218 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2629 -a 0 -x {9.0 10.0 1319 ------- null} - -t 1.51218 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2629 -a 0 -x {9.0 10.0 1319 ------- null} h -t 1.51218 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2629 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.51226 -s 0 -d 9 -p ack -e 40 -c 0 -i 2632 -a 0 -x {10.0 9.0 1311 ------- null} + -t 1.51226 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2643 -a 0 -x {9.0 10.0 1326 ------- null} - -t 1.51226 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2643 -a 0 -x {9.0 10.0 1326 ------- null} h -t 1.51226 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2643 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.51235 -s 0 -d 9 -p ack -e 40 -c 0 -i 2636 -a 0 -x {10.0 9.0 1313 ------- null} - -t 1.51235 -s 0 -d 9 -p ack -e 40 -c 0 -i 2636 -a 0 -x {10.0 9.0 1313 ------- null} h -t 1.51235 -s 0 -d 9 -p ack -e 40 -c 0 -i 2636 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.51237 -s 10 -d 7 -p ack -e 40 -c 0 -i 2640 -a 0 -x {10.0 9.0 1315 ------- null} + -t 1.51237 -s 7 -d 0 -p ack -e 40 -c 0 -i 2640 -a 0 -x {10.0 9.0 1315 ------- null} h -t 1.51237 -s 7 -d 8 -p ack -e 40 -c 0 -i 2640 -a 0 -x {10.0 9.0 1315 ------- null} r -t 1.51267 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2639 -a 0 -x {9.0 10.0 1324 ------- null} + -t 1.51267 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2639 -a 0 -x {9.0 10.0 1324 ------- null} h -t 1.51267 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2639 -a 0 -x {9.0 10.0 1324 ------- null} r -t 1.5128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2625 -a 0 -x {9.0 10.0 1317 ------- null} + -t 1.5128 -s 10 -d 7 -p ack -e 40 -c 0 -i 2644 -a 0 -x {10.0 9.0 1317 ------- null} - -t 1.5128 -s 10 -d 7 -p ack -e 40 -c 0 -i 2644 -a 0 -x {10.0 9.0 1317 ------- null} h -t 1.5128 -s 10 -d 7 -p ack -e 40 -c 0 -i 2644 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.51318 -s 0 -d 9 -p ack -e 40 -c 0 -i 2634 -a 0 -x {10.0 9.0 1312 ------- null} + -t 1.51318 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2645 -a 0 -x {9.0 10.0 1327 ------- null} - -t 1.51318 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2645 -a 0 -x {9.0 10.0 1327 ------- null} h -t 1.51318 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2645 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.51326 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2631 -a 0 -x {9.0 10.0 1320 ------- null} - -t 1.51326 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2631 -a 0 -x {9.0 10.0 1320 ------- null} h -t 1.51326 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2631 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.51333 -s 0 -d 9 -p ack -e 40 -c 0 -i 2638 -a 0 -x {10.0 9.0 1314 ------- null} - -t 1.51333 -s 0 -d 9 -p ack -e 40 -c 0 -i 2638 -a 0 -x {10.0 9.0 1314 ------- null} h -t 1.51333 -s 0 -d 9 -p ack -e 40 -c 0 -i 2638 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.51374 -s 10 -d 7 -p ack -e 40 -c 0 -i 2642 -a 0 -x {10.0 9.0 1316 ------- null} + -t 1.51374 -s 7 -d 0 -p ack -e 40 -c 0 -i 2642 -a 0 -x {10.0 9.0 1316 ------- null} h -t 1.51374 -s 7 -d 8 -p ack -e 40 -c 0 -i 2642 -a 0 -x {10.0 9.0 1316 ------- null} r -t 1.51389 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2627 -a 0 -x {9.0 10.0 1318 ------- null} + -t 1.51389 -s 10 -d 7 -p ack -e 40 -c 0 -i 2646 -a 0 -x {10.0 9.0 1318 ------- null} - -t 1.51389 -s 10 -d 7 -p ack -e 40 -c 0 -i 2646 -a 0 -x {10.0 9.0 1318 ------- null} h -t 1.51389 -s 10 -d 7 -p ack -e 40 -c 0 -i 2646 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.51395 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2641 -a 0 -x {9.0 10.0 1325 ------- null} + -t 1.51395 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2641 -a 0 -x {9.0 10.0 1325 ------- null} h -t 1.51395 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2641 -a 0 -x {9.0 10.0 1325 ------- null} + -t 1.51435 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2633 -a 0 -x {9.0 10.0 1321 ------- null} - -t 1.51435 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2633 -a 0 -x {9.0 10.0 1321 ------- null} h -t 1.51435 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2633 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.51438 -s 0 -d 9 -p ack -e 40 -c 0 -i 2636 -a 0 -x {10.0 9.0 1313 ------- null} + -t 1.51438 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2647 -a 0 -x {9.0 10.0 1328 ------- null} - -t 1.51438 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2647 -a 0 -x {9.0 10.0 1328 ------- null} h -t 1.51438 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2647 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.51456 -s 0 -d 9 -p ack -e 40 -c 0 -i 2640 -a 0 -x {10.0 9.0 1315 ------- null} - -t 1.51456 -s 0 -d 9 -p ack -e 40 -c 0 -i 2640 -a 0 -x {10.0 9.0 1315 ------- null} h -t 1.51456 -s 0 -d 9 -p ack -e 40 -c 0 -i 2640 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.51483 -s 10 -d 7 -p ack -e 40 -c 0 -i 2644 -a 0 -x {10.0 9.0 1317 ------- null} + -t 1.51483 -s 7 -d 0 -p ack -e 40 -c 0 -i 2644 -a 0 -x {10.0 9.0 1317 ------- null} h -t 1.51483 -s 7 -d 8 -p ack -e 40 -c 0 -i 2644 -a 0 -x {10.0 9.0 1317 ------- null} r -t 1.51498 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2629 -a 0 -x {9.0 10.0 1319 ------- null} + -t 1.51498 -s 10 -d 7 -p ack -e 40 -c 0 -i 2648 -a 0 -x {10.0 9.0 1319 ------- null} - -t 1.51498 -s 10 -d 7 -p ack -e 40 -c 0 -i 2648 -a 0 -x {10.0 9.0 1319 ------- null} h -t 1.51498 -s 10 -d 7 -p ack -e 40 -c 0 -i 2648 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.51506 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2643 -a 0 -x {9.0 10.0 1326 ------- null} + -t 1.51506 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2643 -a 0 -x {9.0 10.0 1326 ------- null} h -t 1.51506 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2643 -a 0 -x {9.0 10.0 1326 ------- null} r -t 1.51536 -s 0 -d 9 -p ack -e 40 -c 0 -i 2638 -a 0 -x {10.0 9.0 1314 ------- null} + -t 1.51536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2649 -a 0 -x {9.0 10.0 1329 ------- null} - -t 1.51536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2649 -a 0 -x {9.0 10.0 1329 ------- null} h -t 1.51536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2649 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.51544 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2635 -a 0 -x {9.0 10.0 1322 ------- null} - -t 1.51544 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2635 -a 0 -x {9.0 10.0 1322 ------- null} h -t 1.51544 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2635 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.5155 -s 0 -d 9 -p ack -e 40 -c 0 -i 2642 -a 0 -x {10.0 9.0 1316 ------- null} - -t 1.5155 -s 0 -d 9 -p ack -e 40 -c 0 -i 2642 -a 0 -x {10.0 9.0 1316 ------- null} h -t 1.5155 -s 0 -d 9 -p ack -e 40 -c 0 -i 2642 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.51592 -s 10 -d 7 -p ack -e 40 -c 0 -i 2646 -a 0 -x {10.0 9.0 1318 ------- null} + -t 1.51592 -s 7 -d 0 -p ack -e 40 -c 0 -i 2646 -a 0 -x {10.0 9.0 1318 ------- null} h -t 1.51592 -s 7 -d 8 -p ack -e 40 -c 0 -i 2646 -a 0 -x {10.0 9.0 1318 ------- null} r -t 1.51598 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2645 -a 0 -x {9.0 10.0 1327 ------- null} + -t 1.51598 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2645 -a 0 -x {9.0 10.0 1327 ------- null} h -t 1.51598 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2645 -a 0 -x {9.0 10.0 1327 ------- null} r -t 1.51606 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2631 -a 0 -x {9.0 10.0 1320 ------- null} + -t 1.51606 -s 10 -d 7 -p ack -e 40 -c 0 -i 2650 -a 0 -x {10.0 9.0 1320 ------- null} - -t 1.51606 -s 10 -d 7 -p ack -e 40 -c 0 -i 2650 -a 0 -x {10.0 9.0 1320 ------- null} h -t 1.51606 -s 10 -d 7 -p ack -e 40 -c 0 -i 2650 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.51653 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2637 -a 0 -x {9.0 10.0 1323 ------- null} - -t 1.51653 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2637 -a 0 -x {9.0 10.0 1323 ------- null} h -t 1.51653 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2637 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.51659 -s 0 -d 9 -p ack -e 40 -c 0 -i 2640 -a 0 -x {10.0 9.0 1315 ------- null} + -t 1.51659 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2651 -a 0 -x {9.0 10.0 1330 ------- null} - -t 1.51659 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2651 -a 0 -x {9.0 10.0 1330 ------- null} h -t 1.51659 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2651 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.5168 -s 0 -d 9 -p ack -e 40 -c 0 -i 2644 -a 0 -x {10.0 9.0 1317 ------- null} - -t 1.5168 -s 0 -d 9 -p ack -e 40 -c 0 -i 2644 -a 0 -x {10.0 9.0 1317 ------- null} h -t 1.5168 -s 0 -d 9 -p ack -e 40 -c 0 -i 2644 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.51701 -s 10 -d 7 -p ack -e 40 -c 0 -i 2648 -a 0 -x {10.0 9.0 1319 ------- null} + -t 1.51701 -s 7 -d 0 -p ack -e 40 -c 0 -i 2648 -a 0 -x {10.0 9.0 1319 ------- null} h -t 1.51701 -s 7 -d 8 -p ack -e 40 -c 0 -i 2648 -a 0 -x {10.0 9.0 1319 ------- null} r -t 1.51715 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2633 -a 0 -x {9.0 10.0 1321 ------- null} + -t 1.51715 -s 10 -d 7 -p ack -e 40 -c 0 -i 2652 -a 0 -x {10.0 9.0 1321 ------- null} - -t 1.51715 -s 10 -d 7 -p ack -e 40 -c 0 -i 2652 -a 0 -x {10.0 9.0 1321 ------- null} h -t 1.51715 -s 10 -d 7 -p ack -e 40 -c 0 -i 2652 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.51718 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2647 -a 0 -x {9.0 10.0 1328 ------- null} + -t 1.51718 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2647 -a 0 -x {9.0 10.0 1328 ------- null} h -t 1.51718 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2647 -a 0 -x {9.0 10.0 1328 ------- null} r -t 1.51754 -s 0 -d 9 -p ack -e 40 -c 0 -i 2642 -a 0 -x {10.0 9.0 1316 ------- null} + -t 1.51754 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2653 -a 0 -x {9.0 10.0 1331 ------- null} - -t 1.51754 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2653 -a 0 -x {9.0 10.0 1331 ------- null} h -t 1.51754 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2653 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.51779 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2639 -a 0 -x {9.0 10.0 1324 ------- null} - -t 1.51779 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2639 -a 0 -x {9.0 10.0 1324 ------- null} h -t 1.51779 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2639 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.518 -s 0 -d 9 -p ack -e 40 -c 0 -i 2646 -a 0 -x {10.0 9.0 1318 ------- null} - -t 1.518 -s 0 -d 9 -p ack -e 40 -c 0 -i 2646 -a 0 -x {10.0 9.0 1318 ------- null} h -t 1.518 -s 0 -d 9 -p ack -e 40 -c 0 -i 2646 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.5181 -s 10 -d 7 -p ack -e 40 -c 0 -i 2650 -a 0 -x {10.0 9.0 1320 ------- null} + -t 1.5181 -s 7 -d 0 -p ack -e 40 -c 0 -i 2650 -a 0 -x {10.0 9.0 1320 ------- null} h -t 1.5181 -s 7 -d 8 -p ack -e 40 -c 0 -i 2650 -a 0 -x {10.0 9.0 1320 ------- null} r -t 1.51816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2649 -a 0 -x {9.0 10.0 1329 ------- null} + -t 1.51816 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2649 -a 0 -x {9.0 10.0 1329 ------- null} h -t 1.51816 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2649 -a 0 -x {9.0 10.0 1329 ------- null} r -t 1.51824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2635 -a 0 -x {9.0 10.0 1322 ------- null} + -t 1.51824 -s 10 -d 7 -p ack -e 40 -c 0 -i 2654 -a 0 -x {10.0 9.0 1322 ------- null} - -t 1.51824 -s 10 -d 7 -p ack -e 40 -c 0 -i 2654 -a 0 -x {10.0 9.0 1322 ------- null} h -t 1.51824 -s 10 -d 7 -p ack -e 40 -c 0 -i 2654 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.51883 -s 0 -d 9 -p ack -e 40 -c 0 -i 2644 -a 0 -x {10.0 9.0 1317 ------- null} + -t 1.51883 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2655 -a 0 -x {9.0 10.0 1332 ------- null} - -t 1.51883 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2655 -a 0 -x {9.0 10.0 1332 ------- null} h -t 1.51883 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2655 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.51888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2641 -a 0 -x {9.0 10.0 1325 ------- null} - -t 1.51888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2641 -a 0 -x {9.0 10.0 1325 ------- null} h -t 1.51888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2641 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.51918 -s 10 -d 7 -p ack -e 40 -c 0 -i 2652 -a 0 -x {10.0 9.0 1321 ------- null} + -t 1.51918 -s 7 -d 0 -p ack -e 40 -c 0 -i 2652 -a 0 -x {10.0 9.0 1321 ------- null} h -t 1.51918 -s 7 -d 8 -p ack -e 40 -c 0 -i 2652 -a 0 -x {10.0 9.0 1321 ------- null} + -t 1.51918 -s 0 -d 9 -p ack -e 40 -c 0 -i 2648 -a 0 -x {10.0 9.0 1319 ------- null} - -t 1.51918 -s 0 -d 9 -p ack -e 40 -c 0 -i 2648 -a 0 -x {10.0 9.0 1319 ------- null} h -t 1.51918 -s 0 -d 9 -p ack -e 40 -c 0 -i 2648 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.51933 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2637 -a 0 -x {9.0 10.0 1323 ------- null} + -t 1.51933 -s 10 -d 7 -p ack -e 40 -c 0 -i 2656 -a 0 -x {10.0 9.0 1323 ------- null} - -t 1.51933 -s 10 -d 7 -p ack -e 40 -c 0 -i 2656 -a 0 -x {10.0 9.0 1323 ------- null} h -t 1.51933 -s 10 -d 7 -p ack -e 40 -c 0 -i 2656 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.51939 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2651 -a 0 -x {9.0 10.0 1330 ------- null} + -t 1.51939 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2651 -a 0 -x {9.0 10.0 1330 ------- null} h -t 1.51939 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2651 -a 0 -x {9.0 10.0 1330 ------- null} r -t 1.52003 -s 0 -d 9 -p ack -e 40 -c 0 -i 2646 -a 0 -x {10.0 9.0 1318 ------- null} + -t 1.52003 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2657 -a 0 -x {9.0 10.0 1333 ------- null} - -t 1.52003 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2657 -a 0 -x {9.0 10.0 1333 ------- null} h -t 1.52003 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2657 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.52021 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2643 -a 0 -x {9.0 10.0 1326 ------- null} - -t 1.52021 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2643 -a 0 -x {9.0 10.0 1326 ------- null} h -t 1.52021 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2643 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.52027 -s 10 -d 7 -p ack -e 40 -c 0 -i 2654 -a 0 -x {10.0 9.0 1322 ------- null} + -t 1.52027 -s 7 -d 0 -p ack -e 40 -c 0 -i 2654 -a 0 -x {10.0 9.0 1322 ------- null} h -t 1.52027 -s 7 -d 8 -p ack -e 40 -c 0 -i 2654 -a 0 -x {10.0 9.0 1322 ------- null} r -t 1.52034 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2653 -a 0 -x {9.0 10.0 1331 ------- null} + -t 1.52034 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2653 -a 0 -x {9.0 10.0 1331 ------- null} h -t 1.52034 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2653 -a 0 -x {9.0 10.0 1331 ------- null} + -t 1.5205 -s 0 -d 9 -p ack -e 40 -c 0 -i 2650 -a 0 -x {10.0 9.0 1320 ------- null} - -t 1.5205 -s 0 -d 9 -p ack -e 40 -c 0 -i 2650 -a 0 -x {10.0 9.0 1320 ------- null} h -t 1.5205 -s 0 -d 9 -p ack -e 40 -c 0 -i 2650 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.52059 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2639 -a 0 -x {9.0 10.0 1324 ------- null} + -t 1.52059 -s 10 -d 7 -p ack -e 40 -c 0 -i 2658 -a 0 -x {10.0 9.0 1324 ------- null} - -t 1.52059 -s 10 -d 7 -p ack -e 40 -c 0 -i 2658 -a 0 -x {10.0 9.0 1324 ------- null} h -t 1.52059 -s 10 -d 7 -p ack -e 40 -c 0 -i 2658 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.52122 -s 0 -d 9 -p ack -e 40 -c 0 -i 2648 -a 0 -x {10.0 9.0 1319 ------- null} + -t 1.52122 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2659 -a 0 -x {9.0 10.0 1334 ------- null} - -t 1.52122 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2659 -a 0 -x {9.0 10.0 1334 ------- null} h -t 1.52122 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2659 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.52136 -s 10 -d 7 -p ack -e 40 -c 0 -i 2656 -a 0 -x {10.0 9.0 1323 ------- null} + -t 1.52136 -s 7 -d 0 -p ack -e 40 -c 0 -i 2656 -a 0 -x {10.0 9.0 1323 ------- null} h -t 1.52136 -s 7 -d 8 -p ack -e 40 -c 0 -i 2656 -a 0 -x {10.0 9.0 1323 ------- null} + -t 1.52136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2645 -a 0 -x {9.0 10.0 1327 ------- null} - -t 1.52136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2645 -a 0 -x {9.0 10.0 1327 ------- null} h -t 1.52136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2645 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.52162 -s 0 -d 9 -p ack -e 40 -c 0 -i 2652 -a 0 -x {10.0 9.0 1321 ------- null} - -t 1.52162 -s 0 -d 9 -p ack -e 40 -c 0 -i 2652 -a 0 -x {10.0 9.0 1321 ------- null} h -t 1.52162 -s 0 -d 9 -p ack -e 40 -c 0 -i 2652 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.52163 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2655 -a 0 -x {9.0 10.0 1332 ------- null} + -t 1.52163 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2655 -a 0 -x {9.0 10.0 1332 ------- null} h -t 1.52163 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2655 -a 0 -x {9.0 10.0 1332 ------- null} r -t 1.52168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2641 -a 0 -x {9.0 10.0 1325 ------- null} + -t 1.52168 -s 10 -d 7 -p ack -e 40 -c 0 -i 2660 -a 0 -x {10.0 9.0 1325 ------- null} - -t 1.52168 -s 10 -d 7 -p ack -e 40 -c 0 -i 2660 -a 0 -x {10.0 9.0 1325 ------- null} h -t 1.52168 -s 10 -d 7 -p ack -e 40 -c 0 -i 2660 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.52245 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2647 -a 0 -x {9.0 10.0 1328 ------- null} - -t 1.52245 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2647 -a 0 -x {9.0 10.0 1328 ------- null} h -t 1.52245 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2647 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.52253 -s 0 -d 9 -p ack -e 40 -c 0 -i 2650 -a 0 -x {10.0 9.0 1320 ------- null} + -t 1.52253 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2661 -a 0 -x {9.0 10.0 1335 ------- null} - -t 1.52253 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2661 -a 0 -x {9.0 10.0 1335 ------- null} h -t 1.52253 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2661 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.52262 -s 10 -d 7 -p ack -e 40 -c 0 -i 2658 -a 0 -x {10.0 9.0 1324 ------- null} + -t 1.52262 -s 7 -d 0 -p ack -e 40 -c 0 -i 2658 -a 0 -x {10.0 9.0 1324 ------- null} h -t 1.52262 -s 7 -d 8 -p ack -e 40 -c 0 -i 2658 -a 0 -x {10.0 9.0 1324 ------- null} + -t 1.52275 -s 0 -d 9 -p ack -e 40 -c 0 -i 2654 -a 0 -x {10.0 9.0 1322 ------- null} - -t 1.52275 -s 0 -d 9 -p ack -e 40 -c 0 -i 2654 -a 0 -x {10.0 9.0 1322 ------- null} h -t 1.52275 -s 0 -d 9 -p ack -e 40 -c 0 -i 2654 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.52283 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2657 -a 0 -x {9.0 10.0 1333 ------- null} + -t 1.52283 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2657 -a 0 -x {9.0 10.0 1333 ------- null} h -t 1.52283 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2657 -a 0 -x {9.0 10.0 1333 ------- null} r -t 1.52301 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2643 -a 0 -x {9.0 10.0 1326 ------- null} + -t 1.52301 -s 10 -d 7 -p ack -e 40 -c 0 -i 2662 -a 0 -x {10.0 9.0 1326 ------- null} - -t 1.52301 -s 10 -d 7 -p ack -e 40 -c 0 -i 2662 -a 0 -x {10.0 9.0 1326 ------- null} h -t 1.52301 -s 10 -d 7 -p ack -e 40 -c 0 -i 2662 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.52365 -s 0 -d 9 -p ack -e 40 -c 0 -i 2652 -a 0 -x {10.0 9.0 1321 ------- null} + -t 1.52365 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2663 -a 0 -x {9.0 10.0 1336 ------- null} - -t 1.52365 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2663 -a 0 -x {9.0 10.0 1336 ------- null} h -t 1.52365 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2663 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.5237 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2649 -a 0 -x {9.0 10.0 1329 ------- null} - -t 1.5237 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2649 -a 0 -x {9.0 10.0 1329 ------- null} h -t 1.5237 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2649 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.52371 -s 10 -d 7 -p ack -e 40 -c 0 -i 2660 -a 0 -x {10.0 9.0 1325 ------- null} + -t 1.52371 -s 7 -d 0 -p ack -e 40 -c 0 -i 2660 -a 0 -x {10.0 9.0 1325 ------- null} h -t 1.52371 -s 7 -d 8 -p ack -e 40 -c 0 -i 2660 -a 0 -x {10.0 9.0 1325 ------- null} + -t 1.52386 -s 0 -d 9 -p ack -e 40 -c 0 -i 2656 -a 0 -x {10.0 9.0 1323 ------- null} - -t 1.52386 -s 0 -d 9 -p ack -e 40 -c 0 -i 2656 -a 0 -x {10.0 9.0 1323 ------- null} h -t 1.52386 -s 0 -d 9 -p ack -e 40 -c 0 -i 2656 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.52402 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2659 -a 0 -x {9.0 10.0 1334 ------- null} + -t 1.52402 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2659 -a 0 -x {9.0 10.0 1334 ------- null} h -t 1.52402 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2659 -a 0 -x {9.0 10.0 1334 ------- null} r -t 1.52416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2645 -a 0 -x {9.0 10.0 1327 ------- null} + -t 1.52416 -s 10 -d 7 -p ack -e 40 -c 0 -i 2664 -a 0 -x {10.0 9.0 1327 ------- null} - -t 1.52416 -s 10 -d 7 -p ack -e 40 -c 0 -i 2664 -a 0 -x {10.0 9.0 1327 ------- null} h -t 1.52416 -s 10 -d 7 -p ack -e 40 -c 0 -i 2664 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.52478 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2651 -a 0 -x {9.0 10.0 1330 ------- null} - -t 1.52478 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2651 -a 0 -x {9.0 10.0 1330 ------- null} h -t 1.52478 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2651 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.52478 -s 0 -d 9 -p ack -e 40 -c 0 -i 2654 -a 0 -x {10.0 9.0 1322 ------- null} + -t 1.52478 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2665 -a 0 -x {9.0 10.0 1337 ------- null} - -t 1.52478 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2665 -a 0 -x {9.0 10.0 1337 ------- null} h -t 1.52478 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2665 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.52496 -s 0 -d 9 -p ack -e 40 -c 0 -i 2658 -a 0 -x {10.0 9.0 1324 ------- null} - -t 1.52496 -s 0 -d 9 -p ack -e 40 -c 0 -i 2658 -a 0 -x {10.0 9.0 1324 ------- null} h -t 1.52496 -s 0 -d 9 -p ack -e 40 -c 0 -i 2658 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.52504 -s 10 -d 7 -p ack -e 40 -c 0 -i 2662 -a 0 -x {10.0 9.0 1326 ------- null} + -t 1.52504 -s 7 -d 0 -p ack -e 40 -c 0 -i 2662 -a 0 -x {10.0 9.0 1326 ------- null} h -t 1.52504 -s 7 -d 8 -p ack -e 40 -c 0 -i 2662 -a 0 -x {10.0 9.0 1326 ------- null} r -t 1.52525 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2647 -a 0 -x {9.0 10.0 1328 ------- null} + -t 1.52525 -s 10 -d 7 -p ack -e 40 -c 0 -i 2666 -a 0 -x {10.0 9.0 1328 ------- null} - -t 1.52525 -s 10 -d 7 -p ack -e 40 -c 0 -i 2666 -a 0 -x {10.0 9.0 1328 ------- null} h -t 1.52525 -s 10 -d 7 -p ack -e 40 -c 0 -i 2666 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.52533 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2661 -a 0 -x {9.0 10.0 1335 ------- null} + -t 1.52533 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2661 -a 0 -x {9.0 10.0 1335 ------- null} h -t 1.52533 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2661 -a 0 -x {9.0 10.0 1335 ------- null} + -t 1.52587 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2653 -a 0 -x {9.0 10.0 1331 ------- null} - -t 1.52587 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2653 -a 0 -x {9.0 10.0 1331 ------- null} h -t 1.52587 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2653 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.52589 -s 0 -d 9 -p ack -e 40 -c 0 -i 2656 -a 0 -x {10.0 9.0 1323 ------- null} + -t 1.52589 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2667 -a 0 -x {9.0 10.0 1338 ------- null} - -t 1.52589 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2667 -a 0 -x {9.0 10.0 1338 ------- null} h -t 1.52589 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2667 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.52616 -s 0 -d 9 -p ack -e 40 -c 0 -i 2660 -a 0 -x {10.0 9.0 1325 ------- null} - -t 1.52616 -s 0 -d 9 -p ack -e 40 -c 0 -i 2660 -a 0 -x {10.0 9.0 1325 ------- null} h -t 1.52616 -s 0 -d 9 -p ack -e 40 -c 0 -i 2660 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.52619 -s 10 -d 7 -p ack -e 40 -c 0 -i 2664 -a 0 -x {10.0 9.0 1327 ------- null} + -t 1.52619 -s 7 -d 0 -p ack -e 40 -c 0 -i 2664 -a 0 -x {10.0 9.0 1327 ------- null} h -t 1.52619 -s 7 -d 8 -p ack -e 40 -c 0 -i 2664 -a 0 -x {10.0 9.0 1327 ------- null} r -t 1.52645 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2663 -a 0 -x {9.0 10.0 1336 ------- null} + -t 1.52645 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2663 -a 0 -x {9.0 10.0 1336 ------- null} h -t 1.52645 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2663 -a 0 -x {9.0 10.0 1336 ------- null} r -t 1.5265 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2649 -a 0 -x {9.0 10.0 1329 ------- null} + -t 1.5265 -s 10 -d 7 -p ack -e 40 -c 0 -i 2668 -a 0 -x {10.0 9.0 1329 ------- null} - -t 1.5265 -s 10 -d 7 -p ack -e 40 -c 0 -i 2668 -a 0 -x {10.0 9.0 1329 ------- null} h -t 1.5265 -s 10 -d 7 -p ack -e 40 -c 0 -i 2668 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.52699 -s 0 -d 9 -p ack -e 40 -c 0 -i 2658 -a 0 -x {10.0 9.0 1324 ------- null} + -t 1.52699 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2669 -a 0 -x {9.0 10.0 1339 ------- null} - -t 1.52699 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2669 -a 0 -x {9.0 10.0 1339 ------- null} h -t 1.52699 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2669 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.52717 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2655 -a 0 -x {9.0 10.0 1332 ------- null} - -t 1.52717 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2655 -a 0 -x {9.0 10.0 1332 ------- null} h -t 1.52717 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2655 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.52728 -s 10 -d 7 -p ack -e 40 -c 0 -i 2666 -a 0 -x {10.0 9.0 1328 ------- null} + -t 1.52728 -s 7 -d 0 -p ack -e 40 -c 0 -i 2666 -a 0 -x {10.0 9.0 1328 ------- null} h -t 1.52728 -s 7 -d 8 -p ack -e 40 -c 0 -i 2666 -a 0 -x {10.0 9.0 1328 ------- null} + -t 1.5273 -s 0 -d 9 -p ack -e 40 -c 0 -i 2662 -a 0 -x {10.0 9.0 1326 ------- null} - -t 1.5273 -s 0 -d 9 -p ack -e 40 -c 0 -i 2662 -a 0 -x {10.0 9.0 1326 ------- null} h -t 1.5273 -s 0 -d 9 -p ack -e 40 -c 0 -i 2662 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.52758 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2651 -a 0 -x {9.0 10.0 1330 ------- null} + -t 1.52758 -s 10 -d 7 -p ack -e 40 -c 0 -i 2670 -a 0 -x {10.0 9.0 1330 ------- null} - -t 1.52758 -s 10 -d 7 -p ack -e 40 -c 0 -i 2670 -a 0 -x {10.0 9.0 1330 ------- null} h -t 1.52758 -s 10 -d 7 -p ack -e 40 -c 0 -i 2670 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.52758 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2665 -a 0 -x {9.0 10.0 1337 ------- null} + -t 1.52758 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2665 -a 0 -x {9.0 10.0 1337 ------- null} h -t 1.52758 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2665 -a 0 -x {9.0 10.0 1337 ------- null} r -t 1.52819 -s 0 -d 9 -p ack -e 40 -c 0 -i 2660 -a 0 -x {10.0 9.0 1325 ------- null} + -t 1.52819 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2671 -a 0 -x {9.0 10.0 1340 ------- null} - -t 1.52819 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2671 -a 0 -x {9.0 10.0 1340 ------- null} h -t 1.52819 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2671 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.52826 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2657 -a 0 -x {9.0 10.0 1333 ------- null} - -t 1.52826 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2657 -a 0 -x {9.0 10.0 1333 ------- null} h -t 1.52826 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2657 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.5284 -s 0 -d 9 -p ack -e 40 -c 0 -i 2664 -a 0 -x {10.0 9.0 1327 ------- null} - -t 1.5284 -s 0 -d 9 -p ack -e 40 -c 0 -i 2664 -a 0 -x {10.0 9.0 1327 ------- null} h -t 1.5284 -s 0 -d 9 -p ack -e 40 -c 0 -i 2664 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.52853 -s 10 -d 7 -p ack -e 40 -c 0 -i 2668 -a 0 -x {10.0 9.0 1329 ------- null} + -t 1.52853 -s 7 -d 0 -p ack -e 40 -c 0 -i 2668 -a 0 -x {10.0 9.0 1329 ------- null} h -t 1.52853 -s 7 -d 8 -p ack -e 40 -c 0 -i 2668 -a 0 -x {10.0 9.0 1329 ------- null} r -t 1.52867 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2653 -a 0 -x {9.0 10.0 1331 ------- null} + -t 1.52867 -s 10 -d 7 -p ack -e 40 -c 0 -i 2672 -a 0 -x {10.0 9.0 1331 ------- null} - -t 1.52867 -s 10 -d 7 -p ack -e 40 -c 0 -i 2672 -a 0 -x {10.0 9.0 1331 ------- null} h -t 1.52867 -s 10 -d 7 -p ack -e 40 -c 0 -i 2672 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.52869 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2667 -a 0 -x {9.0 10.0 1338 ------- null} + -t 1.52869 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2667 -a 0 -x {9.0 10.0 1338 ------- null} h -t 1.52869 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2667 -a 0 -x {9.0 10.0 1338 ------- null} r -t 1.52933 -s 0 -d 9 -p ack -e 40 -c 0 -i 2662 -a 0 -x {10.0 9.0 1326 ------- null} + -t 1.52933 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2673 -a 0 -x {9.0 10.0 1341 ------- null} - -t 1.52933 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2673 -a 0 -x {9.0 10.0 1341 ------- null} h -t 1.52933 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2673 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.52934 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2659 -a 0 -x {9.0 10.0 1334 ------- null} - -t 1.52934 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2659 -a 0 -x {9.0 10.0 1334 ------- null} h -t 1.52934 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2659 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.5296 -s 0 -d 9 -p ack -e 40 -c 0 -i 2666 -a 0 -x {10.0 9.0 1328 ------- null} - -t 1.5296 -s 0 -d 9 -p ack -e 40 -c 0 -i 2666 -a 0 -x {10.0 9.0 1328 ------- null} h -t 1.5296 -s 0 -d 9 -p ack -e 40 -c 0 -i 2666 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.52962 -s 10 -d 7 -p ack -e 40 -c 0 -i 2670 -a 0 -x {10.0 9.0 1330 ------- null} + -t 1.52962 -s 7 -d 0 -p ack -e 40 -c 0 -i 2670 -a 0 -x {10.0 9.0 1330 ------- null} h -t 1.52962 -s 7 -d 8 -p ack -e 40 -c 0 -i 2670 -a 0 -x {10.0 9.0 1330 ------- null} r -t 1.52979 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2669 -a 0 -x {9.0 10.0 1339 ------- null} + -t 1.52979 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2669 -a 0 -x {9.0 10.0 1339 ------- null} h -t 1.52979 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2669 -a 0 -x {9.0 10.0 1339 ------- null} r -t 1.52997 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2655 -a 0 -x {9.0 10.0 1332 ------- null} + -t 1.52997 -s 10 -d 7 -p ack -e 40 -c 0 -i 2674 -a 0 -x {10.0 9.0 1332 ------- null} - -t 1.52997 -s 10 -d 7 -p ack -e 40 -c 0 -i 2674 -a 0 -x {10.0 9.0 1332 ------- null} h -t 1.52997 -s 10 -d 7 -p ack -e 40 -c 0 -i 2674 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.53043 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2661 -a 0 -x {9.0 10.0 1335 ------- null} - -t 1.53043 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2661 -a 0 -x {9.0 10.0 1335 ------- null} h -t 1.53043 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2661 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.53043 -s 0 -d 9 -p ack -e 40 -c 0 -i 2664 -a 0 -x {10.0 9.0 1327 ------- null} + -t 1.53043 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2675 -a 0 -x {9.0 10.0 1342 ------- null} - -t 1.53043 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2675 -a 0 -x {9.0 10.0 1342 ------- null} h -t 1.53043 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2675 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.53059 -s 0 -d 9 -p ack -e 40 -c 0 -i 2668 -a 0 -x {10.0 9.0 1329 ------- null} - -t 1.53059 -s 0 -d 9 -p ack -e 40 -c 0 -i 2668 -a 0 -x {10.0 9.0 1329 ------- null} h -t 1.53059 -s 0 -d 9 -p ack -e 40 -c 0 -i 2668 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.5307 -s 10 -d 7 -p ack -e 40 -c 0 -i 2672 -a 0 -x {10.0 9.0 1331 ------- null} + -t 1.5307 -s 7 -d 0 -p ack -e 40 -c 0 -i 2672 -a 0 -x {10.0 9.0 1331 ------- null} h -t 1.5307 -s 7 -d 8 -p ack -e 40 -c 0 -i 2672 -a 0 -x {10.0 9.0 1331 ------- null} r -t 1.53099 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2671 -a 0 -x {9.0 10.0 1340 ------- null} + -t 1.53099 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2671 -a 0 -x {9.0 10.0 1340 ------- null} h -t 1.53099 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2671 -a 0 -x {9.0 10.0 1340 ------- null} r -t 1.53106 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2657 -a 0 -x {9.0 10.0 1333 ------- null} + -t 1.53106 -s 10 -d 7 -p ack -e 40 -c 0 -i 2676 -a 0 -x {10.0 9.0 1333 ------- null} - -t 1.53106 -s 10 -d 7 -p ack -e 40 -c 0 -i 2676 -a 0 -x {10.0 9.0 1333 ------- null} h -t 1.53106 -s 10 -d 7 -p ack -e 40 -c 0 -i 2676 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.53152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2663 -a 0 -x {9.0 10.0 1336 ------- null} - -t 1.53152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2663 -a 0 -x {9.0 10.0 1336 ------- null} h -t 1.53152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2663 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.5316 -s 0 -d 9 -p ack -e 40 -c 0 -i 2670 -a 0 -x {10.0 9.0 1330 ------- null} - -t 1.5316 -s 0 -d 9 -p ack -e 40 -c 0 -i 2670 -a 0 -x {10.0 9.0 1330 ------- null} h -t 1.5316 -s 0 -d 9 -p ack -e 40 -c 0 -i 2670 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.53163 -s 0 -d 9 -p ack -e 40 -c 0 -i 2666 -a 0 -x {10.0 9.0 1328 ------- null} + -t 1.53163 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2677 -a 0 -x {9.0 10.0 1343 ------- null} - -t 1.53163 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2677 -a 0 -x {9.0 10.0 1343 ------- null} h -t 1.53163 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2677 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.532 -s 10 -d 7 -p ack -e 40 -c 0 -i 2674 -a 0 -x {10.0 9.0 1332 ------- null} + -t 1.532 -s 7 -d 0 -p ack -e 40 -c 0 -i 2674 -a 0 -x {10.0 9.0 1332 ------- null} h -t 1.532 -s 7 -d 8 -p ack -e 40 -c 0 -i 2674 -a 0 -x {10.0 9.0 1332 ------- null} r -t 1.53213 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2673 -a 0 -x {9.0 10.0 1341 ------- null} + -t 1.53213 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2673 -a 0 -x {9.0 10.0 1341 ------- null} h -t 1.53213 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2673 -a 0 -x {9.0 10.0 1341 ------- null} r -t 1.53214 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2659 -a 0 -x {9.0 10.0 1334 ------- null} + -t 1.53214 -s 10 -d 7 -p ack -e 40 -c 0 -i 2678 -a 0 -x {10.0 9.0 1334 ------- null} - -t 1.53214 -s 10 -d 7 -p ack -e 40 -c 0 -i 2678 -a 0 -x {10.0 9.0 1334 ------- null} h -t 1.53214 -s 10 -d 7 -p ack -e 40 -c 0 -i 2678 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.53261 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2665 -a 0 -x {9.0 10.0 1337 ------- null} - -t 1.53261 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2665 -a 0 -x {9.0 10.0 1337 ------- null} h -t 1.53261 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2665 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.53262 -s 0 -d 9 -p ack -e 40 -c 0 -i 2668 -a 0 -x {10.0 9.0 1329 ------- null} + -t 1.53262 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2679 -a 0 -x {9.0 10.0 1344 ------- null} - -t 1.53262 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2679 -a 0 -x {9.0 10.0 1344 ------- null} h -t 1.53262 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2679 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.53272 -s 0 -d 9 -p ack -e 40 -c 0 -i 2672 -a 0 -x {10.0 9.0 1331 ------- null} - -t 1.53272 -s 0 -d 9 -p ack -e 40 -c 0 -i 2672 -a 0 -x {10.0 9.0 1331 ------- null} h -t 1.53272 -s 0 -d 9 -p ack -e 40 -c 0 -i 2672 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.53309 -s 10 -d 7 -p ack -e 40 -c 0 -i 2676 -a 0 -x {10.0 9.0 1333 ------- null} + -t 1.53309 -s 7 -d 0 -p ack -e 40 -c 0 -i 2676 -a 0 -x {10.0 9.0 1333 ------- null} h -t 1.53309 -s 7 -d 8 -p ack -e 40 -c 0 -i 2676 -a 0 -x {10.0 9.0 1333 ------- null} r -t 1.53323 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2661 -a 0 -x {9.0 10.0 1335 ------- null} + -t 1.53323 -s 10 -d 7 -p ack -e 40 -c 0 -i 2680 -a 0 -x {10.0 9.0 1335 ------- null} - -t 1.53323 -s 10 -d 7 -p ack -e 40 -c 0 -i 2680 -a 0 -x {10.0 9.0 1335 ------- null} h -t 1.53323 -s 10 -d 7 -p ack -e 40 -c 0 -i 2680 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.53323 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2675 -a 0 -x {9.0 10.0 1342 ------- null} + -t 1.53323 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2675 -a 0 -x {9.0 10.0 1342 ------- null} h -t 1.53323 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2675 -a 0 -x {9.0 10.0 1342 ------- null} r -t 1.53363 -s 0 -d 9 -p ack -e 40 -c 0 -i 2670 -a 0 -x {10.0 9.0 1330 ------- null} + -t 1.53363 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2681 -a 0 -x {9.0 10.0 1345 ------- null} - -t 1.53363 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2681 -a 0 -x {9.0 10.0 1345 ------- null} h -t 1.53363 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2681 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.5337 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2667 -a 0 -x {9.0 10.0 1338 ------- null} - -t 1.5337 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2667 -a 0 -x {9.0 10.0 1338 ------- null} h -t 1.5337 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2667 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.53378 -s 0 -d 9 -p ack -e 40 -c 0 -i 2674 -a 0 -x {10.0 9.0 1332 ------- null} - -t 1.53378 -s 0 -d 9 -p ack -e 40 -c 0 -i 2674 -a 0 -x {10.0 9.0 1332 ------- null} h -t 1.53378 -s 0 -d 9 -p ack -e 40 -c 0 -i 2674 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.53418 -s 10 -d 7 -p ack -e 40 -c 0 -i 2678 -a 0 -x {10.0 9.0 1334 ------- null} + -t 1.53418 -s 7 -d 0 -p ack -e 40 -c 0 -i 2678 -a 0 -x {10.0 9.0 1334 ------- null} h -t 1.53418 -s 7 -d 8 -p ack -e 40 -c 0 -i 2678 -a 0 -x {10.0 9.0 1334 ------- null} r -t 1.53432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2663 -a 0 -x {9.0 10.0 1336 ------- null} + -t 1.53432 -s 10 -d 7 -p ack -e 40 -c 0 -i 2682 -a 0 -x {10.0 9.0 1336 ------- null} - -t 1.53432 -s 10 -d 7 -p ack -e 40 -c 0 -i 2682 -a 0 -x {10.0 9.0 1336 ------- null} h -t 1.53432 -s 10 -d 7 -p ack -e 40 -c 0 -i 2682 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.53443 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2677 -a 0 -x {9.0 10.0 1343 ------- null} + -t 1.53443 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2677 -a 0 -x {9.0 10.0 1343 ------- null} h -t 1.53443 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2677 -a 0 -x {9.0 10.0 1343 ------- null} r -t 1.53475 -s 0 -d 9 -p ack -e 40 -c 0 -i 2672 -a 0 -x {10.0 9.0 1331 ------- null} + -t 1.53475 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2683 -a 0 -x {9.0 10.0 1346 ------- null} - -t 1.53475 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2683 -a 0 -x {9.0 10.0 1346 ------- null} h -t 1.53475 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2683 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.53478 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2669 -a 0 -x {9.0 10.0 1339 ------- null} - -t 1.53478 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2669 -a 0 -x {9.0 10.0 1339 ------- null} h -t 1.53478 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2669 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.53494 -s 0 -d 9 -p ack -e 40 -c 0 -i 2676 -a 0 -x {10.0 9.0 1333 ------- null} - -t 1.53494 -s 0 -d 9 -p ack -e 40 -c 0 -i 2676 -a 0 -x {10.0 9.0 1333 ------- null} h -t 1.53494 -s 0 -d 9 -p ack -e 40 -c 0 -i 2676 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.53526 -s 10 -d 7 -p ack -e 40 -c 0 -i 2680 -a 0 -x {10.0 9.0 1335 ------- null} + -t 1.53526 -s 7 -d 0 -p ack -e 40 -c 0 -i 2680 -a 0 -x {10.0 9.0 1335 ------- null} h -t 1.53526 -s 7 -d 8 -p ack -e 40 -c 0 -i 2680 -a 0 -x {10.0 9.0 1335 ------- null} r -t 1.53541 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2665 -a 0 -x {9.0 10.0 1337 ------- null} + -t 1.53541 -s 10 -d 7 -p ack -e 40 -c 0 -i 2684 -a 0 -x {10.0 9.0 1337 ------- null} - -t 1.53541 -s 10 -d 7 -p ack -e 40 -c 0 -i 2684 -a 0 -x {10.0 9.0 1337 ------- null} h -t 1.53541 -s 10 -d 7 -p ack -e 40 -c 0 -i 2684 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.53542 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2679 -a 0 -x {9.0 10.0 1344 ------- null} + -t 1.53542 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2679 -a 0 -x {9.0 10.0 1344 ------- null} h -t 1.53542 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2679 -a 0 -x {9.0 10.0 1344 ------- null} r -t 1.53581 -s 0 -d 9 -p ack -e 40 -c 0 -i 2674 -a 0 -x {10.0 9.0 1332 ------- null} + -t 1.53581 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2685 -a 0 -x {9.0 10.0 1347 ------- null} - -t 1.53581 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2685 -a 0 -x {9.0 10.0 1347 ------- null} h -t 1.53581 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2685 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.53587 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2671 -a 0 -x {9.0 10.0 1340 ------- null} - -t 1.53587 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2671 -a 0 -x {9.0 10.0 1340 ------- null} h -t 1.53587 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2671 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.53598 -s 0 -d 9 -p ack -e 40 -c 0 -i 2678 -a 0 -x {10.0 9.0 1334 ------- null} - -t 1.53598 -s 0 -d 9 -p ack -e 40 -c 0 -i 2678 -a 0 -x {10.0 9.0 1334 ------- null} h -t 1.53598 -s 0 -d 9 -p ack -e 40 -c 0 -i 2678 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.53635 -s 10 -d 7 -p ack -e 40 -c 0 -i 2682 -a 0 -x {10.0 9.0 1336 ------- null} + -t 1.53635 -s 7 -d 0 -p ack -e 40 -c 0 -i 2682 -a 0 -x {10.0 9.0 1336 ------- null} h -t 1.53635 -s 7 -d 8 -p ack -e 40 -c 0 -i 2682 -a 0 -x {10.0 9.0 1336 ------- null} r -t 1.53643 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2681 -a 0 -x {9.0 10.0 1345 ------- null} + -t 1.53643 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2681 -a 0 -x {9.0 10.0 1345 ------- null} h -t 1.53643 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2681 -a 0 -x {9.0 10.0 1345 ------- null} r -t 1.5365 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2667 -a 0 -x {9.0 10.0 1338 ------- null} + -t 1.5365 -s 10 -d 7 -p ack -e 40 -c 0 -i 2686 -a 0 -x {10.0 9.0 1338 ------- null} - -t 1.5365 -s 10 -d 7 -p ack -e 40 -c 0 -i 2686 -a 0 -x {10.0 9.0 1338 ------- null} h -t 1.5365 -s 10 -d 7 -p ack -e 40 -c 0 -i 2686 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.53696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2673 -a 0 -x {9.0 10.0 1341 ------- null} - -t 1.53696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2673 -a 0 -x {9.0 10.0 1341 ------- null} h -t 1.53696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2673 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.53698 -s 0 -d 9 -p ack -e 40 -c 0 -i 2676 -a 0 -x {10.0 9.0 1333 ------- null} + -t 1.53698 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2687 -a 0 -x {9.0 10.0 1348 ------- null} - -t 1.53698 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2687 -a 0 -x {9.0 10.0 1348 ------- null} h -t 1.53698 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2687 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.53718 -s 0 -d 9 -p ack -e 40 -c 0 -i 2680 -a 0 -x {10.0 9.0 1335 ------- null} - -t 1.53718 -s 0 -d 9 -p ack -e 40 -c 0 -i 2680 -a 0 -x {10.0 9.0 1335 ------- null} h -t 1.53718 -s 0 -d 9 -p ack -e 40 -c 0 -i 2680 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.53744 -s 10 -d 7 -p ack -e 40 -c 0 -i 2684 -a 0 -x {10.0 9.0 1337 ------- null} + -t 1.53744 -s 7 -d 0 -p ack -e 40 -c 0 -i 2684 -a 0 -x {10.0 9.0 1337 ------- null} h -t 1.53744 -s 7 -d 8 -p ack -e 40 -c 0 -i 2684 -a 0 -x {10.0 9.0 1337 ------- null} r -t 1.53755 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2683 -a 0 -x {9.0 10.0 1346 ------- null} + -t 1.53755 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2683 -a 0 -x {9.0 10.0 1346 ------- null} h -t 1.53755 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2683 -a 0 -x {9.0 10.0 1346 ------- null} r -t 1.53758 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2669 -a 0 -x {9.0 10.0 1339 ------- null} + -t 1.53758 -s 10 -d 7 -p ack -e 40 -c 0 -i 2688 -a 0 -x {10.0 9.0 1339 ------- null} - -t 1.53758 -s 10 -d 7 -p ack -e 40 -c 0 -i 2688 -a 0 -x {10.0 9.0 1339 ------- null} h -t 1.53758 -s 10 -d 7 -p ack -e 40 -c 0 -i 2688 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.53802 -s 0 -d 9 -p ack -e 40 -c 0 -i 2678 -a 0 -x {10.0 9.0 1334 ------- null} + -t 1.53802 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2689 -a 0 -x {9.0 10.0 1349 ------- null} - -t 1.53802 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2689 -a 0 -x {9.0 10.0 1349 ------- null} h -t 1.53802 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2689 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.53805 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2675 -a 0 -x {9.0 10.0 1342 ------- null} - -t 1.53805 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2675 -a 0 -x {9.0 10.0 1342 ------- null} h -t 1.53805 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2675 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.53835 -s 0 -d 9 -p ack -e 40 -c 0 -i 2682 -a 0 -x {10.0 9.0 1336 ------- null} - -t 1.53835 -s 0 -d 9 -p ack -e 40 -c 0 -i 2682 -a 0 -x {10.0 9.0 1336 ------- null} h -t 1.53835 -s 0 -d 9 -p ack -e 40 -c 0 -i 2682 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.53853 -s 10 -d 7 -p ack -e 40 -c 0 -i 2686 -a 0 -x {10.0 9.0 1338 ------- null} + -t 1.53853 -s 7 -d 0 -p ack -e 40 -c 0 -i 2686 -a 0 -x {10.0 9.0 1338 ------- null} h -t 1.53853 -s 7 -d 8 -p ack -e 40 -c 0 -i 2686 -a 0 -x {10.0 9.0 1338 ------- null} r -t 1.53861 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2685 -a 0 -x {9.0 10.0 1347 ------- null} + -t 1.53861 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2685 -a 0 -x {9.0 10.0 1347 ------- null} h -t 1.53861 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2685 -a 0 -x {9.0 10.0 1347 ------- null} r -t 1.53867 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2671 -a 0 -x {9.0 10.0 1340 ------- null} + -t 1.53867 -s 10 -d 7 -p ack -e 40 -c 0 -i 2690 -a 0 -x {10.0 9.0 1340 ------- null} - -t 1.53867 -s 10 -d 7 -p ack -e 40 -c 0 -i 2690 -a 0 -x {10.0 9.0 1340 ------- null} h -t 1.53867 -s 10 -d 7 -p ack -e 40 -c 0 -i 2690 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.53922 -s 0 -d 9 -p ack -e 40 -c 0 -i 2680 -a 0 -x {10.0 9.0 1335 ------- null} + -t 1.53922 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2691 -a 0 -x {9.0 10.0 1350 ------- null} - -t 1.53922 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2691 -a 0 -x {9.0 10.0 1350 ------- null} h -t 1.53922 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2691 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.5393 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2677 -a 0 -x {9.0 10.0 1343 ------- null} - -t 1.5393 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2677 -a 0 -x {9.0 10.0 1343 ------- null} h -t 1.5393 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2677 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.53939 -s 0 -d 9 -p ack -e 40 -c 0 -i 2684 -a 0 -x {10.0 9.0 1337 ------- null} - -t 1.53939 -s 0 -d 9 -p ack -e 40 -c 0 -i 2684 -a 0 -x {10.0 9.0 1337 ------- null} h -t 1.53939 -s 0 -d 9 -p ack -e 40 -c 0 -i 2684 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.53962 -s 10 -d 7 -p ack -e 40 -c 0 -i 2688 -a 0 -x {10.0 9.0 1339 ------- null} + -t 1.53962 -s 7 -d 0 -p ack -e 40 -c 0 -i 2688 -a 0 -x {10.0 9.0 1339 ------- null} h -t 1.53962 -s 7 -d 8 -p ack -e 40 -c 0 -i 2688 -a 0 -x {10.0 9.0 1339 ------- null} r -t 1.53976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2673 -a 0 -x {9.0 10.0 1341 ------- null} + -t 1.53976 -s 10 -d 7 -p ack -e 40 -c 0 -i 2692 -a 0 -x {10.0 9.0 1341 ------- null} - -t 1.53976 -s 10 -d 7 -p ack -e 40 -c 0 -i 2692 -a 0 -x {10.0 9.0 1341 ------- null} h -t 1.53976 -s 10 -d 7 -p ack -e 40 -c 0 -i 2692 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.53978 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2687 -a 0 -x {9.0 10.0 1348 ------- null} + -t 1.53978 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2687 -a 0 -x {9.0 10.0 1348 ------- null} h -t 1.53978 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2687 -a 0 -x {9.0 10.0 1348 ------- null} + -t 1.54038 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2679 -a 0 -x {9.0 10.0 1344 ------- null} - -t 1.54038 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2679 -a 0 -x {9.0 10.0 1344 ------- null} h -t 1.54038 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2679 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.54038 -s 0 -d 9 -p ack -e 40 -c 0 -i 2682 -a 0 -x {10.0 9.0 1336 ------- null} + -t 1.54038 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2693 -a 0 -x {9.0 10.0 1351 ------- null} - -t 1.54038 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2693 -a 0 -x {9.0 10.0 1351 ------- null} h -t 1.54038 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2693 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.54067 -s 0 -d 9 -p ack -e 40 -c 0 -i 2686 -a 0 -x {10.0 9.0 1338 ------- null} - -t 1.54067 -s 0 -d 9 -p ack -e 40 -c 0 -i 2686 -a 0 -x {10.0 9.0 1338 ------- null} h -t 1.54067 -s 0 -d 9 -p ack -e 40 -c 0 -i 2686 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.5407 -s 10 -d 7 -p ack -e 40 -c 0 -i 2690 -a 0 -x {10.0 9.0 1340 ------- null} + -t 1.5407 -s 7 -d 0 -p ack -e 40 -c 0 -i 2690 -a 0 -x {10.0 9.0 1340 ------- null} h -t 1.5407 -s 7 -d 8 -p ack -e 40 -c 0 -i 2690 -a 0 -x {10.0 9.0 1340 ------- null} r -t 1.54082 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2689 -a 0 -x {9.0 10.0 1349 ------- null} + -t 1.54082 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2689 -a 0 -x {9.0 10.0 1349 ------- null} h -t 1.54082 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2689 -a 0 -x {9.0 10.0 1349 ------- null} r -t 1.54085 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2675 -a 0 -x {9.0 10.0 1342 ------- null} + -t 1.54085 -s 10 -d 7 -p ack -e 40 -c 0 -i 2694 -a 0 -x {10.0 9.0 1342 ------- null} - -t 1.54085 -s 10 -d 7 -p ack -e 40 -c 0 -i 2694 -a 0 -x {10.0 9.0 1342 ------- null} h -t 1.54085 -s 10 -d 7 -p ack -e 40 -c 0 -i 2694 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.54142 -s 0 -d 9 -p ack -e 40 -c 0 -i 2684 -a 0 -x {10.0 9.0 1337 ------- null} + -t 1.54142 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2695 -a 0 -x {9.0 10.0 1352 ------- null} - -t 1.54142 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2695 -a 0 -x {9.0 10.0 1352 ------- null} h -t 1.54142 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2695 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.54171 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2681 -a 0 -x {9.0 10.0 1345 ------- null} - -t 1.54171 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2681 -a 0 -x {9.0 10.0 1345 ------- null} h -t 1.54171 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2681 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.54179 -s 10 -d 7 -p ack -e 40 -c 0 -i 2692 -a 0 -x {10.0 9.0 1341 ------- null} + -t 1.54179 -s 7 -d 0 -p ack -e 40 -c 0 -i 2692 -a 0 -x {10.0 9.0 1341 ------- null} h -t 1.54179 -s 7 -d 8 -p ack -e 40 -c 0 -i 2692 -a 0 -x {10.0 9.0 1341 ------- null} + -t 1.542 -s 0 -d 9 -p ack -e 40 -c 0 -i 2688 -a 0 -x {10.0 9.0 1339 ------- null} - -t 1.542 -s 0 -d 9 -p ack -e 40 -c 0 -i 2688 -a 0 -x {10.0 9.0 1339 ------- null} h -t 1.542 -s 0 -d 9 -p ack -e 40 -c 0 -i 2688 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.54202 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2691 -a 0 -x {9.0 10.0 1350 ------- null} + -t 1.54202 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2691 -a 0 -x {9.0 10.0 1350 ------- null} h -t 1.54202 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2691 -a 0 -x {9.0 10.0 1350 ------- null} r -t 1.5421 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2677 -a 0 -x {9.0 10.0 1343 ------- null} + -t 1.5421 -s 10 -d 7 -p ack -e 40 -c 0 -i 2696 -a 0 -x {10.0 9.0 1343 ------- null} - -t 1.5421 -s 10 -d 7 -p ack -e 40 -c 0 -i 2696 -a 0 -x {10.0 9.0 1343 ------- null} h -t 1.5421 -s 10 -d 7 -p ack -e 40 -c 0 -i 2696 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.5427 -s 0 -d 9 -p ack -e 40 -c 0 -i 2686 -a 0 -x {10.0 9.0 1338 ------- null} + -t 1.5427 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2697 -a 0 -x {9.0 10.0 1353 ------- null} - -t 1.5427 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2697 -a 0 -x {9.0 10.0 1353 ------- null} h -t 1.5427 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2697 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.54286 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2683 -a 0 -x {9.0 10.0 1346 ------- null} - -t 1.54286 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2683 -a 0 -x {9.0 10.0 1346 ------- null} h -t 1.54286 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2683 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.54288 -s 10 -d 7 -p ack -e 40 -c 0 -i 2694 -a 0 -x {10.0 9.0 1342 ------- null} + -t 1.54288 -s 7 -d 0 -p ack -e 40 -c 0 -i 2694 -a 0 -x {10.0 9.0 1342 ------- null} h -t 1.54288 -s 7 -d 8 -p ack -e 40 -c 0 -i 2694 -a 0 -x {10.0 9.0 1342 ------- null} + -t 1.54293 -s 0 -d 9 -p ack -e 40 -c 0 -i 2690 -a 0 -x {10.0 9.0 1340 ------- null} - -t 1.54293 -s 0 -d 9 -p ack -e 40 -c 0 -i 2690 -a 0 -x {10.0 9.0 1340 ------- null} h -t 1.54293 -s 0 -d 9 -p ack -e 40 -c 0 -i 2690 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.54318 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2679 -a 0 -x {9.0 10.0 1344 ------- null} + -t 1.54318 -s 10 -d 7 -p ack -e 40 -c 0 -i 2698 -a 0 -x {10.0 9.0 1344 ------- null} - -t 1.54318 -s 10 -d 7 -p ack -e 40 -c 0 -i 2698 -a 0 -x {10.0 9.0 1344 ------- null} h -t 1.54318 -s 10 -d 7 -p ack -e 40 -c 0 -i 2698 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.54318 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2693 -a 0 -x {9.0 10.0 1351 ------- null} + -t 1.54318 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2693 -a 0 -x {9.0 10.0 1351 ------- null} h -t 1.54318 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2693 -a 0 -x {9.0 10.0 1351 ------- null} + -t 1.54395 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2685 -a 0 -x {9.0 10.0 1347 ------- null} - -t 1.54395 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2685 -a 0 -x {9.0 10.0 1347 ------- null} h -t 1.54395 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2685 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.54403 -s 0 -d 9 -p ack -e 40 -c 0 -i 2688 -a 0 -x {10.0 9.0 1339 ------- null} + -t 1.54403 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2699 -a 0 -x {9.0 10.0 1354 ------- null} - -t 1.54403 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2699 -a 0 -x {9.0 10.0 1354 ------- null} h -t 1.54403 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2699 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.54413 -s 10 -d 7 -p ack -e 40 -c 0 -i 2696 -a 0 -x {10.0 9.0 1343 ------- null} + -t 1.54413 -s 7 -d 0 -p ack -e 40 -c 0 -i 2696 -a 0 -x {10.0 9.0 1343 ------- null} h -t 1.54413 -s 7 -d 8 -p ack -e 40 -c 0 -i 2696 -a 0 -x {10.0 9.0 1343 ------- null} r -t 1.54422 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2695 -a 0 -x {9.0 10.0 1352 ------- null} + -t 1.54422 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2695 -a 0 -x {9.0 10.0 1352 ------- null} h -t 1.54422 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2695 -a 0 -x {9.0 10.0 1352 ------- null} + -t 1.54426 -s 0 -d 9 -p ack -e 40 -c 0 -i 2692 -a 0 -x {10.0 9.0 1341 ------- null} - -t 1.54426 -s 0 -d 9 -p ack -e 40 -c 0 -i 2692 -a 0 -x {10.0 9.0 1341 ------- null} h -t 1.54426 -s 0 -d 9 -p ack -e 40 -c 0 -i 2692 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.54451 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2681 -a 0 -x {9.0 10.0 1345 ------- null} + -t 1.54451 -s 10 -d 7 -p ack -e 40 -c 0 -i 2700 -a 0 -x {10.0 9.0 1345 ------- null} - -t 1.54451 -s 10 -d 7 -p ack -e 40 -c 0 -i 2700 -a 0 -x {10.0 9.0 1345 ------- null} h -t 1.54451 -s 10 -d 7 -p ack -e 40 -c 0 -i 2700 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.54496 -s 0 -d 9 -p ack -e 40 -c 0 -i 2690 -a 0 -x {10.0 9.0 1340 ------- null} + -t 1.54496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2701 -a 0 -x {9.0 10.0 1355 ------- null} - -t 1.54496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2701 -a 0 -x {9.0 10.0 1355 ------- null} h -t 1.54496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2701 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.54522 -s 10 -d 7 -p ack -e 40 -c 0 -i 2698 -a 0 -x {10.0 9.0 1344 ------- null} + -t 1.54522 -s 7 -d 0 -p ack -e 40 -c 0 -i 2698 -a 0 -x {10.0 9.0 1344 ------- null} h -t 1.54522 -s 7 -d 8 -p ack -e 40 -c 0 -i 2698 -a 0 -x {10.0 9.0 1344 ------- null} + -t 1.54526 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2687 -a 0 -x {9.0 10.0 1348 ------- null} - -t 1.54526 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2687 -a 0 -x {9.0 10.0 1348 ------- null} h -t 1.54526 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2687 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.54541 -s 0 -d 9 -p ack -e 40 -c 0 -i 2694 -a 0 -x {10.0 9.0 1342 ------- null} - -t 1.54541 -s 0 -d 9 -p ack -e 40 -c 0 -i 2694 -a 0 -x {10.0 9.0 1342 ------- null} h -t 1.54541 -s 0 -d 9 -p ack -e 40 -c 0 -i 2694 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.5455 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2697 -a 0 -x {9.0 10.0 1353 ------- null} + -t 1.5455 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2697 -a 0 -x {9.0 10.0 1353 ------- null} h -t 1.5455 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2697 -a 0 -x {9.0 10.0 1353 ------- null} r -t 1.54566 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2683 -a 0 -x {9.0 10.0 1346 ------- null} + -t 1.54566 -s 10 -d 7 -p ack -e 40 -c 0 -i 2702 -a 0 -x {10.0 9.0 1346 ------- null} - -t 1.54566 -s 10 -d 7 -p ack -e 40 -c 0 -i 2702 -a 0 -x {10.0 9.0 1346 ------- null} h -t 1.54566 -s 10 -d 7 -p ack -e 40 -c 0 -i 2702 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.54629 -s 0 -d 9 -p ack -e 40 -c 0 -i 2692 -a 0 -x {10.0 9.0 1341 ------- null} + -t 1.54629 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2703 -a 0 -x {9.0 10.0 1356 ------- null} - -t 1.54629 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2703 -a 0 -x {9.0 10.0 1356 ------- null} h -t 1.54629 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2703 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.54635 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2689 -a 0 -x {9.0 10.0 1349 ------- null} - -t 1.54635 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2689 -a 0 -x {9.0 10.0 1349 ------- null} h -t 1.54635 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2689 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.5465 -s 0 -d 9 -p ack -e 40 -c 0 -i 2696 -a 0 -x {10.0 9.0 1343 ------- null} - -t 1.5465 -s 0 -d 9 -p ack -e 40 -c 0 -i 2696 -a 0 -x {10.0 9.0 1343 ------- null} h -t 1.5465 -s 0 -d 9 -p ack -e 40 -c 0 -i 2696 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.54654 -s 10 -d 7 -p ack -e 40 -c 0 -i 2700 -a 0 -x {10.0 9.0 1345 ------- null} + -t 1.54654 -s 7 -d 0 -p ack -e 40 -c 0 -i 2700 -a 0 -x {10.0 9.0 1345 ------- null} h -t 1.54654 -s 7 -d 8 -p ack -e 40 -c 0 -i 2700 -a 0 -x {10.0 9.0 1345 ------- null} r -t 1.54675 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2685 -a 0 -x {9.0 10.0 1347 ------- null} + -t 1.54675 -s 10 -d 7 -p ack -e 40 -c 0 -i 2704 -a 0 -x {10.0 9.0 1347 ------- null} - -t 1.54675 -s 10 -d 7 -p ack -e 40 -c 0 -i 2704 -a 0 -x {10.0 9.0 1347 ------- null} h -t 1.54675 -s 10 -d 7 -p ack -e 40 -c 0 -i 2704 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.54683 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2699 -a 0 -x {9.0 10.0 1354 ------- null} + -t 1.54683 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2699 -a 0 -x {9.0 10.0 1354 ------- null} h -t 1.54683 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2699 -a 0 -x {9.0 10.0 1354 ------- null} + -t 1.54744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2691 -a 0 -x {9.0 10.0 1350 ------- null} - -t 1.54744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2691 -a 0 -x {9.0 10.0 1350 ------- null} h -t 1.54744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2691 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.54744 -s 0 -d 9 -p ack -e 40 -c 0 -i 2694 -a 0 -x {10.0 9.0 1342 ------- null} + -t 1.54744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2705 -a 0 -x {9.0 10.0 1357 ------- null} - -t 1.54744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2705 -a 0 -x {9.0 10.0 1357 ------- null} h -t 1.54744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2705 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.5476 -s 0 -d 9 -p ack -e 40 -c 0 -i 2698 -a 0 -x {10.0 9.0 1344 ------- null} - -t 1.5476 -s 0 -d 9 -p ack -e 40 -c 0 -i 2698 -a 0 -x {10.0 9.0 1344 ------- null} h -t 1.5476 -s 0 -d 9 -p ack -e 40 -c 0 -i 2698 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.5477 -s 10 -d 7 -p ack -e 40 -c 0 -i 2702 -a 0 -x {10.0 9.0 1346 ------- null} + -t 1.5477 -s 7 -d 0 -p ack -e 40 -c 0 -i 2702 -a 0 -x {10.0 9.0 1346 ------- null} h -t 1.5477 -s 7 -d 8 -p ack -e 40 -c 0 -i 2702 -a 0 -x {10.0 9.0 1346 ------- null} r -t 1.54776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2701 -a 0 -x {9.0 10.0 1355 ------- null} + -t 1.54776 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2701 -a 0 -x {9.0 10.0 1355 ------- null} h -t 1.54776 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2701 -a 0 -x {9.0 10.0 1355 ------- null} r -t 1.54806 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2687 -a 0 -x {9.0 10.0 1348 ------- null} + -t 1.54806 -s 10 -d 7 -p ack -e 40 -c 0 -i 2706 -a 0 -x {10.0 9.0 1348 ------- null} - -t 1.54806 -s 10 -d 7 -p ack -e 40 -c 0 -i 2706 -a 0 -x {10.0 9.0 1348 ------- null} h -t 1.54806 -s 10 -d 7 -p ack -e 40 -c 0 -i 2706 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.54853 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2693 -a 0 -x {9.0 10.0 1351 ------- null} - -t 1.54853 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2693 -a 0 -x {9.0 10.0 1351 ------- null} h -t 1.54853 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2693 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.54853 -s 0 -d 9 -p ack -e 40 -c 0 -i 2696 -a 0 -x {10.0 9.0 1343 ------- null} + -t 1.54853 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2707 -a 0 -x {9.0 10.0 1358 ------- null} - -t 1.54853 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2707 -a 0 -x {9.0 10.0 1358 ------- null} h -t 1.54853 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2707 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.5487 -s 0 -d 9 -p ack -e 40 -c 0 -i 2700 -a 0 -x {10.0 9.0 1345 ------- null} - -t 1.5487 -s 0 -d 9 -p ack -e 40 -c 0 -i 2700 -a 0 -x {10.0 9.0 1345 ------- null} h -t 1.5487 -s 0 -d 9 -p ack -e 40 -c 0 -i 2700 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.54878 -s 10 -d 7 -p ack -e 40 -c 0 -i 2704 -a 0 -x {10.0 9.0 1347 ------- null} + -t 1.54878 -s 7 -d 0 -p ack -e 40 -c 0 -i 2704 -a 0 -x {10.0 9.0 1347 ------- null} h -t 1.54878 -s 7 -d 8 -p ack -e 40 -c 0 -i 2704 -a 0 -x {10.0 9.0 1347 ------- null} r -t 1.54909 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2703 -a 0 -x {9.0 10.0 1356 ------- null} + -t 1.54909 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2703 -a 0 -x {9.0 10.0 1356 ------- null} h -t 1.54909 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2703 -a 0 -x {9.0 10.0 1356 ------- null} r -t 1.54915 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2689 -a 0 -x {9.0 10.0 1349 ------- null} + -t 1.54915 -s 10 -d 7 -p ack -e 40 -c 0 -i 2708 -a 0 -x {10.0 9.0 1349 ------- null} - -t 1.54915 -s 10 -d 7 -p ack -e 40 -c 0 -i 2708 -a 0 -x {10.0 9.0 1349 ------- null} h -t 1.54915 -s 10 -d 7 -p ack -e 40 -c 0 -i 2708 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.54962 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2695 -a 0 -x {9.0 10.0 1352 ------- null} - -t 1.54962 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2695 -a 0 -x {9.0 10.0 1352 ------- null} h -t 1.54962 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2695 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.54963 -s 0 -d 9 -p ack -e 40 -c 0 -i 2698 -a 0 -x {10.0 9.0 1344 ------- null} + -t 1.54963 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2709 -a 0 -x {9.0 10.0 1359 ------- null} - -t 1.54963 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2709 -a 0 -x {9.0 10.0 1359 ------- null} h -t 1.54963 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2709 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.54982 -s 0 -d 9 -p ack -e 40 -c 0 -i 2702 -a 0 -x {10.0 9.0 1346 ------- null} - -t 1.54982 -s 0 -d 9 -p ack -e 40 -c 0 -i 2702 -a 0 -x {10.0 9.0 1346 ------- null} h -t 1.54982 -s 0 -d 9 -p ack -e 40 -c 0 -i 2702 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.5501 -s 10 -d 7 -p ack -e 40 -c 0 -i 2706 -a 0 -x {10.0 9.0 1348 ------- null} + -t 1.5501 -s 7 -d 0 -p ack -e 40 -c 0 -i 2706 -a 0 -x {10.0 9.0 1348 ------- null} h -t 1.5501 -s 7 -d 8 -p ack -e 40 -c 0 -i 2706 -a 0 -x {10.0 9.0 1348 ------- null} r -t 1.55024 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2691 -a 0 -x {9.0 10.0 1350 ------- null} + -t 1.55024 -s 10 -d 7 -p ack -e 40 -c 0 -i 2710 -a 0 -x {10.0 9.0 1350 ------- null} - -t 1.55024 -s 10 -d 7 -p ack -e 40 -c 0 -i 2710 -a 0 -x {10.0 9.0 1350 ------- null} h -t 1.55024 -s 10 -d 7 -p ack -e 40 -c 0 -i 2710 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.55024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2705 -a 0 -x {9.0 10.0 1357 ------- null} + -t 1.55024 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2705 -a 0 -x {9.0 10.0 1357 ------- null} h -t 1.55024 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2705 -a 0 -x {9.0 10.0 1357 ------- null} + -t 1.5507 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2697 -a 0 -x {9.0 10.0 1353 ------- null} - -t 1.5507 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2697 -a 0 -x {9.0 10.0 1353 ------- null} h -t 1.5507 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2697 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.55074 -s 0 -d 9 -p ack -e 40 -c 0 -i 2700 -a 0 -x {10.0 9.0 1345 ------- null} + -t 1.55074 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2711 -a 0 -x {9.0 10.0 1360 ------- null} - -t 1.55074 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2711 -a 0 -x {9.0 10.0 1360 ------- null} h -t 1.55074 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2711 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.55099 -s 0 -d 9 -p ack -e 40 -c 0 -i 2704 -a 0 -x {10.0 9.0 1347 ------- null} - -t 1.55099 -s 0 -d 9 -p ack -e 40 -c 0 -i 2704 -a 0 -x {10.0 9.0 1347 ------- null} h -t 1.55099 -s 0 -d 9 -p ack -e 40 -c 0 -i 2704 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.55118 -s 10 -d 7 -p ack -e 40 -c 0 -i 2708 -a 0 -x {10.0 9.0 1349 ------- null} + -t 1.55118 -s 7 -d 0 -p ack -e 40 -c 0 -i 2708 -a 0 -x {10.0 9.0 1349 ------- null} h -t 1.55118 -s 7 -d 8 -p ack -e 40 -c 0 -i 2708 -a 0 -x {10.0 9.0 1349 ------- null} r -t 1.55133 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2693 -a 0 -x {9.0 10.0 1351 ------- null} + -t 1.55133 -s 10 -d 7 -p ack -e 40 -c 0 -i 2712 -a 0 -x {10.0 9.0 1351 ------- null} - -t 1.55133 -s 10 -d 7 -p ack -e 40 -c 0 -i 2712 -a 0 -x {10.0 9.0 1351 ------- null} h -t 1.55133 -s 10 -d 7 -p ack -e 40 -c 0 -i 2712 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.55133 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2707 -a 0 -x {9.0 10.0 1358 ------- null} + -t 1.55133 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2707 -a 0 -x {9.0 10.0 1358 ------- null} h -t 1.55133 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2707 -a 0 -x {9.0 10.0 1358 ------- null} + -t 1.55184 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2699 -a 0 -x {9.0 10.0 1354 ------- null} - -t 1.55184 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2699 -a 0 -x {9.0 10.0 1354 ------- null} h -t 1.55184 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2699 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.55186 -s 0 -d 9 -p ack -e 40 -c 0 -i 2702 -a 0 -x {10.0 9.0 1346 ------- null} + -t 1.55186 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2713 -a 0 -x {9.0 10.0 1361 ------- null} - -t 1.55186 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2713 -a 0 -x {9.0 10.0 1361 ------- null} h -t 1.55186 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2713 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.55205 -s 0 -d 9 -p ack -e 40 -c 0 -i 2706 -a 0 -x {10.0 9.0 1348 ------- null} - -t 1.55205 -s 0 -d 9 -p ack -e 40 -c 0 -i 2706 -a 0 -x {10.0 9.0 1348 ------- null} h -t 1.55205 -s 0 -d 9 -p ack -e 40 -c 0 -i 2706 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.55227 -s 10 -d 7 -p ack -e 40 -c 0 -i 2710 -a 0 -x {10.0 9.0 1350 ------- null} + -t 1.55227 -s 7 -d 0 -p ack -e 40 -c 0 -i 2710 -a 0 -x {10.0 9.0 1350 ------- null} h -t 1.55227 -s 7 -d 8 -p ack -e 40 -c 0 -i 2710 -a 0 -x {10.0 9.0 1350 ------- null} r -t 1.55242 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2695 -a 0 -x {9.0 10.0 1352 ------- null} + -t 1.55242 -s 10 -d 7 -p ack -e 40 -c 0 -i 2714 -a 0 -x {10.0 9.0 1352 ------- null} - -t 1.55242 -s 10 -d 7 -p ack -e 40 -c 0 -i 2714 -a 0 -x {10.0 9.0 1352 ------- null} h -t 1.55242 -s 10 -d 7 -p ack -e 40 -c 0 -i 2714 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.55243 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2709 -a 0 -x {9.0 10.0 1359 ------- null} + -t 1.55243 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2709 -a 0 -x {9.0 10.0 1359 ------- null} h -t 1.55243 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2709 -a 0 -x {9.0 10.0 1359 ------- null} + -t 1.55293 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2701 -a 0 -x {9.0 10.0 1355 ------- null} - -t 1.55293 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2701 -a 0 -x {9.0 10.0 1355 ------- null} h -t 1.55293 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2701 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.55302 -s 0 -d 9 -p ack -e 40 -c 0 -i 2704 -a 0 -x {10.0 9.0 1347 ------- null} + -t 1.55302 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2715 -a 0 -x {9.0 10.0 1362 ------- null} - -t 1.55302 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2715 -a 0 -x {9.0 10.0 1362 ------- null} h -t 1.55302 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2715 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.55304 -s 0 -d 9 -p ack -e 40 -c 0 -i 2708 -a 0 -x {10.0 9.0 1349 ------- null} - -t 1.55304 -s 0 -d 9 -p ack -e 40 -c 0 -i 2708 -a 0 -x {10.0 9.0 1349 ------- null} h -t 1.55304 -s 0 -d 9 -p ack -e 40 -c 0 -i 2708 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.55336 -s 10 -d 7 -p ack -e 40 -c 0 -i 2712 -a 0 -x {10.0 9.0 1351 ------- null} + -t 1.55336 -s 7 -d 0 -p ack -e 40 -c 0 -i 2712 -a 0 -x {10.0 9.0 1351 ------- null} h -t 1.55336 -s 7 -d 8 -p ack -e 40 -c 0 -i 2712 -a 0 -x {10.0 9.0 1351 ------- null} r -t 1.5535 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2697 -a 0 -x {9.0 10.0 1353 ------- null} + -t 1.5535 -s 10 -d 7 -p ack -e 40 -c 0 -i 2716 -a 0 -x {10.0 9.0 1353 ------- null} - -t 1.5535 -s 10 -d 7 -p ack -e 40 -c 0 -i 2716 -a 0 -x {10.0 9.0 1353 ------- null} h -t 1.5535 -s 10 -d 7 -p ack -e 40 -c 0 -i 2716 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.55354 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2711 -a 0 -x {9.0 10.0 1360 ------- null} + -t 1.55354 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2711 -a 0 -x {9.0 10.0 1360 ------- null} h -t 1.55354 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2711 -a 0 -x {9.0 10.0 1360 ------- null} + -t 1.55402 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2703 -a 0 -x {9.0 10.0 1356 ------- null} - -t 1.55402 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2703 -a 0 -x {9.0 10.0 1356 ------- null} h -t 1.55402 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2703 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.55408 -s 0 -d 9 -p ack -e 40 -c 0 -i 2706 -a 0 -x {10.0 9.0 1348 ------- null} + -t 1.55408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2717 -a 0 -x {9.0 10.0 1363 ------- null} - -t 1.55408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2717 -a 0 -x {9.0 10.0 1363 ------- null} h -t 1.55408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2717 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.55427 -s 0 -d 9 -p ack -e 40 -c 0 -i 2710 -a 0 -x {10.0 9.0 1350 ------- null} - -t 1.55427 -s 0 -d 9 -p ack -e 40 -c 0 -i 2710 -a 0 -x {10.0 9.0 1350 ------- null} h -t 1.55427 -s 0 -d 9 -p ack -e 40 -c 0 -i 2710 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.55445 -s 10 -d 7 -p ack -e 40 -c 0 -i 2714 -a 0 -x {10.0 9.0 1352 ------- null} + -t 1.55445 -s 7 -d 0 -p ack -e 40 -c 0 -i 2714 -a 0 -x {10.0 9.0 1352 ------- null} h -t 1.55445 -s 7 -d 8 -p ack -e 40 -c 0 -i 2714 -a 0 -x {10.0 9.0 1352 ------- null} r -t 1.55464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2699 -a 0 -x {9.0 10.0 1354 ------- null} + -t 1.55464 -s 10 -d 7 -p ack -e 40 -c 0 -i 2718 -a 0 -x {10.0 9.0 1354 ------- null} - -t 1.55464 -s 10 -d 7 -p ack -e 40 -c 0 -i 2718 -a 0 -x {10.0 9.0 1354 ------- null} h -t 1.55464 -s 10 -d 7 -p ack -e 40 -c 0 -i 2718 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.55466 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2713 -a 0 -x {9.0 10.0 1361 ------- null} + -t 1.55466 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2713 -a 0 -x {9.0 10.0 1361 ------- null} h -t 1.55466 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2713 -a 0 -x {9.0 10.0 1361 ------- null} r -t 1.55507 -s 0 -d 9 -p ack -e 40 -c 0 -i 2708 -a 0 -x {10.0 9.0 1349 ------- null} + -t 1.55507 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2719 -a 0 -x {9.0 10.0 1364 ------- null} - -t 1.55507 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2719 -a 0 -x {9.0 10.0 1364 ------- null} h -t 1.55507 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2719 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.5551 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2705 -a 0 -x {9.0 10.0 1357 ------- null} - -t 1.5551 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2705 -a 0 -x {9.0 10.0 1357 ------- null} h -t 1.5551 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2705 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.55517 -s 0 -d 9 -p ack -e 40 -c 0 -i 2712 -a 0 -x {10.0 9.0 1351 ------- null} - -t 1.55517 -s 0 -d 9 -p ack -e 40 -c 0 -i 2712 -a 0 -x {10.0 9.0 1351 ------- null} h -t 1.55517 -s 0 -d 9 -p ack -e 40 -c 0 -i 2712 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.55554 -s 10 -d 7 -p ack -e 40 -c 0 -i 2716 -a 0 -x {10.0 9.0 1353 ------- null} + -t 1.55554 -s 7 -d 0 -p ack -e 40 -c 0 -i 2716 -a 0 -x {10.0 9.0 1353 ------- null} h -t 1.55554 -s 7 -d 8 -p ack -e 40 -c 0 -i 2716 -a 0 -x {10.0 9.0 1353 ------- null} r -t 1.55573 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2701 -a 0 -x {9.0 10.0 1355 ------- null} + -t 1.55573 -s 10 -d 7 -p ack -e 40 -c 0 -i 2720 -a 0 -x {10.0 9.0 1355 ------- null} - -t 1.55573 -s 10 -d 7 -p ack -e 40 -c 0 -i 2720 -a 0 -x {10.0 9.0 1355 ------- null} h -t 1.55573 -s 10 -d 7 -p ack -e 40 -c 0 -i 2720 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.55582 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2715 -a 0 -x {9.0 10.0 1362 ------- null} + -t 1.55582 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2715 -a 0 -x {9.0 10.0 1362 ------- null} h -t 1.55582 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2715 -a 0 -x {9.0 10.0 1362 ------- null} + -t 1.55619 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2707 -a 0 -x {9.0 10.0 1358 ------- null} - -t 1.55619 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2707 -a 0 -x {9.0 10.0 1358 ------- null} h -t 1.55619 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2707 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.5563 -s 0 -d 9 -p ack -e 40 -c 0 -i 2710 -a 0 -x {10.0 9.0 1350 ------- null} + -t 1.5563 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2721 -a 0 -x {9.0 10.0 1365 ------- null} - -t 1.5563 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2721 -a 0 -x {9.0 10.0 1365 ------- null} h -t 1.5563 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2721 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.55646 -s 0 -d 9 -p ack -e 40 -c 0 -i 2714 -a 0 -x {10.0 9.0 1352 ------- null} - -t 1.55646 -s 0 -d 9 -p ack -e 40 -c 0 -i 2714 -a 0 -x {10.0 9.0 1352 ------- null} h -t 1.55646 -s 0 -d 9 -p ack -e 40 -c 0 -i 2714 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.55667 -s 10 -d 7 -p ack -e 40 -c 0 -i 2718 -a 0 -x {10.0 9.0 1354 ------- null} + -t 1.55667 -s 7 -d 0 -p ack -e 40 -c 0 -i 2718 -a 0 -x {10.0 9.0 1354 ------- null} h -t 1.55667 -s 7 -d 8 -p ack -e 40 -c 0 -i 2718 -a 0 -x {10.0 9.0 1354 ------- null} r -t 1.55682 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2703 -a 0 -x {9.0 10.0 1356 ------- null} + -t 1.55682 -s 10 -d 7 -p ack -e 40 -c 0 -i 2722 -a 0 -x {10.0 9.0 1356 ------- null} - -t 1.55682 -s 10 -d 7 -p ack -e 40 -c 0 -i 2722 -a 0 -x {10.0 9.0 1356 ------- null} h -t 1.55682 -s 10 -d 7 -p ack -e 40 -c 0 -i 2722 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.55688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2717 -a 0 -x {9.0 10.0 1363 ------- null} + -t 1.55688 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2717 -a 0 -x {9.0 10.0 1363 ------- null} h -t 1.55688 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2717 -a 0 -x {9.0 10.0 1363 ------- null} r -t 1.5572 -s 0 -d 9 -p ack -e 40 -c 0 -i 2712 -a 0 -x {10.0 9.0 1351 ------- null} + -t 1.5572 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2723 -a 0 -x {9.0 10.0 1366 ------- null} - -t 1.5572 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2723 -a 0 -x {9.0 10.0 1366 ------- null} h -t 1.5572 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2723 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.55733 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2709 -a 0 -x {9.0 10.0 1359 ------- null} - -t 1.55733 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2709 -a 0 -x {9.0 10.0 1359 ------- null} h -t 1.55733 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2709 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.55763 -s 0 -d 9 -p ack -e 40 -c 0 -i 2716 -a 0 -x {10.0 9.0 1353 ------- null} - -t 1.55763 -s 0 -d 9 -p ack -e 40 -c 0 -i 2716 -a 0 -x {10.0 9.0 1353 ------- null} h -t 1.55763 -s 0 -d 9 -p ack -e 40 -c 0 -i 2716 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.55776 -s 10 -d 7 -p ack -e 40 -c 0 -i 2720 -a 0 -x {10.0 9.0 1355 ------- null} + -t 1.55776 -s 7 -d 0 -p ack -e 40 -c 0 -i 2720 -a 0 -x {10.0 9.0 1355 ------- null} h -t 1.55776 -s 7 -d 8 -p ack -e 40 -c 0 -i 2720 -a 0 -x {10.0 9.0 1355 ------- null} r -t 1.55787 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2719 -a 0 -x {9.0 10.0 1364 ------- null} + -t 1.55787 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2719 -a 0 -x {9.0 10.0 1364 ------- null} h -t 1.55787 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2719 -a 0 -x {9.0 10.0 1364 ------- null} r -t 1.5579 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2705 -a 0 -x {9.0 10.0 1357 ------- null} + -t 1.5579 -s 10 -d 7 -p ack -e 40 -c 0 -i 2724 -a 0 -x {10.0 9.0 1357 ------- null} - -t 1.5579 -s 10 -d 7 -p ack -e 40 -c 0 -i 2724 -a 0 -x {10.0 9.0 1357 ------- null} h -t 1.5579 -s 10 -d 7 -p ack -e 40 -c 0 -i 2724 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.5585 -s 0 -d 9 -p ack -e 40 -c 0 -i 2714 -a 0 -x {10.0 9.0 1352 ------- null} + -t 1.5585 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2725 -a 0 -x {9.0 10.0 1367 ------- null} - -t 1.5585 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2725 -a 0 -x {9.0 10.0 1367 ------- null} h -t 1.5585 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2725 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.55864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2711 -a 0 -x {9.0 10.0 1360 ------- null} - -t 1.55864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2711 -a 0 -x {9.0 10.0 1360 ------- null} h -t 1.55864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2711 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.55885 -s 10 -d 7 -p ack -e 40 -c 0 -i 2722 -a 0 -x {10.0 9.0 1356 ------- null} + -t 1.55885 -s 7 -d 0 -p ack -e 40 -c 0 -i 2722 -a 0 -x {10.0 9.0 1356 ------- null} h -t 1.55885 -s 7 -d 8 -p ack -e 40 -c 0 -i 2722 -a 0 -x {10.0 9.0 1356 ------- null} + -t 1.55885 -s 0 -d 9 -p ack -e 40 -c 0 -i 2718 -a 0 -x {10.0 9.0 1354 ------- null} - -t 1.55885 -s 0 -d 9 -p ack -e 40 -c 0 -i 2718 -a 0 -x {10.0 9.0 1354 ------- null} h -t 1.55885 -s 0 -d 9 -p ack -e 40 -c 0 -i 2718 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.55899 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2707 -a 0 -x {9.0 10.0 1358 ------- null} + -t 1.55899 -s 10 -d 7 -p ack -e 40 -c 0 -i 2726 -a 0 -x {10.0 9.0 1358 ------- null} - -t 1.55899 -s 10 -d 7 -p ack -e 40 -c 0 -i 2726 -a 0 -x {10.0 9.0 1358 ------- null} h -t 1.55899 -s 10 -d 7 -p ack -e 40 -c 0 -i 2726 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.5591 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2721 -a 0 -x {9.0 10.0 1365 ------- null} + -t 1.5591 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2721 -a 0 -x {9.0 10.0 1365 ------- null} h -t 1.5591 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2721 -a 0 -x {9.0 10.0 1365 ------- null} r -t 1.55966 -s 0 -d 9 -p ack -e 40 -c 0 -i 2716 -a 0 -x {10.0 9.0 1353 ------- null} + -t 1.55966 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2727 -a 0 -x {9.0 10.0 1368 ------- null} - -t 1.55966 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2727 -a 0 -x {9.0 10.0 1368 ------- null} h -t 1.55966 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2727 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.55973 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2713 -a 0 -x {9.0 10.0 1361 ------- null} - -t 1.55973 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2713 -a 0 -x {9.0 10.0 1361 ------- null} h -t 1.55973 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2713 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.55994 -s 10 -d 7 -p ack -e 40 -c 0 -i 2724 -a 0 -x {10.0 9.0 1357 ------- null} + -t 1.55994 -s 7 -d 0 -p ack -e 40 -c 0 -i 2724 -a 0 -x {10.0 9.0 1357 ------- null} h -t 1.55994 -s 7 -d 8 -p ack -e 40 -c 0 -i 2724 -a 0 -x {10.0 9.0 1357 ------- null} + -t 1.55994 -s 0 -d 9 -p ack -e 40 -c 0 -i 2720 -a 0 -x {10.0 9.0 1355 ------- null} - -t 1.55994 -s 0 -d 9 -p ack -e 40 -c 0 -i 2720 -a 0 -x {10.0 9.0 1355 ------- null} h -t 1.55994 -s 0 -d 9 -p ack -e 40 -c 0 -i 2720 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.56 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2723 -a 0 -x {9.0 10.0 1366 ------- null} + -t 1.56 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2723 -a 0 -x {9.0 10.0 1366 ------- null} h -t 1.56 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2723 -a 0 -x {9.0 10.0 1366 ------- null} r -t 1.56013 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2709 -a 0 -x {9.0 10.0 1359 ------- null} + -t 1.56013 -s 10 -d 7 -p ack -e 40 -c 0 -i 2728 -a 0 -x {10.0 9.0 1359 ------- null} - -t 1.56013 -s 10 -d 7 -p ack -e 40 -c 0 -i 2728 -a 0 -x {10.0 9.0 1359 ------- null} h -t 1.56013 -s 10 -d 7 -p ack -e 40 -c 0 -i 2728 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.56082 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2715 -a 0 -x {9.0 10.0 1362 ------- null} - -t 1.56082 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2715 -a 0 -x {9.0 10.0 1362 ------- null} h -t 1.56082 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2715 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.56088 -s 0 -d 9 -p ack -e 40 -c 0 -i 2718 -a 0 -x {10.0 9.0 1354 ------- null} + -t 1.56088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2729 -a 0 -x {9.0 10.0 1369 ------- null} - -t 1.56088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2729 -a 0 -x {9.0 10.0 1369 ------- null} h -t 1.56088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2729 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.56098 -s 0 -d 9 -p ack -e 40 -c 0 -i 2722 -a 0 -x {10.0 9.0 1356 ------- null} - -t 1.56098 -s 0 -d 9 -p ack -e 40 -c 0 -i 2722 -a 0 -x {10.0 9.0 1356 ------- null} h -t 1.56098 -s 0 -d 9 -p ack -e 40 -c 0 -i 2722 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.56102 -s 10 -d 7 -p ack -e 40 -c 0 -i 2726 -a 0 -x {10.0 9.0 1358 ------- null} + -t 1.56102 -s 7 -d 0 -p ack -e 40 -c 0 -i 2726 -a 0 -x {10.0 9.0 1358 ------- null} h -t 1.56102 -s 7 -d 8 -p ack -e 40 -c 0 -i 2726 -a 0 -x {10.0 9.0 1358 ------- null} r -t 1.5613 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2725 -a 0 -x {9.0 10.0 1367 ------- null} + -t 1.5613 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2725 -a 0 -x {9.0 10.0 1367 ------- null} h -t 1.5613 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2725 -a 0 -x {9.0 10.0 1367 ------- null} r -t 1.56144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2711 -a 0 -x {9.0 10.0 1360 ------- null} + -t 1.56144 -s 10 -d 7 -p ack -e 40 -c 0 -i 2730 -a 0 -x {10.0 9.0 1360 ------- null} - -t 1.56144 -s 10 -d 7 -p ack -e 40 -c 0 -i 2730 -a 0 -x {10.0 9.0 1360 ------- null} h -t 1.56144 -s 10 -d 7 -p ack -e 40 -c 0 -i 2730 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.5619 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2717 -a 0 -x {9.0 10.0 1363 ------- null} - -t 1.5619 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2717 -a 0 -x {9.0 10.0 1363 ------- null} h -t 1.5619 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2717 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.56197 -s 0 -d 9 -p ack -e 40 -c 0 -i 2720 -a 0 -x {10.0 9.0 1355 ------- null} + -t 1.56197 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2731 -a 0 -x {9.0 10.0 1370 ------- null} - -t 1.56197 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2731 -a 0 -x {9.0 10.0 1370 ------- null} h -t 1.56197 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2731 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.5621 -s 0 -d 9 -p ack -e 40 -c 0 -i 2724 -a 0 -x {10.0 9.0 1357 ------- null} - -t 1.5621 -s 0 -d 9 -p ack -e 40 -c 0 -i 2724 -a 0 -x {10.0 9.0 1357 ------- null} h -t 1.5621 -s 0 -d 9 -p ack -e 40 -c 0 -i 2724 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.56216 -s 10 -d 7 -p ack -e 40 -c 0 -i 2728 -a 0 -x {10.0 9.0 1359 ------- null} + -t 1.56216 -s 7 -d 0 -p ack -e 40 -c 0 -i 2728 -a 0 -x {10.0 9.0 1359 ------- null} h -t 1.56216 -s 7 -d 8 -p ack -e 40 -c 0 -i 2728 -a 0 -x {10.0 9.0 1359 ------- null} r -t 1.56246 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2727 -a 0 -x {9.0 10.0 1368 ------- null} + -t 1.56246 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2727 -a 0 -x {9.0 10.0 1368 ------- null} h -t 1.56246 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2727 -a 0 -x {9.0 10.0 1368 ------- null} r -t 1.56253 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2713 -a 0 -x {9.0 10.0 1361 ------- null} + -t 1.56253 -s 10 -d 7 -p ack -e 40 -c 0 -i 2732 -a 0 -x {10.0 9.0 1361 ------- null} - -t 1.56253 -s 10 -d 7 -p ack -e 40 -c 0 -i 2732 -a 0 -x {10.0 9.0 1361 ------- null} h -t 1.56253 -s 10 -d 7 -p ack -e 40 -c 0 -i 2732 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.56299 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2719 -a 0 -x {9.0 10.0 1364 ------- null} - -t 1.56299 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2719 -a 0 -x {9.0 10.0 1364 ------- null} h -t 1.56299 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2719 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.56301 -s 0 -d 9 -p ack -e 40 -c 0 -i 2722 -a 0 -x {10.0 9.0 1356 ------- null} + -t 1.56301 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2733 -a 0 -x {9.0 10.0 1371 ------- null} - -t 1.56301 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2733 -a 0 -x {9.0 10.0 1371 ------- null} h -t 1.56301 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2733 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.56318 -s 0 -d 9 -p ack -e 40 -c 0 -i 2726 -a 0 -x {10.0 9.0 1358 ------- null} - -t 1.56318 -s 0 -d 9 -p ack -e 40 -c 0 -i 2726 -a 0 -x {10.0 9.0 1358 ------- null} h -t 1.56318 -s 0 -d 9 -p ack -e 40 -c 0 -i 2726 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.56347 -s 10 -d 7 -p ack -e 40 -c 0 -i 2730 -a 0 -x {10.0 9.0 1360 ------- null} + -t 1.56347 -s 7 -d 0 -p ack -e 40 -c 0 -i 2730 -a 0 -x {10.0 9.0 1360 ------- null} h -t 1.56347 -s 7 -d 8 -p ack -e 40 -c 0 -i 2730 -a 0 -x {10.0 9.0 1360 ------- null} r -t 1.56362 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2715 -a 0 -x {9.0 10.0 1362 ------- null} + -t 1.56362 -s 10 -d 7 -p ack -e 40 -c 0 -i 2734 -a 0 -x {10.0 9.0 1362 ------- null} - -t 1.56362 -s 10 -d 7 -p ack -e 40 -c 0 -i 2734 -a 0 -x {10.0 9.0 1362 ------- null} h -t 1.56362 -s 10 -d 7 -p ack -e 40 -c 0 -i 2734 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.56368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2729 -a 0 -x {9.0 10.0 1369 ------- null} + -t 1.56368 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2729 -a 0 -x {9.0 10.0 1369 ------- null} h -t 1.56368 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2729 -a 0 -x {9.0 10.0 1369 ------- null} + -t 1.56408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2721 -a 0 -x {9.0 10.0 1365 ------- null} - -t 1.56408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2721 -a 0 -x {9.0 10.0 1365 ------- null} h -t 1.56408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2721 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.56413 -s 0 -d 9 -p ack -e 40 -c 0 -i 2724 -a 0 -x {10.0 9.0 1357 ------- null} + -t 1.56413 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2735 -a 0 -x {9.0 10.0 1372 ------- null} - -t 1.56413 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2735 -a 0 -x {9.0 10.0 1372 ------- null} h -t 1.56413 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2735 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.56418 -s 0 -d 9 -p ack -e 40 -c 0 -i 2728 -a 0 -x {10.0 9.0 1359 ------- null} - -t 1.56418 -s 0 -d 9 -p ack -e 40 -c 0 -i 2728 -a 0 -x {10.0 9.0 1359 ------- null} h -t 1.56418 -s 0 -d 9 -p ack -e 40 -c 0 -i 2728 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.56456 -s 10 -d 7 -p ack -e 40 -c 0 -i 2732 -a 0 -x {10.0 9.0 1361 ------- null} + -t 1.56456 -s 7 -d 0 -p ack -e 40 -c 0 -i 2732 -a 0 -x {10.0 9.0 1361 ------- null} h -t 1.56456 -s 7 -d 8 -p ack -e 40 -c 0 -i 2732 -a 0 -x {10.0 9.0 1361 ------- null} r -t 1.5647 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2717 -a 0 -x {9.0 10.0 1363 ------- null} + -t 1.5647 -s 10 -d 7 -p ack -e 40 -c 0 -i 2736 -a 0 -x {10.0 9.0 1363 ------- null} - -t 1.5647 -s 10 -d 7 -p ack -e 40 -c 0 -i 2736 -a 0 -x {10.0 9.0 1363 ------- null} h -t 1.5647 -s 10 -d 7 -p ack -e 40 -c 0 -i 2736 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.56477 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2731 -a 0 -x {9.0 10.0 1370 ------- null} + -t 1.56477 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2731 -a 0 -x {9.0 10.0 1370 ------- null} h -t 1.56477 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2731 -a 0 -x {9.0 10.0 1370 ------- null} + -t 1.56517 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2723 -a 0 -x {9.0 10.0 1366 ------- null} - -t 1.56517 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2723 -a 0 -x {9.0 10.0 1366 ------- null} h -t 1.56517 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2723 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.56522 -s 0 -d 9 -p ack -e 40 -c 0 -i 2726 -a 0 -x {10.0 9.0 1358 ------- null} + -t 1.56522 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2737 -a 0 -x {9.0 10.0 1373 ------- null} - -t 1.56522 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2737 -a 0 -x {9.0 10.0 1373 ------- null} h -t 1.56522 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2737 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.56546 -s 0 -d 9 -p ack -e 40 -c 0 -i 2730 -a 0 -x {10.0 9.0 1360 ------- null} - -t 1.56546 -s 0 -d 9 -p ack -e 40 -c 0 -i 2730 -a 0 -x {10.0 9.0 1360 ------- null} h -t 1.56546 -s 0 -d 9 -p ack -e 40 -c 0 -i 2730 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.56565 -s 10 -d 7 -p ack -e 40 -c 0 -i 2734 -a 0 -x {10.0 9.0 1362 ------- null} + -t 1.56565 -s 7 -d 0 -p ack -e 40 -c 0 -i 2734 -a 0 -x {10.0 9.0 1362 ------- null} h -t 1.56565 -s 7 -d 8 -p ack -e 40 -c 0 -i 2734 -a 0 -x {10.0 9.0 1362 ------- null} r -t 1.56579 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2719 -a 0 -x {9.0 10.0 1364 ------- null} + -t 1.56579 -s 10 -d 7 -p ack -e 40 -c 0 -i 2738 -a 0 -x {10.0 9.0 1364 ------- null} - -t 1.56579 -s 10 -d 7 -p ack -e 40 -c 0 -i 2738 -a 0 -x {10.0 9.0 1364 ------- null} h -t 1.56579 -s 10 -d 7 -p ack -e 40 -c 0 -i 2738 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.56581 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2733 -a 0 -x {9.0 10.0 1371 ------- null} + -t 1.56581 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2733 -a 0 -x {9.0 10.0 1371 ------- null} h -t 1.56581 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2733 -a 0 -x {9.0 10.0 1371 ------- null} r -t 1.56621 -s 0 -d 9 -p ack -e 40 -c 0 -i 2728 -a 0 -x {10.0 9.0 1359 ------- null} + -t 1.56621 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2739 -a 0 -x {9.0 10.0 1374 ------- null} - -t 1.56621 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2739 -a 0 -x {9.0 10.0 1374 ------- null} h -t 1.56621 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2739 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.56646 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2725 -a 0 -x {9.0 10.0 1367 ------- null} - -t 1.56646 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2725 -a 0 -x {9.0 10.0 1367 ------- null} h -t 1.56646 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2725 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.56658 -s 0 -d 9 -p ack -e 40 -c 0 -i 2732 -a 0 -x {10.0 9.0 1361 ------- null} - -t 1.56658 -s 0 -d 9 -p ack -e 40 -c 0 -i 2732 -a 0 -x {10.0 9.0 1361 ------- null} h -t 1.56658 -s 0 -d 9 -p ack -e 40 -c 0 -i 2732 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.56674 -s 10 -d 7 -p ack -e 40 -c 0 -i 2736 -a 0 -x {10.0 9.0 1363 ------- null} + -t 1.56674 -s 7 -d 0 -p ack -e 40 -c 0 -i 2736 -a 0 -x {10.0 9.0 1363 ------- null} h -t 1.56674 -s 7 -d 8 -p ack -e 40 -c 0 -i 2736 -a 0 -x {10.0 9.0 1363 ------- null} r -t 1.56688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2721 -a 0 -x {9.0 10.0 1365 ------- null} + -t 1.56688 -s 10 -d 7 -p ack -e 40 -c 0 -i 2740 -a 0 -x {10.0 9.0 1365 ------- null} - -t 1.56688 -s 10 -d 7 -p ack -e 40 -c 0 -i 2740 -a 0 -x {10.0 9.0 1365 ------- null} h -t 1.56688 -s 10 -d 7 -p ack -e 40 -c 0 -i 2740 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.56693 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2735 -a 0 -x {9.0 10.0 1372 ------- null} + -t 1.56693 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2735 -a 0 -x {9.0 10.0 1372 ------- null} h -t 1.56693 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2735 -a 0 -x {9.0 10.0 1372 ------- null} r -t 1.56749 -s 0 -d 9 -p ack -e 40 -c 0 -i 2730 -a 0 -x {10.0 9.0 1360 ------- null} + -t 1.56749 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2741 -a 0 -x {9.0 10.0 1375 ------- null} - -t 1.56749 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2741 -a 0 -x {9.0 10.0 1375 ------- null} h -t 1.56749 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2741 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.56755 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2727 -a 0 -x {9.0 10.0 1368 ------- null} - -t 1.56755 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2727 -a 0 -x {9.0 10.0 1368 ------- null} h -t 1.56755 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2727 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.56779 -s 0 -d 9 -p ack -e 40 -c 0 -i 2734 -a 0 -x {10.0 9.0 1362 ------- null} - -t 1.56779 -s 0 -d 9 -p ack -e 40 -c 0 -i 2734 -a 0 -x {10.0 9.0 1362 ------- null} h -t 1.56779 -s 0 -d 9 -p ack -e 40 -c 0 -i 2734 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.56782 -s 10 -d 7 -p ack -e 40 -c 0 -i 2738 -a 0 -x {10.0 9.0 1364 ------- null} + -t 1.56782 -s 7 -d 0 -p ack -e 40 -c 0 -i 2738 -a 0 -x {10.0 9.0 1364 ------- null} h -t 1.56782 -s 7 -d 8 -p ack -e 40 -c 0 -i 2738 -a 0 -x {10.0 9.0 1364 ------- null} r -t 1.56797 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2723 -a 0 -x {9.0 10.0 1366 ------- null} + -t 1.56797 -s 10 -d 7 -p ack -e 40 -c 0 -i 2742 -a 0 -x {10.0 9.0 1366 ------- null} - -t 1.56797 -s 10 -d 7 -p ack -e 40 -c 0 -i 2742 -a 0 -x {10.0 9.0 1366 ------- null} h -t 1.56797 -s 10 -d 7 -p ack -e 40 -c 0 -i 2742 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.56802 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2737 -a 0 -x {9.0 10.0 1373 ------- null} + -t 1.56802 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2737 -a 0 -x {9.0 10.0 1373 ------- null} h -t 1.56802 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2737 -a 0 -x {9.0 10.0 1373 ------- null} r -t 1.56861 -s 0 -d 9 -p ack -e 40 -c 0 -i 2732 -a 0 -x {10.0 9.0 1361 ------- null} + -t 1.56861 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2743 -a 0 -x {9.0 10.0 1376 ------- null} - -t 1.56861 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2743 -a 0 -x {9.0 10.0 1376 ------- null} h -t 1.56861 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2743 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.56864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2729 -a 0 -x {9.0 10.0 1369 ------- null} - -t 1.56864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2729 -a 0 -x {9.0 10.0 1369 ------- null} h -t 1.56864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2729 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.56883 -s 0 -d 9 -p ack -e 40 -c 0 -i 2736 -a 0 -x {10.0 9.0 1363 ------- null} - -t 1.56883 -s 0 -d 9 -p ack -e 40 -c 0 -i 2736 -a 0 -x {10.0 9.0 1363 ------- null} h -t 1.56883 -s 0 -d 9 -p ack -e 40 -c 0 -i 2736 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.56891 -s 10 -d 7 -p ack -e 40 -c 0 -i 2740 -a 0 -x {10.0 9.0 1365 ------- null} + -t 1.56891 -s 7 -d 0 -p ack -e 40 -c 0 -i 2740 -a 0 -x {10.0 9.0 1365 ------- null} h -t 1.56891 -s 7 -d 8 -p ack -e 40 -c 0 -i 2740 -a 0 -x {10.0 9.0 1365 ------- null} r -t 1.56901 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2739 -a 0 -x {9.0 10.0 1374 ------- null} + -t 1.56901 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2739 -a 0 -x {9.0 10.0 1374 ------- null} h -t 1.56901 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2739 -a 0 -x {9.0 10.0 1374 ------- null} r -t 1.56926 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2725 -a 0 -x {9.0 10.0 1367 ------- null} + -t 1.56926 -s 10 -d 7 -p ack -e 40 -c 0 -i 2744 -a 0 -x {10.0 9.0 1367 ------- null} - -t 1.56926 -s 10 -d 7 -p ack -e 40 -c 0 -i 2744 -a 0 -x {10.0 9.0 1367 ------- null} h -t 1.56926 -s 10 -d 7 -p ack -e 40 -c 0 -i 2744 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.56973 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2731 -a 0 -x {9.0 10.0 1370 ------- null} - -t 1.56973 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2731 -a 0 -x {9.0 10.0 1370 ------- null} h -t 1.56973 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2731 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.56982 -s 0 -d 9 -p ack -e 40 -c 0 -i 2734 -a 0 -x {10.0 9.0 1362 ------- null} + -t 1.56982 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2745 -a 0 -x {9.0 10.0 1377 ------- null} - -t 1.56982 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2745 -a 0 -x {9.0 10.0 1377 ------- null} h -t 1.56982 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2745 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.56995 -s 0 -d 9 -p ack -e 40 -c 0 -i 2738 -a 0 -x {10.0 9.0 1364 ------- null} - -t 1.56995 -s 0 -d 9 -p ack -e 40 -c 0 -i 2738 -a 0 -x {10.0 9.0 1364 ------- null} h -t 1.56995 -s 0 -d 9 -p ack -e 40 -c 0 -i 2738 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.57 -s 10 -d 7 -p ack -e 40 -c 0 -i 2742 -a 0 -x {10.0 9.0 1366 ------- null} + -t 1.57 -s 7 -d 0 -p ack -e 40 -c 0 -i 2742 -a 0 -x {10.0 9.0 1366 ------- null} h -t 1.57 -s 7 -d 8 -p ack -e 40 -c 0 -i 2742 -a 0 -x {10.0 9.0 1366 ------- null} r -t 1.57029 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2741 -a 0 -x {9.0 10.0 1375 ------- null} + -t 1.57029 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2741 -a 0 -x {9.0 10.0 1375 ------- null} h -t 1.57029 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2741 -a 0 -x {9.0 10.0 1375 ------- null} r -t 1.57035 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2727 -a 0 -x {9.0 10.0 1368 ------- null} + -t 1.57035 -s 10 -d 7 -p ack -e 40 -c 0 -i 2746 -a 0 -x {10.0 9.0 1368 ------- null} - -t 1.57035 -s 10 -d 7 -p ack -e 40 -c 0 -i 2746 -a 0 -x {10.0 9.0 1368 ------- null} h -t 1.57035 -s 10 -d 7 -p ack -e 40 -c 0 -i 2746 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.57082 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2733 -a 0 -x {9.0 10.0 1371 ------- null} - -t 1.57082 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2733 -a 0 -x {9.0 10.0 1371 ------- null} h -t 1.57082 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2733 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.57086 -s 0 -d 9 -p ack -e 40 -c 0 -i 2736 -a 0 -x {10.0 9.0 1363 ------- null} + -t 1.57086 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2747 -a 0 -x {9.0 10.0 1378 ------- null} - -t 1.57086 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2747 -a 0 -x {9.0 10.0 1378 ------- null} h -t 1.57086 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2747 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.5711 -s 0 -d 9 -p ack -e 40 -c 0 -i 2740 -a 0 -x {10.0 9.0 1365 ------- null} - -t 1.5711 -s 0 -d 9 -p ack -e 40 -c 0 -i 2740 -a 0 -x {10.0 9.0 1365 ------- null} h -t 1.5711 -s 0 -d 9 -p ack -e 40 -c 0 -i 2740 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.5713 -s 10 -d 7 -p ack -e 40 -c 0 -i 2744 -a 0 -x {10.0 9.0 1367 ------- null} + -t 1.5713 -s 7 -d 0 -p ack -e 40 -c 0 -i 2744 -a 0 -x {10.0 9.0 1367 ------- null} h -t 1.5713 -s 7 -d 8 -p ack -e 40 -c 0 -i 2744 -a 0 -x {10.0 9.0 1367 ------- null} r -t 1.57141 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2743 -a 0 -x {9.0 10.0 1376 ------- null} + -t 1.57141 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2743 -a 0 -x {9.0 10.0 1376 ------- null} h -t 1.57141 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2743 -a 0 -x {9.0 10.0 1376 ------- null} r -t 1.57144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2729 -a 0 -x {9.0 10.0 1369 ------- null} + -t 1.57144 -s 10 -d 7 -p ack -e 40 -c 0 -i 2748 -a 0 -x {10.0 9.0 1369 ------- null} - -t 1.57144 -s 10 -d 7 -p ack -e 40 -c 0 -i 2748 -a 0 -x {10.0 9.0 1369 ------- null} h -t 1.57144 -s 10 -d 7 -p ack -e 40 -c 0 -i 2748 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.57198 -s 0 -d 9 -p ack -e 40 -c 0 -i 2738 -a 0 -x {10.0 9.0 1364 ------- null} + -t 1.57198 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2749 -a 0 -x {9.0 10.0 1379 ------- null} - -t 1.57198 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2749 -a 0 -x {9.0 10.0 1379 ------- null} h -t 1.57198 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2749 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.57208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2735 -a 0 -x {9.0 10.0 1372 ------- null} - -t 1.57208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2735 -a 0 -x {9.0 10.0 1372 ------- null} h -t 1.57208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2735 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.5723 -s 0 -d 9 -p ack -e 40 -c 0 -i 2742 -a 0 -x {10.0 9.0 1366 ------- null} - -t 1.5723 -s 0 -d 9 -p ack -e 40 -c 0 -i 2742 -a 0 -x {10.0 9.0 1366 ------- null} h -t 1.5723 -s 0 -d 9 -p ack -e 40 -c 0 -i 2742 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.57238 -s 10 -d 7 -p ack -e 40 -c 0 -i 2746 -a 0 -x {10.0 9.0 1368 ------- null} + -t 1.57238 -s 7 -d 0 -p ack -e 40 -c 0 -i 2746 -a 0 -x {10.0 9.0 1368 ------- null} h -t 1.57238 -s 7 -d 8 -p ack -e 40 -c 0 -i 2746 -a 0 -x {10.0 9.0 1368 ------- null} r -t 1.57253 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2731 -a 0 -x {9.0 10.0 1370 ------- null} + -t 1.57253 -s 10 -d 7 -p ack -e 40 -c 0 -i 2750 -a 0 -x {10.0 9.0 1370 ------- null} - -t 1.57253 -s 10 -d 7 -p ack -e 40 -c 0 -i 2750 -a 0 -x {10.0 9.0 1370 ------- null} h -t 1.57253 -s 10 -d 7 -p ack -e 40 -c 0 -i 2750 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.57262 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2745 -a 0 -x {9.0 10.0 1377 ------- null} + -t 1.57262 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2745 -a 0 -x {9.0 10.0 1377 ------- null} h -t 1.57262 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2745 -a 0 -x {9.0 10.0 1377 ------- null} r -t 1.57314 -s 0 -d 9 -p ack -e 40 -c 0 -i 2740 -a 0 -x {10.0 9.0 1365 ------- null} + -t 1.57314 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2751 -a 0 -x {9.0 10.0 1380 ------- null} - -t 1.57314 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2751 -a 0 -x {9.0 10.0 1380 ------- null} h -t 1.57314 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2751 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.57317 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2737 -a 0 -x {9.0 10.0 1373 ------- null} - -t 1.57317 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2737 -a 0 -x {9.0 10.0 1373 ------- null} h -t 1.57317 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2737 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.57344 -s 0 -d 9 -p ack -e 40 -c 0 -i 2744 -a 0 -x {10.0 9.0 1367 ------- null} - -t 1.57344 -s 0 -d 9 -p ack -e 40 -c 0 -i 2744 -a 0 -x {10.0 9.0 1367 ------- null} h -t 1.57344 -s 0 -d 9 -p ack -e 40 -c 0 -i 2744 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.57347 -s 10 -d 7 -p ack -e 40 -c 0 -i 2748 -a 0 -x {10.0 9.0 1369 ------- null} + -t 1.57347 -s 7 -d 0 -p ack -e 40 -c 0 -i 2748 -a 0 -x {10.0 9.0 1369 ------- null} h -t 1.57347 -s 7 -d 8 -p ack -e 40 -c 0 -i 2748 -a 0 -x {10.0 9.0 1369 ------- null} r -t 1.57362 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2733 -a 0 -x {9.0 10.0 1371 ------- null} + -t 1.57362 -s 10 -d 7 -p ack -e 40 -c 0 -i 2752 -a 0 -x {10.0 9.0 1371 ------- null} - -t 1.57362 -s 10 -d 7 -p ack -e 40 -c 0 -i 2752 -a 0 -x {10.0 9.0 1371 ------- null} h -t 1.57362 -s 10 -d 7 -p ack -e 40 -c 0 -i 2752 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.57366 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2747 -a 0 -x {9.0 10.0 1378 ------- null} + -t 1.57366 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2747 -a 0 -x {9.0 10.0 1378 ------- null} h -t 1.57366 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2747 -a 0 -x {9.0 10.0 1378 ------- null} r -t 1.57434 -s 0 -d 9 -p ack -e 40 -c 0 -i 2742 -a 0 -x {10.0 9.0 1366 ------- null} + -t 1.57434 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2753 -a 0 -x {9.0 10.0 1381 ------- null} - -t 1.57434 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2753 -a 0 -x {9.0 10.0 1381 ------- null} h -t 1.57434 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2753 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.57438 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2739 -a 0 -x {9.0 10.0 1374 ------- null} - -t 1.57438 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2739 -a 0 -x {9.0 10.0 1374 ------- null} h -t 1.57438 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2739 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.57456 -s 10 -d 7 -p ack -e 40 -c 0 -i 2750 -a 0 -x {10.0 9.0 1370 ------- null} + -t 1.57456 -s 7 -d 0 -p ack -e 40 -c 0 -i 2750 -a 0 -x {10.0 9.0 1370 ------- null} h -t 1.57456 -s 7 -d 8 -p ack -e 40 -c 0 -i 2750 -a 0 -x {10.0 9.0 1370 ------- null} + -t 1.57467 -s 0 -d 9 -p ack -e 40 -c 0 -i 2746 -a 0 -x {10.0 9.0 1368 ------- null} - -t 1.57467 -s 0 -d 9 -p ack -e 40 -c 0 -i 2746 -a 0 -x {10.0 9.0 1368 ------- null} h -t 1.57467 -s 0 -d 9 -p ack -e 40 -c 0 -i 2746 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.57478 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2749 -a 0 -x {9.0 10.0 1379 ------- null} + -t 1.57478 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2749 -a 0 -x {9.0 10.0 1379 ------- null} h -t 1.57478 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2749 -a 0 -x {9.0 10.0 1379 ------- null} r -t 1.57488 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2735 -a 0 -x {9.0 10.0 1372 ------- null} + -t 1.57488 -s 10 -d 7 -p ack -e 40 -c 0 -i 2754 -a 0 -x {10.0 9.0 1372 ------- null} - -t 1.57488 -s 10 -d 7 -p ack -e 40 -c 0 -i 2754 -a 0 -x {10.0 9.0 1372 ------- null} h -t 1.57488 -s 10 -d 7 -p ack -e 40 -c 0 -i 2754 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.57547 -s 0 -d 9 -p ack -e 40 -c 0 -i 2744 -a 0 -x {10.0 9.0 1367 ------- null} + -t 1.57547 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2755 -a 0 -x {9.0 10.0 1382 ------- null} - -t 1.57547 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2755 -a 0 -x {9.0 10.0 1382 ------- null} h -t 1.57547 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2755 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.57565 -s 10 -d 7 -p ack -e 40 -c 0 -i 2752 -a 0 -x {10.0 9.0 1371 ------- null} + -t 1.57565 -s 7 -d 0 -p ack -e 40 -c 0 -i 2752 -a 0 -x {10.0 9.0 1371 ------- null} h -t 1.57565 -s 7 -d 8 -p ack -e 40 -c 0 -i 2752 -a 0 -x {10.0 9.0 1371 ------- null} + -t 1.57566 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2741 -a 0 -x {9.0 10.0 1375 ------- null} - -t 1.57566 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2741 -a 0 -x {9.0 10.0 1375 ------- null} h -t 1.57566 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2741 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.5759 -s 0 -d 9 -p ack -e 40 -c 0 -i 2748 -a 0 -x {10.0 9.0 1369 ------- null} - -t 1.5759 -s 0 -d 9 -p ack -e 40 -c 0 -i 2748 -a 0 -x {10.0 9.0 1369 ------- null} h -t 1.5759 -s 0 -d 9 -p ack -e 40 -c 0 -i 2748 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.57594 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2751 -a 0 -x {9.0 10.0 1380 ------- null} + -t 1.57594 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2751 -a 0 -x {9.0 10.0 1380 ------- null} h -t 1.57594 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2751 -a 0 -x {9.0 10.0 1380 ------- null} r -t 1.57597 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2737 -a 0 -x {9.0 10.0 1373 ------- null} + -t 1.57597 -s 10 -d 7 -p ack -e 40 -c 0 -i 2756 -a 0 -x {10.0 9.0 1373 ------- null} - -t 1.57597 -s 10 -d 7 -p ack -e 40 -c 0 -i 2756 -a 0 -x {10.0 9.0 1373 ------- null} h -t 1.57597 -s 10 -d 7 -p ack -e 40 -c 0 -i 2756 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.5767 -s 0 -d 9 -p ack -e 40 -c 0 -i 2746 -a 0 -x {10.0 9.0 1368 ------- null} + -t 1.5767 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2757 -a 0 -x {9.0 10.0 1383 ------- null} - -t 1.5767 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2757 -a 0 -x {9.0 10.0 1383 ------- null} h -t 1.5767 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2757 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.57675 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2743 -a 0 -x {9.0 10.0 1376 ------- null} - -t 1.57675 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2743 -a 0 -x {9.0 10.0 1376 ------- null} h -t 1.57675 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2743 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.57691 -s 10 -d 7 -p ack -e 40 -c 0 -i 2754 -a 0 -x {10.0 9.0 1372 ------- null} + -t 1.57691 -s 7 -d 0 -p ack -e 40 -c 0 -i 2754 -a 0 -x {10.0 9.0 1372 ------- null} h -t 1.57691 -s 7 -d 8 -p ack -e 40 -c 0 -i 2754 -a 0 -x {10.0 9.0 1372 ------- null} + -t 1.57704 -s 0 -d 9 -p ack -e 40 -c 0 -i 2750 -a 0 -x {10.0 9.0 1370 ------- null} - -t 1.57704 -s 0 -d 9 -p ack -e 40 -c 0 -i 2750 -a 0 -x {10.0 9.0 1370 ------- null} h -t 1.57704 -s 0 -d 9 -p ack -e 40 -c 0 -i 2750 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.57714 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2753 -a 0 -x {9.0 10.0 1381 ------- null} + -t 1.57714 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2753 -a 0 -x {9.0 10.0 1381 ------- null} h -t 1.57714 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2753 -a 0 -x {9.0 10.0 1381 ------- null} r -t 1.57718 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2739 -a 0 -x {9.0 10.0 1374 ------- null} + -t 1.57718 -s 10 -d 7 -p ack -e 40 -c 0 -i 2758 -a 0 -x {10.0 9.0 1374 ------- null} - -t 1.57718 -s 10 -d 7 -p ack -e 40 -c 0 -i 2758 -a 0 -x {10.0 9.0 1374 ------- null} h -t 1.57718 -s 10 -d 7 -p ack -e 40 -c 0 -i 2758 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.57794 -s 0 -d 9 -p ack -e 40 -c 0 -i 2748 -a 0 -x {10.0 9.0 1369 ------- null} + -t 1.57794 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2759 -a 0 -x {9.0 10.0 1384 ------- null} - -t 1.57794 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2759 -a 0 -x {9.0 10.0 1384 ------- null} h -t 1.57794 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2759 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.578 -s 10 -d 7 -p ack -e 40 -c 0 -i 2756 -a 0 -x {10.0 9.0 1373 ------- null} + -t 1.578 -s 7 -d 0 -p ack -e 40 -c 0 -i 2756 -a 0 -x {10.0 9.0 1373 ------- null} h -t 1.578 -s 7 -d 8 -p ack -e 40 -c 0 -i 2756 -a 0 -x {10.0 9.0 1373 ------- null} + -t 1.57805 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2745 -a 0 -x {9.0 10.0 1377 ------- null} - -t 1.57805 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2745 -a 0 -x {9.0 10.0 1377 ------- null} h -t 1.57805 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2745 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.57827 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2755 -a 0 -x {9.0 10.0 1382 ------- null} + -t 1.57827 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2755 -a 0 -x {9.0 10.0 1382 ------- null} h -t 1.57827 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2755 -a 0 -x {9.0 10.0 1382 ------- null} + -t 1.57829 -s 0 -d 9 -p ack -e 40 -c 0 -i 2752 -a 0 -x {10.0 9.0 1371 ------- null} - -t 1.57829 -s 0 -d 9 -p ack -e 40 -c 0 -i 2752 -a 0 -x {10.0 9.0 1371 ------- null} h -t 1.57829 -s 0 -d 9 -p ack -e 40 -c 0 -i 2752 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.57846 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2741 -a 0 -x {9.0 10.0 1375 ------- null} + -t 1.57846 -s 10 -d 7 -p ack -e 40 -c 0 -i 2760 -a 0 -x {10.0 9.0 1375 ------- null} - -t 1.57846 -s 10 -d 7 -p ack -e 40 -c 0 -i 2760 -a 0 -x {10.0 9.0 1375 ------- null} h -t 1.57846 -s 10 -d 7 -p ack -e 40 -c 0 -i 2760 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.57907 -s 0 -d 9 -p ack -e 40 -c 0 -i 2750 -a 0 -x {10.0 9.0 1370 ------- null} + -t 1.57907 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2761 -a 0 -x {9.0 10.0 1385 ------- null} - -t 1.57907 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2761 -a 0 -x {9.0 10.0 1385 ------- null} h -t 1.57907 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2761 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.57914 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2747 -a 0 -x {9.0 10.0 1378 ------- null} - -t 1.57914 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2747 -a 0 -x {9.0 10.0 1378 ------- null} h -t 1.57914 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2747 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.57922 -s 10 -d 7 -p ack -e 40 -c 0 -i 2758 -a 0 -x {10.0 9.0 1374 ------- null} + -t 1.57922 -s 7 -d 0 -p ack -e 40 -c 0 -i 2758 -a 0 -x {10.0 9.0 1374 ------- null} h -t 1.57922 -s 7 -d 8 -p ack -e 40 -c 0 -i 2758 -a 0 -x {10.0 9.0 1374 ------- null} + -t 1.57922 -s 0 -d 9 -p ack -e 40 -c 0 -i 2754 -a 0 -x {10.0 9.0 1372 ------- null} - -t 1.57922 -s 0 -d 9 -p ack -e 40 -c 0 -i 2754 -a 0 -x {10.0 9.0 1372 ------- null} h -t 1.57922 -s 0 -d 9 -p ack -e 40 -c 0 -i 2754 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.5795 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2757 -a 0 -x {9.0 10.0 1383 ------- null} + -t 1.5795 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2757 -a 0 -x {9.0 10.0 1383 ------- null} h -t 1.5795 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2757 -a 0 -x {9.0 10.0 1383 ------- null} r -t 1.57955 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2743 -a 0 -x {9.0 10.0 1376 ------- null} + -t 1.57955 -s 10 -d 7 -p ack -e 40 -c 0 -i 2762 -a 0 -x {10.0 9.0 1376 ------- null} - -t 1.57955 -s 10 -d 7 -p ack -e 40 -c 0 -i 2762 -a 0 -x {10.0 9.0 1376 ------- null} h -t 1.57955 -s 10 -d 7 -p ack -e 40 -c 0 -i 2762 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.58022 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2749 -a 0 -x {9.0 10.0 1379 ------- null} - -t 1.58022 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2749 -a 0 -x {9.0 10.0 1379 ------- null} h -t 1.58022 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2749 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.58032 -s 0 -d 9 -p ack -e 40 -c 0 -i 2752 -a 0 -x {10.0 9.0 1371 ------- null} + -t 1.58032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2763 -a 0 -x {9.0 10.0 1386 ------- null} - -t 1.58032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2763 -a 0 -x {9.0 10.0 1386 ------- null} h -t 1.58032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2763 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.58038 -s 0 -d 9 -p ack -e 40 -c 0 -i 2756 -a 0 -x {10.0 9.0 1373 ------- null} - -t 1.58038 -s 0 -d 9 -p ack -e 40 -c 0 -i 2756 -a 0 -x {10.0 9.0 1373 ------- null} h -t 1.58038 -s 0 -d 9 -p ack -e 40 -c 0 -i 2756 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.5805 -s 10 -d 7 -p ack -e 40 -c 0 -i 2760 -a 0 -x {10.0 9.0 1375 ------- null} + -t 1.5805 -s 7 -d 0 -p ack -e 40 -c 0 -i 2760 -a 0 -x {10.0 9.0 1375 ------- null} h -t 1.5805 -s 7 -d 8 -p ack -e 40 -c 0 -i 2760 -a 0 -x {10.0 9.0 1375 ------- null} r -t 1.58074 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2759 -a 0 -x {9.0 10.0 1384 ------- null} + -t 1.58074 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2759 -a 0 -x {9.0 10.0 1384 ------- null} h -t 1.58074 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2759 -a 0 -x {9.0 10.0 1384 ------- null} r -t 1.58085 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2745 -a 0 -x {9.0 10.0 1377 ------- null} + -t 1.58085 -s 10 -d 7 -p ack -e 40 -c 0 -i 2764 -a 0 -x {10.0 9.0 1377 ------- null} - -t 1.58085 -s 10 -d 7 -p ack -e 40 -c 0 -i 2764 -a 0 -x {10.0 9.0 1377 ------- null} h -t 1.58085 -s 10 -d 7 -p ack -e 40 -c 0 -i 2764 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.58125 -s 0 -d 9 -p ack -e 40 -c 0 -i 2754 -a 0 -x {10.0 9.0 1372 ------- null} + -t 1.58125 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2765 -a 0 -x {9.0 10.0 1387 ------- null} - -t 1.58125 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2765 -a 0 -x {9.0 10.0 1387 ------- null} h -t 1.58125 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2765 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.58131 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2751 -a 0 -x {9.0 10.0 1380 ------- null} - -t 1.58131 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2751 -a 0 -x {9.0 10.0 1380 ------- null} h -t 1.58131 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2751 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.58155 -s 0 -d 9 -p ack -e 40 -c 0 -i 2758 -a 0 -x {10.0 9.0 1374 ------- null} - -t 1.58155 -s 0 -d 9 -p ack -e 40 -c 0 -i 2758 -a 0 -x {10.0 9.0 1374 ------- null} h -t 1.58155 -s 0 -d 9 -p ack -e 40 -c 0 -i 2758 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.58158 -s 10 -d 7 -p ack -e 40 -c 0 -i 2762 -a 0 -x {10.0 9.0 1376 ------- null} + -t 1.58158 -s 7 -d 0 -p ack -e 40 -c 0 -i 2762 -a 0 -x {10.0 9.0 1376 ------- null} h -t 1.58158 -s 7 -d 8 -p ack -e 40 -c 0 -i 2762 -a 0 -x {10.0 9.0 1376 ------- null} r -t 1.58187 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2761 -a 0 -x {9.0 10.0 1385 ------- null} + -t 1.58187 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2761 -a 0 -x {9.0 10.0 1385 ------- null} h -t 1.58187 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2761 -a 0 -x {9.0 10.0 1385 ------- null} r -t 1.58194 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2747 -a 0 -x {9.0 10.0 1378 ------- null} + -t 1.58194 -s 10 -d 7 -p ack -e 40 -c 0 -i 2766 -a 0 -x {10.0 9.0 1378 ------- null} - -t 1.58194 -s 10 -d 7 -p ack -e 40 -c 0 -i 2766 -a 0 -x {10.0 9.0 1378 ------- null} h -t 1.58194 -s 10 -d 7 -p ack -e 40 -c 0 -i 2766 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.5824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2753 -a 0 -x {9.0 10.0 1381 ------- null} - -t 1.5824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2753 -a 0 -x {9.0 10.0 1381 ------- null} h -t 1.5824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2753 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.58242 -s 0 -d 9 -p ack -e 40 -c 0 -i 2756 -a 0 -x {10.0 9.0 1373 ------- null} + -t 1.58242 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2767 -a 0 -x {9.0 10.0 1388 ------- null} - -t 1.58242 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2767 -a 0 -x {9.0 10.0 1388 ------- null} h -t 1.58242 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2767 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.58248 -s 0 -d 9 -p ack -e 40 -c 0 -i 2760 -a 0 -x {10.0 9.0 1375 ------- null} - -t 1.58248 -s 0 -d 9 -p ack -e 40 -c 0 -i 2760 -a 0 -x {10.0 9.0 1375 ------- null} h -t 1.58248 -s 0 -d 9 -p ack -e 40 -c 0 -i 2760 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.58288 -s 10 -d 7 -p ack -e 40 -c 0 -i 2764 -a 0 -x {10.0 9.0 1377 ------- null} + -t 1.58288 -s 7 -d 0 -p ack -e 40 -c 0 -i 2764 -a 0 -x {10.0 9.0 1377 ------- null} h -t 1.58288 -s 7 -d 8 -p ack -e 40 -c 0 -i 2764 -a 0 -x {10.0 9.0 1377 ------- null} r -t 1.58302 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2749 -a 0 -x {9.0 10.0 1379 ------- null} + -t 1.58302 -s 10 -d 7 -p ack -e 40 -c 0 -i 2768 -a 0 -x {10.0 9.0 1379 ------- null} - -t 1.58302 -s 10 -d 7 -p ack -e 40 -c 0 -i 2768 -a 0 -x {10.0 9.0 1379 ------- null} h -t 1.58302 -s 10 -d 7 -p ack -e 40 -c 0 -i 2768 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.58312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2763 -a 0 -x {9.0 10.0 1386 ------- null} + -t 1.58312 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2763 -a 0 -x {9.0 10.0 1386 ------- null} h -t 1.58312 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2763 -a 0 -x {9.0 10.0 1386 ------- null} + -t 1.58349 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2755 -a 0 -x {9.0 10.0 1382 ------- null} - -t 1.58349 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2755 -a 0 -x {9.0 10.0 1382 ------- null} h -t 1.58349 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2755 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.58358 -s 0 -d 9 -p ack -e 40 -c 0 -i 2758 -a 0 -x {10.0 9.0 1374 ------- null} + -t 1.58358 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2769 -a 0 -x {9.0 10.0 1389 ------- null} - -t 1.58358 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2769 -a 0 -x {9.0 10.0 1389 ------- null} h -t 1.58358 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2769 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.58379 -s 0 -d 9 -p ack -e 40 -c 0 -i 2762 -a 0 -x {10.0 9.0 1376 ------- null} - -t 1.58379 -s 0 -d 9 -p ack -e 40 -c 0 -i 2762 -a 0 -x {10.0 9.0 1376 ------- null} h -t 1.58379 -s 0 -d 9 -p ack -e 40 -c 0 -i 2762 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.58397 -s 10 -d 7 -p ack -e 40 -c 0 -i 2766 -a 0 -x {10.0 9.0 1378 ------- null} + -t 1.58397 -s 7 -d 0 -p ack -e 40 -c 0 -i 2766 -a 0 -x {10.0 9.0 1378 ------- null} h -t 1.58397 -s 7 -d 8 -p ack -e 40 -c 0 -i 2766 -a 0 -x {10.0 9.0 1378 ------- null} r -t 1.58405 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2765 -a 0 -x {9.0 10.0 1387 ------- null} + -t 1.58405 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2765 -a 0 -x {9.0 10.0 1387 ------- null} h -t 1.58405 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2765 -a 0 -x {9.0 10.0 1387 ------- null} r -t 1.58411 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2751 -a 0 -x {9.0 10.0 1380 ------- null} + -t 1.58411 -s 10 -d 7 -p ack -e 40 -c 0 -i 2770 -a 0 -x {10.0 9.0 1380 ------- null} - -t 1.58411 -s 10 -d 7 -p ack -e 40 -c 0 -i 2770 -a 0 -x {10.0 9.0 1380 ------- null} h -t 1.58411 -s 10 -d 7 -p ack -e 40 -c 0 -i 2770 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.58451 -s 0 -d 9 -p ack -e 40 -c 0 -i 2760 -a 0 -x {10.0 9.0 1375 ------- null} + -t 1.58451 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2771 -a 0 -x {9.0 10.0 1390 ------- null} - -t 1.58451 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2771 -a 0 -x {9.0 10.0 1390 ------- null} h -t 1.58451 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2771 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.58469 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2757 -a 0 -x {9.0 10.0 1383 ------- null} - -t 1.58469 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2757 -a 0 -x {9.0 10.0 1383 ------- null} h -t 1.58469 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2757 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.58483 -s 0 -d 9 -p ack -e 40 -c 0 -i 2764 -a 0 -x {10.0 9.0 1377 ------- null} - -t 1.58483 -s 0 -d 9 -p ack -e 40 -c 0 -i 2764 -a 0 -x {10.0 9.0 1377 ------- null} h -t 1.58483 -s 0 -d 9 -p ack -e 40 -c 0 -i 2764 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.58506 -s 10 -d 7 -p ack -e 40 -c 0 -i 2768 -a 0 -x {10.0 9.0 1379 ------- null} + -t 1.58506 -s 7 -d 0 -p ack -e 40 -c 0 -i 2768 -a 0 -x {10.0 9.0 1379 ------- null} h -t 1.58506 -s 7 -d 8 -p ack -e 40 -c 0 -i 2768 -a 0 -x {10.0 9.0 1379 ------- null} r -t 1.5852 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2753 -a 0 -x {9.0 10.0 1381 ------- null} + -t 1.5852 -s 10 -d 7 -p ack -e 40 -c 0 -i 2772 -a 0 -x {10.0 9.0 1381 ------- null} - -t 1.5852 -s 10 -d 7 -p ack -e 40 -c 0 -i 2772 -a 0 -x {10.0 9.0 1381 ------- null} h -t 1.5852 -s 10 -d 7 -p ack -e 40 -c 0 -i 2772 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.58522 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2767 -a 0 -x {9.0 10.0 1388 ------- null} + -t 1.58522 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2767 -a 0 -x {9.0 10.0 1388 ------- null} h -t 1.58522 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2767 -a 0 -x {9.0 10.0 1388 ------- null} + -t 1.58578 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2759 -a 0 -x {9.0 10.0 1384 ------- null} - -t 1.58578 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2759 -a 0 -x {9.0 10.0 1384 ------- null} h -t 1.58578 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2759 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.58582 -s 0 -d 9 -p ack -e 40 -c 0 -i 2762 -a 0 -x {10.0 9.0 1376 ------- null} + -t 1.58582 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2773 -a 0 -x {9.0 10.0 1391 ------- null} - -t 1.58582 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2773 -a 0 -x {9.0 10.0 1391 ------- null} h -t 1.58582 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2773 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.58602 -s 0 -d 9 -p ack -e 40 -c 0 -i 2766 -a 0 -x {10.0 9.0 1378 ------- null} - -t 1.58602 -s 0 -d 9 -p ack -e 40 -c 0 -i 2766 -a 0 -x {10.0 9.0 1378 ------- null} h -t 1.58602 -s 0 -d 9 -p ack -e 40 -c 0 -i 2766 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.58614 -s 10 -d 7 -p ack -e 40 -c 0 -i 2770 -a 0 -x {10.0 9.0 1380 ------- null} + -t 1.58614 -s 7 -d 0 -p ack -e 40 -c 0 -i 2770 -a 0 -x {10.0 9.0 1380 ------- null} h -t 1.58614 -s 7 -d 8 -p ack -e 40 -c 0 -i 2770 -a 0 -x {10.0 9.0 1380 ------- null} r -t 1.58629 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2755 -a 0 -x {9.0 10.0 1382 ------- null} + -t 1.58629 -s 10 -d 7 -p ack -e 40 -c 0 -i 2774 -a 0 -x {10.0 9.0 1382 ------- null} - -t 1.58629 -s 10 -d 7 -p ack -e 40 -c 0 -i 2774 -a 0 -x {10.0 9.0 1382 ------- null} h -t 1.58629 -s 10 -d 7 -p ack -e 40 -c 0 -i 2774 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.58638 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2769 -a 0 -x {9.0 10.0 1389 ------- null} + -t 1.58638 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2769 -a 0 -x {9.0 10.0 1389 ------- null} h -t 1.58638 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2769 -a 0 -x {9.0 10.0 1389 ------- null} + -t 1.58686 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2761 -a 0 -x {9.0 10.0 1385 ------- null} - -t 1.58686 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2761 -a 0 -x {9.0 10.0 1385 ------- null} h -t 1.58686 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2761 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.58686 -s 0 -d 9 -p ack -e 40 -c 0 -i 2764 -a 0 -x {10.0 9.0 1377 ------- null} + -t 1.58686 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2775 -a 0 -x {9.0 10.0 1392 ------- null} - -t 1.58686 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2775 -a 0 -x {9.0 10.0 1392 ------- null} h -t 1.58686 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2775 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.58702 -s 0 -d 9 -p ack -e 40 -c 0 -i 2768 -a 0 -x {10.0 9.0 1379 ------- null} - -t 1.58702 -s 0 -d 9 -p ack -e 40 -c 0 -i 2768 -a 0 -x {10.0 9.0 1379 ------- null} h -t 1.58702 -s 0 -d 9 -p ack -e 40 -c 0 -i 2768 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.58723 -s 10 -d 7 -p ack -e 40 -c 0 -i 2772 -a 0 -x {10.0 9.0 1381 ------- null} + -t 1.58723 -s 7 -d 0 -p ack -e 40 -c 0 -i 2772 -a 0 -x {10.0 9.0 1381 ------- null} h -t 1.58723 -s 7 -d 8 -p ack -e 40 -c 0 -i 2772 -a 0 -x {10.0 9.0 1381 ------- null} r -t 1.58731 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2771 -a 0 -x {9.0 10.0 1390 ------- null} + -t 1.58731 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2771 -a 0 -x {9.0 10.0 1390 ------- null} h -t 1.58731 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2771 -a 0 -x {9.0 10.0 1390 ------- null} r -t 1.58749 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2757 -a 0 -x {9.0 10.0 1383 ------- null} + -t 1.58749 -s 10 -d 7 -p ack -e 40 -c 0 -i 2776 -a 0 -x {10.0 9.0 1383 ------- null} - -t 1.58749 -s 10 -d 7 -p ack -e 40 -c 0 -i 2776 -a 0 -x {10.0 9.0 1383 ------- null} h -t 1.58749 -s 10 -d 7 -p ack -e 40 -c 0 -i 2776 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.58795 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2763 -a 0 -x {9.0 10.0 1386 ------- null} - -t 1.58795 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2763 -a 0 -x {9.0 10.0 1386 ------- null} h -t 1.58795 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2763 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.58805 -s 0 -d 9 -p ack -e 40 -c 0 -i 2766 -a 0 -x {10.0 9.0 1378 ------- null} + -t 1.58805 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2777 -a 0 -x {9.0 10.0 1393 ------- null} - -t 1.58805 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2777 -a 0 -x {9.0 10.0 1393 ------- null} h -t 1.58805 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2777 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.58826 -s 0 -d 9 -p ack -e 40 -c 0 -i 2770 -a 0 -x {10.0 9.0 1380 ------- null} - -t 1.58826 -s 0 -d 9 -p ack -e 40 -c 0 -i 2770 -a 0 -x {10.0 9.0 1380 ------- null} h -t 1.58826 -s 0 -d 9 -p ack -e 40 -c 0 -i 2770 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.58832 -s 10 -d 7 -p ack -e 40 -c 0 -i 2774 -a 0 -x {10.0 9.0 1382 ------- null} + -t 1.58832 -s 7 -d 0 -p ack -e 40 -c 0 -i 2774 -a 0 -x {10.0 9.0 1382 ------- null} h -t 1.58832 -s 7 -d 8 -p ack -e 40 -c 0 -i 2774 -a 0 -x {10.0 9.0 1382 ------- null} r -t 1.58858 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2759 -a 0 -x {9.0 10.0 1384 ------- null} + -t 1.58858 -s 10 -d 7 -p ack -e 40 -c 0 -i 2778 -a 0 -x {10.0 9.0 1384 ------- null} - -t 1.58858 -s 10 -d 7 -p ack -e 40 -c 0 -i 2778 -a 0 -x {10.0 9.0 1384 ------- null} h -t 1.58858 -s 10 -d 7 -p ack -e 40 -c 0 -i 2778 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.58862 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2773 -a 0 -x {9.0 10.0 1391 ------- null} + -t 1.58862 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2773 -a 0 -x {9.0 10.0 1391 ------- null} h -t 1.58862 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2773 -a 0 -x {9.0 10.0 1391 ------- null} r -t 1.58906 -s 0 -d 9 -p ack -e 40 -c 0 -i 2768 -a 0 -x {10.0 9.0 1379 ------- null} + -t 1.58906 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2779 -a 0 -x {9.0 10.0 1394 ------- null} - -t 1.58906 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2779 -a 0 -x {9.0 10.0 1394 ------- null} h -t 1.58906 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2779 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.58909 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2765 -a 0 -x {9.0 10.0 1387 ------- null} - -t 1.58909 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2765 -a 0 -x {9.0 10.0 1387 ------- null} h -t 1.58909 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2765 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.58931 -s 0 -d 9 -p ack -e 40 -c 0 -i 2772 -a 0 -x {10.0 9.0 1381 ------- null} - -t 1.58931 -s 0 -d 9 -p ack -e 40 -c 0 -i 2772 -a 0 -x {10.0 9.0 1381 ------- null} h -t 1.58931 -s 0 -d 9 -p ack -e 40 -c 0 -i 2772 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.58952 -s 10 -d 7 -p ack -e 40 -c 0 -i 2776 -a 0 -x {10.0 9.0 1383 ------- null} + -t 1.58952 -s 7 -d 0 -p ack -e 40 -c 0 -i 2776 -a 0 -x {10.0 9.0 1383 ------- null} h -t 1.58952 -s 7 -d 8 -p ack -e 40 -c 0 -i 2776 -a 0 -x {10.0 9.0 1383 ------- null} r -t 1.58966 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2761 -a 0 -x {9.0 10.0 1385 ------- null} + -t 1.58966 -s 10 -d 7 -p ack -e 40 -c 0 -i 2780 -a 0 -x {10.0 9.0 1385 ------- null} - -t 1.58966 -s 10 -d 7 -p ack -e 40 -c 0 -i 2780 -a 0 -x {10.0 9.0 1385 ------- null} h -t 1.58966 -s 10 -d 7 -p ack -e 40 -c 0 -i 2780 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.58966 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2775 -a 0 -x {9.0 10.0 1392 ------- null} + -t 1.58966 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2775 -a 0 -x {9.0 10.0 1392 ------- null} h -t 1.58966 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2775 -a 0 -x {9.0 10.0 1392 ------- null} + -t 1.59018 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2767 -a 0 -x {9.0 10.0 1388 ------- null} - -t 1.59018 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2767 -a 0 -x {9.0 10.0 1388 ------- null} h -t 1.59018 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2767 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.59029 -s 0 -d 9 -p ack -e 40 -c 0 -i 2770 -a 0 -x {10.0 9.0 1380 ------- null} + -t 1.59029 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2781 -a 0 -x {9.0 10.0 1395 ------- null} - -t 1.59029 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2781 -a 0 -x {9.0 10.0 1395 ------- null} h -t 1.59029 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2781 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.59035 -s 0 -d 9 -p ack -e 40 -c 0 -i 2774 -a 0 -x {10.0 9.0 1382 ------- null} - -t 1.59035 -s 0 -d 9 -p ack -e 40 -c 0 -i 2774 -a 0 -x {10.0 9.0 1382 ------- null} h -t 1.59035 -s 0 -d 9 -p ack -e 40 -c 0 -i 2774 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.59061 -s 10 -d 7 -p ack -e 40 -c 0 -i 2778 -a 0 -x {10.0 9.0 1384 ------- null} + -t 1.59061 -s 7 -d 0 -p ack -e 40 -c 0 -i 2778 -a 0 -x {10.0 9.0 1384 ------- null} h -t 1.59061 -s 7 -d 8 -p ack -e 40 -c 0 -i 2778 -a 0 -x {10.0 9.0 1384 ------- null} r -t 1.59075 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2763 -a 0 -x {9.0 10.0 1386 ------- null} + -t 1.59075 -s 10 -d 7 -p ack -e 40 -c 0 -i 2782 -a 0 -x {10.0 9.0 1386 ------- null} - -t 1.59075 -s 10 -d 7 -p ack -e 40 -c 0 -i 2782 -a 0 -x {10.0 9.0 1386 ------- null} h -t 1.59075 -s 10 -d 7 -p ack -e 40 -c 0 -i 2782 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.59085 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2777 -a 0 -x {9.0 10.0 1393 ------- null} + -t 1.59085 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2777 -a 0 -x {9.0 10.0 1393 ------- null} h -t 1.59085 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2777 -a 0 -x {9.0 10.0 1393 ------- null} + -t 1.59126 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2769 -a 0 -x {9.0 10.0 1389 ------- null} - -t 1.59126 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2769 -a 0 -x {9.0 10.0 1389 ------- null} h -t 1.59126 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2769 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.59134 -s 0 -d 9 -p ack -e 40 -c 0 -i 2772 -a 0 -x {10.0 9.0 1381 ------- null} + -t 1.59134 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2783 -a 0 -x {9.0 10.0 1396 ------- null} - -t 1.59134 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2783 -a 0 -x {9.0 10.0 1396 ------- null} h -t 1.59134 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2783 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.59144 -s 0 -d 9 -p ack -e 40 -c 0 -i 2776 -a 0 -x {10.0 9.0 1383 ------- null} - -t 1.59144 -s 0 -d 9 -p ack -e 40 -c 0 -i 2776 -a 0 -x {10.0 9.0 1383 ------- null} h -t 1.59144 -s 0 -d 9 -p ack -e 40 -c 0 -i 2776 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.5917 -s 10 -d 7 -p ack -e 40 -c 0 -i 2780 -a 0 -x {10.0 9.0 1385 ------- null} + -t 1.5917 -s 7 -d 0 -p ack -e 40 -c 0 -i 2780 -a 0 -x {10.0 9.0 1385 ------- null} h -t 1.5917 -s 7 -d 8 -p ack -e 40 -c 0 -i 2780 -a 0 -x {10.0 9.0 1385 ------- null} r -t 1.59186 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2779 -a 0 -x {9.0 10.0 1394 ------- null} + -t 1.59186 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2779 -a 0 -x {9.0 10.0 1394 ------- null} h -t 1.59186 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2779 -a 0 -x {9.0 10.0 1394 ------- null} r -t 1.59189 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2765 -a 0 -x {9.0 10.0 1387 ------- null} + -t 1.59189 -s 10 -d 7 -p ack -e 40 -c 0 -i 2784 -a 0 -x {10.0 9.0 1387 ------- null} - -t 1.59189 -s 10 -d 7 -p ack -e 40 -c 0 -i 2784 -a 0 -x {10.0 9.0 1387 ------- null} h -t 1.59189 -s 10 -d 7 -p ack -e 40 -c 0 -i 2784 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.59235 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2771 -a 0 -x {9.0 10.0 1390 ------- null} - -t 1.59235 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2771 -a 0 -x {9.0 10.0 1390 ------- null} h -t 1.59235 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2771 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.59238 -s 0 -d 9 -p ack -e 40 -c 0 -i 2774 -a 0 -x {10.0 9.0 1382 ------- null} + -t 1.59238 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2785 -a 0 -x {9.0 10.0 1397 ------- null} - -t 1.59238 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2785 -a 0 -x {9.0 10.0 1397 ------- null} h -t 1.59238 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2785 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.59253 -s 0 -d 9 -p ack -e 40 -c 0 -i 2778 -a 0 -x {10.0 9.0 1384 ------- null} - -t 1.59253 -s 0 -d 9 -p ack -e 40 -c 0 -i 2778 -a 0 -x {10.0 9.0 1384 ------- null} h -t 1.59253 -s 0 -d 9 -p ack -e 40 -c 0 -i 2778 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.59278 -s 10 -d 7 -p ack -e 40 -c 0 -i 2782 -a 0 -x {10.0 9.0 1386 ------- null} + -t 1.59278 -s 7 -d 0 -p ack -e 40 -c 0 -i 2782 -a 0 -x {10.0 9.0 1386 ------- null} h -t 1.59278 -s 7 -d 8 -p ack -e 40 -c 0 -i 2782 -a 0 -x {10.0 9.0 1386 ------- null} r -t 1.59298 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2767 -a 0 -x {9.0 10.0 1388 ------- null} + -t 1.59298 -s 10 -d 7 -p ack -e 40 -c 0 -i 2786 -a 0 -x {10.0 9.0 1388 ------- null} - -t 1.59298 -s 10 -d 7 -p ack -e 40 -c 0 -i 2786 -a 0 -x {10.0 9.0 1388 ------- null} h -t 1.59298 -s 10 -d 7 -p ack -e 40 -c 0 -i 2786 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.59309 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2781 -a 0 -x {9.0 10.0 1395 ------- null} + -t 1.59309 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2781 -a 0 -x {9.0 10.0 1395 ------- null} h -t 1.59309 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2781 -a 0 -x {9.0 10.0 1395 ------- null} + -t 1.59344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2773 -a 0 -x {9.0 10.0 1391 ------- null} - -t 1.59344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2773 -a 0 -x {9.0 10.0 1391 ------- null} h -t 1.59344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2773 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.59347 -s 0 -d 9 -p ack -e 40 -c 0 -i 2776 -a 0 -x {10.0 9.0 1383 ------- null} + -t 1.59347 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2787 -a 0 -x {9.0 10.0 1398 ------- null} - -t 1.59347 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2787 -a 0 -x {9.0 10.0 1398 ------- null} h -t 1.59347 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2787 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.59373 -s 0 -d 9 -p ack -e 40 -c 0 -i 2780 -a 0 -x {10.0 9.0 1385 ------- null} - -t 1.59373 -s 0 -d 9 -p ack -e 40 -c 0 -i 2780 -a 0 -x {10.0 9.0 1385 ------- null} h -t 1.59373 -s 0 -d 9 -p ack -e 40 -c 0 -i 2780 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.59392 -s 10 -d 7 -p ack -e 40 -c 0 -i 2784 -a 0 -x {10.0 9.0 1387 ------- null} + -t 1.59392 -s 7 -d 0 -p ack -e 40 -c 0 -i 2784 -a 0 -x {10.0 9.0 1387 ------- null} h -t 1.59392 -s 7 -d 8 -p ack -e 40 -c 0 -i 2784 -a 0 -x {10.0 9.0 1387 ------- null} r -t 1.59406 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2769 -a 0 -x {9.0 10.0 1389 ------- null} + -t 1.59406 -s 10 -d 7 -p ack -e 40 -c 0 -i 2788 -a 0 -x {10.0 9.0 1389 ------- null} - -t 1.59406 -s 10 -d 7 -p ack -e 40 -c 0 -i 2788 -a 0 -x {10.0 9.0 1389 ------- null} h -t 1.59406 -s 10 -d 7 -p ack -e 40 -c 0 -i 2788 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.59414 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2783 -a 0 -x {9.0 10.0 1396 ------- null} + -t 1.59414 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2783 -a 0 -x {9.0 10.0 1396 ------- null} h -t 1.59414 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2783 -a 0 -x {9.0 10.0 1396 ------- null} r -t 1.59456 -s 0 -d 9 -p ack -e 40 -c 0 -i 2778 -a 0 -x {10.0 9.0 1384 ------- null} + -t 1.59456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2789 -a 0 -x {9.0 10.0 1399 ------- null} - -t 1.59456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2789 -a 0 -x {9.0 10.0 1399 ------- null} h -t 1.59456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2789 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.59477 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2775 -a 0 -x {9.0 10.0 1392 ------- null} - -t 1.59477 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2775 -a 0 -x {9.0 10.0 1392 ------- null} h -t 1.59477 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2775 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.59485 -s 0 -d 9 -p ack -e 40 -c 0 -i 2782 -a 0 -x {10.0 9.0 1386 ------- null} - -t 1.59485 -s 0 -d 9 -p ack -e 40 -c 0 -i 2782 -a 0 -x {10.0 9.0 1386 ------- null} h -t 1.59485 -s 0 -d 9 -p ack -e 40 -c 0 -i 2782 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.59501 -s 10 -d 7 -p ack -e 40 -c 0 -i 2786 -a 0 -x {10.0 9.0 1388 ------- null} + -t 1.59501 -s 7 -d 0 -p ack -e 40 -c 0 -i 2786 -a 0 -x {10.0 9.0 1388 ------- null} h -t 1.59501 -s 7 -d 8 -p ack -e 40 -c 0 -i 2786 -a 0 -x {10.0 9.0 1388 ------- null} r -t 1.59515 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2771 -a 0 -x {9.0 10.0 1390 ------- null} + -t 1.59515 -s 10 -d 7 -p ack -e 40 -c 0 -i 2790 -a 0 -x {10.0 9.0 1390 ------- null} - -t 1.59515 -s 10 -d 7 -p ack -e 40 -c 0 -i 2790 -a 0 -x {10.0 9.0 1390 ------- null} h -t 1.59515 -s 10 -d 7 -p ack -e 40 -c 0 -i 2790 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.59518 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2785 -a 0 -x {9.0 10.0 1397 ------- null} + -t 1.59518 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2785 -a 0 -x {9.0 10.0 1397 ------- null} h -t 1.59518 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2785 -a 0 -x {9.0 10.0 1397 ------- null} r -t 1.59576 -s 0 -d 9 -p ack -e 40 -c 0 -i 2780 -a 0 -x {10.0 9.0 1385 ------- null} + -t 1.59576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2791 -a 0 -x {9.0 10.0 1400 ------- null} - -t 1.59576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2791 -a 0 -x {9.0 10.0 1400 ------- null} h -t 1.59576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2791 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.59586 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2777 -a 0 -x {9.0 10.0 1393 ------- null} - -t 1.59586 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2777 -a 0 -x {9.0 10.0 1393 ------- null} h -t 1.59586 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2777 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.5961 -s 10 -d 7 -p ack -e 40 -c 0 -i 2788 -a 0 -x {10.0 9.0 1389 ------- null} + -t 1.5961 -s 7 -d 0 -p ack -e 40 -c 0 -i 2788 -a 0 -x {10.0 9.0 1389 ------- null} h -t 1.5961 -s 7 -d 8 -p ack -e 40 -c 0 -i 2788 -a 0 -x {10.0 9.0 1389 ------- null} + -t 1.59614 -s 0 -d 9 -p ack -e 40 -c 0 -i 2784 -a 0 -x {10.0 9.0 1387 ------- null} - -t 1.59614 -s 0 -d 9 -p ack -e 40 -c 0 -i 2784 -a 0 -x {10.0 9.0 1387 ------- null} h -t 1.59614 -s 0 -d 9 -p ack -e 40 -c 0 -i 2784 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.59624 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2773 -a 0 -x {9.0 10.0 1391 ------- null} + -t 1.59624 -s 10 -d 7 -p ack -e 40 -c 0 -i 2792 -a 0 -x {10.0 9.0 1391 ------- null} - -t 1.59624 -s 10 -d 7 -p ack -e 40 -c 0 -i 2792 -a 0 -x {10.0 9.0 1391 ------- null} h -t 1.59624 -s 10 -d 7 -p ack -e 40 -c 0 -i 2792 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.59627 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2787 -a 0 -x {9.0 10.0 1398 ------- null} + -t 1.59627 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2787 -a 0 -x {9.0 10.0 1398 ------- null} h -t 1.59627 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2787 -a 0 -x {9.0 10.0 1398 ------- null} r -t 1.59688 -s 0 -d 9 -p ack -e 40 -c 0 -i 2782 -a 0 -x {10.0 9.0 1386 ------- null} + -t 1.59688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2793 -a 0 -x {9.0 10.0 1401 ------- null} - -t 1.59688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2793 -a 0 -x {9.0 10.0 1401 ------- null} h -t 1.59688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2793 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.59717 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2779 -a 0 -x {9.0 10.0 1394 ------- null} - -t 1.59717 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2779 -a 0 -x {9.0 10.0 1394 ------- null} h -t 1.59717 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2779 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.59718 -s 10 -d 7 -p ack -e 40 -c 0 -i 2790 -a 0 -x {10.0 9.0 1390 ------- null} + -t 1.59718 -s 7 -d 0 -p ack -e 40 -c 0 -i 2790 -a 0 -x {10.0 9.0 1390 ------- null} h -t 1.59718 -s 7 -d 8 -p ack -e 40 -c 0 -i 2790 -a 0 -x {10.0 9.0 1390 ------- null} + -t 1.59723 -s 0 -d 9 -p ack -e 40 -c 0 -i 2786 -a 0 -x {10.0 9.0 1388 ------- null} - -t 1.59723 -s 0 -d 9 -p ack -e 40 -c 0 -i 2786 -a 0 -x {10.0 9.0 1388 ------- null} h -t 1.59723 -s 0 -d 9 -p ack -e 40 -c 0 -i 2786 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.59736 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2789 -a 0 -x {9.0 10.0 1399 ------- null} + -t 1.59736 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2789 -a 0 -x {9.0 10.0 1399 ------- null} h -t 1.59736 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2789 -a 0 -x {9.0 10.0 1399 ------- null} r -t 1.59757 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2775 -a 0 -x {9.0 10.0 1392 ------- null} + -t 1.59757 -s 10 -d 7 -p ack -e 40 -c 0 -i 2794 -a 0 -x {10.0 9.0 1392 ------- null} - -t 1.59757 -s 10 -d 7 -p ack -e 40 -c 0 -i 2794 -a 0 -x {10.0 9.0 1392 ------- null} h -t 1.59757 -s 10 -d 7 -p ack -e 40 -c 0 -i 2794 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.59818 -s 0 -d 9 -p ack -e 40 -c 0 -i 2784 -a 0 -x {10.0 9.0 1387 ------- null} + -t 1.59818 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2795 -a 0 -x {9.0 10.0 1402 ------- null} - -t 1.59818 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2795 -a 0 -x {9.0 10.0 1402 ------- null} h -t 1.59818 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2795 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.59826 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2781 -a 0 -x {9.0 10.0 1395 ------- null} - -t 1.59826 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2781 -a 0 -x {9.0 10.0 1395 ------- null} h -t 1.59826 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2781 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.59827 -s 10 -d 7 -p ack -e 40 -c 0 -i 2792 -a 0 -x {10.0 9.0 1391 ------- null} + -t 1.59827 -s 7 -d 0 -p ack -e 40 -c 0 -i 2792 -a 0 -x {10.0 9.0 1391 ------- null} h -t 1.59827 -s 7 -d 8 -p ack -e 40 -c 0 -i 2792 -a 0 -x {10.0 9.0 1391 ------- null} + -t 1.59837 -s 0 -d 9 -p ack -e 40 -c 0 -i 2788 -a 0 -x {10.0 9.0 1389 ------- null} - -t 1.59837 -s 0 -d 9 -p ack -e 40 -c 0 -i 2788 -a 0 -x {10.0 9.0 1389 ------- null} h -t 1.59837 -s 0 -d 9 -p ack -e 40 -c 0 -i 2788 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.59856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2791 -a 0 -x {9.0 10.0 1400 ------- null} + -t 1.59856 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2791 -a 0 -x {9.0 10.0 1400 ------- null} h -t 1.59856 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2791 -a 0 -x {9.0 10.0 1400 ------- null} r -t 1.59866 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2777 -a 0 -x {9.0 10.0 1393 ------- null} + -t 1.59866 -s 10 -d 7 -p ack -e 40 -c 0 -i 2796 -a 0 -x {10.0 9.0 1393 ------- null} - -t 1.59866 -s 10 -d 7 -p ack -e 40 -c 0 -i 2796 -a 0 -x {10.0 9.0 1393 ------- null} h -t 1.59866 -s 10 -d 7 -p ack -e 40 -c 0 -i 2796 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.59926 -s 0 -d 9 -p ack -e 40 -c 0 -i 2786 -a 0 -x {10.0 9.0 1388 ------- null} + -t 1.59926 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2797 -a 0 -x {9.0 10.0 1403 ------- null} - -t 1.59926 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2797 -a 0 -x {9.0 10.0 1403 ------- null} h -t 1.59926 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2797 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.59934 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2783 -a 0 -x {9.0 10.0 1396 ------- null} - -t 1.59934 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2783 -a 0 -x {9.0 10.0 1396 ------- null} h -t 1.59934 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2783 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.59952 -s 0 -d 9 -p ack -e 40 -c 0 -i 2790 -a 0 -x {10.0 9.0 1390 ------- null} - -t 1.59952 -s 0 -d 9 -p ack -e 40 -c 0 -i 2790 -a 0 -x {10.0 9.0 1390 ------- null} h -t 1.59952 -s 0 -d 9 -p ack -e 40 -c 0 -i 2790 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.5996 -s 10 -d 7 -p ack -e 40 -c 0 -i 2794 -a 0 -x {10.0 9.0 1392 ------- null} + -t 1.5996 -s 7 -d 0 -p ack -e 40 -c 0 -i 2794 -a 0 -x {10.0 9.0 1392 ------- null} h -t 1.5996 -s 7 -d 8 -p ack -e 40 -c 0 -i 2794 -a 0 -x {10.0 9.0 1392 ------- null} r -t 1.59968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2793 -a 0 -x {9.0 10.0 1401 ------- null} + -t 1.59968 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2793 -a 0 -x {9.0 10.0 1401 ------- null} h -t 1.59968 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2793 -a 0 -x {9.0 10.0 1401 ------- null} r -t 1.59997 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2779 -a 0 -x {9.0 10.0 1394 ------- null} + -t 1.59997 -s 10 -d 7 -p ack -e 40 -c 0 -i 2798 -a 0 -x {10.0 9.0 1394 ------- null} - -t 1.59997 -s 10 -d 7 -p ack -e 40 -c 0 -i 2798 -a 0 -x {10.0 9.0 1394 ------- null} h -t 1.59997 -s 10 -d 7 -p ack -e 40 -c 0 -i 2798 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.6004 -s 0 -d 9 -p ack -e 40 -c 0 -i 2788 -a 0 -x {10.0 9.0 1389 ------- null} + -t 1.6004 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2799 -a 0 -x {9.0 10.0 1404 ------- null} - -t 1.6004 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2799 -a 0 -x {9.0 10.0 1404 ------- null} h -t 1.6004 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2799 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.60043 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2785 -a 0 -x {9.0 10.0 1397 ------- null} - -t 1.60043 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2785 -a 0 -x {9.0 10.0 1397 ------- null} h -t 1.60043 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2785 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.60059 -s 0 -d 9 -p ack -e 40 -c 0 -i 2792 -a 0 -x {10.0 9.0 1391 ------- null} - -t 1.60059 -s 0 -d 9 -p ack -e 40 -c 0 -i 2792 -a 0 -x {10.0 9.0 1391 ------- null} h -t 1.60059 -s 0 -d 9 -p ack -e 40 -c 0 -i 2792 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.60069 -s 10 -d 7 -p ack -e 40 -c 0 -i 2796 -a 0 -x {10.0 9.0 1393 ------- null} + -t 1.60069 -s 7 -d 0 -p ack -e 40 -c 0 -i 2796 -a 0 -x {10.0 9.0 1393 ------- null} h -t 1.60069 -s 7 -d 8 -p ack -e 40 -c 0 -i 2796 -a 0 -x {10.0 9.0 1393 ------- null} r -t 1.60098 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2795 -a 0 -x {9.0 10.0 1402 ------- null} + -t 1.60098 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2795 -a 0 -x {9.0 10.0 1402 ------- null} h -t 1.60098 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2795 -a 0 -x {9.0 10.0 1402 ------- null} r -t 1.60106 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2781 -a 0 -x {9.0 10.0 1395 ------- null} + -t 1.60106 -s 10 -d 7 -p ack -e 40 -c 0 -i 2800 -a 0 -x {10.0 9.0 1395 ------- null} - -t 1.60106 -s 10 -d 7 -p ack -e 40 -c 0 -i 2800 -a 0 -x {10.0 9.0 1395 ------- null} h -t 1.60106 -s 10 -d 7 -p ack -e 40 -c 0 -i 2800 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.60152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2787 -a 0 -x {9.0 10.0 1398 ------- null} - -t 1.60152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2787 -a 0 -x {9.0 10.0 1398 ------- null} h -t 1.60152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2787 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.60155 -s 0 -d 9 -p ack -e 40 -c 0 -i 2790 -a 0 -x {10.0 9.0 1390 ------- null} + -t 1.60155 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2801 -a 0 -x {9.0 10.0 1405 ------- null} - -t 1.60155 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2801 -a 0 -x {9.0 10.0 1405 ------- null} h -t 1.60155 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2801 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.60173 -s 0 -d 9 -p ack -e 40 -c 0 -i 2794 -a 0 -x {10.0 9.0 1392 ------- null} - -t 1.60173 -s 0 -d 9 -p ack -e 40 -c 0 -i 2794 -a 0 -x {10.0 9.0 1392 ------- null} h -t 1.60173 -s 0 -d 9 -p ack -e 40 -c 0 -i 2794 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.602 -s 10 -d 7 -p ack -e 40 -c 0 -i 2798 -a 0 -x {10.0 9.0 1394 ------- null} + -t 1.602 -s 7 -d 0 -p ack -e 40 -c 0 -i 2798 -a 0 -x {10.0 9.0 1394 ------- null} h -t 1.602 -s 7 -d 8 -p ack -e 40 -c 0 -i 2798 -a 0 -x {10.0 9.0 1394 ------- null} r -t 1.60206 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2797 -a 0 -x {9.0 10.0 1403 ------- null} + -t 1.60206 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2797 -a 0 -x {9.0 10.0 1403 ------- null} h -t 1.60206 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2797 -a 0 -x {9.0 10.0 1403 ------- null} r -t 1.60214 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2783 -a 0 -x {9.0 10.0 1396 ------- null} + -t 1.60214 -s 10 -d 7 -p ack -e 40 -c 0 -i 2802 -a 0 -x {10.0 9.0 1396 ------- null} - -t 1.60214 -s 10 -d 7 -p ack -e 40 -c 0 -i 2802 -a 0 -x {10.0 9.0 1396 ------- null} h -t 1.60214 -s 10 -d 7 -p ack -e 40 -c 0 -i 2802 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.60261 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2789 -a 0 -x {9.0 10.0 1399 ------- null} - -t 1.60261 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2789 -a 0 -x {9.0 10.0 1399 ------- null} h -t 1.60261 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2789 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.60262 -s 0 -d 9 -p ack -e 40 -c 0 -i 2792 -a 0 -x {10.0 9.0 1391 ------- null} + -t 1.60262 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2803 -a 0 -x {9.0 10.0 1406 ------- null} - -t 1.60262 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2803 -a 0 -x {9.0 10.0 1406 ------- null} h -t 1.60262 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2803 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.60277 -s 0 -d 9 -p ack -e 40 -c 0 -i 2796 -a 0 -x {10.0 9.0 1393 ------- null} - -t 1.60277 -s 0 -d 9 -p ack -e 40 -c 0 -i 2796 -a 0 -x {10.0 9.0 1393 ------- null} h -t 1.60277 -s 0 -d 9 -p ack -e 40 -c 0 -i 2796 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.60309 -s 10 -d 7 -p ack -e 40 -c 0 -i 2800 -a 0 -x {10.0 9.0 1395 ------- null} + -t 1.60309 -s 7 -d 0 -p ack -e 40 -c 0 -i 2800 -a 0 -x {10.0 9.0 1395 ------- null} h -t 1.60309 -s 7 -d 8 -p ack -e 40 -c 0 -i 2800 -a 0 -x {10.0 9.0 1395 ------- null} r -t 1.6032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2799 -a 0 -x {9.0 10.0 1404 ------- null} + -t 1.6032 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2799 -a 0 -x {9.0 10.0 1404 ------- null} h -t 1.6032 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2799 -a 0 -x {9.0 10.0 1404 ------- null} r -t 1.60323 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2785 -a 0 -x {9.0 10.0 1397 ------- null} + -t 1.60323 -s 10 -d 7 -p ack -e 40 -c 0 -i 2804 -a 0 -x {10.0 9.0 1397 ------- null} - -t 1.60323 -s 10 -d 7 -p ack -e 40 -c 0 -i 2804 -a 0 -x {10.0 9.0 1397 ------- null} h -t 1.60323 -s 10 -d 7 -p ack -e 40 -c 0 -i 2804 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.6037 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2791 -a 0 -x {9.0 10.0 1400 ------- null} - -t 1.6037 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2791 -a 0 -x {9.0 10.0 1400 ------- null} h -t 1.6037 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2791 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.60376 -s 0 -d 9 -p ack -e 40 -c 0 -i 2794 -a 0 -x {10.0 9.0 1392 ------- null} + -t 1.60376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2805 -a 0 -x {9.0 10.0 1407 ------- null} - -t 1.60376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2805 -a 0 -x {9.0 10.0 1407 ------- null} h -t 1.60376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2805 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.60379 -s 0 -d 9 -p ack -e 40 -c 0 -i 2798 -a 0 -x {10.0 9.0 1394 ------- null} - -t 1.60379 -s 0 -d 9 -p ack -e 40 -c 0 -i 2798 -a 0 -x {10.0 9.0 1394 ------- null} h -t 1.60379 -s 0 -d 9 -p ack -e 40 -c 0 -i 2798 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.60418 -s 10 -d 7 -p ack -e 40 -c 0 -i 2802 -a 0 -x {10.0 9.0 1396 ------- null} + -t 1.60418 -s 7 -d 0 -p ack -e 40 -c 0 -i 2802 -a 0 -x {10.0 9.0 1396 ------- null} h -t 1.60418 -s 7 -d 8 -p ack -e 40 -c 0 -i 2802 -a 0 -x {10.0 9.0 1396 ------- null} r -t 1.60432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2787 -a 0 -x {9.0 10.0 1398 ------- null} + -t 1.60432 -s 10 -d 7 -p ack -e 40 -c 0 -i 2806 -a 0 -x {10.0 9.0 1398 ------- null} - -t 1.60432 -s 10 -d 7 -p ack -e 40 -c 0 -i 2806 -a 0 -x {10.0 9.0 1398 ------- null} h -t 1.60432 -s 10 -d 7 -p ack -e 40 -c 0 -i 2806 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.60435 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2801 -a 0 -x {9.0 10.0 1405 ------- null} + -t 1.60435 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2801 -a 0 -x {9.0 10.0 1405 ------- null} h -t 1.60435 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2801 -a 0 -x {9.0 10.0 1405 ------- null} + -t 1.60478 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2793 -a 0 -x {9.0 10.0 1401 ------- null} - -t 1.60478 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2793 -a 0 -x {9.0 10.0 1401 ------- null} h -t 1.60478 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2793 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.6048 -s 0 -d 9 -p ack -e 40 -c 0 -i 2796 -a 0 -x {10.0 9.0 1393 ------- null} + -t 1.6048 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2807 -a 0 -x {9.0 10.0 1408 ------- null} - -t 1.6048 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2807 -a 0 -x {9.0 10.0 1408 ------- null} h -t 1.6048 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2807 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.60499 -s 0 -d 9 -p ack -e 40 -c 0 -i 2800 -a 0 -x {10.0 9.0 1395 ------- null} - -t 1.60499 -s 0 -d 9 -p ack -e 40 -c 0 -i 2800 -a 0 -x {10.0 9.0 1395 ------- null} h -t 1.60499 -s 0 -d 9 -p ack -e 40 -c 0 -i 2800 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.60526 -s 10 -d 7 -p ack -e 40 -c 0 -i 2804 -a 0 -x {10.0 9.0 1397 ------- null} + -t 1.60526 -s 7 -d 0 -p ack -e 40 -c 0 -i 2804 -a 0 -x {10.0 9.0 1397 ------- null} h -t 1.60526 -s 7 -d 8 -p ack -e 40 -c 0 -i 2804 -a 0 -x {10.0 9.0 1397 ------- null} r -t 1.60541 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2789 -a 0 -x {9.0 10.0 1399 ------- null} + -t 1.60541 -s 10 -d 7 -p ack -e 40 -c 0 -i 2808 -a 0 -x {10.0 9.0 1399 ------- null} - -t 1.60541 -s 10 -d 7 -p ack -e 40 -c 0 -i 2808 -a 0 -x {10.0 9.0 1399 ------- null} h -t 1.60541 -s 10 -d 7 -p ack -e 40 -c 0 -i 2808 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.60542 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2803 -a 0 -x {9.0 10.0 1406 ------- null} + -t 1.60542 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2803 -a 0 -x {9.0 10.0 1406 ------- null} h -t 1.60542 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2803 -a 0 -x {9.0 10.0 1406 ------- null} r -t 1.60582 -s 0 -d 9 -p ack -e 40 -c 0 -i 2798 -a 0 -x {10.0 9.0 1394 ------- null} + -t 1.60582 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2809 -a 0 -x {9.0 10.0 1409 ------- null} - -t 1.60582 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2809 -a 0 -x {9.0 10.0 1409 ------- null} h -t 1.60582 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2809 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.60587 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2795 -a 0 -x {9.0 10.0 1402 ------- null} - -t 1.60587 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2795 -a 0 -x {9.0 10.0 1402 ------- null} h -t 1.60587 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2795 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.60606 -s 0 -d 9 -p ack -e 40 -c 0 -i 2802 -a 0 -x {10.0 9.0 1396 ------- null} - -t 1.60606 -s 0 -d 9 -p ack -e 40 -c 0 -i 2802 -a 0 -x {10.0 9.0 1396 ------- null} h -t 1.60606 -s 0 -d 9 -p ack -e 40 -c 0 -i 2802 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.60635 -s 10 -d 7 -p ack -e 40 -c 0 -i 2806 -a 0 -x {10.0 9.0 1398 ------- null} + -t 1.60635 -s 7 -d 0 -p ack -e 40 -c 0 -i 2806 -a 0 -x {10.0 9.0 1398 ------- null} h -t 1.60635 -s 7 -d 8 -p ack -e 40 -c 0 -i 2806 -a 0 -x {10.0 9.0 1398 ------- null} r -t 1.6065 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2791 -a 0 -x {9.0 10.0 1400 ------- null} + -t 1.6065 -s 10 -d 7 -p ack -e 40 -c 0 -i 2810 -a 0 -x {10.0 9.0 1400 ------- null} - -t 1.6065 -s 10 -d 7 -p ack -e 40 -c 0 -i 2810 -a 0 -x {10.0 9.0 1400 ------- null} h -t 1.6065 -s 10 -d 7 -p ack -e 40 -c 0 -i 2810 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.60656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2805 -a 0 -x {9.0 10.0 1407 ------- null} + -t 1.60656 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2805 -a 0 -x {9.0 10.0 1407 ------- null} h -t 1.60656 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2805 -a 0 -x {9.0 10.0 1407 ------- null} + -t 1.60696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2797 -a 0 -x {9.0 10.0 1403 ------- null} - -t 1.60696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2797 -a 0 -x {9.0 10.0 1403 ------- null} h -t 1.60696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2797 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.60702 -s 0 -d 9 -p ack -e 40 -c 0 -i 2800 -a 0 -x {10.0 9.0 1395 ------- null} + -t 1.60702 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2811 -a 0 -x {9.0 10.0 1410 ------- null} - -t 1.60702 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2811 -a 0 -x {9.0 10.0 1410 ------- null} h -t 1.60702 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2811 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.60707 -s 0 -d 9 -p ack -e 40 -c 0 -i 2804 -a 0 -x {10.0 9.0 1397 ------- null} - -t 1.60707 -s 0 -d 9 -p ack -e 40 -c 0 -i 2804 -a 0 -x {10.0 9.0 1397 ------- null} h -t 1.60707 -s 0 -d 9 -p ack -e 40 -c 0 -i 2804 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.60744 -s 10 -d 7 -p ack -e 40 -c 0 -i 2808 -a 0 -x {10.0 9.0 1399 ------- null} + -t 1.60744 -s 7 -d 0 -p ack -e 40 -c 0 -i 2808 -a 0 -x {10.0 9.0 1399 ------- null} h -t 1.60744 -s 7 -d 8 -p ack -e 40 -c 0 -i 2808 -a 0 -x {10.0 9.0 1399 ------- null} r -t 1.60758 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2793 -a 0 -x {9.0 10.0 1401 ------- null} + -t 1.60758 -s 10 -d 7 -p ack -e 40 -c 0 -i 2812 -a 0 -x {10.0 9.0 1401 ------- null} - -t 1.60758 -s 10 -d 7 -p ack -e 40 -c 0 -i 2812 -a 0 -x {10.0 9.0 1401 ------- null} h -t 1.60758 -s 10 -d 7 -p ack -e 40 -c 0 -i 2812 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.6076 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2807 -a 0 -x {9.0 10.0 1408 ------- null} + -t 1.6076 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2807 -a 0 -x {9.0 10.0 1408 ------- null} h -t 1.6076 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2807 -a 0 -x {9.0 10.0 1408 ------- null} + -t 1.60805 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2799 -a 0 -x {9.0 10.0 1404 ------- null} - -t 1.60805 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2799 -a 0 -x {9.0 10.0 1404 ------- null} h -t 1.60805 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2799 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.6081 -s 0 -d 9 -p ack -e 40 -c 0 -i 2802 -a 0 -x {10.0 9.0 1396 ------- null} + -t 1.6081 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2813 -a 0 -x {9.0 10.0 1411 ------- null} - -t 1.6081 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2813 -a 0 -x {9.0 10.0 1411 ------- null} h -t 1.6081 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2813 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.60811 -s 0 -d 9 -p ack -e 40 -c 0 -i 2806 -a 0 -x {10.0 9.0 1398 ------- null} - -t 1.60811 -s 0 -d 9 -p ack -e 40 -c 0 -i 2806 -a 0 -x {10.0 9.0 1398 ------- null} h -t 1.60811 -s 0 -d 9 -p ack -e 40 -c 0 -i 2806 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.60853 -s 10 -d 7 -p ack -e 40 -c 0 -i 2810 -a 0 -x {10.0 9.0 1400 ------- null} + -t 1.60853 -s 7 -d 0 -p ack -e 40 -c 0 -i 2810 -a 0 -x {10.0 9.0 1400 ------- null} h -t 1.60853 -s 7 -d 8 -p ack -e 40 -c 0 -i 2810 -a 0 -x {10.0 9.0 1400 ------- null} r -t 1.60862 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2809 -a 0 -x {9.0 10.0 1409 ------- null} + -t 1.60862 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2809 -a 0 -x {9.0 10.0 1409 ------- null} h -t 1.60862 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2809 -a 0 -x {9.0 10.0 1409 ------- null} r -t 1.60867 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2795 -a 0 -x {9.0 10.0 1402 ------- null} + -t 1.60867 -s 10 -d 7 -p ack -e 40 -c 0 -i 2814 -a 0 -x {10.0 9.0 1402 ------- null} - -t 1.60867 -s 10 -d 7 -p ack -e 40 -c 0 -i 2814 -a 0 -x {10.0 9.0 1402 ------- null} h -t 1.60867 -s 10 -d 7 -p ack -e 40 -c 0 -i 2814 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.6091 -s 0 -d 9 -p ack -e 40 -c 0 -i 2804 -a 0 -x {10.0 9.0 1397 ------- null} + -t 1.6091 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2815 -a 0 -x {9.0 10.0 1412 ------- null} - -t 1.6091 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2815 -a 0 -x {9.0 10.0 1412 ------- null} h -t 1.6091 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2815 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.60914 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2801 -a 0 -x {9.0 10.0 1405 ------- null} - -t 1.60914 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2801 -a 0 -x {9.0 10.0 1405 ------- null} h -t 1.60914 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2801 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.60936 -s 0 -d 9 -p ack -e 40 -c 0 -i 2808 -a 0 -x {10.0 9.0 1399 ------- null} - -t 1.60936 -s 0 -d 9 -p ack -e 40 -c 0 -i 2808 -a 0 -x {10.0 9.0 1399 ------- null} h -t 1.60936 -s 0 -d 9 -p ack -e 40 -c 0 -i 2808 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.60962 -s 10 -d 7 -p ack -e 40 -c 0 -i 2812 -a 0 -x {10.0 9.0 1401 ------- null} + -t 1.60962 -s 7 -d 0 -p ack -e 40 -c 0 -i 2812 -a 0 -x {10.0 9.0 1401 ------- null} h -t 1.60962 -s 7 -d 8 -p ack -e 40 -c 0 -i 2812 -a 0 -x {10.0 9.0 1401 ------- null} r -t 1.60976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2797 -a 0 -x {9.0 10.0 1403 ------- null} + -t 1.60976 -s 10 -d 7 -p ack -e 40 -c 0 -i 2816 -a 0 -x {10.0 9.0 1403 ------- null} - -t 1.60976 -s 10 -d 7 -p ack -e 40 -c 0 -i 2816 -a 0 -x {10.0 9.0 1403 ------- null} h -t 1.60976 -s 10 -d 7 -p ack -e 40 -c 0 -i 2816 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.60982 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2811 -a 0 -x {9.0 10.0 1410 ------- null} + -t 1.60982 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2811 -a 0 -x {9.0 10.0 1410 ------- null} h -t 1.60982 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2811 -a 0 -x {9.0 10.0 1410 ------- null} r -t 1.61014 -s 0 -d 9 -p ack -e 40 -c 0 -i 2806 -a 0 -x {10.0 9.0 1398 ------- null} + -t 1.61014 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2817 -a 0 -x {9.0 10.0 1413 ------- null} - -t 1.61014 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2817 -a 0 -x {9.0 10.0 1413 ------- null} h -t 1.61014 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2817 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.61022 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2803 -a 0 -x {9.0 10.0 1406 ------- null} - -t 1.61022 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2803 -a 0 -x {9.0 10.0 1406 ------- null} h -t 1.61022 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2803 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.61045 -s 0 -d 9 -p ack -e 40 -c 0 -i 2810 -a 0 -x {10.0 9.0 1400 ------- null} - -t 1.61045 -s 0 -d 9 -p ack -e 40 -c 0 -i 2810 -a 0 -x {10.0 9.0 1400 ------- null} h -t 1.61045 -s 0 -d 9 -p ack -e 40 -c 0 -i 2810 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.6107 -s 10 -d 7 -p ack -e 40 -c 0 -i 2814 -a 0 -x {10.0 9.0 1402 ------- null} + -t 1.6107 -s 7 -d 0 -p ack -e 40 -c 0 -i 2814 -a 0 -x {10.0 9.0 1402 ------- null} h -t 1.6107 -s 7 -d 8 -p ack -e 40 -c 0 -i 2814 -a 0 -x {10.0 9.0 1402 ------- null} r -t 1.61085 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2799 -a 0 -x {9.0 10.0 1404 ------- null} + -t 1.61085 -s 10 -d 7 -p ack -e 40 -c 0 -i 2818 -a 0 -x {10.0 9.0 1404 ------- null} - -t 1.61085 -s 10 -d 7 -p ack -e 40 -c 0 -i 2818 -a 0 -x {10.0 9.0 1404 ------- null} h -t 1.61085 -s 10 -d 7 -p ack -e 40 -c 0 -i 2818 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.6109 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2813 -a 0 -x {9.0 10.0 1411 ------- null} + -t 1.6109 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2813 -a 0 -x {9.0 10.0 1411 ------- null} h -t 1.6109 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2813 -a 0 -x {9.0 10.0 1411 ------- null} + -t 1.61131 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2805 -a 0 -x {9.0 10.0 1407 ------- null} - -t 1.61131 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2805 -a 0 -x {9.0 10.0 1407 ------- null} h -t 1.61131 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2805 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.61139 -s 0 -d 9 -p ack -e 40 -c 0 -i 2808 -a 0 -x {10.0 9.0 1399 ------- null} + -t 1.61139 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2819 -a 0 -x {9.0 10.0 1414 ------- null} - -t 1.61139 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2819 -a 0 -x {9.0 10.0 1414 ------- null} h -t 1.61139 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2819 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.61154 -s 0 -d 9 -p ack -e 40 -c 0 -i 2812 -a 0 -x {10.0 9.0 1401 ------- null} - -t 1.61154 -s 0 -d 9 -p ack -e 40 -c 0 -i 2812 -a 0 -x {10.0 9.0 1401 ------- null} h -t 1.61154 -s 0 -d 9 -p ack -e 40 -c 0 -i 2812 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.61179 -s 10 -d 7 -p ack -e 40 -c 0 -i 2816 -a 0 -x {10.0 9.0 1403 ------- null} + -t 1.61179 -s 7 -d 0 -p ack -e 40 -c 0 -i 2816 -a 0 -x {10.0 9.0 1403 ------- null} h -t 1.61179 -s 7 -d 8 -p ack -e 40 -c 0 -i 2816 -a 0 -x {10.0 9.0 1403 ------- null} r -t 1.6119 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2815 -a 0 -x {9.0 10.0 1412 ------- null} + -t 1.6119 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2815 -a 0 -x {9.0 10.0 1412 ------- null} h -t 1.6119 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2815 -a 0 -x {9.0 10.0 1412 ------- null} r -t 1.61194 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2801 -a 0 -x {9.0 10.0 1405 ------- null} + -t 1.61194 -s 10 -d 7 -p ack -e 40 -c 0 -i 2820 -a 0 -x {10.0 9.0 1405 ------- null} - -t 1.61194 -s 10 -d 7 -p ack -e 40 -c 0 -i 2820 -a 0 -x {10.0 9.0 1405 ------- null} h -t 1.61194 -s 10 -d 7 -p ack -e 40 -c 0 -i 2820 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.6124 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2807 -a 0 -x {9.0 10.0 1408 ------- null} - -t 1.6124 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2807 -a 0 -x {9.0 10.0 1408 ------- null} h -t 1.6124 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2807 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.61248 -s 0 -d 9 -p ack -e 40 -c 0 -i 2810 -a 0 -x {10.0 9.0 1400 ------- null} + -t 1.61248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2821 -a 0 -x {9.0 10.0 1415 ------- null} - -t 1.61248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2821 -a 0 -x {9.0 10.0 1415 ------- null} h -t 1.61248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2821 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.61269 -s 0 -d 9 -p ack -e 40 -c 0 -i 2814 -a 0 -x {10.0 9.0 1402 ------- null} - -t 1.61269 -s 0 -d 9 -p ack -e 40 -c 0 -i 2814 -a 0 -x {10.0 9.0 1402 ------- null} h -t 1.61269 -s 0 -d 9 -p ack -e 40 -c 0 -i 2814 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.61288 -s 10 -d 7 -p ack -e 40 -c 0 -i 2818 -a 0 -x {10.0 9.0 1404 ------- null} + -t 1.61288 -s 7 -d 0 -p ack -e 40 -c 0 -i 2818 -a 0 -x {10.0 9.0 1404 ------- null} h -t 1.61288 -s 7 -d 8 -p ack -e 40 -c 0 -i 2818 -a 0 -x {10.0 9.0 1404 ------- null} r -t 1.61294 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2817 -a 0 -x {9.0 10.0 1413 ------- null} + -t 1.61294 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2817 -a 0 -x {9.0 10.0 1413 ------- null} h -t 1.61294 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2817 -a 0 -x {9.0 10.0 1413 ------- null} r -t 1.61302 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2803 -a 0 -x {9.0 10.0 1406 ------- null} + -t 1.61302 -s 10 -d 7 -p ack -e 40 -c 0 -i 2822 -a 0 -x {10.0 9.0 1406 ------- null} - -t 1.61302 -s 10 -d 7 -p ack -e 40 -c 0 -i 2822 -a 0 -x {10.0 9.0 1406 ------- null} h -t 1.61302 -s 10 -d 7 -p ack -e 40 -c 0 -i 2822 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.61357 -s 0 -d 9 -p ack -e 40 -c 0 -i 2812 -a 0 -x {10.0 9.0 1401 ------- null} + -t 1.61357 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2823 -a 0 -x {9.0 10.0 1416 ------- null} - -t 1.61357 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2823 -a 0 -x {9.0 10.0 1416 ------- null} h -t 1.61357 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2823 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.61362 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2809 -a 0 -x {9.0 10.0 1409 ------- null} - -t 1.61362 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2809 -a 0 -x {9.0 10.0 1409 ------- null} h -t 1.61362 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2809 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.61368 -s 0 -d 9 -p ack -e 40 -c 0 -i 2816 -a 0 -x {10.0 9.0 1403 ------- null} - -t 1.61368 -s 0 -d 9 -p ack -e 40 -c 0 -i 2816 -a 0 -x {10.0 9.0 1403 ------- null} h -t 1.61368 -s 0 -d 9 -p ack -e 40 -c 0 -i 2816 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.61397 -s 10 -d 7 -p ack -e 40 -c 0 -i 2820 -a 0 -x {10.0 9.0 1405 ------- null} + -t 1.61397 -s 7 -d 0 -p ack -e 40 -c 0 -i 2820 -a 0 -x {10.0 9.0 1405 ------- null} h -t 1.61397 -s 7 -d 8 -p ack -e 40 -c 0 -i 2820 -a 0 -x {10.0 9.0 1405 ------- null} r -t 1.61411 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2805 -a 0 -x {9.0 10.0 1407 ------- null} + -t 1.61411 -s 10 -d 7 -p ack -e 40 -c 0 -i 2824 -a 0 -x {10.0 9.0 1407 ------- null} - -t 1.61411 -s 10 -d 7 -p ack -e 40 -c 0 -i 2824 -a 0 -x {10.0 9.0 1407 ------- null} h -t 1.61411 -s 10 -d 7 -p ack -e 40 -c 0 -i 2824 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.61419 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2819 -a 0 -x {9.0 10.0 1414 ------- null} + -t 1.61419 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2819 -a 0 -x {9.0 10.0 1414 ------- null} h -t 1.61419 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2819 -a 0 -x {9.0 10.0 1414 ------- null} + -t 1.6147 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2811 -a 0 -x {9.0 10.0 1410 ------- null} - -t 1.6147 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2811 -a 0 -x {9.0 10.0 1410 ------- null} h -t 1.6147 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2811 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.61472 -s 0 -d 9 -p ack -e 40 -c 0 -i 2814 -a 0 -x {10.0 9.0 1402 ------- null} + -t 1.61472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2825 -a 0 -x {9.0 10.0 1417 ------- null} - -t 1.61472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2825 -a 0 -x {9.0 10.0 1417 ------- null} h -t 1.61472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2825 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.61494 -s 0 -d 9 -p ack -e 40 -c 0 -i 2818 -a 0 -x {10.0 9.0 1404 ------- null} - -t 1.61494 -s 0 -d 9 -p ack -e 40 -c 0 -i 2818 -a 0 -x {10.0 9.0 1404 ------- null} h -t 1.61494 -s 0 -d 9 -p ack -e 40 -c 0 -i 2818 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.61506 -s 10 -d 7 -p ack -e 40 -c 0 -i 2822 -a 0 -x {10.0 9.0 1406 ------- null} + -t 1.61506 -s 7 -d 0 -p ack -e 40 -c 0 -i 2822 -a 0 -x {10.0 9.0 1406 ------- null} h -t 1.61506 -s 7 -d 8 -p ack -e 40 -c 0 -i 2822 -a 0 -x {10.0 9.0 1406 ------- null} r -t 1.6152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2807 -a 0 -x {9.0 10.0 1408 ------- null} + -t 1.6152 -s 10 -d 7 -p ack -e 40 -c 0 -i 2826 -a 0 -x {10.0 9.0 1408 ------- null} - -t 1.6152 -s 10 -d 7 -p ack -e 40 -c 0 -i 2826 -a 0 -x {10.0 9.0 1408 ------- null} h -t 1.6152 -s 10 -d 7 -p ack -e 40 -c 0 -i 2826 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.61528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2821 -a 0 -x {9.0 10.0 1415 ------- null} + -t 1.61528 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2821 -a 0 -x {9.0 10.0 1415 ------- null} h -t 1.61528 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2821 -a 0 -x {9.0 10.0 1415 ------- null} r -t 1.61571 -s 0 -d 9 -p ack -e 40 -c 0 -i 2816 -a 0 -x {10.0 9.0 1403 ------- null} + -t 1.61571 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2827 -a 0 -x {9.0 10.0 1418 ------- null} - -t 1.61571 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2827 -a 0 -x {9.0 10.0 1418 ------- null} h -t 1.61571 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2827 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.61579 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2813 -a 0 -x {9.0 10.0 1411 ------- null} - -t 1.61579 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2813 -a 0 -x {9.0 10.0 1411 ------- null} h -t 1.61579 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2813 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.61606 -s 0 -d 9 -p ack -e 40 -c 0 -i 2820 -a 0 -x {10.0 9.0 1405 ------- null} - -t 1.61606 -s 0 -d 9 -p ack -e 40 -c 0 -i 2820 -a 0 -x {10.0 9.0 1405 ------- null} h -t 1.61606 -s 0 -d 9 -p ack -e 40 -c 0 -i 2820 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.61614 -s 10 -d 7 -p ack -e 40 -c 0 -i 2824 -a 0 -x {10.0 9.0 1407 ------- null} + -t 1.61614 -s 7 -d 0 -p ack -e 40 -c 0 -i 2824 -a 0 -x {10.0 9.0 1407 ------- null} h -t 1.61614 -s 7 -d 8 -p ack -e 40 -c 0 -i 2824 -a 0 -x {10.0 9.0 1407 ------- null} r -t 1.61637 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2823 -a 0 -x {9.0 10.0 1416 ------- null} + -t 1.61637 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2823 -a 0 -x {9.0 10.0 1416 ------- null} h -t 1.61637 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2823 -a 0 -x {9.0 10.0 1416 ------- null} r -t 1.61642 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2809 -a 0 -x {9.0 10.0 1409 ------- null} + -t 1.61642 -s 10 -d 7 -p ack -e 40 -c 0 -i 2828 -a 0 -x {10.0 9.0 1409 ------- null} - -t 1.61642 -s 10 -d 7 -p ack -e 40 -c 0 -i 2828 -a 0 -x {10.0 9.0 1409 ------- null} h -t 1.61642 -s 10 -d 7 -p ack -e 40 -c 0 -i 2828 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.61698 -s 0 -d 9 -p ack -e 40 -c 0 -i 2818 -a 0 -x {10.0 9.0 1404 ------- null} + -t 1.61698 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2829 -a 0 -x {9.0 10.0 1419 ------- null} - -t 1.61698 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2829 -a 0 -x {9.0 10.0 1419 ------- null} h -t 1.61698 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2829 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.61704 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2815 -a 0 -x {9.0 10.0 1412 ------- null} - -t 1.61704 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2815 -a 0 -x {9.0 10.0 1412 ------- null} h -t 1.61704 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2815 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.61718 -s 0 -d 9 -p ack -e 40 -c 0 -i 2822 -a 0 -x {10.0 9.0 1406 ------- null} - -t 1.61718 -s 0 -d 9 -p ack -e 40 -c 0 -i 2822 -a 0 -x {10.0 9.0 1406 ------- null} h -t 1.61718 -s 0 -d 9 -p ack -e 40 -c 0 -i 2822 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.61723 -s 10 -d 7 -p ack -e 40 -c 0 -i 2826 -a 0 -x {10.0 9.0 1408 ------- null} + -t 1.61723 -s 7 -d 0 -p ack -e 40 -c 0 -i 2826 -a 0 -x {10.0 9.0 1408 ------- null} h -t 1.61723 -s 7 -d 8 -p ack -e 40 -c 0 -i 2826 -a 0 -x {10.0 9.0 1408 ------- null} r -t 1.6175 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2811 -a 0 -x {9.0 10.0 1410 ------- null} + -t 1.6175 -s 10 -d 7 -p ack -e 40 -c 0 -i 2830 -a 0 -x {10.0 9.0 1410 ------- null} - -t 1.6175 -s 10 -d 7 -p ack -e 40 -c 0 -i 2830 -a 0 -x {10.0 9.0 1410 ------- null} h -t 1.6175 -s 10 -d 7 -p ack -e 40 -c 0 -i 2830 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.61752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2825 -a 0 -x {9.0 10.0 1417 ------- null} + -t 1.61752 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2825 -a 0 -x {9.0 10.0 1417 ------- null} h -t 1.61752 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2825 -a 0 -x {9.0 10.0 1417 ------- null} r -t 1.6181 -s 0 -d 9 -p ack -e 40 -c 0 -i 2820 -a 0 -x {10.0 9.0 1405 ------- null} + -t 1.6181 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2831 -a 0 -x {9.0 10.0 1420 ------- null} - -t 1.6181 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2831 -a 0 -x {9.0 10.0 1420 ------- null} h -t 1.6181 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2831 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.61813 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2817 -a 0 -x {9.0 10.0 1413 ------- null} - -t 1.61813 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2817 -a 0 -x {9.0 10.0 1413 ------- null} h -t 1.61813 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2817 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.61829 -s 0 -d 9 -p ack -e 40 -c 0 -i 2824 -a 0 -x {10.0 9.0 1407 ------- null} - -t 1.61829 -s 0 -d 9 -p ack -e 40 -c 0 -i 2824 -a 0 -x {10.0 9.0 1407 ------- null} h -t 1.61829 -s 0 -d 9 -p ack -e 40 -c 0 -i 2824 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.61845 -s 10 -d 7 -p ack -e 40 -c 0 -i 2828 -a 0 -x {10.0 9.0 1409 ------- null} + -t 1.61845 -s 7 -d 0 -p ack -e 40 -c 0 -i 2828 -a 0 -x {10.0 9.0 1409 ------- null} h -t 1.61845 -s 7 -d 8 -p ack -e 40 -c 0 -i 2828 -a 0 -x {10.0 9.0 1409 ------- null} r -t 1.61851 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2827 -a 0 -x {9.0 10.0 1418 ------- null} + -t 1.61851 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2827 -a 0 -x {9.0 10.0 1418 ------- null} h -t 1.61851 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2827 -a 0 -x {9.0 10.0 1418 ------- null} r -t 1.61859 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2813 -a 0 -x {9.0 10.0 1411 ------- null} + -t 1.61859 -s 10 -d 7 -p ack -e 40 -c 0 -i 2832 -a 0 -x {10.0 9.0 1411 ------- null} - -t 1.61859 -s 10 -d 7 -p ack -e 40 -c 0 -i 2832 -a 0 -x {10.0 9.0 1411 ------- null} h -t 1.61859 -s 10 -d 7 -p ack -e 40 -c 0 -i 2832 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.61922 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2819 -a 0 -x {9.0 10.0 1414 ------- null} - -t 1.61922 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2819 -a 0 -x {9.0 10.0 1414 ------- null} h -t 1.61922 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2819 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.61922 -s 0 -d 9 -p ack -e 40 -c 0 -i 2822 -a 0 -x {10.0 9.0 1406 ------- null} + -t 1.61922 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2833 -a 0 -x {9.0 10.0 1421 ------- null} - -t 1.61922 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2833 -a 0 -x {9.0 10.0 1421 ------- null} h -t 1.61922 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2833 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.6195 -s 0 -d 9 -p ack -e 40 -c 0 -i 2826 -a 0 -x {10.0 9.0 1408 ------- null} - -t 1.6195 -s 0 -d 9 -p ack -e 40 -c 0 -i 2826 -a 0 -x {10.0 9.0 1408 ------- null} h -t 1.6195 -s 0 -d 9 -p ack -e 40 -c 0 -i 2826 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.61954 -s 10 -d 7 -p ack -e 40 -c 0 -i 2830 -a 0 -x {10.0 9.0 1410 ------- null} + -t 1.61954 -s 7 -d 0 -p ack -e 40 -c 0 -i 2830 -a 0 -x {10.0 9.0 1410 ------- null} h -t 1.61954 -s 7 -d 8 -p ack -e 40 -c 0 -i 2830 -a 0 -x {10.0 9.0 1410 ------- null} r -t 1.61978 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2829 -a 0 -x {9.0 10.0 1419 ------- null} + -t 1.61978 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2829 -a 0 -x {9.0 10.0 1419 ------- null} h -t 1.61978 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2829 -a 0 -x {9.0 10.0 1419 ------- null} r -t 1.61984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2815 -a 0 -x {9.0 10.0 1412 ------- null} + -t 1.61984 -s 10 -d 7 -p ack -e 40 -c 0 -i 2834 -a 0 -x {10.0 9.0 1412 ------- null} - -t 1.61984 -s 10 -d 7 -p ack -e 40 -c 0 -i 2834 -a 0 -x {10.0 9.0 1412 ------- null} h -t 1.61984 -s 10 -d 7 -p ack -e 40 -c 0 -i 2834 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.62032 -s 0 -d 9 -p ack -e 40 -c 0 -i 2824 -a 0 -x {10.0 9.0 1407 ------- null} + -t 1.62032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2835 -a 0 -x {9.0 10.0 1422 ------- null} - -t 1.62032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2835 -a 0 -x {9.0 10.0 1422 ------- null} h -t 1.62032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2835 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.6204 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2821 -a 0 -x {9.0 10.0 1415 ------- null} - -t 1.6204 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2821 -a 0 -x {9.0 10.0 1415 ------- null} h -t 1.6204 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2821 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.62062 -s 10 -d 7 -p ack -e 40 -c 0 -i 2832 -a 0 -x {10.0 9.0 1411 ------- null} + -t 1.62062 -s 7 -d 0 -p ack -e 40 -c 0 -i 2832 -a 0 -x {10.0 9.0 1411 ------- null} h -t 1.62062 -s 7 -d 8 -p ack -e 40 -c 0 -i 2832 -a 0 -x {10.0 9.0 1411 ------- null} + -t 1.62067 -s 0 -d 9 -p ack -e 40 -c 0 -i 2828 -a 0 -x {10.0 9.0 1409 ------- null} - -t 1.62067 -s 0 -d 9 -p ack -e 40 -c 0 -i 2828 -a 0 -x {10.0 9.0 1409 ------- null} h -t 1.62067 -s 0 -d 9 -p ack -e 40 -c 0 -i 2828 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.6209 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2831 -a 0 -x {9.0 10.0 1420 ------- null} + -t 1.6209 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2831 -a 0 -x {9.0 10.0 1420 ------- null} h -t 1.6209 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2831 -a 0 -x {9.0 10.0 1420 ------- null} r -t 1.62093 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2817 -a 0 -x {9.0 10.0 1413 ------- null} + -t 1.62093 -s 10 -d 7 -p ack -e 40 -c 0 -i 2836 -a 0 -x {10.0 9.0 1413 ------- null} - -t 1.62093 -s 10 -d 7 -p ack -e 40 -c 0 -i 2836 -a 0 -x {10.0 9.0 1413 ------- null} h -t 1.62093 -s 10 -d 7 -p ack -e 40 -c 0 -i 2836 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.62154 -s 0 -d 9 -p ack -e 40 -c 0 -i 2826 -a 0 -x {10.0 9.0 1408 ------- null} + -t 1.62154 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2837 -a 0 -x {9.0 10.0 1423 ------- null} - -t 1.62154 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2837 -a 0 -x {9.0 10.0 1423 ------- null} h -t 1.62154 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2837 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.62162 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2823 -a 0 -x {9.0 10.0 1416 ------- null} - -t 1.62162 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2823 -a 0 -x {9.0 10.0 1416 ------- null} h -t 1.62162 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2823 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.62173 -s 0 -d 9 -p ack -e 40 -c 0 -i 2830 -a 0 -x {10.0 9.0 1410 ------- null} - -t 1.62173 -s 0 -d 9 -p ack -e 40 -c 0 -i 2830 -a 0 -x {10.0 9.0 1410 ------- null} h -t 1.62173 -s 0 -d 9 -p ack -e 40 -c 0 -i 2830 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.62187 -s 10 -d 7 -p ack -e 40 -c 0 -i 2834 -a 0 -x {10.0 9.0 1412 ------- null} + -t 1.62187 -s 7 -d 0 -p ack -e 40 -c 0 -i 2834 -a 0 -x {10.0 9.0 1412 ------- null} h -t 1.62187 -s 7 -d 8 -p ack -e 40 -c 0 -i 2834 -a 0 -x {10.0 9.0 1412 ------- null} r -t 1.62202 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2819 -a 0 -x {9.0 10.0 1414 ------- null} + -t 1.62202 -s 10 -d 7 -p ack -e 40 -c 0 -i 2838 -a 0 -x {10.0 9.0 1414 ------- null} - -t 1.62202 -s 10 -d 7 -p ack -e 40 -c 0 -i 2838 -a 0 -x {10.0 9.0 1414 ------- null} h -t 1.62202 -s 10 -d 7 -p ack -e 40 -c 0 -i 2838 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.62202 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2833 -a 0 -x {9.0 10.0 1421 ------- null} + -t 1.62202 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2833 -a 0 -x {9.0 10.0 1421 ------- null} h -t 1.62202 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2833 -a 0 -x {9.0 10.0 1421 ------- null} + -t 1.6227 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2825 -a 0 -x {9.0 10.0 1417 ------- null} - -t 1.6227 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2825 -a 0 -x {9.0 10.0 1417 ------- null} h -t 1.6227 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2825 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.6227 -s 0 -d 9 -p ack -e 40 -c 0 -i 2828 -a 0 -x {10.0 9.0 1409 ------- null} + -t 1.6227 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2839 -a 0 -x {9.0 10.0 1424 ------- null} - -t 1.6227 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2839 -a 0 -x {9.0 10.0 1424 ------- null} h -t 1.6227 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2839 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.62286 -s 0 -d 9 -p ack -e 40 -c 0 -i 2832 -a 0 -x {10.0 9.0 1411 ------- null} - -t 1.62286 -s 0 -d 9 -p ack -e 40 -c 0 -i 2832 -a 0 -x {10.0 9.0 1411 ------- null} h -t 1.62286 -s 0 -d 9 -p ack -e 40 -c 0 -i 2832 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.62296 -s 10 -d 7 -p ack -e 40 -c 0 -i 2836 -a 0 -x {10.0 9.0 1413 ------- null} + -t 1.62296 -s 7 -d 0 -p ack -e 40 -c 0 -i 2836 -a 0 -x {10.0 9.0 1413 ------- null} h -t 1.62296 -s 7 -d 8 -p ack -e 40 -c 0 -i 2836 -a 0 -x {10.0 9.0 1413 ------- null} r -t 1.62312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2835 -a 0 -x {9.0 10.0 1422 ------- null} + -t 1.62312 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2835 -a 0 -x {9.0 10.0 1422 ------- null} h -t 1.62312 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2835 -a 0 -x {9.0 10.0 1422 ------- null} r -t 1.6232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2821 -a 0 -x {9.0 10.0 1415 ------- null} + -t 1.6232 -s 10 -d 7 -p ack -e 40 -c 0 -i 2840 -a 0 -x {10.0 9.0 1415 ------- null} - -t 1.6232 -s 10 -d 7 -p ack -e 40 -c 0 -i 2840 -a 0 -x {10.0 9.0 1415 ------- null} h -t 1.6232 -s 10 -d 7 -p ack -e 40 -c 0 -i 2840 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.62376 -s 0 -d 9 -p ack -e 40 -c 0 -i 2830 -a 0 -x {10.0 9.0 1410 ------- null} + -t 1.62376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2841 -a 0 -x {9.0 10.0 1425 ------- null} - -t 1.62376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2841 -a 0 -x {9.0 10.0 1425 ------- null} h -t 1.62376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2841 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.62379 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2827 -a 0 -x {9.0 10.0 1418 ------- null} - -t 1.62379 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2827 -a 0 -x {9.0 10.0 1418 ------- null} h -t 1.62379 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2827 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.62405 -s 10 -d 7 -p ack -e 40 -c 0 -i 2838 -a 0 -x {10.0 9.0 1414 ------- null} + -t 1.62405 -s 7 -d 0 -p ack -e 40 -c 0 -i 2838 -a 0 -x {10.0 9.0 1414 ------- null} h -t 1.62405 -s 7 -d 8 -p ack -e 40 -c 0 -i 2838 -a 0 -x {10.0 9.0 1414 ------- null} + -t 1.62405 -s 0 -d 9 -p ack -e 40 -c 0 -i 2834 -a 0 -x {10.0 9.0 1412 ------- null} - -t 1.62405 -s 0 -d 9 -p ack -e 40 -c 0 -i 2834 -a 0 -x {10.0 9.0 1412 ------- null} h -t 1.62405 -s 0 -d 9 -p ack -e 40 -c 0 -i 2834 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.62434 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2837 -a 0 -x {9.0 10.0 1423 ------- null} + -t 1.62434 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2837 -a 0 -x {9.0 10.0 1423 ------- null} h -t 1.62434 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2837 -a 0 -x {9.0 10.0 1423 ------- null} r -t 1.62442 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2823 -a 0 -x {9.0 10.0 1416 ------- null} + -t 1.62442 -s 10 -d 7 -p ack -e 40 -c 0 -i 2842 -a 0 -x {10.0 9.0 1416 ------- null} - -t 1.62442 -s 10 -d 7 -p ack -e 40 -c 0 -i 2842 -a 0 -x {10.0 9.0 1416 ------- null} h -t 1.62442 -s 10 -d 7 -p ack -e 40 -c 0 -i 2842 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.62488 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2829 -a 0 -x {9.0 10.0 1419 ------- null} - -t 1.62488 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2829 -a 0 -x {9.0 10.0 1419 ------- null} h -t 1.62488 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2829 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.6249 -s 0 -d 9 -p ack -e 40 -c 0 -i 2832 -a 0 -x {10.0 9.0 1411 ------- null} + -t 1.6249 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2843 -a 0 -x {9.0 10.0 1426 ------- null} - -t 1.6249 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2843 -a 0 -x {9.0 10.0 1426 ------- null} h -t 1.6249 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2843 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.62509 -s 0 -d 9 -p ack -e 40 -c 0 -i 2836 -a 0 -x {10.0 9.0 1413 ------- null} - -t 1.62509 -s 0 -d 9 -p ack -e 40 -c 0 -i 2836 -a 0 -x {10.0 9.0 1413 ------- null} h -t 1.62509 -s 0 -d 9 -p ack -e 40 -c 0 -i 2836 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.62523 -s 10 -d 7 -p ack -e 40 -c 0 -i 2840 -a 0 -x {10.0 9.0 1415 ------- null} + -t 1.62523 -s 7 -d 0 -p ack -e 40 -c 0 -i 2840 -a 0 -x {10.0 9.0 1415 ------- null} h -t 1.62523 -s 7 -d 8 -p ack -e 40 -c 0 -i 2840 -a 0 -x {10.0 9.0 1415 ------- null} r -t 1.6255 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2825 -a 0 -x {9.0 10.0 1417 ------- null} + -t 1.6255 -s 10 -d 7 -p ack -e 40 -c 0 -i 2844 -a 0 -x {10.0 9.0 1417 ------- null} - -t 1.6255 -s 10 -d 7 -p ack -e 40 -c 0 -i 2844 -a 0 -x {10.0 9.0 1417 ------- null} h -t 1.6255 -s 10 -d 7 -p ack -e 40 -c 0 -i 2844 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.6255 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2839 -a 0 -x {9.0 10.0 1424 ------- null} + -t 1.6255 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2839 -a 0 -x {9.0 10.0 1424 ------- null} h -t 1.6255 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2839 -a 0 -x {9.0 10.0 1424 ------- null} + -t 1.62597 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2831 -a 0 -x {9.0 10.0 1420 ------- null} - -t 1.62597 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2831 -a 0 -x {9.0 10.0 1420 ------- null} h -t 1.62597 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2831 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.62608 -s 0 -d 9 -p ack -e 40 -c 0 -i 2834 -a 0 -x {10.0 9.0 1412 ------- null} + -t 1.62608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2845 -a 0 -x {9.0 10.0 1427 ------- null} - -t 1.62608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2845 -a 0 -x {9.0 10.0 1427 ------- null} h -t 1.62608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2845 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.6261 -s 0 -d 9 -p ack -e 40 -c 0 -i 2838 -a 0 -x {10.0 9.0 1414 ------- null} - -t 1.6261 -s 0 -d 9 -p ack -e 40 -c 0 -i 2838 -a 0 -x {10.0 9.0 1414 ------- null} h -t 1.6261 -s 0 -d 9 -p ack -e 40 -c 0 -i 2838 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.62645 -s 10 -d 7 -p ack -e 40 -c 0 -i 2842 -a 0 -x {10.0 9.0 1416 ------- null} + -t 1.62645 -s 7 -d 0 -p ack -e 40 -c 0 -i 2842 -a 0 -x {10.0 9.0 1416 ------- null} h -t 1.62645 -s 7 -d 8 -p ack -e 40 -c 0 -i 2842 -a 0 -x {10.0 9.0 1416 ------- null} r -t 1.62656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2841 -a 0 -x {9.0 10.0 1425 ------- null} + -t 1.62656 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2841 -a 0 -x {9.0 10.0 1425 ------- null} h -t 1.62656 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2841 -a 0 -x {9.0 10.0 1425 ------- null} r -t 1.62659 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2827 -a 0 -x {9.0 10.0 1418 ------- null} + -t 1.62659 -s 10 -d 7 -p ack -e 40 -c 0 -i 2846 -a 0 -x {10.0 9.0 1418 ------- null} - -t 1.62659 -s 10 -d 7 -p ack -e 40 -c 0 -i 2846 -a 0 -x {10.0 9.0 1418 ------- null} h -t 1.62659 -s 10 -d 7 -p ack -e 40 -c 0 -i 2846 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.62706 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2833 -a 0 -x {9.0 10.0 1421 ------- null} - -t 1.62706 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2833 -a 0 -x {9.0 10.0 1421 ------- null} h -t 1.62706 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2833 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.62712 -s 0 -d 9 -p ack -e 40 -c 0 -i 2836 -a 0 -x {10.0 9.0 1413 ------- null} + -t 1.62712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2847 -a 0 -x {9.0 10.0 1428 ------- null} - -t 1.62712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2847 -a 0 -x {9.0 10.0 1428 ------- null} h -t 1.62712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2847 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.62726 -s 0 -d 9 -p ack -e 40 -c 0 -i 2840 -a 0 -x {10.0 9.0 1415 ------- null} - -t 1.62726 -s 0 -d 9 -p ack -e 40 -c 0 -i 2840 -a 0 -x {10.0 9.0 1415 ------- null} h -t 1.62726 -s 0 -d 9 -p ack -e 40 -c 0 -i 2840 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.62754 -s 10 -d 7 -p ack -e 40 -c 0 -i 2844 -a 0 -x {10.0 9.0 1417 ------- null} + -t 1.62754 -s 7 -d 0 -p ack -e 40 -c 0 -i 2844 -a 0 -x {10.0 9.0 1417 ------- null} h -t 1.62754 -s 7 -d 8 -p ack -e 40 -c 0 -i 2844 -a 0 -x {10.0 9.0 1417 ------- null} r -t 1.62768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2829 -a 0 -x {9.0 10.0 1419 ------- null} + -t 1.62768 -s 10 -d 7 -p ack -e 40 -c 0 -i 2848 -a 0 -x {10.0 9.0 1419 ------- null} - -t 1.62768 -s 10 -d 7 -p ack -e 40 -c 0 -i 2848 -a 0 -x {10.0 9.0 1419 ------- null} h -t 1.62768 -s 10 -d 7 -p ack -e 40 -c 0 -i 2848 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.6277 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2843 -a 0 -x {9.0 10.0 1426 ------- null} + -t 1.6277 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2843 -a 0 -x {9.0 10.0 1426 ------- null} h -t 1.6277 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2843 -a 0 -x {9.0 10.0 1426 ------- null} r -t 1.62813 -s 0 -d 9 -p ack -e 40 -c 0 -i 2838 -a 0 -x {10.0 9.0 1414 ------- null} + -t 1.62813 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2849 -a 0 -x {9.0 10.0 1429 ------- null} - -t 1.62813 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2849 -a 0 -x {9.0 10.0 1429 ------- null} h -t 1.62813 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2849 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.62814 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2835 -a 0 -x {9.0 10.0 1422 ------- null} - -t 1.62814 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2835 -a 0 -x {9.0 10.0 1422 ------- null} h -t 1.62814 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2835 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.62829 -s 0 -d 9 -p ack -e 40 -c 0 -i 2842 -a 0 -x {10.0 9.0 1416 ------- null} - -t 1.62829 -s 0 -d 9 -p ack -e 40 -c 0 -i 2842 -a 0 -x {10.0 9.0 1416 ------- null} h -t 1.62829 -s 0 -d 9 -p ack -e 40 -c 0 -i 2842 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.62862 -s 10 -d 7 -p ack -e 40 -c 0 -i 2846 -a 0 -x {10.0 9.0 1418 ------- null} + -t 1.62862 -s 7 -d 0 -p ack -e 40 -c 0 -i 2846 -a 0 -x {10.0 9.0 1418 ------- null} h -t 1.62862 -s 7 -d 8 -p ack -e 40 -c 0 -i 2846 -a 0 -x {10.0 9.0 1418 ------- null} r -t 1.62877 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2831 -a 0 -x {9.0 10.0 1420 ------- null} + -t 1.62877 -s 10 -d 7 -p ack -e 40 -c 0 -i 2850 -a 0 -x {10.0 9.0 1420 ------- null} - -t 1.62877 -s 10 -d 7 -p ack -e 40 -c 0 -i 2850 -a 0 -x {10.0 9.0 1420 ------- null} h -t 1.62877 -s 10 -d 7 -p ack -e 40 -c 0 -i 2850 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.62888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2845 -a 0 -x {9.0 10.0 1427 ------- null} + -t 1.62888 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2845 -a 0 -x {9.0 10.0 1427 ------- null} h -t 1.62888 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2845 -a 0 -x {9.0 10.0 1427 ------- null} + -t 1.62923 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2837 -a 0 -x {9.0 10.0 1423 ------- null} - -t 1.62923 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2837 -a 0 -x {9.0 10.0 1423 ------- null} h -t 1.62923 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2837 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.6293 -s 0 -d 9 -p ack -e 40 -c 0 -i 2840 -a 0 -x {10.0 9.0 1415 ------- null} + -t 1.6293 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2851 -a 0 -x {9.0 10.0 1430 ------- null} - -t 1.6293 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2851 -a 0 -x {9.0 10.0 1430 ------- null} h -t 1.6293 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2851 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.62947 -s 0 -d 9 -p ack -e 40 -c 0 -i 2844 -a 0 -x {10.0 9.0 1417 ------- null} - -t 1.62947 -s 0 -d 9 -p ack -e 40 -c 0 -i 2844 -a 0 -x {10.0 9.0 1417 ------- null} h -t 1.62947 -s 0 -d 9 -p ack -e 40 -c 0 -i 2844 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.62971 -s 10 -d 7 -p ack -e 40 -c 0 -i 2848 -a 0 -x {10.0 9.0 1419 ------- null} + -t 1.62971 -s 7 -d 0 -p ack -e 40 -c 0 -i 2848 -a 0 -x {10.0 9.0 1419 ------- null} h -t 1.62971 -s 7 -d 8 -p ack -e 40 -c 0 -i 2848 -a 0 -x {10.0 9.0 1419 ------- null} r -t 1.62986 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2833 -a 0 -x {9.0 10.0 1421 ------- null} + -t 1.62986 -s 10 -d 7 -p ack -e 40 -c 0 -i 2852 -a 0 -x {10.0 9.0 1421 ------- null} - -t 1.62986 -s 10 -d 7 -p ack -e 40 -c 0 -i 2852 -a 0 -x {10.0 9.0 1421 ------- null} h -t 1.62986 -s 10 -d 7 -p ack -e 40 -c 0 -i 2852 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.62992 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2847 -a 0 -x {9.0 10.0 1428 ------- null} + -t 1.62992 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2847 -a 0 -x {9.0 10.0 1428 ------- null} h -t 1.62992 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2847 -a 0 -x {9.0 10.0 1428 ------- null} + -t 1.63032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2839 -a 0 -x {9.0 10.0 1424 ------- null} - -t 1.63032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2839 -a 0 -x {9.0 10.0 1424 ------- null} h -t 1.63032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2839 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.63032 -s 0 -d 9 -p ack -e 40 -c 0 -i 2842 -a 0 -x {10.0 9.0 1416 ------- null} + -t 1.63032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2853 -a 0 -x {9.0 10.0 1431 ------- null} - -t 1.63032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2853 -a 0 -x {9.0 10.0 1431 ------- null} h -t 1.63032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2853 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.6305 -s 0 -d 9 -p ack -e 40 -c 0 -i 2846 -a 0 -x {10.0 9.0 1418 ------- null} - -t 1.6305 -s 0 -d 9 -p ack -e 40 -c 0 -i 2846 -a 0 -x {10.0 9.0 1418 ------- null} h -t 1.6305 -s 0 -d 9 -p ack -e 40 -c 0 -i 2846 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.6308 -s 10 -d 7 -p ack -e 40 -c 0 -i 2850 -a 0 -x {10.0 9.0 1420 ------- null} + -t 1.6308 -s 7 -d 0 -p ack -e 40 -c 0 -i 2850 -a 0 -x {10.0 9.0 1420 ------- null} h -t 1.6308 -s 7 -d 8 -p ack -e 40 -c 0 -i 2850 -a 0 -x {10.0 9.0 1420 ------- null} r -t 1.63093 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2849 -a 0 -x {9.0 10.0 1429 ------- null} + -t 1.63093 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2849 -a 0 -x {9.0 10.0 1429 ------- null} h -t 1.63093 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2849 -a 0 -x {9.0 10.0 1429 ------- null} r -t 1.63094 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2835 -a 0 -x {9.0 10.0 1422 ------- null} + -t 1.63094 -s 10 -d 7 -p ack -e 40 -c 0 -i 2854 -a 0 -x {10.0 9.0 1422 ------- null} - -t 1.63094 -s 10 -d 7 -p ack -e 40 -c 0 -i 2854 -a 0 -x {10.0 9.0 1422 ------- null} h -t 1.63094 -s 10 -d 7 -p ack -e 40 -c 0 -i 2854 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.63141 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2841 -a 0 -x {9.0 10.0 1425 ------- null} - -t 1.63141 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2841 -a 0 -x {9.0 10.0 1425 ------- null} h -t 1.63141 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2841 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.6315 -s 0 -d 9 -p ack -e 40 -c 0 -i 2844 -a 0 -x {10.0 9.0 1417 ------- null} + -t 1.6315 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2855 -a 0 -x {9.0 10.0 1432 ------- null} - -t 1.6315 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2855 -a 0 -x {9.0 10.0 1432 ------- null} h -t 1.6315 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2855 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.6315 -s 0 -d 9 -p ack -e 40 -c 0 -i 2848 -a 0 -x {10.0 9.0 1419 ------- null} - -t 1.6315 -s 0 -d 9 -p ack -e 40 -c 0 -i 2848 -a 0 -x {10.0 9.0 1419 ------- null} h -t 1.6315 -s 0 -d 9 -p ack -e 40 -c 0 -i 2848 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.63189 -s 10 -d 7 -p ack -e 40 -c 0 -i 2852 -a 0 -x {10.0 9.0 1421 ------- null} + -t 1.63189 -s 7 -d 0 -p ack -e 40 -c 0 -i 2852 -a 0 -x {10.0 9.0 1421 ------- null} h -t 1.63189 -s 7 -d 8 -p ack -e 40 -c 0 -i 2852 -a 0 -x {10.0 9.0 1421 ------- null} r -t 1.63203 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2837 -a 0 -x {9.0 10.0 1423 ------- null} + -t 1.63203 -s 10 -d 7 -p ack -e 40 -c 0 -i 2856 -a 0 -x {10.0 9.0 1423 ------- null} - -t 1.63203 -s 10 -d 7 -p ack -e 40 -c 0 -i 2856 -a 0 -x {10.0 9.0 1423 ------- null} h -t 1.63203 -s 10 -d 7 -p ack -e 40 -c 0 -i 2856 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.6321 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2851 -a 0 -x {9.0 10.0 1430 ------- null} + -t 1.6321 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2851 -a 0 -x {9.0 10.0 1430 ------- null} h -t 1.6321 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2851 -a 0 -x {9.0 10.0 1430 ------- null} + -t 1.6325 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2843 -a 0 -x {9.0 10.0 1426 ------- null} - -t 1.6325 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2843 -a 0 -x {9.0 10.0 1426 ------- null} h -t 1.6325 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2843 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.63253 -s 0 -d 9 -p ack -e 40 -c 0 -i 2846 -a 0 -x {10.0 9.0 1418 ------- null} + -t 1.63253 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2857 -a 0 -x {9.0 10.0 1433 ------- null} - -t 1.63253 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2857 -a 0 -x {9.0 10.0 1433 ------- null} h -t 1.63253 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2857 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.63274 -s 0 -d 9 -p ack -e 40 -c 0 -i 2850 -a 0 -x {10.0 9.0 1420 ------- null} - -t 1.63274 -s 0 -d 9 -p ack -e 40 -c 0 -i 2850 -a 0 -x {10.0 9.0 1420 ------- null} h -t 1.63274 -s 0 -d 9 -p ack -e 40 -c 0 -i 2850 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.63298 -s 10 -d 7 -p ack -e 40 -c 0 -i 2854 -a 0 -x {10.0 9.0 1422 ------- null} + -t 1.63298 -s 7 -d 0 -p ack -e 40 -c 0 -i 2854 -a 0 -x {10.0 9.0 1422 ------- null} h -t 1.63298 -s 7 -d 8 -p ack -e 40 -c 0 -i 2854 -a 0 -x {10.0 9.0 1422 ------- null} r -t 1.63312 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2839 -a 0 -x {9.0 10.0 1424 ------- null} + -t 1.63312 -s 10 -d 7 -p ack -e 40 -c 0 -i 2858 -a 0 -x {10.0 9.0 1424 ------- null} - -t 1.63312 -s 10 -d 7 -p ack -e 40 -c 0 -i 2858 -a 0 -x {10.0 9.0 1424 ------- null} h -t 1.63312 -s 10 -d 7 -p ack -e 40 -c 0 -i 2858 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.63312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2853 -a 0 -x {9.0 10.0 1431 ------- null} + -t 1.63312 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2853 -a 0 -x {9.0 10.0 1431 ------- null} h -t 1.63312 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2853 -a 0 -x {9.0 10.0 1431 ------- null} r -t 1.63354 -s 0 -d 9 -p ack -e 40 -c 0 -i 2848 -a 0 -x {10.0 9.0 1419 ------- null} + -t 1.63354 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2859 -a 0 -x {9.0 10.0 1434 ------- null} - -t 1.63354 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2859 -a 0 -x {9.0 10.0 1434 ------- null} h -t 1.63354 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2859 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.63358 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2845 -a 0 -x {9.0 10.0 1427 ------- null} - -t 1.63358 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2845 -a 0 -x {9.0 10.0 1427 ------- null} h -t 1.63358 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2845 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.63389 -s 0 -d 9 -p ack -e 40 -c 0 -i 2852 -a 0 -x {10.0 9.0 1421 ------- null} - -t 1.63389 -s 0 -d 9 -p ack -e 40 -c 0 -i 2852 -a 0 -x {10.0 9.0 1421 ------- null} h -t 1.63389 -s 0 -d 9 -p ack -e 40 -c 0 -i 2852 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.63406 -s 10 -d 7 -p ack -e 40 -c 0 -i 2856 -a 0 -x {10.0 9.0 1423 ------- null} + -t 1.63406 -s 7 -d 0 -p ack -e 40 -c 0 -i 2856 -a 0 -x {10.0 9.0 1423 ------- null} h -t 1.63406 -s 7 -d 8 -p ack -e 40 -c 0 -i 2856 -a 0 -x {10.0 9.0 1423 ------- null} r -t 1.63421 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2841 -a 0 -x {9.0 10.0 1425 ------- null} + -t 1.63421 -s 10 -d 7 -p ack -e 40 -c 0 -i 2860 -a 0 -x {10.0 9.0 1425 ------- null} - -t 1.63421 -s 10 -d 7 -p ack -e 40 -c 0 -i 2860 -a 0 -x {10.0 9.0 1425 ------- null} h -t 1.63421 -s 10 -d 7 -p ack -e 40 -c 0 -i 2860 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.6343 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2855 -a 0 -x {9.0 10.0 1432 ------- null} + -t 1.6343 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2855 -a 0 -x {9.0 10.0 1432 ------- null} h -t 1.6343 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2855 -a 0 -x {9.0 10.0 1432 ------- null} + -t 1.63474 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2847 -a 0 -x {9.0 10.0 1428 ------- null} - -t 1.63474 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2847 -a 0 -x {9.0 10.0 1428 ------- null} h -t 1.63474 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2847 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.63477 -s 0 -d 9 -p ack -e 40 -c 0 -i 2850 -a 0 -x {10.0 9.0 1420 ------- null} + -t 1.63477 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2861 -a 0 -x {9.0 10.0 1435 ------- null} - -t 1.63477 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2861 -a 0 -x {9.0 10.0 1435 ------- null} h -t 1.63477 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2861 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.63494 -s 0 -d 9 -p ack -e 40 -c 0 -i 2854 -a 0 -x {10.0 9.0 1422 ------- null} - -t 1.63494 -s 0 -d 9 -p ack -e 40 -c 0 -i 2854 -a 0 -x {10.0 9.0 1422 ------- null} h -t 1.63494 -s 0 -d 9 -p ack -e 40 -c 0 -i 2854 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.63515 -s 10 -d 7 -p ack -e 40 -c 0 -i 2858 -a 0 -x {10.0 9.0 1424 ------- null} + -t 1.63515 -s 7 -d 0 -p ack -e 40 -c 0 -i 2858 -a 0 -x {10.0 9.0 1424 ------- null} h -t 1.63515 -s 7 -d 8 -p ack -e 40 -c 0 -i 2858 -a 0 -x {10.0 9.0 1424 ------- null} r -t 1.6353 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2843 -a 0 -x {9.0 10.0 1426 ------- null} + -t 1.6353 -s 10 -d 7 -p ack -e 40 -c 0 -i 2862 -a 0 -x {10.0 9.0 1426 ------- null} - -t 1.6353 -s 10 -d 7 -p ack -e 40 -c 0 -i 2862 -a 0 -x {10.0 9.0 1426 ------- null} h -t 1.6353 -s 10 -d 7 -p ack -e 40 -c 0 -i 2862 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.63533 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2857 -a 0 -x {9.0 10.0 1433 ------- null} + -t 1.63533 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2857 -a 0 -x {9.0 10.0 1433 ------- null} h -t 1.63533 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2857 -a 0 -x {9.0 10.0 1433 ------- null} + -t 1.63582 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2849 -a 0 -x {9.0 10.0 1429 ------- null} - -t 1.63582 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2849 -a 0 -x {9.0 10.0 1429 ------- null} h -t 1.63582 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2849 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.63592 -s 0 -d 9 -p ack -e 40 -c 0 -i 2852 -a 0 -x {10.0 9.0 1421 ------- null} + -t 1.63592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2863 -a 0 -x {9.0 10.0 1436 ------- null} - -t 1.63592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2863 -a 0 -x {9.0 10.0 1436 ------- null} h -t 1.63592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2863 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.63597 -s 0 -d 9 -p ack -e 40 -c 0 -i 2856 -a 0 -x {10.0 9.0 1423 ------- null} - -t 1.63597 -s 0 -d 9 -p ack -e 40 -c 0 -i 2856 -a 0 -x {10.0 9.0 1423 ------- null} h -t 1.63597 -s 0 -d 9 -p ack -e 40 -c 0 -i 2856 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.63624 -s 10 -d 7 -p ack -e 40 -c 0 -i 2860 -a 0 -x {10.0 9.0 1425 ------- null} + -t 1.63624 -s 7 -d 0 -p ack -e 40 -c 0 -i 2860 -a 0 -x {10.0 9.0 1425 ------- null} h -t 1.63624 -s 7 -d 8 -p ack -e 40 -c 0 -i 2860 -a 0 -x {10.0 9.0 1425 ------- null} r -t 1.63634 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2859 -a 0 -x {9.0 10.0 1434 ------- null} + -t 1.63634 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2859 -a 0 -x {9.0 10.0 1434 ------- null} h -t 1.63634 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2859 -a 0 -x {9.0 10.0 1434 ------- null} r -t 1.63638 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2845 -a 0 -x {9.0 10.0 1427 ------- null} + -t 1.63638 -s 10 -d 7 -p ack -e 40 -c 0 -i 2864 -a 0 -x {10.0 9.0 1427 ------- null} - -t 1.63638 -s 10 -d 7 -p ack -e 40 -c 0 -i 2864 -a 0 -x {10.0 9.0 1427 ------- null} h -t 1.63638 -s 10 -d 7 -p ack -e 40 -c 0 -i 2864 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.63691 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2851 -a 0 -x {9.0 10.0 1430 ------- null} - -t 1.63691 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2851 -a 0 -x {9.0 10.0 1430 ------- null} h -t 1.63691 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2851 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.63698 -s 0 -d 9 -p ack -e 40 -c 0 -i 2854 -a 0 -x {10.0 9.0 1422 ------- null} + -t 1.63698 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2865 -a 0 -x {9.0 10.0 1437 ------- null} - -t 1.63698 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2865 -a 0 -x {9.0 10.0 1437 ------- null} h -t 1.63698 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2865 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.63699 -s 0 -d 9 -p ack -e 40 -c 0 -i 2858 -a 0 -x {10.0 9.0 1424 ------- null} - -t 1.63699 -s 0 -d 9 -p ack -e 40 -c 0 -i 2858 -a 0 -x {10.0 9.0 1424 ------- null} h -t 1.63699 -s 0 -d 9 -p ack -e 40 -c 0 -i 2858 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.63733 -s 10 -d 7 -p ack -e 40 -c 0 -i 2862 -a 0 -x {10.0 9.0 1426 ------- null} + -t 1.63733 -s 7 -d 0 -p ack -e 40 -c 0 -i 2862 -a 0 -x {10.0 9.0 1426 ------- null} h -t 1.63733 -s 7 -d 8 -p ack -e 40 -c 0 -i 2862 -a 0 -x {10.0 9.0 1426 ------- null} r -t 1.63754 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2847 -a 0 -x {9.0 10.0 1428 ------- null} + -t 1.63754 -s 10 -d 7 -p ack -e 40 -c 0 -i 2866 -a 0 -x {10.0 9.0 1428 ------- null} - -t 1.63754 -s 10 -d 7 -p ack -e 40 -c 0 -i 2866 -a 0 -x {10.0 9.0 1428 ------- null} h -t 1.63754 -s 10 -d 7 -p ack -e 40 -c 0 -i 2866 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.63757 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2861 -a 0 -x {9.0 10.0 1435 ------- null} + -t 1.63757 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2861 -a 0 -x {9.0 10.0 1435 ------- null} h -t 1.63757 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2861 -a 0 -x {9.0 10.0 1435 ------- null} + -t 1.638 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2853 -a 0 -x {9.0 10.0 1431 ------- null} - -t 1.638 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2853 -a 0 -x {9.0 10.0 1431 ------- null} h -t 1.638 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2853 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.638 -s 0 -d 9 -p ack -e 40 -c 0 -i 2856 -a 0 -x {10.0 9.0 1423 ------- null} + -t 1.638 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2867 -a 0 -x {9.0 10.0 1438 ------- null} - -t 1.638 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2867 -a 0 -x {9.0 10.0 1438 ------- null} h -t 1.638 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2867 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.63814 -s 0 -d 9 -p ack -e 40 -c 0 -i 2860 -a 0 -x {10.0 9.0 1425 ------- null} - -t 1.63814 -s 0 -d 9 -p ack -e 40 -c 0 -i 2860 -a 0 -x {10.0 9.0 1425 ------- null} h -t 1.63814 -s 0 -d 9 -p ack -e 40 -c 0 -i 2860 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.63842 -s 10 -d 7 -p ack -e 40 -c 0 -i 2864 -a 0 -x {10.0 9.0 1427 ------- null} + -t 1.63842 -s 7 -d 0 -p ack -e 40 -c 0 -i 2864 -a 0 -x {10.0 9.0 1427 ------- null} h -t 1.63842 -s 7 -d 8 -p ack -e 40 -c 0 -i 2864 -a 0 -x {10.0 9.0 1427 ------- null} r -t 1.63862 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2849 -a 0 -x {9.0 10.0 1429 ------- null} + -t 1.63862 -s 10 -d 7 -p ack -e 40 -c 0 -i 2868 -a 0 -x {10.0 9.0 1429 ------- null} - -t 1.63862 -s 10 -d 7 -p ack -e 40 -c 0 -i 2868 -a 0 -x {10.0 9.0 1429 ------- null} h -t 1.63862 -s 10 -d 7 -p ack -e 40 -c 0 -i 2868 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.63872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2863 -a 0 -x {9.0 10.0 1436 ------- null} + -t 1.63872 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2863 -a 0 -x {9.0 10.0 1436 ------- null} h -t 1.63872 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2863 -a 0 -x {9.0 10.0 1436 ------- null} r -t 1.63902 -s 0 -d 9 -p ack -e 40 -c 0 -i 2858 -a 0 -x {10.0 9.0 1424 ------- null} + -t 1.63902 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2869 -a 0 -x {9.0 10.0 1439 ------- null} - -t 1.63902 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2869 -a 0 -x {9.0 10.0 1439 ------- null} h -t 1.63902 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2869 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.63909 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2855 -a 0 -x {9.0 10.0 1432 ------- null} - -t 1.63909 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2855 -a 0 -x {9.0 10.0 1432 ------- null} h -t 1.63909 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2855 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.63923 -s 0 -d 9 -p ack -e 40 -c 0 -i 2862 -a 0 -x {10.0 9.0 1426 ------- null} - -t 1.63923 -s 0 -d 9 -p ack -e 40 -c 0 -i 2862 -a 0 -x {10.0 9.0 1426 ------- null} h -t 1.63923 -s 0 -d 9 -p ack -e 40 -c 0 -i 2862 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.63957 -s 10 -d 7 -p ack -e 40 -c 0 -i 2866 -a 0 -x {10.0 9.0 1428 ------- null} + -t 1.63957 -s 7 -d 0 -p ack -e 40 -c 0 -i 2866 -a 0 -x {10.0 9.0 1428 ------- null} h -t 1.63957 -s 7 -d 8 -p ack -e 40 -c 0 -i 2866 -a 0 -x {10.0 9.0 1428 ------- null} r -t 1.63971 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2851 -a 0 -x {9.0 10.0 1430 ------- null} + -t 1.63971 -s 10 -d 7 -p ack -e 40 -c 0 -i 2870 -a 0 -x {10.0 9.0 1430 ------- null} - -t 1.63971 -s 10 -d 7 -p ack -e 40 -c 0 -i 2870 -a 0 -x {10.0 9.0 1430 ------- null} h -t 1.63971 -s 10 -d 7 -p ack -e 40 -c 0 -i 2870 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.63978 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2865 -a 0 -x {9.0 10.0 1437 ------- null} + -t 1.63978 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2865 -a 0 -x {9.0 10.0 1437 ------- null} h -t 1.63978 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2865 -a 0 -x {9.0 10.0 1437 ------- null} + -t 1.64018 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2857 -a 0 -x {9.0 10.0 1433 ------- null} - -t 1.64018 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2857 -a 0 -x {9.0 10.0 1433 ------- null} h -t 1.64018 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2857 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.64018 -s 0 -d 9 -p ack -e 40 -c 0 -i 2860 -a 0 -x {10.0 9.0 1425 ------- null} + -t 1.64018 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2871 -a 0 -x {9.0 10.0 1440 ------- null} - -t 1.64018 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2871 -a 0 -x {9.0 10.0 1440 ------- null} h -t 1.64018 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2871 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.64043 -s 0 -d 9 -p ack -e 40 -c 0 -i 2864 -a 0 -x {10.0 9.0 1427 ------- null} - -t 1.64043 -s 0 -d 9 -p ack -e 40 -c 0 -i 2864 -a 0 -x {10.0 9.0 1427 ------- null} h -t 1.64043 -s 0 -d 9 -p ack -e 40 -c 0 -i 2864 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.64066 -s 10 -d 7 -p ack -e 40 -c 0 -i 2868 -a 0 -x {10.0 9.0 1429 ------- null} + -t 1.64066 -s 7 -d 0 -p ack -e 40 -c 0 -i 2868 -a 0 -x {10.0 9.0 1429 ------- null} h -t 1.64066 -s 7 -d 8 -p ack -e 40 -c 0 -i 2868 -a 0 -x {10.0 9.0 1429 ------- null} r -t 1.6408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2853 -a 0 -x {9.0 10.0 1431 ------- null} + -t 1.6408 -s 10 -d 7 -p ack -e 40 -c 0 -i 2872 -a 0 -x {10.0 9.0 1431 ------- null} - -t 1.6408 -s 10 -d 7 -p ack -e 40 -c 0 -i 2872 -a 0 -x {10.0 9.0 1431 ------- null} h -t 1.6408 -s 10 -d 7 -p ack -e 40 -c 0 -i 2872 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.6408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2867 -a 0 -x {9.0 10.0 1438 ------- null} + -t 1.6408 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2867 -a 0 -x {9.0 10.0 1438 ------- null} h -t 1.6408 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2867 -a 0 -x {9.0 10.0 1438 ------- null} + -t 1.64126 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2859 -a 0 -x {9.0 10.0 1434 ------- null} - -t 1.64126 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2859 -a 0 -x {9.0 10.0 1434 ------- null} h -t 1.64126 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2859 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.64126 -s 0 -d 9 -p ack -e 40 -c 0 -i 2862 -a 0 -x {10.0 9.0 1426 ------- null} + -t 1.64126 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2873 -a 0 -x {9.0 10.0 1441 ------- null} - -t 1.64126 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2873 -a 0 -x {9.0 10.0 1441 ------- null} h -t 1.64126 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2873 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.64146 -s 0 -d 9 -p ack -e 40 -c 0 -i 2866 -a 0 -x {10.0 9.0 1428 ------- null} - -t 1.64146 -s 0 -d 9 -p ack -e 40 -c 0 -i 2866 -a 0 -x {10.0 9.0 1428 ------- null} h -t 1.64146 -s 0 -d 9 -p ack -e 40 -c 0 -i 2866 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.64174 -s 10 -d 7 -p ack -e 40 -c 0 -i 2870 -a 0 -x {10.0 9.0 1430 ------- null} + -t 1.64174 -s 7 -d 0 -p ack -e 40 -c 0 -i 2870 -a 0 -x {10.0 9.0 1430 ------- null} h -t 1.64174 -s 7 -d 8 -p ack -e 40 -c 0 -i 2870 -a 0 -x {10.0 9.0 1430 ------- null} r -t 1.64182 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2869 -a 0 -x {9.0 10.0 1439 ------- null} + -t 1.64182 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2869 -a 0 -x {9.0 10.0 1439 ------- null} h -t 1.64182 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2869 -a 0 -x {9.0 10.0 1439 ------- null} r -t 1.64189 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2855 -a 0 -x {9.0 10.0 1432 ------- null} + -t 1.64189 -s 10 -d 7 -p ack -e 40 -c 0 -i 2874 -a 0 -x {10.0 9.0 1432 ------- null} - -t 1.64189 -s 10 -d 7 -p ack -e 40 -c 0 -i 2874 -a 0 -x {10.0 9.0 1432 ------- null} h -t 1.64189 -s 10 -d 7 -p ack -e 40 -c 0 -i 2874 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.64235 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2861 -a 0 -x {9.0 10.0 1435 ------- null} - -t 1.64235 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2861 -a 0 -x {9.0 10.0 1435 ------- null} h -t 1.64235 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2861 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.64246 -s 0 -d 9 -p ack -e 40 -c 0 -i 2864 -a 0 -x {10.0 9.0 1427 ------- null} + -t 1.64246 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2875 -a 0 -x {9.0 10.0 1442 ------- null} - -t 1.64246 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2875 -a 0 -x {9.0 10.0 1442 ------- null} h -t 1.64246 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2875 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.64254 -s 0 -d 9 -p ack -e 40 -c 0 -i 2868 -a 0 -x {10.0 9.0 1429 ------- null} - -t 1.64254 -s 0 -d 9 -p ack -e 40 -c 0 -i 2868 -a 0 -x {10.0 9.0 1429 ------- null} h -t 1.64254 -s 0 -d 9 -p ack -e 40 -c 0 -i 2868 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.64283 -s 10 -d 7 -p ack -e 40 -c 0 -i 2872 -a 0 -x {10.0 9.0 1431 ------- null} + -t 1.64283 -s 7 -d 0 -p ack -e 40 -c 0 -i 2872 -a 0 -x {10.0 9.0 1431 ------- null} h -t 1.64283 -s 7 -d 8 -p ack -e 40 -c 0 -i 2872 -a 0 -x {10.0 9.0 1431 ------- null} r -t 1.64298 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2857 -a 0 -x {9.0 10.0 1433 ------- null} + -t 1.64298 -s 10 -d 7 -p ack -e 40 -c 0 -i 2876 -a 0 -x {10.0 9.0 1433 ------- null} - -t 1.64298 -s 10 -d 7 -p ack -e 40 -c 0 -i 2876 -a 0 -x {10.0 9.0 1433 ------- null} h -t 1.64298 -s 10 -d 7 -p ack -e 40 -c 0 -i 2876 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.64298 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2871 -a 0 -x {9.0 10.0 1440 ------- null} + -t 1.64298 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2871 -a 0 -x {9.0 10.0 1440 ------- null} h -t 1.64298 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2871 -a 0 -x {9.0 10.0 1440 ------- null} + -t 1.64344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2863 -a 0 -x {9.0 10.0 1436 ------- null} - -t 1.64344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2863 -a 0 -x {9.0 10.0 1436 ------- null} h -t 1.64344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2863 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.64349 -s 0 -d 9 -p ack -e 40 -c 0 -i 2866 -a 0 -x {10.0 9.0 1428 ------- null} + -t 1.64349 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2877 -a 0 -x {9.0 10.0 1443 ------- null} - -t 1.64349 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2877 -a 0 -x {9.0 10.0 1443 ------- null} h -t 1.64349 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2877 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.64355 -s 0 -d 9 -p ack -e 40 -c 0 -i 2870 -a 0 -x {10.0 9.0 1430 ------- null} - -t 1.64355 -s 0 -d 9 -p ack -e 40 -c 0 -i 2870 -a 0 -x {10.0 9.0 1430 ------- null} h -t 1.64355 -s 0 -d 9 -p ack -e 40 -c 0 -i 2870 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.64392 -s 10 -d 7 -p ack -e 40 -c 0 -i 2874 -a 0 -x {10.0 9.0 1432 ------- null} + -t 1.64392 -s 7 -d 0 -p ack -e 40 -c 0 -i 2874 -a 0 -x {10.0 9.0 1432 ------- null} h -t 1.64392 -s 7 -d 8 -p ack -e 40 -c 0 -i 2874 -a 0 -x {10.0 9.0 1432 ------- null} r -t 1.64406 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2859 -a 0 -x {9.0 10.0 1434 ------- null} + -t 1.64406 -s 10 -d 7 -p ack -e 40 -c 0 -i 2878 -a 0 -x {10.0 9.0 1434 ------- null} - -t 1.64406 -s 10 -d 7 -p ack -e 40 -c 0 -i 2878 -a 0 -x {10.0 9.0 1434 ------- null} h -t 1.64406 -s 10 -d 7 -p ack -e 40 -c 0 -i 2878 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.64406 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2873 -a 0 -x {9.0 10.0 1441 ------- null} + -t 1.64406 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2873 -a 0 -x {9.0 10.0 1441 ------- null} h -t 1.64406 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2873 -a 0 -x {9.0 10.0 1441 ------- null} + -t 1.64453 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2865 -a 0 -x {9.0 10.0 1437 ------- null} - -t 1.64453 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2865 -a 0 -x {9.0 10.0 1437 ------- null} h -t 1.64453 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2865 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.64458 -s 0 -d 9 -p ack -e 40 -c 0 -i 2868 -a 0 -x {10.0 9.0 1429 ------- null} + -t 1.64458 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2879 -a 0 -x {9.0 10.0 1444 ------- null} - -t 1.64458 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2879 -a 0 -x {9.0 10.0 1444 ------- null} h -t 1.64458 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2879 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.64477 -s 0 -d 9 -p ack -e 40 -c 0 -i 2872 -a 0 -x {10.0 9.0 1431 ------- null} - -t 1.64477 -s 0 -d 9 -p ack -e 40 -c 0 -i 2872 -a 0 -x {10.0 9.0 1431 ------- null} h -t 1.64477 -s 0 -d 9 -p ack -e 40 -c 0 -i 2872 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.64501 -s 10 -d 7 -p ack -e 40 -c 0 -i 2876 -a 0 -x {10.0 9.0 1433 ------- null} + -t 1.64501 -s 7 -d 0 -p ack -e 40 -c 0 -i 2876 -a 0 -x {10.0 9.0 1433 ------- null} h -t 1.64501 -s 7 -d 8 -p ack -e 40 -c 0 -i 2876 -a 0 -x {10.0 9.0 1433 ------- null} r -t 1.64515 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2861 -a 0 -x {9.0 10.0 1435 ------- null} + -t 1.64515 -s 10 -d 7 -p ack -e 40 -c 0 -i 2880 -a 0 -x {10.0 9.0 1435 ------- null} - -t 1.64515 -s 10 -d 7 -p ack -e 40 -c 0 -i 2880 -a 0 -x {10.0 9.0 1435 ------- null} h -t 1.64515 -s 10 -d 7 -p ack -e 40 -c 0 -i 2880 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.64526 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2875 -a 0 -x {9.0 10.0 1442 ------- null} + -t 1.64526 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2875 -a 0 -x {9.0 10.0 1442 ------- null} h -t 1.64526 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2875 -a 0 -x {9.0 10.0 1442 ------- null} r -t 1.64558 -s 0 -d 9 -p ack -e 40 -c 0 -i 2870 -a 0 -x {10.0 9.0 1430 ------- null} + -t 1.64558 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2881 -a 0 -x {9.0 10.0 1445 ------- null} - -t 1.64558 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2881 -a 0 -x {9.0 10.0 1445 ------- null} h -t 1.64558 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2881 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.64562 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2867 -a 0 -x {9.0 10.0 1438 ------- null} - -t 1.64562 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2867 -a 0 -x {9.0 10.0 1438 ------- null} h -t 1.64562 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2867 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.64581 -s 0 -d 9 -p ack -e 40 -c 0 -i 2874 -a 0 -x {10.0 9.0 1432 ------- null} - -t 1.64581 -s 0 -d 9 -p ack -e 40 -c 0 -i 2874 -a 0 -x {10.0 9.0 1432 ------- null} h -t 1.64581 -s 0 -d 9 -p ack -e 40 -c 0 -i 2874 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.6461 -s 10 -d 7 -p ack -e 40 -c 0 -i 2878 -a 0 -x {10.0 9.0 1434 ------- null} + -t 1.6461 -s 7 -d 0 -p ack -e 40 -c 0 -i 2878 -a 0 -x {10.0 9.0 1434 ------- null} h -t 1.6461 -s 7 -d 8 -p ack -e 40 -c 0 -i 2878 -a 0 -x {10.0 9.0 1434 ------- null} r -t 1.64624 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2863 -a 0 -x {9.0 10.0 1436 ------- null} + -t 1.64624 -s 10 -d 7 -p ack -e 40 -c 0 -i 2882 -a 0 -x {10.0 9.0 1436 ------- null} - -t 1.64624 -s 10 -d 7 -p ack -e 40 -c 0 -i 2882 -a 0 -x {10.0 9.0 1436 ------- null} h -t 1.64624 -s 10 -d 7 -p ack -e 40 -c 0 -i 2882 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.64629 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2877 -a 0 -x {9.0 10.0 1443 ------- null} + -t 1.64629 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2877 -a 0 -x {9.0 10.0 1443 ------- null} h -t 1.64629 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2877 -a 0 -x {9.0 10.0 1443 ------- null} + -t 1.6467 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2869 -a 0 -x {9.0 10.0 1439 ------- null} - -t 1.6467 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2869 -a 0 -x {9.0 10.0 1439 ------- null} h -t 1.6467 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2869 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.6468 -s 0 -d 9 -p ack -e 40 -c 0 -i 2872 -a 0 -x {10.0 9.0 1431 ------- null} + -t 1.6468 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2883 -a 0 -x {9.0 10.0 1446 ------- null} - -t 1.6468 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2883 -a 0 -x {9.0 10.0 1446 ------- null} h -t 1.6468 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2883 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.64683 -s 0 -d 9 -p ack -e 40 -c 0 -i 2876 -a 0 -x {10.0 9.0 1433 ------- null} - -t 1.64683 -s 0 -d 9 -p ack -e 40 -c 0 -i 2876 -a 0 -x {10.0 9.0 1433 ------- null} h -t 1.64683 -s 0 -d 9 -p ack -e 40 -c 0 -i 2876 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.64718 -s 10 -d 7 -p ack -e 40 -c 0 -i 2880 -a 0 -x {10.0 9.0 1435 ------- null} + -t 1.64718 -s 7 -d 0 -p ack -e 40 -c 0 -i 2880 -a 0 -x {10.0 9.0 1435 ------- null} h -t 1.64718 -s 7 -d 8 -p ack -e 40 -c 0 -i 2880 -a 0 -x {10.0 9.0 1435 ------- null} r -t 1.64733 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2865 -a 0 -x {9.0 10.0 1437 ------- null} + -t 1.64733 -s 10 -d 7 -p ack -e 40 -c 0 -i 2884 -a 0 -x {10.0 9.0 1437 ------- null} - -t 1.64733 -s 10 -d 7 -p ack -e 40 -c 0 -i 2884 -a 0 -x {10.0 9.0 1437 ------- null} h -t 1.64733 -s 10 -d 7 -p ack -e 40 -c 0 -i 2884 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.64738 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2879 -a 0 -x {9.0 10.0 1444 ------- null} + -t 1.64738 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2879 -a 0 -x {9.0 10.0 1444 ------- null} h -t 1.64738 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2879 -a 0 -x {9.0 10.0 1444 ------- null} + -t 1.64779 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2871 -a 0 -x {9.0 10.0 1440 ------- null} - -t 1.64779 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2871 -a 0 -x {9.0 10.0 1440 ------- null} h -t 1.64779 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2871 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.64784 -s 0 -d 9 -p ack -e 40 -c 0 -i 2874 -a 0 -x {10.0 9.0 1432 ------- null} + -t 1.64784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2885 -a 0 -x {9.0 10.0 1447 ------- null} - -t 1.64784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2885 -a 0 -x {9.0 10.0 1447 ------- null} h -t 1.64784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2885 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.6479 -s 0 -d 9 -p ack -e 40 -c 0 -i 2878 -a 0 -x {10.0 9.0 1434 ------- null} - -t 1.6479 -s 0 -d 9 -p ack -e 40 -c 0 -i 2878 -a 0 -x {10.0 9.0 1434 ------- null} h -t 1.6479 -s 0 -d 9 -p ack -e 40 -c 0 -i 2878 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.64827 -s 10 -d 7 -p ack -e 40 -c 0 -i 2882 -a 0 -x {10.0 9.0 1436 ------- null} + -t 1.64827 -s 7 -d 0 -p ack -e 40 -c 0 -i 2882 -a 0 -x {10.0 9.0 1436 ------- null} h -t 1.64827 -s 7 -d 8 -p ack -e 40 -c 0 -i 2882 -a 0 -x {10.0 9.0 1436 ------- null} r -t 1.64838 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2881 -a 0 -x {9.0 10.0 1445 ------- null} + -t 1.64838 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2881 -a 0 -x {9.0 10.0 1445 ------- null} h -t 1.64838 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2881 -a 0 -x {9.0 10.0 1445 ------- null} r -t 1.64842 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2867 -a 0 -x {9.0 10.0 1438 ------- null} + -t 1.64842 -s 10 -d 7 -p ack -e 40 -c 0 -i 2886 -a 0 -x {10.0 9.0 1438 ------- null} - -t 1.64842 -s 10 -d 7 -p ack -e 40 -c 0 -i 2886 -a 0 -x {10.0 9.0 1438 ------- null} h -t 1.64842 -s 10 -d 7 -p ack -e 40 -c 0 -i 2886 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.64886 -s 0 -d 9 -p ack -e 40 -c 0 -i 2876 -a 0 -x {10.0 9.0 1433 ------- null} + -t 1.64886 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2887 -a 0 -x {9.0 10.0 1448 ------- null} - -t 1.64886 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2887 -a 0 -x {9.0 10.0 1448 ------- null} h -t 1.64886 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2887 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.64888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2873 -a 0 -x {9.0 10.0 1441 ------- null} - -t 1.64888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2873 -a 0 -x {9.0 10.0 1441 ------- null} h -t 1.64888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2873 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.64904 -s 0 -d 9 -p ack -e 40 -c 0 -i 2880 -a 0 -x {10.0 9.0 1435 ------- null} - -t 1.64904 -s 0 -d 9 -p ack -e 40 -c 0 -i 2880 -a 0 -x {10.0 9.0 1435 ------- null} h -t 1.64904 -s 0 -d 9 -p ack -e 40 -c 0 -i 2880 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.64936 -s 10 -d 7 -p ack -e 40 -c 0 -i 2884 -a 0 -x {10.0 9.0 1437 ------- null} + -t 1.64936 -s 7 -d 0 -p ack -e 40 -c 0 -i 2884 -a 0 -x {10.0 9.0 1437 ------- null} h -t 1.64936 -s 7 -d 8 -p ack -e 40 -c 0 -i 2884 -a 0 -x {10.0 9.0 1437 ------- null} r -t 1.6495 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2869 -a 0 -x {9.0 10.0 1439 ------- null} + -t 1.6495 -s 10 -d 7 -p ack -e 40 -c 0 -i 2888 -a 0 -x {10.0 9.0 1439 ------- null} - -t 1.6495 -s 10 -d 7 -p ack -e 40 -c 0 -i 2888 -a 0 -x {10.0 9.0 1439 ------- null} h -t 1.6495 -s 10 -d 7 -p ack -e 40 -c 0 -i 2888 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.6496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2883 -a 0 -x {9.0 10.0 1446 ------- null} + -t 1.6496 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2883 -a 0 -x {9.0 10.0 1446 ------- null} h -t 1.6496 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2883 -a 0 -x {9.0 10.0 1446 ------- null} r -t 1.64994 -s 0 -d 9 -p ack -e 40 -c 0 -i 2878 -a 0 -x {10.0 9.0 1434 ------- null} + -t 1.64994 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2889 -a 0 -x {9.0 10.0 1449 ------- null} - -t 1.64994 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2889 -a 0 -x {9.0 10.0 1449 ------- null} h -t 1.64994 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2889 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.64997 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2875 -a 0 -x {9.0 10.0 1442 ------- null} - -t 1.64997 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2875 -a 0 -x {9.0 10.0 1442 ------- null} h -t 1.64997 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2875 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.65019 -s 0 -d 9 -p ack -e 40 -c 0 -i 2882 -a 0 -x {10.0 9.0 1436 ------- null} - -t 1.65019 -s 0 -d 9 -p ack -e 40 -c 0 -i 2882 -a 0 -x {10.0 9.0 1436 ------- null} h -t 1.65019 -s 0 -d 9 -p ack -e 40 -c 0 -i 2882 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.65045 -s 10 -d 7 -p ack -e 40 -c 0 -i 2886 -a 0 -x {10.0 9.0 1438 ------- null} + -t 1.65045 -s 7 -d 0 -p ack -e 40 -c 0 -i 2886 -a 0 -x {10.0 9.0 1438 ------- null} h -t 1.65045 -s 7 -d 8 -p ack -e 40 -c 0 -i 2886 -a 0 -x {10.0 9.0 1438 ------- null} r -t 1.65059 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2871 -a 0 -x {9.0 10.0 1440 ------- null} + -t 1.65059 -s 10 -d 7 -p ack -e 40 -c 0 -i 2890 -a 0 -x {10.0 9.0 1440 ------- null} - -t 1.65059 -s 10 -d 7 -p ack -e 40 -c 0 -i 2890 -a 0 -x {10.0 9.0 1440 ------- null} h -t 1.65059 -s 10 -d 7 -p ack -e 40 -c 0 -i 2890 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.65064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2885 -a 0 -x {9.0 10.0 1447 ------- null} + -t 1.65064 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2885 -a 0 -x {9.0 10.0 1447 ------- null} h -t 1.65064 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2885 -a 0 -x {9.0 10.0 1447 ------- null} + -t 1.65106 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2877 -a 0 -x {9.0 10.0 1443 ------- null} - -t 1.65106 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2877 -a 0 -x {9.0 10.0 1443 ------- null} h -t 1.65106 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2877 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.65107 -s 0 -d 9 -p ack -e 40 -c 0 -i 2880 -a 0 -x {10.0 9.0 1435 ------- null} + -t 1.65107 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2891 -a 0 -x {9.0 10.0 1450 ------- null} - -t 1.65107 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2891 -a 0 -x {9.0 10.0 1450 ------- null} h -t 1.65107 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2891 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.65133 -s 0 -d 9 -p ack -e 40 -c 0 -i 2884 -a 0 -x {10.0 9.0 1437 ------- null} - -t 1.65133 -s 0 -d 9 -p ack -e 40 -c 0 -i 2884 -a 0 -x {10.0 9.0 1437 ------- null} h -t 1.65133 -s 0 -d 9 -p ack -e 40 -c 0 -i 2884 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.65154 -s 10 -d 7 -p ack -e 40 -c 0 -i 2888 -a 0 -x {10.0 9.0 1439 ------- null} + -t 1.65154 -s 7 -d 0 -p ack -e 40 -c 0 -i 2888 -a 0 -x {10.0 9.0 1439 ------- null} h -t 1.65154 -s 7 -d 8 -p ack -e 40 -c 0 -i 2888 -a 0 -x {10.0 9.0 1439 ------- null} r -t 1.65166 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2887 -a 0 -x {9.0 10.0 1448 ------- null} + -t 1.65166 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2887 -a 0 -x {9.0 10.0 1448 ------- null} h -t 1.65166 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2887 -a 0 -x {9.0 10.0 1448 ------- null} r -t 1.65168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2873 -a 0 -x {9.0 10.0 1441 ------- null} + -t 1.65168 -s 10 -d 7 -p ack -e 40 -c 0 -i 2892 -a 0 -x {10.0 9.0 1441 ------- null} - -t 1.65168 -s 10 -d 7 -p ack -e 40 -c 0 -i 2892 -a 0 -x {10.0 9.0 1441 ------- null} h -t 1.65168 -s 10 -d 7 -p ack -e 40 -c 0 -i 2892 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.65222 -s 0 -d 9 -p ack -e 40 -c 0 -i 2882 -a 0 -x {10.0 9.0 1436 ------- null} + -t 1.65222 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2893 -a 0 -x {9.0 10.0 1451 ------- null} - -t 1.65222 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2893 -a 0 -x {9.0 10.0 1451 ------- null} h -t 1.65222 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2893 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.65227 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2879 -a 0 -x {9.0 10.0 1444 ------- null} - -t 1.65227 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2879 -a 0 -x {9.0 10.0 1444 ------- null} h -t 1.65227 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2879 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.65235 -s 0 -d 9 -p ack -e 40 -c 0 -i 2886 -a 0 -x {10.0 9.0 1438 ------- null} - -t 1.65235 -s 0 -d 9 -p ack -e 40 -c 0 -i 2886 -a 0 -x {10.0 9.0 1438 ------- null} h -t 1.65235 -s 0 -d 9 -p ack -e 40 -c 0 -i 2886 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.65262 -s 10 -d 7 -p ack -e 40 -c 0 -i 2890 -a 0 -x {10.0 9.0 1440 ------- null} + -t 1.65262 -s 7 -d 0 -p ack -e 40 -c 0 -i 2890 -a 0 -x {10.0 9.0 1440 ------- null} h -t 1.65262 -s 7 -d 8 -p ack -e 40 -c 0 -i 2890 -a 0 -x {10.0 9.0 1440 ------- null} r -t 1.65274 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2889 -a 0 -x {9.0 10.0 1449 ------- null} + -t 1.65274 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2889 -a 0 -x {9.0 10.0 1449 ------- null} h -t 1.65274 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2889 -a 0 -x {9.0 10.0 1449 ------- null} r -t 1.65277 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2875 -a 0 -x {9.0 10.0 1442 ------- null} + -t 1.65277 -s 10 -d 7 -p ack -e 40 -c 0 -i 2894 -a 0 -x {10.0 9.0 1442 ------- null} - -t 1.65277 -s 10 -d 7 -p ack -e 40 -c 0 -i 2894 -a 0 -x {10.0 9.0 1442 ------- null} h -t 1.65277 -s 10 -d 7 -p ack -e 40 -c 0 -i 2894 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.65336 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2881 -a 0 -x {9.0 10.0 1445 ------- null} - -t 1.65336 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2881 -a 0 -x {9.0 10.0 1445 ------- null} h -t 1.65336 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2881 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.65336 -s 0 -d 9 -p ack -e 40 -c 0 -i 2884 -a 0 -x {10.0 9.0 1437 ------- null} + -t 1.65336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2895 -a 0 -x {9.0 10.0 1452 ------- null} - -t 1.65336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2895 -a 0 -x {9.0 10.0 1452 ------- null} h -t 1.65336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2895 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.65344 -s 0 -d 9 -p ack -e 40 -c 0 -i 2888 -a 0 -x {10.0 9.0 1439 ------- null} - -t 1.65344 -s 0 -d 9 -p ack -e 40 -c 0 -i 2888 -a 0 -x {10.0 9.0 1439 ------- null} h -t 1.65344 -s 0 -d 9 -p ack -e 40 -c 0 -i 2888 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.65371 -s 10 -d 7 -p ack -e 40 -c 0 -i 2892 -a 0 -x {10.0 9.0 1441 ------- null} + -t 1.65371 -s 7 -d 0 -p ack -e 40 -c 0 -i 2892 -a 0 -x {10.0 9.0 1441 ------- null} h -t 1.65371 -s 7 -d 8 -p ack -e 40 -c 0 -i 2892 -a 0 -x {10.0 9.0 1441 ------- null} r -t 1.65386 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2877 -a 0 -x {9.0 10.0 1443 ------- null} + -t 1.65386 -s 10 -d 7 -p ack -e 40 -c 0 -i 2896 -a 0 -x {10.0 9.0 1443 ------- null} - -t 1.65386 -s 10 -d 7 -p ack -e 40 -c 0 -i 2896 -a 0 -x {10.0 9.0 1443 ------- null} h -t 1.65386 -s 10 -d 7 -p ack -e 40 -c 0 -i 2896 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.65387 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2891 -a 0 -x {9.0 10.0 1450 ------- null} + -t 1.65387 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2891 -a 0 -x {9.0 10.0 1450 ------- null} h -t 1.65387 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2891 -a 0 -x {9.0 10.0 1450 ------- null} r -t 1.65438 -s 0 -d 9 -p ack -e 40 -c 0 -i 2886 -a 0 -x {10.0 9.0 1438 ------- null} + -t 1.65438 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2897 -a 0 -x {9.0 10.0 1453 ------- null} - -t 1.65438 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2897 -a 0 -x {9.0 10.0 1453 ------- null} h -t 1.65438 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2897 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.65445 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2883 -a 0 -x {9.0 10.0 1446 ------- null} - -t 1.65445 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2883 -a 0 -x {9.0 10.0 1446 ------- null} h -t 1.65445 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2883 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.65453 -s 0 -d 9 -p ack -e 40 -c 0 -i 2890 -a 0 -x {10.0 9.0 1440 ------- null} - -t 1.65453 -s 0 -d 9 -p ack -e 40 -c 0 -i 2890 -a 0 -x {10.0 9.0 1440 ------- null} h -t 1.65453 -s 0 -d 9 -p ack -e 40 -c 0 -i 2890 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.6548 -s 10 -d 7 -p ack -e 40 -c 0 -i 2894 -a 0 -x {10.0 9.0 1442 ------- null} + -t 1.6548 -s 7 -d 0 -p ack -e 40 -c 0 -i 2894 -a 0 -x {10.0 9.0 1442 ------- null} h -t 1.6548 -s 7 -d 8 -p ack -e 40 -c 0 -i 2894 -a 0 -x {10.0 9.0 1442 ------- null} r -t 1.65502 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2893 -a 0 -x {9.0 10.0 1451 ------- null} + -t 1.65502 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2893 -a 0 -x {9.0 10.0 1451 ------- null} h -t 1.65502 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2893 -a 0 -x {9.0 10.0 1451 ------- null} r -t 1.65507 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2879 -a 0 -x {9.0 10.0 1444 ------- null} + -t 1.65507 -s 10 -d 7 -p ack -e 40 -c 0 -i 2898 -a 0 -x {10.0 9.0 1444 ------- null} - -t 1.65507 -s 10 -d 7 -p ack -e 40 -c 0 -i 2898 -a 0 -x {10.0 9.0 1444 ------- null} h -t 1.65507 -s 10 -d 7 -p ack -e 40 -c 0 -i 2898 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.65547 -s 0 -d 9 -p ack -e 40 -c 0 -i 2888 -a 0 -x {10.0 9.0 1439 ------- null} + -t 1.65547 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2899 -a 0 -x {9.0 10.0 1454 ------- null} - -t 1.65547 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2899 -a 0 -x {9.0 10.0 1454 ------- null} h -t 1.65547 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2899 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.65554 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2885 -a 0 -x {9.0 10.0 1447 ------- null} - -t 1.65554 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2885 -a 0 -x {9.0 10.0 1447 ------- null} h -t 1.65554 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2885 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.65584 -s 0 -d 9 -p ack -e 40 -c 0 -i 2892 -a 0 -x {10.0 9.0 1441 ------- null} - -t 1.65584 -s 0 -d 9 -p ack -e 40 -c 0 -i 2892 -a 0 -x {10.0 9.0 1441 ------- null} h -t 1.65584 -s 0 -d 9 -p ack -e 40 -c 0 -i 2892 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.65589 -s 10 -d 7 -p ack -e 40 -c 0 -i 2896 -a 0 -x {10.0 9.0 1443 ------- null} + -t 1.65589 -s 7 -d 0 -p ack -e 40 -c 0 -i 2896 -a 0 -x {10.0 9.0 1443 ------- null} h -t 1.65589 -s 7 -d 8 -p ack -e 40 -c 0 -i 2896 -a 0 -x {10.0 9.0 1443 ------- null} r -t 1.65616 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2881 -a 0 -x {9.0 10.0 1445 ------- null} + -t 1.65616 -s 10 -d 7 -p ack -e 40 -c 0 -i 2900 -a 0 -x {10.0 9.0 1445 ------- null} - -t 1.65616 -s 10 -d 7 -p ack -e 40 -c 0 -i 2900 -a 0 -x {10.0 9.0 1445 ------- null} h -t 1.65616 -s 10 -d 7 -p ack -e 40 -c 0 -i 2900 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.65616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2895 -a 0 -x {9.0 10.0 1452 ------- null} + -t 1.65616 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2895 -a 0 -x {9.0 10.0 1452 ------- null} h -t 1.65616 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2895 -a 0 -x {9.0 10.0 1452 ------- null} r -t 1.65656 -s 0 -d 9 -p ack -e 40 -c 0 -i 2890 -a 0 -x {10.0 9.0 1440 ------- null} + -t 1.65656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2901 -a 0 -x {9.0 10.0 1455 ------- null} - -t 1.65656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2901 -a 0 -x {9.0 10.0 1455 ------- null} h -t 1.65656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2901 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.65674 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2887 -a 0 -x {9.0 10.0 1448 ------- null} - -t 1.65674 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2887 -a 0 -x {9.0 10.0 1448 ------- null} h -t 1.65674 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2887 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.65698 -s 0 -d 9 -p ack -e 40 -c 0 -i 2894 -a 0 -x {10.0 9.0 1442 ------- null} - -t 1.65698 -s 0 -d 9 -p ack -e 40 -c 0 -i 2894 -a 0 -x {10.0 9.0 1442 ------- null} h -t 1.65698 -s 0 -d 9 -p ack -e 40 -c 0 -i 2894 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.6571 -s 10 -d 7 -p ack -e 40 -c 0 -i 2898 -a 0 -x {10.0 9.0 1444 ------- null} + -t 1.6571 -s 7 -d 0 -p ack -e 40 -c 0 -i 2898 -a 0 -x {10.0 9.0 1444 ------- null} h -t 1.6571 -s 7 -d 8 -p ack -e 40 -c 0 -i 2898 -a 0 -x {10.0 9.0 1444 ------- null} r -t 1.65718 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2897 -a 0 -x {9.0 10.0 1453 ------- null} + -t 1.65718 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2897 -a 0 -x {9.0 10.0 1453 ------- null} h -t 1.65718 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2897 -a 0 -x {9.0 10.0 1453 ------- null} r -t 1.65725 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2883 -a 0 -x {9.0 10.0 1446 ------- null} + -t 1.65725 -s 10 -d 7 -p ack -e 40 -c 0 -i 2902 -a 0 -x {10.0 9.0 1446 ------- null} - -t 1.65725 -s 10 -d 7 -p ack -e 40 -c 0 -i 2902 -a 0 -x {10.0 9.0 1446 ------- null} h -t 1.65725 -s 10 -d 7 -p ack -e 40 -c 0 -i 2902 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.65782 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2889 -a 0 -x {9.0 10.0 1449 ------- null} - -t 1.65782 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2889 -a 0 -x {9.0 10.0 1449 ------- null} h -t 1.65782 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2889 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.65787 -s 0 -d 9 -p ack -e 40 -c 0 -i 2892 -a 0 -x {10.0 9.0 1441 ------- null} + -t 1.65787 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2903 -a 0 -x {9.0 10.0 1456 ------- null} - -t 1.65787 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2903 -a 0 -x {9.0 10.0 1456 ------- null} h -t 1.65787 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2903 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.65802 -s 0 -d 9 -p ack -e 40 -c 0 -i 2896 -a 0 -x {10.0 9.0 1443 ------- null} - -t 1.65802 -s 0 -d 9 -p ack -e 40 -c 0 -i 2896 -a 0 -x {10.0 9.0 1443 ------- null} h -t 1.65802 -s 0 -d 9 -p ack -e 40 -c 0 -i 2896 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.65819 -s 10 -d 7 -p ack -e 40 -c 0 -i 2900 -a 0 -x {10.0 9.0 1445 ------- null} + -t 1.65819 -s 7 -d 0 -p ack -e 40 -c 0 -i 2900 -a 0 -x {10.0 9.0 1445 ------- null} h -t 1.65819 -s 7 -d 8 -p ack -e 40 -c 0 -i 2900 -a 0 -x {10.0 9.0 1445 ------- null} r -t 1.65827 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2899 -a 0 -x {9.0 10.0 1454 ------- null} + -t 1.65827 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2899 -a 0 -x {9.0 10.0 1454 ------- null} h -t 1.65827 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2899 -a 0 -x {9.0 10.0 1454 ------- null} r -t 1.65834 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2885 -a 0 -x {9.0 10.0 1447 ------- null} + -t 1.65834 -s 10 -d 7 -p ack -e 40 -c 0 -i 2904 -a 0 -x {10.0 9.0 1447 ------- null} - -t 1.65834 -s 10 -d 7 -p ack -e 40 -c 0 -i 2904 -a 0 -x {10.0 9.0 1447 ------- null} h -t 1.65834 -s 10 -d 7 -p ack -e 40 -c 0 -i 2904 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.65891 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2891 -a 0 -x {9.0 10.0 1450 ------- null} - -t 1.65891 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2891 -a 0 -x {9.0 10.0 1450 ------- null} h -t 1.65891 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2891 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.65901 -s 0 -d 9 -p ack -e 40 -c 0 -i 2894 -a 0 -x {10.0 9.0 1442 ------- null} + -t 1.65901 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2905 -a 0 -x {9.0 10.0 1457 ------- null} - -t 1.65901 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2905 -a 0 -x {9.0 10.0 1457 ------- null} h -t 1.65901 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2905 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.65904 -s 0 -d 9 -p ack -e 40 -c 0 -i 2898 -a 0 -x {10.0 9.0 1444 ------- null} - -t 1.65904 -s 0 -d 9 -p ack -e 40 -c 0 -i 2898 -a 0 -x {10.0 9.0 1444 ------- null} h -t 1.65904 -s 0 -d 9 -p ack -e 40 -c 0 -i 2898 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.65928 -s 10 -d 7 -p ack -e 40 -c 0 -i 2902 -a 0 -x {10.0 9.0 1446 ------- null} + -t 1.65928 -s 7 -d 0 -p ack -e 40 -c 0 -i 2902 -a 0 -x {10.0 9.0 1446 ------- null} h -t 1.65928 -s 7 -d 8 -p ack -e 40 -c 0 -i 2902 -a 0 -x {10.0 9.0 1446 ------- null} r -t 1.65936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2901 -a 0 -x {9.0 10.0 1455 ------- null} + -t 1.65936 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2901 -a 0 -x {9.0 10.0 1455 ------- null} h -t 1.65936 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2901 -a 0 -x {9.0 10.0 1455 ------- null} r -t 1.65954 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2887 -a 0 -x {9.0 10.0 1448 ------- null} + -t 1.65954 -s 10 -d 7 -p ack -e 40 -c 0 -i 2906 -a 0 -x {10.0 9.0 1448 ------- null} - -t 1.65954 -s 10 -d 7 -p ack -e 40 -c 0 -i 2906 -a 0 -x {10.0 9.0 1448 ------- null} h -t 1.65954 -s 10 -d 7 -p ack -e 40 -c 0 -i 2906 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.66 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2893 -a 0 -x {9.0 10.0 1451 ------- null} - -t 1.66 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2893 -a 0 -x {9.0 10.0 1451 ------- null} h -t 1.66 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2893 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.66005 -s 0 -d 9 -p ack -e 40 -c 0 -i 2896 -a 0 -x {10.0 9.0 1443 ------- null} + -t 1.66005 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2907 -a 0 -x {9.0 10.0 1458 ------- null} - -t 1.66005 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2907 -a 0 -x {9.0 10.0 1458 ------- null} h -t 1.66005 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2907 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.6601 -s 0 -d 9 -p ack -e 40 -c 0 -i 2900 -a 0 -x {10.0 9.0 1445 ------- null} - -t 1.6601 -s 0 -d 9 -p ack -e 40 -c 0 -i 2900 -a 0 -x {10.0 9.0 1445 ------- null} h -t 1.6601 -s 0 -d 9 -p ack -e 40 -c 0 -i 2900 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.66037 -s 10 -d 7 -p ack -e 40 -c 0 -i 2904 -a 0 -x {10.0 9.0 1447 ------- null} + -t 1.66037 -s 7 -d 0 -p ack -e 40 -c 0 -i 2904 -a 0 -x {10.0 9.0 1447 ------- null} h -t 1.66037 -s 7 -d 8 -p ack -e 40 -c 0 -i 2904 -a 0 -x {10.0 9.0 1447 ------- null} r -t 1.66062 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2889 -a 0 -x {9.0 10.0 1449 ------- null} + -t 1.66062 -s 10 -d 7 -p ack -e 40 -c 0 -i 2908 -a 0 -x {10.0 9.0 1449 ------- null} - -t 1.66062 -s 10 -d 7 -p ack -e 40 -c 0 -i 2908 -a 0 -x {10.0 9.0 1449 ------- null} h -t 1.66062 -s 10 -d 7 -p ack -e 40 -c 0 -i 2908 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.66067 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2903 -a 0 -x {9.0 10.0 1456 ------- null} + -t 1.66067 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2903 -a 0 -x {9.0 10.0 1456 ------- null} h -t 1.66067 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2903 -a 0 -x {9.0 10.0 1456 ------- null} r -t 1.66107 -s 0 -d 9 -p ack -e 40 -c 0 -i 2898 -a 0 -x {10.0 9.0 1444 ------- null} + -t 1.66107 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2909 -a 0 -x {9.0 10.0 1459 ------- null} - -t 1.66107 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2909 -a 0 -x {9.0 10.0 1459 ------- null} h -t 1.66107 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2909 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.66109 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2895 -a 0 -x {9.0 10.0 1452 ------- null} - -t 1.66109 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2895 -a 0 -x {9.0 10.0 1452 ------- null} h -t 1.66109 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2895 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.66138 -s 0 -d 9 -p ack -e 40 -c 0 -i 2902 -a 0 -x {10.0 9.0 1446 ------- null} - -t 1.66138 -s 0 -d 9 -p ack -e 40 -c 0 -i 2902 -a 0 -x {10.0 9.0 1446 ------- null} h -t 1.66138 -s 0 -d 9 -p ack -e 40 -c 0 -i 2902 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.66157 -s 10 -d 7 -p ack -e 40 -c 0 -i 2906 -a 0 -x {10.0 9.0 1448 ------- null} + -t 1.66157 -s 7 -d 0 -p ack -e 40 -c 0 -i 2906 -a 0 -x {10.0 9.0 1448 ------- null} h -t 1.66157 -s 7 -d 8 -p ack -e 40 -c 0 -i 2906 -a 0 -x {10.0 9.0 1448 ------- null} r -t 1.66171 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2891 -a 0 -x {9.0 10.0 1450 ------- null} + -t 1.66171 -s 10 -d 7 -p ack -e 40 -c 0 -i 2910 -a 0 -x {10.0 9.0 1450 ------- null} - -t 1.66171 -s 10 -d 7 -p ack -e 40 -c 0 -i 2910 -a 0 -x {10.0 9.0 1450 ------- null} h -t 1.66171 -s 10 -d 7 -p ack -e 40 -c 0 -i 2910 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.66181 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2905 -a 0 -x {9.0 10.0 1457 ------- null} + -t 1.66181 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2905 -a 0 -x {9.0 10.0 1457 ------- null} h -t 1.66181 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2905 -a 0 -x {9.0 10.0 1457 ------- null} r -t 1.66213 -s 0 -d 9 -p ack -e 40 -c 0 -i 2900 -a 0 -x {10.0 9.0 1445 ------- null} + -t 1.66213 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2911 -a 0 -x {9.0 10.0 1460 ------- null} - -t 1.66213 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2911 -a 0 -x {9.0 10.0 1460 ------- null} h -t 1.66213 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2911 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.66245 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2897 -a 0 -x {9.0 10.0 1453 ------- null} - -t 1.66245 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2897 -a 0 -x {9.0 10.0 1453 ------- null} h -t 1.66245 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2897 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.66266 -s 10 -d 7 -p ack -e 40 -c 0 -i 2908 -a 0 -x {10.0 9.0 1449 ------- null} + -t 1.66266 -s 7 -d 0 -p ack -e 40 -c 0 -i 2908 -a 0 -x {10.0 9.0 1449 ------- null} h -t 1.66266 -s 7 -d 8 -p ack -e 40 -c 0 -i 2908 -a 0 -x {10.0 9.0 1449 ------- null} + -t 1.66275 -s 0 -d 9 -p ack -e 40 -c 0 -i 2904 -a 0 -x {10.0 9.0 1447 ------- null} - -t 1.66275 -s 0 -d 9 -p ack -e 40 -c 0 -i 2904 -a 0 -x {10.0 9.0 1447 ------- null} h -t 1.66275 -s 0 -d 9 -p ack -e 40 -c 0 -i 2904 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.6628 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2893 -a 0 -x {9.0 10.0 1451 ------- null} + -t 1.6628 -s 10 -d 7 -p ack -e 40 -c 0 -i 2912 -a 0 -x {10.0 9.0 1451 ------- null} - -t 1.6628 -s 10 -d 7 -p ack -e 40 -c 0 -i 2912 -a 0 -x {10.0 9.0 1451 ------- null} h -t 1.6628 -s 10 -d 7 -p ack -e 40 -c 0 -i 2912 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.66285 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2907 -a 0 -x {9.0 10.0 1458 ------- null} + -t 1.66285 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2907 -a 0 -x {9.0 10.0 1458 ------- null} h -t 1.66285 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2907 -a 0 -x {9.0 10.0 1458 ------- null} r -t 1.66341 -s 0 -d 9 -p ack -e 40 -c 0 -i 2902 -a 0 -x {10.0 9.0 1446 ------- null} + -t 1.66341 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2913 -a 0 -x {9.0 10.0 1461 ------- null} - -t 1.66341 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2913 -a 0 -x {9.0 10.0 1461 ------- null} h -t 1.66341 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2913 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.66374 -s 10 -d 7 -p ack -e 40 -c 0 -i 2910 -a 0 -x {10.0 9.0 1450 ------- null} + -t 1.66374 -s 7 -d 0 -p ack -e 40 -c 0 -i 2910 -a 0 -x {10.0 9.0 1450 ------- null} h -t 1.66374 -s 7 -d 8 -p ack -e 40 -c 0 -i 2910 -a 0 -x {10.0 9.0 1450 ------- null} + -t 1.66382 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2899 -a 0 -x {9.0 10.0 1454 ------- null} - -t 1.66382 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2899 -a 0 -x {9.0 10.0 1454 ------- null} h -t 1.66382 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2899 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.66387 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2909 -a 0 -x {9.0 10.0 1459 ------- null} + -t 1.66387 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2909 -a 0 -x {9.0 10.0 1459 ------- null} h -t 1.66387 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2909 -a 0 -x {9.0 10.0 1459 ------- null} r -t 1.66389 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2895 -a 0 -x {9.0 10.0 1452 ------- null} + -t 1.66389 -s 10 -d 7 -p ack -e 40 -c 0 -i 2914 -a 0 -x {10.0 9.0 1452 ------- null} - -t 1.66389 -s 10 -d 7 -p ack -e 40 -c 0 -i 2914 -a 0 -x {10.0 9.0 1452 ------- null} h -t 1.66389 -s 10 -d 7 -p ack -e 40 -c 0 -i 2914 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.6639 -s 0 -d 9 -p ack -e 40 -c 0 -i 2906 -a 0 -x {10.0 9.0 1448 ------- null} - -t 1.6639 -s 0 -d 9 -p ack -e 40 -c 0 -i 2906 -a 0 -x {10.0 9.0 1448 ------- null} h -t 1.6639 -s 0 -d 9 -p ack -e 40 -c 0 -i 2906 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.66478 -s 0 -d 9 -p ack -e 40 -c 0 -i 2904 -a 0 -x {10.0 9.0 1447 ------- null} + -t 1.66478 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2915 -a 0 -x {9.0 10.0 1462 ------- null} - -t 1.66478 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2915 -a 0 -x {9.0 10.0 1462 ------- null} h -t 1.66478 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2915 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.66483 -s 10 -d 7 -p ack -e 40 -c 0 -i 2912 -a 0 -x {10.0 9.0 1451 ------- null} + -t 1.66483 -s 7 -d 0 -p ack -e 40 -c 0 -i 2912 -a 0 -x {10.0 9.0 1451 ------- null} h -t 1.66483 -s 7 -d 8 -p ack -e 40 -c 0 -i 2912 -a 0 -x {10.0 9.0 1451 ------- null} + -t 1.66491 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2901 -a 0 -x {9.0 10.0 1455 ------- null} - -t 1.66491 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2901 -a 0 -x {9.0 10.0 1455 ------- null} h -t 1.66491 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2901 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.66493 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2911 -a 0 -x {9.0 10.0 1460 ------- null} + -t 1.66493 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2911 -a 0 -x {9.0 10.0 1460 ------- null} h -t 1.66493 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2911 -a 0 -x {9.0 10.0 1460 ------- null} + -t 1.66512 -s 0 -d 9 -p ack -e 40 -c 0 -i 2908 -a 0 -x {10.0 9.0 1449 ------- null} - -t 1.66512 -s 0 -d 9 -p ack -e 40 -c 0 -i 2908 -a 0 -x {10.0 9.0 1449 ------- null} h -t 1.66512 -s 0 -d 9 -p ack -e 40 -c 0 -i 2908 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.66525 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2897 -a 0 -x {9.0 10.0 1453 ------- null} + -t 1.66525 -s 10 -d 7 -p ack -e 40 -c 0 -i 2916 -a 0 -x {10.0 9.0 1453 ------- null} - -t 1.66525 -s 10 -d 7 -p ack -e 40 -c 0 -i 2916 -a 0 -x {10.0 9.0 1453 ------- null} h -t 1.66525 -s 10 -d 7 -p ack -e 40 -c 0 -i 2916 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.66592 -s 10 -d 7 -p ack -e 40 -c 0 -i 2914 -a 0 -x {10.0 9.0 1452 ------- null} + -t 1.66592 -s 7 -d 0 -p ack -e 40 -c 0 -i 2914 -a 0 -x {10.0 9.0 1452 ------- null} h -t 1.66592 -s 7 -d 8 -p ack -e 40 -c 0 -i 2914 -a 0 -x {10.0 9.0 1452 ------- null} r -t 1.66594 -s 0 -d 9 -p ack -e 40 -c 0 -i 2906 -a 0 -x {10.0 9.0 1448 ------- null} + -t 1.66594 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2917 -a 0 -x {9.0 10.0 1463 ------- null} - -t 1.66594 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2917 -a 0 -x {9.0 10.0 1463 ------- null} h -t 1.66594 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2917 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.666 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2903 -a 0 -x {9.0 10.0 1456 ------- null} - -t 1.666 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2903 -a 0 -x {9.0 10.0 1456 ------- null} h -t 1.666 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2903 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.66611 -s 0 -d 9 -p ack -e 40 -c 0 -i 2910 -a 0 -x {10.0 9.0 1450 ------- null} - -t 1.66611 -s 0 -d 9 -p ack -e 40 -c 0 -i 2910 -a 0 -x {10.0 9.0 1450 ------- null} h -t 1.66611 -s 0 -d 9 -p ack -e 40 -c 0 -i 2910 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.66621 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2913 -a 0 -x {9.0 10.0 1461 ------- null} + -t 1.66621 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2913 -a 0 -x {9.0 10.0 1461 ------- null} h -t 1.66621 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2913 -a 0 -x {9.0 10.0 1461 ------- null} r -t 1.66662 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2899 -a 0 -x {9.0 10.0 1454 ------- null} + -t 1.66662 -s 10 -d 7 -p ack -e 40 -c 0 -i 2918 -a 0 -x {10.0 9.0 1454 ------- null} - -t 1.66662 -s 10 -d 7 -p ack -e 40 -c 0 -i 2918 -a 0 -x {10.0 9.0 1454 ------- null} h -t 1.66662 -s 10 -d 7 -p ack -e 40 -c 0 -i 2918 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.66709 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2905 -a 0 -x {9.0 10.0 1457 ------- null} - -t 1.66709 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2905 -a 0 -x {9.0 10.0 1457 ------- null} h -t 1.66709 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2905 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.66715 -s 0 -d 9 -p ack -e 40 -c 0 -i 2908 -a 0 -x {10.0 9.0 1449 ------- null} + -t 1.66715 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2919 -a 0 -x {9.0 10.0 1464 ------- null} - -t 1.66715 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2919 -a 0 -x {9.0 10.0 1464 ------- null} h -t 1.66715 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2919 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.66723 -s 0 -d 9 -p ack -e 40 -c 0 -i 2912 -a 0 -x {10.0 9.0 1451 ------- null} - -t 1.66723 -s 0 -d 9 -p ack -e 40 -c 0 -i 2912 -a 0 -x {10.0 9.0 1451 ------- null} h -t 1.66723 -s 0 -d 9 -p ack -e 40 -c 0 -i 2912 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.66728 -s 10 -d 7 -p ack -e 40 -c 0 -i 2916 -a 0 -x {10.0 9.0 1453 ------- null} + -t 1.66728 -s 7 -d 0 -p ack -e 40 -c 0 -i 2916 -a 0 -x {10.0 9.0 1453 ------- null} h -t 1.66728 -s 7 -d 8 -p ack -e 40 -c 0 -i 2916 -a 0 -x {10.0 9.0 1453 ------- null} r -t 1.66758 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2915 -a 0 -x {9.0 10.0 1462 ------- null} + -t 1.66758 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2915 -a 0 -x {9.0 10.0 1462 ------- null} h -t 1.66758 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2915 -a 0 -x {9.0 10.0 1462 ------- null} r -t 1.66771 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2901 -a 0 -x {9.0 10.0 1455 ------- null} + -t 1.66771 -s 10 -d 7 -p ack -e 40 -c 0 -i 2920 -a 0 -x {10.0 9.0 1455 ------- null} - -t 1.66771 -s 10 -d 7 -p ack -e 40 -c 0 -i 2920 -a 0 -x {10.0 9.0 1455 ------- null} h -t 1.66771 -s 10 -d 7 -p ack -e 40 -c 0 -i 2920 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.66814 -s 0 -d 9 -p ack -e 40 -c 0 -i 2910 -a 0 -x {10.0 9.0 1450 ------- null} + -t 1.66814 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2921 -a 0 -x {9.0 10.0 1465 ------- null} - -t 1.66814 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2921 -a 0 -x {9.0 10.0 1465 ------- null} h -t 1.66814 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2921 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.66818 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2907 -a 0 -x {9.0 10.0 1458 ------- null} - -t 1.66818 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2907 -a 0 -x {9.0 10.0 1458 ------- null} h -t 1.66818 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2907 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.66843 -s 0 -d 9 -p ack -e 40 -c 0 -i 2914 -a 0 -x {10.0 9.0 1452 ------- null} - -t 1.66843 -s 0 -d 9 -p ack -e 40 -c 0 -i 2914 -a 0 -x {10.0 9.0 1452 ------- null} h -t 1.66843 -s 0 -d 9 -p ack -e 40 -c 0 -i 2914 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.66866 -s 10 -d 7 -p ack -e 40 -c 0 -i 2918 -a 0 -x {10.0 9.0 1454 ------- null} + -t 1.66866 -s 7 -d 0 -p ack -e 40 -c 0 -i 2918 -a 0 -x {10.0 9.0 1454 ------- null} h -t 1.66866 -s 7 -d 8 -p ack -e 40 -c 0 -i 2918 -a 0 -x {10.0 9.0 1454 ------- null} r -t 1.66874 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2917 -a 0 -x {9.0 10.0 1463 ------- null} + -t 1.66874 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2917 -a 0 -x {9.0 10.0 1463 ------- null} h -t 1.66874 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2917 -a 0 -x {9.0 10.0 1463 ------- null} r -t 1.6688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2903 -a 0 -x {9.0 10.0 1456 ------- null} + -t 1.6688 -s 10 -d 7 -p ack -e 40 -c 0 -i 2922 -a 0 -x {10.0 9.0 1456 ------- null} - -t 1.6688 -s 10 -d 7 -p ack -e 40 -c 0 -i 2922 -a 0 -x {10.0 9.0 1456 ------- null} h -t 1.6688 -s 10 -d 7 -p ack -e 40 -c 0 -i 2922 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.66926 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2909 -a 0 -x {9.0 10.0 1459 ------- null} - -t 1.66926 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2909 -a 0 -x {9.0 10.0 1459 ------- null} h -t 1.66926 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2909 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.66926 -s 0 -d 9 -p ack -e 40 -c 0 -i 2912 -a 0 -x {10.0 9.0 1451 ------- null} + -t 1.66926 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2923 -a 0 -x {9.0 10.0 1466 ------- null} - -t 1.66926 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2923 -a 0 -x {9.0 10.0 1466 ------- null} h -t 1.66926 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2923 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.66933 -s 0 -d 9 -p ack -e 40 -c 0 -i 2916 -a 0 -x {10.0 9.0 1453 ------- null} - -t 1.66933 -s 0 -d 9 -p ack -e 40 -c 0 -i 2916 -a 0 -x {10.0 9.0 1453 ------- null} h -t 1.66933 -s 0 -d 9 -p ack -e 40 -c 0 -i 2916 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.66974 -s 10 -d 7 -p ack -e 40 -c 0 -i 2920 -a 0 -x {10.0 9.0 1455 ------- null} + -t 1.66974 -s 7 -d 0 -p ack -e 40 -c 0 -i 2920 -a 0 -x {10.0 9.0 1455 ------- null} h -t 1.66974 -s 7 -d 8 -p ack -e 40 -c 0 -i 2920 -a 0 -x {10.0 9.0 1455 ------- null} r -t 1.66989 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2905 -a 0 -x {9.0 10.0 1457 ------- null} + -t 1.66989 -s 10 -d 7 -p ack -e 40 -c 0 -i 2924 -a 0 -x {10.0 9.0 1457 ------- null} - -t 1.66989 -s 10 -d 7 -p ack -e 40 -c 0 -i 2924 -a 0 -x {10.0 9.0 1457 ------- null} h -t 1.66989 -s 10 -d 7 -p ack -e 40 -c 0 -i 2924 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.66995 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2919 -a 0 -x {9.0 10.0 1464 ------- null} + -t 1.66995 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2919 -a 0 -x {9.0 10.0 1464 ------- null} h -t 1.66995 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2919 -a 0 -x {9.0 10.0 1464 ------- null} + -t 1.67035 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2911 -a 0 -x {9.0 10.0 1460 ------- null} - -t 1.67035 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2911 -a 0 -x {9.0 10.0 1460 ------- null} h -t 1.67035 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2911 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.67042 -s 0 -d 9 -p ack -e 40 -c 0 -i 2918 -a 0 -x {10.0 9.0 1454 ------- null} - -t 1.67042 -s 0 -d 9 -p ack -e 40 -c 0 -i 2918 -a 0 -x {10.0 9.0 1454 ------- null} h -t 1.67042 -s 0 -d 9 -p ack -e 40 -c 0 -i 2918 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.67046 -s 0 -d 9 -p ack -e 40 -c 0 -i 2914 -a 0 -x {10.0 9.0 1452 ------- null} + -t 1.67046 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2925 -a 0 -x {9.0 10.0 1467 ------- null} - -t 1.67046 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2925 -a 0 -x {9.0 10.0 1467 ------- null} h -t 1.67046 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2925 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.67083 -s 10 -d 7 -p ack -e 40 -c 0 -i 2922 -a 0 -x {10.0 9.0 1456 ------- null} + -t 1.67083 -s 7 -d 0 -p ack -e 40 -c 0 -i 2922 -a 0 -x {10.0 9.0 1456 ------- null} h -t 1.67083 -s 7 -d 8 -p ack -e 40 -c 0 -i 2922 -a 0 -x {10.0 9.0 1456 ------- null} r -t 1.67094 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2921 -a 0 -x {9.0 10.0 1465 ------- null} + -t 1.67094 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2921 -a 0 -x {9.0 10.0 1465 ------- null} h -t 1.67094 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2921 -a 0 -x {9.0 10.0 1465 ------- null} r -t 1.67098 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2907 -a 0 -x {9.0 10.0 1458 ------- null} + -t 1.67098 -s 10 -d 7 -p ack -e 40 -c 0 -i 2926 -a 0 -x {10.0 9.0 1458 ------- null} - -t 1.67098 -s 10 -d 7 -p ack -e 40 -c 0 -i 2926 -a 0 -x {10.0 9.0 1458 ------- null} h -t 1.67098 -s 10 -d 7 -p ack -e 40 -c 0 -i 2926 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.67136 -s 0 -d 9 -p ack -e 40 -c 0 -i 2916 -a 0 -x {10.0 9.0 1453 ------- null} + -t 1.67136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2927 -a 0 -x {9.0 10.0 1468 ------- null} - -t 1.67136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2927 -a 0 -x {9.0 10.0 1468 ------- null} h -t 1.67136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2927 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.67144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2913 -a 0 -x {9.0 10.0 1461 ------- null} - -t 1.67144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2913 -a 0 -x {9.0 10.0 1461 ------- null} h -t 1.67144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2913 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.6716 -s 0 -d 9 -p ack -e 40 -c 0 -i 2920 -a 0 -x {10.0 9.0 1455 ------- null} - -t 1.6716 -s 0 -d 9 -p ack -e 40 -c 0 -i 2920 -a 0 -x {10.0 9.0 1455 ------- null} h -t 1.6716 -s 0 -d 9 -p ack -e 40 -c 0 -i 2920 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.67192 -s 10 -d 7 -p ack -e 40 -c 0 -i 2924 -a 0 -x {10.0 9.0 1457 ------- null} + -t 1.67192 -s 7 -d 0 -p ack -e 40 -c 0 -i 2924 -a 0 -x {10.0 9.0 1457 ------- null} h -t 1.67192 -s 7 -d 8 -p ack -e 40 -c 0 -i 2924 -a 0 -x {10.0 9.0 1457 ------- null} r -t 1.67206 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2909 -a 0 -x {9.0 10.0 1459 ------- null} + -t 1.67206 -s 10 -d 7 -p ack -e 40 -c 0 -i 2928 -a 0 -x {10.0 9.0 1459 ------- null} - -t 1.67206 -s 10 -d 7 -p ack -e 40 -c 0 -i 2928 -a 0 -x {10.0 9.0 1459 ------- null} h -t 1.67206 -s 10 -d 7 -p ack -e 40 -c 0 -i 2928 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.67206 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2923 -a 0 -x {9.0 10.0 1466 ------- null} + -t 1.67206 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2923 -a 0 -x {9.0 10.0 1466 ------- null} h -t 1.67206 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2923 -a 0 -x {9.0 10.0 1466 ------- null} r -t 1.67245 -s 0 -d 9 -p ack -e 40 -c 0 -i 2918 -a 0 -x {10.0 9.0 1454 ------- null} + -t 1.67245 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2929 -a 0 -x {9.0 10.0 1469 ------- null} - -t 1.67245 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2929 -a 0 -x {9.0 10.0 1469 ------- null} h -t 1.67245 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2929 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.67253 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2915 -a 0 -x {9.0 10.0 1462 ------- null} - -t 1.67253 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2915 -a 0 -x {9.0 10.0 1462 ------- null} h -t 1.67253 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2915 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.6727 -s 0 -d 9 -p ack -e 40 -c 0 -i 2922 -a 0 -x {10.0 9.0 1456 ------- null} - -t 1.6727 -s 0 -d 9 -p ack -e 40 -c 0 -i 2922 -a 0 -x {10.0 9.0 1456 ------- null} h -t 1.6727 -s 0 -d 9 -p ack -e 40 -c 0 -i 2922 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.67301 -s 10 -d 7 -p ack -e 40 -c 0 -i 2926 -a 0 -x {10.0 9.0 1458 ------- null} + -t 1.67301 -s 7 -d 0 -p ack -e 40 -c 0 -i 2926 -a 0 -x {10.0 9.0 1458 ------- null} h -t 1.67301 -s 7 -d 8 -p ack -e 40 -c 0 -i 2926 -a 0 -x {10.0 9.0 1458 ------- null} r -t 1.67315 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2911 -a 0 -x {9.0 10.0 1460 ------- null} + -t 1.67315 -s 10 -d 7 -p ack -e 40 -c 0 -i 2930 -a 0 -x {10.0 9.0 1460 ------- null} - -t 1.67315 -s 10 -d 7 -p ack -e 40 -c 0 -i 2930 -a 0 -x {10.0 9.0 1460 ------- null} h -t 1.67315 -s 10 -d 7 -p ack -e 40 -c 0 -i 2930 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.67326 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2925 -a 0 -x {9.0 10.0 1467 ------- null} + -t 1.67326 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2925 -a 0 -x {9.0 10.0 1467 ------- null} h -t 1.67326 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2925 -a 0 -x {9.0 10.0 1467 ------- null} + -t 1.67362 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2917 -a 0 -x {9.0 10.0 1463 ------- null} - -t 1.67362 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2917 -a 0 -x {9.0 10.0 1463 ------- null} h -t 1.67362 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2917 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.67363 -s 0 -d 9 -p ack -e 40 -c 0 -i 2920 -a 0 -x {10.0 9.0 1455 ------- null} + -t 1.67363 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2931 -a 0 -x {9.0 10.0 1470 ------- null} - -t 1.67363 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2931 -a 0 -x {9.0 10.0 1470 ------- null} h -t 1.67363 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2931 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.67392 -s 0 -d 9 -p ack -e 40 -c 0 -i 2924 -a 0 -x {10.0 9.0 1457 ------- null} - -t 1.67392 -s 0 -d 9 -p ack -e 40 -c 0 -i 2924 -a 0 -x {10.0 9.0 1457 ------- null} h -t 1.67392 -s 0 -d 9 -p ack -e 40 -c 0 -i 2924 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.6741 -s 10 -d 7 -p ack -e 40 -c 0 -i 2928 -a 0 -x {10.0 9.0 1459 ------- null} + -t 1.6741 -s 7 -d 0 -p ack -e 40 -c 0 -i 2928 -a 0 -x {10.0 9.0 1459 ------- null} h -t 1.6741 -s 7 -d 8 -p ack -e 40 -c 0 -i 2928 -a 0 -x {10.0 9.0 1459 ------- null} r -t 1.67416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2927 -a 0 -x {9.0 10.0 1468 ------- null} + -t 1.67416 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2927 -a 0 -x {9.0 10.0 1468 ------- null} h -t 1.67416 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2927 -a 0 -x {9.0 10.0 1468 ------- null} r -t 1.67424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2913 -a 0 -x {9.0 10.0 1461 ------- null} + -t 1.67424 -s 10 -d 7 -p ack -e 40 -c 0 -i 2932 -a 0 -x {10.0 9.0 1461 ------- null} - -t 1.67424 -s 10 -d 7 -p ack -e 40 -c 0 -i 2932 -a 0 -x {10.0 9.0 1461 ------- null} h -t 1.67424 -s 10 -d 7 -p ack -e 40 -c 0 -i 2932 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.67474 -s 0 -d 9 -p ack -e 40 -c 0 -i 2922 -a 0 -x {10.0 9.0 1456 ------- null} + -t 1.67474 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2933 -a 0 -x {9.0 10.0 1471 ------- null} - -t 1.67474 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2933 -a 0 -x {9.0 10.0 1471 ------- null} h -t 1.67474 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2933 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.67496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2919 -a 0 -x {9.0 10.0 1464 ------- null} - -t 1.67496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2919 -a 0 -x {9.0 10.0 1464 ------- null} h -t 1.67496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2919 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.67518 -s 10 -d 7 -p ack -e 40 -c 0 -i 2930 -a 0 -x {10.0 9.0 1460 ------- null} + -t 1.67518 -s 7 -d 0 -p ack -e 40 -c 0 -i 2930 -a 0 -x {10.0 9.0 1460 ------- null} h -t 1.67518 -s 7 -d 8 -p ack -e 40 -c 0 -i 2930 -a 0 -x {10.0 9.0 1460 ------- null} r -t 1.67525 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2929 -a 0 -x {9.0 10.0 1469 ------- null} + -t 1.67525 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2929 -a 0 -x {9.0 10.0 1469 ------- null} h -t 1.67525 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2929 -a 0 -x {9.0 10.0 1469 ------- null} + -t 1.67525 -s 0 -d 9 -p ack -e 40 -c 0 -i 2926 -a 0 -x {10.0 9.0 1458 ------- null} - -t 1.67525 -s 0 -d 9 -p ack -e 40 -c 0 -i 2926 -a 0 -x {10.0 9.0 1458 ------- null} h -t 1.67525 -s 0 -d 9 -p ack -e 40 -c 0 -i 2926 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.67533 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2915 -a 0 -x {9.0 10.0 1462 ------- null} + -t 1.67533 -s 10 -d 7 -p ack -e 40 -c 0 -i 2934 -a 0 -x {10.0 9.0 1462 ------- null} - -t 1.67533 -s 10 -d 7 -p ack -e 40 -c 0 -i 2934 -a 0 -x {10.0 9.0 1462 ------- null} h -t 1.67533 -s 10 -d 7 -p ack -e 40 -c 0 -i 2934 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.67595 -s 0 -d 9 -p ack -e 40 -c 0 -i 2924 -a 0 -x {10.0 9.0 1457 ------- null} + -t 1.67595 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2935 -a 0 -x {9.0 10.0 1472 ------- null} - -t 1.67595 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2935 -a 0 -x {9.0 10.0 1472 ------- null} h -t 1.67595 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2935 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.67627 -s 10 -d 7 -p ack -e 40 -c 0 -i 2932 -a 0 -x {10.0 9.0 1461 ------- null} + -t 1.67627 -s 7 -d 0 -p ack -e 40 -c 0 -i 2932 -a 0 -x {10.0 9.0 1461 ------- null} h -t 1.67627 -s 7 -d 8 -p ack -e 40 -c 0 -i 2932 -a 0 -x {10.0 9.0 1461 ------- null} + -t 1.67629 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2921 -a 0 -x {9.0 10.0 1465 ------- null} - -t 1.67629 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2921 -a 0 -x {9.0 10.0 1465 ------- null} h -t 1.67629 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2921 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.67642 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2917 -a 0 -x {9.0 10.0 1463 ------- null} + -t 1.67642 -s 10 -d 7 -p ack -e 40 -c 0 -i 2936 -a 0 -x {10.0 9.0 1463 ------- null} - -t 1.67642 -s 10 -d 7 -p ack -e 40 -c 0 -i 2936 -a 0 -x {10.0 9.0 1463 ------- null} h -t 1.67642 -s 10 -d 7 -p ack -e 40 -c 0 -i 2936 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.67643 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2931 -a 0 -x {9.0 10.0 1470 ------- null} + -t 1.67643 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2931 -a 0 -x {9.0 10.0 1470 ------- null} h -t 1.67643 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2931 -a 0 -x {9.0 10.0 1470 ------- null} + -t 1.67659 -s 0 -d 9 -p ack -e 40 -c 0 -i 2928 -a 0 -x {10.0 9.0 1459 ------- null} - -t 1.67659 -s 0 -d 9 -p ack -e 40 -c 0 -i 2928 -a 0 -x {10.0 9.0 1459 ------- null} h -t 1.67659 -s 0 -d 9 -p ack -e 40 -c 0 -i 2928 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.67728 -s 0 -d 9 -p ack -e 40 -c 0 -i 2926 -a 0 -x {10.0 9.0 1458 ------- null} + -t 1.67728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2937 -a 0 -x {9.0 10.0 1473 ------- null} - -t 1.67728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2937 -a 0 -x {9.0 10.0 1473 ------- null} h -t 1.67728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2937 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.67736 -s 10 -d 7 -p ack -e 40 -c 0 -i 2934 -a 0 -x {10.0 9.0 1462 ------- null} + -t 1.67736 -s 7 -d 0 -p ack -e 40 -c 0 -i 2934 -a 0 -x {10.0 9.0 1462 ------- null} h -t 1.67736 -s 7 -d 8 -p ack -e 40 -c 0 -i 2934 -a 0 -x {10.0 9.0 1462 ------- null} r -t 1.67754 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2933 -a 0 -x {9.0 10.0 1471 ------- null} + -t 1.67754 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2933 -a 0 -x {9.0 10.0 1471 ------- null} h -t 1.67754 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2933 -a 0 -x {9.0 10.0 1471 ------- null} + -t 1.67757 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2923 -a 0 -x {9.0 10.0 1466 ------- null} - -t 1.67757 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2923 -a 0 -x {9.0 10.0 1466 ------- null} h -t 1.67757 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2923 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.67776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2919 -a 0 -x {9.0 10.0 1464 ------- null} + -t 1.67776 -s 10 -d 7 -p ack -e 40 -c 0 -i 2938 -a 0 -x {10.0 9.0 1464 ------- null} - -t 1.67776 -s 10 -d 7 -p ack -e 40 -c 0 -i 2938 -a 0 -x {10.0 9.0 1464 ------- null} h -t 1.67776 -s 10 -d 7 -p ack -e 40 -c 0 -i 2938 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.67782 -s 0 -d 9 -p ack -e 40 -c 0 -i 2930 -a 0 -x {10.0 9.0 1460 ------- null} - -t 1.67782 -s 0 -d 9 -p ack -e 40 -c 0 -i 2930 -a 0 -x {10.0 9.0 1460 ------- null} h -t 1.67782 -s 0 -d 9 -p ack -e 40 -c 0 -i 2930 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.67845 -s 10 -d 7 -p ack -e 40 -c 0 -i 2936 -a 0 -x {10.0 9.0 1463 ------- null} + -t 1.67845 -s 7 -d 0 -p ack -e 40 -c 0 -i 2936 -a 0 -x {10.0 9.0 1463 ------- null} h -t 1.67845 -s 7 -d 8 -p ack -e 40 -c 0 -i 2936 -a 0 -x {10.0 9.0 1463 ------- null} r -t 1.67862 -s 0 -d 9 -p ack -e 40 -c 0 -i 2928 -a 0 -x {10.0 9.0 1459 ------- null} + -t 1.67862 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2939 -a 0 -x {9.0 10.0 1474 ------- null} - -t 1.67862 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2939 -a 0 -x {9.0 10.0 1474 ------- null} h -t 1.67862 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2939 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.67866 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2925 -a 0 -x {9.0 10.0 1467 ------- null} - -t 1.67866 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2925 -a 0 -x {9.0 10.0 1467 ------- null} h -t 1.67866 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2925 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.67875 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2935 -a 0 -x {9.0 10.0 1472 ------- null} + -t 1.67875 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2935 -a 0 -x {9.0 10.0 1472 ------- null} h -t 1.67875 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2935 -a 0 -x {9.0 10.0 1472 ------- null} + -t 1.67893 -s 0 -d 9 -p ack -e 40 -c 0 -i 2932 -a 0 -x {10.0 9.0 1461 ------- null} - -t 1.67893 -s 0 -d 9 -p ack -e 40 -c 0 -i 2932 -a 0 -x {10.0 9.0 1461 ------- null} h -t 1.67893 -s 0 -d 9 -p ack -e 40 -c 0 -i 2932 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.67909 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2921 -a 0 -x {9.0 10.0 1465 ------- null} + -t 1.67909 -s 10 -d 7 -p ack -e 40 -c 0 -i 2940 -a 0 -x {10.0 9.0 1465 ------- null} - -t 1.67909 -s 10 -d 7 -p ack -e 40 -c 0 -i 2940 -a 0 -x {10.0 9.0 1465 ------- null} h -t 1.67909 -s 10 -d 7 -p ack -e 40 -c 0 -i 2940 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.67979 -s 10 -d 7 -p ack -e 40 -c 0 -i 2938 -a 0 -x {10.0 9.0 1464 ------- null} + -t 1.67979 -s 7 -d 0 -p ack -e 40 -c 0 -i 2938 -a 0 -x {10.0 9.0 1464 ------- null} h -t 1.67979 -s 7 -d 8 -p ack -e 40 -c 0 -i 2938 -a 0 -x {10.0 9.0 1464 ------- null} r -t 1.67986 -s 0 -d 9 -p ack -e 40 -c 0 -i 2930 -a 0 -x {10.0 9.0 1460 ------- null} + -t 1.67986 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2941 -a 0 -x {9.0 10.0 1475 ------- null} - -t 1.67986 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2941 -a 0 -x {9.0 10.0 1475 ------- null} h -t 1.67986 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2941 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.67992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2927 -a 0 -x {9.0 10.0 1468 ------- null} - -t 1.67992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2927 -a 0 -x {9.0 10.0 1468 ------- null} h -t 1.67992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2927 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.67998 -s 0 -d 9 -p ack -e 40 -c 0 -i 2934 -a 0 -x {10.0 9.0 1462 ------- null} - -t 1.67998 -s 0 -d 9 -p ack -e 40 -c 0 -i 2934 -a 0 -x {10.0 9.0 1462 ------- null} h -t 1.67998 -s 0 -d 9 -p ack -e 40 -c 0 -i 2934 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.68008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2937 -a 0 -x {9.0 10.0 1473 ------- null} + -t 1.68008 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2937 -a 0 -x {9.0 10.0 1473 ------- null} h -t 1.68008 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2937 -a 0 -x {9.0 10.0 1473 ------- null} r -t 1.68037 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2923 -a 0 -x {9.0 10.0 1466 ------- null} + -t 1.68037 -s 10 -d 7 -p ack -e 40 -c 0 -i 2942 -a 0 -x {10.0 9.0 1466 ------- null} - -t 1.68037 -s 10 -d 7 -p ack -e 40 -c 0 -i 2942 -a 0 -x {10.0 9.0 1466 ------- null} h -t 1.68037 -s 10 -d 7 -p ack -e 40 -c 0 -i 2942 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.68096 -s 0 -d 9 -p ack -e 40 -c 0 -i 2932 -a 0 -x {10.0 9.0 1461 ------- null} + -t 1.68096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2943 -a 0 -x {9.0 10.0 1476 ------- null} - -t 1.68096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2943 -a 0 -x {9.0 10.0 1476 ------- null} h -t 1.68096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2943 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.68101 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2929 -a 0 -x {9.0 10.0 1469 ------- null} - -t 1.68101 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2929 -a 0 -x {9.0 10.0 1469 ------- null} h -t 1.68101 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2929 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.68112 -s 10 -d 7 -p ack -e 40 -c 0 -i 2940 -a 0 -x {10.0 9.0 1465 ------- null} + -t 1.68112 -s 7 -d 0 -p ack -e 40 -c 0 -i 2940 -a 0 -x {10.0 9.0 1465 ------- null} h -t 1.68112 -s 7 -d 8 -p ack -e 40 -c 0 -i 2940 -a 0 -x {10.0 9.0 1465 ------- null} + -t 1.68123 -s 0 -d 9 -p ack -e 40 -c 0 -i 2936 -a 0 -x {10.0 9.0 1463 ------- null} - -t 1.68123 -s 0 -d 9 -p ack -e 40 -c 0 -i 2936 -a 0 -x {10.0 9.0 1463 ------- null} h -t 1.68123 -s 0 -d 9 -p ack -e 40 -c 0 -i 2936 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.68142 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2939 -a 0 -x {9.0 10.0 1474 ------- null} + -t 1.68142 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2939 -a 0 -x {9.0 10.0 1474 ------- null} h -t 1.68142 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2939 -a 0 -x {9.0 10.0 1474 ------- null} r -t 1.68146 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2925 -a 0 -x {9.0 10.0 1467 ------- null} + -t 1.68146 -s 10 -d 7 -p ack -e 40 -c 0 -i 2944 -a 0 -x {10.0 9.0 1467 ------- null} - -t 1.68146 -s 10 -d 7 -p ack -e 40 -c 0 -i 2944 -a 0 -x {10.0 9.0 1467 ------- null} h -t 1.68146 -s 10 -d 7 -p ack -e 40 -c 0 -i 2944 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.68202 -s 0 -d 9 -p ack -e 40 -c 0 -i 2934 -a 0 -x {10.0 9.0 1462 ------- null} + -t 1.68202 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2945 -a 0 -x {9.0 10.0 1477 ------- null} - -t 1.68202 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2945 -a 0 -x {9.0 10.0 1477 ------- null} h -t 1.68202 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2945 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.6821 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2931 -a 0 -x {9.0 10.0 1470 ------- null} - -t 1.6821 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2931 -a 0 -x {9.0 10.0 1470 ------- null} h -t 1.6821 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2931 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.68227 -s 0 -d 9 -p ack -e 40 -c 0 -i 2938 -a 0 -x {10.0 9.0 1464 ------- null} - -t 1.68227 -s 0 -d 9 -p ack -e 40 -c 0 -i 2938 -a 0 -x {10.0 9.0 1464 ------- null} h -t 1.68227 -s 0 -d 9 -p ack -e 40 -c 0 -i 2938 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.6824 -s 10 -d 7 -p ack -e 40 -c 0 -i 2942 -a 0 -x {10.0 9.0 1466 ------- null} + -t 1.6824 -s 7 -d 0 -p ack -e 40 -c 0 -i 2942 -a 0 -x {10.0 9.0 1466 ------- null} h -t 1.6824 -s 7 -d 8 -p ack -e 40 -c 0 -i 2942 -a 0 -x {10.0 9.0 1466 ------- null} r -t 1.68266 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2941 -a 0 -x {9.0 10.0 1475 ------- null} + -t 1.68266 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2941 -a 0 -x {9.0 10.0 1475 ------- null} h -t 1.68266 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2941 -a 0 -x {9.0 10.0 1475 ------- null} r -t 1.68272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2927 -a 0 -x {9.0 10.0 1468 ------- null} + -t 1.68272 -s 10 -d 7 -p ack -e 40 -c 0 -i 2946 -a 0 -x {10.0 9.0 1468 ------- null} - -t 1.68272 -s 10 -d 7 -p ack -e 40 -c 0 -i 2946 -a 0 -x {10.0 9.0 1468 ------- null} h -t 1.68272 -s 10 -d 7 -p ack -e 40 -c 0 -i 2946 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.68318 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2933 -a 0 -x {9.0 10.0 1471 ------- null} - -t 1.68318 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2933 -a 0 -x {9.0 10.0 1471 ------- null} h -t 1.68318 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2933 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.68326 -s 0 -d 9 -p ack -e 40 -c 0 -i 2936 -a 0 -x {10.0 9.0 1463 ------- null} + -t 1.68326 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2947 -a 0 -x {9.0 10.0 1478 ------- null} - -t 1.68326 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2947 -a 0 -x {9.0 10.0 1478 ------- null} h -t 1.68326 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2947 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.68344 -s 0 -d 9 -p ack -e 40 -c 0 -i 2940 -a 0 -x {10.0 9.0 1465 ------- null} - -t 1.68344 -s 0 -d 9 -p ack -e 40 -c 0 -i 2940 -a 0 -x {10.0 9.0 1465 ------- null} h -t 1.68344 -s 0 -d 9 -p ack -e 40 -c 0 -i 2940 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.68349 -s 10 -d 7 -p ack -e 40 -c 0 -i 2944 -a 0 -x {10.0 9.0 1467 ------- null} + -t 1.68349 -s 7 -d 0 -p ack -e 40 -c 0 -i 2944 -a 0 -x {10.0 9.0 1467 ------- null} h -t 1.68349 -s 7 -d 8 -p ack -e 40 -c 0 -i 2944 -a 0 -x {10.0 9.0 1467 ------- null} r -t 1.68376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2943 -a 0 -x {9.0 10.0 1476 ------- null} + -t 1.68376 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2943 -a 0 -x {9.0 10.0 1476 ------- null} h -t 1.68376 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2943 -a 0 -x {9.0 10.0 1476 ------- null} r -t 1.68381 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2929 -a 0 -x {9.0 10.0 1469 ------- null} + -t 1.68381 -s 10 -d 7 -p ack -e 40 -c 0 -i 2948 -a 0 -x {10.0 9.0 1469 ------- null} - -t 1.68381 -s 10 -d 7 -p ack -e 40 -c 0 -i 2948 -a 0 -x {10.0 9.0 1469 ------- null} h -t 1.68381 -s 10 -d 7 -p ack -e 40 -c 0 -i 2948 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.68427 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2935 -a 0 -x {9.0 10.0 1472 ------- null} - -t 1.68427 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2935 -a 0 -x {9.0 10.0 1472 ------- null} h -t 1.68427 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2935 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.6843 -s 0 -d 9 -p ack -e 40 -c 0 -i 2938 -a 0 -x {10.0 9.0 1464 ------- null} + -t 1.6843 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2949 -a 0 -x {9.0 10.0 1479 ------- null} - -t 1.6843 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2949 -a 0 -x {9.0 10.0 1479 ------- null} h -t 1.6843 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2949 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.68456 -s 0 -d 9 -p ack -e 40 -c 0 -i 2942 -a 0 -x {10.0 9.0 1466 ------- null} - -t 1.68456 -s 0 -d 9 -p ack -e 40 -c 0 -i 2942 -a 0 -x {10.0 9.0 1466 ------- null} h -t 1.68456 -s 0 -d 9 -p ack -e 40 -c 0 -i 2942 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.68475 -s 10 -d 7 -p ack -e 40 -c 0 -i 2946 -a 0 -x {10.0 9.0 1468 ------- null} + -t 1.68475 -s 7 -d 0 -p ack -e 40 -c 0 -i 2946 -a 0 -x {10.0 9.0 1468 ------- null} h -t 1.68475 -s 7 -d 8 -p ack -e 40 -c 0 -i 2946 -a 0 -x {10.0 9.0 1468 ------- null} r -t 1.68482 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2945 -a 0 -x {9.0 10.0 1477 ------- null} + -t 1.68482 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2945 -a 0 -x {9.0 10.0 1477 ------- null} h -t 1.68482 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2945 -a 0 -x {9.0 10.0 1477 ------- null} r -t 1.6849 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2931 -a 0 -x {9.0 10.0 1470 ------- null} + -t 1.6849 -s 10 -d 7 -p ack -e 40 -c 0 -i 2950 -a 0 -x {10.0 9.0 1470 ------- null} - -t 1.6849 -s 10 -d 7 -p ack -e 40 -c 0 -i 2950 -a 0 -x {10.0 9.0 1470 ------- null} h -t 1.6849 -s 10 -d 7 -p ack -e 40 -c 0 -i 2950 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.68547 -s 0 -d 9 -p ack -e 40 -c 0 -i 2940 -a 0 -x {10.0 9.0 1465 ------- null} + -t 1.68547 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2951 -a 0 -x {9.0 10.0 1480 ------- null} - -t 1.68547 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2951 -a 0 -x {9.0 10.0 1480 ------- null} h -t 1.68547 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2951 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.68549 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2937 -a 0 -x {9.0 10.0 1473 ------- null} - -t 1.68549 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2937 -a 0 -x {9.0 10.0 1473 ------- null} h -t 1.68549 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2937 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.6856 -s 0 -d 9 -p ack -e 40 -c 0 -i 2944 -a 0 -x {10.0 9.0 1467 ------- null} - -t 1.6856 -s 0 -d 9 -p ack -e 40 -c 0 -i 2944 -a 0 -x {10.0 9.0 1467 ------- null} h -t 1.6856 -s 0 -d 9 -p ack -e 40 -c 0 -i 2944 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.68584 -s 10 -d 7 -p ack -e 40 -c 0 -i 2948 -a 0 -x {10.0 9.0 1469 ------- null} + -t 1.68584 -s 7 -d 0 -p ack -e 40 -c 0 -i 2948 -a 0 -x {10.0 9.0 1469 ------- null} h -t 1.68584 -s 7 -d 8 -p ack -e 40 -c 0 -i 2948 -a 0 -x {10.0 9.0 1469 ------- null} r -t 1.68598 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2933 -a 0 -x {9.0 10.0 1471 ------- null} + -t 1.68598 -s 10 -d 7 -p ack -e 40 -c 0 -i 2952 -a 0 -x {10.0 9.0 1471 ------- null} - -t 1.68598 -s 10 -d 7 -p ack -e 40 -c 0 -i 2952 -a 0 -x {10.0 9.0 1471 ------- null} h -t 1.68598 -s 10 -d 7 -p ack -e 40 -c 0 -i 2952 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.68606 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2947 -a 0 -x {9.0 10.0 1478 ------- null} + -t 1.68606 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2947 -a 0 -x {9.0 10.0 1478 ------- null} h -t 1.68606 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2947 -a 0 -x {9.0 10.0 1478 ------- null} + -t 1.68658 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2939 -a 0 -x {9.0 10.0 1474 ------- null} - -t 1.68658 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2939 -a 0 -x {9.0 10.0 1474 ------- null} h -t 1.68658 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2939 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.68659 -s 0 -d 9 -p ack -e 40 -c 0 -i 2942 -a 0 -x {10.0 9.0 1466 ------- null} + -t 1.68659 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2953 -a 0 -x {9.0 10.0 1481 ------- null} - -t 1.68659 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2953 -a 0 -x {9.0 10.0 1481 ------- null} h -t 1.68659 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2953 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.68688 -s 0 -d 9 -p ack -e 40 -c 0 -i 2946 -a 0 -x {10.0 9.0 1468 ------- null} - -t 1.68688 -s 0 -d 9 -p ack -e 40 -c 0 -i 2946 -a 0 -x {10.0 9.0 1468 ------- null} h -t 1.68688 -s 0 -d 9 -p ack -e 40 -c 0 -i 2946 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.68693 -s 10 -d 7 -p ack -e 40 -c 0 -i 2950 -a 0 -x {10.0 9.0 1470 ------- null} + -t 1.68693 -s 7 -d 0 -p ack -e 40 -c 0 -i 2950 -a 0 -x {10.0 9.0 1470 ------- null} h -t 1.68693 -s 7 -d 8 -p ack -e 40 -c 0 -i 2950 -a 0 -x {10.0 9.0 1470 ------- null} r -t 1.68707 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2935 -a 0 -x {9.0 10.0 1472 ------- null} + -t 1.68707 -s 10 -d 7 -p ack -e 40 -c 0 -i 2954 -a 0 -x {10.0 9.0 1472 ------- null} - -t 1.68707 -s 10 -d 7 -p ack -e 40 -c 0 -i 2954 -a 0 -x {10.0 9.0 1472 ------- null} h -t 1.68707 -s 10 -d 7 -p ack -e 40 -c 0 -i 2954 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.6871 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2949 -a 0 -x {9.0 10.0 1479 ------- null} + -t 1.6871 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2949 -a 0 -x {9.0 10.0 1479 ------- null} h -t 1.6871 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2949 -a 0 -x {9.0 10.0 1479 ------- null} r -t 1.68763 -s 0 -d 9 -p ack -e 40 -c 0 -i 2944 -a 0 -x {10.0 9.0 1467 ------- null} + -t 1.68763 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2955 -a 0 -x {9.0 10.0 1482 ------- null} - -t 1.68763 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2955 -a 0 -x {9.0 10.0 1482 ------- null} h -t 1.68763 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2955 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.68771 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2941 -a 0 -x {9.0 10.0 1475 ------- null} - -t 1.68771 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2941 -a 0 -x {9.0 10.0 1475 ------- null} h -t 1.68771 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2941 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.68784 -s 0 -d 9 -p ack -e 40 -c 0 -i 2948 -a 0 -x {10.0 9.0 1469 ------- null} - -t 1.68784 -s 0 -d 9 -p ack -e 40 -c 0 -i 2948 -a 0 -x {10.0 9.0 1469 ------- null} h -t 1.68784 -s 0 -d 9 -p ack -e 40 -c 0 -i 2948 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.68802 -s 10 -d 7 -p ack -e 40 -c 0 -i 2952 -a 0 -x {10.0 9.0 1471 ------- null} + -t 1.68802 -s 7 -d 0 -p ack -e 40 -c 0 -i 2952 -a 0 -x {10.0 9.0 1471 ------- null} h -t 1.68802 -s 7 -d 8 -p ack -e 40 -c 0 -i 2952 -a 0 -x {10.0 9.0 1471 ------- null} r -t 1.68827 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2951 -a 0 -x {9.0 10.0 1480 ------- null} + -t 1.68827 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2951 -a 0 -x {9.0 10.0 1480 ------- null} h -t 1.68827 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2951 -a 0 -x {9.0 10.0 1480 ------- null} r -t 1.68829 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2937 -a 0 -x {9.0 10.0 1473 ------- null} + -t 1.68829 -s 10 -d 7 -p ack -e 40 -c 0 -i 2956 -a 0 -x {10.0 9.0 1473 ------- null} - -t 1.68829 -s 10 -d 7 -p ack -e 40 -c 0 -i 2956 -a 0 -x {10.0 9.0 1473 ------- null} h -t 1.68829 -s 10 -d 7 -p ack -e 40 -c 0 -i 2956 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.6888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2943 -a 0 -x {9.0 10.0 1476 ------- null} - -t 1.6888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2943 -a 0 -x {9.0 10.0 1476 ------- null} h -t 1.6888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2943 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.68891 -s 0 -d 9 -p ack -e 40 -c 0 -i 2946 -a 0 -x {10.0 9.0 1468 ------- null} + -t 1.68891 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2957 -a 0 -x {9.0 10.0 1483 ------- null} - -t 1.68891 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2957 -a 0 -x {9.0 10.0 1483 ------- null} h -t 1.68891 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2957 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.68894 -s 0 -d 9 -p ack -e 40 -c 0 -i 2950 -a 0 -x {10.0 9.0 1470 ------- null} - -t 1.68894 -s 0 -d 9 -p ack -e 40 -c 0 -i 2950 -a 0 -x {10.0 9.0 1470 ------- null} h -t 1.68894 -s 0 -d 9 -p ack -e 40 -c 0 -i 2950 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.6891 -s 10 -d 7 -p ack -e 40 -c 0 -i 2954 -a 0 -x {10.0 9.0 1472 ------- null} + -t 1.6891 -s 7 -d 0 -p ack -e 40 -c 0 -i 2954 -a 0 -x {10.0 9.0 1472 ------- null} h -t 1.6891 -s 7 -d 8 -p ack -e 40 -c 0 -i 2954 -a 0 -x {10.0 9.0 1472 ------- null} r -t 1.68938 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2939 -a 0 -x {9.0 10.0 1474 ------- null} + -t 1.68938 -s 10 -d 7 -p ack -e 40 -c 0 -i 2958 -a 0 -x {10.0 9.0 1474 ------- null} - -t 1.68938 -s 10 -d 7 -p ack -e 40 -c 0 -i 2958 -a 0 -x {10.0 9.0 1474 ------- null} h -t 1.68938 -s 10 -d 7 -p ack -e 40 -c 0 -i 2958 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.68939 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2953 -a 0 -x {9.0 10.0 1481 ------- null} + -t 1.68939 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2953 -a 0 -x {9.0 10.0 1481 ------- null} h -t 1.68939 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2953 -a 0 -x {9.0 10.0 1481 ------- null} r -t 1.68987 -s 0 -d 9 -p ack -e 40 -c 0 -i 2948 -a 0 -x {10.0 9.0 1469 ------- null} + -t 1.68987 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2959 -a 0 -x {9.0 10.0 1484 ------- null} - -t 1.68987 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2959 -a 0 -x {9.0 10.0 1484 ------- null} h -t 1.68987 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2959 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.68989 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2945 -a 0 -x {9.0 10.0 1477 ------- null} - -t 1.68989 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2945 -a 0 -x {9.0 10.0 1477 ------- null} h -t 1.68989 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2945 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.69003 -s 0 -d 9 -p ack -e 40 -c 0 -i 2952 -a 0 -x {10.0 9.0 1471 ------- null} - -t 1.69003 -s 0 -d 9 -p ack -e 40 -c 0 -i 2952 -a 0 -x {10.0 9.0 1471 ------- null} h -t 1.69003 -s 0 -d 9 -p ack -e 40 -c 0 -i 2952 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.69032 -s 10 -d 7 -p ack -e 40 -c 0 -i 2956 -a 0 -x {10.0 9.0 1473 ------- null} + -t 1.69032 -s 7 -d 0 -p ack -e 40 -c 0 -i 2956 -a 0 -x {10.0 9.0 1473 ------- null} h -t 1.69032 -s 7 -d 8 -p ack -e 40 -c 0 -i 2956 -a 0 -x {10.0 9.0 1473 ------- null} r -t 1.69043 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2955 -a 0 -x {9.0 10.0 1482 ------- null} + -t 1.69043 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2955 -a 0 -x {9.0 10.0 1482 ------- null} h -t 1.69043 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2955 -a 0 -x {9.0 10.0 1482 ------- null} r -t 1.69051 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2941 -a 0 -x {9.0 10.0 1475 ------- null} + -t 1.69051 -s 10 -d 7 -p ack -e 40 -c 0 -i 2960 -a 0 -x {10.0 9.0 1475 ------- null} - -t 1.69051 -s 10 -d 7 -p ack -e 40 -c 0 -i 2960 -a 0 -x {10.0 9.0 1475 ------- null} h -t 1.69051 -s 10 -d 7 -p ack -e 40 -c 0 -i 2960 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.69098 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2947 -a 0 -x {9.0 10.0 1478 ------- null} - -t 1.69098 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2947 -a 0 -x {9.0 10.0 1478 ------- null} h -t 1.69098 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2947 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.69098 -s 0 -d 9 -p ack -e 40 -c 0 -i 2950 -a 0 -x {10.0 9.0 1470 ------- null} + -t 1.69098 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2961 -a 0 -x {9.0 10.0 1485 ------- null} - -t 1.69098 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2961 -a 0 -x {9.0 10.0 1485 ------- null} h -t 1.69098 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2961 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.69125 -s 0 -d 9 -p ack -e 40 -c 0 -i 2954 -a 0 -x {10.0 9.0 1472 ------- null} - -t 1.69125 -s 0 -d 9 -p ack -e 40 -c 0 -i 2954 -a 0 -x {10.0 9.0 1472 ------- null} h -t 1.69125 -s 0 -d 9 -p ack -e 40 -c 0 -i 2954 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.69141 -s 10 -d 7 -p ack -e 40 -c 0 -i 2958 -a 0 -x {10.0 9.0 1474 ------- null} + -t 1.69141 -s 7 -d 0 -p ack -e 40 -c 0 -i 2958 -a 0 -x {10.0 9.0 1474 ------- null} h -t 1.69141 -s 7 -d 8 -p ack -e 40 -c 0 -i 2958 -a 0 -x {10.0 9.0 1474 ------- null} r -t 1.6916 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2943 -a 0 -x {9.0 10.0 1476 ------- null} + -t 1.6916 -s 10 -d 7 -p ack -e 40 -c 0 -i 2962 -a 0 -x {10.0 9.0 1476 ------- null} - -t 1.6916 -s 10 -d 7 -p ack -e 40 -c 0 -i 2962 -a 0 -x {10.0 9.0 1476 ------- null} h -t 1.6916 -s 10 -d 7 -p ack -e 40 -c 0 -i 2962 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.69171 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2957 -a 0 -x {9.0 10.0 1483 ------- null} + -t 1.69171 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2957 -a 0 -x {9.0 10.0 1483 ------- null} h -t 1.69171 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2957 -a 0 -x {9.0 10.0 1483 ------- null} r -t 1.69206 -s 0 -d 9 -p ack -e 40 -c 0 -i 2952 -a 0 -x {10.0 9.0 1471 ------- null} + -t 1.69206 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2963 -a 0 -x {9.0 10.0 1486 ------- null} - -t 1.69206 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2963 -a 0 -x {9.0 10.0 1486 ------- null} h -t 1.69206 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2963 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.69222 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2949 -a 0 -x {9.0 10.0 1479 ------- null} - -t 1.69222 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2949 -a 0 -x {9.0 10.0 1479 ------- null} h -t 1.69222 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2949 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.6924 -s 0 -d 9 -p ack -e 40 -c 0 -i 2956 -a 0 -x {10.0 9.0 1473 ------- null} - -t 1.6924 -s 0 -d 9 -p ack -e 40 -c 0 -i 2956 -a 0 -x {10.0 9.0 1473 ------- null} h -t 1.6924 -s 0 -d 9 -p ack -e 40 -c 0 -i 2956 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.69254 -s 10 -d 7 -p ack -e 40 -c 0 -i 2960 -a 0 -x {10.0 9.0 1475 ------- null} + -t 1.69254 -s 7 -d 0 -p ack -e 40 -c 0 -i 2960 -a 0 -x {10.0 9.0 1475 ------- null} h -t 1.69254 -s 7 -d 8 -p ack -e 40 -c 0 -i 2960 -a 0 -x {10.0 9.0 1475 ------- null} r -t 1.69267 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2959 -a 0 -x {9.0 10.0 1484 ------- null} + -t 1.69267 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2959 -a 0 -x {9.0 10.0 1484 ------- null} h -t 1.69267 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2959 -a 0 -x {9.0 10.0 1484 ------- null} r -t 1.69269 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2945 -a 0 -x {9.0 10.0 1477 ------- null} + -t 1.69269 -s 10 -d 7 -p ack -e 40 -c 0 -i 2964 -a 0 -x {10.0 9.0 1477 ------- null} - -t 1.69269 -s 10 -d 7 -p ack -e 40 -c 0 -i 2964 -a 0 -x {10.0 9.0 1477 ------- null} h -t 1.69269 -s 10 -d 7 -p ack -e 40 -c 0 -i 2964 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.69328 -s 0 -d 9 -p ack -e 40 -c 0 -i 2954 -a 0 -x {10.0 9.0 1472 ------- null} + -t 1.69328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2965 -a 0 -x {9.0 10.0 1487 ------- null} - -t 1.69328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2965 -a 0 -x {9.0 10.0 1487 ------- null} h -t 1.69328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2965 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.69331 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2951 -a 0 -x {9.0 10.0 1480 ------- null} - -t 1.69331 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2951 -a 0 -x {9.0 10.0 1480 ------- null} h -t 1.69331 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2951 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.6935 -s 0 -d 9 -p ack -e 40 -c 0 -i 2958 -a 0 -x {10.0 9.0 1474 ------- null} - -t 1.6935 -s 0 -d 9 -p ack -e 40 -c 0 -i 2958 -a 0 -x {10.0 9.0 1474 ------- null} h -t 1.6935 -s 0 -d 9 -p ack -e 40 -c 0 -i 2958 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.69363 -s 10 -d 7 -p ack -e 40 -c 0 -i 2962 -a 0 -x {10.0 9.0 1476 ------- null} + -t 1.69363 -s 7 -d 0 -p ack -e 40 -c 0 -i 2962 -a 0 -x {10.0 9.0 1476 ------- null} h -t 1.69363 -s 7 -d 8 -p ack -e 40 -c 0 -i 2962 -a 0 -x {10.0 9.0 1476 ------- null} r -t 1.69378 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2947 -a 0 -x {9.0 10.0 1478 ------- null} + -t 1.69378 -s 10 -d 7 -p ack -e 40 -c 0 -i 2966 -a 0 -x {10.0 9.0 1478 ------- null} - -t 1.69378 -s 10 -d 7 -p ack -e 40 -c 0 -i 2966 -a 0 -x {10.0 9.0 1478 ------- null} h -t 1.69378 -s 10 -d 7 -p ack -e 40 -c 0 -i 2966 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.69378 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2961 -a 0 -x {9.0 10.0 1485 ------- null} + -t 1.69378 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2961 -a 0 -x {9.0 10.0 1485 ------- null} h -t 1.69378 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2961 -a 0 -x {9.0 10.0 1485 ------- null} + -t 1.6944 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2953 -a 0 -x {9.0 10.0 1481 ------- null} - -t 1.6944 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2953 -a 0 -x {9.0 10.0 1481 ------- null} h -t 1.6944 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2953 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.69443 -s 0 -d 9 -p ack -e 40 -c 0 -i 2956 -a 0 -x {10.0 9.0 1473 ------- null} + -t 1.69443 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2967 -a 0 -x {9.0 10.0 1488 ------- null} - -t 1.69443 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2967 -a 0 -x {9.0 10.0 1488 ------- null} h -t 1.69443 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2967 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.69459 -s 0 -d 9 -p ack -e 40 -c 0 -i 2960 -a 0 -x {10.0 9.0 1475 ------- null} - -t 1.69459 -s 0 -d 9 -p ack -e 40 -c 0 -i 2960 -a 0 -x {10.0 9.0 1475 ------- null} h -t 1.69459 -s 0 -d 9 -p ack -e 40 -c 0 -i 2960 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.69472 -s 10 -d 7 -p ack -e 40 -c 0 -i 2964 -a 0 -x {10.0 9.0 1477 ------- null} + -t 1.69472 -s 7 -d 0 -p ack -e 40 -c 0 -i 2964 -a 0 -x {10.0 9.0 1477 ------- null} h -t 1.69472 -s 7 -d 8 -p ack -e 40 -c 0 -i 2964 -a 0 -x {10.0 9.0 1477 ------- null} r -t 1.69486 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2963 -a 0 -x {9.0 10.0 1486 ------- null} + -t 1.69486 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2963 -a 0 -x {9.0 10.0 1486 ------- null} h -t 1.69486 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2963 -a 0 -x {9.0 10.0 1486 ------- null} r -t 1.69502 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2949 -a 0 -x {9.0 10.0 1479 ------- null} + -t 1.69502 -s 10 -d 7 -p ack -e 40 -c 0 -i 2968 -a 0 -x {10.0 9.0 1479 ------- null} - -t 1.69502 -s 10 -d 7 -p ack -e 40 -c 0 -i 2968 -a 0 -x {10.0 9.0 1479 ------- null} h -t 1.69502 -s 10 -d 7 -p ack -e 40 -c 0 -i 2968 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.69549 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2955 -a 0 -x {9.0 10.0 1482 ------- null} - -t 1.69549 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2955 -a 0 -x {9.0 10.0 1482 ------- null} h -t 1.69549 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2955 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.69554 -s 0 -d 9 -p ack -e 40 -c 0 -i 2958 -a 0 -x {10.0 9.0 1474 ------- null} + -t 1.69554 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2969 -a 0 -x {9.0 10.0 1489 ------- null} - -t 1.69554 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2969 -a 0 -x {9.0 10.0 1489 ------- null} h -t 1.69554 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2969 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.69562 -s 0 -d 9 -p ack -e 40 -c 0 -i 2962 -a 0 -x {10.0 9.0 1476 ------- null} - -t 1.69562 -s 0 -d 9 -p ack -e 40 -c 0 -i 2962 -a 0 -x {10.0 9.0 1476 ------- null} h -t 1.69562 -s 0 -d 9 -p ack -e 40 -c 0 -i 2962 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.69581 -s 10 -d 7 -p ack -e 40 -c 0 -i 2966 -a 0 -x {10.0 9.0 1478 ------- null} + -t 1.69581 -s 7 -d 0 -p ack -e 40 -c 0 -i 2966 -a 0 -x {10.0 9.0 1478 ------- null} h -t 1.69581 -s 7 -d 8 -p ack -e 40 -c 0 -i 2966 -a 0 -x {10.0 9.0 1478 ------- null} r -t 1.69608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2965 -a 0 -x {9.0 10.0 1487 ------- null} + -t 1.69608 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2965 -a 0 -x {9.0 10.0 1487 ------- null} h -t 1.69608 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2965 -a 0 -x {9.0 10.0 1487 ------- null} r -t 1.69611 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2951 -a 0 -x {9.0 10.0 1480 ------- null} + -t 1.69611 -s 10 -d 7 -p ack -e 40 -c 0 -i 2970 -a 0 -x {10.0 9.0 1480 ------- null} - -t 1.69611 -s 10 -d 7 -p ack -e 40 -c 0 -i 2970 -a 0 -x {10.0 9.0 1480 ------- null} h -t 1.69611 -s 10 -d 7 -p ack -e 40 -c 0 -i 2970 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.69658 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2957 -a 0 -x {9.0 10.0 1483 ------- null} - -t 1.69658 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2957 -a 0 -x {9.0 10.0 1483 ------- null} h -t 1.69658 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2957 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.69662 -s 0 -d 9 -p ack -e 40 -c 0 -i 2960 -a 0 -x {10.0 9.0 1475 ------- null} + -t 1.69662 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2971 -a 0 -x {9.0 10.0 1490 ------- null} - -t 1.69662 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2971 -a 0 -x {9.0 10.0 1490 ------- null} h -t 1.69662 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2971 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.69669 -s 0 -d 9 -p ack -e 40 -c 0 -i 2964 -a 0 -x {10.0 9.0 1477 ------- null} - -t 1.69669 -s 0 -d 9 -p ack -e 40 -c 0 -i 2964 -a 0 -x {10.0 9.0 1477 ------- null} h -t 1.69669 -s 0 -d 9 -p ack -e 40 -c 0 -i 2964 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.69706 -s 10 -d 7 -p ack -e 40 -c 0 -i 2968 -a 0 -x {10.0 9.0 1479 ------- null} + -t 1.69706 -s 7 -d 0 -p ack -e 40 -c 0 -i 2968 -a 0 -x {10.0 9.0 1479 ------- null} h -t 1.69706 -s 7 -d 8 -p ack -e 40 -c 0 -i 2968 -a 0 -x {10.0 9.0 1479 ------- null} r -t 1.6972 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2953 -a 0 -x {9.0 10.0 1481 ------- null} + -t 1.6972 -s 10 -d 7 -p ack -e 40 -c 0 -i 2972 -a 0 -x {10.0 9.0 1481 ------- null} - -t 1.6972 -s 10 -d 7 -p ack -e 40 -c 0 -i 2972 -a 0 -x {10.0 9.0 1481 ------- null} h -t 1.6972 -s 10 -d 7 -p ack -e 40 -c 0 -i 2972 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.69723 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2967 -a 0 -x {9.0 10.0 1488 ------- null} + -t 1.69723 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2967 -a 0 -x {9.0 10.0 1488 ------- null} h -t 1.69723 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2967 -a 0 -x {9.0 10.0 1488 ------- null} r -t 1.69765 -s 0 -d 9 -p ack -e 40 -c 0 -i 2962 -a 0 -x {10.0 9.0 1476 ------- null} + -t 1.69765 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2973 -a 0 -x {9.0 10.0 1491 ------- null} - -t 1.69765 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2973 -a 0 -x {9.0 10.0 1491 ------- null} h -t 1.69765 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2973 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.69766 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2959 -a 0 -x {9.0 10.0 1484 ------- null} - -t 1.69766 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2959 -a 0 -x {9.0 10.0 1484 ------- null} h -t 1.69766 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2959 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.69794 -s 0 -d 9 -p ack -e 40 -c 0 -i 2966 -a 0 -x {10.0 9.0 1478 ------- null} - -t 1.69794 -s 0 -d 9 -p ack -e 40 -c 0 -i 2966 -a 0 -x {10.0 9.0 1478 ------- null} h -t 1.69794 -s 0 -d 9 -p ack -e 40 -c 0 -i 2966 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.69814 -s 10 -d 7 -p ack -e 40 -c 0 -i 2970 -a 0 -x {10.0 9.0 1480 ------- null} + -t 1.69814 -s 7 -d 0 -p ack -e 40 -c 0 -i 2970 -a 0 -x {10.0 9.0 1480 ------- null} h -t 1.69814 -s 7 -d 8 -p ack -e 40 -c 0 -i 2970 -a 0 -x {10.0 9.0 1480 ------- null} r -t 1.69829 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2955 -a 0 -x {9.0 10.0 1482 ------- null} + -t 1.69829 -s 10 -d 7 -p ack -e 40 -c 0 -i 2974 -a 0 -x {10.0 9.0 1482 ------- null} - -t 1.69829 -s 10 -d 7 -p ack -e 40 -c 0 -i 2974 -a 0 -x {10.0 9.0 1482 ------- null} h -t 1.69829 -s 10 -d 7 -p ack -e 40 -c 0 -i 2974 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.69834 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2969 -a 0 -x {9.0 10.0 1489 ------- null} + -t 1.69834 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2969 -a 0 -x {9.0 10.0 1489 ------- null} h -t 1.69834 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2969 -a 0 -x {9.0 10.0 1489 ------- null} r -t 1.69872 -s 0 -d 9 -p ack -e 40 -c 0 -i 2964 -a 0 -x {10.0 9.0 1477 ------- null} + -t 1.69872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2975 -a 0 -x {9.0 10.0 1492 ------- null} - -t 1.69872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2975 -a 0 -x {9.0 10.0 1492 ------- null} h -t 1.69872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2975 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.69899 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2961 -a 0 -x {9.0 10.0 1485 ------- null} - -t 1.69899 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2961 -a 0 -x {9.0 10.0 1485 ------- null} h -t 1.69899 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2961 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.69907 -s 0 -d 9 -p ack -e 40 -c 0 -i 2968 -a 0 -x {10.0 9.0 1479 ------- null} - -t 1.69907 -s 0 -d 9 -p ack -e 40 -c 0 -i 2968 -a 0 -x {10.0 9.0 1479 ------- null} h -t 1.69907 -s 0 -d 9 -p ack -e 40 -c 0 -i 2968 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.69923 -s 10 -d 7 -p ack -e 40 -c 0 -i 2972 -a 0 -x {10.0 9.0 1481 ------- null} + -t 1.69923 -s 7 -d 0 -p ack -e 40 -c 0 -i 2972 -a 0 -x {10.0 9.0 1481 ------- null} h -t 1.69923 -s 7 -d 8 -p ack -e 40 -c 0 -i 2972 -a 0 -x {10.0 9.0 1481 ------- null} r -t 1.69938 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2957 -a 0 -x {9.0 10.0 1483 ------- null} + -t 1.69938 -s 10 -d 7 -p ack -e 40 -c 0 -i 2976 -a 0 -x {10.0 9.0 1483 ------- null} - -t 1.69938 -s 10 -d 7 -p ack -e 40 -c 0 -i 2976 -a 0 -x {10.0 9.0 1483 ------- null} h -t 1.69938 -s 10 -d 7 -p ack -e 40 -c 0 -i 2976 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.69942 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2971 -a 0 -x {9.0 10.0 1490 ------- null} + -t 1.69942 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2971 -a 0 -x {9.0 10.0 1490 ------- null} h -t 1.69942 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2971 -a 0 -x {9.0 10.0 1490 ------- null} r -t 1.69997 -s 0 -d 9 -p ack -e 40 -c 0 -i 2966 -a 0 -x {10.0 9.0 1478 ------- null} + -t 1.69997 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2977 -a 0 -x {9.0 10.0 1493 ------- null} - -t 1.69997 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2977 -a 0 -x {9.0 10.0 1493 ------- null} h -t 1.69997 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2977 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.70008 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2963 -a 0 -x {9.0 10.0 1486 ------- null} - -t 1.70008 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2963 -a 0 -x {9.0 10.0 1486 ------- null} h -t 1.70008 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2963 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.70032 -s 10 -d 7 -p ack -e 40 -c 0 -i 2974 -a 0 -x {10.0 9.0 1482 ------- null} + -t 1.70032 -s 7 -d 0 -p ack -e 40 -c 0 -i 2974 -a 0 -x {10.0 9.0 1482 ------- null} h -t 1.70032 -s 7 -d 8 -p ack -e 40 -c 0 -i 2974 -a 0 -x {10.0 9.0 1482 ------- null} + -t 1.70035 -s 0 -d 9 -p ack -e 40 -c 0 -i 2970 -a 0 -x {10.0 9.0 1480 ------- null} - -t 1.70035 -s 0 -d 9 -p ack -e 40 -c 0 -i 2970 -a 0 -x {10.0 9.0 1480 ------- null} h -t 1.70035 -s 0 -d 9 -p ack -e 40 -c 0 -i 2970 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.70045 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2973 -a 0 -x {9.0 10.0 1491 ------- null} + -t 1.70045 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2973 -a 0 -x {9.0 10.0 1491 ------- null} h -t 1.70045 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2973 -a 0 -x {9.0 10.0 1491 ------- null} r -t 1.70046 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2959 -a 0 -x {9.0 10.0 1484 ------- null} + -t 1.70046 -s 10 -d 7 -p ack -e 40 -c 0 -i 2978 -a 0 -x {10.0 9.0 1484 ------- null} - -t 1.70046 -s 10 -d 7 -p ack -e 40 -c 0 -i 2978 -a 0 -x {10.0 9.0 1484 ------- null} h -t 1.70046 -s 10 -d 7 -p ack -e 40 -c 0 -i 2978 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.7011 -s 0 -d 9 -p ack -e 40 -c 0 -i 2968 -a 0 -x {10.0 9.0 1479 ------- null} + -t 1.7011 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2979 -a 0 -x {9.0 10.0 1494 ------- null} - -t 1.7011 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2979 -a 0 -x {9.0 10.0 1494 ------- null} h -t 1.7011 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2979 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.70136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2965 -a 0 -x {9.0 10.0 1487 ------- null} - -t 1.70136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2965 -a 0 -x {9.0 10.0 1487 ------- null} h -t 1.70136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2965 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.70141 -s 10 -d 7 -p ack -e 40 -c 0 -i 2976 -a 0 -x {10.0 9.0 1483 ------- null} + -t 1.70141 -s 7 -d 0 -p ack -e 40 -c 0 -i 2976 -a 0 -x {10.0 9.0 1483 ------- null} h -t 1.70141 -s 7 -d 8 -p ack -e 40 -c 0 -i 2976 -a 0 -x {10.0 9.0 1483 ------- null} r -t 1.70152 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2975 -a 0 -x {9.0 10.0 1492 ------- null} + -t 1.70152 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2975 -a 0 -x {9.0 10.0 1492 ------- null} h -t 1.70152 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2975 -a 0 -x {9.0 10.0 1492 ------- null} + -t 1.70157 -s 0 -d 9 -p ack -e 40 -c 0 -i 2972 -a 0 -x {10.0 9.0 1481 ------- null} - -t 1.70157 -s 0 -d 9 -p ack -e 40 -c 0 -i 2972 -a 0 -x {10.0 9.0 1481 ------- null} h -t 1.70157 -s 0 -d 9 -p ack -e 40 -c 0 -i 2972 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.70179 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2961 -a 0 -x {9.0 10.0 1485 ------- null} + -t 1.70179 -s 10 -d 7 -p ack -e 40 -c 0 -i 2980 -a 0 -x {10.0 9.0 1485 ------- null} - -t 1.70179 -s 10 -d 7 -p ack -e 40 -c 0 -i 2980 -a 0 -x {10.0 9.0 1485 ------- null} h -t 1.70179 -s 10 -d 7 -p ack -e 40 -c 0 -i 2980 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.70238 -s 0 -d 9 -p ack -e 40 -c 0 -i 2970 -a 0 -x {10.0 9.0 1480 ------- null} + -t 1.70238 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2981 -a 0 -x {9.0 10.0 1495 ------- null} - -t 1.70238 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2981 -a 0 -x {9.0 10.0 1495 ------- null} h -t 1.70238 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2981 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.70245 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2967 -a 0 -x {9.0 10.0 1488 ------- null} - -t 1.70245 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2967 -a 0 -x {9.0 10.0 1488 ------- null} h -t 1.70245 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2967 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.7025 -s 10 -d 7 -p ack -e 40 -c 0 -i 2978 -a 0 -x {10.0 9.0 1484 ------- null} + -t 1.7025 -s 7 -d 0 -p ack -e 40 -c 0 -i 2978 -a 0 -x {10.0 9.0 1484 ------- null} h -t 1.7025 -s 7 -d 8 -p ack -e 40 -c 0 -i 2978 -a 0 -x {10.0 9.0 1484 ------- null} + -t 1.70275 -s 0 -d 9 -p ack -e 40 -c 0 -i 2974 -a 0 -x {10.0 9.0 1482 ------- null} - -t 1.70275 -s 0 -d 9 -p ack -e 40 -c 0 -i 2974 -a 0 -x {10.0 9.0 1482 ------- null} h -t 1.70275 -s 0 -d 9 -p ack -e 40 -c 0 -i 2974 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.70277 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2977 -a 0 -x {9.0 10.0 1493 ------- null} + -t 1.70277 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2977 -a 0 -x {9.0 10.0 1493 ------- null} h -t 1.70277 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2977 -a 0 -x {9.0 10.0 1493 ------- null} r -t 1.70288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2963 -a 0 -x {9.0 10.0 1486 ------- null} + -t 1.70288 -s 10 -d 7 -p ack -e 40 -c 0 -i 2982 -a 0 -x {10.0 9.0 1486 ------- null} - -t 1.70288 -s 10 -d 7 -p ack -e 40 -c 0 -i 2982 -a 0 -x {10.0 9.0 1486 ------- null} h -t 1.70288 -s 10 -d 7 -p ack -e 40 -c 0 -i 2982 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.7036 -s 0 -d 9 -p ack -e 40 -c 0 -i 2972 -a 0 -x {10.0 9.0 1481 ------- null} + -t 1.7036 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2983 -a 0 -x {9.0 10.0 1496 ------- null} - -t 1.7036 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2983 -a 0 -x {9.0 10.0 1496 ------- null} h -t 1.7036 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2983 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.70381 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2969 -a 0 -x {9.0 10.0 1489 ------- null} - -t 1.70381 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2969 -a 0 -x {9.0 10.0 1489 ------- null} h -t 1.70381 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2969 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.70382 -s 10 -d 7 -p ack -e 40 -c 0 -i 2980 -a 0 -x {10.0 9.0 1485 ------- null} + -t 1.70382 -s 7 -d 0 -p ack -e 40 -c 0 -i 2980 -a 0 -x {10.0 9.0 1485 ------- null} h -t 1.70382 -s 7 -d 8 -p ack -e 40 -c 0 -i 2980 -a 0 -x {10.0 9.0 1485 ------- null} r -t 1.7039 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2979 -a 0 -x {9.0 10.0 1494 ------- null} + -t 1.7039 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2979 -a 0 -x {9.0 10.0 1494 ------- null} h -t 1.7039 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2979 -a 0 -x {9.0 10.0 1494 ------- null} + -t 1.70392 -s 0 -d 9 -p ack -e 40 -c 0 -i 2976 -a 0 -x {10.0 9.0 1483 ------- null} - -t 1.70392 -s 0 -d 9 -p ack -e 40 -c 0 -i 2976 -a 0 -x {10.0 9.0 1483 ------- null} h -t 1.70392 -s 0 -d 9 -p ack -e 40 -c 0 -i 2976 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.70416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2965 -a 0 -x {9.0 10.0 1487 ------- null} + -t 1.70416 -s 10 -d 7 -p ack -e 40 -c 0 -i 2984 -a 0 -x {10.0 9.0 1487 ------- null} - -t 1.70416 -s 10 -d 7 -p ack -e 40 -c 0 -i 2984 -a 0 -x {10.0 9.0 1487 ------- null} h -t 1.70416 -s 10 -d 7 -p ack -e 40 -c 0 -i 2984 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.70478 -s 0 -d 9 -p ack -e 40 -c 0 -i 2974 -a 0 -x {10.0 9.0 1482 ------- null} + -t 1.70478 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2985 -a 0 -x {9.0 10.0 1497 ------- null} - -t 1.70478 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2985 -a 0 -x {9.0 10.0 1497 ------- null} h -t 1.70478 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2985 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.7049 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2971 -a 0 -x {9.0 10.0 1490 ------- null} - -t 1.7049 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2971 -a 0 -x {9.0 10.0 1490 ------- null} h -t 1.7049 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2971 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.70491 -s 10 -d 7 -p ack -e 40 -c 0 -i 2982 -a 0 -x {10.0 9.0 1486 ------- null} + -t 1.70491 -s 7 -d 0 -p ack -e 40 -c 0 -i 2982 -a 0 -x {10.0 9.0 1486 ------- null} h -t 1.70491 -s 7 -d 8 -p ack -e 40 -c 0 -i 2982 -a 0 -x {10.0 9.0 1486 ------- null} + -t 1.70515 -s 0 -d 9 -p ack -e 40 -c 0 -i 2978 -a 0 -x {10.0 9.0 1484 ------- null} - -t 1.70515 -s 0 -d 9 -p ack -e 40 -c 0 -i 2978 -a 0 -x {10.0 9.0 1484 ------- null} h -t 1.70515 -s 0 -d 9 -p ack -e 40 -c 0 -i 2978 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.70518 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2981 -a 0 -x {9.0 10.0 1495 ------- null} + -t 1.70518 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2981 -a 0 -x {9.0 10.0 1495 ------- null} h -t 1.70518 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2981 -a 0 -x {9.0 10.0 1495 ------- null} r -t 1.70525 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2967 -a 0 -x {9.0 10.0 1488 ------- null} + -t 1.70525 -s 10 -d 7 -p ack -e 40 -c 0 -i 2986 -a 0 -x {10.0 9.0 1488 ------- null} - -t 1.70525 -s 10 -d 7 -p ack -e 40 -c 0 -i 2986 -a 0 -x {10.0 9.0 1488 ------- null} h -t 1.70525 -s 10 -d 7 -p ack -e 40 -c 0 -i 2986 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.70595 -s 0 -d 9 -p ack -e 40 -c 0 -i 2976 -a 0 -x {10.0 9.0 1483 ------- null} + -t 1.70595 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2987 -a 0 -x {9.0 10.0 1498 ------- null} - -t 1.70595 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2987 -a 0 -x {9.0 10.0 1498 ------- null} h -t 1.70595 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2987 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.70598 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2973 -a 0 -x {9.0 10.0 1491 ------- null} - -t 1.70598 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2973 -a 0 -x {9.0 10.0 1491 ------- null} h -t 1.70598 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2973 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.70606 -s 0 -d 9 -p ack -e 40 -c 0 -i 2980 -a 0 -x {10.0 9.0 1485 ------- null} - -t 1.70606 -s 0 -d 9 -p ack -e 40 -c 0 -i 2980 -a 0 -x {10.0 9.0 1485 ------- null} h -t 1.70606 -s 0 -d 9 -p ack -e 40 -c 0 -i 2980 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.70619 -s 10 -d 7 -p ack -e 40 -c 0 -i 2984 -a 0 -x {10.0 9.0 1487 ------- null} + -t 1.70619 -s 7 -d 0 -p ack -e 40 -c 0 -i 2984 -a 0 -x {10.0 9.0 1487 ------- null} h -t 1.70619 -s 7 -d 8 -p ack -e 40 -c 0 -i 2984 -a 0 -x {10.0 9.0 1487 ------- null} r -t 1.7064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2983 -a 0 -x {9.0 10.0 1496 ------- null} + -t 1.7064 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2983 -a 0 -x {9.0 10.0 1496 ------- null} h -t 1.7064 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2983 -a 0 -x {9.0 10.0 1496 ------- null} r -t 1.70661 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2969 -a 0 -x {9.0 10.0 1489 ------- null} + -t 1.70661 -s 10 -d 7 -p ack -e 40 -c 0 -i 2988 -a 0 -x {10.0 9.0 1489 ------- null} - -t 1.70661 -s 10 -d 7 -p ack -e 40 -c 0 -i 2988 -a 0 -x {10.0 9.0 1489 ------- null} h -t 1.70661 -s 10 -d 7 -p ack -e 40 -c 0 -i 2988 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.70707 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2975 -a 0 -x {9.0 10.0 1492 ------- null} - -t 1.70707 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2975 -a 0 -x {9.0 10.0 1492 ------- null} h -t 1.70707 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2975 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.70718 -s 0 -d 9 -p ack -e 40 -c 0 -i 2978 -a 0 -x {10.0 9.0 1484 ------- null} + -t 1.70718 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2989 -a 0 -x {9.0 10.0 1499 ------- null} - -t 1.70718 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2989 -a 0 -x {9.0 10.0 1499 ------- null} h -t 1.70718 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2989 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.70728 -s 10 -d 7 -p ack -e 40 -c 0 -i 2986 -a 0 -x {10.0 9.0 1488 ------- null} + -t 1.70728 -s 7 -d 0 -p ack -e 40 -c 0 -i 2986 -a 0 -x {10.0 9.0 1488 ------- null} h -t 1.70728 -s 7 -d 8 -p ack -e 40 -c 0 -i 2986 -a 0 -x {10.0 9.0 1488 ------- null} + -t 1.70728 -s 0 -d 9 -p ack -e 40 -c 0 -i 2982 -a 0 -x {10.0 9.0 1486 ------- null} - -t 1.70728 -s 0 -d 9 -p ack -e 40 -c 0 -i 2982 -a 0 -x {10.0 9.0 1486 ------- null} h -t 1.70728 -s 0 -d 9 -p ack -e 40 -c 0 -i 2982 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.70758 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2985 -a 0 -x {9.0 10.0 1497 ------- null} + -t 1.70758 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2985 -a 0 -x {9.0 10.0 1497 ------- null} h -t 1.70758 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2985 -a 0 -x {9.0 10.0 1497 ------- null} r -t 1.7077 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2971 -a 0 -x {9.0 10.0 1490 ------- null} + -t 1.7077 -s 10 -d 7 -p ack -e 40 -c 0 -i 2990 -a 0 -x {10.0 9.0 1490 ------- null} - -t 1.7077 -s 10 -d 7 -p ack -e 40 -c 0 -i 2990 -a 0 -x {10.0 9.0 1490 ------- null} h -t 1.7077 -s 10 -d 7 -p ack -e 40 -c 0 -i 2990 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.7081 -s 0 -d 9 -p ack -e 40 -c 0 -i 2980 -a 0 -x {10.0 9.0 1485 ------- null} + -t 1.7081 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2991 -a 0 -x {9.0 10.0 1500 ------- null} - -t 1.7081 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2991 -a 0 -x {9.0 10.0 1500 ------- null} h -t 1.7081 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2991 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.70816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2977 -a 0 -x {9.0 10.0 1493 ------- null} - -t 1.70816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2977 -a 0 -x {9.0 10.0 1493 ------- null} h -t 1.70816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2977 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.70834 -s 0 -d 9 -p ack -e 40 -c 0 -i 2984 -a 0 -x {10.0 9.0 1487 ------- null} - -t 1.70834 -s 0 -d 9 -p ack -e 40 -c 0 -i 2984 -a 0 -x {10.0 9.0 1487 ------- null} h -t 1.70834 -s 0 -d 9 -p ack -e 40 -c 0 -i 2984 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.70864 -s 10 -d 7 -p ack -e 40 -c 0 -i 2988 -a 0 -x {10.0 9.0 1489 ------- null} + -t 1.70864 -s 7 -d 0 -p ack -e 40 -c 0 -i 2988 -a 0 -x {10.0 9.0 1489 ------- null} h -t 1.70864 -s 7 -d 8 -p ack -e 40 -c 0 -i 2988 -a 0 -x {10.0 9.0 1489 ------- null} r -t 1.70875 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2987 -a 0 -x {9.0 10.0 1498 ------- null} + -t 1.70875 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2987 -a 0 -x {9.0 10.0 1498 ------- null} h -t 1.70875 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2987 -a 0 -x {9.0 10.0 1498 ------- null} r -t 1.70878 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2973 -a 0 -x {9.0 10.0 1491 ------- null} + -t 1.70878 -s 10 -d 7 -p ack -e 40 -c 0 -i 2992 -a 0 -x {10.0 9.0 1491 ------- null} - -t 1.70878 -s 10 -d 7 -p ack -e 40 -c 0 -i 2992 -a 0 -x {10.0 9.0 1491 ------- null} h -t 1.70878 -s 10 -d 7 -p ack -e 40 -c 0 -i 2992 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.70925 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2979 -a 0 -x {9.0 10.0 1494 ------- null} - -t 1.70925 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2979 -a 0 -x {9.0 10.0 1494 ------- null} h -t 1.70925 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2979 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.70931 -s 0 -d 9 -p ack -e 40 -c 0 -i 2982 -a 0 -x {10.0 9.0 1486 ------- null} + -t 1.70931 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2993 -a 0 -x {9.0 10.0 1501 ------- null} - -t 1.70931 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2993 -a 0 -x {9.0 10.0 1501 ------- null} h -t 1.70931 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2993 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.70952 -s 0 -d 9 -p ack -e 40 -c 0 -i 2986 -a 0 -x {10.0 9.0 1488 ------- null} - -t 1.70952 -s 0 -d 9 -p ack -e 40 -c 0 -i 2986 -a 0 -x {10.0 9.0 1488 ------- null} h -t 1.70952 -s 0 -d 9 -p ack -e 40 -c 0 -i 2986 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.70973 -s 10 -d 7 -p ack -e 40 -c 0 -i 2990 -a 0 -x {10.0 9.0 1490 ------- null} + -t 1.70973 -s 7 -d 0 -p ack -e 40 -c 0 -i 2990 -a 0 -x {10.0 9.0 1490 ------- null} h -t 1.70973 -s 7 -d 8 -p ack -e 40 -c 0 -i 2990 -a 0 -x {10.0 9.0 1490 ------- null} r -t 1.70987 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2975 -a 0 -x {9.0 10.0 1492 ------- null} + -t 1.70987 -s 10 -d 7 -p ack -e 40 -c 0 -i 2994 -a 0 -x {10.0 9.0 1492 ------- null} - -t 1.70987 -s 10 -d 7 -p ack -e 40 -c 0 -i 2994 -a 0 -x {10.0 9.0 1492 ------- null} h -t 1.70987 -s 10 -d 7 -p ack -e 40 -c 0 -i 2994 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.70998 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2989 -a 0 -x {9.0 10.0 1499 ------- null} + -t 1.70998 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2989 -a 0 -x {9.0 10.0 1499 ------- null} h -t 1.70998 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2989 -a 0 -x {9.0 10.0 1499 ------- null} r -t 1.71037 -s 0 -d 9 -p ack -e 40 -c 0 -i 2984 -a 0 -x {10.0 9.0 1487 ------- null} + -t 1.71037 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2995 -a 0 -x {9.0 10.0 1502 ------- null} - -t 1.71037 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2995 -a 0 -x {9.0 10.0 1502 ------- null} h -t 1.71037 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2995 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.71038 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2981 -a 0 -x {9.0 10.0 1495 ------- null} - -t 1.71038 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2981 -a 0 -x {9.0 10.0 1495 ------- null} h -t 1.71038 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2981 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.71061 -s 0 -d 9 -p ack -e 40 -c 0 -i 2988 -a 0 -x {10.0 9.0 1489 ------- null} - -t 1.71061 -s 0 -d 9 -p ack -e 40 -c 0 -i 2988 -a 0 -x {10.0 9.0 1489 ------- null} h -t 1.71061 -s 0 -d 9 -p ack -e 40 -c 0 -i 2988 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.71082 -s 10 -d 7 -p ack -e 40 -c 0 -i 2992 -a 0 -x {10.0 9.0 1491 ------- null} + -t 1.71082 -s 7 -d 0 -p ack -e 40 -c 0 -i 2992 -a 0 -x {10.0 9.0 1491 ------- null} h -t 1.71082 -s 7 -d 8 -p ack -e 40 -c 0 -i 2992 -a 0 -x {10.0 9.0 1491 ------- null} r -t 1.7109 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2991 -a 0 -x {9.0 10.0 1500 ------- null} + -t 1.7109 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2991 -a 0 -x {9.0 10.0 1500 ------- null} h -t 1.7109 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2991 -a 0 -x {9.0 10.0 1500 ------- null} r -t 1.71096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2977 -a 0 -x {9.0 10.0 1493 ------- null} + -t 1.71096 -s 10 -d 7 -p ack -e 40 -c 0 -i 2996 -a 0 -x {10.0 9.0 1493 ------- null} - -t 1.71096 -s 10 -d 7 -p ack -e 40 -c 0 -i 2996 -a 0 -x {10.0 9.0 1493 ------- null} h -t 1.71096 -s 10 -d 7 -p ack -e 40 -c 0 -i 2996 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.71147 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2983 -a 0 -x {9.0 10.0 1496 ------- null} - -t 1.71147 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2983 -a 0 -x {9.0 10.0 1496 ------- null} h -t 1.71147 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2983 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.71155 -s 0 -d 9 -p ack -e 40 -c 0 -i 2986 -a 0 -x {10.0 9.0 1488 ------- null} + -t 1.71155 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2997 -a 0 -x {9.0 10.0 1503 ------- null} - -t 1.71155 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2997 -a 0 -x {9.0 10.0 1503 ------- null} h -t 1.71155 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2997 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.71176 -s 0 -d 9 -p ack -e 40 -c 0 -i 2990 -a 0 -x {10.0 9.0 1490 ------- null} - -t 1.71176 -s 0 -d 9 -p ack -e 40 -c 0 -i 2990 -a 0 -x {10.0 9.0 1490 ------- null} h -t 1.71176 -s 0 -d 9 -p ack -e 40 -c 0 -i 2990 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.7119 -s 10 -d 7 -p ack -e 40 -c 0 -i 2994 -a 0 -x {10.0 9.0 1492 ------- null} + -t 1.7119 -s 7 -d 0 -p ack -e 40 -c 0 -i 2994 -a 0 -x {10.0 9.0 1492 ------- null} h -t 1.7119 -s 7 -d 8 -p ack -e 40 -c 0 -i 2994 -a 0 -x {10.0 9.0 1492 ------- null} r -t 1.71205 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2979 -a 0 -x {9.0 10.0 1494 ------- null} + -t 1.71205 -s 10 -d 7 -p ack -e 40 -c 0 -i 2998 -a 0 -x {10.0 9.0 1494 ------- null} - -t 1.71205 -s 10 -d 7 -p ack -e 40 -c 0 -i 2998 -a 0 -x {10.0 9.0 1494 ------- null} h -t 1.71205 -s 10 -d 7 -p ack -e 40 -c 0 -i 2998 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.71211 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2993 -a 0 -x {9.0 10.0 1501 ------- null} + -t 1.71211 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2993 -a 0 -x {9.0 10.0 1501 ------- null} h -t 1.71211 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2993 -a 0 -x {9.0 10.0 1501 ------- null} r -t 1.71264 -s 0 -d 9 -p ack -e 40 -c 0 -i 2988 -a 0 -x {10.0 9.0 1489 ------- null} + -t 1.71264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2999 -a 0 -x {9.0 10.0 1504 ------- null} - -t 1.71264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2999 -a 0 -x {9.0 10.0 1504 ------- null} h -t 1.71264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2999 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.71274 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2985 -a 0 -x {9.0 10.0 1497 ------- null} - -t 1.71274 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2985 -a 0 -x {9.0 10.0 1497 ------- null} h -t 1.71274 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2985 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.7129 -s 0 -d 9 -p ack -e 40 -c 0 -i 2992 -a 0 -x {10.0 9.0 1491 ------- null} - -t 1.7129 -s 0 -d 9 -p ack -e 40 -c 0 -i 2992 -a 0 -x {10.0 9.0 1491 ------- null} h -t 1.7129 -s 0 -d 9 -p ack -e 40 -c 0 -i 2992 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.71299 -s 10 -d 7 -p ack -e 40 -c 0 -i 2996 -a 0 -x {10.0 9.0 1493 ------- null} + -t 1.71299 -s 7 -d 0 -p ack -e 40 -c 0 -i 2996 -a 0 -x {10.0 9.0 1493 ------- null} h -t 1.71299 -s 7 -d 8 -p ack -e 40 -c 0 -i 2996 -a 0 -x {10.0 9.0 1493 ------- null} r -t 1.71317 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2995 -a 0 -x {9.0 10.0 1502 ------- null} + -t 1.71317 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2995 -a 0 -x {9.0 10.0 1502 ------- null} h -t 1.71317 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2995 -a 0 -x {9.0 10.0 1502 ------- null} r -t 1.71318 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2981 -a 0 -x {9.0 10.0 1495 ------- null} + -t 1.71318 -s 10 -d 7 -p ack -e 40 -c 0 -i 3000 -a 0 -x {10.0 9.0 1495 ------- null} - -t 1.71318 -s 10 -d 7 -p ack -e 40 -c 0 -i 3000 -a 0 -x {10.0 9.0 1495 ------- null} h -t 1.71318 -s 10 -d 7 -p ack -e 40 -c 0 -i 3000 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.71379 -s 0 -d 9 -p ack -e 40 -c 0 -i 2990 -a 0 -x {10.0 9.0 1490 ------- null} + -t 1.71379 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3001 -a 0 -x {9.0 10.0 1505 ------- null} - -t 1.71379 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3001 -a 0 -x {9.0 10.0 1505 ------- null} h -t 1.71379 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3001 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.71382 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2987 -a 0 -x {9.0 10.0 1498 ------- null} - -t 1.71382 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2987 -a 0 -x {9.0 10.0 1498 ------- null} h -t 1.71382 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2987 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.71408 -s 10 -d 7 -p ack -e 40 -c 0 -i 2998 -a 0 -x {10.0 9.0 1494 ------- null} + -t 1.71408 -s 7 -d 0 -p ack -e 40 -c 0 -i 2998 -a 0 -x {10.0 9.0 1494 ------- null} h -t 1.71408 -s 7 -d 8 -p ack -e 40 -c 0 -i 2998 -a 0 -x {10.0 9.0 1494 ------- null} + -t 1.71411 -s 0 -d 9 -p ack -e 40 -c 0 -i 2994 -a 0 -x {10.0 9.0 1492 ------- null} - -t 1.71411 -s 0 -d 9 -p ack -e 40 -c 0 -i 2994 -a 0 -x {10.0 9.0 1492 ------- null} h -t 1.71411 -s 0 -d 9 -p ack -e 40 -c 0 -i 2994 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.71427 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2983 -a 0 -x {9.0 10.0 1496 ------- null} + -t 1.71427 -s 10 -d 7 -p ack -e 40 -c 0 -i 3002 -a 0 -x {10.0 9.0 1496 ------- null} - -t 1.71427 -s 10 -d 7 -p ack -e 40 -c 0 -i 3002 -a 0 -x {10.0 9.0 1496 ------- null} h -t 1.71427 -s 10 -d 7 -p ack -e 40 -c 0 -i 3002 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.71435 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2997 -a 0 -x {9.0 10.0 1503 ------- null} + -t 1.71435 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2997 -a 0 -x {9.0 10.0 1503 ------- null} h -t 1.71435 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2997 -a 0 -x {9.0 10.0 1503 ------- null} r -t 1.71493 -s 0 -d 9 -p ack -e 40 -c 0 -i 2992 -a 0 -x {10.0 9.0 1491 ------- null} + -t 1.71493 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3003 -a 0 -x {9.0 10.0 1506 ------- null} - -t 1.71493 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3003 -a 0 -x {9.0 10.0 1506 ------- null} h -t 1.71493 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3003 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.71502 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2989 -a 0 -x {9.0 10.0 1499 ------- null} - -t 1.71502 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2989 -a 0 -x {9.0 10.0 1499 ------- null} h -t 1.71502 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2989 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.71514 -s 0 -d 9 -p ack -e 40 -c 0 -i 2996 -a 0 -x {10.0 9.0 1493 ------- null} - -t 1.71514 -s 0 -d 9 -p ack -e 40 -c 0 -i 2996 -a 0 -x {10.0 9.0 1493 ------- null} h -t 1.71514 -s 0 -d 9 -p ack -e 40 -c 0 -i 2996 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.71522 -s 10 -d 7 -p ack -e 40 -c 0 -i 3000 -a 0 -x {10.0 9.0 1495 ------- null} + -t 1.71522 -s 7 -d 0 -p ack -e 40 -c 0 -i 3000 -a 0 -x {10.0 9.0 1495 ------- null} h -t 1.71522 -s 7 -d 8 -p ack -e 40 -c 0 -i 3000 -a 0 -x {10.0 9.0 1495 ------- null} r -t 1.71544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2999 -a 0 -x {9.0 10.0 1504 ------- null} + -t 1.71544 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 2999 -a 0 -x {9.0 10.0 1504 ------- null} h -t 1.71544 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2999 -a 0 -x {9.0 10.0 1504 ------- null} r -t 1.71554 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2985 -a 0 -x {9.0 10.0 1497 ------- null} + -t 1.71554 -s 10 -d 7 -p ack -e 40 -c 0 -i 3004 -a 0 -x {10.0 9.0 1497 ------- null} - -t 1.71554 -s 10 -d 7 -p ack -e 40 -c 0 -i 3004 -a 0 -x {10.0 9.0 1497 ------- null} h -t 1.71554 -s 10 -d 7 -p ack -e 40 -c 0 -i 3004 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.71611 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2991 -a 0 -x {9.0 10.0 1500 ------- null} - -t 1.71611 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2991 -a 0 -x {9.0 10.0 1500 ------- null} h -t 1.71611 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2991 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.71614 -s 0 -d 9 -p ack -e 40 -c 0 -i 2994 -a 0 -x {10.0 9.0 1492 ------- null} + -t 1.71614 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3005 -a 0 -x {9.0 10.0 1507 ------- null} - -t 1.71614 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3005 -a 0 -x {9.0 10.0 1507 ------- null} h -t 1.71614 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3005 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.7163 -s 10 -d 7 -p ack -e 40 -c 0 -i 3002 -a 0 -x {10.0 9.0 1496 ------- null} + -t 1.7163 -s 7 -d 0 -p ack -e 40 -c 0 -i 3002 -a 0 -x {10.0 9.0 1496 ------- null} h -t 1.7163 -s 7 -d 8 -p ack -e 40 -c 0 -i 3002 -a 0 -x {10.0 9.0 1496 ------- null} + -t 1.71635 -s 0 -d 9 -p ack -e 40 -c 0 -i 2998 -a 0 -x {10.0 9.0 1494 ------- null} - -t 1.71635 -s 0 -d 9 -p ack -e 40 -c 0 -i 2998 -a 0 -x {10.0 9.0 1494 ------- null} h -t 1.71635 -s 0 -d 9 -p ack -e 40 -c 0 -i 2998 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.71659 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3001 -a 0 -x {9.0 10.0 1505 ------- null} + -t 1.71659 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3001 -a 0 -x {9.0 10.0 1505 ------- null} h -t 1.71659 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3001 -a 0 -x {9.0 10.0 1505 ------- null} r -t 1.71662 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2987 -a 0 -x {9.0 10.0 1498 ------- null} + -t 1.71662 -s 10 -d 7 -p ack -e 40 -c 0 -i 3006 -a 0 -x {10.0 9.0 1498 ------- null} - -t 1.71662 -s 10 -d 7 -p ack -e 40 -c 0 -i 3006 -a 0 -x {10.0 9.0 1498 ------- null} h -t 1.71662 -s 10 -d 7 -p ack -e 40 -c 0 -i 3006 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.71717 -s 0 -d 9 -p ack -e 40 -c 0 -i 2996 -a 0 -x {10.0 9.0 1493 ------- null} + -t 1.71717 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3007 -a 0 -x {9.0 10.0 1508 ------- null} - -t 1.71717 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3007 -a 0 -x {9.0 10.0 1508 ------- null} h -t 1.71717 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3007 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.7172 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2993 -a 0 -x {9.0 10.0 1501 ------- null} - -t 1.7172 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2993 -a 0 -x {9.0 10.0 1501 ------- null} h -t 1.7172 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2993 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.71738 -s 0 -d 9 -p ack -e 40 -c 0 -i 3000 -a 0 -x {10.0 9.0 1495 ------- null} - -t 1.71738 -s 0 -d 9 -p ack -e 40 -c 0 -i 3000 -a 0 -x {10.0 9.0 1495 ------- null} h -t 1.71738 -s 0 -d 9 -p ack -e 40 -c 0 -i 3000 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.71757 -s 10 -d 7 -p ack -e 40 -c 0 -i 3004 -a 0 -x {10.0 9.0 1497 ------- null} + -t 1.71757 -s 7 -d 0 -p ack -e 40 -c 0 -i 3004 -a 0 -x {10.0 9.0 1497 ------- null} h -t 1.71757 -s 7 -d 8 -p ack -e 40 -c 0 -i 3004 -a 0 -x {10.0 9.0 1497 ------- null} r -t 1.71773 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3003 -a 0 -x {9.0 10.0 1506 ------- null} + -t 1.71773 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3003 -a 0 -x {9.0 10.0 1506 ------- null} h -t 1.71773 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3003 -a 0 -x {9.0 10.0 1506 ------- null} r -t 1.71782 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2989 -a 0 -x {9.0 10.0 1499 ------- null} + -t 1.71782 -s 10 -d 7 -p ack -e 40 -c 0 -i 3008 -a 0 -x {10.0 9.0 1499 ------- null} - -t 1.71782 -s 10 -d 7 -p ack -e 40 -c 0 -i 3008 -a 0 -x {10.0 9.0 1499 ------- null} h -t 1.71782 -s 10 -d 7 -p ack -e 40 -c 0 -i 3008 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.71829 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2995 -a 0 -x {9.0 10.0 1502 ------- null} - -t 1.71829 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2995 -a 0 -x {9.0 10.0 1502 ------- null} h -t 1.71829 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2995 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.71838 -s 0 -d 9 -p ack -e 40 -c 0 -i 2998 -a 0 -x {10.0 9.0 1494 ------- null} + -t 1.71838 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3009 -a 0 -x {9.0 10.0 1509 ------- null} - -t 1.71838 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3009 -a 0 -x {9.0 10.0 1509 ------- null} h -t 1.71838 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3009 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.7184 -s 0 -d 9 -p ack -e 40 -c 0 -i 3002 -a 0 -x {10.0 9.0 1496 ------- null} - -t 1.7184 -s 0 -d 9 -p ack -e 40 -c 0 -i 3002 -a 0 -x {10.0 9.0 1496 ------- null} h -t 1.7184 -s 0 -d 9 -p ack -e 40 -c 0 -i 3002 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.71866 -s 10 -d 7 -p ack -e 40 -c 0 -i 3006 -a 0 -x {10.0 9.0 1498 ------- null} + -t 1.71866 -s 7 -d 0 -p ack -e 40 -c 0 -i 3006 -a 0 -x {10.0 9.0 1498 ------- null} h -t 1.71866 -s 7 -d 8 -p ack -e 40 -c 0 -i 3006 -a 0 -x {10.0 9.0 1498 ------- null} r -t 1.71891 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2991 -a 0 -x {9.0 10.0 1500 ------- null} + -t 1.71891 -s 10 -d 7 -p ack -e 40 -c 0 -i 3010 -a 0 -x {10.0 9.0 1500 ------- null} - -t 1.71891 -s 10 -d 7 -p ack -e 40 -c 0 -i 3010 -a 0 -x {10.0 9.0 1500 ------- null} h -t 1.71891 -s 10 -d 7 -p ack -e 40 -c 0 -i 3010 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.71894 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3005 -a 0 -x {9.0 10.0 1507 ------- null} + -t 1.71894 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3005 -a 0 -x {9.0 10.0 1507 ------- null} h -t 1.71894 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3005 -a 0 -x {9.0 10.0 1507 ------- null} + -t 1.71938 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2997 -a 0 -x {9.0 10.0 1503 ------- null} - -t 1.71938 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2997 -a 0 -x {9.0 10.0 1503 ------- null} h -t 1.71938 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2997 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.71941 -s 0 -d 9 -p ack -e 40 -c 0 -i 3000 -a 0 -x {10.0 9.0 1495 ------- null} + -t 1.71941 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3011 -a 0 -x {9.0 10.0 1510 ------- null} - -t 1.71941 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3011 -a 0 -x {9.0 10.0 1510 ------- null} h -t 1.71941 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3011 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.71968 -s 0 -d 9 -p ack -e 40 -c 0 -i 3004 -a 0 -x {10.0 9.0 1497 ------- null} - -t 1.71968 -s 0 -d 9 -p ack -e 40 -c 0 -i 3004 -a 0 -x {10.0 9.0 1497 ------- null} h -t 1.71968 -s 0 -d 9 -p ack -e 40 -c 0 -i 3004 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.71986 -s 10 -d 7 -p ack -e 40 -c 0 -i 3008 -a 0 -x {10.0 9.0 1499 ------- null} + -t 1.71986 -s 7 -d 0 -p ack -e 40 -c 0 -i 3008 -a 0 -x {10.0 9.0 1499 ------- null} h -t 1.71986 -s 7 -d 8 -p ack -e 40 -c 0 -i 3008 -a 0 -x {10.0 9.0 1499 ------- null} r -t 1.71997 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3007 -a 0 -x {9.0 10.0 1508 ------- null} + -t 1.71997 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3007 -a 0 -x {9.0 10.0 1508 ------- null} h -t 1.71997 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3007 -a 0 -x {9.0 10.0 1508 ------- null} r -t 1.72 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2993 -a 0 -x {9.0 10.0 1501 ------- null} + -t 1.72 -s 10 -d 7 -p ack -e 40 -c 0 -i 3012 -a 0 -x {10.0 9.0 1501 ------- null} - -t 1.72 -s 10 -d 7 -p ack -e 40 -c 0 -i 3012 -a 0 -x {10.0 9.0 1501 ------- null} h -t 1.72 -s 10 -d 7 -p ack -e 40 -c 0 -i 3012 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.72043 -s 0 -d 9 -p ack -e 40 -c 0 -i 3002 -a 0 -x {10.0 9.0 1496 ------- null} + -t 1.72043 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3013 -a 0 -x {9.0 10.0 1511 ------- null} - -t 1.72043 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3013 -a 0 -x {9.0 10.0 1511 ------- null} h -t 1.72043 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3013 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.72059 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2999 -a 0 -x {9.0 10.0 1504 ------- null} - -t 1.72059 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2999 -a 0 -x {9.0 10.0 1504 ------- null} h -t 1.72059 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2999 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.72075 -s 0 -d 9 -p ack -e 40 -c 0 -i 3006 -a 0 -x {10.0 9.0 1498 ------- null} - -t 1.72075 -s 0 -d 9 -p ack -e 40 -c 0 -i 3006 -a 0 -x {10.0 9.0 1498 ------- null} h -t 1.72075 -s 0 -d 9 -p ack -e 40 -c 0 -i 3006 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.72094 -s 10 -d 7 -p ack -e 40 -c 0 -i 3010 -a 0 -x {10.0 9.0 1500 ------- null} + -t 1.72094 -s 7 -d 0 -p ack -e 40 -c 0 -i 3010 -a 0 -x {10.0 9.0 1500 ------- null} h -t 1.72094 -s 7 -d 8 -p ack -e 40 -c 0 -i 3010 -a 0 -x {10.0 9.0 1500 ------- null} r -t 1.72109 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2995 -a 0 -x {9.0 10.0 1502 ------- null} + -t 1.72109 -s 10 -d 7 -p ack -e 40 -c 0 -i 3014 -a 0 -x {10.0 9.0 1502 ------- null} - -t 1.72109 -s 10 -d 7 -p ack -e 40 -c 0 -i 3014 -a 0 -x {10.0 9.0 1502 ------- null} h -t 1.72109 -s 10 -d 7 -p ack -e 40 -c 0 -i 3014 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.72118 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3009 -a 0 -x {9.0 10.0 1509 ------- null} + -t 1.72118 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3009 -a 0 -x {9.0 10.0 1509 ------- null} h -t 1.72118 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3009 -a 0 -x {9.0 10.0 1509 ------- null} + -t 1.72168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3001 -a 0 -x {9.0 10.0 1505 ------- null} - -t 1.72168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3001 -a 0 -x {9.0 10.0 1505 ------- null} h -t 1.72168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3001 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.72171 -s 0 -d 9 -p ack -e 40 -c 0 -i 3004 -a 0 -x {10.0 9.0 1497 ------- null} + -t 1.72171 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3015 -a 0 -x {9.0 10.0 1512 ------- null} - -t 1.72171 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3015 -a 0 -x {9.0 10.0 1512 ------- null} h -t 1.72171 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3015 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.7219 -s 0 -d 9 -p ack -e 40 -c 0 -i 3008 -a 0 -x {10.0 9.0 1499 ------- null} - -t 1.7219 -s 0 -d 9 -p ack -e 40 -c 0 -i 3008 -a 0 -x {10.0 9.0 1499 ------- null} h -t 1.7219 -s 0 -d 9 -p ack -e 40 -c 0 -i 3008 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.72203 -s 10 -d 7 -p ack -e 40 -c 0 -i 3012 -a 0 -x {10.0 9.0 1501 ------- null} + -t 1.72203 -s 7 -d 0 -p ack -e 40 -c 0 -i 3012 -a 0 -x {10.0 9.0 1501 ------- null} h -t 1.72203 -s 7 -d 8 -p ack -e 40 -c 0 -i 3012 -a 0 -x {10.0 9.0 1501 ------- null} r -t 1.72218 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2997 -a 0 -x {9.0 10.0 1503 ------- null} + -t 1.72218 -s 10 -d 7 -p ack -e 40 -c 0 -i 3016 -a 0 -x {10.0 9.0 1503 ------- null} - -t 1.72218 -s 10 -d 7 -p ack -e 40 -c 0 -i 3016 -a 0 -x {10.0 9.0 1503 ------- null} h -t 1.72218 -s 10 -d 7 -p ack -e 40 -c 0 -i 3016 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.72221 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3011 -a 0 -x {9.0 10.0 1510 ------- null} + -t 1.72221 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3011 -a 0 -x {9.0 10.0 1510 ------- null} h -t 1.72221 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3011 -a 0 -x {9.0 10.0 1510 ------- null} + -t 1.72277 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3003 -a 0 -x {9.0 10.0 1506 ------- null} - -t 1.72277 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3003 -a 0 -x {9.0 10.0 1506 ------- null} h -t 1.72277 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3003 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.72278 -s 0 -d 9 -p ack -e 40 -c 0 -i 3006 -a 0 -x {10.0 9.0 1498 ------- null} + -t 1.72278 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3017 -a 0 -x {9.0 10.0 1513 ------- null} - -t 1.72278 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3017 -a 0 -x {9.0 10.0 1513 ------- null} h -t 1.72278 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3017 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.72288 -s 0 -d 9 -p ack -e 40 -c 0 -i 3010 -a 0 -x {10.0 9.0 1500 ------- null} - -t 1.72288 -s 0 -d 9 -p ack -e 40 -c 0 -i 3010 -a 0 -x {10.0 9.0 1500 ------- null} h -t 1.72288 -s 0 -d 9 -p ack -e 40 -c 0 -i 3010 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.72312 -s 10 -d 7 -p ack -e 40 -c 0 -i 3014 -a 0 -x {10.0 9.0 1502 ------- null} + -t 1.72312 -s 7 -d 0 -p ack -e 40 -c 0 -i 3014 -a 0 -x {10.0 9.0 1502 ------- null} h -t 1.72312 -s 7 -d 8 -p ack -e 40 -c 0 -i 3014 -a 0 -x {10.0 9.0 1502 ------- null} r -t 1.72323 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3013 -a 0 -x {9.0 10.0 1511 ------- null} + -t 1.72323 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3013 -a 0 -x {9.0 10.0 1511 ------- null} h -t 1.72323 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3013 -a 0 -x {9.0 10.0 1511 ------- null} r -t 1.72339 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 2999 -a 0 -x {9.0 10.0 1504 ------- null} + -t 1.72339 -s 10 -d 7 -p ack -e 40 -c 0 -i 3018 -a 0 -x {10.0 9.0 1504 ------- null} - -t 1.72339 -s 10 -d 7 -p ack -e 40 -c 0 -i 3018 -a 0 -x {10.0 9.0 1504 ------- null} h -t 1.72339 -s 10 -d 7 -p ack -e 40 -c 0 -i 3018 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.72386 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3005 -a 0 -x {9.0 10.0 1507 ------- null} - -t 1.72386 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3005 -a 0 -x {9.0 10.0 1507 ------- null} h -t 1.72386 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3005 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.72394 -s 0 -d 9 -p ack -e 40 -c 0 -i 3008 -a 0 -x {10.0 9.0 1499 ------- null} + -t 1.72394 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3019 -a 0 -x {9.0 10.0 1514 ------- null} - -t 1.72394 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3019 -a 0 -x {9.0 10.0 1514 ------- null} h -t 1.72394 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3019 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.72414 -s 0 -d 9 -p ack -e 40 -c 0 -i 3012 -a 0 -x {10.0 9.0 1501 ------- null} - -t 1.72414 -s 0 -d 9 -p ack -e 40 -c 0 -i 3012 -a 0 -x {10.0 9.0 1501 ------- null} h -t 1.72414 -s 0 -d 9 -p ack -e 40 -c 0 -i 3012 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.72421 -s 10 -d 7 -p ack -e 40 -c 0 -i 3016 -a 0 -x {10.0 9.0 1503 ------- null} + -t 1.72421 -s 7 -d 0 -p ack -e 40 -c 0 -i 3016 -a 0 -x {10.0 9.0 1503 ------- null} h -t 1.72421 -s 7 -d 8 -p ack -e 40 -c 0 -i 3016 -a 0 -x {10.0 9.0 1503 ------- null} r -t 1.72448 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3001 -a 0 -x {9.0 10.0 1505 ------- null} + -t 1.72448 -s 10 -d 7 -p ack -e 40 -c 0 -i 3020 -a 0 -x {10.0 9.0 1505 ------- null} - -t 1.72448 -s 10 -d 7 -p ack -e 40 -c 0 -i 3020 -a 0 -x {10.0 9.0 1505 ------- null} h -t 1.72448 -s 10 -d 7 -p ack -e 40 -c 0 -i 3020 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.72451 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3015 -a 0 -x {9.0 10.0 1512 ------- null} + -t 1.72451 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3015 -a 0 -x {9.0 10.0 1512 ------- null} h -t 1.72451 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3015 -a 0 -x {9.0 10.0 1512 ------- null} r -t 1.72491 -s 0 -d 9 -p ack -e 40 -c 0 -i 3010 -a 0 -x {10.0 9.0 1500 ------- null} + -t 1.72491 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3021 -a 0 -x {9.0 10.0 1515 ------- null} - -t 1.72491 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3021 -a 0 -x {9.0 10.0 1515 ------- null} h -t 1.72491 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3021 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.72517 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3007 -a 0 -x {9.0 10.0 1508 ------- null} - -t 1.72517 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3007 -a 0 -x {9.0 10.0 1508 ------- null} h -t 1.72517 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3007 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.72542 -s 10 -d 7 -p ack -e 40 -c 0 -i 3018 -a 0 -x {10.0 9.0 1504 ------- null} + -t 1.72542 -s 7 -d 0 -p ack -e 40 -c 0 -i 3018 -a 0 -x {10.0 9.0 1504 ------- null} h -t 1.72542 -s 7 -d 8 -p ack -e 40 -c 0 -i 3018 -a 0 -x {10.0 9.0 1504 ------- null} + -t 1.72547 -s 0 -d 9 -p ack -e 40 -c 0 -i 3014 -a 0 -x {10.0 9.0 1502 ------- null} - -t 1.72547 -s 0 -d 9 -p ack -e 40 -c 0 -i 3014 -a 0 -x {10.0 9.0 1502 ------- null} h -t 1.72547 -s 0 -d 9 -p ack -e 40 -c 0 -i 3014 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.72557 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3003 -a 0 -x {9.0 10.0 1506 ------- null} + -t 1.72557 -s 10 -d 7 -p ack -e 40 -c 0 -i 3022 -a 0 -x {10.0 9.0 1506 ------- null} - -t 1.72557 -s 10 -d 7 -p ack -e 40 -c 0 -i 3022 -a 0 -x {10.0 9.0 1506 ------- null} h -t 1.72557 -s 10 -d 7 -p ack -e 40 -c 0 -i 3022 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.72558 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3017 -a 0 -x {9.0 10.0 1513 ------- null} + -t 1.72558 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3017 -a 0 -x {9.0 10.0 1513 ------- null} h -t 1.72558 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3017 -a 0 -x {9.0 10.0 1513 ------- null} r -t 1.72618 -s 0 -d 9 -p ack -e 40 -c 0 -i 3012 -a 0 -x {10.0 9.0 1501 ------- null} + -t 1.72618 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3023 -a 0 -x {9.0 10.0 1516 ------- null} - -t 1.72618 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3023 -a 0 -x {9.0 10.0 1516 ------- null} h -t 1.72618 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3023 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.72635 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3009 -a 0 -x {9.0 10.0 1509 ------- null} - -t 1.72635 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3009 -a 0 -x {9.0 10.0 1509 ------- null} h -t 1.72635 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3009 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.72651 -s 10 -d 7 -p ack -e 40 -c 0 -i 3020 -a 0 -x {10.0 9.0 1505 ------- null} + -t 1.72651 -s 7 -d 0 -p ack -e 40 -c 0 -i 3020 -a 0 -x {10.0 9.0 1505 ------- null} h -t 1.72651 -s 7 -d 8 -p ack -e 40 -c 0 -i 3020 -a 0 -x {10.0 9.0 1505 ------- null} + -t 1.72664 -s 0 -d 9 -p ack -e 40 -c 0 -i 3016 -a 0 -x {10.0 9.0 1503 ------- null} - -t 1.72664 -s 0 -d 9 -p ack -e 40 -c 0 -i 3016 -a 0 -x {10.0 9.0 1503 ------- null} h -t 1.72664 -s 0 -d 9 -p ack -e 40 -c 0 -i 3016 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.72666 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3005 -a 0 -x {9.0 10.0 1507 ------- null} + -t 1.72666 -s 10 -d 7 -p ack -e 40 -c 0 -i 3024 -a 0 -x {10.0 9.0 1507 ------- null} - -t 1.72666 -s 10 -d 7 -p ack -e 40 -c 0 -i 3024 -a 0 -x {10.0 9.0 1507 ------- null} h -t 1.72666 -s 10 -d 7 -p ack -e 40 -c 0 -i 3024 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.72674 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3019 -a 0 -x {9.0 10.0 1514 ------- null} + -t 1.72674 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3019 -a 0 -x {9.0 10.0 1514 ------- null} h -t 1.72674 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3019 -a 0 -x {9.0 10.0 1514 ------- null} r -t 1.7275 -s 0 -d 9 -p ack -e 40 -c 0 -i 3014 -a 0 -x {10.0 9.0 1502 ------- null} + -t 1.7275 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3025 -a 0 -x {9.0 10.0 1517 ------- null} - -t 1.7275 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3025 -a 0 -x {9.0 10.0 1517 ------- null} h -t 1.7275 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3025 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.72755 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3011 -a 0 -x {9.0 10.0 1510 ------- null} - -t 1.72755 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3011 -a 0 -x {9.0 10.0 1510 ------- null} h -t 1.72755 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3011 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.7276 -s 10 -d 7 -p ack -e 40 -c 0 -i 3022 -a 0 -x {10.0 9.0 1506 ------- null} + -t 1.7276 -s 7 -d 0 -p ack -e 40 -c 0 -i 3022 -a 0 -x {10.0 9.0 1506 ------- null} h -t 1.7276 -s 7 -d 8 -p ack -e 40 -c 0 -i 3022 -a 0 -x {10.0 9.0 1506 ------- null} + -t 1.72765 -s 0 -d 9 -p ack -e 40 -c 0 -i 3018 -a 0 -x {10.0 9.0 1504 ------- null} - -t 1.72765 -s 0 -d 9 -p ack -e 40 -c 0 -i 3018 -a 0 -x {10.0 9.0 1504 ------- null} h -t 1.72765 -s 0 -d 9 -p ack -e 40 -c 0 -i 3018 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.72771 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3021 -a 0 -x {9.0 10.0 1515 ------- null} + -t 1.72771 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3021 -a 0 -x {9.0 10.0 1515 ------- null} h -t 1.72771 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3021 -a 0 -x {9.0 10.0 1515 ------- null} r -t 1.72797 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3007 -a 0 -x {9.0 10.0 1508 ------- null} + -t 1.72797 -s 10 -d 7 -p ack -e 40 -c 0 -i 3026 -a 0 -x {10.0 9.0 1508 ------- null} - -t 1.72797 -s 10 -d 7 -p ack -e 40 -c 0 -i 3026 -a 0 -x {10.0 9.0 1508 ------- null} h -t 1.72797 -s 10 -d 7 -p ack -e 40 -c 0 -i 3026 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.72864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3013 -a 0 -x {9.0 10.0 1511 ------- null} - -t 1.72864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3013 -a 0 -x {9.0 10.0 1511 ------- null} h -t 1.72864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3013 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.72867 -s 0 -d 9 -p ack -e 40 -c 0 -i 3016 -a 0 -x {10.0 9.0 1503 ------- null} + -t 1.72867 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3027 -a 0 -x {9.0 10.0 1518 ------- null} - -t 1.72867 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3027 -a 0 -x {9.0 10.0 1518 ------- null} h -t 1.72867 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3027 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.72869 -s 10 -d 7 -p ack -e 40 -c 0 -i 3024 -a 0 -x {10.0 9.0 1507 ------- null} + -t 1.72869 -s 7 -d 0 -p ack -e 40 -c 0 -i 3024 -a 0 -x {10.0 9.0 1507 ------- null} h -t 1.72869 -s 7 -d 8 -p ack -e 40 -c 0 -i 3024 -a 0 -x {10.0 9.0 1507 ------- null} + -t 1.7289 -s 0 -d 9 -p ack -e 40 -c 0 -i 3020 -a 0 -x {10.0 9.0 1505 ------- null} - -t 1.7289 -s 0 -d 9 -p ack -e 40 -c 0 -i 3020 -a 0 -x {10.0 9.0 1505 ------- null} h -t 1.7289 -s 0 -d 9 -p ack -e 40 -c 0 -i 3020 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.72898 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3023 -a 0 -x {9.0 10.0 1516 ------- null} + -t 1.72898 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3023 -a 0 -x {9.0 10.0 1516 ------- null} h -t 1.72898 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3023 -a 0 -x {9.0 10.0 1516 ------- null} r -t 1.72915 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3009 -a 0 -x {9.0 10.0 1509 ------- null} + -t 1.72915 -s 10 -d 7 -p ack -e 40 -c 0 -i 3028 -a 0 -x {10.0 9.0 1509 ------- null} - -t 1.72915 -s 10 -d 7 -p ack -e 40 -c 0 -i 3028 -a 0 -x {10.0 9.0 1509 ------- null} h -t 1.72915 -s 10 -d 7 -p ack -e 40 -c 0 -i 3028 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.72968 -s 0 -d 9 -p ack -e 40 -c 0 -i 3018 -a 0 -x {10.0 9.0 1504 ------- null} + -t 1.72968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3029 -a 0 -x {9.0 10.0 1519 ------- null} - -t 1.72968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3029 -a 0 -x {9.0 10.0 1519 ------- null} h -t 1.72968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3029 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.72973 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3015 -a 0 -x {9.0 10.0 1512 ------- null} - -t 1.72973 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3015 -a 0 -x {9.0 10.0 1512 ------- null} h -t 1.72973 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3015 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.72986 -s 0 -d 9 -p ack -e 40 -c 0 -i 3022 -a 0 -x {10.0 9.0 1506 ------- null} - -t 1.72986 -s 0 -d 9 -p ack -e 40 -c 0 -i 3022 -a 0 -x {10.0 9.0 1506 ------- null} h -t 1.72986 -s 0 -d 9 -p ack -e 40 -c 0 -i 3022 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.73 -s 10 -d 7 -p ack -e 40 -c 0 -i 3026 -a 0 -x {10.0 9.0 1508 ------- null} + -t 1.73 -s 7 -d 0 -p ack -e 40 -c 0 -i 3026 -a 0 -x {10.0 9.0 1508 ------- null} h -t 1.73 -s 7 -d 8 -p ack -e 40 -c 0 -i 3026 -a 0 -x {10.0 9.0 1508 ------- null} r -t 1.7303 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3025 -a 0 -x {9.0 10.0 1517 ------- null} + -t 1.7303 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3025 -a 0 -x {9.0 10.0 1517 ------- null} h -t 1.7303 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3025 -a 0 -x {9.0 10.0 1517 ------- null} r -t 1.73035 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3011 -a 0 -x {9.0 10.0 1510 ------- null} + -t 1.73035 -s 10 -d 7 -p ack -e 40 -c 0 -i 3030 -a 0 -x {10.0 9.0 1510 ------- null} - -t 1.73035 -s 10 -d 7 -p ack -e 40 -c 0 -i 3030 -a 0 -x {10.0 9.0 1510 ------- null} h -t 1.73035 -s 10 -d 7 -p ack -e 40 -c 0 -i 3030 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.73082 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3017 -a 0 -x {9.0 10.0 1513 ------- null} - -t 1.73082 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3017 -a 0 -x {9.0 10.0 1513 ------- null} h -t 1.73082 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3017 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.73093 -s 0 -d 9 -p ack -e 40 -c 0 -i 3020 -a 0 -x {10.0 9.0 1505 ------- null} + -t 1.73093 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3031 -a 0 -x {9.0 10.0 1520 ------- null} - -t 1.73093 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3031 -a 0 -x {9.0 10.0 1520 ------- null} h -t 1.73093 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3031 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.73093 -s 0 -d 9 -p ack -e 40 -c 0 -i 3024 -a 0 -x {10.0 9.0 1507 ------- null} - -t 1.73093 -s 0 -d 9 -p ack -e 40 -c 0 -i 3024 -a 0 -x {10.0 9.0 1507 ------- null} h -t 1.73093 -s 0 -d 9 -p ack -e 40 -c 0 -i 3024 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.73118 -s 10 -d 7 -p ack -e 40 -c 0 -i 3028 -a 0 -x {10.0 9.0 1509 ------- null} + -t 1.73118 -s 7 -d 0 -p ack -e 40 -c 0 -i 3028 -a 0 -x {10.0 9.0 1509 ------- null} h -t 1.73118 -s 7 -d 8 -p ack -e 40 -c 0 -i 3028 -a 0 -x {10.0 9.0 1509 ------- null} r -t 1.73144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3013 -a 0 -x {9.0 10.0 1511 ------- null} + -t 1.73144 -s 10 -d 7 -p ack -e 40 -c 0 -i 3032 -a 0 -x {10.0 9.0 1511 ------- null} - -t 1.73144 -s 10 -d 7 -p ack -e 40 -c 0 -i 3032 -a 0 -x {10.0 9.0 1511 ------- null} h -t 1.73144 -s 10 -d 7 -p ack -e 40 -c 0 -i 3032 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.73147 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3027 -a 0 -x {9.0 10.0 1518 ------- null} + -t 1.73147 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3027 -a 0 -x {9.0 10.0 1518 ------- null} h -t 1.73147 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3027 -a 0 -x {9.0 10.0 1518 ------- null} r -t 1.73189 -s 0 -d 9 -p ack -e 40 -c 0 -i 3022 -a 0 -x {10.0 9.0 1506 ------- null} + -t 1.73189 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3033 -a 0 -x {9.0 10.0 1521 ------- null} - -t 1.73189 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3033 -a 0 -x {9.0 10.0 1521 ------- null} h -t 1.73189 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3033 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.7319 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3019 -a 0 -x {9.0 10.0 1514 ------- null} - -t 1.7319 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3019 -a 0 -x {9.0 10.0 1514 ------- null} h -t 1.7319 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3019 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.73205 -s 0 -d 9 -p ack -e 40 -c 0 -i 3026 -a 0 -x {10.0 9.0 1508 ------- null} - -t 1.73205 -s 0 -d 9 -p ack -e 40 -c 0 -i 3026 -a 0 -x {10.0 9.0 1508 ------- null} h -t 1.73205 -s 0 -d 9 -p ack -e 40 -c 0 -i 3026 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.73238 -s 10 -d 7 -p ack -e 40 -c 0 -i 3030 -a 0 -x {10.0 9.0 1510 ------- null} + -t 1.73238 -s 7 -d 0 -p ack -e 40 -c 0 -i 3030 -a 0 -x {10.0 9.0 1510 ------- null} h -t 1.73238 -s 7 -d 8 -p ack -e 40 -c 0 -i 3030 -a 0 -x {10.0 9.0 1510 ------- null} r -t 1.73248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3029 -a 0 -x {9.0 10.0 1519 ------- null} + -t 1.73248 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3029 -a 0 -x {9.0 10.0 1519 ------- null} h -t 1.73248 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3029 -a 0 -x {9.0 10.0 1519 ------- null} r -t 1.73253 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3015 -a 0 -x {9.0 10.0 1512 ------- null} + -t 1.73253 -s 10 -d 7 -p ack -e 40 -c 0 -i 3034 -a 0 -x {10.0 9.0 1512 ------- null} - -t 1.73253 -s 10 -d 7 -p ack -e 40 -c 0 -i 3034 -a 0 -x {10.0 9.0 1512 ------- null} h -t 1.73253 -s 10 -d 7 -p ack -e 40 -c 0 -i 3034 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.73296 -s 0 -d 9 -p ack -e 40 -c 0 -i 3024 -a 0 -x {10.0 9.0 1507 ------- null} + -t 1.73296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3035 -a 0 -x {9.0 10.0 1522 ------- null} - -t 1.73296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3035 -a 0 -x {9.0 10.0 1522 ------- null} h -t 1.73296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3035 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.73299 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3021 -a 0 -x {9.0 10.0 1515 ------- null} - -t 1.73299 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3021 -a 0 -x {9.0 10.0 1515 ------- null} h -t 1.73299 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3021 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.73317 -s 0 -d 9 -p ack -e 40 -c 0 -i 3028 -a 0 -x {10.0 9.0 1509 ------- null} - -t 1.73317 -s 0 -d 9 -p ack -e 40 -c 0 -i 3028 -a 0 -x {10.0 9.0 1509 ------- null} h -t 1.73317 -s 0 -d 9 -p ack -e 40 -c 0 -i 3028 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.73347 -s 10 -d 7 -p ack -e 40 -c 0 -i 3032 -a 0 -x {10.0 9.0 1511 ------- null} + -t 1.73347 -s 7 -d 0 -p ack -e 40 -c 0 -i 3032 -a 0 -x {10.0 9.0 1511 ------- null} h -t 1.73347 -s 7 -d 8 -p ack -e 40 -c 0 -i 3032 -a 0 -x {10.0 9.0 1511 ------- null} r -t 1.73362 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3017 -a 0 -x {9.0 10.0 1513 ------- null} + -t 1.73362 -s 10 -d 7 -p ack -e 40 -c 0 -i 3036 -a 0 -x {10.0 9.0 1513 ------- null} - -t 1.73362 -s 10 -d 7 -p ack -e 40 -c 0 -i 3036 -a 0 -x {10.0 9.0 1513 ------- null} h -t 1.73362 -s 10 -d 7 -p ack -e 40 -c 0 -i 3036 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.73373 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3031 -a 0 -x {9.0 10.0 1520 ------- null} + -t 1.73373 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3031 -a 0 -x {9.0 10.0 1520 ------- null} h -t 1.73373 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3031 -a 0 -x {9.0 10.0 1520 ------- null} + -t 1.73408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3023 -a 0 -x {9.0 10.0 1516 ------- null} - -t 1.73408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3023 -a 0 -x {9.0 10.0 1516 ------- null} h -t 1.73408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3023 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.73408 -s 0 -d 9 -p ack -e 40 -c 0 -i 3026 -a 0 -x {10.0 9.0 1508 ------- null} + -t 1.73408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3037 -a 0 -x {9.0 10.0 1523 ------- null} - -t 1.73408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3037 -a 0 -x {9.0 10.0 1523 ------- null} h -t 1.73408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3037 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.73427 -s 0 -d 9 -p ack -e 40 -c 0 -i 3030 -a 0 -x {10.0 9.0 1510 ------- null} - -t 1.73427 -s 0 -d 9 -p ack -e 40 -c 0 -i 3030 -a 0 -x {10.0 9.0 1510 ------- null} h -t 1.73427 -s 0 -d 9 -p ack -e 40 -c 0 -i 3030 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.73456 -s 10 -d 7 -p ack -e 40 -c 0 -i 3034 -a 0 -x {10.0 9.0 1512 ------- null} + -t 1.73456 -s 7 -d 0 -p ack -e 40 -c 0 -i 3034 -a 0 -x {10.0 9.0 1512 ------- null} h -t 1.73456 -s 7 -d 8 -p ack -e 40 -c 0 -i 3034 -a 0 -x {10.0 9.0 1512 ------- null} r -t 1.73469 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3033 -a 0 -x {9.0 10.0 1521 ------- null} + -t 1.73469 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3033 -a 0 -x {9.0 10.0 1521 ------- null} h -t 1.73469 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3033 -a 0 -x {9.0 10.0 1521 ------- null} r -t 1.7347 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3019 -a 0 -x {9.0 10.0 1514 ------- null} + -t 1.7347 -s 10 -d 7 -p ack -e 40 -c 0 -i 3038 -a 0 -x {10.0 9.0 1514 ------- null} - -t 1.7347 -s 10 -d 7 -p ack -e 40 -c 0 -i 3038 -a 0 -x {10.0 9.0 1514 ------- null} h -t 1.7347 -s 10 -d 7 -p ack -e 40 -c 0 -i 3038 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.73517 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3025 -a 0 -x {9.0 10.0 1517 ------- null} - -t 1.73517 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3025 -a 0 -x {9.0 10.0 1517 ------- null} h -t 1.73517 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3025 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.7352 -s 0 -d 9 -p ack -e 40 -c 0 -i 3028 -a 0 -x {10.0 9.0 1509 ------- null} + -t 1.7352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3039 -a 0 -x {9.0 10.0 1524 ------- null} - -t 1.7352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3039 -a 0 -x {9.0 10.0 1524 ------- null} h -t 1.7352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3039 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.73526 -s 0 -d 9 -p ack -e 40 -c 0 -i 3032 -a 0 -x {10.0 9.0 1511 ------- null} - -t 1.73526 -s 0 -d 9 -p ack -e 40 -c 0 -i 3032 -a 0 -x {10.0 9.0 1511 ------- null} h -t 1.73526 -s 0 -d 9 -p ack -e 40 -c 0 -i 3032 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.73565 -s 10 -d 7 -p ack -e 40 -c 0 -i 3036 -a 0 -x {10.0 9.0 1513 ------- null} + -t 1.73565 -s 7 -d 0 -p ack -e 40 -c 0 -i 3036 -a 0 -x {10.0 9.0 1513 ------- null} h -t 1.73565 -s 7 -d 8 -p ack -e 40 -c 0 -i 3036 -a 0 -x {10.0 9.0 1513 ------- null} r -t 1.73576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3035 -a 0 -x {9.0 10.0 1522 ------- null} + -t 1.73576 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3035 -a 0 -x {9.0 10.0 1522 ------- null} h -t 1.73576 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3035 -a 0 -x {9.0 10.0 1522 ------- null} r -t 1.73579 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3021 -a 0 -x {9.0 10.0 1515 ------- null} + -t 1.73579 -s 10 -d 7 -p ack -e 40 -c 0 -i 3040 -a 0 -x {10.0 9.0 1515 ------- null} - -t 1.73579 -s 10 -d 7 -p ack -e 40 -c 0 -i 3040 -a 0 -x {10.0 9.0 1515 ------- null} h -t 1.73579 -s 10 -d 7 -p ack -e 40 -c 0 -i 3040 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.73626 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3027 -a 0 -x {9.0 10.0 1518 ------- null} - -t 1.73626 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3027 -a 0 -x {9.0 10.0 1518 ------- null} h -t 1.73626 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3027 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.7363 -s 0 -d 9 -p ack -e 40 -c 0 -i 3030 -a 0 -x {10.0 9.0 1510 ------- null} + -t 1.7363 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3041 -a 0 -x {9.0 10.0 1525 ------- null} - -t 1.7363 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3041 -a 0 -x {9.0 10.0 1525 ------- null} h -t 1.7363 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3041 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.73635 -s 0 -d 9 -p ack -e 40 -c 0 -i 3034 -a 0 -x {10.0 9.0 1512 ------- null} - -t 1.73635 -s 0 -d 9 -p ack -e 40 -c 0 -i 3034 -a 0 -x {10.0 9.0 1512 ------- null} h -t 1.73635 -s 0 -d 9 -p ack -e 40 -c 0 -i 3034 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.73674 -s 10 -d 7 -p ack -e 40 -c 0 -i 3038 -a 0 -x {10.0 9.0 1514 ------- null} + -t 1.73674 -s 7 -d 0 -p ack -e 40 -c 0 -i 3038 -a 0 -x {10.0 9.0 1514 ------- null} h -t 1.73674 -s 7 -d 8 -p ack -e 40 -c 0 -i 3038 -a 0 -x {10.0 9.0 1514 ------- null} r -t 1.73688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3023 -a 0 -x {9.0 10.0 1516 ------- null} + -t 1.73688 -s 10 -d 7 -p ack -e 40 -c 0 -i 3042 -a 0 -x {10.0 9.0 1516 ------- null} - -t 1.73688 -s 10 -d 7 -p ack -e 40 -c 0 -i 3042 -a 0 -x {10.0 9.0 1516 ------- null} h -t 1.73688 -s 10 -d 7 -p ack -e 40 -c 0 -i 3042 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.73688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3037 -a 0 -x {9.0 10.0 1523 ------- null} + -t 1.73688 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3037 -a 0 -x {9.0 10.0 1523 ------- null} h -t 1.73688 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3037 -a 0 -x {9.0 10.0 1523 ------- null} r -t 1.7373 -s 0 -d 9 -p ack -e 40 -c 0 -i 3032 -a 0 -x {10.0 9.0 1511 ------- null} + -t 1.7373 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3043 -a 0 -x {9.0 10.0 1526 ------- null} - -t 1.7373 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3043 -a 0 -x {9.0 10.0 1526 ------- null} h -t 1.7373 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3043 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.73734 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3029 -a 0 -x {9.0 10.0 1519 ------- null} - -t 1.73734 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3029 -a 0 -x {9.0 10.0 1519 ------- null} h -t 1.73734 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3029 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.73744 -s 0 -d 9 -p ack -e 40 -c 0 -i 3036 -a 0 -x {10.0 9.0 1513 ------- null} - -t 1.73744 -s 0 -d 9 -p ack -e 40 -c 0 -i 3036 -a 0 -x {10.0 9.0 1513 ------- null} h -t 1.73744 -s 0 -d 9 -p ack -e 40 -c 0 -i 3036 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.73782 -s 10 -d 7 -p ack -e 40 -c 0 -i 3040 -a 0 -x {10.0 9.0 1515 ------- null} + -t 1.73782 -s 7 -d 0 -p ack -e 40 -c 0 -i 3040 -a 0 -x {10.0 9.0 1515 ------- null} h -t 1.73782 -s 7 -d 8 -p ack -e 40 -c 0 -i 3040 -a 0 -x {10.0 9.0 1515 ------- null} r -t 1.73797 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3025 -a 0 -x {9.0 10.0 1517 ------- null} + -t 1.73797 -s 10 -d 7 -p ack -e 40 -c 0 -i 3044 -a 0 -x {10.0 9.0 1517 ------- null} - -t 1.73797 -s 10 -d 7 -p ack -e 40 -c 0 -i 3044 -a 0 -x {10.0 9.0 1517 ------- null} h -t 1.73797 -s 10 -d 7 -p ack -e 40 -c 0 -i 3044 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.738 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3039 -a 0 -x {9.0 10.0 1524 ------- null} + -t 1.738 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3039 -a 0 -x {9.0 10.0 1524 ------- null} h -t 1.738 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3039 -a 0 -x {9.0 10.0 1524 ------- null} r -t 1.73838 -s 0 -d 9 -p ack -e 40 -c 0 -i 3034 -a 0 -x {10.0 9.0 1512 ------- null} + -t 1.73838 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3045 -a 0 -x {9.0 10.0 1527 ------- null} - -t 1.73838 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3045 -a 0 -x {9.0 10.0 1527 ------- null} h -t 1.73838 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3045 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.73843 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3031 -a 0 -x {9.0 10.0 1520 ------- null} - -t 1.73843 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3031 -a 0 -x {9.0 10.0 1520 ------- null} h -t 1.73843 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3031 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.73867 -s 0 -d 9 -p ack -e 40 -c 0 -i 3038 -a 0 -x {10.0 9.0 1514 ------- null} - -t 1.73867 -s 0 -d 9 -p ack -e 40 -c 0 -i 3038 -a 0 -x {10.0 9.0 1514 ------- null} h -t 1.73867 -s 0 -d 9 -p ack -e 40 -c 0 -i 3038 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.73891 -s 10 -d 7 -p ack -e 40 -c 0 -i 3042 -a 0 -x {10.0 9.0 1516 ------- null} + -t 1.73891 -s 7 -d 0 -p ack -e 40 -c 0 -i 3042 -a 0 -x {10.0 9.0 1516 ------- null} h -t 1.73891 -s 7 -d 8 -p ack -e 40 -c 0 -i 3042 -a 0 -x {10.0 9.0 1516 ------- null} r -t 1.73906 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3027 -a 0 -x {9.0 10.0 1518 ------- null} + -t 1.73906 -s 10 -d 7 -p ack -e 40 -c 0 -i 3046 -a 0 -x {10.0 9.0 1518 ------- null} - -t 1.73906 -s 10 -d 7 -p ack -e 40 -c 0 -i 3046 -a 0 -x {10.0 9.0 1518 ------- null} h -t 1.73906 -s 10 -d 7 -p ack -e 40 -c 0 -i 3046 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.7391 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3041 -a 0 -x {9.0 10.0 1525 ------- null} + -t 1.7391 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3041 -a 0 -x {9.0 10.0 1525 ------- null} h -t 1.7391 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3041 -a 0 -x {9.0 10.0 1525 ------- null} r -t 1.73947 -s 0 -d 9 -p ack -e 40 -c 0 -i 3036 -a 0 -x {10.0 9.0 1513 ------- null} + -t 1.73947 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3047 -a 0 -x {9.0 10.0 1528 ------- null} - -t 1.73947 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3047 -a 0 -x {9.0 10.0 1528 ------- null} h -t 1.73947 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3047 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.73952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3033 -a 0 -x {9.0 10.0 1521 ------- null} - -t 1.73952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3033 -a 0 -x {9.0 10.0 1521 ------- null} h -t 1.73952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3033 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.73962 -s 0 -d 9 -p ack -e 40 -c 0 -i 3040 -a 0 -x {10.0 9.0 1515 ------- null} - -t 1.73962 -s 0 -d 9 -p ack -e 40 -c 0 -i 3040 -a 0 -x {10.0 9.0 1515 ------- null} h -t 1.73962 -s 0 -d 9 -p ack -e 40 -c 0 -i 3040 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.74 -s 10 -d 7 -p ack -e 40 -c 0 -i 3044 -a 0 -x {10.0 9.0 1517 ------- null} + -t 1.74 -s 7 -d 0 -p ack -e 40 -c 0 -i 3044 -a 0 -x {10.0 9.0 1517 ------- null} h -t 1.74 -s 7 -d 8 -p ack -e 40 -c 0 -i 3044 -a 0 -x {10.0 9.0 1517 ------- null} r -t 1.7401 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3043 -a 0 -x {9.0 10.0 1526 ------- null} + -t 1.7401 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3043 -a 0 -x {9.0 10.0 1526 ------- null} h -t 1.7401 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3043 -a 0 -x {9.0 10.0 1526 ------- null} r -t 1.74014 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3029 -a 0 -x {9.0 10.0 1519 ------- null} + -t 1.74014 -s 10 -d 7 -p ack -e 40 -c 0 -i 3048 -a 0 -x {10.0 9.0 1519 ------- null} - -t 1.74014 -s 10 -d 7 -p ack -e 40 -c 0 -i 3048 -a 0 -x {10.0 9.0 1519 ------- null} h -t 1.74014 -s 10 -d 7 -p ack -e 40 -c 0 -i 3048 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.74061 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3035 -a 0 -x {9.0 10.0 1522 ------- null} - -t 1.74061 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3035 -a 0 -x {9.0 10.0 1522 ------- null} h -t 1.74061 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3035 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.7407 -s 0 -d 9 -p ack -e 40 -c 0 -i 3038 -a 0 -x {10.0 9.0 1514 ------- null} + -t 1.7407 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3049 -a 0 -x {9.0 10.0 1529 ------- null} - -t 1.7407 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3049 -a 0 -x {9.0 10.0 1529 ------- null} h -t 1.7407 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3049 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.74077 -s 0 -d 9 -p ack -e 40 -c 0 -i 3042 -a 0 -x {10.0 9.0 1516 ------- null} - -t 1.74077 -s 0 -d 9 -p ack -e 40 -c 0 -i 3042 -a 0 -x {10.0 9.0 1516 ------- null} h -t 1.74077 -s 0 -d 9 -p ack -e 40 -c 0 -i 3042 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.74109 -s 10 -d 7 -p ack -e 40 -c 0 -i 3046 -a 0 -x {10.0 9.0 1518 ------- null} + -t 1.74109 -s 7 -d 0 -p ack -e 40 -c 0 -i 3046 -a 0 -x {10.0 9.0 1518 ------- null} h -t 1.74109 -s 7 -d 8 -p ack -e 40 -c 0 -i 3046 -a 0 -x {10.0 9.0 1518 ------- null} r -t 1.74118 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3045 -a 0 -x {9.0 10.0 1527 ------- null} + -t 1.74118 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3045 -a 0 -x {9.0 10.0 1527 ------- null} h -t 1.74118 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3045 -a 0 -x {9.0 10.0 1527 ------- null} r -t 1.74123 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3031 -a 0 -x {9.0 10.0 1520 ------- null} + -t 1.74123 -s 10 -d 7 -p ack -e 40 -c 0 -i 3050 -a 0 -x {10.0 9.0 1520 ------- null} - -t 1.74123 -s 10 -d 7 -p ack -e 40 -c 0 -i 3050 -a 0 -x {10.0 9.0 1520 ------- null} h -t 1.74123 -s 10 -d 7 -p ack -e 40 -c 0 -i 3050 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.74165 -s 0 -d 9 -p ack -e 40 -c 0 -i 3040 -a 0 -x {10.0 9.0 1515 ------- null} + -t 1.74165 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3051 -a 0 -x {9.0 10.0 1530 ------- null} - -t 1.74165 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3051 -a 0 -x {9.0 10.0 1530 ------- null} h -t 1.74165 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3051 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.7417 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3037 -a 0 -x {9.0 10.0 1523 ------- null} - -t 1.7417 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3037 -a 0 -x {9.0 10.0 1523 ------- null} h -t 1.7417 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3037 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.74186 -s 0 -d 9 -p ack -e 40 -c 0 -i 3044 -a 0 -x {10.0 9.0 1517 ------- null} - -t 1.74186 -s 0 -d 9 -p ack -e 40 -c 0 -i 3044 -a 0 -x {10.0 9.0 1517 ------- null} h -t 1.74186 -s 0 -d 9 -p ack -e 40 -c 0 -i 3044 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.74218 -s 10 -d 7 -p ack -e 40 -c 0 -i 3048 -a 0 -x {10.0 9.0 1519 ------- null} + -t 1.74218 -s 7 -d 0 -p ack -e 40 -c 0 -i 3048 -a 0 -x {10.0 9.0 1519 ------- null} h -t 1.74218 -s 7 -d 8 -p ack -e 40 -c 0 -i 3048 -a 0 -x {10.0 9.0 1519 ------- null} r -t 1.74227 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3047 -a 0 -x {9.0 10.0 1528 ------- null} + -t 1.74227 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3047 -a 0 -x {9.0 10.0 1528 ------- null} h -t 1.74227 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3047 -a 0 -x {9.0 10.0 1528 ------- null} r -t 1.74232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3033 -a 0 -x {9.0 10.0 1521 ------- null} + -t 1.74232 -s 10 -d 7 -p ack -e 40 -c 0 -i 3052 -a 0 -x {10.0 9.0 1521 ------- null} - -t 1.74232 -s 10 -d 7 -p ack -e 40 -c 0 -i 3052 -a 0 -x {10.0 9.0 1521 ------- null} h -t 1.74232 -s 10 -d 7 -p ack -e 40 -c 0 -i 3052 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.74278 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3039 -a 0 -x {9.0 10.0 1524 ------- null} - -t 1.74278 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3039 -a 0 -x {9.0 10.0 1524 ------- null} h -t 1.74278 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3039 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.7428 -s 0 -d 9 -p ack -e 40 -c 0 -i 3042 -a 0 -x {10.0 9.0 1516 ------- null} + -t 1.7428 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3053 -a 0 -x {9.0 10.0 1531 ------- null} - -t 1.7428 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3053 -a 0 -x {9.0 10.0 1531 ------- null} h -t 1.7428 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3053 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.74307 -s 0 -d 9 -p ack -e 40 -c 0 -i 3046 -a 0 -x {10.0 9.0 1518 ------- null} - -t 1.74307 -s 0 -d 9 -p ack -e 40 -c 0 -i 3046 -a 0 -x {10.0 9.0 1518 ------- null} h -t 1.74307 -s 0 -d 9 -p ack -e 40 -c 0 -i 3046 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.74326 -s 10 -d 7 -p ack -e 40 -c 0 -i 3050 -a 0 -x {10.0 9.0 1520 ------- null} + -t 1.74326 -s 7 -d 0 -p ack -e 40 -c 0 -i 3050 -a 0 -x {10.0 9.0 1520 ------- null} h -t 1.74326 -s 7 -d 8 -p ack -e 40 -c 0 -i 3050 -a 0 -x {10.0 9.0 1520 ------- null} r -t 1.74341 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3035 -a 0 -x {9.0 10.0 1522 ------- null} + -t 1.74341 -s 10 -d 7 -p ack -e 40 -c 0 -i 3054 -a 0 -x {10.0 9.0 1522 ------- null} - -t 1.74341 -s 10 -d 7 -p ack -e 40 -c 0 -i 3054 -a 0 -x {10.0 9.0 1522 ------- null} h -t 1.74341 -s 10 -d 7 -p ack -e 40 -c 0 -i 3054 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.7435 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3049 -a 0 -x {9.0 10.0 1529 ------- null} + -t 1.7435 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3049 -a 0 -x {9.0 10.0 1529 ------- null} h -t 1.7435 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3049 -a 0 -x {9.0 10.0 1529 ------- null} r -t 1.74389 -s 0 -d 9 -p ack -e 40 -c 0 -i 3044 -a 0 -x {10.0 9.0 1517 ------- null} + -t 1.74389 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3055 -a 0 -x {9.0 10.0 1532 ------- null} - -t 1.74389 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3055 -a 0 -x {9.0 10.0 1532 ------- null} h -t 1.74389 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3055 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.74405 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3041 -a 0 -x {9.0 10.0 1525 ------- null} - -t 1.74405 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3041 -a 0 -x {9.0 10.0 1525 ------- null} h -t 1.74405 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3041 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.74414 -s 0 -d 9 -p ack -e 40 -c 0 -i 3048 -a 0 -x {10.0 9.0 1519 ------- null} - -t 1.74414 -s 0 -d 9 -p ack -e 40 -c 0 -i 3048 -a 0 -x {10.0 9.0 1519 ------- null} h -t 1.74414 -s 0 -d 9 -p ack -e 40 -c 0 -i 3048 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.74435 -s 10 -d 7 -p ack -e 40 -c 0 -i 3052 -a 0 -x {10.0 9.0 1521 ------- null} + -t 1.74435 -s 7 -d 0 -p ack -e 40 -c 0 -i 3052 -a 0 -x {10.0 9.0 1521 ------- null} h -t 1.74435 -s 7 -d 8 -p ack -e 40 -c 0 -i 3052 -a 0 -x {10.0 9.0 1521 ------- null} r -t 1.74445 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3051 -a 0 -x {9.0 10.0 1530 ------- null} + -t 1.74445 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3051 -a 0 -x {9.0 10.0 1530 ------- null} h -t 1.74445 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3051 -a 0 -x {9.0 10.0 1530 ------- null} r -t 1.7445 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3037 -a 0 -x {9.0 10.0 1523 ------- null} + -t 1.7445 -s 10 -d 7 -p ack -e 40 -c 0 -i 3056 -a 0 -x {10.0 9.0 1523 ------- null} - -t 1.7445 -s 10 -d 7 -p ack -e 40 -c 0 -i 3056 -a 0 -x {10.0 9.0 1523 ------- null} h -t 1.7445 -s 10 -d 7 -p ack -e 40 -c 0 -i 3056 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.7451 -s 0 -d 9 -p ack -e 40 -c 0 -i 3046 -a 0 -x {10.0 9.0 1518 ------- null} + -t 1.7451 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3057 -a 0 -x {9.0 10.0 1533 ------- null} - -t 1.7451 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3057 -a 0 -x {9.0 10.0 1533 ------- null} h -t 1.7451 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3057 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.74514 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3043 -a 0 -x {9.0 10.0 1526 ------- null} - -t 1.74514 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3043 -a 0 -x {9.0 10.0 1526 ------- null} h -t 1.74514 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3043 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.7452 -s 0 -d 9 -p ack -e 40 -c 0 -i 3050 -a 0 -x {10.0 9.0 1520 ------- null} - -t 1.7452 -s 0 -d 9 -p ack -e 40 -c 0 -i 3050 -a 0 -x {10.0 9.0 1520 ------- null} h -t 1.7452 -s 0 -d 9 -p ack -e 40 -c 0 -i 3050 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.74544 -s 10 -d 7 -p ack -e 40 -c 0 -i 3054 -a 0 -x {10.0 9.0 1522 ------- null} + -t 1.74544 -s 7 -d 0 -p ack -e 40 -c 0 -i 3054 -a 0 -x {10.0 9.0 1522 ------- null} h -t 1.74544 -s 7 -d 8 -p ack -e 40 -c 0 -i 3054 -a 0 -x {10.0 9.0 1522 ------- null} r -t 1.74558 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3039 -a 0 -x {9.0 10.0 1524 ------- null} + -t 1.74558 -s 10 -d 7 -p ack -e 40 -c 0 -i 3058 -a 0 -x {10.0 9.0 1524 ------- null} - -t 1.74558 -s 10 -d 7 -p ack -e 40 -c 0 -i 3058 -a 0 -x {10.0 9.0 1524 ------- null} h -t 1.74558 -s 10 -d 7 -p ack -e 40 -c 0 -i 3058 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.7456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3053 -a 0 -x {9.0 10.0 1531 ------- null} + -t 1.7456 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3053 -a 0 -x {9.0 10.0 1531 ------- null} h -t 1.7456 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3053 -a 0 -x {9.0 10.0 1531 ------- null} r -t 1.74618 -s 0 -d 9 -p ack -e 40 -c 0 -i 3048 -a 0 -x {10.0 9.0 1519 ------- null} + -t 1.74618 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3059 -a 0 -x {9.0 10.0 1534 ------- null} - -t 1.74618 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3059 -a 0 -x {9.0 10.0 1534 ------- null} h -t 1.74618 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3059 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.74622 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3045 -a 0 -x {9.0 10.0 1527 ------- null} - -t 1.74622 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3045 -a 0 -x {9.0 10.0 1527 ------- null} h -t 1.74622 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3045 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.74642 -s 0 -d 9 -p ack -e 40 -c 0 -i 3052 -a 0 -x {10.0 9.0 1521 ------- null} - -t 1.74642 -s 0 -d 9 -p ack -e 40 -c 0 -i 3052 -a 0 -x {10.0 9.0 1521 ------- null} h -t 1.74642 -s 0 -d 9 -p ack -e 40 -c 0 -i 3052 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.74653 -s 10 -d 7 -p ack -e 40 -c 0 -i 3056 -a 0 -x {10.0 9.0 1523 ------- null} + -t 1.74653 -s 7 -d 0 -p ack -e 40 -c 0 -i 3056 -a 0 -x {10.0 9.0 1523 ------- null} h -t 1.74653 -s 7 -d 8 -p ack -e 40 -c 0 -i 3056 -a 0 -x {10.0 9.0 1523 ------- null} r -t 1.74669 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3055 -a 0 -x {9.0 10.0 1532 ------- null} + -t 1.74669 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3055 -a 0 -x {9.0 10.0 1532 ------- null} h -t 1.74669 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3055 -a 0 -x {9.0 10.0 1532 ------- null} r -t 1.74685 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3041 -a 0 -x {9.0 10.0 1525 ------- null} + -t 1.74685 -s 10 -d 7 -p ack -e 40 -c 0 -i 3060 -a 0 -x {10.0 9.0 1525 ------- null} - -t 1.74685 -s 10 -d 7 -p ack -e 40 -c 0 -i 3060 -a 0 -x {10.0 9.0 1525 ------- null} h -t 1.74685 -s 10 -d 7 -p ack -e 40 -c 0 -i 3060 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.74723 -s 0 -d 9 -p ack -e 40 -c 0 -i 3050 -a 0 -x {10.0 9.0 1520 ------- null} + -t 1.74723 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3061 -a 0 -x {9.0 10.0 1535 ------- null} - -t 1.74723 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3061 -a 0 -x {9.0 10.0 1535 ------- null} h -t 1.74723 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3061 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.74731 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3047 -a 0 -x {9.0 10.0 1528 ------- null} - -t 1.74731 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3047 -a 0 -x {9.0 10.0 1528 ------- null} h -t 1.74731 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3047 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.74762 -s 10 -d 7 -p ack -e 40 -c 0 -i 3058 -a 0 -x {10.0 9.0 1524 ------- null} + -t 1.74762 -s 7 -d 0 -p ack -e 40 -c 0 -i 3058 -a 0 -x {10.0 9.0 1524 ------- null} h -t 1.74762 -s 7 -d 8 -p ack -e 40 -c 0 -i 3058 -a 0 -x {10.0 9.0 1524 ------- null} + -t 1.74762 -s 0 -d 9 -p ack -e 40 -c 0 -i 3054 -a 0 -x {10.0 9.0 1522 ------- null} - -t 1.74762 -s 0 -d 9 -p ack -e 40 -c 0 -i 3054 -a 0 -x {10.0 9.0 1522 ------- null} h -t 1.74762 -s 0 -d 9 -p ack -e 40 -c 0 -i 3054 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.7479 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3057 -a 0 -x {9.0 10.0 1533 ------- null} + -t 1.7479 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3057 -a 0 -x {9.0 10.0 1533 ------- null} h -t 1.7479 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3057 -a 0 -x {9.0 10.0 1533 ------- null} r -t 1.74794 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3043 -a 0 -x {9.0 10.0 1526 ------- null} + -t 1.74794 -s 10 -d 7 -p ack -e 40 -c 0 -i 3062 -a 0 -x {10.0 9.0 1526 ------- null} - -t 1.74794 -s 10 -d 7 -p ack -e 40 -c 0 -i 3062 -a 0 -x {10.0 9.0 1526 ------- null} h -t 1.74794 -s 10 -d 7 -p ack -e 40 -c 0 -i 3062 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.74845 -s 0 -d 9 -p ack -e 40 -c 0 -i 3052 -a 0 -x {10.0 9.0 1521 ------- null} + -t 1.74845 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3063 -a 0 -x {9.0 10.0 1536 ------- null} - -t 1.74845 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3063 -a 0 -x {9.0 10.0 1536 ------- null} h -t 1.74845 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3063 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.74853 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3049 -a 0 -x {9.0 10.0 1529 ------- null} - -t 1.74853 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3049 -a 0 -x {9.0 10.0 1529 ------- null} h -t 1.74853 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3049 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.74875 -s 0 -d 9 -p ack -e 40 -c 0 -i 3056 -a 0 -x {10.0 9.0 1523 ------- null} - -t 1.74875 -s 0 -d 9 -p ack -e 40 -c 0 -i 3056 -a 0 -x {10.0 9.0 1523 ------- null} h -t 1.74875 -s 0 -d 9 -p ack -e 40 -c 0 -i 3056 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.74888 -s 10 -d 7 -p ack -e 40 -c 0 -i 3060 -a 0 -x {10.0 9.0 1525 ------- null} + -t 1.74888 -s 7 -d 0 -p ack -e 40 -c 0 -i 3060 -a 0 -x {10.0 9.0 1525 ------- null} h -t 1.74888 -s 7 -d 8 -p ack -e 40 -c 0 -i 3060 -a 0 -x {10.0 9.0 1525 ------- null} r -t 1.74898 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3059 -a 0 -x {9.0 10.0 1534 ------- null} + -t 1.74898 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3059 -a 0 -x {9.0 10.0 1534 ------- null} h -t 1.74898 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3059 -a 0 -x {9.0 10.0 1534 ------- null} r -t 1.74902 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3045 -a 0 -x {9.0 10.0 1527 ------- null} + -t 1.74902 -s 10 -d 7 -p ack -e 40 -c 0 -i 3064 -a 0 -x {10.0 9.0 1527 ------- null} - -t 1.74902 -s 10 -d 7 -p ack -e 40 -c 0 -i 3064 -a 0 -x {10.0 9.0 1527 ------- null} h -t 1.74902 -s 10 -d 7 -p ack -e 40 -c 0 -i 3064 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.74962 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3051 -a 0 -x {9.0 10.0 1530 ------- null} - -t 1.74962 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3051 -a 0 -x {9.0 10.0 1530 ------- null} h -t 1.74962 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3051 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.74965 -s 0 -d 9 -p ack -e 40 -c 0 -i 3054 -a 0 -x {10.0 9.0 1522 ------- null} + -t 1.74965 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3065 -a 0 -x {9.0 10.0 1537 ------- null} - -t 1.74965 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3065 -a 0 -x {9.0 10.0 1537 ------- null} h -t 1.74965 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3065 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.74978 -s 0 -d 9 -p ack -e 40 -c 0 -i 3058 -a 0 -x {10.0 9.0 1524 ------- null} - -t 1.74978 -s 0 -d 9 -p ack -e 40 -c 0 -i 3058 -a 0 -x {10.0 9.0 1524 ------- null} h -t 1.74978 -s 0 -d 9 -p ack -e 40 -c 0 -i 3058 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.74997 -s 10 -d 7 -p ack -e 40 -c 0 -i 3062 -a 0 -x {10.0 9.0 1526 ------- null} + -t 1.74997 -s 7 -d 0 -p ack -e 40 -c 0 -i 3062 -a 0 -x {10.0 9.0 1526 ------- null} h -t 1.74997 -s 7 -d 8 -p ack -e 40 -c 0 -i 3062 -a 0 -x {10.0 9.0 1526 ------- null} r -t 1.75003 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3061 -a 0 -x {9.0 10.0 1535 ------- null} + -t 1.75003 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3061 -a 0 -x {9.0 10.0 1535 ------- null} h -t 1.75003 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3061 -a 0 -x {9.0 10.0 1535 ------- null} r -t 1.75011 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3047 -a 0 -x {9.0 10.0 1528 ------- null} + -t 1.75011 -s 10 -d 7 -p ack -e 40 -c 0 -i 3066 -a 0 -x {10.0 9.0 1528 ------- null} - -t 1.75011 -s 10 -d 7 -p ack -e 40 -c 0 -i 3066 -a 0 -x {10.0 9.0 1528 ------- null} h -t 1.75011 -s 10 -d 7 -p ack -e 40 -c 0 -i 3066 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.7507 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3053 -a 0 -x {9.0 10.0 1531 ------- null} - -t 1.7507 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3053 -a 0 -x {9.0 10.0 1531 ------- null} h -t 1.7507 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3053 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.75077 -s 0 -d 9 -p ack -e 40 -c 0 -i 3060 -a 0 -x {10.0 9.0 1525 ------- null} - -t 1.75077 -s 0 -d 9 -p ack -e 40 -c 0 -i 3060 -a 0 -x {10.0 9.0 1525 ------- null} h -t 1.75077 -s 0 -d 9 -p ack -e 40 -c 0 -i 3060 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.75078 -s 0 -d 9 -p ack -e 40 -c 0 -i 3056 -a 0 -x {10.0 9.0 1523 ------- null} + -t 1.75078 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3067 -a 0 -x {9.0 10.0 1538 ------- null} - -t 1.75078 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3067 -a 0 -x {9.0 10.0 1538 ------- null} h -t 1.75078 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3067 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.75106 -s 10 -d 7 -p ack -e 40 -c 0 -i 3064 -a 0 -x {10.0 9.0 1527 ------- null} + -t 1.75106 -s 7 -d 0 -p ack -e 40 -c 0 -i 3064 -a 0 -x {10.0 9.0 1527 ------- null} h -t 1.75106 -s 7 -d 8 -p ack -e 40 -c 0 -i 3064 -a 0 -x {10.0 9.0 1527 ------- null} r -t 1.75125 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3063 -a 0 -x {9.0 10.0 1536 ------- null} + -t 1.75125 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3063 -a 0 -x {9.0 10.0 1536 ------- null} h -t 1.75125 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3063 -a 0 -x {9.0 10.0 1536 ------- null} r -t 1.75133 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3049 -a 0 -x {9.0 10.0 1529 ------- null} + -t 1.75133 -s 10 -d 7 -p ack -e 40 -c 0 -i 3068 -a 0 -x {10.0 9.0 1529 ------- null} - -t 1.75133 -s 10 -d 7 -p ack -e 40 -c 0 -i 3068 -a 0 -x {10.0 9.0 1529 ------- null} h -t 1.75133 -s 10 -d 7 -p ack -e 40 -c 0 -i 3068 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.75179 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3055 -a 0 -x {9.0 10.0 1532 ------- null} - -t 1.75179 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3055 -a 0 -x {9.0 10.0 1532 ------- null} h -t 1.75179 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3055 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.75181 -s 0 -d 9 -p ack -e 40 -c 0 -i 3058 -a 0 -x {10.0 9.0 1524 ------- null} + -t 1.75181 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3069 -a 0 -x {9.0 10.0 1539 ------- null} - -t 1.75181 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3069 -a 0 -x {9.0 10.0 1539 ------- null} h -t 1.75181 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3069 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.75205 -s 0 -d 9 -p ack -e 40 -c 0 -i 3062 -a 0 -x {10.0 9.0 1526 ------- null} - -t 1.75205 -s 0 -d 9 -p ack -e 40 -c 0 -i 3062 -a 0 -x {10.0 9.0 1526 ------- null} h -t 1.75205 -s 0 -d 9 -p ack -e 40 -c 0 -i 3062 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.75214 -s 10 -d 7 -p ack -e 40 -c 0 -i 3066 -a 0 -x {10.0 9.0 1528 ------- null} + -t 1.75214 -s 7 -d 0 -p ack -e 40 -c 0 -i 3066 -a 0 -x {10.0 9.0 1528 ------- null} h -t 1.75214 -s 7 -d 8 -p ack -e 40 -c 0 -i 3066 -a 0 -x {10.0 9.0 1528 ------- null} r -t 1.75242 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3051 -a 0 -x {9.0 10.0 1530 ------- null} + -t 1.75242 -s 10 -d 7 -p ack -e 40 -c 0 -i 3070 -a 0 -x {10.0 9.0 1530 ------- null} - -t 1.75242 -s 10 -d 7 -p ack -e 40 -c 0 -i 3070 -a 0 -x {10.0 9.0 1530 ------- null} h -t 1.75242 -s 10 -d 7 -p ack -e 40 -c 0 -i 3070 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.75245 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3065 -a 0 -x {9.0 10.0 1537 ------- null} + -t 1.75245 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3065 -a 0 -x {9.0 10.0 1537 ------- null} h -t 1.75245 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3065 -a 0 -x {9.0 10.0 1537 ------- null} r -t 1.7528 -s 0 -d 9 -p ack -e 40 -c 0 -i 3060 -a 0 -x {10.0 9.0 1525 ------- null} + -t 1.7528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3071 -a 0 -x {9.0 10.0 1540 ------- null} - -t 1.7528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3071 -a 0 -x {9.0 10.0 1540 ------- null} h -t 1.7528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3071 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.75288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3057 -a 0 -x {9.0 10.0 1533 ------- null} - -t 1.75288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3057 -a 0 -x {9.0 10.0 1533 ------- null} h -t 1.75288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3057 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.75301 -s 0 -d 9 -p ack -e 40 -c 0 -i 3064 -a 0 -x {10.0 9.0 1527 ------- null} - -t 1.75301 -s 0 -d 9 -p ack -e 40 -c 0 -i 3064 -a 0 -x {10.0 9.0 1527 ------- null} h -t 1.75301 -s 0 -d 9 -p ack -e 40 -c 0 -i 3064 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.75336 -s 10 -d 7 -p ack -e 40 -c 0 -i 3068 -a 0 -x {10.0 9.0 1529 ------- null} + -t 1.75336 -s 7 -d 0 -p ack -e 40 -c 0 -i 3068 -a 0 -x {10.0 9.0 1529 ------- null} h -t 1.75336 -s 7 -d 8 -p ack -e 40 -c 0 -i 3068 -a 0 -x {10.0 9.0 1529 ------- null} r -t 1.7535 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3053 -a 0 -x {9.0 10.0 1531 ------- null} + -t 1.7535 -s 10 -d 7 -p ack -e 40 -c 0 -i 3072 -a 0 -x {10.0 9.0 1531 ------- null} - -t 1.7535 -s 10 -d 7 -p ack -e 40 -c 0 -i 3072 -a 0 -x {10.0 9.0 1531 ------- null} h -t 1.7535 -s 10 -d 7 -p ack -e 40 -c 0 -i 3072 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.75358 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3067 -a 0 -x {9.0 10.0 1538 ------- null} + -t 1.75358 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3067 -a 0 -x {9.0 10.0 1538 ------- null} h -t 1.75358 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3067 -a 0 -x {9.0 10.0 1538 ------- null} + -t 1.75397 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3059 -a 0 -x {9.0 10.0 1534 ------- null} - -t 1.75397 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3059 -a 0 -x {9.0 10.0 1534 ------- null} h -t 1.75397 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3059 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.75408 -s 0 -d 9 -p ack -e 40 -c 0 -i 3062 -a 0 -x {10.0 9.0 1526 ------- null} + -t 1.75408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3073 -a 0 -x {9.0 10.0 1541 ------- null} - -t 1.75408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3073 -a 0 -x {9.0 10.0 1541 ------- null} h -t 1.75408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3073 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.75418 -s 0 -d 9 -p ack -e 40 -c 0 -i 3066 -a 0 -x {10.0 9.0 1528 ------- null} - -t 1.75418 -s 0 -d 9 -p ack -e 40 -c 0 -i 3066 -a 0 -x {10.0 9.0 1528 ------- null} h -t 1.75418 -s 0 -d 9 -p ack -e 40 -c 0 -i 3066 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.75445 -s 10 -d 7 -p ack -e 40 -c 0 -i 3070 -a 0 -x {10.0 9.0 1530 ------- null} + -t 1.75445 -s 7 -d 0 -p ack -e 40 -c 0 -i 3070 -a 0 -x {10.0 9.0 1530 ------- null} h -t 1.75445 -s 7 -d 8 -p ack -e 40 -c 0 -i 3070 -a 0 -x {10.0 9.0 1530 ------- null} r -t 1.75459 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3055 -a 0 -x {9.0 10.0 1532 ------- null} + -t 1.75459 -s 10 -d 7 -p ack -e 40 -c 0 -i 3074 -a 0 -x {10.0 9.0 1532 ------- null} - -t 1.75459 -s 10 -d 7 -p ack -e 40 -c 0 -i 3074 -a 0 -x {10.0 9.0 1532 ------- null} h -t 1.75459 -s 10 -d 7 -p ack -e 40 -c 0 -i 3074 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.75461 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3069 -a 0 -x {9.0 10.0 1539 ------- null} + -t 1.75461 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3069 -a 0 -x {9.0 10.0 1539 ------- null} h -t 1.75461 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3069 -a 0 -x {9.0 10.0 1539 ------- null} r -t 1.75504 -s 0 -d 9 -p ack -e 40 -c 0 -i 3064 -a 0 -x {10.0 9.0 1527 ------- null} + -t 1.75504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3075 -a 0 -x {9.0 10.0 1542 ------- null} - -t 1.75504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3075 -a 0 -x {9.0 10.0 1542 ------- null} h -t 1.75504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3075 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.75506 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3061 -a 0 -x {9.0 10.0 1535 ------- null} - -t 1.75506 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3061 -a 0 -x {9.0 10.0 1535 ------- null} h -t 1.75506 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3061 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.75525 -s 0 -d 9 -p ack -e 40 -c 0 -i 3068 -a 0 -x {10.0 9.0 1529 ------- null} - -t 1.75525 -s 0 -d 9 -p ack -e 40 -c 0 -i 3068 -a 0 -x {10.0 9.0 1529 ------- null} h -t 1.75525 -s 0 -d 9 -p ack -e 40 -c 0 -i 3068 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.75554 -s 10 -d 7 -p ack -e 40 -c 0 -i 3072 -a 0 -x {10.0 9.0 1531 ------- null} + -t 1.75554 -s 7 -d 0 -p ack -e 40 -c 0 -i 3072 -a 0 -x {10.0 9.0 1531 ------- null} h -t 1.75554 -s 7 -d 8 -p ack -e 40 -c 0 -i 3072 -a 0 -x {10.0 9.0 1531 ------- null} r -t 1.7556 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3071 -a 0 -x {9.0 10.0 1540 ------- null} + -t 1.7556 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3071 -a 0 -x {9.0 10.0 1540 ------- null} h -t 1.7556 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3071 -a 0 -x {9.0 10.0 1540 ------- null} r -t 1.75568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3057 -a 0 -x {9.0 10.0 1533 ------- null} + -t 1.75568 -s 10 -d 7 -p ack -e 40 -c 0 -i 3076 -a 0 -x {10.0 9.0 1533 ------- null} - -t 1.75568 -s 10 -d 7 -p ack -e 40 -c 0 -i 3076 -a 0 -x {10.0 9.0 1533 ------- null} h -t 1.75568 -s 10 -d 7 -p ack -e 40 -c 0 -i 3076 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.75614 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3063 -a 0 -x {9.0 10.0 1536 ------- null} - -t 1.75614 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3063 -a 0 -x {9.0 10.0 1536 ------- null} h -t 1.75614 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3063 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.75621 -s 0 -d 9 -p ack -e 40 -c 0 -i 3066 -a 0 -x {10.0 9.0 1528 ------- null} + -t 1.75621 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3077 -a 0 -x {9.0 10.0 1543 ------- null} - -t 1.75621 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3077 -a 0 -x {9.0 10.0 1543 ------- null} h -t 1.75621 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3077 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.75627 -s 0 -d 9 -p ack -e 40 -c 0 -i 3070 -a 0 -x {10.0 9.0 1530 ------- null} - -t 1.75627 -s 0 -d 9 -p ack -e 40 -c 0 -i 3070 -a 0 -x {10.0 9.0 1530 ------- null} h -t 1.75627 -s 0 -d 9 -p ack -e 40 -c 0 -i 3070 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.75662 -s 10 -d 7 -p ack -e 40 -c 0 -i 3074 -a 0 -x {10.0 9.0 1532 ------- null} + -t 1.75662 -s 7 -d 0 -p ack -e 40 -c 0 -i 3074 -a 0 -x {10.0 9.0 1532 ------- null} h -t 1.75662 -s 7 -d 8 -p ack -e 40 -c 0 -i 3074 -a 0 -x {10.0 9.0 1532 ------- null} r -t 1.75677 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3059 -a 0 -x {9.0 10.0 1534 ------- null} + -t 1.75677 -s 10 -d 7 -p ack -e 40 -c 0 -i 3078 -a 0 -x {10.0 9.0 1534 ------- null} - -t 1.75677 -s 10 -d 7 -p ack -e 40 -c 0 -i 3078 -a 0 -x {10.0 9.0 1534 ------- null} h -t 1.75677 -s 10 -d 7 -p ack -e 40 -c 0 -i 3078 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.75688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3073 -a 0 -x {9.0 10.0 1541 ------- null} + -t 1.75688 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3073 -a 0 -x {9.0 10.0 1541 ------- null} h -t 1.75688 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3073 -a 0 -x {9.0 10.0 1541 ------- null} + -t 1.75723 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3065 -a 0 -x {9.0 10.0 1537 ------- null} - -t 1.75723 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3065 -a 0 -x {9.0 10.0 1537 ------- null} h -t 1.75723 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3065 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.75728 -s 0 -d 9 -p ack -e 40 -c 0 -i 3068 -a 0 -x {10.0 9.0 1529 ------- null} + -t 1.75728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3079 -a 0 -x {9.0 10.0 1544 ------- null} - -t 1.75728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3079 -a 0 -x {9.0 10.0 1544 ------- null} h -t 1.75728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3079 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.7573 -s 0 -d 9 -p ack -e 40 -c 0 -i 3072 -a 0 -x {10.0 9.0 1531 ------- null} - -t 1.7573 -s 0 -d 9 -p ack -e 40 -c 0 -i 3072 -a 0 -x {10.0 9.0 1531 ------- null} h -t 1.7573 -s 0 -d 9 -p ack -e 40 -c 0 -i 3072 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.75771 -s 10 -d 7 -p ack -e 40 -c 0 -i 3076 -a 0 -x {10.0 9.0 1533 ------- null} + -t 1.75771 -s 7 -d 0 -p ack -e 40 -c 0 -i 3076 -a 0 -x {10.0 9.0 1533 ------- null} h -t 1.75771 -s 7 -d 8 -p ack -e 40 -c 0 -i 3076 -a 0 -x {10.0 9.0 1533 ------- null} r -t 1.75784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3075 -a 0 -x {9.0 10.0 1542 ------- null} + -t 1.75784 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3075 -a 0 -x {9.0 10.0 1542 ------- null} h -t 1.75784 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3075 -a 0 -x {9.0 10.0 1542 ------- null} r -t 1.75786 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3061 -a 0 -x {9.0 10.0 1535 ------- null} + -t 1.75786 -s 10 -d 7 -p ack -e 40 -c 0 -i 3080 -a 0 -x {10.0 9.0 1535 ------- null} - -t 1.75786 -s 10 -d 7 -p ack -e 40 -c 0 -i 3080 -a 0 -x {10.0 9.0 1535 ------- null} h -t 1.75786 -s 10 -d 7 -p ack -e 40 -c 0 -i 3080 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.7583 -s 0 -d 9 -p ack -e 40 -c 0 -i 3070 -a 0 -x {10.0 9.0 1530 ------- null} + -t 1.7583 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3081 -a 0 -x {9.0 10.0 1545 ------- null} - -t 1.7583 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3081 -a 0 -x {9.0 10.0 1545 ------- null} h -t 1.7583 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3081 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.75832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3067 -a 0 -x {9.0 10.0 1538 ------- null} - -t 1.75832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3067 -a 0 -x {9.0 10.0 1538 ------- null} h -t 1.75832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3067 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.75846 -s 0 -d 9 -p ack -e 40 -c 0 -i 3074 -a 0 -x {10.0 9.0 1532 ------- null} - -t 1.75846 -s 0 -d 9 -p ack -e 40 -c 0 -i 3074 -a 0 -x {10.0 9.0 1532 ------- null} h -t 1.75846 -s 0 -d 9 -p ack -e 40 -c 0 -i 3074 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.7588 -s 10 -d 7 -p ack -e 40 -c 0 -i 3078 -a 0 -x {10.0 9.0 1534 ------- null} + -t 1.7588 -s 7 -d 0 -p ack -e 40 -c 0 -i 3078 -a 0 -x {10.0 9.0 1534 ------- null} h -t 1.7588 -s 7 -d 8 -p ack -e 40 -c 0 -i 3078 -a 0 -x {10.0 9.0 1534 ------- null} r -t 1.75894 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3063 -a 0 -x {9.0 10.0 1536 ------- null} + -t 1.75894 -s 10 -d 7 -p ack -e 40 -c 0 -i 3082 -a 0 -x {10.0 9.0 1536 ------- null} - -t 1.75894 -s 10 -d 7 -p ack -e 40 -c 0 -i 3082 -a 0 -x {10.0 9.0 1536 ------- null} h -t 1.75894 -s 10 -d 7 -p ack -e 40 -c 0 -i 3082 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.75901 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3077 -a 0 -x {9.0 10.0 1543 ------- null} + -t 1.75901 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3077 -a 0 -x {9.0 10.0 1543 ------- null} h -t 1.75901 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3077 -a 0 -x {9.0 10.0 1543 ------- null} r -t 1.75933 -s 0 -d 9 -p ack -e 40 -c 0 -i 3072 -a 0 -x {10.0 9.0 1531 ------- null} + -t 1.75933 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3083 -a 0 -x {9.0 10.0 1546 ------- null} - -t 1.75933 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3083 -a 0 -x {9.0 10.0 1546 ------- null} h -t 1.75933 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3083 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.75941 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3069 -a 0 -x {9.0 10.0 1539 ------- null} - -t 1.75941 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3069 -a 0 -x {9.0 10.0 1539 ------- null} h -t 1.75941 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3069 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.75962 -s 0 -d 9 -p ack -e 40 -c 0 -i 3076 -a 0 -x {10.0 9.0 1533 ------- null} - -t 1.75962 -s 0 -d 9 -p ack -e 40 -c 0 -i 3076 -a 0 -x {10.0 9.0 1533 ------- null} h -t 1.75962 -s 0 -d 9 -p ack -e 40 -c 0 -i 3076 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.75989 -s 10 -d 7 -p ack -e 40 -c 0 -i 3080 -a 0 -x {10.0 9.0 1535 ------- null} + -t 1.75989 -s 7 -d 0 -p ack -e 40 -c 0 -i 3080 -a 0 -x {10.0 9.0 1535 ------- null} h -t 1.75989 -s 7 -d 8 -p ack -e 40 -c 0 -i 3080 -a 0 -x {10.0 9.0 1535 ------- null} r -t 1.76003 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3065 -a 0 -x {9.0 10.0 1537 ------- null} + -t 1.76003 -s 10 -d 7 -p ack -e 40 -c 0 -i 3084 -a 0 -x {10.0 9.0 1537 ------- null} - -t 1.76003 -s 10 -d 7 -p ack -e 40 -c 0 -i 3084 -a 0 -x {10.0 9.0 1537 ------- null} h -t 1.76003 -s 10 -d 7 -p ack -e 40 -c 0 -i 3084 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.76008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3079 -a 0 -x {9.0 10.0 1544 ------- null} + -t 1.76008 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3079 -a 0 -x {9.0 10.0 1544 ------- null} h -t 1.76008 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3079 -a 0 -x {9.0 10.0 1544 ------- null} + -t 1.7605 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3071 -a 0 -x {9.0 10.0 1540 ------- null} - -t 1.7605 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3071 -a 0 -x {9.0 10.0 1540 ------- null} h -t 1.7605 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3071 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.7605 -s 0 -d 9 -p ack -e 40 -c 0 -i 3074 -a 0 -x {10.0 9.0 1532 ------- null} + -t 1.7605 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3085 -a 0 -x {9.0 10.0 1547 ------- null} - -t 1.7605 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3085 -a 0 -x {9.0 10.0 1547 ------- null} h -t 1.7605 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3085 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.76072 -s 0 -d 9 -p ack -e 40 -c 0 -i 3078 -a 0 -x {10.0 9.0 1534 ------- null} - -t 1.76072 -s 0 -d 9 -p ack -e 40 -c 0 -i 3078 -a 0 -x {10.0 9.0 1534 ------- null} h -t 1.76072 -s 0 -d 9 -p ack -e 40 -c 0 -i 3078 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.76098 -s 10 -d 7 -p ack -e 40 -c 0 -i 3082 -a 0 -x {10.0 9.0 1536 ------- null} + -t 1.76098 -s 7 -d 0 -p ack -e 40 -c 0 -i 3082 -a 0 -x {10.0 9.0 1536 ------- null} h -t 1.76098 -s 7 -d 8 -p ack -e 40 -c 0 -i 3082 -a 0 -x {10.0 9.0 1536 ------- null} r -t 1.7611 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3081 -a 0 -x {9.0 10.0 1545 ------- null} + -t 1.7611 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3081 -a 0 -x {9.0 10.0 1545 ------- null} h -t 1.7611 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3081 -a 0 -x {9.0 10.0 1545 ------- null} r -t 1.76112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3067 -a 0 -x {9.0 10.0 1538 ------- null} + -t 1.76112 -s 10 -d 7 -p ack -e 40 -c 0 -i 3086 -a 0 -x {10.0 9.0 1538 ------- null} - -t 1.76112 -s 10 -d 7 -p ack -e 40 -c 0 -i 3086 -a 0 -x {10.0 9.0 1538 ------- null} h -t 1.76112 -s 10 -d 7 -p ack -e 40 -c 0 -i 3086 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.76158 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3073 -a 0 -x {9.0 10.0 1541 ------- null} - -t 1.76158 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3073 -a 0 -x {9.0 10.0 1541 ------- null} h -t 1.76158 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3073 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.76165 -s 0 -d 9 -p ack -e 40 -c 0 -i 3076 -a 0 -x {10.0 9.0 1533 ------- null} + -t 1.76165 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3087 -a 0 -x {9.0 10.0 1548 ------- null} - -t 1.76165 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3087 -a 0 -x {9.0 10.0 1548 ------- null} h -t 1.76165 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3087 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.7617 -s 0 -d 9 -p ack -e 40 -c 0 -i 3080 -a 0 -x {10.0 9.0 1535 ------- null} - -t 1.7617 -s 0 -d 9 -p ack -e 40 -c 0 -i 3080 -a 0 -x {10.0 9.0 1535 ------- null} h -t 1.7617 -s 0 -d 9 -p ack -e 40 -c 0 -i 3080 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.76206 -s 10 -d 7 -p ack -e 40 -c 0 -i 3084 -a 0 -x {10.0 9.0 1537 ------- null} + -t 1.76206 -s 7 -d 0 -p ack -e 40 -c 0 -i 3084 -a 0 -x {10.0 9.0 1537 ------- null} h -t 1.76206 -s 7 -d 8 -p ack -e 40 -c 0 -i 3084 -a 0 -x {10.0 9.0 1537 ------- null} r -t 1.76213 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3083 -a 0 -x {9.0 10.0 1546 ------- null} + -t 1.76213 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3083 -a 0 -x {9.0 10.0 1546 ------- null} h -t 1.76213 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3083 -a 0 -x {9.0 10.0 1546 ------- null} r -t 1.76221 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3069 -a 0 -x {9.0 10.0 1539 ------- null} + -t 1.76221 -s 10 -d 7 -p ack -e 40 -c 0 -i 3088 -a 0 -x {10.0 9.0 1539 ------- null} - -t 1.76221 -s 10 -d 7 -p ack -e 40 -c 0 -i 3088 -a 0 -x {10.0 9.0 1539 ------- null} h -t 1.76221 -s 10 -d 7 -p ack -e 40 -c 0 -i 3088 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.76267 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3075 -a 0 -x {9.0 10.0 1542 ------- null} - -t 1.76267 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3075 -a 0 -x {9.0 10.0 1542 ------- null} h -t 1.76267 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3075 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.76275 -s 0 -d 9 -p ack -e 40 -c 0 -i 3078 -a 0 -x {10.0 9.0 1534 ------- null} + -t 1.76275 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3089 -a 0 -x {9.0 10.0 1549 ------- null} - -t 1.76275 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3089 -a 0 -x {9.0 10.0 1549 ------- null} h -t 1.76275 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3089 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.76288 -s 0 -d 9 -p ack -e 40 -c 0 -i 3082 -a 0 -x {10.0 9.0 1536 ------- null} - -t 1.76288 -s 0 -d 9 -p ack -e 40 -c 0 -i 3082 -a 0 -x {10.0 9.0 1536 ------- null} h -t 1.76288 -s 0 -d 9 -p ack -e 40 -c 0 -i 3082 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.76315 -s 10 -d 7 -p ack -e 40 -c 0 -i 3086 -a 0 -x {10.0 9.0 1538 ------- null} + -t 1.76315 -s 7 -d 0 -p ack -e 40 -c 0 -i 3086 -a 0 -x {10.0 9.0 1538 ------- null} h -t 1.76315 -s 7 -d 8 -p ack -e 40 -c 0 -i 3086 -a 0 -x {10.0 9.0 1538 ------- null} r -t 1.7633 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3071 -a 0 -x {9.0 10.0 1540 ------- null} + -t 1.7633 -s 10 -d 7 -p ack -e 40 -c 0 -i 3090 -a 0 -x {10.0 9.0 1540 ------- null} - -t 1.7633 -s 10 -d 7 -p ack -e 40 -c 0 -i 3090 -a 0 -x {10.0 9.0 1540 ------- null} h -t 1.7633 -s 10 -d 7 -p ack -e 40 -c 0 -i 3090 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.7633 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3085 -a 0 -x {9.0 10.0 1547 ------- null} + -t 1.7633 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3085 -a 0 -x {9.0 10.0 1547 ------- null} h -t 1.7633 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3085 -a 0 -x {9.0 10.0 1547 ------- null} r -t 1.76373 -s 0 -d 9 -p ack -e 40 -c 0 -i 3080 -a 0 -x {10.0 9.0 1535 ------- null} + -t 1.76373 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3091 -a 0 -x {9.0 10.0 1550 ------- null} - -t 1.76373 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3091 -a 0 -x {9.0 10.0 1550 ------- null} h -t 1.76373 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3091 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.76376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3077 -a 0 -x {9.0 10.0 1543 ------- null} - -t 1.76376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3077 -a 0 -x {9.0 10.0 1543 ------- null} h -t 1.76376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3077 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.76403 -s 0 -d 9 -p ack -e 40 -c 0 -i 3084 -a 0 -x {10.0 9.0 1537 ------- null} - -t 1.76403 -s 0 -d 9 -p ack -e 40 -c 0 -i 3084 -a 0 -x {10.0 9.0 1537 ------- null} h -t 1.76403 -s 0 -d 9 -p ack -e 40 -c 0 -i 3084 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.76424 -s 10 -d 7 -p ack -e 40 -c 0 -i 3088 -a 0 -x {10.0 9.0 1539 ------- null} + -t 1.76424 -s 7 -d 0 -p ack -e 40 -c 0 -i 3088 -a 0 -x {10.0 9.0 1539 ------- null} h -t 1.76424 -s 7 -d 8 -p ack -e 40 -c 0 -i 3088 -a 0 -x {10.0 9.0 1539 ------- null} r -t 1.76438 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3073 -a 0 -x {9.0 10.0 1541 ------- null} + -t 1.76438 -s 10 -d 7 -p ack -e 40 -c 0 -i 3092 -a 0 -x {10.0 9.0 1541 ------- null} - -t 1.76438 -s 10 -d 7 -p ack -e 40 -c 0 -i 3092 -a 0 -x {10.0 9.0 1541 ------- null} h -t 1.76438 -s 10 -d 7 -p ack -e 40 -c 0 -i 3092 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.76445 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3087 -a 0 -x {9.0 10.0 1548 ------- null} + -t 1.76445 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3087 -a 0 -x {9.0 10.0 1548 ------- null} h -t 1.76445 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3087 -a 0 -x {9.0 10.0 1548 ------- null} r -t 1.76491 -s 0 -d 9 -p ack -e 40 -c 0 -i 3082 -a 0 -x {10.0 9.0 1536 ------- null} + -t 1.76491 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3093 -a 0 -x {9.0 10.0 1551 ------- null} - -t 1.76491 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3093 -a 0 -x {9.0 10.0 1551 ------- null} h -t 1.76491 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3093 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.76504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3079 -a 0 -x {9.0 10.0 1544 ------- null} - -t 1.76504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3079 -a 0 -x {9.0 10.0 1544 ------- null} h -t 1.76504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3079 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.76533 -s 10 -d 7 -p ack -e 40 -c 0 -i 3090 -a 0 -x {10.0 9.0 1540 ------- null} + -t 1.76533 -s 7 -d 0 -p ack -e 40 -c 0 -i 3090 -a 0 -x {10.0 9.0 1540 ------- null} h -t 1.76533 -s 7 -d 8 -p ack -e 40 -c 0 -i 3090 -a 0 -x {10.0 9.0 1540 ------- null} + -t 1.76534 -s 0 -d 9 -p ack -e 40 -c 0 -i 3086 -a 0 -x {10.0 9.0 1538 ------- null} - -t 1.76534 -s 0 -d 9 -p ack -e 40 -c 0 -i 3086 -a 0 -x {10.0 9.0 1538 ------- null} h -t 1.76534 -s 0 -d 9 -p ack -e 40 -c 0 -i 3086 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.76547 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3075 -a 0 -x {9.0 10.0 1542 ------- null} + -t 1.76547 -s 10 -d 7 -p ack -e 40 -c 0 -i 3094 -a 0 -x {10.0 9.0 1542 ------- null} - -t 1.76547 -s 10 -d 7 -p ack -e 40 -c 0 -i 3094 -a 0 -x {10.0 9.0 1542 ------- null} h -t 1.76547 -s 10 -d 7 -p ack -e 40 -c 0 -i 3094 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.76555 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3089 -a 0 -x {9.0 10.0 1549 ------- null} + -t 1.76555 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3089 -a 0 -x {9.0 10.0 1549 ------- null} h -t 1.76555 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3089 -a 0 -x {9.0 10.0 1549 ------- null} r -t 1.76606 -s 0 -d 9 -p ack -e 40 -c 0 -i 3084 -a 0 -x {10.0 9.0 1537 ------- null} + -t 1.76606 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3095 -a 0 -x {9.0 10.0 1552 ------- null} - -t 1.76606 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3095 -a 0 -x {9.0 10.0 1552 ------- null} h -t 1.76606 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3095 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.76632 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3081 -a 0 -x {9.0 10.0 1545 ------- null} - -t 1.76632 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3081 -a 0 -x {9.0 10.0 1545 ------- null} h -t 1.76632 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3081 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.7664 -s 0 -d 9 -p ack -e 40 -c 0 -i 3088 -a 0 -x {10.0 9.0 1539 ------- null} - -t 1.7664 -s 0 -d 9 -p ack -e 40 -c 0 -i 3088 -a 0 -x {10.0 9.0 1539 ------- null} h -t 1.7664 -s 0 -d 9 -p ack -e 40 -c 0 -i 3088 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.76642 -s 10 -d 7 -p ack -e 40 -c 0 -i 3092 -a 0 -x {10.0 9.0 1541 ------- null} + -t 1.76642 -s 7 -d 0 -p ack -e 40 -c 0 -i 3092 -a 0 -x {10.0 9.0 1541 ------- null} h -t 1.76642 -s 7 -d 8 -p ack -e 40 -c 0 -i 3092 -a 0 -x {10.0 9.0 1541 ------- null} r -t 1.76653 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3091 -a 0 -x {9.0 10.0 1550 ------- null} + -t 1.76653 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3091 -a 0 -x {9.0 10.0 1550 ------- null} h -t 1.76653 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3091 -a 0 -x {9.0 10.0 1550 ------- null} r -t 1.76656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3077 -a 0 -x {9.0 10.0 1543 ------- null} + -t 1.76656 -s 10 -d 7 -p ack -e 40 -c 0 -i 3096 -a 0 -x {10.0 9.0 1543 ------- null} - -t 1.76656 -s 10 -d 7 -p ack -e 40 -c 0 -i 3096 -a 0 -x {10.0 9.0 1543 ------- null} h -t 1.76656 -s 10 -d 7 -p ack -e 40 -c 0 -i 3096 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.76738 -s 0 -d 9 -p ack -e 40 -c 0 -i 3086 -a 0 -x {10.0 9.0 1538 ------- null} + -t 1.76738 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3097 -a 0 -x {9.0 10.0 1553 ------- null} - -t 1.76738 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3097 -a 0 -x {9.0 10.0 1553 ------- null} h -t 1.76738 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3097 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.76741 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3083 -a 0 -x {9.0 10.0 1546 ------- null} - -t 1.76741 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3083 -a 0 -x {9.0 10.0 1546 ------- null} h -t 1.76741 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3083 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.7675 -s 10 -d 7 -p ack -e 40 -c 0 -i 3094 -a 0 -x {10.0 9.0 1542 ------- null} + -t 1.7675 -s 7 -d 0 -p ack -e 40 -c 0 -i 3094 -a 0 -x {10.0 9.0 1542 ------- null} h -t 1.7675 -s 7 -d 8 -p ack -e 40 -c 0 -i 3094 -a 0 -x {10.0 9.0 1542 ------- null} + -t 1.76752 -s 0 -d 9 -p ack -e 40 -c 0 -i 3090 -a 0 -x {10.0 9.0 1540 ------- null} - -t 1.76752 -s 0 -d 9 -p ack -e 40 -c 0 -i 3090 -a 0 -x {10.0 9.0 1540 ------- null} h -t 1.76752 -s 0 -d 9 -p ack -e 40 -c 0 -i 3090 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.76771 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3093 -a 0 -x {9.0 10.0 1551 ------- null} + -t 1.76771 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3093 -a 0 -x {9.0 10.0 1551 ------- null} h -t 1.76771 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3093 -a 0 -x {9.0 10.0 1551 ------- null} r -t 1.76784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3079 -a 0 -x {9.0 10.0 1544 ------- null} + -t 1.76784 -s 10 -d 7 -p ack -e 40 -c 0 -i 3098 -a 0 -x {10.0 9.0 1544 ------- null} - -t 1.76784 -s 10 -d 7 -p ack -e 40 -c 0 -i 3098 -a 0 -x {10.0 9.0 1544 ------- null} h -t 1.76784 -s 10 -d 7 -p ack -e 40 -c 0 -i 3098 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.76843 -s 0 -d 9 -p ack -e 40 -c 0 -i 3088 -a 0 -x {10.0 9.0 1539 ------- null} + -t 1.76843 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3099 -a 0 -x {9.0 10.0 1554 ------- null} - -t 1.76843 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3099 -a 0 -x {9.0 10.0 1554 ------- null} h -t 1.76843 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3099 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.7685 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3085 -a 0 -x {9.0 10.0 1547 ------- null} - -t 1.7685 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3085 -a 0 -x {9.0 10.0 1547 ------- null} h -t 1.7685 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3085 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.76859 -s 10 -d 7 -p ack -e 40 -c 0 -i 3096 -a 0 -x {10.0 9.0 1543 ------- null} + -t 1.76859 -s 7 -d 0 -p ack -e 40 -c 0 -i 3096 -a 0 -x {10.0 9.0 1543 ------- null} h -t 1.76859 -s 7 -d 8 -p ack -e 40 -c 0 -i 3096 -a 0 -x {10.0 9.0 1543 ------- null} + -t 1.76869 -s 0 -d 9 -p ack -e 40 -c 0 -i 3092 -a 0 -x {10.0 9.0 1541 ------- null} - -t 1.76869 -s 0 -d 9 -p ack -e 40 -c 0 -i 3092 -a 0 -x {10.0 9.0 1541 ------- null} h -t 1.76869 -s 0 -d 9 -p ack -e 40 -c 0 -i 3092 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.76886 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3095 -a 0 -x {9.0 10.0 1552 ------- null} + -t 1.76886 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3095 -a 0 -x {9.0 10.0 1552 ------- null} h -t 1.76886 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3095 -a 0 -x {9.0 10.0 1552 ------- null} r -t 1.76912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3081 -a 0 -x {9.0 10.0 1545 ------- null} + -t 1.76912 -s 10 -d 7 -p ack -e 40 -c 0 -i 3100 -a 0 -x {10.0 9.0 1545 ------- null} - -t 1.76912 -s 10 -d 7 -p ack -e 40 -c 0 -i 3100 -a 0 -x {10.0 9.0 1545 ------- null} h -t 1.76912 -s 10 -d 7 -p ack -e 40 -c 0 -i 3100 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.76955 -s 0 -d 9 -p ack -e 40 -c 0 -i 3090 -a 0 -x {10.0 9.0 1540 ------- null} + -t 1.76955 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3101 -a 0 -x {9.0 10.0 1555 ------- null} - -t 1.76955 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3101 -a 0 -x {9.0 10.0 1555 ------- null} h -t 1.76955 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3101 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.76958 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3087 -a 0 -x {9.0 10.0 1548 ------- null} - -t 1.76958 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3087 -a 0 -x {9.0 10.0 1548 ------- null} h -t 1.76958 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3087 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.76981 -s 0 -d 9 -p ack -e 40 -c 0 -i 3094 -a 0 -x {10.0 9.0 1542 ------- null} - -t 1.76981 -s 0 -d 9 -p ack -e 40 -c 0 -i 3094 -a 0 -x {10.0 9.0 1542 ------- null} h -t 1.76981 -s 0 -d 9 -p ack -e 40 -c 0 -i 3094 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.76987 -s 10 -d 7 -p ack -e 40 -c 0 -i 3098 -a 0 -x {10.0 9.0 1544 ------- null} + -t 1.76987 -s 7 -d 0 -p ack -e 40 -c 0 -i 3098 -a 0 -x {10.0 9.0 1544 ------- null} h -t 1.76987 -s 7 -d 8 -p ack -e 40 -c 0 -i 3098 -a 0 -x {10.0 9.0 1544 ------- null} r -t 1.77018 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3097 -a 0 -x {9.0 10.0 1553 ------- null} + -t 1.77018 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3097 -a 0 -x {9.0 10.0 1553 ------- null} h -t 1.77018 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3097 -a 0 -x {9.0 10.0 1553 ------- null} r -t 1.77021 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3083 -a 0 -x {9.0 10.0 1546 ------- null} + -t 1.77021 -s 10 -d 7 -p ack -e 40 -c 0 -i 3102 -a 0 -x {10.0 9.0 1546 ------- null} - -t 1.77021 -s 10 -d 7 -p ack -e 40 -c 0 -i 3102 -a 0 -x {10.0 9.0 1546 ------- null} h -t 1.77021 -s 10 -d 7 -p ack -e 40 -c 0 -i 3102 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.77067 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3089 -a 0 -x {9.0 10.0 1549 ------- null} - -t 1.77067 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3089 -a 0 -x {9.0 10.0 1549 ------- null} h -t 1.77067 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3089 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.77072 -s 0 -d 9 -p ack -e 40 -c 0 -i 3092 -a 0 -x {10.0 9.0 1541 ------- null} + -t 1.77072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3103 -a 0 -x {9.0 10.0 1556 ------- null} - -t 1.77072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3103 -a 0 -x {9.0 10.0 1556 ------- null} h -t 1.77072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3103 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.77094 -s 0 -d 9 -p ack -e 40 -c 0 -i 3096 -a 0 -x {10.0 9.0 1543 ------- null} - -t 1.77094 -s 0 -d 9 -p ack -e 40 -c 0 -i 3096 -a 0 -x {10.0 9.0 1543 ------- null} h -t 1.77094 -s 0 -d 9 -p ack -e 40 -c 0 -i 3096 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.77115 -s 10 -d 7 -p ack -e 40 -c 0 -i 3100 -a 0 -x {10.0 9.0 1545 ------- null} + -t 1.77115 -s 7 -d 0 -p ack -e 40 -c 0 -i 3100 -a 0 -x {10.0 9.0 1545 ------- null} h -t 1.77115 -s 7 -d 8 -p ack -e 40 -c 0 -i 3100 -a 0 -x {10.0 9.0 1545 ------- null} r -t 1.77123 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3099 -a 0 -x {9.0 10.0 1554 ------- null} + -t 1.77123 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3099 -a 0 -x {9.0 10.0 1554 ------- null} h -t 1.77123 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3099 -a 0 -x {9.0 10.0 1554 ------- null} r -t 1.7713 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3085 -a 0 -x {9.0 10.0 1547 ------- null} + -t 1.7713 -s 10 -d 7 -p ack -e 40 -c 0 -i 3104 -a 0 -x {10.0 9.0 1547 ------- null} - -t 1.7713 -s 10 -d 7 -p ack -e 40 -c 0 -i 3104 -a 0 -x {10.0 9.0 1547 ------- null} h -t 1.7713 -s 10 -d 7 -p ack -e 40 -c 0 -i 3104 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.77178 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3091 -a 0 -x {9.0 10.0 1550 ------- null} - -t 1.77178 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3091 -a 0 -x {9.0 10.0 1550 ------- null} h -t 1.77178 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3091 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.77184 -s 0 -d 9 -p ack -e 40 -c 0 -i 3094 -a 0 -x {10.0 9.0 1542 ------- null} + -t 1.77184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3105 -a 0 -x {9.0 10.0 1557 ------- null} - -t 1.77184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3105 -a 0 -x {9.0 10.0 1557 ------- null} h -t 1.77184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3105 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.77195 -s 0 -d 9 -p ack -e 40 -c 0 -i 3098 -a 0 -x {10.0 9.0 1544 ------- null} - -t 1.77195 -s 0 -d 9 -p ack -e 40 -c 0 -i 3098 -a 0 -x {10.0 9.0 1544 ------- null} h -t 1.77195 -s 0 -d 9 -p ack -e 40 -c 0 -i 3098 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.77224 -s 10 -d 7 -p ack -e 40 -c 0 -i 3102 -a 0 -x {10.0 9.0 1546 ------- null} + -t 1.77224 -s 7 -d 0 -p ack -e 40 -c 0 -i 3102 -a 0 -x {10.0 9.0 1546 ------- null} h -t 1.77224 -s 7 -d 8 -p ack -e 40 -c 0 -i 3102 -a 0 -x {10.0 9.0 1546 ------- null} r -t 1.77235 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3101 -a 0 -x {9.0 10.0 1555 ------- null} + -t 1.77235 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3101 -a 0 -x {9.0 10.0 1555 ------- null} h -t 1.77235 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3101 -a 0 -x {9.0 10.0 1555 ------- null} r -t 1.77238 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3087 -a 0 -x {9.0 10.0 1548 ------- null} + -t 1.77238 -s 10 -d 7 -p ack -e 40 -c 0 -i 3106 -a 0 -x {10.0 9.0 1548 ------- null} - -t 1.77238 -s 10 -d 7 -p ack -e 40 -c 0 -i 3106 -a 0 -x {10.0 9.0 1548 ------- null} h -t 1.77238 -s 10 -d 7 -p ack -e 40 -c 0 -i 3106 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.77286 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3093 -a 0 -x {9.0 10.0 1551 ------- null} - -t 1.77286 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3093 -a 0 -x {9.0 10.0 1551 ------- null} h -t 1.77286 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3093 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.77298 -s 0 -d 9 -p ack -e 40 -c 0 -i 3096 -a 0 -x {10.0 9.0 1543 ------- null} + -t 1.77298 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3107 -a 0 -x {9.0 10.0 1558 ------- null} - -t 1.77298 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3107 -a 0 -x {9.0 10.0 1558 ------- null} h -t 1.77298 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3107 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.77315 -s 0 -d 9 -p ack -e 40 -c 0 -i 3100 -a 0 -x {10.0 9.0 1545 ------- null} - -t 1.77315 -s 0 -d 9 -p ack -e 40 -c 0 -i 3100 -a 0 -x {10.0 9.0 1545 ------- null} h -t 1.77315 -s 0 -d 9 -p ack -e 40 -c 0 -i 3100 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.77333 -s 10 -d 7 -p ack -e 40 -c 0 -i 3104 -a 0 -x {10.0 9.0 1547 ------- null} + -t 1.77333 -s 7 -d 0 -p ack -e 40 -c 0 -i 3104 -a 0 -x {10.0 9.0 1547 ------- null} h -t 1.77333 -s 7 -d 8 -p ack -e 40 -c 0 -i 3104 -a 0 -x {10.0 9.0 1547 ------- null} r -t 1.77347 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3089 -a 0 -x {9.0 10.0 1549 ------- null} + -t 1.77347 -s 10 -d 7 -p ack -e 40 -c 0 -i 3108 -a 0 -x {10.0 9.0 1549 ------- null} - -t 1.77347 -s 10 -d 7 -p ack -e 40 -c 0 -i 3108 -a 0 -x {10.0 9.0 1549 ------- null} h -t 1.77347 -s 10 -d 7 -p ack -e 40 -c 0 -i 3108 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.77352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3103 -a 0 -x {9.0 10.0 1556 ------- null} + -t 1.77352 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3103 -a 0 -x {9.0 10.0 1556 ------- null} h -t 1.77352 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3103 -a 0 -x {9.0 10.0 1556 ------- null} r -t 1.77398 -s 0 -d 9 -p ack -e 40 -c 0 -i 3098 -a 0 -x {10.0 9.0 1544 ------- null} + -t 1.77398 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3109 -a 0 -x {9.0 10.0 1559 ------- null} - -t 1.77398 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3109 -a 0 -x {9.0 10.0 1559 ------- null} h -t 1.77398 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3109 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.77411 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3095 -a 0 -x {9.0 10.0 1552 ------- null} - -t 1.77411 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3095 -a 0 -x {9.0 10.0 1552 ------- null} h -t 1.77411 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3095 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.77424 -s 0 -d 9 -p ack -e 40 -c 0 -i 3102 -a 0 -x {10.0 9.0 1546 ------- null} - -t 1.77424 -s 0 -d 9 -p ack -e 40 -c 0 -i 3102 -a 0 -x {10.0 9.0 1546 ------- null} h -t 1.77424 -s 0 -d 9 -p ack -e 40 -c 0 -i 3102 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.77442 -s 10 -d 7 -p ack -e 40 -c 0 -i 3106 -a 0 -x {10.0 9.0 1548 ------- null} + -t 1.77442 -s 7 -d 0 -p ack -e 40 -c 0 -i 3106 -a 0 -x {10.0 9.0 1548 ------- null} h -t 1.77442 -s 7 -d 8 -p ack -e 40 -c 0 -i 3106 -a 0 -x {10.0 9.0 1548 ------- null} r -t 1.77458 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3091 -a 0 -x {9.0 10.0 1550 ------- null} + -t 1.77458 -s 10 -d 7 -p ack -e 40 -c 0 -i 3110 -a 0 -x {10.0 9.0 1550 ------- null} - -t 1.77458 -s 10 -d 7 -p ack -e 40 -c 0 -i 3110 -a 0 -x {10.0 9.0 1550 ------- null} h -t 1.77458 -s 10 -d 7 -p ack -e 40 -c 0 -i 3110 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.77464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3105 -a 0 -x {9.0 10.0 1557 ------- null} + -t 1.77464 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3105 -a 0 -x {9.0 10.0 1557 ------- null} h -t 1.77464 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3105 -a 0 -x {9.0 10.0 1557 ------- null} r -t 1.77518 -s 0 -d 9 -p ack -e 40 -c 0 -i 3100 -a 0 -x {10.0 9.0 1545 ------- null} + -t 1.77518 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3111 -a 0 -x {9.0 10.0 1560 ------- null} - -t 1.77518 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3111 -a 0 -x {9.0 10.0 1560 ------- null} h -t 1.77518 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3111 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.7752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3097 -a 0 -x {9.0 10.0 1553 ------- null} - -t 1.7752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3097 -a 0 -x {9.0 10.0 1553 ------- null} h -t 1.7752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3097 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.7753 -s 0 -d 9 -p ack -e 40 -c 0 -i 3104 -a 0 -x {10.0 9.0 1547 ------- null} - -t 1.7753 -s 0 -d 9 -p ack -e 40 -c 0 -i 3104 -a 0 -x {10.0 9.0 1547 ------- null} h -t 1.7753 -s 0 -d 9 -p ack -e 40 -c 0 -i 3104 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.7755 -s 10 -d 7 -p ack -e 40 -c 0 -i 3108 -a 0 -x {10.0 9.0 1549 ------- null} + -t 1.7755 -s 7 -d 0 -p ack -e 40 -c 0 -i 3108 -a 0 -x {10.0 9.0 1549 ------- null} h -t 1.7755 -s 7 -d 8 -p ack -e 40 -c 0 -i 3108 -a 0 -x {10.0 9.0 1549 ------- null} r -t 1.77566 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3093 -a 0 -x {9.0 10.0 1551 ------- null} + -t 1.77566 -s 10 -d 7 -p ack -e 40 -c 0 -i 3112 -a 0 -x {10.0 9.0 1551 ------- null} - -t 1.77566 -s 10 -d 7 -p ack -e 40 -c 0 -i 3112 -a 0 -x {10.0 9.0 1551 ------- null} h -t 1.77566 -s 10 -d 7 -p ack -e 40 -c 0 -i 3112 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.77578 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3107 -a 0 -x {9.0 10.0 1558 ------- null} + -t 1.77578 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3107 -a 0 -x {9.0 10.0 1558 ------- null} h -t 1.77578 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3107 -a 0 -x {9.0 10.0 1558 ------- null} r -t 1.77627 -s 0 -d 9 -p ack -e 40 -c 0 -i 3102 -a 0 -x {10.0 9.0 1546 ------- null} + -t 1.77627 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3113 -a 0 -x {9.0 10.0 1561 ------- null} - -t 1.77627 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3113 -a 0 -x {9.0 10.0 1561 ------- null} h -t 1.77627 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3113 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.77629 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3099 -a 0 -x {9.0 10.0 1554 ------- null} - -t 1.77629 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3099 -a 0 -x {9.0 10.0 1554 ------- null} h -t 1.77629 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3099 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.7765 -s 0 -d 9 -p ack -e 40 -c 0 -i 3106 -a 0 -x {10.0 9.0 1548 ------- null} - -t 1.7765 -s 0 -d 9 -p ack -e 40 -c 0 -i 3106 -a 0 -x {10.0 9.0 1548 ------- null} h -t 1.7765 -s 0 -d 9 -p ack -e 40 -c 0 -i 3106 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.77661 -s 10 -d 7 -p ack -e 40 -c 0 -i 3110 -a 0 -x {10.0 9.0 1550 ------- null} + -t 1.77661 -s 7 -d 0 -p ack -e 40 -c 0 -i 3110 -a 0 -x {10.0 9.0 1550 ------- null} h -t 1.77661 -s 7 -d 8 -p ack -e 40 -c 0 -i 3110 -a 0 -x {10.0 9.0 1550 ------- null} r -t 1.77678 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3109 -a 0 -x {9.0 10.0 1559 ------- null} + -t 1.77678 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3109 -a 0 -x {9.0 10.0 1559 ------- null} h -t 1.77678 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3109 -a 0 -x {9.0 10.0 1559 ------- null} r -t 1.77691 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3095 -a 0 -x {9.0 10.0 1552 ------- null} + -t 1.77691 -s 10 -d 7 -p ack -e 40 -c 0 -i 3114 -a 0 -x {10.0 9.0 1552 ------- null} - -t 1.77691 -s 10 -d 7 -p ack -e 40 -c 0 -i 3114 -a 0 -x {10.0 9.0 1552 ------- null} h -t 1.77691 -s 10 -d 7 -p ack -e 40 -c 0 -i 3114 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.77733 -s 0 -d 9 -p ack -e 40 -c 0 -i 3104 -a 0 -x {10.0 9.0 1547 ------- null} + -t 1.77733 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3115 -a 0 -x {9.0 10.0 1562 ------- null} - -t 1.77733 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3115 -a 0 -x {9.0 10.0 1562 ------- null} h -t 1.77733 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3115 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.77738 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3101 -a 0 -x {9.0 10.0 1555 ------- null} - -t 1.77738 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3101 -a 0 -x {9.0 10.0 1555 ------- null} h -t 1.77738 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3101 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.77752 -s 0 -d 9 -p ack -e 40 -c 0 -i 3108 -a 0 -x {10.0 9.0 1549 ------- null} - -t 1.77752 -s 0 -d 9 -p ack -e 40 -c 0 -i 3108 -a 0 -x {10.0 9.0 1549 ------- null} h -t 1.77752 -s 0 -d 9 -p ack -e 40 -c 0 -i 3108 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.7777 -s 10 -d 7 -p ack -e 40 -c 0 -i 3112 -a 0 -x {10.0 9.0 1551 ------- null} + -t 1.7777 -s 7 -d 0 -p ack -e 40 -c 0 -i 3112 -a 0 -x {10.0 9.0 1551 ------- null} h -t 1.7777 -s 7 -d 8 -p ack -e 40 -c 0 -i 3112 -a 0 -x {10.0 9.0 1551 ------- null} r -t 1.77798 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3111 -a 0 -x {9.0 10.0 1560 ------- null} + -t 1.77798 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3111 -a 0 -x {9.0 10.0 1560 ------- null} h -t 1.77798 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3111 -a 0 -x {9.0 10.0 1560 ------- null} r -t 1.778 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3097 -a 0 -x {9.0 10.0 1553 ------- null} + -t 1.778 -s 10 -d 7 -p ack -e 40 -c 0 -i 3116 -a 0 -x {10.0 9.0 1553 ------- null} - -t 1.778 -s 10 -d 7 -p ack -e 40 -c 0 -i 3116 -a 0 -x {10.0 9.0 1553 ------- null} h -t 1.778 -s 10 -d 7 -p ack -e 40 -c 0 -i 3116 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.77846 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3103 -a 0 -x {9.0 10.0 1556 ------- null} - -t 1.77846 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3103 -a 0 -x {9.0 10.0 1556 ------- null} h -t 1.77846 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3103 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.77853 -s 0 -d 9 -p ack -e 40 -c 0 -i 3106 -a 0 -x {10.0 9.0 1548 ------- null} + -t 1.77853 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3117 -a 0 -x {9.0 10.0 1563 ------- null} - -t 1.77853 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3117 -a 0 -x {9.0 10.0 1563 ------- null} h -t 1.77853 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3117 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.77866 -s 0 -d 9 -p ack -e 40 -c 0 -i 3110 -a 0 -x {10.0 9.0 1550 ------- null} - -t 1.77866 -s 0 -d 9 -p ack -e 40 -c 0 -i 3110 -a 0 -x {10.0 9.0 1550 ------- null} h -t 1.77866 -s 0 -d 9 -p ack -e 40 -c 0 -i 3110 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.77894 -s 10 -d 7 -p ack -e 40 -c 0 -i 3114 -a 0 -x {10.0 9.0 1552 ------- null} + -t 1.77894 -s 7 -d 0 -p ack -e 40 -c 0 -i 3114 -a 0 -x {10.0 9.0 1552 ------- null} h -t 1.77894 -s 7 -d 8 -p ack -e 40 -c 0 -i 3114 -a 0 -x {10.0 9.0 1552 ------- null} r -t 1.77907 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3113 -a 0 -x {9.0 10.0 1561 ------- null} + -t 1.77907 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3113 -a 0 -x {9.0 10.0 1561 ------- null} h -t 1.77907 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3113 -a 0 -x {9.0 10.0 1561 ------- null} r -t 1.77909 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3099 -a 0 -x {9.0 10.0 1554 ------- null} + -t 1.77909 -s 10 -d 7 -p ack -e 40 -c 0 -i 3118 -a 0 -x {10.0 9.0 1554 ------- null} - -t 1.77909 -s 10 -d 7 -p ack -e 40 -c 0 -i 3118 -a 0 -x {10.0 9.0 1554 ------- null} h -t 1.77909 -s 10 -d 7 -p ack -e 40 -c 0 -i 3118 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.77955 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3105 -a 0 -x {9.0 10.0 1557 ------- null} - -t 1.77955 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3105 -a 0 -x {9.0 10.0 1557 ------- null} h -t 1.77955 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3105 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.77955 -s 0 -d 9 -p ack -e 40 -c 0 -i 3108 -a 0 -x {10.0 9.0 1549 ------- null} + -t 1.77955 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3119 -a 0 -x {9.0 10.0 1564 ------- null} - -t 1.77955 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3119 -a 0 -x {9.0 10.0 1564 ------- null} h -t 1.77955 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3119 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.7797 -s 0 -d 9 -p ack -e 40 -c 0 -i 3112 -a 0 -x {10.0 9.0 1551 ------- null} - -t 1.7797 -s 0 -d 9 -p ack -e 40 -c 0 -i 3112 -a 0 -x {10.0 9.0 1551 ------- null} h -t 1.7797 -s 0 -d 9 -p ack -e 40 -c 0 -i 3112 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.78003 -s 10 -d 7 -p ack -e 40 -c 0 -i 3116 -a 0 -x {10.0 9.0 1553 ------- null} + -t 1.78003 -s 7 -d 0 -p ack -e 40 -c 0 -i 3116 -a 0 -x {10.0 9.0 1553 ------- null} h -t 1.78003 -s 7 -d 8 -p ack -e 40 -c 0 -i 3116 -a 0 -x {10.0 9.0 1553 ------- null} r -t 1.78013 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3115 -a 0 -x {9.0 10.0 1562 ------- null} + -t 1.78013 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3115 -a 0 -x {9.0 10.0 1562 ------- null} h -t 1.78013 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3115 -a 0 -x {9.0 10.0 1562 ------- null} r -t 1.78018 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3101 -a 0 -x {9.0 10.0 1555 ------- null} + -t 1.78018 -s 10 -d 7 -p ack -e 40 -c 0 -i 3120 -a 0 -x {10.0 9.0 1555 ------- null} - -t 1.78018 -s 10 -d 7 -p ack -e 40 -c 0 -i 3120 -a 0 -x {10.0 9.0 1555 ------- null} h -t 1.78018 -s 10 -d 7 -p ack -e 40 -c 0 -i 3120 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.78064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3107 -a 0 -x {9.0 10.0 1558 ------- null} - -t 1.78064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3107 -a 0 -x {9.0 10.0 1558 ------- null} h -t 1.78064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3107 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.78069 -s 0 -d 9 -p ack -e 40 -c 0 -i 3110 -a 0 -x {10.0 9.0 1550 ------- null} + -t 1.78069 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3121 -a 0 -x {9.0 10.0 1565 ------- null} - -t 1.78069 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3121 -a 0 -x {9.0 10.0 1565 ------- null} h -t 1.78069 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3121 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.7809 -s 0 -d 9 -p ack -e 40 -c 0 -i 3114 -a 0 -x {10.0 9.0 1552 ------- null} - -t 1.7809 -s 0 -d 9 -p ack -e 40 -c 0 -i 3114 -a 0 -x {10.0 9.0 1552 ------- null} h -t 1.7809 -s 0 -d 9 -p ack -e 40 -c 0 -i 3114 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.78112 -s 10 -d 7 -p ack -e 40 -c 0 -i 3118 -a 0 -x {10.0 9.0 1554 ------- null} + -t 1.78112 -s 7 -d 0 -p ack -e 40 -c 0 -i 3118 -a 0 -x {10.0 9.0 1554 ------- null} h -t 1.78112 -s 7 -d 8 -p ack -e 40 -c 0 -i 3118 -a 0 -x {10.0 9.0 1554 ------- null} r -t 1.78126 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3103 -a 0 -x {9.0 10.0 1556 ------- null} + -t 1.78126 -s 10 -d 7 -p ack -e 40 -c 0 -i 3122 -a 0 -x {10.0 9.0 1556 ------- null} - -t 1.78126 -s 10 -d 7 -p ack -e 40 -c 0 -i 3122 -a 0 -x {10.0 9.0 1556 ------- null} h -t 1.78126 -s 10 -d 7 -p ack -e 40 -c 0 -i 3122 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.78133 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3117 -a 0 -x {9.0 10.0 1563 ------- null} + -t 1.78133 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3117 -a 0 -x {9.0 10.0 1563 ------- null} h -t 1.78133 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3117 -a 0 -x {9.0 10.0 1563 ------- null} + -t 1.78173 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3109 -a 0 -x {9.0 10.0 1559 ------- null} - -t 1.78173 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3109 -a 0 -x {9.0 10.0 1559 ------- null} h -t 1.78173 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3109 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.78173 -s 0 -d 9 -p ack -e 40 -c 0 -i 3112 -a 0 -x {10.0 9.0 1551 ------- null} + -t 1.78173 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3123 -a 0 -x {9.0 10.0 1566 ------- null} - -t 1.78173 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3123 -a 0 -x {9.0 10.0 1566 ------- null} h -t 1.78173 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3123 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.78198 -s 0 -d 9 -p ack -e 40 -c 0 -i 3116 -a 0 -x {10.0 9.0 1553 ------- null} - -t 1.78198 -s 0 -d 9 -p ack -e 40 -c 0 -i 3116 -a 0 -x {10.0 9.0 1553 ------- null} h -t 1.78198 -s 0 -d 9 -p ack -e 40 -c 0 -i 3116 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.78221 -s 10 -d 7 -p ack -e 40 -c 0 -i 3120 -a 0 -x {10.0 9.0 1555 ------- null} + -t 1.78221 -s 7 -d 0 -p ack -e 40 -c 0 -i 3120 -a 0 -x {10.0 9.0 1555 ------- null} h -t 1.78221 -s 7 -d 8 -p ack -e 40 -c 0 -i 3120 -a 0 -x {10.0 9.0 1555 ------- null} r -t 1.78235 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3105 -a 0 -x {9.0 10.0 1557 ------- null} + -t 1.78235 -s 10 -d 7 -p ack -e 40 -c 0 -i 3124 -a 0 -x {10.0 9.0 1557 ------- null} - -t 1.78235 -s 10 -d 7 -p ack -e 40 -c 0 -i 3124 -a 0 -x {10.0 9.0 1557 ------- null} h -t 1.78235 -s 10 -d 7 -p ack -e 40 -c 0 -i 3124 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.78235 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3119 -a 0 -x {9.0 10.0 1564 ------- null} + -t 1.78235 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3119 -a 0 -x {9.0 10.0 1564 ------- null} h -t 1.78235 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3119 -a 0 -x {9.0 10.0 1564 ------- null} + -t 1.78282 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3111 -a 0 -x {9.0 10.0 1560 ------- null} - -t 1.78282 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3111 -a 0 -x {9.0 10.0 1560 ------- null} h -t 1.78282 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3111 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.78293 -s 0 -d 9 -p ack -e 40 -c 0 -i 3114 -a 0 -x {10.0 9.0 1552 ------- null} + -t 1.78293 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3125 -a 0 -x {9.0 10.0 1567 ------- null} - -t 1.78293 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3125 -a 0 -x {9.0 10.0 1567 ------- null} h -t 1.78293 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3125 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.78294 -s 0 -d 9 -p ack -e 40 -c 0 -i 3118 -a 0 -x {10.0 9.0 1554 ------- null} - -t 1.78294 -s 0 -d 9 -p ack -e 40 -c 0 -i 3118 -a 0 -x {10.0 9.0 1554 ------- null} h -t 1.78294 -s 0 -d 9 -p ack -e 40 -c 0 -i 3118 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.7833 -s 10 -d 7 -p ack -e 40 -c 0 -i 3122 -a 0 -x {10.0 9.0 1556 ------- null} + -t 1.7833 -s 7 -d 0 -p ack -e 40 -c 0 -i 3122 -a 0 -x {10.0 9.0 1556 ------- null} h -t 1.7833 -s 7 -d 8 -p ack -e 40 -c 0 -i 3122 -a 0 -x {10.0 9.0 1556 ------- null} r -t 1.78344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3107 -a 0 -x {9.0 10.0 1558 ------- null} + -t 1.78344 -s 10 -d 7 -p ack -e 40 -c 0 -i 3126 -a 0 -x {10.0 9.0 1558 ------- null} - -t 1.78344 -s 10 -d 7 -p ack -e 40 -c 0 -i 3126 -a 0 -x {10.0 9.0 1558 ------- null} h -t 1.78344 -s 10 -d 7 -p ack -e 40 -c 0 -i 3126 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.78349 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3121 -a 0 -x {9.0 10.0 1565 ------- null} + -t 1.78349 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3121 -a 0 -x {9.0 10.0 1565 ------- null} h -t 1.78349 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3121 -a 0 -x {9.0 10.0 1565 ------- null} + -t 1.7839 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3113 -a 0 -x {9.0 10.0 1561 ------- null} - -t 1.7839 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3113 -a 0 -x {9.0 10.0 1561 ------- null} h -t 1.7839 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3113 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.784 -s 0 -d 9 -p ack -e 40 -c 0 -i 3120 -a 0 -x {10.0 9.0 1555 ------- null} - -t 1.784 -s 0 -d 9 -p ack -e 40 -c 0 -i 3120 -a 0 -x {10.0 9.0 1555 ------- null} h -t 1.784 -s 0 -d 9 -p ack -e 40 -c 0 -i 3120 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.78402 -s 0 -d 9 -p ack -e 40 -c 0 -i 3116 -a 0 -x {10.0 9.0 1553 ------- null} + -t 1.78402 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3127 -a 0 -x {9.0 10.0 1568 ------- null} - -t 1.78402 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3127 -a 0 -x {9.0 10.0 1568 ------- null} h -t 1.78402 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3127 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.78438 -s 10 -d 7 -p ack -e 40 -c 0 -i 3124 -a 0 -x {10.0 9.0 1557 ------- null} + -t 1.78438 -s 7 -d 0 -p ack -e 40 -c 0 -i 3124 -a 0 -x {10.0 9.0 1557 ------- null} h -t 1.78438 -s 7 -d 8 -p ack -e 40 -c 0 -i 3124 -a 0 -x {10.0 9.0 1557 ------- null} r -t 1.78453 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3109 -a 0 -x {9.0 10.0 1559 ------- null} + -t 1.78453 -s 10 -d 7 -p ack -e 40 -c 0 -i 3128 -a 0 -x {10.0 9.0 1559 ------- null} - -t 1.78453 -s 10 -d 7 -p ack -e 40 -c 0 -i 3128 -a 0 -x {10.0 9.0 1559 ------- null} h -t 1.78453 -s 10 -d 7 -p ack -e 40 -c 0 -i 3128 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.78453 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3123 -a 0 -x {9.0 10.0 1566 ------- null} + -t 1.78453 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3123 -a 0 -x {9.0 10.0 1566 ------- null} h -t 1.78453 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3123 -a 0 -x {9.0 10.0 1566 ------- null} r -t 1.78498 -s 0 -d 9 -p ack -e 40 -c 0 -i 3118 -a 0 -x {10.0 9.0 1554 ------- null} + -t 1.78498 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3129 -a 0 -x {9.0 10.0 1569 ------- null} - -t 1.78498 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3129 -a 0 -x {9.0 10.0 1569 ------- null} h -t 1.78498 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3129 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.78499 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3115 -a 0 -x {9.0 10.0 1562 ------- null} - -t 1.78499 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3115 -a 0 -x {9.0 10.0 1562 ------- null} h -t 1.78499 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3115 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.78525 -s 0 -d 9 -p ack -e 40 -c 0 -i 3122 -a 0 -x {10.0 9.0 1556 ------- null} - -t 1.78525 -s 0 -d 9 -p ack -e 40 -c 0 -i 3122 -a 0 -x {10.0 9.0 1556 ------- null} h -t 1.78525 -s 0 -d 9 -p ack -e 40 -c 0 -i 3122 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.78547 -s 10 -d 7 -p ack -e 40 -c 0 -i 3126 -a 0 -x {10.0 9.0 1558 ------- null} + -t 1.78547 -s 7 -d 0 -p ack -e 40 -c 0 -i 3126 -a 0 -x {10.0 9.0 1558 ------- null} h -t 1.78547 -s 7 -d 8 -p ack -e 40 -c 0 -i 3126 -a 0 -x {10.0 9.0 1558 ------- null} r -t 1.78562 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3111 -a 0 -x {9.0 10.0 1560 ------- null} + -t 1.78562 -s 10 -d 7 -p ack -e 40 -c 0 -i 3130 -a 0 -x {10.0 9.0 1560 ------- null} - -t 1.78562 -s 10 -d 7 -p ack -e 40 -c 0 -i 3130 -a 0 -x {10.0 9.0 1560 ------- null} h -t 1.78562 -s 10 -d 7 -p ack -e 40 -c 0 -i 3130 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.78573 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3125 -a 0 -x {9.0 10.0 1567 ------- null} + -t 1.78573 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3125 -a 0 -x {9.0 10.0 1567 ------- null} h -t 1.78573 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3125 -a 0 -x {9.0 10.0 1567 ------- null} r -t 1.78603 -s 0 -d 9 -p ack -e 40 -c 0 -i 3120 -a 0 -x {10.0 9.0 1555 ------- null} + -t 1.78603 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3131 -a 0 -x {9.0 10.0 1570 ------- null} - -t 1.78603 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3131 -a 0 -x {9.0 10.0 1570 ------- null} h -t 1.78603 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3131 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.78608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3117 -a 0 -x {9.0 10.0 1563 ------- null} - -t 1.78608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3117 -a 0 -x {9.0 10.0 1563 ------- null} h -t 1.78608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3117 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.78624 -s 0 -d 9 -p ack -e 40 -c 0 -i 3124 -a 0 -x {10.0 9.0 1557 ------- null} - -t 1.78624 -s 0 -d 9 -p ack -e 40 -c 0 -i 3124 -a 0 -x {10.0 9.0 1557 ------- null} h -t 1.78624 -s 0 -d 9 -p ack -e 40 -c 0 -i 3124 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.78656 -s 10 -d 7 -p ack -e 40 -c 0 -i 3128 -a 0 -x {10.0 9.0 1559 ------- null} + -t 1.78656 -s 7 -d 0 -p ack -e 40 -c 0 -i 3128 -a 0 -x {10.0 9.0 1559 ------- null} h -t 1.78656 -s 7 -d 8 -p ack -e 40 -c 0 -i 3128 -a 0 -x {10.0 9.0 1559 ------- null} r -t 1.7867 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3113 -a 0 -x {9.0 10.0 1561 ------- null} + -t 1.7867 -s 10 -d 7 -p ack -e 40 -c 0 -i 3132 -a 0 -x {10.0 9.0 1561 ------- null} - -t 1.7867 -s 10 -d 7 -p ack -e 40 -c 0 -i 3132 -a 0 -x {10.0 9.0 1561 ------- null} h -t 1.7867 -s 10 -d 7 -p ack -e 40 -c 0 -i 3132 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.78682 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3127 -a 0 -x {9.0 10.0 1568 ------- null} + -t 1.78682 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3127 -a 0 -x {9.0 10.0 1568 ------- null} h -t 1.78682 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3127 -a 0 -x {9.0 10.0 1568 ------- null} + -t 1.78717 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3119 -a 0 -x {9.0 10.0 1564 ------- null} - -t 1.78717 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3119 -a 0 -x {9.0 10.0 1564 ------- null} h -t 1.78717 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3119 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.78728 -s 0 -d 9 -p ack -e 40 -c 0 -i 3122 -a 0 -x {10.0 9.0 1556 ------- null} + -t 1.78728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3133 -a 0 -x {9.0 10.0 1571 ------- null} - -t 1.78728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3133 -a 0 -x {9.0 10.0 1571 ------- null} h -t 1.78728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3133 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.78747 -s 0 -d 9 -p ack -e 40 -c 0 -i 3126 -a 0 -x {10.0 9.0 1558 ------- null} - -t 1.78747 -s 0 -d 9 -p ack -e 40 -c 0 -i 3126 -a 0 -x {10.0 9.0 1558 ------- null} h -t 1.78747 -s 0 -d 9 -p ack -e 40 -c 0 -i 3126 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.78765 -s 10 -d 7 -p ack -e 40 -c 0 -i 3130 -a 0 -x {10.0 9.0 1560 ------- null} + -t 1.78765 -s 7 -d 0 -p ack -e 40 -c 0 -i 3130 -a 0 -x {10.0 9.0 1560 ------- null} h -t 1.78765 -s 7 -d 8 -p ack -e 40 -c 0 -i 3130 -a 0 -x {10.0 9.0 1560 ------- null} r -t 1.78778 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3129 -a 0 -x {9.0 10.0 1569 ------- null} + -t 1.78778 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3129 -a 0 -x {9.0 10.0 1569 ------- null} h -t 1.78778 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3129 -a 0 -x {9.0 10.0 1569 ------- null} r -t 1.78779 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3115 -a 0 -x {9.0 10.0 1562 ------- null} + -t 1.78779 -s 10 -d 7 -p ack -e 40 -c 0 -i 3134 -a 0 -x {10.0 9.0 1562 ------- null} - -t 1.78779 -s 10 -d 7 -p ack -e 40 -c 0 -i 3134 -a 0 -x {10.0 9.0 1562 ------- null} h -t 1.78779 -s 10 -d 7 -p ack -e 40 -c 0 -i 3134 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.78827 -s 0 -d 9 -p ack -e 40 -c 0 -i 3124 -a 0 -x {10.0 9.0 1557 ------- null} + -t 1.78827 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3135 -a 0 -x {9.0 10.0 1572 ------- null} - -t 1.78827 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3135 -a 0 -x {9.0 10.0 1572 ------- null} h -t 1.78827 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3135 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.78832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3121 -a 0 -x {9.0 10.0 1565 ------- null} - -t 1.78832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3121 -a 0 -x {9.0 10.0 1565 ------- null} h -t 1.78832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3121 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.78861 -s 0 -d 9 -p ack -e 40 -c 0 -i 3128 -a 0 -x {10.0 9.0 1559 ------- null} - -t 1.78861 -s 0 -d 9 -p ack -e 40 -c 0 -i 3128 -a 0 -x {10.0 9.0 1559 ------- null} h -t 1.78861 -s 0 -d 9 -p ack -e 40 -c 0 -i 3128 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.78874 -s 10 -d 7 -p ack -e 40 -c 0 -i 3132 -a 0 -x {10.0 9.0 1561 ------- null} + -t 1.78874 -s 7 -d 0 -p ack -e 40 -c 0 -i 3132 -a 0 -x {10.0 9.0 1561 ------- null} h -t 1.78874 -s 7 -d 8 -p ack -e 40 -c 0 -i 3132 -a 0 -x {10.0 9.0 1561 ------- null} r -t 1.78883 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3131 -a 0 -x {9.0 10.0 1570 ------- null} + -t 1.78883 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3131 -a 0 -x {9.0 10.0 1570 ------- null} h -t 1.78883 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3131 -a 0 -x {9.0 10.0 1570 ------- null} r -t 1.78888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3117 -a 0 -x {9.0 10.0 1563 ------- null} + -t 1.78888 -s 10 -d 7 -p ack -e 40 -c 0 -i 3136 -a 0 -x {10.0 9.0 1563 ------- null} - -t 1.78888 -s 10 -d 7 -p ack -e 40 -c 0 -i 3136 -a 0 -x {10.0 9.0 1563 ------- null} h -t 1.78888 -s 10 -d 7 -p ack -e 40 -c 0 -i 3136 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.7895 -s 0 -d 9 -p ack -e 40 -c 0 -i 3126 -a 0 -x {10.0 9.0 1558 ------- null} + -t 1.7895 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3137 -a 0 -x {9.0 10.0 1573 ------- null} - -t 1.7895 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3137 -a 0 -x {9.0 10.0 1573 ------- null} h -t 1.7895 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3137 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.78958 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3123 -a 0 -x {9.0 10.0 1566 ------- null} - -t 1.78958 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3123 -a 0 -x {9.0 10.0 1566 ------- null} h -t 1.78958 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3123 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.78982 -s 10 -d 7 -p ack -e 40 -c 0 -i 3134 -a 0 -x {10.0 9.0 1562 ------- null} + -t 1.78982 -s 7 -d 0 -p ack -e 40 -c 0 -i 3134 -a 0 -x {10.0 9.0 1562 ------- null} h -t 1.78982 -s 7 -d 8 -p ack -e 40 -c 0 -i 3134 -a 0 -x {10.0 9.0 1562 ------- null} + -t 1.78989 -s 0 -d 9 -p ack -e 40 -c 0 -i 3130 -a 0 -x {10.0 9.0 1560 ------- null} - -t 1.78989 -s 0 -d 9 -p ack -e 40 -c 0 -i 3130 -a 0 -x {10.0 9.0 1560 ------- null} h -t 1.78989 -s 0 -d 9 -p ack -e 40 -c 0 -i 3130 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.78997 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3119 -a 0 -x {9.0 10.0 1564 ------- null} + -t 1.78997 -s 10 -d 7 -p ack -e 40 -c 0 -i 3138 -a 0 -x {10.0 9.0 1564 ------- null} - -t 1.78997 -s 10 -d 7 -p ack -e 40 -c 0 -i 3138 -a 0 -x {10.0 9.0 1564 ------- null} h -t 1.78997 -s 10 -d 7 -p ack -e 40 -c 0 -i 3138 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.79008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3133 -a 0 -x {9.0 10.0 1571 ------- null} + -t 1.79008 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3133 -a 0 -x {9.0 10.0 1571 ------- null} h -t 1.79008 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3133 -a 0 -x {9.0 10.0 1571 ------- null} r -t 1.79064 -s 0 -d 9 -p ack -e 40 -c 0 -i 3128 -a 0 -x {10.0 9.0 1559 ------- null} + -t 1.79064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3139 -a 0 -x {9.0 10.0 1574 ------- null} - -t 1.79064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3139 -a 0 -x {9.0 10.0 1574 ------- null} h -t 1.79064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3139 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.79077 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3125 -a 0 -x {9.0 10.0 1567 ------- null} - -t 1.79077 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3125 -a 0 -x {9.0 10.0 1567 ------- null} h -t 1.79077 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3125 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.79086 -s 0 -d 9 -p ack -e 40 -c 0 -i 3132 -a 0 -x {10.0 9.0 1561 ------- null} - -t 1.79086 -s 0 -d 9 -p ack -e 40 -c 0 -i 3132 -a 0 -x {10.0 9.0 1561 ------- null} h -t 1.79086 -s 0 -d 9 -p ack -e 40 -c 0 -i 3132 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.79091 -s 10 -d 7 -p ack -e 40 -c 0 -i 3136 -a 0 -x {10.0 9.0 1563 ------- null} + -t 1.79091 -s 7 -d 0 -p ack -e 40 -c 0 -i 3136 -a 0 -x {10.0 9.0 1563 ------- null} h -t 1.79091 -s 7 -d 8 -p ack -e 40 -c 0 -i 3136 -a 0 -x {10.0 9.0 1563 ------- null} r -t 1.79107 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3135 -a 0 -x {9.0 10.0 1572 ------- null} + -t 1.79107 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3135 -a 0 -x {9.0 10.0 1572 ------- null} h -t 1.79107 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3135 -a 0 -x {9.0 10.0 1572 ------- null} r -t 1.79112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3121 -a 0 -x {9.0 10.0 1565 ------- null} + -t 1.79112 -s 10 -d 7 -p ack -e 40 -c 0 -i 3140 -a 0 -x {10.0 9.0 1565 ------- null} - -t 1.79112 -s 10 -d 7 -p ack -e 40 -c 0 -i 3140 -a 0 -x {10.0 9.0 1565 ------- null} h -t 1.79112 -s 10 -d 7 -p ack -e 40 -c 0 -i 3140 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.79186 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3127 -a 0 -x {9.0 10.0 1568 ------- null} - -t 1.79186 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3127 -a 0 -x {9.0 10.0 1568 ------- null} h -t 1.79186 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3127 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.79192 -s 0 -d 9 -p ack -e 40 -c 0 -i 3130 -a 0 -x {10.0 9.0 1560 ------- null} + -t 1.79192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3141 -a 0 -x {9.0 10.0 1575 ------- null} - -t 1.79192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3141 -a 0 -x {9.0 10.0 1575 ------- null} h -t 1.79192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3141 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.79194 -s 0 -d 9 -p ack -e 40 -c 0 -i 3134 -a 0 -x {10.0 9.0 1562 ------- null} - -t 1.79194 -s 0 -d 9 -p ack -e 40 -c 0 -i 3134 -a 0 -x {10.0 9.0 1562 ------- null} h -t 1.79194 -s 0 -d 9 -p ack -e 40 -c 0 -i 3134 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.792 -s 10 -d 7 -p ack -e 40 -c 0 -i 3138 -a 0 -x {10.0 9.0 1564 ------- null} + -t 1.792 -s 7 -d 0 -p ack -e 40 -c 0 -i 3138 -a 0 -x {10.0 9.0 1564 ------- null} h -t 1.792 -s 7 -d 8 -p ack -e 40 -c 0 -i 3138 -a 0 -x {10.0 9.0 1564 ------- null} r -t 1.7923 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3137 -a 0 -x {9.0 10.0 1573 ------- null} + -t 1.7923 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3137 -a 0 -x {9.0 10.0 1573 ------- null} h -t 1.7923 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3137 -a 0 -x {9.0 10.0 1573 ------- null} r -t 1.79238 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3123 -a 0 -x {9.0 10.0 1566 ------- null} + -t 1.79238 -s 10 -d 7 -p ack -e 40 -c 0 -i 3142 -a 0 -x {10.0 9.0 1566 ------- null} - -t 1.79238 -s 10 -d 7 -p ack -e 40 -c 0 -i 3142 -a 0 -x {10.0 9.0 1566 ------- null} h -t 1.79238 -s 10 -d 7 -p ack -e 40 -c 0 -i 3142 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.7929 -s 0 -d 9 -p ack -e 40 -c 0 -i 3132 -a 0 -x {10.0 9.0 1561 ------- null} + -t 1.7929 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3143 -a 0 -x {9.0 10.0 1576 ------- null} - -t 1.7929 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3143 -a 0 -x {9.0 10.0 1576 ------- null} h -t 1.7929 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3143 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.79294 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3129 -a 0 -x {9.0 10.0 1569 ------- null} - -t 1.79294 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3129 -a 0 -x {9.0 10.0 1569 ------- null} h -t 1.79294 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3129 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.79315 -s 10 -d 7 -p ack -e 40 -c 0 -i 3140 -a 0 -x {10.0 9.0 1565 ------- null} + -t 1.79315 -s 7 -d 0 -p ack -e 40 -c 0 -i 3140 -a 0 -x {10.0 9.0 1565 ------- null} h -t 1.79315 -s 7 -d 8 -p ack -e 40 -c 0 -i 3140 -a 0 -x {10.0 9.0 1565 ------- null} + -t 1.79317 -s 0 -d 9 -p ack -e 40 -c 0 -i 3136 -a 0 -x {10.0 9.0 1563 ------- null} - -t 1.79317 -s 0 -d 9 -p ack -e 40 -c 0 -i 3136 -a 0 -x {10.0 9.0 1563 ------- null} h -t 1.79317 -s 0 -d 9 -p ack -e 40 -c 0 -i 3136 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.79344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3139 -a 0 -x {9.0 10.0 1574 ------- null} + -t 1.79344 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3139 -a 0 -x {9.0 10.0 1574 ------- null} h -t 1.79344 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3139 -a 0 -x {9.0 10.0 1574 ------- null} r -t 1.79357 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3125 -a 0 -x {9.0 10.0 1567 ------- null} + -t 1.79357 -s 10 -d 7 -p ack -e 40 -c 0 -i 3144 -a 0 -x {10.0 9.0 1567 ------- null} - -t 1.79357 -s 10 -d 7 -p ack -e 40 -c 0 -i 3144 -a 0 -x {10.0 9.0 1567 ------- null} h -t 1.79357 -s 10 -d 7 -p ack -e 40 -c 0 -i 3144 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.79397 -s 0 -d 9 -p ack -e 40 -c 0 -i 3134 -a 0 -x {10.0 9.0 1562 ------- null} + -t 1.79397 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3145 -a 0 -x {9.0 10.0 1577 ------- null} - -t 1.79397 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3145 -a 0 -x {9.0 10.0 1577 ------- null} h -t 1.79397 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3145 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.79403 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3131 -a 0 -x {9.0 10.0 1570 ------- null} - -t 1.79403 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3131 -a 0 -x {9.0 10.0 1570 ------- null} h -t 1.79403 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3131 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.79432 -s 0 -d 9 -p ack -e 40 -c 0 -i 3138 -a 0 -x {10.0 9.0 1564 ------- null} - -t 1.79432 -s 0 -d 9 -p ack -e 40 -c 0 -i 3138 -a 0 -x {10.0 9.0 1564 ------- null} h -t 1.79432 -s 0 -d 9 -p ack -e 40 -c 0 -i 3138 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.79442 -s 10 -d 7 -p ack -e 40 -c 0 -i 3142 -a 0 -x {10.0 9.0 1566 ------- null} + -t 1.79442 -s 7 -d 0 -p ack -e 40 -c 0 -i 3142 -a 0 -x {10.0 9.0 1566 ------- null} h -t 1.79442 -s 7 -d 8 -p ack -e 40 -c 0 -i 3142 -a 0 -x {10.0 9.0 1566 ------- null} r -t 1.79466 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3127 -a 0 -x {9.0 10.0 1568 ------- null} + -t 1.79466 -s 10 -d 7 -p ack -e 40 -c 0 -i 3146 -a 0 -x {10.0 9.0 1568 ------- null} - -t 1.79466 -s 10 -d 7 -p ack -e 40 -c 0 -i 3146 -a 0 -x {10.0 9.0 1568 ------- null} h -t 1.79466 -s 10 -d 7 -p ack -e 40 -c 0 -i 3146 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.79472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3141 -a 0 -x {9.0 10.0 1575 ------- null} + -t 1.79472 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3141 -a 0 -x {9.0 10.0 1575 ------- null} h -t 1.79472 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3141 -a 0 -x {9.0 10.0 1575 ------- null} r -t 1.7952 -s 0 -d 9 -p ack -e 40 -c 0 -i 3136 -a 0 -x {10.0 9.0 1563 ------- null} + -t 1.7952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3147 -a 0 -x {9.0 10.0 1578 ------- null} - -t 1.7952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3147 -a 0 -x {9.0 10.0 1578 ------- null} h -t 1.7952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3147 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.79536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3133 -a 0 -x {9.0 10.0 1571 ------- null} - -t 1.79536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3133 -a 0 -x {9.0 10.0 1571 ------- null} h -t 1.79536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3133 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.7956 -s 10 -d 7 -p ack -e 40 -c 0 -i 3144 -a 0 -x {10.0 9.0 1567 ------- null} + -t 1.7956 -s 7 -d 0 -p ack -e 40 -c 0 -i 3144 -a 0 -x {10.0 9.0 1567 ------- null} h -t 1.7956 -s 7 -d 8 -p ack -e 40 -c 0 -i 3144 -a 0 -x {10.0 9.0 1567 ------- null} + -t 1.79563 -s 0 -d 9 -p ack -e 40 -c 0 -i 3140 -a 0 -x {10.0 9.0 1565 ------- null} - -t 1.79563 -s 0 -d 9 -p ack -e 40 -c 0 -i 3140 -a 0 -x {10.0 9.0 1565 ------- null} h -t 1.79563 -s 0 -d 9 -p ack -e 40 -c 0 -i 3140 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.7957 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3143 -a 0 -x {9.0 10.0 1576 ------- null} + -t 1.7957 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3143 -a 0 -x {9.0 10.0 1576 ------- null} h -t 1.7957 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3143 -a 0 -x {9.0 10.0 1576 ------- null} r -t 1.79574 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3129 -a 0 -x {9.0 10.0 1569 ------- null} + -t 1.79574 -s 10 -d 7 -p ack -e 40 -c 0 -i 3148 -a 0 -x {10.0 9.0 1569 ------- null} - -t 1.79574 -s 10 -d 7 -p ack -e 40 -c 0 -i 3148 -a 0 -x {10.0 9.0 1569 ------- null} h -t 1.79574 -s 10 -d 7 -p ack -e 40 -c 0 -i 3148 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.79635 -s 0 -d 9 -p ack -e 40 -c 0 -i 3138 -a 0 -x {10.0 9.0 1564 ------- null} + -t 1.79635 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3149 -a 0 -x {9.0 10.0 1579 ------- null} - -t 1.79635 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3149 -a 0 -x {9.0 10.0 1579 ------- null} h -t 1.79635 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3149 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.79656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3135 -a 0 -x {9.0 10.0 1572 ------- null} - -t 1.79656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3135 -a 0 -x {9.0 10.0 1572 ------- null} h -t 1.79656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3135 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.79669 -s 10 -d 7 -p ack -e 40 -c 0 -i 3146 -a 0 -x {10.0 9.0 1568 ------- null} + -t 1.79669 -s 7 -d 0 -p ack -e 40 -c 0 -i 3146 -a 0 -x {10.0 9.0 1568 ------- null} h -t 1.79669 -s 7 -d 8 -p ack -e 40 -c 0 -i 3146 -a 0 -x {10.0 9.0 1568 ------- null} + -t 1.79675 -s 0 -d 9 -p ack -e 40 -c 0 -i 3142 -a 0 -x {10.0 9.0 1566 ------- null} - -t 1.79675 -s 0 -d 9 -p ack -e 40 -c 0 -i 3142 -a 0 -x {10.0 9.0 1566 ------- null} h -t 1.79675 -s 0 -d 9 -p ack -e 40 -c 0 -i 3142 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.79677 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3145 -a 0 -x {9.0 10.0 1577 ------- null} + -t 1.79677 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3145 -a 0 -x {9.0 10.0 1577 ------- null} h -t 1.79677 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3145 -a 0 -x {9.0 10.0 1577 ------- null} r -t 1.79683 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3131 -a 0 -x {9.0 10.0 1570 ------- null} + -t 1.79683 -s 10 -d 7 -p ack -e 40 -c 0 -i 3150 -a 0 -x {10.0 9.0 1570 ------- null} - -t 1.79683 -s 10 -d 7 -p ack -e 40 -c 0 -i 3150 -a 0 -x {10.0 9.0 1570 ------- null} h -t 1.79683 -s 10 -d 7 -p ack -e 40 -c 0 -i 3150 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.79765 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3137 -a 0 -x {9.0 10.0 1573 ------- null} - -t 1.79765 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3137 -a 0 -x {9.0 10.0 1573 ------- null} h -t 1.79765 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3137 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.79766 -s 0 -d 9 -p ack -e 40 -c 0 -i 3140 -a 0 -x {10.0 9.0 1565 ------- null} + -t 1.79766 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3151 -a 0 -x {9.0 10.0 1580 ------- null} - -t 1.79766 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3151 -a 0 -x {9.0 10.0 1580 ------- null} h -t 1.79766 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3151 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.79774 -s 0 -d 9 -p ack -e 40 -c 0 -i 3144 -a 0 -x {10.0 9.0 1567 ------- null} - -t 1.79774 -s 0 -d 9 -p ack -e 40 -c 0 -i 3144 -a 0 -x {10.0 9.0 1567 ------- null} h -t 1.79774 -s 0 -d 9 -p ack -e 40 -c 0 -i 3144 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.79778 -s 10 -d 7 -p ack -e 40 -c 0 -i 3148 -a 0 -x {10.0 9.0 1569 ------- null} + -t 1.79778 -s 7 -d 0 -p ack -e 40 -c 0 -i 3148 -a 0 -x {10.0 9.0 1569 ------- null} h -t 1.79778 -s 7 -d 8 -p ack -e 40 -c 0 -i 3148 -a 0 -x {10.0 9.0 1569 ------- null} r -t 1.798 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3147 -a 0 -x {9.0 10.0 1578 ------- null} + -t 1.798 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3147 -a 0 -x {9.0 10.0 1578 ------- null} h -t 1.798 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3147 -a 0 -x {9.0 10.0 1578 ------- null} r -t 1.79816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3133 -a 0 -x {9.0 10.0 1571 ------- null} + -t 1.79816 -s 10 -d 7 -p ack -e 40 -c 0 -i 3152 -a 0 -x {10.0 9.0 1571 ------- null} - -t 1.79816 -s 10 -d 7 -p ack -e 40 -c 0 -i 3152 -a 0 -x {10.0 9.0 1571 ------- null} h -t 1.79816 -s 10 -d 7 -p ack -e 40 -c 0 -i 3152 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.79874 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3139 -a 0 -x {9.0 10.0 1574 ------- null} - -t 1.79874 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3139 -a 0 -x {9.0 10.0 1574 ------- null} h -t 1.79874 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3139 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.79878 -s 0 -d 9 -p ack -e 40 -c 0 -i 3142 -a 0 -x {10.0 9.0 1566 ------- null} + -t 1.79878 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3153 -a 0 -x {9.0 10.0 1581 ------- null} - -t 1.79878 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3153 -a 0 -x {9.0 10.0 1581 ------- null} h -t 1.79878 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3153 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.79886 -s 10 -d 7 -p ack -e 40 -c 0 -i 3150 -a 0 -x {10.0 9.0 1570 ------- null} + -t 1.79886 -s 7 -d 0 -p ack -e 40 -c 0 -i 3150 -a 0 -x {10.0 9.0 1570 ------- null} h -t 1.79886 -s 7 -d 8 -p ack -e 40 -c 0 -i 3150 -a 0 -x {10.0 9.0 1570 ------- null} + -t 1.79896 -s 0 -d 9 -p ack -e 40 -c 0 -i 3146 -a 0 -x {10.0 9.0 1568 ------- null} - -t 1.79896 -s 0 -d 9 -p ack -e 40 -c 0 -i 3146 -a 0 -x {10.0 9.0 1568 ------- null} h -t 1.79896 -s 0 -d 9 -p ack -e 40 -c 0 -i 3146 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.79915 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3149 -a 0 -x {9.0 10.0 1579 ------- null} + -t 1.79915 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3149 -a 0 -x {9.0 10.0 1579 ------- null} h -t 1.79915 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3149 -a 0 -x {9.0 10.0 1579 ------- null} r -t 1.79936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3135 -a 0 -x {9.0 10.0 1572 ------- null} + -t 1.79936 -s 10 -d 7 -p ack -e 40 -c 0 -i 3154 -a 0 -x {10.0 9.0 1572 ------- null} - -t 1.79936 -s 10 -d 7 -p ack -e 40 -c 0 -i 3154 -a 0 -x {10.0 9.0 1572 ------- null} h -t 1.79936 -s 10 -d 7 -p ack -e 40 -c 0 -i 3154 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.79978 -s 0 -d 9 -p ack -e 40 -c 0 -i 3144 -a 0 -x {10.0 9.0 1567 ------- null} + -t 1.79978 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3155 -a 0 -x {9.0 10.0 1582 ------- null} - -t 1.79978 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3155 -a 0 -x {9.0 10.0 1582 ------- null} h -t 1.79978 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3155 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.79982 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3141 -a 0 -x {9.0 10.0 1575 ------- null} - -t 1.79982 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3141 -a 0 -x {9.0 10.0 1575 ------- null} h -t 1.79982 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3141 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.79992 -s 0 -d 9 -p ack -e 40 -c 0 -i 3148 -a 0 -x {10.0 9.0 1569 ------- null} - -t 1.79992 -s 0 -d 9 -p ack -e 40 -c 0 -i 3148 -a 0 -x {10.0 9.0 1569 ------- null} h -t 1.79992 -s 0 -d 9 -p ack -e 40 -c 0 -i 3148 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.80019 -s 10 -d 7 -p ack -e 40 -c 0 -i 3152 -a 0 -x {10.0 9.0 1571 ------- null} + -t 1.80019 -s 7 -d 0 -p ack -e 40 -c 0 -i 3152 -a 0 -x {10.0 9.0 1571 ------- null} h -t 1.80019 -s 7 -d 8 -p ack -e 40 -c 0 -i 3152 -a 0 -x {10.0 9.0 1571 ------- null} r -t 1.80045 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3137 -a 0 -x {9.0 10.0 1573 ------- null} + -t 1.80045 -s 10 -d 7 -p ack -e 40 -c 0 -i 3156 -a 0 -x {10.0 9.0 1573 ------- null} - -t 1.80045 -s 10 -d 7 -p ack -e 40 -c 0 -i 3156 -a 0 -x {10.0 9.0 1573 ------- null} h -t 1.80045 -s 10 -d 7 -p ack -e 40 -c 0 -i 3156 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.80046 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3151 -a 0 -x {9.0 10.0 1580 ------- null} + -t 1.80046 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3151 -a 0 -x {9.0 10.0 1580 ------- null} h -t 1.80046 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3151 -a 0 -x {9.0 10.0 1580 ------- null} + -t 1.80091 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3143 -a 0 -x {9.0 10.0 1576 ------- null} - -t 1.80091 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3143 -a 0 -x {9.0 10.0 1576 ------- null} h -t 1.80091 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3143 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.80099 -s 0 -d 9 -p ack -e 40 -c 0 -i 3146 -a 0 -x {10.0 9.0 1568 ------- null} + -t 1.80099 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3157 -a 0 -x {9.0 10.0 1583 ------- null} - -t 1.80099 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3157 -a 0 -x {9.0 10.0 1583 ------- null} h -t 1.80099 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3157 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.80115 -s 0 -d 9 -p ack -e 40 -c 0 -i 3150 -a 0 -x {10.0 9.0 1570 ------- null} - -t 1.80115 -s 0 -d 9 -p ack -e 40 -c 0 -i 3150 -a 0 -x {10.0 9.0 1570 ------- null} h -t 1.80115 -s 0 -d 9 -p ack -e 40 -c 0 -i 3150 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.80139 -s 10 -d 7 -p ack -e 40 -c 0 -i 3154 -a 0 -x {10.0 9.0 1572 ------- null} + -t 1.80139 -s 7 -d 0 -p ack -e 40 -c 0 -i 3154 -a 0 -x {10.0 9.0 1572 ------- null} h -t 1.80139 -s 7 -d 8 -p ack -e 40 -c 0 -i 3154 -a 0 -x {10.0 9.0 1572 ------- null} r -t 1.80154 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3139 -a 0 -x {9.0 10.0 1574 ------- null} + -t 1.80154 -s 10 -d 7 -p ack -e 40 -c 0 -i 3158 -a 0 -x {10.0 9.0 1574 ------- null} - -t 1.80154 -s 10 -d 7 -p ack -e 40 -c 0 -i 3158 -a 0 -x {10.0 9.0 1574 ------- null} h -t 1.80154 -s 10 -d 7 -p ack -e 40 -c 0 -i 3158 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.80158 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3153 -a 0 -x {9.0 10.0 1581 ------- null} + -t 1.80158 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3153 -a 0 -x {9.0 10.0 1581 ------- null} h -t 1.80158 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3153 -a 0 -x {9.0 10.0 1581 ------- null} r -t 1.80195 -s 0 -d 9 -p ack -e 40 -c 0 -i 3148 -a 0 -x {10.0 9.0 1569 ------- null} + -t 1.80195 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3159 -a 0 -x {9.0 10.0 1584 ------- null} - -t 1.80195 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3159 -a 0 -x {9.0 10.0 1584 ------- null} h -t 1.80195 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3159 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.802 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3145 -a 0 -x {9.0 10.0 1577 ------- null} - -t 1.802 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3145 -a 0 -x {9.0 10.0 1577 ------- null} h -t 1.802 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3145 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.80221 -s 0 -d 9 -p ack -e 40 -c 0 -i 3152 -a 0 -x {10.0 9.0 1571 ------- null} - -t 1.80221 -s 0 -d 9 -p ack -e 40 -c 0 -i 3152 -a 0 -x {10.0 9.0 1571 ------- null} h -t 1.80221 -s 0 -d 9 -p ack -e 40 -c 0 -i 3152 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.80248 -s 10 -d 7 -p ack -e 40 -c 0 -i 3156 -a 0 -x {10.0 9.0 1573 ------- null} + -t 1.80248 -s 7 -d 0 -p ack -e 40 -c 0 -i 3156 -a 0 -x {10.0 9.0 1573 ------- null} h -t 1.80248 -s 7 -d 8 -p ack -e 40 -c 0 -i 3156 -a 0 -x {10.0 9.0 1573 ------- null} r -t 1.80258 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3155 -a 0 -x {9.0 10.0 1582 ------- null} + -t 1.80258 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3155 -a 0 -x {9.0 10.0 1582 ------- null} h -t 1.80258 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3155 -a 0 -x {9.0 10.0 1582 ------- null} r -t 1.80262 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3141 -a 0 -x {9.0 10.0 1575 ------- null} + -t 1.80262 -s 10 -d 7 -p ack -e 40 -c 0 -i 3160 -a 0 -x {10.0 9.0 1575 ------- null} - -t 1.80262 -s 10 -d 7 -p ack -e 40 -c 0 -i 3160 -a 0 -x {10.0 9.0 1575 ------- null} h -t 1.80262 -s 10 -d 7 -p ack -e 40 -c 0 -i 3160 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.80309 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3147 -a 0 -x {9.0 10.0 1578 ------- null} - -t 1.80309 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3147 -a 0 -x {9.0 10.0 1578 ------- null} h -t 1.80309 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3147 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.80318 -s 0 -d 9 -p ack -e 40 -c 0 -i 3150 -a 0 -x {10.0 9.0 1570 ------- null} + -t 1.80318 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3161 -a 0 -x {9.0 10.0 1585 ------- null} - -t 1.80318 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3161 -a 0 -x {9.0 10.0 1585 ------- null} h -t 1.80318 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3161 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.80336 -s 0 -d 9 -p ack -e 40 -c 0 -i 3154 -a 0 -x {10.0 9.0 1572 ------- null} - -t 1.80336 -s 0 -d 9 -p ack -e 40 -c 0 -i 3154 -a 0 -x {10.0 9.0 1572 ------- null} h -t 1.80336 -s 0 -d 9 -p ack -e 40 -c 0 -i 3154 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.80357 -s 10 -d 7 -p ack -e 40 -c 0 -i 3158 -a 0 -x {10.0 9.0 1574 ------- null} + -t 1.80357 -s 7 -d 0 -p ack -e 40 -c 0 -i 3158 -a 0 -x {10.0 9.0 1574 ------- null} h -t 1.80357 -s 7 -d 8 -p ack -e 40 -c 0 -i 3158 -a 0 -x {10.0 9.0 1574 ------- null} r -t 1.80371 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3143 -a 0 -x {9.0 10.0 1576 ------- null} + -t 1.80371 -s 10 -d 7 -p ack -e 40 -c 0 -i 3162 -a 0 -x {10.0 9.0 1576 ------- null} - -t 1.80371 -s 10 -d 7 -p ack -e 40 -c 0 -i 3162 -a 0 -x {10.0 9.0 1576 ------- null} h -t 1.80371 -s 10 -d 7 -p ack -e 40 -c 0 -i 3162 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.80379 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3157 -a 0 -x {9.0 10.0 1583 ------- null} + -t 1.80379 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3157 -a 0 -x {9.0 10.0 1583 ------- null} h -t 1.80379 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3157 -a 0 -x {9.0 10.0 1583 ------- null} r -t 1.80424 -s 0 -d 9 -p ack -e 40 -c 0 -i 3152 -a 0 -x {10.0 9.0 1571 ------- null} + -t 1.80424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3163 -a 0 -x {9.0 10.0 1586 ------- null} - -t 1.80424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3163 -a 0 -x {9.0 10.0 1586 ------- null} h -t 1.80424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3163 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.80427 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3149 -a 0 -x {9.0 10.0 1579 ------- null} - -t 1.80427 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3149 -a 0 -x {9.0 10.0 1579 ------- null} h -t 1.80427 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3149 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.80451 -s 0 -d 9 -p ack -e 40 -c 0 -i 3156 -a 0 -x {10.0 9.0 1573 ------- null} - -t 1.80451 -s 0 -d 9 -p ack -e 40 -c 0 -i 3156 -a 0 -x {10.0 9.0 1573 ------- null} h -t 1.80451 -s 0 -d 9 -p ack -e 40 -c 0 -i 3156 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.80466 -s 10 -d 7 -p ack -e 40 -c 0 -i 3160 -a 0 -x {10.0 9.0 1575 ------- null} + -t 1.80466 -s 7 -d 0 -p ack -e 40 -c 0 -i 3160 -a 0 -x {10.0 9.0 1575 ------- null} h -t 1.80466 -s 7 -d 8 -p ack -e 40 -c 0 -i 3160 -a 0 -x {10.0 9.0 1575 ------- null} r -t 1.80475 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3159 -a 0 -x {9.0 10.0 1584 ------- null} + -t 1.80475 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3159 -a 0 -x {9.0 10.0 1584 ------- null} h -t 1.80475 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3159 -a 0 -x {9.0 10.0 1584 ------- null} r -t 1.8048 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3145 -a 0 -x {9.0 10.0 1577 ------- null} + -t 1.8048 -s 10 -d 7 -p ack -e 40 -c 0 -i 3164 -a 0 -x {10.0 9.0 1577 ------- null} - -t 1.8048 -s 10 -d 7 -p ack -e 40 -c 0 -i 3164 -a 0 -x {10.0 9.0 1577 ------- null} h -t 1.8048 -s 10 -d 7 -p ack -e 40 -c 0 -i 3164 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.80536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3151 -a 0 -x {9.0 10.0 1580 ------- null} - -t 1.80536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3151 -a 0 -x {9.0 10.0 1580 ------- null} h -t 1.80536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3151 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.80539 -s 0 -d 9 -p ack -e 40 -c 0 -i 3154 -a 0 -x {10.0 9.0 1572 ------- null} + -t 1.80539 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3165 -a 0 -x {9.0 10.0 1587 ------- null} - -t 1.80539 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3165 -a 0 -x {9.0 10.0 1587 ------- null} h -t 1.80539 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3165 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.80544 -s 0 -d 9 -p ack -e 40 -c 0 -i 3158 -a 0 -x {10.0 9.0 1574 ------- null} - -t 1.80544 -s 0 -d 9 -p ack -e 40 -c 0 -i 3158 -a 0 -x {10.0 9.0 1574 ------- null} h -t 1.80544 -s 0 -d 9 -p ack -e 40 -c 0 -i 3158 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.80574 -s 10 -d 7 -p ack -e 40 -c 0 -i 3162 -a 0 -x {10.0 9.0 1576 ------- null} + -t 1.80574 -s 7 -d 0 -p ack -e 40 -c 0 -i 3162 -a 0 -x {10.0 9.0 1576 ------- null} h -t 1.80574 -s 7 -d 8 -p ack -e 40 -c 0 -i 3162 -a 0 -x {10.0 9.0 1576 ------- null} r -t 1.80589 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3147 -a 0 -x {9.0 10.0 1578 ------- null} + -t 1.80589 -s 10 -d 7 -p ack -e 40 -c 0 -i 3166 -a 0 -x {10.0 9.0 1578 ------- null} - -t 1.80589 -s 10 -d 7 -p ack -e 40 -c 0 -i 3166 -a 0 -x {10.0 9.0 1578 ------- null} h -t 1.80589 -s 10 -d 7 -p ack -e 40 -c 0 -i 3166 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.80598 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3161 -a 0 -x {9.0 10.0 1585 ------- null} + -t 1.80598 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3161 -a 0 -x {9.0 10.0 1585 ------- null} h -t 1.80598 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3161 -a 0 -x {9.0 10.0 1585 ------- null} + -t 1.80645 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3153 -a 0 -x {9.0 10.0 1581 ------- null} - -t 1.80645 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3153 -a 0 -x {9.0 10.0 1581 ------- null} h -t 1.80645 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3153 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.80654 -s 0 -d 9 -p ack -e 40 -c 0 -i 3156 -a 0 -x {10.0 9.0 1573 ------- null} + -t 1.80654 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3167 -a 0 -x {9.0 10.0 1588 ------- null} - -t 1.80654 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3167 -a 0 -x {9.0 10.0 1588 ------- null} h -t 1.80654 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3167 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.80664 -s 0 -d 9 -p ack -e 40 -c 0 -i 3160 -a 0 -x {10.0 9.0 1575 ------- null} - -t 1.80664 -s 0 -d 9 -p ack -e 40 -c 0 -i 3160 -a 0 -x {10.0 9.0 1575 ------- null} h -t 1.80664 -s 0 -d 9 -p ack -e 40 -c 0 -i 3160 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.80683 -s 10 -d 7 -p ack -e 40 -c 0 -i 3164 -a 0 -x {10.0 9.0 1577 ------- null} + -t 1.80683 -s 7 -d 0 -p ack -e 40 -c 0 -i 3164 -a 0 -x {10.0 9.0 1577 ------- null} h -t 1.80683 -s 7 -d 8 -p ack -e 40 -c 0 -i 3164 -a 0 -x {10.0 9.0 1577 ------- null} r -t 1.80704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3163 -a 0 -x {9.0 10.0 1586 ------- null} + -t 1.80704 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3163 -a 0 -x {9.0 10.0 1586 ------- null} h -t 1.80704 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3163 -a 0 -x {9.0 10.0 1586 ------- null} r -t 1.80707 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3149 -a 0 -x {9.0 10.0 1579 ------- null} + -t 1.80707 -s 10 -d 7 -p ack -e 40 -c 0 -i 3168 -a 0 -x {10.0 9.0 1579 ------- null} - -t 1.80707 -s 10 -d 7 -p ack -e 40 -c 0 -i 3168 -a 0 -x {10.0 9.0 1579 ------- null} h -t 1.80707 -s 10 -d 7 -p ack -e 40 -c 0 -i 3168 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.80747 -s 0 -d 9 -p ack -e 40 -c 0 -i 3158 -a 0 -x {10.0 9.0 1574 ------- null} + -t 1.80747 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3169 -a 0 -x {9.0 10.0 1589 ------- null} - -t 1.80747 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3169 -a 0 -x {9.0 10.0 1589 ------- null} h -t 1.80747 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3169 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.80754 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3155 -a 0 -x {9.0 10.0 1582 ------- null} - -t 1.80754 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3155 -a 0 -x {9.0 10.0 1582 ------- null} h -t 1.80754 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3155 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.80782 -s 0 -d 9 -p ack -e 40 -c 0 -i 3162 -a 0 -x {10.0 9.0 1576 ------- null} - -t 1.80782 -s 0 -d 9 -p ack -e 40 -c 0 -i 3162 -a 0 -x {10.0 9.0 1576 ------- null} h -t 1.80782 -s 0 -d 9 -p ack -e 40 -c 0 -i 3162 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.80792 -s 10 -d 7 -p ack -e 40 -c 0 -i 3166 -a 0 -x {10.0 9.0 1578 ------- null} + -t 1.80792 -s 7 -d 0 -p ack -e 40 -c 0 -i 3166 -a 0 -x {10.0 9.0 1578 ------- null} h -t 1.80792 -s 7 -d 8 -p ack -e 40 -c 0 -i 3166 -a 0 -x {10.0 9.0 1578 ------- null} r -t 1.80816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3151 -a 0 -x {9.0 10.0 1580 ------- null} + -t 1.80816 -s 10 -d 7 -p ack -e 40 -c 0 -i 3170 -a 0 -x {10.0 9.0 1580 ------- null} - -t 1.80816 -s 10 -d 7 -p ack -e 40 -c 0 -i 3170 -a 0 -x {10.0 9.0 1580 ------- null} h -t 1.80816 -s 10 -d 7 -p ack -e 40 -c 0 -i 3170 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.80819 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3165 -a 0 -x {9.0 10.0 1587 ------- null} + -t 1.80819 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3165 -a 0 -x {9.0 10.0 1587 ------- null} h -t 1.80819 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3165 -a 0 -x {9.0 10.0 1587 ------- null} r -t 1.80867 -s 0 -d 9 -p ack -e 40 -c 0 -i 3160 -a 0 -x {10.0 9.0 1575 ------- null} + -t 1.80867 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3171 -a 0 -x {9.0 10.0 1590 ------- null} - -t 1.80867 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3171 -a 0 -x {9.0 10.0 1590 ------- null} h -t 1.80867 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3171 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.80877 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3157 -a 0 -x {9.0 10.0 1583 ------- null} - -t 1.80877 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3157 -a 0 -x {9.0 10.0 1583 ------- null} h -t 1.80877 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3157 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.80904 -s 0 -d 9 -p ack -e 40 -c 0 -i 3164 -a 0 -x {10.0 9.0 1577 ------- null} - -t 1.80904 -s 0 -d 9 -p ack -e 40 -c 0 -i 3164 -a 0 -x {10.0 9.0 1577 ------- null} h -t 1.80904 -s 0 -d 9 -p ack -e 40 -c 0 -i 3164 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.8091 -s 10 -d 7 -p ack -e 40 -c 0 -i 3168 -a 0 -x {10.0 9.0 1579 ------- null} + -t 1.8091 -s 7 -d 0 -p ack -e 40 -c 0 -i 3168 -a 0 -x {10.0 9.0 1579 ------- null} h -t 1.8091 -s 7 -d 8 -p ack -e 40 -c 0 -i 3168 -a 0 -x {10.0 9.0 1579 ------- null} r -t 1.80925 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3153 -a 0 -x {9.0 10.0 1581 ------- null} + -t 1.80925 -s 10 -d 7 -p ack -e 40 -c 0 -i 3172 -a 0 -x {10.0 9.0 1581 ------- null} - -t 1.80925 -s 10 -d 7 -p ack -e 40 -c 0 -i 3172 -a 0 -x {10.0 9.0 1581 ------- null} h -t 1.80925 -s 10 -d 7 -p ack -e 40 -c 0 -i 3172 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.80934 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3167 -a 0 -x {9.0 10.0 1588 ------- null} + -t 1.80934 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3167 -a 0 -x {9.0 10.0 1588 ------- null} h -t 1.80934 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3167 -a 0 -x {9.0 10.0 1588 ------- null} r -t 1.80986 -s 0 -d 9 -p ack -e 40 -c 0 -i 3162 -a 0 -x {10.0 9.0 1576 ------- null} + -t 1.80986 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3173 -a 0 -x {9.0 10.0 1591 ------- null} - -t 1.80986 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3173 -a 0 -x {9.0 10.0 1591 ------- null} h -t 1.80986 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3173 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.8101 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3159 -a 0 -x {9.0 10.0 1584 ------- null} - -t 1.8101 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3159 -a 0 -x {9.0 10.0 1584 ------- null} h -t 1.8101 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3159 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.81019 -s 10 -d 7 -p ack -e 40 -c 0 -i 3170 -a 0 -x {10.0 9.0 1580 ------- null} + -t 1.81019 -s 7 -d 0 -p ack -e 40 -c 0 -i 3170 -a 0 -x {10.0 9.0 1580 ------- null} h -t 1.81019 -s 7 -d 8 -p ack -e 40 -c 0 -i 3170 -a 0 -x {10.0 9.0 1580 ------- null} r -t 1.81027 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3169 -a 0 -x {9.0 10.0 1589 ------- null} + -t 1.81027 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3169 -a 0 -x {9.0 10.0 1589 ------- null} h -t 1.81027 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3169 -a 0 -x {9.0 10.0 1589 ------- null} r -t 1.81034 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3155 -a 0 -x {9.0 10.0 1582 ------- null} + -t 1.81034 -s 10 -d 7 -p ack -e 40 -c 0 -i 3174 -a 0 -x {10.0 9.0 1582 ------- null} - -t 1.81034 -s 10 -d 7 -p ack -e 40 -c 0 -i 3174 -a 0 -x {10.0 9.0 1582 ------- null} h -t 1.81034 -s 10 -d 7 -p ack -e 40 -c 0 -i 3174 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.81034 -s 0 -d 9 -p ack -e 40 -c 0 -i 3166 -a 0 -x {10.0 9.0 1578 ------- null} - -t 1.81034 -s 0 -d 9 -p ack -e 40 -c 0 -i 3166 -a 0 -x {10.0 9.0 1578 ------- null} h -t 1.81034 -s 0 -d 9 -p ack -e 40 -c 0 -i 3166 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.81107 -s 0 -d 9 -p ack -e 40 -c 0 -i 3164 -a 0 -x {10.0 9.0 1577 ------- null} + -t 1.81107 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3175 -a 0 -x {9.0 10.0 1592 ------- null} - -t 1.81107 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3175 -a 0 -x {9.0 10.0 1592 ------- null} h -t 1.81107 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3175 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.81118 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3161 -a 0 -x {9.0 10.0 1585 ------- null} - -t 1.81118 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3161 -a 0 -x {9.0 10.0 1585 ------- null} h -t 1.81118 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3161 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.81128 -s 10 -d 7 -p ack -e 40 -c 0 -i 3172 -a 0 -x {10.0 9.0 1581 ------- null} + -t 1.81128 -s 7 -d 0 -p ack -e 40 -c 0 -i 3172 -a 0 -x {10.0 9.0 1581 ------- null} h -t 1.81128 -s 7 -d 8 -p ack -e 40 -c 0 -i 3172 -a 0 -x {10.0 9.0 1581 ------- null} r -t 1.81147 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3171 -a 0 -x {9.0 10.0 1590 ------- null} + -t 1.81147 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3171 -a 0 -x {9.0 10.0 1590 ------- null} h -t 1.81147 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3171 -a 0 -x {9.0 10.0 1590 ------- null} + -t 1.81147 -s 0 -d 9 -p ack -e 40 -c 0 -i 3168 -a 0 -x {10.0 9.0 1579 ------- null} - -t 1.81147 -s 0 -d 9 -p ack -e 40 -c 0 -i 3168 -a 0 -x {10.0 9.0 1579 ------- null} h -t 1.81147 -s 0 -d 9 -p ack -e 40 -c 0 -i 3168 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.81157 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3157 -a 0 -x {9.0 10.0 1583 ------- null} + -t 1.81157 -s 10 -d 7 -p ack -e 40 -c 0 -i 3176 -a 0 -x {10.0 9.0 1583 ------- null} - -t 1.81157 -s 10 -d 7 -p ack -e 40 -c 0 -i 3176 -a 0 -x {10.0 9.0 1583 ------- null} h -t 1.81157 -s 10 -d 7 -p ack -e 40 -c 0 -i 3176 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.81237 -s 10 -d 7 -p ack -e 40 -c 0 -i 3174 -a 0 -x {10.0 9.0 1582 ------- null} + -t 1.81237 -s 7 -d 0 -p ack -e 40 -c 0 -i 3174 -a 0 -x {10.0 9.0 1582 ------- null} h -t 1.81237 -s 7 -d 8 -p ack -e 40 -c 0 -i 3174 -a 0 -x {10.0 9.0 1582 ------- null} r -t 1.81237 -s 0 -d 9 -p ack -e 40 -c 0 -i 3166 -a 0 -x {10.0 9.0 1578 ------- null} + -t 1.81237 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3177 -a 0 -x {9.0 10.0 1593 ------- null} - -t 1.81237 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3177 -a 0 -x {9.0 10.0 1593 ------- null} h -t 1.81237 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3177 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.81246 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3163 -a 0 -x {9.0 10.0 1586 ------- null} - -t 1.81246 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3163 -a 0 -x {9.0 10.0 1586 ------- null} h -t 1.81246 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3163 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.81266 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3173 -a 0 -x {9.0 10.0 1591 ------- null} + -t 1.81266 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3173 -a 0 -x {9.0 10.0 1591 ------- null} h -t 1.81266 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3173 -a 0 -x {9.0 10.0 1591 ------- null} + -t 1.81275 -s 0 -d 9 -p ack -e 40 -c 0 -i 3170 -a 0 -x {10.0 9.0 1580 ------- null} - -t 1.81275 -s 0 -d 9 -p ack -e 40 -c 0 -i 3170 -a 0 -x {10.0 9.0 1580 ------- null} h -t 1.81275 -s 0 -d 9 -p ack -e 40 -c 0 -i 3170 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.8129 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3159 -a 0 -x {9.0 10.0 1584 ------- null} + -t 1.8129 -s 10 -d 7 -p ack -e 40 -c 0 -i 3178 -a 0 -x {10.0 9.0 1584 ------- null} - -t 1.8129 -s 10 -d 7 -p ack -e 40 -c 0 -i 3178 -a 0 -x {10.0 9.0 1584 ------- null} h -t 1.8129 -s 10 -d 7 -p ack -e 40 -c 0 -i 3178 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.8135 -s 0 -d 9 -p ack -e 40 -c 0 -i 3168 -a 0 -x {10.0 9.0 1579 ------- null} + -t 1.8135 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3179 -a 0 -x {9.0 10.0 1594 ------- null} - -t 1.8135 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3179 -a 0 -x {9.0 10.0 1594 ------- null} h -t 1.8135 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3179 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.8136 -s 10 -d 7 -p ack -e 40 -c 0 -i 3176 -a 0 -x {10.0 9.0 1583 ------- null} + -t 1.8136 -s 7 -d 0 -p ack -e 40 -c 0 -i 3176 -a 0 -x {10.0 9.0 1583 ------- null} h -t 1.8136 -s 7 -d 8 -p ack -e 40 -c 0 -i 3176 -a 0 -x {10.0 9.0 1583 ------- null} + -t 1.81368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3165 -a 0 -x {9.0 10.0 1587 ------- null} - -t 1.81368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3165 -a 0 -x {9.0 10.0 1587 ------- null} h -t 1.81368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3165 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.81386 -s 0 -d 9 -p ack -e 40 -c 0 -i 3172 -a 0 -x {10.0 9.0 1581 ------- null} - -t 1.81386 -s 0 -d 9 -p ack -e 40 -c 0 -i 3172 -a 0 -x {10.0 9.0 1581 ------- null} h -t 1.81386 -s 0 -d 9 -p ack -e 40 -c 0 -i 3172 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.81387 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3175 -a 0 -x {9.0 10.0 1592 ------- null} + -t 1.81387 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3175 -a 0 -x {9.0 10.0 1592 ------- null} h -t 1.81387 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3175 -a 0 -x {9.0 10.0 1592 ------- null} r -t 1.81398 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3161 -a 0 -x {9.0 10.0 1585 ------- null} + -t 1.81398 -s 10 -d 7 -p ack -e 40 -c 0 -i 3180 -a 0 -x {10.0 9.0 1585 ------- null} - -t 1.81398 -s 10 -d 7 -p ack -e 40 -c 0 -i 3180 -a 0 -x {10.0 9.0 1585 ------- null} h -t 1.81398 -s 10 -d 7 -p ack -e 40 -c 0 -i 3180 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.81477 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3167 -a 0 -x {9.0 10.0 1588 ------- null} - -t 1.81477 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3167 -a 0 -x {9.0 10.0 1588 ------- null} h -t 1.81477 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3167 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.81478 -s 0 -d 9 -p ack -e 40 -c 0 -i 3170 -a 0 -x {10.0 9.0 1580 ------- null} + -t 1.81478 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3181 -a 0 -x {9.0 10.0 1595 ------- null} - -t 1.81478 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3181 -a 0 -x {9.0 10.0 1595 ------- null} h -t 1.81478 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3181 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.81493 -s 10 -d 7 -p ack -e 40 -c 0 -i 3178 -a 0 -x {10.0 9.0 1584 ------- null} + -t 1.81493 -s 7 -d 0 -p ack -e 40 -c 0 -i 3178 -a 0 -x {10.0 9.0 1584 ------- null} h -t 1.81493 -s 7 -d 8 -p ack -e 40 -c 0 -i 3178 -a 0 -x {10.0 9.0 1584 ------- null} + -t 1.81501 -s 0 -d 9 -p ack -e 40 -c 0 -i 3174 -a 0 -x {10.0 9.0 1582 ------- null} - -t 1.81501 -s 0 -d 9 -p ack -e 40 -c 0 -i 3174 -a 0 -x {10.0 9.0 1582 ------- null} h -t 1.81501 -s 0 -d 9 -p ack -e 40 -c 0 -i 3174 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.81517 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3177 -a 0 -x {9.0 10.0 1593 ------- null} + -t 1.81517 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3177 -a 0 -x {9.0 10.0 1593 ------- null} h -t 1.81517 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3177 -a 0 -x {9.0 10.0 1593 ------- null} r -t 1.81526 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3163 -a 0 -x {9.0 10.0 1586 ------- null} + -t 1.81526 -s 10 -d 7 -p ack -e 40 -c 0 -i 3182 -a 0 -x {10.0 9.0 1586 ------- null} - -t 1.81526 -s 10 -d 7 -p ack -e 40 -c 0 -i 3182 -a 0 -x {10.0 9.0 1586 ------- null} h -t 1.81526 -s 10 -d 7 -p ack -e 40 -c 0 -i 3182 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.81586 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3169 -a 0 -x {9.0 10.0 1589 ------- null} - -t 1.81586 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3169 -a 0 -x {9.0 10.0 1589 ------- null} h -t 1.81586 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3169 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.81589 -s 0 -d 9 -p ack -e 40 -c 0 -i 3172 -a 0 -x {10.0 9.0 1581 ------- null} + -t 1.81589 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3183 -a 0 -x {9.0 10.0 1596 ------- null} - -t 1.81589 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3183 -a 0 -x {9.0 10.0 1596 ------- null} h -t 1.81589 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3183 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.816 -s 0 -d 9 -p ack -e 40 -c 0 -i 3176 -a 0 -x {10.0 9.0 1583 ------- null} - -t 1.816 -s 0 -d 9 -p ack -e 40 -c 0 -i 3176 -a 0 -x {10.0 9.0 1583 ------- null} h -t 1.816 -s 0 -d 9 -p ack -e 40 -c 0 -i 3176 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.81602 -s 10 -d 7 -p ack -e 40 -c 0 -i 3180 -a 0 -x {10.0 9.0 1585 ------- null} + -t 1.81602 -s 7 -d 0 -p ack -e 40 -c 0 -i 3180 -a 0 -x {10.0 9.0 1585 ------- null} h -t 1.81602 -s 7 -d 8 -p ack -e 40 -c 0 -i 3180 -a 0 -x {10.0 9.0 1585 ------- null} r -t 1.8163 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3179 -a 0 -x {9.0 10.0 1594 ------- null} + -t 1.8163 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3179 -a 0 -x {9.0 10.0 1594 ------- null} h -t 1.8163 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3179 -a 0 -x {9.0 10.0 1594 ------- null} r -t 1.81648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3165 -a 0 -x {9.0 10.0 1587 ------- null} + -t 1.81648 -s 10 -d 7 -p ack -e 40 -c 0 -i 3184 -a 0 -x {10.0 9.0 1587 ------- null} - -t 1.81648 -s 10 -d 7 -p ack -e 40 -c 0 -i 3184 -a 0 -x {10.0 9.0 1587 ------- null} h -t 1.81648 -s 10 -d 7 -p ack -e 40 -c 0 -i 3184 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.81694 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3171 -a 0 -x {9.0 10.0 1590 ------- null} - -t 1.81694 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3171 -a 0 -x {9.0 10.0 1590 ------- null} h -t 1.81694 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3171 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.81704 -s 0 -d 9 -p ack -e 40 -c 0 -i 3174 -a 0 -x {10.0 9.0 1582 ------- null} + -t 1.81704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3185 -a 0 -x {9.0 10.0 1597 ------- null} - -t 1.81704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3185 -a 0 -x {9.0 10.0 1597 ------- null} h -t 1.81704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3185 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.81722 -s 0 -d 9 -p ack -e 40 -c 0 -i 3178 -a 0 -x {10.0 9.0 1584 ------- null} - -t 1.81722 -s 0 -d 9 -p ack -e 40 -c 0 -i 3178 -a 0 -x {10.0 9.0 1584 ------- null} h -t 1.81722 -s 0 -d 9 -p ack -e 40 -c 0 -i 3178 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.8173 -s 10 -d 7 -p ack -e 40 -c 0 -i 3182 -a 0 -x {10.0 9.0 1586 ------- null} + -t 1.8173 -s 7 -d 0 -p ack -e 40 -c 0 -i 3182 -a 0 -x {10.0 9.0 1586 ------- null} h -t 1.8173 -s 7 -d 8 -p ack -e 40 -c 0 -i 3182 -a 0 -x {10.0 9.0 1586 ------- null} r -t 1.81757 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3167 -a 0 -x {9.0 10.0 1588 ------- null} + -t 1.81757 -s 10 -d 7 -p ack -e 40 -c 0 -i 3186 -a 0 -x {10.0 9.0 1588 ------- null} - -t 1.81757 -s 10 -d 7 -p ack -e 40 -c 0 -i 3186 -a 0 -x {10.0 9.0 1588 ------- null} h -t 1.81757 -s 10 -d 7 -p ack -e 40 -c 0 -i 3186 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.81758 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3181 -a 0 -x {9.0 10.0 1595 ------- null} + -t 1.81758 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3181 -a 0 -x {9.0 10.0 1595 ------- null} h -t 1.81758 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3181 -a 0 -x {9.0 10.0 1595 ------- null} r -t 1.81803 -s 0 -d 9 -p ack -e 40 -c 0 -i 3176 -a 0 -x {10.0 9.0 1583 ------- null} + -t 1.81803 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3187 -a 0 -x {9.0 10.0 1598 ------- null} - -t 1.81803 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3187 -a 0 -x {9.0 10.0 1598 ------- null} h -t 1.81803 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3187 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.81822 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3173 -a 0 -x {9.0 10.0 1591 ------- null} - -t 1.81822 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3173 -a 0 -x {9.0 10.0 1591 ------- null} h -t 1.81822 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3173 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.81838 -s 0 -d 9 -p ack -e 40 -c 0 -i 3180 -a 0 -x {10.0 9.0 1585 ------- null} - -t 1.81838 -s 0 -d 9 -p ack -e 40 -c 0 -i 3180 -a 0 -x {10.0 9.0 1585 ------- null} h -t 1.81838 -s 0 -d 9 -p ack -e 40 -c 0 -i 3180 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.81851 -s 10 -d 7 -p ack -e 40 -c 0 -i 3184 -a 0 -x {10.0 9.0 1587 ------- null} + -t 1.81851 -s 7 -d 0 -p ack -e 40 -c 0 -i 3184 -a 0 -x {10.0 9.0 1587 ------- null} h -t 1.81851 -s 7 -d 8 -p ack -e 40 -c 0 -i 3184 -a 0 -x {10.0 9.0 1587 ------- null} r -t 1.81866 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3169 -a 0 -x {9.0 10.0 1589 ------- null} + -t 1.81866 -s 10 -d 7 -p ack -e 40 -c 0 -i 3188 -a 0 -x {10.0 9.0 1589 ------- null} - -t 1.81866 -s 10 -d 7 -p ack -e 40 -c 0 -i 3188 -a 0 -x {10.0 9.0 1589 ------- null} h -t 1.81866 -s 10 -d 7 -p ack -e 40 -c 0 -i 3188 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.81869 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3183 -a 0 -x {9.0 10.0 1596 ------- null} + -t 1.81869 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3183 -a 0 -x {9.0 10.0 1596 ------- null} h -t 1.81869 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3183 -a 0 -x {9.0 10.0 1596 ------- null} r -t 1.81925 -s 0 -d 9 -p ack -e 40 -c 0 -i 3178 -a 0 -x {10.0 9.0 1584 ------- null} + -t 1.81925 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3189 -a 0 -x {9.0 10.0 1599 ------- null} - -t 1.81925 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3189 -a 0 -x {9.0 10.0 1599 ------- null} h -t 1.81925 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3189 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.81931 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3175 -a 0 -x {9.0 10.0 1592 ------- null} - -t 1.81931 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3175 -a 0 -x {9.0 10.0 1592 ------- null} h -t 1.81931 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3175 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.81947 -s 0 -d 9 -p ack -e 40 -c 0 -i 3182 -a 0 -x {10.0 9.0 1586 ------- null} - -t 1.81947 -s 0 -d 9 -p ack -e 40 -c 0 -i 3182 -a 0 -x {10.0 9.0 1586 ------- null} h -t 1.81947 -s 0 -d 9 -p ack -e 40 -c 0 -i 3182 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.8196 -s 10 -d 7 -p ack -e 40 -c 0 -i 3186 -a 0 -x {10.0 9.0 1588 ------- null} + -t 1.8196 -s 7 -d 0 -p ack -e 40 -c 0 -i 3186 -a 0 -x {10.0 9.0 1588 ------- null} h -t 1.8196 -s 7 -d 8 -p ack -e 40 -c 0 -i 3186 -a 0 -x {10.0 9.0 1588 ------- null} r -t 1.81974 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3171 -a 0 -x {9.0 10.0 1590 ------- null} + -t 1.81974 -s 10 -d 7 -p ack -e 40 -c 0 -i 3190 -a 0 -x {10.0 9.0 1590 ------- null} - -t 1.81974 -s 10 -d 7 -p ack -e 40 -c 0 -i 3190 -a 0 -x {10.0 9.0 1590 ------- null} h -t 1.81974 -s 10 -d 7 -p ack -e 40 -c 0 -i 3190 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.81984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3185 -a 0 -x {9.0 10.0 1597 ------- null} + -t 1.81984 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3185 -a 0 -x {9.0 10.0 1597 ------- null} h -t 1.81984 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3185 -a 0 -x {9.0 10.0 1597 ------- null} + -t 1.8204 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3177 -a 0 -x {9.0 10.0 1593 ------- null} - -t 1.8204 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3177 -a 0 -x {9.0 10.0 1593 ------- null} h -t 1.8204 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3177 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.82042 -s 0 -d 9 -p ack -e 40 -c 0 -i 3180 -a 0 -x {10.0 9.0 1585 ------- null} + -t 1.82042 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3191 -a 0 -x {9.0 10.0 1600 ------- null} - -t 1.82042 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3191 -a 0 -x {9.0 10.0 1600 ------- null} h -t 1.82042 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3191 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.82066 -s 0 -d 9 -p ack -e 40 -c 0 -i 3184 -a 0 -x {10.0 9.0 1587 ------- null} - -t 1.82066 -s 0 -d 9 -p ack -e 40 -c 0 -i 3184 -a 0 -x {10.0 9.0 1587 ------- null} h -t 1.82066 -s 0 -d 9 -p ack -e 40 -c 0 -i 3184 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.82069 -s 10 -d 7 -p ack -e 40 -c 0 -i 3188 -a 0 -x {10.0 9.0 1589 ------- null} + -t 1.82069 -s 7 -d 0 -p ack -e 40 -c 0 -i 3188 -a 0 -x {10.0 9.0 1589 ------- null} h -t 1.82069 -s 7 -d 8 -p ack -e 40 -c 0 -i 3188 -a 0 -x {10.0 9.0 1589 ------- null} r -t 1.82083 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3187 -a 0 -x {9.0 10.0 1598 ------- null} + -t 1.82083 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3187 -a 0 -x {9.0 10.0 1598 ------- null} h -t 1.82083 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3187 -a 0 -x {9.0 10.0 1598 ------- null} r -t 1.82102 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3173 -a 0 -x {9.0 10.0 1591 ------- null} + -t 1.82102 -s 10 -d 7 -p ack -e 40 -c 0 -i 3192 -a 0 -x {10.0 9.0 1591 ------- null} - -t 1.82102 -s 10 -d 7 -p ack -e 40 -c 0 -i 3192 -a 0 -x {10.0 9.0 1591 ------- null} h -t 1.82102 -s 10 -d 7 -p ack -e 40 -c 0 -i 3192 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.82149 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3179 -a 0 -x {9.0 10.0 1594 ------- null} - -t 1.82149 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3179 -a 0 -x {9.0 10.0 1594 ------- null} h -t 1.82149 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3179 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.8215 -s 0 -d 9 -p ack -e 40 -c 0 -i 3182 -a 0 -x {10.0 9.0 1586 ------- null} + -t 1.8215 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3193 -a 0 -x {9.0 10.0 1601 ------- null} - -t 1.8215 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3193 -a 0 -x {9.0 10.0 1601 ------- null} h -t 1.8215 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3193 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.82166 -s 0 -d 9 -p ack -e 40 -c 0 -i 3186 -a 0 -x {10.0 9.0 1588 ------- null} - -t 1.82166 -s 0 -d 9 -p ack -e 40 -c 0 -i 3186 -a 0 -x {10.0 9.0 1588 ------- null} h -t 1.82166 -s 0 -d 9 -p ack -e 40 -c 0 -i 3186 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.82178 -s 10 -d 7 -p ack -e 40 -c 0 -i 3190 -a 0 -x {10.0 9.0 1590 ------- null} + -t 1.82178 -s 7 -d 0 -p ack -e 40 -c 0 -i 3190 -a 0 -x {10.0 9.0 1590 ------- null} h -t 1.82178 -s 7 -d 8 -p ack -e 40 -c 0 -i 3190 -a 0 -x {10.0 9.0 1590 ------- null} r -t 1.82205 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3189 -a 0 -x {9.0 10.0 1599 ------- null} + -t 1.82205 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3189 -a 0 -x {9.0 10.0 1599 ------- null} h -t 1.82205 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3189 -a 0 -x {9.0 10.0 1599 ------- null} r -t 1.82211 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3175 -a 0 -x {9.0 10.0 1592 ------- null} + -t 1.82211 -s 10 -d 7 -p ack -e 40 -c 0 -i 3194 -a 0 -x {10.0 9.0 1592 ------- null} - -t 1.82211 -s 10 -d 7 -p ack -e 40 -c 0 -i 3194 -a 0 -x {10.0 9.0 1592 ------- null} h -t 1.82211 -s 10 -d 7 -p ack -e 40 -c 0 -i 3194 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.82258 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3181 -a 0 -x {9.0 10.0 1595 ------- null} - -t 1.82258 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3181 -a 0 -x {9.0 10.0 1595 ------- null} h -t 1.82258 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3181 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.82269 -s 0 -d 9 -p ack -e 40 -c 0 -i 3184 -a 0 -x {10.0 9.0 1587 ------- null} + -t 1.82269 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3195 -a 0 -x {9.0 10.0 1602 ------- null} - -t 1.82269 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3195 -a 0 -x {9.0 10.0 1602 ------- null} h -t 1.82269 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3195 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.82275 -s 0 -d 9 -p ack -e 40 -c 0 -i 3188 -a 0 -x {10.0 9.0 1589 ------- null} - -t 1.82275 -s 0 -d 9 -p ack -e 40 -c 0 -i 3188 -a 0 -x {10.0 9.0 1589 ------- null} h -t 1.82275 -s 0 -d 9 -p ack -e 40 -c 0 -i 3188 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.82306 -s 10 -d 7 -p ack -e 40 -c 0 -i 3192 -a 0 -x {10.0 9.0 1591 ------- null} + -t 1.82306 -s 7 -d 0 -p ack -e 40 -c 0 -i 3192 -a 0 -x {10.0 9.0 1591 ------- null} h -t 1.82306 -s 7 -d 8 -p ack -e 40 -c 0 -i 3192 -a 0 -x {10.0 9.0 1591 ------- null} r -t 1.8232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3177 -a 0 -x {9.0 10.0 1593 ------- null} + -t 1.8232 -s 10 -d 7 -p ack -e 40 -c 0 -i 3196 -a 0 -x {10.0 9.0 1593 ------- null} - -t 1.8232 -s 10 -d 7 -p ack -e 40 -c 0 -i 3196 -a 0 -x {10.0 9.0 1593 ------- null} h -t 1.8232 -s 10 -d 7 -p ack -e 40 -c 0 -i 3196 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.82322 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3191 -a 0 -x {9.0 10.0 1600 ------- null} + -t 1.82322 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3191 -a 0 -x {9.0 10.0 1600 ------- null} h -t 1.82322 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3191 -a 0 -x {9.0 10.0 1600 ------- null} + -t 1.82366 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3183 -a 0 -x {9.0 10.0 1596 ------- null} - -t 1.82366 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3183 -a 0 -x {9.0 10.0 1596 ------- null} h -t 1.82366 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3183 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.8237 -s 0 -d 9 -p ack -e 40 -c 0 -i 3186 -a 0 -x {10.0 9.0 1588 ------- null} + -t 1.8237 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3197 -a 0 -x {9.0 10.0 1603 ------- null} - -t 1.8237 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3197 -a 0 -x {9.0 10.0 1603 ------- null} h -t 1.8237 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3197 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.82384 -s 0 -d 9 -p ack -e 40 -c 0 -i 3190 -a 0 -x {10.0 9.0 1590 ------- null} - -t 1.82384 -s 0 -d 9 -p ack -e 40 -c 0 -i 3190 -a 0 -x {10.0 9.0 1590 ------- null} h -t 1.82384 -s 0 -d 9 -p ack -e 40 -c 0 -i 3190 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.82414 -s 10 -d 7 -p ack -e 40 -c 0 -i 3194 -a 0 -x {10.0 9.0 1592 ------- null} + -t 1.82414 -s 7 -d 0 -p ack -e 40 -c 0 -i 3194 -a 0 -x {10.0 9.0 1592 ------- null} h -t 1.82414 -s 7 -d 8 -p ack -e 40 -c 0 -i 3194 -a 0 -x {10.0 9.0 1592 ------- null} r -t 1.82429 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3179 -a 0 -x {9.0 10.0 1594 ------- null} + -t 1.82429 -s 10 -d 7 -p ack -e 40 -c 0 -i 3198 -a 0 -x {10.0 9.0 1594 ------- null} - -t 1.82429 -s 10 -d 7 -p ack -e 40 -c 0 -i 3198 -a 0 -x {10.0 9.0 1594 ------- null} h -t 1.82429 -s 10 -d 7 -p ack -e 40 -c 0 -i 3198 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.8243 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3193 -a 0 -x {9.0 10.0 1601 ------- null} + -t 1.8243 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3193 -a 0 -x {9.0 10.0 1601 ------- null} h -t 1.8243 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3193 -a 0 -x {9.0 10.0 1601 ------- null} + -t 1.82475 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3185 -a 0 -x {9.0 10.0 1597 ------- null} - -t 1.82475 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3185 -a 0 -x {9.0 10.0 1597 ------- null} h -t 1.82475 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3185 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.82478 -s 0 -d 9 -p ack -e 40 -c 0 -i 3188 -a 0 -x {10.0 9.0 1589 ------- null} + -t 1.82478 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3199 -a 0 -x {9.0 10.0 1604 ------- null} - -t 1.82478 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3199 -a 0 -x {9.0 10.0 1604 ------- null} h -t 1.82478 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3199 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.82483 -s 0 -d 9 -p ack -e 40 -c 0 -i 3192 -a 0 -x {10.0 9.0 1591 ------- null} - -t 1.82483 -s 0 -d 9 -p ack -e 40 -c 0 -i 3192 -a 0 -x {10.0 9.0 1591 ------- null} h -t 1.82483 -s 0 -d 9 -p ack -e 40 -c 0 -i 3192 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.82523 -s 10 -d 7 -p ack -e 40 -c 0 -i 3196 -a 0 -x {10.0 9.0 1593 ------- null} + -t 1.82523 -s 7 -d 0 -p ack -e 40 -c 0 -i 3196 -a 0 -x {10.0 9.0 1593 ------- null} h -t 1.82523 -s 7 -d 8 -p ack -e 40 -c 0 -i 3196 -a 0 -x {10.0 9.0 1593 ------- null} r -t 1.82538 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3181 -a 0 -x {9.0 10.0 1595 ------- null} + -t 1.82538 -s 10 -d 7 -p ack -e 40 -c 0 -i 3200 -a 0 -x {10.0 9.0 1595 ------- null} - -t 1.82538 -s 10 -d 7 -p ack -e 40 -c 0 -i 3200 -a 0 -x {10.0 9.0 1595 ------- null} h -t 1.82538 -s 10 -d 7 -p ack -e 40 -c 0 -i 3200 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.82549 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3195 -a 0 -x {9.0 10.0 1602 ------- null} + -t 1.82549 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3195 -a 0 -x {9.0 10.0 1602 ------- null} h -t 1.82549 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3195 -a 0 -x {9.0 10.0 1602 ------- null} + -t 1.82584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3187 -a 0 -x {9.0 10.0 1598 ------- null} - -t 1.82584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3187 -a 0 -x {9.0 10.0 1598 ------- null} h -t 1.82584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3187 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.82587 -s 0 -d 9 -p ack -e 40 -c 0 -i 3190 -a 0 -x {10.0 9.0 1590 ------- null} + -t 1.82587 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3201 -a 0 -x {9.0 10.0 1605 ------- null} - -t 1.82587 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3201 -a 0 -x {9.0 10.0 1605 ------- null} h -t 1.82587 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3201 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.82594 -s 0 -d 9 -p ack -e 40 -c 0 -i 3194 -a 0 -x {10.0 9.0 1592 ------- null} - -t 1.82594 -s 0 -d 9 -p ack -e 40 -c 0 -i 3194 -a 0 -x {10.0 9.0 1592 ------- null} h -t 1.82594 -s 0 -d 9 -p ack -e 40 -c 0 -i 3194 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.82632 -s 10 -d 7 -p ack -e 40 -c 0 -i 3198 -a 0 -x {10.0 9.0 1594 ------- null} + -t 1.82632 -s 7 -d 0 -p ack -e 40 -c 0 -i 3198 -a 0 -x {10.0 9.0 1594 ------- null} h -t 1.82632 -s 7 -d 8 -p ack -e 40 -c 0 -i 3198 -a 0 -x {10.0 9.0 1594 ------- null} r -t 1.82646 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3183 -a 0 -x {9.0 10.0 1596 ------- null} + -t 1.82646 -s 10 -d 7 -p ack -e 40 -c 0 -i 3202 -a 0 -x {10.0 9.0 1596 ------- null} - -t 1.82646 -s 10 -d 7 -p ack -e 40 -c 0 -i 3202 -a 0 -x {10.0 9.0 1596 ------- null} h -t 1.82646 -s 10 -d 7 -p ack -e 40 -c 0 -i 3202 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.8265 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3197 -a 0 -x {9.0 10.0 1603 ------- null} + -t 1.8265 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3197 -a 0 -x {9.0 10.0 1603 ------- null} h -t 1.8265 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3197 -a 0 -x {9.0 10.0 1603 ------- null} r -t 1.82686 -s 0 -d 9 -p ack -e 40 -c 0 -i 3192 -a 0 -x {10.0 9.0 1591 ------- null} + -t 1.82686 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3203 -a 0 -x {9.0 10.0 1606 ------- null} - -t 1.82686 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3203 -a 0 -x {9.0 10.0 1606 ------- null} h -t 1.82686 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3203 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.82693 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3189 -a 0 -x {9.0 10.0 1599 ------- null} - -t 1.82693 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3189 -a 0 -x {9.0 10.0 1599 ------- null} h -t 1.82693 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3189 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.82702 -s 0 -d 9 -p ack -e 40 -c 0 -i 3196 -a 0 -x {10.0 9.0 1593 ------- null} - -t 1.82702 -s 0 -d 9 -p ack -e 40 -c 0 -i 3196 -a 0 -x {10.0 9.0 1593 ------- null} h -t 1.82702 -s 0 -d 9 -p ack -e 40 -c 0 -i 3196 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.82741 -s 10 -d 7 -p ack -e 40 -c 0 -i 3200 -a 0 -x {10.0 9.0 1595 ------- null} + -t 1.82741 -s 7 -d 0 -p ack -e 40 -c 0 -i 3200 -a 0 -x {10.0 9.0 1595 ------- null} h -t 1.82741 -s 7 -d 8 -p ack -e 40 -c 0 -i 3200 -a 0 -x {10.0 9.0 1595 ------- null} r -t 1.82755 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3185 -a 0 -x {9.0 10.0 1597 ------- null} + -t 1.82755 -s 10 -d 7 -p ack -e 40 -c 0 -i 3204 -a 0 -x {10.0 9.0 1597 ------- null} - -t 1.82755 -s 10 -d 7 -p ack -e 40 -c 0 -i 3204 -a 0 -x {10.0 9.0 1597 ------- null} h -t 1.82755 -s 10 -d 7 -p ack -e 40 -c 0 -i 3204 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.82758 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3199 -a 0 -x {9.0 10.0 1604 ------- null} + -t 1.82758 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3199 -a 0 -x {9.0 10.0 1604 ------- null} h -t 1.82758 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3199 -a 0 -x {9.0 10.0 1604 ------- null} r -t 1.82797 -s 0 -d 9 -p ack -e 40 -c 0 -i 3194 -a 0 -x {10.0 9.0 1592 ------- null} + -t 1.82797 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3205 -a 0 -x {9.0 10.0 1607 ------- null} - -t 1.82797 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3205 -a 0 -x {9.0 10.0 1607 ------- null} h -t 1.82797 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3205 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.82802 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3191 -a 0 -x {9.0 10.0 1600 ------- null} - -t 1.82802 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3191 -a 0 -x {9.0 10.0 1600 ------- null} h -t 1.82802 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3191 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.8283 -s 0 -d 9 -p ack -e 40 -c 0 -i 3198 -a 0 -x {10.0 9.0 1594 ------- null} - -t 1.8283 -s 0 -d 9 -p ack -e 40 -c 0 -i 3198 -a 0 -x {10.0 9.0 1594 ------- null} h -t 1.8283 -s 0 -d 9 -p ack -e 40 -c 0 -i 3198 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.8285 -s 10 -d 7 -p ack -e 40 -c 0 -i 3202 -a 0 -x {10.0 9.0 1596 ------- null} + -t 1.8285 -s 7 -d 0 -p ack -e 40 -c 0 -i 3202 -a 0 -x {10.0 9.0 1596 ------- null} h -t 1.8285 -s 7 -d 8 -p ack -e 40 -c 0 -i 3202 -a 0 -x {10.0 9.0 1596 ------- null} r -t 1.82864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3187 -a 0 -x {9.0 10.0 1598 ------- null} + -t 1.82864 -s 10 -d 7 -p ack -e 40 -c 0 -i 3206 -a 0 -x {10.0 9.0 1598 ------- null} - -t 1.82864 -s 10 -d 7 -p ack -e 40 -c 0 -i 3206 -a 0 -x {10.0 9.0 1598 ------- null} h -t 1.82864 -s 10 -d 7 -p ack -e 40 -c 0 -i 3206 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.82867 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3201 -a 0 -x {9.0 10.0 1605 ------- null} + -t 1.82867 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3201 -a 0 -x {9.0 10.0 1605 ------- null} h -t 1.82867 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3201 -a 0 -x {9.0 10.0 1605 ------- null} r -t 1.82906 -s 0 -d 9 -p ack -e 40 -c 0 -i 3196 -a 0 -x {10.0 9.0 1593 ------- null} + -t 1.82906 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3207 -a 0 -x {9.0 10.0 1608 ------- null} - -t 1.82906 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3207 -a 0 -x {9.0 10.0 1608 ------- null} h -t 1.82906 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3207 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.82914 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3193 -a 0 -x {9.0 10.0 1601 ------- null} - -t 1.82914 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3193 -a 0 -x {9.0 10.0 1601 ------- null} h -t 1.82914 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3193 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.82939 -s 0 -d 9 -p ack -e 40 -c 0 -i 3200 -a 0 -x {10.0 9.0 1595 ------- null} - -t 1.82939 -s 0 -d 9 -p ack -e 40 -c 0 -i 3200 -a 0 -x {10.0 9.0 1595 ------- null} h -t 1.82939 -s 0 -d 9 -p ack -e 40 -c 0 -i 3200 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.82958 -s 10 -d 7 -p ack -e 40 -c 0 -i 3204 -a 0 -x {10.0 9.0 1597 ------- null} + -t 1.82958 -s 7 -d 0 -p ack -e 40 -c 0 -i 3204 -a 0 -x {10.0 9.0 1597 ------- null} h -t 1.82958 -s 7 -d 8 -p ack -e 40 -c 0 -i 3204 -a 0 -x {10.0 9.0 1597 ------- null} r -t 1.82966 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3203 -a 0 -x {9.0 10.0 1606 ------- null} + -t 1.82966 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3203 -a 0 -x {9.0 10.0 1606 ------- null} h -t 1.82966 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3203 -a 0 -x {9.0 10.0 1606 ------- null} r -t 1.82973 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3189 -a 0 -x {9.0 10.0 1599 ------- null} + -t 1.82973 -s 10 -d 7 -p ack -e 40 -c 0 -i 3208 -a 0 -x {10.0 9.0 1599 ------- null} - -t 1.82973 -s 10 -d 7 -p ack -e 40 -c 0 -i 3208 -a 0 -x {10.0 9.0 1599 ------- null} h -t 1.82973 -s 10 -d 7 -p ack -e 40 -c 0 -i 3208 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.83022 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3195 -a 0 -x {9.0 10.0 1602 ------- null} - -t 1.83022 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3195 -a 0 -x {9.0 10.0 1602 ------- null} h -t 1.83022 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3195 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.83034 -s 0 -d 9 -p ack -e 40 -c 0 -i 3198 -a 0 -x {10.0 9.0 1594 ------- null} + -t 1.83034 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3209 -a 0 -x {9.0 10.0 1609 ------- null} - -t 1.83034 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3209 -a 0 -x {9.0 10.0 1609 ------- null} h -t 1.83034 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3209 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.8304 -s 0 -d 9 -p ack -e 40 -c 0 -i 3202 -a 0 -x {10.0 9.0 1596 ------- null} - -t 1.8304 -s 0 -d 9 -p ack -e 40 -c 0 -i 3202 -a 0 -x {10.0 9.0 1596 ------- null} h -t 1.8304 -s 0 -d 9 -p ack -e 40 -c 0 -i 3202 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.83067 -s 10 -d 7 -p ack -e 40 -c 0 -i 3206 -a 0 -x {10.0 9.0 1598 ------- null} + -t 1.83067 -s 7 -d 0 -p ack -e 40 -c 0 -i 3206 -a 0 -x {10.0 9.0 1598 ------- null} h -t 1.83067 -s 7 -d 8 -p ack -e 40 -c 0 -i 3206 -a 0 -x {10.0 9.0 1598 ------- null} r -t 1.83077 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3205 -a 0 -x {9.0 10.0 1607 ------- null} + -t 1.83077 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3205 -a 0 -x {9.0 10.0 1607 ------- null} h -t 1.83077 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3205 -a 0 -x {9.0 10.0 1607 ------- null} r -t 1.83082 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3191 -a 0 -x {9.0 10.0 1600 ------- null} + -t 1.83082 -s 10 -d 7 -p ack -e 40 -c 0 -i 3210 -a 0 -x {10.0 9.0 1600 ------- null} - -t 1.83082 -s 10 -d 7 -p ack -e 40 -c 0 -i 3210 -a 0 -x {10.0 9.0 1600 ------- null} h -t 1.83082 -s 10 -d 7 -p ack -e 40 -c 0 -i 3210 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.83131 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3197 -a 0 -x {9.0 10.0 1603 ------- null} - -t 1.83131 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3197 -a 0 -x {9.0 10.0 1603 ------- null} h -t 1.83131 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3197 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.83141 -s 0 -d 9 -p ack -e 40 -c 0 -i 3204 -a 0 -x {10.0 9.0 1597 ------- null} - -t 1.83141 -s 0 -d 9 -p ack -e 40 -c 0 -i 3204 -a 0 -x {10.0 9.0 1597 ------- null} h -t 1.83141 -s 0 -d 9 -p ack -e 40 -c 0 -i 3204 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.83142 -s 0 -d 9 -p ack -e 40 -c 0 -i 3200 -a 0 -x {10.0 9.0 1595 ------- null} + -t 1.83142 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3211 -a 0 -x {9.0 10.0 1610 ------- null} - -t 1.83142 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3211 -a 0 -x {9.0 10.0 1610 ------- null} h -t 1.83142 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3211 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.83176 -s 10 -d 7 -p ack -e 40 -c 0 -i 3208 -a 0 -x {10.0 9.0 1599 ------- null} + -t 1.83176 -s 7 -d 0 -p ack -e 40 -c 0 -i 3208 -a 0 -x {10.0 9.0 1599 ------- null} h -t 1.83176 -s 7 -d 8 -p ack -e 40 -c 0 -i 3208 -a 0 -x {10.0 9.0 1599 ------- null} r -t 1.83186 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3207 -a 0 -x {9.0 10.0 1608 ------- null} + -t 1.83186 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3207 -a 0 -x {9.0 10.0 1608 ------- null} h -t 1.83186 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3207 -a 0 -x {9.0 10.0 1608 ------- null} r -t 1.83194 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3193 -a 0 -x {9.0 10.0 1601 ------- null} + -t 1.83194 -s 10 -d 7 -p ack -e 40 -c 0 -i 3212 -a 0 -x {10.0 9.0 1601 ------- null} - -t 1.83194 -s 10 -d 7 -p ack -e 40 -c 0 -i 3212 -a 0 -x {10.0 9.0 1601 ------- null} h -t 1.83194 -s 10 -d 7 -p ack -e 40 -c 0 -i 3212 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.8324 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3199 -a 0 -x {9.0 10.0 1604 ------- null} - -t 1.8324 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3199 -a 0 -x {9.0 10.0 1604 ------- null} h -t 1.8324 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3199 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.83243 -s 0 -d 9 -p ack -e 40 -c 0 -i 3202 -a 0 -x {10.0 9.0 1596 ------- null} + -t 1.83243 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3213 -a 0 -x {9.0 10.0 1611 ------- null} - -t 1.83243 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3213 -a 0 -x {9.0 10.0 1611 ------- null} h -t 1.83243 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3213 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.83266 -s 0 -d 9 -p ack -e 40 -c 0 -i 3206 -a 0 -x {10.0 9.0 1598 ------- null} - -t 1.83266 -s 0 -d 9 -p ack -e 40 -c 0 -i 3206 -a 0 -x {10.0 9.0 1598 ------- null} h -t 1.83266 -s 0 -d 9 -p ack -e 40 -c 0 -i 3206 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.83285 -s 10 -d 7 -p ack -e 40 -c 0 -i 3210 -a 0 -x {10.0 9.0 1600 ------- null} + -t 1.83285 -s 7 -d 0 -p ack -e 40 -c 0 -i 3210 -a 0 -x {10.0 9.0 1600 ------- null} h -t 1.83285 -s 7 -d 8 -p ack -e 40 -c 0 -i 3210 -a 0 -x {10.0 9.0 1600 ------- null} r -t 1.83302 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3195 -a 0 -x {9.0 10.0 1602 ------- null} + -t 1.83302 -s 10 -d 7 -p ack -e 40 -c 0 -i 3214 -a 0 -x {10.0 9.0 1602 ------- null} - -t 1.83302 -s 10 -d 7 -p ack -e 40 -c 0 -i 3214 -a 0 -x {10.0 9.0 1602 ------- null} h -t 1.83302 -s 10 -d 7 -p ack -e 40 -c 0 -i 3214 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.83314 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3209 -a 0 -x {9.0 10.0 1609 ------- null} + -t 1.83314 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3209 -a 0 -x {9.0 10.0 1609 ------- null} h -t 1.83314 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3209 -a 0 -x {9.0 10.0 1609 ------- null} r -t 1.83344 -s 0 -d 9 -p ack -e 40 -c 0 -i 3204 -a 0 -x {10.0 9.0 1597 ------- null} + -t 1.83344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3215 -a 0 -x {9.0 10.0 1612 ------- null} - -t 1.83344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3215 -a 0 -x {9.0 10.0 1612 ------- null} h -t 1.83344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3215 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.83349 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3201 -a 0 -x {9.0 10.0 1605 ------- null} - -t 1.83349 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3201 -a 0 -x {9.0 10.0 1605 ------- null} h -t 1.83349 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3201 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.8337 -s 0 -d 9 -p ack -e 40 -c 0 -i 3208 -a 0 -x {10.0 9.0 1599 ------- null} - -t 1.8337 -s 0 -d 9 -p ack -e 40 -c 0 -i 3208 -a 0 -x {10.0 9.0 1599 ------- null} h -t 1.8337 -s 0 -d 9 -p ack -e 40 -c 0 -i 3208 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.83397 -s 10 -d 7 -p ack -e 40 -c 0 -i 3212 -a 0 -x {10.0 9.0 1601 ------- null} + -t 1.83397 -s 7 -d 0 -p ack -e 40 -c 0 -i 3212 -a 0 -x {10.0 9.0 1601 ------- null} h -t 1.83397 -s 7 -d 8 -p ack -e 40 -c 0 -i 3212 -a 0 -x {10.0 9.0 1601 ------- null} r -t 1.83411 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3197 -a 0 -x {9.0 10.0 1603 ------- null} + -t 1.83411 -s 10 -d 7 -p ack -e 40 -c 0 -i 3216 -a 0 -x {10.0 9.0 1603 ------- null} - -t 1.83411 -s 10 -d 7 -p ack -e 40 -c 0 -i 3216 -a 0 -x {10.0 9.0 1603 ------- null} h -t 1.83411 -s 10 -d 7 -p ack -e 40 -c 0 -i 3216 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.83422 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3211 -a 0 -x {9.0 10.0 1610 ------- null} + -t 1.83422 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3211 -a 0 -x {9.0 10.0 1610 ------- null} h -t 1.83422 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3211 -a 0 -x {9.0 10.0 1610 ------- null} + -t 1.83458 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3203 -a 0 -x {9.0 10.0 1606 ------- null} - -t 1.83458 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3203 -a 0 -x {9.0 10.0 1606 ------- null} h -t 1.83458 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3203 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.83469 -s 0 -d 9 -p ack -e 40 -c 0 -i 3206 -a 0 -x {10.0 9.0 1598 ------- null} + -t 1.83469 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3217 -a 0 -x {9.0 10.0 1613 ------- null} - -t 1.83469 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3217 -a 0 -x {9.0 10.0 1613 ------- null} h -t 1.83469 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3217 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.8347 -s 0 -d 9 -p ack -e 40 -c 0 -i 3210 -a 0 -x {10.0 9.0 1600 ------- null} - -t 1.8347 -s 0 -d 9 -p ack -e 40 -c 0 -i 3210 -a 0 -x {10.0 9.0 1600 ------- null} h -t 1.8347 -s 0 -d 9 -p ack -e 40 -c 0 -i 3210 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.83506 -s 10 -d 7 -p ack -e 40 -c 0 -i 3214 -a 0 -x {10.0 9.0 1602 ------- null} + -t 1.83506 -s 7 -d 0 -p ack -e 40 -c 0 -i 3214 -a 0 -x {10.0 9.0 1602 ------- null} h -t 1.83506 -s 7 -d 8 -p ack -e 40 -c 0 -i 3214 -a 0 -x {10.0 9.0 1602 ------- null} r -t 1.8352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3199 -a 0 -x {9.0 10.0 1604 ------- null} + -t 1.8352 -s 10 -d 7 -p ack -e 40 -c 0 -i 3218 -a 0 -x {10.0 9.0 1604 ------- null} - -t 1.8352 -s 10 -d 7 -p ack -e 40 -c 0 -i 3218 -a 0 -x {10.0 9.0 1604 ------- null} h -t 1.8352 -s 10 -d 7 -p ack -e 40 -c 0 -i 3218 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.83523 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3213 -a 0 -x {9.0 10.0 1611 ------- null} + -t 1.83523 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3213 -a 0 -x {9.0 10.0 1611 ------- null} h -t 1.83523 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3213 -a 0 -x {9.0 10.0 1611 ------- null} + -t 1.83566 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3205 -a 0 -x {9.0 10.0 1607 ------- null} - -t 1.83566 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3205 -a 0 -x {9.0 10.0 1607 ------- null} h -t 1.83566 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3205 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.83573 -s 0 -d 9 -p ack -e 40 -c 0 -i 3208 -a 0 -x {10.0 9.0 1599 ------- null} + -t 1.83573 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3219 -a 0 -x {9.0 10.0 1614 ------- null} - -t 1.83573 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3219 -a 0 -x {9.0 10.0 1614 ------- null} h -t 1.83573 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3219 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.8359 -s 0 -d 9 -p ack -e 40 -c 0 -i 3212 -a 0 -x {10.0 9.0 1601 ------- null} - -t 1.8359 -s 0 -d 9 -p ack -e 40 -c 0 -i 3212 -a 0 -x {10.0 9.0 1601 ------- null} h -t 1.8359 -s 0 -d 9 -p ack -e 40 -c 0 -i 3212 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.83614 -s 10 -d 7 -p ack -e 40 -c 0 -i 3216 -a 0 -x {10.0 9.0 1603 ------- null} + -t 1.83614 -s 7 -d 0 -p ack -e 40 -c 0 -i 3216 -a 0 -x {10.0 9.0 1603 ------- null} h -t 1.83614 -s 7 -d 8 -p ack -e 40 -c 0 -i 3216 -a 0 -x {10.0 9.0 1603 ------- null} r -t 1.83624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3215 -a 0 -x {9.0 10.0 1612 ------- null} + -t 1.83624 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3215 -a 0 -x {9.0 10.0 1612 ------- null} h -t 1.83624 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3215 -a 0 -x {9.0 10.0 1612 ------- null} r -t 1.83629 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3201 -a 0 -x {9.0 10.0 1605 ------- null} + -t 1.83629 -s 10 -d 7 -p ack -e 40 -c 0 -i 3220 -a 0 -x {10.0 9.0 1605 ------- null} - -t 1.83629 -s 10 -d 7 -p ack -e 40 -c 0 -i 3220 -a 0 -x {10.0 9.0 1605 ------- null} h -t 1.83629 -s 10 -d 7 -p ack -e 40 -c 0 -i 3220 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.83674 -s 0 -d 9 -p ack -e 40 -c 0 -i 3210 -a 0 -x {10.0 9.0 1600 ------- null} + -t 1.83674 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3221 -a 0 -x {9.0 10.0 1615 ------- null} - -t 1.83674 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3221 -a 0 -x {9.0 10.0 1615 ------- null} h -t 1.83674 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3221 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.83675 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3207 -a 0 -x {9.0 10.0 1608 ------- null} - -t 1.83675 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3207 -a 0 -x {9.0 10.0 1608 ------- null} h -t 1.83675 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3207 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.83698 -s 0 -d 9 -p ack -e 40 -c 0 -i 3214 -a 0 -x {10.0 9.0 1602 ------- null} - -t 1.83698 -s 0 -d 9 -p ack -e 40 -c 0 -i 3214 -a 0 -x {10.0 9.0 1602 ------- null} h -t 1.83698 -s 0 -d 9 -p ack -e 40 -c 0 -i 3214 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.83723 -s 10 -d 7 -p ack -e 40 -c 0 -i 3218 -a 0 -x {10.0 9.0 1604 ------- null} + -t 1.83723 -s 7 -d 0 -p ack -e 40 -c 0 -i 3218 -a 0 -x {10.0 9.0 1604 ------- null} h -t 1.83723 -s 7 -d 8 -p ack -e 40 -c 0 -i 3218 -a 0 -x {10.0 9.0 1604 ------- null} r -t 1.83738 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3203 -a 0 -x {9.0 10.0 1606 ------- null} + -t 1.83738 -s 10 -d 7 -p ack -e 40 -c 0 -i 3222 -a 0 -x {10.0 9.0 1606 ------- null} - -t 1.83738 -s 10 -d 7 -p ack -e 40 -c 0 -i 3222 -a 0 -x {10.0 9.0 1606 ------- null} h -t 1.83738 -s 10 -d 7 -p ack -e 40 -c 0 -i 3222 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.83749 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3217 -a 0 -x {9.0 10.0 1613 ------- null} + -t 1.83749 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3217 -a 0 -x {9.0 10.0 1613 ------- null} h -t 1.83749 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3217 -a 0 -x {9.0 10.0 1613 ------- null} + -t 1.83784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3209 -a 0 -x {9.0 10.0 1609 ------- null} - -t 1.83784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3209 -a 0 -x {9.0 10.0 1609 ------- null} h -t 1.83784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3209 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.83794 -s 0 -d 9 -p ack -e 40 -c 0 -i 3212 -a 0 -x {10.0 9.0 1601 ------- null} + -t 1.83794 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3223 -a 0 -x {9.0 10.0 1616 ------- null} - -t 1.83794 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3223 -a 0 -x {9.0 10.0 1616 ------- null} h -t 1.83794 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3223 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.8381 -s 0 -d 9 -p ack -e 40 -c 0 -i 3216 -a 0 -x {10.0 9.0 1603 ------- null} - -t 1.8381 -s 0 -d 9 -p ack -e 40 -c 0 -i 3216 -a 0 -x {10.0 9.0 1603 ------- null} h -t 1.8381 -s 0 -d 9 -p ack -e 40 -c 0 -i 3216 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.83832 -s 10 -d 7 -p ack -e 40 -c 0 -i 3220 -a 0 -x {10.0 9.0 1605 ------- null} + -t 1.83832 -s 7 -d 0 -p ack -e 40 -c 0 -i 3220 -a 0 -x {10.0 9.0 1605 ------- null} h -t 1.83832 -s 7 -d 8 -p ack -e 40 -c 0 -i 3220 -a 0 -x {10.0 9.0 1605 ------- null} r -t 1.83846 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3205 -a 0 -x {9.0 10.0 1607 ------- null} + -t 1.83846 -s 10 -d 7 -p ack -e 40 -c 0 -i 3224 -a 0 -x {10.0 9.0 1607 ------- null} - -t 1.83846 -s 10 -d 7 -p ack -e 40 -c 0 -i 3224 -a 0 -x {10.0 9.0 1607 ------- null} h -t 1.83846 -s 10 -d 7 -p ack -e 40 -c 0 -i 3224 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.83853 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3219 -a 0 -x {9.0 10.0 1614 ------- null} + -t 1.83853 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3219 -a 0 -x {9.0 10.0 1614 ------- null} h -t 1.83853 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3219 -a 0 -x {9.0 10.0 1614 ------- null} + -t 1.83893 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3211 -a 0 -x {9.0 10.0 1610 ------- null} - -t 1.83893 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3211 -a 0 -x {9.0 10.0 1610 ------- null} h -t 1.83893 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3211 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.83901 -s 0 -d 9 -p ack -e 40 -c 0 -i 3214 -a 0 -x {10.0 9.0 1602 ------- null} + -t 1.83901 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3225 -a 0 -x {9.0 10.0 1617 ------- null} - -t 1.83901 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3225 -a 0 -x {9.0 10.0 1617 ------- null} h -t 1.83901 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3225 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.83906 -s 0 -d 9 -p ack -e 40 -c 0 -i 3218 -a 0 -x {10.0 9.0 1604 ------- null} - -t 1.83906 -s 0 -d 9 -p ack -e 40 -c 0 -i 3218 -a 0 -x {10.0 9.0 1604 ------- null} h -t 1.83906 -s 0 -d 9 -p ack -e 40 -c 0 -i 3218 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.83941 -s 10 -d 7 -p ack -e 40 -c 0 -i 3222 -a 0 -x {10.0 9.0 1606 ------- null} + -t 1.83941 -s 7 -d 0 -p ack -e 40 -c 0 -i 3222 -a 0 -x {10.0 9.0 1606 ------- null} h -t 1.83941 -s 7 -d 8 -p ack -e 40 -c 0 -i 3222 -a 0 -x {10.0 9.0 1606 ------- null} r -t 1.83954 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3221 -a 0 -x {9.0 10.0 1615 ------- null} + -t 1.83954 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3221 -a 0 -x {9.0 10.0 1615 ------- null} h -t 1.83954 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3221 -a 0 -x {9.0 10.0 1615 ------- null} r -t 1.83955 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3207 -a 0 -x {9.0 10.0 1608 ------- null} + -t 1.83955 -s 10 -d 7 -p ack -e 40 -c 0 -i 3226 -a 0 -x {10.0 9.0 1608 ------- null} - -t 1.83955 -s 10 -d 7 -p ack -e 40 -c 0 -i 3226 -a 0 -x {10.0 9.0 1608 ------- null} h -t 1.83955 -s 10 -d 7 -p ack -e 40 -c 0 -i 3226 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.84002 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3213 -a 0 -x {9.0 10.0 1611 ------- null} - -t 1.84002 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3213 -a 0 -x {9.0 10.0 1611 ------- null} h -t 1.84002 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3213 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.84013 -s 0 -d 9 -p ack -e 40 -c 0 -i 3216 -a 0 -x {10.0 9.0 1603 ------- null} + -t 1.84013 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3227 -a 0 -x {9.0 10.0 1618 ------- null} - -t 1.84013 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3227 -a 0 -x {9.0 10.0 1618 ------- null} h -t 1.84013 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3227 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.84032 -s 0 -d 9 -p ack -e 40 -c 0 -i 3220 -a 0 -x {10.0 9.0 1605 ------- null} - -t 1.84032 -s 0 -d 9 -p ack -e 40 -c 0 -i 3220 -a 0 -x {10.0 9.0 1605 ------- null} h -t 1.84032 -s 0 -d 9 -p ack -e 40 -c 0 -i 3220 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.8405 -s 10 -d 7 -p ack -e 40 -c 0 -i 3224 -a 0 -x {10.0 9.0 1607 ------- null} + -t 1.8405 -s 7 -d 0 -p ack -e 40 -c 0 -i 3224 -a 0 -x {10.0 9.0 1607 ------- null} h -t 1.8405 -s 7 -d 8 -p ack -e 40 -c 0 -i 3224 -a 0 -x {10.0 9.0 1607 ------- null} r -t 1.84064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3209 -a 0 -x {9.0 10.0 1609 ------- null} + -t 1.84064 -s 10 -d 7 -p ack -e 40 -c 0 -i 3228 -a 0 -x {10.0 9.0 1609 ------- null} - -t 1.84064 -s 10 -d 7 -p ack -e 40 -c 0 -i 3228 -a 0 -x {10.0 9.0 1609 ------- null} h -t 1.84064 -s 10 -d 7 -p ack -e 40 -c 0 -i 3228 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.84074 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3223 -a 0 -x {9.0 10.0 1616 ------- null} + -t 1.84074 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3223 -a 0 -x {9.0 10.0 1616 ------- null} h -t 1.84074 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3223 -a 0 -x {9.0 10.0 1616 ------- null} r -t 1.84109 -s 0 -d 9 -p ack -e 40 -c 0 -i 3218 -a 0 -x {10.0 9.0 1604 ------- null} + -t 1.84109 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3229 -a 0 -x {9.0 10.0 1619 ------- null} - -t 1.84109 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3229 -a 0 -x {9.0 10.0 1619 ------- null} h -t 1.84109 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3229 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.8412 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3215 -a 0 -x {9.0 10.0 1612 ------- null} - -t 1.8412 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3215 -a 0 -x {9.0 10.0 1612 ------- null} h -t 1.8412 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3215 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.84147 -s 0 -d 9 -p ack -e 40 -c 0 -i 3222 -a 0 -x {10.0 9.0 1606 ------- null} - -t 1.84147 -s 0 -d 9 -p ack -e 40 -c 0 -i 3222 -a 0 -x {10.0 9.0 1606 ------- null} h -t 1.84147 -s 0 -d 9 -p ack -e 40 -c 0 -i 3222 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.84158 -s 10 -d 7 -p ack -e 40 -c 0 -i 3226 -a 0 -x {10.0 9.0 1608 ------- null} + -t 1.84158 -s 7 -d 0 -p ack -e 40 -c 0 -i 3226 -a 0 -x {10.0 9.0 1608 ------- null} h -t 1.84158 -s 7 -d 8 -p ack -e 40 -c 0 -i 3226 -a 0 -x {10.0 9.0 1608 ------- null} r -t 1.84173 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3211 -a 0 -x {9.0 10.0 1610 ------- null} + -t 1.84173 -s 10 -d 7 -p ack -e 40 -c 0 -i 3230 -a 0 -x {10.0 9.0 1610 ------- null} - -t 1.84173 -s 10 -d 7 -p ack -e 40 -c 0 -i 3230 -a 0 -x {10.0 9.0 1610 ------- null} h -t 1.84173 -s 10 -d 7 -p ack -e 40 -c 0 -i 3230 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.84181 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3225 -a 0 -x {9.0 10.0 1617 ------- null} + -t 1.84181 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3225 -a 0 -x {9.0 10.0 1617 ------- null} h -t 1.84181 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3225 -a 0 -x {9.0 10.0 1617 ------- null} r -t 1.84235 -s 0 -d 9 -p ack -e 40 -c 0 -i 3220 -a 0 -x {10.0 9.0 1605 ------- null} + -t 1.84235 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3231 -a 0 -x {9.0 10.0 1620 ------- null} - -t 1.84235 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3231 -a 0 -x {9.0 10.0 1620 ------- null} h -t 1.84235 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3231 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.84253 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3217 -a 0 -x {9.0 10.0 1613 ------- null} - -t 1.84253 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3217 -a 0 -x {9.0 10.0 1613 ------- null} h -t 1.84253 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3217 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.84267 -s 10 -d 7 -p ack -e 40 -c 0 -i 3228 -a 0 -x {10.0 9.0 1609 ------- null} + -t 1.84267 -s 7 -d 0 -p ack -e 40 -c 0 -i 3228 -a 0 -x {10.0 9.0 1609 ------- null} h -t 1.84267 -s 7 -d 8 -p ack -e 40 -c 0 -i 3228 -a 0 -x {10.0 9.0 1609 ------- null} + -t 1.84275 -s 0 -d 9 -p ack -e 40 -c 0 -i 3224 -a 0 -x {10.0 9.0 1607 ------- null} - -t 1.84275 -s 0 -d 9 -p ack -e 40 -c 0 -i 3224 -a 0 -x {10.0 9.0 1607 ------- null} h -t 1.84275 -s 0 -d 9 -p ack -e 40 -c 0 -i 3224 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.84282 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3213 -a 0 -x {9.0 10.0 1611 ------- null} + -t 1.84282 -s 10 -d 7 -p ack -e 40 -c 0 -i 3232 -a 0 -x {10.0 9.0 1611 ------- null} - -t 1.84282 -s 10 -d 7 -p ack -e 40 -c 0 -i 3232 -a 0 -x {10.0 9.0 1611 ------- null} h -t 1.84282 -s 10 -d 7 -p ack -e 40 -c 0 -i 3232 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.84293 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3227 -a 0 -x {9.0 10.0 1618 ------- null} + -t 1.84293 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3227 -a 0 -x {9.0 10.0 1618 ------- null} h -t 1.84293 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3227 -a 0 -x {9.0 10.0 1618 ------- null} r -t 1.8435 -s 0 -d 9 -p ack -e 40 -c 0 -i 3222 -a 0 -x {10.0 9.0 1606 ------- null} + -t 1.8435 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3233 -a 0 -x {9.0 10.0 1621 ------- null} - -t 1.8435 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3233 -a 0 -x {9.0 10.0 1621 ------- null} h -t 1.8435 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3233 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.84362 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3219 -a 0 -x {9.0 10.0 1614 ------- null} - -t 1.84362 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3219 -a 0 -x {9.0 10.0 1614 ------- null} h -t 1.84362 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3219 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.84376 -s 10 -d 7 -p ack -e 40 -c 0 -i 3230 -a 0 -x {10.0 9.0 1610 ------- null} + -t 1.84376 -s 7 -d 0 -p ack -e 40 -c 0 -i 3230 -a 0 -x {10.0 9.0 1610 ------- null} h -t 1.84376 -s 7 -d 8 -p ack -e 40 -c 0 -i 3230 -a 0 -x {10.0 9.0 1610 ------- null} r -t 1.84389 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3229 -a 0 -x {9.0 10.0 1619 ------- null} + -t 1.84389 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3229 -a 0 -x {9.0 10.0 1619 ------- null} h -t 1.84389 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3229 -a 0 -x {9.0 10.0 1619 ------- null} + -t 1.8439 -s 0 -d 9 -p ack -e 40 -c 0 -i 3226 -a 0 -x {10.0 9.0 1608 ------- null} - -t 1.8439 -s 0 -d 9 -p ack -e 40 -c 0 -i 3226 -a 0 -x {10.0 9.0 1608 ------- null} h -t 1.8439 -s 0 -d 9 -p ack -e 40 -c 0 -i 3226 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.844 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3215 -a 0 -x {9.0 10.0 1612 ------- null} + -t 1.844 -s 10 -d 7 -p ack -e 40 -c 0 -i 3234 -a 0 -x {10.0 9.0 1612 ------- null} - -t 1.844 -s 10 -d 7 -p ack -e 40 -c 0 -i 3234 -a 0 -x {10.0 9.0 1612 ------- null} h -t 1.844 -s 10 -d 7 -p ack -e 40 -c 0 -i 3234 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.84478 -s 0 -d 9 -p ack -e 40 -c 0 -i 3224 -a 0 -x {10.0 9.0 1607 ------- null} + -t 1.84478 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3235 -a 0 -x {9.0 10.0 1622 ------- null} - -t 1.84478 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3235 -a 0 -x {9.0 10.0 1622 ------- null} h -t 1.84478 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3235 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.84485 -s 10 -d 7 -p ack -e 40 -c 0 -i 3232 -a 0 -x {10.0 9.0 1611 ------- null} + -t 1.84485 -s 7 -d 0 -p ack -e 40 -c 0 -i 3232 -a 0 -x {10.0 9.0 1611 ------- null} h -t 1.84485 -s 7 -d 8 -p ack -e 40 -c 0 -i 3232 -a 0 -x {10.0 9.0 1611 ------- null} + -t 1.84498 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3221 -a 0 -x {9.0 10.0 1615 ------- null} - -t 1.84498 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3221 -a 0 -x {9.0 10.0 1615 ------- null} h -t 1.84498 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3221 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.84515 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3231 -a 0 -x {9.0 10.0 1620 ------- null} + -t 1.84515 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3231 -a 0 -x {9.0 10.0 1620 ------- null} h -t 1.84515 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3231 -a 0 -x {9.0 10.0 1620 ------- null} + -t 1.8452 -s 0 -d 9 -p ack -e 40 -c 0 -i 3228 -a 0 -x {10.0 9.0 1609 ------- null} - -t 1.8452 -s 0 -d 9 -p ack -e 40 -c 0 -i 3228 -a 0 -x {10.0 9.0 1609 ------- null} h -t 1.8452 -s 0 -d 9 -p ack -e 40 -c 0 -i 3228 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.84533 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3217 -a 0 -x {9.0 10.0 1613 ------- null} + -t 1.84533 -s 10 -d 7 -p ack -e 40 -c 0 -i 3236 -a 0 -x {10.0 9.0 1613 ------- null} - -t 1.84533 -s 10 -d 7 -p ack -e 40 -c 0 -i 3236 -a 0 -x {10.0 9.0 1613 ------- null} h -t 1.84533 -s 10 -d 7 -p ack -e 40 -c 0 -i 3236 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.84594 -s 0 -d 9 -p ack -e 40 -c 0 -i 3226 -a 0 -x {10.0 9.0 1608 ------- null} + -t 1.84594 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3237 -a 0 -x {9.0 10.0 1623 ------- null} - -t 1.84594 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3237 -a 0 -x {9.0 10.0 1623 ------- null} h -t 1.84594 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3237 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.84603 -s 10 -d 7 -p ack -e 40 -c 0 -i 3234 -a 0 -x {10.0 9.0 1612 ------- null} + -t 1.84603 -s 7 -d 0 -p ack -e 40 -c 0 -i 3234 -a 0 -x {10.0 9.0 1612 ------- null} h -t 1.84603 -s 7 -d 8 -p ack -e 40 -c 0 -i 3234 -a 0 -x {10.0 9.0 1612 ------- null} + -t 1.84606 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3223 -a 0 -x {9.0 10.0 1616 ------- null} - -t 1.84606 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3223 -a 0 -x {9.0 10.0 1616 ------- null} h -t 1.84606 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3223 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.8463 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3233 -a 0 -x {9.0 10.0 1621 ------- null} + -t 1.8463 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3233 -a 0 -x {9.0 10.0 1621 ------- null} h -t 1.8463 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3233 -a 0 -x {9.0 10.0 1621 ------- null} + -t 1.8463 -s 0 -d 9 -p ack -e 40 -c 0 -i 3230 -a 0 -x {10.0 9.0 1610 ------- null} - -t 1.8463 -s 0 -d 9 -p ack -e 40 -c 0 -i 3230 -a 0 -x {10.0 9.0 1610 ------- null} h -t 1.8463 -s 0 -d 9 -p ack -e 40 -c 0 -i 3230 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.84642 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3219 -a 0 -x {9.0 10.0 1614 ------- null} + -t 1.84642 -s 10 -d 7 -p ack -e 40 -c 0 -i 3238 -a 0 -x {10.0 9.0 1614 ------- null} - -t 1.84642 -s 10 -d 7 -p ack -e 40 -c 0 -i 3238 -a 0 -x {10.0 9.0 1614 ------- null} h -t 1.84642 -s 10 -d 7 -p ack -e 40 -c 0 -i 3238 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.84715 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3225 -a 0 -x {9.0 10.0 1617 ------- null} - -t 1.84715 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3225 -a 0 -x {9.0 10.0 1617 ------- null} h -t 1.84715 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3225 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.84723 -s 0 -d 9 -p ack -e 40 -c 0 -i 3228 -a 0 -x {10.0 9.0 1609 ------- null} + -t 1.84723 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3239 -a 0 -x {9.0 10.0 1624 ------- null} - -t 1.84723 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3239 -a 0 -x {9.0 10.0 1624 ------- null} h -t 1.84723 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3239 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.84728 -s 0 -d 9 -p ack -e 40 -c 0 -i 3232 -a 0 -x {10.0 9.0 1611 ------- null} - -t 1.84728 -s 0 -d 9 -p ack -e 40 -c 0 -i 3232 -a 0 -x {10.0 9.0 1611 ------- null} h -t 1.84728 -s 0 -d 9 -p ack -e 40 -c 0 -i 3232 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.84736 -s 10 -d 7 -p ack -e 40 -c 0 -i 3236 -a 0 -x {10.0 9.0 1613 ------- null} + -t 1.84736 -s 7 -d 0 -p ack -e 40 -c 0 -i 3236 -a 0 -x {10.0 9.0 1613 ------- null} h -t 1.84736 -s 7 -d 8 -p ack -e 40 -c 0 -i 3236 -a 0 -x {10.0 9.0 1613 ------- null} r -t 1.84758 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3235 -a 0 -x {9.0 10.0 1622 ------- null} + -t 1.84758 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3235 -a 0 -x {9.0 10.0 1622 ------- null} h -t 1.84758 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3235 -a 0 -x {9.0 10.0 1622 ------- null} r -t 1.84778 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3221 -a 0 -x {9.0 10.0 1615 ------- null} + -t 1.84778 -s 10 -d 7 -p ack -e 40 -c 0 -i 3240 -a 0 -x {10.0 9.0 1615 ------- null} - -t 1.84778 -s 10 -d 7 -p ack -e 40 -c 0 -i 3240 -a 0 -x {10.0 9.0 1615 ------- null} h -t 1.84778 -s 10 -d 7 -p ack -e 40 -c 0 -i 3240 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.84824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3227 -a 0 -x {9.0 10.0 1618 ------- null} - -t 1.84824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3227 -a 0 -x {9.0 10.0 1618 ------- null} h -t 1.84824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3227 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.84834 -s 0 -d 9 -p ack -e 40 -c 0 -i 3230 -a 0 -x {10.0 9.0 1610 ------- null} + -t 1.84834 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3241 -a 0 -x {9.0 10.0 1625 ------- null} - -t 1.84834 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3241 -a 0 -x {9.0 10.0 1625 ------- null} h -t 1.84834 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3241 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.84835 -s 0 -d 9 -p ack -e 40 -c 0 -i 3234 -a 0 -x {10.0 9.0 1612 ------- null} - -t 1.84835 -s 0 -d 9 -p ack -e 40 -c 0 -i 3234 -a 0 -x {10.0 9.0 1612 ------- null} h -t 1.84835 -s 0 -d 9 -p ack -e 40 -c 0 -i 3234 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.84845 -s 10 -d 7 -p ack -e 40 -c 0 -i 3238 -a 0 -x {10.0 9.0 1614 ------- null} + -t 1.84845 -s 7 -d 0 -p ack -e 40 -c 0 -i 3238 -a 0 -x {10.0 9.0 1614 ------- null} h -t 1.84845 -s 7 -d 8 -p ack -e 40 -c 0 -i 3238 -a 0 -x {10.0 9.0 1614 ------- null} r -t 1.84874 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3237 -a 0 -x {9.0 10.0 1623 ------- null} + -t 1.84874 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3237 -a 0 -x {9.0 10.0 1623 ------- null} h -t 1.84874 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3237 -a 0 -x {9.0 10.0 1623 ------- null} r -t 1.84886 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3223 -a 0 -x {9.0 10.0 1616 ------- null} + -t 1.84886 -s 10 -d 7 -p ack -e 40 -c 0 -i 3242 -a 0 -x {10.0 9.0 1616 ------- null} - -t 1.84886 -s 10 -d 7 -p ack -e 40 -c 0 -i 3242 -a 0 -x {10.0 9.0 1616 ------- null} h -t 1.84886 -s 10 -d 7 -p ack -e 40 -c 0 -i 3242 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.84931 -s 0 -d 9 -p ack -e 40 -c 0 -i 3232 -a 0 -x {10.0 9.0 1611 ------- null} + -t 1.84931 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3243 -a 0 -x {9.0 10.0 1626 ------- null} - -t 1.84931 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3243 -a 0 -x {9.0 10.0 1626 ------- null} h -t 1.84931 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3243 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.84933 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3229 -a 0 -x {9.0 10.0 1619 ------- null} - -t 1.84933 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3229 -a 0 -x {9.0 10.0 1619 ------- null} h -t 1.84933 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3229 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.84952 -s 0 -d 9 -p ack -e 40 -c 0 -i 3236 -a 0 -x {10.0 9.0 1613 ------- null} - -t 1.84952 -s 0 -d 9 -p ack -e 40 -c 0 -i 3236 -a 0 -x {10.0 9.0 1613 ------- null} h -t 1.84952 -s 0 -d 9 -p ack -e 40 -c 0 -i 3236 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.84981 -s 10 -d 7 -p ack -e 40 -c 0 -i 3240 -a 0 -x {10.0 9.0 1615 ------- null} + -t 1.84981 -s 7 -d 0 -p ack -e 40 -c 0 -i 3240 -a 0 -x {10.0 9.0 1615 ------- null} h -t 1.84981 -s 7 -d 8 -p ack -e 40 -c 0 -i 3240 -a 0 -x {10.0 9.0 1615 ------- null} r -t 1.84995 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3225 -a 0 -x {9.0 10.0 1617 ------- null} + -t 1.84995 -s 10 -d 7 -p ack -e 40 -c 0 -i 3244 -a 0 -x {10.0 9.0 1617 ------- null} - -t 1.84995 -s 10 -d 7 -p ack -e 40 -c 0 -i 3244 -a 0 -x {10.0 9.0 1617 ------- null} h -t 1.84995 -s 10 -d 7 -p ack -e 40 -c 0 -i 3244 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.85003 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3239 -a 0 -x {9.0 10.0 1624 ------- null} + -t 1.85003 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3239 -a 0 -x {9.0 10.0 1624 ------- null} h -t 1.85003 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3239 -a 0 -x {9.0 10.0 1624 ------- null} r -t 1.85038 -s 0 -d 9 -p ack -e 40 -c 0 -i 3234 -a 0 -x {10.0 9.0 1612 ------- null} + -t 1.85038 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3245 -a 0 -x {9.0 10.0 1627 ------- null} - -t 1.85038 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3245 -a 0 -x {9.0 10.0 1627 ------- null} h -t 1.85038 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3245 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.85042 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3231 -a 0 -x {9.0 10.0 1620 ------- null} - -t 1.85042 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3231 -a 0 -x {9.0 10.0 1620 ------- null} h -t 1.85042 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3231 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.85051 -s 0 -d 9 -p ack -e 40 -c 0 -i 3238 -a 0 -x {10.0 9.0 1614 ------- null} - -t 1.85051 -s 0 -d 9 -p ack -e 40 -c 0 -i 3238 -a 0 -x {10.0 9.0 1614 ------- null} h -t 1.85051 -s 0 -d 9 -p ack -e 40 -c 0 -i 3238 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.8509 -s 10 -d 7 -p ack -e 40 -c 0 -i 3242 -a 0 -x {10.0 9.0 1616 ------- null} + -t 1.8509 -s 7 -d 0 -p ack -e 40 -c 0 -i 3242 -a 0 -x {10.0 9.0 1616 ------- null} h -t 1.8509 -s 7 -d 8 -p ack -e 40 -c 0 -i 3242 -a 0 -x {10.0 9.0 1616 ------- null} r -t 1.85104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3227 -a 0 -x {9.0 10.0 1618 ------- null} + -t 1.85104 -s 10 -d 7 -p ack -e 40 -c 0 -i 3246 -a 0 -x {10.0 9.0 1618 ------- null} - -t 1.85104 -s 10 -d 7 -p ack -e 40 -c 0 -i 3246 -a 0 -x {10.0 9.0 1618 ------- null} h -t 1.85104 -s 10 -d 7 -p ack -e 40 -c 0 -i 3246 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.85114 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3241 -a 0 -x {9.0 10.0 1625 ------- null} + -t 1.85114 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3241 -a 0 -x {9.0 10.0 1625 ------- null} h -t 1.85114 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3241 -a 0 -x {9.0 10.0 1625 ------- null} + -t 1.8515 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3233 -a 0 -x {9.0 10.0 1621 ------- null} - -t 1.8515 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3233 -a 0 -x {9.0 10.0 1621 ------- null} h -t 1.8515 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3233 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.85155 -s 0 -d 9 -p ack -e 40 -c 0 -i 3236 -a 0 -x {10.0 9.0 1613 ------- null} + -t 1.85155 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3247 -a 0 -x {9.0 10.0 1628 ------- null} - -t 1.85155 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3247 -a 0 -x {9.0 10.0 1628 ------- null} h -t 1.85155 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3247 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.85163 -s 0 -d 9 -p ack -e 40 -c 0 -i 3240 -a 0 -x {10.0 9.0 1615 ------- null} - -t 1.85163 -s 0 -d 9 -p ack -e 40 -c 0 -i 3240 -a 0 -x {10.0 9.0 1615 ------- null} h -t 1.85163 -s 0 -d 9 -p ack -e 40 -c 0 -i 3240 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.85198 -s 10 -d 7 -p ack -e 40 -c 0 -i 3244 -a 0 -x {10.0 9.0 1617 ------- null} + -t 1.85198 -s 7 -d 0 -p ack -e 40 -c 0 -i 3244 -a 0 -x {10.0 9.0 1617 ------- null} h -t 1.85198 -s 7 -d 8 -p ack -e 40 -c 0 -i 3244 -a 0 -x {10.0 9.0 1617 ------- null} r -t 1.85211 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3243 -a 0 -x {9.0 10.0 1626 ------- null} + -t 1.85211 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3243 -a 0 -x {9.0 10.0 1626 ------- null} h -t 1.85211 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3243 -a 0 -x {9.0 10.0 1626 ------- null} r -t 1.85213 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3229 -a 0 -x {9.0 10.0 1619 ------- null} + -t 1.85213 -s 10 -d 7 -p ack -e 40 -c 0 -i 3248 -a 0 -x {10.0 9.0 1619 ------- null} - -t 1.85213 -s 10 -d 7 -p ack -e 40 -c 0 -i 3248 -a 0 -x {10.0 9.0 1619 ------- null} h -t 1.85213 -s 10 -d 7 -p ack -e 40 -c 0 -i 3248 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.85254 -s 0 -d 9 -p ack -e 40 -c 0 -i 3238 -a 0 -x {10.0 9.0 1614 ------- null} + -t 1.85254 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3249 -a 0 -x {9.0 10.0 1629 ------- null} - -t 1.85254 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3249 -a 0 -x {9.0 10.0 1629 ------- null} h -t 1.85254 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3249 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.85259 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3235 -a 0 -x {9.0 10.0 1622 ------- null} - -t 1.85259 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3235 -a 0 -x {9.0 10.0 1622 ------- null} h -t 1.85259 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3235 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.85267 -s 0 -d 9 -p ack -e 40 -c 0 -i 3242 -a 0 -x {10.0 9.0 1616 ------- null} - -t 1.85267 -s 0 -d 9 -p ack -e 40 -c 0 -i 3242 -a 0 -x {10.0 9.0 1616 ------- null} h -t 1.85267 -s 0 -d 9 -p ack -e 40 -c 0 -i 3242 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.85307 -s 10 -d 7 -p ack -e 40 -c 0 -i 3246 -a 0 -x {10.0 9.0 1618 ------- null} + -t 1.85307 -s 7 -d 0 -p ack -e 40 -c 0 -i 3246 -a 0 -x {10.0 9.0 1618 ------- null} h -t 1.85307 -s 7 -d 8 -p ack -e 40 -c 0 -i 3246 -a 0 -x {10.0 9.0 1618 ------- null} r -t 1.85318 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3245 -a 0 -x {9.0 10.0 1627 ------- null} + -t 1.85318 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3245 -a 0 -x {9.0 10.0 1627 ------- null} h -t 1.85318 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3245 -a 0 -x {9.0 10.0 1627 ------- null} r -t 1.85322 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3231 -a 0 -x {9.0 10.0 1620 ------- null} + -t 1.85322 -s 10 -d 7 -p ack -e 40 -c 0 -i 3250 -a 0 -x {10.0 9.0 1620 ------- null} - -t 1.85322 -s 10 -d 7 -p ack -e 40 -c 0 -i 3250 -a 0 -x {10.0 9.0 1620 ------- null} h -t 1.85322 -s 10 -d 7 -p ack -e 40 -c 0 -i 3250 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.85366 -s 0 -d 9 -p ack -e 40 -c 0 -i 3240 -a 0 -x {10.0 9.0 1615 ------- null} + -t 1.85366 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3251 -a 0 -x {9.0 10.0 1630 ------- null} - -t 1.85366 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3251 -a 0 -x {9.0 10.0 1630 ------- null} h -t 1.85366 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3251 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.85368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3237 -a 0 -x {9.0 10.0 1623 ------- null} - -t 1.85368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3237 -a 0 -x {9.0 10.0 1623 ------- null} h -t 1.85368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3237 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.85384 -s 0 -d 9 -p ack -e 40 -c 0 -i 3244 -a 0 -x {10.0 9.0 1617 ------- null} - -t 1.85384 -s 0 -d 9 -p ack -e 40 -c 0 -i 3244 -a 0 -x {10.0 9.0 1617 ------- null} h -t 1.85384 -s 0 -d 9 -p ack -e 40 -c 0 -i 3244 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.85416 -s 10 -d 7 -p ack -e 40 -c 0 -i 3248 -a 0 -x {10.0 9.0 1619 ------- null} + -t 1.85416 -s 7 -d 0 -p ack -e 40 -c 0 -i 3248 -a 0 -x {10.0 9.0 1619 ------- null} h -t 1.85416 -s 7 -d 8 -p ack -e 40 -c 0 -i 3248 -a 0 -x {10.0 9.0 1619 ------- null} r -t 1.8543 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3233 -a 0 -x {9.0 10.0 1621 ------- null} + -t 1.8543 -s 10 -d 7 -p ack -e 40 -c 0 -i 3252 -a 0 -x {10.0 9.0 1621 ------- null} - -t 1.8543 -s 10 -d 7 -p ack -e 40 -c 0 -i 3252 -a 0 -x {10.0 9.0 1621 ------- null} h -t 1.8543 -s 10 -d 7 -p ack -e 40 -c 0 -i 3252 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.85435 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3247 -a 0 -x {9.0 10.0 1628 ------- null} + -t 1.85435 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3247 -a 0 -x {9.0 10.0 1628 ------- null} h -t 1.85435 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3247 -a 0 -x {9.0 10.0 1628 ------- null} r -t 1.8547 -s 0 -d 9 -p ack -e 40 -c 0 -i 3242 -a 0 -x {10.0 9.0 1616 ------- null} + -t 1.8547 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3253 -a 0 -x {9.0 10.0 1631 ------- null} - -t 1.8547 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3253 -a 0 -x {9.0 10.0 1631 ------- null} h -t 1.8547 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3253 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.85477 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3239 -a 0 -x {9.0 10.0 1624 ------- null} - -t 1.85477 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3239 -a 0 -x {9.0 10.0 1624 ------- null} h -t 1.85477 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3239 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.85499 -s 0 -d 9 -p ack -e 40 -c 0 -i 3246 -a 0 -x {10.0 9.0 1618 ------- null} - -t 1.85499 -s 0 -d 9 -p ack -e 40 -c 0 -i 3246 -a 0 -x {10.0 9.0 1618 ------- null} h -t 1.85499 -s 0 -d 9 -p ack -e 40 -c 0 -i 3246 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.85525 -s 10 -d 7 -p ack -e 40 -c 0 -i 3250 -a 0 -x {10.0 9.0 1620 ------- null} + -t 1.85525 -s 7 -d 0 -p ack -e 40 -c 0 -i 3250 -a 0 -x {10.0 9.0 1620 ------- null} h -t 1.85525 -s 7 -d 8 -p ack -e 40 -c 0 -i 3250 -a 0 -x {10.0 9.0 1620 ------- null} r -t 1.85534 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3249 -a 0 -x {9.0 10.0 1629 ------- null} + -t 1.85534 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3249 -a 0 -x {9.0 10.0 1629 ------- null} h -t 1.85534 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3249 -a 0 -x {9.0 10.0 1629 ------- null} r -t 1.85539 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3235 -a 0 -x {9.0 10.0 1622 ------- null} + -t 1.85539 -s 10 -d 7 -p ack -e 40 -c 0 -i 3254 -a 0 -x {10.0 9.0 1622 ------- null} - -t 1.85539 -s 10 -d 7 -p ack -e 40 -c 0 -i 3254 -a 0 -x {10.0 9.0 1622 ------- null} h -t 1.85539 -s 10 -d 7 -p ack -e 40 -c 0 -i 3254 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.85586 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3241 -a 0 -x {9.0 10.0 1625 ------- null} - -t 1.85586 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3241 -a 0 -x {9.0 10.0 1625 ------- null} h -t 1.85586 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3241 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.85587 -s 0 -d 9 -p ack -e 40 -c 0 -i 3244 -a 0 -x {10.0 9.0 1617 ------- null} + -t 1.85587 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3255 -a 0 -x {9.0 10.0 1632 ------- null} - -t 1.85587 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3255 -a 0 -x {9.0 10.0 1632 ------- null} h -t 1.85587 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3255 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.85602 -s 0 -d 9 -p ack -e 40 -c 0 -i 3248 -a 0 -x {10.0 9.0 1619 ------- null} - -t 1.85602 -s 0 -d 9 -p ack -e 40 -c 0 -i 3248 -a 0 -x {10.0 9.0 1619 ------- null} h -t 1.85602 -s 0 -d 9 -p ack -e 40 -c 0 -i 3248 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.85634 -s 10 -d 7 -p ack -e 40 -c 0 -i 3252 -a 0 -x {10.0 9.0 1621 ------- null} + -t 1.85634 -s 7 -d 0 -p ack -e 40 -c 0 -i 3252 -a 0 -x {10.0 9.0 1621 ------- null} h -t 1.85634 -s 7 -d 8 -p ack -e 40 -c 0 -i 3252 -a 0 -x {10.0 9.0 1621 ------- null} r -t 1.85646 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3251 -a 0 -x {9.0 10.0 1630 ------- null} + -t 1.85646 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3251 -a 0 -x {9.0 10.0 1630 ------- null} h -t 1.85646 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3251 -a 0 -x {9.0 10.0 1630 ------- null} r -t 1.85648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3237 -a 0 -x {9.0 10.0 1623 ------- null} + -t 1.85648 -s 10 -d 7 -p ack -e 40 -c 0 -i 3256 -a 0 -x {10.0 9.0 1623 ------- null} - -t 1.85648 -s 10 -d 7 -p ack -e 40 -c 0 -i 3256 -a 0 -x {10.0 9.0 1623 ------- null} h -t 1.85648 -s 10 -d 7 -p ack -e 40 -c 0 -i 3256 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.85694 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3243 -a 0 -x {9.0 10.0 1626 ------- null} - -t 1.85694 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3243 -a 0 -x {9.0 10.0 1626 ------- null} h -t 1.85694 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3243 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.85702 -s 0 -d 9 -p ack -e 40 -c 0 -i 3246 -a 0 -x {10.0 9.0 1618 ------- null} + -t 1.85702 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3257 -a 0 -x {9.0 10.0 1633 ------- null} - -t 1.85702 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3257 -a 0 -x {9.0 10.0 1633 ------- null} h -t 1.85702 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3257 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.85722 -s 0 -d 9 -p ack -e 40 -c 0 -i 3250 -a 0 -x {10.0 9.0 1620 ------- null} - -t 1.85722 -s 0 -d 9 -p ack -e 40 -c 0 -i 3250 -a 0 -x {10.0 9.0 1620 ------- null} h -t 1.85722 -s 0 -d 9 -p ack -e 40 -c 0 -i 3250 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.85742 -s 10 -d 7 -p ack -e 40 -c 0 -i 3254 -a 0 -x {10.0 9.0 1622 ------- null} + -t 1.85742 -s 7 -d 0 -p ack -e 40 -c 0 -i 3254 -a 0 -x {10.0 9.0 1622 ------- null} h -t 1.85742 -s 7 -d 8 -p ack -e 40 -c 0 -i 3254 -a 0 -x {10.0 9.0 1622 ------- null} r -t 1.8575 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3253 -a 0 -x {9.0 10.0 1631 ------- null} + -t 1.8575 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3253 -a 0 -x {9.0 10.0 1631 ------- null} h -t 1.8575 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3253 -a 0 -x {9.0 10.0 1631 ------- null} r -t 1.85757 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3239 -a 0 -x {9.0 10.0 1624 ------- null} + -t 1.85757 -s 10 -d 7 -p ack -e 40 -c 0 -i 3258 -a 0 -x {10.0 9.0 1624 ------- null} - -t 1.85757 -s 10 -d 7 -p ack -e 40 -c 0 -i 3258 -a 0 -x {10.0 9.0 1624 ------- null} h -t 1.85757 -s 10 -d 7 -p ack -e 40 -c 0 -i 3258 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.85805 -s 0 -d 9 -p ack -e 40 -c 0 -i 3248 -a 0 -x {10.0 9.0 1619 ------- null} + -t 1.85805 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3259 -a 0 -x {9.0 10.0 1634 ------- null} - -t 1.85805 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3259 -a 0 -x {9.0 10.0 1634 ------- null} h -t 1.85805 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3259 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.85813 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3245 -a 0 -x {9.0 10.0 1627 ------- null} - -t 1.85813 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3245 -a 0 -x {9.0 10.0 1627 ------- null} h -t 1.85813 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3245 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.85819 -s 0 -d 9 -p ack -e 40 -c 0 -i 3252 -a 0 -x {10.0 9.0 1621 ------- null} - -t 1.85819 -s 0 -d 9 -p ack -e 40 -c 0 -i 3252 -a 0 -x {10.0 9.0 1621 ------- null} h -t 1.85819 -s 0 -d 9 -p ack -e 40 -c 0 -i 3252 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.85851 -s 10 -d 7 -p ack -e 40 -c 0 -i 3256 -a 0 -x {10.0 9.0 1623 ------- null} + -t 1.85851 -s 7 -d 0 -p ack -e 40 -c 0 -i 3256 -a 0 -x {10.0 9.0 1623 ------- null} h -t 1.85851 -s 7 -d 8 -p ack -e 40 -c 0 -i 3256 -a 0 -x {10.0 9.0 1623 ------- null} r -t 1.85866 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3241 -a 0 -x {9.0 10.0 1625 ------- null} + -t 1.85866 -s 10 -d 7 -p ack -e 40 -c 0 -i 3260 -a 0 -x {10.0 9.0 1625 ------- null} - -t 1.85866 -s 10 -d 7 -p ack -e 40 -c 0 -i 3260 -a 0 -x {10.0 9.0 1625 ------- null} h -t 1.85866 -s 10 -d 7 -p ack -e 40 -c 0 -i 3260 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.85867 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3255 -a 0 -x {9.0 10.0 1632 ------- null} + -t 1.85867 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3255 -a 0 -x {9.0 10.0 1632 ------- null} h -t 1.85867 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3255 -a 0 -x {9.0 10.0 1632 ------- null} + -t 1.85922 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3247 -a 0 -x {9.0 10.0 1628 ------- null} - -t 1.85922 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3247 -a 0 -x {9.0 10.0 1628 ------- null} h -t 1.85922 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3247 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.85925 -s 0 -d 9 -p ack -e 40 -c 0 -i 3250 -a 0 -x {10.0 9.0 1620 ------- null} + -t 1.85925 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3261 -a 0 -x {9.0 10.0 1635 ------- null} - -t 1.85925 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3261 -a 0 -x {9.0 10.0 1635 ------- null} h -t 1.85925 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3261 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.85928 -s 0 -d 9 -p ack -e 40 -c 0 -i 3254 -a 0 -x {10.0 9.0 1622 ------- null} - -t 1.85928 -s 0 -d 9 -p ack -e 40 -c 0 -i 3254 -a 0 -x {10.0 9.0 1622 ------- null} h -t 1.85928 -s 0 -d 9 -p ack -e 40 -c 0 -i 3254 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.8596 -s 10 -d 7 -p ack -e 40 -c 0 -i 3258 -a 0 -x {10.0 9.0 1624 ------- null} + -t 1.8596 -s 7 -d 0 -p ack -e 40 -c 0 -i 3258 -a 0 -x {10.0 9.0 1624 ------- null} h -t 1.8596 -s 7 -d 8 -p ack -e 40 -c 0 -i 3258 -a 0 -x {10.0 9.0 1624 ------- null} r -t 1.85974 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3243 -a 0 -x {9.0 10.0 1626 ------- null} + -t 1.85974 -s 10 -d 7 -p ack -e 40 -c 0 -i 3262 -a 0 -x {10.0 9.0 1626 ------- null} - -t 1.85974 -s 10 -d 7 -p ack -e 40 -c 0 -i 3262 -a 0 -x {10.0 9.0 1626 ------- null} h -t 1.85974 -s 10 -d 7 -p ack -e 40 -c 0 -i 3262 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.85982 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3257 -a 0 -x {9.0 10.0 1633 ------- null} + -t 1.85982 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3257 -a 0 -x {9.0 10.0 1633 ------- null} h -t 1.85982 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3257 -a 0 -x {9.0 10.0 1633 ------- null} r -t 1.86022 -s 0 -d 9 -p ack -e 40 -c 0 -i 3252 -a 0 -x {10.0 9.0 1621 ------- null} + -t 1.86022 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3263 -a 0 -x {9.0 10.0 1636 ------- null} - -t 1.86022 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3263 -a 0 -x {9.0 10.0 1636 ------- null} h -t 1.86022 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3263 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.8603 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3249 -a 0 -x {9.0 10.0 1629 ------- null} - -t 1.8603 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3249 -a 0 -x {9.0 10.0 1629 ------- null} h -t 1.8603 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3249 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.86058 -s 0 -d 9 -p ack -e 40 -c 0 -i 3256 -a 0 -x {10.0 9.0 1623 ------- null} - -t 1.86058 -s 0 -d 9 -p ack -e 40 -c 0 -i 3256 -a 0 -x {10.0 9.0 1623 ------- null} h -t 1.86058 -s 0 -d 9 -p ack -e 40 -c 0 -i 3256 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.86069 -s 10 -d 7 -p ack -e 40 -c 0 -i 3260 -a 0 -x {10.0 9.0 1625 ------- null} + -t 1.86069 -s 7 -d 0 -p ack -e 40 -c 0 -i 3260 -a 0 -x {10.0 9.0 1625 ------- null} h -t 1.86069 -s 7 -d 8 -p ack -e 40 -c 0 -i 3260 -a 0 -x {10.0 9.0 1625 ------- null} r -t 1.86085 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3259 -a 0 -x {9.0 10.0 1634 ------- null} + -t 1.86085 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3259 -a 0 -x {9.0 10.0 1634 ------- null} h -t 1.86085 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3259 -a 0 -x {9.0 10.0 1634 ------- null} r -t 1.86093 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3245 -a 0 -x {9.0 10.0 1627 ------- null} + -t 1.86093 -s 10 -d 7 -p ack -e 40 -c 0 -i 3264 -a 0 -x {10.0 9.0 1627 ------- null} - -t 1.86093 -s 10 -d 7 -p ack -e 40 -c 0 -i 3264 -a 0 -x {10.0 9.0 1627 ------- null} h -t 1.86093 -s 10 -d 7 -p ack -e 40 -c 0 -i 3264 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.86131 -s 0 -d 9 -p ack -e 40 -c 0 -i 3254 -a 0 -x {10.0 9.0 1622 ------- null} + -t 1.86131 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3265 -a 0 -x {9.0 10.0 1637 ------- null} - -t 1.86131 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3265 -a 0 -x {9.0 10.0 1637 ------- null} h -t 1.86131 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3265 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.86142 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3251 -a 0 -x {9.0 10.0 1630 ------- null} - -t 1.86142 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3251 -a 0 -x {9.0 10.0 1630 ------- null} h -t 1.86142 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3251 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.8615 -s 0 -d 9 -p ack -e 40 -c 0 -i 3258 -a 0 -x {10.0 9.0 1624 ------- null} - -t 1.8615 -s 0 -d 9 -p ack -e 40 -c 0 -i 3258 -a 0 -x {10.0 9.0 1624 ------- null} h -t 1.8615 -s 0 -d 9 -p ack -e 40 -c 0 -i 3258 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.86178 -s 10 -d 7 -p ack -e 40 -c 0 -i 3262 -a 0 -x {10.0 9.0 1626 ------- null} + -t 1.86178 -s 7 -d 0 -p ack -e 40 -c 0 -i 3262 -a 0 -x {10.0 9.0 1626 ------- null} h -t 1.86178 -s 7 -d 8 -p ack -e 40 -c 0 -i 3262 -a 0 -x {10.0 9.0 1626 ------- null} r -t 1.86202 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3247 -a 0 -x {9.0 10.0 1628 ------- null} + -t 1.86202 -s 10 -d 7 -p ack -e 40 -c 0 -i 3266 -a 0 -x {10.0 9.0 1628 ------- null} - -t 1.86202 -s 10 -d 7 -p ack -e 40 -c 0 -i 3266 -a 0 -x {10.0 9.0 1628 ------- null} h -t 1.86202 -s 10 -d 7 -p ack -e 40 -c 0 -i 3266 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.86205 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3261 -a 0 -x {9.0 10.0 1635 ------- null} + -t 1.86205 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3261 -a 0 -x {9.0 10.0 1635 ------- null} h -t 1.86205 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3261 -a 0 -x {9.0 10.0 1635 ------- null} + -t 1.86251 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3253 -a 0 -x {9.0 10.0 1631 ------- null} - -t 1.86251 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3253 -a 0 -x {9.0 10.0 1631 ------- null} h -t 1.86251 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3253 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.86261 -s 0 -d 9 -p ack -e 40 -c 0 -i 3256 -a 0 -x {10.0 9.0 1623 ------- null} + -t 1.86261 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3267 -a 0 -x {9.0 10.0 1638 ------- null} - -t 1.86261 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3267 -a 0 -x {9.0 10.0 1638 ------- null} h -t 1.86261 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3267 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.86277 -s 0 -d 9 -p ack -e 40 -c 0 -i 3260 -a 0 -x {10.0 9.0 1625 ------- null} - -t 1.86277 -s 0 -d 9 -p ack -e 40 -c 0 -i 3260 -a 0 -x {10.0 9.0 1625 ------- null} h -t 1.86277 -s 0 -d 9 -p ack -e 40 -c 0 -i 3260 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.86296 -s 10 -d 7 -p ack -e 40 -c 0 -i 3264 -a 0 -x {10.0 9.0 1627 ------- null} + -t 1.86296 -s 7 -d 0 -p ack -e 40 -c 0 -i 3264 -a 0 -x {10.0 9.0 1627 ------- null} h -t 1.86296 -s 7 -d 8 -p ack -e 40 -c 0 -i 3264 -a 0 -x {10.0 9.0 1627 ------- null} r -t 1.86302 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3263 -a 0 -x {9.0 10.0 1636 ------- null} + -t 1.86302 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3263 -a 0 -x {9.0 10.0 1636 ------- null} h -t 1.86302 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3263 -a 0 -x {9.0 10.0 1636 ------- null} r -t 1.8631 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3249 -a 0 -x {9.0 10.0 1629 ------- null} + -t 1.8631 -s 10 -d 7 -p ack -e 40 -c 0 -i 3268 -a 0 -x {10.0 9.0 1629 ------- null} - -t 1.8631 -s 10 -d 7 -p ack -e 40 -c 0 -i 3268 -a 0 -x {10.0 9.0 1629 ------- null} h -t 1.8631 -s 10 -d 7 -p ack -e 40 -c 0 -i 3268 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.86354 -s 0 -d 9 -p ack -e 40 -c 0 -i 3258 -a 0 -x {10.0 9.0 1624 ------- null} + -t 1.86354 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3269 -a 0 -x {9.0 10.0 1639 ------- null} - -t 1.86354 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3269 -a 0 -x {9.0 10.0 1639 ------- null} h -t 1.86354 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3269 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.8636 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3255 -a 0 -x {9.0 10.0 1632 ------- null} - -t 1.8636 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3255 -a 0 -x {9.0 10.0 1632 ------- null} h -t 1.8636 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3255 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.86382 -s 0 -d 9 -p ack -e 40 -c 0 -i 3262 -a 0 -x {10.0 9.0 1626 ------- null} - -t 1.86382 -s 0 -d 9 -p ack -e 40 -c 0 -i 3262 -a 0 -x {10.0 9.0 1626 ------- null} h -t 1.86382 -s 0 -d 9 -p ack -e 40 -c 0 -i 3262 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.86405 -s 10 -d 7 -p ack -e 40 -c 0 -i 3266 -a 0 -x {10.0 9.0 1628 ------- null} + -t 1.86405 -s 7 -d 0 -p ack -e 40 -c 0 -i 3266 -a 0 -x {10.0 9.0 1628 ------- null} h -t 1.86405 -s 7 -d 8 -p ack -e 40 -c 0 -i 3266 -a 0 -x {10.0 9.0 1628 ------- null} r -t 1.86411 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3265 -a 0 -x {9.0 10.0 1637 ------- null} + -t 1.86411 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3265 -a 0 -x {9.0 10.0 1637 ------- null} h -t 1.86411 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3265 -a 0 -x {9.0 10.0 1637 ------- null} r -t 1.86422 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3251 -a 0 -x {9.0 10.0 1630 ------- null} + -t 1.86422 -s 10 -d 7 -p ack -e 40 -c 0 -i 3270 -a 0 -x {10.0 9.0 1630 ------- null} - -t 1.86422 -s 10 -d 7 -p ack -e 40 -c 0 -i 3270 -a 0 -x {10.0 9.0 1630 ------- null} h -t 1.86422 -s 10 -d 7 -p ack -e 40 -c 0 -i 3270 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.86469 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3257 -a 0 -x {9.0 10.0 1633 ------- null} - -t 1.86469 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3257 -a 0 -x {9.0 10.0 1633 ------- null} h -t 1.86469 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3257 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.86475 -s 0 -d 9 -p ack -e 40 -c 0 -i 3264 -a 0 -x {10.0 9.0 1627 ------- null} - -t 1.86475 -s 0 -d 9 -p ack -e 40 -c 0 -i 3264 -a 0 -x {10.0 9.0 1627 ------- null} h -t 1.86475 -s 0 -d 9 -p ack -e 40 -c 0 -i 3264 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.8648 -s 0 -d 9 -p ack -e 40 -c 0 -i 3260 -a 0 -x {10.0 9.0 1625 ------- null} + -t 1.8648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3271 -a 0 -x {9.0 10.0 1640 ------- null} - -t 1.8648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3271 -a 0 -x {9.0 10.0 1640 ------- null} h -t 1.8648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3271 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.86514 -s 10 -d 7 -p ack -e 40 -c 0 -i 3268 -a 0 -x {10.0 9.0 1629 ------- null} + -t 1.86514 -s 7 -d 0 -p ack -e 40 -c 0 -i 3268 -a 0 -x {10.0 9.0 1629 ------- null} h -t 1.86514 -s 7 -d 8 -p ack -e 40 -c 0 -i 3268 -a 0 -x {10.0 9.0 1629 ------- null} r -t 1.86531 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3253 -a 0 -x {9.0 10.0 1631 ------- null} + -t 1.86531 -s 10 -d 7 -p ack -e 40 -c 0 -i 3272 -a 0 -x {10.0 9.0 1631 ------- null} - -t 1.86531 -s 10 -d 7 -p ack -e 40 -c 0 -i 3272 -a 0 -x {10.0 9.0 1631 ------- null} h -t 1.86531 -s 10 -d 7 -p ack -e 40 -c 0 -i 3272 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.86541 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3267 -a 0 -x {9.0 10.0 1638 ------- null} + -t 1.86541 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3267 -a 0 -x {9.0 10.0 1638 ------- null} h -t 1.86541 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3267 -a 0 -x {9.0 10.0 1638 ------- null} + -t 1.86578 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3259 -a 0 -x {9.0 10.0 1634 ------- null} - -t 1.86578 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3259 -a 0 -x {9.0 10.0 1634 ------- null} h -t 1.86578 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3259 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.86586 -s 0 -d 9 -p ack -e 40 -c 0 -i 3262 -a 0 -x {10.0 9.0 1626 ------- null} + -t 1.86586 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3273 -a 0 -x {9.0 10.0 1641 ------- null} - -t 1.86586 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3273 -a 0 -x {9.0 10.0 1641 ------- null} h -t 1.86586 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3273 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.86603 -s 0 -d 9 -p ack -e 40 -c 0 -i 3266 -a 0 -x {10.0 9.0 1628 ------- null} - -t 1.86603 -s 0 -d 9 -p ack -e 40 -c 0 -i 3266 -a 0 -x {10.0 9.0 1628 ------- null} h -t 1.86603 -s 0 -d 9 -p ack -e 40 -c 0 -i 3266 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.86626 -s 10 -d 7 -p ack -e 40 -c 0 -i 3270 -a 0 -x {10.0 9.0 1630 ------- null} + -t 1.86626 -s 7 -d 0 -p ack -e 40 -c 0 -i 3270 -a 0 -x {10.0 9.0 1630 ------- null} h -t 1.86626 -s 7 -d 8 -p ack -e 40 -c 0 -i 3270 -a 0 -x {10.0 9.0 1630 ------- null} r -t 1.86634 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3269 -a 0 -x {9.0 10.0 1639 ------- null} + -t 1.86634 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3269 -a 0 -x {9.0 10.0 1639 ------- null} h -t 1.86634 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3269 -a 0 -x {9.0 10.0 1639 ------- null} r -t 1.8664 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3255 -a 0 -x {9.0 10.0 1632 ------- null} + -t 1.8664 -s 10 -d 7 -p ack -e 40 -c 0 -i 3274 -a 0 -x {10.0 9.0 1632 ------- null} - -t 1.8664 -s 10 -d 7 -p ack -e 40 -c 0 -i 3274 -a 0 -x {10.0 9.0 1632 ------- null} h -t 1.8664 -s 10 -d 7 -p ack -e 40 -c 0 -i 3274 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.86678 -s 0 -d 9 -p ack -e 40 -c 0 -i 3264 -a 0 -x {10.0 9.0 1627 ------- null} + -t 1.86678 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3275 -a 0 -x {9.0 10.0 1642 ------- null} - -t 1.86678 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3275 -a 0 -x {9.0 10.0 1642 ------- null} h -t 1.86678 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3275 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.86686 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3261 -a 0 -x {9.0 10.0 1635 ------- null} - -t 1.86686 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3261 -a 0 -x {9.0 10.0 1635 ------- null} h -t 1.86686 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3261 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.86704 -s 0 -d 9 -p ack -e 40 -c 0 -i 3268 -a 0 -x {10.0 9.0 1629 ------- null} - -t 1.86704 -s 0 -d 9 -p ack -e 40 -c 0 -i 3268 -a 0 -x {10.0 9.0 1629 ------- null} h -t 1.86704 -s 0 -d 9 -p ack -e 40 -c 0 -i 3268 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.86734 -s 10 -d 7 -p ack -e 40 -c 0 -i 3272 -a 0 -x {10.0 9.0 1631 ------- null} + -t 1.86734 -s 7 -d 0 -p ack -e 40 -c 0 -i 3272 -a 0 -x {10.0 9.0 1631 ------- null} h -t 1.86734 -s 7 -d 8 -p ack -e 40 -c 0 -i 3272 -a 0 -x {10.0 9.0 1631 ------- null} r -t 1.86749 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3257 -a 0 -x {9.0 10.0 1633 ------- null} + -t 1.86749 -s 10 -d 7 -p ack -e 40 -c 0 -i 3276 -a 0 -x {10.0 9.0 1633 ------- null} - -t 1.86749 -s 10 -d 7 -p ack -e 40 -c 0 -i 3276 -a 0 -x {10.0 9.0 1633 ------- null} h -t 1.86749 -s 10 -d 7 -p ack -e 40 -c 0 -i 3276 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.8676 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3271 -a 0 -x {9.0 10.0 1640 ------- null} + -t 1.8676 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3271 -a 0 -x {9.0 10.0 1640 ------- null} h -t 1.8676 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3271 -a 0 -x {9.0 10.0 1640 ------- null} + -t 1.86795 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3263 -a 0 -x {9.0 10.0 1636 ------- null} - -t 1.86795 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3263 -a 0 -x {9.0 10.0 1636 ------- null} h -t 1.86795 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3263 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.86806 -s 0 -d 9 -p ack -e 40 -c 0 -i 3266 -a 0 -x {10.0 9.0 1628 ------- null} + -t 1.86806 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3277 -a 0 -x {9.0 10.0 1643 ------- null} - -t 1.86806 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3277 -a 0 -x {9.0 10.0 1643 ------- null} h -t 1.86806 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3277 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.86821 -s 0 -d 9 -p ack -e 40 -c 0 -i 3270 -a 0 -x {10.0 9.0 1630 ------- null} - -t 1.86821 -s 0 -d 9 -p ack -e 40 -c 0 -i 3270 -a 0 -x {10.0 9.0 1630 ------- null} h -t 1.86821 -s 0 -d 9 -p ack -e 40 -c 0 -i 3270 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.86843 -s 10 -d 7 -p ack -e 40 -c 0 -i 3274 -a 0 -x {10.0 9.0 1632 ------- null} + -t 1.86843 -s 7 -d 0 -p ack -e 40 -c 0 -i 3274 -a 0 -x {10.0 9.0 1632 ------- null} h -t 1.86843 -s 7 -d 8 -p ack -e 40 -c 0 -i 3274 -a 0 -x {10.0 9.0 1632 ------- null} r -t 1.86858 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3259 -a 0 -x {9.0 10.0 1634 ------- null} + -t 1.86858 -s 10 -d 7 -p ack -e 40 -c 0 -i 3278 -a 0 -x {10.0 9.0 1634 ------- null} - -t 1.86858 -s 10 -d 7 -p ack -e 40 -c 0 -i 3278 -a 0 -x {10.0 9.0 1634 ------- null} h -t 1.86858 -s 10 -d 7 -p ack -e 40 -c 0 -i 3278 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.86866 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3273 -a 0 -x {9.0 10.0 1641 ------- null} + -t 1.86866 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3273 -a 0 -x {9.0 10.0 1641 ------- null} h -t 1.86866 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3273 -a 0 -x {9.0 10.0 1641 ------- null} + -t 1.86904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3265 -a 0 -x {9.0 10.0 1637 ------- null} - -t 1.86904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3265 -a 0 -x {9.0 10.0 1637 ------- null} h -t 1.86904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3265 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.86907 -s 0 -d 9 -p ack -e 40 -c 0 -i 3268 -a 0 -x {10.0 9.0 1629 ------- null} + -t 1.86907 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3279 -a 0 -x {9.0 10.0 1644 ------- null} - -t 1.86907 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3279 -a 0 -x {9.0 10.0 1644 ------- null} h -t 1.86907 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3279 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.8693 -s 0 -d 9 -p ack -e 40 -c 0 -i 3272 -a 0 -x {10.0 9.0 1631 ------- null} - -t 1.8693 -s 0 -d 9 -p ack -e 40 -c 0 -i 3272 -a 0 -x {10.0 9.0 1631 ------- null} h -t 1.8693 -s 0 -d 9 -p ack -e 40 -c 0 -i 3272 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.86952 -s 10 -d 7 -p ack -e 40 -c 0 -i 3276 -a 0 -x {10.0 9.0 1633 ------- null} + -t 1.86952 -s 7 -d 0 -p ack -e 40 -c 0 -i 3276 -a 0 -x {10.0 9.0 1633 ------- null} h -t 1.86952 -s 7 -d 8 -p ack -e 40 -c 0 -i 3276 -a 0 -x {10.0 9.0 1633 ------- null} r -t 1.86958 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3275 -a 0 -x {9.0 10.0 1642 ------- null} + -t 1.86958 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3275 -a 0 -x {9.0 10.0 1642 ------- null} h -t 1.86958 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3275 -a 0 -x {9.0 10.0 1642 ------- null} r -t 1.86966 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3261 -a 0 -x {9.0 10.0 1635 ------- null} + -t 1.86966 -s 10 -d 7 -p ack -e 40 -c 0 -i 3280 -a 0 -x {10.0 9.0 1635 ------- null} - -t 1.86966 -s 10 -d 7 -p ack -e 40 -c 0 -i 3280 -a 0 -x {10.0 9.0 1635 ------- null} h -t 1.86966 -s 10 -d 7 -p ack -e 40 -c 0 -i 3280 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.87013 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3267 -a 0 -x {9.0 10.0 1638 ------- null} - -t 1.87013 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3267 -a 0 -x {9.0 10.0 1638 ------- null} h -t 1.87013 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3267 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.87024 -s 0 -d 9 -p ack -e 40 -c 0 -i 3270 -a 0 -x {10.0 9.0 1630 ------- null} + -t 1.87024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3281 -a 0 -x {9.0 10.0 1645 ------- null} - -t 1.87024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3281 -a 0 -x {9.0 10.0 1645 ------- null} h -t 1.87024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3281 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.87043 -s 0 -d 9 -p ack -e 40 -c 0 -i 3274 -a 0 -x {10.0 9.0 1632 ------- null} - -t 1.87043 -s 0 -d 9 -p ack -e 40 -c 0 -i 3274 -a 0 -x {10.0 9.0 1632 ------- null} h -t 1.87043 -s 0 -d 9 -p ack -e 40 -c 0 -i 3274 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.87061 -s 10 -d 7 -p ack -e 40 -c 0 -i 3278 -a 0 -x {10.0 9.0 1634 ------- null} + -t 1.87061 -s 7 -d 0 -p ack -e 40 -c 0 -i 3278 -a 0 -x {10.0 9.0 1634 ------- null} h -t 1.87061 -s 7 -d 8 -p ack -e 40 -c 0 -i 3278 -a 0 -x {10.0 9.0 1634 ------- null} r -t 1.87075 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3263 -a 0 -x {9.0 10.0 1636 ------- null} + -t 1.87075 -s 10 -d 7 -p ack -e 40 -c 0 -i 3282 -a 0 -x {10.0 9.0 1636 ------- null} - -t 1.87075 -s 10 -d 7 -p ack -e 40 -c 0 -i 3282 -a 0 -x {10.0 9.0 1636 ------- null} h -t 1.87075 -s 10 -d 7 -p ack -e 40 -c 0 -i 3282 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.87086 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3277 -a 0 -x {9.0 10.0 1643 ------- null} + -t 1.87086 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3277 -a 0 -x {9.0 10.0 1643 ------- null} h -t 1.87086 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3277 -a 0 -x {9.0 10.0 1643 ------- null} r -t 1.87133 -s 0 -d 9 -p ack -e 40 -c 0 -i 3272 -a 0 -x {10.0 9.0 1631 ------- null} + -t 1.87133 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3283 -a 0 -x {9.0 10.0 1646 ------- null} - -t 1.87133 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3283 -a 0 -x {9.0 10.0 1646 ------- null} h -t 1.87133 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3283 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.87133 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3269 -a 0 -x {9.0 10.0 1639 ------- null} - -t 1.87133 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3269 -a 0 -x {9.0 10.0 1639 ------- null} h -t 1.87133 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3269 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.8716 -s 0 -d 9 -p ack -e 40 -c 0 -i 3276 -a 0 -x {10.0 9.0 1633 ------- null} - -t 1.8716 -s 0 -d 9 -p ack -e 40 -c 0 -i 3276 -a 0 -x {10.0 9.0 1633 ------- null} h -t 1.8716 -s 0 -d 9 -p ack -e 40 -c 0 -i 3276 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.8717 -s 10 -d 7 -p ack -e 40 -c 0 -i 3280 -a 0 -x {10.0 9.0 1635 ------- null} + -t 1.8717 -s 7 -d 0 -p ack -e 40 -c 0 -i 3280 -a 0 -x {10.0 9.0 1635 ------- null} h -t 1.8717 -s 7 -d 8 -p ack -e 40 -c 0 -i 3280 -a 0 -x {10.0 9.0 1635 ------- null} r -t 1.87184 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3265 -a 0 -x {9.0 10.0 1637 ------- null} + -t 1.87184 -s 10 -d 7 -p ack -e 40 -c 0 -i 3284 -a 0 -x {10.0 9.0 1637 ------- null} - -t 1.87184 -s 10 -d 7 -p ack -e 40 -c 0 -i 3284 -a 0 -x {10.0 9.0 1637 ------- null} h -t 1.87184 -s 10 -d 7 -p ack -e 40 -c 0 -i 3284 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.87187 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3279 -a 0 -x {9.0 10.0 1644 ------- null} + -t 1.87187 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3279 -a 0 -x {9.0 10.0 1644 ------- null} h -t 1.87187 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3279 -a 0 -x {9.0 10.0 1644 ------- null} r -t 1.87246 -s 0 -d 9 -p ack -e 40 -c 0 -i 3274 -a 0 -x {10.0 9.0 1632 ------- null} + -t 1.87246 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3285 -a 0 -x {9.0 10.0 1647 ------- null} - -t 1.87246 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3285 -a 0 -x {9.0 10.0 1647 ------- null} h -t 1.87246 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3285 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.87251 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3271 -a 0 -x {9.0 10.0 1640 ------- null} - -t 1.87251 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3271 -a 0 -x {9.0 10.0 1640 ------- null} h -t 1.87251 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3271 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.87259 -s 0 -d 9 -p ack -e 40 -c 0 -i 3278 -a 0 -x {10.0 9.0 1634 ------- null} - -t 1.87259 -s 0 -d 9 -p ack -e 40 -c 0 -i 3278 -a 0 -x {10.0 9.0 1634 ------- null} h -t 1.87259 -s 0 -d 9 -p ack -e 40 -c 0 -i 3278 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.87278 -s 10 -d 7 -p ack -e 40 -c 0 -i 3282 -a 0 -x {10.0 9.0 1636 ------- null} + -t 1.87278 -s 7 -d 0 -p ack -e 40 -c 0 -i 3282 -a 0 -x {10.0 9.0 1636 ------- null} h -t 1.87278 -s 7 -d 8 -p ack -e 40 -c 0 -i 3282 -a 0 -x {10.0 9.0 1636 ------- null} r -t 1.87293 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3267 -a 0 -x {9.0 10.0 1638 ------- null} + -t 1.87293 -s 10 -d 7 -p ack -e 40 -c 0 -i 3286 -a 0 -x {10.0 9.0 1638 ------- null} - -t 1.87293 -s 10 -d 7 -p ack -e 40 -c 0 -i 3286 -a 0 -x {10.0 9.0 1638 ------- null} h -t 1.87293 -s 10 -d 7 -p ack -e 40 -c 0 -i 3286 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.87304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3281 -a 0 -x {9.0 10.0 1645 ------- null} + -t 1.87304 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3281 -a 0 -x {9.0 10.0 1645 ------- null} h -t 1.87304 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3281 -a 0 -x {9.0 10.0 1645 ------- null} + -t 1.8736 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3273 -a 0 -x {9.0 10.0 1641 ------- null} - -t 1.8736 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3273 -a 0 -x {9.0 10.0 1641 ------- null} h -t 1.8736 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3273 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.87363 -s 0 -d 9 -p ack -e 40 -c 0 -i 3276 -a 0 -x {10.0 9.0 1633 ------- null} + -t 1.87363 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3287 -a 0 -x {9.0 10.0 1648 ------- null} - -t 1.87363 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3287 -a 0 -x {9.0 10.0 1648 ------- null} h -t 1.87363 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3287 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.87382 -s 0 -d 9 -p ack -e 40 -c 0 -i 3280 -a 0 -x {10.0 9.0 1635 ------- null} - -t 1.87382 -s 0 -d 9 -p ack -e 40 -c 0 -i 3280 -a 0 -x {10.0 9.0 1635 ------- null} h -t 1.87382 -s 0 -d 9 -p ack -e 40 -c 0 -i 3280 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.87387 -s 10 -d 7 -p ack -e 40 -c 0 -i 3284 -a 0 -x {10.0 9.0 1637 ------- null} + -t 1.87387 -s 7 -d 0 -p ack -e 40 -c 0 -i 3284 -a 0 -x {10.0 9.0 1637 ------- null} h -t 1.87387 -s 7 -d 8 -p ack -e 40 -c 0 -i 3284 -a 0 -x {10.0 9.0 1637 ------- null} r -t 1.87413 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3283 -a 0 -x {9.0 10.0 1646 ------- null} + -t 1.87413 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3283 -a 0 -x {9.0 10.0 1646 ------- null} h -t 1.87413 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3283 -a 0 -x {9.0 10.0 1646 ------- null} r -t 1.87413 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3269 -a 0 -x {9.0 10.0 1639 ------- null} + -t 1.87413 -s 10 -d 7 -p ack -e 40 -c 0 -i 3288 -a 0 -x {10.0 9.0 1639 ------- null} - -t 1.87413 -s 10 -d 7 -p ack -e 40 -c 0 -i 3288 -a 0 -x {10.0 9.0 1639 ------- null} h -t 1.87413 -s 10 -d 7 -p ack -e 40 -c 0 -i 3288 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.87462 -s 0 -d 9 -p ack -e 40 -c 0 -i 3278 -a 0 -x {10.0 9.0 1634 ------- null} + -t 1.87462 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3289 -a 0 -x {9.0 10.0 1649 ------- null} - -t 1.87462 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3289 -a 0 -x {9.0 10.0 1649 ------- null} h -t 1.87462 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3289 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.87469 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3275 -a 0 -x {9.0 10.0 1642 ------- null} - -t 1.87469 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3275 -a 0 -x {9.0 10.0 1642 ------- null} h -t 1.87469 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3275 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.87477 -s 0 -d 9 -p ack -e 40 -c 0 -i 3282 -a 0 -x {10.0 9.0 1636 ------- null} - -t 1.87477 -s 0 -d 9 -p ack -e 40 -c 0 -i 3282 -a 0 -x {10.0 9.0 1636 ------- null} h -t 1.87477 -s 0 -d 9 -p ack -e 40 -c 0 -i 3282 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.87496 -s 10 -d 7 -p ack -e 40 -c 0 -i 3286 -a 0 -x {10.0 9.0 1638 ------- null} + -t 1.87496 -s 7 -d 0 -p ack -e 40 -c 0 -i 3286 -a 0 -x {10.0 9.0 1638 ------- null} h -t 1.87496 -s 7 -d 8 -p ack -e 40 -c 0 -i 3286 -a 0 -x {10.0 9.0 1638 ------- null} r -t 1.87526 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3285 -a 0 -x {9.0 10.0 1647 ------- null} + -t 1.87526 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3285 -a 0 -x {9.0 10.0 1647 ------- null} h -t 1.87526 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3285 -a 0 -x {9.0 10.0 1647 ------- null} r -t 1.87531 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3271 -a 0 -x {9.0 10.0 1640 ------- null} + -t 1.87531 -s 10 -d 7 -p ack -e 40 -c 0 -i 3290 -a 0 -x {10.0 9.0 1640 ------- null} - -t 1.87531 -s 10 -d 7 -p ack -e 40 -c 0 -i 3290 -a 0 -x {10.0 9.0 1640 ------- null} h -t 1.87531 -s 10 -d 7 -p ack -e 40 -c 0 -i 3290 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.87578 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3277 -a 0 -x {9.0 10.0 1643 ------- null} - -t 1.87578 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3277 -a 0 -x {9.0 10.0 1643 ------- null} h -t 1.87578 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3277 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.87586 -s 0 -d 9 -p ack -e 40 -c 0 -i 3280 -a 0 -x {10.0 9.0 1635 ------- null} + -t 1.87586 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3291 -a 0 -x {9.0 10.0 1650 ------- null} - -t 1.87586 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3291 -a 0 -x {9.0 10.0 1650 ------- null} h -t 1.87586 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3291 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.87592 -s 0 -d 9 -p ack -e 40 -c 0 -i 3284 -a 0 -x {10.0 9.0 1637 ------- null} - -t 1.87592 -s 0 -d 9 -p ack -e 40 -c 0 -i 3284 -a 0 -x {10.0 9.0 1637 ------- null} h -t 1.87592 -s 0 -d 9 -p ack -e 40 -c 0 -i 3284 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.87616 -s 10 -d 7 -p ack -e 40 -c 0 -i 3288 -a 0 -x {10.0 9.0 1639 ------- null} + -t 1.87616 -s 7 -d 0 -p ack -e 40 -c 0 -i 3288 -a 0 -x {10.0 9.0 1639 ------- null} h -t 1.87616 -s 7 -d 8 -p ack -e 40 -c 0 -i 3288 -a 0 -x {10.0 9.0 1639 ------- null} r -t 1.8764 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3273 -a 0 -x {9.0 10.0 1641 ------- null} + -t 1.8764 -s 10 -d 7 -p ack -e 40 -c 0 -i 3292 -a 0 -x {10.0 9.0 1641 ------- null} - -t 1.8764 -s 10 -d 7 -p ack -e 40 -c 0 -i 3292 -a 0 -x {10.0 9.0 1641 ------- null} h -t 1.8764 -s 10 -d 7 -p ack -e 40 -c 0 -i 3292 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.87643 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3287 -a 0 -x {9.0 10.0 1648 ------- null} + -t 1.87643 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3287 -a 0 -x {9.0 10.0 1648 ------- null} h -t 1.87643 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3287 -a 0 -x {9.0 10.0 1648 ------- null} r -t 1.8768 -s 0 -d 9 -p ack -e 40 -c 0 -i 3282 -a 0 -x {10.0 9.0 1636 ------- null} + -t 1.8768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3293 -a 0 -x {9.0 10.0 1651 ------- null} - -t 1.8768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3293 -a 0 -x {9.0 10.0 1651 ------- null} h -t 1.8768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3293 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.87686 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3279 -a 0 -x {9.0 10.0 1644 ------- null} - -t 1.87686 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3279 -a 0 -x {9.0 10.0 1644 ------- null} h -t 1.87686 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3279 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.87698 -s 0 -d 9 -p ack -e 40 -c 0 -i 3286 -a 0 -x {10.0 9.0 1638 ------- null} - -t 1.87698 -s 0 -d 9 -p ack -e 40 -c 0 -i 3286 -a 0 -x {10.0 9.0 1638 ------- null} h -t 1.87698 -s 0 -d 9 -p ack -e 40 -c 0 -i 3286 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.87734 -s 10 -d 7 -p ack -e 40 -c 0 -i 3290 -a 0 -x {10.0 9.0 1640 ------- null} + -t 1.87734 -s 7 -d 0 -p ack -e 40 -c 0 -i 3290 -a 0 -x {10.0 9.0 1640 ------- null} h -t 1.87734 -s 7 -d 8 -p ack -e 40 -c 0 -i 3290 -a 0 -x {10.0 9.0 1640 ------- null} r -t 1.87742 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3289 -a 0 -x {9.0 10.0 1649 ------- null} + -t 1.87742 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3289 -a 0 -x {9.0 10.0 1649 ------- null} h -t 1.87742 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3289 -a 0 -x {9.0 10.0 1649 ------- null} r -t 1.87749 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3275 -a 0 -x {9.0 10.0 1642 ------- null} + -t 1.87749 -s 10 -d 7 -p ack -e 40 -c 0 -i 3294 -a 0 -x {10.0 9.0 1642 ------- null} - -t 1.87749 -s 10 -d 7 -p ack -e 40 -c 0 -i 3294 -a 0 -x {10.0 9.0 1642 ------- null} h -t 1.87749 -s 10 -d 7 -p ack -e 40 -c 0 -i 3294 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.87795 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3281 -a 0 -x {9.0 10.0 1645 ------- null} - -t 1.87795 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3281 -a 0 -x {9.0 10.0 1645 ------- null} h -t 1.87795 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3281 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.87795 -s 0 -d 9 -p ack -e 40 -c 0 -i 3284 -a 0 -x {10.0 9.0 1637 ------- null} + -t 1.87795 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3295 -a 0 -x {9.0 10.0 1652 ------- null} - -t 1.87795 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3295 -a 0 -x {9.0 10.0 1652 ------- null} h -t 1.87795 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3295 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.87803 -s 0 -d 9 -p ack -e 40 -c 0 -i 3288 -a 0 -x {10.0 9.0 1639 ------- null} - -t 1.87803 -s 0 -d 9 -p ack -e 40 -c 0 -i 3288 -a 0 -x {10.0 9.0 1639 ------- null} h -t 1.87803 -s 0 -d 9 -p ack -e 40 -c 0 -i 3288 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.87843 -s 10 -d 7 -p ack -e 40 -c 0 -i 3292 -a 0 -x {10.0 9.0 1641 ------- null} + -t 1.87843 -s 7 -d 0 -p ack -e 40 -c 0 -i 3292 -a 0 -x {10.0 9.0 1641 ------- null} h -t 1.87843 -s 7 -d 8 -p ack -e 40 -c 0 -i 3292 -a 0 -x {10.0 9.0 1641 ------- null} r -t 1.87858 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3277 -a 0 -x {9.0 10.0 1643 ------- null} + -t 1.87858 -s 10 -d 7 -p ack -e 40 -c 0 -i 3296 -a 0 -x {10.0 9.0 1643 ------- null} - -t 1.87858 -s 10 -d 7 -p ack -e 40 -c 0 -i 3296 -a 0 -x {10.0 9.0 1643 ------- null} h -t 1.87858 -s 10 -d 7 -p ack -e 40 -c 0 -i 3296 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.87866 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3291 -a 0 -x {9.0 10.0 1650 ------- null} + -t 1.87866 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3291 -a 0 -x {9.0 10.0 1650 ------- null} h -t 1.87866 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3291 -a 0 -x {9.0 10.0 1650 ------- null} r -t 1.87901 -s 0 -d 9 -p ack -e 40 -c 0 -i 3286 -a 0 -x {10.0 9.0 1638 ------- null} + -t 1.87901 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3297 -a 0 -x {9.0 10.0 1653 ------- null} - -t 1.87901 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3297 -a 0 -x {9.0 10.0 1653 ------- null} h -t 1.87901 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3297 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.87904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3283 -a 0 -x {9.0 10.0 1646 ------- null} - -t 1.87904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3283 -a 0 -x {9.0 10.0 1646 ------- null} h -t 1.87904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3283 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.87934 -s 0 -d 9 -p ack -e 40 -c 0 -i 3290 -a 0 -x {10.0 9.0 1640 ------- null} - -t 1.87934 -s 0 -d 9 -p ack -e 40 -c 0 -i 3290 -a 0 -x {10.0 9.0 1640 ------- null} h -t 1.87934 -s 0 -d 9 -p ack -e 40 -c 0 -i 3290 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.87952 -s 10 -d 7 -p ack -e 40 -c 0 -i 3294 -a 0 -x {10.0 9.0 1642 ------- null} + -t 1.87952 -s 7 -d 0 -p ack -e 40 -c 0 -i 3294 -a 0 -x {10.0 9.0 1642 ------- null} h -t 1.87952 -s 7 -d 8 -p ack -e 40 -c 0 -i 3294 -a 0 -x {10.0 9.0 1642 ------- null} r -t 1.8796 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3293 -a 0 -x {9.0 10.0 1651 ------- null} + -t 1.8796 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3293 -a 0 -x {9.0 10.0 1651 ------- null} h -t 1.8796 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3293 -a 0 -x {9.0 10.0 1651 ------- null} r -t 1.87966 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3279 -a 0 -x {9.0 10.0 1644 ------- null} + -t 1.87966 -s 10 -d 7 -p ack -e 40 -c 0 -i 3298 -a 0 -x {10.0 9.0 1644 ------- null} - -t 1.87966 -s 10 -d 7 -p ack -e 40 -c 0 -i 3298 -a 0 -x {10.0 9.0 1644 ------- null} h -t 1.87966 -s 10 -d 7 -p ack -e 40 -c 0 -i 3298 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.88006 -s 0 -d 9 -p ack -e 40 -c 0 -i 3288 -a 0 -x {10.0 9.0 1639 ------- null} + -t 1.88006 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3299 -a 0 -x {9.0 10.0 1654 ------- null} - -t 1.88006 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3299 -a 0 -x {9.0 10.0 1654 ------- null} h -t 1.88006 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3299 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.88029 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3285 -a 0 -x {9.0 10.0 1647 ------- null} - -t 1.88029 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3285 -a 0 -x {9.0 10.0 1647 ------- null} h -t 1.88029 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3285 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.88058 -s 0 -d 9 -p ack -e 40 -c 0 -i 3292 -a 0 -x {10.0 9.0 1641 ------- null} - -t 1.88058 -s 0 -d 9 -p ack -e 40 -c 0 -i 3292 -a 0 -x {10.0 9.0 1641 ------- null} h -t 1.88058 -s 0 -d 9 -p ack -e 40 -c 0 -i 3292 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.88061 -s 10 -d 7 -p ack -e 40 -c 0 -i 3296 -a 0 -x {10.0 9.0 1643 ------- null} + -t 1.88061 -s 7 -d 0 -p ack -e 40 -c 0 -i 3296 -a 0 -x {10.0 9.0 1643 ------- null} h -t 1.88061 -s 7 -d 8 -p ack -e 40 -c 0 -i 3296 -a 0 -x {10.0 9.0 1643 ------- null} r -t 1.88075 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3281 -a 0 -x {9.0 10.0 1645 ------- null} + -t 1.88075 -s 10 -d 7 -p ack -e 40 -c 0 -i 3300 -a 0 -x {10.0 9.0 1645 ------- null} - -t 1.88075 -s 10 -d 7 -p ack -e 40 -c 0 -i 3300 -a 0 -x {10.0 9.0 1645 ------- null} h -t 1.88075 -s 10 -d 7 -p ack -e 40 -c 0 -i 3300 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.88075 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3295 -a 0 -x {9.0 10.0 1652 ------- null} + -t 1.88075 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3295 -a 0 -x {9.0 10.0 1652 ------- null} h -t 1.88075 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3295 -a 0 -x {9.0 10.0 1652 ------- null} r -t 1.88138 -s 0 -d 9 -p ack -e 40 -c 0 -i 3290 -a 0 -x {10.0 9.0 1640 ------- null} + -t 1.88138 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3301 -a 0 -x {9.0 10.0 1655 ------- null} - -t 1.88138 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3301 -a 0 -x {9.0 10.0 1655 ------- null} h -t 1.88138 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3301 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.88154 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3287 -a 0 -x {9.0 10.0 1648 ------- null} - -t 1.88154 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3287 -a 0 -x {9.0 10.0 1648 ------- null} h -t 1.88154 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3287 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.88162 -s 0 -d 9 -p ack -e 40 -c 0 -i 3294 -a 0 -x {10.0 9.0 1642 ------- null} - -t 1.88162 -s 0 -d 9 -p ack -e 40 -c 0 -i 3294 -a 0 -x {10.0 9.0 1642 ------- null} h -t 1.88162 -s 0 -d 9 -p ack -e 40 -c 0 -i 3294 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.8817 -s 10 -d 7 -p ack -e 40 -c 0 -i 3298 -a 0 -x {10.0 9.0 1644 ------- null} + -t 1.8817 -s 7 -d 0 -p ack -e 40 -c 0 -i 3298 -a 0 -x {10.0 9.0 1644 ------- null} h -t 1.8817 -s 7 -d 8 -p ack -e 40 -c 0 -i 3298 -a 0 -x {10.0 9.0 1644 ------- null} r -t 1.88181 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3297 -a 0 -x {9.0 10.0 1653 ------- null} + -t 1.88181 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3297 -a 0 -x {9.0 10.0 1653 ------- null} h -t 1.88181 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3297 -a 0 -x {9.0 10.0 1653 ------- null} r -t 1.88184 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3283 -a 0 -x {9.0 10.0 1646 ------- null} + -t 1.88184 -s 10 -d 7 -p ack -e 40 -c 0 -i 3302 -a 0 -x {10.0 9.0 1646 ------- null} - -t 1.88184 -s 10 -d 7 -p ack -e 40 -c 0 -i 3302 -a 0 -x {10.0 9.0 1646 ------- null} h -t 1.88184 -s 10 -d 7 -p ack -e 40 -c 0 -i 3302 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.88261 -s 0 -d 9 -p ack -e 40 -c 0 -i 3292 -a 0 -x {10.0 9.0 1641 ------- null} + -t 1.88261 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3303 -a 0 -x {9.0 10.0 1656 ------- null} - -t 1.88261 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3303 -a 0 -x {9.0 10.0 1656 ------- null} h -t 1.88261 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3303 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.88262 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3289 -a 0 -x {9.0 10.0 1649 ------- null} - -t 1.88262 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3289 -a 0 -x {9.0 10.0 1649 ------- null} h -t 1.88262 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3289 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.88278 -s 10 -d 7 -p ack -e 40 -c 0 -i 3300 -a 0 -x {10.0 9.0 1645 ------- null} + -t 1.88278 -s 7 -d 0 -p ack -e 40 -c 0 -i 3300 -a 0 -x {10.0 9.0 1645 ------- null} h -t 1.88278 -s 7 -d 8 -p ack -e 40 -c 0 -i 3300 -a 0 -x {10.0 9.0 1645 ------- null} r -t 1.88286 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3299 -a 0 -x {9.0 10.0 1654 ------- null} + -t 1.88286 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3299 -a 0 -x {9.0 10.0 1654 ------- null} h -t 1.88286 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3299 -a 0 -x {9.0 10.0 1654 ------- null} + -t 1.8829 -s 0 -d 9 -p ack -e 40 -c 0 -i 3296 -a 0 -x {10.0 9.0 1643 ------- null} - -t 1.8829 -s 0 -d 9 -p ack -e 40 -c 0 -i 3296 -a 0 -x {10.0 9.0 1643 ------- null} h -t 1.8829 -s 0 -d 9 -p ack -e 40 -c 0 -i 3296 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.88309 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3285 -a 0 -x {9.0 10.0 1647 ------- null} + -t 1.88309 -s 10 -d 7 -p ack -e 40 -c 0 -i 3304 -a 0 -x {10.0 9.0 1647 ------- null} - -t 1.88309 -s 10 -d 7 -p ack -e 40 -c 0 -i 3304 -a 0 -x {10.0 9.0 1647 ------- null} h -t 1.88309 -s 10 -d 7 -p ack -e 40 -c 0 -i 3304 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.88365 -s 0 -d 9 -p ack -e 40 -c 0 -i 3294 -a 0 -x {10.0 9.0 1642 ------- null} + -t 1.88365 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3305 -a 0 -x {9.0 10.0 1657 ------- null} - -t 1.88365 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3305 -a 0 -x {9.0 10.0 1657 ------- null} h -t 1.88365 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3305 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.88384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3291 -a 0 -x {9.0 10.0 1650 ------- null} - -t 1.88384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3291 -a 0 -x {9.0 10.0 1650 ------- null} h -t 1.88384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3291 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.88387 -s 10 -d 7 -p ack -e 40 -c 0 -i 3302 -a 0 -x {10.0 9.0 1646 ------- null} + -t 1.88387 -s 7 -d 0 -p ack -e 40 -c 0 -i 3302 -a 0 -x {10.0 9.0 1646 ------- null} h -t 1.88387 -s 7 -d 8 -p ack -e 40 -c 0 -i 3302 -a 0 -x {10.0 9.0 1646 ------- null} + -t 1.88395 -s 0 -d 9 -p ack -e 40 -c 0 -i 3298 -a 0 -x {10.0 9.0 1644 ------- null} - -t 1.88395 -s 0 -d 9 -p ack -e 40 -c 0 -i 3298 -a 0 -x {10.0 9.0 1644 ------- null} h -t 1.88395 -s 0 -d 9 -p ack -e 40 -c 0 -i 3298 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.88418 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3301 -a 0 -x {9.0 10.0 1655 ------- null} + -t 1.88418 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3301 -a 0 -x {9.0 10.0 1655 ------- null} h -t 1.88418 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3301 -a 0 -x {9.0 10.0 1655 ------- null} r -t 1.88434 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3287 -a 0 -x {9.0 10.0 1648 ------- null} + -t 1.88434 -s 10 -d 7 -p ack -e 40 -c 0 -i 3306 -a 0 -x {10.0 9.0 1648 ------- null} - -t 1.88434 -s 10 -d 7 -p ack -e 40 -c 0 -i 3306 -a 0 -x {10.0 9.0 1648 ------- null} h -t 1.88434 -s 10 -d 7 -p ack -e 40 -c 0 -i 3306 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.88493 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3293 -a 0 -x {9.0 10.0 1651 ------- null} - -t 1.88493 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3293 -a 0 -x {9.0 10.0 1651 ------- null} h -t 1.88493 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3293 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.88493 -s 0 -d 9 -p ack -e 40 -c 0 -i 3296 -a 0 -x {10.0 9.0 1643 ------- null} + -t 1.88493 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3307 -a 0 -x {9.0 10.0 1658 ------- null} - -t 1.88493 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3307 -a 0 -x {9.0 10.0 1658 ------- null} h -t 1.88493 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3307 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.88512 -s 10 -d 7 -p ack -e 40 -c 0 -i 3304 -a 0 -x {10.0 9.0 1647 ------- null} + -t 1.88512 -s 7 -d 0 -p ack -e 40 -c 0 -i 3304 -a 0 -x {10.0 9.0 1647 ------- null} h -t 1.88512 -s 7 -d 8 -p ack -e 40 -c 0 -i 3304 -a 0 -x {10.0 9.0 1647 ------- null} + -t 1.88514 -s 0 -d 9 -p ack -e 40 -c 0 -i 3300 -a 0 -x {10.0 9.0 1645 ------- null} - -t 1.88514 -s 0 -d 9 -p ack -e 40 -c 0 -i 3300 -a 0 -x {10.0 9.0 1645 ------- null} h -t 1.88514 -s 0 -d 9 -p ack -e 40 -c 0 -i 3300 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.88541 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3303 -a 0 -x {9.0 10.0 1656 ------- null} + -t 1.88541 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3303 -a 0 -x {9.0 10.0 1656 ------- null} h -t 1.88541 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3303 -a 0 -x {9.0 10.0 1656 ------- null} r -t 1.88542 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3289 -a 0 -x {9.0 10.0 1649 ------- null} + -t 1.88542 -s 10 -d 7 -p ack -e 40 -c 0 -i 3308 -a 0 -x {10.0 9.0 1649 ------- null} - -t 1.88542 -s 10 -d 7 -p ack -e 40 -c 0 -i 3308 -a 0 -x {10.0 9.0 1649 ------- null} h -t 1.88542 -s 10 -d 7 -p ack -e 40 -c 0 -i 3308 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.88598 -s 0 -d 9 -p ack -e 40 -c 0 -i 3298 -a 0 -x {10.0 9.0 1644 ------- null} + -t 1.88598 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3309 -a 0 -x {9.0 10.0 1659 ------- null} - -t 1.88598 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3309 -a 0 -x {9.0 10.0 1659 ------- null} h -t 1.88598 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3309 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.88602 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3295 -a 0 -x {9.0 10.0 1652 ------- null} - -t 1.88602 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3295 -a 0 -x {9.0 10.0 1652 ------- null} h -t 1.88602 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3295 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.88622 -s 0 -d 9 -p ack -e 40 -c 0 -i 3302 -a 0 -x {10.0 9.0 1646 ------- null} - -t 1.88622 -s 0 -d 9 -p ack -e 40 -c 0 -i 3302 -a 0 -x {10.0 9.0 1646 ------- null} h -t 1.88622 -s 0 -d 9 -p ack -e 40 -c 0 -i 3302 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.88637 -s 10 -d 7 -p ack -e 40 -c 0 -i 3306 -a 0 -x {10.0 9.0 1648 ------- null} + -t 1.88637 -s 7 -d 0 -p ack -e 40 -c 0 -i 3306 -a 0 -x {10.0 9.0 1648 ------- null} h -t 1.88637 -s 7 -d 8 -p ack -e 40 -c 0 -i 3306 -a 0 -x {10.0 9.0 1648 ------- null} r -t 1.88645 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3305 -a 0 -x {9.0 10.0 1657 ------- null} + -t 1.88645 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3305 -a 0 -x {9.0 10.0 1657 ------- null} h -t 1.88645 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3305 -a 0 -x {9.0 10.0 1657 ------- null} r -t 1.88664 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3291 -a 0 -x {9.0 10.0 1650 ------- null} + -t 1.88664 -s 10 -d 7 -p ack -e 40 -c 0 -i 3310 -a 0 -x {10.0 9.0 1650 ------- null} - -t 1.88664 -s 10 -d 7 -p ack -e 40 -c 0 -i 3310 -a 0 -x {10.0 9.0 1650 ------- null} h -t 1.88664 -s 10 -d 7 -p ack -e 40 -c 0 -i 3310 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.8871 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3297 -a 0 -x {9.0 10.0 1653 ------- null} - -t 1.8871 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3297 -a 0 -x {9.0 10.0 1653 ------- null} h -t 1.8871 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3297 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.88717 -s 0 -d 9 -p ack -e 40 -c 0 -i 3300 -a 0 -x {10.0 9.0 1645 ------- null} + -t 1.88717 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3311 -a 0 -x {9.0 10.0 1660 ------- null} - -t 1.88717 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3311 -a 0 -x {9.0 10.0 1660 ------- null} h -t 1.88717 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3311 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.88718 -s 0 -d 9 -p ack -e 40 -c 0 -i 3304 -a 0 -x {10.0 9.0 1647 ------- null} - -t 1.88718 -s 0 -d 9 -p ack -e 40 -c 0 -i 3304 -a 0 -x {10.0 9.0 1647 ------- null} h -t 1.88718 -s 0 -d 9 -p ack -e 40 -c 0 -i 3304 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.88746 -s 10 -d 7 -p ack -e 40 -c 0 -i 3308 -a 0 -x {10.0 9.0 1649 ------- null} + -t 1.88746 -s 7 -d 0 -p ack -e 40 -c 0 -i 3308 -a 0 -x {10.0 9.0 1649 ------- null} h -t 1.88746 -s 7 -d 8 -p ack -e 40 -c 0 -i 3308 -a 0 -x {10.0 9.0 1649 ------- null} r -t 1.88773 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3293 -a 0 -x {9.0 10.0 1651 ------- null} + -t 1.88773 -s 10 -d 7 -p ack -e 40 -c 0 -i 3312 -a 0 -x {10.0 9.0 1651 ------- null} - -t 1.88773 -s 10 -d 7 -p ack -e 40 -c 0 -i 3312 -a 0 -x {10.0 9.0 1651 ------- null} h -t 1.88773 -s 10 -d 7 -p ack -e 40 -c 0 -i 3312 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.88773 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3307 -a 0 -x {9.0 10.0 1658 ------- null} + -t 1.88773 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3307 -a 0 -x {9.0 10.0 1658 ------- null} h -t 1.88773 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3307 -a 0 -x {9.0 10.0 1658 ------- null} + -t 1.88819 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3299 -a 0 -x {9.0 10.0 1654 ------- null} - -t 1.88819 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3299 -a 0 -x {9.0 10.0 1654 ------- null} h -t 1.88819 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3299 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.88826 -s 0 -d 9 -p ack -e 40 -c 0 -i 3302 -a 0 -x {10.0 9.0 1646 ------- null} + -t 1.88826 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3313 -a 0 -x {9.0 10.0 1661 ------- null} - -t 1.88826 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3313 -a 0 -x {9.0 10.0 1661 ------- null} h -t 1.88826 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3313 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.88846 -s 0 -d 9 -p ack -e 40 -c 0 -i 3306 -a 0 -x {10.0 9.0 1648 ------- null} - -t 1.88846 -s 0 -d 9 -p ack -e 40 -c 0 -i 3306 -a 0 -x {10.0 9.0 1648 ------- null} h -t 1.88846 -s 0 -d 9 -p ack -e 40 -c 0 -i 3306 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.88867 -s 10 -d 7 -p ack -e 40 -c 0 -i 3310 -a 0 -x {10.0 9.0 1650 ------- null} + -t 1.88867 -s 7 -d 0 -p ack -e 40 -c 0 -i 3310 -a 0 -x {10.0 9.0 1650 ------- null} h -t 1.88867 -s 7 -d 8 -p ack -e 40 -c 0 -i 3310 -a 0 -x {10.0 9.0 1650 ------- null} r -t 1.88878 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3309 -a 0 -x {9.0 10.0 1659 ------- null} + -t 1.88878 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3309 -a 0 -x {9.0 10.0 1659 ------- null} h -t 1.88878 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3309 -a 0 -x {9.0 10.0 1659 ------- null} r -t 1.88882 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3295 -a 0 -x {9.0 10.0 1652 ------- null} + -t 1.88882 -s 10 -d 7 -p ack -e 40 -c 0 -i 3314 -a 0 -x {10.0 9.0 1652 ------- null} - -t 1.88882 -s 10 -d 7 -p ack -e 40 -c 0 -i 3314 -a 0 -x {10.0 9.0 1652 ------- null} h -t 1.88882 -s 10 -d 7 -p ack -e 40 -c 0 -i 3314 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.88922 -s 0 -d 9 -p ack -e 40 -c 0 -i 3304 -a 0 -x {10.0 9.0 1647 ------- null} + -t 1.88922 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3315 -a 0 -x {9.0 10.0 1662 ------- null} - -t 1.88922 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3315 -a 0 -x {9.0 10.0 1662 ------- null} h -t 1.88922 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3315 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.88939 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3301 -a 0 -x {9.0 10.0 1655 ------- null} - -t 1.88939 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3301 -a 0 -x {9.0 10.0 1655 ------- null} h -t 1.88939 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3301 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.88952 -s 0 -d 9 -p ack -e 40 -c 0 -i 3308 -a 0 -x {10.0 9.0 1649 ------- null} - -t 1.88952 -s 0 -d 9 -p ack -e 40 -c 0 -i 3308 -a 0 -x {10.0 9.0 1649 ------- null} h -t 1.88952 -s 0 -d 9 -p ack -e 40 -c 0 -i 3308 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.88976 -s 10 -d 7 -p ack -e 40 -c 0 -i 3312 -a 0 -x {10.0 9.0 1651 ------- null} + -t 1.88976 -s 7 -d 0 -p ack -e 40 -c 0 -i 3312 -a 0 -x {10.0 9.0 1651 ------- null} h -t 1.88976 -s 7 -d 8 -p ack -e 40 -c 0 -i 3312 -a 0 -x {10.0 9.0 1651 ------- null} r -t 1.8899 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3297 -a 0 -x {9.0 10.0 1653 ------- null} + -t 1.8899 -s 10 -d 7 -p ack -e 40 -c 0 -i 3316 -a 0 -x {10.0 9.0 1653 ------- null} - -t 1.8899 -s 10 -d 7 -p ack -e 40 -c 0 -i 3316 -a 0 -x {10.0 9.0 1653 ------- null} h -t 1.8899 -s 10 -d 7 -p ack -e 40 -c 0 -i 3316 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.88997 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3311 -a 0 -x {9.0 10.0 1660 ------- null} + -t 1.88997 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3311 -a 0 -x {9.0 10.0 1660 ------- null} h -t 1.88997 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3311 -a 0 -x {9.0 10.0 1660 ------- null} + -t 1.89048 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3303 -a 0 -x {9.0 10.0 1656 ------- null} - -t 1.89048 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3303 -a 0 -x {9.0 10.0 1656 ------- null} h -t 1.89048 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3303 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.8905 -s 0 -d 9 -p ack -e 40 -c 0 -i 3306 -a 0 -x {10.0 9.0 1648 ------- null} + -t 1.8905 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3317 -a 0 -x {9.0 10.0 1663 ------- null} - -t 1.8905 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3317 -a 0 -x {9.0 10.0 1663 ------- null} h -t 1.8905 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3317 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.89069 -s 0 -d 9 -p ack -e 40 -c 0 -i 3310 -a 0 -x {10.0 9.0 1650 ------- null} - -t 1.89069 -s 0 -d 9 -p ack -e 40 -c 0 -i 3310 -a 0 -x {10.0 9.0 1650 ------- null} h -t 1.89069 -s 0 -d 9 -p ack -e 40 -c 0 -i 3310 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.89085 -s 10 -d 7 -p ack -e 40 -c 0 -i 3314 -a 0 -x {10.0 9.0 1652 ------- null} + -t 1.89085 -s 7 -d 0 -p ack -e 40 -c 0 -i 3314 -a 0 -x {10.0 9.0 1652 ------- null} h -t 1.89085 -s 7 -d 8 -p ack -e 40 -c 0 -i 3314 -a 0 -x {10.0 9.0 1652 ------- null} r -t 1.89099 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3299 -a 0 -x {9.0 10.0 1654 ------- null} + -t 1.89099 -s 10 -d 7 -p ack -e 40 -c 0 -i 3318 -a 0 -x {10.0 9.0 1654 ------- null} - -t 1.89099 -s 10 -d 7 -p ack -e 40 -c 0 -i 3318 -a 0 -x {10.0 9.0 1654 ------- null} h -t 1.89099 -s 10 -d 7 -p ack -e 40 -c 0 -i 3318 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.89106 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3313 -a 0 -x {9.0 10.0 1661 ------- null} + -t 1.89106 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3313 -a 0 -x {9.0 10.0 1661 ------- null} h -t 1.89106 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3313 -a 0 -x {9.0 10.0 1661 ------- null} r -t 1.89155 -s 0 -d 9 -p ack -e 40 -c 0 -i 3308 -a 0 -x {10.0 9.0 1649 ------- null} + -t 1.89155 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3319 -a 0 -x {9.0 10.0 1664 ------- null} - -t 1.89155 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3319 -a 0 -x {9.0 10.0 1664 ------- null} h -t 1.89155 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3319 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.89157 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3305 -a 0 -x {9.0 10.0 1657 ------- null} - -t 1.89157 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3305 -a 0 -x {9.0 10.0 1657 ------- null} h -t 1.89157 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3305 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.89187 -s 0 -d 9 -p ack -e 40 -c 0 -i 3312 -a 0 -x {10.0 9.0 1651 ------- null} - -t 1.89187 -s 0 -d 9 -p ack -e 40 -c 0 -i 3312 -a 0 -x {10.0 9.0 1651 ------- null} h -t 1.89187 -s 0 -d 9 -p ack -e 40 -c 0 -i 3312 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.89194 -s 10 -d 7 -p ack -e 40 -c 0 -i 3316 -a 0 -x {10.0 9.0 1653 ------- null} + -t 1.89194 -s 7 -d 0 -p ack -e 40 -c 0 -i 3316 -a 0 -x {10.0 9.0 1653 ------- null} h -t 1.89194 -s 7 -d 8 -p ack -e 40 -c 0 -i 3316 -a 0 -x {10.0 9.0 1653 ------- null} r -t 1.89202 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3315 -a 0 -x {9.0 10.0 1662 ------- null} + -t 1.89202 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3315 -a 0 -x {9.0 10.0 1662 ------- null} h -t 1.89202 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3315 -a 0 -x {9.0 10.0 1662 ------- null} r -t 1.89219 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3301 -a 0 -x {9.0 10.0 1655 ------- null} + -t 1.89219 -s 10 -d 7 -p ack -e 40 -c 0 -i 3320 -a 0 -x {10.0 9.0 1655 ------- null} - -t 1.89219 -s 10 -d 7 -p ack -e 40 -c 0 -i 3320 -a 0 -x {10.0 9.0 1655 ------- null} h -t 1.89219 -s 10 -d 7 -p ack -e 40 -c 0 -i 3320 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.89272 -s 0 -d 9 -p ack -e 40 -c 0 -i 3310 -a 0 -x {10.0 9.0 1650 ------- null} + -t 1.89272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3321 -a 0 -x {9.0 10.0 1665 ------- null} - -t 1.89272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3321 -a 0 -x {9.0 10.0 1665 ------- null} h -t 1.89272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3321 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.8929 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3307 -a 0 -x {9.0 10.0 1658 ------- null} - -t 1.8929 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3307 -a 0 -x {9.0 10.0 1658 ------- null} h -t 1.8929 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3307 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.89301 -s 0 -d 9 -p ack -e 40 -c 0 -i 3314 -a 0 -x {10.0 9.0 1652 ------- null} - -t 1.89301 -s 0 -d 9 -p ack -e 40 -c 0 -i 3314 -a 0 -x {10.0 9.0 1652 ------- null} h -t 1.89301 -s 0 -d 9 -p ack -e 40 -c 0 -i 3314 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.89302 -s 10 -d 7 -p ack -e 40 -c 0 -i 3318 -a 0 -x {10.0 9.0 1654 ------- null} + -t 1.89302 -s 7 -d 0 -p ack -e 40 -c 0 -i 3318 -a 0 -x {10.0 9.0 1654 ------- null} h -t 1.89302 -s 7 -d 8 -p ack -e 40 -c 0 -i 3318 -a 0 -x {10.0 9.0 1654 ------- null} r -t 1.89328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3303 -a 0 -x {9.0 10.0 1656 ------- null} + -t 1.89328 -s 10 -d 7 -p ack -e 40 -c 0 -i 3322 -a 0 -x {10.0 9.0 1656 ------- null} - -t 1.89328 -s 10 -d 7 -p ack -e 40 -c 0 -i 3322 -a 0 -x {10.0 9.0 1656 ------- null} h -t 1.89328 -s 10 -d 7 -p ack -e 40 -c 0 -i 3322 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.8933 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3317 -a 0 -x {9.0 10.0 1663 ------- null} + -t 1.8933 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3317 -a 0 -x {9.0 10.0 1663 ------- null} h -t 1.8933 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3317 -a 0 -x {9.0 10.0 1663 ------- null} r -t 1.8939 -s 0 -d 9 -p ack -e 40 -c 0 -i 3312 -a 0 -x {10.0 9.0 1651 ------- null} + -t 1.8939 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3323 -a 0 -x {9.0 10.0 1666 ------- null} - -t 1.8939 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3323 -a 0 -x {9.0 10.0 1666 ------- null} h -t 1.8939 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3323 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.89398 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3309 -a 0 -x {9.0 10.0 1659 ------- null} - -t 1.89398 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3309 -a 0 -x {9.0 10.0 1659 ------- null} h -t 1.89398 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3309 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.89405 -s 0 -d 9 -p ack -e 40 -c 0 -i 3316 -a 0 -x {10.0 9.0 1653 ------- null} - -t 1.89405 -s 0 -d 9 -p ack -e 40 -c 0 -i 3316 -a 0 -x {10.0 9.0 1653 ------- null} h -t 1.89405 -s 0 -d 9 -p ack -e 40 -c 0 -i 3316 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.89422 -s 10 -d 7 -p ack -e 40 -c 0 -i 3320 -a 0 -x {10.0 9.0 1655 ------- null} + -t 1.89422 -s 7 -d 0 -p ack -e 40 -c 0 -i 3320 -a 0 -x {10.0 9.0 1655 ------- null} h -t 1.89422 -s 7 -d 8 -p ack -e 40 -c 0 -i 3320 -a 0 -x {10.0 9.0 1655 ------- null} r -t 1.89435 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3319 -a 0 -x {9.0 10.0 1664 ------- null} + -t 1.89435 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3319 -a 0 -x {9.0 10.0 1664 ------- null} h -t 1.89435 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3319 -a 0 -x {9.0 10.0 1664 ------- null} r -t 1.89437 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3305 -a 0 -x {9.0 10.0 1657 ------- null} + -t 1.89437 -s 10 -d 7 -p ack -e 40 -c 0 -i 3324 -a 0 -x {10.0 9.0 1657 ------- null} - -t 1.89437 -s 10 -d 7 -p ack -e 40 -c 0 -i 3324 -a 0 -x {10.0 9.0 1657 ------- null} h -t 1.89437 -s 10 -d 7 -p ack -e 40 -c 0 -i 3324 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.89504 -s 0 -d 9 -p ack -e 40 -c 0 -i 3314 -a 0 -x {10.0 9.0 1652 ------- null} + -t 1.89504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3325 -a 0 -x {9.0 10.0 1667 ------- null} - -t 1.89504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3325 -a 0 -x {9.0 10.0 1667 ------- null} h -t 1.89504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3325 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.89507 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3311 -a 0 -x {9.0 10.0 1660 ------- null} - -t 1.89507 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3311 -a 0 -x {9.0 10.0 1660 ------- null} h -t 1.89507 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3311 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.89531 -s 10 -d 7 -p ack -e 40 -c 0 -i 3322 -a 0 -x {10.0 9.0 1656 ------- null} + -t 1.89531 -s 7 -d 0 -p ack -e 40 -c 0 -i 3322 -a 0 -x {10.0 9.0 1656 ------- null} h -t 1.89531 -s 7 -d 8 -p ack -e 40 -c 0 -i 3322 -a 0 -x {10.0 9.0 1656 ------- null} + -t 1.89538 -s 0 -d 9 -p ack -e 40 -c 0 -i 3318 -a 0 -x {10.0 9.0 1654 ------- null} - -t 1.89538 -s 0 -d 9 -p ack -e 40 -c 0 -i 3318 -a 0 -x {10.0 9.0 1654 ------- null} h -t 1.89538 -s 0 -d 9 -p ack -e 40 -c 0 -i 3318 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.89552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3321 -a 0 -x {9.0 10.0 1665 ------- null} + -t 1.89552 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3321 -a 0 -x {9.0 10.0 1665 ------- null} h -t 1.89552 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3321 -a 0 -x {9.0 10.0 1665 ------- null} r -t 1.8957 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3307 -a 0 -x {9.0 10.0 1658 ------- null} + -t 1.8957 -s 10 -d 7 -p ack -e 40 -c 0 -i 3326 -a 0 -x {10.0 9.0 1658 ------- null} - -t 1.8957 -s 10 -d 7 -p ack -e 40 -c 0 -i 3326 -a 0 -x {10.0 9.0 1658 ------- null} h -t 1.8957 -s 10 -d 7 -p ack -e 40 -c 0 -i 3326 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.89608 -s 0 -d 9 -p ack -e 40 -c 0 -i 3316 -a 0 -x {10.0 9.0 1653 ------- null} + -t 1.89608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3327 -a 0 -x {9.0 10.0 1668 ------- null} - -t 1.89608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3327 -a 0 -x {9.0 10.0 1668 ------- null} h -t 1.89608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3327 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.89629 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3313 -a 0 -x {9.0 10.0 1661 ------- null} - -t 1.89629 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3313 -a 0 -x {9.0 10.0 1661 ------- null} h -t 1.89629 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3313 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.8964 -s 10 -d 7 -p ack -e 40 -c 0 -i 3324 -a 0 -x {10.0 9.0 1657 ------- null} + -t 1.8964 -s 7 -d 0 -p ack -e 40 -c 0 -i 3324 -a 0 -x {10.0 9.0 1657 ------- null} h -t 1.8964 -s 7 -d 8 -p ack -e 40 -c 0 -i 3324 -a 0 -x {10.0 9.0 1657 ------- null} + -t 1.89645 -s 0 -d 9 -p ack -e 40 -c 0 -i 3320 -a 0 -x {10.0 9.0 1655 ------- null} - -t 1.89645 -s 0 -d 9 -p ack -e 40 -c 0 -i 3320 -a 0 -x {10.0 9.0 1655 ------- null} h -t 1.89645 -s 0 -d 9 -p ack -e 40 -c 0 -i 3320 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.8967 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3323 -a 0 -x {9.0 10.0 1666 ------- null} + -t 1.8967 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3323 -a 0 -x {9.0 10.0 1666 ------- null} h -t 1.8967 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3323 -a 0 -x {9.0 10.0 1666 ------- null} r -t 1.89678 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3309 -a 0 -x {9.0 10.0 1659 ------- null} + -t 1.89678 -s 10 -d 7 -p ack -e 40 -c 0 -i 3328 -a 0 -x {10.0 9.0 1659 ------- null} - -t 1.89678 -s 10 -d 7 -p ack -e 40 -c 0 -i 3328 -a 0 -x {10.0 9.0 1659 ------- null} h -t 1.89678 -s 10 -d 7 -p ack -e 40 -c 0 -i 3328 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.89738 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3315 -a 0 -x {9.0 10.0 1662 ------- null} - -t 1.89738 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3315 -a 0 -x {9.0 10.0 1662 ------- null} h -t 1.89738 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3315 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.89741 -s 0 -d 9 -p ack -e 40 -c 0 -i 3318 -a 0 -x {10.0 9.0 1654 ------- null} + -t 1.89741 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3329 -a 0 -x {9.0 10.0 1669 ------- null} - -t 1.89741 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3329 -a 0 -x {9.0 10.0 1669 ------- null} h -t 1.89741 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3329 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.8975 -s 0 -d 9 -p ack -e 40 -c 0 -i 3322 -a 0 -x {10.0 9.0 1656 ------- null} - -t 1.8975 -s 0 -d 9 -p ack -e 40 -c 0 -i 3322 -a 0 -x {10.0 9.0 1656 ------- null} h -t 1.8975 -s 0 -d 9 -p ack -e 40 -c 0 -i 3322 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.89773 -s 10 -d 7 -p ack -e 40 -c 0 -i 3326 -a 0 -x {10.0 9.0 1658 ------- null} + -t 1.89773 -s 7 -d 0 -p ack -e 40 -c 0 -i 3326 -a 0 -x {10.0 9.0 1658 ------- null} h -t 1.89773 -s 7 -d 8 -p ack -e 40 -c 0 -i 3326 -a 0 -x {10.0 9.0 1658 ------- null} r -t 1.89784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3325 -a 0 -x {9.0 10.0 1667 ------- null} + -t 1.89784 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3325 -a 0 -x {9.0 10.0 1667 ------- null} h -t 1.89784 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3325 -a 0 -x {9.0 10.0 1667 ------- null} r -t 1.89787 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3311 -a 0 -x {9.0 10.0 1660 ------- null} + -t 1.89787 -s 10 -d 7 -p ack -e 40 -c 0 -i 3330 -a 0 -x {10.0 9.0 1660 ------- null} - -t 1.89787 -s 10 -d 7 -p ack -e 40 -c 0 -i 3330 -a 0 -x {10.0 9.0 1660 ------- null} h -t 1.89787 -s 10 -d 7 -p ack -e 40 -c 0 -i 3330 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.89846 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3317 -a 0 -x {9.0 10.0 1663 ------- null} - -t 1.89846 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3317 -a 0 -x {9.0 10.0 1663 ------- null} h -t 1.89846 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3317 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.89848 -s 0 -d 9 -p ack -e 40 -c 0 -i 3320 -a 0 -x {10.0 9.0 1655 ------- null} + -t 1.89848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3331 -a 0 -x {9.0 10.0 1670 ------- null} - -t 1.89848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3331 -a 0 -x {9.0 10.0 1670 ------- null} h -t 1.89848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3331 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.89866 -s 0 -d 9 -p ack -e 40 -c 0 -i 3324 -a 0 -x {10.0 9.0 1657 ------- null} - -t 1.89866 -s 0 -d 9 -p ack -e 40 -c 0 -i 3324 -a 0 -x {10.0 9.0 1657 ------- null} h -t 1.89866 -s 0 -d 9 -p ack -e 40 -c 0 -i 3324 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.89882 -s 10 -d 7 -p ack -e 40 -c 0 -i 3328 -a 0 -x {10.0 9.0 1659 ------- null} + -t 1.89882 -s 7 -d 0 -p ack -e 40 -c 0 -i 3328 -a 0 -x {10.0 9.0 1659 ------- null} h -t 1.89882 -s 7 -d 8 -p ack -e 40 -c 0 -i 3328 -a 0 -x {10.0 9.0 1659 ------- null} r -t 1.89888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3327 -a 0 -x {9.0 10.0 1668 ------- null} + -t 1.89888 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3327 -a 0 -x {9.0 10.0 1668 ------- null} h -t 1.89888 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3327 -a 0 -x {9.0 10.0 1668 ------- null} r -t 1.89909 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3313 -a 0 -x {9.0 10.0 1661 ------- null} + -t 1.89909 -s 10 -d 7 -p ack -e 40 -c 0 -i 3332 -a 0 -x {10.0 9.0 1661 ------- null} - -t 1.89909 -s 10 -d 7 -p ack -e 40 -c 0 -i 3332 -a 0 -x {10.0 9.0 1661 ------- null} h -t 1.89909 -s 10 -d 7 -p ack -e 40 -c 0 -i 3332 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.89954 -s 0 -d 9 -p ack -e 40 -c 0 -i 3322 -a 0 -x {10.0 9.0 1656 ------- null} + -t 1.89954 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3333 -a 0 -x {9.0 10.0 1671 ------- null} - -t 1.89954 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3333 -a 0 -x {9.0 10.0 1671 ------- null} h -t 1.89954 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3333 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.89955 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3319 -a 0 -x {9.0 10.0 1664 ------- null} - -t 1.89955 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3319 -a 0 -x {9.0 10.0 1664 ------- null} h -t 1.89955 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3319 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.89963 -s 0 -d 9 -p ack -e 40 -c 0 -i 3326 -a 0 -x {10.0 9.0 1658 ------- null} - -t 1.89963 -s 0 -d 9 -p ack -e 40 -c 0 -i 3326 -a 0 -x {10.0 9.0 1658 ------- null} h -t 1.89963 -s 0 -d 9 -p ack -e 40 -c 0 -i 3326 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.8999 -s 10 -d 7 -p ack -e 40 -c 0 -i 3330 -a 0 -x {10.0 9.0 1660 ------- null} + -t 1.8999 -s 7 -d 0 -p ack -e 40 -c 0 -i 3330 -a 0 -x {10.0 9.0 1660 ------- null} h -t 1.8999 -s 7 -d 8 -p ack -e 40 -c 0 -i 3330 -a 0 -x {10.0 9.0 1660 ------- null} r -t 1.90018 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3315 -a 0 -x {9.0 10.0 1662 ------- null} + -t 1.90018 -s 10 -d 7 -p ack -e 40 -c 0 -i 3334 -a 0 -x {10.0 9.0 1662 ------- null} - -t 1.90018 -s 10 -d 7 -p ack -e 40 -c 0 -i 3334 -a 0 -x {10.0 9.0 1662 ------- null} h -t 1.90018 -s 10 -d 7 -p ack -e 40 -c 0 -i 3334 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.90021 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3329 -a 0 -x {9.0 10.0 1669 ------- null} + -t 1.90021 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3329 -a 0 -x {9.0 10.0 1669 ------- null} h -t 1.90021 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3329 -a 0 -x {9.0 10.0 1669 ------- null} + -t 1.90064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3321 -a 0 -x {9.0 10.0 1665 ------- null} - -t 1.90064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3321 -a 0 -x {9.0 10.0 1665 ------- null} h -t 1.90064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3321 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.90069 -s 0 -d 9 -p ack -e 40 -c 0 -i 3324 -a 0 -x {10.0 9.0 1657 ------- null} + -t 1.90069 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3335 -a 0 -x {9.0 10.0 1672 ------- null} - -t 1.90069 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3335 -a 0 -x {9.0 10.0 1672 ------- null} h -t 1.90069 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3335 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.90086 -s 0 -d 9 -p ack -e 40 -c 0 -i 3328 -a 0 -x {10.0 9.0 1659 ------- null} - -t 1.90086 -s 0 -d 9 -p ack -e 40 -c 0 -i 3328 -a 0 -x {10.0 9.0 1659 ------- null} h -t 1.90086 -s 0 -d 9 -p ack -e 40 -c 0 -i 3328 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.90112 -s 10 -d 7 -p ack -e 40 -c 0 -i 3332 -a 0 -x {10.0 9.0 1661 ------- null} + -t 1.90112 -s 7 -d 0 -p ack -e 40 -c 0 -i 3332 -a 0 -x {10.0 9.0 1661 ------- null} h -t 1.90112 -s 7 -d 8 -p ack -e 40 -c 0 -i 3332 -a 0 -x {10.0 9.0 1661 ------- null} r -t 1.90126 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3317 -a 0 -x {9.0 10.0 1663 ------- null} + -t 1.90126 -s 10 -d 7 -p ack -e 40 -c 0 -i 3336 -a 0 -x {10.0 9.0 1663 ------- null} - -t 1.90126 -s 10 -d 7 -p ack -e 40 -c 0 -i 3336 -a 0 -x {10.0 9.0 1663 ------- null} h -t 1.90126 -s 10 -d 7 -p ack -e 40 -c 0 -i 3336 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.90128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3331 -a 0 -x {9.0 10.0 1670 ------- null} + -t 1.90128 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3331 -a 0 -x {9.0 10.0 1670 ------- null} h -t 1.90128 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3331 -a 0 -x {9.0 10.0 1670 ------- null} r -t 1.90166 -s 0 -d 9 -p ack -e 40 -c 0 -i 3326 -a 0 -x {10.0 9.0 1658 ------- null} + -t 1.90166 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3337 -a 0 -x {9.0 10.0 1673 ------- null} - -t 1.90166 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3337 -a 0 -x {9.0 10.0 1673 ------- null} h -t 1.90166 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3337 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.90173 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3323 -a 0 -x {9.0 10.0 1666 ------- null} - -t 1.90173 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3323 -a 0 -x {9.0 10.0 1666 ------- null} h -t 1.90173 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3323 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.90195 -s 0 -d 9 -p ack -e 40 -c 0 -i 3330 -a 0 -x {10.0 9.0 1660 ------- null} - -t 1.90195 -s 0 -d 9 -p ack -e 40 -c 0 -i 3330 -a 0 -x {10.0 9.0 1660 ------- null} h -t 1.90195 -s 0 -d 9 -p ack -e 40 -c 0 -i 3330 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.90221 -s 10 -d 7 -p ack -e 40 -c 0 -i 3334 -a 0 -x {10.0 9.0 1662 ------- null} + -t 1.90221 -s 7 -d 0 -p ack -e 40 -c 0 -i 3334 -a 0 -x {10.0 9.0 1662 ------- null} h -t 1.90221 -s 7 -d 8 -p ack -e 40 -c 0 -i 3334 -a 0 -x {10.0 9.0 1662 ------- null} r -t 1.90234 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3333 -a 0 -x {9.0 10.0 1671 ------- null} + -t 1.90234 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3333 -a 0 -x {9.0 10.0 1671 ------- null} h -t 1.90234 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3333 -a 0 -x {9.0 10.0 1671 ------- null} r -t 1.90235 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3319 -a 0 -x {9.0 10.0 1664 ------- null} + -t 1.90235 -s 10 -d 7 -p ack -e 40 -c 0 -i 3338 -a 0 -x {10.0 9.0 1664 ------- null} - -t 1.90235 -s 10 -d 7 -p ack -e 40 -c 0 -i 3338 -a 0 -x {10.0 9.0 1664 ------- null} h -t 1.90235 -s 10 -d 7 -p ack -e 40 -c 0 -i 3338 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.90282 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3325 -a 0 -x {9.0 10.0 1667 ------- null} - -t 1.90282 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3325 -a 0 -x {9.0 10.0 1667 ------- null} h -t 1.90282 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3325 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.9029 -s 0 -d 9 -p ack -e 40 -c 0 -i 3328 -a 0 -x {10.0 9.0 1659 ------- null} + -t 1.9029 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3339 -a 0 -x {9.0 10.0 1674 ------- null} - -t 1.9029 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3339 -a 0 -x {9.0 10.0 1674 ------- null} h -t 1.9029 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3339 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.90296 -s 0 -d 9 -p ack -e 40 -c 0 -i 3332 -a 0 -x {10.0 9.0 1661 ------- null} - -t 1.90296 -s 0 -d 9 -p ack -e 40 -c 0 -i 3332 -a 0 -x {10.0 9.0 1661 ------- null} h -t 1.90296 -s 0 -d 9 -p ack -e 40 -c 0 -i 3332 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.9033 -s 10 -d 7 -p ack -e 40 -c 0 -i 3336 -a 0 -x {10.0 9.0 1663 ------- null} + -t 1.9033 -s 7 -d 0 -p ack -e 40 -c 0 -i 3336 -a 0 -x {10.0 9.0 1663 ------- null} h -t 1.9033 -s 7 -d 8 -p ack -e 40 -c 0 -i 3336 -a 0 -x {10.0 9.0 1663 ------- null} r -t 1.90344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3321 -a 0 -x {9.0 10.0 1665 ------- null} + -t 1.90344 -s 10 -d 7 -p ack -e 40 -c 0 -i 3340 -a 0 -x {10.0 9.0 1665 ------- null} - -t 1.90344 -s 10 -d 7 -p ack -e 40 -c 0 -i 3340 -a 0 -x {10.0 9.0 1665 ------- null} h -t 1.90344 -s 10 -d 7 -p ack -e 40 -c 0 -i 3340 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.90349 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3335 -a 0 -x {9.0 10.0 1672 ------- null} + -t 1.90349 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3335 -a 0 -x {9.0 10.0 1672 ------- null} h -t 1.90349 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3335 -a 0 -x {9.0 10.0 1672 ------- null} + -t 1.9039 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3327 -a 0 -x {9.0 10.0 1668 ------- null} - -t 1.9039 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3327 -a 0 -x {9.0 10.0 1668 ------- null} h -t 1.9039 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3327 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.90398 -s 0 -d 9 -p ack -e 40 -c 0 -i 3330 -a 0 -x {10.0 9.0 1660 ------- null} + -t 1.90398 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3341 -a 0 -x {9.0 10.0 1675 ------- null} - -t 1.90398 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3341 -a 0 -x {9.0 10.0 1675 ------- null} h -t 1.90398 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3341 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.90405 -s 0 -d 9 -p ack -e 40 -c 0 -i 3334 -a 0 -x {10.0 9.0 1662 ------- null} - -t 1.90405 -s 0 -d 9 -p ack -e 40 -c 0 -i 3334 -a 0 -x {10.0 9.0 1662 ------- null} h -t 1.90405 -s 0 -d 9 -p ack -e 40 -c 0 -i 3334 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.90438 -s 10 -d 7 -p ack -e 40 -c 0 -i 3338 -a 0 -x {10.0 9.0 1664 ------- null} + -t 1.90438 -s 7 -d 0 -p ack -e 40 -c 0 -i 3338 -a 0 -x {10.0 9.0 1664 ------- null} h -t 1.90438 -s 7 -d 8 -p ack -e 40 -c 0 -i 3338 -a 0 -x {10.0 9.0 1664 ------- null} r -t 1.90446 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3337 -a 0 -x {9.0 10.0 1673 ------- null} + -t 1.90446 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3337 -a 0 -x {9.0 10.0 1673 ------- null} h -t 1.90446 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3337 -a 0 -x {9.0 10.0 1673 ------- null} r -t 1.90453 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3323 -a 0 -x {9.0 10.0 1666 ------- null} + -t 1.90453 -s 10 -d 7 -p ack -e 40 -c 0 -i 3342 -a 0 -x {10.0 9.0 1666 ------- null} - -t 1.90453 -s 10 -d 7 -p ack -e 40 -c 0 -i 3342 -a 0 -x {10.0 9.0 1666 ------- null} h -t 1.90453 -s 10 -d 7 -p ack -e 40 -c 0 -i 3342 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.90499 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3329 -a 0 -x {9.0 10.0 1669 ------- null} - -t 1.90499 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3329 -a 0 -x {9.0 10.0 1669 ------- null} h -t 1.90499 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3329 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.90499 -s 0 -d 9 -p ack -e 40 -c 0 -i 3332 -a 0 -x {10.0 9.0 1661 ------- null} + -t 1.90499 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3343 -a 0 -x {9.0 10.0 1676 ------- null} - -t 1.90499 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3343 -a 0 -x {9.0 10.0 1676 ------- null} h -t 1.90499 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3343 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.90528 -s 0 -d 9 -p ack -e 40 -c 0 -i 3336 -a 0 -x {10.0 9.0 1663 ------- null} - -t 1.90528 -s 0 -d 9 -p ack -e 40 -c 0 -i 3336 -a 0 -x {10.0 9.0 1663 ------- null} h -t 1.90528 -s 0 -d 9 -p ack -e 40 -c 0 -i 3336 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.90547 -s 10 -d 7 -p ack -e 40 -c 0 -i 3340 -a 0 -x {10.0 9.0 1665 ------- null} + -t 1.90547 -s 7 -d 0 -p ack -e 40 -c 0 -i 3340 -a 0 -x {10.0 9.0 1665 ------- null} h -t 1.90547 -s 7 -d 8 -p ack -e 40 -c 0 -i 3340 -a 0 -x {10.0 9.0 1665 ------- null} r -t 1.90562 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3325 -a 0 -x {9.0 10.0 1667 ------- null} + -t 1.90562 -s 10 -d 7 -p ack -e 40 -c 0 -i 3344 -a 0 -x {10.0 9.0 1667 ------- null} - -t 1.90562 -s 10 -d 7 -p ack -e 40 -c 0 -i 3344 -a 0 -x {10.0 9.0 1667 ------- null} h -t 1.90562 -s 10 -d 7 -p ack -e 40 -c 0 -i 3344 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.9057 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3339 -a 0 -x {9.0 10.0 1674 ------- null} + -t 1.9057 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3339 -a 0 -x {9.0 10.0 1674 ------- null} h -t 1.9057 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3339 -a 0 -x {9.0 10.0 1674 ------- null} r -t 1.90608 -s 0 -d 9 -p ack -e 40 -c 0 -i 3334 -a 0 -x {10.0 9.0 1662 ------- null} + -t 1.90608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3345 -a 0 -x {9.0 10.0 1677 ------- null} - -t 1.90608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3345 -a 0 -x {9.0 10.0 1677 ------- null} h -t 1.90608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3345 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.90622 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3331 -a 0 -x {9.0 10.0 1670 ------- null} - -t 1.90622 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3331 -a 0 -x {9.0 10.0 1670 ------- null} h -t 1.90622 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3331 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.90635 -s 0 -d 9 -p ack -e 40 -c 0 -i 3338 -a 0 -x {10.0 9.0 1664 ------- null} - -t 1.90635 -s 0 -d 9 -p ack -e 40 -c 0 -i 3338 -a 0 -x {10.0 9.0 1664 ------- null} h -t 1.90635 -s 0 -d 9 -p ack -e 40 -c 0 -i 3338 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.90656 -s 10 -d 7 -p ack -e 40 -c 0 -i 3342 -a 0 -x {10.0 9.0 1666 ------- null} + -t 1.90656 -s 7 -d 0 -p ack -e 40 -c 0 -i 3342 -a 0 -x {10.0 9.0 1666 ------- null} h -t 1.90656 -s 7 -d 8 -p ack -e 40 -c 0 -i 3342 -a 0 -x {10.0 9.0 1666 ------- null} r -t 1.9067 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3327 -a 0 -x {9.0 10.0 1668 ------- null} + -t 1.9067 -s 10 -d 7 -p ack -e 40 -c 0 -i 3346 -a 0 -x {10.0 9.0 1668 ------- null} - -t 1.9067 -s 10 -d 7 -p ack -e 40 -c 0 -i 3346 -a 0 -x {10.0 9.0 1668 ------- null} h -t 1.9067 -s 10 -d 7 -p ack -e 40 -c 0 -i 3346 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.90678 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3341 -a 0 -x {9.0 10.0 1675 ------- null} + -t 1.90678 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3341 -a 0 -x {9.0 10.0 1675 ------- null} h -t 1.90678 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3341 -a 0 -x {9.0 10.0 1675 ------- null} + -t 1.90731 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3333 -a 0 -x {9.0 10.0 1671 ------- null} - -t 1.90731 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3333 -a 0 -x {9.0 10.0 1671 ------- null} h -t 1.90731 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3333 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.90731 -s 0 -d 9 -p ack -e 40 -c 0 -i 3336 -a 0 -x {10.0 9.0 1663 ------- null} + -t 1.90731 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3347 -a 0 -x {9.0 10.0 1678 ------- null} - -t 1.90731 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3347 -a 0 -x {9.0 10.0 1678 ------- null} h -t 1.90731 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3347 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.90755 -s 0 -d 9 -p ack -e 40 -c 0 -i 3340 -a 0 -x {10.0 9.0 1665 ------- null} - -t 1.90755 -s 0 -d 9 -p ack -e 40 -c 0 -i 3340 -a 0 -x {10.0 9.0 1665 ------- null} h -t 1.90755 -s 0 -d 9 -p ack -e 40 -c 0 -i 3340 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.90765 -s 10 -d 7 -p ack -e 40 -c 0 -i 3344 -a 0 -x {10.0 9.0 1667 ------- null} + -t 1.90765 -s 7 -d 0 -p ack -e 40 -c 0 -i 3344 -a 0 -x {10.0 9.0 1667 ------- null} h -t 1.90765 -s 7 -d 8 -p ack -e 40 -c 0 -i 3344 -a 0 -x {10.0 9.0 1667 ------- null} r -t 1.90779 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3329 -a 0 -x {9.0 10.0 1669 ------- null} + -t 1.90779 -s 10 -d 7 -p ack -e 40 -c 0 -i 3348 -a 0 -x {10.0 9.0 1669 ------- null} - -t 1.90779 -s 10 -d 7 -p ack -e 40 -c 0 -i 3348 -a 0 -x {10.0 9.0 1669 ------- null} h -t 1.90779 -s 10 -d 7 -p ack -e 40 -c 0 -i 3348 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.90779 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3343 -a 0 -x {9.0 10.0 1676 ------- null} + -t 1.90779 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3343 -a 0 -x {9.0 10.0 1676 ------- null} h -t 1.90779 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3343 -a 0 -x {9.0 10.0 1676 ------- null} r -t 1.90838 -s 0 -d 9 -p ack -e 40 -c 0 -i 3338 -a 0 -x {10.0 9.0 1664 ------- null} + -t 1.90838 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3349 -a 0 -x {9.0 10.0 1679 ------- null} - -t 1.90838 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3349 -a 0 -x {9.0 10.0 1679 ------- null} h -t 1.90838 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3349 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.9084 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3335 -a 0 -x {9.0 10.0 1672 ------- null} - -t 1.9084 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3335 -a 0 -x {9.0 10.0 1672 ------- null} h -t 1.9084 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3335 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.90861 -s 0 -d 9 -p ack -e 40 -c 0 -i 3342 -a 0 -x {10.0 9.0 1666 ------- null} - -t 1.90861 -s 0 -d 9 -p ack -e 40 -c 0 -i 3342 -a 0 -x {10.0 9.0 1666 ------- null} h -t 1.90861 -s 0 -d 9 -p ack -e 40 -c 0 -i 3342 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.90874 -s 10 -d 7 -p ack -e 40 -c 0 -i 3346 -a 0 -x {10.0 9.0 1668 ------- null} + -t 1.90874 -s 7 -d 0 -p ack -e 40 -c 0 -i 3346 -a 0 -x {10.0 9.0 1668 ------- null} h -t 1.90874 -s 7 -d 8 -p ack -e 40 -c 0 -i 3346 -a 0 -x {10.0 9.0 1668 ------- null} r -t 1.90888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3345 -a 0 -x {9.0 10.0 1677 ------- null} + -t 1.90888 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3345 -a 0 -x {9.0 10.0 1677 ------- null} h -t 1.90888 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3345 -a 0 -x {9.0 10.0 1677 ------- null} r -t 1.90902 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3331 -a 0 -x {9.0 10.0 1670 ------- null} + -t 1.90902 -s 10 -d 7 -p ack -e 40 -c 0 -i 3350 -a 0 -x {10.0 9.0 1670 ------- null} - -t 1.90902 -s 10 -d 7 -p ack -e 40 -c 0 -i 3350 -a 0 -x {10.0 9.0 1670 ------- null} h -t 1.90902 -s 10 -d 7 -p ack -e 40 -c 0 -i 3350 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.90949 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3337 -a 0 -x {9.0 10.0 1673 ------- null} - -t 1.90949 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3337 -a 0 -x {9.0 10.0 1673 ------- null} h -t 1.90949 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3337 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.90958 -s 0 -d 9 -p ack -e 40 -c 0 -i 3340 -a 0 -x {10.0 9.0 1665 ------- null} + -t 1.90958 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3351 -a 0 -x {9.0 10.0 1680 ------- null} - -t 1.90958 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3351 -a 0 -x {9.0 10.0 1680 ------- null} h -t 1.90958 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3351 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.90978 -s 0 -d 9 -p ack -e 40 -c 0 -i 3344 -a 0 -x {10.0 9.0 1667 ------- null} - -t 1.90978 -s 0 -d 9 -p ack -e 40 -c 0 -i 3344 -a 0 -x {10.0 9.0 1667 ------- null} h -t 1.90978 -s 0 -d 9 -p ack -e 40 -c 0 -i 3344 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.90982 -s 10 -d 7 -p ack -e 40 -c 0 -i 3348 -a 0 -x {10.0 9.0 1669 ------- null} + -t 1.90982 -s 7 -d 0 -p ack -e 40 -c 0 -i 3348 -a 0 -x {10.0 9.0 1669 ------- null} h -t 1.90982 -s 7 -d 8 -p ack -e 40 -c 0 -i 3348 -a 0 -x {10.0 9.0 1669 ------- null} r -t 1.91011 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3333 -a 0 -x {9.0 10.0 1671 ------- null} + -t 1.91011 -s 10 -d 7 -p ack -e 40 -c 0 -i 3352 -a 0 -x {10.0 9.0 1671 ------- null} - -t 1.91011 -s 10 -d 7 -p ack -e 40 -c 0 -i 3352 -a 0 -x {10.0 9.0 1671 ------- null} h -t 1.91011 -s 10 -d 7 -p ack -e 40 -c 0 -i 3352 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.91011 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3347 -a 0 -x {9.0 10.0 1678 ------- null} + -t 1.91011 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3347 -a 0 -x {9.0 10.0 1678 ------- null} h -t 1.91011 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3347 -a 0 -x {9.0 10.0 1678 ------- null} r -t 1.91064 -s 0 -d 9 -p ack -e 40 -c 0 -i 3342 -a 0 -x {10.0 9.0 1666 ------- null} + -t 1.91064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3353 -a 0 -x {9.0 10.0 1681 ------- null} - -t 1.91064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3353 -a 0 -x {9.0 10.0 1681 ------- null} h -t 1.91064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3353 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.91072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3339 -a 0 -x {9.0 10.0 1674 ------- null} - -t 1.91072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3339 -a 0 -x {9.0 10.0 1674 ------- null} h -t 1.91072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3339 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.91091 -s 0 -d 9 -p ack -e 40 -c 0 -i 3346 -a 0 -x {10.0 9.0 1668 ------- null} - -t 1.91091 -s 0 -d 9 -p ack -e 40 -c 0 -i 3346 -a 0 -x {10.0 9.0 1668 ------- null} h -t 1.91091 -s 0 -d 9 -p ack -e 40 -c 0 -i 3346 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.91106 -s 10 -d 7 -p ack -e 40 -c 0 -i 3350 -a 0 -x {10.0 9.0 1670 ------- null} + -t 1.91106 -s 7 -d 0 -p ack -e 40 -c 0 -i 3350 -a 0 -x {10.0 9.0 1670 ------- null} h -t 1.91106 -s 7 -d 8 -p ack -e 40 -c 0 -i 3350 -a 0 -x {10.0 9.0 1670 ------- null} r -t 1.91118 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3349 -a 0 -x {9.0 10.0 1679 ------- null} + -t 1.91118 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3349 -a 0 -x {9.0 10.0 1679 ------- null} h -t 1.91118 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3349 -a 0 -x {9.0 10.0 1679 ------- null} r -t 1.9112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3335 -a 0 -x {9.0 10.0 1672 ------- null} + -t 1.9112 -s 10 -d 7 -p ack -e 40 -c 0 -i 3354 -a 0 -x {10.0 9.0 1672 ------- null} - -t 1.9112 -s 10 -d 7 -p ack -e 40 -c 0 -i 3354 -a 0 -x {10.0 9.0 1672 ------- null} h -t 1.9112 -s 10 -d 7 -p ack -e 40 -c 0 -i 3354 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.91181 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3341 -a 0 -x {9.0 10.0 1675 ------- null} - -t 1.91181 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3341 -a 0 -x {9.0 10.0 1675 ------- null} h -t 1.91181 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3341 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.91181 -s 0 -d 9 -p ack -e 40 -c 0 -i 3344 -a 0 -x {10.0 9.0 1667 ------- null} + -t 1.91181 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3355 -a 0 -x {9.0 10.0 1682 ------- null} - -t 1.91181 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3355 -a 0 -x {9.0 10.0 1682 ------- null} h -t 1.91181 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3355 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.91206 -s 0 -d 9 -p ack -e 40 -c 0 -i 3348 -a 0 -x {10.0 9.0 1669 ------- null} - -t 1.91206 -s 0 -d 9 -p ack -e 40 -c 0 -i 3348 -a 0 -x {10.0 9.0 1669 ------- null} h -t 1.91206 -s 0 -d 9 -p ack -e 40 -c 0 -i 3348 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.91214 -s 10 -d 7 -p ack -e 40 -c 0 -i 3352 -a 0 -x {10.0 9.0 1671 ------- null} + -t 1.91214 -s 7 -d 0 -p ack -e 40 -c 0 -i 3352 -a 0 -x {10.0 9.0 1671 ------- null} h -t 1.91214 -s 7 -d 8 -p ack -e 40 -c 0 -i 3352 -a 0 -x {10.0 9.0 1671 ------- null} r -t 1.91229 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3337 -a 0 -x {9.0 10.0 1673 ------- null} + -t 1.91229 -s 10 -d 7 -p ack -e 40 -c 0 -i 3356 -a 0 -x {10.0 9.0 1673 ------- null} - -t 1.91229 -s 10 -d 7 -p ack -e 40 -c 0 -i 3356 -a 0 -x {10.0 9.0 1673 ------- null} h -t 1.91229 -s 10 -d 7 -p ack -e 40 -c 0 -i 3356 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.91238 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3351 -a 0 -x {9.0 10.0 1680 ------- null} + -t 1.91238 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3351 -a 0 -x {9.0 10.0 1680 ------- null} h -t 1.91238 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3351 -a 0 -x {9.0 10.0 1680 ------- null} + -t 1.9129 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3343 -a 0 -x {9.0 10.0 1676 ------- null} - -t 1.9129 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3343 -a 0 -x {9.0 10.0 1676 ------- null} h -t 1.9129 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3343 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.91294 -s 0 -d 9 -p ack -e 40 -c 0 -i 3346 -a 0 -x {10.0 9.0 1668 ------- null} + -t 1.91294 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3357 -a 0 -x {9.0 10.0 1683 ------- null} - -t 1.91294 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3357 -a 0 -x {9.0 10.0 1683 ------- null} h -t 1.91294 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3357 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.91315 -s 0 -d 9 -p ack -e 40 -c 0 -i 3350 -a 0 -x {10.0 9.0 1670 ------- null} - -t 1.91315 -s 0 -d 9 -p ack -e 40 -c 0 -i 3350 -a 0 -x {10.0 9.0 1670 ------- null} h -t 1.91315 -s 0 -d 9 -p ack -e 40 -c 0 -i 3350 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.91323 -s 10 -d 7 -p ack -e 40 -c 0 -i 3354 -a 0 -x {10.0 9.0 1672 ------- null} + -t 1.91323 -s 7 -d 0 -p ack -e 40 -c 0 -i 3354 -a 0 -x {10.0 9.0 1672 ------- null} h -t 1.91323 -s 7 -d 8 -p ack -e 40 -c 0 -i 3354 -a 0 -x {10.0 9.0 1672 ------- null} r -t 1.91344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3353 -a 0 -x {9.0 10.0 1681 ------- null} + -t 1.91344 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3353 -a 0 -x {9.0 10.0 1681 ------- null} h -t 1.91344 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3353 -a 0 -x {9.0 10.0 1681 ------- null} r -t 1.91352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3339 -a 0 -x {9.0 10.0 1674 ------- null} + -t 1.91352 -s 10 -d 7 -p ack -e 40 -c 0 -i 3358 -a 0 -x {10.0 9.0 1674 ------- null} - -t 1.91352 -s 10 -d 7 -p ack -e 40 -c 0 -i 3358 -a 0 -x {10.0 9.0 1674 ------- null} h -t 1.91352 -s 10 -d 7 -p ack -e 40 -c 0 -i 3358 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.91398 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3345 -a 0 -x {9.0 10.0 1677 ------- null} - -t 1.91398 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3345 -a 0 -x {9.0 10.0 1677 ------- null} h -t 1.91398 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3345 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.9141 -s 0 -d 9 -p ack -e 40 -c 0 -i 3348 -a 0 -x {10.0 9.0 1669 ------- null} + -t 1.9141 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3359 -a 0 -x {9.0 10.0 1684 ------- null} - -t 1.9141 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3359 -a 0 -x {9.0 10.0 1684 ------- null} h -t 1.9141 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3359 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.91416 -s 0 -d 9 -p ack -e 40 -c 0 -i 3352 -a 0 -x {10.0 9.0 1671 ------- null} - -t 1.91416 -s 0 -d 9 -p ack -e 40 -c 0 -i 3352 -a 0 -x {10.0 9.0 1671 ------- null} h -t 1.91416 -s 0 -d 9 -p ack -e 40 -c 0 -i 3352 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.91432 -s 10 -d 7 -p ack -e 40 -c 0 -i 3356 -a 0 -x {10.0 9.0 1673 ------- null} + -t 1.91432 -s 7 -d 0 -p ack -e 40 -c 0 -i 3356 -a 0 -x {10.0 9.0 1673 ------- null} h -t 1.91432 -s 7 -d 8 -p ack -e 40 -c 0 -i 3356 -a 0 -x {10.0 9.0 1673 ------- null} r -t 1.91461 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3341 -a 0 -x {9.0 10.0 1675 ------- null} + -t 1.91461 -s 10 -d 7 -p ack -e 40 -c 0 -i 3360 -a 0 -x {10.0 9.0 1675 ------- null} - -t 1.91461 -s 10 -d 7 -p ack -e 40 -c 0 -i 3360 -a 0 -x {10.0 9.0 1675 ------- null} h -t 1.91461 -s 10 -d 7 -p ack -e 40 -c 0 -i 3360 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.91461 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3355 -a 0 -x {9.0 10.0 1682 ------- null} + -t 1.91461 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3355 -a 0 -x {9.0 10.0 1682 ------- null} h -t 1.91461 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3355 -a 0 -x {9.0 10.0 1682 ------- null} + -t 1.91507 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3347 -a 0 -x {9.0 10.0 1678 ------- null} - -t 1.91507 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3347 -a 0 -x {9.0 10.0 1678 ------- null} h -t 1.91507 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3347 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.91518 -s 0 -d 9 -p ack -e 40 -c 0 -i 3350 -a 0 -x {10.0 9.0 1670 ------- null} + -t 1.91518 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3361 -a 0 -x {9.0 10.0 1685 ------- null} - -t 1.91518 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3361 -a 0 -x {9.0 10.0 1685 ------- null} h -t 1.91518 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3361 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.91518 -s 0 -d 9 -p ack -e 40 -c 0 -i 3354 -a 0 -x {10.0 9.0 1672 ------- null} - -t 1.91518 -s 0 -d 9 -p ack -e 40 -c 0 -i 3354 -a 0 -x {10.0 9.0 1672 ------- null} h -t 1.91518 -s 0 -d 9 -p ack -e 40 -c 0 -i 3354 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.91555 -s 10 -d 7 -p ack -e 40 -c 0 -i 3358 -a 0 -x {10.0 9.0 1674 ------- null} + -t 1.91555 -s 7 -d 0 -p ack -e 40 -c 0 -i 3358 -a 0 -x {10.0 9.0 1674 ------- null} h -t 1.91555 -s 7 -d 8 -p ack -e 40 -c 0 -i 3358 -a 0 -x {10.0 9.0 1674 ------- null} r -t 1.9157 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3343 -a 0 -x {9.0 10.0 1676 ------- null} + -t 1.9157 -s 10 -d 7 -p ack -e 40 -c 0 -i 3362 -a 0 -x {10.0 9.0 1676 ------- null} - -t 1.9157 -s 10 -d 7 -p ack -e 40 -c 0 -i 3362 -a 0 -x {10.0 9.0 1676 ------- null} h -t 1.9157 -s 10 -d 7 -p ack -e 40 -c 0 -i 3362 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.91574 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3357 -a 0 -x {9.0 10.0 1683 ------- null} + -t 1.91574 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3357 -a 0 -x {9.0 10.0 1683 ------- null} h -t 1.91574 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3357 -a 0 -x {9.0 10.0 1683 ------- null} + -t 1.91616 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3349 -a 0 -x {9.0 10.0 1679 ------- null} - -t 1.91616 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3349 -a 0 -x {9.0 10.0 1679 ------- null} h -t 1.91616 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3349 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.91619 -s 0 -d 9 -p ack -e 40 -c 0 -i 3352 -a 0 -x {10.0 9.0 1671 ------- null} + -t 1.91619 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3363 -a 0 -x {9.0 10.0 1686 ------- null} - -t 1.91619 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3363 -a 0 -x {9.0 10.0 1686 ------- null} h -t 1.91619 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3363 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.91624 -s 0 -d 9 -p ack -e 40 -c 0 -i 3356 -a 0 -x {10.0 9.0 1673 ------- null} - -t 1.91624 -s 0 -d 9 -p ack -e 40 -c 0 -i 3356 -a 0 -x {10.0 9.0 1673 ------- null} h -t 1.91624 -s 0 -d 9 -p ack -e 40 -c 0 -i 3356 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.91664 -s 10 -d 7 -p ack -e 40 -c 0 -i 3360 -a 0 -x {10.0 9.0 1675 ------- null} + -t 1.91664 -s 7 -d 0 -p ack -e 40 -c 0 -i 3360 -a 0 -x {10.0 9.0 1675 ------- null} h -t 1.91664 -s 7 -d 8 -p ack -e 40 -c 0 -i 3360 -a 0 -x {10.0 9.0 1675 ------- null} r -t 1.91678 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3345 -a 0 -x {9.0 10.0 1677 ------- null} + -t 1.91678 -s 10 -d 7 -p ack -e 40 -c 0 -i 3364 -a 0 -x {10.0 9.0 1677 ------- null} - -t 1.91678 -s 10 -d 7 -p ack -e 40 -c 0 -i 3364 -a 0 -x {10.0 9.0 1677 ------- null} h -t 1.91678 -s 10 -d 7 -p ack -e 40 -c 0 -i 3364 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.9169 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3359 -a 0 -x {9.0 10.0 1684 ------- null} + -t 1.9169 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3359 -a 0 -x {9.0 10.0 1684 ------- null} h -t 1.9169 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3359 -a 0 -x {9.0 10.0 1684 ------- null} r -t 1.91722 -s 0 -d 9 -p ack -e 40 -c 0 -i 3354 -a 0 -x {10.0 9.0 1672 ------- null} + -t 1.91722 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3365 -a 0 -x {9.0 10.0 1687 ------- null} - -t 1.91722 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3365 -a 0 -x {9.0 10.0 1687 ------- null} h -t 1.91722 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3365 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.91725 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3351 -a 0 -x {9.0 10.0 1680 ------- null} - -t 1.91725 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3351 -a 0 -x {9.0 10.0 1680 ------- null} h -t 1.91725 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3351 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.91742 -s 0 -d 9 -p ack -e 40 -c 0 -i 3358 -a 0 -x {10.0 9.0 1674 ------- null} - -t 1.91742 -s 0 -d 9 -p ack -e 40 -c 0 -i 3358 -a 0 -x {10.0 9.0 1674 ------- null} h -t 1.91742 -s 0 -d 9 -p ack -e 40 -c 0 -i 3358 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.91773 -s 10 -d 7 -p ack -e 40 -c 0 -i 3362 -a 0 -x {10.0 9.0 1676 ------- null} + -t 1.91773 -s 7 -d 0 -p ack -e 40 -c 0 -i 3362 -a 0 -x {10.0 9.0 1676 ------- null} h -t 1.91773 -s 7 -d 8 -p ack -e 40 -c 0 -i 3362 -a 0 -x {10.0 9.0 1676 ------- null} r -t 1.91787 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3347 -a 0 -x {9.0 10.0 1678 ------- null} + -t 1.91787 -s 10 -d 7 -p ack -e 40 -c 0 -i 3366 -a 0 -x {10.0 9.0 1678 ------- null} - -t 1.91787 -s 10 -d 7 -p ack -e 40 -c 0 -i 3366 -a 0 -x {10.0 9.0 1678 ------- null} h -t 1.91787 -s 10 -d 7 -p ack -e 40 -c 0 -i 3366 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.91798 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3361 -a 0 -x {9.0 10.0 1685 ------- null} + -t 1.91798 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3361 -a 0 -x {9.0 10.0 1685 ------- null} h -t 1.91798 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3361 -a 0 -x {9.0 10.0 1685 ------- null} r -t 1.91827 -s 0 -d 9 -p ack -e 40 -c 0 -i 3356 -a 0 -x {10.0 9.0 1673 ------- null} + -t 1.91827 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3367 -a 0 -x {9.0 10.0 1688 ------- null} - -t 1.91827 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3367 -a 0 -x {9.0 10.0 1688 ------- null} h -t 1.91827 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3367 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.91834 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3353 -a 0 -x {9.0 10.0 1681 ------- null} - -t 1.91834 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3353 -a 0 -x {9.0 10.0 1681 ------- null} h -t 1.91834 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3353 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.91864 -s 0 -d 9 -p ack -e 40 -c 0 -i 3360 -a 0 -x {10.0 9.0 1675 ------- null} - -t 1.91864 -s 0 -d 9 -p ack -e 40 -c 0 -i 3360 -a 0 -x {10.0 9.0 1675 ------- null} h -t 1.91864 -s 0 -d 9 -p ack -e 40 -c 0 -i 3360 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.91882 -s 10 -d 7 -p ack -e 40 -c 0 -i 3364 -a 0 -x {10.0 9.0 1677 ------- null} + -t 1.91882 -s 7 -d 0 -p ack -e 40 -c 0 -i 3364 -a 0 -x {10.0 9.0 1677 ------- null} h -t 1.91882 -s 7 -d 8 -p ack -e 40 -c 0 -i 3364 -a 0 -x {10.0 9.0 1677 ------- null} r -t 1.91896 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3349 -a 0 -x {9.0 10.0 1679 ------- null} + -t 1.91896 -s 10 -d 7 -p ack -e 40 -c 0 -i 3368 -a 0 -x {10.0 9.0 1679 ------- null} - -t 1.91896 -s 10 -d 7 -p ack -e 40 -c 0 -i 3368 -a 0 -x {10.0 9.0 1679 ------- null} h -t 1.91896 -s 10 -d 7 -p ack -e 40 -c 0 -i 3368 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.91899 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3363 -a 0 -x {9.0 10.0 1686 ------- null} + -t 1.91899 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3363 -a 0 -x {9.0 10.0 1686 ------- null} h -t 1.91899 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3363 -a 0 -x {9.0 10.0 1686 ------- null} r -t 1.91946 -s 0 -d 9 -p ack -e 40 -c 0 -i 3358 -a 0 -x {10.0 9.0 1674 ------- null} + -t 1.91946 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3369 -a 0 -x {9.0 10.0 1689 ------- null} - -t 1.91946 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3369 -a 0 -x {9.0 10.0 1689 ------- null} h -t 1.91946 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3369 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.91947 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3355 -a 0 -x {9.0 10.0 1682 ------- null} - -t 1.91947 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3355 -a 0 -x {9.0 10.0 1682 ------- null} h -t 1.91947 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3355 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.91954 -s 0 -d 9 -p ack -e 40 -c 0 -i 3362 -a 0 -x {10.0 9.0 1676 ------- null} - -t 1.91954 -s 0 -d 9 -p ack -e 40 -c 0 -i 3362 -a 0 -x {10.0 9.0 1676 ------- null} h -t 1.91954 -s 0 -d 9 -p ack -e 40 -c 0 -i 3362 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.9199 -s 10 -d 7 -p ack -e 40 -c 0 -i 3366 -a 0 -x {10.0 9.0 1678 ------- null} + -t 1.9199 -s 7 -d 0 -p ack -e 40 -c 0 -i 3366 -a 0 -x {10.0 9.0 1678 ------- null} h -t 1.9199 -s 7 -d 8 -p ack -e 40 -c 0 -i 3366 -a 0 -x {10.0 9.0 1678 ------- null} r -t 1.92002 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3365 -a 0 -x {9.0 10.0 1687 ------- null} + -t 1.92002 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3365 -a 0 -x {9.0 10.0 1687 ------- null} h -t 1.92002 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3365 -a 0 -x {9.0 10.0 1687 ------- null} r -t 1.92005 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3351 -a 0 -x {9.0 10.0 1680 ------- null} + -t 1.92005 -s 10 -d 7 -p ack -e 40 -c 0 -i 3370 -a 0 -x {10.0 9.0 1680 ------- null} - -t 1.92005 -s 10 -d 7 -p ack -e 40 -c 0 -i 3370 -a 0 -x {10.0 9.0 1680 ------- null} h -t 1.92005 -s 10 -d 7 -p ack -e 40 -c 0 -i 3370 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.92056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3357 -a 0 -x {9.0 10.0 1683 ------- null} - -t 1.92056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3357 -a 0 -x {9.0 10.0 1683 ------- null} h -t 1.92056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3357 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.92067 -s 0 -d 9 -p ack -e 40 -c 0 -i 3360 -a 0 -x {10.0 9.0 1675 ------- null} + -t 1.92067 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3371 -a 0 -x {9.0 10.0 1690 ------- null} - -t 1.92067 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3371 -a 0 -x {9.0 10.0 1690 ------- null} h -t 1.92067 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3371 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.92085 -s 0 -d 9 -p ack -e 40 -c 0 -i 3364 -a 0 -x {10.0 9.0 1677 ------- null} - -t 1.92085 -s 0 -d 9 -p ack -e 40 -c 0 -i 3364 -a 0 -x {10.0 9.0 1677 ------- null} h -t 1.92085 -s 0 -d 9 -p ack -e 40 -c 0 -i 3364 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.92099 -s 10 -d 7 -p ack -e 40 -c 0 -i 3368 -a 0 -x {10.0 9.0 1679 ------- null} + -t 1.92099 -s 7 -d 0 -p ack -e 40 -c 0 -i 3368 -a 0 -x {10.0 9.0 1679 ------- null} h -t 1.92099 -s 7 -d 8 -p ack -e 40 -c 0 -i 3368 -a 0 -x {10.0 9.0 1679 ------- null} r -t 1.92107 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3367 -a 0 -x {9.0 10.0 1688 ------- null} + -t 1.92107 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3367 -a 0 -x {9.0 10.0 1688 ------- null} h -t 1.92107 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3367 -a 0 -x {9.0 10.0 1688 ------- null} r -t 1.92114 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3353 -a 0 -x {9.0 10.0 1681 ------- null} + -t 1.92114 -s 10 -d 7 -p ack -e 40 -c 0 -i 3372 -a 0 -x {10.0 9.0 1681 ------- null} - -t 1.92114 -s 10 -d 7 -p ack -e 40 -c 0 -i 3372 -a 0 -x {10.0 9.0 1681 ------- null} h -t 1.92114 -s 10 -d 7 -p ack -e 40 -c 0 -i 3372 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.92157 -s 0 -d 9 -p ack -e 40 -c 0 -i 3362 -a 0 -x {10.0 9.0 1676 ------- null} + -t 1.92157 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3373 -a 0 -x {9.0 10.0 1691 ------- null} - -t 1.92157 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3373 -a 0 -x {9.0 10.0 1691 ------- null} h -t 1.92157 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3373 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.92189 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3359 -a 0 -x {9.0 10.0 1684 ------- null} - -t 1.92189 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3359 -a 0 -x {9.0 10.0 1684 ------- null} h -t 1.92189 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3359 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.92208 -s 10 -d 7 -p ack -e 40 -c 0 -i 3370 -a 0 -x {10.0 9.0 1680 ------- null} + -t 1.92208 -s 7 -d 0 -p ack -e 40 -c 0 -i 3370 -a 0 -x {10.0 9.0 1680 ------- null} h -t 1.92208 -s 7 -d 8 -p ack -e 40 -c 0 -i 3370 -a 0 -x {10.0 9.0 1680 ------- null} + -t 1.92213 -s 0 -d 9 -p ack -e 40 -c 0 -i 3366 -a 0 -x {10.0 9.0 1678 ------- null} - -t 1.92213 -s 0 -d 9 -p ack -e 40 -c 0 -i 3366 -a 0 -x {10.0 9.0 1678 ------- null} h -t 1.92213 -s 0 -d 9 -p ack -e 40 -c 0 -i 3366 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.92226 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3369 -a 0 -x {9.0 10.0 1689 ------- null} + -t 1.92226 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3369 -a 0 -x {9.0 10.0 1689 ------- null} h -t 1.92226 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3369 -a 0 -x {9.0 10.0 1689 ------- null} r -t 1.92227 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3355 -a 0 -x {9.0 10.0 1682 ------- null} + -t 1.92227 -s 10 -d 7 -p ack -e 40 -c 0 -i 3374 -a 0 -x {10.0 9.0 1682 ------- null} - -t 1.92227 -s 10 -d 7 -p ack -e 40 -c 0 -i 3374 -a 0 -x {10.0 9.0 1682 ------- null} h -t 1.92227 -s 10 -d 7 -p ack -e 40 -c 0 -i 3374 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.92288 -s 0 -d 9 -p ack -e 40 -c 0 -i 3364 -a 0 -x {10.0 9.0 1677 ------- null} + -t 1.92288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3375 -a 0 -x {9.0 10.0 1692 ------- null} - -t 1.92288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3375 -a 0 -x {9.0 10.0 1692 ------- null} h -t 1.92288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3375 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.92298 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3361 -a 0 -x {9.0 10.0 1685 ------- null} - -t 1.92298 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3361 -a 0 -x {9.0 10.0 1685 ------- null} h -t 1.92298 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3361 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.92306 -s 0 -d 9 -p ack -e 40 -c 0 -i 3368 -a 0 -x {10.0 9.0 1679 ------- null} - -t 1.92306 -s 0 -d 9 -p ack -e 40 -c 0 -i 3368 -a 0 -x {10.0 9.0 1679 ------- null} h -t 1.92306 -s 0 -d 9 -p ack -e 40 -c 0 -i 3368 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.92317 -s 10 -d 7 -p ack -e 40 -c 0 -i 3372 -a 0 -x {10.0 9.0 1681 ------- null} + -t 1.92317 -s 7 -d 0 -p ack -e 40 -c 0 -i 3372 -a 0 -x {10.0 9.0 1681 ------- null} h -t 1.92317 -s 7 -d 8 -p ack -e 40 -c 0 -i 3372 -a 0 -x {10.0 9.0 1681 ------- null} r -t 1.92336 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3357 -a 0 -x {9.0 10.0 1683 ------- null} + -t 1.92336 -s 10 -d 7 -p ack -e 40 -c 0 -i 3376 -a 0 -x {10.0 9.0 1683 ------- null} - -t 1.92336 -s 10 -d 7 -p ack -e 40 -c 0 -i 3376 -a 0 -x {10.0 9.0 1683 ------- null} h -t 1.92336 -s 10 -d 7 -p ack -e 40 -c 0 -i 3376 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.92347 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3371 -a 0 -x {9.0 10.0 1690 ------- null} + -t 1.92347 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3371 -a 0 -x {9.0 10.0 1690 ------- null} h -t 1.92347 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3371 -a 0 -x {9.0 10.0 1690 ------- null} + -t 1.92406 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3363 -a 0 -x {9.0 10.0 1686 ------- null} - -t 1.92406 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3363 -a 0 -x {9.0 10.0 1686 ------- null} h -t 1.92406 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3363 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.92416 -s 0 -d 9 -p ack -e 40 -c 0 -i 3366 -a 0 -x {10.0 9.0 1678 ------- null} + -t 1.92416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3377 -a 0 -x {9.0 10.0 1693 ------- null} - -t 1.92416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3377 -a 0 -x {9.0 10.0 1693 ------- null} h -t 1.92416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3377 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.92429 -s 0 -d 9 -p ack -e 40 -c 0 -i 3370 -a 0 -x {10.0 9.0 1680 ------- null} - -t 1.92429 -s 0 -d 9 -p ack -e 40 -c 0 -i 3370 -a 0 -x {10.0 9.0 1680 ------- null} h -t 1.92429 -s 0 -d 9 -p ack -e 40 -c 0 -i 3370 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.9243 -s 10 -d 7 -p ack -e 40 -c 0 -i 3374 -a 0 -x {10.0 9.0 1682 ------- null} + -t 1.9243 -s 7 -d 0 -p ack -e 40 -c 0 -i 3374 -a 0 -x {10.0 9.0 1682 ------- null} h -t 1.9243 -s 7 -d 8 -p ack -e 40 -c 0 -i 3374 -a 0 -x {10.0 9.0 1682 ------- null} r -t 1.92437 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3373 -a 0 -x {9.0 10.0 1691 ------- null} + -t 1.92437 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3373 -a 0 -x {9.0 10.0 1691 ------- null} h -t 1.92437 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3373 -a 0 -x {9.0 10.0 1691 ------- null} r -t 1.92469 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3359 -a 0 -x {9.0 10.0 1684 ------- null} + -t 1.92469 -s 10 -d 7 -p ack -e 40 -c 0 -i 3378 -a 0 -x {10.0 9.0 1684 ------- null} - -t 1.92469 -s 10 -d 7 -p ack -e 40 -c 0 -i 3378 -a 0 -x {10.0 9.0 1684 ------- null} h -t 1.92469 -s 10 -d 7 -p ack -e 40 -c 0 -i 3378 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.92509 -s 0 -d 9 -p ack -e 40 -c 0 -i 3368 -a 0 -x {10.0 9.0 1679 ------- null} + -t 1.92509 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3379 -a 0 -x {9.0 10.0 1694 ------- null} - -t 1.92509 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3379 -a 0 -x {9.0 10.0 1694 ------- null} h -t 1.92509 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3379 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.92515 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3365 -a 0 -x {9.0 10.0 1687 ------- null} - -t 1.92515 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3365 -a 0 -x {9.0 10.0 1687 ------- null} h -t 1.92515 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3365 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.92522 -s 0 -d 9 -p ack -e 40 -c 0 -i 3372 -a 0 -x {10.0 9.0 1681 ------- null} - -t 1.92522 -s 0 -d 9 -p ack -e 40 -c 0 -i 3372 -a 0 -x {10.0 9.0 1681 ------- null} h -t 1.92522 -s 0 -d 9 -p ack -e 40 -c 0 -i 3372 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.92539 -s 10 -d 7 -p ack -e 40 -c 0 -i 3376 -a 0 -x {10.0 9.0 1683 ------- null} + -t 1.92539 -s 7 -d 0 -p ack -e 40 -c 0 -i 3376 -a 0 -x {10.0 9.0 1683 ------- null} h -t 1.92539 -s 7 -d 8 -p ack -e 40 -c 0 -i 3376 -a 0 -x {10.0 9.0 1683 ------- null} r -t 1.92568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3375 -a 0 -x {9.0 10.0 1692 ------- null} + -t 1.92568 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3375 -a 0 -x {9.0 10.0 1692 ------- null} h -t 1.92568 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3375 -a 0 -x {9.0 10.0 1692 ------- null} r -t 1.92578 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3361 -a 0 -x {9.0 10.0 1685 ------- null} + -t 1.92578 -s 10 -d 7 -p ack -e 40 -c 0 -i 3380 -a 0 -x {10.0 9.0 1685 ------- null} - -t 1.92578 -s 10 -d 7 -p ack -e 40 -c 0 -i 3380 -a 0 -x {10.0 9.0 1685 ------- null} h -t 1.92578 -s 10 -d 7 -p ack -e 40 -c 0 -i 3380 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.92624 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3367 -a 0 -x {9.0 10.0 1688 ------- null} - -t 1.92624 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3367 -a 0 -x {9.0 10.0 1688 ------- null} h -t 1.92624 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3367 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.92632 -s 0 -d 9 -p ack -e 40 -c 0 -i 3370 -a 0 -x {10.0 9.0 1680 ------- null} + -t 1.92632 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3381 -a 0 -x {9.0 10.0 1695 ------- null} - -t 1.92632 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3381 -a 0 -x {9.0 10.0 1695 ------- null} h -t 1.92632 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3381 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.92648 -s 0 -d 9 -p ack -e 40 -c 0 -i 3374 -a 0 -x {10.0 9.0 1682 ------- null} - -t 1.92648 -s 0 -d 9 -p ack -e 40 -c 0 -i 3374 -a 0 -x {10.0 9.0 1682 ------- null} h -t 1.92648 -s 0 -d 9 -p ack -e 40 -c 0 -i 3374 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.92672 -s 10 -d 7 -p ack -e 40 -c 0 -i 3378 -a 0 -x {10.0 9.0 1684 ------- null} + -t 1.92672 -s 7 -d 0 -p ack -e 40 -c 0 -i 3378 -a 0 -x {10.0 9.0 1684 ------- null} h -t 1.92672 -s 7 -d 8 -p ack -e 40 -c 0 -i 3378 -a 0 -x {10.0 9.0 1684 ------- null} r -t 1.92686 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3363 -a 0 -x {9.0 10.0 1686 ------- null} + -t 1.92686 -s 10 -d 7 -p ack -e 40 -c 0 -i 3382 -a 0 -x {10.0 9.0 1686 ------- null} - -t 1.92686 -s 10 -d 7 -p ack -e 40 -c 0 -i 3382 -a 0 -x {10.0 9.0 1686 ------- null} h -t 1.92686 -s 10 -d 7 -p ack -e 40 -c 0 -i 3382 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.92696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3377 -a 0 -x {9.0 10.0 1693 ------- null} + -t 1.92696 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3377 -a 0 -x {9.0 10.0 1693 ------- null} h -t 1.92696 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3377 -a 0 -x {9.0 10.0 1693 ------- null} r -t 1.92725 -s 0 -d 9 -p ack -e 40 -c 0 -i 3372 -a 0 -x {10.0 9.0 1681 ------- null} + -t 1.92725 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3383 -a 0 -x {9.0 10.0 1696 ------- null} - -t 1.92725 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3383 -a 0 -x {9.0 10.0 1696 ------- null} h -t 1.92725 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3383 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.92733 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3369 -a 0 -x {9.0 10.0 1689 ------- null} - -t 1.92733 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3369 -a 0 -x {9.0 10.0 1689 ------- null} h -t 1.92733 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3369 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.92763 -s 0 -d 9 -p ack -e 40 -c 0 -i 3376 -a 0 -x {10.0 9.0 1683 ------- null} - -t 1.92763 -s 0 -d 9 -p ack -e 40 -c 0 -i 3376 -a 0 -x {10.0 9.0 1683 ------- null} h -t 1.92763 -s 0 -d 9 -p ack -e 40 -c 0 -i 3376 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.92781 -s 10 -d 7 -p ack -e 40 -c 0 -i 3380 -a 0 -x {10.0 9.0 1685 ------- null} + -t 1.92781 -s 7 -d 0 -p ack -e 40 -c 0 -i 3380 -a 0 -x {10.0 9.0 1685 ------- null} h -t 1.92781 -s 7 -d 8 -p ack -e 40 -c 0 -i 3380 -a 0 -x {10.0 9.0 1685 ------- null} r -t 1.92789 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3379 -a 0 -x {9.0 10.0 1694 ------- null} + -t 1.92789 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3379 -a 0 -x {9.0 10.0 1694 ------- null} h -t 1.92789 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3379 -a 0 -x {9.0 10.0 1694 ------- null} r -t 1.92795 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3365 -a 0 -x {9.0 10.0 1687 ------- null} + -t 1.92795 -s 10 -d 7 -p ack -e 40 -c 0 -i 3384 -a 0 -x {10.0 9.0 1687 ------- null} - -t 1.92795 -s 10 -d 7 -p ack -e 40 -c 0 -i 3384 -a 0 -x {10.0 9.0 1687 ------- null} h -t 1.92795 -s 10 -d 7 -p ack -e 40 -c 0 -i 3384 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.92848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3371 -a 0 -x {9.0 10.0 1690 ------- null} - -t 1.92848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3371 -a 0 -x {9.0 10.0 1690 ------- null} h -t 1.92848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3371 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.92851 -s 0 -d 9 -p ack -e 40 -c 0 -i 3374 -a 0 -x {10.0 9.0 1682 ------- null} + -t 1.92851 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3385 -a 0 -x {9.0 10.0 1697 ------- null} - -t 1.92851 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3385 -a 0 -x {9.0 10.0 1697 ------- null} h -t 1.92851 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3385 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.9287 -s 0 -d 9 -p ack -e 40 -c 0 -i 3378 -a 0 -x {10.0 9.0 1684 ------- null} - -t 1.9287 -s 0 -d 9 -p ack -e 40 -c 0 -i 3378 -a 0 -x {10.0 9.0 1684 ------- null} h -t 1.9287 -s 0 -d 9 -p ack -e 40 -c 0 -i 3378 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.9289 -s 10 -d 7 -p ack -e 40 -c 0 -i 3382 -a 0 -x {10.0 9.0 1686 ------- null} + -t 1.9289 -s 7 -d 0 -p ack -e 40 -c 0 -i 3382 -a 0 -x {10.0 9.0 1686 ------- null} h -t 1.9289 -s 7 -d 8 -p ack -e 40 -c 0 -i 3382 -a 0 -x {10.0 9.0 1686 ------- null} r -t 1.92904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3367 -a 0 -x {9.0 10.0 1688 ------- null} + -t 1.92904 -s 10 -d 7 -p ack -e 40 -c 0 -i 3386 -a 0 -x {10.0 9.0 1688 ------- null} - -t 1.92904 -s 10 -d 7 -p ack -e 40 -c 0 -i 3386 -a 0 -x {10.0 9.0 1688 ------- null} h -t 1.92904 -s 10 -d 7 -p ack -e 40 -c 0 -i 3386 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.92912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3381 -a 0 -x {9.0 10.0 1695 ------- null} + -t 1.92912 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3381 -a 0 -x {9.0 10.0 1695 ------- null} h -t 1.92912 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3381 -a 0 -x {9.0 10.0 1695 ------- null} + -t 1.92957 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3373 -a 0 -x {9.0 10.0 1691 ------- null} - -t 1.92957 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3373 -a 0 -x {9.0 10.0 1691 ------- null} h -t 1.92957 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3373 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.92966 -s 0 -d 9 -p ack -e 40 -c 0 -i 3376 -a 0 -x {10.0 9.0 1683 ------- null} + -t 1.92966 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3387 -a 0 -x {9.0 10.0 1698 ------- null} - -t 1.92966 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3387 -a 0 -x {9.0 10.0 1698 ------- null} h -t 1.92966 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3387 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.92984 -s 0 -d 9 -p ack -e 40 -c 0 -i 3380 -a 0 -x {10.0 9.0 1685 ------- null} - -t 1.92984 -s 0 -d 9 -p ack -e 40 -c 0 -i 3380 -a 0 -x {10.0 9.0 1685 ------- null} h -t 1.92984 -s 0 -d 9 -p ack -e 40 -c 0 -i 3380 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.92998 -s 10 -d 7 -p ack -e 40 -c 0 -i 3384 -a 0 -x {10.0 9.0 1687 ------- null} + -t 1.92998 -s 7 -d 0 -p ack -e 40 -c 0 -i 3384 -a 0 -x {10.0 9.0 1687 ------- null} h -t 1.92998 -s 7 -d 8 -p ack -e 40 -c 0 -i 3384 -a 0 -x {10.0 9.0 1687 ------- null} r -t 1.93005 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3383 -a 0 -x {9.0 10.0 1696 ------- null} + -t 1.93005 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3383 -a 0 -x {9.0 10.0 1696 ------- null} h -t 1.93005 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3383 -a 0 -x {9.0 10.0 1696 ------- null} r -t 1.93013 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3369 -a 0 -x {9.0 10.0 1689 ------- null} + -t 1.93013 -s 10 -d 7 -p ack -e 40 -c 0 -i 3388 -a 0 -x {10.0 9.0 1689 ------- null} - -t 1.93013 -s 10 -d 7 -p ack -e 40 -c 0 -i 3388 -a 0 -x {10.0 9.0 1689 ------- null} h -t 1.93013 -s 10 -d 7 -p ack -e 40 -c 0 -i 3388 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.93074 -s 0 -d 9 -p ack -e 40 -c 0 -i 3378 -a 0 -x {10.0 9.0 1684 ------- null} + -t 1.93074 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3389 -a 0 -x {9.0 10.0 1699 ------- null} - -t 1.93074 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3389 -a 0 -x {9.0 10.0 1699 ------- null} h -t 1.93074 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3389 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.93086 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3375 -a 0 -x {9.0 10.0 1692 ------- null} - -t 1.93086 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3375 -a 0 -x {9.0 10.0 1692 ------- null} h -t 1.93086 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3375 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.93102 -s 0 -d 9 -p ack -e 40 -c 0 -i 3382 -a 0 -x {10.0 9.0 1686 ------- null} - -t 1.93102 -s 0 -d 9 -p ack -e 40 -c 0 -i 3382 -a 0 -x {10.0 9.0 1686 ------- null} h -t 1.93102 -s 0 -d 9 -p ack -e 40 -c 0 -i 3382 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.93107 -s 10 -d 7 -p ack -e 40 -c 0 -i 3386 -a 0 -x {10.0 9.0 1688 ------- null} + -t 1.93107 -s 7 -d 0 -p ack -e 40 -c 0 -i 3386 -a 0 -x {10.0 9.0 1688 ------- null} h -t 1.93107 -s 7 -d 8 -p ack -e 40 -c 0 -i 3386 -a 0 -x {10.0 9.0 1688 ------- null} r -t 1.93128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3371 -a 0 -x {9.0 10.0 1690 ------- null} + -t 1.93128 -s 10 -d 7 -p ack -e 40 -c 0 -i 3390 -a 0 -x {10.0 9.0 1690 ------- null} - -t 1.93128 -s 10 -d 7 -p ack -e 40 -c 0 -i 3390 -a 0 -x {10.0 9.0 1690 ------- null} h -t 1.93128 -s 10 -d 7 -p ack -e 40 -c 0 -i 3390 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.93131 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3385 -a 0 -x {9.0 10.0 1697 ------- null} + -t 1.93131 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3385 -a 0 -x {9.0 10.0 1697 ------- null} h -t 1.93131 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3385 -a 0 -x {9.0 10.0 1697 ------- null} r -t 1.93187 -s 0 -d 9 -p ack -e 40 -c 0 -i 3380 -a 0 -x {10.0 9.0 1685 ------- null} + -t 1.93187 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3391 -a 0 -x {9.0 10.0 1700 ------- null} - -t 1.93187 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3391 -a 0 -x {9.0 10.0 1700 ------- null} h -t 1.93187 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3391 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.93195 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3377 -a 0 -x {9.0 10.0 1693 ------- null} - -t 1.93195 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3377 -a 0 -x {9.0 10.0 1693 ------- null} h -t 1.93195 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3377 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.93216 -s 10 -d 7 -p ack -e 40 -c 0 -i 3388 -a 0 -x {10.0 9.0 1689 ------- null} + -t 1.93216 -s 7 -d 0 -p ack -e 40 -c 0 -i 3388 -a 0 -x {10.0 9.0 1689 ------- null} h -t 1.93216 -s 7 -d 8 -p ack -e 40 -c 0 -i 3388 -a 0 -x {10.0 9.0 1689 ------- null} + -t 1.93224 -s 0 -d 9 -p ack -e 40 -c 0 -i 3384 -a 0 -x {10.0 9.0 1687 ------- null} - -t 1.93224 -s 0 -d 9 -p ack -e 40 -c 0 -i 3384 -a 0 -x {10.0 9.0 1687 ------- null} h -t 1.93224 -s 0 -d 9 -p ack -e 40 -c 0 -i 3384 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.93237 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3373 -a 0 -x {9.0 10.0 1691 ------- null} + -t 1.93237 -s 10 -d 7 -p ack -e 40 -c 0 -i 3392 -a 0 -x {10.0 9.0 1691 ------- null} - -t 1.93237 -s 10 -d 7 -p ack -e 40 -c 0 -i 3392 -a 0 -x {10.0 9.0 1691 ------- null} h -t 1.93237 -s 10 -d 7 -p ack -e 40 -c 0 -i 3392 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.93246 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3387 -a 0 -x {9.0 10.0 1698 ------- null} + -t 1.93246 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3387 -a 0 -x {9.0 10.0 1698 ------- null} h -t 1.93246 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3387 -a 0 -x {9.0 10.0 1698 ------- null} r -t 1.93306 -s 0 -d 9 -p ack -e 40 -c 0 -i 3382 -a 0 -x {10.0 9.0 1686 ------- null} + -t 1.93306 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3393 -a 0 -x {9.0 10.0 1701 ------- null} - -t 1.93306 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3393 -a 0 -x {9.0 10.0 1701 ------- null} h -t 1.93306 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3393 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.9331 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3379 -a 0 -x {9.0 10.0 1694 ------- null} - -t 1.9331 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3379 -a 0 -x {9.0 10.0 1694 ------- null} h -t 1.9331 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3379 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.9333 -s 0 -d 9 -p ack -e 40 -c 0 -i 3386 -a 0 -x {10.0 9.0 1688 ------- null} - -t 1.9333 -s 0 -d 9 -p ack -e 40 -c 0 -i 3386 -a 0 -x {10.0 9.0 1688 ------- null} h -t 1.9333 -s 0 -d 9 -p ack -e 40 -c 0 -i 3386 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.93331 -s 10 -d 7 -p ack -e 40 -c 0 -i 3390 -a 0 -x {10.0 9.0 1690 ------- null} + -t 1.93331 -s 7 -d 0 -p ack -e 40 -c 0 -i 3390 -a 0 -x {10.0 9.0 1690 ------- null} h -t 1.93331 -s 7 -d 8 -p ack -e 40 -c 0 -i 3390 -a 0 -x {10.0 9.0 1690 ------- null} r -t 1.93354 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3389 -a 0 -x {9.0 10.0 1699 ------- null} + -t 1.93354 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3389 -a 0 -x {9.0 10.0 1699 ------- null} h -t 1.93354 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3389 -a 0 -x {9.0 10.0 1699 ------- null} r -t 1.93366 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3375 -a 0 -x {9.0 10.0 1692 ------- null} + -t 1.93366 -s 10 -d 7 -p ack -e 40 -c 0 -i 3394 -a 0 -x {10.0 9.0 1692 ------- null} - -t 1.93366 -s 10 -d 7 -p ack -e 40 -c 0 -i 3394 -a 0 -x {10.0 9.0 1692 ------- null} h -t 1.93366 -s 10 -d 7 -p ack -e 40 -c 0 -i 3394 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.93419 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3381 -a 0 -x {9.0 10.0 1695 ------- null} - -t 1.93419 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3381 -a 0 -x {9.0 10.0 1695 ------- null} h -t 1.93419 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3381 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.93427 -s 0 -d 9 -p ack -e 40 -c 0 -i 3384 -a 0 -x {10.0 9.0 1687 ------- null} + -t 1.93427 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3395 -a 0 -x {9.0 10.0 1702 ------- null} - -t 1.93427 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3395 -a 0 -x {9.0 10.0 1702 ------- null} h -t 1.93427 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3395 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.93438 -s 0 -d 9 -p ack -e 40 -c 0 -i 3388 -a 0 -x {10.0 9.0 1689 ------- null} - -t 1.93438 -s 0 -d 9 -p ack -e 40 -c 0 -i 3388 -a 0 -x {10.0 9.0 1689 ------- null} h -t 1.93438 -s 0 -d 9 -p ack -e 40 -c 0 -i 3388 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.9344 -s 10 -d 7 -p ack -e 40 -c 0 -i 3392 -a 0 -x {10.0 9.0 1691 ------- null} + -t 1.9344 -s 7 -d 0 -p ack -e 40 -c 0 -i 3392 -a 0 -x {10.0 9.0 1691 ------- null} h -t 1.9344 -s 7 -d 8 -p ack -e 40 -c 0 -i 3392 -a 0 -x {10.0 9.0 1691 ------- null} r -t 1.93467 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3391 -a 0 -x {9.0 10.0 1700 ------- null} + -t 1.93467 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3391 -a 0 -x {9.0 10.0 1700 ------- null} h -t 1.93467 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3391 -a 0 -x {9.0 10.0 1700 ------- null} r -t 1.93475 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3377 -a 0 -x {9.0 10.0 1693 ------- null} + -t 1.93475 -s 10 -d 7 -p ack -e 40 -c 0 -i 3396 -a 0 -x {10.0 9.0 1693 ------- null} - -t 1.93475 -s 10 -d 7 -p ack -e 40 -c 0 -i 3396 -a 0 -x {10.0 9.0 1693 ------- null} h -t 1.93475 -s 10 -d 7 -p ack -e 40 -c 0 -i 3396 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.93528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3383 -a 0 -x {9.0 10.0 1696 ------- null} - -t 1.93528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3383 -a 0 -x {9.0 10.0 1696 ------- null} h -t 1.93528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3383 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.93533 -s 0 -d 9 -p ack -e 40 -c 0 -i 3386 -a 0 -x {10.0 9.0 1688 ------- null} + -t 1.93533 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3397 -a 0 -x {9.0 10.0 1703 ------- null} - -t 1.93533 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3397 -a 0 -x {9.0 10.0 1703 ------- null} h -t 1.93533 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3397 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.93549 -s 0 -d 9 -p ack -e 40 -c 0 -i 3390 -a 0 -x {10.0 9.0 1690 ------- null} - -t 1.93549 -s 0 -d 9 -p ack -e 40 -c 0 -i 3390 -a 0 -x {10.0 9.0 1690 ------- null} h -t 1.93549 -s 0 -d 9 -p ack -e 40 -c 0 -i 3390 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.9357 -s 10 -d 7 -p ack -e 40 -c 0 -i 3394 -a 0 -x {10.0 9.0 1692 ------- null} + -t 1.9357 -s 7 -d 0 -p ack -e 40 -c 0 -i 3394 -a 0 -x {10.0 9.0 1692 ------- null} h -t 1.9357 -s 7 -d 8 -p ack -e 40 -c 0 -i 3394 -a 0 -x {10.0 9.0 1692 ------- null} r -t 1.93586 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3393 -a 0 -x {9.0 10.0 1701 ------- null} + -t 1.93586 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3393 -a 0 -x {9.0 10.0 1701 ------- null} h -t 1.93586 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3393 -a 0 -x {9.0 10.0 1701 ------- null} r -t 1.9359 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3379 -a 0 -x {9.0 10.0 1694 ------- null} + -t 1.9359 -s 10 -d 7 -p ack -e 40 -c 0 -i 3398 -a 0 -x {10.0 9.0 1694 ------- null} - -t 1.9359 -s 10 -d 7 -p ack -e 40 -c 0 -i 3398 -a 0 -x {10.0 9.0 1694 ------- null} h -t 1.9359 -s 10 -d 7 -p ack -e 40 -c 0 -i 3398 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.93637 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3385 -a 0 -x {9.0 10.0 1697 ------- null} - -t 1.93637 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3385 -a 0 -x {9.0 10.0 1697 ------- null} h -t 1.93637 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3385 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.93642 -s 0 -d 9 -p ack -e 40 -c 0 -i 3388 -a 0 -x {10.0 9.0 1689 ------- null} + -t 1.93642 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3399 -a 0 -x {9.0 10.0 1704 ------- null} - -t 1.93642 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3399 -a 0 -x {9.0 10.0 1704 ------- null} h -t 1.93642 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3399 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.93646 -s 0 -d 9 -p ack -e 40 -c 0 -i 3392 -a 0 -x {10.0 9.0 1691 ------- null} - -t 1.93646 -s 0 -d 9 -p ack -e 40 -c 0 -i 3392 -a 0 -x {10.0 9.0 1691 ------- null} h -t 1.93646 -s 0 -d 9 -p ack -e 40 -c 0 -i 3392 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.93678 -s 10 -d 7 -p ack -e 40 -c 0 -i 3396 -a 0 -x {10.0 9.0 1693 ------- null} + -t 1.93678 -s 7 -d 0 -p ack -e 40 -c 0 -i 3396 -a 0 -x {10.0 9.0 1693 ------- null} h -t 1.93678 -s 7 -d 8 -p ack -e 40 -c 0 -i 3396 -a 0 -x {10.0 9.0 1693 ------- null} r -t 1.93699 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3381 -a 0 -x {9.0 10.0 1695 ------- null} + -t 1.93699 -s 10 -d 7 -p ack -e 40 -c 0 -i 3400 -a 0 -x {10.0 9.0 1695 ------- null} - -t 1.93699 -s 10 -d 7 -p ack -e 40 -c 0 -i 3400 -a 0 -x {10.0 9.0 1695 ------- null} h -t 1.93699 -s 10 -d 7 -p ack -e 40 -c 0 -i 3400 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.93707 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3395 -a 0 -x {9.0 10.0 1702 ------- null} + -t 1.93707 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3395 -a 0 -x {9.0 10.0 1702 ------- null} h -t 1.93707 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3395 -a 0 -x {9.0 10.0 1702 ------- null} + -t 1.93746 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3387 -a 0 -x {9.0 10.0 1698 ------- null} - -t 1.93746 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3387 -a 0 -x {9.0 10.0 1698 ------- null} h -t 1.93746 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3387 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.93752 -s 0 -d 9 -p ack -e 40 -c 0 -i 3390 -a 0 -x {10.0 9.0 1690 ------- null} + -t 1.93752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3401 -a 0 -x {9.0 10.0 1705 ------- null} - -t 1.93752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3401 -a 0 -x {9.0 10.0 1705 ------- null} h -t 1.93752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3401 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.93774 -s 0 -d 9 -p ack -e 40 -c 0 -i 3394 -a 0 -x {10.0 9.0 1692 ------- null} - -t 1.93774 -s 0 -d 9 -p ack -e 40 -c 0 -i 3394 -a 0 -x {10.0 9.0 1692 ------- null} h -t 1.93774 -s 0 -d 9 -p ack -e 40 -c 0 -i 3394 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.93794 -s 10 -d 7 -p ack -e 40 -c 0 -i 3398 -a 0 -x {10.0 9.0 1694 ------- null} + -t 1.93794 -s 7 -d 0 -p ack -e 40 -c 0 -i 3398 -a 0 -x {10.0 9.0 1694 ------- null} h -t 1.93794 -s 7 -d 8 -p ack -e 40 -c 0 -i 3398 -a 0 -x {10.0 9.0 1694 ------- null} r -t 1.93808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3383 -a 0 -x {9.0 10.0 1696 ------- null} + -t 1.93808 -s 10 -d 7 -p ack -e 40 -c 0 -i 3402 -a 0 -x {10.0 9.0 1696 ------- null} - -t 1.93808 -s 10 -d 7 -p ack -e 40 -c 0 -i 3402 -a 0 -x {10.0 9.0 1696 ------- null} h -t 1.93808 -s 10 -d 7 -p ack -e 40 -c 0 -i 3402 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.93813 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3397 -a 0 -x {9.0 10.0 1703 ------- null} + -t 1.93813 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3397 -a 0 -x {9.0 10.0 1703 ------- null} h -t 1.93813 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3397 -a 0 -x {9.0 10.0 1703 ------- null} r -t 1.9385 -s 0 -d 9 -p ack -e 40 -c 0 -i 3392 -a 0 -x {10.0 9.0 1691 ------- null} + -t 1.9385 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3403 -a 0 -x {9.0 10.0 1706 ------- null} - -t 1.9385 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3403 -a 0 -x {9.0 10.0 1706 ------- null} h -t 1.9385 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3403 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.93859 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3389 -a 0 -x {9.0 10.0 1699 ------- null} - -t 1.93859 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3389 -a 0 -x {9.0 10.0 1699 ------- null} h -t 1.93859 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3389 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.9389 -s 0 -d 9 -p ack -e 40 -c 0 -i 3396 -a 0 -x {10.0 9.0 1693 ------- null} - -t 1.9389 -s 0 -d 9 -p ack -e 40 -c 0 -i 3396 -a 0 -x {10.0 9.0 1693 ------- null} h -t 1.9389 -s 0 -d 9 -p ack -e 40 -c 0 -i 3396 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.93902 -s 10 -d 7 -p ack -e 40 -c 0 -i 3400 -a 0 -x {10.0 9.0 1695 ------- null} + -t 1.93902 -s 7 -d 0 -p ack -e 40 -c 0 -i 3400 -a 0 -x {10.0 9.0 1695 ------- null} h -t 1.93902 -s 7 -d 8 -p ack -e 40 -c 0 -i 3400 -a 0 -x {10.0 9.0 1695 ------- null} r -t 1.93917 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3385 -a 0 -x {9.0 10.0 1697 ------- null} + -t 1.93917 -s 10 -d 7 -p ack -e 40 -c 0 -i 3404 -a 0 -x {10.0 9.0 1697 ------- null} - -t 1.93917 -s 10 -d 7 -p ack -e 40 -c 0 -i 3404 -a 0 -x {10.0 9.0 1697 ------- null} h -t 1.93917 -s 10 -d 7 -p ack -e 40 -c 0 -i 3404 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.93922 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3399 -a 0 -x {9.0 10.0 1704 ------- null} + -t 1.93922 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3399 -a 0 -x {9.0 10.0 1704 ------- null} h -t 1.93922 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3399 -a 0 -x {9.0 10.0 1704 ------- null} r -t 1.93978 -s 0 -d 9 -p ack -e 40 -c 0 -i 3394 -a 0 -x {10.0 9.0 1692 ------- null} + -t 1.93978 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3405 -a 0 -x {9.0 10.0 1707 ------- null} - -t 1.93978 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3405 -a 0 -x {9.0 10.0 1707 ------- null} h -t 1.93978 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3405 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.93979 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3391 -a 0 -x {9.0 10.0 1700 ------- null} - -t 1.93979 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3391 -a 0 -x {9.0 10.0 1700 ------- null} h -t 1.93979 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3391 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.93989 -s 0 -d 9 -p ack -e 40 -c 0 -i 3398 -a 0 -x {10.0 9.0 1694 ------- null} - -t 1.93989 -s 0 -d 9 -p ack -e 40 -c 0 -i 3398 -a 0 -x {10.0 9.0 1694 ------- null} h -t 1.93989 -s 0 -d 9 -p ack -e 40 -c 0 -i 3398 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.94011 -s 10 -d 7 -p ack -e 40 -c 0 -i 3402 -a 0 -x {10.0 9.0 1696 ------- null} + -t 1.94011 -s 7 -d 0 -p ack -e 40 -c 0 -i 3402 -a 0 -x {10.0 9.0 1696 ------- null} h -t 1.94011 -s 7 -d 8 -p ack -e 40 -c 0 -i 3402 -a 0 -x {10.0 9.0 1696 ------- null} r -t 1.94026 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3387 -a 0 -x {9.0 10.0 1698 ------- null} + -t 1.94026 -s 10 -d 7 -p ack -e 40 -c 0 -i 3406 -a 0 -x {10.0 9.0 1698 ------- null} - -t 1.94026 -s 10 -d 7 -p ack -e 40 -c 0 -i 3406 -a 0 -x {10.0 9.0 1698 ------- null} h -t 1.94026 -s 10 -d 7 -p ack -e 40 -c 0 -i 3406 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.94032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3401 -a 0 -x {9.0 10.0 1705 ------- null} + -t 1.94032 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3401 -a 0 -x {9.0 10.0 1705 ------- null} h -t 1.94032 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3401 -a 0 -x {9.0 10.0 1705 ------- null} + -t 1.94088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3393 -a 0 -x {9.0 10.0 1701 ------- null} - -t 1.94088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3393 -a 0 -x {9.0 10.0 1701 ------- null} h -t 1.94088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3393 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.94093 -s 0 -d 9 -p ack -e 40 -c 0 -i 3396 -a 0 -x {10.0 9.0 1693 ------- null} + -t 1.94093 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3407 -a 0 -x {9.0 10.0 1708 ------- null} - -t 1.94093 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3407 -a 0 -x {9.0 10.0 1708 ------- null} h -t 1.94093 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3407 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.94115 -s 0 -d 9 -p ack -e 40 -c 0 -i 3400 -a 0 -x {10.0 9.0 1695 ------- null} - -t 1.94115 -s 0 -d 9 -p ack -e 40 -c 0 -i 3400 -a 0 -x {10.0 9.0 1695 ------- null} h -t 1.94115 -s 0 -d 9 -p ack -e 40 -c 0 -i 3400 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.9412 -s 10 -d 7 -p ack -e 40 -c 0 -i 3404 -a 0 -x {10.0 9.0 1697 ------- null} + -t 1.9412 -s 7 -d 0 -p ack -e 40 -c 0 -i 3404 -a 0 -x {10.0 9.0 1697 ------- null} h -t 1.9412 -s 7 -d 8 -p ack -e 40 -c 0 -i 3404 -a 0 -x {10.0 9.0 1697 ------- null} r -t 1.9413 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3403 -a 0 -x {9.0 10.0 1706 ------- null} + -t 1.9413 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3403 -a 0 -x {9.0 10.0 1706 ------- null} h -t 1.9413 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3403 -a 0 -x {9.0 10.0 1706 ------- null} r -t 1.94139 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3389 -a 0 -x {9.0 10.0 1699 ------- null} + -t 1.94139 -s 10 -d 7 -p ack -e 40 -c 0 -i 3408 -a 0 -x {10.0 9.0 1699 ------- null} - -t 1.94139 -s 10 -d 7 -p ack -e 40 -c 0 -i 3408 -a 0 -x {10.0 9.0 1699 ------- null} h -t 1.94139 -s 10 -d 7 -p ack -e 40 -c 0 -i 3408 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.94192 -s 0 -d 9 -p ack -e 40 -c 0 -i 3398 -a 0 -x {10.0 9.0 1694 ------- null} + -t 1.94192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3409 -a 0 -x {9.0 10.0 1709 ------- null} - -t 1.94192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3409 -a 0 -x {9.0 10.0 1709 ------- null} h -t 1.94192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3409 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.94222 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3395 -a 0 -x {9.0 10.0 1702 ------- null} - -t 1.94222 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3395 -a 0 -x {9.0 10.0 1702 ------- null} h -t 1.94222 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3395 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.94229 -s 10 -d 7 -p ack -e 40 -c 0 -i 3406 -a 0 -x {10.0 9.0 1698 ------- null} + -t 1.94229 -s 7 -d 0 -p ack -e 40 -c 0 -i 3406 -a 0 -x {10.0 9.0 1698 ------- null} h -t 1.94229 -s 7 -d 8 -p ack -e 40 -c 0 -i 3406 -a 0 -x {10.0 9.0 1698 ------- null} + -t 1.94242 -s 0 -d 9 -p ack -e 40 -c 0 -i 3402 -a 0 -x {10.0 9.0 1696 ------- null} - -t 1.94242 -s 0 -d 9 -p ack -e 40 -c 0 -i 3402 -a 0 -x {10.0 9.0 1696 ------- null} h -t 1.94242 -s 0 -d 9 -p ack -e 40 -c 0 -i 3402 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.94258 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3405 -a 0 -x {9.0 10.0 1707 ------- null} + -t 1.94258 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3405 -a 0 -x {9.0 10.0 1707 ------- null} h -t 1.94258 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3405 -a 0 -x {9.0 10.0 1707 ------- null} r -t 1.94259 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3391 -a 0 -x {9.0 10.0 1700 ------- null} + -t 1.94259 -s 10 -d 7 -p ack -e 40 -c 0 -i 3410 -a 0 -x {10.0 9.0 1700 ------- null} - -t 1.94259 -s 10 -d 7 -p ack -e 40 -c 0 -i 3410 -a 0 -x {10.0 9.0 1700 ------- null} h -t 1.94259 -s 10 -d 7 -p ack -e 40 -c 0 -i 3410 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.94318 -s 0 -d 9 -p ack -e 40 -c 0 -i 3400 -a 0 -x {10.0 9.0 1695 ------- null} + -t 1.94318 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3411 -a 0 -x {9.0 10.0 1710 ------- null} - -t 1.94318 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3411 -a 0 -x {9.0 10.0 1710 ------- null} h -t 1.94318 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3411 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.94331 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3397 -a 0 -x {9.0 10.0 1703 ------- null} - -t 1.94331 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3397 -a 0 -x {9.0 10.0 1703 ------- null} h -t 1.94331 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3397 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.94342 -s 10 -d 7 -p ack -e 40 -c 0 -i 3408 -a 0 -x {10.0 9.0 1699 ------- null} + -t 1.94342 -s 7 -d 0 -p ack -e 40 -c 0 -i 3408 -a 0 -x {10.0 9.0 1699 ------- null} h -t 1.94342 -s 7 -d 8 -p ack -e 40 -c 0 -i 3408 -a 0 -x {10.0 9.0 1699 ------- null} + -t 1.9436 -s 0 -d 9 -p ack -e 40 -c 0 -i 3404 -a 0 -x {10.0 9.0 1697 ------- null} - -t 1.9436 -s 0 -d 9 -p ack -e 40 -c 0 -i 3404 -a 0 -x {10.0 9.0 1697 ------- null} h -t 1.9436 -s 0 -d 9 -p ack -e 40 -c 0 -i 3404 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.94368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3393 -a 0 -x {9.0 10.0 1701 ------- null} + -t 1.94368 -s 10 -d 7 -p ack -e 40 -c 0 -i 3412 -a 0 -x {10.0 9.0 1701 ------- null} - -t 1.94368 -s 10 -d 7 -p ack -e 40 -c 0 -i 3412 -a 0 -x {10.0 9.0 1701 ------- null} h -t 1.94368 -s 10 -d 7 -p ack -e 40 -c 0 -i 3412 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.94373 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3407 -a 0 -x {9.0 10.0 1708 ------- null} + -t 1.94373 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3407 -a 0 -x {9.0 10.0 1708 ------- null} h -t 1.94373 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3407 -a 0 -x {9.0 10.0 1708 ------- null} r -t 1.94445 -s 0 -d 9 -p ack -e 40 -c 0 -i 3402 -a 0 -x {10.0 9.0 1696 ------- null} + -t 1.94445 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3413 -a 0 -x {9.0 10.0 1711 ------- null} - -t 1.94445 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3413 -a 0 -x {9.0 10.0 1711 ------- null} h -t 1.94445 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3413 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.94448 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3399 -a 0 -x {9.0 10.0 1704 ------- null} - -t 1.94448 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3399 -a 0 -x {9.0 10.0 1704 ------- null} h -t 1.94448 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3399 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.94458 -s 0 -d 9 -p ack -e 40 -c 0 -i 3406 -a 0 -x {10.0 9.0 1698 ------- null} - -t 1.94458 -s 0 -d 9 -p ack -e 40 -c 0 -i 3406 -a 0 -x {10.0 9.0 1698 ------- null} h -t 1.94458 -s 0 -d 9 -p ack -e 40 -c 0 -i 3406 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.94462 -s 10 -d 7 -p ack -e 40 -c 0 -i 3410 -a 0 -x {10.0 9.0 1700 ------- null} + -t 1.94462 -s 7 -d 0 -p ack -e 40 -c 0 -i 3410 -a 0 -x {10.0 9.0 1700 ------- null} h -t 1.94462 -s 7 -d 8 -p ack -e 40 -c 0 -i 3410 -a 0 -x {10.0 9.0 1700 ------- null} r -t 1.94472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3409 -a 0 -x {9.0 10.0 1709 ------- null} + -t 1.94472 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3409 -a 0 -x {9.0 10.0 1709 ------- null} h -t 1.94472 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3409 -a 0 -x {9.0 10.0 1709 ------- null} r -t 1.94502 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3395 -a 0 -x {9.0 10.0 1702 ------- null} + -t 1.94502 -s 10 -d 7 -p ack -e 40 -c 0 -i 3414 -a 0 -x {10.0 9.0 1702 ------- null} - -t 1.94502 -s 10 -d 7 -p ack -e 40 -c 0 -i 3414 -a 0 -x {10.0 9.0 1702 ------- null} h -t 1.94502 -s 10 -d 7 -p ack -e 40 -c 0 -i 3414 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.94557 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3401 -a 0 -x {9.0 10.0 1705 ------- null} - -t 1.94557 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3401 -a 0 -x {9.0 10.0 1705 ------- null} h -t 1.94557 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3401 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.94563 -s 0 -d 9 -p ack -e 40 -c 0 -i 3404 -a 0 -x {10.0 9.0 1697 ------- null} + -t 1.94563 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3415 -a 0 -x {9.0 10.0 1712 ------- null} - -t 1.94563 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3415 -a 0 -x {9.0 10.0 1712 ------- null} h -t 1.94563 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3415 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.94571 -s 10 -d 7 -p ack -e 40 -c 0 -i 3412 -a 0 -x {10.0 9.0 1701 ------- null} + -t 1.94571 -s 7 -d 0 -p ack -e 40 -c 0 -i 3412 -a 0 -x {10.0 9.0 1701 ------- null} h -t 1.94571 -s 7 -d 8 -p ack -e 40 -c 0 -i 3412 -a 0 -x {10.0 9.0 1701 ------- null} + -t 1.94587 -s 0 -d 9 -p ack -e 40 -c 0 -i 3408 -a 0 -x {10.0 9.0 1699 ------- null} - -t 1.94587 -s 0 -d 9 -p ack -e 40 -c 0 -i 3408 -a 0 -x {10.0 9.0 1699 ------- null} h -t 1.94587 -s 0 -d 9 -p ack -e 40 -c 0 -i 3408 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.94598 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3411 -a 0 -x {9.0 10.0 1710 ------- null} + -t 1.94598 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3411 -a 0 -x {9.0 10.0 1710 ------- null} h -t 1.94598 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3411 -a 0 -x {9.0 10.0 1710 ------- null} r -t 1.94611 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3397 -a 0 -x {9.0 10.0 1703 ------- null} + -t 1.94611 -s 10 -d 7 -p ack -e 40 -c 0 -i 3416 -a 0 -x {10.0 9.0 1703 ------- null} - -t 1.94611 -s 10 -d 7 -p ack -e 40 -c 0 -i 3416 -a 0 -x {10.0 9.0 1703 ------- null} h -t 1.94611 -s 10 -d 7 -p ack -e 40 -c 0 -i 3416 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.94661 -s 0 -d 9 -p ack -e 40 -c 0 -i 3406 -a 0 -x {10.0 9.0 1698 ------- null} + -t 1.94661 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3417 -a 0 -x {9.0 10.0 1713 ------- null} - -t 1.94661 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3417 -a 0 -x {9.0 10.0 1713 ------- null} h -t 1.94661 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3417 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.94688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3403 -a 0 -x {9.0 10.0 1706 ------- null} - -t 1.94688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3403 -a 0 -x {9.0 10.0 1706 ------- null} h -t 1.94688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3403 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.94706 -s 10 -d 7 -p ack -e 40 -c 0 -i 3414 -a 0 -x {10.0 9.0 1702 ------- null} + -t 1.94706 -s 7 -d 0 -p ack -e 40 -c 0 -i 3414 -a 0 -x {10.0 9.0 1702 ------- null} h -t 1.94706 -s 7 -d 8 -p ack -e 40 -c 0 -i 3414 -a 0 -x {10.0 9.0 1702 ------- null} + -t 1.94712 -s 0 -d 9 -p ack -e 40 -c 0 -i 3410 -a 0 -x {10.0 9.0 1700 ------- null} - -t 1.94712 -s 0 -d 9 -p ack -e 40 -c 0 -i 3410 -a 0 -x {10.0 9.0 1700 ------- null} h -t 1.94712 -s 0 -d 9 -p ack -e 40 -c 0 -i 3410 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.94725 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3413 -a 0 -x {9.0 10.0 1711 ------- null} + -t 1.94725 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3413 -a 0 -x {9.0 10.0 1711 ------- null} h -t 1.94725 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3413 -a 0 -x {9.0 10.0 1711 ------- null} r -t 1.94728 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3399 -a 0 -x {9.0 10.0 1704 ------- null} + -t 1.94728 -s 10 -d 7 -p ack -e 40 -c 0 -i 3418 -a 0 -x {10.0 9.0 1704 ------- null} - -t 1.94728 -s 10 -d 7 -p ack -e 40 -c 0 -i 3418 -a 0 -x {10.0 9.0 1704 ------- null} h -t 1.94728 -s 10 -d 7 -p ack -e 40 -c 0 -i 3418 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.9479 -s 0 -d 9 -p ack -e 40 -c 0 -i 3408 -a 0 -x {10.0 9.0 1699 ------- null} + -t 1.9479 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3419 -a 0 -x {9.0 10.0 1714 ------- null} - -t 1.9479 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3419 -a 0 -x {9.0 10.0 1714 ------- null} h -t 1.9479 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3419 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.94797 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3405 -a 0 -x {9.0 10.0 1707 ------- null} - -t 1.94797 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3405 -a 0 -x {9.0 10.0 1707 ------- null} h -t 1.94797 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3405 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.94814 -s 10 -d 7 -p ack -e 40 -c 0 -i 3416 -a 0 -x {10.0 9.0 1703 ------- null} + -t 1.94814 -s 7 -d 0 -p ack -e 40 -c 0 -i 3416 -a 0 -x {10.0 9.0 1703 ------- null} h -t 1.94814 -s 7 -d 8 -p ack -e 40 -c 0 -i 3416 -a 0 -x {10.0 9.0 1703 ------- null} + -t 1.94814 -s 0 -d 9 -p ack -e 40 -c 0 -i 3412 -a 0 -x {10.0 9.0 1701 ------- null} - -t 1.94814 -s 0 -d 9 -p ack -e 40 -c 0 -i 3412 -a 0 -x {10.0 9.0 1701 ------- null} h -t 1.94814 -s 0 -d 9 -p ack -e 40 -c 0 -i 3412 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.94837 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3401 -a 0 -x {9.0 10.0 1705 ------- null} + -t 1.94837 -s 10 -d 7 -p ack -e 40 -c 0 -i 3420 -a 0 -x {10.0 9.0 1705 ------- null} - -t 1.94837 -s 10 -d 7 -p ack -e 40 -c 0 -i 3420 -a 0 -x {10.0 9.0 1705 ------- null} h -t 1.94837 -s 10 -d 7 -p ack -e 40 -c 0 -i 3420 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.94843 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3415 -a 0 -x {9.0 10.0 1712 ------- null} + -t 1.94843 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3415 -a 0 -x {9.0 10.0 1712 ------- null} h -t 1.94843 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3415 -a 0 -x {9.0 10.0 1712 ------- null} + -t 1.94906 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3407 -a 0 -x {9.0 10.0 1708 ------- null} - -t 1.94906 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3407 -a 0 -x {9.0 10.0 1708 ------- null} h -t 1.94906 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3407 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.94915 -s 0 -d 9 -p ack -e 40 -c 0 -i 3410 -a 0 -x {10.0 9.0 1700 ------- null} + -t 1.94915 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3421 -a 0 -x {9.0 10.0 1715 ------- null} - -t 1.94915 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3421 -a 0 -x {9.0 10.0 1715 ------- null} h -t 1.94915 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3421 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.9493 -s 0 -d 9 -p ack -e 40 -c 0 -i 3414 -a 0 -x {10.0 9.0 1702 ------- null} - -t 1.9493 -s 0 -d 9 -p ack -e 40 -c 0 -i 3414 -a 0 -x {10.0 9.0 1702 ------- null} h -t 1.9493 -s 0 -d 9 -p ack -e 40 -c 0 -i 3414 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.94931 -s 10 -d 7 -p ack -e 40 -c 0 -i 3418 -a 0 -x {10.0 9.0 1704 ------- null} + -t 1.94931 -s 7 -d 0 -p ack -e 40 -c 0 -i 3418 -a 0 -x {10.0 9.0 1704 ------- null} h -t 1.94931 -s 7 -d 8 -p ack -e 40 -c 0 -i 3418 -a 0 -x {10.0 9.0 1704 ------- null} r -t 1.94941 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3417 -a 0 -x {9.0 10.0 1713 ------- null} + -t 1.94941 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3417 -a 0 -x {9.0 10.0 1713 ------- null} h -t 1.94941 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3417 -a 0 -x {9.0 10.0 1713 ------- null} r -t 1.94968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3403 -a 0 -x {9.0 10.0 1706 ------- null} + -t 1.94968 -s 10 -d 7 -p ack -e 40 -c 0 -i 3422 -a 0 -x {10.0 9.0 1706 ------- null} - -t 1.94968 -s 10 -d 7 -p ack -e 40 -c 0 -i 3422 -a 0 -x {10.0 9.0 1706 ------- null} h -t 1.94968 -s 10 -d 7 -p ack -e 40 -c 0 -i 3422 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.95014 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3409 -a 0 -x {9.0 10.0 1709 ------- null} - -t 1.95014 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3409 -a 0 -x {9.0 10.0 1709 ------- null} h -t 1.95014 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3409 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.95018 -s 0 -d 9 -p ack -e 40 -c 0 -i 3412 -a 0 -x {10.0 9.0 1701 ------- null} + -t 1.95018 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3423 -a 0 -x {9.0 10.0 1716 ------- null} - -t 1.95018 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3423 -a 0 -x {9.0 10.0 1716 ------- null} h -t 1.95018 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3423 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.9503 -s 0 -d 9 -p ack -e 40 -c 0 -i 3416 -a 0 -x {10.0 9.0 1703 ------- null} - -t 1.9503 -s 0 -d 9 -p ack -e 40 -c 0 -i 3416 -a 0 -x {10.0 9.0 1703 ------- null} h -t 1.9503 -s 0 -d 9 -p ack -e 40 -c 0 -i 3416 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.9504 -s 10 -d 7 -p ack -e 40 -c 0 -i 3420 -a 0 -x {10.0 9.0 1705 ------- null} + -t 1.9504 -s 7 -d 0 -p ack -e 40 -c 0 -i 3420 -a 0 -x {10.0 9.0 1705 ------- null} h -t 1.9504 -s 7 -d 8 -p ack -e 40 -c 0 -i 3420 -a 0 -x {10.0 9.0 1705 ------- null} r -t 1.9507 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3419 -a 0 -x {9.0 10.0 1714 ------- null} + -t 1.9507 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3419 -a 0 -x {9.0 10.0 1714 ------- null} h -t 1.9507 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3419 -a 0 -x {9.0 10.0 1714 ------- null} r -t 1.95077 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3405 -a 0 -x {9.0 10.0 1707 ------- null} + -t 1.95077 -s 10 -d 7 -p ack -e 40 -c 0 -i 3424 -a 0 -x {10.0 9.0 1707 ------- null} - -t 1.95077 -s 10 -d 7 -p ack -e 40 -c 0 -i 3424 -a 0 -x {10.0 9.0 1707 ------- null} h -t 1.95077 -s 10 -d 7 -p ack -e 40 -c 0 -i 3424 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.95123 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3411 -a 0 -x {9.0 10.0 1710 ------- null} - -t 1.95123 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3411 -a 0 -x {9.0 10.0 1710 ------- null} h -t 1.95123 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3411 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.95133 -s 0 -d 9 -p ack -e 40 -c 0 -i 3414 -a 0 -x {10.0 9.0 1702 ------- null} + -t 1.95133 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3425 -a 0 -x {9.0 10.0 1717 ------- null} - -t 1.95133 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3425 -a 0 -x {9.0 10.0 1717 ------- null} h -t 1.95133 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3425 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.9515 -s 0 -d 9 -p ack -e 40 -c 0 -i 3418 -a 0 -x {10.0 9.0 1704 ------- null} - -t 1.9515 -s 0 -d 9 -p ack -e 40 -c 0 -i 3418 -a 0 -x {10.0 9.0 1704 ------- null} h -t 1.9515 -s 0 -d 9 -p ack -e 40 -c 0 -i 3418 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.95171 -s 10 -d 7 -p ack -e 40 -c 0 -i 3422 -a 0 -x {10.0 9.0 1706 ------- null} + -t 1.95171 -s 7 -d 0 -p ack -e 40 -c 0 -i 3422 -a 0 -x {10.0 9.0 1706 ------- null} h -t 1.95171 -s 7 -d 8 -p ack -e 40 -c 0 -i 3422 -a 0 -x {10.0 9.0 1706 ------- null} r -t 1.95186 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3407 -a 0 -x {9.0 10.0 1708 ------- null} + -t 1.95186 -s 10 -d 7 -p ack -e 40 -c 0 -i 3426 -a 0 -x {10.0 9.0 1708 ------- null} - -t 1.95186 -s 10 -d 7 -p ack -e 40 -c 0 -i 3426 -a 0 -x {10.0 9.0 1708 ------- null} h -t 1.95186 -s 10 -d 7 -p ack -e 40 -c 0 -i 3426 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.95195 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3421 -a 0 -x {9.0 10.0 1715 ------- null} + -t 1.95195 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3421 -a 0 -x {9.0 10.0 1715 ------- null} h -t 1.95195 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3421 -a 0 -x {9.0 10.0 1715 ------- null} r -t 1.95234 -s 0 -d 9 -p ack -e 40 -c 0 -i 3416 -a 0 -x {10.0 9.0 1703 ------- null} + -t 1.95234 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3427 -a 0 -x {9.0 10.0 1718 ------- null} - -t 1.95234 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3427 -a 0 -x {9.0 10.0 1718 ------- null} h -t 1.95234 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3427 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.95245 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3413 -a 0 -x {9.0 10.0 1711 ------- null} - -t 1.95245 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3413 -a 0 -x {9.0 10.0 1711 ------- null} h -t 1.95245 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3413 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.95267 -s 0 -d 9 -p ack -e 40 -c 0 -i 3420 -a 0 -x {10.0 9.0 1705 ------- null} - -t 1.95267 -s 0 -d 9 -p ack -e 40 -c 0 -i 3420 -a 0 -x {10.0 9.0 1705 ------- null} h -t 1.95267 -s 0 -d 9 -p ack -e 40 -c 0 -i 3420 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.9528 -s 10 -d 7 -p ack -e 40 -c 0 -i 3424 -a 0 -x {10.0 9.0 1707 ------- null} + -t 1.9528 -s 7 -d 0 -p ack -e 40 -c 0 -i 3424 -a 0 -x {10.0 9.0 1707 ------- null} h -t 1.9528 -s 7 -d 8 -p ack -e 40 -c 0 -i 3424 -a 0 -x {10.0 9.0 1707 ------- null} r -t 1.95294 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3409 -a 0 -x {9.0 10.0 1709 ------- null} + -t 1.95294 -s 10 -d 7 -p ack -e 40 -c 0 -i 3428 -a 0 -x {10.0 9.0 1709 ------- null} - -t 1.95294 -s 10 -d 7 -p ack -e 40 -c 0 -i 3428 -a 0 -x {10.0 9.0 1709 ------- null} h -t 1.95294 -s 10 -d 7 -p ack -e 40 -c 0 -i 3428 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.95298 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3423 -a 0 -x {9.0 10.0 1716 ------- null} + -t 1.95298 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3423 -a 0 -x {9.0 10.0 1716 ------- null} h -t 1.95298 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3423 -a 0 -x {9.0 10.0 1716 ------- null} + -t 1.95354 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3415 -a 0 -x {9.0 10.0 1712 ------- null} - -t 1.95354 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3415 -a 0 -x {9.0 10.0 1712 ------- null} h -t 1.95354 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3415 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.95354 -s 0 -d 9 -p ack -e 40 -c 0 -i 3418 -a 0 -x {10.0 9.0 1704 ------- null} + -t 1.95354 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3429 -a 0 -x {9.0 10.0 1719 ------- null} - -t 1.95354 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3429 -a 0 -x {9.0 10.0 1719 ------- null} h -t 1.95354 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3429 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.95366 -s 0 -d 9 -p ack -e 40 -c 0 -i 3422 -a 0 -x {10.0 9.0 1706 ------- null} - -t 1.95366 -s 0 -d 9 -p ack -e 40 -c 0 -i 3422 -a 0 -x {10.0 9.0 1706 ------- null} h -t 1.95366 -s 0 -d 9 -p ack -e 40 -c 0 -i 3422 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.95389 -s 10 -d 7 -p ack -e 40 -c 0 -i 3426 -a 0 -x {10.0 9.0 1708 ------- null} + -t 1.95389 -s 7 -d 0 -p ack -e 40 -c 0 -i 3426 -a 0 -x {10.0 9.0 1708 ------- null} h -t 1.95389 -s 7 -d 8 -p ack -e 40 -c 0 -i 3426 -a 0 -x {10.0 9.0 1708 ------- null} r -t 1.95403 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3411 -a 0 -x {9.0 10.0 1710 ------- null} + -t 1.95403 -s 10 -d 7 -p ack -e 40 -c 0 -i 3430 -a 0 -x {10.0 9.0 1710 ------- null} - -t 1.95403 -s 10 -d 7 -p ack -e 40 -c 0 -i 3430 -a 0 -x {10.0 9.0 1710 ------- null} h -t 1.95403 -s 10 -d 7 -p ack -e 40 -c 0 -i 3430 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.95413 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3425 -a 0 -x {9.0 10.0 1717 ------- null} + -t 1.95413 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3425 -a 0 -x {9.0 10.0 1717 ------- null} h -t 1.95413 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3425 -a 0 -x {9.0 10.0 1717 ------- null} + -t 1.95462 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3417 -a 0 -x {9.0 10.0 1713 ------- null} - -t 1.95462 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3417 -a 0 -x {9.0 10.0 1713 ------- null} h -t 1.95462 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3417 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.9547 -s 0 -d 9 -p ack -e 40 -c 0 -i 3420 -a 0 -x {10.0 9.0 1705 ------- null} + -t 1.9547 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3431 -a 0 -x {9.0 10.0 1720 ------- null} - -t 1.9547 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3431 -a 0 -x {9.0 10.0 1720 ------- null} h -t 1.9547 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3431 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.9548 -s 0 -d 9 -p ack -e 40 -c 0 -i 3424 -a 0 -x {10.0 9.0 1707 ------- null} - -t 1.9548 -s 0 -d 9 -p ack -e 40 -c 0 -i 3424 -a 0 -x {10.0 9.0 1707 ------- null} h -t 1.9548 -s 0 -d 9 -p ack -e 40 -c 0 -i 3424 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.95498 -s 10 -d 7 -p ack -e 40 -c 0 -i 3428 -a 0 -x {10.0 9.0 1709 ------- null} + -t 1.95498 -s 7 -d 0 -p ack -e 40 -c 0 -i 3428 -a 0 -x {10.0 9.0 1709 ------- null} h -t 1.95498 -s 7 -d 8 -p ack -e 40 -c 0 -i 3428 -a 0 -x {10.0 9.0 1709 ------- null} r -t 1.95514 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3427 -a 0 -x {9.0 10.0 1718 ------- null} + -t 1.95514 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3427 -a 0 -x {9.0 10.0 1718 ------- null} h -t 1.95514 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3427 -a 0 -x {9.0 10.0 1718 ------- null} r -t 1.95525 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3413 -a 0 -x {9.0 10.0 1711 ------- null} + -t 1.95525 -s 10 -d 7 -p ack -e 40 -c 0 -i 3432 -a 0 -x {10.0 9.0 1711 ------- null} - -t 1.95525 -s 10 -d 7 -p ack -e 40 -c 0 -i 3432 -a 0 -x {10.0 9.0 1711 ------- null} h -t 1.95525 -s 10 -d 7 -p ack -e 40 -c 0 -i 3432 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.9557 -s 0 -d 9 -p ack -e 40 -c 0 -i 3422 -a 0 -x {10.0 9.0 1706 ------- null} + -t 1.9557 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3433 -a 0 -x {9.0 10.0 1721 ------- null} - -t 1.9557 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3433 -a 0 -x {9.0 10.0 1721 ------- null} h -t 1.9557 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3433 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.95571 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3419 -a 0 -x {9.0 10.0 1714 ------- null} - -t 1.95571 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3419 -a 0 -x {9.0 10.0 1714 ------- null} h -t 1.95571 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3419 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.9559 -s 0 -d 9 -p ack -e 40 -c 0 -i 3426 -a 0 -x {10.0 9.0 1708 ------- null} - -t 1.9559 -s 0 -d 9 -p ack -e 40 -c 0 -i 3426 -a 0 -x {10.0 9.0 1708 ------- null} h -t 1.9559 -s 0 -d 9 -p ack -e 40 -c 0 -i 3426 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.95606 -s 10 -d 7 -p ack -e 40 -c 0 -i 3430 -a 0 -x {10.0 9.0 1710 ------- null} + -t 1.95606 -s 7 -d 0 -p ack -e 40 -c 0 -i 3430 -a 0 -x {10.0 9.0 1710 ------- null} h -t 1.95606 -s 7 -d 8 -p ack -e 40 -c 0 -i 3430 -a 0 -x {10.0 9.0 1710 ------- null} r -t 1.95634 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3415 -a 0 -x {9.0 10.0 1712 ------- null} + -t 1.95634 -s 10 -d 7 -p ack -e 40 -c 0 -i 3434 -a 0 -x {10.0 9.0 1712 ------- null} - -t 1.95634 -s 10 -d 7 -p ack -e 40 -c 0 -i 3434 -a 0 -x {10.0 9.0 1712 ------- null} h -t 1.95634 -s 10 -d 7 -p ack -e 40 -c 0 -i 3434 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.95634 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3429 -a 0 -x {9.0 10.0 1719 ------- null} + -t 1.95634 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3429 -a 0 -x {9.0 10.0 1719 ------- null} h -t 1.95634 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3429 -a 0 -x {9.0 10.0 1719 ------- null} + -t 1.9568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3421 -a 0 -x {9.0 10.0 1715 ------- null} - -t 1.9568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3421 -a 0 -x {9.0 10.0 1715 ------- null} h -t 1.9568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3421 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.95683 -s 0 -d 9 -p ack -e 40 -c 0 -i 3424 -a 0 -x {10.0 9.0 1707 ------- null} + -t 1.95683 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3435 -a 0 -x {9.0 10.0 1722 ------- null} - -t 1.95683 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3435 -a 0 -x {9.0 10.0 1722 ------- null} h -t 1.95683 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3435 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.95691 -s 0 -d 9 -p ack -e 40 -c 0 -i 3428 -a 0 -x {10.0 9.0 1709 ------- null} - -t 1.95691 -s 0 -d 9 -p ack -e 40 -c 0 -i 3428 -a 0 -x {10.0 9.0 1709 ------- null} h -t 1.95691 -s 0 -d 9 -p ack -e 40 -c 0 -i 3428 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.95728 -s 10 -d 7 -p ack -e 40 -c 0 -i 3432 -a 0 -x {10.0 9.0 1711 ------- null} + -t 1.95728 -s 7 -d 0 -p ack -e 40 -c 0 -i 3432 -a 0 -x {10.0 9.0 1711 ------- null} h -t 1.95728 -s 7 -d 8 -p ack -e 40 -c 0 -i 3432 -a 0 -x {10.0 9.0 1711 ------- null} r -t 1.95742 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3417 -a 0 -x {9.0 10.0 1713 ------- null} + -t 1.95742 -s 10 -d 7 -p ack -e 40 -c 0 -i 3436 -a 0 -x {10.0 9.0 1713 ------- null} - -t 1.95742 -s 10 -d 7 -p ack -e 40 -c 0 -i 3436 -a 0 -x {10.0 9.0 1713 ------- null} h -t 1.95742 -s 10 -d 7 -p ack -e 40 -c 0 -i 3436 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.9575 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3431 -a 0 -x {9.0 10.0 1720 ------- null} + -t 1.9575 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3431 -a 0 -x {9.0 10.0 1720 ------- null} h -t 1.9575 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3431 -a 0 -x {9.0 10.0 1720 ------- null} + -t 1.95789 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3423 -a 0 -x {9.0 10.0 1716 ------- null} - -t 1.95789 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3423 -a 0 -x {9.0 10.0 1716 ------- null} h -t 1.95789 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3423 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.95794 -s 0 -d 9 -p ack -e 40 -c 0 -i 3426 -a 0 -x {10.0 9.0 1708 ------- null} + -t 1.95794 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3437 -a 0 -x {9.0 10.0 1723 ------- null} - -t 1.95794 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3437 -a 0 -x {9.0 10.0 1723 ------- null} h -t 1.95794 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3437 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.95802 -s 0 -d 9 -p ack -e 40 -c 0 -i 3430 -a 0 -x {10.0 9.0 1710 ------- null} - -t 1.95802 -s 0 -d 9 -p ack -e 40 -c 0 -i 3430 -a 0 -x {10.0 9.0 1710 ------- null} h -t 1.95802 -s 0 -d 9 -p ack -e 40 -c 0 -i 3430 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.95837 -s 10 -d 7 -p ack -e 40 -c 0 -i 3434 -a 0 -x {10.0 9.0 1712 ------- null} + -t 1.95837 -s 7 -d 0 -p ack -e 40 -c 0 -i 3434 -a 0 -x {10.0 9.0 1712 ------- null} h -t 1.95837 -s 7 -d 8 -p ack -e 40 -c 0 -i 3434 -a 0 -x {10.0 9.0 1712 ------- null} r -t 1.9585 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3433 -a 0 -x {9.0 10.0 1721 ------- null} + -t 1.9585 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3433 -a 0 -x {9.0 10.0 1721 ------- null} h -t 1.9585 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3433 -a 0 -x {9.0 10.0 1721 ------- null} r -t 1.95851 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3419 -a 0 -x {9.0 10.0 1714 ------- null} + -t 1.95851 -s 10 -d 7 -p ack -e 40 -c 0 -i 3438 -a 0 -x {10.0 9.0 1714 ------- null} - -t 1.95851 -s 10 -d 7 -p ack -e 40 -c 0 -i 3438 -a 0 -x {10.0 9.0 1714 ------- null} h -t 1.95851 -s 10 -d 7 -p ack -e 40 -c 0 -i 3438 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.95894 -s 0 -d 9 -p ack -e 40 -c 0 -i 3428 -a 0 -x {10.0 9.0 1709 ------- null} + -t 1.95894 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3439 -a 0 -x {9.0 10.0 1724 ------- null} - -t 1.95894 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3439 -a 0 -x {9.0 10.0 1724 ------- null} h -t 1.95894 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3439 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.95898 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3425 -a 0 -x {9.0 10.0 1717 ------- null} - -t 1.95898 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3425 -a 0 -x {9.0 10.0 1717 ------- null} h -t 1.95898 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3425 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.95928 -s 0 -d 9 -p ack -e 40 -c 0 -i 3432 -a 0 -x {10.0 9.0 1711 ------- null} - -t 1.95928 -s 0 -d 9 -p ack -e 40 -c 0 -i 3432 -a 0 -x {10.0 9.0 1711 ------- null} h -t 1.95928 -s 0 -d 9 -p ack -e 40 -c 0 -i 3432 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.95946 -s 10 -d 7 -p ack -e 40 -c 0 -i 3436 -a 0 -x {10.0 9.0 1713 ------- null} + -t 1.95946 -s 7 -d 0 -p ack -e 40 -c 0 -i 3436 -a 0 -x {10.0 9.0 1713 ------- null} h -t 1.95946 -s 7 -d 8 -p ack -e 40 -c 0 -i 3436 -a 0 -x {10.0 9.0 1713 ------- null} r -t 1.9596 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3421 -a 0 -x {9.0 10.0 1715 ------- null} + -t 1.9596 -s 10 -d 7 -p ack -e 40 -c 0 -i 3440 -a 0 -x {10.0 9.0 1715 ------- null} - -t 1.9596 -s 10 -d 7 -p ack -e 40 -c 0 -i 3440 -a 0 -x {10.0 9.0 1715 ------- null} h -t 1.9596 -s 10 -d 7 -p ack -e 40 -c 0 -i 3440 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.95963 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3435 -a 0 -x {9.0 10.0 1722 ------- null} + -t 1.95963 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3435 -a 0 -x {9.0 10.0 1722 ------- null} h -t 1.95963 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3435 -a 0 -x {9.0 10.0 1722 ------- null} r -t 1.96005 -s 0 -d 9 -p ack -e 40 -c 0 -i 3430 -a 0 -x {10.0 9.0 1710 ------- null} + -t 1.96005 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3441 -a 0 -x {9.0 10.0 1725 ------- null} - -t 1.96005 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3441 -a 0 -x {9.0 10.0 1725 ------- null} h -t 1.96005 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3441 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.96024 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3427 -a 0 -x {9.0 10.0 1718 ------- null} - -t 1.96024 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3427 -a 0 -x {9.0 10.0 1718 ------- null} h -t 1.96024 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3427 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.96032 -s 0 -d 9 -p ack -e 40 -c 0 -i 3434 -a 0 -x {10.0 9.0 1712 ------- null} - -t 1.96032 -s 0 -d 9 -p ack -e 40 -c 0 -i 3434 -a 0 -x {10.0 9.0 1712 ------- null} h -t 1.96032 -s 0 -d 9 -p ack -e 40 -c 0 -i 3434 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.96054 -s 10 -d 7 -p ack -e 40 -c 0 -i 3438 -a 0 -x {10.0 9.0 1714 ------- null} + -t 1.96054 -s 7 -d 0 -p ack -e 40 -c 0 -i 3438 -a 0 -x {10.0 9.0 1714 ------- null} h -t 1.96054 -s 7 -d 8 -p ack -e 40 -c 0 -i 3438 -a 0 -x {10.0 9.0 1714 ------- null} r -t 1.96069 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3423 -a 0 -x {9.0 10.0 1716 ------- null} + -t 1.96069 -s 10 -d 7 -p ack -e 40 -c 0 -i 3442 -a 0 -x {10.0 9.0 1716 ------- null} - -t 1.96069 -s 10 -d 7 -p ack -e 40 -c 0 -i 3442 -a 0 -x {10.0 9.0 1716 ------- null} h -t 1.96069 -s 10 -d 7 -p ack -e 40 -c 0 -i 3442 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.96074 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3437 -a 0 -x {9.0 10.0 1723 ------- null} + -t 1.96074 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3437 -a 0 -x {9.0 10.0 1723 ------- null} h -t 1.96074 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3437 -a 0 -x {9.0 10.0 1723 ------- null} r -t 1.96131 -s 0 -d 9 -p ack -e 40 -c 0 -i 3432 -a 0 -x {10.0 9.0 1711 ------- null} + -t 1.96131 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3443 -a 0 -x {9.0 10.0 1726 ------- null} - -t 1.96131 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3443 -a 0 -x {9.0 10.0 1726 ------- null} h -t 1.96131 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3443 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.96133 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3429 -a 0 -x {9.0 10.0 1719 ------- null} - -t 1.96133 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3429 -a 0 -x {9.0 10.0 1719 ------- null} h -t 1.96133 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3429 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.96162 -s 0 -d 9 -p ack -e 40 -c 0 -i 3436 -a 0 -x {10.0 9.0 1713 ------- null} - -t 1.96162 -s 0 -d 9 -p ack -e 40 -c 0 -i 3436 -a 0 -x {10.0 9.0 1713 ------- null} h -t 1.96162 -s 0 -d 9 -p ack -e 40 -c 0 -i 3436 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.96163 -s 10 -d 7 -p ack -e 40 -c 0 -i 3440 -a 0 -x {10.0 9.0 1715 ------- null} + -t 1.96163 -s 7 -d 0 -p ack -e 40 -c 0 -i 3440 -a 0 -x {10.0 9.0 1715 ------- null} h -t 1.96163 -s 7 -d 8 -p ack -e 40 -c 0 -i 3440 -a 0 -x {10.0 9.0 1715 ------- null} r -t 1.96174 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3439 -a 0 -x {9.0 10.0 1724 ------- null} + -t 1.96174 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3439 -a 0 -x {9.0 10.0 1724 ------- null} h -t 1.96174 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3439 -a 0 -x {9.0 10.0 1724 ------- null} r -t 1.96178 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3425 -a 0 -x {9.0 10.0 1717 ------- null} + -t 1.96178 -s 10 -d 7 -p ack -e 40 -c 0 -i 3444 -a 0 -x {10.0 9.0 1717 ------- null} - -t 1.96178 -s 10 -d 7 -p ack -e 40 -c 0 -i 3444 -a 0 -x {10.0 9.0 1717 ------- null} h -t 1.96178 -s 10 -d 7 -p ack -e 40 -c 0 -i 3444 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.96235 -s 0 -d 9 -p ack -e 40 -c 0 -i 3434 -a 0 -x {10.0 9.0 1712 ------- null} + -t 1.96235 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3445 -a 0 -x {9.0 10.0 1727 ------- null} - -t 1.96235 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3445 -a 0 -x {9.0 10.0 1727 ------- null} h -t 1.96235 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3445 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.96262 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3431 -a 0 -x {9.0 10.0 1720 ------- null} - -t 1.96262 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3431 -a 0 -x {9.0 10.0 1720 ------- null} h -t 1.96262 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3431 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.96272 -s 10 -d 7 -p ack -e 40 -c 0 -i 3442 -a 0 -x {10.0 9.0 1716 ------- null} + -t 1.96272 -s 7 -d 0 -p ack -e 40 -c 0 -i 3442 -a 0 -x {10.0 9.0 1716 ------- null} h -t 1.96272 -s 7 -d 8 -p ack -e 40 -c 0 -i 3442 -a 0 -x {10.0 9.0 1716 ------- null} + -t 1.96283 -s 0 -d 9 -p ack -e 40 -c 0 -i 3438 -a 0 -x {10.0 9.0 1714 ------- null} - -t 1.96283 -s 0 -d 9 -p ack -e 40 -c 0 -i 3438 -a 0 -x {10.0 9.0 1714 ------- null} h -t 1.96283 -s 0 -d 9 -p ack -e 40 -c 0 -i 3438 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.96285 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3441 -a 0 -x {9.0 10.0 1725 ------- null} + -t 1.96285 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3441 -a 0 -x {9.0 10.0 1725 ------- null} h -t 1.96285 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3441 -a 0 -x {9.0 10.0 1725 ------- null} r -t 1.96304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3427 -a 0 -x {9.0 10.0 1718 ------- null} + -t 1.96304 -s 10 -d 7 -p ack -e 40 -c 0 -i 3446 -a 0 -x {10.0 9.0 1718 ------- null} - -t 1.96304 -s 10 -d 7 -p ack -e 40 -c 0 -i 3446 -a 0 -x {10.0 9.0 1718 ------- null} h -t 1.96304 -s 10 -d 7 -p ack -e 40 -c 0 -i 3446 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.96365 -s 0 -d 9 -p ack -e 40 -c 0 -i 3436 -a 0 -x {10.0 9.0 1713 ------- null} + -t 1.96365 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3447 -a 0 -x {9.0 10.0 1728 ------- null} - -t 1.96365 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3447 -a 0 -x {9.0 10.0 1728 ------- null} h -t 1.96365 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3447 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.96371 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3433 -a 0 -x {9.0 10.0 1721 ------- null} - -t 1.96371 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3433 -a 0 -x {9.0 10.0 1721 ------- null} h -t 1.96371 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3433 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.96381 -s 10 -d 7 -p ack -e 40 -c 0 -i 3444 -a 0 -x {10.0 9.0 1717 ------- null} + -t 1.96381 -s 7 -d 0 -p ack -e 40 -c 0 -i 3444 -a 0 -x {10.0 9.0 1717 ------- null} h -t 1.96381 -s 7 -d 8 -p ack -e 40 -c 0 -i 3444 -a 0 -x {10.0 9.0 1717 ------- null} + -t 1.96395 -s 0 -d 9 -p ack -e 40 -c 0 -i 3440 -a 0 -x {10.0 9.0 1715 ------- null} - -t 1.96395 -s 0 -d 9 -p ack -e 40 -c 0 -i 3440 -a 0 -x {10.0 9.0 1715 ------- null} h -t 1.96395 -s 0 -d 9 -p ack -e 40 -c 0 -i 3440 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.96411 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3443 -a 0 -x {9.0 10.0 1726 ------- null} + -t 1.96411 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3443 -a 0 -x {9.0 10.0 1726 ------- null} h -t 1.96411 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3443 -a 0 -x {9.0 10.0 1726 ------- null} r -t 1.96413 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3429 -a 0 -x {9.0 10.0 1719 ------- null} + -t 1.96413 -s 10 -d 7 -p ack -e 40 -c 0 -i 3448 -a 0 -x {10.0 9.0 1719 ------- null} - -t 1.96413 -s 10 -d 7 -p ack -e 40 -c 0 -i 3448 -a 0 -x {10.0 9.0 1719 ------- null} h -t 1.96413 -s 10 -d 7 -p ack -e 40 -c 0 -i 3448 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.9648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3435 -a 0 -x {9.0 10.0 1722 ------- null} - -t 1.9648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3435 -a 0 -x {9.0 10.0 1722 ------- null} h -t 1.9648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3435 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.96486 -s 0 -d 9 -p ack -e 40 -c 0 -i 3438 -a 0 -x {10.0 9.0 1714 ------- null} + -t 1.96486 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3449 -a 0 -x {9.0 10.0 1729 ------- null} - -t 1.96486 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3449 -a 0 -x {9.0 10.0 1729 ------- null} h -t 1.96486 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3449 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.96496 -s 0 -d 9 -p ack -e 40 -c 0 -i 3442 -a 0 -x {10.0 9.0 1716 ------- null} - -t 1.96496 -s 0 -d 9 -p ack -e 40 -c 0 -i 3442 -a 0 -x {10.0 9.0 1716 ------- null} h -t 1.96496 -s 0 -d 9 -p ack -e 40 -c 0 -i 3442 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.96507 -s 10 -d 7 -p ack -e 40 -c 0 -i 3446 -a 0 -x {10.0 9.0 1718 ------- null} + -t 1.96507 -s 7 -d 0 -p ack -e 40 -c 0 -i 3446 -a 0 -x {10.0 9.0 1718 ------- null} h -t 1.96507 -s 7 -d 8 -p ack -e 40 -c 0 -i 3446 -a 0 -x {10.0 9.0 1718 ------- null} r -t 1.96515 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3445 -a 0 -x {9.0 10.0 1727 ------- null} + -t 1.96515 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3445 -a 0 -x {9.0 10.0 1727 ------- null} h -t 1.96515 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3445 -a 0 -x {9.0 10.0 1727 ------- null} r -t 1.96542 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3431 -a 0 -x {9.0 10.0 1720 ------- null} + -t 1.96542 -s 10 -d 7 -p ack -e 40 -c 0 -i 3450 -a 0 -x {10.0 9.0 1720 ------- null} - -t 1.96542 -s 10 -d 7 -p ack -e 40 -c 0 -i 3450 -a 0 -x {10.0 9.0 1720 ------- null} h -t 1.96542 -s 10 -d 7 -p ack -e 40 -c 0 -i 3450 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.96589 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3437 -a 0 -x {9.0 10.0 1723 ------- null} - -t 1.96589 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3437 -a 0 -x {9.0 10.0 1723 ------- null} h -t 1.96589 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3437 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.96598 -s 0 -d 9 -p ack -e 40 -c 0 -i 3440 -a 0 -x {10.0 9.0 1715 ------- null} + -t 1.96598 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3451 -a 0 -x {9.0 10.0 1730 ------- null} - -t 1.96598 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3451 -a 0 -x {9.0 10.0 1730 ------- null} h -t 1.96598 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3451 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.96605 -s 0 -d 9 -p ack -e 40 -c 0 -i 3444 -a 0 -x {10.0 9.0 1717 ------- null} - -t 1.96605 -s 0 -d 9 -p ack -e 40 -c 0 -i 3444 -a 0 -x {10.0 9.0 1717 ------- null} h -t 1.96605 -s 0 -d 9 -p ack -e 40 -c 0 -i 3444 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.96616 -s 10 -d 7 -p ack -e 40 -c 0 -i 3448 -a 0 -x {10.0 9.0 1719 ------- null} + -t 1.96616 -s 7 -d 0 -p ack -e 40 -c 0 -i 3448 -a 0 -x {10.0 9.0 1719 ------- null} h -t 1.96616 -s 7 -d 8 -p ack -e 40 -c 0 -i 3448 -a 0 -x {10.0 9.0 1719 ------- null} r -t 1.96645 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3447 -a 0 -x {9.0 10.0 1728 ------- null} + -t 1.96645 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3447 -a 0 -x {9.0 10.0 1728 ------- null} h -t 1.96645 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3447 -a 0 -x {9.0 10.0 1728 ------- null} r -t 1.96651 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3433 -a 0 -x {9.0 10.0 1721 ------- null} + -t 1.96651 -s 10 -d 7 -p ack -e 40 -c 0 -i 3452 -a 0 -x {10.0 9.0 1721 ------- null} - -t 1.96651 -s 10 -d 7 -p ack -e 40 -c 0 -i 3452 -a 0 -x {10.0 9.0 1721 ------- null} h -t 1.96651 -s 10 -d 7 -p ack -e 40 -c 0 -i 3452 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.96698 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3439 -a 0 -x {9.0 10.0 1724 ------- null} - -t 1.96698 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3439 -a 0 -x {9.0 10.0 1724 ------- null} h -t 1.96698 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3439 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.96699 -s 0 -d 9 -p ack -e 40 -c 0 -i 3442 -a 0 -x {10.0 9.0 1716 ------- null} + -t 1.96699 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3453 -a 0 -x {9.0 10.0 1731 ------- null} - -t 1.96699 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3453 -a 0 -x {9.0 10.0 1731 ------- null} h -t 1.96699 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3453 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.96709 -s 0 -d 9 -p ack -e 40 -c 0 -i 3446 -a 0 -x {10.0 9.0 1718 ------- null} - -t 1.96709 -s 0 -d 9 -p ack -e 40 -c 0 -i 3446 -a 0 -x {10.0 9.0 1718 ------- null} h -t 1.96709 -s 0 -d 9 -p ack -e 40 -c 0 -i 3446 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.96746 -s 10 -d 7 -p ack -e 40 -c 0 -i 3450 -a 0 -x {10.0 9.0 1720 ------- null} + -t 1.96746 -s 7 -d 0 -p ack -e 40 -c 0 -i 3450 -a 0 -x {10.0 9.0 1720 ------- null} h -t 1.96746 -s 7 -d 8 -p ack -e 40 -c 0 -i 3450 -a 0 -x {10.0 9.0 1720 ------- null} r -t 1.9676 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3435 -a 0 -x {9.0 10.0 1722 ------- null} + -t 1.9676 -s 10 -d 7 -p ack -e 40 -c 0 -i 3454 -a 0 -x {10.0 9.0 1722 ------- null} - -t 1.9676 -s 10 -d 7 -p ack -e 40 -c 0 -i 3454 -a 0 -x {10.0 9.0 1722 ------- null} h -t 1.9676 -s 10 -d 7 -p ack -e 40 -c 0 -i 3454 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.96766 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3449 -a 0 -x {9.0 10.0 1729 ------- null} + -t 1.96766 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3449 -a 0 -x {9.0 10.0 1729 ------- null} h -t 1.96766 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3449 -a 0 -x {9.0 10.0 1729 ------- null} + -t 1.96806 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3441 -a 0 -x {9.0 10.0 1725 ------- null} - -t 1.96806 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3441 -a 0 -x {9.0 10.0 1725 ------- null} h -t 1.96806 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3441 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.96808 -s 0 -d 9 -p ack -e 40 -c 0 -i 3444 -a 0 -x {10.0 9.0 1717 ------- null} + -t 1.96808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3455 -a 0 -x {9.0 10.0 1732 ------- null} - -t 1.96808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3455 -a 0 -x {9.0 10.0 1732 ------- null} h -t 1.96808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3455 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.96813 -s 0 -d 9 -p ack -e 40 -c 0 -i 3448 -a 0 -x {10.0 9.0 1719 ------- null} - -t 1.96813 -s 0 -d 9 -p ack -e 40 -c 0 -i 3448 -a 0 -x {10.0 9.0 1719 ------- null} h -t 1.96813 -s 0 -d 9 -p ack -e 40 -c 0 -i 3448 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.96854 -s 10 -d 7 -p ack -e 40 -c 0 -i 3452 -a 0 -x {10.0 9.0 1721 ------- null} + -t 1.96854 -s 7 -d 0 -p ack -e 40 -c 0 -i 3452 -a 0 -x {10.0 9.0 1721 ------- null} h -t 1.96854 -s 7 -d 8 -p ack -e 40 -c 0 -i 3452 -a 0 -x {10.0 9.0 1721 ------- null} r -t 1.96869 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3437 -a 0 -x {9.0 10.0 1723 ------- null} + -t 1.96869 -s 10 -d 7 -p ack -e 40 -c 0 -i 3456 -a 0 -x {10.0 9.0 1723 ------- null} - -t 1.96869 -s 10 -d 7 -p ack -e 40 -c 0 -i 3456 -a 0 -x {10.0 9.0 1723 ------- null} h -t 1.96869 -s 10 -d 7 -p ack -e 40 -c 0 -i 3456 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.96878 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3451 -a 0 -x {9.0 10.0 1730 ------- null} + -t 1.96878 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3451 -a 0 -x {9.0 10.0 1730 ------- null} h -t 1.96878 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3451 -a 0 -x {9.0 10.0 1730 ------- null} r -t 1.96912 -s 0 -d 9 -p ack -e 40 -c 0 -i 3446 -a 0 -x {10.0 9.0 1718 ------- null} + -t 1.96912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3457 -a 0 -x {9.0 10.0 1733 ------- null} - -t 1.96912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3457 -a 0 -x {9.0 10.0 1733 ------- null} h -t 1.96912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3457 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.96915 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3443 -a 0 -x {9.0 10.0 1726 ------- null} - -t 1.96915 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3443 -a 0 -x {9.0 10.0 1726 ------- null} h -t 1.96915 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3443 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.96928 -s 0 -d 9 -p ack -e 40 -c 0 -i 3450 -a 0 -x {10.0 9.0 1720 ------- null} - -t 1.96928 -s 0 -d 9 -p ack -e 40 -c 0 -i 3450 -a 0 -x {10.0 9.0 1720 ------- null} h -t 1.96928 -s 0 -d 9 -p ack -e 40 -c 0 -i 3450 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.96963 -s 10 -d 7 -p ack -e 40 -c 0 -i 3454 -a 0 -x {10.0 9.0 1722 ------- null} + -t 1.96963 -s 7 -d 0 -p ack -e 40 -c 0 -i 3454 -a 0 -x {10.0 9.0 1722 ------- null} h -t 1.96963 -s 7 -d 8 -p ack -e 40 -c 0 -i 3454 -a 0 -x {10.0 9.0 1722 ------- null} r -t 1.96978 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3439 -a 0 -x {9.0 10.0 1724 ------- null} + -t 1.96978 -s 10 -d 7 -p ack -e 40 -c 0 -i 3458 -a 0 -x {10.0 9.0 1724 ------- null} - -t 1.96978 -s 10 -d 7 -p ack -e 40 -c 0 -i 3458 -a 0 -x {10.0 9.0 1724 ------- null} h -t 1.96978 -s 10 -d 7 -p ack -e 40 -c 0 -i 3458 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.96979 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3453 -a 0 -x {9.0 10.0 1731 ------- null} + -t 1.96979 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3453 -a 0 -x {9.0 10.0 1731 ------- null} h -t 1.96979 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3453 -a 0 -x {9.0 10.0 1731 ------- null} r -t 1.97016 -s 0 -d 9 -p ack -e 40 -c 0 -i 3448 -a 0 -x {10.0 9.0 1719 ------- null} + -t 1.97016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3459 -a 0 -x {9.0 10.0 1734 ------- null} - -t 1.97016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3459 -a 0 -x {9.0 10.0 1734 ------- null} h -t 1.97016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3459 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.97024 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3445 -a 0 -x {9.0 10.0 1727 ------- null} - -t 1.97024 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3445 -a 0 -x {9.0 10.0 1727 ------- null} h -t 1.97024 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3445 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.97034 -s 0 -d 9 -p ack -e 40 -c 0 -i 3452 -a 0 -x {10.0 9.0 1721 ------- null} - -t 1.97034 -s 0 -d 9 -p ack -e 40 -c 0 -i 3452 -a 0 -x {10.0 9.0 1721 ------- null} h -t 1.97034 -s 0 -d 9 -p ack -e 40 -c 0 -i 3452 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.97072 -s 10 -d 7 -p ack -e 40 -c 0 -i 3456 -a 0 -x {10.0 9.0 1723 ------- null} + -t 1.97072 -s 7 -d 0 -p ack -e 40 -c 0 -i 3456 -a 0 -x {10.0 9.0 1723 ------- null} h -t 1.97072 -s 7 -d 8 -p ack -e 40 -c 0 -i 3456 -a 0 -x {10.0 9.0 1723 ------- null} r -t 1.97086 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3441 -a 0 -x {9.0 10.0 1725 ------- null} + -t 1.97086 -s 10 -d 7 -p ack -e 40 -c 0 -i 3460 -a 0 -x {10.0 9.0 1725 ------- null} - -t 1.97086 -s 10 -d 7 -p ack -e 40 -c 0 -i 3460 -a 0 -x {10.0 9.0 1725 ------- null} h -t 1.97086 -s 10 -d 7 -p ack -e 40 -c 0 -i 3460 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.97088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3455 -a 0 -x {9.0 10.0 1732 ------- null} + -t 1.97088 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3455 -a 0 -x {9.0 10.0 1732 ------- null} h -t 1.97088 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3455 -a 0 -x {9.0 10.0 1732 ------- null} r -t 1.97131 -s 0 -d 9 -p ack -e 40 -c 0 -i 3450 -a 0 -x {10.0 9.0 1720 ------- null} + -t 1.97131 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3461 -a 0 -x {9.0 10.0 1735 ------- null} - -t 1.97131 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3461 -a 0 -x {9.0 10.0 1735 ------- null} h -t 1.97131 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3461 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.97133 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3447 -a 0 -x {9.0 10.0 1728 ------- null} - -t 1.97133 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3447 -a 0 -x {9.0 10.0 1728 ------- null} h -t 1.97133 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3447 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.97154 -s 0 -d 9 -p ack -e 40 -c 0 -i 3454 -a 0 -x {10.0 9.0 1722 ------- null} - -t 1.97154 -s 0 -d 9 -p ack -e 40 -c 0 -i 3454 -a 0 -x {10.0 9.0 1722 ------- null} h -t 1.97154 -s 0 -d 9 -p ack -e 40 -c 0 -i 3454 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.97181 -s 10 -d 7 -p ack -e 40 -c 0 -i 3458 -a 0 -x {10.0 9.0 1724 ------- null} + -t 1.97181 -s 7 -d 0 -p ack -e 40 -c 0 -i 3458 -a 0 -x {10.0 9.0 1724 ------- null} h -t 1.97181 -s 7 -d 8 -p ack -e 40 -c 0 -i 3458 -a 0 -x {10.0 9.0 1724 ------- null} r -t 1.97192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3457 -a 0 -x {9.0 10.0 1733 ------- null} + -t 1.97192 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3457 -a 0 -x {9.0 10.0 1733 ------- null} h -t 1.97192 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3457 -a 0 -x {9.0 10.0 1733 ------- null} r -t 1.97195 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3443 -a 0 -x {9.0 10.0 1726 ------- null} + -t 1.97195 -s 10 -d 7 -p ack -e 40 -c 0 -i 3462 -a 0 -x {10.0 9.0 1726 ------- null} - -t 1.97195 -s 10 -d 7 -p ack -e 40 -c 0 -i 3462 -a 0 -x {10.0 9.0 1726 ------- null} h -t 1.97195 -s 10 -d 7 -p ack -e 40 -c 0 -i 3462 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.97237 -s 0 -d 9 -p ack -e 40 -c 0 -i 3452 -a 0 -x {10.0 9.0 1721 ------- null} + -t 1.97237 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3463 -a 0 -x {9.0 10.0 1736 ------- null} - -t 1.97237 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3463 -a 0 -x {9.0 10.0 1736 ------- null} h -t 1.97237 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3463 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.97242 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3449 -a 0 -x {9.0 10.0 1729 ------- null} - -t 1.97242 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3449 -a 0 -x {9.0 10.0 1729 ------- null} h -t 1.97242 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3449 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.97256 -s 0 -d 9 -p ack -e 40 -c 0 -i 3456 -a 0 -x {10.0 9.0 1723 ------- null} - -t 1.97256 -s 0 -d 9 -p ack -e 40 -c 0 -i 3456 -a 0 -x {10.0 9.0 1723 ------- null} h -t 1.97256 -s 0 -d 9 -p ack -e 40 -c 0 -i 3456 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.9729 -s 10 -d 7 -p ack -e 40 -c 0 -i 3460 -a 0 -x {10.0 9.0 1725 ------- null} + -t 1.9729 -s 7 -d 0 -p ack -e 40 -c 0 -i 3460 -a 0 -x {10.0 9.0 1725 ------- null} h -t 1.9729 -s 7 -d 8 -p ack -e 40 -c 0 -i 3460 -a 0 -x {10.0 9.0 1725 ------- null} r -t 1.97296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3459 -a 0 -x {9.0 10.0 1734 ------- null} + -t 1.97296 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3459 -a 0 -x {9.0 10.0 1734 ------- null} h -t 1.97296 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3459 -a 0 -x {9.0 10.0 1734 ------- null} r -t 1.97304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3445 -a 0 -x {9.0 10.0 1727 ------- null} + -t 1.97304 -s 10 -d 7 -p ack -e 40 -c 0 -i 3464 -a 0 -x {10.0 9.0 1727 ------- null} - -t 1.97304 -s 10 -d 7 -p ack -e 40 -c 0 -i 3464 -a 0 -x {10.0 9.0 1727 ------- null} h -t 1.97304 -s 10 -d 7 -p ack -e 40 -c 0 -i 3464 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.9735 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3451 -a 0 -x {9.0 10.0 1730 ------- null} - -t 1.9735 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3451 -a 0 -x {9.0 10.0 1730 ------- null} h -t 1.9735 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3451 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.97357 -s 0 -d 9 -p ack -e 40 -c 0 -i 3454 -a 0 -x {10.0 9.0 1722 ------- null} + -t 1.97357 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3465 -a 0 -x {9.0 10.0 1737 ------- null} - -t 1.97357 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3465 -a 0 -x {9.0 10.0 1737 ------- null} h -t 1.97357 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3465 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.9737 -s 0 -d 9 -p ack -e 40 -c 0 -i 3458 -a 0 -x {10.0 9.0 1724 ------- null} - -t 1.9737 -s 0 -d 9 -p ack -e 40 -c 0 -i 3458 -a 0 -x {10.0 9.0 1724 ------- null} h -t 1.9737 -s 0 -d 9 -p ack -e 40 -c 0 -i 3458 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.97398 -s 10 -d 7 -p ack -e 40 -c 0 -i 3462 -a 0 -x {10.0 9.0 1726 ------- null} + -t 1.97398 -s 7 -d 0 -p ack -e 40 -c 0 -i 3462 -a 0 -x {10.0 9.0 1726 ------- null} h -t 1.97398 -s 7 -d 8 -p ack -e 40 -c 0 -i 3462 -a 0 -x {10.0 9.0 1726 ------- null} r -t 1.97411 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3461 -a 0 -x {9.0 10.0 1735 ------- null} + -t 1.97411 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3461 -a 0 -x {9.0 10.0 1735 ------- null} h -t 1.97411 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3461 -a 0 -x {9.0 10.0 1735 ------- null} r -t 1.97413 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3447 -a 0 -x {9.0 10.0 1728 ------- null} + -t 1.97413 -s 10 -d 7 -p ack -e 40 -c 0 -i 3466 -a 0 -x {10.0 9.0 1728 ------- null} - -t 1.97413 -s 10 -d 7 -p ack -e 40 -c 0 -i 3466 -a 0 -x {10.0 9.0 1728 ------- null} h -t 1.97413 -s 10 -d 7 -p ack -e 40 -c 0 -i 3466 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.97459 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3453 -a 0 -x {9.0 10.0 1731 ------- null} - -t 1.97459 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3453 -a 0 -x {9.0 10.0 1731 ------- null} h -t 1.97459 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3453 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.97459 -s 0 -d 9 -p ack -e 40 -c 0 -i 3456 -a 0 -x {10.0 9.0 1723 ------- null} + -t 1.97459 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3467 -a 0 -x {9.0 10.0 1738 ------- null} - -t 1.97459 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3467 -a 0 -x {9.0 10.0 1738 ------- null} h -t 1.97459 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3467 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.97472 -s 0 -d 9 -p ack -e 40 -c 0 -i 3460 -a 0 -x {10.0 9.0 1725 ------- null} - -t 1.97472 -s 0 -d 9 -p ack -e 40 -c 0 -i 3460 -a 0 -x {10.0 9.0 1725 ------- null} h -t 1.97472 -s 0 -d 9 -p ack -e 40 -c 0 -i 3460 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.97507 -s 10 -d 7 -p ack -e 40 -c 0 -i 3464 -a 0 -x {10.0 9.0 1727 ------- null} + -t 1.97507 -s 7 -d 0 -p ack -e 40 -c 0 -i 3464 -a 0 -x {10.0 9.0 1727 ------- null} h -t 1.97507 -s 7 -d 8 -p ack -e 40 -c 0 -i 3464 -a 0 -x {10.0 9.0 1727 ------- null} r -t 1.97517 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3463 -a 0 -x {9.0 10.0 1736 ------- null} + -t 1.97517 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3463 -a 0 -x {9.0 10.0 1736 ------- null} h -t 1.97517 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3463 -a 0 -x {9.0 10.0 1736 ------- null} r -t 1.97522 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3449 -a 0 -x {9.0 10.0 1729 ------- null} + -t 1.97522 -s 10 -d 7 -p ack -e 40 -c 0 -i 3468 -a 0 -x {10.0 9.0 1729 ------- null} - -t 1.97522 -s 10 -d 7 -p ack -e 40 -c 0 -i 3468 -a 0 -x {10.0 9.0 1729 ------- null} h -t 1.97522 -s 10 -d 7 -p ack -e 40 -c 0 -i 3468 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.97568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3455 -a 0 -x {9.0 10.0 1732 ------- null} - -t 1.97568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3455 -a 0 -x {9.0 10.0 1732 ------- null} h -t 1.97568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3455 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.97573 -s 0 -d 9 -p ack -e 40 -c 0 -i 3458 -a 0 -x {10.0 9.0 1724 ------- null} + -t 1.97573 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3469 -a 0 -x {9.0 10.0 1739 ------- null} - -t 1.97573 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3469 -a 0 -x {9.0 10.0 1739 ------- null} h -t 1.97573 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3469 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.9759 -s 0 -d 9 -p ack -e 40 -c 0 -i 3462 -a 0 -x {10.0 9.0 1726 ------- null} - -t 1.9759 -s 0 -d 9 -p ack -e 40 -c 0 -i 3462 -a 0 -x {10.0 9.0 1726 ------- null} h -t 1.9759 -s 0 -d 9 -p ack -e 40 -c 0 -i 3462 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.97616 -s 10 -d 7 -p ack -e 40 -c 0 -i 3466 -a 0 -x {10.0 9.0 1728 ------- null} + -t 1.97616 -s 7 -d 0 -p ack -e 40 -c 0 -i 3466 -a 0 -x {10.0 9.0 1728 ------- null} h -t 1.97616 -s 7 -d 8 -p ack -e 40 -c 0 -i 3466 -a 0 -x {10.0 9.0 1728 ------- null} r -t 1.9763 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3451 -a 0 -x {9.0 10.0 1730 ------- null} + -t 1.9763 -s 10 -d 7 -p ack -e 40 -c 0 -i 3470 -a 0 -x {10.0 9.0 1730 ------- null} - -t 1.9763 -s 10 -d 7 -p ack -e 40 -c 0 -i 3470 -a 0 -x {10.0 9.0 1730 ------- null} h -t 1.9763 -s 10 -d 7 -p ack -e 40 -c 0 -i 3470 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.97637 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3465 -a 0 -x {9.0 10.0 1737 ------- null} + -t 1.97637 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3465 -a 0 -x {9.0 10.0 1737 ------- null} h -t 1.97637 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3465 -a 0 -x {9.0 10.0 1737 ------- null} r -t 1.97675 -s 0 -d 9 -p ack -e 40 -c 0 -i 3460 -a 0 -x {10.0 9.0 1725 ------- null} + -t 1.97675 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3471 -a 0 -x {9.0 10.0 1740 ------- null} - -t 1.97675 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3471 -a 0 -x {9.0 10.0 1740 ------- null} h -t 1.97675 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3471 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.97677 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3457 -a 0 -x {9.0 10.0 1733 ------- null} - -t 1.97677 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3457 -a 0 -x {9.0 10.0 1733 ------- null} h -t 1.97677 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3457 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.97704 -s 0 -d 9 -p ack -e 40 -c 0 -i 3464 -a 0 -x {10.0 9.0 1727 ------- null} - -t 1.97704 -s 0 -d 9 -p ack -e 40 -c 0 -i 3464 -a 0 -x {10.0 9.0 1727 ------- null} h -t 1.97704 -s 0 -d 9 -p ack -e 40 -c 0 -i 3464 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.97725 -s 10 -d 7 -p ack -e 40 -c 0 -i 3468 -a 0 -x {10.0 9.0 1729 ------- null} + -t 1.97725 -s 7 -d 0 -p ack -e 40 -c 0 -i 3468 -a 0 -x {10.0 9.0 1729 ------- null} h -t 1.97725 -s 7 -d 8 -p ack -e 40 -c 0 -i 3468 -a 0 -x {10.0 9.0 1729 ------- null} r -t 1.97739 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3453 -a 0 -x {9.0 10.0 1731 ------- null} + -t 1.97739 -s 10 -d 7 -p ack -e 40 -c 0 -i 3472 -a 0 -x {10.0 9.0 1731 ------- null} - -t 1.97739 -s 10 -d 7 -p ack -e 40 -c 0 -i 3472 -a 0 -x {10.0 9.0 1731 ------- null} h -t 1.97739 -s 10 -d 7 -p ack -e 40 -c 0 -i 3472 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.97739 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3467 -a 0 -x {9.0 10.0 1738 ------- null} + -t 1.97739 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3467 -a 0 -x {9.0 10.0 1738 ------- null} h -t 1.97739 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3467 -a 0 -x {9.0 10.0 1738 ------- null} r -t 1.97794 -s 0 -d 9 -p ack -e 40 -c 0 -i 3462 -a 0 -x {10.0 9.0 1726 ------- null} + -t 1.97794 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3473 -a 0 -x {9.0 10.0 1741 ------- null} - -t 1.97794 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3473 -a 0 -x {9.0 10.0 1741 ------- null} h -t 1.97794 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3473 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.97811 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3459 -a 0 -x {9.0 10.0 1734 ------- null} - -t 1.97811 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3459 -a 0 -x {9.0 10.0 1734 ------- null} h -t 1.97811 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3459 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.97834 -s 10 -d 7 -p ack -e 40 -c 0 -i 3470 -a 0 -x {10.0 9.0 1730 ------- null} + -t 1.97834 -s 7 -d 0 -p ack -e 40 -c 0 -i 3470 -a 0 -x {10.0 9.0 1730 ------- null} h -t 1.97834 -s 7 -d 8 -p ack -e 40 -c 0 -i 3470 -a 0 -x {10.0 9.0 1730 ------- null} + -t 1.97842 -s 0 -d 9 -p ack -e 40 -c 0 -i 3466 -a 0 -x {10.0 9.0 1728 ------- null} - -t 1.97842 -s 0 -d 9 -p ack -e 40 -c 0 -i 3466 -a 0 -x {10.0 9.0 1728 ------- null} h -t 1.97842 -s 0 -d 9 -p ack -e 40 -c 0 -i 3466 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.97848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3455 -a 0 -x {9.0 10.0 1732 ------- null} + -t 1.97848 -s 10 -d 7 -p ack -e 40 -c 0 -i 3474 -a 0 -x {10.0 9.0 1732 ------- null} - -t 1.97848 -s 10 -d 7 -p ack -e 40 -c 0 -i 3474 -a 0 -x {10.0 9.0 1732 ------- null} h -t 1.97848 -s 10 -d 7 -p ack -e 40 -c 0 -i 3474 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.97853 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3469 -a 0 -x {9.0 10.0 1739 ------- null} + -t 1.97853 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3469 -a 0 -x {9.0 10.0 1739 ------- null} h -t 1.97853 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3469 -a 0 -x {9.0 10.0 1739 ------- null} r -t 1.97907 -s 0 -d 9 -p ack -e 40 -c 0 -i 3464 -a 0 -x {10.0 9.0 1727 ------- null} + -t 1.97907 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3475 -a 0 -x {9.0 10.0 1742 ------- null} - -t 1.97907 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3475 -a 0 -x {9.0 10.0 1742 ------- null} h -t 1.97907 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3475 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.97928 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3461 -a 0 -x {9.0 10.0 1735 ------- null} - -t 1.97928 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3461 -a 0 -x {9.0 10.0 1735 ------- null} h -t 1.97928 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3461 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.97934 -s 0 -d 9 -p ack -e 40 -c 0 -i 3468 -a 0 -x {10.0 9.0 1729 ------- null} - -t 1.97934 -s 0 -d 9 -p ack -e 40 -c 0 -i 3468 -a 0 -x {10.0 9.0 1729 ------- null} h -t 1.97934 -s 0 -d 9 -p ack -e 40 -c 0 -i 3468 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.97942 -s 10 -d 7 -p ack -e 40 -c 0 -i 3472 -a 0 -x {10.0 9.0 1731 ------- null} + -t 1.97942 -s 7 -d 0 -p ack -e 40 -c 0 -i 3472 -a 0 -x {10.0 9.0 1731 ------- null} h -t 1.97942 -s 7 -d 8 -p ack -e 40 -c 0 -i 3472 -a 0 -x {10.0 9.0 1731 ------- null} r -t 1.97955 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3471 -a 0 -x {9.0 10.0 1740 ------- null} + -t 1.97955 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3471 -a 0 -x {9.0 10.0 1740 ------- null} h -t 1.97955 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3471 -a 0 -x {9.0 10.0 1740 ------- null} r -t 1.97957 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3457 -a 0 -x {9.0 10.0 1733 ------- null} + -t 1.97957 -s 10 -d 7 -p ack -e 40 -c 0 -i 3476 -a 0 -x {10.0 9.0 1733 ------- null} - -t 1.97957 -s 10 -d 7 -p ack -e 40 -c 0 -i 3476 -a 0 -x {10.0 9.0 1733 ------- null} h -t 1.97957 -s 10 -d 7 -p ack -e 40 -c 0 -i 3476 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.98037 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3463 -a 0 -x {9.0 10.0 1736 ------- null} - -t 1.98037 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3463 -a 0 -x {9.0 10.0 1736 ------- null} h -t 1.98037 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3463 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.98045 -s 0 -d 9 -p ack -e 40 -c 0 -i 3466 -a 0 -x {10.0 9.0 1728 ------- null} + -t 1.98045 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3477 -a 0 -x {9.0 10.0 1743 ------- null} - -t 1.98045 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3477 -a 0 -x {9.0 10.0 1743 ------- null} h -t 1.98045 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3477 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.98051 -s 10 -d 7 -p ack -e 40 -c 0 -i 3474 -a 0 -x {10.0 9.0 1732 ------- null} + -t 1.98051 -s 7 -d 0 -p ack -e 40 -c 0 -i 3474 -a 0 -x {10.0 9.0 1732 ------- null} h -t 1.98051 -s 7 -d 8 -p ack -e 40 -c 0 -i 3474 -a 0 -x {10.0 9.0 1732 ------- null} + -t 1.98061 -s 0 -d 9 -p ack -e 40 -c 0 -i 3470 -a 0 -x {10.0 9.0 1730 ------- null} - -t 1.98061 -s 0 -d 9 -p ack -e 40 -c 0 -i 3470 -a 0 -x {10.0 9.0 1730 ------- null} h -t 1.98061 -s 0 -d 9 -p ack -e 40 -c 0 -i 3470 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.98074 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3473 -a 0 -x {9.0 10.0 1741 ------- null} + -t 1.98074 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3473 -a 0 -x {9.0 10.0 1741 ------- null} h -t 1.98074 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3473 -a 0 -x {9.0 10.0 1741 ------- null} r -t 1.98091 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3459 -a 0 -x {9.0 10.0 1734 ------- null} + -t 1.98091 -s 10 -d 7 -p ack -e 40 -c 0 -i 3478 -a 0 -x {10.0 9.0 1734 ------- null} - -t 1.98091 -s 10 -d 7 -p ack -e 40 -c 0 -i 3478 -a 0 -x {10.0 9.0 1734 ------- null} h -t 1.98091 -s 10 -d 7 -p ack -e 40 -c 0 -i 3478 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.98138 -s 0 -d 9 -p ack -e 40 -c 0 -i 3468 -a 0 -x {10.0 9.0 1729 ------- null} + -t 1.98138 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3479 -a 0 -x {9.0 10.0 1744 ------- null} - -t 1.98138 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3479 -a 0 -x {9.0 10.0 1744 ------- null} h -t 1.98138 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3479 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.98146 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3465 -a 0 -x {9.0 10.0 1737 ------- null} - -t 1.98146 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3465 -a 0 -x {9.0 10.0 1737 ------- null} h -t 1.98146 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3465 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.9816 -s 10 -d 7 -p ack -e 40 -c 0 -i 3476 -a 0 -x {10.0 9.0 1733 ------- null} + -t 1.9816 -s 7 -d 0 -p ack -e 40 -c 0 -i 3476 -a 0 -x {10.0 9.0 1733 ------- null} h -t 1.9816 -s 7 -d 8 -p ack -e 40 -c 0 -i 3476 -a 0 -x {10.0 9.0 1733 ------- null} + -t 1.98163 -s 0 -d 9 -p ack -e 40 -c 0 -i 3472 -a 0 -x {10.0 9.0 1731 ------- null} - -t 1.98163 -s 0 -d 9 -p ack -e 40 -c 0 -i 3472 -a 0 -x {10.0 9.0 1731 ------- null} h -t 1.98163 -s 0 -d 9 -p ack -e 40 -c 0 -i 3472 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.98187 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3475 -a 0 -x {9.0 10.0 1742 ------- null} + -t 1.98187 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3475 -a 0 -x {9.0 10.0 1742 ------- null} h -t 1.98187 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3475 -a 0 -x {9.0 10.0 1742 ------- null} r -t 1.98208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3461 -a 0 -x {9.0 10.0 1735 ------- null} + -t 1.98208 -s 10 -d 7 -p ack -e 40 -c 0 -i 3480 -a 0 -x {10.0 9.0 1735 ------- null} - -t 1.98208 -s 10 -d 7 -p ack -e 40 -c 0 -i 3480 -a 0 -x {10.0 9.0 1735 ------- null} h -t 1.98208 -s 10 -d 7 -p ack -e 40 -c 0 -i 3480 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.98254 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3467 -a 0 -x {9.0 10.0 1738 ------- null} - -t 1.98254 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3467 -a 0 -x {9.0 10.0 1738 ------- null} h -t 1.98254 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3467 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.98264 -s 0 -d 9 -p ack -e 40 -c 0 -i 3470 -a 0 -x {10.0 9.0 1730 ------- null} + -t 1.98264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3481 -a 0 -x {9.0 10.0 1745 ------- null} - -t 1.98264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3481 -a 0 -x {9.0 10.0 1745 ------- null} h -t 1.98264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3481 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.98267 -s 0 -d 9 -p ack -e 40 -c 0 -i 3474 -a 0 -x {10.0 9.0 1732 ------- null} - -t 1.98267 -s 0 -d 9 -p ack -e 40 -c 0 -i 3474 -a 0 -x {10.0 9.0 1732 ------- null} h -t 1.98267 -s 0 -d 9 -p ack -e 40 -c 0 -i 3474 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.98294 -s 10 -d 7 -p ack -e 40 -c 0 -i 3478 -a 0 -x {10.0 9.0 1734 ------- null} + -t 1.98294 -s 7 -d 0 -p ack -e 40 -c 0 -i 3478 -a 0 -x {10.0 9.0 1734 ------- null} h -t 1.98294 -s 7 -d 8 -p ack -e 40 -c 0 -i 3478 -a 0 -x {10.0 9.0 1734 ------- null} r -t 1.98317 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3463 -a 0 -x {9.0 10.0 1736 ------- null} + -t 1.98317 -s 10 -d 7 -p ack -e 40 -c 0 -i 3482 -a 0 -x {10.0 9.0 1736 ------- null} - -t 1.98317 -s 10 -d 7 -p ack -e 40 -c 0 -i 3482 -a 0 -x {10.0 9.0 1736 ------- null} h -t 1.98317 -s 10 -d 7 -p ack -e 40 -c 0 -i 3482 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.98325 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3477 -a 0 -x {9.0 10.0 1743 ------- null} + -t 1.98325 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3477 -a 0 -x {9.0 10.0 1743 ------- null} h -t 1.98325 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3477 -a 0 -x {9.0 10.0 1743 ------- null} + -t 1.98363 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3469 -a 0 -x {9.0 10.0 1739 ------- null} - -t 1.98363 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3469 -a 0 -x {9.0 10.0 1739 ------- null} h -t 1.98363 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3469 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.98366 -s 0 -d 9 -p ack -e 40 -c 0 -i 3472 -a 0 -x {10.0 9.0 1731 ------- null} + -t 1.98366 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3483 -a 0 -x {9.0 10.0 1746 ------- null} - -t 1.98366 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3483 -a 0 -x {9.0 10.0 1746 ------- null} h -t 1.98366 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3483 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.98389 -s 0 -d 9 -p ack -e 40 -c 0 -i 3476 -a 0 -x {10.0 9.0 1733 ------- null} - -t 1.98389 -s 0 -d 9 -p ack -e 40 -c 0 -i 3476 -a 0 -x {10.0 9.0 1733 ------- null} h -t 1.98389 -s 0 -d 9 -p ack -e 40 -c 0 -i 3476 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.98411 -s 10 -d 7 -p ack -e 40 -c 0 -i 3480 -a 0 -x {10.0 9.0 1735 ------- null} + -t 1.98411 -s 7 -d 0 -p ack -e 40 -c 0 -i 3480 -a 0 -x {10.0 9.0 1735 ------- null} h -t 1.98411 -s 7 -d 8 -p ack -e 40 -c 0 -i 3480 -a 0 -x {10.0 9.0 1735 ------- null} r -t 1.98418 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3479 -a 0 -x {9.0 10.0 1744 ------- null} + -t 1.98418 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3479 -a 0 -x {9.0 10.0 1744 ------- null} h -t 1.98418 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3479 -a 0 -x {9.0 10.0 1744 ------- null} r -t 1.98426 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3465 -a 0 -x {9.0 10.0 1737 ------- null} + -t 1.98426 -s 10 -d 7 -p ack -e 40 -c 0 -i 3484 -a 0 -x {10.0 9.0 1737 ------- null} - -t 1.98426 -s 10 -d 7 -p ack -e 40 -c 0 -i 3484 -a 0 -x {10.0 9.0 1737 ------- null} h -t 1.98426 -s 10 -d 7 -p ack -e 40 -c 0 -i 3484 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.9847 -s 0 -d 9 -p ack -e 40 -c 0 -i 3474 -a 0 -x {10.0 9.0 1732 ------- null} + -t 1.9847 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3485 -a 0 -x {9.0 10.0 1747 ------- null} - -t 1.9847 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3485 -a 0 -x {9.0 10.0 1747 ------- null} h -t 1.9847 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3485 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.98472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3471 -a 0 -x {9.0 10.0 1740 ------- null} - -t 1.98472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3471 -a 0 -x {9.0 10.0 1740 ------- null} h -t 1.98472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3471 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.98496 -s 0 -d 9 -p ack -e 40 -c 0 -i 3478 -a 0 -x {10.0 9.0 1734 ------- null} - -t 1.98496 -s 0 -d 9 -p ack -e 40 -c 0 -i 3478 -a 0 -x {10.0 9.0 1734 ------- null} h -t 1.98496 -s 0 -d 9 -p ack -e 40 -c 0 -i 3478 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.9852 -s 10 -d 7 -p ack -e 40 -c 0 -i 3482 -a 0 -x {10.0 9.0 1736 ------- null} + -t 1.9852 -s 7 -d 0 -p ack -e 40 -c 0 -i 3482 -a 0 -x {10.0 9.0 1736 ------- null} h -t 1.9852 -s 7 -d 8 -p ack -e 40 -c 0 -i 3482 -a 0 -x {10.0 9.0 1736 ------- null} r -t 1.98534 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3467 -a 0 -x {9.0 10.0 1738 ------- null} + -t 1.98534 -s 10 -d 7 -p ack -e 40 -c 0 -i 3486 -a 0 -x {10.0 9.0 1738 ------- null} - -t 1.98534 -s 10 -d 7 -p ack -e 40 -c 0 -i 3486 -a 0 -x {10.0 9.0 1738 ------- null} h -t 1.98534 -s 10 -d 7 -p ack -e 40 -c 0 -i 3486 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.98544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3481 -a 0 -x {9.0 10.0 1745 ------- null} + -t 1.98544 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3481 -a 0 -x {9.0 10.0 1745 ------- null} h -t 1.98544 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3481 -a 0 -x {9.0 10.0 1745 ------- null} + -t 1.98581 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3473 -a 0 -x {9.0 10.0 1741 ------- null} - -t 1.98581 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3473 -a 0 -x {9.0 10.0 1741 ------- null} h -t 1.98581 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3473 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.98592 -s 0 -d 9 -p ack -e 40 -c 0 -i 3476 -a 0 -x {10.0 9.0 1733 ------- null} + -t 1.98592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3487 -a 0 -x {9.0 10.0 1748 ------- null} - -t 1.98592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3487 -a 0 -x {9.0 10.0 1748 ------- null} h -t 1.98592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3487 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.98602 -s 0 -d 9 -p ack -e 40 -c 0 -i 3480 -a 0 -x {10.0 9.0 1735 ------- null} - -t 1.98602 -s 0 -d 9 -p ack -e 40 -c 0 -i 3480 -a 0 -x {10.0 9.0 1735 ------- null} h -t 1.98602 -s 0 -d 9 -p ack -e 40 -c 0 -i 3480 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.98629 -s 10 -d 7 -p ack -e 40 -c 0 -i 3484 -a 0 -x {10.0 9.0 1737 ------- null} + -t 1.98629 -s 7 -d 0 -p ack -e 40 -c 0 -i 3484 -a 0 -x {10.0 9.0 1737 ------- null} h -t 1.98629 -s 7 -d 8 -p ack -e 40 -c 0 -i 3484 -a 0 -x {10.0 9.0 1737 ------- null} r -t 1.98643 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3469 -a 0 -x {9.0 10.0 1739 ------- null} + -t 1.98643 -s 10 -d 7 -p ack -e 40 -c 0 -i 3488 -a 0 -x {10.0 9.0 1739 ------- null} - -t 1.98643 -s 10 -d 7 -p ack -e 40 -c 0 -i 3488 -a 0 -x {10.0 9.0 1739 ------- null} h -t 1.98643 -s 10 -d 7 -p ack -e 40 -c 0 -i 3488 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.98646 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3483 -a 0 -x {9.0 10.0 1746 ------- null} + -t 1.98646 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3483 -a 0 -x {9.0 10.0 1746 ------- null} h -t 1.98646 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3483 -a 0 -x {9.0 10.0 1746 ------- null} + -t 1.9869 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3475 -a 0 -x {9.0 10.0 1742 ------- null} - -t 1.9869 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3475 -a 0 -x {9.0 10.0 1742 ------- null} h -t 1.9869 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3475 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.98698 -s 0 -d 9 -p ack -e 40 -c 0 -i 3482 -a 0 -x {10.0 9.0 1736 ------- null} - -t 1.98698 -s 0 -d 9 -p ack -e 40 -c 0 -i 3482 -a 0 -x {10.0 9.0 1736 ------- null} h -t 1.98698 -s 0 -d 9 -p ack -e 40 -c 0 -i 3482 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.98699 -s 0 -d 9 -p ack -e 40 -c 0 -i 3478 -a 0 -x {10.0 9.0 1734 ------- null} + -t 1.98699 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3489 -a 0 -x {9.0 10.0 1749 ------- null} - -t 1.98699 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3489 -a 0 -x {9.0 10.0 1749 ------- null} h -t 1.98699 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3489 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.98738 -s 10 -d 7 -p ack -e 40 -c 0 -i 3486 -a 0 -x {10.0 9.0 1738 ------- null} + -t 1.98738 -s 7 -d 0 -p ack -e 40 -c 0 -i 3486 -a 0 -x {10.0 9.0 1738 ------- null} h -t 1.98738 -s 7 -d 8 -p ack -e 40 -c 0 -i 3486 -a 0 -x {10.0 9.0 1738 ------- null} r -t 1.9875 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3485 -a 0 -x {9.0 10.0 1747 ------- null} + -t 1.9875 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3485 -a 0 -x {9.0 10.0 1747 ------- null} h -t 1.9875 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3485 -a 0 -x {9.0 10.0 1747 ------- null} r -t 1.98752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3471 -a 0 -x {9.0 10.0 1740 ------- null} + -t 1.98752 -s 10 -d 7 -p ack -e 40 -c 0 -i 3490 -a 0 -x {10.0 9.0 1740 ------- null} - -t 1.98752 -s 10 -d 7 -p ack -e 40 -c 0 -i 3490 -a 0 -x {10.0 9.0 1740 ------- null} h -t 1.98752 -s 10 -d 7 -p ack -e 40 -c 0 -i 3490 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.98798 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3477 -a 0 -x {9.0 10.0 1743 ------- null} - -t 1.98798 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3477 -a 0 -x {9.0 10.0 1743 ------- null} h -t 1.98798 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3477 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.98805 -s 0 -d 9 -p ack -e 40 -c 0 -i 3480 -a 0 -x {10.0 9.0 1735 ------- null} + -t 1.98805 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3491 -a 0 -x {9.0 10.0 1750 ------- null} - -t 1.98805 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3491 -a 0 -x {9.0 10.0 1750 ------- null} h -t 1.98805 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3491 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.98826 -s 0 -d 9 -p ack -e 40 -c 0 -i 3484 -a 0 -x {10.0 9.0 1737 ------- null} - -t 1.98826 -s 0 -d 9 -p ack -e 40 -c 0 -i 3484 -a 0 -x {10.0 9.0 1737 ------- null} h -t 1.98826 -s 0 -d 9 -p ack -e 40 -c 0 -i 3484 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.98846 -s 10 -d 7 -p ack -e 40 -c 0 -i 3488 -a 0 -x {10.0 9.0 1739 ------- null} + -t 1.98846 -s 7 -d 0 -p ack -e 40 -c 0 -i 3488 -a 0 -x {10.0 9.0 1739 ------- null} h -t 1.98846 -s 7 -d 8 -p ack -e 40 -c 0 -i 3488 -a 0 -x {10.0 9.0 1739 ------- null} r -t 1.98861 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3473 -a 0 -x {9.0 10.0 1741 ------- null} + -t 1.98861 -s 10 -d 7 -p ack -e 40 -c 0 -i 3492 -a 0 -x {10.0 9.0 1741 ------- null} - -t 1.98861 -s 10 -d 7 -p ack -e 40 -c 0 -i 3492 -a 0 -x {10.0 9.0 1741 ------- null} h -t 1.98861 -s 10 -d 7 -p ack -e 40 -c 0 -i 3492 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.98872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3487 -a 0 -x {9.0 10.0 1748 ------- null} + -t 1.98872 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3487 -a 0 -x {9.0 10.0 1748 ------- null} h -t 1.98872 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3487 -a 0 -x {9.0 10.0 1748 ------- null} r -t 1.98901 -s 0 -d 9 -p ack -e 40 -c 0 -i 3482 -a 0 -x {10.0 9.0 1736 ------- null} + -t 1.98901 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3493 -a 0 -x {9.0 10.0 1751 ------- null} - -t 1.98901 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3493 -a 0 -x {9.0 10.0 1751 ------- null} h -t 1.98901 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3493 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.98926 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3479 -a 0 -x {9.0 10.0 1744 ------- null} - -t 1.98926 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3479 -a 0 -x {9.0 10.0 1744 ------- null} h -t 1.98926 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3479 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.98942 -s 0 -d 9 -p ack -e 40 -c 0 -i 3486 -a 0 -x {10.0 9.0 1738 ------- null} - -t 1.98942 -s 0 -d 9 -p ack -e 40 -c 0 -i 3486 -a 0 -x {10.0 9.0 1738 ------- null} h -t 1.98942 -s 0 -d 9 -p ack -e 40 -c 0 -i 3486 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.98955 -s 10 -d 7 -p ack -e 40 -c 0 -i 3490 -a 0 -x {10.0 9.0 1740 ------- null} + -t 1.98955 -s 7 -d 0 -p ack -e 40 -c 0 -i 3490 -a 0 -x {10.0 9.0 1740 ------- null} h -t 1.98955 -s 7 -d 8 -p ack -e 40 -c 0 -i 3490 -a 0 -x {10.0 9.0 1740 ------- null} r -t 1.9897 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3475 -a 0 -x {9.0 10.0 1742 ------- null} + -t 1.9897 -s 10 -d 7 -p ack -e 40 -c 0 -i 3494 -a 0 -x {10.0 9.0 1742 ------- null} - -t 1.9897 -s 10 -d 7 -p ack -e 40 -c 0 -i 3494 -a 0 -x {10.0 9.0 1742 ------- null} h -t 1.9897 -s 10 -d 7 -p ack -e 40 -c 0 -i 3494 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.98979 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3489 -a 0 -x {9.0 10.0 1749 ------- null} + -t 1.98979 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3489 -a 0 -x {9.0 10.0 1749 ------- null} h -t 1.98979 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3489 -a 0 -x {9.0 10.0 1749 ------- null} r -t 1.99029 -s 0 -d 9 -p ack -e 40 -c 0 -i 3484 -a 0 -x {10.0 9.0 1737 ------- null} + -t 1.99029 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3495 -a 0 -x {9.0 10.0 1752 ------- null} - -t 1.99029 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3495 -a 0 -x {9.0 10.0 1752 ------- null} h -t 1.99029 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3495 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.99035 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3481 -a 0 -x {9.0 10.0 1745 ------- null} - -t 1.99035 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3481 -a 0 -x {9.0 10.0 1745 ------- null} h -t 1.99035 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3481 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.99062 -s 0 -d 9 -p ack -e 40 -c 0 -i 3488 -a 0 -x {10.0 9.0 1739 ------- null} - -t 1.99062 -s 0 -d 9 -p ack -e 40 -c 0 -i 3488 -a 0 -x {10.0 9.0 1739 ------- null} h -t 1.99062 -s 0 -d 9 -p ack -e 40 -c 0 -i 3488 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.99064 -s 10 -d 7 -p ack -e 40 -c 0 -i 3492 -a 0 -x {10.0 9.0 1741 ------- null} + -t 1.99064 -s 7 -d 0 -p ack -e 40 -c 0 -i 3492 -a 0 -x {10.0 9.0 1741 ------- null} h -t 1.99064 -s 7 -d 8 -p ack -e 40 -c 0 -i 3492 -a 0 -x {10.0 9.0 1741 ------- null} r -t 1.99078 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3477 -a 0 -x {9.0 10.0 1743 ------- null} + -t 1.99078 -s 10 -d 7 -p ack -e 40 -c 0 -i 3496 -a 0 -x {10.0 9.0 1743 ------- null} - -t 1.99078 -s 10 -d 7 -p ack -e 40 -c 0 -i 3496 -a 0 -x {10.0 9.0 1743 ------- null} h -t 1.99078 -s 10 -d 7 -p ack -e 40 -c 0 -i 3496 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.99085 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3491 -a 0 -x {9.0 10.0 1750 ------- null} + -t 1.99085 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3491 -a 0 -x {9.0 10.0 1750 ------- null} h -t 1.99085 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3491 -a 0 -x {9.0 10.0 1750 ------- null} r -t 1.99146 -s 0 -d 9 -p ack -e 40 -c 0 -i 3486 -a 0 -x {10.0 9.0 1738 ------- null} + -t 1.99146 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3497 -a 0 -x {9.0 10.0 1753 ------- null} - -t 1.99146 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3497 -a 0 -x {9.0 10.0 1753 ------- null} h -t 1.99146 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3497 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.9915 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3483 -a 0 -x {9.0 10.0 1746 ------- null} - -t 1.9915 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3483 -a 0 -x {9.0 10.0 1746 ------- null} h -t 1.9915 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3483 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.99173 -s 10 -d 7 -p ack -e 40 -c 0 -i 3494 -a 0 -x {10.0 9.0 1742 ------- null} + -t 1.99173 -s 7 -d 0 -p ack -e 40 -c 0 -i 3494 -a 0 -x {10.0 9.0 1742 ------- null} h -t 1.99173 -s 7 -d 8 -p ack -e 40 -c 0 -i 3494 -a 0 -x {10.0 9.0 1742 ------- null} r -t 1.99181 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3493 -a 0 -x {9.0 10.0 1751 ------- null} + -t 1.99181 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3493 -a 0 -x {9.0 10.0 1751 ------- null} h -t 1.99181 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3493 -a 0 -x {9.0 10.0 1751 ------- null} + -t 1.99181 -s 0 -d 9 -p ack -e 40 -c 0 -i 3490 -a 0 -x {10.0 9.0 1740 ------- null} - -t 1.99181 -s 0 -d 9 -p ack -e 40 -c 0 -i 3490 -a 0 -x {10.0 9.0 1740 ------- null} h -t 1.99181 -s 0 -d 9 -p ack -e 40 -c 0 -i 3490 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.99206 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3479 -a 0 -x {9.0 10.0 1744 ------- null} + -t 1.99206 -s 10 -d 7 -p ack -e 40 -c 0 -i 3498 -a 0 -x {10.0 9.0 1744 ------- null} - -t 1.99206 -s 10 -d 7 -p ack -e 40 -c 0 -i 3498 -a 0 -x {10.0 9.0 1744 ------- null} h -t 1.99206 -s 10 -d 7 -p ack -e 40 -c 0 -i 3498 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.99266 -s 0 -d 9 -p ack -e 40 -c 0 -i 3488 -a 0 -x {10.0 9.0 1739 ------- null} + -t 1.99266 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3499 -a 0 -x {9.0 10.0 1754 ------- null} - -t 1.99266 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3499 -a 0 -x {9.0 10.0 1754 ------- null} h -t 1.99266 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3499 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.99277 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3485 -a 0 -x {9.0 10.0 1747 ------- null} - -t 1.99277 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3485 -a 0 -x {9.0 10.0 1747 ------- null} h -t 1.99277 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3485 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.99282 -s 10 -d 7 -p ack -e 40 -c 0 -i 3496 -a 0 -x {10.0 9.0 1743 ------- null} + -t 1.99282 -s 7 -d 0 -p ack -e 40 -c 0 -i 3496 -a 0 -x {10.0 9.0 1743 ------- null} h -t 1.99282 -s 7 -d 8 -p ack -e 40 -c 0 -i 3496 -a 0 -x {10.0 9.0 1743 ------- null} + -t 1.99283 -s 0 -d 9 -p ack -e 40 -c 0 -i 3492 -a 0 -x {10.0 9.0 1741 ------- null} - -t 1.99283 -s 0 -d 9 -p ack -e 40 -c 0 -i 3492 -a 0 -x {10.0 9.0 1741 ------- null} h -t 1.99283 -s 0 -d 9 -p ack -e 40 -c 0 -i 3492 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.99309 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3495 -a 0 -x {9.0 10.0 1752 ------- null} + -t 1.99309 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3495 -a 0 -x {9.0 10.0 1752 ------- null} h -t 1.99309 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3495 -a 0 -x {9.0 10.0 1752 ------- null} r -t 1.99315 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3481 -a 0 -x {9.0 10.0 1745 ------- null} + -t 1.99315 -s 10 -d 7 -p ack -e 40 -c 0 -i 3500 -a 0 -x {10.0 9.0 1745 ------- null} - -t 1.99315 -s 10 -d 7 -p ack -e 40 -c 0 -i 3500 -a 0 -x {10.0 9.0 1745 ------- null} h -t 1.99315 -s 10 -d 7 -p ack -e 40 -c 0 -i 3500 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.99384 -s 0 -d 9 -p ack -e 40 -c 0 -i 3490 -a 0 -x {10.0 9.0 1740 ------- null} + -t 1.99384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3501 -a 0 -x {9.0 10.0 1755 ------- null} - -t 1.99384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3501 -a 0 -x {9.0 10.0 1755 ------- null} h -t 1.99384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3501 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.99386 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3487 -a 0 -x {9.0 10.0 1748 ------- null} - -t 1.99386 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3487 -a 0 -x {9.0 10.0 1748 ------- null} h -t 1.99386 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3487 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.99398 -s 0 -d 9 -p ack -e 40 -c 0 -i 3494 -a 0 -x {10.0 9.0 1742 ------- null} - -t 1.99398 -s 0 -d 9 -p ack -e 40 -c 0 -i 3494 -a 0 -x {10.0 9.0 1742 ------- null} h -t 1.99398 -s 0 -d 9 -p ack -e 40 -c 0 -i 3494 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.9941 -s 10 -d 7 -p ack -e 40 -c 0 -i 3498 -a 0 -x {10.0 9.0 1744 ------- null} + -t 1.9941 -s 7 -d 0 -p ack -e 40 -c 0 -i 3498 -a 0 -x {10.0 9.0 1744 ------- null} h -t 1.9941 -s 7 -d 8 -p ack -e 40 -c 0 -i 3498 -a 0 -x {10.0 9.0 1744 ------- null} r -t 1.99426 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3497 -a 0 -x {9.0 10.0 1753 ------- null} + -t 1.99426 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3497 -a 0 -x {9.0 10.0 1753 ------- null} h -t 1.99426 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3497 -a 0 -x {9.0 10.0 1753 ------- null} r -t 1.9943 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3483 -a 0 -x {9.0 10.0 1746 ------- null} + -t 1.9943 -s 10 -d 7 -p ack -e 40 -c 0 -i 3502 -a 0 -x {10.0 9.0 1746 ------- null} - -t 1.9943 -s 10 -d 7 -p ack -e 40 -c 0 -i 3502 -a 0 -x {10.0 9.0 1746 ------- null} h -t 1.9943 -s 10 -d 7 -p ack -e 40 -c 0 -i 3502 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.99486 -s 0 -d 9 -p ack -e 40 -c 0 -i 3492 -a 0 -x {10.0 9.0 1741 ------- null} + -t 1.99486 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3503 -a 0 -x {9.0 10.0 1756 ------- null} - -t 1.99486 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3503 -a 0 -x {9.0 10.0 1756 ------- null} h -t 1.99486 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3503 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.99494 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3489 -a 0 -x {9.0 10.0 1749 ------- null} - -t 1.99494 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3489 -a 0 -x {9.0 10.0 1749 ------- null} h -t 1.99494 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3489 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.99509 -s 0 -d 9 -p ack -e 40 -c 0 -i 3496 -a 0 -x {10.0 9.0 1743 ------- null} - -t 1.99509 -s 0 -d 9 -p ack -e 40 -c 0 -i 3496 -a 0 -x {10.0 9.0 1743 ------- null} h -t 1.99509 -s 0 -d 9 -p ack -e 40 -c 0 -i 3496 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.99518 -s 10 -d 7 -p ack -e 40 -c 0 -i 3500 -a 0 -x {10.0 9.0 1745 ------- null} + -t 1.99518 -s 7 -d 0 -p ack -e 40 -c 0 -i 3500 -a 0 -x {10.0 9.0 1745 ------- null} h -t 1.99518 -s 7 -d 8 -p ack -e 40 -c 0 -i 3500 -a 0 -x {10.0 9.0 1745 ------- null} r -t 1.99546 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3499 -a 0 -x {9.0 10.0 1754 ------- null} + -t 1.99546 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3499 -a 0 -x {9.0 10.0 1754 ------- null} h -t 1.99546 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3499 -a 0 -x {9.0 10.0 1754 ------- null} r -t 1.99557 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3485 -a 0 -x {9.0 10.0 1747 ------- null} + -t 1.99557 -s 10 -d 7 -p ack -e 40 -c 0 -i 3504 -a 0 -x {10.0 9.0 1747 ------- null} - -t 1.99557 -s 10 -d 7 -p ack -e 40 -c 0 -i 3504 -a 0 -x {10.0 9.0 1747 ------- null} h -t 1.99557 -s 10 -d 7 -p ack -e 40 -c 0 -i 3504 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.99602 -s 0 -d 9 -p ack -e 40 -c 0 -i 3494 -a 0 -x {10.0 9.0 1742 ------- null} + -t 1.99602 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3505 -a 0 -x {9.0 10.0 1757 ------- null} - -t 1.99602 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3505 -a 0 -x {9.0 10.0 1757 ------- null} h -t 1.99602 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3505 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.99603 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3491 -a 0 -x {9.0 10.0 1750 ------- null} - -t 1.99603 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3491 -a 0 -x {9.0 10.0 1750 ------- null} h -t 1.99603 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3491 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.9961 -s 0 -d 9 -p ack -e 40 -c 0 -i 3498 -a 0 -x {10.0 9.0 1744 ------- null} - -t 1.9961 -s 0 -d 9 -p ack -e 40 -c 0 -i 3498 -a 0 -x {10.0 9.0 1744 ------- null} h -t 1.9961 -s 0 -d 9 -p ack -e 40 -c 0 -i 3498 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.99634 -s 10 -d 7 -p ack -e 40 -c 0 -i 3502 -a 0 -x {10.0 9.0 1746 ------- null} + -t 1.99634 -s 7 -d 0 -p ack -e 40 -c 0 -i 3502 -a 0 -x {10.0 9.0 1746 ------- null} h -t 1.99634 -s 7 -d 8 -p ack -e 40 -c 0 -i 3502 -a 0 -x {10.0 9.0 1746 ------- null} r -t 1.99664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3501 -a 0 -x {9.0 10.0 1755 ------- null} + -t 1.99664 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3501 -a 0 -x {9.0 10.0 1755 ------- null} h -t 1.99664 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3501 -a 0 -x {9.0 10.0 1755 ------- null} r -t 1.99666 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3487 -a 0 -x {9.0 10.0 1748 ------- null} + -t 1.99666 -s 10 -d 7 -p ack -e 40 -c 0 -i 3506 -a 0 -x {10.0 9.0 1748 ------- null} - -t 1.99666 -s 10 -d 7 -p ack -e 40 -c 0 -i 3506 -a 0 -x {10.0 9.0 1748 ------- null} h -t 1.99666 -s 10 -d 7 -p ack -e 40 -c 0 -i 3506 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.99712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3493 -a 0 -x {9.0 10.0 1751 ------- null} - -t 1.99712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3493 -a 0 -x {9.0 10.0 1751 ------- null} h -t 1.99712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3493 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.99712 -s 0 -d 9 -p ack -e 40 -c 0 -i 3496 -a 0 -x {10.0 9.0 1743 ------- null} + -t 1.99712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3507 -a 0 -x {9.0 10.0 1758 ------- null} - -t 1.99712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3507 -a 0 -x {9.0 10.0 1758 ------- null} h -t 1.99712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3507 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.99738 -s 0 -d 9 -p ack -e 40 -c 0 -i 3500 -a 0 -x {10.0 9.0 1745 ------- null} - -t 1.99738 -s 0 -d 9 -p ack -e 40 -c 0 -i 3500 -a 0 -x {10.0 9.0 1745 ------- null} h -t 1.99738 -s 0 -d 9 -p ack -e 40 -c 0 -i 3500 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.9976 -s 10 -d 7 -p ack -e 40 -c 0 -i 3504 -a 0 -x {10.0 9.0 1747 ------- null} + -t 1.9976 -s 7 -d 0 -p ack -e 40 -c 0 -i 3504 -a 0 -x {10.0 9.0 1747 ------- null} h -t 1.9976 -s 7 -d 8 -p ack -e 40 -c 0 -i 3504 -a 0 -x {10.0 9.0 1747 ------- null} r -t 1.99766 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3503 -a 0 -x {9.0 10.0 1756 ------- null} + -t 1.99766 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3503 -a 0 -x {9.0 10.0 1756 ------- null} h -t 1.99766 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3503 -a 0 -x {9.0 10.0 1756 ------- null} r -t 1.99774 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3489 -a 0 -x {9.0 10.0 1749 ------- null} + -t 1.99774 -s 10 -d 7 -p ack -e 40 -c 0 -i 3508 -a 0 -x {10.0 9.0 1749 ------- null} - -t 1.99774 -s 10 -d 7 -p ack -e 40 -c 0 -i 3508 -a 0 -x {10.0 9.0 1749 ------- null} h -t 1.99774 -s 10 -d 7 -p ack -e 40 -c 0 -i 3508 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.99813 -s 0 -d 9 -p ack -e 40 -c 0 -i 3498 -a 0 -x {10.0 9.0 1744 ------- null} + -t 1.99813 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3509 -a 0 -x {9.0 10.0 1759 ------- null} - -t 1.99813 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3509 -a 0 -x {9.0 10.0 1759 ------- null} h -t 1.99813 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3509 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.99821 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3495 -a 0 -x {9.0 10.0 1752 ------- null} - -t 1.99821 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3495 -a 0 -x {9.0 10.0 1752 ------- null} h -t 1.99821 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3495 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.99829 -s 0 -d 9 -p ack -e 40 -c 0 -i 3502 -a 0 -x {10.0 9.0 1746 ------- null} - -t 1.99829 -s 0 -d 9 -p ack -e 40 -c 0 -i 3502 -a 0 -x {10.0 9.0 1746 ------- null} h -t 1.99829 -s 0 -d 9 -p ack -e 40 -c 0 -i 3502 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.99869 -s 10 -d 7 -p ack -e 40 -c 0 -i 3506 -a 0 -x {10.0 9.0 1748 ------- null} + -t 1.99869 -s 7 -d 0 -p ack -e 40 -c 0 -i 3506 -a 0 -x {10.0 9.0 1748 ------- null} h -t 1.99869 -s 7 -d 8 -p ack -e 40 -c 0 -i 3506 -a 0 -x {10.0 9.0 1748 ------- null} r -t 1.99882 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3505 -a 0 -x {9.0 10.0 1757 ------- null} + -t 1.99882 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3505 -a 0 -x {9.0 10.0 1757 ------- null} h -t 1.99882 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3505 -a 0 -x {9.0 10.0 1757 ------- null} r -t 1.99883 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3491 -a 0 -x {9.0 10.0 1750 ------- null} + -t 1.99883 -s 10 -d 7 -p ack -e 40 -c 0 -i 3510 -a 0 -x {10.0 9.0 1750 ------- null} - -t 1.99883 -s 10 -d 7 -p ack -e 40 -c 0 -i 3510 -a 0 -x {10.0 9.0 1750 ------- null} h -t 1.99883 -s 10 -d 7 -p ack -e 40 -c 0 -i 3510 -a 0 -x {10.0 9.0 -1 ------- null} + -t 1.9993 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3497 -a 0 -x {9.0 10.0 1753 ------- null} - -t 1.9993 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3497 -a 0 -x {9.0 10.0 1753 ------- null} h -t 1.9993 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3497 -a 0 -x {9.0 10.0 -1 ------- null} r -t 1.99941 -s 0 -d 9 -p ack -e 40 -c 0 -i 3500 -a 0 -x {10.0 9.0 1745 ------- null} + -t 1.99941 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3511 -a 0 -x {9.0 10.0 1760 ------- null} - -t 1.99941 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3511 -a 0 -x {9.0 10.0 1760 ------- null} h -t 1.99941 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3511 -a 0 -x {9.0 10.0 -1 ------- null} + -t 1.99944 -s 0 -d 9 -p ack -e 40 -c 0 -i 3504 -a 0 -x {10.0 9.0 1747 ------- null} - -t 1.99944 -s 0 -d 9 -p ack -e 40 -c 0 -i 3504 -a 0 -x {10.0 9.0 1747 ------- null} h -t 1.99944 -s 0 -d 9 -p ack -e 40 -c 0 -i 3504 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.99978 -s 10 -d 7 -p ack -e 40 -c 0 -i 3508 -a 0 -x {10.0 9.0 1749 ------- null} + -t 1.99978 -s 7 -d 0 -p ack -e 40 -c 0 -i 3508 -a 0 -x {10.0 9.0 1749 ------- null} h -t 1.99978 -s 7 -d 8 -p ack -e 40 -c 0 -i 3508 -a 0 -x {10.0 9.0 1749 ------- null} r -t 1.99992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3493 -a 0 -x {9.0 10.0 1751 ------- null} + -t 1.99992 -s 10 -d 7 -p ack -e 40 -c 0 -i 3512 -a 0 -x {10.0 9.0 1751 ------- null} - -t 1.99992 -s 10 -d 7 -p ack -e 40 -c 0 -i 3512 -a 0 -x {10.0 9.0 1751 ------- null} h -t 1.99992 -s 10 -d 7 -p ack -e 40 -c 0 -i 3512 -a 0 -x {10.0 9.0 -1 ------- null} r -t 1.99992 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3507 -a 0 -x {9.0 10.0 1758 ------- null} + -t 1.99992 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3507 -a 0 -x {9.0 10.0 1758 ------- null} h -t 1.99992 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3507 -a 0 -x {9.0 10.0 1758 ------- null} r -t 2.00032 -s 0 -d 9 -p ack -e 40 -c 0 -i 3502 -a 0 -x {10.0 9.0 1746 ------- null} + -t 2.00032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3513 -a 0 -x {9.0 10.0 1761 ------- null} - -t 2.00032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3513 -a 0 -x {9.0 10.0 1761 ------- null} h -t 2.00032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3513 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.00038 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3499 -a 0 -x {9.0 10.0 1754 ------- null} - -t 2.00038 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3499 -a 0 -x {9.0 10.0 1754 ------- null} h -t 2.00038 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3499 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.00059 -s 0 -d 9 -p ack -e 40 -c 0 -i 3506 -a 0 -x {10.0 9.0 1748 ------- null} - -t 2.00059 -s 0 -d 9 -p ack -e 40 -c 0 -i 3506 -a 0 -x {10.0 9.0 1748 ------- null} h -t 2.00059 -s 0 -d 9 -p ack -e 40 -c 0 -i 3506 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.00086 -s 10 -d 7 -p ack -e 40 -c 0 -i 3510 -a 0 -x {10.0 9.0 1750 ------- null} + -t 2.00086 -s 7 -d 0 -p ack -e 40 -c 0 -i 3510 -a 0 -x {10.0 9.0 1750 ------- null} h -t 2.00086 -s 7 -d 8 -p ack -e 40 -c 0 -i 3510 -a 0 -x {10.0 9.0 1750 ------- null} r -t 2.00093 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3509 -a 0 -x {9.0 10.0 1759 ------- null} + -t 2.00093 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3509 -a 0 -x {9.0 10.0 1759 ------- null} h -t 2.00093 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3509 -a 0 -x {9.0 10.0 1759 ------- null} r -t 2.00101 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3495 -a 0 -x {9.0 10.0 1752 ------- null} + -t 2.00101 -s 10 -d 7 -p ack -e 40 -c 0 -i 3514 -a 0 -x {10.0 9.0 1752 ------- null} - -t 2.00101 -s 10 -d 7 -p ack -e 40 -c 0 -i 3514 -a 0 -x {10.0 9.0 1752 ------- null} h -t 2.00101 -s 10 -d 7 -p ack -e 40 -c 0 -i 3514 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.00147 -s 0 -d 9 -p ack -e 40 -c 0 -i 3504 -a 0 -x {10.0 9.0 1747 ------- null} + -t 2.00147 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3515 -a 0 -x {9.0 10.0 1762 ------- null} - -t 2.00147 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3515 -a 0 -x {9.0 10.0 1762 ------- null} h -t 2.00147 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3515 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.00147 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3501 -a 0 -x {9.0 10.0 1755 ------- null} - -t 2.00147 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3501 -a 0 -x {9.0 10.0 1755 ------- null} h -t 2.00147 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3501 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.00165 -s 0 -d 9 -p ack -e 40 -c 0 -i 3508 -a 0 -x {10.0 9.0 1749 ------- null} - -t 2.00165 -s 0 -d 9 -p ack -e 40 -c 0 -i 3508 -a 0 -x {10.0 9.0 1749 ------- null} h -t 2.00165 -s 0 -d 9 -p ack -e 40 -c 0 -i 3508 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.00195 -s 10 -d 7 -p ack -e 40 -c 0 -i 3512 -a 0 -x {10.0 9.0 1751 ------- null} + -t 2.00195 -s 7 -d 0 -p ack -e 40 -c 0 -i 3512 -a 0 -x {10.0 9.0 1751 ------- null} h -t 2.00195 -s 7 -d 8 -p ack -e 40 -c 0 -i 3512 -a 0 -x {10.0 9.0 1751 ------- null} r -t 2.0021 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3497 -a 0 -x {9.0 10.0 1753 ------- null} + -t 2.0021 -s 10 -d 7 -p ack -e 40 -c 0 -i 3516 -a 0 -x {10.0 9.0 1753 ------- null} - -t 2.0021 -s 10 -d 7 -p ack -e 40 -c 0 -i 3516 -a 0 -x {10.0 9.0 1753 ------- null} h -t 2.0021 -s 10 -d 7 -p ack -e 40 -c 0 -i 3516 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.00221 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3511 -a 0 -x {9.0 10.0 1760 ------- null} + -t 2.00221 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3511 -a 0 -x {9.0 10.0 1760 ------- null} h -t 2.00221 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3511 -a 0 -x {9.0 10.0 1760 ------- null} + -t 2.00256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3503 -a 0 -x {9.0 10.0 1756 ------- null} - -t 2.00256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3503 -a 0 -x {9.0 10.0 1756 ------- null} h -t 2.00256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3503 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.00262 -s 0 -d 9 -p ack -e 40 -c 0 -i 3506 -a 0 -x {10.0 9.0 1748 ------- null} + -t 2.00262 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3517 -a 0 -x {9.0 10.0 1763 ------- null} - -t 2.00262 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3517 -a 0 -x {9.0 10.0 1763 ------- null} h -t 2.00262 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3517 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.00275 -s 0 -d 9 -p ack -e 40 -c 0 -i 3510 -a 0 -x {10.0 9.0 1750 ------- null} - -t 2.00275 -s 0 -d 9 -p ack -e 40 -c 0 -i 3510 -a 0 -x {10.0 9.0 1750 ------- null} h -t 2.00275 -s 0 -d 9 -p ack -e 40 -c 0 -i 3510 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.00304 -s 10 -d 7 -p ack -e 40 -c 0 -i 3514 -a 0 -x {10.0 9.0 1752 ------- null} + -t 2.00304 -s 7 -d 0 -p ack -e 40 -c 0 -i 3514 -a 0 -x {10.0 9.0 1752 ------- null} h -t 2.00304 -s 7 -d 8 -p ack -e 40 -c 0 -i 3514 -a 0 -x {10.0 9.0 1752 ------- null} r -t 2.00312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3513 -a 0 -x {9.0 10.0 1761 ------- null} + -t 2.00312 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3513 -a 0 -x {9.0 10.0 1761 ------- null} h -t 2.00312 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3513 -a 0 -x {9.0 10.0 1761 ------- null} r -t 2.00318 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3499 -a 0 -x {9.0 10.0 1754 ------- null} + -t 2.00318 -s 10 -d 7 -p ack -e 40 -c 0 -i 3518 -a 0 -x {10.0 9.0 1754 ------- null} - -t 2.00318 -s 10 -d 7 -p ack -e 40 -c 0 -i 3518 -a 0 -x {10.0 9.0 1754 ------- null} h -t 2.00318 -s 10 -d 7 -p ack -e 40 -c 0 -i 3518 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.00365 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3505 -a 0 -x {9.0 10.0 1757 ------- null} - -t 2.00365 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3505 -a 0 -x {9.0 10.0 1757 ------- null} h -t 2.00365 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3505 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.00368 -s 0 -d 9 -p ack -e 40 -c 0 -i 3508 -a 0 -x {10.0 9.0 1749 ------- null} + -t 2.00368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3519 -a 0 -x {9.0 10.0 1764 ------- null} - -t 2.00368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3519 -a 0 -x {9.0 10.0 1764 ------- null} h -t 2.00368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3519 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.00381 -s 0 -d 9 -p ack -e 40 -c 0 -i 3512 -a 0 -x {10.0 9.0 1751 ------- null} - -t 2.00381 -s 0 -d 9 -p ack -e 40 -c 0 -i 3512 -a 0 -x {10.0 9.0 1751 ------- null} h -t 2.00381 -s 0 -d 9 -p ack -e 40 -c 0 -i 3512 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.00413 -s 10 -d 7 -p ack -e 40 -c 0 -i 3516 -a 0 -x {10.0 9.0 1753 ------- null} + -t 2.00413 -s 7 -d 0 -p ack -e 40 -c 0 -i 3516 -a 0 -x {10.0 9.0 1753 ------- null} h -t 2.00413 -s 7 -d 8 -p ack -e 40 -c 0 -i 3516 -a 0 -x {10.0 9.0 1753 ------- null} r -t 2.00427 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3515 -a 0 -x {9.0 10.0 1762 ------- null} + -t 2.00427 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3515 -a 0 -x {9.0 10.0 1762 ------- null} h -t 2.00427 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3515 -a 0 -x {9.0 10.0 1762 ------- null} r -t 2.00427 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3501 -a 0 -x {9.0 10.0 1755 ------- null} + -t 2.00427 -s 10 -d 7 -p ack -e 40 -c 0 -i 3520 -a 0 -x {10.0 9.0 1755 ------- null} - -t 2.00427 -s 10 -d 7 -p ack -e 40 -c 0 -i 3520 -a 0 -x {10.0 9.0 1755 ------- null} h -t 2.00427 -s 10 -d 7 -p ack -e 40 -c 0 -i 3520 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.00474 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3507 -a 0 -x {9.0 10.0 1758 ------- null} - -t 2.00474 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3507 -a 0 -x {9.0 10.0 1758 ------- null} h -t 2.00474 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3507 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.00478 -s 0 -d 9 -p ack -e 40 -c 0 -i 3510 -a 0 -x {10.0 9.0 1750 ------- null} + -t 2.00478 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3521 -a 0 -x {9.0 10.0 1765 ------- null} - -t 2.00478 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3521 -a 0 -x {9.0 10.0 1765 ------- null} h -t 2.00478 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3521 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.00502 -s 0 -d 9 -p ack -e 40 -c 0 -i 3514 -a 0 -x {10.0 9.0 1752 ------- null} - -t 2.00502 -s 0 -d 9 -p ack -e 40 -c 0 -i 3514 -a 0 -x {10.0 9.0 1752 ------- null} h -t 2.00502 -s 0 -d 9 -p ack -e 40 -c 0 -i 3514 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.00522 -s 10 -d 7 -p ack -e 40 -c 0 -i 3518 -a 0 -x {10.0 9.0 1754 ------- null} + -t 2.00522 -s 7 -d 0 -p ack -e 40 -c 0 -i 3518 -a 0 -x {10.0 9.0 1754 ------- null} h -t 2.00522 -s 7 -d 8 -p ack -e 40 -c 0 -i 3518 -a 0 -x {10.0 9.0 1754 ------- null} r -t 2.00536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3503 -a 0 -x {9.0 10.0 1756 ------- null} + -t 2.00536 -s 10 -d 7 -p ack -e 40 -c 0 -i 3522 -a 0 -x {10.0 9.0 1756 ------- null} - -t 2.00536 -s 10 -d 7 -p ack -e 40 -c 0 -i 3522 -a 0 -x {10.0 9.0 1756 ------- null} h -t 2.00536 -s 10 -d 7 -p ack -e 40 -c 0 -i 3522 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.00542 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3517 -a 0 -x {9.0 10.0 1763 ------- null} + -t 2.00542 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3517 -a 0 -x {9.0 10.0 1763 ------- null} h -t 2.00542 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3517 -a 0 -x {9.0 10.0 1763 ------- null} r -t 2.00584 -s 0 -d 9 -p ack -e 40 -c 0 -i 3512 -a 0 -x {10.0 9.0 1751 ------- null} + -t 2.00584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3523 -a 0 -x {9.0 10.0 1766 ------- null} - -t 2.00584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3523 -a 0 -x {9.0 10.0 1766 ------- null} h -t 2.00584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3523 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.0061 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3509 -a 0 -x {9.0 10.0 1759 ------- null} - -t 2.0061 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3509 -a 0 -x {9.0 10.0 1759 ------- null} h -t 2.0061 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3509 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.00626 -s 0 -d 9 -p ack -e 40 -c 0 -i 3516 -a 0 -x {10.0 9.0 1753 ------- null} - -t 2.00626 -s 0 -d 9 -p ack -e 40 -c 0 -i 3516 -a 0 -x {10.0 9.0 1753 ------- null} h -t 2.00626 -s 0 -d 9 -p ack -e 40 -c 0 -i 3516 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.0063 -s 10 -d 7 -p ack -e 40 -c 0 -i 3520 -a 0 -x {10.0 9.0 1755 ------- null} + -t 2.0063 -s 7 -d 0 -p ack -e 40 -c 0 -i 3520 -a 0 -x {10.0 9.0 1755 ------- null} h -t 2.0063 -s 7 -d 8 -p ack -e 40 -c 0 -i 3520 -a 0 -x {10.0 9.0 1755 ------- null} r -t 2.00645 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3505 -a 0 -x {9.0 10.0 1757 ------- null} + -t 2.00645 -s 10 -d 7 -p ack -e 40 -c 0 -i 3524 -a 0 -x {10.0 9.0 1757 ------- null} - -t 2.00645 -s 10 -d 7 -p ack -e 40 -c 0 -i 3524 -a 0 -x {10.0 9.0 1757 ------- null} h -t 2.00645 -s 10 -d 7 -p ack -e 40 -c 0 -i 3524 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.00648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3519 -a 0 -x {9.0 10.0 1764 ------- null} + -t 2.00648 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3519 -a 0 -x {9.0 10.0 1764 ------- null} h -t 2.00648 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3519 -a 0 -x {9.0 10.0 1764 ------- null} r -t 2.00706 -s 0 -d 9 -p ack -e 40 -c 0 -i 3514 -a 0 -x {10.0 9.0 1752 ------- null} + -t 2.00706 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3525 -a 0 -x {9.0 10.0 1767 ------- null} - -t 2.00706 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3525 -a 0 -x {9.0 10.0 1767 ------- null} h -t 2.00706 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3525 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.00718 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3511 -a 0 -x {9.0 10.0 1760 ------- null} - -t 2.00718 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3511 -a 0 -x {9.0 10.0 1760 ------- null} h -t 2.00718 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3511 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.00739 -s 10 -d 7 -p ack -e 40 -c 0 -i 3522 -a 0 -x {10.0 9.0 1756 ------- null} + -t 2.00739 -s 7 -d 0 -p ack -e 40 -c 0 -i 3522 -a 0 -x {10.0 9.0 1756 ------- null} h -t 2.00739 -s 7 -d 8 -p ack -e 40 -c 0 -i 3522 -a 0 -x {10.0 9.0 1756 ------- null} + -t 2.00746 -s 0 -d 9 -p ack -e 40 -c 0 -i 3518 -a 0 -x {10.0 9.0 1754 ------- null} - -t 2.00746 -s 0 -d 9 -p ack -e 40 -c 0 -i 3518 -a 0 -x {10.0 9.0 1754 ------- null} h -t 2.00746 -s 0 -d 9 -p ack -e 40 -c 0 -i 3518 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.00754 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3507 -a 0 -x {9.0 10.0 1758 ------- null} + -t 2.00754 -s 10 -d 7 -p ack -e 40 -c 0 -i 3526 -a 0 -x {10.0 9.0 1758 ------- null} - -t 2.00754 -s 10 -d 7 -p ack -e 40 -c 0 -i 3526 -a 0 -x {10.0 9.0 1758 ------- null} h -t 2.00754 -s 10 -d 7 -p ack -e 40 -c 0 -i 3526 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.00758 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3521 -a 0 -x {9.0 10.0 1765 ------- null} + -t 2.00758 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3521 -a 0 -x {9.0 10.0 1765 ------- null} h -t 2.00758 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3521 -a 0 -x {9.0 10.0 1765 ------- null} r -t 2.00829 -s 0 -d 9 -p ack -e 40 -c 0 -i 3516 -a 0 -x {10.0 9.0 1753 ------- null} + -t 2.00829 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3527 -a 0 -x {9.0 10.0 1768 ------- null} - -t 2.00829 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3527 -a 0 -x {9.0 10.0 1768 ------- null} h -t 2.00829 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3527 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.00832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3513 -a 0 -x {9.0 10.0 1761 ------- null} - -t 2.00832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3513 -a 0 -x {9.0 10.0 1761 ------- null} h -t 2.00832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3513 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.00848 -s 10 -d 7 -p ack -e 40 -c 0 -i 3524 -a 0 -x {10.0 9.0 1757 ------- null} + -t 2.00848 -s 7 -d 0 -p ack -e 40 -c 0 -i 3524 -a 0 -x {10.0 9.0 1757 ------- null} h -t 2.00848 -s 7 -d 8 -p ack -e 40 -c 0 -i 3524 -a 0 -x {10.0 9.0 1757 ------- null} + -t 2.00859 -s 0 -d 9 -p ack -e 40 -c 0 -i 3520 -a 0 -x {10.0 9.0 1755 ------- null} - -t 2.00859 -s 0 -d 9 -p ack -e 40 -c 0 -i 3520 -a 0 -x {10.0 9.0 1755 ------- null} h -t 2.00859 -s 0 -d 9 -p ack -e 40 -c 0 -i 3520 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.00864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3523 -a 0 -x {9.0 10.0 1766 ------- null} + -t 2.00864 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3523 -a 0 -x {9.0 10.0 1766 ------- null} h -t 2.00864 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3523 -a 0 -x {9.0 10.0 1766 ------- null} r -t 2.0089 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3509 -a 0 -x {9.0 10.0 1759 ------- null} + -t 2.0089 -s 10 -d 7 -p ack -e 40 -c 0 -i 3528 -a 0 -x {10.0 9.0 1759 ------- null} - -t 2.0089 -s 10 -d 7 -p ack -e 40 -c 0 -i 3528 -a 0 -x {10.0 9.0 1759 ------- null} h -t 2.0089 -s 10 -d 7 -p ack -e 40 -c 0 -i 3528 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.00949 -s 0 -d 9 -p ack -e 40 -c 0 -i 3518 -a 0 -x {10.0 9.0 1754 ------- null} + -t 2.00949 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3529 -a 0 -x {9.0 10.0 1769 ------- null} - -t 2.00949 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3529 -a 0 -x {9.0 10.0 1769 ------- null} h -t 2.00949 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3529 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.0095 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3515 -a 0 -x {9.0 10.0 1762 ------- null} - -t 2.0095 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3515 -a 0 -x {9.0 10.0 1762 ------- null} h -t 2.0095 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3515 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.00957 -s 10 -d 7 -p ack -e 40 -c 0 -i 3526 -a 0 -x {10.0 9.0 1758 ------- null} + -t 2.00957 -s 7 -d 0 -p ack -e 40 -c 0 -i 3526 -a 0 -x {10.0 9.0 1758 ------- null} h -t 2.00957 -s 7 -d 8 -p ack -e 40 -c 0 -i 3526 -a 0 -x {10.0 9.0 1758 ------- null} + -t 2.00971 -s 0 -d 9 -p ack -e 40 -c 0 -i 3522 -a 0 -x {10.0 9.0 1756 ------- null} - -t 2.00971 -s 0 -d 9 -p ack -e 40 -c 0 -i 3522 -a 0 -x {10.0 9.0 1756 ------- null} h -t 2.00971 -s 0 -d 9 -p ack -e 40 -c 0 -i 3522 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.00986 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3525 -a 0 -x {9.0 10.0 1767 ------- null} + -t 2.00986 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3525 -a 0 -x {9.0 10.0 1767 ------- null} h -t 2.00986 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3525 -a 0 -x {9.0 10.0 1767 ------- null} r -t 2.00998 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3511 -a 0 -x {9.0 10.0 1760 ------- null} + -t 2.00998 -s 10 -d 7 -p ack -e 40 -c 0 -i 3530 -a 0 -x {10.0 9.0 1760 ------- null} - -t 2.00998 -s 10 -d 7 -p ack -e 40 -c 0 -i 3530 -a 0 -x {10.0 9.0 1760 ------- null} h -t 2.00998 -s 10 -d 7 -p ack -e 40 -c 0 -i 3530 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.01059 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3517 -a 0 -x {9.0 10.0 1763 ------- null} - -t 2.01059 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3517 -a 0 -x {9.0 10.0 1763 ------- null} h -t 2.01059 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3517 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.01062 -s 0 -d 9 -p ack -e 40 -c 0 -i 3520 -a 0 -x {10.0 9.0 1755 ------- null} + -t 2.01062 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3531 -a 0 -x {9.0 10.0 1770 ------- null} - -t 2.01062 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3531 -a 0 -x {9.0 10.0 1770 ------- null} h -t 2.01062 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3531 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.01075 -s 0 -d 9 -p ack -e 40 -c 0 -i 3524 -a 0 -x {10.0 9.0 1757 ------- null} - -t 2.01075 -s 0 -d 9 -p ack -e 40 -c 0 -i 3524 -a 0 -x {10.0 9.0 1757 ------- null} h -t 2.01075 -s 0 -d 9 -p ack -e 40 -c 0 -i 3524 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.01093 -s 10 -d 7 -p ack -e 40 -c 0 -i 3528 -a 0 -x {10.0 9.0 1759 ------- null} + -t 2.01093 -s 7 -d 0 -p ack -e 40 -c 0 -i 3528 -a 0 -x {10.0 9.0 1759 ------- null} h -t 2.01093 -s 7 -d 8 -p ack -e 40 -c 0 -i 3528 -a 0 -x {10.0 9.0 1759 ------- null} r -t 2.01109 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3527 -a 0 -x {9.0 10.0 1768 ------- null} + -t 2.01109 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3527 -a 0 -x {9.0 10.0 1768 ------- null} h -t 2.01109 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3527 -a 0 -x {9.0 10.0 1768 ------- null} r -t 2.01112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3513 -a 0 -x {9.0 10.0 1761 ------- null} + -t 2.01112 -s 10 -d 7 -p ack -e 40 -c 0 -i 3532 -a 0 -x {10.0 9.0 1761 ------- null} - -t 2.01112 -s 10 -d 7 -p ack -e 40 -c 0 -i 3532 -a 0 -x {10.0 9.0 1761 ------- null} h -t 2.01112 -s 10 -d 7 -p ack -e 40 -c 0 -i 3532 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.01168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3519 -a 0 -x {9.0 10.0 1764 ------- null} - -t 2.01168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3519 -a 0 -x {9.0 10.0 1764 ------- null} h -t 2.01168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3519 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.01174 -s 0 -d 9 -p ack -e 40 -c 0 -i 3522 -a 0 -x {10.0 9.0 1756 ------- null} + -t 2.01174 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3533 -a 0 -x {9.0 10.0 1771 ------- null} - -t 2.01174 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3533 -a 0 -x {9.0 10.0 1771 ------- null} h -t 2.01174 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3533 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.01176 -s 0 -d 9 -p ack -e 40 -c 0 -i 3526 -a 0 -x {10.0 9.0 1758 ------- null} - -t 2.01176 -s 0 -d 9 -p ack -e 40 -c 0 -i 3526 -a 0 -x {10.0 9.0 1758 ------- null} h -t 2.01176 -s 0 -d 9 -p ack -e 40 -c 0 -i 3526 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.01202 -s 10 -d 7 -p ack -e 40 -c 0 -i 3530 -a 0 -x {10.0 9.0 1760 ------- null} + -t 2.01202 -s 7 -d 0 -p ack -e 40 -c 0 -i 3530 -a 0 -x {10.0 9.0 1760 ------- null} h -t 2.01202 -s 7 -d 8 -p ack -e 40 -c 0 -i 3530 -a 0 -x {10.0 9.0 1760 ------- null} r -t 2.01229 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3529 -a 0 -x {9.0 10.0 1769 ------- null} + -t 2.01229 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3529 -a 0 -x {9.0 10.0 1769 ------- null} h -t 2.01229 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3529 -a 0 -x {9.0 10.0 1769 ------- null} r -t 2.0123 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3515 -a 0 -x {9.0 10.0 1762 ------- null} + -t 2.0123 -s 10 -d 7 -p ack -e 40 -c 0 -i 3534 -a 0 -x {10.0 9.0 1762 ------- null} - -t 2.0123 -s 10 -d 7 -p ack -e 40 -c 0 -i 3534 -a 0 -x {10.0 9.0 1762 ------- null} h -t 2.0123 -s 10 -d 7 -p ack -e 40 -c 0 -i 3534 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.01277 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3521 -a 0 -x {9.0 10.0 1765 ------- null} - -t 2.01277 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3521 -a 0 -x {9.0 10.0 1765 ------- null} h -t 2.01277 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3521 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.01278 -s 0 -d 9 -p ack -e 40 -c 0 -i 3524 -a 0 -x {10.0 9.0 1757 ------- null} + -t 2.01278 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3535 -a 0 -x {9.0 10.0 1772 ------- null} - -t 2.01278 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3535 -a 0 -x {9.0 10.0 1772 ------- null} h -t 2.01278 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3535 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.01307 -s 0 -d 9 -p ack -e 40 -c 0 -i 3528 -a 0 -x {10.0 9.0 1759 ------- null} - -t 2.01307 -s 0 -d 9 -p ack -e 40 -c 0 -i 3528 -a 0 -x {10.0 9.0 1759 ------- null} h -t 2.01307 -s 0 -d 9 -p ack -e 40 -c 0 -i 3528 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.01315 -s 10 -d 7 -p ack -e 40 -c 0 -i 3532 -a 0 -x {10.0 9.0 1761 ------- null} + -t 2.01315 -s 7 -d 0 -p ack -e 40 -c 0 -i 3532 -a 0 -x {10.0 9.0 1761 ------- null} h -t 2.01315 -s 7 -d 8 -p ack -e 40 -c 0 -i 3532 -a 0 -x {10.0 9.0 1761 ------- null} r -t 2.01339 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3517 -a 0 -x {9.0 10.0 1763 ------- null} + -t 2.01339 -s 10 -d 7 -p ack -e 40 -c 0 -i 3536 -a 0 -x {10.0 9.0 1763 ------- null} - -t 2.01339 -s 10 -d 7 -p ack -e 40 -c 0 -i 3536 -a 0 -x {10.0 9.0 1763 ------- null} h -t 2.01339 -s 10 -d 7 -p ack -e 40 -c 0 -i 3536 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.01342 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3531 -a 0 -x {9.0 10.0 1770 ------- null} + -t 2.01342 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3531 -a 0 -x {9.0 10.0 1770 ------- null} h -t 2.01342 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3531 -a 0 -x {9.0 10.0 1770 ------- null} r -t 2.01379 -s 0 -d 9 -p ack -e 40 -c 0 -i 3526 -a 0 -x {10.0 9.0 1758 ------- null} + -t 2.01379 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3537 -a 0 -x {9.0 10.0 1773 ------- null} - -t 2.01379 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3537 -a 0 -x {9.0 10.0 1773 ------- null} h -t 2.01379 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3537 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.01411 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3523 -a 0 -x {9.0 10.0 1766 ------- null} - -t 2.01411 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3523 -a 0 -x {9.0 10.0 1766 ------- null} h -t 2.01411 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3523 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.01434 -s 0 -d 9 -p ack -e 40 -c 0 -i 3530 -a 0 -x {10.0 9.0 1760 ------- null} - -t 2.01434 -s 0 -d 9 -p ack -e 40 -c 0 -i 3530 -a 0 -x {10.0 9.0 1760 ------- null} h -t 2.01434 -s 0 -d 9 -p ack -e 40 -c 0 -i 3530 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.01434 -s 10 -d 7 -p ack -e 40 -c 0 -i 3534 -a 0 -x {10.0 9.0 1762 ------- null} + -t 2.01434 -s 7 -d 0 -p ack -e 40 -c 0 -i 3534 -a 0 -x {10.0 9.0 1762 ------- null} h -t 2.01434 -s 7 -d 8 -p ack -e 40 -c 0 -i 3534 -a 0 -x {10.0 9.0 1762 ------- null} r -t 2.01448 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3519 -a 0 -x {9.0 10.0 1764 ------- null} + -t 2.01448 -s 10 -d 7 -p ack -e 40 -c 0 -i 3538 -a 0 -x {10.0 9.0 1764 ------- null} - -t 2.01448 -s 10 -d 7 -p ack -e 40 -c 0 -i 3538 -a 0 -x {10.0 9.0 1764 ------- null} h -t 2.01448 -s 10 -d 7 -p ack -e 40 -c 0 -i 3538 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.01454 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3533 -a 0 -x {9.0 10.0 1771 ------- null} + -t 2.01454 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3533 -a 0 -x {9.0 10.0 1771 ------- null} h -t 2.01454 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3533 -a 0 -x {9.0 10.0 1771 ------- null} r -t 2.0151 -s 0 -d 9 -p ack -e 40 -c 0 -i 3528 -a 0 -x {10.0 9.0 1759 ------- null} + -t 2.0151 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3539 -a 0 -x {9.0 10.0 1774 ------- null} - -t 2.0151 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3539 -a 0 -x {9.0 10.0 1774 ------- null} h -t 2.0151 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3539 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.0152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3525 -a 0 -x {9.0 10.0 1767 ------- null} - -t 2.0152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3525 -a 0 -x {9.0 10.0 1767 ------- null} h -t 2.0152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3525 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.01533 -s 0 -d 9 -p ack -e 40 -c 0 -i 3532 -a 0 -x {10.0 9.0 1761 ------- null} - -t 2.01533 -s 0 -d 9 -p ack -e 40 -c 0 -i 3532 -a 0 -x {10.0 9.0 1761 ------- null} h -t 2.01533 -s 0 -d 9 -p ack -e 40 -c 0 -i 3532 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.01542 -s 10 -d 7 -p ack -e 40 -c 0 -i 3536 -a 0 -x {10.0 9.0 1763 ------- null} + -t 2.01542 -s 7 -d 0 -p ack -e 40 -c 0 -i 3536 -a 0 -x {10.0 9.0 1763 ------- null} h -t 2.01542 -s 7 -d 8 -p ack -e 40 -c 0 -i 3536 -a 0 -x {10.0 9.0 1763 ------- null} r -t 2.01557 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3521 -a 0 -x {9.0 10.0 1765 ------- null} + -t 2.01557 -s 10 -d 7 -p ack -e 40 -c 0 -i 3540 -a 0 -x {10.0 9.0 1765 ------- null} - -t 2.01557 -s 10 -d 7 -p ack -e 40 -c 0 -i 3540 -a 0 -x {10.0 9.0 1765 ------- null} h -t 2.01557 -s 10 -d 7 -p ack -e 40 -c 0 -i 3540 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.01558 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3535 -a 0 -x {9.0 10.0 1772 ------- null} + -t 2.01558 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3535 -a 0 -x {9.0 10.0 1772 ------- null} h -t 2.01558 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3535 -a 0 -x {9.0 10.0 1772 ------- null} + -t 2.01629 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3527 -a 0 -x {9.0 10.0 1768 ------- null} - -t 2.01629 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3527 -a 0 -x {9.0 10.0 1768 ------- null} h -t 2.01629 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3527 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.01635 -s 0 -d 9 -p ack -e 40 -c 0 -i 3534 -a 0 -x {10.0 9.0 1762 ------- null} - -t 2.01635 -s 0 -d 9 -p ack -e 40 -c 0 -i 3534 -a 0 -x {10.0 9.0 1762 ------- null} h -t 2.01635 -s 0 -d 9 -p ack -e 40 -c 0 -i 3534 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.01637 -s 0 -d 9 -p ack -e 40 -c 0 -i 3530 -a 0 -x {10.0 9.0 1760 ------- null} + -t 2.01637 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3541 -a 0 -x {9.0 10.0 1775 ------- null} - -t 2.01637 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3541 -a 0 -x {9.0 10.0 1775 ------- null} h -t 2.01637 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3541 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.01651 -s 10 -d 7 -p ack -e 40 -c 0 -i 3538 -a 0 -x {10.0 9.0 1764 ------- null} + -t 2.01651 -s 7 -d 0 -p ack -e 40 -c 0 -i 3538 -a 0 -x {10.0 9.0 1764 ------- null} h -t 2.01651 -s 7 -d 8 -p ack -e 40 -c 0 -i 3538 -a 0 -x {10.0 9.0 1764 ------- null} r -t 2.01659 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3537 -a 0 -x {9.0 10.0 1773 ------- null} + -t 2.01659 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3537 -a 0 -x {9.0 10.0 1773 ------- null} h -t 2.01659 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3537 -a 0 -x {9.0 10.0 1773 ------- null} r -t 2.01691 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3523 -a 0 -x {9.0 10.0 1766 ------- null} + -t 2.01691 -s 10 -d 7 -p ack -e 40 -c 0 -i 3542 -a 0 -x {10.0 9.0 1766 ------- null} - -t 2.01691 -s 10 -d 7 -p ack -e 40 -c 0 -i 3542 -a 0 -x {10.0 9.0 1766 ------- null} h -t 2.01691 -s 10 -d 7 -p ack -e 40 -c 0 -i 3542 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.01736 -s 0 -d 9 -p ack -e 40 -c 0 -i 3532 -a 0 -x {10.0 9.0 1761 ------- null} + -t 2.01736 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3543 -a 0 -x {9.0 10.0 1776 ------- null} - -t 2.01736 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3543 -a 0 -x {9.0 10.0 1776 ------- null} h -t 2.01736 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3543 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.01738 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3529 -a 0 -x {9.0 10.0 1769 ------- null} - -t 2.01738 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3529 -a 0 -x {9.0 10.0 1769 ------- null} h -t 2.01738 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3529 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.01757 -s 0 -d 9 -p ack -e 40 -c 0 -i 3536 -a 0 -x {10.0 9.0 1763 ------- null} - -t 2.01757 -s 0 -d 9 -p ack -e 40 -c 0 -i 3536 -a 0 -x {10.0 9.0 1763 ------- null} h -t 2.01757 -s 0 -d 9 -p ack -e 40 -c 0 -i 3536 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.0176 -s 10 -d 7 -p ack -e 40 -c 0 -i 3540 -a 0 -x {10.0 9.0 1765 ------- null} + -t 2.0176 -s 7 -d 0 -p ack -e 40 -c 0 -i 3540 -a 0 -x {10.0 9.0 1765 ------- null} h -t 2.0176 -s 7 -d 8 -p ack -e 40 -c 0 -i 3540 -a 0 -x {10.0 9.0 1765 ------- null} r -t 2.0179 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3539 -a 0 -x {9.0 10.0 1774 ------- null} + -t 2.0179 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3539 -a 0 -x {9.0 10.0 1774 ------- null} h -t 2.0179 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3539 -a 0 -x {9.0 10.0 1774 ------- null} r -t 2.018 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3525 -a 0 -x {9.0 10.0 1767 ------- null} + -t 2.018 -s 10 -d 7 -p ack -e 40 -c 0 -i 3544 -a 0 -x {10.0 9.0 1767 ------- null} - -t 2.018 -s 10 -d 7 -p ack -e 40 -c 0 -i 3544 -a 0 -x {10.0 9.0 1767 ------- null} h -t 2.018 -s 10 -d 7 -p ack -e 40 -c 0 -i 3544 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.01838 -s 0 -d 9 -p ack -e 40 -c 0 -i 3534 -a 0 -x {10.0 9.0 1762 ------- null} + -t 2.01838 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3545 -a 0 -x {9.0 10.0 1777 ------- null} - -t 2.01838 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3545 -a 0 -x {9.0 10.0 1777 ------- null} h -t 2.01838 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3545 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.01846 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3531 -a 0 -x {9.0 10.0 1770 ------- null} - -t 2.01846 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3531 -a 0 -x {9.0 10.0 1770 ------- null} h -t 2.01846 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3531 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.01861 -s 0 -d 9 -p ack -e 40 -c 0 -i 3538 -a 0 -x {10.0 9.0 1764 ------- null} - -t 2.01861 -s 0 -d 9 -p ack -e 40 -c 0 -i 3538 -a 0 -x {10.0 9.0 1764 ------- null} h -t 2.01861 -s 0 -d 9 -p ack -e 40 -c 0 -i 3538 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.01894 -s 10 -d 7 -p ack -e 40 -c 0 -i 3542 -a 0 -x {10.0 9.0 1766 ------- null} + -t 2.01894 -s 7 -d 0 -p ack -e 40 -c 0 -i 3542 -a 0 -x {10.0 9.0 1766 ------- null} h -t 2.01894 -s 7 -d 8 -p ack -e 40 -c 0 -i 3542 -a 0 -x {10.0 9.0 1766 ------- null} r -t 2.01909 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3527 -a 0 -x {9.0 10.0 1768 ------- null} + -t 2.01909 -s 10 -d 7 -p ack -e 40 -c 0 -i 3546 -a 0 -x {10.0 9.0 1768 ------- null} - -t 2.01909 -s 10 -d 7 -p ack -e 40 -c 0 -i 3546 -a 0 -x {10.0 9.0 1768 ------- null} h -t 2.01909 -s 10 -d 7 -p ack -e 40 -c 0 -i 3546 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.01917 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3541 -a 0 -x {9.0 10.0 1775 ------- null} + -t 2.01917 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3541 -a 0 -x {9.0 10.0 1775 ------- null} h -t 2.01917 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3541 -a 0 -x {9.0 10.0 1775 ------- null} + -t 2.01955 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3533 -a 0 -x {9.0 10.0 1771 ------- null} - -t 2.01955 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3533 -a 0 -x {9.0 10.0 1771 ------- null} h -t 2.01955 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3533 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.0196 -s 0 -d 9 -p ack -e 40 -c 0 -i 3536 -a 0 -x {10.0 9.0 1763 ------- null} + -t 2.0196 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3547 -a 0 -x {9.0 10.0 1778 ------- null} - -t 2.0196 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3547 -a 0 -x {9.0 10.0 1778 ------- null} h -t 2.0196 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3547 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.01982 -s 0 -d 9 -p ack -e 40 -c 0 -i 3540 -a 0 -x {10.0 9.0 1765 ------- null} - -t 2.01982 -s 0 -d 9 -p ack -e 40 -c 0 -i 3540 -a 0 -x {10.0 9.0 1765 ------- null} h -t 2.01982 -s 0 -d 9 -p ack -e 40 -c 0 -i 3540 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.02003 -s 10 -d 7 -p ack -e 40 -c 0 -i 3544 -a 0 -x {10.0 9.0 1767 ------- null} + -t 2.02003 -s 7 -d 0 -p ack -e 40 -c 0 -i 3544 -a 0 -x {10.0 9.0 1767 ------- null} h -t 2.02003 -s 7 -d 8 -p ack -e 40 -c 0 -i 3544 -a 0 -x {10.0 9.0 1767 ------- null} r -t 2.02016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3543 -a 0 -x {9.0 10.0 1776 ------- null} + -t 2.02016 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3543 -a 0 -x {9.0 10.0 1776 ------- null} h -t 2.02016 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3543 -a 0 -x {9.0 10.0 1776 ------- null} r -t 2.02018 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3529 -a 0 -x {9.0 10.0 1769 ------- null} + -t 2.02018 -s 10 -d 7 -p ack -e 40 -c 0 -i 3548 -a 0 -x {10.0 9.0 1769 ------- null} - -t 2.02018 -s 10 -d 7 -p ack -e 40 -c 0 -i 3548 -a 0 -x {10.0 9.0 1769 ------- null} h -t 2.02018 -s 10 -d 7 -p ack -e 40 -c 0 -i 3548 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.02064 -s 0 -d 9 -p ack -e 40 -c 0 -i 3538 -a 0 -x {10.0 9.0 1764 ------- null} + -t 2.02064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3549 -a 0 -x {9.0 10.0 1779 ------- null} - -t 2.02064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3549 -a 0 -x {9.0 10.0 1779 ------- null} h -t 2.02064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3549 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.0209 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3535 -a 0 -x {9.0 10.0 1772 ------- null} - -t 2.0209 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3535 -a 0 -x {9.0 10.0 1772 ------- null} h -t 2.0209 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3535 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.02104 -s 0 -d 9 -p ack -e 40 -c 0 -i 3542 -a 0 -x {10.0 9.0 1766 ------- null} - -t 2.02104 -s 0 -d 9 -p ack -e 40 -c 0 -i 3542 -a 0 -x {10.0 9.0 1766 ------- null} h -t 2.02104 -s 0 -d 9 -p ack -e 40 -c 0 -i 3542 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.02112 -s 10 -d 7 -p ack -e 40 -c 0 -i 3546 -a 0 -x {10.0 9.0 1768 ------- null} + -t 2.02112 -s 7 -d 0 -p ack -e 40 -c 0 -i 3546 -a 0 -x {10.0 9.0 1768 ------- null} h -t 2.02112 -s 7 -d 8 -p ack -e 40 -c 0 -i 3546 -a 0 -x {10.0 9.0 1768 ------- null} r -t 2.02118 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3545 -a 0 -x {9.0 10.0 1777 ------- null} + -t 2.02118 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3545 -a 0 -x {9.0 10.0 1777 ------- null} h -t 2.02118 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3545 -a 0 -x {9.0 10.0 1777 ------- null} r -t 2.02126 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3531 -a 0 -x {9.0 10.0 1770 ------- null} + -t 2.02126 -s 10 -d 7 -p ack -e 40 -c 0 -i 3550 -a 0 -x {10.0 9.0 1770 ------- null} - -t 2.02126 -s 10 -d 7 -p ack -e 40 -c 0 -i 3550 -a 0 -x {10.0 9.0 1770 ------- null} h -t 2.02126 -s 10 -d 7 -p ack -e 40 -c 0 -i 3550 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.02186 -s 0 -d 9 -p ack -e 40 -c 0 -i 3540 -a 0 -x {10.0 9.0 1765 ------- null} + -t 2.02186 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3551 -a 0 -x {9.0 10.0 1780 ------- null} - -t 2.02186 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3551 -a 0 -x {9.0 10.0 1780 ------- null} h -t 2.02186 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3551 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.02198 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3537 -a 0 -x {9.0 10.0 1773 ------- null} - -t 2.02198 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3537 -a 0 -x {9.0 10.0 1773 ------- null} h -t 2.02198 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3537 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.0221 -s 0 -d 9 -p ack -e 40 -c 0 -i 3544 -a 0 -x {10.0 9.0 1767 ------- null} - -t 2.0221 -s 0 -d 9 -p ack -e 40 -c 0 -i 3544 -a 0 -x {10.0 9.0 1767 ------- null} h -t 2.0221 -s 0 -d 9 -p ack -e 40 -c 0 -i 3544 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.02221 -s 10 -d 7 -p ack -e 40 -c 0 -i 3548 -a 0 -x {10.0 9.0 1769 ------- null} + -t 2.02221 -s 7 -d 0 -p ack -e 40 -c 0 -i 3548 -a 0 -x {10.0 9.0 1769 ------- null} h -t 2.02221 -s 7 -d 8 -p ack -e 40 -c 0 -i 3548 -a 0 -x {10.0 9.0 1769 ------- null} r -t 2.02235 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3533 -a 0 -x {9.0 10.0 1771 ------- null} + -t 2.02235 -s 10 -d 7 -p ack -e 40 -c 0 -i 3552 -a 0 -x {10.0 9.0 1771 ------- null} - -t 2.02235 -s 10 -d 7 -p ack -e 40 -c 0 -i 3552 -a 0 -x {10.0 9.0 1771 ------- null} h -t 2.02235 -s 10 -d 7 -p ack -e 40 -c 0 -i 3552 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.0224 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3547 -a 0 -x {9.0 10.0 1778 ------- null} + -t 2.0224 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3547 -a 0 -x {9.0 10.0 1778 ------- null} h -t 2.0224 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3547 -a 0 -x {9.0 10.0 1778 ------- null} + -t 2.02307 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3539 -a 0 -x {9.0 10.0 1774 ------- null} - -t 2.02307 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3539 -a 0 -x {9.0 10.0 1774 ------- null} h -t 2.02307 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3539 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.02307 -s 0 -d 9 -p ack -e 40 -c 0 -i 3542 -a 0 -x {10.0 9.0 1766 ------- null} + -t 2.02307 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3553 -a 0 -x {9.0 10.0 1781 ------- null} - -t 2.02307 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3553 -a 0 -x {9.0 10.0 1781 ------- null} h -t 2.02307 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3553 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.02317 -s 0 -d 9 -p ack -e 40 -c 0 -i 3546 -a 0 -x {10.0 9.0 1768 ------- null} - -t 2.02317 -s 0 -d 9 -p ack -e 40 -c 0 -i 3546 -a 0 -x {10.0 9.0 1768 ------- null} h -t 2.02317 -s 0 -d 9 -p ack -e 40 -c 0 -i 3546 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.0233 -s 10 -d 7 -p ack -e 40 -c 0 -i 3550 -a 0 -x {10.0 9.0 1770 ------- null} + -t 2.0233 -s 7 -d 0 -p ack -e 40 -c 0 -i 3550 -a 0 -x {10.0 9.0 1770 ------- null} h -t 2.0233 -s 7 -d 8 -p ack -e 40 -c 0 -i 3550 -a 0 -x {10.0 9.0 1770 ------- null} r -t 2.02344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3549 -a 0 -x {9.0 10.0 1779 ------- null} + -t 2.02344 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3549 -a 0 -x {9.0 10.0 1779 ------- null} h -t 2.02344 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3549 -a 0 -x {9.0 10.0 1779 ------- null} r -t 2.0237 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3535 -a 0 -x {9.0 10.0 1772 ------- null} + -t 2.0237 -s 10 -d 7 -p ack -e 40 -c 0 -i 3554 -a 0 -x {10.0 9.0 1772 ------- null} - -t 2.0237 -s 10 -d 7 -p ack -e 40 -c 0 -i 3554 -a 0 -x {10.0 9.0 1772 ------- null} h -t 2.0237 -s 10 -d 7 -p ack -e 40 -c 0 -i 3554 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.02413 -s 0 -d 9 -p ack -e 40 -c 0 -i 3544 -a 0 -x {10.0 9.0 1767 ------- null} + -t 2.02413 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3555 -a 0 -x {9.0 10.0 1782 ------- null} - -t 2.02413 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3555 -a 0 -x {9.0 10.0 1782 ------- null} h -t 2.02413 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3555 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.02416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3541 -a 0 -x {9.0 10.0 1775 ------- null} - -t 2.02416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3541 -a 0 -x {9.0 10.0 1775 ------- null} h -t 2.02416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3541 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.02435 -s 0 -d 9 -p ack -e 40 -c 0 -i 3548 -a 0 -x {10.0 9.0 1769 ------- null} - -t 2.02435 -s 0 -d 9 -p ack -e 40 -c 0 -i 3548 -a 0 -x {10.0 9.0 1769 ------- null} h -t 2.02435 -s 0 -d 9 -p ack -e 40 -c 0 -i 3548 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.02438 -s 10 -d 7 -p ack -e 40 -c 0 -i 3552 -a 0 -x {10.0 9.0 1771 ------- null} + -t 2.02438 -s 7 -d 0 -p ack -e 40 -c 0 -i 3552 -a 0 -x {10.0 9.0 1771 ------- null} h -t 2.02438 -s 7 -d 8 -p ack -e 40 -c 0 -i 3552 -a 0 -x {10.0 9.0 1771 ------- null} r -t 2.02466 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3551 -a 0 -x {9.0 10.0 1780 ------- null} + -t 2.02466 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3551 -a 0 -x {9.0 10.0 1780 ------- null} h -t 2.02466 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3551 -a 0 -x {9.0 10.0 1780 ------- null} r -t 2.02478 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3537 -a 0 -x {9.0 10.0 1773 ------- null} + -t 2.02478 -s 10 -d 7 -p ack -e 40 -c 0 -i 3556 -a 0 -x {10.0 9.0 1773 ------- null} - -t 2.02478 -s 10 -d 7 -p ack -e 40 -c 0 -i 3556 -a 0 -x {10.0 9.0 1773 ------- null} h -t 2.02478 -s 10 -d 7 -p ack -e 40 -c 0 -i 3556 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.0252 -s 0 -d 9 -p ack -e 40 -c 0 -i 3546 -a 0 -x {10.0 9.0 1768 ------- null} + -t 2.0252 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3557 -a 0 -x {9.0 10.0 1783 ------- null} - -t 2.0252 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3557 -a 0 -x {9.0 10.0 1783 ------- null} h -t 2.0252 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3557 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.02525 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3543 -a 0 -x {9.0 10.0 1776 ------- null} - -t 2.02525 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3543 -a 0 -x {9.0 10.0 1776 ------- null} h -t 2.02525 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3543 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.02546 -s 0 -d 9 -p ack -e 40 -c 0 -i 3550 -a 0 -x {10.0 9.0 1770 ------- null} - -t 2.02546 -s 0 -d 9 -p ack -e 40 -c 0 -i 3550 -a 0 -x {10.0 9.0 1770 ------- null} h -t 2.02546 -s 0 -d 9 -p ack -e 40 -c 0 -i 3550 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.02573 -s 10 -d 7 -p ack -e 40 -c 0 -i 3554 -a 0 -x {10.0 9.0 1772 ------- null} + -t 2.02573 -s 7 -d 0 -p ack -e 40 -c 0 -i 3554 -a 0 -x {10.0 9.0 1772 ------- null} h -t 2.02573 -s 7 -d 8 -p ack -e 40 -c 0 -i 3554 -a 0 -x {10.0 9.0 1772 ------- null} r -t 2.02587 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3539 -a 0 -x {9.0 10.0 1774 ------- null} + -t 2.02587 -s 10 -d 7 -p ack -e 40 -c 0 -i 3558 -a 0 -x {10.0 9.0 1774 ------- null} - -t 2.02587 -s 10 -d 7 -p ack -e 40 -c 0 -i 3558 -a 0 -x {10.0 9.0 1774 ------- null} h -t 2.02587 -s 10 -d 7 -p ack -e 40 -c 0 -i 3558 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.02587 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3553 -a 0 -x {9.0 10.0 1781 ------- null} + -t 2.02587 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3553 -a 0 -x {9.0 10.0 1781 ------- null} h -t 2.02587 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3553 -a 0 -x {9.0 10.0 1781 ------- null} + -t 2.02634 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3545 -a 0 -x {9.0 10.0 1777 ------- null} - -t 2.02634 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3545 -a 0 -x {9.0 10.0 1777 ------- null} h -t 2.02634 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3545 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.02638 -s 0 -d 9 -p ack -e 40 -c 0 -i 3548 -a 0 -x {10.0 9.0 1769 ------- null} + -t 2.02638 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3559 -a 0 -x {9.0 10.0 1784 ------- null} - -t 2.02638 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3559 -a 0 -x {9.0 10.0 1784 ------- null} h -t 2.02638 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3559 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.02659 -s 0 -d 9 -p ack -e 40 -c 0 -i 3552 -a 0 -x {10.0 9.0 1771 ------- null} - -t 2.02659 -s 0 -d 9 -p ack -e 40 -c 0 -i 3552 -a 0 -x {10.0 9.0 1771 ------- null} h -t 2.02659 -s 0 -d 9 -p ack -e 40 -c 0 -i 3552 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.02682 -s 10 -d 7 -p ack -e 40 -c 0 -i 3556 -a 0 -x {10.0 9.0 1773 ------- null} + -t 2.02682 -s 7 -d 0 -p ack -e 40 -c 0 -i 3556 -a 0 -x {10.0 9.0 1773 ------- null} h -t 2.02682 -s 7 -d 8 -p ack -e 40 -c 0 -i 3556 -a 0 -x {10.0 9.0 1773 ------- null} r -t 2.02693 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3555 -a 0 -x {9.0 10.0 1782 ------- null} + -t 2.02693 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3555 -a 0 -x {9.0 10.0 1782 ------- null} h -t 2.02693 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3555 -a 0 -x {9.0 10.0 1782 ------- null} r -t 2.02696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3541 -a 0 -x {9.0 10.0 1775 ------- null} + -t 2.02696 -s 10 -d 7 -p ack -e 40 -c 0 -i 3560 -a 0 -x {10.0 9.0 1775 ------- null} - -t 2.02696 -s 10 -d 7 -p ack -e 40 -c 0 -i 3560 -a 0 -x {10.0 9.0 1775 ------- null} h -t 2.02696 -s 10 -d 7 -p ack -e 40 -c 0 -i 3560 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.02749 -s 0 -d 9 -p ack -e 40 -c 0 -i 3550 -a 0 -x {10.0 9.0 1770 ------- null} + -t 2.02749 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3561 -a 0 -x {9.0 10.0 1785 ------- null} - -t 2.02749 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3561 -a 0 -x {9.0 10.0 1785 ------- null} h -t 2.02749 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3561 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.02752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3547 -a 0 -x {9.0 10.0 1778 ------- null} - -t 2.02752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3547 -a 0 -x {9.0 10.0 1778 ------- null} h -t 2.02752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3547 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.02782 -s 0 -d 9 -p ack -e 40 -c 0 -i 3554 -a 0 -x {10.0 9.0 1772 ------- null} - -t 2.02782 -s 0 -d 9 -p ack -e 40 -c 0 -i 3554 -a 0 -x {10.0 9.0 1772 ------- null} h -t 2.02782 -s 0 -d 9 -p ack -e 40 -c 0 -i 3554 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.0279 -s 10 -d 7 -p ack -e 40 -c 0 -i 3558 -a 0 -x {10.0 9.0 1774 ------- null} + -t 2.0279 -s 7 -d 0 -p ack -e 40 -c 0 -i 3558 -a 0 -x {10.0 9.0 1774 ------- null} h -t 2.0279 -s 7 -d 8 -p ack -e 40 -c 0 -i 3558 -a 0 -x {10.0 9.0 1774 ------- null} r -t 2.028 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3557 -a 0 -x {9.0 10.0 1783 ------- null} + -t 2.028 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3557 -a 0 -x {9.0 10.0 1783 ------- null} h -t 2.028 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3557 -a 0 -x {9.0 10.0 1783 ------- null} r -t 2.02805 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3543 -a 0 -x {9.0 10.0 1776 ------- null} + -t 2.02805 -s 10 -d 7 -p ack -e 40 -c 0 -i 3562 -a 0 -x {10.0 9.0 1776 ------- null} - -t 2.02805 -s 10 -d 7 -p ack -e 40 -c 0 -i 3562 -a 0 -x {10.0 9.0 1776 ------- null} h -t 2.02805 -s 10 -d 7 -p ack -e 40 -c 0 -i 3562 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.02862 -s 0 -d 9 -p ack -e 40 -c 0 -i 3552 -a 0 -x {10.0 9.0 1771 ------- null} + -t 2.02862 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3563 -a 0 -x {9.0 10.0 1786 ------- null} - -t 2.02862 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3563 -a 0 -x {9.0 10.0 1786 ------- null} h -t 2.02862 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3563 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.02866 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3549 -a 0 -x {9.0 10.0 1779 ------- null} - -t 2.02866 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3549 -a 0 -x {9.0 10.0 1779 ------- null} h -t 2.02866 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3549 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.02883 -s 0 -d 9 -p ack -e 40 -c 0 -i 3556 -a 0 -x {10.0 9.0 1773 ------- null} - -t 2.02883 -s 0 -d 9 -p ack -e 40 -c 0 -i 3556 -a 0 -x {10.0 9.0 1773 ------- null} h -t 2.02883 -s 0 -d 9 -p ack -e 40 -c 0 -i 3556 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.02899 -s 10 -d 7 -p ack -e 40 -c 0 -i 3560 -a 0 -x {10.0 9.0 1775 ------- null} + -t 2.02899 -s 7 -d 0 -p ack -e 40 -c 0 -i 3560 -a 0 -x {10.0 9.0 1775 ------- null} h -t 2.02899 -s 7 -d 8 -p ack -e 40 -c 0 -i 3560 -a 0 -x {10.0 9.0 1775 ------- null} r -t 2.02914 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3545 -a 0 -x {9.0 10.0 1777 ------- null} + -t 2.02914 -s 10 -d 7 -p ack -e 40 -c 0 -i 3564 -a 0 -x {10.0 9.0 1777 ------- null} - -t 2.02914 -s 10 -d 7 -p ack -e 40 -c 0 -i 3564 -a 0 -x {10.0 9.0 1777 ------- null} h -t 2.02914 -s 10 -d 7 -p ack -e 40 -c 0 -i 3564 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.02918 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3559 -a 0 -x {9.0 10.0 1784 ------- null} + -t 2.02918 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3559 -a 0 -x {9.0 10.0 1784 ------- null} h -t 2.02918 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3559 -a 0 -x {9.0 10.0 1784 ------- null} + -t 2.02974 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3551 -a 0 -x {9.0 10.0 1780 ------- null} - -t 2.02974 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3551 -a 0 -x {9.0 10.0 1780 ------- null} h -t 2.02974 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3551 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.02986 -s 0 -d 9 -p ack -e 40 -c 0 -i 3554 -a 0 -x {10.0 9.0 1772 ------- null} + -t 2.02986 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3565 -a 0 -x {9.0 10.0 1787 ------- null} - -t 2.02986 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3565 -a 0 -x {9.0 10.0 1787 ------- null} h -t 2.02986 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3565 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.02998 -s 0 -d 9 -p ack -e 40 -c 0 -i 3558 -a 0 -x {10.0 9.0 1774 ------- null} - -t 2.02998 -s 0 -d 9 -p ack -e 40 -c 0 -i 3558 -a 0 -x {10.0 9.0 1774 ------- null} h -t 2.02998 -s 0 -d 9 -p ack -e 40 -c 0 -i 3558 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.03008 -s 10 -d 7 -p ack -e 40 -c 0 -i 3562 -a 0 -x {10.0 9.0 1776 ------- null} + -t 2.03008 -s 7 -d 0 -p ack -e 40 -c 0 -i 3562 -a 0 -x {10.0 9.0 1776 ------- null} h -t 2.03008 -s 7 -d 8 -p ack -e 40 -c 0 -i 3562 -a 0 -x {10.0 9.0 1776 ------- null} r -t 2.03029 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3561 -a 0 -x {9.0 10.0 1785 ------- null} + -t 2.03029 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3561 -a 0 -x {9.0 10.0 1785 ------- null} h -t 2.03029 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3561 -a 0 -x {9.0 10.0 1785 ------- null} r -t 2.03032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3547 -a 0 -x {9.0 10.0 1778 ------- null} + -t 2.03032 -s 10 -d 7 -p ack -e 40 -c 0 -i 3566 -a 0 -x {10.0 9.0 1778 ------- null} - -t 2.03032 -s 10 -d 7 -p ack -e 40 -c 0 -i 3566 -a 0 -x {10.0 9.0 1778 ------- null} h -t 2.03032 -s 10 -d 7 -p ack -e 40 -c 0 -i 3566 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.03083 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3553 -a 0 -x {9.0 10.0 1781 ------- null} - -t 2.03083 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3553 -a 0 -x {9.0 10.0 1781 ------- null} h -t 2.03083 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3553 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.03086 -s 0 -d 9 -p ack -e 40 -c 0 -i 3556 -a 0 -x {10.0 9.0 1773 ------- null} + -t 2.03086 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3567 -a 0 -x {9.0 10.0 1788 ------- null} - -t 2.03086 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3567 -a 0 -x {9.0 10.0 1788 ------- null} h -t 2.03086 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3567 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.03101 -s 0 -d 9 -p ack -e 40 -c 0 -i 3560 -a 0 -x {10.0 9.0 1775 ------- null} - -t 2.03101 -s 0 -d 9 -p ack -e 40 -c 0 -i 3560 -a 0 -x {10.0 9.0 1775 ------- null} h -t 2.03101 -s 0 -d 9 -p ack -e 40 -c 0 -i 3560 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.03117 -s 10 -d 7 -p ack -e 40 -c 0 -i 3564 -a 0 -x {10.0 9.0 1777 ------- null} + -t 2.03117 -s 7 -d 0 -p ack -e 40 -c 0 -i 3564 -a 0 -x {10.0 9.0 1777 ------- null} h -t 2.03117 -s 7 -d 8 -p ack -e 40 -c 0 -i 3564 -a 0 -x {10.0 9.0 1777 ------- null} r -t 2.03142 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3563 -a 0 -x {9.0 10.0 1786 ------- null} + -t 2.03142 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3563 -a 0 -x {9.0 10.0 1786 ------- null} h -t 2.03142 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3563 -a 0 -x {9.0 10.0 1786 ------- null} r -t 2.03146 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3549 -a 0 -x {9.0 10.0 1779 ------- null} + -t 2.03146 -s 10 -d 7 -p ack -e 40 -c 0 -i 3568 -a 0 -x {10.0 9.0 1779 ------- null} - -t 2.03146 -s 10 -d 7 -p ack -e 40 -c 0 -i 3568 -a 0 -x {10.0 9.0 1779 ------- null} h -t 2.03146 -s 10 -d 7 -p ack -e 40 -c 0 -i 3568 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.03192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3555 -a 0 -x {9.0 10.0 1782 ------- null} - -t 2.03192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3555 -a 0 -x {9.0 10.0 1782 ------- null} h -t 2.03192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3555 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.03202 -s 0 -d 9 -p ack -e 40 -c 0 -i 3558 -a 0 -x {10.0 9.0 1774 ------- null} + -t 2.03202 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3569 -a 0 -x {9.0 10.0 1789 ------- null} - -t 2.03202 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3569 -a 0 -x {9.0 10.0 1789 ------- null} h -t 2.03202 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3569 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.03214 -s 0 -d 9 -p ack -e 40 -c 0 -i 3562 -a 0 -x {10.0 9.0 1776 ------- null} - -t 2.03214 -s 0 -d 9 -p ack -e 40 -c 0 -i 3562 -a 0 -x {10.0 9.0 1776 ------- null} h -t 2.03214 -s 0 -d 9 -p ack -e 40 -c 0 -i 3562 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.03235 -s 10 -d 7 -p ack -e 40 -c 0 -i 3566 -a 0 -x {10.0 9.0 1778 ------- null} + -t 2.03235 -s 7 -d 0 -p ack -e 40 -c 0 -i 3566 -a 0 -x {10.0 9.0 1778 ------- null} h -t 2.03235 -s 7 -d 8 -p ack -e 40 -c 0 -i 3566 -a 0 -x {10.0 9.0 1778 ------- null} r -t 2.03254 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3551 -a 0 -x {9.0 10.0 1780 ------- null} + -t 2.03254 -s 10 -d 7 -p ack -e 40 -c 0 -i 3570 -a 0 -x {10.0 9.0 1780 ------- null} - -t 2.03254 -s 10 -d 7 -p ack -e 40 -c 0 -i 3570 -a 0 -x {10.0 9.0 1780 ------- null} h -t 2.03254 -s 10 -d 7 -p ack -e 40 -c 0 -i 3570 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.03266 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3565 -a 0 -x {9.0 10.0 1787 ------- null} + -t 2.03266 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3565 -a 0 -x {9.0 10.0 1787 ------- null} h -t 2.03266 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3565 -a 0 -x {9.0 10.0 1787 ------- null} + -t 2.03301 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3557 -a 0 -x {9.0 10.0 1783 ------- null} - -t 2.03301 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3557 -a 0 -x {9.0 10.0 1783 ------- null} h -t 2.03301 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3557 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.03304 -s 0 -d 9 -p ack -e 40 -c 0 -i 3560 -a 0 -x {10.0 9.0 1775 ------- null} + -t 2.03304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3571 -a 0 -x {9.0 10.0 1790 ------- null} - -t 2.03304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3571 -a 0 -x {9.0 10.0 1790 ------- null} h -t 2.03304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3571 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.03322 -s 0 -d 9 -p ack -e 40 -c 0 -i 3564 -a 0 -x {10.0 9.0 1777 ------- null} - -t 2.03322 -s 0 -d 9 -p ack -e 40 -c 0 -i 3564 -a 0 -x {10.0 9.0 1777 ------- null} h -t 2.03322 -s 0 -d 9 -p ack -e 40 -c 0 -i 3564 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.03349 -s 10 -d 7 -p ack -e 40 -c 0 -i 3568 -a 0 -x {10.0 9.0 1779 ------- null} + -t 2.03349 -s 7 -d 0 -p ack -e 40 -c 0 -i 3568 -a 0 -x {10.0 9.0 1779 ------- null} h -t 2.03349 -s 7 -d 8 -p ack -e 40 -c 0 -i 3568 -a 0 -x {10.0 9.0 1779 ------- null} r -t 2.03363 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3553 -a 0 -x {9.0 10.0 1781 ------- null} + -t 2.03363 -s 10 -d 7 -p ack -e 40 -c 0 -i 3572 -a 0 -x {10.0 9.0 1781 ------- null} - -t 2.03363 -s 10 -d 7 -p ack -e 40 -c 0 -i 3572 -a 0 -x {10.0 9.0 1781 ------- null} h -t 2.03363 -s 10 -d 7 -p ack -e 40 -c 0 -i 3572 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.03366 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3567 -a 0 -x {9.0 10.0 1788 ------- null} + -t 2.03366 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3567 -a 0 -x {9.0 10.0 1788 ------- null} h -t 2.03366 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3567 -a 0 -x {9.0 10.0 1788 ------- null} + -t 2.0341 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3559 -a 0 -x {9.0 10.0 1784 ------- null} - -t 2.0341 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3559 -a 0 -x {9.0 10.0 1784 ------- null} h -t 2.0341 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3559 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.03418 -s 0 -d 9 -p ack -e 40 -c 0 -i 3562 -a 0 -x {10.0 9.0 1776 ------- null} + -t 2.03418 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3573 -a 0 -x {9.0 10.0 1791 ------- null} - -t 2.03418 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3573 -a 0 -x {9.0 10.0 1791 ------- null} h -t 2.03418 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3573 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.03427 -s 0 -d 9 -p ack -e 40 -c 0 -i 3566 -a 0 -x {10.0 9.0 1778 ------- null} - -t 2.03427 -s 0 -d 9 -p ack -e 40 -c 0 -i 3566 -a 0 -x {10.0 9.0 1778 ------- null} h -t 2.03427 -s 0 -d 9 -p ack -e 40 -c 0 -i 3566 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.03458 -s 10 -d 7 -p ack -e 40 -c 0 -i 3570 -a 0 -x {10.0 9.0 1780 ------- null} + -t 2.03458 -s 7 -d 0 -p ack -e 40 -c 0 -i 3570 -a 0 -x {10.0 9.0 1780 ------- null} h -t 2.03458 -s 7 -d 8 -p ack -e 40 -c 0 -i 3570 -a 0 -x {10.0 9.0 1780 ------- null} r -t 2.03472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3555 -a 0 -x {9.0 10.0 1782 ------- null} + -t 2.03472 -s 10 -d 7 -p ack -e 40 -c 0 -i 3574 -a 0 -x {10.0 9.0 1782 ------- null} - -t 2.03472 -s 10 -d 7 -p ack -e 40 -c 0 -i 3574 -a 0 -x {10.0 9.0 1782 ------- null} h -t 2.03472 -s 10 -d 7 -p ack -e 40 -c 0 -i 3574 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.03482 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3569 -a 0 -x {9.0 10.0 1789 ------- null} + -t 2.03482 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3569 -a 0 -x {9.0 10.0 1789 ------- null} h -t 2.03482 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3569 -a 0 -x {9.0 10.0 1789 ------- null} + -t 2.03518 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3561 -a 0 -x {9.0 10.0 1785 ------- null} - -t 2.03518 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3561 -a 0 -x {9.0 10.0 1785 ------- null} h -t 2.03518 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3561 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.03525 -s 0 -d 9 -p ack -e 40 -c 0 -i 3564 -a 0 -x {10.0 9.0 1777 ------- null} + -t 2.03525 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3575 -a 0 -x {9.0 10.0 1792 ------- null} - -t 2.03525 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3575 -a 0 -x {9.0 10.0 1792 ------- null} h -t 2.03525 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3575 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.03534 -s 0 -d 9 -p ack -e 40 -c 0 -i 3568 -a 0 -x {10.0 9.0 1779 ------- null} - -t 2.03534 -s 0 -d 9 -p ack -e 40 -c 0 -i 3568 -a 0 -x {10.0 9.0 1779 ------- null} h -t 2.03534 -s 0 -d 9 -p ack -e 40 -c 0 -i 3568 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.03566 -s 10 -d 7 -p ack -e 40 -c 0 -i 3572 -a 0 -x {10.0 9.0 1781 ------- null} + -t 2.03566 -s 7 -d 0 -p ack -e 40 -c 0 -i 3572 -a 0 -x {10.0 9.0 1781 ------- null} h -t 2.03566 -s 7 -d 8 -p ack -e 40 -c 0 -i 3572 -a 0 -x {10.0 9.0 1781 ------- null} r -t 2.03581 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3557 -a 0 -x {9.0 10.0 1783 ------- null} + -t 2.03581 -s 10 -d 7 -p ack -e 40 -c 0 -i 3576 -a 0 -x {10.0 9.0 1783 ------- null} - -t 2.03581 -s 10 -d 7 -p ack -e 40 -c 0 -i 3576 -a 0 -x {10.0 9.0 1783 ------- null} h -t 2.03581 -s 10 -d 7 -p ack -e 40 -c 0 -i 3576 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.03584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3571 -a 0 -x {9.0 10.0 1790 ------- null} + -t 2.03584 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3571 -a 0 -x {9.0 10.0 1790 ------- null} h -t 2.03584 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3571 -a 0 -x {9.0 10.0 1790 ------- null} + -t 2.03627 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3563 -a 0 -x {9.0 10.0 1786 ------- null} - -t 2.03627 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3563 -a 0 -x {9.0 10.0 1786 ------- null} h -t 2.03627 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3563 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.0363 -s 0 -d 9 -p ack -e 40 -c 0 -i 3566 -a 0 -x {10.0 9.0 1778 ------- null} + -t 2.0363 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3577 -a 0 -x {9.0 10.0 1793 ------- null} - -t 2.0363 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3577 -a 0 -x {9.0 10.0 1793 ------- null} h -t 2.0363 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3577 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.03651 -s 0 -d 9 -p ack -e 40 -c 0 -i 3570 -a 0 -x {10.0 9.0 1780 ------- null} - -t 2.03651 -s 0 -d 9 -p ack -e 40 -c 0 -i 3570 -a 0 -x {10.0 9.0 1780 ------- null} h -t 2.03651 -s 0 -d 9 -p ack -e 40 -c 0 -i 3570 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.03675 -s 10 -d 7 -p ack -e 40 -c 0 -i 3574 -a 0 -x {10.0 9.0 1782 ------- null} + -t 2.03675 -s 7 -d 0 -p ack -e 40 -c 0 -i 3574 -a 0 -x {10.0 9.0 1782 ------- null} h -t 2.03675 -s 7 -d 8 -p ack -e 40 -c 0 -i 3574 -a 0 -x {10.0 9.0 1782 ------- null} r -t 2.0369 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3559 -a 0 -x {9.0 10.0 1784 ------- null} + -t 2.0369 -s 10 -d 7 -p ack -e 40 -c 0 -i 3578 -a 0 -x {10.0 9.0 1784 ------- null} - -t 2.0369 -s 10 -d 7 -p ack -e 40 -c 0 -i 3578 -a 0 -x {10.0 9.0 1784 ------- null} h -t 2.0369 -s 10 -d 7 -p ack -e 40 -c 0 -i 3578 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.03698 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3573 -a 0 -x {9.0 10.0 1791 ------- null} + -t 2.03698 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3573 -a 0 -x {9.0 10.0 1791 ------- null} h -t 2.03698 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3573 -a 0 -x {9.0 10.0 1791 ------- null} + -t 2.03736 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3565 -a 0 -x {9.0 10.0 1787 ------- null} - -t 2.03736 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3565 -a 0 -x {9.0 10.0 1787 ------- null} h -t 2.03736 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3565 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.03738 -s 0 -d 9 -p ack -e 40 -c 0 -i 3568 -a 0 -x {10.0 9.0 1779 ------- null} + -t 2.03738 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3579 -a 0 -x {9.0 10.0 1794 ------- null} - -t 2.03738 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3579 -a 0 -x {9.0 10.0 1794 ------- null} h -t 2.03738 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3579 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.03749 -s 0 -d 9 -p ack -e 40 -c 0 -i 3572 -a 0 -x {10.0 9.0 1781 ------- null} - -t 2.03749 -s 0 -d 9 -p ack -e 40 -c 0 -i 3572 -a 0 -x {10.0 9.0 1781 ------- null} h -t 2.03749 -s 0 -d 9 -p ack -e 40 -c 0 -i 3572 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.03784 -s 10 -d 7 -p ack -e 40 -c 0 -i 3576 -a 0 -x {10.0 9.0 1783 ------- null} + -t 2.03784 -s 7 -d 0 -p ack -e 40 -c 0 -i 3576 -a 0 -x {10.0 9.0 1783 ------- null} h -t 2.03784 -s 7 -d 8 -p ack -e 40 -c 0 -i 3576 -a 0 -x {10.0 9.0 1783 ------- null} r -t 2.03798 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3561 -a 0 -x {9.0 10.0 1785 ------- null} + -t 2.03798 -s 10 -d 7 -p ack -e 40 -c 0 -i 3580 -a 0 -x {10.0 9.0 1785 ------- null} - -t 2.03798 -s 10 -d 7 -p ack -e 40 -c 0 -i 3580 -a 0 -x {10.0 9.0 1785 ------- null} h -t 2.03798 -s 10 -d 7 -p ack -e 40 -c 0 -i 3580 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.03805 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3575 -a 0 -x {9.0 10.0 1792 ------- null} + -t 2.03805 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3575 -a 0 -x {9.0 10.0 1792 ------- null} h -t 2.03805 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3575 -a 0 -x {9.0 10.0 1792 ------- null} + -t 2.03845 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3567 -a 0 -x {9.0 10.0 1788 ------- null} - -t 2.03845 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3567 -a 0 -x {9.0 10.0 1788 ------- null} h -t 2.03845 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3567 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.03854 -s 0 -d 9 -p ack -e 40 -c 0 -i 3570 -a 0 -x {10.0 9.0 1780 ------- null} + -t 2.03854 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3581 -a 0 -x {9.0 10.0 1795 ------- null} - -t 2.03854 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3581 -a 0 -x {9.0 10.0 1795 ------- null} h -t 2.03854 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3581 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.03872 -s 0 -d 9 -p ack -e 40 -c 0 -i 3574 -a 0 -x {10.0 9.0 1782 ------- null} - -t 2.03872 -s 0 -d 9 -p ack -e 40 -c 0 -i 3574 -a 0 -x {10.0 9.0 1782 ------- null} h -t 2.03872 -s 0 -d 9 -p ack -e 40 -c 0 -i 3574 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.03893 -s 10 -d 7 -p ack -e 40 -c 0 -i 3578 -a 0 -x {10.0 9.0 1784 ------- null} + -t 2.03893 -s 7 -d 0 -p ack -e 40 -c 0 -i 3578 -a 0 -x {10.0 9.0 1784 ------- null} h -t 2.03893 -s 7 -d 8 -p ack -e 40 -c 0 -i 3578 -a 0 -x {10.0 9.0 1784 ------- null} r -t 2.03907 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3563 -a 0 -x {9.0 10.0 1786 ------- null} + -t 2.03907 -s 10 -d 7 -p ack -e 40 -c 0 -i 3582 -a 0 -x {10.0 9.0 1786 ------- null} - -t 2.03907 -s 10 -d 7 -p ack -e 40 -c 0 -i 3582 -a 0 -x {10.0 9.0 1786 ------- null} h -t 2.03907 -s 10 -d 7 -p ack -e 40 -c 0 -i 3582 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.0391 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3577 -a 0 -x {9.0 10.0 1793 ------- null} + -t 2.0391 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3577 -a 0 -x {9.0 10.0 1793 ------- null} h -t 2.0391 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3577 -a 0 -x {9.0 10.0 1793 ------- null} r -t 2.03952 -s 0 -d 9 -p ack -e 40 -c 0 -i 3572 -a 0 -x {10.0 9.0 1781 ------- null} + -t 2.03952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3583 -a 0 -x {9.0 10.0 1796 ------- null} - -t 2.03952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3583 -a 0 -x {9.0 10.0 1796 ------- null} h -t 2.03952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3583 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.03976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3569 -a 0 -x {9.0 10.0 1789 ------- null} - -t 2.03976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3569 -a 0 -x {9.0 10.0 1789 ------- null} h -t 2.03976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3569 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.03995 -s 0 -d 9 -p ack -e 40 -c 0 -i 3576 -a 0 -x {10.0 9.0 1783 ------- null} - -t 2.03995 -s 0 -d 9 -p ack -e 40 -c 0 -i 3576 -a 0 -x {10.0 9.0 1783 ------- null} h -t 2.03995 -s 0 -d 9 -p ack -e 40 -c 0 -i 3576 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.04002 -s 10 -d 7 -p ack -e 40 -c 0 -i 3580 -a 0 -x {10.0 9.0 1785 ------- null} + -t 2.04002 -s 7 -d 0 -p ack -e 40 -c 0 -i 3580 -a 0 -x {10.0 9.0 1785 ------- null} h -t 2.04002 -s 7 -d 8 -p ack -e 40 -c 0 -i 3580 -a 0 -x {10.0 9.0 1785 ------- null} r -t 2.04016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3565 -a 0 -x {9.0 10.0 1787 ------- null} + -t 2.04016 -s 10 -d 7 -p ack -e 40 -c 0 -i 3584 -a 0 -x {10.0 9.0 1787 ------- null} - -t 2.04016 -s 10 -d 7 -p ack -e 40 -c 0 -i 3584 -a 0 -x {10.0 9.0 1787 ------- null} h -t 2.04016 -s 10 -d 7 -p ack -e 40 -c 0 -i 3584 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.04018 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3579 -a 0 -x {9.0 10.0 1794 ------- null} + -t 2.04018 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3579 -a 0 -x {9.0 10.0 1794 ------- null} h -t 2.04018 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3579 -a 0 -x {9.0 10.0 1794 ------- null} r -t 2.04075 -s 0 -d 9 -p ack -e 40 -c 0 -i 3574 -a 0 -x {10.0 9.0 1782 ------- null} + -t 2.04075 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3585 -a 0 -x {9.0 10.0 1797 ------- null} - -t 2.04075 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3585 -a 0 -x {9.0 10.0 1797 ------- null} h -t 2.04075 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3585 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.04085 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3571 -a 0 -x {9.0 10.0 1790 ------- null} - -t 2.04085 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3571 -a 0 -x {9.0 10.0 1790 ------- null} h -t 2.04085 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3571 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.04094 -s 0 -d 9 -p ack -e 40 -c 0 -i 3578 -a 0 -x {10.0 9.0 1784 ------- null} - -t 2.04094 -s 0 -d 9 -p ack -e 40 -c 0 -i 3578 -a 0 -x {10.0 9.0 1784 ------- null} h -t 2.04094 -s 0 -d 9 -p ack -e 40 -c 0 -i 3578 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.0411 -s 10 -d 7 -p ack -e 40 -c 0 -i 3582 -a 0 -x {10.0 9.0 1786 ------- null} + -t 2.0411 -s 7 -d 0 -p ack -e 40 -c 0 -i 3582 -a 0 -x {10.0 9.0 1786 ------- null} h -t 2.0411 -s 7 -d 8 -p ack -e 40 -c 0 -i 3582 -a 0 -x {10.0 9.0 1786 ------- null} r -t 2.04125 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3567 -a 0 -x {9.0 10.0 1788 ------- null} + -t 2.04125 -s 10 -d 7 -p ack -e 40 -c 0 -i 3586 -a 0 -x {10.0 9.0 1788 ------- null} - -t 2.04125 -s 10 -d 7 -p ack -e 40 -c 0 -i 3586 -a 0 -x {10.0 9.0 1788 ------- null} h -t 2.04125 -s 10 -d 7 -p ack -e 40 -c 0 -i 3586 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.04134 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3581 -a 0 -x {9.0 10.0 1795 ------- null} + -t 2.04134 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3581 -a 0 -x {9.0 10.0 1795 ------- null} h -t 2.04134 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3581 -a 0 -x {9.0 10.0 1795 ------- null} + -t 2.04194 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3573 -a 0 -x {9.0 10.0 1791 ------- null} - -t 2.04194 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3573 -a 0 -x {9.0 10.0 1791 ------- null} h -t 2.04194 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3573 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.04198 -s 0 -d 9 -p ack -e 40 -c 0 -i 3576 -a 0 -x {10.0 9.0 1783 ------- null} + -t 2.04198 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3587 -a 0 -x {9.0 10.0 1798 ------- null} - -t 2.04198 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3587 -a 0 -x {9.0 10.0 1798 ------- null} h -t 2.04198 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3587 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.04219 -s 10 -d 7 -p ack -e 40 -c 0 -i 3584 -a 0 -x {10.0 9.0 1787 ------- null} + -t 2.04219 -s 7 -d 0 -p ack -e 40 -c 0 -i 3584 -a 0 -x {10.0 9.0 1787 ------- null} h -t 2.04219 -s 7 -d 8 -p ack -e 40 -c 0 -i 3584 -a 0 -x {10.0 9.0 1787 ------- null} + -t 2.04221 -s 0 -d 9 -p ack -e 40 -c 0 -i 3580 -a 0 -x {10.0 9.0 1785 ------- null} - -t 2.04221 -s 0 -d 9 -p ack -e 40 -c 0 -i 3580 -a 0 -x {10.0 9.0 1785 ------- null} h -t 2.04221 -s 0 -d 9 -p ack -e 40 -c 0 -i 3580 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.04232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3583 -a 0 -x {9.0 10.0 1796 ------- null} + -t 2.04232 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3583 -a 0 -x {9.0 10.0 1796 ------- null} h -t 2.04232 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3583 -a 0 -x {9.0 10.0 1796 ------- null} r -t 2.04256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3569 -a 0 -x {9.0 10.0 1789 ------- null} + -t 2.04256 -s 10 -d 7 -p ack -e 40 -c 0 -i 3588 -a 0 -x {10.0 9.0 1789 ------- null} - -t 2.04256 -s 10 -d 7 -p ack -e 40 -c 0 -i 3588 -a 0 -x {10.0 9.0 1789 ------- null} h -t 2.04256 -s 10 -d 7 -p ack -e 40 -c 0 -i 3588 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.04298 -s 0 -d 9 -p ack -e 40 -c 0 -i 3578 -a 0 -x {10.0 9.0 1784 ------- null} + -t 2.04298 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3589 -a 0 -x {9.0 10.0 1799 ------- null} - -t 2.04298 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3589 -a 0 -x {9.0 10.0 1799 ------- null} h -t 2.04298 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3589 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.0431 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3575 -a 0 -x {9.0 10.0 1792 ------- null} - -t 2.0431 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3575 -a 0 -x {9.0 10.0 1792 ------- null} h -t 2.0431 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3575 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.04328 -s 10 -d 7 -p ack -e 40 -c 0 -i 3586 -a 0 -x {10.0 9.0 1788 ------- null} + -t 2.04328 -s 7 -d 0 -p ack -e 40 -c 0 -i 3586 -a 0 -x {10.0 9.0 1788 ------- null} h -t 2.04328 -s 7 -d 8 -p ack -e 40 -c 0 -i 3586 -a 0 -x {10.0 9.0 1788 ------- null} + -t 2.04333 -s 0 -d 9 -p ack -e 40 -c 0 -i 3582 -a 0 -x {10.0 9.0 1786 ------- null} - -t 2.04333 -s 0 -d 9 -p ack -e 40 -c 0 -i 3582 -a 0 -x {10.0 9.0 1786 ------- null} h -t 2.04333 -s 0 -d 9 -p ack -e 40 -c 0 -i 3582 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.04355 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3585 -a 0 -x {9.0 10.0 1797 ------- null} + -t 2.04355 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3585 -a 0 -x {9.0 10.0 1797 ------- null} h -t 2.04355 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3585 -a 0 -x {9.0 10.0 1797 ------- null} r -t 2.04365 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3571 -a 0 -x {9.0 10.0 1790 ------- null} + -t 2.04365 -s 10 -d 7 -p ack -e 40 -c 0 -i 3590 -a 0 -x {10.0 9.0 1790 ------- null} - -t 2.04365 -s 10 -d 7 -p ack -e 40 -c 0 -i 3590 -a 0 -x {10.0 9.0 1790 ------- null} h -t 2.04365 -s 10 -d 7 -p ack -e 40 -c 0 -i 3590 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.04419 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3577 -a 0 -x {9.0 10.0 1793 ------- null} - -t 2.04419 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3577 -a 0 -x {9.0 10.0 1793 ------- null} h -t 2.04419 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3577 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.04424 -s 0 -d 9 -p ack -e 40 -c 0 -i 3580 -a 0 -x {10.0 9.0 1785 ------- null} + -t 2.04424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3591 -a 0 -x {9.0 10.0 1800 ------- null} - -t 2.04424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3591 -a 0 -x {9.0 10.0 1800 ------- null} h -t 2.04424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3591 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.04437 -s 0 -d 9 -p ack -e 40 -c 0 -i 3584 -a 0 -x {10.0 9.0 1787 ------- null} - -t 2.04437 -s 0 -d 9 -p ack -e 40 -c 0 -i 3584 -a 0 -x {10.0 9.0 1787 ------- null} h -t 2.04437 -s 0 -d 9 -p ack -e 40 -c 0 -i 3584 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.04459 -s 10 -d 7 -p ack -e 40 -c 0 -i 3588 -a 0 -x {10.0 9.0 1789 ------- null} + -t 2.04459 -s 7 -d 0 -p ack -e 40 -c 0 -i 3588 -a 0 -x {10.0 9.0 1789 ------- null} h -t 2.04459 -s 7 -d 8 -p ack -e 40 -c 0 -i 3588 -a 0 -x {10.0 9.0 1789 ------- null} r -t 2.04474 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3573 -a 0 -x {9.0 10.0 1791 ------- null} + -t 2.04474 -s 10 -d 7 -p ack -e 40 -c 0 -i 3592 -a 0 -x {10.0 9.0 1791 ------- null} - -t 2.04474 -s 10 -d 7 -p ack -e 40 -c 0 -i 3592 -a 0 -x {10.0 9.0 1791 ------- null} h -t 2.04474 -s 10 -d 7 -p ack -e 40 -c 0 -i 3592 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.04478 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3587 -a 0 -x {9.0 10.0 1798 ------- null} + -t 2.04478 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3587 -a 0 -x {9.0 10.0 1798 ------- null} h -t 2.04478 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3587 -a 0 -x {9.0 10.0 1798 ------- null} + -t 2.04528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3579 -a 0 -x {9.0 10.0 1794 ------- null} - -t 2.04528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3579 -a 0 -x {9.0 10.0 1794 ------- null} h -t 2.04528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3579 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.04536 -s 0 -d 9 -p ack -e 40 -c 0 -i 3582 -a 0 -x {10.0 9.0 1786 ------- null} + -t 2.04536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3593 -a 0 -x {9.0 10.0 1801 ------- null} - -t 2.04536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3593 -a 0 -x {9.0 10.0 1801 ------- null} h -t 2.04536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3593 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.04555 -s 0 -d 9 -p ack -e 40 -c 0 -i 3586 -a 0 -x {10.0 9.0 1788 ------- null} - -t 2.04555 -s 0 -d 9 -p ack -e 40 -c 0 -i 3586 -a 0 -x {10.0 9.0 1788 ------- null} h -t 2.04555 -s 0 -d 9 -p ack -e 40 -c 0 -i 3586 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.04568 -s 10 -d 7 -p ack -e 40 -c 0 -i 3590 -a 0 -x {10.0 9.0 1790 ------- null} + -t 2.04568 -s 7 -d 0 -p ack -e 40 -c 0 -i 3590 -a 0 -x {10.0 9.0 1790 ------- null} h -t 2.04568 -s 7 -d 8 -p ack -e 40 -c 0 -i 3590 -a 0 -x {10.0 9.0 1790 ------- null} r -t 2.04578 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3589 -a 0 -x {9.0 10.0 1799 ------- null} + -t 2.04578 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3589 -a 0 -x {9.0 10.0 1799 ------- null} h -t 2.04578 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3589 -a 0 -x {9.0 10.0 1799 ------- null} r -t 2.0459 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3575 -a 0 -x {9.0 10.0 1792 ------- null} + -t 2.0459 -s 10 -d 7 -p ack -e 40 -c 0 -i 3594 -a 0 -x {10.0 9.0 1792 ------- null} - -t 2.0459 -s 10 -d 7 -p ack -e 40 -c 0 -i 3594 -a 0 -x {10.0 9.0 1792 ------- null} h -t 2.0459 -s 10 -d 7 -p ack -e 40 -c 0 -i 3594 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.0464 -s 0 -d 9 -p ack -e 40 -c 0 -i 3584 -a 0 -x {10.0 9.0 1787 ------- null} + -t 2.0464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3595 -a 0 -x {9.0 10.0 1802 ------- null} - -t 2.0464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3595 -a 0 -x {9.0 10.0 1802 ------- null} h -t 2.0464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3595 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.04642 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3581 -a 0 -x {9.0 10.0 1795 ------- null} - -t 2.04642 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3581 -a 0 -x {9.0 10.0 1795 ------- null} h -t 2.04642 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3581 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.04658 -s 0 -d 9 -p ack -e 40 -c 0 -i 3588 -a 0 -x {10.0 9.0 1789 ------- null} - -t 2.04658 -s 0 -d 9 -p ack -e 40 -c 0 -i 3588 -a 0 -x {10.0 9.0 1789 ------- null} h -t 2.04658 -s 0 -d 9 -p ack -e 40 -c 0 -i 3588 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.04677 -s 10 -d 7 -p ack -e 40 -c 0 -i 3592 -a 0 -x {10.0 9.0 1791 ------- null} + -t 2.04677 -s 7 -d 0 -p ack -e 40 -c 0 -i 3592 -a 0 -x {10.0 9.0 1791 ------- null} h -t 2.04677 -s 7 -d 8 -p ack -e 40 -c 0 -i 3592 -a 0 -x {10.0 9.0 1791 ------- null} r -t 2.04699 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3577 -a 0 -x {9.0 10.0 1793 ------- null} + -t 2.04699 -s 10 -d 7 -p ack -e 40 -c 0 -i 3596 -a 0 -x {10.0 9.0 1793 ------- null} - -t 2.04699 -s 10 -d 7 -p ack -e 40 -c 0 -i 3596 -a 0 -x {10.0 9.0 1793 ------- null} h -t 2.04699 -s 10 -d 7 -p ack -e 40 -c 0 -i 3596 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.04704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3591 -a 0 -x {9.0 10.0 1800 ------- null} + -t 2.04704 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3591 -a 0 -x {9.0 10.0 1800 ------- null} h -t 2.04704 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3591 -a 0 -x {9.0 10.0 1800 ------- null} + -t 2.0475 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3583 -a 0 -x {9.0 10.0 1796 ------- null} - -t 2.0475 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3583 -a 0 -x {9.0 10.0 1796 ------- null} h -t 2.0475 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3583 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.04758 -s 0 -d 9 -p ack -e 40 -c 0 -i 3586 -a 0 -x {10.0 9.0 1788 ------- null} + -t 2.04758 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3597 -a 0 -x {9.0 10.0 1803 ------- null} - -t 2.04758 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3597 -a 0 -x {9.0 10.0 1803 ------- null} h -t 2.04758 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3597 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.04765 -s 0 -d 9 -p ack -e 40 -c 0 -i 3590 -a 0 -x {10.0 9.0 1790 ------- null} - -t 2.04765 -s 0 -d 9 -p ack -e 40 -c 0 -i 3590 -a 0 -x {10.0 9.0 1790 ------- null} h -t 2.04765 -s 0 -d 9 -p ack -e 40 -c 0 -i 3590 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.04794 -s 10 -d 7 -p ack -e 40 -c 0 -i 3594 -a 0 -x {10.0 9.0 1792 ------- null} + -t 2.04794 -s 7 -d 0 -p ack -e 40 -c 0 -i 3594 -a 0 -x {10.0 9.0 1792 ------- null} h -t 2.04794 -s 7 -d 8 -p ack -e 40 -c 0 -i 3594 -a 0 -x {10.0 9.0 1792 ------- null} r -t 2.04808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3579 -a 0 -x {9.0 10.0 1794 ------- null} + -t 2.04808 -s 10 -d 7 -p ack -e 40 -c 0 -i 3598 -a 0 -x {10.0 9.0 1794 ------- null} - -t 2.04808 -s 10 -d 7 -p ack -e 40 -c 0 -i 3598 -a 0 -x {10.0 9.0 1794 ------- null} h -t 2.04808 -s 10 -d 7 -p ack -e 40 -c 0 -i 3598 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.04816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3593 -a 0 -x {9.0 10.0 1801 ------- null} + -t 2.04816 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3593 -a 0 -x {9.0 10.0 1801 ------- null} h -t 2.04816 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3593 -a 0 -x {9.0 10.0 1801 ------- null} + -t 2.04859 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3585 -a 0 -x {9.0 10.0 1797 ------- null} - -t 2.04859 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3585 -a 0 -x {9.0 10.0 1797 ------- null} h -t 2.04859 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3585 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.04861 -s 0 -d 9 -p ack -e 40 -c 0 -i 3588 -a 0 -x {10.0 9.0 1789 ------- null} + -t 2.04861 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3599 -a 0 -x {9.0 10.0 1804 ------- null} - -t 2.04861 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3599 -a 0 -x {9.0 10.0 1804 ------- null} h -t 2.04861 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3599 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.04874 -s 0 -d 9 -p ack -e 40 -c 0 -i 3592 -a 0 -x {10.0 9.0 1791 ------- null} - -t 2.04874 -s 0 -d 9 -p ack -e 40 -c 0 -i 3592 -a 0 -x {10.0 9.0 1791 ------- null} h -t 2.04874 -s 0 -d 9 -p ack -e 40 -c 0 -i 3592 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.04902 -s 10 -d 7 -p ack -e 40 -c 0 -i 3596 -a 0 -x {10.0 9.0 1793 ------- null} + -t 2.04902 -s 7 -d 0 -p ack -e 40 -c 0 -i 3596 -a 0 -x {10.0 9.0 1793 ------- null} h -t 2.04902 -s 7 -d 8 -p ack -e 40 -c 0 -i 3596 -a 0 -x {10.0 9.0 1793 ------- null} r -t 2.0492 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3595 -a 0 -x {9.0 10.0 1802 ------- null} + -t 2.0492 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3595 -a 0 -x {9.0 10.0 1802 ------- null} h -t 2.0492 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3595 -a 0 -x {9.0 10.0 1802 ------- null} r -t 2.04922 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3581 -a 0 -x {9.0 10.0 1795 ------- null} + -t 2.04922 -s 10 -d 7 -p ack -e 40 -c 0 -i 3600 -a 0 -x {10.0 9.0 1795 ------- null} - -t 2.04922 -s 10 -d 7 -p ack -e 40 -c 0 -i 3600 -a 0 -x {10.0 9.0 1795 ------- null} h -t 2.04922 -s 10 -d 7 -p ack -e 40 -c 0 -i 3600 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.04968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3587 -a 0 -x {9.0 10.0 1798 ------- null} - -t 2.04968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3587 -a 0 -x {9.0 10.0 1798 ------- null} h -t 2.04968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3587 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.04968 -s 0 -d 9 -p ack -e 40 -c 0 -i 3590 -a 0 -x {10.0 9.0 1790 ------- null} + -t 2.04968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3601 -a 0 -x {9.0 10.0 1805 ------- null} - -t 2.04968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3601 -a 0 -x {9.0 10.0 1805 ------- null} h -t 2.04968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3601 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.04998 -s 0 -d 9 -p ack -e 40 -c 0 -i 3594 -a 0 -x {10.0 9.0 1792 ------- null} - -t 2.04998 -s 0 -d 9 -p ack -e 40 -c 0 -i 3594 -a 0 -x {10.0 9.0 1792 ------- null} h -t 2.04998 -s 0 -d 9 -p ack -e 40 -c 0 -i 3594 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.05011 -s 10 -d 7 -p ack -e 40 -c 0 -i 3598 -a 0 -x {10.0 9.0 1794 ------- null} + -t 2.05011 -s 7 -d 0 -p ack -e 40 -c 0 -i 3598 -a 0 -x {10.0 9.0 1794 ------- null} h -t 2.05011 -s 7 -d 8 -p ack -e 40 -c 0 -i 3598 -a 0 -x {10.0 9.0 1794 ------- null} r -t 2.0503 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3583 -a 0 -x {9.0 10.0 1796 ------- null} + -t 2.0503 -s 10 -d 7 -p ack -e 40 -c 0 -i 3602 -a 0 -x {10.0 9.0 1796 ------- null} - -t 2.0503 -s 10 -d 7 -p ack -e 40 -c 0 -i 3602 -a 0 -x {10.0 9.0 1796 ------- null} h -t 2.0503 -s 10 -d 7 -p ack -e 40 -c 0 -i 3602 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.05038 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3597 -a 0 -x {9.0 10.0 1803 ------- null} + -t 2.05038 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3597 -a 0 -x {9.0 10.0 1803 ------- null} h -t 2.05038 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3597 -a 0 -x {9.0 10.0 1803 ------- null} r -t 2.05077 -s 0 -d 9 -p ack -e 40 -c 0 -i 3592 -a 0 -x {10.0 9.0 1791 ------- null} + -t 2.05077 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3603 -a 0 -x {9.0 10.0 1806 ------- null} - -t 2.05077 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3603 -a 0 -x {9.0 10.0 1806 ------- null} h -t 2.05077 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3603 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.05082 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3589 -a 0 -x {9.0 10.0 1799 ------- null} - -t 2.05082 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3589 -a 0 -x {9.0 10.0 1799 ------- null} h -t 2.05082 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3589 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.05096 -s 0 -d 9 -p ack -e 40 -c 0 -i 3596 -a 0 -x {10.0 9.0 1793 ------- null} - -t 2.05096 -s 0 -d 9 -p ack -e 40 -c 0 -i 3596 -a 0 -x {10.0 9.0 1793 ------- null} h -t 2.05096 -s 0 -d 9 -p ack -e 40 -c 0 -i 3596 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.05125 -s 10 -d 7 -p ack -e 40 -c 0 -i 3600 -a 0 -x {10.0 9.0 1795 ------- null} + -t 2.05125 -s 7 -d 0 -p ack -e 40 -c 0 -i 3600 -a 0 -x {10.0 9.0 1795 ------- null} h -t 2.05125 -s 7 -d 8 -p ack -e 40 -c 0 -i 3600 -a 0 -x {10.0 9.0 1795 ------- null} r -t 2.05139 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3585 -a 0 -x {9.0 10.0 1797 ------- null} + -t 2.05139 -s 10 -d 7 -p ack -e 40 -c 0 -i 3604 -a 0 -x {10.0 9.0 1797 ------- null} - -t 2.05139 -s 10 -d 7 -p ack -e 40 -c 0 -i 3604 -a 0 -x {10.0 9.0 1797 ------- null} h -t 2.05139 -s 10 -d 7 -p ack -e 40 -c 0 -i 3604 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.05141 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3599 -a 0 -x {9.0 10.0 1804 ------- null} + -t 2.05141 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3599 -a 0 -x {9.0 10.0 1804 ------- null} h -t 2.05141 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3599 -a 0 -x {9.0 10.0 1804 ------- null} + -t 2.0519 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3591 -a 0 -x {9.0 10.0 1800 ------- null} - -t 2.0519 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3591 -a 0 -x {9.0 10.0 1800 ------- null} h -t 2.0519 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3591 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.05202 -s 0 -d 9 -p ack -e 40 -c 0 -i 3594 -a 0 -x {10.0 9.0 1792 ------- null} + -t 2.05202 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3605 -a 0 -x {9.0 10.0 1807 ------- null} - -t 2.05202 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3605 -a 0 -x {9.0 10.0 1807 ------- null} h -t 2.05202 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3605 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.05219 -s 0 -d 9 -p ack -e 40 -c 0 -i 3598 -a 0 -x {10.0 9.0 1794 ------- null} - -t 2.05219 -s 0 -d 9 -p ack -e 40 -c 0 -i 3598 -a 0 -x {10.0 9.0 1794 ------- null} h -t 2.05219 -s 0 -d 9 -p ack -e 40 -c 0 -i 3598 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.05234 -s 10 -d 7 -p ack -e 40 -c 0 -i 3602 -a 0 -x {10.0 9.0 1796 ------- null} + -t 2.05234 -s 7 -d 0 -p ack -e 40 -c 0 -i 3602 -a 0 -x {10.0 9.0 1796 ------- null} h -t 2.05234 -s 7 -d 8 -p ack -e 40 -c 0 -i 3602 -a 0 -x {10.0 9.0 1796 ------- null} r -t 2.05248 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3587 -a 0 -x {9.0 10.0 1798 ------- null} + -t 2.05248 -s 10 -d 7 -p ack -e 40 -c 0 -i 3606 -a 0 -x {10.0 9.0 1798 ------- null} - -t 2.05248 -s 10 -d 7 -p ack -e 40 -c 0 -i 3606 -a 0 -x {10.0 9.0 1798 ------- null} h -t 2.05248 -s 10 -d 7 -p ack -e 40 -c 0 -i 3606 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.05248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3601 -a 0 -x {9.0 10.0 1805 ------- null} + -t 2.05248 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3601 -a 0 -x {9.0 10.0 1805 ------- null} h -t 2.05248 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3601 -a 0 -x {9.0 10.0 1805 ------- null} r -t 2.05299 -s 0 -d 9 -p ack -e 40 -c 0 -i 3596 -a 0 -x {10.0 9.0 1793 ------- null} + -t 2.05299 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3607 -a 0 -x {9.0 10.0 1808 ------- null} - -t 2.05299 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3607 -a 0 -x {9.0 10.0 1808 ------- null} h -t 2.05299 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3607 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.0531 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3593 -a 0 -x {9.0 10.0 1801 ------- null} - -t 2.0531 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3593 -a 0 -x {9.0 10.0 1801 ------- null} h -t 2.0531 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3593 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.05326 -s 0 -d 9 -p ack -e 40 -c 0 -i 3600 -a 0 -x {10.0 9.0 1795 ------- null} - -t 2.05326 -s 0 -d 9 -p ack -e 40 -c 0 -i 3600 -a 0 -x {10.0 9.0 1795 ------- null} h -t 2.05326 -s 0 -d 9 -p ack -e 40 -c 0 -i 3600 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.05342 -s 10 -d 7 -p ack -e 40 -c 0 -i 3604 -a 0 -x {10.0 9.0 1797 ------- null} + -t 2.05342 -s 7 -d 0 -p ack -e 40 -c 0 -i 3604 -a 0 -x {10.0 9.0 1797 ------- null} h -t 2.05342 -s 7 -d 8 -p ack -e 40 -c 0 -i 3604 -a 0 -x {10.0 9.0 1797 ------- null} r -t 2.05357 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3603 -a 0 -x {9.0 10.0 1806 ------- null} + -t 2.05357 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3603 -a 0 -x {9.0 10.0 1806 ------- null} h -t 2.05357 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3603 -a 0 -x {9.0 10.0 1806 ------- null} r -t 2.05362 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3589 -a 0 -x {9.0 10.0 1799 ------- null} + -t 2.05362 -s 10 -d 7 -p ack -e 40 -c 0 -i 3608 -a 0 -x {10.0 9.0 1799 ------- null} - -t 2.05362 -s 10 -d 7 -p ack -e 40 -c 0 -i 3608 -a 0 -x {10.0 9.0 1799 ------- null} h -t 2.05362 -s 10 -d 7 -p ack -e 40 -c 0 -i 3608 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.05419 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3595 -a 0 -x {9.0 10.0 1802 ------- null} - -t 2.05419 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3595 -a 0 -x {9.0 10.0 1802 ------- null} h -t 2.05419 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3595 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.05422 -s 0 -d 9 -p ack -e 40 -c 0 -i 3598 -a 0 -x {10.0 9.0 1794 ------- null} + -t 2.05422 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3609 -a 0 -x {9.0 10.0 1809 ------- null} - -t 2.05422 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3609 -a 0 -x {9.0 10.0 1809 ------- null} h -t 2.05422 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3609 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.05448 -s 0 -d 9 -p ack -e 40 -c 0 -i 3602 -a 0 -x {10.0 9.0 1796 ------- null} - -t 2.05448 -s 0 -d 9 -p ack -e 40 -c 0 -i 3602 -a 0 -x {10.0 9.0 1796 ------- null} h -t 2.05448 -s 0 -d 9 -p ack -e 40 -c 0 -i 3602 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.05451 -s 10 -d 7 -p ack -e 40 -c 0 -i 3606 -a 0 -x {10.0 9.0 1798 ------- null} + -t 2.05451 -s 7 -d 0 -p ack -e 40 -c 0 -i 3606 -a 0 -x {10.0 9.0 1798 ------- null} h -t 2.05451 -s 7 -d 8 -p ack -e 40 -c 0 -i 3606 -a 0 -x {10.0 9.0 1798 ------- null} r -t 2.0547 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3591 -a 0 -x {9.0 10.0 1800 ------- null} + -t 2.0547 -s 10 -d 7 -p ack -e 40 -c 0 -i 3610 -a 0 -x {10.0 9.0 1800 ------- null} - -t 2.0547 -s 10 -d 7 -p ack -e 40 -c 0 -i 3610 -a 0 -x {10.0 9.0 1800 ------- null} h -t 2.0547 -s 10 -d 7 -p ack -e 40 -c 0 -i 3610 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.05482 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3605 -a 0 -x {9.0 10.0 1807 ------- null} + -t 2.05482 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3605 -a 0 -x {9.0 10.0 1807 ------- null} h -t 2.05482 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3605 -a 0 -x {9.0 10.0 1807 ------- null} r -t 2.0553 -s 0 -d 9 -p ack -e 40 -c 0 -i 3600 -a 0 -x {10.0 9.0 1795 ------- null} + -t 2.0553 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3611 -a 0 -x {9.0 10.0 1810 ------- null} - -t 2.0553 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3611 -a 0 -x {9.0 10.0 1810 ------- null} h -t 2.0553 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3611 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.05541 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3597 -a 0 -x {9.0 10.0 1803 ------- null} - -t 2.05541 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3597 -a 0 -x {9.0 10.0 1803 ------- null} h -t 2.05541 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3597 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.05565 -s 10 -d 7 -p ack -e 40 -c 0 -i 3608 -a 0 -x {10.0 9.0 1799 ------- null} + -t 2.05565 -s 7 -d 0 -p ack -e 40 -c 0 -i 3608 -a 0 -x {10.0 9.0 1799 ------- null} h -t 2.05565 -s 7 -d 8 -p ack -e 40 -c 0 -i 3608 -a 0 -x {10.0 9.0 1799 ------- null} + -t 2.05566 -s 0 -d 9 -p ack -e 40 -c 0 -i 3604 -a 0 -x {10.0 9.0 1797 ------- null} - -t 2.05566 -s 0 -d 9 -p ack -e 40 -c 0 -i 3604 -a 0 -x {10.0 9.0 1797 ------- null} h -t 2.05566 -s 0 -d 9 -p ack -e 40 -c 0 -i 3604 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.05579 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3607 -a 0 -x {9.0 10.0 1808 ------- null} + -t 2.05579 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3607 -a 0 -x {9.0 10.0 1808 ------- null} h -t 2.05579 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3607 -a 0 -x {9.0 10.0 1808 ------- null} r -t 2.0559 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3593 -a 0 -x {9.0 10.0 1801 ------- null} + -t 2.0559 -s 10 -d 7 -p ack -e 40 -c 0 -i 3612 -a 0 -x {10.0 9.0 1801 ------- null} - -t 2.0559 -s 10 -d 7 -p ack -e 40 -c 0 -i 3612 -a 0 -x {10.0 9.0 1801 ------- null} h -t 2.0559 -s 10 -d 7 -p ack -e 40 -c 0 -i 3612 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.05651 -s 0 -d 9 -p ack -e 40 -c 0 -i 3602 -a 0 -x {10.0 9.0 1796 ------- null} + -t 2.05651 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3613 -a 0 -x {9.0 10.0 1811 ------- null} - -t 2.05651 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3613 -a 0 -x {9.0 10.0 1811 ------- null} h -t 2.05651 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3613 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.05666 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3599 -a 0 -x {9.0 10.0 1804 ------- null} - -t 2.05666 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3599 -a 0 -x {9.0 10.0 1804 ------- null} h -t 2.05666 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3599 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.05674 -s 10 -d 7 -p ack -e 40 -c 0 -i 3610 -a 0 -x {10.0 9.0 1800 ------- null} + -t 2.05674 -s 7 -d 0 -p ack -e 40 -c 0 -i 3610 -a 0 -x {10.0 9.0 1800 ------- null} h -t 2.05674 -s 7 -d 8 -p ack -e 40 -c 0 -i 3610 -a 0 -x {10.0 9.0 1800 ------- null} + -t 2.0569 -s 0 -d 9 -p ack -e 40 -c 0 -i 3606 -a 0 -x {10.0 9.0 1798 ------- null} - -t 2.0569 -s 0 -d 9 -p ack -e 40 -c 0 -i 3606 -a 0 -x {10.0 9.0 1798 ------- null} h -t 2.0569 -s 0 -d 9 -p ack -e 40 -c 0 -i 3606 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.05699 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3595 -a 0 -x {9.0 10.0 1802 ------- null} + -t 2.05699 -s 10 -d 7 -p ack -e 40 -c 0 -i 3614 -a 0 -x {10.0 9.0 1802 ------- null} - -t 2.05699 -s 10 -d 7 -p ack -e 40 -c 0 -i 3614 -a 0 -x {10.0 9.0 1802 ------- null} h -t 2.05699 -s 10 -d 7 -p ack -e 40 -c 0 -i 3614 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.05702 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3609 -a 0 -x {9.0 10.0 1809 ------- null} + -t 2.05702 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3609 -a 0 -x {9.0 10.0 1809 ------- null} h -t 2.05702 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3609 -a 0 -x {9.0 10.0 1809 ------- null} r -t 2.0577 -s 0 -d 9 -p ack -e 40 -c 0 -i 3604 -a 0 -x {10.0 9.0 1797 ------- null} + -t 2.0577 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3615 -a 0 -x {9.0 10.0 1812 ------- null} - -t 2.0577 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3615 -a 0 -x {9.0 10.0 1812 ------- null} h -t 2.0577 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3615 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.05774 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3601 -a 0 -x {9.0 10.0 1805 ------- null} - -t 2.05774 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3601 -a 0 -x {9.0 10.0 1805 ------- null} h -t 2.05774 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3601 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.05794 -s 10 -d 7 -p ack -e 40 -c 0 -i 3612 -a 0 -x {10.0 9.0 1801 ------- null} + -t 2.05794 -s 7 -d 0 -p ack -e 40 -c 0 -i 3612 -a 0 -x {10.0 9.0 1801 ------- null} h -t 2.05794 -s 7 -d 8 -p ack -e 40 -c 0 -i 3612 -a 0 -x {10.0 9.0 1801 ------- null} + -t 2.05803 -s 0 -d 9 -p ack -e 40 -c 0 -i 3608 -a 0 -x {10.0 9.0 1799 ------- null} - -t 2.05803 -s 0 -d 9 -p ack -e 40 -c 0 -i 3608 -a 0 -x {10.0 9.0 1799 ------- null} h -t 2.05803 -s 0 -d 9 -p ack -e 40 -c 0 -i 3608 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.0581 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3611 -a 0 -x {9.0 10.0 1810 ------- null} + -t 2.0581 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3611 -a 0 -x {9.0 10.0 1810 ------- null} h -t 2.0581 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3611 -a 0 -x {9.0 10.0 1810 ------- null} r -t 2.05821 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3597 -a 0 -x {9.0 10.0 1803 ------- null} + -t 2.05821 -s 10 -d 7 -p ack -e 40 -c 0 -i 3616 -a 0 -x {10.0 9.0 1803 ------- null} - -t 2.05821 -s 10 -d 7 -p ack -e 40 -c 0 -i 3616 -a 0 -x {10.0 9.0 1803 ------- null} h -t 2.05821 -s 10 -d 7 -p ack -e 40 -c 0 -i 3616 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.05893 -s 0 -d 9 -p ack -e 40 -c 0 -i 3606 -a 0 -x {10.0 9.0 1798 ------- null} + -t 2.05893 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3617 -a 0 -x {9.0 10.0 1813 ------- null} - -t 2.05893 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3617 -a 0 -x {9.0 10.0 1813 ------- null} h -t 2.05893 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3617 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.05899 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3603 -a 0 -x {9.0 10.0 1806 ------- null} - -t 2.05899 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3603 -a 0 -x {9.0 10.0 1806 ------- null} h -t 2.05899 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3603 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.05902 -s 10 -d 7 -p ack -e 40 -c 0 -i 3614 -a 0 -x {10.0 9.0 1802 ------- null} + -t 2.05902 -s 7 -d 0 -p ack -e 40 -c 0 -i 3614 -a 0 -x {10.0 9.0 1802 ------- null} h -t 2.05902 -s 7 -d 8 -p ack -e 40 -c 0 -i 3614 -a 0 -x {10.0 9.0 1802 ------- null} + -t 2.0593 -s 0 -d 9 -p ack -e 40 -c 0 -i 3610 -a 0 -x {10.0 9.0 1800 ------- null} - -t 2.0593 -s 0 -d 9 -p ack -e 40 -c 0 -i 3610 -a 0 -x {10.0 9.0 1800 ------- null} h -t 2.0593 -s 0 -d 9 -p ack -e 40 -c 0 -i 3610 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.05931 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3613 -a 0 -x {9.0 10.0 1811 ------- null} + -t 2.05931 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3613 -a 0 -x {9.0 10.0 1811 ------- null} h -t 2.05931 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3613 -a 0 -x {9.0 10.0 1811 ------- null} r -t 2.05946 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3599 -a 0 -x {9.0 10.0 1804 ------- null} + -t 2.05946 -s 10 -d 7 -p ack -e 40 -c 0 -i 3618 -a 0 -x {10.0 9.0 1804 ------- null} - -t 2.05946 -s 10 -d 7 -p ack -e 40 -c 0 -i 3618 -a 0 -x {10.0 9.0 1804 ------- null} h -t 2.05946 -s 10 -d 7 -p ack -e 40 -c 0 -i 3618 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.06006 -s 0 -d 9 -p ack -e 40 -c 0 -i 3608 -a 0 -x {10.0 9.0 1799 ------- null} + -t 2.06006 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3619 -a 0 -x {9.0 10.0 1814 ------- null} - -t 2.06006 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3619 -a 0 -x {9.0 10.0 1814 ------- null} h -t 2.06006 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3619 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.06024 -s 10 -d 7 -p ack -e 40 -c 0 -i 3616 -a 0 -x {10.0 9.0 1803 ------- null} + -t 2.06024 -s 7 -d 0 -p ack -e 40 -c 0 -i 3616 -a 0 -x {10.0 9.0 1803 ------- null} h -t 2.06024 -s 7 -d 8 -p ack -e 40 -c 0 -i 3616 -a 0 -x {10.0 9.0 1803 ------- null} + -t 2.06032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3605 -a 0 -x {9.0 10.0 1807 ------- null} - -t 2.06032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3605 -a 0 -x {9.0 10.0 1807 ------- null} h -t 2.06032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3605 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.06046 -s 0 -d 9 -p ack -e 40 -c 0 -i 3612 -a 0 -x {10.0 9.0 1801 ------- null} - -t 2.06046 -s 0 -d 9 -p ack -e 40 -c 0 -i 3612 -a 0 -x {10.0 9.0 1801 ------- null} h -t 2.06046 -s 0 -d 9 -p ack -e 40 -c 0 -i 3612 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.0605 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3615 -a 0 -x {9.0 10.0 1812 ------- null} + -t 2.0605 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3615 -a 0 -x {9.0 10.0 1812 ------- null} h -t 2.0605 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3615 -a 0 -x {9.0 10.0 1812 ------- null} r -t 2.06054 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3601 -a 0 -x {9.0 10.0 1805 ------- null} + -t 2.06054 -s 10 -d 7 -p ack -e 40 -c 0 -i 3620 -a 0 -x {10.0 9.0 1805 ------- null} - -t 2.06054 -s 10 -d 7 -p ack -e 40 -c 0 -i 3620 -a 0 -x {10.0 9.0 1805 ------- null} h -t 2.06054 -s 10 -d 7 -p ack -e 40 -c 0 -i 3620 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.06133 -s 0 -d 9 -p ack -e 40 -c 0 -i 3610 -a 0 -x {10.0 9.0 1800 ------- null} + -t 2.06133 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3621 -a 0 -x {9.0 10.0 1815 ------- null} - -t 2.06133 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3621 -a 0 -x {9.0 10.0 1815 ------- null} h -t 2.06133 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3621 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.06141 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3607 -a 0 -x {9.0 10.0 1808 ------- null} - -t 2.06141 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3607 -a 0 -x {9.0 10.0 1808 ------- null} h -t 2.06141 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3607 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.06149 -s 10 -d 7 -p ack -e 40 -c 0 -i 3618 -a 0 -x {10.0 9.0 1804 ------- null} + -t 2.06149 -s 7 -d 0 -p ack -e 40 -c 0 -i 3618 -a 0 -x {10.0 9.0 1804 ------- null} h -t 2.06149 -s 7 -d 8 -p ack -e 40 -c 0 -i 3618 -a 0 -x {10.0 9.0 1804 ------- null} + -t 2.06165 -s 0 -d 9 -p ack -e 40 -c 0 -i 3614 -a 0 -x {10.0 9.0 1802 ------- null} - -t 2.06165 -s 0 -d 9 -p ack -e 40 -c 0 -i 3614 -a 0 -x {10.0 9.0 1802 ------- null} h -t 2.06165 -s 0 -d 9 -p ack -e 40 -c 0 -i 3614 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.06173 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3617 -a 0 -x {9.0 10.0 1813 ------- null} + -t 2.06173 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3617 -a 0 -x {9.0 10.0 1813 ------- null} h -t 2.06173 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3617 -a 0 -x {9.0 10.0 1813 ------- null} r -t 2.06179 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3603 -a 0 -x {9.0 10.0 1806 ------- null} + -t 2.06179 -s 10 -d 7 -p ack -e 40 -c 0 -i 3622 -a 0 -x {10.0 9.0 1806 ------- null} - -t 2.06179 -s 10 -d 7 -p ack -e 40 -c 0 -i 3622 -a 0 -x {10.0 9.0 1806 ------- null} h -t 2.06179 -s 10 -d 7 -p ack -e 40 -c 0 -i 3622 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.0625 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3609 -a 0 -x {9.0 10.0 1809 ------- null} - -t 2.0625 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3609 -a 0 -x {9.0 10.0 1809 ------- null} h -t 2.0625 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3609 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.0625 -s 0 -d 9 -p ack -e 40 -c 0 -i 3612 -a 0 -x {10.0 9.0 1801 ------- null} + -t 2.0625 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3623 -a 0 -x {9.0 10.0 1816 ------- null} - -t 2.0625 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3623 -a 0 -x {9.0 10.0 1816 ------- null} h -t 2.0625 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3623 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.06258 -s 10 -d 7 -p ack -e 40 -c 0 -i 3620 -a 0 -x {10.0 9.0 1805 ------- null} + -t 2.06258 -s 7 -d 0 -p ack -e 40 -c 0 -i 3620 -a 0 -x {10.0 9.0 1805 ------- null} h -t 2.06258 -s 7 -d 8 -p ack -e 40 -c 0 -i 3620 -a 0 -x {10.0 9.0 1805 ------- null} + -t 2.0628 -s 0 -d 9 -p ack -e 40 -c 0 -i 3616 -a 0 -x {10.0 9.0 1803 ------- null} - -t 2.0628 -s 0 -d 9 -p ack -e 40 -c 0 -i 3616 -a 0 -x {10.0 9.0 1803 ------- null} h -t 2.0628 -s 0 -d 9 -p ack -e 40 -c 0 -i 3616 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.06286 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3619 -a 0 -x {9.0 10.0 1814 ------- null} + -t 2.06286 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3619 -a 0 -x {9.0 10.0 1814 ------- null} h -t 2.06286 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3619 -a 0 -x {9.0 10.0 1814 ------- null} r -t 2.06312 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3605 -a 0 -x {9.0 10.0 1807 ------- null} + -t 2.06312 -s 10 -d 7 -p ack -e 40 -c 0 -i 3624 -a 0 -x {10.0 9.0 1807 ------- null} - -t 2.06312 -s 10 -d 7 -p ack -e 40 -c 0 -i 3624 -a 0 -x {10.0 9.0 1807 ------- null} h -t 2.06312 -s 10 -d 7 -p ack -e 40 -c 0 -i 3624 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.06368 -s 0 -d 9 -p ack -e 40 -c 0 -i 3614 -a 0 -x {10.0 9.0 1802 ------- null} + -t 2.06368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3625 -a 0 -x {9.0 10.0 1817 ------- null} - -t 2.06368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3625 -a 0 -x {9.0 10.0 1817 ------- null} h -t 2.06368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3625 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.06376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3611 -a 0 -x {9.0 10.0 1810 ------- null} - -t 2.06376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3611 -a 0 -x {9.0 10.0 1810 ------- null} h -t 2.06376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3611 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.06382 -s 10 -d 7 -p ack -e 40 -c 0 -i 3622 -a 0 -x {10.0 9.0 1806 ------- null} + -t 2.06382 -s 7 -d 0 -p ack -e 40 -c 0 -i 3622 -a 0 -x {10.0 9.0 1806 ------- null} h -t 2.06382 -s 7 -d 8 -p ack -e 40 -c 0 -i 3622 -a 0 -x {10.0 9.0 1806 ------- null} + -t 2.06384 -s 0 -d 9 -p ack -e 40 -c 0 -i 3618 -a 0 -x {10.0 9.0 1804 ------- null} - -t 2.06384 -s 0 -d 9 -p ack -e 40 -c 0 -i 3618 -a 0 -x {10.0 9.0 1804 ------- null} h -t 2.06384 -s 0 -d 9 -p ack -e 40 -c 0 -i 3618 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.06413 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3621 -a 0 -x {9.0 10.0 1815 ------- null} + -t 2.06413 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3621 -a 0 -x {9.0 10.0 1815 ------- null} h -t 2.06413 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3621 -a 0 -x {9.0 10.0 1815 ------- null} r -t 2.06421 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3607 -a 0 -x {9.0 10.0 1808 ------- null} + -t 2.06421 -s 10 -d 7 -p ack -e 40 -c 0 -i 3626 -a 0 -x {10.0 9.0 1808 ------- null} - -t 2.06421 -s 10 -d 7 -p ack -e 40 -c 0 -i 3626 -a 0 -x {10.0 9.0 1808 ------- null} h -t 2.06421 -s 10 -d 7 -p ack -e 40 -c 0 -i 3626 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.06483 -s 0 -d 9 -p ack -e 40 -c 0 -i 3616 -a 0 -x {10.0 9.0 1803 ------- null} + -t 2.06483 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3627 -a 0 -x {9.0 10.0 1818 ------- null} - -t 2.06483 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3627 -a 0 -x {9.0 10.0 1818 ------- null} h -t 2.06483 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3627 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.06485 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3613 -a 0 -x {9.0 10.0 1811 ------- null} - -t 2.06485 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3613 -a 0 -x {9.0 10.0 1811 ------- null} h -t 2.06485 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3613 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.0651 -s 0 -d 9 -p ack -e 40 -c 0 -i 3620 -a 0 -x {10.0 9.0 1805 ------- null} - -t 2.0651 -s 0 -d 9 -p ack -e 40 -c 0 -i 3620 -a 0 -x {10.0 9.0 1805 ------- null} h -t 2.0651 -s 0 -d 9 -p ack -e 40 -c 0 -i 3620 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.06515 -s 10 -d 7 -p ack -e 40 -c 0 -i 3624 -a 0 -x {10.0 9.0 1807 ------- null} + -t 2.06515 -s 7 -d 0 -p ack -e 40 -c 0 -i 3624 -a 0 -x {10.0 9.0 1807 ------- null} h -t 2.06515 -s 7 -d 8 -p ack -e 40 -c 0 -i 3624 -a 0 -x {10.0 9.0 1807 ------- null} r -t 2.0653 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3609 -a 0 -x {9.0 10.0 1809 ------- null} + -t 2.0653 -s 10 -d 7 -p ack -e 40 -c 0 -i 3628 -a 0 -x {10.0 9.0 1809 ------- null} - -t 2.0653 -s 10 -d 7 -p ack -e 40 -c 0 -i 3628 -a 0 -x {10.0 9.0 1809 ------- null} h -t 2.0653 -s 10 -d 7 -p ack -e 40 -c 0 -i 3628 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.0653 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3623 -a 0 -x {9.0 10.0 1816 ------- null} + -t 2.0653 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3623 -a 0 -x {9.0 10.0 1816 ------- null} h -t 2.0653 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3623 -a 0 -x {9.0 10.0 1816 ------- null} r -t 2.06587 -s 0 -d 9 -p ack -e 40 -c 0 -i 3618 -a 0 -x {10.0 9.0 1804 ------- null} + -t 2.06587 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3629 -a 0 -x {9.0 10.0 1819 ------- null} - -t 2.06587 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3629 -a 0 -x {9.0 10.0 1819 ------- null} h -t 2.06587 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3629 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.0661 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3615 -a 0 -x {9.0 10.0 1812 ------- null} - -t 2.0661 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3615 -a 0 -x {9.0 10.0 1812 ------- null} h -t 2.0661 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3615 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.06624 -s 10 -d 7 -p ack -e 40 -c 0 -i 3626 -a 0 -x {10.0 9.0 1808 ------- null} + -t 2.06624 -s 7 -d 0 -p ack -e 40 -c 0 -i 3626 -a 0 -x {10.0 9.0 1808 ------- null} h -t 2.06624 -s 7 -d 8 -p ack -e 40 -c 0 -i 3626 -a 0 -x {10.0 9.0 1808 ------- null} + -t 2.06638 -s 0 -d 9 -p ack -e 40 -c 0 -i 3622 -a 0 -x {10.0 9.0 1806 ------- null} - -t 2.06638 -s 0 -d 9 -p ack -e 40 -c 0 -i 3622 -a 0 -x {10.0 9.0 1806 ------- null} h -t 2.06638 -s 0 -d 9 -p ack -e 40 -c 0 -i 3622 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.06648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3625 -a 0 -x {9.0 10.0 1817 ------- null} + -t 2.06648 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3625 -a 0 -x {9.0 10.0 1817 ------- null} h -t 2.06648 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3625 -a 0 -x {9.0 10.0 1817 ------- null} r -t 2.06656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3611 -a 0 -x {9.0 10.0 1810 ------- null} + -t 2.06656 -s 10 -d 7 -p ack -e 40 -c 0 -i 3630 -a 0 -x {10.0 9.0 1810 ------- null} - -t 2.06656 -s 10 -d 7 -p ack -e 40 -c 0 -i 3630 -a 0 -x {10.0 9.0 1810 ------- null} h -t 2.06656 -s 10 -d 7 -p ack -e 40 -c 0 -i 3630 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.06714 -s 0 -d 9 -p ack -e 40 -c 0 -i 3620 -a 0 -x {10.0 9.0 1805 ------- null} + -t 2.06714 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3631 -a 0 -x {9.0 10.0 1820 ------- null} - -t 2.06714 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3631 -a 0 -x {9.0 10.0 1820 ------- null} h -t 2.06714 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3631 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.06726 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3617 -a 0 -x {9.0 10.0 1813 ------- null} - -t 2.06726 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3617 -a 0 -x {9.0 10.0 1813 ------- null} h -t 2.06726 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3617 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.06733 -s 10 -d 7 -p ack -e 40 -c 0 -i 3628 -a 0 -x {10.0 9.0 1809 ------- null} + -t 2.06733 -s 7 -d 0 -p ack -e 40 -c 0 -i 3628 -a 0 -x {10.0 9.0 1809 ------- null} h -t 2.06733 -s 7 -d 8 -p ack -e 40 -c 0 -i 3628 -a 0 -x {10.0 9.0 1809 ------- null} + -t 2.06746 -s 0 -d 9 -p ack -e 40 -c 0 -i 3624 -a 0 -x {10.0 9.0 1807 ------- null} - -t 2.06746 -s 0 -d 9 -p ack -e 40 -c 0 -i 3624 -a 0 -x {10.0 9.0 1807 ------- null} h -t 2.06746 -s 0 -d 9 -p ack -e 40 -c 0 -i 3624 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.06763 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3627 -a 0 -x {9.0 10.0 1818 ------- null} + -t 2.06763 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3627 -a 0 -x {9.0 10.0 1818 ------- null} h -t 2.06763 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3627 -a 0 -x {9.0 10.0 1818 ------- null} r -t 2.06765 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3613 -a 0 -x {9.0 10.0 1811 ------- null} + -t 2.06765 -s 10 -d 7 -p ack -e 40 -c 0 -i 3632 -a 0 -x {10.0 9.0 1811 ------- null} - -t 2.06765 -s 10 -d 7 -p ack -e 40 -c 0 -i 3632 -a 0 -x {10.0 9.0 1811 ------- null} h -t 2.06765 -s 10 -d 7 -p ack -e 40 -c 0 -i 3632 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.06835 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3619 -a 0 -x {9.0 10.0 1814 ------- null} - -t 2.06835 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3619 -a 0 -x {9.0 10.0 1814 ------- null} h -t 2.06835 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3619 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.06842 -s 0 -d 9 -p ack -e 40 -c 0 -i 3622 -a 0 -x {10.0 9.0 1806 ------- null} + -t 2.06842 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3633 -a 0 -x {9.0 10.0 1821 ------- null} - -t 2.06842 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3633 -a 0 -x {9.0 10.0 1821 ------- null} h -t 2.06842 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3633 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.06859 -s 10 -d 7 -p ack -e 40 -c 0 -i 3630 -a 0 -x {10.0 9.0 1810 ------- null} + -t 2.06859 -s 7 -d 0 -p ack -e 40 -c 0 -i 3630 -a 0 -x {10.0 9.0 1810 ------- null} h -t 2.06859 -s 7 -d 8 -p ack -e 40 -c 0 -i 3630 -a 0 -x {10.0 9.0 1810 ------- null} + -t 2.06864 -s 0 -d 9 -p ack -e 40 -c 0 -i 3626 -a 0 -x {10.0 9.0 1808 ------- null} - -t 2.06864 -s 0 -d 9 -p ack -e 40 -c 0 -i 3626 -a 0 -x {10.0 9.0 1808 ------- null} h -t 2.06864 -s 0 -d 9 -p ack -e 40 -c 0 -i 3626 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.06867 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3629 -a 0 -x {9.0 10.0 1819 ------- null} + -t 2.06867 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3629 -a 0 -x {9.0 10.0 1819 ------- null} h -t 2.06867 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3629 -a 0 -x {9.0 10.0 1819 ------- null} r -t 2.0689 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3615 -a 0 -x {9.0 10.0 1812 ------- null} + -t 2.0689 -s 10 -d 7 -p ack -e 40 -c 0 -i 3634 -a 0 -x {10.0 9.0 1812 ------- null} - -t 2.0689 -s 10 -d 7 -p ack -e 40 -c 0 -i 3634 -a 0 -x {10.0 9.0 1812 ------- null} h -t 2.0689 -s 10 -d 7 -p ack -e 40 -c 0 -i 3634 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.06949 -s 0 -d 9 -p ack -e 40 -c 0 -i 3624 -a 0 -x {10.0 9.0 1807 ------- null} + -t 2.06949 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3635 -a 0 -x {9.0 10.0 1822 ------- null} - -t 2.06949 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3635 -a 0 -x {9.0 10.0 1822 ------- null} h -t 2.06949 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3635 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.06968 -s 10 -d 7 -p ack -e 40 -c 0 -i 3632 -a 0 -x {10.0 9.0 1811 ------- null} + -t 2.06968 -s 7 -d 0 -p ack -e 40 -c 0 -i 3632 -a 0 -x {10.0 9.0 1811 ------- null} h -t 2.06968 -s 7 -d 8 -p ack -e 40 -c 0 -i 3632 -a 0 -x {10.0 9.0 1811 ------- null} + -t 2.06968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3621 -a 0 -x {9.0 10.0 1815 ------- null} - -t 2.06968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3621 -a 0 -x {9.0 10.0 1815 ------- null} h -t 2.06968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3621 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.06994 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3631 -a 0 -x {9.0 10.0 1820 ------- null} + -t 2.06994 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3631 -a 0 -x {9.0 10.0 1820 ------- null} h -t 2.06994 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3631 -a 0 -x {9.0 10.0 1820 ------- null} + -t 2.06994 -s 0 -d 9 -p ack -e 40 -c 0 -i 3628 -a 0 -x {10.0 9.0 1809 ------- null} - -t 2.06994 -s 0 -d 9 -p ack -e 40 -c 0 -i 3628 -a 0 -x {10.0 9.0 1809 ------- null} h -t 2.06994 -s 0 -d 9 -p ack -e 40 -c 0 -i 3628 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.07006 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3617 -a 0 -x {9.0 10.0 1813 ------- null} + -t 2.07006 -s 10 -d 7 -p ack -e 40 -c 0 -i 3636 -a 0 -x {10.0 9.0 1813 ------- null} - -t 2.07006 -s 10 -d 7 -p ack -e 40 -c 0 -i 3636 -a 0 -x {10.0 9.0 1813 ------- null} h -t 2.07006 -s 10 -d 7 -p ack -e 40 -c 0 -i 3636 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.07067 -s 0 -d 9 -p ack -e 40 -c 0 -i 3626 -a 0 -x {10.0 9.0 1808 ------- null} + -t 2.07067 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3637 -a 0 -x {9.0 10.0 1823 ------- null} - -t 2.07067 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3637 -a 0 -x {9.0 10.0 1823 ------- null} h -t 2.07067 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3637 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.07082 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3623 -a 0 -x {9.0 10.0 1816 ------- null} - -t 2.07082 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3623 -a 0 -x {9.0 10.0 1816 ------- null} h -t 2.07082 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3623 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.07093 -s 10 -d 7 -p ack -e 40 -c 0 -i 3634 -a 0 -x {10.0 9.0 1812 ------- null} + -t 2.07093 -s 7 -d 0 -p ack -e 40 -c 0 -i 3634 -a 0 -x {10.0 9.0 1812 ------- null} h -t 2.07093 -s 7 -d 8 -p ack -e 40 -c 0 -i 3634 -a 0 -x {10.0 9.0 1812 ------- null} + -t 2.07104 -s 0 -d 9 -p ack -e 40 -c 0 -i 3630 -a 0 -x {10.0 9.0 1810 ------- null} - -t 2.07104 -s 0 -d 9 -p ack -e 40 -c 0 -i 3630 -a 0 -x {10.0 9.0 1810 ------- null} h -t 2.07104 -s 0 -d 9 -p ack -e 40 -c 0 -i 3630 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.07115 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3619 -a 0 -x {9.0 10.0 1814 ------- null} + -t 2.07115 -s 10 -d 7 -p ack -e 40 -c 0 -i 3638 -a 0 -x {10.0 9.0 1814 ------- null} - -t 2.07115 -s 10 -d 7 -p ack -e 40 -c 0 -i 3638 -a 0 -x {10.0 9.0 1814 ------- null} h -t 2.07115 -s 10 -d 7 -p ack -e 40 -c 0 -i 3638 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.07122 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3633 -a 0 -x {9.0 10.0 1821 ------- null} + -t 2.07122 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3633 -a 0 -x {9.0 10.0 1821 ------- null} h -t 2.07122 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3633 -a 0 -x {9.0 10.0 1821 ------- null} + -t 2.0719 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3625 -a 0 -x {9.0 10.0 1817 ------- null} - -t 2.0719 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3625 -a 0 -x {9.0 10.0 1817 ------- null} h -t 2.0719 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3625 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.07197 -s 0 -d 9 -p ack -e 40 -c 0 -i 3628 -a 0 -x {10.0 9.0 1809 ------- null} + -t 2.07197 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3639 -a 0 -x {9.0 10.0 1824 ------- null} - -t 2.07197 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3639 -a 0 -x {9.0 10.0 1824 ------- null} h -t 2.07197 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3639 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.0721 -s 10 -d 7 -p ack -e 40 -c 0 -i 3636 -a 0 -x {10.0 9.0 1813 ------- null} + -t 2.0721 -s 7 -d 0 -p ack -e 40 -c 0 -i 3636 -a 0 -x {10.0 9.0 1813 ------- null} h -t 2.0721 -s 7 -d 8 -p ack -e 40 -c 0 -i 3636 -a 0 -x {10.0 9.0 1813 ------- null} + -t 2.07214 -s 0 -d 9 -p ack -e 40 -c 0 -i 3632 -a 0 -x {10.0 9.0 1811 ------- null} - -t 2.07214 -s 0 -d 9 -p ack -e 40 -c 0 -i 3632 -a 0 -x {10.0 9.0 1811 ------- null} h -t 2.07214 -s 0 -d 9 -p ack -e 40 -c 0 -i 3632 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.07229 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3635 -a 0 -x {9.0 10.0 1822 ------- null} + -t 2.07229 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3635 -a 0 -x {9.0 10.0 1822 ------- null} h -t 2.07229 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3635 -a 0 -x {9.0 10.0 1822 ------- null} r -t 2.07248 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3621 -a 0 -x {9.0 10.0 1815 ------- null} + -t 2.07248 -s 10 -d 7 -p ack -e 40 -c 0 -i 3640 -a 0 -x {10.0 9.0 1815 ------- null} - -t 2.07248 -s 10 -d 7 -p ack -e 40 -c 0 -i 3640 -a 0 -x {10.0 9.0 1815 ------- null} h -t 2.07248 -s 10 -d 7 -p ack -e 40 -c 0 -i 3640 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.07299 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3627 -a 0 -x {9.0 10.0 1818 ------- null} - -t 2.07299 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3627 -a 0 -x {9.0 10.0 1818 ------- null} h -t 2.07299 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3627 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.07307 -s 0 -d 9 -p ack -e 40 -c 0 -i 3630 -a 0 -x {10.0 9.0 1810 ------- null} + -t 2.07307 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3641 -a 0 -x {9.0 10.0 1825 ------- null} - -t 2.07307 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3641 -a 0 -x {9.0 10.0 1825 ------- null} h -t 2.07307 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3641 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.07315 -s 0 -d 9 -p ack -e 40 -c 0 -i 3634 -a 0 -x {10.0 9.0 1812 ------- null} - -t 2.07315 -s 0 -d 9 -p ack -e 40 -c 0 -i 3634 -a 0 -x {10.0 9.0 1812 ------- null} h -t 2.07315 -s 0 -d 9 -p ack -e 40 -c 0 -i 3634 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.07318 -s 10 -d 7 -p ack -e 40 -c 0 -i 3638 -a 0 -x {10.0 9.0 1814 ------- null} + -t 2.07318 -s 7 -d 0 -p ack -e 40 -c 0 -i 3638 -a 0 -x {10.0 9.0 1814 ------- null} h -t 2.07318 -s 7 -d 8 -p ack -e 40 -c 0 -i 3638 -a 0 -x {10.0 9.0 1814 ------- null} r -t 2.07347 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3637 -a 0 -x {9.0 10.0 1823 ------- null} + -t 2.07347 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3637 -a 0 -x {9.0 10.0 1823 ------- null} h -t 2.07347 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3637 -a 0 -x {9.0 10.0 1823 ------- null} r -t 2.07362 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3623 -a 0 -x {9.0 10.0 1816 ------- null} + -t 2.07362 -s 10 -d 7 -p ack -e 40 -c 0 -i 3642 -a 0 -x {10.0 9.0 1816 ------- null} - -t 2.07362 -s 10 -d 7 -p ack -e 40 -c 0 -i 3642 -a 0 -x {10.0 9.0 1816 ------- null} h -t 2.07362 -s 10 -d 7 -p ack -e 40 -c 0 -i 3642 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.07408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3629 -a 0 -x {9.0 10.0 1819 ------- null} - -t 2.07408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3629 -a 0 -x {9.0 10.0 1819 ------- null} h -t 2.07408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3629 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.07418 -s 0 -d 9 -p ack -e 40 -c 0 -i 3632 -a 0 -x {10.0 9.0 1811 ------- null} + -t 2.07418 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3643 -a 0 -x {9.0 10.0 1826 ------- null} - -t 2.07418 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3643 -a 0 -x {9.0 10.0 1826 ------- null} h -t 2.07418 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3643 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.07426 -s 0 -d 9 -p ack -e 40 -c 0 -i 3636 -a 0 -x {10.0 9.0 1813 ------- null} - -t 2.07426 -s 0 -d 9 -p ack -e 40 -c 0 -i 3636 -a 0 -x {10.0 9.0 1813 ------- null} h -t 2.07426 -s 0 -d 9 -p ack -e 40 -c 0 -i 3636 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.07451 -s 10 -d 7 -p ack -e 40 -c 0 -i 3640 -a 0 -x {10.0 9.0 1815 ------- null} + -t 2.07451 -s 7 -d 0 -p ack -e 40 -c 0 -i 3640 -a 0 -x {10.0 9.0 1815 ------- null} h -t 2.07451 -s 7 -d 8 -p ack -e 40 -c 0 -i 3640 -a 0 -x {10.0 9.0 1815 ------- null} r -t 2.0747 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3625 -a 0 -x {9.0 10.0 1817 ------- null} + -t 2.0747 -s 10 -d 7 -p ack -e 40 -c 0 -i 3644 -a 0 -x {10.0 9.0 1817 ------- null} - -t 2.0747 -s 10 -d 7 -p ack -e 40 -c 0 -i 3644 -a 0 -x {10.0 9.0 1817 ------- null} h -t 2.0747 -s 10 -d 7 -p ack -e 40 -c 0 -i 3644 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.07477 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3639 -a 0 -x {9.0 10.0 1824 ------- null} + -t 2.07477 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3639 -a 0 -x {9.0 10.0 1824 ------- null} h -t 2.07477 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3639 -a 0 -x {9.0 10.0 1824 ------- null} + -t 2.07517 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3631 -a 0 -x {9.0 10.0 1820 ------- null} - -t 2.07517 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3631 -a 0 -x {9.0 10.0 1820 ------- null} h -t 2.07517 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3631 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.07518 -s 0 -d 9 -p ack -e 40 -c 0 -i 3634 -a 0 -x {10.0 9.0 1812 ------- null} + -t 2.07518 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3645 -a 0 -x {9.0 10.0 1827 ------- null} - -t 2.07518 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3645 -a 0 -x {9.0 10.0 1827 ------- null} h -t 2.07518 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3645 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.07541 -s 0 -d 9 -p ack -e 40 -c 0 -i 3638 -a 0 -x {10.0 9.0 1814 ------- null} - -t 2.07541 -s 0 -d 9 -p ack -e 40 -c 0 -i 3638 -a 0 -x {10.0 9.0 1814 ------- null} h -t 2.07541 -s 0 -d 9 -p ack -e 40 -c 0 -i 3638 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.07565 -s 10 -d 7 -p ack -e 40 -c 0 -i 3642 -a 0 -x {10.0 9.0 1816 ------- null} + -t 2.07565 -s 7 -d 0 -p ack -e 40 -c 0 -i 3642 -a 0 -x {10.0 9.0 1816 ------- null} h -t 2.07565 -s 7 -d 8 -p ack -e 40 -c 0 -i 3642 -a 0 -x {10.0 9.0 1816 ------- null} r -t 2.07579 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3627 -a 0 -x {9.0 10.0 1818 ------- null} + -t 2.07579 -s 10 -d 7 -p ack -e 40 -c 0 -i 3646 -a 0 -x {10.0 9.0 1818 ------- null} - -t 2.07579 -s 10 -d 7 -p ack -e 40 -c 0 -i 3646 -a 0 -x {10.0 9.0 1818 ------- null} h -t 2.07579 -s 10 -d 7 -p ack -e 40 -c 0 -i 3646 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.07587 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3641 -a 0 -x {9.0 10.0 1825 ------- null} + -t 2.07587 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3641 -a 0 -x {9.0 10.0 1825 ------- null} h -t 2.07587 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3641 -a 0 -x {9.0 10.0 1825 ------- null} + -t 2.07626 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3633 -a 0 -x {9.0 10.0 1821 ------- null} - -t 2.07626 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3633 -a 0 -x {9.0 10.0 1821 ------- null} h -t 2.07626 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3633 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.07629 -s 0 -d 9 -p ack -e 40 -c 0 -i 3636 -a 0 -x {10.0 9.0 1813 ------- null} + -t 2.07629 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3647 -a 0 -x {9.0 10.0 1828 ------- null} - -t 2.07629 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3647 -a 0 -x {9.0 10.0 1828 ------- null} h -t 2.07629 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3647 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.07648 -s 0 -d 9 -p ack -e 40 -c 0 -i 3640 -a 0 -x {10.0 9.0 1815 ------- null} - -t 2.07648 -s 0 -d 9 -p ack -e 40 -c 0 -i 3640 -a 0 -x {10.0 9.0 1815 ------- null} h -t 2.07648 -s 0 -d 9 -p ack -e 40 -c 0 -i 3640 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.07674 -s 10 -d 7 -p ack -e 40 -c 0 -i 3644 -a 0 -x {10.0 9.0 1817 ------- null} + -t 2.07674 -s 7 -d 0 -p ack -e 40 -c 0 -i 3644 -a 0 -x {10.0 9.0 1817 ------- null} h -t 2.07674 -s 7 -d 8 -p ack -e 40 -c 0 -i 3644 -a 0 -x {10.0 9.0 1817 ------- null} r -t 2.07688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3629 -a 0 -x {9.0 10.0 1819 ------- null} + -t 2.07688 -s 10 -d 7 -p ack -e 40 -c 0 -i 3648 -a 0 -x {10.0 9.0 1819 ------- null} - -t 2.07688 -s 10 -d 7 -p ack -e 40 -c 0 -i 3648 -a 0 -x {10.0 9.0 1819 ------- null} h -t 2.07688 -s 10 -d 7 -p ack -e 40 -c 0 -i 3648 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.07698 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3643 -a 0 -x {9.0 10.0 1826 ------- null} + -t 2.07698 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3643 -a 0 -x {9.0 10.0 1826 ------- null} h -t 2.07698 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3643 -a 0 -x {9.0 10.0 1826 ------- null} + -t 2.07734 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3635 -a 0 -x {9.0 10.0 1822 ------- null} - -t 2.07734 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3635 -a 0 -x {9.0 10.0 1822 ------- null} h -t 2.07734 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3635 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.07744 -s 0 -d 9 -p ack -e 40 -c 0 -i 3642 -a 0 -x {10.0 9.0 1816 ------- null} - -t 2.07744 -s 0 -d 9 -p ack -e 40 -c 0 -i 3642 -a 0 -x {10.0 9.0 1816 ------- null} h -t 2.07744 -s 0 -d 9 -p ack -e 40 -c 0 -i 3642 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.07744 -s 0 -d 9 -p ack -e 40 -c 0 -i 3638 -a 0 -x {10.0 9.0 1814 ------- null} + -t 2.07744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3649 -a 0 -x {9.0 10.0 1829 ------- null} - -t 2.07744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3649 -a 0 -x {9.0 10.0 1829 ------- null} h -t 2.07744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3649 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.07782 -s 10 -d 7 -p ack -e 40 -c 0 -i 3646 -a 0 -x {10.0 9.0 1818 ------- null} + -t 2.07782 -s 7 -d 0 -p ack -e 40 -c 0 -i 3646 -a 0 -x {10.0 9.0 1818 ------- null} h -t 2.07782 -s 7 -d 8 -p ack -e 40 -c 0 -i 3646 -a 0 -x {10.0 9.0 1818 ------- null} r -t 2.07797 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3631 -a 0 -x {9.0 10.0 1820 ------- null} + -t 2.07797 -s 10 -d 7 -p ack -e 40 -c 0 -i 3650 -a 0 -x {10.0 9.0 1820 ------- null} - -t 2.07797 -s 10 -d 7 -p ack -e 40 -c 0 -i 3650 -a 0 -x {10.0 9.0 1820 ------- null} h -t 2.07797 -s 10 -d 7 -p ack -e 40 -c 0 -i 3650 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.07798 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3645 -a 0 -x {9.0 10.0 1827 ------- null} + -t 2.07798 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3645 -a 0 -x {9.0 10.0 1827 ------- null} h -t 2.07798 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3645 -a 0 -x {9.0 10.0 1827 ------- null} + -t 2.07843 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3637 -a 0 -x {9.0 10.0 1823 ------- null} - -t 2.07843 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3637 -a 0 -x {9.0 10.0 1823 ------- null} h -t 2.07843 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3637 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.07851 -s 0 -d 9 -p ack -e 40 -c 0 -i 3640 -a 0 -x {10.0 9.0 1815 ------- null} + -t 2.07851 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3651 -a 0 -x {9.0 10.0 1830 ------- null} - -t 2.07851 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3651 -a 0 -x {9.0 10.0 1830 ------- null} h -t 2.07851 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3651 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.07861 -s 0 -d 9 -p ack -e 40 -c 0 -i 3644 -a 0 -x {10.0 9.0 1817 ------- null} - -t 2.07861 -s 0 -d 9 -p ack -e 40 -c 0 -i 3644 -a 0 -x {10.0 9.0 1817 ------- null} h -t 2.07861 -s 0 -d 9 -p ack -e 40 -c 0 -i 3644 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.07891 -s 10 -d 7 -p ack -e 40 -c 0 -i 3648 -a 0 -x {10.0 9.0 1819 ------- null} + -t 2.07891 -s 7 -d 0 -p ack -e 40 -c 0 -i 3648 -a 0 -x {10.0 9.0 1819 ------- null} h -t 2.07891 -s 7 -d 8 -p ack -e 40 -c 0 -i 3648 -a 0 -x {10.0 9.0 1819 ------- null} r -t 2.07906 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3633 -a 0 -x {9.0 10.0 1821 ------- null} + -t 2.07906 -s 10 -d 7 -p ack -e 40 -c 0 -i 3652 -a 0 -x {10.0 9.0 1821 ------- null} - -t 2.07906 -s 10 -d 7 -p ack -e 40 -c 0 -i 3652 -a 0 -x {10.0 9.0 1821 ------- null} h -t 2.07906 -s 10 -d 7 -p ack -e 40 -c 0 -i 3652 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.07909 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3647 -a 0 -x {9.0 10.0 1828 ------- null} + -t 2.07909 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3647 -a 0 -x {9.0 10.0 1828 ------- null} h -t 2.07909 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3647 -a 0 -x {9.0 10.0 1828 ------- null} r -t 2.07947 -s 0 -d 9 -p ack -e 40 -c 0 -i 3642 -a 0 -x {10.0 9.0 1816 ------- null} + -t 2.07947 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3653 -a 0 -x {9.0 10.0 1831 ------- null} - -t 2.07947 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3653 -a 0 -x {9.0 10.0 1831 ------- null} h -t 2.07947 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3653 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.07952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3639 -a 0 -x {9.0 10.0 1824 ------- null} - -t 2.07952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3639 -a 0 -x {9.0 10.0 1824 ------- null} h -t 2.07952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3639 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.0796 -s 0 -d 9 -p ack -e 40 -c 0 -i 3646 -a 0 -x {10.0 9.0 1818 ------- null} - -t 2.0796 -s 0 -d 9 -p ack -e 40 -c 0 -i 3646 -a 0 -x {10.0 9.0 1818 ------- null} h -t 2.0796 -s 0 -d 9 -p ack -e 40 -c 0 -i 3646 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.08 -s 10 -d 7 -p ack -e 40 -c 0 -i 3650 -a 0 -x {10.0 9.0 1820 ------- null} + -t 2.08 -s 7 -d 0 -p ack -e 40 -c 0 -i 3650 -a 0 -x {10.0 9.0 1820 ------- null} h -t 2.08 -s 7 -d 8 -p ack -e 40 -c 0 -i 3650 -a 0 -x {10.0 9.0 1820 ------- null} r -t 2.08014 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3635 -a 0 -x {9.0 10.0 1822 ------- null} + -t 2.08014 -s 10 -d 7 -p ack -e 40 -c 0 -i 3654 -a 0 -x {10.0 9.0 1822 ------- null} - -t 2.08014 -s 10 -d 7 -p ack -e 40 -c 0 -i 3654 -a 0 -x {10.0 9.0 1822 ------- null} h -t 2.08014 -s 10 -d 7 -p ack -e 40 -c 0 -i 3654 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.08024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3649 -a 0 -x {9.0 10.0 1829 ------- null} + -t 2.08024 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3649 -a 0 -x {9.0 10.0 1829 ------- null} h -t 2.08024 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3649 -a 0 -x {9.0 10.0 1829 ------- null} + -t 2.08061 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3641 -a 0 -x {9.0 10.0 1825 ------- null} - -t 2.08061 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3641 -a 0 -x {9.0 10.0 1825 ------- null} h -t 2.08061 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3641 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.08064 -s 0 -d 9 -p ack -e 40 -c 0 -i 3644 -a 0 -x {10.0 9.0 1817 ------- null} + -t 2.08064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3655 -a 0 -x {9.0 10.0 1832 ------- null} - -t 2.08064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3655 -a 0 -x {9.0 10.0 1832 ------- null} h -t 2.08064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3655 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.08085 -s 0 -d 9 -p ack -e 40 -c 0 -i 3648 -a 0 -x {10.0 9.0 1819 ------- null} - -t 2.08085 -s 0 -d 9 -p ack -e 40 -c 0 -i 3648 -a 0 -x {10.0 9.0 1819 ------- null} h -t 2.08085 -s 0 -d 9 -p ack -e 40 -c 0 -i 3648 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.08109 -s 10 -d 7 -p ack -e 40 -c 0 -i 3652 -a 0 -x {10.0 9.0 1821 ------- null} + -t 2.08109 -s 7 -d 0 -p ack -e 40 -c 0 -i 3652 -a 0 -x {10.0 9.0 1821 ------- null} h -t 2.08109 -s 7 -d 8 -p ack -e 40 -c 0 -i 3652 -a 0 -x {10.0 9.0 1821 ------- null} r -t 2.08123 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3637 -a 0 -x {9.0 10.0 1823 ------- null} + -t 2.08123 -s 10 -d 7 -p ack -e 40 -c 0 -i 3656 -a 0 -x {10.0 9.0 1823 ------- null} - -t 2.08123 -s 10 -d 7 -p ack -e 40 -c 0 -i 3656 -a 0 -x {10.0 9.0 1823 ------- null} h -t 2.08123 -s 10 -d 7 -p ack -e 40 -c 0 -i 3656 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.08131 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3651 -a 0 -x {9.0 10.0 1830 ------- null} + -t 2.08131 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3651 -a 0 -x {9.0 10.0 1830 ------- null} h -t 2.08131 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3651 -a 0 -x {9.0 10.0 1830 ------- null} r -t 2.08163 -s 0 -d 9 -p ack -e 40 -c 0 -i 3646 -a 0 -x {10.0 9.0 1818 ------- null} + -t 2.08163 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3657 -a 0 -x {9.0 10.0 1833 ------- null} - -t 2.08163 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3657 -a 0 -x {9.0 10.0 1833 ------- null} h -t 2.08163 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3657 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.0817 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3643 -a 0 -x {9.0 10.0 1826 ------- null} - -t 2.0817 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3643 -a 0 -x {9.0 10.0 1826 ------- null} h -t 2.0817 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3643 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.08181 -s 0 -d 9 -p ack -e 40 -c 0 -i 3650 -a 0 -x {10.0 9.0 1820 ------- null} - -t 2.08181 -s 0 -d 9 -p ack -e 40 -c 0 -i 3650 -a 0 -x {10.0 9.0 1820 ------- null} h -t 2.08181 -s 0 -d 9 -p ack -e 40 -c 0 -i 3650 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.08218 -s 10 -d 7 -p ack -e 40 -c 0 -i 3654 -a 0 -x {10.0 9.0 1822 ------- null} + -t 2.08218 -s 7 -d 0 -p ack -e 40 -c 0 -i 3654 -a 0 -x {10.0 9.0 1822 ------- null} h -t 2.08218 -s 7 -d 8 -p ack -e 40 -c 0 -i 3654 -a 0 -x {10.0 9.0 1822 ------- null} r -t 2.08227 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3653 -a 0 -x {9.0 10.0 1831 ------- null} + -t 2.08227 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3653 -a 0 -x {9.0 10.0 1831 ------- null} h -t 2.08227 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3653 -a 0 -x {9.0 10.0 1831 ------- null} r -t 2.08232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3639 -a 0 -x {9.0 10.0 1824 ------- null} + -t 2.08232 -s 10 -d 7 -p ack -e 40 -c 0 -i 3658 -a 0 -x {10.0 9.0 1824 ------- null} - -t 2.08232 -s 10 -d 7 -p ack -e 40 -c 0 -i 3658 -a 0 -x {10.0 9.0 1824 ------- null} h -t 2.08232 -s 10 -d 7 -p ack -e 40 -c 0 -i 3658 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.08278 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3645 -a 0 -x {9.0 10.0 1827 ------- null} - -t 2.08278 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3645 -a 0 -x {9.0 10.0 1827 ------- null} h -t 2.08278 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3645 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.08288 -s 0 -d 9 -p ack -e 40 -c 0 -i 3652 -a 0 -x {10.0 9.0 1821 ------- null} - -t 2.08288 -s 0 -d 9 -p ack -e 40 -c 0 -i 3652 -a 0 -x {10.0 9.0 1821 ------- null} h -t 2.08288 -s 0 -d 9 -p ack -e 40 -c 0 -i 3652 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.08288 -s 0 -d 9 -p ack -e 40 -c 0 -i 3648 -a 0 -x {10.0 9.0 1819 ------- null} + -t 2.08288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3659 -a 0 -x {9.0 10.0 1834 ------- null} - -t 2.08288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3659 -a 0 -x {9.0 10.0 1834 ------- null} h -t 2.08288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3659 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.08326 -s 10 -d 7 -p ack -e 40 -c 0 -i 3656 -a 0 -x {10.0 9.0 1823 ------- null} + -t 2.08326 -s 7 -d 0 -p ack -e 40 -c 0 -i 3656 -a 0 -x {10.0 9.0 1823 ------- null} h -t 2.08326 -s 7 -d 8 -p ack -e 40 -c 0 -i 3656 -a 0 -x {10.0 9.0 1823 ------- null} r -t 2.08341 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3641 -a 0 -x {9.0 10.0 1825 ------- null} + -t 2.08341 -s 10 -d 7 -p ack -e 40 -c 0 -i 3660 -a 0 -x {10.0 9.0 1825 ------- null} - -t 2.08341 -s 10 -d 7 -p ack -e 40 -c 0 -i 3660 -a 0 -x {10.0 9.0 1825 ------- null} h -t 2.08341 -s 10 -d 7 -p ack -e 40 -c 0 -i 3660 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.08344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3655 -a 0 -x {9.0 10.0 1832 ------- null} + -t 2.08344 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3655 -a 0 -x {9.0 10.0 1832 ------- null} h -t 2.08344 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3655 -a 0 -x {9.0 10.0 1832 ------- null} r -t 2.08384 -s 0 -d 9 -p ack -e 40 -c 0 -i 3650 -a 0 -x {10.0 9.0 1820 ------- null} + -t 2.08384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3661 -a 0 -x {9.0 10.0 1835 ------- null} - -t 2.08384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3661 -a 0 -x {9.0 10.0 1835 ------- null} h -t 2.08384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3661 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.08387 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3647 -a 0 -x {9.0 10.0 1828 ------- null} - -t 2.08387 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3647 -a 0 -x {9.0 10.0 1828 ------- null} h -t 2.08387 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3647 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.08418 -s 0 -d 9 -p ack -e 40 -c 0 -i 3654 -a 0 -x {10.0 9.0 1822 ------- null} - -t 2.08418 -s 0 -d 9 -p ack -e 40 -c 0 -i 3654 -a 0 -x {10.0 9.0 1822 ------- null} h -t 2.08418 -s 0 -d 9 -p ack -e 40 -c 0 -i 3654 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.08435 -s 10 -d 7 -p ack -e 40 -c 0 -i 3658 -a 0 -x {10.0 9.0 1824 ------- null} + -t 2.08435 -s 7 -d 0 -p ack -e 40 -c 0 -i 3658 -a 0 -x {10.0 9.0 1824 ------- null} h -t 2.08435 -s 7 -d 8 -p ack -e 40 -c 0 -i 3658 -a 0 -x {10.0 9.0 1824 ------- null} r -t 2.08443 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3657 -a 0 -x {9.0 10.0 1833 ------- null} + -t 2.08443 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3657 -a 0 -x {9.0 10.0 1833 ------- null} h -t 2.08443 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3657 -a 0 -x {9.0 10.0 1833 ------- null} r -t 2.0845 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3643 -a 0 -x {9.0 10.0 1826 ------- null} + -t 2.0845 -s 10 -d 7 -p ack -e 40 -c 0 -i 3662 -a 0 -x {10.0 9.0 1826 ------- null} - -t 2.0845 -s 10 -d 7 -p ack -e 40 -c 0 -i 3662 -a 0 -x {10.0 9.0 1826 ------- null} h -t 2.0845 -s 10 -d 7 -p ack -e 40 -c 0 -i 3662 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.08491 -s 0 -d 9 -p ack -e 40 -c 0 -i 3652 -a 0 -x {10.0 9.0 1821 ------- null} + -t 2.08491 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3663 -a 0 -x {9.0 10.0 1836 ------- null} - -t 2.08491 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3663 -a 0 -x {9.0 10.0 1836 ------- null} h -t 2.08491 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3663 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.08501 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3649 -a 0 -x {9.0 10.0 1829 ------- null} - -t 2.08501 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3649 -a 0 -x {9.0 10.0 1829 ------- null} h -t 2.08501 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3649 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.08514 -s 0 -d 9 -p ack -e 40 -c 0 -i 3656 -a 0 -x {10.0 9.0 1823 ------- null} - -t 2.08514 -s 0 -d 9 -p ack -e 40 -c 0 -i 3656 -a 0 -x {10.0 9.0 1823 ------- null} h -t 2.08514 -s 0 -d 9 -p ack -e 40 -c 0 -i 3656 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.08544 -s 10 -d 7 -p ack -e 40 -c 0 -i 3660 -a 0 -x {10.0 9.0 1825 ------- null} + -t 2.08544 -s 7 -d 0 -p ack -e 40 -c 0 -i 3660 -a 0 -x {10.0 9.0 1825 ------- null} h -t 2.08544 -s 7 -d 8 -p ack -e 40 -c 0 -i 3660 -a 0 -x {10.0 9.0 1825 ------- null} r -t 2.08558 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3645 -a 0 -x {9.0 10.0 1827 ------- null} + -t 2.08558 -s 10 -d 7 -p ack -e 40 -c 0 -i 3664 -a 0 -x {10.0 9.0 1827 ------- null} - -t 2.08558 -s 10 -d 7 -p ack -e 40 -c 0 -i 3664 -a 0 -x {10.0 9.0 1827 ------- null} h -t 2.08558 -s 10 -d 7 -p ack -e 40 -c 0 -i 3664 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.08568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3659 -a 0 -x {9.0 10.0 1834 ------- null} + -t 2.08568 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3659 -a 0 -x {9.0 10.0 1834 ------- null} h -t 2.08568 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3659 -a 0 -x {9.0 10.0 1834 ------- null} + -t 2.0861 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3651 -a 0 -x {9.0 10.0 1830 ------- null} - -t 2.0861 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3651 -a 0 -x {9.0 10.0 1830 ------- null} h -t 2.0861 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3651 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.08621 -s 0 -d 9 -p ack -e 40 -c 0 -i 3654 -a 0 -x {10.0 9.0 1822 ------- null} + -t 2.08621 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3665 -a 0 -x {9.0 10.0 1837 ------- null} - -t 2.08621 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3665 -a 0 -x {9.0 10.0 1837 ------- null} h -t 2.08621 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3665 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.08629 -s 0 -d 9 -p ack -e 40 -c 0 -i 3658 -a 0 -x {10.0 9.0 1824 ------- null} - -t 2.08629 -s 0 -d 9 -p ack -e 40 -c 0 -i 3658 -a 0 -x {10.0 9.0 1824 ------- null} h -t 2.08629 -s 0 -d 9 -p ack -e 40 -c 0 -i 3658 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.08653 -s 10 -d 7 -p ack -e 40 -c 0 -i 3662 -a 0 -x {10.0 9.0 1826 ------- null} + -t 2.08653 -s 7 -d 0 -p ack -e 40 -c 0 -i 3662 -a 0 -x {10.0 9.0 1826 ------- null} h -t 2.08653 -s 7 -d 8 -p ack -e 40 -c 0 -i 3662 -a 0 -x {10.0 9.0 1826 ------- null} r -t 2.08664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3661 -a 0 -x {9.0 10.0 1835 ------- null} + -t 2.08664 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3661 -a 0 -x {9.0 10.0 1835 ------- null} h -t 2.08664 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3661 -a 0 -x {9.0 10.0 1835 ------- null} r -t 2.08667 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3647 -a 0 -x {9.0 10.0 1828 ------- null} + -t 2.08667 -s 10 -d 7 -p ack -e 40 -c 0 -i 3666 -a 0 -x {10.0 9.0 1828 ------- null} - -t 2.08667 -s 10 -d 7 -p ack -e 40 -c 0 -i 3666 -a 0 -x {10.0 9.0 1828 ------- null} h -t 2.08667 -s 10 -d 7 -p ack -e 40 -c 0 -i 3666 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.08717 -s 0 -d 9 -p ack -e 40 -c 0 -i 3656 -a 0 -x {10.0 9.0 1823 ------- null} + -t 2.08717 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3667 -a 0 -x {9.0 10.0 1838 ------- null} - -t 2.08717 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3667 -a 0 -x {9.0 10.0 1838 ------- null} h -t 2.08717 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3667 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.08718 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3653 -a 0 -x {9.0 10.0 1831 ------- null} - -t 2.08718 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3653 -a 0 -x {9.0 10.0 1831 ------- null} h -t 2.08718 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3653 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.08742 -s 0 -d 9 -p ack -e 40 -c 0 -i 3660 -a 0 -x {10.0 9.0 1825 ------- null} - -t 2.08742 -s 0 -d 9 -p ack -e 40 -c 0 -i 3660 -a 0 -x {10.0 9.0 1825 ------- null} h -t 2.08742 -s 0 -d 9 -p ack -e 40 -c 0 -i 3660 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.08762 -s 10 -d 7 -p ack -e 40 -c 0 -i 3664 -a 0 -x {10.0 9.0 1827 ------- null} + -t 2.08762 -s 7 -d 0 -p ack -e 40 -c 0 -i 3664 -a 0 -x {10.0 9.0 1827 ------- null} h -t 2.08762 -s 7 -d 8 -p ack -e 40 -c 0 -i 3664 -a 0 -x {10.0 9.0 1827 ------- null} r -t 2.08771 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3663 -a 0 -x {9.0 10.0 1836 ------- null} + -t 2.08771 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3663 -a 0 -x {9.0 10.0 1836 ------- null} h -t 2.08771 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3663 -a 0 -x {9.0 10.0 1836 ------- null} r -t 2.08781 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3649 -a 0 -x {9.0 10.0 1829 ------- null} + -t 2.08781 -s 10 -d 7 -p ack -e 40 -c 0 -i 3668 -a 0 -x {10.0 9.0 1829 ------- null} - -t 2.08781 -s 10 -d 7 -p ack -e 40 -c 0 -i 3668 -a 0 -x {10.0 9.0 1829 ------- null} h -t 2.08781 -s 10 -d 7 -p ack -e 40 -c 0 -i 3668 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.08827 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3655 -a 0 -x {9.0 10.0 1832 ------- null} - -t 2.08827 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3655 -a 0 -x {9.0 10.0 1832 ------- null} h -t 2.08827 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3655 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.08832 -s 0 -d 9 -p ack -e 40 -c 0 -i 3658 -a 0 -x {10.0 9.0 1824 ------- null} + -t 2.08832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3669 -a 0 -x {9.0 10.0 1839 ------- null} - -t 2.08832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3669 -a 0 -x {9.0 10.0 1839 ------- null} h -t 2.08832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3669 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.08854 -s 0 -d 9 -p ack -e 40 -c 0 -i 3662 -a 0 -x {10.0 9.0 1826 ------- null} - -t 2.08854 -s 0 -d 9 -p ack -e 40 -c 0 -i 3662 -a 0 -x {10.0 9.0 1826 ------- null} h -t 2.08854 -s 0 -d 9 -p ack -e 40 -c 0 -i 3662 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.0887 -s 10 -d 7 -p ack -e 40 -c 0 -i 3666 -a 0 -x {10.0 9.0 1828 ------- null} + -t 2.0887 -s 7 -d 0 -p ack -e 40 -c 0 -i 3666 -a 0 -x {10.0 9.0 1828 ------- null} h -t 2.0887 -s 7 -d 8 -p ack -e 40 -c 0 -i 3666 -a 0 -x {10.0 9.0 1828 ------- null} r -t 2.0889 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3651 -a 0 -x {9.0 10.0 1830 ------- null} + -t 2.0889 -s 10 -d 7 -p ack -e 40 -c 0 -i 3670 -a 0 -x {10.0 9.0 1830 ------- null} - -t 2.0889 -s 10 -d 7 -p ack -e 40 -c 0 -i 3670 -a 0 -x {10.0 9.0 1830 ------- null} h -t 2.0889 -s 10 -d 7 -p ack -e 40 -c 0 -i 3670 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.08901 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3665 -a 0 -x {9.0 10.0 1837 ------- null} + -t 2.08901 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3665 -a 0 -x {9.0 10.0 1837 ------- null} h -t 2.08901 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3665 -a 0 -x {9.0 10.0 1837 ------- null} r -t 2.08946 -s 0 -d 9 -p ack -e 40 -c 0 -i 3660 -a 0 -x {10.0 9.0 1825 ------- null} + -t 2.08946 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3671 -a 0 -x {9.0 10.0 1840 ------- null} - -t 2.08946 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3671 -a 0 -x {9.0 10.0 1840 ------- null} h -t 2.08946 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3671 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.0895 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3657 -a 0 -x {9.0 10.0 1833 ------- null} - -t 2.0895 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3657 -a 0 -x {9.0 10.0 1833 ------- null} h -t 2.0895 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3657 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.08958 -s 0 -d 9 -p ack -e 40 -c 0 -i 3664 -a 0 -x {10.0 9.0 1827 ------- null} - -t 2.08958 -s 0 -d 9 -p ack -e 40 -c 0 -i 3664 -a 0 -x {10.0 9.0 1827 ------- null} h -t 2.08958 -s 0 -d 9 -p ack -e 40 -c 0 -i 3664 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.08984 -s 10 -d 7 -p ack -e 40 -c 0 -i 3668 -a 0 -x {10.0 9.0 1829 ------- null} + -t 2.08984 -s 7 -d 0 -p ack -e 40 -c 0 -i 3668 -a 0 -x {10.0 9.0 1829 ------- null} h -t 2.08984 -s 7 -d 8 -p ack -e 40 -c 0 -i 3668 -a 0 -x {10.0 9.0 1829 ------- null} r -t 2.08997 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3667 -a 0 -x {9.0 10.0 1838 ------- null} + -t 2.08997 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3667 -a 0 -x {9.0 10.0 1838 ------- null} h -t 2.08997 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3667 -a 0 -x {9.0 10.0 1838 ------- null} r -t 2.08998 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3653 -a 0 -x {9.0 10.0 1831 ------- null} + -t 2.08998 -s 10 -d 7 -p ack -e 40 -c 0 -i 3672 -a 0 -x {10.0 9.0 1831 ------- null} - -t 2.08998 -s 10 -d 7 -p ack -e 40 -c 0 -i 3672 -a 0 -x {10.0 9.0 1831 ------- null} h -t 2.08998 -s 10 -d 7 -p ack -e 40 -c 0 -i 3672 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.09058 -s 0 -d 9 -p ack -e 40 -c 0 -i 3662 -a 0 -x {10.0 9.0 1826 ------- null} + -t 2.09058 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3673 -a 0 -x {9.0 10.0 1841 ------- null} - -t 2.09058 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3673 -a 0 -x {9.0 10.0 1841 ------- null} h -t 2.09058 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3673 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.09059 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3659 -a 0 -x {9.0 10.0 1834 ------- null} - -t 2.09059 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3659 -a 0 -x {9.0 10.0 1834 ------- null} h -t 2.09059 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3659 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.09072 -s 0 -d 9 -p ack -e 40 -c 0 -i 3666 -a 0 -x {10.0 9.0 1828 ------- null} - -t 2.09072 -s 0 -d 9 -p ack -e 40 -c 0 -i 3666 -a 0 -x {10.0 9.0 1828 ------- null} h -t 2.09072 -s 0 -d 9 -p ack -e 40 -c 0 -i 3666 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.09093 -s 10 -d 7 -p ack -e 40 -c 0 -i 3670 -a 0 -x {10.0 9.0 1830 ------- null} + -t 2.09093 -s 7 -d 0 -p ack -e 40 -c 0 -i 3670 -a 0 -x {10.0 9.0 1830 ------- null} h -t 2.09093 -s 7 -d 8 -p ack -e 40 -c 0 -i 3670 -a 0 -x {10.0 9.0 1830 ------- null} r -t 2.09107 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3655 -a 0 -x {9.0 10.0 1832 ------- null} + -t 2.09107 -s 10 -d 7 -p ack -e 40 -c 0 -i 3674 -a 0 -x {10.0 9.0 1832 ------- null} - -t 2.09107 -s 10 -d 7 -p ack -e 40 -c 0 -i 3674 -a 0 -x {10.0 9.0 1832 ------- null} h -t 2.09107 -s 10 -d 7 -p ack -e 40 -c 0 -i 3674 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.09112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3669 -a 0 -x {9.0 10.0 1839 ------- null} + -t 2.09112 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3669 -a 0 -x {9.0 10.0 1839 ------- null} h -t 2.09112 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3669 -a 0 -x {9.0 10.0 1839 ------- null} r -t 2.09162 -s 0 -d 9 -p ack -e 40 -c 0 -i 3664 -a 0 -x {10.0 9.0 1827 ------- null} + -t 2.09162 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3675 -a 0 -x {9.0 10.0 1842 ------- null} - -t 2.09162 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3675 -a 0 -x {9.0 10.0 1842 ------- null} h -t 2.09162 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3675 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.09168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3661 -a 0 -x {9.0 10.0 1835 ------- null} - -t 2.09168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3661 -a 0 -x {9.0 10.0 1835 ------- null} h -t 2.09168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3661 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.09182 -s 0 -d 9 -p ack -e 40 -c 0 -i 3668 -a 0 -x {10.0 9.0 1829 ------- null} - -t 2.09182 -s 0 -d 9 -p ack -e 40 -c 0 -i 3668 -a 0 -x {10.0 9.0 1829 ------- null} h -t 2.09182 -s 0 -d 9 -p ack -e 40 -c 0 -i 3668 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.09202 -s 10 -d 7 -p ack -e 40 -c 0 -i 3672 -a 0 -x {10.0 9.0 1831 ------- null} + -t 2.09202 -s 7 -d 0 -p ack -e 40 -c 0 -i 3672 -a 0 -x {10.0 9.0 1831 ------- null} h -t 2.09202 -s 7 -d 8 -p ack -e 40 -c 0 -i 3672 -a 0 -x {10.0 9.0 1831 ------- null} r -t 2.09226 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3671 -a 0 -x {9.0 10.0 1840 ------- null} + -t 2.09226 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3671 -a 0 -x {9.0 10.0 1840 ------- null} h -t 2.09226 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3671 -a 0 -x {9.0 10.0 1840 ------- null} r -t 2.0923 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3657 -a 0 -x {9.0 10.0 1833 ------- null} + -t 2.0923 -s 10 -d 7 -p ack -e 40 -c 0 -i 3676 -a 0 -x {10.0 9.0 1833 ------- null} - -t 2.0923 -s 10 -d 7 -p ack -e 40 -c 0 -i 3676 -a 0 -x {10.0 9.0 1833 ------- null} h -t 2.0923 -s 10 -d 7 -p ack -e 40 -c 0 -i 3676 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.09275 -s 0 -d 9 -p ack -e 40 -c 0 -i 3666 -a 0 -x {10.0 9.0 1828 ------- null} + -t 2.09275 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3677 -a 0 -x {9.0 10.0 1843 ------- null} - -t 2.09275 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3677 -a 0 -x {9.0 10.0 1843 ------- null} h -t 2.09275 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3677 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.09277 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3663 -a 0 -x {9.0 10.0 1836 ------- null} - -t 2.09277 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3663 -a 0 -x {9.0 10.0 1836 ------- null} h -t 2.09277 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3663 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.09296 -s 0 -d 9 -p ack -e 40 -c 0 -i 3670 -a 0 -x {10.0 9.0 1830 ------- null} - -t 2.09296 -s 0 -d 9 -p ack -e 40 -c 0 -i 3670 -a 0 -x {10.0 9.0 1830 ------- null} h -t 2.09296 -s 0 -d 9 -p ack -e 40 -c 0 -i 3670 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.0931 -s 10 -d 7 -p ack -e 40 -c 0 -i 3674 -a 0 -x {10.0 9.0 1832 ------- null} + -t 2.0931 -s 7 -d 0 -p ack -e 40 -c 0 -i 3674 -a 0 -x {10.0 9.0 1832 ------- null} h -t 2.0931 -s 7 -d 8 -p ack -e 40 -c 0 -i 3674 -a 0 -x {10.0 9.0 1832 ------- null} r -t 2.09338 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3673 -a 0 -x {9.0 10.0 1841 ------- null} + -t 2.09338 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3673 -a 0 -x {9.0 10.0 1841 ------- null} h -t 2.09338 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3673 -a 0 -x {9.0 10.0 1841 ------- null} r -t 2.09339 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3659 -a 0 -x {9.0 10.0 1834 ------- null} + -t 2.09339 -s 10 -d 7 -p ack -e 40 -c 0 -i 3678 -a 0 -x {10.0 9.0 1834 ------- null} - -t 2.09339 -s 10 -d 7 -p ack -e 40 -c 0 -i 3678 -a 0 -x {10.0 9.0 1834 ------- null} h -t 2.09339 -s 10 -d 7 -p ack -e 40 -c 0 -i 3678 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.09386 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3665 -a 0 -x {9.0 10.0 1837 ------- null} - -t 2.09386 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3665 -a 0 -x {9.0 10.0 1837 ------- null} h -t 2.09386 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3665 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.09386 -s 0 -d 9 -p ack -e 40 -c 0 -i 3668 -a 0 -x {10.0 9.0 1829 ------- null} + -t 2.09386 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3679 -a 0 -x {9.0 10.0 1844 ------- null} - -t 2.09386 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3679 -a 0 -x {9.0 10.0 1844 ------- null} h -t 2.09386 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3679 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.09398 -s 0 -d 9 -p ack -e 40 -c 0 -i 3672 -a 0 -x {10.0 9.0 1831 ------- null} - -t 2.09398 -s 0 -d 9 -p ack -e 40 -c 0 -i 3672 -a 0 -x {10.0 9.0 1831 ------- null} h -t 2.09398 -s 0 -d 9 -p ack -e 40 -c 0 -i 3672 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.09434 -s 10 -d 7 -p ack -e 40 -c 0 -i 3676 -a 0 -x {10.0 9.0 1833 ------- null} + -t 2.09434 -s 7 -d 0 -p ack -e 40 -c 0 -i 3676 -a 0 -x {10.0 9.0 1833 ------- null} h -t 2.09434 -s 7 -d 8 -p ack -e 40 -c 0 -i 3676 -a 0 -x {10.0 9.0 1833 ------- null} r -t 2.09442 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3675 -a 0 -x {9.0 10.0 1842 ------- null} + -t 2.09442 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3675 -a 0 -x {9.0 10.0 1842 ------- null} h -t 2.09442 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3675 -a 0 -x {9.0 10.0 1842 ------- null} r -t 2.09448 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3661 -a 0 -x {9.0 10.0 1835 ------- null} + -t 2.09448 -s 10 -d 7 -p ack -e 40 -c 0 -i 3680 -a 0 -x {10.0 9.0 1835 ------- null} - -t 2.09448 -s 10 -d 7 -p ack -e 40 -c 0 -i 3680 -a 0 -x {10.0 9.0 1835 ------- null} h -t 2.09448 -s 10 -d 7 -p ack -e 40 -c 0 -i 3680 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.09494 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3667 -a 0 -x {9.0 10.0 1838 ------- null} - -t 2.09494 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3667 -a 0 -x {9.0 10.0 1838 ------- null} h -t 2.09494 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3667 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.09499 -s 0 -d 9 -p ack -e 40 -c 0 -i 3670 -a 0 -x {10.0 9.0 1830 ------- null} + -t 2.09499 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3681 -a 0 -x {9.0 10.0 1845 ------- null} - -t 2.09499 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3681 -a 0 -x {9.0 10.0 1845 ------- null} h -t 2.09499 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3681 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.09515 -s 0 -d 9 -p ack -e 40 -c 0 -i 3674 -a 0 -x {10.0 9.0 1832 ------- null} - -t 2.09515 -s 0 -d 9 -p ack -e 40 -c 0 -i 3674 -a 0 -x {10.0 9.0 1832 ------- null} h -t 2.09515 -s 0 -d 9 -p ack -e 40 -c 0 -i 3674 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.09542 -s 10 -d 7 -p ack -e 40 -c 0 -i 3678 -a 0 -x {10.0 9.0 1834 ------- null} + -t 2.09542 -s 7 -d 0 -p ack -e 40 -c 0 -i 3678 -a 0 -x {10.0 9.0 1834 ------- null} h -t 2.09542 -s 7 -d 8 -p ack -e 40 -c 0 -i 3678 -a 0 -x {10.0 9.0 1834 ------- null} r -t 2.09555 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3677 -a 0 -x {9.0 10.0 1843 ------- null} + -t 2.09555 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3677 -a 0 -x {9.0 10.0 1843 ------- null} h -t 2.09555 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3677 -a 0 -x {9.0 10.0 1843 ------- null} r -t 2.09557 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3663 -a 0 -x {9.0 10.0 1836 ------- null} + -t 2.09557 -s 10 -d 7 -p ack -e 40 -c 0 -i 3682 -a 0 -x {10.0 9.0 1836 ------- null} - -t 2.09557 -s 10 -d 7 -p ack -e 40 -c 0 -i 3682 -a 0 -x {10.0 9.0 1836 ------- null} h -t 2.09557 -s 10 -d 7 -p ack -e 40 -c 0 -i 3682 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.09602 -s 0 -d 9 -p ack -e 40 -c 0 -i 3672 -a 0 -x {10.0 9.0 1831 ------- null} + -t 2.09602 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3683 -a 0 -x {9.0 10.0 1846 ------- null} - -t 2.09602 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3683 -a 0 -x {9.0 10.0 1846 ------- null} h -t 2.09602 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3683 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.09603 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3669 -a 0 -x {9.0 10.0 1839 ------- null} - -t 2.09603 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3669 -a 0 -x {9.0 10.0 1839 ------- null} h -t 2.09603 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3669 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.0963 -s 0 -d 9 -p ack -e 40 -c 0 -i 3676 -a 0 -x {10.0 9.0 1833 ------- null} - -t 2.0963 -s 0 -d 9 -p ack -e 40 -c 0 -i 3676 -a 0 -x {10.0 9.0 1833 ------- null} h -t 2.0963 -s 0 -d 9 -p ack -e 40 -c 0 -i 3676 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.09651 -s 10 -d 7 -p ack -e 40 -c 0 -i 3680 -a 0 -x {10.0 9.0 1835 ------- null} + -t 2.09651 -s 7 -d 0 -p ack -e 40 -c 0 -i 3680 -a 0 -x {10.0 9.0 1835 ------- null} h -t 2.09651 -s 7 -d 8 -p ack -e 40 -c 0 -i 3680 -a 0 -x {10.0 9.0 1835 ------- null} r -t 2.09666 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3665 -a 0 -x {9.0 10.0 1837 ------- null} + -t 2.09666 -s 10 -d 7 -p ack -e 40 -c 0 -i 3684 -a 0 -x {10.0 9.0 1837 ------- null} - -t 2.09666 -s 10 -d 7 -p ack -e 40 -c 0 -i 3684 -a 0 -x {10.0 9.0 1837 ------- null} h -t 2.09666 -s 10 -d 7 -p ack -e 40 -c 0 -i 3684 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.09666 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3679 -a 0 -x {9.0 10.0 1844 ------- null} + -t 2.09666 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3679 -a 0 -x {9.0 10.0 1844 ------- null} h -t 2.09666 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3679 -a 0 -x {9.0 10.0 1844 ------- null} r -t 2.09718 -s 0 -d 9 -p ack -e 40 -c 0 -i 3674 -a 0 -x {10.0 9.0 1832 ------- null} + -t 2.09718 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3685 -a 0 -x {9.0 10.0 1847 ------- null} - -t 2.09718 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3685 -a 0 -x {9.0 10.0 1847 ------- null} h -t 2.09718 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3685 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.09731 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3671 -a 0 -x {9.0 10.0 1840 ------- null} - -t 2.09731 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3671 -a 0 -x {9.0 10.0 1840 ------- null} h -t 2.09731 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3671 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.0976 -s 0 -d 9 -p ack -e 40 -c 0 -i 3678 -a 0 -x {10.0 9.0 1834 ------- null} - -t 2.0976 -s 0 -d 9 -p ack -e 40 -c 0 -i 3678 -a 0 -x {10.0 9.0 1834 ------- null} h -t 2.0976 -s 0 -d 9 -p ack -e 40 -c 0 -i 3678 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.0976 -s 10 -d 7 -p ack -e 40 -c 0 -i 3682 -a 0 -x {10.0 9.0 1836 ------- null} + -t 2.0976 -s 7 -d 0 -p ack -e 40 -c 0 -i 3682 -a 0 -x {10.0 9.0 1836 ------- null} h -t 2.0976 -s 7 -d 8 -p ack -e 40 -c 0 -i 3682 -a 0 -x {10.0 9.0 1836 ------- null} r -t 2.09774 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3667 -a 0 -x {9.0 10.0 1838 ------- null} + -t 2.09774 -s 10 -d 7 -p ack -e 40 -c 0 -i 3686 -a 0 -x {10.0 9.0 1838 ------- null} - -t 2.09774 -s 10 -d 7 -p ack -e 40 -c 0 -i 3686 -a 0 -x {10.0 9.0 1838 ------- null} h -t 2.09774 -s 10 -d 7 -p ack -e 40 -c 0 -i 3686 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.09779 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3681 -a 0 -x {9.0 10.0 1845 ------- null} + -t 2.09779 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3681 -a 0 -x {9.0 10.0 1845 ------- null} h -t 2.09779 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3681 -a 0 -x {9.0 10.0 1845 ------- null} r -t 2.09834 -s 0 -d 9 -p ack -e 40 -c 0 -i 3676 -a 0 -x {10.0 9.0 1833 ------- null} + -t 2.09834 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3687 -a 0 -x {9.0 10.0 1848 ------- null} - -t 2.09834 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3687 -a 0 -x {9.0 10.0 1848 ------- null} h -t 2.09834 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3687 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.09846 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3673 -a 0 -x {9.0 10.0 1841 ------- null} - -t 2.09846 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3673 -a 0 -x {9.0 10.0 1841 ------- null} h -t 2.09846 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3673 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.09856 -s 0 -d 9 -p ack -e 40 -c 0 -i 3680 -a 0 -x {10.0 9.0 1835 ------- null} - -t 2.09856 -s 0 -d 9 -p ack -e 40 -c 0 -i 3680 -a 0 -x {10.0 9.0 1835 ------- null} h -t 2.09856 -s 0 -d 9 -p ack -e 40 -c 0 -i 3680 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.09869 -s 10 -d 7 -p ack -e 40 -c 0 -i 3684 -a 0 -x {10.0 9.0 1837 ------- null} + -t 2.09869 -s 7 -d 0 -p ack -e 40 -c 0 -i 3684 -a 0 -x {10.0 9.0 1837 ------- null} h -t 2.09869 -s 7 -d 8 -p ack -e 40 -c 0 -i 3684 -a 0 -x {10.0 9.0 1837 ------- null} r -t 2.09882 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3683 -a 0 -x {9.0 10.0 1846 ------- null} + -t 2.09882 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3683 -a 0 -x {9.0 10.0 1846 ------- null} h -t 2.09882 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3683 -a 0 -x {9.0 10.0 1846 ------- null} r -t 2.09883 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3669 -a 0 -x {9.0 10.0 1839 ------- null} + -t 2.09883 -s 10 -d 7 -p ack -e 40 -c 0 -i 3688 -a 0 -x {10.0 9.0 1839 ------- null} - -t 2.09883 -s 10 -d 7 -p ack -e 40 -c 0 -i 3688 -a 0 -x {10.0 9.0 1839 ------- null} h -t 2.09883 -s 10 -d 7 -p ack -e 40 -c 0 -i 3688 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.09955 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3675 -a 0 -x {9.0 10.0 1842 ------- null} - -t 2.09955 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3675 -a 0 -x {9.0 10.0 1842 ------- null} h -t 2.09955 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3675 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.09963 -s 0 -d 9 -p ack -e 40 -c 0 -i 3678 -a 0 -x {10.0 9.0 1834 ------- null} + -t 2.09963 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3689 -a 0 -x {9.0 10.0 1849 ------- null} - -t 2.09963 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3689 -a 0 -x {9.0 10.0 1849 ------- null} h -t 2.09963 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3689 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.09978 -s 10 -d 7 -p ack -e 40 -c 0 -i 3686 -a 0 -x {10.0 9.0 1838 ------- null} + -t 2.09978 -s 7 -d 0 -p ack -e 40 -c 0 -i 3686 -a 0 -x {10.0 9.0 1838 ------- null} h -t 2.09978 -s 7 -d 8 -p ack -e 40 -c 0 -i 3686 -a 0 -x {10.0 9.0 1838 ------- null} + -t 2.09984 -s 0 -d 9 -p ack -e 40 -c 0 -i 3682 -a 0 -x {10.0 9.0 1836 ------- null} - -t 2.09984 -s 0 -d 9 -p ack -e 40 -c 0 -i 3682 -a 0 -x {10.0 9.0 1836 ------- null} h -t 2.09984 -s 0 -d 9 -p ack -e 40 -c 0 -i 3682 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.09998 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3685 -a 0 -x {9.0 10.0 1847 ------- null} + -t 2.09998 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3685 -a 0 -x {9.0 10.0 1847 ------- null} h -t 2.09998 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3685 -a 0 -x {9.0 10.0 1847 ------- null} r -t 2.10011 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3671 -a 0 -x {9.0 10.0 1840 ------- null} + -t 2.10011 -s 10 -d 7 -p ack -e 40 -c 0 -i 3690 -a 0 -x {10.0 9.0 1840 ------- null} - -t 2.10011 -s 10 -d 7 -p ack -e 40 -c 0 -i 3690 -a 0 -x {10.0 9.0 1840 ------- null} h -t 2.10011 -s 10 -d 7 -p ack -e 40 -c 0 -i 3690 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.10059 -s 0 -d 9 -p ack -e 40 -c 0 -i 3680 -a 0 -x {10.0 9.0 1835 ------- null} + -t 2.10059 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3691 -a 0 -x {9.0 10.0 1850 ------- null} - -t 2.10059 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3691 -a 0 -x {9.0 10.0 1850 ------- null} h -t 2.10059 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3691 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.10074 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3677 -a 0 -x {9.0 10.0 1843 ------- null} - -t 2.10074 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3677 -a 0 -x {9.0 10.0 1843 ------- null} h -t 2.10074 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3677 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.10085 -s 0 -d 9 -p ack -e 40 -c 0 -i 3684 -a 0 -x {10.0 9.0 1837 ------- null} - -t 2.10085 -s 0 -d 9 -p ack -e 40 -c 0 -i 3684 -a 0 -x {10.0 9.0 1837 ------- null} h -t 2.10085 -s 0 -d 9 -p ack -e 40 -c 0 -i 3684 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.10086 -s 10 -d 7 -p ack -e 40 -c 0 -i 3688 -a 0 -x {10.0 9.0 1839 ------- null} + -t 2.10086 -s 7 -d 0 -p ack -e 40 -c 0 -i 3688 -a 0 -x {10.0 9.0 1839 ------- null} h -t 2.10086 -s 7 -d 8 -p ack -e 40 -c 0 -i 3688 -a 0 -x {10.0 9.0 1839 ------- null} r -t 2.10114 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3687 -a 0 -x {9.0 10.0 1848 ------- null} + -t 2.10114 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3687 -a 0 -x {9.0 10.0 1848 ------- null} h -t 2.10114 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3687 -a 0 -x {9.0 10.0 1848 ------- null} r -t 2.10126 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3673 -a 0 -x {9.0 10.0 1841 ------- null} + -t 2.10126 -s 10 -d 7 -p ack -e 40 -c 0 -i 3692 -a 0 -x {10.0 9.0 1841 ------- null} - -t 2.10126 -s 10 -d 7 -p ack -e 40 -c 0 -i 3692 -a 0 -x {10.0 9.0 1841 ------- null} h -t 2.10126 -s 10 -d 7 -p ack -e 40 -c 0 -i 3692 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.10182 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3679 -a 0 -x {9.0 10.0 1844 ------- null} - -t 2.10182 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3679 -a 0 -x {9.0 10.0 1844 ------- null} h -t 2.10182 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3679 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.10187 -s 0 -d 9 -p ack -e 40 -c 0 -i 3682 -a 0 -x {10.0 9.0 1836 ------- null} + -t 2.10187 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3693 -a 0 -x {9.0 10.0 1851 ------- null} - -t 2.10187 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3693 -a 0 -x {9.0 10.0 1851 ------- null} h -t 2.10187 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3693 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.1021 -s 0 -d 9 -p ack -e 40 -c 0 -i 3686 -a 0 -x {10.0 9.0 1838 ------- null} - -t 2.1021 -s 0 -d 9 -p ack -e 40 -c 0 -i 3686 -a 0 -x {10.0 9.0 1838 ------- null} h -t 2.1021 -s 0 -d 9 -p ack -e 40 -c 0 -i 3686 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.10214 -s 10 -d 7 -p ack -e 40 -c 0 -i 3690 -a 0 -x {10.0 9.0 1840 ------- null} + -t 2.10214 -s 7 -d 0 -p ack -e 40 -c 0 -i 3690 -a 0 -x {10.0 9.0 1840 ------- null} h -t 2.10214 -s 7 -d 8 -p ack -e 40 -c 0 -i 3690 -a 0 -x {10.0 9.0 1840 ------- null} r -t 2.10235 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3675 -a 0 -x {9.0 10.0 1842 ------- null} + -t 2.10235 -s 10 -d 7 -p ack -e 40 -c 0 -i 3694 -a 0 -x {10.0 9.0 1842 ------- null} - -t 2.10235 -s 10 -d 7 -p ack -e 40 -c 0 -i 3694 -a 0 -x {10.0 9.0 1842 ------- null} h -t 2.10235 -s 10 -d 7 -p ack -e 40 -c 0 -i 3694 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.10243 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3689 -a 0 -x {9.0 10.0 1849 ------- null} + -t 2.10243 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3689 -a 0 -x {9.0 10.0 1849 ------- null} h -t 2.10243 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3689 -a 0 -x {9.0 10.0 1849 ------- null} r -t 2.10288 -s 0 -d 9 -p ack -e 40 -c 0 -i 3684 -a 0 -x {10.0 9.0 1837 ------- null} + -t 2.10288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3695 -a 0 -x {9.0 10.0 1852 ------- null} - -t 2.10288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3695 -a 0 -x {9.0 10.0 1852 ------- null} h -t 2.10288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3695 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.10294 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3681 -a 0 -x {9.0 10.0 1845 ------- null} - -t 2.10294 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3681 -a 0 -x {9.0 10.0 1845 ------- null} h -t 2.10294 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3681 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.10314 -s 0 -d 9 -p ack -e 40 -c 0 -i 3688 -a 0 -x {10.0 9.0 1839 ------- null} - -t 2.10314 -s 0 -d 9 -p ack -e 40 -c 0 -i 3688 -a 0 -x {10.0 9.0 1839 ------- null} h -t 2.10314 -s 0 -d 9 -p ack -e 40 -c 0 -i 3688 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.1033 -s 10 -d 7 -p ack -e 40 -c 0 -i 3692 -a 0 -x {10.0 9.0 1841 ------- null} + -t 2.1033 -s 7 -d 0 -p ack -e 40 -c 0 -i 3692 -a 0 -x {10.0 9.0 1841 ------- null} h -t 2.1033 -s 7 -d 8 -p ack -e 40 -c 0 -i 3692 -a 0 -x {10.0 9.0 1841 ------- null} r -t 2.10339 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3691 -a 0 -x {9.0 10.0 1850 ------- null} + -t 2.10339 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3691 -a 0 -x {9.0 10.0 1850 ------- null} h -t 2.10339 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3691 -a 0 -x {9.0 10.0 1850 ------- null} r -t 2.10354 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3677 -a 0 -x {9.0 10.0 1843 ------- null} + -t 2.10354 -s 10 -d 7 -p ack -e 40 -c 0 -i 3696 -a 0 -x {10.0 9.0 1843 ------- null} - -t 2.10354 -s 10 -d 7 -p ack -e 40 -c 0 -i 3696 -a 0 -x {10.0 9.0 1843 ------- null} h -t 2.10354 -s 10 -d 7 -p ack -e 40 -c 0 -i 3696 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.10403 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3683 -a 0 -x {9.0 10.0 1846 ------- null} - -t 2.10403 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3683 -a 0 -x {9.0 10.0 1846 ------- null} h -t 2.10403 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3683 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.10413 -s 0 -d 9 -p ack -e 40 -c 0 -i 3686 -a 0 -x {10.0 9.0 1838 ------- null} + -t 2.10413 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3697 -a 0 -x {9.0 10.0 1853 ------- null} - -t 2.10413 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3697 -a 0 -x {9.0 10.0 1853 ------- null} h -t 2.10413 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3697 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.10421 -s 0 -d 9 -p ack -e 40 -c 0 -i 3690 -a 0 -x {10.0 9.0 1840 ------- null} - -t 2.10421 -s 0 -d 9 -p ack -e 40 -c 0 -i 3690 -a 0 -x {10.0 9.0 1840 ------- null} h -t 2.10421 -s 0 -d 9 -p ack -e 40 -c 0 -i 3690 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.10438 -s 10 -d 7 -p ack -e 40 -c 0 -i 3694 -a 0 -x {10.0 9.0 1842 ------- null} + -t 2.10438 -s 7 -d 0 -p ack -e 40 -c 0 -i 3694 -a 0 -x {10.0 9.0 1842 ------- null} h -t 2.10438 -s 7 -d 8 -p ack -e 40 -c 0 -i 3694 -a 0 -x {10.0 9.0 1842 ------- null} r -t 2.10462 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3679 -a 0 -x {9.0 10.0 1844 ------- null} + -t 2.10462 -s 10 -d 7 -p ack -e 40 -c 0 -i 3698 -a 0 -x {10.0 9.0 1844 ------- null} - -t 2.10462 -s 10 -d 7 -p ack -e 40 -c 0 -i 3698 -a 0 -x {10.0 9.0 1844 ------- null} h -t 2.10462 -s 10 -d 7 -p ack -e 40 -c 0 -i 3698 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.10467 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3693 -a 0 -x {9.0 10.0 1851 ------- null} + -t 2.10467 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3693 -a 0 -x {9.0 10.0 1851 ------- null} h -t 2.10467 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3693 -a 0 -x {9.0 10.0 1851 ------- null} + -t 2.10512 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3685 -a 0 -x {9.0 10.0 1847 ------- null} - -t 2.10512 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3685 -a 0 -x {9.0 10.0 1847 ------- null} h -t 2.10512 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3685 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.10517 -s 0 -d 9 -p ack -e 40 -c 0 -i 3688 -a 0 -x {10.0 9.0 1839 ------- null} + -t 2.10517 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3699 -a 0 -x {9.0 10.0 1854 ------- null} - -t 2.10517 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3699 -a 0 -x {9.0 10.0 1854 ------- null} h -t 2.10517 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3699 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.10531 -s 0 -d 9 -p ack -e 40 -c 0 -i 3692 -a 0 -x {10.0 9.0 1841 ------- null} - -t 2.10531 -s 0 -d 9 -p ack -e 40 -c 0 -i 3692 -a 0 -x {10.0 9.0 1841 ------- null} h -t 2.10531 -s 0 -d 9 -p ack -e 40 -c 0 -i 3692 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.10557 -s 10 -d 7 -p ack -e 40 -c 0 -i 3696 -a 0 -x {10.0 9.0 1843 ------- null} + -t 2.10557 -s 7 -d 0 -p ack -e 40 -c 0 -i 3696 -a 0 -x {10.0 9.0 1843 ------- null} h -t 2.10557 -s 7 -d 8 -p ack -e 40 -c 0 -i 3696 -a 0 -x {10.0 9.0 1843 ------- null} r -t 2.10568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3695 -a 0 -x {9.0 10.0 1852 ------- null} + -t 2.10568 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3695 -a 0 -x {9.0 10.0 1852 ------- null} h -t 2.10568 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3695 -a 0 -x {9.0 10.0 1852 ------- null} r -t 2.10574 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3681 -a 0 -x {9.0 10.0 1845 ------- null} + -t 2.10574 -s 10 -d 7 -p ack -e 40 -c 0 -i 3700 -a 0 -x {10.0 9.0 1845 ------- null} - -t 2.10574 -s 10 -d 7 -p ack -e 40 -c 0 -i 3700 -a 0 -x {10.0 9.0 1845 ------- null} h -t 2.10574 -s 10 -d 7 -p ack -e 40 -c 0 -i 3700 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.10621 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3687 -a 0 -x {9.0 10.0 1848 ------- null} - -t 2.10621 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3687 -a 0 -x {9.0 10.0 1848 ------- null} h -t 2.10621 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3687 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.10624 -s 0 -d 9 -p ack -e 40 -c 0 -i 3690 -a 0 -x {10.0 9.0 1840 ------- null} + -t 2.10624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3701 -a 0 -x {9.0 10.0 1855 ------- null} - -t 2.10624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3701 -a 0 -x {9.0 10.0 1855 ------- null} h -t 2.10624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3701 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.1063 -s 0 -d 9 -p ack -e 40 -c 0 -i 3694 -a 0 -x {10.0 9.0 1842 ------- null} - -t 2.1063 -s 0 -d 9 -p ack -e 40 -c 0 -i 3694 -a 0 -x {10.0 9.0 1842 ------- null} h -t 2.1063 -s 0 -d 9 -p ack -e 40 -c 0 -i 3694 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.10666 -s 10 -d 7 -p ack -e 40 -c 0 -i 3698 -a 0 -x {10.0 9.0 1844 ------- null} + -t 2.10666 -s 7 -d 0 -p ack -e 40 -c 0 -i 3698 -a 0 -x {10.0 9.0 1844 ------- null} h -t 2.10666 -s 7 -d 8 -p ack -e 40 -c 0 -i 3698 -a 0 -x {10.0 9.0 1844 ------- null} r -t 2.10683 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3683 -a 0 -x {9.0 10.0 1846 ------- null} + -t 2.10683 -s 10 -d 7 -p ack -e 40 -c 0 -i 3702 -a 0 -x {10.0 9.0 1846 ------- null} - -t 2.10683 -s 10 -d 7 -p ack -e 40 -c 0 -i 3702 -a 0 -x {10.0 9.0 1846 ------- null} h -t 2.10683 -s 10 -d 7 -p ack -e 40 -c 0 -i 3702 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.10693 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3697 -a 0 -x {9.0 10.0 1853 ------- null} + -t 2.10693 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3697 -a 0 -x {9.0 10.0 1853 ------- null} h -t 2.10693 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3697 -a 0 -x {9.0 10.0 1853 ------- null} + -t 2.1073 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3689 -a 0 -x {9.0 10.0 1849 ------- null} - -t 2.1073 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3689 -a 0 -x {9.0 10.0 1849 ------- null} h -t 2.1073 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3689 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.10734 -s 0 -d 9 -p ack -e 40 -c 0 -i 3692 -a 0 -x {10.0 9.0 1841 ------- null} + -t 2.10734 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3703 -a 0 -x {9.0 10.0 1856 ------- null} - -t 2.10734 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3703 -a 0 -x {9.0 10.0 1856 ------- null} h -t 2.10734 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3703 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.10736 -s 0 -d 9 -p ack -e 40 -c 0 -i 3696 -a 0 -x {10.0 9.0 1843 ------- null} - -t 2.10736 -s 0 -d 9 -p ack -e 40 -c 0 -i 3696 -a 0 -x {10.0 9.0 1843 ------- null} h -t 2.10736 -s 0 -d 9 -p ack -e 40 -c 0 -i 3696 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.10778 -s 10 -d 7 -p ack -e 40 -c 0 -i 3700 -a 0 -x {10.0 9.0 1845 ------- null} + -t 2.10778 -s 7 -d 0 -p ack -e 40 -c 0 -i 3700 -a 0 -x {10.0 9.0 1845 ------- null} h -t 2.10778 -s 7 -d 8 -p ack -e 40 -c 0 -i 3700 -a 0 -x {10.0 9.0 1845 ------- null} r -t 2.10792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3685 -a 0 -x {9.0 10.0 1847 ------- null} + -t 2.10792 -s 10 -d 7 -p ack -e 40 -c 0 -i 3704 -a 0 -x {10.0 9.0 1847 ------- null} - -t 2.10792 -s 10 -d 7 -p ack -e 40 -c 0 -i 3704 -a 0 -x {10.0 9.0 1847 ------- null} h -t 2.10792 -s 10 -d 7 -p ack -e 40 -c 0 -i 3704 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.10797 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3699 -a 0 -x {9.0 10.0 1854 ------- null} + -t 2.10797 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3699 -a 0 -x {9.0 10.0 1854 ------- null} h -t 2.10797 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3699 -a 0 -x {9.0 10.0 1854 ------- null} r -t 2.10834 -s 0 -d 9 -p ack -e 40 -c 0 -i 3694 -a 0 -x {10.0 9.0 1842 ------- null} + -t 2.10834 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3705 -a 0 -x {9.0 10.0 1857 ------- null} - -t 2.10834 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3705 -a 0 -x {9.0 10.0 1857 ------- null} h -t 2.10834 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3705 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.10838 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3691 -a 0 -x {9.0 10.0 1850 ------- null} - -t 2.10838 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3691 -a 0 -x {9.0 10.0 1850 ------- null} h -t 2.10838 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3691 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.10846 -s 0 -d 9 -p ack -e 40 -c 0 -i 3698 -a 0 -x {10.0 9.0 1844 ------- null} - -t 2.10846 -s 0 -d 9 -p ack -e 40 -c 0 -i 3698 -a 0 -x {10.0 9.0 1844 ------- null} h -t 2.10846 -s 0 -d 9 -p ack -e 40 -c 0 -i 3698 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.10886 -s 10 -d 7 -p ack -e 40 -c 0 -i 3702 -a 0 -x {10.0 9.0 1846 ------- null} + -t 2.10886 -s 7 -d 0 -p ack -e 40 -c 0 -i 3702 -a 0 -x {10.0 9.0 1846 ------- null} h -t 2.10886 -s 7 -d 8 -p ack -e 40 -c 0 -i 3702 -a 0 -x {10.0 9.0 1846 ------- null} r -t 2.10901 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3687 -a 0 -x {9.0 10.0 1848 ------- null} + -t 2.10901 -s 10 -d 7 -p ack -e 40 -c 0 -i 3706 -a 0 -x {10.0 9.0 1848 ------- null} - -t 2.10901 -s 10 -d 7 -p ack -e 40 -c 0 -i 3706 -a 0 -x {10.0 9.0 1848 ------- null} h -t 2.10901 -s 10 -d 7 -p ack -e 40 -c 0 -i 3706 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.10904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3701 -a 0 -x {9.0 10.0 1855 ------- null} + -t 2.10904 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3701 -a 0 -x {9.0 10.0 1855 ------- null} h -t 2.10904 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3701 -a 0 -x {9.0 10.0 1855 ------- null} r -t 2.10939 -s 0 -d 9 -p ack -e 40 -c 0 -i 3696 -a 0 -x {10.0 9.0 1843 ------- null} + -t 2.10939 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3707 -a 0 -x {9.0 10.0 1858 ------- null} - -t 2.10939 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3707 -a 0 -x {9.0 10.0 1858 ------- null} h -t 2.10939 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3707 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.10947 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3693 -a 0 -x {9.0 10.0 1851 ------- null} - -t 2.10947 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3693 -a 0 -x {9.0 10.0 1851 ------- null} h -t 2.10947 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3693 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.10968 -s 0 -d 9 -p ack -e 40 -c 0 -i 3700 -a 0 -x {10.0 9.0 1845 ------- null} - -t 2.10968 -s 0 -d 9 -p ack -e 40 -c 0 -i 3700 -a 0 -x {10.0 9.0 1845 ------- null} h -t 2.10968 -s 0 -d 9 -p ack -e 40 -c 0 -i 3700 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.10995 -s 10 -d 7 -p ack -e 40 -c 0 -i 3704 -a 0 -x {10.0 9.0 1847 ------- null} + -t 2.10995 -s 7 -d 0 -p ack -e 40 -c 0 -i 3704 -a 0 -x {10.0 9.0 1847 ------- null} h -t 2.10995 -s 7 -d 8 -p ack -e 40 -c 0 -i 3704 -a 0 -x {10.0 9.0 1847 ------- null} r -t 2.1101 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3689 -a 0 -x {9.0 10.0 1849 ------- null} + -t 2.1101 -s 10 -d 7 -p ack -e 40 -c 0 -i 3708 -a 0 -x {10.0 9.0 1849 ------- null} - -t 2.1101 -s 10 -d 7 -p ack -e 40 -c 0 -i 3708 -a 0 -x {10.0 9.0 1849 ------- null} h -t 2.1101 -s 10 -d 7 -p ack -e 40 -c 0 -i 3708 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.11014 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3703 -a 0 -x {9.0 10.0 1856 ------- null} + -t 2.11014 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3703 -a 0 -x {9.0 10.0 1856 ------- null} h -t 2.11014 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3703 -a 0 -x {9.0 10.0 1856 ------- null} r -t 2.1105 -s 0 -d 9 -p ack -e 40 -c 0 -i 3698 -a 0 -x {10.0 9.0 1844 ------- null} + -t 2.1105 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3709 -a 0 -x {9.0 10.0 1859 ------- null} - -t 2.1105 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3709 -a 0 -x {9.0 10.0 1859 ------- null} h -t 2.1105 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3709 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.11056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3695 -a 0 -x {9.0 10.0 1852 ------- null} - -t 2.11056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3695 -a 0 -x {9.0 10.0 1852 ------- null} h -t 2.11056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3695 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.11083 -s 0 -d 9 -p ack -e 40 -c 0 -i 3702 -a 0 -x {10.0 9.0 1846 ------- null} - -t 2.11083 -s 0 -d 9 -p ack -e 40 -c 0 -i 3702 -a 0 -x {10.0 9.0 1846 ------- null} h -t 2.11083 -s 0 -d 9 -p ack -e 40 -c 0 -i 3702 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.11104 -s 10 -d 7 -p ack -e 40 -c 0 -i 3706 -a 0 -x {10.0 9.0 1848 ------- null} + -t 2.11104 -s 7 -d 0 -p ack -e 40 -c 0 -i 3706 -a 0 -x {10.0 9.0 1848 ------- null} h -t 2.11104 -s 7 -d 8 -p ack -e 40 -c 0 -i 3706 -a 0 -x {10.0 9.0 1848 ------- null} r -t 2.11114 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3705 -a 0 -x {9.0 10.0 1857 ------- null} + -t 2.11114 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3705 -a 0 -x {9.0 10.0 1857 ------- null} h -t 2.11114 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3705 -a 0 -x {9.0 10.0 1857 ------- null} r -t 2.11118 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3691 -a 0 -x {9.0 10.0 1850 ------- null} + -t 2.11118 -s 10 -d 7 -p ack -e 40 -c 0 -i 3710 -a 0 -x {10.0 9.0 1850 ------- null} - -t 2.11118 -s 10 -d 7 -p ack -e 40 -c 0 -i 3710 -a 0 -x {10.0 9.0 1850 ------- null} h -t 2.11118 -s 10 -d 7 -p ack -e 40 -c 0 -i 3710 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.11171 -s 0 -d 9 -p ack -e 40 -c 0 -i 3700 -a 0 -x {10.0 9.0 1845 ------- null} + -t 2.11171 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3711 -a 0 -x {9.0 10.0 1860 ------- null} - -t 2.11171 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3711 -a 0 -x {9.0 10.0 1860 ------- null} h -t 2.11171 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3711 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.11171 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3697 -a 0 -x {9.0 10.0 1853 ------- null} - -t 2.11171 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3697 -a 0 -x {9.0 10.0 1853 ------- null} h -t 2.11171 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3697 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.11178 -s 0 -d 9 -p ack -e 40 -c 0 -i 3704 -a 0 -x {10.0 9.0 1847 ------- null} - -t 2.11178 -s 0 -d 9 -p ack -e 40 -c 0 -i 3704 -a 0 -x {10.0 9.0 1847 ------- null} h -t 2.11178 -s 0 -d 9 -p ack -e 40 -c 0 -i 3704 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.11213 -s 10 -d 7 -p ack -e 40 -c 0 -i 3708 -a 0 -x {10.0 9.0 1849 ------- null} + -t 2.11213 -s 7 -d 0 -p ack -e 40 -c 0 -i 3708 -a 0 -x {10.0 9.0 1849 ------- null} h -t 2.11213 -s 7 -d 8 -p ack -e 40 -c 0 -i 3708 -a 0 -x {10.0 9.0 1849 ------- null} r -t 2.11219 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3707 -a 0 -x {9.0 10.0 1858 ------- null} + -t 2.11219 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3707 -a 0 -x {9.0 10.0 1858 ------- null} h -t 2.11219 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3707 -a 0 -x {9.0 10.0 1858 ------- null} r -t 2.11227 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3693 -a 0 -x {9.0 10.0 1851 ------- null} + -t 2.11227 -s 10 -d 7 -p ack -e 40 -c 0 -i 3712 -a 0 -x {10.0 9.0 1851 ------- null} - -t 2.11227 -s 10 -d 7 -p ack -e 40 -c 0 -i 3712 -a 0 -x {10.0 9.0 1851 ------- null} h -t 2.11227 -s 10 -d 7 -p ack -e 40 -c 0 -i 3712 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.1128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3699 -a 0 -x {9.0 10.0 1854 ------- null} - -t 2.1128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3699 -a 0 -x {9.0 10.0 1854 ------- null} h -t 2.1128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3699 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.11286 -s 0 -d 9 -p ack -e 40 -c 0 -i 3702 -a 0 -x {10.0 9.0 1846 ------- null} + -t 2.11286 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3713 -a 0 -x {9.0 10.0 1861 ------- null} - -t 2.11286 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3713 -a 0 -x {9.0 10.0 1861 ------- null} h -t 2.11286 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3713 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.1129 -s 0 -d 9 -p ack -e 40 -c 0 -i 3706 -a 0 -x {10.0 9.0 1848 ------- null} - -t 2.1129 -s 0 -d 9 -p ack -e 40 -c 0 -i 3706 -a 0 -x {10.0 9.0 1848 ------- null} h -t 2.1129 -s 0 -d 9 -p ack -e 40 -c 0 -i 3706 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.11322 -s 10 -d 7 -p ack -e 40 -c 0 -i 3710 -a 0 -x {10.0 9.0 1850 ------- null} + -t 2.11322 -s 7 -d 0 -p ack -e 40 -c 0 -i 3710 -a 0 -x {10.0 9.0 1850 ------- null} h -t 2.11322 -s 7 -d 8 -p ack -e 40 -c 0 -i 3710 -a 0 -x {10.0 9.0 1850 ------- null} r -t 2.1133 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3709 -a 0 -x {9.0 10.0 1859 ------- null} + -t 2.1133 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3709 -a 0 -x {9.0 10.0 1859 ------- null} h -t 2.1133 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3709 -a 0 -x {9.0 10.0 1859 ------- null} r -t 2.11336 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3695 -a 0 -x {9.0 10.0 1852 ------- null} + -t 2.11336 -s 10 -d 7 -p ack -e 40 -c 0 -i 3714 -a 0 -x {10.0 9.0 1852 ------- null} - -t 2.11336 -s 10 -d 7 -p ack -e 40 -c 0 -i 3714 -a 0 -x {10.0 9.0 1852 ------- null} h -t 2.11336 -s 10 -d 7 -p ack -e 40 -c 0 -i 3714 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.11381 -s 0 -d 9 -p ack -e 40 -c 0 -i 3704 -a 0 -x {10.0 9.0 1847 ------- null} + -t 2.11381 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3715 -a 0 -x {9.0 10.0 1862 ------- null} - -t 2.11381 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3715 -a 0 -x {9.0 10.0 1862 ------- null} h -t 2.11381 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3715 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.11389 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3701 -a 0 -x {9.0 10.0 1855 ------- null} - -t 2.11389 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3701 -a 0 -x {9.0 10.0 1855 ------- null} h -t 2.11389 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3701 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.11411 -s 0 -d 9 -p ack -e 40 -c 0 -i 3708 -a 0 -x {10.0 9.0 1849 ------- null} - -t 2.11411 -s 0 -d 9 -p ack -e 40 -c 0 -i 3708 -a 0 -x {10.0 9.0 1849 ------- null} h -t 2.11411 -s 0 -d 9 -p ack -e 40 -c 0 -i 3708 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.1143 -s 10 -d 7 -p ack -e 40 -c 0 -i 3712 -a 0 -x {10.0 9.0 1851 ------- null} + -t 2.1143 -s 7 -d 0 -p ack -e 40 -c 0 -i 3712 -a 0 -x {10.0 9.0 1851 ------- null} h -t 2.1143 -s 7 -d 8 -p ack -e 40 -c 0 -i 3712 -a 0 -x {10.0 9.0 1851 ------- null} r -t 2.11451 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3711 -a 0 -x {9.0 10.0 1860 ------- null} + -t 2.11451 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3711 -a 0 -x {9.0 10.0 1860 ------- null} h -t 2.11451 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3711 -a 0 -x {9.0 10.0 1860 ------- null} r -t 2.11451 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3697 -a 0 -x {9.0 10.0 1853 ------- null} + -t 2.11451 -s 10 -d 7 -p ack -e 40 -c 0 -i 3716 -a 0 -x {10.0 9.0 1853 ------- null} - -t 2.11451 -s 10 -d 7 -p ack -e 40 -c 0 -i 3716 -a 0 -x {10.0 9.0 1853 ------- null} h -t 2.11451 -s 10 -d 7 -p ack -e 40 -c 0 -i 3716 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.11493 -s 0 -d 9 -p ack -e 40 -c 0 -i 3706 -a 0 -x {10.0 9.0 1848 ------- null} + -t 2.11493 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3717 -a 0 -x {9.0 10.0 1863 ------- null} - -t 2.11493 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3717 -a 0 -x {9.0 10.0 1863 ------- null} h -t 2.11493 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3717 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.11498 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3703 -a 0 -x {9.0 10.0 1856 ------- null} - -t 2.11498 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3703 -a 0 -x {9.0 10.0 1856 ------- null} h -t 2.11498 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3703 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.11518 -s 0 -d 9 -p ack -e 40 -c 0 -i 3710 -a 0 -x {10.0 9.0 1850 ------- null} - -t 2.11518 -s 0 -d 9 -p ack -e 40 -c 0 -i 3710 -a 0 -x {10.0 9.0 1850 ------- null} h -t 2.11518 -s 0 -d 9 -p ack -e 40 -c 0 -i 3710 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.11539 -s 10 -d 7 -p ack -e 40 -c 0 -i 3714 -a 0 -x {10.0 9.0 1852 ------- null} + -t 2.11539 -s 7 -d 0 -p ack -e 40 -c 0 -i 3714 -a 0 -x {10.0 9.0 1852 ------- null} h -t 2.11539 -s 7 -d 8 -p ack -e 40 -c 0 -i 3714 -a 0 -x {10.0 9.0 1852 ------- null} r -t 2.1156 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3699 -a 0 -x {9.0 10.0 1854 ------- null} + -t 2.1156 -s 10 -d 7 -p ack -e 40 -c 0 -i 3718 -a 0 -x {10.0 9.0 1854 ------- null} - -t 2.1156 -s 10 -d 7 -p ack -e 40 -c 0 -i 3718 -a 0 -x {10.0 9.0 1854 ------- null} h -t 2.1156 -s 10 -d 7 -p ack -e 40 -c 0 -i 3718 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.11566 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3713 -a 0 -x {9.0 10.0 1861 ------- null} + -t 2.11566 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3713 -a 0 -x {9.0 10.0 1861 ------- null} h -t 2.11566 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3713 -a 0 -x {9.0 10.0 1861 ------- null} + -t 2.11606 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3705 -a 0 -x {9.0 10.0 1857 ------- null} - -t 2.11606 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3705 -a 0 -x {9.0 10.0 1857 ------- null} h -t 2.11606 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3705 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.11614 -s 0 -d 9 -p ack -e 40 -c 0 -i 3708 -a 0 -x {10.0 9.0 1849 ------- null} + -t 2.11614 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3719 -a 0 -x {9.0 10.0 1864 ------- null} - -t 2.11614 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3719 -a 0 -x {9.0 10.0 1864 ------- null} h -t 2.11614 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3719 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.11624 -s 0 -d 9 -p ack -e 40 -c 0 -i 3712 -a 0 -x {10.0 9.0 1851 ------- null} - -t 2.11624 -s 0 -d 9 -p ack -e 40 -c 0 -i 3712 -a 0 -x {10.0 9.0 1851 ------- null} h -t 2.11624 -s 0 -d 9 -p ack -e 40 -c 0 -i 3712 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.11654 -s 10 -d 7 -p ack -e 40 -c 0 -i 3716 -a 0 -x {10.0 9.0 1853 ------- null} + -t 2.11654 -s 7 -d 0 -p ack -e 40 -c 0 -i 3716 -a 0 -x {10.0 9.0 1853 ------- null} h -t 2.11654 -s 7 -d 8 -p ack -e 40 -c 0 -i 3716 -a 0 -x {10.0 9.0 1853 ------- null} r -t 2.11661 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3715 -a 0 -x {9.0 10.0 1862 ------- null} + -t 2.11661 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3715 -a 0 -x {9.0 10.0 1862 ------- null} h -t 2.11661 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3715 -a 0 -x {9.0 10.0 1862 ------- null} r -t 2.11669 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3701 -a 0 -x {9.0 10.0 1855 ------- null} + -t 2.11669 -s 10 -d 7 -p ack -e 40 -c 0 -i 3720 -a 0 -x {10.0 9.0 1855 ------- null} - -t 2.11669 -s 10 -d 7 -p ack -e 40 -c 0 -i 3720 -a 0 -x {10.0 9.0 1855 ------- null} h -t 2.11669 -s 10 -d 7 -p ack -e 40 -c 0 -i 3720 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.11715 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3707 -a 0 -x {9.0 10.0 1858 ------- null} - -t 2.11715 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3707 -a 0 -x {9.0 10.0 1858 ------- null} h -t 2.11715 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3707 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.11722 -s 0 -d 9 -p ack -e 40 -c 0 -i 3710 -a 0 -x {10.0 9.0 1850 ------- null} + -t 2.11722 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3721 -a 0 -x {9.0 10.0 1865 ------- null} - -t 2.11722 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3721 -a 0 -x {9.0 10.0 1865 ------- null} h -t 2.11722 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3721 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.11726 -s 0 -d 9 -p ack -e 40 -c 0 -i 3714 -a 0 -x {10.0 9.0 1852 ------- null} - -t 2.11726 -s 0 -d 9 -p ack -e 40 -c 0 -i 3714 -a 0 -x {10.0 9.0 1852 ------- null} h -t 2.11726 -s 0 -d 9 -p ack -e 40 -c 0 -i 3714 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.11763 -s 10 -d 7 -p ack -e 40 -c 0 -i 3718 -a 0 -x {10.0 9.0 1854 ------- null} + -t 2.11763 -s 7 -d 0 -p ack -e 40 -c 0 -i 3718 -a 0 -x {10.0 9.0 1854 ------- null} h -t 2.11763 -s 7 -d 8 -p ack -e 40 -c 0 -i 3718 -a 0 -x {10.0 9.0 1854 ------- null} r -t 2.11773 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3717 -a 0 -x {9.0 10.0 1863 ------- null} + -t 2.11773 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3717 -a 0 -x {9.0 10.0 1863 ------- null} h -t 2.11773 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3717 -a 0 -x {9.0 10.0 1863 ------- null} r -t 2.11778 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3703 -a 0 -x {9.0 10.0 1856 ------- null} + -t 2.11778 -s 10 -d 7 -p ack -e 40 -c 0 -i 3722 -a 0 -x {10.0 9.0 1856 ------- null} - -t 2.11778 -s 10 -d 7 -p ack -e 40 -c 0 -i 3722 -a 0 -x {10.0 9.0 1856 ------- null} h -t 2.11778 -s 10 -d 7 -p ack -e 40 -c 0 -i 3722 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.11824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3709 -a 0 -x {9.0 10.0 1859 ------- null} - -t 2.11824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3709 -a 0 -x {9.0 10.0 1859 ------- null} h -t 2.11824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3709 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.11827 -s 0 -d 9 -p ack -e 40 -c 0 -i 3712 -a 0 -x {10.0 9.0 1851 ------- null} + -t 2.11827 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3723 -a 0 -x {9.0 10.0 1866 ------- null} - -t 2.11827 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3723 -a 0 -x {9.0 10.0 1866 ------- null} h -t 2.11827 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3723 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.11853 -s 0 -d 9 -p ack -e 40 -c 0 -i 3716 -a 0 -x {10.0 9.0 1853 ------- null} - -t 2.11853 -s 0 -d 9 -p ack -e 40 -c 0 -i 3716 -a 0 -x {10.0 9.0 1853 ------- null} h -t 2.11853 -s 0 -d 9 -p ack -e 40 -c 0 -i 3716 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.11872 -s 10 -d 7 -p ack -e 40 -c 0 -i 3720 -a 0 -x {10.0 9.0 1855 ------- null} + -t 2.11872 -s 7 -d 0 -p ack -e 40 -c 0 -i 3720 -a 0 -x {10.0 9.0 1855 ------- null} h -t 2.11872 -s 7 -d 8 -p ack -e 40 -c 0 -i 3720 -a 0 -x {10.0 9.0 1855 ------- null} r -t 2.11886 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3705 -a 0 -x {9.0 10.0 1857 ------- null} + -t 2.11886 -s 10 -d 7 -p ack -e 40 -c 0 -i 3724 -a 0 -x {10.0 9.0 1857 ------- null} - -t 2.11886 -s 10 -d 7 -p ack -e 40 -c 0 -i 3724 -a 0 -x {10.0 9.0 1857 ------- null} h -t 2.11886 -s 10 -d 7 -p ack -e 40 -c 0 -i 3724 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.11894 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3719 -a 0 -x {9.0 10.0 1864 ------- null} + -t 2.11894 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3719 -a 0 -x {9.0 10.0 1864 ------- null} h -t 2.11894 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3719 -a 0 -x {9.0 10.0 1864 ------- null} r -t 2.1193 -s 0 -d 9 -p ack -e 40 -c 0 -i 3714 -a 0 -x {10.0 9.0 1852 ------- null} + -t 2.1193 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3725 -a 0 -x {9.0 10.0 1867 ------- null} - -t 2.1193 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3725 -a 0 -x {9.0 10.0 1867 ------- null} h -t 2.1193 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3725 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.11946 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3711 -a 0 -x {9.0 10.0 1860 ------- null} - -t 2.11946 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3711 -a 0 -x {9.0 10.0 1860 ------- null} h -t 2.11946 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3711 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.11971 -s 0 -d 9 -p ack -e 40 -c 0 -i 3718 -a 0 -x {10.0 9.0 1854 ------- null} - -t 2.11971 -s 0 -d 9 -p ack -e 40 -c 0 -i 3718 -a 0 -x {10.0 9.0 1854 ------- null} h -t 2.11971 -s 0 -d 9 -p ack -e 40 -c 0 -i 3718 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.11981 -s 10 -d 7 -p ack -e 40 -c 0 -i 3722 -a 0 -x {10.0 9.0 1856 ------- null} + -t 2.11981 -s 7 -d 0 -p ack -e 40 -c 0 -i 3722 -a 0 -x {10.0 9.0 1856 ------- null} h -t 2.11981 -s 7 -d 8 -p ack -e 40 -c 0 -i 3722 -a 0 -x {10.0 9.0 1856 ------- null} r -t 2.11995 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3707 -a 0 -x {9.0 10.0 1858 ------- null} + -t 2.11995 -s 10 -d 7 -p ack -e 40 -c 0 -i 3726 -a 0 -x {10.0 9.0 1858 ------- null} - -t 2.11995 -s 10 -d 7 -p ack -e 40 -c 0 -i 3726 -a 0 -x {10.0 9.0 1858 ------- null} h -t 2.11995 -s 10 -d 7 -p ack -e 40 -c 0 -i 3726 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.12002 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3721 -a 0 -x {9.0 10.0 1865 ------- null} + -t 2.12002 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3721 -a 0 -x {9.0 10.0 1865 ------- null} h -t 2.12002 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3721 -a 0 -x {9.0 10.0 1865 ------- null} r -t 2.12056 -s 0 -d 9 -p ack -e 40 -c 0 -i 3716 -a 0 -x {10.0 9.0 1853 ------- null} + -t 2.12056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3727 -a 0 -x {9.0 10.0 1868 ------- null} - -t 2.12056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3727 -a 0 -x {9.0 10.0 1868 ------- null} h -t 2.12056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3727 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.12078 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3713 -a 0 -x {9.0 10.0 1861 ------- null} - -t 2.12078 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3713 -a 0 -x {9.0 10.0 1861 ------- null} h -t 2.12078 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3713 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.1209 -s 10 -d 7 -p ack -e 40 -c 0 -i 3724 -a 0 -x {10.0 9.0 1857 ------- null} + -t 2.1209 -s 7 -d 0 -p ack -e 40 -c 0 -i 3724 -a 0 -x {10.0 9.0 1857 ------- null} h -t 2.1209 -s 7 -d 8 -p ack -e 40 -c 0 -i 3724 -a 0 -x {10.0 9.0 1857 ------- null} + -t 2.12096 -s 0 -d 9 -p ack -e 40 -c 0 -i 3720 -a 0 -x {10.0 9.0 1855 ------- null} - -t 2.12096 -s 0 -d 9 -p ack -e 40 -c 0 -i 3720 -a 0 -x {10.0 9.0 1855 ------- null} h -t 2.12096 -s 0 -d 9 -p ack -e 40 -c 0 -i 3720 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.12104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3709 -a 0 -x {9.0 10.0 1859 ------- null} + -t 2.12104 -s 10 -d 7 -p ack -e 40 -c 0 -i 3728 -a 0 -x {10.0 9.0 1859 ------- null} - -t 2.12104 -s 10 -d 7 -p ack -e 40 -c 0 -i 3728 -a 0 -x {10.0 9.0 1859 ------- null} h -t 2.12104 -s 10 -d 7 -p ack -e 40 -c 0 -i 3728 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.12107 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3723 -a 0 -x {9.0 10.0 1866 ------- null} + -t 2.12107 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3723 -a 0 -x {9.0 10.0 1866 ------- null} h -t 2.12107 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3723 -a 0 -x {9.0 10.0 1866 ------- null} r -t 2.12174 -s 0 -d 9 -p ack -e 40 -c 0 -i 3718 -a 0 -x {10.0 9.0 1854 ------- null} + -t 2.12174 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3729 -a 0 -x {9.0 10.0 1869 ------- null} - -t 2.12174 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3729 -a 0 -x {9.0 10.0 1869 ------- null} h -t 2.12174 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3729 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.12187 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3715 -a 0 -x {9.0 10.0 1862 ------- null} - -t 2.12187 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3715 -a 0 -x {9.0 10.0 1862 ------- null} h -t 2.12187 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3715 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.12198 -s 10 -d 7 -p ack -e 40 -c 0 -i 3726 -a 0 -x {10.0 9.0 1858 ------- null} + -t 2.12198 -s 7 -d 0 -p ack -e 40 -c 0 -i 3726 -a 0 -x {10.0 9.0 1858 ------- null} h -t 2.12198 -s 7 -d 8 -p ack -e 40 -c 0 -i 3726 -a 0 -x {10.0 9.0 1858 ------- null} + -t 2.1221 -s 0 -d 9 -p ack -e 40 -c 0 -i 3722 -a 0 -x {10.0 9.0 1856 ------- null} - -t 2.1221 -s 0 -d 9 -p ack -e 40 -c 0 -i 3722 -a 0 -x {10.0 9.0 1856 ------- null} h -t 2.1221 -s 0 -d 9 -p ack -e 40 -c 0 -i 3722 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.1221 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3725 -a 0 -x {9.0 10.0 1867 ------- null} + -t 2.1221 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3725 -a 0 -x {9.0 10.0 1867 ------- null} h -t 2.1221 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3725 -a 0 -x {9.0 10.0 1867 ------- null} r -t 2.12226 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3711 -a 0 -x {9.0 10.0 1860 ------- null} + -t 2.12226 -s 10 -d 7 -p ack -e 40 -c 0 -i 3730 -a 0 -x {10.0 9.0 1860 ------- null} - -t 2.12226 -s 10 -d 7 -p ack -e 40 -c 0 -i 3730 -a 0 -x {10.0 9.0 1860 ------- null} h -t 2.12226 -s 10 -d 7 -p ack -e 40 -c 0 -i 3730 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.12296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3717 -a 0 -x {9.0 10.0 1863 ------- null} - -t 2.12296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3717 -a 0 -x {9.0 10.0 1863 ------- null} h -t 2.12296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3717 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.12299 -s 0 -d 9 -p ack -e 40 -c 0 -i 3720 -a 0 -x {10.0 9.0 1855 ------- null} + -t 2.12299 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3731 -a 0 -x {9.0 10.0 1870 ------- null} - -t 2.12299 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3731 -a 0 -x {9.0 10.0 1870 ------- null} h -t 2.12299 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3731 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.12307 -s 10 -d 7 -p ack -e 40 -c 0 -i 3728 -a 0 -x {10.0 9.0 1859 ------- null} + -t 2.12307 -s 7 -d 0 -p ack -e 40 -c 0 -i 3728 -a 0 -x {10.0 9.0 1859 ------- null} h -t 2.12307 -s 7 -d 8 -p ack -e 40 -c 0 -i 3728 -a 0 -x {10.0 9.0 1859 ------- null} + -t 2.12314 -s 0 -d 9 -p ack -e 40 -c 0 -i 3724 -a 0 -x {10.0 9.0 1857 ------- null} - -t 2.12314 -s 0 -d 9 -p ack -e 40 -c 0 -i 3724 -a 0 -x {10.0 9.0 1857 ------- null} h -t 2.12314 -s 0 -d 9 -p ack -e 40 -c 0 -i 3724 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.12336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3727 -a 0 -x {9.0 10.0 1868 ------- null} + -t 2.12336 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3727 -a 0 -x {9.0 10.0 1868 ------- null} h -t 2.12336 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3727 -a 0 -x {9.0 10.0 1868 ------- null} r -t 2.12358 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3713 -a 0 -x {9.0 10.0 1861 ------- null} + -t 2.12358 -s 10 -d 7 -p ack -e 40 -c 0 -i 3732 -a 0 -x {10.0 9.0 1861 ------- null} - -t 2.12358 -s 10 -d 7 -p ack -e 40 -c 0 -i 3732 -a 0 -x {10.0 9.0 1861 ------- null} h -t 2.12358 -s 10 -d 7 -p ack -e 40 -c 0 -i 3732 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.12405 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3719 -a 0 -x {9.0 10.0 1864 ------- null} - -t 2.12405 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3719 -a 0 -x {9.0 10.0 1864 ------- null} h -t 2.12405 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3719 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.12413 -s 0 -d 9 -p ack -e 40 -c 0 -i 3722 -a 0 -x {10.0 9.0 1856 ------- null} + -t 2.12413 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3733 -a 0 -x {9.0 10.0 1871 ------- null} - -t 2.12413 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3733 -a 0 -x {9.0 10.0 1871 ------- null} h -t 2.12413 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3733 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.12426 -s 0 -d 9 -p ack -e 40 -c 0 -i 3726 -a 0 -x {10.0 9.0 1858 ------- null} - -t 2.12426 -s 0 -d 9 -p ack -e 40 -c 0 -i 3726 -a 0 -x {10.0 9.0 1858 ------- null} h -t 2.12426 -s 0 -d 9 -p ack -e 40 -c 0 -i 3726 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.12429 -s 10 -d 7 -p ack -e 40 -c 0 -i 3730 -a 0 -x {10.0 9.0 1860 ------- null} + -t 2.12429 -s 7 -d 0 -p ack -e 40 -c 0 -i 3730 -a 0 -x {10.0 9.0 1860 ------- null} h -t 2.12429 -s 7 -d 8 -p ack -e 40 -c 0 -i 3730 -a 0 -x {10.0 9.0 1860 ------- null} r -t 2.12454 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3729 -a 0 -x {9.0 10.0 1869 ------- null} + -t 2.12454 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3729 -a 0 -x {9.0 10.0 1869 ------- null} h -t 2.12454 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3729 -a 0 -x {9.0 10.0 1869 ------- null} r -t 2.12467 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3715 -a 0 -x {9.0 10.0 1862 ------- null} + -t 2.12467 -s 10 -d 7 -p ack -e 40 -c 0 -i 3734 -a 0 -x {10.0 9.0 1862 ------- null} - -t 2.12467 -s 10 -d 7 -p ack -e 40 -c 0 -i 3734 -a 0 -x {10.0 9.0 1862 ------- null} h -t 2.12467 -s 10 -d 7 -p ack -e 40 -c 0 -i 3734 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.12514 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3721 -a 0 -x {9.0 10.0 1865 ------- null} - -t 2.12514 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3721 -a 0 -x {9.0 10.0 1865 ------- null} h -t 2.12514 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3721 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.12517 -s 0 -d 9 -p ack -e 40 -c 0 -i 3724 -a 0 -x {10.0 9.0 1857 ------- null} + -t 2.12517 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3735 -a 0 -x {9.0 10.0 1872 ------- null} - -t 2.12517 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3735 -a 0 -x {9.0 10.0 1872 ------- null} h -t 2.12517 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3735 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.12544 -s 0 -d 9 -p ack -e 40 -c 0 -i 3728 -a 0 -x {10.0 9.0 1859 ------- null} - -t 2.12544 -s 0 -d 9 -p ack -e 40 -c 0 -i 3728 -a 0 -x {10.0 9.0 1859 ------- null} h -t 2.12544 -s 0 -d 9 -p ack -e 40 -c 0 -i 3728 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.12562 -s 10 -d 7 -p ack -e 40 -c 0 -i 3732 -a 0 -x {10.0 9.0 1861 ------- null} + -t 2.12562 -s 7 -d 0 -p ack -e 40 -c 0 -i 3732 -a 0 -x {10.0 9.0 1861 ------- null} h -t 2.12562 -s 7 -d 8 -p ack -e 40 -c 0 -i 3732 -a 0 -x {10.0 9.0 1861 ------- null} r -t 2.12576 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3717 -a 0 -x {9.0 10.0 1863 ------- null} + -t 2.12576 -s 10 -d 7 -p ack -e 40 -c 0 -i 3736 -a 0 -x {10.0 9.0 1863 ------- null} - -t 2.12576 -s 10 -d 7 -p ack -e 40 -c 0 -i 3736 -a 0 -x {10.0 9.0 1863 ------- null} h -t 2.12576 -s 10 -d 7 -p ack -e 40 -c 0 -i 3736 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.12579 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3731 -a 0 -x {9.0 10.0 1870 ------- null} + -t 2.12579 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3731 -a 0 -x {9.0 10.0 1870 ------- null} h -t 2.12579 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3731 -a 0 -x {9.0 10.0 1870 ------- null} r -t 2.12629 -s 0 -d 9 -p ack -e 40 -c 0 -i 3726 -a 0 -x {10.0 9.0 1858 ------- null} + -t 2.12629 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3737 -a 0 -x {9.0 10.0 1873 ------- null} - -t 2.12629 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3737 -a 0 -x {9.0 10.0 1873 ------- null} h -t 2.12629 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3737 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.12646 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3723 -a 0 -x {9.0 10.0 1866 ------- null} - -t 2.12646 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3723 -a 0 -x {9.0 10.0 1866 ------- null} h -t 2.12646 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3723 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.1267 -s 10 -d 7 -p ack -e 40 -c 0 -i 3734 -a 0 -x {10.0 9.0 1862 ------- null} + -t 2.1267 -s 7 -d 0 -p ack -e 40 -c 0 -i 3734 -a 0 -x {10.0 9.0 1862 ------- null} h -t 2.1267 -s 7 -d 8 -p ack -e 40 -c 0 -i 3734 -a 0 -x {10.0 9.0 1862 ------- null} + -t 2.12672 -s 0 -d 9 -p ack -e 40 -c 0 -i 3730 -a 0 -x {10.0 9.0 1860 ------- null} - -t 2.12672 -s 0 -d 9 -p ack -e 40 -c 0 -i 3730 -a 0 -x {10.0 9.0 1860 ------- null} h -t 2.12672 -s 0 -d 9 -p ack -e 40 -c 0 -i 3730 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.12685 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3719 -a 0 -x {9.0 10.0 1864 ------- null} + -t 2.12685 -s 10 -d 7 -p ack -e 40 -c 0 -i 3738 -a 0 -x {10.0 9.0 1864 ------- null} - -t 2.12685 -s 10 -d 7 -p ack -e 40 -c 0 -i 3738 -a 0 -x {10.0 9.0 1864 ------- null} h -t 2.12685 -s 10 -d 7 -p ack -e 40 -c 0 -i 3738 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.12693 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3733 -a 0 -x {9.0 10.0 1871 ------- null} + -t 2.12693 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3733 -a 0 -x {9.0 10.0 1871 ------- null} h -t 2.12693 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3733 -a 0 -x {9.0 10.0 1871 ------- null} r -t 2.12747 -s 0 -d 9 -p ack -e 40 -c 0 -i 3728 -a 0 -x {10.0 9.0 1859 ------- null} + -t 2.12747 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3739 -a 0 -x {9.0 10.0 1874 ------- null} - -t 2.12747 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3739 -a 0 -x {9.0 10.0 1874 ------- null} h -t 2.12747 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3739 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.1277 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3725 -a 0 -x {9.0 10.0 1867 ------- null} - -t 2.1277 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3725 -a 0 -x {9.0 10.0 1867 ------- null} h -t 2.1277 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3725 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.12779 -s 10 -d 7 -p ack -e 40 -c 0 -i 3736 -a 0 -x {10.0 9.0 1863 ------- null} + -t 2.12779 -s 7 -d 0 -p ack -e 40 -c 0 -i 3736 -a 0 -x {10.0 9.0 1863 ------- null} h -t 2.12779 -s 7 -d 8 -p ack -e 40 -c 0 -i 3736 -a 0 -x {10.0 9.0 1863 ------- null} + -t 2.12792 -s 0 -d 9 -p ack -e 40 -c 0 -i 3732 -a 0 -x {10.0 9.0 1861 ------- null} - -t 2.12792 -s 0 -d 9 -p ack -e 40 -c 0 -i 3732 -a 0 -x {10.0 9.0 1861 ------- null} h -t 2.12792 -s 0 -d 9 -p ack -e 40 -c 0 -i 3732 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.12794 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3721 -a 0 -x {9.0 10.0 1865 ------- null} + -t 2.12794 -s 10 -d 7 -p ack -e 40 -c 0 -i 3740 -a 0 -x {10.0 9.0 1865 ------- null} - -t 2.12794 -s 10 -d 7 -p ack -e 40 -c 0 -i 3740 -a 0 -x {10.0 9.0 1865 ------- null} h -t 2.12794 -s 10 -d 7 -p ack -e 40 -c 0 -i 3740 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.12797 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3735 -a 0 -x {9.0 10.0 1872 ------- null} + -t 2.12797 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3735 -a 0 -x {9.0 10.0 1872 ------- null} h -t 2.12797 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3735 -a 0 -x {9.0 10.0 1872 ------- null} r -t 2.12875 -s 0 -d 9 -p ack -e 40 -c 0 -i 3730 -a 0 -x {10.0 9.0 1860 ------- null} + -t 2.12875 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3741 -a 0 -x {9.0 10.0 1875 ------- null} - -t 2.12875 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3741 -a 0 -x {9.0 10.0 1875 ------- null} h -t 2.12875 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3741 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.12878 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3727 -a 0 -x {9.0 10.0 1868 ------- null} - -t 2.12878 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3727 -a 0 -x {9.0 10.0 1868 ------- null} h -t 2.12878 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3727 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.12888 -s 10 -d 7 -p ack -e 40 -c 0 -i 3738 -a 0 -x {10.0 9.0 1864 ------- null} + -t 2.12888 -s 7 -d 0 -p ack -e 40 -c 0 -i 3738 -a 0 -x {10.0 9.0 1864 ------- null} h -t 2.12888 -s 7 -d 8 -p ack -e 40 -c 0 -i 3738 -a 0 -x {10.0 9.0 1864 ------- null} + -t 2.12902 -s 0 -d 9 -p ack -e 40 -c 0 -i 3734 -a 0 -x {10.0 9.0 1862 ------- null} - -t 2.12902 -s 0 -d 9 -p ack -e 40 -c 0 -i 3734 -a 0 -x {10.0 9.0 1862 ------- null} h -t 2.12902 -s 0 -d 9 -p ack -e 40 -c 0 -i 3734 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.12909 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3737 -a 0 -x {9.0 10.0 1873 ------- null} + -t 2.12909 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3737 -a 0 -x {9.0 10.0 1873 ------- null} h -t 2.12909 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3737 -a 0 -x {9.0 10.0 1873 ------- null} r -t 2.12926 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3723 -a 0 -x {9.0 10.0 1866 ------- null} + -t 2.12926 -s 10 -d 7 -p ack -e 40 -c 0 -i 3742 -a 0 -x {10.0 9.0 1866 ------- null} - -t 2.12926 -s 10 -d 7 -p ack -e 40 -c 0 -i 3742 -a 0 -x {10.0 9.0 1866 ------- null} h -t 2.12926 -s 10 -d 7 -p ack -e 40 -c 0 -i 3742 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.12987 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3729 -a 0 -x {9.0 10.0 1869 ------- null} - -t 2.12987 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3729 -a 0 -x {9.0 10.0 1869 ------- null} h -t 2.12987 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3729 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.12995 -s 0 -d 9 -p ack -e 40 -c 0 -i 3732 -a 0 -x {10.0 9.0 1861 ------- null} + -t 2.12995 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3743 -a 0 -x {9.0 10.0 1876 ------- null} - -t 2.12995 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3743 -a 0 -x {9.0 10.0 1876 ------- null} h -t 2.12995 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3743 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.12997 -s 10 -d 7 -p ack -e 40 -c 0 -i 3740 -a 0 -x {10.0 9.0 1865 ------- null} + -t 2.12997 -s 7 -d 0 -p ack -e 40 -c 0 -i 3740 -a 0 -x {10.0 9.0 1865 ------- null} h -t 2.12997 -s 7 -d 8 -p ack -e 40 -c 0 -i 3740 -a 0 -x {10.0 9.0 1865 ------- null} + -t 2.13008 -s 0 -d 9 -p ack -e 40 -c 0 -i 3736 -a 0 -x {10.0 9.0 1863 ------- null} - -t 2.13008 -s 0 -d 9 -p ack -e 40 -c 0 -i 3736 -a 0 -x {10.0 9.0 1863 ------- null} h -t 2.13008 -s 0 -d 9 -p ack -e 40 -c 0 -i 3736 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.13027 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3739 -a 0 -x {9.0 10.0 1874 ------- null} + -t 2.13027 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3739 -a 0 -x {9.0 10.0 1874 ------- null} h -t 2.13027 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3739 -a 0 -x {9.0 10.0 1874 ------- null} r -t 2.1305 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3725 -a 0 -x {9.0 10.0 1867 ------- null} + -t 2.1305 -s 10 -d 7 -p ack -e 40 -c 0 -i 3744 -a 0 -x {10.0 9.0 1867 ------- null} - -t 2.1305 -s 10 -d 7 -p ack -e 40 -c 0 -i 3744 -a 0 -x {10.0 9.0 1867 ------- null} h -t 2.1305 -s 10 -d 7 -p ack -e 40 -c 0 -i 3744 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.13096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3731 -a 0 -x {9.0 10.0 1870 ------- null} - -t 2.13096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3731 -a 0 -x {9.0 10.0 1870 ------- null} h -t 2.13096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3731 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.13106 -s 0 -d 9 -p ack -e 40 -c 0 -i 3734 -a 0 -x {10.0 9.0 1862 ------- null} + -t 2.13106 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3745 -a 0 -x {9.0 10.0 1877 ------- null} - -t 2.13106 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3745 -a 0 -x {9.0 10.0 1877 ------- null} h -t 2.13106 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3745 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.13112 -s 0 -d 9 -p ack -e 40 -c 0 -i 3738 -a 0 -x {10.0 9.0 1864 ------- null} - -t 2.13112 -s 0 -d 9 -p ack -e 40 -c 0 -i 3738 -a 0 -x {10.0 9.0 1864 ------- null} h -t 2.13112 -s 0 -d 9 -p ack -e 40 -c 0 -i 3738 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.1313 -s 10 -d 7 -p ack -e 40 -c 0 -i 3742 -a 0 -x {10.0 9.0 1866 ------- null} + -t 2.1313 -s 7 -d 0 -p ack -e 40 -c 0 -i 3742 -a 0 -x {10.0 9.0 1866 ------- null} h -t 2.1313 -s 7 -d 8 -p ack -e 40 -c 0 -i 3742 -a 0 -x {10.0 9.0 1866 ------- null} r -t 2.13155 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3741 -a 0 -x {9.0 10.0 1875 ------- null} + -t 2.13155 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3741 -a 0 -x {9.0 10.0 1875 ------- null} h -t 2.13155 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3741 -a 0 -x {9.0 10.0 1875 ------- null} r -t 2.13158 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3727 -a 0 -x {9.0 10.0 1868 ------- null} + -t 2.13158 -s 10 -d 7 -p ack -e 40 -c 0 -i 3746 -a 0 -x {10.0 9.0 1868 ------- null} - -t 2.13158 -s 10 -d 7 -p ack -e 40 -c 0 -i 3746 -a 0 -x {10.0 9.0 1868 ------- null} h -t 2.13158 -s 10 -d 7 -p ack -e 40 -c 0 -i 3746 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.13205 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3733 -a 0 -x {9.0 10.0 1871 ------- null} - -t 2.13205 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3733 -a 0 -x {9.0 10.0 1871 ------- null} h -t 2.13205 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3733 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.13211 -s 0 -d 9 -p ack -e 40 -c 0 -i 3736 -a 0 -x {10.0 9.0 1863 ------- null} + -t 2.13211 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3747 -a 0 -x {9.0 10.0 1878 ------- null} - -t 2.13211 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3747 -a 0 -x {9.0 10.0 1878 ------- null} h -t 2.13211 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3747 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.13214 -s 0 -d 9 -p ack -e 40 -c 0 -i 3740 -a 0 -x {10.0 9.0 1865 ------- null} - -t 2.13214 -s 0 -d 9 -p ack -e 40 -c 0 -i 3740 -a 0 -x {10.0 9.0 1865 ------- null} h -t 2.13214 -s 0 -d 9 -p ack -e 40 -c 0 -i 3740 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.13253 -s 10 -d 7 -p ack -e 40 -c 0 -i 3744 -a 0 -x {10.0 9.0 1867 ------- null} + -t 2.13253 -s 7 -d 0 -p ack -e 40 -c 0 -i 3744 -a 0 -x {10.0 9.0 1867 ------- null} h -t 2.13253 -s 7 -d 8 -p ack -e 40 -c 0 -i 3744 -a 0 -x {10.0 9.0 1867 ------- null} r -t 2.13267 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3729 -a 0 -x {9.0 10.0 1869 ------- null} + -t 2.13267 -s 10 -d 7 -p ack -e 40 -c 0 -i 3748 -a 0 -x {10.0 9.0 1869 ------- null} - -t 2.13267 -s 10 -d 7 -p ack -e 40 -c 0 -i 3748 -a 0 -x {10.0 9.0 1869 ------- null} h -t 2.13267 -s 10 -d 7 -p ack -e 40 -c 0 -i 3748 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.13275 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3743 -a 0 -x {9.0 10.0 1876 ------- null} + -t 2.13275 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3743 -a 0 -x {9.0 10.0 1876 ------- null} h -t 2.13275 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3743 -a 0 -x {9.0 10.0 1876 ------- null} + -t 2.13314 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3735 -a 0 -x {9.0 10.0 1872 ------- null} - -t 2.13314 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3735 -a 0 -x {9.0 10.0 1872 ------- null} h -t 2.13314 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3735 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.13315 -s 0 -d 9 -p ack -e 40 -c 0 -i 3738 -a 0 -x {10.0 9.0 1864 ------- null} + -t 2.13315 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3749 -a 0 -x {9.0 10.0 1879 ------- null} - -t 2.13315 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3749 -a 0 -x {9.0 10.0 1879 ------- null} h -t 2.13315 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3749 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.13336 -s 0 -d 9 -p ack -e 40 -c 0 -i 3742 -a 0 -x {10.0 9.0 1866 ------- null} - -t 2.13336 -s 0 -d 9 -p ack -e 40 -c 0 -i 3742 -a 0 -x {10.0 9.0 1866 ------- null} h -t 2.13336 -s 0 -d 9 -p ack -e 40 -c 0 -i 3742 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.13362 -s 10 -d 7 -p ack -e 40 -c 0 -i 3746 -a 0 -x {10.0 9.0 1868 ------- null} + -t 2.13362 -s 7 -d 0 -p ack -e 40 -c 0 -i 3746 -a 0 -x {10.0 9.0 1868 ------- null} h -t 2.13362 -s 7 -d 8 -p ack -e 40 -c 0 -i 3746 -a 0 -x {10.0 9.0 1868 ------- null} r -t 2.13376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3731 -a 0 -x {9.0 10.0 1870 ------- null} + -t 2.13376 -s 10 -d 7 -p ack -e 40 -c 0 -i 3750 -a 0 -x {10.0 9.0 1870 ------- null} - -t 2.13376 -s 10 -d 7 -p ack -e 40 -c 0 -i 3750 -a 0 -x {10.0 9.0 1870 ------- null} h -t 2.13376 -s 10 -d 7 -p ack -e 40 -c 0 -i 3750 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.13386 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3745 -a 0 -x {9.0 10.0 1877 ------- null} + -t 2.13386 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3745 -a 0 -x {9.0 10.0 1877 ------- null} h -t 2.13386 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3745 -a 0 -x {9.0 10.0 1877 ------- null} r -t 2.13418 -s 0 -d 9 -p ack -e 40 -c 0 -i 3740 -a 0 -x {10.0 9.0 1865 ------- null} + -t 2.13418 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3751 -a 0 -x {9.0 10.0 1880 ------- null} - -t 2.13418 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3751 -a 0 -x {9.0 10.0 1880 ------- null} h -t 2.13418 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3751 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.13422 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3737 -a 0 -x {9.0 10.0 1873 ------- null} - -t 2.13422 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3737 -a 0 -x {9.0 10.0 1873 ------- null} h -t 2.13422 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3737 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.13448 -s 0 -d 9 -p ack -e 40 -c 0 -i 3744 -a 0 -x {10.0 9.0 1867 ------- null} - -t 2.13448 -s 0 -d 9 -p ack -e 40 -c 0 -i 3744 -a 0 -x {10.0 9.0 1867 ------- null} h -t 2.13448 -s 0 -d 9 -p ack -e 40 -c 0 -i 3744 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.1347 -s 10 -d 7 -p ack -e 40 -c 0 -i 3748 -a 0 -x {10.0 9.0 1869 ------- null} + -t 2.1347 -s 7 -d 0 -p ack -e 40 -c 0 -i 3748 -a 0 -x {10.0 9.0 1869 ------- null} h -t 2.1347 -s 7 -d 8 -p ack -e 40 -c 0 -i 3748 -a 0 -x {10.0 9.0 1869 ------- null} r -t 2.13485 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3733 -a 0 -x {9.0 10.0 1871 ------- null} + -t 2.13485 -s 10 -d 7 -p ack -e 40 -c 0 -i 3752 -a 0 -x {10.0 9.0 1871 ------- null} - -t 2.13485 -s 10 -d 7 -p ack -e 40 -c 0 -i 3752 -a 0 -x {10.0 9.0 1871 ------- null} h -t 2.13485 -s 10 -d 7 -p ack -e 40 -c 0 -i 3752 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.13491 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3747 -a 0 -x {9.0 10.0 1878 ------- null} + -t 2.13491 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3747 -a 0 -x {9.0 10.0 1878 ------- null} h -t 2.13491 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3747 -a 0 -x {9.0 10.0 1878 ------- null} + -t 2.13533 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3739 -a 0 -x {9.0 10.0 1874 ------- null} - -t 2.13533 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3739 -a 0 -x {9.0 10.0 1874 ------- null} h -t 2.13533 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3739 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.13539 -s 0 -d 9 -p ack -e 40 -c 0 -i 3742 -a 0 -x {10.0 9.0 1866 ------- null} + -t 2.13539 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3753 -a 0 -x {9.0 10.0 1881 ------- null} - -t 2.13539 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3753 -a 0 -x {9.0 10.0 1881 ------- null} h -t 2.13539 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3753 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.13552 -s 0 -d 9 -p ack -e 40 -c 0 -i 3746 -a 0 -x {10.0 9.0 1868 ------- null} - -t 2.13552 -s 0 -d 9 -p ack -e 40 -c 0 -i 3746 -a 0 -x {10.0 9.0 1868 ------- null} h -t 2.13552 -s 0 -d 9 -p ack -e 40 -c 0 -i 3746 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.13579 -s 10 -d 7 -p ack -e 40 -c 0 -i 3750 -a 0 -x {10.0 9.0 1870 ------- null} + -t 2.13579 -s 7 -d 0 -p ack -e 40 -c 0 -i 3750 -a 0 -x {10.0 9.0 1870 ------- null} h -t 2.13579 -s 7 -d 8 -p ack -e 40 -c 0 -i 3750 -a 0 -x {10.0 9.0 1870 ------- null} r -t 2.13594 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3735 -a 0 -x {9.0 10.0 1872 ------- null} + -t 2.13594 -s 10 -d 7 -p ack -e 40 -c 0 -i 3754 -a 0 -x {10.0 9.0 1872 ------- null} - -t 2.13594 -s 10 -d 7 -p ack -e 40 -c 0 -i 3754 -a 0 -x {10.0 9.0 1872 ------- null} h -t 2.13594 -s 10 -d 7 -p ack -e 40 -c 0 -i 3754 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.13595 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3749 -a 0 -x {9.0 10.0 1879 ------- null} + -t 2.13595 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3749 -a 0 -x {9.0 10.0 1879 ------- null} h -t 2.13595 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3749 -a 0 -x {9.0 10.0 1879 ------- null} + -t 2.13642 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3741 -a 0 -x {9.0 10.0 1875 ------- null} - -t 2.13642 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3741 -a 0 -x {9.0 10.0 1875 ------- null} h -t 2.13642 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3741 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.13651 -s 0 -d 9 -p ack -e 40 -c 0 -i 3744 -a 0 -x {10.0 9.0 1867 ------- null} + -t 2.13651 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3755 -a 0 -x {9.0 10.0 1882 ------- null} - -t 2.13651 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3755 -a 0 -x {9.0 10.0 1882 ------- null} h -t 2.13651 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3755 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.13658 -s 0 -d 9 -p ack -e 40 -c 0 -i 3748 -a 0 -x {10.0 9.0 1869 ------- null} - -t 2.13658 -s 0 -d 9 -p ack -e 40 -c 0 -i 3748 -a 0 -x {10.0 9.0 1869 ------- null} h -t 2.13658 -s 0 -d 9 -p ack -e 40 -c 0 -i 3748 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.13688 -s 10 -d 7 -p ack -e 40 -c 0 -i 3752 -a 0 -x {10.0 9.0 1871 ------- null} + -t 2.13688 -s 7 -d 0 -p ack -e 40 -c 0 -i 3752 -a 0 -x {10.0 9.0 1871 ------- null} h -t 2.13688 -s 7 -d 8 -p ack -e 40 -c 0 -i 3752 -a 0 -x {10.0 9.0 1871 ------- null} r -t 2.13698 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3751 -a 0 -x {9.0 10.0 1880 ------- null} + -t 2.13698 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3751 -a 0 -x {9.0 10.0 1880 ------- null} h -t 2.13698 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3751 -a 0 -x {9.0 10.0 1880 ------- null} r -t 2.13702 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3737 -a 0 -x {9.0 10.0 1873 ------- null} + -t 2.13702 -s 10 -d 7 -p ack -e 40 -c 0 -i 3756 -a 0 -x {10.0 9.0 1873 ------- null} - -t 2.13702 -s 10 -d 7 -p ack -e 40 -c 0 -i 3756 -a 0 -x {10.0 9.0 1873 ------- null} h -t 2.13702 -s 10 -d 7 -p ack -e 40 -c 0 -i 3756 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.1375 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3743 -a 0 -x {9.0 10.0 1876 ------- null} - -t 2.1375 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3743 -a 0 -x {9.0 10.0 1876 ------- null} h -t 2.1375 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3743 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.13755 -s 0 -d 9 -p ack -e 40 -c 0 -i 3746 -a 0 -x {10.0 9.0 1868 ------- null} + -t 2.13755 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3757 -a 0 -x {9.0 10.0 1883 ------- null} - -t 2.13755 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3757 -a 0 -x {9.0 10.0 1883 ------- null} h -t 2.13755 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3757 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.13766 -s 0 -d 9 -p ack -e 40 -c 0 -i 3750 -a 0 -x {10.0 9.0 1870 ------- null} - -t 2.13766 -s 0 -d 9 -p ack -e 40 -c 0 -i 3750 -a 0 -x {10.0 9.0 1870 ------- null} h -t 2.13766 -s 0 -d 9 -p ack -e 40 -c 0 -i 3750 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.13797 -s 10 -d 7 -p ack -e 40 -c 0 -i 3754 -a 0 -x {10.0 9.0 1872 ------- null} + -t 2.13797 -s 7 -d 0 -p ack -e 40 -c 0 -i 3754 -a 0 -x {10.0 9.0 1872 ------- null} h -t 2.13797 -s 7 -d 8 -p ack -e 40 -c 0 -i 3754 -a 0 -x {10.0 9.0 1872 ------- null} r -t 2.13813 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3739 -a 0 -x {9.0 10.0 1874 ------- null} + -t 2.13813 -s 10 -d 7 -p ack -e 40 -c 0 -i 3758 -a 0 -x {10.0 9.0 1874 ------- null} - -t 2.13813 -s 10 -d 7 -p ack -e 40 -c 0 -i 3758 -a 0 -x {10.0 9.0 1874 ------- null} h -t 2.13813 -s 10 -d 7 -p ack -e 40 -c 0 -i 3758 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.13819 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3753 -a 0 -x {9.0 10.0 1881 ------- null} + -t 2.13819 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3753 -a 0 -x {9.0 10.0 1881 ------- null} h -t 2.13819 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3753 -a 0 -x {9.0 10.0 1881 ------- null} + -t 2.13859 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3745 -a 0 -x {9.0 10.0 1877 ------- null} - -t 2.13859 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3745 -a 0 -x {9.0 10.0 1877 ------- null} h -t 2.13859 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3745 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.13861 -s 0 -d 9 -p ack -e 40 -c 0 -i 3748 -a 0 -x {10.0 9.0 1869 ------- null} + -t 2.13861 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3759 -a 0 -x {9.0 10.0 1884 ------- null} - -t 2.13861 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3759 -a 0 -x {9.0 10.0 1884 ------- null} h -t 2.13861 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3759 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.13877 -s 0 -d 9 -p ack -e 40 -c 0 -i 3752 -a 0 -x {10.0 9.0 1871 ------- null} - -t 2.13877 -s 0 -d 9 -p ack -e 40 -c 0 -i 3752 -a 0 -x {10.0 9.0 1871 ------- null} h -t 2.13877 -s 0 -d 9 -p ack -e 40 -c 0 -i 3752 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.13906 -s 10 -d 7 -p ack -e 40 -c 0 -i 3756 -a 0 -x {10.0 9.0 1873 ------- null} + -t 2.13906 -s 7 -d 0 -p ack -e 40 -c 0 -i 3756 -a 0 -x {10.0 9.0 1873 ------- null} h -t 2.13906 -s 7 -d 8 -p ack -e 40 -c 0 -i 3756 -a 0 -x {10.0 9.0 1873 ------- null} r -t 2.13922 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3741 -a 0 -x {9.0 10.0 1875 ------- null} + -t 2.13922 -s 10 -d 7 -p ack -e 40 -c 0 -i 3760 -a 0 -x {10.0 9.0 1875 ------- null} - -t 2.13922 -s 10 -d 7 -p ack -e 40 -c 0 -i 3760 -a 0 -x {10.0 9.0 1875 ------- null} h -t 2.13922 -s 10 -d 7 -p ack -e 40 -c 0 -i 3760 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.13931 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3755 -a 0 -x {9.0 10.0 1882 ------- null} + -t 2.13931 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3755 -a 0 -x {9.0 10.0 1882 ------- null} h -t 2.13931 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3755 -a 0 -x {9.0 10.0 1882 ------- null} + -t 2.13968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3747 -a 0 -x {9.0 10.0 1878 ------- null} - -t 2.13968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3747 -a 0 -x {9.0 10.0 1878 ------- null} h -t 2.13968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3747 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.1397 -s 0 -d 9 -p ack -e 40 -c 0 -i 3750 -a 0 -x {10.0 9.0 1870 ------- null} + -t 2.1397 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3761 -a 0 -x {9.0 10.0 1885 ------- null} - -t 2.1397 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3761 -a 0 -x {9.0 10.0 1885 ------- null} h -t 2.1397 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3761 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.13997 -s 0 -d 9 -p ack -e 40 -c 0 -i 3754 -a 0 -x {10.0 9.0 1872 ------- null} - -t 2.13997 -s 0 -d 9 -p ack -e 40 -c 0 -i 3754 -a 0 -x {10.0 9.0 1872 ------- null} h -t 2.13997 -s 0 -d 9 -p ack -e 40 -c 0 -i 3754 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.14016 -s 10 -d 7 -p ack -e 40 -c 0 -i 3758 -a 0 -x {10.0 9.0 1874 ------- null} + -t 2.14016 -s 7 -d 0 -p ack -e 40 -c 0 -i 3758 -a 0 -x {10.0 9.0 1874 ------- null} h -t 2.14016 -s 7 -d 8 -p ack -e 40 -c 0 -i 3758 -a 0 -x {10.0 9.0 1874 ------- null} r -t 2.1403 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3743 -a 0 -x {9.0 10.0 1876 ------- null} + -t 2.1403 -s 10 -d 7 -p ack -e 40 -c 0 -i 3762 -a 0 -x {10.0 9.0 1876 ------- null} - -t 2.1403 -s 10 -d 7 -p ack -e 40 -c 0 -i 3762 -a 0 -x {10.0 9.0 1876 ------- null} h -t 2.1403 -s 10 -d 7 -p ack -e 40 -c 0 -i 3762 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.14035 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3757 -a 0 -x {9.0 10.0 1883 ------- null} + -t 2.14035 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3757 -a 0 -x {9.0 10.0 1883 ------- null} h -t 2.14035 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3757 -a 0 -x {9.0 10.0 1883 ------- null} r -t 2.1408 -s 0 -d 9 -p ack -e 40 -c 0 -i 3752 -a 0 -x {10.0 9.0 1871 ------- null} + -t 2.1408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3763 -a 0 -x {9.0 10.0 1886 ------- null} - -t 2.1408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3763 -a 0 -x {9.0 10.0 1886 ------- null} h -t 2.1408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3763 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.14083 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3749 -a 0 -x {9.0 10.0 1879 ------- null} - -t 2.14083 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3749 -a 0 -x {9.0 10.0 1879 ------- null} h -t 2.14083 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3749 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.14114 -s 0 -d 9 -p ack -e 40 -c 0 -i 3756 -a 0 -x {10.0 9.0 1873 ------- null} - -t 2.14114 -s 0 -d 9 -p ack -e 40 -c 0 -i 3756 -a 0 -x {10.0 9.0 1873 ------- null} h -t 2.14114 -s 0 -d 9 -p ack -e 40 -c 0 -i 3756 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.14125 -s 10 -d 7 -p ack -e 40 -c 0 -i 3760 -a 0 -x {10.0 9.0 1875 ------- null} + -t 2.14125 -s 7 -d 0 -p ack -e 40 -c 0 -i 3760 -a 0 -x {10.0 9.0 1875 ------- null} h -t 2.14125 -s 7 -d 8 -p ack -e 40 -c 0 -i 3760 -a 0 -x {10.0 9.0 1875 ------- null} r -t 2.14139 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3745 -a 0 -x {9.0 10.0 1877 ------- null} + -t 2.14139 -s 10 -d 7 -p ack -e 40 -c 0 -i 3764 -a 0 -x {10.0 9.0 1877 ------- null} - -t 2.14139 -s 10 -d 7 -p ack -e 40 -c 0 -i 3764 -a 0 -x {10.0 9.0 1877 ------- null} h -t 2.14139 -s 10 -d 7 -p ack -e 40 -c 0 -i 3764 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.14141 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3759 -a 0 -x {9.0 10.0 1884 ------- null} + -t 2.14141 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3759 -a 0 -x {9.0 10.0 1884 ------- null} h -t 2.14141 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3759 -a 0 -x {9.0 10.0 1884 ------- null} r -t 2.142 -s 0 -d 9 -p ack -e 40 -c 0 -i 3754 -a 0 -x {10.0 9.0 1872 ------- null} + -t 2.142 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3765 -a 0 -x {9.0 10.0 1887 ------- null} - -t 2.142 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3765 -a 0 -x {9.0 10.0 1887 ------- null} h -t 2.142 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3765 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.14213 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3751 -a 0 -x {9.0 10.0 1880 ------- null} - -t 2.14213 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3751 -a 0 -x {9.0 10.0 1880 ------- null} h -t 2.14213 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3751 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.14226 -s 0 -d 9 -p ack -e 40 -c 0 -i 3758 -a 0 -x {10.0 9.0 1874 ------- null} - -t 2.14226 -s 0 -d 9 -p ack -e 40 -c 0 -i 3758 -a 0 -x {10.0 9.0 1874 ------- null} h -t 2.14226 -s 0 -d 9 -p ack -e 40 -c 0 -i 3758 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.14234 -s 10 -d 7 -p ack -e 40 -c 0 -i 3762 -a 0 -x {10.0 9.0 1876 ------- null} + -t 2.14234 -s 7 -d 0 -p ack -e 40 -c 0 -i 3762 -a 0 -x {10.0 9.0 1876 ------- null} h -t 2.14234 -s 7 -d 8 -p ack -e 40 -c 0 -i 3762 -a 0 -x {10.0 9.0 1876 ------- null} r -t 2.14248 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3747 -a 0 -x {9.0 10.0 1878 ------- null} + -t 2.14248 -s 10 -d 7 -p ack -e 40 -c 0 -i 3766 -a 0 -x {10.0 9.0 1878 ------- null} - -t 2.14248 -s 10 -d 7 -p ack -e 40 -c 0 -i 3766 -a 0 -x {10.0 9.0 1878 ------- null} h -t 2.14248 -s 10 -d 7 -p ack -e 40 -c 0 -i 3766 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.1425 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3761 -a 0 -x {9.0 10.0 1885 ------- null} + -t 2.1425 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3761 -a 0 -x {9.0 10.0 1885 ------- null} h -t 2.1425 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3761 -a 0 -x {9.0 10.0 1885 ------- null} r -t 2.14317 -s 0 -d 9 -p ack -e 40 -c 0 -i 3756 -a 0 -x {10.0 9.0 1873 ------- null} + -t 2.14317 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3767 -a 0 -x {9.0 10.0 1888 ------- null} - -t 2.14317 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3767 -a 0 -x {9.0 10.0 1888 ------- null} h -t 2.14317 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3767 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.14322 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3753 -a 0 -x {9.0 10.0 1881 ------- null} - -t 2.14322 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3753 -a 0 -x {9.0 10.0 1881 ------- null} h -t 2.14322 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3753 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.14342 -s 10 -d 7 -p ack -e 40 -c 0 -i 3764 -a 0 -x {10.0 9.0 1877 ------- null} + -t 2.14342 -s 7 -d 0 -p ack -e 40 -c 0 -i 3764 -a 0 -x {10.0 9.0 1877 ------- null} h -t 2.14342 -s 7 -d 8 -p ack -e 40 -c 0 -i 3764 -a 0 -x {10.0 9.0 1877 ------- null} + -t 2.14347 -s 0 -d 9 -p ack -e 40 -c 0 -i 3760 -a 0 -x {10.0 9.0 1875 ------- null} - -t 2.14347 -s 0 -d 9 -p ack -e 40 -c 0 -i 3760 -a 0 -x {10.0 9.0 1875 ------- null} h -t 2.14347 -s 0 -d 9 -p ack -e 40 -c 0 -i 3760 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.1436 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3763 -a 0 -x {9.0 10.0 1886 ------- null} + -t 2.1436 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3763 -a 0 -x {9.0 10.0 1886 ------- null} h -t 2.1436 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3763 -a 0 -x {9.0 10.0 1886 ------- null} r -t 2.14363 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3749 -a 0 -x {9.0 10.0 1879 ------- null} + -t 2.14363 -s 10 -d 7 -p ack -e 40 -c 0 -i 3768 -a 0 -x {10.0 9.0 1879 ------- null} - -t 2.14363 -s 10 -d 7 -p ack -e 40 -c 0 -i 3768 -a 0 -x {10.0 9.0 1879 ------- null} h -t 2.14363 -s 10 -d 7 -p ack -e 40 -c 0 -i 3768 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.14429 -s 0 -d 9 -p ack -e 40 -c 0 -i 3758 -a 0 -x {10.0 9.0 1874 ------- null} + -t 2.14429 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3769 -a 0 -x {9.0 10.0 1889 ------- null} - -t 2.14429 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3769 -a 0 -x {9.0 10.0 1889 ------- null} h -t 2.14429 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3769 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.1444 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3755 -a 0 -x {9.0 10.0 1882 ------- null} - -t 2.1444 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3755 -a 0 -x {9.0 10.0 1882 ------- null} h -t 2.1444 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3755 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.14451 -s 10 -d 7 -p ack -e 40 -c 0 -i 3766 -a 0 -x {10.0 9.0 1878 ------- null} + -t 2.14451 -s 7 -d 0 -p ack -e 40 -c 0 -i 3766 -a 0 -x {10.0 9.0 1878 ------- null} h -t 2.14451 -s 7 -d 8 -p ack -e 40 -c 0 -i 3766 -a 0 -x {10.0 9.0 1878 ------- null} + -t 2.14467 -s 0 -d 9 -p ack -e 40 -c 0 -i 3762 -a 0 -x {10.0 9.0 1876 ------- null} - -t 2.14467 -s 0 -d 9 -p ack -e 40 -c 0 -i 3762 -a 0 -x {10.0 9.0 1876 ------- null} h -t 2.14467 -s 0 -d 9 -p ack -e 40 -c 0 -i 3762 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.1448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3765 -a 0 -x {9.0 10.0 1887 ------- null} + -t 2.1448 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3765 -a 0 -x {9.0 10.0 1887 ------- null} h -t 2.1448 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3765 -a 0 -x {9.0 10.0 1887 ------- null} r -t 2.14493 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3751 -a 0 -x {9.0 10.0 1880 ------- null} + -t 2.14493 -s 10 -d 7 -p ack -e 40 -c 0 -i 3770 -a 0 -x {10.0 9.0 1880 ------- null} - -t 2.14493 -s 10 -d 7 -p ack -e 40 -c 0 -i 3770 -a 0 -x {10.0 9.0 1880 ------- null} h -t 2.14493 -s 10 -d 7 -p ack -e 40 -c 0 -i 3770 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.1455 -s 0 -d 9 -p ack -e 40 -c 0 -i 3760 -a 0 -x {10.0 9.0 1875 ------- null} + -t 2.1455 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3771 -a 0 -x {9.0 10.0 1890 ------- null} - -t 2.1455 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3771 -a 0 -x {9.0 10.0 1890 ------- null} h -t 2.1455 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3771 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.14566 -s 10 -d 7 -p ack -e 40 -c 0 -i 3768 -a 0 -x {10.0 9.0 1879 ------- null} + -t 2.14566 -s 7 -d 0 -p ack -e 40 -c 0 -i 3768 -a 0 -x {10.0 9.0 1879 ------- null} h -t 2.14566 -s 7 -d 8 -p ack -e 40 -c 0 -i 3768 -a 0 -x {10.0 9.0 1879 ------- null} + -t 2.14573 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3757 -a 0 -x {9.0 10.0 1883 ------- null} - -t 2.14573 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3757 -a 0 -x {9.0 10.0 1883 ------- null} h -t 2.14573 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3757 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.14586 -s 0 -d 9 -p ack -e 40 -c 0 -i 3764 -a 0 -x {10.0 9.0 1877 ------- null} - -t 2.14586 -s 0 -d 9 -p ack -e 40 -c 0 -i 3764 -a 0 -x {10.0 9.0 1877 ------- null} h -t 2.14586 -s 0 -d 9 -p ack -e 40 -c 0 -i 3764 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.14597 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3767 -a 0 -x {9.0 10.0 1888 ------- null} + -t 2.14597 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3767 -a 0 -x {9.0 10.0 1888 ------- null} h -t 2.14597 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3767 -a 0 -x {9.0 10.0 1888 ------- null} r -t 2.14602 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3753 -a 0 -x {9.0 10.0 1881 ------- null} + -t 2.14602 -s 10 -d 7 -p ack -e 40 -c 0 -i 3772 -a 0 -x {10.0 9.0 1881 ------- null} - -t 2.14602 -s 10 -d 7 -p ack -e 40 -c 0 -i 3772 -a 0 -x {10.0 9.0 1881 ------- null} h -t 2.14602 -s 10 -d 7 -p ack -e 40 -c 0 -i 3772 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.1467 -s 0 -d 9 -p ack -e 40 -c 0 -i 3762 -a 0 -x {10.0 9.0 1876 ------- null} + -t 2.1467 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3773 -a 0 -x {9.0 10.0 1891 ------- null} - -t 2.1467 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3773 -a 0 -x {9.0 10.0 1891 ------- null} h -t 2.1467 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3773 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.14682 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3759 -a 0 -x {9.0 10.0 1884 ------- null} - -t 2.14682 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3759 -a 0 -x {9.0 10.0 1884 ------- null} h -t 2.14682 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3759 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.14696 -s 10 -d 7 -p ack -e 40 -c 0 -i 3770 -a 0 -x {10.0 9.0 1880 ------- null} + -t 2.14696 -s 7 -d 0 -p ack -e 40 -c 0 -i 3770 -a 0 -x {10.0 9.0 1880 ------- null} h -t 2.14696 -s 7 -d 8 -p ack -e 40 -c 0 -i 3770 -a 0 -x {10.0 9.0 1880 ------- null} r -t 2.14709 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3769 -a 0 -x {9.0 10.0 1889 ------- null} + -t 2.14709 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3769 -a 0 -x {9.0 10.0 1889 ------- null} h -t 2.14709 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3769 -a 0 -x {9.0 10.0 1889 ------- null} + -t 2.1471 -s 0 -d 9 -p ack -e 40 -c 0 -i 3766 -a 0 -x {10.0 9.0 1878 ------- null} - -t 2.1471 -s 0 -d 9 -p ack -e 40 -c 0 -i 3766 -a 0 -x {10.0 9.0 1878 ------- null} h -t 2.1471 -s 0 -d 9 -p ack -e 40 -c 0 -i 3766 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.1472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3755 -a 0 -x {9.0 10.0 1882 ------- null} + -t 2.1472 -s 10 -d 7 -p ack -e 40 -c 0 -i 3774 -a 0 -x {10.0 9.0 1882 ------- null} - -t 2.1472 -s 10 -d 7 -p ack -e 40 -c 0 -i 3774 -a 0 -x {10.0 9.0 1882 ------- null} h -t 2.1472 -s 10 -d 7 -p ack -e 40 -c 0 -i 3774 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.14789 -s 0 -d 9 -p ack -e 40 -c 0 -i 3764 -a 0 -x {10.0 9.0 1877 ------- null} + -t 2.14789 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3775 -a 0 -x {9.0 10.0 1892 ------- null} - -t 2.14789 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3775 -a 0 -x {9.0 10.0 1892 ------- null} h -t 2.14789 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3775 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.14805 -s 10 -d 7 -p ack -e 40 -c 0 -i 3772 -a 0 -x {10.0 9.0 1881 ------- null} + -t 2.14805 -s 7 -d 0 -p ack -e 40 -c 0 -i 3772 -a 0 -x {10.0 9.0 1881 ------- null} h -t 2.14805 -s 7 -d 8 -p ack -e 40 -c 0 -i 3772 -a 0 -x {10.0 9.0 1881 ------- null} + -t 2.14818 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3761 -a 0 -x {9.0 10.0 1885 ------- null} - -t 2.14818 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3761 -a 0 -x {9.0 10.0 1885 ------- null} h -t 2.14818 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3761 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.1483 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3771 -a 0 -x {9.0 10.0 1890 ------- null} + -t 2.1483 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3771 -a 0 -x {9.0 10.0 1890 ------- null} h -t 2.1483 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3771 -a 0 -x {9.0 10.0 1890 ------- null} + -t 2.14843 -s 0 -d 9 -p ack -e 40 -c 0 -i 3768 -a 0 -x {10.0 9.0 1879 ------- null} - -t 2.14843 -s 0 -d 9 -p ack -e 40 -c 0 -i 3768 -a 0 -x {10.0 9.0 1879 ------- null} h -t 2.14843 -s 0 -d 9 -p ack -e 40 -c 0 -i 3768 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.14853 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3757 -a 0 -x {9.0 10.0 1883 ------- null} + -t 2.14853 -s 10 -d 7 -p ack -e 40 -c 0 -i 3776 -a 0 -x {10.0 9.0 1883 ------- null} - -t 2.14853 -s 10 -d 7 -p ack -e 40 -c 0 -i 3776 -a 0 -x {10.0 9.0 1883 ------- null} h -t 2.14853 -s 10 -d 7 -p ack -e 40 -c 0 -i 3776 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.14914 -s 0 -d 9 -p ack -e 40 -c 0 -i 3766 -a 0 -x {10.0 9.0 1878 ------- null} + -t 2.14914 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3777 -a 0 -x {9.0 10.0 1893 ------- null} - -t 2.14914 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3777 -a 0 -x {9.0 10.0 1893 ------- null} h -t 2.14914 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3777 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.14923 -s 10 -d 7 -p ack -e 40 -c 0 -i 3774 -a 0 -x {10.0 9.0 1882 ------- null} + -t 2.14923 -s 7 -d 0 -p ack -e 40 -c 0 -i 3774 -a 0 -x {10.0 9.0 1882 ------- null} h -t 2.14923 -s 7 -d 8 -p ack -e 40 -c 0 -i 3774 -a 0 -x {10.0 9.0 1882 ------- null} + -t 2.1493 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3763 -a 0 -x {9.0 10.0 1886 ------- null} - -t 2.1493 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3763 -a 0 -x {9.0 10.0 1886 ------- null} h -t 2.1493 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3763 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.1495 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3773 -a 0 -x {9.0 10.0 1891 ------- null} + -t 2.1495 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3773 -a 0 -x {9.0 10.0 1891 ------- null} h -t 2.1495 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3773 -a 0 -x {9.0 10.0 1891 ------- null} + -t 2.1496 -s 0 -d 9 -p ack -e 40 -c 0 -i 3770 -a 0 -x {10.0 9.0 1880 ------- null} - -t 2.1496 -s 0 -d 9 -p ack -e 40 -c 0 -i 3770 -a 0 -x {10.0 9.0 1880 ------- null} h -t 2.1496 -s 0 -d 9 -p ack -e 40 -c 0 -i 3770 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.14962 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3759 -a 0 -x {9.0 10.0 1884 ------- null} + -t 2.14962 -s 10 -d 7 -p ack -e 40 -c 0 -i 3778 -a 0 -x {10.0 9.0 1884 ------- null} - -t 2.14962 -s 10 -d 7 -p ack -e 40 -c 0 -i 3778 -a 0 -x {10.0 9.0 1884 ------- null} h -t 2.14962 -s 10 -d 7 -p ack -e 40 -c 0 -i 3778 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.15046 -s 0 -d 9 -p ack -e 40 -c 0 -i 3768 -a 0 -x {10.0 9.0 1879 ------- null} + -t 2.15046 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3779 -a 0 -x {9.0 10.0 1894 ------- null} - -t 2.15046 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3779 -a 0 -x {9.0 10.0 1894 ------- null} h -t 2.15046 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3779 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.15046 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3765 -a 0 -x {9.0 10.0 1887 ------- null} - -t 2.15046 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3765 -a 0 -x {9.0 10.0 1887 ------- null} h -t 2.15046 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3765 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.15056 -s 10 -d 7 -p ack -e 40 -c 0 -i 3776 -a 0 -x {10.0 9.0 1883 ------- null} + -t 2.15056 -s 7 -d 0 -p ack -e 40 -c 0 -i 3776 -a 0 -x {10.0 9.0 1883 ------- null} h -t 2.15056 -s 7 -d 8 -p ack -e 40 -c 0 -i 3776 -a 0 -x {10.0 9.0 1883 ------- null} + -t 2.15062 -s 0 -d 9 -p ack -e 40 -c 0 -i 3772 -a 0 -x {10.0 9.0 1881 ------- null} - -t 2.15062 -s 0 -d 9 -p ack -e 40 -c 0 -i 3772 -a 0 -x {10.0 9.0 1881 ------- null} h -t 2.15062 -s 0 -d 9 -p ack -e 40 -c 0 -i 3772 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.15069 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3775 -a 0 -x {9.0 10.0 1892 ------- null} + -t 2.15069 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3775 -a 0 -x {9.0 10.0 1892 ------- null} h -t 2.15069 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3775 -a 0 -x {9.0 10.0 1892 ------- null} r -t 2.15098 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3761 -a 0 -x {9.0 10.0 1885 ------- null} + -t 2.15098 -s 10 -d 7 -p ack -e 40 -c 0 -i 3780 -a 0 -x {10.0 9.0 1885 ------- null} - -t 2.15098 -s 10 -d 7 -p ack -e 40 -c 0 -i 3780 -a 0 -x {10.0 9.0 1885 ------- null} h -t 2.15098 -s 10 -d 7 -p ack -e 40 -c 0 -i 3780 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.15155 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3767 -a 0 -x {9.0 10.0 1888 ------- null} - -t 2.15155 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3767 -a 0 -x {9.0 10.0 1888 ------- null} h -t 2.15155 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3767 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.15163 -s 0 -d 9 -p ack -e 40 -c 0 -i 3770 -a 0 -x {10.0 9.0 1880 ------- null} + -t 2.15163 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3781 -a 0 -x {9.0 10.0 1895 ------- null} - -t 2.15163 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3781 -a 0 -x {9.0 10.0 1895 ------- null} h -t 2.15163 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3781 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.15165 -s 10 -d 7 -p ack -e 40 -c 0 -i 3778 -a 0 -x {10.0 9.0 1884 ------- null} + -t 2.15165 -s 7 -d 0 -p ack -e 40 -c 0 -i 3778 -a 0 -x {10.0 9.0 1884 ------- null} h -t 2.15165 -s 7 -d 8 -p ack -e 40 -c 0 -i 3778 -a 0 -x {10.0 9.0 1884 ------- null} + -t 2.15184 -s 0 -d 9 -p ack -e 40 -c 0 -i 3774 -a 0 -x {10.0 9.0 1882 ------- null} - -t 2.15184 -s 0 -d 9 -p ack -e 40 -c 0 -i 3774 -a 0 -x {10.0 9.0 1882 ------- null} h -t 2.15184 -s 0 -d 9 -p ack -e 40 -c 0 -i 3774 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.15194 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3777 -a 0 -x {9.0 10.0 1893 ------- null} + -t 2.15194 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3777 -a 0 -x {9.0 10.0 1893 ------- null} h -t 2.15194 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3777 -a 0 -x {9.0 10.0 1893 ------- null} r -t 2.1521 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3763 -a 0 -x {9.0 10.0 1886 ------- null} + -t 2.1521 -s 10 -d 7 -p ack -e 40 -c 0 -i 3782 -a 0 -x {10.0 9.0 1886 ------- null} - -t 2.1521 -s 10 -d 7 -p ack -e 40 -c 0 -i 3782 -a 0 -x {10.0 9.0 1886 ------- null} h -t 2.1521 -s 10 -d 7 -p ack -e 40 -c 0 -i 3782 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.15266 -s 0 -d 9 -p ack -e 40 -c 0 -i 3772 -a 0 -x {10.0 9.0 1881 ------- null} + -t 2.15266 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3783 -a 0 -x {9.0 10.0 1896 ------- null} - -t 2.15266 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3783 -a 0 -x {9.0 10.0 1896 ------- null} h -t 2.15266 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3783 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.15277 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3769 -a 0 -x {9.0 10.0 1889 ------- null} - -t 2.15277 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3769 -a 0 -x {9.0 10.0 1889 ------- null} h -t 2.15277 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3769 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.15293 -s 0 -d 9 -p ack -e 40 -c 0 -i 3776 -a 0 -x {10.0 9.0 1883 ------- null} - -t 2.15293 -s 0 -d 9 -p ack -e 40 -c 0 -i 3776 -a 0 -x {10.0 9.0 1883 ------- null} h -t 2.15293 -s 0 -d 9 -p ack -e 40 -c 0 -i 3776 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.15301 -s 10 -d 7 -p ack -e 40 -c 0 -i 3780 -a 0 -x {10.0 9.0 1885 ------- null} + -t 2.15301 -s 7 -d 0 -p ack -e 40 -c 0 -i 3780 -a 0 -x {10.0 9.0 1885 ------- null} h -t 2.15301 -s 7 -d 8 -p ack -e 40 -c 0 -i 3780 -a 0 -x {10.0 9.0 1885 ------- null} r -t 2.15326 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3779 -a 0 -x {9.0 10.0 1894 ------- null} + -t 2.15326 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3779 -a 0 -x {9.0 10.0 1894 ------- null} h -t 2.15326 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3779 -a 0 -x {9.0 10.0 1894 ------- null} r -t 2.15326 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3765 -a 0 -x {9.0 10.0 1887 ------- null} + -t 2.15326 -s 10 -d 7 -p ack -e 40 -c 0 -i 3784 -a 0 -x {10.0 9.0 1887 ------- null} - -t 2.15326 -s 10 -d 7 -p ack -e 40 -c 0 -i 3784 -a 0 -x {10.0 9.0 1887 ------- null} h -t 2.15326 -s 10 -d 7 -p ack -e 40 -c 0 -i 3784 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.15386 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3771 -a 0 -x {9.0 10.0 1890 ------- null} - -t 2.15386 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3771 -a 0 -x {9.0 10.0 1890 ------- null} h -t 2.15386 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3771 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.15387 -s 0 -d 9 -p ack -e 40 -c 0 -i 3774 -a 0 -x {10.0 9.0 1882 ------- null} + -t 2.15387 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3785 -a 0 -x {9.0 10.0 1897 ------- null} - -t 2.15387 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3785 -a 0 -x {9.0 10.0 1897 ------- null} h -t 2.15387 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3785 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.15397 -s 0 -d 9 -p ack -e 40 -c 0 -i 3778 -a 0 -x {10.0 9.0 1884 ------- null} - -t 2.15397 -s 0 -d 9 -p ack -e 40 -c 0 -i 3778 -a 0 -x {10.0 9.0 1884 ------- null} h -t 2.15397 -s 0 -d 9 -p ack -e 40 -c 0 -i 3778 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.15413 -s 10 -d 7 -p ack -e 40 -c 0 -i 3782 -a 0 -x {10.0 9.0 1886 ------- null} + -t 2.15413 -s 7 -d 0 -p ack -e 40 -c 0 -i 3782 -a 0 -x {10.0 9.0 1886 ------- null} h -t 2.15413 -s 7 -d 8 -p ack -e 40 -c 0 -i 3782 -a 0 -x {10.0 9.0 1886 ------- null} r -t 2.15435 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3767 -a 0 -x {9.0 10.0 1888 ------- null} + -t 2.15435 -s 10 -d 7 -p ack -e 40 -c 0 -i 3786 -a 0 -x {10.0 9.0 1888 ------- null} - -t 2.15435 -s 10 -d 7 -p ack -e 40 -c 0 -i 3786 -a 0 -x {10.0 9.0 1888 ------- null} h -t 2.15435 -s 10 -d 7 -p ack -e 40 -c 0 -i 3786 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.15443 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3781 -a 0 -x {9.0 10.0 1895 ------- null} + -t 2.15443 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3781 -a 0 -x {9.0 10.0 1895 ------- null} h -t 2.15443 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3781 -a 0 -x {9.0 10.0 1895 ------- null} + -t 2.15494 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3773 -a 0 -x {9.0 10.0 1891 ------- null} - -t 2.15494 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3773 -a 0 -x {9.0 10.0 1891 ------- null} h -t 2.15494 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3773 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.15496 -s 0 -d 9 -p ack -e 40 -c 0 -i 3776 -a 0 -x {10.0 9.0 1883 ------- null} + -t 2.15496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3787 -a 0 -x {9.0 10.0 1898 ------- null} - -t 2.15496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3787 -a 0 -x {9.0 10.0 1898 ------- null} h -t 2.15496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3787 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.15525 -s 0 -d 9 -p ack -e 40 -c 0 -i 3780 -a 0 -x {10.0 9.0 1885 ------- null} - -t 2.15525 -s 0 -d 9 -p ack -e 40 -c 0 -i 3780 -a 0 -x {10.0 9.0 1885 ------- null} h -t 2.15525 -s 0 -d 9 -p ack -e 40 -c 0 -i 3780 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.1553 -s 10 -d 7 -p ack -e 40 -c 0 -i 3784 -a 0 -x {10.0 9.0 1887 ------- null} + -t 2.1553 -s 7 -d 0 -p ack -e 40 -c 0 -i 3784 -a 0 -x {10.0 9.0 1887 ------- null} h -t 2.1553 -s 7 -d 8 -p ack -e 40 -c 0 -i 3784 -a 0 -x {10.0 9.0 1887 ------- null} r -t 2.15546 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3783 -a 0 -x {9.0 10.0 1896 ------- null} + -t 2.15546 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3783 -a 0 -x {9.0 10.0 1896 ------- null} h -t 2.15546 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3783 -a 0 -x {9.0 10.0 1896 ------- null} r -t 2.15557 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3769 -a 0 -x {9.0 10.0 1889 ------- null} + -t 2.15557 -s 10 -d 7 -p ack -e 40 -c 0 -i 3788 -a 0 -x {10.0 9.0 1889 ------- null} - -t 2.15557 -s 10 -d 7 -p ack -e 40 -c 0 -i 3788 -a 0 -x {10.0 9.0 1889 ------- null} h -t 2.15557 -s 10 -d 7 -p ack -e 40 -c 0 -i 3788 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.156 -s 0 -d 9 -p ack -e 40 -c 0 -i 3778 -a 0 -x {10.0 9.0 1884 ------- null} + -t 2.156 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3789 -a 0 -x {9.0 10.0 1899 ------- null} - -t 2.156 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3789 -a 0 -x {9.0 10.0 1899 ------- null} h -t 2.156 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3789 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.15622 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3775 -a 0 -x {9.0 10.0 1892 ------- null} - -t 2.15622 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3775 -a 0 -x {9.0 10.0 1892 ------- null} h -t 2.15622 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3775 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.15638 -s 10 -d 7 -p ack -e 40 -c 0 -i 3786 -a 0 -x {10.0 9.0 1888 ------- null} + -t 2.15638 -s 7 -d 0 -p ack -e 40 -c 0 -i 3786 -a 0 -x {10.0 9.0 1888 ------- null} h -t 2.15638 -s 7 -d 8 -p ack -e 40 -c 0 -i 3786 -a 0 -x {10.0 9.0 1888 ------- null} + -t 2.15651 -s 0 -d 9 -p ack -e 40 -c 0 -i 3782 -a 0 -x {10.0 9.0 1886 ------- null} - -t 2.15651 -s 0 -d 9 -p ack -e 40 -c 0 -i 3782 -a 0 -x {10.0 9.0 1886 ------- null} h -t 2.15651 -s 0 -d 9 -p ack -e 40 -c 0 -i 3782 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.15666 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3771 -a 0 -x {9.0 10.0 1890 ------- null} + -t 2.15666 -s 10 -d 7 -p ack -e 40 -c 0 -i 3790 -a 0 -x {10.0 9.0 1890 ------- null} - -t 2.15666 -s 10 -d 7 -p ack -e 40 -c 0 -i 3790 -a 0 -x {10.0 9.0 1890 ------- null} h -t 2.15666 -s 10 -d 7 -p ack -e 40 -c 0 -i 3790 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.15667 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3785 -a 0 -x {9.0 10.0 1897 ------- null} + -t 2.15667 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3785 -a 0 -x {9.0 10.0 1897 ------- null} h -t 2.15667 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3785 -a 0 -x {9.0 10.0 1897 ------- null} r -t 2.15728 -s 0 -d 9 -p ack -e 40 -c 0 -i 3780 -a 0 -x {10.0 9.0 1885 ------- null} + -t 2.15728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3791 -a 0 -x {9.0 10.0 1900 ------- null} - -t 2.15728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3791 -a 0 -x {9.0 10.0 1900 ------- null} h -t 2.15728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3791 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.15752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3777 -a 0 -x {9.0 10.0 1893 ------- null} - -t 2.15752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3777 -a 0 -x {9.0 10.0 1893 ------- null} h -t 2.15752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3777 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.1576 -s 10 -d 7 -p ack -e 40 -c 0 -i 3788 -a 0 -x {10.0 9.0 1889 ------- null} + -t 2.1576 -s 7 -d 0 -p ack -e 40 -c 0 -i 3788 -a 0 -x {10.0 9.0 1889 ------- null} h -t 2.1576 -s 7 -d 8 -p ack -e 40 -c 0 -i 3788 -a 0 -x {10.0 9.0 1889 ------- null} + -t 2.15762 -s 0 -d 9 -p ack -e 40 -c 0 -i 3784 -a 0 -x {10.0 9.0 1887 ------- null} - -t 2.15762 -s 0 -d 9 -p ack -e 40 -c 0 -i 3784 -a 0 -x {10.0 9.0 1887 ------- null} h -t 2.15762 -s 0 -d 9 -p ack -e 40 -c 0 -i 3784 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.15774 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3773 -a 0 -x {9.0 10.0 1891 ------- null} + -t 2.15774 -s 10 -d 7 -p ack -e 40 -c 0 -i 3792 -a 0 -x {10.0 9.0 1891 ------- null} - -t 2.15774 -s 10 -d 7 -p ack -e 40 -c 0 -i 3792 -a 0 -x {10.0 9.0 1891 ------- null} h -t 2.15774 -s 10 -d 7 -p ack -e 40 -c 0 -i 3792 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.15776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3787 -a 0 -x {9.0 10.0 1898 ------- null} + -t 2.15776 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3787 -a 0 -x {9.0 10.0 1898 ------- null} h -t 2.15776 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3787 -a 0 -x {9.0 10.0 1898 ------- null} r -t 2.15854 -s 0 -d 9 -p ack -e 40 -c 0 -i 3782 -a 0 -x {10.0 9.0 1886 ------- null} + -t 2.15854 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3793 -a 0 -x {9.0 10.0 1901 ------- null} - -t 2.15854 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3793 -a 0 -x {9.0 10.0 1901 ------- null} h -t 2.15854 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3793 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.15861 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3779 -a 0 -x {9.0 10.0 1894 ------- null} - -t 2.15861 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3779 -a 0 -x {9.0 10.0 1894 ------- null} h -t 2.15861 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3779 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.15869 -s 10 -d 7 -p ack -e 40 -c 0 -i 3790 -a 0 -x {10.0 9.0 1890 ------- null} + -t 2.15869 -s 7 -d 0 -p ack -e 40 -c 0 -i 3790 -a 0 -x {10.0 9.0 1890 ------- null} h -t 2.15869 -s 7 -d 8 -p ack -e 40 -c 0 -i 3790 -a 0 -x {10.0 9.0 1890 ------- null} r -t 2.1588 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3789 -a 0 -x {9.0 10.0 1899 ------- null} + -t 2.1588 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3789 -a 0 -x {9.0 10.0 1899 ------- null} h -t 2.1588 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3789 -a 0 -x {9.0 10.0 1899 ------- null} + -t 2.15886 -s 0 -d 9 -p ack -e 40 -c 0 -i 3786 -a 0 -x {10.0 9.0 1888 ------- null} - -t 2.15886 -s 0 -d 9 -p ack -e 40 -c 0 -i 3786 -a 0 -x {10.0 9.0 1888 ------- null} h -t 2.15886 -s 0 -d 9 -p ack -e 40 -c 0 -i 3786 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.15902 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3775 -a 0 -x {9.0 10.0 1892 ------- null} + -t 2.15902 -s 10 -d 7 -p ack -e 40 -c 0 -i 3794 -a 0 -x {10.0 9.0 1892 ------- null} - -t 2.15902 -s 10 -d 7 -p ack -e 40 -c 0 -i 3794 -a 0 -x {10.0 9.0 1892 ------- null} h -t 2.15902 -s 10 -d 7 -p ack -e 40 -c 0 -i 3794 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.15965 -s 0 -d 9 -p ack -e 40 -c 0 -i 3784 -a 0 -x {10.0 9.0 1887 ------- null} + -t 2.15965 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3795 -a 0 -x {9.0 10.0 1902 ------- null} - -t 2.15965 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3795 -a 0 -x {9.0 10.0 1902 ------- null} h -t 2.15965 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3795 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.15978 -s 10 -d 7 -p ack -e 40 -c 0 -i 3792 -a 0 -x {10.0 9.0 1891 ------- null} + -t 2.15978 -s 7 -d 0 -p ack -e 40 -c 0 -i 3792 -a 0 -x {10.0 9.0 1891 ------- null} h -t 2.15978 -s 7 -d 8 -p ack -e 40 -c 0 -i 3792 -a 0 -x {10.0 9.0 1891 ------- null} + -t 2.15992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3781 -a 0 -x {9.0 10.0 1895 ------- null} - -t 2.15992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3781 -a 0 -x {9.0 10.0 1895 ------- null} h -t 2.15992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3781 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.16008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3791 -a 0 -x {9.0 10.0 1900 ------- null} + -t 2.16008 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3791 -a 0 -x {9.0 10.0 1900 ------- null} h -t 2.16008 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3791 -a 0 -x {9.0 10.0 1900 ------- null} + -t 2.16011 -s 0 -d 9 -p ack -e 40 -c 0 -i 3788 -a 0 -x {10.0 9.0 1889 ------- null} - -t 2.16011 -s 0 -d 9 -p ack -e 40 -c 0 -i 3788 -a 0 -x {10.0 9.0 1889 ------- null} h -t 2.16011 -s 0 -d 9 -p ack -e 40 -c 0 -i 3788 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.16032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3777 -a 0 -x {9.0 10.0 1893 ------- null} + -t 2.16032 -s 10 -d 7 -p ack -e 40 -c 0 -i 3796 -a 0 -x {10.0 9.0 1893 ------- null} - -t 2.16032 -s 10 -d 7 -p ack -e 40 -c 0 -i 3796 -a 0 -x {10.0 9.0 1893 ------- null} h -t 2.16032 -s 10 -d 7 -p ack -e 40 -c 0 -i 3796 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.1609 -s 0 -d 9 -p ack -e 40 -c 0 -i 3786 -a 0 -x {10.0 9.0 1888 ------- null} + -t 2.1609 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3797 -a 0 -x {9.0 10.0 1903 ------- null} - -t 2.1609 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3797 -a 0 -x {9.0 10.0 1903 ------- null} h -t 2.1609 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3797 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.16101 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3783 -a 0 -x {9.0 10.0 1896 ------- null} - -t 2.16101 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3783 -a 0 -x {9.0 10.0 1896 ------- null} h -t 2.16101 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3783 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.16106 -s 10 -d 7 -p ack -e 40 -c 0 -i 3794 -a 0 -x {10.0 9.0 1892 ------- null} + -t 2.16106 -s 7 -d 0 -p ack -e 40 -c 0 -i 3794 -a 0 -x {10.0 9.0 1892 ------- null} h -t 2.16106 -s 7 -d 8 -p ack -e 40 -c 0 -i 3794 -a 0 -x {10.0 9.0 1892 ------- null} + -t 2.1613 -s 0 -d 9 -p ack -e 40 -c 0 -i 3790 -a 0 -x {10.0 9.0 1890 ------- null} - -t 2.1613 -s 0 -d 9 -p ack -e 40 -c 0 -i 3790 -a 0 -x {10.0 9.0 1890 ------- null} h -t 2.1613 -s 0 -d 9 -p ack -e 40 -c 0 -i 3790 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.16134 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3793 -a 0 -x {9.0 10.0 1901 ------- null} + -t 2.16134 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3793 -a 0 -x {9.0 10.0 1901 ------- null} h -t 2.16134 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3793 -a 0 -x {9.0 10.0 1901 ------- null} r -t 2.16141 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3779 -a 0 -x {9.0 10.0 1894 ------- null} + -t 2.16141 -s 10 -d 7 -p ack -e 40 -c 0 -i 3798 -a 0 -x {10.0 9.0 1894 ------- null} - -t 2.16141 -s 10 -d 7 -p ack -e 40 -c 0 -i 3798 -a 0 -x {10.0 9.0 1894 ------- null} h -t 2.16141 -s 10 -d 7 -p ack -e 40 -c 0 -i 3798 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.16214 -s 0 -d 9 -p ack -e 40 -c 0 -i 3788 -a 0 -x {10.0 9.0 1889 ------- null} + -t 2.16214 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3799 -a 0 -x {9.0 10.0 1904 ------- null} - -t 2.16214 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3799 -a 0 -x {9.0 10.0 1904 ------- null} h -t 2.16214 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3799 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.16227 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3785 -a 0 -x {9.0 10.0 1897 ------- null} - -t 2.16227 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3785 -a 0 -x {9.0 10.0 1897 ------- null} h -t 2.16227 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3785 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.16235 -s 10 -d 7 -p ack -e 40 -c 0 -i 3796 -a 0 -x {10.0 9.0 1893 ------- null} + -t 2.16235 -s 7 -d 0 -p ack -e 40 -c 0 -i 3796 -a 0 -x {10.0 9.0 1893 ------- null} h -t 2.16235 -s 7 -d 8 -p ack -e 40 -c 0 -i 3796 -a 0 -x {10.0 9.0 1893 ------- null} r -t 2.16245 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3795 -a 0 -x {9.0 10.0 1902 ------- null} + -t 2.16245 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3795 -a 0 -x {9.0 10.0 1902 ------- null} h -t 2.16245 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3795 -a 0 -x {9.0 10.0 1902 ------- null} + -t 2.16251 -s 0 -d 9 -p ack -e 40 -c 0 -i 3792 -a 0 -x {10.0 9.0 1891 ------- null} - -t 2.16251 -s 0 -d 9 -p ack -e 40 -c 0 -i 3792 -a 0 -x {10.0 9.0 1891 ------- null} h -t 2.16251 -s 0 -d 9 -p ack -e 40 -c 0 -i 3792 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.16272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3781 -a 0 -x {9.0 10.0 1895 ------- null} + -t 2.16272 -s 10 -d 7 -p ack -e 40 -c 0 -i 3800 -a 0 -x {10.0 9.0 1895 ------- null} - -t 2.16272 -s 10 -d 7 -p ack -e 40 -c 0 -i 3800 -a 0 -x {10.0 9.0 1895 ------- null} h -t 2.16272 -s 10 -d 7 -p ack -e 40 -c 0 -i 3800 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.16333 -s 0 -d 9 -p ack -e 40 -c 0 -i 3790 -a 0 -x {10.0 9.0 1890 ------- null} + -t 2.16333 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3801 -a 0 -x {9.0 10.0 1905 ------- null} - -t 2.16333 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3801 -a 0 -x {9.0 10.0 1905 ------- null} h -t 2.16333 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3801 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.16336 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3787 -a 0 -x {9.0 10.0 1898 ------- null} - -t 2.16336 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3787 -a 0 -x {9.0 10.0 1898 ------- null} h -t 2.16336 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3787 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.16342 -s 0 -d 9 -p ack -e 40 -c 0 -i 3794 -a 0 -x {10.0 9.0 1892 ------- null} - -t 2.16342 -s 0 -d 9 -p ack -e 40 -c 0 -i 3794 -a 0 -x {10.0 9.0 1892 ------- null} h -t 2.16342 -s 0 -d 9 -p ack -e 40 -c 0 -i 3794 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.16344 -s 10 -d 7 -p ack -e 40 -c 0 -i 3798 -a 0 -x {10.0 9.0 1894 ------- null} + -t 2.16344 -s 7 -d 0 -p ack -e 40 -c 0 -i 3798 -a 0 -x {10.0 9.0 1894 ------- null} h -t 2.16344 -s 7 -d 8 -p ack -e 40 -c 0 -i 3798 -a 0 -x {10.0 9.0 1894 ------- null} r -t 2.1637 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3797 -a 0 -x {9.0 10.0 1903 ------- null} + -t 2.1637 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3797 -a 0 -x {9.0 10.0 1903 ------- null} h -t 2.1637 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3797 -a 0 -x {9.0 10.0 1903 ------- null} r -t 2.16381 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3783 -a 0 -x {9.0 10.0 1896 ------- null} + -t 2.16381 -s 10 -d 7 -p ack -e 40 -c 0 -i 3802 -a 0 -x {10.0 9.0 1896 ------- null} - -t 2.16381 -s 10 -d 7 -p ack -e 40 -c 0 -i 3802 -a 0 -x {10.0 9.0 1896 ------- null} h -t 2.16381 -s 10 -d 7 -p ack -e 40 -c 0 -i 3802 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.16445 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3789 -a 0 -x {9.0 10.0 1899 ------- null} - -t 2.16445 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3789 -a 0 -x {9.0 10.0 1899 ------- null} h -t 2.16445 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3789 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.16454 -s 0 -d 9 -p ack -e 40 -c 0 -i 3792 -a 0 -x {10.0 9.0 1891 ------- null} + -t 2.16454 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3803 -a 0 -x {9.0 10.0 1906 ------- null} - -t 2.16454 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3803 -a 0 -x {9.0 10.0 1906 ------- null} h -t 2.16454 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3803 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.16469 -s 0 -d 9 -p ack -e 40 -c 0 -i 3796 -a 0 -x {10.0 9.0 1893 ------- null} - -t 2.16469 -s 0 -d 9 -p ack -e 40 -c 0 -i 3796 -a 0 -x {10.0 9.0 1893 ------- null} h -t 2.16469 -s 0 -d 9 -p ack -e 40 -c 0 -i 3796 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.16475 -s 10 -d 7 -p ack -e 40 -c 0 -i 3800 -a 0 -x {10.0 9.0 1895 ------- null} + -t 2.16475 -s 7 -d 0 -p ack -e 40 -c 0 -i 3800 -a 0 -x {10.0 9.0 1895 ------- null} h -t 2.16475 -s 7 -d 8 -p ack -e 40 -c 0 -i 3800 -a 0 -x {10.0 9.0 1895 ------- null} r -t 2.16494 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3799 -a 0 -x {9.0 10.0 1904 ------- null} + -t 2.16494 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3799 -a 0 -x {9.0 10.0 1904 ------- null} h -t 2.16494 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3799 -a 0 -x {9.0 10.0 1904 ------- null} r -t 2.16507 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3785 -a 0 -x {9.0 10.0 1897 ------- null} + -t 2.16507 -s 10 -d 7 -p ack -e 40 -c 0 -i 3804 -a 0 -x {10.0 9.0 1897 ------- null} - -t 2.16507 -s 10 -d 7 -p ack -e 40 -c 0 -i 3804 -a 0 -x {10.0 9.0 1897 ------- null} h -t 2.16507 -s 10 -d 7 -p ack -e 40 -c 0 -i 3804 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.16546 -s 0 -d 9 -p ack -e 40 -c 0 -i 3794 -a 0 -x {10.0 9.0 1892 ------- null} + -t 2.16546 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3805 -a 0 -x {9.0 10.0 1907 ------- null} - -t 2.16546 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3805 -a 0 -x {9.0 10.0 1907 ------- null} h -t 2.16546 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3805 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.16554 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3791 -a 0 -x {9.0 10.0 1900 ------- null} - -t 2.16554 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3791 -a 0 -x {9.0 10.0 1900 ------- null} h -t 2.16554 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3791 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.1657 -s 0 -d 9 -p ack -e 40 -c 0 -i 3798 -a 0 -x {10.0 9.0 1894 ------- null} - -t 2.1657 -s 0 -d 9 -p ack -e 40 -c 0 -i 3798 -a 0 -x {10.0 9.0 1894 ------- null} h -t 2.1657 -s 0 -d 9 -p ack -e 40 -c 0 -i 3798 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.16584 -s 10 -d 7 -p ack -e 40 -c 0 -i 3802 -a 0 -x {10.0 9.0 1896 ------- null} + -t 2.16584 -s 7 -d 0 -p ack -e 40 -c 0 -i 3802 -a 0 -x {10.0 9.0 1896 ------- null} h -t 2.16584 -s 7 -d 8 -p ack -e 40 -c 0 -i 3802 -a 0 -x {10.0 9.0 1896 ------- null} r -t 2.16613 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3801 -a 0 -x {9.0 10.0 1905 ------- null} + -t 2.16613 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3801 -a 0 -x {9.0 10.0 1905 ------- null} h -t 2.16613 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3801 -a 0 -x {9.0 10.0 1905 ------- null} r -t 2.16616 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3787 -a 0 -x {9.0 10.0 1898 ------- null} + -t 2.16616 -s 10 -d 7 -p ack -e 40 -c 0 -i 3806 -a 0 -x {10.0 9.0 1898 ------- null} - -t 2.16616 -s 10 -d 7 -p ack -e 40 -c 0 -i 3806 -a 0 -x {10.0 9.0 1898 ------- null} h -t 2.16616 -s 10 -d 7 -p ack -e 40 -c 0 -i 3806 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.16662 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3793 -a 0 -x {9.0 10.0 1901 ------- null} - -t 2.16662 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3793 -a 0 -x {9.0 10.0 1901 ------- null} h -t 2.16662 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3793 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.16672 -s 0 -d 9 -p ack -e 40 -c 0 -i 3796 -a 0 -x {10.0 9.0 1893 ------- null} + -t 2.16672 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3807 -a 0 -x {9.0 10.0 1908 ------- null} - -t 2.16672 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3807 -a 0 -x {9.0 10.0 1908 ------- null} h -t 2.16672 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3807 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.1668 -s 0 -d 9 -p ack -e 40 -c 0 -i 3800 -a 0 -x {10.0 9.0 1895 ------- null} - -t 2.1668 -s 0 -d 9 -p ack -e 40 -c 0 -i 3800 -a 0 -x {10.0 9.0 1895 ------- null} h -t 2.1668 -s 0 -d 9 -p ack -e 40 -c 0 -i 3800 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.1671 -s 10 -d 7 -p ack -e 40 -c 0 -i 3804 -a 0 -x {10.0 9.0 1897 ------- null} + -t 2.1671 -s 7 -d 0 -p ack -e 40 -c 0 -i 3804 -a 0 -x {10.0 9.0 1897 ------- null} h -t 2.1671 -s 7 -d 8 -p ack -e 40 -c 0 -i 3804 -a 0 -x {10.0 9.0 1897 ------- null} r -t 2.16725 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3789 -a 0 -x {9.0 10.0 1899 ------- null} + -t 2.16725 -s 10 -d 7 -p ack -e 40 -c 0 -i 3808 -a 0 -x {10.0 9.0 1899 ------- null} - -t 2.16725 -s 10 -d 7 -p ack -e 40 -c 0 -i 3808 -a 0 -x {10.0 9.0 1899 ------- null} h -t 2.16725 -s 10 -d 7 -p ack -e 40 -c 0 -i 3808 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.16734 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3803 -a 0 -x {9.0 10.0 1906 ------- null} + -t 2.16734 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3803 -a 0 -x {9.0 10.0 1906 ------- null} h -t 2.16734 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3803 -a 0 -x {9.0 10.0 1906 ------- null} + -t 2.16771 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3795 -a 0 -x {9.0 10.0 1902 ------- null} - -t 2.16771 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3795 -a 0 -x {9.0 10.0 1902 ------- null} h -t 2.16771 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3795 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.16773 -s 0 -d 9 -p ack -e 40 -c 0 -i 3798 -a 0 -x {10.0 9.0 1894 ------- null} + -t 2.16773 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3809 -a 0 -x {9.0 10.0 1909 ------- null} - -t 2.16773 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3809 -a 0 -x {9.0 10.0 1909 ------- null} h -t 2.16773 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3809 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.16797 -s 0 -d 9 -p ack -e 40 -c 0 -i 3802 -a 0 -x {10.0 9.0 1896 ------- null} - -t 2.16797 -s 0 -d 9 -p ack -e 40 -c 0 -i 3802 -a 0 -x {10.0 9.0 1896 ------- null} h -t 2.16797 -s 0 -d 9 -p ack -e 40 -c 0 -i 3802 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.16819 -s 10 -d 7 -p ack -e 40 -c 0 -i 3806 -a 0 -x {10.0 9.0 1898 ------- null} + -t 2.16819 -s 7 -d 0 -p ack -e 40 -c 0 -i 3806 -a 0 -x {10.0 9.0 1898 ------- null} h -t 2.16819 -s 7 -d 8 -p ack -e 40 -c 0 -i 3806 -a 0 -x {10.0 9.0 1898 ------- null} r -t 2.16826 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3805 -a 0 -x {9.0 10.0 1907 ------- null} + -t 2.16826 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3805 -a 0 -x {9.0 10.0 1907 ------- null} h -t 2.16826 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3805 -a 0 -x {9.0 10.0 1907 ------- null} r -t 2.16834 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3791 -a 0 -x {9.0 10.0 1900 ------- null} + -t 2.16834 -s 10 -d 7 -p ack -e 40 -c 0 -i 3810 -a 0 -x {10.0 9.0 1900 ------- null} - -t 2.16834 -s 10 -d 7 -p ack -e 40 -c 0 -i 3810 -a 0 -x {10.0 9.0 1900 ------- null} h -t 2.16834 -s 10 -d 7 -p ack -e 40 -c 0 -i 3810 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.16883 -s 0 -d 9 -p ack -e 40 -c 0 -i 3800 -a 0 -x {10.0 9.0 1895 ------- null} + -t 2.16883 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3811 -a 0 -x {9.0 10.0 1910 ------- null} - -t 2.16883 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3811 -a 0 -x {9.0 10.0 1910 ------- null} h -t 2.16883 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3811 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.16904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3797 -a 0 -x {9.0 10.0 1903 ------- null} - -t 2.16904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3797 -a 0 -x {9.0 10.0 1903 ------- null} h -t 2.16904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3797 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.16914 -s 0 -d 9 -p ack -e 40 -c 0 -i 3804 -a 0 -x {10.0 9.0 1897 ------- null} - -t 2.16914 -s 0 -d 9 -p ack -e 40 -c 0 -i 3804 -a 0 -x {10.0 9.0 1897 ------- null} h -t 2.16914 -s 0 -d 9 -p ack -e 40 -c 0 -i 3804 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.16928 -s 10 -d 7 -p ack -e 40 -c 0 -i 3808 -a 0 -x {10.0 9.0 1899 ------- null} + -t 2.16928 -s 7 -d 0 -p ack -e 40 -c 0 -i 3808 -a 0 -x {10.0 9.0 1899 ------- null} h -t 2.16928 -s 7 -d 8 -p ack -e 40 -c 0 -i 3808 -a 0 -x {10.0 9.0 1899 ------- null} r -t 2.16942 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3793 -a 0 -x {9.0 10.0 1901 ------- null} + -t 2.16942 -s 10 -d 7 -p ack -e 40 -c 0 -i 3812 -a 0 -x {10.0 9.0 1901 ------- null} - -t 2.16942 -s 10 -d 7 -p ack -e 40 -c 0 -i 3812 -a 0 -x {10.0 9.0 1901 ------- null} h -t 2.16942 -s 10 -d 7 -p ack -e 40 -c 0 -i 3812 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.16952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3807 -a 0 -x {9.0 10.0 1908 ------- null} + -t 2.16952 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3807 -a 0 -x {9.0 10.0 1908 ------- null} h -t 2.16952 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3807 -a 0 -x {9.0 10.0 1908 ------- null} r -t 2.17 -s 0 -d 9 -p ack -e 40 -c 0 -i 3802 -a 0 -x {10.0 9.0 1896 ------- null} + -t 2.17 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3813 -a 0 -x {9.0 10.0 1911 ------- null} - -t 2.17 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3813 -a 0 -x {9.0 10.0 1911 ------- null} h -t 2.17 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3813 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.17013 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3799 -a 0 -x {9.0 10.0 1904 ------- null} - -t 2.17013 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3799 -a 0 -x {9.0 10.0 1904 ------- null} h -t 2.17013 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3799 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.17027 -s 0 -d 9 -p ack -e 40 -c 0 -i 3806 -a 0 -x {10.0 9.0 1898 ------- null} - -t 2.17027 -s 0 -d 9 -p ack -e 40 -c 0 -i 3806 -a 0 -x {10.0 9.0 1898 ------- null} h -t 2.17027 -s 0 -d 9 -p ack -e 40 -c 0 -i 3806 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.17037 -s 10 -d 7 -p ack -e 40 -c 0 -i 3810 -a 0 -x {10.0 9.0 1900 ------- null} + -t 2.17037 -s 7 -d 0 -p ack -e 40 -c 0 -i 3810 -a 0 -x {10.0 9.0 1900 ------- null} h -t 2.17037 -s 7 -d 8 -p ack -e 40 -c 0 -i 3810 -a 0 -x {10.0 9.0 1900 ------- null} r -t 2.17051 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3795 -a 0 -x {9.0 10.0 1902 ------- null} + -t 2.17051 -s 10 -d 7 -p ack -e 40 -c 0 -i 3814 -a 0 -x {10.0 9.0 1902 ------- null} - -t 2.17051 -s 10 -d 7 -p ack -e 40 -c 0 -i 3814 -a 0 -x {10.0 9.0 1902 ------- null} h -t 2.17051 -s 10 -d 7 -p ack -e 40 -c 0 -i 3814 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.17053 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3809 -a 0 -x {9.0 10.0 1909 ------- null} + -t 2.17053 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3809 -a 0 -x {9.0 10.0 1909 ------- null} h -t 2.17053 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3809 -a 0 -x {9.0 10.0 1909 ------- null} r -t 2.17117 -s 0 -d 9 -p ack -e 40 -c 0 -i 3804 -a 0 -x {10.0 9.0 1897 ------- null} + -t 2.17117 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3815 -a 0 -x {9.0 10.0 1912 ------- null} - -t 2.17117 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3815 -a 0 -x {9.0 10.0 1912 ------- null} h -t 2.17117 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3815 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.17122 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3801 -a 0 -x {9.0 10.0 1905 ------- null} - -t 2.17122 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3801 -a 0 -x {9.0 10.0 1905 ------- null} h -t 2.17122 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3801 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.17142 -s 0 -d 9 -p ack -e 40 -c 0 -i 3808 -a 0 -x {10.0 9.0 1899 ------- null} - -t 2.17142 -s 0 -d 9 -p ack -e 40 -c 0 -i 3808 -a 0 -x {10.0 9.0 1899 ------- null} h -t 2.17142 -s 0 -d 9 -p ack -e 40 -c 0 -i 3808 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.17146 -s 10 -d 7 -p ack -e 40 -c 0 -i 3812 -a 0 -x {10.0 9.0 1901 ------- null} + -t 2.17146 -s 7 -d 0 -p ack -e 40 -c 0 -i 3812 -a 0 -x {10.0 9.0 1901 ------- null} h -t 2.17146 -s 7 -d 8 -p ack -e 40 -c 0 -i 3812 -a 0 -x {10.0 9.0 1901 ------- null} r -t 2.17163 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3811 -a 0 -x {9.0 10.0 1910 ------- null} + -t 2.17163 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3811 -a 0 -x {9.0 10.0 1910 ------- null} h -t 2.17163 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3811 -a 0 -x {9.0 10.0 1910 ------- null} r -t 2.17184 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3797 -a 0 -x {9.0 10.0 1903 ------- null} + -t 2.17184 -s 10 -d 7 -p ack -e 40 -c 0 -i 3816 -a 0 -x {10.0 9.0 1903 ------- null} - -t 2.17184 -s 10 -d 7 -p ack -e 40 -c 0 -i 3816 -a 0 -x {10.0 9.0 1903 ------- null} h -t 2.17184 -s 10 -d 7 -p ack -e 40 -c 0 -i 3816 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.1723 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3803 -a 0 -x {9.0 10.0 1906 ------- null} - -t 2.1723 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3803 -a 0 -x {9.0 10.0 1906 ------- null} h -t 2.1723 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3803 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.1723 -s 0 -d 9 -p ack -e 40 -c 0 -i 3806 -a 0 -x {10.0 9.0 1898 ------- null} + -t 2.1723 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3817 -a 0 -x {9.0 10.0 1913 ------- null} - -t 2.1723 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3817 -a 0 -x {9.0 10.0 1913 ------- null} h -t 2.1723 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3817 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.17251 -s 0 -d 9 -p ack -e 40 -c 0 -i 3810 -a 0 -x {10.0 9.0 1900 ------- null} - -t 2.17251 -s 0 -d 9 -p ack -e 40 -c 0 -i 3810 -a 0 -x {10.0 9.0 1900 ------- null} h -t 2.17251 -s 0 -d 9 -p ack -e 40 -c 0 -i 3810 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.17254 -s 10 -d 7 -p ack -e 40 -c 0 -i 3814 -a 0 -x {10.0 9.0 1902 ------- null} + -t 2.17254 -s 7 -d 0 -p ack -e 40 -c 0 -i 3814 -a 0 -x {10.0 9.0 1902 ------- null} h -t 2.17254 -s 7 -d 8 -p ack -e 40 -c 0 -i 3814 -a 0 -x {10.0 9.0 1902 ------- null} r -t 2.1728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3813 -a 0 -x {9.0 10.0 1911 ------- null} + -t 2.1728 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3813 -a 0 -x {9.0 10.0 1911 ------- null} h -t 2.1728 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3813 -a 0 -x {9.0 10.0 1911 ------- null} r -t 2.17293 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3799 -a 0 -x {9.0 10.0 1904 ------- null} + -t 2.17293 -s 10 -d 7 -p ack -e 40 -c 0 -i 3818 -a 0 -x {10.0 9.0 1904 ------- null} - -t 2.17293 -s 10 -d 7 -p ack -e 40 -c 0 -i 3818 -a 0 -x {10.0 9.0 1904 ------- null} h -t 2.17293 -s 10 -d 7 -p ack -e 40 -c 0 -i 3818 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.17339 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3805 -a 0 -x {9.0 10.0 1907 ------- null} - -t 2.17339 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3805 -a 0 -x {9.0 10.0 1907 ------- null} h -t 2.17339 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3805 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.17346 -s 0 -d 9 -p ack -e 40 -c 0 -i 3808 -a 0 -x {10.0 9.0 1899 ------- null} + -t 2.17346 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3819 -a 0 -x {9.0 10.0 1914 ------- null} - -t 2.17346 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3819 -a 0 -x {9.0 10.0 1914 ------- null} h -t 2.17346 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3819 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.1735 -s 0 -d 9 -p ack -e 40 -c 0 -i 3812 -a 0 -x {10.0 9.0 1901 ------- null} - -t 2.1735 -s 0 -d 9 -p ack -e 40 -c 0 -i 3812 -a 0 -x {10.0 9.0 1901 ------- null} h -t 2.1735 -s 0 -d 9 -p ack -e 40 -c 0 -i 3812 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.17387 -s 10 -d 7 -p ack -e 40 -c 0 -i 3816 -a 0 -x {10.0 9.0 1903 ------- null} + -t 2.17387 -s 7 -d 0 -p ack -e 40 -c 0 -i 3816 -a 0 -x {10.0 9.0 1903 ------- null} h -t 2.17387 -s 7 -d 8 -p ack -e 40 -c 0 -i 3816 -a 0 -x {10.0 9.0 1903 ------- null} r -t 2.17397 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3815 -a 0 -x {9.0 10.0 1912 ------- null} + -t 2.17397 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3815 -a 0 -x {9.0 10.0 1912 ------- null} h -t 2.17397 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3815 -a 0 -x {9.0 10.0 1912 ------- null} r -t 2.17402 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3801 -a 0 -x {9.0 10.0 1905 ------- null} + -t 2.17402 -s 10 -d 7 -p ack -e 40 -c 0 -i 3820 -a 0 -x {10.0 9.0 1905 ------- null} - -t 2.17402 -s 10 -d 7 -p ack -e 40 -c 0 -i 3820 -a 0 -x {10.0 9.0 1905 ------- null} h -t 2.17402 -s 10 -d 7 -p ack -e 40 -c 0 -i 3820 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.17448 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3807 -a 0 -x {9.0 10.0 1908 ------- null} - -t 2.17448 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3807 -a 0 -x {9.0 10.0 1908 ------- null} h -t 2.17448 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3807 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.17454 -s 0 -d 9 -p ack -e 40 -c 0 -i 3810 -a 0 -x {10.0 9.0 1900 ------- null} + -t 2.17454 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3821 -a 0 -x {9.0 10.0 1915 ------- null} - -t 2.17454 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3821 -a 0 -x {9.0 10.0 1915 ------- null} h -t 2.17454 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3821 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.17478 -s 0 -d 9 -p ack -e 40 -c 0 -i 3814 -a 0 -x {10.0 9.0 1902 ------- null} - -t 2.17478 -s 0 -d 9 -p ack -e 40 -c 0 -i 3814 -a 0 -x {10.0 9.0 1902 ------- null} h -t 2.17478 -s 0 -d 9 -p ack -e 40 -c 0 -i 3814 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.17496 -s 10 -d 7 -p ack -e 40 -c 0 -i 3818 -a 0 -x {10.0 9.0 1904 ------- null} + -t 2.17496 -s 7 -d 0 -p ack -e 40 -c 0 -i 3818 -a 0 -x {10.0 9.0 1904 ------- null} h -t 2.17496 -s 7 -d 8 -p ack -e 40 -c 0 -i 3818 -a 0 -x {10.0 9.0 1904 ------- null} r -t 2.1751 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3803 -a 0 -x {9.0 10.0 1906 ------- null} + -t 2.1751 -s 10 -d 7 -p ack -e 40 -c 0 -i 3822 -a 0 -x {10.0 9.0 1906 ------- null} - -t 2.1751 -s 10 -d 7 -p ack -e 40 -c 0 -i 3822 -a 0 -x {10.0 9.0 1906 ------- null} h -t 2.1751 -s 10 -d 7 -p ack -e 40 -c 0 -i 3822 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.1751 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3817 -a 0 -x {9.0 10.0 1913 ------- null} + -t 2.1751 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3817 -a 0 -x {9.0 10.0 1913 ------- null} h -t 2.1751 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3817 -a 0 -x {9.0 10.0 1913 ------- null} r -t 2.17554 -s 0 -d 9 -p ack -e 40 -c 0 -i 3812 -a 0 -x {10.0 9.0 1901 ------- null} + -t 2.17554 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3823 -a 0 -x {9.0 10.0 1916 ------- null} - -t 2.17554 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3823 -a 0 -x {9.0 10.0 1916 ------- null} h -t 2.17554 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3823 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.17573 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3809 -a 0 -x {9.0 10.0 1909 ------- null} - -t 2.17573 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3809 -a 0 -x {9.0 10.0 1909 ------- null} h -t 2.17573 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3809 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.17579 -s 0 -d 9 -p ack -e 40 -c 0 -i 3816 -a 0 -x {10.0 9.0 1903 ------- null} - -t 2.17579 -s 0 -d 9 -p ack -e 40 -c 0 -i 3816 -a 0 -x {10.0 9.0 1903 ------- null} h -t 2.17579 -s 0 -d 9 -p ack -e 40 -c 0 -i 3816 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.17605 -s 10 -d 7 -p ack -e 40 -c 0 -i 3820 -a 0 -x {10.0 9.0 1905 ------- null} + -t 2.17605 -s 7 -d 0 -p ack -e 40 -c 0 -i 3820 -a 0 -x {10.0 9.0 1905 ------- null} h -t 2.17605 -s 7 -d 8 -p ack -e 40 -c 0 -i 3820 -a 0 -x {10.0 9.0 1905 ------- null} r -t 2.17619 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3805 -a 0 -x {9.0 10.0 1907 ------- null} + -t 2.17619 -s 10 -d 7 -p ack -e 40 -c 0 -i 3824 -a 0 -x {10.0 9.0 1907 ------- null} - -t 2.17619 -s 10 -d 7 -p ack -e 40 -c 0 -i 3824 -a 0 -x {10.0 9.0 1907 ------- null} h -t 2.17619 -s 10 -d 7 -p ack -e 40 -c 0 -i 3824 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.17626 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3819 -a 0 -x {9.0 10.0 1914 ------- null} + -t 2.17626 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3819 -a 0 -x {9.0 10.0 1914 ------- null} h -t 2.17626 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3819 -a 0 -x {9.0 10.0 1914 ------- null} r -t 2.17682 -s 0 -d 9 -p ack -e 40 -c 0 -i 3814 -a 0 -x {10.0 9.0 1902 ------- null} + -t 2.17682 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3825 -a 0 -x {9.0 10.0 1917 ------- null} - -t 2.17682 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3825 -a 0 -x {9.0 10.0 1917 ------- null} h -t 2.17682 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3825 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.17682 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3811 -a 0 -x {9.0 10.0 1910 ------- null} - -t 2.17682 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3811 -a 0 -x {9.0 10.0 1910 ------- null} h -t 2.17682 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3811 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.17693 -s 0 -d 9 -p ack -e 40 -c 0 -i 3818 -a 0 -x {10.0 9.0 1904 ------- null} - -t 2.17693 -s 0 -d 9 -p ack -e 40 -c 0 -i 3818 -a 0 -x {10.0 9.0 1904 ------- null} h -t 2.17693 -s 0 -d 9 -p ack -e 40 -c 0 -i 3818 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.17714 -s 10 -d 7 -p ack -e 40 -c 0 -i 3822 -a 0 -x {10.0 9.0 1906 ------- null} + -t 2.17714 -s 7 -d 0 -p ack -e 40 -c 0 -i 3822 -a 0 -x {10.0 9.0 1906 ------- null} h -t 2.17714 -s 7 -d 8 -p ack -e 40 -c 0 -i 3822 -a 0 -x {10.0 9.0 1906 ------- null} r -t 2.17728 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3807 -a 0 -x {9.0 10.0 1908 ------- null} + -t 2.17728 -s 10 -d 7 -p ack -e 40 -c 0 -i 3826 -a 0 -x {10.0 9.0 1908 ------- null} - -t 2.17728 -s 10 -d 7 -p ack -e 40 -c 0 -i 3826 -a 0 -x {10.0 9.0 1908 ------- null} h -t 2.17728 -s 10 -d 7 -p ack -e 40 -c 0 -i 3826 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.17734 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3821 -a 0 -x {9.0 10.0 1915 ------- null} + -t 2.17734 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3821 -a 0 -x {9.0 10.0 1915 ------- null} h -t 2.17734 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3821 -a 0 -x {9.0 10.0 1915 ------- null} r -t 2.17782 -s 0 -d 9 -p ack -e 40 -c 0 -i 3816 -a 0 -x {10.0 9.0 1903 ------- null} + -t 2.17782 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3827 -a 0 -x {9.0 10.0 1918 ------- null} - -t 2.17782 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3827 -a 0 -x {9.0 10.0 1918 ------- null} h -t 2.17782 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3827 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.1779 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3813 -a 0 -x {9.0 10.0 1911 ------- null} - -t 2.1779 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3813 -a 0 -x {9.0 10.0 1911 ------- null} h -t 2.1779 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3813 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.17813 -s 0 -d 9 -p ack -e 40 -c 0 -i 3820 -a 0 -x {10.0 9.0 1905 ------- null} - -t 2.17813 -s 0 -d 9 -p ack -e 40 -c 0 -i 3820 -a 0 -x {10.0 9.0 1905 ------- null} h -t 2.17813 -s 0 -d 9 -p ack -e 40 -c 0 -i 3820 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.17822 -s 10 -d 7 -p ack -e 40 -c 0 -i 3824 -a 0 -x {10.0 9.0 1907 ------- null} + -t 2.17822 -s 7 -d 0 -p ack -e 40 -c 0 -i 3824 -a 0 -x {10.0 9.0 1907 ------- null} h -t 2.17822 -s 7 -d 8 -p ack -e 40 -c 0 -i 3824 -a 0 -x {10.0 9.0 1907 ------- null} r -t 2.17834 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3823 -a 0 -x {9.0 10.0 1916 ------- null} + -t 2.17834 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3823 -a 0 -x {9.0 10.0 1916 ------- null} h -t 2.17834 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3823 -a 0 -x {9.0 10.0 1916 ------- null} r -t 2.17853 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3809 -a 0 -x {9.0 10.0 1909 ------- null} + -t 2.17853 -s 10 -d 7 -p ack -e 40 -c 0 -i 3828 -a 0 -x {10.0 9.0 1909 ------- null} - -t 2.17853 -s 10 -d 7 -p ack -e 40 -c 0 -i 3828 -a 0 -x {10.0 9.0 1909 ------- null} h -t 2.17853 -s 10 -d 7 -p ack -e 40 -c 0 -i 3828 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.17896 -s 0 -d 9 -p ack -e 40 -c 0 -i 3818 -a 0 -x {10.0 9.0 1904 ------- null} + -t 2.17896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3829 -a 0 -x {9.0 10.0 1919 ------- null} - -t 2.17896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3829 -a 0 -x {9.0 10.0 1919 ------- null} h -t 2.17896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3829 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.17899 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3815 -a 0 -x {9.0 10.0 1912 ------- null} - -t 2.17899 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3815 -a 0 -x {9.0 10.0 1912 ------- null} h -t 2.17899 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3815 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.1791 -s 0 -d 9 -p ack -e 40 -c 0 -i 3822 -a 0 -x {10.0 9.0 1906 ------- null} - -t 2.1791 -s 0 -d 9 -p ack -e 40 -c 0 -i 3822 -a 0 -x {10.0 9.0 1906 ------- null} h -t 2.1791 -s 0 -d 9 -p ack -e 40 -c 0 -i 3822 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.17931 -s 10 -d 7 -p ack -e 40 -c 0 -i 3826 -a 0 -x {10.0 9.0 1908 ------- null} + -t 2.17931 -s 7 -d 0 -p ack -e 40 -c 0 -i 3826 -a 0 -x {10.0 9.0 1908 ------- null} h -t 2.17931 -s 7 -d 8 -p ack -e 40 -c 0 -i 3826 -a 0 -x {10.0 9.0 1908 ------- null} r -t 2.17962 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3825 -a 0 -x {9.0 10.0 1917 ------- null} + -t 2.17962 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3825 -a 0 -x {9.0 10.0 1917 ------- null} h -t 2.17962 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3825 -a 0 -x {9.0 10.0 1917 ------- null} r -t 2.17962 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3811 -a 0 -x {9.0 10.0 1910 ------- null} + -t 2.17962 -s 10 -d 7 -p ack -e 40 -c 0 -i 3830 -a 0 -x {10.0 9.0 1910 ------- null} - -t 2.17962 -s 10 -d 7 -p ack -e 40 -c 0 -i 3830 -a 0 -x {10.0 9.0 1910 ------- null} h -t 2.17962 -s 10 -d 7 -p ack -e 40 -c 0 -i 3830 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.18008 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3817 -a 0 -x {9.0 10.0 1913 ------- null} - -t 2.18008 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3817 -a 0 -x {9.0 10.0 1913 ------- null} h -t 2.18008 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3817 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.18016 -s 0 -d 9 -p ack -e 40 -c 0 -i 3820 -a 0 -x {10.0 9.0 1905 ------- null} + -t 2.18016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3831 -a 0 -x {9.0 10.0 1920 ------- null} - -t 2.18016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3831 -a 0 -x {9.0 10.0 1920 ------- null} h -t 2.18016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3831 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.18038 -s 0 -d 9 -p ack -e 40 -c 0 -i 3824 -a 0 -x {10.0 9.0 1907 ------- null} - -t 2.18038 -s 0 -d 9 -p ack -e 40 -c 0 -i 3824 -a 0 -x {10.0 9.0 1907 ------- null} h -t 2.18038 -s 0 -d 9 -p ack -e 40 -c 0 -i 3824 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.18056 -s 10 -d 7 -p ack -e 40 -c 0 -i 3828 -a 0 -x {10.0 9.0 1909 ------- null} + -t 2.18056 -s 7 -d 0 -p ack -e 40 -c 0 -i 3828 -a 0 -x {10.0 9.0 1909 ------- null} h -t 2.18056 -s 7 -d 8 -p ack -e 40 -c 0 -i 3828 -a 0 -x {10.0 9.0 1909 ------- null} r -t 2.18062 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3827 -a 0 -x {9.0 10.0 1918 ------- null} + -t 2.18062 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3827 -a 0 -x {9.0 10.0 1918 ------- null} h -t 2.18062 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3827 -a 0 -x {9.0 10.0 1918 ------- null} r -t 2.1807 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3813 -a 0 -x {9.0 10.0 1911 ------- null} + -t 2.1807 -s 10 -d 7 -p ack -e 40 -c 0 -i 3832 -a 0 -x {10.0 9.0 1911 ------- null} - -t 2.1807 -s 10 -d 7 -p ack -e 40 -c 0 -i 3832 -a 0 -x {10.0 9.0 1911 ------- null} h -t 2.1807 -s 10 -d 7 -p ack -e 40 -c 0 -i 3832 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.18114 -s 0 -d 9 -p ack -e 40 -c 0 -i 3822 -a 0 -x {10.0 9.0 1906 ------- null} + -t 2.18114 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3833 -a 0 -x {9.0 10.0 1921 ------- null} - -t 2.18114 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3833 -a 0 -x {9.0 10.0 1921 ------- null} h -t 2.18114 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3833 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.18133 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3819 -a 0 -x {9.0 10.0 1914 ------- null} - -t 2.18133 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3819 -a 0 -x {9.0 10.0 1914 ------- null} h -t 2.18133 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3819 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.18154 -s 0 -d 9 -p ack -e 40 -c 0 -i 3826 -a 0 -x {10.0 9.0 1908 ------- null} - -t 2.18154 -s 0 -d 9 -p ack -e 40 -c 0 -i 3826 -a 0 -x {10.0 9.0 1908 ------- null} h -t 2.18154 -s 0 -d 9 -p ack -e 40 -c 0 -i 3826 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.18165 -s 10 -d 7 -p ack -e 40 -c 0 -i 3830 -a 0 -x {10.0 9.0 1910 ------- null} + -t 2.18165 -s 7 -d 0 -p ack -e 40 -c 0 -i 3830 -a 0 -x {10.0 9.0 1910 ------- null} h -t 2.18165 -s 7 -d 8 -p ack -e 40 -c 0 -i 3830 -a 0 -x {10.0 9.0 1910 ------- null} r -t 2.18176 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3829 -a 0 -x {9.0 10.0 1919 ------- null} + -t 2.18176 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3829 -a 0 -x {9.0 10.0 1919 ------- null} h -t 2.18176 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3829 -a 0 -x {9.0 10.0 1919 ------- null} r -t 2.18179 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3815 -a 0 -x {9.0 10.0 1912 ------- null} + -t 2.18179 -s 10 -d 7 -p ack -e 40 -c 0 -i 3834 -a 0 -x {10.0 9.0 1912 ------- null} - -t 2.18179 -s 10 -d 7 -p ack -e 40 -c 0 -i 3834 -a 0 -x {10.0 9.0 1912 ------- null} h -t 2.18179 -s 10 -d 7 -p ack -e 40 -c 0 -i 3834 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.18242 -s 0 -d 9 -p ack -e 40 -c 0 -i 3824 -a 0 -x {10.0 9.0 1907 ------- null} + -t 2.18242 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3835 -a 0 -x {9.0 10.0 1922 ------- null} - -t 2.18242 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3835 -a 0 -x {9.0 10.0 1922 ------- null} h -t 2.18242 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3835 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.18242 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3821 -a 0 -x {9.0 10.0 1915 ------- null} - -t 2.18242 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3821 -a 0 -x {9.0 10.0 1915 ------- null} h -t 2.18242 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3821 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.18259 -s 0 -d 9 -p ack -e 40 -c 0 -i 3828 -a 0 -x {10.0 9.0 1909 ------- null} - -t 2.18259 -s 0 -d 9 -p ack -e 40 -c 0 -i 3828 -a 0 -x {10.0 9.0 1909 ------- null} h -t 2.18259 -s 0 -d 9 -p ack -e 40 -c 0 -i 3828 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.18274 -s 10 -d 7 -p ack -e 40 -c 0 -i 3832 -a 0 -x {10.0 9.0 1911 ------- null} + -t 2.18274 -s 7 -d 0 -p ack -e 40 -c 0 -i 3832 -a 0 -x {10.0 9.0 1911 ------- null} h -t 2.18274 -s 7 -d 8 -p ack -e 40 -c 0 -i 3832 -a 0 -x {10.0 9.0 1911 ------- null} r -t 2.18288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3817 -a 0 -x {9.0 10.0 1913 ------- null} + -t 2.18288 -s 10 -d 7 -p ack -e 40 -c 0 -i 3836 -a 0 -x {10.0 9.0 1913 ------- null} - -t 2.18288 -s 10 -d 7 -p ack -e 40 -c 0 -i 3836 -a 0 -x {10.0 9.0 1913 ------- null} h -t 2.18288 -s 10 -d 7 -p ack -e 40 -c 0 -i 3836 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.18296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3831 -a 0 -x {9.0 10.0 1920 ------- null} + -t 2.18296 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3831 -a 0 -x {9.0 10.0 1920 ------- null} h -t 2.18296 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3831 -a 0 -x {9.0 10.0 1920 ------- null} + -t 2.1835 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3823 -a 0 -x {9.0 10.0 1916 ------- null} - -t 2.1835 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3823 -a 0 -x {9.0 10.0 1916 ------- null} h -t 2.1835 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3823 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.18357 -s 0 -d 9 -p ack -e 40 -c 0 -i 3826 -a 0 -x {10.0 9.0 1908 ------- null} + -t 2.18357 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3837 -a 0 -x {9.0 10.0 1923 ------- null} - -t 2.18357 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3837 -a 0 -x {9.0 10.0 1923 ------- null} h -t 2.18357 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3837 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.18371 -s 0 -d 9 -p ack -e 40 -c 0 -i 3830 -a 0 -x {10.0 9.0 1910 ------- null} - -t 2.18371 -s 0 -d 9 -p ack -e 40 -c 0 -i 3830 -a 0 -x {10.0 9.0 1910 ------- null} h -t 2.18371 -s 0 -d 9 -p ack -e 40 -c 0 -i 3830 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.18382 -s 10 -d 7 -p ack -e 40 -c 0 -i 3834 -a 0 -x {10.0 9.0 1912 ------- null} + -t 2.18382 -s 7 -d 0 -p ack -e 40 -c 0 -i 3834 -a 0 -x {10.0 9.0 1912 ------- null} h -t 2.18382 -s 7 -d 8 -p ack -e 40 -c 0 -i 3834 -a 0 -x {10.0 9.0 1912 ------- null} r -t 2.18394 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3833 -a 0 -x {9.0 10.0 1921 ------- null} + -t 2.18394 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3833 -a 0 -x {9.0 10.0 1921 ------- null} h -t 2.18394 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3833 -a 0 -x {9.0 10.0 1921 ------- null} r -t 2.18413 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3819 -a 0 -x {9.0 10.0 1914 ------- null} + -t 2.18413 -s 10 -d 7 -p ack -e 40 -c 0 -i 3838 -a 0 -x {10.0 9.0 1914 ------- null} - -t 2.18413 -s 10 -d 7 -p ack -e 40 -c 0 -i 3838 -a 0 -x {10.0 9.0 1914 ------- null} h -t 2.18413 -s 10 -d 7 -p ack -e 40 -c 0 -i 3838 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.18459 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3825 -a 0 -x {9.0 10.0 1917 ------- null} - -t 2.18459 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3825 -a 0 -x {9.0 10.0 1917 ------- null} h -t 2.18459 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3825 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.18462 -s 0 -d 9 -p ack -e 40 -c 0 -i 3828 -a 0 -x {10.0 9.0 1909 ------- null} + -t 2.18462 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3839 -a 0 -x {9.0 10.0 1924 ------- null} - -t 2.18462 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3839 -a 0 -x {9.0 10.0 1924 ------- null} h -t 2.18462 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3839 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.18475 -s 0 -d 9 -p ack -e 40 -c 0 -i 3832 -a 0 -x {10.0 9.0 1911 ------- null} - -t 2.18475 -s 0 -d 9 -p ack -e 40 -c 0 -i 3832 -a 0 -x {10.0 9.0 1911 ------- null} h -t 2.18475 -s 0 -d 9 -p ack -e 40 -c 0 -i 3832 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.18491 -s 10 -d 7 -p ack -e 40 -c 0 -i 3836 -a 0 -x {10.0 9.0 1913 ------- null} + -t 2.18491 -s 7 -d 0 -p ack -e 40 -c 0 -i 3836 -a 0 -x {10.0 9.0 1913 ------- null} h -t 2.18491 -s 7 -d 8 -p ack -e 40 -c 0 -i 3836 -a 0 -x {10.0 9.0 1913 ------- null} r -t 2.18522 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3835 -a 0 -x {9.0 10.0 1922 ------- null} + -t 2.18522 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3835 -a 0 -x {9.0 10.0 1922 ------- null} h -t 2.18522 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3835 -a 0 -x {9.0 10.0 1922 ------- null} r -t 2.18522 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3821 -a 0 -x {9.0 10.0 1915 ------- null} + -t 2.18522 -s 10 -d 7 -p ack -e 40 -c 0 -i 3840 -a 0 -x {10.0 9.0 1915 ------- null} - -t 2.18522 -s 10 -d 7 -p ack -e 40 -c 0 -i 3840 -a 0 -x {10.0 9.0 1915 ------- null} h -t 2.18522 -s 10 -d 7 -p ack -e 40 -c 0 -i 3840 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.18568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3827 -a 0 -x {9.0 10.0 1918 ------- null} - -t 2.18568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3827 -a 0 -x {9.0 10.0 1918 ------- null} h -t 2.18568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3827 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.18574 -s 0 -d 9 -p ack -e 40 -c 0 -i 3830 -a 0 -x {10.0 9.0 1910 ------- null} + -t 2.18574 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3841 -a 0 -x {9.0 10.0 1925 ------- null} - -t 2.18574 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3841 -a 0 -x {9.0 10.0 1925 ------- null} h -t 2.18574 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3841 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.18597 -s 0 -d 9 -p ack -e 40 -c 0 -i 3834 -a 0 -x {10.0 9.0 1912 ------- null} - -t 2.18597 -s 0 -d 9 -p ack -e 40 -c 0 -i 3834 -a 0 -x {10.0 9.0 1912 ------- null} h -t 2.18597 -s 0 -d 9 -p ack -e 40 -c 0 -i 3834 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.18616 -s 10 -d 7 -p ack -e 40 -c 0 -i 3838 -a 0 -x {10.0 9.0 1914 ------- null} + -t 2.18616 -s 7 -d 0 -p ack -e 40 -c 0 -i 3838 -a 0 -x {10.0 9.0 1914 ------- null} h -t 2.18616 -s 7 -d 8 -p ack -e 40 -c 0 -i 3838 -a 0 -x {10.0 9.0 1914 ------- null} r -t 2.1863 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3823 -a 0 -x {9.0 10.0 1916 ------- null} + -t 2.1863 -s 10 -d 7 -p ack -e 40 -c 0 -i 3842 -a 0 -x {10.0 9.0 1916 ------- null} - -t 2.1863 -s 10 -d 7 -p ack -e 40 -c 0 -i 3842 -a 0 -x {10.0 9.0 1916 ------- null} h -t 2.1863 -s 10 -d 7 -p ack -e 40 -c 0 -i 3842 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.18637 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3837 -a 0 -x {9.0 10.0 1923 ------- null} + -t 2.18637 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3837 -a 0 -x {9.0 10.0 1923 ------- null} h -t 2.18637 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3837 -a 0 -x {9.0 10.0 1923 ------- null} r -t 2.18678 -s 0 -d 9 -p ack -e 40 -c 0 -i 3832 -a 0 -x {10.0 9.0 1911 ------- null} + -t 2.18678 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3843 -a 0 -x {9.0 10.0 1926 ------- null} - -t 2.18678 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3843 -a 0 -x {9.0 10.0 1926 ------- null} h -t 2.18678 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3843 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.18698 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3829 -a 0 -x {9.0 10.0 1919 ------- null} - -t 2.18698 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3829 -a 0 -x {9.0 10.0 1919 ------- null} h -t 2.18698 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3829 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.18723 -s 0 -d 9 -p ack -e 40 -c 0 -i 3836 -a 0 -x {10.0 9.0 1913 ------- null} - -t 2.18723 -s 0 -d 9 -p ack -e 40 -c 0 -i 3836 -a 0 -x {10.0 9.0 1913 ------- null} h -t 2.18723 -s 0 -d 9 -p ack -e 40 -c 0 -i 3836 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.18725 -s 10 -d 7 -p ack -e 40 -c 0 -i 3840 -a 0 -x {10.0 9.0 1915 ------- null} + -t 2.18725 -s 7 -d 0 -p ack -e 40 -c 0 -i 3840 -a 0 -x {10.0 9.0 1915 ------- null} h -t 2.18725 -s 7 -d 8 -p ack -e 40 -c 0 -i 3840 -a 0 -x {10.0 9.0 1915 ------- null} r -t 2.18739 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3825 -a 0 -x {9.0 10.0 1917 ------- null} + -t 2.18739 -s 10 -d 7 -p ack -e 40 -c 0 -i 3844 -a 0 -x {10.0 9.0 1917 ------- null} - -t 2.18739 -s 10 -d 7 -p ack -e 40 -c 0 -i 3844 -a 0 -x {10.0 9.0 1917 ------- null} h -t 2.18739 -s 10 -d 7 -p ack -e 40 -c 0 -i 3844 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.18742 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3839 -a 0 -x {9.0 10.0 1924 ------- null} + -t 2.18742 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3839 -a 0 -x {9.0 10.0 1924 ------- null} h -t 2.18742 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3839 -a 0 -x {9.0 10.0 1924 ------- null} r -t 2.188 -s 0 -d 9 -p ack -e 40 -c 0 -i 3834 -a 0 -x {10.0 9.0 1912 ------- null} + -t 2.188 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3845 -a 0 -x {9.0 10.0 1927 ------- null} - -t 2.188 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3845 -a 0 -x {9.0 10.0 1927 ------- null} h -t 2.188 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3845 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.18827 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3831 -a 0 -x {9.0 10.0 1920 ------- null} - -t 2.18827 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3831 -a 0 -x {9.0 10.0 1920 ------- null} h -t 2.18827 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3831 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.18834 -s 10 -d 7 -p ack -e 40 -c 0 -i 3842 -a 0 -x {10.0 9.0 1916 ------- null} + -t 2.18834 -s 7 -d 0 -p ack -e 40 -c 0 -i 3842 -a 0 -x {10.0 9.0 1916 ------- null} h -t 2.18834 -s 7 -d 8 -p ack -e 40 -c 0 -i 3842 -a 0 -x {10.0 9.0 1916 ------- null} + -t 2.18845 -s 0 -d 9 -p ack -e 40 -c 0 -i 3838 -a 0 -x {10.0 9.0 1914 ------- null} - -t 2.18845 -s 0 -d 9 -p ack -e 40 -c 0 -i 3838 -a 0 -x {10.0 9.0 1914 ------- null} h -t 2.18845 -s 0 -d 9 -p ack -e 40 -c 0 -i 3838 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.18848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3827 -a 0 -x {9.0 10.0 1918 ------- null} + -t 2.18848 -s 10 -d 7 -p ack -e 40 -c 0 -i 3846 -a 0 -x {10.0 9.0 1918 ------- null} - -t 2.18848 -s 10 -d 7 -p ack -e 40 -c 0 -i 3846 -a 0 -x {10.0 9.0 1918 ------- null} h -t 2.18848 -s 10 -d 7 -p ack -e 40 -c 0 -i 3846 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.18854 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3841 -a 0 -x {9.0 10.0 1925 ------- null} + -t 2.18854 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3841 -a 0 -x {9.0 10.0 1925 ------- null} h -t 2.18854 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3841 -a 0 -x {9.0 10.0 1925 ------- null} r -t 2.18926 -s 0 -d 9 -p ack -e 40 -c 0 -i 3836 -a 0 -x {10.0 9.0 1913 ------- null} + -t 2.18926 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3847 -a 0 -x {9.0 10.0 1928 ------- null} - -t 2.18926 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3847 -a 0 -x {9.0 10.0 1928 ------- null} h -t 2.18926 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3847 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.18936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3833 -a 0 -x {9.0 10.0 1921 ------- null} - -t 2.18936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3833 -a 0 -x {9.0 10.0 1921 ------- null} h -t 2.18936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3833 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.18942 -s 10 -d 7 -p ack -e 40 -c 0 -i 3844 -a 0 -x {10.0 9.0 1917 ------- null} + -t 2.18942 -s 7 -d 0 -p ack -e 40 -c 0 -i 3844 -a 0 -x {10.0 9.0 1917 ------- null} h -t 2.18942 -s 7 -d 8 -p ack -e 40 -c 0 -i 3844 -a 0 -x {10.0 9.0 1917 ------- null} + -t 2.1895 -s 0 -d 9 -p ack -e 40 -c 0 -i 3840 -a 0 -x {10.0 9.0 1915 ------- null} - -t 2.1895 -s 0 -d 9 -p ack -e 40 -c 0 -i 3840 -a 0 -x {10.0 9.0 1915 ------- null} h -t 2.1895 -s 0 -d 9 -p ack -e 40 -c 0 -i 3840 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.18958 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3843 -a 0 -x {9.0 10.0 1926 ------- null} + -t 2.18958 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3843 -a 0 -x {9.0 10.0 1926 ------- null} h -t 2.18958 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3843 -a 0 -x {9.0 10.0 1926 ------- null} r -t 2.18978 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3829 -a 0 -x {9.0 10.0 1919 ------- null} + -t 2.18978 -s 10 -d 7 -p ack -e 40 -c 0 -i 3848 -a 0 -x {10.0 9.0 1919 ------- null} - -t 2.18978 -s 10 -d 7 -p ack -e 40 -c 0 -i 3848 -a 0 -x {10.0 9.0 1919 ------- null} h -t 2.18978 -s 10 -d 7 -p ack -e 40 -c 0 -i 3848 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.19045 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3835 -a 0 -x {9.0 10.0 1922 ------- null} - -t 2.19045 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3835 -a 0 -x {9.0 10.0 1922 ------- null} h -t 2.19045 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3835 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.19048 -s 0 -d 9 -p ack -e 40 -c 0 -i 3838 -a 0 -x {10.0 9.0 1914 ------- null} + -t 2.19048 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3849 -a 0 -x {9.0 10.0 1929 ------- null} - -t 2.19048 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3849 -a 0 -x {9.0 10.0 1929 ------- null} h -t 2.19048 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3849 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.19051 -s 10 -d 7 -p ack -e 40 -c 0 -i 3846 -a 0 -x {10.0 9.0 1918 ------- null} + -t 2.19051 -s 7 -d 0 -p ack -e 40 -c 0 -i 3846 -a 0 -x {10.0 9.0 1918 ------- null} h -t 2.19051 -s 7 -d 8 -p ack -e 40 -c 0 -i 3846 -a 0 -x {10.0 9.0 1918 ------- null} + -t 2.19074 -s 0 -d 9 -p ack -e 40 -c 0 -i 3842 -a 0 -x {10.0 9.0 1916 ------- null} - -t 2.19074 -s 0 -d 9 -p ack -e 40 -c 0 -i 3842 -a 0 -x {10.0 9.0 1916 ------- null} h -t 2.19074 -s 0 -d 9 -p ack -e 40 -c 0 -i 3842 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.1908 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3845 -a 0 -x {9.0 10.0 1927 ------- null} + -t 2.1908 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3845 -a 0 -x {9.0 10.0 1927 ------- null} h -t 2.1908 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3845 -a 0 -x {9.0 10.0 1927 ------- null} r -t 2.19107 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3831 -a 0 -x {9.0 10.0 1920 ------- null} + -t 2.19107 -s 10 -d 7 -p ack -e 40 -c 0 -i 3850 -a 0 -x {10.0 9.0 1920 ------- null} - -t 2.19107 -s 10 -d 7 -p ack -e 40 -c 0 -i 3850 -a 0 -x {10.0 9.0 1920 ------- null} h -t 2.19107 -s 10 -d 7 -p ack -e 40 -c 0 -i 3850 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.19154 -s 0 -d 9 -p ack -e 40 -c 0 -i 3840 -a 0 -x {10.0 9.0 1915 ------- null} + -t 2.19154 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3851 -a 0 -x {9.0 10.0 1930 ------- null} - -t 2.19154 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3851 -a 0 -x {9.0 10.0 1930 ------- null} h -t 2.19154 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3851 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.19174 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3837 -a 0 -x {9.0 10.0 1923 ------- null} - -t 2.19174 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3837 -a 0 -x {9.0 10.0 1923 ------- null} h -t 2.19174 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3837 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.19181 -s 10 -d 7 -p ack -e 40 -c 0 -i 3848 -a 0 -x {10.0 9.0 1919 ------- null} + -t 2.19181 -s 7 -d 0 -p ack -e 40 -c 0 -i 3848 -a 0 -x {10.0 9.0 1919 ------- null} h -t 2.19181 -s 7 -d 8 -p ack -e 40 -c 0 -i 3848 -a 0 -x {10.0 9.0 1919 ------- null} + -t 2.1919 -s 0 -d 9 -p ack -e 40 -c 0 -i 3844 -a 0 -x {10.0 9.0 1917 ------- null} - -t 2.1919 -s 0 -d 9 -p ack -e 40 -c 0 -i 3844 -a 0 -x {10.0 9.0 1917 ------- null} h -t 2.1919 -s 0 -d 9 -p ack -e 40 -c 0 -i 3844 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.19206 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3847 -a 0 -x {9.0 10.0 1928 ------- null} + -t 2.19206 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3847 -a 0 -x {9.0 10.0 1928 ------- null} h -t 2.19206 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3847 -a 0 -x {9.0 10.0 1928 ------- null} r -t 2.19216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3833 -a 0 -x {9.0 10.0 1921 ------- null} + -t 2.19216 -s 10 -d 7 -p ack -e 40 -c 0 -i 3852 -a 0 -x {10.0 9.0 1921 ------- null} - -t 2.19216 -s 10 -d 7 -p ack -e 40 -c 0 -i 3852 -a 0 -x {10.0 9.0 1921 ------- null} h -t 2.19216 -s 10 -d 7 -p ack -e 40 -c 0 -i 3852 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.19277 -s 0 -d 9 -p ack -e 40 -c 0 -i 3842 -a 0 -x {10.0 9.0 1916 ------- null} + -t 2.19277 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3853 -a 0 -x {9.0 10.0 1931 ------- null} - -t 2.19277 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3853 -a 0 -x {9.0 10.0 1931 ------- null} h -t 2.19277 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3853 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.19283 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3839 -a 0 -x {9.0 10.0 1924 ------- null} - -t 2.19283 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3839 -a 0 -x {9.0 10.0 1924 ------- null} h -t 2.19283 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3839 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.19302 -s 0 -d 9 -p ack -e 40 -c 0 -i 3846 -a 0 -x {10.0 9.0 1918 ------- null} - -t 2.19302 -s 0 -d 9 -p ack -e 40 -c 0 -i 3846 -a 0 -x {10.0 9.0 1918 ------- null} h -t 2.19302 -s 0 -d 9 -p ack -e 40 -c 0 -i 3846 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.1931 -s 10 -d 7 -p ack -e 40 -c 0 -i 3850 -a 0 -x {10.0 9.0 1920 ------- null} + -t 2.1931 -s 7 -d 0 -p ack -e 40 -c 0 -i 3850 -a 0 -x {10.0 9.0 1920 ------- null} h -t 2.1931 -s 7 -d 8 -p ack -e 40 -c 0 -i 3850 -a 0 -x {10.0 9.0 1920 ------- null} r -t 2.19325 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3835 -a 0 -x {9.0 10.0 1922 ------- null} + -t 2.19325 -s 10 -d 7 -p ack -e 40 -c 0 -i 3854 -a 0 -x {10.0 9.0 1922 ------- null} - -t 2.19325 -s 10 -d 7 -p ack -e 40 -c 0 -i 3854 -a 0 -x {10.0 9.0 1922 ------- null} h -t 2.19325 -s 10 -d 7 -p ack -e 40 -c 0 -i 3854 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.19328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3849 -a 0 -x {9.0 10.0 1929 ------- null} + -t 2.19328 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3849 -a 0 -x {9.0 10.0 1929 ------- null} h -t 2.19328 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3849 -a 0 -x {9.0 10.0 1929 ------- null} + -t 2.19392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3841 -a 0 -x {9.0 10.0 1925 ------- null} - -t 2.19392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3841 -a 0 -x {9.0 10.0 1925 ------- null} h -t 2.19392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3841 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.19394 -s 0 -d 9 -p ack -e 40 -c 0 -i 3844 -a 0 -x {10.0 9.0 1917 ------- null} + -t 2.19394 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3855 -a 0 -x {9.0 10.0 1932 ------- null} - -t 2.19394 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3855 -a 0 -x {9.0 10.0 1932 ------- null} h -t 2.19394 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3855 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.19419 -s 0 -d 9 -p ack -e 40 -c 0 -i 3848 -a 0 -x {10.0 9.0 1919 ------- null} - -t 2.19419 -s 0 -d 9 -p ack -e 40 -c 0 -i 3848 -a 0 -x {10.0 9.0 1919 ------- null} h -t 2.19419 -s 0 -d 9 -p ack -e 40 -c 0 -i 3848 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.19419 -s 10 -d 7 -p ack -e 40 -c 0 -i 3852 -a 0 -x {10.0 9.0 1921 ------- null} + -t 2.19419 -s 7 -d 0 -p ack -e 40 -c 0 -i 3852 -a 0 -x {10.0 9.0 1921 ------- null} h -t 2.19419 -s 7 -d 8 -p ack -e 40 -c 0 -i 3852 -a 0 -x {10.0 9.0 1921 ------- null} r -t 2.19434 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3851 -a 0 -x {9.0 10.0 1930 ------- null} + -t 2.19434 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3851 -a 0 -x {9.0 10.0 1930 ------- null} h -t 2.19434 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3851 -a 0 -x {9.0 10.0 1930 ------- null} r -t 2.19454 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3837 -a 0 -x {9.0 10.0 1923 ------- null} + -t 2.19454 -s 10 -d 7 -p ack -e 40 -c 0 -i 3856 -a 0 -x {10.0 9.0 1923 ------- null} - -t 2.19454 -s 10 -d 7 -p ack -e 40 -c 0 -i 3856 -a 0 -x {10.0 9.0 1923 ------- null} h -t 2.19454 -s 10 -d 7 -p ack -e 40 -c 0 -i 3856 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.19506 -s 0 -d 9 -p ack -e 40 -c 0 -i 3846 -a 0 -x {10.0 9.0 1918 ------- null} + -t 2.19506 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3857 -a 0 -x {9.0 10.0 1933 ------- null} - -t 2.19506 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3857 -a 0 -x {9.0 10.0 1933 ------- null} h -t 2.19506 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3857 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.19506 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3843 -a 0 -x {9.0 10.0 1926 ------- null} - -t 2.19506 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3843 -a 0 -x {9.0 10.0 1926 ------- null} h -t 2.19506 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3843 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.1952 -s 0 -d 9 -p ack -e 40 -c 0 -i 3850 -a 0 -x {10.0 9.0 1920 ------- null} - -t 2.1952 -s 0 -d 9 -p ack -e 40 -c 0 -i 3850 -a 0 -x {10.0 9.0 1920 ------- null} h -t 2.1952 -s 0 -d 9 -p ack -e 40 -c 0 -i 3850 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.19528 -s 10 -d 7 -p ack -e 40 -c 0 -i 3854 -a 0 -x {10.0 9.0 1922 ------- null} + -t 2.19528 -s 7 -d 0 -p ack -e 40 -c 0 -i 3854 -a 0 -x {10.0 9.0 1922 ------- null} h -t 2.19528 -s 7 -d 8 -p ack -e 40 -c 0 -i 3854 -a 0 -x {10.0 9.0 1922 ------- null} r -t 2.19557 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3853 -a 0 -x {9.0 10.0 1931 ------- null} + -t 2.19557 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3853 -a 0 -x {9.0 10.0 1931 ------- null} h -t 2.19557 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3853 -a 0 -x {9.0 10.0 1931 ------- null} r -t 2.19563 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3839 -a 0 -x {9.0 10.0 1924 ------- null} + -t 2.19563 -s 10 -d 7 -p ack -e 40 -c 0 -i 3858 -a 0 -x {10.0 9.0 1924 ------- null} - -t 2.19563 -s 10 -d 7 -p ack -e 40 -c 0 -i 3858 -a 0 -x {10.0 9.0 1924 ------- null} h -t 2.19563 -s 10 -d 7 -p ack -e 40 -c 0 -i 3858 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.19614 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3845 -a 0 -x {9.0 10.0 1927 ------- null} - -t 2.19614 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3845 -a 0 -x {9.0 10.0 1927 ------- null} h -t 2.19614 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3845 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.19622 -s 0 -d 9 -p ack -e 40 -c 0 -i 3848 -a 0 -x {10.0 9.0 1919 ------- null} + -t 2.19622 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3859 -a 0 -x {9.0 10.0 1934 ------- null} - -t 2.19622 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3859 -a 0 -x {9.0 10.0 1934 ------- null} h -t 2.19622 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3859 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.19622 -s 0 -d 9 -p ack -e 40 -c 0 -i 3852 -a 0 -x {10.0 9.0 1921 ------- null} - -t 2.19622 -s 0 -d 9 -p ack -e 40 -c 0 -i 3852 -a 0 -x {10.0 9.0 1921 ------- null} h -t 2.19622 -s 0 -d 9 -p ack -e 40 -c 0 -i 3852 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.19658 -s 10 -d 7 -p ack -e 40 -c 0 -i 3856 -a 0 -x {10.0 9.0 1923 ------- null} + -t 2.19658 -s 7 -d 0 -p ack -e 40 -c 0 -i 3856 -a 0 -x {10.0 9.0 1923 ------- null} h -t 2.19658 -s 7 -d 8 -p ack -e 40 -c 0 -i 3856 -a 0 -x {10.0 9.0 1923 ------- null} r -t 2.19672 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3841 -a 0 -x {9.0 10.0 1925 ------- null} + -t 2.19672 -s 10 -d 7 -p ack -e 40 -c 0 -i 3860 -a 0 -x {10.0 9.0 1925 ------- null} - -t 2.19672 -s 10 -d 7 -p ack -e 40 -c 0 -i 3860 -a 0 -x {10.0 9.0 1925 ------- null} h -t 2.19672 -s 10 -d 7 -p ack -e 40 -c 0 -i 3860 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.19674 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3855 -a 0 -x {9.0 10.0 1932 ------- null} + -t 2.19674 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3855 -a 0 -x {9.0 10.0 1932 ------- null} h -t 2.19674 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3855 -a 0 -x {9.0 10.0 1932 ------- null} + -t 2.19723 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3847 -a 0 -x {9.0 10.0 1928 ------- null} - -t 2.19723 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3847 -a 0 -x {9.0 10.0 1928 ------- null} h -t 2.19723 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3847 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.19723 -s 0 -d 9 -p ack -e 40 -c 0 -i 3850 -a 0 -x {10.0 9.0 1920 ------- null} + -t 2.19723 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3861 -a 0 -x {9.0 10.0 1935 ------- null} - -t 2.19723 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3861 -a 0 -x {9.0 10.0 1935 ------- null} h -t 2.19723 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3861 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.1973 -s 0 -d 9 -p ack -e 40 -c 0 -i 3854 -a 0 -x {10.0 9.0 1922 ------- null} - -t 2.1973 -s 0 -d 9 -p ack -e 40 -c 0 -i 3854 -a 0 -x {10.0 9.0 1922 ------- null} h -t 2.1973 -s 0 -d 9 -p ack -e 40 -c 0 -i 3854 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.19766 -s 10 -d 7 -p ack -e 40 -c 0 -i 3858 -a 0 -x {10.0 9.0 1924 ------- null} + -t 2.19766 -s 7 -d 0 -p ack -e 40 -c 0 -i 3858 -a 0 -x {10.0 9.0 1924 ------- null} h -t 2.19766 -s 7 -d 8 -p ack -e 40 -c 0 -i 3858 -a 0 -x {10.0 9.0 1924 ------- null} r -t 2.19786 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3857 -a 0 -x {9.0 10.0 1933 ------- null} + -t 2.19786 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3857 -a 0 -x {9.0 10.0 1933 ------- null} h -t 2.19786 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3857 -a 0 -x {9.0 10.0 1933 ------- null} r -t 2.19786 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3843 -a 0 -x {9.0 10.0 1926 ------- null} + -t 2.19786 -s 10 -d 7 -p ack -e 40 -c 0 -i 3862 -a 0 -x {10.0 9.0 1926 ------- null} - -t 2.19786 -s 10 -d 7 -p ack -e 40 -c 0 -i 3862 -a 0 -x {10.0 9.0 1926 ------- null} h -t 2.19786 -s 10 -d 7 -p ack -e 40 -c 0 -i 3862 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.19826 -s 0 -d 9 -p ack -e 40 -c 0 -i 3852 -a 0 -x {10.0 9.0 1921 ------- null} + -t 2.19826 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3863 -a 0 -x {9.0 10.0 1936 ------- null} - -t 2.19826 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3863 -a 0 -x {9.0 10.0 1936 ------- null} h -t 2.19826 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3863 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.19832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3849 -a 0 -x {9.0 10.0 1929 ------- null} - -t 2.19832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3849 -a 0 -x {9.0 10.0 1929 ------- null} h -t 2.19832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3849 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.1985 -s 0 -d 9 -p ack -e 40 -c 0 -i 3856 -a 0 -x {10.0 9.0 1923 ------- null} - -t 2.1985 -s 0 -d 9 -p ack -e 40 -c 0 -i 3856 -a 0 -x {10.0 9.0 1923 ------- null} h -t 2.1985 -s 0 -d 9 -p ack -e 40 -c 0 -i 3856 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.19875 -s 10 -d 7 -p ack -e 40 -c 0 -i 3860 -a 0 -x {10.0 9.0 1925 ------- null} + -t 2.19875 -s 7 -d 0 -p ack -e 40 -c 0 -i 3860 -a 0 -x {10.0 9.0 1925 ------- null} h -t 2.19875 -s 7 -d 8 -p ack -e 40 -c 0 -i 3860 -a 0 -x {10.0 9.0 1925 ------- null} r -t 2.19894 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3845 -a 0 -x {9.0 10.0 1927 ------- null} + -t 2.19894 -s 10 -d 7 -p ack -e 40 -c 0 -i 3864 -a 0 -x {10.0 9.0 1927 ------- null} - -t 2.19894 -s 10 -d 7 -p ack -e 40 -c 0 -i 3864 -a 0 -x {10.0 9.0 1927 ------- null} h -t 2.19894 -s 10 -d 7 -p ack -e 40 -c 0 -i 3864 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.19902 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3859 -a 0 -x {9.0 10.0 1934 ------- null} + -t 2.19902 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3859 -a 0 -x {9.0 10.0 1934 ------- null} h -t 2.19902 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3859 -a 0 -x {9.0 10.0 1934 ------- null} r -t 2.19933 -s 0 -d 9 -p ack -e 40 -c 0 -i 3854 -a 0 -x {10.0 9.0 1922 ------- null} + -t 2.19933 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3865 -a 0 -x {9.0 10.0 1937 ------- null} - -t 2.19933 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3865 -a 0 -x {9.0 10.0 1937 ------- null} h -t 2.19933 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3865 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.19941 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3851 -a 0 -x {9.0 10.0 1930 ------- null} - -t 2.19941 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3851 -a 0 -x {9.0 10.0 1930 ------- null} h -t 2.19941 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3851 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.19965 -s 0 -d 9 -p ack -e 40 -c 0 -i 3858 -a 0 -x {10.0 9.0 1924 ------- null} - -t 2.19965 -s 0 -d 9 -p ack -e 40 -c 0 -i 3858 -a 0 -x {10.0 9.0 1924 ------- null} h -t 2.19965 -s 0 -d 9 -p ack -e 40 -c 0 -i 3858 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.19989 -s 10 -d 7 -p ack -e 40 -c 0 -i 3862 -a 0 -x {10.0 9.0 1926 ------- null} + -t 2.19989 -s 7 -d 0 -p ack -e 40 -c 0 -i 3862 -a 0 -x {10.0 9.0 1926 ------- null} h -t 2.19989 -s 7 -d 8 -p ack -e 40 -c 0 -i 3862 -a 0 -x {10.0 9.0 1926 ------- null} r -t 2.20003 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3847 -a 0 -x {9.0 10.0 1928 ------- null} + -t 2.20003 -s 10 -d 7 -p ack -e 40 -c 0 -i 3866 -a 0 -x {10.0 9.0 1928 ------- null} - -t 2.20003 -s 10 -d 7 -p ack -e 40 -c 0 -i 3866 -a 0 -x {10.0 9.0 1928 ------- null} h -t 2.20003 -s 10 -d 7 -p ack -e 40 -c 0 -i 3866 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.20003 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3861 -a 0 -x {9.0 10.0 1935 ------- null} + -t 2.20003 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3861 -a 0 -x {9.0 10.0 1935 ------- null} h -t 2.20003 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3861 -a 0 -x {9.0 10.0 1935 ------- null} + -t 2.2005 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3853 -a 0 -x {9.0 10.0 1931 ------- null} - -t 2.2005 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3853 -a 0 -x {9.0 10.0 1931 ------- null} h -t 2.2005 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3853 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.20053 -s 0 -d 9 -p ack -e 40 -c 0 -i 3856 -a 0 -x {10.0 9.0 1923 ------- null} + -t 2.20053 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3867 -a 0 -x {9.0 10.0 1938 ------- null} - -t 2.20053 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3867 -a 0 -x {9.0 10.0 1938 ------- null} h -t 2.20053 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3867 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.20078 -s 0 -d 9 -p ack -e 40 -c 0 -i 3860 -a 0 -x {10.0 9.0 1925 ------- null} - -t 2.20078 -s 0 -d 9 -p ack -e 40 -c 0 -i 3860 -a 0 -x {10.0 9.0 1925 ------- null} h -t 2.20078 -s 0 -d 9 -p ack -e 40 -c 0 -i 3860 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.20098 -s 10 -d 7 -p ack -e 40 -c 0 -i 3864 -a 0 -x {10.0 9.0 1927 ------- null} + -t 2.20098 -s 7 -d 0 -p ack -e 40 -c 0 -i 3864 -a 0 -x {10.0 9.0 1927 ------- null} h -t 2.20098 -s 7 -d 8 -p ack -e 40 -c 0 -i 3864 -a 0 -x {10.0 9.0 1927 ------- null} r -t 2.20106 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3863 -a 0 -x {9.0 10.0 1936 ------- null} + -t 2.20106 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3863 -a 0 -x {9.0 10.0 1936 ------- null} h -t 2.20106 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3863 -a 0 -x {9.0 10.0 1936 ------- null} r -t 2.20112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3849 -a 0 -x {9.0 10.0 1929 ------- null} + -t 2.20112 -s 10 -d 7 -p ack -e 40 -c 0 -i 3868 -a 0 -x {10.0 9.0 1929 ------- null} - -t 2.20112 -s 10 -d 7 -p ack -e 40 -c 0 -i 3868 -a 0 -x {10.0 9.0 1929 ------- null} h -t 2.20112 -s 10 -d 7 -p ack -e 40 -c 0 -i 3868 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.20168 -s 0 -d 9 -p ack -e 40 -c 0 -i 3858 -a 0 -x {10.0 9.0 1924 ------- null} + -t 2.20168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3869 -a 0 -x {9.0 10.0 1939 ------- null} - -t 2.20168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3869 -a 0 -x {9.0 10.0 1939 ------- null} h -t 2.20168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3869 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.20171 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3855 -a 0 -x {9.0 10.0 1932 ------- null} - -t 2.20171 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3855 -a 0 -x {9.0 10.0 1932 ------- null} h -t 2.20171 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3855 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.20179 -s 0 -d 9 -p ack -e 40 -c 0 -i 3862 -a 0 -x {10.0 9.0 1926 ------- null} - -t 2.20179 -s 0 -d 9 -p ack -e 40 -c 0 -i 3862 -a 0 -x {10.0 9.0 1926 ------- null} h -t 2.20179 -s 0 -d 9 -p ack -e 40 -c 0 -i 3862 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.20206 -s 10 -d 7 -p ack -e 40 -c 0 -i 3866 -a 0 -x {10.0 9.0 1928 ------- null} + -t 2.20206 -s 7 -d 0 -p ack -e 40 -c 0 -i 3866 -a 0 -x {10.0 9.0 1928 ------- null} h -t 2.20206 -s 7 -d 8 -p ack -e 40 -c 0 -i 3866 -a 0 -x {10.0 9.0 1928 ------- null} r -t 2.20213 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3865 -a 0 -x {9.0 10.0 1937 ------- null} + -t 2.20213 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3865 -a 0 -x {9.0 10.0 1937 ------- null} h -t 2.20213 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3865 -a 0 -x {9.0 10.0 1937 ------- null} r -t 2.20221 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3851 -a 0 -x {9.0 10.0 1930 ------- null} + -t 2.20221 -s 10 -d 7 -p ack -e 40 -c 0 -i 3870 -a 0 -x {10.0 9.0 1930 ------- null} - -t 2.20221 -s 10 -d 7 -p ack -e 40 -c 0 -i 3870 -a 0 -x {10.0 9.0 1930 ------- null} h -t 2.20221 -s 10 -d 7 -p ack -e 40 -c 0 -i 3870 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.2028 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3857 -a 0 -x {9.0 10.0 1933 ------- null} - -t 2.2028 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3857 -a 0 -x {9.0 10.0 1933 ------- null} h -t 2.2028 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3857 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.20282 -s 0 -d 9 -p ack -e 40 -c 0 -i 3860 -a 0 -x {10.0 9.0 1925 ------- null} + -t 2.20282 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3871 -a 0 -x {9.0 10.0 1940 ------- null} - -t 2.20282 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3871 -a 0 -x {9.0 10.0 1940 ------- null} h -t 2.20282 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3871 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.20304 -s 0 -d 9 -p ack -e 40 -c 0 -i 3864 -a 0 -x {10.0 9.0 1927 ------- null} - -t 2.20304 -s 0 -d 9 -p ack -e 40 -c 0 -i 3864 -a 0 -x {10.0 9.0 1927 ------- null} h -t 2.20304 -s 0 -d 9 -p ack -e 40 -c 0 -i 3864 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.20315 -s 10 -d 7 -p ack -e 40 -c 0 -i 3868 -a 0 -x {10.0 9.0 1929 ------- null} + -t 2.20315 -s 7 -d 0 -p ack -e 40 -c 0 -i 3868 -a 0 -x {10.0 9.0 1929 ------- null} h -t 2.20315 -s 7 -d 8 -p ack -e 40 -c 0 -i 3868 -a 0 -x {10.0 9.0 1929 ------- null} r -t 2.2033 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3853 -a 0 -x {9.0 10.0 1931 ------- null} + -t 2.2033 -s 10 -d 7 -p ack -e 40 -c 0 -i 3872 -a 0 -x {10.0 9.0 1931 ------- null} - -t 2.2033 -s 10 -d 7 -p ack -e 40 -c 0 -i 3872 -a 0 -x {10.0 9.0 1931 ------- null} h -t 2.2033 -s 10 -d 7 -p ack -e 40 -c 0 -i 3872 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.20333 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3867 -a 0 -x {9.0 10.0 1938 ------- null} + -t 2.20333 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3867 -a 0 -x {9.0 10.0 1938 ------- null} h -t 2.20333 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3867 -a 0 -x {9.0 10.0 1938 ------- null} r -t 2.20382 -s 0 -d 9 -p ack -e 40 -c 0 -i 3862 -a 0 -x {10.0 9.0 1926 ------- null} + -t 2.20382 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3873 -a 0 -x {9.0 10.0 1941 ------- null} - -t 2.20382 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3873 -a 0 -x {9.0 10.0 1941 ------- null} h -t 2.20382 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3873 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.20389 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3859 -a 0 -x {9.0 10.0 1934 ------- null} - -t 2.20389 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3859 -a 0 -x {9.0 10.0 1934 ------- null} h -t 2.20389 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3859 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.2041 -s 0 -d 9 -p ack -e 40 -c 0 -i 3866 -a 0 -x {10.0 9.0 1928 ------- null} - -t 2.2041 -s 0 -d 9 -p ack -e 40 -c 0 -i 3866 -a 0 -x {10.0 9.0 1928 ------- null} h -t 2.2041 -s 0 -d 9 -p ack -e 40 -c 0 -i 3866 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.20424 -s 10 -d 7 -p ack -e 40 -c 0 -i 3870 -a 0 -x {10.0 9.0 1930 ------- null} + -t 2.20424 -s 7 -d 0 -p ack -e 40 -c 0 -i 3870 -a 0 -x {10.0 9.0 1930 ------- null} h -t 2.20424 -s 7 -d 8 -p ack -e 40 -c 0 -i 3870 -a 0 -x {10.0 9.0 1930 ------- null} r -t 2.20448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3869 -a 0 -x {9.0 10.0 1939 ------- null} + -t 2.20448 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3869 -a 0 -x {9.0 10.0 1939 ------- null} h -t 2.20448 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3869 -a 0 -x {9.0 10.0 1939 ------- null} r -t 2.20451 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3855 -a 0 -x {9.0 10.0 1932 ------- null} + -t 2.20451 -s 10 -d 7 -p ack -e 40 -c 0 -i 3874 -a 0 -x {10.0 9.0 1932 ------- null} - -t 2.20451 -s 10 -d 7 -p ack -e 40 -c 0 -i 3874 -a 0 -x {10.0 9.0 1932 ------- null} h -t 2.20451 -s 10 -d 7 -p ack -e 40 -c 0 -i 3874 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.20498 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3861 -a 0 -x {9.0 10.0 1935 ------- null} - -t 2.20498 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3861 -a 0 -x {9.0 10.0 1935 ------- null} h -t 2.20498 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3861 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.20507 -s 0 -d 9 -p ack -e 40 -c 0 -i 3864 -a 0 -x {10.0 9.0 1927 ------- null} + -t 2.20507 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3875 -a 0 -x {9.0 10.0 1942 ------- null} - -t 2.20507 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3875 -a 0 -x {9.0 10.0 1942 ------- null} h -t 2.20507 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3875 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.20525 -s 0 -d 9 -p ack -e 40 -c 0 -i 3868 -a 0 -x {10.0 9.0 1929 ------- null} - -t 2.20525 -s 0 -d 9 -p ack -e 40 -c 0 -i 3868 -a 0 -x {10.0 9.0 1929 ------- null} h -t 2.20525 -s 0 -d 9 -p ack -e 40 -c 0 -i 3868 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.20533 -s 10 -d 7 -p ack -e 40 -c 0 -i 3872 -a 0 -x {10.0 9.0 1931 ------- null} + -t 2.20533 -s 7 -d 0 -p ack -e 40 -c 0 -i 3872 -a 0 -x {10.0 9.0 1931 ------- null} h -t 2.20533 -s 7 -d 8 -p ack -e 40 -c 0 -i 3872 -a 0 -x {10.0 9.0 1931 ------- null} r -t 2.2056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3857 -a 0 -x {9.0 10.0 1933 ------- null} + -t 2.2056 -s 10 -d 7 -p ack -e 40 -c 0 -i 3876 -a 0 -x {10.0 9.0 1933 ------- null} - -t 2.2056 -s 10 -d 7 -p ack -e 40 -c 0 -i 3876 -a 0 -x {10.0 9.0 1933 ------- null} h -t 2.2056 -s 10 -d 7 -p ack -e 40 -c 0 -i 3876 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.20562 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3871 -a 0 -x {9.0 10.0 1940 ------- null} + -t 2.20562 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3871 -a 0 -x {9.0 10.0 1940 ------- null} h -t 2.20562 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3871 -a 0 -x {9.0 10.0 1940 ------- null} r -t 2.20613 -s 0 -d 9 -p ack -e 40 -c 0 -i 3866 -a 0 -x {10.0 9.0 1928 ------- null} + -t 2.20613 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3877 -a 0 -x {9.0 10.0 1943 ------- null} - -t 2.20613 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3877 -a 0 -x {9.0 10.0 1943 ------- null} h -t 2.20613 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3877 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.20616 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3863 -a 0 -x {9.0 10.0 1936 ------- null} - -t 2.20616 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3863 -a 0 -x {9.0 10.0 1936 ------- null} h -t 2.20616 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3863 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.20646 -s 0 -d 9 -p ack -e 40 -c 0 -i 3870 -a 0 -x {10.0 9.0 1930 ------- null} - -t 2.20646 -s 0 -d 9 -p ack -e 40 -c 0 -i 3870 -a 0 -x {10.0 9.0 1930 ------- null} h -t 2.20646 -s 0 -d 9 -p ack -e 40 -c 0 -i 3870 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.20654 -s 10 -d 7 -p ack -e 40 -c 0 -i 3874 -a 0 -x {10.0 9.0 1932 ------- null} + -t 2.20654 -s 7 -d 0 -p ack -e 40 -c 0 -i 3874 -a 0 -x {10.0 9.0 1932 ------- null} h -t 2.20654 -s 7 -d 8 -p ack -e 40 -c 0 -i 3874 -a 0 -x {10.0 9.0 1932 ------- null} r -t 2.20662 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3873 -a 0 -x {9.0 10.0 1941 ------- null} + -t 2.20662 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3873 -a 0 -x {9.0 10.0 1941 ------- null} h -t 2.20662 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3873 -a 0 -x {9.0 10.0 1941 ------- null} r -t 2.20669 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3859 -a 0 -x {9.0 10.0 1934 ------- null} + -t 2.20669 -s 10 -d 7 -p ack -e 40 -c 0 -i 3878 -a 0 -x {10.0 9.0 1934 ------- null} - -t 2.20669 -s 10 -d 7 -p ack -e 40 -c 0 -i 3878 -a 0 -x {10.0 9.0 1934 ------- null} h -t 2.20669 -s 10 -d 7 -p ack -e 40 -c 0 -i 3878 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.20728 -s 0 -d 9 -p ack -e 40 -c 0 -i 3868 -a 0 -x {10.0 9.0 1929 ------- null} + -t 2.20728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3879 -a 0 -x {9.0 10.0 1944 ------- null} - -t 2.20728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3879 -a 0 -x {9.0 10.0 1944 ------- null} h -t 2.20728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3879 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.20733 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3865 -a 0 -x {9.0 10.0 1937 ------- null} - -t 2.20733 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3865 -a 0 -x {9.0 10.0 1937 ------- null} h -t 2.20733 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3865 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.20763 -s 0 -d 9 -p ack -e 40 -c 0 -i 3872 -a 0 -x {10.0 9.0 1931 ------- null} - -t 2.20763 -s 0 -d 9 -p ack -e 40 -c 0 -i 3872 -a 0 -x {10.0 9.0 1931 ------- null} h -t 2.20763 -s 0 -d 9 -p ack -e 40 -c 0 -i 3872 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.20763 -s 10 -d 7 -p ack -e 40 -c 0 -i 3876 -a 0 -x {10.0 9.0 1933 ------- null} + -t 2.20763 -s 7 -d 0 -p ack -e 40 -c 0 -i 3876 -a 0 -x {10.0 9.0 1933 ------- null} h -t 2.20763 -s 7 -d 8 -p ack -e 40 -c 0 -i 3876 -a 0 -x {10.0 9.0 1933 ------- null} r -t 2.20778 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3861 -a 0 -x {9.0 10.0 1935 ------- null} + -t 2.20778 -s 10 -d 7 -p ack -e 40 -c 0 -i 3880 -a 0 -x {10.0 9.0 1935 ------- null} - -t 2.20778 -s 10 -d 7 -p ack -e 40 -c 0 -i 3880 -a 0 -x {10.0 9.0 1935 ------- null} h -t 2.20778 -s 10 -d 7 -p ack -e 40 -c 0 -i 3880 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.20787 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3875 -a 0 -x {9.0 10.0 1942 ------- null} + -t 2.20787 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3875 -a 0 -x {9.0 10.0 1942 ------- null} h -t 2.20787 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3875 -a 0 -x {9.0 10.0 1942 ------- null} r -t 2.2085 -s 0 -d 9 -p ack -e 40 -c 0 -i 3870 -a 0 -x {10.0 9.0 1930 ------- null} + -t 2.2085 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3881 -a 0 -x {9.0 10.0 1945 ------- null} - -t 2.2085 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3881 -a 0 -x {9.0 10.0 1945 ------- null} h -t 2.2085 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3881 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.20869 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3867 -a 0 -x {9.0 10.0 1938 ------- null} - -t 2.20869 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3867 -a 0 -x {9.0 10.0 1938 ------- null} h -t 2.20869 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3867 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.20872 -s 10 -d 7 -p ack -e 40 -c 0 -i 3878 -a 0 -x {10.0 9.0 1934 ------- null} + -t 2.20872 -s 7 -d 0 -p ack -e 40 -c 0 -i 3878 -a 0 -x {10.0 9.0 1934 ------- null} h -t 2.20872 -s 7 -d 8 -p ack -e 40 -c 0 -i 3878 -a 0 -x {10.0 9.0 1934 ------- null} + -t 2.20885 -s 0 -d 9 -p ack -e 40 -c 0 -i 3874 -a 0 -x {10.0 9.0 1932 ------- null} - -t 2.20885 -s 0 -d 9 -p ack -e 40 -c 0 -i 3874 -a 0 -x {10.0 9.0 1932 ------- null} h -t 2.20885 -s 0 -d 9 -p ack -e 40 -c 0 -i 3874 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.20893 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3877 -a 0 -x {9.0 10.0 1943 ------- null} + -t 2.20893 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3877 -a 0 -x {9.0 10.0 1943 ------- null} h -t 2.20893 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3877 -a 0 -x {9.0 10.0 1943 ------- null} r -t 2.20896 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3863 -a 0 -x {9.0 10.0 1936 ------- null} + -t 2.20896 -s 10 -d 7 -p ack -e 40 -c 0 -i 3882 -a 0 -x {10.0 9.0 1936 ------- null} - -t 2.20896 -s 10 -d 7 -p ack -e 40 -c 0 -i 3882 -a 0 -x {10.0 9.0 1936 ------- null} h -t 2.20896 -s 10 -d 7 -p ack -e 40 -c 0 -i 3882 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.20966 -s 0 -d 9 -p ack -e 40 -c 0 -i 3872 -a 0 -x {10.0 9.0 1931 ------- null} + -t 2.20966 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3883 -a 0 -x {9.0 10.0 1946 ------- null} - -t 2.20966 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3883 -a 0 -x {9.0 10.0 1946 ------- null} h -t 2.20966 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3883 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.20978 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3869 -a 0 -x {9.0 10.0 1939 ------- null} - -t 2.20978 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3869 -a 0 -x {9.0 10.0 1939 ------- null} h -t 2.20978 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3869 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.20981 -s 10 -d 7 -p ack -e 40 -c 0 -i 3880 -a 0 -x {10.0 9.0 1935 ------- null} + -t 2.20981 -s 7 -d 0 -p ack -e 40 -c 0 -i 3880 -a 0 -x {10.0 9.0 1935 ------- null} h -t 2.20981 -s 7 -d 8 -p ack -e 40 -c 0 -i 3880 -a 0 -x {10.0 9.0 1935 ------- null} + -t 2.21006 -s 0 -d 9 -p ack -e 40 -c 0 -i 3876 -a 0 -x {10.0 9.0 1933 ------- null} - -t 2.21006 -s 0 -d 9 -p ack -e 40 -c 0 -i 3876 -a 0 -x {10.0 9.0 1933 ------- null} h -t 2.21006 -s 0 -d 9 -p ack -e 40 -c 0 -i 3876 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.21008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3879 -a 0 -x {9.0 10.0 1944 ------- null} + -t 2.21008 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3879 -a 0 -x {9.0 10.0 1944 ------- null} h -t 2.21008 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3879 -a 0 -x {9.0 10.0 1944 ------- null} r -t 2.21013 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3865 -a 0 -x {9.0 10.0 1937 ------- null} + -t 2.21013 -s 10 -d 7 -p ack -e 40 -c 0 -i 3884 -a 0 -x {10.0 9.0 1937 ------- null} - -t 2.21013 -s 10 -d 7 -p ack -e 40 -c 0 -i 3884 -a 0 -x {10.0 9.0 1937 ------- null} h -t 2.21013 -s 10 -d 7 -p ack -e 40 -c 0 -i 3884 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.21088 -s 0 -d 9 -p ack -e 40 -c 0 -i 3874 -a 0 -x {10.0 9.0 1932 ------- null} + -t 2.21088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3885 -a 0 -x {9.0 10.0 1947 ------- null} - -t 2.21088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3885 -a 0 -x {9.0 10.0 1947 ------- null} h -t 2.21088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3885 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.21099 -s 10 -d 7 -p ack -e 40 -c 0 -i 3882 -a 0 -x {10.0 9.0 1936 ------- null} + -t 2.21099 -s 7 -d 0 -p ack -e 40 -c 0 -i 3882 -a 0 -x {10.0 9.0 1936 ------- null} h -t 2.21099 -s 7 -d 8 -p ack -e 40 -c 0 -i 3882 -a 0 -x {10.0 9.0 1936 ------- null} + -t 2.21112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3871 -a 0 -x {9.0 10.0 1940 ------- null} - -t 2.21112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3871 -a 0 -x {9.0 10.0 1940 ------- null} h -t 2.21112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3871 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.21122 -s 0 -d 9 -p ack -e 40 -c 0 -i 3878 -a 0 -x {10.0 9.0 1934 ------- null} - -t 2.21122 -s 0 -d 9 -p ack -e 40 -c 0 -i 3878 -a 0 -x {10.0 9.0 1934 ------- null} h -t 2.21122 -s 0 -d 9 -p ack -e 40 -c 0 -i 3878 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.2113 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3881 -a 0 -x {9.0 10.0 1945 ------- null} + -t 2.2113 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3881 -a 0 -x {9.0 10.0 1945 ------- null} h -t 2.2113 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3881 -a 0 -x {9.0 10.0 1945 ------- null} r -t 2.21149 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3867 -a 0 -x {9.0 10.0 1938 ------- null} + -t 2.21149 -s 10 -d 7 -p ack -e 40 -c 0 -i 3886 -a 0 -x {10.0 9.0 1938 ------- null} - -t 2.21149 -s 10 -d 7 -p ack -e 40 -c 0 -i 3886 -a 0 -x {10.0 9.0 1938 ------- null} h -t 2.21149 -s 10 -d 7 -p ack -e 40 -c 0 -i 3886 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.2121 -s 0 -d 9 -p ack -e 40 -c 0 -i 3876 -a 0 -x {10.0 9.0 1933 ------- null} + -t 2.2121 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3887 -a 0 -x {9.0 10.0 1948 ------- null} - -t 2.2121 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3887 -a 0 -x {9.0 10.0 1948 ------- null} h -t 2.2121 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3887 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.21216 -s 10 -d 7 -p ack -e 40 -c 0 -i 3884 -a 0 -x {10.0 9.0 1937 ------- null} + -t 2.21216 -s 7 -d 0 -p ack -e 40 -c 0 -i 3884 -a 0 -x {10.0 9.0 1937 ------- null} h -t 2.21216 -s 7 -d 8 -p ack -e 40 -c 0 -i 3884 -a 0 -x {10.0 9.0 1937 ------- null} + -t 2.21221 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3873 -a 0 -x {9.0 10.0 1941 ------- null} - -t 2.21221 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3873 -a 0 -x {9.0 10.0 1941 ------- null} h -t 2.21221 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3873 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.2123 -s 0 -d 9 -p ack -e 40 -c 0 -i 3880 -a 0 -x {10.0 9.0 1935 ------- null} - -t 2.2123 -s 0 -d 9 -p ack -e 40 -c 0 -i 3880 -a 0 -x {10.0 9.0 1935 ------- null} h -t 2.2123 -s 0 -d 9 -p ack -e 40 -c 0 -i 3880 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.21246 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3883 -a 0 -x {9.0 10.0 1946 ------- null} + -t 2.21246 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3883 -a 0 -x {9.0 10.0 1946 ------- null} h -t 2.21246 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3883 -a 0 -x {9.0 10.0 1946 ------- null} r -t 2.21258 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3869 -a 0 -x {9.0 10.0 1939 ------- null} + -t 2.21258 -s 10 -d 7 -p ack -e 40 -c 0 -i 3888 -a 0 -x {10.0 9.0 1939 ------- null} - -t 2.21258 -s 10 -d 7 -p ack -e 40 -c 0 -i 3888 -a 0 -x {10.0 9.0 1939 ------- null} h -t 2.21258 -s 10 -d 7 -p ack -e 40 -c 0 -i 3888 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.21325 -s 0 -d 9 -p ack -e 40 -c 0 -i 3878 -a 0 -x {10.0 9.0 1934 ------- null} + -t 2.21325 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3889 -a 0 -x {9.0 10.0 1949 ------- null} - -t 2.21325 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3889 -a 0 -x {9.0 10.0 1949 ------- null} h -t 2.21325 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3889 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.2133 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3875 -a 0 -x {9.0 10.0 1942 ------- null} - -t 2.2133 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3875 -a 0 -x {9.0 10.0 1942 ------- null} h -t 2.2133 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3875 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.21341 -s 0 -d 9 -p ack -e 40 -c 0 -i 3882 -a 0 -x {10.0 9.0 1936 ------- null} - -t 2.21341 -s 0 -d 9 -p ack -e 40 -c 0 -i 3882 -a 0 -x {10.0 9.0 1936 ------- null} h -t 2.21341 -s 0 -d 9 -p ack -e 40 -c 0 -i 3882 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.21352 -s 10 -d 7 -p ack -e 40 -c 0 -i 3886 -a 0 -x {10.0 9.0 1938 ------- null} + -t 2.21352 -s 7 -d 0 -p ack -e 40 -c 0 -i 3886 -a 0 -x {10.0 9.0 1938 ------- null} h -t 2.21352 -s 7 -d 8 -p ack -e 40 -c 0 -i 3886 -a 0 -x {10.0 9.0 1938 ------- null} r -t 2.21368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3885 -a 0 -x {9.0 10.0 1947 ------- null} + -t 2.21368 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3885 -a 0 -x {9.0 10.0 1947 ------- null} h -t 2.21368 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3885 -a 0 -x {9.0 10.0 1947 ------- null} r -t 2.21392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3871 -a 0 -x {9.0 10.0 1940 ------- null} + -t 2.21392 -s 10 -d 7 -p ack -e 40 -c 0 -i 3890 -a 0 -x {10.0 9.0 1940 ------- null} - -t 2.21392 -s 10 -d 7 -p ack -e 40 -c 0 -i 3890 -a 0 -x {10.0 9.0 1940 ------- null} h -t 2.21392 -s 10 -d 7 -p ack -e 40 -c 0 -i 3890 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.21434 -s 0 -d 9 -p ack -e 40 -c 0 -i 3880 -a 0 -x {10.0 9.0 1935 ------- null} + -t 2.21434 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3891 -a 0 -x {9.0 10.0 1950 ------- null} - -t 2.21434 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3891 -a 0 -x {9.0 10.0 1950 ------- null} h -t 2.21434 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3891 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.21438 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3877 -a 0 -x {9.0 10.0 1943 ------- null} - -t 2.21438 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3877 -a 0 -x {9.0 10.0 1943 ------- null} h -t 2.21438 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3877 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.21461 -s 10 -d 7 -p ack -e 40 -c 0 -i 3888 -a 0 -x {10.0 9.0 1939 ------- null} + -t 2.21461 -s 7 -d 0 -p ack -e 40 -c 0 -i 3888 -a 0 -x {10.0 9.0 1939 ------- null} h -t 2.21461 -s 7 -d 8 -p ack -e 40 -c 0 -i 3888 -a 0 -x {10.0 9.0 1939 ------- null} + -t 2.21466 -s 0 -d 9 -p ack -e 40 -c 0 -i 3884 -a 0 -x {10.0 9.0 1937 ------- null} - -t 2.21466 -s 0 -d 9 -p ack -e 40 -c 0 -i 3884 -a 0 -x {10.0 9.0 1937 ------- null} h -t 2.21466 -s 0 -d 9 -p ack -e 40 -c 0 -i 3884 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.2149 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3887 -a 0 -x {9.0 10.0 1948 ------- null} + -t 2.2149 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3887 -a 0 -x {9.0 10.0 1948 ------- null} h -t 2.2149 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3887 -a 0 -x {9.0 10.0 1948 ------- null} r -t 2.21501 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3873 -a 0 -x {9.0 10.0 1941 ------- null} + -t 2.21501 -s 10 -d 7 -p ack -e 40 -c 0 -i 3892 -a 0 -x {10.0 9.0 1941 ------- null} - -t 2.21501 -s 10 -d 7 -p ack -e 40 -c 0 -i 3892 -a 0 -x {10.0 9.0 1941 ------- null} h -t 2.21501 -s 10 -d 7 -p ack -e 40 -c 0 -i 3892 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.21544 -s 0 -d 9 -p ack -e 40 -c 0 -i 3882 -a 0 -x {10.0 9.0 1936 ------- null} + -t 2.21544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3893 -a 0 -x {9.0 10.0 1951 ------- null} - -t 2.21544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3893 -a 0 -x {9.0 10.0 1951 ------- null} h -t 2.21544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3893 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.21554 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3879 -a 0 -x {9.0 10.0 1944 ------- null} - -t 2.21554 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3879 -a 0 -x {9.0 10.0 1944 ------- null} h -t 2.21554 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3879 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.21565 -s 0 -d 9 -p ack -e 40 -c 0 -i 3886 -a 0 -x {10.0 9.0 1938 ------- null} - -t 2.21565 -s 0 -d 9 -p ack -e 40 -c 0 -i 3886 -a 0 -x {10.0 9.0 1938 ------- null} h -t 2.21565 -s 0 -d 9 -p ack -e 40 -c 0 -i 3886 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.21595 -s 10 -d 7 -p ack -e 40 -c 0 -i 3890 -a 0 -x {10.0 9.0 1940 ------- null} + -t 2.21595 -s 7 -d 0 -p ack -e 40 -c 0 -i 3890 -a 0 -x {10.0 9.0 1940 ------- null} h -t 2.21595 -s 7 -d 8 -p ack -e 40 -c 0 -i 3890 -a 0 -x {10.0 9.0 1940 ------- null} r -t 2.21605 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3889 -a 0 -x {9.0 10.0 1949 ------- null} + -t 2.21605 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3889 -a 0 -x {9.0 10.0 1949 ------- null} h -t 2.21605 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3889 -a 0 -x {9.0 10.0 1949 ------- null} r -t 2.2161 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3875 -a 0 -x {9.0 10.0 1942 ------- null} + -t 2.2161 -s 10 -d 7 -p ack -e 40 -c 0 -i 3894 -a 0 -x {10.0 9.0 1942 ------- null} - -t 2.2161 -s 10 -d 7 -p ack -e 40 -c 0 -i 3894 -a 0 -x {10.0 9.0 1942 ------- null} h -t 2.2161 -s 10 -d 7 -p ack -e 40 -c 0 -i 3894 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.21662 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3881 -a 0 -x {9.0 10.0 1945 ------- null} - -t 2.21662 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3881 -a 0 -x {9.0 10.0 1945 ------- null} h -t 2.21662 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3881 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.21669 -s 0 -d 9 -p ack -e 40 -c 0 -i 3884 -a 0 -x {10.0 9.0 1937 ------- null} + -t 2.21669 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3895 -a 0 -x {9.0 10.0 1952 ------- null} - -t 2.21669 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3895 -a 0 -x {9.0 10.0 1952 ------- null} h -t 2.21669 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3895 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.21683 -s 0 -d 9 -p ack -e 40 -c 0 -i 3888 -a 0 -x {10.0 9.0 1939 ------- null} - -t 2.21683 -s 0 -d 9 -p ack -e 40 -c 0 -i 3888 -a 0 -x {10.0 9.0 1939 ------- null} h -t 2.21683 -s 0 -d 9 -p ack -e 40 -c 0 -i 3888 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.21704 -s 10 -d 7 -p ack -e 40 -c 0 -i 3892 -a 0 -x {10.0 9.0 1941 ------- null} + -t 2.21704 -s 7 -d 0 -p ack -e 40 -c 0 -i 3892 -a 0 -x {10.0 9.0 1941 ------- null} h -t 2.21704 -s 7 -d 8 -p ack -e 40 -c 0 -i 3892 -a 0 -x {10.0 9.0 1941 ------- null} r -t 2.21714 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3891 -a 0 -x {9.0 10.0 1950 ------- null} + -t 2.21714 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3891 -a 0 -x {9.0 10.0 1950 ------- null} h -t 2.21714 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3891 -a 0 -x {9.0 10.0 1950 ------- null} r -t 2.21718 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3877 -a 0 -x {9.0 10.0 1943 ------- null} + -t 2.21718 -s 10 -d 7 -p ack -e 40 -c 0 -i 3896 -a 0 -x {10.0 9.0 1943 ------- null} - -t 2.21718 -s 10 -d 7 -p ack -e 40 -c 0 -i 3896 -a 0 -x {10.0 9.0 1943 ------- null} h -t 2.21718 -s 10 -d 7 -p ack -e 40 -c 0 -i 3896 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.21768 -s 0 -d 9 -p ack -e 40 -c 0 -i 3886 -a 0 -x {10.0 9.0 1938 ------- null} + -t 2.21768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3897 -a 0 -x {9.0 10.0 1953 ------- null} - -t 2.21768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3897 -a 0 -x {9.0 10.0 1953 ------- null} h -t 2.21768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3897 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.21771 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3883 -a 0 -x {9.0 10.0 1946 ------- null} - -t 2.21771 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3883 -a 0 -x {9.0 10.0 1946 ------- null} h -t 2.21771 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3883 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.21797 -s 0 -d 9 -p ack -e 40 -c 0 -i 3890 -a 0 -x {10.0 9.0 1940 ------- null} - -t 2.21797 -s 0 -d 9 -p ack -e 40 -c 0 -i 3890 -a 0 -x {10.0 9.0 1940 ------- null} h -t 2.21797 -s 0 -d 9 -p ack -e 40 -c 0 -i 3890 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.21813 -s 10 -d 7 -p ack -e 40 -c 0 -i 3894 -a 0 -x {10.0 9.0 1942 ------- null} + -t 2.21813 -s 7 -d 0 -p ack -e 40 -c 0 -i 3894 -a 0 -x {10.0 9.0 1942 ------- null} h -t 2.21813 -s 7 -d 8 -p ack -e 40 -c 0 -i 3894 -a 0 -x {10.0 9.0 1942 ------- null} r -t 2.21824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3893 -a 0 -x {9.0 10.0 1951 ------- null} + -t 2.21824 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3893 -a 0 -x {9.0 10.0 1951 ------- null} h -t 2.21824 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3893 -a 0 -x {9.0 10.0 1951 ------- null} r -t 2.21834 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3879 -a 0 -x {9.0 10.0 1944 ------- null} + -t 2.21834 -s 10 -d 7 -p ack -e 40 -c 0 -i 3898 -a 0 -x {10.0 9.0 1944 ------- null} - -t 2.21834 -s 10 -d 7 -p ack -e 40 -c 0 -i 3898 -a 0 -x {10.0 9.0 1944 ------- null} h -t 2.21834 -s 10 -d 7 -p ack -e 40 -c 0 -i 3898 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.21886 -s 0 -d 9 -p ack -e 40 -c 0 -i 3888 -a 0 -x {10.0 9.0 1939 ------- null} + -t 2.21886 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3899 -a 0 -x {9.0 10.0 1954 ------- null} - -t 2.21886 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3899 -a 0 -x {9.0 10.0 1954 ------- null} h -t 2.21886 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3899 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.21904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3885 -a 0 -x {9.0 10.0 1947 ------- null} - -t 2.21904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3885 -a 0 -x {9.0 10.0 1947 ------- null} h -t 2.21904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3885 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.2191 -s 0 -d 9 -p ack -e 40 -c 0 -i 3892 -a 0 -x {10.0 9.0 1941 ------- null} - -t 2.2191 -s 0 -d 9 -p ack -e 40 -c 0 -i 3892 -a 0 -x {10.0 9.0 1941 ------- null} h -t 2.2191 -s 0 -d 9 -p ack -e 40 -c 0 -i 3892 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.21922 -s 10 -d 7 -p ack -e 40 -c 0 -i 3896 -a 0 -x {10.0 9.0 1943 ------- null} + -t 2.21922 -s 7 -d 0 -p ack -e 40 -c 0 -i 3896 -a 0 -x {10.0 9.0 1943 ------- null} h -t 2.21922 -s 7 -d 8 -p ack -e 40 -c 0 -i 3896 -a 0 -x {10.0 9.0 1943 ------- null} r -t 2.21942 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3881 -a 0 -x {9.0 10.0 1945 ------- null} + -t 2.21942 -s 10 -d 7 -p ack -e 40 -c 0 -i 3900 -a 0 -x {10.0 9.0 1945 ------- null} - -t 2.21942 -s 10 -d 7 -p ack -e 40 -c 0 -i 3900 -a 0 -x {10.0 9.0 1945 ------- null} h -t 2.21942 -s 10 -d 7 -p ack -e 40 -c 0 -i 3900 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.21949 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3895 -a 0 -x {9.0 10.0 1952 ------- null} + -t 2.21949 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3895 -a 0 -x {9.0 10.0 1952 ------- null} h -t 2.21949 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3895 -a 0 -x {9.0 10.0 1952 ------- null} r -t 2.22 -s 0 -d 9 -p ack -e 40 -c 0 -i 3890 -a 0 -x {10.0 9.0 1940 ------- null} + -t 2.22 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3901 -a 0 -x {9.0 10.0 1955 ------- null} - -t 2.22 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3901 -a 0 -x {9.0 10.0 1955 ------- null} h -t 2.22 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3901 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.22013 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3887 -a 0 -x {9.0 10.0 1948 ------- null} - -t 2.22013 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3887 -a 0 -x {9.0 10.0 1948 ------- null} h -t 2.22013 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3887 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.22026 -s 0 -d 9 -p ack -e 40 -c 0 -i 3894 -a 0 -x {10.0 9.0 1942 ------- null} - -t 2.22026 -s 0 -d 9 -p ack -e 40 -c 0 -i 3894 -a 0 -x {10.0 9.0 1942 ------- null} h -t 2.22026 -s 0 -d 9 -p ack -e 40 -c 0 -i 3894 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.22037 -s 10 -d 7 -p ack -e 40 -c 0 -i 3898 -a 0 -x {10.0 9.0 1944 ------- null} + -t 2.22037 -s 7 -d 0 -p ack -e 40 -c 0 -i 3898 -a 0 -x {10.0 9.0 1944 ------- null} h -t 2.22037 -s 7 -d 8 -p ack -e 40 -c 0 -i 3898 -a 0 -x {10.0 9.0 1944 ------- null} r -t 2.22048 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3897 -a 0 -x {9.0 10.0 1953 ------- null} + -t 2.22048 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3897 -a 0 -x {9.0 10.0 1953 ------- null} h -t 2.22048 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3897 -a 0 -x {9.0 10.0 1953 ------- null} r -t 2.22051 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3883 -a 0 -x {9.0 10.0 1946 ------- null} + -t 2.22051 -s 10 -d 7 -p ack -e 40 -c 0 -i 3902 -a 0 -x {10.0 9.0 1946 ------- null} - -t 2.22051 -s 10 -d 7 -p ack -e 40 -c 0 -i 3902 -a 0 -x {10.0 9.0 1946 ------- null} h -t 2.22051 -s 10 -d 7 -p ack -e 40 -c 0 -i 3902 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.22114 -s 0 -d 9 -p ack -e 40 -c 0 -i 3892 -a 0 -x {10.0 9.0 1941 ------- null} + -t 2.22114 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3903 -a 0 -x {9.0 10.0 1956 ------- null} - -t 2.22114 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3903 -a 0 -x {9.0 10.0 1956 ------- null} h -t 2.22114 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3903 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.22122 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3889 -a 0 -x {9.0 10.0 1949 ------- null} - -t 2.22122 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3889 -a 0 -x {9.0 10.0 1949 ------- null} h -t 2.22122 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3889 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.22133 -s 0 -d 9 -p ack -e 40 -c 0 -i 3896 -a 0 -x {10.0 9.0 1943 ------- null} - -t 2.22133 -s 0 -d 9 -p ack -e 40 -c 0 -i 3896 -a 0 -x {10.0 9.0 1943 ------- null} h -t 2.22133 -s 0 -d 9 -p ack -e 40 -c 0 -i 3896 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.22146 -s 10 -d 7 -p ack -e 40 -c 0 -i 3900 -a 0 -x {10.0 9.0 1945 ------- null} + -t 2.22146 -s 7 -d 0 -p ack -e 40 -c 0 -i 3900 -a 0 -x {10.0 9.0 1945 ------- null} h -t 2.22146 -s 7 -d 8 -p ack -e 40 -c 0 -i 3900 -a 0 -x {10.0 9.0 1945 ------- null} r -t 2.22166 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3899 -a 0 -x {9.0 10.0 1954 ------- null} + -t 2.22166 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3899 -a 0 -x {9.0 10.0 1954 ------- null} h -t 2.22166 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3899 -a 0 -x {9.0 10.0 1954 ------- null} r -t 2.22184 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3885 -a 0 -x {9.0 10.0 1947 ------- null} + -t 2.22184 -s 10 -d 7 -p ack -e 40 -c 0 -i 3904 -a 0 -x {10.0 9.0 1947 ------- null} - -t 2.22184 -s 10 -d 7 -p ack -e 40 -c 0 -i 3904 -a 0 -x {10.0 9.0 1947 ------- null} h -t 2.22184 -s 10 -d 7 -p ack -e 40 -c 0 -i 3904 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.22229 -s 0 -d 9 -p ack -e 40 -c 0 -i 3894 -a 0 -x {10.0 9.0 1942 ------- null} + -t 2.22229 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3905 -a 0 -x {9.0 10.0 1957 ------- null} - -t 2.22229 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3905 -a 0 -x {9.0 10.0 1957 ------- null} h -t 2.22229 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3905 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.2223 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3891 -a 0 -x {9.0 10.0 1950 ------- null} - -t 2.2223 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3891 -a 0 -x {9.0 10.0 1950 ------- null} h -t 2.2223 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3891 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.22254 -s 10 -d 7 -p ack -e 40 -c 0 -i 3902 -a 0 -x {10.0 9.0 1946 ------- null} + -t 2.22254 -s 7 -d 0 -p ack -e 40 -c 0 -i 3902 -a 0 -x {10.0 9.0 1946 ------- null} h -t 2.22254 -s 7 -d 8 -p ack -e 40 -c 0 -i 3902 -a 0 -x {10.0 9.0 1946 ------- null} + -t 2.22258 -s 0 -d 9 -p ack -e 40 -c 0 -i 3898 -a 0 -x {10.0 9.0 1944 ------- null} - -t 2.22258 -s 0 -d 9 -p ack -e 40 -c 0 -i 3898 -a 0 -x {10.0 9.0 1944 ------- null} h -t 2.22258 -s 0 -d 9 -p ack -e 40 -c 0 -i 3898 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.2228 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3901 -a 0 -x {9.0 10.0 1955 ------- null} + -t 2.2228 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3901 -a 0 -x {9.0 10.0 1955 ------- null} h -t 2.2228 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3901 -a 0 -x {9.0 10.0 1955 ------- null} r -t 2.22293 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3887 -a 0 -x {9.0 10.0 1948 ------- null} + -t 2.22293 -s 10 -d 7 -p ack -e 40 -c 0 -i 3906 -a 0 -x {10.0 9.0 1948 ------- null} - -t 2.22293 -s 10 -d 7 -p ack -e 40 -c 0 -i 3906 -a 0 -x {10.0 9.0 1948 ------- null} h -t 2.22293 -s 10 -d 7 -p ack -e 40 -c 0 -i 3906 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.22336 -s 0 -d 9 -p ack -e 40 -c 0 -i 3896 -a 0 -x {10.0 9.0 1943 ------- null} + -t 2.22336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3907 -a 0 -x {9.0 10.0 1958 ------- null} - -t 2.22336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3907 -a 0 -x {9.0 10.0 1958 ------- null} h -t 2.22336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3907 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.22355 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3893 -a 0 -x {9.0 10.0 1951 ------- null} - -t 2.22355 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3893 -a 0 -x {9.0 10.0 1951 ------- null} h -t 2.22355 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3893 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.22382 -s 0 -d 9 -p ack -e 40 -c 0 -i 3900 -a 0 -x {10.0 9.0 1945 ------- null} - -t 2.22382 -s 0 -d 9 -p ack -e 40 -c 0 -i 3900 -a 0 -x {10.0 9.0 1945 ------- null} h -t 2.22382 -s 0 -d 9 -p ack -e 40 -c 0 -i 3900 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.22387 -s 10 -d 7 -p ack -e 40 -c 0 -i 3904 -a 0 -x {10.0 9.0 1947 ------- null} + -t 2.22387 -s 7 -d 0 -p ack -e 40 -c 0 -i 3904 -a 0 -x {10.0 9.0 1947 ------- null} h -t 2.22387 -s 7 -d 8 -p ack -e 40 -c 0 -i 3904 -a 0 -x {10.0 9.0 1947 ------- null} r -t 2.22394 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3903 -a 0 -x {9.0 10.0 1956 ------- null} + -t 2.22394 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3903 -a 0 -x {9.0 10.0 1956 ------- null} h -t 2.22394 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3903 -a 0 -x {9.0 10.0 1956 ------- null} r -t 2.22402 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3889 -a 0 -x {9.0 10.0 1949 ------- null} + -t 2.22402 -s 10 -d 7 -p ack -e 40 -c 0 -i 3908 -a 0 -x {10.0 9.0 1949 ------- null} - -t 2.22402 -s 10 -d 7 -p ack -e 40 -c 0 -i 3908 -a 0 -x {10.0 9.0 1949 ------- null} h -t 2.22402 -s 10 -d 7 -p ack -e 40 -c 0 -i 3908 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.22461 -s 0 -d 9 -p ack -e 40 -c 0 -i 3898 -a 0 -x {10.0 9.0 1944 ------- null} + -t 2.22461 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3909 -a 0 -x {9.0 10.0 1959 ------- null} - -t 2.22461 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3909 -a 0 -x {9.0 10.0 1959 ------- null} h -t 2.22461 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3909 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.22483 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3895 -a 0 -x {9.0 10.0 1952 ------- null} - -t 2.22483 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3895 -a 0 -x {9.0 10.0 1952 ------- null} h -t 2.22483 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3895 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.22496 -s 10 -d 7 -p ack -e 40 -c 0 -i 3906 -a 0 -x {10.0 9.0 1948 ------- null} + -t 2.22496 -s 7 -d 0 -p ack -e 40 -c 0 -i 3906 -a 0 -x {10.0 9.0 1948 ------- null} h -t 2.22496 -s 7 -d 8 -p ack -e 40 -c 0 -i 3906 -a 0 -x {10.0 9.0 1948 ------- null} r -t 2.22509 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3905 -a 0 -x {9.0 10.0 1957 ------- null} + -t 2.22509 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3905 -a 0 -x {9.0 10.0 1957 ------- null} h -t 2.22509 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3905 -a 0 -x {9.0 10.0 1957 ------- null} + -t 2.22509 -s 0 -d 9 -p ack -e 40 -c 0 -i 3902 -a 0 -x {10.0 9.0 1946 ------- null} - -t 2.22509 -s 0 -d 9 -p ack -e 40 -c 0 -i 3902 -a 0 -x {10.0 9.0 1946 ------- null} h -t 2.22509 -s 0 -d 9 -p ack -e 40 -c 0 -i 3902 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.2251 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3891 -a 0 -x {9.0 10.0 1950 ------- null} + -t 2.2251 -s 10 -d 7 -p ack -e 40 -c 0 -i 3910 -a 0 -x {10.0 9.0 1950 ------- null} - -t 2.2251 -s 10 -d 7 -p ack -e 40 -c 0 -i 3910 -a 0 -x {10.0 9.0 1950 ------- null} h -t 2.2251 -s 10 -d 7 -p ack -e 40 -c 0 -i 3910 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.22586 -s 0 -d 9 -p ack -e 40 -c 0 -i 3900 -a 0 -x {10.0 9.0 1945 ------- null} + -t 2.22586 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3911 -a 0 -x {9.0 10.0 1960 ------- null} - -t 2.22586 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3911 -a 0 -x {9.0 10.0 1960 ------- null} h -t 2.22586 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3911 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.22605 -s 10 -d 7 -p ack -e 40 -c 0 -i 3908 -a 0 -x {10.0 9.0 1949 ------- null} + -t 2.22605 -s 7 -d 0 -p ack -e 40 -c 0 -i 3908 -a 0 -x {10.0 9.0 1949 ------- null} h -t 2.22605 -s 7 -d 8 -p ack -e 40 -c 0 -i 3908 -a 0 -x {10.0 9.0 1949 ------- null} r -t 2.22616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3907 -a 0 -x {9.0 10.0 1958 ------- null} + -t 2.22616 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3907 -a 0 -x {9.0 10.0 1958 ------- null} h -t 2.22616 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3907 -a 0 -x {9.0 10.0 1958 ------- null} + -t 2.22616 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3897 -a 0 -x {9.0 10.0 1953 ------- null} - -t 2.22616 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3897 -a 0 -x {9.0 10.0 1953 ------- null} h -t 2.22616 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3897 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.22635 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3893 -a 0 -x {9.0 10.0 1951 ------- null} + -t 2.22635 -s 10 -d 7 -p ack -e 40 -c 0 -i 3912 -a 0 -x {10.0 9.0 1951 ------- null} - -t 2.22635 -s 10 -d 7 -p ack -e 40 -c 0 -i 3912 -a 0 -x {10.0 9.0 1951 ------- null} h -t 2.22635 -s 10 -d 7 -p ack -e 40 -c 0 -i 3912 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.22643 -s 0 -d 9 -p ack -e 40 -c 0 -i 3904 -a 0 -x {10.0 9.0 1947 ------- null} - -t 2.22643 -s 0 -d 9 -p ack -e 40 -c 0 -i 3904 -a 0 -x {10.0 9.0 1947 ------- null} h -t 2.22643 -s 0 -d 9 -p ack -e 40 -c 0 -i 3904 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.22712 -s 0 -d 9 -p ack -e 40 -c 0 -i 3902 -a 0 -x {10.0 9.0 1946 ------- null} + -t 2.22712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3913 -a 0 -x {9.0 10.0 1961 ------- null} - -t 2.22712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3913 -a 0 -x {9.0 10.0 1961 ------- null} h -t 2.22712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3913 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.22714 -s 10 -d 7 -p ack -e 40 -c 0 -i 3910 -a 0 -x {10.0 9.0 1950 ------- null} + -t 2.22714 -s 7 -d 0 -p ack -e 40 -c 0 -i 3910 -a 0 -x {10.0 9.0 1950 ------- null} h -t 2.22714 -s 7 -d 8 -p ack -e 40 -c 0 -i 3910 -a 0 -x {10.0 9.0 1950 ------- null} + -t 2.22738 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3899 -a 0 -x {9.0 10.0 1954 ------- null} - -t 2.22738 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3899 -a 0 -x {9.0 10.0 1954 ------- null} h -t 2.22738 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3899 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.22741 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3909 -a 0 -x {9.0 10.0 1959 ------- null} + -t 2.22741 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3909 -a 0 -x {9.0 10.0 1959 ------- null} h -t 2.22741 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3909 -a 0 -x {9.0 10.0 1959 ------- null} + -t 2.22744 -s 0 -d 9 -p ack -e 40 -c 0 -i 3906 -a 0 -x {10.0 9.0 1948 ------- null} - -t 2.22744 -s 0 -d 9 -p ack -e 40 -c 0 -i 3906 -a 0 -x {10.0 9.0 1948 ------- null} h -t 2.22744 -s 0 -d 9 -p ack -e 40 -c 0 -i 3906 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.22763 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3895 -a 0 -x {9.0 10.0 1952 ------- null} + -t 2.22763 -s 10 -d 7 -p ack -e 40 -c 0 -i 3914 -a 0 -x {10.0 9.0 1952 ------- null} - -t 2.22763 -s 10 -d 7 -p ack -e 40 -c 0 -i 3914 -a 0 -x {10.0 9.0 1952 ------- null} h -t 2.22763 -s 10 -d 7 -p ack -e 40 -c 0 -i 3914 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.22838 -s 10 -d 7 -p ack -e 40 -c 0 -i 3912 -a 0 -x {10.0 9.0 1951 ------- null} + -t 2.22838 -s 7 -d 0 -p ack -e 40 -c 0 -i 3912 -a 0 -x {10.0 9.0 1951 ------- null} h -t 2.22838 -s 7 -d 8 -p ack -e 40 -c 0 -i 3912 -a 0 -x {10.0 9.0 1951 ------- null} r -t 2.22846 -s 0 -d 9 -p ack -e 40 -c 0 -i 3904 -a 0 -x {10.0 9.0 1947 ------- null} + -t 2.22846 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3915 -a 0 -x {9.0 10.0 1962 ------- null} - -t 2.22846 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3915 -a 0 -x {9.0 10.0 1962 ------- null} h -t 2.22846 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3915 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.22846 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3901 -a 0 -x {9.0 10.0 1955 ------- null} - -t 2.22846 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3901 -a 0 -x {9.0 10.0 1955 ------- null} h -t 2.22846 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3901 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.22866 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3911 -a 0 -x {9.0 10.0 1960 ------- null} + -t 2.22866 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3911 -a 0 -x {9.0 10.0 1960 ------- null} h -t 2.22866 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3911 -a 0 -x {9.0 10.0 1960 ------- null} + -t 2.2287 -s 0 -d 9 -p ack -e 40 -c 0 -i 3908 -a 0 -x {10.0 9.0 1949 ------- null} - -t 2.2287 -s 0 -d 9 -p ack -e 40 -c 0 -i 3908 -a 0 -x {10.0 9.0 1949 ------- null} h -t 2.2287 -s 0 -d 9 -p ack -e 40 -c 0 -i 3908 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.22896 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3897 -a 0 -x {9.0 10.0 1953 ------- null} + -t 2.22896 -s 10 -d 7 -p ack -e 40 -c 0 -i 3916 -a 0 -x {10.0 9.0 1953 ------- null} - -t 2.22896 -s 10 -d 7 -p ack -e 40 -c 0 -i 3916 -a 0 -x {10.0 9.0 1953 ------- null} h -t 2.22896 -s 10 -d 7 -p ack -e 40 -c 0 -i 3916 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.22947 -s 0 -d 9 -p ack -e 40 -c 0 -i 3906 -a 0 -x {10.0 9.0 1948 ------- null} + -t 2.22947 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3917 -a 0 -x {9.0 10.0 1963 ------- null} - -t 2.22947 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3917 -a 0 -x {9.0 10.0 1963 ------- null} h -t 2.22947 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3917 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.22955 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3903 -a 0 -x {9.0 10.0 1956 ------- null} - -t 2.22955 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3903 -a 0 -x {9.0 10.0 1956 ------- null} h -t 2.22955 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3903 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.22966 -s 10 -d 7 -p ack -e 40 -c 0 -i 3914 -a 0 -x {10.0 9.0 1952 ------- null} + -t 2.22966 -s 7 -d 0 -p ack -e 40 -c 0 -i 3914 -a 0 -x {10.0 9.0 1952 ------- null} h -t 2.22966 -s 7 -d 8 -p ack -e 40 -c 0 -i 3914 -a 0 -x {10.0 9.0 1952 ------- null} + -t 2.22968 -s 0 -d 9 -p ack -e 40 -c 0 -i 3910 -a 0 -x {10.0 9.0 1950 ------- null} - -t 2.22968 -s 0 -d 9 -p ack -e 40 -c 0 -i 3910 -a 0 -x {10.0 9.0 1950 ------- null} h -t 2.22968 -s 0 -d 9 -p ack -e 40 -c 0 -i 3910 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.22992 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3913 -a 0 -x {9.0 10.0 1961 ------- null} + -t 2.22992 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3913 -a 0 -x {9.0 10.0 1961 ------- null} h -t 2.22992 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3913 -a 0 -x {9.0 10.0 1961 ------- null} r -t 2.23018 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3899 -a 0 -x {9.0 10.0 1954 ------- null} + -t 2.23018 -s 10 -d 7 -p ack -e 40 -c 0 -i 3918 -a 0 -x {10.0 9.0 1954 ------- null} - -t 2.23018 -s 10 -d 7 -p ack -e 40 -c 0 -i 3918 -a 0 -x {10.0 9.0 1954 ------- null} h -t 2.23018 -s 10 -d 7 -p ack -e 40 -c 0 -i 3918 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.23064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3905 -a 0 -x {9.0 10.0 1957 ------- null} - -t 2.23064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3905 -a 0 -x {9.0 10.0 1957 ------- null} h -t 2.23064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3905 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.23074 -s 0 -d 9 -p ack -e 40 -c 0 -i 3908 -a 0 -x {10.0 9.0 1949 ------- null} + -t 2.23074 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3919 -a 0 -x {9.0 10.0 1964 ------- null} - -t 2.23074 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3919 -a 0 -x {9.0 10.0 1964 ------- null} h -t 2.23074 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3919 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.23094 -s 0 -d 9 -p ack -e 40 -c 0 -i 3912 -a 0 -x {10.0 9.0 1951 ------- null} - -t 2.23094 -s 0 -d 9 -p ack -e 40 -c 0 -i 3912 -a 0 -x {10.0 9.0 1951 ------- null} h -t 2.23094 -s 0 -d 9 -p ack -e 40 -c 0 -i 3912 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.23099 -s 10 -d 7 -p ack -e 40 -c 0 -i 3916 -a 0 -x {10.0 9.0 1953 ------- null} + -t 2.23099 -s 7 -d 0 -p ack -e 40 -c 0 -i 3916 -a 0 -x {10.0 9.0 1953 ------- null} h -t 2.23099 -s 7 -d 8 -p ack -e 40 -c 0 -i 3916 -a 0 -x {10.0 9.0 1953 ------- null} r -t 2.23126 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3915 -a 0 -x {9.0 10.0 1962 ------- null} + -t 2.23126 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3915 -a 0 -x {9.0 10.0 1962 ------- null} h -t 2.23126 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3915 -a 0 -x {9.0 10.0 1962 ------- null} r -t 2.23126 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3901 -a 0 -x {9.0 10.0 1955 ------- null} + -t 2.23126 -s 10 -d 7 -p ack -e 40 -c 0 -i 3920 -a 0 -x {10.0 9.0 1955 ------- null} - -t 2.23126 -s 10 -d 7 -p ack -e 40 -c 0 -i 3920 -a 0 -x {10.0 9.0 1955 ------- null} h -t 2.23126 -s 10 -d 7 -p ack -e 40 -c 0 -i 3920 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.23171 -s 0 -d 9 -p ack -e 40 -c 0 -i 3910 -a 0 -x {10.0 9.0 1950 ------- null} + -t 2.23171 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3921 -a 0 -x {9.0 10.0 1965 ------- null} - -t 2.23171 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3921 -a 0 -x {9.0 10.0 1965 ------- null} h -t 2.23171 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3921 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.23189 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3907 -a 0 -x {9.0 10.0 1958 ------- null} - -t 2.23189 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3907 -a 0 -x {9.0 10.0 1958 ------- null} h -t 2.23189 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3907 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.23216 -s 0 -d 9 -p ack -e 40 -c 0 -i 3914 -a 0 -x {10.0 9.0 1952 ------- null} - -t 2.23216 -s 0 -d 9 -p ack -e 40 -c 0 -i 3914 -a 0 -x {10.0 9.0 1952 ------- null} h -t 2.23216 -s 0 -d 9 -p ack -e 40 -c 0 -i 3914 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.23221 -s 10 -d 7 -p ack -e 40 -c 0 -i 3918 -a 0 -x {10.0 9.0 1954 ------- null} + -t 2.23221 -s 7 -d 0 -p ack -e 40 -c 0 -i 3918 -a 0 -x {10.0 9.0 1954 ------- null} h -t 2.23221 -s 7 -d 8 -p ack -e 40 -c 0 -i 3918 -a 0 -x {10.0 9.0 1954 ------- null} r -t 2.23227 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3917 -a 0 -x {9.0 10.0 1963 ------- null} + -t 2.23227 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3917 -a 0 -x {9.0 10.0 1963 ------- null} h -t 2.23227 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3917 -a 0 -x {9.0 10.0 1963 ------- null} r -t 2.23235 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3903 -a 0 -x {9.0 10.0 1956 ------- null} + -t 2.23235 -s 10 -d 7 -p ack -e 40 -c 0 -i 3922 -a 0 -x {10.0 9.0 1956 ------- null} - -t 2.23235 -s 10 -d 7 -p ack -e 40 -c 0 -i 3922 -a 0 -x {10.0 9.0 1956 ------- null} h -t 2.23235 -s 10 -d 7 -p ack -e 40 -c 0 -i 3922 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.23298 -s 0 -d 9 -p ack -e 40 -c 0 -i 3912 -a 0 -x {10.0 9.0 1951 ------- null} + -t 2.23298 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3923 -a 0 -x {9.0 10.0 1966 ------- null} - -t 2.23298 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3923 -a 0 -x {9.0 10.0 1966 ------- null} h -t 2.23298 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3923 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.23312 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3909 -a 0 -x {9.0 10.0 1959 ------- null} - -t 2.23312 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3909 -a 0 -x {9.0 10.0 1959 ------- null} h -t 2.23312 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3909 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.23326 -s 0 -d 9 -p ack -e 40 -c 0 -i 3916 -a 0 -x {10.0 9.0 1953 ------- null} - -t 2.23326 -s 0 -d 9 -p ack -e 40 -c 0 -i 3916 -a 0 -x {10.0 9.0 1953 ------- null} h -t 2.23326 -s 0 -d 9 -p ack -e 40 -c 0 -i 3916 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.2333 -s 10 -d 7 -p ack -e 40 -c 0 -i 3920 -a 0 -x {10.0 9.0 1955 ------- null} + -t 2.2333 -s 7 -d 0 -p ack -e 40 -c 0 -i 3920 -a 0 -x {10.0 9.0 1955 ------- null} h -t 2.2333 -s 7 -d 8 -p ack -e 40 -c 0 -i 3920 -a 0 -x {10.0 9.0 1955 ------- null} r -t 2.23344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3905 -a 0 -x {9.0 10.0 1957 ------- null} + -t 2.23344 -s 10 -d 7 -p ack -e 40 -c 0 -i 3924 -a 0 -x {10.0 9.0 1957 ------- null} - -t 2.23344 -s 10 -d 7 -p ack -e 40 -c 0 -i 3924 -a 0 -x {10.0 9.0 1957 ------- null} h -t 2.23344 -s 10 -d 7 -p ack -e 40 -c 0 -i 3924 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.23354 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3919 -a 0 -x {9.0 10.0 1964 ------- null} + -t 2.23354 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3919 -a 0 -x {9.0 10.0 1964 ------- null} h -t 2.23354 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3919 -a 0 -x {9.0 10.0 1964 ------- null} r -t 2.23419 -s 0 -d 9 -p ack -e 40 -c 0 -i 3914 -a 0 -x {10.0 9.0 1952 ------- null} + -t 2.23419 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3925 -a 0 -x {9.0 10.0 1967 ------- null} - -t 2.23419 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3925 -a 0 -x {9.0 10.0 1967 ------- null} h -t 2.23419 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3925 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.23421 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3911 -a 0 -x {9.0 10.0 1960 ------- null} - -t 2.23421 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3911 -a 0 -x {9.0 10.0 1960 ------- null} h -t 2.23421 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3911 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.23427 -s 0 -d 9 -p ack -e 40 -c 0 -i 3918 -a 0 -x {10.0 9.0 1954 ------- null} - -t 2.23427 -s 0 -d 9 -p ack -e 40 -c 0 -i 3918 -a 0 -x {10.0 9.0 1954 ------- null} h -t 2.23427 -s 0 -d 9 -p ack -e 40 -c 0 -i 3918 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.23438 -s 10 -d 7 -p ack -e 40 -c 0 -i 3922 -a 0 -x {10.0 9.0 1956 ------- null} + -t 2.23438 -s 7 -d 0 -p ack -e 40 -c 0 -i 3922 -a 0 -x {10.0 9.0 1956 ------- null} h -t 2.23438 -s 7 -d 8 -p ack -e 40 -c 0 -i 3922 -a 0 -x {10.0 9.0 1956 ------- null} r -t 2.23451 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3921 -a 0 -x {9.0 10.0 1965 ------- null} + -t 2.23451 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3921 -a 0 -x {9.0 10.0 1965 ------- null} h -t 2.23451 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3921 -a 0 -x {9.0 10.0 1965 ------- null} r -t 2.23469 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3907 -a 0 -x {9.0 10.0 1958 ------- null} + -t 2.23469 -s 10 -d 7 -p ack -e 40 -c 0 -i 3926 -a 0 -x {10.0 9.0 1958 ------- null} - -t 2.23469 -s 10 -d 7 -p ack -e 40 -c 0 -i 3926 -a 0 -x {10.0 9.0 1958 ------- null} h -t 2.23469 -s 10 -d 7 -p ack -e 40 -c 0 -i 3926 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.2353 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3913 -a 0 -x {9.0 10.0 1961 ------- null} - -t 2.2353 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3913 -a 0 -x {9.0 10.0 1961 ------- null} h -t 2.2353 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3913 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.2353 -s 0 -d 9 -p ack -e 40 -c 0 -i 3916 -a 0 -x {10.0 9.0 1953 ------- null} + -t 2.2353 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3927 -a 0 -x {9.0 10.0 1968 ------- null} - -t 2.2353 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3927 -a 0 -x {9.0 10.0 1968 ------- null} h -t 2.2353 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3927 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.23542 -s 0 -d 9 -p ack -e 40 -c 0 -i 3920 -a 0 -x {10.0 9.0 1955 ------- null} - -t 2.23542 -s 0 -d 9 -p ack -e 40 -c 0 -i 3920 -a 0 -x {10.0 9.0 1955 ------- null} h -t 2.23542 -s 0 -d 9 -p ack -e 40 -c 0 -i 3920 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.23547 -s 10 -d 7 -p ack -e 40 -c 0 -i 3924 -a 0 -x {10.0 9.0 1957 ------- null} + -t 2.23547 -s 7 -d 0 -p ack -e 40 -c 0 -i 3924 -a 0 -x {10.0 9.0 1957 ------- null} h -t 2.23547 -s 7 -d 8 -p ack -e 40 -c 0 -i 3924 -a 0 -x {10.0 9.0 1957 ------- null} r -t 2.23578 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3923 -a 0 -x {9.0 10.0 1966 ------- null} + -t 2.23578 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3923 -a 0 -x {9.0 10.0 1966 ------- null} h -t 2.23578 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3923 -a 0 -x {9.0 10.0 1966 ------- null} r -t 2.23592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3909 -a 0 -x {9.0 10.0 1959 ------- null} + -t 2.23592 -s 10 -d 7 -p ack -e 40 -c 0 -i 3928 -a 0 -x {10.0 9.0 1959 ------- null} - -t 2.23592 -s 10 -d 7 -p ack -e 40 -c 0 -i 3928 -a 0 -x {10.0 9.0 1959 ------- null} h -t 2.23592 -s 10 -d 7 -p ack -e 40 -c 0 -i 3928 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.2363 -s 0 -d 9 -p ack -e 40 -c 0 -i 3918 -a 0 -x {10.0 9.0 1954 ------- null} + -t 2.2363 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3929 -a 0 -x {9.0 10.0 1969 ------- null} - -t 2.2363 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3929 -a 0 -x {9.0 10.0 1969 ------- null} h -t 2.2363 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3929 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.23638 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3915 -a 0 -x {9.0 10.0 1962 ------- null} - -t 2.23638 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3915 -a 0 -x {9.0 10.0 1962 ------- null} h -t 2.23638 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3915 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.23651 -s 0 -d 9 -p ack -e 40 -c 0 -i 3922 -a 0 -x {10.0 9.0 1956 ------- null} - -t 2.23651 -s 0 -d 9 -p ack -e 40 -c 0 -i 3922 -a 0 -x {10.0 9.0 1956 ------- null} h -t 2.23651 -s 0 -d 9 -p ack -e 40 -c 0 -i 3922 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.23672 -s 10 -d 7 -p ack -e 40 -c 0 -i 3926 -a 0 -x {10.0 9.0 1958 ------- null} + -t 2.23672 -s 7 -d 0 -p ack -e 40 -c 0 -i 3926 -a 0 -x {10.0 9.0 1958 ------- null} h -t 2.23672 -s 7 -d 8 -p ack -e 40 -c 0 -i 3926 -a 0 -x {10.0 9.0 1958 ------- null} r -t 2.23699 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3925 -a 0 -x {9.0 10.0 1967 ------- null} + -t 2.23699 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3925 -a 0 -x {9.0 10.0 1967 ------- null} h -t 2.23699 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3925 -a 0 -x {9.0 10.0 1967 ------- null} r -t 2.23701 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3911 -a 0 -x {9.0 10.0 1960 ------- null} + -t 2.23701 -s 10 -d 7 -p ack -e 40 -c 0 -i 3930 -a 0 -x {10.0 9.0 1960 ------- null} - -t 2.23701 -s 10 -d 7 -p ack -e 40 -c 0 -i 3930 -a 0 -x {10.0 9.0 1960 ------- null} h -t 2.23701 -s 10 -d 7 -p ack -e 40 -c 0 -i 3930 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.23746 -s 0 -d 9 -p ack -e 40 -c 0 -i 3920 -a 0 -x {10.0 9.0 1955 ------- null} + -t 2.23746 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3931 -a 0 -x {9.0 10.0 1970 ------- null} - -t 2.23746 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3931 -a 0 -x {9.0 10.0 1970 ------- null} h -t 2.23746 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3931 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.23747 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3917 -a 0 -x {9.0 10.0 1963 ------- null} - -t 2.23747 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3917 -a 0 -x {9.0 10.0 1963 ------- null} h -t 2.23747 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3917 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.2376 -s 0 -d 9 -p ack -e 40 -c 0 -i 3924 -a 0 -x {10.0 9.0 1957 ------- null} - -t 2.2376 -s 0 -d 9 -p ack -e 40 -c 0 -i 3924 -a 0 -x {10.0 9.0 1957 ------- null} h -t 2.2376 -s 0 -d 9 -p ack -e 40 -c 0 -i 3924 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.23795 -s 10 -d 7 -p ack -e 40 -c 0 -i 3928 -a 0 -x {10.0 9.0 1959 ------- null} + -t 2.23795 -s 7 -d 0 -p ack -e 40 -c 0 -i 3928 -a 0 -x {10.0 9.0 1959 ------- null} h -t 2.23795 -s 7 -d 8 -p ack -e 40 -c 0 -i 3928 -a 0 -x {10.0 9.0 1959 ------- null} r -t 2.2381 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3913 -a 0 -x {9.0 10.0 1961 ------- null} + -t 2.2381 -s 10 -d 7 -p ack -e 40 -c 0 -i 3932 -a 0 -x {10.0 9.0 1961 ------- null} - -t 2.2381 -s 10 -d 7 -p ack -e 40 -c 0 -i 3932 -a 0 -x {10.0 9.0 1961 ------- null} h -t 2.2381 -s 10 -d 7 -p ack -e 40 -c 0 -i 3932 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.2381 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3927 -a 0 -x {9.0 10.0 1968 ------- null} + -t 2.2381 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3927 -a 0 -x {9.0 10.0 1968 ------- null} h -t 2.2381 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3927 -a 0 -x {9.0 10.0 1968 ------- null} r -t 2.23854 -s 0 -d 9 -p ack -e 40 -c 0 -i 3922 -a 0 -x {10.0 9.0 1956 ------- null} + -t 2.23854 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3933 -a 0 -x {9.0 10.0 1971 ------- null} - -t 2.23854 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3933 -a 0 -x {9.0 10.0 1971 ------- null} h -t 2.23854 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3933 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.23856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3919 -a 0 -x {9.0 10.0 1964 ------- null} - -t 2.23856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3919 -a 0 -x {9.0 10.0 1964 ------- null} h -t 2.23856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3919 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.23872 -s 0 -d 9 -p ack -e 40 -c 0 -i 3926 -a 0 -x {10.0 9.0 1958 ------- null} - -t 2.23872 -s 0 -d 9 -p ack -e 40 -c 0 -i 3926 -a 0 -x {10.0 9.0 1958 ------- null} h -t 2.23872 -s 0 -d 9 -p ack -e 40 -c 0 -i 3926 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.23904 -s 10 -d 7 -p ack -e 40 -c 0 -i 3930 -a 0 -x {10.0 9.0 1960 ------- null} + -t 2.23904 -s 7 -d 0 -p ack -e 40 -c 0 -i 3930 -a 0 -x {10.0 9.0 1960 ------- null} h -t 2.23904 -s 7 -d 8 -p ack -e 40 -c 0 -i 3930 -a 0 -x {10.0 9.0 1960 ------- null} r -t 2.2391 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3929 -a 0 -x {9.0 10.0 1969 ------- null} + -t 2.2391 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3929 -a 0 -x {9.0 10.0 1969 ------- null} h -t 2.2391 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3929 -a 0 -x {9.0 10.0 1969 ------- null} r -t 2.23918 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3915 -a 0 -x {9.0 10.0 1962 ------- null} + -t 2.23918 -s 10 -d 7 -p ack -e 40 -c 0 -i 3934 -a 0 -x {10.0 9.0 1962 ------- null} - -t 2.23918 -s 10 -d 7 -p ack -e 40 -c 0 -i 3934 -a 0 -x {10.0 9.0 1962 ------- null} h -t 2.23918 -s 10 -d 7 -p ack -e 40 -c 0 -i 3934 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.23963 -s 0 -d 9 -p ack -e 40 -c 0 -i 3924 -a 0 -x {10.0 9.0 1957 ------- null} + -t 2.23963 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3935 -a 0 -x {9.0 10.0 1972 ------- null} - -t 2.23963 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3935 -a 0 -x {9.0 10.0 1972 ------- null} h -t 2.23963 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3935 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.23965 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3921 -a 0 -x {9.0 10.0 1965 ------- null} - -t 2.23965 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3921 -a 0 -x {9.0 10.0 1965 ------- null} h -t 2.23965 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3921 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.23982 -s 0 -d 9 -p ack -e 40 -c 0 -i 3928 -a 0 -x {10.0 9.0 1959 ------- null} - -t 2.23982 -s 0 -d 9 -p ack -e 40 -c 0 -i 3928 -a 0 -x {10.0 9.0 1959 ------- null} h -t 2.23982 -s 0 -d 9 -p ack -e 40 -c 0 -i 3928 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.24013 -s 10 -d 7 -p ack -e 40 -c 0 -i 3932 -a 0 -x {10.0 9.0 1961 ------- null} + -t 2.24013 -s 7 -d 0 -p ack -e 40 -c 0 -i 3932 -a 0 -x {10.0 9.0 1961 ------- null} h -t 2.24013 -s 7 -d 8 -p ack -e 40 -c 0 -i 3932 -a 0 -x {10.0 9.0 1961 ------- null} r -t 2.24026 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3931 -a 0 -x {9.0 10.0 1970 ------- null} + -t 2.24026 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3931 -a 0 -x {9.0 10.0 1970 ------- null} h -t 2.24026 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3931 -a 0 -x {9.0 10.0 1970 ------- null} r -t 2.24027 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3917 -a 0 -x {9.0 10.0 1963 ------- null} + -t 2.24027 -s 10 -d 7 -p ack -e 40 -c 0 -i 3936 -a 0 -x {10.0 9.0 1963 ------- null} - -t 2.24027 -s 10 -d 7 -p ack -e 40 -c 0 -i 3936 -a 0 -x {10.0 9.0 1963 ------- null} h -t 2.24027 -s 10 -d 7 -p ack -e 40 -c 0 -i 3936 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.24074 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3923 -a 0 -x {9.0 10.0 1966 ------- null} - -t 2.24074 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3923 -a 0 -x {9.0 10.0 1966 ------- null} h -t 2.24074 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3923 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.24075 -s 0 -d 9 -p ack -e 40 -c 0 -i 3926 -a 0 -x {10.0 9.0 1958 ------- null} + -t 2.24075 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3937 -a 0 -x {9.0 10.0 1973 ------- null} - -t 2.24075 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3937 -a 0 -x {9.0 10.0 1973 ------- null} h -t 2.24075 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3937 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.24094 -s 0 -d 9 -p ack -e 40 -c 0 -i 3930 -a 0 -x {10.0 9.0 1960 ------- null} - -t 2.24094 -s 0 -d 9 -p ack -e 40 -c 0 -i 3930 -a 0 -x {10.0 9.0 1960 ------- null} h -t 2.24094 -s 0 -d 9 -p ack -e 40 -c 0 -i 3930 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.24122 -s 10 -d 7 -p ack -e 40 -c 0 -i 3934 -a 0 -x {10.0 9.0 1962 ------- null} + -t 2.24122 -s 7 -d 0 -p ack -e 40 -c 0 -i 3934 -a 0 -x {10.0 9.0 1962 ------- null} h -t 2.24122 -s 7 -d 8 -p ack -e 40 -c 0 -i 3934 -a 0 -x {10.0 9.0 1962 ------- null} r -t 2.24134 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3933 -a 0 -x {9.0 10.0 1971 ------- null} + -t 2.24134 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3933 -a 0 -x {9.0 10.0 1971 ------- null} h -t 2.24134 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3933 -a 0 -x {9.0 10.0 1971 ------- null} r -t 2.24136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3919 -a 0 -x {9.0 10.0 1964 ------- null} + -t 2.24136 -s 10 -d 7 -p ack -e 40 -c 0 -i 3938 -a 0 -x {10.0 9.0 1964 ------- null} - -t 2.24136 -s 10 -d 7 -p ack -e 40 -c 0 -i 3938 -a 0 -x {10.0 9.0 1964 ------- null} h -t 2.24136 -s 10 -d 7 -p ack -e 40 -c 0 -i 3938 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.24182 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3925 -a 0 -x {9.0 10.0 1967 ------- null} - -t 2.24182 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3925 -a 0 -x {9.0 10.0 1967 ------- null} h -t 2.24182 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3925 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.24186 -s 0 -d 9 -p ack -e 40 -c 0 -i 3928 -a 0 -x {10.0 9.0 1959 ------- null} + -t 2.24186 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3939 -a 0 -x {9.0 10.0 1974 ------- null} - -t 2.24186 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3939 -a 0 -x {9.0 10.0 1974 ------- null} h -t 2.24186 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3939 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.24208 -s 0 -d 9 -p ack -e 40 -c 0 -i 3932 -a 0 -x {10.0 9.0 1961 ------- null} - -t 2.24208 -s 0 -d 9 -p ack -e 40 -c 0 -i 3932 -a 0 -x {10.0 9.0 1961 ------- null} h -t 2.24208 -s 0 -d 9 -p ack -e 40 -c 0 -i 3932 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.2423 -s 10 -d 7 -p ack -e 40 -c 0 -i 3936 -a 0 -x {10.0 9.0 1963 ------- null} + -t 2.2423 -s 7 -d 0 -p ack -e 40 -c 0 -i 3936 -a 0 -x {10.0 9.0 1963 ------- null} h -t 2.2423 -s 7 -d 8 -p ack -e 40 -c 0 -i 3936 -a 0 -x {10.0 9.0 1963 ------- null} r -t 2.24243 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3935 -a 0 -x {9.0 10.0 1972 ------- null} + -t 2.24243 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3935 -a 0 -x {9.0 10.0 1972 ------- null} h -t 2.24243 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3935 -a 0 -x {9.0 10.0 1972 ------- null} r -t 2.24245 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3921 -a 0 -x {9.0 10.0 1965 ------- null} + -t 2.24245 -s 10 -d 7 -p ack -e 40 -c 0 -i 3940 -a 0 -x {10.0 9.0 1965 ------- null} - -t 2.24245 -s 10 -d 7 -p ack -e 40 -c 0 -i 3940 -a 0 -x {10.0 9.0 1965 ------- null} h -t 2.24245 -s 10 -d 7 -p ack -e 40 -c 0 -i 3940 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.24298 -s 0 -d 9 -p ack -e 40 -c 0 -i 3930 -a 0 -x {10.0 9.0 1960 ------- null} + -t 2.24298 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3941 -a 0 -x {9.0 10.0 1975 ------- null} - -t 2.24298 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3941 -a 0 -x {9.0 10.0 1975 ------- null} h -t 2.24298 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3941 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.24312 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3927 -a 0 -x {9.0 10.0 1968 ------- null} - -t 2.24312 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3927 -a 0 -x {9.0 10.0 1968 ------- null} h -t 2.24312 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3927 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.24331 -s 0 -d 9 -p ack -e 40 -c 0 -i 3934 -a 0 -x {10.0 9.0 1962 ------- null} - -t 2.24331 -s 0 -d 9 -p ack -e 40 -c 0 -i 3934 -a 0 -x {10.0 9.0 1962 ------- null} h -t 2.24331 -s 0 -d 9 -p ack -e 40 -c 0 -i 3934 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.24339 -s 10 -d 7 -p ack -e 40 -c 0 -i 3938 -a 0 -x {10.0 9.0 1964 ------- null} + -t 2.24339 -s 7 -d 0 -p ack -e 40 -c 0 -i 3938 -a 0 -x {10.0 9.0 1964 ------- null} h -t 2.24339 -s 7 -d 8 -p ack -e 40 -c 0 -i 3938 -a 0 -x {10.0 9.0 1964 ------- null} r -t 2.24354 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3923 -a 0 -x {9.0 10.0 1966 ------- null} + -t 2.24354 -s 10 -d 7 -p ack -e 40 -c 0 -i 3942 -a 0 -x {10.0 9.0 1966 ------- null} - -t 2.24354 -s 10 -d 7 -p ack -e 40 -c 0 -i 3942 -a 0 -x {10.0 9.0 1966 ------- null} h -t 2.24354 -s 10 -d 7 -p ack -e 40 -c 0 -i 3942 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.24355 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3937 -a 0 -x {9.0 10.0 1973 ------- null} + -t 2.24355 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3937 -a 0 -x {9.0 10.0 1973 ------- null} h -t 2.24355 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3937 -a 0 -x {9.0 10.0 1973 ------- null} r -t 2.24411 -s 0 -d 9 -p ack -e 40 -c 0 -i 3932 -a 0 -x {10.0 9.0 1961 ------- null} + -t 2.24411 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3943 -a 0 -x {9.0 10.0 1976 ------- null} - -t 2.24411 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3943 -a 0 -x {9.0 10.0 1976 ------- null} h -t 2.24411 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3943 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.24421 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3929 -a 0 -x {9.0 10.0 1969 ------- null} - -t 2.24421 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3929 -a 0 -x {9.0 10.0 1969 ------- null} h -t 2.24421 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3929 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.24446 -s 0 -d 9 -p ack -e 40 -c 0 -i 3936 -a 0 -x {10.0 9.0 1963 ------- null} - -t 2.24446 -s 0 -d 9 -p ack -e 40 -c 0 -i 3936 -a 0 -x {10.0 9.0 1963 ------- null} h -t 2.24446 -s 0 -d 9 -p ack -e 40 -c 0 -i 3936 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.24448 -s 10 -d 7 -p ack -e 40 -c 0 -i 3940 -a 0 -x {10.0 9.0 1965 ------- null} + -t 2.24448 -s 7 -d 0 -p ack -e 40 -c 0 -i 3940 -a 0 -x {10.0 9.0 1965 ------- null} h -t 2.24448 -s 7 -d 8 -p ack -e 40 -c 0 -i 3940 -a 0 -x {10.0 9.0 1965 ------- null} r -t 2.24462 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3925 -a 0 -x {9.0 10.0 1967 ------- null} + -t 2.24462 -s 10 -d 7 -p ack -e 40 -c 0 -i 3944 -a 0 -x {10.0 9.0 1967 ------- null} - -t 2.24462 -s 10 -d 7 -p ack -e 40 -c 0 -i 3944 -a 0 -x {10.0 9.0 1967 ------- null} h -t 2.24462 -s 10 -d 7 -p ack -e 40 -c 0 -i 3944 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.24466 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3939 -a 0 -x {9.0 10.0 1974 ------- null} + -t 2.24466 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3939 -a 0 -x {9.0 10.0 1974 ------- null} h -t 2.24466 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3939 -a 0 -x {9.0 10.0 1974 ------- null} r -t 2.24534 -s 0 -d 9 -p ack -e 40 -c 0 -i 3934 -a 0 -x {10.0 9.0 1962 ------- null} + -t 2.24534 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3945 -a 0 -x {9.0 10.0 1977 ------- null} - -t 2.24534 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3945 -a 0 -x {9.0 10.0 1977 ------- null} h -t 2.24534 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3945 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.24552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3931 -a 0 -x {9.0 10.0 1970 ------- null} - -t 2.24552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3931 -a 0 -x {9.0 10.0 1970 ------- null} h -t 2.24552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3931 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.24557 -s 10 -d 7 -p ack -e 40 -c 0 -i 3942 -a 0 -x {10.0 9.0 1966 ------- null} + -t 2.24557 -s 7 -d 0 -p ack -e 40 -c 0 -i 3942 -a 0 -x {10.0 9.0 1966 ------- null} h -t 2.24557 -s 7 -d 8 -p ack -e 40 -c 0 -i 3942 -a 0 -x {10.0 9.0 1966 ------- null} r -t 2.24578 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3941 -a 0 -x {9.0 10.0 1975 ------- null} + -t 2.24578 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3941 -a 0 -x {9.0 10.0 1975 ------- null} h -t 2.24578 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3941 -a 0 -x {9.0 10.0 1975 ------- null} + -t 2.24582 -s 0 -d 9 -p ack -e 40 -c 0 -i 3938 -a 0 -x {10.0 9.0 1964 ------- null} - -t 2.24582 -s 0 -d 9 -p ack -e 40 -c 0 -i 3938 -a 0 -x {10.0 9.0 1964 ------- null} h -t 2.24582 -s 0 -d 9 -p ack -e 40 -c 0 -i 3938 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.24592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3927 -a 0 -x {9.0 10.0 1968 ------- null} + -t 2.24592 -s 10 -d 7 -p ack -e 40 -c 0 -i 3946 -a 0 -x {10.0 9.0 1968 ------- null} - -t 2.24592 -s 10 -d 7 -p ack -e 40 -c 0 -i 3946 -a 0 -x {10.0 9.0 1968 ------- null} h -t 2.24592 -s 10 -d 7 -p ack -e 40 -c 0 -i 3946 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.2465 -s 0 -d 9 -p ack -e 40 -c 0 -i 3936 -a 0 -x {10.0 9.0 1963 ------- null} + -t 2.2465 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3947 -a 0 -x {9.0 10.0 1978 ------- null} - -t 2.2465 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3947 -a 0 -x {9.0 10.0 1978 ------- null} h -t 2.2465 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3947 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.24666 -s 10 -d 7 -p ack -e 40 -c 0 -i 3944 -a 0 -x {10.0 9.0 1967 ------- null} + -t 2.24666 -s 7 -d 0 -p ack -e 40 -c 0 -i 3944 -a 0 -x {10.0 9.0 1967 ------- null} h -t 2.24666 -s 7 -d 8 -p ack -e 40 -c 0 -i 3944 -a 0 -x {10.0 9.0 1967 ------- null} + -t 2.24667 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3933 -a 0 -x {9.0 10.0 1971 ------- null} - -t 2.24667 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3933 -a 0 -x {9.0 10.0 1971 ------- null} h -t 2.24667 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3933 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.24677 -s 0 -d 9 -p ack -e 40 -c 0 -i 3940 -a 0 -x {10.0 9.0 1965 ------- null} - -t 2.24677 -s 0 -d 9 -p ack -e 40 -c 0 -i 3940 -a 0 -x {10.0 9.0 1965 ------- null} h -t 2.24677 -s 0 -d 9 -p ack -e 40 -c 0 -i 3940 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.24691 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3943 -a 0 -x {9.0 10.0 1976 ------- null} + -t 2.24691 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3943 -a 0 -x {9.0 10.0 1976 ------- null} h -t 2.24691 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3943 -a 0 -x {9.0 10.0 1976 ------- null} r -t 2.24701 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3929 -a 0 -x {9.0 10.0 1969 ------- null} + -t 2.24701 -s 10 -d 7 -p ack -e 40 -c 0 -i 3948 -a 0 -x {10.0 9.0 1969 ------- null} - -t 2.24701 -s 10 -d 7 -p ack -e 40 -c 0 -i 3948 -a 0 -x {10.0 9.0 1969 ------- null} h -t 2.24701 -s 10 -d 7 -p ack -e 40 -c 0 -i 3948 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.24776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3935 -a 0 -x {9.0 10.0 1972 ------- null} - -t 2.24776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3935 -a 0 -x {9.0 10.0 1972 ------- null} h -t 2.24776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3935 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.24782 -s 0 -d 9 -p ack -e 40 -c 0 -i 3942 -a 0 -x {10.0 9.0 1966 ------- null} - -t 2.24782 -s 0 -d 9 -p ack -e 40 -c 0 -i 3942 -a 0 -x {10.0 9.0 1966 ------- null} h -t 2.24782 -s 0 -d 9 -p ack -e 40 -c 0 -i 3942 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.24786 -s 0 -d 9 -p ack -e 40 -c 0 -i 3938 -a 0 -x {10.0 9.0 1964 ------- null} + -t 2.24786 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3949 -a 0 -x {9.0 10.0 1979 ------- null} - -t 2.24786 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3949 -a 0 -x {9.0 10.0 1979 ------- null} h -t 2.24786 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3949 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.24795 -s 10 -d 7 -p ack -e 40 -c 0 -i 3946 -a 0 -x {10.0 9.0 1968 ------- null} + -t 2.24795 -s 7 -d 0 -p ack -e 40 -c 0 -i 3946 -a 0 -x {10.0 9.0 1968 ------- null} h -t 2.24795 -s 7 -d 8 -p ack -e 40 -c 0 -i 3946 -a 0 -x {10.0 9.0 1968 ------- null} r -t 2.24814 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3945 -a 0 -x {9.0 10.0 1977 ------- null} + -t 2.24814 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3945 -a 0 -x {9.0 10.0 1977 ------- null} h -t 2.24814 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3945 -a 0 -x {9.0 10.0 1977 ------- null} r -t 2.24832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3931 -a 0 -x {9.0 10.0 1970 ------- null} + -t 2.24832 -s 10 -d 7 -p ack -e 40 -c 0 -i 3950 -a 0 -x {10.0 9.0 1970 ------- null} - -t 2.24832 -s 10 -d 7 -p ack -e 40 -c 0 -i 3950 -a 0 -x {10.0 9.0 1970 ------- null} h -t 2.24832 -s 10 -d 7 -p ack -e 40 -c 0 -i 3950 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.2488 -s 0 -d 9 -p ack -e 40 -c 0 -i 3940 -a 0 -x {10.0 9.0 1965 ------- null} + -t 2.2488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3951 -a 0 -x {9.0 10.0 1980 ------- null} - -t 2.2488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3951 -a 0 -x {9.0 10.0 1980 ------- null} h -t 2.2488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3951 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.24885 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3937 -a 0 -x {9.0 10.0 1973 ------- null} - -t 2.24885 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3937 -a 0 -x {9.0 10.0 1973 ------- null} h -t 2.24885 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3937 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.24904 -s 10 -d 7 -p ack -e 40 -c 0 -i 3948 -a 0 -x {10.0 9.0 1969 ------- null} + -t 2.24904 -s 7 -d 0 -p ack -e 40 -c 0 -i 3948 -a 0 -x {10.0 9.0 1969 ------- null} h -t 2.24904 -s 7 -d 8 -p ack -e 40 -c 0 -i 3948 -a 0 -x {10.0 9.0 1969 ------- null} + -t 2.24906 -s 0 -d 9 -p ack -e 40 -c 0 -i 3944 -a 0 -x {10.0 9.0 1967 ------- null} - -t 2.24906 -s 0 -d 9 -p ack -e 40 -c 0 -i 3944 -a 0 -x {10.0 9.0 1967 ------- null} h -t 2.24906 -s 0 -d 9 -p ack -e 40 -c 0 -i 3944 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.2493 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3947 -a 0 -x {9.0 10.0 1978 ------- null} + -t 2.2493 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3947 -a 0 -x {9.0 10.0 1978 ------- null} h -t 2.2493 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3947 -a 0 -x {9.0 10.0 1978 ------- null} r -t 2.24947 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3933 -a 0 -x {9.0 10.0 1971 ------- null} + -t 2.24947 -s 10 -d 7 -p ack -e 40 -c 0 -i 3952 -a 0 -x {10.0 9.0 1971 ------- null} - -t 2.24947 -s 10 -d 7 -p ack -e 40 -c 0 -i 3952 -a 0 -x {10.0 9.0 1971 ------- null} h -t 2.24947 -s 10 -d 7 -p ack -e 40 -c 0 -i 3952 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.24986 -s 0 -d 9 -p ack -e 40 -c 0 -i 3942 -a 0 -x {10.0 9.0 1966 ------- null} + -t 2.24986 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3953 -a 0 -x {9.0 10.0 1981 ------- null} - -t 2.24986 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3953 -a 0 -x {9.0 10.0 1981 ------- null} h -t 2.24986 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3953 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.24994 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3939 -a 0 -x {9.0 10.0 1974 ------- null} - -t 2.24994 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3939 -a 0 -x {9.0 10.0 1974 ------- null} h -t 2.24994 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3939 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.25021 -s 0 -d 9 -p ack -e 40 -c 0 -i 3946 -a 0 -x {10.0 9.0 1968 ------- null} - -t 2.25021 -s 0 -d 9 -p ack -e 40 -c 0 -i 3946 -a 0 -x {10.0 9.0 1968 ------- null} h -t 2.25021 -s 0 -d 9 -p ack -e 40 -c 0 -i 3946 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.25035 -s 10 -d 7 -p ack -e 40 -c 0 -i 3950 -a 0 -x {10.0 9.0 1970 ------- null} + -t 2.25035 -s 7 -d 0 -p ack -e 40 -c 0 -i 3950 -a 0 -x {10.0 9.0 1970 ------- null} h -t 2.25035 -s 7 -d 8 -p ack -e 40 -c 0 -i 3950 -a 0 -x {10.0 9.0 1970 ------- null} r -t 2.25056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3935 -a 0 -x {9.0 10.0 1972 ------- null} + -t 2.25056 -s 10 -d 7 -p ack -e 40 -c 0 -i 3954 -a 0 -x {10.0 9.0 1972 ------- null} - -t 2.25056 -s 10 -d 7 -p ack -e 40 -c 0 -i 3954 -a 0 -x {10.0 9.0 1972 ------- null} h -t 2.25056 -s 10 -d 7 -p ack -e 40 -c 0 -i 3954 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.25066 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3949 -a 0 -x {9.0 10.0 1979 ------- null} + -t 2.25066 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3949 -a 0 -x {9.0 10.0 1979 ------- null} h -t 2.25066 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3949 -a 0 -x {9.0 10.0 1979 ------- null} r -t 2.25109 -s 0 -d 9 -p ack -e 40 -c 0 -i 3944 -a 0 -x {10.0 9.0 1967 ------- null} + -t 2.25109 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3955 -a 0 -x {9.0 10.0 1982 ------- null} - -t 2.25109 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3955 -a 0 -x {9.0 10.0 1982 ------- null} h -t 2.25109 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3955 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.25123 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3941 -a 0 -x {9.0 10.0 1975 ------- null} - -t 2.25123 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3941 -a 0 -x {9.0 10.0 1975 ------- null} h -t 2.25123 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3941 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.25138 -s 0 -d 9 -p ack -e 40 -c 0 -i 3948 -a 0 -x {10.0 9.0 1969 ------- null} - -t 2.25138 -s 0 -d 9 -p ack -e 40 -c 0 -i 3948 -a 0 -x {10.0 9.0 1969 ------- null} h -t 2.25138 -s 0 -d 9 -p ack -e 40 -c 0 -i 3948 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.2515 -s 10 -d 7 -p ack -e 40 -c 0 -i 3952 -a 0 -x {10.0 9.0 1971 ------- null} + -t 2.2515 -s 7 -d 0 -p ack -e 40 -c 0 -i 3952 -a 0 -x {10.0 9.0 1971 ------- null} h -t 2.2515 -s 7 -d 8 -p ack -e 40 -c 0 -i 3952 -a 0 -x {10.0 9.0 1971 ------- null} r -t 2.2516 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3951 -a 0 -x {9.0 10.0 1980 ------- null} + -t 2.2516 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3951 -a 0 -x {9.0 10.0 1980 ------- null} h -t 2.2516 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3951 -a 0 -x {9.0 10.0 1980 ------- null} r -t 2.25165 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3937 -a 0 -x {9.0 10.0 1973 ------- null} + -t 2.25165 -s 10 -d 7 -p ack -e 40 -c 0 -i 3956 -a 0 -x {10.0 9.0 1973 ------- null} - -t 2.25165 -s 10 -d 7 -p ack -e 40 -c 0 -i 3956 -a 0 -x {10.0 9.0 1973 ------- null} h -t 2.25165 -s 10 -d 7 -p ack -e 40 -c 0 -i 3956 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.25224 -s 0 -d 9 -p ack -e 40 -c 0 -i 3946 -a 0 -x {10.0 9.0 1968 ------- null} + -t 2.25224 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3957 -a 0 -x {9.0 10.0 1983 ------- null} - -t 2.25224 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3957 -a 0 -x {9.0 10.0 1983 ------- null} h -t 2.25224 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3957 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.25232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3943 -a 0 -x {9.0 10.0 1976 ------- null} - -t 2.25232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3943 -a 0 -x {9.0 10.0 1976 ------- null} h -t 2.25232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3943 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.25258 -s 0 -d 9 -p ack -e 40 -c 0 -i 3950 -a 0 -x {10.0 9.0 1970 ------- null} - -t 2.25258 -s 0 -d 9 -p ack -e 40 -c 0 -i 3950 -a 0 -x {10.0 9.0 1970 ------- null} h -t 2.25258 -s 0 -d 9 -p ack -e 40 -c 0 -i 3950 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.25259 -s 10 -d 7 -p ack -e 40 -c 0 -i 3954 -a 0 -x {10.0 9.0 1972 ------- null} + -t 2.25259 -s 7 -d 0 -p ack -e 40 -c 0 -i 3954 -a 0 -x {10.0 9.0 1972 ------- null} h -t 2.25259 -s 7 -d 8 -p ack -e 40 -c 0 -i 3954 -a 0 -x {10.0 9.0 1972 ------- null} r -t 2.25266 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3953 -a 0 -x {9.0 10.0 1981 ------- null} + -t 2.25266 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3953 -a 0 -x {9.0 10.0 1981 ------- null} h -t 2.25266 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3953 -a 0 -x {9.0 10.0 1981 ------- null} r -t 2.25274 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3939 -a 0 -x {9.0 10.0 1974 ------- null} + -t 2.25274 -s 10 -d 7 -p ack -e 40 -c 0 -i 3958 -a 0 -x {10.0 9.0 1974 ------- null} - -t 2.25274 -s 10 -d 7 -p ack -e 40 -c 0 -i 3958 -a 0 -x {10.0 9.0 1974 ------- null} h -t 2.25274 -s 10 -d 7 -p ack -e 40 -c 0 -i 3958 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.25341 -s 0 -d 9 -p ack -e 40 -c 0 -i 3948 -a 0 -x {10.0 9.0 1969 ------- null} + -t 2.25341 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3959 -a 0 -x {9.0 10.0 1984 ------- null} - -t 2.25341 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3959 -a 0 -x {9.0 10.0 1984 ------- null} h -t 2.25341 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3959 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.25362 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3945 -a 0 -x {9.0 10.0 1977 ------- null} - -t 2.25362 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3945 -a 0 -x {9.0 10.0 1977 ------- null} h -t 2.25362 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3945 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.25368 -s 10 -d 7 -p ack -e 40 -c 0 -i 3956 -a 0 -x {10.0 9.0 1973 ------- null} + -t 2.25368 -s 7 -d 0 -p ack -e 40 -c 0 -i 3956 -a 0 -x {10.0 9.0 1973 ------- null} h -t 2.25368 -s 7 -d 8 -p ack -e 40 -c 0 -i 3956 -a 0 -x {10.0 9.0 1973 ------- null} + -t 2.25373 -s 0 -d 9 -p ack -e 40 -c 0 -i 3952 -a 0 -x {10.0 9.0 1971 ------- null} - -t 2.25373 -s 0 -d 9 -p ack -e 40 -c 0 -i 3952 -a 0 -x {10.0 9.0 1971 ------- null} h -t 2.25373 -s 0 -d 9 -p ack -e 40 -c 0 -i 3952 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.25389 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3955 -a 0 -x {9.0 10.0 1982 ------- null} + -t 2.25389 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3955 -a 0 -x {9.0 10.0 1982 ------- null} h -t 2.25389 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3955 -a 0 -x {9.0 10.0 1982 ------- null} r -t 2.25403 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3941 -a 0 -x {9.0 10.0 1975 ------- null} + -t 2.25403 -s 10 -d 7 -p ack -e 40 -c 0 -i 3960 -a 0 -x {10.0 9.0 1975 ------- null} - -t 2.25403 -s 10 -d 7 -p ack -e 40 -c 0 -i 3960 -a 0 -x {10.0 9.0 1975 ------- null} h -t 2.25403 -s 10 -d 7 -p ack -e 40 -c 0 -i 3960 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.25461 -s 0 -d 9 -p ack -e 40 -c 0 -i 3950 -a 0 -x {10.0 9.0 1970 ------- null} + -t 2.25461 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3961 -a 0 -x {9.0 10.0 1985 ------- null} - -t 2.25461 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3961 -a 0 -x {9.0 10.0 1985 ------- null} h -t 2.25461 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3961 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.2547 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3947 -a 0 -x {9.0 10.0 1978 ------- null} - -t 2.2547 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3947 -a 0 -x {9.0 10.0 1978 ------- null} h -t 2.2547 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3947 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.25477 -s 10 -d 7 -p ack -e 40 -c 0 -i 3958 -a 0 -x {10.0 9.0 1974 ------- null} + -t 2.25477 -s 7 -d 0 -p ack -e 40 -c 0 -i 3958 -a 0 -x {10.0 9.0 1974 ------- null} h -t 2.25477 -s 7 -d 8 -p ack -e 40 -c 0 -i 3958 -a 0 -x {10.0 9.0 1974 ------- null} + -t 2.25491 -s 0 -d 9 -p ack -e 40 -c 0 -i 3954 -a 0 -x {10.0 9.0 1972 ------- null} - -t 2.25491 -s 0 -d 9 -p ack -e 40 -c 0 -i 3954 -a 0 -x {10.0 9.0 1972 ------- null} h -t 2.25491 -s 0 -d 9 -p ack -e 40 -c 0 -i 3954 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.25504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3957 -a 0 -x {9.0 10.0 1983 ------- null} + -t 2.25504 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3957 -a 0 -x {9.0 10.0 1983 ------- null} h -t 2.25504 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3957 -a 0 -x {9.0 10.0 1983 ------- null} r -t 2.25512 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3943 -a 0 -x {9.0 10.0 1976 ------- null} + -t 2.25512 -s 10 -d 7 -p ack -e 40 -c 0 -i 3962 -a 0 -x {10.0 9.0 1976 ------- null} - -t 2.25512 -s 10 -d 7 -p ack -e 40 -c 0 -i 3962 -a 0 -x {10.0 9.0 1976 ------- null} h -t 2.25512 -s 10 -d 7 -p ack -e 40 -c 0 -i 3962 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.25576 -s 0 -d 9 -p ack -e 40 -c 0 -i 3952 -a 0 -x {10.0 9.0 1971 ------- null} + -t 2.25576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3963 -a 0 -x {9.0 10.0 1986 ------- null} - -t 2.25576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3963 -a 0 -x {9.0 10.0 1986 ------- null} h -t 2.25576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3963 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.25579 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3949 -a 0 -x {9.0 10.0 1979 ------- null} - -t 2.25579 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3949 -a 0 -x {9.0 10.0 1979 ------- null} h -t 2.25579 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3949 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.25606 -s 10 -d 7 -p ack -e 40 -c 0 -i 3960 -a 0 -x {10.0 9.0 1975 ------- null} + -t 2.25606 -s 7 -d 0 -p ack -e 40 -c 0 -i 3960 -a 0 -x {10.0 9.0 1975 ------- null} h -t 2.25606 -s 7 -d 8 -p ack -e 40 -c 0 -i 3960 -a 0 -x {10.0 9.0 1975 ------- null} + -t 2.25608 -s 0 -d 9 -p ack -e 40 -c 0 -i 3956 -a 0 -x {10.0 9.0 1973 ------- null} - -t 2.25608 -s 0 -d 9 -p ack -e 40 -c 0 -i 3956 -a 0 -x {10.0 9.0 1973 ------- null} h -t 2.25608 -s 0 -d 9 -p ack -e 40 -c 0 -i 3956 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.25621 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3959 -a 0 -x {9.0 10.0 1984 ------- null} + -t 2.25621 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3959 -a 0 -x {9.0 10.0 1984 ------- null} h -t 2.25621 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3959 -a 0 -x {9.0 10.0 1984 ------- null} r -t 2.25642 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3945 -a 0 -x {9.0 10.0 1977 ------- null} + -t 2.25642 -s 10 -d 7 -p ack -e 40 -c 0 -i 3964 -a 0 -x {10.0 9.0 1977 ------- null} - -t 2.25642 -s 10 -d 7 -p ack -e 40 -c 0 -i 3964 -a 0 -x {10.0 9.0 1977 ------- null} h -t 2.25642 -s 10 -d 7 -p ack -e 40 -c 0 -i 3964 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.25694 -s 0 -d 9 -p ack -e 40 -c 0 -i 3954 -a 0 -x {10.0 9.0 1972 ------- null} + -t 2.25694 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3965 -a 0 -x {9.0 10.0 1987 ------- null} - -t 2.25694 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3965 -a 0 -x {9.0 10.0 1987 ------- null} h -t 2.25694 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3965 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.25701 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3951 -a 0 -x {9.0 10.0 1980 ------- null} - -t 2.25701 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3951 -a 0 -x {9.0 10.0 1980 ------- null} h -t 2.25701 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3951 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.25715 -s 10 -d 7 -p ack -e 40 -c 0 -i 3962 -a 0 -x {10.0 9.0 1976 ------- null} + -t 2.25715 -s 7 -d 0 -p ack -e 40 -c 0 -i 3962 -a 0 -x {10.0 9.0 1976 ------- null} h -t 2.25715 -s 7 -d 8 -p ack -e 40 -c 0 -i 3962 -a 0 -x {10.0 9.0 1976 ------- null} + -t 2.25731 -s 0 -d 9 -p ack -e 40 -c 0 -i 3958 -a 0 -x {10.0 9.0 1974 ------- null} - -t 2.25731 -s 0 -d 9 -p ack -e 40 -c 0 -i 3958 -a 0 -x {10.0 9.0 1974 ------- null} h -t 2.25731 -s 0 -d 9 -p ack -e 40 -c 0 -i 3958 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.25741 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3961 -a 0 -x {9.0 10.0 1985 ------- null} + -t 2.25741 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3961 -a 0 -x {9.0 10.0 1985 ------- null} h -t 2.25741 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3961 -a 0 -x {9.0 10.0 1985 ------- null} r -t 2.2575 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3947 -a 0 -x {9.0 10.0 1978 ------- null} + -t 2.2575 -s 10 -d 7 -p ack -e 40 -c 0 -i 3966 -a 0 -x {10.0 9.0 1978 ------- null} - -t 2.2575 -s 10 -d 7 -p ack -e 40 -c 0 -i 3966 -a 0 -x {10.0 9.0 1978 ------- null} h -t 2.2575 -s 10 -d 7 -p ack -e 40 -c 0 -i 3966 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.25811 -s 0 -d 9 -p ack -e 40 -c 0 -i 3956 -a 0 -x {10.0 9.0 1973 ------- null} + -t 2.25811 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3967 -a 0 -x {9.0 10.0 1988 ------- null} - -t 2.25811 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3967 -a 0 -x {9.0 10.0 1988 ------- null} h -t 2.25811 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3967 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.25824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3953 -a 0 -x {9.0 10.0 1981 ------- null} - -t 2.25824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3953 -a 0 -x {9.0 10.0 1981 ------- null} h -t 2.25824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3953 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.25835 -s 0 -d 9 -p ack -e 40 -c 0 -i 3960 -a 0 -x {10.0 9.0 1975 ------- null} - -t 2.25835 -s 0 -d 9 -p ack -e 40 -c 0 -i 3960 -a 0 -x {10.0 9.0 1975 ------- null} h -t 2.25835 -s 0 -d 9 -p ack -e 40 -c 0 -i 3960 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.25845 -s 10 -d 7 -p ack -e 40 -c 0 -i 3964 -a 0 -x {10.0 9.0 1977 ------- null} + -t 2.25845 -s 7 -d 0 -p ack -e 40 -c 0 -i 3964 -a 0 -x {10.0 9.0 1977 ------- null} h -t 2.25845 -s 7 -d 8 -p ack -e 40 -c 0 -i 3964 -a 0 -x {10.0 9.0 1977 ------- null} r -t 2.25856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3963 -a 0 -x {9.0 10.0 1986 ------- null} + -t 2.25856 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3963 -a 0 -x {9.0 10.0 1986 ------- null} h -t 2.25856 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3963 -a 0 -x {9.0 10.0 1986 ------- null} r -t 2.25859 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3949 -a 0 -x {9.0 10.0 1979 ------- null} + -t 2.25859 -s 10 -d 7 -p ack -e 40 -c 0 -i 3968 -a 0 -x {10.0 9.0 1979 ------- null} - -t 2.25859 -s 10 -d 7 -p ack -e 40 -c 0 -i 3968 -a 0 -x {10.0 9.0 1979 ------- null} h -t 2.25859 -s 10 -d 7 -p ack -e 40 -c 0 -i 3968 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.25933 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3955 -a 0 -x {9.0 10.0 1982 ------- null} - -t 2.25933 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3955 -a 0 -x {9.0 10.0 1982 ------- null} h -t 2.25933 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3955 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.25934 -s 0 -d 9 -p ack -e 40 -c 0 -i 3958 -a 0 -x {10.0 9.0 1974 ------- null} + -t 2.25934 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3969 -a 0 -x {9.0 10.0 1989 ------- null} - -t 2.25934 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3969 -a 0 -x {9.0 10.0 1989 ------- null} h -t 2.25934 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3969 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.25954 -s 10 -d 7 -p ack -e 40 -c 0 -i 3966 -a 0 -x {10.0 9.0 1978 ------- null} + -t 2.25954 -s 7 -d 0 -p ack -e 40 -c 0 -i 3966 -a 0 -x {10.0 9.0 1978 ------- null} h -t 2.25954 -s 7 -d 8 -p ack -e 40 -c 0 -i 3966 -a 0 -x {10.0 9.0 1978 ------- null} + -t 2.25957 -s 0 -d 9 -p ack -e 40 -c 0 -i 3962 -a 0 -x {10.0 9.0 1976 ------- null} - -t 2.25957 -s 0 -d 9 -p ack -e 40 -c 0 -i 3962 -a 0 -x {10.0 9.0 1976 ------- null} h -t 2.25957 -s 0 -d 9 -p ack -e 40 -c 0 -i 3962 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.25974 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3965 -a 0 -x {9.0 10.0 1987 ------- null} + -t 2.25974 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3965 -a 0 -x {9.0 10.0 1987 ------- null} h -t 2.25974 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3965 -a 0 -x {9.0 10.0 1987 ------- null} r -t 2.25981 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3951 -a 0 -x {9.0 10.0 1980 ------- null} + -t 2.25981 -s 10 -d 7 -p ack -e 40 -c 0 -i 3970 -a 0 -x {10.0 9.0 1980 ------- null} - -t 2.25981 -s 10 -d 7 -p ack -e 40 -c 0 -i 3970 -a 0 -x {10.0 9.0 1980 ------- null} h -t 2.25981 -s 10 -d 7 -p ack -e 40 -c 0 -i 3970 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.26038 -s 0 -d 9 -p ack -e 40 -c 0 -i 3960 -a 0 -x {10.0 9.0 1975 ------- null} + -t 2.26038 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3971 -a 0 -x {9.0 10.0 1990 ------- null} - -t 2.26038 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3971 -a 0 -x {9.0 10.0 1990 ------- null} h -t 2.26038 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3971 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.26042 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3957 -a 0 -x {9.0 10.0 1983 ------- null} - -t 2.26042 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3957 -a 0 -x {9.0 10.0 1983 ------- null} h -t 2.26042 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3957 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.26062 -s 10 -d 7 -p ack -e 40 -c 0 -i 3968 -a 0 -x {10.0 9.0 1979 ------- null} + -t 2.26062 -s 7 -d 0 -p ack -e 40 -c 0 -i 3968 -a 0 -x {10.0 9.0 1979 ------- null} h -t 2.26062 -s 7 -d 8 -p ack -e 40 -c 0 -i 3968 -a 0 -x {10.0 9.0 1979 ------- null} + -t 2.2607 -s 0 -d 9 -p ack -e 40 -c 0 -i 3964 -a 0 -x {10.0 9.0 1977 ------- null} - -t 2.2607 -s 0 -d 9 -p ack -e 40 -c 0 -i 3964 -a 0 -x {10.0 9.0 1977 ------- null} h -t 2.2607 -s 0 -d 9 -p ack -e 40 -c 0 -i 3964 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.26091 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3967 -a 0 -x {9.0 10.0 1988 ------- null} + -t 2.26091 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3967 -a 0 -x {9.0 10.0 1988 ------- null} h -t 2.26091 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3967 -a 0 -x {9.0 10.0 1988 ------- null} r -t 2.26104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3953 -a 0 -x {9.0 10.0 1981 ------- null} + -t 2.26104 -s 10 -d 7 -p ack -e 40 -c 0 -i 3972 -a 0 -x {10.0 9.0 1981 ------- null} - -t 2.26104 -s 10 -d 7 -p ack -e 40 -c 0 -i 3972 -a 0 -x {10.0 9.0 1981 ------- null} h -t 2.26104 -s 10 -d 7 -p ack -e 40 -c 0 -i 3972 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.2616 -s 0 -d 9 -p ack -e 40 -c 0 -i 3962 -a 0 -x {10.0 9.0 1976 ------- null} + -t 2.2616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3973 -a 0 -x {9.0 10.0 1991 ------- null} - -t 2.2616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3973 -a 0 -x {9.0 10.0 1991 ------- null} h -t 2.2616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3973 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.26165 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3959 -a 0 -x {9.0 10.0 1984 ------- null} - -t 2.26165 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3959 -a 0 -x {9.0 10.0 1984 ------- null} h -t 2.26165 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3959 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.26184 -s 10 -d 7 -p ack -e 40 -c 0 -i 3970 -a 0 -x {10.0 9.0 1980 ------- null} + -t 2.26184 -s 7 -d 0 -p ack -e 40 -c 0 -i 3970 -a 0 -x {10.0 9.0 1980 ------- null} h -t 2.26184 -s 7 -d 8 -p ack -e 40 -c 0 -i 3970 -a 0 -x {10.0 9.0 1980 ------- null} + -t 2.26189 -s 0 -d 9 -p ack -e 40 -c 0 -i 3966 -a 0 -x {10.0 9.0 1978 ------- null} - -t 2.26189 -s 0 -d 9 -p ack -e 40 -c 0 -i 3966 -a 0 -x {10.0 9.0 1978 ------- null} h -t 2.26189 -s 0 -d 9 -p ack -e 40 -c 0 -i 3966 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.26213 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3955 -a 0 -x {9.0 10.0 1982 ------- null} + -t 2.26213 -s 10 -d 7 -p ack -e 40 -c 0 -i 3974 -a 0 -x {10.0 9.0 1982 ------- null} - -t 2.26213 -s 10 -d 7 -p ack -e 40 -c 0 -i 3974 -a 0 -x {10.0 9.0 1982 ------- null} h -t 2.26213 -s 10 -d 7 -p ack -e 40 -c 0 -i 3974 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.26214 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3969 -a 0 -x {9.0 10.0 1989 ------- null} + -t 2.26214 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3969 -a 0 -x {9.0 10.0 1989 ------- null} h -t 2.26214 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3969 -a 0 -x {9.0 10.0 1989 ------- null} r -t 2.26274 -s 0 -d 9 -p ack -e 40 -c 0 -i 3964 -a 0 -x {10.0 9.0 1977 ------- null} + -t 2.26274 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3975 -a 0 -x {9.0 10.0 1992 ------- null} - -t 2.26274 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3975 -a 0 -x {9.0 10.0 1992 ------- null} h -t 2.26274 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3975 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.26274 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3961 -a 0 -x {9.0 10.0 1985 ------- null} - -t 2.26274 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3961 -a 0 -x {9.0 10.0 1985 ------- null} h -t 2.26274 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3961 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.26294 -s 0 -d 9 -p ack -e 40 -c 0 -i 3968 -a 0 -x {10.0 9.0 1979 ------- null} - -t 2.26294 -s 0 -d 9 -p ack -e 40 -c 0 -i 3968 -a 0 -x {10.0 9.0 1979 ------- null} h -t 2.26294 -s 0 -d 9 -p ack -e 40 -c 0 -i 3968 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.26307 -s 10 -d 7 -p ack -e 40 -c 0 -i 3972 -a 0 -x {10.0 9.0 1981 ------- null} + -t 2.26307 -s 7 -d 0 -p ack -e 40 -c 0 -i 3972 -a 0 -x {10.0 9.0 1981 ------- null} h -t 2.26307 -s 7 -d 8 -p ack -e 40 -c 0 -i 3972 -a 0 -x {10.0 9.0 1981 ------- null} r -t 2.26318 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3971 -a 0 -x {9.0 10.0 1990 ------- null} + -t 2.26318 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3971 -a 0 -x {9.0 10.0 1990 ------- null} h -t 2.26318 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3971 -a 0 -x {9.0 10.0 1990 ------- null} r -t 2.26322 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3957 -a 0 -x {9.0 10.0 1983 ------- null} + -t 2.26322 -s 10 -d 7 -p ack -e 40 -c 0 -i 3976 -a 0 -x {10.0 9.0 1983 ------- null} - -t 2.26322 -s 10 -d 7 -p ack -e 40 -c 0 -i 3976 -a 0 -x {10.0 9.0 1983 ------- null} h -t 2.26322 -s 10 -d 7 -p ack -e 40 -c 0 -i 3976 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.26382 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3963 -a 0 -x {9.0 10.0 1986 ------- null} - -t 2.26382 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3963 -a 0 -x {9.0 10.0 1986 ------- null} h -t 2.26382 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3963 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.26392 -s 0 -d 9 -p ack -e 40 -c 0 -i 3966 -a 0 -x {10.0 9.0 1978 ------- null} + -t 2.26392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3977 -a 0 -x {9.0 10.0 1993 ------- null} - -t 2.26392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3977 -a 0 -x {9.0 10.0 1993 ------- null} h -t 2.26392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3977 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.26406 -s 0 -d 9 -p ack -e 40 -c 0 -i 3970 -a 0 -x {10.0 9.0 1980 ------- null} - -t 2.26406 -s 0 -d 9 -p ack -e 40 -c 0 -i 3970 -a 0 -x {10.0 9.0 1980 ------- null} h -t 2.26406 -s 0 -d 9 -p ack -e 40 -c 0 -i 3970 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.26416 -s 10 -d 7 -p ack -e 40 -c 0 -i 3974 -a 0 -x {10.0 9.0 1982 ------- null} + -t 2.26416 -s 7 -d 0 -p ack -e 40 -c 0 -i 3974 -a 0 -x {10.0 9.0 1982 ------- null} h -t 2.26416 -s 7 -d 8 -p ack -e 40 -c 0 -i 3974 -a 0 -x {10.0 9.0 1982 ------- null} r -t 2.2644 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3973 -a 0 -x {9.0 10.0 1991 ------- null} + -t 2.2644 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3973 -a 0 -x {9.0 10.0 1991 ------- null} h -t 2.2644 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3973 -a 0 -x {9.0 10.0 1991 ------- null} r -t 2.26445 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3959 -a 0 -x {9.0 10.0 1984 ------- null} + -t 2.26445 -s 10 -d 7 -p ack -e 40 -c 0 -i 3978 -a 0 -x {10.0 9.0 1984 ------- null} - -t 2.26445 -s 10 -d 7 -p ack -e 40 -c 0 -i 3978 -a 0 -x {10.0 9.0 1984 ------- null} h -t 2.26445 -s 10 -d 7 -p ack -e 40 -c 0 -i 3978 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.26491 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3965 -a 0 -x {9.0 10.0 1987 ------- null} - -t 2.26491 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3965 -a 0 -x {9.0 10.0 1987 ------- null} h -t 2.26491 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3965 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.26498 -s 0 -d 9 -p ack -e 40 -c 0 -i 3968 -a 0 -x {10.0 9.0 1979 ------- null} + -t 2.26498 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3979 -a 0 -x {9.0 10.0 1994 ------- null} - -t 2.26498 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3979 -a 0 -x {9.0 10.0 1994 ------- null} h -t 2.26498 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3979 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.26504 -s 0 -d 9 -p ack -e 40 -c 0 -i 3972 -a 0 -x {10.0 9.0 1981 ------- null} - -t 2.26504 -s 0 -d 9 -p ack -e 40 -c 0 -i 3972 -a 0 -x {10.0 9.0 1981 ------- null} h -t 2.26504 -s 0 -d 9 -p ack -e 40 -c 0 -i 3972 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.26525 -s 10 -d 7 -p ack -e 40 -c 0 -i 3976 -a 0 -x {10.0 9.0 1983 ------- null} + -t 2.26525 -s 7 -d 0 -p ack -e 40 -c 0 -i 3976 -a 0 -x {10.0 9.0 1983 ------- null} h -t 2.26525 -s 7 -d 8 -p ack -e 40 -c 0 -i 3976 -a 0 -x {10.0 9.0 1983 ------- null} r -t 2.26554 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3975 -a 0 -x {9.0 10.0 1992 ------- null} + -t 2.26554 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3975 -a 0 -x {9.0 10.0 1992 ------- null} h -t 2.26554 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3975 -a 0 -x {9.0 10.0 1992 ------- null} r -t 2.26554 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3961 -a 0 -x {9.0 10.0 1985 ------- null} + -t 2.26554 -s 10 -d 7 -p ack -e 40 -c 0 -i 3980 -a 0 -x {10.0 9.0 1985 ------- null} - -t 2.26554 -s 10 -d 7 -p ack -e 40 -c 0 -i 3980 -a 0 -x {10.0 9.0 1985 ------- null} h -t 2.26554 -s 10 -d 7 -p ack -e 40 -c 0 -i 3980 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.266 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3967 -a 0 -x {9.0 10.0 1988 ------- null} - -t 2.266 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3967 -a 0 -x {9.0 10.0 1988 ------- null} h -t 2.266 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3967 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.2661 -s 0 -d 9 -p ack -e 40 -c 0 -i 3970 -a 0 -x {10.0 9.0 1980 ------- null} + -t 2.2661 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3981 -a 0 -x {9.0 10.0 1995 ------- null} - -t 2.2661 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3981 -a 0 -x {9.0 10.0 1995 ------- null} h -t 2.2661 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3981 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.26619 -s 0 -d 9 -p ack -e 40 -c 0 -i 3974 -a 0 -x {10.0 9.0 1982 ------- null} - -t 2.26619 -s 0 -d 9 -p ack -e 40 -c 0 -i 3974 -a 0 -x {10.0 9.0 1982 ------- null} h -t 2.26619 -s 0 -d 9 -p ack -e 40 -c 0 -i 3974 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.26648 -s 10 -d 7 -p ack -e 40 -c 0 -i 3978 -a 0 -x {10.0 9.0 1984 ------- null} + -t 2.26648 -s 7 -d 0 -p ack -e 40 -c 0 -i 3978 -a 0 -x {10.0 9.0 1984 ------- null} h -t 2.26648 -s 7 -d 8 -p ack -e 40 -c 0 -i 3978 -a 0 -x {10.0 9.0 1984 ------- null} r -t 2.26662 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3963 -a 0 -x {9.0 10.0 1986 ------- null} + -t 2.26662 -s 10 -d 7 -p ack -e 40 -c 0 -i 3982 -a 0 -x {10.0 9.0 1986 ------- null} - -t 2.26662 -s 10 -d 7 -p ack -e 40 -c 0 -i 3982 -a 0 -x {10.0 9.0 1986 ------- null} h -t 2.26662 -s 10 -d 7 -p ack -e 40 -c 0 -i 3982 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.26672 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3977 -a 0 -x {9.0 10.0 1993 ------- null} + -t 2.26672 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3977 -a 0 -x {9.0 10.0 1993 ------- null} h -t 2.26672 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3977 -a 0 -x {9.0 10.0 1993 ------- null} r -t 2.26707 -s 0 -d 9 -p ack -e 40 -c 0 -i 3972 -a 0 -x {10.0 9.0 1981 ------- null} + -t 2.26707 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3983 -a 0 -x {9.0 10.0 1996 ------- null} - -t 2.26707 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3983 -a 0 -x {9.0 10.0 1996 ------- null} h -t 2.26707 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3983 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.26709 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3969 -a 0 -x {9.0 10.0 1989 ------- null} - -t 2.26709 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3969 -a 0 -x {9.0 10.0 1989 ------- null} h -t 2.26709 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3969 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.2673 -s 0 -d 9 -p ack -e 40 -c 0 -i 3976 -a 0 -x {10.0 9.0 1983 ------- null} - -t 2.2673 -s 0 -d 9 -p ack -e 40 -c 0 -i 3976 -a 0 -x {10.0 9.0 1983 ------- null} h -t 2.2673 -s 0 -d 9 -p ack -e 40 -c 0 -i 3976 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.26757 -s 10 -d 7 -p ack -e 40 -c 0 -i 3980 -a 0 -x {10.0 9.0 1985 ------- null} + -t 2.26757 -s 7 -d 0 -p ack -e 40 -c 0 -i 3980 -a 0 -x {10.0 9.0 1985 ------- null} h -t 2.26757 -s 7 -d 8 -p ack -e 40 -c 0 -i 3980 -a 0 -x {10.0 9.0 1985 ------- null} r -t 2.26771 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3965 -a 0 -x {9.0 10.0 1987 ------- null} + -t 2.26771 -s 10 -d 7 -p ack -e 40 -c 0 -i 3984 -a 0 -x {10.0 9.0 1987 ------- null} - -t 2.26771 -s 10 -d 7 -p ack -e 40 -c 0 -i 3984 -a 0 -x {10.0 9.0 1987 ------- null} h -t 2.26771 -s 10 -d 7 -p ack -e 40 -c 0 -i 3984 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.26778 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3979 -a 0 -x {9.0 10.0 1994 ------- null} + -t 2.26778 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3979 -a 0 -x {9.0 10.0 1994 ------- null} h -t 2.26778 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3979 -a 0 -x {9.0 10.0 1994 ------- null} + -t 2.26818 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3971 -a 0 -x {9.0 10.0 1990 ------- null} - -t 2.26818 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3971 -a 0 -x {9.0 10.0 1990 ------- null} h -t 2.26818 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3971 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.26822 -s 0 -d 9 -p ack -e 40 -c 0 -i 3974 -a 0 -x {10.0 9.0 1982 ------- null} + -t 2.26822 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3985 -a 0 -x {9.0 10.0 1997 ------- null} - -t 2.26822 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3985 -a 0 -x {9.0 10.0 1997 ------- null} h -t 2.26822 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3985 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.26826 -s 0 -d 9 -p ack -e 40 -c 0 -i 3978 -a 0 -x {10.0 9.0 1984 ------- null} - -t 2.26826 -s 0 -d 9 -p ack -e 40 -c 0 -i 3978 -a 0 -x {10.0 9.0 1984 ------- null} h -t 2.26826 -s 0 -d 9 -p ack -e 40 -c 0 -i 3978 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.26866 -s 10 -d 7 -p ack -e 40 -c 0 -i 3982 -a 0 -x {10.0 9.0 1986 ------- null} + -t 2.26866 -s 7 -d 0 -p ack -e 40 -c 0 -i 3982 -a 0 -x {10.0 9.0 1986 ------- null} h -t 2.26866 -s 7 -d 8 -p ack -e 40 -c 0 -i 3982 -a 0 -x {10.0 9.0 1986 ------- null} r -t 2.2688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3967 -a 0 -x {9.0 10.0 1988 ------- null} + -t 2.2688 -s 10 -d 7 -p ack -e 40 -c 0 -i 3986 -a 0 -x {10.0 9.0 1988 ------- null} - -t 2.2688 -s 10 -d 7 -p ack -e 40 -c 0 -i 3986 -a 0 -x {10.0 9.0 1988 ------- null} h -t 2.2688 -s 10 -d 7 -p ack -e 40 -c 0 -i 3986 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.2689 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3981 -a 0 -x {9.0 10.0 1995 ------- null} + -t 2.2689 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3981 -a 0 -x {9.0 10.0 1995 ------- null} h -t 2.2689 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3981 -a 0 -x {9.0 10.0 1995 ------- null} + -t 2.26926 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3973 -a 0 -x {9.0 10.0 1991 ------- null} - -t 2.26926 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3973 -a 0 -x {9.0 10.0 1991 ------- null} h -t 2.26926 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3973 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.26933 -s 0 -d 9 -p ack -e 40 -c 0 -i 3976 -a 0 -x {10.0 9.0 1983 ------- null} + -t 2.26933 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3987 -a 0 -x {9.0 10.0 1998 ------- null} - -t 2.26933 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3987 -a 0 -x {9.0 10.0 1998 ------- null} h -t 2.26933 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3987 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.26938 -s 0 -d 9 -p ack -e 40 -c 0 -i 3980 -a 0 -x {10.0 9.0 1985 ------- null} - -t 2.26938 -s 0 -d 9 -p ack -e 40 -c 0 -i 3980 -a 0 -x {10.0 9.0 1985 ------- null} h -t 2.26938 -s 0 -d 9 -p ack -e 40 -c 0 -i 3980 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.26974 -s 10 -d 7 -p ack -e 40 -c 0 -i 3984 -a 0 -x {10.0 9.0 1987 ------- null} + -t 2.26974 -s 7 -d 0 -p ack -e 40 -c 0 -i 3984 -a 0 -x {10.0 9.0 1987 ------- null} h -t 2.26974 -s 7 -d 8 -p ack -e 40 -c 0 -i 3984 -a 0 -x {10.0 9.0 1987 ------- null} r -t 2.26987 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3983 -a 0 -x {9.0 10.0 1996 ------- null} + -t 2.26987 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3983 -a 0 -x {9.0 10.0 1996 ------- null} h -t 2.26987 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3983 -a 0 -x {9.0 10.0 1996 ------- null} r -t 2.26989 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3969 -a 0 -x {9.0 10.0 1989 ------- null} + -t 2.26989 -s 10 -d 7 -p ack -e 40 -c 0 -i 3988 -a 0 -x {10.0 9.0 1989 ------- null} - -t 2.26989 -s 10 -d 7 -p ack -e 40 -c 0 -i 3988 -a 0 -x {10.0 9.0 1989 ------- null} h -t 2.26989 -s 10 -d 7 -p ack -e 40 -c 0 -i 3988 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.27029 -s 0 -d 9 -p ack -e 40 -c 0 -i 3978 -a 0 -x {10.0 9.0 1984 ------- null} + -t 2.27029 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3989 -a 0 -x {9.0 10.0 1999 ------- null} - -t 2.27029 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3989 -a 0 -x {9.0 10.0 1999 ------- null} h -t 2.27029 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3989 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.27035 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3975 -a 0 -x {9.0 10.0 1992 ------- null} - -t 2.27035 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3975 -a 0 -x {9.0 10.0 1992 ------- null} h -t 2.27035 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3975 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.27045 -s 0 -d 9 -p ack -e 40 -c 0 -i 3982 -a 0 -x {10.0 9.0 1986 ------- null} - -t 2.27045 -s 0 -d 9 -p ack -e 40 -c 0 -i 3982 -a 0 -x {10.0 9.0 1986 ------- null} h -t 2.27045 -s 0 -d 9 -p ack -e 40 -c 0 -i 3982 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.27083 -s 10 -d 7 -p ack -e 40 -c 0 -i 3986 -a 0 -x {10.0 9.0 1988 ------- null} + -t 2.27083 -s 7 -d 0 -p ack -e 40 -c 0 -i 3986 -a 0 -x {10.0 9.0 1988 ------- null} h -t 2.27083 -s 7 -d 8 -p ack -e 40 -c 0 -i 3986 -a 0 -x {10.0 9.0 1988 ------- null} r -t 2.27098 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3971 -a 0 -x {9.0 10.0 1990 ------- null} + -t 2.27098 -s 10 -d 7 -p ack -e 40 -c 0 -i 3990 -a 0 -x {10.0 9.0 1990 ------- null} - -t 2.27098 -s 10 -d 7 -p ack -e 40 -c 0 -i 3990 -a 0 -x {10.0 9.0 1990 ------- null} h -t 2.27098 -s 10 -d 7 -p ack -e 40 -c 0 -i 3990 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.27102 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3985 -a 0 -x {9.0 10.0 1997 ------- null} + -t 2.27102 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3985 -a 0 -x {9.0 10.0 1997 ------- null} h -t 2.27102 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3985 -a 0 -x {9.0 10.0 1997 ------- null} r -t 2.27141 -s 0 -d 9 -p ack -e 40 -c 0 -i 3980 -a 0 -x {10.0 9.0 1985 ------- null} + -t 2.27141 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3991 -a 0 -x {9.0 10.0 2000 ------- null} - -t 2.27141 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3991 -a 0 -x {9.0 10.0 2000 ------- null} h -t 2.27141 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3991 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.27144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3977 -a 0 -x {9.0 10.0 1993 ------- null} - -t 2.27144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3977 -a 0 -x {9.0 10.0 1993 ------- null} h -t 2.27144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3977 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.27154 -s 0 -d 9 -p ack -e 40 -c 0 -i 3984 -a 0 -x {10.0 9.0 1987 ------- null} - -t 2.27154 -s 0 -d 9 -p ack -e 40 -c 0 -i 3984 -a 0 -x {10.0 9.0 1987 ------- null} h -t 2.27154 -s 0 -d 9 -p ack -e 40 -c 0 -i 3984 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.27192 -s 10 -d 7 -p ack -e 40 -c 0 -i 3988 -a 0 -x {10.0 9.0 1989 ------- null} + -t 2.27192 -s 7 -d 0 -p ack -e 40 -c 0 -i 3988 -a 0 -x {10.0 9.0 1989 ------- null} h -t 2.27192 -s 7 -d 8 -p ack -e 40 -c 0 -i 3988 -a 0 -x {10.0 9.0 1989 ------- null} r -t 2.27206 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3973 -a 0 -x {9.0 10.0 1991 ------- null} + -t 2.27206 -s 10 -d 7 -p ack -e 40 -c 0 -i 3992 -a 0 -x {10.0 9.0 1991 ------- null} - -t 2.27206 -s 10 -d 7 -p ack -e 40 -c 0 -i 3992 -a 0 -x {10.0 9.0 1991 ------- null} h -t 2.27206 -s 10 -d 7 -p ack -e 40 -c 0 -i 3992 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.27213 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3987 -a 0 -x {9.0 10.0 1998 ------- null} + -t 2.27213 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3987 -a 0 -x {9.0 10.0 1998 ------- null} h -t 2.27213 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3987 -a 0 -x {9.0 10.0 1998 ------- null} r -t 2.27248 -s 0 -d 9 -p ack -e 40 -c 0 -i 3982 -a 0 -x {10.0 9.0 1986 ------- null} + -t 2.27248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3993 -a 0 -x {9.0 10.0 2001 ------- null} - -t 2.27248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3993 -a 0 -x {9.0 10.0 2001 ------- null} h -t 2.27248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3993 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.27253 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3979 -a 0 -x {9.0 10.0 1994 ------- null} - -t 2.27253 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3979 -a 0 -x {9.0 10.0 1994 ------- null} h -t 2.27253 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3979 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.27261 -s 0 -d 9 -p ack -e 40 -c 0 -i 3986 -a 0 -x {10.0 9.0 1988 ------- null} - -t 2.27261 -s 0 -d 9 -p ack -e 40 -c 0 -i 3986 -a 0 -x {10.0 9.0 1988 ------- null} h -t 2.27261 -s 0 -d 9 -p ack -e 40 -c 0 -i 3986 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.27301 -s 10 -d 7 -p ack -e 40 -c 0 -i 3990 -a 0 -x {10.0 9.0 1990 ------- null} + -t 2.27301 -s 7 -d 0 -p ack -e 40 -c 0 -i 3990 -a 0 -x {10.0 9.0 1990 ------- null} h -t 2.27301 -s 7 -d 8 -p ack -e 40 -c 0 -i 3990 -a 0 -x {10.0 9.0 1990 ------- null} r -t 2.27309 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3989 -a 0 -x {9.0 10.0 1999 ------- null} + -t 2.27309 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3989 -a 0 -x {9.0 10.0 1999 ------- null} h -t 2.27309 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3989 -a 0 -x {9.0 10.0 1999 ------- null} r -t 2.27315 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3975 -a 0 -x {9.0 10.0 1992 ------- null} + -t 2.27315 -s 10 -d 7 -p ack -e 40 -c 0 -i 3994 -a 0 -x {10.0 9.0 1992 ------- null} - -t 2.27315 -s 10 -d 7 -p ack -e 40 -c 0 -i 3994 -a 0 -x {10.0 9.0 1992 ------- null} h -t 2.27315 -s 10 -d 7 -p ack -e 40 -c 0 -i 3994 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.27357 -s 0 -d 9 -p ack -e 40 -c 0 -i 3984 -a 0 -x {10.0 9.0 1987 ------- null} + -t 2.27357 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3995 -a 0 -x {9.0 10.0 2002 ------- null} - -t 2.27357 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3995 -a 0 -x {9.0 10.0 2002 ------- null} h -t 2.27357 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3995 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.27362 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3981 -a 0 -x {9.0 10.0 1995 ------- null} - -t 2.27362 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3981 -a 0 -x {9.0 10.0 1995 ------- null} h -t 2.27362 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3981 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.27374 -s 0 -d 9 -p ack -e 40 -c 0 -i 3988 -a 0 -x {10.0 9.0 1989 ------- null} - -t 2.27374 -s 0 -d 9 -p ack -e 40 -c 0 -i 3988 -a 0 -x {10.0 9.0 1989 ------- null} h -t 2.27374 -s 0 -d 9 -p ack -e 40 -c 0 -i 3988 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.2741 -s 10 -d 7 -p ack -e 40 -c 0 -i 3992 -a 0 -x {10.0 9.0 1991 ------- null} + -t 2.2741 -s 7 -d 0 -p ack -e 40 -c 0 -i 3992 -a 0 -x {10.0 9.0 1991 ------- null} h -t 2.2741 -s 7 -d 8 -p ack -e 40 -c 0 -i 3992 -a 0 -x {10.0 9.0 1991 ------- null} r -t 2.27421 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3991 -a 0 -x {9.0 10.0 2000 ------- null} + -t 2.27421 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3991 -a 0 -x {9.0 10.0 2000 ------- null} h -t 2.27421 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3991 -a 0 -x {9.0 10.0 2000 ------- null} r -t 2.27424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3977 -a 0 -x {9.0 10.0 1993 ------- null} + -t 2.27424 -s 10 -d 7 -p ack -e 40 -c 0 -i 3996 -a 0 -x {10.0 9.0 1993 ------- null} - -t 2.27424 -s 10 -d 7 -p ack -e 40 -c 0 -i 3996 -a 0 -x {10.0 9.0 1993 ------- null} h -t 2.27424 -s 10 -d 7 -p ack -e 40 -c 0 -i 3996 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.27464 -s 0 -d 9 -p ack -e 40 -c 0 -i 3986 -a 0 -x {10.0 9.0 1988 ------- null} + -t 2.27464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3997 -a 0 -x {9.0 10.0 2003 ------- null} - -t 2.27464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3997 -a 0 -x {9.0 10.0 2003 ------- null} h -t 2.27464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3997 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.2747 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3983 -a 0 -x {9.0 10.0 1996 ------- null} - -t 2.2747 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3983 -a 0 -x {9.0 10.0 1996 ------- null} h -t 2.2747 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3983 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.27499 -s 0 -d 9 -p ack -e 40 -c 0 -i 3990 -a 0 -x {10.0 9.0 1990 ------- null} - -t 2.27499 -s 0 -d 9 -p ack -e 40 -c 0 -i 3990 -a 0 -x {10.0 9.0 1990 ------- null} h -t 2.27499 -s 0 -d 9 -p ack -e 40 -c 0 -i 3990 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.27518 -s 10 -d 7 -p ack -e 40 -c 0 -i 3994 -a 0 -x {10.0 9.0 1992 ------- null} + -t 2.27518 -s 7 -d 0 -p ack -e 40 -c 0 -i 3994 -a 0 -x {10.0 9.0 1992 ------- null} h -t 2.27518 -s 7 -d 8 -p ack -e 40 -c 0 -i 3994 -a 0 -x {10.0 9.0 1992 ------- null} r -t 2.27528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3993 -a 0 -x {9.0 10.0 2001 ------- null} + -t 2.27528 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3993 -a 0 -x {9.0 10.0 2001 ------- null} h -t 2.27528 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3993 -a 0 -x {9.0 10.0 2001 ------- null} r -t 2.27533 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3979 -a 0 -x {9.0 10.0 1994 ------- null} + -t 2.27533 -s 10 -d 7 -p ack -e 40 -c 0 -i 3998 -a 0 -x {10.0 9.0 1994 ------- null} - -t 2.27533 -s 10 -d 7 -p ack -e 40 -c 0 -i 3998 -a 0 -x {10.0 9.0 1994 ------- null} h -t 2.27533 -s 10 -d 7 -p ack -e 40 -c 0 -i 3998 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.27578 -s 0 -d 9 -p ack -e 40 -c 0 -i 3988 -a 0 -x {10.0 9.0 1989 ------- null} + -t 2.27578 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3999 -a 0 -x {9.0 10.0 2004 ------- null} - -t 2.27578 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3999 -a 0 -x {9.0 10.0 2004 ------- null} h -t 2.27578 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3999 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.27589 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3985 -a 0 -x {9.0 10.0 1997 ------- null} - -t 2.27589 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3985 -a 0 -x {9.0 10.0 1997 ------- null} h -t 2.27589 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3985 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.27619 -s 0 -d 9 -p ack -e 40 -c 0 -i 3992 -a 0 -x {10.0 9.0 1991 ------- null} - -t 2.27619 -s 0 -d 9 -p ack -e 40 -c 0 -i 3992 -a 0 -x {10.0 9.0 1991 ------- null} h -t 2.27619 -s 0 -d 9 -p ack -e 40 -c 0 -i 3992 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.27627 -s 10 -d 7 -p ack -e 40 -c 0 -i 3996 -a 0 -x {10.0 9.0 1993 ------- null} + -t 2.27627 -s 7 -d 0 -p ack -e 40 -c 0 -i 3996 -a 0 -x {10.0 9.0 1993 ------- null} h -t 2.27627 -s 7 -d 8 -p ack -e 40 -c 0 -i 3996 -a 0 -x {10.0 9.0 1993 ------- null} r -t 2.27637 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3995 -a 0 -x {9.0 10.0 2002 ------- null} + -t 2.27637 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3995 -a 0 -x {9.0 10.0 2002 ------- null} h -t 2.27637 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3995 -a 0 -x {9.0 10.0 2002 ------- null} r -t 2.27642 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3981 -a 0 -x {9.0 10.0 1995 ------- null} + -t 2.27642 -s 10 -d 7 -p ack -e 40 -c 0 -i 4000 -a 0 -x {10.0 9.0 1995 ------- null} - -t 2.27642 -s 10 -d 7 -p ack -e 40 -c 0 -i 4000 -a 0 -x {10.0 9.0 1995 ------- null} h -t 2.27642 -s 10 -d 7 -p ack -e 40 -c 0 -i 4000 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.27702 -s 0 -d 9 -p ack -e 40 -c 0 -i 3990 -a 0 -x {10.0 9.0 1990 ------- null} + -t 2.27702 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4001 -a 0 -x {9.0 10.0 2005 ------- null} - -t 2.27702 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4001 -a 0 -x {9.0 10.0 2005 ------- null} h -t 2.27702 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4001 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.27723 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3987 -a 0 -x {9.0 10.0 1998 ------- null} - -t 2.27723 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3987 -a 0 -x {9.0 10.0 1998 ------- null} h -t 2.27723 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3987 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.27736 -s 10 -d 7 -p ack -e 40 -c 0 -i 3998 -a 0 -x {10.0 9.0 1994 ------- null} + -t 2.27736 -s 7 -d 0 -p ack -e 40 -c 0 -i 3998 -a 0 -x {10.0 9.0 1994 ------- null} h -t 2.27736 -s 7 -d 8 -p ack -e 40 -c 0 -i 3998 -a 0 -x {10.0 9.0 1994 ------- null} r -t 2.27744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3997 -a 0 -x {9.0 10.0 2003 ------- null} + -t 2.27744 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3997 -a 0 -x {9.0 10.0 2003 ------- null} h -t 2.27744 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3997 -a 0 -x {9.0 10.0 2003 ------- null} + -t 2.27746 -s 0 -d 9 -p ack -e 40 -c 0 -i 3994 -a 0 -x {10.0 9.0 1992 ------- null} - -t 2.27746 -s 0 -d 9 -p ack -e 40 -c 0 -i 3994 -a 0 -x {10.0 9.0 1992 ------- null} h -t 2.27746 -s 0 -d 9 -p ack -e 40 -c 0 -i 3994 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.2775 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3983 -a 0 -x {9.0 10.0 1996 ------- null} + -t 2.2775 -s 10 -d 7 -p ack -e 40 -c 0 -i 4002 -a 0 -x {10.0 9.0 1996 ------- null} - -t 2.2775 -s 10 -d 7 -p ack -e 40 -c 0 -i 4002 -a 0 -x {10.0 9.0 1996 ------- null} h -t 2.2775 -s 10 -d 7 -p ack -e 40 -c 0 -i 4002 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.27822 -s 0 -d 9 -p ack -e 40 -c 0 -i 3992 -a 0 -x {10.0 9.0 1991 ------- null} + -t 2.27822 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4003 -a 0 -x {9.0 10.0 2006 ------- null} - -t 2.27822 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4003 -a 0 -x {9.0 10.0 2006 ------- null} h -t 2.27822 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4003 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.27832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3989 -a 0 -x {9.0 10.0 1999 ------- null} - -t 2.27832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3989 -a 0 -x {9.0 10.0 1999 ------- null} h -t 2.27832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3989 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.27845 -s 10 -d 7 -p ack -e 40 -c 0 -i 4000 -a 0 -x {10.0 9.0 1995 ------- null} + -t 2.27845 -s 7 -d 0 -p ack -e 40 -c 0 -i 4000 -a 0 -x {10.0 9.0 1995 ------- null} h -t 2.27845 -s 7 -d 8 -p ack -e 40 -c 0 -i 4000 -a 0 -x {10.0 9.0 1995 ------- null} + -t 2.27858 -s 0 -d 9 -p ack -e 40 -c 0 -i 3996 -a 0 -x {10.0 9.0 1993 ------- null} - -t 2.27858 -s 0 -d 9 -p ack -e 40 -c 0 -i 3996 -a 0 -x {10.0 9.0 1993 ------- null} h -t 2.27858 -s 0 -d 9 -p ack -e 40 -c 0 -i 3996 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.27858 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3999 -a 0 -x {9.0 10.0 2004 ------- null} + -t 2.27858 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 3999 -a 0 -x {9.0 10.0 2004 ------- null} h -t 2.27858 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3999 -a 0 -x {9.0 10.0 2004 ------- null} r -t 2.27869 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3985 -a 0 -x {9.0 10.0 1997 ------- null} + -t 2.27869 -s 10 -d 7 -p ack -e 40 -c 0 -i 4004 -a 0 -x {10.0 9.0 1997 ------- null} - -t 2.27869 -s 10 -d 7 -p ack -e 40 -c 0 -i 4004 -a 0 -x {10.0 9.0 1997 ------- null} h -t 2.27869 -s 10 -d 7 -p ack -e 40 -c 0 -i 4004 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.27949 -s 0 -d 9 -p ack -e 40 -c 0 -i 3994 -a 0 -x {10.0 9.0 1992 ------- null} + -t 2.27949 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4005 -a 0 -x {9.0 10.0 2007 ------- null} - -t 2.27949 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4005 -a 0 -x {9.0 10.0 2007 ------- null} h -t 2.27949 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4005 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.27954 -s 10 -d 7 -p ack -e 40 -c 0 -i 4002 -a 0 -x {10.0 9.0 1996 ------- null} + -t 2.27954 -s 7 -d 0 -p ack -e 40 -c 0 -i 4002 -a 0 -x {10.0 9.0 1996 ------- null} h -t 2.27954 -s 7 -d 8 -p ack -e 40 -c 0 -i 4002 -a 0 -x {10.0 9.0 1996 ------- null} + -t 2.27963 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3991 -a 0 -x {9.0 10.0 2000 ------- null} - -t 2.27963 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3991 -a 0 -x {9.0 10.0 2000 ------- null} h -t 2.27963 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3991 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.27982 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4001 -a 0 -x {9.0 10.0 2005 ------- null} + -t 2.27982 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4001 -a 0 -x {9.0 10.0 2005 ------- null} h -t 2.27982 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4001 -a 0 -x {9.0 10.0 2005 ------- null} + -t 2.27992 -s 0 -d 9 -p ack -e 40 -c 0 -i 3998 -a 0 -x {10.0 9.0 1994 ------- null} - -t 2.27992 -s 0 -d 9 -p ack -e 40 -c 0 -i 3998 -a 0 -x {10.0 9.0 1994 ------- null} h -t 2.27992 -s 0 -d 9 -p ack -e 40 -c 0 -i 3998 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.28003 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3987 -a 0 -x {9.0 10.0 1998 ------- null} + -t 2.28003 -s 10 -d 7 -p ack -e 40 -c 0 -i 4006 -a 0 -x {10.0 9.0 1998 ------- null} - -t 2.28003 -s 10 -d 7 -p ack -e 40 -c 0 -i 4006 -a 0 -x {10.0 9.0 1998 ------- null} h -t 2.28003 -s 10 -d 7 -p ack -e 40 -c 0 -i 4006 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.28061 -s 0 -d 9 -p ack -e 40 -c 0 -i 3996 -a 0 -x {10.0 9.0 1993 ------- null} + -t 2.28061 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4007 -a 0 -x {9.0 10.0 2008 ------- null} - -t 2.28061 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4007 -a 0 -x {9.0 10.0 2008 ------- null} h -t 2.28061 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4007 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.28072 -s 10 -d 7 -p ack -e 40 -c 0 -i 4004 -a 0 -x {10.0 9.0 1997 ------- null} + -t 2.28072 -s 7 -d 0 -p ack -e 40 -c 0 -i 4004 -a 0 -x {10.0 9.0 1997 ------- null} h -t 2.28072 -s 7 -d 8 -p ack -e 40 -c 0 -i 4004 -a 0 -x {10.0 9.0 1997 ------- null} + -t 2.2809 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3993 -a 0 -x {9.0 10.0 2001 ------- null} - -t 2.2809 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3993 -a 0 -x {9.0 10.0 2001 ------- null} h -t 2.2809 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3993 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.28102 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4003 -a 0 -x {9.0 10.0 2006 ------- null} + -t 2.28102 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4003 -a 0 -x {9.0 10.0 2006 ------- null} h -t 2.28102 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4003 -a 0 -x {9.0 10.0 2006 ------- null} + -t 2.2811 -s 0 -d 9 -p ack -e 40 -c 0 -i 4000 -a 0 -x {10.0 9.0 1995 ------- null} - -t 2.2811 -s 0 -d 9 -p ack -e 40 -c 0 -i 4000 -a 0 -x {10.0 9.0 1995 ------- null} h -t 2.2811 -s 0 -d 9 -p ack -e 40 -c 0 -i 4000 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.28112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3989 -a 0 -x {9.0 10.0 1999 ------- null} + -t 2.28112 -s 10 -d 7 -p ack -e 40 -c 0 -i 4008 -a 0 -x {10.0 9.0 1999 ------- null} - -t 2.28112 -s 10 -d 7 -p ack -e 40 -c 0 -i 4008 -a 0 -x {10.0 9.0 1999 ------- null} h -t 2.28112 -s 10 -d 7 -p ack -e 40 -c 0 -i 4008 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.28195 -s 0 -d 9 -p ack -e 40 -c 0 -i 3998 -a 0 -x {10.0 9.0 1994 ------- null} + -t 2.28195 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4009 -a 0 -x {9.0 10.0 2009 ------- null} - -t 2.28195 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4009 -a 0 -x {9.0 10.0 2009 ------- null} h -t 2.28195 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4009 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.28198 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3995 -a 0 -x {9.0 10.0 2002 ------- null} - -t 2.28198 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3995 -a 0 -x {9.0 10.0 2002 ------- null} h -t 2.28198 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3995 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.28205 -s 0 -d 9 -p ack -e 40 -c 0 -i 4002 -a 0 -x {10.0 9.0 1996 ------- null} - -t 2.28205 -s 0 -d 9 -p ack -e 40 -c 0 -i 4002 -a 0 -x {10.0 9.0 1996 ------- null} h -t 2.28205 -s 0 -d 9 -p ack -e 40 -c 0 -i 4002 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.28206 -s 10 -d 7 -p ack -e 40 -c 0 -i 4006 -a 0 -x {10.0 9.0 1998 ------- null} + -t 2.28206 -s 7 -d 0 -p ack -e 40 -c 0 -i 4006 -a 0 -x {10.0 9.0 1998 ------- null} h -t 2.28206 -s 7 -d 8 -p ack -e 40 -c 0 -i 4006 -a 0 -x {10.0 9.0 1998 ------- null} r -t 2.28229 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4005 -a 0 -x {9.0 10.0 2007 ------- null} + -t 2.28229 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4005 -a 0 -x {9.0 10.0 2007 ------- null} h -t 2.28229 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4005 -a 0 -x {9.0 10.0 2007 ------- null} r -t 2.28243 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3991 -a 0 -x {9.0 10.0 2000 ------- null} + -t 2.28243 -s 10 -d 7 -p ack -e 40 -c 0 -i 4010 -a 0 -x {10.0 9.0 2000 ------- null} - -t 2.28243 -s 10 -d 7 -p ack -e 40 -c 0 -i 4010 -a 0 -x {10.0 9.0 2000 ------- null} h -t 2.28243 -s 10 -d 7 -p ack -e 40 -c 0 -i 4010 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.28307 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3997 -a 0 -x {9.0 10.0 2003 ------- null} - -t 2.28307 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3997 -a 0 -x {9.0 10.0 2003 ------- null} h -t 2.28307 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3997 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.28314 -s 0 -d 9 -p ack -e 40 -c 0 -i 4004 -a 0 -x {10.0 9.0 1997 ------- null} - -t 2.28314 -s 0 -d 9 -p ack -e 40 -c 0 -i 4004 -a 0 -x {10.0 9.0 1997 ------- null} h -t 2.28314 -s 0 -d 9 -p ack -e 40 -c 0 -i 4004 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.28314 -s 0 -d 9 -p ack -e 40 -c 0 -i 4000 -a 0 -x {10.0 9.0 1995 ------- null} + -t 2.28314 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4011 -a 0 -x {9.0 10.0 2010 ------- null} - -t 2.28314 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4011 -a 0 -x {9.0 10.0 2010 ------- null} h -t 2.28314 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4011 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.28315 -s 10 -d 7 -p ack -e 40 -c 0 -i 4008 -a 0 -x {10.0 9.0 1999 ------- null} + -t 2.28315 -s 7 -d 0 -p ack -e 40 -c 0 -i 4008 -a 0 -x {10.0 9.0 1999 ------- null} h -t 2.28315 -s 7 -d 8 -p ack -e 40 -c 0 -i 4008 -a 0 -x {10.0 9.0 1999 ------- null} r -t 2.28341 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4007 -a 0 -x {9.0 10.0 2008 ------- null} + -t 2.28341 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4007 -a 0 -x {9.0 10.0 2008 ------- null} h -t 2.28341 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4007 -a 0 -x {9.0 10.0 2008 ------- null} r -t 2.2837 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3993 -a 0 -x {9.0 10.0 2001 ------- null} + -t 2.2837 -s 10 -d 7 -p ack -e 40 -c 0 -i 4012 -a 0 -x {10.0 9.0 2001 ------- null} - -t 2.2837 -s 10 -d 7 -p ack -e 40 -c 0 -i 4012 -a 0 -x {10.0 9.0 2001 ------- null} h -t 2.2837 -s 10 -d 7 -p ack -e 40 -c 0 -i 4012 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.28408 -s 0 -d 9 -p ack -e 40 -c 0 -i 4002 -a 0 -x {10.0 9.0 1996 ------- null} + -t 2.28408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4013 -a 0 -x {9.0 10.0 2011 ------- null} - -t 2.28408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4013 -a 0 -x {9.0 10.0 2011 ------- null} h -t 2.28408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4013 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.28416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3999 -a 0 -x {9.0 10.0 2004 ------- null} - -t 2.28416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3999 -a 0 -x {9.0 10.0 2004 ------- null} h -t 2.28416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3999 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.28424 -s 0 -d 9 -p ack -e 40 -c 0 -i 4006 -a 0 -x {10.0 9.0 1998 ------- null} - -t 2.28424 -s 0 -d 9 -p ack -e 40 -c 0 -i 4006 -a 0 -x {10.0 9.0 1998 ------- null} h -t 2.28424 -s 0 -d 9 -p ack -e 40 -c 0 -i 4006 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.28446 -s 10 -d 7 -p ack -e 40 -c 0 -i 4010 -a 0 -x {10.0 9.0 2000 ------- null} + -t 2.28446 -s 7 -d 0 -p ack -e 40 -c 0 -i 4010 -a 0 -x {10.0 9.0 2000 ------- null} h -t 2.28446 -s 7 -d 8 -p ack -e 40 -c 0 -i 4010 -a 0 -x {10.0 9.0 2000 ------- null} r -t 2.28475 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4009 -a 0 -x {9.0 10.0 2009 ------- null} + -t 2.28475 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4009 -a 0 -x {9.0 10.0 2009 ------- null} h -t 2.28475 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4009 -a 0 -x {9.0 10.0 2009 ------- null} r -t 2.28478 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3995 -a 0 -x {9.0 10.0 2002 ------- null} + -t 2.28478 -s 10 -d 7 -p ack -e 40 -c 0 -i 4014 -a 0 -x {10.0 9.0 2002 ------- null} - -t 2.28478 -s 10 -d 7 -p ack -e 40 -c 0 -i 4014 -a 0 -x {10.0 9.0 2002 ------- null} h -t 2.28478 -s 10 -d 7 -p ack -e 40 -c 0 -i 4014 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.28517 -s 0 -d 9 -p ack -e 40 -c 0 -i 4004 -a 0 -x {10.0 9.0 1997 ------- null} + -t 2.28517 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4015 -a 0 -x {9.0 10.0 2012 ------- null} - -t 2.28517 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4015 -a 0 -x {9.0 10.0 2012 ------- null} h -t 2.28517 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4015 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.28525 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4001 -a 0 -x {9.0 10.0 2005 ------- null} - -t 2.28525 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4001 -a 0 -x {9.0 10.0 2005 ------- null} h -t 2.28525 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4001 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.28547 -s 0 -d 9 -p ack -e 40 -c 0 -i 4008 -a 0 -x {10.0 9.0 1999 ------- null} - -t 2.28547 -s 0 -d 9 -p ack -e 40 -c 0 -i 4008 -a 0 -x {10.0 9.0 1999 ------- null} h -t 2.28547 -s 0 -d 9 -p ack -e 40 -c 0 -i 4008 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.28573 -s 10 -d 7 -p ack -e 40 -c 0 -i 4012 -a 0 -x {10.0 9.0 2001 ------- null} + -t 2.28573 -s 7 -d 0 -p ack -e 40 -c 0 -i 4012 -a 0 -x {10.0 9.0 2001 ------- null} h -t 2.28573 -s 7 -d 8 -p ack -e 40 -c 0 -i 4012 -a 0 -x {10.0 9.0 2001 ------- null} r -t 2.28587 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3997 -a 0 -x {9.0 10.0 2003 ------- null} + -t 2.28587 -s 10 -d 7 -p ack -e 40 -c 0 -i 4016 -a 0 -x {10.0 9.0 2003 ------- null} - -t 2.28587 -s 10 -d 7 -p ack -e 40 -c 0 -i 4016 -a 0 -x {10.0 9.0 2003 ------- null} h -t 2.28587 -s 10 -d 7 -p ack -e 40 -c 0 -i 4016 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.28594 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4011 -a 0 -x {9.0 10.0 2010 ------- null} + -t 2.28594 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4011 -a 0 -x {9.0 10.0 2010 ------- null} h -t 2.28594 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4011 -a 0 -x {9.0 10.0 2010 ------- null} r -t 2.28627 -s 0 -d 9 -p ack -e 40 -c 0 -i 4006 -a 0 -x {10.0 9.0 1998 ------- null} + -t 2.28627 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4017 -a 0 -x {9.0 10.0 2013 ------- null} - -t 2.28627 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4017 -a 0 -x {9.0 10.0 2013 ------- null} h -t 2.28627 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4017 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.28634 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4003 -a 0 -x {9.0 10.0 2006 ------- null} - -t 2.28634 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4003 -a 0 -x {9.0 10.0 2006 ------- null} h -t 2.28634 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4003 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.28658 -s 0 -d 9 -p ack -e 40 -c 0 -i 4010 -a 0 -x {10.0 9.0 2000 ------- null} - -t 2.28658 -s 0 -d 9 -p ack -e 40 -c 0 -i 4010 -a 0 -x {10.0 9.0 2000 ------- null} h -t 2.28658 -s 0 -d 9 -p ack -e 40 -c 0 -i 4010 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.28682 -s 10 -d 7 -p ack -e 40 -c 0 -i 4014 -a 0 -x {10.0 9.0 2002 ------- null} + -t 2.28682 -s 7 -d 0 -p ack -e 40 -c 0 -i 4014 -a 0 -x {10.0 9.0 2002 ------- null} h -t 2.28682 -s 7 -d 8 -p ack -e 40 -c 0 -i 4014 -a 0 -x {10.0 9.0 2002 ------- null} r -t 2.28688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4013 -a 0 -x {9.0 10.0 2011 ------- null} + -t 2.28688 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4013 -a 0 -x {9.0 10.0 2011 ------- null} h -t 2.28688 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4013 -a 0 -x {9.0 10.0 2011 ------- null} r -t 2.28696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 3999 -a 0 -x {9.0 10.0 2004 ------- null} + -t 2.28696 -s 10 -d 7 -p ack -e 40 -c 0 -i 4018 -a 0 -x {10.0 9.0 2004 ------- null} - -t 2.28696 -s 10 -d 7 -p ack -e 40 -c 0 -i 4018 -a 0 -x {10.0 9.0 2004 ------- null} h -t 2.28696 -s 10 -d 7 -p ack -e 40 -c 0 -i 4018 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.28742 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4005 -a 0 -x {9.0 10.0 2007 ------- null} - -t 2.28742 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4005 -a 0 -x {9.0 10.0 2007 ------- null} h -t 2.28742 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4005 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.2875 -s 0 -d 9 -p ack -e 40 -c 0 -i 4008 -a 0 -x {10.0 9.0 1999 ------- null} + -t 2.2875 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4019 -a 0 -x {9.0 10.0 2014 ------- null} - -t 2.2875 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4019 -a 0 -x {9.0 10.0 2014 ------- null} h -t 2.2875 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4019 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.28755 -s 0 -d 9 -p ack -e 40 -c 0 -i 4012 -a 0 -x {10.0 9.0 2001 ------- null} - -t 2.28755 -s 0 -d 9 -p ack -e 40 -c 0 -i 4012 -a 0 -x {10.0 9.0 2001 ------- null} h -t 2.28755 -s 0 -d 9 -p ack -e 40 -c 0 -i 4012 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.2879 -s 10 -d 7 -p ack -e 40 -c 0 -i 4016 -a 0 -x {10.0 9.0 2003 ------- null} + -t 2.2879 -s 7 -d 0 -p ack -e 40 -c 0 -i 4016 -a 0 -x {10.0 9.0 2003 ------- null} h -t 2.2879 -s 7 -d 8 -p ack -e 40 -c 0 -i 4016 -a 0 -x {10.0 9.0 2003 ------- null} r -t 2.28797 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4015 -a 0 -x {9.0 10.0 2012 ------- null} + -t 2.28797 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4015 -a 0 -x {9.0 10.0 2012 ------- null} h -t 2.28797 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4015 -a 0 -x {9.0 10.0 2012 ------- null} r -t 2.28805 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4001 -a 0 -x {9.0 10.0 2005 ------- null} + -t 2.28805 -s 10 -d 7 -p ack -e 40 -c 0 -i 4020 -a 0 -x {10.0 9.0 2005 ------- null} - -t 2.28805 -s 10 -d 7 -p ack -e 40 -c 0 -i 4020 -a 0 -x {10.0 9.0 2005 ------- null} h -t 2.28805 -s 10 -d 7 -p ack -e 40 -c 0 -i 4020 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.28851 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4007 -a 0 -x {9.0 10.0 2008 ------- null} - -t 2.28851 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4007 -a 0 -x {9.0 10.0 2008 ------- null} h -t 2.28851 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4007 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.28861 -s 0 -d 9 -p ack -e 40 -c 0 -i 4010 -a 0 -x {10.0 9.0 2000 ------- null} + -t 2.28861 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4021 -a 0 -x {9.0 10.0 2015 ------- null} - -t 2.28861 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4021 -a 0 -x {9.0 10.0 2015 ------- null} h -t 2.28861 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4021 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.28866 -s 0 -d 9 -p ack -e 40 -c 0 -i 4014 -a 0 -x {10.0 9.0 2002 ------- null} - -t 2.28866 -s 0 -d 9 -p ack -e 40 -c 0 -i 4014 -a 0 -x {10.0 9.0 2002 ------- null} h -t 2.28866 -s 0 -d 9 -p ack -e 40 -c 0 -i 4014 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.28899 -s 10 -d 7 -p ack -e 40 -c 0 -i 4018 -a 0 -x {10.0 9.0 2004 ------- null} + -t 2.28899 -s 7 -d 0 -p ack -e 40 -c 0 -i 4018 -a 0 -x {10.0 9.0 2004 ------- null} h -t 2.28899 -s 7 -d 8 -p ack -e 40 -c 0 -i 4018 -a 0 -x {10.0 9.0 2004 ------- null} r -t 2.28907 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4017 -a 0 -x {9.0 10.0 2013 ------- null} + -t 2.28907 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4017 -a 0 -x {9.0 10.0 2013 ------- null} h -t 2.28907 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4017 -a 0 -x {9.0 10.0 2013 ------- null} r -t 2.28914 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4003 -a 0 -x {9.0 10.0 2006 ------- null} + -t 2.28914 -s 10 -d 7 -p ack -e 40 -c 0 -i 4022 -a 0 -x {10.0 9.0 2006 ------- null} - -t 2.28914 -s 10 -d 7 -p ack -e 40 -c 0 -i 4022 -a 0 -x {10.0 9.0 2006 ------- null} h -t 2.28914 -s 10 -d 7 -p ack -e 40 -c 0 -i 4022 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.28958 -s 0 -d 9 -p ack -e 40 -c 0 -i 4012 -a 0 -x {10.0 9.0 2001 ------- null} + -t 2.28958 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4023 -a 0 -x {9.0 10.0 2016 ------- null} - -t 2.28958 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4023 -a 0 -x {9.0 10.0 2016 ------- null} h -t 2.28958 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4023 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.2896 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4009 -a 0 -x {9.0 10.0 2009 ------- null} - -t 2.2896 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4009 -a 0 -x {9.0 10.0 2009 ------- null} h -t 2.2896 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4009 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.2899 -s 0 -d 9 -p ack -e 40 -c 0 -i 4016 -a 0 -x {10.0 9.0 2003 ------- null} - -t 2.2899 -s 0 -d 9 -p ack -e 40 -c 0 -i 4016 -a 0 -x {10.0 9.0 2003 ------- null} h -t 2.2899 -s 0 -d 9 -p ack -e 40 -c 0 -i 4016 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.29008 -s 10 -d 7 -p ack -e 40 -c 0 -i 4020 -a 0 -x {10.0 9.0 2005 ------- null} + -t 2.29008 -s 7 -d 0 -p ack -e 40 -c 0 -i 4020 -a 0 -x {10.0 9.0 2005 ------- null} h -t 2.29008 -s 7 -d 8 -p ack -e 40 -c 0 -i 4020 -a 0 -x {10.0 9.0 2005 ------- null} r -t 2.29022 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4005 -a 0 -x {9.0 10.0 2007 ------- null} + -t 2.29022 -s 10 -d 7 -p ack -e 40 -c 0 -i 4024 -a 0 -x {10.0 9.0 2007 ------- null} - -t 2.29022 -s 10 -d 7 -p ack -e 40 -c 0 -i 4024 -a 0 -x {10.0 9.0 2007 ------- null} h -t 2.29022 -s 10 -d 7 -p ack -e 40 -c 0 -i 4024 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.2903 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4019 -a 0 -x {9.0 10.0 2014 ------- null} + -t 2.2903 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4019 -a 0 -x {9.0 10.0 2014 ------- null} h -t 2.2903 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4019 -a 0 -x {9.0 10.0 2014 ------- null} r -t 2.29069 -s 0 -d 9 -p ack -e 40 -c 0 -i 4014 -a 0 -x {10.0 9.0 2002 ------- null} + -t 2.29069 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4025 -a 0 -x {9.0 10.0 2017 ------- null} - -t 2.29069 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4025 -a 0 -x {9.0 10.0 2017 ------- null} h -t 2.29069 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4025 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.29082 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4011 -a 0 -x {9.0 10.0 2010 ------- null} - -t 2.29082 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4011 -a 0 -x {9.0 10.0 2010 ------- null} h -t 2.29082 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4011 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.29101 -s 0 -d 9 -p ack -e 40 -c 0 -i 4018 -a 0 -x {10.0 9.0 2004 ------- null} - -t 2.29101 -s 0 -d 9 -p ack -e 40 -c 0 -i 4018 -a 0 -x {10.0 9.0 2004 ------- null} h -t 2.29101 -s 0 -d 9 -p ack -e 40 -c 0 -i 4018 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.29117 -s 10 -d 7 -p ack -e 40 -c 0 -i 4022 -a 0 -x {10.0 9.0 2006 ------- null} + -t 2.29117 -s 7 -d 0 -p ack -e 40 -c 0 -i 4022 -a 0 -x {10.0 9.0 2006 ------- null} h -t 2.29117 -s 7 -d 8 -p ack -e 40 -c 0 -i 4022 -a 0 -x {10.0 9.0 2006 ------- null} r -t 2.29131 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4007 -a 0 -x {9.0 10.0 2008 ------- null} + -t 2.29131 -s 10 -d 7 -p ack -e 40 -c 0 -i 4026 -a 0 -x {10.0 9.0 2008 ------- null} - -t 2.29131 -s 10 -d 7 -p ack -e 40 -c 0 -i 4026 -a 0 -x {10.0 9.0 2008 ------- null} h -t 2.29131 -s 10 -d 7 -p ack -e 40 -c 0 -i 4026 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.29141 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4021 -a 0 -x {9.0 10.0 2015 ------- null} + -t 2.29141 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4021 -a 0 -x {9.0 10.0 2015 ------- null} h -t 2.29141 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4021 -a 0 -x {9.0 10.0 2015 ------- null} + -t 2.2919 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4013 -a 0 -x {9.0 10.0 2011 ------- null} - -t 2.2919 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4013 -a 0 -x {9.0 10.0 2011 ------- null} h -t 2.2919 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4013 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.29194 -s 0 -d 9 -p ack -e 40 -c 0 -i 4016 -a 0 -x {10.0 9.0 2003 ------- null} + -t 2.29194 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4027 -a 0 -x {9.0 10.0 2018 ------- null} - -t 2.29194 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4027 -a 0 -x {9.0 10.0 2018 ------- null} h -t 2.29194 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4027 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.29206 -s 0 -d 9 -p ack -e 40 -c 0 -i 4020 -a 0 -x {10.0 9.0 2005 ------- null} - -t 2.29206 -s 0 -d 9 -p ack -e 40 -c 0 -i 4020 -a 0 -x {10.0 9.0 2005 ------- null} h -t 2.29206 -s 0 -d 9 -p ack -e 40 -c 0 -i 4020 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.29226 -s 10 -d 7 -p ack -e 40 -c 0 -i 4024 -a 0 -x {10.0 9.0 2007 ------- null} + -t 2.29226 -s 7 -d 0 -p ack -e 40 -c 0 -i 4024 -a 0 -x {10.0 9.0 2007 ------- null} h -t 2.29226 -s 7 -d 8 -p ack -e 40 -c 0 -i 4024 -a 0 -x {10.0 9.0 2007 ------- null} r -t 2.29238 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4023 -a 0 -x {9.0 10.0 2016 ------- null} + -t 2.29238 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4023 -a 0 -x {9.0 10.0 2016 ------- null} h -t 2.29238 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4023 -a 0 -x {9.0 10.0 2016 ------- null} r -t 2.2924 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4009 -a 0 -x {9.0 10.0 2009 ------- null} + -t 2.2924 -s 10 -d 7 -p ack -e 40 -c 0 -i 4028 -a 0 -x {10.0 9.0 2009 ------- null} - -t 2.2924 -s 10 -d 7 -p ack -e 40 -c 0 -i 4028 -a 0 -x {10.0 9.0 2009 ------- null} h -t 2.2924 -s 10 -d 7 -p ack -e 40 -c 0 -i 4028 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.29299 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4015 -a 0 -x {9.0 10.0 2012 ------- null} - -t 2.29299 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4015 -a 0 -x {9.0 10.0 2012 ------- null} h -t 2.29299 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4015 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.29304 -s 0 -d 9 -p ack -e 40 -c 0 -i 4018 -a 0 -x {10.0 9.0 2004 ------- null} + -t 2.29304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4029 -a 0 -x {9.0 10.0 2019 ------- null} - -t 2.29304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4029 -a 0 -x {9.0 10.0 2019 ------- null} h -t 2.29304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4029 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.29317 -s 0 -d 9 -p ack -e 40 -c 0 -i 4022 -a 0 -x {10.0 9.0 2006 ------- null} - -t 2.29317 -s 0 -d 9 -p ack -e 40 -c 0 -i 4022 -a 0 -x {10.0 9.0 2006 ------- null} h -t 2.29317 -s 0 -d 9 -p ack -e 40 -c 0 -i 4022 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.29334 -s 10 -d 7 -p ack -e 40 -c 0 -i 4026 -a 0 -x {10.0 9.0 2008 ------- null} + -t 2.29334 -s 7 -d 0 -p ack -e 40 -c 0 -i 4026 -a 0 -x {10.0 9.0 2008 ------- null} h -t 2.29334 -s 7 -d 8 -p ack -e 40 -c 0 -i 4026 -a 0 -x {10.0 9.0 2008 ------- null} r -t 2.29349 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4025 -a 0 -x {9.0 10.0 2017 ------- null} + -t 2.29349 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4025 -a 0 -x {9.0 10.0 2017 ------- null} h -t 2.29349 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4025 -a 0 -x {9.0 10.0 2017 ------- null} r -t 2.29362 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4011 -a 0 -x {9.0 10.0 2010 ------- null} + -t 2.29362 -s 10 -d 7 -p ack -e 40 -c 0 -i 4030 -a 0 -x {10.0 9.0 2010 ------- null} - -t 2.29362 -s 10 -d 7 -p ack -e 40 -c 0 -i 4030 -a 0 -x {10.0 9.0 2010 ------- null} h -t 2.29362 -s 10 -d 7 -p ack -e 40 -c 0 -i 4030 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.29408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4017 -a 0 -x {9.0 10.0 2013 ------- null} - -t 2.29408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4017 -a 0 -x {9.0 10.0 2013 ------- null} h -t 2.29408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4017 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.2941 -s 0 -d 9 -p ack -e 40 -c 0 -i 4020 -a 0 -x {10.0 9.0 2005 ------- null} + -t 2.2941 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4031 -a 0 -x {9.0 10.0 2020 ------- null} - -t 2.2941 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4031 -a 0 -x {9.0 10.0 2020 ------- null} h -t 2.2941 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4031 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.29427 -s 0 -d 9 -p ack -e 40 -c 0 -i 4024 -a 0 -x {10.0 9.0 2007 ------- null} - -t 2.29427 -s 0 -d 9 -p ack -e 40 -c 0 -i 4024 -a 0 -x {10.0 9.0 2007 ------- null} h -t 2.29427 -s 0 -d 9 -p ack -e 40 -c 0 -i 4024 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.29443 -s 10 -d 7 -p ack -e 40 -c 0 -i 4028 -a 0 -x {10.0 9.0 2009 ------- null} + -t 2.29443 -s 7 -d 0 -p ack -e 40 -c 0 -i 4028 -a 0 -x {10.0 9.0 2009 ------- null} h -t 2.29443 -s 7 -d 8 -p ack -e 40 -c 0 -i 4028 -a 0 -x {10.0 9.0 2009 ------- null} r -t 2.2947 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4013 -a 0 -x {9.0 10.0 2011 ------- null} + -t 2.2947 -s 10 -d 7 -p ack -e 40 -c 0 -i 4032 -a 0 -x {10.0 9.0 2011 ------- null} - -t 2.2947 -s 10 -d 7 -p ack -e 40 -c 0 -i 4032 -a 0 -x {10.0 9.0 2011 ------- null} h -t 2.2947 -s 10 -d 7 -p ack -e 40 -c 0 -i 4032 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.29474 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4027 -a 0 -x {9.0 10.0 2018 ------- null} + -t 2.29474 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4027 -a 0 -x {9.0 10.0 2018 ------- null} h -t 2.29474 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4027 -a 0 -x {9.0 10.0 2018 ------- null} + -t 2.29517 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4019 -a 0 -x {9.0 10.0 2014 ------- null} - -t 2.29517 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4019 -a 0 -x {9.0 10.0 2014 ------- null} h -t 2.29517 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4019 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.2952 -s 0 -d 9 -p ack -e 40 -c 0 -i 4022 -a 0 -x {10.0 9.0 2006 ------- null} + -t 2.2952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4033 -a 0 -x {9.0 10.0 2021 ------- null} - -t 2.2952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4033 -a 0 -x {9.0 10.0 2021 ------- null} h -t 2.2952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4033 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.29536 -s 0 -d 9 -p ack -e 40 -c 0 -i 4026 -a 0 -x {10.0 9.0 2008 ------- null} - -t 2.29536 -s 0 -d 9 -p ack -e 40 -c 0 -i 4026 -a 0 -x {10.0 9.0 2008 ------- null} h -t 2.29536 -s 0 -d 9 -p ack -e 40 -c 0 -i 4026 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.29565 -s 10 -d 7 -p ack -e 40 -c 0 -i 4030 -a 0 -x {10.0 9.0 2010 ------- null} + -t 2.29565 -s 7 -d 0 -p ack -e 40 -c 0 -i 4030 -a 0 -x {10.0 9.0 2010 ------- null} h -t 2.29565 -s 7 -d 8 -p ack -e 40 -c 0 -i 4030 -a 0 -x {10.0 9.0 2010 ------- null} r -t 2.29579 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4015 -a 0 -x {9.0 10.0 2012 ------- null} + -t 2.29579 -s 10 -d 7 -p ack -e 40 -c 0 -i 4034 -a 0 -x {10.0 9.0 2012 ------- null} - -t 2.29579 -s 10 -d 7 -p ack -e 40 -c 0 -i 4034 -a 0 -x {10.0 9.0 2012 ------- null} h -t 2.29579 -s 10 -d 7 -p ack -e 40 -c 0 -i 4034 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.29584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4029 -a 0 -x {9.0 10.0 2019 ------- null} + -t 2.29584 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4029 -a 0 -x {9.0 10.0 2019 ------- null} h -t 2.29584 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4029 -a 0 -x {9.0 10.0 2019 ------- null} + -t 2.29626 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4021 -a 0 -x {9.0 10.0 2015 ------- null} - -t 2.29626 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4021 -a 0 -x {9.0 10.0 2015 ------- null} h -t 2.29626 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4021 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.2963 -s 0 -d 9 -p ack -e 40 -c 0 -i 4024 -a 0 -x {10.0 9.0 2007 ------- null} + -t 2.2963 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4035 -a 0 -x {9.0 10.0 2022 ------- null} - -t 2.2963 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4035 -a 0 -x {9.0 10.0 2022 ------- null} h -t 2.2963 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4035 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.29634 -s 0 -d 9 -p ack -e 40 -c 0 -i 4028 -a 0 -x {10.0 9.0 2009 ------- null} - -t 2.29634 -s 0 -d 9 -p ack -e 40 -c 0 -i 4028 -a 0 -x {10.0 9.0 2009 ------- null} h -t 2.29634 -s 0 -d 9 -p ack -e 40 -c 0 -i 4028 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.29674 -s 10 -d 7 -p ack -e 40 -c 0 -i 4032 -a 0 -x {10.0 9.0 2011 ------- null} + -t 2.29674 -s 7 -d 0 -p ack -e 40 -c 0 -i 4032 -a 0 -x {10.0 9.0 2011 ------- null} h -t 2.29674 -s 7 -d 8 -p ack -e 40 -c 0 -i 4032 -a 0 -x {10.0 9.0 2011 ------- null} r -t 2.29688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4017 -a 0 -x {9.0 10.0 2013 ------- null} + -t 2.29688 -s 10 -d 7 -p ack -e 40 -c 0 -i 4036 -a 0 -x {10.0 9.0 2013 ------- null} - -t 2.29688 -s 10 -d 7 -p ack -e 40 -c 0 -i 4036 -a 0 -x {10.0 9.0 2013 ------- null} h -t 2.29688 -s 10 -d 7 -p ack -e 40 -c 0 -i 4036 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.2969 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4031 -a 0 -x {9.0 10.0 2020 ------- null} + -t 2.2969 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4031 -a 0 -x {9.0 10.0 2020 ------- null} h -t 2.2969 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4031 -a 0 -x {9.0 10.0 2020 ------- null} + -t 2.29734 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4023 -a 0 -x {9.0 10.0 2016 ------- null} - -t 2.29734 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4023 -a 0 -x {9.0 10.0 2016 ------- null} h -t 2.29734 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4023 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.29739 -s 0 -d 9 -p ack -e 40 -c 0 -i 4026 -a 0 -x {10.0 9.0 2008 ------- null} + -t 2.29739 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4037 -a 0 -x {9.0 10.0 2023 ------- null} - -t 2.29739 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4037 -a 0 -x {9.0 10.0 2023 ------- null} h -t 2.29739 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4037 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.29747 -s 0 -d 9 -p ack -e 40 -c 0 -i 4030 -a 0 -x {10.0 9.0 2010 ------- null} - -t 2.29747 -s 0 -d 9 -p ack -e 40 -c 0 -i 4030 -a 0 -x {10.0 9.0 2010 ------- null} h -t 2.29747 -s 0 -d 9 -p ack -e 40 -c 0 -i 4030 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.29782 -s 10 -d 7 -p ack -e 40 -c 0 -i 4034 -a 0 -x {10.0 9.0 2012 ------- null} + -t 2.29782 -s 7 -d 0 -p ack -e 40 -c 0 -i 4034 -a 0 -x {10.0 9.0 2012 ------- null} h -t 2.29782 -s 7 -d 8 -p ack -e 40 -c 0 -i 4034 -a 0 -x {10.0 9.0 2012 ------- null} r -t 2.29797 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4019 -a 0 -x {9.0 10.0 2014 ------- null} + -t 2.29797 -s 10 -d 7 -p ack -e 40 -c 0 -i 4038 -a 0 -x {10.0 9.0 2014 ------- null} - -t 2.29797 -s 10 -d 7 -p ack -e 40 -c 0 -i 4038 -a 0 -x {10.0 9.0 2014 ------- null} h -t 2.29797 -s 10 -d 7 -p ack -e 40 -c 0 -i 4038 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.298 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4033 -a 0 -x {9.0 10.0 2021 ------- null} + -t 2.298 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4033 -a 0 -x {9.0 10.0 2021 ------- null} h -t 2.298 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4033 -a 0 -x {9.0 10.0 2021 ------- null} r -t 2.29837 -s 0 -d 9 -p ack -e 40 -c 0 -i 4028 -a 0 -x {10.0 9.0 2009 ------- null} + -t 2.29837 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4039 -a 0 -x {9.0 10.0 2024 ------- null} - -t 2.29837 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4039 -a 0 -x {9.0 10.0 2024 ------- null} h -t 2.29837 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4039 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.29843 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4025 -a 0 -x {9.0 10.0 2017 ------- null} - -t 2.29843 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4025 -a 0 -x {9.0 10.0 2017 ------- null} h -t 2.29843 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4025 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.29872 -s 0 -d 9 -p ack -e 40 -c 0 -i 4032 -a 0 -x {10.0 9.0 2011 ------- null} - -t 2.29872 -s 0 -d 9 -p ack -e 40 -c 0 -i 4032 -a 0 -x {10.0 9.0 2011 ------- null} h -t 2.29872 -s 0 -d 9 -p ack -e 40 -c 0 -i 4032 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.29891 -s 10 -d 7 -p ack -e 40 -c 0 -i 4036 -a 0 -x {10.0 9.0 2013 ------- null} + -t 2.29891 -s 7 -d 0 -p ack -e 40 -c 0 -i 4036 -a 0 -x {10.0 9.0 2013 ------- null} h -t 2.29891 -s 7 -d 8 -p ack -e 40 -c 0 -i 4036 -a 0 -x {10.0 9.0 2013 ------- null} r -t 2.29906 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4021 -a 0 -x {9.0 10.0 2015 ------- null} + -t 2.29906 -s 10 -d 7 -p ack -e 40 -c 0 -i 4040 -a 0 -x {10.0 9.0 2015 ------- null} - -t 2.29906 -s 10 -d 7 -p ack -e 40 -c 0 -i 4040 -a 0 -x {10.0 9.0 2015 ------- null} h -t 2.29906 -s 10 -d 7 -p ack -e 40 -c 0 -i 4040 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.2991 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4035 -a 0 -x {9.0 10.0 2022 ------- null} + -t 2.2991 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4035 -a 0 -x {9.0 10.0 2022 ------- null} h -t 2.2991 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4035 -a 0 -x {9.0 10.0 2022 ------- null} r -t 2.2995 -s 0 -d 9 -p ack -e 40 -c 0 -i 4030 -a 0 -x {10.0 9.0 2010 ------- null} + -t 2.2995 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4041 -a 0 -x {9.0 10.0 2025 ------- null} - -t 2.2995 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4041 -a 0 -x {9.0 10.0 2025 ------- null} h -t 2.2995 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4041 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.29965 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4027 -a 0 -x {9.0 10.0 2018 ------- null} - -t 2.29965 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4027 -a 0 -x {9.0 10.0 2018 ------- null} h -t 2.29965 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4027 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.29989 -s 0 -d 9 -p ack -e 40 -c 0 -i 4034 -a 0 -x {10.0 9.0 2012 ------- null} - -t 2.29989 -s 0 -d 9 -p ack -e 40 -c 0 -i 4034 -a 0 -x {10.0 9.0 2012 ------- null} h -t 2.29989 -s 0 -d 9 -p ack -e 40 -c 0 -i 4034 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.3 -s 10 -d 7 -p ack -e 40 -c 0 -i 4038 -a 0 -x {10.0 9.0 2014 ------- null} + -t 2.3 -s 7 -d 0 -p ack -e 40 -c 0 -i 4038 -a 0 -x {10.0 9.0 2014 ------- null} h -t 2.3 -s 7 -d 8 -p ack -e 40 -c 0 -i 4038 -a 0 -x {10.0 9.0 2014 ------- null} r -t 2.30014 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4023 -a 0 -x {9.0 10.0 2016 ------- null} + -t 2.30014 -s 10 -d 7 -p ack -e 40 -c 0 -i 4042 -a 0 -x {10.0 9.0 2016 ------- null} - -t 2.30014 -s 10 -d 7 -p ack -e 40 -c 0 -i 4042 -a 0 -x {10.0 9.0 2016 ------- null} h -t 2.30014 -s 10 -d 7 -p ack -e 40 -c 0 -i 4042 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.30019 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4037 -a 0 -x {9.0 10.0 2023 ------- null} + -t 2.30019 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4037 -a 0 -x {9.0 10.0 2023 ------- null} h -t 2.30019 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4037 -a 0 -x {9.0 10.0 2023 ------- null} + -t 2.30074 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4029 -a 0 -x {9.0 10.0 2019 ------- null} - -t 2.30074 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4029 -a 0 -x {9.0 10.0 2019 ------- null} h -t 2.30074 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4029 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.30075 -s 0 -d 9 -p ack -e 40 -c 0 -i 4032 -a 0 -x {10.0 9.0 2011 ------- null} + -t 2.30075 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4043 -a 0 -x {9.0 10.0 2026 ------- null} - -t 2.30075 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4043 -a 0 -x {9.0 10.0 2026 ------- null} h -t 2.30075 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4043 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.30088 -s 0 -d 9 -p ack -e 40 -c 0 -i 4036 -a 0 -x {10.0 9.0 2013 ------- null} - -t 2.30088 -s 0 -d 9 -p ack -e 40 -c 0 -i 4036 -a 0 -x {10.0 9.0 2013 ------- null} h -t 2.30088 -s 0 -d 9 -p ack -e 40 -c 0 -i 4036 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.30109 -s 10 -d 7 -p ack -e 40 -c 0 -i 4040 -a 0 -x {10.0 9.0 2015 ------- null} + -t 2.30109 -s 7 -d 0 -p ack -e 40 -c 0 -i 4040 -a 0 -x {10.0 9.0 2015 ------- null} h -t 2.30109 -s 7 -d 8 -p ack -e 40 -c 0 -i 4040 -a 0 -x {10.0 9.0 2015 ------- null} r -t 2.30117 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4039 -a 0 -x {9.0 10.0 2024 ------- null} + -t 2.30117 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4039 -a 0 -x {9.0 10.0 2024 ------- null} h -t 2.30117 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4039 -a 0 -x {9.0 10.0 2024 ------- null} r -t 2.30123 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4025 -a 0 -x {9.0 10.0 2017 ------- null} + -t 2.30123 -s 10 -d 7 -p ack -e 40 -c 0 -i 4044 -a 0 -x {10.0 9.0 2017 ------- null} - -t 2.30123 -s 10 -d 7 -p ack -e 40 -c 0 -i 4044 -a 0 -x {10.0 9.0 2017 ------- null} h -t 2.30123 -s 10 -d 7 -p ack -e 40 -c 0 -i 4044 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.30182 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4031 -a 0 -x {9.0 10.0 2020 ------- null} - -t 2.30182 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4031 -a 0 -x {9.0 10.0 2020 ------- null} h -t 2.30182 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4031 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.30189 -s 0 -d 9 -p ack -e 40 -c 0 -i 4038 -a 0 -x {10.0 9.0 2014 ------- null} - -t 2.30189 -s 0 -d 9 -p ack -e 40 -c 0 -i 4038 -a 0 -x {10.0 9.0 2014 ------- null} h -t 2.30189 -s 0 -d 9 -p ack -e 40 -c 0 -i 4038 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.30192 -s 0 -d 9 -p ack -e 40 -c 0 -i 4034 -a 0 -x {10.0 9.0 2012 ------- null} + -t 2.30192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4045 -a 0 -x {9.0 10.0 2027 ------- null} - -t 2.30192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4045 -a 0 -x {9.0 10.0 2027 ------- null} h -t 2.30192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4045 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.30218 -s 10 -d 7 -p ack -e 40 -c 0 -i 4042 -a 0 -x {10.0 9.0 2016 ------- null} + -t 2.30218 -s 7 -d 0 -p ack -e 40 -c 0 -i 4042 -a 0 -x {10.0 9.0 2016 ------- null} h -t 2.30218 -s 7 -d 8 -p ack -e 40 -c 0 -i 4042 -a 0 -x {10.0 9.0 2016 ------- null} r -t 2.3023 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4041 -a 0 -x {9.0 10.0 2025 ------- null} + -t 2.3023 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4041 -a 0 -x {9.0 10.0 2025 ------- null} h -t 2.3023 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4041 -a 0 -x {9.0 10.0 2025 ------- null} r -t 2.30245 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4027 -a 0 -x {9.0 10.0 2018 ------- null} + -t 2.30245 -s 10 -d 7 -p ack -e 40 -c 0 -i 4046 -a 0 -x {10.0 9.0 2018 ------- null} - -t 2.30245 -s 10 -d 7 -p ack -e 40 -c 0 -i 4046 -a 0 -x {10.0 9.0 2018 ------- null} h -t 2.30245 -s 10 -d 7 -p ack -e 40 -c 0 -i 4046 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.30291 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4033 -a 0 -x {9.0 10.0 2021 ------- null} - -t 2.30291 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4033 -a 0 -x {9.0 10.0 2021 ------- null} h -t 2.30291 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4033 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.30291 -s 0 -d 9 -p ack -e 40 -c 0 -i 4036 -a 0 -x {10.0 9.0 2013 ------- null} + -t 2.30291 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4047 -a 0 -x {9.0 10.0 2028 ------- null} - -t 2.30291 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4047 -a 0 -x {9.0 10.0 2028 ------- null} h -t 2.30291 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4047 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.30304 -s 0 -d 9 -p ack -e 40 -c 0 -i 4040 -a 0 -x {10.0 9.0 2015 ------- null} - -t 2.30304 -s 0 -d 9 -p ack -e 40 -c 0 -i 4040 -a 0 -x {10.0 9.0 2015 ------- null} h -t 2.30304 -s 0 -d 9 -p ack -e 40 -c 0 -i 4040 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.30326 -s 10 -d 7 -p ack -e 40 -c 0 -i 4044 -a 0 -x {10.0 9.0 2017 ------- null} + -t 2.30326 -s 7 -d 0 -p ack -e 40 -c 0 -i 4044 -a 0 -x {10.0 9.0 2017 ------- null} h -t 2.30326 -s 7 -d 8 -p ack -e 40 -c 0 -i 4044 -a 0 -x {10.0 9.0 2017 ------- null} r -t 2.30354 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4029 -a 0 -x {9.0 10.0 2019 ------- null} + -t 2.30354 -s 10 -d 7 -p ack -e 40 -c 0 -i 4048 -a 0 -x {10.0 9.0 2019 ------- null} - -t 2.30354 -s 10 -d 7 -p ack -e 40 -c 0 -i 4048 -a 0 -x {10.0 9.0 2019 ------- null} h -t 2.30354 -s 10 -d 7 -p ack -e 40 -c 0 -i 4048 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.30355 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4043 -a 0 -x {9.0 10.0 2026 ------- null} + -t 2.30355 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4043 -a 0 -x {9.0 10.0 2026 ------- null} h -t 2.30355 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4043 -a 0 -x {9.0 10.0 2026 ------- null} r -t 2.30392 -s 0 -d 9 -p ack -e 40 -c 0 -i 4038 -a 0 -x {10.0 9.0 2014 ------- null} + -t 2.30392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4049 -a 0 -x {9.0 10.0 2029 ------- null} - -t 2.30392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4049 -a 0 -x {9.0 10.0 2029 ------- null} h -t 2.30392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4049 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4035 -a 0 -x {9.0 10.0 2022 ------- null} - -t 2.304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4035 -a 0 -x {9.0 10.0 2022 ------- null} h -t 2.304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4035 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.30418 -s 0 -d 9 -p ack -e 40 -c 0 -i 4042 -a 0 -x {10.0 9.0 2016 ------- null} - -t 2.30418 -s 0 -d 9 -p ack -e 40 -c 0 -i 4042 -a 0 -x {10.0 9.0 2016 ------- null} h -t 2.30418 -s 0 -d 9 -p ack -e 40 -c 0 -i 4042 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.30448 -s 10 -d 7 -p ack -e 40 -c 0 -i 4046 -a 0 -x {10.0 9.0 2018 ------- null} + -t 2.30448 -s 7 -d 0 -p ack -e 40 -c 0 -i 4046 -a 0 -x {10.0 9.0 2018 ------- null} h -t 2.30448 -s 7 -d 8 -p ack -e 40 -c 0 -i 4046 -a 0 -x {10.0 9.0 2018 ------- null} r -t 2.30462 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4031 -a 0 -x {9.0 10.0 2020 ------- null} + -t 2.30462 -s 10 -d 7 -p ack -e 40 -c 0 -i 4050 -a 0 -x {10.0 9.0 2020 ------- null} - -t 2.30462 -s 10 -d 7 -p ack -e 40 -c 0 -i 4050 -a 0 -x {10.0 9.0 2020 ------- null} h -t 2.30462 -s 10 -d 7 -p ack -e 40 -c 0 -i 4050 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.30472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4045 -a 0 -x {9.0 10.0 2027 ------- null} + -t 2.30472 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4045 -a 0 -x {9.0 10.0 2027 ------- null} h -t 2.30472 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4045 -a 0 -x {9.0 10.0 2027 ------- null} r -t 2.30507 -s 0 -d 9 -p ack -e 40 -c 0 -i 4040 -a 0 -x {10.0 9.0 2015 ------- null} + -t 2.30507 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4051 -a 0 -x {9.0 10.0 2030 ------- null} - -t 2.30507 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4051 -a 0 -x {9.0 10.0 2030 ------- null} h -t 2.30507 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4051 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.30509 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4037 -a 0 -x {9.0 10.0 2023 ------- null} - -t 2.30509 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4037 -a 0 -x {9.0 10.0 2023 ------- null} h -t 2.30509 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4037 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.30523 -s 0 -d 9 -p ack -e 40 -c 0 -i 4044 -a 0 -x {10.0 9.0 2017 ------- null} - -t 2.30523 -s 0 -d 9 -p ack -e 40 -c 0 -i 4044 -a 0 -x {10.0 9.0 2017 ------- null} h -t 2.30523 -s 0 -d 9 -p ack -e 40 -c 0 -i 4044 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.30557 -s 10 -d 7 -p ack -e 40 -c 0 -i 4048 -a 0 -x {10.0 9.0 2019 ------- null} + -t 2.30557 -s 7 -d 0 -p ack -e 40 -c 0 -i 4048 -a 0 -x {10.0 9.0 2019 ------- null} h -t 2.30557 -s 7 -d 8 -p ack -e 40 -c 0 -i 4048 -a 0 -x {10.0 9.0 2019 ------- null} r -t 2.30571 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4033 -a 0 -x {9.0 10.0 2021 ------- null} + -t 2.30571 -s 10 -d 7 -p ack -e 40 -c 0 -i 4052 -a 0 -x {10.0 9.0 2021 ------- null} - -t 2.30571 -s 10 -d 7 -p ack -e 40 -c 0 -i 4052 -a 0 -x {10.0 9.0 2021 ------- null} h -t 2.30571 -s 10 -d 7 -p ack -e 40 -c 0 -i 4052 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.30571 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4047 -a 0 -x {9.0 10.0 2028 ------- null} + -t 2.30571 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4047 -a 0 -x {9.0 10.0 2028 ------- null} h -t 2.30571 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4047 -a 0 -x {9.0 10.0 2028 ------- null} + -t 2.30618 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4039 -a 0 -x {9.0 10.0 2024 ------- null} - -t 2.30618 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4039 -a 0 -x {9.0 10.0 2024 ------- null} h -t 2.30618 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4039 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.30621 -s 0 -d 9 -p ack -e 40 -c 0 -i 4042 -a 0 -x {10.0 9.0 2016 ------- null} + -t 2.30621 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4053 -a 0 -x {9.0 10.0 2031 ------- null} - -t 2.30621 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4053 -a 0 -x {9.0 10.0 2031 ------- null} h -t 2.30621 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4053 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.30637 -s 0 -d 9 -p ack -e 40 -c 0 -i 4046 -a 0 -x {10.0 9.0 2018 ------- null} - -t 2.30637 -s 0 -d 9 -p ack -e 40 -c 0 -i 4046 -a 0 -x {10.0 9.0 2018 ------- null} h -t 2.30637 -s 0 -d 9 -p ack -e 40 -c 0 -i 4046 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.30666 -s 10 -d 7 -p ack -e 40 -c 0 -i 4050 -a 0 -x {10.0 9.0 2020 ------- null} + -t 2.30666 -s 7 -d 0 -p ack -e 40 -c 0 -i 4050 -a 0 -x {10.0 9.0 2020 ------- null} h -t 2.30666 -s 7 -d 8 -p ack -e 40 -c 0 -i 4050 -a 0 -x {10.0 9.0 2020 ------- null} r -t 2.30672 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4049 -a 0 -x {9.0 10.0 2029 ------- null} + -t 2.30672 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4049 -a 0 -x {9.0 10.0 2029 ------- null} h -t 2.30672 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4049 -a 0 -x {9.0 10.0 2029 ------- null} r -t 2.3068 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4035 -a 0 -x {9.0 10.0 2022 ------- null} + -t 2.3068 -s 10 -d 7 -p ack -e 40 -c 0 -i 4054 -a 0 -x {10.0 9.0 2022 ------- null} - -t 2.3068 -s 10 -d 7 -p ack -e 40 -c 0 -i 4054 -a 0 -x {10.0 9.0 2022 ------- null} h -t 2.3068 -s 10 -d 7 -p ack -e 40 -c 0 -i 4054 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.30726 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4041 -a 0 -x {9.0 10.0 2025 ------- null} - -t 2.30726 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4041 -a 0 -x {9.0 10.0 2025 ------- null} h -t 2.30726 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4041 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.30726 -s 0 -d 9 -p ack -e 40 -c 0 -i 4044 -a 0 -x {10.0 9.0 2017 ------- null} + -t 2.30726 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4055 -a 0 -x {9.0 10.0 2032 ------- null} - -t 2.30726 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4055 -a 0 -x {9.0 10.0 2032 ------- null} h -t 2.30726 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4055 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.30733 -s 0 -d 9 -p ack -e 40 -c 0 -i 4048 -a 0 -x {10.0 9.0 2019 ------- null} - -t 2.30733 -s 0 -d 9 -p ack -e 40 -c 0 -i 4048 -a 0 -x {10.0 9.0 2019 ------- null} h -t 2.30733 -s 0 -d 9 -p ack -e 40 -c 0 -i 4048 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.30774 -s 10 -d 7 -p ack -e 40 -c 0 -i 4052 -a 0 -x {10.0 9.0 2021 ------- null} + -t 2.30774 -s 7 -d 0 -p ack -e 40 -c 0 -i 4052 -a 0 -x {10.0 9.0 2021 ------- null} h -t 2.30774 -s 7 -d 8 -p ack -e 40 -c 0 -i 4052 -a 0 -x {10.0 9.0 2021 ------- null} r -t 2.30787 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4051 -a 0 -x {9.0 10.0 2030 ------- null} + -t 2.30787 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4051 -a 0 -x {9.0 10.0 2030 ------- null} h -t 2.30787 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4051 -a 0 -x {9.0 10.0 2030 ------- null} r -t 2.30789 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4037 -a 0 -x {9.0 10.0 2023 ------- null} + -t 2.30789 -s 10 -d 7 -p ack -e 40 -c 0 -i 4056 -a 0 -x {10.0 9.0 2023 ------- null} - -t 2.30789 -s 10 -d 7 -p ack -e 40 -c 0 -i 4056 -a 0 -x {10.0 9.0 2023 ------- null} h -t 2.30789 -s 10 -d 7 -p ack -e 40 -c 0 -i 4056 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.30835 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4043 -a 0 -x {9.0 10.0 2026 ------- null} - -t 2.30835 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4043 -a 0 -x {9.0 10.0 2026 ------- null} h -t 2.30835 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4043 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.3084 -s 0 -d 9 -p ack -e 40 -c 0 -i 4046 -a 0 -x {10.0 9.0 2018 ------- null} + -t 2.3084 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4057 -a 0 -x {9.0 10.0 2033 ------- null} - -t 2.3084 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4057 -a 0 -x {9.0 10.0 2033 ------- null} h -t 2.3084 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4057 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.30851 -s 0 -d 9 -p ack -e 40 -c 0 -i 4050 -a 0 -x {10.0 9.0 2020 ------- null} - -t 2.30851 -s 0 -d 9 -p ack -e 40 -c 0 -i 4050 -a 0 -x {10.0 9.0 2020 ------- null} h -t 2.30851 -s 0 -d 9 -p ack -e 40 -c 0 -i 4050 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.30883 -s 10 -d 7 -p ack -e 40 -c 0 -i 4054 -a 0 -x {10.0 9.0 2022 ------- null} + -t 2.30883 -s 7 -d 0 -p ack -e 40 -c 0 -i 4054 -a 0 -x {10.0 9.0 2022 ------- null} h -t 2.30883 -s 7 -d 8 -p ack -e 40 -c 0 -i 4054 -a 0 -x {10.0 9.0 2022 ------- null} r -t 2.30898 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4039 -a 0 -x {9.0 10.0 2024 ------- null} + -t 2.30898 -s 10 -d 7 -p ack -e 40 -c 0 -i 4058 -a 0 -x {10.0 9.0 2024 ------- null} - -t 2.30898 -s 10 -d 7 -p ack -e 40 -c 0 -i 4058 -a 0 -x {10.0 9.0 2024 ------- null} h -t 2.30898 -s 10 -d 7 -p ack -e 40 -c 0 -i 4058 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.30901 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4053 -a 0 -x {9.0 10.0 2031 ------- null} + -t 2.30901 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4053 -a 0 -x {9.0 10.0 2031 ------- null} h -t 2.30901 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4053 -a 0 -x {9.0 10.0 2031 ------- null} r -t 2.30936 -s 0 -d 9 -p ack -e 40 -c 0 -i 4048 -a 0 -x {10.0 9.0 2019 ------- null} + -t 2.30936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4059 -a 0 -x {9.0 10.0 2034 ------- null} - -t 2.30936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4059 -a 0 -x {9.0 10.0 2034 ------- null} h -t 2.30936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4059 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.30944 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4045 -a 0 -x {9.0 10.0 2027 ------- null} - -t 2.30944 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4045 -a 0 -x {9.0 10.0 2027 ------- null} h -t 2.30944 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4045 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.30955 -s 0 -d 9 -p ack -e 40 -c 0 -i 4052 -a 0 -x {10.0 9.0 2021 ------- null} - -t 2.30955 -s 0 -d 9 -p ack -e 40 -c 0 -i 4052 -a 0 -x {10.0 9.0 2021 ------- null} h -t 2.30955 -s 0 -d 9 -p ack -e 40 -c 0 -i 4052 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.30992 -s 10 -d 7 -p ack -e 40 -c 0 -i 4056 -a 0 -x {10.0 9.0 2023 ------- null} + -t 2.30992 -s 7 -d 0 -p ack -e 40 -c 0 -i 4056 -a 0 -x {10.0 9.0 2023 ------- null} h -t 2.30992 -s 7 -d 8 -p ack -e 40 -c 0 -i 4056 -a 0 -x {10.0 9.0 2023 ------- null} r -t 2.31006 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4041 -a 0 -x {9.0 10.0 2025 ------- null} + -t 2.31006 -s 10 -d 7 -p ack -e 40 -c 0 -i 4060 -a 0 -x {10.0 9.0 2025 ------- null} - -t 2.31006 -s 10 -d 7 -p ack -e 40 -c 0 -i 4060 -a 0 -x {10.0 9.0 2025 ------- null} h -t 2.31006 -s 10 -d 7 -p ack -e 40 -c 0 -i 4060 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.31006 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4055 -a 0 -x {9.0 10.0 2032 ------- null} + -t 2.31006 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4055 -a 0 -x {9.0 10.0 2032 ------- null} h -t 2.31006 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4055 -a 0 -x {9.0 10.0 2032 ------- null} + -t 2.31053 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4047 -a 0 -x {9.0 10.0 2028 ------- null} - -t 2.31053 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4047 -a 0 -x {9.0 10.0 2028 ------- null} h -t 2.31053 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4047 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.31054 -s 0 -d 9 -p ack -e 40 -c 0 -i 4050 -a 0 -x {10.0 9.0 2020 ------- null} + -t 2.31054 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4061 -a 0 -x {9.0 10.0 2035 ------- null} - -t 2.31054 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4061 -a 0 -x {9.0 10.0 2035 ------- null} h -t 2.31054 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4061 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.3107 -s 0 -d 9 -p ack -e 40 -c 0 -i 4054 -a 0 -x {10.0 9.0 2022 ------- null} - -t 2.3107 -s 0 -d 9 -p ack -e 40 -c 0 -i 4054 -a 0 -x {10.0 9.0 2022 ------- null} h -t 2.3107 -s 0 -d 9 -p ack -e 40 -c 0 -i 4054 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.31101 -s 10 -d 7 -p ack -e 40 -c 0 -i 4058 -a 0 -x {10.0 9.0 2024 ------- null} + -t 2.31101 -s 7 -d 0 -p ack -e 40 -c 0 -i 4058 -a 0 -x {10.0 9.0 2024 ------- null} h -t 2.31101 -s 7 -d 8 -p ack -e 40 -c 0 -i 4058 -a 0 -x {10.0 9.0 2024 ------- null} r -t 2.31115 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4043 -a 0 -x {9.0 10.0 2026 ------- null} + -t 2.31115 -s 10 -d 7 -p ack -e 40 -c 0 -i 4062 -a 0 -x {10.0 9.0 2026 ------- null} - -t 2.31115 -s 10 -d 7 -p ack -e 40 -c 0 -i 4062 -a 0 -x {10.0 9.0 2026 ------- null} h -t 2.31115 -s 10 -d 7 -p ack -e 40 -c 0 -i 4062 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.3112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4057 -a 0 -x {9.0 10.0 2033 ------- null} + -t 2.3112 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4057 -a 0 -x {9.0 10.0 2033 ------- null} h -t 2.3112 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4057 -a 0 -x {9.0 10.0 2033 ------- null} r -t 2.31158 -s 0 -d 9 -p ack -e 40 -c 0 -i 4052 -a 0 -x {10.0 9.0 2021 ------- null} + -t 2.31158 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4063 -a 0 -x {9.0 10.0 2036 ------- null} - -t 2.31158 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4063 -a 0 -x {9.0 10.0 2036 ------- null} h -t 2.31158 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4063 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.31162 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4049 -a 0 -x {9.0 10.0 2029 ------- null} - -t 2.31162 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4049 -a 0 -x {9.0 10.0 2029 ------- null} h -t 2.31162 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4049 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.31192 -s 0 -d 9 -p ack -e 40 -c 0 -i 4056 -a 0 -x {10.0 9.0 2023 ------- null} - -t 2.31192 -s 0 -d 9 -p ack -e 40 -c 0 -i 4056 -a 0 -x {10.0 9.0 2023 ------- null} h -t 2.31192 -s 0 -d 9 -p ack -e 40 -c 0 -i 4056 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.3121 -s 10 -d 7 -p ack -e 40 -c 0 -i 4060 -a 0 -x {10.0 9.0 2025 ------- null} + -t 2.3121 -s 7 -d 0 -p ack -e 40 -c 0 -i 4060 -a 0 -x {10.0 9.0 2025 ------- null} h -t 2.3121 -s 7 -d 8 -p ack -e 40 -c 0 -i 4060 -a 0 -x {10.0 9.0 2025 ------- null} r -t 2.31216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4059 -a 0 -x {9.0 10.0 2034 ------- null} + -t 2.31216 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4059 -a 0 -x {9.0 10.0 2034 ------- null} h -t 2.31216 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4059 -a 0 -x {9.0 10.0 2034 ------- null} r -t 2.31224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4045 -a 0 -x {9.0 10.0 2027 ------- null} + -t 2.31224 -s 10 -d 7 -p ack -e 40 -c 0 -i 4064 -a 0 -x {10.0 9.0 2027 ------- null} - -t 2.31224 -s 10 -d 7 -p ack -e 40 -c 0 -i 4064 -a 0 -x {10.0 9.0 2027 ------- null} h -t 2.31224 -s 10 -d 7 -p ack -e 40 -c 0 -i 4064 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.31274 -s 0 -d 9 -p ack -e 40 -c 0 -i 4054 -a 0 -x {10.0 9.0 2022 ------- null} + -t 2.31274 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4065 -a 0 -x {9.0 10.0 2037 ------- null} - -t 2.31274 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4065 -a 0 -x {9.0 10.0 2037 ------- null} h -t 2.31274 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4065 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.31286 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4051 -a 0 -x {9.0 10.0 2030 ------- null} - -t 2.31286 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4051 -a 0 -x {9.0 10.0 2030 ------- null} h -t 2.31286 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4051 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.31293 -s 0 -d 9 -p ack -e 40 -c 0 -i 4058 -a 0 -x {10.0 9.0 2024 ------- null} - -t 2.31293 -s 0 -d 9 -p ack -e 40 -c 0 -i 4058 -a 0 -x {10.0 9.0 2024 ------- null} h -t 2.31293 -s 0 -d 9 -p ack -e 40 -c 0 -i 4058 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.31318 -s 10 -d 7 -p ack -e 40 -c 0 -i 4062 -a 0 -x {10.0 9.0 2026 ------- null} + -t 2.31318 -s 7 -d 0 -p ack -e 40 -c 0 -i 4062 -a 0 -x {10.0 9.0 2026 ------- null} h -t 2.31318 -s 7 -d 8 -p ack -e 40 -c 0 -i 4062 -a 0 -x {10.0 9.0 2026 ------- null} r -t 2.31333 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4047 -a 0 -x {9.0 10.0 2028 ------- null} + -t 2.31333 -s 10 -d 7 -p ack -e 40 -c 0 -i 4066 -a 0 -x {10.0 9.0 2028 ------- null} - -t 2.31333 -s 10 -d 7 -p ack -e 40 -c 0 -i 4066 -a 0 -x {10.0 9.0 2028 ------- null} h -t 2.31333 -s 10 -d 7 -p ack -e 40 -c 0 -i 4066 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.31334 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4061 -a 0 -x {9.0 10.0 2035 ------- null} + -t 2.31334 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4061 -a 0 -x {9.0 10.0 2035 ------- null} h -t 2.31334 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4061 -a 0 -x {9.0 10.0 2035 ------- null} r -t 2.31395 -s 0 -d 9 -p ack -e 40 -c 0 -i 4056 -a 0 -x {10.0 9.0 2023 ------- null} + -t 2.31395 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4067 -a 0 -x {9.0 10.0 2038 ------- null} - -t 2.31395 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4067 -a 0 -x {9.0 10.0 2038 ------- null} h -t 2.31395 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4067 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.31395 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4053 -a 0 -x {9.0 10.0 2031 ------- null} - -t 2.31395 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4053 -a 0 -x {9.0 10.0 2031 ------- null} h -t 2.31395 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4053 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.31413 -s 0 -d 9 -p ack -e 40 -c 0 -i 4060 -a 0 -x {10.0 9.0 2025 ------- null} - -t 2.31413 -s 0 -d 9 -p ack -e 40 -c 0 -i 4060 -a 0 -x {10.0 9.0 2025 ------- null} h -t 2.31413 -s 0 -d 9 -p ack -e 40 -c 0 -i 4060 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.31427 -s 10 -d 7 -p ack -e 40 -c 0 -i 4064 -a 0 -x {10.0 9.0 2027 ------- null} + -t 2.31427 -s 7 -d 0 -p ack -e 40 -c 0 -i 4064 -a 0 -x {10.0 9.0 2027 ------- null} h -t 2.31427 -s 7 -d 8 -p ack -e 40 -c 0 -i 4064 -a 0 -x {10.0 9.0 2027 ------- null} r -t 2.31438 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4063 -a 0 -x {9.0 10.0 2036 ------- null} + -t 2.31438 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4063 -a 0 -x {9.0 10.0 2036 ------- null} h -t 2.31438 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4063 -a 0 -x {9.0 10.0 2036 ------- null} r -t 2.31442 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4049 -a 0 -x {9.0 10.0 2029 ------- null} + -t 2.31442 -s 10 -d 7 -p ack -e 40 -c 0 -i 4068 -a 0 -x {10.0 9.0 2029 ------- null} - -t 2.31442 -s 10 -d 7 -p ack -e 40 -c 0 -i 4068 -a 0 -x {10.0 9.0 2029 ------- null} h -t 2.31442 -s 10 -d 7 -p ack -e 40 -c 0 -i 4068 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.31496 -s 0 -d 9 -p ack -e 40 -c 0 -i 4058 -a 0 -x {10.0 9.0 2024 ------- null} + -t 2.31496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4069 -a 0 -x {9.0 10.0 2039 ------- null} - -t 2.31496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4069 -a 0 -x {9.0 10.0 2039 ------- null} h -t 2.31496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4069 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.31504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4055 -a 0 -x {9.0 10.0 2032 ------- null} - -t 2.31504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4055 -a 0 -x {9.0 10.0 2032 ------- null} h -t 2.31504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4055 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.31517 -s 0 -d 9 -p ack -e 40 -c 0 -i 4062 -a 0 -x {10.0 9.0 2026 ------- null} - -t 2.31517 -s 0 -d 9 -p ack -e 40 -c 0 -i 4062 -a 0 -x {10.0 9.0 2026 ------- null} h -t 2.31517 -s 0 -d 9 -p ack -e 40 -c 0 -i 4062 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.31536 -s 10 -d 7 -p ack -e 40 -c 0 -i 4066 -a 0 -x {10.0 9.0 2028 ------- null} + -t 2.31536 -s 7 -d 0 -p ack -e 40 -c 0 -i 4066 -a 0 -x {10.0 9.0 2028 ------- null} h -t 2.31536 -s 7 -d 8 -p ack -e 40 -c 0 -i 4066 -a 0 -x {10.0 9.0 2028 ------- null} r -t 2.31554 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4065 -a 0 -x {9.0 10.0 2037 ------- null} + -t 2.31554 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4065 -a 0 -x {9.0 10.0 2037 ------- null} h -t 2.31554 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4065 -a 0 -x {9.0 10.0 2037 ------- null} r -t 2.31566 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4051 -a 0 -x {9.0 10.0 2030 ------- null} + -t 2.31566 -s 10 -d 7 -p ack -e 40 -c 0 -i 4070 -a 0 -x {10.0 9.0 2030 ------- null} - -t 2.31566 -s 10 -d 7 -p ack -e 40 -c 0 -i 4070 -a 0 -x {10.0 9.0 2030 ------- null} h -t 2.31566 -s 10 -d 7 -p ack -e 40 -c 0 -i 4070 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.31613 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4057 -a 0 -x {9.0 10.0 2033 ------- null} - -t 2.31613 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4057 -a 0 -x {9.0 10.0 2033 ------- null} h -t 2.31613 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4057 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.31616 -s 0 -d 9 -p ack -e 40 -c 0 -i 4060 -a 0 -x {10.0 9.0 2025 ------- null} + -t 2.31616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4071 -a 0 -x {9.0 10.0 2040 ------- null} - -t 2.31616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4071 -a 0 -x {9.0 10.0 2040 ------- null} h -t 2.31616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4071 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.31634 -s 0 -d 9 -p ack -e 40 -c 0 -i 4064 -a 0 -x {10.0 9.0 2027 ------- null} - -t 2.31634 -s 0 -d 9 -p ack -e 40 -c 0 -i 4064 -a 0 -x {10.0 9.0 2027 ------- null} h -t 2.31634 -s 0 -d 9 -p ack -e 40 -c 0 -i 4064 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.31645 -s 10 -d 7 -p ack -e 40 -c 0 -i 4068 -a 0 -x {10.0 9.0 2029 ------- null} + -t 2.31645 -s 7 -d 0 -p ack -e 40 -c 0 -i 4068 -a 0 -x {10.0 9.0 2029 ------- null} h -t 2.31645 -s 7 -d 8 -p ack -e 40 -c 0 -i 4068 -a 0 -x {10.0 9.0 2029 ------- null} r -t 2.31675 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4067 -a 0 -x {9.0 10.0 2038 ------- null} + -t 2.31675 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4067 -a 0 -x {9.0 10.0 2038 ------- null} h -t 2.31675 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4067 -a 0 -x {9.0 10.0 2038 ------- null} r -t 2.31675 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4053 -a 0 -x {9.0 10.0 2031 ------- null} + -t 2.31675 -s 10 -d 7 -p ack -e 40 -c 0 -i 4072 -a 0 -x {10.0 9.0 2031 ------- null} - -t 2.31675 -s 10 -d 7 -p ack -e 40 -c 0 -i 4072 -a 0 -x {10.0 9.0 2031 ------- null} h -t 2.31675 -s 10 -d 7 -p ack -e 40 -c 0 -i 4072 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.3172 -s 0 -d 9 -p ack -e 40 -c 0 -i 4062 -a 0 -x {10.0 9.0 2026 ------- null} + -t 2.3172 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4073 -a 0 -x {9.0 10.0 2041 ------- null} - -t 2.3172 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4073 -a 0 -x {9.0 10.0 2041 ------- null} h -t 2.3172 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4073 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.31722 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4059 -a 0 -x {9.0 10.0 2034 ------- null} - -t 2.31722 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4059 -a 0 -x {9.0 10.0 2034 ------- null} h -t 2.31722 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4059 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.31731 -s 0 -d 9 -p ack -e 40 -c 0 -i 4066 -a 0 -x {10.0 9.0 2028 ------- null} - -t 2.31731 -s 0 -d 9 -p ack -e 40 -c 0 -i 4066 -a 0 -x {10.0 9.0 2028 ------- null} h -t 2.31731 -s 0 -d 9 -p ack -e 40 -c 0 -i 4066 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.3177 -s 10 -d 7 -p ack -e 40 -c 0 -i 4070 -a 0 -x {10.0 9.0 2030 ------- null} + -t 2.3177 -s 7 -d 0 -p ack -e 40 -c 0 -i 4070 -a 0 -x {10.0 9.0 2030 ------- null} h -t 2.3177 -s 7 -d 8 -p ack -e 40 -c 0 -i 4070 -a 0 -x {10.0 9.0 2030 ------- null} r -t 2.31776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4069 -a 0 -x {9.0 10.0 2039 ------- null} + -t 2.31776 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4069 -a 0 -x {9.0 10.0 2039 ------- null} h -t 2.31776 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4069 -a 0 -x {9.0 10.0 2039 ------- null} r -t 2.31784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4055 -a 0 -x {9.0 10.0 2032 ------- null} + -t 2.31784 -s 10 -d 7 -p ack -e 40 -c 0 -i 4074 -a 0 -x {10.0 9.0 2032 ------- null} - -t 2.31784 -s 10 -d 7 -p ack -e 40 -c 0 -i 4074 -a 0 -x {10.0 9.0 2032 ------- null} h -t 2.31784 -s 10 -d 7 -p ack -e 40 -c 0 -i 4074 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.3183 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4061 -a 0 -x {9.0 10.0 2035 ------- null} - -t 2.3183 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4061 -a 0 -x {9.0 10.0 2035 ------- null} h -t 2.3183 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4061 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.31837 -s 0 -d 9 -p ack -e 40 -c 0 -i 4064 -a 0 -x {10.0 9.0 2027 ------- null} + -t 2.31837 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4075 -a 0 -x {9.0 10.0 2042 ------- null} - -t 2.31837 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4075 -a 0 -x {9.0 10.0 2042 ------- null} h -t 2.31837 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4075 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.31853 -s 0 -d 9 -p ack -e 40 -c 0 -i 4068 -a 0 -x {10.0 9.0 2029 ------- null} - -t 2.31853 -s 0 -d 9 -p ack -e 40 -c 0 -i 4068 -a 0 -x {10.0 9.0 2029 ------- null} h -t 2.31853 -s 0 -d 9 -p ack -e 40 -c 0 -i 4068 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.31878 -s 10 -d 7 -p ack -e 40 -c 0 -i 4072 -a 0 -x {10.0 9.0 2031 ------- null} + -t 2.31878 -s 7 -d 0 -p ack -e 40 -c 0 -i 4072 -a 0 -x {10.0 9.0 2031 ------- null} h -t 2.31878 -s 7 -d 8 -p ack -e 40 -c 0 -i 4072 -a 0 -x {10.0 9.0 2031 ------- null} r -t 2.31893 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4057 -a 0 -x {9.0 10.0 2033 ------- null} + -t 2.31893 -s 10 -d 7 -p ack -e 40 -c 0 -i 4076 -a 0 -x {10.0 9.0 2033 ------- null} - -t 2.31893 -s 10 -d 7 -p ack -e 40 -c 0 -i 4076 -a 0 -x {10.0 9.0 2033 ------- null} h -t 2.31893 -s 10 -d 7 -p ack -e 40 -c 0 -i 4076 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.31896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4071 -a 0 -x {9.0 10.0 2040 ------- null} + -t 2.31896 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4071 -a 0 -x {9.0 10.0 2040 ------- null} h -t 2.31896 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4071 -a 0 -x {9.0 10.0 2040 ------- null} r -t 2.31934 -s 0 -d 9 -p ack -e 40 -c 0 -i 4066 -a 0 -x {10.0 9.0 2028 ------- null} + -t 2.31934 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4077 -a 0 -x {9.0 10.0 2043 ------- null} - -t 2.31934 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4077 -a 0 -x {9.0 10.0 2043 ------- null} h -t 2.31934 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4077 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.31939 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4063 -a 0 -x {9.0 10.0 2036 ------- null} - -t 2.31939 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4063 -a 0 -x {9.0 10.0 2036 ------- null} h -t 2.31939 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4063 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.31966 -s 0 -d 9 -p ack -e 40 -c 0 -i 4070 -a 0 -x {10.0 9.0 2030 ------- null} - -t 2.31966 -s 0 -d 9 -p ack -e 40 -c 0 -i 4070 -a 0 -x {10.0 9.0 2030 ------- null} h -t 2.31966 -s 0 -d 9 -p ack -e 40 -c 0 -i 4070 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.31987 -s 10 -d 7 -p ack -e 40 -c 0 -i 4074 -a 0 -x {10.0 9.0 2032 ------- null} + -t 2.31987 -s 7 -d 0 -p ack -e 40 -c 0 -i 4074 -a 0 -x {10.0 9.0 2032 ------- null} h -t 2.31987 -s 7 -d 8 -p ack -e 40 -c 0 -i 4074 -a 0 -x {10.0 9.0 2032 ------- null} r -t 2.32 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4073 -a 0 -x {9.0 10.0 2041 ------- null} + -t 2.32 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4073 -a 0 -x {9.0 10.0 2041 ------- null} h -t 2.32 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4073 -a 0 -x {9.0 10.0 2041 ------- null} r -t 2.32002 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4059 -a 0 -x {9.0 10.0 2034 ------- null} + -t 2.32002 -s 10 -d 7 -p ack -e 40 -c 0 -i 4078 -a 0 -x {10.0 9.0 2034 ------- null} - -t 2.32002 -s 10 -d 7 -p ack -e 40 -c 0 -i 4078 -a 0 -x {10.0 9.0 2034 ------- null} h -t 2.32002 -s 10 -d 7 -p ack -e 40 -c 0 -i 4078 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.32056 -s 0 -d 9 -p ack -e 40 -c 0 -i 4068 -a 0 -x {10.0 9.0 2029 ------- null} + -t 2.32056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4079 -a 0 -x {9.0 10.0 2044 ------- null} - -t 2.32056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4079 -a 0 -x {9.0 10.0 2044 ------- null} h -t 2.32056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4079 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.32059 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4065 -a 0 -x {9.0 10.0 2037 ------- null} - -t 2.32059 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4065 -a 0 -x {9.0 10.0 2037 ------- null} h -t 2.32059 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4065 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.32085 -s 0 -d 9 -p ack -e 40 -c 0 -i 4072 -a 0 -x {10.0 9.0 2031 ------- null} - -t 2.32085 -s 0 -d 9 -p ack -e 40 -c 0 -i 4072 -a 0 -x {10.0 9.0 2031 ------- null} h -t 2.32085 -s 0 -d 9 -p ack -e 40 -c 0 -i 4072 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.32096 -s 10 -d 7 -p ack -e 40 -c 0 -i 4076 -a 0 -x {10.0 9.0 2033 ------- null} + -t 2.32096 -s 7 -d 0 -p ack -e 40 -c 0 -i 4076 -a 0 -x {10.0 9.0 2033 ------- null} h -t 2.32096 -s 7 -d 8 -p ack -e 40 -c 0 -i 4076 -a 0 -x {10.0 9.0 2033 ------- null} r -t 2.3211 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4061 -a 0 -x {9.0 10.0 2035 ------- null} + -t 2.3211 -s 10 -d 7 -p ack -e 40 -c 0 -i 4080 -a 0 -x {10.0 9.0 2035 ------- null} - -t 2.3211 -s 10 -d 7 -p ack -e 40 -c 0 -i 4080 -a 0 -x {10.0 9.0 2035 ------- null} h -t 2.3211 -s 10 -d 7 -p ack -e 40 -c 0 -i 4080 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.32117 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4075 -a 0 -x {9.0 10.0 2042 ------- null} + -t 2.32117 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4075 -a 0 -x {9.0 10.0 2042 ------- null} h -t 2.32117 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4075 -a 0 -x {9.0 10.0 2042 ------- null} r -t 2.3217 -s 0 -d 9 -p ack -e 40 -c 0 -i 4070 -a 0 -x {10.0 9.0 2030 ------- null} + -t 2.3217 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4081 -a 0 -x {9.0 10.0 2045 ------- null} - -t 2.3217 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4081 -a 0 -x {9.0 10.0 2045 ------- null} h -t 2.3217 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4081 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.32179 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4067 -a 0 -x {9.0 10.0 2038 ------- null} - -t 2.32179 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4067 -a 0 -x {9.0 10.0 2038 ------- null} h -t 2.32179 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4067 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.32205 -s 10 -d 7 -p ack -e 40 -c 0 -i 4078 -a 0 -x {10.0 9.0 2034 ------- null} + -t 2.32205 -s 7 -d 0 -p ack -e 40 -c 0 -i 4078 -a 0 -x {10.0 9.0 2034 ------- null} h -t 2.32205 -s 7 -d 8 -p ack -e 40 -c 0 -i 4078 -a 0 -x {10.0 9.0 2034 ------- null} + -t 2.32206 -s 0 -d 9 -p ack -e 40 -c 0 -i 4074 -a 0 -x {10.0 9.0 2032 ------- null} - -t 2.32206 -s 0 -d 9 -p ack -e 40 -c 0 -i 4074 -a 0 -x {10.0 9.0 2032 ------- null} h -t 2.32206 -s 0 -d 9 -p ack -e 40 -c 0 -i 4074 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.32214 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4077 -a 0 -x {9.0 10.0 2043 ------- null} + -t 2.32214 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4077 -a 0 -x {9.0 10.0 2043 ------- null} h -t 2.32214 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4077 -a 0 -x {9.0 10.0 2043 ------- null} r -t 2.32219 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4063 -a 0 -x {9.0 10.0 2036 ------- null} + -t 2.32219 -s 10 -d 7 -p ack -e 40 -c 0 -i 4082 -a 0 -x {10.0 9.0 2036 ------- null} - -t 2.32219 -s 10 -d 7 -p ack -e 40 -c 0 -i 4082 -a 0 -x {10.0 9.0 2036 ------- null} h -t 2.32219 -s 10 -d 7 -p ack -e 40 -c 0 -i 4082 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.32288 -s 0 -d 9 -p ack -e 40 -c 0 -i 4072 -a 0 -x {10.0 9.0 2031 ------- null} + -t 2.32288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4083 -a 0 -x {9.0 10.0 2046 ------- null} - -t 2.32288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4083 -a 0 -x {9.0 10.0 2046 ------- null} h -t 2.32288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4083 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.32291 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4069 -a 0 -x {9.0 10.0 2039 ------- null} - -t 2.32291 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4069 -a 0 -x {9.0 10.0 2039 ------- null} h -t 2.32291 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4069 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.32314 -s 10 -d 7 -p ack -e 40 -c 0 -i 4080 -a 0 -x {10.0 9.0 2035 ------- null} + -t 2.32314 -s 7 -d 0 -p ack -e 40 -c 0 -i 4080 -a 0 -x {10.0 9.0 2035 ------- null} h -t 2.32314 -s 7 -d 8 -p ack -e 40 -c 0 -i 4080 -a 0 -x {10.0 9.0 2035 ------- null} + -t 2.3232 -s 0 -d 9 -p ack -e 40 -c 0 -i 4076 -a 0 -x {10.0 9.0 2033 ------- null} - -t 2.3232 -s 0 -d 9 -p ack -e 40 -c 0 -i 4076 -a 0 -x {10.0 9.0 2033 ------- null} h -t 2.3232 -s 0 -d 9 -p ack -e 40 -c 0 -i 4076 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.32336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4079 -a 0 -x {9.0 10.0 2044 ------- null} + -t 2.32336 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4079 -a 0 -x {9.0 10.0 2044 ------- null} h -t 2.32336 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4079 -a 0 -x {9.0 10.0 2044 ------- null} r -t 2.32339 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4065 -a 0 -x {9.0 10.0 2037 ------- null} + -t 2.32339 -s 10 -d 7 -p ack -e 40 -c 0 -i 4084 -a 0 -x {10.0 9.0 2037 ------- null} - -t 2.32339 -s 10 -d 7 -p ack -e 40 -c 0 -i 4084 -a 0 -x {10.0 9.0 2037 ------- null} h -t 2.32339 -s 10 -d 7 -p ack -e 40 -c 0 -i 4084 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.3241 -s 0 -d 9 -p ack -e 40 -c 0 -i 4074 -a 0 -x {10.0 9.0 2032 ------- null} + -t 2.3241 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4085 -a 0 -x {9.0 10.0 2047 ------- null} - -t 2.3241 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4085 -a 0 -x {9.0 10.0 2047 ------- null} h -t 2.3241 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4085 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.32422 -s 10 -d 7 -p ack -e 40 -c 0 -i 4082 -a 0 -x {10.0 9.0 2036 ------- null} + -t 2.32422 -s 7 -d 0 -p ack -e 40 -c 0 -i 4082 -a 0 -x {10.0 9.0 2036 ------- null} h -t 2.32422 -s 7 -d 8 -p ack -e 40 -c 0 -i 4082 -a 0 -x {10.0 9.0 2036 ------- null} + -t 2.32422 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4071 -a 0 -x {9.0 10.0 2040 ------- null} - -t 2.32422 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4071 -a 0 -x {9.0 10.0 2040 ------- null} h -t 2.32422 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4071 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.32448 -s 0 -d 9 -p ack -e 40 -c 0 -i 4078 -a 0 -x {10.0 9.0 2034 ------- null} - -t 2.32448 -s 0 -d 9 -p ack -e 40 -c 0 -i 4078 -a 0 -x {10.0 9.0 2034 ------- null} h -t 2.32448 -s 0 -d 9 -p ack -e 40 -c 0 -i 4078 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.3245 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4081 -a 0 -x {9.0 10.0 2045 ------- null} + -t 2.3245 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4081 -a 0 -x {9.0 10.0 2045 ------- null} h -t 2.3245 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4081 -a 0 -x {9.0 10.0 2045 ------- null} r -t 2.32459 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4067 -a 0 -x {9.0 10.0 2038 ------- null} + -t 2.32459 -s 10 -d 7 -p ack -e 40 -c 0 -i 4086 -a 0 -x {10.0 9.0 2038 ------- null} - -t 2.32459 -s 10 -d 7 -p ack -e 40 -c 0 -i 4086 -a 0 -x {10.0 9.0 2038 ------- null} h -t 2.32459 -s 10 -d 7 -p ack -e 40 -c 0 -i 4086 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.32523 -s 0 -d 9 -p ack -e 40 -c 0 -i 4076 -a 0 -x {10.0 9.0 2033 ------- null} + -t 2.32523 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4087 -a 0 -x {9.0 10.0 2048 ------- null} - -t 2.32523 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4087 -a 0 -x {9.0 10.0 2048 ------- null} h -t 2.32523 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4087 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.32542 -s 10 -d 7 -p ack -e 40 -c 0 -i 4084 -a 0 -x {10.0 9.0 2037 ------- null} + -t 2.32542 -s 7 -d 0 -p ack -e 40 -c 0 -i 4084 -a 0 -x {10.0 9.0 2037 ------- null} h -t 2.32542 -s 7 -d 8 -p ack -e 40 -c 0 -i 4084 -a 0 -x {10.0 9.0 2037 ------- null} + -t 2.32542 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4073 -a 0 -x {9.0 10.0 2041 ------- null} - -t 2.32542 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4073 -a 0 -x {9.0 10.0 2041 ------- null} h -t 2.32542 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4073 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.32568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4083 -a 0 -x {9.0 10.0 2046 ------- null} + -t 2.32568 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4083 -a 0 -x {9.0 10.0 2046 ------- null} h -t 2.32568 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4083 -a 0 -x {9.0 10.0 2046 ------- null} r -t 2.32571 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4069 -a 0 -x {9.0 10.0 2039 ------- null} + -t 2.32571 -s 10 -d 7 -p ack -e 40 -c 0 -i 4088 -a 0 -x {10.0 9.0 2039 ------- null} - -t 2.32571 -s 10 -d 7 -p ack -e 40 -c 0 -i 4088 -a 0 -x {10.0 9.0 2039 ------- null} h -t 2.32571 -s 10 -d 7 -p ack -e 40 -c 0 -i 4088 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.32573 -s 0 -d 9 -p ack -e 40 -c 0 -i 4080 -a 0 -x {10.0 9.0 2035 ------- null} - -t 2.32573 -s 0 -d 9 -p ack -e 40 -c 0 -i 4080 -a 0 -x {10.0 9.0 2035 ------- null} h -t 2.32573 -s 0 -d 9 -p ack -e 40 -c 0 -i 4080 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.32651 -s 0 -d 9 -p ack -e 40 -c 0 -i 4078 -a 0 -x {10.0 9.0 2034 ------- null} + -t 2.32651 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4089 -a 0 -x {9.0 10.0 2049 ------- null} - -t 2.32651 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4089 -a 0 -x {9.0 10.0 2049 ------- null} h -t 2.32651 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4089 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.32662 -s 10 -d 7 -p ack -e 40 -c 0 -i 4086 -a 0 -x {10.0 9.0 2038 ------- null} + -t 2.32662 -s 7 -d 0 -p ack -e 40 -c 0 -i 4086 -a 0 -x {10.0 9.0 2038 ------- null} h -t 2.32662 -s 7 -d 8 -p ack -e 40 -c 0 -i 4086 -a 0 -x {10.0 9.0 2038 ------- null} + -t 2.3268 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4075 -a 0 -x {9.0 10.0 2042 ------- null} - -t 2.3268 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4075 -a 0 -x {9.0 10.0 2042 ------- null} h -t 2.3268 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4075 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.3269 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4085 -a 0 -x {9.0 10.0 2047 ------- null} + -t 2.3269 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4085 -a 0 -x {9.0 10.0 2047 ------- null} h -t 2.3269 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4085 -a 0 -x {9.0 10.0 2047 ------- null} + -t 2.32701 -s 0 -d 9 -p ack -e 40 -c 0 -i 4082 -a 0 -x {10.0 9.0 2036 ------- null} - -t 2.32701 -s 0 -d 9 -p ack -e 40 -c 0 -i 4082 -a 0 -x {10.0 9.0 2036 ------- null} h -t 2.32701 -s 0 -d 9 -p ack -e 40 -c 0 -i 4082 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.32702 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4071 -a 0 -x {9.0 10.0 2040 ------- null} + -t 2.32702 -s 10 -d 7 -p ack -e 40 -c 0 -i 4090 -a 0 -x {10.0 9.0 2040 ------- null} - -t 2.32702 -s 10 -d 7 -p ack -e 40 -c 0 -i 4090 -a 0 -x {10.0 9.0 2040 ------- null} h -t 2.32702 -s 10 -d 7 -p ack -e 40 -c 0 -i 4090 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.32774 -s 10 -d 7 -p ack -e 40 -c 0 -i 4088 -a 0 -x {10.0 9.0 2039 ------- null} + -t 2.32774 -s 7 -d 0 -p ack -e 40 -c 0 -i 4088 -a 0 -x {10.0 9.0 2039 ------- null} h -t 2.32774 -s 7 -d 8 -p ack -e 40 -c 0 -i 4088 -a 0 -x {10.0 9.0 2039 ------- null} r -t 2.32776 -s 0 -d 9 -p ack -e 40 -c 0 -i 4080 -a 0 -x {10.0 9.0 2035 ------- null} + -t 2.32776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4091 -a 0 -x {9.0 10.0 2050 ------- null} - -t 2.32776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4091 -a 0 -x {9.0 10.0 2050 ------- null} h -t 2.32776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4091 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.32789 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4077 -a 0 -x {9.0 10.0 2043 ------- null} - -t 2.32789 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4077 -a 0 -x {9.0 10.0 2043 ------- null} h -t 2.32789 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4077 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.32803 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4087 -a 0 -x {9.0 10.0 2048 ------- null} + -t 2.32803 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4087 -a 0 -x {9.0 10.0 2048 ------- null} h -t 2.32803 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4087 -a 0 -x {9.0 10.0 2048 ------- null} + -t 2.32816 -s 0 -d 9 -p ack -e 40 -c 0 -i 4084 -a 0 -x {10.0 9.0 2037 ------- null} - -t 2.32816 -s 0 -d 9 -p ack -e 40 -c 0 -i 4084 -a 0 -x {10.0 9.0 2037 ------- null} h -t 2.32816 -s 0 -d 9 -p ack -e 40 -c 0 -i 4084 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.32822 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4073 -a 0 -x {9.0 10.0 2041 ------- null} + -t 2.32822 -s 10 -d 7 -p ack -e 40 -c 0 -i 4092 -a 0 -x {10.0 9.0 2041 ------- null} - -t 2.32822 -s 10 -d 7 -p ack -e 40 -c 0 -i 4092 -a 0 -x {10.0 9.0 2041 ------- null} h -t 2.32822 -s 10 -d 7 -p ack -e 40 -c 0 -i 4092 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.32904 -s 0 -d 9 -p ack -e 40 -c 0 -i 4082 -a 0 -x {10.0 9.0 2036 ------- null} + -t 2.32904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4093 -a 0 -x {9.0 10.0 2051 ------- null} - -t 2.32904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4093 -a 0 -x {9.0 10.0 2051 ------- null} h -t 2.32904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4093 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.32906 -s 10 -d 7 -p ack -e 40 -c 0 -i 4090 -a 0 -x {10.0 9.0 2040 ------- null} + -t 2.32906 -s 7 -d 0 -p ack -e 40 -c 0 -i 4090 -a 0 -x {10.0 9.0 2040 ------- null} h -t 2.32906 -s 7 -d 8 -p ack -e 40 -c 0 -i 4090 -a 0 -x {10.0 9.0 2040 ------- null} + -t 2.3292 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4079 -a 0 -x {9.0 10.0 2044 ------- null} - -t 2.3292 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4079 -a 0 -x {9.0 10.0 2044 ------- null} h -t 2.3292 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4079 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.32926 -s 0 -d 9 -p ack -e 40 -c 0 -i 4086 -a 0 -x {10.0 9.0 2038 ------- null} - -t 2.32926 -s 0 -d 9 -p ack -e 40 -c 0 -i 4086 -a 0 -x {10.0 9.0 2038 ------- null} h -t 2.32926 -s 0 -d 9 -p ack -e 40 -c 0 -i 4086 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.32931 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4089 -a 0 -x {9.0 10.0 2049 ------- null} + -t 2.32931 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4089 -a 0 -x {9.0 10.0 2049 ------- null} h -t 2.32931 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4089 -a 0 -x {9.0 10.0 2049 ------- null} r -t 2.3296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4075 -a 0 -x {9.0 10.0 2042 ------- null} + -t 2.3296 -s 10 -d 7 -p ack -e 40 -c 0 -i 4094 -a 0 -x {10.0 9.0 2042 ------- null} - -t 2.3296 -s 10 -d 7 -p ack -e 40 -c 0 -i 4094 -a 0 -x {10.0 9.0 2042 ------- null} h -t 2.3296 -s 10 -d 7 -p ack -e 40 -c 0 -i 4094 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.33019 -s 0 -d 9 -p ack -e 40 -c 0 -i 4084 -a 0 -x {10.0 9.0 2037 ------- null} + -t 2.33019 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4095 -a 0 -x {9.0 10.0 2052 ------- null} - -t 2.33019 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4095 -a 0 -x {9.0 10.0 2052 ------- null} h -t 2.33019 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4095 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.33026 -s 10 -d 7 -p ack -e 40 -c 0 -i 4092 -a 0 -x {10.0 9.0 2041 ------- null} + -t 2.33026 -s 7 -d 0 -p ack -e 40 -c 0 -i 4092 -a 0 -x {10.0 9.0 2041 ------- null} h -t 2.33026 -s 7 -d 8 -p ack -e 40 -c 0 -i 4092 -a 0 -x {10.0 9.0 2041 ------- null} + -t 2.33029 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4081 -a 0 -x {9.0 10.0 2045 ------- null} - -t 2.33029 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4081 -a 0 -x {9.0 10.0 2045 ------- null} h -t 2.33029 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4081 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.33038 -s 0 -d 9 -p ack -e 40 -c 0 -i 4088 -a 0 -x {10.0 9.0 2039 ------- null} - -t 2.33038 -s 0 -d 9 -p ack -e 40 -c 0 -i 4088 -a 0 -x {10.0 9.0 2039 ------- null} h -t 2.33038 -s 0 -d 9 -p ack -e 40 -c 0 -i 4088 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.33056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4091 -a 0 -x {9.0 10.0 2050 ------- null} + -t 2.33056 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4091 -a 0 -x {9.0 10.0 2050 ------- null} h -t 2.33056 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4091 -a 0 -x {9.0 10.0 2050 ------- null} r -t 2.33069 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4077 -a 0 -x {9.0 10.0 2043 ------- null} + -t 2.33069 -s 10 -d 7 -p ack -e 40 -c 0 -i 4096 -a 0 -x {10.0 9.0 2043 ------- null} - -t 2.33069 -s 10 -d 7 -p ack -e 40 -c 0 -i 4096 -a 0 -x {10.0 9.0 2043 ------- null} h -t 2.33069 -s 10 -d 7 -p ack -e 40 -c 0 -i 4096 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.3313 -s 0 -d 9 -p ack -e 40 -c 0 -i 4086 -a 0 -x {10.0 9.0 2038 ------- null} + -t 2.3313 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4097 -a 0 -x {9.0 10.0 2053 ------- null} - -t 2.3313 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4097 -a 0 -x {9.0 10.0 2053 ------- null} h -t 2.3313 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4097 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.33138 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4083 -a 0 -x {9.0 10.0 2046 ------- null} - -t 2.33138 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4083 -a 0 -x {9.0 10.0 2046 ------- null} h -t 2.33138 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4083 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.33162 -s 0 -d 9 -p ack -e 40 -c 0 -i 4090 -a 0 -x {10.0 9.0 2040 ------- null} - -t 2.33162 -s 0 -d 9 -p ack -e 40 -c 0 -i 4090 -a 0 -x {10.0 9.0 2040 ------- null} h -t 2.33162 -s 0 -d 9 -p ack -e 40 -c 0 -i 4090 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.33163 -s 10 -d 7 -p ack -e 40 -c 0 -i 4094 -a 0 -x {10.0 9.0 2042 ------- null} + -t 2.33163 -s 7 -d 0 -p ack -e 40 -c 0 -i 4094 -a 0 -x {10.0 9.0 2042 ------- null} h -t 2.33163 -s 7 -d 8 -p ack -e 40 -c 0 -i 4094 -a 0 -x {10.0 9.0 2042 ------- null} r -t 2.33184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4093 -a 0 -x {9.0 10.0 2051 ------- null} + -t 2.33184 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4093 -a 0 -x {9.0 10.0 2051 ------- null} h -t 2.33184 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4093 -a 0 -x {9.0 10.0 2051 ------- null} r -t 2.332 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4079 -a 0 -x {9.0 10.0 2044 ------- null} + -t 2.332 -s 10 -d 7 -p ack -e 40 -c 0 -i 4098 -a 0 -x {10.0 9.0 2044 ------- null} - -t 2.332 -s 10 -d 7 -p ack -e 40 -c 0 -i 4098 -a 0 -x {10.0 9.0 2044 ------- null} h -t 2.332 -s 10 -d 7 -p ack -e 40 -c 0 -i 4098 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.33242 -s 0 -d 9 -p ack -e 40 -c 0 -i 4088 -a 0 -x {10.0 9.0 2039 ------- null} + -t 2.33242 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4099 -a 0 -x {9.0 10.0 2054 ------- null} - -t 2.33242 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4099 -a 0 -x {9.0 10.0 2054 ------- null} h -t 2.33242 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4099 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.33246 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4085 -a 0 -x {9.0 10.0 2047 ------- null} - -t 2.33246 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4085 -a 0 -x {9.0 10.0 2047 ------- null} h -t 2.33246 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4085 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.33272 -s 10 -d 7 -p ack -e 40 -c 0 -i 4096 -a 0 -x {10.0 9.0 2043 ------- null} + -t 2.33272 -s 7 -d 0 -p ack -e 40 -c 0 -i 4096 -a 0 -x {10.0 9.0 2043 ------- null} h -t 2.33272 -s 7 -d 8 -p ack -e 40 -c 0 -i 4096 -a 0 -x {10.0 9.0 2043 ------- null} + -t 2.33277 -s 0 -d 9 -p ack -e 40 -c 0 -i 4092 -a 0 -x {10.0 9.0 2041 ------- null} - -t 2.33277 -s 0 -d 9 -p ack -e 40 -c 0 -i 4092 -a 0 -x {10.0 9.0 2041 ------- null} h -t 2.33277 -s 0 -d 9 -p ack -e 40 -c 0 -i 4092 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.33299 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4095 -a 0 -x {9.0 10.0 2052 ------- null} + -t 2.33299 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4095 -a 0 -x {9.0 10.0 2052 ------- null} h -t 2.33299 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4095 -a 0 -x {9.0 10.0 2052 ------- null} r -t 2.33309 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4081 -a 0 -x {9.0 10.0 2045 ------- null} + -t 2.33309 -s 10 -d 7 -p ack -e 40 -c 0 -i 4100 -a 0 -x {10.0 9.0 2045 ------- null} - -t 2.33309 -s 10 -d 7 -p ack -e 40 -c 0 -i 4100 -a 0 -x {10.0 9.0 2045 ------- null} h -t 2.33309 -s 10 -d 7 -p ack -e 40 -c 0 -i 4100 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.33365 -s 0 -d 9 -p ack -e 40 -c 0 -i 4090 -a 0 -x {10.0 9.0 2040 ------- null} + -t 2.33365 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4101 -a 0 -x {9.0 10.0 2055 ------- null} - -t 2.33365 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4101 -a 0 -x {9.0 10.0 2055 ------- null} h -t 2.33365 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4101 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.33382 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4087 -a 0 -x {9.0 10.0 2048 ------- null} - -t 2.33382 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4087 -a 0 -x {9.0 10.0 2048 ------- null} h -t 2.33382 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4087 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.33402 -s 0 -d 9 -p ack -e 40 -c 0 -i 4094 -a 0 -x {10.0 9.0 2042 ------- null} - -t 2.33402 -s 0 -d 9 -p ack -e 40 -c 0 -i 4094 -a 0 -x {10.0 9.0 2042 ------- null} h -t 2.33402 -s 0 -d 9 -p ack -e 40 -c 0 -i 4094 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.33403 -s 10 -d 7 -p ack -e 40 -c 0 -i 4098 -a 0 -x {10.0 9.0 2044 ------- null} + -t 2.33403 -s 7 -d 0 -p ack -e 40 -c 0 -i 4098 -a 0 -x {10.0 9.0 2044 ------- null} h -t 2.33403 -s 7 -d 8 -p ack -e 40 -c 0 -i 4098 -a 0 -x {10.0 9.0 2044 ------- null} r -t 2.3341 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4097 -a 0 -x {9.0 10.0 2053 ------- null} + -t 2.3341 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4097 -a 0 -x {9.0 10.0 2053 ------- null} h -t 2.3341 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4097 -a 0 -x {9.0 10.0 2053 ------- null} r -t 2.33418 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4083 -a 0 -x {9.0 10.0 2046 ------- null} + -t 2.33418 -s 10 -d 7 -p ack -e 40 -c 0 -i 4102 -a 0 -x {10.0 9.0 2046 ------- null} - -t 2.33418 -s 10 -d 7 -p ack -e 40 -c 0 -i 4102 -a 0 -x {10.0 9.0 2046 ------- null} h -t 2.33418 -s 10 -d 7 -p ack -e 40 -c 0 -i 4102 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.3348 -s 0 -d 9 -p ack -e 40 -c 0 -i 4092 -a 0 -x {10.0 9.0 2041 ------- null} + -t 2.3348 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4103 -a 0 -x {9.0 10.0 2056 ------- null} - -t 2.3348 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4103 -a 0 -x {9.0 10.0 2056 ------- null} h -t 2.3348 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4103 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.33491 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4089 -a 0 -x {9.0 10.0 2049 ------- null} - -t 2.33491 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4089 -a 0 -x {9.0 10.0 2049 ------- null} h -t 2.33491 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4089 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.3351 -s 0 -d 9 -p ack -e 40 -c 0 -i 4096 -a 0 -x {10.0 9.0 2043 ------- null} - -t 2.3351 -s 0 -d 9 -p ack -e 40 -c 0 -i 4096 -a 0 -x {10.0 9.0 2043 ------- null} h -t 2.3351 -s 0 -d 9 -p ack -e 40 -c 0 -i 4096 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.33512 -s 10 -d 7 -p ack -e 40 -c 0 -i 4100 -a 0 -x {10.0 9.0 2045 ------- null} + -t 2.33512 -s 7 -d 0 -p ack -e 40 -c 0 -i 4100 -a 0 -x {10.0 9.0 2045 ------- null} h -t 2.33512 -s 7 -d 8 -p ack -e 40 -c 0 -i 4100 -a 0 -x {10.0 9.0 2045 ------- null} r -t 2.33522 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4099 -a 0 -x {9.0 10.0 2054 ------- null} + -t 2.33522 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4099 -a 0 -x {9.0 10.0 2054 ------- null} h -t 2.33522 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4099 -a 0 -x {9.0 10.0 2054 ------- null} r -t 2.33526 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4085 -a 0 -x {9.0 10.0 2047 ------- null} + -t 2.33526 -s 10 -d 7 -p ack -e 40 -c 0 -i 4104 -a 0 -x {10.0 9.0 2047 ------- null} - -t 2.33526 -s 10 -d 7 -p ack -e 40 -c 0 -i 4104 -a 0 -x {10.0 9.0 2047 ------- null} h -t 2.33526 -s 10 -d 7 -p ack -e 40 -c 0 -i 4104 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.336 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4091 -a 0 -x {9.0 10.0 2050 ------- null} - -t 2.336 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4091 -a 0 -x {9.0 10.0 2050 ------- null} h -t 2.336 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4091 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.33605 -s 0 -d 9 -p ack -e 40 -c 0 -i 4094 -a 0 -x {10.0 9.0 2042 ------- null} + -t 2.33605 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4105 -a 0 -x {9.0 10.0 2057 ------- null} - -t 2.33605 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4105 -a 0 -x {9.0 10.0 2057 ------- null} h -t 2.33605 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4105 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.33616 -s 0 -d 9 -p ack -e 40 -c 0 -i 4098 -a 0 -x {10.0 9.0 2044 ------- null} - -t 2.33616 -s 0 -d 9 -p ack -e 40 -c 0 -i 4098 -a 0 -x {10.0 9.0 2044 ------- null} h -t 2.33616 -s 0 -d 9 -p ack -e 40 -c 0 -i 4098 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.33621 -s 10 -d 7 -p ack -e 40 -c 0 -i 4102 -a 0 -x {10.0 9.0 2046 ------- null} + -t 2.33621 -s 7 -d 0 -p ack -e 40 -c 0 -i 4102 -a 0 -x {10.0 9.0 2046 ------- null} h -t 2.33621 -s 7 -d 8 -p ack -e 40 -c 0 -i 4102 -a 0 -x {10.0 9.0 2046 ------- null} r -t 2.33645 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4101 -a 0 -x {9.0 10.0 2055 ------- null} + -t 2.33645 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4101 -a 0 -x {9.0 10.0 2055 ------- null} h -t 2.33645 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4101 -a 0 -x {9.0 10.0 2055 ------- null} r -t 2.33662 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4087 -a 0 -x {9.0 10.0 2048 ------- null} + -t 2.33662 -s 10 -d 7 -p ack -e 40 -c 0 -i 4106 -a 0 -x {10.0 9.0 2048 ------- null} - -t 2.33662 -s 10 -d 7 -p ack -e 40 -c 0 -i 4106 -a 0 -x {10.0 9.0 2048 ------- null} h -t 2.33662 -s 10 -d 7 -p ack -e 40 -c 0 -i 4106 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.33709 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4093 -a 0 -x {9.0 10.0 2051 ------- null} - -t 2.33709 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4093 -a 0 -x {9.0 10.0 2051 ------- null} h -t 2.33709 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4093 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.33714 -s 0 -d 9 -p ack -e 40 -c 0 -i 4096 -a 0 -x {10.0 9.0 2043 ------- null} + -t 2.33714 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4107 -a 0 -x {9.0 10.0 2058 ------- null} - -t 2.33714 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4107 -a 0 -x {9.0 10.0 2058 ------- null} h -t 2.33714 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4107 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.3373 -s 10 -d 7 -p ack -e 40 -c 0 -i 4104 -a 0 -x {10.0 9.0 2047 ------- null} + -t 2.3373 -s 7 -d 0 -p ack -e 40 -c 0 -i 4104 -a 0 -x {10.0 9.0 2047 ------- null} h -t 2.3373 -s 7 -d 8 -p ack -e 40 -c 0 -i 4104 -a 0 -x {10.0 9.0 2047 ------- null} + -t 2.33736 -s 0 -d 9 -p ack -e 40 -c 0 -i 4100 -a 0 -x {10.0 9.0 2045 ------- null} - -t 2.33736 -s 0 -d 9 -p ack -e 40 -c 0 -i 4100 -a 0 -x {10.0 9.0 2045 ------- null} h -t 2.33736 -s 0 -d 9 -p ack -e 40 -c 0 -i 4100 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.3376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4103 -a 0 -x {9.0 10.0 2056 ------- null} + -t 2.3376 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4103 -a 0 -x {9.0 10.0 2056 ------- null} h -t 2.3376 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4103 -a 0 -x {9.0 10.0 2056 ------- null} r -t 2.33771 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4089 -a 0 -x {9.0 10.0 2049 ------- null} + -t 2.33771 -s 10 -d 7 -p ack -e 40 -c 0 -i 4108 -a 0 -x {10.0 9.0 2049 ------- null} - -t 2.33771 -s 10 -d 7 -p ack -e 40 -c 0 -i 4108 -a 0 -x {10.0 9.0 2049 ------- null} h -t 2.33771 -s 10 -d 7 -p ack -e 40 -c 0 -i 4108 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.33819 -s 0 -d 9 -p ack -e 40 -c 0 -i 4098 -a 0 -x {10.0 9.0 2044 ------- null} + -t 2.33819 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4109 -a 0 -x {9.0 10.0 2059 ------- null} - -t 2.33819 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4109 -a 0 -x {9.0 10.0 2059 ------- null} h -t 2.33819 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4109 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.33824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4095 -a 0 -x {9.0 10.0 2052 ------- null} - -t 2.33824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4095 -a 0 -x {9.0 10.0 2052 ------- null} h -t 2.33824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4095 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.3384 -s 0 -d 9 -p ack -e 40 -c 0 -i 4102 -a 0 -x {10.0 9.0 2046 ------- null} - -t 2.3384 -s 0 -d 9 -p ack -e 40 -c 0 -i 4102 -a 0 -x {10.0 9.0 2046 ------- null} h -t 2.3384 -s 0 -d 9 -p ack -e 40 -c 0 -i 4102 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.33866 -s 10 -d 7 -p ack -e 40 -c 0 -i 4106 -a 0 -x {10.0 9.0 2048 ------- null} + -t 2.33866 -s 7 -d 0 -p ack -e 40 -c 0 -i 4106 -a 0 -x {10.0 9.0 2048 ------- null} h -t 2.33866 -s 7 -d 8 -p ack -e 40 -c 0 -i 4106 -a 0 -x {10.0 9.0 2048 ------- null} r -t 2.3388 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4091 -a 0 -x {9.0 10.0 2050 ------- null} + -t 2.3388 -s 10 -d 7 -p ack -e 40 -c 0 -i 4110 -a 0 -x {10.0 9.0 2050 ------- null} - -t 2.3388 -s 10 -d 7 -p ack -e 40 -c 0 -i 4110 -a 0 -x {10.0 9.0 2050 ------- null} h -t 2.3388 -s 10 -d 7 -p ack -e 40 -c 0 -i 4110 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.33885 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4105 -a 0 -x {9.0 10.0 2057 ------- null} + -t 2.33885 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4105 -a 0 -x {9.0 10.0 2057 ------- null} h -t 2.33885 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4105 -a 0 -x {9.0 10.0 2057 ------- null} + -t 2.33933 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4097 -a 0 -x {9.0 10.0 2053 ------- null} - -t 2.33933 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4097 -a 0 -x {9.0 10.0 2053 ------- null} h -t 2.33933 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4097 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.33939 -s 0 -d 9 -p ack -e 40 -c 0 -i 4100 -a 0 -x {10.0 9.0 2045 ------- null} + -t 2.33939 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4111 -a 0 -x {9.0 10.0 2060 ------- null} - -t 2.33939 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4111 -a 0 -x {9.0 10.0 2060 ------- null} h -t 2.33939 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4111 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.33941 -s 0 -d 9 -p ack -e 40 -c 0 -i 4104 -a 0 -x {10.0 9.0 2047 ------- null} - -t 2.33941 -s 0 -d 9 -p ack -e 40 -c 0 -i 4104 -a 0 -x {10.0 9.0 2047 ------- null} h -t 2.33941 -s 0 -d 9 -p ack -e 40 -c 0 -i 4104 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.33974 -s 10 -d 7 -p ack -e 40 -c 0 -i 4108 -a 0 -x {10.0 9.0 2049 ------- null} + -t 2.33974 -s 7 -d 0 -p ack -e 40 -c 0 -i 4108 -a 0 -x {10.0 9.0 2049 ------- null} h -t 2.33974 -s 7 -d 8 -p ack -e 40 -c 0 -i 4108 -a 0 -x {10.0 9.0 2049 ------- null} r -t 2.33989 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4093 -a 0 -x {9.0 10.0 2051 ------- null} + -t 2.33989 -s 10 -d 7 -p ack -e 40 -c 0 -i 4112 -a 0 -x {10.0 9.0 2051 ------- null} - -t 2.33989 -s 10 -d 7 -p ack -e 40 -c 0 -i 4112 -a 0 -x {10.0 9.0 2051 ------- null} h -t 2.33989 -s 10 -d 7 -p ack -e 40 -c 0 -i 4112 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.33994 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4107 -a 0 -x {9.0 10.0 2058 ------- null} + -t 2.33994 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4107 -a 0 -x {9.0 10.0 2058 ------- null} h -t 2.33994 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4107 -a 0 -x {9.0 10.0 2058 ------- null} + -t 2.34042 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4099 -a 0 -x {9.0 10.0 2054 ------- null} - -t 2.34042 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4099 -a 0 -x {9.0 10.0 2054 ------- null} h -t 2.34042 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4099 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.34043 -s 0 -d 9 -p ack -e 40 -c 0 -i 4102 -a 0 -x {10.0 9.0 2046 ------- null} + -t 2.34043 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4113 -a 0 -x {9.0 10.0 2061 ------- null} - -t 2.34043 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4113 -a 0 -x {9.0 10.0 2061 ------- null} h -t 2.34043 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4113 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.34056 -s 0 -d 9 -p ack -e 40 -c 0 -i 4106 -a 0 -x {10.0 9.0 2048 ------- null} - -t 2.34056 -s 0 -d 9 -p ack -e 40 -c 0 -i 4106 -a 0 -x {10.0 9.0 2048 ------- null} h -t 2.34056 -s 0 -d 9 -p ack -e 40 -c 0 -i 4106 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.34083 -s 10 -d 7 -p ack -e 40 -c 0 -i 4110 -a 0 -x {10.0 9.0 2050 ------- null} + -t 2.34083 -s 7 -d 0 -p ack -e 40 -c 0 -i 4110 -a 0 -x {10.0 9.0 2050 ------- null} h -t 2.34083 -s 7 -d 8 -p ack -e 40 -c 0 -i 4110 -a 0 -x {10.0 9.0 2050 ------- null} r -t 2.34099 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4109 -a 0 -x {9.0 10.0 2059 ------- null} + -t 2.34099 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4109 -a 0 -x {9.0 10.0 2059 ------- null} h -t 2.34099 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4109 -a 0 -x {9.0 10.0 2059 ------- null} r -t 2.34104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4095 -a 0 -x {9.0 10.0 2052 ------- null} + -t 2.34104 -s 10 -d 7 -p ack -e 40 -c 0 -i 4114 -a 0 -x {10.0 9.0 2052 ------- null} - -t 2.34104 -s 10 -d 7 -p ack -e 40 -c 0 -i 4114 -a 0 -x {10.0 9.0 2052 ------- null} h -t 2.34104 -s 10 -d 7 -p ack -e 40 -c 0 -i 4114 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.34144 -s 0 -d 9 -p ack -e 40 -c 0 -i 4104 -a 0 -x {10.0 9.0 2047 ------- null} + -t 2.34144 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4115 -a 0 -x {9.0 10.0 2062 ------- null} - -t 2.34144 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4115 -a 0 -x {9.0 10.0 2062 ------- null} h -t 2.34144 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4115 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.3415 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4101 -a 0 -x {9.0 10.0 2055 ------- null} - -t 2.3415 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4101 -a 0 -x {9.0 10.0 2055 ------- null} h -t 2.3415 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4101 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.34179 -s 0 -d 9 -p ack -e 40 -c 0 -i 4108 -a 0 -x {10.0 9.0 2049 ------- null} - -t 2.34179 -s 0 -d 9 -p ack -e 40 -c 0 -i 4108 -a 0 -x {10.0 9.0 2049 ------- null} h -t 2.34179 -s 0 -d 9 -p ack -e 40 -c 0 -i 4108 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.34192 -s 10 -d 7 -p ack -e 40 -c 0 -i 4112 -a 0 -x {10.0 9.0 2051 ------- null} + -t 2.34192 -s 7 -d 0 -p ack -e 40 -c 0 -i 4112 -a 0 -x {10.0 9.0 2051 ------- null} h -t 2.34192 -s 7 -d 8 -p ack -e 40 -c 0 -i 4112 -a 0 -x {10.0 9.0 2051 ------- null} r -t 2.34213 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4097 -a 0 -x {9.0 10.0 2053 ------- null} + -t 2.34213 -s 10 -d 7 -p ack -e 40 -c 0 -i 4116 -a 0 -x {10.0 9.0 2053 ------- null} - -t 2.34213 -s 10 -d 7 -p ack -e 40 -c 0 -i 4116 -a 0 -x {10.0 9.0 2053 ------- null} h -t 2.34213 -s 10 -d 7 -p ack -e 40 -c 0 -i 4116 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.34219 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4111 -a 0 -x {9.0 10.0 2060 ------- null} + -t 2.34219 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4111 -a 0 -x {9.0 10.0 2060 ------- null} h -t 2.34219 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4111 -a 0 -x {9.0 10.0 2060 ------- null} r -t 2.34259 -s 0 -d 9 -p ack -e 40 -c 0 -i 4106 -a 0 -x {10.0 9.0 2048 ------- null} + -t 2.34259 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4117 -a 0 -x {9.0 10.0 2063 ------- null} - -t 2.34259 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4117 -a 0 -x {9.0 10.0 2063 ------- null} h -t 2.34259 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4117 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.34272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4103 -a 0 -x {9.0 10.0 2056 ------- null} - -t 2.34272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4103 -a 0 -x {9.0 10.0 2056 ------- null} h -t 2.34272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4103 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.34293 -s 0 -d 9 -p ack -e 40 -c 0 -i 4110 -a 0 -x {10.0 9.0 2050 ------- null} - -t 2.34293 -s 0 -d 9 -p ack -e 40 -c 0 -i 4110 -a 0 -x {10.0 9.0 2050 ------- null} h -t 2.34293 -s 0 -d 9 -p ack -e 40 -c 0 -i 4110 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.34307 -s 10 -d 7 -p ack -e 40 -c 0 -i 4114 -a 0 -x {10.0 9.0 2052 ------- null} + -t 2.34307 -s 7 -d 0 -p ack -e 40 -c 0 -i 4114 -a 0 -x {10.0 9.0 2052 ------- null} h -t 2.34307 -s 7 -d 8 -p ack -e 40 -c 0 -i 4114 -a 0 -x {10.0 9.0 2052 ------- null} r -t 2.34322 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4099 -a 0 -x {9.0 10.0 2054 ------- null} + -t 2.34322 -s 10 -d 7 -p ack -e 40 -c 0 -i 4118 -a 0 -x {10.0 9.0 2054 ------- null} - -t 2.34322 -s 10 -d 7 -p ack -e 40 -c 0 -i 4118 -a 0 -x {10.0 9.0 2054 ------- null} h -t 2.34322 -s 10 -d 7 -p ack -e 40 -c 0 -i 4118 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.34323 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4113 -a 0 -x {9.0 10.0 2061 ------- null} + -t 2.34323 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4113 -a 0 -x {9.0 10.0 2061 ------- null} h -t 2.34323 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4113 -a 0 -x {9.0 10.0 2061 ------- null} + -t 2.34381 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4105 -a 0 -x {9.0 10.0 2057 ------- null} - -t 2.34381 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4105 -a 0 -x {9.0 10.0 2057 ------- null} h -t 2.34381 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4105 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.34382 -s 0 -d 9 -p ack -e 40 -c 0 -i 4108 -a 0 -x {10.0 9.0 2049 ------- null} + -t 2.34382 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4119 -a 0 -x {9.0 10.0 2064 ------- null} - -t 2.34382 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4119 -a 0 -x {9.0 10.0 2064 ------- null} h -t 2.34382 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4119 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.34408 -s 0 -d 9 -p ack -e 40 -c 0 -i 4112 -a 0 -x {10.0 9.0 2051 ------- null} - -t 2.34408 -s 0 -d 9 -p ack -e 40 -c 0 -i 4112 -a 0 -x {10.0 9.0 2051 ------- null} h -t 2.34408 -s 0 -d 9 -p ack -e 40 -c 0 -i 4112 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.34416 -s 10 -d 7 -p ack -e 40 -c 0 -i 4116 -a 0 -x {10.0 9.0 2053 ------- null} + -t 2.34416 -s 7 -d 0 -p ack -e 40 -c 0 -i 4116 -a 0 -x {10.0 9.0 2053 ------- null} h -t 2.34416 -s 7 -d 8 -p ack -e 40 -c 0 -i 4116 -a 0 -x {10.0 9.0 2053 ------- null} r -t 2.34424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4115 -a 0 -x {9.0 10.0 2062 ------- null} + -t 2.34424 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4115 -a 0 -x {9.0 10.0 2062 ------- null} h -t 2.34424 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4115 -a 0 -x {9.0 10.0 2062 ------- null} r -t 2.3443 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4101 -a 0 -x {9.0 10.0 2055 ------- null} + -t 2.3443 -s 10 -d 7 -p ack -e 40 -c 0 -i 4120 -a 0 -x {10.0 9.0 2055 ------- null} - -t 2.3443 -s 10 -d 7 -p ack -e 40 -c 0 -i 4120 -a 0 -x {10.0 9.0 2055 ------- null} h -t 2.3443 -s 10 -d 7 -p ack -e 40 -c 0 -i 4120 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.34496 -s 0 -d 9 -p ack -e 40 -c 0 -i 4110 -a 0 -x {10.0 9.0 2050 ------- null} + -t 2.34496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4121 -a 0 -x {9.0 10.0 2065 ------- null} - -t 2.34496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4121 -a 0 -x {9.0 10.0 2065 ------- null} h -t 2.34496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4121 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.34512 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4107 -a 0 -x {9.0 10.0 2058 ------- null} - -t 2.34512 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4107 -a 0 -x {9.0 10.0 2058 ------- null} h -t 2.34512 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4107 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.34523 -s 0 -d 9 -p ack -e 40 -c 0 -i 4114 -a 0 -x {10.0 9.0 2052 ------- null} - -t 2.34523 -s 0 -d 9 -p ack -e 40 -c 0 -i 4114 -a 0 -x {10.0 9.0 2052 ------- null} h -t 2.34523 -s 0 -d 9 -p ack -e 40 -c 0 -i 4114 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.34525 -s 10 -d 7 -p ack -e 40 -c 0 -i 4118 -a 0 -x {10.0 9.0 2054 ------- null} + -t 2.34525 -s 7 -d 0 -p ack -e 40 -c 0 -i 4118 -a 0 -x {10.0 9.0 2054 ------- null} h -t 2.34525 -s 7 -d 8 -p ack -e 40 -c 0 -i 4118 -a 0 -x {10.0 9.0 2054 ------- null} r -t 2.34539 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4117 -a 0 -x {9.0 10.0 2063 ------- null} + -t 2.34539 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4117 -a 0 -x {9.0 10.0 2063 ------- null} h -t 2.34539 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4117 -a 0 -x {9.0 10.0 2063 ------- null} r -t 2.34552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4103 -a 0 -x {9.0 10.0 2056 ------- null} + -t 2.34552 -s 10 -d 7 -p ack -e 40 -c 0 -i 4122 -a 0 -x {10.0 9.0 2056 ------- null} - -t 2.34552 -s 10 -d 7 -p ack -e 40 -c 0 -i 4122 -a 0 -x {10.0 9.0 2056 ------- null} h -t 2.34552 -s 10 -d 7 -p ack -e 40 -c 0 -i 4122 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.34611 -s 0 -d 9 -p ack -e 40 -c 0 -i 4112 -a 0 -x {10.0 9.0 2051 ------- null} + -t 2.34611 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4123 -a 0 -x {9.0 10.0 2066 ------- null} - -t 2.34611 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4123 -a 0 -x {9.0 10.0 2066 ------- null} h -t 2.34611 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4123 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.34621 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4109 -a 0 -x {9.0 10.0 2059 ------- null} - -t 2.34621 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4109 -a 0 -x {9.0 10.0 2059 ------- null} h -t 2.34621 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4109 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.34634 -s 10 -d 7 -p ack -e 40 -c 0 -i 4120 -a 0 -x {10.0 9.0 2055 ------- null} + -t 2.34634 -s 7 -d 0 -p ack -e 40 -c 0 -i 4120 -a 0 -x {10.0 9.0 2055 ------- null} h -t 2.34634 -s 7 -d 8 -p ack -e 40 -c 0 -i 4120 -a 0 -x {10.0 9.0 2055 ------- null} + -t 2.34638 -s 0 -d 9 -p ack -e 40 -c 0 -i 4116 -a 0 -x {10.0 9.0 2053 ------- null} - -t 2.34638 -s 0 -d 9 -p ack -e 40 -c 0 -i 4116 -a 0 -x {10.0 9.0 2053 ------- null} h -t 2.34638 -s 0 -d 9 -p ack -e 40 -c 0 -i 4116 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.34661 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4105 -a 0 -x {9.0 10.0 2057 ------- null} + -t 2.34661 -s 10 -d 7 -p ack -e 40 -c 0 -i 4124 -a 0 -x {10.0 9.0 2057 ------- null} - -t 2.34661 -s 10 -d 7 -p ack -e 40 -c 0 -i 4124 -a 0 -x {10.0 9.0 2057 ------- null} h -t 2.34661 -s 10 -d 7 -p ack -e 40 -c 0 -i 4124 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.34662 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4119 -a 0 -x {9.0 10.0 2064 ------- null} + -t 2.34662 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4119 -a 0 -x {9.0 10.0 2064 ------- null} h -t 2.34662 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4119 -a 0 -x {9.0 10.0 2064 ------- null} r -t 2.34726 -s 0 -d 9 -p ack -e 40 -c 0 -i 4114 -a 0 -x {10.0 9.0 2052 ------- null} + -t 2.34726 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4125 -a 0 -x {9.0 10.0 2067 ------- null} - -t 2.34726 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4125 -a 0 -x {9.0 10.0 2067 ------- null} h -t 2.34726 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4125 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.3473 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4111 -a 0 -x {9.0 10.0 2060 ------- null} - -t 2.3473 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4111 -a 0 -x {9.0 10.0 2060 ------- null} h -t 2.3473 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4111 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.34755 -s 10 -d 7 -p ack -e 40 -c 0 -i 4122 -a 0 -x {10.0 9.0 2056 ------- null} + -t 2.34755 -s 7 -d 0 -p ack -e 40 -c 0 -i 4122 -a 0 -x {10.0 9.0 2056 ------- null} h -t 2.34755 -s 7 -d 8 -p ack -e 40 -c 0 -i 4122 -a 0 -x {10.0 9.0 2056 ------- null} + -t 2.3476 -s 0 -d 9 -p ack -e 40 -c 0 -i 4118 -a 0 -x {10.0 9.0 2054 ------- null} - -t 2.3476 -s 0 -d 9 -p ack -e 40 -c 0 -i 4118 -a 0 -x {10.0 9.0 2054 ------- null} h -t 2.3476 -s 0 -d 9 -p ack -e 40 -c 0 -i 4118 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.34776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4121 -a 0 -x {9.0 10.0 2065 ------- null} + -t 2.34776 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4121 -a 0 -x {9.0 10.0 2065 ------- null} h -t 2.34776 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4121 -a 0 -x {9.0 10.0 2065 ------- null} r -t 2.34792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4107 -a 0 -x {9.0 10.0 2058 ------- null} + -t 2.34792 -s 10 -d 7 -p ack -e 40 -c 0 -i 4126 -a 0 -x {10.0 9.0 2058 ------- null} - -t 2.34792 -s 10 -d 7 -p ack -e 40 -c 0 -i 4126 -a 0 -x {10.0 9.0 2058 ------- null} h -t 2.34792 -s 10 -d 7 -p ack -e 40 -c 0 -i 4126 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.34842 -s 0 -d 9 -p ack -e 40 -c 0 -i 4116 -a 0 -x {10.0 9.0 2053 ------- null} + -t 2.34842 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4127 -a 0 -x {9.0 10.0 2068 ------- null} - -t 2.34842 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4127 -a 0 -x {9.0 10.0 2068 ------- null} h -t 2.34842 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4127 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.34858 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4113 -a 0 -x {9.0 10.0 2061 ------- null} - -t 2.34858 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4113 -a 0 -x {9.0 10.0 2061 ------- null} h -t 2.34858 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4113 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.34864 -s 10 -d 7 -p ack -e 40 -c 0 -i 4124 -a 0 -x {10.0 9.0 2057 ------- null} + -t 2.34864 -s 7 -d 0 -p ack -e 40 -c 0 -i 4124 -a 0 -x {10.0 9.0 2057 ------- null} h -t 2.34864 -s 7 -d 8 -p ack -e 40 -c 0 -i 4124 -a 0 -x {10.0 9.0 2057 ------- null} + -t 2.34875 -s 0 -d 9 -p ack -e 40 -c 0 -i 4120 -a 0 -x {10.0 9.0 2055 ------- null} - -t 2.34875 -s 0 -d 9 -p ack -e 40 -c 0 -i 4120 -a 0 -x {10.0 9.0 2055 ------- null} h -t 2.34875 -s 0 -d 9 -p ack -e 40 -c 0 -i 4120 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.34891 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4123 -a 0 -x {9.0 10.0 2066 ------- null} + -t 2.34891 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4123 -a 0 -x {9.0 10.0 2066 ------- null} h -t 2.34891 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4123 -a 0 -x {9.0 10.0 2066 ------- null} r -t 2.34901 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4109 -a 0 -x {9.0 10.0 2059 ------- null} + -t 2.34901 -s 10 -d 7 -p ack -e 40 -c 0 -i 4128 -a 0 -x {10.0 9.0 2059 ------- null} - -t 2.34901 -s 10 -d 7 -p ack -e 40 -c 0 -i 4128 -a 0 -x {10.0 9.0 2059 ------- null} h -t 2.34901 -s 10 -d 7 -p ack -e 40 -c 0 -i 4128 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.34963 -s 0 -d 9 -p ack -e 40 -c 0 -i 4118 -a 0 -x {10.0 9.0 2054 ------- null} + -t 2.34963 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4129 -a 0 -x {9.0 10.0 2069 ------- null} - -t 2.34963 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4129 -a 0 -x {9.0 10.0 2069 ------- null} h -t 2.34963 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4129 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.34966 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4115 -a 0 -x {9.0 10.0 2062 ------- null} - -t 2.34966 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4115 -a 0 -x {9.0 10.0 2062 ------- null} h -t 2.34966 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4115 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.34994 -s 0 -d 9 -p ack -e 40 -c 0 -i 4122 -a 0 -x {10.0 9.0 2056 ------- null} - -t 2.34994 -s 0 -d 9 -p ack -e 40 -c 0 -i 4122 -a 0 -x {10.0 9.0 2056 ------- null} h -t 2.34994 -s 0 -d 9 -p ack -e 40 -c 0 -i 4122 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.34995 -s 10 -d 7 -p ack -e 40 -c 0 -i 4126 -a 0 -x {10.0 9.0 2058 ------- null} + -t 2.34995 -s 7 -d 0 -p ack -e 40 -c 0 -i 4126 -a 0 -x {10.0 9.0 2058 ------- null} h -t 2.34995 -s 7 -d 8 -p ack -e 40 -c 0 -i 4126 -a 0 -x {10.0 9.0 2058 ------- null} r -t 2.35006 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4125 -a 0 -x {9.0 10.0 2067 ------- null} + -t 2.35006 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4125 -a 0 -x {9.0 10.0 2067 ------- null} h -t 2.35006 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4125 -a 0 -x {9.0 10.0 2067 ------- null} r -t 2.3501 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4111 -a 0 -x {9.0 10.0 2060 ------- null} + -t 2.3501 -s 10 -d 7 -p ack -e 40 -c 0 -i 4130 -a 0 -x {10.0 9.0 2060 ------- null} - -t 2.3501 -s 10 -d 7 -p ack -e 40 -c 0 -i 4130 -a 0 -x {10.0 9.0 2060 ------- null} h -t 2.3501 -s 10 -d 7 -p ack -e 40 -c 0 -i 4130 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.35078 -s 0 -d 9 -p ack -e 40 -c 0 -i 4120 -a 0 -x {10.0 9.0 2055 ------- null} + -t 2.35078 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4131 -a 0 -x {9.0 10.0 2070 ------- null} - -t 2.35078 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4131 -a 0 -x {9.0 10.0 2070 ------- null} h -t 2.35078 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4131 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.35078 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4117 -a 0 -x {9.0 10.0 2063 ------- null} - -t 2.35078 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4117 -a 0 -x {9.0 10.0 2063 ------- null} h -t 2.35078 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4117 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.35093 -s 0 -d 9 -p ack -e 40 -c 0 -i 4124 -a 0 -x {10.0 9.0 2057 ------- null} - -t 2.35093 -s 0 -d 9 -p ack -e 40 -c 0 -i 4124 -a 0 -x {10.0 9.0 2057 ------- null} h -t 2.35093 -s 0 -d 9 -p ack -e 40 -c 0 -i 4124 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.35104 -s 10 -d 7 -p ack -e 40 -c 0 -i 4128 -a 0 -x {10.0 9.0 2059 ------- null} + -t 2.35104 -s 7 -d 0 -p ack -e 40 -c 0 -i 4128 -a 0 -x {10.0 9.0 2059 ------- null} h -t 2.35104 -s 7 -d 8 -p ack -e 40 -c 0 -i 4128 -a 0 -x {10.0 9.0 2059 ------- null} r -t 2.35122 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4127 -a 0 -x {9.0 10.0 2068 ------- null} + -t 2.35122 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4127 -a 0 -x {9.0 10.0 2068 ------- null} h -t 2.35122 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4127 -a 0 -x {9.0 10.0 2068 ------- null} r -t 2.35138 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4113 -a 0 -x {9.0 10.0 2061 ------- null} + -t 2.35138 -s 10 -d 7 -p ack -e 40 -c 0 -i 4132 -a 0 -x {10.0 9.0 2061 ------- null} - -t 2.35138 -s 10 -d 7 -p ack -e 40 -c 0 -i 4132 -a 0 -x {10.0 9.0 2061 ------- null} h -t 2.35138 -s 10 -d 7 -p ack -e 40 -c 0 -i 4132 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.35187 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4119 -a 0 -x {9.0 10.0 2064 ------- null} - -t 2.35187 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4119 -a 0 -x {9.0 10.0 2064 ------- null} h -t 2.35187 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4119 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.35197 -s 0 -d 9 -p ack -e 40 -c 0 -i 4122 -a 0 -x {10.0 9.0 2056 ------- null} + -t 2.35197 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4133 -a 0 -x {9.0 10.0 2071 ------- null} - -t 2.35197 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4133 -a 0 -x {9.0 10.0 2071 ------- null} h -t 2.35197 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4133 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.35213 -s 10 -d 7 -p ack -e 40 -c 0 -i 4130 -a 0 -x {10.0 9.0 2060 ------- null} + -t 2.35213 -s 7 -d 0 -p ack -e 40 -c 0 -i 4130 -a 0 -x {10.0 9.0 2060 ------- null} h -t 2.35213 -s 7 -d 8 -p ack -e 40 -c 0 -i 4130 -a 0 -x {10.0 9.0 2060 ------- null} + -t 2.35216 -s 0 -d 9 -p ack -e 40 -c 0 -i 4126 -a 0 -x {10.0 9.0 2058 ------- null} - -t 2.35216 -s 0 -d 9 -p ack -e 40 -c 0 -i 4126 -a 0 -x {10.0 9.0 2058 ------- null} h -t 2.35216 -s 0 -d 9 -p ack -e 40 -c 0 -i 4126 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.35243 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4129 -a 0 -x {9.0 10.0 2069 ------- null} + -t 2.35243 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4129 -a 0 -x {9.0 10.0 2069 ------- null} h -t 2.35243 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4129 -a 0 -x {9.0 10.0 2069 ------- null} r -t 2.35246 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4115 -a 0 -x {9.0 10.0 2062 ------- null} + -t 2.35246 -s 10 -d 7 -p ack -e 40 -c 0 -i 4134 -a 0 -x {10.0 9.0 2062 ------- null} - -t 2.35246 -s 10 -d 7 -p ack -e 40 -c 0 -i 4134 -a 0 -x {10.0 9.0 2062 ------- null} h -t 2.35246 -s 10 -d 7 -p ack -e 40 -c 0 -i 4134 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.35296 -s 0 -d 9 -p ack -e 40 -c 0 -i 4124 -a 0 -x {10.0 9.0 2057 ------- null} + -t 2.35296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4135 -a 0 -x {9.0 10.0 2072 ------- null} - -t 2.35296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4135 -a 0 -x {9.0 10.0 2072 ------- null} h -t 2.35296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4135 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.35307 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4121 -a 0 -x {9.0 10.0 2065 ------- null} - -t 2.35307 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4121 -a 0 -x {9.0 10.0 2065 ------- null} h -t 2.35307 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4121 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.35326 -s 0 -d 9 -p ack -e 40 -c 0 -i 4128 -a 0 -x {10.0 9.0 2059 ------- null} - -t 2.35326 -s 0 -d 9 -p ack -e 40 -c 0 -i 4128 -a 0 -x {10.0 9.0 2059 ------- null} h -t 2.35326 -s 0 -d 9 -p ack -e 40 -c 0 -i 4128 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.35341 -s 10 -d 7 -p ack -e 40 -c 0 -i 4132 -a 0 -x {10.0 9.0 2061 ------- null} + -t 2.35341 -s 7 -d 0 -p ack -e 40 -c 0 -i 4132 -a 0 -x {10.0 9.0 2061 ------- null} h -t 2.35341 -s 7 -d 8 -p ack -e 40 -c 0 -i 4132 -a 0 -x {10.0 9.0 2061 ------- null} r -t 2.35358 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4131 -a 0 -x {9.0 10.0 2070 ------- null} + -t 2.35358 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4131 -a 0 -x {9.0 10.0 2070 ------- null} h -t 2.35358 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4131 -a 0 -x {9.0 10.0 2070 ------- null} r -t 2.35358 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4117 -a 0 -x {9.0 10.0 2063 ------- null} + -t 2.35358 -s 10 -d 7 -p ack -e 40 -c 0 -i 4136 -a 0 -x {10.0 9.0 2063 ------- null} - -t 2.35358 -s 10 -d 7 -p ack -e 40 -c 0 -i 4136 -a 0 -x {10.0 9.0 2063 ------- null} h -t 2.35358 -s 10 -d 7 -p ack -e 40 -c 0 -i 4136 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.35416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4123 -a 0 -x {9.0 10.0 2066 ------- null} - -t 2.35416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4123 -a 0 -x {9.0 10.0 2066 ------- null} h -t 2.35416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4123 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.35419 -s 0 -d 9 -p ack -e 40 -c 0 -i 4126 -a 0 -x {10.0 9.0 2058 ------- null} + -t 2.35419 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4137 -a 0 -x {9.0 10.0 2073 ------- null} - -t 2.35419 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4137 -a 0 -x {9.0 10.0 2073 ------- null} h -t 2.35419 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4137 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.35427 -s 0 -d 9 -p ack -e 40 -c 0 -i 4130 -a 0 -x {10.0 9.0 2060 ------- null} - -t 2.35427 -s 0 -d 9 -p ack -e 40 -c 0 -i 4130 -a 0 -x {10.0 9.0 2060 ------- null} h -t 2.35427 -s 0 -d 9 -p ack -e 40 -c 0 -i 4130 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.3545 -s 10 -d 7 -p ack -e 40 -c 0 -i 4134 -a 0 -x {10.0 9.0 2062 ------- null} + -t 2.3545 -s 7 -d 0 -p ack -e 40 -c 0 -i 4134 -a 0 -x {10.0 9.0 2062 ------- null} h -t 2.3545 -s 7 -d 8 -p ack -e 40 -c 0 -i 4134 -a 0 -x {10.0 9.0 2062 ------- null} r -t 2.35467 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4119 -a 0 -x {9.0 10.0 2064 ------- null} + -t 2.35467 -s 10 -d 7 -p ack -e 40 -c 0 -i 4138 -a 0 -x {10.0 9.0 2064 ------- null} - -t 2.35467 -s 10 -d 7 -p ack -e 40 -c 0 -i 4138 -a 0 -x {10.0 9.0 2064 ------- null} h -t 2.35467 -s 10 -d 7 -p ack -e 40 -c 0 -i 4138 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.35477 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4133 -a 0 -x {9.0 10.0 2071 ------- null} + -t 2.35477 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4133 -a 0 -x {9.0 10.0 2071 ------- null} h -t 2.35477 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4133 -a 0 -x {9.0 10.0 2071 ------- null} + -t 2.35525 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4125 -a 0 -x {9.0 10.0 2067 ------- null} - -t 2.35525 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4125 -a 0 -x {9.0 10.0 2067 ------- null} h -t 2.35525 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4125 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.3553 -s 0 -d 9 -p ack -e 40 -c 0 -i 4128 -a 0 -x {10.0 9.0 2059 ------- null} + -t 2.3553 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4139 -a 0 -x {9.0 10.0 2074 ------- null} - -t 2.3553 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4139 -a 0 -x {9.0 10.0 2074 ------- null} h -t 2.3553 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4139 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.35539 -s 0 -d 9 -p ack -e 40 -c 0 -i 4132 -a 0 -x {10.0 9.0 2061 ------- null} - -t 2.35539 -s 0 -d 9 -p ack -e 40 -c 0 -i 4132 -a 0 -x {10.0 9.0 2061 ------- null} h -t 2.35539 -s 0 -d 9 -p ack -e 40 -c 0 -i 4132 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.35562 -s 10 -d 7 -p ack -e 40 -c 0 -i 4136 -a 0 -x {10.0 9.0 2063 ------- null} + -t 2.35562 -s 7 -d 0 -p ack -e 40 -c 0 -i 4136 -a 0 -x {10.0 9.0 2063 ------- null} h -t 2.35562 -s 7 -d 8 -p ack -e 40 -c 0 -i 4136 -a 0 -x {10.0 9.0 2063 ------- null} r -t 2.35576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4135 -a 0 -x {9.0 10.0 2072 ------- null} + -t 2.35576 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4135 -a 0 -x {9.0 10.0 2072 ------- null} h -t 2.35576 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4135 -a 0 -x {9.0 10.0 2072 ------- null} r -t 2.35587 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4121 -a 0 -x {9.0 10.0 2065 ------- null} + -t 2.35587 -s 10 -d 7 -p ack -e 40 -c 0 -i 4140 -a 0 -x {10.0 9.0 2065 ------- null} - -t 2.35587 -s 10 -d 7 -p ack -e 40 -c 0 -i 4140 -a 0 -x {10.0 9.0 2065 ------- null} h -t 2.35587 -s 10 -d 7 -p ack -e 40 -c 0 -i 4140 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.3563 -s 0 -d 9 -p ack -e 40 -c 0 -i 4130 -a 0 -x {10.0 9.0 2060 ------- null} + -t 2.3563 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4141 -a 0 -x {9.0 10.0 2075 ------- null} - -t 2.3563 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4141 -a 0 -x {9.0 10.0 2075 ------- null} h -t 2.3563 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4141 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.35634 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4127 -a 0 -x {9.0 10.0 2068 ------- null} - -t 2.35634 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4127 -a 0 -x {9.0 10.0 2068 ------- null} h -t 2.35634 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4127 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.35661 -s 0 -d 9 -p ack -e 40 -c 0 -i 4134 -a 0 -x {10.0 9.0 2062 ------- null} - -t 2.35661 -s 0 -d 9 -p ack -e 40 -c 0 -i 4134 -a 0 -x {10.0 9.0 2062 ------- null} h -t 2.35661 -s 0 -d 9 -p ack -e 40 -c 0 -i 4134 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.3567 -s 10 -d 7 -p ack -e 40 -c 0 -i 4138 -a 0 -x {10.0 9.0 2064 ------- null} + -t 2.3567 -s 7 -d 0 -p ack -e 40 -c 0 -i 4138 -a 0 -x {10.0 9.0 2064 ------- null} h -t 2.3567 -s 7 -d 8 -p ack -e 40 -c 0 -i 4138 -a 0 -x {10.0 9.0 2064 ------- null} r -t 2.35696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4123 -a 0 -x {9.0 10.0 2066 ------- null} + -t 2.35696 -s 10 -d 7 -p ack -e 40 -c 0 -i 4142 -a 0 -x {10.0 9.0 2066 ------- null} - -t 2.35696 -s 10 -d 7 -p ack -e 40 -c 0 -i 4142 -a 0 -x {10.0 9.0 2066 ------- null} h -t 2.35696 -s 10 -d 7 -p ack -e 40 -c 0 -i 4142 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.35699 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4137 -a 0 -x {9.0 10.0 2073 ------- null} + -t 2.35699 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4137 -a 0 -x {9.0 10.0 2073 ------- null} h -t 2.35699 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4137 -a 0 -x {9.0 10.0 2073 ------- null} r -t 2.35742 -s 0 -d 9 -p ack -e 40 -c 0 -i 4132 -a 0 -x {10.0 9.0 2061 ------- null} + -t 2.35742 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4143 -a 0 -x {9.0 10.0 2076 ------- null} - -t 2.35742 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4143 -a 0 -x {9.0 10.0 2076 ------- null} h -t 2.35742 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4143 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.35757 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4129 -a 0 -x {9.0 10.0 2069 ------- null} - -t 2.35757 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4129 -a 0 -x {9.0 10.0 2069 ------- null} h -t 2.35757 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4129 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.35782 -s 0 -d 9 -p ack -e 40 -c 0 -i 4136 -a 0 -x {10.0 9.0 2063 ------- null} - -t 2.35782 -s 0 -d 9 -p ack -e 40 -c 0 -i 4136 -a 0 -x {10.0 9.0 2063 ------- null} h -t 2.35782 -s 0 -d 9 -p ack -e 40 -c 0 -i 4136 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.3579 -s 10 -d 7 -p ack -e 40 -c 0 -i 4140 -a 0 -x {10.0 9.0 2065 ------- null} + -t 2.3579 -s 7 -d 0 -p ack -e 40 -c 0 -i 4140 -a 0 -x {10.0 9.0 2065 ------- null} h -t 2.3579 -s 7 -d 8 -p ack -e 40 -c 0 -i 4140 -a 0 -x {10.0 9.0 2065 ------- null} r -t 2.35805 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4125 -a 0 -x {9.0 10.0 2067 ------- null} + -t 2.35805 -s 10 -d 7 -p ack -e 40 -c 0 -i 4144 -a 0 -x {10.0 9.0 2067 ------- null} - -t 2.35805 -s 10 -d 7 -p ack -e 40 -c 0 -i 4144 -a 0 -x {10.0 9.0 2067 ------- null} h -t 2.35805 -s 10 -d 7 -p ack -e 40 -c 0 -i 4144 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.3581 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4139 -a 0 -x {9.0 10.0 2074 ------- null} + -t 2.3581 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4139 -a 0 -x {9.0 10.0 2074 ------- null} h -t 2.3581 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4139 -a 0 -x {9.0 10.0 2074 ------- null} r -t 2.35864 -s 0 -d 9 -p ack -e 40 -c 0 -i 4134 -a 0 -x {10.0 9.0 2062 ------- null} + -t 2.35864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4145 -a 0 -x {9.0 10.0 2077 ------- null} - -t 2.35864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4145 -a 0 -x {9.0 10.0 2077 ------- null} h -t 2.35864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4145 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.35874 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4131 -a 0 -x {9.0 10.0 2070 ------- null} - -t 2.35874 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4131 -a 0 -x {9.0 10.0 2070 ------- null} h -t 2.35874 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4131 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.35894 -s 0 -d 9 -p ack -e 40 -c 0 -i 4138 -a 0 -x {10.0 9.0 2064 ------- null} - -t 2.35894 -s 0 -d 9 -p ack -e 40 -c 0 -i 4138 -a 0 -x {10.0 9.0 2064 ------- null} h -t 2.35894 -s 0 -d 9 -p ack -e 40 -c 0 -i 4138 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.35899 -s 10 -d 7 -p ack -e 40 -c 0 -i 4142 -a 0 -x {10.0 9.0 2066 ------- null} + -t 2.35899 -s 7 -d 0 -p ack -e 40 -c 0 -i 4142 -a 0 -x {10.0 9.0 2066 ------- null} h -t 2.35899 -s 7 -d 8 -p ack -e 40 -c 0 -i 4142 -a 0 -x {10.0 9.0 2066 ------- null} r -t 2.3591 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4141 -a 0 -x {9.0 10.0 2075 ------- null} + -t 2.3591 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4141 -a 0 -x {9.0 10.0 2075 ------- null} h -t 2.3591 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4141 -a 0 -x {9.0 10.0 2075 ------- null} r -t 2.35914 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4127 -a 0 -x {9.0 10.0 2068 ------- null} + -t 2.35914 -s 10 -d 7 -p ack -e 40 -c 0 -i 4146 -a 0 -x {10.0 9.0 2068 ------- null} - -t 2.35914 -s 10 -d 7 -p ack -e 40 -c 0 -i 4146 -a 0 -x {10.0 9.0 2068 ------- null} h -t 2.35914 -s 10 -d 7 -p ack -e 40 -c 0 -i 4146 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.35982 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4133 -a 0 -x {9.0 10.0 2071 ------- null} - -t 2.35982 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4133 -a 0 -x {9.0 10.0 2071 ------- null} h -t 2.35982 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4133 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.35986 -s 0 -d 9 -p ack -e 40 -c 0 -i 4136 -a 0 -x {10.0 9.0 2063 ------- null} + -t 2.35986 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4147 -a 0 -x {9.0 10.0 2078 ------- null} - -t 2.35986 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4147 -a 0 -x {9.0 10.0 2078 ------- null} h -t 2.35986 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4147 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.36002 -s 0 -d 9 -p ack -e 40 -c 0 -i 4140 -a 0 -x {10.0 9.0 2065 ------- null} - -t 2.36002 -s 0 -d 9 -p ack -e 40 -c 0 -i 4140 -a 0 -x {10.0 9.0 2065 ------- null} h -t 2.36002 -s 0 -d 9 -p ack -e 40 -c 0 -i 4140 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.36008 -s 10 -d 7 -p ack -e 40 -c 0 -i 4144 -a 0 -x {10.0 9.0 2067 ------- null} + -t 2.36008 -s 7 -d 0 -p ack -e 40 -c 0 -i 4144 -a 0 -x {10.0 9.0 2067 ------- null} h -t 2.36008 -s 7 -d 8 -p ack -e 40 -c 0 -i 4144 -a 0 -x {10.0 9.0 2067 ------- null} r -t 2.36022 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4143 -a 0 -x {9.0 10.0 2076 ------- null} + -t 2.36022 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4143 -a 0 -x {9.0 10.0 2076 ------- null} h -t 2.36022 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4143 -a 0 -x {9.0 10.0 2076 ------- null} r -t 2.36037 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4129 -a 0 -x {9.0 10.0 2069 ------- null} + -t 2.36037 -s 10 -d 7 -p ack -e 40 -c 0 -i 4148 -a 0 -x {10.0 9.0 2069 ------- null} - -t 2.36037 -s 10 -d 7 -p ack -e 40 -c 0 -i 4148 -a 0 -x {10.0 9.0 2069 ------- null} h -t 2.36037 -s 10 -d 7 -p ack -e 40 -c 0 -i 4148 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.36091 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4135 -a 0 -x {9.0 10.0 2072 ------- null} - -t 2.36091 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4135 -a 0 -x {9.0 10.0 2072 ------- null} h -t 2.36091 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4135 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.36098 -s 0 -d 9 -p ack -e 40 -c 0 -i 4138 -a 0 -x {10.0 9.0 2064 ------- null} + -t 2.36098 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4149 -a 0 -x {9.0 10.0 2079 ------- null} - -t 2.36098 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4149 -a 0 -x {9.0 10.0 2079 ------- null} h -t 2.36098 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4149 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.3611 -s 0 -d 9 -p ack -e 40 -c 0 -i 4142 -a 0 -x {10.0 9.0 2066 ------- null} - -t 2.3611 -s 0 -d 9 -p ack -e 40 -c 0 -i 4142 -a 0 -x {10.0 9.0 2066 ------- null} h -t 2.3611 -s 0 -d 9 -p ack -e 40 -c 0 -i 4142 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.36117 -s 10 -d 7 -p ack -e 40 -c 0 -i 4146 -a 0 -x {10.0 9.0 2068 ------- null} + -t 2.36117 -s 7 -d 0 -p ack -e 40 -c 0 -i 4146 -a 0 -x {10.0 9.0 2068 ------- null} h -t 2.36117 -s 7 -d 8 -p ack -e 40 -c 0 -i 4146 -a 0 -x {10.0 9.0 2068 ------- null} r -t 2.36144 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4145 -a 0 -x {9.0 10.0 2077 ------- null} + -t 2.36144 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4145 -a 0 -x {9.0 10.0 2077 ------- null} h -t 2.36144 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4145 -a 0 -x {9.0 10.0 2077 ------- null} r -t 2.36154 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4131 -a 0 -x {9.0 10.0 2070 ------- null} + -t 2.36154 -s 10 -d 7 -p ack -e 40 -c 0 -i 4150 -a 0 -x {10.0 9.0 2070 ------- null} - -t 2.36154 -s 10 -d 7 -p ack -e 40 -c 0 -i 4150 -a 0 -x {10.0 9.0 2070 ------- null} h -t 2.36154 -s 10 -d 7 -p ack -e 40 -c 0 -i 4150 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.362 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4137 -a 0 -x {9.0 10.0 2073 ------- null} - -t 2.362 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4137 -a 0 -x {9.0 10.0 2073 ------- null} h -t 2.362 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4137 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.36205 -s 0 -d 9 -p ack -e 40 -c 0 -i 4140 -a 0 -x {10.0 9.0 2065 ------- null} + -t 2.36205 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4151 -a 0 -x {9.0 10.0 2080 ------- null} - -t 2.36205 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4151 -a 0 -x {9.0 10.0 2080 ------- null} h -t 2.36205 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4151 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.3623 -s 0 -d 9 -p ack -e 40 -c 0 -i 4144 -a 0 -x {10.0 9.0 2067 ------- null} - -t 2.3623 -s 0 -d 9 -p ack -e 40 -c 0 -i 4144 -a 0 -x {10.0 9.0 2067 ------- null} h -t 2.3623 -s 0 -d 9 -p ack -e 40 -c 0 -i 4144 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.3624 -s 10 -d 7 -p ack -e 40 -c 0 -i 4148 -a 0 -x {10.0 9.0 2069 ------- null} + -t 2.3624 -s 7 -d 0 -p ack -e 40 -c 0 -i 4148 -a 0 -x {10.0 9.0 2069 ------- null} h -t 2.3624 -s 7 -d 8 -p ack -e 40 -c 0 -i 4148 -a 0 -x {10.0 9.0 2069 ------- null} r -t 2.36262 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4133 -a 0 -x {9.0 10.0 2071 ------- null} + -t 2.36262 -s 10 -d 7 -p ack -e 40 -c 0 -i 4152 -a 0 -x {10.0 9.0 2071 ------- null} - -t 2.36262 -s 10 -d 7 -p ack -e 40 -c 0 -i 4152 -a 0 -x {10.0 9.0 2071 ------- null} h -t 2.36262 -s 10 -d 7 -p ack -e 40 -c 0 -i 4152 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.36266 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4147 -a 0 -x {9.0 10.0 2078 ------- null} + -t 2.36266 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4147 -a 0 -x {9.0 10.0 2078 ------- null} h -t 2.36266 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4147 -a 0 -x {9.0 10.0 2078 ------- null} r -t 2.36314 -s 0 -d 9 -p ack -e 40 -c 0 -i 4142 -a 0 -x {10.0 9.0 2066 ------- null} + -t 2.36314 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4153 -a 0 -x {9.0 10.0 2081 ------- null} - -t 2.36314 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4153 -a 0 -x {9.0 10.0 2081 ------- null} h -t 2.36314 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4153 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.36317 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4139 -a 0 -x {9.0 10.0 2074 ------- null} - -t 2.36317 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4139 -a 0 -x {9.0 10.0 2074 ------- null} h -t 2.36317 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4139 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.36336 -s 0 -d 9 -p ack -e 40 -c 0 -i 4146 -a 0 -x {10.0 9.0 2068 ------- null} - -t 2.36336 -s 0 -d 9 -p ack -e 40 -c 0 -i 4146 -a 0 -x {10.0 9.0 2068 ------- null} h -t 2.36336 -s 0 -d 9 -p ack -e 40 -c 0 -i 4146 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.36357 -s 10 -d 7 -p ack -e 40 -c 0 -i 4150 -a 0 -x {10.0 9.0 2070 ------- null} + -t 2.36357 -s 7 -d 0 -p ack -e 40 -c 0 -i 4150 -a 0 -x {10.0 9.0 2070 ------- null} h -t 2.36357 -s 7 -d 8 -p ack -e 40 -c 0 -i 4150 -a 0 -x {10.0 9.0 2070 ------- null} r -t 2.36371 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4135 -a 0 -x {9.0 10.0 2072 ------- null} + -t 2.36371 -s 10 -d 7 -p ack -e 40 -c 0 -i 4154 -a 0 -x {10.0 9.0 2072 ------- null} - -t 2.36371 -s 10 -d 7 -p ack -e 40 -c 0 -i 4154 -a 0 -x {10.0 9.0 2072 ------- null} h -t 2.36371 -s 10 -d 7 -p ack -e 40 -c 0 -i 4154 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.36378 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4149 -a 0 -x {9.0 10.0 2079 ------- null} + -t 2.36378 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4149 -a 0 -x {9.0 10.0 2079 ------- null} h -t 2.36378 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4149 -a 0 -x {9.0 10.0 2079 ------- null} + -t 2.36426 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4141 -a 0 -x {9.0 10.0 2075 ------- null} - -t 2.36426 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4141 -a 0 -x {9.0 10.0 2075 ------- null} h -t 2.36426 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4141 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.36434 -s 0 -d 9 -p ack -e 40 -c 0 -i 4144 -a 0 -x {10.0 9.0 2067 ------- null} + -t 2.36434 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4155 -a 0 -x {9.0 10.0 2082 ------- null} - -t 2.36434 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4155 -a 0 -x {9.0 10.0 2082 ------- null} h -t 2.36434 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4155 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.36445 -s 0 -d 9 -p ack -e 40 -c 0 -i 4148 -a 0 -x {10.0 9.0 2069 ------- null} - -t 2.36445 -s 0 -d 9 -p ack -e 40 -c 0 -i 4148 -a 0 -x {10.0 9.0 2069 ------- null} h -t 2.36445 -s 0 -d 9 -p ack -e 40 -c 0 -i 4148 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.36466 -s 10 -d 7 -p ack -e 40 -c 0 -i 4152 -a 0 -x {10.0 9.0 2071 ------- null} + -t 2.36466 -s 7 -d 0 -p ack -e 40 -c 0 -i 4152 -a 0 -x {10.0 9.0 2071 ------- null} h -t 2.36466 -s 7 -d 8 -p ack -e 40 -c 0 -i 4152 -a 0 -x {10.0 9.0 2071 ------- null} r -t 2.3648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4137 -a 0 -x {9.0 10.0 2073 ------- null} + -t 2.3648 -s 10 -d 7 -p ack -e 40 -c 0 -i 4156 -a 0 -x {10.0 9.0 2073 ------- null} - -t 2.3648 -s 10 -d 7 -p ack -e 40 -c 0 -i 4156 -a 0 -x {10.0 9.0 2073 ------- null} h -t 2.3648 -s 10 -d 7 -p ack -e 40 -c 0 -i 4156 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.36485 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4151 -a 0 -x {9.0 10.0 2080 ------- null} + -t 2.36485 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4151 -a 0 -x {9.0 10.0 2080 ------- null} h -t 2.36485 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4151 -a 0 -x {9.0 10.0 2080 ------- null} + -t 2.36534 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4143 -a 0 -x {9.0 10.0 2076 ------- null} - -t 2.36534 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4143 -a 0 -x {9.0 10.0 2076 ------- null} h -t 2.36534 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4143 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.36539 -s 0 -d 9 -p ack -e 40 -c 0 -i 4146 -a 0 -x {10.0 9.0 2068 ------- null} + -t 2.36539 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4157 -a 0 -x {9.0 10.0 2083 ------- null} - -t 2.36539 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4157 -a 0 -x {9.0 10.0 2083 ------- null} h -t 2.36539 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4157 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.36549 -s 0 -d 9 -p ack -e 40 -c 0 -i 4150 -a 0 -x {10.0 9.0 2070 ------- null} - -t 2.36549 -s 0 -d 9 -p ack -e 40 -c 0 -i 4150 -a 0 -x {10.0 9.0 2070 ------- null} h -t 2.36549 -s 0 -d 9 -p ack -e 40 -c 0 -i 4150 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.36574 -s 10 -d 7 -p ack -e 40 -c 0 -i 4154 -a 0 -x {10.0 9.0 2072 ------- null} + -t 2.36574 -s 7 -d 0 -p ack -e 40 -c 0 -i 4154 -a 0 -x {10.0 9.0 2072 ------- null} h -t 2.36574 -s 7 -d 8 -p ack -e 40 -c 0 -i 4154 -a 0 -x {10.0 9.0 2072 ------- null} r -t 2.36594 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4153 -a 0 -x {9.0 10.0 2081 ------- null} + -t 2.36594 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4153 -a 0 -x {9.0 10.0 2081 ------- null} h -t 2.36594 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4153 -a 0 -x {9.0 10.0 2081 ------- null} r -t 2.36597 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4139 -a 0 -x {9.0 10.0 2074 ------- null} + -t 2.36597 -s 10 -d 7 -p ack -e 40 -c 0 -i 4158 -a 0 -x {10.0 9.0 2074 ------- null} - -t 2.36597 -s 10 -d 7 -p ack -e 40 -c 0 -i 4158 -a 0 -x {10.0 9.0 2074 ------- null} h -t 2.36597 -s 10 -d 7 -p ack -e 40 -c 0 -i 4158 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.36643 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4145 -a 0 -x {9.0 10.0 2077 ------- null} - -t 2.36643 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4145 -a 0 -x {9.0 10.0 2077 ------- null} h -t 2.36643 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4145 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.36648 -s 0 -d 9 -p ack -e 40 -c 0 -i 4148 -a 0 -x {10.0 9.0 2069 ------- null} + -t 2.36648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4159 -a 0 -x {9.0 10.0 2084 ------- null} - -t 2.36648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4159 -a 0 -x {9.0 10.0 2084 ------- null} h -t 2.36648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4159 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.36662 -s 0 -d 9 -p ack -e 40 -c 0 -i 4152 -a 0 -x {10.0 9.0 2071 ------- null} - -t 2.36662 -s 0 -d 9 -p ack -e 40 -c 0 -i 4152 -a 0 -x {10.0 9.0 2071 ------- null} h -t 2.36662 -s 0 -d 9 -p ack -e 40 -c 0 -i 4152 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.36683 -s 10 -d 7 -p ack -e 40 -c 0 -i 4156 -a 0 -x {10.0 9.0 2073 ------- null} + -t 2.36683 -s 7 -d 0 -p ack -e 40 -c 0 -i 4156 -a 0 -x {10.0 9.0 2073 ------- null} h -t 2.36683 -s 7 -d 8 -p ack -e 40 -c 0 -i 4156 -a 0 -x {10.0 9.0 2073 ------- null} r -t 2.36706 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4141 -a 0 -x {9.0 10.0 2075 ------- null} + -t 2.36706 -s 10 -d 7 -p ack -e 40 -c 0 -i 4160 -a 0 -x {10.0 9.0 2075 ------- null} - -t 2.36706 -s 10 -d 7 -p ack -e 40 -c 0 -i 4160 -a 0 -x {10.0 9.0 2075 ------- null} h -t 2.36706 -s 10 -d 7 -p ack -e 40 -c 0 -i 4160 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.36714 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4155 -a 0 -x {9.0 10.0 2082 ------- null} + -t 2.36714 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4155 -a 0 -x {9.0 10.0 2082 ------- null} h -t 2.36714 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4155 -a 0 -x {9.0 10.0 2082 ------- null} + -t 2.36752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4147 -a 0 -x {9.0 10.0 2078 ------- null} - -t 2.36752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4147 -a 0 -x {9.0 10.0 2078 ------- null} h -t 2.36752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4147 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.36752 -s 0 -d 9 -p ack -e 40 -c 0 -i 4150 -a 0 -x {10.0 9.0 2070 ------- null} + -t 2.36752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4161 -a 0 -x {9.0 10.0 2085 ------- null} - -t 2.36752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4161 -a 0 -x {9.0 10.0 2085 ------- null} h -t 2.36752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4161 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.36762 -s 0 -d 9 -p ack -e 40 -c 0 -i 4154 -a 0 -x {10.0 9.0 2072 ------- null} - -t 2.36762 -s 0 -d 9 -p ack -e 40 -c 0 -i 4154 -a 0 -x {10.0 9.0 2072 ------- null} h -t 2.36762 -s 0 -d 9 -p ack -e 40 -c 0 -i 4154 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.368 -s 10 -d 7 -p ack -e 40 -c 0 -i 4158 -a 0 -x {10.0 9.0 2074 ------- null} + -t 2.368 -s 7 -d 0 -p ack -e 40 -c 0 -i 4158 -a 0 -x {10.0 9.0 2074 ------- null} h -t 2.368 -s 7 -d 8 -p ack -e 40 -c 0 -i 4158 -a 0 -x {10.0 9.0 2074 ------- null} r -t 2.36814 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4143 -a 0 -x {9.0 10.0 2076 ------- null} + -t 2.36814 -s 10 -d 7 -p ack -e 40 -c 0 -i 4162 -a 0 -x {10.0 9.0 2076 ------- null} - -t 2.36814 -s 10 -d 7 -p ack -e 40 -c 0 -i 4162 -a 0 -x {10.0 9.0 2076 ------- null} h -t 2.36814 -s 10 -d 7 -p ack -e 40 -c 0 -i 4162 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.36819 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4157 -a 0 -x {9.0 10.0 2083 ------- null} + -t 2.36819 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4157 -a 0 -x {9.0 10.0 2083 ------- null} h -t 2.36819 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4157 -a 0 -x {9.0 10.0 2083 ------- null} + -t 2.36861 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4149 -a 0 -x {9.0 10.0 2079 ------- null} - -t 2.36861 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4149 -a 0 -x {9.0 10.0 2079 ------- null} h -t 2.36861 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4149 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.36866 -s 0 -d 9 -p ack -e 40 -c 0 -i 4152 -a 0 -x {10.0 9.0 2071 ------- null} + -t 2.36866 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4163 -a 0 -x {9.0 10.0 2086 ------- null} - -t 2.36866 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4163 -a 0 -x {9.0 10.0 2086 ------- null} h -t 2.36866 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4163 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.3688 -s 0 -d 9 -p ack -e 40 -c 0 -i 4156 -a 0 -x {10.0 9.0 2073 ------- null} - -t 2.3688 -s 0 -d 9 -p ack -e 40 -c 0 -i 4156 -a 0 -x {10.0 9.0 2073 ------- null} h -t 2.3688 -s 0 -d 9 -p ack -e 40 -c 0 -i 4156 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.36909 -s 10 -d 7 -p ack -e 40 -c 0 -i 4160 -a 0 -x {10.0 9.0 2075 ------- null} + -t 2.36909 -s 7 -d 0 -p ack -e 40 -c 0 -i 4160 -a 0 -x {10.0 9.0 2075 ------- null} h -t 2.36909 -s 7 -d 8 -p ack -e 40 -c 0 -i 4160 -a 0 -x {10.0 9.0 2075 ------- null} r -t 2.36923 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4145 -a 0 -x {9.0 10.0 2077 ------- null} + -t 2.36923 -s 10 -d 7 -p ack -e 40 -c 0 -i 4164 -a 0 -x {10.0 9.0 2077 ------- null} - -t 2.36923 -s 10 -d 7 -p ack -e 40 -c 0 -i 4164 -a 0 -x {10.0 9.0 2077 ------- null} h -t 2.36923 -s 10 -d 7 -p ack -e 40 -c 0 -i 4164 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.36928 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4159 -a 0 -x {9.0 10.0 2084 ------- null} + -t 2.36928 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4159 -a 0 -x {9.0 10.0 2084 ------- null} h -t 2.36928 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4159 -a 0 -x {9.0 10.0 2084 ------- null} r -t 2.36965 -s 0 -d 9 -p ack -e 40 -c 0 -i 4154 -a 0 -x {10.0 9.0 2072 ------- null} + -t 2.36965 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4165 -a 0 -x {9.0 10.0 2087 ------- null} - -t 2.36965 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4165 -a 0 -x {9.0 10.0 2087 ------- null} h -t 2.36965 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4165 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.3697 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4151 -a 0 -x {9.0 10.0 2080 ------- null} - -t 2.3697 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4151 -a 0 -x {9.0 10.0 2080 ------- null} h -t 2.3697 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4151 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.36998 -s 0 -d 9 -p ack -e 40 -c 0 -i 4158 -a 0 -x {10.0 9.0 2074 ------- null} - -t 2.36998 -s 0 -d 9 -p ack -e 40 -c 0 -i 4158 -a 0 -x {10.0 9.0 2074 ------- null} h -t 2.36998 -s 0 -d 9 -p ack -e 40 -c 0 -i 4158 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.37018 -s 10 -d 7 -p ack -e 40 -c 0 -i 4162 -a 0 -x {10.0 9.0 2076 ------- null} + -t 2.37018 -s 7 -d 0 -p ack -e 40 -c 0 -i 4162 -a 0 -x {10.0 9.0 2076 ------- null} h -t 2.37018 -s 7 -d 8 -p ack -e 40 -c 0 -i 4162 -a 0 -x {10.0 9.0 2076 ------- null} r -t 2.37032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4147 -a 0 -x {9.0 10.0 2078 ------- null} + -t 2.37032 -s 10 -d 7 -p ack -e 40 -c 0 -i 4166 -a 0 -x {10.0 9.0 2078 ------- null} - -t 2.37032 -s 10 -d 7 -p ack -e 40 -c 0 -i 4166 -a 0 -x {10.0 9.0 2078 ------- null} h -t 2.37032 -s 10 -d 7 -p ack -e 40 -c 0 -i 4166 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.37032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4161 -a 0 -x {9.0 10.0 2085 ------- null} + -t 2.37032 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4161 -a 0 -x {9.0 10.0 2085 ------- null} h -t 2.37032 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4161 -a 0 -x {9.0 10.0 2085 ------- null} r -t 2.37083 -s 0 -d 9 -p ack -e 40 -c 0 -i 4156 -a 0 -x {10.0 9.0 2073 ------- null} + -t 2.37083 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4167 -a 0 -x {9.0 10.0 2088 ------- null} - -t 2.37083 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4167 -a 0 -x {9.0 10.0 2088 ------- null} h -t 2.37083 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4167 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.37085 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4153 -a 0 -x {9.0 10.0 2081 ------- null} - -t 2.37085 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4153 -a 0 -x {9.0 10.0 2081 ------- null} h -t 2.37085 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4153 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.37101 -s 0 -d 9 -p ack -e 40 -c 0 -i 4160 -a 0 -x {10.0 9.0 2075 ------- null} - -t 2.37101 -s 0 -d 9 -p ack -e 40 -c 0 -i 4160 -a 0 -x {10.0 9.0 2075 ------- null} h -t 2.37101 -s 0 -d 9 -p ack -e 40 -c 0 -i 4160 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.37126 -s 10 -d 7 -p ack -e 40 -c 0 -i 4164 -a 0 -x {10.0 9.0 2077 ------- null} + -t 2.37126 -s 7 -d 0 -p ack -e 40 -c 0 -i 4164 -a 0 -x {10.0 9.0 2077 ------- null} h -t 2.37126 -s 7 -d 8 -p ack -e 40 -c 0 -i 4164 -a 0 -x {10.0 9.0 2077 ------- null} r -t 2.37141 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4149 -a 0 -x {9.0 10.0 2079 ------- null} + -t 2.37141 -s 10 -d 7 -p ack -e 40 -c 0 -i 4168 -a 0 -x {10.0 9.0 2079 ------- null} - -t 2.37141 -s 10 -d 7 -p ack -e 40 -c 0 -i 4168 -a 0 -x {10.0 9.0 2079 ------- null} h -t 2.37141 -s 10 -d 7 -p ack -e 40 -c 0 -i 4168 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.37146 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4163 -a 0 -x {9.0 10.0 2086 ------- null} + -t 2.37146 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4163 -a 0 -x {9.0 10.0 2086 ------- null} h -t 2.37146 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4163 -a 0 -x {9.0 10.0 2086 ------- null} + -t 2.37194 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4155 -a 0 -x {9.0 10.0 2082 ------- null} - -t 2.37194 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4155 -a 0 -x {9.0 10.0 2082 ------- null} h -t 2.37194 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4155 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.37202 -s 0 -d 9 -p ack -e 40 -c 0 -i 4158 -a 0 -x {10.0 9.0 2074 ------- null} + -t 2.37202 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4169 -a 0 -x {9.0 10.0 2089 ------- null} - -t 2.37202 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4169 -a 0 -x {9.0 10.0 2089 ------- null} h -t 2.37202 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4169 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.3721 -s 0 -d 9 -p ack -e 40 -c 0 -i 4162 -a 0 -x {10.0 9.0 2076 ------- null} - -t 2.3721 -s 0 -d 9 -p ack -e 40 -c 0 -i 4162 -a 0 -x {10.0 9.0 2076 ------- null} h -t 2.3721 -s 0 -d 9 -p ack -e 40 -c 0 -i 4162 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.37235 -s 10 -d 7 -p ack -e 40 -c 0 -i 4166 -a 0 -x {10.0 9.0 2078 ------- null} + -t 2.37235 -s 7 -d 0 -p ack -e 40 -c 0 -i 4166 -a 0 -x {10.0 9.0 2078 ------- null} h -t 2.37235 -s 7 -d 8 -p ack -e 40 -c 0 -i 4166 -a 0 -x {10.0 9.0 2078 ------- null} r -t 2.37245 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4165 -a 0 -x {9.0 10.0 2087 ------- null} + -t 2.37245 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4165 -a 0 -x {9.0 10.0 2087 ------- null} h -t 2.37245 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4165 -a 0 -x {9.0 10.0 2087 ------- null} r -t 2.3725 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4151 -a 0 -x {9.0 10.0 2080 ------- null} + -t 2.3725 -s 10 -d 7 -p ack -e 40 -c 0 -i 4170 -a 0 -x {10.0 9.0 2080 ------- null} - -t 2.3725 -s 10 -d 7 -p ack -e 40 -c 0 -i 4170 -a 0 -x {10.0 9.0 2080 ------- null} h -t 2.3725 -s 10 -d 7 -p ack -e 40 -c 0 -i 4170 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.37302 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4157 -a 0 -x {9.0 10.0 2083 ------- null} - -t 2.37302 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4157 -a 0 -x {9.0 10.0 2083 ------- null} h -t 2.37302 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4157 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.37304 -s 0 -d 9 -p ack -e 40 -c 0 -i 4160 -a 0 -x {10.0 9.0 2075 ------- null} + -t 2.37304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4171 -a 0 -x {9.0 10.0 2090 ------- null} - -t 2.37304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4171 -a 0 -x {9.0 10.0 2090 ------- null} h -t 2.37304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4171 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.37312 -s 0 -d 9 -p ack -e 40 -c 0 -i 4164 -a 0 -x {10.0 9.0 2077 ------- null} - -t 2.37312 -s 0 -d 9 -p ack -e 40 -c 0 -i 4164 -a 0 -x {10.0 9.0 2077 ------- null} h -t 2.37312 -s 0 -d 9 -p ack -e 40 -c 0 -i 4164 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.37344 -s 10 -d 7 -p ack -e 40 -c 0 -i 4168 -a 0 -x {10.0 9.0 2079 ------- null} + -t 2.37344 -s 7 -d 0 -p ack -e 40 -c 0 -i 4168 -a 0 -x {10.0 9.0 2079 ------- null} h -t 2.37344 -s 7 -d 8 -p ack -e 40 -c 0 -i 4168 -a 0 -x {10.0 9.0 2079 ------- null} r -t 2.37363 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4167 -a 0 -x {9.0 10.0 2088 ------- null} + -t 2.37363 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4167 -a 0 -x {9.0 10.0 2088 ------- null} h -t 2.37363 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4167 -a 0 -x {9.0 10.0 2088 ------- null} r -t 2.37365 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4153 -a 0 -x {9.0 10.0 2081 ------- null} + -t 2.37365 -s 10 -d 7 -p ack -e 40 -c 0 -i 4172 -a 0 -x {10.0 9.0 2081 ------- null} - -t 2.37365 -s 10 -d 7 -p ack -e 40 -c 0 -i 4172 -a 0 -x {10.0 9.0 2081 ------- null} h -t 2.37365 -s 10 -d 7 -p ack -e 40 -c 0 -i 4172 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.37411 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4159 -a 0 -x {9.0 10.0 2084 ------- null} - -t 2.37411 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4159 -a 0 -x {9.0 10.0 2084 ------- null} h -t 2.37411 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4159 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.37413 -s 0 -d 9 -p ack -e 40 -c 0 -i 4162 -a 0 -x {10.0 9.0 2076 ------- null} + -t 2.37413 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4173 -a 0 -x {9.0 10.0 2091 ------- null} - -t 2.37413 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4173 -a 0 -x {9.0 10.0 2091 ------- null} h -t 2.37413 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4173 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.37438 -s 0 -d 9 -p ack -e 40 -c 0 -i 4166 -a 0 -x {10.0 9.0 2078 ------- null} - -t 2.37438 -s 0 -d 9 -p ack -e 40 -c 0 -i 4166 -a 0 -x {10.0 9.0 2078 ------- null} h -t 2.37438 -s 0 -d 9 -p ack -e 40 -c 0 -i 4166 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.37453 -s 10 -d 7 -p ack -e 40 -c 0 -i 4170 -a 0 -x {10.0 9.0 2080 ------- null} + -t 2.37453 -s 7 -d 0 -p ack -e 40 -c 0 -i 4170 -a 0 -x {10.0 9.0 2080 ------- null} h -t 2.37453 -s 7 -d 8 -p ack -e 40 -c 0 -i 4170 -a 0 -x {10.0 9.0 2080 ------- null} r -t 2.37474 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4155 -a 0 -x {9.0 10.0 2082 ------- null} + -t 2.37474 -s 10 -d 7 -p ack -e 40 -c 0 -i 4174 -a 0 -x {10.0 9.0 2082 ------- null} - -t 2.37474 -s 10 -d 7 -p ack -e 40 -c 0 -i 4174 -a 0 -x {10.0 9.0 2082 ------- null} h -t 2.37474 -s 10 -d 7 -p ack -e 40 -c 0 -i 4174 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.37482 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4169 -a 0 -x {9.0 10.0 2089 ------- null} + -t 2.37482 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4169 -a 0 -x {9.0 10.0 2089 ------- null} h -t 2.37482 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4169 -a 0 -x {9.0 10.0 2089 ------- null} r -t 2.37515 -s 0 -d 9 -p ack -e 40 -c 0 -i 4164 -a 0 -x {10.0 9.0 2077 ------- null} + -t 2.37515 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4175 -a 0 -x {9.0 10.0 2092 ------- null} - -t 2.37515 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4175 -a 0 -x {9.0 10.0 2092 ------- null} h -t 2.37515 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4175 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.37539 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4161 -a 0 -x {9.0 10.0 2085 ------- null} - -t 2.37539 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4161 -a 0 -x {9.0 10.0 2085 ------- null} h -t 2.37539 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4161 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.37568 -s 10 -d 7 -p ack -e 40 -c 0 -i 4172 -a 0 -x {10.0 9.0 2081 ------- null} + -t 2.37568 -s 7 -d 0 -p ack -e 40 -c 0 -i 4172 -a 0 -x {10.0 9.0 2081 ------- null} h -t 2.37568 -s 7 -d 8 -p ack -e 40 -c 0 -i 4172 -a 0 -x {10.0 9.0 2081 ------- null} + -t 2.3757 -s 0 -d 9 -p ack -e 40 -c 0 -i 4168 -a 0 -x {10.0 9.0 2079 ------- null} - -t 2.3757 -s 0 -d 9 -p ack -e 40 -c 0 -i 4168 -a 0 -x {10.0 9.0 2079 ------- null} h -t 2.3757 -s 0 -d 9 -p ack -e 40 -c 0 -i 4168 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.37582 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4157 -a 0 -x {9.0 10.0 2083 ------- null} + -t 2.37582 -s 10 -d 7 -p ack -e 40 -c 0 -i 4176 -a 0 -x {10.0 9.0 2083 ------- null} - -t 2.37582 -s 10 -d 7 -p ack -e 40 -c 0 -i 4176 -a 0 -x {10.0 9.0 2083 ------- null} h -t 2.37582 -s 10 -d 7 -p ack -e 40 -c 0 -i 4176 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.37584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4171 -a 0 -x {9.0 10.0 2090 ------- null} + -t 2.37584 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4171 -a 0 -x {9.0 10.0 2090 ------- null} h -t 2.37584 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4171 -a 0 -x {9.0 10.0 2090 ------- null} r -t 2.37642 -s 0 -d 9 -p ack -e 40 -c 0 -i 4166 -a 0 -x {10.0 9.0 2078 ------- null} + -t 2.37642 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4177 -a 0 -x {9.0 10.0 2093 ------- null} - -t 2.37642 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4177 -a 0 -x {9.0 10.0 2093 ------- null} h -t 2.37642 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4177 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.37658 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4163 -a 0 -x {9.0 10.0 2086 ------- null} - -t 2.37658 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4163 -a 0 -x {9.0 10.0 2086 ------- null} h -t 2.37658 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4163 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.37666 -s 0 -d 9 -p ack -e 40 -c 0 -i 4170 -a 0 -x {10.0 9.0 2080 ------- null} - -t 2.37666 -s 0 -d 9 -p ack -e 40 -c 0 -i 4170 -a 0 -x {10.0 9.0 2080 ------- null} h -t 2.37666 -s 0 -d 9 -p ack -e 40 -c 0 -i 4170 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.37677 -s 10 -d 7 -p ack -e 40 -c 0 -i 4174 -a 0 -x {10.0 9.0 2082 ------- null} + -t 2.37677 -s 7 -d 0 -p ack -e 40 -c 0 -i 4174 -a 0 -x {10.0 9.0 2082 ------- null} h -t 2.37677 -s 7 -d 8 -p ack -e 40 -c 0 -i 4174 -a 0 -x {10.0 9.0 2082 ------- null} r -t 2.37691 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4159 -a 0 -x {9.0 10.0 2084 ------- null} + -t 2.37691 -s 10 -d 7 -p ack -e 40 -c 0 -i 4178 -a 0 -x {10.0 9.0 2084 ------- null} - -t 2.37691 -s 10 -d 7 -p ack -e 40 -c 0 -i 4178 -a 0 -x {10.0 9.0 2084 ------- null} h -t 2.37691 -s 10 -d 7 -p ack -e 40 -c 0 -i 4178 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.37693 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4173 -a 0 -x {9.0 10.0 2091 ------- null} + -t 2.37693 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4173 -a 0 -x {9.0 10.0 2091 ------- null} h -t 2.37693 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4173 -a 0 -x {9.0 10.0 2091 ------- null} + -t 2.37766 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4165 -a 0 -x {9.0 10.0 2087 ------- null} - -t 2.37766 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4165 -a 0 -x {9.0 10.0 2087 ------- null} h -t 2.37766 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4165 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.37773 -s 0 -d 9 -p ack -e 40 -c 0 -i 4168 -a 0 -x {10.0 9.0 2079 ------- null} + -t 2.37773 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4179 -a 0 -x {9.0 10.0 2094 ------- null} - -t 2.37773 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4179 -a 0 -x {9.0 10.0 2094 ------- null} h -t 2.37773 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4179 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.37786 -s 10 -d 7 -p ack -e 40 -c 0 -i 4176 -a 0 -x {10.0 9.0 2083 ------- null} + -t 2.37786 -s 7 -d 0 -p ack -e 40 -c 0 -i 4176 -a 0 -x {10.0 9.0 2083 ------- null} h -t 2.37786 -s 7 -d 8 -p ack -e 40 -c 0 -i 4176 -a 0 -x {10.0 9.0 2083 ------- null} + -t 2.37787 -s 0 -d 9 -p ack -e 40 -c 0 -i 4172 -a 0 -x {10.0 9.0 2081 ------- null} - -t 2.37787 -s 0 -d 9 -p ack -e 40 -c 0 -i 4172 -a 0 -x {10.0 9.0 2081 ------- null} h -t 2.37787 -s 0 -d 9 -p ack -e 40 -c 0 -i 4172 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.37795 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4175 -a 0 -x {9.0 10.0 2092 ------- null} + -t 2.37795 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4175 -a 0 -x {9.0 10.0 2092 ------- null} h -t 2.37795 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4175 -a 0 -x {9.0 10.0 2092 ------- null} r -t 2.37819 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4161 -a 0 -x {9.0 10.0 2085 ------- null} + -t 2.37819 -s 10 -d 7 -p ack -e 40 -c 0 -i 4180 -a 0 -x {10.0 9.0 2085 ------- null} - -t 2.37819 -s 10 -d 7 -p ack -e 40 -c 0 -i 4180 -a 0 -x {10.0 9.0 2085 ------- null} h -t 2.37819 -s 10 -d 7 -p ack -e 40 -c 0 -i 4180 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.37869 -s 0 -d 9 -p ack -e 40 -c 0 -i 4170 -a 0 -x {10.0 9.0 2080 ------- null} + -t 2.37869 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4181 -a 0 -x {9.0 10.0 2095 ------- null} - -t 2.37869 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4181 -a 0 -x {9.0 10.0 2095 ------- null} h -t 2.37869 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4181 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.37875 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4167 -a 0 -x {9.0 10.0 2088 ------- null} - -t 2.37875 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4167 -a 0 -x {9.0 10.0 2088 ------- null} h -t 2.37875 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4167 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.37894 -s 10 -d 7 -p ack -e 40 -c 0 -i 4178 -a 0 -x {10.0 9.0 2084 ------- null} + -t 2.37894 -s 7 -d 0 -p ack -e 40 -c 0 -i 4178 -a 0 -x {10.0 9.0 2084 ------- null} h -t 2.37894 -s 7 -d 8 -p ack -e 40 -c 0 -i 4178 -a 0 -x {10.0 9.0 2084 ------- null} + -t 2.37904 -s 0 -d 9 -p ack -e 40 -c 0 -i 4174 -a 0 -x {10.0 9.0 2082 ------- null} - -t 2.37904 -s 0 -d 9 -p ack -e 40 -c 0 -i 4174 -a 0 -x {10.0 9.0 2082 ------- null} h -t 2.37904 -s 0 -d 9 -p ack -e 40 -c 0 -i 4174 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.37922 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4177 -a 0 -x {9.0 10.0 2093 ------- null} + -t 2.37922 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4177 -a 0 -x {9.0 10.0 2093 ------- null} h -t 2.37922 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4177 -a 0 -x {9.0 10.0 2093 ------- null} r -t 2.37938 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4163 -a 0 -x {9.0 10.0 2086 ------- null} + -t 2.37938 -s 10 -d 7 -p ack -e 40 -c 0 -i 4182 -a 0 -x {10.0 9.0 2086 ------- null} - -t 2.37938 -s 10 -d 7 -p ack -e 40 -c 0 -i 4182 -a 0 -x {10.0 9.0 2086 ------- null} h -t 2.37938 -s 10 -d 7 -p ack -e 40 -c 0 -i 4182 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.3799 -s 0 -d 9 -p ack -e 40 -c 0 -i 4172 -a 0 -x {10.0 9.0 2081 ------- null} + -t 2.3799 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4183 -a 0 -x {9.0 10.0 2096 ------- null} - -t 2.3799 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4183 -a 0 -x {9.0 10.0 2096 ------- null} h -t 2.3799 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4183 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.37998 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4169 -a 0 -x {9.0 10.0 2089 ------- null} - -t 2.37998 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4169 -a 0 -x {9.0 10.0 2089 ------- null} h -t 2.37998 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4169 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.38013 -s 0 -d 9 -p ack -e 40 -c 0 -i 4176 -a 0 -x {10.0 9.0 2083 ------- null} - -t 2.38013 -s 0 -d 9 -p ack -e 40 -c 0 -i 4176 -a 0 -x {10.0 9.0 2083 ------- null} h -t 2.38013 -s 0 -d 9 -p ack -e 40 -c 0 -i 4176 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.38022 -s 10 -d 7 -p ack -e 40 -c 0 -i 4180 -a 0 -x {10.0 9.0 2085 ------- null} + -t 2.38022 -s 7 -d 0 -p ack -e 40 -c 0 -i 4180 -a 0 -x {10.0 9.0 2085 ------- null} h -t 2.38022 -s 7 -d 8 -p ack -e 40 -c 0 -i 4180 -a 0 -x {10.0 9.0 2085 ------- null} r -t 2.38046 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4165 -a 0 -x {9.0 10.0 2087 ------- null} + -t 2.38046 -s 10 -d 7 -p ack -e 40 -c 0 -i 4184 -a 0 -x {10.0 9.0 2087 ------- null} - -t 2.38046 -s 10 -d 7 -p ack -e 40 -c 0 -i 4184 -a 0 -x {10.0 9.0 2087 ------- null} h -t 2.38046 -s 10 -d 7 -p ack -e 40 -c 0 -i 4184 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.38053 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4179 -a 0 -x {9.0 10.0 2094 ------- null} + -t 2.38053 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4179 -a 0 -x {9.0 10.0 2094 ------- null} h -t 2.38053 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4179 -a 0 -x {9.0 10.0 2094 ------- null} r -t 2.38107 -s 0 -d 9 -p ack -e 40 -c 0 -i 4174 -a 0 -x {10.0 9.0 2082 ------- null} + -t 2.38107 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4185 -a 0 -x {9.0 10.0 2097 ------- null} - -t 2.38107 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4185 -a 0 -x {9.0 10.0 2097 ------- null} h -t 2.38107 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4185 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.38107 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4171 -a 0 -x {9.0 10.0 2090 ------- null} - -t 2.38107 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4171 -a 0 -x {9.0 10.0 2090 ------- null} h -t 2.38107 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4171 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.38128 -s 0 -d 9 -p ack -e 40 -c 0 -i 4178 -a 0 -x {10.0 9.0 2084 ------- null} - -t 2.38128 -s 0 -d 9 -p ack -e 40 -c 0 -i 4178 -a 0 -x {10.0 9.0 2084 ------- null} h -t 2.38128 -s 0 -d 9 -p ack -e 40 -c 0 -i 4178 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.38141 -s 10 -d 7 -p ack -e 40 -c 0 -i 4182 -a 0 -x {10.0 9.0 2086 ------- null} + -t 2.38141 -s 7 -d 0 -p ack -e 40 -c 0 -i 4182 -a 0 -x {10.0 9.0 2086 ------- null} h -t 2.38141 -s 7 -d 8 -p ack -e 40 -c 0 -i 4182 -a 0 -x {10.0 9.0 2086 ------- null} r -t 2.38149 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4181 -a 0 -x {9.0 10.0 2095 ------- null} + -t 2.38149 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4181 -a 0 -x {9.0 10.0 2095 ------- null} h -t 2.38149 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4181 -a 0 -x {9.0 10.0 2095 ------- null} r -t 2.38155 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4167 -a 0 -x {9.0 10.0 2088 ------- null} + -t 2.38155 -s 10 -d 7 -p ack -e 40 -c 0 -i 4186 -a 0 -x {10.0 9.0 2088 ------- null} - -t 2.38155 -s 10 -d 7 -p ack -e 40 -c 0 -i 4186 -a 0 -x {10.0 9.0 2088 ------- null} h -t 2.38155 -s 10 -d 7 -p ack -e 40 -c 0 -i 4186 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.38216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4173 -a 0 -x {9.0 10.0 2091 ------- null} - -t 2.38216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4173 -a 0 -x {9.0 10.0 2091 ------- null} h -t 2.38216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4173 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.38216 -s 0 -d 9 -p ack -e 40 -c 0 -i 4176 -a 0 -x {10.0 9.0 2083 ------- null} + -t 2.38216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4187 -a 0 -x {9.0 10.0 2098 ------- null} - -t 2.38216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4187 -a 0 -x {9.0 10.0 2098 ------- null} h -t 2.38216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4187 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.38224 -s 0 -d 9 -p ack -e 40 -c 0 -i 4180 -a 0 -x {10.0 9.0 2085 ------- null} - -t 2.38224 -s 0 -d 9 -p ack -e 40 -c 0 -i 4180 -a 0 -x {10.0 9.0 2085 ------- null} h -t 2.38224 -s 0 -d 9 -p ack -e 40 -c 0 -i 4180 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.3825 -s 10 -d 7 -p ack -e 40 -c 0 -i 4184 -a 0 -x {10.0 9.0 2087 ------- null} + -t 2.3825 -s 7 -d 0 -p ack -e 40 -c 0 -i 4184 -a 0 -x {10.0 9.0 2087 ------- null} h -t 2.3825 -s 7 -d 8 -p ack -e 40 -c 0 -i 4184 -a 0 -x {10.0 9.0 2087 ------- null} r -t 2.3827 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4183 -a 0 -x {9.0 10.0 2096 ------- null} + -t 2.3827 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4183 -a 0 -x {9.0 10.0 2096 ------- null} h -t 2.3827 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4183 -a 0 -x {9.0 10.0 2096 ------- null} r -t 2.38278 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4169 -a 0 -x {9.0 10.0 2089 ------- null} + -t 2.38278 -s 10 -d 7 -p ack -e 40 -c 0 -i 4188 -a 0 -x {10.0 9.0 2089 ------- null} - -t 2.38278 -s 10 -d 7 -p ack -e 40 -c 0 -i 4188 -a 0 -x {10.0 9.0 2089 ------- null} h -t 2.38278 -s 10 -d 7 -p ack -e 40 -c 0 -i 4188 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.38325 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4175 -a 0 -x {9.0 10.0 2092 ------- null} - -t 2.38325 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4175 -a 0 -x {9.0 10.0 2092 ------- null} h -t 2.38325 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4175 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.38331 -s 0 -d 9 -p ack -e 40 -c 0 -i 4182 -a 0 -x {10.0 9.0 2086 ------- null} - -t 2.38331 -s 0 -d 9 -p ack -e 40 -c 0 -i 4182 -a 0 -x {10.0 9.0 2086 ------- null} h -t 2.38331 -s 0 -d 9 -p ack -e 40 -c 0 -i 4182 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.38331 -s 0 -d 9 -p ack -e 40 -c 0 -i 4178 -a 0 -x {10.0 9.0 2084 ------- null} + -t 2.38331 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4189 -a 0 -x {9.0 10.0 2099 ------- null} - -t 2.38331 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4189 -a 0 -x {9.0 10.0 2099 ------- null} h -t 2.38331 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4189 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.38358 -s 10 -d 7 -p ack -e 40 -c 0 -i 4186 -a 0 -x {10.0 9.0 2088 ------- null} + -t 2.38358 -s 7 -d 0 -p ack -e 40 -c 0 -i 4186 -a 0 -x {10.0 9.0 2088 ------- null} h -t 2.38358 -s 7 -d 8 -p ack -e 40 -c 0 -i 4186 -a 0 -x {10.0 9.0 2088 ------- null} r -t 2.38387 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4185 -a 0 -x {9.0 10.0 2097 ------- null} + -t 2.38387 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4185 -a 0 -x {9.0 10.0 2097 ------- null} h -t 2.38387 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4185 -a 0 -x {9.0 10.0 2097 ------- null} r -t 2.38387 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4171 -a 0 -x {9.0 10.0 2090 ------- null} + -t 2.38387 -s 10 -d 7 -p ack -e 40 -c 0 -i 4190 -a 0 -x {10.0 9.0 2090 ------- null} - -t 2.38387 -s 10 -d 7 -p ack -e 40 -c 0 -i 4190 -a 0 -x {10.0 9.0 2090 ------- null} h -t 2.38387 -s 10 -d 7 -p ack -e 40 -c 0 -i 4190 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.38427 -s 0 -d 9 -p ack -e 40 -c 0 -i 4180 -a 0 -x {10.0 9.0 2085 ------- null} + -t 2.38427 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4191 -a 0 -x {9.0 10.0 2100 ------- null} - -t 2.38427 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4191 -a 0 -x {9.0 10.0 2100 ------- null} h -t 2.38427 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4191 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.38434 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4177 -a 0 -x {9.0 10.0 2093 ------- null} - -t 2.38434 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4177 -a 0 -x {9.0 10.0 2093 ------- null} h -t 2.38434 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4177 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.3844 -s 0 -d 9 -p ack -e 40 -c 0 -i 4184 -a 0 -x {10.0 9.0 2087 ------- null} - -t 2.3844 -s 0 -d 9 -p ack -e 40 -c 0 -i 4184 -a 0 -x {10.0 9.0 2087 ------- null} h -t 2.3844 -s 0 -d 9 -p ack -e 40 -c 0 -i 4184 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.38482 -s 10 -d 7 -p ack -e 40 -c 0 -i 4188 -a 0 -x {10.0 9.0 2089 ------- null} + -t 2.38482 -s 7 -d 0 -p ack -e 40 -c 0 -i 4188 -a 0 -x {10.0 9.0 2089 ------- null} h -t 2.38482 -s 7 -d 8 -p ack -e 40 -c 0 -i 4188 -a 0 -x {10.0 9.0 2089 ------- null} r -t 2.38496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4173 -a 0 -x {9.0 10.0 2091 ------- null} + -t 2.38496 -s 10 -d 7 -p ack -e 40 -c 0 -i 4192 -a 0 -x {10.0 9.0 2091 ------- null} - -t 2.38496 -s 10 -d 7 -p ack -e 40 -c 0 -i 4192 -a 0 -x {10.0 9.0 2091 ------- null} h -t 2.38496 -s 10 -d 7 -p ack -e 40 -c 0 -i 4192 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.38496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4187 -a 0 -x {9.0 10.0 2098 ------- null} + -t 2.38496 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4187 -a 0 -x {9.0 10.0 2098 ------- null} h -t 2.38496 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4187 -a 0 -x {9.0 10.0 2098 ------- null} r -t 2.38534 -s 0 -d 9 -p ack -e 40 -c 0 -i 4182 -a 0 -x {10.0 9.0 2086 ------- null} + -t 2.38534 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4193 -a 0 -x {9.0 10.0 2101 ------- null} - -t 2.38534 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4193 -a 0 -x {9.0 10.0 2101 ------- null} h -t 2.38534 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4193 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.38542 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4179 -a 0 -x {9.0 10.0 2094 ------- null} - -t 2.38542 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4179 -a 0 -x {9.0 10.0 2094 ------- null} h -t 2.38542 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4179 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.38554 -s 0 -d 9 -p ack -e 40 -c 0 -i 4186 -a 0 -x {10.0 9.0 2088 ------- null} - -t 2.38554 -s 0 -d 9 -p ack -e 40 -c 0 -i 4186 -a 0 -x {10.0 9.0 2088 ------- null} h -t 2.38554 -s 0 -d 9 -p ack -e 40 -c 0 -i 4186 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.3859 -s 10 -d 7 -p ack -e 40 -c 0 -i 4190 -a 0 -x {10.0 9.0 2090 ------- null} + -t 2.3859 -s 7 -d 0 -p ack -e 40 -c 0 -i 4190 -a 0 -x {10.0 9.0 2090 ------- null} h -t 2.3859 -s 7 -d 8 -p ack -e 40 -c 0 -i 4190 -a 0 -x {10.0 9.0 2090 ------- null} r -t 2.38605 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4175 -a 0 -x {9.0 10.0 2092 ------- null} + -t 2.38605 -s 10 -d 7 -p ack -e 40 -c 0 -i 4194 -a 0 -x {10.0 9.0 2092 ------- null} - -t 2.38605 -s 10 -d 7 -p ack -e 40 -c 0 -i 4194 -a 0 -x {10.0 9.0 2092 ------- null} h -t 2.38605 -s 10 -d 7 -p ack -e 40 -c 0 -i 4194 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.38611 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4189 -a 0 -x {9.0 10.0 2099 ------- null} + -t 2.38611 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4189 -a 0 -x {9.0 10.0 2099 ------- null} h -t 2.38611 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4189 -a 0 -x {9.0 10.0 2099 ------- null} r -t 2.38643 -s 0 -d 9 -p ack -e 40 -c 0 -i 4184 -a 0 -x {10.0 9.0 2087 ------- null} + -t 2.38643 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4195 -a 0 -x {9.0 10.0 2102 ------- null} - -t 2.38643 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4195 -a 0 -x {9.0 10.0 2102 ------- null} h -t 2.38643 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4195 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.38651 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4181 -a 0 -x {9.0 10.0 2095 ------- null} - -t 2.38651 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4181 -a 0 -x {9.0 10.0 2095 ------- null} h -t 2.38651 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4181 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.38661 -s 0 -d 9 -p ack -e 40 -c 0 -i 4188 -a 0 -x {10.0 9.0 2089 ------- null} - -t 2.38661 -s 0 -d 9 -p ack -e 40 -c 0 -i 4188 -a 0 -x {10.0 9.0 2089 ------- null} h -t 2.38661 -s 0 -d 9 -p ack -e 40 -c 0 -i 4188 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.38699 -s 10 -d 7 -p ack -e 40 -c 0 -i 4192 -a 0 -x {10.0 9.0 2091 ------- null} + -t 2.38699 -s 7 -d 0 -p ack -e 40 -c 0 -i 4192 -a 0 -x {10.0 9.0 2091 ------- null} h -t 2.38699 -s 7 -d 8 -p ack -e 40 -c 0 -i 4192 -a 0 -x {10.0 9.0 2091 ------- null} r -t 2.38707 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4191 -a 0 -x {9.0 10.0 2100 ------- null} + -t 2.38707 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4191 -a 0 -x {9.0 10.0 2100 ------- null} h -t 2.38707 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4191 -a 0 -x {9.0 10.0 2100 ------- null} r -t 2.38714 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4177 -a 0 -x {9.0 10.0 2093 ------- null} + -t 2.38714 -s 10 -d 7 -p ack -e 40 -c 0 -i 4196 -a 0 -x {10.0 9.0 2093 ------- null} - -t 2.38714 -s 10 -d 7 -p ack -e 40 -c 0 -i 4196 -a 0 -x {10.0 9.0 2093 ------- null} h -t 2.38714 -s 10 -d 7 -p ack -e 40 -c 0 -i 4196 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.38757 -s 0 -d 9 -p ack -e 40 -c 0 -i 4186 -a 0 -x {10.0 9.0 2088 ------- null} + -t 2.38757 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4197 -a 0 -x {9.0 10.0 2103 ------- null} - -t 2.38757 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4197 -a 0 -x {9.0 10.0 2103 ------- null} h -t 2.38757 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4197 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.3876 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4183 -a 0 -x {9.0 10.0 2096 ------- null} - -t 2.3876 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4183 -a 0 -x {9.0 10.0 2096 ------- null} h -t 2.3876 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4183 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.38771 -s 0 -d 9 -p ack -e 40 -c 0 -i 4190 -a 0 -x {10.0 9.0 2090 ------- null} - -t 2.38771 -s 0 -d 9 -p ack -e 40 -c 0 -i 4190 -a 0 -x {10.0 9.0 2090 ------- null} h -t 2.38771 -s 0 -d 9 -p ack -e 40 -c 0 -i 4190 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.38808 -s 10 -d 7 -p ack -e 40 -c 0 -i 4194 -a 0 -x {10.0 9.0 2092 ------- null} + -t 2.38808 -s 7 -d 0 -p ack -e 40 -c 0 -i 4194 -a 0 -x {10.0 9.0 2092 ------- null} h -t 2.38808 -s 7 -d 8 -p ack -e 40 -c 0 -i 4194 -a 0 -x {10.0 9.0 2092 ------- null} r -t 2.38814 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4193 -a 0 -x {9.0 10.0 2101 ------- null} + -t 2.38814 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4193 -a 0 -x {9.0 10.0 2101 ------- null} h -t 2.38814 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4193 -a 0 -x {9.0 10.0 2101 ------- null} r -t 2.38822 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4179 -a 0 -x {9.0 10.0 2094 ------- null} + -t 2.38822 -s 10 -d 7 -p ack -e 40 -c 0 -i 4198 -a 0 -x {10.0 9.0 2094 ------- null} - -t 2.38822 -s 10 -d 7 -p ack -e 40 -c 0 -i 4198 -a 0 -x {10.0 9.0 2094 ------- null} h -t 2.38822 -s 10 -d 7 -p ack -e 40 -c 0 -i 4198 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.38864 -s 0 -d 9 -p ack -e 40 -c 0 -i 4188 -a 0 -x {10.0 9.0 2089 ------- null} + -t 2.38864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4199 -a 0 -x {9.0 10.0 2104 ------- null} - -t 2.38864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4199 -a 0 -x {9.0 10.0 2104 ------- null} h -t 2.38864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4199 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.38869 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4185 -a 0 -x {9.0 10.0 2097 ------- null} - -t 2.38869 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4185 -a 0 -x {9.0 10.0 2097 ------- null} h -t 2.38869 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4185 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.38885 -s 0 -d 9 -p ack -e 40 -c 0 -i 4192 -a 0 -x {10.0 9.0 2091 ------- null} - -t 2.38885 -s 0 -d 9 -p ack -e 40 -c 0 -i 4192 -a 0 -x {10.0 9.0 2091 ------- null} h -t 2.38885 -s 0 -d 9 -p ack -e 40 -c 0 -i 4192 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.38917 -s 10 -d 7 -p ack -e 40 -c 0 -i 4196 -a 0 -x {10.0 9.0 2093 ------- null} + -t 2.38917 -s 7 -d 0 -p ack -e 40 -c 0 -i 4196 -a 0 -x {10.0 9.0 2093 ------- null} h -t 2.38917 -s 7 -d 8 -p ack -e 40 -c 0 -i 4196 -a 0 -x {10.0 9.0 2093 ------- null} r -t 2.38923 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4195 -a 0 -x {9.0 10.0 2102 ------- null} + -t 2.38923 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4195 -a 0 -x {9.0 10.0 2102 ------- null} h -t 2.38923 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4195 -a 0 -x {9.0 10.0 2102 ------- null} r -t 2.38931 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4181 -a 0 -x {9.0 10.0 2095 ------- null} + -t 2.38931 -s 10 -d 7 -p ack -e 40 -c 0 -i 4200 -a 0 -x {10.0 9.0 2095 ------- null} - -t 2.38931 -s 10 -d 7 -p ack -e 40 -c 0 -i 4200 -a 0 -x {10.0 9.0 2095 ------- null} h -t 2.38931 -s 10 -d 7 -p ack -e 40 -c 0 -i 4200 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.38974 -s 0 -d 9 -p ack -e 40 -c 0 -i 4190 -a 0 -x {10.0 9.0 2090 ------- null} + -t 2.38974 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4201 -a 0 -x {9.0 10.0 2105 ------- null} - -t 2.38974 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4201 -a 0 -x {9.0 10.0 2105 ------- null} h -t 2.38974 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4201 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.38978 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4187 -a 0 -x {9.0 10.0 2098 ------- null} - -t 2.38978 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4187 -a 0 -x {9.0 10.0 2098 ------- null} h -t 2.38978 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4187 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.38989 -s 0 -d 9 -p ack -e 40 -c 0 -i 4194 -a 0 -x {10.0 9.0 2092 ------- null} - -t 2.38989 -s 0 -d 9 -p ack -e 40 -c 0 -i 4194 -a 0 -x {10.0 9.0 2092 ------- null} h -t 2.38989 -s 0 -d 9 -p ack -e 40 -c 0 -i 4194 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.39026 -s 10 -d 7 -p ack -e 40 -c 0 -i 4198 -a 0 -x {10.0 9.0 2094 ------- null} + -t 2.39026 -s 7 -d 0 -p ack -e 40 -c 0 -i 4198 -a 0 -x {10.0 9.0 2094 ------- null} h -t 2.39026 -s 7 -d 8 -p ack -e 40 -c 0 -i 4198 -a 0 -x {10.0 9.0 2094 ------- null} r -t 2.39037 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4197 -a 0 -x {9.0 10.0 2103 ------- null} + -t 2.39037 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4197 -a 0 -x {9.0 10.0 2103 ------- null} h -t 2.39037 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4197 -a 0 -x {9.0 10.0 2103 ------- null} r -t 2.3904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4183 -a 0 -x {9.0 10.0 2096 ------- null} + -t 2.3904 -s 10 -d 7 -p ack -e 40 -c 0 -i 4202 -a 0 -x {10.0 9.0 2096 ------- null} - -t 2.3904 -s 10 -d 7 -p ack -e 40 -c 0 -i 4202 -a 0 -x {10.0 9.0 2096 ------- null} h -t 2.3904 -s 10 -d 7 -p ack -e 40 -c 0 -i 4202 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.39086 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4189 -a 0 -x {9.0 10.0 2099 ------- null} - -t 2.39086 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4189 -a 0 -x {9.0 10.0 2099 ------- null} h -t 2.39086 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4189 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.39088 -s 0 -d 9 -p ack -e 40 -c 0 -i 4192 -a 0 -x {10.0 9.0 2091 ------- null} + -t 2.39088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4203 -a 0 -x {9.0 10.0 2106 ------- null} - -t 2.39088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4203 -a 0 -x {9.0 10.0 2106 ------- null} h -t 2.39088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4203 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.39099 -s 0 -d 9 -p ack -e 40 -c 0 -i 4196 -a 0 -x {10.0 9.0 2093 ------- null} - -t 2.39099 -s 0 -d 9 -p ack -e 40 -c 0 -i 4196 -a 0 -x {10.0 9.0 2093 ------- null} h -t 2.39099 -s 0 -d 9 -p ack -e 40 -c 0 -i 4196 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.39134 -s 10 -d 7 -p ack -e 40 -c 0 -i 4200 -a 0 -x {10.0 9.0 2095 ------- null} + -t 2.39134 -s 7 -d 0 -p ack -e 40 -c 0 -i 4200 -a 0 -x {10.0 9.0 2095 ------- null} h -t 2.39134 -s 7 -d 8 -p ack -e 40 -c 0 -i 4200 -a 0 -x {10.0 9.0 2095 ------- null} r -t 2.39144 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4199 -a 0 -x {9.0 10.0 2104 ------- null} + -t 2.39144 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4199 -a 0 -x {9.0 10.0 2104 ------- null} h -t 2.39144 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4199 -a 0 -x {9.0 10.0 2104 ------- null} r -t 2.39149 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4185 -a 0 -x {9.0 10.0 2097 ------- null} + -t 2.39149 -s 10 -d 7 -p ack -e 40 -c 0 -i 4204 -a 0 -x {10.0 9.0 2097 ------- null} - -t 2.39149 -s 10 -d 7 -p ack -e 40 -c 0 -i 4204 -a 0 -x {10.0 9.0 2097 ------- null} h -t 2.39149 -s 10 -d 7 -p ack -e 40 -c 0 -i 4204 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.39192 -s 0 -d 9 -p ack -e 40 -c 0 -i 4194 -a 0 -x {10.0 9.0 2092 ------- null} + -t 2.39192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4205 -a 0 -x {9.0 10.0 2107 ------- null} - -t 2.39192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4205 -a 0 -x {9.0 10.0 2107 ------- null} h -t 2.39192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4205 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.39195 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4191 -a 0 -x {9.0 10.0 2100 ------- null} - -t 2.39195 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4191 -a 0 -x {9.0 10.0 2100 ------- null} h -t 2.39195 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4191 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.39202 -s 0 -d 9 -p ack -e 40 -c 0 -i 4198 -a 0 -x {10.0 9.0 2094 ------- null} - -t 2.39202 -s 0 -d 9 -p ack -e 40 -c 0 -i 4198 -a 0 -x {10.0 9.0 2094 ------- null} h -t 2.39202 -s 0 -d 9 -p ack -e 40 -c 0 -i 4198 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.39243 -s 10 -d 7 -p ack -e 40 -c 0 -i 4202 -a 0 -x {10.0 9.0 2096 ------- null} + -t 2.39243 -s 7 -d 0 -p ack -e 40 -c 0 -i 4202 -a 0 -x {10.0 9.0 2096 ------- null} h -t 2.39243 -s 7 -d 8 -p ack -e 40 -c 0 -i 4202 -a 0 -x {10.0 9.0 2096 ------- null} r -t 2.39254 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4201 -a 0 -x {9.0 10.0 2105 ------- null} + -t 2.39254 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4201 -a 0 -x {9.0 10.0 2105 ------- null} h -t 2.39254 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4201 -a 0 -x {9.0 10.0 2105 ------- null} r -t 2.39258 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4187 -a 0 -x {9.0 10.0 2098 ------- null} + -t 2.39258 -s 10 -d 7 -p ack -e 40 -c 0 -i 4206 -a 0 -x {10.0 9.0 2098 ------- null} - -t 2.39258 -s 10 -d 7 -p ack -e 40 -c 0 -i 4206 -a 0 -x {10.0 9.0 2098 ------- null} h -t 2.39258 -s 10 -d 7 -p ack -e 40 -c 0 -i 4206 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.39302 -s 0 -d 9 -p ack -e 40 -c 0 -i 4196 -a 0 -x {10.0 9.0 2093 ------- null} + -t 2.39302 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4207 -a 0 -x {9.0 10.0 2108 ------- null} - -t 2.39302 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4207 -a 0 -x {9.0 10.0 2108 ------- null} h -t 2.39302 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4207 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.39304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4193 -a 0 -x {9.0 10.0 2101 ------- null} - -t 2.39304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4193 -a 0 -x {9.0 10.0 2101 ------- null} h -t 2.39304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4193 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.39315 -s 0 -d 9 -p ack -e 40 -c 0 -i 4200 -a 0 -x {10.0 9.0 2095 ------- null} - -t 2.39315 -s 0 -d 9 -p ack -e 40 -c 0 -i 4200 -a 0 -x {10.0 9.0 2095 ------- null} h -t 2.39315 -s 0 -d 9 -p ack -e 40 -c 0 -i 4200 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.39352 -s 10 -d 7 -p ack -e 40 -c 0 -i 4204 -a 0 -x {10.0 9.0 2097 ------- null} + -t 2.39352 -s 7 -d 0 -p ack -e 40 -c 0 -i 4204 -a 0 -x {10.0 9.0 2097 ------- null} h -t 2.39352 -s 7 -d 8 -p ack -e 40 -c 0 -i 4204 -a 0 -x {10.0 9.0 2097 ------- null} r -t 2.39366 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4189 -a 0 -x {9.0 10.0 2099 ------- null} + -t 2.39366 -s 10 -d 7 -p ack -e 40 -c 0 -i 4208 -a 0 -x {10.0 9.0 2099 ------- null} - -t 2.39366 -s 10 -d 7 -p ack -e 40 -c 0 -i 4208 -a 0 -x {10.0 9.0 2099 ------- null} h -t 2.39366 -s 10 -d 7 -p ack -e 40 -c 0 -i 4208 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.39368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4203 -a 0 -x {9.0 10.0 2106 ------- null} + -t 2.39368 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4203 -a 0 -x {9.0 10.0 2106 ------- null} h -t 2.39368 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4203 -a 0 -x {9.0 10.0 2106 ------- null} r -t 2.39405 -s 0 -d 9 -p ack -e 40 -c 0 -i 4198 -a 0 -x {10.0 9.0 2094 ------- null} + -t 2.39405 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4209 -a 0 -x {9.0 10.0 2109 ------- null} - -t 2.39405 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4209 -a 0 -x {9.0 10.0 2109 ------- null} h -t 2.39405 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4209 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.39413 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4195 -a 0 -x {9.0 10.0 2102 ------- null} - -t 2.39413 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4195 -a 0 -x {9.0 10.0 2102 ------- null} h -t 2.39413 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4195 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.39422 -s 0 -d 9 -p ack -e 40 -c 0 -i 4202 -a 0 -x {10.0 9.0 2096 ------- null} - -t 2.39422 -s 0 -d 9 -p ack -e 40 -c 0 -i 4202 -a 0 -x {10.0 9.0 2096 ------- null} h -t 2.39422 -s 0 -d 9 -p ack -e 40 -c 0 -i 4202 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.39461 -s 10 -d 7 -p ack -e 40 -c 0 -i 4206 -a 0 -x {10.0 9.0 2098 ------- null} + -t 2.39461 -s 7 -d 0 -p ack -e 40 -c 0 -i 4206 -a 0 -x {10.0 9.0 2098 ------- null} h -t 2.39461 -s 7 -d 8 -p ack -e 40 -c 0 -i 4206 -a 0 -x {10.0 9.0 2098 ------- null} r -t 2.39472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4205 -a 0 -x {9.0 10.0 2107 ------- null} + -t 2.39472 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4205 -a 0 -x {9.0 10.0 2107 ------- null} h -t 2.39472 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4205 -a 0 -x {9.0 10.0 2107 ------- null} r -t 2.39475 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4191 -a 0 -x {9.0 10.0 2100 ------- null} + -t 2.39475 -s 10 -d 7 -p ack -e 40 -c 0 -i 4210 -a 0 -x {10.0 9.0 2100 ------- null} - -t 2.39475 -s 10 -d 7 -p ack -e 40 -c 0 -i 4210 -a 0 -x {10.0 9.0 2100 ------- null} h -t 2.39475 -s 10 -d 7 -p ack -e 40 -c 0 -i 4210 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.39518 -s 0 -d 9 -p ack -e 40 -c 0 -i 4200 -a 0 -x {10.0 9.0 2095 ------- null} + -t 2.39518 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4211 -a 0 -x {9.0 10.0 2110 ------- null} - -t 2.39518 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4211 -a 0 -x {9.0 10.0 2110 ------- null} h -t 2.39518 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4211 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.39522 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4197 -a 0 -x {9.0 10.0 2103 ------- null} - -t 2.39522 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4197 -a 0 -x {9.0 10.0 2103 ------- null} h -t 2.39522 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4197 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.39542 -s 0 -d 9 -p ack -e 40 -c 0 -i 4204 -a 0 -x {10.0 9.0 2097 ------- null} - -t 2.39542 -s 0 -d 9 -p ack -e 40 -c 0 -i 4204 -a 0 -x {10.0 9.0 2097 ------- null} h -t 2.39542 -s 0 -d 9 -p ack -e 40 -c 0 -i 4204 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.3957 -s 10 -d 7 -p ack -e 40 -c 0 -i 4208 -a 0 -x {10.0 9.0 2099 ------- null} + -t 2.3957 -s 7 -d 0 -p ack -e 40 -c 0 -i 4208 -a 0 -x {10.0 9.0 2099 ------- null} h -t 2.3957 -s 7 -d 8 -p ack -e 40 -c 0 -i 4208 -a 0 -x {10.0 9.0 2099 ------- null} r -t 2.39582 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4207 -a 0 -x {9.0 10.0 2108 ------- null} + -t 2.39582 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4207 -a 0 -x {9.0 10.0 2108 ------- null} h -t 2.39582 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4207 -a 0 -x {9.0 10.0 2108 ------- null} r -t 2.39584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4193 -a 0 -x {9.0 10.0 2101 ------- null} + -t 2.39584 -s 10 -d 7 -p ack -e 40 -c 0 -i 4212 -a 0 -x {10.0 9.0 2101 ------- null} - -t 2.39584 -s 10 -d 7 -p ack -e 40 -c 0 -i 4212 -a 0 -x {10.0 9.0 2101 ------- null} h -t 2.39584 -s 10 -d 7 -p ack -e 40 -c 0 -i 4212 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.39626 -s 0 -d 9 -p ack -e 40 -c 0 -i 4202 -a 0 -x {10.0 9.0 2096 ------- null} + -t 2.39626 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4213 -a 0 -x {9.0 10.0 2111 ------- null} - -t 2.39626 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4213 -a 0 -x {9.0 10.0 2111 ------- null} h -t 2.39626 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4213 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.3963 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4199 -a 0 -x {9.0 10.0 2104 ------- null} - -t 2.3963 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4199 -a 0 -x {9.0 10.0 2104 ------- null} h -t 2.3963 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4199 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.39654 -s 0 -d 9 -p ack -e 40 -c 0 -i 4206 -a 0 -x {10.0 9.0 2098 ------- null} - -t 2.39654 -s 0 -d 9 -p ack -e 40 -c 0 -i 4206 -a 0 -x {10.0 9.0 2098 ------- null} h -t 2.39654 -s 0 -d 9 -p ack -e 40 -c 0 -i 4206 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.39678 -s 10 -d 7 -p ack -e 40 -c 0 -i 4210 -a 0 -x {10.0 9.0 2100 ------- null} + -t 2.39678 -s 7 -d 0 -p ack -e 40 -c 0 -i 4210 -a 0 -x {10.0 9.0 2100 ------- null} h -t 2.39678 -s 7 -d 8 -p ack -e 40 -c 0 -i 4210 -a 0 -x {10.0 9.0 2100 ------- null} r -t 2.39685 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4209 -a 0 -x {9.0 10.0 2109 ------- null} + -t 2.39685 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4209 -a 0 -x {9.0 10.0 2109 ------- null} h -t 2.39685 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4209 -a 0 -x {9.0 10.0 2109 ------- null} r -t 2.39693 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4195 -a 0 -x {9.0 10.0 2102 ------- null} + -t 2.39693 -s 10 -d 7 -p ack -e 40 -c 0 -i 4214 -a 0 -x {10.0 9.0 2102 ------- null} - -t 2.39693 -s 10 -d 7 -p ack -e 40 -c 0 -i 4214 -a 0 -x {10.0 9.0 2102 ------- null} h -t 2.39693 -s 10 -d 7 -p ack -e 40 -c 0 -i 4214 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.39739 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4201 -a 0 -x {9.0 10.0 2105 ------- null} - -t 2.39739 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4201 -a 0 -x {9.0 10.0 2105 ------- null} h -t 2.39739 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4201 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.39746 -s 0 -d 9 -p ack -e 40 -c 0 -i 4204 -a 0 -x {10.0 9.0 2097 ------- null} + -t 2.39746 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4215 -a 0 -x {9.0 10.0 2112 ------- null} - -t 2.39746 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4215 -a 0 -x {9.0 10.0 2112 ------- null} h -t 2.39746 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4215 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.39758 -s 0 -d 9 -p ack -e 40 -c 0 -i 4208 -a 0 -x {10.0 9.0 2099 ------- null} - -t 2.39758 -s 0 -d 9 -p ack -e 40 -c 0 -i 4208 -a 0 -x {10.0 9.0 2099 ------- null} h -t 2.39758 -s 0 -d 9 -p ack -e 40 -c 0 -i 4208 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.39787 -s 10 -d 7 -p ack -e 40 -c 0 -i 4212 -a 0 -x {10.0 9.0 2101 ------- null} + -t 2.39787 -s 7 -d 0 -p ack -e 40 -c 0 -i 4212 -a 0 -x {10.0 9.0 2101 ------- null} h -t 2.39787 -s 7 -d 8 -p ack -e 40 -c 0 -i 4212 -a 0 -x {10.0 9.0 2101 ------- null} r -t 2.39798 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4211 -a 0 -x {9.0 10.0 2110 ------- null} + -t 2.39798 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4211 -a 0 -x {9.0 10.0 2110 ------- null} h -t 2.39798 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4211 -a 0 -x {9.0 10.0 2110 ------- null} r -t 2.39802 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4197 -a 0 -x {9.0 10.0 2103 ------- null} + -t 2.39802 -s 10 -d 7 -p ack -e 40 -c 0 -i 4216 -a 0 -x {10.0 9.0 2103 ------- null} - -t 2.39802 -s 10 -d 7 -p ack -e 40 -c 0 -i 4216 -a 0 -x {10.0 9.0 2103 ------- null} h -t 2.39802 -s 10 -d 7 -p ack -e 40 -c 0 -i 4216 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.39848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4203 -a 0 -x {9.0 10.0 2106 ------- null} - -t 2.39848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4203 -a 0 -x {9.0 10.0 2106 ------- null} h -t 2.39848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4203 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.39858 -s 0 -d 9 -p ack -e 40 -c 0 -i 4206 -a 0 -x {10.0 9.0 2098 ------- null} + -t 2.39858 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4217 -a 0 -x {9.0 10.0 2113 ------- null} - -t 2.39858 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4217 -a 0 -x {9.0 10.0 2113 ------- null} h -t 2.39858 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4217 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.39874 -s 0 -d 9 -p ack -e 40 -c 0 -i 4210 -a 0 -x {10.0 9.0 2100 ------- null} - -t 2.39874 -s 0 -d 9 -p ack -e 40 -c 0 -i 4210 -a 0 -x {10.0 9.0 2100 ------- null} h -t 2.39874 -s 0 -d 9 -p ack -e 40 -c 0 -i 4210 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.39896 -s 10 -d 7 -p ack -e 40 -c 0 -i 4214 -a 0 -x {10.0 9.0 2102 ------- null} + -t 2.39896 -s 7 -d 0 -p ack -e 40 -c 0 -i 4214 -a 0 -x {10.0 9.0 2102 ------- null} h -t 2.39896 -s 7 -d 8 -p ack -e 40 -c 0 -i 4214 -a 0 -x {10.0 9.0 2102 ------- null} r -t 2.39906 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4213 -a 0 -x {9.0 10.0 2111 ------- null} + -t 2.39906 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4213 -a 0 -x {9.0 10.0 2111 ------- null} h -t 2.39906 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4213 -a 0 -x {9.0 10.0 2111 ------- null} r -t 2.3991 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4199 -a 0 -x {9.0 10.0 2104 ------- null} + -t 2.3991 -s 10 -d 7 -p ack -e 40 -c 0 -i 4218 -a 0 -x {10.0 9.0 2104 ------- null} - -t 2.3991 -s 10 -d 7 -p ack -e 40 -c 0 -i 4218 -a 0 -x {10.0 9.0 2104 ------- null} h -t 2.3991 -s 10 -d 7 -p ack -e 40 -c 0 -i 4218 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.39962 -s 0 -d 9 -p ack -e 40 -c 0 -i 4208 -a 0 -x {10.0 9.0 2099 ------- null} + -t 2.39962 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4219 -a 0 -x {9.0 10.0 2114 ------- null} - -t 2.39962 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4219 -a 0 -x {9.0 10.0 2114 ------- null} h -t 2.39962 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4219 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.39981 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4205 -a 0 -x {9.0 10.0 2107 ------- null} - -t 2.39981 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4205 -a 0 -x {9.0 10.0 2107 ------- null} h -t 2.39981 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4205 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.40005 -s 10 -d 7 -p ack -e 40 -c 0 -i 4216 -a 0 -x {10.0 9.0 2103 ------- null} + -t 2.40005 -s 7 -d 0 -p ack -e 40 -c 0 -i 4216 -a 0 -x {10.0 9.0 2103 ------- null} h -t 2.40005 -s 7 -d 8 -p ack -e 40 -c 0 -i 4216 -a 0 -x {10.0 9.0 2103 ------- null} + -t 2.40008 -s 0 -d 9 -p ack -e 40 -c 0 -i 4212 -a 0 -x {10.0 9.0 2101 ------- null} - -t 2.40008 -s 0 -d 9 -p ack -e 40 -c 0 -i 4212 -a 0 -x {10.0 9.0 2101 ------- null} h -t 2.40008 -s 0 -d 9 -p ack -e 40 -c 0 -i 4212 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.40019 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4201 -a 0 -x {9.0 10.0 2105 ------- null} + -t 2.40019 -s 10 -d 7 -p ack -e 40 -c 0 -i 4220 -a 0 -x {10.0 9.0 2105 ------- null} - -t 2.40019 -s 10 -d 7 -p ack -e 40 -c 0 -i 4220 -a 0 -x {10.0 9.0 2105 ------- null} h -t 2.40019 -s 10 -d 7 -p ack -e 40 -c 0 -i 4220 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.40026 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4215 -a 0 -x {9.0 10.0 2112 ------- null} + -t 2.40026 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4215 -a 0 -x {9.0 10.0 2112 ------- null} h -t 2.40026 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4215 -a 0 -x {9.0 10.0 2112 ------- null} r -t 2.40077 -s 0 -d 9 -p ack -e 40 -c 0 -i 4210 -a 0 -x {10.0 9.0 2100 ------- null} + -t 2.40077 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4221 -a 0 -x {9.0 10.0 2115 ------- null} - -t 2.40077 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4221 -a 0 -x {9.0 10.0 2115 ------- null} h -t 2.40077 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4221 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.40091 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4207 -a 0 -x {9.0 10.0 2108 ------- null} - -t 2.40091 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4207 -a 0 -x {9.0 10.0 2108 ------- null} h -t 2.40091 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4207 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.40098 -s 0 -d 9 -p ack -e 40 -c 0 -i 4214 -a 0 -x {10.0 9.0 2102 ------- null} - -t 2.40098 -s 0 -d 9 -p ack -e 40 -c 0 -i 4214 -a 0 -x {10.0 9.0 2102 ------- null} h -t 2.40098 -s 0 -d 9 -p ack -e 40 -c 0 -i 4214 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.40114 -s 10 -d 7 -p ack -e 40 -c 0 -i 4218 -a 0 -x {10.0 9.0 2104 ------- null} + -t 2.40114 -s 7 -d 0 -p ack -e 40 -c 0 -i 4218 -a 0 -x {10.0 9.0 2104 ------- null} h -t 2.40114 -s 7 -d 8 -p ack -e 40 -c 0 -i 4218 -a 0 -x {10.0 9.0 2104 ------- null} r -t 2.40128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4203 -a 0 -x {9.0 10.0 2106 ------- null} + -t 2.40128 -s 10 -d 7 -p ack -e 40 -c 0 -i 4222 -a 0 -x {10.0 9.0 2106 ------- null} - -t 2.40128 -s 10 -d 7 -p ack -e 40 -c 0 -i 4222 -a 0 -x {10.0 9.0 2106 ------- null} h -t 2.40128 -s 10 -d 7 -p ack -e 40 -c 0 -i 4222 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.40138 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4217 -a 0 -x {9.0 10.0 2113 ------- null} + -t 2.40138 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4217 -a 0 -x {9.0 10.0 2113 ------- null} h -t 2.40138 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4217 -a 0 -x {9.0 10.0 2113 ------- null} + -t 2.402 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4209 -a 0 -x {9.0 10.0 2109 ------- null} - -t 2.402 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4209 -a 0 -x {9.0 10.0 2109 ------- null} h -t 2.402 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4209 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.40211 -s 0 -d 9 -p ack -e 40 -c 0 -i 4212 -a 0 -x {10.0 9.0 2101 ------- null} + -t 2.40211 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4223 -a 0 -x {9.0 10.0 2116 ------- null} - -t 2.40211 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4223 -a 0 -x {9.0 10.0 2116 ------- null} h -t 2.40211 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4223 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.40213 -s 0 -d 9 -p ack -e 40 -c 0 -i 4216 -a 0 -x {10.0 9.0 2103 ------- null} - -t 2.40213 -s 0 -d 9 -p ack -e 40 -c 0 -i 4216 -a 0 -x {10.0 9.0 2103 ------- null} h -t 2.40213 -s 0 -d 9 -p ack -e 40 -c 0 -i 4216 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.40222 -s 10 -d 7 -p ack -e 40 -c 0 -i 4220 -a 0 -x {10.0 9.0 2105 ------- null} + -t 2.40222 -s 7 -d 0 -p ack -e 40 -c 0 -i 4220 -a 0 -x {10.0 9.0 2105 ------- null} h -t 2.40222 -s 7 -d 8 -p ack -e 40 -c 0 -i 4220 -a 0 -x {10.0 9.0 2105 ------- null} r -t 2.40242 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4219 -a 0 -x {9.0 10.0 2114 ------- null} + -t 2.40242 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4219 -a 0 -x {9.0 10.0 2114 ------- null} h -t 2.40242 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4219 -a 0 -x {9.0 10.0 2114 ------- null} r -t 2.40261 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4205 -a 0 -x {9.0 10.0 2107 ------- null} + -t 2.40261 -s 10 -d 7 -p ack -e 40 -c 0 -i 4224 -a 0 -x {10.0 9.0 2107 ------- null} - -t 2.40261 -s 10 -d 7 -p ack -e 40 -c 0 -i 4224 -a 0 -x {10.0 9.0 2107 ------- null} h -t 2.40261 -s 10 -d 7 -p ack -e 40 -c 0 -i 4224 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.40301 -s 0 -d 9 -p ack -e 40 -c 0 -i 4214 -a 0 -x {10.0 9.0 2102 ------- null} + -t 2.40301 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4225 -a 0 -x {9.0 10.0 2117 ------- null} - -t 2.40301 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4225 -a 0 -x {9.0 10.0 2117 ------- null} h -t 2.40301 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4225 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.40309 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4211 -a 0 -x {9.0 10.0 2110 ------- null} - -t 2.40309 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4211 -a 0 -x {9.0 10.0 2110 ------- null} h -t 2.40309 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4211 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.40326 -s 0 -d 9 -p ack -e 40 -c 0 -i 4218 -a 0 -x {10.0 9.0 2104 ------- null} - -t 2.40326 -s 0 -d 9 -p ack -e 40 -c 0 -i 4218 -a 0 -x {10.0 9.0 2104 ------- null} h -t 2.40326 -s 0 -d 9 -p ack -e 40 -c 0 -i 4218 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.40331 -s 10 -d 7 -p ack -e 40 -c 0 -i 4222 -a 0 -x {10.0 9.0 2106 ------- null} + -t 2.40331 -s 7 -d 0 -p ack -e 40 -c 0 -i 4222 -a 0 -x {10.0 9.0 2106 ------- null} h -t 2.40331 -s 7 -d 8 -p ack -e 40 -c 0 -i 4222 -a 0 -x {10.0 9.0 2106 ------- null} r -t 2.40357 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4221 -a 0 -x {9.0 10.0 2115 ------- null} + -t 2.40357 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4221 -a 0 -x {9.0 10.0 2115 ------- null} h -t 2.40357 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4221 -a 0 -x {9.0 10.0 2115 ------- null} r -t 2.40371 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4207 -a 0 -x {9.0 10.0 2108 ------- null} + -t 2.40371 -s 10 -d 7 -p ack -e 40 -c 0 -i 4226 -a 0 -x {10.0 9.0 2108 ------- null} - -t 2.40371 -s 10 -d 7 -p ack -e 40 -c 0 -i 4226 -a 0 -x {10.0 9.0 2108 ------- null} h -t 2.40371 -s 10 -d 7 -p ack -e 40 -c 0 -i 4226 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.40416 -s 0 -d 9 -p ack -e 40 -c 0 -i 4216 -a 0 -x {10.0 9.0 2103 ------- null} + -t 2.40416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4227 -a 0 -x {9.0 10.0 2118 ------- null} - -t 2.40416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4227 -a 0 -x {9.0 10.0 2118 ------- null} h -t 2.40416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4227 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.40418 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4213 -a 0 -x {9.0 10.0 2111 ------- null} - -t 2.40418 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4213 -a 0 -x {9.0 10.0 2111 ------- null} h -t 2.40418 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4213 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.40445 -s 0 -d 9 -p ack -e 40 -c 0 -i 4220 -a 0 -x {10.0 9.0 2105 ------- null} - -t 2.40445 -s 0 -d 9 -p ack -e 40 -c 0 -i 4220 -a 0 -x {10.0 9.0 2105 ------- null} h -t 2.40445 -s 0 -d 9 -p ack -e 40 -c 0 -i 4220 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.40464 -s 10 -d 7 -p ack -e 40 -c 0 -i 4224 -a 0 -x {10.0 9.0 2107 ------- null} + -t 2.40464 -s 7 -d 0 -p ack -e 40 -c 0 -i 4224 -a 0 -x {10.0 9.0 2107 ------- null} h -t 2.40464 -s 7 -d 8 -p ack -e 40 -c 0 -i 4224 -a 0 -x {10.0 9.0 2107 ------- null} r -t 2.4048 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4209 -a 0 -x {9.0 10.0 2109 ------- null} + -t 2.4048 -s 10 -d 7 -p ack -e 40 -c 0 -i 4228 -a 0 -x {10.0 9.0 2109 ------- null} - -t 2.4048 -s 10 -d 7 -p ack -e 40 -c 0 -i 4228 -a 0 -x {10.0 9.0 2109 ------- null} h -t 2.4048 -s 10 -d 7 -p ack -e 40 -c 0 -i 4228 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.40491 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4223 -a 0 -x {9.0 10.0 2116 ------- null} + -t 2.40491 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4223 -a 0 -x {9.0 10.0 2116 ------- null} h -t 2.40491 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4223 -a 0 -x {9.0 10.0 2116 ------- null} r -t 2.4053 -s 0 -d 9 -p ack -e 40 -c 0 -i 4218 -a 0 -x {10.0 9.0 2104 ------- null} + -t 2.4053 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4229 -a 0 -x {9.0 10.0 2119 ------- null} - -t 2.4053 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4229 -a 0 -x {9.0 10.0 2119 ------- null} h -t 2.4053 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4229 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.40542 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4215 -a 0 -x {9.0 10.0 2112 ------- null} - -t 2.40542 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4215 -a 0 -x {9.0 10.0 2112 ------- null} h -t 2.40542 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4215 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.4056 -s 0 -d 9 -p ack -e 40 -c 0 -i 4222 -a 0 -x {10.0 9.0 2106 ------- null} - -t 2.4056 -s 0 -d 9 -p ack -e 40 -c 0 -i 4222 -a 0 -x {10.0 9.0 2106 ------- null} h -t 2.4056 -s 0 -d 9 -p ack -e 40 -c 0 -i 4222 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.40574 -s 10 -d 7 -p ack -e 40 -c 0 -i 4226 -a 0 -x {10.0 9.0 2108 ------- null} + -t 2.40574 -s 7 -d 0 -p ack -e 40 -c 0 -i 4226 -a 0 -x {10.0 9.0 2108 ------- null} h -t 2.40574 -s 7 -d 8 -p ack -e 40 -c 0 -i 4226 -a 0 -x {10.0 9.0 2108 ------- null} r -t 2.40581 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4225 -a 0 -x {9.0 10.0 2117 ------- null} + -t 2.40581 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4225 -a 0 -x {9.0 10.0 2117 ------- null} h -t 2.40581 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4225 -a 0 -x {9.0 10.0 2117 ------- null} r -t 2.40589 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4211 -a 0 -x {9.0 10.0 2110 ------- null} + -t 2.40589 -s 10 -d 7 -p ack -e 40 -c 0 -i 4230 -a 0 -x {10.0 9.0 2110 ------- null} - -t 2.40589 -s 10 -d 7 -p ack -e 40 -c 0 -i 4230 -a 0 -x {10.0 9.0 2110 ------- null} h -t 2.40589 -s 10 -d 7 -p ack -e 40 -c 0 -i 4230 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.40648 -s 0 -d 9 -p ack -e 40 -c 0 -i 4220 -a 0 -x {10.0 9.0 2105 ------- null} + -t 2.40648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4231 -a 0 -x {9.0 10.0 2120 ------- null} - -t 2.40648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4231 -a 0 -x {9.0 10.0 2120 ------- null} h -t 2.40648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4231 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.40651 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4217 -a 0 -x {9.0 10.0 2113 ------- null} - -t 2.40651 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4217 -a 0 -x {9.0 10.0 2113 ------- null} h -t 2.40651 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4217 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.4067 -s 0 -d 9 -p ack -e 40 -c 0 -i 4224 -a 0 -x {10.0 9.0 2107 ------- null} - -t 2.4067 -s 0 -d 9 -p ack -e 40 -c 0 -i 4224 -a 0 -x {10.0 9.0 2107 ------- null} h -t 2.4067 -s 0 -d 9 -p ack -e 40 -c 0 -i 4224 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.40683 -s 10 -d 7 -p ack -e 40 -c 0 -i 4228 -a 0 -x {10.0 9.0 2109 ------- null} + -t 2.40683 -s 7 -d 0 -p ack -e 40 -c 0 -i 4228 -a 0 -x {10.0 9.0 2109 ------- null} h -t 2.40683 -s 7 -d 8 -p ack -e 40 -c 0 -i 4228 -a 0 -x {10.0 9.0 2109 ------- null} r -t 2.40696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4227 -a 0 -x {9.0 10.0 2118 ------- null} + -t 2.40696 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4227 -a 0 -x {9.0 10.0 2118 ------- null} h -t 2.40696 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4227 -a 0 -x {9.0 10.0 2118 ------- null} r -t 2.40698 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4213 -a 0 -x {9.0 10.0 2111 ------- null} + -t 2.40698 -s 10 -d 7 -p ack -e 40 -c 0 -i 4232 -a 0 -x {10.0 9.0 2111 ------- null} - -t 2.40698 -s 10 -d 7 -p ack -e 40 -c 0 -i 4232 -a 0 -x {10.0 9.0 2111 ------- null} h -t 2.40698 -s 10 -d 7 -p ack -e 40 -c 0 -i 4232 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.4076 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4219 -a 0 -x {9.0 10.0 2114 ------- null} - -t 2.4076 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4219 -a 0 -x {9.0 10.0 2114 ------- null} h -t 2.4076 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4219 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.40763 -s 0 -d 9 -p ack -e 40 -c 0 -i 4222 -a 0 -x {10.0 9.0 2106 ------- null} + -t 2.40763 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4233 -a 0 -x {9.0 10.0 2121 ------- null} - -t 2.40763 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4233 -a 0 -x {9.0 10.0 2121 ------- null} h -t 2.40763 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4233 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.40787 -s 0 -d 9 -p ack -e 40 -c 0 -i 4226 -a 0 -x {10.0 9.0 2108 ------- null} - -t 2.40787 -s 0 -d 9 -p ack -e 40 -c 0 -i 4226 -a 0 -x {10.0 9.0 2108 ------- null} h -t 2.40787 -s 0 -d 9 -p ack -e 40 -c 0 -i 4226 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.40792 -s 10 -d 7 -p ack -e 40 -c 0 -i 4230 -a 0 -x {10.0 9.0 2110 ------- null} + -t 2.40792 -s 7 -d 0 -p ack -e 40 -c 0 -i 4230 -a 0 -x {10.0 9.0 2110 ------- null} h -t 2.40792 -s 7 -d 8 -p ack -e 40 -c 0 -i 4230 -a 0 -x {10.0 9.0 2110 ------- null} r -t 2.4081 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4229 -a 0 -x {9.0 10.0 2119 ------- null} + -t 2.4081 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4229 -a 0 -x {9.0 10.0 2119 ------- null} h -t 2.4081 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4229 -a 0 -x {9.0 10.0 2119 ------- null} r -t 2.40822 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4215 -a 0 -x {9.0 10.0 2112 ------- null} + -t 2.40822 -s 10 -d 7 -p ack -e 40 -c 0 -i 4234 -a 0 -x {10.0 9.0 2112 ------- null} - -t 2.40822 -s 10 -d 7 -p ack -e 40 -c 0 -i 4234 -a 0 -x {10.0 9.0 2112 ------- null} h -t 2.40822 -s 10 -d 7 -p ack -e 40 -c 0 -i 4234 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.40872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4221 -a 0 -x {9.0 10.0 2115 ------- null} - -t 2.40872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4221 -a 0 -x {9.0 10.0 2115 ------- null} h -t 2.40872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4221 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.40874 -s 0 -d 9 -p ack -e 40 -c 0 -i 4224 -a 0 -x {10.0 9.0 2107 ------- null} + -t 2.40874 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4235 -a 0 -x {9.0 10.0 2122 ------- null} - -t 2.40874 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4235 -a 0 -x {9.0 10.0 2122 ------- null} h -t 2.40874 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4235 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.40878 -s 0 -d 9 -p ack -e 40 -c 0 -i 4228 -a 0 -x {10.0 9.0 2109 ------- null} - -t 2.40878 -s 0 -d 9 -p ack -e 40 -c 0 -i 4228 -a 0 -x {10.0 9.0 2109 ------- null} h -t 2.40878 -s 0 -d 9 -p ack -e 40 -c 0 -i 4228 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.40901 -s 10 -d 7 -p ack -e 40 -c 0 -i 4232 -a 0 -x {10.0 9.0 2111 ------- null} + -t 2.40901 -s 7 -d 0 -p ack -e 40 -c 0 -i 4232 -a 0 -x {10.0 9.0 2111 ------- null} h -t 2.40901 -s 7 -d 8 -p ack -e 40 -c 0 -i 4232 -a 0 -x {10.0 9.0 2111 ------- null} r -t 2.40928 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4231 -a 0 -x {9.0 10.0 2120 ------- null} + -t 2.40928 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4231 -a 0 -x {9.0 10.0 2120 ------- null} h -t 2.40928 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4231 -a 0 -x {9.0 10.0 2120 ------- null} r -t 2.40931 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4217 -a 0 -x {9.0 10.0 2113 ------- null} + -t 2.40931 -s 10 -d 7 -p ack -e 40 -c 0 -i 4236 -a 0 -x {10.0 9.0 2113 ------- null} - -t 2.40931 -s 10 -d 7 -p ack -e 40 -c 0 -i 4236 -a 0 -x {10.0 9.0 2113 ------- null} h -t 2.40931 -s 10 -d 7 -p ack -e 40 -c 0 -i 4236 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.40981 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4223 -a 0 -x {9.0 10.0 2116 ------- null} - -t 2.40981 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4223 -a 0 -x {9.0 10.0 2116 ------- null} h -t 2.40981 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4223 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.4099 -s 0 -d 9 -p ack -e 40 -c 0 -i 4226 -a 0 -x {10.0 9.0 2108 ------- null} + -t 2.4099 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4237 -a 0 -x {9.0 10.0 2123 ------- null} - -t 2.4099 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4237 -a 0 -x {9.0 10.0 2123 ------- null} h -t 2.4099 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4237 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.41002 -s 0 -d 9 -p ack -e 40 -c 0 -i 4230 -a 0 -x {10.0 9.0 2110 ------- null} - -t 2.41002 -s 0 -d 9 -p ack -e 40 -c 0 -i 4230 -a 0 -x {10.0 9.0 2110 ------- null} h -t 2.41002 -s 0 -d 9 -p ack -e 40 -c 0 -i 4230 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.41026 -s 10 -d 7 -p ack -e 40 -c 0 -i 4234 -a 0 -x {10.0 9.0 2112 ------- null} + -t 2.41026 -s 7 -d 0 -p ack -e 40 -c 0 -i 4234 -a 0 -x {10.0 9.0 2112 ------- null} h -t 2.41026 -s 7 -d 8 -p ack -e 40 -c 0 -i 4234 -a 0 -x {10.0 9.0 2112 ------- null} r -t 2.4104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4219 -a 0 -x {9.0 10.0 2114 ------- null} + -t 2.4104 -s 10 -d 7 -p ack -e 40 -c 0 -i 4238 -a 0 -x {10.0 9.0 2114 ------- null} - -t 2.4104 -s 10 -d 7 -p ack -e 40 -c 0 -i 4238 -a 0 -x {10.0 9.0 2114 ------- null} h -t 2.4104 -s 10 -d 7 -p ack -e 40 -c 0 -i 4238 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.41043 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4233 -a 0 -x {9.0 10.0 2121 ------- null} + -t 2.41043 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4233 -a 0 -x {9.0 10.0 2121 ------- null} h -t 2.41043 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4233 -a 0 -x {9.0 10.0 2121 ------- null} r -t 2.41082 -s 0 -d 9 -p ack -e 40 -c 0 -i 4228 -a 0 -x {10.0 9.0 2109 ------- null} + -t 2.41082 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4239 -a 0 -x {9.0 10.0 2124 ------- null} - -t 2.41082 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4239 -a 0 -x {9.0 10.0 2124 ------- null} h -t 2.41082 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4239 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.4109 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4225 -a 0 -x {9.0 10.0 2117 ------- null} - -t 2.4109 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4225 -a 0 -x {9.0 10.0 2117 ------- null} h -t 2.4109 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4225 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.41107 -s 0 -d 9 -p ack -e 40 -c 0 -i 4232 -a 0 -x {10.0 9.0 2111 ------- null} - -t 2.41107 -s 0 -d 9 -p ack -e 40 -c 0 -i 4232 -a 0 -x {10.0 9.0 2111 ------- null} h -t 2.41107 -s 0 -d 9 -p ack -e 40 -c 0 -i 4232 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.41134 -s 10 -d 7 -p ack -e 40 -c 0 -i 4236 -a 0 -x {10.0 9.0 2113 ------- null} + -t 2.41134 -s 7 -d 0 -p ack -e 40 -c 0 -i 4236 -a 0 -x {10.0 9.0 2113 ------- null} h -t 2.41134 -s 7 -d 8 -p ack -e 40 -c 0 -i 4236 -a 0 -x {10.0 9.0 2113 ------- null} r -t 2.41152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4221 -a 0 -x {9.0 10.0 2115 ------- null} + -t 2.41152 -s 10 -d 7 -p ack -e 40 -c 0 -i 4240 -a 0 -x {10.0 9.0 2115 ------- null} - -t 2.41152 -s 10 -d 7 -p ack -e 40 -c 0 -i 4240 -a 0 -x {10.0 9.0 2115 ------- null} h -t 2.41152 -s 10 -d 7 -p ack -e 40 -c 0 -i 4240 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.41154 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4235 -a 0 -x {9.0 10.0 2122 ------- null} + -t 2.41154 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4235 -a 0 -x {9.0 10.0 2122 ------- null} h -t 2.41154 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4235 -a 0 -x {9.0 10.0 2122 ------- null} + -t 2.41198 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4227 -a 0 -x {9.0 10.0 2118 ------- null} - -t 2.41198 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4227 -a 0 -x {9.0 10.0 2118 ------- null} h -t 2.41198 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4227 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.41205 -s 0 -d 9 -p ack -e 40 -c 0 -i 4230 -a 0 -x {10.0 9.0 2110 ------- null} + -t 2.41205 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4241 -a 0 -x {9.0 10.0 2125 ------- null} - -t 2.41205 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4241 -a 0 -x {9.0 10.0 2125 ------- null} h -t 2.41205 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4241 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.41219 -s 0 -d 9 -p ack -e 40 -c 0 -i 4234 -a 0 -x {10.0 9.0 2112 ------- null} - -t 2.41219 -s 0 -d 9 -p ack -e 40 -c 0 -i 4234 -a 0 -x {10.0 9.0 2112 ------- null} h -t 2.41219 -s 0 -d 9 -p ack -e 40 -c 0 -i 4234 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.41243 -s 10 -d 7 -p ack -e 40 -c 0 -i 4238 -a 0 -x {10.0 9.0 2114 ------- null} + -t 2.41243 -s 7 -d 0 -p ack -e 40 -c 0 -i 4238 -a 0 -x {10.0 9.0 2114 ------- null} h -t 2.41243 -s 7 -d 8 -p ack -e 40 -c 0 -i 4238 -a 0 -x {10.0 9.0 2114 ------- null} r -t 2.41261 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4223 -a 0 -x {9.0 10.0 2116 ------- null} + -t 2.41261 -s 10 -d 7 -p ack -e 40 -c 0 -i 4242 -a 0 -x {10.0 9.0 2116 ------- null} - -t 2.41261 -s 10 -d 7 -p ack -e 40 -c 0 -i 4242 -a 0 -x {10.0 9.0 2116 ------- null} h -t 2.41261 -s 10 -d 7 -p ack -e 40 -c 0 -i 4242 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.4127 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4237 -a 0 -x {9.0 10.0 2123 ------- null} + -t 2.4127 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4237 -a 0 -x {9.0 10.0 2123 ------- null} h -t 2.4127 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4237 -a 0 -x {9.0 10.0 2123 ------- null} + -t 2.41307 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4229 -a 0 -x {9.0 10.0 2119 ------- null} - -t 2.41307 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4229 -a 0 -x {9.0 10.0 2119 ------- null} h -t 2.41307 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4229 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.4131 -s 0 -d 9 -p ack -e 40 -c 0 -i 4232 -a 0 -x {10.0 9.0 2111 ------- null} + -t 2.4131 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4243 -a 0 -x {9.0 10.0 2126 ------- null} - -t 2.4131 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4243 -a 0 -x {9.0 10.0 2126 ------- null} h -t 2.4131 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4243 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.41338 -s 0 -d 9 -p ack -e 40 -c 0 -i 4236 -a 0 -x {10.0 9.0 2113 ------- null} - -t 2.41338 -s 0 -d 9 -p ack -e 40 -c 0 -i 4236 -a 0 -x {10.0 9.0 2113 ------- null} h -t 2.41338 -s 0 -d 9 -p ack -e 40 -c 0 -i 4236 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.41355 -s 10 -d 7 -p ack -e 40 -c 0 -i 4240 -a 0 -x {10.0 9.0 2115 ------- null} + -t 2.41355 -s 7 -d 0 -p ack -e 40 -c 0 -i 4240 -a 0 -x {10.0 9.0 2115 ------- null} h -t 2.41355 -s 7 -d 8 -p ack -e 40 -c 0 -i 4240 -a 0 -x {10.0 9.0 2115 ------- null} r -t 2.41362 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4239 -a 0 -x {9.0 10.0 2124 ------- null} + -t 2.41362 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4239 -a 0 -x {9.0 10.0 2124 ------- null} h -t 2.41362 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4239 -a 0 -x {9.0 10.0 2124 ------- null} r -t 2.4137 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4225 -a 0 -x {9.0 10.0 2117 ------- null} + -t 2.4137 -s 10 -d 7 -p ack -e 40 -c 0 -i 4244 -a 0 -x {10.0 9.0 2117 ------- null} - -t 2.4137 -s 10 -d 7 -p ack -e 40 -c 0 -i 4244 -a 0 -x {10.0 9.0 2117 ------- null} h -t 2.4137 -s 10 -d 7 -p ack -e 40 -c 0 -i 4244 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.41421 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4231 -a 0 -x {9.0 10.0 2120 ------- null} - -t 2.41421 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4231 -a 0 -x {9.0 10.0 2120 ------- null} h -t 2.41421 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4231 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.41422 -s 0 -d 9 -p ack -e 40 -c 0 -i 4234 -a 0 -x {10.0 9.0 2112 ------- null} + -t 2.41422 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4245 -a 0 -x {9.0 10.0 2127 ------- null} - -t 2.41422 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4245 -a 0 -x {9.0 10.0 2127 ------- null} h -t 2.41422 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4245 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.41442 -s 0 -d 9 -p ack -e 40 -c 0 -i 4238 -a 0 -x {10.0 9.0 2114 ------- null} - -t 2.41442 -s 0 -d 9 -p ack -e 40 -c 0 -i 4238 -a 0 -x {10.0 9.0 2114 ------- null} h -t 2.41442 -s 0 -d 9 -p ack -e 40 -c 0 -i 4238 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.41464 -s 10 -d 7 -p ack -e 40 -c 0 -i 4242 -a 0 -x {10.0 9.0 2116 ------- null} + -t 2.41464 -s 7 -d 0 -p ack -e 40 -c 0 -i 4242 -a 0 -x {10.0 9.0 2116 ------- null} h -t 2.41464 -s 7 -d 8 -p ack -e 40 -c 0 -i 4242 -a 0 -x {10.0 9.0 2116 ------- null} r -t 2.41478 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4227 -a 0 -x {9.0 10.0 2118 ------- null} + -t 2.41478 -s 10 -d 7 -p ack -e 40 -c 0 -i 4246 -a 0 -x {10.0 9.0 2118 ------- null} - -t 2.41478 -s 10 -d 7 -p ack -e 40 -c 0 -i 4246 -a 0 -x {10.0 9.0 2118 ------- null} h -t 2.41478 -s 10 -d 7 -p ack -e 40 -c 0 -i 4246 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.41485 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4241 -a 0 -x {9.0 10.0 2125 ------- null} + -t 2.41485 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4241 -a 0 -x {9.0 10.0 2125 ------- null} h -t 2.41485 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4241 -a 0 -x {9.0 10.0 2125 ------- null} + -t 2.4153 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4233 -a 0 -x {9.0 10.0 2121 ------- null} - -t 2.4153 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4233 -a 0 -x {9.0 10.0 2121 ------- null} h -t 2.4153 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4233 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.41541 -s 0 -d 9 -p ack -e 40 -c 0 -i 4236 -a 0 -x {10.0 9.0 2113 ------- null} + -t 2.41541 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4247 -a 0 -x {9.0 10.0 2128 ------- null} - -t 2.41541 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4247 -a 0 -x {9.0 10.0 2128 ------- null} h -t 2.41541 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4247 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.41541 -s 0 -d 9 -p ack -e 40 -c 0 -i 4240 -a 0 -x {10.0 9.0 2115 ------- null} - -t 2.41541 -s 0 -d 9 -p ack -e 40 -c 0 -i 4240 -a 0 -x {10.0 9.0 2115 ------- null} h -t 2.41541 -s 0 -d 9 -p ack -e 40 -c 0 -i 4240 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.41573 -s 10 -d 7 -p ack -e 40 -c 0 -i 4244 -a 0 -x {10.0 9.0 2117 ------- null} + -t 2.41573 -s 7 -d 0 -p ack -e 40 -c 0 -i 4244 -a 0 -x {10.0 9.0 2117 ------- null} h -t 2.41573 -s 7 -d 8 -p ack -e 40 -c 0 -i 4244 -a 0 -x {10.0 9.0 2117 ------- null} r -t 2.41587 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4229 -a 0 -x {9.0 10.0 2119 ------- null} + -t 2.41587 -s 10 -d 7 -p ack -e 40 -c 0 -i 4248 -a 0 -x {10.0 9.0 2119 ------- null} - -t 2.41587 -s 10 -d 7 -p ack -e 40 -c 0 -i 4248 -a 0 -x {10.0 9.0 2119 ------- null} h -t 2.41587 -s 10 -d 7 -p ack -e 40 -c 0 -i 4248 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.4159 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4243 -a 0 -x {9.0 10.0 2126 ------- null} + -t 2.4159 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4243 -a 0 -x {9.0 10.0 2126 ------- null} h -t 2.4159 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4243 -a 0 -x {9.0 10.0 2126 ------- null} + -t 2.41638 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4235 -a 0 -x {9.0 10.0 2122 ------- null} - -t 2.41638 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4235 -a 0 -x {9.0 10.0 2122 ------- null} h -t 2.41638 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4235 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.41645 -s 0 -d 9 -p ack -e 40 -c 0 -i 4238 -a 0 -x {10.0 9.0 2114 ------- null} + -t 2.41645 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4249 -a 0 -x {9.0 10.0 2129 ------- null} - -t 2.41645 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4249 -a 0 -x {9.0 10.0 2129 ------- null} h -t 2.41645 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4249 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.41658 -s 0 -d 9 -p ack -e 40 -c 0 -i 4242 -a 0 -x {10.0 9.0 2116 ------- null} - -t 2.41658 -s 0 -d 9 -p ack -e 40 -c 0 -i 4242 -a 0 -x {10.0 9.0 2116 ------- null} h -t 2.41658 -s 0 -d 9 -p ack -e 40 -c 0 -i 4242 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.41682 -s 10 -d 7 -p ack -e 40 -c 0 -i 4246 -a 0 -x {10.0 9.0 2118 ------- null} + -t 2.41682 -s 7 -d 0 -p ack -e 40 -c 0 -i 4246 -a 0 -x {10.0 9.0 2118 ------- null} h -t 2.41682 -s 7 -d 8 -p ack -e 40 -c 0 -i 4246 -a 0 -x {10.0 9.0 2118 ------- null} r -t 2.41701 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4231 -a 0 -x {9.0 10.0 2120 ------- null} + -t 2.41701 -s 10 -d 7 -p ack -e 40 -c 0 -i 4250 -a 0 -x {10.0 9.0 2120 ------- null} - -t 2.41701 -s 10 -d 7 -p ack -e 40 -c 0 -i 4250 -a 0 -x {10.0 9.0 2120 ------- null} h -t 2.41701 -s 10 -d 7 -p ack -e 40 -c 0 -i 4250 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.41702 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4245 -a 0 -x {9.0 10.0 2127 ------- null} + -t 2.41702 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4245 -a 0 -x {9.0 10.0 2127 ------- null} h -t 2.41702 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4245 -a 0 -x {9.0 10.0 2127 ------- null} r -t 2.41744 -s 0 -d 9 -p ack -e 40 -c 0 -i 4240 -a 0 -x {10.0 9.0 2115 ------- null} + -t 2.41744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4251 -a 0 -x {9.0 10.0 2130 ------- null} - -t 2.41744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4251 -a 0 -x {9.0 10.0 2130 ------- null} h -t 2.41744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4251 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.41747 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4237 -a 0 -x {9.0 10.0 2123 ------- null} - -t 2.41747 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4237 -a 0 -x {9.0 10.0 2123 ------- null} h -t 2.41747 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4237 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.41773 -s 0 -d 9 -p ack -e 40 -c 0 -i 4244 -a 0 -x {10.0 9.0 2117 ------- null} - -t 2.41773 -s 0 -d 9 -p ack -e 40 -c 0 -i 4244 -a 0 -x {10.0 9.0 2117 ------- null} h -t 2.41773 -s 0 -d 9 -p ack -e 40 -c 0 -i 4244 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.4179 -s 10 -d 7 -p ack -e 40 -c 0 -i 4248 -a 0 -x {10.0 9.0 2119 ------- null} + -t 2.4179 -s 7 -d 0 -p ack -e 40 -c 0 -i 4248 -a 0 -x {10.0 9.0 2119 ------- null} h -t 2.4179 -s 7 -d 8 -p ack -e 40 -c 0 -i 4248 -a 0 -x {10.0 9.0 2119 ------- null} r -t 2.4181 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4233 -a 0 -x {9.0 10.0 2121 ------- null} + -t 2.4181 -s 10 -d 7 -p ack -e 40 -c 0 -i 4252 -a 0 -x {10.0 9.0 2121 ------- null} - -t 2.4181 -s 10 -d 7 -p ack -e 40 -c 0 -i 4252 -a 0 -x {10.0 9.0 2121 ------- null} h -t 2.4181 -s 10 -d 7 -p ack -e 40 -c 0 -i 4252 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.41821 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4247 -a 0 -x {9.0 10.0 2128 ------- null} + -t 2.41821 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4247 -a 0 -x {9.0 10.0 2128 ------- null} h -t 2.41821 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4247 -a 0 -x {9.0 10.0 2128 ------- null} r -t 2.41861 -s 0 -d 9 -p ack -e 40 -c 0 -i 4242 -a 0 -x {10.0 9.0 2116 ------- null} + -t 2.41861 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4253 -a 0 -x {9.0 10.0 2131 ------- null} - -t 2.41861 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4253 -a 0 -x {9.0 10.0 2131 ------- null} h -t 2.41861 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4253 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.41877 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4239 -a 0 -x {9.0 10.0 2124 ------- null} - -t 2.41877 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4239 -a 0 -x {9.0 10.0 2124 ------- null} h -t 2.41877 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4239 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.41904 -s 10 -d 7 -p ack -e 40 -c 0 -i 4250 -a 0 -x {10.0 9.0 2120 ------- null} + -t 2.41904 -s 7 -d 0 -p ack -e 40 -c 0 -i 4250 -a 0 -x {10.0 9.0 2120 ------- null} h -t 2.41904 -s 7 -d 8 -p ack -e 40 -c 0 -i 4250 -a 0 -x {10.0 9.0 2120 ------- null} + -t 2.41907 -s 0 -d 9 -p ack -e 40 -c 0 -i 4246 -a 0 -x {10.0 9.0 2118 ------- null} - -t 2.41907 -s 0 -d 9 -p ack -e 40 -c 0 -i 4246 -a 0 -x {10.0 9.0 2118 ------- null} h -t 2.41907 -s 0 -d 9 -p ack -e 40 -c 0 -i 4246 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.41918 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4235 -a 0 -x {9.0 10.0 2122 ------- null} + -t 2.41918 -s 10 -d 7 -p ack -e 40 -c 0 -i 4254 -a 0 -x {10.0 9.0 2122 ------- null} - -t 2.41918 -s 10 -d 7 -p ack -e 40 -c 0 -i 4254 -a 0 -x {10.0 9.0 2122 ------- null} h -t 2.41918 -s 10 -d 7 -p ack -e 40 -c 0 -i 4254 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.41925 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4249 -a 0 -x {9.0 10.0 2129 ------- null} + -t 2.41925 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4249 -a 0 -x {9.0 10.0 2129 ------- null} h -t 2.41925 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4249 -a 0 -x {9.0 10.0 2129 ------- null} r -t 2.41976 -s 0 -d 9 -p ack -e 40 -c 0 -i 4244 -a 0 -x {10.0 9.0 2117 ------- null} + -t 2.41976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4255 -a 0 -x {9.0 10.0 2132 ------- null} - -t 2.41976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4255 -a 0 -x {9.0 10.0 2132 ------- null} h -t 2.41976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4255 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.41998 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4241 -a 0 -x {9.0 10.0 2125 ------- null} - -t 2.41998 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4241 -a 0 -x {9.0 10.0 2125 ------- null} h -t 2.41998 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4241 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.42013 -s 10 -d 7 -p ack -e 40 -c 0 -i 4252 -a 0 -x {10.0 9.0 2121 ------- null} + -t 2.42013 -s 7 -d 0 -p ack -e 40 -c 0 -i 4252 -a 0 -x {10.0 9.0 2121 ------- null} h -t 2.42013 -s 7 -d 8 -p ack -e 40 -c 0 -i 4252 -a 0 -x {10.0 9.0 2121 ------- null} + -t 2.42014 -s 0 -d 9 -p ack -e 40 -c 0 -i 4248 -a 0 -x {10.0 9.0 2119 ------- null} - -t 2.42014 -s 0 -d 9 -p ack -e 40 -c 0 -i 4248 -a 0 -x {10.0 9.0 2119 ------- null} h -t 2.42014 -s 0 -d 9 -p ack -e 40 -c 0 -i 4248 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.42024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4251 -a 0 -x {9.0 10.0 2130 ------- null} + -t 2.42024 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4251 -a 0 -x {9.0 10.0 2130 ------- null} h -t 2.42024 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4251 -a 0 -x {9.0 10.0 2130 ------- null} r -t 2.42027 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4237 -a 0 -x {9.0 10.0 2123 ------- null} + -t 2.42027 -s 10 -d 7 -p ack -e 40 -c 0 -i 4256 -a 0 -x {10.0 9.0 2123 ------- null} - -t 2.42027 -s 10 -d 7 -p ack -e 40 -c 0 -i 4256 -a 0 -x {10.0 9.0 2123 ------- null} h -t 2.42027 -s 10 -d 7 -p ack -e 40 -c 0 -i 4256 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.42107 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4243 -a 0 -x {9.0 10.0 2126 ------- null} - -t 2.42107 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4243 -a 0 -x {9.0 10.0 2126 ------- null} h -t 2.42107 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4243 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.4211 -s 0 -d 9 -p ack -e 40 -c 0 -i 4246 -a 0 -x {10.0 9.0 2118 ------- null} + -t 2.4211 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4257 -a 0 -x {9.0 10.0 2133 ------- null} - -t 2.4211 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4257 -a 0 -x {9.0 10.0 2133 ------- null} h -t 2.4211 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4257 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.42122 -s 10 -d 7 -p ack -e 40 -c 0 -i 4254 -a 0 -x {10.0 9.0 2122 ------- null} + -t 2.42122 -s 7 -d 0 -p ack -e 40 -c 0 -i 4254 -a 0 -x {10.0 9.0 2122 ------- null} h -t 2.42122 -s 7 -d 8 -p ack -e 40 -c 0 -i 4254 -a 0 -x {10.0 9.0 2122 ------- null} + -t 2.42128 -s 0 -d 9 -p ack -e 40 -c 0 -i 4250 -a 0 -x {10.0 9.0 2120 ------- null} - -t 2.42128 -s 0 -d 9 -p ack -e 40 -c 0 -i 4250 -a 0 -x {10.0 9.0 2120 ------- null} h -t 2.42128 -s 0 -d 9 -p ack -e 40 -c 0 -i 4250 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.42141 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4253 -a 0 -x {9.0 10.0 2131 ------- null} + -t 2.42141 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4253 -a 0 -x {9.0 10.0 2131 ------- null} h -t 2.42141 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4253 -a 0 -x {9.0 10.0 2131 ------- null} r -t 2.42157 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4239 -a 0 -x {9.0 10.0 2124 ------- null} + -t 2.42157 -s 10 -d 7 -p ack -e 40 -c 0 -i 4258 -a 0 -x {10.0 9.0 2124 ------- null} - -t 2.42157 -s 10 -d 7 -p ack -e 40 -c 0 -i 4258 -a 0 -x {10.0 9.0 2124 ------- null} h -t 2.42157 -s 10 -d 7 -p ack -e 40 -c 0 -i 4258 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.42216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4245 -a 0 -x {9.0 10.0 2127 ------- null} - -t 2.42216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4245 -a 0 -x {9.0 10.0 2127 ------- null} h -t 2.42216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4245 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.42218 -s 0 -d 9 -p ack -e 40 -c 0 -i 4248 -a 0 -x {10.0 9.0 2119 ------- null} + -t 2.42218 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4259 -a 0 -x {9.0 10.0 2134 ------- null} - -t 2.42218 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4259 -a 0 -x {9.0 10.0 2134 ------- null} h -t 2.42218 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4259 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.4223 -s 10 -d 7 -p ack -e 40 -c 0 -i 4256 -a 0 -x {10.0 9.0 2123 ------- null} + -t 2.4223 -s 7 -d 0 -p ack -e 40 -c 0 -i 4256 -a 0 -x {10.0 9.0 2123 ------- null} h -t 2.4223 -s 7 -d 8 -p ack -e 40 -c 0 -i 4256 -a 0 -x {10.0 9.0 2123 ------- null} + -t 2.42235 -s 0 -d 9 -p ack -e 40 -c 0 -i 4252 -a 0 -x {10.0 9.0 2121 ------- null} - -t 2.42235 -s 0 -d 9 -p ack -e 40 -c 0 -i 4252 -a 0 -x {10.0 9.0 2121 ------- null} h -t 2.42235 -s 0 -d 9 -p ack -e 40 -c 0 -i 4252 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.42256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4255 -a 0 -x {9.0 10.0 2132 ------- null} + -t 2.42256 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4255 -a 0 -x {9.0 10.0 2132 ------- null} h -t 2.42256 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4255 -a 0 -x {9.0 10.0 2132 ------- null} r -t 2.42278 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4241 -a 0 -x {9.0 10.0 2125 ------- null} + -t 2.42278 -s 10 -d 7 -p ack -e 40 -c 0 -i 4260 -a 0 -x {10.0 9.0 2125 ------- null} - -t 2.42278 -s 10 -d 7 -p ack -e 40 -c 0 -i 4260 -a 0 -x {10.0 9.0 2125 ------- null} h -t 2.42278 -s 10 -d 7 -p ack -e 40 -c 0 -i 4260 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.42325 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4247 -a 0 -x {9.0 10.0 2128 ------- null} - -t 2.42325 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4247 -a 0 -x {9.0 10.0 2128 ------- null} h -t 2.42325 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4247 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.42331 -s 0 -d 9 -p ack -e 40 -c 0 -i 4250 -a 0 -x {10.0 9.0 2120 ------- null} + -t 2.42331 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4261 -a 0 -x {9.0 10.0 2135 ------- null} - -t 2.42331 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4261 -a 0 -x {9.0 10.0 2135 ------- null} h -t 2.42331 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4261 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.42333 -s 0 -d 9 -p ack -e 40 -c 0 -i 4254 -a 0 -x {10.0 9.0 2122 ------- null} - -t 2.42333 -s 0 -d 9 -p ack -e 40 -c 0 -i 4254 -a 0 -x {10.0 9.0 2122 ------- null} h -t 2.42333 -s 0 -d 9 -p ack -e 40 -c 0 -i 4254 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.4236 -s 10 -d 7 -p ack -e 40 -c 0 -i 4258 -a 0 -x {10.0 9.0 2124 ------- null} + -t 2.4236 -s 7 -d 0 -p ack -e 40 -c 0 -i 4258 -a 0 -x {10.0 9.0 2124 ------- null} h -t 2.4236 -s 7 -d 8 -p ack -e 40 -c 0 -i 4258 -a 0 -x {10.0 9.0 2124 ------- null} r -t 2.42387 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4243 -a 0 -x {9.0 10.0 2126 ------- null} + -t 2.42387 -s 10 -d 7 -p ack -e 40 -c 0 -i 4262 -a 0 -x {10.0 9.0 2126 ------- null} - -t 2.42387 -s 10 -d 7 -p ack -e 40 -c 0 -i 4262 -a 0 -x {10.0 9.0 2126 ------- null} h -t 2.42387 -s 10 -d 7 -p ack -e 40 -c 0 -i 4262 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.4239 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4257 -a 0 -x {9.0 10.0 2133 ------- null} + -t 2.4239 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4257 -a 0 -x {9.0 10.0 2133 ------- null} h -t 2.4239 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4257 -a 0 -x {9.0 10.0 2133 ------- null} + -t 2.42434 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4249 -a 0 -x {9.0 10.0 2129 ------- null} - -t 2.42434 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4249 -a 0 -x {9.0 10.0 2129 ------- null} h -t 2.42434 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4249 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.42438 -s 0 -d 9 -p ack -e 40 -c 0 -i 4252 -a 0 -x {10.0 9.0 2121 ------- null} + -t 2.42438 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4263 -a 0 -x {9.0 10.0 2136 ------- null} - -t 2.42438 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4263 -a 0 -x {9.0 10.0 2136 ------- null} h -t 2.42438 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4263 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.42456 -s 0 -d 9 -p ack -e 40 -c 0 -i 4256 -a 0 -x {10.0 9.0 2123 ------- null} - -t 2.42456 -s 0 -d 9 -p ack -e 40 -c 0 -i 4256 -a 0 -x {10.0 9.0 2123 ------- null} h -t 2.42456 -s 0 -d 9 -p ack -e 40 -c 0 -i 4256 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.42482 -s 10 -d 7 -p ack -e 40 -c 0 -i 4260 -a 0 -x {10.0 9.0 2125 ------- null} + -t 2.42482 -s 7 -d 0 -p ack -e 40 -c 0 -i 4260 -a 0 -x {10.0 9.0 2125 ------- null} h -t 2.42482 -s 7 -d 8 -p ack -e 40 -c 0 -i 4260 -a 0 -x {10.0 9.0 2125 ------- null} r -t 2.42496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4245 -a 0 -x {9.0 10.0 2127 ------- null} + -t 2.42496 -s 10 -d 7 -p ack -e 40 -c 0 -i 4264 -a 0 -x {10.0 9.0 2127 ------- null} - -t 2.42496 -s 10 -d 7 -p ack -e 40 -c 0 -i 4264 -a 0 -x {10.0 9.0 2127 ------- null} h -t 2.42496 -s 10 -d 7 -p ack -e 40 -c 0 -i 4264 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.42498 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4259 -a 0 -x {9.0 10.0 2134 ------- null} + -t 2.42498 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4259 -a 0 -x {9.0 10.0 2134 ------- null} h -t 2.42498 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4259 -a 0 -x {9.0 10.0 2134 ------- null} r -t 2.42536 -s 0 -d 9 -p ack -e 40 -c 0 -i 4254 -a 0 -x {10.0 9.0 2122 ------- null} + -t 2.42536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4265 -a 0 -x {9.0 10.0 2137 ------- null} - -t 2.42536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4265 -a 0 -x {9.0 10.0 2137 ------- null} h -t 2.42536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4265 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.42542 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4251 -a 0 -x {9.0 10.0 2130 ------- null} - -t 2.42542 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4251 -a 0 -x {9.0 10.0 2130 ------- null} h -t 2.42542 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4251 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.42558 -s 0 -d 9 -p ack -e 40 -c 0 -i 4258 -a 0 -x {10.0 9.0 2124 ------- null} - -t 2.42558 -s 0 -d 9 -p ack -e 40 -c 0 -i 4258 -a 0 -x {10.0 9.0 2124 ------- null} h -t 2.42558 -s 0 -d 9 -p ack -e 40 -c 0 -i 4258 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.4259 -s 10 -d 7 -p ack -e 40 -c 0 -i 4262 -a 0 -x {10.0 9.0 2126 ------- null} + -t 2.4259 -s 7 -d 0 -p ack -e 40 -c 0 -i 4262 -a 0 -x {10.0 9.0 2126 ------- null} h -t 2.4259 -s 7 -d 8 -p ack -e 40 -c 0 -i 4262 -a 0 -x {10.0 9.0 2126 ------- null} r -t 2.42605 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4247 -a 0 -x {9.0 10.0 2128 ------- null} + -t 2.42605 -s 10 -d 7 -p ack -e 40 -c 0 -i 4266 -a 0 -x {10.0 9.0 2128 ------- null} - -t 2.42605 -s 10 -d 7 -p ack -e 40 -c 0 -i 4266 -a 0 -x {10.0 9.0 2128 ------- null} h -t 2.42605 -s 10 -d 7 -p ack -e 40 -c 0 -i 4266 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.42611 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4261 -a 0 -x {9.0 10.0 2135 ------- null} + -t 2.42611 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4261 -a 0 -x {9.0 10.0 2135 ------- null} h -t 2.42611 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4261 -a 0 -x {9.0 10.0 2135 ------- null} + -t 2.42651 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4253 -a 0 -x {9.0 10.0 2131 ------- null} - -t 2.42651 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4253 -a 0 -x {9.0 10.0 2131 ------- null} h -t 2.42651 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4253 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.42659 -s 0 -d 9 -p ack -e 40 -c 0 -i 4256 -a 0 -x {10.0 9.0 2123 ------- null} + -t 2.42659 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4267 -a 0 -x {9.0 10.0 2138 ------- null} - -t 2.42659 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4267 -a 0 -x {9.0 10.0 2138 ------- null} h -t 2.42659 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4267 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.42682 -s 0 -d 9 -p ack -e 40 -c 0 -i 4260 -a 0 -x {10.0 9.0 2125 ------- null} - -t 2.42682 -s 0 -d 9 -p ack -e 40 -c 0 -i 4260 -a 0 -x {10.0 9.0 2125 ------- null} h -t 2.42682 -s 0 -d 9 -p ack -e 40 -c 0 -i 4260 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.42699 -s 10 -d 7 -p ack -e 40 -c 0 -i 4264 -a 0 -x {10.0 9.0 2127 ------- null} + -t 2.42699 -s 7 -d 0 -p ack -e 40 -c 0 -i 4264 -a 0 -x {10.0 9.0 2127 ------- null} h -t 2.42699 -s 7 -d 8 -p ack -e 40 -c 0 -i 4264 -a 0 -x {10.0 9.0 2127 ------- null} r -t 2.42714 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4249 -a 0 -x {9.0 10.0 2129 ------- null} + -t 2.42714 -s 10 -d 7 -p ack -e 40 -c 0 -i 4268 -a 0 -x {10.0 9.0 2129 ------- null} - -t 2.42714 -s 10 -d 7 -p ack -e 40 -c 0 -i 4268 -a 0 -x {10.0 9.0 2129 ------- null} h -t 2.42714 -s 10 -d 7 -p ack -e 40 -c 0 -i 4268 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.42718 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4263 -a 0 -x {9.0 10.0 2136 ------- null} + -t 2.42718 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4263 -a 0 -x {9.0 10.0 2136 ------- null} h -t 2.42718 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4263 -a 0 -x {9.0 10.0 2136 ------- null} r -t 2.42762 -s 0 -d 9 -p ack -e 40 -c 0 -i 4258 -a 0 -x {10.0 9.0 2124 ------- null} + -t 2.42762 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4269 -a 0 -x {9.0 10.0 2139 ------- null} - -t 2.42762 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4269 -a 0 -x {9.0 10.0 2139 ------- null} h -t 2.42762 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4269 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.42776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4255 -a 0 -x {9.0 10.0 2132 ------- null} - -t 2.42776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4255 -a 0 -x {9.0 10.0 2132 ------- null} h -t 2.42776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4255 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.42803 -s 0 -d 9 -p ack -e 40 -c 0 -i 4262 -a 0 -x {10.0 9.0 2126 ------- null} - -t 2.42803 -s 0 -d 9 -p ack -e 40 -c 0 -i 4262 -a 0 -x {10.0 9.0 2126 ------- null} h -t 2.42803 -s 0 -d 9 -p ack -e 40 -c 0 -i 4262 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.42808 -s 10 -d 7 -p ack -e 40 -c 0 -i 4266 -a 0 -x {10.0 9.0 2128 ------- null} + -t 2.42808 -s 7 -d 0 -p ack -e 40 -c 0 -i 4266 -a 0 -x {10.0 9.0 2128 ------- null} h -t 2.42808 -s 7 -d 8 -p ack -e 40 -c 0 -i 4266 -a 0 -x {10.0 9.0 2128 ------- null} r -t 2.42816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4265 -a 0 -x {9.0 10.0 2137 ------- null} + -t 2.42816 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4265 -a 0 -x {9.0 10.0 2137 ------- null} h -t 2.42816 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4265 -a 0 -x {9.0 10.0 2137 ------- null} r -t 2.42822 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4251 -a 0 -x {9.0 10.0 2130 ------- null} + -t 2.42822 -s 10 -d 7 -p ack -e 40 -c 0 -i 4270 -a 0 -x {10.0 9.0 2130 ------- null} - -t 2.42822 -s 10 -d 7 -p ack -e 40 -c 0 -i 4270 -a 0 -x {10.0 9.0 2130 ------- null} h -t 2.42822 -s 10 -d 7 -p ack -e 40 -c 0 -i 4270 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.42885 -s 0 -d 9 -p ack -e 40 -c 0 -i 4260 -a 0 -x {10.0 9.0 2125 ------- null} + -t 2.42885 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4271 -a 0 -x {9.0 10.0 2140 ------- null} - -t 2.42885 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4271 -a 0 -x {9.0 10.0 2140 ------- null} h -t 2.42885 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4271 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.42898 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4257 -a 0 -x {9.0 10.0 2133 ------- null} - -t 2.42898 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4257 -a 0 -x {9.0 10.0 2133 ------- null} h -t 2.42898 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4257 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.42914 -s 0 -d 9 -p ack -e 40 -c 0 -i 4264 -a 0 -x {10.0 9.0 2127 ------- null} - -t 2.42914 -s 0 -d 9 -p ack -e 40 -c 0 -i 4264 -a 0 -x {10.0 9.0 2127 ------- null} h -t 2.42914 -s 0 -d 9 -p ack -e 40 -c 0 -i 4264 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.42917 -s 10 -d 7 -p ack -e 40 -c 0 -i 4268 -a 0 -x {10.0 9.0 2129 ------- null} + -t 2.42917 -s 7 -d 0 -p ack -e 40 -c 0 -i 4268 -a 0 -x {10.0 9.0 2129 ------- null} h -t 2.42917 -s 7 -d 8 -p ack -e 40 -c 0 -i 4268 -a 0 -x {10.0 9.0 2129 ------- null} r -t 2.42931 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4253 -a 0 -x {9.0 10.0 2131 ------- null} + -t 2.42931 -s 10 -d 7 -p ack -e 40 -c 0 -i 4272 -a 0 -x {10.0 9.0 2131 ------- null} - -t 2.42931 -s 10 -d 7 -p ack -e 40 -c 0 -i 4272 -a 0 -x {10.0 9.0 2131 ------- null} h -t 2.42931 -s 10 -d 7 -p ack -e 40 -c 0 -i 4272 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.42939 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4267 -a 0 -x {9.0 10.0 2138 ------- null} + -t 2.42939 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4267 -a 0 -x {9.0 10.0 2138 ------- null} h -t 2.42939 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4267 -a 0 -x {9.0 10.0 2138 ------- null} r -t 2.43006 -s 0 -d 9 -p ack -e 40 -c 0 -i 4262 -a 0 -x {10.0 9.0 2126 ------- null} + -t 2.43006 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4273 -a 0 -x {9.0 10.0 2141 ------- null} - -t 2.43006 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4273 -a 0 -x {9.0 10.0 2141 ------- null} h -t 2.43006 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4273 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.43006 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4259 -a 0 -x {9.0 10.0 2134 ------- null} - -t 2.43006 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4259 -a 0 -x {9.0 10.0 2134 ------- null} h -t 2.43006 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4259 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.43026 -s 10 -d 7 -p ack -e 40 -c 0 -i 4270 -a 0 -x {10.0 9.0 2130 ------- null} + -t 2.43026 -s 7 -d 0 -p ack -e 40 -c 0 -i 4270 -a 0 -x {10.0 9.0 2130 ------- null} h -t 2.43026 -s 7 -d 8 -p ack -e 40 -c 0 -i 4270 -a 0 -x {10.0 9.0 2130 ------- null} + -t 2.4303 -s 0 -d 9 -p ack -e 40 -c 0 -i 4266 -a 0 -x {10.0 9.0 2128 ------- null} - -t 2.4303 -s 0 -d 9 -p ack -e 40 -c 0 -i 4266 -a 0 -x {10.0 9.0 2128 ------- null} h -t 2.4303 -s 0 -d 9 -p ack -e 40 -c 0 -i 4266 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.43042 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4269 -a 0 -x {9.0 10.0 2139 ------- null} + -t 2.43042 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4269 -a 0 -x {9.0 10.0 2139 ------- null} h -t 2.43042 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4269 -a 0 -x {9.0 10.0 2139 ------- null} r -t 2.43056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4255 -a 0 -x {9.0 10.0 2132 ------- null} + -t 2.43056 -s 10 -d 7 -p ack -e 40 -c 0 -i 4274 -a 0 -x {10.0 9.0 2132 ------- null} - -t 2.43056 -s 10 -d 7 -p ack -e 40 -c 0 -i 4274 -a 0 -x {10.0 9.0 2132 ------- null} h -t 2.43056 -s 10 -d 7 -p ack -e 40 -c 0 -i 4274 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.43115 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4261 -a 0 -x {9.0 10.0 2135 ------- null} - -t 2.43115 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4261 -a 0 -x {9.0 10.0 2135 ------- null} h -t 2.43115 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4261 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.43117 -s 0 -d 9 -p ack -e 40 -c 0 -i 4264 -a 0 -x {10.0 9.0 2127 ------- null} + -t 2.43117 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4275 -a 0 -x {9.0 10.0 2142 ------- null} - -t 2.43117 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4275 -a 0 -x {9.0 10.0 2142 ------- null} h -t 2.43117 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4275 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.43123 -s 0 -d 9 -p ack -e 40 -c 0 -i 4268 -a 0 -x {10.0 9.0 2129 ------- null} - -t 2.43123 -s 0 -d 9 -p ack -e 40 -c 0 -i 4268 -a 0 -x {10.0 9.0 2129 ------- null} h -t 2.43123 -s 0 -d 9 -p ack -e 40 -c 0 -i 4268 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.43134 -s 10 -d 7 -p ack -e 40 -c 0 -i 4272 -a 0 -x {10.0 9.0 2131 ------- null} + -t 2.43134 -s 7 -d 0 -p ack -e 40 -c 0 -i 4272 -a 0 -x {10.0 9.0 2131 ------- null} h -t 2.43134 -s 7 -d 8 -p ack -e 40 -c 0 -i 4272 -a 0 -x {10.0 9.0 2131 ------- null} r -t 2.43165 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4271 -a 0 -x {9.0 10.0 2140 ------- null} + -t 2.43165 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4271 -a 0 -x {9.0 10.0 2140 ------- null} h -t 2.43165 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4271 -a 0 -x {9.0 10.0 2140 ------- null} r -t 2.43178 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4257 -a 0 -x {9.0 10.0 2133 ------- null} + -t 2.43178 -s 10 -d 7 -p ack -e 40 -c 0 -i 4276 -a 0 -x {10.0 9.0 2133 ------- null} - -t 2.43178 -s 10 -d 7 -p ack -e 40 -c 0 -i 4276 -a 0 -x {10.0 9.0 2133 ------- null} h -t 2.43178 -s 10 -d 7 -p ack -e 40 -c 0 -i 4276 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.43224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4263 -a 0 -x {9.0 10.0 2136 ------- null} - -t 2.43224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4263 -a 0 -x {9.0 10.0 2136 ------- null} h -t 2.43224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4263 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.43234 -s 0 -d 9 -p ack -e 40 -c 0 -i 4266 -a 0 -x {10.0 9.0 2128 ------- null} + -t 2.43234 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4277 -a 0 -x {9.0 10.0 2143 ------- null} - -t 2.43234 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4277 -a 0 -x {9.0 10.0 2143 ------- null} h -t 2.43234 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4277 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.43242 -s 0 -d 9 -p ack -e 40 -c 0 -i 4270 -a 0 -x {10.0 9.0 2130 ------- null} - -t 2.43242 -s 0 -d 9 -p ack -e 40 -c 0 -i 4270 -a 0 -x {10.0 9.0 2130 ------- null} h -t 2.43242 -s 0 -d 9 -p ack -e 40 -c 0 -i 4270 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.43259 -s 10 -d 7 -p ack -e 40 -c 0 -i 4274 -a 0 -x {10.0 9.0 2132 ------- null} + -t 2.43259 -s 7 -d 0 -p ack -e 40 -c 0 -i 4274 -a 0 -x {10.0 9.0 2132 ------- null} h -t 2.43259 -s 7 -d 8 -p ack -e 40 -c 0 -i 4274 -a 0 -x {10.0 9.0 2132 ------- null} r -t 2.43286 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4273 -a 0 -x {9.0 10.0 2141 ------- null} + -t 2.43286 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4273 -a 0 -x {9.0 10.0 2141 ------- null} h -t 2.43286 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4273 -a 0 -x {9.0 10.0 2141 ------- null} r -t 2.43286 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4259 -a 0 -x {9.0 10.0 2134 ------- null} + -t 2.43286 -s 10 -d 7 -p ack -e 40 -c 0 -i 4278 -a 0 -x {10.0 9.0 2134 ------- null} - -t 2.43286 -s 10 -d 7 -p ack -e 40 -c 0 -i 4278 -a 0 -x {10.0 9.0 2134 ------- null} h -t 2.43286 -s 10 -d 7 -p ack -e 40 -c 0 -i 4278 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.43326 -s 0 -d 9 -p ack -e 40 -c 0 -i 4268 -a 0 -x {10.0 9.0 2129 ------- null} + -t 2.43326 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4279 -a 0 -x {9.0 10.0 2144 ------- null} - -t 2.43326 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4279 -a 0 -x {9.0 10.0 2144 ------- null} h -t 2.43326 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4279 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.43333 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4265 -a 0 -x {9.0 10.0 2137 ------- null} - -t 2.43333 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4265 -a 0 -x {9.0 10.0 2137 ------- null} h -t 2.43333 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4265 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.43341 -s 0 -d 9 -p ack -e 40 -c 0 -i 4272 -a 0 -x {10.0 9.0 2131 ------- null} - -t 2.43341 -s 0 -d 9 -p ack -e 40 -c 0 -i 4272 -a 0 -x {10.0 9.0 2131 ------- null} h -t 2.43341 -s 0 -d 9 -p ack -e 40 -c 0 -i 4272 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.43381 -s 10 -d 7 -p ack -e 40 -c 0 -i 4276 -a 0 -x {10.0 9.0 2133 ------- null} + -t 2.43381 -s 7 -d 0 -p ack -e 40 -c 0 -i 4276 -a 0 -x {10.0 9.0 2133 ------- null} h -t 2.43381 -s 7 -d 8 -p ack -e 40 -c 0 -i 4276 -a 0 -x {10.0 9.0 2133 ------- null} r -t 2.43395 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4261 -a 0 -x {9.0 10.0 2135 ------- null} + -t 2.43395 -s 10 -d 7 -p ack -e 40 -c 0 -i 4280 -a 0 -x {10.0 9.0 2135 ------- null} - -t 2.43395 -s 10 -d 7 -p ack -e 40 -c 0 -i 4280 -a 0 -x {10.0 9.0 2135 ------- null} h -t 2.43395 -s 10 -d 7 -p ack -e 40 -c 0 -i 4280 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.43397 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4275 -a 0 -x {9.0 10.0 2142 ------- null} + -t 2.43397 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4275 -a 0 -x {9.0 10.0 2142 ------- null} h -t 2.43397 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4275 -a 0 -x {9.0 10.0 2142 ------- null} + -t 2.43442 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4267 -a 0 -x {9.0 10.0 2138 ------- null} - -t 2.43442 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4267 -a 0 -x {9.0 10.0 2138 ------- null} h -t 2.43442 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4267 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.43445 -s 0 -d 9 -p ack -e 40 -c 0 -i 4270 -a 0 -x {10.0 9.0 2130 ------- null} + -t 2.43445 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4281 -a 0 -x {9.0 10.0 2145 ------- null} - -t 2.43445 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4281 -a 0 -x {9.0 10.0 2145 ------- null} h -t 2.43445 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4281 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.4345 -s 0 -d 9 -p ack -e 40 -c 0 -i 4274 -a 0 -x {10.0 9.0 2132 ------- null} - -t 2.4345 -s 0 -d 9 -p ack -e 40 -c 0 -i 4274 -a 0 -x {10.0 9.0 2132 ------- null} h -t 2.4345 -s 0 -d 9 -p ack -e 40 -c 0 -i 4274 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.4349 -s 10 -d 7 -p ack -e 40 -c 0 -i 4278 -a 0 -x {10.0 9.0 2134 ------- null} + -t 2.4349 -s 7 -d 0 -p ack -e 40 -c 0 -i 4278 -a 0 -x {10.0 9.0 2134 ------- null} h -t 2.4349 -s 7 -d 8 -p ack -e 40 -c 0 -i 4278 -a 0 -x {10.0 9.0 2134 ------- null} r -t 2.43504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4263 -a 0 -x {9.0 10.0 2136 ------- null} + -t 2.43504 -s 10 -d 7 -p ack -e 40 -c 0 -i 4282 -a 0 -x {10.0 9.0 2136 ------- null} - -t 2.43504 -s 10 -d 7 -p ack -e 40 -c 0 -i 4282 -a 0 -x {10.0 9.0 2136 ------- null} h -t 2.43504 -s 10 -d 7 -p ack -e 40 -c 0 -i 4282 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.43514 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4277 -a 0 -x {9.0 10.0 2143 ------- null} + -t 2.43514 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4277 -a 0 -x {9.0 10.0 2143 ------- null} h -t 2.43514 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4277 -a 0 -x {9.0 10.0 2143 ------- null} r -t 2.43544 -s 0 -d 9 -p ack -e 40 -c 0 -i 4272 -a 0 -x {10.0 9.0 2131 ------- null} + -t 2.43544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4283 -a 0 -x {9.0 10.0 2146 ------- null} - -t 2.43544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4283 -a 0 -x {9.0 10.0 2146 ------- null} h -t 2.43544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4283 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.4355 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4269 -a 0 -x {9.0 10.0 2139 ------- null} - -t 2.4355 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4269 -a 0 -x {9.0 10.0 2139 ------- null} h -t 2.4355 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4269 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.43578 -s 0 -d 9 -p ack -e 40 -c 0 -i 4276 -a 0 -x {10.0 9.0 2133 ------- null} - -t 2.43578 -s 0 -d 9 -p ack -e 40 -c 0 -i 4276 -a 0 -x {10.0 9.0 2133 ------- null} h -t 2.43578 -s 0 -d 9 -p ack -e 40 -c 0 -i 4276 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.43598 -s 10 -d 7 -p ack -e 40 -c 0 -i 4280 -a 0 -x {10.0 9.0 2135 ------- null} + -t 2.43598 -s 7 -d 0 -p ack -e 40 -c 0 -i 4280 -a 0 -x {10.0 9.0 2135 ------- null} h -t 2.43598 -s 7 -d 8 -p ack -e 40 -c 0 -i 4280 -a 0 -x {10.0 9.0 2135 ------- null} r -t 2.43606 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4279 -a 0 -x {9.0 10.0 2144 ------- null} + -t 2.43606 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4279 -a 0 -x {9.0 10.0 2144 ------- null} h -t 2.43606 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4279 -a 0 -x {9.0 10.0 2144 ------- null} r -t 2.43613 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4265 -a 0 -x {9.0 10.0 2137 ------- null} + -t 2.43613 -s 10 -d 7 -p ack -e 40 -c 0 -i 4284 -a 0 -x {10.0 9.0 2137 ------- null} - -t 2.43613 -s 10 -d 7 -p ack -e 40 -c 0 -i 4284 -a 0 -x {10.0 9.0 2137 ------- null} h -t 2.43613 -s 10 -d 7 -p ack -e 40 -c 0 -i 4284 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.43653 -s 0 -d 9 -p ack -e 40 -c 0 -i 4274 -a 0 -x {10.0 9.0 2132 ------- null} + -t 2.43653 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4285 -a 0 -x {9.0 10.0 2147 ------- null} - -t 2.43653 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4285 -a 0 -x {9.0 10.0 2147 ------- null} h -t 2.43653 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4285 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.43669 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4271 -a 0 -x {9.0 10.0 2140 ------- null} - -t 2.43669 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4271 -a 0 -x {9.0 10.0 2140 ------- null} h -t 2.43669 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4271 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.43675 -s 0 -d 9 -p ack -e 40 -c 0 -i 4278 -a 0 -x {10.0 9.0 2134 ------- null} - -t 2.43675 -s 0 -d 9 -p ack -e 40 -c 0 -i 4278 -a 0 -x {10.0 9.0 2134 ------- null} h -t 2.43675 -s 0 -d 9 -p ack -e 40 -c 0 -i 4278 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.43707 -s 10 -d 7 -p ack -e 40 -c 0 -i 4282 -a 0 -x {10.0 9.0 2136 ------- null} + -t 2.43707 -s 7 -d 0 -p ack -e 40 -c 0 -i 4282 -a 0 -x {10.0 9.0 2136 ------- null} h -t 2.43707 -s 7 -d 8 -p ack -e 40 -c 0 -i 4282 -a 0 -x {10.0 9.0 2136 ------- null} r -t 2.43722 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4267 -a 0 -x {9.0 10.0 2138 ------- null} + -t 2.43722 -s 10 -d 7 -p ack -e 40 -c 0 -i 4286 -a 0 -x {10.0 9.0 2138 ------- null} - -t 2.43722 -s 10 -d 7 -p ack -e 40 -c 0 -i 4286 -a 0 -x {10.0 9.0 2138 ------- null} h -t 2.43722 -s 10 -d 7 -p ack -e 40 -c 0 -i 4286 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.43725 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4281 -a 0 -x {9.0 10.0 2145 ------- null} + -t 2.43725 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4281 -a 0 -x {9.0 10.0 2145 ------- null} h -t 2.43725 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4281 -a 0 -x {9.0 10.0 2145 ------- null} + -t 2.43778 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4273 -a 0 -x {9.0 10.0 2141 ------- null} - -t 2.43778 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4273 -a 0 -x {9.0 10.0 2141 ------- null} h -t 2.43778 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4273 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.43781 -s 0 -d 9 -p ack -e 40 -c 0 -i 4276 -a 0 -x {10.0 9.0 2133 ------- null} + -t 2.43781 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4287 -a 0 -x {9.0 10.0 2148 ------- null} - -t 2.43781 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4287 -a 0 -x {9.0 10.0 2148 ------- null} h -t 2.43781 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4287 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.43798 -s 0 -d 9 -p ack -e 40 -c 0 -i 4280 -a 0 -x {10.0 9.0 2135 ------- null} - -t 2.43798 -s 0 -d 9 -p ack -e 40 -c 0 -i 4280 -a 0 -x {10.0 9.0 2135 ------- null} h -t 2.43798 -s 0 -d 9 -p ack -e 40 -c 0 -i 4280 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.43816 -s 10 -d 7 -p ack -e 40 -c 0 -i 4284 -a 0 -x {10.0 9.0 2137 ------- null} + -t 2.43816 -s 7 -d 0 -p ack -e 40 -c 0 -i 4284 -a 0 -x {10.0 9.0 2137 ------- null} h -t 2.43816 -s 7 -d 8 -p ack -e 40 -c 0 -i 4284 -a 0 -x {10.0 9.0 2137 ------- null} r -t 2.43824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4283 -a 0 -x {9.0 10.0 2146 ------- null} + -t 2.43824 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4283 -a 0 -x {9.0 10.0 2146 ------- null} h -t 2.43824 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4283 -a 0 -x {9.0 10.0 2146 ------- null} r -t 2.4383 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4269 -a 0 -x {9.0 10.0 2139 ------- null} + -t 2.4383 -s 10 -d 7 -p ack -e 40 -c 0 -i 4288 -a 0 -x {10.0 9.0 2139 ------- null} - -t 2.4383 -s 10 -d 7 -p ack -e 40 -c 0 -i 4288 -a 0 -x {10.0 9.0 2139 ------- null} h -t 2.4383 -s 10 -d 7 -p ack -e 40 -c 0 -i 4288 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.43878 -s 0 -d 9 -p ack -e 40 -c 0 -i 4278 -a 0 -x {10.0 9.0 2134 ------- null} + -t 2.43878 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4289 -a 0 -x {9.0 10.0 2149 ------- null} - -t 2.43878 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4289 -a 0 -x {9.0 10.0 2149 ------- null} h -t 2.43878 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4289 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.43886 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4275 -a 0 -x {9.0 10.0 2142 ------- null} - -t 2.43886 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4275 -a 0 -x {9.0 10.0 2142 ------- null} h -t 2.43886 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4275 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.43899 -s 0 -d 9 -p ack -e 40 -c 0 -i 4282 -a 0 -x {10.0 9.0 2136 ------- null} - -t 2.43899 -s 0 -d 9 -p ack -e 40 -c 0 -i 4282 -a 0 -x {10.0 9.0 2136 ------- null} h -t 2.43899 -s 0 -d 9 -p ack -e 40 -c 0 -i 4282 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.43925 -s 10 -d 7 -p ack -e 40 -c 0 -i 4286 -a 0 -x {10.0 9.0 2138 ------- null} + -t 2.43925 -s 7 -d 0 -p ack -e 40 -c 0 -i 4286 -a 0 -x {10.0 9.0 2138 ------- null} h -t 2.43925 -s 7 -d 8 -p ack -e 40 -c 0 -i 4286 -a 0 -x {10.0 9.0 2138 ------- null} r -t 2.43933 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4285 -a 0 -x {9.0 10.0 2147 ------- null} + -t 2.43933 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4285 -a 0 -x {9.0 10.0 2147 ------- null} h -t 2.43933 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4285 -a 0 -x {9.0 10.0 2147 ------- null} r -t 2.43949 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4271 -a 0 -x {9.0 10.0 2140 ------- null} + -t 2.43949 -s 10 -d 7 -p ack -e 40 -c 0 -i 4290 -a 0 -x {10.0 9.0 2140 ------- null} - -t 2.43949 -s 10 -d 7 -p ack -e 40 -c 0 -i 4290 -a 0 -x {10.0 9.0 2140 ------- null} h -t 2.43949 -s 10 -d 7 -p ack -e 40 -c 0 -i 4290 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.43995 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4277 -a 0 -x {9.0 10.0 2143 ------- null} - -t 2.43995 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4277 -a 0 -x {9.0 10.0 2143 ------- null} h -t 2.43995 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4277 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.44002 -s 0 -d 9 -p ack -e 40 -c 0 -i 4280 -a 0 -x {10.0 9.0 2135 ------- null} + -t 2.44002 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4291 -a 0 -x {9.0 10.0 2150 ------- null} - -t 2.44002 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4291 -a 0 -x {9.0 10.0 2150 ------- null} h -t 2.44002 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4291 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.44006 -s 0 -d 9 -p ack -e 40 -c 0 -i 4284 -a 0 -x {10.0 9.0 2137 ------- null} - -t 2.44006 -s 0 -d 9 -p ack -e 40 -c 0 -i 4284 -a 0 -x {10.0 9.0 2137 ------- null} h -t 2.44006 -s 0 -d 9 -p ack -e 40 -c 0 -i 4284 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.44034 -s 10 -d 7 -p ack -e 40 -c 0 -i 4288 -a 0 -x {10.0 9.0 2139 ------- null} + -t 2.44034 -s 7 -d 0 -p ack -e 40 -c 0 -i 4288 -a 0 -x {10.0 9.0 2139 ------- null} h -t 2.44034 -s 7 -d 8 -p ack -e 40 -c 0 -i 4288 -a 0 -x {10.0 9.0 2139 ------- null} r -t 2.44058 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4273 -a 0 -x {9.0 10.0 2141 ------- null} + -t 2.44058 -s 10 -d 7 -p ack -e 40 -c 0 -i 4292 -a 0 -x {10.0 9.0 2141 ------- null} - -t 2.44058 -s 10 -d 7 -p ack -e 40 -c 0 -i 4292 -a 0 -x {10.0 9.0 2141 ------- null} h -t 2.44058 -s 10 -d 7 -p ack -e 40 -c 0 -i 4292 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.44061 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4287 -a 0 -x {9.0 10.0 2148 ------- null} + -t 2.44061 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4287 -a 0 -x {9.0 10.0 2148 ------- null} h -t 2.44061 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4287 -a 0 -x {9.0 10.0 2148 ------- null} r -t 2.44102 -s 0 -d 9 -p ack -e 40 -c 0 -i 4282 -a 0 -x {10.0 9.0 2136 ------- null} + -t 2.44102 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4293 -a 0 -x {9.0 10.0 2151 ------- null} - -t 2.44102 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4293 -a 0 -x {9.0 10.0 2151 ------- null} h -t 2.44102 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4293 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.44104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4279 -a 0 -x {9.0 10.0 2144 ------- null} - -t 2.44104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4279 -a 0 -x {9.0 10.0 2144 ------- null} h -t 2.44104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4279 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.44125 -s 0 -d 9 -p ack -e 40 -c 0 -i 4286 -a 0 -x {10.0 9.0 2138 ------- null} - -t 2.44125 -s 0 -d 9 -p ack -e 40 -c 0 -i 4286 -a 0 -x {10.0 9.0 2138 ------- null} h -t 2.44125 -s 0 -d 9 -p ack -e 40 -c 0 -i 4286 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.44152 -s 10 -d 7 -p ack -e 40 -c 0 -i 4290 -a 0 -x {10.0 9.0 2140 ------- null} + -t 2.44152 -s 7 -d 0 -p ack -e 40 -c 0 -i 4290 -a 0 -x {10.0 9.0 2140 ------- null} h -t 2.44152 -s 7 -d 8 -p ack -e 40 -c 0 -i 4290 -a 0 -x {10.0 9.0 2140 ------- null} r -t 2.44158 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4289 -a 0 -x {9.0 10.0 2149 ------- null} + -t 2.44158 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4289 -a 0 -x {9.0 10.0 2149 ------- null} h -t 2.44158 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4289 -a 0 -x {9.0 10.0 2149 ------- null} r -t 2.44166 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4275 -a 0 -x {9.0 10.0 2142 ------- null} + -t 2.44166 -s 10 -d 7 -p ack -e 40 -c 0 -i 4294 -a 0 -x {10.0 9.0 2142 ------- null} - -t 2.44166 -s 10 -d 7 -p ack -e 40 -c 0 -i 4294 -a 0 -x {10.0 9.0 2142 ------- null} h -t 2.44166 -s 10 -d 7 -p ack -e 40 -c 0 -i 4294 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.4421 -s 0 -d 9 -p ack -e 40 -c 0 -i 4284 -a 0 -x {10.0 9.0 2137 ------- null} + -t 2.4421 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4295 -a 0 -x {9.0 10.0 2152 ------- null} - -t 2.4421 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4295 -a 0 -x {9.0 10.0 2152 ------- null} h -t 2.4421 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4295 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.44213 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4281 -a 0 -x {9.0 10.0 2145 ------- null} - -t 2.44213 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4281 -a 0 -x {9.0 10.0 2145 ------- null} h -t 2.44213 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4281 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.4423 -s 0 -d 9 -p ack -e 40 -c 0 -i 4288 -a 0 -x {10.0 9.0 2139 ------- null} - -t 2.4423 -s 0 -d 9 -p ack -e 40 -c 0 -i 4288 -a 0 -x {10.0 9.0 2139 ------- null} h -t 2.4423 -s 0 -d 9 -p ack -e 40 -c 0 -i 4288 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.44261 -s 10 -d 7 -p ack -e 40 -c 0 -i 4292 -a 0 -x {10.0 9.0 2141 ------- null} + -t 2.44261 -s 7 -d 0 -p ack -e 40 -c 0 -i 4292 -a 0 -x {10.0 9.0 2141 ------- null} h -t 2.44261 -s 7 -d 8 -p ack -e 40 -c 0 -i 4292 -a 0 -x {10.0 9.0 2141 ------- null} r -t 2.44275 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4277 -a 0 -x {9.0 10.0 2143 ------- null} + -t 2.44275 -s 10 -d 7 -p ack -e 40 -c 0 -i 4296 -a 0 -x {10.0 9.0 2143 ------- null} - -t 2.44275 -s 10 -d 7 -p ack -e 40 -c 0 -i 4296 -a 0 -x {10.0 9.0 2143 ------- null} h -t 2.44275 -s 10 -d 7 -p ack -e 40 -c 0 -i 4296 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.44282 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4291 -a 0 -x {9.0 10.0 2150 ------- null} + -t 2.44282 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4291 -a 0 -x {9.0 10.0 2150 ------- null} h -t 2.44282 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4291 -a 0 -x {9.0 10.0 2150 ------- null} + -t 2.44322 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4283 -a 0 -x {9.0 10.0 2146 ------- null} - -t 2.44322 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4283 -a 0 -x {9.0 10.0 2146 ------- null} h -t 2.44322 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4283 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.44328 -s 0 -d 9 -p ack -e 40 -c 0 -i 4286 -a 0 -x {10.0 9.0 2138 ------- null} + -t 2.44328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4297 -a 0 -x {9.0 10.0 2153 ------- null} - -t 2.44328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4297 -a 0 -x {9.0 10.0 2153 ------- null} h -t 2.44328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4297 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.44342 -s 0 -d 9 -p ack -e 40 -c 0 -i 4290 -a 0 -x {10.0 9.0 2140 ------- null} - -t 2.44342 -s 0 -d 9 -p ack -e 40 -c 0 -i 4290 -a 0 -x {10.0 9.0 2140 ------- null} h -t 2.44342 -s 0 -d 9 -p ack -e 40 -c 0 -i 4290 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.4437 -s 10 -d 7 -p ack -e 40 -c 0 -i 4294 -a 0 -x {10.0 9.0 2142 ------- null} + -t 2.4437 -s 7 -d 0 -p ack -e 40 -c 0 -i 4294 -a 0 -x {10.0 9.0 2142 ------- null} h -t 2.4437 -s 7 -d 8 -p ack -e 40 -c 0 -i 4294 -a 0 -x {10.0 9.0 2142 ------- null} r -t 2.44382 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4293 -a 0 -x {9.0 10.0 2151 ------- null} + -t 2.44382 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4293 -a 0 -x {9.0 10.0 2151 ------- null} h -t 2.44382 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4293 -a 0 -x {9.0 10.0 2151 ------- null} r -t 2.44384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4279 -a 0 -x {9.0 10.0 2144 ------- null} + -t 2.44384 -s 10 -d 7 -p ack -e 40 -c 0 -i 4298 -a 0 -x {10.0 9.0 2144 ------- null} - -t 2.44384 -s 10 -d 7 -p ack -e 40 -c 0 -i 4298 -a 0 -x {10.0 9.0 2144 ------- null} h -t 2.44384 -s 10 -d 7 -p ack -e 40 -c 0 -i 4298 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.4443 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4285 -a 0 -x {9.0 10.0 2147 ------- null} - -t 2.4443 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4285 -a 0 -x {9.0 10.0 2147 ------- null} h -t 2.4443 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4285 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.44434 -s 0 -d 9 -p ack -e 40 -c 0 -i 4288 -a 0 -x {10.0 9.0 2139 ------- null} + -t 2.44434 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4299 -a 0 -x {9.0 10.0 2154 ------- null} - -t 2.44434 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4299 -a 0 -x {9.0 10.0 2154 ------- null} h -t 2.44434 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4299 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.44437 -s 0 -d 9 -p ack -e 40 -c 0 -i 4292 -a 0 -x {10.0 9.0 2141 ------- null} - -t 2.44437 -s 0 -d 9 -p ack -e 40 -c 0 -i 4292 -a 0 -x {10.0 9.0 2141 ------- null} h -t 2.44437 -s 0 -d 9 -p ack -e 40 -c 0 -i 4292 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.44478 -s 10 -d 7 -p ack -e 40 -c 0 -i 4296 -a 0 -x {10.0 9.0 2143 ------- null} + -t 2.44478 -s 7 -d 0 -p ack -e 40 -c 0 -i 4296 -a 0 -x {10.0 9.0 2143 ------- null} h -t 2.44478 -s 7 -d 8 -p ack -e 40 -c 0 -i 4296 -a 0 -x {10.0 9.0 2143 ------- null} r -t 2.4449 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4295 -a 0 -x {9.0 10.0 2152 ------- null} + -t 2.4449 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4295 -a 0 -x {9.0 10.0 2152 ------- null} h -t 2.4449 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4295 -a 0 -x {9.0 10.0 2152 ------- null} r -t 2.44493 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4281 -a 0 -x {9.0 10.0 2145 ------- null} + -t 2.44493 -s 10 -d 7 -p ack -e 40 -c 0 -i 4300 -a 0 -x {10.0 9.0 2145 ------- null} - -t 2.44493 -s 10 -d 7 -p ack -e 40 -c 0 -i 4300 -a 0 -x {10.0 9.0 2145 ------- null} h -t 2.44493 -s 10 -d 7 -p ack -e 40 -c 0 -i 4300 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.44539 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4287 -a 0 -x {9.0 10.0 2148 ------- null} - -t 2.44539 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4287 -a 0 -x {9.0 10.0 2148 ------- null} h -t 2.44539 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4287 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.44546 -s 0 -d 9 -p ack -e 40 -c 0 -i 4290 -a 0 -x {10.0 9.0 2140 ------- null} + -t 2.44546 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4301 -a 0 -x {9.0 10.0 2155 ------- null} - -t 2.44546 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4301 -a 0 -x {9.0 10.0 2155 ------- null} h -t 2.44546 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4301 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.44549 -s 0 -d 9 -p ack -e 40 -c 0 -i 4294 -a 0 -x {10.0 9.0 2142 ------- null} - -t 2.44549 -s 0 -d 9 -p ack -e 40 -c 0 -i 4294 -a 0 -x {10.0 9.0 2142 ------- null} h -t 2.44549 -s 0 -d 9 -p ack -e 40 -c 0 -i 4294 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.44587 -s 10 -d 7 -p ack -e 40 -c 0 -i 4298 -a 0 -x {10.0 9.0 2144 ------- null} + -t 2.44587 -s 7 -d 0 -p ack -e 40 -c 0 -i 4298 -a 0 -x {10.0 9.0 2144 ------- null} h -t 2.44587 -s 7 -d 8 -p ack -e 40 -c 0 -i 4298 -a 0 -x {10.0 9.0 2144 ------- null} r -t 2.44602 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4283 -a 0 -x {9.0 10.0 2146 ------- null} + -t 2.44602 -s 10 -d 7 -p ack -e 40 -c 0 -i 4302 -a 0 -x {10.0 9.0 2146 ------- null} - -t 2.44602 -s 10 -d 7 -p ack -e 40 -c 0 -i 4302 -a 0 -x {10.0 9.0 2146 ------- null} h -t 2.44602 -s 10 -d 7 -p ack -e 40 -c 0 -i 4302 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.44608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4297 -a 0 -x {9.0 10.0 2153 ------- null} + -t 2.44608 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4297 -a 0 -x {9.0 10.0 2153 ------- null} h -t 2.44608 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4297 -a 0 -x {9.0 10.0 2153 ------- null} r -t 2.4464 -s 0 -d 9 -p ack -e 40 -c 0 -i 4292 -a 0 -x {10.0 9.0 2141 ------- null} + -t 2.4464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4303 -a 0 -x {9.0 10.0 2156 ------- null} - -t 2.4464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4303 -a 0 -x {9.0 10.0 2156 ------- null} h -t 2.4464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4303 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.44648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4289 -a 0 -x {9.0 10.0 2149 ------- null} - -t 2.44648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4289 -a 0 -x {9.0 10.0 2149 ------- null} h -t 2.44648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4289 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.44661 -s 0 -d 9 -p ack -e 40 -c 0 -i 4296 -a 0 -x {10.0 9.0 2143 ------- null} - -t 2.44661 -s 0 -d 9 -p ack -e 40 -c 0 -i 4296 -a 0 -x {10.0 9.0 2143 ------- null} h -t 2.44661 -s 0 -d 9 -p ack -e 40 -c 0 -i 4296 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.44696 -s 10 -d 7 -p ack -e 40 -c 0 -i 4300 -a 0 -x {10.0 9.0 2145 ------- null} + -t 2.44696 -s 7 -d 0 -p ack -e 40 -c 0 -i 4300 -a 0 -x {10.0 9.0 2145 ------- null} h -t 2.44696 -s 7 -d 8 -p ack -e 40 -c 0 -i 4300 -a 0 -x {10.0 9.0 2145 ------- null} r -t 2.4471 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4285 -a 0 -x {9.0 10.0 2147 ------- null} + -t 2.4471 -s 10 -d 7 -p ack -e 40 -c 0 -i 4304 -a 0 -x {10.0 9.0 2147 ------- null} - -t 2.4471 -s 10 -d 7 -p ack -e 40 -c 0 -i 4304 -a 0 -x {10.0 9.0 2147 ------- null} h -t 2.4471 -s 10 -d 7 -p ack -e 40 -c 0 -i 4304 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.44714 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4299 -a 0 -x {9.0 10.0 2154 ------- null} + -t 2.44714 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4299 -a 0 -x {9.0 10.0 2154 ------- null} h -t 2.44714 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4299 -a 0 -x {9.0 10.0 2154 ------- null} r -t 2.44752 -s 0 -d 9 -p ack -e 40 -c 0 -i 4294 -a 0 -x {10.0 9.0 2142 ------- null} + -t 2.44752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4305 -a 0 -x {9.0 10.0 2157 ------- null} - -t 2.44752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4305 -a 0 -x {9.0 10.0 2157 ------- null} h -t 2.44752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4305 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.44757 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4291 -a 0 -x {9.0 10.0 2150 ------- null} - -t 2.44757 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4291 -a 0 -x {9.0 10.0 2150 ------- null} h -t 2.44757 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4291 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.44768 -s 0 -d 9 -p ack -e 40 -c 0 -i 4298 -a 0 -x {10.0 9.0 2144 ------- null} - -t 2.44768 -s 0 -d 9 -p ack -e 40 -c 0 -i 4298 -a 0 -x {10.0 9.0 2144 ------- null} h -t 2.44768 -s 0 -d 9 -p ack -e 40 -c 0 -i 4298 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.44805 -s 10 -d 7 -p ack -e 40 -c 0 -i 4302 -a 0 -x {10.0 9.0 2146 ------- null} + -t 2.44805 -s 7 -d 0 -p ack -e 40 -c 0 -i 4302 -a 0 -x {10.0 9.0 2146 ------- null} h -t 2.44805 -s 7 -d 8 -p ack -e 40 -c 0 -i 4302 -a 0 -x {10.0 9.0 2146 ------- null} r -t 2.44819 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4287 -a 0 -x {9.0 10.0 2148 ------- null} + -t 2.44819 -s 10 -d 7 -p ack -e 40 -c 0 -i 4306 -a 0 -x {10.0 9.0 2148 ------- null} - -t 2.44819 -s 10 -d 7 -p ack -e 40 -c 0 -i 4306 -a 0 -x {10.0 9.0 2148 ------- null} h -t 2.44819 -s 10 -d 7 -p ack -e 40 -c 0 -i 4306 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.44826 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4301 -a 0 -x {9.0 10.0 2155 ------- null} + -t 2.44826 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4301 -a 0 -x {9.0 10.0 2155 ------- null} h -t 2.44826 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4301 -a 0 -x {9.0 10.0 2155 ------- null} r -t 2.44864 -s 0 -d 9 -p ack -e 40 -c 0 -i 4296 -a 0 -x {10.0 9.0 2143 ------- null} + -t 2.44864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4307 -a 0 -x {9.0 10.0 2158 ------- null} - -t 2.44864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4307 -a 0 -x {9.0 10.0 2158 ------- null} h -t 2.44864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4307 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.44866 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4293 -a 0 -x {9.0 10.0 2151 ------- null} - -t 2.44866 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4293 -a 0 -x {9.0 10.0 2151 ------- null} h -t 2.44866 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4293 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.44885 -s 0 -d 9 -p ack -e 40 -c 0 -i 4300 -a 0 -x {10.0 9.0 2145 ------- null} - -t 2.44885 -s 0 -d 9 -p ack -e 40 -c 0 -i 4300 -a 0 -x {10.0 9.0 2145 ------- null} h -t 2.44885 -s 0 -d 9 -p ack -e 40 -c 0 -i 4300 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.44914 -s 10 -d 7 -p ack -e 40 -c 0 -i 4304 -a 0 -x {10.0 9.0 2147 ------- null} + -t 2.44914 -s 7 -d 0 -p ack -e 40 -c 0 -i 4304 -a 0 -x {10.0 9.0 2147 ------- null} h -t 2.44914 -s 7 -d 8 -p ack -e 40 -c 0 -i 4304 -a 0 -x {10.0 9.0 2147 ------- null} r -t 2.4492 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4303 -a 0 -x {9.0 10.0 2156 ------- null} + -t 2.4492 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4303 -a 0 -x {9.0 10.0 2156 ------- null} h -t 2.4492 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4303 -a 0 -x {9.0 10.0 2156 ------- null} r -t 2.44928 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4289 -a 0 -x {9.0 10.0 2149 ------- null} + -t 2.44928 -s 10 -d 7 -p ack -e 40 -c 0 -i 4308 -a 0 -x {10.0 9.0 2149 ------- null} - -t 2.44928 -s 10 -d 7 -p ack -e 40 -c 0 -i 4308 -a 0 -x {10.0 9.0 2149 ------- null} h -t 2.44928 -s 10 -d 7 -p ack -e 40 -c 0 -i 4308 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.44971 -s 0 -d 9 -p ack -e 40 -c 0 -i 4298 -a 0 -x {10.0 9.0 2144 ------- null} + -t 2.44971 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4309 -a 0 -x {9.0 10.0 2159 ------- null} - -t 2.44971 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4309 -a 0 -x {9.0 10.0 2159 ------- null} h -t 2.44971 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4309 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.44974 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4295 -a 0 -x {9.0 10.0 2152 ------- null} - -t 2.44974 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4295 -a 0 -x {9.0 10.0 2152 ------- null} h -t 2.44974 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4295 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.44997 -s 0 -d 9 -p ack -e 40 -c 0 -i 4302 -a 0 -x {10.0 9.0 2146 ------- null} - -t 2.44997 -s 0 -d 9 -p ack -e 40 -c 0 -i 4302 -a 0 -x {10.0 9.0 2146 ------- null} h -t 2.44997 -s 0 -d 9 -p ack -e 40 -c 0 -i 4302 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.45022 -s 10 -d 7 -p ack -e 40 -c 0 -i 4306 -a 0 -x {10.0 9.0 2148 ------- null} + -t 2.45022 -s 7 -d 0 -p ack -e 40 -c 0 -i 4306 -a 0 -x {10.0 9.0 2148 ------- null} h -t 2.45022 -s 7 -d 8 -p ack -e 40 -c 0 -i 4306 -a 0 -x {10.0 9.0 2148 ------- null} r -t 2.45032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4305 -a 0 -x {9.0 10.0 2157 ------- null} + -t 2.45032 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4305 -a 0 -x {9.0 10.0 2157 ------- null} h -t 2.45032 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4305 -a 0 -x {9.0 10.0 2157 ------- null} r -t 2.45037 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4291 -a 0 -x {9.0 10.0 2150 ------- null} + -t 2.45037 -s 10 -d 7 -p ack -e 40 -c 0 -i 4310 -a 0 -x {10.0 9.0 2150 ------- null} - -t 2.45037 -s 10 -d 7 -p ack -e 40 -c 0 -i 4310 -a 0 -x {10.0 9.0 2150 ------- null} h -t 2.45037 -s 10 -d 7 -p ack -e 40 -c 0 -i 4310 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.45083 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4297 -a 0 -x {9.0 10.0 2153 ------- null} - -t 2.45083 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4297 -a 0 -x {9.0 10.0 2153 ------- null} h -t 2.45083 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4297 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.45088 -s 0 -d 9 -p ack -e 40 -c 0 -i 4300 -a 0 -x {10.0 9.0 2145 ------- null} + -t 2.45088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4311 -a 0 -x {9.0 10.0 2160 ------- null} - -t 2.45088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4311 -a 0 -x {9.0 10.0 2160 ------- null} h -t 2.45088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4311 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.45109 -s 0 -d 9 -p ack -e 40 -c 0 -i 4304 -a 0 -x {10.0 9.0 2147 ------- null} - -t 2.45109 -s 0 -d 9 -p ack -e 40 -c 0 -i 4304 -a 0 -x {10.0 9.0 2147 ------- null} h -t 2.45109 -s 0 -d 9 -p ack -e 40 -c 0 -i 4304 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.45131 -s 10 -d 7 -p ack -e 40 -c 0 -i 4308 -a 0 -x {10.0 9.0 2149 ------- null} + -t 2.45131 -s 7 -d 0 -p ack -e 40 -c 0 -i 4308 -a 0 -x {10.0 9.0 2149 ------- null} h -t 2.45131 -s 7 -d 8 -p ack -e 40 -c 0 -i 4308 -a 0 -x {10.0 9.0 2149 ------- null} r -t 2.45144 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4307 -a 0 -x {9.0 10.0 2158 ------- null} + -t 2.45144 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4307 -a 0 -x {9.0 10.0 2158 ------- null} h -t 2.45144 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4307 -a 0 -x {9.0 10.0 2158 ------- null} r -t 2.45146 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4293 -a 0 -x {9.0 10.0 2151 ------- null} + -t 2.45146 -s 10 -d 7 -p ack -e 40 -c 0 -i 4312 -a 0 -x {10.0 9.0 2151 ------- null} - -t 2.45146 -s 10 -d 7 -p ack -e 40 -c 0 -i 4312 -a 0 -x {10.0 9.0 2151 ------- null} h -t 2.45146 -s 10 -d 7 -p ack -e 40 -c 0 -i 4312 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.452 -s 0 -d 9 -p ack -e 40 -c 0 -i 4302 -a 0 -x {10.0 9.0 2146 ------- null} + -t 2.452 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4313 -a 0 -x {9.0 10.0 2161 ------- null} - -t 2.452 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4313 -a 0 -x {9.0 10.0 2161 ------- null} h -t 2.452 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4313 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.45205 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4299 -a 0 -x {9.0 10.0 2154 ------- null} - -t 2.45205 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4299 -a 0 -x {9.0 10.0 2154 ------- null} h -t 2.45205 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4299 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.45232 -s 0 -d 9 -p ack -e 40 -c 0 -i 4306 -a 0 -x {10.0 9.0 2148 ------- null} - -t 2.45232 -s 0 -d 9 -p ack -e 40 -c 0 -i 4306 -a 0 -x {10.0 9.0 2148 ------- null} h -t 2.45232 -s 0 -d 9 -p ack -e 40 -c 0 -i 4306 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.4524 -s 10 -d 7 -p ack -e 40 -c 0 -i 4310 -a 0 -x {10.0 9.0 2150 ------- null} + -t 2.4524 -s 7 -d 0 -p ack -e 40 -c 0 -i 4310 -a 0 -x {10.0 9.0 2150 ------- null} h -t 2.4524 -s 7 -d 8 -p ack -e 40 -c 0 -i 4310 -a 0 -x {10.0 9.0 2150 ------- null} r -t 2.45251 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4309 -a 0 -x {9.0 10.0 2159 ------- null} + -t 2.45251 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4309 -a 0 -x {9.0 10.0 2159 ------- null} h -t 2.45251 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4309 -a 0 -x {9.0 10.0 2159 ------- null} r -t 2.45254 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4295 -a 0 -x {9.0 10.0 2152 ------- null} + -t 2.45254 -s 10 -d 7 -p ack -e 40 -c 0 -i 4314 -a 0 -x {10.0 9.0 2152 ------- null} - -t 2.45254 -s 10 -d 7 -p ack -e 40 -c 0 -i 4314 -a 0 -x {10.0 9.0 2152 ------- null} h -t 2.45254 -s 10 -d 7 -p ack -e 40 -c 0 -i 4314 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.45312 -s 0 -d 9 -p ack -e 40 -c 0 -i 4304 -a 0 -x {10.0 9.0 2147 ------- null} + -t 2.45312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4315 -a 0 -x {9.0 10.0 2162 ------- null} - -t 2.45312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4315 -a 0 -x {9.0 10.0 2162 ------- null} h -t 2.45312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4315 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.4533 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4301 -a 0 -x {9.0 10.0 2155 ------- null} - -t 2.4533 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4301 -a 0 -x {9.0 10.0 2155 ------- null} h -t 2.4533 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4301 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.45349 -s 10 -d 7 -p ack -e 40 -c 0 -i 4312 -a 0 -x {10.0 9.0 2151 ------- null} + -t 2.45349 -s 7 -d 0 -p ack -e 40 -c 0 -i 4312 -a 0 -x {10.0 9.0 2151 ------- null} h -t 2.45349 -s 7 -d 8 -p ack -e 40 -c 0 -i 4312 -a 0 -x {10.0 9.0 2151 ------- null} + -t 2.45355 -s 0 -d 9 -p ack -e 40 -c 0 -i 4308 -a 0 -x {10.0 9.0 2149 ------- null} - -t 2.45355 -s 0 -d 9 -p ack -e 40 -c 0 -i 4308 -a 0 -x {10.0 9.0 2149 ------- null} h -t 2.45355 -s 0 -d 9 -p ack -e 40 -c 0 -i 4308 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.45363 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4297 -a 0 -x {9.0 10.0 2153 ------- null} + -t 2.45363 -s 10 -d 7 -p ack -e 40 -c 0 -i 4316 -a 0 -x {10.0 9.0 2153 ------- null} - -t 2.45363 -s 10 -d 7 -p ack -e 40 -c 0 -i 4316 -a 0 -x {10.0 9.0 2153 ------- null} h -t 2.45363 -s 10 -d 7 -p ack -e 40 -c 0 -i 4316 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.45368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4311 -a 0 -x {9.0 10.0 2160 ------- null} + -t 2.45368 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4311 -a 0 -x {9.0 10.0 2160 ------- null} h -t 2.45368 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4311 -a 0 -x {9.0 10.0 2160 ------- null} r -t 2.45435 -s 0 -d 9 -p ack -e 40 -c 0 -i 4306 -a 0 -x {10.0 9.0 2148 ------- null} + -t 2.45435 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4317 -a 0 -x {9.0 10.0 2163 ------- null} - -t 2.45435 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4317 -a 0 -x {9.0 10.0 2163 ------- null} h -t 2.45435 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4317 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.45445 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4303 -a 0 -x {9.0 10.0 2156 ------- null} - -t 2.45445 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4303 -a 0 -x {9.0 10.0 2156 ------- null} h -t 2.45445 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4303 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.45458 -s 10 -d 7 -p ack -e 40 -c 0 -i 4314 -a 0 -x {10.0 9.0 2152 ------- null} + -t 2.45458 -s 7 -d 0 -p ack -e 40 -c 0 -i 4314 -a 0 -x {10.0 9.0 2152 ------- null} h -t 2.45458 -s 7 -d 8 -p ack -e 40 -c 0 -i 4314 -a 0 -x {10.0 9.0 2152 ------- null} + -t 2.4547 -s 0 -d 9 -p ack -e 40 -c 0 -i 4310 -a 0 -x {10.0 9.0 2150 ------- null} - -t 2.4547 -s 0 -d 9 -p ack -e 40 -c 0 -i 4310 -a 0 -x {10.0 9.0 2150 ------- null} h -t 2.4547 -s 0 -d 9 -p ack -e 40 -c 0 -i 4310 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.4548 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4313 -a 0 -x {9.0 10.0 2161 ------- null} + -t 2.4548 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4313 -a 0 -x {9.0 10.0 2161 ------- null} h -t 2.4548 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4313 -a 0 -x {9.0 10.0 2161 ------- null} r -t 2.45485 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4299 -a 0 -x {9.0 10.0 2154 ------- null} + -t 2.45485 -s 10 -d 7 -p ack -e 40 -c 0 -i 4318 -a 0 -x {10.0 9.0 2154 ------- null} - -t 2.45485 -s 10 -d 7 -p ack -e 40 -c 0 -i 4318 -a 0 -x {10.0 9.0 2154 ------- null} h -t 2.45485 -s 10 -d 7 -p ack -e 40 -c 0 -i 4318 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.45558 -s 0 -d 9 -p ack -e 40 -c 0 -i 4308 -a 0 -x {10.0 9.0 2149 ------- null} + -t 2.45558 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4319 -a 0 -x {9.0 10.0 2164 ------- null} - -t 2.45558 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4319 -a 0 -x {9.0 10.0 2164 ------- null} h -t 2.45558 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4319 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.45566 -s 10 -d 7 -p ack -e 40 -c 0 -i 4316 -a 0 -x {10.0 9.0 2153 ------- null} + -t 2.45566 -s 7 -d 0 -p ack -e 40 -c 0 -i 4316 -a 0 -x {10.0 9.0 2153 ------- null} h -t 2.45566 -s 7 -d 8 -p ack -e 40 -c 0 -i 4316 -a 0 -x {10.0 9.0 2153 ------- null} + -t 2.45573 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4305 -a 0 -x {9.0 10.0 2157 ------- null} - -t 2.45573 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4305 -a 0 -x {9.0 10.0 2157 ------- null} h -t 2.45573 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4305 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.45592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4315 -a 0 -x {9.0 10.0 2162 ------- null} + -t 2.45592 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4315 -a 0 -x {9.0 10.0 2162 ------- null} h -t 2.45592 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4315 -a 0 -x {9.0 10.0 2162 ------- null} + -t 2.45598 -s 0 -d 9 -p ack -e 40 -c 0 -i 4312 -a 0 -x {10.0 9.0 2151 ------- null} - -t 2.45598 -s 0 -d 9 -p ack -e 40 -c 0 -i 4312 -a 0 -x {10.0 9.0 2151 ------- null} h -t 2.45598 -s 0 -d 9 -p ack -e 40 -c 0 -i 4312 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.4561 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4301 -a 0 -x {9.0 10.0 2155 ------- null} + -t 2.4561 -s 10 -d 7 -p ack -e 40 -c 0 -i 4320 -a 0 -x {10.0 9.0 2155 ------- null} - -t 2.4561 -s 10 -d 7 -p ack -e 40 -c 0 -i 4320 -a 0 -x {10.0 9.0 2155 ------- null} h -t 2.4561 -s 10 -d 7 -p ack -e 40 -c 0 -i 4320 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.45674 -s 0 -d 9 -p ack -e 40 -c 0 -i 4310 -a 0 -x {10.0 9.0 2150 ------- null} + -t 2.45674 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4321 -a 0 -x {9.0 10.0 2165 ------- null} - -t 2.45674 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4321 -a 0 -x {9.0 10.0 2165 ------- null} h -t 2.45674 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4321 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.45683 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4307 -a 0 -x {9.0 10.0 2158 ------- null} - -t 2.45683 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4307 -a 0 -x {9.0 10.0 2158 ------- null} h -t 2.45683 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4307 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.45688 -s 10 -d 7 -p ack -e 40 -c 0 -i 4318 -a 0 -x {10.0 9.0 2154 ------- null} + -t 2.45688 -s 7 -d 0 -p ack -e 40 -c 0 -i 4318 -a 0 -x {10.0 9.0 2154 ------- null} h -t 2.45688 -s 7 -d 8 -p ack -e 40 -c 0 -i 4318 -a 0 -x {10.0 9.0 2154 ------- null} + -t 2.45706 -s 0 -d 9 -p ack -e 40 -c 0 -i 4314 -a 0 -x {10.0 9.0 2152 ------- null} - -t 2.45706 -s 0 -d 9 -p ack -e 40 -c 0 -i 4314 -a 0 -x {10.0 9.0 2152 ------- null} h -t 2.45706 -s 0 -d 9 -p ack -e 40 -c 0 -i 4314 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.45715 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4317 -a 0 -x {9.0 10.0 2163 ------- null} + -t 2.45715 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4317 -a 0 -x {9.0 10.0 2163 ------- null} h -t 2.45715 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4317 -a 0 -x {9.0 10.0 2163 ------- null} r -t 2.45725 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4303 -a 0 -x {9.0 10.0 2156 ------- null} + -t 2.45725 -s 10 -d 7 -p ack -e 40 -c 0 -i 4322 -a 0 -x {10.0 9.0 2156 ------- null} - -t 2.45725 -s 10 -d 7 -p ack -e 40 -c 0 -i 4322 -a 0 -x {10.0 9.0 2156 ------- null} h -t 2.45725 -s 10 -d 7 -p ack -e 40 -c 0 -i 4322 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.45792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4309 -a 0 -x {9.0 10.0 2159 ------- null} - -t 2.45792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4309 -a 0 -x {9.0 10.0 2159 ------- null} h -t 2.45792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4309 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.45802 -s 0 -d 9 -p ack -e 40 -c 0 -i 4312 -a 0 -x {10.0 9.0 2151 ------- null} + -t 2.45802 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4323 -a 0 -x {9.0 10.0 2166 ------- null} - -t 2.45802 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4323 -a 0 -x {9.0 10.0 2166 ------- null} h -t 2.45802 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4323 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.45813 -s 10 -d 7 -p ack -e 40 -c 0 -i 4320 -a 0 -x {10.0 9.0 2155 ------- null} + -t 2.45813 -s 7 -d 0 -p ack -e 40 -c 0 -i 4320 -a 0 -x {10.0 9.0 2155 ------- null} h -t 2.45813 -s 7 -d 8 -p ack -e 40 -c 0 -i 4320 -a 0 -x {10.0 9.0 2155 ------- null} + -t 2.45816 -s 0 -d 9 -p ack -e 40 -c 0 -i 4316 -a 0 -x {10.0 9.0 2153 ------- null} - -t 2.45816 -s 0 -d 9 -p ack -e 40 -c 0 -i 4316 -a 0 -x {10.0 9.0 2153 ------- null} h -t 2.45816 -s 0 -d 9 -p ack -e 40 -c 0 -i 4316 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.45838 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4319 -a 0 -x {9.0 10.0 2164 ------- null} + -t 2.45838 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4319 -a 0 -x {9.0 10.0 2164 ------- null} h -t 2.45838 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4319 -a 0 -x {9.0 10.0 2164 ------- null} r -t 2.45853 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4305 -a 0 -x {9.0 10.0 2157 ------- null} + -t 2.45853 -s 10 -d 7 -p ack -e 40 -c 0 -i 4324 -a 0 -x {10.0 9.0 2157 ------- null} - -t 2.45853 -s 10 -d 7 -p ack -e 40 -c 0 -i 4324 -a 0 -x {10.0 9.0 2157 ------- null} h -t 2.45853 -s 10 -d 7 -p ack -e 40 -c 0 -i 4324 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.45901 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4311 -a 0 -x {9.0 10.0 2160 ------- null} - -t 2.45901 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4311 -a 0 -x {9.0 10.0 2160 ------- null} h -t 2.45901 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4311 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.45909 -s 0 -d 9 -p ack -e 40 -c 0 -i 4314 -a 0 -x {10.0 9.0 2152 ------- null} + -t 2.45909 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4325 -a 0 -x {9.0 10.0 2167 ------- null} - -t 2.45909 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4325 -a 0 -x {9.0 10.0 2167 ------- null} h -t 2.45909 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4325 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.45928 -s 10 -d 7 -p ack -e 40 -c 0 -i 4322 -a 0 -x {10.0 9.0 2156 ------- null} + -t 2.45928 -s 7 -d 0 -p ack -e 40 -c 0 -i 4322 -a 0 -x {10.0 9.0 2156 ------- null} h -t 2.45928 -s 7 -d 8 -p ack -e 40 -c 0 -i 4322 -a 0 -x {10.0 9.0 2156 ------- null} + -t 2.45931 -s 0 -d 9 -p ack -e 40 -c 0 -i 4318 -a 0 -x {10.0 9.0 2154 ------- null} - -t 2.45931 -s 0 -d 9 -p ack -e 40 -c 0 -i 4318 -a 0 -x {10.0 9.0 2154 ------- null} h -t 2.45931 -s 0 -d 9 -p ack -e 40 -c 0 -i 4318 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.45954 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4321 -a 0 -x {9.0 10.0 2165 ------- null} + -t 2.45954 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4321 -a 0 -x {9.0 10.0 2165 ------- null} h -t 2.45954 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4321 -a 0 -x {9.0 10.0 2165 ------- null} r -t 2.45963 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4307 -a 0 -x {9.0 10.0 2158 ------- null} + -t 2.45963 -s 10 -d 7 -p ack -e 40 -c 0 -i 4326 -a 0 -x {10.0 9.0 2158 ------- null} - -t 2.45963 -s 10 -d 7 -p ack -e 40 -c 0 -i 4326 -a 0 -x {10.0 9.0 2158 ------- null} h -t 2.45963 -s 10 -d 7 -p ack -e 40 -c 0 -i 4326 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.46019 -s 0 -d 9 -p ack -e 40 -c 0 -i 4316 -a 0 -x {10.0 9.0 2153 ------- null} + -t 2.46019 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4327 -a 0 -x {9.0 10.0 2168 ------- null} - -t 2.46019 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4327 -a 0 -x {9.0 10.0 2168 ------- null} h -t 2.46019 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4327 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.46026 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4313 -a 0 -x {9.0 10.0 2161 ------- null} - -t 2.46026 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4313 -a 0 -x {9.0 10.0 2161 ------- null} h -t 2.46026 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4313 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.4605 -s 0 -d 9 -p ack -e 40 -c 0 -i 4320 -a 0 -x {10.0 9.0 2155 ------- null} - -t 2.4605 -s 0 -d 9 -p ack -e 40 -c 0 -i 4320 -a 0 -x {10.0 9.0 2155 ------- null} h -t 2.4605 -s 0 -d 9 -p ack -e 40 -c 0 -i 4320 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.46056 -s 10 -d 7 -p ack -e 40 -c 0 -i 4324 -a 0 -x {10.0 9.0 2157 ------- null} + -t 2.46056 -s 7 -d 0 -p ack -e 40 -c 0 -i 4324 -a 0 -x {10.0 9.0 2157 ------- null} h -t 2.46056 -s 7 -d 8 -p ack -e 40 -c 0 -i 4324 -a 0 -x {10.0 9.0 2157 ------- null} r -t 2.46072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4309 -a 0 -x {9.0 10.0 2159 ------- null} + -t 2.46072 -s 10 -d 7 -p ack -e 40 -c 0 -i 4328 -a 0 -x {10.0 9.0 2159 ------- null} - -t 2.46072 -s 10 -d 7 -p ack -e 40 -c 0 -i 4328 -a 0 -x {10.0 9.0 2159 ------- null} h -t 2.46072 -s 10 -d 7 -p ack -e 40 -c 0 -i 4328 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.46082 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4323 -a 0 -x {9.0 10.0 2166 ------- null} + -t 2.46082 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4323 -a 0 -x {9.0 10.0 2166 ------- null} h -t 2.46082 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4323 -a 0 -x {9.0 10.0 2166 ------- null} r -t 2.46134 -s 0 -d 9 -p ack -e 40 -c 0 -i 4318 -a 0 -x {10.0 9.0 2154 ------- null} + -t 2.46134 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4329 -a 0 -x {9.0 10.0 2169 ------- null} - -t 2.46134 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4329 -a 0 -x {9.0 10.0 2169 ------- null} h -t 2.46134 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4329 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.46134 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4315 -a 0 -x {9.0 10.0 2162 ------- null} - -t 2.46134 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4315 -a 0 -x {9.0 10.0 2162 ------- null} h -t 2.46134 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4315 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.46162 -s 0 -d 9 -p ack -e 40 -c 0 -i 4322 -a 0 -x {10.0 9.0 2156 ------- null} - -t 2.46162 -s 0 -d 9 -p ack -e 40 -c 0 -i 4322 -a 0 -x {10.0 9.0 2156 ------- null} h -t 2.46162 -s 0 -d 9 -p ack -e 40 -c 0 -i 4322 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.46166 -s 10 -d 7 -p ack -e 40 -c 0 -i 4326 -a 0 -x {10.0 9.0 2158 ------- null} + -t 2.46166 -s 7 -d 0 -p ack -e 40 -c 0 -i 4326 -a 0 -x {10.0 9.0 2158 ------- null} h -t 2.46166 -s 7 -d 8 -p ack -e 40 -c 0 -i 4326 -a 0 -x {10.0 9.0 2158 ------- null} r -t 2.46181 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4311 -a 0 -x {9.0 10.0 2160 ------- null} + -t 2.46181 -s 10 -d 7 -p ack -e 40 -c 0 -i 4330 -a 0 -x {10.0 9.0 2160 ------- null} - -t 2.46181 -s 10 -d 7 -p ack -e 40 -c 0 -i 4330 -a 0 -x {10.0 9.0 2160 ------- null} h -t 2.46181 -s 10 -d 7 -p ack -e 40 -c 0 -i 4330 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.46189 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4325 -a 0 -x {9.0 10.0 2167 ------- null} + -t 2.46189 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4325 -a 0 -x {9.0 10.0 2167 ------- null} h -t 2.46189 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4325 -a 0 -x {9.0 10.0 2167 ------- null} r -t 2.46253 -s 0 -d 9 -p ack -e 40 -c 0 -i 4320 -a 0 -x {10.0 9.0 2155 ------- null} + -t 2.46253 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4331 -a 0 -x {9.0 10.0 2170 ------- null} - -t 2.46253 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4331 -a 0 -x {9.0 10.0 2170 ------- null} h -t 2.46253 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4331 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.46261 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4317 -a 0 -x {9.0 10.0 2163 ------- null} - -t 2.46261 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4317 -a 0 -x {9.0 10.0 2163 ------- null} h -t 2.46261 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4317 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.46275 -s 10 -d 7 -p ack -e 40 -c 0 -i 4328 -a 0 -x {10.0 9.0 2159 ------- null} + -t 2.46275 -s 7 -d 0 -p ack -e 40 -c 0 -i 4328 -a 0 -x {10.0 9.0 2159 ------- null} h -t 2.46275 -s 7 -d 8 -p ack -e 40 -c 0 -i 4328 -a 0 -x {10.0 9.0 2159 ------- null} + -t 2.4629 -s 0 -d 9 -p ack -e 40 -c 0 -i 4324 -a 0 -x {10.0 9.0 2157 ------- null} - -t 2.4629 -s 0 -d 9 -p ack -e 40 -c 0 -i 4324 -a 0 -x {10.0 9.0 2157 ------- null} h -t 2.4629 -s 0 -d 9 -p ack -e 40 -c 0 -i 4324 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.46299 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4327 -a 0 -x {9.0 10.0 2168 ------- null} + -t 2.46299 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4327 -a 0 -x {9.0 10.0 2168 ------- null} h -t 2.46299 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4327 -a 0 -x {9.0 10.0 2168 ------- null} r -t 2.46306 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4313 -a 0 -x {9.0 10.0 2161 ------- null} + -t 2.46306 -s 10 -d 7 -p ack -e 40 -c 0 -i 4332 -a 0 -x {10.0 9.0 2161 ------- null} - -t 2.46306 -s 10 -d 7 -p ack -e 40 -c 0 -i 4332 -a 0 -x {10.0 9.0 2161 ------- null} h -t 2.46306 -s 10 -d 7 -p ack -e 40 -c 0 -i 4332 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.46365 -s 0 -d 9 -p ack -e 40 -c 0 -i 4322 -a 0 -x {10.0 9.0 2156 ------- null} + -t 2.46365 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4333 -a 0 -x {9.0 10.0 2171 ------- null} - -t 2.46365 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4333 -a 0 -x {9.0 10.0 2171 ------- null} h -t 2.46365 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4333 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.46384 -s 10 -d 7 -p ack -e 40 -c 0 -i 4330 -a 0 -x {10.0 9.0 2160 ------- null} + -t 2.46384 -s 7 -d 0 -p ack -e 40 -c 0 -i 4330 -a 0 -x {10.0 9.0 2160 ------- null} h -t 2.46384 -s 7 -d 8 -p ack -e 40 -c 0 -i 4330 -a 0 -x {10.0 9.0 2160 ------- null} + -t 2.4639 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4319 -a 0 -x {9.0 10.0 2164 ------- null} - -t 2.4639 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4319 -a 0 -x {9.0 10.0 2164 ------- null} h -t 2.4639 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4319 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.4641 -s 0 -d 9 -p ack -e 40 -c 0 -i 4326 -a 0 -x {10.0 9.0 2158 ------- null} - -t 2.4641 -s 0 -d 9 -p ack -e 40 -c 0 -i 4326 -a 0 -x {10.0 9.0 2158 ------- null} h -t 2.4641 -s 0 -d 9 -p ack -e 40 -c 0 -i 4326 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.46414 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4329 -a 0 -x {9.0 10.0 2169 ------- null} + -t 2.46414 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4329 -a 0 -x {9.0 10.0 2169 ------- null} h -t 2.46414 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4329 -a 0 -x {9.0 10.0 2169 ------- null} r -t 2.46414 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4315 -a 0 -x {9.0 10.0 2162 ------- null} + -t 2.46414 -s 10 -d 7 -p ack -e 40 -c 0 -i 4334 -a 0 -x {10.0 9.0 2162 ------- null} - -t 2.46414 -s 10 -d 7 -p ack -e 40 -c 0 -i 4334 -a 0 -x {10.0 9.0 2162 ------- null} h -t 2.46414 -s 10 -d 7 -p ack -e 40 -c 0 -i 4334 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.46493 -s 0 -d 9 -p ack -e 40 -c 0 -i 4324 -a 0 -x {10.0 9.0 2157 ------- null} + -t 2.46493 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4335 -a 0 -x {9.0 10.0 2172 ------- null} - -t 2.46493 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4335 -a 0 -x {9.0 10.0 2172 ------- null} h -t 2.46493 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4335 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.46499 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4321 -a 0 -x {9.0 10.0 2165 ------- null} - -t 2.46499 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4321 -a 0 -x {9.0 10.0 2165 ------- null} h -t 2.46499 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4321 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.46509 -s 10 -d 7 -p ack -e 40 -c 0 -i 4332 -a 0 -x {10.0 9.0 2161 ------- null} + -t 2.46509 -s 7 -d 0 -p ack -e 40 -c 0 -i 4332 -a 0 -x {10.0 9.0 2161 ------- null} h -t 2.46509 -s 7 -d 8 -p ack -e 40 -c 0 -i 4332 -a 0 -x {10.0 9.0 2161 ------- null} + -t 2.46517 -s 0 -d 9 -p ack -e 40 -c 0 -i 4328 -a 0 -x {10.0 9.0 2159 ------- null} - -t 2.46517 -s 0 -d 9 -p ack -e 40 -c 0 -i 4328 -a 0 -x {10.0 9.0 2159 ------- null} h -t 2.46517 -s 0 -d 9 -p ack -e 40 -c 0 -i 4328 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.46533 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4331 -a 0 -x {9.0 10.0 2170 ------- null} + -t 2.46533 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4331 -a 0 -x {9.0 10.0 2170 ------- null} h -t 2.46533 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4331 -a 0 -x {9.0 10.0 2170 ------- null} r -t 2.46541 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4317 -a 0 -x {9.0 10.0 2163 ------- null} + -t 2.46541 -s 10 -d 7 -p ack -e 40 -c 0 -i 4336 -a 0 -x {10.0 9.0 2163 ------- null} - -t 2.46541 -s 10 -d 7 -p ack -e 40 -c 0 -i 4336 -a 0 -x {10.0 9.0 2163 ------- null} h -t 2.46541 -s 10 -d 7 -p ack -e 40 -c 0 -i 4336 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.46608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4323 -a 0 -x {9.0 10.0 2166 ------- null} - -t 2.46608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4323 -a 0 -x {9.0 10.0 2166 ------- null} h -t 2.46608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4323 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.46613 -s 0 -d 9 -p ack -e 40 -c 0 -i 4326 -a 0 -x {10.0 9.0 2158 ------- null} + -t 2.46613 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4337 -a 0 -x {9.0 10.0 2173 ------- null} - -t 2.46613 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4337 -a 0 -x {9.0 10.0 2173 ------- null} h -t 2.46613 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4337 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.46618 -s 10 -d 7 -p ack -e 40 -c 0 -i 4334 -a 0 -x {10.0 9.0 2162 ------- null} + -t 2.46618 -s 7 -d 0 -p ack -e 40 -c 0 -i 4334 -a 0 -x {10.0 9.0 2162 ------- null} h -t 2.46618 -s 7 -d 8 -p ack -e 40 -c 0 -i 4334 -a 0 -x {10.0 9.0 2162 ------- null} + -t 2.46635 -s 0 -d 9 -p ack -e 40 -c 0 -i 4330 -a 0 -x {10.0 9.0 2160 ------- null} - -t 2.46635 -s 0 -d 9 -p ack -e 40 -c 0 -i 4330 -a 0 -x {10.0 9.0 2160 ------- null} h -t 2.46635 -s 0 -d 9 -p ack -e 40 -c 0 -i 4330 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.46645 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4333 -a 0 -x {9.0 10.0 2171 ------- null} + -t 2.46645 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4333 -a 0 -x {9.0 10.0 2171 ------- null} h -t 2.46645 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4333 -a 0 -x {9.0 10.0 2171 ------- null} r -t 2.4667 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4319 -a 0 -x {9.0 10.0 2164 ------- null} + -t 2.4667 -s 10 -d 7 -p ack -e 40 -c 0 -i 4338 -a 0 -x {10.0 9.0 2164 ------- null} - -t 2.4667 -s 10 -d 7 -p ack -e 40 -c 0 -i 4338 -a 0 -x {10.0 9.0 2164 ------- null} h -t 2.4667 -s 10 -d 7 -p ack -e 40 -c 0 -i 4338 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.4672 -s 0 -d 9 -p ack -e 40 -c 0 -i 4328 -a 0 -x {10.0 9.0 2159 ------- null} + -t 2.4672 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4339 -a 0 -x {9.0 10.0 2174 ------- null} - -t 2.4672 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4339 -a 0 -x {9.0 10.0 2174 ------- null} h -t 2.4672 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4339 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.4673 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4325 -a 0 -x {9.0 10.0 2167 ------- null} - -t 2.4673 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4325 -a 0 -x {9.0 10.0 2167 ------- null} h -t 2.4673 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4325 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.46738 -s 0 -d 9 -p ack -e 40 -c 0 -i 4332 -a 0 -x {10.0 9.0 2161 ------- null} - -t 2.46738 -s 0 -d 9 -p ack -e 40 -c 0 -i 4332 -a 0 -x {10.0 9.0 2161 ------- null} h -t 2.46738 -s 0 -d 9 -p ack -e 40 -c 0 -i 4332 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.46744 -s 10 -d 7 -p ack -e 40 -c 0 -i 4336 -a 0 -x {10.0 9.0 2163 ------- null} + -t 2.46744 -s 7 -d 0 -p ack -e 40 -c 0 -i 4336 -a 0 -x {10.0 9.0 2163 ------- null} h -t 2.46744 -s 7 -d 8 -p ack -e 40 -c 0 -i 4336 -a 0 -x {10.0 9.0 2163 ------- null} r -t 2.46773 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4335 -a 0 -x {9.0 10.0 2172 ------- null} + -t 2.46773 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4335 -a 0 -x {9.0 10.0 2172 ------- null} h -t 2.46773 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4335 -a 0 -x {9.0 10.0 2172 ------- null} r -t 2.46779 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4321 -a 0 -x {9.0 10.0 2165 ------- null} + -t 2.46779 -s 10 -d 7 -p ack -e 40 -c 0 -i 4340 -a 0 -x {10.0 9.0 2165 ------- null} - -t 2.46779 -s 10 -d 7 -p ack -e 40 -c 0 -i 4340 -a 0 -x {10.0 9.0 2165 ------- null} h -t 2.46779 -s 10 -d 7 -p ack -e 40 -c 0 -i 4340 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.46838 -s 0 -d 9 -p ack -e 40 -c 0 -i 4330 -a 0 -x {10.0 9.0 2160 ------- null} + -t 2.46838 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4341 -a 0 -x {9.0 10.0 2175 ------- null} - -t 2.46838 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4341 -a 0 -x {9.0 10.0 2175 ------- null} h -t 2.46838 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4341 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.46838 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4327 -a 0 -x {9.0 10.0 2168 ------- null} - -t 2.46838 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4327 -a 0 -x {9.0 10.0 2168 ------- null} h -t 2.46838 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4327 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.46866 -s 0 -d 9 -p ack -e 40 -c 0 -i 4334 -a 0 -x {10.0 9.0 2162 ------- null} - -t 2.46866 -s 0 -d 9 -p ack -e 40 -c 0 -i 4334 -a 0 -x {10.0 9.0 2162 ------- null} h -t 2.46866 -s 0 -d 9 -p ack -e 40 -c 0 -i 4334 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.46874 -s 10 -d 7 -p ack -e 40 -c 0 -i 4338 -a 0 -x {10.0 9.0 2164 ------- null} + -t 2.46874 -s 7 -d 0 -p ack -e 40 -c 0 -i 4338 -a 0 -x {10.0 9.0 2164 ------- null} h -t 2.46874 -s 7 -d 8 -p ack -e 40 -c 0 -i 4338 -a 0 -x {10.0 9.0 2164 ------- null} r -t 2.46888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4323 -a 0 -x {9.0 10.0 2166 ------- null} + -t 2.46888 -s 10 -d 7 -p ack -e 40 -c 0 -i 4342 -a 0 -x {10.0 9.0 2166 ------- null} - -t 2.46888 -s 10 -d 7 -p ack -e 40 -c 0 -i 4342 -a 0 -x {10.0 9.0 2166 ------- null} h -t 2.46888 -s 10 -d 7 -p ack -e 40 -c 0 -i 4342 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.46893 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4337 -a 0 -x {9.0 10.0 2173 ------- null} + -t 2.46893 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4337 -a 0 -x {9.0 10.0 2173 ------- null} h -t 2.46893 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4337 -a 0 -x {9.0 10.0 2173 ------- null} r -t 2.46941 -s 0 -d 9 -p ack -e 40 -c 0 -i 4332 -a 0 -x {10.0 9.0 2161 ------- null} + -t 2.46941 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4343 -a 0 -x {9.0 10.0 2176 ------- null} - -t 2.46941 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4343 -a 0 -x {9.0 10.0 2176 ------- null} h -t 2.46941 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4343 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.46966 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4329 -a 0 -x {9.0 10.0 2169 ------- null} - -t 2.46966 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4329 -a 0 -x {9.0 10.0 2169 ------- null} h -t 2.46966 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4329 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.46982 -s 10 -d 7 -p ack -e 40 -c 0 -i 4340 -a 0 -x {10.0 9.0 2165 ------- null} + -t 2.46982 -s 7 -d 0 -p ack -e 40 -c 0 -i 4340 -a 0 -x {10.0 9.0 2165 ------- null} h -t 2.46982 -s 7 -d 8 -p ack -e 40 -c 0 -i 4340 -a 0 -x {10.0 9.0 2165 ------- null} + -t 2.46997 -s 0 -d 9 -p ack -e 40 -c 0 -i 4336 -a 0 -x {10.0 9.0 2163 ------- null} - -t 2.46997 -s 0 -d 9 -p ack -e 40 -c 0 -i 4336 -a 0 -x {10.0 9.0 2163 ------- null} h -t 2.46997 -s 0 -d 9 -p ack -e 40 -c 0 -i 4336 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.47 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4339 -a 0 -x {9.0 10.0 2174 ------- null} + -t 2.47 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4339 -a 0 -x {9.0 10.0 2174 ------- null} h -t 2.47 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4339 -a 0 -x {9.0 10.0 2174 ------- null} r -t 2.4701 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4325 -a 0 -x {9.0 10.0 2167 ------- null} + -t 2.4701 -s 10 -d 7 -p ack -e 40 -c 0 -i 4344 -a 0 -x {10.0 9.0 2167 ------- null} - -t 2.4701 -s 10 -d 7 -p ack -e 40 -c 0 -i 4344 -a 0 -x {10.0 9.0 2167 ------- null} h -t 2.4701 -s 10 -d 7 -p ack -e 40 -c 0 -i 4344 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.47069 -s 0 -d 9 -p ack -e 40 -c 0 -i 4334 -a 0 -x {10.0 9.0 2162 ------- null} + -t 2.47069 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4345 -a 0 -x {9.0 10.0 2177 ------- null} - -t 2.47069 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4345 -a 0 -x {9.0 10.0 2177 ------- null} h -t 2.47069 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4345 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.47091 -s 10 -d 7 -p ack -e 40 -c 0 -i 4342 -a 0 -x {10.0 9.0 2166 ------- null} + -t 2.47091 -s 7 -d 0 -p ack -e 40 -c 0 -i 4342 -a 0 -x {10.0 9.0 2166 ------- null} h -t 2.47091 -s 7 -d 8 -p ack -e 40 -c 0 -i 4342 -a 0 -x {10.0 9.0 2166 ------- null} + -t 2.47102 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4331 -a 0 -x {9.0 10.0 2170 ------- null} - -t 2.47102 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4331 -a 0 -x {9.0 10.0 2170 ------- null} h -t 2.47102 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4331 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.47115 -s 0 -d 9 -p ack -e 40 -c 0 -i 4338 -a 0 -x {10.0 9.0 2164 ------- null} - -t 2.47115 -s 0 -d 9 -p ack -e 40 -c 0 -i 4338 -a 0 -x {10.0 9.0 2164 ------- null} h -t 2.47115 -s 0 -d 9 -p ack -e 40 -c 0 -i 4338 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.47118 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4341 -a 0 -x {9.0 10.0 2175 ------- null} + -t 2.47118 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4341 -a 0 -x {9.0 10.0 2175 ------- null} h -t 2.47118 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4341 -a 0 -x {9.0 10.0 2175 ------- null} r -t 2.47118 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4327 -a 0 -x {9.0 10.0 2168 ------- null} + -t 2.47118 -s 10 -d 7 -p ack -e 40 -c 0 -i 4346 -a 0 -x {10.0 9.0 2168 ------- null} - -t 2.47118 -s 10 -d 7 -p ack -e 40 -c 0 -i 4346 -a 0 -x {10.0 9.0 2168 ------- null} h -t 2.47118 -s 10 -d 7 -p ack -e 40 -c 0 -i 4346 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.472 -s 0 -d 9 -p ack -e 40 -c 0 -i 4336 -a 0 -x {10.0 9.0 2163 ------- null} + -t 2.472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4347 -a 0 -x {9.0 10.0 2178 ------- null} - -t 2.472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4347 -a 0 -x {9.0 10.0 2178 ------- null} h -t 2.472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4347 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.47211 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4333 -a 0 -x {9.0 10.0 2171 ------- null} - -t 2.47211 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4333 -a 0 -x {9.0 10.0 2171 ------- null} h -t 2.47211 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4333 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.47213 -s 10 -d 7 -p ack -e 40 -c 0 -i 4344 -a 0 -x {10.0 9.0 2167 ------- null} + -t 2.47213 -s 7 -d 0 -p ack -e 40 -c 0 -i 4344 -a 0 -x {10.0 9.0 2167 ------- null} h -t 2.47213 -s 7 -d 8 -p ack -e 40 -c 0 -i 4344 -a 0 -x {10.0 9.0 2167 ------- null} + -t 2.47218 -s 0 -d 9 -p ack -e 40 -c 0 -i 4340 -a 0 -x {10.0 9.0 2165 ------- null} - -t 2.47218 -s 0 -d 9 -p ack -e 40 -c 0 -i 4340 -a 0 -x {10.0 9.0 2165 ------- null} h -t 2.47218 -s 0 -d 9 -p ack -e 40 -c 0 -i 4340 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.47221 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4343 -a 0 -x {9.0 10.0 2176 ------- null} + -t 2.47221 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4343 -a 0 -x {9.0 10.0 2176 ------- null} h -t 2.47221 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4343 -a 0 -x {9.0 10.0 2176 ------- null} r -t 2.47246 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4329 -a 0 -x {9.0 10.0 2169 ------- null} + -t 2.47246 -s 10 -d 7 -p ack -e 40 -c 0 -i 4348 -a 0 -x {10.0 9.0 2169 ------- null} - -t 2.47246 -s 10 -d 7 -p ack -e 40 -c 0 -i 4348 -a 0 -x {10.0 9.0 2169 ------- null} h -t 2.47246 -s 10 -d 7 -p ack -e 40 -c 0 -i 4348 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.47318 -s 0 -d 9 -p ack -e 40 -c 0 -i 4338 -a 0 -x {10.0 9.0 2164 ------- null} + -t 2.47318 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4349 -a 0 -x {9.0 10.0 2179 ------- null} - -t 2.47318 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4349 -a 0 -x {9.0 10.0 2179 ------- null} h -t 2.47318 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4349 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.4732 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4335 -a 0 -x {9.0 10.0 2172 ------- null} - -t 2.4732 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4335 -a 0 -x {9.0 10.0 2172 ------- null} h -t 2.4732 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4335 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.47322 -s 10 -d 7 -p ack -e 40 -c 0 -i 4346 -a 0 -x {10.0 9.0 2168 ------- null} + -t 2.47322 -s 7 -d 0 -p ack -e 40 -c 0 -i 4346 -a 0 -x {10.0 9.0 2168 ------- null} h -t 2.47322 -s 7 -d 8 -p ack -e 40 -c 0 -i 4346 -a 0 -x {10.0 9.0 2168 ------- null} + -t 2.47326 -s 0 -d 9 -p ack -e 40 -c 0 -i 4342 -a 0 -x {10.0 9.0 2166 ------- null} - -t 2.47326 -s 0 -d 9 -p ack -e 40 -c 0 -i 4342 -a 0 -x {10.0 9.0 2166 ------- null} h -t 2.47326 -s 0 -d 9 -p ack -e 40 -c 0 -i 4342 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.47349 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4345 -a 0 -x {9.0 10.0 2177 ------- null} + -t 2.47349 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4345 -a 0 -x {9.0 10.0 2177 ------- null} h -t 2.47349 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4345 -a 0 -x {9.0 10.0 2177 ------- null} r -t 2.47382 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4331 -a 0 -x {9.0 10.0 2170 ------- null} + -t 2.47382 -s 10 -d 7 -p ack -e 40 -c 0 -i 4350 -a 0 -x {10.0 9.0 2170 ------- null} - -t 2.47382 -s 10 -d 7 -p ack -e 40 -c 0 -i 4350 -a 0 -x {10.0 9.0 2170 ------- null} h -t 2.47382 -s 10 -d 7 -p ack -e 40 -c 0 -i 4350 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.47421 -s 0 -d 9 -p ack -e 40 -c 0 -i 4340 -a 0 -x {10.0 9.0 2165 ------- null} + -t 2.47421 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4351 -a 0 -x {9.0 10.0 2180 ------- null} - -t 2.47421 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4351 -a 0 -x {9.0 10.0 2180 ------- null} h -t 2.47421 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4351 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.47429 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4337 -a 0 -x {9.0 10.0 2173 ------- null} - -t 2.47429 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4337 -a 0 -x {9.0 10.0 2173 ------- null} h -t 2.47429 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4337 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.4745 -s 0 -d 9 -p ack -e 40 -c 0 -i 4344 -a 0 -x {10.0 9.0 2167 ------- null} - -t 2.4745 -s 0 -d 9 -p ack -e 40 -c 0 -i 4344 -a 0 -x {10.0 9.0 2167 ------- null} h -t 2.4745 -s 0 -d 9 -p ack -e 40 -c 0 -i 4344 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.4745 -s 10 -d 7 -p ack -e 40 -c 0 -i 4348 -a 0 -x {10.0 9.0 2169 ------- null} + -t 2.4745 -s 7 -d 0 -p ack -e 40 -c 0 -i 4348 -a 0 -x {10.0 9.0 2169 ------- null} h -t 2.4745 -s 7 -d 8 -p ack -e 40 -c 0 -i 4348 -a 0 -x {10.0 9.0 2169 ------- null} r -t 2.4748 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4347 -a 0 -x {9.0 10.0 2178 ------- null} + -t 2.4748 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4347 -a 0 -x {9.0 10.0 2178 ------- null} h -t 2.4748 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4347 -a 0 -x {9.0 10.0 2178 ------- null} r -t 2.47491 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4333 -a 0 -x {9.0 10.0 2171 ------- null} + -t 2.47491 -s 10 -d 7 -p ack -e 40 -c 0 -i 4352 -a 0 -x {10.0 9.0 2171 ------- null} - -t 2.47491 -s 10 -d 7 -p ack -e 40 -c 0 -i 4352 -a 0 -x {10.0 9.0 2171 ------- null} h -t 2.47491 -s 10 -d 7 -p ack -e 40 -c 0 -i 4352 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.4753 -s 0 -d 9 -p ack -e 40 -c 0 -i 4342 -a 0 -x {10.0 9.0 2166 ------- null} + -t 2.4753 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4353 -a 0 -x {9.0 10.0 2181 ------- null} - -t 2.4753 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4353 -a 0 -x {9.0 10.0 2181 ------- null} h -t 2.4753 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4353 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.47538 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4339 -a 0 -x {9.0 10.0 2174 ------- null} - -t 2.47538 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4339 -a 0 -x {9.0 10.0 2174 ------- null} h -t 2.47538 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4339 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.47555 -s 0 -d 9 -p ack -e 40 -c 0 -i 4346 -a 0 -x {10.0 9.0 2168 ------- null} - -t 2.47555 -s 0 -d 9 -p ack -e 40 -c 0 -i 4346 -a 0 -x {10.0 9.0 2168 ------- null} h -t 2.47555 -s 0 -d 9 -p ack -e 40 -c 0 -i 4346 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.47586 -s 10 -d 7 -p ack -e 40 -c 0 -i 4350 -a 0 -x {10.0 9.0 2170 ------- null} + -t 2.47586 -s 7 -d 0 -p ack -e 40 -c 0 -i 4350 -a 0 -x {10.0 9.0 2170 ------- null} h -t 2.47586 -s 7 -d 8 -p ack -e 40 -c 0 -i 4350 -a 0 -x {10.0 9.0 2170 ------- null} r -t 2.47598 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4349 -a 0 -x {9.0 10.0 2179 ------- null} + -t 2.47598 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4349 -a 0 -x {9.0 10.0 2179 ------- null} h -t 2.47598 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4349 -a 0 -x {9.0 10.0 2179 ------- null} r -t 2.476 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4335 -a 0 -x {9.0 10.0 2172 ------- null} + -t 2.476 -s 10 -d 7 -p ack -e 40 -c 0 -i 4354 -a 0 -x {10.0 9.0 2172 ------- null} - -t 2.476 -s 10 -d 7 -p ack -e 40 -c 0 -i 4354 -a 0 -x {10.0 9.0 2172 ------- null} h -t 2.476 -s 10 -d 7 -p ack -e 40 -c 0 -i 4354 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.47646 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4341 -a 0 -x {9.0 10.0 2175 ------- null} - -t 2.47646 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4341 -a 0 -x {9.0 10.0 2175 ------- null} h -t 2.47646 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4341 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.47653 -s 0 -d 9 -p ack -e 40 -c 0 -i 4344 -a 0 -x {10.0 9.0 2167 ------- null} + -t 2.47653 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4355 -a 0 -x {9.0 10.0 2182 ------- null} - -t 2.47653 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4355 -a 0 -x {9.0 10.0 2182 ------- null} h -t 2.47653 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4355 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.4767 -s 0 -d 9 -p ack -e 40 -c 0 -i 4348 -a 0 -x {10.0 9.0 2169 ------- null} - -t 2.4767 -s 0 -d 9 -p ack -e 40 -c 0 -i 4348 -a 0 -x {10.0 9.0 2169 ------- null} h -t 2.4767 -s 0 -d 9 -p ack -e 40 -c 0 -i 4348 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.47694 -s 10 -d 7 -p ack -e 40 -c 0 -i 4352 -a 0 -x {10.0 9.0 2171 ------- null} + -t 2.47694 -s 7 -d 0 -p ack -e 40 -c 0 -i 4352 -a 0 -x {10.0 9.0 2171 ------- null} h -t 2.47694 -s 7 -d 8 -p ack -e 40 -c 0 -i 4352 -a 0 -x {10.0 9.0 2171 ------- null} r -t 2.47701 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4351 -a 0 -x {9.0 10.0 2180 ------- null} + -t 2.47701 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4351 -a 0 -x {9.0 10.0 2180 ------- null} h -t 2.47701 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4351 -a 0 -x {9.0 10.0 2180 ------- null} r -t 2.47709 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4337 -a 0 -x {9.0 10.0 2173 ------- null} + -t 2.47709 -s 10 -d 7 -p ack -e 40 -c 0 -i 4356 -a 0 -x {10.0 9.0 2173 ------- null} - -t 2.47709 -s 10 -d 7 -p ack -e 40 -c 0 -i 4356 -a 0 -x {10.0 9.0 2173 ------- null} h -t 2.47709 -s 10 -d 7 -p ack -e 40 -c 0 -i 4356 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.47755 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4343 -a 0 -x {9.0 10.0 2176 ------- null} - -t 2.47755 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4343 -a 0 -x {9.0 10.0 2176 ------- null} h -t 2.47755 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4343 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.47758 -s 0 -d 9 -p ack -e 40 -c 0 -i 4346 -a 0 -x {10.0 9.0 2168 ------- null} + -t 2.47758 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4357 -a 0 -x {9.0 10.0 2183 ------- null} - -t 2.47758 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4357 -a 0 -x {9.0 10.0 2183 ------- null} h -t 2.47758 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4357 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.47762 -s 0 -d 9 -p ack -e 40 -c 0 -i 4350 -a 0 -x {10.0 9.0 2170 ------- null} - -t 2.47762 -s 0 -d 9 -p ack -e 40 -c 0 -i 4350 -a 0 -x {10.0 9.0 2170 ------- null} h -t 2.47762 -s 0 -d 9 -p ack -e 40 -c 0 -i 4350 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.47803 -s 10 -d 7 -p ack -e 40 -c 0 -i 4354 -a 0 -x {10.0 9.0 2172 ------- null} + -t 2.47803 -s 7 -d 0 -p ack -e 40 -c 0 -i 4354 -a 0 -x {10.0 9.0 2172 ------- null} h -t 2.47803 -s 7 -d 8 -p ack -e 40 -c 0 -i 4354 -a 0 -x {10.0 9.0 2172 ------- null} r -t 2.4781 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4353 -a 0 -x {9.0 10.0 2181 ------- null} + -t 2.4781 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4353 -a 0 -x {9.0 10.0 2181 ------- null} h -t 2.4781 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4353 -a 0 -x {9.0 10.0 2181 ------- null} r -t 2.47818 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4339 -a 0 -x {9.0 10.0 2174 ------- null} + -t 2.47818 -s 10 -d 7 -p ack -e 40 -c 0 -i 4358 -a 0 -x {10.0 9.0 2174 ------- null} - -t 2.47818 -s 10 -d 7 -p ack -e 40 -c 0 -i 4358 -a 0 -x {10.0 9.0 2174 ------- null} h -t 2.47818 -s 10 -d 7 -p ack -e 40 -c 0 -i 4358 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.47864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4345 -a 0 -x {9.0 10.0 2177 ------- null} - -t 2.47864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4345 -a 0 -x {9.0 10.0 2177 ------- null} h -t 2.47864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4345 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.47874 -s 0 -d 9 -p ack -e 40 -c 0 -i 4352 -a 0 -x {10.0 9.0 2171 ------- null} - -t 2.47874 -s 0 -d 9 -p ack -e 40 -c 0 -i 4352 -a 0 -x {10.0 9.0 2171 ------- null} h -t 2.47874 -s 0 -d 9 -p ack -e 40 -c 0 -i 4352 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.47874 -s 0 -d 9 -p ack -e 40 -c 0 -i 4348 -a 0 -x {10.0 9.0 2169 ------- null} + -t 2.47874 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4359 -a 0 -x {9.0 10.0 2184 ------- null} - -t 2.47874 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4359 -a 0 -x {9.0 10.0 2184 ------- null} h -t 2.47874 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4359 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.47912 -s 10 -d 7 -p ack -e 40 -c 0 -i 4356 -a 0 -x {10.0 9.0 2173 ------- null} + -t 2.47912 -s 7 -d 0 -p ack -e 40 -c 0 -i 4356 -a 0 -x {10.0 9.0 2173 ------- null} h -t 2.47912 -s 7 -d 8 -p ack -e 40 -c 0 -i 4356 -a 0 -x {10.0 9.0 2173 ------- null} r -t 2.47926 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4341 -a 0 -x {9.0 10.0 2175 ------- null} + -t 2.47926 -s 10 -d 7 -p ack -e 40 -c 0 -i 4360 -a 0 -x {10.0 9.0 2175 ------- null} - -t 2.47926 -s 10 -d 7 -p ack -e 40 -c 0 -i 4360 -a 0 -x {10.0 9.0 2175 ------- null} h -t 2.47926 -s 10 -d 7 -p ack -e 40 -c 0 -i 4360 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.47933 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4355 -a 0 -x {9.0 10.0 2182 ------- null} + -t 2.47933 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4355 -a 0 -x {9.0 10.0 2182 ------- null} h -t 2.47933 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4355 -a 0 -x {9.0 10.0 2182 ------- null} r -t 2.47965 -s 0 -d 9 -p ack -e 40 -c 0 -i 4350 -a 0 -x {10.0 9.0 2170 ------- null} + -t 2.47965 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4361 -a 0 -x {9.0 10.0 2185 ------- null} - -t 2.47965 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4361 -a 0 -x {9.0 10.0 2185 ------- null} h -t 2.47965 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4361 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.47973 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4347 -a 0 -x {9.0 10.0 2178 ------- null} - -t 2.47973 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4347 -a 0 -x {9.0 10.0 2178 ------- null} h -t 2.47973 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4347 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.47994 -s 0 -d 9 -p ack -e 40 -c 0 -i 4354 -a 0 -x {10.0 9.0 2172 ------- null} - -t 2.47994 -s 0 -d 9 -p ack -e 40 -c 0 -i 4354 -a 0 -x {10.0 9.0 2172 ------- null} h -t 2.47994 -s 0 -d 9 -p ack -e 40 -c 0 -i 4354 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.48021 -s 10 -d 7 -p ack -e 40 -c 0 -i 4358 -a 0 -x {10.0 9.0 2174 ------- null} + -t 2.48021 -s 7 -d 0 -p ack -e 40 -c 0 -i 4358 -a 0 -x {10.0 9.0 2174 ------- null} h -t 2.48021 -s 7 -d 8 -p ack -e 40 -c 0 -i 4358 -a 0 -x {10.0 9.0 2174 ------- null} r -t 2.48035 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4343 -a 0 -x {9.0 10.0 2176 ------- null} + -t 2.48035 -s 10 -d 7 -p ack -e 40 -c 0 -i 4362 -a 0 -x {10.0 9.0 2176 ------- null} - -t 2.48035 -s 10 -d 7 -p ack -e 40 -c 0 -i 4362 -a 0 -x {10.0 9.0 2176 ------- null} h -t 2.48035 -s 10 -d 7 -p ack -e 40 -c 0 -i 4362 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.48038 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4357 -a 0 -x {9.0 10.0 2183 ------- null} + -t 2.48038 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4357 -a 0 -x {9.0 10.0 2183 ------- null} h -t 2.48038 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4357 -a 0 -x {9.0 10.0 2183 ------- null} r -t 2.48077 -s 0 -d 9 -p ack -e 40 -c 0 -i 4352 -a 0 -x {10.0 9.0 2171 ------- null} + -t 2.48077 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4363 -a 0 -x {9.0 10.0 2186 ------- null} - -t 2.48077 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4363 -a 0 -x {9.0 10.0 2186 ------- null} h -t 2.48077 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4363 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.48082 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4349 -a 0 -x {9.0 10.0 2179 ------- null} - -t 2.48082 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4349 -a 0 -x {9.0 10.0 2179 ------- null} h -t 2.48082 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4349 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.4811 -s 0 -d 9 -p ack -e 40 -c 0 -i 4356 -a 0 -x {10.0 9.0 2173 ------- null} - -t 2.4811 -s 0 -d 9 -p ack -e 40 -c 0 -i 4356 -a 0 -x {10.0 9.0 2173 ------- null} h -t 2.4811 -s 0 -d 9 -p ack -e 40 -c 0 -i 4356 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.4813 -s 10 -d 7 -p ack -e 40 -c 0 -i 4360 -a 0 -x {10.0 9.0 2175 ------- null} + -t 2.4813 -s 7 -d 0 -p ack -e 40 -c 0 -i 4360 -a 0 -x {10.0 9.0 2175 ------- null} h -t 2.4813 -s 7 -d 8 -p ack -e 40 -c 0 -i 4360 -a 0 -x {10.0 9.0 2175 ------- null} r -t 2.48144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4345 -a 0 -x {9.0 10.0 2177 ------- null} + -t 2.48144 -s 10 -d 7 -p ack -e 40 -c 0 -i 4364 -a 0 -x {10.0 9.0 2177 ------- null} - -t 2.48144 -s 10 -d 7 -p ack -e 40 -c 0 -i 4364 -a 0 -x {10.0 9.0 2177 ------- null} h -t 2.48144 -s 10 -d 7 -p ack -e 40 -c 0 -i 4364 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.48154 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4359 -a 0 -x {9.0 10.0 2184 ------- null} + -t 2.48154 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4359 -a 0 -x {9.0 10.0 2184 ------- null} h -t 2.48154 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4359 -a 0 -x {9.0 10.0 2184 ------- null} r -t 2.48197 -s 0 -d 9 -p ack -e 40 -c 0 -i 4354 -a 0 -x {10.0 9.0 2172 ------- null} + -t 2.48197 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4365 -a 0 -x {9.0 10.0 2187 ------- null} - -t 2.48197 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4365 -a 0 -x {9.0 10.0 2187 ------- null} h -t 2.48197 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4365 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.482 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4351 -a 0 -x {9.0 10.0 2180 ------- null} - -t 2.482 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4351 -a 0 -x {9.0 10.0 2180 ------- null} h -t 2.482 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4351 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.48208 -s 0 -d 9 -p ack -e 40 -c 0 -i 4358 -a 0 -x {10.0 9.0 2174 ------- null} - -t 2.48208 -s 0 -d 9 -p ack -e 40 -c 0 -i 4358 -a 0 -x {10.0 9.0 2174 ------- null} h -t 2.48208 -s 0 -d 9 -p ack -e 40 -c 0 -i 4358 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.48238 -s 10 -d 7 -p ack -e 40 -c 0 -i 4362 -a 0 -x {10.0 9.0 2176 ------- null} + -t 2.48238 -s 7 -d 0 -p ack -e 40 -c 0 -i 4362 -a 0 -x {10.0 9.0 2176 ------- null} h -t 2.48238 -s 7 -d 8 -p ack -e 40 -c 0 -i 4362 -a 0 -x {10.0 9.0 2176 ------- null} r -t 2.48245 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4361 -a 0 -x {9.0 10.0 2185 ------- null} + -t 2.48245 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4361 -a 0 -x {9.0 10.0 2185 ------- null} h -t 2.48245 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4361 -a 0 -x {9.0 10.0 2185 ------- null} r -t 2.48253 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4347 -a 0 -x {9.0 10.0 2178 ------- null} + -t 2.48253 -s 10 -d 7 -p ack -e 40 -c 0 -i 4366 -a 0 -x {10.0 9.0 2178 ------- null} - -t 2.48253 -s 10 -d 7 -p ack -e 40 -c 0 -i 4366 -a 0 -x {10.0 9.0 2178 ------- null} h -t 2.48253 -s 10 -d 7 -p ack -e 40 -c 0 -i 4366 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.48309 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4353 -a 0 -x {9.0 10.0 2181 ------- null} - -t 2.48309 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4353 -a 0 -x {9.0 10.0 2181 ------- null} h -t 2.48309 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4353 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.48314 -s 0 -d 9 -p ack -e 40 -c 0 -i 4356 -a 0 -x {10.0 9.0 2173 ------- null} + -t 2.48314 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4367 -a 0 -x {9.0 10.0 2188 ------- null} - -t 2.48314 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4367 -a 0 -x {9.0 10.0 2188 ------- null} h -t 2.48314 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4367 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.48328 -s 0 -d 9 -p ack -e 40 -c 0 -i 4360 -a 0 -x {10.0 9.0 2175 ------- null} - -t 2.48328 -s 0 -d 9 -p ack -e 40 -c 0 -i 4360 -a 0 -x {10.0 9.0 2175 ------- null} h -t 2.48328 -s 0 -d 9 -p ack -e 40 -c 0 -i 4360 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.48347 -s 10 -d 7 -p ack -e 40 -c 0 -i 4364 -a 0 -x {10.0 9.0 2177 ------- null} + -t 2.48347 -s 7 -d 0 -p ack -e 40 -c 0 -i 4364 -a 0 -x {10.0 9.0 2177 ------- null} h -t 2.48347 -s 7 -d 8 -p ack -e 40 -c 0 -i 4364 -a 0 -x {10.0 9.0 2177 ------- null} r -t 2.48357 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4363 -a 0 -x {9.0 10.0 2186 ------- null} + -t 2.48357 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4363 -a 0 -x {9.0 10.0 2186 ------- null} h -t 2.48357 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4363 -a 0 -x {9.0 10.0 2186 ------- null} r -t 2.48362 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4349 -a 0 -x {9.0 10.0 2179 ------- null} + -t 2.48362 -s 10 -d 7 -p ack -e 40 -c 0 -i 4368 -a 0 -x {10.0 9.0 2179 ------- null} - -t 2.48362 -s 10 -d 7 -p ack -e 40 -c 0 -i 4368 -a 0 -x {10.0 9.0 2179 ------- null} h -t 2.48362 -s 10 -d 7 -p ack -e 40 -c 0 -i 4368 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.48411 -s 0 -d 9 -p ack -e 40 -c 0 -i 4358 -a 0 -x {10.0 9.0 2174 ------- null} + -t 2.48411 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4369 -a 0 -x {9.0 10.0 2189 ------- null} - -t 2.48411 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4369 -a 0 -x {9.0 10.0 2189 ------- null} h -t 2.48411 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4369 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.48418 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4355 -a 0 -x {9.0 10.0 2182 ------- null} - -t 2.48418 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4355 -a 0 -x {9.0 10.0 2182 ------- null} h -t 2.48418 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4355 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.48445 -s 0 -d 9 -p ack -e 40 -c 0 -i 4362 -a 0 -x {10.0 9.0 2176 ------- null} - -t 2.48445 -s 0 -d 9 -p ack -e 40 -c 0 -i 4362 -a 0 -x {10.0 9.0 2176 ------- null} h -t 2.48445 -s 0 -d 9 -p ack -e 40 -c 0 -i 4362 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.48456 -s 10 -d 7 -p ack -e 40 -c 0 -i 4366 -a 0 -x {10.0 9.0 2178 ------- null} + -t 2.48456 -s 7 -d 0 -p ack -e 40 -c 0 -i 4366 -a 0 -x {10.0 9.0 2178 ------- null} h -t 2.48456 -s 7 -d 8 -p ack -e 40 -c 0 -i 4366 -a 0 -x {10.0 9.0 2178 ------- null} r -t 2.48477 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4365 -a 0 -x {9.0 10.0 2187 ------- null} + -t 2.48477 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4365 -a 0 -x {9.0 10.0 2187 ------- null} h -t 2.48477 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4365 -a 0 -x {9.0 10.0 2187 ------- null} r -t 2.4848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4351 -a 0 -x {9.0 10.0 2180 ------- null} + -t 2.4848 -s 10 -d 7 -p ack -e 40 -c 0 -i 4370 -a 0 -x {10.0 9.0 2180 ------- null} - -t 2.4848 -s 10 -d 7 -p ack -e 40 -c 0 -i 4370 -a 0 -x {10.0 9.0 2180 ------- null} h -t 2.4848 -s 10 -d 7 -p ack -e 40 -c 0 -i 4370 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.48531 -s 0 -d 9 -p ack -e 40 -c 0 -i 4360 -a 0 -x {10.0 9.0 2175 ------- null} + -t 2.48531 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4371 -a 0 -x {9.0 10.0 2190 ------- null} - -t 2.48531 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4371 -a 0 -x {9.0 10.0 2190 ------- null} h -t 2.48531 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4371 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.48549 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4357 -a 0 -x {9.0 10.0 2183 ------- null} - -t 2.48549 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4357 -a 0 -x {9.0 10.0 2183 ------- null} h -t 2.48549 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4357 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.48557 -s 0 -d 9 -p ack -e 40 -c 0 -i 4364 -a 0 -x {10.0 9.0 2177 ------- null} - -t 2.48557 -s 0 -d 9 -p ack -e 40 -c 0 -i 4364 -a 0 -x {10.0 9.0 2177 ------- null} h -t 2.48557 -s 0 -d 9 -p ack -e 40 -c 0 -i 4364 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.48565 -s 10 -d 7 -p ack -e 40 -c 0 -i 4368 -a 0 -x {10.0 9.0 2179 ------- null} + -t 2.48565 -s 7 -d 0 -p ack -e 40 -c 0 -i 4368 -a 0 -x {10.0 9.0 2179 ------- null} h -t 2.48565 -s 7 -d 8 -p ack -e 40 -c 0 -i 4368 -a 0 -x {10.0 9.0 2179 ------- null} r -t 2.48589 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4353 -a 0 -x {9.0 10.0 2181 ------- null} + -t 2.48589 -s 10 -d 7 -p ack -e 40 -c 0 -i 4372 -a 0 -x {10.0 9.0 2181 ------- null} - -t 2.48589 -s 10 -d 7 -p ack -e 40 -c 0 -i 4372 -a 0 -x {10.0 9.0 2181 ------- null} h -t 2.48589 -s 10 -d 7 -p ack -e 40 -c 0 -i 4372 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.48594 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4367 -a 0 -x {9.0 10.0 2188 ------- null} + -t 2.48594 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4367 -a 0 -x {9.0 10.0 2188 ------- null} h -t 2.48594 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4367 -a 0 -x {9.0 10.0 2188 ------- null} r -t 2.48648 -s 0 -d 9 -p ack -e 40 -c 0 -i 4362 -a 0 -x {10.0 9.0 2176 ------- null} + -t 2.48648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4373 -a 0 -x {9.0 10.0 2191 ------- null} - -t 2.48648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4373 -a 0 -x {9.0 10.0 2191 ------- null} h -t 2.48648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4373 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.48658 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4359 -a 0 -x {9.0 10.0 2184 ------- null} - -t 2.48658 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4359 -a 0 -x {9.0 10.0 2184 ------- null} h -t 2.48658 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4359 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.48683 -s 10 -d 7 -p ack -e 40 -c 0 -i 4370 -a 0 -x {10.0 9.0 2180 ------- null} + -t 2.48683 -s 7 -d 0 -p ack -e 40 -c 0 -i 4370 -a 0 -x {10.0 9.0 2180 ------- null} h -t 2.48683 -s 7 -d 8 -p ack -e 40 -c 0 -i 4370 -a 0 -x {10.0 9.0 2180 ------- null} + -t 2.48688 -s 0 -d 9 -p ack -e 40 -c 0 -i 4366 -a 0 -x {10.0 9.0 2178 ------- null} - -t 2.48688 -s 0 -d 9 -p ack -e 40 -c 0 -i 4366 -a 0 -x {10.0 9.0 2178 ------- null} h -t 2.48688 -s 0 -d 9 -p ack -e 40 -c 0 -i 4366 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.48691 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4369 -a 0 -x {9.0 10.0 2189 ------- null} + -t 2.48691 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4369 -a 0 -x {9.0 10.0 2189 ------- null} h -t 2.48691 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4369 -a 0 -x {9.0 10.0 2189 ------- null} r -t 2.48698 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4355 -a 0 -x {9.0 10.0 2182 ------- null} + -t 2.48698 -s 10 -d 7 -p ack -e 40 -c 0 -i 4374 -a 0 -x {10.0 9.0 2182 ------- null} - -t 2.48698 -s 10 -d 7 -p ack -e 40 -c 0 -i 4374 -a 0 -x {10.0 9.0 2182 ------- null} h -t 2.48698 -s 10 -d 7 -p ack -e 40 -c 0 -i 4374 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.4876 -s 0 -d 9 -p ack -e 40 -c 0 -i 4364 -a 0 -x {10.0 9.0 2177 ------- null} + -t 2.4876 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4375 -a 0 -x {9.0 10.0 2192 ------- null} - -t 2.4876 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4375 -a 0 -x {9.0 10.0 2192 ------- null} h -t 2.4876 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4375 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.48782 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4361 -a 0 -x {9.0 10.0 2185 ------- null} - -t 2.48782 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4361 -a 0 -x {9.0 10.0 2185 ------- null} h -t 2.48782 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4361 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.48792 -s 10 -d 7 -p ack -e 40 -c 0 -i 4372 -a 0 -x {10.0 9.0 2181 ------- null} + -t 2.48792 -s 7 -d 0 -p ack -e 40 -c 0 -i 4372 -a 0 -x {10.0 9.0 2181 ------- null} h -t 2.48792 -s 7 -d 8 -p ack -e 40 -c 0 -i 4372 -a 0 -x {10.0 9.0 2181 ------- null} + -t 2.48798 -s 0 -d 9 -p ack -e 40 -c 0 -i 4368 -a 0 -x {10.0 9.0 2179 ------- null} - -t 2.48798 -s 0 -d 9 -p ack -e 40 -c 0 -i 4368 -a 0 -x {10.0 9.0 2179 ------- null} h -t 2.48798 -s 0 -d 9 -p ack -e 40 -c 0 -i 4368 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.48811 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4371 -a 0 -x {9.0 10.0 2190 ------- null} + -t 2.48811 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4371 -a 0 -x {9.0 10.0 2190 ------- null} h -t 2.48811 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4371 -a 0 -x {9.0 10.0 2190 ------- null} r -t 2.48829 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4357 -a 0 -x {9.0 10.0 2183 ------- null} + -t 2.48829 -s 10 -d 7 -p ack -e 40 -c 0 -i 4376 -a 0 -x {10.0 9.0 2183 ------- null} - -t 2.48829 -s 10 -d 7 -p ack -e 40 -c 0 -i 4376 -a 0 -x {10.0 9.0 2183 ------- null} h -t 2.48829 -s 10 -d 7 -p ack -e 40 -c 0 -i 4376 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.48891 -s 0 -d 9 -p ack -e 40 -c 0 -i 4366 -a 0 -x {10.0 9.0 2178 ------- null} + -t 2.48891 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4377 -a 0 -x {9.0 10.0 2193 ------- null} - -t 2.48891 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4377 -a 0 -x {9.0 10.0 2193 ------- null} h -t 2.48891 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4377 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.48891 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4363 -a 0 -x {9.0 10.0 2186 ------- null} - -t 2.48891 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4363 -a 0 -x {9.0 10.0 2186 ------- null} h -t 2.48891 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4363 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.48901 -s 10 -d 7 -p ack -e 40 -c 0 -i 4374 -a 0 -x {10.0 9.0 2182 ------- null} + -t 2.48901 -s 7 -d 0 -p ack -e 40 -c 0 -i 4374 -a 0 -x {10.0 9.0 2182 ------- null} h -t 2.48901 -s 7 -d 8 -p ack -e 40 -c 0 -i 4374 -a 0 -x {10.0 9.0 2182 ------- null} + -t 2.48909 -s 0 -d 9 -p ack -e 40 -c 0 -i 4370 -a 0 -x {10.0 9.0 2180 ------- null} - -t 2.48909 -s 0 -d 9 -p ack -e 40 -c 0 -i 4370 -a 0 -x {10.0 9.0 2180 ------- null} h -t 2.48909 -s 0 -d 9 -p ack -e 40 -c 0 -i 4370 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.48928 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4373 -a 0 -x {9.0 10.0 2191 ------- null} + -t 2.48928 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4373 -a 0 -x {9.0 10.0 2191 ------- null} h -t 2.48928 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4373 -a 0 -x {9.0 10.0 2191 ------- null} r -t 2.48938 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4359 -a 0 -x {9.0 10.0 2184 ------- null} + -t 2.48938 -s 10 -d 7 -p ack -e 40 -c 0 -i 4378 -a 0 -x {10.0 9.0 2184 ------- null} - -t 2.48938 -s 10 -d 7 -p ack -e 40 -c 0 -i 4378 -a 0 -x {10.0 9.0 2184 ------- null} h -t 2.48938 -s 10 -d 7 -p ack -e 40 -c 0 -i 4378 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.49 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4365 -a 0 -x {9.0 10.0 2187 ------- null} - -t 2.49 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4365 -a 0 -x {9.0 10.0 2187 ------- null} h -t 2.49 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4365 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.49002 -s 0 -d 9 -p ack -e 40 -c 0 -i 4368 -a 0 -x {10.0 9.0 2179 ------- null} + -t 2.49002 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4379 -a 0 -x {9.0 10.0 2194 ------- null} - -t 2.49002 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4379 -a 0 -x {9.0 10.0 2194 ------- null} h -t 2.49002 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4379 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.49018 -s 0 -d 9 -p ack -e 40 -c 0 -i 4372 -a 0 -x {10.0 9.0 2181 ------- null} - -t 2.49018 -s 0 -d 9 -p ack -e 40 -c 0 -i 4372 -a 0 -x {10.0 9.0 2181 ------- null} h -t 2.49018 -s 0 -d 9 -p ack -e 40 -c 0 -i 4372 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.49032 -s 10 -d 7 -p ack -e 40 -c 0 -i 4376 -a 0 -x {10.0 9.0 2183 ------- null} + -t 2.49032 -s 7 -d 0 -p ack -e 40 -c 0 -i 4376 -a 0 -x {10.0 9.0 2183 ------- null} h -t 2.49032 -s 7 -d 8 -p ack -e 40 -c 0 -i 4376 -a 0 -x {10.0 9.0 2183 ------- null} r -t 2.4904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4375 -a 0 -x {9.0 10.0 2192 ------- null} + -t 2.4904 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4375 -a 0 -x {9.0 10.0 2192 ------- null} h -t 2.4904 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4375 -a 0 -x {9.0 10.0 2192 ------- null} r -t 2.49062 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4361 -a 0 -x {9.0 10.0 2185 ------- null} + -t 2.49062 -s 10 -d 7 -p ack -e 40 -c 0 -i 4380 -a 0 -x {10.0 9.0 2185 ------- null} - -t 2.49062 -s 10 -d 7 -p ack -e 40 -c 0 -i 4380 -a 0 -x {10.0 9.0 2185 ------- null} h -t 2.49062 -s 10 -d 7 -p ack -e 40 -c 0 -i 4380 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.49109 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4367 -a 0 -x {9.0 10.0 2188 ------- null} - -t 2.49109 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4367 -a 0 -x {9.0 10.0 2188 ------- null} h -t 2.49109 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4367 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.49112 -s 0 -d 9 -p ack -e 40 -c 0 -i 4370 -a 0 -x {10.0 9.0 2180 ------- null} + -t 2.49112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4381 -a 0 -x {9.0 10.0 2195 ------- null} - -t 2.49112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4381 -a 0 -x {9.0 10.0 2195 ------- null} h -t 2.49112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4381 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.4912 -s 0 -d 9 -p ack -e 40 -c 0 -i 4374 -a 0 -x {10.0 9.0 2182 ------- null} - -t 2.4912 -s 0 -d 9 -p ack -e 40 -c 0 -i 4374 -a 0 -x {10.0 9.0 2182 ------- null} h -t 2.4912 -s 0 -d 9 -p ack -e 40 -c 0 -i 4374 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.49141 -s 10 -d 7 -p ack -e 40 -c 0 -i 4378 -a 0 -x {10.0 9.0 2184 ------- null} + -t 2.49141 -s 7 -d 0 -p ack -e 40 -c 0 -i 4378 -a 0 -x {10.0 9.0 2184 ------- null} h -t 2.49141 -s 7 -d 8 -p ack -e 40 -c 0 -i 4378 -a 0 -x {10.0 9.0 2184 ------- null} r -t 2.49171 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4377 -a 0 -x {9.0 10.0 2193 ------- null} + -t 2.49171 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4377 -a 0 -x {9.0 10.0 2193 ------- null} h -t 2.49171 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4377 -a 0 -x {9.0 10.0 2193 ------- null} r -t 2.49171 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4363 -a 0 -x {9.0 10.0 2186 ------- null} + -t 2.49171 -s 10 -d 7 -p ack -e 40 -c 0 -i 4382 -a 0 -x {10.0 9.0 2186 ------- null} - -t 2.49171 -s 10 -d 7 -p ack -e 40 -c 0 -i 4382 -a 0 -x {10.0 9.0 2186 ------- null} h -t 2.49171 -s 10 -d 7 -p ack -e 40 -c 0 -i 4382 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.49218 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4369 -a 0 -x {9.0 10.0 2189 ------- null} - -t 2.49218 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4369 -a 0 -x {9.0 10.0 2189 ------- null} h -t 2.49218 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4369 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.49221 -s 0 -d 9 -p ack -e 40 -c 0 -i 4372 -a 0 -x {10.0 9.0 2181 ------- null} + -t 2.49221 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4383 -a 0 -x {9.0 10.0 2196 ------- null} - -t 2.49221 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4383 -a 0 -x {9.0 10.0 2196 ------- null} h -t 2.49221 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4383 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.49226 -s 0 -d 9 -p ack -e 40 -c 0 -i 4376 -a 0 -x {10.0 9.0 2183 ------- null} - -t 2.49226 -s 0 -d 9 -p ack -e 40 -c 0 -i 4376 -a 0 -x {10.0 9.0 2183 ------- null} h -t 2.49226 -s 0 -d 9 -p ack -e 40 -c 0 -i 4376 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.49266 -s 10 -d 7 -p ack -e 40 -c 0 -i 4380 -a 0 -x {10.0 9.0 2185 ------- null} + -t 2.49266 -s 7 -d 0 -p ack -e 40 -c 0 -i 4380 -a 0 -x {10.0 9.0 2185 ------- null} h -t 2.49266 -s 7 -d 8 -p ack -e 40 -c 0 -i 4380 -a 0 -x {10.0 9.0 2185 ------- null} r -t 2.4928 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4365 -a 0 -x {9.0 10.0 2187 ------- null} + -t 2.4928 -s 10 -d 7 -p ack -e 40 -c 0 -i 4384 -a 0 -x {10.0 9.0 2187 ------- null} - -t 2.4928 -s 10 -d 7 -p ack -e 40 -c 0 -i 4384 -a 0 -x {10.0 9.0 2187 ------- null} h -t 2.4928 -s 10 -d 7 -p ack -e 40 -c 0 -i 4384 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.49282 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4379 -a 0 -x {9.0 10.0 2194 ------- null} + -t 2.49282 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4379 -a 0 -x {9.0 10.0 2194 ------- null} h -t 2.49282 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4379 -a 0 -x {9.0 10.0 2194 ------- null} r -t 2.49323 -s 0 -d 9 -p ack -e 40 -c 0 -i 4374 -a 0 -x {10.0 9.0 2182 ------- null} + -t 2.49323 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4385 -a 0 -x {9.0 10.0 2197 ------- null} - -t 2.49323 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4385 -a 0 -x {9.0 10.0 2197 ------- null} h -t 2.49323 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4385 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.49326 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4371 -a 0 -x {9.0 10.0 2190 ------- null} - -t 2.49326 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4371 -a 0 -x {9.0 10.0 2190 ------- null} h -t 2.49326 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4371 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.49347 -s 0 -d 9 -p ack -e 40 -c 0 -i 4378 -a 0 -x {10.0 9.0 2184 ------- null} - -t 2.49347 -s 0 -d 9 -p ack -e 40 -c 0 -i 4378 -a 0 -x {10.0 9.0 2184 ------- null} h -t 2.49347 -s 0 -d 9 -p ack -e 40 -c 0 -i 4378 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.49374 -s 10 -d 7 -p ack -e 40 -c 0 -i 4382 -a 0 -x {10.0 9.0 2186 ------- null} + -t 2.49374 -s 7 -d 0 -p ack -e 40 -c 0 -i 4382 -a 0 -x {10.0 9.0 2186 ------- null} h -t 2.49374 -s 7 -d 8 -p ack -e 40 -c 0 -i 4382 -a 0 -x {10.0 9.0 2186 ------- null} r -t 2.49389 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4367 -a 0 -x {9.0 10.0 2188 ------- null} + -t 2.49389 -s 10 -d 7 -p ack -e 40 -c 0 -i 4386 -a 0 -x {10.0 9.0 2188 ------- null} - -t 2.49389 -s 10 -d 7 -p ack -e 40 -c 0 -i 4386 -a 0 -x {10.0 9.0 2188 ------- null} h -t 2.49389 -s 10 -d 7 -p ack -e 40 -c 0 -i 4386 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.49392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4381 -a 0 -x {9.0 10.0 2195 ------- null} + -t 2.49392 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4381 -a 0 -x {9.0 10.0 2195 ------- null} h -t 2.49392 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4381 -a 0 -x {9.0 10.0 2195 ------- null} r -t 2.49429 -s 0 -d 9 -p ack -e 40 -c 0 -i 4376 -a 0 -x {10.0 9.0 2183 ------- null} + -t 2.49429 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4387 -a 0 -x {9.0 10.0 2198 ------- null} - -t 2.49429 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4387 -a 0 -x {9.0 10.0 2198 ------- null} h -t 2.49429 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4387 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.49435 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4373 -a 0 -x {9.0 10.0 2191 ------- null} - -t 2.49435 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4373 -a 0 -x {9.0 10.0 2191 ------- null} h -t 2.49435 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4373 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.4945 -s 0 -d 9 -p ack -e 40 -c 0 -i 4380 -a 0 -x {10.0 9.0 2185 ------- null} - -t 2.4945 -s 0 -d 9 -p ack -e 40 -c 0 -i 4380 -a 0 -x {10.0 9.0 2185 ------- null} h -t 2.4945 -s 0 -d 9 -p ack -e 40 -c 0 -i 4380 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.49483 -s 10 -d 7 -p ack -e 40 -c 0 -i 4384 -a 0 -x {10.0 9.0 2187 ------- null} + -t 2.49483 -s 7 -d 0 -p ack -e 40 -c 0 -i 4384 -a 0 -x {10.0 9.0 2187 ------- null} h -t 2.49483 -s 7 -d 8 -p ack -e 40 -c 0 -i 4384 -a 0 -x {10.0 9.0 2187 ------- null} r -t 2.49498 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4369 -a 0 -x {9.0 10.0 2189 ------- null} + -t 2.49498 -s 10 -d 7 -p ack -e 40 -c 0 -i 4388 -a 0 -x {10.0 9.0 2189 ------- null} - -t 2.49498 -s 10 -d 7 -p ack -e 40 -c 0 -i 4388 -a 0 -x {10.0 9.0 2189 ------- null} h -t 2.49498 -s 10 -d 7 -p ack -e 40 -c 0 -i 4388 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.49501 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4383 -a 0 -x {9.0 10.0 2196 ------- null} + -t 2.49501 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4383 -a 0 -x {9.0 10.0 2196 ------- null} h -t 2.49501 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4383 -a 0 -x {9.0 10.0 2196 ------- null} + -t 2.49544 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4375 -a 0 -x {9.0 10.0 2192 ------- null} - -t 2.49544 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4375 -a 0 -x {9.0 10.0 2192 ------- null} h -t 2.49544 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4375 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.4955 -s 0 -d 9 -p ack -e 40 -c 0 -i 4378 -a 0 -x {10.0 9.0 2184 ------- null} + -t 2.4955 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4389 -a 0 -x {9.0 10.0 2199 ------- null} - -t 2.4955 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4389 -a 0 -x {9.0 10.0 2199 ------- null} h -t 2.4955 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4389 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.49562 -s 0 -d 9 -p ack -e 40 -c 0 -i 4382 -a 0 -x {10.0 9.0 2186 ------- null} - -t 2.49562 -s 0 -d 9 -p ack -e 40 -c 0 -i 4382 -a 0 -x {10.0 9.0 2186 ------- null} h -t 2.49562 -s 0 -d 9 -p ack -e 40 -c 0 -i 4382 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.49592 -s 10 -d 7 -p ack -e 40 -c 0 -i 4386 -a 0 -x {10.0 9.0 2188 ------- null} + -t 2.49592 -s 7 -d 0 -p ack -e 40 -c 0 -i 4386 -a 0 -x {10.0 9.0 2188 ------- null} h -t 2.49592 -s 7 -d 8 -p ack -e 40 -c 0 -i 4386 -a 0 -x {10.0 9.0 2188 ------- null} r -t 2.49603 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4385 -a 0 -x {9.0 10.0 2197 ------- null} + -t 2.49603 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4385 -a 0 -x {9.0 10.0 2197 ------- null} h -t 2.49603 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4385 -a 0 -x {9.0 10.0 2197 ------- null} r -t 2.49606 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4371 -a 0 -x {9.0 10.0 2190 ------- null} + -t 2.49606 -s 10 -d 7 -p ack -e 40 -c 0 -i 4390 -a 0 -x {10.0 9.0 2190 ------- null} - -t 2.49606 -s 10 -d 7 -p ack -e 40 -c 0 -i 4390 -a 0 -x {10.0 9.0 2190 ------- null} h -t 2.49606 -s 10 -d 7 -p ack -e 40 -c 0 -i 4390 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.49653 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4377 -a 0 -x {9.0 10.0 2193 ------- null} - -t 2.49653 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4377 -a 0 -x {9.0 10.0 2193 ------- null} h -t 2.49653 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4377 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.49653 -s 0 -d 9 -p ack -e 40 -c 0 -i 4380 -a 0 -x {10.0 9.0 2185 ------- null} + -t 2.49653 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4391 -a 0 -x {9.0 10.0 2200 ------- null} - -t 2.49653 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4391 -a 0 -x {9.0 10.0 2200 ------- null} h -t 2.49653 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4391 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.49675 -s 0 -d 9 -p ack -e 40 -c 0 -i 4384 -a 0 -x {10.0 9.0 2187 ------- null} - -t 2.49675 -s 0 -d 9 -p ack -e 40 -c 0 -i 4384 -a 0 -x {10.0 9.0 2187 ------- null} h -t 2.49675 -s 0 -d 9 -p ack -e 40 -c 0 -i 4384 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.49701 -s 10 -d 7 -p ack -e 40 -c 0 -i 4388 -a 0 -x {10.0 9.0 2189 ------- null} + -t 2.49701 -s 7 -d 0 -p ack -e 40 -c 0 -i 4388 -a 0 -x {10.0 9.0 2189 ------- null} h -t 2.49701 -s 7 -d 8 -p ack -e 40 -c 0 -i 4388 -a 0 -x {10.0 9.0 2189 ------- null} r -t 2.49709 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4387 -a 0 -x {9.0 10.0 2198 ------- null} + -t 2.49709 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4387 -a 0 -x {9.0 10.0 2198 ------- null} h -t 2.49709 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4387 -a 0 -x {9.0 10.0 2198 ------- null} r -t 2.49715 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4373 -a 0 -x {9.0 10.0 2191 ------- null} + -t 2.49715 -s 10 -d 7 -p ack -e 40 -c 0 -i 4392 -a 0 -x {10.0 9.0 2191 ------- null} - -t 2.49715 -s 10 -d 7 -p ack -e 40 -c 0 -i 4392 -a 0 -x {10.0 9.0 2191 ------- null} h -t 2.49715 -s 10 -d 7 -p ack -e 40 -c 0 -i 4392 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.49762 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4379 -a 0 -x {9.0 10.0 2194 ------- null} - -t 2.49762 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4379 -a 0 -x {9.0 10.0 2194 ------- null} h -t 2.49762 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4379 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.49765 -s 0 -d 9 -p ack -e 40 -c 0 -i 4382 -a 0 -x {10.0 9.0 2186 ------- null} + -t 2.49765 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4393 -a 0 -x {9.0 10.0 2201 ------- null} - -t 2.49765 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4393 -a 0 -x {9.0 10.0 2201 ------- null} h -t 2.49765 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4393 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.49771 -s 0 -d 9 -p ack -e 40 -c 0 -i 4386 -a 0 -x {10.0 9.0 2188 ------- null} - -t 2.49771 -s 0 -d 9 -p ack -e 40 -c 0 -i 4386 -a 0 -x {10.0 9.0 2188 ------- null} h -t 2.49771 -s 0 -d 9 -p ack -e 40 -c 0 -i 4386 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.4981 -s 10 -d 7 -p ack -e 40 -c 0 -i 4390 -a 0 -x {10.0 9.0 2190 ------- null} + -t 2.4981 -s 7 -d 0 -p ack -e 40 -c 0 -i 4390 -a 0 -x {10.0 9.0 2190 ------- null} h -t 2.4981 -s 7 -d 8 -p ack -e 40 -c 0 -i 4390 -a 0 -x {10.0 9.0 2190 ------- null} r -t 2.49824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4375 -a 0 -x {9.0 10.0 2192 ------- null} + -t 2.49824 -s 10 -d 7 -p ack -e 40 -c 0 -i 4394 -a 0 -x {10.0 9.0 2192 ------- null} - -t 2.49824 -s 10 -d 7 -p ack -e 40 -c 0 -i 4394 -a 0 -x {10.0 9.0 2192 ------- null} h -t 2.49824 -s 10 -d 7 -p ack -e 40 -c 0 -i 4394 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.4983 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4389 -a 0 -x {9.0 10.0 2199 ------- null} + -t 2.4983 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4389 -a 0 -x {9.0 10.0 2199 ------- null} h -t 2.4983 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4389 -a 0 -x {9.0 10.0 2199 ------- null} + -t 2.4987 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4381 -a 0 -x {9.0 10.0 2195 ------- null} - -t 2.4987 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4381 -a 0 -x {9.0 10.0 2195 ------- null} h -t 2.4987 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4381 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.49878 -s 0 -d 9 -p ack -e 40 -c 0 -i 4384 -a 0 -x {10.0 9.0 2187 ------- null} + -t 2.49878 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4395 -a 0 -x {9.0 10.0 2202 ------- null} - -t 2.49878 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4395 -a 0 -x {9.0 10.0 2202 ------- null} h -t 2.49878 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4395 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.49885 -s 0 -d 9 -p ack -e 40 -c 0 -i 4388 -a 0 -x {10.0 9.0 2189 ------- null} - -t 2.49885 -s 0 -d 9 -p ack -e 40 -c 0 -i 4388 -a 0 -x {10.0 9.0 2189 ------- null} h -t 2.49885 -s 0 -d 9 -p ack -e 40 -c 0 -i 4388 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.49918 -s 10 -d 7 -p ack -e 40 -c 0 -i 4392 -a 0 -x {10.0 9.0 2191 ------- null} + -t 2.49918 -s 7 -d 0 -p ack -e 40 -c 0 -i 4392 -a 0 -x {10.0 9.0 2191 ------- null} h -t 2.49918 -s 7 -d 8 -p ack -e 40 -c 0 -i 4392 -a 0 -x {10.0 9.0 2191 ------- null} r -t 2.49933 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4377 -a 0 -x {9.0 10.0 2193 ------- null} + -t 2.49933 -s 10 -d 7 -p ack -e 40 -c 0 -i 4396 -a 0 -x {10.0 9.0 2193 ------- null} - -t 2.49933 -s 10 -d 7 -p ack -e 40 -c 0 -i 4396 -a 0 -x {10.0 9.0 2193 ------- null} h -t 2.49933 -s 10 -d 7 -p ack -e 40 -c 0 -i 4396 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.49933 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4391 -a 0 -x {9.0 10.0 2200 ------- null} + -t 2.49933 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4391 -a 0 -x {9.0 10.0 2200 ------- null} h -t 2.49933 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4391 -a 0 -x {9.0 10.0 2200 ------- null} r -t 2.49974 -s 0 -d 9 -p ack -e 40 -c 0 -i 4386 -a 0 -x {10.0 9.0 2188 ------- null} + -t 2.49974 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4397 -a 0 -x {9.0 10.0 2203 ------- null} - -t 2.49974 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4397 -a 0 -x {9.0 10.0 2203 ------- null} h -t 2.49974 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4397 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.49979 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4383 -a 0 -x {9.0 10.0 2196 ------- null} - -t 2.49979 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4383 -a 0 -x {9.0 10.0 2196 ------- null} h -t 2.49979 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4383 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.5001 -s 0 -d 9 -p ack -e 40 -c 0 -i 4390 -a 0 -x {10.0 9.0 2190 ------- null} - -t 2.5001 -s 0 -d 9 -p ack -e 40 -c 0 -i 4390 -a 0 -x {10.0 9.0 2190 ------- null} h -t 2.5001 -s 0 -d 9 -p ack -e 40 -c 0 -i 4390 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.50027 -s 10 -d 7 -p ack -e 40 -c 0 -i 4394 -a 0 -x {10.0 9.0 2192 ------- null} + -t 2.50027 -s 7 -d 0 -p ack -e 40 -c 0 -i 4394 -a 0 -x {10.0 9.0 2192 ------- null} h -t 2.50027 -s 7 -d 8 -p ack -e 40 -c 0 -i 4394 -a 0 -x {10.0 9.0 2192 ------- null} r -t 2.50042 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4379 -a 0 -x {9.0 10.0 2194 ------- null} + -t 2.50042 -s 10 -d 7 -p ack -e 40 -c 0 -i 4398 -a 0 -x {10.0 9.0 2194 ------- null} - -t 2.50042 -s 10 -d 7 -p ack -e 40 -c 0 -i 4398 -a 0 -x {10.0 9.0 2194 ------- null} h -t 2.50042 -s 10 -d 7 -p ack -e 40 -c 0 -i 4398 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.50045 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4393 -a 0 -x {9.0 10.0 2201 ------- null} + -t 2.50045 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4393 -a 0 -x {9.0 10.0 2201 ------- null} h -t 2.50045 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4393 -a 0 -x {9.0 10.0 2201 ------- null} r -t 2.50088 -s 0 -d 9 -p ack -e 40 -c 0 -i 4388 -a 0 -x {10.0 9.0 2189 ------- null} + -t 2.50088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4399 -a 0 -x {9.0 10.0 2204 ------- null} - -t 2.50088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4399 -a 0 -x {9.0 10.0 2204 ------- null} h -t 2.50088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4399 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.50114 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4385 -a 0 -x {9.0 10.0 2197 ------- null} - -t 2.50114 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4385 -a 0 -x {9.0 10.0 2197 ------- null} h -t 2.50114 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4385 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.50136 -s 10 -d 7 -p ack -e 40 -c 0 -i 4396 -a 0 -x {10.0 9.0 2193 ------- null} + -t 2.50136 -s 7 -d 0 -p ack -e 40 -c 0 -i 4396 -a 0 -x {10.0 9.0 2193 ------- null} h -t 2.50136 -s 7 -d 8 -p ack -e 40 -c 0 -i 4396 -a 0 -x {10.0 9.0 2193 ------- null} + -t 2.50138 -s 0 -d 9 -p ack -e 40 -c 0 -i 4392 -a 0 -x {10.0 9.0 2191 ------- null} - -t 2.50138 -s 0 -d 9 -p ack -e 40 -c 0 -i 4392 -a 0 -x {10.0 9.0 2191 ------- null} h -t 2.50138 -s 0 -d 9 -p ack -e 40 -c 0 -i 4392 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.5015 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4381 -a 0 -x {9.0 10.0 2195 ------- null} + -t 2.5015 -s 10 -d 7 -p ack -e 40 -c 0 -i 4400 -a 0 -x {10.0 9.0 2195 ------- null} - -t 2.5015 -s 10 -d 7 -p ack -e 40 -c 0 -i 4400 -a 0 -x {10.0 9.0 2195 ------- null} h -t 2.5015 -s 10 -d 7 -p ack -e 40 -c 0 -i 4400 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.50158 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4395 -a 0 -x {9.0 10.0 2202 ------- null} + -t 2.50158 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4395 -a 0 -x {9.0 10.0 2202 ------- null} h -t 2.50158 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4395 -a 0 -x {9.0 10.0 2202 ------- null} r -t 2.50213 -s 0 -d 9 -p ack -e 40 -c 0 -i 4390 -a 0 -x {10.0 9.0 2190 ------- null} + -t 2.50213 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4401 -a 0 -x {9.0 10.0 2205 ------- null} - -t 2.50213 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4401 -a 0 -x {9.0 10.0 2205 ------- null} h -t 2.50213 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4401 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.50222 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4387 -a 0 -x {9.0 10.0 2198 ------- null} - -t 2.50222 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4387 -a 0 -x {9.0 10.0 2198 ------- null} h -t 2.50222 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4387 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.50243 -s 0 -d 9 -p ack -e 40 -c 0 -i 4394 -a 0 -x {10.0 9.0 2192 ------- null} - -t 2.50243 -s 0 -d 9 -p ack -e 40 -c 0 -i 4394 -a 0 -x {10.0 9.0 2192 ------- null} h -t 2.50243 -s 0 -d 9 -p ack -e 40 -c 0 -i 4394 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.50245 -s 10 -d 7 -p ack -e 40 -c 0 -i 4398 -a 0 -x {10.0 9.0 2194 ------- null} + -t 2.50245 -s 7 -d 0 -p ack -e 40 -c 0 -i 4398 -a 0 -x {10.0 9.0 2194 ------- null} h -t 2.50245 -s 7 -d 8 -p ack -e 40 -c 0 -i 4398 -a 0 -x {10.0 9.0 2194 ------- null} r -t 2.50254 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4397 -a 0 -x {9.0 10.0 2203 ------- null} + -t 2.50254 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4397 -a 0 -x {9.0 10.0 2203 ------- null} h -t 2.50254 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4397 -a 0 -x {9.0 10.0 2203 ------- null} r -t 2.50259 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4383 -a 0 -x {9.0 10.0 2196 ------- null} + -t 2.50259 -s 10 -d 7 -p ack -e 40 -c 0 -i 4402 -a 0 -x {10.0 9.0 2196 ------- null} - -t 2.50259 -s 10 -d 7 -p ack -e 40 -c 0 -i 4402 -a 0 -x {10.0 9.0 2196 ------- null} h -t 2.50259 -s 10 -d 7 -p ack -e 40 -c 0 -i 4402 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.50331 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4389 -a 0 -x {9.0 10.0 2199 ------- null} - -t 2.50331 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4389 -a 0 -x {9.0 10.0 2199 ------- null} h -t 2.50331 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4389 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.50338 -s 0 -d 9 -p ack -e 40 -c 0 -i 4396 -a 0 -x {10.0 9.0 2193 ------- null} - -t 2.50338 -s 0 -d 9 -p ack -e 40 -c 0 -i 4396 -a 0 -x {10.0 9.0 2193 ------- null} h -t 2.50338 -s 0 -d 9 -p ack -e 40 -c 0 -i 4396 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.50341 -s 0 -d 9 -p ack -e 40 -c 0 -i 4392 -a 0 -x {10.0 9.0 2191 ------- null} + -t 2.50341 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4403 -a 0 -x {9.0 10.0 2206 ------- null} - -t 2.50341 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4403 -a 0 -x {9.0 10.0 2206 ------- null} h -t 2.50341 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4403 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.50354 -s 10 -d 7 -p ack -e 40 -c 0 -i 4400 -a 0 -x {10.0 9.0 2195 ------- null} + -t 2.50354 -s 7 -d 0 -p ack -e 40 -c 0 -i 4400 -a 0 -x {10.0 9.0 2195 ------- null} h -t 2.50354 -s 7 -d 8 -p ack -e 40 -c 0 -i 4400 -a 0 -x {10.0 9.0 2195 ------- null} r -t 2.50368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4399 -a 0 -x {9.0 10.0 2204 ------- null} + -t 2.50368 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4399 -a 0 -x {9.0 10.0 2204 ------- null} h -t 2.50368 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4399 -a 0 -x {9.0 10.0 2204 ------- null} r -t 2.50394 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4385 -a 0 -x {9.0 10.0 2197 ------- null} + -t 2.50394 -s 10 -d 7 -p ack -e 40 -c 0 -i 4404 -a 0 -x {10.0 9.0 2197 ------- null} - -t 2.50394 -s 10 -d 7 -p ack -e 40 -c 0 -i 4404 -a 0 -x {10.0 9.0 2197 ------- null} h -t 2.50394 -s 10 -d 7 -p ack -e 40 -c 0 -i 4404 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.5044 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4391 -a 0 -x {9.0 10.0 2200 ------- null} - -t 2.5044 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4391 -a 0 -x {9.0 10.0 2200 ------- null} h -t 2.5044 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4391 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.50446 -s 0 -d 9 -p ack -e 40 -c 0 -i 4394 -a 0 -x {10.0 9.0 2192 ------- null} + -t 2.50446 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4405 -a 0 -x {9.0 10.0 2207 ------- null} - -t 2.50446 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4405 -a 0 -x {9.0 10.0 2207 ------- null} h -t 2.50446 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4405 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.50462 -s 10 -d 7 -p ack -e 40 -c 0 -i 4402 -a 0 -x {10.0 9.0 2196 ------- null} + -t 2.50462 -s 7 -d 0 -p ack -e 40 -c 0 -i 4402 -a 0 -x {10.0 9.0 2196 ------- null} h -t 2.50462 -s 7 -d 8 -p ack -e 40 -c 0 -i 4402 -a 0 -x {10.0 9.0 2196 ------- null} + -t 2.50464 -s 0 -d 9 -p ack -e 40 -c 0 -i 4398 -a 0 -x {10.0 9.0 2194 ------- null} - -t 2.50464 -s 0 -d 9 -p ack -e 40 -c 0 -i 4398 -a 0 -x {10.0 9.0 2194 ------- null} h -t 2.50464 -s 0 -d 9 -p ack -e 40 -c 0 -i 4398 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.50493 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4401 -a 0 -x {9.0 10.0 2205 ------- null} + -t 2.50493 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4401 -a 0 -x {9.0 10.0 2205 ------- null} h -t 2.50493 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4401 -a 0 -x {9.0 10.0 2205 ------- null} r -t 2.50502 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4387 -a 0 -x {9.0 10.0 2198 ------- null} + -t 2.50502 -s 10 -d 7 -p ack -e 40 -c 0 -i 4406 -a 0 -x {10.0 9.0 2198 ------- null} - -t 2.50502 -s 10 -d 7 -p ack -e 40 -c 0 -i 4406 -a 0 -x {10.0 9.0 2198 ------- null} h -t 2.50502 -s 10 -d 7 -p ack -e 40 -c 0 -i 4406 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.50541 -s 0 -d 9 -p ack -e 40 -c 0 -i 4396 -a 0 -x {10.0 9.0 2193 ------- null} + -t 2.50541 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4407 -a 0 -x {9.0 10.0 2208 ------- null} - -t 2.50541 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4407 -a 0 -x {9.0 10.0 2208 ------- null} h -t 2.50541 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4407 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.50549 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4393 -a 0 -x {9.0 10.0 2201 ------- null} - -t 2.50549 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4393 -a 0 -x {9.0 10.0 2201 ------- null} h -t 2.50549 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4393 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.50578 -s 0 -d 9 -p ack -e 40 -c 0 -i 4400 -a 0 -x {10.0 9.0 2195 ------- null} - -t 2.50578 -s 0 -d 9 -p ack -e 40 -c 0 -i 4400 -a 0 -x {10.0 9.0 2195 ------- null} h -t 2.50578 -s 0 -d 9 -p ack -e 40 -c 0 -i 4400 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.50597 -s 10 -d 7 -p ack -e 40 -c 0 -i 4404 -a 0 -x {10.0 9.0 2197 ------- null} + -t 2.50597 -s 7 -d 0 -p ack -e 40 -c 0 -i 4404 -a 0 -x {10.0 9.0 2197 ------- null} h -t 2.50597 -s 7 -d 8 -p ack -e 40 -c 0 -i 4404 -a 0 -x {10.0 9.0 2197 ------- null} r -t 2.50611 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4389 -a 0 -x {9.0 10.0 2199 ------- null} + -t 2.50611 -s 10 -d 7 -p ack -e 40 -c 0 -i 4408 -a 0 -x {10.0 9.0 2199 ------- null} - -t 2.50611 -s 10 -d 7 -p ack -e 40 -c 0 -i 4408 -a 0 -x {10.0 9.0 2199 ------- null} h -t 2.50611 -s 10 -d 7 -p ack -e 40 -c 0 -i 4408 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.50621 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4403 -a 0 -x {9.0 10.0 2206 ------- null} + -t 2.50621 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4403 -a 0 -x {9.0 10.0 2206 ------- null} h -t 2.50621 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4403 -a 0 -x {9.0 10.0 2206 ------- null} + -t 2.50661 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4395 -a 0 -x {9.0 10.0 2202 ------- null} - -t 2.50661 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4395 -a 0 -x {9.0 10.0 2202 ------- null} h -t 2.50661 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4395 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.50667 -s 0 -d 9 -p ack -e 40 -c 0 -i 4402 -a 0 -x {10.0 9.0 2196 ------- null} - -t 2.50667 -s 0 -d 9 -p ack -e 40 -c 0 -i 4402 -a 0 -x {10.0 9.0 2196 ------- null} h -t 2.50667 -s 0 -d 9 -p ack -e 40 -c 0 -i 4402 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.50667 -s 0 -d 9 -p ack -e 40 -c 0 -i 4398 -a 0 -x {10.0 9.0 2194 ------- null} + -t 2.50667 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4409 -a 0 -x {9.0 10.0 2209 ------- null} - -t 2.50667 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4409 -a 0 -x {9.0 10.0 2209 ------- null} h -t 2.50667 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4409 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.50706 -s 10 -d 7 -p ack -e 40 -c 0 -i 4406 -a 0 -x {10.0 9.0 2198 ------- null} + -t 2.50706 -s 7 -d 0 -p ack -e 40 -c 0 -i 4406 -a 0 -x {10.0 9.0 2198 ------- null} h -t 2.50706 -s 7 -d 8 -p ack -e 40 -c 0 -i 4406 -a 0 -x {10.0 9.0 2198 ------- null} r -t 2.5072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4391 -a 0 -x {9.0 10.0 2200 ------- null} + -t 2.5072 -s 10 -d 7 -p ack -e 40 -c 0 -i 4410 -a 0 -x {10.0 9.0 2200 ------- null} - -t 2.5072 -s 10 -d 7 -p ack -e 40 -c 0 -i 4410 -a 0 -x {10.0 9.0 2200 ------- null} h -t 2.5072 -s 10 -d 7 -p ack -e 40 -c 0 -i 4410 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.50726 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4405 -a 0 -x {9.0 10.0 2207 ------- null} + -t 2.50726 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4405 -a 0 -x {9.0 10.0 2207 ------- null} h -t 2.50726 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4405 -a 0 -x {9.0 10.0 2207 ------- null} + -t 2.5077 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4397 -a 0 -x {9.0 10.0 2203 ------- null} - -t 2.5077 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4397 -a 0 -x {9.0 10.0 2203 ------- null} h -t 2.5077 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4397 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.50776 -s 0 -d 9 -p ack -e 40 -c 0 -i 4404 -a 0 -x {10.0 9.0 2197 ------- null} - -t 2.50776 -s 0 -d 9 -p ack -e 40 -c 0 -i 4404 -a 0 -x {10.0 9.0 2197 ------- null} h -t 2.50776 -s 0 -d 9 -p ack -e 40 -c 0 -i 4404 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.50781 -s 0 -d 9 -p ack -e 40 -c 0 -i 4400 -a 0 -x {10.0 9.0 2195 ------- null} + -t 2.50781 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4411 -a 0 -x {9.0 10.0 2210 ------- null} - -t 2.50781 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4411 -a 0 -x {9.0 10.0 2210 ------- null} h -t 2.50781 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4411 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.50814 -s 10 -d 7 -p ack -e 40 -c 0 -i 4408 -a 0 -x {10.0 9.0 2199 ------- null} + -t 2.50814 -s 7 -d 0 -p ack -e 40 -c 0 -i 4408 -a 0 -x {10.0 9.0 2199 ------- null} h -t 2.50814 -s 7 -d 8 -p ack -e 40 -c 0 -i 4408 -a 0 -x {10.0 9.0 2199 ------- null} r -t 2.50821 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4407 -a 0 -x {9.0 10.0 2208 ------- null} + -t 2.50821 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4407 -a 0 -x {9.0 10.0 2208 ------- null} h -t 2.50821 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4407 -a 0 -x {9.0 10.0 2208 ------- null} r -t 2.50829 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4393 -a 0 -x {9.0 10.0 2201 ------- null} + -t 2.50829 -s 10 -d 7 -p ack -e 40 -c 0 -i 4412 -a 0 -x {10.0 9.0 2201 ------- null} - -t 2.50829 -s 10 -d 7 -p ack -e 40 -c 0 -i 4412 -a 0 -x {10.0 9.0 2201 ------- null} h -t 2.50829 -s 10 -d 7 -p ack -e 40 -c 0 -i 4412 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.5087 -s 0 -d 9 -p ack -e 40 -c 0 -i 4402 -a 0 -x {10.0 9.0 2196 ------- null} + -t 2.5087 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4413 -a 0 -x {9.0 10.0 2211 ------- null} - -t 2.5087 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4413 -a 0 -x {9.0 10.0 2211 ------- null} h -t 2.5087 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4413 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.50878 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4399 -a 0 -x {9.0 10.0 2204 ------- null} - -t 2.50878 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4399 -a 0 -x {9.0 10.0 2204 ------- null} h -t 2.50878 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4399 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.50888 -s 0 -d 9 -p ack -e 40 -c 0 -i 4406 -a 0 -x {10.0 9.0 2198 ------- null} - -t 2.50888 -s 0 -d 9 -p ack -e 40 -c 0 -i 4406 -a 0 -x {10.0 9.0 2198 ------- null} h -t 2.50888 -s 0 -d 9 -p ack -e 40 -c 0 -i 4406 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.50923 -s 10 -d 7 -p ack -e 40 -c 0 -i 4410 -a 0 -x {10.0 9.0 2200 ------- null} + -t 2.50923 -s 7 -d 0 -p ack -e 40 -c 0 -i 4410 -a 0 -x {10.0 9.0 2200 ------- null} h -t 2.50923 -s 7 -d 8 -p ack -e 40 -c 0 -i 4410 -a 0 -x {10.0 9.0 2200 ------- null} r -t 2.50941 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4395 -a 0 -x {9.0 10.0 2202 ------- null} + -t 2.50941 -s 10 -d 7 -p ack -e 40 -c 0 -i 4414 -a 0 -x {10.0 9.0 2202 ------- null} - -t 2.50941 -s 10 -d 7 -p ack -e 40 -c 0 -i 4414 -a 0 -x {10.0 9.0 2202 ------- null} h -t 2.50941 -s 10 -d 7 -p ack -e 40 -c 0 -i 4414 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.50947 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4409 -a 0 -x {9.0 10.0 2209 ------- null} + -t 2.50947 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4409 -a 0 -x {9.0 10.0 2209 ------- null} h -t 2.50947 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4409 -a 0 -x {9.0 10.0 2209 ------- null} r -t 2.50979 -s 0 -d 9 -p ack -e 40 -c 0 -i 4404 -a 0 -x {10.0 9.0 2197 ------- null} + -t 2.50979 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4415 -a 0 -x {9.0 10.0 2212 ------- null} - -t 2.50979 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4415 -a 0 -x {9.0 10.0 2212 ------- null} h -t 2.50979 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4415 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.50987 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4401 -a 0 -x {9.0 10.0 2205 ------- null} - -t 2.50987 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4401 -a 0 -x {9.0 10.0 2205 ------- null} h -t 2.50987 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4401 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.51005 -s 0 -d 9 -p ack -e 40 -c 0 -i 4408 -a 0 -x {10.0 9.0 2199 ------- null} - -t 2.51005 -s 0 -d 9 -p ack -e 40 -c 0 -i 4408 -a 0 -x {10.0 9.0 2199 ------- null} h -t 2.51005 -s 0 -d 9 -p ack -e 40 -c 0 -i 4408 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.51032 -s 10 -d 7 -p ack -e 40 -c 0 -i 4412 -a 0 -x {10.0 9.0 2201 ------- null} + -t 2.51032 -s 7 -d 0 -p ack -e 40 -c 0 -i 4412 -a 0 -x {10.0 9.0 2201 ------- null} h -t 2.51032 -s 7 -d 8 -p ack -e 40 -c 0 -i 4412 -a 0 -x {10.0 9.0 2201 ------- null} r -t 2.5105 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4397 -a 0 -x {9.0 10.0 2203 ------- null} + -t 2.5105 -s 10 -d 7 -p ack -e 40 -c 0 -i 4416 -a 0 -x {10.0 9.0 2203 ------- null} - -t 2.5105 -s 10 -d 7 -p ack -e 40 -c 0 -i 4416 -a 0 -x {10.0 9.0 2203 ------- null} h -t 2.5105 -s 10 -d 7 -p ack -e 40 -c 0 -i 4416 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.51061 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4411 -a 0 -x {9.0 10.0 2210 ------- null} + -t 2.51061 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4411 -a 0 -x {9.0 10.0 2210 ------- null} h -t 2.51061 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4411 -a 0 -x {9.0 10.0 2210 ------- null} r -t 2.51091 -s 0 -d 9 -p ack -e 40 -c 0 -i 4406 -a 0 -x {10.0 9.0 2198 ------- null} + -t 2.51091 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4417 -a 0 -x {9.0 10.0 2213 ------- null} - -t 2.51091 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4417 -a 0 -x {9.0 10.0 2213 ------- null} h -t 2.51091 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4417 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.51096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4403 -a 0 -x {9.0 10.0 2206 ------- null} - -t 2.51096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4403 -a 0 -x {9.0 10.0 2206 ------- null} h -t 2.51096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4403 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.51107 -s 0 -d 9 -p ack -e 40 -c 0 -i 4410 -a 0 -x {10.0 9.0 2200 ------- null} - -t 2.51107 -s 0 -d 9 -p ack -e 40 -c 0 -i 4410 -a 0 -x {10.0 9.0 2200 ------- null} h -t 2.51107 -s 0 -d 9 -p ack -e 40 -c 0 -i 4410 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.51144 -s 10 -d 7 -p ack -e 40 -c 0 -i 4414 -a 0 -x {10.0 9.0 2202 ------- null} + -t 2.51144 -s 7 -d 0 -p ack -e 40 -c 0 -i 4414 -a 0 -x {10.0 9.0 2202 ------- null} h -t 2.51144 -s 7 -d 8 -p ack -e 40 -c 0 -i 4414 -a 0 -x {10.0 9.0 2202 ------- null} r -t 2.5115 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4413 -a 0 -x {9.0 10.0 2211 ------- null} + -t 2.5115 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4413 -a 0 -x {9.0 10.0 2211 ------- null} h -t 2.5115 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4413 -a 0 -x {9.0 10.0 2211 ------- null} r -t 2.51158 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4399 -a 0 -x {9.0 10.0 2204 ------- null} + -t 2.51158 -s 10 -d 7 -p ack -e 40 -c 0 -i 4418 -a 0 -x {10.0 9.0 2204 ------- null} - -t 2.51158 -s 10 -d 7 -p ack -e 40 -c 0 -i 4418 -a 0 -x {10.0 9.0 2204 ------- null} h -t 2.51158 -s 10 -d 7 -p ack -e 40 -c 0 -i 4418 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.51205 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4405 -a 0 -x {9.0 10.0 2207 ------- null} - -t 2.51205 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4405 -a 0 -x {9.0 10.0 2207 ------- null} h -t 2.51205 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4405 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.51208 -s 0 -d 9 -p ack -e 40 -c 0 -i 4408 -a 0 -x {10.0 9.0 2199 ------- null} + -t 2.51208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4419 -a 0 -x {9.0 10.0 2214 ------- null} - -t 2.51208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4419 -a 0 -x {9.0 10.0 2214 ------- null} h -t 2.51208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4419 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.5123 -s 0 -d 9 -p ack -e 40 -c 0 -i 4412 -a 0 -x {10.0 9.0 2201 ------- null} - -t 2.5123 -s 0 -d 9 -p ack -e 40 -c 0 -i 4412 -a 0 -x {10.0 9.0 2201 ------- null} h -t 2.5123 -s 0 -d 9 -p ack -e 40 -c 0 -i 4412 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.51253 -s 10 -d 7 -p ack -e 40 -c 0 -i 4416 -a 0 -x {10.0 9.0 2203 ------- null} + -t 2.51253 -s 7 -d 0 -p ack -e 40 -c 0 -i 4416 -a 0 -x {10.0 9.0 2203 ------- null} h -t 2.51253 -s 7 -d 8 -p ack -e 40 -c 0 -i 4416 -a 0 -x {10.0 9.0 2203 ------- null} r -t 2.51259 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4415 -a 0 -x {9.0 10.0 2212 ------- null} + -t 2.51259 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4415 -a 0 -x {9.0 10.0 2212 ------- null} h -t 2.51259 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4415 -a 0 -x {9.0 10.0 2212 ------- null} r -t 2.51267 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4401 -a 0 -x {9.0 10.0 2205 ------- null} + -t 2.51267 -s 10 -d 7 -p ack -e 40 -c 0 -i 4420 -a 0 -x {10.0 9.0 2205 ------- null} - -t 2.51267 -s 10 -d 7 -p ack -e 40 -c 0 -i 4420 -a 0 -x {10.0 9.0 2205 ------- null} h -t 2.51267 -s 10 -d 7 -p ack -e 40 -c 0 -i 4420 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.5131 -s 0 -d 9 -p ack -e 40 -c 0 -i 4410 -a 0 -x {10.0 9.0 2200 ------- null} + -t 2.5131 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4421 -a 0 -x {9.0 10.0 2215 ------- null} - -t 2.5131 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4421 -a 0 -x {9.0 10.0 2215 ------- null} h -t 2.5131 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4421 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.51322 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4407 -a 0 -x {9.0 10.0 2208 ------- null} - -t 2.51322 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4407 -a 0 -x {9.0 10.0 2208 ------- null} h -t 2.51322 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4407 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.51347 -s 0 -d 9 -p ack -e 40 -c 0 -i 4414 -a 0 -x {10.0 9.0 2202 ------- null} - -t 2.51347 -s 0 -d 9 -p ack -e 40 -c 0 -i 4414 -a 0 -x {10.0 9.0 2202 ------- null} h -t 2.51347 -s 0 -d 9 -p ack -e 40 -c 0 -i 4414 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.51362 -s 10 -d 7 -p ack -e 40 -c 0 -i 4418 -a 0 -x {10.0 9.0 2204 ------- null} + -t 2.51362 -s 7 -d 0 -p ack -e 40 -c 0 -i 4418 -a 0 -x {10.0 9.0 2204 ------- null} h -t 2.51362 -s 7 -d 8 -p ack -e 40 -c 0 -i 4418 -a 0 -x {10.0 9.0 2204 ------- null} r -t 2.51371 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4417 -a 0 -x {9.0 10.0 2213 ------- null} + -t 2.51371 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4417 -a 0 -x {9.0 10.0 2213 ------- null} h -t 2.51371 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4417 -a 0 -x {9.0 10.0 2213 ------- null} r -t 2.51376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4403 -a 0 -x {9.0 10.0 2206 ------- null} + -t 2.51376 -s 10 -d 7 -p ack -e 40 -c 0 -i 4422 -a 0 -x {10.0 9.0 2206 ------- null} - -t 2.51376 -s 10 -d 7 -p ack -e 40 -c 0 -i 4422 -a 0 -x {10.0 9.0 2206 ------- null} h -t 2.51376 -s 10 -d 7 -p ack -e 40 -c 0 -i 4422 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.51434 -s 0 -d 9 -p ack -e 40 -c 0 -i 4412 -a 0 -x {10.0 9.0 2201 ------- null} + -t 2.51434 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4423 -a 0 -x {9.0 10.0 2216 ------- null} - -t 2.51434 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4423 -a 0 -x {9.0 10.0 2216 ------- null} h -t 2.51434 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4423 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.51445 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4409 -a 0 -x {9.0 10.0 2209 ------- null} - -t 2.51445 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4409 -a 0 -x {9.0 10.0 2209 ------- null} h -t 2.51445 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4409 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.5147 -s 10 -d 7 -p ack -e 40 -c 0 -i 4420 -a 0 -x {10.0 9.0 2205 ------- null} + -t 2.5147 -s 7 -d 0 -p ack -e 40 -c 0 -i 4420 -a 0 -x {10.0 9.0 2205 ------- null} h -t 2.5147 -s 7 -d 8 -p ack -e 40 -c 0 -i 4420 -a 0 -x {10.0 9.0 2205 ------- null} + -t 2.51474 -s 0 -d 9 -p ack -e 40 -c 0 -i 4416 -a 0 -x {10.0 9.0 2203 ------- null} - -t 2.51474 -s 0 -d 9 -p ack -e 40 -c 0 -i 4416 -a 0 -x {10.0 9.0 2203 ------- null} h -t 2.51474 -s 0 -d 9 -p ack -e 40 -c 0 -i 4416 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.51485 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4405 -a 0 -x {9.0 10.0 2207 ------- null} + -t 2.51485 -s 10 -d 7 -p ack -e 40 -c 0 -i 4424 -a 0 -x {10.0 9.0 2207 ------- null} - -t 2.51485 -s 10 -d 7 -p ack -e 40 -c 0 -i 4424 -a 0 -x {10.0 9.0 2207 ------- null} h -t 2.51485 -s 10 -d 7 -p ack -e 40 -c 0 -i 4424 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.51488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4419 -a 0 -x {9.0 10.0 2214 ------- null} + -t 2.51488 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4419 -a 0 -x {9.0 10.0 2214 ------- null} h -t 2.51488 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4419 -a 0 -x {9.0 10.0 2214 ------- null} r -t 2.5155 -s 0 -d 9 -p ack -e 40 -c 0 -i 4414 -a 0 -x {10.0 9.0 2202 ------- null} + -t 2.5155 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4425 -a 0 -x {9.0 10.0 2217 ------- null} - -t 2.5155 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4425 -a 0 -x {9.0 10.0 2217 ------- null} h -t 2.5155 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4425 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.5156 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4411 -a 0 -x {9.0 10.0 2210 ------- null} - -t 2.5156 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4411 -a 0 -x {9.0 10.0 2210 ------- null} h -t 2.5156 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4411 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.51571 -s 0 -d 9 -p ack -e 40 -c 0 -i 4418 -a 0 -x {10.0 9.0 2204 ------- null} - -t 2.51571 -s 0 -d 9 -p ack -e 40 -c 0 -i 4418 -a 0 -x {10.0 9.0 2204 ------- null} h -t 2.51571 -s 0 -d 9 -p ack -e 40 -c 0 -i 4418 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.51579 -s 10 -d 7 -p ack -e 40 -c 0 -i 4422 -a 0 -x {10.0 9.0 2206 ------- null} + -t 2.51579 -s 7 -d 0 -p ack -e 40 -c 0 -i 4422 -a 0 -x {10.0 9.0 2206 ------- null} h -t 2.51579 -s 7 -d 8 -p ack -e 40 -c 0 -i 4422 -a 0 -x {10.0 9.0 2206 ------- null} r -t 2.5159 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4421 -a 0 -x {9.0 10.0 2215 ------- null} + -t 2.5159 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4421 -a 0 -x {9.0 10.0 2215 ------- null} h -t 2.5159 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4421 -a 0 -x {9.0 10.0 2215 ------- null} r -t 2.51602 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4407 -a 0 -x {9.0 10.0 2208 ------- null} + -t 2.51602 -s 10 -d 7 -p ack -e 40 -c 0 -i 4426 -a 0 -x {10.0 9.0 2208 ------- null} - -t 2.51602 -s 10 -d 7 -p ack -e 40 -c 0 -i 4426 -a 0 -x {10.0 9.0 2208 ------- null} h -t 2.51602 -s 10 -d 7 -p ack -e 40 -c 0 -i 4426 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.51669 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4413 -a 0 -x {9.0 10.0 2211 ------- null} - -t 2.51669 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4413 -a 0 -x {9.0 10.0 2211 ------- null} h -t 2.51669 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4413 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.51675 -s 0 -d 9 -p ack -e 40 -c 0 -i 4420 -a 0 -x {10.0 9.0 2205 ------- null} - -t 2.51675 -s 0 -d 9 -p ack -e 40 -c 0 -i 4420 -a 0 -x {10.0 9.0 2205 ------- null} h -t 2.51675 -s 0 -d 9 -p ack -e 40 -c 0 -i 4420 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.51677 -s 0 -d 9 -p ack -e 40 -c 0 -i 4416 -a 0 -x {10.0 9.0 2203 ------- null} + -t 2.51677 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4427 -a 0 -x {9.0 10.0 2218 ------- null} - -t 2.51677 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4427 -a 0 -x {9.0 10.0 2218 ------- null} h -t 2.51677 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4427 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.51688 -s 10 -d 7 -p ack -e 40 -c 0 -i 4424 -a 0 -x {10.0 9.0 2207 ------- null} + -t 2.51688 -s 7 -d 0 -p ack -e 40 -c 0 -i 4424 -a 0 -x {10.0 9.0 2207 ------- null} h -t 2.51688 -s 7 -d 8 -p ack -e 40 -c 0 -i 4424 -a 0 -x {10.0 9.0 2207 ------- null} r -t 2.51714 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4423 -a 0 -x {9.0 10.0 2216 ------- null} + -t 2.51714 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4423 -a 0 -x {9.0 10.0 2216 ------- null} h -t 2.51714 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4423 -a 0 -x {9.0 10.0 2216 ------- null} r -t 2.51725 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4409 -a 0 -x {9.0 10.0 2209 ------- null} + -t 2.51725 -s 10 -d 7 -p ack -e 40 -c 0 -i 4428 -a 0 -x {10.0 9.0 2209 ------- null} - -t 2.51725 -s 10 -d 7 -p ack -e 40 -c 0 -i 4428 -a 0 -x {10.0 9.0 2209 ------- null} h -t 2.51725 -s 10 -d 7 -p ack -e 40 -c 0 -i 4428 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.51774 -s 0 -d 9 -p ack -e 40 -c 0 -i 4418 -a 0 -x {10.0 9.0 2204 ------- null} + -t 2.51774 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4429 -a 0 -x {9.0 10.0 2219 ------- null} - -t 2.51774 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4429 -a 0 -x {9.0 10.0 2219 ------- null} h -t 2.51774 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4429 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.51778 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4415 -a 0 -x {9.0 10.0 2212 ------- null} - -t 2.51778 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4415 -a 0 -x {9.0 10.0 2212 ------- null} h -t 2.51778 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4415 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.51792 -s 0 -d 9 -p ack -e 40 -c 0 -i 4422 -a 0 -x {10.0 9.0 2206 ------- null} - -t 2.51792 -s 0 -d 9 -p ack -e 40 -c 0 -i 4422 -a 0 -x {10.0 9.0 2206 ------- null} h -t 2.51792 -s 0 -d 9 -p ack -e 40 -c 0 -i 4422 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.51805 -s 10 -d 7 -p ack -e 40 -c 0 -i 4426 -a 0 -x {10.0 9.0 2208 ------- null} + -t 2.51805 -s 7 -d 0 -p ack -e 40 -c 0 -i 4426 -a 0 -x {10.0 9.0 2208 ------- null} h -t 2.51805 -s 7 -d 8 -p ack -e 40 -c 0 -i 4426 -a 0 -x {10.0 9.0 2208 ------- null} r -t 2.5183 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4425 -a 0 -x {9.0 10.0 2217 ------- null} + -t 2.5183 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4425 -a 0 -x {9.0 10.0 2217 ------- null} h -t 2.5183 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4425 -a 0 -x {9.0 10.0 2217 ------- null} r -t 2.5184 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4411 -a 0 -x {9.0 10.0 2210 ------- null} + -t 2.5184 -s 10 -d 7 -p ack -e 40 -c 0 -i 4430 -a 0 -x {10.0 9.0 2210 ------- null} - -t 2.5184 -s 10 -d 7 -p ack -e 40 -c 0 -i 4430 -a 0 -x {10.0 9.0 2210 ------- null} h -t 2.5184 -s 10 -d 7 -p ack -e 40 -c 0 -i 4430 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.51878 -s 0 -d 9 -p ack -e 40 -c 0 -i 4420 -a 0 -x {10.0 9.0 2205 ------- null} + -t 2.51878 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4431 -a 0 -x {9.0 10.0 2220 ------- null} - -t 2.51878 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4431 -a 0 -x {9.0 10.0 2220 ------- null} h -t 2.51878 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4431 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.51886 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4417 -a 0 -x {9.0 10.0 2213 ------- null} - -t 2.51886 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4417 -a 0 -x {9.0 10.0 2213 ------- null} h -t 2.51886 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4417 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.51893 -s 0 -d 9 -p ack -e 40 -c 0 -i 4424 -a 0 -x {10.0 9.0 2207 ------- null} - -t 2.51893 -s 0 -d 9 -p ack -e 40 -c 0 -i 4424 -a 0 -x {10.0 9.0 2207 ------- null} h -t 2.51893 -s 0 -d 9 -p ack -e 40 -c 0 -i 4424 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.51928 -s 10 -d 7 -p ack -e 40 -c 0 -i 4428 -a 0 -x {10.0 9.0 2209 ------- null} + -t 2.51928 -s 7 -d 0 -p ack -e 40 -c 0 -i 4428 -a 0 -x {10.0 9.0 2209 ------- null} h -t 2.51928 -s 7 -d 8 -p ack -e 40 -c 0 -i 4428 -a 0 -x {10.0 9.0 2209 ------- null} r -t 2.51949 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4413 -a 0 -x {9.0 10.0 2211 ------- null} + -t 2.51949 -s 10 -d 7 -p ack -e 40 -c 0 -i 4432 -a 0 -x {10.0 9.0 2211 ------- null} - -t 2.51949 -s 10 -d 7 -p ack -e 40 -c 0 -i 4432 -a 0 -x {10.0 9.0 2211 ------- null} h -t 2.51949 -s 10 -d 7 -p ack -e 40 -c 0 -i 4432 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.51957 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4427 -a 0 -x {9.0 10.0 2218 ------- null} + -t 2.51957 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4427 -a 0 -x {9.0 10.0 2218 ------- null} h -t 2.51957 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4427 -a 0 -x {9.0 10.0 2218 ------- null} + -t 2.51995 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4419 -a 0 -x {9.0 10.0 2214 ------- null} - -t 2.51995 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4419 -a 0 -x {9.0 10.0 2214 ------- null} h -t 2.51995 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4419 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.51995 -s 0 -d 9 -p ack -e 40 -c 0 -i 4422 -a 0 -x {10.0 9.0 2206 ------- null} + -t 2.51995 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4433 -a 0 -x {9.0 10.0 2221 ------- null} - -t 2.51995 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4433 -a 0 -x {9.0 10.0 2221 ------- null} h -t 2.51995 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4433 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.52016 -s 0 -d 9 -p ack -e 40 -c 0 -i 4426 -a 0 -x {10.0 9.0 2208 ------- null} - -t 2.52016 -s 0 -d 9 -p ack -e 40 -c 0 -i 4426 -a 0 -x {10.0 9.0 2208 ------- null} h -t 2.52016 -s 0 -d 9 -p ack -e 40 -c 0 -i 4426 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.52043 -s 10 -d 7 -p ack -e 40 -c 0 -i 4430 -a 0 -x {10.0 9.0 2210 ------- null} + -t 2.52043 -s 7 -d 0 -p ack -e 40 -c 0 -i 4430 -a 0 -x {10.0 9.0 2210 ------- null} h -t 2.52043 -s 7 -d 8 -p ack -e 40 -c 0 -i 4430 -a 0 -x {10.0 9.0 2210 ------- null} r -t 2.52054 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4429 -a 0 -x {9.0 10.0 2219 ------- null} + -t 2.52054 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4429 -a 0 -x {9.0 10.0 2219 ------- null} h -t 2.52054 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4429 -a 0 -x {9.0 10.0 2219 ------- null} r -t 2.52058 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4415 -a 0 -x {9.0 10.0 2212 ------- null} + -t 2.52058 -s 10 -d 7 -p ack -e 40 -c 0 -i 4434 -a 0 -x {10.0 9.0 2212 ------- null} - -t 2.52058 -s 10 -d 7 -p ack -e 40 -c 0 -i 4434 -a 0 -x {10.0 9.0 2212 ------- null} h -t 2.52058 -s 10 -d 7 -p ack -e 40 -c 0 -i 4434 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.52096 -s 0 -d 9 -p ack -e 40 -c 0 -i 4424 -a 0 -x {10.0 9.0 2207 ------- null} + -t 2.52096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4435 -a 0 -x {9.0 10.0 2222 ------- null} - -t 2.52096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4435 -a 0 -x {9.0 10.0 2222 ------- null} h -t 2.52096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4435 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.52104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4421 -a 0 -x {9.0 10.0 2215 ------- null} - -t 2.52104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4421 -a 0 -x {9.0 10.0 2215 ------- null} h -t 2.52104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4421 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.5213 -s 0 -d 9 -p ack -e 40 -c 0 -i 4428 -a 0 -x {10.0 9.0 2209 ------- null} - -t 2.5213 -s 0 -d 9 -p ack -e 40 -c 0 -i 4428 -a 0 -x {10.0 9.0 2209 ------- null} h -t 2.5213 -s 0 -d 9 -p ack -e 40 -c 0 -i 4428 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.52152 -s 10 -d 7 -p ack -e 40 -c 0 -i 4432 -a 0 -x {10.0 9.0 2211 ------- null} + -t 2.52152 -s 7 -d 0 -p ack -e 40 -c 0 -i 4432 -a 0 -x {10.0 9.0 2211 ------- null} h -t 2.52152 -s 7 -d 8 -p ack -e 40 -c 0 -i 4432 -a 0 -x {10.0 9.0 2211 ------- null} r -t 2.52158 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4431 -a 0 -x {9.0 10.0 2220 ------- null} + -t 2.52158 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4431 -a 0 -x {9.0 10.0 2220 ------- null} h -t 2.52158 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4431 -a 0 -x {9.0 10.0 2220 ------- null} r -t 2.52166 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4417 -a 0 -x {9.0 10.0 2213 ------- null} + -t 2.52166 -s 10 -d 7 -p ack -e 40 -c 0 -i 4436 -a 0 -x {10.0 9.0 2213 ------- null} - -t 2.52166 -s 10 -d 7 -p ack -e 40 -c 0 -i 4436 -a 0 -x {10.0 9.0 2213 ------- null} h -t 2.52166 -s 10 -d 7 -p ack -e 40 -c 0 -i 4436 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.52219 -s 0 -d 9 -p ack -e 40 -c 0 -i 4426 -a 0 -x {10.0 9.0 2208 ------- null} + -t 2.52219 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4437 -a 0 -x {9.0 10.0 2223 ------- null} - -t 2.52219 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4437 -a 0 -x {9.0 10.0 2223 ------- null} h -t 2.52219 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4437 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.52237 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4423 -a 0 -x {9.0 10.0 2216 ------- null} - -t 2.52237 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4423 -a 0 -x {9.0 10.0 2216 ------- null} h -t 2.52237 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4423 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.52248 -s 0 -d 9 -p ack -e 40 -c 0 -i 4430 -a 0 -x {10.0 9.0 2210 ------- null} - -t 2.52248 -s 0 -d 9 -p ack -e 40 -c 0 -i 4430 -a 0 -x {10.0 9.0 2210 ------- null} h -t 2.52248 -s 0 -d 9 -p ack -e 40 -c 0 -i 4430 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.52261 -s 10 -d 7 -p ack -e 40 -c 0 -i 4434 -a 0 -x {10.0 9.0 2212 ------- null} + -t 2.52261 -s 7 -d 0 -p ack -e 40 -c 0 -i 4434 -a 0 -x {10.0 9.0 2212 ------- null} h -t 2.52261 -s 7 -d 8 -p ack -e 40 -c 0 -i 4434 -a 0 -x {10.0 9.0 2212 ------- null} r -t 2.52275 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4419 -a 0 -x {9.0 10.0 2214 ------- null} + -t 2.52275 -s 10 -d 7 -p ack -e 40 -c 0 -i 4438 -a 0 -x {10.0 9.0 2214 ------- null} - -t 2.52275 -s 10 -d 7 -p ack -e 40 -c 0 -i 4438 -a 0 -x {10.0 9.0 2214 ------- null} h -t 2.52275 -s 10 -d 7 -p ack -e 40 -c 0 -i 4438 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.52275 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4433 -a 0 -x {9.0 10.0 2221 ------- null} + -t 2.52275 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4433 -a 0 -x {9.0 10.0 2221 ------- null} h -t 2.52275 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4433 -a 0 -x {9.0 10.0 2221 ------- null} r -t 2.52333 -s 0 -d 9 -p ack -e 40 -c 0 -i 4428 -a 0 -x {10.0 9.0 2209 ------- null} + -t 2.52333 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4439 -a 0 -x {9.0 10.0 2224 ------- null} - -t 2.52333 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4439 -a 0 -x {9.0 10.0 2224 ------- null} h -t 2.52333 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4439 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.52346 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4425 -a 0 -x {9.0 10.0 2217 ------- null} - -t 2.52346 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4425 -a 0 -x {9.0 10.0 2217 ------- null} h -t 2.52346 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4425 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.52355 -s 0 -d 9 -p ack -e 40 -c 0 -i 4432 -a 0 -x {10.0 9.0 2211 ------- null} - -t 2.52355 -s 0 -d 9 -p ack -e 40 -c 0 -i 4432 -a 0 -x {10.0 9.0 2211 ------- null} h -t 2.52355 -s 0 -d 9 -p ack -e 40 -c 0 -i 4432 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.5237 -s 10 -d 7 -p ack -e 40 -c 0 -i 4436 -a 0 -x {10.0 9.0 2213 ------- null} + -t 2.5237 -s 7 -d 0 -p ack -e 40 -c 0 -i 4436 -a 0 -x {10.0 9.0 2213 ------- null} h -t 2.5237 -s 7 -d 8 -p ack -e 40 -c 0 -i 4436 -a 0 -x {10.0 9.0 2213 ------- null} r -t 2.52376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4435 -a 0 -x {9.0 10.0 2222 ------- null} + -t 2.52376 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4435 -a 0 -x {9.0 10.0 2222 ------- null} h -t 2.52376 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4435 -a 0 -x {9.0 10.0 2222 ------- null} r -t 2.52384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4421 -a 0 -x {9.0 10.0 2215 ------- null} + -t 2.52384 -s 10 -d 7 -p ack -e 40 -c 0 -i 4440 -a 0 -x {10.0 9.0 2215 ------- null} - -t 2.52384 -s 10 -d 7 -p ack -e 40 -c 0 -i 4440 -a 0 -x {10.0 9.0 2215 ------- null} h -t 2.52384 -s 10 -d 7 -p ack -e 40 -c 0 -i 4440 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.52451 -s 0 -d 9 -p ack -e 40 -c 0 -i 4430 -a 0 -x {10.0 9.0 2210 ------- null} + -t 2.52451 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4441 -a 0 -x {9.0 10.0 2225 ------- null} - -t 2.52451 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4441 -a 0 -x {9.0 10.0 2225 ------- null} h -t 2.52451 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4441 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.52454 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4427 -a 0 -x {9.0 10.0 2218 ------- null} - -t 2.52454 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4427 -a 0 -x {9.0 10.0 2218 ------- null} h -t 2.52454 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4427 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.52461 -s 0 -d 9 -p ack -e 40 -c 0 -i 4434 -a 0 -x {10.0 9.0 2212 ------- null} - -t 2.52461 -s 0 -d 9 -p ack -e 40 -c 0 -i 4434 -a 0 -x {10.0 9.0 2212 ------- null} h -t 2.52461 -s 0 -d 9 -p ack -e 40 -c 0 -i 4434 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.52478 -s 10 -d 7 -p ack -e 40 -c 0 -i 4438 -a 0 -x {10.0 9.0 2214 ------- null} + -t 2.52478 -s 7 -d 0 -p ack -e 40 -c 0 -i 4438 -a 0 -x {10.0 9.0 2214 ------- null} h -t 2.52478 -s 7 -d 8 -p ack -e 40 -c 0 -i 4438 -a 0 -x {10.0 9.0 2214 ------- null} r -t 2.52499 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4437 -a 0 -x {9.0 10.0 2223 ------- null} + -t 2.52499 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4437 -a 0 -x {9.0 10.0 2223 ------- null} h -t 2.52499 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4437 -a 0 -x {9.0 10.0 2223 ------- null} r -t 2.52517 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4423 -a 0 -x {9.0 10.0 2216 ------- null} + -t 2.52517 -s 10 -d 7 -p ack -e 40 -c 0 -i 4442 -a 0 -x {10.0 9.0 2216 ------- null} - -t 2.52517 -s 10 -d 7 -p ack -e 40 -c 0 -i 4442 -a 0 -x {10.0 9.0 2216 ------- null} h -t 2.52517 -s 10 -d 7 -p ack -e 40 -c 0 -i 4442 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.52558 -s 0 -d 9 -p ack -e 40 -c 0 -i 4432 -a 0 -x {10.0 9.0 2211 ------- null} + -t 2.52558 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4443 -a 0 -x {9.0 10.0 2226 ------- null} - -t 2.52558 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4443 -a 0 -x {9.0 10.0 2226 ------- null} h -t 2.52558 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4443 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.52563 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4429 -a 0 -x {9.0 10.0 2219 ------- null} - -t 2.52563 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4429 -a 0 -x {9.0 10.0 2219 ------- null} h -t 2.52563 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4429 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.52573 -s 0 -d 9 -p ack -e 40 -c 0 -i 4436 -a 0 -x {10.0 9.0 2213 ------- null} - -t 2.52573 -s 0 -d 9 -p ack -e 40 -c 0 -i 4436 -a 0 -x {10.0 9.0 2213 ------- null} h -t 2.52573 -s 0 -d 9 -p ack -e 40 -c 0 -i 4436 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.52587 -s 10 -d 7 -p ack -e 40 -c 0 -i 4440 -a 0 -x {10.0 9.0 2215 ------- null} + -t 2.52587 -s 7 -d 0 -p ack -e 40 -c 0 -i 4440 -a 0 -x {10.0 9.0 2215 ------- null} h -t 2.52587 -s 7 -d 8 -p ack -e 40 -c 0 -i 4440 -a 0 -x {10.0 9.0 2215 ------- null} r -t 2.52613 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4439 -a 0 -x {9.0 10.0 2224 ------- null} + -t 2.52613 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4439 -a 0 -x {9.0 10.0 2224 ------- null} h -t 2.52613 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4439 -a 0 -x {9.0 10.0 2224 ------- null} r -t 2.52626 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4425 -a 0 -x {9.0 10.0 2217 ------- null} + -t 2.52626 -s 10 -d 7 -p ack -e 40 -c 0 -i 4444 -a 0 -x {10.0 9.0 2217 ------- null} - -t 2.52626 -s 10 -d 7 -p ack -e 40 -c 0 -i 4444 -a 0 -x {10.0 9.0 2217 ------- null} h -t 2.52626 -s 10 -d 7 -p ack -e 40 -c 0 -i 4444 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.52664 -s 0 -d 9 -p ack -e 40 -c 0 -i 4434 -a 0 -x {10.0 9.0 2212 ------- null} + -t 2.52664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4445 -a 0 -x {9.0 10.0 2227 ------- null} - -t 2.52664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4445 -a 0 -x {9.0 10.0 2227 ------- null} h -t 2.52664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4445 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.52672 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4431 -a 0 -x {9.0 10.0 2220 ------- null} - -t 2.52672 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4431 -a 0 -x {9.0 10.0 2220 ------- null} h -t 2.52672 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4431 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.52701 -s 0 -d 9 -p ack -e 40 -c 0 -i 4438 -a 0 -x {10.0 9.0 2214 ------- null} - -t 2.52701 -s 0 -d 9 -p ack -e 40 -c 0 -i 4438 -a 0 -x {10.0 9.0 2214 ------- null} h -t 2.52701 -s 0 -d 9 -p ack -e 40 -c 0 -i 4438 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.5272 -s 10 -d 7 -p ack -e 40 -c 0 -i 4442 -a 0 -x {10.0 9.0 2216 ------- null} + -t 2.5272 -s 7 -d 0 -p ack -e 40 -c 0 -i 4442 -a 0 -x {10.0 9.0 2216 ------- null} h -t 2.5272 -s 7 -d 8 -p ack -e 40 -c 0 -i 4442 -a 0 -x {10.0 9.0 2216 ------- null} r -t 2.52731 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4441 -a 0 -x {9.0 10.0 2225 ------- null} + -t 2.52731 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4441 -a 0 -x {9.0 10.0 2225 ------- null} h -t 2.52731 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4441 -a 0 -x {9.0 10.0 2225 ------- null} r -t 2.52734 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4427 -a 0 -x {9.0 10.0 2218 ------- null} + -t 2.52734 -s 10 -d 7 -p ack -e 40 -c 0 -i 4446 -a 0 -x {10.0 9.0 2218 ------- null} - -t 2.52734 -s 10 -d 7 -p ack -e 40 -c 0 -i 4446 -a 0 -x {10.0 9.0 2218 ------- null} h -t 2.52734 -s 10 -d 7 -p ack -e 40 -c 0 -i 4446 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.52776 -s 0 -d 9 -p ack -e 40 -c 0 -i 4436 -a 0 -x {10.0 9.0 2213 ------- null} + -t 2.52776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4447 -a 0 -x {9.0 10.0 2228 ------- null} - -t 2.52776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4447 -a 0 -x {9.0 10.0 2228 ------- null} h -t 2.52776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4447 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4433 -a 0 -x {9.0 10.0 2221 ------- null} - -t 2.528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4433 -a 0 -x {9.0 10.0 2221 ------- null} h -t 2.528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4433 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.52829 -s 0 -d 9 -p ack -e 40 -c 0 -i 4440 -a 0 -x {10.0 9.0 2215 ------- null} - -t 2.52829 -s 0 -d 9 -p ack -e 40 -c 0 -i 4440 -a 0 -x {10.0 9.0 2215 ------- null} h -t 2.52829 -s 0 -d 9 -p ack -e 40 -c 0 -i 4440 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.52829 -s 10 -d 7 -p ack -e 40 -c 0 -i 4444 -a 0 -x {10.0 9.0 2217 ------- null} + -t 2.52829 -s 7 -d 0 -p ack -e 40 -c 0 -i 4444 -a 0 -x {10.0 9.0 2217 ------- null} h -t 2.52829 -s 7 -d 8 -p ack -e 40 -c 0 -i 4444 -a 0 -x {10.0 9.0 2217 ------- null} r -t 2.52838 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4443 -a 0 -x {9.0 10.0 2226 ------- null} + -t 2.52838 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4443 -a 0 -x {9.0 10.0 2226 ------- null} h -t 2.52838 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4443 -a 0 -x {9.0 10.0 2226 ------- null} r -t 2.52843 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4429 -a 0 -x {9.0 10.0 2219 ------- null} + -t 2.52843 -s 10 -d 7 -p ack -e 40 -c 0 -i 4448 -a 0 -x {10.0 9.0 2219 ------- null} - -t 2.52843 -s 10 -d 7 -p ack -e 40 -c 0 -i 4448 -a 0 -x {10.0 9.0 2219 ------- null} h -t 2.52843 -s 10 -d 7 -p ack -e 40 -c 0 -i 4448 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.52904 -s 0 -d 9 -p ack -e 40 -c 0 -i 4438 -a 0 -x {10.0 9.0 2214 ------- null} + -t 2.52904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4449 -a 0 -x {9.0 10.0 2229 ------- null} - -t 2.52904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4449 -a 0 -x {9.0 10.0 2229 ------- null} h -t 2.52904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4449 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.52933 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4435 -a 0 -x {9.0 10.0 2222 ------- null} - -t 2.52933 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4435 -a 0 -x {9.0 10.0 2222 ------- null} h -t 2.52933 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4435 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.52938 -s 10 -d 7 -p ack -e 40 -c 0 -i 4446 -a 0 -x {10.0 9.0 2218 ------- null} + -t 2.52938 -s 7 -d 0 -p ack -e 40 -c 0 -i 4446 -a 0 -x {10.0 9.0 2218 ------- null} h -t 2.52938 -s 7 -d 8 -p ack -e 40 -c 0 -i 4446 -a 0 -x {10.0 9.0 2218 ------- null} r -t 2.52944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4445 -a 0 -x {9.0 10.0 2227 ------- null} + -t 2.52944 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4445 -a 0 -x {9.0 10.0 2227 ------- null} h -t 2.52944 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4445 -a 0 -x {9.0 10.0 2227 ------- null} + -t 2.52946 -s 0 -d 9 -p ack -e 40 -c 0 -i 4442 -a 0 -x {10.0 9.0 2216 ------- null} - -t 2.52946 -s 0 -d 9 -p ack -e 40 -c 0 -i 4442 -a 0 -x {10.0 9.0 2216 ------- null} h -t 2.52946 -s 0 -d 9 -p ack -e 40 -c 0 -i 4442 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.52952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4431 -a 0 -x {9.0 10.0 2220 ------- null} + -t 2.52952 -s 10 -d 7 -p ack -e 40 -c 0 -i 4450 -a 0 -x {10.0 9.0 2220 ------- null} - -t 2.52952 -s 10 -d 7 -p ack -e 40 -c 0 -i 4450 -a 0 -x {10.0 9.0 2220 ------- null} h -t 2.52952 -s 10 -d 7 -p ack -e 40 -c 0 -i 4450 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.53032 -s 0 -d 9 -p ack -e 40 -c 0 -i 4440 -a 0 -x {10.0 9.0 2215 ------- null} + -t 2.53032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4451 -a 0 -x {9.0 10.0 2230 ------- null} - -t 2.53032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4451 -a 0 -x {9.0 10.0 2230 ------- null} h -t 2.53032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4451 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.53042 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4437 -a 0 -x {9.0 10.0 2223 ------- null} - -t 2.53042 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4437 -a 0 -x {9.0 10.0 2223 ------- null} h -t 2.53042 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4437 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.53046 -s 10 -d 7 -p ack -e 40 -c 0 -i 4448 -a 0 -x {10.0 9.0 2219 ------- null} + -t 2.53046 -s 7 -d 0 -p ack -e 40 -c 0 -i 4448 -a 0 -x {10.0 9.0 2219 ------- null} h -t 2.53046 -s 7 -d 8 -p ack -e 40 -c 0 -i 4448 -a 0 -x {10.0 9.0 2219 ------- null} + -t 2.53053 -s 0 -d 9 -p ack -e 40 -c 0 -i 4444 -a 0 -x {10.0 9.0 2217 ------- null} - -t 2.53053 -s 0 -d 9 -p ack -e 40 -c 0 -i 4444 -a 0 -x {10.0 9.0 2217 ------- null} h -t 2.53053 -s 0 -d 9 -p ack -e 40 -c 0 -i 4444 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.53056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4447 -a 0 -x {9.0 10.0 2228 ------- null} + -t 2.53056 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4447 -a 0 -x {9.0 10.0 2228 ------- null} h -t 2.53056 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4447 -a 0 -x {9.0 10.0 2228 ------- null} r -t 2.5308 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4433 -a 0 -x {9.0 10.0 2221 ------- null} + -t 2.5308 -s 10 -d 7 -p ack -e 40 -c 0 -i 4452 -a 0 -x {10.0 9.0 2221 ------- null} - -t 2.5308 -s 10 -d 7 -p ack -e 40 -c 0 -i 4452 -a 0 -x {10.0 9.0 2221 ------- null} h -t 2.5308 -s 10 -d 7 -p ack -e 40 -c 0 -i 4452 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.53149 -s 0 -d 9 -p ack -e 40 -c 0 -i 4442 -a 0 -x {10.0 9.0 2216 ------- null} + -t 2.53149 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4453 -a 0 -x {9.0 10.0 2231 ------- null} - -t 2.53149 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4453 -a 0 -x {9.0 10.0 2231 ------- null} h -t 2.53149 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4453 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.5315 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4439 -a 0 -x {9.0 10.0 2224 ------- null} - -t 2.5315 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4439 -a 0 -x {9.0 10.0 2224 ------- null} h -t 2.5315 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4439 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.53155 -s 10 -d 7 -p ack -e 40 -c 0 -i 4450 -a 0 -x {10.0 9.0 2220 ------- null} + -t 2.53155 -s 7 -d 0 -p ack -e 40 -c 0 -i 4450 -a 0 -x {10.0 9.0 2220 ------- null} h -t 2.53155 -s 7 -d 8 -p ack -e 40 -c 0 -i 4450 -a 0 -x {10.0 9.0 2220 ------- null} + -t 2.53163 -s 0 -d 9 -p ack -e 40 -c 0 -i 4446 -a 0 -x {10.0 9.0 2218 ------- null} - -t 2.53163 -s 0 -d 9 -p ack -e 40 -c 0 -i 4446 -a 0 -x {10.0 9.0 2218 ------- null} h -t 2.53163 -s 0 -d 9 -p ack -e 40 -c 0 -i 4446 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.53184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4449 -a 0 -x {9.0 10.0 2229 ------- null} + -t 2.53184 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4449 -a 0 -x {9.0 10.0 2229 ------- null} h -t 2.53184 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4449 -a 0 -x {9.0 10.0 2229 ------- null} r -t 2.53213 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4435 -a 0 -x {9.0 10.0 2222 ------- null} + -t 2.53213 -s 10 -d 7 -p ack -e 40 -c 0 -i 4454 -a 0 -x {10.0 9.0 2222 ------- null} - -t 2.53213 -s 10 -d 7 -p ack -e 40 -c 0 -i 4454 -a 0 -x {10.0 9.0 2222 ------- null} h -t 2.53213 -s 10 -d 7 -p ack -e 40 -c 0 -i 4454 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.53256 -s 0 -d 9 -p ack -e 40 -c 0 -i 4444 -a 0 -x {10.0 9.0 2217 ------- null} + -t 2.53256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4455 -a 0 -x {9.0 10.0 2232 ------- null} - -t 2.53256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4455 -a 0 -x {9.0 10.0 2232 ------- null} h -t 2.53256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4455 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.53259 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4441 -a 0 -x {9.0 10.0 2225 ------- null} - -t 2.53259 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4441 -a 0 -x {9.0 10.0 2225 ------- null} h -t 2.53259 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4441 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.53283 -s 10 -d 7 -p ack -e 40 -c 0 -i 4452 -a 0 -x {10.0 9.0 2221 ------- null} + -t 2.53283 -s 7 -d 0 -p ack -e 40 -c 0 -i 4452 -a 0 -x {10.0 9.0 2221 ------- null} h -t 2.53283 -s 7 -d 8 -p ack -e 40 -c 0 -i 4452 -a 0 -x {10.0 9.0 2221 ------- null} + -t 2.53285 -s 0 -d 9 -p ack -e 40 -c 0 -i 4448 -a 0 -x {10.0 9.0 2219 ------- null} - -t 2.53285 -s 0 -d 9 -p ack -e 40 -c 0 -i 4448 -a 0 -x {10.0 9.0 2219 ------- null} h -t 2.53285 -s 0 -d 9 -p ack -e 40 -c 0 -i 4448 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.53312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4451 -a 0 -x {9.0 10.0 2230 ------- null} + -t 2.53312 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4451 -a 0 -x {9.0 10.0 2230 ------- null} h -t 2.53312 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4451 -a 0 -x {9.0 10.0 2230 ------- null} r -t 2.53322 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4437 -a 0 -x {9.0 10.0 2223 ------- null} + -t 2.53322 -s 10 -d 7 -p ack -e 40 -c 0 -i 4456 -a 0 -x {10.0 9.0 2223 ------- null} - -t 2.53322 -s 10 -d 7 -p ack -e 40 -c 0 -i 4456 -a 0 -x {10.0 9.0 2223 ------- null} h -t 2.53322 -s 10 -d 7 -p ack -e 40 -c 0 -i 4456 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.53366 -s 0 -d 9 -p ack -e 40 -c 0 -i 4446 -a 0 -x {10.0 9.0 2218 ------- null} + -t 2.53366 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4457 -a 0 -x {9.0 10.0 2233 ------- null} - -t 2.53366 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4457 -a 0 -x {9.0 10.0 2233 ------- null} h -t 2.53366 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4457 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.53378 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4443 -a 0 -x {9.0 10.0 2226 ------- null} - -t 2.53378 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4443 -a 0 -x {9.0 10.0 2226 ------- null} h -t 2.53378 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4443 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.53405 -s 0 -d 9 -p ack -e 40 -c 0 -i 4450 -a 0 -x {10.0 9.0 2220 ------- null} - -t 2.53405 -s 0 -d 9 -p ack -e 40 -c 0 -i 4450 -a 0 -x {10.0 9.0 2220 ------- null} h -t 2.53405 -s 0 -d 9 -p ack -e 40 -c 0 -i 4450 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.53416 -s 10 -d 7 -p ack -e 40 -c 0 -i 4454 -a 0 -x {10.0 9.0 2222 ------- null} + -t 2.53416 -s 7 -d 0 -p ack -e 40 -c 0 -i 4454 -a 0 -x {10.0 9.0 2222 ------- null} h -t 2.53416 -s 7 -d 8 -p ack -e 40 -c 0 -i 4454 -a 0 -x {10.0 9.0 2222 ------- null} r -t 2.53429 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4453 -a 0 -x {9.0 10.0 2231 ------- null} + -t 2.53429 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4453 -a 0 -x {9.0 10.0 2231 ------- null} h -t 2.53429 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4453 -a 0 -x {9.0 10.0 2231 ------- null} r -t 2.5343 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4439 -a 0 -x {9.0 10.0 2224 ------- null} + -t 2.5343 -s 10 -d 7 -p ack -e 40 -c 0 -i 4458 -a 0 -x {10.0 9.0 2224 ------- null} - -t 2.5343 -s 10 -d 7 -p ack -e 40 -c 0 -i 4458 -a 0 -x {10.0 9.0 2224 ------- null} h -t 2.5343 -s 10 -d 7 -p ack -e 40 -c 0 -i 4458 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.53488 -s 0 -d 9 -p ack -e 40 -c 0 -i 4448 -a 0 -x {10.0 9.0 2219 ------- null} + -t 2.53488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4459 -a 0 -x {9.0 10.0 2234 ------- null} - -t 2.53488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4459 -a 0 -x {9.0 10.0 2234 ------- null} h -t 2.53488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4459 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.53494 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4445 -a 0 -x {9.0 10.0 2227 ------- null} - -t 2.53494 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4445 -a 0 -x {9.0 10.0 2227 ------- null} h -t 2.53494 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4445 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.53502 -s 0 -d 9 -p ack -e 40 -c 0 -i 4452 -a 0 -x {10.0 9.0 2221 ------- null} - -t 2.53502 -s 0 -d 9 -p ack -e 40 -c 0 -i 4452 -a 0 -x {10.0 9.0 2221 ------- null} h -t 2.53502 -s 0 -d 9 -p ack -e 40 -c 0 -i 4452 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.53525 -s 10 -d 7 -p ack -e 40 -c 0 -i 4456 -a 0 -x {10.0 9.0 2223 ------- null} + -t 2.53525 -s 7 -d 0 -p ack -e 40 -c 0 -i 4456 -a 0 -x {10.0 9.0 2223 ------- null} h -t 2.53525 -s 7 -d 8 -p ack -e 40 -c 0 -i 4456 -a 0 -x {10.0 9.0 2223 ------- null} r -t 2.53536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4455 -a 0 -x {9.0 10.0 2232 ------- null} + -t 2.53536 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4455 -a 0 -x {9.0 10.0 2232 ------- null} h -t 2.53536 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4455 -a 0 -x {9.0 10.0 2232 ------- null} r -t 2.53539 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4441 -a 0 -x {9.0 10.0 2225 ------- null} + -t 2.53539 -s 10 -d 7 -p ack -e 40 -c 0 -i 4460 -a 0 -x {10.0 9.0 2225 ------- null} - -t 2.53539 -s 10 -d 7 -p ack -e 40 -c 0 -i 4460 -a 0 -x {10.0 9.0 2225 ------- null} h -t 2.53539 -s 10 -d 7 -p ack -e 40 -c 0 -i 4460 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.53603 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4447 -a 0 -x {9.0 10.0 2228 ------- null} - -t 2.53603 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4447 -a 0 -x {9.0 10.0 2228 ------- null} h -t 2.53603 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4447 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.53608 -s 0 -d 9 -p ack -e 40 -c 0 -i 4450 -a 0 -x {10.0 9.0 2220 ------- null} + -t 2.53608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4461 -a 0 -x {9.0 10.0 2235 ------- null} - -t 2.53608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4461 -a 0 -x {9.0 10.0 2235 ------- null} h -t 2.53608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4461 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.5361 -s 0 -d 9 -p ack -e 40 -c 0 -i 4454 -a 0 -x {10.0 9.0 2222 ------- null} - -t 2.5361 -s 0 -d 9 -p ack -e 40 -c 0 -i 4454 -a 0 -x {10.0 9.0 2222 ------- null} h -t 2.5361 -s 0 -d 9 -p ack -e 40 -c 0 -i 4454 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.53634 -s 10 -d 7 -p ack -e 40 -c 0 -i 4458 -a 0 -x {10.0 9.0 2224 ------- null} + -t 2.53634 -s 7 -d 0 -p ack -e 40 -c 0 -i 4458 -a 0 -x {10.0 9.0 2224 ------- null} h -t 2.53634 -s 7 -d 8 -p ack -e 40 -c 0 -i 4458 -a 0 -x {10.0 9.0 2224 ------- null} r -t 2.53646 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4457 -a 0 -x {9.0 10.0 2233 ------- null} + -t 2.53646 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4457 -a 0 -x {9.0 10.0 2233 ------- null} h -t 2.53646 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4457 -a 0 -x {9.0 10.0 2233 ------- null} r -t 2.53658 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4443 -a 0 -x {9.0 10.0 2226 ------- null} + -t 2.53658 -s 10 -d 7 -p ack -e 40 -c 0 -i 4462 -a 0 -x {10.0 9.0 2226 ------- null} - -t 2.53658 -s 10 -d 7 -p ack -e 40 -c 0 -i 4462 -a 0 -x {10.0 9.0 2226 ------- null} h -t 2.53658 -s 10 -d 7 -p ack -e 40 -c 0 -i 4462 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.53706 -s 0 -d 9 -p ack -e 40 -c 0 -i 4452 -a 0 -x {10.0 9.0 2221 ------- null} + -t 2.53706 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4463 -a 0 -x {9.0 10.0 2236 ------- null} - -t 2.53706 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4463 -a 0 -x {9.0 10.0 2236 ------- null} h -t 2.53706 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4463 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.53712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4449 -a 0 -x {9.0 10.0 2229 ------- null} - -t 2.53712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4449 -a 0 -x {9.0 10.0 2229 ------- null} h -t 2.53712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4449 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.5372 -s 0 -d 9 -p ack -e 40 -c 0 -i 4456 -a 0 -x {10.0 9.0 2223 ------- null} - -t 2.5372 -s 0 -d 9 -p ack -e 40 -c 0 -i 4456 -a 0 -x {10.0 9.0 2223 ------- null} h -t 2.5372 -s 0 -d 9 -p ack -e 40 -c 0 -i 4456 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.53742 -s 10 -d 7 -p ack -e 40 -c 0 -i 4460 -a 0 -x {10.0 9.0 2225 ------- null} + -t 2.53742 -s 7 -d 0 -p ack -e 40 -c 0 -i 4460 -a 0 -x {10.0 9.0 2225 ------- null} h -t 2.53742 -s 7 -d 8 -p ack -e 40 -c 0 -i 4460 -a 0 -x {10.0 9.0 2225 ------- null} r -t 2.53768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4459 -a 0 -x {9.0 10.0 2234 ------- null} + -t 2.53768 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4459 -a 0 -x {9.0 10.0 2234 ------- null} h -t 2.53768 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4459 -a 0 -x {9.0 10.0 2234 ------- null} r -t 2.53774 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4445 -a 0 -x {9.0 10.0 2227 ------- null} + -t 2.53774 -s 10 -d 7 -p ack -e 40 -c 0 -i 4464 -a 0 -x {10.0 9.0 2227 ------- null} - -t 2.53774 -s 10 -d 7 -p ack -e 40 -c 0 -i 4464 -a 0 -x {10.0 9.0 2227 ------- null} h -t 2.53774 -s 10 -d 7 -p ack -e 40 -c 0 -i 4464 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.53813 -s 0 -d 9 -p ack -e 40 -c 0 -i 4454 -a 0 -x {10.0 9.0 2222 ------- null} + -t 2.53813 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4465 -a 0 -x {9.0 10.0 2237 ------- null} - -t 2.53813 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4465 -a 0 -x {9.0 10.0 2237 ------- null} h -t 2.53813 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4465 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.53821 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4451 -a 0 -x {9.0 10.0 2230 ------- null} - -t 2.53821 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4451 -a 0 -x {9.0 10.0 2230 ------- null} h -t 2.53821 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4451 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.53829 -s 0 -d 9 -p ack -e 40 -c 0 -i 4458 -a 0 -x {10.0 9.0 2224 ------- null} - -t 2.53829 -s 0 -d 9 -p ack -e 40 -c 0 -i 4458 -a 0 -x {10.0 9.0 2224 ------- null} h -t 2.53829 -s 0 -d 9 -p ack -e 40 -c 0 -i 4458 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.53861 -s 10 -d 7 -p ack -e 40 -c 0 -i 4462 -a 0 -x {10.0 9.0 2226 ------- null} + -t 2.53861 -s 7 -d 0 -p ack -e 40 -c 0 -i 4462 -a 0 -x {10.0 9.0 2226 ------- null} h -t 2.53861 -s 7 -d 8 -p ack -e 40 -c 0 -i 4462 -a 0 -x {10.0 9.0 2226 ------- null} r -t 2.53883 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4447 -a 0 -x {9.0 10.0 2228 ------- null} + -t 2.53883 -s 10 -d 7 -p ack -e 40 -c 0 -i 4466 -a 0 -x {10.0 9.0 2228 ------- null} - -t 2.53883 -s 10 -d 7 -p ack -e 40 -c 0 -i 4466 -a 0 -x {10.0 9.0 2228 ------- null} h -t 2.53883 -s 10 -d 7 -p ack -e 40 -c 0 -i 4466 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.53888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4461 -a 0 -x {9.0 10.0 2235 ------- null} + -t 2.53888 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4461 -a 0 -x {9.0 10.0 2235 ------- null} h -t 2.53888 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4461 -a 0 -x {9.0 10.0 2235 ------- null} r -t 2.53923 -s 0 -d 9 -p ack -e 40 -c 0 -i 4456 -a 0 -x {10.0 9.0 2223 ------- null} + -t 2.53923 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4467 -a 0 -x {9.0 10.0 2238 ------- null} - -t 2.53923 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4467 -a 0 -x {9.0 10.0 2238 ------- null} h -t 2.53923 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4467 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.5393 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4453 -a 0 -x {9.0 10.0 2231 ------- null} - -t 2.5393 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4453 -a 0 -x {9.0 10.0 2231 ------- null} h -t 2.5393 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4453 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.53936 -s 0 -d 9 -p ack -e 40 -c 0 -i 4460 -a 0 -x {10.0 9.0 2225 ------- null} - -t 2.53936 -s 0 -d 9 -p ack -e 40 -c 0 -i 4460 -a 0 -x {10.0 9.0 2225 ------- null} h -t 2.53936 -s 0 -d 9 -p ack -e 40 -c 0 -i 4460 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.53978 -s 10 -d 7 -p ack -e 40 -c 0 -i 4464 -a 0 -x {10.0 9.0 2227 ------- null} + -t 2.53978 -s 7 -d 0 -p ack -e 40 -c 0 -i 4464 -a 0 -x {10.0 9.0 2227 ------- null} h -t 2.53978 -s 7 -d 8 -p ack -e 40 -c 0 -i 4464 -a 0 -x {10.0 9.0 2227 ------- null} r -t 2.53986 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4463 -a 0 -x {9.0 10.0 2236 ------- null} + -t 2.53986 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4463 -a 0 -x {9.0 10.0 2236 ------- null} h -t 2.53986 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4463 -a 0 -x {9.0 10.0 2236 ------- null} r -t 2.53992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4449 -a 0 -x {9.0 10.0 2229 ------- null} + -t 2.53992 -s 10 -d 7 -p ack -e 40 -c 0 -i 4468 -a 0 -x {10.0 9.0 2229 ------- null} - -t 2.53992 -s 10 -d 7 -p ack -e 40 -c 0 -i 4468 -a 0 -x {10.0 9.0 2229 ------- null} h -t 2.53992 -s 10 -d 7 -p ack -e 40 -c 0 -i 4468 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.54032 -s 0 -d 9 -p ack -e 40 -c 0 -i 4458 -a 0 -x {10.0 9.0 2224 ------- null} + -t 2.54032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4469 -a 0 -x {9.0 10.0 2239 ------- null} - -t 2.54032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4469 -a 0 -x {9.0 10.0 2239 ------- null} h -t 2.54032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4469 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.54038 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4455 -a 0 -x {9.0 10.0 2232 ------- null} - -t 2.54038 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4455 -a 0 -x {9.0 10.0 2232 ------- null} h -t 2.54038 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4455 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.54058 -s 0 -d 9 -p ack -e 40 -c 0 -i 4462 -a 0 -x {10.0 9.0 2226 ------- null} - -t 2.54058 -s 0 -d 9 -p ack -e 40 -c 0 -i 4462 -a 0 -x {10.0 9.0 2226 ------- null} h -t 2.54058 -s 0 -d 9 -p ack -e 40 -c 0 -i 4462 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.54086 -s 10 -d 7 -p ack -e 40 -c 0 -i 4466 -a 0 -x {10.0 9.0 2228 ------- null} + -t 2.54086 -s 7 -d 0 -p ack -e 40 -c 0 -i 4466 -a 0 -x {10.0 9.0 2228 ------- null} h -t 2.54086 -s 7 -d 8 -p ack -e 40 -c 0 -i 4466 -a 0 -x {10.0 9.0 2228 ------- null} r -t 2.54093 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4465 -a 0 -x {9.0 10.0 2237 ------- null} + -t 2.54093 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4465 -a 0 -x {9.0 10.0 2237 ------- null} h -t 2.54093 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4465 -a 0 -x {9.0 10.0 2237 ------- null} r -t 2.54101 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4451 -a 0 -x {9.0 10.0 2230 ------- null} + -t 2.54101 -s 10 -d 7 -p ack -e 40 -c 0 -i 4470 -a 0 -x {10.0 9.0 2230 ------- null} - -t 2.54101 -s 10 -d 7 -p ack -e 40 -c 0 -i 4470 -a 0 -x {10.0 9.0 2230 ------- null} h -t 2.54101 -s 10 -d 7 -p ack -e 40 -c 0 -i 4470 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.54139 -s 0 -d 9 -p ack -e 40 -c 0 -i 4460 -a 0 -x {10.0 9.0 2225 ------- null} + -t 2.54139 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4471 -a 0 -x {9.0 10.0 2240 ------- null} - -t 2.54139 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4471 -a 0 -x {9.0 10.0 2240 ------- null} h -t 2.54139 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4471 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.54147 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4457 -a 0 -x {9.0 10.0 2233 ------- null} - -t 2.54147 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4457 -a 0 -x {9.0 10.0 2233 ------- null} h -t 2.54147 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4457 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.54166 -s 0 -d 9 -p ack -e 40 -c 0 -i 4464 -a 0 -x {10.0 9.0 2227 ------- null} - -t 2.54166 -s 0 -d 9 -p ack -e 40 -c 0 -i 4464 -a 0 -x {10.0 9.0 2227 ------- null} h -t 2.54166 -s 0 -d 9 -p ack -e 40 -c 0 -i 4464 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.54195 -s 10 -d 7 -p ack -e 40 -c 0 -i 4468 -a 0 -x {10.0 9.0 2229 ------- null} + -t 2.54195 -s 7 -d 0 -p ack -e 40 -c 0 -i 4468 -a 0 -x {10.0 9.0 2229 ------- null} h -t 2.54195 -s 7 -d 8 -p ack -e 40 -c 0 -i 4468 -a 0 -x {10.0 9.0 2229 ------- null} r -t 2.54203 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4467 -a 0 -x {9.0 10.0 2238 ------- null} + -t 2.54203 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4467 -a 0 -x {9.0 10.0 2238 ------- null} h -t 2.54203 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4467 -a 0 -x {9.0 10.0 2238 ------- null} r -t 2.5421 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4453 -a 0 -x {9.0 10.0 2231 ------- null} + -t 2.5421 -s 10 -d 7 -p ack -e 40 -c 0 -i 4472 -a 0 -x {10.0 9.0 2231 ------- null} - -t 2.5421 -s 10 -d 7 -p ack -e 40 -c 0 -i 4472 -a 0 -x {10.0 9.0 2231 ------- null} h -t 2.5421 -s 10 -d 7 -p ack -e 40 -c 0 -i 4472 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.54256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4459 -a 0 -x {9.0 10.0 2234 ------- null} - -t 2.54256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4459 -a 0 -x {9.0 10.0 2234 ------- null} h -t 2.54256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4459 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.54261 -s 0 -d 9 -p ack -e 40 -c 0 -i 4462 -a 0 -x {10.0 9.0 2226 ------- null} + -t 2.54261 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4473 -a 0 -x {9.0 10.0 2241 ------- null} - -t 2.54261 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4473 -a 0 -x {9.0 10.0 2241 ------- null} h -t 2.54261 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4473 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.54277 -s 0 -d 9 -p ack -e 40 -c 0 -i 4466 -a 0 -x {10.0 9.0 2228 ------- null} - -t 2.54277 -s 0 -d 9 -p ack -e 40 -c 0 -i 4466 -a 0 -x {10.0 9.0 2228 ------- null} h -t 2.54277 -s 0 -d 9 -p ack -e 40 -c 0 -i 4466 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.54304 -s 10 -d 7 -p ack -e 40 -c 0 -i 4470 -a 0 -x {10.0 9.0 2230 ------- null} + -t 2.54304 -s 7 -d 0 -p ack -e 40 -c 0 -i 4470 -a 0 -x {10.0 9.0 2230 ------- null} h -t 2.54304 -s 7 -d 8 -p ack -e 40 -c 0 -i 4470 -a 0 -x {10.0 9.0 2230 ------- null} r -t 2.54312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4469 -a 0 -x {9.0 10.0 2239 ------- null} + -t 2.54312 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4469 -a 0 -x {9.0 10.0 2239 ------- null} h -t 2.54312 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4469 -a 0 -x {9.0 10.0 2239 ------- null} r -t 2.54318 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4455 -a 0 -x {9.0 10.0 2232 ------- null} + -t 2.54318 -s 10 -d 7 -p ack -e 40 -c 0 -i 4474 -a 0 -x {10.0 9.0 2232 ------- null} - -t 2.54318 -s 10 -d 7 -p ack -e 40 -c 0 -i 4474 -a 0 -x {10.0 9.0 2232 ------- null} h -t 2.54318 -s 10 -d 7 -p ack -e 40 -c 0 -i 4474 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.54365 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4461 -a 0 -x {9.0 10.0 2235 ------- null} - -t 2.54365 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4461 -a 0 -x {9.0 10.0 2235 ------- null} h -t 2.54365 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4461 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.5437 -s 0 -d 9 -p ack -e 40 -c 0 -i 4464 -a 0 -x {10.0 9.0 2227 ------- null} + -t 2.5437 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4475 -a 0 -x {9.0 10.0 2242 ------- null} - -t 2.5437 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4475 -a 0 -x {9.0 10.0 2242 ------- null} h -t 2.5437 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4475 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.54379 -s 0 -d 9 -p ack -e 40 -c 0 -i 4468 -a 0 -x {10.0 9.0 2229 ------- null} - -t 2.54379 -s 0 -d 9 -p ack -e 40 -c 0 -i 4468 -a 0 -x {10.0 9.0 2229 ------- null} h -t 2.54379 -s 0 -d 9 -p ack -e 40 -c 0 -i 4468 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.54413 -s 10 -d 7 -p ack -e 40 -c 0 -i 4472 -a 0 -x {10.0 9.0 2231 ------- null} + -t 2.54413 -s 7 -d 0 -p ack -e 40 -c 0 -i 4472 -a 0 -x {10.0 9.0 2231 ------- null} h -t 2.54413 -s 7 -d 8 -p ack -e 40 -c 0 -i 4472 -a 0 -x {10.0 9.0 2231 ------- null} r -t 2.54419 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4471 -a 0 -x {9.0 10.0 2240 ------- null} + -t 2.54419 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4471 -a 0 -x {9.0 10.0 2240 ------- null} h -t 2.54419 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4471 -a 0 -x {9.0 10.0 2240 ------- null} r -t 2.54427 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4457 -a 0 -x {9.0 10.0 2233 ------- null} + -t 2.54427 -s 10 -d 7 -p ack -e 40 -c 0 -i 4476 -a 0 -x {10.0 9.0 2233 ------- null} - -t 2.54427 -s 10 -d 7 -p ack -e 40 -c 0 -i 4476 -a 0 -x {10.0 9.0 2233 ------- null} h -t 2.54427 -s 10 -d 7 -p ack -e 40 -c 0 -i 4476 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.54474 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4463 -a 0 -x {9.0 10.0 2236 ------- null} - -t 2.54474 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4463 -a 0 -x {9.0 10.0 2236 ------- null} h -t 2.54474 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4463 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.5448 -s 0 -d 9 -p ack -e 40 -c 0 -i 4466 -a 0 -x {10.0 9.0 2228 ------- null} + -t 2.5448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4477 -a 0 -x {9.0 10.0 2243 ------- null} - -t 2.5448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4477 -a 0 -x {9.0 10.0 2243 ------- null} h -t 2.5448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4477 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.54482 -s 0 -d 9 -p ack -e 40 -c 0 -i 4470 -a 0 -x {10.0 9.0 2230 ------- null} - -t 2.54482 -s 0 -d 9 -p ack -e 40 -c 0 -i 4470 -a 0 -x {10.0 9.0 2230 ------- null} h -t 2.54482 -s 0 -d 9 -p ack -e 40 -c 0 -i 4470 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.54522 -s 10 -d 7 -p ack -e 40 -c 0 -i 4474 -a 0 -x {10.0 9.0 2232 ------- null} + -t 2.54522 -s 7 -d 0 -p ack -e 40 -c 0 -i 4474 -a 0 -x {10.0 9.0 2232 ------- null} h -t 2.54522 -s 7 -d 8 -p ack -e 40 -c 0 -i 4474 -a 0 -x {10.0 9.0 2232 ------- null} r -t 2.54536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4459 -a 0 -x {9.0 10.0 2234 ------- null} + -t 2.54536 -s 10 -d 7 -p ack -e 40 -c 0 -i 4478 -a 0 -x {10.0 9.0 2234 ------- null} - -t 2.54536 -s 10 -d 7 -p ack -e 40 -c 0 -i 4478 -a 0 -x {10.0 9.0 2234 ------- null} h -t 2.54536 -s 10 -d 7 -p ack -e 40 -c 0 -i 4478 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.54541 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4473 -a 0 -x {9.0 10.0 2241 ------- null} + -t 2.54541 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4473 -a 0 -x {9.0 10.0 2241 ------- null} h -t 2.54541 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4473 -a 0 -x {9.0 10.0 2241 ------- null} + -t 2.54582 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4465 -a 0 -x {9.0 10.0 2237 ------- null} - -t 2.54582 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4465 -a 0 -x {9.0 10.0 2237 ------- null} h -t 2.54582 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4465 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.54582 -s 0 -d 9 -p ack -e 40 -c 0 -i 4468 -a 0 -x {10.0 9.0 2229 ------- null} + -t 2.54582 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4479 -a 0 -x {9.0 10.0 2244 ------- null} - -t 2.54582 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4479 -a 0 -x {9.0 10.0 2244 ------- null} h -t 2.54582 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4479 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.54598 -s 0 -d 9 -p ack -e 40 -c 0 -i 4472 -a 0 -x {10.0 9.0 2231 ------- null} - -t 2.54598 -s 0 -d 9 -p ack -e 40 -c 0 -i 4472 -a 0 -x {10.0 9.0 2231 ------- null} h -t 2.54598 -s 0 -d 9 -p ack -e 40 -c 0 -i 4472 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.5463 -s 10 -d 7 -p ack -e 40 -c 0 -i 4476 -a 0 -x {10.0 9.0 2233 ------- null} + -t 2.5463 -s 7 -d 0 -p ack -e 40 -c 0 -i 4476 -a 0 -x {10.0 9.0 2233 ------- null} h -t 2.5463 -s 7 -d 8 -p ack -e 40 -c 0 -i 4476 -a 0 -x {10.0 9.0 2233 ------- null} r -t 2.54645 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4461 -a 0 -x {9.0 10.0 2235 ------- null} + -t 2.54645 -s 10 -d 7 -p ack -e 40 -c 0 -i 4480 -a 0 -x {10.0 9.0 2235 ------- null} - -t 2.54645 -s 10 -d 7 -p ack -e 40 -c 0 -i 4480 -a 0 -x {10.0 9.0 2235 ------- null} h -t 2.54645 -s 10 -d 7 -p ack -e 40 -c 0 -i 4480 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.5465 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4475 -a 0 -x {9.0 10.0 2242 ------- null} + -t 2.5465 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4475 -a 0 -x {9.0 10.0 2242 ------- null} h -t 2.5465 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4475 -a 0 -x {9.0 10.0 2242 ------- null} r -t 2.54685 -s 0 -d 9 -p ack -e 40 -c 0 -i 4470 -a 0 -x {10.0 9.0 2230 ------- null} + -t 2.54685 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4481 -a 0 -x {9.0 10.0 2245 ------- null} - -t 2.54685 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4481 -a 0 -x {9.0 10.0 2245 ------- null} h -t 2.54685 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4481 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.54691 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4467 -a 0 -x {9.0 10.0 2238 ------- null} - -t 2.54691 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4467 -a 0 -x {9.0 10.0 2238 ------- null} h -t 2.54691 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4467 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.54715 -s 0 -d 9 -p ack -e 40 -c 0 -i 4474 -a 0 -x {10.0 9.0 2232 ------- null} - -t 2.54715 -s 0 -d 9 -p ack -e 40 -c 0 -i 4474 -a 0 -x {10.0 9.0 2232 ------- null} h -t 2.54715 -s 0 -d 9 -p ack -e 40 -c 0 -i 4474 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.54739 -s 10 -d 7 -p ack -e 40 -c 0 -i 4478 -a 0 -x {10.0 9.0 2234 ------- null} + -t 2.54739 -s 7 -d 0 -p ack -e 40 -c 0 -i 4478 -a 0 -x {10.0 9.0 2234 ------- null} h -t 2.54739 -s 7 -d 8 -p ack -e 40 -c 0 -i 4478 -a 0 -x {10.0 9.0 2234 ------- null} r -t 2.54754 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4463 -a 0 -x {9.0 10.0 2236 ------- null} + -t 2.54754 -s 10 -d 7 -p ack -e 40 -c 0 -i 4482 -a 0 -x {10.0 9.0 2236 ------- null} - -t 2.54754 -s 10 -d 7 -p ack -e 40 -c 0 -i 4482 -a 0 -x {10.0 9.0 2236 ------- null} h -t 2.54754 -s 10 -d 7 -p ack -e 40 -c 0 -i 4482 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.5476 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4477 -a 0 -x {9.0 10.0 2243 ------- null} + -t 2.5476 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4477 -a 0 -x {9.0 10.0 2243 ------- null} h -t 2.5476 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4477 -a 0 -x {9.0 10.0 2243 ------- null} + -t 2.548 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4469 -a 0 -x {9.0 10.0 2239 ------- null} - -t 2.548 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4469 -a 0 -x {9.0 10.0 2239 ------- null} h -t 2.548 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4469 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.54802 -s 0 -d 9 -p ack -e 40 -c 0 -i 4472 -a 0 -x {10.0 9.0 2231 ------- null} + -t 2.54802 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4483 -a 0 -x {9.0 10.0 2246 ------- null} - -t 2.54802 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4483 -a 0 -x {9.0 10.0 2246 ------- null} h -t 2.54802 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4483 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.54811 -s 0 -d 9 -p ack -e 40 -c 0 -i 4476 -a 0 -x {10.0 9.0 2233 ------- null} - -t 2.54811 -s 0 -d 9 -p ack -e 40 -c 0 -i 4476 -a 0 -x {10.0 9.0 2233 ------- null} h -t 2.54811 -s 0 -d 9 -p ack -e 40 -c 0 -i 4476 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.54848 -s 10 -d 7 -p ack -e 40 -c 0 -i 4480 -a 0 -x {10.0 9.0 2235 ------- null} + -t 2.54848 -s 7 -d 0 -p ack -e 40 -c 0 -i 4480 -a 0 -x {10.0 9.0 2235 ------- null} h -t 2.54848 -s 7 -d 8 -p ack -e 40 -c 0 -i 4480 -a 0 -x {10.0 9.0 2235 ------- null} r -t 2.54862 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4465 -a 0 -x {9.0 10.0 2237 ------- null} + -t 2.54862 -s 10 -d 7 -p ack -e 40 -c 0 -i 4484 -a 0 -x {10.0 9.0 2237 ------- null} - -t 2.54862 -s 10 -d 7 -p ack -e 40 -c 0 -i 4484 -a 0 -x {10.0 9.0 2237 ------- null} h -t 2.54862 -s 10 -d 7 -p ack -e 40 -c 0 -i 4484 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.54862 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4479 -a 0 -x {9.0 10.0 2244 ------- null} + -t 2.54862 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4479 -a 0 -x {9.0 10.0 2244 ------- null} h -t 2.54862 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4479 -a 0 -x {9.0 10.0 2244 ------- null} + -t 2.54909 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4471 -a 0 -x {9.0 10.0 2240 ------- null} - -t 2.54909 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4471 -a 0 -x {9.0 10.0 2240 ------- null} h -t 2.54909 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4471 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.54918 -s 0 -d 9 -p ack -e 40 -c 0 -i 4474 -a 0 -x {10.0 9.0 2232 ------- null} + -t 2.54918 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4485 -a 0 -x {9.0 10.0 2247 ------- null} - -t 2.54918 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4485 -a 0 -x {9.0 10.0 2247 ------- null} h -t 2.54918 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4485 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.54925 -s 0 -d 9 -p ack -e 40 -c 0 -i 4478 -a 0 -x {10.0 9.0 2234 ------- null} - -t 2.54925 -s 0 -d 9 -p ack -e 40 -c 0 -i 4478 -a 0 -x {10.0 9.0 2234 ------- null} h -t 2.54925 -s 0 -d 9 -p ack -e 40 -c 0 -i 4478 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.54957 -s 10 -d 7 -p ack -e 40 -c 0 -i 4482 -a 0 -x {10.0 9.0 2236 ------- null} + -t 2.54957 -s 7 -d 0 -p ack -e 40 -c 0 -i 4482 -a 0 -x {10.0 9.0 2236 ------- null} h -t 2.54957 -s 7 -d 8 -p ack -e 40 -c 0 -i 4482 -a 0 -x {10.0 9.0 2236 ------- null} r -t 2.54965 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4481 -a 0 -x {9.0 10.0 2245 ------- null} + -t 2.54965 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4481 -a 0 -x {9.0 10.0 2245 ------- null} h -t 2.54965 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4481 -a 0 -x {9.0 10.0 2245 ------- null} r -t 2.54971 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4467 -a 0 -x {9.0 10.0 2238 ------- null} + -t 2.54971 -s 10 -d 7 -p ack -e 40 -c 0 -i 4486 -a 0 -x {10.0 9.0 2238 ------- null} - -t 2.54971 -s 10 -d 7 -p ack -e 40 -c 0 -i 4486 -a 0 -x {10.0 9.0 2238 ------- null} h -t 2.54971 -s 10 -d 7 -p ack -e 40 -c 0 -i 4486 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.55014 -s 0 -d 9 -p ack -e 40 -c 0 -i 4476 -a 0 -x {10.0 9.0 2233 ------- null} + -t 2.55014 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4487 -a 0 -x {9.0 10.0 2248 ------- null} - -t 2.55014 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4487 -a 0 -x {9.0 10.0 2248 ------- null} h -t 2.55014 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4487 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.55018 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4473 -a 0 -x {9.0 10.0 2241 ------- null} - -t 2.55018 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4473 -a 0 -x {9.0 10.0 2241 ------- null} h -t 2.55018 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4473 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.55032 -s 0 -d 9 -p ack -e 40 -c 0 -i 4480 -a 0 -x {10.0 9.0 2235 ------- null} - -t 2.55032 -s 0 -d 9 -p ack -e 40 -c 0 -i 4480 -a 0 -x {10.0 9.0 2235 ------- null} h -t 2.55032 -s 0 -d 9 -p ack -e 40 -c 0 -i 4480 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.55066 -s 10 -d 7 -p ack -e 40 -c 0 -i 4484 -a 0 -x {10.0 9.0 2237 ------- null} + -t 2.55066 -s 7 -d 0 -p ack -e 40 -c 0 -i 4484 -a 0 -x {10.0 9.0 2237 ------- null} h -t 2.55066 -s 7 -d 8 -p ack -e 40 -c 0 -i 4484 -a 0 -x {10.0 9.0 2237 ------- null} r -t 2.5508 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4469 -a 0 -x {9.0 10.0 2239 ------- null} + -t 2.5508 -s 10 -d 7 -p ack -e 40 -c 0 -i 4488 -a 0 -x {10.0 9.0 2239 ------- null} - -t 2.5508 -s 10 -d 7 -p ack -e 40 -c 0 -i 4488 -a 0 -x {10.0 9.0 2239 ------- null} h -t 2.5508 -s 10 -d 7 -p ack -e 40 -c 0 -i 4488 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.55082 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4483 -a 0 -x {9.0 10.0 2246 ------- null} + -t 2.55082 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4483 -a 0 -x {9.0 10.0 2246 ------- null} h -t 2.55082 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4483 -a 0 -x {9.0 10.0 2246 ------- null} + -t 2.55126 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4475 -a 0 -x {9.0 10.0 2242 ------- null} - -t 2.55126 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4475 -a 0 -x {9.0 10.0 2242 ------- null} h -t 2.55126 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4475 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.55128 -s 0 -d 9 -p ack -e 40 -c 0 -i 4478 -a 0 -x {10.0 9.0 2234 ------- null} + -t 2.55128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4489 -a 0 -x {9.0 10.0 2249 ------- null} - -t 2.55128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4489 -a 0 -x {9.0 10.0 2249 ------- null} h -t 2.55128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4489 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.55157 -s 0 -d 9 -p ack -e 40 -c 0 -i 4482 -a 0 -x {10.0 9.0 2236 ------- null} - -t 2.55157 -s 0 -d 9 -p ack -e 40 -c 0 -i 4482 -a 0 -x {10.0 9.0 2236 ------- null} h -t 2.55157 -s 0 -d 9 -p ack -e 40 -c 0 -i 4482 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.55174 -s 10 -d 7 -p ack -e 40 -c 0 -i 4486 -a 0 -x {10.0 9.0 2238 ------- null} + -t 2.55174 -s 7 -d 0 -p ack -e 40 -c 0 -i 4486 -a 0 -x {10.0 9.0 2238 ------- null} h -t 2.55174 -s 7 -d 8 -p ack -e 40 -c 0 -i 4486 -a 0 -x {10.0 9.0 2238 ------- null} r -t 2.55189 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4471 -a 0 -x {9.0 10.0 2240 ------- null} + -t 2.55189 -s 10 -d 7 -p ack -e 40 -c 0 -i 4490 -a 0 -x {10.0 9.0 2240 ------- null} - -t 2.55189 -s 10 -d 7 -p ack -e 40 -c 0 -i 4490 -a 0 -x {10.0 9.0 2240 ------- null} h -t 2.55189 -s 10 -d 7 -p ack -e 40 -c 0 -i 4490 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.55198 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4485 -a 0 -x {9.0 10.0 2247 ------- null} + -t 2.55198 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4485 -a 0 -x {9.0 10.0 2247 ------- null} h -t 2.55198 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4485 -a 0 -x {9.0 10.0 2247 ------- null} r -t 2.55235 -s 0 -d 9 -p ack -e 40 -c 0 -i 4480 -a 0 -x {10.0 9.0 2235 ------- null} + -t 2.55235 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4491 -a 0 -x {9.0 10.0 2250 ------- null} - -t 2.55235 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4491 -a 0 -x {9.0 10.0 2250 ------- null} h -t 2.55235 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4491 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.55245 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4477 -a 0 -x {9.0 10.0 2243 ------- null} - -t 2.55245 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4477 -a 0 -x {9.0 10.0 2243 ------- null} h -t 2.55245 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4477 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.55262 -s 0 -d 9 -p ack -e 40 -c 0 -i 4484 -a 0 -x {10.0 9.0 2237 ------- null} - -t 2.55262 -s 0 -d 9 -p ack -e 40 -c 0 -i 4484 -a 0 -x {10.0 9.0 2237 ------- null} h -t 2.55262 -s 0 -d 9 -p ack -e 40 -c 0 -i 4484 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.55283 -s 10 -d 7 -p ack -e 40 -c 0 -i 4488 -a 0 -x {10.0 9.0 2239 ------- null} + -t 2.55283 -s 7 -d 0 -p ack -e 40 -c 0 -i 4488 -a 0 -x {10.0 9.0 2239 ------- null} h -t 2.55283 -s 7 -d 8 -p ack -e 40 -c 0 -i 4488 -a 0 -x {10.0 9.0 2239 ------- null} r -t 2.55294 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4487 -a 0 -x {9.0 10.0 2248 ------- null} + -t 2.55294 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4487 -a 0 -x {9.0 10.0 2248 ------- null} h -t 2.55294 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4487 -a 0 -x {9.0 10.0 2248 ------- null} r -t 2.55298 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4473 -a 0 -x {9.0 10.0 2241 ------- null} + -t 2.55298 -s 10 -d 7 -p ack -e 40 -c 0 -i 4492 -a 0 -x {10.0 9.0 2241 ------- null} - -t 2.55298 -s 10 -d 7 -p ack -e 40 -c 0 -i 4492 -a 0 -x {10.0 9.0 2241 ------- null} h -t 2.55298 -s 10 -d 7 -p ack -e 40 -c 0 -i 4492 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.55354 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4479 -a 0 -x {9.0 10.0 2244 ------- null} - -t 2.55354 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4479 -a 0 -x {9.0 10.0 2244 ------- null} h -t 2.55354 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4479 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.5536 -s 0 -d 9 -p ack -e 40 -c 0 -i 4482 -a 0 -x {10.0 9.0 2236 ------- null} + -t 2.5536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4493 -a 0 -x {9.0 10.0 2251 ------- null} - -t 2.5536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4493 -a 0 -x {9.0 10.0 2251 ------- null} h -t 2.5536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4493 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.55363 -s 0 -d 9 -p ack -e 40 -c 0 -i 4486 -a 0 -x {10.0 9.0 2238 ------- null} - -t 2.55363 -s 0 -d 9 -p ack -e 40 -c 0 -i 4486 -a 0 -x {10.0 9.0 2238 ------- null} h -t 2.55363 -s 0 -d 9 -p ack -e 40 -c 0 -i 4486 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.55392 -s 10 -d 7 -p ack -e 40 -c 0 -i 4490 -a 0 -x {10.0 9.0 2240 ------- null} + -t 2.55392 -s 7 -d 0 -p ack -e 40 -c 0 -i 4490 -a 0 -x {10.0 9.0 2240 ------- null} h -t 2.55392 -s 7 -d 8 -p ack -e 40 -c 0 -i 4490 -a 0 -x {10.0 9.0 2240 ------- null} r -t 2.55406 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4475 -a 0 -x {9.0 10.0 2242 ------- null} + -t 2.55406 -s 10 -d 7 -p ack -e 40 -c 0 -i 4494 -a 0 -x {10.0 9.0 2242 ------- null} - -t 2.55406 -s 10 -d 7 -p ack -e 40 -c 0 -i 4494 -a 0 -x {10.0 9.0 2242 ------- null} h -t 2.55406 -s 10 -d 7 -p ack -e 40 -c 0 -i 4494 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.55408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4489 -a 0 -x {9.0 10.0 2249 ------- null} + -t 2.55408 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4489 -a 0 -x {9.0 10.0 2249 ------- null} h -t 2.55408 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4489 -a 0 -x {9.0 10.0 2249 ------- null} + -t 2.55462 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4481 -a 0 -x {9.0 10.0 2245 ------- null} - -t 2.55462 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4481 -a 0 -x {9.0 10.0 2245 ------- null} h -t 2.55462 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4481 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.55466 -s 0 -d 9 -p ack -e 40 -c 0 -i 4484 -a 0 -x {10.0 9.0 2237 ------- null} + -t 2.55466 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4495 -a 0 -x {9.0 10.0 2252 ------- null} - -t 2.55466 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4495 -a 0 -x {9.0 10.0 2252 ------- null} h -t 2.55466 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4495 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.5547 -s 0 -d 9 -p ack -e 40 -c 0 -i 4488 -a 0 -x {10.0 9.0 2239 ------- null} - -t 2.5547 -s 0 -d 9 -p ack -e 40 -c 0 -i 4488 -a 0 -x {10.0 9.0 2239 ------- null} h -t 2.5547 -s 0 -d 9 -p ack -e 40 -c 0 -i 4488 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.55501 -s 10 -d 7 -p ack -e 40 -c 0 -i 4492 -a 0 -x {10.0 9.0 2241 ------- null} + -t 2.55501 -s 7 -d 0 -p ack -e 40 -c 0 -i 4492 -a 0 -x {10.0 9.0 2241 ------- null} h -t 2.55501 -s 7 -d 8 -p ack -e 40 -c 0 -i 4492 -a 0 -x {10.0 9.0 2241 ------- null} r -t 2.55515 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4491 -a 0 -x {9.0 10.0 2250 ------- null} + -t 2.55515 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4491 -a 0 -x {9.0 10.0 2250 ------- null} h -t 2.55515 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4491 -a 0 -x {9.0 10.0 2250 ------- null} r -t 2.55525 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4477 -a 0 -x {9.0 10.0 2243 ------- null} + -t 2.55525 -s 10 -d 7 -p ack -e 40 -c 0 -i 4496 -a 0 -x {10.0 9.0 2243 ------- null} - -t 2.55525 -s 10 -d 7 -p ack -e 40 -c 0 -i 4496 -a 0 -x {10.0 9.0 2243 ------- null} h -t 2.55525 -s 10 -d 7 -p ack -e 40 -c 0 -i 4496 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.55566 -s 0 -d 9 -p ack -e 40 -c 0 -i 4486 -a 0 -x {10.0 9.0 2238 ------- null} + -t 2.55566 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4497 -a 0 -x {9.0 10.0 2253 ------- null} - -t 2.55566 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4497 -a 0 -x {9.0 10.0 2253 ------- null} h -t 2.55566 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4497 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.55571 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4483 -a 0 -x {9.0 10.0 2246 ------- null} - -t 2.55571 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4483 -a 0 -x {9.0 10.0 2246 ------- null} h -t 2.55571 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4483 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.5559 -s 0 -d 9 -p ack -e 40 -c 0 -i 4490 -a 0 -x {10.0 9.0 2240 ------- null} - -t 2.5559 -s 0 -d 9 -p ack -e 40 -c 0 -i 4490 -a 0 -x {10.0 9.0 2240 ------- null} h -t 2.5559 -s 0 -d 9 -p ack -e 40 -c 0 -i 4490 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.5561 -s 10 -d 7 -p ack -e 40 -c 0 -i 4494 -a 0 -x {10.0 9.0 2242 ------- null} + -t 2.5561 -s 7 -d 0 -p ack -e 40 -c 0 -i 4494 -a 0 -x {10.0 9.0 2242 ------- null} h -t 2.5561 -s 7 -d 8 -p ack -e 40 -c 0 -i 4494 -a 0 -x {10.0 9.0 2242 ------- null} r -t 2.55634 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4479 -a 0 -x {9.0 10.0 2244 ------- null} + -t 2.55634 -s 10 -d 7 -p ack -e 40 -c 0 -i 4498 -a 0 -x {10.0 9.0 2244 ------- null} - -t 2.55634 -s 10 -d 7 -p ack -e 40 -c 0 -i 4498 -a 0 -x {10.0 9.0 2244 ------- null} h -t 2.55634 -s 10 -d 7 -p ack -e 40 -c 0 -i 4498 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.5564 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4493 -a 0 -x {9.0 10.0 2251 ------- null} + -t 2.5564 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4493 -a 0 -x {9.0 10.0 2251 ------- null} h -t 2.5564 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4493 -a 0 -x {9.0 10.0 2251 ------- null} r -t 2.55674 -s 0 -d 9 -p ack -e 40 -c 0 -i 4488 -a 0 -x {10.0 9.0 2239 ------- null} + -t 2.55674 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4499 -a 0 -x {9.0 10.0 2254 ------- null} - -t 2.55674 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4499 -a 0 -x {9.0 10.0 2254 ------- null} h -t 2.55674 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4499 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.5568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4485 -a 0 -x {9.0 10.0 2247 ------- null} - -t 2.5568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4485 -a 0 -x {9.0 10.0 2247 ------- null} h -t 2.5568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4485 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.55693 -s 0 -d 9 -p ack -e 40 -c 0 -i 4492 -a 0 -x {10.0 9.0 2241 ------- null} - -t 2.55693 -s 0 -d 9 -p ack -e 40 -c 0 -i 4492 -a 0 -x {10.0 9.0 2241 ------- null} h -t 2.55693 -s 0 -d 9 -p ack -e 40 -c 0 -i 4492 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.55728 -s 10 -d 7 -p ack -e 40 -c 0 -i 4496 -a 0 -x {10.0 9.0 2243 ------- null} + -t 2.55728 -s 7 -d 0 -p ack -e 40 -c 0 -i 4496 -a 0 -x {10.0 9.0 2243 ------- null} h -t 2.55728 -s 7 -d 8 -p ack -e 40 -c 0 -i 4496 -a 0 -x {10.0 9.0 2243 ------- null} r -t 2.55742 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4481 -a 0 -x {9.0 10.0 2245 ------- null} + -t 2.55742 -s 10 -d 7 -p ack -e 40 -c 0 -i 4500 -a 0 -x {10.0 9.0 2245 ------- null} - -t 2.55742 -s 10 -d 7 -p ack -e 40 -c 0 -i 4500 -a 0 -x {10.0 9.0 2245 ------- null} h -t 2.55742 -s 10 -d 7 -p ack -e 40 -c 0 -i 4500 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.55746 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4495 -a 0 -x {9.0 10.0 2252 ------- null} + -t 2.55746 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4495 -a 0 -x {9.0 10.0 2252 ------- null} h -t 2.55746 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4495 -a 0 -x {9.0 10.0 2252 ------- null} + -t 2.55789 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4487 -a 0 -x {9.0 10.0 2248 ------- null} - -t 2.55789 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4487 -a 0 -x {9.0 10.0 2248 ------- null} h -t 2.55789 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4487 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.55794 -s 0 -d 9 -p ack -e 40 -c 0 -i 4490 -a 0 -x {10.0 9.0 2240 ------- null} + -t 2.55794 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4501 -a 0 -x {9.0 10.0 2255 ------- null} - -t 2.55794 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4501 -a 0 -x {9.0 10.0 2255 ------- null} h -t 2.55794 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4501 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.55797 -s 0 -d 9 -p ack -e 40 -c 0 -i 4494 -a 0 -x {10.0 9.0 2242 ------- null} - -t 2.55797 -s 0 -d 9 -p ack -e 40 -c 0 -i 4494 -a 0 -x {10.0 9.0 2242 ------- null} h -t 2.55797 -s 0 -d 9 -p ack -e 40 -c 0 -i 4494 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.55837 -s 10 -d 7 -p ack -e 40 -c 0 -i 4498 -a 0 -x {10.0 9.0 2244 ------- null} + -t 2.55837 -s 7 -d 0 -p ack -e 40 -c 0 -i 4498 -a 0 -x {10.0 9.0 2244 ------- null} h -t 2.55837 -s 7 -d 8 -p ack -e 40 -c 0 -i 4498 -a 0 -x {10.0 9.0 2244 ------- null} r -t 2.55846 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4497 -a 0 -x {9.0 10.0 2253 ------- null} + -t 2.55846 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4497 -a 0 -x {9.0 10.0 2253 ------- null} h -t 2.55846 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4497 -a 0 -x {9.0 10.0 2253 ------- null} r -t 2.55851 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4483 -a 0 -x {9.0 10.0 2246 ------- null} + -t 2.55851 -s 10 -d 7 -p ack -e 40 -c 0 -i 4502 -a 0 -x {10.0 9.0 2246 ------- null} - -t 2.55851 -s 10 -d 7 -p ack -e 40 -c 0 -i 4502 -a 0 -x {10.0 9.0 2246 ------- null} h -t 2.55851 -s 10 -d 7 -p ack -e 40 -c 0 -i 4502 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.55896 -s 0 -d 9 -p ack -e 40 -c 0 -i 4492 -a 0 -x {10.0 9.0 2241 ------- null} + -t 2.55896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4503 -a 0 -x {9.0 10.0 2256 ------- null} - -t 2.55896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4503 -a 0 -x {9.0 10.0 2256 ------- null} h -t 2.55896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4503 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.55898 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4489 -a 0 -x {9.0 10.0 2249 ------- null} - -t 2.55898 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4489 -a 0 -x {9.0 10.0 2249 ------- null} h -t 2.55898 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4489 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.55918 -s 0 -d 9 -p ack -e 40 -c 0 -i 4496 -a 0 -x {10.0 9.0 2243 ------- null} - -t 2.55918 -s 0 -d 9 -p ack -e 40 -c 0 -i 4496 -a 0 -x {10.0 9.0 2243 ------- null} h -t 2.55918 -s 0 -d 9 -p ack -e 40 -c 0 -i 4496 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.55946 -s 10 -d 7 -p ack -e 40 -c 0 -i 4500 -a 0 -x {10.0 9.0 2245 ------- null} + -t 2.55946 -s 7 -d 0 -p ack -e 40 -c 0 -i 4500 -a 0 -x {10.0 9.0 2245 ------- null} h -t 2.55946 -s 7 -d 8 -p ack -e 40 -c 0 -i 4500 -a 0 -x {10.0 9.0 2245 ------- null} r -t 2.55954 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4499 -a 0 -x {9.0 10.0 2254 ------- null} + -t 2.55954 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4499 -a 0 -x {9.0 10.0 2254 ------- null} h -t 2.55954 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4499 -a 0 -x {9.0 10.0 2254 ------- null} r -t 2.5596 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4485 -a 0 -x {9.0 10.0 2247 ------- null} + -t 2.5596 -s 10 -d 7 -p ack -e 40 -c 0 -i 4504 -a 0 -x {10.0 9.0 2247 ------- null} - -t 2.5596 -s 10 -d 7 -p ack -e 40 -c 0 -i 4504 -a 0 -x {10.0 9.0 2247 ------- null} h -t 2.5596 -s 10 -d 7 -p ack -e 40 -c 0 -i 4504 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.56 -s 0 -d 9 -p ack -e 40 -c 0 -i 4494 -a 0 -x {10.0 9.0 2242 ------- null} + -t 2.56 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4505 -a 0 -x {9.0 10.0 2257 ------- null} - -t 2.56 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4505 -a 0 -x {9.0 10.0 2257 ------- null} h -t 2.56 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4505 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.56006 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4491 -a 0 -x {9.0 10.0 2250 ------- null} - -t 2.56006 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4491 -a 0 -x {9.0 10.0 2250 ------- null} h -t 2.56006 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4491 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.56018 -s 0 -d 9 -p ack -e 40 -c 0 -i 4498 -a 0 -x {10.0 9.0 2244 ------- null} - -t 2.56018 -s 0 -d 9 -p ack -e 40 -c 0 -i 4498 -a 0 -x {10.0 9.0 2244 ------- null} h -t 2.56018 -s 0 -d 9 -p ack -e 40 -c 0 -i 4498 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.56054 -s 10 -d 7 -p ack -e 40 -c 0 -i 4502 -a 0 -x {10.0 9.0 2246 ------- null} + -t 2.56054 -s 7 -d 0 -p ack -e 40 -c 0 -i 4502 -a 0 -x {10.0 9.0 2246 ------- null} h -t 2.56054 -s 7 -d 8 -p ack -e 40 -c 0 -i 4502 -a 0 -x {10.0 9.0 2246 ------- null} r -t 2.56069 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4487 -a 0 -x {9.0 10.0 2248 ------- null} + -t 2.56069 -s 10 -d 7 -p ack -e 40 -c 0 -i 4506 -a 0 -x {10.0 9.0 2248 ------- null} - -t 2.56069 -s 10 -d 7 -p ack -e 40 -c 0 -i 4506 -a 0 -x {10.0 9.0 2248 ------- null} h -t 2.56069 -s 10 -d 7 -p ack -e 40 -c 0 -i 4506 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.56074 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4501 -a 0 -x {9.0 10.0 2255 ------- null} + -t 2.56074 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4501 -a 0 -x {9.0 10.0 2255 ------- null} h -t 2.56074 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4501 -a 0 -x {9.0 10.0 2255 ------- null} + -t 2.56115 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4493 -a 0 -x {9.0 10.0 2251 ------- null} - -t 2.56115 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4493 -a 0 -x {9.0 10.0 2251 ------- null} h -t 2.56115 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4493 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.56122 -s 0 -d 9 -p ack -e 40 -c 0 -i 4496 -a 0 -x {10.0 9.0 2243 ------- null} + -t 2.56122 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4507 -a 0 -x {9.0 10.0 2258 ------- null} - -t 2.56122 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4507 -a 0 -x {9.0 10.0 2258 ------- null} h -t 2.56122 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4507 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.56138 -s 0 -d 9 -p ack -e 40 -c 0 -i 4500 -a 0 -x {10.0 9.0 2245 ------- null} - -t 2.56138 -s 0 -d 9 -p ack -e 40 -c 0 -i 4500 -a 0 -x {10.0 9.0 2245 ------- null} h -t 2.56138 -s 0 -d 9 -p ack -e 40 -c 0 -i 4500 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.56163 -s 10 -d 7 -p ack -e 40 -c 0 -i 4504 -a 0 -x {10.0 9.0 2247 ------- null} + -t 2.56163 -s 7 -d 0 -p ack -e 40 -c 0 -i 4504 -a 0 -x {10.0 9.0 2247 ------- null} h -t 2.56163 -s 7 -d 8 -p ack -e 40 -c 0 -i 4504 -a 0 -x {10.0 9.0 2247 ------- null} r -t 2.56176 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4503 -a 0 -x {9.0 10.0 2256 ------- null} + -t 2.56176 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4503 -a 0 -x {9.0 10.0 2256 ------- null} h -t 2.56176 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4503 -a 0 -x {9.0 10.0 2256 ------- null} r -t 2.56178 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4489 -a 0 -x {9.0 10.0 2249 ------- null} + -t 2.56178 -s 10 -d 7 -p ack -e 40 -c 0 -i 4508 -a 0 -x {10.0 9.0 2249 ------- null} - -t 2.56178 -s 10 -d 7 -p ack -e 40 -c 0 -i 4508 -a 0 -x {10.0 9.0 2249 ------- null} h -t 2.56178 -s 10 -d 7 -p ack -e 40 -c 0 -i 4508 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.56221 -s 0 -d 9 -p ack -e 40 -c 0 -i 4498 -a 0 -x {10.0 9.0 2244 ------- null} + -t 2.56221 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4509 -a 0 -x {9.0 10.0 2259 ------- null} - -t 2.56221 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4509 -a 0 -x {9.0 10.0 2259 ------- null} h -t 2.56221 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4509 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.56224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4495 -a 0 -x {9.0 10.0 2252 ------- null} - -t 2.56224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4495 -a 0 -x {9.0 10.0 2252 ------- null} h -t 2.56224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4495 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.56234 -s 0 -d 9 -p ack -e 40 -c 0 -i 4502 -a 0 -x {10.0 9.0 2246 ------- null} - -t 2.56234 -s 0 -d 9 -p ack -e 40 -c 0 -i 4502 -a 0 -x {10.0 9.0 2246 ------- null} h -t 2.56234 -s 0 -d 9 -p ack -e 40 -c 0 -i 4502 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.56272 -s 10 -d 7 -p ack -e 40 -c 0 -i 4506 -a 0 -x {10.0 9.0 2248 ------- null} + -t 2.56272 -s 7 -d 0 -p ack -e 40 -c 0 -i 4506 -a 0 -x {10.0 9.0 2248 ------- null} h -t 2.56272 -s 7 -d 8 -p ack -e 40 -c 0 -i 4506 -a 0 -x {10.0 9.0 2248 ------- null} r -t 2.5628 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4505 -a 0 -x {9.0 10.0 2257 ------- null} + -t 2.5628 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4505 -a 0 -x {9.0 10.0 2257 ------- null} h -t 2.5628 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4505 -a 0 -x {9.0 10.0 2257 ------- null} r -t 2.56286 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4491 -a 0 -x {9.0 10.0 2250 ------- null} + -t 2.56286 -s 10 -d 7 -p ack -e 40 -c 0 -i 4510 -a 0 -x {10.0 9.0 2250 ------- null} - -t 2.56286 -s 10 -d 7 -p ack -e 40 -c 0 -i 4510 -a 0 -x {10.0 9.0 2250 ------- null} h -t 2.56286 -s 10 -d 7 -p ack -e 40 -c 0 -i 4510 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.56333 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4497 -a 0 -x {9.0 10.0 2253 ------- null} - -t 2.56333 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4497 -a 0 -x {9.0 10.0 2253 ------- null} h -t 2.56333 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4497 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.56341 -s 0 -d 9 -p ack -e 40 -c 0 -i 4500 -a 0 -x {10.0 9.0 2245 ------- null} + -t 2.56341 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4511 -a 0 -x {9.0 10.0 2260 ------- null} - -t 2.56341 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4511 -a 0 -x {9.0 10.0 2260 ------- null} h -t 2.56341 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4511 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.5635 -s 0 -d 9 -p ack -e 40 -c 0 -i 4504 -a 0 -x {10.0 9.0 2247 ------- null} - -t 2.5635 -s 0 -d 9 -p ack -e 40 -c 0 -i 4504 -a 0 -x {10.0 9.0 2247 ------- null} h -t 2.5635 -s 0 -d 9 -p ack -e 40 -c 0 -i 4504 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.56381 -s 10 -d 7 -p ack -e 40 -c 0 -i 4508 -a 0 -x {10.0 9.0 2249 ------- null} + -t 2.56381 -s 7 -d 0 -p ack -e 40 -c 0 -i 4508 -a 0 -x {10.0 9.0 2249 ------- null} h -t 2.56381 -s 7 -d 8 -p ack -e 40 -c 0 -i 4508 -a 0 -x {10.0 9.0 2249 ------- null} r -t 2.56395 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4493 -a 0 -x {9.0 10.0 2251 ------- null} + -t 2.56395 -s 10 -d 7 -p ack -e 40 -c 0 -i 4512 -a 0 -x {10.0 9.0 2251 ------- null} - -t 2.56395 -s 10 -d 7 -p ack -e 40 -c 0 -i 4512 -a 0 -x {10.0 9.0 2251 ------- null} h -t 2.56395 -s 10 -d 7 -p ack -e 40 -c 0 -i 4512 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.56402 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4507 -a 0 -x {9.0 10.0 2258 ------- null} + -t 2.56402 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4507 -a 0 -x {9.0 10.0 2258 ------- null} h -t 2.56402 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4507 -a 0 -x {9.0 10.0 2258 ------- null} r -t 2.56437 -s 0 -d 9 -p ack -e 40 -c 0 -i 4502 -a 0 -x {10.0 9.0 2246 ------- null} + -t 2.56437 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4513 -a 0 -x {9.0 10.0 2261 ------- null} - -t 2.56437 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4513 -a 0 -x {9.0 10.0 2261 ------- null} h -t 2.56437 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4513 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.56442 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4499 -a 0 -x {9.0 10.0 2254 ------- null} - -t 2.56442 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4499 -a 0 -x {9.0 10.0 2254 ------- null} h -t 2.56442 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4499 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.56461 -s 0 -d 9 -p ack -e 40 -c 0 -i 4506 -a 0 -x {10.0 9.0 2248 ------- null} - -t 2.56461 -s 0 -d 9 -p ack -e 40 -c 0 -i 4506 -a 0 -x {10.0 9.0 2248 ------- null} h -t 2.56461 -s 0 -d 9 -p ack -e 40 -c 0 -i 4506 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.5649 -s 10 -d 7 -p ack -e 40 -c 0 -i 4510 -a 0 -x {10.0 9.0 2250 ------- null} + -t 2.5649 -s 7 -d 0 -p ack -e 40 -c 0 -i 4510 -a 0 -x {10.0 9.0 2250 ------- null} h -t 2.5649 -s 7 -d 8 -p ack -e 40 -c 0 -i 4510 -a 0 -x {10.0 9.0 2250 ------- null} r -t 2.56501 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4509 -a 0 -x {9.0 10.0 2259 ------- null} + -t 2.56501 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4509 -a 0 -x {9.0 10.0 2259 ------- null} h -t 2.56501 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4509 -a 0 -x {9.0 10.0 2259 ------- null} r -t 2.56504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4495 -a 0 -x {9.0 10.0 2252 ------- null} + -t 2.56504 -s 10 -d 7 -p ack -e 40 -c 0 -i 4514 -a 0 -x {10.0 9.0 2252 ------- null} - -t 2.56504 -s 10 -d 7 -p ack -e 40 -c 0 -i 4514 -a 0 -x {10.0 9.0 2252 ------- null} h -t 2.56504 -s 10 -d 7 -p ack -e 40 -c 0 -i 4514 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.5655 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4501 -a 0 -x {9.0 10.0 2255 ------- null} - -t 2.5655 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4501 -a 0 -x {9.0 10.0 2255 ------- null} h -t 2.5655 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4501 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.56554 -s 0 -d 9 -p ack -e 40 -c 0 -i 4504 -a 0 -x {10.0 9.0 2247 ------- null} + -t 2.56554 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4515 -a 0 -x {9.0 10.0 2262 ------- null} - -t 2.56554 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4515 -a 0 -x {9.0 10.0 2262 ------- null} h -t 2.56554 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4515 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.56574 -s 0 -d 9 -p ack -e 40 -c 0 -i 4508 -a 0 -x {10.0 9.0 2249 ------- null} - -t 2.56574 -s 0 -d 9 -p ack -e 40 -c 0 -i 4508 -a 0 -x {10.0 9.0 2249 ------- null} h -t 2.56574 -s 0 -d 9 -p ack -e 40 -c 0 -i 4508 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.56598 -s 10 -d 7 -p ack -e 40 -c 0 -i 4512 -a 0 -x {10.0 9.0 2251 ------- null} + -t 2.56598 -s 7 -d 0 -p ack -e 40 -c 0 -i 4512 -a 0 -x {10.0 9.0 2251 ------- null} h -t 2.56598 -s 7 -d 8 -p ack -e 40 -c 0 -i 4512 -a 0 -x {10.0 9.0 2251 ------- null} r -t 2.56613 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4497 -a 0 -x {9.0 10.0 2253 ------- null} + -t 2.56613 -s 10 -d 7 -p ack -e 40 -c 0 -i 4516 -a 0 -x {10.0 9.0 2253 ------- null} - -t 2.56613 -s 10 -d 7 -p ack -e 40 -c 0 -i 4516 -a 0 -x {10.0 9.0 2253 ------- null} h -t 2.56613 -s 10 -d 7 -p ack -e 40 -c 0 -i 4516 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.56621 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4511 -a 0 -x {9.0 10.0 2260 ------- null} + -t 2.56621 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4511 -a 0 -x {9.0 10.0 2260 ------- null} h -t 2.56621 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4511 -a 0 -x {9.0 10.0 2260 ------- null} + -t 2.56659 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4503 -a 0 -x {9.0 10.0 2256 ------- null} - -t 2.56659 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4503 -a 0 -x {9.0 10.0 2256 ------- null} h -t 2.56659 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4503 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.56664 -s 0 -d 9 -p ack -e 40 -c 0 -i 4506 -a 0 -x {10.0 9.0 2248 ------- null} + -t 2.56664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4517 -a 0 -x {9.0 10.0 2263 ------- null} - -t 2.56664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4517 -a 0 -x {9.0 10.0 2263 ------- null} h -t 2.56664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4517 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.56677 -s 0 -d 9 -p ack -e 40 -c 0 -i 4510 -a 0 -x {10.0 9.0 2250 ------- null} - -t 2.56677 -s 0 -d 9 -p ack -e 40 -c 0 -i 4510 -a 0 -x {10.0 9.0 2250 ------- null} h -t 2.56677 -s 0 -d 9 -p ack -e 40 -c 0 -i 4510 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.56707 -s 10 -d 7 -p ack -e 40 -c 0 -i 4514 -a 0 -x {10.0 9.0 2252 ------- null} + -t 2.56707 -s 7 -d 0 -p ack -e 40 -c 0 -i 4514 -a 0 -x {10.0 9.0 2252 ------- null} h -t 2.56707 -s 7 -d 8 -p ack -e 40 -c 0 -i 4514 -a 0 -x {10.0 9.0 2252 ------- null} r -t 2.56717 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4513 -a 0 -x {9.0 10.0 2261 ------- null} + -t 2.56717 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4513 -a 0 -x {9.0 10.0 2261 ------- null} h -t 2.56717 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4513 -a 0 -x {9.0 10.0 2261 ------- null} r -t 2.56722 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4499 -a 0 -x {9.0 10.0 2254 ------- null} + -t 2.56722 -s 10 -d 7 -p ack -e 40 -c 0 -i 4518 -a 0 -x {10.0 9.0 2254 ------- null} - -t 2.56722 -s 10 -d 7 -p ack -e 40 -c 0 -i 4518 -a 0 -x {10.0 9.0 2254 ------- null} h -t 2.56722 -s 10 -d 7 -p ack -e 40 -c 0 -i 4518 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.56768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4505 -a 0 -x {9.0 10.0 2257 ------- null} - -t 2.56768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4505 -a 0 -x {9.0 10.0 2257 ------- null} h -t 2.56768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4505 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.56778 -s 0 -d 9 -p ack -e 40 -c 0 -i 4508 -a 0 -x {10.0 9.0 2249 ------- null} + -t 2.56778 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4519 -a 0 -x {9.0 10.0 2264 ------- null} - -t 2.56778 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4519 -a 0 -x {9.0 10.0 2264 ------- null} h -t 2.56778 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4519 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.56782 -s 0 -d 9 -p ack -e 40 -c 0 -i 4512 -a 0 -x {10.0 9.0 2251 ------- null} - -t 2.56782 -s 0 -d 9 -p ack -e 40 -c 0 -i 4512 -a 0 -x {10.0 9.0 2251 ------- null} h -t 2.56782 -s 0 -d 9 -p ack -e 40 -c 0 -i 4512 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.56816 -s 10 -d 7 -p ack -e 40 -c 0 -i 4516 -a 0 -x {10.0 9.0 2253 ------- null} + -t 2.56816 -s 7 -d 0 -p ack -e 40 -c 0 -i 4516 -a 0 -x {10.0 9.0 2253 ------- null} h -t 2.56816 -s 7 -d 8 -p ack -e 40 -c 0 -i 4516 -a 0 -x {10.0 9.0 2253 ------- null} r -t 2.5683 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4501 -a 0 -x {9.0 10.0 2255 ------- null} + -t 2.5683 -s 10 -d 7 -p ack -e 40 -c 0 -i 4520 -a 0 -x {10.0 9.0 2255 ------- null} - -t 2.5683 -s 10 -d 7 -p ack -e 40 -c 0 -i 4520 -a 0 -x {10.0 9.0 2255 ------- null} h -t 2.5683 -s 10 -d 7 -p ack -e 40 -c 0 -i 4520 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.56834 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4515 -a 0 -x {9.0 10.0 2262 ------- null} + -t 2.56834 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4515 -a 0 -x {9.0 10.0 2262 ------- null} h -t 2.56834 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4515 -a 0 -x {9.0 10.0 2262 ------- null} + -t 2.56877 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4507 -a 0 -x {9.0 10.0 2258 ------- null} - -t 2.56877 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4507 -a 0 -x {9.0 10.0 2258 ------- null} h -t 2.56877 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4507 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.5688 -s 0 -d 9 -p ack -e 40 -c 0 -i 4510 -a 0 -x {10.0 9.0 2250 ------- null} + -t 2.5688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4521 -a 0 -x {9.0 10.0 2265 ------- null} - -t 2.5688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4521 -a 0 -x {9.0 10.0 2265 ------- null} h -t 2.5688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4521 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.56904 -s 0 -d 9 -p ack -e 40 -c 0 -i 4514 -a 0 -x {10.0 9.0 2252 ------- null} - -t 2.56904 -s 0 -d 9 -p ack -e 40 -c 0 -i 4514 -a 0 -x {10.0 9.0 2252 ------- null} h -t 2.56904 -s 0 -d 9 -p ack -e 40 -c 0 -i 4514 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.56925 -s 10 -d 7 -p ack -e 40 -c 0 -i 4518 -a 0 -x {10.0 9.0 2254 ------- null} + -t 2.56925 -s 7 -d 0 -p ack -e 40 -c 0 -i 4518 -a 0 -x {10.0 9.0 2254 ------- null} h -t 2.56925 -s 7 -d 8 -p ack -e 40 -c 0 -i 4518 -a 0 -x {10.0 9.0 2254 ------- null} r -t 2.56939 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4503 -a 0 -x {9.0 10.0 2256 ------- null} + -t 2.56939 -s 10 -d 7 -p ack -e 40 -c 0 -i 4522 -a 0 -x {10.0 9.0 2256 ------- null} - -t 2.56939 -s 10 -d 7 -p ack -e 40 -c 0 -i 4522 -a 0 -x {10.0 9.0 2256 ------- null} h -t 2.56939 -s 10 -d 7 -p ack -e 40 -c 0 -i 4522 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.56944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4517 -a 0 -x {9.0 10.0 2263 ------- null} + -t 2.56944 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4517 -a 0 -x {9.0 10.0 2263 ------- null} h -t 2.56944 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4517 -a 0 -x {9.0 10.0 2263 ------- null} r -t 2.56986 -s 0 -d 9 -p ack -e 40 -c 0 -i 4512 -a 0 -x {10.0 9.0 2251 ------- null} + -t 2.56986 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4523 -a 0 -x {9.0 10.0 2266 ------- null} - -t 2.56986 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4523 -a 0 -x {9.0 10.0 2266 ------- null} h -t 2.56986 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4523 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.57 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4509 -a 0 -x {9.0 10.0 2259 ------- null} - -t 2.57 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4509 -a 0 -x {9.0 10.0 2259 ------- null} h -t 2.57 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4509 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.57019 -s 0 -d 9 -p ack -e 40 -c 0 -i 4516 -a 0 -x {10.0 9.0 2253 ------- null} - -t 2.57019 -s 0 -d 9 -p ack -e 40 -c 0 -i 4516 -a 0 -x {10.0 9.0 2253 ------- null} h -t 2.57019 -s 0 -d 9 -p ack -e 40 -c 0 -i 4516 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.57034 -s 10 -d 7 -p ack -e 40 -c 0 -i 4520 -a 0 -x {10.0 9.0 2255 ------- null} + -t 2.57034 -s 7 -d 0 -p ack -e 40 -c 0 -i 4520 -a 0 -x {10.0 9.0 2255 ------- null} h -t 2.57034 -s 7 -d 8 -p ack -e 40 -c 0 -i 4520 -a 0 -x {10.0 9.0 2255 ------- null} r -t 2.57048 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4505 -a 0 -x {9.0 10.0 2257 ------- null} + -t 2.57048 -s 10 -d 7 -p ack -e 40 -c 0 -i 4524 -a 0 -x {10.0 9.0 2257 ------- null} - -t 2.57048 -s 10 -d 7 -p ack -e 40 -c 0 -i 4524 -a 0 -x {10.0 9.0 2257 ------- null} h -t 2.57048 -s 10 -d 7 -p ack -e 40 -c 0 -i 4524 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.57058 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4519 -a 0 -x {9.0 10.0 2264 ------- null} + -t 2.57058 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4519 -a 0 -x {9.0 10.0 2264 ------- null} h -t 2.57058 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4519 -a 0 -x {9.0 10.0 2264 ------- null} r -t 2.57107 -s 0 -d 9 -p ack -e 40 -c 0 -i 4514 -a 0 -x {10.0 9.0 2252 ------- null} + -t 2.57107 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4525 -a 0 -x {9.0 10.0 2267 ------- null} - -t 2.57107 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4525 -a 0 -x {9.0 10.0 2267 ------- null} h -t 2.57107 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4525 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.57109 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4511 -a 0 -x {9.0 10.0 2260 ------- null} - -t 2.57109 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4511 -a 0 -x {9.0 10.0 2260 ------- null} h -t 2.57109 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4511 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.57139 -s 0 -d 9 -p ack -e 40 -c 0 -i 4518 -a 0 -x {10.0 9.0 2254 ------- null} - -t 2.57139 -s 0 -d 9 -p ack -e 40 -c 0 -i 4518 -a 0 -x {10.0 9.0 2254 ------- null} h -t 2.57139 -s 0 -d 9 -p ack -e 40 -c 0 -i 4518 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.57142 -s 10 -d 7 -p ack -e 40 -c 0 -i 4522 -a 0 -x {10.0 9.0 2256 ------- null} + -t 2.57142 -s 7 -d 0 -p ack -e 40 -c 0 -i 4522 -a 0 -x {10.0 9.0 2256 ------- null} h -t 2.57142 -s 7 -d 8 -p ack -e 40 -c 0 -i 4522 -a 0 -x {10.0 9.0 2256 ------- null} r -t 2.57157 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4507 -a 0 -x {9.0 10.0 2258 ------- null} + -t 2.57157 -s 10 -d 7 -p ack -e 40 -c 0 -i 4526 -a 0 -x {10.0 9.0 2258 ------- null} - -t 2.57157 -s 10 -d 7 -p ack -e 40 -c 0 -i 4526 -a 0 -x {10.0 9.0 2258 ------- null} h -t 2.57157 -s 10 -d 7 -p ack -e 40 -c 0 -i 4526 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.5716 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4521 -a 0 -x {9.0 10.0 2265 ------- null} + -t 2.5716 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4521 -a 0 -x {9.0 10.0 2265 ------- null} h -t 2.5716 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4521 -a 0 -x {9.0 10.0 2265 ------- null} r -t 2.57222 -s 0 -d 9 -p ack -e 40 -c 0 -i 4516 -a 0 -x {10.0 9.0 2253 ------- null} + -t 2.57222 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4527 -a 0 -x {9.0 10.0 2268 ------- null} - -t 2.57222 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4527 -a 0 -x {9.0 10.0 2268 ------- null} h -t 2.57222 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4527 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.57229 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4513 -a 0 -x {9.0 10.0 2261 ------- null} - -t 2.57229 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4513 -a 0 -x {9.0 10.0 2261 ------- null} h -t 2.57229 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4513 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.57251 -s 10 -d 7 -p ack -e 40 -c 0 -i 4524 -a 0 -x {10.0 9.0 2257 ------- null} + -t 2.57251 -s 7 -d 0 -p ack -e 40 -c 0 -i 4524 -a 0 -x {10.0 9.0 2257 ------- null} h -t 2.57251 -s 7 -d 8 -p ack -e 40 -c 0 -i 4524 -a 0 -x {10.0 9.0 2257 ------- null} + -t 2.57254 -s 0 -d 9 -p ack -e 40 -c 0 -i 4520 -a 0 -x {10.0 9.0 2255 ------- null} - -t 2.57254 -s 0 -d 9 -p ack -e 40 -c 0 -i 4520 -a 0 -x {10.0 9.0 2255 ------- null} h -t 2.57254 -s 0 -d 9 -p ack -e 40 -c 0 -i 4520 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.57266 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4523 -a 0 -x {9.0 10.0 2266 ------- null} + -t 2.57266 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4523 -a 0 -x {9.0 10.0 2266 ------- null} h -t 2.57266 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4523 -a 0 -x {9.0 10.0 2266 ------- null} r -t 2.5728 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4509 -a 0 -x {9.0 10.0 2259 ------- null} + -t 2.5728 -s 10 -d 7 -p ack -e 40 -c 0 -i 4528 -a 0 -x {10.0 9.0 2259 ------- null} - -t 2.5728 -s 10 -d 7 -p ack -e 40 -c 0 -i 4528 -a 0 -x {10.0 9.0 2259 ------- null} h -t 2.5728 -s 10 -d 7 -p ack -e 40 -c 0 -i 4528 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.57342 -s 0 -d 9 -p ack -e 40 -c 0 -i 4518 -a 0 -x {10.0 9.0 2254 ------- null} + -t 2.57342 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4529 -a 0 -x {9.0 10.0 2269 ------- null} - -t 2.57342 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4529 -a 0 -x {9.0 10.0 2269 ------- null} h -t 2.57342 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4529 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.57358 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4515 -a 0 -x {9.0 10.0 2262 ------- null} - -t 2.57358 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4515 -a 0 -x {9.0 10.0 2262 ------- null} h -t 2.57358 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4515 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.5736 -s 10 -d 7 -p ack -e 40 -c 0 -i 4526 -a 0 -x {10.0 9.0 2258 ------- null} + -t 2.5736 -s 7 -d 0 -p ack -e 40 -c 0 -i 4526 -a 0 -x {10.0 9.0 2258 ------- null} h -t 2.5736 -s 7 -d 8 -p ack -e 40 -c 0 -i 4526 -a 0 -x {10.0 9.0 2258 ------- null} + -t 2.57384 -s 0 -d 9 -p ack -e 40 -c 0 -i 4522 -a 0 -x {10.0 9.0 2256 ------- null} - -t 2.57384 -s 0 -d 9 -p ack -e 40 -c 0 -i 4522 -a 0 -x {10.0 9.0 2256 ------- null} h -t 2.57384 -s 0 -d 9 -p ack -e 40 -c 0 -i 4522 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.57387 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4525 -a 0 -x {9.0 10.0 2267 ------- null} + -t 2.57387 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4525 -a 0 -x {9.0 10.0 2267 ------- null} h -t 2.57387 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4525 -a 0 -x {9.0 10.0 2267 ------- null} r -t 2.57389 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4511 -a 0 -x {9.0 10.0 2260 ------- null} + -t 2.57389 -s 10 -d 7 -p ack -e 40 -c 0 -i 4530 -a 0 -x {10.0 9.0 2260 ------- null} - -t 2.57389 -s 10 -d 7 -p ack -e 40 -c 0 -i 4530 -a 0 -x {10.0 9.0 2260 ------- null} h -t 2.57389 -s 10 -d 7 -p ack -e 40 -c 0 -i 4530 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.57458 -s 0 -d 9 -p ack -e 40 -c 0 -i 4520 -a 0 -x {10.0 9.0 2255 ------- null} + -t 2.57458 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4531 -a 0 -x {9.0 10.0 2270 ------- null} - -t 2.57458 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4531 -a 0 -x {9.0 10.0 2270 ------- null} h -t 2.57458 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4531 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.57478 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4517 -a 0 -x {9.0 10.0 2263 ------- null} - -t 2.57478 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4517 -a 0 -x {9.0 10.0 2263 ------- null} h -t 2.57478 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4517 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.57483 -s 10 -d 7 -p ack -e 40 -c 0 -i 4528 -a 0 -x {10.0 9.0 2259 ------- null} + -t 2.57483 -s 7 -d 0 -p ack -e 40 -c 0 -i 4528 -a 0 -x {10.0 9.0 2259 ------- null} h -t 2.57483 -s 7 -d 8 -p ack -e 40 -c 0 -i 4528 -a 0 -x {10.0 9.0 2259 ------- null} + -t 2.5749 -s 0 -d 9 -p ack -e 40 -c 0 -i 4524 -a 0 -x {10.0 9.0 2257 ------- null} - -t 2.5749 -s 0 -d 9 -p ack -e 40 -c 0 -i 4524 -a 0 -x {10.0 9.0 2257 ------- null} h -t 2.5749 -s 0 -d 9 -p ack -e 40 -c 0 -i 4524 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.57502 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4527 -a 0 -x {9.0 10.0 2268 ------- null} + -t 2.57502 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4527 -a 0 -x {9.0 10.0 2268 ------- null} h -t 2.57502 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4527 -a 0 -x {9.0 10.0 2268 ------- null} r -t 2.57509 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4513 -a 0 -x {9.0 10.0 2261 ------- null} + -t 2.57509 -s 10 -d 7 -p ack -e 40 -c 0 -i 4532 -a 0 -x {10.0 9.0 2261 ------- null} - -t 2.57509 -s 10 -d 7 -p ack -e 40 -c 0 -i 4532 -a 0 -x {10.0 9.0 2261 ------- null} h -t 2.57509 -s 10 -d 7 -p ack -e 40 -c 0 -i 4532 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.57587 -s 0 -d 9 -p ack -e 40 -c 0 -i 4522 -a 0 -x {10.0 9.0 2256 ------- null} + -t 2.57587 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4533 -a 0 -x {9.0 10.0 2271 ------- null} - -t 2.57587 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4533 -a 0 -x {9.0 10.0 2271 ------- null} h -t 2.57587 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4533 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.57587 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4519 -a 0 -x {9.0 10.0 2264 ------- null} - -t 2.57587 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4519 -a 0 -x {9.0 10.0 2264 ------- null} h -t 2.57587 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4519 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.57592 -s 10 -d 7 -p ack -e 40 -c 0 -i 4530 -a 0 -x {10.0 9.0 2260 ------- null} + -t 2.57592 -s 7 -d 0 -p ack -e 40 -c 0 -i 4530 -a 0 -x {10.0 9.0 2260 ------- null} h -t 2.57592 -s 7 -d 8 -p ack -e 40 -c 0 -i 4530 -a 0 -x {10.0 9.0 2260 ------- null} + -t 2.57605 -s 0 -d 9 -p ack -e 40 -c 0 -i 4526 -a 0 -x {10.0 9.0 2258 ------- null} - -t 2.57605 -s 0 -d 9 -p ack -e 40 -c 0 -i 4526 -a 0 -x {10.0 9.0 2258 ------- null} h -t 2.57605 -s 0 -d 9 -p ack -e 40 -c 0 -i 4526 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.57622 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4529 -a 0 -x {9.0 10.0 2269 ------- null} + -t 2.57622 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4529 -a 0 -x {9.0 10.0 2269 ------- null} h -t 2.57622 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4529 -a 0 -x {9.0 10.0 2269 ------- null} r -t 2.57638 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4515 -a 0 -x {9.0 10.0 2262 ------- null} + -t 2.57638 -s 10 -d 7 -p ack -e 40 -c 0 -i 4534 -a 0 -x {10.0 9.0 2262 ------- null} - -t 2.57638 -s 10 -d 7 -p ack -e 40 -c 0 -i 4534 -a 0 -x {10.0 9.0 2262 ------- null} h -t 2.57638 -s 10 -d 7 -p ack -e 40 -c 0 -i 4534 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.57693 -s 0 -d 9 -p ack -e 40 -c 0 -i 4524 -a 0 -x {10.0 9.0 2257 ------- null} + -t 2.57693 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4535 -a 0 -x {9.0 10.0 2272 ------- null} - -t 2.57693 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4535 -a 0 -x {9.0 10.0 2272 ------- null} h -t 2.57693 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4535 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.57696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4521 -a 0 -x {9.0 10.0 2265 ------- null} - -t 2.57696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4521 -a 0 -x {9.0 10.0 2265 ------- null} h -t 2.57696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4521 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.5771 -s 0 -d 9 -p ack -e 40 -c 0 -i 4528 -a 0 -x {10.0 9.0 2259 ------- null} - -t 2.5771 -s 0 -d 9 -p ack -e 40 -c 0 -i 4528 -a 0 -x {10.0 9.0 2259 ------- null} h -t 2.5771 -s 0 -d 9 -p ack -e 40 -c 0 -i 4528 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.57712 -s 10 -d 7 -p ack -e 40 -c 0 -i 4532 -a 0 -x {10.0 9.0 2261 ------- null} + -t 2.57712 -s 7 -d 0 -p ack -e 40 -c 0 -i 4532 -a 0 -x {10.0 9.0 2261 ------- null} h -t 2.57712 -s 7 -d 8 -p ack -e 40 -c 0 -i 4532 -a 0 -x {10.0 9.0 2261 ------- null} r -t 2.57738 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4531 -a 0 -x {9.0 10.0 2270 ------- null} + -t 2.57738 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4531 -a 0 -x {9.0 10.0 2270 ------- null} h -t 2.57738 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4531 -a 0 -x {9.0 10.0 2270 ------- null} r -t 2.57758 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4517 -a 0 -x {9.0 10.0 2263 ------- null} + -t 2.57758 -s 10 -d 7 -p ack -e 40 -c 0 -i 4536 -a 0 -x {10.0 9.0 2263 ------- null} - -t 2.57758 -s 10 -d 7 -p ack -e 40 -c 0 -i 4536 -a 0 -x {10.0 9.0 2263 ------- null} h -t 2.57758 -s 10 -d 7 -p ack -e 40 -c 0 -i 4536 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.57805 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4523 -a 0 -x {9.0 10.0 2266 ------- null} - -t 2.57805 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4523 -a 0 -x {9.0 10.0 2266 ------- null} h -t 2.57805 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4523 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.57808 -s 0 -d 9 -p ack -e 40 -c 0 -i 4526 -a 0 -x {10.0 9.0 2258 ------- null} + -t 2.57808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4537 -a 0 -x {9.0 10.0 2273 ------- null} - -t 2.57808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4537 -a 0 -x {9.0 10.0 2273 ------- null} h -t 2.57808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4537 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.57821 -s 0 -d 9 -p ack -e 40 -c 0 -i 4530 -a 0 -x {10.0 9.0 2260 ------- null} - -t 2.57821 -s 0 -d 9 -p ack -e 40 -c 0 -i 4530 -a 0 -x {10.0 9.0 2260 ------- null} h -t 2.57821 -s 0 -d 9 -p ack -e 40 -c 0 -i 4530 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.57842 -s 10 -d 7 -p ack -e 40 -c 0 -i 4534 -a 0 -x {10.0 9.0 2262 ------- null} + -t 2.57842 -s 7 -d 0 -p ack -e 40 -c 0 -i 4534 -a 0 -x {10.0 9.0 2262 ------- null} h -t 2.57842 -s 7 -d 8 -p ack -e 40 -c 0 -i 4534 -a 0 -x {10.0 9.0 2262 ------- null} r -t 2.57867 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4533 -a 0 -x {9.0 10.0 2271 ------- null} + -t 2.57867 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4533 -a 0 -x {9.0 10.0 2271 ------- null} h -t 2.57867 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4533 -a 0 -x {9.0 10.0 2271 ------- null} r -t 2.57867 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4519 -a 0 -x {9.0 10.0 2264 ------- null} + -t 2.57867 -s 10 -d 7 -p ack -e 40 -c 0 -i 4538 -a 0 -x {10.0 9.0 2264 ------- null} - -t 2.57867 -s 10 -d 7 -p ack -e 40 -c 0 -i 4538 -a 0 -x {10.0 9.0 2264 ------- null} h -t 2.57867 -s 10 -d 7 -p ack -e 40 -c 0 -i 4538 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.57914 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4525 -a 0 -x {9.0 10.0 2267 ------- null} - -t 2.57914 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4525 -a 0 -x {9.0 10.0 2267 ------- null} h -t 2.57914 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4525 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.57914 -s 0 -d 9 -p ack -e 40 -c 0 -i 4528 -a 0 -x {10.0 9.0 2259 ------- null} + -t 2.57914 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4539 -a 0 -x {9.0 10.0 2274 ------- null} - -t 2.57914 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4539 -a 0 -x {9.0 10.0 2274 ------- null} h -t 2.57914 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4539 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.57922 -s 0 -d 9 -p ack -e 40 -c 0 -i 4532 -a 0 -x {10.0 9.0 2261 ------- null} - -t 2.57922 -s 0 -d 9 -p ack -e 40 -c 0 -i 4532 -a 0 -x {10.0 9.0 2261 ------- null} h -t 2.57922 -s 0 -d 9 -p ack -e 40 -c 0 -i 4532 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.57962 -s 10 -d 7 -p ack -e 40 -c 0 -i 4536 -a 0 -x {10.0 9.0 2263 ------- null} + -t 2.57962 -s 7 -d 0 -p ack -e 40 -c 0 -i 4536 -a 0 -x {10.0 9.0 2263 ------- null} h -t 2.57962 -s 7 -d 8 -p ack -e 40 -c 0 -i 4536 -a 0 -x {10.0 9.0 2263 ------- null} r -t 2.57973 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4535 -a 0 -x {9.0 10.0 2272 ------- null} + -t 2.57973 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4535 -a 0 -x {9.0 10.0 2272 ------- null} h -t 2.57973 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4535 -a 0 -x {9.0 10.0 2272 ------- null} r -t 2.57976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4521 -a 0 -x {9.0 10.0 2265 ------- null} + -t 2.57976 -s 10 -d 7 -p ack -e 40 -c 0 -i 4540 -a 0 -x {10.0 9.0 2265 ------- null} - -t 2.57976 -s 10 -d 7 -p ack -e 40 -c 0 -i 4540 -a 0 -x {10.0 9.0 2265 ------- null} h -t 2.57976 -s 10 -d 7 -p ack -e 40 -c 0 -i 4540 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.58022 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4527 -a 0 -x {9.0 10.0 2268 ------- null} - -t 2.58022 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4527 -a 0 -x {9.0 10.0 2268 ------- null} h -t 2.58022 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4527 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.58024 -s 0 -d 9 -p ack -e 40 -c 0 -i 4530 -a 0 -x {10.0 9.0 2260 ------- null} + -t 2.58024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4541 -a 0 -x {9.0 10.0 2275 ------- null} - -t 2.58024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4541 -a 0 -x {9.0 10.0 2275 ------- null} h -t 2.58024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4541 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.5804 -s 0 -d 9 -p ack -e 40 -c 0 -i 4534 -a 0 -x {10.0 9.0 2262 ------- null} - -t 2.5804 -s 0 -d 9 -p ack -e 40 -c 0 -i 4534 -a 0 -x {10.0 9.0 2262 ------- null} h -t 2.5804 -s 0 -d 9 -p ack -e 40 -c 0 -i 4534 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.5807 -s 10 -d 7 -p ack -e 40 -c 0 -i 4538 -a 0 -x {10.0 9.0 2264 ------- null} + -t 2.5807 -s 7 -d 0 -p ack -e 40 -c 0 -i 4538 -a 0 -x {10.0 9.0 2264 ------- null} h -t 2.5807 -s 7 -d 8 -p ack -e 40 -c 0 -i 4538 -a 0 -x {10.0 9.0 2264 ------- null} r -t 2.58085 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4523 -a 0 -x {9.0 10.0 2266 ------- null} + -t 2.58085 -s 10 -d 7 -p ack -e 40 -c 0 -i 4542 -a 0 -x {10.0 9.0 2266 ------- null} - -t 2.58085 -s 10 -d 7 -p ack -e 40 -c 0 -i 4542 -a 0 -x {10.0 9.0 2266 ------- null} h -t 2.58085 -s 10 -d 7 -p ack -e 40 -c 0 -i 4542 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.58088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4537 -a 0 -x {9.0 10.0 2273 ------- null} + -t 2.58088 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4537 -a 0 -x {9.0 10.0 2273 ------- null} h -t 2.58088 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4537 -a 0 -x {9.0 10.0 2273 ------- null} r -t 2.58125 -s 0 -d 9 -p ack -e 40 -c 0 -i 4532 -a 0 -x {10.0 9.0 2261 ------- null} + -t 2.58125 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4543 -a 0 -x {9.0 10.0 2276 ------- null} - -t 2.58125 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4543 -a 0 -x {9.0 10.0 2276 ------- null} h -t 2.58125 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4543 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.58131 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4529 -a 0 -x {9.0 10.0 2269 ------- null} - -t 2.58131 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4529 -a 0 -x {9.0 10.0 2269 ------- null} h -t 2.58131 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4529 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.58141 -s 0 -d 9 -p ack -e 40 -c 0 -i 4536 -a 0 -x {10.0 9.0 2263 ------- null} - -t 2.58141 -s 0 -d 9 -p ack -e 40 -c 0 -i 4536 -a 0 -x {10.0 9.0 2263 ------- null} h -t 2.58141 -s 0 -d 9 -p ack -e 40 -c 0 -i 4536 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.58179 -s 10 -d 7 -p ack -e 40 -c 0 -i 4540 -a 0 -x {10.0 9.0 2265 ------- null} + -t 2.58179 -s 7 -d 0 -p ack -e 40 -c 0 -i 4540 -a 0 -x {10.0 9.0 2265 ------- null} h -t 2.58179 -s 7 -d 8 -p ack -e 40 -c 0 -i 4540 -a 0 -x {10.0 9.0 2265 ------- null} r -t 2.58194 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4525 -a 0 -x {9.0 10.0 2267 ------- null} + -t 2.58194 -s 10 -d 7 -p ack -e 40 -c 0 -i 4544 -a 0 -x {10.0 9.0 2267 ------- null} - -t 2.58194 -s 10 -d 7 -p ack -e 40 -c 0 -i 4544 -a 0 -x {10.0 9.0 2267 ------- null} h -t 2.58194 -s 10 -d 7 -p ack -e 40 -c 0 -i 4544 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.58194 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4539 -a 0 -x {9.0 10.0 2274 ------- null} + -t 2.58194 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4539 -a 0 -x {9.0 10.0 2274 ------- null} h -t 2.58194 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4539 -a 0 -x {9.0 10.0 2274 ------- null} + -t 2.5824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4531 -a 0 -x {9.0 10.0 2270 ------- null} - -t 2.5824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4531 -a 0 -x {9.0 10.0 2270 ------- null} h -t 2.5824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4531 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.58243 -s 0 -d 9 -p ack -e 40 -c 0 -i 4534 -a 0 -x {10.0 9.0 2262 ------- null} + -t 2.58243 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4545 -a 0 -x {9.0 10.0 2277 ------- null} - -t 2.58243 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4545 -a 0 -x {9.0 10.0 2277 ------- null} h -t 2.58243 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4545 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.58254 -s 0 -d 9 -p ack -e 40 -c 0 -i 4538 -a 0 -x {10.0 9.0 2264 ------- null} - -t 2.58254 -s 0 -d 9 -p ack -e 40 -c 0 -i 4538 -a 0 -x {10.0 9.0 2264 ------- null} h -t 2.58254 -s 0 -d 9 -p ack -e 40 -c 0 -i 4538 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.58288 -s 10 -d 7 -p ack -e 40 -c 0 -i 4542 -a 0 -x {10.0 9.0 2266 ------- null} + -t 2.58288 -s 7 -d 0 -p ack -e 40 -c 0 -i 4542 -a 0 -x {10.0 9.0 2266 ------- null} h -t 2.58288 -s 7 -d 8 -p ack -e 40 -c 0 -i 4542 -a 0 -x {10.0 9.0 2266 ------- null} r -t 2.58302 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4527 -a 0 -x {9.0 10.0 2268 ------- null} + -t 2.58302 -s 10 -d 7 -p ack -e 40 -c 0 -i 4546 -a 0 -x {10.0 9.0 2268 ------- null} - -t 2.58302 -s 10 -d 7 -p ack -e 40 -c 0 -i 4546 -a 0 -x {10.0 9.0 2268 ------- null} h -t 2.58302 -s 10 -d 7 -p ack -e 40 -c 0 -i 4546 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.58304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4541 -a 0 -x {9.0 10.0 2275 ------- null} + -t 2.58304 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4541 -a 0 -x {9.0 10.0 2275 ------- null} h -t 2.58304 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4541 -a 0 -x {9.0 10.0 2275 ------- null} r -t 2.58344 -s 0 -d 9 -p ack -e 40 -c 0 -i 4536 -a 0 -x {10.0 9.0 2263 ------- null} + -t 2.58344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4547 -a 0 -x {9.0 10.0 2278 ------- null} - -t 2.58344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4547 -a 0 -x {9.0 10.0 2278 ------- null} h -t 2.58344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4547 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.58349 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4533 -a 0 -x {9.0 10.0 2271 ------- null} - -t 2.58349 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4533 -a 0 -x {9.0 10.0 2271 ------- null} h -t 2.58349 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4533 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.58378 -s 0 -d 9 -p ack -e 40 -c 0 -i 4540 -a 0 -x {10.0 9.0 2265 ------- null} - -t 2.58378 -s 0 -d 9 -p ack -e 40 -c 0 -i 4540 -a 0 -x {10.0 9.0 2265 ------- null} h -t 2.58378 -s 0 -d 9 -p ack -e 40 -c 0 -i 4540 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.58397 -s 10 -d 7 -p ack -e 40 -c 0 -i 4544 -a 0 -x {10.0 9.0 2267 ------- null} + -t 2.58397 -s 7 -d 0 -p ack -e 40 -c 0 -i 4544 -a 0 -x {10.0 9.0 2267 ------- null} h -t 2.58397 -s 7 -d 8 -p ack -e 40 -c 0 -i 4544 -a 0 -x {10.0 9.0 2267 ------- null} r -t 2.58405 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4543 -a 0 -x {9.0 10.0 2276 ------- null} + -t 2.58405 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4543 -a 0 -x {9.0 10.0 2276 ------- null} h -t 2.58405 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4543 -a 0 -x {9.0 10.0 2276 ------- null} r -t 2.58411 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4529 -a 0 -x {9.0 10.0 2269 ------- null} + -t 2.58411 -s 10 -d 7 -p ack -e 40 -c 0 -i 4548 -a 0 -x {10.0 9.0 2269 ------- null} - -t 2.58411 -s 10 -d 7 -p ack -e 40 -c 0 -i 4548 -a 0 -x {10.0 9.0 2269 ------- null} h -t 2.58411 -s 10 -d 7 -p ack -e 40 -c 0 -i 4548 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.58458 -s 0 -d 9 -p ack -e 40 -c 0 -i 4538 -a 0 -x {10.0 9.0 2264 ------- null} + -t 2.58458 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4549 -a 0 -x {9.0 10.0 2279 ------- null} - -t 2.58458 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4549 -a 0 -x {9.0 10.0 2279 ------- null} h -t 2.58458 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4549 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.58462 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4535 -a 0 -x {9.0 10.0 2272 ------- null} - -t 2.58462 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4535 -a 0 -x {9.0 10.0 2272 ------- null} h -t 2.58462 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4535 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.58486 -s 0 -d 9 -p ack -e 40 -c 0 -i 4542 -a 0 -x {10.0 9.0 2266 ------- null} - -t 2.58486 -s 0 -d 9 -p ack -e 40 -c 0 -i 4542 -a 0 -x {10.0 9.0 2266 ------- null} h -t 2.58486 -s 0 -d 9 -p ack -e 40 -c 0 -i 4542 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.58506 -s 10 -d 7 -p ack -e 40 -c 0 -i 4546 -a 0 -x {10.0 9.0 2268 ------- null} + -t 2.58506 -s 7 -d 0 -p ack -e 40 -c 0 -i 4546 -a 0 -x {10.0 9.0 2268 ------- null} h -t 2.58506 -s 7 -d 8 -p ack -e 40 -c 0 -i 4546 -a 0 -x {10.0 9.0 2268 ------- null} r -t 2.5852 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4531 -a 0 -x {9.0 10.0 2270 ------- null} + -t 2.5852 -s 10 -d 7 -p ack -e 40 -c 0 -i 4550 -a 0 -x {10.0 9.0 2270 ------- null} - -t 2.5852 -s 10 -d 7 -p ack -e 40 -c 0 -i 4550 -a 0 -x {10.0 9.0 2270 ------- null} h -t 2.5852 -s 10 -d 7 -p ack -e 40 -c 0 -i 4550 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.58523 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4545 -a 0 -x {9.0 10.0 2277 ------- null} + -t 2.58523 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4545 -a 0 -x {9.0 10.0 2277 ------- null} h -t 2.58523 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4545 -a 0 -x {9.0 10.0 2277 ------- null} + -t 2.58571 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4537 -a 0 -x {9.0 10.0 2273 ------- null} - -t 2.58571 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4537 -a 0 -x {9.0 10.0 2273 ------- null} h -t 2.58571 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4537 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.58581 -s 0 -d 9 -p ack -e 40 -c 0 -i 4540 -a 0 -x {10.0 9.0 2265 ------- null} + -t 2.58581 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4551 -a 0 -x {9.0 10.0 2280 ------- null} - -t 2.58581 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4551 -a 0 -x {9.0 10.0 2280 ------- null} h -t 2.58581 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4551 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.5859 -s 0 -d 9 -p ack -e 40 -c 0 -i 4544 -a 0 -x {10.0 9.0 2267 ------- null} - -t 2.5859 -s 0 -d 9 -p ack -e 40 -c 0 -i 4544 -a 0 -x {10.0 9.0 2267 ------- null} h -t 2.5859 -s 0 -d 9 -p ack -e 40 -c 0 -i 4544 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.58614 -s 10 -d 7 -p ack -e 40 -c 0 -i 4548 -a 0 -x {10.0 9.0 2269 ------- null} + -t 2.58614 -s 7 -d 0 -p ack -e 40 -c 0 -i 4548 -a 0 -x {10.0 9.0 2269 ------- null} h -t 2.58614 -s 7 -d 8 -p ack -e 40 -c 0 -i 4548 -a 0 -x {10.0 9.0 2269 ------- null} r -t 2.58624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4547 -a 0 -x {9.0 10.0 2278 ------- null} + -t 2.58624 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4547 -a 0 -x {9.0 10.0 2278 ------- null} h -t 2.58624 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4547 -a 0 -x {9.0 10.0 2278 ------- null} r -t 2.58629 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4533 -a 0 -x {9.0 10.0 2271 ------- null} + -t 2.58629 -s 10 -d 7 -p ack -e 40 -c 0 -i 4552 -a 0 -x {10.0 9.0 2271 ------- null} - -t 2.58629 -s 10 -d 7 -p ack -e 40 -c 0 -i 4552 -a 0 -x {10.0 9.0 2271 ------- null} h -t 2.58629 -s 10 -d 7 -p ack -e 40 -c 0 -i 4552 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.5868 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4539 -a 0 -x {9.0 10.0 2274 ------- null} - -t 2.5868 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4539 -a 0 -x {9.0 10.0 2274 ------- null} h -t 2.5868 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4539 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.5869 -s 0 -d 9 -p ack -e 40 -c 0 -i 4542 -a 0 -x {10.0 9.0 2266 ------- null} + -t 2.5869 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4553 -a 0 -x {9.0 10.0 2281 ------- null} - -t 2.5869 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4553 -a 0 -x {9.0 10.0 2281 ------- null} h -t 2.5869 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4553 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.58709 -s 0 -d 9 -p ack -e 40 -c 0 -i 4546 -a 0 -x {10.0 9.0 2268 ------- null} - -t 2.58709 -s 0 -d 9 -p ack -e 40 -c 0 -i 4546 -a 0 -x {10.0 9.0 2268 ------- null} h -t 2.58709 -s 0 -d 9 -p ack -e 40 -c 0 -i 4546 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.58723 -s 10 -d 7 -p ack -e 40 -c 0 -i 4550 -a 0 -x {10.0 9.0 2270 ------- null} + -t 2.58723 -s 7 -d 0 -p ack -e 40 -c 0 -i 4550 -a 0 -x {10.0 9.0 2270 ------- null} h -t 2.58723 -s 7 -d 8 -p ack -e 40 -c 0 -i 4550 -a 0 -x {10.0 9.0 2270 ------- null} r -t 2.58738 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4549 -a 0 -x {9.0 10.0 2279 ------- null} + -t 2.58738 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4549 -a 0 -x {9.0 10.0 2279 ------- null} h -t 2.58738 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4549 -a 0 -x {9.0 10.0 2279 ------- null} r -t 2.58742 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4535 -a 0 -x {9.0 10.0 2272 ------- null} + -t 2.58742 -s 10 -d 7 -p ack -e 40 -c 0 -i 4554 -a 0 -x {10.0 9.0 2272 ------- null} - -t 2.58742 -s 10 -d 7 -p ack -e 40 -c 0 -i 4554 -a 0 -x {10.0 9.0 2272 ------- null} h -t 2.58742 -s 10 -d 7 -p ack -e 40 -c 0 -i 4554 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.58794 -s 0 -d 9 -p ack -e 40 -c 0 -i 4544 -a 0 -x {10.0 9.0 2267 ------- null} + -t 2.58794 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4555 -a 0 -x {9.0 10.0 2282 ------- null} - -t 2.58794 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4555 -a 0 -x {9.0 10.0 2282 ------- null} h -t 2.58794 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4555 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.58805 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4541 -a 0 -x {9.0 10.0 2275 ------- null} - -t 2.58805 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4541 -a 0 -x {9.0 10.0 2275 ------- null} h -t 2.58805 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4541 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.58821 -s 0 -d 9 -p ack -e 40 -c 0 -i 4548 -a 0 -x {10.0 9.0 2269 ------- null} - -t 2.58821 -s 0 -d 9 -p ack -e 40 -c 0 -i 4548 -a 0 -x {10.0 9.0 2269 ------- null} h -t 2.58821 -s 0 -d 9 -p ack -e 40 -c 0 -i 4548 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.58832 -s 10 -d 7 -p ack -e 40 -c 0 -i 4552 -a 0 -x {10.0 9.0 2271 ------- null} + -t 2.58832 -s 7 -d 0 -p ack -e 40 -c 0 -i 4552 -a 0 -x {10.0 9.0 2271 ------- null} h -t 2.58832 -s 7 -d 8 -p ack -e 40 -c 0 -i 4552 -a 0 -x {10.0 9.0 2271 ------- null} r -t 2.58851 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4537 -a 0 -x {9.0 10.0 2273 ------- null} + -t 2.58851 -s 10 -d 7 -p ack -e 40 -c 0 -i 4556 -a 0 -x {10.0 9.0 2273 ------- null} - -t 2.58851 -s 10 -d 7 -p ack -e 40 -c 0 -i 4556 -a 0 -x {10.0 9.0 2273 ------- null} h -t 2.58851 -s 10 -d 7 -p ack -e 40 -c 0 -i 4556 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.58861 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4551 -a 0 -x {9.0 10.0 2280 ------- null} + -t 2.58861 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4551 -a 0 -x {9.0 10.0 2280 ------- null} h -t 2.58861 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4551 -a 0 -x {9.0 10.0 2280 ------- null} r -t 2.58912 -s 0 -d 9 -p ack -e 40 -c 0 -i 4546 -a 0 -x {10.0 9.0 2268 ------- null} + -t 2.58912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4557 -a 0 -x {9.0 10.0 2283 ------- null} - -t 2.58912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4557 -a 0 -x {9.0 10.0 2283 ------- null} h -t 2.58912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4557 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.58914 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4543 -a 0 -x {9.0 10.0 2276 ------- null} - -t 2.58914 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4543 -a 0 -x {9.0 10.0 2276 ------- null} h -t 2.58914 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4543 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.58934 -s 0 -d 9 -p ack -e 40 -c 0 -i 4550 -a 0 -x {10.0 9.0 2270 ------- null} - -t 2.58934 -s 0 -d 9 -p ack -e 40 -c 0 -i 4550 -a 0 -x {10.0 9.0 2270 ------- null} h -t 2.58934 -s 0 -d 9 -p ack -e 40 -c 0 -i 4550 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.58946 -s 10 -d 7 -p ack -e 40 -c 0 -i 4554 -a 0 -x {10.0 9.0 2272 ------- null} + -t 2.58946 -s 7 -d 0 -p ack -e 40 -c 0 -i 4554 -a 0 -x {10.0 9.0 2272 ------- null} h -t 2.58946 -s 7 -d 8 -p ack -e 40 -c 0 -i 4554 -a 0 -x {10.0 9.0 2272 ------- null} r -t 2.5896 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4539 -a 0 -x {9.0 10.0 2274 ------- null} + -t 2.5896 -s 10 -d 7 -p ack -e 40 -c 0 -i 4558 -a 0 -x {10.0 9.0 2274 ------- null} - -t 2.5896 -s 10 -d 7 -p ack -e 40 -c 0 -i 4558 -a 0 -x {10.0 9.0 2274 ------- null} h -t 2.5896 -s 10 -d 7 -p ack -e 40 -c 0 -i 4558 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.5897 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4553 -a 0 -x {9.0 10.0 2281 ------- null} + -t 2.5897 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4553 -a 0 -x {9.0 10.0 2281 ------- null} h -t 2.5897 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4553 -a 0 -x {9.0 10.0 2281 ------- null} + -t 2.59022 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4545 -a 0 -x {9.0 10.0 2277 ------- null} - -t 2.59022 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4545 -a 0 -x {9.0 10.0 2277 ------- null} h -t 2.59022 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4545 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.59024 -s 0 -d 9 -p ack -e 40 -c 0 -i 4548 -a 0 -x {10.0 9.0 2269 ------- null} + -t 2.59024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4559 -a 0 -x {9.0 10.0 2284 ------- null} - -t 2.59024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4559 -a 0 -x {9.0 10.0 2284 ------- null} h -t 2.59024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4559 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.59053 -s 0 -d 9 -p ack -e 40 -c 0 -i 4552 -a 0 -x {10.0 9.0 2271 ------- null} - -t 2.59053 -s 0 -d 9 -p ack -e 40 -c 0 -i 4552 -a 0 -x {10.0 9.0 2271 ------- null} h -t 2.59053 -s 0 -d 9 -p ack -e 40 -c 0 -i 4552 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.59054 -s 10 -d 7 -p ack -e 40 -c 0 -i 4556 -a 0 -x {10.0 9.0 2273 ------- null} + -t 2.59054 -s 7 -d 0 -p ack -e 40 -c 0 -i 4556 -a 0 -x {10.0 9.0 2273 ------- null} h -t 2.59054 -s 7 -d 8 -p ack -e 40 -c 0 -i 4556 -a 0 -x {10.0 9.0 2273 ------- null} r -t 2.59074 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4555 -a 0 -x {9.0 10.0 2282 ------- null} + -t 2.59074 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4555 -a 0 -x {9.0 10.0 2282 ------- null} h -t 2.59074 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4555 -a 0 -x {9.0 10.0 2282 ------- null} r -t 2.59085 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4541 -a 0 -x {9.0 10.0 2275 ------- null} + -t 2.59085 -s 10 -d 7 -p ack -e 40 -c 0 -i 4560 -a 0 -x {10.0 9.0 2275 ------- null} - -t 2.59085 -s 10 -d 7 -p ack -e 40 -c 0 -i 4560 -a 0 -x {10.0 9.0 2275 ------- null} h -t 2.59085 -s 10 -d 7 -p ack -e 40 -c 0 -i 4560 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.59138 -s 0 -d 9 -p ack -e 40 -c 0 -i 4550 -a 0 -x {10.0 9.0 2270 ------- null} + -t 2.59138 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4561 -a 0 -x {9.0 10.0 2285 ------- null} - -t 2.59138 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4561 -a 0 -x {9.0 10.0 2285 ------- null} h -t 2.59138 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4561 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.59155 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4547 -a 0 -x {9.0 10.0 2278 ------- null} - -t 2.59155 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4547 -a 0 -x {9.0 10.0 2278 ------- null} h -t 2.59155 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4547 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.59163 -s 10 -d 7 -p ack -e 40 -c 0 -i 4558 -a 0 -x {10.0 9.0 2274 ------- null} + -t 2.59163 -s 7 -d 0 -p ack -e 40 -c 0 -i 4558 -a 0 -x {10.0 9.0 2274 ------- null} h -t 2.59163 -s 7 -d 8 -p ack -e 40 -c 0 -i 4558 -a 0 -x {10.0 9.0 2274 ------- null} + -t 2.59181 -s 0 -d 9 -p ack -e 40 -c 0 -i 4554 -a 0 -x {10.0 9.0 2272 ------- null} - -t 2.59181 -s 0 -d 9 -p ack -e 40 -c 0 -i 4554 -a 0 -x {10.0 9.0 2272 ------- null} h -t 2.59181 -s 0 -d 9 -p ack -e 40 -c 0 -i 4554 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.59192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4557 -a 0 -x {9.0 10.0 2283 ------- null} + -t 2.59192 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4557 -a 0 -x {9.0 10.0 2283 ------- null} h -t 2.59192 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4557 -a 0 -x {9.0 10.0 2283 ------- null} r -t 2.59194 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4543 -a 0 -x {9.0 10.0 2276 ------- null} + -t 2.59194 -s 10 -d 7 -p ack -e 40 -c 0 -i 4562 -a 0 -x {10.0 9.0 2276 ------- null} - -t 2.59194 -s 10 -d 7 -p ack -e 40 -c 0 -i 4562 -a 0 -x {10.0 9.0 2276 ------- null} h -t 2.59194 -s 10 -d 7 -p ack -e 40 -c 0 -i 4562 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.59256 -s 0 -d 9 -p ack -e 40 -c 0 -i 4552 -a 0 -x {10.0 9.0 2271 ------- null} + -t 2.59256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4563 -a 0 -x {9.0 10.0 2286 ------- null} - -t 2.59256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4563 -a 0 -x {9.0 10.0 2286 ------- null} h -t 2.59256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4563 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.59267 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4549 -a 0 -x {9.0 10.0 2279 ------- null} - -t 2.59267 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4549 -a 0 -x {9.0 10.0 2279 ------- null} h -t 2.59267 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4549 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.59274 -s 0 -d 9 -p ack -e 40 -c 0 -i 4556 -a 0 -x {10.0 9.0 2273 ------- null} - -t 2.59274 -s 0 -d 9 -p ack -e 40 -c 0 -i 4556 -a 0 -x {10.0 9.0 2273 ------- null} h -t 2.59274 -s 0 -d 9 -p ack -e 40 -c 0 -i 4556 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.59288 -s 10 -d 7 -p ack -e 40 -c 0 -i 4560 -a 0 -x {10.0 9.0 2275 ------- null} + -t 2.59288 -s 7 -d 0 -p ack -e 40 -c 0 -i 4560 -a 0 -x {10.0 9.0 2275 ------- null} h -t 2.59288 -s 7 -d 8 -p ack -e 40 -c 0 -i 4560 -a 0 -x {10.0 9.0 2275 ------- null} r -t 2.59302 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4545 -a 0 -x {9.0 10.0 2277 ------- null} + -t 2.59302 -s 10 -d 7 -p ack -e 40 -c 0 -i 4564 -a 0 -x {10.0 9.0 2277 ------- null} - -t 2.59302 -s 10 -d 7 -p ack -e 40 -c 0 -i 4564 -a 0 -x {10.0 9.0 2277 ------- null} h -t 2.59302 -s 10 -d 7 -p ack -e 40 -c 0 -i 4564 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.59304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4559 -a 0 -x {9.0 10.0 2284 ------- null} + -t 2.59304 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4559 -a 0 -x {9.0 10.0 2284 ------- null} h -t 2.59304 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4559 -a 0 -x {9.0 10.0 2284 ------- null} + -t 2.59376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4551 -a 0 -x {9.0 10.0 2280 ------- null} - -t 2.59376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4551 -a 0 -x {9.0 10.0 2280 ------- null} h -t 2.59376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4551 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.59384 -s 0 -d 9 -p ack -e 40 -c 0 -i 4554 -a 0 -x {10.0 9.0 2272 ------- null} + -t 2.59384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4565 -a 0 -x {9.0 10.0 2287 ------- null} - -t 2.59384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4565 -a 0 -x {9.0 10.0 2287 ------- null} h -t 2.59384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4565 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.59397 -s 10 -d 7 -p ack -e 40 -c 0 -i 4562 -a 0 -x {10.0 9.0 2276 ------- null} + -t 2.59397 -s 7 -d 0 -p ack -e 40 -c 0 -i 4562 -a 0 -x {10.0 9.0 2276 ------- null} h -t 2.59397 -s 7 -d 8 -p ack -e 40 -c 0 -i 4562 -a 0 -x {10.0 9.0 2276 ------- null} + -t 2.59406 -s 0 -d 9 -p ack -e 40 -c 0 -i 4558 -a 0 -x {10.0 9.0 2274 ------- null} - -t 2.59406 -s 0 -d 9 -p ack -e 40 -c 0 -i 4558 -a 0 -x {10.0 9.0 2274 ------- null} h -t 2.59406 -s 0 -d 9 -p ack -e 40 -c 0 -i 4558 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.59418 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4561 -a 0 -x {9.0 10.0 2285 ------- null} + -t 2.59418 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4561 -a 0 -x {9.0 10.0 2285 ------- null} h -t 2.59418 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4561 -a 0 -x {9.0 10.0 2285 ------- null} r -t 2.59435 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4547 -a 0 -x {9.0 10.0 2278 ------- null} + -t 2.59435 -s 10 -d 7 -p ack -e 40 -c 0 -i 4566 -a 0 -x {10.0 9.0 2278 ------- null} - -t 2.59435 -s 10 -d 7 -p ack -e 40 -c 0 -i 4566 -a 0 -x {10.0 9.0 2278 ------- null} h -t 2.59435 -s 10 -d 7 -p ack -e 40 -c 0 -i 4566 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.59477 -s 0 -d 9 -p ack -e 40 -c 0 -i 4556 -a 0 -x {10.0 9.0 2273 ------- null} + -t 2.59477 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4567 -a 0 -x {9.0 10.0 2288 ------- null} - -t 2.59477 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4567 -a 0 -x {9.0 10.0 2288 ------- null} h -t 2.59477 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4567 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.59499 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4553 -a 0 -x {9.0 10.0 2281 ------- null} - -t 2.59499 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4553 -a 0 -x {9.0 10.0 2281 ------- null} h -t 2.59499 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4553 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.59506 -s 10 -d 7 -p ack -e 40 -c 0 -i 4564 -a 0 -x {10.0 9.0 2277 ------- null} + -t 2.59506 -s 7 -d 0 -p ack -e 40 -c 0 -i 4564 -a 0 -x {10.0 9.0 2277 ------- null} h -t 2.59506 -s 7 -d 8 -p ack -e 40 -c 0 -i 4564 -a 0 -x {10.0 9.0 2277 ------- null} + -t 2.59515 -s 0 -d 9 -p ack -e 40 -c 0 -i 4560 -a 0 -x {10.0 9.0 2275 ------- null} - -t 2.59515 -s 0 -d 9 -p ack -e 40 -c 0 -i 4560 -a 0 -x {10.0 9.0 2275 ------- null} h -t 2.59515 -s 0 -d 9 -p ack -e 40 -c 0 -i 4560 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.59536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4563 -a 0 -x {9.0 10.0 2286 ------- null} + -t 2.59536 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4563 -a 0 -x {9.0 10.0 2286 ------- null} h -t 2.59536 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4563 -a 0 -x {9.0 10.0 2286 ------- null} r -t 2.59547 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4549 -a 0 -x {9.0 10.0 2279 ------- null} + -t 2.59547 -s 10 -d 7 -p ack -e 40 -c 0 -i 4568 -a 0 -x {10.0 9.0 2279 ------- null} - -t 2.59547 -s 10 -d 7 -p ack -e 40 -c 0 -i 4568 -a 0 -x {10.0 9.0 2279 ------- null} h -t 2.59547 -s 10 -d 7 -p ack -e 40 -c 0 -i 4568 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.59608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4555 -a 0 -x {9.0 10.0 2282 ------- null} - -t 2.59608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4555 -a 0 -x {9.0 10.0 2282 ------- null} h -t 2.59608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4555 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.5961 -s 0 -d 9 -p ack -e 40 -c 0 -i 4558 -a 0 -x {10.0 9.0 2274 ------- null} + -t 2.5961 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4569 -a 0 -x {9.0 10.0 2289 ------- null} - -t 2.5961 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4569 -a 0 -x {9.0 10.0 2289 ------- null} h -t 2.5961 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4569 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.59614 -s 0 -d 9 -p ack -e 40 -c 0 -i 4562 -a 0 -x {10.0 9.0 2276 ------- null} - -t 2.59614 -s 0 -d 9 -p ack -e 40 -c 0 -i 4562 -a 0 -x {10.0 9.0 2276 ------- null} h -t 2.59614 -s 0 -d 9 -p ack -e 40 -c 0 -i 4562 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.59638 -s 10 -d 7 -p ack -e 40 -c 0 -i 4566 -a 0 -x {10.0 9.0 2278 ------- null} + -t 2.59638 -s 7 -d 0 -p ack -e 40 -c 0 -i 4566 -a 0 -x {10.0 9.0 2278 ------- null} h -t 2.59638 -s 7 -d 8 -p ack -e 40 -c 0 -i 4566 -a 0 -x {10.0 9.0 2278 ------- null} r -t 2.59656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4551 -a 0 -x {9.0 10.0 2280 ------- null} + -t 2.59656 -s 10 -d 7 -p ack -e 40 -c 0 -i 4570 -a 0 -x {10.0 9.0 2280 ------- null} - -t 2.59656 -s 10 -d 7 -p ack -e 40 -c 0 -i 4570 -a 0 -x {10.0 9.0 2280 ------- null} h -t 2.59656 -s 10 -d 7 -p ack -e 40 -c 0 -i 4570 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.59664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4565 -a 0 -x {9.0 10.0 2287 ------- null} + -t 2.59664 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4565 -a 0 -x {9.0 10.0 2287 ------- null} h -t 2.59664 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4565 -a 0 -x {9.0 10.0 2287 ------- null} + -t 2.59717 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4557 -a 0 -x {9.0 10.0 2283 ------- null} - -t 2.59717 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4557 -a 0 -x {9.0 10.0 2283 ------- null} h -t 2.59717 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4557 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.59718 -s 0 -d 9 -p ack -e 40 -c 0 -i 4560 -a 0 -x {10.0 9.0 2275 ------- null} + -t 2.59718 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4571 -a 0 -x {9.0 10.0 2290 ------- null} - -t 2.59718 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4571 -a 0 -x {9.0 10.0 2290 ------- null} h -t 2.59718 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4571 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.59734 -s 0 -d 9 -p ack -e 40 -c 0 -i 4564 -a 0 -x {10.0 9.0 2277 ------- null} - -t 2.59734 -s 0 -d 9 -p ack -e 40 -c 0 -i 4564 -a 0 -x {10.0 9.0 2277 ------- null} h -t 2.59734 -s 0 -d 9 -p ack -e 40 -c 0 -i 4564 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.5975 -s 10 -d 7 -p ack -e 40 -c 0 -i 4568 -a 0 -x {10.0 9.0 2279 ------- null} + -t 2.5975 -s 7 -d 0 -p ack -e 40 -c 0 -i 4568 -a 0 -x {10.0 9.0 2279 ------- null} h -t 2.5975 -s 7 -d 8 -p ack -e 40 -c 0 -i 4568 -a 0 -x {10.0 9.0 2279 ------- null} r -t 2.59757 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4567 -a 0 -x {9.0 10.0 2288 ------- null} + -t 2.59757 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4567 -a 0 -x {9.0 10.0 2288 ------- null} h -t 2.59757 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4567 -a 0 -x {9.0 10.0 2288 ------- null} r -t 2.59779 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4553 -a 0 -x {9.0 10.0 2281 ------- null} + -t 2.59779 -s 10 -d 7 -p ack -e 40 -c 0 -i 4572 -a 0 -x {10.0 9.0 2281 ------- null} - -t 2.59779 -s 10 -d 7 -p ack -e 40 -c 0 -i 4572 -a 0 -x {10.0 9.0 2281 ------- null} h -t 2.59779 -s 10 -d 7 -p ack -e 40 -c 0 -i 4572 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.59818 -s 0 -d 9 -p ack -e 40 -c 0 -i 4562 -a 0 -x {10.0 9.0 2276 ------- null} + -t 2.59818 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4573 -a 0 -x {9.0 10.0 2291 ------- null} - -t 2.59818 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4573 -a 0 -x {9.0 10.0 2291 ------- null} h -t 2.59818 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4573 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.59826 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4559 -a 0 -x {9.0 10.0 2284 ------- null} - -t 2.59826 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4559 -a 0 -x {9.0 10.0 2284 ------- null} h -t 2.59826 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4559 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.59834 -s 0 -d 9 -p ack -e 40 -c 0 -i 4566 -a 0 -x {10.0 9.0 2278 ------- null} - -t 2.59834 -s 0 -d 9 -p ack -e 40 -c 0 -i 4566 -a 0 -x {10.0 9.0 2278 ------- null} h -t 2.59834 -s 0 -d 9 -p ack -e 40 -c 0 -i 4566 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.59859 -s 10 -d 7 -p ack -e 40 -c 0 -i 4570 -a 0 -x {10.0 9.0 2280 ------- null} + -t 2.59859 -s 7 -d 0 -p ack -e 40 -c 0 -i 4570 -a 0 -x {10.0 9.0 2280 ------- null} h -t 2.59859 -s 7 -d 8 -p ack -e 40 -c 0 -i 4570 -a 0 -x {10.0 9.0 2280 ------- null} r -t 2.59888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4555 -a 0 -x {9.0 10.0 2282 ------- null} + -t 2.59888 -s 10 -d 7 -p ack -e 40 -c 0 -i 4574 -a 0 -x {10.0 9.0 2282 ------- null} - -t 2.59888 -s 10 -d 7 -p ack -e 40 -c 0 -i 4574 -a 0 -x {10.0 9.0 2282 ------- null} h -t 2.59888 -s 10 -d 7 -p ack -e 40 -c 0 -i 4574 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.5989 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4569 -a 0 -x {9.0 10.0 2289 ------- null} + -t 2.5989 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4569 -a 0 -x {9.0 10.0 2289 ------- null} h -t 2.5989 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4569 -a 0 -x {9.0 10.0 2289 ------- null} + -t 2.59934 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4561 -a 0 -x {9.0 10.0 2285 ------- null} - -t 2.59934 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4561 -a 0 -x {9.0 10.0 2285 ------- null} h -t 2.59934 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4561 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.59938 -s 0 -d 9 -p ack -e 40 -c 0 -i 4564 -a 0 -x {10.0 9.0 2277 ------- null} + -t 2.59938 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4575 -a 0 -x {9.0 10.0 2292 ------- null} - -t 2.59938 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4575 -a 0 -x {9.0 10.0 2292 ------- null} h -t 2.59938 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4575 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.59947 -s 0 -d 9 -p ack -e 40 -c 0 -i 4568 -a 0 -x {10.0 9.0 2279 ------- null} - -t 2.59947 -s 0 -d 9 -p ack -e 40 -c 0 -i 4568 -a 0 -x {10.0 9.0 2279 ------- null} h -t 2.59947 -s 0 -d 9 -p ack -e 40 -c 0 -i 4568 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.59982 -s 10 -d 7 -p ack -e 40 -c 0 -i 4572 -a 0 -x {10.0 9.0 2281 ------- null} + -t 2.59982 -s 7 -d 0 -p ack -e 40 -c 0 -i 4572 -a 0 -x {10.0 9.0 2281 ------- null} h -t 2.59982 -s 7 -d 8 -p ack -e 40 -c 0 -i 4572 -a 0 -x {10.0 9.0 2281 ------- null} r -t 2.59997 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4557 -a 0 -x {9.0 10.0 2283 ------- null} + -t 2.59997 -s 10 -d 7 -p ack -e 40 -c 0 -i 4576 -a 0 -x {10.0 9.0 2283 ------- null} - -t 2.59997 -s 10 -d 7 -p ack -e 40 -c 0 -i 4576 -a 0 -x {10.0 9.0 2283 ------- null} h -t 2.59997 -s 10 -d 7 -p ack -e 40 -c 0 -i 4576 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.59998 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4571 -a 0 -x {9.0 10.0 2290 ------- null} + -t 2.59998 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4571 -a 0 -x {9.0 10.0 2290 ------- null} h -t 2.59998 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4571 -a 0 -x {9.0 10.0 2290 ------- null} r -t 2.60037 -s 0 -d 9 -p ack -e 40 -c 0 -i 4566 -a 0 -x {10.0 9.0 2278 ------- null} + -t 2.60037 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4577 -a 0 -x {9.0 10.0 2293 ------- null} - -t 2.60037 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4577 -a 0 -x {9.0 10.0 2293 ------- null} h -t 2.60037 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4577 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.60043 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4563 -a 0 -x {9.0 10.0 2286 ------- null} - -t 2.60043 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4563 -a 0 -x {9.0 10.0 2286 ------- null} h -t 2.60043 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4563 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.60051 -s 0 -d 9 -p ack -e 40 -c 0 -i 4570 -a 0 -x {10.0 9.0 2280 ------- null} - -t 2.60051 -s 0 -d 9 -p ack -e 40 -c 0 -i 4570 -a 0 -x {10.0 9.0 2280 ------- null} h -t 2.60051 -s 0 -d 9 -p ack -e 40 -c 0 -i 4570 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.60091 -s 10 -d 7 -p ack -e 40 -c 0 -i 4574 -a 0 -x {10.0 9.0 2282 ------- null} + -t 2.60091 -s 7 -d 0 -p ack -e 40 -c 0 -i 4574 -a 0 -x {10.0 9.0 2282 ------- null} h -t 2.60091 -s 7 -d 8 -p ack -e 40 -c 0 -i 4574 -a 0 -x {10.0 9.0 2282 ------- null} r -t 2.60098 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4573 -a 0 -x {9.0 10.0 2291 ------- null} + -t 2.60098 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4573 -a 0 -x {9.0 10.0 2291 ------- null} h -t 2.60098 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4573 -a 0 -x {9.0 10.0 2291 ------- null} r -t 2.60106 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4559 -a 0 -x {9.0 10.0 2284 ------- null} + -t 2.60106 -s 10 -d 7 -p ack -e 40 -c 0 -i 4578 -a 0 -x {10.0 9.0 2284 ------- null} - -t 2.60106 -s 10 -d 7 -p ack -e 40 -c 0 -i 4578 -a 0 -x {10.0 9.0 2284 ------- null} h -t 2.60106 -s 10 -d 7 -p ack -e 40 -c 0 -i 4578 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.6015 -s 0 -d 9 -p ack -e 40 -c 0 -i 4568 -a 0 -x {10.0 9.0 2279 ------- null} + -t 2.6015 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4579 -a 0 -x {9.0 10.0 2294 ------- null} - -t 2.6015 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4579 -a 0 -x {9.0 10.0 2294 ------- null} h -t 2.6015 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4579 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.60152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4565 -a 0 -x {9.0 10.0 2287 ------- null} - -t 2.60152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4565 -a 0 -x {9.0 10.0 2287 ------- null} h -t 2.60152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4565 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.60179 -s 0 -d 9 -p ack -e 40 -c 0 -i 4572 -a 0 -x {10.0 9.0 2281 ------- null} - -t 2.60179 -s 0 -d 9 -p ack -e 40 -c 0 -i 4572 -a 0 -x {10.0 9.0 2281 ------- null} h -t 2.60179 -s 0 -d 9 -p ack -e 40 -c 0 -i 4572 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.602 -s 10 -d 7 -p ack -e 40 -c 0 -i 4576 -a 0 -x {10.0 9.0 2283 ------- null} + -t 2.602 -s 7 -d 0 -p ack -e 40 -c 0 -i 4576 -a 0 -x {10.0 9.0 2283 ------- null} h -t 2.602 -s 7 -d 8 -p ack -e 40 -c 0 -i 4576 -a 0 -x {10.0 9.0 2283 ------- null} r -t 2.60214 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4561 -a 0 -x {9.0 10.0 2285 ------- null} + -t 2.60214 -s 10 -d 7 -p ack -e 40 -c 0 -i 4580 -a 0 -x {10.0 9.0 2285 ------- null} - -t 2.60214 -s 10 -d 7 -p ack -e 40 -c 0 -i 4580 -a 0 -x {10.0 9.0 2285 ------- null} h -t 2.60214 -s 10 -d 7 -p ack -e 40 -c 0 -i 4580 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.60218 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4575 -a 0 -x {9.0 10.0 2292 ------- null} + -t 2.60218 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4575 -a 0 -x {9.0 10.0 2292 ------- null} h -t 2.60218 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4575 -a 0 -x {9.0 10.0 2292 ------- null} r -t 2.60254 -s 0 -d 9 -p ack -e 40 -c 0 -i 4570 -a 0 -x {10.0 9.0 2280 ------- null} + -t 2.60254 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4581 -a 0 -x {9.0 10.0 2295 ------- null} - -t 2.60254 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4581 -a 0 -x {9.0 10.0 2295 ------- null} h -t 2.60254 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4581 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.60266 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4567 -a 0 -x {9.0 10.0 2288 ------- null} - -t 2.60266 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4567 -a 0 -x {9.0 10.0 2288 ------- null} h -t 2.60266 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4567 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.60278 -s 0 -d 9 -p ack -e 40 -c 0 -i 4574 -a 0 -x {10.0 9.0 2282 ------- null} - -t 2.60278 -s 0 -d 9 -p ack -e 40 -c 0 -i 4574 -a 0 -x {10.0 9.0 2282 ------- null} h -t 2.60278 -s 0 -d 9 -p ack -e 40 -c 0 -i 4574 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.60309 -s 10 -d 7 -p ack -e 40 -c 0 -i 4578 -a 0 -x {10.0 9.0 2284 ------- null} + -t 2.60309 -s 7 -d 0 -p ack -e 40 -c 0 -i 4578 -a 0 -x {10.0 9.0 2284 ------- null} h -t 2.60309 -s 7 -d 8 -p ack -e 40 -c 0 -i 4578 -a 0 -x {10.0 9.0 2284 ------- null} r -t 2.60317 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4577 -a 0 -x {9.0 10.0 2293 ------- null} + -t 2.60317 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4577 -a 0 -x {9.0 10.0 2293 ------- null} h -t 2.60317 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4577 -a 0 -x {9.0 10.0 2293 ------- null} r -t 2.60323 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4563 -a 0 -x {9.0 10.0 2286 ------- null} + -t 2.60323 -s 10 -d 7 -p ack -e 40 -c 0 -i 4582 -a 0 -x {10.0 9.0 2286 ------- null} - -t 2.60323 -s 10 -d 7 -p ack -e 40 -c 0 -i 4582 -a 0 -x {10.0 9.0 2286 ------- null} h -t 2.60323 -s 10 -d 7 -p ack -e 40 -c 0 -i 4582 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.60374 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4569 -a 0 -x {9.0 10.0 2289 ------- null} - -t 2.60374 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4569 -a 0 -x {9.0 10.0 2289 ------- null} h -t 2.60374 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4569 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.60382 -s 0 -d 9 -p ack -e 40 -c 0 -i 4572 -a 0 -x {10.0 9.0 2281 ------- null} + -t 2.60382 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4583 -a 0 -x {9.0 10.0 2296 ------- null} - -t 2.60382 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4583 -a 0 -x {9.0 10.0 2296 ------- null} h -t 2.60382 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4583 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.60392 -s 0 -d 9 -p ack -e 40 -c 0 -i 4576 -a 0 -x {10.0 9.0 2283 ------- null} - -t 2.60392 -s 0 -d 9 -p ack -e 40 -c 0 -i 4576 -a 0 -x {10.0 9.0 2283 ------- null} h -t 2.60392 -s 0 -d 9 -p ack -e 40 -c 0 -i 4576 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.60418 -s 10 -d 7 -p ack -e 40 -c 0 -i 4580 -a 0 -x {10.0 9.0 2285 ------- null} + -t 2.60418 -s 7 -d 0 -p ack -e 40 -c 0 -i 4580 -a 0 -x {10.0 9.0 2285 ------- null} h -t 2.60418 -s 7 -d 8 -p ack -e 40 -c 0 -i 4580 -a 0 -x {10.0 9.0 2285 ------- null} r -t 2.6043 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4579 -a 0 -x {9.0 10.0 2294 ------- null} + -t 2.6043 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4579 -a 0 -x {9.0 10.0 2294 ------- null} h -t 2.6043 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4579 -a 0 -x {9.0 10.0 2294 ------- null} r -t 2.60432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4565 -a 0 -x {9.0 10.0 2287 ------- null} + -t 2.60432 -s 10 -d 7 -p ack -e 40 -c 0 -i 4584 -a 0 -x {10.0 9.0 2287 ------- null} - -t 2.60432 -s 10 -d 7 -p ack -e 40 -c 0 -i 4584 -a 0 -x {10.0 9.0 2287 ------- null} h -t 2.60432 -s 10 -d 7 -p ack -e 40 -c 0 -i 4584 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.60482 -s 0 -d 9 -p ack -e 40 -c 0 -i 4574 -a 0 -x {10.0 9.0 2282 ------- null} + -t 2.60482 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4585 -a 0 -x {9.0 10.0 2297 ------- null} - -t 2.60482 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4585 -a 0 -x {9.0 10.0 2297 ------- null} h -t 2.60482 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4585 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.60483 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4571 -a 0 -x {9.0 10.0 2290 ------- null} - -t 2.60483 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4571 -a 0 -x {9.0 10.0 2290 ------- null} h -t 2.60483 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4571 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.60507 -s 0 -d 9 -p ack -e 40 -c 0 -i 4578 -a 0 -x {10.0 9.0 2284 ------- null} - -t 2.60507 -s 0 -d 9 -p ack -e 40 -c 0 -i 4578 -a 0 -x {10.0 9.0 2284 ------- null} h -t 2.60507 -s 0 -d 9 -p ack -e 40 -c 0 -i 4578 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.60526 -s 10 -d 7 -p ack -e 40 -c 0 -i 4582 -a 0 -x {10.0 9.0 2286 ------- null} + -t 2.60526 -s 7 -d 0 -p ack -e 40 -c 0 -i 4582 -a 0 -x {10.0 9.0 2286 ------- null} h -t 2.60526 -s 7 -d 8 -p ack -e 40 -c 0 -i 4582 -a 0 -x {10.0 9.0 2286 ------- null} r -t 2.60534 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4581 -a 0 -x {9.0 10.0 2295 ------- null} + -t 2.60534 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4581 -a 0 -x {9.0 10.0 2295 ------- null} h -t 2.60534 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4581 -a 0 -x {9.0 10.0 2295 ------- null} r -t 2.60546 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4567 -a 0 -x {9.0 10.0 2288 ------- null} + -t 2.60546 -s 10 -d 7 -p ack -e 40 -c 0 -i 4586 -a 0 -x {10.0 9.0 2288 ------- null} - -t 2.60546 -s 10 -d 7 -p ack -e 40 -c 0 -i 4586 -a 0 -x {10.0 9.0 2288 ------- null} h -t 2.60546 -s 10 -d 7 -p ack -e 40 -c 0 -i 4586 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.60592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4573 -a 0 -x {9.0 10.0 2291 ------- null} - -t 2.60592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4573 -a 0 -x {9.0 10.0 2291 ------- null} h -t 2.60592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4573 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.60595 -s 0 -d 9 -p ack -e 40 -c 0 -i 4576 -a 0 -x {10.0 9.0 2283 ------- null} + -t 2.60595 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4587 -a 0 -x {9.0 10.0 2298 ------- null} - -t 2.60595 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4587 -a 0 -x {9.0 10.0 2298 ------- null} h -t 2.60595 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4587 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.60613 -s 0 -d 9 -p ack -e 40 -c 0 -i 4580 -a 0 -x {10.0 9.0 2285 ------- null} - -t 2.60613 -s 0 -d 9 -p ack -e 40 -c 0 -i 4580 -a 0 -x {10.0 9.0 2285 ------- null} h -t 2.60613 -s 0 -d 9 -p ack -e 40 -c 0 -i 4580 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.60635 -s 10 -d 7 -p ack -e 40 -c 0 -i 4584 -a 0 -x {10.0 9.0 2287 ------- null} + -t 2.60635 -s 7 -d 0 -p ack -e 40 -c 0 -i 4584 -a 0 -x {10.0 9.0 2287 ------- null} h -t 2.60635 -s 7 -d 8 -p ack -e 40 -c 0 -i 4584 -a 0 -x {10.0 9.0 2287 ------- null} r -t 2.60654 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4569 -a 0 -x {9.0 10.0 2289 ------- null} + -t 2.60654 -s 10 -d 7 -p ack -e 40 -c 0 -i 4588 -a 0 -x {10.0 9.0 2289 ------- null} - -t 2.60654 -s 10 -d 7 -p ack -e 40 -c 0 -i 4588 -a 0 -x {10.0 9.0 2289 ------- null} h -t 2.60654 -s 10 -d 7 -p ack -e 40 -c 0 -i 4588 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.60662 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4583 -a 0 -x {9.0 10.0 2296 ------- null} + -t 2.60662 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4583 -a 0 -x {9.0 10.0 2296 ------- null} h -t 2.60662 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4583 -a 0 -x {9.0 10.0 2296 ------- null} + -t 2.60701 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4575 -a 0 -x {9.0 10.0 2292 ------- null} - -t 2.60701 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4575 -a 0 -x {9.0 10.0 2292 ------- null} h -t 2.60701 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4575 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.6071 -s 0 -d 9 -p ack -e 40 -c 0 -i 4578 -a 0 -x {10.0 9.0 2284 ------- null} + -t 2.6071 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4589 -a 0 -x {9.0 10.0 2299 ------- null} - -t 2.6071 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4589 -a 0 -x {9.0 10.0 2299 ------- null} h -t 2.6071 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4589 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.60731 -s 0 -d 9 -p ack -e 40 -c 0 -i 4582 -a 0 -x {10.0 9.0 2286 ------- null} - -t 2.60731 -s 0 -d 9 -p ack -e 40 -c 0 -i 4582 -a 0 -x {10.0 9.0 2286 ------- null} h -t 2.60731 -s 0 -d 9 -p ack -e 40 -c 0 -i 4582 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.60749 -s 10 -d 7 -p ack -e 40 -c 0 -i 4586 -a 0 -x {10.0 9.0 2288 ------- null} + -t 2.60749 -s 7 -d 0 -p ack -e 40 -c 0 -i 4586 -a 0 -x {10.0 9.0 2288 ------- null} h -t 2.60749 -s 7 -d 8 -p ack -e 40 -c 0 -i 4586 -a 0 -x {10.0 9.0 2288 ------- null} r -t 2.60762 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4585 -a 0 -x {9.0 10.0 2297 ------- null} + -t 2.60762 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4585 -a 0 -x {9.0 10.0 2297 ------- null} h -t 2.60762 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4585 -a 0 -x {9.0 10.0 2297 ------- null} r -t 2.60763 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4571 -a 0 -x {9.0 10.0 2290 ------- null} + -t 2.60763 -s 10 -d 7 -p ack -e 40 -c 0 -i 4590 -a 0 -x {10.0 9.0 2290 ------- null} - -t 2.60763 -s 10 -d 7 -p ack -e 40 -c 0 -i 4590 -a 0 -x {10.0 9.0 2290 ------- null} h -t 2.60763 -s 10 -d 7 -p ack -e 40 -c 0 -i 4590 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.60816 -s 0 -d 9 -p ack -e 40 -c 0 -i 4580 -a 0 -x {10.0 9.0 2285 ------- null} + -t 2.60816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4591 -a 0 -x {9.0 10.0 2300 ------- null} - -t 2.60816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4591 -a 0 -x {9.0 10.0 2300 ------- null} h -t 2.60816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4591 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.60834 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4577 -a 0 -x {9.0 10.0 2293 ------- null} - -t 2.60834 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4577 -a 0 -x {9.0 10.0 2293 ------- null} h -t 2.60834 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4577 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.60846 -s 0 -d 9 -p ack -e 40 -c 0 -i 4584 -a 0 -x {10.0 9.0 2287 ------- null} - -t 2.60846 -s 0 -d 9 -p ack -e 40 -c 0 -i 4584 -a 0 -x {10.0 9.0 2287 ------- null} h -t 2.60846 -s 0 -d 9 -p ack -e 40 -c 0 -i 4584 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.60858 -s 10 -d 7 -p ack -e 40 -c 0 -i 4588 -a 0 -x {10.0 9.0 2289 ------- null} + -t 2.60858 -s 7 -d 0 -p ack -e 40 -c 0 -i 4588 -a 0 -x {10.0 9.0 2289 ------- null} h -t 2.60858 -s 7 -d 8 -p ack -e 40 -c 0 -i 4588 -a 0 -x {10.0 9.0 2289 ------- null} r -t 2.60872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4573 -a 0 -x {9.0 10.0 2291 ------- null} + -t 2.60872 -s 10 -d 7 -p ack -e 40 -c 0 -i 4592 -a 0 -x {10.0 9.0 2291 ------- null} - -t 2.60872 -s 10 -d 7 -p ack -e 40 -c 0 -i 4592 -a 0 -x {10.0 9.0 2291 ------- null} h -t 2.60872 -s 10 -d 7 -p ack -e 40 -c 0 -i 4592 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.60875 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4587 -a 0 -x {9.0 10.0 2298 ------- null} + -t 2.60875 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4587 -a 0 -x {9.0 10.0 2298 ------- null} h -t 2.60875 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4587 -a 0 -x {9.0 10.0 2298 ------- null} r -t 2.60934 -s 0 -d 9 -p ack -e 40 -c 0 -i 4582 -a 0 -x {10.0 9.0 2286 ------- null} + -t 2.60934 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4593 -a 0 -x {9.0 10.0 2301 ------- null} - -t 2.60934 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4593 -a 0 -x {9.0 10.0 2301 ------- null} h -t 2.60934 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4593 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.60942 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4579 -a 0 -x {9.0 10.0 2294 ------- null} - -t 2.60942 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4579 -a 0 -x {9.0 10.0 2294 ------- null} h -t 2.60942 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4579 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.6095 -s 0 -d 9 -p ack -e 40 -c 0 -i 4586 -a 0 -x {10.0 9.0 2288 ------- null} - -t 2.6095 -s 0 -d 9 -p ack -e 40 -c 0 -i 4586 -a 0 -x {10.0 9.0 2288 ------- null} h -t 2.6095 -s 0 -d 9 -p ack -e 40 -c 0 -i 4586 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.60966 -s 10 -d 7 -p ack -e 40 -c 0 -i 4590 -a 0 -x {10.0 9.0 2290 ------- null} + -t 2.60966 -s 7 -d 0 -p ack -e 40 -c 0 -i 4590 -a 0 -x {10.0 9.0 2290 ------- null} h -t 2.60966 -s 7 -d 8 -p ack -e 40 -c 0 -i 4590 -a 0 -x {10.0 9.0 2290 ------- null} r -t 2.60981 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4575 -a 0 -x {9.0 10.0 2292 ------- null} + -t 2.60981 -s 10 -d 7 -p ack -e 40 -c 0 -i 4594 -a 0 -x {10.0 9.0 2292 ------- null} - -t 2.60981 -s 10 -d 7 -p ack -e 40 -c 0 -i 4594 -a 0 -x {10.0 9.0 2292 ------- null} h -t 2.60981 -s 10 -d 7 -p ack -e 40 -c 0 -i 4594 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.6099 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4589 -a 0 -x {9.0 10.0 2299 ------- null} + -t 2.6099 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4589 -a 0 -x {9.0 10.0 2299 ------- null} h -t 2.6099 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4589 -a 0 -x {9.0 10.0 2299 ------- null} r -t 2.6105 -s 0 -d 9 -p ack -e 40 -c 0 -i 4584 -a 0 -x {10.0 9.0 2287 ------- null} + -t 2.6105 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4595 -a 0 -x {9.0 10.0 2302 ------- null} - -t 2.6105 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4595 -a 0 -x {9.0 10.0 2302 ------- null} h -t 2.6105 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4595 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.61051 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4581 -a 0 -x {9.0 10.0 2295 ------- null} - -t 2.61051 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4581 -a 0 -x {9.0 10.0 2295 ------- null} h -t 2.61051 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4581 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.61058 -s 0 -d 9 -p ack -e 40 -c 0 -i 4588 -a 0 -x {10.0 9.0 2289 ------- null} - -t 2.61058 -s 0 -d 9 -p ack -e 40 -c 0 -i 4588 -a 0 -x {10.0 9.0 2289 ------- null} h -t 2.61058 -s 0 -d 9 -p ack -e 40 -c 0 -i 4588 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.61075 -s 10 -d 7 -p ack -e 40 -c 0 -i 4592 -a 0 -x {10.0 9.0 2291 ------- null} + -t 2.61075 -s 7 -d 0 -p ack -e 40 -c 0 -i 4592 -a 0 -x {10.0 9.0 2291 ------- null} h -t 2.61075 -s 7 -d 8 -p ack -e 40 -c 0 -i 4592 -a 0 -x {10.0 9.0 2291 ------- null} r -t 2.61096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4591 -a 0 -x {9.0 10.0 2300 ------- null} + -t 2.61096 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4591 -a 0 -x {9.0 10.0 2300 ------- null} h -t 2.61096 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4591 -a 0 -x {9.0 10.0 2300 ------- null} r -t 2.61114 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4577 -a 0 -x {9.0 10.0 2293 ------- null} + -t 2.61114 -s 10 -d 7 -p ack -e 40 -c 0 -i 4596 -a 0 -x {10.0 9.0 2293 ------- null} - -t 2.61114 -s 10 -d 7 -p ack -e 40 -c 0 -i 4596 -a 0 -x {10.0 9.0 2293 ------- null} h -t 2.61114 -s 10 -d 7 -p ack -e 40 -c 0 -i 4596 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.61154 -s 0 -d 9 -p ack -e 40 -c 0 -i 4586 -a 0 -x {10.0 9.0 2288 ------- null} + -t 2.61154 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4597 -a 0 -x {9.0 10.0 2303 ------- null} - -t 2.61154 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4597 -a 0 -x {9.0 10.0 2303 ------- null} h -t 2.61154 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4597 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.6116 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4583 -a 0 -x {9.0 10.0 2296 ------- null} - -t 2.6116 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4583 -a 0 -x {9.0 10.0 2296 ------- null} h -t 2.6116 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4583 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.61184 -s 10 -d 7 -p ack -e 40 -c 0 -i 4594 -a 0 -x {10.0 9.0 2292 ------- null} + -t 2.61184 -s 7 -d 0 -p ack -e 40 -c 0 -i 4594 -a 0 -x {10.0 9.0 2292 ------- null} h -t 2.61184 -s 7 -d 8 -p ack -e 40 -c 0 -i 4594 -a 0 -x {10.0 9.0 2292 ------- null} + -t 2.61187 -s 0 -d 9 -p ack -e 40 -c 0 -i 4590 -a 0 -x {10.0 9.0 2290 ------- null} - -t 2.61187 -s 0 -d 9 -p ack -e 40 -c 0 -i 4590 -a 0 -x {10.0 9.0 2290 ------- null} h -t 2.61187 -s 0 -d 9 -p ack -e 40 -c 0 -i 4590 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.61214 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4593 -a 0 -x {9.0 10.0 2301 ------- null} + -t 2.61214 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4593 -a 0 -x {9.0 10.0 2301 ------- null} h -t 2.61214 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4593 -a 0 -x {9.0 10.0 2301 ------- null} r -t 2.61222 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4579 -a 0 -x {9.0 10.0 2294 ------- null} + -t 2.61222 -s 10 -d 7 -p ack -e 40 -c 0 -i 4598 -a 0 -x {10.0 9.0 2294 ------- null} - -t 2.61222 -s 10 -d 7 -p ack -e 40 -c 0 -i 4598 -a 0 -x {10.0 9.0 2294 ------- null} h -t 2.61222 -s 10 -d 7 -p ack -e 40 -c 0 -i 4598 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.61261 -s 0 -d 9 -p ack -e 40 -c 0 -i 4588 -a 0 -x {10.0 9.0 2289 ------- null} + -t 2.61261 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4599 -a 0 -x {9.0 10.0 2304 ------- null} - -t 2.61261 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4599 -a 0 -x {9.0 10.0 2304 ------- null} h -t 2.61261 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4599 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.61275 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4585 -a 0 -x {9.0 10.0 2297 ------- null} - -t 2.61275 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4585 -a 0 -x {9.0 10.0 2297 ------- null} h -t 2.61275 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4585 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.61288 -s 0 -d 9 -p ack -e 40 -c 0 -i 4592 -a 0 -x {10.0 9.0 2291 ------- null} - -t 2.61288 -s 0 -d 9 -p ack -e 40 -c 0 -i 4592 -a 0 -x {10.0 9.0 2291 ------- null} h -t 2.61288 -s 0 -d 9 -p ack -e 40 -c 0 -i 4592 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.61317 -s 10 -d 7 -p ack -e 40 -c 0 -i 4596 -a 0 -x {10.0 9.0 2293 ------- null} + -t 2.61317 -s 7 -d 0 -p ack -e 40 -c 0 -i 4596 -a 0 -x {10.0 9.0 2293 ------- null} h -t 2.61317 -s 7 -d 8 -p ack -e 40 -c 0 -i 4596 -a 0 -x {10.0 9.0 2293 ------- null} r -t 2.6133 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4595 -a 0 -x {9.0 10.0 2302 ------- null} + -t 2.6133 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4595 -a 0 -x {9.0 10.0 2302 ------- null} h -t 2.6133 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4595 -a 0 -x {9.0 10.0 2302 ------- null} r -t 2.61331 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4581 -a 0 -x {9.0 10.0 2295 ------- null} + -t 2.61331 -s 10 -d 7 -p ack -e 40 -c 0 -i 4600 -a 0 -x {10.0 9.0 2295 ------- null} - -t 2.61331 -s 10 -d 7 -p ack -e 40 -c 0 -i 4600 -a 0 -x {10.0 9.0 2295 ------- null} h -t 2.61331 -s 10 -d 7 -p ack -e 40 -c 0 -i 4600 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.61384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4587 -a 0 -x {9.0 10.0 2298 ------- null} - -t 2.61384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4587 -a 0 -x {9.0 10.0 2298 ------- null} h -t 2.61384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4587 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.6139 -s 0 -d 9 -p ack -e 40 -c 0 -i 4590 -a 0 -x {10.0 9.0 2290 ------- null} + -t 2.6139 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4601 -a 0 -x {9.0 10.0 2305 ------- null} - -t 2.6139 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4601 -a 0 -x {9.0 10.0 2305 ------- null} h -t 2.6139 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4601 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.61414 -s 0 -d 9 -p ack -e 40 -c 0 -i 4594 -a 0 -x {10.0 9.0 2292 ------- null} - -t 2.61414 -s 0 -d 9 -p ack -e 40 -c 0 -i 4594 -a 0 -x {10.0 9.0 2292 ------- null} h -t 2.61414 -s 0 -d 9 -p ack -e 40 -c 0 -i 4594 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.61426 -s 10 -d 7 -p ack -e 40 -c 0 -i 4598 -a 0 -x {10.0 9.0 2294 ------- null} + -t 2.61426 -s 7 -d 0 -p ack -e 40 -c 0 -i 4598 -a 0 -x {10.0 9.0 2294 ------- null} h -t 2.61426 -s 7 -d 8 -p ack -e 40 -c 0 -i 4598 -a 0 -x {10.0 9.0 2294 ------- null} r -t 2.61434 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4597 -a 0 -x {9.0 10.0 2303 ------- null} + -t 2.61434 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4597 -a 0 -x {9.0 10.0 2303 ------- null} h -t 2.61434 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4597 -a 0 -x {9.0 10.0 2303 ------- null} r -t 2.6144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4583 -a 0 -x {9.0 10.0 2296 ------- null} + -t 2.6144 -s 10 -d 7 -p ack -e 40 -c 0 -i 4602 -a 0 -x {10.0 9.0 2296 ------- null} - -t 2.6144 -s 10 -d 7 -p ack -e 40 -c 0 -i 4602 -a 0 -x {10.0 9.0 2296 ------- null} h -t 2.6144 -s 10 -d 7 -p ack -e 40 -c 0 -i 4602 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.61491 -s 0 -d 9 -p ack -e 40 -c 0 -i 4592 -a 0 -x {10.0 9.0 2291 ------- null} + -t 2.61491 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4603 -a 0 -x {9.0 10.0 2306 ------- null} - -t 2.61491 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4603 -a 0 -x {9.0 10.0 2306 ------- null} h -t 2.61491 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4603 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.61522 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4589 -a 0 -x {9.0 10.0 2299 ------- null} - -t 2.61522 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4589 -a 0 -x {9.0 10.0 2299 ------- null} h -t 2.61522 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4589 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.61534 -s 10 -d 7 -p ack -e 40 -c 0 -i 4600 -a 0 -x {10.0 9.0 2295 ------- null} + -t 2.61534 -s 7 -d 0 -p ack -e 40 -c 0 -i 4600 -a 0 -x {10.0 9.0 2295 ------- null} h -t 2.61534 -s 7 -d 8 -p ack -e 40 -c 0 -i 4600 -a 0 -x {10.0 9.0 2295 ------- null} + -t 2.61539 -s 0 -d 9 -p ack -e 40 -c 0 -i 4596 -a 0 -x {10.0 9.0 2293 ------- null} - -t 2.61539 -s 0 -d 9 -p ack -e 40 -c 0 -i 4596 -a 0 -x {10.0 9.0 2293 ------- null} h -t 2.61539 -s 0 -d 9 -p ack -e 40 -c 0 -i 4596 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.61541 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4599 -a 0 -x {9.0 10.0 2304 ------- null} + -t 2.61541 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4599 -a 0 -x {9.0 10.0 2304 ------- null} h -t 2.61541 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4599 -a 0 -x {9.0 10.0 2304 ------- null} r -t 2.61555 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4585 -a 0 -x {9.0 10.0 2297 ------- null} + -t 2.61555 -s 10 -d 7 -p ack -e 40 -c 0 -i 4604 -a 0 -x {10.0 9.0 2297 ------- null} - -t 2.61555 -s 10 -d 7 -p ack -e 40 -c 0 -i 4604 -a 0 -x {10.0 9.0 2297 ------- null} h -t 2.61555 -s 10 -d 7 -p ack -e 40 -c 0 -i 4604 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.61618 -s 0 -d 9 -p ack -e 40 -c 0 -i 4594 -a 0 -x {10.0 9.0 2292 ------- null} + -t 2.61618 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4605 -a 0 -x {9.0 10.0 2307 ------- null} - -t 2.61618 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4605 -a 0 -x {9.0 10.0 2307 ------- null} h -t 2.61618 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4605 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.6163 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4591 -a 0 -x {9.0 10.0 2300 ------- null} - -t 2.6163 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4591 -a 0 -x {9.0 10.0 2300 ------- null} h -t 2.6163 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4591 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.61642 -s 0 -d 9 -p ack -e 40 -c 0 -i 4598 -a 0 -x {10.0 9.0 2294 ------- null} - -t 2.61642 -s 0 -d 9 -p ack -e 40 -c 0 -i 4598 -a 0 -x {10.0 9.0 2294 ------- null} h -t 2.61642 -s 0 -d 9 -p ack -e 40 -c 0 -i 4598 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.61643 -s 10 -d 7 -p ack -e 40 -c 0 -i 4602 -a 0 -x {10.0 9.0 2296 ------- null} + -t 2.61643 -s 7 -d 0 -p ack -e 40 -c 0 -i 4602 -a 0 -x {10.0 9.0 2296 ------- null} h -t 2.61643 -s 7 -d 8 -p ack -e 40 -c 0 -i 4602 -a 0 -x {10.0 9.0 2296 ------- null} r -t 2.61664 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4587 -a 0 -x {9.0 10.0 2298 ------- null} + -t 2.61664 -s 10 -d 7 -p ack -e 40 -c 0 -i 4606 -a 0 -x {10.0 9.0 2298 ------- null} - -t 2.61664 -s 10 -d 7 -p ack -e 40 -c 0 -i 4606 -a 0 -x {10.0 9.0 2298 ------- null} h -t 2.61664 -s 10 -d 7 -p ack -e 40 -c 0 -i 4606 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.6167 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4601 -a 0 -x {9.0 10.0 2305 ------- null} + -t 2.6167 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4601 -a 0 -x {9.0 10.0 2305 ------- null} h -t 2.6167 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4601 -a 0 -x {9.0 10.0 2305 ------- null} + -t 2.61739 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4593 -a 0 -x {9.0 10.0 2301 ------- null} - -t 2.61739 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4593 -a 0 -x {9.0 10.0 2301 ------- null} h -t 2.61739 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4593 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.61742 -s 0 -d 9 -p ack -e 40 -c 0 -i 4596 -a 0 -x {10.0 9.0 2293 ------- null} + -t 2.61742 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4607 -a 0 -x {9.0 10.0 2308 ------- null} - -t 2.61742 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4607 -a 0 -x {9.0 10.0 2308 ------- null} h -t 2.61742 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4607 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.61758 -s 10 -d 7 -p ack -e 40 -c 0 -i 4604 -a 0 -x {10.0 9.0 2297 ------- null} + -t 2.61758 -s 7 -d 0 -p ack -e 40 -c 0 -i 4604 -a 0 -x {10.0 9.0 2297 ------- null} h -t 2.61758 -s 7 -d 8 -p ack -e 40 -c 0 -i 4604 -a 0 -x {10.0 9.0 2297 ------- null} + -t 2.6176 -s 0 -d 9 -p ack -e 40 -c 0 -i 4600 -a 0 -x {10.0 9.0 2295 ------- null} - -t 2.6176 -s 0 -d 9 -p ack -e 40 -c 0 -i 4600 -a 0 -x {10.0 9.0 2295 ------- null} h -t 2.6176 -s 0 -d 9 -p ack -e 40 -c 0 -i 4600 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.61771 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4603 -a 0 -x {9.0 10.0 2306 ------- null} + -t 2.61771 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4603 -a 0 -x {9.0 10.0 2306 ------- null} h -t 2.61771 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4603 -a 0 -x {9.0 10.0 2306 ------- null} r -t 2.61802 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4589 -a 0 -x {9.0 10.0 2299 ------- null} + -t 2.61802 -s 10 -d 7 -p ack -e 40 -c 0 -i 4608 -a 0 -x {10.0 9.0 2299 ------- null} - -t 2.61802 -s 10 -d 7 -p ack -e 40 -c 0 -i 4608 -a 0 -x {10.0 9.0 2299 ------- null} h -t 2.61802 -s 10 -d 7 -p ack -e 40 -c 0 -i 4608 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.61845 -s 0 -d 9 -p ack -e 40 -c 0 -i 4598 -a 0 -x {10.0 9.0 2294 ------- null} + -t 2.61845 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4609 -a 0 -x {9.0 10.0 2309 ------- null} - -t 2.61845 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4609 -a 0 -x {9.0 10.0 2309 ------- null} h -t 2.61845 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4609 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.61848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4595 -a 0 -x {9.0 10.0 2302 ------- null} - -t 2.61848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4595 -a 0 -x {9.0 10.0 2302 ------- null} h -t 2.61848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4595 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.61867 -s 10 -d 7 -p ack -e 40 -c 0 -i 4606 -a 0 -x {10.0 9.0 2298 ------- null} + -t 2.61867 -s 7 -d 0 -p ack -e 40 -c 0 -i 4606 -a 0 -x {10.0 9.0 2298 ------- null} h -t 2.61867 -s 7 -d 8 -p ack -e 40 -c 0 -i 4606 -a 0 -x {10.0 9.0 2298 ------- null} + -t 2.61872 -s 0 -d 9 -p ack -e 40 -c 0 -i 4602 -a 0 -x {10.0 9.0 2296 ------- null} - -t 2.61872 -s 0 -d 9 -p ack -e 40 -c 0 -i 4602 -a 0 -x {10.0 9.0 2296 ------- null} h -t 2.61872 -s 0 -d 9 -p ack -e 40 -c 0 -i 4602 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.61898 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4605 -a 0 -x {9.0 10.0 2307 ------- null} + -t 2.61898 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4605 -a 0 -x {9.0 10.0 2307 ------- null} h -t 2.61898 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4605 -a 0 -x {9.0 10.0 2307 ------- null} r -t 2.6191 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4591 -a 0 -x {9.0 10.0 2300 ------- null} + -t 2.6191 -s 10 -d 7 -p ack -e 40 -c 0 -i 4610 -a 0 -x {10.0 9.0 2300 ------- null} - -t 2.6191 -s 10 -d 7 -p ack -e 40 -c 0 -i 4610 -a 0 -x {10.0 9.0 2300 ------- null} h -t 2.6191 -s 10 -d 7 -p ack -e 40 -c 0 -i 4610 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.61957 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4597 -a 0 -x {9.0 10.0 2303 ------- null} - -t 2.61957 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4597 -a 0 -x {9.0 10.0 2303 ------- null} h -t 2.61957 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4597 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.61963 -s 0 -d 9 -p ack -e 40 -c 0 -i 4600 -a 0 -x {10.0 9.0 2295 ------- null} + -t 2.61963 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4611 -a 0 -x {9.0 10.0 2310 ------- null} - -t 2.61963 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4611 -a 0 -x {9.0 10.0 2310 ------- null} h -t 2.61963 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4611 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.61982 -s 0 -d 9 -p ack -e 40 -c 0 -i 4604 -a 0 -x {10.0 9.0 2297 ------- null} - -t 2.61982 -s 0 -d 9 -p ack -e 40 -c 0 -i 4604 -a 0 -x {10.0 9.0 2297 ------- null} h -t 2.61982 -s 0 -d 9 -p ack -e 40 -c 0 -i 4604 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.62005 -s 10 -d 7 -p ack -e 40 -c 0 -i 4608 -a 0 -x {10.0 9.0 2299 ------- null} + -t 2.62005 -s 7 -d 0 -p ack -e 40 -c 0 -i 4608 -a 0 -x {10.0 9.0 2299 ------- null} h -t 2.62005 -s 7 -d 8 -p ack -e 40 -c 0 -i 4608 -a 0 -x {10.0 9.0 2299 ------- null} r -t 2.62019 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4593 -a 0 -x {9.0 10.0 2301 ------- null} + -t 2.62019 -s 10 -d 7 -p ack -e 40 -c 0 -i 4612 -a 0 -x {10.0 9.0 2301 ------- null} - -t 2.62019 -s 10 -d 7 -p ack -e 40 -c 0 -i 4612 -a 0 -x {10.0 9.0 2301 ------- null} h -t 2.62019 -s 10 -d 7 -p ack -e 40 -c 0 -i 4612 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.62022 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4607 -a 0 -x {9.0 10.0 2308 ------- null} + -t 2.62022 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4607 -a 0 -x {9.0 10.0 2308 ------- null} h -t 2.62022 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4607 -a 0 -x {9.0 10.0 2308 ------- null} r -t 2.62075 -s 0 -d 9 -p ack -e 40 -c 0 -i 4602 -a 0 -x {10.0 9.0 2296 ------- null} + -t 2.62075 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4613 -a 0 -x {9.0 10.0 2311 ------- null} - -t 2.62075 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4613 -a 0 -x {9.0 10.0 2311 ------- null} h -t 2.62075 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4613 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.62075 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4599 -a 0 -x {9.0 10.0 2304 ------- null} - -t 2.62075 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4599 -a 0 -x {9.0 10.0 2304 ------- null} h -t 2.62075 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4599 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.62091 -s 0 -d 9 -p ack -e 40 -c 0 -i 4606 -a 0 -x {10.0 9.0 2298 ------- null} - -t 2.62091 -s 0 -d 9 -p ack -e 40 -c 0 -i 4606 -a 0 -x {10.0 9.0 2298 ------- null} h -t 2.62091 -s 0 -d 9 -p ack -e 40 -c 0 -i 4606 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.62114 -s 10 -d 7 -p ack -e 40 -c 0 -i 4610 -a 0 -x {10.0 9.0 2300 ------- null} + -t 2.62114 -s 7 -d 0 -p ack -e 40 -c 0 -i 4610 -a 0 -x {10.0 9.0 2300 ------- null} h -t 2.62114 -s 7 -d 8 -p ack -e 40 -c 0 -i 4610 -a 0 -x {10.0 9.0 2300 ------- null} r -t 2.62125 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4609 -a 0 -x {9.0 10.0 2309 ------- null} + -t 2.62125 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4609 -a 0 -x {9.0 10.0 2309 ------- null} h -t 2.62125 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4609 -a 0 -x {9.0 10.0 2309 ------- null} r -t 2.62128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4595 -a 0 -x {9.0 10.0 2302 ------- null} + -t 2.62128 -s 10 -d 7 -p ack -e 40 -c 0 -i 4614 -a 0 -x {10.0 9.0 2302 ------- null} - -t 2.62128 -s 10 -d 7 -p ack -e 40 -c 0 -i 4614 -a 0 -x {10.0 9.0 2302 ------- null} h -t 2.62128 -s 10 -d 7 -p ack -e 40 -c 0 -i 4614 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.62184 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4601 -a 0 -x {9.0 10.0 2305 ------- null} - -t 2.62184 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4601 -a 0 -x {9.0 10.0 2305 ------- null} h -t 2.62184 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4601 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.62186 -s 0 -d 9 -p ack -e 40 -c 0 -i 4604 -a 0 -x {10.0 9.0 2297 ------- null} + -t 2.62186 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4615 -a 0 -x {9.0 10.0 2312 ------- null} - -t 2.62186 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4615 -a 0 -x {9.0 10.0 2312 ------- null} h -t 2.62186 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4615 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.62206 -s 0 -d 9 -p ack -e 40 -c 0 -i 4608 -a 0 -x {10.0 9.0 2299 ------- null} - -t 2.62206 -s 0 -d 9 -p ack -e 40 -c 0 -i 4608 -a 0 -x {10.0 9.0 2299 ------- null} h -t 2.62206 -s 0 -d 9 -p ack -e 40 -c 0 -i 4608 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.62222 -s 10 -d 7 -p ack -e 40 -c 0 -i 4612 -a 0 -x {10.0 9.0 2301 ------- null} + -t 2.62222 -s 7 -d 0 -p ack -e 40 -c 0 -i 4612 -a 0 -x {10.0 9.0 2301 ------- null} h -t 2.62222 -s 7 -d 8 -p ack -e 40 -c 0 -i 4612 -a 0 -x {10.0 9.0 2301 ------- null} r -t 2.62237 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4597 -a 0 -x {9.0 10.0 2303 ------- null} + -t 2.62237 -s 10 -d 7 -p ack -e 40 -c 0 -i 4616 -a 0 -x {10.0 9.0 2303 ------- null} - -t 2.62237 -s 10 -d 7 -p ack -e 40 -c 0 -i 4616 -a 0 -x {10.0 9.0 2303 ------- null} h -t 2.62237 -s 10 -d 7 -p ack -e 40 -c 0 -i 4616 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.62243 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4611 -a 0 -x {9.0 10.0 2310 ------- null} + -t 2.62243 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4611 -a 0 -x {9.0 10.0 2310 ------- null} h -t 2.62243 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4611 -a 0 -x {9.0 10.0 2310 ------- null} + -t 2.62293 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4603 -a 0 -x {9.0 10.0 2306 ------- null} - -t 2.62293 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4603 -a 0 -x {9.0 10.0 2306 ------- null} h -t 2.62293 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4603 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.62294 -s 0 -d 9 -p ack -e 40 -c 0 -i 4606 -a 0 -x {10.0 9.0 2298 ------- null} + -t 2.62294 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4617 -a 0 -x {9.0 10.0 2313 ------- null} - -t 2.62294 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4617 -a 0 -x {9.0 10.0 2313 ------- null} h -t 2.62294 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4617 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.62309 -s 0 -d 9 -p ack -e 40 -c 0 -i 4610 -a 0 -x {10.0 9.0 2300 ------- null} - -t 2.62309 -s 0 -d 9 -p ack -e 40 -c 0 -i 4610 -a 0 -x {10.0 9.0 2300 ------- null} h -t 2.62309 -s 0 -d 9 -p ack -e 40 -c 0 -i 4610 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.62331 -s 10 -d 7 -p ack -e 40 -c 0 -i 4614 -a 0 -x {10.0 9.0 2302 ------- null} + -t 2.62331 -s 7 -d 0 -p ack -e 40 -c 0 -i 4614 -a 0 -x {10.0 9.0 2302 ------- null} h -t 2.62331 -s 7 -d 8 -p ack -e 40 -c 0 -i 4614 -a 0 -x {10.0 9.0 2302 ------- null} r -t 2.62355 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4613 -a 0 -x {9.0 10.0 2311 ------- null} + -t 2.62355 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4613 -a 0 -x {9.0 10.0 2311 ------- null} h -t 2.62355 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4613 -a 0 -x {9.0 10.0 2311 ------- null} r -t 2.62355 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4599 -a 0 -x {9.0 10.0 2304 ------- null} + -t 2.62355 -s 10 -d 7 -p ack -e 40 -c 0 -i 4618 -a 0 -x {10.0 9.0 2304 ------- null} - -t 2.62355 -s 10 -d 7 -p ack -e 40 -c 0 -i 4618 -a 0 -x {10.0 9.0 2304 ------- null} h -t 2.62355 -s 10 -d 7 -p ack -e 40 -c 0 -i 4618 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.62402 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4605 -a 0 -x {9.0 10.0 2307 ------- null} - -t 2.62402 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4605 -a 0 -x {9.0 10.0 2307 ------- null} h -t 2.62402 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4605 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.6241 -s 0 -d 9 -p ack -e 40 -c 0 -i 4608 -a 0 -x {10.0 9.0 2299 ------- null} + -t 2.6241 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4619 -a 0 -x {9.0 10.0 2314 ------- null} - -t 2.6241 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4619 -a 0 -x {9.0 10.0 2314 ------- null} h -t 2.6241 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4619 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.6243 -s 0 -d 9 -p ack -e 40 -c 0 -i 4612 -a 0 -x {10.0 9.0 2301 ------- null} - -t 2.6243 -s 0 -d 9 -p ack -e 40 -c 0 -i 4612 -a 0 -x {10.0 9.0 2301 ------- null} h -t 2.6243 -s 0 -d 9 -p ack -e 40 -c 0 -i 4612 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.6244 -s 10 -d 7 -p ack -e 40 -c 0 -i 4616 -a 0 -x {10.0 9.0 2303 ------- null} + -t 2.6244 -s 7 -d 0 -p ack -e 40 -c 0 -i 4616 -a 0 -x {10.0 9.0 2303 ------- null} h -t 2.6244 -s 7 -d 8 -p ack -e 40 -c 0 -i 4616 -a 0 -x {10.0 9.0 2303 ------- null} r -t 2.62464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4601 -a 0 -x {9.0 10.0 2305 ------- null} + -t 2.62464 -s 10 -d 7 -p ack -e 40 -c 0 -i 4620 -a 0 -x {10.0 9.0 2305 ------- null} - -t 2.62464 -s 10 -d 7 -p ack -e 40 -c 0 -i 4620 -a 0 -x {10.0 9.0 2305 ------- null} h -t 2.62464 -s 10 -d 7 -p ack -e 40 -c 0 -i 4620 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.62466 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4615 -a 0 -x {9.0 10.0 2312 ------- null} + -t 2.62466 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4615 -a 0 -x {9.0 10.0 2312 ------- null} h -t 2.62466 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4615 -a 0 -x {9.0 10.0 2312 ------- null} r -t 2.62512 -s 0 -d 9 -p ack -e 40 -c 0 -i 4610 -a 0 -x {10.0 9.0 2300 ------- null} + -t 2.62512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4621 -a 0 -x {9.0 10.0 2315 ------- null} - -t 2.62512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4621 -a 0 -x {9.0 10.0 2315 ------- null} h -t 2.62512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4621 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.62534 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4607 -a 0 -x {9.0 10.0 2308 ------- null} - -t 2.62534 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4607 -a 0 -x {9.0 10.0 2308 ------- null} h -t 2.62534 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4607 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.62547 -s 0 -d 9 -p ack -e 40 -c 0 -i 4614 -a 0 -x {10.0 9.0 2302 ------- null} - -t 2.62547 -s 0 -d 9 -p ack -e 40 -c 0 -i 4614 -a 0 -x {10.0 9.0 2302 ------- null} h -t 2.62547 -s 0 -d 9 -p ack -e 40 -c 0 -i 4614 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.62558 -s 10 -d 7 -p ack -e 40 -c 0 -i 4618 -a 0 -x {10.0 9.0 2304 ------- null} + -t 2.62558 -s 7 -d 0 -p ack -e 40 -c 0 -i 4618 -a 0 -x {10.0 9.0 2304 ------- null} h -t 2.62558 -s 7 -d 8 -p ack -e 40 -c 0 -i 4618 -a 0 -x {10.0 9.0 2304 ------- null} r -t 2.62573 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4603 -a 0 -x {9.0 10.0 2306 ------- null} + -t 2.62573 -s 10 -d 7 -p ack -e 40 -c 0 -i 4622 -a 0 -x {10.0 9.0 2306 ------- null} - -t 2.62573 -s 10 -d 7 -p ack -e 40 -c 0 -i 4622 -a 0 -x {10.0 9.0 2306 ------- null} h -t 2.62573 -s 10 -d 7 -p ack -e 40 -c 0 -i 4622 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.62574 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4617 -a 0 -x {9.0 10.0 2313 ------- null} + -t 2.62574 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4617 -a 0 -x {9.0 10.0 2313 ------- null} h -t 2.62574 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4617 -a 0 -x {9.0 10.0 2313 ------- null} r -t 2.62634 -s 0 -d 9 -p ack -e 40 -c 0 -i 4612 -a 0 -x {10.0 9.0 2301 ------- null} + -t 2.62634 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4623 -a 0 -x {9.0 10.0 2316 ------- null} - -t 2.62634 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4623 -a 0 -x {9.0 10.0 2316 ------- null} h -t 2.62634 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4623 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.62643 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4609 -a 0 -x {9.0 10.0 2309 ------- null} - -t 2.62643 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4609 -a 0 -x {9.0 10.0 2309 ------- null} h -t 2.62643 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4609 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.62666 -s 0 -d 9 -p ack -e 40 -c 0 -i 4616 -a 0 -x {10.0 9.0 2303 ------- null} - -t 2.62666 -s 0 -d 9 -p ack -e 40 -c 0 -i 4616 -a 0 -x {10.0 9.0 2303 ------- null} h -t 2.62666 -s 0 -d 9 -p ack -e 40 -c 0 -i 4616 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.62667 -s 10 -d 7 -p ack -e 40 -c 0 -i 4620 -a 0 -x {10.0 9.0 2305 ------- null} + -t 2.62667 -s 7 -d 0 -p ack -e 40 -c 0 -i 4620 -a 0 -x {10.0 9.0 2305 ------- null} h -t 2.62667 -s 7 -d 8 -p ack -e 40 -c 0 -i 4620 -a 0 -x {10.0 9.0 2305 ------- null} r -t 2.62682 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4605 -a 0 -x {9.0 10.0 2307 ------- null} + -t 2.62682 -s 10 -d 7 -p ack -e 40 -c 0 -i 4624 -a 0 -x {10.0 9.0 2307 ------- null} - -t 2.62682 -s 10 -d 7 -p ack -e 40 -c 0 -i 4624 -a 0 -x {10.0 9.0 2307 ------- null} h -t 2.62682 -s 10 -d 7 -p ack -e 40 -c 0 -i 4624 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.6269 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4619 -a 0 -x {9.0 10.0 2314 ------- null} + -t 2.6269 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4619 -a 0 -x {9.0 10.0 2314 ------- null} h -t 2.6269 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4619 -a 0 -x {9.0 10.0 2314 ------- null} r -t 2.6275 -s 0 -d 9 -p ack -e 40 -c 0 -i 4614 -a 0 -x {10.0 9.0 2302 ------- null} + -t 2.6275 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4625 -a 0 -x {9.0 10.0 2317 ------- null} - -t 2.6275 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4625 -a 0 -x {9.0 10.0 2317 ------- null} h -t 2.6275 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4625 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.62752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4611 -a 0 -x {9.0 10.0 2310 ------- null} - -t 2.62752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4611 -a 0 -x {9.0 10.0 2310 ------- null} h -t 2.62752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4611 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.6277 -s 0 -d 9 -p ack -e 40 -c 0 -i 4618 -a 0 -x {10.0 9.0 2304 ------- null} - -t 2.6277 -s 0 -d 9 -p ack -e 40 -c 0 -i 4618 -a 0 -x {10.0 9.0 2304 ------- null} h -t 2.6277 -s 0 -d 9 -p ack -e 40 -c 0 -i 4618 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.62776 -s 10 -d 7 -p ack -e 40 -c 0 -i 4622 -a 0 -x {10.0 9.0 2306 ------- null} + -t 2.62776 -s 7 -d 0 -p ack -e 40 -c 0 -i 4622 -a 0 -x {10.0 9.0 2306 ------- null} h -t 2.62776 -s 7 -d 8 -p ack -e 40 -c 0 -i 4622 -a 0 -x {10.0 9.0 2306 ------- null} r -t 2.62792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4621 -a 0 -x {9.0 10.0 2315 ------- null} + -t 2.62792 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4621 -a 0 -x {9.0 10.0 2315 ------- null} h -t 2.62792 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4621 -a 0 -x {9.0 10.0 2315 ------- null} r -t 2.62814 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4607 -a 0 -x {9.0 10.0 2308 ------- null} + -t 2.62814 -s 10 -d 7 -p ack -e 40 -c 0 -i 4626 -a 0 -x {10.0 9.0 2308 ------- null} - -t 2.62814 -s 10 -d 7 -p ack -e 40 -c 0 -i 4626 -a 0 -x {10.0 9.0 2308 ------- null} h -t 2.62814 -s 10 -d 7 -p ack -e 40 -c 0 -i 4626 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.62861 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4613 -a 0 -x {9.0 10.0 2311 ------- null} - -t 2.62861 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4613 -a 0 -x {9.0 10.0 2311 ------- null} h -t 2.62861 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4613 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.62869 -s 0 -d 9 -p ack -e 40 -c 0 -i 4616 -a 0 -x {10.0 9.0 2303 ------- null} + -t 2.62869 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4627 -a 0 -x {9.0 10.0 2318 ------- null} - -t 2.62869 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4627 -a 0 -x {9.0 10.0 2318 ------- null} h -t 2.62869 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4627 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.62885 -s 10 -d 7 -p ack -e 40 -c 0 -i 4624 -a 0 -x {10.0 9.0 2307 ------- null} + -t 2.62885 -s 7 -d 0 -p ack -e 40 -c 0 -i 4624 -a 0 -x {10.0 9.0 2307 ------- null} h -t 2.62885 -s 7 -d 8 -p ack -e 40 -c 0 -i 4624 -a 0 -x {10.0 9.0 2307 ------- null} + -t 2.62888 -s 0 -d 9 -p ack -e 40 -c 0 -i 4620 -a 0 -x {10.0 9.0 2305 ------- null} - -t 2.62888 -s 0 -d 9 -p ack -e 40 -c 0 -i 4620 -a 0 -x {10.0 9.0 2305 ------- null} h -t 2.62888 -s 0 -d 9 -p ack -e 40 -c 0 -i 4620 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.62914 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4623 -a 0 -x {9.0 10.0 2316 ------- null} + -t 2.62914 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4623 -a 0 -x {9.0 10.0 2316 ------- null} h -t 2.62914 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4623 -a 0 -x {9.0 10.0 2316 ------- null} r -t 2.62923 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4609 -a 0 -x {9.0 10.0 2309 ------- null} + -t 2.62923 -s 10 -d 7 -p ack -e 40 -c 0 -i 4628 -a 0 -x {10.0 9.0 2309 ------- null} - -t 2.62923 -s 10 -d 7 -p ack -e 40 -c 0 -i 4628 -a 0 -x {10.0 9.0 2309 ------- null} h -t 2.62923 -s 10 -d 7 -p ack -e 40 -c 0 -i 4628 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.62973 -s 0 -d 9 -p ack -e 40 -c 0 -i 4618 -a 0 -x {10.0 9.0 2304 ------- null} + -t 2.62973 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4629 -a 0 -x {9.0 10.0 2319 ------- null} - -t 2.62973 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4629 -a 0 -x {9.0 10.0 2319 ------- null} h -t 2.62973 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4629 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.62973 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4615 -a 0 -x {9.0 10.0 2312 ------- null} - -t 2.62973 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4615 -a 0 -x {9.0 10.0 2312 ------- null} h -t 2.62973 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4615 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.62987 -s 0 -d 9 -p ack -e 40 -c 0 -i 4622 -a 0 -x {10.0 9.0 2306 ------- null} - -t 2.62987 -s 0 -d 9 -p ack -e 40 -c 0 -i 4622 -a 0 -x {10.0 9.0 2306 ------- null} h -t 2.62987 -s 0 -d 9 -p ack -e 40 -c 0 -i 4622 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.63018 -s 10 -d 7 -p ack -e 40 -c 0 -i 4626 -a 0 -x {10.0 9.0 2308 ------- null} + -t 2.63018 -s 7 -d 0 -p ack -e 40 -c 0 -i 4626 -a 0 -x {10.0 9.0 2308 ------- null} h -t 2.63018 -s 7 -d 8 -p ack -e 40 -c 0 -i 4626 -a 0 -x {10.0 9.0 2308 ------- null} r -t 2.6303 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4625 -a 0 -x {9.0 10.0 2317 ------- null} + -t 2.6303 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4625 -a 0 -x {9.0 10.0 2317 ------- null} h -t 2.6303 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4625 -a 0 -x {9.0 10.0 2317 ------- null} r -t 2.63032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4611 -a 0 -x {9.0 10.0 2310 ------- null} + -t 2.63032 -s 10 -d 7 -p ack -e 40 -c 0 -i 4630 -a 0 -x {10.0 9.0 2310 ------- null} - -t 2.63032 -s 10 -d 7 -p ack -e 40 -c 0 -i 4630 -a 0 -x {10.0 9.0 2310 ------- null} h -t 2.63032 -s 10 -d 7 -p ack -e 40 -c 0 -i 4630 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.63082 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4617 -a 0 -x {9.0 10.0 2313 ------- null} - -t 2.63082 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4617 -a 0 -x {9.0 10.0 2313 ------- null} h -t 2.63082 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4617 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.63091 -s 0 -d 9 -p ack -e 40 -c 0 -i 4620 -a 0 -x {10.0 9.0 2305 ------- null} + -t 2.63091 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4631 -a 0 -x {9.0 10.0 2320 ------- null} - -t 2.63091 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4631 -a 0 -x {9.0 10.0 2320 ------- null} h -t 2.63091 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4631 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.63109 -s 0 -d 9 -p ack -e 40 -c 0 -i 4624 -a 0 -x {10.0 9.0 2307 ------- null} - -t 2.63109 -s 0 -d 9 -p ack -e 40 -c 0 -i 4624 -a 0 -x {10.0 9.0 2307 ------- null} h -t 2.63109 -s 0 -d 9 -p ack -e 40 -c 0 -i 4624 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.63126 -s 10 -d 7 -p ack -e 40 -c 0 -i 4628 -a 0 -x {10.0 9.0 2309 ------- null} + -t 2.63126 -s 7 -d 0 -p ack -e 40 -c 0 -i 4628 -a 0 -x {10.0 9.0 2309 ------- null} h -t 2.63126 -s 7 -d 8 -p ack -e 40 -c 0 -i 4628 -a 0 -x {10.0 9.0 2309 ------- null} r -t 2.63141 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4613 -a 0 -x {9.0 10.0 2311 ------- null} + -t 2.63141 -s 10 -d 7 -p ack -e 40 -c 0 -i 4632 -a 0 -x {10.0 9.0 2311 ------- null} - -t 2.63141 -s 10 -d 7 -p ack -e 40 -c 0 -i 4632 -a 0 -x {10.0 9.0 2311 ------- null} h -t 2.63141 -s 10 -d 7 -p ack -e 40 -c 0 -i 4632 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.63149 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4627 -a 0 -x {9.0 10.0 2318 ------- null} + -t 2.63149 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4627 -a 0 -x {9.0 10.0 2318 ------- null} h -t 2.63149 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4627 -a 0 -x {9.0 10.0 2318 ------- null} r -t 2.6319 -s 0 -d 9 -p ack -e 40 -c 0 -i 4622 -a 0 -x {10.0 9.0 2306 ------- null} + -t 2.6319 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4633 -a 0 -x {9.0 10.0 2321 ------- null} - -t 2.6319 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4633 -a 0 -x {9.0 10.0 2321 ------- null} h -t 2.6319 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4633 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.63205 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4619 -a 0 -x {9.0 10.0 2314 ------- null} - -t 2.63205 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4619 -a 0 -x {9.0 10.0 2314 ------- null} h -t 2.63205 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4619 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.63221 -s 0 -d 9 -p ack -e 40 -c 0 -i 4626 -a 0 -x {10.0 9.0 2308 ------- null} - -t 2.63221 -s 0 -d 9 -p ack -e 40 -c 0 -i 4626 -a 0 -x {10.0 9.0 2308 ------- null} h -t 2.63221 -s 0 -d 9 -p ack -e 40 -c 0 -i 4626 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.63235 -s 10 -d 7 -p ack -e 40 -c 0 -i 4630 -a 0 -x {10.0 9.0 2310 ------- null} + -t 2.63235 -s 7 -d 0 -p ack -e 40 -c 0 -i 4630 -a 0 -x {10.0 9.0 2310 ------- null} h -t 2.63235 -s 7 -d 8 -p ack -e 40 -c 0 -i 4630 -a 0 -x {10.0 9.0 2310 ------- null} r -t 2.63253 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4629 -a 0 -x {9.0 10.0 2319 ------- null} + -t 2.63253 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4629 -a 0 -x {9.0 10.0 2319 ------- null} h -t 2.63253 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4629 -a 0 -x {9.0 10.0 2319 ------- null} r -t 2.63253 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4615 -a 0 -x {9.0 10.0 2312 ------- null} + -t 2.63253 -s 10 -d 7 -p ack -e 40 -c 0 -i 4634 -a 0 -x {10.0 9.0 2312 ------- null} - -t 2.63253 -s 10 -d 7 -p ack -e 40 -c 0 -i 4634 -a 0 -x {10.0 9.0 2312 ------- null} h -t 2.63253 -s 10 -d 7 -p ack -e 40 -c 0 -i 4634 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.63312 -s 0 -d 9 -p ack -e 40 -c 0 -i 4624 -a 0 -x {10.0 9.0 2307 ------- null} + -t 2.63312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4635 -a 0 -x {9.0 10.0 2322 ------- null} - -t 2.63312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4635 -a 0 -x {9.0 10.0 2322 ------- null} h -t 2.63312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4635 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.63314 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4621 -a 0 -x {9.0 10.0 2315 ------- null} - -t 2.63314 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4621 -a 0 -x {9.0 10.0 2315 ------- null} h -t 2.63314 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4621 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.63339 -s 0 -d 9 -p ack -e 40 -c 0 -i 4628 -a 0 -x {10.0 9.0 2309 ------- null} - -t 2.63339 -s 0 -d 9 -p ack -e 40 -c 0 -i 4628 -a 0 -x {10.0 9.0 2309 ------- null} h -t 2.63339 -s 0 -d 9 -p ack -e 40 -c 0 -i 4628 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.63344 -s 10 -d 7 -p ack -e 40 -c 0 -i 4632 -a 0 -x {10.0 9.0 2311 ------- null} + -t 2.63344 -s 7 -d 0 -p ack -e 40 -c 0 -i 4632 -a 0 -x {10.0 9.0 2311 ------- null} h -t 2.63344 -s 7 -d 8 -p ack -e 40 -c 0 -i 4632 -a 0 -x {10.0 9.0 2311 ------- null} r -t 2.63362 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4617 -a 0 -x {9.0 10.0 2313 ------- null} + -t 2.63362 -s 10 -d 7 -p ack -e 40 -c 0 -i 4636 -a 0 -x {10.0 9.0 2313 ------- null} - -t 2.63362 -s 10 -d 7 -p ack -e 40 -c 0 -i 4636 -a 0 -x {10.0 9.0 2313 ------- null} h -t 2.63362 -s 10 -d 7 -p ack -e 40 -c 0 -i 4636 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.63371 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4631 -a 0 -x {9.0 10.0 2320 ------- null} + -t 2.63371 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4631 -a 0 -x {9.0 10.0 2320 ------- null} h -t 2.63371 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4631 -a 0 -x {9.0 10.0 2320 ------- null} r -t 2.63424 -s 0 -d 9 -p ack -e 40 -c 0 -i 4626 -a 0 -x {10.0 9.0 2308 ------- null} + -t 2.63424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4637 -a 0 -x {9.0 10.0 2323 ------- null} - -t 2.63424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4637 -a 0 -x {9.0 10.0 2323 ------- null} h -t 2.63424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4637 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.63429 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4623 -a 0 -x {9.0 10.0 2316 ------- null} - -t 2.63429 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4623 -a 0 -x {9.0 10.0 2316 ------- null} h -t 2.63429 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4623 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.63456 -s 10 -d 7 -p ack -e 40 -c 0 -i 4634 -a 0 -x {10.0 9.0 2312 ------- null} + -t 2.63456 -s 7 -d 0 -p ack -e 40 -c 0 -i 4634 -a 0 -x {10.0 9.0 2312 ------- null} h -t 2.63456 -s 7 -d 8 -p ack -e 40 -c 0 -i 4634 -a 0 -x {10.0 9.0 2312 ------- null} + -t 2.63456 -s 0 -d 9 -p ack -e 40 -c 0 -i 4630 -a 0 -x {10.0 9.0 2310 ------- null} - -t 2.63456 -s 0 -d 9 -p ack -e 40 -c 0 -i 4630 -a 0 -x {10.0 9.0 2310 ------- null} h -t 2.63456 -s 0 -d 9 -p ack -e 40 -c 0 -i 4630 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.6347 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4633 -a 0 -x {9.0 10.0 2321 ------- null} + -t 2.6347 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4633 -a 0 -x {9.0 10.0 2321 ------- null} h -t 2.6347 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4633 -a 0 -x {9.0 10.0 2321 ------- null} r -t 2.63485 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4619 -a 0 -x {9.0 10.0 2314 ------- null} + -t 2.63485 -s 10 -d 7 -p ack -e 40 -c 0 -i 4638 -a 0 -x {10.0 9.0 2314 ------- null} - -t 2.63485 -s 10 -d 7 -p ack -e 40 -c 0 -i 4638 -a 0 -x {10.0 9.0 2314 ------- null} h -t 2.63485 -s 10 -d 7 -p ack -e 40 -c 0 -i 4638 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.63542 -s 0 -d 9 -p ack -e 40 -c 0 -i 4628 -a 0 -x {10.0 9.0 2309 ------- null} + -t 2.63542 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4639 -a 0 -x {9.0 10.0 2324 ------- null} - -t 2.63542 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4639 -a 0 -x {9.0 10.0 2324 ------- null} h -t 2.63542 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4639 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.63555 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4625 -a 0 -x {9.0 10.0 2317 ------- null} - -t 2.63555 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4625 -a 0 -x {9.0 10.0 2317 ------- null} h -t 2.63555 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4625 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.63565 -s 10 -d 7 -p ack -e 40 -c 0 -i 4636 -a 0 -x {10.0 9.0 2313 ------- null} + -t 2.63565 -s 7 -d 0 -p ack -e 40 -c 0 -i 4636 -a 0 -x {10.0 9.0 2313 ------- null} h -t 2.63565 -s 7 -d 8 -p ack -e 40 -c 0 -i 4636 -a 0 -x {10.0 9.0 2313 ------- null} + -t 2.63578 -s 0 -d 9 -p ack -e 40 -c 0 -i 4632 -a 0 -x {10.0 9.0 2311 ------- null} - -t 2.63578 -s 0 -d 9 -p ack -e 40 -c 0 -i 4632 -a 0 -x {10.0 9.0 2311 ------- null} h -t 2.63578 -s 0 -d 9 -p ack -e 40 -c 0 -i 4632 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.63592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4635 -a 0 -x {9.0 10.0 2322 ------- null} + -t 2.63592 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4635 -a 0 -x {9.0 10.0 2322 ------- null} h -t 2.63592 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4635 -a 0 -x {9.0 10.0 2322 ------- null} r -t 2.63594 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4621 -a 0 -x {9.0 10.0 2315 ------- null} + -t 2.63594 -s 10 -d 7 -p ack -e 40 -c 0 -i 4640 -a 0 -x {10.0 9.0 2315 ------- null} - -t 2.63594 -s 10 -d 7 -p ack -e 40 -c 0 -i 4640 -a 0 -x {10.0 9.0 2315 ------- null} h -t 2.63594 -s 10 -d 7 -p ack -e 40 -c 0 -i 4640 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.63659 -s 0 -d 9 -p ack -e 40 -c 0 -i 4630 -a 0 -x {10.0 9.0 2310 ------- null} + -t 2.63659 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4641 -a 0 -x {9.0 10.0 2325 ------- null} - -t 2.63659 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4641 -a 0 -x {9.0 10.0 2325 ------- null} h -t 2.63659 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4641 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.63664 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4627 -a 0 -x {9.0 10.0 2318 ------- null} - -t 2.63664 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4627 -a 0 -x {9.0 10.0 2318 ------- null} h -t 2.63664 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4627 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.63688 -s 10 -d 7 -p ack -e 40 -c 0 -i 4638 -a 0 -x {10.0 9.0 2314 ------- null} + -t 2.63688 -s 7 -d 0 -p ack -e 40 -c 0 -i 4638 -a 0 -x {10.0 9.0 2314 ------- null} h -t 2.63688 -s 7 -d 8 -p ack -e 40 -c 0 -i 4638 -a 0 -x {10.0 9.0 2314 ------- null} + -t 2.63693 -s 0 -d 9 -p ack -e 40 -c 0 -i 4634 -a 0 -x {10.0 9.0 2312 ------- null} - -t 2.63693 -s 0 -d 9 -p ack -e 40 -c 0 -i 4634 -a 0 -x {10.0 9.0 2312 ------- null} h -t 2.63693 -s 0 -d 9 -p ack -e 40 -c 0 -i 4634 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.63704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4637 -a 0 -x {9.0 10.0 2323 ------- null} + -t 2.63704 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4637 -a 0 -x {9.0 10.0 2323 ------- null} h -t 2.63704 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4637 -a 0 -x {9.0 10.0 2323 ------- null} r -t 2.63709 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4623 -a 0 -x {9.0 10.0 2316 ------- null} + -t 2.63709 -s 10 -d 7 -p ack -e 40 -c 0 -i 4642 -a 0 -x {10.0 9.0 2316 ------- null} - -t 2.63709 -s 10 -d 7 -p ack -e 40 -c 0 -i 4642 -a 0 -x {10.0 9.0 2316 ------- null} h -t 2.63709 -s 10 -d 7 -p ack -e 40 -c 0 -i 4642 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.63781 -s 0 -d 9 -p ack -e 40 -c 0 -i 4632 -a 0 -x {10.0 9.0 2311 ------- null} + -t 2.63781 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4643 -a 0 -x {9.0 10.0 2326 ------- null} - -t 2.63781 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4643 -a 0 -x {9.0 10.0 2326 ------- null} h -t 2.63781 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4643 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.63797 -s 10 -d 7 -p ack -e 40 -c 0 -i 4640 -a 0 -x {10.0 9.0 2315 ------- null} + -t 2.63797 -s 7 -d 0 -p ack -e 40 -c 0 -i 4640 -a 0 -x {10.0 9.0 2315 ------- null} h -t 2.63797 -s 7 -d 8 -p ack -e 40 -c 0 -i 4640 -a 0 -x {10.0 9.0 2315 ------- null} + -t 2.638 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4629 -a 0 -x {9.0 10.0 2319 ------- null} - -t 2.638 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4629 -a 0 -x {9.0 10.0 2319 ------- null} h -t 2.638 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4629 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.63816 -s 0 -d 9 -p ack -e 40 -c 0 -i 4636 -a 0 -x {10.0 9.0 2313 ------- null} - -t 2.63816 -s 0 -d 9 -p ack -e 40 -c 0 -i 4636 -a 0 -x {10.0 9.0 2313 ------- null} h -t 2.63816 -s 0 -d 9 -p ack -e 40 -c 0 -i 4636 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.63822 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4639 -a 0 -x {9.0 10.0 2324 ------- null} + -t 2.63822 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4639 -a 0 -x {9.0 10.0 2324 ------- null} h -t 2.63822 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4639 -a 0 -x {9.0 10.0 2324 ------- null} r -t 2.63835 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4625 -a 0 -x {9.0 10.0 2317 ------- null} + -t 2.63835 -s 10 -d 7 -p ack -e 40 -c 0 -i 4644 -a 0 -x {10.0 9.0 2317 ------- null} - -t 2.63835 -s 10 -d 7 -p ack -e 40 -c 0 -i 4644 -a 0 -x {10.0 9.0 2317 ------- null} h -t 2.63835 -s 10 -d 7 -p ack -e 40 -c 0 -i 4644 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.63896 -s 0 -d 9 -p ack -e 40 -c 0 -i 4634 -a 0 -x {10.0 9.0 2312 ------- null} + -t 2.63896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4645 -a 0 -x {9.0 10.0 2327 ------- null} - -t 2.63896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4645 -a 0 -x {9.0 10.0 2327 ------- null} h -t 2.63896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4645 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.63909 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4631 -a 0 -x {9.0 10.0 2320 ------- null} - -t 2.63909 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4631 -a 0 -x {9.0 10.0 2320 ------- null} h -t 2.63909 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4631 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.63912 -s 10 -d 7 -p ack -e 40 -c 0 -i 4642 -a 0 -x {10.0 9.0 2316 ------- null} + -t 2.63912 -s 7 -d 0 -p ack -e 40 -c 0 -i 4642 -a 0 -x {10.0 9.0 2316 ------- null} h -t 2.63912 -s 7 -d 8 -p ack -e 40 -c 0 -i 4642 -a 0 -x {10.0 9.0 2316 ------- null} + -t 2.63923 -s 0 -d 9 -p ack -e 40 -c 0 -i 4638 -a 0 -x {10.0 9.0 2314 ------- null} - -t 2.63923 -s 0 -d 9 -p ack -e 40 -c 0 -i 4638 -a 0 -x {10.0 9.0 2314 ------- null} h -t 2.63923 -s 0 -d 9 -p ack -e 40 -c 0 -i 4638 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.63939 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4641 -a 0 -x {9.0 10.0 2325 ------- null} + -t 2.63939 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4641 -a 0 -x {9.0 10.0 2325 ------- null} h -t 2.63939 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4641 -a 0 -x {9.0 10.0 2325 ------- null} r -t 2.63944 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4627 -a 0 -x {9.0 10.0 2318 ------- null} + -t 2.63944 -s 10 -d 7 -p ack -e 40 -c 0 -i 4646 -a 0 -x {10.0 9.0 2318 ------- null} - -t 2.63944 -s 10 -d 7 -p ack -e 40 -c 0 -i 4646 -a 0 -x {10.0 9.0 2318 ------- null} h -t 2.63944 -s 10 -d 7 -p ack -e 40 -c 0 -i 4646 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.64018 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4633 -a 0 -x {9.0 10.0 2321 ------- null} - -t 2.64018 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4633 -a 0 -x {9.0 10.0 2321 ------- null} h -t 2.64018 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4633 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.64019 -s 0 -d 9 -p ack -e 40 -c 0 -i 4636 -a 0 -x {10.0 9.0 2313 ------- null} + -t 2.64019 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4647 -a 0 -x {9.0 10.0 2328 ------- null} - -t 2.64019 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4647 -a 0 -x {9.0 10.0 2328 ------- null} h -t 2.64019 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4647 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.64037 -s 0 -d 9 -p ack -e 40 -c 0 -i 4640 -a 0 -x {10.0 9.0 2315 ------- null} - -t 2.64037 -s 0 -d 9 -p ack -e 40 -c 0 -i 4640 -a 0 -x {10.0 9.0 2315 ------- null} h -t 2.64037 -s 0 -d 9 -p ack -e 40 -c 0 -i 4640 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.64038 -s 10 -d 7 -p ack -e 40 -c 0 -i 4644 -a 0 -x {10.0 9.0 2317 ------- null} + -t 2.64038 -s 7 -d 0 -p ack -e 40 -c 0 -i 4644 -a 0 -x {10.0 9.0 2317 ------- null} h -t 2.64038 -s 7 -d 8 -p ack -e 40 -c 0 -i 4644 -a 0 -x {10.0 9.0 2317 ------- null} r -t 2.64061 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4643 -a 0 -x {9.0 10.0 2326 ------- null} + -t 2.64061 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4643 -a 0 -x {9.0 10.0 2326 ------- null} h -t 2.64061 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4643 -a 0 -x {9.0 10.0 2326 ------- null} r -t 2.6408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4629 -a 0 -x {9.0 10.0 2319 ------- null} + -t 2.6408 -s 10 -d 7 -p ack -e 40 -c 0 -i 4648 -a 0 -x {10.0 9.0 2319 ------- null} - -t 2.6408 -s 10 -d 7 -p ack -e 40 -c 0 -i 4648 -a 0 -x {10.0 9.0 2319 ------- null} h -t 2.6408 -s 10 -d 7 -p ack -e 40 -c 0 -i 4648 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.64126 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4635 -a 0 -x {9.0 10.0 2322 ------- null} - -t 2.64126 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4635 -a 0 -x {9.0 10.0 2322 ------- null} h -t 2.64126 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4635 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.64126 -s 0 -d 9 -p ack -e 40 -c 0 -i 4638 -a 0 -x {10.0 9.0 2314 ------- null} + -t 2.64126 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4649 -a 0 -x {9.0 10.0 2329 ------- null} - -t 2.64126 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4649 -a 0 -x {9.0 10.0 2329 ------- null} h -t 2.64126 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4649 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.64133 -s 0 -d 9 -p ack -e 40 -c 0 -i 4642 -a 0 -x {10.0 9.0 2316 ------- null} - -t 2.64133 -s 0 -d 9 -p ack -e 40 -c 0 -i 4642 -a 0 -x {10.0 9.0 2316 ------- null} h -t 2.64133 -s 0 -d 9 -p ack -e 40 -c 0 -i 4642 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.64147 -s 10 -d 7 -p ack -e 40 -c 0 -i 4646 -a 0 -x {10.0 9.0 2318 ------- null} + -t 2.64147 -s 7 -d 0 -p ack -e 40 -c 0 -i 4646 -a 0 -x {10.0 9.0 2318 ------- null} h -t 2.64147 -s 7 -d 8 -p ack -e 40 -c 0 -i 4646 -a 0 -x {10.0 9.0 2318 ------- null} r -t 2.64176 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4645 -a 0 -x {9.0 10.0 2327 ------- null} + -t 2.64176 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4645 -a 0 -x {9.0 10.0 2327 ------- null} h -t 2.64176 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4645 -a 0 -x {9.0 10.0 2327 ------- null} r -t 2.64189 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4631 -a 0 -x {9.0 10.0 2320 ------- null} + -t 2.64189 -s 10 -d 7 -p ack -e 40 -c 0 -i 4650 -a 0 -x {10.0 9.0 2320 ------- null} - -t 2.64189 -s 10 -d 7 -p ack -e 40 -c 0 -i 4650 -a 0 -x {10.0 9.0 2320 ------- null} h -t 2.64189 -s 10 -d 7 -p ack -e 40 -c 0 -i 4650 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.64235 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4637 -a 0 -x {9.0 10.0 2323 ------- null} - -t 2.64235 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4637 -a 0 -x {9.0 10.0 2323 ------- null} h -t 2.64235 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4637 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.6424 -s 0 -d 9 -p ack -e 40 -c 0 -i 4640 -a 0 -x {10.0 9.0 2315 ------- null} + -t 2.6424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4651 -a 0 -x {9.0 10.0 2330 ------- null} - -t 2.6424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4651 -a 0 -x {9.0 10.0 2330 ------- null} h -t 2.6424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4651 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.64242 -s 0 -d 9 -p ack -e 40 -c 0 -i 4644 -a 0 -x {10.0 9.0 2317 ------- null} - -t 2.64242 -s 0 -d 9 -p ack -e 40 -c 0 -i 4644 -a 0 -x {10.0 9.0 2317 ------- null} h -t 2.64242 -s 0 -d 9 -p ack -e 40 -c 0 -i 4644 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.64283 -s 10 -d 7 -p ack -e 40 -c 0 -i 4648 -a 0 -x {10.0 9.0 2319 ------- null} + -t 2.64283 -s 7 -d 0 -p ack -e 40 -c 0 -i 4648 -a 0 -x {10.0 9.0 2319 ------- null} h -t 2.64283 -s 7 -d 8 -p ack -e 40 -c 0 -i 4648 -a 0 -x {10.0 9.0 2319 ------- null} r -t 2.64298 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4633 -a 0 -x {9.0 10.0 2321 ------- null} + -t 2.64298 -s 10 -d 7 -p ack -e 40 -c 0 -i 4652 -a 0 -x {10.0 9.0 2321 ------- null} - -t 2.64298 -s 10 -d 7 -p ack -e 40 -c 0 -i 4652 -a 0 -x {10.0 9.0 2321 ------- null} h -t 2.64298 -s 10 -d 7 -p ack -e 40 -c 0 -i 4652 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.64299 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4647 -a 0 -x {9.0 10.0 2328 ------- null} + -t 2.64299 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4647 -a 0 -x {9.0 10.0 2328 ------- null} h -t 2.64299 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4647 -a 0 -x {9.0 10.0 2328 ------- null} r -t 2.64336 -s 0 -d 9 -p ack -e 40 -c 0 -i 4642 -a 0 -x {10.0 9.0 2316 ------- null} + -t 2.64336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4653 -a 0 -x {9.0 10.0 2331 ------- null} - -t 2.64336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4653 -a 0 -x {9.0 10.0 2331 ------- null} h -t 2.64336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4653 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.64344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4639 -a 0 -x {9.0 10.0 2324 ------- null} - -t 2.64344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4639 -a 0 -x {9.0 10.0 2324 ------- null} h -t 2.64344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4639 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.64363 -s 0 -d 9 -p ack -e 40 -c 0 -i 4646 -a 0 -x {10.0 9.0 2318 ------- null} - -t 2.64363 -s 0 -d 9 -p ack -e 40 -c 0 -i 4646 -a 0 -x {10.0 9.0 2318 ------- null} h -t 2.64363 -s 0 -d 9 -p ack -e 40 -c 0 -i 4646 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.64392 -s 10 -d 7 -p ack -e 40 -c 0 -i 4650 -a 0 -x {10.0 9.0 2320 ------- null} + -t 2.64392 -s 7 -d 0 -p ack -e 40 -c 0 -i 4650 -a 0 -x {10.0 9.0 2320 ------- null} h -t 2.64392 -s 7 -d 8 -p ack -e 40 -c 0 -i 4650 -a 0 -x {10.0 9.0 2320 ------- null} r -t 2.64406 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4635 -a 0 -x {9.0 10.0 2322 ------- null} + -t 2.64406 -s 10 -d 7 -p ack -e 40 -c 0 -i 4654 -a 0 -x {10.0 9.0 2322 ------- null} - -t 2.64406 -s 10 -d 7 -p ack -e 40 -c 0 -i 4654 -a 0 -x {10.0 9.0 2322 ------- null} h -t 2.64406 -s 10 -d 7 -p ack -e 40 -c 0 -i 4654 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.64406 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4649 -a 0 -x {9.0 10.0 2329 ------- null} + -t 2.64406 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4649 -a 0 -x {9.0 10.0 2329 ------- null} h -t 2.64406 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4649 -a 0 -x {9.0 10.0 2329 ------- null} r -t 2.64445 -s 0 -d 9 -p ack -e 40 -c 0 -i 4644 -a 0 -x {10.0 9.0 2317 ------- null} + -t 2.64445 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4655 -a 0 -x {9.0 10.0 2332 ------- null} - -t 2.64445 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4655 -a 0 -x {9.0 10.0 2332 ------- null} h -t 2.64445 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4655 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.64453 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4641 -a 0 -x {9.0 10.0 2325 ------- null} - -t 2.64453 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4641 -a 0 -x {9.0 10.0 2325 ------- null} h -t 2.64453 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4641 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.64469 -s 0 -d 9 -p ack -e 40 -c 0 -i 4648 -a 0 -x {10.0 9.0 2319 ------- null} - -t 2.64469 -s 0 -d 9 -p ack -e 40 -c 0 -i 4648 -a 0 -x {10.0 9.0 2319 ------- null} h -t 2.64469 -s 0 -d 9 -p ack -e 40 -c 0 -i 4648 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.64501 -s 10 -d 7 -p ack -e 40 -c 0 -i 4652 -a 0 -x {10.0 9.0 2321 ------- null} + -t 2.64501 -s 7 -d 0 -p ack -e 40 -c 0 -i 4652 -a 0 -x {10.0 9.0 2321 ------- null} h -t 2.64501 -s 7 -d 8 -p ack -e 40 -c 0 -i 4652 -a 0 -x {10.0 9.0 2321 ------- null} r -t 2.64515 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4637 -a 0 -x {9.0 10.0 2323 ------- null} + -t 2.64515 -s 10 -d 7 -p ack -e 40 -c 0 -i 4656 -a 0 -x {10.0 9.0 2323 ------- null} - -t 2.64515 -s 10 -d 7 -p ack -e 40 -c 0 -i 4656 -a 0 -x {10.0 9.0 2323 ------- null} h -t 2.64515 -s 10 -d 7 -p ack -e 40 -c 0 -i 4656 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.6452 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4651 -a 0 -x {9.0 10.0 2330 ------- null} + -t 2.6452 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4651 -a 0 -x {9.0 10.0 2330 ------- null} h -t 2.6452 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4651 -a 0 -x {9.0 10.0 2330 ------- null} + -t 2.64562 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4643 -a 0 -x {9.0 10.0 2326 ------- null} - -t 2.64562 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4643 -a 0 -x {9.0 10.0 2326 ------- null} h -t 2.64562 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4643 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.64566 -s 0 -d 9 -p ack -e 40 -c 0 -i 4646 -a 0 -x {10.0 9.0 2318 ------- null} + -t 2.64566 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4657 -a 0 -x {9.0 10.0 2333 ------- null} - -t 2.64566 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4657 -a 0 -x {9.0 10.0 2333 ------- null} h -t 2.64566 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4657 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.64576 -s 0 -d 9 -p ack -e 40 -c 0 -i 4650 -a 0 -x {10.0 9.0 2320 ------- null} - -t 2.64576 -s 0 -d 9 -p ack -e 40 -c 0 -i 4650 -a 0 -x {10.0 9.0 2320 ------- null} h -t 2.64576 -s 0 -d 9 -p ack -e 40 -c 0 -i 4650 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.6461 -s 10 -d 7 -p ack -e 40 -c 0 -i 4654 -a 0 -x {10.0 9.0 2322 ------- null} + -t 2.6461 -s 7 -d 0 -p ack -e 40 -c 0 -i 4654 -a 0 -x {10.0 9.0 2322 ------- null} h -t 2.6461 -s 7 -d 8 -p ack -e 40 -c 0 -i 4654 -a 0 -x {10.0 9.0 2322 ------- null} r -t 2.64616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4653 -a 0 -x {9.0 10.0 2331 ------- null} + -t 2.64616 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4653 -a 0 -x {9.0 10.0 2331 ------- null} h -t 2.64616 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4653 -a 0 -x {9.0 10.0 2331 ------- null} r -t 2.64624 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4639 -a 0 -x {9.0 10.0 2324 ------- null} + -t 2.64624 -s 10 -d 7 -p ack -e 40 -c 0 -i 4658 -a 0 -x {10.0 9.0 2324 ------- null} - -t 2.64624 -s 10 -d 7 -p ack -e 40 -c 0 -i 4658 -a 0 -x {10.0 9.0 2324 ------- null} h -t 2.64624 -s 10 -d 7 -p ack -e 40 -c 0 -i 4658 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.6467 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4645 -a 0 -x {9.0 10.0 2327 ------- null} - -t 2.6467 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4645 -a 0 -x {9.0 10.0 2327 ------- null} h -t 2.6467 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4645 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.64672 -s 0 -d 9 -p ack -e 40 -c 0 -i 4648 -a 0 -x {10.0 9.0 2319 ------- null} + -t 2.64672 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4659 -a 0 -x {9.0 10.0 2334 ------- null} - -t 2.64672 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4659 -a 0 -x {9.0 10.0 2334 ------- null} h -t 2.64672 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4659 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.64701 -s 0 -d 9 -p ack -e 40 -c 0 -i 4652 -a 0 -x {10.0 9.0 2321 ------- null} - -t 2.64701 -s 0 -d 9 -p ack -e 40 -c 0 -i 4652 -a 0 -x {10.0 9.0 2321 ------- null} h -t 2.64701 -s 0 -d 9 -p ack -e 40 -c 0 -i 4652 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.64718 -s 10 -d 7 -p ack -e 40 -c 0 -i 4656 -a 0 -x {10.0 9.0 2323 ------- null} + -t 2.64718 -s 7 -d 0 -p ack -e 40 -c 0 -i 4656 -a 0 -x {10.0 9.0 2323 ------- null} h -t 2.64718 -s 7 -d 8 -p ack -e 40 -c 0 -i 4656 -a 0 -x {10.0 9.0 2323 ------- null} r -t 2.64725 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4655 -a 0 -x {9.0 10.0 2332 ------- null} + -t 2.64725 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4655 -a 0 -x {9.0 10.0 2332 ------- null} h -t 2.64725 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4655 -a 0 -x {9.0 10.0 2332 ------- null} r -t 2.64733 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4641 -a 0 -x {9.0 10.0 2325 ------- null} + -t 2.64733 -s 10 -d 7 -p ack -e 40 -c 0 -i 4660 -a 0 -x {10.0 9.0 2325 ------- null} - -t 2.64733 -s 10 -d 7 -p ack -e 40 -c 0 -i 4660 -a 0 -x {10.0 9.0 2325 ------- null} h -t 2.64733 -s 10 -d 7 -p ack -e 40 -c 0 -i 4660 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.64779 -s 0 -d 9 -p ack -e 40 -c 0 -i 4650 -a 0 -x {10.0 9.0 2320 ------- null} + -t 2.64779 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4661 -a 0 -x {9.0 10.0 2335 ------- null} - -t 2.64779 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4661 -a 0 -x {9.0 10.0 2335 ------- null} h -t 2.64779 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4661 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.64792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4647 -a 0 -x {9.0 10.0 2328 ------- null} - -t 2.64792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4647 -a 0 -x {9.0 10.0 2328 ------- null} h -t 2.64792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4647 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.64811 -s 0 -d 9 -p ack -e 40 -c 0 -i 4654 -a 0 -x {10.0 9.0 2322 ------- null} - -t 2.64811 -s 0 -d 9 -p ack -e 40 -c 0 -i 4654 -a 0 -x {10.0 9.0 2322 ------- null} h -t 2.64811 -s 0 -d 9 -p ack -e 40 -c 0 -i 4654 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.64827 -s 10 -d 7 -p ack -e 40 -c 0 -i 4658 -a 0 -x {10.0 9.0 2324 ------- null} + -t 2.64827 -s 7 -d 0 -p ack -e 40 -c 0 -i 4658 -a 0 -x {10.0 9.0 2324 ------- null} h -t 2.64827 -s 7 -d 8 -p ack -e 40 -c 0 -i 4658 -a 0 -x {10.0 9.0 2324 ------- null} r -t 2.64842 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4643 -a 0 -x {9.0 10.0 2326 ------- null} + -t 2.64842 -s 10 -d 7 -p ack -e 40 -c 0 -i 4662 -a 0 -x {10.0 9.0 2326 ------- null} - -t 2.64842 -s 10 -d 7 -p ack -e 40 -c 0 -i 4662 -a 0 -x {10.0 9.0 2326 ------- null} h -t 2.64842 -s 10 -d 7 -p ack -e 40 -c 0 -i 4662 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.64846 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4657 -a 0 -x {9.0 10.0 2333 ------- null} + -t 2.64846 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4657 -a 0 -x {9.0 10.0 2333 ------- null} h -t 2.64846 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4657 -a 0 -x {9.0 10.0 2333 ------- null} + -t 2.64901 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4649 -a 0 -x {9.0 10.0 2329 ------- null} - -t 2.64901 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4649 -a 0 -x {9.0 10.0 2329 ------- null} h -t 2.64901 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4649 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.64904 -s 0 -d 9 -p ack -e 40 -c 0 -i 4652 -a 0 -x {10.0 9.0 2321 ------- null} + -t 2.64904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4663 -a 0 -x {9.0 10.0 2336 ------- null} - -t 2.64904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4663 -a 0 -x {9.0 10.0 2336 ------- null} h -t 2.64904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4663 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.6493 -s 0 -d 9 -p ack -e 40 -c 0 -i 4656 -a 0 -x {10.0 9.0 2323 ------- null} - -t 2.6493 -s 0 -d 9 -p ack -e 40 -c 0 -i 4656 -a 0 -x {10.0 9.0 2323 ------- null} h -t 2.6493 -s 0 -d 9 -p ack -e 40 -c 0 -i 4656 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.64936 -s 10 -d 7 -p ack -e 40 -c 0 -i 4660 -a 0 -x {10.0 9.0 2325 ------- null} + -t 2.64936 -s 7 -d 0 -p ack -e 40 -c 0 -i 4660 -a 0 -x {10.0 9.0 2325 ------- null} h -t 2.64936 -s 7 -d 8 -p ack -e 40 -c 0 -i 4660 -a 0 -x {10.0 9.0 2325 ------- null} r -t 2.6495 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4645 -a 0 -x {9.0 10.0 2327 ------- null} + -t 2.6495 -s 10 -d 7 -p ack -e 40 -c 0 -i 4664 -a 0 -x {10.0 9.0 2327 ------- null} - -t 2.6495 -s 10 -d 7 -p ack -e 40 -c 0 -i 4664 -a 0 -x {10.0 9.0 2327 ------- null} h -t 2.6495 -s 10 -d 7 -p ack -e 40 -c 0 -i 4664 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.64952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4659 -a 0 -x {9.0 10.0 2334 ------- null} + -t 2.64952 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4659 -a 0 -x {9.0 10.0 2334 ------- null} h -t 2.64952 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4659 -a 0 -x {9.0 10.0 2334 ------- null} r -t 2.65014 -s 0 -d 9 -p ack -e 40 -c 0 -i 4654 -a 0 -x {10.0 9.0 2322 ------- null} + -t 2.65014 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4665 -a 0 -x {9.0 10.0 2337 ------- null} - -t 2.65014 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4665 -a 0 -x {9.0 10.0 2337 ------- null} h -t 2.65014 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4665 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.65027 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4651 -a 0 -x {9.0 10.0 2330 ------- null} - -t 2.65027 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4651 -a 0 -x {9.0 10.0 2330 ------- null} h -t 2.65027 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4651 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.65045 -s 10 -d 7 -p ack -e 40 -c 0 -i 4662 -a 0 -x {10.0 9.0 2326 ------- null} + -t 2.65045 -s 7 -d 0 -p ack -e 40 -c 0 -i 4662 -a 0 -x {10.0 9.0 2326 ------- null} h -t 2.65045 -s 7 -d 8 -p ack -e 40 -c 0 -i 4662 -a 0 -x {10.0 9.0 2326 ------- null} + -t 2.6505 -s 0 -d 9 -p ack -e 40 -c 0 -i 4658 -a 0 -x {10.0 9.0 2324 ------- null} - -t 2.6505 -s 0 -d 9 -p ack -e 40 -c 0 -i 4658 -a 0 -x {10.0 9.0 2324 ------- null} h -t 2.6505 -s 0 -d 9 -p ack -e 40 -c 0 -i 4658 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.65059 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4661 -a 0 -x {9.0 10.0 2335 ------- null} + -t 2.65059 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4661 -a 0 -x {9.0 10.0 2335 ------- null} h -t 2.65059 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4661 -a 0 -x {9.0 10.0 2335 ------- null} r -t 2.65072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4647 -a 0 -x {9.0 10.0 2328 ------- null} + -t 2.65072 -s 10 -d 7 -p ack -e 40 -c 0 -i 4666 -a 0 -x {10.0 9.0 2328 ------- null} - -t 2.65072 -s 10 -d 7 -p ack -e 40 -c 0 -i 4666 -a 0 -x {10.0 9.0 2328 ------- null} h -t 2.65072 -s 10 -d 7 -p ack -e 40 -c 0 -i 4666 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.65133 -s 0 -d 9 -p ack -e 40 -c 0 -i 4656 -a 0 -x {10.0 9.0 2323 ------- null} + -t 2.65133 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4667 -a 0 -x {9.0 10.0 2338 ------- null} - -t 2.65133 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4667 -a 0 -x {9.0 10.0 2338 ------- null} h -t 2.65133 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4667 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.65136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4653 -a 0 -x {9.0 10.0 2331 ------- null} - -t 2.65136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4653 -a 0 -x {9.0 10.0 2331 ------- null} h -t 2.65136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4653 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.65154 -s 10 -d 7 -p ack -e 40 -c 0 -i 4664 -a 0 -x {10.0 9.0 2327 ------- null} + -t 2.65154 -s 7 -d 0 -p ack -e 40 -c 0 -i 4664 -a 0 -x {10.0 9.0 2327 ------- null} h -t 2.65154 -s 7 -d 8 -p ack -e 40 -c 0 -i 4664 -a 0 -x {10.0 9.0 2327 ------- null} + -t 2.6516 -s 0 -d 9 -p ack -e 40 -c 0 -i 4660 -a 0 -x {10.0 9.0 2325 ------- null} - -t 2.6516 -s 0 -d 9 -p ack -e 40 -c 0 -i 4660 -a 0 -x {10.0 9.0 2325 ------- null} h -t 2.6516 -s 0 -d 9 -p ack -e 40 -c 0 -i 4660 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.65181 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4649 -a 0 -x {9.0 10.0 2329 ------- null} + -t 2.65181 -s 10 -d 7 -p ack -e 40 -c 0 -i 4668 -a 0 -x {10.0 9.0 2329 ------- null} - -t 2.65181 -s 10 -d 7 -p ack -e 40 -c 0 -i 4668 -a 0 -x {10.0 9.0 2329 ------- null} h -t 2.65181 -s 10 -d 7 -p ack -e 40 -c 0 -i 4668 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.65184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4663 -a 0 -x {9.0 10.0 2336 ------- null} + -t 2.65184 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4663 -a 0 -x {9.0 10.0 2336 ------- null} h -t 2.65184 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4663 -a 0 -x {9.0 10.0 2336 ------- null} + -t 2.65245 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4655 -a 0 -x {9.0 10.0 2332 ------- null} - -t 2.65245 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4655 -a 0 -x {9.0 10.0 2332 ------- null} h -t 2.65245 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4655 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.65253 -s 0 -d 9 -p ack -e 40 -c 0 -i 4662 -a 0 -x {10.0 9.0 2326 ------- null} - -t 2.65253 -s 0 -d 9 -p ack -e 40 -c 0 -i 4662 -a 0 -x {10.0 9.0 2326 ------- null} h -t 2.65253 -s 0 -d 9 -p ack -e 40 -c 0 -i 4662 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.65253 -s 0 -d 9 -p ack -e 40 -c 0 -i 4658 -a 0 -x {10.0 9.0 2324 ------- null} + -t 2.65253 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4669 -a 0 -x {9.0 10.0 2339 ------- null} - -t 2.65253 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4669 -a 0 -x {9.0 10.0 2339 ------- null} h -t 2.65253 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4669 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.65275 -s 10 -d 7 -p ack -e 40 -c 0 -i 4666 -a 0 -x {10.0 9.0 2328 ------- null} + -t 2.65275 -s 7 -d 0 -p ack -e 40 -c 0 -i 4666 -a 0 -x {10.0 9.0 2328 ------- null} h -t 2.65275 -s 7 -d 8 -p ack -e 40 -c 0 -i 4666 -a 0 -x {10.0 9.0 2328 ------- null} r -t 2.65294 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4665 -a 0 -x {9.0 10.0 2337 ------- null} + -t 2.65294 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4665 -a 0 -x {9.0 10.0 2337 ------- null} h -t 2.65294 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4665 -a 0 -x {9.0 10.0 2337 ------- null} r -t 2.65307 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4651 -a 0 -x {9.0 10.0 2330 ------- null} + -t 2.65307 -s 10 -d 7 -p ack -e 40 -c 0 -i 4670 -a 0 -x {10.0 9.0 2330 ------- null} - -t 2.65307 -s 10 -d 7 -p ack -e 40 -c 0 -i 4670 -a 0 -x {10.0 9.0 2330 ------- null} h -t 2.65307 -s 10 -d 7 -p ack -e 40 -c 0 -i 4670 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.65354 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4657 -a 0 -x {9.0 10.0 2333 ------- null} - -t 2.65354 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4657 -a 0 -x {9.0 10.0 2333 ------- null} h -t 2.65354 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4657 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.65363 -s 0 -d 9 -p ack -e 40 -c 0 -i 4664 -a 0 -x {10.0 9.0 2327 ------- null} - -t 2.65363 -s 0 -d 9 -p ack -e 40 -c 0 -i 4664 -a 0 -x {10.0 9.0 2327 ------- null} h -t 2.65363 -s 0 -d 9 -p ack -e 40 -c 0 -i 4664 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.65363 -s 0 -d 9 -p ack -e 40 -c 0 -i 4660 -a 0 -x {10.0 9.0 2325 ------- null} + -t 2.65363 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4671 -a 0 -x {9.0 10.0 2340 ------- null} - -t 2.65363 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4671 -a 0 -x {9.0 10.0 2340 ------- null} h -t 2.65363 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4671 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.65384 -s 10 -d 7 -p ack -e 40 -c 0 -i 4668 -a 0 -x {10.0 9.0 2329 ------- null} + -t 2.65384 -s 7 -d 0 -p ack -e 40 -c 0 -i 4668 -a 0 -x {10.0 9.0 2329 ------- null} h -t 2.65384 -s 7 -d 8 -p ack -e 40 -c 0 -i 4668 -a 0 -x {10.0 9.0 2329 ------- null} r -t 2.65413 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4667 -a 0 -x {9.0 10.0 2338 ------- null} + -t 2.65413 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4667 -a 0 -x {9.0 10.0 2338 ------- null} h -t 2.65413 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4667 -a 0 -x {9.0 10.0 2338 ------- null} r -t 2.65416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4653 -a 0 -x {9.0 10.0 2331 ------- null} + -t 2.65416 -s 10 -d 7 -p ack -e 40 -c 0 -i 4672 -a 0 -x {10.0 9.0 2331 ------- null} - -t 2.65416 -s 10 -d 7 -p ack -e 40 -c 0 -i 4672 -a 0 -x {10.0 9.0 2331 ------- null} h -t 2.65416 -s 10 -d 7 -p ack -e 40 -c 0 -i 4672 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.65456 -s 0 -d 9 -p ack -e 40 -c 0 -i 4662 -a 0 -x {10.0 9.0 2326 ------- null} + -t 2.65456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4673 -a 0 -x {9.0 10.0 2341 ------- null} - -t 2.65456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4673 -a 0 -x {9.0 10.0 2341 ------- null} h -t 2.65456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4673 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.65462 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4659 -a 0 -x {9.0 10.0 2334 ------- null} - -t 2.65462 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4659 -a 0 -x {9.0 10.0 2334 ------- null} h -t 2.65462 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4659 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.6548 -s 0 -d 9 -p ack -e 40 -c 0 -i 4666 -a 0 -x {10.0 9.0 2328 ------- null} - -t 2.6548 -s 0 -d 9 -p ack -e 40 -c 0 -i 4666 -a 0 -x {10.0 9.0 2328 ------- null} h -t 2.6548 -s 0 -d 9 -p ack -e 40 -c 0 -i 4666 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.6551 -s 10 -d 7 -p ack -e 40 -c 0 -i 4670 -a 0 -x {10.0 9.0 2330 ------- null} + -t 2.6551 -s 7 -d 0 -p ack -e 40 -c 0 -i 4670 -a 0 -x {10.0 9.0 2330 ------- null} h -t 2.6551 -s 7 -d 8 -p ack -e 40 -c 0 -i 4670 -a 0 -x {10.0 9.0 2330 ------- null} r -t 2.65525 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4655 -a 0 -x {9.0 10.0 2332 ------- null} + -t 2.65525 -s 10 -d 7 -p ack -e 40 -c 0 -i 4674 -a 0 -x {10.0 9.0 2332 ------- null} - -t 2.65525 -s 10 -d 7 -p ack -e 40 -c 0 -i 4674 -a 0 -x {10.0 9.0 2332 ------- null} h -t 2.65525 -s 10 -d 7 -p ack -e 40 -c 0 -i 4674 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.65533 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4669 -a 0 -x {9.0 10.0 2339 ------- null} + -t 2.65533 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4669 -a 0 -x {9.0 10.0 2339 ------- null} h -t 2.65533 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4669 -a 0 -x {9.0 10.0 2339 ------- null} r -t 2.65566 -s 0 -d 9 -p ack -e 40 -c 0 -i 4664 -a 0 -x {10.0 9.0 2327 ------- null} + -t 2.65566 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4675 -a 0 -x {9.0 10.0 2342 ------- null} - -t 2.65566 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4675 -a 0 -x {9.0 10.0 2342 ------- null} h -t 2.65566 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4675 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.65571 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4661 -a 0 -x {9.0 10.0 2335 ------- null} - -t 2.65571 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4661 -a 0 -x {9.0 10.0 2335 ------- null} h -t 2.65571 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4661 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.65592 -s 0 -d 9 -p ack -e 40 -c 0 -i 4668 -a 0 -x {10.0 9.0 2329 ------- null} - -t 2.65592 -s 0 -d 9 -p ack -e 40 -c 0 -i 4668 -a 0 -x {10.0 9.0 2329 ------- null} h -t 2.65592 -s 0 -d 9 -p ack -e 40 -c 0 -i 4668 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.65619 -s 10 -d 7 -p ack -e 40 -c 0 -i 4672 -a 0 -x {10.0 9.0 2331 ------- null} + -t 2.65619 -s 7 -d 0 -p ack -e 40 -c 0 -i 4672 -a 0 -x {10.0 9.0 2331 ------- null} h -t 2.65619 -s 7 -d 8 -p ack -e 40 -c 0 -i 4672 -a 0 -x {10.0 9.0 2331 ------- null} r -t 2.65634 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4657 -a 0 -x {9.0 10.0 2333 ------- null} + -t 2.65634 -s 10 -d 7 -p ack -e 40 -c 0 -i 4676 -a 0 -x {10.0 9.0 2333 ------- null} - -t 2.65634 -s 10 -d 7 -p ack -e 40 -c 0 -i 4676 -a 0 -x {10.0 9.0 2333 ------- null} h -t 2.65634 -s 10 -d 7 -p ack -e 40 -c 0 -i 4676 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.65643 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4671 -a 0 -x {9.0 10.0 2340 ------- null} + -t 2.65643 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4671 -a 0 -x {9.0 10.0 2340 ------- null} h -t 2.65643 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4671 -a 0 -x {9.0 10.0 2340 ------- null} + -t 2.6568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4663 -a 0 -x {9.0 10.0 2336 ------- null} - -t 2.6568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4663 -a 0 -x {9.0 10.0 2336 ------- null} h -t 2.6568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4663 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.65683 -s 0 -d 9 -p ack -e 40 -c 0 -i 4666 -a 0 -x {10.0 9.0 2328 ------- null} + -t 2.65683 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4677 -a 0 -x {9.0 10.0 2343 ------- null} - -t 2.65683 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4677 -a 0 -x {9.0 10.0 2343 ------- null} h -t 2.65683 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4677 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.65696 -s 0 -d 9 -p ack -e 40 -c 0 -i 4670 -a 0 -x {10.0 9.0 2330 ------- null} - -t 2.65696 -s 0 -d 9 -p ack -e 40 -c 0 -i 4670 -a 0 -x {10.0 9.0 2330 ------- null} h -t 2.65696 -s 0 -d 9 -p ack -e 40 -c 0 -i 4670 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.65728 -s 10 -d 7 -p ack -e 40 -c 0 -i 4674 -a 0 -x {10.0 9.0 2332 ------- null} + -t 2.65728 -s 7 -d 0 -p ack -e 40 -c 0 -i 4674 -a 0 -x {10.0 9.0 2332 ------- null} h -t 2.65728 -s 7 -d 8 -p ack -e 40 -c 0 -i 4674 -a 0 -x {10.0 9.0 2332 ------- null} r -t 2.65736 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4673 -a 0 -x {9.0 10.0 2341 ------- null} + -t 2.65736 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4673 -a 0 -x {9.0 10.0 2341 ------- null} h -t 2.65736 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4673 -a 0 -x {9.0 10.0 2341 ------- null} r -t 2.65742 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4659 -a 0 -x {9.0 10.0 2334 ------- null} + -t 2.65742 -s 10 -d 7 -p ack -e 40 -c 0 -i 4678 -a 0 -x {10.0 9.0 2334 ------- null} - -t 2.65742 -s 10 -d 7 -p ack -e 40 -c 0 -i 4678 -a 0 -x {10.0 9.0 2334 ------- null} h -t 2.65742 -s 10 -d 7 -p ack -e 40 -c 0 -i 4678 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.65789 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4665 -a 0 -x {9.0 10.0 2337 ------- null} - -t 2.65789 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4665 -a 0 -x {9.0 10.0 2337 ------- null} h -t 2.65789 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4665 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.65795 -s 0 -d 9 -p ack -e 40 -c 0 -i 4668 -a 0 -x {10.0 9.0 2329 ------- null} + -t 2.65795 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4679 -a 0 -x {9.0 10.0 2344 ------- null} - -t 2.65795 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4679 -a 0 -x {9.0 10.0 2344 ------- null} h -t 2.65795 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4679 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.65808 -s 0 -d 9 -p ack -e 40 -c 0 -i 4672 -a 0 -x {10.0 9.0 2331 ------- null} - -t 2.65808 -s 0 -d 9 -p ack -e 40 -c 0 -i 4672 -a 0 -x {10.0 9.0 2331 ------- null} h -t 2.65808 -s 0 -d 9 -p ack -e 40 -c 0 -i 4672 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.65837 -s 10 -d 7 -p ack -e 40 -c 0 -i 4676 -a 0 -x {10.0 9.0 2333 ------- null} + -t 2.65837 -s 7 -d 0 -p ack -e 40 -c 0 -i 4676 -a 0 -x {10.0 9.0 2333 ------- null} h -t 2.65837 -s 7 -d 8 -p ack -e 40 -c 0 -i 4676 -a 0 -x {10.0 9.0 2333 ------- null} r -t 2.65846 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4675 -a 0 -x {9.0 10.0 2342 ------- null} + -t 2.65846 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4675 -a 0 -x {9.0 10.0 2342 ------- null} h -t 2.65846 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4675 -a 0 -x {9.0 10.0 2342 ------- null} r -t 2.65851 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4661 -a 0 -x {9.0 10.0 2335 ------- null} + -t 2.65851 -s 10 -d 7 -p ack -e 40 -c 0 -i 4680 -a 0 -x {10.0 9.0 2335 ------- null} - -t 2.65851 -s 10 -d 7 -p ack -e 40 -c 0 -i 4680 -a 0 -x {10.0 9.0 2335 ------- null} h -t 2.65851 -s 10 -d 7 -p ack -e 40 -c 0 -i 4680 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.65898 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4667 -a 0 -x {9.0 10.0 2338 ------- null} - -t 2.65898 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4667 -a 0 -x {9.0 10.0 2338 ------- null} h -t 2.65898 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4667 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.65899 -s 0 -d 9 -p ack -e 40 -c 0 -i 4670 -a 0 -x {10.0 9.0 2330 ------- null} + -t 2.65899 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4681 -a 0 -x {9.0 10.0 2345 ------- null} - -t 2.65899 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4681 -a 0 -x {9.0 10.0 2345 ------- null} h -t 2.65899 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4681 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.65909 -s 0 -d 9 -p ack -e 40 -c 0 -i 4674 -a 0 -x {10.0 9.0 2332 ------- null} - -t 2.65909 -s 0 -d 9 -p ack -e 40 -c 0 -i 4674 -a 0 -x {10.0 9.0 2332 ------- null} h -t 2.65909 -s 0 -d 9 -p ack -e 40 -c 0 -i 4674 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.65946 -s 10 -d 7 -p ack -e 40 -c 0 -i 4678 -a 0 -x {10.0 9.0 2334 ------- null} + -t 2.65946 -s 7 -d 0 -p ack -e 40 -c 0 -i 4678 -a 0 -x {10.0 9.0 2334 ------- null} h -t 2.65946 -s 7 -d 8 -p ack -e 40 -c 0 -i 4678 -a 0 -x {10.0 9.0 2334 ------- null} r -t 2.6596 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4663 -a 0 -x {9.0 10.0 2336 ------- null} + -t 2.6596 -s 10 -d 7 -p ack -e 40 -c 0 -i 4682 -a 0 -x {10.0 9.0 2336 ------- null} - -t 2.6596 -s 10 -d 7 -p ack -e 40 -c 0 -i 4682 -a 0 -x {10.0 9.0 2336 ------- null} h -t 2.6596 -s 10 -d 7 -p ack -e 40 -c 0 -i 4682 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.65963 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4677 -a 0 -x {9.0 10.0 2343 ------- null} + -t 2.65963 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4677 -a 0 -x {9.0 10.0 2343 ------- null} h -t 2.65963 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4677 -a 0 -x {9.0 10.0 2343 ------- null} + -t 2.66006 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4669 -a 0 -x {9.0 10.0 2339 ------- null} - -t 2.66006 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4669 -a 0 -x {9.0 10.0 2339 ------- null} h -t 2.66006 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4669 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.66011 -s 0 -d 9 -p ack -e 40 -c 0 -i 4672 -a 0 -x {10.0 9.0 2331 ------- null} + -t 2.66011 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4683 -a 0 -x {9.0 10.0 2346 ------- null} - -t 2.66011 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4683 -a 0 -x {9.0 10.0 2346 ------- null} h -t 2.66011 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4683 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.66029 -s 0 -d 9 -p ack -e 40 -c 0 -i 4676 -a 0 -x {10.0 9.0 2333 ------- null} - -t 2.66029 -s 0 -d 9 -p ack -e 40 -c 0 -i 4676 -a 0 -x {10.0 9.0 2333 ------- null} h -t 2.66029 -s 0 -d 9 -p ack -e 40 -c 0 -i 4676 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.66054 -s 10 -d 7 -p ack -e 40 -c 0 -i 4680 -a 0 -x {10.0 9.0 2335 ------- null} + -t 2.66054 -s 7 -d 0 -p ack -e 40 -c 0 -i 4680 -a 0 -x {10.0 9.0 2335 ------- null} h -t 2.66054 -s 7 -d 8 -p ack -e 40 -c 0 -i 4680 -a 0 -x {10.0 9.0 2335 ------- null} r -t 2.66069 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4665 -a 0 -x {9.0 10.0 2337 ------- null} + -t 2.66069 -s 10 -d 7 -p ack -e 40 -c 0 -i 4684 -a 0 -x {10.0 9.0 2337 ------- null} - -t 2.66069 -s 10 -d 7 -p ack -e 40 -c 0 -i 4684 -a 0 -x {10.0 9.0 2337 ------- null} h -t 2.66069 -s 10 -d 7 -p ack -e 40 -c 0 -i 4684 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.66075 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4679 -a 0 -x {9.0 10.0 2344 ------- null} + -t 2.66075 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4679 -a 0 -x {9.0 10.0 2344 ------- null} h -t 2.66075 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4679 -a 0 -x {9.0 10.0 2344 ------- null} r -t 2.66112 -s 0 -d 9 -p ack -e 40 -c 0 -i 4674 -a 0 -x {10.0 9.0 2332 ------- null} + -t 2.66112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4685 -a 0 -x {9.0 10.0 2347 ------- null} - -t 2.66112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4685 -a 0 -x {9.0 10.0 2347 ------- null} h -t 2.66112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4685 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.66115 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4671 -a 0 -x {9.0 10.0 2340 ------- null} - -t 2.66115 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4671 -a 0 -x {9.0 10.0 2340 ------- null} h -t 2.66115 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4671 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.66144 -s 0 -d 9 -p ack -e 40 -c 0 -i 4678 -a 0 -x {10.0 9.0 2334 ------- null} - -t 2.66144 -s 0 -d 9 -p ack -e 40 -c 0 -i 4678 -a 0 -x {10.0 9.0 2334 ------- null} h -t 2.66144 -s 0 -d 9 -p ack -e 40 -c 0 -i 4678 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.66163 -s 10 -d 7 -p ack -e 40 -c 0 -i 4682 -a 0 -x {10.0 9.0 2336 ------- null} + -t 2.66163 -s 7 -d 0 -p ack -e 40 -c 0 -i 4682 -a 0 -x {10.0 9.0 2336 ------- null} h -t 2.66163 -s 7 -d 8 -p ack -e 40 -c 0 -i 4682 -a 0 -x {10.0 9.0 2336 ------- null} r -t 2.66178 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4667 -a 0 -x {9.0 10.0 2338 ------- null} + -t 2.66178 -s 10 -d 7 -p ack -e 40 -c 0 -i 4686 -a 0 -x {10.0 9.0 2338 ------- null} - -t 2.66178 -s 10 -d 7 -p ack -e 40 -c 0 -i 4686 -a 0 -x {10.0 9.0 2338 ------- null} h -t 2.66178 -s 10 -d 7 -p ack -e 40 -c 0 -i 4686 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.66179 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4681 -a 0 -x {9.0 10.0 2345 ------- null} + -t 2.66179 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4681 -a 0 -x {9.0 10.0 2345 ------- null} h -t 2.66179 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4681 -a 0 -x {9.0 10.0 2345 ------- null} r -t 2.66232 -s 0 -d 9 -p ack -e 40 -c 0 -i 4676 -a 0 -x {10.0 9.0 2333 ------- null} + -t 2.66232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4687 -a 0 -x {9.0 10.0 2348 ------- null} - -t 2.66232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4687 -a 0 -x {9.0 10.0 2348 ------- null} h -t 2.66232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4687 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.66235 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4673 -a 0 -x {9.0 10.0 2341 ------- null} - -t 2.66235 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4673 -a 0 -x {9.0 10.0 2341 ------- null} h -t 2.66235 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4673 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.66266 -s 0 -d 9 -p ack -e 40 -c 0 -i 4680 -a 0 -x {10.0 9.0 2335 ------- null} - -t 2.66266 -s 0 -d 9 -p ack -e 40 -c 0 -i 4680 -a 0 -x {10.0 9.0 2335 ------- null} h -t 2.66266 -s 0 -d 9 -p ack -e 40 -c 0 -i 4680 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.66272 -s 10 -d 7 -p ack -e 40 -c 0 -i 4684 -a 0 -x {10.0 9.0 2337 ------- null} + -t 2.66272 -s 7 -d 0 -p ack -e 40 -c 0 -i 4684 -a 0 -x {10.0 9.0 2337 ------- null} h -t 2.66272 -s 7 -d 8 -p ack -e 40 -c 0 -i 4684 -a 0 -x {10.0 9.0 2337 ------- null} r -t 2.66286 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4669 -a 0 -x {9.0 10.0 2339 ------- null} + -t 2.66286 -s 10 -d 7 -p ack -e 40 -c 0 -i 4688 -a 0 -x {10.0 9.0 2339 ------- null} - -t 2.66286 -s 10 -d 7 -p ack -e 40 -c 0 -i 4688 -a 0 -x {10.0 9.0 2339 ------- null} h -t 2.66286 -s 10 -d 7 -p ack -e 40 -c 0 -i 4688 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.66291 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4683 -a 0 -x {9.0 10.0 2346 ------- null} + -t 2.66291 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4683 -a 0 -x {9.0 10.0 2346 ------- null} h -t 2.66291 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4683 -a 0 -x {9.0 10.0 2346 ------- null} r -t 2.66347 -s 0 -d 9 -p ack -e 40 -c 0 -i 4678 -a 0 -x {10.0 9.0 2334 ------- null} + -t 2.66347 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4689 -a 0 -x {9.0 10.0 2349 ------- null} - -t 2.66347 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4689 -a 0 -x {9.0 10.0 2349 ------- null} h -t 2.66347 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4689 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.66365 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4675 -a 0 -x {9.0 10.0 2342 ------- null} - -t 2.66365 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4675 -a 0 -x {9.0 10.0 2342 ------- null} h -t 2.66365 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4675 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.66381 -s 10 -d 7 -p ack -e 40 -c 0 -i 4686 -a 0 -x {10.0 9.0 2338 ------- null} + -t 2.66381 -s 7 -d 0 -p ack -e 40 -c 0 -i 4686 -a 0 -x {10.0 9.0 2338 ------- null} h -t 2.66381 -s 7 -d 8 -p ack -e 40 -c 0 -i 4686 -a 0 -x {10.0 9.0 2338 ------- null} r -t 2.66392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4685 -a 0 -x {9.0 10.0 2347 ------- null} + -t 2.66392 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4685 -a 0 -x {9.0 10.0 2347 ------- null} h -t 2.66392 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4685 -a 0 -x {9.0 10.0 2347 ------- null} + -t 2.66395 -s 0 -d 9 -p ack -e 40 -c 0 -i 4682 -a 0 -x {10.0 9.0 2336 ------- null} - -t 2.66395 -s 0 -d 9 -p ack -e 40 -c 0 -i 4682 -a 0 -x {10.0 9.0 2336 ------- null} h -t 2.66395 -s 0 -d 9 -p ack -e 40 -c 0 -i 4682 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.66395 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4671 -a 0 -x {9.0 10.0 2340 ------- null} + -t 2.66395 -s 10 -d 7 -p ack -e 40 -c 0 -i 4690 -a 0 -x {10.0 9.0 2340 ------- null} - -t 2.66395 -s 10 -d 7 -p ack -e 40 -c 0 -i 4690 -a 0 -x {10.0 9.0 2340 ------- null} h -t 2.66395 -s 10 -d 7 -p ack -e 40 -c 0 -i 4690 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.66469 -s 0 -d 9 -p ack -e 40 -c 0 -i 4680 -a 0 -x {10.0 9.0 2335 ------- null} + -t 2.66469 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4691 -a 0 -x {9.0 10.0 2350 ------- null} - -t 2.66469 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4691 -a 0 -x {9.0 10.0 2350 ------- null} h -t 2.66469 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4691 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.66483 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4677 -a 0 -x {9.0 10.0 2343 ------- null} - -t 2.66483 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4677 -a 0 -x {9.0 10.0 2343 ------- null} h -t 2.66483 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4677 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.6649 -s 0 -d 9 -p ack -e 40 -c 0 -i 4684 -a 0 -x {10.0 9.0 2337 ------- null} - -t 2.6649 -s 0 -d 9 -p ack -e 40 -c 0 -i 4684 -a 0 -x {10.0 9.0 2337 ------- null} h -t 2.6649 -s 0 -d 9 -p ack -e 40 -c 0 -i 4684 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.6649 -s 10 -d 7 -p ack -e 40 -c 0 -i 4688 -a 0 -x {10.0 9.0 2339 ------- null} + -t 2.6649 -s 7 -d 0 -p ack -e 40 -c 0 -i 4688 -a 0 -x {10.0 9.0 2339 ------- null} h -t 2.6649 -s 7 -d 8 -p ack -e 40 -c 0 -i 4688 -a 0 -x {10.0 9.0 2339 ------- null} r -t 2.66512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4687 -a 0 -x {9.0 10.0 2348 ------- null} + -t 2.66512 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4687 -a 0 -x {9.0 10.0 2348 ------- null} h -t 2.66512 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4687 -a 0 -x {9.0 10.0 2348 ------- null} r -t 2.66515 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4673 -a 0 -x {9.0 10.0 2341 ------- null} + -t 2.66515 -s 10 -d 7 -p ack -e 40 -c 0 -i 4692 -a 0 -x {10.0 9.0 2341 ------- null} - -t 2.66515 -s 10 -d 7 -p ack -e 40 -c 0 -i 4692 -a 0 -x {10.0 9.0 2341 ------- null} h -t 2.66515 -s 10 -d 7 -p ack -e 40 -c 0 -i 4692 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.66592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4679 -a 0 -x {9.0 10.0 2344 ------- null} - -t 2.66592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4679 -a 0 -x {9.0 10.0 2344 ------- null} h -t 2.66592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4679 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.66598 -s 0 -d 9 -p ack -e 40 -c 0 -i 4682 -a 0 -x {10.0 9.0 2336 ------- null} + -t 2.66598 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4693 -a 0 -x {9.0 10.0 2351 ------- null} - -t 2.66598 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4693 -a 0 -x {9.0 10.0 2351 ------- null} h -t 2.66598 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4693 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.66598 -s 10 -d 7 -p ack -e 40 -c 0 -i 4690 -a 0 -x {10.0 9.0 2340 ------- null} + -t 2.66598 -s 7 -d 0 -p ack -e 40 -c 0 -i 4690 -a 0 -x {10.0 9.0 2340 ------- null} h -t 2.66598 -s 7 -d 8 -p ack -e 40 -c 0 -i 4690 -a 0 -x {10.0 9.0 2340 ------- null} + -t 2.66603 -s 0 -d 9 -p ack -e 40 -c 0 -i 4686 -a 0 -x {10.0 9.0 2338 ------- null} - -t 2.66603 -s 0 -d 9 -p ack -e 40 -c 0 -i 4686 -a 0 -x {10.0 9.0 2338 ------- null} h -t 2.66603 -s 0 -d 9 -p ack -e 40 -c 0 -i 4686 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.66627 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4689 -a 0 -x {9.0 10.0 2349 ------- null} + -t 2.66627 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4689 -a 0 -x {9.0 10.0 2349 ------- null} h -t 2.66627 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4689 -a 0 -x {9.0 10.0 2349 ------- null} r -t 2.66645 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4675 -a 0 -x {9.0 10.0 2342 ------- null} + -t 2.66645 -s 10 -d 7 -p ack -e 40 -c 0 -i 4694 -a 0 -x {10.0 9.0 2342 ------- null} - -t 2.66645 -s 10 -d 7 -p ack -e 40 -c 0 -i 4694 -a 0 -x {10.0 9.0 2342 ------- null} h -t 2.66645 -s 10 -d 7 -p ack -e 40 -c 0 -i 4694 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.66693 -s 0 -d 9 -p ack -e 40 -c 0 -i 4684 -a 0 -x {10.0 9.0 2337 ------- null} + -t 2.66693 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4695 -a 0 -x {9.0 10.0 2352 ------- null} - -t 2.66693 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4695 -a 0 -x {9.0 10.0 2352 ------- null} h -t 2.66693 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4695 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.66701 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4681 -a 0 -x {9.0 10.0 2345 ------- null} - -t 2.66701 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4681 -a 0 -x {9.0 10.0 2345 ------- null} h -t 2.66701 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4681 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.66709 -s 0 -d 9 -p ack -e 40 -c 0 -i 4688 -a 0 -x {10.0 9.0 2339 ------- null} - -t 2.66709 -s 0 -d 9 -p ack -e 40 -c 0 -i 4688 -a 0 -x {10.0 9.0 2339 ------- null} h -t 2.66709 -s 0 -d 9 -p ack -e 40 -c 0 -i 4688 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.66718 -s 10 -d 7 -p ack -e 40 -c 0 -i 4692 -a 0 -x {10.0 9.0 2341 ------- null} + -t 2.66718 -s 7 -d 0 -p ack -e 40 -c 0 -i 4692 -a 0 -x {10.0 9.0 2341 ------- null} h -t 2.66718 -s 7 -d 8 -p ack -e 40 -c 0 -i 4692 -a 0 -x {10.0 9.0 2341 ------- null} r -t 2.66749 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4691 -a 0 -x {9.0 10.0 2350 ------- null} + -t 2.66749 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4691 -a 0 -x {9.0 10.0 2350 ------- null} h -t 2.66749 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4691 -a 0 -x {9.0 10.0 2350 ------- null} r -t 2.66763 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4677 -a 0 -x {9.0 10.0 2343 ------- null} + -t 2.66763 -s 10 -d 7 -p ack -e 40 -c 0 -i 4696 -a 0 -x {10.0 9.0 2343 ------- null} - -t 2.66763 -s 10 -d 7 -p ack -e 40 -c 0 -i 4696 -a 0 -x {10.0 9.0 2343 ------- null} h -t 2.66763 -s 10 -d 7 -p ack -e 40 -c 0 -i 4696 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.66806 -s 0 -d 9 -p ack -e 40 -c 0 -i 4686 -a 0 -x {10.0 9.0 2338 ------- null} + -t 2.66806 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4697 -a 0 -x {9.0 10.0 2353 ------- null} - -t 2.66806 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4697 -a 0 -x {9.0 10.0 2353 ------- null} h -t 2.66806 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4697 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.6681 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4683 -a 0 -x {9.0 10.0 2346 ------- null} - -t 2.6681 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4683 -a 0 -x {9.0 10.0 2346 ------- null} h -t 2.6681 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4683 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.66834 -s 0 -d 9 -p ack -e 40 -c 0 -i 4690 -a 0 -x {10.0 9.0 2340 ------- null} - -t 2.66834 -s 0 -d 9 -p ack -e 40 -c 0 -i 4690 -a 0 -x {10.0 9.0 2340 ------- null} h -t 2.66834 -s 0 -d 9 -p ack -e 40 -c 0 -i 4690 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.66848 -s 10 -d 7 -p ack -e 40 -c 0 -i 4694 -a 0 -x {10.0 9.0 2342 ------- null} + -t 2.66848 -s 7 -d 0 -p ack -e 40 -c 0 -i 4694 -a 0 -x {10.0 9.0 2342 ------- null} h -t 2.66848 -s 7 -d 8 -p ack -e 40 -c 0 -i 4694 -a 0 -x {10.0 9.0 2342 ------- null} r -t 2.66872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4679 -a 0 -x {9.0 10.0 2344 ------- null} + -t 2.66872 -s 10 -d 7 -p ack -e 40 -c 0 -i 4698 -a 0 -x {10.0 9.0 2344 ------- null} - -t 2.66872 -s 10 -d 7 -p ack -e 40 -c 0 -i 4698 -a 0 -x {10.0 9.0 2344 ------- null} h -t 2.66872 -s 10 -d 7 -p ack -e 40 -c 0 -i 4698 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.66878 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4693 -a 0 -x {9.0 10.0 2351 ------- null} + -t 2.66878 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4693 -a 0 -x {9.0 10.0 2351 ------- null} h -t 2.66878 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4693 -a 0 -x {9.0 10.0 2351 ------- null} r -t 2.66912 -s 0 -d 9 -p ack -e 40 -c 0 -i 4688 -a 0 -x {10.0 9.0 2339 ------- null} + -t 2.66912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4699 -a 0 -x {9.0 10.0 2354 ------- null} - -t 2.66912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4699 -a 0 -x {9.0 10.0 2354 ------- null} h -t 2.66912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4699 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.66918 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4685 -a 0 -x {9.0 10.0 2347 ------- null} - -t 2.66918 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4685 -a 0 -x {9.0 10.0 2347 ------- null} h -t 2.66918 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4685 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.66925 -s 0 -d 9 -p ack -e 40 -c 0 -i 4692 -a 0 -x {10.0 9.0 2341 ------- null} - -t 2.66925 -s 0 -d 9 -p ack -e 40 -c 0 -i 4692 -a 0 -x {10.0 9.0 2341 ------- null} h -t 2.66925 -s 0 -d 9 -p ack -e 40 -c 0 -i 4692 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.66966 -s 10 -d 7 -p ack -e 40 -c 0 -i 4696 -a 0 -x {10.0 9.0 2343 ------- null} + -t 2.66966 -s 7 -d 0 -p ack -e 40 -c 0 -i 4696 -a 0 -x {10.0 9.0 2343 ------- null} h -t 2.66966 -s 7 -d 8 -p ack -e 40 -c 0 -i 4696 -a 0 -x {10.0 9.0 2343 ------- null} r -t 2.66973 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4695 -a 0 -x {9.0 10.0 2352 ------- null} + -t 2.66973 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4695 -a 0 -x {9.0 10.0 2352 ------- null} h -t 2.66973 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4695 -a 0 -x {9.0 10.0 2352 ------- null} r -t 2.66981 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4681 -a 0 -x {9.0 10.0 2345 ------- null} + -t 2.66981 -s 10 -d 7 -p ack -e 40 -c 0 -i 4700 -a 0 -x {10.0 9.0 2345 ------- null} - -t 2.66981 -s 10 -d 7 -p ack -e 40 -c 0 -i 4700 -a 0 -x {10.0 9.0 2345 ------- null} h -t 2.66981 -s 10 -d 7 -p ack -e 40 -c 0 -i 4700 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.67027 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4687 -a 0 -x {9.0 10.0 2348 ------- null} - -t 2.67027 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4687 -a 0 -x {9.0 10.0 2348 ------- null} h -t 2.67027 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4687 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.67037 -s 0 -d 9 -p ack -e 40 -c 0 -i 4690 -a 0 -x {10.0 9.0 2340 ------- null} + -t 2.67037 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4701 -a 0 -x {9.0 10.0 2355 ------- null} - -t 2.67037 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4701 -a 0 -x {9.0 10.0 2355 ------- null} h -t 2.67037 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4701 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.67054 -s 0 -d 9 -p ack -e 40 -c 0 -i 4694 -a 0 -x {10.0 9.0 2342 ------- null} - -t 2.67054 -s 0 -d 9 -p ack -e 40 -c 0 -i 4694 -a 0 -x {10.0 9.0 2342 ------- null} h -t 2.67054 -s 0 -d 9 -p ack -e 40 -c 0 -i 4694 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.67075 -s 10 -d 7 -p ack -e 40 -c 0 -i 4698 -a 0 -x {10.0 9.0 2344 ------- null} + -t 2.67075 -s 7 -d 0 -p ack -e 40 -c 0 -i 4698 -a 0 -x {10.0 9.0 2344 ------- null} h -t 2.67075 -s 7 -d 8 -p ack -e 40 -c 0 -i 4698 -a 0 -x {10.0 9.0 2344 ------- null} r -t 2.67086 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4697 -a 0 -x {9.0 10.0 2353 ------- null} + -t 2.67086 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4697 -a 0 -x {9.0 10.0 2353 ------- null} h -t 2.67086 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4697 -a 0 -x {9.0 10.0 2353 ------- null} r -t 2.6709 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4683 -a 0 -x {9.0 10.0 2346 ------- null} + -t 2.6709 -s 10 -d 7 -p ack -e 40 -c 0 -i 4702 -a 0 -x {10.0 9.0 2346 ------- null} - -t 2.6709 -s 10 -d 7 -p ack -e 40 -c 0 -i 4702 -a 0 -x {10.0 9.0 2346 ------- null} h -t 2.6709 -s 10 -d 7 -p ack -e 40 -c 0 -i 4702 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.67128 -s 0 -d 9 -p ack -e 40 -c 0 -i 4692 -a 0 -x {10.0 9.0 2341 ------- null} + -t 2.67128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4703 -a 0 -x {9.0 10.0 2356 ------- null} - -t 2.67128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4703 -a 0 -x {9.0 10.0 2356 ------- null} h -t 2.67128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4703 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.67147 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4689 -a 0 -x {9.0 10.0 2349 ------- null} - -t 2.67147 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4689 -a 0 -x {9.0 10.0 2349 ------- null} h -t 2.67147 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4689 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.67158 -s 0 -d 9 -p ack -e 40 -c 0 -i 4696 -a 0 -x {10.0 9.0 2343 ------- null} - -t 2.67158 -s 0 -d 9 -p ack -e 40 -c 0 -i 4696 -a 0 -x {10.0 9.0 2343 ------- null} h -t 2.67158 -s 0 -d 9 -p ack -e 40 -c 0 -i 4696 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.67184 -s 10 -d 7 -p ack -e 40 -c 0 -i 4700 -a 0 -x {10.0 9.0 2345 ------- null} + -t 2.67184 -s 7 -d 0 -p ack -e 40 -c 0 -i 4700 -a 0 -x {10.0 9.0 2345 ------- null} h -t 2.67184 -s 7 -d 8 -p ack -e 40 -c 0 -i 4700 -a 0 -x {10.0 9.0 2345 ------- null} r -t 2.67192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4699 -a 0 -x {9.0 10.0 2354 ------- null} + -t 2.67192 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4699 -a 0 -x {9.0 10.0 2354 ------- null} h -t 2.67192 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4699 -a 0 -x {9.0 10.0 2354 ------- null} r -t 2.67198 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4685 -a 0 -x {9.0 10.0 2347 ------- null} + -t 2.67198 -s 10 -d 7 -p ack -e 40 -c 0 -i 4704 -a 0 -x {10.0 9.0 2347 ------- null} - -t 2.67198 -s 10 -d 7 -p ack -e 40 -c 0 -i 4704 -a 0 -x {10.0 9.0 2347 ------- null} h -t 2.67198 -s 10 -d 7 -p ack -e 40 -c 0 -i 4704 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.67256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4691 -a 0 -x {9.0 10.0 2350 ------- null} - -t 2.67256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4691 -a 0 -x {9.0 10.0 2350 ------- null} h -t 2.67256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4691 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.67258 -s 0 -d 9 -p ack -e 40 -c 0 -i 4694 -a 0 -x {10.0 9.0 2342 ------- null} + -t 2.67258 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4705 -a 0 -x {9.0 10.0 2357 ------- null} - -t 2.67258 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4705 -a 0 -x {9.0 10.0 2357 ------- null} h -t 2.67258 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4705 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.67282 -s 0 -d 9 -p ack -e 40 -c 0 -i 4698 -a 0 -x {10.0 9.0 2344 ------- null} - -t 2.67282 -s 0 -d 9 -p ack -e 40 -c 0 -i 4698 -a 0 -x {10.0 9.0 2344 ------- null} h -t 2.67282 -s 0 -d 9 -p ack -e 40 -c 0 -i 4698 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.67293 -s 10 -d 7 -p ack -e 40 -c 0 -i 4702 -a 0 -x {10.0 9.0 2346 ------- null} + -t 2.67293 -s 7 -d 0 -p ack -e 40 -c 0 -i 4702 -a 0 -x {10.0 9.0 2346 ------- null} h -t 2.67293 -s 7 -d 8 -p ack -e 40 -c 0 -i 4702 -a 0 -x {10.0 9.0 2346 ------- null} r -t 2.67307 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4687 -a 0 -x {9.0 10.0 2348 ------- null} + -t 2.67307 -s 10 -d 7 -p ack -e 40 -c 0 -i 4706 -a 0 -x {10.0 9.0 2348 ------- null} - -t 2.67307 -s 10 -d 7 -p ack -e 40 -c 0 -i 4706 -a 0 -x {10.0 9.0 2348 ------- null} h -t 2.67307 -s 10 -d 7 -p ack -e 40 -c 0 -i 4706 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.67317 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4701 -a 0 -x {9.0 10.0 2355 ------- null} + -t 2.67317 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4701 -a 0 -x {9.0 10.0 2355 ------- null} h -t 2.67317 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4701 -a 0 -x {9.0 10.0 2355 ------- null} r -t 2.67362 -s 0 -d 9 -p ack -e 40 -c 0 -i 4696 -a 0 -x {10.0 9.0 2343 ------- null} + -t 2.67362 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4707 -a 0 -x {9.0 10.0 2358 ------- null} - -t 2.67362 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4707 -a 0 -x {9.0 10.0 2358 ------- null} h -t 2.67362 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4707 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.67365 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4693 -a 0 -x {9.0 10.0 2351 ------- null} - -t 2.67365 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4693 -a 0 -x {9.0 10.0 2351 ------- null} h -t 2.67365 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4693 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.67374 -s 0 -d 9 -p ack -e 40 -c 0 -i 4700 -a 0 -x {10.0 9.0 2345 ------- null} - -t 2.67374 -s 0 -d 9 -p ack -e 40 -c 0 -i 4700 -a 0 -x {10.0 9.0 2345 ------- null} h -t 2.67374 -s 0 -d 9 -p ack -e 40 -c 0 -i 4700 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.67402 -s 10 -d 7 -p ack -e 40 -c 0 -i 4704 -a 0 -x {10.0 9.0 2347 ------- null} + -t 2.67402 -s 7 -d 0 -p ack -e 40 -c 0 -i 4704 -a 0 -x {10.0 9.0 2347 ------- null} h -t 2.67402 -s 7 -d 8 -p ack -e 40 -c 0 -i 4704 -a 0 -x {10.0 9.0 2347 ------- null} r -t 2.67408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4703 -a 0 -x {9.0 10.0 2356 ------- null} + -t 2.67408 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4703 -a 0 -x {9.0 10.0 2356 ------- null} h -t 2.67408 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4703 -a 0 -x {9.0 10.0 2356 ------- null} r -t 2.67427 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4689 -a 0 -x {9.0 10.0 2349 ------- null} + -t 2.67427 -s 10 -d 7 -p ack -e 40 -c 0 -i 4708 -a 0 -x {10.0 9.0 2349 ------- null} - -t 2.67427 -s 10 -d 7 -p ack -e 40 -c 0 -i 4708 -a 0 -x {10.0 9.0 2349 ------- null} h -t 2.67427 -s 10 -d 7 -p ack -e 40 -c 0 -i 4708 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.67474 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4695 -a 0 -x {9.0 10.0 2352 ------- null} - -t 2.67474 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4695 -a 0 -x {9.0 10.0 2352 ------- null} h -t 2.67474 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4695 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.67485 -s 0 -d 9 -p ack -e 40 -c 0 -i 4698 -a 0 -x {10.0 9.0 2344 ------- null} + -t 2.67485 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4709 -a 0 -x {9.0 10.0 2359 ------- null} - -t 2.67485 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4709 -a 0 -x {9.0 10.0 2359 ------- null} h -t 2.67485 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4709 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.67493 -s 0 -d 9 -p ack -e 40 -c 0 -i 4702 -a 0 -x {10.0 9.0 2346 ------- null} - -t 2.67493 -s 0 -d 9 -p ack -e 40 -c 0 -i 4702 -a 0 -x {10.0 9.0 2346 ------- null} h -t 2.67493 -s 0 -d 9 -p ack -e 40 -c 0 -i 4702 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.6751 -s 10 -d 7 -p ack -e 40 -c 0 -i 4706 -a 0 -x {10.0 9.0 2348 ------- null} + -t 2.6751 -s 7 -d 0 -p ack -e 40 -c 0 -i 4706 -a 0 -x {10.0 9.0 2348 ------- null} h -t 2.6751 -s 7 -d 8 -p ack -e 40 -c 0 -i 4706 -a 0 -x {10.0 9.0 2348 ------- null} r -t 2.67536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4691 -a 0 -x {9.0 10.0 2350 ------- null} + -t 2.67536 -s 10 -d 7 -p ack -e 40 -c 0 -i 4710 -a 0 -x {10.0 9.0 2350 ------- null} - -t 2.67536 -s 10 -d 7 -p ack -e 40 -c 0 -i 4710 -a 0 -x {10.0 9.0 2350 ------- null} h -t 2.67536 -s 10 -d 7 -p ack -e 40 -c 0 -i 4710 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.67538 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4705 -a 0 -x {9.0 10.0 2357 ------- null} + -t 2.67538 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4705 -a 0 -x {9.0 10.0 2357 ------- null} h -t 2.67538 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4705 -a 0 -x {9.0 10.0 2357 ------- null} r -t 2.67578 -s 0 -d 9 -p ack -e 40 -c 0 -i 4700 -a 0 -x {10.0 9.0 2345 ------- null} + -t 2.67578 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4711 -a 0 -x {9.0 10.0 2360 ------- null} - -t 2.67578 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4711 -a 0 -x {9.0 10.0 2360 ------- null} h -t 2.67578 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4711 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.67582 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4697 -a 0 -x {9.0 10.0 2353 ------- null} - -t 2.67582 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4697 -a 0 -x {9.0 10.0 2353 ------- null} h -t 2.67582 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4697 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.67605 -s 0 -d 9 -p ack -e 40 -c 0 -i 4704 -a 0 -x {10.0 9.0 2347 ------- null} - -t 2.67605 -s 0 -d 9 -p ack -e 40 -c 0 -i 4704 -a 0 -x {10.0 9.0 2347 ------- null} h -t 2.67605 -s 0 -d 9 -p ack -e 40 -c 0 -i 4704 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.6763 -s 10 -d 7 -p ack -e 40 -c 0 -i 4708 -a 0 -x {10.0 9.0 2349 ------- null} + -t 2.6763 -s 7 -d 0 -p ack -e 40 -c 0 -i 4708 -a 0 -x {10.0 9.0 2349 ------- null} h -t 2.6763 -s 7 -d 8 -p ack -e 40 -c 0 -i 4708 -a 0 -x {10.0 9.0 2349 ------- null} r -t 2.67642 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4707 -a 0 -x {9.0 10.0 2358 ------- null} + -t 2.67642 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4707 -a 0 -x {9.0 10.0 2358 ------- null} h -t 2.67642 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4707 -a 0 -x {9.0 10.0 2358 ------- null} r -t 2.67645 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4693 -a 0 -x {9.0 10.0 2351 ------- null} + -t 2.67645 -s 10 -d 7 -p ack -e 40 -c 0 -i 4712 -a 0 -x {10.0 9.0 2351 ------- null} - -t 2.67645 -s 10 -d 7 -p ack -e 40 -c 0 -i 4712 -a 0 -x {10.0 9.0 2351 ------- null} h -t 2.67645 -s 10 -d 7 -p ack -e 40 -c 0 -i 4712 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.67691 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4699 -a 0 -x {9.0 10.0 2354 ------- null} - -t 2.67691 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4699 -a 0 -x {9.0 10.0 2354 ------- null} h -t 2.67691 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4699 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.67696 -s 0 -d 9 -p ack -e 40 -c 0 -i 4702 -a 0 -x {10.0 9.0 2346 ------- null} + -t 2.67696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4713 -a 0 -x {9.0 10.0 2361 ------- null} - -t 2.67696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4713 -a 0 -x {9.0 10.0 2361 ------- null} h -t 2.67696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4713 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.67718 -s 0 -d 9 -p ack -e 40 -c 0 -i 4706 -a 0 -x {10.0 9.0 2348 ------- null} - -t 2.67718 -s 0 -d 9 -p ack -e 40 -c 0 -i 4706 -a 0 -x {10.0 9.0 2348 ------- null} h -t 2.67718 -s 0 -d 9 -p ack -e 40 -c 0 -i 4706 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.67739 -s 10 -d 7 -p ack -e 40 -c 0 -i 4710 -a 0 -x {10.0 9.0 2350 ------- null} + -t 2.67739 -s 7 -d 0 -p ack -e 40 -c 0 -i 4710 -a 0 -x {10.0 9.0 2350 ------- null} h -t 2.67739 -s 7 -d 8 -p ack -e 40 -c 0 -i 4710 -a 0 -x {10.0 9.0 2350 ------- null} r -t 2.67754 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4695 -a 0 -x {9.0 10.0 2352 ------- null} + -t 2.67754 -s 10 -d 7 -p ack -e 40 -c 0 -i 4714 -a 0 -x {10.0 9.0 2352 ------- null} - -t 2.67754 -s 10 -d 7 -p ack -e 40 -c 0 -i 4714 -a 0 -x {10.0 9.0 2352 ------- null} h -t 2.67754 -s 10 -d 7 -p ack -e 40 -c 0 -i 4714 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.67765 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4709 -a 0 -x {9.0 10.0 2359 ------- null} + -t 2.67765 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4709 -a 0 -x {9.0 10.0 2359 ------- null} h -t 2.67765 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4709 -a 0 -x {9.0 10.0 2359 ------- null} r -t 2.67808 -s 0 -d 9 -p ack -e 40 -c 0 -i 4704 -a 0 -x {10.0 9.0 2347 ------- null} + -t 2.67808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4715 -a 0 -x {9.0 10.0 2362 ------- null} - -t 2.67808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4715 -a 0 -x {9.0 10.0 2362 ------- null} h -t 2.67808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4715 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.67826 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4701 -a 0 -x {9.0 10.0 2355 ------- null} - -t 2.67826 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4701 -a 0 -x {9.0 10.0 2355 ------- null} h -t 2.67826 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4701 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.67837 -s 0 -d 9 -p ack -e 40 -c 0 -i 4708 -a 0 -x {10.0 9.0 2349 ------- null} - -t 2.67837 -s 0 -d 9 -p ack -e 40 -c 0 -i 4708 -a 0 -x {10.0 9.0 2349 ------- null} h -t 2.67837 -s 0 -d 9 -p ack -e 40 -c 0 -i 4708 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.67848 -s 10 -d 7 -p ack -e 40 -c 0 -i 4712 -a 0 -x {10.0 9.0 2351 ------- null} + -t 2.67848 -s 7 -d 0 -p ack -e 40 -c 0 -i 4712 -a 0 -x {10.0 9.0 2351 ------- null} h -t 2.67848 -s 7 -d 8 -p ack -e 40 -c 0 -i 4712 -a 0 -x {10.0 9.0 2351 ------- null} r -t 2.67858 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4711 -a 0 -x {9.0 10.0 2360 ------- null} + -t 2.67858 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4711 -a 0 -x {9.0 10.0 2360 ------- null} h -t 2.67858 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4711 -a 0 -x {9.0 10.0 2360 ------- null} r -t 2.67862 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4697 -a 0 -x {9.0 10.0 2353 ------- null} + -t 2.67862 -s 10 -d 7 -p ack -e 40 -c 0 -i 4716 -a 0 -x {10.0 9.0 2353 ------- null} - -t 2.67862 -s 10 -d 7 -p ack -e 40 -c 0 -i 4716 -a 0 -x {10.0 9.0 2353 ------- null} h -t 2.67862 -s 10 -d 7 -p ack -e 40 -c 0 -i 4716 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.67922 -s 0 -d 9 -p ack -e 40 -c 0 -i 4706 -a 0 -x {10.0 9.0 2348 ------- null} + -t 2.67922 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4717 -a 0 -x {9.0 10.0 2363 ------- null} - -t 2.67922 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4717 -a 0 -x {9.0 10.0 2363 ------- null} h -t 2.67922 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4717 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.67934 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4703 -a 0 -x {9.0 10.0 2356 ------- null} - -t 2.67934 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4703 -a 0 -x {9.0 10.0 2356 ------- null} h -t 2.67934 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4703 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.67954 -s 0 -d 9 -p ack -e 40 -c 0 -i 4710 -a 0 -x {10.0 9.0 2350 ------- null} - -t 2.67954 -s 0 -d 9 -p ack -e 40 -c 0 -i 4710 -a 0 -x {10.0 9.0 2350 ------- null} h -t 2.67954 -s 0 -d 9 -p ack -e 40 -c 0 -i 4710 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.67957 -s 10 -d 7 -p ack -e 40 -c 0 -i 4714 -a 0 -x {10.0 9.0 2352 ------- null} + -t 2.67957 -s 7 -d 0 -p ack -e 40 -c 0 -i 4714 -a 0 -x {10.0 9.0 2352 ------- null} h -t 2.67957 -s 7 -d 8 -p ack -e 40 -c 0 -i 4714 -a 0 -x {10.0 9.0 2352 ------- null} r -t 2.67971 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4699 -a 0 -x {9.0 10.0 2354 ------- null} + -t 2.67971 -s 10 -d 7 -p ack -e 40 -c 0 -i 4718 -a 0 -x {10.0 9.0 2354 ------- null} - -t 2.67971 -s 10 -d 7 -p ack -e 40 -c 0 -i 4718 -a 0 -x {10.0 9.0 2354 ------- null} h -t 2.67971 -s 10 -d 7 -p ack -e 40 -c 0 -i 4718 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.67976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4713 -a 0 -x {9.0 10.0 2361 ------- null} + -t 2.67976 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4713 -a 0 -x {9.0 10.0 2361 ------- null} h -t 2.67976 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4713 -a 0 -x {9.0 10.0 2361 ------- null} r -t 2.6804 -s 0 -d 9 -p ack -e 40 -c 0 -i 4708 -a 0 -x {10.0 9.0 2349 ------- null} + -t 2.6804 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4719 -a 0 -x {9.0 10.0 2364 ------- null} - -t 2.6804 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4719 -a 0 -x {9.0 10.0 2364 ------- null} h -t 2.6804 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4719 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.68043 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4705 -a 0 -x {9.0 10.0 2357 ------- null} - -t 2.68043 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4705 -a 0 -x {9.0 10.0 2357 ------- null} h -t 2.68043 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4705 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.68064 -s 0 -d 9 -p ack -e 40 -c 0 -i 4712 -a 0 -x {10.0 9.0 2351 ------- null} - -t 2.68064 -s 0 -d 9 -p ack -e 40 -c 0 -i 4712 -a 0 -x {10.0 9.0 2351 ------- null} h -t 2.68064 -s 0 -d 9 -p ack -e 40 -c 0 -i 4712 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.68066 -s 10 -d 7 -p ack -e 40 -c 0 -i 4716 -a 0 -x {10.0 9.0 2353 ------- null} + -t 2.68066 -s 7 -d 0 -p ack -e 40 -c 0 -i 4716 -a 0 -x {10.0 9.0 2353 ------- null} h -t 2.68066 -s 7 -d 8 -p ack -e 40 -c 0 -i 4716 -a 0 -x {10.0 9.0 2353 ------- null} r -t 2.68088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4715 -a 0 -x {9.0 10.0 2362 ------- null} + -t 2.68088 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4715 -a 0 -x {9.0 10.0 2362 ------- null} h -t 2.68088 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4715 -a 0 -x {9.0 10.0 2362 ------- null} r -t 2.68106 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4701 -a 0 -x {9.0 10.0 2355 ------- null} + -t 2.68106 -s 10 -d 7 -p ack -e 40 -c 0 -i 4720 -a 0 -x {10.0 9.0 2355 ------- null} - -t 2.68106 -s 10 -d 7 -p ack -e 40 -c 0 -i 4720 -a 0 -x {10.0 9.0 2355 ------- null} h -t 2.68106 -s 10 -d 7 -p ack -e 40 -c 0 -i 4720 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.68152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4707 -a 0 -x {9.0 10.0 2358 ------- null} - -t 2.68152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4707 -a 0 -x {9.0 10.0 2358 ------- null} h -t 2.68152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4707 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.68157 -s 0 -d 9 -p ack -e 40 -c 0 -i 4710 -a 0 -x {10.0 9.0 2350 ------- null} + -t 2.68157 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4721 -a 0 -x {9.0 10.0 2365 ------- null} - -t 2.68157 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4721 -a 0 -x {9.0 10.0 2365 ------- null} h -t 2.68157 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4721 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.68174 -s 10 -d 7 -p ack -e 40 -c 0 -i 4718 -a 0 -x {10.0 9.0 2354 ------- null} + -t 2.68174 -s 7 -d 0 -p ack -e 40 -c 0 -i 4718 -a 0 -x {10.0 9.0 2354 ------- null} h -t 2.68174 -s 7 -d 8 -p ack -e 40 -c 0 -i 4718 -a 0 -x {10.0 9.0 2354 ------- null} + -t 2.68179 -s 0 -d 9 -p ack -e 40 -c 0 -i 4714 -a 0 -x {10.0 9.0 2352 ------- null} - -t 2.68179 -s 0 -d 9 -p ack -e 40 -c 0 -i 4714 -a 0 -x {10.0 9.0 2352 ------- null} h -t 2.68179 -s 0 -d 9 -p ack -e 40 -c 0 -i 4714 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.68202 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4717 -a 0 -x {9.0 10.0 2363 ------- null} + -t 2.68202 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4717 -a 0 -x {9.0 10.0 2363 ------- null} h -t 2.68202 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4717 -a 0 -x {9.0 10.0 2363 ------- null} r -t 2.68214 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4703 -a 0 -x {9.0 10.0 2356 ------- null} + -t 2.68214 -s 10 -d 7 -p ack -e 40 -c 0 -i 4722 -a 0 -x {10.0 9.0 2356 ------- null} - -t 2.68214 -s 10 -d 7 -p ack -e 40 -c 0 -i 4722 -a 0 -x {10.0 9.0 2356 ------- null} h -t 2.68214 -s 10 -d 7 -p ack -e 40 -c 0 -i 4722 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.68267 -s 0 -d 9 -p ack -e 40 -c 0 -i 4712 -a 0 -x {10.0 9.0 2351 ------- null} + -t 2.68267 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4723 -a 0 -x {9.0 10.0 2366 ------- null} - -t 2.68267 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4723 -a 0 -x {9.0 10.0 2366 ------- null} h -t 2.68267 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4723 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.68285 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4709 -a 0 -x {9.0 10.0 2359 ------- null} - -t 2.68285 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4709 -a 0 -x {9.0 10.0 2359 ------- null} h -t 2.68285 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4709 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.68296 -s 0 -d 9 -p ack -e 40 -c 0 -i 4716 -a 0 -x {10.0 9.0 2353 ------- null} - -t 2.68296 -s 0 -d 9 -p ack -e 40 -c 0 -i 4716 -a 0 -x {10.0 9.0 2353 ------- null} h -t 2.68296 -s 0 -d 9 -p ack -e 40 -c 0 -i 4716 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.68309 -s 10 -d 7 -p ack -e 40 -c 0 -i 4720 -a 0 -x {10.0 9.0 2355 ------- null} + -t 2.68309 -s 7 -d 0 -p ack -e 40 -c 0 -i 4720 -a 0 -x {10.0 9.0 2355 ------- null} h -t 2.68309 -s 7 -d 8 -p ack -e 40 -c 0 -i 4720 -a 0 -x {10.0 9.0 2355 ------- null} r -t 2.6832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4719 -a 0 -x {9.0 10.0 2364 ------- null} + -t 2.6832 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4719 -a 0 -x {9.0 10.0 2364 ------- null} h -t 2.6832 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4719 -a 0 -x {9.0 10.0 2364 ------- null} r -t 2.68323 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4705 -a 0 -x {9.0 10.0 2357 ------- null} + -t 2.68323 -s 10 -d 7 -p ack -e 40 -c 0 -i 4724 -a 0 -x {10.0 9.0 2357 ------- null} - -t 2.68323 -s 10 -d 7 -p ack -e 40 -c 0 -i 4724 -a 0 -x {10.0 9.0 2357 ------- null} h -t 2.68323 -s 10 -d 7 -p ack -e 40 -c 0 -i 4724 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.68382 -s 0 -d 9 -p ack -e 40 -c 0 -i 4714 -a 0 -x {10.0 9.0 2352 ------- null} + -t 2.68382 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4725 -a 0 -x {9.0 10.0 2367 ------- null} - -t 2.68382 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4725 -a 0 -x {9.0 10.0 2367 ------- null} h -t 2.68382 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4725 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.68394 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4711 -a 0 -x {9.0 10.0 2360 ------- null} - -t 2.68394 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4711 -a 0 -x {9.0 10.0 2360 ------- null} h -t 2.68394 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4711 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.68413 -s 0 -d 9 -p ack -e 40 -c 0 -i 4718 -a 0 -x {10.0 9.0 2354 ------- null} - -t 2.68413 -s 0 -d 9 -p ack -e 40 -c 0 -i 4718 -a 0 -x {10.0 9.0 2354 ------- null} h -t 2.68413 -s 0 -d 9 -p ack -e 40 -c 0 -i 4718 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.68418 -s 10 -d 7 -p ack -e 40 -c 0 -i 4722 -a 0 -x {10.0 9.0 2356 ------- null} + -t 2.68418 -s 7 -d 0 -p ack -e 40 -c 0 -i 4722 -a 0 -x {10.0 9.0 2356 ------- null} h -t 2.68418 -s 7 -d 8 -p ack -e 40 -c 0 -i 4722 -a 0 -x {10.0 9.0 2356 ------- null} r -t 2.68432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4707 -a 0 -x {9.0 10.0 2358 ------- null} + -t 2.68432 -s 10 -d 7 -p ack -e 40 -c 0 -i 4726 -a 0 -x {10.0 9.0 2358 ------- null} - -t 2.68432 -s 10 -d 7 -p ack -e 40 -c 0 -i 4726 -a 0 -x {10.0 9.0 2358 ------- null} h -t 2.68432 -s 10 -d 7 -p ack -e 40 -c 0 -i 4726 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.68437 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4721 -a 0 -x {9.0 10.0 2365 ------- null} + -t 2.68437 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4721 -a 0 -x {9.0 10.0 2365 ------- null} h -t 2.68437 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4721 -a 0 -x {9.0 10.0 2365 ------- null} r -t 2.68499 -s 0 -d 9 -p ack -e 40 -c 0 -i 4716 -a 0 -x {10.0 9.0 2353 ------- null} + -t 2.68499 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4727 -a 0 -x {9.0 10.0 2368 ------- null} - -t 2.68499 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4727 -a 0 -x {9.0 10.0 2368 ------- null} h -t 2.68499 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4727 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.68502 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4713 -a 0 -x {9.0 10.0 2361 ------- null} - -t 2.68502 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4713 -a 0 -x {9.0 10.0 2361 ------- null} h -t 2.68502 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4713 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.6852 -s 0 -d 9 -p ack -e 40 -c 0 -i 4720 -a 0 -x {10.0 9.0 2355 ------- null} - -t 2.6852 -s 0 -d 9 -p ack -e 40 -c 0 -i 4720 -a 0 -x {10.0 9.0 2355 ------- null} h -t 2.6852 -s 0 -d 9 -p ack -e 40 -c 0 -i 4720 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.68526 -s 10 -d 7 -p ack -e 40 -c 0 -i 4724 -a 0 -x {10.0 9.0 2357 ------- null} + -t 2.68526 -s 7 -d 0 -p ack -e 40 -c 0 -i 4724 -a 0 -x {10.0 9.0 2357 ------- null} h -t 2.68526 -s 7 -d 8 -p ack -e 40 -c 0 -i 4724 -a 0 -x {10.0 9.0 2357 ------- null} r -t 2.68547 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4723 -a 0 -x {9.0 10.0 2366 ------- null} + -t 2.68547 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4723 -a 0 -x {9.0 10.0 2366 ------- null} h -t 2.68547 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4723 -a 0 -x {9.0 10.0 2366 ------- null} r -t 2.68565 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4709 -a 0 -x {9.0 10.0 2359 ------- null} + -t 2.68565 -s 10 -d 7 -p ack -e 40 -c 0 -i 4728 -a 0 -x {10.0 9.0 2359 ------- null} - -t 2.68565 -s 10 -d 7 -p ack -e 40 -c 0 -i 4728 -a 0 -x {10.0 9.0 2359 ------- null} h -t 2.68565 -s 10 -d 7 -p ack -e 40 -c 0 -i 4728 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.68611 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4715 -a 0 -x {9.0 10.0 2362 ------- null} - -t 2.68611 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4715 -a 0 -x {9.0 10.0 2362 ------- null} h -t 2.68611 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4715 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.68616 -s 0 -d 9 -p ack -e 40 -c 0 -i 4718 -a 0 -x {10.0 9.0 2354 ------- null} + -t 2.68616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4729 -a 0 -x {9.0 10.0 2369 ------- null} - -t 2.68616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4729 -a 0 -x {9.0 10.0 2369 ------- null} h -t 2.68616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4729 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.68619 -s 0 -d 9 -p ack -e 40 -c 0 -i 4722 -a 0 -x {10.0 9.0 2356 ------- null} - -t 2.68619 -s 0 -d 9 -p ack -e 40 -c 0 -i 4722 -a 0 -x {10.0 9.0 2356 ------- null} h -t 2.68619 -s 0 -d 9 -p ack -e 40 -c 0 -i 4722 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.68635 -s 10 -d 7 -p ack -e 40 -c 0 -i 4726 -a 0 -x {10.0 9.0 2358 ------- null} + -t 2.68635 -s 7 -d 0 -p ack -e 40 -c 0 -i 4726 -a 0 -x {10.0 9.0 2358 ------- null} h -t 2.68635 -s 7 -d 8 -p ack -e 40 -c 0 -i 4726 -a 0 -x {10.0 9.0 2358 ------- null} r -t 2.68662 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4725 -a 0 -x {9.0 10.0 2367 ------- null} + -t 2.68662 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4725 -a 0 -x {9.0 10.0 2367 ------- null} h -t 2.68662 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4725 -a 0 -x {9.0 10.0 2367 ------- null} r -t 2.68674 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4711 -a 0 -x {9.0 10.0 2360 ------- null} + -t 2.68674 -s 10 -d 7 -p ack -e 40 -c 0 -i 4730 -a 0 -x {10.0 9.0 2360 ------- null} - -t 2.68674 -s 10 -d 7 -p ack -e 40 -c 0 -i 4730 -a 0 -x {10.0 9.0 2360 ------- null} h -t 2.68674 -s 10 -d 7 -p ack -e 40 -c 0 -i 4730 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.6872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4717 -a 0 -x {9.0 10.0 2363 ------- null} - -t 2.6872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4717 -a 0 -x {9.0 10.0 2363 ------- null} h -t 2.6872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4717 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.68723 -s 0 -d 9 -p ack -e 40 -c 0 -i 4720 -a 0 -x {10.0 9.0 2355 ------- null} + -t 2.68723 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4731 -a 0 -x {9.0 10.0 2370 ------- null} - -t 2.68723 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4731 -a 0 -x {9.0 10.0 2370 ------- null} h -t 2.68723 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4731 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.68744 -s 0 -d 9 -p ack -e 40 -c 0 -i 4724 -a 0 -x {10.0 9.0 2357 ------- null} - -t 2.68744 -s 0 -d 9 -p ack -e 40 -c 0 -i 4724 -a 0 -x {10.0 9.0 2357 ------- null} h -t 2.68744 -s 0 -d 9 -p ack -e 40 -c 0 -i 4724 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.68768 -s 10 -d 7 -p ack -e 40 -c 0 -i 4728 -a 0 -x {10.0 9.0 2359 ------- null} + -t 2.68768 -s 7 -d 0 -p ack -e 40 -c 0 -i 4728 -a 0 -x {10.0 9.0 2359 ------- null} h -t 2.68768 -s 7 -d 8 -p ack -e 40 -c 0 -i 4728 -a 0 -x {10.0 9.0 2359 ------- null} r -t 2.68779 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4727 -a 0 -x {9.0 10.0 2368 ------- null} + -t 2.68779 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4727 -a 0 -x {9.0 10.0 2368 ------- null} h -t 2.68779 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4727 -a 0 -x {9.0 10.0 2368 ------- null} r -t 2.68782 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4713 -a 0 -x {9.0 10.0 2361 ------- null} + -t 2.68782 -s 10 -d 7 -p ack -e 40 -c 0 -i 4732 -a 0 -x {10.0 9.0 2361 ------- null} - -t 2.68782 -s 10 -d 7 -p ack -e 40 -c 0 -i 4732 -a 0 -x {10.0 9.0 2361 ------- null} h -t 2.68782 -s 10 -d 7 -p ack -e 40 -c 0 -i 4732 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.68822 -s 0 -d 9 -p ack -e 40 -c 0 -i 4722 -a 0 -x {10.0 9.0 2356 ------- null} + -t 2.68822 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4733 -a 0 -x {9.0 10.0 2371 ------- null} - -t 2.68822 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4733 -a 0 -x {9.0 10.0 2371 ------- null} h -t 2.68822 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4733 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.68829 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4719 -a 0 -x {9.0 10.0 2364 ------- null} - -t 2.68829 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4719 -a 0 -x {9.0 10.0 2364 ------- null} h -t 2.68829 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4719 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.68835 -s 0 -d 9 -p ack -e 40 -c 0 -i 4726 -a 0 -x {10.0 9.0 2358 ------- null} - -t 2.68835 -s 0 -d 9 -p ack -e 40 -c 0 -i 4726 -a 0 -x {10.0 9.0 2358 ------- null} h -t 2.68835 -s 0 -d 9 -p ack -e 40 -c 0 -i 4726 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.68877 -s 10 -d 7 -p ack -e 40 -c 0 -i 4730 -a 0 -x {10.0 9.0 2360 ------- null} + -t 2.68877 -s 7 -d 0 -p ack -e 40 -c 0 -i 4730 -a 0 -x {10.0 9.0 2360 ------- null} h -t 2.68877 -s 7 -d 8 -p ack -e 40 -c 0 -i 4730 -a 0 -x {10.0 9.0 2360 ------- null} r -t 2.68891 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4715 -a 0 -x {9.0 10.0 2362 ------- null} + -t 2.68891 -s 10 -d 7 -p ack -e 40 -c 0 -i 4734 -a 0 -x {10.0 9.0 2362 ------- null} - -t 2.68891 -s 10 -d 7 -p ack -e 40 -c 0 -i 4734 -a 0 -x {10.0 9.0 2362 ------- null} h -t 2.68891 -s 10 -d 7 -p ack -e 40 -c 0 -i 4734 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.68896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4729 -a 0 -x {9.0 10.0 2369 ------- null} + -t 2.68896 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4729 -a 0 -x {9.0 10.0 2369 ------- null} h -t 2.68896 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4729 -a 0 -x {9.0 10.0 2369 ------- null} + -t 2.68938 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4721 -a 0 -x {9.0 10.0 2365 ------- null} - -t 2.68938 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4721 -a 0 -x {9.0 10.0 2365 ------- null} h -t 2.68938 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4721 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.68947 -s 0 -d 9 -p ack -e 40 -c 0 -i 4724 -a 0 -x {10.0 9.0 2357 ------- null} + -t 2.68947 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4735 -a 0 -x {9.0 10.0 2372 ------- null} - -t 2.68947 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4735 -a 0 -x {9.0 10.0 2372 ------- null} h -t 2.68947 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4735 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.6895 -s 0 -d 9 -p ack -e 40 -c 0 -i 4728 -a 0 -x {10.0 9.0 2359 ------- null} - -t 2.6895 -s 0 -d 9 -p ack -e 40 -c 0 -i 4728 -a 0 -x {10.0 9.0 2359 ------- null} h -t 2.6895 -s 0 -d 9 -p ack -e 40 -c 0 -i 4728 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.68986 -s 10 -d 7 -p ack -e 40 -c 0 -i 4732 -a 0 -x {10.0 9.0 2361 ------- null} + -t 2.68986 -s 7 -d 0 -p ack -e 40 -c 0 -i 4732 -a 0 -x {10.0 9.0 2361 ------- null} h -t 2.68986 -s 7 -d 8 -p ack -e 40 -c 0 -i 4732 -a 0 -x {10.0 9.0 2361 ------- null} r -t 2.69 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4717 -a 0 -x {9.0 10.0 2363 ------- null} + -t 2.69 -s 10 -d 7 -p ack -e 40 -c 0 -i 4736 -a 0 -x {10.0 9.0 2363 ------- null} - -t 2.69 -s 10 -d 7 -p ack -e 40 -c 0 -i 4736 -a 0 -x {10.0 9.0 2363 ------- null} h -t 2.69 -s 10 -d 7 -p ack -e 40 -c 0 -i 4736 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.69003 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4731 -a 0 -x {9.0 10.0 2370 ------- null} + -t 2.69003 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4731 -a 0 -x {9.0 10.0 2370 ------- null} h -t 2.69003 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4731 -a 0 -x {9.0 10.0 2370 ------- null} r -t 2.69038 -s 0 -d 9 -p ack -e 40 -c 0 -i 4726 -a 0 -x {10.0 9.0 2358 ------- null} + -t 2.69038 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4737 -a 0 -x {9.0 10.0 2373 ------- null} - -t 2.69038 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4737 -a 0 -x {9.0 10.0 2373 ------- null} h -t 2.69038 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4737 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.69046 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4723 -a 0 -x {9.0 10.0 2366 ------- null} - -t 2.69046 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4723 -a 0 -x {9.0 10.0 2366 ------- null} h -t 2.69046 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4723 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.69054 -s 0 -d 9 -p ack -e 40 -c 0 -i 4730 -a 0 -x {10.0 9.0 2360 ------- null} - -t 2.69054 -s 0 -d 9 -p ack -e 40 -c 0 -i 4730 -a 0 -x {10.0 9.0 2360 ------- null} h -t 2.69054 -s 0 -d 9 -p ack -e 40 -c 0 -i 4730 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.69094 -s 10 -d 7 -p ack -e 40 -c 0 -i 4734 -a 0 -x {10.0 9.0 2362 ------- null} + -t 2.69094 -s 7 -d 0 -p ack -e 40 -c 0 -i 4734 -a 0 -x {10.0 9.0 2362 ------- null} h -t 2.69094 -s 7 -d 8 -p ack -e 40 -c 0 -i 4734 -a 0 -x {10.0 9.0 2362 ------- null} r -t 2.69102 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4733 -a 0 -x {9.0 10.0 2371 ------- null} + -t 2.69102 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4733 -a 0 -x {9.0 10.0 2371 ------- null} h -t 2.69102 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4733 -a 0 -x {9.0 10.0 2371 ------- null} r -t 2.69109 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4719 -a 0 -x {9.0 10.0 2364 ------- null} + -t 2.69109 -s 10 -d 7 -p ack -e 40 -c 0 -i 4738 -a 0 -x {10.0 9.0 2364 ------- null} - -t 2.69109 -s 10 -d 7 -p ack -e 40 -c 0 -i 4738 -a 0 -x {10.0 9.0 2364 ------- null} h -t 2.69109 -s 10 -d 7 -p ack -e 40 -c 0 -i 4738 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.69154 -s 0 -d 9 -p ack -e 40 -c 0 -i 4728 -a 0 -x {10.0 9.0 2359 ------- null} + -t 2.69154 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4739 -a 0 -x {9.0 10.0 2374 ------- null} - -t 2.69154 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4739 -a 0 -x {9.0 10.0 2374 ------- null} h -t 2.69154 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4739 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.69155 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4725 -a 0 -x {9.0 10.0 2367 ------- null} - -t 2.69155 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4725 -a 0 -x {9.0 10.0 2367 ------- null} h -t 2.69155 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4725 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.69174 -s 0 -d 9 -p ack -e 40 -c 0 -i 4732 -a 0 -x {10.0 9.0 2361 ------- null} - -t 2.69174 -s 0 -d 9 -p ack -e 40 -c 0 -i 4732 -a 0 -x {10.0 9.0 2361 ------- null} h -t 2.69174 -s 0 -d 9 -p ack -e 40 -c 0 -i 4732 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.69203 -s 10 -d 7 -p ack -e 40 -c 0 -i 4736 -a 0 -x {10.0 9.0 2363 ------- null} + -t 2.69203 -s 7 -d 0 -p ack -e 40 -c 0 -i 4736 -a 0 -x {10.0 9.0 2363 ------- null} h -t 2.69203 -s 7 -d 8 -p ack -e 40 -c 0 -i 4736 -a 0 -x {10.0 9.0 2363 ------- null} r -t 2.69218 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4721 -a 0 -x {9.0 10.0 2365 ------- null} + -t 2.69218 -s 10 -d 7 -p ack -e 40 -c 0 -i 4740 -a 0 -x {10.0 9.0 2365 ------- null} - -t 2.69218 -s 10 -d 7 -p ack -e 40 -c 0 -i 4740 -a 0 -x {10.0 9.0 2365 ------- null} h -t 2.69218 -s 10 -d 7 -p ack -e 40 -c 0 -i 4740 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.69227 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4735 -a 0 -x {9.0 10.0 2372 ------- null} + -t 2.69227 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4735 -a 0 -x {9.0 10.0 2372 ------- null} h -t 2.69227 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4735 -a 0 -x {9.0 10.0 2372 ------- null} r -t 2.69258 -s 0 -d 9 -p ack -e 40 -c 0 -i 4730 -a 0 -x {10.0 9.0 2360 ------- null} + -t 2.69258 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4741 -a 0 -x {9.0 10.0 2375 ------- null} - -t 2.69258 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4741 -a 0 -x {9.0 10.0 2375 ------- null} h -t 2.69258 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4741 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.69264 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4727 -a 0 -x {9.0 10.0 2368 ------- null} - -t 2.69264 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4727 -a 0 -x {9.0 10.0 2368 ------- null} h -t 2.69264 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4727 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.69291 -s 0 -d 9 -p ack -e 40 -c 0 -i 4734 -a 0 -x {10.0 9.0 2362 ------- null} - -t 2.69291 -s 0 -d 9 -p ack -e 40 -c 0 -i 4734 -a 0 -x {10.0 9.0 2362 ------- null} h -t 2.69291 -s 0 -d 9 -p ack -e 40 -c 0 -i 4734 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.69312 -s 10 -d 7 -p ack -e 40 -c 0 -i 4738 -a 0 -x {10.0 9.0 2364 ------- null} + -t 2.69312 -s 7 -d 0 -p ack -e 40 -c 0 -i 4738 -a 0 -x {10.0 9.0 2364 ------- null} h -t 2.69312 -s 7 -d 8 -p ack -e 40 -c 0 -i 4738 -a 0 -x {10.0 9.0 2364 ------- null} r -t 2.69318 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4737 -a 0 -x {9.0 10.0 2373 ------- null} + -t 2.69318 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4737 -a 0 -x {9.0 10.0 2373 ------- null} h -t 2.69318 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4737 -a 0 -x {9.0 10.0 2373 ------- null} r -t 2.69326 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4723 -a 0 -x {9.0 10.0 2366 ------- null} + -t 2.69326 -s 10 -d 7 -p ack -e 40 -c 0 -i 4742 -a 0 -x {10.0 9.0 2366 ------- null} - -t 2.69326 -s 10 -d 7 -p ack -e 40 -c 0 -i 4742 -a 0 -x {10.0 9.0 2366 ------- null} h -t 2.69326 -s 10 -d 7 -p ack -e 40 -c 0 -i 4742 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.69378 -s 0 -d 9 -p ack -e 40 -c 0 -i 4732 -a 0 -x {10.0 9.0 2361 ------- null} + -t 2.69378 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4743 -a 0 -x {9.0 10.0 2376 ------- null} - -t 2.69378 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4743 -a 0 -x {9.0 10.0 2376 ------- null} h -t 2.69378 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4743 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.69382 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4729 -a 0 -x {9.0 10.0 2369 ------- null} - -t 2.69382 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4729 -a 0 -x {9.0 10.0 2369 ------- null} h -t 2.69382 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4729 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.69408 -s 0 -d 9 -p ack -e 40 -c 0 -i 4736 -a 0 -x {10.0 9.0 2363 ------- null} - -t 2.69408 -s 0 -d 9 -p ack -e 40 -c 0 -i 4736 -a 0 -x {10.0 9.0 2363 ------- null} h -t 2.69408 -s 0 -d 9 -p ack -e 40 -c 0 -i 4736 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.69421 -s 10 -d 7 -p ack -e 40 -c 0 -i 4740 -a 0 -x {10.0 9.0 2365 ------- null} + -t 2.69421 -s 7 -d 0 -p ack -e 40 -c 0 -i 4740 -a 0 -x {10.0 9.0 2365 ------- null} h -t 2.69421 -s 7 -d 8 -p ack -e 40 -c 0 -i 4740 -a 0 -x {10.0 9.0 2365 ------- null} r -t 2.69434 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4739 -a 0 -x {9.0 10.0 2374 ------- null} + -t 2.69434 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4739 -a 0 -x {9.0 10.0 2374 ------- null} h -t 2.69434 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4739 -a 0 -x {9.0 10.0 2374 ------- null} r -t 2.69435 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4725 -a 0 -x {9.0 10.0 2367 ------- null} + -t 2.69435 -s 10 -d 7 -p ack -e 40 -c 0 -i 4744 -a 0 -x {10.0 9.0 2367 ------- null} - -t 2.69435 -s 10 -d 7 -p ack -e 40 -c 0 -i 4744 -a 0 -x {10.0 9.0 2367 ------- null} h -t 2.69435 -s 10 -d 7 -p ack -e 40 -c 0 -i 4744 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.69494 -s 0 -d 9 -p ack -e 40 -c 0 -i 4734 -a 0 -x {10.0 9.0 2362 ------- null} + -t 2.69494 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4745 -a 0 -x {9.0 10.0 2377 ------- null} - -t 2.69494 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4745 -a 0 -x {9.0 10.0 2377 ------- null} h -t 2.69494 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4745 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.69496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4731 -a 0 -x {9.0 10.0 2370 ------- null} - -t 2.69496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4731 -a 0 -x {9.0 10.0 2370 ------- null} h -t 2.69496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4731 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.69512 -s 0 -d 9 -p ack -e 40 -c 0 -i 4738 -a 0 -x {10.0 9.0 2364 ------- null} - -t 2.69512 -s 0 -d 9 -p ack -e 40 -c 0 -i 4738 -a 0 -x {10.0 9.0 2364 ------- null} h -t 2.69512 -s 0 -d 9 -p ack -e 40 -c 0 -i 4738 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.6953 -s 10 -d 7 -p ack -e 40 -c 0 -i 4742 -a 0 -x {10.0 9.0 2366 ------- null} + -t 2.6953 -s 7 -d 0 -p ack -e 40 -c 0 -i 4742 -a 0 -x {10.0 9.0 2366 ------- null} h -t 2.6953 -s 7 -d 8 -p ack -e 40 -c 0 -i 4742 -a 0 -x {10.0 9.0 2366 ------- null} r -t 2.69538 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4741 -a 0 -x {9.0 10.0 2375 ------- null} + -t 2.69538 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4741 -a 0 -x {9.0 10.0 2375 ------- null} h -t 2.69538 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4741 -a 0 -x {9.0 10.0 2375 ------- null} r -t 2.69544 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4727 -a 0 -x {9.0 10.0 2368 ------- null} + -t 2.69544 -s 10 -d 7 -p ack -e 40 -c 0 -i 4746 -a 0 -x {10.0 9.0 2368 ------- null} - -t 2.69544 -s 10 -d 7 -p ack -e 40 -c 0 -i 4746 -a 0 -x {10.0 9.0 2368 ------- null} h -t 2.69544 -s 10 -d 7 -p ack -e 40 -c 0 -i 4746 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.69605 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4733 -a 0 -x {9.0 10.0 2371 ------- null} - -t 2.69605 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4733 -a 0 -x {9.0 10.0 2371 ------- null} h -t 2.69605 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4733 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.69611 -s 0 -d 9 -p ack -e 40 -c 0 -i 4736 -a 0 -x {10.0 9.0 2363 ------- null} + -t 2.69611 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4747 -a 0 -x {9.0 10.0 2378 ------- null} - -t 2.69611 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4747 -a 0 -x {9.0 10.0 2378 ------- null} h -t 2.69611 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4747 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.69613 -s 0 -d 9 -p ack -e 40 -c 0 -i 4740 -a 0 -x {10.0 9.0 2365 ------- null} - -t 2.69613 -s 0 -d 9 -p ack -e 40 -c 0 -i 4740 -a 0 -x {10.0 9.0 2365 ------- null} h -t 2.69613 -s 0 -d 9 -p ack -e 40 -c 0 -i 4740 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.69638 -s 10 -d 7 -p ack -e 40 -c 0 -i 4744 -a 0 -x {10.0 9.0 2367 ------- null} + -t 2.69638 -s 7 -d 0 -p ack -e 40 -c 0 -i 4744 -a 0 -x {10.0 9.0 2367 ------- null} h -t 2.69638 -s 7 -d 8 -p ack -e 40 -c 0 -i 4744 -a 0 -x {10.0 9.0 2367 ------- null} r -t 2.69658 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4743 -a 0 -x {9.0 10.0 2376 ------- null} + -t 2.69658 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4743 -a 0 -x {9.0 10.0 2376 ------- null} h -t 2.69658 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4743 -a 0 -x {9.0 10.0 2376 ------- null} r -t 2.69662 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4729 -a 0 -x {9.0 10.0 2369 ------- null} + -t 2.69662 -s 10 -d 7 -p ack -e 40 -c 0 -i 4748 -a 0 -x {10.0 9.0 2369 ------- null} - -t 2.69662 -s 10 -d 7 -p ack -e 40 -c 0 -i 4748 -a 0 -x {10.0 9.0 2369 ------- null} h -t 2.69662 -s 10 -d 7 -p ack -e 40 -c 0 -i 4748 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.69714 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4735 -a 0 -x {9.0 10.0 2372 ------- null} - -t 2.69714 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4735 -a 0 -x {9.0 10.0 2372 ------- null} h -t 2.69714 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4735 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.69715 -s 0 -d 9 -p ack -e 40 -c 0 -i 4738 -a 0 -x {10.0 9.0 2364 ------- null} + -t 2.69715 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4749 -a 0 -x {9.0 10.0 2379 ------- null} - -t 2.69715 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4749 -a 0 -x {9.0 10.0 2379 ------- null} h -t 2.69715 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4749 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.69742 -s 0 -d 9 -p ack -e 40 -c 0 -i 4742 -a 0 -x {10.0 9.0 2366 ------- null} - -t 2.69742 -s 0 -d 9 -p ack -e 40 -c 0 -i 4742 -a 0 -x {10.0 9.0 2366 ------- null} h -t 2.69742 -s 0 -d 9 -p ack -e 40 -c 0 -i 4742 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.69747 -s 10 -d 7 -p ack -e 40 -c 0 -i 4746 -a 0 -x {10.0 9.0 2368 ------- null} + -t 2.69747 -s 7 -d 0 -p ack -e 40 -c 0 -i 4746 -a 0 -x {10.0 9.0 2368 ------- null} h -t 2.69747 -s 7 -d 8 -p ack -e 40 -c 0 -i 4746 -a 0 -x {10.0 9.0 2368 ------- null} r -t 2.69774 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4745 -a 0 -x {9.0 10.0 2377 ------- null} + -t 2.69774 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4745 -a 0 -x {9.0 10.0 2377 ------- null} h -t 2.69774 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4745 -a 0 -x {9.0 10.0 2377 ------- null} r -t 2.69776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4731 -a 0 -x {9.0 10.0 2370 ------- null} + -t 2.69776 -s 10 -d 7 -p ack -e 40 -c 0 -i 4750 -a 0 -x {10.0 9.0 2370 ------- null} - -t 2.69776 -s 10 -d 7 -p ack -e 40 -c 0 -i 4750 -a 0 -x {10.0 9.0 2370 ------- null} h -t 2.69776 -s 10 -d 7 -p ack -e 40 -c 0 -i 4750 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.69816 -s 0 -d 9 -p ack -e 40 -c 0 -i 4740 -a 0 -x {10.0 9.0 2365 ------- null} + -t 2.69816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4751 -a 0 -x {9.0 10.0 2380 ------- null} - -t 2.69816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4751 -a 0 -x {9.0 10.0 2380 ------- null} h -t 2.69816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4751 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.69832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4737 -a 0 -x {9.0 10.0 2373 ------- null} - -t 2.69832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4737 -a 0 -x {9.0 10.0 2373 ------- null} h -t 2.69832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4737 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.69842 -s 0 -d 9 -p ack -e 40 -c 0 -i 4744 -a 0 -x {10.0 9.0 2367 ------- null} - -t 2.69842 -s 0 -d 9 -p ack -e 40 -c 0 -i 4744 -a 0 -x {10.0 9.0 2367 ------- null} h -t 2.69842 -s 0 -d 9 -p ack -e 40 -c 0 -i 4744 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.69866 -s 10 -d 7 -p ack -e 40 -c 0 -i 4748 -a 0 -x {10.0 9.0 2369 ------- null} + -t 2.69866 -s 7 -d 0 -p ack -e 40 -c 0 -i 4748 -a 0 -x {10.0 9.0 2369 ------- null} h -t 2.69866 -s 7 -d 8 -p ack -e 40 -c 0 -i 4748 -a 0 -x {10.0 9.0 2369 ------- null} r -t 2.69885 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4733 -a 0 -x {9.0 10.0 2371 ------- null} + -t 2.69885 -s 10 -d 7 -p ack -e 40 -c 0 -i 4752 -a 0 -x {10.0 9.0 2371 ------- null} - -t 2.69885 -s 10 -d 7 -p ack -e 40 -c 0 -i 4752 -a 0 -x {10.0 9.0 2371 ------- null} h -t 2.69885 -s 10 -d 7 -p ack -e 40 -c 0 -i 4752 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.69891 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4747 -a 0 -x {9.0 10.0 2378 ------- null} + -t 2.69891 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4747 -a 0 -x {9.0 10.0 2378 ------- null} h -t 2.69891 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4747 -a 0 -x {9.0 10.0 2378 ------- null} + -t 2.69941 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4739 -a 0 -x {9.0 10.0 2374 ------- null} - -t 2.69941 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4739 -a 0 -x {9.0 10.0 2374 ------- null} h -t 2.69941 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4739 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.69946 -s 0 -d 9 -p ack -e 40 -c 0 -i 4742 -a 0 -x {10.0 9.0 2366 ------- null} + -t 2.69946 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4753 -a 0 -x {9.0 10.0 2381 ------- null} - -t 2.69946 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4753 -a 0 -x {9.0 10.0 2381 ------- null} h -t 2.69946 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4753 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.69952 -s 0 -d 9 -p ack -e 40 -c 0 -i 4746 -a 0 -x {10.0 9.0 2368 ------- null} - -t 2.69952 -s 0 -d 9 -p ack -e 40 -c 0 -i 4746 -a 0 -x {10.0 9.0 2368 ------- null} h -t 2.69952 -s 0 -d 9 -p ack -e 40 -c 0 -i 4746 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.69979 -s 10 -d 7 -p ack -e 40 -c 0 -i 4750 -a 0 -x {10.0 9.0 2370 ------- null} + -t 2.69979 -s 7 -d 0 -p ack -e 40 -c 0 -i 4750 -a 0 -x {10.0 9.0 2370 ------- null} h -t 2.69979 -s 7 -d 8 -p ack -e 40 -c 0 -i 4750 -a 0 -x {10.0 9.0 2370 ------- null} r -t 2.69994 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4735 -a 0 -x {9.0 10.0 2372 ------- null} + -t 2.69994 -s 10 -d 7 -p ack -e 40 -c 0 -i 4754 -a 0 -x {10.0 9.0 2372 ------- null} - -t 2.69994 -s 10 -d 7 -p ack -e 40 -c 0 -i 4754 -a 0 -x {10.0 9.0 2372 ------- null} h -t 2.69994 -s 10 -d 7 -p ack -e 40 -c 0 -i 4754 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.69995 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4749 -a 0 -x {9.0 10.0 2379 ------- null} + -t 2.69995 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4749 -a 0 -x {9.0 10.0 2379 ------- null} h -t 2.69995 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4749 -a 0 -x {9.0 10.0 2379 ------- null} r -t 2.70045 -s 0 -d 9 -p ack -e 40 -c 0 -i 4744 -a 0 -x {10.0 9.0 2367 ------- null} + -t 2.70045 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4755 -a 0 -x {9.0 10.0 2382 ------- null} - -t 2.70045 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4755 -a 0 -x {9.0 10.0 2382 ------- null} h -t 2.70045 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4755 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.7005 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4741 -a 0 -x {9.0 10.0 2375 ------- null} - -t 2.7005 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4741 -a 0 -x {9.0 10.0 2375 ------- null} h -t 2.7005 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4741 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.70064 -s 0 -d 9 -p ack -e 40 -c 0 -i 4748 -a 0 -x {10.0 9.0 2369 ------- null} - -t 2.70064 -s 0 -d 9 -p ack -e 40 -c 0 -i 4748 -a 0 -x {10.0 9.0 2369 ------- null} h -t 2.70064 -s 0 -d 9 -p ack -e 40 -c 0 -i 4748 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.70088 -s 10 -d 7 -p ack -e 40 -c 0 -i 4752 -a 0 -x {10.0 9.0 2371 ------- null} + -t 2.70088 -s 7 -d 0 -p ack -e 40 -c 0 -i 4752 -a 0 -x {10.0 9.0 2371 ------- null} h -t 2.70088 -s 7 -d 8 -p ack -e 40 -c 0 -i 4752 -a 0 -x {10.0 9.0 2371 ------- null} r -t 2.70096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4751 -a 0 -x {9.0 10.0 2380 ------- null} + -t 2.70096 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4751 -a 0 -x {9.0 10.0 2380 ------- null} h -t 2.70096 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4751 -a 0 -x {9.0 10.0 2380 ------- null} r -t 2.70112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4737 -a 0 -x {9.0 10.0 2373 ------- null} + -t 2.70112 -s 10 -d 7 -p ack -e 40 -c 0 -i 4756 -a 0 -x {10.0 9.0 2373 ------- null} - -t 2.70112 -s 10 -d 7 -p ack -e 40 -c 0 -i 4756 -a 0 -x {10.0 9.0 2373 ------- null} h -t 2.70112 -s 10 -d 7 -p ack -e 40 -c 0 -i 4756 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.70155 -s 0 -d 9 -p ack -e 40 -c 0 -i 4746 -a 0 -x {10.0 9.0 2368 ------- null} + -t 2.70155 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4757 -a 0 -x {9.0 10.0 2383 ------- null} - -t 2.70155 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4757 -a 0 -x {9.0 10.0 2383 ------- null} h -t 2.70155 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4757 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.70158 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4743 -a 0 -x {9.0 10.0 2376 ------- null} - -t 2.70158 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4743 -a 0 -x {9.0 10.0 2376 ------- null} h -t 2.70158 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4743 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.70178 -s 0 -d 9 -p ack -e 40 -c 0 -i 4750 -a 0 -x {10.0 9.0 2370 ------- null} - -t 2.70178 -s 0 -d 9 -p ack -e 40 -c 0 -i 4750 -a 0 -x {10.0 9.0 2370 ------- null} h -t 2.70178 -s 0 -d 9 -p ack -e 40 -c 0 -i 4750 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.70197 -s 10 -d 7 -p ack -e 40 -c 0 -i 4754 -a 0 -x {10.0 9.0 2372 ------- null} + -t 2.70197 -s 7 -d 0 -p ack -e 40 -c 0 -i 4754 -a 0 -x {10.0 9.0 2372 ------- null} h -t 2.70197 -s 7 -d 8 -p ack -e 40 -c 0 -i 4754 -a 0 -x {10.0 9.0 2372 ------- null} r -t 2.70221 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4739 -a 0 -x {9.0 10.0 2374 ------- null} + -t 2.70221 -s 10 -d 7 -p ack -e 40 -c 0 -i 4758 -a 0 -x {10.0 9.0 2374 ------- null} - -t 2.70221 -s 10 -d 7 -p ack -e 40 -c 0 -i 4758 -a 0 -x {10.0 9.0 2374 ------- null} h -t 2.70221 -s 10 -d 7 -p ack -e 40 -c 0 -i 4758 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.70226 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4753 -a 0 -x {9.0 10.0 2381 ------- null} + -t 2.70226 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4753 -a 0 -x {9.0 10.0 2381 ------- null} h -t 2.70226 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4753 -a 0 -x {9.0 10.0 2381 ------- null} + -t 2.70267 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4745 -a 0 -x {9.0 10.0 2377 ------- null} - -t 2.70267 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4745 -a 0 -x {9.0 10.0 2377 ------- null} h -t 2.70267 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4745 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.70267 -s 0 -d 9 -p ack -e 40 -c 0 -i 4748 -a 0 -x {10.0 9.0 2369 ------- null} + -t 2.70267 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4759 -a 0 -x {9.0 10.0 2384 ------- null} - -t 2.70267 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4759 -a 0 -x {9.0 10.0 2384 ------- null} h -t 2.70267 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4759 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.70291 -s 0 -d 9 -p ack -e 40 -c 0 -i 4752 -a 0 -x {10.0 9.0 2371 ------- null} - -t 2.70291 -s 0 -d 9 -p ack -e 40 -c 0 -i 4752 -a 0 -x {10.0 9.0 2371 ------- null} h -t 2.70291 -s 0 -d 9 -p ack -e 40 -c 0 -i 4752 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.70315 -s 10 -d 7 -p ack -e 40 -c 0 -i 4756 -a 0 -x {10.0 9.0 2373 ------- null} + -t 2.70315 -s 7 -d 0 -p ack -e 40 -c 0 -i 4756 -a 0 -x {10.0 9.0 2373 ------- null} h -t 2.70315 -s 7 -d 8 -p ack -e 40 -c 0 -i 4756 -a 0 -x {10.0 9.0 2373 ------- null} r -t 2.70325 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4755 -a 0 -x {9.0 10.0 2382 ------- null} + -t 2.70325 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4755 -a 0 -x {9.0 10.0 2382 ------- null} h -t 2.70325 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4755 -a 0 -x {9.0 10.0 2382 ------- null} r -t 2.7033 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4741 -a 0 -x {9.0 10.0 2375 ------- null} + -t 2.7033 -s 10 -d 7 -p ack -e 40 -c 0 -i 4760 -a 0 -x {10.0 9.0 2375 ------- null} - -t 2.7033 -s 10 -d 7 -p ack -e 40 -c 0 -i 4760 -a 0 -x {10.0 9.0 2375 ------- null} h -t 2.7033 -s 10 -d 7 -p ack -e 40 -c 0 -i 4760 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.70376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4747 -a 0 -x {9.0 10.0 2378 ------- null} - -t 2.70376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4747 -a 0 -x {9.0 10.0 2378 ------- null} h -t 2.70376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4747 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.70381 -s 0 -d 9 -p ack -e 40 -c 0 -i 4750 -a 0 -x {10.0 9.0 2370 ------- null} + -t 2.70381 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4761 -a 0 -x {9.0 10.0 2385 ------- null} - -t 2.70381 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4761 -a 0 -x {9.0 10.0 2385 ------- null} h -t 2.70381 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4761 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.70392 -s 0 -d 9 -p ack -e 40 -c 0 -i 4754 -a 0 -x {10.0 9.0 2372 ------- null} - -t 2.70392 -s 0 -d 9 -p ack -e 40 -c 0 -i 4754 -a 0 -x {10.0 9.0 2372 ------- null} h -t 2.70392 -s 0 -d 9 -p ack -e 40 -c 0 -i 4754 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.70424 -s 10 -d 7 -p ack -e 40 -c 0 -i 4758 -a 0 -x {10.0 9.0 2374 ------- null} + -t 2.70424 -s 7 -d 0 -p ack -e 40 -c 0 -i 4758 -a 0 -x {10.0 9.0 2374 ------- null} h -t 2.70424 -s 7 -d 8 -p ack -e 40 -c 0 -i 4758 -a 0 -x {10.0 9.0 2374 ------- null} r -t 2.70435 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4757 -a 0 -x {9.0 10.0 2383 ------- null} + -t 2.70435 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4757 -a 0 -x {9.0 10.0 2383 ------- null} h -t 2.70435 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4757 -a 0 -x {9.0 10.0 2383 ------- null} r -t 2.70438 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4743 -a 0 -x {9.0 10.0 2376 ------- null} + -t 2.70438 -s 10 -d 7 -p ack -e 40 -c 0 -i 4762 -a 0 -x {10.0 9.0 2376 ------- null} - -t 2.70438 -s 10 -d 7 -p ack -e 40 -c 0 -i 4762 -a 0 -x {10.0 9.0 2376 ------- null} h -t 2.70438 -s 10 -d 7 -p ack -e 40 -c 0 -i 4762 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.70485 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4749 -a 0 -x {9.0 10.0 2379 ------- null} - -t 2.70485 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4749 -a 0 -x {9.0 10.0 2379 ------- null} h -t 2.70485 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4749 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.70494 -s 0 -d 9 -p ack -e 40 -c 0 -i 4752 -a 0 -x {10.0 9.0 2371 ------- null} + -t 2.70494 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4763 -a 0 -x {9.0 10.0 2386 ------- null} - -t 2.70494 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4763 -a 0 -x {9.0 10.0 2386 ------- null} h -t 2.70494 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4763 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.70509 -s 0 -d 9 -p ack -e 40 -c 0 -i 4756 -a 0 -x {10.0 9.0 2373 ------- null} - -t 2.70509 -s 0 -d 9 -p ack -e 40 -c 0 -i 4756 -a 0 -x {10.0 9.0 2373 ------- null} h -t 2.70509 -s 0 -d 9 -p ack -e 40 -c 0 -i 4756 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.70533 -s 10 -d 7 -p ack -e 40 -c 0 -i 4760 -a 0 -x {10.0 9.0 2375 ------- null} + -t 2.70533 -s 7 -d 0 -p ack -e 40 -c 0 -i 4760 -a 0 -x {10.0 9.0 2375 ------- null} h -t 2.70533 -s 7 -d 8 -p ack -e 40 -c 0 -i 4760 -a 0 -x {10.0 9.0 2375 ------- null} r -t 2.70547 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4745 -a 0 -x {9.0 10.0 2377 ------- null} + -t 2.70547 -s 10 -d 7 -p ack -e 40 -c 0 -i 4764 -a 0 -x {10.0 9.0 2377 ------- null} - -t 2.70547 -s 10 -d 7 -p ack -e 40 -c 0 -i 4764 -a 0 -x {10.0 9.0 2377 ------- null} h -t 2.70547 -s 10 -d 7 -p ack -e 40 -c 0 -i 4764 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.70547 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4759 -a 0 -x {9.0 10.0 2384 ------- null} + -t 2.70547 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4759 -a 0 -x {9.0 10.0 2384 ------- null} h -t 2.70547 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4759 -a 0 -x {9.0 10.0 2384 ------- null} + -t 2.70594 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4751 -a 0 -x {9.0 10.0 2380 ------- null} - -t 2.70594 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4751 -a 0 -x {9.0 10.0 2380 ------- null} h -t 2.70594 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4751 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.70595 -s 0 -d 9 -p ack -e 40 -c 0 -i 4754 -a 0 -x {10.0 9.0 2372 ------- null} + -t 2.70595 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4765 -a 0 -x {9.0 10.0 2387 ------- null} - -t 2.70595 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4765 -a 0 -x {9.0 10.0 2387 ------- null} h -t 2.70595 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4765 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.7061 -s 0 -d 9 -p ack -e 40 -c 0 -i 4758 -a 0 -x {10.0 9.0 2374 ------- null} - -t 2.7061 -s 0 -d 9 -p ack -e 40 -c 0 -i 4758 -a 0 -x {10.0 9.0 2374 ------- null} h -t 2.7061 -s 0 -d 9 -p ack -e 40 -c 0 -i 4758 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.70642 -s 10 -d 7 -p ack -e 40 -c 0 -i 4762 -a 0 -x {10.0 9.0 2376 ------- null} + -t 2.70642 -s 7 -d 0 -p ack -e 40 -c 0 -i 4762 -a 0 -x {10.0 9.0 2376 ------- null} h -t 2.70642 -s 7 -d 8 -p ack -e 40 -c 0 -i 4762 -a 0 -x {10.0 9.0 2376 ------- null} r -t 2.70656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4747 -a 0 -x {9.0 10.0 2378 ------- null} + -t 2.70656 -s 10 -d 7 -p ack -e 40 -c 0 -i 4766 -a 0 -x {10.0 9.0 2378 ------- null} - -t 2.70656 -s 10 -d 7 -p ack -e 40 -c 0 -i 4766 -a 0 -x {10.0 9.0 2378 ------- null} h -t 2.70656 -s 10 -d 7 -p ack -e 40 -c 0 -i 4766 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.70661 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4761 -a 0 -x {9.0 10.0 2385 ------- null} + -t 2.70661 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4761 -a 0 -x {9.0 10.0 2385 ------- null} h -t 2.70661 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4761 -a 0 -x {9.0 10.0 2385 ------- null} + -t 2.70702 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4753 -a 0 -x {9.0 10.0 2381 ------- null} - -t 2.70702 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4753 -a 0 -x {9.0 10.0 2381 ------- null} h -t 2.70702 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4753 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.70712 -s 0 -d 9 -p ack -e 40 -c 0 -i 4756 -a 0 -x {10.0 9.0 2373 ------- null} + -t 2.70712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4767 -a 0 -x {9.0 10.0 2388 ------- null} - -t 2.70712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4767 -a 0 -x {9.0 10.0 2388 ------- null} h -t 2.70712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4767 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.70715 -s 0 -d 9 -p ack -e 40 -c 0 -i 4760 -a 0 -x {10.0 9.0 2375 ------- null} - -t 2.70715 -s 0 -d 9 -p ack -e 40 -c 0 -i 4760 -a 0 -x {10.0 9.0 2375 ------- null} h -t 2.70715 -s 0 -d 9 -p ack -e 40 -c 0 -i 4760 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.7075 -s 10 -d 7 -p ack -e 40 -c 0 -i 4764 -a 0 -x {10.0 9.0 2377 ------- null} + -t 2.7075 -s 7 -d 0 -p ack -e 40 -c 0 -i 4764 -a 0 -x {10.0 9.0 2377 ------- null} h -t 2.7075 -s 7 -d 8 -p ack -e 40 -c 0 -i 4764 -a 0 -x {10.0 9.0 2377 ------- null} r -t 2.70765 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4749 -a 0 -x {9.0 10.0 2379 ------- null} + -t 2.70765 -s 10 -d 7 -p ack -e 40 -c 0 -i 4768 -a 0 -x {10.0 9.0 2379 ------- null} - -t 2.70765 -s 10 -d 7 -p ack -e 40 -c 0 -i 4768 -a 0 -x {10.0 9.0 2379 ------- null} h -t 2.70765 -s 10 -d 7 -p ack -e 40 -c 0 -i 4768 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.70774 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4763 -a 0 -x {9.0 10.0 2386 ------- null} + -t 2.70774 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4763 -a 0 -x {9.0 10.0 2386 ------- null} h -t 2.70774 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4763 -a 0 -x {9.0 10.0 2386 ------- null} + -t 2.70811 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4755 -a 0 -x {9.0 10.0 2382 ------- null} - -t 2.70811 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4755 -a 0 -x {9.0 10.0 2382 ------- null} h -t 2.70811 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4755 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.70813 -s 0 -d 9 -p ack -e 40 -c 0 -i 4758 -a 0 -x {10.0 9.0 2374 ------- null} + -t 2.70813 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4769 -a 0 -x {9.0 10.0 2389 ------- null} - -t 2.70813 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4769 -a 0 -x {9.0 10.0 2389 ------- null} h -t 2.70813 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4769 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.70842 -s 0 -d 9 -p ack -e 40 -c 0 -i 4762 -a 0 -x {10.0 9.0 2376 ------- null} - -t 2.70842 -s 0 -d 9 -p ack -e 40 -c 0 -i 4762 -a 0 -x {10.0 9.0 2376 ------- null} h -t 2.70842 -s 0 -d 9 -p ack -e 40 -c 0 -i 4762 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.70859 -s 10 -d 7 -p ack -e 40 -c 0 -i 4766 -a 0 -x {10.0 9.0 2378 ------- null} + -t 2.70859 -s 7 -d 0 -p ack -e 40 -c 0 -i 4766 -a 0 -x {10.0 9.0 2378 ------- null} h -t 2.70859 -s 7 -d 8 -p ack -e 40 -c 0 -i 4766 -a 0 -x {10.0 9.0 2378 ------- null} r -t 2.70874 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4751 -a 0 -x {9.0 10.0 2380 ------- null} + -t 2.70874 -s 10 -d 7 -p ack -e 40 -c 0 -i 4770 -a 0 -x {10.0 9.0 2380 ------- null} - -t 2.70874 -s 10 -d 7 -p ack -e 40 -c 0 -i 4770 -a 0 -x {10.0 9.0 2380 ------- null} h -t 2.70874 -s 10 -d 7 -p ack -e 40 -c 0 -i 4770 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.70875 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4765 -a 0 -x {9.0 10.0 2387 ------- null} + -t 2.70875 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4765 -a 0 -x {9.0 10.0 2387 ------- null} h -t 2.70875 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4765 -a 0 -x {9.0 10.0 2387 ------- null} r -t 2.70918 -s 0 -d 9 -p ack -e 40 -c 0 -i 4760 -a 0 -x {10.0 9.0 2375 ------- null} + -t 2.70918 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4771 -a 0 -x {9.0 10.0 2390 ------- null} - -t 2.70918 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4771 -a 0 -x {9.0 10.0 2390 ------- null} h -t 2.70918 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4771 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.70933 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4757 -a 0 -x {9.0 10.0 2383 ------- null} - -t 2.70933 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4757 -a 0 -x {9.0 10.0 2383 ------- null} h -t 2.70933 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4757 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.70955 -s 0 -d 9 -p ack -e 40 -c 0 -i 4764 -a 0 -x {10.0 9.0 2377 ------- null} - -t 2.70955 -s 0 -d 9 -p ack -e 40 -c 0 -i 4764 -a 0 -x {10.0 9.0 2377 ------- null} h -t 2.70955 -s 0 -d 9 -p ack -e 40 -c 0 -i 4764 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.70968 -s 10 -d 7 -p ack -e 40 -c 0 -i 4768 -a 0 -x {10.0 9.0 2379 ------- null} + -t 2.70968 -s 7 -d 0 -p ack -e 40 -c 0 -i 4768 -a 0 -x {10.0 9.0 2379 ------- null} h -t 2.70968 -s 7 -d 8 -p ack -e 40 -c 0 -i 4768 -a 0 -x {10.0 9.0 2379 ------- null} r -t 2.70982 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4753 -a 0 -x {9.0 10.0 2381 ------- null} + -t 2.70982 -s 10 -d 7 -p ack -e 40 -c 0 -i 4772 -a 0 -x {10.0 9.0 2381 ------- null} - -t 2.70982 -s 10 -d 7 -p ack -e 40 -c 0 -i 4772 -a 0 -x {10.0 9.0 2381 ------- null} h -t 2.70982 -s 10 -d 7 -p ack -e 40 -c 0 -i 4772 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.70992 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4767 -a 0 -x {9.0 10.0 2388 ------- null} + -t 2.70992 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4767 -a 0 -x {9.0 10.0 2388 ------- null} h -t 2.70992 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4767 -a 0 -x {9.0 10.0 2388 ------- null} + -t 2.71042 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4759 -a 0 -x {9.0 10.0 2384 ------- null} - -t 2.71042 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4759 -a 0 -x {9.0 10.0 2384 ------- null} h -t 2.71042 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4759 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.71045 -s 0 -d 9 -p ack -e 40 -c 0 -i 4762 -a 0 -x {10.0 9.0 2376 ------- null} + -t 2.71045 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4773 -a 0 -x {9.0 10.0 2391 ------- null} - -t 2.71045 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4773 -a 0 -x {9.0 10.0 2391 ------- null} h -t 2.71045 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4773 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.71058 -s 0 -d 9 -p ack -e 40 -c 0 -i 4766 -a 0 -x {10.0 9.0 2378 ------- null} - -t 2.71058 -s 0 -d 9 -p ack -e 40 -c 0 -i 4766 -a 0 -x {10.0 9.0 2378 ------- null} h -t 2.71058 -s 0 -d 9 -p ack -e 40 -c 0 -i 4766 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.71077 -s 10 -d 7 -p ack -e 40 -c 0 -i 4770 -a 0 -x {10.0 9.0 2380 ------- null} + -t 2.71077 -s 7 -d 0 -p ack -e 40 -c 0 -i 4770 -a 0 -x {10.0 9.0 2380 ------- null} h -t 2.71077 -s 7 -d 8 -p ack -e 40 -c 0 -i 4770 -a 0 -x {10.0 9.0 2380 ------- null} r -t 2.71091 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4755 -a 0 -x {9.0 10.0 2382 ------- null} + -t 2.71091 -s 10 -d 7 -p ack -e 40 -c 0 -i 4774 -a 0 -x {10.0 9.0 2382 ------- null} - -t 2.71091 -s 10 -d 7 -p ack -e 40 -c 0 -i 4774 -a 0 -x {10.0 9.0 2382 ------- null} h -t 2.71091 -s 10 -d 7 -p ack -e 40 -c 0 -i 4774 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.71093 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4769 -a 0 -x {9.0 10.0 2389 ------- null} + -t 2.71093 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4769 -a 0 -x {9.0 10.0 2389 ------- null} h -t 2.71093 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4769 -a 0 -x {9.0 10.0 2389 ------- null} + -t 2.7115 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4761 -a 0 -x {9.0 10.0 2385 ------- null} - -t 2.7115 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4761 -a 0 -x {9.0 10.0 2385 ------- null} h -t 2.7115 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4761 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.71158 -s 0 -d 9 -p ack -e 40 -c 0 -i 4764 -a 0 -x {10.0 9.0 2377 ------- null} + -t 2.71158 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4775 -a 0 -x {9.0 10.0 2392 ------- null} - -t 2.71158 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4775 -a 0 -x {9.0 10.0 2392 ------- null} h -t 2.71158 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4775 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.71162 -s 0 -d 9 -p ack -e 40 -c 0 -i 4768 -a 0 -x {10.0 9.0 2379 ------- null} - -t 2.71162 -s 0 -d 9 -p ack -e 40 -c 0 -i 4768 -a 0 -x {10.0 9.0 2379 ------- null} h -t 2.71162 -s 0 -d 9 -p ack -e 40 -c 0 -i 4768 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.71186 -s 10 -d 7 -p ack -e 40 -c 0 -i 4772 -a 0 -x {10.0 9.0 2381 ------- null} + -t 2.71186 -s 7 -d 0 -p ack -e 40 -c 0 -i 4772 -a 0 -x {10.0 9.0 2381 ------- null} h -t 2.71186 -s 7 -d 8 -p ack -e 40 -c 0 -i 4772 -a 0 -x {10.0 9.0 2381 ------- null} r -t 2.71198 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4771 -a 0 -x {9.0 10.0 2390 ------- null} + -t 2.71198 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4771 -a 0 -x {9.0 10.0 2390 ------- null} h -t 2.71198 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4771 -a 0 -x {9.0 10.0 2390 ------- null} r -t 2.71213 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4757 -a 0 -x {9.0 10.0 2383 ------- null} + -t 2.71213 -s 10 -d 7 -p ack -e 40 -c 0 -i 4776 -a 0 -x {10.0 9.0 2383 ------- null} - -t 2.71213 -s 10 -d 7 -p ack -e 40 -c 0 -i 4776 -a 0 -x {10.0 9.0 2383 ------- null} h -t 2.71213 -s 10 -d 7 -p ack -e 40 -c 0 -i 4776 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.71259 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4763 -a 0 -x {9.0 10.0 2386 ------- null} - -t 2.71259 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4763 -a 0 -x {9.0 10.0 2386 ------- null} h -t 2.71259 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4763 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.71261 -s 0 -d 9 -p ack -e 40 -c 0 -i 4766 -a 0 -x {10.0 9.0 2378 ------- null} + -t 2.71261 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4777 -a 0 -x {9.0 10.0 2393 ------- null} - -t 2.71261 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4777 -a 0 -x {9.0 10.0 2393 ------- null} h -t 2.71261 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4777 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.7129 -s 0 -d 9 -p ack -e 40 -c 0 -i 4770 -a 0 -x {10.0 9.0 2380 ------- null} - -t 2.7129 -s 0 -d 9 -p ack -e 40 -c 0 -i 4770 -a 0 -x {10.0 9.0 2380 ------- null} h -t 2.7129 -s 0 -d 9 -p ack -e 40 -c 0 -i 4770 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.71294 -s 10 -d 7 -p ack -e 40 -c 0 -i 4774 -a 0 -x {10.0 9.0 2382 ------- null} + -t 2.71294 -s 7 -d 0 -p ack -e 40 -c 0 -i 4774 -a 0 -x {10.0 9.0 2382 ------- null} h -t 2.71294 -s 7 -d 8 -p ack -e 40 -c 0 -i 4774 -a 0 -x {10.0 9.0 2382 ------- null} r -t 2.71322 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4759 -a 0 -x {9.0 10.0 2384 ------- null} + -t 2.71322 -s 10 -d 7 -p ack -e 40 -c 0 -i 4778 -a 0 -x {10.0 9.0 2384 ------- null} - -t 2.71322 -s 10 -d 7 -p ack -e 40 -c 0 -i 4778 -a 0 -x {10.0 9.0 2384 ------- null} h -t 2.71322 -s 10 -d 7 -p ack -e 40 -c 0 -i 4778 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.71325 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4773 -a 0 -x {9.0 10.0 2391 ------- null} + -t 2.71325 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4773 -a 0 -x {9.0 10.0 2391 ------- null} h -t 2.71325 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4773 -a 0 -x {9.0 10.0 2391 ------- null} r -t 2.71365 -s 0 -d 9 -p ack -e 40 -c 0 -i 4768 -a 0 -x {10.0 9.0 2379 ------- null} + -t 2.71365 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4779 -a 0 -x {9.0 10.0 2394 ------- null} - -t 2.71365 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4779 -a 0 -x {9.0 10.0 2394 ------- null} h -t 2.71365 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4779 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.71386 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4765 -a 0 -x {9.0 10.0 2387 ------- null} - -t 2.71386 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4765 -a 0 -x {9.0 10.0 2387 ------- null} h -t 2.71386 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4765 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.7141 -s 0 -d 9 -p ack -e 40 -c 0 -i 4772 -a 0 -x {10.0 9.0 2381 ------- null} - -t 2.7141 -s 0 -d 9 -p ack -e 40 -c 0 -i 4772 -a 0 -x {10.0 9.0 2381 ------- null} h -t 2.7141 -s 0 -d 9 -p ack -e 40 -c 0 -i 4772 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.71416 -s 10 -d 7 -p ack -e 40 -c 0 -i 4776 -a 0 -x {10.0 9.0 2383 ------- null} + -t 2.71416 -s 7 -d 0 -p ack -e 40 -c 0 -i 4776 -a 0 -x {10.0 9.0 2383 ------- null} h -t 2.71416 -s 7 -d 8 -p ack -e 40 -c 0 -i 4776 -a 0 -x {10.0 9.0 2383 ------- null} r -t 2.7143 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4761 -a 0 -x {9.0 10.0 2385 ------- null} + -t 2.7143 -s 10 -d 7 -p ack -e 40 -c 0 -i 4780 -a 0 -x {10.0 9.0 2385 ------- null} - -t 2.7143 -s 10 -d 7 -p ack -e 40 -c 0 -i 4780 -a 0 -x {10.0 9.0 2385 ------- null} h -t 2.7143 -s 10 -d 7 -p ack -e 40 -c 0 -i 4780 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.71438 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4775 -a 0 -x {9.0 10.0 2392 ------- null} + -t 2.71438 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4775 -a 0 -x {9.0 10.0 2392 ------- null} h -t 2.71438 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4775 -a 0 -x {9.0 10.0 2392 ------- null} r -t 2.71493 -s 0 -d 9 -p ack -e 40 -c 0 -i 4770 -a 0 -x {10.0 9.0 2380 ------- null} + -t 2.71493 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4781 -a 0 -x {9.0 10.0 2395 ------- null} - -t 2.71493 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4781 -a 0 -x {9.0 10.0 2395 ------- null} h -t 2.71493 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4781 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.71494 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4767 -a 0 -x {9.0 10.0 2388 ------- null} - -t 2.71494 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4767 -a 0 -x {9.0 10.0 2388 ------- null} h -t 2.71494 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4767 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.71514 -s 0 -d 9 -p ack -e 40 -c 0 -i 4774 -a 0 -x {10.0 9.0 2382 ------- null} - -t 2.71514 -s 0 -d 9 -p ack -e 40 -c 0 -i 4774 -a 0 -x {10.0 9.0 2382 ------- null} h -t 2.71514 -s 0 -d 9 -p ack -e 40 -c 0 -i 4774 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.71525 -s 10 -d 7 -p ack -e 40 -c 0 -i 4778 -a 0 -x {10.0 9.0 2384 ------- null} + -t 2.71525 -s 7 -d 0 -p ack -e 40 -c 0 -i 4778 -a 0 -x {10.0 9.0 2384 ------- null} h -t 2.71525 -s 7 -d 8 -p ack -e 40 -c 0 -i 4778 -a 0 -x {10.0 9.0 2384 ------- null} r -t 2.71539 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4763 -a 0 -x {9.0 10.0 2386 ------- null} + -t 2.71539 -s 10 -d 7 -p ack -e 40 -c 0 -i 4782 -a 0 -x {10.0 9.0 2386 ------- null} - -t 2.71539 -s 10 -d 7 -p ack -e 40 -c 0 -i 4782 -a 0 -x {10.0 9.0 2386 ------- null} h -t 2.71539 -s 10 -d 7 -p ack -e 40 -c 0 -i 4782 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.71541 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4777 -a 0 -x {9.0 10.0 2393 ------- null} + -t 2.71541 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4777 -a 0 -x {9.0 10.0 2393 ------- null} h -t 2.71541 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4777 -a 0 -x {9.0 10.0 2393 ------- null} + -t 2.71603 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4769 -a 0 -x {9.0 10.0 2389 ------- null} - -t 2.71603 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4769 -a 0 -x {9.0 10.0 2389 ------- null} h -t 2.71603 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4769 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.71613 -s 0 -d 9 -p ack -e 40 -c 0 -i 4772 -a 0 -x {10.0 9.0 2381 ------- null} + -t 2.71613 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4783 -a 0 -x {9.0 10.0 2396 ------- null} - -t 2.71613 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4783 -a 0 -x {9.0 10.0 2396 ------- null} h -t 2.71613 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4783 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.71621 -s 0 -d 9 -p ack -e 40 -c 0 -i 4776 -a 0 -x {10.0 9.0 2383 ------- null} - -t 2.71621 -s 0 -d 9 -p ack -e 40 -c 0 -i 4776 -a 0 -x {10.0 9.0 2383 ------- null} h -t 2.71621 -s 0 -d 9 -p ack -e 40 -c 0 -i 4776 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.71634 -s 10 -d 7 -p ack -e 40 -c 0 -i 4780 -a 0 -x {10.0 9.0 2385 ------- null} + -t 2.71634 -s 7 -d 0 -p ack -e 40 -c 0 -i 4780 -a 0 -x {10.0 9.0 2385 ------- null} h -t 2.71634 -s 7 -d 8 -p ack -e 40 -c 0 -i 4780 -a 0 -x {10.0 9.0 2385 ------- null} r -t 2.71645 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4779 -a 0 -x {9.0 10.0 2394 ------- null} + -t 2.71645 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4779 -a 0 -x {9.0 10.0 2394 ------- null} h -t 2.71645 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4779 -a 0 -x {9.0 10.0 2394 ------- null} r -t 2.71666 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4765 -a 0 -x {9.0 10.0 2387 ------- null} + -t 2.71666 -s 10 -d 7 -p ack -e 40 -c 0 -i 4784 -a 0 -x {10.0 9.0 2387 ------- null} - -t 2.71666 -s 10 -d 7 -p ack -e 40 -c 0 -i 4784 -a 0 -x {10.0 9.0 2387 ------- null} h -t 2.71666 -s 10 -d 7 -p ack -e 40 -c 0 -i 4784 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.71712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4771 -a 0 -x {9.0 10.0 2390 ------- null} - -t 2.71712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4771 -a 0 -x {9.0 10.0 2390 ------- null} h -t 2.71712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4771 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.71717 -s 0 -d 9 -p ack -e 40 -c 0 -i 4774 -a 0 -x {10.0 9.0 2382 ------- null} + -t 2.71717 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4785 -a 0 -x {9.0 10.0 2397 ------- null} - -t 2.71717 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4785 -a 0 -x {9.0 10.0 2397 ------- null} h -t 2.71717 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4785 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.71739 -s 0 -d 9 -p ack -e 40 -c 0 -i 4778 -a 0 -x {10.0 9.0 2384 ------- null} - -t 2.71739 -s 0 -d 9 -p ack -e 40 -c 0 -i 4778 -a 0 -x {10.0 9.0 2384 ------- null} h -t 2.71739 -s 0 -d 9 -p ack -e 40 -c 0 -i 4778 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.71742 -s 10 -d 7 -p ack -e 40 -c 0 -i 4782 -a 0 -x {10.0 9.0 2386 ------- null} + -t 2.71742 -s 7 -d 0 -p ack -e 40 -c 0 -i 4782 -a 0 -x {10.0 9.0 2386 ------- null} h -t 2.71742 -s 7 -d 8 -p ack -e 40 -c 0 -i 4782 -a 0 -x {10.0 9.0 2386 ------- null} r -t 2.71773 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4781 -a 0 -x {9.0 10.0 2395 ------- null} + -t 2.71773 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4781 -a 0 -x {9.0 10.0 2395 ------- null} h -t 2.71773 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4781 -a 0 -x {9.0 10.0 2395 ------- null} r -t 2.71774 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4767 -a 0 -x {9.0 10.0 2388 ------- null} + -t 2.71774 -s 10 -d 7 -p ack -e 40 -c 0 -i 4786 -a 0 -x {10.0 9.0 2388 ------- null} - -t 2.71774 -s 10 -d 7 -p ack -e 40 -c 0 -i 4786 -a 0 -x {10.0 9.0 2388 ------- null} h -t 2.71774 -s 10 -d 7 -p ack -e 40 -c 0 -i 4786 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.71824 -s 0 -d 9 -p ack -e 40 -c 0 -i 4776 -a 0 -x {10.0 9.0 2383 ------- null} + -t 2.71824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4787 -a 0 -x {9.0 10.0 2398 ------- null} - -t 2.71824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4787 -a 0 -x {9.0 10.0 2398 ------- null} h -t 2.71824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4787 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.71837 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4773 -a 0 -x {9.0 10.0 2391 ------- null} - -t 2.71837 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4773 -a 0 -x {9.0 10.0 2391 ------- null} h -t 2.71837 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4773 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.71846 -s 0 -d 9 -p ack -e 40 -c 0 -i 4780 -a 0 -x {10.0 9.0 2385 ------- null} - -t 2.71846 -s 0 -d 9 -p ack -e 40 -c 0 -i 4780 -a 0 -x {10.0 9.0 2385 ------- null} h -t 2.71846 -s 0 -d 9 -p ack -e 40 -c 0 -i 4780 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.71869 -s 10 -d 7 -p ack -e 40 -c 0 -i 4784 -a 0 -x {10.0 9.0 2387 ------- null} + -t 2.71869 -s 7 -d 0 -p ack -e 40 -c 0 -i 4784 -a 0 -x {10.0 9.0 2387 ------- null} h -t 2.71869 -s 7 -d 8 -p ack -e 40 -c 0 -i 4784 -a 0 -x {10.0 9.0 2387 ------- null} r -t 2.71883 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4769 -a 0 -x {9.0 10.0 2389 ------- null} + -t 2.71883 -s 10 -d 7 -p ack -e 40 -c 0 -i 4788 -a 0 -x {10.0 9.0 2389 ------- null} - -t 2.71883 -s 10 -d 7 -p ack -e 40 -c 0 -i 4788 -a 0 -x {10.0 9.0 2389 ------- null} h -t 2.71883 -s 10 -d 7 -p ack -e 40 -c 0 -i 4788 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.71893 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4783 -a 0 -x {9.0 10.0 2396 ------- null} + -t 2.71893 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4783 -a 0 -x {9.0 10.0 2396 ------- null} h -t 2.71893 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4783 -a 0 -x {9.0 10.0 2396 ------- null} r -t 2.71942 -s 0 -d 9 -p ack -e 40 -c 0 -i 4778 -a 0 -x {10.0 9.0 2384 ------- null} + -t 2.71942 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4789 -a 0 -x {9.0 10.0 2399 ------- null} - -t 2.71942 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4789 -a 0 -x {9.0 10.0 2399 ------- null} h -t 2.71942 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4789 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.71946 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4775 -a 0 -x {9.0 10.0 2392 ------- null} - -t 2.71946 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4775 -a 0 -x {9.0 10.0 2392 ------- null} h -t 2.71946 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4775 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.71952 -s 0 -d 9 -p ack -e 40 -c 0 -i 4782 -a 0 -x {10.0 9.0 2386 ------- null} - -t 2.71952 -s 0 -d 9 -p ack -e 40 -c 0 -i 4782 -a 0 -x {10.0 9.0 2386 ------- null} h -t 2.71952 -s 0 -d 9 -p ack -e 40 -c 0 -i 4782 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.71978 -s 10 -d 7 -p ack -e 40 -c 0 -i 4786 -a 0 -x {10.0 9.0 2388 ------- null} + -t 2.71978 -s 7 -d 0 -p ack -e 40 -c 0 -i 4786 -a 0 -x {10.0 9.0 2388 ------- null} h -t 2.71978 -s 7 -d 8 -p ack -e 40 -c 0 -i 4786 -a 0 -x {10.0 9.0 2388 ------- null} r -t 2.71992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4771 -a 0 -x {9.0 10.0 2390 ------- null} + -t 2.71992 -s 10 -d 7 -p ack -e 40 -c 0 -i 4790 -a 0 -x {10.0 9.0 2390 ------- null} - -t 2.71992 -s 10 -d 7 -p ack -e 40 -c 0 -i 4790 -a 0 -x {10.0 9.0 2390 ------- null} h -t 2.71992 -s 10 -d 7 -p ack -e 40 -c 0 -i 4790 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.71997 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4785 -a 0 -x {9.0 10.0 2397 ------- null} + -t 2.71997 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4785 -a 0 -x {9.0 10.0 2397 ------- null} h -t 2.71997 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4785 -a 0 -x {9.0 10.0 2397 ------- null} r -t 2.7205 -s 0 -d 9 -p ack -e 40 -c 0 -i 4780 -a 0 -x {10.0 9.0 2385 ------- null} + -t 2.7205 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4791 -a 0 -x {9.0 10.0 2400 ------- null} - -t 2.7205 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4791 -a 0 -x {9.0 10.0 2400 ------- null} h -t 2.7205 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4791 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.72054 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4777 -a 0 -x {9.0 10.0 2393 ------- null} - -t 2.72054 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4777 -a 0 -x {9.0 10.0 2393 ------- null} h -t 2.72054 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4777 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.7208 -s 0 -d 9 -p ack -e 40 -c 0 -i 4784 -a 0 -x {10.0 9.0 2387 ------- null} - -t 2.7208 -s 0 -d 9 -p ack -e 40 -c 0 -i 4784 -a 0 -x {10.0 9.0 2387 ------- null} h -t 2.7208 -s 0 -d 9 -p ack -e 40 -c 0 -i 4784 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.72086 -s 10 -d 7 -p ack -e 40 -c 0 -i 4788 -a 0 -x {10.0 9.0 2389 ------- null} + -t 2.72086 -s 7 -d 0 -p ack -e 40 -c 0 -i 4788 -a 0 -x {10.0 9.0 2389 ------- null} h -t 2.72086 -s 7 -d 8 -p ack -e 40 -c 0 -i 4788 -a 0 -x {10.0 9.0 2389 ------- null} r -t 2.72104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4787 -a 0 -x {9.0 10.0 2398 ------- null} + -t 2.72104 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4787 -a 0 -x {9.0 10.0 2398 ------- null} h -t 2.72104 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4787 -a 0 -x {9.0 10.0 2398 ------- null} r -t 2.72117 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4773 -a 0 -x {9.0 10.0 2391 ------- null} + -t 2.72117 -s 10 -d 7 -p ack -e 40 -c 0 -i 4792 -a 0 -x {10.0 9.0 2391 ------- null} - -t 2.72117 -s 10 -d 7 -p ack -e 40 -c 0 -i 4792 -a 0 -x {10.0 9.0 2391 ------- null} h -t 2.72117 -s 10 -d 7 -p ack -e 40 -c 0 -i 4792 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.72155 -s 0 -d 9 -p ack -e 40 -c 0 -i 4782 -a 0 -x {10.0 9.0 2386 ------- null} + -t 2.72155 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4793 -a 0 -x {9.0 10.0 2401 ------- null} - -t 2.72155 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4793 -a 0 -x {9.0 10.0 2401 ------- null} h -t 2.72155 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4793 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.72186 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4779 -a 0 -x {9.0 10.0 2394 ------- null} - -t 2.72186 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4779 -a 0 -x {9.0 10.0 2394 ------- null} h -t 2.72186 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4779 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.72195 -s 10 -d 7 -p ack -e 40 -c 0 -i 4790 -a 0 -x {10.0 9.0 2390 ------- null} + -t 2.72195 -s 7 -d 0 -p ack -e 40 -c 0 -i 4790 -a 0 -x {10.0 9.0 2390 ------- null} h -t 2.72195 -s 7 -d 8 -p ack -e 40 -c 0 -i 4790 -a 0 -x {10.0 9.0 2390 ------- null} + -t 2.72213 -s 0 -d 9 -p ack -e 40 -c 0 -i 4786 -a 0 -x {10.0 9.0 2388 ------- null} - -t 2.72213 -s 0 -d 9 -p ack -e 40 -c 0 -i 4786 -a 0 -x {10.0 9.0 2388 ------- null} h -t 2.72213 -s 0 -d 9 -p ack -e 40 -c 0 -i 4786 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.72222 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4789 -a 0 -x {9.0 10.0 2399 ------- null} + -t 2.72222 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4789 -a 0 -x {9.0 10.0 2399 ------- null} h -t 2.72222 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4789 -a 0 -x {9.0 10.0 2399 ------- null} r -t 2.72226 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4775 -a 0 -x {9.0 10.0 2392 ------- null} + -t 2.72226 -s 10 -d 7 -p ack -e 40 -c 0 -i 4794 -a 0 -x {10.0 9.0 2392 ------- null} - -t 2.72226 -s 10 -d 7 -p ack -e 40 -c 0 -i 4794 -a 0 -x {10.0 9.0 2392 ------- null} h -t 2.72226 -s 10 -d 7 -p ack -e 40 -c 0 -i 4794 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.72283 -s 0 -d 9 -p ack -e 40 -c 0 -i 4784 -a 0 -x {10.0 9.0 2387 ------- null} + -t 2.72283 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4795 -a 0 -x {9.0 10.0 2402 ------- null} - -t 2.72283 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4795 -a 0 -x {9.0 10.0 2402 ------- null} h -t 2.72283 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4795 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.72306 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4781 -a 0 -x {9.0 10.0 2395 ------- null} - -t 2.72306 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4781 -a 0 -x {9.0 10.0 2395 ------- null} h -t 2.72306 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4781 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.72314 -s 0 -d 9 -p ack -e 40 -c 0 -i 4788 -a 0 -x {10.0 9.0 2389 ------- null} - -t 2.72314 -s 0 -d 9 -p ack -e 40 -c 0 -i 4788 -a 0 -x {10.0 9.0 2389 ------- null} h -t 2.72314 -s 0 -d 9 -p ack -e 40 -c 0 -i 4788 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.7232 -s 10 -d 7 -p ack -e 40 -c 0 -i 4792 -a 0 -x {10.0 9.0 2391 ------- null} + -t 2.7232 -s 7 -d 0 -p ack -e 40 -c 0 -i 4792 -a 0 -x {10.0 9.0 2391 ------- null} h -t 2.7232 -s 7 -d 8 -p ack -e 40 -c 0 -i 4792 -a 0 -x {10.0 9.0 2391 ------- null} r -t 2.7233 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4791 -a 0 -x {9.0 10.0 2400 ------- null} + -t 2.7233 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4791 -a 0 -x {9.0 10.0 2400 ------- null} h -t 2.7233 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4791 -a 0 -x {9.0 10.0 2400 ------- null} r -t 2.72334 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4777 -a 0 -x {9.0 10.0 2393 ------- null} + -t 2.72334 -s 10 -d 7 -p ack -e 40 -c 0 -i 4796 -a 0 -x {10.0 9.0 2393 ------- null} - -t 2.72334 -s 10 -d 7 -p ack -e 40 -c 0 -i 4796 -a 0 -x {10.0 9.0 2393 ------- null} h -t 2.72334 -s 10 -d 7 -p ack -e 40 -c 0 -i 4796 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.72414 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4783 -a 0 -x {9.0 10.0 2396 ------- null} - -t 2.72414 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4783 -a 0 -x {9.0 10.0 2396 ------- null} h -t 2.72414 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4783 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.72416 -s 0 -d 9 -p ack -e 40 -c 0 -i 4786 -a 0 -x {10.0 9.0 2388 ------- null} + -t 2.72416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4797 -a 0 -x {9.0 10.0 2403 ------- null} - -t 2.72416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4797 -a 0 -x {9.0 10.0 2403 ------- null} h -t 2.72416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4797 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.72429 -s 10 -d 7 -p ack -e 40 -c 0 -i 4794 -a 0 -x {10.0 9.0 2392 ------- null} + -t 2.72429 -s 7 -d 0 -p ack -e 40 -c 0 -i 4794 -a 0 -x {10.0 9.0 2392 ------- null} h -t 2.72429 -s 7 -d 8 -p ack -e 40 -c 0 -i 4794 -a 0 -x {10.0 9.0 2392 ------- null} r -t 2.72435 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4793 -a 0 -x {9.0 10.0 2401 ------- null} + -t 2.72435 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4793 -a 0 -x {9.0 10.0 2401 ------- null} h -t 2.72435 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4793 -a 0 -x {9.0 10.0 2401 ------- null} + -t 2.72442 -s 0 -d 9 -p ack -e 40 -c 0 -i 4790 -a 0 -x {10.0 9.0 2390 ------- null} - -t 2.72442 -s 0 -d 9 -p ack -e 40 -c 0 -i 4790 -a 0 -x {10.0 9.0 2390 ------- null} h -t 2.72442 -s 0 -d 9 -p ack -e 40 -c 0 -i 4790 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.72466 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4779 -a 0 -x {9.0 10.0 2394 ------- null} + -t 2.72466 -s 10 -d 7 -p ack -e 40 -c 0 -i 4798 -a 0 -x {10.0 9.0 2394 ------- null} - -t 2.72466 -s 10 -d 7 -p ack -e 40 -c 0 -i 4798 -a 0 -x {10.0 9.0 2394 ------- null} h -t 2.72466 -s 10 -d 7 -p ack -e 40 -c 0 -i 4798 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.72517 -s 0 -d 9 -p ack -e 40 -c 0 -i 4788 -a 0 -x {10.0 9.0 2389 ------- null} + -t 2.72517 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4799 -a 0 -x {9.0 10.0 2404 ------- null} - -t 2.72517 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4799 -a 0 -x {9.0 10.0 2404 ------- null} h -t 2.72517 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4799 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.72533 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4785 -a 0 -x {9.0 10.0 2397 ------- null} - -t 2.72533 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4785 -a 0 -x {9.0 10.0 2397 ------- null} h -t 2.72533 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4785 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.72538 -s 10 -d 7 -p ack -e 40 -c 0 -i 4796 -a 0 -x {10.0 9.0 2393 ------- null} + -t 2.72538 -s 7 -d 0 -p ack -e 40 -c 0 -i 4796 -a 0 -x {10.0 9.0 2393 ------- null} h -t 2.72538 -s 7 -d 8 -p ack -e 40 -c 0 -i 4796 -a 0 -x {10.0 9.0 2393 ------- null} + -t 2.72544 -s 0 -d 9 -p ack -e 40 -c 0 -i 4792 -a 0 -x {10.0 9.0 2391 ------- null} - -t 2.72544 -s 0 -d 9 -p ack -e 40 -c 0 -i 4792 -a 0 -x {10.0 9.0 2391 ------- null} h -t 2.72544 -s 0 -d 9 -p ack -e 40 -c 0 -i 4792 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.72563 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4795 -a 0 -x {9.0 10.0 2402 ------- null} + -t 2.72563 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4795 -a 0 -x {9.0 10.0 2402 ------- null} h -t 2.72563 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4795 -a 0 -x {9.0 10.0 2402 ------- null} r -t 2.72586 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4781 -a 0 -x {9.0 10.0 2395 ------- null} + -t 2.72586 -s 10 -d 7 -p ack -e 40 -c 0 -i 4800 -a 0 -x {10.0 9.0 2395 ------- null} - -t 2.72586 -s 10 -d 7 -p ack -e 40 -c 0 -i 4800 -a 0 -x {10.0 9.0 2395 ------- null} h -t 2.72586 -s 10 -d 7 -p ack -e 40 -c 0 -i 4800 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.72642 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4787 -a 0 -x {9.0 10.0 2398 ------- null} - -t 2.72642 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4787 -a 0 -x {9.0 10.0 2398 ------- null} h -t 2.72642 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4787 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.72645 -s 0 -d 9 -p ack -e 40 -c 0 -i 4790 -a 0 -x {10.0 9.0 2390 ------- null} + -t 2.72645 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4801 -a 0 -x {9.0 10.0 2405 ------- null} - -t 2.72645 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4801 -a 0 -x {9.0 10.0 2405 ------- null} h -t 2.72645 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4801 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.72654 -s 0 -d 9 -p ack -e 40 -c 0 -i 4794 -a 0 -x {10.0 9.0 2392 ------- null} - -t 2.72654 -s 0 -d 9 -p ack -e 40 -c 0 -i 4794 -a 0 -x {10.0 9.0 2392 ------- null} h -t 2.72654 -s 0 -d 9 -p ack -e 40 -c 0 -i 4794 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.72669 -s 10 -d 7 -p ack -e 40 -c 0 -i 4798 -a 0 -x {10.0 9.0 2394 ------- null} + -t 2.72669 -s 7 -d 0 -p ack -e 40 -c 0 -i 4798 -a 0 -x {10.0 9.0 2394 ------- null} h -t 2.72669 -s 7 -d 8 -p ack -e 40 -c 0 -i 4798 -a 0 -x {10.0 9.0 2394 ------- null} r -t 2.72694 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4783 -a 0 -x {9.0 10.0 2396 ------- null} + -t 2.72694 -s 10 -d 7 -p ack -e 40 -c 0 -i 4802 -a 0 -x {10.0 9.0 2396 ------- null} - -t 2.72694 -s 10 -d 7 -p ack -e 40 -c 0 -i 4802 -a 0 -x {10.0 9.0 2396 ------- null} h -t 2.72694 -s 10 -d 7 -p ack -e 40 -c 0 -i 4802 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.72696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4797 -a 0 -x {9.0 10.0 2403 ------- null} + -t 2.72696 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4797 -a 0 -x {9.0 10.0 2403 ------- null} h -t 2.72696 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4797 -a 0 -x {9.0 10.0 2403 ------- null} r -t 2.72747 -s 0 -d 9 -p ack -e 40 -c 0 -i 4792 -a 0 -x {10.0 9.0 2391 ------- null} + -t 2.72747 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4803 -a 0 -x {9.0 10.0 2406 ------- null} - -t 2.72747 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4803 -a 0 -x {9.0 10.0 2406 ------- null} h -t 2.72747 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4803 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.7275 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4789 -a 0 -x {9.0 10.0 2399 ------- null} - -t 2.7275 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4789 -a 0 -x {9.0 10.0 2399 ------- null} h -t 2.7275 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4789 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.72763 -s 0 -d 9 -p ack -e 40 -c 0 -i 4796 -a 0 -x {10.0 9.0 2393 ------- null} - -t 2.72763 -s 0 -d 9 -p ack -e 40 -c 0 -i 4796 -a 0 -x {10.0 9.0 2393 ------- null} h -t 2.72763 -s 0 -d 9 -p ack -e 40 -c 0 -i 4796 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.72789 -s 10 -d 7 -p ack -e 40 -c 0 -i 4800 -a 0 -x {10.0 9.0 2395 ------- null} + -t 2.72789 -s 7 -d 0 -p ack -e 40 -c 0 -i 4800 -a 0 -x {10.0 9.0 2395 ------- null} h -t 2.72789 -s 7 -d 8 -p ack -e 40 -c 0 -i 4800 -a 0 -x {10.0 9.0 2395 ------- null} r -t 2.72797 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4799 -a 0 -x {9.0 10.0 2404 ------- null} + -t 2.72797 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4799 -a 0 -x {9.0 10.0 2404 ------- null} h -t 2.72797 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4799 -a 0 -x {9.0 10.0 2404 ------- null} r -t 2.72813 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4785 -a 0 -x {9.0 10.0 2397 ------- null} + -t 2.72813 -s 10 -d 7 -p ack -e 40 -c 0 -i 4804 -a 0 -x {10.0 9.0 2397 ------- null} - -t 2.72813 -s 10 -d 7 -p ack -e 40 -c 0 -i 4804 -a 0 -x {10.0 9.0 2397 ------- null} h -t 2.72813 -s 10 -d 7 -p ack -e 40 -c 0 -i 4804 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.72858 -s 0 -d 9 -p ack -e 40 -c 0 -i 4794 -a 0 -x {10.0 9.0 2392 ------- null} + -t 2.72858 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4805 -a 0 -x {9.0 10.0 2407 ------- null} - -t 2.72858 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4805 -a 0 -x {9.0 10.0 2407 ------- null} h -t 2.72858 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4805 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.72859 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4791 -a 0 -x {9.0 10.0 2400 ------- null} - -t 2.72859 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4791 -a 0 -x {9.0 10.0 2400 ------- null} h -t 2.72859 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4791 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.72869 -s 0 -d 9 -p ack -e 40 -c 0 -i 4798 -a 0 -x {10.0 9.0 2394 ------- null} - -t 2.72869 -s 0 -d 9 -p ack -e 40 -c 0 -i 4798 -a 0 -x {10.0 9.0 2394 ------- null} h -t 2.72869 -s 0 -d 9 -p ack -e 40 -c 0 -i 4798 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.72898 -s 10 -d 7 -p ack -e 40 -c 0 -i 4802 -a 0 -x {10.0 9.0 2396 ------- null} + -t 2.72898 -s 7 -d 0 -p ack -e 40 -c 0 -i 4802 -a 0 -x {10.0 9.0 2396 ------- null} h -t 2.72898 -s 7 -d 8 -p ack -e 40 -c 0 -i 4802 -a 0 -x {10.0 9.0 2396 ------- null} r -t 2.72922 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4787 -a 0 -x {9.0 10.0 2398 ------- null} + -t 2.72922 -s 10 -d 7 -p ack -e 40 -c 0 -i 4806 -a 0 -x {10.0 9.0 2398 ------- null} - -t 2.72922 -s 10 -d 7 -p ack -e 40 -c 0 -i 4806 -a 0 -x {10.0 9.0 2398 ------- null} h -t 2.72922 -s 10 -d 7 -p ack -e 40 -c 0 -i 4806 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.72925 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4801 -a 0 -x {9.0 10.0 2405 ------- null} + -t 2.72925 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4801 -a 0 -x {9.0 10.0 2405 ------- null} h -t 2.72925 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4801 -a 0 -x {9.0 10.0 2405 ------- null} r -t 2.72966 -s 0 -d 9 -p ack -e 40 -c 0 -i 4796 -a 0 -x {10.0 9.0 2393 ------- null} + -t 2.72966 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4807 -a 0 -x {9.0 10.0 2408 ------- null} - -t 2.72966 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4807 -a 0 -x {9.0 10.0 2408 ------- null} h -t 2.72966 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4807 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.72968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4793 -a 0 -x {9.0 10.0 2401 ------- null} - -t 2.72968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4793 -a 0 -x {9.0 10.0 2401 ------- null} h -t 2.72968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4793 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.72987 -s 0 -d 9 -p ack -e 40 -c 0 -i 4800 -a 0 -x {10.0 9.0 2395 ------- null} - -t 2.72987 -s 0 -d 9 -p ack -e 40 -c 0 -i 4800 -a 0 -x {10.0 9.0 2395 ------- null} h -t 2.72987 -s 0 -d 9 -p ack -e 40 -c 0 -i 4800 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.73016 -s 10 -d 7 -p ack -e 40 -c 0 -i 4804 -a 0 -x {10.0 9.0 2397 ------- null} + -t 2.73016 -s 7 -d 0 -p ack -e 40 -c 0 -i 4804 -a 0 -x {10.0 9.0 2397 ------- null} h -t 2.73016 -s 7 -d 8 -p ack -e 40 -c 0 -i 4804 -a 0 -x {10.0 9.0 2397 ------- null} r -t 2.73027 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4803 -a 0 -x {9.0 10.0 2406 ------- null} + -t 2.73027 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4803 -a 0 -x {9.0 10.0 2406 ------- null} h -t 2.73027 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4803 -a 0 -x {9.0 10.0 2406 ------- null} r -t 2.7303 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4789 -a 0 -x {9.0 10.0 2399 ------- null} + -t 2.7303 -s 10 -d 7 -p ack -e 40 -c 0 -i 4808 -a 0 -x {10.0 9.0 2399 ------- null} - -t 2.7303 -s 10 -d 7 -p ack -e 40 -c 0 -i 4808 -a 0 -x {10.0 9.0 2399 ------- null} h -t 2.7303 -s 10 -d 7 -p ack -e 40 -c 0 -i 4808 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.73072 -s 0 -d 9 -p ack -e 40 -c 0 -i 4798 -a 0 -x {10.0 9.0 2394 ------- null} + -t 2.73072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4809 -a 0 -x {9.0 10.0 2409 ------- null} - -t 2.73072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4809 -a 0 -x {9.0 10.0 2409 ------- null} h -t 2.73072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4809 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.73077 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4795 -a 0 -x {9.0 10.0 2402 ------- null} - -t 2.73077 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4795 -a 0 -x {9.0 10.0 2402 ------- null} h -t 2.73077 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4795 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.73091 -s 0 -d 9 -p ack -e 40 -c 0 -i 4802 -a 0 -x {10.0 9.0 2396 ------- null} - -t 2.73091 -s 0 -d 9 -p ack -e 40 -c 0 -i 4802 -a 0 -x {10.0 9.0 2396 ------- null} h -t 2.73091 -s 0 -d 9 -p ack -e 40 -c 0 -i 4802 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.73125 -s 10 -d 7 -p ack -e 40 -c 0 -i 4806 -a 0 -x {10.0 9.0 2398 ------- null} + -t 2.73125 -s 7 -d 0 -p ack -e 40 -c 0 -i 4806 -a 0 -x {10.0 9.0 2398 ------- null} h -t 2.73125 -s 7 -d 8 -p ack -e 40 -c 0 -i 4806 -a 0 -x {10.0 9.0 2398 ------- null} r -t 2.73138 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4805 -a 0 -x {9.0 10.0 2407 ------- null} + -t 2.73138 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4805 -a 0 -x {9.0 10.0 2407 ------- null} h -t 2.73138 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4805 -a 0 -x {9.0 10.0 2407 ------- null} r -t 2.73139 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4791 -a 0 -x {9.0 10.0 2400 ------- null} + -t 2.73139 -s 10 -d 7 -p ack -e 40 -c 0 -i 4810 -a 0 -x {10.0 9.0 2400 ------- null} - -t 2.73139 -s 10 -d 7 -p ack -e 40 -c 0 -i 4810 -a 0 -x {10.0 9.0 2400 ------- null} h -t 2.73139 -s 10 -d 7 -p ack -e 40 -c 0 -i 4810 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.73186 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4797 -a 0 -x {9.0 10.0 2403 ------- null} - -t 2.73186 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4797 -a 0 -x {9.0 10.0 2403 ------- null} h -t 2.73186 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4797 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.7319 -s 0 -d 9 -p ack -e 40 -c 0 -i 4800 -a 0 -x {10.0 9.0 2395 ------- null} + -t 2.7319 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4811 -a 0 -x {9.0 10.0 2410 ------- null} - -t 2.7319 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4811 -a 0 -x {9.0 10.0 2410 ------- null} h -t 2.7319 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4811 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.73214 -s 0 -d 9 -p ack -e 40 -c 0 -i 4804 -a 0 -x {10.0 9.0 2397 ------- null} - -t 2.73214 -s 0 -d 9 -p ack -e 40 -c 0 -i 4804 -a 0 -x {10.0 9.0 2397 ------- null} h -t 2.73214 -s 0 -d 9 -p ack -e 40 -c 0 -i 4804 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.73234 -s 10 -d 7 -p ack -e 40 -c 0 -i 4808 -a 0 -x {10.0 9.0 2399 ------- null} + -t 2.73234 -s 7 -d 0 -p ack -e 40 -c 0 -i 4808 -a 0 -x {10.0 9.0 2399 ------- null} h -t 2.73234 -s 7 -d 8 -p ack -e 40 -c 0 -i 4808 -a 0 -x {10.0 9.0 2399 ------- null} r -t 2.73246 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4807 -a 0 -x {9.0 10.0 2408 ------- null} + -t 2.73246 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4807 -a 0 -x {9.0 10.0 2408 ------- null} h -t 2.73246 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4807 -a 0 -x {9.0 10.0 2408 ------- null} r -t 2.73248 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4793 -a 0 -x {9.0 10.0 2401 ------- null} + -t 2.73248 -s 10 -d 7 -p ack -e 40 -c 0 -i 4812 -a 0 -x {10.0 9.0 2401 ------- null} - -t 2.73248 -s 10 -d 7 -p ack -e 40 -c 0 -i 4812 -a 0 -x {10.0 9.0 2401 ------- null} h -t 2.73248 -s 10 -d 7 -p ack -e 40 -c 0 -i 4812 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.73294 -s 0 -d 9 -p ack -e 40 -c 0 -i 4802 -a 0 -x {10.0 9.0 2396 ------- null} + -t 2.73294 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4813 -a 0 -x {9.0 10.0 2411 ------- null} - -t 2.73294 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4813 -a 0 -x {9.0 10.0 2411 ------- null} h -t 2.73294 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4813 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.73302 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4799 -a 0 -x {9.0 10.0 2404 ------- null} - -t 2.73302 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4799 -a 0 -x {9.0 10.0 2404 ------- null} h -t 2.73302 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4799 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.73318 -s 0 -d 9 -p ack -e 40 -c 0 -i 4806 -a 0 -x {10.0 9.0 2398 ------- null} - -t 2.73318 -s 0 -d 9 -p ack -e 40 -c 0 -i 4806 -a 0 -x {10.0 9.0 2398 ------- null} h -t 2.73318 -s 0 -d 9 -p ack -e 40 -c 0 -i 4806 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.73342 -s 10 -d 7 -p ack -e 40 -c 0 -i 4810 -a 0 -x {10.0 9.0 2400 ------- null} + -t 2.73342 -s 7 -d 0 -p ack -e 40 -c 0 -i 4810 -a 0 -x {10.0 9.0 2400 ------- null} h -t 2.73342 -s 7 -d 8 -p ack -e 40 -c 0 -i 4810 -a 0 -x {10.0 9.0 2400 ------- null} r -t 2.73352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4809 -a 0 -x {9.0 10.0 2409 ------- null} + -t 2.73352 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4809 -a 0 -x {9.0 10.0 2409 ------- null} h -t 2.73352 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4809 -a 0 -x {9.0 10.0 2409 ------- null} r -t 2.73357 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4795 -a 0 -x {9.0 10.0 2402 ------- null} + -t 2.73357 -s 10 -d 7 -p ack -e 40 -c 0 -i 4814 -a 0 -x {10.0 9.0 2402 ------- null} - -t 2.73357 -s 10 -d 7 -p ack -e 40 -c 0 -i 4814 -a 0 -x {10.0 9.0 2402 ------- null} h -t 2.73357 -s 10 -d 7 -p ack -e 40 -c 0 -i 4814 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.73411 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4801 -a 0 -x {9.0 10.0 2405 ------- null} - -t 2.73411 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4801 -a 0 -x {9.0 10.0 2405 ------- null} h -t 2.73411 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4801 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.73418 -s 0 -d 9 -p ack -e 40 -c 0 -i 4804 -a 0 -x {10.0 9.0 2397 ------- null} + -t 2.73418 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4815 -a 0 -x {9.0 10.0 2412 ------- null} - -t 2.73418 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4815 -a 0 -x {9.0 10.0 2412 ------- null} h -t 2.73418 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4815 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.73437 -s 0 -d 9 -p ack -e 40 -c 0 -i 4808 -a 0 -x {10.0 9.0 2399 ------- null} - -t 2.73437 -s 0 -d 9 -p ack -e 40 -c 0 -i 4808 -a 0 -x {10.0 9.0 2399 ------- null} h -t 2.73437 -s 0 -d 9 -p ack -e 40 -c 0 -i 4808 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.73451 -s 10 -d 7 -p ack -e 40 -c 0 -i 4812 -a 0 -x {10.0 9.0 2401 ------- null} + -t 2.73451 -s 7 -d 0 -p ack -e 40 -c 0 -i 4812 -a 0 -x {10.0 9.0 2401 ------- null} h -t 2.73451 -s 7 -d 8 -p ack -e 40 -c 0 -i 4812 -a 0 -x {10.0 9.0 2401 ------- null} r -t 2.73466 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4797 -a 0 -x {9.0 10.0 2403 ------- null} + -t 2.73466 -s 10 -d 7 -p ack -e 40 -c 0 -i 4816 -a 0 -x {10.0 9.0 2403 ------- null} - -t 2.73466 -s 10 -d 7 -p ack -e 40 -c 0 -i 4816 -a 0 -x {10.0 9.0 2403 ------- null} h -t 2.73466 -s 10 -d 7 -p ack -e 40 -c 0 -i 4816 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.7347 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4811 -a 0 -x {9.0 10.0 2410 ------- null} + -t 2.7347 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4811 -a 0 -x {9.0 10.0 2410 ------- null} h -t 2.7347 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4811 -a 0 -x {9.0 10.0 2410 ------- null} r -t 2.73522 -s 0 -d 9 -p ack -e 40 -c 0 -i 4806 -a 0 -x {10.0 9.0 2398 ------- null} + -t 2.73522 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4817 -a 0 -x {9.0 10.0 2413 ------- null} - -t 2.73522 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4817 -a 0 -x {9.0 10.0 2413 ------- null} h -t 2.73522 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4817 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.73541 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4803 -a 0 -x {9.0 10.0 2406 ------- null} - -t 2.73541 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4803 -a 0 -x {9.0 10.0 2406 ------- null} h -t 2.73541 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4803 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.73558 -s 0 -d 9 -p ack -e 40 -c 0 -i 4810 -a 0 -x {10.0 9.0 2400 ------- null} - -t 2.73558 -s 0 -d 9 -p ack -e 40 -c 0 -i 4810 -a 0 -x {10.0 9.0 2400 ------- null} h -t 2.73558 -s 0 -d 9 -p ack -e 40 -c 0 -i 4810 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.7356 -s 10 -d 7 -p ack -e 40 -c 0 -i 4814 -a 0 -x {10.0 9.0 2402 ------- null} + -t 2.7356 -s 7 -d 0 -p ack -e 40 -c 0 -i 4814 -a 0 -x {10.0 9.0 2402 ------- null} h -t 2.7356 -s 7 -d 8 -p ack -e 40 -c 0 -i 4814 -a 0 -x {10.0 9.0 2402 ------- null} r -t 2.73574 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4813 -a 0 -x {9.0 10.0 2411 ------- null} + -t 2.73574 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4813 -a 0 -x {9.0 10.0 2411 ------- null} h -t 2.73574 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4813 -a 0 -x {9.0 10.0 2411 ------- null} r -t 2.73582 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4799 -a 0 -x {9.0 10.0 2404 ------- null} + -t 2.73582 -s 10 -d 7 -p ack -e 40 -c 0 -i 4818 -a 0 -x {10.0 9.0 2404 ------- null} - -t 2.73582 -s 10 -d 7 -p ack -e 40 -c 0 -i 4818 -a 0 -x {10.0 9.0 2404 ------- null} h -t 2.73582 -s 10 -d 7 -p ack -e 40 -c 0 -i 4818 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.7364 -s 0 -d 9 -p ack -e 40 -c 0 -i 4808 -a 0 -x {10.0 9.0 2399 ------- null} + -t 2.7364 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4819 -a 0 -x {9.0 10.0 2414 ------- null} - -t 2.7364 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4819 -a 0 -x {9.0 10.0 2414 ------- null} h -t 2.7364 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4819 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.7365 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4805 -a 0 -x {9.0 10.0 2407 ------- null} - -t 2.7365 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4805 -a 0 -x {9.0 10.0 2407 ------- null} h -t 2.7365 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4805 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.73669 -s 10 -d 7 -p ack -e 40 -c 0 -i 4816 -a 0 -x {10.0 9.0 2403 ------- null} + -t 2.73669 -s 7 -d 0 -p ack -e 40 -c 0 -i 4816 -a 0 -x {10.0 9.0 2403 ------- null} h -t 2.73669 -s 7 -d 8 -p ack -e 40 -c 0 -i 4816 -a 0 -x {10.0 9.0 2403 ------- null} + -t 2.73675 -s 0 -d 9 -p ack -e 40 -c 0 -i 4812 -a 0 -x {10.0 9.0 2401 ------- null} - -t 2.73675 -s 0 -d 9 -p ack -e 40 -c 0 -i 4812 -a 0 -x {10.0 9.0 2401 ------- null} h -t 2.73675 -s 0 -d 9 -p ack -e 40 -c 0 -i 4812 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.73691 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4801 -a 0 -x {9.0 10.0 2405 ------- null} + -t 2.73691 -s 10 -d 7 -p ack -e 40 -c 0 -i 4820 -a 0 -x {10.0 9.0 2405 ------- null} - -t 2.73691 -s 10 -d 7 -p ack -e 40 -c 0 -i 4820 -a 0 -x {10.0 9.0 2405 ------- null} h -t 2.73691 -s 10 -d 7 -p ack -e 40 -c 0 -i 4820 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.73698 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4815 -a 0 -x {9.0 10.0 2412 ------- null} + -t 2.73698 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4815 -a 0 -x {9.0 10.0 2412 ------- null} h -t 2.73698 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4815 -a 0 -x {9.0 10.0 2412 ------- null} r -t 2.73762 -s 0 -d 9 -p ack -e 40 -c 0 -i 4810 -a 0 -x {10.0 9.0 2400 ------- null} + -t 2.73762 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4821 -a 0 -x {9.0 10.0 2415 ------- null} - -t 2.73762 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4821 -a 0 -x {9.0 10.0 2415 ------- null} h -t 2.73762 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4821 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.73774 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4807 -a 0 -x {9.0 10.0 2408 ------- null} - -t 2.73774 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4807 -a 0 -x {9.0 10.0 2408 ------- null} h -t 2.73774 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4807 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.73786 -s 10 -d 7 -p ack -e 40 -c 0 -i 4818 -a 0 -x {10.0 9.0 2404 ------- null} + -t 2.73786 -s 7 -d 0 -p ack -e 40 -c 0 -i 4818 -a 0 -x {10.0 9.0 2404 ------- null} h -t 2.73786 -s 7 -d 8 -p ack -e 40 -c 0 -i 4818 -a 0 -x {10.0 9.0 2404 ------- null} + -t 2.73797 -s 0 -d 9 -p ack -e 40 -c 0 -i 4814 -a 0 -x {10.0 9.0 2402 ------- null} - -t 2.73797 -s 0 -d 9 -p ack -e 40 -c 0 -i 4814 -a 0 -x {10.0 9.0 2402 ------- null} h -t 2.73797 -s 0 -d 9 -p ack -e 40 -c 0 -i 4814 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.73802 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4817 -a 0 -x {9.0 10.0 2413 ------- null} + -t 2.73802 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4817 -a 0 -x {9.0 10.0 2413 ------- null} h -t 2.73802 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4817 -a 0 -x {9.0 10.0 2413 ------- null} r -t 2.73821 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4803 -a 0 -x {9.0 10.0 2406 ------- null} + -t 2.73821 -s 10 -d 7 -p ack -e 40 -c 0 -i 4822 -a 0 -x {10.0 9.0 2406 ------- null} - -t 2.73821 -s 10 -d 7 -p ack -e 40 -c 0 -i 4822 -a 0 -x {10.0 9.0 2406 ------- null} h -t 2.73821 -s 10 -d 7 -p ack -e 40 -c 0 -i 4822 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.73878 -s 0 -d 9 -p ack -e 40 -c 0 -i 4812 -a 0 -x {10.0 9.0 2401 ------- null} + -t 2.73878 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4823 -a 0 -x {9.0 10.0 2416 ------- null} - -t 2.73878 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4823 -a 0 -x {9.0 10.0 2416 ------- null} h -t 2.73878 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4823 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.73883 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4809 -a 0 -x {9.0 10.0 2409 ------- null} - -t 2.73883 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4809 -a 0 -x {9.0 10.0 2409 ------- null} h -t 2.73883 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4809 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.73894 -s 10 -d 7 -p ack -e 40 -c 0 -i 4820 -a 0 -x {10.0 9.0 2405 ------- null} + -t 2.73894 -s 7 -d 0 -p ack -e 40 -c 0 -i 4820 -a 0 -x {10.0 9.0 2405 ------- null} h -t 2.73894 -s 7 -d 8 -p ack -e 40 -c 0 -i 4820 -a 0 -x {10.0 9.0 2405 ------- null} + -t 2.7391 -s 0 -d 9 -p ack -e 40 -c 0 -i 4816 -a 0 -x {10.0 9.0 2403 ------- null} - -t 2.7391 -s 0 -d 9 -p ack -e 40 -c 0 -i 4816 -a 0 -x {10.0 9.0 2403 ------- null} h -t 2.7391 -s 0 -d 9 -p ack -e 40 -c 0 -i 4816 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.7392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4819 -a 0 -x {9.0 10.0 2414 ------- null} + -t 2.7392 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4819 -a 0 -x {9.0 10.0 2414 ------- null} h -t 2.7392 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4819 -a 0 -x {9.0 10.0 2414 ------- null} r -t 2.7393 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4805 -a 0 -x {9.0 10.0 2407 ------- null} + -t 2.7393 -s 10 -d 7 -p ack -e 40 -c 0 -i 4824 -a 0 -x {10.0 9.0 2407 ------- null} - -t 2.7393 -s 10 -d 7 -p ack -e 40 -c 0 -i 4824 -a 0 -x {10.0 9.0 2407 ------- null} h -t 2.7393 -s 10 -d 7 -p ack -e 40 -c 0 -i 4824 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.74 -s 0 -d 9 -p ack -e 40 -c 0 -i 4814 -a 0 -x {10.0 9.0 2402 ------- null} + -t 2.74 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4825 -a 0 -x {9.0 10.0 2417 ------- null} - -t 2.74 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4825 -a 0 -x {9.0 10.0 2417 ------- null} h -t 2.74 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4825 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.74 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4811 -a 0 -x {9.0 10.0 2410 ------- null} - -t 2.74 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4811 -a 0 -x {9.0 10.0 2410 ------- null} h -t 2.74 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4811 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.74018 -s 0 -d 9 -p ack -e 40 -c 0 -i 4818 -a 0 -x {10.0 9.0 2404 ------- null} - -t 2.74018 -s 0 -d 9 -p ack -e 40 -c 0 -i 4818 -a 0 -x {10.0 9.0 2404 ------- null} h -t 2.74018 -s 0 -d 9 -p ack -e 40 -c 0 -i 4818 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.74024 -s 10 -d 7 -p ack -e 40 -c 0 -i 4822 -a 0 -x {10.0 9.0 2406 ------- null} + -t 2.74024 -s 7 -d 0 -p ack -e 40 -c 0 -i 4822 -a 0 -x {10.0 9.0 2406 ------- null} h -t 2.74024 -s 7 -d 8 -p ack -e 40 -c 0 -i 4822 -a 0 -x {10.0 9.0 2406 ------- null} r -t 2.74042 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4821 -a 0 -x {9.0 10.0 2415 ------- null} + -t 2.74042 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4821 -a 0 -x {9.0 10.0 2415 ------- null} h -t 2.74042 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4821 -a 0 -x {9.0 10.0 2415 ------- null} r -t 2.74054 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4807 -a 0 -x {9.0 10.0 2408 ------- null} + -t 2.74054 -s 10 -d 7 -p ack -e 40 -c 0 -i 4826 -a 0 -x {10.0 9.0 2408 ------- null} - -t 2.74054 -s 10 -d 7 -p ack -e 40 -c 0 -i 4826 -a 0 -x {10.0 9.0 2408 ------- null} h -t 2.74054 -s 10 -d 7 -p ack -e 40 -c 0 -i 4826 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.74109 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4813 -a 0 -x {9.0 10.0 2411 ------- null} - -t 2.74109 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4813 -a 0 -x {9.0 10.0 2411 ------- null} h -t 2.74109 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4813 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.74114 -s 0 -d 9 -p ack -e 40 -c 0 -i 4816 -a 0 -x {10.0 9.0 2403 ------- null} + -t 2.74114 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4827 -a 0 -x {9.0 10.0 2418 ------- null} - -t 2.74114 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4827 -a 0 -x {9.0 10.0 2418 ------- null} h -t 2.74114 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4827 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.74126 -s 0 -d 9 -p ack -e 40 -c 0 -i 4820 -a 0 -x {10.0 9.0 2405 ------- null} - -t 2.74126 -s 0 -d 9 -p ack -e 40 -c 0 -i 4820 -a 0 -x {10.0 9.0 2405 ------- null} h -t 2.74126 -s 0 -d 9 -p ack -e 40 -c 0 -i 4820 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.74133 -s 10 -d 7 -p ack -e 40 -c 0 -i 4824 -a 0 -x {10.0 9.0 2407 ------- null} + -t 2.74133 -s 7 -d 0 -p ack -e 40 -c 0 -i 4824 -a 0 -x {10.0 9.0 2407 ------- null} h -t 2.74133 -s 7 -d 8 -p ack -e 40 -c 0 -i 4824 -a 0 -x {10.0 9.0 2407 ------- null} r -t 2.74158 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4823 -a 0 -x {9.0 10.0 2416 ------- null} + -t 2.74158 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4823 -a 0 -x {9.0 10.0 2416 ------- null} h -t 2.74158 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4823 -a 0 -x {9.0 10.0 2416 ------- null} r -t 2.74163 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4809 -a 0 -x {9.0 10.0 2409 ------- null} + -t 2.74163 -s 10 -d 7 -p ack -e 40 -c 0 -i 4828 -a 0 -x {10.0 9.0 2409 ------- null} - -t 2.74163 -s 10 -d 7 -p ack -e 40 -c 0 -i 4828 -a 0 -x {10.0 9.0 2409 ------- null} h -t 2.74163 -s 10 -d 7 -p ack -e 40 -c 0 -i 4828 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.74218 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4815 -a 0 -x {9.0 10.0 2412 ------- null} - -t 2.74218 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4815 -a 0 -x {9.0 10.0 2412 ------- null} h -t 2.74218 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4815 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.74221 -s 0 -d 9 -p ack -e 40 -c 0 -i 4818 -a 0 -x {10.0 9.0 2404 ------- null} + -t 2.74221 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4829 -a 0 -x {9.0 10.0 2419 ------- null} - -t 2.74221 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4829 -a 0 -x {9.0 10.0 2419 ------- null} h -t 2.74221 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4829 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.74237 -s 0 -d 9 -p ack -e 40 -c 0 -i 4822 -a 0 -x {10.0 9.0 2406 ------- null} - -t 2.74237 -s 0 -d 9 -p ack -e 40 -c 0 -i 4822 -a 0 -x {10.0 9.0 2406 ------- null} h -t 2.74237 -s 0 -d 9 -p ack -e 40 -c 0 -i 4822 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.74258 -s 10 -d 7 -p ack -e 40 -c 0 -i 4826 -a 0 -x {10.0 9.0 2408 ------- null} + -t 2.74258 -s 7 -d 0 -p ack -e 40 -c 0 -i 4826 -a 0 -x {10.0 9.0 2408 ------- null} h -t 2.74258 -s 7 -d 8 -p ack -e 40 -c 0 -i 4826 -a 0 -x {10.0 9.0 2408 ------- null} r -t 2.7428 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4825 -a 0 -x {9.0 10.0 2417 ------- null} + -t 2.7428 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4825 -a 0 -x {9.0 10.0 2417 ------- null} h -t 2.7428 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4825 -a 0 -x {9.0 10.0 2417 ------- null} r -t 2.7428 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4811 -a 0 -x {9.0 10.0 2410 ------- null} + -t 2.7428 -s 10 -d 7 -p ack -e 40 -c 0 -i 4830 -a 0 -x {10.0 9.0 2410 ------- null} - -t 2.7428 -s 10 -d 7 -p ack -e 40 -c 0 -i 4830 -a 0 -x {10.0 9.0 2410 ------- null} h -t 2.7428 -s 10 -d 7 -p ack -e 40 -c 0 -i 4830 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.74326 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4817 -a 0 -x {9.0 10.0 2413 ------- null} - -t 2.74326 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4817 -a 0 -x {9.0 10.0 2413 ------- null} h -t 2.74326 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4817 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.7433 -s 0 -d 9 -p ack -e 40 -c 0 -i 4820 -a 0 -x {10.0 9.0 2405 ------- null} + -t 2.7433 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4831 -a 0 -x {9.0 10.0 2420 ------- null} - -t 2.7433 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4831 -a 0 -x {9.0 10.0 2420 ------- null} h -t 2.7433 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4831 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.74352 -s 0 -d 9 -p ack -e 40 -c 0 -i 4824 -a 0 -x {10.0 9.0 2407 ------- null} - -t 2.74352 -s 0 -d 9 -p ack -e 40 -c 0 -i 4824 -a 0 -x {10.0 9.0 2407 ------- null} h -t 2.74352 -s 0 -d 9 -p ack -e 40 -c 0 -i 4824 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.74366 -s 10 -d 7 -p ack -e 40 -c 0 -i 4828 -a 0 -x {10.0 9.0 2409 ------- null} + -t 2.74366 -s 7 -d 0 -p ack -e 40 -c 0 -i 4828 -a 0 -x {10.0 9.0 2409 ------- null} h -t 2.74366 -s 7 -d 8 -p ack -e 40 -c 0 -i 4828 -a 0 -x {10.0 9.0 2409 ------- null} r -t 2.74389 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4813 -a 0 -x {9.0 10.0 2411 ------- null} + -t 2.74389 -s 10 -d 7 -p ack -e 40 -c 0 -i 4832 -a 0 -x {10.0 9.0 2411 ------- null} - -t 2.74389 -s 10 -d 7 -p ack -e 40 -c 0 -i 4832 -a 0 -x {10.0 9.0 2411 ------- null} h -t 2.74389 -s 10 -d 7 -p ack -e 40 -c 0 -i 4832 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.74394 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4827 -a 0 -x {9.0 10.0 2418 ------- null} + -t 2.74394 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4827 -a 0 -x {9.0 10.0 2418 ------- null} h -t 2.74394 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4827 -a 0 -x {9.0 10.0 2418 ------- null} r -t 2.7444 -s 0 -d 9 -p ack -e 40 -c 0 -i 4822 -a 0 -x {10.0 9.0 2406 ------- null} + -t 2.7444 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4833 -a 0 -x {9.0 10.0 2421 ------- null} - -t 2.7444 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4833 -a 0 -x {9.0 10.0 2421 ------- null} h -t 2.7444 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4833 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.74443 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4819 -a 0 -x {9.0 10.0 2414 ------- null} - -t 2.74443 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4819 -a 0 -x {9.0 10.0 2414 ------- null} h -t 2.74443 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4819 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.74459 -s 0 -d 9 -p ack -e 40 -c 0 -i 4826 -a 0 -x {10.0 9.0 2408 ------- null} - -t 2.74459 -s 0 -d 9 -p ack -e 40 -c 0 -i 4826 -a 0 -x {10.0 9.0 2408 ------- null} h -t 2.74459 -s 0 -d 9 -p ack -e 40 -c 0 -i 4826 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.74483 -s 10 -d 7 -p ack -e 40 -c 0 -i 4830 -a 0 -x {10.0 9.0 2410 ------- null} + -t 2.74483 -s 7 -d 0 -p ack -e 40 -c 0 -i 4830 -a 0 -x {10.0 9.0 2410 ------- null} h -t 2.74483 -s 7 -d 8 -p ack -e 40 -c 0 -i 4830 -a 0 -x {10.0 9.0 2410 ------- null} r -t 2.74498 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4815 -a 0 -x {9.0 10.0 2412 ------- null} + -t 2.74498 -s 10 -d 7 -p ack -e 40 -c 0 -i 4834 -a 0 -x {10.0 9.0 2412 ------- null} - -t 2.74498 -s 10 -d 7 -p ack -e 40 -c 0 -i 4834 -a 0 -x {10.0 9.0 2412 ------- null} h -t 2.74498 -s 10 -d 7 -p ack -e 40 -c 0 -i 4834 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.74501 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4829 -a 0 -x {9.0 10.0 2419 ------- null} + -t 2.74501 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4829 -a 0 -x {9.0 10.0 2419 ------- null} h -t 2.74501 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4829 -a 0 -x {9.0 10.0 2419 ------- null} + -t 2.74552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4821 -a 0 -x {9.0 10.0 2415 ------- null} - -t 2.74552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4821 -a 0 -x {9.0 10.0 2415 ------- null} h -t 2.74552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4821 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.74555 -s 0 -d 9 -p ack -e 40 -c 0 -i 4824 -a 0 -x {10.0 9.0 2407 ------- null} + -t 2.74555 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4835 -a 0 -x {9.0 10.0 2422 ------- null} - -t 2.74555 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4835 -a 0 -x {9.0 10.0 2422 ------- null} h -t 2.74555 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4835 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.74571 -s 0 -d 9 -p ack -e 40 -c 0 -i 4828 -a 0 -x {10.0 9.0 2409 ------- null} - -t 2.74571 -s 0 -d 9 -p ack -e 40 -c 0 -i 4828 -a 0 -x {10.0 9.0 2409 ------- null} h -t 2.74571 -s 0 -d 9 -p ack -e 40 -c 0 -i 4828 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.74592 -s 10 -d 7 -p ack -e 40 -c 0 -i 4832 -a 0 -x {10.0 9.0 2411 ------- null} + -t 2.74592 -s 7 -d 0 -p ack -e 40 -c 0 -i 4832 -a 0 -x {10.0 9.0 2411 ------- null} h -t 2.74592 -s 7 -d 8 -p ack -e 40 -c 0 -i 4832 -a 0 -x {10.0 9.0 2411 ------- null} r -t 2.74606 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4817 -a 0 -x {9.0 10.0 2413 ------- null} + -t 2.74606 -s 10 -d 7 -p ack -e 40 -c 0 -i 4836 -a 0 -x {10.0 9.0 2413 ------- null} - -t 2.74606 -s 10 -d 7 -p ack -e 40 -c 0 -i 4836 -a 0 -x {10.0 9.0 2413 ------- null} h -t 2.74606 -s 10 -d 7 -p ack -e 40 -c 0 -i 4836 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.7461 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4831 -a 0 -x {9.0 10.0 2420 ------- null} + -t 2.7461 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4831 -a 0 -x {9.0 10.0 2420 ------- null} h -t 2.7461 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4831 -a 0 -x {9.0 10.0 2420 ------- null} + -t 2.74661 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4823 -a 0 -x {9.0 10.0 2416 ------- null} - -t 2.74661 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4823 -a 0 -x {9.0 10.0 2416 ------- null} h -t 2.74661 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4823 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.74662 -s 0 -d 9 -p ack -e 40 -c 0 -i 4826 -a 0 -x {10.0 9.0 2408 ------- null} + -t 2.74662 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4837 -a 0 -x {9.0 10.0 2423 ------- null} - -t 2.74662 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4837 -a 0 -x {9.0 10.0 2423 ------- null} h -t 2.74662 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4837 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.74672 -s 0 -d 9 -p ack -e 40 -c 0 -i 4830 -a 0 -x {10.0 9.0 2410 ------- null} - -t 2.74672 -s 0 -d 9 -p ack -e 40 -c 0 -i 4830 -a 0 -x {10.0 9.0 2410 ------- null} h -t 2.74672 -s 0 -d 9 -p ack -e 40 -c 0 -i 4830 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.74701 -s 10 -d 7 -p ack -e 40 -c 0 -i 4834 -a 0 -x {10.0 9.0 2412 ------- null} + -t 2.74701 -s 7 -d 0 -p ack -e 40 -c 0 -i 4834 -a 0 -x {10.0 9.0 2412 ------- null} h -t 2.74701 -s 7 -d 8 -p ack -e 40 -c 0 -i 4834 -a 0 -x {10.0 9.0 2412 ------- null} r -t 2.7472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4833 -a 0 -x {9.0 10.0 2421 ------- null} + -t 2.7472 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4833 -a 0 -x {9.0 10.0 2421 ------- null} h -t 2.7472 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4833 -a 0 -x {9.0 10.0 2421 ------- null} r -t 2.74723 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4819 -a 0 -x {9.0 10.0 2414 ------- null} + -t 2.74723 -s 10 -d 7 -p ack -e 40 -c 0 -i 4838 -a 0 -x {10.0 9.0 2414 ------- null} - -t 2.74723 -s 10 -d 7 -p ack -e 40 -c 0 -i 4838 -a 0 -x {10.0 9.0 2414 ------- null} h -t 2.74723 -s 10 -d 7 -p ack -e 40 -c 0 -i 4838 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.7477 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4825 -a 0 -x {9.0 10.0 2417 ------- null} - -t 2.7477 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4825 -a 0 -x {9.0 10.0 2417 ------- null} h -t 2.7477 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4825 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.74774 -s 0 -d 9 -p ack -e 40 -c 0 -i 4828 -a 0 -x {10.0 9.0 2409 ------- null} + -t 2.74774 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4839 -a 0 -x {9.0 10.0 2424 ------- null} - -t 2.74774 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4839 -a 0 -x {9.0 10.0 2424 ------- null} h -t 2.74774 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4839 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.74778 -s 0 -d 9 -p ack -e 40 -c 0 -i 4832 -a 0 -x {10.0 9.0 2411 ------- null} - -t 2.74778 -s 0 -d 9 -p ack -e 40 -c 0 -i 4832 -a 0 -x {10.0 9.0 2411 ------- null} h -t 2.74778 -s 0 -d 9 -p ack -e 40 -c 0 -i 4832 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.7481 -s 10 -d 7 -p ack -e 40 -c 0 -i 4836 -a 0 -x {10.0 9.0 2413 ------- null} + -t 2.7481 -s 7 -d 0 -p ack -e 40 -c 0 -i 4836 -a 0 -x {10.0 9.0 2413 ------- null} h -t 2.7481 -s 7 -d 8 -p ack -e 40 -c 0 -i 4836 -a 0 -x {10.0 9.0 2413 ------- null} r -t 2.74832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4821 -a 0 -x {9.0 10.0 2415 ------- null} + -t 2.74832 -s 10 -d 7 -p ack -e 40 -c 0 -i 4840 -a 0 -x {10.0 9.0 2415 ------- null} - -t 2.74832 -s 10 -d 7 -p ack -e 40 -c 0 -i 4840 -a 0 -x {10.0 9.0 2415 ------- null} h -t 2.74832 -s 10 -d 7 -p ack -e 40 -c 0 -i 4840 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.74835 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4835 -a 0 -x {9.0 10.0 2422 ------- null} + -t 2.74835 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4835 -a 0 -x {9.0 10.0 2422 ------- null} h -t 2.74835 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4835 -a 0 -x {9.0 10.0 2422 ------- null} r -t 2.74875 -s 0 -d 9 -p ack -e 40 -c 0 -i 4830 -a 0 -x {10.0 9.0 2410 ------- null} + -t 2.74875 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4841 -a 0 -x {9.0 10.0 2425 ------- null} - -t 2.74875 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4841 -a 0 -x {9.0 10.0 2425 ------- null} h -t 2.74875 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4841 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.74878 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4827 -a 0 -x {9.0 10.0 2418 ------- null} - -t 2.74878 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4827 -a 0 -x {9.0 10.0 2418 ------- null} h -t 2.74878 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4827 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.74902 -s 0 -d 9 -p ack -e 40 -c 0 -i 4834 -a 0 -x {10.0 9.0 2412 ------- null} - -t 2.74902 -s 0 -d 9 -p ack -e 40 -c 0 -i 4834 -a 0 -x {10.0 9.0 2412 ------- null} h -t 2.74902 -s 0 -d 9 -p ack -e 40 -c 0 -i 4834 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.74926 -s 10 -d 7 -p ack -e 40 -c 0 -i 4838 -a 0 -x {10.0 9.0 2414 ------- null} + -t 2.74926 -s 7 -d 0 -p ack -e 40 -c 0 -i 4838 -a 0 -x {10.0 9.0 2414 ------- null} h -t 2.74926 -s 7 -d 8 -p ack -e 40 -c 0 -i 4838 -a 0 -x {10.0 9.0 2414 ------- null} r -t 2.74941 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4823 -a 0 -x {9.0 10.0 2416 ------- null} + -t 2.74941 -s 10 -d 7 -p ack -e 40 -c 0 -i 4842 -a 0 -x {10.0 9.0 2416 ------- null} - -t 2.74941 -s 10 -d 7 -p ack -e 40 -c 0 -i 4842 -a 0 -x {10.0 9.0 2416 ------- null} h -t 2.74941 -s 10 -d 7 -p ack -e 40 -c 0 -i 4842 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.74942 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4837 -a 0 -x {9.0 10.0 2423 ------- null} + -t 2.74942 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4837 -a 0 -x {9.0 10.0 2423 ------- null} h -t 2.74942 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4837 -a 0 -x {9.0 10.0 2423 ------- null} r -t 2.74981 -s 0 -d 9 -p ack -e 40 -c 0 -i 4832 -a 0 -x {10.0 9.0 2411 ------- null} + -t 2.74981 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4843 -a 0 -x {9.0 10.0 2426 ------- null} - -t 2.74981 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4843 -a 0 -x {9.0 10.0 2426 ------- null} h -t 2.74981 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4843 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.74987 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4829 -a 0 -x {9.0 10.0 2419 ------- null} - -t 2.74987 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4829 -a 0 -x {9.0 10.0 2419 ------- null} h -t 2.74987 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4829 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.75005 -s 0 -d 9 -p ack -e 40 -c 0 -i 4836 -a 0 -x {10.0 9.0 2413 ------- null} - -t 2.75005 -s 0 -d 9 -p ack -e 40 -c 0 -i 4836 -a 0 -x {10.0 9.0 2413 ------- null} h -t 2.75005 -s 0 -d 9 -p ack -e 40 -c 0 -i 4836 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.75035 -s 10 -d 7 -p ack -e 40 -c 0 -i 4840 -a 0 -x {10.0 9.0 2415 ------- null} + -t 2.75035 -s 7 -d 0 -p ack -e 40 -c 0 -i 4840 -a 0 -x {10.0 9.0 2415 ------- null} h -t 2.75035 -s 7 -d 8 -p ack -e 40 -c 0 -i 4840 -a 0 -x {10.0 9.0 2415 ------- null} r -t 2.7505 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4825 -a 0 -x {9.0 10.0 2417 ------- null} + -t 2.7505 -s 10 -d 7 -p ack -e 40 -c 0 -i 4844 -a 0 -x {10.0 9.0 2417 ------- null} - -t 2.7505 -s 10 -d 7 -p ack -e 40 -c 0 -i 4844 -a 0 -x {10.0 9.0 2417 ------- null} h -t 2.7505 -s 10 -d 7 -p ack -e 40 -c 0 -i 4844 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.75054 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4839 -a 0 -x {9.0 10.0 2424 ------- null} + -t 2.75054 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4839 -a 0 -x {9.0 10.0 2424 ------- null} h -t 2.75054 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4839 -a 0 -x {9.0 10.0 2424 ------- null} + -t 2.75096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4831 -a 0 -x {9.0 10.0 2420 ------- null} - -t 2.75096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4831 -a 0 -x {9.0 10.0 2420 ------- null} h -t 2.75096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4831 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.75104 -s 0 -d 9 -p ack -e 40 -c 0 -i 4838 -a 0 -x {10.0 9.0 2414 ------- null} - -t 2.75104 -s 0 -d 9 -p ack -e 40 -c 0 -i 4838 -a 0 -x {10.0 9.0 2414 ------- null} h -t 2.75104 -s 0 -d 9 -p ack -e 40 -c 0 -i 4838 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.75106 -s 0 -d 9 -p ack -e 40 -c 0 -i 4834 -a 0 -x {10.0 9.0 2412 ------- null} + -t 2.75106 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4845 -a 0 -x {9.0 10.0 2427 ------- null} - -t 2.75106 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4845 -a 0 -x {9.0 10.0 2427 ------- null} h -t 2.75106 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4845 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.75144 -s 10 -d 7 -p ack -e 40 -c 0 -i 4842 -a 0 -x {10.0 9.0 2416 ------- null} + -t 2.75144 -s 7 -d 0 -p ack -e 40 -c 0 -i 4842 -a 0 -x {10.0 9.0 2416 ------- null} h -t 2.75144 -s 7 -d 8 -p ack -e 40 -c 0 -i 4842 -a 0 -x {10.0 9.0 2416 ------- null} r -t 2.75155 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4841 -a 0 -x {9.0 10.0 2425 ------- null} + -t 2.75155 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4841 -a 0 -x {9.0 10.0 2425 ------- null} h -t 2.75155 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4841 -a 0 -x {9.0 10.0 2425 ------- null} r -t 2.75158 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4827 -a 0 -x {9.0 10.0 2418 ------- null} + -t 2.75158 -s 10 -d 7 -p ack -e 40 -c 0 -i 4846 -a 0 -x {10.0 9.0 2418 ------- null} - -t 2.75158 -s 10 -d 7 -p ack -e 40 -c 0 -i 4846 -a 0 -x {10.0 9.0 2418 ------- null} h -t 2.75158 -s 10 -d 7 -p ack -e 40 -c 0 -i 4846 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.75205 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4833 -a 0 -x {9.0 10.0 2421 ------- null} - -t 2.75205 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4833 -a 0 -x {9.0 10.0 2421 ------- null} h -t 2.75205 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4833 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.75208 -s 0 -d 9 -p ack -e 40 -c 0 -i 4836 -a 0 -x {10.0 9.0 2413 ------- null} + -t 2.75208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4847 -a 0 -x {9.0 10.0 2428 ------- null} - -t 2.75208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4847 -a 0 -x {9.0 10.0 2428 ------- null} h -t 2.75208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4847 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.75234 -s 0 -d 9 -p ack -e 40 -c 0 -i 4840 -a 0 -x {10.0 9.0 2415 ------- null} - -t 2.75234 -s 0 -d 9 -p ack -e 40 -c 0 -i 4840 -a 0 -x {10.0 9.0 2415 ------- null} h -t 2.75234 -s 0 -d 9 -p ack -e 40 -c 0 -i 4840 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.75253 -s 10 -d 7 -p ack -e 40 -c 0 -i 4844 -a 0 -x {10.0 9.0 2417 ------- null} + -t 2.75253 -s 7 -d 0 -p ack -e 40 -c 0 -i 4844 -a 0 -x {10.0 9.0 2417 ------- null} h -t 2.75253 -s 7 -d 8 -p ack -e 40 -c 0 -i 4844 -a 0 -x {10.0 9.0 2417 ------- null} r -t 2.75261 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4843 -a 0 -x {9.0 10.0 2426 ------- null} + -t 2.75261 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4843 -a 0 -x {9.0 10.0 2426 ------- null} h -t 2.75261 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4843 -a 0 -x {9.0 10.0 2426 ------- null} r -t 2.75267 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4829 -a 0 -x {9.0 10.0 2419 ------- null} + -t 2.75267 -s 10 -d 7 -p ack -e 40 -c 0 -i 4848 -a 0 -x {10.0 9.0 2419 ------- null} - -t 2.75267 -s 10 -d 7 -p ack -e 40 -c 0 -i 4848 -a 0 -x {10.0 9.0 2419 ------- null} h -t 2.75267 -s 10 -d 7 -p ack -e 40 -c 0 -i 4848 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.75307 -s 0 -d 9 -p ack -e 40 -c 0 -i 4838 -a 0 -x {10.0 9.0 2414 ------- null} + -t 2.75307 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4849 -a 0 -x {9.0 10.0 2429 ------- null} - -t 2.75307 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4849 -a 0 -x {9.0 10.0 2429 ------- null} h -t 2.75307 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4849 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.75318 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4835 -a 0 -x {9.0 10.0 2422 ------- null} - -t 2.75318 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4835 -a 0 -x {9.0 10.0 2422 ------- null} h -t 2.75318 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4835 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.75338 -s 0 -d 9 -p ack -e 40 -c 0 -i 4842 -a 0 -x {10.0 9.0 2416 ------- null} - -t 2.75338 -s 0 -d 9 -p ack -e 40 -c 0 -i 4842 -a 0 -x {10.0 9.0 2416 ------- null} h -t 2.75338 -s 0 -d 9 -p ack -e 40 -c 0 -i 4842 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.75362 -s 10 -d 7 -p ack -e 40 -c 0 -i 4846 -a 0 -x {10.0 9.0 2418 ------- null} + -t 2.75362 -s 7 -d 0 -p ack -e 40 -c 0 -i 4846 -a 0 -x {10.0 9.0 2418 ------- null} h -t 2.75362 -s 7 -d 8 -p ack -e 40 -c 0 -i 4846 -a 0 -x {10.0 9.0 2418 ------- null} r -t 2.75376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4831 -a 0 -x {9.0 10.0 2420 ------- null} + -t 2.75376 -s 10 -d 7 -p ack -e 40 -c 0 -i 4850 -a 0 -x {10.0 9.0 2420 ------- null} - -t 2.75376 -s 10 -d 7 -p ack -e 40 -c 0 -i 4850 -a 0 -x {10.0 9.0 2420 ------- null} h -t 2.75376 -s 10 -d 7 -p ack -e 40 -c 0 -i 4850 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.75386 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4845 -a 0 -x {9.0 10.0 2427 ------- null} + -t 2.75386 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4845 -a 0 -x {9.0 10.0 2427 ------- null} h -t 2.75386 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4845 -a 0 -x {9.0 10.0 2427 ------- null} + -t 2.75427 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4837 -a 0 -x {9.0 10.0 2423 ------- null} - -t 2.75427 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4837 -a 0 -x {9.0 10.0 2423 ------- null} h -t 2.75427 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4837 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.75437 -s 0 -d 9 -p ack -e 40 -c 0 -i 4840 -a 0 -x {10.0 9.0 2415 ------- null} + -t 2.75437 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4851 -a 0 -x {9.0 10.0 2430 ------- null} - -t 2.75437 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4851 -a 0 -x {9.0 10.0 2430 ------- null} h -t 2.75437 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4851 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.75453 -s 0 -d 9 -p ack -e 40 -c 0 -i 4844 -a 0 -x {10.0 9.0 2417 ------- null} - -t 2.75453 -s 0 -d 9 -p ack -e 40 -c 0 -i 4844 -a 0 -x {10.0 9.0 2417 ------- null} h -t 2.75453 -s 0 -d 9 -p ack -e 40 -c 0 -i 4844 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.7547 -s 10 -d 7 -p ack -e 40 -c 0 -i 4848 -a 0 -x {10.0 9.0 2419 ------- null} + -t 2.7547 -s 7 -d 0 -p ack -e 40 -c 0 -i 4848 -a 0 -x {10.0 9.0 2419 ------- null} h -t 2.7547 -s 7 -d 8 -p ack -e 40 -c 0 -i 4848 -a 0 -x {10.0 9.0 2419 ------- null} r -t 2.75485 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4833 -a 0 -x {9.0 10.0 2421 ------- null} + -t 2.75485 -s 10 -d 7 -p ack -e 40 -c 0 -i 4852 -a 0 -x {10.0 9.0 2421 ------- null} - -t 2.75485 -s 10 -d 7 -p ack -e 40 -c 0 -i 4852 -a 0 -x {10.0 9.0 2421 ------- null} h -t 2.75485 -s 10 -d 7 -p ack -e 40 -c 0 -i 4852 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.75488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4847 -a 0 -x {9.0 10.0 2428 ------- null} + -t 2.75488 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4847 -a 0 -x {9.0 10.0 2428 ------- null} h -t 2.75488 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4847 -a 0 -x {9.0 10.0 2428 ------- null} r -t 2.75541 -s 0 -d 9 -p ack -e 40 -c 0 -i 4842 -a 0 -x {10.0 9.0 2416 ------- null} + -t 2.75541 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4853 -a 0 -x {9.0 10.0 2431 ------- null} - -t 2.75541 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4853 -a 0 -x {9.0 10.0 2431 ------- null} h -t 2.75541 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4853 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.75544 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4839 -a 0 -x {9.0 10.0 2424 ------- null} - -t 2.75544 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4839 -a 0 -x {9.0 10.0 2424 ------- null} h -t 2.75544 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4839 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.75562 -s 0 -d 9 -p ack -e 40 -c 0 -i 4846 -a 0 -x {10.0 9.0 2418 ------- null} - -t 2.75562 -s 0 -d 9 -p ack -e 40 -c 0 -i 4846 -a 0 -x {10.0 9.0 2418 ------- null} h -t 2.75562 -s 0 -d 9 -p ack -e 40 -c 0 -i 4846 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.75579 -s 10 -d 7 -p ack -e 40 -c 0 -i 4850 -a 0 -x {10.0 9.0 2420 ------- null} + -t 2.75579 -s 7 -d 0 -p ack -e 40 -c 0 -i 4850 -a 0 -x {10.0 9.0 2420 ------- null} h -t 2.75579 -s 7 -d 8 -p ack -e 40 -c 0 -i 4850 -a 0 -x {10.0 9.0 2420 ------- null} r -t 2.75587 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4849 -a 0 -x {9.0 10.0 2429 ------- null} + -t 2.75587 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4849 -a 0 -x {9.0 10.0 2429 ------- null} h -t 2.75587 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4849 -a 0 -x {9.0 10.0 2429 ------- null} r -t 2.75598 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4835 -a 0 -x {9.0 10.0 2422 ------- null} + -t 2.75598 -s 10 -d 7 -p ack -e 40 -c 0 -i 4854 -a 0 -x {10.0 9.0 2422 ------- null} - -t 2.75598 -s 10 -d 7 -p ack -e 40 -c 0 -i 4854 -a 0 -x {10.0 9.0 2422 ------- null} h -t 2.75598 -s 10 -d 7 -p ack -e 40 -c 0 -i 4854 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.75653 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4841 -a 0 -x {9.0 10.0 2425 ------- null} - -t 2.75653 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4841 -a 0 -x {9.0 10.0 2425 ------- null} h -t 2.75653 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4841 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.75656 -s 0 -d 9 -p ack -e 40 -c 0 -i 4844 -a 0 -x {10.0 9.0 2417 ------- null} + -t 2.75656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4855 -a 0 -x {9.0 10.0 2432 ------- null} - -t 2.75656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4855 -a 0 -x {9.0 10.0 2432 ------- null} h -t 2.75656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4855 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.7568 -s 0 -d 9 -p ack -e 40 -c 0 -i 4848 -a 0 -x {10.0 9.0 2419 ------- null} - -t 2.7568 -s 0 -d 9 -p ack -e 40 -c 0 -i 4848 -a 0 -x {10.0 9.0 2419 ------- null} h -t 2.7568 -s 0 -d 9 -p ack -e 40 -c 0 -i 4848 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.75688 -s 10 -d 7 -p ack -e 40 -c 0 -i 4852 -a 0 -x {10.0 9.0 2421 ------- null} + -t 2.75688 -s 7 -d 0 -p ack -e 40 -c 0 -i 4852 -a 0 -x {10.0 9.0 2421 ------- null} h -t 2.75688 -s 7 -d 8 -p ack -e 40 -c 0 -i 4852 -a 0 -x {10.0 9.0 2421 ------- null} r -t 2.75707 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4837 -a 0 -x {9.0 10.0 2423 ------- null} + -t 2.75707 -s 10 -d 7 -p ack -e 40 -c 0 -i 4856 -a 0 -x {10.0 9.0 2423 ------- null} - -t 2.75707 -s 10 -d 7 -p ack -e 40 -c 0 -i 4856 -a 0 -x {10.0 9.0 2423 ------- null} h -t 2.75707 -s 10 -d 7 -p ack -e 40 -c 0 -i 4856 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.75717 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4851 -a 0 -x {9.0 10.0 2430 ------- null} + -t 2.75717 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4851 -a 0 -x {9.0 10.0 2430 ------- null} h -t 2.75717 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4851 -a 0 -x {9.0 10.0 2430 ------- null} r -t 2.75765 -s 0 -d 9 -p ack -e 40 -c 0 -i 4846 -a 0 -x {10.0 9.0 2418 ------- null} + -t 2.75765 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4857 -a 0 -x {9.0 10.0 2433 ------- null} - -t 2.75765 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4857 -a 0 -x {9.0 10.0 2433 ------- null} h -t 2.75765 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4857 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.75774 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4843 -a 0 -x {9.0 10.0 2426 ------- null} - -t 2.75774 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4843 -a 0 -x {9.0 10.0 2426 ------- null} h -t 2.75774 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4843 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.75786 -s 0 -d 9 -p ack -e 40 -c 0 -i 4850 -a 0 -x {10.0 9.0 2420 ------- null} - -t 2.75786 -s 0 -d 9 -p ack -e 40 -c 0 -i 4850 -a 0 -x {10.0 9.0 2420 ------- null} h -t 2.75786 -s 0 -d 9 -p ack -e 40 -c 0 -i 4850 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.75802 -s 10 -d 7 -p ack -e 40 -c 0 -i 4854 -a 0 -x {10.0 9.0 2422 ------- null} + -t 2.75802 -s 7 -d 0 -p ack -e 40 -c 0 -i 4854 -a 0 -x {10.0 9.0 2422 ------- null} h -t 2.75802 -s 7 -d 8 -p ack -e 40 -c 0 -i 4854 -a 0 -x {10.0 9.0 2422 ------- null} r -t 2.75821 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4853 -a 0 -x {9.0 10.0 2431 ------- null} + -t 2.75821 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4853 -a 0 -x {9.0 10.0 2431 ------- null} h -t 2.75821 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4853 -a 0 -x {9.0 10.0 2431 ------- null} r -t 2.75824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4839 -a 0 -x {9.0 10.0 2424 ------- null} + -t 2.75824 -s 10 -d 7 -p ack -e 40 -c 0 -i 4858 -a 0 -x {10.0 9.0 2424 ------- null} - -t 2.75824 -s 10 -d 7 -p ack -e 40 -c 0 -i 4858 -a 0 -x {10.0 9.0 2424 ------- null} h -t 2.75824 -s 10 -d 7 -p ack -e 40 -c 0 -i 4858 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.75883 -s 0 -d 9 -p ack -e 40 -c 0 -i 4848 -a 0 -x {10.0 9.0 2419 ------- null} + -t 2.75883 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4859 -a 0 -x {9.0 10.0 2434 ------- null} - -t 2.75883 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4859 -a 0 -x {9.0 10.0 2434 ------- null} h -t 2.75883 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4859 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.75883 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4845 -a 0 -x {9.0 10.0 2427 ------- null} - -t 2.75883 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4845 -a 0 -x {9.0 10.0 2427 ------- null} h -t 2.75883 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4845 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.75894 -s 0 -d 9 -p ack -e 40 -c 0 -i 4852 -a 0 -x {10.0 9.0 2421 ------- null} - -t 2.75894 -s 0 -d 9 -p ack -e 40 -c 0 -i 4852 -a 0 -x {10.0 9.0 2421 ------- null} h -t 2.75894 -s 0 -d 9 -p ack -e 40 -c 0 -i 4852 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.7591 -s 10 -d 7 -p ack -e 40 -c 0 -i 4856 -a 0 -x {10.0 9.0 2423 ------- null} + -t 2.7591 -s 7 -d 0 -p ack -e 40 -c 0 -i 4856 -a 0 -x {10.0 9.0 2423 ------- null} h -t 2.7591 -s 7 -d 8 -p ack -e 40 -c 0 -i 4856 -a 0 -x {10.0 9.0 2423 ------- null} r -t 2.75933 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4841 -a 0 -x {9.0 10.0 2425 ------- null} + -t 2.75933 -s 10 -d 7 -p ack -e 40 -c 0 -i 4860 -a 0 -x {10.0 9.0 2425 ------- null} - -t 2.75933 -s 10 -d 7 -p ack -e 40 -c 0 -i 4860 -a 0 -x {10.0 9.0 2425 ------- null} h -t 2.75933 -s 10 -d 7 -p ack -e 40 -c 0 -i 4860 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.75936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4855 -a 0 -x {9.0 10.0 2432 ------- null} + -t 2.75936 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4855 -a 0 -x {9.0 10.0 2432 ------- null} h -t 2.75936 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4855 -a 0 -x {9.0 10.0 2432 ------- null} r -t 2.75989 -s 0 -d 9 -p ack -e 40 -c 0 -i 4850 -a 0 -x {10.0 9.0 2420 ------- null} + -t 2.75989 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4861 -a 0 -x {9.0 10.0 2435 ------- null} - -t 2.75989 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4861 -a 0 -x {9.0 10.0 2435 ------- null} h -t 2.75989 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4861 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.75992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4847 -a 0 -x {9.0 10.0 2428 ------- null} - -t 2.75992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4847 -a 0 -x {9.0 10.0 2428 ------- null} h -t 2.75992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4847 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.76005 -s 0 -d 9 -p ack -e 40 -c 0 -i 4854 -a 0 -x {10.0 9.0 2422 ------- null} - -t 2.76005 -s 0 -d 9 -p ack -e 40 -c 0 -i 4854 -a 0 -x {10.0 9.0 2422 ------- null} h -t 2.76005 -s 0 -d 9 -p ack -e 40 -c 0 -i 4854 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.76027 -s 10 -d 7 -p ack -e 40 -c 0 -i 4858 -a 0 -x {10.0 9.0 2424 ------- null} + -t 2.76027 -s 7 -d 0 -p ack -e 40 -c 0 -i 4858 -a 0 -x {10.0 9.0 2424 ------- null} h -t 2.76027 -s 7 -d 8 -p ack -e 40 -c 0 -i 4858 -a 0 -x {10.0 9.0 2424 ------- null} r -t 2.76045 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4857 -a 0 -x {9.0 10.0 2433 ------- null} + -t 2.76045 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4857 -a 0 -x {9.0 10.0 2433 ------- null} h -t 2.76045 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4857 -a 0 -x {9.0 10.0 2433 ------- null} r -t 2.76054 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4843 -a 0 -x {9.0 10.0 2426 ------- null} + -t 2.76054 -s 10 -d 7 -p ack -e 40 -c 0 -i 4862 -a 0 -x {10.0 9.0 2426 ------- null} - -t 2.76054 -s 10 -d 7 -p ack -e 40 -c 0 -i 4862 -a 0 -x {10.0 9.0 2426 ------- null} h -t 2.76054 -s 10 -d 7 -p ack -e 40 -c 0 -i 4862 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.76098 -s 0 -d 9 -p ack -e 40 -c 0 -i 4852 -a 0 -x {10.0 9.0 2421 ------- null} + -t 2.76098 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4863 -a 0 -x {9.0 10.0 2436 ------- null} - -t 2.76098 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4863 -a 0 -x {9.0 10.0 2436 ------- null} h -t 2.76098 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4863 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.76101 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4849 -a 0 -x {9.0 10.0 2429 ------- null} - -t 2.76101 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4849 -a 0 -x {9.0 10.0 2429 ------- null} h -t 2.76101 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4849 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.76131 -s 0 -d 9 -p ack -e 40 -c 0 -i 4856 -a 0 -x {10.0 9.0 2423 ------- null} - -t 2.76131 -s 0 -d 9 -p ack -e 40 -c 0 -i 4856 -a 0 -x {10.0 9.0 2423 ------- null} h -t 2.76131 -s 0 -d 9 -p ack -e 40 -c 0 -i 4856 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.76136 -s 10 -d 7 -p ack -e 40 -c 0 -i 4860 -a 0 -x {10.0 9.0 2425 ------- null} + -t 2.76136 -s 7 -d 0 -p ack -e 40 -c 0 -i 4860 -a 0 -x {10.0 9.0 2425 ------- null} h -t 2.76136 -s 7 -d 8 -p ack -e 40 -c 0 -i 4860 -a 0 -x {10.0 9.0 2425 ------- null} r -t 2.76163 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4859 -a 0 -x {9.0 10.0 2434 ------- null} + -t 2.76163 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4859 -a 0 -x {9.0 10.0 2434 ------- null} h -t 2.76163 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4859 -a 0 -x {9.0 10.0 2434 ------- null} r -t 2.76163 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4845 -a 0 -x {9.0 10.0 2427 ------- null} + -t 2.76163 -s 10 -d 7 -p ack -e 40 -c 0 -i 4864 -a 0 -x {10.0 9.0 2427 ------- null} - -t 2.76163 -s 10 -d 7 -p ack -e 40 -c 0 -i 4864 -a 0 -x {10.0 9.0 2427 ------- null} h -t 2.76163 -s 10 -d 7 -p ack -e 40 -c 0 -i 4864 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.76208 -s 0 -d 9 -p ack -e 40 -c 0 -i 4854 -a 0 -x {10.0 9.0 2422 ------- null} + -t 2.76208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4865 -a 0 -x {9.0 10.0 2437 ------- null} - -t 2.76208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4865 -a 0 -x {9.0 10.0 2437 ------- null} h -t 2.76208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4865 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.76218 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4851 -a 0 -x {9.0 10.0 2430 ------- null} - -t 2.76218 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4851 -a 0 -x {9.0 10.0 2430 ------- null} h -t 2.76218 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4851 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.76235 -s 0 -d 9 -p ack -e 40 -c 0 -i 4858 -a 0 -x {10.0 9.0 2424 ------- null} - -t 2.76235 -s 0 -d 9 -p ack -e 40 -c 0 -i 4858 -a 0 -x {10.0 9.0 2424 ------- null} h -t 2.76235 -s 0 -d 9 -p ack -e 40 -c 0 -i 4858 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.76258 -s 10 -d 7 -p ack -e 40 -c 0 -i 4862 -a 0 -x {10.0 9.0 2426 ------- null} + -t 2.76258 -s 7 -d 0 -p ack -e 40 -c 0 -i 4862 -a 0 -x {10.0 9.0 2426 ------- null} h -t 2.76258 -s 7 -d 8 -p ack -e 40 -c 0 -i 4862 -a 0 -x {10.0 9.0 2426 ------- null} r -t 2.76269 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4861 -a 0 -x {9.0 10.0 2435 ------- null} + -t 2.76269 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4861 -a 0 -x {9.0 10.0 2435 ------- null} h -t 2.76269 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4861 -a 0 -x {9.0 10.0 2435 ------- null} r -t 2.76272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4847 -a 0 -x {9.0 10.0 2428 ------- null} + -t 2.76272 -s 10 -d 7 -p ack -e 40 -c 0 -i 4866 -a 0 -x {10.0 9.0 2428 ------- null} - -t 2.76272 -s 10 -d 7 -p ack -e 40 -c 0 -i 4866 -a 0 -x {10.0 9.0 2428 ------- null} h -t 2.76272 -s 10 -d 7 -p ack -e 40 -c 0 -i 4866 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.76326 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4853 -a 0 -x {9.0 10.0 2431 ------- null} - -t 2.76326 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4853 -a 0 -x {9.0 10.0 2431 ------- null} h -t 2.76326 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4853 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.76334 -s 0 -d 9 -p ack -e 40 -c 0 -i 4856 -a 0 -x {10.0 9.0 2423 ------- null} + -t 2.76334 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4867 -a 0 -x {9.0 10.0 2438 ------- null} - -t 2.76334 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4867 -a 0 -x {9.0 10.0 2438 ------- null} h -t 2.76334 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4867 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.76357 -s 0 -d 9 -p ack -e 40 -c 0 -i 4860 -a 0 -x {10.0 9.0 2425 ------- null} - -t 2.76357 -s 0 -d 9 -p ack -e 40 -c 0 -i 4860 -a 0 -x {10.0 9.0 2425 ------- null} h -t 2.76357 -s 0 -d 9 -p ack -e 40 -c 0 -i 4860 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.76366 -s 10 -d 7 -p ack -e 40 -c 0 -i 4864 -a 0 -x {10.0 9.0 2427 ------- null} + -t 2.76366 -s 7 -d 0 -p ack -e 40 -c 0 -i 4864 -a 0 -x {10.0 9.0 2427 ------- null} h -t 2.76366 -s 7 -d 8 -p ack -e 40 -c 0 -i 4864 -a 0 -x {10.0 9.0 2427 ------- null} r -t 2.76378 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4863 -a 0 -x {9.0 10.0 2436 ------- null} + -t 2.76378 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4863 -a 0 -x {9.0 10.0 2436 ------- null} h -t 2.76378 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4863 -a 0 -x {9.0 10.0 2436 ------- null} r -t 2.76381 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4849 -a 0 -x {9.0 10.0 2429 ------- null} + -t 2.76381 -s 10 -d 7 -p ack -e 40 -c 0 -i 4868 -a 0 -x {10.0 9.0 2429 ------- null} - -t 2.76381 -s 10 -d 7 -p ack -e 40 -c 0 -i 4868 -a 0 -x {10.0 9.0 2429 ------- null} h -t 2.76381 -s 10 -d 7 -p ack -e 40 -c 0 -i 4868 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.76438 -s 0 -d 9 -p ack -e 40 -c 0 -i 4858 -a 0 -x {10.0 9.0 2424 ------- null} + -t 2.76438 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4869 -a 0 -x {9.0 10.0 2439 ------- null} - -t 2.76438 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4869 -a 0 -x {9.0 10.0 2439 ------- null} h -t 2.76438 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4869 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.76446 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4855 -a 0 -x {9.0 10.0 2432 ------- null} - -t 2.76446 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4855 -a 0 -x {9.0 10.0 2432 ------- null} h -t 2.76446 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4855 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.76464 -s 0 -d 9 -p ack -e 40 -c 0 -i 4862 -a 0 -x {10.0 9.0 2426 ------- null} - -t 2.76464 -s 0 -d 9 -p ack -e 40 -c 0 -i 4862 -a 0 -x {10.0 9.0 2426 ------- null} h -t 2.76464 -s 0 -d 9 -p ack -e 40 -c 0 -i 4862 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.76475 -s 10 -d 7 -p ack -e 40 -c 0 -i 4866 -a 0 -x {10.0 9.0 2428 ------- null} + -t 2.76475 -s 7 -d 0 -p ack -e 40 -c 0 -i 4866 -a 0 -x {10.0 9.0 2428 ------- null} h -t 2.76475 -s 7 -d 8 -p ack -e 40 -c 0 -i 4866 -a 0 -x {10.0 9.0 2428 ------- null} r -t 2.76488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4865 -a 0 -x {9.0 10.0 2437 ------- null} + -t 2.76488 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4865 -a 0 -x {9.0 10.0 2437 ------- null} h -t 2.76488 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4865 -a 0 -x {9.0 10.0 2437 ------- null} r -t 2.76498 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4851 -a 0 -x {9.0 10.0 2430 ------- null} + -t 2.76498 -s 10 -d 7 -p ack -e 40 -c 0 -i 4870 -a 0 -x {10.0 9.0 2430 ------- null} - -t 2.76498 -s 10 -d 7 -p ack -e 40 -c 0 -i 4870 -a 0 -x {10.0 9.0 2430 ------- null} h -t 2.76498 -s 10 -d 7 -p ack -e 40 -c 0 -i 4870 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.76555 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4857 -a 0 -x {9.0 10.0 2433 ------- null} - -t 2.76555 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4857 -a 0 -x {9.0 10.0 2433 ------- null} h -t 2.76555 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4857 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.7656 -s 0 -d 9 -p ack -e 40 -c 0 -i 4860 -a 0 -x {10.0 9.0 2425 ------- null} + -t 2.7656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4871 -a 0 -x {9.0 10.0 2440 ------- null} - -t 2.7656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4871 -a 0 -x {9.0 10.0 2440 ------- null} h -t 2.7656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4871 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.76581 -s 0 -d 9 -p ack -e 40 -c 0 -i 4864 -a 0 -x {10.0 9.0 2427 ------- null} - -t 2.76581 -s 0 -d 9 -p ack -e 40 -c 0 -i 4864 -a 0 -x {10.0 9.0 2427 ------- null} h -t 2.76581 -s 0 -d 9 -p ack -e 40 -c 0 -i 4864 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.76584 -s 10 -d 7 -p ack -e 40 -c 0 -i 4868 -a 0 -x {10.0 9.0 2429 ------- null} + -t 2.76584 -s 7 -d 0 -p ack -e 40 -c 0 -i 4868 -a 0 -x {10.0 9.0 2429 ------- null} h -t 2.76584 -s 7 -d 8 -p ack -e 40 -c 0 -i 4868 -a 0 -x {10.0 9.0 2429 ------- null} r -t 2.76606 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4853 -a 0 -x {9.0 10.0 2431 ------- null} + -t 2.76606 -s 10 -d 7 -p ack -e 40 -c 0 -i 4872 -a 0 -x {10.0 9.0 2431 ------- null} - -t 2.76606 -s 10 -d 7 -p ack -e 40 -c 0 -i 4872 -a 0 -x {10.0 9.0 2431 ------- null} h -t 2.76606 -s 10 -d 7 -p ack -e 40 -c 0 -i 4872 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.76614 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4867 -a 0 -x {9.0 10.0 2438 ------- null} + -t 2.76614 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4867 -a 0 -x {9.0 10.0 2438 ------- null} h -t 2.76614 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4867 -a 0 -x {9.0 10.0 2438 ------- null} r -t 2.76667 -s 0 -d 9 -p ack -e 40 -c 0 -i 4862 -a 0 -x {10.0 9.0 2426 ------- null} + -t 2.76667 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4873 -a 0 -x {9.0 10.0 2441 ------- null} - -t 2.76667 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4873 -a 0 -x {9.0 10.0 2441 ------- null} h -t 2.76667 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4873 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.76685 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4859 -a 0 -x {9.0 10.0 2434 ------- null} - -t 2.76685 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4859 -a 0 -x {9.0 10.0 2434 ------- null} h -t 2.76685 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4859 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.76701 -s 10 -d 7 -p ack -e 40 -c 0 -i 4870 -a 0 -x {10.0 9.0 2430 ------- null} + -t 2.76701 -s 7 -d 0 -p ack -e 40 -c 0 -i 4870 -a 0 -x {10.0 9.0 2430 ------- null} h -t 2.76701 -s 7 -d 8 -p ack -e 40 -c 0 -i 4870 -a 0 -x {10.0 9.0 2430 ------- null} + -t 2.76704 -s 0 -d 9 -p ack -e 40 -c 0 -i 4866 -a 0 -x {10.0 9.0 2428 ------- null} - -t 2.76704 -s 0 -d 9 -p ack -e 40 -c 0 -i 4866 -a 0 -x {10.0 9.0 2428 ------- null} h -t 2.76704 -s 0 -d 9 -p ack -e 40 -c 0 -i 4866 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.76718 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4869 -a 0 -x {9.0 10.0 2439 ------- null} + -t 2.76718 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4869 -a 0 -x {9.0 10.0 2439 ------- null} h -t 2.76718 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4869 -a 0 -x {9.0 10.0 2439 ------- null} r -t 2.76726 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4855 -a 0 -x {9.0 10.0 2432 ------- null} + -t 2.76726 -s 10 -d 7 -p ack -e 40 -c 0 -i 4874 -a 0 -x {10.0 9.0 2432 ------- null} - -t 2.76726 -s 10 -d 7 -p ack -e 40 -c 0 -i 4874 -a 0 -x {10.0 9.0 2432 ------- null} h -t 2.76726 -s 10 -d 7 -p ack -e 40 -c 0 -i 4874 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.76784 -s 0 -d 9 -p ack -e 40 -c 0 -i 4864 -a 0 -x {10.0 9.0 2427 ------- null} + -t 2.76784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4875 -a 0 -x {9.0 10.0 2442 ------- null} - -t 2.76784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4875 -a 0 -x {9.0 10.0 2442 ------- null} h -t 2.76784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4875 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.76794 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4861 -a 0 -x {9.0 10.0 2435 ------- null} - -t 2.76794 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4861 -a 0 -x {9.0 10.0 2435 ------- null} h -t 2.76794 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4861 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.76808 -s 0 -d 9 -p ack -e 40 -c 0 -i 4868 -a 0 -x {10.0 9.0 2429 ------- null} - -t 2.76808 -s 0 -d 9 -p ack -e 40 -c 0 -i 4868 -a 0 -x {10.0 9.0 2429 ------- null} h -t 2.76808 -s 0 -d 9 -p ack -e 40 -c 0 -i 4868 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.7681 -s 10 -d 7 -p ack -e 40 -c 0 -i 4872 -a 0 -x {10.0 9.0 2431 ------- null} + -t 2.7681 -s 7 -d 0 -p ack -e 40 -c 0 -i 4872 -a 0 -x {10.0 9.0 2431 ------- null} h -t 2.7681 -s 7 -d 8 -p ack -e 40 -c 0 -i 4872 -a 0 -x {10.0 9.0 2431 ------- null} r -t 2.76835 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4857 -a 0 -x {9.0 10.0 2433 ------- null} + -t 2.76835 -s 10 -d 7 -p ack -e 40 -c 0 -i 4876 -a 0 -x {10.0 9.0 2433 ------- null} - -t 2.76835 -s 10 -d 7 -p ack -e 40 -c 0 -i 4876 -a 0 -x {10.0 9.0 2433 ------- null} h -t 2.76835 -s 10 -d 7 -p ack -e 40 -c 0 -i 4876 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.7684 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4871 -a 0 -x {9.0 10.0 2440 ------- null} + -t 2.7684 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4871 -a 0 -x {9.0 10.0 2440 ------- null} h -t 2.7684 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4871 -a 0 -x {9.0 10.0 2440 ------- null} + -t 2.76902 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4863 -a 0 -x {9.0 10.0 2436 ------- null} - -t 2.76902 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4863 -a 0 -x {9.0 10.0 2436 ------- null} h -t 2.76902 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4863 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.76907 -s 0 -d 9 -p ack -e 40 -c 0 -i 4866 -a 0 -x {10.0 9.0 2428 ------- null} + -t 2.76907 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4877 -a 0 -x {9.0 10.0 2443 ------- null} - -t 2.76907 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4877 -a 0 -x {9.0 10.0 2443 ------- null} h -t 2.76907 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4877 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.76923 -s 0 -d 9 -p ack -e 40 -c 0 -i 4870 -a 0 -x {10.0 9.0 2430 ------- null} - -t 2.76923 -s 0 -d 9 -p ack -e 40 -c 0 -i 4870 -a 0 -x {10.0 9.0 2430 ------- null} h -t 2.76923 -s 0 -d 9 -p ack -e 40 -c 0 -i 4870 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.7693 -s 10 -d 7 -p ack -e 40 -c 0 -i 4874 -a 0 -x {10.0 9.0 2432 ------- null} + -t 2.7693 -s 7 -d 0 -p ack -e 40 -c 0 -i 4874 -a 0 -x {10.0 9.0 2432 ------- null} h -t 2.7693 -s 7 -d 8 -p ack -e 40 -c 0 -i 4874 -a 0 -x {10.0 9.0 2432 ------- null} r -t 2.76947 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4873 -a 0 -x {9.0 10.0 2441 ------- null} + -t 2.76947 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4873 -a 0 -x {9.0 10.0 2441 ------- null} h -t 2.76947 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4873 -a 0 -x {9.0 10.0 2441 ------- null} r -t 2.76965 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4859 -a 0 -x {9.0 10.0 2434 ------- null} + -t 2.76965 -s 10 -d 7 -p ack -e 40 -c 0 -i 4878 -a 0 -x {10.0 9.0 2434 ------- null} - -t 2.76965 -s 10 -d 7 -p ack -e 40 -c 0 -i 4878 -a 0 -x {10.0 9.0 2434 ------- null} h -t 2.76965 -s 10 -d 7 -p ack -e 40 -c 0 -i 4878 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.77011 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4865 -a 0 -x {9.0 10.0 2437 ------- null} - -t 2.77011 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4865 -a 0 -x {9.0 10.0 2437 ------- null} h -t 2.77011 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4865 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.77011 -s 0 -d 9 -p ack -e 40 -c 0 -i 4868 -a 0 -x {10.0 9.0 2429 ------- null} + -t 2.77011 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4879 -a 0 -x {9.0 10.0 2444 ------- null} - -t 2.77011 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4879 -a 0 -x {9.0 10.0 2444 ------- null} h -t 2.77011 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4879 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.77035 -s 0 -d 9 -p ack -e 40 -c 0 -i 4872 -a 0 -x {10.0 9.0 2431 ------- null} - -t 2.77035 -s 0 -d 9 -p ack -e 40 -c 0 -i 4872 -a 0 -x {10.0 9.0 2431 ------- null} h -t 2.77035 -s 0 -d 9 -p ack -e 40 -c 0 -i 4872 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.77038 -s 10 -d 7 -p ack -e 40 -c 0 -i 4876 -a 0 -x {10.0 9.0 2433 ------- null} + -t 2.77038 -s 7 -d 0 -p ack -e 40 -c 0 -i 4876 -a 0 -x {10.0 9.0 2433 ------- null} h -t 2.77038 -s 7 -d 8 -p ack -e 40 -c 0 -i 4876 -a 0 -x {10.0 9.0 2433 ------- null} r -t 2.77064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4875 -a 0 -x {9.0 10.0 2442 ------- null} + -t 2.77064 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4875 -a 0 -x {9.0 10.0 2442 ------- null} h -t 2.77064 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4875 -a 0 -x {9.0 10.0 2442 ------- null} r -t 2.77074 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4861 -a 0 -x {9.0 10.0 2435 ------- null} + -t 2.77074 -s 10 -d 7 -p ack -e 40 -c 0 -i 4880 -a 0 -x {10.0 9.0 2435 ------- null} - -t 2.77074 -s 10 -d 7 -p ack -e 40 -c 0 -i 4880 -a 0 -x {10.0 9.0 2435 ------- null} h -t 2.77074 -s 10 -d 7 -p ack -e 40 -c 0 -i 4880 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.7712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4867 -a 0 -x {9.0 10.0 2438 ------- null} - -t 2.7712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4867 -a 0 -x {9.0 10.0 2438 ------- null} h -t 2.7712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4867 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.77126 -s 0 -d 9 -p ack -e 40 -c 0 -i 4870 -a 0 -x {10.0 9.0 2430 ------- null} + -t 2.77126 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4881 -a 0 -x {9.0 10.0 2445 ------- null} - -t 2.77126 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4881 -a 0 -x {9.0 10.0 2445 ------- null} h -t 2.77126 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4881 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.77134 -s 0 -d 9 -p ack -e 40 -c 0 -i 4874 -a 0 -x {10.0 9.0 2432 ------- null} - -t 2.77134 -s 0 -d 9 -p ack -e 40 -c 0 -i 4874 -a 0 -x {10.0 9.0 2432 ------- null} h -t 2.77134 -s 0 -d 9 -p ack -e 40 -c 0 -i 4874 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.77168 -s 10 -d 7 -p ack -e 40 -c 0 -i 4878 -a 0 -x {10.0 9.0 2434 ------- null} + -t 2.77168 -s 7 -d 0 -p ack -e 40 -c 0 -i 4878 -a 0 -x {10.0 9.0 2434 ------- null} h -t 2.77168 -s 7 -d 8 -p ack -e 40 -c 0 -i 4878 -a 0 -x {10.0 9.0 2434 ------- null} r -t 2.77182 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4863 -a 0 -x {9.0 10.0 2436 ------- null} + -t 2.77182 -s 10 -d 7 -p ack -e 40 -c 0 -i 4882 -a 0 -x {10.0 9.0 2436 ------- null} - -t 2.77182 -s 10 -d 7 -p ack -e 40 -c 0 -i 4882 -a 0 -x {10.0 9.0 2436 ------- null} h -t 2.77182 -s 10 -d 7 -p ack -e 40 -c 0 -i 4882 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.77187 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4877 -a 0 -x {9.0 10.0 2443 ------- null} + -t 2.77187 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4877 -a 0 -x {9.0 10.0 2443 ------- null} h -t 2.77187 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4877 -a 0 -x {9.0 10.0 2443 ------- null} + -t 2.77229 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4869 -a 0 -x {9.0 10.0 2439 ------- null} - -t 2.77229 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4869 -a 0 -x {9.0 10.0 2439 ------- null} h -t 2.77229 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4869 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.77238 -s 0 -d 9 -p ack -e 40 -c 0 -i 4872 -a 0 -x {10.0 9.0 2431 ------- null} + -t 2.77238 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4883 -a 0 -x {9.0 10.0 2446 ------- null} - -t 2.77238 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4883 -a 0 -x {9.0 10.0 2446 ------- null} h -t 2.77238 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4883 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.77251 -s 0 -d 9 -p ack -e 40 -c 0 -i 4876 -a 0 -x {10.0 9.0 2433 ------- null} - -t 2.77251 -s 0 -d 9 -p ack -e 40 -c 0 -i 4876 -a 0 -x {10.0 9.0 2433 ------- null} h -t 2.77251 -s 0 -d 9 -p ack -e 40 -c 0 -i 4876 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.77277 -s 10 -d 7 -p ack -e 40 -c 0 -i 4880 -a 0 -x {10.0 9.0 2435 ------- null} + -t 2.77277 -s 7 -d 0 -p ack -e 40 -c 0 -i 4880 -a 0 -x {10.0 9.0 2435 ------- null} h -t 2.77277 -s 7 -d 8 -p ack -e 40 -c 0 -i 4880 -a 0 -x {10.0 9.0 2435 ------- null} r -t 2.77291 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4865 -a 0 -x {9.0 10.0 2437 ------- null} + -t 2.77291 -s 10 -d 7 -p ack -e 40 -c 0 -i 4884 -a 0 -x {10.0 9.0 2437 ------- null} - -t 2.77291 -s 10 -d 7 -p ack -e 40 -c 0 -i 4884 -a 0 -x {10.0 9.0 2437 ------- null} h -t 2.77291 -s 10 -d 7 -p ack -e 40 -c 0 -i 4884 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.77291 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4879 -a 0 -x {9.0 10.0 2444 ------- null} + -t 2.77291 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4879 -a 0 -x {9.0 10.0 2444 ------- null} h -t 2.77291 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4879 -a 0 -x {9.0 10.0 2444 ------- null} + -t 2.77338 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4871 -a 0 -x {9.0 10.0 2440 ------- null} - -t 2.77338 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4871 -a 0 -x {9.0 10.0 2440 ------- null} h -t 2.77338 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4871 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.77338 -s 0 -d 9 -p ack -e 40 -c 0 -i 4874 -a 0 -x {10.0 9.0 2432 ------- null} + -t 2.77338 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4885 -a 0 -x {9.0 10.0 2447 ------- null} - -t 2.77338 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4885 -a 0 -x {9.0 10.0 2447 ------- null} h -t 2.77338 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4885 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.77352 -s 0 -d 9 -p ack -e 40 -c 0 -i 4878 -a 0 -x {10.0 9.0 2434 ------- null} - -t 2.77352 -s 0 -d 9 -p ack -e 40 -c 0 -i 4878 -a 0 -x {10.0 9.0 2434 ------- null} h -t 2.77352 -s 0 -d 9 -p ack -e 40 -c 0 -i 4878 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.77386 -s 10 -d 7 -p ack -e 40 -c 0 -i 4882 -a 0 -x {10.0 9.0 2436 ------- null} + -t 2.77386 -s 7 -d 0 -p ack -e 40 -c 0 -i 4882 -a 0 -x {10.0 9.0 2436 ------- null} h -t 2.77386 -s 7 -d 8 -p ack -e 40 -c 0 -i 4882 -a 0 -x {10.0 9.0 2436 ------- null} r -t 2.774 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4867 -a 0 -x {9.0 10.0 2438 ------- null} + -t 2.774 -s 10 -d 7 -p ack -e 40 -c 0 -i 4886 -a 0 -x {10.0 9.0 2438 ------- null} - -t 2.774 -s 10 -d 7 -p ack -e 40 -c 0 -i 4886 -a 0 -x {10.0 9.0 2438 ------- null} h -t 2.774 -s 10 -d 7 -p ack -e 40 -c 0 -i 4886 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.77406 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4881 -a 0 -x {9.0 10.0 2445 ------- null} + -t 2.77406 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4881 -a 0 -x {9.0 10.0 2445 ------- null} h -t 2.77406 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4881 -a 0 -x {9.0 10.0 2445 ------- null} + -t 2.77446 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4873 -a 0 -x {9.0 10.0 2441 ------- null} - -t 2.77446 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4873 -a 0 -x {9.0 10.0 2441 ------- null} h -t 2.77446 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4873 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.77454 -s 0 -d 9 -p ack -e 40 -c 0 -i 4876 -a 0 -x {10.0 9.0 2433 ------- null} + -t 2.77454 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4887 -a 0 -x {9.0 10.0 2448 ------- null} - -t 2.77454 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4887 -a 0 -x {9.0 10.0 2448 ------- null} h -t 2.77454 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4887 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.77466 -s 0 -d 9 -p ack -e 40 -c 0 -i 4880 -a 0 -x {10.0 9.0 2435 ------- null} - -t 2.77466 -s 0 -d 9 -p ack -e 40 -c 0 -i 4880 -a 0 -x {10.0 9.0 2435 ------- null} h -t 2.77466 -s 0 -d 9 -p ack -e 40 -c 0 -i 4880 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.77494 -s 10 -d 7 -p ack -e 40 -c 0 -i 4884 -a 0 -x {10.0 9.0 2437 ------- null} + -t 2.77494 -s 7 -d 0 -p ack -e 40 -c 0 -i 4884 -a 0 -x {10.0 9.0 2437 ------- null} h -t 2.77494 -s 7 -d 8 -p ack -e 40 -c 0 -i 4884 -a 0 -x {10.0 9.0 2437 ------- null} r -t 2.77509 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4869 -a 0 -x {9.0 10.0 2439 ------- null} + -t 2.77509 -s 10 -d 7 -p ack -e 40 -c 0 -i 4888 -a 0 -x {10.0 9.0 2439 ------- null} - -t 2.77509 -s 10 -d 7 -p ack -e 40 -c 0 -i 4888 -a 0 -x {10.0 9.0 2439 ------- null} h -t 2.77509 -s 10 -d 7 -p ack -e 40 -c 0 -i 4888 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.77518 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4883 -a 0 -x {9.0 10.0 2446 ------- null} + -t 2.77518 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4883 -a 0 -x {9.0 10.0 2446 ------- null} h -t 2.77518 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4883 -a 0 -x {9.0 10.0 2446 ------- null} + -t 2.77555 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4875 -a 0 -x {9.0 10.0 2442 ------- null} - -t 2.77555 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4875 -a 0 -x {9.0 10.0 2442 ------- null} h -t 2.77555 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4875 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.77555 -s 0 -d 9 -p ack -e 40 -c 0 -i 4878 -a 0 -x {10.0 9.0 2434 ------- null} + -t 2.77555 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4889 -a 0 -x {9.0 10.0 2449 ------- null} - -t 2.77555 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4889 -a 0 -x {9.0 10.0 2449 ------- null} h -t 2.77555 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4889 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.77582 -s 0 -d 9 -p ack -e 40 -c 0 -i 4882 -a 0 -x {10.0 9.0 2436 ------- null} - -t 2.77582 -s 0 -d 9 -p ack -e 40 -c 0 -i 4882 -a 0 -x {10.0 9.0 2436 ------- null} h -t 2.77582 -s 0 -d 9 -p ack -e 40 -c 0 -i 4882 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.77603 -s 10 -d 7 -p ack -e 40 -c 0 -i 4886 -a 0 -x {10.0 9.0 2438 ------- null} + -t 2.77603 -s 7 -d 0 -p ack -e 40 -c 0 -i 4886 -a 0 -x {10.0 9.0 2438 ------- null} h -t 2.77603 -s 7 -d 8 -p ack -e 40 -c 0 -i 4886 -a 0 -x {10.0 9.0 2438 ------- null} r -t 2.77618 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4871 -a 0 -x {9.0 10.0 2440 ------- null} + -t 2.77618 -s 10 -d 7 -p ack -e 40 -c 0 -i 4890 -a 0 -x {10.0 9.0 2440 ------- null} - -t 2.77618 -s 10 -d 7 -p ack -e 40 -c 0 -i 4890 -a 0 -x {10.0 9.0 2440 ------- null} h -t 2.77618 -s 10 -d 7 -p ack -e 40 -c 0 -i 4890 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.77618 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4885 -a 0 -x {9.0 10.0 2447 ------- null} + -t 2.77618 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4885 -a 0 -x {9.0 10.0 2447 ------- null} h -t 2.77618 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4885 -a 0 -x {9.0 10.0 2447 ------- null} r -t 2.77669 -s 0 -d 9 -p ack -e 40 -c 0 -i 4880 -a 0 -x {10.0 9.0 2435 ------- null} + -t 2.77669 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4891 -a 0 -x {9.0 10.0 2450 ------- null} - -t 2.77669 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4891 -a 0 -x {9.0 10.0 2450 ------- null} h -t 2.77669 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4891 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.7767 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4877 -a 0 -x {9.0 10.0 2443 ------- null} - -t 2.7767 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4877 -a 0 -x {9.0 10.0 2443 ------- null} h -t 2.7767 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4877 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.7768 -s 0 -d 9 -p ack -e 40 -c 0 -i 4884 -a 0 -x {10.0 9.0 2437 ------- null} - -t 2.7768 -s 0 -d 9 -p ack -e 40 -c 0 -i 4884 -a 0 -x {10.0 9.0 2437 ------- null} h -t 2.7768 -s 0 -d 9 -p ack -e 40 -c 0 -i 4884 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.77712 -s 10 -d 7 -p ack -e 40 -c 0 -i 4888 -a 0 -x {10.0 9.0 2439 ------- null} + -t 2.77712 -s 7 -d 0 -p ack -e 40 -c 0 -i 4888 -a 0 -x {10.0 9.0 2439 ------- null} h -t 2.77712 -s 7 -d 8 -p ack -e 40 -c 0 -i 4888 -a 0 -x {10.0 9.0 2439 ------- null} r -t 2.77726 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4873 -a 0 -x {9.0 10.0 2441 ------- null} + -t 2.77726 -s 10 -d 7 -p ack -e 40 -c 0 -i 4892 -a 0 -x {10.0 9.0 2441 ------- null} - -t 2.77726 -s 10 -d 7 -p ack -e 40 -c 0 -i 4892 -a 0 -x {10.0 9.0 2441 ------- null} h -t 2.77726 -s 10 -d 7 -p ack -e 40 -c 0 -i 4892 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.77734 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4887 -a 0 -x {9.0 10.0 2448 ------- null} + -t 2.77734 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4887 -a 0 -x {9.0 10.0 2448 ------- null} h -t 2.77734 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4887 -a 0 -x {9.0 10.0 2448 ------- null} + -t 2.77779 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4879 -a 0 -x {9.0 10.0 2444 ------- null} - -t 2.77779 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4879 -a 0 -x {9.0 10.0 2444 ------- null} h -t 2.77779 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4879 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.77786 -s 0 -d 9 -p ack -e 40 -c 0 -i 4882 -a 0 -x {10.0 9.0 2436 ------- null} + -t 2.77786 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4893 -a 0 -x {9.0 10.0 2451 ------- null} - -t 2.77786 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4893 -a 0 -x {9.0 10.0 2451 ------- null} h -t 2.77786 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4893 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.77808 -s 0 -d 9 -p ack -e 40 -c 0 -i 4886 -a 0 -x {10.0 9.0 2438 ------- null} - -t 2.77808 -s 0 -d 9 -p ack -e 40 -c 0 -i 4886 -a 0 -x {10.0 9.0 2438 ------- null} h -t 2.77808 -s 0 -d 9 -p ack -e 40 -c 0 -i 4886 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.77821 -s 10 -d 7 -p ack -e 40 -c 0 -i 4890 -a 0 -x {10.0 9.0 2440 ------- null} + -t 2.77821 -s 7 -d 0 -p ack -e 40 -c 0 -i 4890 -a 0 -x {10.0 9.0 2440 ------- null} h -t 2.77821 -s 7 -d 8 -p ack -e 40 -c 0 -i 4890 -a 0 -x {10.0 9.0 2440 ------- null} r -t 2.77835 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4875 -a 0 -x {9.0 10.0 2442 ------- null} + -t 2.77835 -s 10 -d 7 -p ack -e 40 -c 0 -i 4894 -a 0 -x {10.0 9.0 2442 ------- null} - -t 2.77835 -s 10 -d 7 -p ack -e 40 -c 0 -i 4894 -a 0 -x {10.0 9.0 2442 ------- null} h -t 2.77835 -s 10 -d 7 -p ack -e 40 -c 0 -i 4894 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.77835 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4889 -a 0 -x {9.0 10.0 2449 ------- null} + -t 2.77835 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4889 -a 0 -x {9.0 10.0 2449 ------- null} h -t 2.77835 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4889 -a 0 -x {9.0 10.0 2449 ------- null} r -t 2.77883 -s 0 -d 9 -p ack -e 40 -c 0 -i 4884 -a 0 -x {10.0 9.0 2437 ------- null} + -t 2.77883 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4895 -a 0 -x {9.0 10.0 2452 ------- null} - -t 2.77883 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4895 -a 0 -x {9.0 10.0 2452 ------- null} h -t 2.77883 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4895 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.77912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4881 -a 0 -x {9.0 10.0 2445 ------- null} - -t 2.77912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4881 -a 0 -x {9.0 10.0 2445 ------- null} h -t 2.77912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4881 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.7793 -s 10 -d 7 -p ack -e 40 -c 0 -i 4892 -a 0 -x {10.0 9.0 2441 ------- null} + -t 2.7793 -s 7 -d 0 -p ack -e 40 -c 0 -i 4892 -a 0 -x {10.0 9.0 2441 ------- null} h -t 2.7793 -s 7 -d 8 -p ack -e 40 -c 0 -i 4892 -a 0 -x {10.0 9.0 2441 ------- null} + -t 2.77942 -s 0 -d 9 -p ack -e 40 -c 0 -i 4888 -a 0 -x {10.0 9.0 2439 ------- null} - -t 2.77942 -s 0 -d 9 -p ack -e 40 -c 0 -i 4888 -a 0 -x {10.0 9.0 2439 ------- null} h -t 2.77942 -s 0 -d 9 -p ack -e 40 -c 0 -i 4888 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.77949 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4891 -a 0 -x {9.0 10.0 2450 ------- null} + -t 2.77949 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4891 -a 0 -x {9.0 10.0 2450 ------- null} h -t 2.77949 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4891 -a 0 -x {9.0 10.0 2450 ------- null} r -t 2.7795 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4877 -a 0 -x {9.0 10.0 2443 ------- null} + -t 2.7795 -s 10 -d 7 -p ack -e 40 -c 0 -i 4896 -a 0 -x {10.0 9.0 2443 ------- null} - -t 2.7795 -s 10 -d 7 -p ack -e 40 -c 0 -i 4896 -a 0 -x {10.0 9.0 2443 ------- null} h -t 2.7795 -s 10 -d 7 -p ack -e 40 -c 0 -i 4896 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.78011 -s 0 -d 9 -p ack -e 40 -c 0 -i 4886 -a 0 -x {10.0 9.0 2438 ------- null} + -t 2.78011 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4897 -a 0 -x {9.0 10.0 2453 ------- null} - -t 2.78011 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4897 -a 0 -x {9.0 10.0 2453 ------- null} h -t 2.78011 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4897 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.78038 -s 10 -d 7 -p ack -e 40 -c 0 -i 4894 -a 0 -x {10.0 9.0 2442 ------- null} + -t 2.78038 -s 7 -d 0 -p ack -e 40 -c 0 -i 4894 -a 0 -x {10.0 9.0 2442 ------- null} h -t 2.78038 -s 7 -d 8 -p ack -e 40 -c 0 -i 4894 -a 0 -x {10.0 9.0 2442 ------- null} + -t 2.78038 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4883 -a 0 -x {9.0 10.0 2446 ------- null} - -t 2.78038 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4883 -a 0 -x {9.0 10.0 2446 ------- null} h -t 2.78038 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4883 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.78059 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4879 -a 0 -x {9.0 10.0 2444 ------- null} + -t 2.78059 -s 10 -d 7 -p ack -e 40 -c 0 -i 4898 -a 0 -x {10.0 9.0 2444 ------- null} - -t 2.78059 -s 10 -d 7 -p ack -e 40 -c 0 -i 4898 -a 0 -x {10.0 9.0 2444 ------- null} h -t 2.78059 -s 10 -d 7 -p ack -e 40 -c 0 -i 4898 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.78066 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4893 -a 0 -x {9.0 10.0 2451 ------- null} + -t 2.78066 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4893 -a 0 -x {9.0 10.0 2451 ------- null} h -t 2.78066 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4893 -a 0 -x {9.0 10.0 2451 ------- null} + -t 2.78069 -s 0 -d 9 -p ack -e 40 -c 0 -i 4890 -a 0 -x {10.0 9.0 2440 ------- null} - -t 2.78069 -s 0 -d 9 -p ack -e 40 -c 0 -i 4890 -a 0 -x {10.0 9.0 2440 ------- null} h -t 2.78069 -s 0 -d 9 -p ack -e 40 -c 0 -i 4890 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.78146 -s 0 -d 9 -p ack -e 40 -c 0 -i 4888 -a 0 -x {10.0 9.0 2439 ------- null} + -t 2.78146 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4899 -a 0 -x {9.0 10.0 2454 ------- null} - -t 2.78146 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4899 -a 0 -x {9.0 10.0 2454 ------- null} h -t 2.78146 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4899 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.78154 -s 10 -d 7 -p ack -e 40 -c 0 -i 4896 -a 0 -x {10.0 9.0 2443 ------- null} + -t 2.78154 -s 7 -d 0 -p ack -e 40 -c 0 -i 4896 -a 0 -x {10.0 9.0 2443 ------- null} h -t 2.78154 -s 7 -d 8 -p ack -e 40 -c 0 -i 4896 -a 0 -x {10.0 9.0 2443 ------- null} r -t 2.78163 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4895 -a 0 -x {9.0 10.0 2452 ------- null} + -t 2.78163 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4895 -a 0 -x {9.0 10.0 2452 ------- null} h -t 2.78163 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4895 -a 0 -x {9.0 10.0 2452 ------- null} + -t 2.7817 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4885 -a 0 -x {9.0 10.0 2447 ------- null} - -t 2.7817 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4885 -a 0 -x {9.0 10.0 2447 ------- null} h -t 2.7817 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4885 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.78181 -s 0 -d 9 -p ack -e 40 -c 0 -i 4892 -a 0 -x {10.0 9.0 2441 ------- null} - -t 2.78181 -s 0 -d 9 -p ack -e 40 -c 0 -i 4892 -a 0 -x {10.0 9.0 2441 ------- null} h -t 2.78181 -s 0 -d 9 -p ack -e 40 -c 0 -i 4892 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.78192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4881 -a 0 -x {9.0 10.0 2445 ------- null} + -t 2.78192 -s 10 -d 7 -p ack -e 40 -c 0 -i 4900 -a 0 -x {10.0 9.0 2445 ------- null} - -t 2.78192 -s 10 -d 7 -p ack -e 40 -c 0 -i 4900 -a 0 -x {10.0 9.0 2445 ------- null} h -t 2.78192 -s 10 -d 7 -p ack -e 40 -c 0 -i 4900 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.78262 -s 10 -d 7 -p ack -e 40 -c 0 -i 4898 -a 0 -x {10.0 9.0 2444 ------- null} + -t 2.78262 -s 7 -d 0 -p ack -e 40 -c 0 -i 4898 -a 0 -x {10.0 9.0 2444 ------- null} h -t 2.78262 -s 7 -d 8 -p ack -e 40 -c 0 -i 4898 -a 0 -x {10.0 9.0 2444 ------- null} r -t 2.78272 -s 0 -d 9 -p ack -e 40 -c 0 -i 4890 -a 0 -x {10.0 9.0 2440 ------- null} + -t 2.78272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4901 -a 0 -x {9.0 10.0 2455 ------- null} - -t 2.78272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4901 -a 0 -x {9.0 10.0 2455 ------- null} h -t 2.78272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4901 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.78278 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4887 -a 0 -x {9.0 10.0 2448 ------- null} - -t 2.78278 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4887 -a 0 -x {9.0 10.0 2448 ------- null} h -t 2.78278 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4887 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.78291 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4897 -a 0 -x {9.0 10.0 2453 ------- null} + -t 2.78291 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4897 -a 0 -x {9.0 10.0 2453 ------- null} h -t 2.78291 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4897 -a 0 -x {9.0 10.0 2453 ------- null} + -t 2.78304 -s 0 -d 9 -p ack -e 40 -c 0 -i 4894 -a 0 -x {10.0 9.0 2442 ------- null} - -t 2.78304 -s 0 -d 9 -p ack -e 40 -c 0 -i 4894 -a 0 -x {10.0 9.0 2442 ------- null} h -t 2.78304 -s 0 -d 9 -p ack -e 40 -c 0 -i 4894 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.78318 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4883 -a 0 -x {9.0 10.0 2446 ------- null} + -t 2.78318 -s 10 -d 7 -p ack -e 40 -c 0 -i 4902 -a 0 -x {10.0 9.0 2446 ------- null} - -t 2.78318 -s 10 -d 7 -p ack -e 40 -c 0 -i 4902 -a 0 -x {10.0 9.0 2446 ------- null} h -t 2.78318 -s 10 -d 7 -p ack -e 40 -c 0 -i 4902 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.78384 -s 0 -d 9 -p ack -e 40 -c 0 -i 4892 -a 0 -x {10.0 9.0 2441 ------- null} + -t 2.78384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4903 -a 0 -x {9.0 10.0 2456 ------- null} - -t 2.78384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4903 -a 0 -x {9.0 10.0 2456 ------- null} h -t 2.78384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4903 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.7839 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4889 -a 0 -x {9.0 10.0 2449 ------- null} - -t 2.7839 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4889 -a 0 -x {9.0 10.0 2449 ------- null} h -t 2.7839 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4889 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.78395 -s 10 -d 7 -p ack -e 40 -c 0 -i 4900 -a 0 -x {10.0 9.0 2445 ------- null} + -t 2.78395 -s 7 -d 0 -p ack -e 40 -c 0 -i 4900 -a 0 -x {10.0 9.0 2445 ------- null} h -t 2.78395 -s 7 -d 8 -p ack -e 40 -c 0 -i 4900 -a 0 -x {10.0 9.0 2445 ------- null} + -t 2.7841 -s 0 -d 9 -p ack -e 40 -c 0 -i 4896 -a 0 -x {10.0 9.0 2443 ------- null} - -t 2.7841 -s 0 -d 9 -p ack -e 40 -c 0 -i 4896 -a 0 -x {10.0 9.0 2443 ------- null} h -t 2.7841 -s 0 -d 9 -p ack -e 40 -c 0 -i 4896 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.78426 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4899 -a 0 -x {9.0 10.0 2454 ------- null} + -t 2.78426 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4899 -a 0 -x {9.0 10.0 2454 ------- null} h -t 2.78426 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4899 -a 0 -x {9.0 10.0 2454 ------- null} r -t 2.7845 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4885 -a 0 -x {9.0 10.0 2447 ------- null} + -t 2.7845 -s 10 -d 7 -p ack -e 40 -c 0 -i 4904 -a 0 -x {10.0 9.0 2447 ------- null} - -t 2.7845 -s 10 -d 7 -p ack -e 40 -c 0 -i 4904 -a 0 -x {10.0 9.0 2447 ------- null} h -t 2.7845 -s 10 -d 7 -p ack -e 40 -c 0 -i 4904 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.78499 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4891 -a 0 -x {9.0 10.0 2450 ------- null} - -t 2.78499 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4891 -a 0 -x {9.0 10.0 2450 ------- null} h -t 2.78499 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4891 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.78507 -s 0 -d 9 -p ack -e 40 -c 0 -i 4894 -a 0 -x {10.0 9.0 2442 ------- null} + -t 2.78507 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4905 -a 0 -x {9.0 10.0 2457 ------- null} - -t 2.78507 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4905 -a 0 -x {9.0 10.0 2457 ------- null} h -t 2.78507 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4905 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.78517 -s 0 -d 9 -p ack -e 40 -c 0 -i 4898 -a 0 -x {10.0 9.0 2444 ------- null} - -t 2.78517 -s 0 -d 9 -p ack -e 40 -c 0 -i 4898 -a 0 -x {10.0 9.0 2444 ------- null} h -t 2.78517 -s 0 -d 9 -p ack -e 40 -c 0 -i 4898 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.78522 -s 10 -d 7 -p ack -e 40 -c 0 -i 4902 -a 0 -x {10.0 9.0 2446 ------- null} + -t 2.78522 -s 7 -d 0 -p ack -e 40 -c 0 -i 4902 -a 0 -x {10.0 9.0 2446 ------- null} h -t 2.78522 -s 7 -d 8 -p ack -e 40 -c 0 -i 4902 -a 0 -x {10.0 9.0 2446 ------- null} r -t 2.78552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4901 -a 0 -x {9.0 10.0 2455 ------- null} + -t 2.78552 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4901 -a 0 -x {9.0 10.0 2455 ------- null} h -t 2.78552 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4901 -a 0 -x {9.0 10.0 2455 ------- null} r -t 2.78558 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4887 -a 0 -x {9.0 10.0 2448 ------- null} + -t 2.78558 -s 10 -d 7 -p ack -e 40 -c 0 -i 4906 -a 0 -x {10.0 9.0 2448 ------- null} - -t 2.78558 -s 10 -d 7 -p ack -e 40 -c 0 -i 4906 -a 0 -x {10.0 9.0 2448 ------- null} h -t 2.78558 -s 10 -d 7 -p ack -e 40 -c 0 -i 4906 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.78608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4893 -a 0 -x {9.0 10.0 2451 ------- null} - -t 2.78608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4893 -a 0 -x {9.0 10.0 2451 ------- null} h -t 2.78608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4893 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.78613 -s 0 -d 9 -p ack -e 40 -c 0 -i 4896 -a 0 -x {10.0 9.0 2443 ------- null} + -t 2.78613 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4907 -a 0 -x {9.0 10.0 2458 ------- null} - -t 2.78613 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4907 -a 0 -x {9.0 10.0 2458 ------- null} h -t 2.78613 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4907 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.7863 -s 0 -d 9 -p ack -e 40 -c 0 -i 4900 -a 0 -x {10.0 9.0 2445 ------- null} - -t 2.7863 -s 0 -d 9 -p ack -e 40 -c 0 -i 4900 -a 0 -x {10.0 9.0 2445 ------- null} h -t 2.7863 -s 0 -d 9 -p ack -e 40 -c 0 -i 4900 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.78653 -s 10 -d 7 -p ack -e 40 -c 0 -i 4904 -a 0 -x {10.0 9.0 2447 ------- null} + -t 2.78653 -s 7 -d 0 -p ack -e 40 -c 0 -i 4904 -a 0 -x {10.0 9.0 2447 ------- null} h -t 2.78653 -s 7 -d 8 -p ack -e 40 -c 0 -i 4904 -a 0 -x {10.0 9.0 2447 ------- null} r -t 2.78664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4903 -a 0 -x {9.0 10.0 2456 ------- null} + -t 2.78664 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4903 -a 0 -x {9.0 10.0 2456 ------- null} h -t 2.78664 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4903 -a 0 -x {9.0 10.0 2456 ------- null} r -t 2.7867 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4889 -a 0 -x {9.0 10.0 2449 ------- null} + -t 2.7867 -s 10 -d 7 -p ack -e 40 -c 0 -i 4908 -a 0 -x {10.0 9.0 2449 ------- null} - -t 2.7867 -s 10 -d 7 -p ack -e 40 -c 0 -i 4908 -a 0 -x {10.0 9.0 2449 ------- null} h -t 2.7867 -s 10 -d 7 -p ack -e 40 -c 0 -i 4908 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.78717 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4895 -a 0 -x {9.0 10.0 2452 ------- null} - -t 2.78717 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4895 -a 0 -x {9.0 10.0 2452 ------- null} h -t 2.78717 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4895 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.7872 -s 0 -d 9 -p ack -e 40 -c 0 -i 4898 -a 0 -x {10.0 9.0 2444 ------- null} + -t 2.7872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4909 -a 0 -x {9.0 10.0 2459 ------- null} - -t 2.7872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4909 -a 0 -x {9.0 10.0 2459 ------- null} h -t 2.7872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4909 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.78733 -s 0 -d 9 -p ack -e 40 -c 0 -i 4902 -a 0 -x {10.0 9.0 2446 ------- null} - -t 2.78733 -s 0 -d 9 -p ack -e 40 -c 0 -i 4902 -a 0 -x {10.0 9.0 2446 ------- null} h -t 2.78733 -s 0 -d 9 -p ack -e 40 -c 0 -i 4902 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.78762 -s 10 -d 7 -p ack -e 40 -c 0 -i 4906 -a 0 -x {10.0 9.0 2448 ------- null} + -t 2.78762 -s 7 -d 0 -p ack -e 40 -c 0 -i 4906 -a 0 -x {10.0 9.0 2448 ------- null} h -t 2.78762 -s 7 -d 8 -p ack -e 40 -c 0 -i 4906 -a 0 -x {10.0 9.0 2448 ------- null} r -t 2.78779 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4891 -a 0 -x {9.0 10.0 2450 ------- null} + -t 2.78779 -s 10 -d 7 -p ack -e 40 -c 0 -i 4910 -a 0 -x {10.0 9.0 2450 ------- null} - -t 2.78779 -s 10 -d 7 -p ack -e 40 -c 0 -i 4910 -a 0 -x {10.0 9.0 2450 ------- null} h -t 2.78779 -s 10 -d 7 -p ack -e 40 -c 0 -i 4910 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.78787 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4905 -a 0 -x {9.0 10.0 2457 ------- null} + -t 2.78787 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4905 -a 0 -x {9.0 10.0 2457 ------- null} h -t 2.78787 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4905 -a 0 -x {9.0 10.0 2457 ------- null} + -t 2.78826 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4897 -a 0 -x {9.0 10.0 2453 ------- null} - -t 2.78826 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4897 -a 0 -x {9.0 10.0 2453 ------- null} h -t 2.78826 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4897 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.78834 -s 0 -d 9 -p ack -e 40 -c 0 -i 4900 -a 0 -x {10.0 9.0 2445 ------- null} + -t 2.78834 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4911 -a 0 -x {9.0 10.0 2460 ------- null} - -t 2.78834 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4911 -a 0 -x {9.0 10.0 2460 ------- null} h -t 2.78834 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4911 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.78837 -s 0 -d 9 -p ack -e 40 -c 0 -i 4904 -a 0 -x {10.0 9.0 2447 ------- null} - -t 2.78837 -s 0 -d 9 -p ack -e 40 -c 0 -i 4904 -a 0 -x {10.0 9.0 2447 ------- null} h -t 2.78837 -s 0 -d 9 -p ack -e 40 -c 0 -i 4904 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.78874 -s 10 -d 7 -p ack -e 40 -c 0 -i 4908 -a 0 -x {10.0 9.0 2449 ------- null} + -t 2.78874 -s 7 -d 0 -p ack -e 40 -c 0 -i 4908 -a 0 -x {10.0 9.0 2449 ------- null} h -t 2.78874 -s 7 -d 8 -p ack -e 40 -c 0 -i 4908 -a 0 -x {10.0 9.0 2449 ------- null} r -t 2.78888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4893 -a 0 -x {9.0 10.0 2451 ------- null} + -t 2.78888 -s 10 -d 7 -p ack -e 40 -c 0 -i 4912 -a 0 -x {10.0 9.0 2451 ------- null} - -t 2.78888 -s 10 -d 7 -p ack -e 40 -c 0 -i 4912 -a 0 -x {10.0 9.0 2451 ------- null} h -t 2.78888 -s 10 -d 7 -p ack -e 40 -c 0 -i 4912 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.78893 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4907 -a 0 -x {9.0 10.0 2458 ------- null} + -t 2.78893 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4907 -a 0 -x {9.0 10.0 2458 ------- null} h -t 2.78893 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4907 -a 0 -x {9.0 10.0 2458 ------- null} + -t 2.78934 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4899 -a 0 -x {9.0 10.0 2454 ------- null} - -t 2.78934 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4899 -a 0 -x {9.0 10.0 2454 ------- null} h -t 2.78934 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4899 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.78936 -s 0 -d 9 -p ack -e 40 -c 0 -i 4902 -a 0 -x {10.0 9.0 2446 ------- null} + -t 2.78936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4913 -a 0 -x {9.0 10.0 2461 ------- null} - -t 2.78936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4913 -a 0 -x {9.0 10.0 2461 ------- null} h -t 2.78936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4913 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.78963 -s 0 -d 9 -p ack -e 40 -c 0 -i 4906 -a 0 -x {10.0 9.0 2448 ------- null} - -t 2.78963 -s 0 -d 9 -p ack -e 40 -c 0 -i 4906 -a 0 -x {10.0 9.0 2448 ------- null} h -t 2.78963 -s 0 -d 9 -p ack -e 40 -c 0 -i 4906 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.78982 -s 10 -d 7 -p ack -e 40 -c 0 -i 4910 -a 0 -x {10.0 9.0 2450 ------- null} + -t 2.78982 -s 7 -d 0 -p ack -e 40 -c 0 -i 4910 -a 0 -x {10.0 9.0 2450 ------- null} h -t 2.78982 -s 7 -d 8 -p ack -e 40 -c 0 -i 4910 -a 0 -x {10.0 9.0 2450 ------- null} r -t 2.78997 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4895 -a 0 -x {9.0 10.0 2452 ------- null} + -t 2.78997 -s 10 -d 7 -p ack -e 40 -c 0 -i 4914 -a 0 -x {10.0 9.0 2452 ------- null} - -t 2.78997 -s 10 -d 7 -p ack -e 40 -c 0 -i 4914 -a 0 -x {10.0 9.0 2452 ------- null} h -t 2.78997 -s 10 -d 7 -p ack -e 40 -c 0 -i 4914 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.79 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4909 -a 0 -x {9.0 10.0 2459 ------- null} + -t 2.79 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4909 -a 0 -x {9.0 10.0 2459 ------- null} h -t 2.79 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4909 -a 0 -x {9.0 10.0 2459 ------- null} r -t 2.7904 -s 0 -d 9 -p ack -e 40 -c 0 -i 4904 -a 0 -x {10.0 9.0 2447 ------- null} + -t 2.7904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4915 -a 0 -x {9.0 10.0 2462 ------- null} - -t 2.7904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4915 -a 0 -x {9.0 10.0 2462 ------- null} h -t 2.7904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4915 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.79051 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4901 -a 0 -x {9.0 10.0 2455 ------- null} - -t 2.79051 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4901 -a 0 -x {9.0 10.0 2455 ------- null} h -t 2.79051 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4901 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.79082 -s 0 -d 9 -p ack -e 40 -c 0 -i 4908 -a 0 -x {10.0 9.0 2449 ------- null} - -t 2.79082 -s 0 -d 9 -p ack -e 40 -c 0 -i 4908 -a 0 -x {10.0 9.0 2449 ------- null} h -t 2.79082 -s 0 -d 9 -p ack -e 40 -c 0 -i 4908 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.79091 -s 10 -d 7 -p ack -e 40 -c 0 -i 4912 -a 0 -x {10.0 9.0 2451 ------- null} + -t 2.79091 -s 7 -d 0 -p ack -e 40 -c 0 -i 4912 -a 0 -x {10.0 9.0 2451 ------- null} h -t 2.79091 -s 7 -d 8 -p ack -e 40 -c 0 -i 4912 -a 0 -x {10.0 9.0 2451 ------- null} r -t 2.79106 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4897 -a 0 -x {9.0 10.0 2453 ------- null} + -t 2.79106 -s 10 -d 7 -p ack -e 40 -c 0 -i 4916 -a 0 -x {10.0 9.0 2453 ------- null} - -t 2.79106 -s 10 -d 7 -p ack -e 40 -c 0 -i 4916 -a 0 -x {10.0 9.0 2453 ------- null} h -t 2.79106 -s 10 -d 7 -p ack -e 40 -c 0 -i 4916 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.79114 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4911 -a 0 -x {9.0 10.0 2460 ------- null} + -t 2.79114 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4911 -a 0 -x {9.0 10.0 2460 ------- null} h -t 2.79114 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4911 -a 0 -x {9.0 10.0 2460 ------- null} r -t 2.79166 -s 0 -d 9 -p ack -e 40 -c 0 -i 4906 -a 0 -x {10.0 9.0 2448 ------- null} + -t 2.79166 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4917 -a 0 -x {9.0 10.0 2463 ------- null} - -t 2.79166 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4917 -a 0 -x {9.0 10.0 2463 ------- null} h -t 2.79166 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4917 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.79173 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4903 -a 0 -x {9.0 10.0 2456 ------- null} - -t 2.79173 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4903 -a 0 -x {9.0 10.0 2456 ------- null} h -t 2.79173 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4903 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.79195 -s 0 -d 9 -p ack -e 40 -c 0 -i 4910 -a 0 -x {10.0 9.0 2450 ------- null} - -t 2.79195 -s 0 -d 9 -p ack -e 40 -c 0 -i 4910 -a 0 -x {10.0 9.0 2450 ------- null} h -t 2.79195 -s 0 -d 9 -p ack -e 40 -c 0 -i 4910 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.792 -s 10 -d 7 -p ack -e 40 -c 0 -i 4914 -a 0 -x {10.0 9.0 2452 ------- null} + -t 2.792 -s 7 -d 0 -p ack -e 40 -c 0 -i 4914 -a 0 -x {10.0 9.0 2452 ------- null} h -t 2.792 -s 7 -d 8 -p ack -e 40 -c 0 -i 4914 -a 0 -x {10.0 9.0 2452 ------- null} r -t 2.79214 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4899 -a 0 -x {9.0 10.0 2454 ------- null} + -t 2.79214 -s 10 -d 7 -p ack -e 40 -c 0 -i 4918 -a 0 -x {10.0 9.0 2454 ------- null} - -t 2.79214 -s 10 -d 7 -p ack -e 40 -c 0 -i 4918 -a 0 -x {10.0 9.0 2454 ------- null} h -t 2.79214 -s 10 -d 7 -p ack -e 40 -c 0 -i 4918 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.79216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4913 -a 0 -x {9.0 10.0 2461 ------- null} + -t 2.79216 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4913 -a 0 -x {9.0 10.0 2461 ------- null} h -t 2.79216 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4913 -a 0 -x {9.0 10.0 2461 ------- null} + -t 2.79282 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4905 -a 0 -x {9.0 10.0 2457 ------- null} - -t 2.79282 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4905 -a 0 -x {9.0 10.0 2457 ------- null} h -t 2.79282 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4905 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.79285 -s 0 -d 9 -p ack -e 40 -c 0 -i 4908 -a 0 -x {10.0 9.0 2449 ------- null} + -t 2.79285 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4919 -a 0 -x {9.0 10.0 2464 ------- null} - -t 2.79285 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4919 -a 0 -x {9.0 10.0 2464 ------- null} h -t 2.79285 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4919 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.79299 -s 0 -d 9 -p ack -e 40 -c 0 -i 4912 -a 0 -x {10.0 9.0 2451 ------- null} - -t 2.79299 -s 0 -d 9 -p ack -e 40 -c 0 -i 4912 -a 0 -x {10.0 9.0 2451 ------- null} h -t 2.79299 -s 0 -d 9 -p ack -e 40 -c 0 -i 4912 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.79309 -s 10 -d 7 -p ack -e 40 -c 0 -i 4916 -a 0 -x {10.0 9.0 2453 ------- null} + -t 2.79309 -s 7 -d 0 -p ack -e 40 -c 0 -i 4916 -a 0 -x {10.0 9.0 2453 ------- null} h -t 2.79309 -s 7 -d 8 -p ack -e 40 -c 0 -i 4916 -a 0 -x {10.0 9.0 2453 ------- null} r -t 2.7932 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4915 -a 0 -x {9.0 10.0 2462 ------- null} + -t 2.7932 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4915 -a 0 -x {9.0 10.0 2462 ------- null} h -t 2.7932 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4915 -a 0 -x {9.0 10.0 2462 ------- null} r -t 2.79331 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4901 -a 0 -x {9.0 10.0 2455 ------- null} + -t 2.79331 -s 10 -d 7 -p ack -e 40 -c 0 -i 4920 -a 0 -x {10.0 9.0 2455 ------- null} - -t 2.79331 -s 10 -d 7 -p ack -e 40 -c 0 -i 4920 -a 0 -x {10.0 9.0 2455 ------- null} h -t 2.79331 -s 10 -d 7 -p ack -e 40 -c 0 -i 4920 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.7939 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4907 -a 0 -x {9.0 10.0 2458 ------- null} - -t 2.7939 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4907 -a 0 -x {9.0 10.0 2458 ------- null} h -t 2.7939 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4907 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.79398 -s 0 -d 9 -p ack -e 40 -c 0 -i 4910 -a 0 -x {10.0 9.0 2450 ------- null} + -t 2.79398 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4921 -a 0 -x {9.0 10.0 2465 ------- null} - -t 2.79398 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4921 -a 0 -x {9.0 10.0 2465 ------- null} h -t 2.79398 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4921 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.7941 -s 0 -d 9 -p ack -e 40 -c 0 -i 4914 -a 0 -x {10.0 9.0 2452 ------- null} - -t 2.7941 -s 0 -d 9 -p ack -e 40 -c 0 -i 4914 -a 0 -x {10.0 9.0 2452 ------- null} h -t 2.7941 -s 0 -d 9 -p ack -e 40 -c 0 -i 4914 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.79418 -s 10 -d 7 -p ack -e 40 -c 0 -i 4918 -a 0 -x {10.0 9.0 2454 ------- null} + -t 2.79418 -s 7 -d 0 -p ack -e 40 -c 0 -i 4918 -a 0 -x {10.0 9.0 2454 ------- null} h -t 2.79418 -s 7 -d 8 -p ack -e 40 -c 0 -i 4918 -a 0 -x {10.0 9.0 2454 ------- null} r -t 2.79446 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4917 -a 0 -x {9.0 10.0 2463 ------- null} + -t 2.79446 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4917 -a 0 -x {9.0 10.0 2463 ------- null} h -t 2.79446 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4917 -a 0 -x {9.0 10.0 2463 ------- null} r -t 2.79453 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4903 -a 0 -x {9.0 10.0 2456 ------- null} + -t 2.79453 -s 10 -d 7 -p ack -e 40 -c 0 -i 4922 -a 0 -x {10.0 9.0 2456 ------- null} - -t 2.79453 -s 10 -d 7 -p ack -e 40 -c 0 -i 4922 -a 0 -x {10.0 9.0 2456 ------- null} h -t 2.79453 -s 10 -d 7 -p ack -e 40 -c 0 -i 4922 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.79499 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4909 -a 0 -x {9.0 10.0 2459 ------- null} - -t 2.79499 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4909 -a 0 -x {9.0 10.0 2459 ------- null} h -t 2.79499 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4909 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.79502 -s 0 -d 9 -p ack -e 40 -c 0 -i 4912 -a 0 -x {10.0 9.0 2451 ------- null} + -t 2.79502 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4923 -a 0 -x {9.0 10.0 2466 ------- null} - -t 2.79502 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4923 -a 0 -x {9.0 10.0 2466 ------- null} h -t 2.79502 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4923 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.79509 -s 0 -d 9 -p ack -e 40 -c 0 -i 4916 -a 0 -x {10.0 9.0 2453 ------- null} - -t 2.79509 -s 0 -d 9 -p ack -e 40 -c 0 -i 4916 -a 0 -x {10.0 9.0 2453 ------- null} h -t 2.79509 -s 0 -d 9 -p ack -e 40 -c 0 -i 4916 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.79534 -s 10 -d 7 -p ack -e 40 -c 0 -i 4920 -a 0 -x {10.0 9.0 2455 ------- null} + -t 2.79534 -s 7 -d 0 -p ack -e 40 -c 0 -i 4920 -a 0 -x {10.0 9.0 2455 ------- null} h -t 2.79534 -s 7 -d 8 -p ack -e 40 -c 0 -i 4920 -a 0 -x {10.0 9.0 2455 ------- null} r -t 2.79562 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4905 -a 0 -x {9.0 10.0 2457 ------- null} + -t 2.79562 -s 10 -d 7 -p ack -e 40 -c 0 -i 4924 -a 0 -x {10.0 9.0 2457 ------- null} - -t 2.79562 -s 10 -d 7 -p ack -e 40 -c 0 -i 4924 -a 0 -x {10.0 9.0 2457 ------- null} h -t 2.79562 -s 10 -d 7 -p ack -e 40 -c 0 -i 4924 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.79565 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4919 -a 0 -x {9.0 10.0 2464 ------- null} + -t 2.79565 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4919 -a 0 -x {9.0 10.0 2464 ------- null} h -t 2.79565 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4919 -a 0 -x {9.0 10.0 2464 ------- null} + -t 2.79608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4911 -a 0 -x {9.0 10.0 2460 ------- null} - -t 2.79608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4911 -a 0 -x {9.0 10.0 2460 ------- null} h -t 2.79608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4911 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.79613 -s 0 -d 9 -p ack -e 40 -c 0 -i 4914 -a 0 -x {10.0 9.0 2452 ------- null} + -t 2.79613 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4925 -a 0 -x {9.0 10.0 2467 ------- null} - -t 2.79613 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4925 -a 0 -x {9.0 10.0 2467 ------- null} h -t 2.79613 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4925 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.79629 -s 0 -d 9 -p ack -e 40 -c 0 -i 4918 -a 0 -x {10.0 9.0 2454 ------- null} - -t 2.79629 -s 0 -d 9 -p ack -e 40 -c 0 -i 4918 -a 0 -x {10.0 9.0 2454 ------- null} h -t 2.79629 -s 0 -d 9 -p ack -e 40 -c 0 -i 4918 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.79656 -s 10 -d 7 -p ack -e 40 -c 0 -i 4922 -a 0 -x {10.0 9.0 2456 ------- null} + -t 2.79656 -s 7 -d 0 -p ack -e 40 -c 0 -i 4922 -a 0 -x {10.0 9.0 2456 ------- null} h -t 2.79656 -s 7 -d 8 -p ack -e 40 -c 0 -i 4922 -a 0 -x {10.0 9.0 2456 ------- null} r -t 2.7967 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4907 -a 0 -x {9.0 10.0 2458 ------- null} + -t 2.7967 -s 10 -d 7 -p ack -e 40 -c 0 -i 4926 -a 0 -x {10.0 9.0 2458 ------- null} - -t 2.7967 -s 10 -d 7 -p ack -e 40 -c 0 -i 4926 -a 0 -x {10.0 9.0 2458 ------- null} h -t 2.7967 -s 10 -d 7 -p ack -e 40 -c 0 -i 4926 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.79678 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4921 -a 0 -x {9.0 10.0 2465 ------- null} + -t 2.79678 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4921 -a 0 -x {9.0 10.0 2465 ------- null} h -t 2.79678 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4921 -a 0 -x {9.0 10.0 2465 ------- null} r -t 2.79712 -s 0 -d 9 -p ack -e 40 -c 0 -i 4916 -a 0 -x {10.0 9.0 2453 ------- null} + -t 2.79712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4927 -a 0 -x {9.0 10.0 2468 ------- null} - -t 2.79712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4927 -a 0 -x {9.0 10.0 2468 ------- null} h -t 2.79712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4927 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.79717 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4913 -a 0 -x {9.0 10.0 2461 ------- null} - -t 2.79717 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4913 -a 0 -x {9.0 10.0 2461 ------- null} h -t 2.79717 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4913 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.79739 -s 0 -d 9 -p ack -e 40 -c 0 -i 4920 -a 0 -x {10.0 9.0 2455 ------- null} - -t 2.79739 -s 0 -d 9 -p ack -e 40 -c 0 -i 4920 -a 0 -x {10.0 9.0 2455 ------- null} h -t 2.79739 -s 0 -d 9 -p ack -e 40 -c 0 -i 4920 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.79765 -s 10 -d 7 -p ack -e 40 -c 0 -i 4924 -a 0 -x {10.0 9.0 2457 ------- null} + -t 2.79765 -s 7 -d 0 -p ack -e 40 -c 0 -i 4924 -a 0 -x {10.0 9.0 2457 ------- null} h -t 2.79765 -s 7 -d 8 -p ack -e 40 -c 0 -i 4924 -a 0 -x {10.0 9.0 2457 ------- null} r -t 2.79779 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4909 -a 0 -x {9.0 10.0 2459 ------- null} + -t 2.79779 -s 10 -d 7 -p ack -e 40 -c 0 -i 4928 -a 0 -x {10.0 9.0 2459 ------- null} - -t 2.79779 -s 10 -d 7 -p ack -e 40 -c 0 -i 4928 -a 0 -x {10.0 9.0 2459 ------- null} h -t 2.79779 -s 10 -d 7 -p ack -e 40 -c 0 -i 4928 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.79782 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4923 -a 0 -x {9.0 10.0 2466 ------- null} + -t 2.79782 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4923 -a 0 -x {9.0 10.0 2466 ------- null} h -t 2.79782 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4923 -a 0 -x {9.0 10.0 2466 ------- null} + -t 2.79826 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4915 -a 0 -x {9.0 10.0 2462 ------- null} - -t 2.79826 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4915 -a 0 -x {9.0 10.0 2462 ------- null} h -t 2.79826 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4915 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.79832 -s 0 -d 9 -p ack -e 40 -c 0 -i 4918 -a 0 -x {10.0 9.0 2454 ------- null} + -t 2.79832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4929 -a 0 -x {9.0 10.0 2469 ------- null} - -t 2.79832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4929 -a 0 -x {9.0 10.0 2469 ------- null} h -t 2.79832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4929 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.79842 -s 0 -d 9 -p ack -e 40 -c 0 -i 4922 -a 0 -x {10.0 9.0 2456 ------- null} - -t 2.79842 -s 0 -d 9 -p ack -e 40 -c 0 -i 4922 -a 0 -x {10.0 9.0 2456 ------- null} h -t 2.79842 -s 0 -d 9 -p ack -e 40 -c 0 -i 4922 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.79874 -s 10 -d 7 -p ack -e 40 -c 0 -i 4926 -a 0 -x {10.0 9.0 2458 ------- null} + -t 2.79874 -s 7 -d 0 -p ack -e 40 -c 0 -i 4926 -a 0 -x {10.0 9.0 2458 ------- null} h -t 2.79874 -s 7 -d 8 -p ack -e 40 -c 0 -i 4926 -a 0 -x {10.0 9.0 2458 ------- null} r -t 2.79888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4911 -a 0 -x {9.0 10.0 2460 ------- null} + -t 2.79888 -s 10 -d 7 -p ack -e 40 -c 0 -i 4930 -a 0 -x {10.0 9.0 2460 ------- null} - -t 2.79888 -s 10 -d 7 -p ack -e 40 -c 0 -i 4930 -a 0 -x {10.0 9.0 2460 ------- null} h -t 2.79888 -s 10 -d 7 -p ack -e 40 -c 0 -i 4930 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.79893 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4925 -a 0 -x {9.0 10.0 2467 ------- null} + -t 2.79893 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4925 -a 0 -x {9.0 10.0 2467 ------- null} h -t 2.79893 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4925 -a 0 -x {9.0 10.0 2467 ------- null} + -t 2.79934 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4917 -a 0 -x {9.0 10.0 2463 ------- null} - -t 2.79934 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4917 -a 0 -x {9.0 10.0 2463 ------- null} h -t 2.79934 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4917 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.79942 -s 0 -d 9 -p ack -e 40 -c 0 -i 4920 -a 0 -x {10.0 9.0 2455 ------- null} + -t 2.79942 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4931 -a 0 -x {9.0 10.0 2470 ------- null} - -t 2.79942 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4931 -a 0 -x {9.0 10.0 2470 ------- null} h -t 2.79942 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4931 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.79955 -s 0 -d 9 -p ack -e 40 -c 0 -i 4924 -a 0 -x {10.0 9.0 2457 ------- null} - -t 2.79955 -s 0 -d 9 -p ack -e 40 -c 0 -i 4924 -a 0 -x {10.0 9.0 2457 ------- null} h -t 2.79955 -s 0 -d 9 -p ack -e 40 -c 0 -i 4924 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.79982 -s 10 -d 7 -p ack -e 40 -c 0 -i 4928 -a 0 -x {10.0 9.0 2459 ------- null} + -t 2.79982 -s 7 -d 0 -p ack -e 40 -c 0 -i 4928 -a 0 -x {10.0 9.0 2459 ------- null} h -t 2.79982 -s 7 -d 8 -p ack -e 40 -c 0 -i 4928 -a 0 -x {10.0 9.0 2459 ------- null} r -t 2.79992 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4927 -a 0 -x {9.0 10.0 2468 ------- null} + -t 2.79992 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4927 -a 0 -x {9.0 10.0 2468 ------- null} h -t 2.79992 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4927 -a 0 -x {9.0 10.0 2468 ------- null} r -t 2.79997 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4913 -a 0 -x {9.0 10.0 2461 ------- null} + -t 2.79997 -s 10 -d 7 -p ack -e 40 -c 0 -i 4932 -a 0 -x {10.0 9.0 2461 ------- null} - -t 2.79997 -s 10 -d 7 -p ack -e 40 -c 0 -i 4932 -a 0 -x {10.0 9.0 2461 ------- null} h -t 2.79997 -s 10 -d 7 -p ack -e 40 -c 0 -i 4932 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.80043 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4919 -a 0 -x {9.0 10.0 2464 ------- null} - -t 2.80043 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4919 -a 0 -x {9.0 10.0 2464 ------- null} h -t 2.80043 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4919 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.80045 -s 0 -d 9 -p ack -e 40 -c 0 -i 4922 -a 0 -x {10.0 9.0 2456 ------- null} + -t 2.80045 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4933 -a 0 -x {9.0 10.0 2471 ------- null} - -t 2.80045 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4933 -a 0 -x {9.0 10.0 2471 ------- null} h -t 2.80045 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4933 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.80064 -s 0 -d 9 -p ack -e 40 -c 0 -i 4926 -a 0 -x {10.0 9.0 2458 ------- null} - -t 2.80064 -s 0 -d 9 -p ack -e 40 -c 0 -i 4926 -a 0 -x {10.0 9.0 2458 ------- null} h -t 2.80064 -s 0 -d 9 -p ack -e 40 -c 0 -i 4926 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.80091 -s 10 -d 7 -p ack -e 40 -c 0 -i 4930 -a 0 -x {10.0 9.0 2460 ------- null} + -t 2.80091 -s 7 -d 0 -p ack -e 40 -c 0 -i 4930 -a 0 -x {10.0 9.0 2460 ------- null} h -t 2.80091 -s 7 -d 8 -p ack -e 40 -c 0 -i 4930 -a 0 -x {10.0 9.0 2460 ------- null} r -t 2.80106 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4915 -a 0 -x {9.0 10.0 2462 ------- null} + -t 2.80106 -s 10 -d 7 -p ack -e 40 -c 0 -i 4934 -a 0 -x {10.0 9.0 2462 ------- null} - -t 2.80106 -s 10 -d 7 -p ack -e 40 -c 0 -i 4934 -a 0 -x {10.0 9.0 2462 ------- null} h -t 2.80106 -s 10 -d 7 -p ack -e 40 -c 0 -i 4934 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.80112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4929 -a 0 -x {9.0 10.0 2469 ------- null} + -t 2.80112 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4929 -a 0 -x {9.0 10.0 2469 ------- null} h -t 2.80112 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4929 -a 0 -x {9.0 10.0 2469 ------- null} + -t 2.80152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4921 -a 0 -x {9.0 10.0 2465 ------- null} - -t 2.80152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4921 -a 0 -x {9.0 10.0 2465 ------- null} h -t 2.80152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4921 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.80158 -s 0 -d 9 -p ack -e 40 -c 0 -i 4924 -a 0 -x {10.0 9.0 2457 ------- null} + -t 2.80158 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4935 -a 0 -x {9.0 10.0 2472 ------- null} - -t 2.80158 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4935 -a 0 -x {9.0 10.0 2472 ------- null} h -t 2.80158 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4935 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.80176 -s 0 -d 9 -p ack -e 40 -c 0 -i 4928 -a 0 -x {10.0 9.0 2459 ------- null} - -t 2.80176 -s 0 -d 9 -p ack -e 40 -c 0 -i 4928 -a 0 -x {10.0 9.0 2459 ------- null} h -t 2.80176 -s 0 -d 9 -p ack -e 40 -c 0 -i 4928 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.802 -s 10 -d 7 -p ack -e 40 -c 0 -i 4932 -a 0 -x {10.0 9.0 2461 ------- null} + -t 2.802 -s 7 -d 0 -p ack -e 40 -c 0 -i 4932 -a 0 -x {10.0 9.0 2461 ------- null} h -t 2.802 -s 7 -d 8 -p ack -e 40 -c 0 -i 4932 -a 0 -x {10.0 9.0 2461 ------- null} r -t 2.80214 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4917 -a 0 -x {9.0 10.0 2463 ------- null} + -t 2.80214 -s 10 -d 7 -p ack -e 40 -c 0 -i 4936 -a 0 -x {10.0 9.0 2463 ------- null} - -t 2.80214 -s 10 -d 7 -p ack -e 40 -c 0 -i 4936 -a 0 -x {10.0 9.0 2463 ------- null} h -t 2.80214 -s 10 -d 7 -p ack -e 40 -c 0 -i 4936 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.80222 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4931 -a 0 -x {9.0 10.0 2470 ------- null} + -t 2.80222 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4931 -a 0 -x {9.0 10.0 2470 ------- null} h -t 2.80222 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4931 -a 0 -x {9.0 10.0 2470 ------- null} + -t 2.80261 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4923 -a 0 -x {9.0 10.0 2466 ------- null} - -t 2.80261 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4923 -a 0 -x {9.0 10.0 2466 ------- null} h -t 2.80261 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4923 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.80267 -s 0 -d 9 -p ack -e 40 -c 0 -i 4926 -a 0 -x {10.0 9.0 2458 ------- null} + -t 2.80267 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4937 -a 0 -x {9.0 10.0 2473 ------- null} - -t 2.80267 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4937 -a 0 -x {9.0 10.0 2473 ------- null} h -t 2.80267 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4937 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.80274 -s 0 -d 9 -p ack -e 40 -c 0 -i 4930 -a 0 -x {10.0 9.0 2460 ------- null} - -t 2.80274 -s 0 -d 9 -p ack -e 40 -c 0 -i 4930 -a 0 -x {10.0 9.0 2460 ------- null} h -t 2.80274 -s 0 -d 9 -p ack -e 40 -c 0 -i 4930 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.80309 -s 10 -d 7 -p ack -e 40 -c 0 -i 4934 -a 0 -x {10.0 9.0 2462 ------- null} + -t 2.80309 -s 7 -d 0 -p ack -e 40 -c 0 -i 4934 -a 0 -x {10.0 9.0 2462 ------- null} h -t 2.80309 -s 7 -d 8 -p ack -e 40 -c 0 -i 4934 -a 0 -x {10.0 9.0 2462 ------- null} r -t 2.80323 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4919 -a 0 -x {9.0 10.0 2464 ------- null} + -t 2.80323 -s 10 -d 7 -p ack -e 40 -c 0 -i 4938 -a 0 -x {10.0 9.0 2464 ------- null} - -t 2.80323 -s 10 -d 7 -p ack -e 40 -c 0 -i 4938 -a 0 -x {10.0 9.0 2464 ------- null} h -t 2.80323 -s 10 -d 7 -p ack -e 40 -c 0 -i 4938 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.80325 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4933 -a 0 -x {9.0 10.0 2471 ------- null} + -t 2.80325 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4933 -a 0 -x {9.0 10.0 2471 ------- null} h -t 2.80325 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4933 -a 0 -x {9.0 10.0 2471 ------- null} + -t 2.8037 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4925 -a 0 -x {9.0 10.0 2467 ------- null} - -t 2.8037 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4925 -a 0 -x {9.0 10.0 2467 ------- null} h -t 2.8037 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4925 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.80379 -s 0 -d 9 -p ack -e 40 -c 0 -i 4928 -a 0 -x {10.0 9.0 2459 ------- null} + -t 2.80379 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4939 -a 0 -x {9.0 10.0 2474 ------- null} - -t 2.80379 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4939 -a 0 -x {9.0 10.0 2474 ------- null} h -t 2.80379 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4939 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.80398 -s 0 -d 9 -p ack -e 40 -c 0 -i 4932 -a 0 -x {10.0 9.0 2461 ------- null} - -t 2.80398 -s 0 -d 9 -p ack -e 40 -c 0 -i 4932 -a 0 -x {10.0 9.0 2461 ------- null} h -t 2.80398 -s 0 -d 9 -p ack -e 40 -c 0 -i 4932 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.80418 -s 10 -d 7 -p ack -e 40 -c 0 -i 4936 -a 0 -x {10.0 9.0 2463 ------- null} + -t 2.80418 -s 7 -d 0 -p ack -e 40 -c 0 -i 4936 -a 0 -x {10.0 9.0 2463 ------- null} h -t 2.80418 -s 7 -d 8 -p ack -e 40 -c 0 -i 4936 -a 0 -x {10.0 9.0 2463 ------- null} r -t 2.80432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4921 -a 0 -x {9.0 10.0 2465 ------- null} + -t 2.80432 -s 10 -d 7 -p ack -e 40 -c 0 -i 4940 -a 0 -x {10.0 9.0 2465 ------- null} - -t 2.80432 -s 10 -d 7 -p ack -e 40 -c 0 -i 4940 -a 0 -x {10.0 9.0 2465 ------- null} h -t 2.80432 -s 10 -d 7 -p ack -e 40 -c 0 -i 4940 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.80438 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4935 -a 0 -x {9.0 10.0 2472 ------- null} + -t 2.80438 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4935 -a 0 -x {9.0 10.0 2472 ------- null} h -t 2.80438 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4935 -a 0 -x {9.0 10.0 2472 ------- null} r -t 2.80477 -s 0 -d 9 -p ack -e 40 -c 0 -i 4930 -a 0 -x {10.0 9.0 2460 ------- null} + -t 2.80477 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4941 -a 0 -x {9.0 10.0 2475 ------- null} - -t 2.80477 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4941 -a 0 -x {9.0 10.0 2475 ------- null} h -t 2.80477 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4941 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.80486 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4927 -a 0 -x {9.0 10.0 2468 ------- null} - -t 2.80486 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4927 -a 0 -x {9.0 10.0 2468 ------- null} h -t 2.80486 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4927 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.80514 -s 0 -d 9 -p ack -e 40 -c 0 -i 4934 -a 0 -x {10.0 9.0 2462 ------- null} - -t 2.80514 -s 0 -d 9 -p ack -e 40 -c 0 -i 4934 -a 0 -x {10.0 9.0 2462 ------- null} h -t 2.80514 -s 0 -d 9 -p ack -e 40 -c 0 -i 4934 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.80526 -s 10 -d 7 -p ack -e 40 -c 0 -i 4938 -a 0 -x {10.0 9.0 2464 ------- null} + -t 2.80526 -s 7 -d 0 -p ack -e 40 -c 0 -i 4938 -a 0 -x {10.0 9.0 2464 ------- null} h -t 2.80526 -s 7 -d 8 -p ack -e 40 -c 0 -i 4938 -a 0 -x {10.0 9.0 2464 ------- null} r -t 2.80541 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4923 -a 0 -x {9.0 10.0 2466 ------- null} + -t 2.80541 -s 10 -d 7 -p ack -e 40 -c 0 -i 4942 -a 0 -x {10.0 9.0 2466 ------- null} - -t 2.80541 -s 10 -d 7 -p ack -e 40 -c 0 -i 4942 -a 0 -x {10.0 9.0 2466 ------- null} h -t 2.80541 -s 10 -d 7 -p ack -e 40 -c 0 -i 4942 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.80547 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4937 -a 0 -x {9.0 10.0 2473 ------- null} + -t 2.80547 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4937 -a 0 -x {9.0 10.0 2473 ------- null} h -t 2.80547 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4937 -a 0 -x {9.0 10.0 2473 ------- null} r -t 2.80602 -s 0 -d 9 -p ack -e 40 -c 0 -i 4932 -a 0 -x {10.0 9.0 2461 ------- null} + -t 2.80602 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4943 -a 0 -x {9.0 10.0 2476 ------- null} - -t 2.80602 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4943 -a 0 -x {9.0 10.0 2476 ------- null} h -t 2.80602 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4943 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.8061 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4929 -a 0 -x {9.0 10.0 2469 ------- null} - -t 2.8061 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4929 -a 0 -x {9.0 10.0 2469 ------- null} h -t 2.8061 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4929 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.80635 -s 10 -d 7 -p ack -e 40 -c 0 -i 4940 -a 0 -x {10.0 9.0 2465 ------- null} + -t 2.80635 -s 7 -d 0 -p ack -e 40 -c 0 -i 4940 -a 0 -x {10.0 9.0 2465 ------- null} h -t 2.80635 -s 7 -d 8 -p ack -e 40 -c 0 -i 4940 -a 0 -x {10.0 9.0 2465 ------- null} + -t 2.80635 -s 0 -d 9 -p ack -e 40 -c 0 -i 4936 -a 0 -x {10.0 9.0 2463 ------- null} - -t 2.80635 -s 0 -d 9 -p ack -e 40 -c 0 -i 4936 -a 0 -x {10.0 9.0 2463 ------- null} h -t 2.80635 -s 0 -d 9 -p ack -e 40 -c 0 -i 4936 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.8065 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4925 -a 0 -x {9.0 10.0 2467 ------- null} + -t 2.8065 -s 10 -d 7 -p ack -e 40 -c 0 -i 4944 -a 0 -x {10.0 9.0 2467 ------- null} - -t 2.8065 -s 10 -d 7 -p ack -e 40 -c 0 -i 4944 -a 0 -x {10.0 9.0 2467 ------- null} h -t 2.8065 -s 10 -d 7 -p ack -e 40 -c 0 -i 4944 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.80659 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4939 -a 0 -x {9.0 10.0 2474 ------- null} + -t 2.80659 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4939 -a 0 -x {9.0 10.0 2474 ------- null} h -t 2.80659 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4939 -a 0 -x {9.0 10.0 2474 ------- null} r -t 2.80717 -s 0 -d 9 -p ack -e 40 -c 0 -i 4934 -a 0 -x {10.0 9.0 2462 ------- null} + -t 2.80717 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4945 -a 0 -x {9.0 10.0 2477 ------- null} - -t 2.80717 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4945 -a 0 -x {9.0 10.0 2477 ------- null} h -t 2.80717 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4945 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.80734 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4931 -a 0 -x {9.0 10.0 2470 ------- null} - -t 2.80734 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4931 -a 0 -x {9.0 10.0 2470 ------- null} h -t 2.80734 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4931 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.80744 -s 10 -d 7 -p ack -e 40 -c 0 -i 4942 -a 0 -x {10.0 9.0 2466 ------- null} + -t 2.80744 -s 7 -d 0 -p ack -e 40 -c 0 -i 4942 -a 0 -x {10.0 9.0 2466 ------- null} h -t 2.80744 -s 7 -d 8 -p ack -e 40 -c 0 -i 4942 -a 0 -x {10.0 9.0 2466 ------- null} + -t 2.80747 -s 0 -d 9 -p ack -e 40 -c 0 -i 4938 -a 0 -x {10.0 9.0 2464 ------- null} - -t 2.80747 -s 0 -d 9 -p ack -e 40 -c 0 -i 4938 -a 0 -x {10.0 9.0 2464 ------- null} h -t 2.80747 -s 0 -d 9 -p ack -e 40 -c 0 -i 4938 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.80757 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4941 -a 0 -x {9.0 10.0 2475 ------- null} + -t 2.80757 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4941 -a 0 -x {9.0 10.0 2475 ------- null} h -t 2.80757 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4941 -a 0 -x {9.0 10.0 2475 ------- null} r -t 2.80766 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4927 -a 0 -x {9.0 10.0 2468 ------- null} + -t 2.80766 -s 10 -d 7 -p ack -e 40 -c 0 -i 4946 -a 0 -x {10.0 9.0 2468 ------- null} - -t 2.80766 -s 10 -d 7 -p ack -e 40 -c 0 -i 4946 -a 0 -x {10.0 9.0 2468 ------- null} h -t 2.80766 -s 10 -d 7 -p ack -e 40 -c 0 -i 4946 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.80838 -s 0 -d 9 -p ack -e 40 -c 0 -i 4936 -a 0 -x {10.0 9.0 2463 ------- null} + -t 2.80838 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4947 -a 0 -x {9.0 10.0 2478 ------- null} - -t 2.80838 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4947 -a 0 -x {9.0 10.0 2478 ------- null} h -t 2.80838 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4947 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.80843 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4933 -a 0 -x {9.0 10.0 2471 ------- null} - -t 2.80843 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4933 -a 0 -x {9.0 10.0 2471 ------- null} h -t 2.80843 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4933 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.80853 -s 10 -d 7 -p ack -e 40 -c 0 -i 4944 -a 0 -x {10.0 9.0 2467 ------- null} + -t 2.80853 -s 7 -d 0 -p ack -e 40 -c 0 -i 4944 -a 0 -x {10.0 9.0 2467 ------- null} h -t 2.80853 -s 7 -d 8 -p ack -e 40 -c 0 -i 4944 -a 0 -x {10.0 9.0 2467 ------- null} + -t 2.80853 -s 0 -d 9 -p ack -e 40 -c 0 -i 4940 -a 0 -x {10.0 9.0 2465 ------- null} - -t 2.80853 -s 0 -d 9 -p ack -e 40 -c 0 -i 4940 -a 0 -x {10.0 9.0 2465 ------- null} h -t 2.80853 -s 0 -d 9 -p ack -e 40 -c 0 -i 4940 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.80882 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4943 -a 0 -x {9.0 10.0 2476 ------- null} + -t 2.80882 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4943 -a 0 -x {9.0 10.0 2476 ------- null} h -t 2.80882 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4943 -a 0 -x {9.0 10.0 2476 ------- null} r -t 2.8089 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4929 -a 0 -x {9.0 10.0 2469 ------- null} + -t 2.8089 -s 10 -d 7 -p ack -e 40 -c 0 -i 4948 -a 0 -x {10.0 9.0 2469 ------- null} - -t 2.8089 -s 10 -d 7 -p ack -e 40 -c 0 -i 4948 -a 0 -x {10.0 9.0 2469 ------- null} h -t 2.8089 -s 10 -d 7 -p ack -e 40 -c 0 -i 4948 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.8095 -s 0 -d 9 -p ack -e 40 -c 0 -i 4938 -a 0 -x {10.0 9.0 2464 ------- null} + -t 2.8095 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4949 -a 0 -x {9.0 10.0 2479 ------- null} - -t 2.8095 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4949 -a 0 -x {9.0 10.0 2479 ------- null} h -t 2.8095 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4949 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.80952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4935 -a 0 -x {9.0 10.0 2472 ------- null} - -t 2.80952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4935 -a 0 -x {9.0 10.0 2472 ------- null} h -t 2.80952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4935 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.8097 -s 10 -d 7 -p ack -e 40 -c 0 -i 4946 -a 0 -x {10.0 9.0 2468 ------- null} + -t 2.8097 -s 7 -d 0 -p ack -e 40 -c 0 -i 4946 -a 0 -x {10.0 9.0 2468 ------- null} h -t 2.8097 -s 7 -d 8 -p ack -e 40 -c 0 -i 4946 -a 0 -x {10.0 9.0 2468 ------- null} + -t 2.80973 -s 0 -d 9 -p ack -e 40 -c 0 -i 4942 -a 0 -x {10.0 9.0 2466 ------- null} - -t 2.80973 -s 0 -d 9 -p ack -e 40 -c 0 -i 4942 -a 0 -x {10.0 9.0 2466 ------- null} h -t 2.80973 -s 0 -d 9 -p ack -e 40 -c 0 -i 4942 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.80997 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4945 -a 0 -x {9.0 10.0 2477 ------- null} + -t 2.80997 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4945 -a 0 -x {9.0 10.0 2477 ------- null} h -t 2.80997 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4945 -a 0 -x {9.0 10.0 2477 ------- null} r -t 2.81014 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4931 -a 0 -x {9.0 10.0 2470 ------- null} + -t 2.81014 -s 10 -d 7 -p ack -e 40 -c 0 -i 4950 -a 0 -x {10.0 9.0 2470 ------- null} - -t 2.81014 -s 10 -d 7 -p ack -e 40 -c 0 -i 4950 -a 0 -x {10.0 9.0 2470 ------- null} h -t 2.81014 -s 10 -d 7 -p ack -e 40 -c 0 -i 4950 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.81056 -s 0 -d 9 -p ack -e 40 -c 0 -i 4940 -a 0 -x {10.0 9.0 2465 ------- null} + -t 2.81056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4951 -a 0 -x {9.0 10.0 2480 ------- null} - -t 2.81056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4951 -a 0 -x {9.0 10.0 2480 ------- null} h -t 2.81056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4951 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.81061 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4937 -a 0 -x {9.0 10.0 2473 ------- null} - -t 2.81061 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4937 -a 0 -x {9.0 10.0 2473 ------- null} h -t 2.81061 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4937 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.81072 -s 0 -d 9 -p ack -e 40 -c 0 -i 4944 -a 0 -x {10.0 9.0 2467 ------- null} - -t 2.81072 -s 0 -d 9 -p ack -e 40 -c 0 -i 4944 -a 0 -x {10.0 9.0 2467 ------- null} h -t 2.81072 -s 0 -d 9 -p ack -e 40 -c 0 -i 4944 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.81093 -s 10 -d 7 -p ack -e 40 -c 0 -i 4948 -a 0 -x {10.0 9.0 2469 ------- null} + -t 2.81093 -s 7 -d 0 -p ack -e 40 -c 0 -i 4948 -a 0 -x {10.0 9.0 2469 ------- null} h -t 2.81093 -s 7 -d 8 -p ack -e 40 -c 0 -i 4948 -a 0 -x {10.0 9.0 2469 ------- null} r -t 2.81118 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4947 -a 0 -x {9.0 10.0 2478 ------- null} + -t 2.81118 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4947 -a 0 -x {9.0 10.0 2478 ------- null} h -t 2.81118 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4947 -a 0 -x {9.0 10.0 2478 ------- null} r -t 2.81123 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4933 -a 0 -x {9.0 10.0 2471 ------- null} + -t 2.81123 -s 10 -d 7 -p ack -e 40 -c 0 -i 4952 -a 0 -x {10.0 9.0 2471 ------- null} - -t 2.81123 -s 10 -d 7 -p ack -e 40 -c 0 -i 4952 -a 0 -x {10.0 9.0 2471 ------- null} h -t 2.81123 -s 10 -d 7 -p ack -e 40 -c 0 -i 4952 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.8117 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4939 -a 0 -x {9.0 10.0 2474 ------- null} - -t 2.8117 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4939 -a 0 -x {9.0 10.0 2474 ------- null} h -t 2.8117 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4939 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.81176 -s 0 -d 9 -p ack -e 40 -c 0 -i 4942 -a 0 -x {10.0 9.0 2466 ------- null} + -t 2.81176 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4953 -a 0 -x {9.0 10.0 2481 ------- null} - -t 2.81176 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4953 -a 0 -x {9.0 10.0 2481 ------- null} h -t 2.81176 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4953 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.81189 -s 0 -d 9 -p ack -e 40 -c 0 -i 4946 -a 0 -x {10.0 9.0 2468 ------- null} - -t 2.81189 -s 0 -d 9 -p ack -e 40 -c 0 -i 4946 -a 0 -x {10.0 9.0 2468 ------- null} h -t 2.81189 -s 0 -d 9 -p ack -e 40 -c 0 -i 4946 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.81218 -s 10 -d 7 -p ack -e 40 -c 0 -i 4950 -a 0 -x {10.0 9.0 2470 ------- null} + -t 2.81218 -s 7 -d 0 -p ack -e 40 -c 0 -i 4950 -a 0 -x {10.0 9.0 2470 ------- null} h -t 2.81218 -s 7 -d 8 -p ack -e 40 -c 0 -i 4950 -a 0 -x {10.0 9.0 2470 ------- null} r -t 2.8123 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4949 -a 0 -x {9.0 10.0 2479 ------- null} + -t 2.8123 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4949 -a 0 -x {9.0 10.0 2479 ------- null} h -t 2.8123 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4949 -a 0 -x {9.0 10.0 2479 ------- null} r -t 2.81232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4935 -a 0 -x {9.0 10.0 2472 ------- null} + -t 2.81232 -s 10 -d 7 -p ack -e 40 -c 0 -i 4954 -a 0 -x {10.0 9.0 2472 ------- null} - -t 2.81232 -s 10 -d 7 -p ack -e 40 -c 0 -i 4954 -a 0 -x {10.0 9.0 2472 ------- null} h -t 2.81232 -s 10 -d 7 -p ack -e 40 -c 0 -i 4954 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.81275 -s 0 -d 9 -p ack -e 40 -c 0 -i 4944 -a 0 -x {10.0 9.0 2467 ------- null} + -t 2.81275 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4955 -a 0 -x {9.0 10.0 2482 ------- null} - -t 2.81275 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4955 -a 0 -x {9.0 10.0 2482 ------- null} h -t 2.81275 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4955 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.81278 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4941 -a 0 -x {9.0 10.0 2475 ------- null} - -t 2.81278 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4941 -a 0 -x {9.0 10.0 2475 ------- null} h -t 2.81278 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4941 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.81291 -s 0 -d 9 -p ack -e 40 -c 0 -i 4948 -a 0 -x {10.0 9.0 2469 ------- null} - -t 2.81291 -s 0 -d 9 -p ack -e 40 -c 0 -i 4948 -a 0 -x {10.0 9.0 2469 ------- null} h -t 2.81291 -s 0 -d 9 -p ack -e 40 -c 0 -i 4948 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.81326 -s 10 -d 7 -p ack -e 40 -c 0 -i 4952 -a 0 -x {10.0 9.0 2471 ------- null} + -t 2.81326 -s 7 -d 0 -p ack -e 40 -c 0 -i 4952 -a 0 -x {10.0 9.0 2471 ------- null} h -t 2.81326 -s 7 -d 8 -p ack -e 40 -c 0 -i 4952 -a 0 -x {10.0 9.0 2471 ------- null} r -t 2.81336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4951 -a 0 -x {9.0 10.0 2480 ------- null} + -t 2.81336 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4951 -a 0 -x {9.0 10.0 2480 ------- null} h -t 2.81336 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4951 -a 0 -x {9.0 10.0 2480 ------- null} r -t 2.81341 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4937 -a 0 -x {9.0 10.0 2473 ------- null} + -t 2.81341 -s 10 -d 7 -p ack -e 40 -c 0 -i 4956 -a 0 -x {10.0 9.0 2473 ------- null} - -t 2.81341 -s 10 -d 7 -p ack -e 40 -c 0 -i 4956 -a 0 -x {10.0 9.0 2473 ------- null} h -t 2.81341 -s 10 -d 7 -p ack -e 40 -c 0 -i 4956 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.81387 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4943 -a 0 -x {9.0 10.0 2476 ------- null} - -t 2.81387 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4943 -a 0 -x {9.0 10.0 2476 ------- null} h -t 2.81387 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4943 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.81392 -s 0 -d 9 -p ack -e 40 -c 0 -i 4946 -a 0 -x {10.0 9.0 2468 ------- null} + -t 2.81392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4957 -a 0 -x {9.0 10.0 2483 ------- null} - -t 2.81392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4957 -a 0 -x {9.0 10.0 2483 ------- null} h -t 2.81392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4957 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.81398 -s 0 -d 9 -p ack -e 40 -c 0 -i 4950 -a 0 -x {10.0 9.0 2470 ------- null} - -t 2.81398 -s 0 -d 9 -p ack -e 40 -c 0 -i 4950 -a 0 -x {10.0 9.0 2470 ------- null} h -t 2.81398 -s 0 -d 9 -p ack -e 40 -c 0 -i 4950 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.81435 -s 10 -d 7 -p ack -e 40 -c 0 -i 4954 -a 0 -x {10.0 9.0 2472 ------- null} + -t 2.81435 -s 7 -d 0 -p ack -e 40 -c 0 -i 4954 -a 0 -x {10.0 9.0 2472 ------- null} h -t 2.81435 -s 7 -d 8 -p ack -e 40 -c 0 -i 4954 -a 0 -x {10.0 9.0 2472 ------- null} r -t 2.8145 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4939 -a 0 -x {9.0 10.0 2474 ------- null} + -t 2.8145 -s 10 -d 7 -p ack -e 40 -c 0 -i 4958 -a 0 -x {10.0 9.0 2474 ------- null} - -t 2.8145 -s 10 -d 7 -p ack -e 40 -c 0 -i 4958 -a 0 -x {10.0 9.0 2474 ------- null} h -t 2.8145 -s 10 -d 7 -p ack -e 40 -c 0 -i 4958 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.81456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4953 -a 0 -x {9.0 10.0 2481 ------- null} + -t 2.81456 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4953 -a 0 -x {9.0 10.0 2481 ------- null} h -t 2.81456 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4953 -a 0 -x {9.0 10.0 2481 ------- null} r -t 2.81494 -s 0 -d 9 -p ack -e 40 -c 0 -i 4948 -a 0 -x {10.0 9.0 2469 ------- null} + -t 2.81494 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4959 -a 0 -x {9.0 10.0 2484 ------- null} - -t 2.81494 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4959 -a 0 -x {9.0 10.0 2484 ------- null} h -t 2.81494 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4959 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.81496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4945 -a 0 -x {9.0 10.0 2477 ------- null} - -t 2.81496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4945 -a 0 -x {9.0 10.0 2477 ------- null} h -t 2.81496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4945 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.81523 -s 0 -d 9 -p ack -e 40 -c 0 -i 4952 -a 0 -x {10.0 9.0 2471 ------- null} - -t 2.81523 -s 0 -d 9 -p ack -e 40 -c 0 -i 4952 -a 0 -x {10.0 9.0 2471 ------- null} h -t 2.81523 -s 0 -d 9 -p ack -e 40 -c 0 -i 4952 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.81544 -s 10 -d 7 -p ack -e 40 -c 0 -i 4956 -a 0 -x {10.0 9.0 2473 ------- null} + -t 2.81544 -s 7 -d 0 -p ack -e 40 -c 0 -i 4956 -a 0 -x {10.0 9.0 2473 ------- null} h -t 2.81544 -s 7 -d 8 -p ack -e 40 -c 0 -i 4956 -a 0 -x {10.0 9.0 2473 ------- null} r -t 2.81555 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4955 -a 0 -x {9.0 10.0 2482 ------- null} + -t 2.81555 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4955 -a 0 -x {9.0 10.0 2482 ------- null} h -t 2.81555 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4955 -a 0 -x {9.0 10.0 2482 ------- null} r -t 2.81558 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4941 -a 0 -x {9.0 10.0 2475 ------- null} + -t 2.81558 -s 10 -d 7 -p ack -e 40 -c 0 -i 4960 -a 0 -x {10.0 9.0 2475 ------- null} - -t 2.81558 -s 10 -d 7 -p ack -e 40 -c 0 -i 4960 -a 0 -x {10.0 9.0 2475 ------- null} h -t 2.81558 -s 10 -d 7 -p ack -e 40 -c 0 -i 4960 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.81602 -s 0 -d 9 -p ack -e 40 -c 0 -i 4950 -a 0 -x {10.0 9.0 2470 ------- null} + -t 2.81602 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4961 -a 0 -x {9.0 10.0 2485 ------- null} - -t 2.81602 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4961 -a 0 -x {9.0 10.0 2485 ------- null} h -t 2.81602 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4961 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.81611 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4947 -a 0 -x {9.0 10.0 2478 ------- null} - -t 2.81611 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4947 -a 0 -x {9.0 10.0 2478 ------- null} h -t 2.81611 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4947 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.8164 -s 0 -d 9 -p ack -e 40 -c 0 -i 4954 -a 0 -x {10.0 9.0 2472 ------- null} - -t 2.8164 -s 0 -d 9 -p ack -e 40 -c 0 -i 4954 -a 0 -x {10.0 9.0 2472 ------- null} h -t 2.8164 -s 0 -d 9 -p ack -e 40 -c 0 -i 4954 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.81653 -s 10 -d 7 -p ack -e 40 -c 0 -i 4958 -a 0 -x {10.0 9.0 2474 ------- null} + -t 2.81653 -s 7 -d 0 -p ack -e 40 -c 0 -i 4958 -a 0 -x {10.0 9.0 2474 ------- null} h -t 2.81653 -s 7 -d 8 -p ack -e 40 -c 0 -i 4958 -a 0 -x {10.0 9.0 2474 ------- null} r -t 2.81667 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4943 -a 0 -x {9.0 10.0 2476 ------- null} + -t 2.81667 -s 10 -d 7 -p ack -e 40 -c 0 -i 4962 -a 0 -x {10.0 9.0 2476 ------- null} - -t 2.81667 -s 10 -d 7 -p ack -e 40 -c 0 -i 4962 -a 0 -x {10.0 9.0 2476 ------- null} h -t 2.81667 -s 10 -d 7 -p ack -e 40 -c 0 -i 4962 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.81672 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4957 -a 0 -x {9.0 10.0 2483 ------- null} + -t 2.81672 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4957 -a 0 -x {9.0 10.0 2483 ------- null} h -t 2.81672 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4957 -a 0 -x {9.0 10.0 2483 ------- null} + -t 2.81725 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4949 -a 0 -x {9.0 10.0 2479 ------- null} - -t 2.81725 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4949 -a 0 -x {9.0 10.0 2479 ------- null} h -t 2.81725 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4949 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.81726 -s 0 -d 9 -p ack -e 40 -c 0 -i 4952 -a 0 -x {10.0 9.0 2471 ------- null} + -t 2.81726 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4963 -a 0 -x {9.0 10.0 2486 ------- null} - -t 2.81726 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4963 -a 0 -x {9.0 10.0 2486 ------- null} h -t 2.81726 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4963 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.81733 -s 0 -d 9 -p ack -e 40 -c 0 -i 4956 -a 0 -x {10.0 9.0 2473 ------- null} - -t 2.81733 -s 0 -d 9 -p ack -e 40 -c 0 -i 4956 -a 0 -x {10.0 9.0 2473 ------- null} h -t 2.81733 -s 0 -d 9 -p ack -e 40 -c 0 -i 4956 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.81762 -s 10 -d 7 -p ack -e 40 -c 0 -i 4960 -a 0 -x {10.0 9.0 2475 ------- null} + -t 2.81762 -s 7 -d 0 -p ack -e 40 -c 0 -i 4960 -a 0 -x {10.0 9.0 2475 ------- null} h -t 2.81762 -s 7 -d 8 -p ack -e 40 -c 0 -i 4960 -a 0 -x {10.0 9.0 2475 ------- null} r -t 2.81774 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4959 -a 0 -x {9.0 10.0 2484 ------- null} + -t 2.81774 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4959 -a 0 -x {9.0 10.0 2484 ------- null} h -t 2.81774 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4959 -a 0 -x {9.0 10.0 2484 ------- null} r -t 2.81776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4945 -a 0 -x {9.0 10.0 2477 ------- null} + -t 2.81776 -s 10 -d 7 -p ack -e 40 -c 0 -i 4964 -a 0 -x {10.0 9.0 2477 ------- null} - -t 2.81776 -s 10 -d 7 -p ack -e 40 -c 0 -i 4964 -a 0 -x {10.0 9.0 2477 ------- null} h -t 2.81776 -s 10 -d 7 -p ack -e 40 -c 0 -i 4964 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.81834 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4951 -a 0 -x {9.0 10.0 2480 ------- null} - -t 2.81834 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4951 -a 0 -x {9.0 10.0 2480 ------- null} h -t 2.81834 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4951 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.81843 -s 0 -d 9 -p ack -e 40 -c 0 -i 4954 -a 0 -x {10.0 9.0 2472 ------- null} + -t 2.81843 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4965 -a 0 -x {9.0 10.0 2487 ------- null} - -t 2.81843 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4965 -a 0 -x {9.0 10.0 2487 ------- null} h -t 2.81843 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4965 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.81864 -s 0 -d 9 -p ack -e 40 -c 0 -i 4958 -a 0 -x {10.0 9.0 2474 ------- null} - -t 2.81864 -s 0 -d 9 -p ack -e 40 -c 0 -i 4958 -a 0 -x {10.0 9.0 2474 ------- null} h -t 2.81864 -s 0 -d 9 -p ack -e 40 -c 0 -i 4958 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.8187 -s 10 -d 7 -p ack -e 40 -c 0 -i 4962 -a 0 -x {10.0 9.0 2476 ------- null} + -t 2.8187 -s 7 -d 0 -p ack -e 40 -c 0 -i 4962 -a 0 -x {10.0 9.0 2476 ------- null} h -t 2.8187 -s 7 -d 8 -p ack -e 40 -c 0 -i 4962 -a 0 -x {10.0 9.0 2476 ------- null} r -t 2.81882 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4961 -a 0 -x {9.0 10.0 2485 ------- null} + -t 2.81882 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4961 -a 0 -x {9.0 10.0 2485 ------- null} h -t 2.81882 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4961 -a 0 -x {9.0 10.0 2485 ------- null} r -t 2.81891 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4947 -a 0 -x {9.0 10.0 2478 ------- null} + -t 2.81891 -s 10 -d 7 -p ack -e 40 -c 0 -i 4966 -a 0 -x {10.0 9.0 2478 ------- null} - -t 2.81891 -s 10 -d 7 -p ack -e 40 -c 0 -i 4966 -a 0 -x {10.0 9.0 2478 ------- null} h -t 2.81891 -s 10 -d 7 -p ack -e 40 -c 0 -i 4966 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.81936 -s 0 -d 9 -p ack -e 40 -c 0 -i 4956 -a 0 -x {10.0 9.0 2473 ------- null} + -t 2.81936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4967 -a 0 -x {9.0 10.0 2488 ------- null} - -t 2.81936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4967 -a 0 -x {9.0 10.0 2488 ------- null} h -t 2.81936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4967 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.81971 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4953 -a 0 -x {9.0 10.0 2481 ------- null} - -t 2.81971 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4953 -a 0 -x {9.0 10.0 2481 ------- null} h -t 2.81971 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4953 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.81979 -s 10 -d 7 -p ack -e 40 -c 0 -i 4964 -a 0 -x {10.0 9.0 2477 ------- null} + -t 2.81979 -s 7 -d 0 -p ack -e 40 -c 0 -i 4964 -a 0 -x {10.0 9.0 2477 ------- null} h -t 2.81979 -s 7 -d 8 -p ack -e 40 -c 0 -i 4964 -a 0 -x {10.0 9.0 2477 ------- null} + -t 2.81992 -s 0 -d 9 -p ack -e 40 -c 0 -i 4960 -a 0 -x {10.0 9.0 2475 ------- null} - -t 2.81992 -s 0 -d 9 -p ack -e 40 -c 0 -i 4960 -a 0 -x {10.0 9.0 2475 ------- null} h -t 2.81992 -s 0 -d 9 -p ack -e 40 -c 0 -i 4960 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.82005 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4949 -a 0 -x {9.0 10.0 2479 ------- null} + -t 2.82005 -s 10 -d 7 -p ack -e 40 -c 0 -i 4968 -a 0 -x {10.0 9.0 2479 ------- null} - -t 2.82005 -s 10 -d 7 -p ack -e 40 -c 0 -i 4968 -a 0 -x {10.0 9.0 2479 ------- null} h -t 2.82005 -s 10 -d 7 -p ack -e 40 -c 0 -i 4968 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.82006 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4963 -a 0 -x {9.0 10.0 2486 ------- null} + -t 2.82006 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4963 -a 0 -x {9.0 10.0 2486 ------- null} h -t 2.82006 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4963 -a 0 -x {9.0 10.0 2486 ------- null} r -t 2.82067 -s 0 -d 9 -p ack -e 40 -c 0 -i 4958 -a 0 -x {10.0 9.0 2474 ------- null} + -t 2.82067 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4969 -a 0 -x {9.0 10.0 2489 ------- null} - -t 2.82067 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4969 -a 0 -x {9.0 10.0 2489 ------- null} h -t 2.82067 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4969 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.8208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4955 -a 0 -x {9.0 10.0 2482 ------- null} - -t 2.8208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4955 -a 0 -x {9.0 10.0 2482 ------- null} h -t 2.8208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4955 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.82094 -s 10 -d 7 -p ack -e 40 -c 0 -i 4966 -a 0 -x {10.0 9.0 2478 ------- null} + -t 2.82094 -s 7 -d 0 -p ack -e 40 -c 0 -i 4966 -a 0 -x {10.0 9.0 2478 ------- null} h -t 2.82094 -s 7 -d 8 -p ack -e 40 -c 0 -i 4966 -a 0 -x {10.0 9.0 2478 ------- null} + -t 2.82109 -s 0 -d 9 -p ack -e 40 -c 0 -i 4962 -a 0 -x {10.0 9.0 2476 ------- null} - -t 2.82109 -s 0 -d 9 -p ack -e 40 -c 0 -i 4962 -a 0 -x {10.0 9.0 2476 ------- null} h -t 2.82109 -s 0 -d 9 -p ack -e 40 -c 0 -i 4962 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.82114 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4951 -a 0 -x {9.0 10.0 2480 ------- null} + -t 2.82114 -s 10 -d 7 -p ack -e 40 -c 0 -i 4970 -a 0 -x {10.0 9.0 2480 ------- null} - -t 2.82114 -s 10 -d 7 -p ack -e 40 -c 0 -i 4970 -a 0 -x {10.0 9.0 2480 ------- null} h -t 2.82114 -s 10 -d 7 -p ack -e 40 -c 0 -i 4970 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.82123 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4965 -a 0 -x {9.0 10.0 2487 ------- null} + -t 2.82123 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4965 -a 0 -x {9.0 10.0 2487 ------- null} h -t 2.82123 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4965 -a 0 -x {9.0 10.0 2487 ------- null} r -t 2.82195 -s 0 -d 9 -p ack -e 40 -c 0 -i 4960 -a 0 -x {10.0 9.0 2475 ------- null} + -t 2.82195 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4971 -a 0 -x {9.0 10.0 2490 ------- null} - -t 2.82195 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4971 -a 0 -x {9.0 10.0 2490 ------- null} h -t 2.82195 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4971 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.82197 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4957 -a 0 -x {9.0 10.0 2483 ------- null} - -t 2.82197 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4957 -a 0 -x {9.0 10.0 2483 ------- null} h -t 2.82197 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4957 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.82206 -s 0 -d 9 -p ack -e 40 -c 0 -i 4964 -a 0 -x {10.0 9.0 2477 ------- null} - -t 2.82206 -s 0 -d 9 -p ack -e 40 -c 0 -i 4964 -a 0 -x {10.0 9.0 2477 ------- null} h -t 2.82206 -s 0 -d 9 -p ack -e 40 -c 0 -i 4964 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.82208 -s 10 -d 7 -p ack -e 40 -c 0 -i 4968 -a 0 -x {10.0 9.0 2479 ------- null} + -t 2.82208 -s 7 -d 0 -p ack -e 40 -c 0 -i 4968 -a 0 -x {10.0 9.0 2479 ------- null} h -t 2.82208 -s 7 -d 8 -p ack -e 40 -c 0 -i 4968 -a 0 -x {10.0 9.0 2479 ------- null} r -t 2.82216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4967 -a 0 -x {9.0 10.0 2488 ------- null} + -t 2.82216 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4967 -a 0 -x {9.0 10.0 2488 ------- null} h -t 2.82216 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4967 -a 0 -x {9.0 10.0 2488 ------- null} r -t 2.82251 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4953 -a 0 -x {9.0 10.0 2481 ------- null} + -t 2.82251 -s 10 -d 7 -p ack -e 40 -c 0 -i 4972 -a 0 -x {10.0 9.0 2481 ------- null} - -t 2.82251 -s 10 -d 7 -p ack -e 40 -c 0 -i 4972 -a 0 -x {10.0 9.0 2481 ------- null} h -t 2.82251 -s 10 -d 7 -p ack -e 40 -c 0 -i 4972 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.82306 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4959 -a 0 -x {9.0 10.0 2484 ------- null} - -t 2.82306 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4959 -a 0 -x {9.0 10.0 2484 ------- null} h -t 2.82306 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4959 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.82312 -s 0 -d 9 -p ack -e 40 -c 0 -i 4962 -a 0 -x {10.0 9.0 2476 ------- null} + -t 2.82312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4973 -a 0 -x {9.0 10.0 2491 ------- null} - -t 2.82312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4973 -a 0 -x {9.0 10.0 2491 ------- null} h -t 2.82312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4973 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.82317 -s 10 -d 7 -p ack -e 40 -c 0 -i 4970 -a 0 -x {10.0 9.0 2480 ------- null} + -t 2.82317 -s 7 -d 0 -p ack -e 40 -c 0 -i 4970 -a 0 -x {10.0 9.0 2480 ------- null} h -t 2.82317 -s 7 -d 8 -p ack -e 40 -c 0 -i 4970 -a 0 -x {10.0 9.0 2480 ------- null} + -t 2.82328 -s 0 -d 9 -p ack -e 40 -c 0 -i 4966 -a 0 -x {10.0 9.0 2478 ------- null} - -t 2.82328 -s 0 -d 9 -p ack -e 40 -c 0 -i 4966 -a 0 -x {10.0 9.0 2478 ------- null} h -t 2.82328 -s 0 -d 9 -p ack -e 40 -c 0 -i 4966 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.82347 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4969 -a 0 -x {9.0 10.0 2489 ------- null} + -t 2.82347 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4969 -a 0 -x {9.0 10.0 2489 ------- null} h -t 2.82347 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4969 -a 0 -x {9.0 10.0 2489 ------- null} r -t 2.8236 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4955 -a 0 -x {9.0 10.0 2482 ------- null} + -t 2.8236 -s 10 -d 7 -p ack -e 40 -c 0 -i 4974 -a 0 -x {10.0 9.0 2482 ------- null} - -t 2.8236 -s 10 -d 7 -p ack -e 40 -c 0 -i 4974 -a 0 -x {10.0 9.0 2482 ------- null} h -t 2.8236 -s 10 -d 7 -p ack -e 40 -c 0 -i 4974 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.8241 -s 0 -d 9 -p ack -e 40 -c 0 -i 4964 -a 0 -x {10.0 9.0 2477 ------- null} + -t 2.8241 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4975 -a 0 -x {9.0 10.0 2492 ------- null} - -t 2.8241 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4975 -a 0 -x {9.0 10.0 2492 ------- null} h -t 2.8241 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4975 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.82414 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4961 -a 0 -x {9.0 10.0 2485 ------- null} - -t 2.82414 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4961 -a 0 -x {9.0 10.0 2485 ------- null} h -t 2.82414 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4961 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.82432 -s 0 -d 9 -p ack -e 40 -c 0 -i 4968 -a 0 -x {10.0 9.0 2479 ------- null} - -t 2.82432 -s 0 -d 9 -p ack -e 40 -c 0 -i 4968 -a 0 -x {10.0 9.0 2479 ------- null} h -t 2.82432 -s 0 -d 9 -p ack -e 40 -c 0 -i 4968 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.82454 -s 10 -d 7 -p ack -e 40 -c 0 -i 4972 -a 0 -x {10.0 9.0 2481 ------- null} + -t 2.82454 -s 7 -d 0 -p ack -e 40 -c 0 -i 4972 -a 0 -x {10.0 9.0 2481 ------- null} h -t 2.82454 -s 7 -d 8 -p ack -e 40 -c 0 -i 4972 -a 0 -x {10.0 9.0 2481 ------- null} r -t 2.82475 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4971 -a 0 -x {9.0 10.0 2490 ------- null} + -t 2.82475 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4971 -a 0 -x {9.0 10.0 2490 ------- null} h -t 2.82475 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4971 -a 0 -x {9.0 10.0 2490 ------- null} r -t 2.82477 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4957 -a 0 -x {9.0 10.0 2483 ------- null} + -t 2.82477 -s 10 -d 7 -p ack -e 40 -c 0 -i 4976 -a 0 -x {10.0 9.0 2483 ------- null} - -t 2.82477 -s 10 -d 7 -p ack -e 40 -c 0 -i 4976 -a 0 -x {10.0 9.0 2483 ------- null} h -t 2.82477 -s 10 -d 7 -p ack -e 40 -c 0 -i 4976 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.82523 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4963 -a 0 -x {9.0 10.0 2486 ------- null} - -t 2.82523 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4963 -a 0 -x {9.0 10.0 2486 ------- null} h -t 2.82523 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4963 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.82531 -s 0 -d 9 -p ack -e 40 -c 0 -i 4966 -a 0 -x {10.0 9.0 2478 ------- null} + -t 2.82531 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4977 -a 0 -x {9.0 10.0 2493 ------- null} - -t 2.82531 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4977 -a 0 -x {9.0 10.0 2493 ------- null} h -t 2.82531 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4977 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.82554 -s 0 -d 9 -p ack -e 40 -c 0 -i 4970 -a 0 -x {10.0 9.0 2480 ------- null} - -t 2.82554 -s 0 -d 9 -p ack -e 40 -c 0 -i 4970 -a 0 -x {10.0 9.0 2480 ------- null} h -t 2.82554 -s 0 -d 9 -p ack -e 40 -c 0 -i 4970 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.82563 -s 10 -d 7 -p ack -e 40 -c 0 -i 4974 -a 0 -x {10.0 9.0 2482 ------- null} + -t 2.82563 -s 7 -d 0 -p ack -e 40 -c 0 -i 4974 -a 0 -x {10.0 9.0 2482 ------- null} h -t 2.82563 -s 7 -d 8 -p ack -e 40 -c 0 -i 4974 -a 0 -x {10.0 9.0 2482 ------- null} r -t 2.82586 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4959 -a 0 -x {9.0 10.0 2484 ------- null} + -t 2.82586 -s 10 -d 7 -p ack -e 40 -c 0 -i 4978 -a 0 -x {10.0 9.0 2484 ------- null} - -t 2.82586 -s 10 -d 7 -p ack -e 40 -c 0 -i 4978 -a 0 -x {10.0 9.0 2484 ------- null} h -t 2.82586 -s 10 -d 7 -p ack -e 40 -c 0 -i 4978 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.82592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4973 -a 0 -x {9.0 10.0 2491 ------- null} + -t 2.82592 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4973 -a 0 -x {9.0 10.0 2491 ------- null} h -t 2.82592 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4973 -a 0 -x {9.0 10.0 2491 ------- null} r -t 2.82635 -s 0 -d 9 -p ack -e 40 -c 0 -i 4968 -a 0 -x {10.0 9.0 2479 ------- null} + -t 2.82635 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4979 -a 0 -x {9.0 10.0 2494 ------- null} - -t 2.82635 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4979 -a 0 -x {9.0 10.0 2494 ------- null} h -t 2.82635 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4979 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.82637 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4965 -a 0 -x {9.0 10.0 2487 ------- null} - -t 2.82637 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4965 -a 0 -x {9.0 10.0 2487 ------- null} h -t 2.82637 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4965 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.82651 -s 0 -d 9 -p ack -e 40 -c 0 -i 4972 -a 0 -x {10.0 9.0 2481 ------- null} - -t 2.82651 -s 0 -d 9 -p ack -e 40 -c 0 -i 4972 -a 0 -x {10.0 9.0 2481 ------- null} h -t 2.82651 -s 0 -d 9 -p ack -e 40 -c 0 -i 4972 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.8268 -s 10 -d 7 -p ack -e 40 -c 0 -i 4976 -a 0 -x {10.0 9.0 2483 ------- null} + -t 2.8268 -s 7 -d 0 -p ack -e 40 -c 0 -i 4976 -a 0 -x {10.0 9.0 2483 ------- null} h -t 2.8268 -s 7 -d 8 -p ack -e 40 -c 0 -i 4976 -a 0 -x {10.0 9.0 2483 ------- null} r -t 2.8269 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4975 -a 0 -x {9.0 10.0 2492 ------- null} + -t 2.8269 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4975 -a 0 -x {9.0 10.0 2492 ------- null} h -t 2.8269 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4975 -a 0 -x {9.0 10.0 2492 ------- null} r -t 2.82694 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4961 -a 0 -x {9.0 10.0 2485 ------- null} + -t 2.82694 -s 10 -d 7 -p ack -e 40 -c 0 -i 4980 -a 0 -x {10.0 9.0 2485 ------- null} - -t 2.82694 -s 10 -d 7 -p ack -e 40 -c 0 -i 4980 -a 0 -x {10.0 9.0 2485 ------- null} h -t 2.82694 -s 10 -d 7 -p ack -e 40 -c 0 -i 4980 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.82746 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4967 -a 0 -x {9.0 10.0 2488 ------- null} - -t 2.82746 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4967 -a 0 -x {9.0 10.0 2488 ------- null} h -t 2.82746 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4967 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.82757 -s 0 -d 9 -p ack -e 40 -c 0 -i 4970 -a 0 -x {10.0 9.0 2480 ------- null} + -t 2.82757 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4981 -a 0 -x {9.0 10.0 2495 ------- null} - -t 2.82757 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4981 -a 0 -x {9.0 10.0 2495 ------- null} h -t 2.82757 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4981 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.82771 -s 0 -d 9 -p ack -e 40 -c 0 -i 4974 -a 0 -x {10.0 9.0 2482 ------- null} - -t 2.82771 -s 0 -d 9 -p ack -e 40 -c 0 -i 4974 -a 0 -x {10.0 9.0 2482 ------- null} h -t 2.82771 -s 0 -d 9 -p ack -e 40 -c 0 -i 4974 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.82789 -s 10 -d 7 -p ack -e 40 -c 0 -i 4978 -a 0 -x {10.0 9.0 2484 ------- null} + -t 2.82789 -s 7 -d 0 -p ack -e 40 -c 0 -i 4978 -a 0 -x {10.0 9.0 2484 ------- null} h -t 2.82789 -s 7 -d 8 -p ack -e 40 -c 0 -i 4978 -a 0 -x {10.0 9.0 2484 ------- null} r -t 2.82803 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4963 -a 0 -x {9.0 10.0 2486 ------- null} + -t 2.82803 -s 10 -d 7 -p ack -e 40 -c 0 -i 4982 -a 0 -x {10.0 9.0 2486 ------- null} - -t 2.82803 -s 10 -d 7 -p ack -e 40 -c 0 -i 4982 -a 0 -x {10.0 9.0 2486 ------- null} h -t 2.82803 -s 10 -d 7 -p ack -e 40 -c 0 -i 4982 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.82811 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4977 -a 0 -x {9.0 10.0 2493 ------- null} + -t 2.82811 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4977 -a 0 -x {9.0 10.0 2493 ------- null} h -t 2.82811 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4977 -a 0 -x {9.0 10.0 2493 ------- null} r -t 2.82854 -s 0 -d 9 -p ack -e 40 -c 0 -i 4972 -a 0 -x {10.0 9.0 2481 ------- null} + -t 2.82854 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4983 -a 0 -x {9.0 10.0 2496 ------- null} - -t 2.82854 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4983 -a 0 -x {9.0 10.0 2496 ------- null} h -t 2.82854 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4983 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.82854 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4969 -a 0 -x {9.0 10.0 2489 ------- null} - -t 2.82854 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4969 -a 0 -x {9.0 10.0 2489 ------- null} h -t 2.82854 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4969 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.82866 -s 0 -d 9 -p ack -e 40 -c 0 -i 4976 -a 0 -x {10.0 9.0 2483 ------- null} - -t 2.82866 -s 0 -d 9 -p ack -e 40 -c 0 -i 4976 -a 0 -x {10.0 9.0 2483 ------- null} h -t 2.82866 -s 0 -d 9 -p ack -e 40 -c 0 -i 4976 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.82898 -s 10 -d 7 -p ack -e 40 -c 0 -i 4980 -a 0 -x {10.0 9.0 2485 ------- null} + -t 2.82898 -s 7 -d 0 -p ack -e 40 -c 0 -i 4980 -a 0 -x {10.0 9.0 2485 ------- null} h -t 2.82898 -s 7 -d 8 -p ack -e 40 -c 0 -i 4980 -a 0 -x {10.0 9.0 2485 ------- null} r -t 2.82915 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4979 -a 0 -x {9.0 10.0 2494 ------- null} + -t 2.82915 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4979 -a 0 -x {9.0 10.0 2494 ------- null} h -t 2.82915 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4979 -a 0 -x {9.0 10.0 2494 ------- null} r -t 2.82917 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4965 -a 0 -x {9.0 10.0 2487 ------- null} + -t 2.82917 -s 10 -d 7 -p ack -e 40 -c 0 -i 4984 -a 0 -x {10.0 9.0 2487 ------- null} - -t 2.82917 -s 10 -d 7 -p ack -e 40 -c 0 -i 4984 -a 0 -x {10.0 9.0 2487 ------- null} h -t 2.82917 -s 10 -d 7 -p ack -e 40 -c 0 -i 4984 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.82963 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4971 -a 0 -x {9.0 10.0 2490 ------- null} - -t 2.82963 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4971 -a 0 -x {9.0 10.0 2490 ------- null} h -t 2.82963 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4971 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.82974 -s 0 -d 9 -p ack -e 40 -c 0 -i 4974 -a 0 -x {10.0 9.0 2482 ------- null} + -t 2.82974 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4985 -a 0 -x {9.0 10.0 2497 ------- null} - -t 2.82974 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4985 -a 0 -x {9.0 10.0 2497 ------- null} h -t 2.82974 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4985 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.82982 -s 0 -d 9 -p ack -e 40 -c 0 -i 4978 -a 0 -x {10.0 9.0 2484 ------- null} - -t 2.82982 -s 0 -d 9 -p ack -e 40 -c 0 -i 4978 -a 0 -x {10.0 9.0 2484 ------- null} h -t 2.82982 -s 0 -d 9 -p ack -e 40 -c 0 -i 4978 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.83006 -s 10 -d 7 -p ack -e 40 -c 0 -i 4982 -a 0 -x {10.0 9.0 2486 ------- null} + -t 2.83006 -s 7 -d 0 -p ack -e 40 -c 0 -i 4982 -a 0 -x {10.0 9.0 2486 ------- null} h -t 2.83006 -s 7 -d 8 -p ack -e 40 -c 0 -i 4982 -a 0 -x {10.0 9.0 2486 ------- null} r -t 2.83026 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4967 -a 0 -x {9.0 10.0 2488 ------- null} + -t 2.83026 -s 10 -d 7 -p ack -e 40 -c 0 -i 4986 -a 0 -x {10.0 9.0 2488 ------- null} - -t 2.83026 -s 10 -d 7 -p ack -e 40 -c 0 -i 4986 -a 0 -x {10.0 9.0 2488 ------- null} h -t 2.83026 -s 10 -d 7 -p ack -e 40 -c 0 -i 4986 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.83037 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4981 -a 0 -x {9.0 10.0 2495 ------- null} + -t 2.83037 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4981 -a 0 -x {9.0 10.0 2495 ------- null} h -t 2.83037 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4981 -a 0 -x {9.0 10.0 2495 ------- null} r -t 2.83069 -s 0 -d 9 -p ack -e 40 -c 0 -i 4976 -a 0 -x {10.0 9.0 2483 ------- null} + -t 2.83069 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4987 -a 0 -x {9.0 10.0 2498 ------- null} - -t 2.83069 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4987 -a 0 -x {9.0 10.0 2498 ------- null} h -t 2.83069 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4987 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.83072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4973 -a 0 -x {9.0 10.0 2491 ------- null} - -t 2.83072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4973 -a 0 -x {9.0 10.0 2491 ------- null} h -t 2.83072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4973 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.83098 -s 0 -d 9 -p ack -e 40 -c 0 -i 4980 -a 0 -x {10.0 9.0 2485 ------- null} - -t 2.83098 -s 0 -d 9 -p ack -e 40 -c 0 -i 4980 -a 0 -x {10.0 9.0 2485 ------- null} h -t 2.83098 -s 0 -d 9 -p ack -e 40 -c 0 -i 4980 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.8312 -s 10 -d 7 -p ack -e 40 -c 0 -i 4984 -a 0 -x {10.0 9.0 2487 ------- null} + -t 2.8312 -s 7 -d 0 -p ack -e 40 -c 0 -i 4984 -a 0 -x {10.0 9.0 2487 ------- null} h -t 2.8312 -s 7 -d 8 -p ack -e 40 -c 0 -i 4984 -a 0 -x {10.0 9.0 2487 ------- null} r -t 2.83134 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4983 -a 0 -x {9.0 10.0 2496 ------- null} + -t 2.83134 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4983 -a 0 -x {9.0 10.0 2496 ------- null} h -t 2.83134 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4983 -a 0 -x {9.0 10.0 2496 ------- null} r -t 2.83134 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4969 -a 0 -x {9.0 10.0 2489 ------- null} + -t 2.83134 -s 10 -d 7 -p ack -e 40 -c 0 -i 4988 -a 0 -x {10.0 9.0 2489 ------- null} - -t 2.83134 -s 10 -d 7 -p ack -e 40 -c 0 -i 4988 -a 0 -x {10.0 9.0 2489 ------- null} h -t 2.83134 -s 10 -d 7 -p ack -e 40 -c 0 -i 4988 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.83186 -s 0 -d 9 -p ack -e 40 -c 0 -i 4978 -a 0 -x {10.0 9.0 2484 ------- null} + -t 2.83186 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4989 -a 0 -x {9.0 10.0 2499 ------- null} - -t 2.83186 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4989 -a 0 -x {9.0 10.0 2499 ------- null} h -t 2.83186 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4989 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.83194 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4975 -a 0 -x {9.0 10.0 2492 ------- null} - -t 2.83194 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4975 -a 0 -x {9.0 10.0 2492 ------- null} h -t 2.83194 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4975 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.8321 -s 0 -d 9 -p ack -e 40 -c 0 -i 4982 -a 0 -x {10.0 9.0 2486 ------- null} - -t 2.8321 -s 0 -d 9 -p ack -e 40 -c 0 -i 4982 -a 0 -x {10.0 9.0 2486 ------- null} h -t 2.8321 -s 0 -d 9 -p ack -e 40 -c 0 -i 4982 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.83229 -s 10 -d 7 -p ack -e 40 -c 0 -i 4986 -a 0 -x {10.0 9.0 2488 ------- null} + -t 2.83229 -s 7 -d 0 -p ack -e 40 -c 0 -i 4986 -a 0 -x {10.0 9.0 2488 ------- null} h -t 2.83229 -s 7 -d 8 -p ack -e 40 -c 0 -i 4986 -a 0 -x {10.0 9.0 2488 ------- null} r -t 2.83243 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4971 -a 0 -x {9.0 10.0 2490 ------- null} + -t 2.83243 -s 10 -d 7 -p ack -e 40 -c 0 -i 4990 -a 0 -x {10.0 9.0 2490 ------- null} - -t 2.83243 -s 10 -d 7 -p ack -e 40 -c 0 -i 4990 -a 0 -x {10.0 9.0 2490 ------- null} h -t 2.83243 -s 10 -d 7 -p ack -e 40 -c 0 -i 4990 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.83254 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4985 -a 0 -x {9.0 10.0 2497 ------- null} + -t 2.83254 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4985 -a 0 -x {9.0 10.0 2497 ------- null} h -t 2.83254 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4985 -a 0 -x {9.0 10.0 2497 ------- null} r -t 2.83301 -s 0 -d 9 -p ack -e 40 -c 0 -i 4980 -a 0 -x {10.0 9.0 2485 ------- null} + -t 2.83301 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4991 -a 0 -x {9.0 10.0 2500 ------- null} - -t 2.83301 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4991 -a 0 -x {9.0 10.0 2500 ------- null} h -t 2.83301 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4991 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.83302 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4977 -a 0 -x {9.0 10.0 2493 ------- null} - -t 2.83302 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4977 -a 0 -x {9.0 10.0 2493 ------- null} h -t 2.83302 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4977 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.83314 -s 0 -d 9 -p ack -e 40 -c 0 -i 4984 -a 0 -x {10.0 9.0 2487 ------- null} - -t 2.83314 -s 0 -d 9 -p ack -e 40 -c 0 -i 4984 -a 0 -x {10.0 9.0 2487 ------- null} h -t 2.83314 -s 0 -d 9 -p ack -e 40 -c 0 -i 4984 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.83338 -s 10 -d 7 -p ack -e 40 -c 0 -i 4988 -a 0 -x {10.0 9.0 2489 ------- null} + -t 2.83338 -s 7 -d 0 -p ack -e 40 -c 0 -i 4988 -a 0 -x {10.0 9.0 2489 ------- null} h -t 2.83338 -s 7 -d 8 -p ack -e 40 -c 0 -i 4988 -a 0 -x {10.0 9.0 2489 ------- null} r -t 2.83349 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4987 -a 0 -x {9.0 10.0 2498 ------- null} + -t 2.83349 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4987 -a 0 -x {9.0 10.0 2498 ------- null} h -t 2.83349 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4987 -a 0 -x {9.0 10.0 2498 ------- null} r -t 2.83352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4973 -a 0 -x {9.0 10.0 2491 ------- null} + -t 2.83352 -s 10 -d 7 -p ack -e 40 -c 0 -i 4992 -a 0 -x {10.0 9.0 2491 ------- null} - -t 2.83352 -s 10 -d 7 -p ack -e 40 -c 0 -i 4992 -a 0 -x {10.0 9.0 2491 ------- null} h -t 2.83352 -s 10 -d 7 -p ack -e 40 -c 0 -i 4992 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.83411 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4979 -a 0 -x {9.0 10.0 2494 ------- null} - -t 2.83411 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4979 -a 0 -x {9.0 10.0 2494 ------- null} h -t 2.83411 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4979 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.83413 -s 0 -d 9 -p ack -e 40 -c 0 -i 4982 -a 0 -x {10.0 9.0 2486 ------- null} + -t 2.83413 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4993 -a 0 -x {9.0 10.0 2501 ------- null} - -t 2.83413 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4993 -a 0 -x {9.0 10.0 2501 ------- null} h -t 2.83413 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4993 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.83424 -s 0 -d 9 -p ack -e 40 -c 0 -i 4986 -a 0 -x {10.0 9.0 2488 ------- null} - -t 2.83424 -s 0 -d 9 -p ack -e 40 -c 0 -i 4986 -a 0 -x {10.0 9.0 2488 ------- null} h -t 2.83424 -s 0 -d 9 -p ack -e 40 -c 0 -i 4986 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.83446 -s 10 -d 7 -p ack -e 40 -c 0 -i 4990 -a 0 -x {10.0 9.0 2490 ------- null} + -t 2.83446 -s 7 -d 0 -p ack -e 40 -c 0 -i 4990 -a 0 -x {10.0 9.0 2490 ------- null} h -t 2.83446 -s 7 -d 8 -p ack -e 40 -c 0 -i 4990 -a 0 -x {10.0 9.0 2490 ------- null} r -t 2.83466 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4989 -a 0 -x {9.0 10.0 2499 ------- null} + -t 2.83466 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4989 -a 0 -x {9.0 10.0 2499 ------- null} h -t 2.83466 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4989 -a 0 -x {9.0 10.0 2499 ------- null} r -t 2.83474 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4975 -a 0 -x {9.0 10.0 2492 ------- null} + -t 2.83474 -s 10 -d 7 -p ack -e 40 -c 0 -i 4994 -a 0 -x {10.0 9.0 2492 ------- null} - -t 2.83474 -s 10 -d 7 -p ack -e 40 -c 0 -i 4994 -a 0 -x {10.0 9.0 2492 ------- null} h -t 2.83474 -s 10 -d 7 -p ack -e 40 -c 0 -i 4994 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.83517 -s 0 -d 9 -p ack -e 40 -c 0 -i 4984 -a 0 -x {10.0 9.0 2487 ------- null} + -t 2.83517 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4995 -a 0 -x {9.0 10.0 2502 ------- null} - -t 2.83517 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4995 -a 0 -x {9.0 10.0 2502 ------- null} h -t 2.83517 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4995 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.8352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4981 -a 0 -x {9.0 10.0 2495 ------- null} - -t 2.8352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4981 -a 0 -x {9.0 10.0 2495 ------- null} h -t 2.8352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4981 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.83539 -s 0 -d 9 -p ack -e 40 -c 0 -i 4988 -a 0 -x {10.0 9.0 2489 ------- null} - -t 2.83539 -s 0 -d 9 -p ack -e 40 -c 0 -i 4988 -a 0 -x {10.0 9.0 2489 ------- null} h -t 2.83539 -s 0 -d 9 -p ack -e 40 -c 0 -i 4988 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.83555 -s 10 -d 7 -p ack -e 40 -c 0 -i 4992 -a 0 -x {10.0 9.0 2491 ------- null} + -t 2.83555 -s 7 -d 0 -p ack -e 40 -c 0 -i 4992 -a 0 -x {10.0 9.0 2491 ------- null} h -t 2.83555 -s 7 -d 8 -p ack -e 40 -c 0 -i 4992 -a 0 -x {10.0 9.0 2491 ------- null} r -t 2.83581 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4991 -a 0 -x {9.0 10.0 2500 ------- null} + -t 2.83581 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4991 -a 0 -x {9.0 10.0 2500 ------- null} h -t 2.83581 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4991 -a 0 -x {9.0 10.0 2500 ------- null} r -t 2.83582 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4977 -a 0 -x {9.0 10.0 2493 ------- null} + -t 2.83582 -s 10 -d 7 -p ack -e 40 -c 0 -i 4996 -a 0 -x {10.0 9.0 2493 ------- null} - -t 2.83582 -s 10 -d 7 -p ack -e 40 -c 0 -i 4996 -a 0 -x {10.0 9.0 2493 ------- null} h -t 2.83582 -s 10 -d 7 -p ack -e 40 -c 0 -i 4996 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.83627 -s 0 -d 9 -p ack -e 40 -c 0 -i 4986 -a 0 -x {10.0 9.0 2488 ------- null} + -t 2.83627 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4997 -a 0 -x {9.0 10.0 2503 ------- null} - -t 2.83627 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4997 -a 0 -x {9.0 10.0 2503 ------- null} h -t 2.83627 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4997 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.83629 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4983 -a 0 -x {9.0 10.0 2496 ------- null} - -t 2.83629 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4983 -a 0 -x {9.0 10.0 2496 ------- null} h -t 2.83629 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4983 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.83635 -s 0 -d 9 -p ack -e 40 -c 0 -i 4990 -a 0 -x {10.0 9.0 2490 ------- null} - -t 2.83635 -s 0 -d 9 -p ack -e 40 -c 0 -i 4990 -a 0 -x {10.0 9.0 2490 ------- null} h -t 2.83635 -s 0 -d 9 -p ack -e 40 -c 0 -i 4990 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.83677 -s 10 -d 7 -p ack -e 40 -c 0 -i 4994 -a 0 -x {10.0 9.0 2492 ------- null} + -t 2.83677 -s 7 -d 0 -p ack -e 40 -c 0 -i 4994 -a 0 -x {10.0 9.0 2492 ------- null} h -t 2.83677 -s 7 -d 8 -p ack -e 40 -c 0 -i 4994 -a 0 -x {10.0 9.0 2492 ------- null} r -t 2.83691 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4979 -a 0 -x {9.0 10.0 2494 ------- null} + -t 2.83691 -s 10 -d 7 -p ack -e 40 -c 0 -i 4998 -a 0 -x {10.0 9.0 2494 ------- null} - -t 2.83691 -s 10 -d 7 -p ack -e 40 -c 0 -i 4998 -a 0 -x {10.0 9.0 2494 ------- null} h -t 2.83691 -s 10 -d 7 -p ack -e 40 -c 0 -i 4998 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.83693 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4993 -a 0 -x {9.0 10.0 2501 ------- null} + -t 2.83693 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4993 -a 0 -x {9.0 10.0 2501 ------- null} h -t 2.83693 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4993 -a 0 -x {9.0 10.0 2501 ------- null} + -t 2.83738 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4985 -a 0 -x {9.0 10.0 2497 ------- null} - -t 2.83738 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4985 -a 0 -x {9.0 10.0 2497 ------- null} h -t 2.83738 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4985 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.83742 -s 0 -d 9 -p ack -e 40 -c 0 -i 4988 -a 0 -x {10.0 9.0 2489 ------- null} + -t 2.83742 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4999 -a 0 -x {9.0 10.0 2504 ------- null} - -t 2.83742 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4999 -a 0 -x {9.0 10.0 2504 ------- null} h -t 2.83742 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4999 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.83762 -s 0 -d 9 -p ack -e 40 -c 0 -i 4992 -a 0 -x {10.0 9.0 2491 ------- null} - -t 2.83762 -s 0 -d 9 -p ack -e 40 -c 0 -i 4992 -a 0 -x {10.0 9.0 2491 ------- null} h -t 2.83762 -s 0 -d 9 -p ack -e 40 -c 0 -i 4992 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.83786 -s 10 -d 7 -p ack -e 40 -c 0 -i 4996 -a 0 -x {10.0 9.0 2493 ------- null} + -t 2.83786 -s 7 -d 0 -p ack -e 40 -c 0 -i 4996 -a 0 -x {10.0 9.0 2493 ------- null} h -t 2.83786 -s 7 -d 8 -p ack -e 40 -c 0 -i 4996 -a 0 -x {10.0 9.0 2493 ------- null} r -t 2.83797 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4995 -a 0 -x {9.0 10.0 2502 ------- null} + -t 2.83797 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4995 -a 0 -x {9.0 10.0 2502 ------- null} h -t 2.83797 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4995 -a 0 -x {9.0 10.0 2502 ------- null} r -t 2.838 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4981 -a 0 -x {9.0 10.0 2495 ------- null} + -t 2.838 -s 10 -d 7 -p ack -e 40 -c 0 -i 5000 -a 0 -x {10.0 9.0 2495 ------- null} - -t 2.838 -s 10 -d 7 -p ack -e 40 -c 0 -i 5000 -a 0 -x {10.0 9.0 2495 ------- null} h -t 2.838 -s 10 -d 7 -p ack -e 40 -c 0 -i 5000 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.83838 -s 0 -d 9 -p ack -e 40 -c 0 -i 4990 -a 0 -x {10.0 9.0 2490 ------- null} + -t 2.83838 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5001 -a 0 -x {9.0 10.0 2505 ------- null} - -t 2.83838 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5001 -a 0 -x {9.0 10.0 2505 ------- null} h -t 2.83838 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5001 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.83846 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4987 -a 0 -x {9.0 10.0 2498 ------- null} - -t 2.83846 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4987 -a 0 -x {9.0 10.0 2498 ------- null} h -t 2.83846 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4987 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.83858 -s 0 -d 9 -p ack -e 40 -c 0 -i 4994 -a 0 -x {10.0 9.0 2492 ------- null} - -t 2.83858 -s 0 -d 9 -p ack -e 40 -c 0 -i 4994 -a 0 -x {10.0 9.0 2492 ------- null} h -t 2.83858 -s 0 -d 9 -p ack -e 40 -c 0 -i 4994 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.83894 -s 10 -d 7 -p ack -e 40 -c 0 -i 4998 -a 0 -x {10.0 9.0 2494 ------- null} + -t 2.83894 -s 7 -d 0 -p ack -e 40 -c 0 -i 4998 -a 0 -x {10.0 9.0 2494 ------- null} h -t 2.83894 -s 7 -d 8 -p ack -e 40 -c 0 -i 4998 -a 0 -x {10.0 9.0 2494 ------- null} r -t 2.83907 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4997 -a 0 -x {9.0 10.0 2503 ------- null} + -t 2.83907 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4997 -a 0 -x {9.0 10.0 2503 ------- null} h -t 2.83907 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4997 -a 0 -x {9.0 10.0 2503 ------- null} r -t 2.83909 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4983 -a 0 -x {9.0 10.0 2496 ------- null} + -t 2.83909 -s 10 -d 7 -p ack -e 40 -c 0 -i 5002 -a 0 -x {10.0 9.0 2496 ------- null} - -t 2.83909 -s 10 -d 7 -p ack -e 40 -c 0 -i 5002 -a 0 -x {10.0 9.0 2496 ------- null} h -t 2.83909 -s 10 -d 7 -p ack -e 40 -c 0 -i 5002 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.83955 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4989 -a 0 -x {9.0 10.0 2499 ------- null} - -t 2.83955 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4989 -a 0 -x {9.0 10.0 2499 ------- null} h -t 2.83955 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4989 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.83965 -s 0 -d 9 -p ack -e 40 -c 0 -i 4992 -a 0 -x {10.0 9.0 2491 ------- null} + -t 2.83965 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5003 -a 0 -x {9.0 10.0 2506 ------- null} - -t 2.83965 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5003 -a 0 -x {9.0 10.0 2506 ------- null} h -t 2.83965 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5003 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.83981 -s 0 -d 9 -p ack -e 40 -c 0 -i 4996 -a 0 -x {10.0 9.0 2493 ------- null} - -t 2.83981 -s 0 -d 9 -p ack -e 40 -c 0 -i 4996 -a 0 -x {10.0 9.0 2493 ------- null} h -t 2.83981 -s 0 -d 9 -p ack -e 40 -c 0 -i 4996 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.84003 -s 10 -d 7 -p ack -e 40 -c 0 -i 5000 -a 0 -x {10.0 9.0 2495 ------- null} + -t 2.84003 -s 7 -d 0 -p ack -e 40 -c 0 -i 5000 -a 0 -x {10.0 9.0 2495 ------- null} h -t 2.84003 -s 7 -d 8 -p ack -e 40 -c 0 -i 5000 -a 0 -x {10.0 9.0 2495 ------- null} r -t 2.84018 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4985 -a 0 -x {9.0 10.0 2497 ------- null} + -t 2.84018 -s 10 -d 7 -p ack -e 40 -c 0 -i 5004 -a 0 -x {10.0 9.0 2497 ------- null} - -t 2.84018 -s 10 -d 7 -p ack -e 40 -c 0 -i 5004 -a 0 -x {10.0 9.0 2497 ------- null} h -t 2.84018 -s 10 -d 7 -p ack -e 40 -c 0 -i 5004 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.84022 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 4999 -a 0 -x {9.0 10.0 2504 ------- null} + -t 2.84022 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 4999 -a 0 -x {9.0 10.0 2504 ------- null} h -t 2.84022 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 4999 -a 0 -x {9.0 10.0 2504 ------- null} r -t 2.84061 -s 0 -d 9 -p ack -e 40 -c 0 -i 4994 -a 0 -x {10.0 9.0 2492 ------- null} + -t 2.84061 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5005 -a 0 -x {9.0 10.0 2507 ------- null} - -t 2.84061 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5005 -a 0 -x {9.0 10.0 2507 ------- null} h -t 2.84061 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5005 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.84064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4991 -a 0 -x {9.0 10.0 2500 ------- null} - -t 2.84064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4991 -a 0 -x {9.0 10.0 2500 ------- null} h -t 2.84064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4991 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.84091 -s 0 -d 9 -p ack -e 40 -c 0 -i 4998 -a 0 -x {10.0 9.0 2494 ------- null} - -t 2.84091 -s 0 -d 9 -p ack -e 40 -c 0 -i 4998 -a 0 -x {10.0 9.0 2494 ------- null} h -t 2.84091 -s 0 -d 9 -p ack -e 40 -c 0 -i 4998 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.84112 -s 10 -d 7 -p ack -e 40 -c 0 -i 5002 -a 0 -x {10.0 9.0 2496 ------- null} + -t 2.84112 -s 7 -d 0 -p ack -e 40 -c 0 -i 5002 -a 0 -x {10.0 9.0 2496 ------- null} h -t 2.84112 -s 7 -d 8 -p ack -e 40 -c 0 -i 5002 -a 0 -x {10.0 9.0 2496 ------- null} r -t 2.84118 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5001 -a 0 -x {9.0 10.0 2505 ------- null} + -t 2.84118 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5001 -a 0 -x {9.0 10.0 2505 ------- null} h -t 2.84118 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5001 -a 0 -x {9.0 10.0 2505 ------- null} r -t 2.84126 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4987 -a 0 -x {9.0 10.0 2498 ------- null} + -t 2.84126 -s 10 -d 7 -p ack -e 40 -c 0 -i 5006 -a 0 -x {10.0 9.0 2498 ------- null} - -t 2.84126 -s 10 -d 7 -p ack -e 40 -c 0 -i 5006 -a 0 -x {10.0 9.0 2498 ------- null} h -t 2.84126 -s 10 -d 7 -p ack -e 40 -c 0 -i 5006 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.84184 -s 0 -d 9 -p ack -e 40 -c 0 -i 4996 -a 0 -x {10.0 9.0 2493 ------- null} + -t 2.84184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5007 -a 0 -x {9.0 10.0 2508 ------- null} - -t 2.84184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5007 -a 0 -x {9.0 10.0 2508 ------- null} h -t 2.84184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5007 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.84195 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4993 -a 0 -x {9.0 10.0 2501 ------- null} - -t 2.84195 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4993 -a 0 -x {9.0 10.0 2501 ------- null} h -t 2.84195 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4993 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.84208 -s 0 -d 9 -p ack -e 40 -c 0 -i 5000 -a 0 -x {10.0 9.0 2495 ------- null} - -t 2.84208 -s 0 -d 9 -p ack -e 40 -c 0 -i 5000 -a 0 -x {10.0 9.0 2495 ------- null} h -t 2.84208 -s 0 -d 9 -p ack -e 40 -c 0 -i 5000 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.84221 -s 10 -d 7 -p ack -e 40 -c 0 -i 5004 -a 0 -x {10.0 9.0 2497 ------- null} + -t 2.84221 -s 7 -d 0 -p ack -e 40 -c 0 -i 5004 -a 0 -x {10.0 9.0 2497 ------- null} h -t 2.84221 -s 7 -d 8 -p ack -e 40 -c 0 -i 5004 -a 0 -x {10.0 9.0 2497 ------- null} r -t 2.84235 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4989 -a 0 -x {9.0 10.0 2499 ------- null} + -t 2.84235 -s 10 -d 7 -p ack -e 40 -c 0 -i 5008 -a 0 -x {10.0 9.0 2499 ------- null} - -t 2.84235 -s 10 -d 7 -p ack -e 40 -c 0 -i 5008 -a 0 -x {10.0 9.0 2499 ------- null} h -t 2.84235 -s 10 -d 7 -p ack -e 40 -c 0 -i 5008 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.84245 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5003 -a 0 -x {9.0 10.0 2506 ------- null} + -t 2.84245 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5003 -a 0 -x {9.0 10.0 2506 ------- null} h -t 2.84245 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5003 -a 0 -x {9.0 10.0 2506 ------- null} r -t 2.84294 -s 0 -d 9 -p ack -e 40 -c 0 -i 4998 -a 0 -x {10.0 9.0 2494 ------- null} + -t 2.84294 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5009 -a 0 -x {9.0 10.0 2509 ------- null} - -t 2.84294 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5009 -a 0 -x {9.0 10.0 2509 ------- null} h -t 2.84294 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5009 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.84304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4995 -a 0 -x {9.0 10.0 2502 ------- null} - -t 2.84304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4995 -a 0 -x {9.0 10.0 2502 ------- null} h -t 2.84304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4995 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.84314 -s 0 -d 9 -p ack -e 40 -c 0 -i 5002 -a 0 -x {10.0 9.0 2496 ------- null} - -t 2.84314 -s 0 -d 9 -p ack -e 40 -c 0 -i 5002 -a 0 -x {10.0 9.0 2496 ------- null} h -t 2.84314 -s 0 -d 9 -p ack -e 40 -c 0 -i 5002 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.8433 -s 10 -d 7 -p ack -e 40 -c 0 -i 5006 -a 0 -x {10.0 9.0 2498 ------- null} + -t 2.8433 -s 7 -d 0 -p ack -e 40 -c 0 -i 5006 -a 0 -x {10.0 9.0 2498 ------- null} h -t 2.8433 -s 7 -d 8 -p ack -e 40 -c 0 -i 5006 -a 0 -x {10.0 9.0 2498 ------- null} r -t 2.84341 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5005 -a 0 -x {9.0 10.0 2507 ------- null} + -t 2.84341 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5005 -a 0 -x {9.0 10.0 2507 ------- null} h -t 2.84341 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5005 -a 0 -x {9.0 10.0 2507 ------- null} r -t 2.84344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4991 -a 0 -x {9.0 10.0 2500 ------- null} + -t 2.84344 -s 10 -d 7 -p ack -e 40 -c 0 -i 5010 -a 0 -x {10.0 9.0 2500 ------- null} - -t 2.84344 -s 10 -d 7 -p ack -e 40 -c 0 -i 5010 -a 0 -x {10.0 9.0 2500 ------- null} h -t 2.84344 -s 10 -d 7 -p ack -e 40 -c 0 -i 5010 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.84411 -s 0 -d 9 -p ack -e 40 -c 0 -i 5000 -a 0 -x {10.0 9.0 2495 ------- null} + -t 2.84411 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5011 -a 0 -x {9.0 10.0 2510 ------- null} - -t 2.84411 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5011 -a 0 -x {9.0 10.0 2510 ------- null} h -t 2.84411 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5011 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.84413 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4997 -a 0 -x {9.0 10.0 2503 ------- null} - -t 2.84413 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4997 -a 0 -x {9.0 10.0 2503 ------- null} h -t 2.84413 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4997 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.84432 -s 0 -d 9 -p ack -e 40 -c 0 -i 5004 -a 0 -x {10.0 9.0 2497 ------- null} - -t 2.84432 -s 0 -d 9 -p ack -e 40 -c 0 -i 5004 -a 0 -x {10.0 9.0 2497 ------- null} h -t 2.84432 -s 0 -d 9 -p ack -e 40 -c 0 -i 5004 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.84438 -s 10 -d 7 -p ack -e 40 -c 0 -i 5008 -a 0 -x {10.0 9.0 2499 ------- null} + -t 2.84438 -s 7 -d 0 -p ack -e 40 -c 0 -i 5008 -a 0 -x {10.0 9.0 2499 ------- null} h -t 2.84438 -s 7 -d 8 -p ack -e 40 -c 0 -i 5008 -a 0 -x {10.0 9.0 2499 ------- null} r -t 2.84464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5007 -a 0 -x {9.0 10.0 2508 ------- null} + -t 2.84464 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5007 -a 0 -x {9.0 10.0 2508 ------- null} h -t 2.84464 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5007 -a 0 -x {9.0 10.0 2508 ------- null} r -t 2.84475 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4993 -a 0 -x {9.0 10.0 2501 ------- null} + -t 2.84475 -s 10 -d 7 -p ack -e 40 -c 0 -i 5012 -a 0 -x {10.0 9.0 2501 ------- null} - -t 2.84475 -s 10 -d 7 -p ack -e 40 -c 0 -i 5012 -a 0 -x {10.0 9.0 2501 ------- null} h -t 2.84475 -s 10 -d 7 -p ack -e 40 -c 0 -i 5012 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.84517 -s 0 -d 9 -p ack -e 40 -c 0 -i 5002 -a 0 -x {10.0 9.0 2496 ------- null} + -t 2.84517 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5013 -a 0 -x {9.0 10.0 2511 ------- null} - -t 2.84517 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5013 -a 0 -x {9.0 10.0 2511 ------- null} h -t 2.84517 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5013 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.84522 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4999 -a 0 -x {9.0 10.0 2504 ------- null} - -t 2.84522 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4999 -a 0 -x {9.0 10.0 2504 ------- null} h -t 2.84522 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4999 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.84542 -s 0 -d 9 -p ack -e 40 -c 0 -i 5006 -a 0 -x {10.0 9.0 2498 ------- null} - -t 2.84542 -s 0 -d 9 -p ack -e 40 -c 0 -i 5006 -a 0 -x {10.0 9.0 2498 ------- null} h -t 2.84542 -s 0 -d 9 -p ack -e 40 -c 0 -i 5006 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.84547 -s 10 -d 7 -p ack -e 40 -c 0 -i 5010 -a 0 -x {10.0 9.0 2500 ------- null} + -t 2.84547 -s 7 -d 0 -p ack -e 40 -c 0 -i 5010 -a 0 -x {10.0 9.0 2500 ------- null} h -t 2.84547 -s 7 -d 8 -p ack -e 40 -c 0 -i 5010 -a 0 -x {10.0 9.0 2500 ------- null} r -t 2.84574 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5009 -a 0 -x {9.0 10.0 2509 ------- null} + -t 2.84574 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5009 -a 0 -x {9.0 10.0 2509 ------- null} h -t 2.84574 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5009 -a 0 -x {9.0 10.0 2509 ------- null} r -t 2.84584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4995 -a 0 -x {9.0 10.0 2502 ------- null} + -t 2.84584 -s 10 -d 7 -p ack -e 40 -c 0 -i 5014 -a 0 -x {10.0 9.0 2502 ------- null} - -t 2.84584 -s 10 -d 7 -p ack -e 40 -c 0 -i 5014 -a 0 -x {10.0 9.0 2502 ------- null} h -t 2.84584 -s 10 -d 7 -p ack -e 40 -c 0 -i 5014 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.8463 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5001 -a 0 -x {9.0 10.0 2505 ------- null} - -t 2.8463 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5001 -a 0 -x {9.0 10.0 2505 ------- null} h -t 2.8463 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5001 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.84635 -s 0 -d 9 -p ack -e 40 -c 0 -i 5004 -a 0 -x {10.0 9.0 2497 ------- null} + -t 2.84635 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5015 -a 0 -x {9.0 10.0 2512 ------- null} - -t 2.84635 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5015 -a 0 -x {9.0 10.0 2512 ------- null} h -t 2.84635 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5015 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.84648 -s 0 -d 9 -p ack -e 40 -c 0 -i 5008 -a 0 -x {10.0 9.0 2499 ------- null} - -t 2.84648 -s 0 -d 9 -p ack -e 40 -c 0 -i 5008 -a 0 -x {10.0 9.0 2499 ------- null} h -t 2.84648 -s 0 -d 9 -p ack -e 40 -c 0 -i 5008 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.84678 -s 10 -d 7 -p ack -e 40 -c 0 -i 5012 -a 0 -x {10.0 9.0 2501 ------- null} + -t 2.84678 -s 7 -d 0 -p ack -e 40 -c 0 -i 5012 -a 0 -x {10.0 9.0 2501 ------- null} h -t 2.84678 -s 7 -d 8 -p ack -e 40 -c 0 -i 5012 -a 0 -x {10.0 9.0 2501 ------- null} r -t 2.84691 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5011 -a 0 -x {9.0 10.0 2510 ------- null} + -t 2.84691 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5011 -a 0 -x {9.0 10.0 2510 ------- null} h -t 2.84691 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5011 -a 0 -x {9.0 10.0 2510 ------- null} r -t 2.84693 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4997 -a 0 -x {9.0 10.0 2503 ------- null} + -t 2.84693 -s 10 -d 7 -p ack -e 40 -c 0 -i 5016 -a 0 -x {10.0 9.0 2503 ------- null} - -t 2.84693 -s 10 -d 7 -p ack -e 40 -c 0 -i 5016 -a 0 -x {10.0 9.0 2503 ------- null} h -t 2.84693 -s 10 -d 7 -p ack -e 40 -c 0 -i 5016 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.84739 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5003 -a 0 -x {9.0 10.0 2506 ------- null} - -t 2.84739 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5003 -a 0 -x {9.0 10.0 2506 ------- null} h -t 2.84739 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5003 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.84746 -s 0 -d 9 -p ack -e 40 -c 0 -i 5006 -a 0 -x {10.0 9.0 2498 ------- null} + -t 2.84746 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5017 -a 0 -x {9.0 10.0 2513 ------- null} - -t 2.84746 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5017 -a 0 -x {9.0 10.0 2513 ------- null} h -t 2.84746 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5017 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.84755 -s 0 -d 9 -p ack -e 40 -c 0 -i 5010 -a 0 -x {10.0 9.0 2500 ------- null} - -t 2.84755 -s 0 -d 9 -p ack -e 40 -c 0 -i 5010 -a 0 -x {10.0 9.0 2500 ------- null} h -t 2.84755 -s 0 -d 9 -p ack -e 40 -c 0 -i 5010 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.84787 -s 10 -d 7 -p ack -e 40 -c 0 -i 5014 -a 0 -x {10.0 9.0 2502 ------- null} + -t 2.84787 -s 7 -d 0 -p ack -e 40 -c 0 -i 5014 -a 0 -x {10.0 9.0 2502 ------- null} h -t 2.84787 -s 7 -d 8 -p ack -e 40 -c 0 -i 5014 -a 0 -x {10.0 9.0 2502 ------- null} r -t 2.84797 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5013 -a 0 -x {9.0 10.0 2511 ------- null} + -t 2.84797 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5013 -a 0 -x {9.0 10.0 2511 ------- null} h -t 2.84797 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5013 -a 0 -x {9.0 10.0 2511 ------- null} r -t 2.84802 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 4999 -a 0 -x {9.0 10.0 2504 ------- null} + -t 2.84802 -s 10 -d 7 -p ack -e 40 -c 0 -i 5018 -a 0 -x {10.0 9.0 2504 ------- null} - -t 2.84802 -s 10 -d 7 -p ack -e 40 -c 0 -i 5018 -a 0 -x {10.0 9.0 2504 ------- null} h -t 2.84802 -s 10 -d 7 -p ack -e 40 -c 0 -i 5018 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.84848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5005 -a 0 -x {9.0 10.0 2507 ------- null} - -t 2.84848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5005 -a 0 -x {9.0 10.0 2507 ------- null} h -t 2.84848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5005 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.84851 -s 0 -d 9 -p ack -e 40 -c 0 -i 5008 -a 0 -x {10.0 9.0 2499 ------- null} + -t 2.84851 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5019 -a 0 -x {9.0 10.0 2514 ------- null} - -t 2.84851 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5019 -a 0 -x {9.0 10.0 2514 ------- null} h -t 2.84851 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5019 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.84874 -s 0 -d 9 -p ack -e 40 -c 0 -i 5012 -a 0 -x {10.0 9.0 2501 ------- null} - -t 2.84874 -s 0 -d 9 -p ack -e 40 -c 0 -i 5012 -a 0 -x {10.0 9.0 2501 ------- null} h -t 2.84874 -s 0 -d 9 -p ack -e 40 -c 0 -i 5012 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.84896 -s 10 -d 7 -p ack -e 40 -c 0 -i 5016 -a 0 -x {10.0 9.0 2503 ------- null} + -t 2.84896 -s 7 -d 0 -p ack -e 40 -c 0 -i 5016 -a 0 -x {10.0 9.0 2503 ------- null} h -t 2.84896 -s 7 -d 8 -p ack -e 40 -c 0 -i 5016 -a 0 -x {10.0 9.0 2503 ------- null} r -t 2.8491 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5001 -a 0 -x {9.0 10.0 2505 ------- null} + -t 2.8491 -s 10 -d 7 -p ack -e 40 -c 0 -i 5020 -a 0 -x {10.0 9.0 2505 ------- null} - -t 2.8491 -s 10 -d 7 -p ack -e 40 -c 0 -i 5020 -a 0 -x {10.0 9.0 2505 ------- null} h -t 2.8491 -s 10 -d 7 -p ack -e 40 -c 0 -i 5020 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.84915 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5015 -a 0 -x {9.0 10.0 2512 ------- null} + -t 2.84915 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5015 -a 0 -x {9.0 10.0 2512 ------- null} h -t 2.84915 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5015 -a 0 -x {9.0 10.0 2512 ------- null} r -t 2.84958 -s 0 -d 9 -p ack -e 40 -c 0 -i 5010 -a 0 -x {10.0 9.0 2500 ------- null} + -t 2.84958 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5021 -a 0 -x {9.0 10.0 2515 ------- null} - -t 2.84958 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5021 -a 0 -x {9.0 10.0 2515 ------- null} h -t 2.84958 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5021 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.84973 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5007 -a 0 -x {9.0 10.0 2508 ------- null} - -t 2.84973 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5007 -a 0 -x {9.0 10.0 2508 ------- null} h -t 2.84973 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5007 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.84998 -s 0 -d 9 -p ack -e 40 -c 0 -i 5014 -a 0 -x {10.0 9.0 2502 ------- null} - -t 2.84998 -s 0 -d 9 -p ack -e 40 -c 0 -i 5014 -a 0 -x {10.0 9.0 2502 ------- null} h -t 2.84998 -s 0 -d 9 -p ack -e 40 -c 0 -i 5014 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.85005 -s 10 -d 7 -p ack -e 40 -c 0 -i 5018 -a 0 -x {10.0 9.0 2504 ------- null} + -t 2.85005 -s 7 -d 0 -p ack -e 40 -c 0 -i 5018 -a 0 -x {10.0 9.0 2504 ------- null} h -t 2.85005 -s 7 -d 8 -p ack -e 40 -c 0 -i 5018 -a 0 -x {10.0 9.0 2504 ------- null} r -t 2.85019 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5003 -a 0 -x {9.0 10.0 2506 ------- null} + -t 2.85019 -s 10 -d 7 -p ack -e 40 -c 0 -i 5022 -a 0 -x {10.0 9.0 2506 ------- null} - -t 2.85019 -s 10 -d 7 -p ack -e 40 -c 0 -i 5022 -a 0 -x {10.0 9.0 2506 ------- null} h -t 2.85019 -s 10 -d 7 -p ack -e 40 -c 0 -i 5022 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.85026 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5017 -a 0 -x {9.0 10.0 2513 ------- null} + -t 2.85026 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5017 -a 0 -x {9.0 10.0 2513 ------- null} h -t 2.85026 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5017 -a 0 -x {9.0 10.0 2513 ------- null} r -t 2.85077 -s 0 -d 9 -p ack -e 40 -c 0 -i 5012 -a 0 -x {10.0 9.0 2501 ------- null} + -t 2.85077 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5023 -a 0 -x {9.0 10.0 2516 ------- null} - -t 2.85077 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5023 -a 0 -x {9.0 10.0 2516 ------- null} h -t 2.85077 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5023 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.85094 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5009 -a 0 -x {9.0 10.0 2509 ------- null} - -t 2.85094 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5009 -a 0 -x {9.0 10.0 2509 ------- null} h -t 2.85094 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5009 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.85114 -s 10 -d 7 -p ack -e 40 -c 0 -i 5020 -a 0 -x {10.0 9.0 2505 ------- null} + -t 2.85114 -s 7 -d 0 -p ack -e 40 -c 0 -i 5020 -a 0 -x {10.0 9.0 2505 ------- null} h -t 2.85114 -s 7 -d 8 -p ack -e 40 -c 0 -i 5020 -a 0 -x {10.0 9.0 2505 ------- null} + -t 2.85122 -s 0 -d 9 -p ack -e 40 -c 0 -i 5016 -a 0 -x {10.0 9.0 2503 ------- null} - -t 2.85122 -s 0 -d 9 -p ack -e 40 -c 0 -i 5016 -a 0 -x {10.0 9.0 2503 ------- null} h -t 2.85122 -s 0 -d 9 -p ack -e 40 -c 0 -i 5016 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.85128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5005 -a 0 -x {9.0 10.0 2507 ------- null} + -t 2.85128 -s 10 -d 7 -p ack -e 40 -c 0 -i 5024 -a 0 -x {10.0 9.0 2507 ------- null} - -t 2.85128 -s 10 -d 7 -p ack -e 40 -c 0 -i 5024 -a 0 -x {10.0 9.0 2507 ------- null} h -t 2.85128 -s 10 -d 7 -p ack -e 40 -c 0 -i 5024 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.85131 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5019 -a 0 -x {9.0 10.0 2514 ------- null} + -t 2.85131 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5019 -a 0 -x {9.0 10.0 2514 ------- null} h -t 2.85131 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5019 -a 0 -x {9.0 10.0 2514 ------- null} r -t 2.85202 -s 0 -d 9 -p ack -e 40 -c 0 -i 5014 -a 0 -x {10.0 9.0 2502 ------- null} + -t 2.85202 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5025 -a 0 -x {9.0 10.0 2517 ------- null} - -t 2.85202 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5025 -a 0 -x {9.0 10.0 2517 ------- null} h -t 2.85202 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5025 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.85216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5011 -a 0 -x {9.0 10.0 2510 ------- null} - -t 2.85216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5011 -a 0 -x {9.0 10.0 2510 ------- null} h -t 2.85216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5011 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.85222 -s 10 -d 7 -p ack -e 40 -c 0 -i 5022 -a 0 -x {10.0 9.0 2506 ------- null} + -t 2.85222 -s 7 -d 0 -p ack -e 40 -c 0 -i 5022 -a 0 -x {10.0 9.0 2506 ------- null} h -t 2.85222 -s 7 -d 8 -p ack -e 40 -c 0 -i 5022 -a 0 -x {10.0 9.0 2506 ------- null} + -t 2.85229 -s 0 -d 9 -p ack -e 40 -c 0 -i 5018 -a 0 -x {10.0 9.0 2504 ------- null} - -t 2.85229 -s 0 -d 9 -p ack -e 40 -c 0 -i 5018 -a 0 -x {10.0 9.0 2504 ------- null} h -t 2.85229 -s 0 -d 9 -p ack -e 40 -c 0 -i 5018 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.85238 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5021 -a 0 -x {9.0 10.0 2515 ------- null} + -t 2.85238 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5021 -a 0 -x {9.0 10.0 2515 ------- null} h -t 2.85238 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5021 -a 0 -x {9.0 10.0 2515 ------- null} r -t 2.85253 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5007 -a 0 -x {9.0 10.0 2508 ------- null} + -t 2.85253 -s 10 -d 7 -p ack -e 40 -c 0 -i 5026 -a 0 -x {10.0 9.0 2508 ------- null} - -t 2.85253 -s 10 -d 7 -p ack -e 40 -c 0 -i 5026 -a 0 -x {10.0 9.0 2508 ------- null} h -t 2.85253 -s 10 -d 7 -p ack -e 40 -c 0 -i 5026 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.85325 -s 0 -d 9 -p ack -e 40 -c 0 -i 5016 -a 0 -x {10.0 9.0 2503 ------- null} + -t 2.85325 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5027 -a 0 -x {9.0 10.0 2518 ------- null} - -t 2.85325 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5027 -a 0 -x {9.0 10.0 2518 ------- null} h -t 2.85325 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5027 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.85325 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5013 -a 0 -x {9.0 10.0 2511 ------- null} - -t 2.85325 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5013 -a 0 -x {9.0 10.0 2511 ------- null} h -t 2.85325 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5013 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.85331 -s 10 -d 7 -p ack -e 40 -c 0 -i 5024 -a 0 -x {10.0 9.0 2507 ------- null} + -t 2.85331 -s 7 -d 0 -p ack -e 40 -c 0 -i 5024 -a 0 -x {10.0 9.0 2507 ------- null} h -t 2.85331 -s 7 -d 8 -p ack -e 40 -c 0 -i 5024 -a 0 -x {10.0 9.0 2507 ------- null} + -t 2.85342 -s 0 -d 9 -p ack -e 40 -c 0 -i 5020 -a 0 -x {10.0 9.0 2505 ------- null} - -t 2.85342 -s 0 -d 9 -p ack -e 40 -c 0 -i 5020 -a 0 -x {10.0 9.0 2505 ------- null} h -t 2.85342 -s 0 -d 9 -p ack -e 40 -c 0 -i 5020 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.85357 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5023 -a 0 -x {9.0 10.0 2516 ------- null} + -t 2.85357 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5023 -a 0 -x {9.0 10.0 2516 ------- null} h -t 2.85357 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5023 -a 0 -x {9.0 10.0 2516 ------- null} r -t 2.85374 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5009 -a 0 -x {9.0 10.0 2509 ------- null} + -t 2.85374 -s 10 -d 7 -p ack -e 40 -c 0 -i 5028 -a 0 -x {10.0 9.0 2509 ------- null} - -t 2.85374 -s 10 -d 7 -p ack -e 40 -c 0 -i 5028 -a 0 -x {10.0 9.0 2509 ------- null} h -t 2.85374 -s 10 -d 7 -p ack -e 40 -c 0 -i 5028 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.85432 -s 0 -d 9 -p ack -e 40 -c 0 -i 5018 -a 0 -x {10.0 9.0 2504 ------- null} + -t 2.85432 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5029 -a 0 -x {9.0 10.0 2519 ------- null} - -t 2.85432 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5029 -a 0 -x {9.0 10.0 2519 ------- null} h -t 2.85432 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5029 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.85434 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5015 -a 0 -x {9.0 10.0 2512 ------- null} - -t 2.85434 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5015 -a 0 -x {9.0 10.0 2512 ------- null} h -t 2.85434 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5015 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.8545 -s 0 -d 9 -p ack -e 40 -c 0 -i 5022 -a 0 -x {10.0 9.0 2506 ------- null} - -t 2.8545 -s 0 -d 9 -p ack -e 40 -c 0 -i 5022 -a 0 -x {10.0 9.0 2506 ------- null} h -t 2.8545 -s 0 -d 9 -p ack -e 40 -c 0 -i 5022 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.85456 -s 10 -d 7 -p ack -e 40 -c 0 -i 5026 -a 0 -x {10.0 9.0 2508 ------- null} + -t 2.85456 -s 7 -d 0 -p ack -e 40 -c 0 -i 5026 -a 0 -x {10.0 9.0 2508 ------- null} h -t 2.85456 -s 7 -d 8 -p ack -e 40 -c 0 -i 5026 -a 0 -x {10.0 9.0 2508 ------- null} r -t 2.85482 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5025 -a 0 -x {9.0 10.0 2517 ------- null} + -t 2.85482 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5025 -a 0 -x {9.0 10.0 2517 ------- null} h -t 2.85482 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5025 -a 0 -x {9.0 10.0 2517 ------- null} r -t 2.85496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5011 -a 0 -x {9.0 10.0 2510 ------- null} + -t 2.85496 -s 10 -d 7 -p ack -e 40 -c 0 -i 5030 -a 0 -x {10.0 9.0 2510 ------- null} - -t 2.85496 -s 10 -d 7 -p ack -e 40 -c 0 -i 5030 -a 0 -x {10.0 9.0 2510 ------- null} h -t 2.85496 -s 10 -d 7 -p ack -e 40 -c 0 -i 5030 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.85542 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5017 -a 0 -x {9.0 10.0 2513 ------- null} - -t 2.85542 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5017 -a 0 -x {9.0 10.0 2513 ------- null} h -t 2.85542 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5017 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.85546 -s 0 -d 9 -p ack -e 40 -c 0 -i 5020 -a 0 -x {10.0 9.0 2505 ------- null} + -t 2.85546 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5031 -a 0 -x {9.0 10.0 2520 ------- null} - -t 2.85546 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5031 -a 0 -x {9.0 10.0 2520 ------- null} h -t 2.85546 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5031 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.8556 -s 0 -d 9 -p ack -e 40 -c 0 -i 5024 -a 0 -x {10.0 9.0 2507 ------- null} - -t 2.8556 -s 0 -d 9 -p ack -e 40 -c 0 -i 5024 -a 0 -x {10.0 9.0 2507 ------- null} h -t 2.8556 -s 0 -d 9 -p ack -e 40 -c 0 -i 5024 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.85578 -s 10 -d 7 -p ack -e 40 -c 0 -i 5028 -a 0 -x {10.0 9.0 2509 ------- null} + -t 2.85578 -s 7 -d 0 -p ack -e 40 -c 0 -i 5028 -a 0 -x {10.0 9.0 2509 ------- null} h -t 2.85578 -s 7 -d 8 -p ack -e 40 -c 0 -i 5028 -a 0 -x {10.0 9.0 2509 ------- null} r -t 2.85605 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5027 -a 0 -x {9.0 10.0 2518 ------- null} + -t 2.85605 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5027 -a 0 -x {9.0 10.0 2518 ------- null} h -t 2.85605 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5027 -a 0 -x {9.0 10.0 2518 ------- null} r -t 2.85605 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5013 -a 0 -x {9.0 10.0 2511 ------- null} + -t 2.85605 -s 10 -d 7 -p ack -e 40 -c 0 -i 5032 -a 0 -x {10.0 9.0 2511 ------- null} - -t 2.85605 -s 10 -d 7 -p ack -e 40 -c 0 -i 5032 -a 0 -x {10.0 9.0 2511 ------- null} h -t 2.85605 -s 10 -d 7 -p ack -e 40 -c 0 -i 5032 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.85651 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5019 -a 0 -x {9.0 10.0 2514 ------- null} - -t 2.85651 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5019 -a 0 -x {9.0 10.0 2514 ------- null} h -t 2.85651 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5019 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.85653 -s 0 -d 9 -p ack -e 40 -c 0 -i 5022 -a 0 -x {10.0 9.0 2506 ------- null} + -t 2.85653 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5033 -a 0 -x {9.0 10.0 2521 ------- null} - -t 2.85653 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5033 -a 0 -x {9.0 10.0 2521 ------- null} h -t 2.85653 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5033 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.85661 -s 0 -d 9 -p ack -e 40 -c 0 -i 5026 -a 0 -x {10.0 9.0 2508 ------- null} - -t 2.85661 -s 0 -d 9 -p ack -e 40 -c 0 -i 5026 -a 0 -x {10.0 9.0 2508 ------- null} h -t 2.85661 -s 0 -d 9 -p ack -e 40 -c 0 -i 5026 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.85699 -s 10 -d 7 -p ack -e 40 -c 0 -i 5030 -a 0 -x {10.0 9.0 2510 ------- null} + -t 2.85699 -s 7 -d 0 -p ack -e 40 -c 0 -i 5030 -a 0 -x {10.0 9.0 2510 ------- null} h -t 2.85699 -s 7 -d 8 -p ack -e 40 -c 0 -i 5030 -a 0 -x {10.0 9.0 2510 ------- null} r -t 2.85712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5029 -a 0 -x {9.0 10.0 2519 ------- null} + -t 2.85712 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5029 -a 0 -x {9.0 10.0 2519 ------- null} h -t 2.85712 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5029 -a 0 -x {9.0 10.0 2519 ------- null} r -t 2.85714 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5015 -a 0 -x {9.0 10.0 2512 ------- null} + -t 2.85714 -s 10 -d 7 -p ack -e 40 -c 0 -i 5034 -a 0 -x {10.0 9.0 2512 ------- null} - -t 2.85714 -s 10 -d 7 -p ack -e 40 -c 0 -i 5034 -a 0 -x {10.0 9.0 2512 ------- null} h -t 2.85714 -s 10 -d 7 -p ack -e 40 -c 0 -i 5034 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.8576 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5021 -a 0 -x {9.0 10.0 2515 ------- null} - -t 2.8576 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5021 -a 0 -x {9.0 10.0 2515 ------- null} h -t 2.8576 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5021 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.85763 -s 0 -d 9 -p ack -e 40 -c 0 -i 5024 -a 0 -x {10.0 9.0 2507 ------- null} + -t 2.85763 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5035 -a 0 -x {9.0 10.0 2522 ------- null} - -t 2.85763 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5035 -a 0 -x {9.0 10.0 2522 ------- null} h -t 2.85763 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5035 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.85766 -s 0 -d 9 -p ack -e 40 -c 0 -i 5028 -a 0 -x {10.0 9.0 2509 ------- null} - -t 2.85766 -s 0 -d 9 -p ack -e 40 -c 0 -i 5028 -a 0 -x {10.0 9.0 2509 ------- null} h -t 2.85766 -s 0 -d 9 -p ack -e 40 -c 0 -i 5028 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.85808 -s 10 -d 7 -p ack -e 40 -c 0 -i 5032 -a 0 -x {10.0 9.0 2511 ------- null} + -t 2.85808 -s 7 -d 0 -p ack -e 40 -c 0 -i 5032 -a 0 -x {10.0 9.0 2511 ------- null} h -t 2.85808 -s 7 -d 8 -p ack -e 40 -c 0 -i 5032 -a 0 -x {10.0 9.0 2511 ------- null} r -t 2.85822 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5017 -a 0 -x {9.0 10.0 2513 ------- null} + -t 2.85822 -s 10 -d 7 -p ack -e 40 -c 0 -i 5036 -a 0 -x {10.0 9.0 2513 ------- null} - -t 2.85822 -s 10 -d 7 -p ack -e 40 -c 0 -i 5036 -a 0 -x {10.0 9.0 2513 ------- null} h -t 2.85822 -s 10 -d 7 -p ack -e 40 -c 0 -i 5036 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.85826 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5031 -a 0 -x {9.0 10.0 2520 ------- null} + -t 2.85826 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5031 -a 0 -x {9.0 10.0 2520 ------- null} h -t 2.85826 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5031 -a 0 -x {9.0 10.0 2520 ------- null} r -t 2.85864 -s 0 -d 9 -p ack -e 40 -c 0 -i 5026 -a 0 -x {10.0 9.0 2508 ------- null} + -t 2.85864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5037 -a 0 -x {9.0 10.0 2523 ------- null} - -t 2.85864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5037 -a 0 -x {9.0 10.0 2523 ------- null} h -t 2.85864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5037 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.85869 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5023 -a 0 -x {9.0 10.0 2516 ------- null} - -t 2.85869 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5023 -a 0 -x {9.0 10.0 2516 ------- null} h -t 2.85869 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5023 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.85898 -s 0 -d 9 -p ack -e 40 -c 0 -i 5030 -a 0 -x {10.0 9.0 2510 ------- null} - -t 2.85898 -s 0 -d 9 -p ack -e 40 -c 0 -i 5030 -a 0 -x {10.0 9.0 2510 ------- null} h -t 2.85898 -s 0 -d 9 -p ack -e 40 -c 0 -i 5030 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.85917 -s 10 -d 7 -p ack -e 40 -c 0 -i 5034 -a 0 -x {10.0 9.0 2512 ------- null} + -t 2.85917 -s 7 -d 0 -p ack -e 40 -c 0 -i 5034 -a 0 -x {10.0 9.0 2512 ------- null} h -t 2.85917 -s 7 -d 8 -p ack -e 40 -c 0 -i 5034 -a 0 -x {10.0 9.0 2512 ------- null} r -t 2.85931 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5019 -a 0 -x {9.0 10.0 2514 ------- null} + -t 2.85931 -s 10 -d 7 -p ack -e 40 -c 0 -i 5038 -a 0 -x {10.0 9.0 2514 ------- null} - -t 2.85931 -s 10 -d 7 -p ack -e 40 -c 0 -i 5038 -a 0 -x {10.0 9.0 2514 ------- null} h -t 2.85931 -s 10 -d 7 -p ack -e 40 -c 0 -i 5038 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.85933 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5033 -a 0 -x {9.0 10.0 2521 ------- null} + -t 2.85933 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5033 -a 0 -x {9.0 10.0 2521 ------- null} h -t 2.85933 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5033 -a 0 -x {9.0 10.0 2521 ------- null} r -t 2.8597 -s 0 -d 9 -p ack -e 40 -c 0 -i 5028 -a 0 -x {10.0 9.0 2509 ------- null} + -t 2.8597 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5039 -a 0 -x {9.0 10.0 2524 ------- null} - -t 2.8597 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5039 -a 0 -x {9.0 10.0 2524 ------- null} h -t 2.8597 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5039 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.86002 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5025 -a 0 -x {9.0 10.0 2517 ------- null} - -t 2.86002 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5025 -a 0 -x {9.0 10.0 2517 ------- null} h -t 2.86002 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5025 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.86021 -s 0 -d 9 -p ack -e 40 -c 0 -i 5032 -a 0 -x {10.0 9.0 2511 ------- null} - -t 2.86021 -s 0 -d 9 -p ack -e 40 -c 0 -i 5032 -a 0 -x {10.0 9.0 2511 ------- null} h -t 2.86021 -s 0 -d 9 -p ack -e 40 -c 0 -i 5032 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.86026 -s 10 -d 7 -p ack -e 40 -c 0 -i 5036 -a 0 -x {10.0 9.0 2513 ------- null} + -t 2.86026 -s 7 -d 0 -p ack -e 40 -c 0 -i 5036 -a 0 -x {10.0 9.0 2513 ------- null} h -t 2.86026 -s 7 -d 8 -p ack -e 40 -c 0 -i 5036 -a 0 -x {10.0 9.0 2513 ------- null} r -t 2.8604 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5021 -a 0 -x {9.0 10.0 2515 ------- null} + -t 2.8604 -s 10 -d 7 -p ack -e 40 -c 0 -i 5040 -a 0 -x {10.0 9.0 2515 ------- null} - -t 2.8604 -s 10 -d 7 -p ack -e 40 -c 0 -i 5040 -a 0 -x {10.0 9.0 2515 ------- null} h -t 2.8604 -s 10 -d 7 -p ack -e 40 -c 0 -i 5040 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.86043 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5035 -a 0 -x {9.0 10.0 2522 ------- null} + -t 2.86043 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5035 -a 0 -x {9.0 10.0 2522 ------- null} h -t 2.86043 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5035 -a 0 -x {9.0 10.0 2522 ------- null} r -t 2.86101 -s 0 -d 9 -p ack -e 40 -c 0 -i 5030 -a 0 -x {10.0 9.0 2510 ------- null} + -t 2.86101 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5041 -a 0 -x {9.0 10.0 2525 ------- null} - -t 2.86101 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5041 -a 0 -x {9.0 10.0 2525 ------- null} h -t 2.86101 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5041 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.8611 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5027 -a 0 -x {9.0 10.0 2518 ------- null} - -t 2.8611 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5027 -a 0 -x {9.0 10.0 2518 ------- null} h -t 2.8611 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5027 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.86125 -s 0 -d 9 -p ack -e 40 -c 0 -i 5034 -a 0 -x {10.0 9.0 2512 ------- null} - -t 2.86125 -s 0 -d 9 -p ack -e 40 -c 0 -i 5034 -a 0 -x {10.0 9.0 2512 ------- null} h -t 2.86125 -s 0 -d 9 -p ack -e 40 -c 0 -i 5034 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.86134 -s 10 -d 7 -p ack -e 40 -c 0 -i 5038 -a 0 -x {10.0 9.0 2514 ------- null} + -t 2.86134 -s 7 -d 0 -p ack -e 40 -c 0 -i 5038 -a 0 -x {10.0 9.0 2514 ------- null} h -t 2.86134 -s 7 -d 8 -p ack -e 40 -c 0 -i 5038 -a 0 -x {10.0 9.0 2514 ------- null} r -t 2.86144 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5037 -a 0 -x {9.0 10.0 2523 ------- null} + -t 2.86144 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5037 -a 0 -x {9.0 10.0 2523 ------- null} h -t 2.86144 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5037 -a 0 -x {9.0 10.0 2523 ------- null} r -t 2.86149 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5023 -a 0 -x {9.0 10.0 2516 ------- null} + -t 2.86149 -s 10 -d 7 -p ack -e 40 -c 0 -i 5042 -a 0 -x {10.0 9.0 2516 ------- null} - -t 2.86149 -s 10 -d 7 -p ack -e 40 -c 0 -i 5042 -a 0 -x {10.0 9.0 2516 ------- null} h -t 2.86149 -s 10 -d 7 -p ack -e 40 -c 0 -i 5042 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.86219 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5029 -a 0 -x {9.0 10.0 2519 ------- null} - -t 2.86219 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5029 -a 0 -x {9.0 10.0 2519 ------- null} h -t 2.86219 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5029 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.86224 -s 0 -d 9 -p ack -e 40 -c 0 -i 5032 -a 0 -x {10.0 9.0 2511 ------- null} + -t 2.86224 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5043 -a 0 -x {9.0 10.0 2526 ------- null} - -t 2.86224 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5043 -a 0 -x {9.0 10.0 2526 ------- null} h -t 2.86224 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5043 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.86243 -s 10 -d 7 -p ack -e 40 -c 0 -i 5040 -a 0 -x {10.0 9.0 2515 ------- null} + -t 2.86243 -s 7 -d 0 -p ack -e 40 -c 0 -i 5040 -a 0 -x {10.0 9.0 2515 ------- null} h -t 2.86243 -s 7 -d 8 -p ack -e 40 -c 0 -i 5040 -a 0 -x {10.0 9.0 2515 ------- null} + -t 2.8625 -s 0 -d 9 -p ack -e 40 -c 0 -i 5036 -a 0 -x {10.0 9.0 2513 ------- null} - -t 2.8625 -s 0 -d 9 -p ack -e 40 -c 0 -i 5036 -a 0 -x {10.0 9.0 2513 ------- null} h -t 2.8625 -s 0 -d 9 -p ack -e 40 -c 0 -i 5036 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.8625 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5039 -a 0 -x {9.0 10.0 2524 ------- null} + -t 2.8625 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5039 -a 0 -x {9.0 10.0 2524 ------- null} h -t 2.8625 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5039 -a 0 -x {9.0 10.0 2524 ------- null} r -t 2.86282 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5025 -a 0 -x {9.0 10.0 2517 ------- null} + -t 2.86282 -s 10 -d 7 -p ack -e 40 -c 0 -i 5044 -a 0 -x {10.0 9.0 2517 ------- null} - -t 2.86282 -s 10 -d 7 -p ack -e 40 -c 0 -i 5044 -a 0 -x {10.0 9.0 2517 ------- null} h -t 2.86282 -s 10 -d 7 -p ack -e 40 -c 0 -i 5044 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.86328 -s 0 -d 9 -p ack -e 40 -c 0 -i 5034 -a 0 -x {10.0 9.0 2512 ------- null} + -t 2.86328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5045 -a 0 -x {9.0 10.0 2527 ------- null} - -t 2.86328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5045 -a 0 -x {9.0 10.0 2527 ------- null} h -t 2.86328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5045 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.86336 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5031 -a 0 -x {9.0 10.0 2520 ------- null} - -t 2.86336 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5031 -a 0 -x {9.0 10.0 2520 ------- null} h -t 2.86336 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5031 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.86352 -s 0 -d 9 -p ack -e 40 -c 0 -i 5038 -a 0 -x {10.0 9.0 2514 ------- null} - -t 2.86352 -s 0 -d 9 -p ack -e 40 -c 0 -i 5038 -a 0 -x {10.0 9.0 2514 ------- null} h -t 2.86352 -s 0 -d 9 -p ack -e 40 -c 0 -i 5038 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.86352 -s 10 -d 7 -p ack -e 40 -c 0 -i 5042 -a 0 -x {10.0 9.0 2516 ------- null} + -t 2.86352 -s 7 -d 0 -p ack -e 40 -c 0 -i 5042 -a 0 -x {10.0 9.0 2516 ------- null} h -t 2.86352 -s 7 -d 8 -p ack -e 40 -c 0 -i 5042 -a 0 -x {10.0 9.0 2516 ------- null} r -t 2.86381 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5041 -a 0 -x {9.0 10.0 2525 ------- null} + -t 2.86381 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5041 -a 0 -x {9.0 10.0 2525 ------- null} h -t 2.86381 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5041 -a 0 -x {9.0 10.0 2525 ------- null} r -t 2.8639 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5027 -a 0 -x {9.0 10.0 2518 ------- null} + -t 2.8639 -s 10 -d 7 -p ack -e 40 -c 0 -i 5046 -a 0 -x {10.0 9.0 2518 ------- null} - -t 2.8639 -s 10 -d 7 -p ack -e 40 -c 0 -i 5046 -a 0 -x {10.0 9.0 2518 ------- null} h -t 2.8639 -s 10 -d 7 -p ack -e 40 -c 0 -i 5046 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.86445 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5033 -a 0 -x {9.0 10.0 2521 ------- null} - -t 2.86445 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5033 -a 0 -x {9.0 10.0 2521 ------- null} h -t 2.86445 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5033 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.86451 -s 0 -d 9 -p ack -e 40 -c 0 -i 5040 -a 0 -x {10.0 9.0 2515 ------- null} - -t 2.86451 -s 0 -d 9 -p ack -e 40 -c 0 -i 5040 -a 0 -x {10.0 9.0 2515 ------- null} h -t 2.86451 -s 0 -d 9 -p ack -e 40 -c 0 -i 5040 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.86453 -s 0 -d 9 -p ack -e 40 -c 0 -i 5036 -a 0 -x {10.0 9.0 2513 ------- null} + -t 2.86453 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5047 -a 0 -x {9.0 10.0 2528 ------- null} - -t 2.86453 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5047 -a 0 -x {9.0 10.0 2528 ------- null} h -t 2.86453 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5047 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.86485 -s 10 -d 7 -p ack -e 40 -c 0 -i 5044 -a 0 -x {10.0 9.0 2517 ------- null} + -t 2.86485 -s 7 -d 0 -p ack -e 40 -c 0 -i 5044 -a 0 -x {10.0 9.0 2517 ------- null} h -t 2.86485 -s 7 -d 8 -p ack -e 40 -c 0 -i 5044 -a 0 -x {10.0 9.0 2517 ------- null} r -t 2.86499 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5029 -a 0 -x {9.0 10.0 2519 ------- null} + -t 2.86499 -s 10 -d 7 -p ack -e 40 -c 0 -i 5048 -a 0 -x {10.0 9.0 2519 ------- null} - -t 2.86499 -s 10 -d 7 -p ack -e 40 -c 0 -i 5048 -a 0 -x {10.0 9.0 2519 ------- null} h -t 2.86499 -s 10 -d 7 -p ack -e 40 -c 0 -i 5048 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.86504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5043 -a 0 -x {9.0 10.0 2526 ------- null} + -t 2.86504 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5043 -a 0 -x {9.0 10.0 2526 ------- null} h -t 2.86504 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5043 -a 0 -x {9.0 10.0 2526 ------- null} + -t 2.86554 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5035 -a 0 -x {9.0 10.0 2522 ------- null} - -t 2.86554 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5035 -a 0 -x {9.0 10.0 2522 ------- null} h -t 2.86554 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5035 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.86555 -s 0 -d 9 -p ack -e 40 -c 0 -i 5038 -a 0 -x {10.0 9.0 2514 ------- null} + -t 2.86555 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5049 -a 0 -x {9.0 10.0 2529 ------- null} - -t 2.86555 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5049 -a 0 -x {9.0 10.0 2529 ------- null} h -t 2.86555 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5049 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.86578 -s 0 -d 9 -p ack -e 40 -c 0 -i 5042 -a 0 -x {10.0 9.0 2516 ------- null} - -t 2.86578 -s 0 -d 9 -p ack -e 40 -c 0 -i 5042 -a 0 -x {10.0 9.0 2516 ------- null} h -t 2.86578 -s 0 -d 9 -p ack -e 40 -c 0 -i 5042 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.86594 -s 10 -d 7 -p ack -e 40 -c 0 -i 5046 -a 0 -x {10.0 9.0 2518 ------- null} + -t 2.86594 -s 7 -d 0 -p ack -e 40 -c 0 -i 5046 -a 0 -x {10.0 9.0 2518 ------- null} h -t 2.86594 -s 7 -d 8 -p ack -e 40 -c 0 -i 5046 -a 0 -x {10.0 9.0 2518 ------- null} r -t 2.86608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5045 -a 0 -x {9.0 10.0 2527 ------- null} + -t 2.86608 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5045 -a 0 -x {9.0 10.0 2527 ------- null} h -t 2.86608 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5045 -a 0 -x {9.0 10.0 2527 ------- null} r -t 2.86616 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5031 -a 0 -x {9.0 10.0 2520 ------- null} + -t 2.86616 -s 10 -d 7 -p ack -e 40 -c 0 -i 5050 -a 0 -x {10.0 9.0 2520 ------- null} - -t 2.86616 -s 10 -d 7 -p ack -e 40 -c 0 -i 5050 -a 0 -x {10.0 9.0 2520 ------- null} h -t 2.86616 -s 10 -d 7 -p ack -e 40 -c 0 -i 5050 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.86654 -s 0 -d 9 -p ack -e 40 -c 0 -i 5040 -a 0 -x {10.0 9.0 2515 ------- null} + -t 2.86654 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5051 -a 0 -x {9.0 10.0 2530 ------- null} - -t 2.86654 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5051 -a 0 -x {9.0 10.0 2530 ------- null} h -t 2.86654 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5051 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.86662 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5037 -a 0 -x {9.0 10.0 2523 ------- null} - -t 2.86662 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5037 -a 0 -x {9.0 10.0 2523 ------- null} h -t 2.86662 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5037 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.86682 -s 0 -d 9 -p ack -e 40 -c 0 -i 5044 -a 0 -x {10.0 9.0 2517 ------- null} - -t 2.86682 -s 0 -d 9 -p ack -e 40 -c 0 -i 5044 -a 0 -x {10.0 9.0 2517 ------- null} h -t 2.86682 -s 0 -d 9 -p ack -e 40 -c 0 -i 5044 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.86702 -s 10 -d 7 -p ack -e 40 -c 0 -i 5048 -a 0 -x {10.0 9.0 2519 ------- null} + -t 2.86702 -s 7 -d 0 -p ack -e 40 -c 0 -i 5048 -a 0 -x {10.0 9.0 2519 ------- null} h -t 2.86702 -s 7 -d 8 -p ack -e 40 -c 0 -i 5048 -a 0 -x {10.0 9.0 2519 ------- null} r -t 2.86725 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5033 -a 0 -x {9.0 10.0 2521 ------- null} + -t 2.86725 -s 10 -d 7 -p ack -e 40 -c 0 -i 5052 -a 0 -x {10.0 9.0 2521 ------- null} - -t 2.86725 -s 10 -d 7 -p ack -e 40 -c 0 -i 5052 -a 0 -x {10.0 9.0 2521 ------- null} h -t 2.86725 -s 10 -d 7 -p ack -e 40 -c 0 -i 5052 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.86733 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5047 -a 0 -x {9.0 10.0 2528 ------- null} + -t 2.86733 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5047 -a 0 -x {9.0 10.0 2528 ------- null} h -t 2.86733 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5047 -a 0 -x {9.0 10.0 2528 ------- null} + -t 2.86771 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5039 -a 0 -x {9.0 10.0 2524 ------- null} - -t 2.86771 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5039 -a 0 -x {9.0 10.0 2524 ------- null} h -t 2.86771 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5039 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.86781 -s 0 -d 9 -p ack -e 40 -c 0 -i 5042 -a 0 -x {10.0 9.0 2516 ------- null} + -t 2.86781 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5053 -a 0 -x {9.0 10.0 2531 ------- null} - -t 2.86781 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5053 -a 0 -x {9.0 10.0 2531 ------- null} h -t 2.86781 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5053 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.86797 -s 0 -d 9 -p ack -e 40 -c 0 -i 5046 -a 0 -x {10.0 9.0 2518 ------- null} - -t 2.86797 -s 0 -d 9 -p ack -e 40 -c 0 -i 5046 -a 0 -x {10.0 9.0 2518 ------- null} h -t 2.86797 -s 0 -d 9 -p ack -e 40 -c 0 -i 5046 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.86819 -s 10 -d 7 -p ack -e 40 -c 0 -i 5050 -a 0 -x {10.0 9.0 2520 ------- null} + -t 2.86819 -s 7 -d 0 -p ack -e 40 -c 0 -i 5050 -a 0 -x {10.0 9.0 2520 ------- null} h -t 2.86819 -s 7 -d 8 -p ack -e 40 -c 0 -i 5050 -a 0 -x {10.0 9.0 2520 ------- null} r -t 2.86834 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5035 -a 0 -x {9.0 10.0 2522 ------- null} + -t 2.86834 -s 10 -d 7 -p ack -e 40 -c 0 -i 5054 -a 0 -x {10.0 9.0 2522 ------- null} - -t 2.86834 -s 10 -d 7 -p ack -e 40 -c 0 -i 5054 -a 0 -x {10.0 9.0 2522 ------- null} h -t 2.86834 -s 10 -d 7 -p ack -e 40 -c 0 -i 5054 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.86835 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5049 -a 0 -x {9.0 10.0 2529 ------- null} + -t 2.86835 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5049 -a 0 -x {9.0 10.0 2529 ------- null} h -t 2.86835 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5049 -a 0 -x {9.0 10.0 2529 ------- null} r -t 2.86885 -s 0 -d 9 -p ack -e 40 -c 0 -i 5044 -a 0 -x {10.0 9.0 2517 ------- null} + -t 2.86885 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5055 -a 0 -x {9.0 10.0 2532 ------- null} - -t 2.86885 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5055 -a 0 -x {9.0 10.0 2532 ------- null} h -t 2.86885 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5055 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.86893 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5041 -a 0 -x {9.0 10.0 2525 ------- null} - -t 2.86893 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5041 -a 0 -x {9.0 10.0 2525 ------- null} h -t 2.86893 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5041 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.8691 -s 0 -d 9 -p ack -e 40 -c 0 -i 5048 -a 0 -x {10.0 9.0 2519 ------- null} - -t 2.8691 -s 0 -d 9 -p ack -e 40 -c 0 -i 5048 -a 0 -x {10.0 9.0 2519 ------- null} h -t 2.8691 -s 0 -d 9 -p ack -e 40 -c 0 -i 5048 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.86928 -s 10 -d 7 -p ack -e 40 -c 0 -i 5052 -a 0 -x {10.0 9.0 2521 ------- null} + -t 2.86928 -s 7 -d 0 -p ack -e 40 -c 0 -i 5052 -a 0 -x {10.0 9.0 2521 ------- null} h -t 2.86928 -s 7 -d 8 -p ack -e 40 -c 0 -i 5052 -a 0 -x {10.0 9.0 2521 ------- null} r -t 2.86934 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5051 -a 0 -x {9.0 10.0 2530 ------- null} + -t 2.86934 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5051 -a 0 -x {9.0 10.0 2530 ------- null} h -t 2.86934 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5051 -a 0 -x {9.0 10.0 2530 ------- null} r -t 2.86942 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5037 -a 0 -x {9.0 10.0 2523 ------- null} + -t 2.86942 -s 10 -d 7 -p ack -e 40 -c 0 -i 5056 -a 0 -x {10.0 9.0 2523 ------- null} - -t 2.86942 -s 10 -d 7 -p ack -e 40 -c 0 -i 5056 -a 0 -x {10.0 9.0 2523 ------- null} h -t 2.86942 -s 10 -d 7 -p ack -e 40 -c 0 -i 5056 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.87 -s 0 -d 9 -p ack -e 40 -c 0 -i 5046 -a 0 -x {10.0 9.0 2518 ------- null} + -t 2.87 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5057 -a 0 -x {9.0 10.0 2533 ------- null} - -t 2.87 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5057 -a 0 -x {9.0 10.0 2533 ------- null} h -t 2.87 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5057 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.87002 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5043 -a 0 -x {9.0 10.0 2526 ------- null} - -t 2.87002 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5043 -a 0 -x {9.0 10.0 2526 ------- null} h -t 2.87002 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5043 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.87016 -s 0 -d 9 -p ack -e 40 -c 0 -i 5050 -a 0 -x {10.0 9.0 2520 ------- null} - -t 2.87016 -s 0 -d 9 -p ack -e 40 -c 0 -i 5050 -a 0 -x {10.0 9.0 2520 ------- null} h -t 2.87016 -s 0 -d 9 -p ack -e 40 -c 0 -i 5050 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.87037 -s 10 -d 7 -p ack -e 40 -c 0 -i 5054 -a 0 -x {10.0 9.0 2522 ------- null} + -t 2.87037 -s 7 -d 0 -p ack -e 40 -c 0 -i 5054 -a 0 -x {10.0 9.0 2522 ------- null} h -t 2.87037 -s 7 -d 8 -p ack -e 40 -c 0 -i 5054 -a 0 -x {10.0 9.0 2522 ------- null} r -t 2.87051 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5039 -a 0 -x {9.0 10.0 2524 ------- null} + -t 2.87051 -s 10 -d 7 -p ack -e 40 -c 0 -i 5058 -a 0 -x {10.0 9.0 2524 ------- null} - -t 2.87051 -s 10 -d 7 -p ack -e 40 -c 0 -i 5058 -a 0 -x {10.0 9.0 2524 ------- null} h -t 2.87051 -s 10 -d 7 -p ack -e 40 -c 0 -i 5058 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.87061 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5053 -a 0 -x {9.0 10.0 2531 ------- null} + -t 2.87061 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5053 -a 0 -x {9.0 10.0 2531 ------- null} h -t 2.87061 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5053 -a 0 -x {9.0 10.0 2531 ------- null} + -t 2.8711 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5045 -a 0 -x {9.0 10.0 2527 ------- null} - -t 2.8711 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5045 -a 0 -x {9.0 10.0 2527 ------- null} h -t 2.8711 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5045 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.87114 -s 0 -d 9 -p ack -e 40 -c 0 -i 5048 -a 0 -x {10.0 9.0 2519 ------- null} + -t 2.87114 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5059 -a 0 -x {9.0 10.0 2534 ------- null} - -t 2.87114 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5059 -a 0 -x {9.0 10.0 2534 ------- null} h -t 2.87114 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5059 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.87117 -s 0 -d 9 -p ack -e 40 -c 0 -i 5052 -a 0 -x {10.0 9.0 2521 ------- null} - -t 2.87117 -s 0 -d 9 -p ack -e 40 -c 0 -i 5052 -a 0 -x {10.0 9.0 2521 ------- null} h -t 2.87117 -s 0 -d 9 -p ack -e 40 -c 0 -i 5052 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.87146 -s 10 -d 7 -p ack -e 40 -c 0 -i 5056 -a 0 -x {10.0 9.0 2523 ------- null} + -t 2.87146 -s 7 -d 0 -p ack -e 40 -c 0 -i 5056 -a 0 -x {10.0 9.0 2523 ------- null} h -t 2.87146 -s 7 -d 8 -p ack -e 40 -c 0 -i 5056 -a 0 -x {10.0 9.0 2523 ------- null} r -t 2.87165 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5055 -a 0 -x {9.0 10.0 2532 ------- null} + -t 2.87165 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5055 -a 0 -x {9.0 10.0 2532 ------- null} h -t 2.87165 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5055 -a 0 -x {9.0 10.0 2532 ------- null} r -t 2.87173 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5041 -a 0 -x {9.0 10.0 2525 ------- null} + -t 2.87173 -s 10 -d 7 -p ack -e 40 -c 0 -i 5060 -a 0 -x {10.0 9.0 2525 ------- null} - -t 2.87173 -s 10 -d 7 -p ack -e 40 -c 0 -i 5060 -a 0 -x {10.0 9.0 2525 ------- null} h -t 2.87173 -s 10 -d 7 -p ack -e 40 -c 0 -i 5060 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.87219 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5047 -a 0 -x {9.0 10.0 2528 ------- null} - -t 2.87219 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5047 -a 0 -x {9.0 10.0 2528 ------- null} h -t 2.87219 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5047 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.87219 -s 0 -d 9 -p ack -e 40 -c 0 -i 5050 -a 0 -x {10.0 9.0 2520 ------- null} + -t 2.87219 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5061 -a 0 -x {9.0 10.0 2535 ------- null} - -t 2.87219 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5061 -a 0 -x {9.0 10.0 2535 ------- null} h -t 2.87219 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5061 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.87248 -s 0 -d 9 -p ack -e 40 -c 0 -i 5054 -a 0 -x {10.0 9.0 2522 ------- null} - -t 2.87248 -s 0 -d 9 -p ack -e 40 -c 0 -i 5054 -a 0 -x {10.0 9.0 2522 ------- null} h -t 2.87248 -s 0 -d 9 -p ack -e 40 -c 0 -i 5054 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.87254 -s 10 -d 7 -p ack -e 40 -c 0 -i 5058 -a 0 -x {10.0 9.0 2524 ------- null} + -t 2.87254 -s 7 -d 0 -p ack -e 40 -c 0 -i 5058 -a 0 -x {10.0 9.0 2524 ------- null} h -t 2.87254 -s 7 -d 8 -p ack -e 40 -c 0 -i 5058 -a 0 -x {10.0 9.0 2524 ------- null} r -t 2.8728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5057 -a 0 -x {9.0 10.0 2533 ------- null} + -t 2.8728 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5057 -a 0 -x {9.0 10.0 2533 ------- null} h -t 2.8728 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5057 -a 0 -x {9.0 10.0 2533 ------- null} r -t 2.87282 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5043 -a 0 -x {9.0 10.0 2526 ------- null} + -t 2.87282 -s 10 -d 7 -p ack -e 40 -c 0 -i 5062 -a 0 -x {10.0 9.0 2526 ------- null} - -t 2.87282 -s 10 -d 7 -p ack -e 40 -c 0 -i 5062 -a 0 -x {10.0 9.0 2526 ------- null} h -t 2.87282 -s 10 -d 7 -p ack -e 40 -c 0 -i 5062 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.8732 -s 0 -d 9 -p ack -e 40 -c 0 -i 5052 -a 0 -x {10.0 9.0 2521 ------- null} + -t 2.8732 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5063 -a 0 -x {9.0 10.0 2536 ------- null} - -t 2.8732 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5063 -a 0 -x {9.0 10.0 2536 ------- null} h -t 2.8732 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5063 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.87331 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5049 -a 0 -x {9.0 10.0 2529 ------- null} - -t 2.87331 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5049 -a 0 -x {9.0 10.0 2529 ------- null} h -t 2.87331 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5049 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.87352 -s 0 -d 9 -p ack -e 40 -c 0 -i 5056 -a 0 -x {10.0 9.0 2523 ------- null} - -t 2.87352 -s 0 -d 9 -p ack -e 40 -c 0 -i 5056 -a 0 -x {10.0 9.0 2523 ------- null} h -t 2.87352 -s 0 -d 9 -p ack -e 40 -c 0 -i 5056 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.87376 -s 10 -d 7 -p ack -e 40 -c 0 -i 5060 -a 0 -x {10.0 9.0 2525 ------- null} + -t 2.87376 -s 7 -d 0 -p ack -e 40 -c 0 -i 5060 -a 0 -x {10.0 9.0 2525 ------- null} h -t 2.87376 -s 7 -d 8 -p ack -e 40 -c 0 -i 5060 -a 0 -x {10.0 9.0 2525 ------- null} r -t 2.8739 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5045 -a 0 -x {9.0 10.0 2527 ------- null} + -t 2.8739 -s 10 -d 7 -p ack -e 40 -c 0 -i 5064 -a 0 -x {10.0 9.0 2527 ------- null} - -t 2.8739 -s 10 -d 7 -p ack -e 40 -c 0 -i 5064 -a 0 -x {10.0 9.0 2527 ------- null} h -t 2.8739 -s 10 -d 7 -p ack -e 40 -c 0 -i 5064 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.87394 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5059 -a 0 -x {9.0 10.0 2534 ------- null} + -t 2.87394 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5059 -a 0 -x {9.0 10.0 2534 ------- null} h -t 2.87394 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5059 -a 0 -x {9.0 10.0 2534 ------- null} + -t 2.8744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5051 -a 0 -x {9.0 10.0 2530 ------- null} - -t 2.8744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5051 -a 0 -x {9.0 10.0 2530 ------- null} h -t 2.8744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5051 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.87451 -s 0 -d 9 -p ack -e 40 -c 0 -i 5054 -a 0 -x {10.0 9.0 2522 ------- null} + -t 2.87451 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5065 -a 0 -x {9.0 10.0 2537 ------- null} - -t 2.87451 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5065 -a 0 -x {9.0 10.0 2537 ------- null} h -t 2.87451 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5065 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.87454 -s 0 -d 9 -p ack -e 40 -c 0 -i 5058 -a 0 -x {10.0 9.0 2524 ------- null} - -t 2.87454 -s 0 -d 9 -p ack -e 40 -c 0 -i 5058 -a 0 -x {10.0 9.0 2524 ------- null} h -t 2.87454 -s 0 -d 9 -p ack -e 40 -c 0 -i 5058 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.87485 -s 10 -d 7 -p ack -e 40 -c 0 -i 5062 -a 0 -x {10.0 9.0 2526 ------- null} + -t 2.87485 -s 7 -d 0 -p ack -e 40 -c 0 -i 5062 -a 0 -x {10.0 9.0 2526 ------- null} h -t 2.87485 -s 7 -d 8 -p ack -e 40 -c 0 -i 5062 -a 0 -x {10.0 9.0 2526 ------- null} r -t 2.87499 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5047 -a 0 -x {9.0 10.0 2528 ------- null} + -t 2.87499 -s 10 -d 7 -p ack -e 40 -c 0 -i 5066 -a 0 -x {10.0 9.0 2528 ------- null} - -t 2.87499 -s 10 -d 7 -p ack -e 40 -c 0 -i 5066 -a 0 -x {10.0 9.0 2528 ------- null} h -t 2.87499 -s 10 -d 7 -p ack -e 40 -c 0 -i 5066 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.87499 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5061 -a 0 -x {9.0 10.0 2535 ------- null} + -t 2.87499 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5061 -a 0 -x {9.0 10.0 2535 ------- null} h -t 2.87499 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5061 -a 0 -x {9.0 10.0 2535 ------- null} + -t 2.87549 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5053 -a 0 -x {9.0 10.0 2531 ------- null} - -t 2.87549 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5053 -a 0 -x {9.0 10.0 2531 ------- null} h -t 2.87549 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5053 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.87555 -s 0 -d 9 -p ack -e 40 -c 0 -i 5056 -a 0 -x {10.0 9.0 2523 ------- null} + -t 2.87555 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5067 -a 0 -x {9.0 10.0 2538 ------- null} - -t 2.87555 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5067 -a 0 -x {9.0 10.0 2538 ------- null} h -t 2.87555 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5067 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.87566 -s 0 -d 9 -p ack -e 40 -c 0 -i 5060 -a 0 -x {10.0 9.0 2525 ------- null} - -t 2.87566 -s 0 -d 9 -p ack -e 40 -c 0 -i 5060 -a 0 -x {10.0 9.0 2525 ------- null} h -t 2.87566 -s 0 -d 9 -p ack -e 40 -c 0 -i 5060 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.87594 -s 10 -d 7 -p ack -e 40 -c 0 -i 5064 -a 0 -x {10.0 9.0 2527 ------- null} + -t 2.87594 -s 7 -d 0 -p ack -e 40 -c 0 -i 5064 -a 0 -x {10.0 9.0 2527 ------- null} h -t 2.87594 -s 7 -d 8 -p ack -e 40 -c 0 -i 5064 -a 0 -x {10.0 9.0 2527 ------- null} r -t 2.876 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5063 -a 0 -x {9.0 10.0 2536 ------- null} + -t 2.876 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5063 -a 0 -x {9.0 10.0 2536 ------- null} h -t 2.876 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5063 -a 0 -x {9.0 10.0 2536 ------- null} r -t 2.87611 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5049 -a 0 -x {9.0 10.0 2529 ------- null} + -t 2.87611 -s 10 -d 7 -p ack -e 40 -c 0 -i 5068 -a 0 -x {10.0 9.0 2529 ------- null} - -t 2.87611 -s 10 -d 7 -p ack -e 40 -c 0 -i 5068 -a 0 -x {10.0 9.0 2529 ------- null} h -t 2.87611 -s 10 -d 7 -p ack -e 40 -c 0 -i 5068 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.87658 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5055 -a 0 -x {9.0 10.0 2532 ------- null} - -t 2.87658 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5055 -a 0 -x {9.0 10.0 2532 ------- null} h -t 2.87658 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5055 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.87658 -s 0 -d 9 -p ack -e 40 -c 0 -i 5058 -a 0 -x {10.0 9.0 2524 ------- null} + -t 2.87658 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5069 -a 0 -x {9.0 10.0 2539 ------- null} - -t 2.87658 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5069 -a 0 -x {9.0 10.0 2539 ------- null} h -t 2.87658 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5069 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.87675 -s 0 -d 9 -p ack -e 40 -c 0 -i 5062 -a 0 -x {10.0 9.0 2526 ------- null} - -t 2.87675 -s 0 -d 9 -p ack -e 40 -c 0 -i 5062 -a 0 -x {10.0 9.0 2526 ------- null} h -t 2.87675 -s 0 -d 9 -p ack -e 40 -c 0 -i 5062 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.87702 -s 10 -d 7 -p ack -e 40 -c 0 -i 5066 -a 0 -x {10.0 9.0 2528 ------- null} + -t 2.87702 -s 7 -d 0 -p ack -e 40 -c 0 -i 5066 -a 0 -x {10.0 9.0 2528 ------- null} h -t 2.87702 -s 7 -d 8 -p ack -e 40 -c 0 -i 5066 -a 0 -x {10.0 9.0 2528 ------- null} r -t 2.8772 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5051 -a 0 -x {9.0 10.0 2530 ------- null} + -t 2.8772 -s 10 -d 7 -p ack -e 40 -c 0 -i 5070 -a 0 -x {10.0 9.0 2530 ------- null} - -t 2.8772 -s 10 -d 7 -p ack -e 40 -c 0 -i 5070 -a 0 -x {10.0 9.0 2530 ------- null} h -t 2.8772 -s 10 -d 7 -p ack -e 40 -c 0 -i 5070 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.87731 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5065 -a 0 -x {9.0 10.0 2537 ------- null} + -t 2.87731 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5065 -a 0 -x {9.0 10.0 2537 ------- null} h -t 2.87731 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5065 -a 0 -x {9.0 10.0 2537 ------- null} + -t 2.87766 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5057 -a 0 -x {9.0 10.0 2533 ------- null} - -t 2.87766 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5057 -a 0 -x {9.0 10.0 2533 ------- null} h -t 2.87766 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5057 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.8777 -s 0 -d 9 -p ack -e 40 -c 0 -i 5060 -a 0 -x {10.0 9.0 2525 ------- null} + -t 2.8777 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5071 -a 0 -x {9.0 10.0 2540 ------- null} - -t 2.8777 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5071 -a 0 -x {9.0 10.0 2540 ------- null} h -t 2.8777 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5071 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.87773 -s 0 -d 9 -p ack -e 40 -c 0 -i 5064 -a 0 -x {10.0 9.0 2527 ------- null} - -t 2.87773 -s 0 -d 9 -p ack -e 40 -c 0 -i 5064 -a 0 -x {10.0 9.0 2527 ------- null} h -t 2.87773 -s 0 -d 9 -p ack -e 40 -c 0 -i 5064 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.87814 -s 10 -d 7 -p ack -e 40 -c 0 -i 5068 -a 0 -x {10.0 9.0 2529 ------- null} + -t 2.87814 -s 7 -d 0 -p ack -e 40 -c 0 -i 5068 -a 0 -x {10.0 9.0 2529 ------- null} h -t 2.87814 -s 7 -d 8 -p ack -e 40 -c 0 -i 5068 -a 0 -x {10.0 9.0 2529 ------- null} r -t 2.87829 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5053 -a 0 -x {9.0 10.0 2531 ------- null} + -t 2.87829 -s 10 -d 7 -p ack -e 40 -c 0 -i 5072 -a 0 -x {10.0 9.0 2531 ------- null} - -t 2.87829 -s 10 -d 7 -p ack -e 40 -c 0 -i 5072 -a 0 -x {10.0 9.0 2531 ------- null} h -t 2.87829 -s 10 -d 7 -p ack -e 40 -c 0 -i 5072 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.87835 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5067 -a 0 -x {9.0 10.0 2538 ------- null} + -t 2.87835 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5067 -a 0 -x {9.0 10.0 2538 ------- null} h -t 2.87835 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5067 -a 0 -x {9.0 10.0 2538 ------- null} + -t 2.87875 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5059 -a 0 -x {9.0 10.0 2534 ------- null} - -t 2.87875 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5059 -a 0 -x {9.0 10.0 2534 ------- null} h -t 2.87875 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5059 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.87878 -s 0 -d 9 -p ack -e 40 -c 0 -i 5062 -a 0 -x {10.0 9.0 2526 ------- null} + -t 2.87878 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5073 -a 0 -x {9.0 10.0 2541 ------- null} - -t 2.87878 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5073 -a 0 -x {9.0 10.0 2541 ------- null} h -t 2.87878 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5073 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.87904 -s 0 -d 9 -p ack -e 40 -c 0 -i 5066 -a 0 -x {10.0 9.0 2528 ------- null} - -t 2.87904 -s 0 -d 9 -p ack -e 40 -c 0 -i 5066 -a 0 -x {10.0 9.0 2528 ------- null} h -t 2.87904 -s 0 -d 9 -p ack -e 40 -c 0 -i 5066 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.87923 -s 10 -d 7 -p ack -e 40 -c 0 -i 5070 -a 0 -x {10.0 9.0 2530 ------- null} + -t 2.87923 -s 7 -d 0 -p ack -e 40 -c 0 -i 5070 -a 0 -x {10.0 9.0 2530 ------- null} h -t 2.87923 -s 7 -d 8 -p ack -e 40 -c 0 -i 5070 -a 0 -x {10.0 9.0 2530 ------- null} r -t 2.87938 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5055 -a 0 -x {9.0 10.0 2532 ------- null} + -t 2.87938 -s 10 -d 7 -p ack -e 40 -c 0 -i 5074 -a 0 -x {10.0 9.0 2532 ------- null} - -t 2.87938 -s 10 -d 7 -p ack -e 40 -c 0 -i 5074 -a 0 -x {10.0 9.0 2532 ------- null} h -t 2.87938 -s 10 -d 7 -p ack -e 40 -c 0 -i 5074 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.87938 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5069 -a 0 -x {9.0 10.0 2539 ------- null} + -t 2.87938 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5069 -a 0 -x {9.0 10.0 2539 ------- null} h -t 2.87938 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5069 -a 0 -x {9.0 10.0 2539 ------- null} r -t 2.87976 -s 0 -d 9 -p ack -e 40 -c 0 -i 5064 -a 0 -x {10.0 9.0 2527 ------- null} + -t 2.87976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5075 -a 0 -x {9.0 10.0 2542 ------- null} - -t 2.87976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5075 -a 0 -x {9.0 10.0 2542 ------- null} h -t 2.87976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5075 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.88011 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5061 -a 0 -x {9.0 10.0 2535 ------- null} - -t 2.88011 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5061 -a 0 -x {9.0 10.0 2535 ------- null} h -t 2.88011 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5061 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.88026 -s 0 -d 9 -p ack -e 40 -c 0 -i 5068 -a 0 -x {10.0 9.0 2529 ------- null} - -t 2.88026 -s 0 -d 9 -p ack -e 40 -c 0 -i 5068 -a 0 -x {10.0 9.0 2529 ------- null} h -t 2.88026 -s 0 -d 9 -p ack -e 40 -c 0 -i 5068 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.88032 -s 10 -d 7 -p ack -e 40 -c 0 -i 5072 -a 0 -x {10.0 9.0 2531 ------- null} + -t 2.88032 -s 7 -d 0 -p ack -e 40 -c 0 -i 5072 -a 0 -x {10.0 9.0 2531 ------- null} h -t 2.88032 -s 7 -d 8 -p ack -e 40 -c 0 -i 5072 -a 0 -x {10.0 9.0 2531 ------- null} r -t 2.88046 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5057 -a 0 -x {9.0 10.0 2533 ------- null} + -t 2.88046 -s 10 -d 7 -p ack -e 40 -c 0 -i 5076 -a 0 -x {10.0 9.0 2533 ------- null} - -t 2.88046 -s 10 -d 7 -p ack -e 40 -c 0 -i 5076 -a 0 -x {10.0 9.0 2533 ------- null} h -t 2.88046 -s 10 -d 7 -p ack -e 40 -c 0 -i 5076 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.8805 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5071 -a 0 -x {9.0 10.0 2540 ------- null} + -t 2.8805 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5071 -a 0 -x {9.0 10.0 2540 ------- null} h -t 2.8805 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5071 -a 0 -x {9.0 10.0 2540 ------- null} r -t 2.88107 -s 0 -d 9 -p ack -e 40 -c 0 -i 5066 -a 0 -x {10.0 9.0 2528 ------- null} + -t 2.88107 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5077 -a 0 -x {9.0 10.0 2543 ------- null} - -t 2.88107 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5077 -a 0 -x {9.0 10.0 2543 ------- null} h -t 2.88107 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5077 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.8812 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5063 -a 0 -x {9.0 10.0 2536 ------- null} - -t 2.8812 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5063 -a 0 -x {9.0 10.0 2536 ------- null} h -t 2.8812 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5063 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.8813 -s 0 -d 9 -p ack -e 40 -c 0 -i 5070 -a 0 -x {10.0 9.0 2530 ------- null} - -t 2.8813 -s 0 -d 9 -p ack -e 40 -c 0 -i 5070 -a 0 -x {10.0 9.0 2530 ------- null} h -t 2.8813 -s 0 -d 9 -p ack -e 40 -c 0 -i 5070 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.88141 -s 10 -d 7 -p ack -e 40 -c 0 -i 5074 -a 0 -x {10.0 9.0 2532 ------- null} + -t 2.88141 -s 7 -d 0 -p ack -e 40 -c 0 -i 5074 -a 0 -x {10.0 9.0 2532 ------- null} h -t 2.88141 -s 7 -d 8 -p ack -e 40 -c 0 -i 5074 -a 0 -x {10.0 9.0 2532 ------- null} r -t 2.88155 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5059 -a 0 -x {9.0 10.0 2534 ------- null} + -t 2.88155 -s 10 -d 7 -p ack -e 40 -c 0 -i 5078 -a 0 -x {10.0 9.0 2534 ------- null} - -t 2.88155 -s 10 -d 7 -p ack -e 40 -c 0 -i 5078 -a 0 -x {10.0 9.0 2534 ------- null} h -t 2.88155 -s 10 -d 7 -p ack -e 40 -c 0 -i 5078 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.88158 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5073 -a 0 -x {9.0 10.0 2541 ------- null} + -t 2.88158 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5073 -a 0 -x {9.0 10.0 2541 ------- null} h -t 2.88158 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5073 -a 0 -x {9.0 10.0 2541 ------- null} + -t 2.88229 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5065 -a 0 -x {9.0 10.0 2537 ------- null} - -t 2.88229 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5065 -a 0 -x {9.0 10.0 2537 ------- null} h -t 2.88229 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5065 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.88229 -s 0 -d 9 -p ack -e 40 -c 0 -i 5068 -a 0 -x {10.0 9.0 2529 ------- null} + -t 2.88229 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5079 -a 0 -x {9.0 10.0 2544 ------- null} - -t 2.88229 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5079 -a 0 -x {9.0 10.0 2544 ------- null} h -t 2.88229 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5079 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.8825 -s 10 -d 7 -p ack -e 40 -c 0 -i 5076 -a 0 -x {10.0 9.0 2533 ------- null} + -t 2.8825 -s 7 -d 0 -p ack -e 40 -c 0 -i 5076 -a 0 -x {10.0 9.0 2533 ------- null} h -t 2.8825 -s 7 -d 8 -p ack -e 40 -c 0 -i 5076 -a 0 -x {10.0 9.0 2533 ------- null} + -t 2.88256 -s 0 -d 9 -p ack -e 40 -c 0 -i 5072 -a 0 -x {10.0 9.0 2531 ------- null} - -t 2.88256 -s 0 -d 9 -p ack -e 40 -c 0 -i 5072 -a 0 -x {10.0 9.0 2531 ------- null} h -t 2.88256 -s 0 -d 9 -p ack -e 40 -c 0 -i 5072 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.88256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5075 -a 0 -x {9.0 10.0 2542 ------- null} + -t 2.88256 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5075 -a 0 -x {9.0 10.0 2542 ------- null} h -t 2.88256 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5075 -a 0 -x {9.0 10.0 2542 ------- null} r -t 2.88291 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5061 -a 0 -x {9.0 10.0 2535 ------- null} + -t 2.88291 -s 10 -d 7 -p ack -e 40 -c 0 -i 5080 -a 0 -x {10.0 9.0 2535 ------- null} - -t 2.88291 -s 10 -d 7 -p ack -e 40 -c 0 -i 5080 -a 0 -x {10.0 9.0 2535 ------- null} h -t 2.88291 -s 10 -d 7 -p ack -e 40 -c 0 -i 5080 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.88333 -s 0 -d 9 -p ack -e 40 -c 0 -i 5070 -a 0 -x {10.0 9.0 2530 ------- null} + -t 2.88333 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5081 -a 0 -x {9.0 10.0 2545 ------- null} - -t 2.88333 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5081 -a 0 -x {9.0 10.0 2545 ------- null} h -t 2.88333 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5081 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.88347 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5067 -a 0 -x {9.0 10.0 2538 ------- null} - -t 2.88347 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5067 -a 0 -x {9.0 10.0 2538 ------- null} h -t 2.88347 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5067 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.88358 -s 10 -d 7 -p ack -e 40 -c 0 -i 5078 -a 0 -x {10.0 9.0 2534 ------- null} + -t 2.88358 -s 7 -d 0 -p ack -e 40 -c 0 -i 5078 -a 0 -x {10.0 9.0 2534 ------- null} h -t 2.88358 -s 7 -d 8 -p ack -e 40 -c 0 -i 5078 -a 0 -x {10.0 9.0 2534 ------- null} + -t 2.88374 -s 0 -d 9 -p ack -e 40 -c 0 -i 5074 -a 0 -x {10.0 9.0 2532 ------- null} - -t 2.88374 -s 0 -d 9 -p ack -e 40 -c 0 -i 5074 -a 0 -x {10.0 9.0 2532 ------- null} h -t 2.88374 -s 0 -d 9 -p ack -e 40 -c 0 -i 5074 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.88387 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5077 -a 0 -x {9.0 10.0 2543 ------- null} + -t 2.88387 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5077 -a 0 -x {9.0 10.0 2543 ------- null} h -t 2.88387 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5077 -a 0 -x {9.0 10.0 2543 ------- null} r -t 2.884 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5063 -a 0 -x {9.0 10.0 2536 ------- null} + -t 2.884 -s 10 -d 7 -p ack -e 40 -c 0 -i 5082 -a 0 -x {10.0 9.0 2536 ------- null} - -t 2.884 -s 10 -d 7 -p ack -e 40 -c 0 -i 5082 -a 0 -x {10.0 9.0 2536 ------- null} h -t 2.884 -s 10 -d 7 -p ack -e 40 -c 0 -i 5082 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.88459 -s 0 -d 9 -p ack -e 40 -c 0 -i 5072 -a 0 -x {10.0 9.0 2531 ------- null} + -t 2.88459 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5083 -a 0 -x {9.0 10.0 2546 ------- null} - -t 2.88459 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5083 -a 0 -x {9.0 10.0 2546 ------- null} h -t 2.88459 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5083 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.8847 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5069 -a 0 -x {9.0 10.0 2539 ------- null} - -t 2.8847 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5069 -a 0 -x {9.0 10.0 2539 ------- null} h -t 2.8847 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5069 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.88494 -s 10 -d 7 -p ack -e 40 -c 0 -i 5080 -a 0 -x {10.0 9.0 2535 ------- null} + -t 2.88494 -s 7 -d 0 -p ack -e 40 -c 0 -i 5080 -a 0 -x {10.0 9.0 2535 ------- null} h -t 2.88494 -s 7 -d 8 -p ack -e 40 -c 0 -i 5080 -a 0 -x {10.0 9.0 2535 ------- null} + -t 2.88498 -s 0 -d 9 -p ack -e 40 -c 0 -i 5076 -a 0 -x {10.0 9.0 2533 ------- null} - -t 2.88498 -s 0 -d 9 -p ack -e 40 -c 0 -i 5076 -a 0 -x {10.0 9.0 2533 ------- null} h -t 2.88498 -s 0 -d 9 -p ack -e 40 -c 0 -i 5076 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.88509 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5065 -a 0 -x {9.0 10.0 2537 ------- null} + -t 2.88509 -s 10 -d 7 -p ack -e 40 -c 0 -i 5084 -a 0 -x {10.0 9.0 2537 ------- null} - -t 2.88509 -s 10 -d 7 -p ack -e 40 -c 0 -i 5084 -a 0 -x {10.0 9.0 2537 ------- null} h -t 2.88509 -s 10 -d 7 -p ack -e 40 -c 0 -i 5084 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.88509 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5079 -a 0 -x {9.0 10.0 2544 ------- null} + -t 2.88509 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5079 -a 0 -x {9.0 10.0 2544 ------- null} h -t 2.88509 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5079 -a 0 -x {9.0 10.0 2544 ------- null} r -t 2.88578 -s 0 -d 9 -p ack -e 40 -c 0 -i 5074 -a 0 -x {10.0 9.0 2532 ------- null} + -t 2.88578 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5085 -a 0 -x {9.0 10.0 2547 ------- null} - -t 2.88578 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5085 -a 0 -x {9.0 10.0 2547 ------- null} h -t 2.88578 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5085 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.886 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5071 -a 0 -x {9.0 10.0 2540 ------- null} - -t 2.886 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5071 -a 0 -x {9.0 10.0 2540 ------- null} h -t 2.886 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5071 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.88603 -s 10 -d 7 -p ack -e 40 -c 0 -i 5082 -a 0 -x {10.0 9.0 2536 ------- null} + -t 2.88603 -s 7 -d 0 -p ack -e 40 -c 0 -i 5082 -a 0 -x {10.0 9.0 2536 ------- null} h -t 2.88603 -s 7 -d 8 -p ack -e 40 -c 0 -i 5082 -a 0 -x {10.0 9.0 2536 ------- null} + -t 2.8861 -s 0 -d 9 -p ack -e 40 -c 0 -i 5078 -a 0 -x {10.0 9.0 2534 ------- null} - -t 2.8861 -s 0 -d 9 -p ack -e 40 -c 0 -i 5078 -a 0 -x {10.0 9.0 2534 ------- null} h -t 2.8861 -s 0 -d 9 -p ack -e 40 -c 0 -i 5078 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.88613 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5081 -a 0 -x {9.0 10.0 2545 ------- null} + -t 2.88613 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5081 -a 0 -x {9.0 10.0 2545 ------- null} h -t 2.88613 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5081 -a 0 -x {9.0 10.0 2545 ------- null} r -t 2.88627 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5067 -a 0 -x {9.0 10.0 2538 ------- null} + -t 2.88627 -s 10 -d 7 -p ack -e 40 -c 0 -i 5086 -a 0 -x {10.0 9.0 2538 ------- null} - -t 2.88627 -s 10 -d 7 -p ack -e 40 -c 0 -i 5086 -a 0 -x {10.0 9.0 2538 ------- null} h -t 2.88627 -s 10 -d 7 -p ack -e 40 -c 0 -i 5086 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.88701 -s 0 -d 9 -p ack -e 40 -c 0 -i 5076 -a 0 -x {10.0 9.0 2533 ------- null} + -t 2.88701 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5087 -a 0 -x {9.0 10.0 2548 ------- null} - -t 2.88701 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5087 -a 0 -x {9.0 10.0 2548 ------- null} h -t 2.88701 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5087 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.88709 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5073 -a 0 -x {9.0 10.0 2541 ------- null} - -t 2.88709 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5073 -a 0 -x {9.0 10.0 2541 ------- null} h -t 2.88709 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5073 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.88712 -s 10 -d 7 -p ack -e 40 -c 0 -i 5084 -a 0 -x {10.0 9.0 2537 ------- null} + -t 2.88712 -s 7 -d 0 -p ack -e 40 -c 0 -i 5084 -a 0 -x {10.0 9.0 2537 ------- null} h -t 2.88712 -s 7 -d 8 -p ack -e 40 -c 0 -i 5084 -a 0 -x {10.0 9.0 2537 ------- null} + -t 2.88733 -s 0 -d 9 -p ack -e 40 -c 0 -i 5080 -a 0 -x {10.0 9.0 2535 ------- null} - -t 2.88733 -s 0 -d 9 -p ack -e 40 -c 0 -i 5080 -a 0 -x {10.0 9.0 2535 ------- null} h -t 2.88733 -s 0 -d 9 -p ack -e 40 -c 0 -i 5080 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.88739 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5083 -a 0 -x {9.0 10.0 2546 ------- null} + -t 2.88739 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5083 -a 0 -x {9.0 10.0 2546 ------- null} h -t 2.88739 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5083 -a 0 -x {9.0 10.0 2546 ------- null} r -t 2.8875 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5069 -a 0 -x {9.0 10.0 2539 ------- null} + -t 2.8875 -s 10 -d 7 -p ack -e 40 -c 0 -i 5088 -a 0 -x {10.0 9.0 2539 ------- null} - -t 2.8875 -s 10 -d 7 -p ack -e 40 -c 0 -i 5088 -a 0 -x {10.0 9.0 2539 ------- null} h -t 2.8875 -s 10 -d 7 -p ack -e 40 -c 0 -i 5088 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.88813 -s 0 -d 9 -p ack -e 40 -c 0 -i 5078 -a 0 -x {10.0 9.0 2534 ------- null} + -t 2.88813 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5089 -a 0 -x {9.0 10.0 2549 ------- null} - -t 2.88813 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5089 -a 0 -x {9.0 10.0 2549 ------- null} h -t 2.88813 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5089 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.88818 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5075 -a 0 -x {9.0 10.0 2542 ------- null} - -t 2.88818 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5075 -a 0 -x {9.0 10.0 2542 ------- null} h -t 2.88818 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5075 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.8883 -s 10 -d 7 -p ack -e 40 -c 0 -i 5086 -a 0 -x {10.0 9.0 2538 ------- null} + -t 2.8883 -s 7 -d 0 -p ack -e 40 -c 0 -i 5086 -a 0 -x {10.0 9.0 2538 ------- null} h -t 2.8883 -s 7 -d 8 -p ack -e 40 -c 0 -i 5086 -a 0 -x {10.0 9.0 2538 ------- null} + -t 2.8884 -s 0 -d 9 -p ack -e 40 -c 0 -i 5082 -a 0 -x {10.0 9.0 2536 ------- null} - -t 2.8884 -s 0 -d 9 -p ack -e 40 -c 0 -i 5082 -a 0 -x {10.0 9.0 2536 ------- null} h -t 2.8884 -s 0 -d 9 -p ack -e 40 -c 0 -i 5082 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.88858 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5085 -a 0 -x {9.0 10.0 2547 ------- null} + -t 2.88858 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5085 -a 0 -x {9.0 10.0 2547 ------- null} h -t 2.88858 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5085 -a 0 -x {9.0 10.0 2547 ------- null} r -t 2.8888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5071 -a 0 -x {9.0 10.0 2540 ------- null} + -t 2.8888 -s 10 -d 7 -p ack -e 40 -c 0 -i 5090 -a 0 -x {10.0 9.0 2540 ------- null} - -t 2.8888 -s 10 -d 7 -p ack -e 40 -c 0 -i 5090 -a 0 -x {10.0 9.0 2540 ------- null} h -t 2.8888 -s 10 -d 7 -p ack -e 40 -c 0 -i 5090 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.88926 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5077 -a 0 -x {9.0 10.0 2543 ------- null} - -t 2.88926 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5077 -a 0 -x {9.0 10.0 2543 ------- null} h -t 2.88926 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5077 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.88936 -s 0 -d 9 -p ack -e 40 -c 0 -i 5080 -a 0 -x {10.0 9.0 2535 ------- null} + -t 2.88936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5091 -a 0 -x {9.0 10.0 2550 ------- null} - -t 2.88936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5091 -a 0 -x {9.0 10.0 2550 ------- null} h -t 2.88936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5091 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.88941 -s 0 -d 9 -p ack -e 40 -c 0 -i 5084 -a 0 -x {10.0 9.0 2537 ------- null} - -t 2.88941 -s 0 -d 9 -p ack -e 40 -c 0 -i 5084 -a 0 -x {10.0 9.0 2537 ------- null} h -t 2.88941 -s 0 -d 9 -p ack -e 40 -c 0 -i 5084 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.88954 -s 10 -d 7 -p ack -e 40 -c 0 -i 5088 -a 0 -x {10.0 9.0 2539 ------- null} + -t 2.88954 -s 7 -d 0 -p ack -e 40 -c 0 -i 5088 -a 0 -x {10.0 9.0 2539 ------- null} h -t 2.88954 -s 7 -d 8 -p ack -e 40 -c 0 -i 5088 -a 0 -x {10.0 9.0 2539 ------- null} r -t 2.88981 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5087 -a 0 -x {9.0 10.0 2548 ------- null} + -t 2.88981 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5087 -a 0 -x {9.0 10.0 2548 ------- null} h -t 2.88981 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5087 -a 0 -x {9.0 10.0 2548 ------- null} r -t 2.88989 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5073 -a 0 -x {9.0 10.0 2541 ------- null} + -t 2.88989 -s 10 -d 7 -p ack -e 40 -c 0 -i 5092 -a 0 -x {10.0 9.0 2541 ------- null} - -t 2.88989 -s 10 -d 7 -p ack -e 40 -c 0 -i 5092 -a 0 -x {10.0 9.0 2541 ------- null} h -t 2.88989 -s 10 -d 7 -p ack -e 40 -c 0 -i 5092 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.89035 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5079 -a 0 -x {9.0 10.0 2544 ------- null} - -t 2.89035 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5079 -a 0 -x {9.0 10.0 2544 ------- null} h -t 2.89035 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5079 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.89042 -s 0 -d 9 -p ack -e 40 -c 0 -i 5086 -a 0 -x {10.0 9.0 2538 ------- null} - -t 2.89042 -s 0 -d 9 -p ack -e 40 -c 0 -i 5086 -a 0 -x {10.0 9.0 2538 ------- null} h -t 2.89042 -s 0 -d 9 -p ack -e 40 -c 0 -i 5086 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.89043 -s 0 -d 9 -p ack -e 40 -c 0 -i 5082 -a 0 -x {10.0 9.0 2536 ------- null} + -t 2.89043 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5093 -a 0 -x {9.0 10.0 2551 ------- null} - -t 2.89043 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5093 -a 0 -x {9.0 10.0 2551 ------- null} h -t 2.89043 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5093 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.89083 -s 10 -d 7 -p ack -e 40 -c 0 -i 5090 -a 0 -x {10.0 9.0 2540 ------- null} + -t 2.89083 -s 7 -d 0 -p ack -e 40 -c 0 -i 5090 -a 0 -x {10.0 9.0 2540 ------- null} h -t 2.89083 -s 7 -d 8 -p ack -e 40 -c 0 -i 5090 -a 0 -x {10.0 9.0 2540 ------- null} r -t 2.89093 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5089 -a 0 -x {9.0 10.0 2549 ------- null} + -t 2.89093 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5089 -a 0 -x {9.0 10.0 2549 ------- null} h -t 2.89093 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5089 -a 0 -x {9.0 10.0 2549 ------- null} r -t 2.89098 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5075 -a 0 -x {9.0 10.0 2542 ------- null} + -t 2.89098 -s 10 -d 7 -p ack -e 40 -c 0 -i 5094 -a 0 -x {10.0 9.0 2542 ------- null} - -t 2.89098 -s 10 -d 7 -p ack -e 40 -c 0 -i 5094 -a 0 -x {10.0 9.0 2542 ------- null} h -t 2.89098 -s 10 -d 7 -p ack -e 40 -c 0 -i 5094 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.89144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5081 -a 0 -x {9.0 10.0 2545 ------- null} - -t 2.89144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5081 -a 0 -x {9.0 10.0 2545 ------- null} h -t 2.89144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5081 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.89144 -s 0 -d 9 -p ack -e 40 -c 0 -i 5084 -a 0 -x {10.0 9.0 2537 ------- null} + -t 2.89144 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5095 -a 0 -x {9.0 10.0 2552 ------- null} - -t 2.89144 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5095 -a 0 -x {9.0 10.0 2552 ------- null} h -t 2.89144 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5095 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.89168 -s 0 -d 9 -p ack -e 40 -c 0 -i 5088 -a 0 -x {10.0 9.0 2539 ------- null} - -t 2.89168 -s 0 -d 9 -p ack -e 40 -c 0 -i 5088 -a 0 -x {10.0 9.0 2539 ------- null} h -t 2.89168 -s 0 -d 9 -p ack -e 40 -c 0 -i 5088 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.89192 -s 10 -d 7 -p ack -e 40 -c 0 -i 5092 -a 0 -x {10.0 9.0 2541 ------- null} + -t 2.89192 -s 7 -d 0 -p ack -e 40 -c 0 -i 5092 -a 0 -x {10.0 9.0 2541 ------- null} h -t 2.89192 -s 7 -d 8 -p ack -e 40 -c 0 -i 5092 -a 0 -x {10.0 9.0 2541 ------- null} r -t 2.89206 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5077 -a 0 -x {9.0 10.0 2543 ------- null} + -t 2.89206 -s 10 -d 7 -p ack -e 40 -c 0 -i 5096 -a 0 -x {10.0 9.0 2543 ------- null} - -t 2.89206 -s 10 -d 7 -p ack -e 40 -c 0 -i 5096 -a 0 -x {10.0 9.0 2543 ------- null} h -t 2.89206 -s 10 -d 7 -p ack -e 40 -c 0 -i 5096 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.89216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5091 -a 0 -x {9.0 10.0 2550 ------- null} + -t 2.89216 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5091 -a 0 -x {9.0 10.0 2550 ------- null} h -t 2.89216 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5091 -a 0 -x {9.0 10.0 2550 ------- null} r -t 2.89245 -s 0 -d 9 -p ack -e 40 -c 0 -i 5086 -a 0 -x {10.0 9.0 2538 ------- null} + -t 2.89245 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5097 -a 0 -x {9.0 10.0 2553 ------- null} - -t 2.89245 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5097 -a 0 -x {9.0 10.0 2553 ------- null} h -t 2.89245 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5097 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.89253 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5083 -a 0 -x {9.0 10.0 2546 ------- null} - -t 2.89253 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5083 -a 0 -x {9.0 10.0 2546 ------- null} h -t 2.89253 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5083 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.89277 -s 0 -d 9 -p ack -e 40 -c 0 -i 5090 -a 0 -x {10.0 9.0 2540 ------- null} - -t 2.89277 -s 0 -d 9 -p ack -e 40 -c 0 -i 5090 -a 0 -x {10.0 9.0 2540 ------- null} h -t 2.89277 -s 0 -d 9 -p ack -e 40 -c 0 -i 5090 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.89301 -s 10 -d 7 -p ack -e 40 -c 0 -i 5094 -a 0 -x {10.0 9.0 2542 ------- null} + -t 2.89301 -s 7 -d 0 -p ack -e 40 -c 0 -i 5094 -a 0 -x {10.0 9.0 2542 ------- null} h -t 2.89301 -s 7 -d 8 -p ack -e 40 -c 0 -i 5094 -a 0 -x {10.0 9.0 2542 ------- null} r -t 2.89315 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5079 -a 0 -x {9.0 10.0 2544 ------- null} + -t 2.89315 -s 10 -d 7 -p ack -e 40 -c 0 -i 5098 -a 0 -x {10.0 9.0 2544 ------- null} - -t 2.89315 -s 10 -d 7 -p ack -e 40 -c 0 -i 5098 -a 0 -x {10.0 9.0 2544 ------- null} h -t 2.89315 -s 10 -d 7 -p ack -e 40 -c 0 -i 5098 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.89323 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5093 -a 0 -x {9.0 10.0 2551 ------- null} + -t 2.89323 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5093 -a 0 -x {9.0 10.0 2551 ------- null} h -t 2.89323 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5093 -a 0 -x {9.0 10.0 2551 ------- null} + -t 2.89362 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5085 -a 0 -x {9.0 10.0 2547 ------- null} - -t 2.89362 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5085 -a 0 -x {9.0 10.0 2547 ------- null} h -t 2.89362 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5085 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.89368 -s 0 -d 9 -p ack -e 40 -c 0 -i 5092 -a 0 -x {10.0 9.0 2541 ------- null} - -t 2.89368 -s 0 -d 9 -p ack -e 40 -c 0 -i 5092 -a 0 -x {10.0 9.0 2541 ------- null} h -t 2.89368 -s 0 -d 9 -p ack -e 40 -c 0 -i 5092 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.89371 -s 0 -d 9 -p ack -e 40 -c 0 -i 5088 -a 0 -x {10.0 9.0 2539 ------- null} + -t 2.89371 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5099 -a 0 -x {9.0 10.0 2554 ------- null} - -t 2.89371 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5099 -a 0 -x {9.0 10.0 2554 ------- null} h -t 2.89371 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5099 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.8941 -s 10 -d 7 -p ack -e 40 -c 0 -i 5096 -a 0 -x {10.0 9.0 2543 ------- null} + -t 2.8941 -s 7 -d 0 -p ack -e 40 -c 0 -i 5096 -a 0 -x {10.0 9.0 2543 ------- null} h -t 2.8941 -s 7 -d 8 -p ack -e 40 -c 0 -i 5096 -a 0 -x {10.0 9.0 2543 ------- null} r -t 2.89424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5081 -a 0 -x {9.0 10.0 2545 ------- null} + -t 2.89424 -s 10 -d 7 -p ack -e 40 -c 0 -i 5100 -a 0 -x {10.0 9.0 2545 ------- null} - -t 2.89424 -s 10 -d 7 -p ack -e 40 -c 0 -i 5100 -a 0 -x {10.0 9.0 2545 ------- null} h -t 2.89424 -s 10 -d 7 -p ack -e 40 -c 0 -i 5100 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.89424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5095 -a 0 -x {9.0 10.0 2552 ------- null} + -t 2.89424 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5095 -a 0 -x {9.0 10.0 2552 ------- null} h -t 2.89424 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5095 -a 0 -x {9.0 10.0 2552 ------- null} + -t 2.8947 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5087 -a 0 -x {9.0 10.0 2548 ------- null} - -t 2.8947 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5087 -a 0 -x {9.0 10.0 2548 ------- null} h -t 2.8947 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5087 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.8948 -s 0 -d 9 -p ack -e 40 -c 0 -i 5090 -a 0 -x {10.0 9.0 2540 ------- null} + -t 2.8948 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5101 -a 0 -x {9.0 10.0 2555 ------- null} - -t 2.8948 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5101 -a 0 -x {9.0 10.0 2555 ------- null} h -t 2.8948 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5101 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.89482 -s 0 -d 9 -p ack -e 40 -c 0 -i 5094 -a 0 -x {10.0 9.0 2542 ------- null} - -t 2.89482 -s 0 -d 9 -p ack -e 40 -c 0 -i 5094 -a 0 -x {10.0 9.0 2542 ------- null} h -t 2.89482 -s 0 -d 9 -p ack -e 40 -c 0 -i 5094 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.89518 -s 10 -d 7 -p ack -e 40 -c 0 -i 5098 -a 0 -x {10.0 9.0 2544 ------- null} + -t 2.89518 -s 7 -d 0 -p ack -e 40 -c 0 -i 5098 -a 0 -x {10.0 9.0 2544 ------- null} h -t 2.89518 -s 7 -d 8 -p ack -e 40 -c 0 -i 5098 -a 0 -x {10.0 9.0 2544 ------- null} r -t 2.89525 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5097 -a 0 -x {9.0 10.0 2553 ------- null} + -t 2.89525 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5097 -a 0 -x {9.0 10.0 2553 ------- null} h -t 2.89525 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5097 -a 0 -x {9.0 10.0 2553 ------- null} r -t 2.89533 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5083 -a 0 -x {9.0 10.0 2546 ------- null} + -t 2.89533 -s 10 -d 7 -p ack -e 40 -c 0 -i 5102 -a 0 -x {10.0 9.0 2546 ------- null} - -t 2.89533 -s 10 -d 7 -p ack -e 40 -c 0 -i 5102 -a 0 -x {10.0 9.0 2546 ------- null} h -t 2.89533 -s 10 -d 7 -p ack -e 40 -c 0 -i 5102 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.89571 -s 0 -d 9 -p ack -e 40 -c 0 -i 5092 -a 0 -x {10.0 9.0 2541 ------- null} + -t 2.89571 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5103 -a 0 -x {9.0 10.0 2556 ------- null} - -t 2.89571 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5103 -a 0 -x {9.0 10.0 2556 ------- null} h -t 2.89571 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5103 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.89579 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5089 -a 0 -x {9.0 10.0 2549 ------- null} - -t 2.89579 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5089 -a 0 -x {9.0 10.0 2549 ------- null} h -t 2.89579 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5089 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.896 -s 0 -d 9 -p ack -e 40 -c 0 -i 5096 -a 0 -x {10.0 9.0 2543 ------- null} - -t 2.896 -s 0 -d 9 -p ack -e 40 -c 0 -i 5096 -a 0 -x {10.0 9.0 2543 ------- null} h -t 2.896 -s 0 -d 9 -p ack -e 40 -c 0 -i 5096 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.89627 -s 10 -d 7 -p ack -e 40 -c 0 -i 5100 -a 0 -x {10.0 9.0 2545 ------- null} + -t 2.89627 -s 7 -d 0 -p ack -e 40 -c 0 -i 5100 -a 0 -x {10.0 9.0 2545 ------- null} h -t 2.89627 -s 7 -d 8 -p ack -e 40 -c 0 -i 5100 -a 0 -x {10.0 9.0 2545 ------- null} r -t 2.89642 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5085 -a 0 -x {9.0 10.0 2547 ------- null} + -t 2.89642 -s 10 -d 7 -p ack -e 40 -c 0 -i 5104 -a 0 -x {10.0 9.0 2547 ------- null} - -t 2.89642 -s 10 -d 7 -p ack -e 40 -c 0 -i 5104 -a 0 -x {10.0 9.0 2547 ------- null} h -t 2.89642 -s 10 -d 7 -p ack -e 40 -c 0 -i 5104 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.89651 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5099 -a 0 -x {9.0 10.0 2554 ------- null} + -t 2.89651 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5099 -a 0 -x {9.0 10.0 2554 ------- null} h -t 2.89651 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5099 -a 0 -x {9.0 10.0 2554 ------- null} r -t 2.89685 -s 0 -d 9 -p ack -e 40 -c 0 -i 5094 -a 0 -x {10.0 9.0 2542 ------- null} + -t 2.89685 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5105 -a 0 -x {9.0 10.0 2557 ------- null} - -t 2.89685 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5105 -a 0 -x {9.0 10.0 2557 ------- null} h -t 2.89685 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5105 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.89688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5091 -a 0 -x {9.0 10.0 2550 ------- null} - -t 2.89688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5091 -a 0 -x {9.0 10.0 2550 ------- null} h -t 2.89688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5091 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.89694 -s 0 -d 9 -p ack -e 40 -c 0 -i 5098 -a 0 -x {10.0 9.0 2544 ------- null} - -t 2.89694 -s 0 -d 9 -p ack -e 40 -c 0 -i 5098 -a 0 -x {10.0 9.0 2544 ------- null} h -t 2.89694 -s 0 -d 9 -p ack -e 40 -c 0 -i 5098 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.89736 -s 10 -d 7 -p ack -e 40 -c 0 -i 5102 -a 0 -x {10.0 9.0 2546 ------- null} + -t 2.89736 -s 7 -d 0 -p ack -e 40 -c 0 -i 5102 -a 0 -x {10.0 9.0 2546 ------- null} h -t 2.89736 -s 7 -d 8 -p ack -e 40 -c 0 -i 5102 -a 0 -x {10.0 9.0 2546 ------- null} r -t 2.8975 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5087 -a 0 -x {9.0 10.0 2548 ------- null} + -t 2.8975 -s 10 -d 7 -p ack -e 40 -c 0 -i 5106 -a 0 -x {10.0 9.0 2548 ------- null} - -t 2.8975 -s 10 -d 7 -p ack -e 40 -c 0 -i 5106 -a 0 -x {10.0 9.0 2548 ------- null} h -t 2.8975 -s 10 -d 7 -p ack -e 40 -c 0 -i 5106 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.8976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5101 -a 0 -x {9.0 10.0 2555 ------- null} + -t 2.8976 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5101 -a 0 -x {9.0 10.0 2555 ------- null} h -t 2.8976 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5101 -a 0 -x {9.0 10.0 2555 ------- null} + -t 2.89797 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5093 -a 0 -x {9.0 10.0 2551 ------- null} - -t 2.89797 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5093 -a 0 -x {9.0 10.0 2551 ------- null} h -t 2.89797 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5093 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.89803 -s 0 -d 9 -p ack -e 40 -c 0 -i 5096 -a 0 -x {10.0 9.0 2543 ------- null} + -t 2.89803 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5107 -a 0 -x {9.0 10.0 2558 ------- null} - -t 2.89803 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5107 -a 0 -x {9.0 10.0 2558 ------- null} h -t 2.89803 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5107 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.89805 -s 0 -d 9 -p ack -e 40 -c 0 -i 5100 -a 0 -x {10.0 9.0 2545 ------- null} - -t 2.89805 -s 0 -d 9 -p ack -e 40 -c 0 -i 5100 -a 0 -x {10.0 9.0 2545 ------- null} h -t 2.89805 -s 0 -d 9 -p ack -e 40 -c 0 -i 5100 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.89845 -s 10 -d 7 -p ack -e 40 -c 0 -i 5104 -a 0 -x {10.0 9.0 2547 ------- null} + -t 2.89845 -s 7 -d 0 -p ack -e 40 -c 0 -i 5104 -a 0 -x {10.0 9.0 2547 ------- null} h -t 2.89845 -s 7 -d 8 -p ack -e 40 -c 0 -i 5104 -a 0 -x {10.0 9.0 2547 ------- null} r -t 2.89851 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5103 -a 0 -x {9.0 10.0 2556 ------- null} + -t 2.89851 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5103 -a 0 -x {9.0 10.0 2556 ------- null} h -t 2.89851 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5103 -a 0 -x {9.0 10.0 2556 ------- null} r -t 2.89859 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5089 -a 0 -x {9.0 10.0 2549 ------- null} + -t 2.89859 -s 10 -d 7 -p ack -e 40 -c 0 -i 5108 -a 0 -x {10.0 9.0 2549 ------- null} - -t 2.89859 -s 10 -d 7 -p ack -e 40 -c 0 -i 5108 -a 0 -x {10.0 9.0 2549 ------- null} h -t 2.89859 -s 10 -d 7 -p ack -e 40 -c 0 -i 5108 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.89898 -s 0 -d 9 -p ack -e 40 -c 0 -i 5098 -a 0 -x {10.0 9.0 2544 ------- null} + -t 2.89898 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5109 -a 0 -x {9.0 10.0 2559 ------- null} - -t 2.89898 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5109 -a 0 -x {9.0 10.0 2559 ------- null} h -t 2.89898 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5109 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.89906 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5095 -a 0 -x {9.0 10.0 2552 ------- null} - -t 2.89906 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5095 -a 0 -x {9.0 10.0 2552 ------- null} h -t 2.89906 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5095 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.89936 -s 0 -d 9 -p ack -e 40 -c 0 -i 5102 -a 0 -x {10.0 9.0 2546 ------- null} - -t 2.89936 -s 0 -d 9 -p ack -e 40 -c 0 -i 5102 -a 0 -x {10.0 9.0 2546 ------- null} h -t 2.89936 -s 0 -d 9 -p ack -e 40 -c 0 -i 5102 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.89954 -s 10 -d 7 -p ack -e 40 -c 0 -i 5106 -a 0 -x {10.0 9.0 2548 ------- null} + -t 2.89954 -s 7 -d 0 -p ack -e 40 -c 0 -i 5106 -a 0 -x {10.0 9.0 2548 ------- null} h -t 2.89954 -s 7 -d 8 -p ack -e 40 -c 0 -i 5106 -a 0 -x {10.0 9.0 2548 ------- null} r -t 2.89965 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5105 -a 0 -x {9.0 10.0 2557 ------- null} + -t 2.89965 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5105 -a 0 -x {9.0 10.0 2557 ------- null} h -t 2.89965 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5105 -a 0 -x {9.0 10.0 2557 ------- null} r -t 2.89968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5091 -a 0 -x {9.0 10.0 2550 ------- null} + -t 2.89968 -s 10 -d 7 -p ack -e 40 -c 0 -i 5110 -a 0 -x {10.0 9.0 2550 ------- null} - -t 2.89968 -s 10 -d 7 -p ack -e 40 -c 0 -i 5110 -a 0 -x {10.0 9.0 2550 ------- null} h -t 2.89968 -s 10 -d 7 -p ack -e 40 -c 0 -i 5110 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.90008 -s 0 -d 9 -p ack -e 40 -c 0 -i 5100 -a 0 -x {10.0 9.0 2545 ------- null} + -t 2.90008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5111 -a 0 -x {9.0 10.0 2560 ------- null} - -t 2.90008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5111 -a 0 -x {9.0 10.0 2560 ------- null} h -t 2.90008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5111 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.90019 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5097 -a 0 -x {9.0 10.0 2553 ------- null} - -t 2.90019 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5097 -a 0 -x {9.0 10.0 2553 ------- null} h -t 2.90019 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5097 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.9003 -s 0 -d 9 -p ack -e 40 -c 0 -i 5104 -a 0 -x {10.0 9.0 2547 ------- null} - -t 2.9003 -s 0 -d 9 -p ack -e 40 -c 0 -i 5104 -a 0 -x {10.0 9.0 2547 ------- null} h -t 2.9003 -s 0 -d 9 -p ack -e 40 -c 0 -i 5104 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.90062 -s 10 -d 7 -p ack -e 40 -c 0 -i 5108 -a 0 -x {10.0 9.0 2549 ------- null} + -t 2.90062 -s 7 -d 0 -p ack -e 40 -c 0 -i 5108 -a 0 -x {10.0 9.0 2549 ------- null} h -t 2.90062 -s 7 -d 8 -p ack -e 40 -c 0 -i 5108 -a 0 -x {10.0 9.0 2549 ------- null} r -t 2.90077 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5093 -a 0 -x {9.0 10.0 2551 ------- null} + -t 2.90077 -s 10 -d 7 -p ack -e 40 -c 0 -i 5112 -a 0 -x {10.0 9.0 2551 ------- null} - -t 2.90077 -s 10 -d 7 -p ack -e 40 -c 0 -i 5112 -a 0 -x {10.0 9.0 2551 ------- null} h -t 2.90077 -s 10 -d 7 -p ack -e 40 -c 0 -i 5112 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.90083 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5107 -a 0 -x {9.0 10.0 2558 ------- null} + -t 2.90083 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5107 -a 0 -x {9.0 10.0 2558 ------- null} h -t 2.90083 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5107 -a 0 -x {9.0 10.0 2558 ------- null} + -t 2.90128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5099 -a 0 -x {9.0 10.0 2554 ------- null} - -t 2.90128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5099 -a 0 -x {9.0 10.0 2554 ------- null} h -t 2.90128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5099 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.90139 -s 0 -d 9 -p ack -e 40 -c 0 -i 5102 -a 0 -x {10.0 9.0 2546 ------- null} + -t 2.90139 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5113 -a 0 -x {9.0 10.0 2561 ------- null} - -t 2.90139 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5113 -a 0 -x {9.0 10.0 2561 ------- null} h -t 2.90139 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5113 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.90144 -s 0 -d 9 -p ack -e 40 -c 0 -i 5106 -a 0 -x {10.0 9.0 2548 ------- null} - -t 2.90144 -s 0 -d 9 -p ack -e 40 -c 0 -i 5106 -a 0 -x {10.0 9.0 2548 ------- null} h -t 2.90144 -s 0 -d 9 -p ack -e 40 -c 0 -i 5106 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.90171 -s 10 -d 7 -p ack -e 40 -c 0 -i 5110 -a 0 -x {10.0 9.0 2550 ------- null} + -t 2.90171 -s 7 -d 0 -p ack -e 40 -c 0 -i 5110 -a 0 -x {10.0 9.0 2550 ------- null} h -t 2.90171 -s 7 -d 8 -p ack -e 40 -c 0 -i 5110 -a 0 -x {10.0 9.0 2550 ------- null} r -t 2.90178 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5109 -a 0 -x {9.0 10.0 2559 ------- null} + -t 2.90178 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5109 -a 0 -x {9.0 10.0 2559 ------- null} h -t 2.90178 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5109 -a 0 -x {9.0 10.0 2559 ------- null} r -t 2.90186 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5095 -a 0 -x {9.0 10.0 2552 ------- null} + -t 2.90186 -s 10 -d 7 -p ack -e 40 -c 0 -i 5114 -a 0 -x {10.0 9.0 2552 ------- null} - -t 2.90186 -s 10 -d 7 -p ack -e 40 -c 0 -i 5114 -a 0 -x {10.0 9.0 2552 ------- null} h -t 2.90186 -s 10 -d 7 -p ack -e 40 -c 0 -i 5114 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.90234 -s 0 -d 9 -p ack -e 40 -c 0 -i 5104 -a 0 -x {10.0 9.0 2547 ------- null} + -t 2.90234 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5115 -a 0 -x {9.0 10.0 2562 ------- null} - -t 2.90234 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5115 -a 0 -x {9.0 10.0 2562 ------- null} h -t 2.90234 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5115 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.90237 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5101 -a 0 -x {9.0 10.0 2555 ------- null} - -t 2.90237 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5101 -a 0 -x {9.0 10.0 2555 ------- null} h -t 2.90237 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5101 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.90245 -s 0 -d 9 -p ack -e 40 -c 0 -i 5108 -a 0 -x {10.0 9.0 2549 ------- null} - -t 2.90245 -s 0 -d 9 -p ack -e 40 -c 0 -i 5108 -a 0 -x {10.0 9.0 2549 ------- null} h -t 2.90245 -s 0 -d 9 -p ack -e 40 -c 0 -i 5108 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.9028 -s 10 -d 7 -p ack -e 40 -c 0 -i 5112 -a 0 -x {10.0 9.0 2551 ------- null} + -t 2.9028 -s 7 -d 0 -p ack -e 40 -c 0 -i 5112 -a 0 -x {10.0 9.0 2551 ------- null} h -t 2.9028 -s 7 -d 8 -p ack -e 40 -c 0 -i 5112 -a 0 -x {10.0 9.0 2551 ------- null} r -t 2.90288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5111 -a 0 -x {9.0 10.0 2560 ------- null} + -t 2.90288 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5111 -a 0 -x {9.0 10.0 2560 ------- null} h -t 2.90288 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5111 -a 0 -x {9.0 10.0 2560 ------- null} r -t 2.90299 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5097 -a 0 -x {9.0 10.0 2553 ------- null} + -t 2.90299 -s 10 -d 7 -p ack -e 40 -c 0 -i 5116 -a 0 -x {10.0 9.0 2553 ------- null} - -t 2.90299 -s 10 -d 7 -p ack -e 40 -c 0 -i 5116 -a 0 -x {10.0 9.0 2553 ------- null} h -t 2.90299 -s 10 -d 7 -p ack -e 40 -c 0 -i 5116 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.90346 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5103 -a 0 -x {9.0 10.0 2556 ------- null} - -t 2.90346 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5103 -a 0 -x {9.0 10.0 2556 ------- null} h -t 2.90346 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5103 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.90347 -s 0 -d 9 -p ack -e 40 -c 0 -i 5106 -a 0 -x {10.0 9.0 2548 ------- null} + -t 2.90347 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5117 -a 0 -x {9.0 10.0 2563 ------- null} - -t 2.90347 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5117 -a 0 -x {9.0 10.0 2563 ------- null} h -t 2.90347 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5117 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.90368 -s 0 -d 9 -p ack -e 40 -c 0 -i 5110 -a 0 -x {10.0 9.0 2550 ------- null} - -t 2.90368 -s 0 -d 9 -p ack -e 40 -c 0 -i 5110 -a 0 -x {10.0 9.0 2550 ------- null} h -t 2.90368 -s 0 -d 9 -p ack -e 40 -c 0 -i 5110 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.90389 -s 10 -d 7 -p ack -e 40 -c 0 -i 5114 -a 0 -x {10.0 9.0 2552 ------- null} + -t 2.90389 -s 7 -d 0 -p ack -e 40 -c 0 -i 5114 -a 0 -x {10.0 9.0 2552 ------- null} h -t 2.90389 -s 7 -d 8 -p ack -e 40 -c 0 -i 5114 -a 0 -x {10.0 9.0 2552 ------- null} r -t 2.90408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5099 -a 0 -x {9.0 10.0 2554 ------- null} + -t 2.90408 -s 10 -d 7 -p ack -e 40 -c 0 -i 5118 -a 0 -x {10.0 9.0 2554 ------- null} - -t 2.90408 -s 10 -d 7 -p ack -e 40 -c 0 -i 5118 -a 0 -x {10.0 9.0 2554 ------- null} h -t 2.90408 -s 10 -d 7 -p ack -e 40 -c 0 -i 5118 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.90419 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5113 -a 0 -x {9.0 10.0 2561 ------- null} + -t 2.90419 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5113 -a 0 -x {9.0 10.0 2561 ------- null} h -t 2.90419 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5113 -a 0 -x {9.0 10.0 2561 ------- null} r -t 2.90448 -s 0 -d 9 -p ack -e 40 -c 0 -i 5108 -a 0 -x {10.0 9.0 2549 ------- null} + -t 2.90448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5119 -a 0 -x {9.0 10.0 2564 ------- null} - -t 2.90448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5119 -a 0 -x {9.0 10.0 2564 ------- null} h -t 2.90448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5119 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.90454 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5105 -a 0 -x {9.0 10.0 2557 ------- null} - -t 2.90454 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5105 -a 0 -x {9.0 10.0 2557 ------- null} h -t 2.90454 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5105 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.90466 -s 0 -d 9 -p ack -e 40 -c 0 -i 5112 -a 0 -x {10.0 9.0 2551 ------- null} - -t 2.90466 -s 0 -d 9 -p ack -e 40 -c 0 -i 5112 -a 0 -x {10.0 9.0 2551 ------- null} h -t 2.90466 -s 0 -d 9 -p ack -e 40 -c 0 -i 5112 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.90502 -s 10 -d 7 -p ack -e 40 -c 0 -i 5116 -a 0 -x {10.0 9.0 2553 ------- null} + -t 2.90502 -s 7 -d 0 -p ack -e 40 -c 0 -i 5116 -a 0 -x {10.0 9.0 2553 ------- null} h -t 2.90502 -s 7 -d 8 -p ack -e 40 -c 0 -i 5116 -a 0 -x {10.0 9.0 2553 ------- null} r -t 2.90514 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5115 -a 0 -x {9.0 10.0 2562 ------- null} + -t 2.90514 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5115 -a 0 -x {9.0 10.0 2562 ------- null} h -t 2.90514 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5115 -a 0 -x {9.0 10.0 2562 ------- null} r -t 2.90517 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5101 -a 0 -x {9.0 10.0 2555 ------- null} + -t 2.90517 -s 10 -d 7 -p ack -e 40 -c 0 -i 5120 -a 0 -x {10.0 9.0 2555 ------- null} - -t 2.90517 -s 10 -d 7 -p ack -e 40 -c 0 -i 5120 -a 0 -x {10.0 9.0 2555 ------- null} h -t 2.90517 -s 10 -d 7 -p ack -e 40 -c 0 -i 5120 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.90563 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5107 -a 0 -x {9.0 10.0 2558 ------- null} - -t 2.90563 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5107 -a 0 -x {9.0 10.0 2558 ------- null} h -t 2.90563 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5107 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.90571 -s 0 -d 9 -p ack -e 40 -c 0 -i 5110 -a 0 -x {10.0 9.0 2550 ------- null} + -t 2.90571 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5121 -a 0 -x {9.0 10.0 2565 ------- null} - -t 2.90571 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5121 -a 0 -x {9.0 10.0 2565 ------- null} h -t 2.90571 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5121 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.90594 -s 0 -d 9 -p ack -e 40 -c 0 -i 5114 -a 0 -x {10.0 9.0 2552 ------- null} - -t 2.90594 -s 0 -d 9 -p ack -e 40 -c 0 -i 5114 -a 0 -x {10.0 9.0 2552 ------- null} h -t 2.90594 -s 0 -d 9 -p ack -e 40 -c 0 -i 5114 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.90611 -s 10 -d 7 -p ack -e 40 -c 0 -i 5118 -a 0 -x {10.0 9.0 2554 ------- null} + -t 2.90611 -s 7 -d 0 -p ack -e 40 -c 0 -i 5118 -a 0 -x {10.0 9.0 2554 ------- null} h -t 2.90611 -s 7 -d 8 -p ack -e 40 -c 0 -i 5118 -a 0 -x {10.0 9.0 2554 ------- null} r -t 2.90626 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5103 -a 0 -x {9.0 10.0 2556 ------- null} + -t 2.90626 -s 10 -d 7 -p ack -e 40 -c 0 -i 5122 -a 0 -x {10.0 9.0 2556 ------- null} - -t 2.90626 -s 10 -d 7 -p ack -e 40 -c 0 -i 5122 -a 0 -x {10.0 9.0 2556 ------- null} h -t 2.90626 -s 10 -d 7 -p ack -e 40 -c 0 -i 5122 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.90627 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5117 -a 0 -x {9.0 10.0 2563 ------- null} + -t 2.90627 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5117 -a 0 -x {9.0 10.0 2563 ------- null} h -t 2.90627 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5117 -a 0 -x {9.0 10.0 2563 ------- null} r -t 2.90669 -s 0 -d 9 -p ack -e 40 -c 0 -i 5112 -a 0 -x {10.0 9.0 2551 ------- null} + -t 2.90669 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5123 -a 0 -x {9.0 10.0 2566 ------- null} - -t 2.90669 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5123 -a 0 -x {9.0 10.0 2566 ------- null} h -t 2.90669 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5123 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.90691 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5109 -a 0 -x {9.0 10.0 2559 ------- null} - -t 2.90691 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5109 -a 0 -x {9.0 10.0 2559 ------- null} h -t 2.90691 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5109 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.9072 -s 0 -d 9 -p ack -e 40 -c 0 -i 5116 -a 0 -x {10.0 9.0 2553 ------- null} - -t 2.9072 -s 0 -d 9 -p ack -e 40 -c 0 -i 5116 -a 0 -x {10.0 9.0 2553 ------- null} h -t 2.9072 -s 0 -d 9 -p ack -e 40 -c 0 -i 5116 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.9072 -s 10 -d 7 -p ack -e 40 -c 0 -i 5120 -a 0 -x {10.0 9.0 2555 ------- null} + -t 2.9072 -s 7 -d 0 -p ack -e 40 -c 0 -i 5120 -a 0 -x {10.0 9.0 2555 ------- null} h -t 2.9072 -s 7 -d 8 -p ack -e 40 -c 0 -i 5120 -a 0 -x {10.0 9.0 2555 ------- null} r -t 2.90728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5119 -a 0 -x {9.0 10.0 2564 ------- null} + -t 2.90728 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5119 -a 0 -x {9.0 10.0 2564 ------- null} h -t 2.90728 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5119 -a 0 -x {9.0 10.0 2564 ------- null} r -t 2.90734 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5105 -a 0 -x {9.0 10.0 2557 ------- null} + -t 2.90734 -s 10 -d 7 -p ack -e 40 -c 0 -i 5124 -a 0 -x {10.0 9.0 2557 ------- null} - -t 2.90734 -s 10 -d 7 -p ack -e 40 -c 0 -i 5124 -a 0 -x {10.0 9.0 2557 ------- null} h -t 2.90734 -s 10 -d 7 -p ack -e 40 -c 0 -i 5124 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.90797 -s 0 -d 9 -p ack -e 40 -c 0 -i 5114 -a 0 -x {10.0 9.0 2552 ------- null} + -t 2.90797 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5125 -a 0 -x {9.0 10.0 2567 ------- null} - -t 2.90797 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5125 -a 0 -x {9.0 10.0 2567 ------- null} h -t 2.90797 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5125 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.90818 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5111 -a 0 -x {9.0 10.0 2560 ------- null} - -t 2.90818 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5111 -a 0 -x {9.0 10.0 2560 ------- null} h -t 2.90818 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5111 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.90829 -s 10 -d 7 -p ack -e 40 -c 0 -i 5122 -a 0 -x {10.0 9.0 2556 ------- null} + -t 2.90829 -s 7 -d 0 -p ack -e 40 -c 0 -i 5122 -a 0 -x {10.0 9.0 2556 ------- null} h -t 2.90829 -s 7 -d 8 -p ack -e 40 -c 0 -i 5122 -a 0 -x {10.0 9.0 2556 ------- null} + -t 2.9084 -s 0 -d 9 -p ack -e 40 -c 0 -i 5118 -a 0 -x {10.0 9.0 2554 ------- null} - -t 2.9084 -s 0 -d 9 -p ack -e 40 -c 0 -i 5118 -a 0 -x {10.0 9.0 2554 ------- null} h -t 2.9084 -s 0 -d 9 -p ack -e 40 -c 0 -i 5118 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.90843 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5107 -a 0 -x {9.0 10.0 2558 ------- null} + -t 2.90843 -s 10 -d 7 -p ack -e 40 -c 0 -i 5126 -a 0 -x {10.0 9.0 2558 ------- null} - -t 2.90843 -s 10 -d 7 -p ack -e 40 -c 0 -i 5126 -a 0 -x {10.0 9.0 2558 ------- null} h -t 2.90843 -s 10 -d 7 -p ack -e 40 -c 0 -i 5126 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.90851 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5121 -a 0 -x {9.0 10.0 2565 ------- null} + -t 2.90851 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5121 -a 0 -x {9.0 10.0 2565 ------- null} h -t 2.90851 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5121 -a 0 -x {9.0 10.0 2565 ------- null} r -t 2.90923 -s 0 -d 9 -p ack -e 40 -c 0 -i 5116 -a 0 -x {10.0 9.0 2553 ------- null} + -t 2.90923 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5127 -a 0 -x {9.0 10.0 2568 ------- null} - -t 2.90923 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5127 -a 0 -x {9.0 10.0 2568 ------- null} h -t 2.90923 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5127 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.90926 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5113 -a 0 -x {9.0 10.0 2561 ------- null} - -t 2.90926 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5113 -a 0 -x {9.0 10.0 2561 ------- null} h -t 2.90926 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5113 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.90934 -s 0 -d 9 -p ack -e 40 -c 0 -i 5120 -a 0 -x {10.0 9.0 2555 ------- null} - -t 2.90934 -s 0 -d 9 -p ack -e 40 -c 0 -i 5120 -a 0 -x {10.0 9.0 2555 ------- null} h -t 2.90934 -s 0 -d 9 -p ack -e 40 -c 0 -i 5120 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.90938 -s 10 -d 7 -p ack -e 40 -c 0 -i 5124 -a 0 -x {10.0 9.0 2557 ------- null} + -t 2.90938 -s 7 -d 0 -p ack -e 40 -c 0 -i 5124 -a 0 -x {10.0 9.0 2557 ------- null} h -t 2.90938 -s 7 -d 8 -p ack -e 40 -c 0 -i 5124 -a 0 -x {10.0 9.0 2557 ------- null} r -t 2.90949 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5123 -a 0 -x {9.0 10.0 2566 ------- null} + -t 2.90949 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5123 -a 0 -x {9.0 10.0 2566 ------- null} h -t 2.90949 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5123 -a 0 -x {9.0 10.0 2566 ------- null} r -t 2.90971 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5109 -a 0 -x {9.0 10.0 2559 ------- null} + -t 2.90971 -s 10 -d 7 -p ack -e 40 -c 0 -i 5128 -a 0 -x {10.0 9.0 2559 ------- null} - -t 2.90971 -s 10 -d 7 -p ack -e 40 -c 0 -i 5128 -a 0 -x {10.0 9.0 2559 ------- null} h -t 2.90971 -s 10 -d 7 -p ack -e 40 -c 0 -i 5128 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.91035 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5115 -a 0 -x {9.0 10.0 2562 ------- null} - -t 2.91035 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5115 -a 0 -x {9.0 10.0 2562 ------- null} h -t 2.91035 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5115 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.91043 -s 0 -d 9 -p ack -e 40 -c 0 -i 5118 -a 0 -x {10.0 9.0 2554 ------- null} + -t 2.91043 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5129 -a 0 -x {9.0 10.0 2569 ------- null} - -t 2.91043 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5129 -a 0 -x {9.0 10.0 2569 ------- null} h -t 2.91043 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5129 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.91046 -s 10 -d 7 -p ack -e 40 -c 0 -i 5126 -a 0 -x {10.0 9.0 2558 ------- null} + -t 2.91046 -s 7 -d 0 -p ack -e 40 -c 0 -i 5126 -a 0 -x {10.0 9.0 2558 ------- null} h -t 2.91046 -s 7 -d 8 -p ack -e 40 -c 0 -i 5126 -a 0 -x {10.0 9.0 2558 ------- null} + -t 2.91054 -s 0 -d 9 -p ack -e 40 -c 0 -i 5122 -a 0 -x {10.0 9.0 2556 ------- null} - -t 2.91054 -s 0 -d 9 -p ack -e 40 -c 0 -i 5122 -a 0 -x {10.0 9.0 2556 ------- null} h -t 2.91054 -s 0 -d 9 -p ack -e 40 -c 0 -i 5122 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.91077 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5125 -a 0 -x {9.0 10.0 2567 ------- null} + -t 2.91077 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5125 -a 0 -x {9.0 10.0 2567 ------- null} h -t 2.91077 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5125 -a 0 -x {9.0 10.0 2567 ------- null} r -t 2.91098 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5111 -a 0 -x {9.0 10.0 2560 ------- null} + -t 2.91098 -s 10 -d 7 -p ack -e 40 -c 0 -i 5130 -a 0 -x {10.0 9.0 2560 ------- null} - -t 2.91098 -s 10 -d 7 -p ack -e 40 -c 0 -i 5130 -a 0 -x {10.0 9.0 2560 ------- null} h -t 2.91098 -s 10 -d 7 -p ack -e 40 -c 0 -i 5130 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.91138 -s 0 -d 9 -p ack -e 40 -c 0 -i 5120 -a 0 -x {10.0 9.0 2555 ------- null} + -t 2.91138 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5131 -a 0 -x {9.0 10.0 2570 ------- null} - -t 2.91138 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5131 -a 0 -x {9.0 10.0 2570 ------- null} h -t 2.91138 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5131 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.91144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5117 -a 0 -x {9.0 10.0 2563 ------- null} - -t 2.91144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5117 -a 0 -x {9.0 10.0 2563 ------- null} h -t 2.91144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5117 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.9116 -s 0 -d 9 -p ack -e 40 -c 0 -i 5124 -a 0 -x {10.0 9.0 2557 ------- null} - -t 2.9116 -s 0 -d 9 -p ack -e 40 -c 0 -i 5124 -a 0 -x {10.0 9.0 2557 ------- null} h -t 2.9116 -s 0 -d 9 -p ack -e 40 -c 0 -i 5124 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.91174 -s 10 -d 7 -p ack -e 40 -c 0 -i 5128 -a 0 -x {10.0 9.0 2559 ------- null} + -t 2.91174 -s 7 -d 0 -p ack -e 40 -c 0 -i 5128 -a 0 -x {10.0 9.0 2559 ------- null} h -t 2.91174 -s 7 -d 8 -p ack -e 40 -c 0 -i 5128 -a 0 -x {10.0 9.0 2559 ------- null} r -t 2.91203 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5127 -a 0 -x {9.0 10.0 2568 ------- null} + -t 2.91203 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5127 -a 0 -x {9.0 10.0 2568 ------- null} h -t 2.91203 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5127 -a 0 -x {9.0 10.0 2568 ------- null} r -t 2.91206 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5113 -a 0 -x {9.0 10.0 2561 ------- null} + -t 2.91206 -s 10 -d 7 -p ack -e 40 -c 0 -i 5132 -a 0 -x {10.0 9.0 2561 ------- null} - -t 2.91206 -s 10 -d 7 -p ack -e 40 -c 0 -i 5132 -a 0 -x {10.0 9.0 2561 ------- null} h -t 2.91206 -s 10 -d 7 -p ack -e 40 -c 0 -i 5132 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.91253 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5119 -a 0 -x {9.0 10.0 2564 ------- null} - -t 2.91253 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5119 -a 0 -x {9.0 10.0 2564 ------- null} h -t 2.91253 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5119 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.91258 -s 0 -d 9 -p ack -e 40 -c 0 -i 5122 -a 0 -x {10.0 9.0 2556 ------- null} + -t 2.91258 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5133 -a 0 -x {9.0 10.0 2571 ------- null} - -t 2.91258 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5133 -a 0 -x {9.0 10.0 2571 ------- null} h -t 2.91258 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5133 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.9127 -s 0 -d 9 -p ack -e 40 -c 0 -i 5126 -a 0 -x {10.0 9.0 2558 ------- null} - -t 2.9127 -s 0 -d 9 -p ack -e 40 -c 0 -i 5126 -a 0 -x {10.0 9.0 2558 ------- null} h -t 2.9127 -s 0 -d 9 -p ack -e 40 -c 0 -i 5126 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.91301 -s 10 -d 7 -p ack -e 40 -c 0 -i 5130 -a 0 -x {10.0 9.0 2560 ------- null} + -t 2.91301 -s 7 -d 0 -p ack -e 40 -c 0 -i 5130 -a 0 -x {10.0 9.0 2560 ------- null} h -t 2.91301 -s 7 -d 8 -p ack -e 40 -c 0 -i 5130 -a 0 -x {10.0 9.0 2560 ------- null} r -t 2.91315 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5115 -a 0 -x {9.0 10.0 2562 ------- null} + -t 2.91315 -s 10 -d 7 -p ack -e 40 -c 0 -i 5134 -a 0 -x {10.0 9.0 2562 ------- null} - -t 2.91315 -s 10 -d 7 -p ack -e 40 -c 0 -i 5134 -a 0 -x {10.0 9.0 2562 ------- null} h -t 2.91315 -s 10 -d 7 -p ack -e 40 -c 0 -i 5134 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.91323 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5129 -a 0 -x {9.0 10.0 2569 ------- null} + -t 2.91323 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5129 -a 0 -x {9.0 10.0 2569 ------- null} h -t 2.91323 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5129 -a 0 -x {9.0 10.0 2569 ------- null} + -t 2.91362 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5121 -a 0 -x {9.0 10.0 2565 ------- null} - -t 2.91362 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5121 -a 0 -x {9.0 10.0 2565 ------- null} h -t 2.91362 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5121 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.91363 -s 0 -d 9 -p ack -e 40 -c 0 -i 5124 -a 0 -x {10.0 9.0 2557 ------- null} + -t 2.91363 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5135 -a 0 -x {9.0 10.0 2572 ------- null} - -t 2.91363 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5135 -a 0 -x {9.0 10.0 2572 ------- null} h -t 2.91363 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5135 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.91389 -s 0 -d 9 -p ack -e 40 -c 0 -i 5128 -a 0 -x {10.0 9.0 2559 ------- null} - -t 2.91389 -s 0 -d 9 -p ack -e 40 -c 0 -i 5128 -a 0 -x {10.0 9.0 2559 ------- null} h -t 2.91389 -s 0 -d 9 -p ack -e 40 -c 0 -i 5128 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.9141 -s 10 -d 7 -p ack -e 40 -c 0 -i 5132 -a 0 -x {10.0 9.0 2561 ------- null} + -t 2.9141 -s 7 -d 0 -p ack -e 40 -c 0 -i 5132 -a 0 -x {10.0 9.0 2561 ------- null} h -t 2.9141 -s 7 -d 8 -p ack -e 40 -c 0 -i 5132 -a 0 -x {10.0 9.0 2561 ------- null} r -t 2.91418 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5131 -a 0 -x {9.0 10.0 2570 ------- null} + -t 2.91418 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5131 -a 0 -x {9.0 10.0 2570 ------- null} h -t 2.91418 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5131 -a 0 -x {9.0 10.0 2570 ------- null} r -t 2.91424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5117 -a 0 -x {9.0 10.0 2563 ------- null} + -t 2.91424 -s 10 -d 7 -p ack -e 40 -c 0 -i 5136 -a 0 -x {10.0 9.0 2563 ------- null} - -t 2.91424 -s 10 -d 7 -p ack -e 40 -c 0 -i 5136 -a 0 -x {10.0 9.0 2563 ------- null} h -t 2.91424 -s 10 -d 7 -p ack -e 40 -c 0 -i 5136 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.91474 -s 0 -d 9 -p ack -e 40 -c 0 -i 5126 -a 0 -x {10.0 9.0 2558 ------- null} + -t 2.91474 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5137 -a 0 -x {9.0 10.0 2573 ------- null} - -t 2.91474 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5137 -a 0 -x {9.0 10.0 2573 ------- null} h -t 2.91474 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5137 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.91483 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5123 -a 0 -x {9.0 10.0 2566 ------- null} - -t 2.91483 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5123 -a 0 -x {9.0 10.0 2566 ------- null} h -t 2.91483 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5123 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.91491 -s 0 -d 9 -p ack -e 40 -c 0 -i 5130 -a 0 -x {10.0 9.0 2560 ------- null} - -t 2.91491 -s 0 -d 9 -p ack -e 40 -c 0 -i 5130 -a 0 -x {10.0 9.0 2560 ------- null} h -t 2.91491 -s 0 -d 9 -p ack -e 40 -c 0 -i 5130 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.91518 -s 10 -d 7 -p ack -e 40 -c 0 -i 5134 -a 0 -x {10.0 9.0 2562 ------- null} + -t 2.91518 -s 7 -d 0 -p ack -e 40 -c 0 -i 5134 -a 0 -x {10.0 9.0 2562 ------- null} h -t 2.91518 -s 7 -d 8 -p ack -e 40 -c 0 -i 5134 -a 0 -x {10.0 9.0 2562 ------- null} r -t 2.91533 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5119 -a 0 -x {9.0 10.0 2564 ------- null} + -t 2.91533 -s 10 -d 7 -p ack -e 40 -c 0 -i 5138 -a 0 -x {10.0 9.0 2564 ------- null} - -t 2.91533 -s 10 -d 7 -p ack -e 40 -c 0 -i 5138 -a 0 -x {10.0 9.0 2564 ------- null} h -t 2.91533 -s 10 -d 7 -p ack -e 40 -c 0 -i 5138 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.91538 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5133 -a 0 -x {9.0 10.0 2571 ------- null} + -t 2.91538 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5133 -a 0 -x {9.0 10.0 2571 ------- null} h -t 2.91538 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5133 -a 0 -x {9.0 10.0 2571 ------- null} r -t 2.91592 -s 0 -d 9 -p ack -e 40 -c 0 -i 5128 -a 0 -x {10.0 9.0 2559 ------- null} + -t 2.91592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5139 -a 0 -x {9.0 10.0 2574 ------- null} - -t 2.91592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5139 -a 0 -x {9.0 10.0 2574 ------- null} h -t 2.91592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5139 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.91592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5125 -a 0 -x {9.0 10.0 2567 ------- null} - -t 2.91592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5125 -a 0 -x {9.0 10.0 2567 ------- null} h -t 2.91592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5125 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.916 -s 0 -d 9 -p ack -e 40 -c 0 -i 5132 -a 0 -x {10.0 9.0 2561 ------- null} - -t 2.916 -s 0 -d 9 -p ack -e 40 -c 0 -i 5132 -a 0 -x {10.0 9.0 2561 ------- null} h -t 2.916 -s 0 -d 9 -p ack -e 40 -c 0 -i 5132 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.91627 -s 10 -d 7 -p ack -e 40 -c 0 -i 5136 -a 0 -x {10.0 9.0 2563 ------- null} + -t 2.91627 -s 7 -d 0 -p ack -e 40 -c 0 -i 5136 -a 0 -x {10.0 9.0 2563 ------- null} h -t 2.91627 -s 7 -d 8 -p ack -e 40 -c 0 -i 5136 -a 0 -x {10.0 9.0 2563 ------- null} r -t 2.91642 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5121 -a 0 -x {9.0 10.0 2565 ------- null} + -t 2.91642 -s 10 -d 7 -p ack -e 40 -c 0 -i 5140 -a 0 -x {10.0 9.0 2565 ------- null} - -t 2.91642 -s 10 -d 7 -p ack -e 40 -c 0 -i 5140 -a 0 -x {10.0 9.0 2565 ------- null} h -t 2.91642 -s 10 -d 7 -p ack -e 40 -c 0 -i 5140 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.91643 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5135 -a 0 -x {9.0 10.0 2572 ------- null} + -t 2.91643 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5135 -a 0 -x {9.0 10.0 2572 ------- null} h -t 2.91643 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5135 -a 0 -x {9.0 10.0 2572 ------- null} r -t 2.91694 -s 0 -d 9 -p ack -e 40 -c 0 -i 5130 -a 0 -x {10.0 9.0 2560 ------- null} + -t 2.91694 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5141 -a 0 -x {9.0 10.0 2575 ------- null} - -t 2.91694 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5141 -a 0 -x {9.0 10.0 2575 ------- null} h -t 2.91694 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5141 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.91701 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5127 -a 0 -x {9.0 10.0 2568 ------- null} - -t 2.91701 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5127 -a 0 -x {9.0 10.0 2568 ------- null} h -t 2.91701 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5127 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.91714 -s 0 -d 9 -p ack -e 40 -c 0 -i 5134 -a 0 -x {10.0 9.0 2562 ------- null} - -t 2.91714 -s 0 -d 9 -p ack -e 40 -c 0 -i 5134 -a 0 -x {10.0 9.0 2562 ------- null} h -t 2.91714 -s 0 -d 9 -p ack -e 40 -c 0 -i 5134 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.91736 -s 10 -d 7 -p ack -e 40 -c 0 -i 5138 -a 0 -x {10.0 9.0 2564 ------- null} + -t 2.91736 -s 7 -d 0 -p ack -e 40 -c 0 -i 5138 -a 0 -x {10.0 9.0 2564 ------- null} h -t 2.91736 -s 7 -d 8 -p ack -e 40 -c 0 -i 5138 -a 0 -x {10.0 9.0 2564 ------- null} r -t 2.91754 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5137 -a 0 -x {9.0 10.0 2573 ------- null} + -t 2.91754 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5137 -a 0 -x {9.0 10.0 2573 ------- null} h -t 2.91754 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5137 -a 0 -x {9.0 10.0 2573 ------- null} r -t 2.91763 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5123 -a 0 -x {9.0 10.0 2566 ------- null} + -t 2.91763 -s 10 -d 7 -p ack -e 40 -c 0 -i 5142 -a 0 -x {10.0 9.0 2566 ------- null} - -t 2.91763 -s 10 -d 7 -p ack -e 40 -c 0 -i 5142 -a 0 -x {10.0 9.0 2566 ------- null} h -t 2.91763 -s 10 -d 7 -p ack -e 40 -c 0 -i 5142 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.91803 -s 0 -d 9 -p ack -e 40 -c 0 -i 5132 -a 0 -x {10.0 9.0 2561 ------- null} + -t 2.91803 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5143 -a 0 -x {9.0 10.0 2576 ------- null} - -t 2.91803 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5143 -a 0 -x {9.0 10.0 2576 ------- null} h -t 2.91803 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5143 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.9181 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5129 -a 0 -x {9.0 10.0 2569 ------- null} - -t 2.9181 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5129 -a 0 -x {9.0 10.0 2569 ------- null} h -t 2.9181 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5129 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.91827 -s 0 -d 9 -p ack -e 40 -c 0 -i 5136 -a 0 -x {10.0 9.0 2563 ------- null} - -t 2.91827 -s 0 -d 9 -p ack -e 40 -c 0 -i 5136 -a 0 -x {10.0 9.0 2563 ------- null} h -t 2.91827 -s 0 -d 9 -p ack -e 40 -c 0 -i 5136 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.91845 -s 10 -d 7 -p ack -e 40 -c 0 -i 5140 -a 0 -x {10.0 9.0 2565 ------- null} + -t 2.91845 -s 7 -d 0 -p ack -e 40 -c 0 -i 5140 -a 0 -x {10.0 9.0 2565 ------- null} h -t 2.91845 -s 7 -d 8 -p ack -e 40 -c 0 -i 5140 -a 0 -x {10.0 9.0 2565 ------- null} r -t 2.91872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5139 -a 0 -x {9.0 10.0 2574 ------- null} + -t 2.91872 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5139 -a 0 -x {9.0 10.0 2574 ------- null} h -t 2.91872 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5139 -a 0 -x {9.0 10.0 2574 ------- null} r -t 2.91872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5125 -a 0 -x {9.0 10.0 2567 ------- null} + -t 2.91872 -s 10 -d 7 -p ack -e 40 -c 0 -i 5144 -a 0 -x {10.0 9.0 2567 ------- null} - -t 2.91872 -s 10 -d 7 -p ack -e 40 -c 0 -i 5144 -a 0 -x {10.0 9.0 2567 ------- null} h -t 2.91872 -s 10 -d 7 -p ack -e 40 -c 0 -i 5144 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.91917 -s 0 -d 9 -p ack -e 40 -c 0 -i 5134 -a 0 -x {10.0 9.0 2562 ------- null} + -t 2.91917 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5145 -a 0 -x {9.0 10.0 2577 ------- null} - -t 2.91917 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5145 -a 0 -x {9.0 10.0 2577 ------- null} h -t 2.91917 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5145 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.91918 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5131 -a 0 -x {9.0 10.0 2570 ------- null} - -t 2.91918 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5131 -a 0 -x {9.0 10.0 2570 ------- null} h -t 2.91918 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5131 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.91939 -s 0 -d 9 -p ack -e 40 -c 0 -i 5138 -a 0 -x {10.0 9.0 2564 ------- null} - -t 2.91939 -s 0 -d 9 -p ack -e 40 -c 0 -i 5138 -a 0 -x {10.0 9.0 2564 ------- null} h -t 2.91939 -s 0 -d 9 -p ack -e 40 -c 0 -i 5138 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.91966 -s 10 -d 7 -p ack -e 40 -c 0 -i 5142 -a 0 -x {10.0 9.0 2566 ------- null} + -t 2.91966 -s 7 -d 0 -p ack -e 40 -c 0 -i 5142 -a 0 -x {10.0 9.0 2566 ------- null} h -t 2.91966 -s 7 -d 8 -p ack -e 40 -c 0 -i 5142 -a 0 -x {10.0 9.0 2566 ------- null} r -t 2.91974 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5141 -a 0 -x {9.0 10.0 2575 ------- null} + -t 2.91974 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5141 -a 0 -x {9.0 10.0 2575 ------- null} h -t 2.91974 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5141 -a 0 -x {9.0 10.0 2575 ------- null} r -t 2.91981 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5127 -a 0 -x {9.0 10.0 2568 ------- null} + -t 2.91981 -s 10 -d 7 -p ack -e 40 -c 0 -i 5146 -a 0 -x {10.0 9.0 2568 ------- null} - -t 2.91981 -s 10 -d 7 -p ack -e 40 -c 0 -i 5146 -a 0 -x {10.0 9.0 2568 ------- null} h -t 2.91981 -s 10 -d 7 -p ack -e 40 -c 0 -i 5146 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.92027 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5133 -a 0 -x {9.0 10.0 2571 ------- null} - -t 2.92027 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5133 -a 0 -x {9.0 10.0 2571 ------- null} h -t 2.92027 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5133 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.9203 -s 0 -d 9 -p ack -e 40 -c 0 -i 5136 -a 0 -x {10.0 9.0 2563 ------- null} + -t 2.9203 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5147 -a 0 -x {9.0 10.0 2578 ------- null} - -t 2.9203 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5147 -a 0 -x {9.0 10.0 2578 ------- null} h -t 2.9203 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5147 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.92056 -s 0 -d 9 -p ack -e 40 -c 0 -i 5140 -a 0 -x {10.0 9.0 2565 ------- null} - -t 2.92056 -s 0 -d 9 -p ack -e 40 -c 0 -i 5140 -a 0 -x {10.0 9.0 2565 ------- null} h -t 2.92056 -s 0 -d 9 -p ack -e 40 -c 0 -i 5140 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.92075 -s 10 -d 7 -p ack -e 40 -c 0 -i 5144 -a 0 -x {10.0 9.0 2567 ------- null} + -t 2.92075 -s 7 -d 0 -p ack -e 40 -c 0 -i 5144 -a 0 -x {10.0 9.0 2567 ------- null} h -t 2.92075 -s 7 -d 8 -p ack -e 40 -c 0 -i 5144 -a 0 -x {10.0 9.0 2567 ------- null} r -t 2.92083 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5143 -a 0 -x {9.0 10.0 2576 ------- null} + -t 2.92083 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5143 -a 0 -x {9.0 10.0 2576 ------- null} h -t 2.92083 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5143 -a 0 -x {9.0 10.0 2576 ------- null} r -t 2.9209 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5129 -a 0 -x {9.0 10.0 2569 ------- null} + -t 2.9209 -s 10 -d 7 -p ack -e 40 -c 0 -i 5148 -a 0 -x {10.0 9.0 2569 ------- null} - -t 2.9209 -s 10 -d 7 -p ack -e 40 -c 0 -i 5148 -a 0 -x {10.0 9.0 2569 ------- null} h -t 2.9209 -s 10 -d 7 -p ack -e 40 -c 0 -i 5148 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.92142 -s 0 -d 9 -p ack -e 40 -c 0 -i 5138 -a 0 -x {10.0 9.0 2564 ------- null} + -t 2.92142 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5149 -a 0 -x {9.0 10.0 2579 ------- null} - -t 2.92142 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5149 -a 0 -x {9.0 10.0 2579 ------- null} h -t 2.92142 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5149 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.92149 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5135 -a 0 -x {9.0 10.0 2572 ------- null} - -t 2.92149 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5135 -a 0 -x {9.0 10.0 2572 ------- null} h -t 2.92149 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5135 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.92158 -s 0 -d 9 -p ack -e 40 -c 0 -i 5142 -a 0 -x {10.0 9.0 2566 ------- null} - -t 2.92158 -s 0 -d 9 -p ack -e 40 -c 0 -i 5142 -a 0 -x {10.0 9.0 2566 ------- null} h -t 2.92158 -s 0 -d 9 -p ack -e 40 -c 0 -i 5142 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.92184 -s 10 -d 7 -p ack -e 40 -c 0 -i 5146 -a 0 -x {10.0 9.0 2568 ------- null} + -t 2.92184 -s 7 -d 0 -p ack -e 40 -c 0 -i 5146 -a 0 -x {10.0 9.0 2568 ------- null} h -t 2.92184 -s 7 -d 8 -p ack -e 40 -c 0 -i 5146 -a 0 -x {10.0 9.0 2568 ------- null} r -t 2.92197 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5145 -a 0 -x {9.0 10.0 2577 ------- null} + -t 2.92197 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5145 -a 0 -x {9.0 10.0 2577 ------- null} h -t 2.92197 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5145 -a 0 -x {9.0 10.0 2577 ------- null} r -t 2.92198 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5131 -a 0 -x {9.0 10.0 2570 ------- null} + -t 2.92198 -s 10 -d 7 -p ack -e 40 -c 0 -i 5150 -a 0 -x {10.0 9.0 2570 ------- null} - -t 2.92198 -s 10 -d 7 -p ack -e 40 -c 0 -i 5150 -a 0 -x {10.0 9.0 2570 ------- null} h -t 2.92198 -s 10 -d 7 -p ack -e 40 -c 0 -i 5150 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.92258 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5137 -a 0 -x {9.0 10.0 2573 ------- null} - -t 2.92258 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5137 -a 0 -x {9.0 10.0 2573 ------- null} h -t 2.92258 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5137 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.92259 -s 0 -d 9 -p ack -e 40 -c 0 -i 5140 -a 0 -x {10.0 9.0 2565 ------- null} + -t 2.92259 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5151 -a 0 -x {9.0 10.0 2580 ------- null} - -t 2.92259 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5151 -a 0 -x {9.0 10.0 2580 ------- null} h -t 2.92259 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5151 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.92285 -s 0 -d 9 -p ack -e 40 -c 0 -i 5144 -a 0 -x {10.0 9.0 2567 ------- null} - -t 2.92285 -s 0 -d 9 -p ack -e 40 -c 0 -i 5144 -a 0 -x {10.0 9.0 2567 ------- null} h -t 2.92285 -s 0 -d 9 -p ack -e 40 -c 0 -i 5144 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.92293 -s 10 -d 7 -p ack -e 40 -c 0 -i 5148 -a 0 -x {10.0 9.0 2569 ------- null} + -t 2.92293 -s 7 -d 0 -p ack -e 40 -c 0 -i 5148 -a 0 -x {10.0 9.0 2569 ------- null} h -t 2.92293 -s 7 -d 8 -p ack -e 40 -c 0 -i 5148 -a 0 -x {10.0 9.0 2569 ------- null} r -t 2.92307 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5133 -a 0 -x {9.0 10.0 2571 ------- null} + -t 2.92307 -s 10 -d 7 -p ack -e 40 -c 0 -i 5152 -a 0 -x {10.0 9.0 2571 ------- null} - -t 2.92307 -s 10 -d 7 -p ack -e 40 -c 0 -i 5152 -a 0 -x {10.0 9.0 2571 ------- null} h -t 2.92307 -s 10 -d 7 -p ack -e 40 -c 0 -i 5152 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.9231 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5147 -a 0 -x {9.0 10.0 2578 ------- null} + -t 2.9231 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5147 -a 0 -x {9.0 10.0 2578 ------- null} h -t 2.9231 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5147 -a 0 -x {9.0 10.0 2578 ------- null} r -t 2.92362 -s 0 -d 9 -p ack -e 40 -c 0 -i 5142 -a 0 -x {10.0 9.0 2566 ------- null} + -t 2.92362 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5153 -a 0 -x {9.0 10.0 2581 ------- null} - -t 2.92362 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5153 -a 0 -x {9.0 10.0 2581 ------- null} h -t 2.92362 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5153 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.92382 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5139 -a 0 -x {9.0 10.0 2574 ------- null} - -t 2.92382 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5139 -a 0 -x {9.0 10.0 2574 ------- null} h -t 2.92382 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5139 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.92398 -s 0 -d 9 -p ack -e 40 -c 0 -i 5146 -a 0 -x {10.0 9.0 2568 ------- null} - -t 2.92398 -s 0 -d 9 -p ack -e 40 -c 0 -i 5146 -a 0 -x {10.0 9.0 2568 ------- null} h -t 2.92398 -s 0 -d 9 -p ack -e 40 -c 0 -i 5146 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.92402 -s 10 -d 7 -p ack -e 40 -c 0 -i 5150 -a 0 -x {10.0 9.0 2570 ------- null} + -t 2.92402 -s 7 -d 0 -p ack -e 40 -c 0 -i 5150 -a 0 -x {10.0 9.0 2570 ------- null} h -t 2.92402 -s 7 -d 8 -p ack -e 40 -c 0 -i 5150 -a 0 -x {10.0 9.0 2570 ------- null} r -t 2.92422 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5149 -a 0 -x {9.0 10.0 2579 ------- null} + -t 2.92422 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5149 -a 0 -x {9.0 10.0 2579 ------- null} h -t 2.92422 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5149 -a 0 -x {9.0 10.0 2579 ------- null} r -t 2.92429 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5135 -a 0 -x {9.0 10.0 2572 ------- null} + -t 2.92429 -s 10 -d 7 -p ack -e 40 -c 0 -i 5154 -a 0 -x {10.0 9.0 2572 ------- null} - -t 2.92429 -s 10 -d 7 -p ack -e 40 -c 0 -i 5154 -a 0 -x {10.0 9.0 2572 ------- null} h -t 2.92429 -s 10 -d 7 -p ack -e 40 -c 0 -i 5154 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.92488 -s 0 -d 9 -p ack -e 40 -c 0 -i 5144 -a 0 -x {10.0 9.0 2567 ------- null} + -t 2.92488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5155 -a 0 -x {9.0 10.0 2582 ------- null} - -t 2.92488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5155 -a 0 -x {9.0 10.0 2582 ------- null} h -t 2.92488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5155 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.92491 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5141 -a 0 -x {9.0 10.0 2575 ------- null} - -t 2.92491 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5141 -a 0 -x {9.0 10.0 2575 ------- null} h -t 2.92491 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5141 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.92498 -s 0 -d 9 -p ack -e 40 -c 0 -i 5148 -a 0 -x {10.0 9.0 2569 ------- null} - -t 2.92498 -s 0 -d 9 -p ack -e 40 -c 0 -i 5148 -a 0 -x {10.0 9.0 2569 ------- null} h -t 2.92498 -s 0 -d 9 -p ack -e 40 -c 0 -i 5148 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.9251 -s 10 -d 7 -p ack -e 40 -c 0 -i 5152 -a 0 -x {10.0 9.0 2571 ------- null} + -t 2.9251 -s 7 -d 0 -p ack -e 40 -c 0 -i 5152 -a 0 -x {10.0 9.0 2571 ------- null} h -t 2.9251 -s 7 -d 8 -p ack -e 40 -c 0 -i 5152 -a 0 -x {10.0 9.0 2571 ------- null} r -t 2.92538 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5137 -a 0 -x {9.0 10.0 2573 ------- null} + -t 2.92538 -s 10 -d 7 -p ack -e 40 -c 0 -i 5156 -a 0 -x {10.0 9.0 2573 ------- null} - -t 2.92538 -s 10 -d 7 -p ack -e 40 -c 0 -i 5156 -a 0 -x {10.0 9.0 2573 ------- null} h -t 2.92538 -s 10 -d 7 -p ack -e 40 -c 0 -i 5156 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.92539 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5151 -a 0 -x {9.0 10.0 2580 ------- null} + -t 2.92539 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5151 -a 0 -x {9.0 10.0 2580 ------- null} h -t 2.92539 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5151 -a 0 -x {9.0 10.0 2580 ------- null} + -t 2.926 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5143 -a 0 -x {9.0 10.0 2576 ------- null} - -t 2.926 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5143 -a 0 -x {9.0 10.0 2576 ------- null} h -t 2.926 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5143 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.92602 -s 0 -d 9 -p ack -e 40 -c 0 -i 5146 -a 0 -x {10.0 9.0 2568 ------- null} + -t 2.92602 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5157 -a 0 -x {9.0 10.0 2583 ------- null} - -t 2.92602 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5157 -a 0 -x {9.0 10.0 2583 ------- null} h -t 2.92602 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5157 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.92619 -s 0 -d 9 -p ack -e 40 -c 0 -i 5150 -a 0 -x {10.0 9.0 2570 ------- null} - -t 2.92619 -s 0 -d 9 -p ack -e 40 -c 0 -i 5150 -a 0 -x {10.0 9.0 2570 ------- null} h -t 2.92619 -s 0 -d 9 -p ack -e 40 -c 0 -i 5150 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.92632 -s 10 -d 7 -p ack -e 40 -c 0 -i 5154 -a 0 -x {10.0 9.0 2572 ------- null} + -t 2.92632 -s 7 -d 0 -p ack -e 40 -c 0 -i 5154 -a 0 -x {10.0 9.0 2572 ------- null} h -t 2.92632 -s 7 -d 8 -p ack -e 40 -c 0 -i 5154 -a 0 -x {10.0 9.0 2572 ------- null} r -t 2.92642 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5153 -a 0 -x {9.0 10.0 2581 ------- null} + -t 2.92642 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5153 -a 0 -x {9.0 10.0 2581 ------- null} h -t 2.92642 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5153 -a 0 -x {9.0 10.0 2581 ------- null} r -t 2.92662 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5139 -a 0 -x {9.0 10.0 2574 ------- null} + -t 2.92662 -s 10 -d 7 -p ack -e 40 -c 0 -i 5158 -a 0 -x {10.0 9.0 2574 ------- null} - -t 2.92662 -s 10 -d 7 -p ack -e 40 -c 0 -i 5158 -a 0 -x {10.0 9.0 2574 ------- null} h -t 2.92662 -s 10 -d 7 -p ack -e 40 -c 0 -i 5158 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.92701 -s 0 -d 9 -p ack -e 40 -c 0 -i 5148 -a 0 -x {10.0 9.0 2569 ------- null} + -t 2.92701 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5159 -a 0 -x {9.0 10.0 2584 ------- null} - -t 2.92701 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5159 -a 0 -x {9.0 10.0 2584 ------- null} h -t 2.92701 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5159 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.92709 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5145 -a 0 -x {9.0 10.0 2577 ------- null} - -t 2.92709 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5145 -a 0 -x {9.0 10.0 2577 ------- null} h -t 2.92709 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5145 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.92718 -s 0 -d 9 -p ack -e 40 -c 0 -i 5152 -a 0 -x {10.0 9.0 2571 ------- null} - -t 2.92718 -s 0 -d 9 -p ack -e 40 -c 0 -i 5152 -a 0 -x {10.0 9.0 2571 ------- null} h -t 2.92718 -s 0 -d 9 -p ack -e 40 -c 0 -i 5152 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.92741 -s 10 -d 7 -p ack -e 40 -c 0 -i 5156 -a 0 -x {10.0 9.0 2573 ------- null} + -t 2.92741 -s 7 -d 0 -p ack -e 40 -c 0 -i 5156 -a 0 -x {10.0 9.0 2573 ------- null} h -t 2.92741 -s 7 -d 8 -p ack -e 40 -c 0 -i 5156 -a 0 -x {10.0 9.0 2573 ------- null} r -t 2.92768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5155 -a 0 -x {9.0 10.0 2582 ------- null} + -t 2.92768 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5155 -a 0 -x {9.0 10.0 2582 ------- null} h -t 2.92768 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5155 -a 0 -x {9.0 10.0 2582 ------- null} r -t 2.92771 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5141 -a 0 -x {9.0 10.0 2575 ------- null} + -t 2.92771 -s 10 -d 7 -p ack -e 40 -c 0 -i 5160 -a 0 -x {10.0 9.0 2575 ------- null} - -t 2.92771 -s 10 -d 7 -p ack -e 40 -c 0 -i 5160 -a 0 -x {10.0 9.0 2575 ------- null} h -t 2.92771 -s 10 -d 7 -p ack -e 40 -c 0 -i 5160 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.92818 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5147 -a 0 -x {9.0 10.0 2578 ------- null} - -t 2.92818 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5147 -a 0 -x {9.0 10.0 2578 ------- null} h -t 2.92818 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5147 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.92822 -s 0 -d 9 -p ack -e 40 -c 0 -i 5150 -a 0 -x {10.0 9.0 2570 ------- null} + -t 2.92822 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5161 -a 0 -x {9.0 10.0 2585 ------- null} - -t 2.92822 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5161 -a 0 -x {9.0 10.0 2585 ------- null} h -t 2.92822 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5161 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.92837 -s 0 -d 9 -p ack -e 40 -c 0 -i 5154 -a 0 -x {10.0 9.0 2572 ------- null} - -t 2.92837 -s 0 -d 9 -p ack -e 40 -c 0 -i 5154 -a 0 -x {10.0 9.0 2572 ------- null} h -t 2.92837 -s 0 -d 9 -p ack -e 40 -c 0 -i 5154 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.92866 -s 10 -d 7 -p ack -e 40 -c 0 -i 5158 -a 0 -x {10.0 9.0 2574 ------- null} + -t 2.92866 -s 7 -d 0 -p ack -e 40 -c 0 -i 5158 -a 0 -x {10.0 9.0 2574 ------- null} h -t 2.92866 -s 7 -d 8 -p ack -e 40 -c 0 -i 5158 -a 0 -x {10.0 9.0 2574 ------- null} r -t 2.9288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5143 -a 0 -x {9.0 10.0 2576 ------- null} + -t 2.9288 -s 10 -d 7 -p ack -e 40 -c 0 -i 5162 -a 0 -x {10.0 9.0 2576 ------- null} - -t 2.9288 -s 10 -d 7 -p ack -e 40 -c 0 -i 5162 -a 0 -x {10.0 9.0 2576 ------- null} h -t 2.9288 -s 10 -d 7 -p ack -e 40 -c 0 -i 5162 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.92882 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5157 -a 0 -x {9.0 10.0 2583 ------- null} + -t 2.92882 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5157 -a 0 -x {9.0 10.0 2583 ------- null} h -t 2.92882 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5157 -a 0 -x {9.0 10.0 2583 ------- null} r -t 2.92922 -s 0 -d 9 -p ack -e 40 -c 0 -i 5152 -a 0 -x {10.0 9.0 2571 ------- null} + -t 2.92922 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5163 -a 0 -x {9.0 10.0 2586 ------- null} - -t 2.92922 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5163 -a 0 -x {9.0 10.0 2586 ------- null} h -t 2.92922 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5163 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.92926 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5149 -a 0 -x {9.0 10.0 2579 ------- null} - -t 2.92926 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5149 -a 0 -x {9.0 10.0 2579 ------- null} h -t 2.92926 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5149 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.92952 -s 0 -d 9 -p ack -e 40 -c 0 -i 5156 -a 0 -x {10.0 9.0 2573 ------- null} - -t 2.92952 -s 0 -d 9 -p ack -e 40 -c 0 -i 5156 -a 0 -x {10.0 9.0 2573 ------- null} h -t 2.92952 -s 0 -d 9 -p ack -e 40 -c 0 -i 5156 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.92974 -s 10 -d 7 -p ack -e 40 -c 0 -i 5160 -a 0 -x {10.0 9.0 2575 ------- null} + -t 2.92974 -s 7 -d 0 -p ack -e 40 -c 0 -i 5160 -a 0 -x {10.0 9.0 2575 ------- null} h -t 2.92974 -s 7 -d 8 -p ack -e 40 -c 0 -i 5160 -a 0 -x {10.0 9.0 2575 ------- null} r -t 2.92981 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5159 -a 0 -x {9.0 10.0 2584 ------- null} + -t 2.92981 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5159 -a 0 -x {9.0 10.0 2584 ------- null} h -t 2.92981 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5159 -a 0 -x {9.0 10.0 2584 ------- null} r -t 2.92989 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5145 -a 0 -x {9.0 10.0 2577 ------- null} + -t 2.92989 -s 10 -d 7 -p ack -e 40 -c 0 -i 5164 -a 0 -x {10.0 9.0 2577 ------- null} - -t 2.92989 -s 10 -d 7 -p ack -e 40 -c 0 -i 5164 -a 0 -x {10.0 9.0 2577 ------- null} h -t 2.92989 -s 10 -d 7 -p ack -e 40 -c 0 -i 5164 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.9304 -s 0 -d 9 -p ack -e 40 -c 0 -i 5154 -a 0 -x {10.0 9.0 2572 ------- null} + -t 2.9304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5165 -a 0 -x {9.0 10.0 2587 ------- null} - -t 2.9304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5165 -a 0 -x {9.0 10.0 2587 ------- null} h -t 2.9304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5165 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.93043 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5151 -a 0 -x {9.0 10.0 2580 ------- null} - -t 2.93043 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5151 -a 0 -x {9.0 10.0 2580 ------- null} h -t 2.93043 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5151 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.93051 -s 0 -d 9 -p ack -e 40 -c 0 -i 5158 -a 0 -x {10.0 9.0 2574 ------- null} - -t 2.93051 -s 0 -d 9 -p ack -e 40 -c 0 -i 5158 -a 0 -x {10.0 9.0 2574 ------- null} h -t 2.93051 -s 0 -d 9 -p ack -e 40 -c 0 -i 5158 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.93083 -s 10 -d 7 -p ack -e 40 -c 0 -i 5162 -a 0 -x {10.0 9.0 2576 ------- null} + -t 2.93083 -s 7 -d 0 -p ack -e 40 -c 0 -i 5162 -a 0 -x {10.0 9.0 2576 ------- null} h -t 2.93083 -s 7 -d 8 -p ack -e 40 -c 0 -i 5162 -a 0 -x {10.0 9.0 2576 ------- null} r -t 2.93098 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5147 -a 0 -x {9.0 10.0 2578 ------- null} + -t 2.93098 -s 10 -d 7 -p ack -e 40 -c 0 -i 5166 -a 0 -x {10.0 9.0 2578 ------- null} - -t 2.93098 -s 10 -d 7 -p ack -e 40 -c 0 -i 5166 -a 0 -x {10.0 9.0 2578 ------- null} h -t 2.93098 -s 10 -d 7 -p ack -e 40 -c 0 -i 5166 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.93102 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5161 -a 0 -x {9.0 10.0 2585 ------- null} + -t 2.93102 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5161 -a 0 -x {9.0 10.0 2585 ------- null} h -t 2.93102 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5161 -a 0 -x {9.0 10.0 2585 ------- null} + -t 2.93152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5153 -a 0 -x {9.0 10.0 2581 ------- null} - -t 2.93152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5153 -a 0 -x {9.0 10.0 2581 ------- null} h -t 2.93152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5153 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.93155 -s 0 -d 9 -p ack -e 40 -c 0 -i 5156 -a 0 -x {10.0 9.0 2573 ------- null} + -t 2.93155 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5167 -a 0 -x {9.0 10.0 2588 ------- null} - -t 2.93155 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5167 -a 0 -x {9.0 10.0 2588 ------- null} h -t 2.93155 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5167 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.93176 -s 0 -d 9 -p ack -e 40 -c 0 -i 5160 -a 0 -x {10.0 9.0 2575 ------- null} - -t 2.93176 -s 0 -d 9 -p ack -e 40 -c 0 -i 5160 -a 0 -x {10.0 9.0 2575 ------- null} h -t 2.93176 -s 0 -d 9 -p ack -e 40 -c 0 -i 5160 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.93192 -s 10 -d 7 -p ack -e 40 -c 0 -i 5164 -a 0 -x {10.0 9.0 2577 ------- null} + -t 2.93192 -s 7 -d 0 -p ack -e 40 -c 0 -i 5164 -a 0 -x {10.0 9.0 2577 ------- null} h -t 2.93192 -s 7 -d 8 -p ack -e 40 -c 0 -i 5164 -a 0 -x {10.0 9.0 2577 ------- null} r -t 2.93202 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5163 -a 0 -x {9.0 10.0 2586 ------- null} + -t 2.93202 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5163 -a 0 -x {9.0 10.0 2586 ------- null} h -t 2.93202 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5163 -a 0 -x {9.0 10.0 2586 ------- null} r -t 2.93206 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5149 -a 0 -x {9.0 10.0 2579 ------- null} + -t 2.93206 -s 10 -d 7 -p ack -e 40 -c 0 -i 5168 -a 0 -x {10.0 9.0 2579 ------- null} - -t 2.93206 -s 10 -d 7 -p ack -e 40 -c 0 -i 5168 -a 0 -x {10.0 9.0 2579 ------- null} h -t 2.93206 -s 10 -d 7 -p ack -e 40 -c 0 -i 5168 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.93254 -s 0 -d 9 -p ack -e 40 -c 0 -i 5158 -a 0 -x {10.0 9.0 2574 ------- null} + -t 2.93254 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5169 -a 0 -x {9.0 10.0 2589 ------- null} - -t 2.93254 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5169 -a 0 -x {9.0 10.0 2589 ------- null} h -t 2.93254 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5169 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.93261 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5155 -a 0 -x {9.0 10.0 2582 ------- null} - -t 2.93261 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5155 -a 0 -x {9.0 10.0 2582 ------- null} h -t 2.93261 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5155 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.93269 -s 0 -d 9 -p ack -e 40 -c 0 -i 5162 -a 0 -x {10.0 9.0 2576 ------- null} - -t 2.93269 -s 0 -d 9 -p ack -e 40 -c 0 -i 5162 -a 0 -x {10.0 9.0 2576 ------- null} h -t 2.93269 -s 0 -d 9 -p ack -e 40 -c 0 -i 5162 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.93301 -s 10 -d 7 -p ack -e 40 -c 0 -i 5166 -a 0 -x {10.0 9.0 2578 ------- null} + -t 2.93301 -s 7 -d 0 -p ack -e 40 -c 0 -i 5166 -a 0 -x {10.0 9.0 2578 ------- null} h -t 2.93301 -s 7 -d 8 -p ack -e 40 -c 0 -i 5166 -a 0 -x {10.0 9.0 2578 ------- null} r -t 2.9332 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5165 -a 0 -x {9.0 10.0 2587 ------- null} + -t 2.9332 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5165 -a 0 -x {9.0 10.0 2587 ------- null} h -t 2.9332 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5165 -a 0 -x {9.0 10.0 2587 ------- null} r -t 2.93323 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5151 -a 0 -x {9.0 10.0 2580 ------- null} + -t 2.93323 -s 10 -d 7 -p ack -e 40 -c 0 -i 5170 -a 0 -x {10.0 9.0 2580 ------- null} - -t 2.93323 -s 10 -d 7 -p ack -e 40 -c 0 -i 5170 -a 0 -x {10.0 9.0 2580 ------- null} h -t 2.93323 -s 10 -d 7 -p ack -e 40 -c 0 -i 5170 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.9337 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5157 -a 0 -x {9.0 10.0 2583 ------- null} - -t 2.9337 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5157 -a 0 -x {9.0 10.0 2583 ------- null} h -t 2.9337 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5157 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.93379 -s 0 -d 9 -p ack -e 40 -c 0 -i 5160 -a 0 -x {10.0 9.0 2575 ------- null} + -t 2.93379 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5171 -a 0 -x {9.0 10.0 2590 ------- null} - -t 2.93379 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5171 -a 0 -x {9.0 10.0 2590 ------- null} h -t 2.93379 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5171 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.93381 -s 0 -d 9 -p ack -e 40 -c 0 -i 5164 -a 0 -x {10.0 9.0 2577 ------- null} - -t 2.93381 -s 0 -d 9 -p ack -e 40 -c 0 -i 5164 -a 0 -x {10.0 9.0 2577 ------- null} h -t 2.93381 -s 0 -d 9 -p ack -e 40 -c 0 -i 5164 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.9341 -s 10 -d 7 -p ack -e 40 -c 0 -i 5168 -a 0 -x {10.0 9.0 2579 ------- null} + -t 2.9341 -s 7 -d 0 -p ack -e 40 -c 0 -i 5168 -a 0 -x {10.0 9.0 2579 ------- null} h -t 2.9341 -s 7 -d 8 -p ack -e 40 -c 0 -i 5168 -a 0 -x {10.0 9.0 2579 ------- null} r -t 2.93432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5153 -a 0 -x {9.0 10.0 2581 ------- null} + -t 2.93432 -s 10 -d 7 -p ack -e 40 -c 0 -i 5172 -a 0 -x {10.0 9.0 2581 ------- null} - -t 2.93432 -s 10 -d 7 -p ack -e 40 -c 0 -i 5172 -a 0 -x {10.0 9.0 2581 ------- null} h -t 2.93432 -s 10 -d 7 -p ack -e 40 -c 0 -i 5172 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.93435 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5167 -a 0 -x {9.0 10.0 2588 ------- null} + -t 2.93435 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5167 -a 0 -x {9.0 10.0 2588 ------- null} h -t 2.93435 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5167 -a 0 -x {9.0 10.0 2588 ------- null} r -t 2.93472 -s 0 -d 9 -p ack -e 40 -c 0 -i 5162 -a 0 -x {10.0 9.0 2576 ------- null} + -t 2.93472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5173 -a 0 -x {9.0 10.0 2591 ------- null} - -t 2.93472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5173 -a 0 -x {9.0 10.0 2591 ------- null} h -t 2.93472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5173 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.93478 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5159 -a 0 -x {9.0 10.0 2584 ------- null} - -t 2.93478 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5159 -a 0 -x {9.0 10.0 2584 ------- null} h -t 2.93478 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5159 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.9349 -s 0 -d 9 -p ack -e 40 -c 0 -i 5166 -a 0 -x {10.0 9.0 2578 ------- null} - -t 2.9349 -s 0 -d 9 -p ack -e 40 -c 0 -i 5166 -a 0 -x {10.0 9.0 2578 ------- null} h -t 2.9349 -s 0 -d 9 -p ack -e 40 -c 0 -i 5166 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.93526 -s 10 -d 7 -p ack -e 40 -c 0 -i 5170 -a 0 -x {10.0 9.0 2580 ------- null} + -t 2.93526 -s 7 -d 0 -p ack -e 40 -c 0 -i 5170 -a 0 -x {10.0 9.0 2580 ------- null} h -t 2.93526 -s 7 -d 8 -p ack -e 40 -c 0 -i 5170 -a 0 -x {10.0 9.0 2580 ------- null} r -t 2.93534 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5169 -a 0 -x {9.0 10.0 2589 ------- null} + -t 2.93534 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5169 -a 0 -x {9.0 10.0 2589 ------- null} h -t 2.93534 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5169 -a 0 -x {9.0 10.0 2589 ------- null} r -t 2.93541 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5155 -a 0 -x {9.0 10.0 2582 ------- null} + -t 2.93541 -s 10 -d 7 -p ack -e 40 -c 0 -i 5174 -a 0 -x {10.0 9.0 2582 ------- null} - -t 2.93541 -s 10 -d 7 -p ack -e 40 -c 0 -i 5174 -a 0 -x {10.0 9.0 2582 ------- null} h -t 2.93541 -s 10 -d 7 -p ack -e 40 -c 0 -i 5174 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.93584 -s 0 -d 9 -p ack -e 40 -c 0 -i 5164 -a 0 -x {10.0 9.0 2577 ------- null} + -t 2.93584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5175 -a 0 -x {9.0 10.0 2592 ------- null} - -t 2.93584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5175 -a 0 -x {9.0 10.0 2592 ------- null} h -t 2.93584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5175 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.93587 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5161 -a 0 -x {9.0 10.0 2585 ------- null} - -t 2.93587 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5161 -a 0 -x {9.0 10.0 2585 ------- null} h -t 2.93587 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5161 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.936 -s 0 -d 9 -p ack -e 40 -c 0 -i 5168 -a 0 -x {10.0 9.0 2579 ------- null} - -t 2.936 -s 0 -d 9 -p ack -e 40 -c 0 -i 5168 -a 0 -x {10.0 9.0 2579 ------- null} h -t 2.936 -s 0 -d 9 -p ack -e 40 -c 0 -i 5168 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.93635 -s 10 -d 7 -p ack -e 40 -c 0 -i 5172 -a 0 -x {10.0 9.0 2581 ------- null} + -t 2.93635 -s 7 -d 0 -p ack -e 40 -c 0 -i 5172 -a 0 -x {10.0 9.0 2581 ------- null} h -t 2.93635 -s 7 -d 8 -p ack -e 40 -c 0 -i 5172 -a 0 -x {10.0 9.0 2581 ------- null} r -t 2.9365 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5157 -a 0 -x {9.0 10.0 2583 ------- null} + -t 2.9365 -s 10 -d 7 -p ack -e 40 -c 0 -i 5176 -a 0 -x {10.0 9.0 2583 ------- null} - -t 2.9365 -s 10 -d 7 -p ack -e 40 -c 0 -i 5176 -a 0 -x {10.0 9.0 2583 ------- null} h -t 2.9365 -s 10 -d 7 -p ack -e 40 -c 0 -i 5176 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.93659 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5171 -a 0 -x {9.0 10.0 2590 ------- null} + -t 2.93659 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5171 -a 0 -x {9.0 10.0 2590 ------- null} h -t 2.93659 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5171 -a 0 -x {9.0 10.0 2590 ------- null} r -t 2.93693 -s 0 -d 9 -p ack -e 40 -c 0 -i 5166 -a 0 -x {10.0 9.0 2578 ------- null} + -t 2.93693 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5177 -a 0 -x {9.0 10.0 2593 ------- null} - -t 2.93693 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5177 -a 0 -x {9.0 10.0 2593 ------- null} h -t 2.93693 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5177 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.93696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5163 -a 0 -x {9.0 10.0 2586 ------- null} - -t 2.93696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5163 -a 0 -x {9.0 10.0 2586 ------- null} h -t 2.93696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5163 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.9372 -s 0 -d 9 -p ack -e 40 -c 0 -i 5170 -a 0 -x {10.0 9.0 2580 ------- null} - -t 2.9372 -s 0 -d 9 -p ack -e 40 -c 0 -i 5170 -a 0 -x {10.0 9.0 2580 ------- null} h -t 2.9372 -s 0 -d 9 -p ack -e 40 -c 0 -i 5170 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.93744 -s 10 -d 7 -p ack -e 40 -c 0 -i 5174 -a 0 -x {10.0 9.0 2582 ------- null} + -t 2.93744 -s 7 -d 0 -p ack -e 40 -c 0 -i 5174 -a 0 -x {10.0 9.0 2582 ------- null} h -t 2.93744 -s 7 -d 8 -p ack -e 40 -c 0 -i 5174 -a 0 -x {10.0 9.0 2582 ------- null} r -t 2.93752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5173 -a 0 -x {9.0 10.0 2591 ------- null} + -t 2.93752 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5173 -a 0 -x {9.0 10.0 2591 ------- null} h -t 2.93752 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5173 -a 0 -x {9.0 10.0 2591 ------- null} r -t 2.93758 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5159 -a 0 -x {9.0 10.0 2584 ------- null} + -t 2.93758 -s 10 -d 7 -p ack -e 40 -c 0 -i 5178 -a 0 -x {10.0 9.0 2584 ------- null} - -t 2.93758 -s 10 -d 7 -p ack -e 40 -c 0 -i 5178 -a 0 -x {10.0 9.0 2584 ------- null} h -t 2.93758 -s 10 -d 7 -p ack -e 40 -c 0 -i 5178 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.93803 -s 0 -d 9 -p ack -e 40 -c 0 -i 5168 -a 0 -x {10.0 9.0 2579 ------- null} + -t 2.93803 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5179 -a 0 -x {9.0 10.0 2594 ------- null} - -t 2.93803 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5179 -a 0 -x {9.0 10.0 2594 ------- null} h -t 2.93803 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5179 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.93805 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5165 -a 0 -x {9.0 10.0 2587 ------- null} - -t 2.93805 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5165 -a 0 -x {9.0 10.0 2587 ------- null} h -t 2.93805 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5165 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.93813 -s 0 -d 9 -p ack -e 40 -c 0 -i 5172 -a 0 -x {10.0 9.0 2581 ------- null} - -t 2.93813 -s 0 -d 9 -p ack -e 40 -c 0 -i 5172 -a 0 -x {10.0 9.0 2581 ------- null} h -t 2.93813 -s 0 -d 9 -p ack -e 40 -c 0 -i 5172 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.93853 -s 10 -d 7 -p ack -e 40 -c 0 -i 5176 -a 0 -x {10.0 9.0 2583 ------- null} + -t 2.93853 -s 7 -d 0 -p ack -e 40 -c 0 -i 5176 -a 0 -x {10.0 9.0 2583 ------- null} h -t 2.93853 -s 7 -d 8 -p ack -e 40 -c 0 -i 5176 -a 0 -x {10.0 9.0 2583 ------- null} r -t 2.93864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5175 -a 0 -x {9.0 10.0 2592 ------- null} + -t 2.93864 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5175 -a 0 -x {9.0 10.0 2592 ------- null} h -t 2.93864 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5175 -a 0 -x {9.0 10.0 2592 ------- null} r -t 2.93867 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5161 -a 0 -x {9.0 10.0 2585 ------- null} + -t 2.93867 -s 10 -d 7 -p ack -e 40 -c 0 -i 5180 -a 0 -x {10.0 9.0 2585 ------- null} - -t 2.93867 -s 10 -d 7 -p ack -e 40 -c 0 -i 5180 -a 0 -x {10.0 9.0 2585 ------- null} h -t 2.93867 -s 10 -d 7 -p ack -e 40 -c 0 -i 5180 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.93914 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5167 -a 0 -x {9.0 10.0 2588 ------- null} - -t 2.93914 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5167 -a 0 -x {9.0 10.0 2588 ------- null} h -t 2.93914 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5167 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.93923 -s 0 -d 9 -p ack -e 40 -c 0 -i 5174 -a 0 -x {10.0 9.0 2582 ------- null} - -t 2.93923 -s 0 -d 9 -p ack -e 40 -c 0 -i 5174 -a 0 -x {10.0 9.0 2582 ------- null} h -t 2.93923 -s 0 -d 9 -p ack -e 40 -c 0 -i 5174 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.93923 -s 0 -d 9 -p ack -e 40 -c 0 -i 5170 -a 0 -x {10.0 9.0 2580 ------- null} + -t 2.93923 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5181 -a 0 -x {9.0 10.0 2595 ------- null} - -t 2.93923 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5181 -a 0 -x {9.0 10.0 2595 ------- null} h -t 2.93923 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5181 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.93962 -s 10 -d 7 -p ack -e 40 -c 0 -i 5178 -a 0 -x {10.0 9.0 2584 ------- null} + -t 2.93962 -s 7 -d 0 -p ack -e 40 -c 0 -i 5178 -a 0 -x {10.0 9.0 2584 ------- null} h -t 2.93962 -s 7 -d 8 -p ack -e 40 -c 0 -i 5178 -a 0 -x {10.0 9.0 2584 ------- null} r -t 2.93973 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5177 -a 0 -x {9.0 10.0 2593 ------- null} + -t 2.93973 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5177 -a 0 -x {9.0 10.0 2593 ------- null} h -t 2.93973 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5177 -a 0 -x {9.0 10.0 2593 ------- null} r -t 2.93976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5163 -a 0 -x {9.0 10.0 2586 ------- null} + -t 2.93976 -s 10 -d 7 -p ack -e 40 -c 0 -i 5182 -a 0 -x {10.0 9.0 2586 ------- null} - -t 2.93976 -s 10 -d 7 -p ack -e 40 -c 0 -i 5182 -a 0 -x {10.0 9.0 2586 ------- null} h -t 2.93976 -s 10 -d 7 -p ack -e 40 -c 0 -i 5182 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.94016 -s 0 -d 9 -p ack -e 40 -c 0 -i 5172 -a 0 -x {10.0 9.0 2581 ------- null} + -t 2.94016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5183 -a 0 -x {9.0 10.0 2596 ------- null} - -t 2.94016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5183 -a 0 -x {9.0 10.0 2596 ------- null} h -t 2.94016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5183 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.94022 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5169 -a 0 -x {9.0 10.0 2589 ------- null} - -t 2.94022 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5169 -a 0 -x {9.0 10.0 2589 ------- null} h -t 2.94022 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5169 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.9403 -s 0 -d 9 -p ack -e 40 -c 0 -i 5176 -a 0 -x {10.0 9.0 2583 ------- null} - -t 2.9403 -s 0 -d 9 -p ack -e 40 -c 0 -i 5176 -a 0 -x {10.0 9.0 2583 ------- null} h -t 2.9403 -s 0 -d 9 -p ack -e 40 -c 0 -i 5176 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.9407 -s 10 -d 7 -p ack -e 40 -c 0 -i 5180 -a 0 -x {10.0 9.0 2585 ------- null} + -t 2.9407 -s 7 -d 0 -p ack -e 40 -c 0 -i 5180 -a 0 -x {10.0 9.0 2585 ------- null} h -t 2.9407 -s 7 -d 8 -p ack -e 40 -c 0 -i 5180 -a 0 -x {10.0 9.0 2585 ------- null} r -t 2.94083 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5179 -a 0 -x {9.0 10.0 2594 ------- null} + -t 2.94083 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5179 -a 0 -x {9.0 10.0 2594 ------- null} h -t 2.94083 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5179 -a 0 -x {9.0 10.0 2594 ------- null} r -t 2.94085 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5165 -a 0 -x {9.0 10.0 2587 ------- null} + -t 2.94085 -s 10 -d 7 -p ack -e 40 -c 0 -i 5184 -a 0 -x {10.0 9.0 2587 ------- null} - -t 2.94085 -s 10 -d 7 -p ack -e 40 -c 0 -i 5184 -a 0 -x {10.0 9.0 2587 ------- null} h -t 2.94085 -s 10 -d 7 -p ack -e 40 -c 0 -i 5184 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.94126 -s 0 -d 9 -p ack -e 40 -c 0 -i 5174 -a 0 -x {10.0 9.0 2582 ------- null} + -t 2.94126 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5185 -a 0 -x {9.0 10.0 2597 ------- null} - -t 2.94126 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5185 -a 0 -x {9.0 10.0 2597 ------- null} h -t 2.94126 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5185 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.94131 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5171 -a 0 -x {9.0 10.0 2590 ------- null} - -t 2.94131 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5171 -a 0 -x {9.0 10.0 2590 ------- null} h -t 2.94131 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5171 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.94154 -s 0 -d 9 -p ack -e 40 -c 0 -i 5178 -a 0 -x {10.0 9.0 2584 ------- null} - -t 2.94154 -s 0 -d 9 -p ack -e 40 -c 0 -i 5178 -a 0 -x {10.0 9.0 2584 ------- null} h -t 2.94154 -s 0 -d 9 -p ack -e 40 -c 0 -i 5178 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.94179 -s 10 -d 7 -p ack -e 40 -c 0 -i 5182 -a 0 -x {10.0 9.0 2586 ------- null} + -t 2.94179 -s 7 -d 0 -p ack -e 40 -c 0 -i 5182 -a 0 -x {10.0 9.0 2586 ------- null} h -t 2.94179 -s 7 -d 8 -p ack -e 40 -c 0 -i 5182 -a 0 -x {10.0 9.0 2586 ------- null} r -t 2.94194 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5167 -a 0 -x {9.0 10.0 2588 ------- null} + -t 2.94194 -s 10 -d 7 -p ack -e 40 -c 0 -i 5186 -a 0 -x {10.0 9.0 2588 ------- null} - -t 2.94194 -s 10 -d 7 -p ack -e 40 -c 0 -i 5186 -a 0 -x {10.0 9.0 2588 ------- null} h -t 2.94194 -s 10 -d 7 -p ack -e 40 -c 0 -i 5186 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.94203 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5181 -a 0 -x {9.0 10.0 2595 ------- null} + -t 2.94203 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5181 -a 0 -x {9.0 10.0 2595 ------- null} h -t 2.94203 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5181 -a 0 -x {9.0 10.0 2595 ------- null} r -t 2.94234 -s 0 -d 9 -p ack -e 40 -c 0 -i 5176 -a 0 -x {10.0 9.0 2583 ------- null} + -t 2.94234 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5187 -a 0 -x {9.0 10.0 2598 ------- null} - -t 2.94234 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5187 -a 0 -x {9.0 10.0 2598 ------- null} h -t 2.94234 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5187 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.9424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5173 -a 0 -x {9.0 10.0 2591 ------- null} - -t 2.9424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5173 -a 0 -x {9.0 10.0 2591 ------- null} h -t 2.9424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5173 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.9425 -s 0 -d 9 -p ack -e 40 -c 0 -i 5180 -a 0 -x {10.0 9.0 2585 ------- null} - -t 2.9425 -s 0 -d 9 -p ack -e 40 -c 0 -i 5180 -a 0 -x {10.0 9.0 2585 ------- null} h -t 2.9425 -s 0 -d 9 -p ack -e 40 -c 0 -i 5180 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.94288 -s 10 -d 7 -p ack -e 40 -c 0 -i 5184 -a 0 -x {10.0 9.0 2587 ------- null} + -t 2.94288 -s 7 -d 0 -p ack -e 40 -c 0 -i 5184 -a 0 -x {10.0 9.0 2587 ------- null} h -t 2.94288 -s 7 -d 8 -p ack -e 40 -c 0 -i 5184 -a 0 -x {10.0 9.0 2587 ------- null} r -t 2.94296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5183 -a 0 -x {9.0 10.0 2596 ------- null} + -t 2.94296 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5183 -a 0 -x {9.0 10.0 2596 ------- null} h -t 2.94296 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5183 -a 0 -x {9.0 10.0 2596 ------- null} r -t 2.94302 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5169 -a 0 -x {9.0 10.0 2589 ------- null} + -t 2.94302 -s 10 -d 7 -p ack -e 40 -c 0 -i 5188 -a 0 -x {10.0 9.0 2589 ------- null} - -t 2.94302 -s 10 -d 7 -p ack -e 40 -c 0 -i 5188 -a 0 -x {10.0 9.0 2589 ------- null} h -t 2.94302 -s 10 -d 7 -p ack -e 40 -c 0 -i 5188 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.94349 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5175 -a 0 -x {9.0 10.0 2592 ------- null} - -t 2.94349 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5175 -a 0 -x {9.0 10.0 2592 ------- null} h -t 2.94349 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5175 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.94357 -s 0 -d 9 -p ack -e 40 -c 0 -i 5178 -a 0 -x {10.0 9.0 2584 ------- null} + -t 2.94357 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5189 -a 0 -x {9.0 10.0 2599 ------- null} - -t 2.94357 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5189 -a 0 -x {9.0 10.0 2599 ------- null} h -t 2.94357 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5189 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.94365 -s 0 -d 9 -p ack -e 40 -c 0 -i 5182 -a 0 -x {10.0 9.0 2586 ------- null} - -t 2.94365 -s 0 -d 9 -p ack -e 40 -c 0 -i 5182 -a 0 -x {10.0 9.0 2586 ------- null} h -t 2.94365 -s 0 -d 9 -p ack -e 40 -c 0 -i 5182 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.94397 -s 10 -d 7 -p ack -e 40 -c 0 -i 5186 -a 0 -x {10.0 9.0 2588 ------- null} + -t 2.94397 -s 7 -d 0 -p ack -e 40 -c 0 -i 5186 -a 0 -x {10.0 9.0 2588 ------- null} h -t 2.94397 -s 7 -d 8 -p ack -e 40 -c 0 -i 5186 -a 0 -x {10.0 9.0 2588 ------- null} r -t 2.94406 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5185 -a 0 -x {9.0 10.0 2597 ------- null} + -t 2.94406 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5185 -a 0 -x {9.0 10.0 2597 ------- null} h -t 2.94406 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5185 -a 0 -x {9.0 10.0 2597 ------- null} r -t 2.94411 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5171 -a 0 -x {9.0 10.0 2590 ------- null} + -t 2.94411 -s 10 -d 7 -p ack -e 40 -c 0 -i 5190 -a 0 -x {10.0 9.0 2590 ------- null} - -t 2.94411 -s 10 -d 7 -p ack -e 40 -c 0 -i 5190 -a 0 -x {10.0 9.0 2590 ------- null} h -t 2.94411 -s 10 -d 7 -p ack -e 40 -c 0 -i 5190 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.94453 -s 0 -d 9 -p ack -e 40 -c 0 -i 5180 -a 0 -x {10.0 9.0 2585 ------- null} + -t 2.94453 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5191 -a 0 -x {9.0 10.0 2600 ------- null} - -t 2.94453 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5191 -a 0 -x {9.0 10.0 2600 ------- null} h -t 2.94453 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5191 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.94458 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5177 -a 0 -x {9.0 10.0 2593 ------- null} - -t 2.94458 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5177 -a 0 -x {9.0 10.0 2593 ------- null} h -t 2.94458 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5177 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.9448 -s 0 -d 9 -p ack -e 40 -c 0 -i 5184 -a 0 -x {10.0 9.0 2587 ------- null} - -t 2.9448 -s 0 -d 9 -p ack -e 40 -c 0 -i 5184 -a 0 -x {10.0 9.0 2587 ------- null} h -t 2.9448 -s 0 -d 9 -p ack -e 40 -c 0 -i 5184 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.94506 -s 10 -d 7 -p ack -e 40 -c 0 -i 5188 -a 0 -x {10.0 9.0 2589 ------- null} + -t 2.94506 -s 7 -d 0 -p ack -e 40 -c 0 -i 5188 -a 0 -x {10.0 9.0 2589 ------- null} h -t 2.94506 -s 7 -d 8 -p ack -e 40 -c 0 -i 5188 -a 0 -x {10.0 9.0 2589 ------- null} r -t 2.94514 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5187 -a 0 -x {9.0 10.0 2598 ------- null} + -t 2.94514 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5187 -a 0 -x {9.0 10.0 2598 ------- null} h -t 2.94514 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5187 -a 0 -x {9.0 10.0 2598 ------- null} r -t 2.9452 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5173 -a 0 -x {9.0 10.0 2591 ------- null} + -t 2.9452 -s 10 -d 7 -p ack -e 40 -c 0 -i 5192 -a 0 -x {10.0 9.0 2591 ------- null} - -t 2.9452 -s 10 -d 7 -p ack -e 40 -c 0 -i 5192 -a 0 -x {10.0 9.0 2591 ------- null} h -t 2.9452 -s 10 -d 7 -p ack -e 40 -c 0 -i 5192 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.94566 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5179 -a 0 -x {9.0 10.0 2594 ------- null} - -t 2.94566 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5179 -a 0 -x {9.0 10.0 2594 ------- null} h -t 2.94566 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5179 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.94568 -s 0 -d 9 -p ack -e 40 -c 0 -i 5182 -a 0 -x {10.0 9.0 2586 ------- null} + -t 2.94568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5193 -a 0 -x {9.0 10.0 2601 ------- null} - -t 2.94568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5193 -a 0 -x {9.0 10.0 2601 ------- null} h -t 2.94568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5193 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.94578 -s 0 -d 9 -p ack -e 40 -c 0 -i 5186 -a 0 -x {10.0 9.0 2588 ------- null} - -t 2.94578 -s 0 -d 9 -p ack -e 40 -c 0 -i 5186 -a 0 -x {10.0 9.0 2588 ------- null} h -t 2.94578 -s 0 -d 9 -p ack -e 40 -c 0 -i 5186 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.94614 -s 10 -d 7 -p ack -e 40 -c 0 -i 5190 -a 0 -x {10.0 9.0 2590 ------- null} + -t 2.94614 -s 7 -d 0 -p ack -e 40 -c 0 -i 5190 -a 0 -x {10.0 9.0 2590 ------- null} h -t 2.94614 -s 7 -d 8 -p ack -e 40 -c 0 -i 5190 -a 0 -x {10.0 9.0 2590 ------- null} r -t 2.94629 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5175 -a 0 -x {9.0 10.0 2592 ------- null} + -t 2.94629 -s 10 -d 7 -p ack -e 40 -c 0 -i 5194 -a 0 -x {10.0 9.0 2592 ------- null} - -t 2.94629 -s 10 -d 7 -p ack -e 40 -c 0 -i 5194 -a 0 -x {10.0 9.0 2592 ------- null} h -t 2.94629 -s 10 -d 7 -p ack -e 40 -c 0 -i 5194 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.94637 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5189 -a 0 -x {9.0 10.0 2599 ------- null} + -t 2.94637 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5189 -a 0 -x {9.0 10.0 2599 ------- null} h -t 2.94637 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5189 -a 0 -x {9.0 10.0 2599 ------- null} + -t 2.94675 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5181 -a 0 -x {9.0 10.0 2595 ------- null} - -t 2.94675 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5181 -a 0 -x {9.0 10.0 2595 ------- null} h -t 2.94675 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5181 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.94683 -s 0 -d 9 -p ack -e 40 -c 0 -i 5184 -a 0 -x {10.0 9.0 2587 ------- null} + -t 2.94683 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5195 -a 0 -x {9.0 10.0 2602 ------- null} - -t 2.94683 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5195 -a 0 -x {9.0 10.0 2602 ------- null} h -t 2.94683 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5195 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.94706 -s 0 -d 9 -p ack -e 40 -c 0 -i 5188 -a 0 -x {10.0 9.0 2589 ------- null} - -t 2.94706 -s 0 -d 9 -p ack -e 40 -c 0 -i 5188 -a 0 -x {10.0 9.0 2589 ------- null} h -t 2.94706 -s 0 -d 9 -p ack -e 40 -c 0 -i 5188 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.94723 -s 10 -d 7 -p ack -e 40 -c 0 -i 5192 -a 0 -x {10.0 9.0 2591 ------- null} + -t 2.94723 -s 7 -d 0 -p ack -e 40 -c 0 -i 5192 -a 0 -x {10.0 9.0 2591 ------- null} h -t 2.94723 -s 7 -d 8 -p ack -e 40 -c 0 -i 5192 -a 0 -x {10.0 9.0 2591 ------- null} r -t 2.94733 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5191 -a 0 -x {9.0 10.0 2600 ------- null} + -t 2.94733 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5191 -a 0 -x {9.0 10.0 2600 ------- null} h -t 2.94733 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5191 -a 0 -x {9.0 10.0 2600 ------- null} r -t 2.94738 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5177 -a 0 -x {9.0 10.0 2593 ------- null} + -t 2.94738 -s 10 -d 7 -p ack -e 40 -c 0 -i 5196 -a 0 -x {10.0 9.0 2593 ------- null} - -t 2.94738 -s 10 -d 7 -p ack -e 40 -c 0 -i 5196 -a 0 -x {10.0 9.0 2593 ------- null} h -t 2.94738 -s 10 -d 7 -p ack -e 40 -c 0 -i 5196 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.94781 -s 0 -d 9 -p ack -e 40 -c 0 -i 5186 -a 0 -x {10.0 9.0 2588 ------- null} + -t 2.94781 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5197 -a 0 -x {9.0 10.0 2603 ------- null} - -t 2.94781 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5197 -a 0 -x {9.0 10.0 2603 ------- null} h -t 2.94781 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5197 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.94798 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5183 -a 0 -x {9.0 10.0 2596 ------- null} - -t 2.94798 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5183 -a 0 -x {9.0 10.0 2596 ------- null} h -t 2.94798 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5183 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.94824 -s 0 -d 9 -p ack -e 40 -c 0 -i 5190 -a 0 -x {10.0 9.0 2590 ------- null} - -t 2.94824 -s 0 -d 9 -p ack -e 40 -c 0 -i 5190 -a 0 -x {10.0 9.0 2590 ------- null} h -t 2.94824 -s 0 -d 9 -p ack -e 40 -c 0 -i 5190 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.94832 -s 10 -d 7 -p ack -e 40 -c 0 -i 5194 -a 0 -x {10.0 9.0 2592 ------- null} + -t 2.94832 -s 7 -d 0 -p ack -e 40 -c 0 -i 5194 -a 0 -x {10.0 9.0 2592 ------- null} h -t 2.94832 -s 7 -d 8 -p ack -e 40 -c 0 -i 5194 -a 0 -x {10.0 9.0 2592 ------- null} r -t 2.94846 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5179 -a 0 -x {9.0 10.0 2594 ------- null} + -t 2.94846 -s 10 -d 7 -p ack -e 40 -c 0 -i 5198 -a 0 -x {10.0 9.0 2594 ------- null} - -t 2.94846 -s 10 -d 7 -p ack -e 40 -c 0 -i 5198 -a 0 -x {10.0 9.0 2594 ------- null} h -t 2.94846 -s 10 -d 7 -p ack -e 40 -c 0 -i 5198 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.94848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5193 -a 0 -x {9.0 10.0 2601 ------- null} + -t 2.94848 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5193 -a 0 -x {9.0 10.0 2601 ------- null} h -t 2.94848 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5193 -a 0 -x {9.0 10.0 2601 ------- null} r -t 2.94909 -s 0 -d 9 -p ack -e 40 -c 0 -i 5188 -a 0 -x {10.0 9.0 2589 ------- null} + -t 2.94909 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5199 -a 0 -x {9.0 10.0 2604 ------- null} - -t 2.94909 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5199 -a 0 -x {9.0 10.0 2604 ------- null} h -t 2.94909 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5199 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.94915 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5185 -a 0 -x {9.0 10.0 2597 ------- null} - -t 2.94915 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5185 -a 0 -x {9.0 10.0 2597 ------- null} h -t 2.94915 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5185 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.94939 -s 0 -d 9 -p ack -e 40 -c 0 -i 5192 -a 0 -x {10.0 9.0 2591 ------- null} - -t 2.94939 -s 0 -d 9 -p ack -e 40 -c 0 -i 5192 -a 0 -x {10.0 9.0 2591 ------- null} h -t 2.94939 -s 0 -d 9 -p ack -e 40 -c 0 -i 5192 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.94941 -s 10 -d 7 -p ack -e 40 -c 0 -i 5196 -a 0 -x {10.0 9.0 2593 ------- null} + -t 2.94941 -s 7 -d 0 -p ack -e 40 -c 0 -i 5196 -a 0 -x {10.0 9.0 2593 ------- null} h -t 2.94941 -s 7 -d 8 -p ack -e 40 -c 0 -i 5196 -a 0 -x {10.0 9.0 2593 ------- null} r -t 2.94955 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5181 -a 0 -x {9.0 10.0 2595 ------- null} + -t 2.94955 -s 10 -d 7 -p ack -e 40 -c 0 -i 5200 -a 0 -x {10.0 9.0 2595 ------- null} - -t 2.94955 -s 10 -d 7 -p ack -e 40 -c 0 -i 5200 -a 0 -x {10.0 9.0 2595 ------- null} h -t 2.94955 -s 10 -d 7 -p ack -e 40 -c 0 -i 5200 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.94963 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5195 -a 0 -x {9.0 10.0 2602 ------- null} + -t 2.94963 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5195 -a 0 -x {9.0 10.0 2602 ------- null} h -t 2.94963 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5195 -a 0 -x {9.0 10.0 2602 ------- null} + -t 2.95024 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5187 -a 0 -x {9.0 10.0 2598 ------- null} - -t 2.95024 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5187 -a 0 -x {9.0 10.0 2598 ------- null} h -t 2.95024 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5187 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.95027 -s 0 -d 9 -p ack -e 40 -c 0 -i 5190 -a 0 -x {10.0 9.0 2590 ------- null} + -t 2.95027 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5201 -a 0 -x {9.0 10.0 2605 ------- null} - -t 2.95027 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5201 -a 0 -x {9.0 10.0 2605 ------- null} h -t 2.95027 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5201 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.9503 -s 0 -d 9 -p ack -e 40 -c 0 -i 5194 -a 0 -x {10.0 9.0 2592 ------- null} - -t 2.9503 -s 0 -d 9 -p ack -e 40 -c 0 -i 5194 -a 0 -x {10.0 9.0 2592 ------- null} h -t 2.9503 -s 0 -d 9 -p ack -e 40 -c 0 -i 5194 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.9505 -s 10 -d 7 -p ack -e 40 -c 0 -i 5198 -a 0 -x {10.0 9.0 2594 ------- null} + -t 2.9505 -s 7 -d 0 -p ack -e 40 -c 0 -i 5198 -a 0 -x {10.0 9.0 2594 ------- null} h -t 2.9505 -s 7 -d 8 -p ack -e 40 -c 0 -i 5198 -a 0 -x {10.0 9.0 2594 ------- null} r -t 2.95061 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5197 -a 0 -x {9.0 10.0 2603 ------- null} + -t 2.95061 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5197 -a 0 -x {9.0 10.0 2603 ------- null} h -t 2.95061 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5197 -a 0 -x {9.0 10.0 2603 ------- null} r -t 2.95078 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5183 -a 0 -x {9.0 10.0 2596 ------- null} + -t 2.95078 -s 10 -d 7 -p ack -e 40 -c 0 -i 5202 -a 0 -x {10.0 9.0 2596 ------- null} - -t 2.95078 -s 10 -d 7 -p ack -e 40 -c 0 -i 5202 -a 0 -x {10.0 9.0 2596 ------- null} h -t 2.95078 -s 10 -d 7 -p ack -e 40 -c 0 -i 5202 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.95133 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5189 -a 0 -x {9.0 10.0 2599 ------- null} - -t 2.95133 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5189 -a 0 -x {9.0 10.0 2599 ------- null} h -t 2.95133 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5189 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.95141 -s 0 -d 9 -p ack -e 40 -c 0 -i 5196 -a 0 -x {10.0 9.0 2593 ------- null} - -t 2.95141 -s 0 -d 9 -p ack -e 40 -c 0 -i 5196 -a 0 -x {10.0 9.0 2593 ------- null} h -t 2.95141 -s 0 -d 9 -p ack -e 40 -c 0 -i 5196 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.95142 -s 0 -d 9 -p ack -e 40 -c 0 -i 5192 -a 0 -x {10.0 9.0 2591 ------- null} + -t 2.95142 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5203 -a 0 -x {9.0 10.0 2606 ------- null} - -t 2.95142 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5203 -a 0 -x {9.0 10.0 2606 ------- null} h -t 2.95142 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5203 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.95158 -s 10 -d 7 -p ack -e 40 -c 0 -i 5200 -a 0 -x {10.0 9.0 2595 ------- null} + -t 2.95158 -s 7 -d 0 -p ack -e 40 -c 0 -i 5200 -a 0 -x {10.0 9.0 2595 ------- null} h -t 2.95158 -s 7 -d 8 -p ack -e 40 -c 0 -i 5200 -a 0 -x {10.0 9.0 2595 ------- null} r -t 2.95189 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5199 -a 0 -x {9.0 10.0 2604 ------- null} + -t 2.95189 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5199 -a 0 -x {9.0 10.0 2604 ------- null} h -t 2.95189 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5199 -a 0 -x {9.0 10.0 2604 ------- null} r -t 2.95195 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5185 -a 0 -x {9.0 10.0 2597 ------- null} + -t 2.95195 -s 10 -d 7 -p ack -e 40 -c 0 -i 5204 -a 0 -x {10.0 9.0 2597 ------- null} - -t 2.95195 -s 10 -d 7 -p ack -e 40 -c 0 -i 5204 -a 0 -x {10.0 9.0 2597 ------- null} h -t 2.95195 -s 10 -d 7 -p ack -e 40 -c 0 -i 5204 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.95234 -s 0 -d 9 -p ack -e 40 -c 0 -i 5194 -a 0 -x {10.0 9.0 2592 ------- null} + -t 2.95234 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5205 -a 0 -x {9.0 10.0 2607 ------- null} - -t 2.95234 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5205 -a 0 -x {9.0 10.0 2607 ------- null} h -t 2.95234 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5205 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.95242 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5191 -a 0 -x {9.0 10.0 2600 ------- null} - -t 2.95242 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5191 -a 0 -x {9.0 10.0 2600 ------- null} h -t 2.95242 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5191 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.95266 -s 0 -d 9 -p ack -e 40 -c 0 -i 5198 -a 0 -x {10.0 9.0 2594 ------- null} - -t 2.95266 -s 0 -d 9 -p ack -e 40 -c 0 -i 5198 -a 0 -x {10.0 9.0 2594 ------- null} h -t 2.95266 -s 0 -d 9 -p ack -e 40 -c 0 -i 5198 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.95282 -s 10 -d 7 -p ack -e 40 -c 0 -i 5202 -a 0 -x {10.0 9.0 2596 ------- null} + -t 2.95282 -s 7 -d 0 -p ack -e 40 -c 0 -i 5202 -a 0 -x {10.0 9.0 2596 ------- null} h -t 2.95282 -s 7 -d 8 -p ack -e 40 -c 0 -i 5202 -a 0 -x {10.0 9.0 2596 ------- null} r -t 2.95304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5187 -a 0 -x {9.0 10.0 2598 ------- null} + -t 2.95304 -s 10 -d 7 -p ack -e 40 -c 0 -i 5206 -a 0 -x {10.0 9.0 2598 ------- null} - -t 2.95304 -s 10 -d 7 -p ack -e 40 -c 0 -i 5206 -a 0 -x {10.0 9.0 2598 ------- null} h -t 2.95304 -s 10 -d 7 -p ack -e 40 -c 0 -i 5206 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.95307 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5201 -a 0 -x {9.0 10.0 2605 ------- null} + -t 2.95307 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5201 -a 0 -x {9.0 10.0 2605 ------- null} h -t 2.95307 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5201 -a 0 -x {9.0 10.0 2605 ------- null} r -t 2.95344 -s 0 -d 9 -p ack -e 40 -c 0 -i 5196 -a 0 -x {10.0 9.0 2593 ------- null} + -t 2.95344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5207 -a 0 -x {9.0 10.0 2608 ------- null} - -t 2.95344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5207 -a 0 -x {9.0 10.0 2608 ------- null} h -t 2.95344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5207 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.9535 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5193 -a 0 -x {9.0 10.0 2601 ------- null} - -t 2.9535 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5193 -a 0 -x {9.0 10.0 2601 ------- null} h -t 2.9535 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5193 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.9536 -s 0 -d 9 -p ack -e 40 -c 0 -i 5200 -a 0 -x {10.0 9.0 2595 ------- null} - -t 2.9536 -s 0 -d 9 -p ack -e 40 -c 0 -i 5200 -a 0 -x {10.0 9.0 2595 ------- null} h -t 2.9536 -s 0 -d 9 -p ack -e 40 -c 0 -i 5200 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.95398 -s 10 -d 7 -p ack -e 40 -c 0 -i 5204 -a 0 -x {10.0 9.0 2597 ------- null} + -t 2.95398 -s 7 -d 0 -p ack -e 40 -c 0 -i 5204 -a 0 -x {10.0 9.0 2597 ------- null} h -t 2.95398 -s 7 -d 8 -p ack -e 40 -c 0 -i 5204 -a 0 -x {10.0 9.0 2597 ------- null} r -t 2.95413 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5189 -a 0 -x {9.0 10.0 2599 ------- null} + -t 2.95413 -s 10 -d 7 -p ack -e 40 -c 0 -i 5208 -a 0 -x {10.0 9.0 2599 ------- null} - -t 2.95413 -s 10 -d 7 -p ack -e 40 -c 0 -i 5208 -a 0 -x {10.0 9.0 2599 ------- null} h -t 2.95413 -s 10 -d 7 -p ack -e 40 -c 0 -i 5208 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.95422 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5203 -a 0 -x {9.0 10.0 2606 ------- null} + -t 2.95422 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5203 -a 0 -x {9.0 10.0 2606 ------- null} h -t 2.95422 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5203 -a 0 -x {9.0 10.0 2606 ------- null} + -t 2.95459 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5195 -a 0 -x {9.0 10.0 2602 ------- null} - -t 2.95459 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5195 -a 0 -x {9.0 10.0 2602 ------- null} h -t 2.95459 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5195 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.95469 -s 0 -d 9 -p ack -e 40 -c 0 -i 5198 -a 0 -x {10.0 9.0 2594 ------- null} + -t 2.95469 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5209 -a 0 -x {9.0 10.0 2609 ------- null} - -t 2.95469 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5209 -a 0 -x {9.0 10.0 2609 ------- null} h -t 2.95469 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5209 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.95472 -s 0 -d 9 -p ack -e 40 -c 0 -i 5202 -a 0 -x {10.0 9.0 2596 ------- null} - -t 2.95472 -s 0 -d 9 -p ack -e 40 -c 0 -i 5202 -a 0 -x {10.0 9.0 2596 ------- null} h -t 2.95472 -s 0 -d 9 -p ack -e 40 -c 0 -i 5202 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.95507 -s 10 -d 7 -p ack -e 40 -c 0 -i 5206 -a 0 -x {10.0 9.0 2598 ------- null} + -t 2.95507 -s 7 -d 0 -p ack -e 40 -c 0 -i 5206 -a 0 -x {10.0 9.0 2598 ------- null} h -t 2.95507 -s 7 -d 8 -p ack -e 40 -c 0 -i 5206 -a 0 -x {10.0 9.0 2598 ------- null} r -t 2.95514 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5205 -a 0 -x {9.0 10.0 2607 ------- null} + -t 2.95514 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5205 -a 0 -x {9.0 10.0 2607 ------- null} h -t 2.95514 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5205 -a 0 -x {9.0 10.0 2607 ------- null} r -t 2.95522 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5191 -a 0 -x {9.0 10.0 2600 ------- null} + -t 2.95522 -s 10 -d 7 -p ack -e 40 -c 0 -i 5210 -a 0 -x {10.0 9.0 2600 ------- null} - -t 2.95522 -s 10 -d 7 -p ack -e 40 -c 0 -i 5210 -a 0 -x {10.0 9.0 2600 ------- null} h -t 2.95522 -s 10 -d 7 -p ack -e 40 -c 0 -i 5210 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.95563 -s 0 -d 9 -p ack -e 40 -c 0 -i 5200 -a 0 -x {10.0 9.0 2595 ------- null} + -t 2.95563 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5211 -a 0 -x {9.0 10.0 2610 ------- null} - -t 2.95563 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5211 -a 0 -x {9.0 10.0 2610 ------- null} h -t 2.95563 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5211 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.95568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5197 -a 0 -x {9.0 10.0 2603 ------- null} - -t 2.95568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5197 -a 0 -x {9.0 10.0 2603 ------- null} h -t 2.95568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5197 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.95581 -s 0 -d 9 -p ack -e 40 -c 0 -i 5204 -a 0 -x {10.0 9.0 2597 ------- null} - -t 2.95581 -s 0 -d 9 -p ack -e 40 -c 0 -i 5204 -a 0 -x {10.0 9.0 2597 ------- null} h -t 2.95581 -s 0 -d 9 -p ack -e 40 -c 0 -i 5204 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.95616 -s 10 -d 7 -p ack -e 40 -c 0 -i 5208 -a 0 -x {10.0 9.0 2599 ------- null} + -t 2.95616 -s 7 -d 0 -p ack -e 40 -c 0 -i 5208 -a 0 -x {10.0 9.0 2599 ------- null} h -t 2.95616 -s 7 -d 8 -p ack -e 40 -c 0 -i 5208 -a 0 -x {10.0 9.0 2599 ------- null} r -t 2.95624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5207 -a 0 -x {9.0 10.0 2608 ------- null} + -t 2.95624 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5207 -a 0 -x {9.0 10.0 2608 ------- null} h -t 2.95624 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5207 -a 0 -x {9.0 10.0 2608 ------- null} r -t 2.9563 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5193 -a 0 -x {9.0 10.0 2601 ------- null} + -t 2.9563 -s 10 -d 7 -p ack -e 40 -c 0 -i 5212 -a 0 -x {10.0 9.0 2601 ------- null} - -t 2.9563 -s 10 -d 7 -p ack -e 40 -c 0 -i 5212 -a 0 -x {10.0 9.0 2601 ------- null} h -t 2.9563 -s 10 -d 7 -p ack -e 40 -c 0 -i 5212 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.95675 -s 0 -d 9 -p ack -e 40 -c 0 -i 5202 -a 0 -x {10.0 9.0 2596 ------- null} + -t 2.95675 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5213 -a 0 -x {9.0 10.0 2611 ------- null} - -t 2.95675 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5213 -a 0 -x {9.0 10.0 2611 ------- null} h -t 2.95675 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5213 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.95677 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5199 -a 0 -x {9.0 10.0 2604 ------- null} - -t 2.95677 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5199 -a 0 -x {9.0 10.0 2604 ------- null} h -t 2.95677 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5199 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.95694 -s 0 -d 9 -p ack -e 40 -c 0 -i 5206 -a 0 -x {10.0 9.0 2598 ------- null} - -t 2.95694 -s 0 -d 9 -p ack -e 40 -c 0 -i 5206 -a 0 -x {10.0 9.0 2598 ------- null} h -t 2.95694 -s 0 -d 9 -p ack -e 40 -c 0 -i 5206 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.95725 -s 10 -d 7 -p ack -e 40 -c 0 -i 5210 -a 0 -x {10.0 9.0 2600 ------- null} + -t 2.95725 -s 7 -d 0 -p ack -e 40 -c 0 -i 5210 -a 0 -x {10.0 9.0 2600 ------- null} h -t 2.95725 -s 7 -d 8 -p ack -e 40 -c 0 -i 5210 -a 0 -x {10.0 9.0 2600 ------- null} r -t 2.95739 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5195 -a 0 -x {9.0 10.0 2602 ------- null} + -t 2.95739 -s 10 -d 7 -p ack -e 40 -c 0 -i 5214 -a 0 -x {10.0 9.0 2602 ------- null} - -t 2.95739 -s 10 -d 7 -p ack -e 40 -c 0 -i 5214 -a 0 -x {10.0 9.0 2602 ------- null} h -t 2.95739 -s 10 -d 7 -p ack -e 40 -c 0 -i 5214 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.95749 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5209 -a 0 -x {9.0 10.0 2609 ------- null} + -t 2.95749 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5209 -a 0 -x {9.0 10.0 2609 ------- null} h -t 2.95749 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5209 -a 0 -x {9.0 10.0 2609 ------- null} r -t 2.95784 -s 0 -d 9 -p ack -e 40 -c 0 -i 5204 -a 0 -x {10.0 9.0 2597 ------- null} + -t 2.95784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5215 -a 0 -x {9.0 10.0 2612 ------- null} - -t 2.95784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5215 -a 0 -x {9.0 10.0 2612 ------- null} h -t 2.95784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5215 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.95786 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5201 -a 0 -x {9.0 10.0 2605 ------- null} - -t 2.95786 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5201 -a 0 -x {9.0 10.0 2605 ------- null} h -t 2.95786 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5201 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.95802 -s 0 -d 9 -p ack -e 40 -c 0 -i 5208 -a 0 -x {10.0 9.0 2599 ------- null} - -t 2.95802 -s 0 -d 9 -p ack -e 40 -c 0 -i 5208 -a 0 -x {10.0 9.0 2599 ------- null} h -t 2.95802 -s 0 -d 9 -p ack -e 40 -c 0 -i 5208 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.95834 -s 10 -d 7 -p ack -e 40 -c 0 -i 5212 -a 0 -x {10.0 9.0 2601 ------- null} + -t 2.95834 -s 7 -d 0 -p ack -e 40 -c 0 -i 5212 -a 0 -x {10.0 9.0 2601 ------- null} h -t 2.95834 -s 7 -d 8 -p ack -e 40 -c 0 -i 5212 -a 0 -x {10.0 9.0 2601 ------- null} r -t 2.95843 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5211 -a 0 -x {9.0 10.0 2610 ------- null} + -t 2.95843 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5211 -a 0 -x {9.0 10.0 2610 ------- null} h -t 2.95843 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5211 -a 0 -x {9.0 10.0 2610 ------- null} r -t 2.95848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5197 -a 0 -x {9.0 10.0 2603 ------- null} + -t 2.95848 -s 10 -d 7 -p ack -e 40 -c 0 -i 5216 -a 0 -x {10.0 9.0 2603 ------- null} - -t 2.95848 -s 10 -d 7 -p ack -e 40 -c 0 -i 5216 -a 0 -x {10.0 9.0 2603 ------- null} h -t 2.95848 -s 10 -d 7 -p ack -e 40 -c 0 -i 5216 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.95894 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5203 -a 0 -x {9.0 10.0 2606 ------- null} - -t 2.95894 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5203 -a 0 -x {9.0 10.0 2606 ------- null} h -t 2.95894 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5203 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.95898 -s 0 -d 9 -p ack -e 40 -c 0 -i 5206 -a 0 -x {10.0 9.0 2598 ------- null} + -t 2.95898 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5217 -a 0 -x {9.0 10.0 2613 ------- null} - -t 2.95898 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5217 -a 0 -x {9.0 10.0 2613 ------- null} h -t 2.95898 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5217 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.95904 -s 0 -d 9 -p ack -e 40 -c 0 -i 5210 -a 0 -x {10.0 9.0 2600 ------- null} - -t 2.95904 -s 0 -d 9 -p ack -e 40 -c 0 -i 5210 -a 0 -x {10.0 9.0 2600 ------- null} h -t 2.95904 -s 0 -d 9 -p ack -e 40 -c 0 -i 5210 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.95942 -s 10 -d 7 -p ack -e 40 -c 0 -i 5214 -a 0 -x {10.0 9.0 2602 ------- null} + -t 2.95942 -s 7 -d 0 -p ack -e 40 -c 0 -i 5214 -a 0 -x {10.0 9.0 2602 ------- null} h -t 2.95942 -s 7 -d 8 -p ack -e 40 -c 0 -i 5214 -a 0 -x {10.0 9.0 2602 ------- null} r -t 2.95955 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5213 -a 0 -x {9.0 10.0 2611 ------- null} + -t 2.95955 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5213 -a 0 -x {9.0 10.0 2611 ------- null} h -t 2.95955 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5213 -a 0 -x {9.0 10.0 2611 ------- null} r -t 2.95957 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5199 -a 0 -x {9.0 10.0 2604 ------- null} + -t 2.95957 -s 10 -d 7 -p ack -e 40 -c 0 -i 5218 -a 0 -x {10.0 9.0 2604 ------- null} - -t 2.95957 -s 10 -d 7 -p ack -e 40 -c 0 -i 5218 -a 0 -x {10.0 9.0 2604 ------- null} h -t 2.95957 -s 10 -d 7 -p ack -e 40 -c 0 -i 5218 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.96003 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5205 -a 0 -x {9.0 10.0 2607 ------- null} - -t 2.96003 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5205 -a 0 -x {9.0 10.0 2607 ------- null} h -t 2.96003 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5205 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.96005 -s 0 -d 9 -p ack -e 40 -c 0 -i 5208 -a 0 -x {10.0 9.0 2599 ------- null} + -t 2.96005 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5219 -a 0 -x {9.0 10.0 2614 ------- null} - -t 2.96005 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5219 -a 0 -x {9.0 10.0 2614 ------- null} h -t 2.96005 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5219 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.96013 -s 0 -d 9 -p ack -e 40 -c 0 -i 5212 -a 0 -x {10.0 9.0 2601 ------- null} - -t 2.96013 -s 0 -d 9 -p ack -e 40 -c 0 -i 5212 -a 0 -x {10.0 9.0 2601 ------- null} h -t 2.96013 -s 0 -d 9 -p ack -e 40 -c 0 -i 5212 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.96051 -s 10 -d 7 -p ack -e 40 -c 0 -i 5216 -a 0 -x {10.0 9.0 2603 ------- null} + -t 2.96051 -s 7 -d 0 -p ack -e 40 -c 0 -i 5216 -a 0 -x {10.0 9.0 2603 ------- null} h -t 2.96051 -s 7 -d 8 -p ack -e 40 -c 0 -i 5216 -a 0 -x {10.0 9.0 2603 ------- null} r -t 2.96064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5215 -a 0 -x {9.0 10.0 2612 ------- null} + -t 2.96064 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5215 -a 0 -x {9.0 10.0 2612 ------- null} h -t 2.96064 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5215 -a 0 -x {9.0 10.0 2612 ------- null} r -t 2.96066 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5201 -a 0 -x {9.0 10.0 2605 ------- null} + -t 2.96066 -s 10 -d 7 -p ack -e 40 -c 0 -i 5220 -a 0 -x {10.0 9.0 2605 ------- null} - -t 2.96066 -s 10 -d 7 -p ack -e 40 -c 0 -i 5220 -a 0 -x {10.0 9.0 2605 ------- null} h -t 2.96066 -s 10 -d 7 -p ack -e 40 -c 0 -i 5220 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.96107 -s 0 -d 9 -p ack -e 40 -c 0 -i 5210 -a 0 -x {10.0 9.0 2600 ------- null} + -t 2.96107 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5221 -a 0 -x {9.0 10.0 2615 ------- null} - -t 2.96107 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5221 -a 0 -x {9.0 10.0 2615 ------- null} h -t 2.96107 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5221 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.96112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5207 -a 0 -x {9.0 10.0 2608 ------- null} - -t 2.96112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5207 -a 0 -x {9.0 10.0 2608 ------- null} h -t 2.96112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5207 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.96134 -s 0 -d 9 -p ack -e 40 -c 0 -i 5214 -a 0 -x {10.0 9.0 2602 ------- null} - -t 2.96134 -s 0 -d 9 -p ack -e 40 -c 0 -i 5214 -a 0 -x {10.0 9.0 2602 ------- null} h -t 2.96134 -s 0 -d 9 -p ack -e 40 -c 0 -i 5214 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.9616 -s 10 -d 7 -p ack -e 40 -c 0 -i 5218 -a 0 -x {10.0 9.0 2604 ------- null} + -t 2.9616 -s 7 -d 0 -p ack -e 40 -c 0 -i 5218 -a 0 -x {10.0 9.0 2604 ------- null} h -t 2.9616 -s 7 -d 8 -p ack -e 40 -c 0 -i 5218 -a 0 -x {10.0 9.0 2604 ------- null} r -t 2.96174 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5203 -a 0 -x {9.0 10.0 2606 ------- null} + -t 2.96174 -s 10 -d 7 -p ack -e 40 -c 0 -i 5222 -a 0 -x {10.0 9.0 2606 ------- null} - -t 2.96174 -s 10 -d 7 -p ack -e 40 -c 0 -i 5222 -a 0 -x {10.0 9.0 2606 ------- null} h -t 2.96174 -s 10 -d 7 -p ack -e 40 -c 0 -i 5222 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.96178 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5217 -a 0 -x {9.0 10.0 2613 ------- null} + -t 2.96178 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5217 -a 0 -x {9.0 10.0 2613 ------- null} h -t 2.96178 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5217 -a 0 -x {9.0 10.0 2613 ------- null} r -t 2.96216 -s 0 -d 9 -p ack -e 40 -c 0 -i 5212 -a 0 -x {10.0 9.0 2601 ------- null} + -t 2.96216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5223 -a 0 -x {9.0 10.0 2616 ------- null} - -t 2.96216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5223 -a 0 -x {9.0 10.0 2616 ------- null} h -t 2.96216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5223 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.96221 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5209 -a 0 -x {9.0 10.0 2609 ------- null} - -t 2.96221 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5209 -a 0 -x {9.0 10.0 2609 ------- null} h -t 2.96221 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5209 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.96243 -s 0 -d 9 -p ack -e 40 -c 0 -i 5216 -a 0 -x {10.0 9.0 2603 ------- null} - -t 2.96243 -s 0 -d 9 -p ack -e 40 -c 0 -i 5216 -a 0 -x {10.0 9.0 2603 ------- null} h -t 2.96243 -s 0 -d 9 -p ack -e 40 -c 0 -i 5216 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.96269 -s 10 -d 7 -p ack -e 40 -c 0 -i 5220 -a 0 -x {10.0 9.0 2605 ------- null} + -t 2.96269 -s 7 -d 0 -p ack -e 40 -c 0 -i 5220 -a 0 -x {10.0 9.0 2605 ------- null} h -t 2.96269 -s 7 -d 8 -p ack -e 40 -c 0 -i 5220 -a 0 -x {10.0 9.0 2605 ------- null} r -t 2.96283 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5205 -a 0 -x {9.0 10.0 2607 ------- null} + -t 2.96283 -s 10 -d 7 -p ack -e 40 -c 0 -i 5224 -a 0 -x {10.0 9.0 2607 ------- null} - -t 2.96283 -s 10 -d 7 -p ack -e 40 -c 0 -i 5224 -a 0 -x {10.0 9.0 2607 ------- null} h -t 2.96283 -s 10 -d 7 -p ack -e 40 -c 0 -i 5224 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.96285 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5219 -a 0 -x {9.0 10.0 2614 ------- null} + -t 2.96285 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5219 -a 0 -x {9.0 10.0 2614 ------- null} h -t 2.96285 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5219 -a 0 -x {9.0 10.0 2614 ------- null} + -t 2.9633 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5211 -a 0 -x {9.0 10.0 2610 ------- null} - -t 2.9633 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5211 -a 0 -x {9.0 10.0 2610 ------- null} h -t 2.9633 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5211 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.96338 -s 0 -d 9 -p ack -e 40 -c 0 -i 5214 -a 0 -x {10.0 9.0 2602 ------- null} + -t 2.96338 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5225 -a 0 -x {9.0 10.0 2617 ------- null} - -t 2.96338 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5225 -a 0 -x {9.0 10.0 2617 ------- null} h -t 2.96338 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5225 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.96346 -s 0 -d 9 -p ack -e 40 -c 0 -i 5218 -a 0 -x {10.0 9.0 2604 ------- null} - -t 2.96346 -s 0 -d 9 -p ack -e 40 -c 0 -i 5218 -a 0 -x {10.0 9.0 2604 ------- null} h -t 2.96346 -s 0 -d 9 -p ack -e 40 -c 0 -i 5218 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.96378 -s 10 -d 7 -p ack -e 40 -c 0 -i 5222 -a 0 -x {10.0 9.0 2606 ------- null} + -t 2.96378 -s 7 -d 0 -p ack -e 40 -c 0 -i 5222 -a 0 -x {10.0 9.0 2606 ------- null} h -t 2.96378 -s 7 -d 8 -p ack -e 40 -c 0 -i 5222 -a 0 -x {10.0 9.0 2606 ------- null} r -t 2.96387 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5221 -a 0 -x {9.0 10.0 2615 ------- null} + -t 2.96387 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5221 -a 0 -x {9.0 10.0 2615 ------- null} h -t 2.96387 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5221 -a 0 -x {9.0 10.0 2615 ------- null} r -t 2.96392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5207 -a 0 -x {9.0 10.0 2608 ------- null} + -t 2.96392 -s 10 -d 7 -p ack -e 40 -c 0 -i 5226 -a 0 -x {10.0 9.0 2608 ------- null} - -t 2.96392 -s 10 -d 7 -p ack -e 40 -c 0 -i 5226 -a 0 -x {10.0 9.0 2608 ------- null} h -t 2.96392 -s 10 -d 7 -p ack -e 40 -c 0 -i 5226 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.96438 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5213 -a 0 -x {9.0 10.0 2611 ------- null} - -t 2.96438 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5213 -a 0 -x {9.0 10.0 2611 ------- null} h -t 2.96438 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5213 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.96446 -s 0 -d 9 -p ack -e 40 -c 0 -i 5216 -a 0 -x {10.0 9.0 2603 ------- null} + -t 2.96446 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5227 -a 0 -x {9.0 10.0 2618 ------- null} - -t 2.96446 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5227 -a 0 -x {9.0 10.0 2618 ------- null} h -t 2.96446 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5227 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.96456 -s 0 -d 9 -p ack -e 40 -c 0 -i 5220 -a 0 -x {10.0 9.0 2605 ------- null} - -t 2.96456 -s 0 -d 9 -p ack -e 40 -c 0 -i 5220 -a 0 -x {10.0 9.0 2605 ------- null} h -t 2.96456 -s 0 -d 9 -p ack -e 40 -c 0 -i 5220 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.96486 -s 10 -d 7 -p ack -e 40 -c 0 -i 5224 -a 0 -x {10.0 9.0 2607 ------- null} + -t 2.96486 -s 7 -d 0 -p ack -e 40 -c 0 -i 5224 -a 0 -x {10.0 9.0 2607 ------- null} h -t 2.96486 -s 7 -d 8 -p ack -e 40 -c 0 -i 5224 -a 0 -x {10.0 9.0 2607 ------- null} r -t 2.96496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5223 -a 0 -x {9.0 10.0 2616 ------- null} + -t 2.96496 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5223 -a 0 -x {9.0 10.0 2616 ------- null} h -t 2.96496 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5223 -a 0 -x {9.0 10.0 2616 ------- null} r -t 2.96501 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5209 -a 0 -x {9.0 10.0 2609 ------- null} + -t 2.96501 -s 10 -d 7 -p ack -e 40 -c 0 -i 5228 -a 0 -x {10.0 9.0 2609 ------- null} - -t 2.96501 -s 10 -d 7 -p ack -e 40 -c 0 -i 5228 -a 0 -x {10.0 9.0 2609 ------- null} h -t 2.96501 -s 10 -d 7 -p ack -e 40 -c 0 -i 5228 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.96547 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5215 -a 0 -x {9.0 10.0 2612 ------- null} - -t 2.96547 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5215 -a 0 -x {9.0 10.0 2612 ------- null} h -t 2.96547 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5215 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.96549 -s 0 -d 9 -p ack -e 40 -c 0 -i 5218 -a 0 -x {10.0 9.0 2604 ------- null} + -t 2.96549 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5229 -a 0 -x {9.0 10.0 2619 ------- null} - -t 2.96549 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5229 -a 0 -x {9.0 10.0 2619 ------- null} h -t 2.96549 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5229 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.96573 -s 0 -d 9 -p ack -e 40 -c 0 -i 5222 -a 0 -x {10.0 9.0 2606 ------- null} - -t 2.96573 -s 0 -d 9 -p ack -e 40 -c 0 -i 5222 -a 0 -x {10.0 9.0 2606 ------- null} h -t 2.96573 -s 0 -d 9 -p ack -e 40 -c 0 -i 5222 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.96595 -s 10 -d 7 -p ack -e 40 -c 0 -i 5226 -a 0 -x {10.0 9.0 2608 ------- null} + -t 2.96595 -s 7 -d 0 -p ack -e 40 -c 0 -i 5226 -a 0 -x {10.0 9.0 2608 ------- null} h -t 2.96595 -s 7 -d 8 -p ack -e 40 -c 0 -i 5226 -a 0 -x {10.0 9.0 2608 ------- null} r -t 2.9661 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5211 -a 0 -x {9.0 10.0 2610 ------- null} + -t 2.9661 -s 10 -d 7 -p ack -e 40 -c 0 -i 5230 -a 0 -x {10.0 9.0 2610 ------- null} - -t 2.9661 -s 10 -d 7 -p ack -e 40 -c 0 -i 5230 -a 0 -x {10.0 9.0 2610 ------- null} h -t 2.9661 -s 10 -d 7 -p ack -e 40 -c 0 -i 5230 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.96618 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5225 -a 0 -x {9.0 10.0 2617 ------- null} + -t 2.96618 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5225 -a 0 -x {9.0 10.0 2617 ------- null} h -t 2.96618 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5225 -a 0 -x {9.0 10.0 2617 ------- null} r -t 2.96659 -s 0 -d 9 -p ack -e 40 -c 0 -i 5220 -a 0 -x {10.0 9.0 2605 ------- null} + -t 2.96659 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5231 -a 0 -x {9.0 10.0 2620 ------- null} - -t 2.96659 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5231 -a 0 -x {9.0 10.0 2620 ------- null} h -t 2.96659 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5231 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.9668 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5217 -a 0 -x {9.0 10.0 2613 ------- null} - -t 2.9668 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5217 -a 0 -x {9.0 10.0 2613 ------- null} h -t 2.9668 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5217 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.96698 -s 0 -d 9 -p ack -e 40 -c 0 -i 5224 -a 0 -x {10.0 9.0 2607 ------- null} - -t 2.96698 -s 0 -d 9 -p ack -e 40 -c 0 -i 5224 -a 0 -x {10.0 9.0 2607 ------- null} h -t 2.96698 -s 0 -d 9 -p ack -e 40 -c 0 -i 5224 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.96704 -s 10 -d 7 -p ack -e 40 -c 0 -i 5228 -a 0 -x {10.0 9.0 2609 ------- null} + -t 2.96704 -s 7 -d 0 -p ack -e 40 -c 0 -i 5228 -a 0 -x {10.0 9.0 2609 ------- null} h -t 2.96704 -s 7 -d 8 -p ack -e 40 -c 0 -i 5228 -a 0 -x {10.0 9.0 2609 ------- null} r -t 2.96718 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5213 -a 0 -x {9.0 10.0 2611 ------- null} + -t 2.96718 -s 10 -d 7 -p ack -e 40 -c 0 -i 5232 -a 0 -x {10.0 9.0 2611 ------- null} - -t 2.96718 -s 10 -d 7 -p ack -e 40 -c 0 -i 5232 -a 0 -x {10.0 9.0 2611 ------- null} h -t 2.96718 -s 10 -d 7 -p ack -e 40 -c 0 -i 5232 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.96726 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5227 -a 0 -x {9.0 10.0 2618 ------- null} + -t 2.96726 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5227 -a 0 -x {9.0 10.0 2618 ------- null} h -t 2.96726 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5227 -a 0 -x {9.0 10.0 2618 ------- null} r -t 2.96776 -s 0 -d 9 -p ack -e 40 -c 0 -i 5222 -a 0 -x {10.0 9.0 2606 ------- null} + -t 2.96776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5233 -a 0 -x {9.0 10.0 2621 ------- null} - -t 2.96776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5233 -a 0 -x {9.0 10.0 2621 ------- null} h -t 2.96776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5233 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.96789 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5219 -a 0 -x {9.0 10.0 2614 ------- null} - -t 2.96789 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5219 -a 0 -x {9.0 10.0 2614 ------- null} h -t 2.96789 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5219 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.968 -s 0 -d 9 -p ack -e 40 -c 0 -i 5226 -a 0 -x {10.0 9.0 2608 ------- null} - -t 2.968 -s 0 -d 9 -p ack -e 40 -c 0 -i 5226 -a 0 -x {10.0 9.0 2608 ------- null} h -t 2.968 -s 0 -d 9 -p ack -e 40 -c 0 -i 5226 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.96813 -s 10 -d 7 -p ack -e 40 -c 0 -i 5230 -a 0 -x {10.0 9.0 2610 ------- null} + -t 2.96813 -s 7 -d 0 -p ack -e 40 -c 0 -i 5230 -a 0 -x {10.0 9.0 2610 ------- null} h -t 2.96813 -s 7 -d 8 -p ack -e 40 -c 0 -i 5230 -a 0 -x {10.0 9.0 2610 ------- null} r -t 2.96827 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5215 -a 0 -x {9.0 10.0 2612 ------- null} + -t 2.96827 -s 10 -d 7 -p ack -e 40 -c 0 -i 5234 -a 0 -x {10.0 9.0 2612 ------- null} - -t 2.96827 -s 10 -d 7 -p ack -e 40 -c 0 -i 5234 -a 0 -x {10.0 9.0 2612 ------- null} h -t 2.96827 -s 10 -d 7 -p ack -e 40 -c 0 -i 5234 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.96829 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5229 -a 0 -x {9.0 10.0 2619 ------- null} + -t 2.96829 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5229 -a 0 -x {9.0 10.0 2619 ------- null} h -t 2.96829 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5229 -a 0 -x {9.0 10.0 2619 ------- null} + -t 2.96898 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5221 -a 0 -x {9.0 10.0 2615 ------- null} - -t 2.96898 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5221 -a 0 -x {9.0 10.0 2615 ------- null} h -t 2.96898 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5221 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.96901 -s 0 -d 9 -p ack -e 40 -c 0 -i 5224 -a 0 -x {10.0 9.0 2607 ------- null} + -t 2.96901 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5235 -a 0 -x {9.0 10.0 2622 ------- null} - -t 2.96901 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5235 -a 0 -x {9.0 10.0 2622 ------- null} h -t 2.96901 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5235 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.96906 -s 0 -d 9 -p ack -e 40 -c 0 -i 5228 -a 0 -x {10.0 9.0 2609 ------- null} - -t 2.96906 -s 0 -d 9 -p ack -e 40 -c 0 -i 5228 -a 0 -x {10.0 9.0 2609 ------- null} h -t 2.96906 -s 0 -d 9 -p ack -e 40 -c 0 -i 5228 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.96922 -s 10 -d 7 -p ack -e 40 -c 0 -i 5232 -a 0 -x {10.0 9.0 2611 ------- null} + -t 2.96922 -s 7 -d 0 -p ack -e 40 -c 0 -i 5232 -a 0 -x {10.0 9.0 2611 ------- null} h -t 2.96922 -s 7 -d 8 -p ack -e 40 -c 0 -i 5232 -a 0 -x {10.0 9.0 2611 ------- null} r -t 2.96939 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5231 -a 0 -x {9.0 10.0 2620 ------- null} + -t 2.96939 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5231 -a 0 -x {9.0 10.0 2620 ------- null} h -t 2.96939 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5231 -a 0 -x {9.0 10.0 2620 ------- null} r -t 2.9696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5217 -a 0 -x {9.0 10.0 2613 ------- null} + -t 2.9696 -s 10 -d 7 -p ack -e 40 -c 0 -i 5236 -a 0 -x {10.0 9.0 2613 ------- null} - -t 2.9696 -s 10 -d 7 -p ack -e 40 -c 0 -i 5236 -a 0 -x {10.0 9.0 2613 ------- null} h -t 2.9696 -s 10 -d 7 -p ack -e 40 -c 0 -i 5236 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.97003 -s 0 -d 9 -p ack -e 40 -c 0 -i 5226 -a 0 -x {10.0 9.0 2608 ------- null} + -t 2.97003 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5237 -a 0 -x {9.0 10.0 2623 ------- null} - -t 2.97003 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5237 -a 0 -x {9.0 10.0 2623 ------- null} h -t 2.97003 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5237 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.97006 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5223 -a 0 -x {9.0 10.0 2616 ------- null} - -t 2.97006 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5223 -a 0 -x {9.0 10.0 2616 ------- null} h -t 2.97006 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5223 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.97014 -s 0 -d 9 -p ack -e 40 -c 0 -i 5230 -a 0 -x {10.0 9.0 2610 ------- null} - -t 2.97014 -s 0 -d 9 -p ack -e 40 -c 0 -i 5230 -a 0 -x {10.0 9.0 2610 ------- null} h -t 2.97014 -s 0 -d 9 -p ack -e 40 -c 0 -i 5230 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.9703 -s 10 -d 7 -p ack -e 40 -c 0 -i 5234 -a 0 -x {10.0 9.0 2612 ------- null} + -t 2.9703 -s 7 -d 0 -p ack -e 40 -c 0 -i 5234 -a 0 -x {10.0 9.0 2612 ------- null} h -t 2.9703 -s 7 -d 8 -p ack -e 40 -c 0 -i 5234 -a 0 -x {10.0 9.0 2612 ------- null} r -t 2.97056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5233 -a 0 -x {9.0 10.0 2621 ------- null} + -t 2.97056 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5233 -a 0 -x {9.0 10.0 2621 ------- null} h -t 2.97056 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5233 -a 0 -x {9.0 10.0 2621 ------- null} r -t 2.97069 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5219 -a 0 -x {9.0 10.0 2614 ------- null} + -t 2.97069 -s 10 -d 7 -p ack -e 40 -c 0 -i 5238 -a 0 -x {10.0 9.0 2614 ------- null} - -t 2.97069 -s 10 -d 7 -p ack -e 40 -c 0 -i 5238 -a 0 -x {10.0 9.0 2614 ------- null} h -t 2.97069 -s 10 -d 7 -p ack -e 40 -c 0 -i 5238 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.97109 -s 0 -d 9 -p ack -e 40 -c 0 -i 5228 -a 0 -x {10.0 9.0 2609 ------- null} + -t 2.97109 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5239 -a 0 -x {9.0 10.0 2624 ------- null} - -t 2.97109 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5239 -a 0 -x {9.0 10.0 2624 ------- null} h -t 2.97109 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5239 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.97115 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5225 -a 0 -x {9.0 10.0 2617 ------- null} - -t 2.97115 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5225 -a 0 -x {9.0 10.0 2617 ------- null} h -t 2.97115 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5225 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.97128 -s 0 -d 9 -p ack -e 40 -c 0 -i 5232 -a 0 -x {10.0 9.0 2611 ------- null} - -t 2.97128 -s 0 -d 9 -p ack -e 40 -c 0 -i 5232 -a 0 -x {10.0 9.0 2611 ------- null} h -t 2.97128 -s 0 -d 9 -p ack -e 40 -c 0 -i 5232 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.97163 -s 10 -d 7 -p ack -e 40 -c 0 -i 5236 -a 0 -x {10.0 9.0 2613 ------- null} + -t 2.97163 -s 7 -d 0 -p ack -e 40 -c 0 -i 5236 -a 0 -x {10.0 9.0 2613 ------- null} h -t 2.97163 -s 7 -d 8 -p ack -e 40 -c 0 -i 5236 -a 0 -x {10.0 9.0 2613 ------- null} r -t 2.97178 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5221 -a 0 -x {9.0 10.0 2615 ------- null} + -t 2.97178 -s 10 -d 7 -p ack -e 40 -c 0 -i 5240 -a 0 -x {10.0 9.0 2615 ------- null} - -t 2.97178 -s 10 -d 7 -p ack -e 40 -c 0 -i 5240 -a 0 -x {10.0 9.0 2615 ------- null} h -t 2.97178 -s 10 -d 7 -p ack -e 40 -c 0 -i 5240 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.97181 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5235 -a 0 -x {9.0 10.0 2622 ------- null} + -t 2.97181 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5235 -a 0 -x {9.0 10.0 2622 ------- null} h -t 2.97181 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5235 -a 0 -x {9.0 10.0 2622 ------- null} r -t 2.97218 -s 0 -d 9 -p ack -e 40 -c 0 -i 5230 -a 0 -x {10.0 9.0 2610 ------- null} + -t 2.97218 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5241 -a 0 -x {9.0 10.0 2625 ------- null} - -t 2.97218 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5241 -a 0 -x {9.0 10.0 2625 ------- null} h -t 2.97218 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5241 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.97224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5227 -a 0 -x {9.0 10.0 2618 ------- null} - -t 2.97224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5227 -a 0 -x {9.0 10.0 2618 ------- null} h -t 2.97224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5227 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.97246 -s 0 -d 9 -p ack -e 40 -c 0 -i 5234 -a 0 -x {10.0 9.0 2612 ------- null} - -t 2.97246 -s 0 -d 9 -p ack -e 40 -c 0 -i 5234 -a 0 -x {10.0 9.0 2612 ------- null} h -t 2.97246 -s 0 -d 9 -p ack -e 40 -c 0 -i 5234 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.97272 -s 10 -d 7 -p ack -e 40 -c 0 -i 5238 -a 0 -x {10.0 9.0 2614 ------- null} + -t 2.97272 -s 7 -d 0 -p ack -e 40 -c 0 -i 5238 -a 0 -x {10.0 9.0 2614 ------- null} h -t 2.97272 -s 7 -d 8 -p ack -e 40 -c 0 -i 5238 -a 0 -x {10.0 9.0 2614 ------- null} r -t 2.97283 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5237 -a 0 -x {9.0 10.0 2623 ------- null} + -t 2.97283 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5237 -a 0 -x {9.0 10.0 2623 ------- null} h -t 2.97283 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5237 -a 0 -x {9.0 10.0 2623 ------- null} r -t 2.97286 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5223 -a 0 -x {9.0 10.0 2616 ------- null} + -t 2.97286 -s 10 -d 7 -p ack -e 40 -c 0 -i 5242 -a 0 -x {10.0 9.0 2616 ------- null} - -t 2.97286 -s 10 -d 7 -p ack -e 40 -c 0 -i 5242 -a 0 -x {10.0 9.0 2616 ------- null} h -t 2.97286 -s 10 -d 7 -p ack -e 40 -c 0 -i 5242 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.97331 -s 0 -d 9 -p ack -e 40 -c 0 -i 5232 -a 0 -x {10.0 9.0 2611 ------- null} + -t 2.97331 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5243 -a 0 -x {9.0 10.0 2626 ------- null} - -t 2.97331 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5243 -a 0 -x {9.0 10.0 2626 ------- null} h -t 2.97331 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5243 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.97333 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5229 -a 0 -x {9.0 10.0 2619 ------- null} - -t 2.97333 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5229 -a 0 -x {9.0 10.0 2619 ------- null} h -t 2.97333 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5229 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.97354 -s 0 -d 9 -p ack -e 40 -c 0 -i 5236 -a 0 -x {10.0 9.0 2613 ------- null} - -t 2.97354 -s 0 -d 9 -p ack -e 40 -c 0 -i 5236 -a 0 -x {10.0 9.0 2613 ------- null} h -t 2.97354 -s 0 -d 9 -p ack -e 40 -c 0 -i 5236 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.97381 -s 10 -d 7 -p ack -e 40 -c 0 -i 5240 -a 0 -x {10.0 9.0 2615 ------- null} + -t 2.97381 -s 7 -d 0 -p ack -e 40 -c 0 -i 5240 -a 0 -x {10.0 9.0 2615 ------- null} h -t 2.97381 -s 7 -d 8 -p ack -e 40 -c 0 -i 5240 -a 0 -x {10.0 9.0 2615 ------- null} r -t 2.97389 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5239 -a 0 -x {9.0 10.0 2624 ------- null} + -t 2.97389 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5239 -a 0 -x {9.0 10.0 2624 ------- null} h -t 2.97389 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5239 -a 0 -x {9.0 10.0 2624 ------- null} r -t 2.97395 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5225 -a 0 -x {9.0 10.0 2617 ------- null} + -t 2.97395 -s 10 -d 7 -p ack -e 40 -c 0 -i 5244 -a 0 -x {10.0 9.0 2617 ------- null} - -t 2.97395 -s 10 -d 7 -p ack -e 40 -c 0 -i 5244 -a 0 -x {10.0 9.0 2617 ------- null} h -t 2.97395 -s 10 -d 7 -p ack -e 40 -c 0 -i 5244 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.97442 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5231 -a 0 -x {9.0 10.0 2620 ------- null} - -t 2.97442 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5231 -a 0 -x {9.0 10.0 2620 ------- null} h -t 2.97442 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5231 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.9745 -s 0 -d 9 -p ack -e 40 -c 0 -i 5234 -a 0 -x {10.0 9.0 2612 ------- null} + -t 2.9745 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5245 -a 0 -x {9.0 10.0 2627 ------- null} - -t 2.9745 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5245 -a 0 -x {9.0 10.0 2627 ------- null} h -t 2.9745 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5245 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.97461 -s 0 -d 9 -p ack -e 40 -c 0 -i 5238 -a 0 -x {10.0 9.0 2614 ------- null} - -t 2.97461 -s 0 -d 9 -p ack -e 40 -c 0 -i 5238 -a 0 -x {10.0 9.0 2614 ------- null} h -t 2.97461 -s 0 -d 9 -p ack -e 40 -c 0 -i 5238 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.9749 -s 10 -d 7 -p ack -e 40 -c 0 -i 5242 -a 0 -x {10.0 9.0 2616 ------- null} + -t 2.9749 -s 7 -d 0 -p ack -e 40 -c 0 -i 5242 -a 0 -x {10.0 9.0 2616 ------- null} h -t 2.9749 -s 7 -d 8 -p ack -e 40 -c 0 -i 5242 -a 0 -x {10.0 9.0 2616 ------- null} r -t 2.97498 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5241 -a 0 -x {9.0 10.0 2625 ------- null} + -t 2.97498 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5241 -a 0 -x {9.0 10.0 2625 ------- null} h -t 2.97498 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5241 -a 0 -x {9.0 10.0 2625 ------- null} r -t 2.97504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5227 -a 0 -x {9.0 10.0 2618 ------- null} + -t 2.97504 -s 10 -d 7 -p ack -e 40 -c 0 -i 5246 -a 0 -x {10.0 9.0 2618 ------- null} - -t 2.97504 -s 10 -d 7 -p ack -e 40 -c 0 -i 5246 -a 0 -x {10.0 9.0 2618 ------- null} h -t 2.97504 -s 10 -d 7 -p ack -e 40 -c 0 -i 5246 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.9755 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5233 -a 0 -x {9.0 10.0 2621 ------- null} - -t 2.9755 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5233 -a 0 -x {9.0 10.0 2621 ------- null} h -t 2.9755 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5233 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.97557 -s 0 -d 9 -p ack -e 40 -c 0 -i 5236 -a 0 -x {10.0 9.0 2613 ------- null} + -t 2.97557 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5247 -a 0 -x {9.0 10.0 2628 ------- null} - -t 2.97557 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5247 -a 0 -x {9.0 10.0 2628 ------- null} h -t 2.97557 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5247 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.97562 -s 0 -d 9 -p ack -e 40 -c 0 -i 5240 -a 0 -x {10.0 9.0 2615 ------- null} - -t 2.97562 -s 0 -d 9 -p ack -e 40 -c 0 -i 5240 -a 0 -x {10.0 9.0 2615 ------- null} h -t 2.97562 -s 0 -d 9 -p ack -e 40 -c 0 -i 5240 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.97598 -s 10 -d 7 -p ack -e 40 -c 0 -i 5244 -a 0 -x {10.0 9.0 2617 ------- null} + -t 2.97598 -s 7 -d 0 -p ack -e 40 -c 0 -i 5244 -a 0 -x {10.0 9.0 2617 ------- null} h -t 2.97598 -s 7 -d 8 -p ack -e 40 -c 0 -i 5244 -a 0 -x {10.0 9.0 2617 ------- null} r -t 2.97611 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5243 -a 0 -x {9.0 10.0 2626 ------- null} + -t 2.97611 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5243 -a 0 -x {9.0 10.0 2626 ------- null} h -t 2.97611 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5243 -a 0 -x {9.0 10.0 2626 ------- null} r -t 2.97613 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5229 -a 0 -x {9.0 10.0 2619 ------- null} + -t 2.97613 -s 10 -d 7 -p ack -e 40 -c 0 -i 5248 -a 0 -x {10.0 9.0 2619 ------- null} - -t 2.97613 -s 10 -d 7 -p ack -e 40 -c 0 -i 5248 -a 0 -x {10.0 9.0 2619 ------- null} h -t 2.97613 -s 10 -d 7 -p ack -e 40 -c 0 -i 5248 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.97659 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5235 -a 0 -x {9.0 10.0 2622 ------- null} - -t 2.97659 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5235 -a 0 -x {9.0 10.0 2622 ------- null} h -t 2.97659 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5235 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.97664 -s 0 -d 9 -p ack -e 40 -c 0 -i 5238 -a 0 -x {10.0 9.0 2614 ------- null} + -t 2.97664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5249 -a 0 -x {9.0 10.0 2629 ------- null} - -t 2.97664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5249 -a 0 -x {9.0 10.0 2629 ------- null} h -t 2.97664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5249 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.97678 -s 0 -d 9 -p ack -e 40 -c 0 -i 5242 -a 0 -x {10.0 9.0 2616 ------- null} - -t 2.97678 -s 0 -d 9 -p ack -e 40 -c 0 -i 5242 -a 0 -x {10.0 9.0 2616 ------- null} h -t 2.97678 -s 0 -d 9 -p ack -e 40 -c 0 -i 5242 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.97707 -s 10 -d 7 -p ack -e 40 -c 0 -i 5246 -a 0 -x {10.0 9.0 2618 ------- null} + -t 2.97707 -s 7 -d 0 -p ack -e 40 -c 0 -i 5246 -a 0 -x {10.0 9.0 2618 ------- null} h -t 2.97707 -s 7 -d 8 -p ack -e 40 -c 0 -i 5246 -a 0 -x {10.0 9.0 2618 ------- null} r -t 2.97722 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5231 -a 0 -x {9.0 10.0 2620 ------- null} + -t 2.97722 -s 10 -d 7 -p ack -e 40 -c 0 -i 5250 -a 0 -x {10.0 9.0 2620 ------- null} - -t 2.97722 -s 10 -d 7 -p ack -e 40 -c 0 -i 5250 -a 0 -x {10.0 9.0 2620 ------- null} h -t 2.97722 -s 10 -d 7 -p ack -e 40 -c 0 -i 5250 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.9773 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5245 -a 0 -x {9.0 10.0 2627 ------- null} + -t 2.9773 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5245 -a 0 -x {9.0 10.0 2627 ------- null} h -t 2.9773 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5245 -a 0 -x {9.0 10.0 2627 ------- null} r -t 2.97765 -s 0 -d 9 -p ack -e 40 -c 0 -i 5240 -a 0 -x {10.0 9.0 2615 ------- null} + -t 2.97765 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5251 -a 0 -x {9.0 10.0 2630 ------- null} - -t 2.97765 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5251 -a 0 -x {9.0 10.0 2630 ------- null} h -t 2.97765 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5251 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.97768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5237 -a 0 -x {9.0 10.0 2623 ------- null} - -t 2.97768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5237 -a 0 -x {9.0 10.0 2623 ------- null} h -t 2.97768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5237 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.97781 -s 0 -d 9 -p ack -e 40 -c 0 -i 5244 -a 0 -x {10.0 9.0 2617 ------- null} - -t 2.97781 -s 0 -d 9 -p ack -e 40 -c 0 -i 5244 -a 0 -x {10.0 9.0 2617 ------- null} h -t 2.97781 -s 0 -d 9 -p ack -e 40 -c 0 -i 5244 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.97816 -s 10 -d 7 -p ack -e 40 -c 0 -i 5248 -a 0 -x {10.0 9.0 2619 ------- null} + -t 2.97816 -s 7 -d 0 -p ack -e 40 -c 0 -i 5248 -a 0 -x {10.0 9.0 2619 ------- null} h -t 2.97816 -s 7 -d 8 -p ack -e 40 -c 0 -i 5248 -a 0 -x {10.0 9.0 2619 ------- null} r -t 2.9783 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5233 -a 0 -x {9.0 10.0 2621 ------- null} + -t 2.9783 -s 10 -d 7 -p ack -e 40 -c 0 -i 5252 -a 0 -x {10.0 9.0 2621 ------- null} - -t 2.9783 -s 10 -d 7 -p ack -e 40 -c 0 -i 5252 -a 0 -x {10.0 9.0 2621 ------- null} h -t 2.9783 -s 10 -d 7 -p ack -e 40 -c 0 -i 5252 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.97837 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5247 -a 0 -x {9.0 10.0 2628 ------- null} + -t 2.97837 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5247 -a 0 -x {9.0 10.0 2628 ------- null} h -t 2.97837 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5247 -a 0 -x {9.0 10.0 2628 ------- null} + -t 2.97877 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5239 -a 0 -x {9.0 10.0 2624 ------- null} - -t 2.97877 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5239 -a 0 -x {9.0 10.0 2624 ------- null} h -t 2.97877 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5239 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.97882 -s 0 -d 9 -p ack -e 40 -c 0 -i 5242 -a 0 -x {10.0 9.0 2616 ------- null} + -t 2.97882 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5253 -a 0 -x {9.0 10.0 2631 ------- null} - -t 2.97882 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5253 -a 0 -x {9.0 10.0 2631 ------- null} h -t 2.97882 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5253 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.97896 -s 0 -d 9 -p ack -e 40 -c 0 -i 5246 -a 0 -x {10.0 9.0 2618 ------- null} - -t 2.97896 -s 0 -d 9 -p ack -e 40 -c 0 -i 5246 -a 0 -x {10.0 9.0 2618 ------- null} h -t 2.97896 -s 0 -d 9 -p ack -e 40 -c 0 -i 5246 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.97925 -s 10 -d 7 -p ack -e 40 -c 0 -i 5250 -a 0 -x {10.0 9.0 2620 ------- null} + -t 2.97925 -s 7 -d 0 -p ack -e 40 -c 0 -i 5250 -a 0 -x {10.0 9.0 2620 ------- null} h -t 2.97925 -s 7 -d 8 -p ack -e 40 -c 0 -i 5250 -a 0 -x {10.0 9.0 2620 ------- null} r -t 2.97939 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5235 -a 0 -x {9.0 10.0 2622 ------- null} + -t 2.97939 -s 10 -d 7 -p ack -e 40 -c 0 -i 5254 -a 0 -x {10.0 9.0 2622 ------- null} - -t 2.97939 -s 10 -d 7 -p ack -e 40 -c 0 -i 5254 -a 0 -x {10.0 9.0 2622 ------- null} h -t 2.97939 -s 10 -d 7 -p ack -e 40 -c 0 -i 5254 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.97944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5249 -a 0 -x {9.0 10.0 2629 ------- null} + -t 2.97944 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5249 -a 0 -x {9.0 10.0 2629 ------- null} h -t 2.97944 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5249 -a 0 -x {9.0 10.0 2629 ------- null} r -t 2.97984 -s 0 -d 9 -p ack -e 40 -c 0 -i 5244 -a 0 -x {10.0 9.0 2617 ------- null} + -t 2.97984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5255 -a 0 -x {9.0 10.0 2632 ------- null} - -t 2.97984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5255 -a 0 -x {9.0 10.0 2632 ------- null} h -t 2.97984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5255 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.97986 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5241 -a 0 -x {9.0 10.0 2625 ------- null} - -t 2.97986 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5241 -a 0 -x {9.0 10.0 2625 ------- null} h -t 2.97986 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5241 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.9801 -s 0 -d 9 -p ack -e 40 -c 0 -i 5248 -a 0 -x {10.0 9.0 2619 ------- null} - -t 2.9801 -s 0 -d 9 -p ack -e 40 -c 0 -i 5248 -a 0 -x {10.0 9.0 2619 ------- null} h -t 2.9801 -s 0 -d 9 -p ack -e 40 -c 0 -i 5248 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.98034 -s 10 -d 7 -p ack -e 40 -c 0 -i 5252 -a 0 -x {10.0 9.0 2621 ------- null} + -t 2.98034 -s 7 -d 0 -p ack -e 40 -c 0 -i 5252 -a 0 -x {10.0 9.0 2621 ------- null} h -t 2.98034 -s 7 -d 8 -p ack -e 40 -c 0 -i 5252 -a 0 -x {10.0 9.0 2621 ------- null} r -t 2.98045 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5251 -a 0 -x {9.0 10.0 2630 ------- null} + -t 2.98045 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5251 -a 0 -x {9.0 10.0 2630 ------- null} h -t 2.98045 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5251 -a 0 -x {9.0 10.0 2630 ------- null} r -t 2.98048 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5237 -a 0 -x {9.0 10.0 2623 ------- null} + -t 2.98048 -s 10 -d 7 -p ack -e 40 -c 0 -i 5256 -a 0 -x {10.0 9.0 2623 ------- null} - -t 2.98048 -s 10 -d 7 -p ack -e 40 -c 0 -i 5256 -a 0 -x {10.0 9.0 2623 ------- null} h -t 2.98048 -s 10 -d 7 -p ack -e 40 -c 0 -i 5256 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.98094 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5243 -a 0 -x {9.0 10.0 2626 ------- null} - -t 2.98094 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5243 -a 0 -x {9.0 10.0 2626 ------- null} h -t 2.98094 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5243 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.98099 -s 0 -d 9 -p ack -e 40 -c 0 -i 5246 -a 0 -x {10.0 9.0 2618 ------- null} + -t 2.98099 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5257 -a 0 -x {9.0 10.0 2633 ------- null} - -t 2.98099 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5257 -a 0 -x {9.0 10.0 2633 ------- null} h -t 2.98099 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5257 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.98118 -s 0 -d 9 -p ack -e 40 -c 0 -i 5250 -a 0 -x {10.0 9.0 2620 ------- null} - -t 2.98118 -s 0 -d 9 -p ack -e 40 -c 0 -i 5250 -a 0 -x {10.0 9.0 2620 ------- null} h -t 2.98118 -s 0 -d 9 -p ack -e 40 -c 0 -i 5250 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.98142 -s 10 -d 7 -p ack -e 40 -c 0 -i 5254 -a 0 -x {10.0 9.0 2622 ------- null} + -t 2.98142 -s 7 -d 0 -p ack -e 40 -c 0 -i 5254 -a 0 -x {10.0 9.0 2622 ------- null} h -t 2.98142 -s 7 -d 8 -p ack -e 40 -c 0 -i 5254 -a 0 -x {10.0 9.0 2622 ------- null} r -t 2.98157 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5239 -a 0 -x {9.0 10.0 2624 ------- null} + -t 2.98157 -s 10 -d 7 -p ack -e 40 -c 0 -i 5258 -a 0 -x {10.0 9.0 2624 ------- null} - -t 2.98157 -s 10 -d 7 -p ack -e 40 -c 0 -i 5258 -a 0 -x {10.0 9.0 2624 ------- null} h -t 2.98157 -s 10 -d 7 -p ack -e 40 -c 0 -i 5258 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.98162 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5253 -a 0 -x {9.0 10.0 2631 ------- null} + -t 2.98162 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5253 -a 0 -x {9.0 10.0 2631 ------- null} h -t 2.98162 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5253 -a 0 -x {9.0 10.0 2631 ------- null} + -t 2.98203 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5245 -a 0 -x {9.0 10.0 2627 ------- null} - -t 2.98203 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5245 -a 0 -x {9.0 10.0 2627 ------- null} h -t 2.98203 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5245 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.98213 -s 0 -d 9 -p ack -e 40 -c 0 -i 5248 -a 0 -x {10.0 9.0 2619 ------- null} + -t 2.98213 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5259 -a 0 -x {9.0 10.0 2634 ------- null} - -t 2.98213 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5259 -a 0 -x {9.0 10.0 2634 ------- null} h -t 2.98213 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5259 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.9823 -s 0 -d 9 -p ack -e 40 -c 0 -i 5252 -a 0 -x {10.0 9.0 2621 ------- null} - -t 2.9823 -s 0 -d 9 -p ack -e 40 -c 0 -i 5252 -a 0 -x {10.0 9.0 2621 ------- null} h -t 2.9823 -s 0 -d 9 -p ack -e 40 -c 0 -i 5252 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.98251 -s 10 -d 7 -p ack -e 40 -c 0 -i 5256 -a 0 -x {10.0 9.0 2623 ------- null} + -t 2.98251 -s 7 -d 0 -p ack -e 40 -c 0 -i 5256 -a 0 -x {10.0 9.0 2623 ------- null} h -t 2.98251 -s 7 -d 8 -p ack -e 40 -c 0 -i 5256 -a 0 -x {10.0 9.0 2623 ------- null} r -t 2.98264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5255 -a 0 -x {9.0 10.0 2632 ------- null} + -t 2.98264 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5255 -a 0 -x {9.0 10.0 2632 ------- null} h -t 2.98264 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5255 -a 0 -x {9.0 10.0 2632 ------- null} r -t 2.98266 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5241 -a 0 -x {9.0 10.0 2625 ------- null} + -t 2.98266 -s 10 -d 7 -p ack -e 40 -c 0 -i 5260 -a 0 -x {10.0 9.0 2625 ------- null} - -t 2.98266 -s 10 -d 7 -p ack -e 40 -c 0 -i 5260 -a 0 -x {10.0 9.0 2625 ------- null} h -t 2.98266 -s 10 -d 7 -p ack -e 40 -c 0 -i 5260 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.98318 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5247 -a 0 -x {9.0 10.0 2628 ------- null} - -t 2.98318 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5247 -a 0 -x {9.0 10.0 2628 ------- null} h -t 2.98318 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5247 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.98322 -s 0 -d 9 -p ack -e 40 -c 0 -i 5250 -a 0 -x {10.0 9.0 2620 ------- null} + -t 2.98322 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5261 -a 0 -x {9.0 10.0 2635 ------- null} - -t 2.98322 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5261 -a 0 -x {9.0 10.0 2635 ------- null} h -t 2.98322 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5261 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.98347 -s 0 -d 9 -p ack -e 40 -c 0 -i 5254 -a 0 -x {10.0 9.0 2622 ------- null} - -t 2.98347 -s 0 -d 9 -p ack -e 40 -c 0 -i 5254 -a 0 -x {10.0 9.0 2622 ------- null} h -t 2.98347 -s 0 -d 9 -p ack -e 40 -c 0 -i 5254 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.9836 -s 10 -d 7 -p ack -e 40 -c 0 -i 5258 -a 0 -x {10.0 9.0 2624 ------- null} + -t 2.9836 -s 7 -d 0 -p ack -e 40 -c 0 -i 5258 -a 0 -x {10.0 9.0 2624 ------- null} h -t 2.9836 -s 7 -d 8 -p ack -e 40 -c 0 -i 5258 -a 0 -x {10.0 9.0 2624 ------- null} r -t 2.98374 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5243 -a 0 -x {9.0 10.0 2626 ------- null} + -t 2.98374 -s 10 -d 7 -p ack -e 40 -c 0 -i 5262 -a 0 -x {10.0 9.0 2626 ------- null} - -t 2.98374 -s 10 -d 7 -p ack -e 40 -c 0 -i 5262 -a 0 -x {10.0 9.0 2626 ------- null} h -t 2.98374 -s 10 -d 7 -p ack -e 40 -c 0 -i 5262 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.98379 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5257 -a 0 -x {9.0 10.0 2633 ------- null} + -t 2.98379 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5257 -a 0 -x {9.0 10.0 2633 ------- null} h -t 2.98379 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5257 -a 0 -x {9.0 10.0 2633 ------- null} r -t 2.98434 -s 0 -d 9 -p ack -e 40 -c 0 -i 5252 -a 0 -x {10.0 9.0 2621 ------- null} + -t 2.98434 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5263 -a 0 -x {9.0 10.0 2636 ------- null} - -t 2.98434 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5263 -a 0 -x {9.0 10.0 2636 ------- null} h -t 2.98434 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5263 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.98443 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5249 -a 0 -x {9.0 10.0 2629 ------- null} - -t 2.98443 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5249 -a 0 -x {9.0 10.0 2629 ------- null} h -t 2.98443 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5249 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.98456 -s 0 -d 9 -p ack -e 40 -c 0 -i 5256 -a 0 -x {10.0 9.0 2623 ------- null} - -t 2.98456 -s 0 -d 9 -p ack -e 40 -c 0 -i 5256 -a 0 -x {10.0 9.0 2623 ------- null} h -t 2.98456 -s 0 -d 9 -p ack -e 40 -c 0 -i 5256 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.98469 -s 10 -d 7 -p ack -e 40 -c 0 -i 5260 -a 0 -x {10.0 9.0 2625 ------- null} + -t 2.98469 -s 7 -d 0 -p ack -e 40 -c 0 -i 5260 -a 0 -x {10.0 9.0 2625 ------- null} h -t 2.98469 -s 7 -d 8 -p ack -e 40 -c 0 -i 5260 -a 0 -x {10.0 9.0 2625 ------- null} r -t 2.98483 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5245 -a 0 -x {9.0 10.0 2627 ------- null} + -t 2.98483 -s 10 -d 7 -p ack -e 40 -c 0 -i 5264 -a 0 -x {10.0 9.0 2627 ------- null} - -t 2.98483 -s 10 -d 7 -p ack -e 40 -c 0 -i 5264 -a 0 -x {10.0 9.0 2627 ------- null} h -t 2.98483 -s 10 -d 7 -p ack -e 40 -c 0 -i 5264 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.98493 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5259 -a 0 -x {9.0 10.0 2634 ------- null} + -t 2.98493 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5259 -a 0 -x {9.0 10.0 2634 ------- null} h -t 2.98493 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5259 -a 0 -x {9.0 10.0 2634 ------- null} r -t 2.9855 -s 0 -d 9 -p ack -e 40 -c 0 -i 5254 -a 0 -x {10.0 9.0 2622 ------- null} + -t 2.9855 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5265 -a 0 -x {9.0 10.0 2637 ------- null} - -t 2.9855 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5265 -a 0 -x {9.0 10.0 2637 ------- null} h -t 2.9855 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5265 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.98552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5251 -a 0 -x {9.0 10.0 2630 ------- null} - -t 2.98552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5251 -a 0 -x {9.0 10.0 2630 ------- null} h -t 2.98552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5251 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.98576 -s 0 -d 9 -p ack -e 40 -c 0 -i 5258 -a 0 -x {10.0 9.0 2624 ------- null} - -t 2.98576 -s 0 -d 9 -p ack -e 40 -c 0 -i 5258 -a 0 -x {10.0 9.0 2624 ------- null} h -t 2.98576 -s 0 -d 9 -p ack -e 40 -c 0 -i 5258 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.98578 -s 10 -d 7 -p ack -e 40 -c 0 -i 5262 -a 0 -x {10.0 9.0 2626 ------- null} + -t 2.98578 -s 7 -d 0 -p ack -e 40 -c 0 -i 5262 -a 0 -x {10.0 9.0 2626 ------- null} h -t 2.98578 -s 7 -d 8 -p ack -e 40 -c 0 -i 5262 -a 0 -x {10.0 9.0 2626 ------- null} r -t 2.98598 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5247 -a 0 -x {9.0 10.0 2628 ------- null} + -t 2.98598 -s 10 -d 7 -p ack -e 40 -c 0 -i 5266 -a 0 -x {10.0 9.0 2628 ------- null} - -t 2.98598 -s 10 -d 7 -p ack -e 40 -c 0 -i 5266 -a 0 -x {10.0 9.0 2628 ------- null} h -t 2.98598 -s 10 -d 7 -p ack -e 40 -c 0 -i 5266 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.98602 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5261 -a 0 -x {9.0 10.0 2635 ------- null} + -t 2.98602 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5261 -a 0 -x {9.0 10.0 2635 ------- null} h -t 2.98602 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5261 -a 0 -x {9.0 10.0 2635 ------- null} r -t 2.98659 -s 0 -d 9 -p ack -e 40 -c 0 -i 5256 -a 0 -x {10.0 9.0 2623 ------- null} + -t 2.98659 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5267 -a 0 -x {9.0 10.0 2638 ------- null} - -t 2.98659 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5267 -a 0 -x {9.0 10.0 2638 ------- null} h -t 2.98659 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5267 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.98661 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5253 -a 0 -x {9.0 10.0 2631 ------- null} - -t 2.98661 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5253 -a 0 -x {9.0 10.0 2631 ------- null} h -t 2.98661 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5253 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.98674 -s 0 -d 9 -p ack -e 40 -c 0 -i 5260 -a 0 -x {10.0 9.0 2625 ------- null} - -t 2.98674 -s 0 -d 9 -p ack -e 40 -c 0 -i 5260 -a 0 -x {10.0 9.0 2625 ------- null} h -t 2.98674 -s 0 -d 9 -p ack -e 40 -c 0 -i 5260 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.98686 -s 10 -d 7 -p ack -e 40 -c 0 -i 5264 -a 0 -x {10.0 9.0 2627 ------- null} + -t 2.98686 -s 7 -d 0 -p ack -e 40 -c 0 -i 5264 -a 0 -x {10.0 9.0 2627 ------- null} h -t 2.98686 -s 7 -d 8 -p ack -e 40 -c 0 -i 5264 -a 0 -x {10.0 9.0 2627 ------- null} r -t 2.98714 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5263 -a 0 -x {9.0 10.0 2636 ------- null} + -t 2.98714 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5263 -a 0 -x {9.0 10.0 2636 ------- null} h -t 2.98714 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5263 -a 0 -x {9.0 10.0 2636 ------- null} r -t 2.98723 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5249 -a 0 -x {9.0 10.0 2629 ------- null} + -t 2.98723 -s 10 -d 7 -p ack -e 40 -c 0 -i 5268 -a 0 -x {10.0 9.0 2629 ------- null} - -t 2.98723 -s 10 -d 7 -p ack -e 40 -c 0 -i 5268 -a 0 -x {10.0 9.0 2629 ------- null} h -t 2.98723 -s 10 -d 7 -p ack -e 40 -c 0 -i 5268 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.9877 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5255 -a 0 -x {9.0 10.0 2632 ------- null} - -t 2.9877 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5255 -a 0 -x {9.0 10.0 2632 ------- null} h -t 2.9877 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5255 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.98779 -s 0 -d 9 -p ack -e 40 -c 0 -i 5258 -a 0 -x {10.0 9.0 2624 ------- null} + -t 2.98779 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5269 -a 0 -x {9.0 10.0 2639 ------- null} - -t 2.98779 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5269 -a 0 -x {9.0 10.0 2639 ------- null} h -t 2.98779 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5269 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.988 -s 0 -d 9 -p ack -e 40 -c 0 -i 5262 -a 0 -x {10.0 9.0 2626 ------- null} - -t 2.988 -s 0 -d 9 -p ack -e 40 -c 0 -i 5262 -a 0 -x {10.0 9.0 2626 ------- null} h -t 2.988 -s 0 -d 9 -p ack -e 40 -c 0 -i 5262 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.98802 -s 10 -d 7 -p ack -e 40 -c 0 -i 5266 -a 0 -x {10.0 9.0 2628 ------- null} + -t 2.98802 -s 7 -d 0 -p ack -e 40 -c 0 -i 5266 -a 0 -x {10.0 9.0 2628 ------- null} h -t 2.98802 -s 7 -d 8 -p ack -e 40 -c 0 -i 5266 -a 0 -x {10.0 9.0 2628 ------- null} r -t 2.9883 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5265 -a 0 -x {9.0 10.0 2637 ------- null} + -t 2.9883 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5265 -a 0 -x {9.0 10.0 2637 ------- null} h -t 2.9883 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5265 -a 0 -x {9.0 10.0 2637 ------- null} r -t 2.98832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5251 -a 0 -x {9.0 10.0 2630 ------- null} + -t 2.98832 -s 10 -d 7 -p ack -e 40 -c 0 -i 5270 -a 0 -x {10.0 9.0 2630 ------- null} - -t 2.98832 -s 10 -d 7 -p ack -e 40 -c 0 -i 5270 -a 0 -x {10.0 9.0 2630 ------- null} h -t 2.98832 -s 10 -d 7 -p ack -e 40 -c 0 -i 5270 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.98877 -s 0 -d 9 -p ack -e 40 -c 0 -i 5260 -a 0 -x {10.0 9.0 2625 ------- null} + -t 2.98877 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5271 -a 0 -x {9.0 10.0 2640 ------- null} - -t 2.98877 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5271 -a 0 -x {9.0 10.0 2640 ------- null} h -t 2.98877 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5271 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.98894 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5257 -a 0 -x {9.0 10.0 2633 ------- null} - -t 2.98894 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5257 -a 0 -x {9.0 10.0 2633 ------- null} h -t 2.98894 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5257 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.98915 -s 0 -d 9 -p ack -e 40 -c 0 -i 5264 -a 0 -x {10.0 9.0 2627 ------- null} - -t 2.98915 -s 0 -d 9 -p ack -e 40 -c 0 -i 5264 -a 0 -x {10.0 9.0 2627 ------- null} h -t 2.98915 -s 0 -d 9 -p ack -e 40 -c 0 -i 5264 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.98926 -s 10 -d 7 -p ack -e 40 -c 0 -i 5268 -a 0 -x {10.0 9.0 2629 ------- null} + -t 2.98926 -s 7 -d 0 -p ack -e 40 -c 0 -i 5268 -a 0 -x {10.0 9.0 2629 ------- null} h -t 2.98926 -s 7 -d 8 -p ack -e 40 -c 0 -i 5268 -a 0 -x {10.0 9.0 2629 ------- null} r -t 2.98939 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5267 -a 0 -x {9.0 10.0 2638 ------- null} + -t 2.98939 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5267 -a 0 -x {9.0 10.0 2638 ------- null} h -t 2.98939 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5267 -a 0 -x {9.0 10.0 2638 ------- null} r -t 2.98941 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5253 -a 0 -x {9.0 10.0 2631 ------- null} + -t 2.98941 -s 10 -d 7 -p ack -e 40 -c 0 -i 5272 -a 0 -x {10.0 9.0 2631 ------- null} - -t 2.98941 -s 10 -d 7 -p ack -e 40 -c 0 -i 5272 -a 0 -x {10.0 9.0 2631 ------- null} h -t 2.98941 -s 10 -d 7 -p ack -e 40 -c 0 -i 5272 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.99003 -s 0 -d 9 -p ack -e 40 -c 0 -i 5262 -a 0 -x {10.0 9.0 2626 ------- null} + -t 2.99003 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5273 -a 0 -x {9.0 10.0 2641 ------- null} - -t 2.99003 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5273 -a 0 -x {9.0 10.0 2641 ------- null} h -t 2.99003 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5273 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.99003 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5259 -a 0 -x {9.0 10.0 2634 ------- null} - -t 2.99003 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5259 -a 0 -x {9.0 10.0 2634 ------- null} h -t 2.99003 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5259 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.99021 -s 0 -d 9 -p ack -e 40 -c 0 -i 5266 -a 0 -x {10.0 9.0 2628 ------- null} - -t 2.99021 -s 0 -d 9 -p ack -e 40 -c 0 -i 5266 -a 0 -x {10.0 9.0 2628 ------- null} h -t 2.99021 -s 0 -d 9 -p ack -e 40 -c 0 -i 5266 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.99035 -s 10 -d 7 -p ack -e 40 -c 0 -i 5270 -a 0 -x {10.0 9.0 2630 ------- null} + -t 2.99035 -s 7 -d 0 -p ack -e 40 -c 0 -i 5270 -a 0 -x {10.0 9.0 2630 ------- null} h -t 2.99035 -s 7 -d 8 -p ack -e 40 -c 0 -i 5270 -a 0 -x {10.0 9.0 2630 ------- null} r -t 2.9905 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5255 -a 0 -x {9.0 10.0 2632 ------- null} + -t 2.9905 -s 10 -d 7 -p ack -e 40 -c 0 -i 5274 -a 0 -x {10.0 9.0 2632 ------- null} - -t 2.9905 -s 10 -d 7 -p ack -e 40 -c 0 -i 5274 -a 0 -x {10.0 9.0 2632 ------- null} h -t 2.9905 -s 10 -d 7 -p ack -e 40 -c 0 -i 5274 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.99059 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5269 -a 0 -x {9.0 10.0 2639 ------- null} + -t 2.99059 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5269 -a 0 -x {9.0 10.0 2639 ------- null} h -t 2.99059 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5269 -a 0 -x {9.0 10.0 2639 ------- null} + -t 2.99112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5261 -a 0 -x {9.0 10.0 2635 ------- null} - -t 2.99112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5261 -a 0 -x {9.0 10.0 2635 ------- null} h -t 2.99112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5261 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.99118 -s 0 -d 9 -p ack -e 40 -c 0 -i 5264 -a 0 -x {10.0 9.0 2627 ------- null} + -t 2.99118 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5275 -a 0 -x {9.0 10.0 2642 ------- null} - -t 2.99118 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5275 -a 0 -x {9.0 10.0 2642 ------- null} h -t 2.99118 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5275 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.99126 -s 0 -d 9 -p ack -e 40 -c 0 -i 5268 -a 0 -x {10.0 9.0 2629 ------- null} - -t 2.99126 -s 0 -d 9 -p ack -e 40 -c 0 -i 5268 -a 0 -x {10.0 9.0 2629 ------- null} h -t 2.99126 -s 0 -d 9 -p ack -e 40 -c 0 -i 5268 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.99144 -s 10 -d 7 -p ack -e 40 -c 0 -i 5272 -a 0 -x {10.0 9.0 2631 ------- null} + -t 2.99144 -s 7 -d 0 -p ack -e 40 -c 0 -i 5272 -a 0 -x {10.0 9.0 2631 ------- null} h -t 2.99144 -s 7 -d 8 -p ack -e 40 -c 0 -i 5272 -a 0 -x {10.0 9.0 2631 ------- null} r -t 2.99157 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5271 -a 0 -x {9.0 10.0 2640 ------- null} + -t 2.99157 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5271 -a 0 -x {9.0 10.0 2640 ------- null} h -t 2.99157 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5271 -a 0 -x {9.0 10.0 2640 ------- null} r -t 2.99174 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5257 -a 0 -x {9.0 10.0 2633 ------- null} + -t 2.99174 -s 10 -d 7 -p ack -e 40 -c 0 -i 5276 -a 0 -x {10.0 9.0 2633 ------- null} - -t 2.99174 -s 10 -d 7 -p ack -e 40 -c 0 -i 5276 -a 0 -x {10.0 9.0 2633 ------- null} h -t 2.99174 -s 10 -d 7 -p ack -e 40 -c 0 -i 5276 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.99221 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5263 -a 0 -x {9.0 10.0 2636 ------- null} - -t 2.99221 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5263 -a 0 -x {9.0 10.0 2636 ------- null} h -t 2.99221 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5263 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.99224 -s 0 -d 9 -p ack -e 40 -c 0 -i 5266 -a 0 -x {10.0 9.0 2628 ------- null} + -t 2.99224 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5277 -a 0 -x {9.0 10.0 2643 ------- null} - -t 2.99224 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5277 -a 0 -x {9.0 10.0 2643 ------- null} h -t 2.99224 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5277 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.99251 -s 0 -d 9 -p ack -e 40 -c 0 -i 5270 -a 0 -x {10.0 9.0 2630 ------- null} - -t 2.99251 -s 0 -d 9 -p ack -e 40 -c 0 -i 5270 -a 0 -x {10.0 9.0 2630 ------- null} h -t 2.99251 -s 0 -d 9 -p ack -e 40 -c 0 -i 5270 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.99253 -s 10 -d 7 -p ack -e 40 -c 0 -i 5274 -a 0 -x {10.0 9.0 2632 ------- null} + -t 2.99253 -s 7 -d 0 -p ack -e 40 -c 0 -i 5274 -a 0 -x {10.0 9.0 2632 ------- null} h -t 2.99253 -s 7 -d 8 -p ack -e 40 -c 0 -i 5274 -a 0 -x {10.0 9.0 2632 ------- null} r -t 2.99283 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5273 -a 0 -x {9.0 10.0 2641 ------- null} + -t 2.99283 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5273 -a 0 -x {9.0 10.0 2641 ------- null} h -t 2.99283 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5273 -a 0 -x {9.0 10.0 2641 ------- null} r -t 2.99283 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5259 -a 0 -x {9.0 10.0 2634 ------- null} + -t 2.99283 -s 10 -d 7 -p ack -e 40 -c 0 -i 5278 -a 0 -x {10.0 9.0 2634 ------- null} - -t 2.99283 -s 10 -d 7 -p ack -e 40 -c 0 -i 5278 -a 0 -x {10.0 9.0 2634 ------- null} h -t 2.99283 -s 10 -d 7 -p ack -e 40 -c 0 -i 5278 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.9933 -s 0 -d 9 -p ack -e 40 -c 0 -i 5268 -a 0 -x {10.0 9.0 2629 ------- null} + -t 2.9933 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5279 -a 0 -x {9.0 10.0 2644 ------- null} - -t 2.9933 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5279 -a 0 -x {9.0 10.0 2644 ------- null} h -t 2.9933 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5279 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.99344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5265 -a 0 -x {9.0 10.0 2637 ------- null} - -t 2.99344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5265 -a 0 -x {9.0 10.0 2637 ------- null} h -t 2.99344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5265 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.99368 -s 0 -d 9 -p ack -e 40 -c 0 -i 5272 -a 0 -x {10.0 9.0 2631 ------- null} - -t 2.99368 -s 0 -d 9 -p ack -e 40 -c 0 -i 5272 -a 0 -x {10.0 9.0 2631 ------- null} h -t 2.99368 -s 0 -d 9 -p ack -e 40 -c 0 -i 5272 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.99378 -s 10 -d 7 -p ack -e 40 -c 0 -i 5276 -a 0 -x {10.0 9.0 2633 ------- null} + -t 2.99378 -s 7 -d 0 -p ack -e 40 -c 0 -i 5276 -a 0 -x {10.0 9.0 2633 ------- null} h -t 2.99378 -s 7 -d 8 -p ack -e 40 -c 0 -i 5276 -a 0 -x {10.0 9.0 2633 ------- null} r -t 2.99392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5261 -a 0 -x {9.0 10.0 2635 ------- null} + -t 2.99392 -s 10 -d 7 -p ack -e 40 -c 0 -i 5280 -a 0 -x {10.0 9.0 2635 ------- null} - -t 2.99392 -s 10 -d 7 -p ack -e 40 -c 0 -i 5280 -a 0 -x {10.0 9.0 2635 ------- null} h -t 2.99392 -s 10 -d 7 -p ack -e 40 -c 0 -i 5280 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.99398 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5275 -a 0 -x {9.0 10.0 2642 ------- null} + -t 2.99398 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5275 -a 0 -x {9.0 10.0 2642 ------- null} h -t 2.99398 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5275 -a 0 -x {9.0 10.0 2642 ------- null} + -t 2.99453 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5267 -a 0 -x {9.0 10.0 2638 ------- null} - -t 2.99453 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5267 -a 0 -x {9.0 10.0 2638 ------- null} h -t 2.99453 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5267 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.99454 -s 0 -d 9 -p ack -e 40 -c 0 -i 5270 -a 0 -x {10.0 9.0 2630 ------- null} + -t 2.99454 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5281 -a 0 -x {9.0 10.0 2645 ------- null} - -t 2.99454 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5281 -a 0 -x {9.0 10.0 2645 ------- null} h -t 2.99454 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5281 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.99483 -s 0 -d 9 -p ack -e 40 -c 0 -i 5274 -a 0 -x {10.0 9.0 2632 ------- null} - -t 2.99483 -s 0 -d 9 -p ack -e 40 -c 0 -i 5274 -a 0 -x {10.0 9.0 2632 ------- null} h -t 2.99483 -s 0 -d 9 -p ack -e 40 -c 0 -i 5274 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.99486 -s 10 -d 7 -p ack -e 40 -c 0 -i 5278 -a 0 -x {10.0 9.0 2634 ------- null} + -t 2.99486 -s 7 -d 0 -p ack -e 40 -c 0 -i 5278 -a 0 -x {10.0 9.0 2634 ------- null} h -t 2.99486 -s 7 -d 8 -p ack -e 40 -c 0 -i 5278 -a 0 -x {10.0 9.0 2634 ------- null} r -t 2.99501 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5263 -a 0 -x {9.0 10.0 2636 ------- null} + -t 2.99501 -s 10 -d 7 -p ack -e 40 -c 0 -i 5282 -a 0 -x {10.0 9.0 2636 ------- null} - -t 2.99501 -s 10 -d 7 -p ack -e 40 -c 0 -i 5282 -a 0 -x {10.0 9.0 2636 ------- null} h -t 2.99501 -s 10 -d 7 -p ack -e 40 -c 0 -i 5282 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.99504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5277 -a 0 -x {9.0 10.0 2643 ------- null} + -t 2.99504 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5277 -a 0 -x {9.0 10.0 2643 ------- null} h -t 2.99504 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5277 -a 0 -x {9.0 10.0 2643 ------- null} + -t 2.9957 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5269 -a 0 -x {9.0 10.0 2639 ------- null} - -t 2.9957 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5269 -a 0 -x {9.0 10.0 2639 ------- null} h -t 2.9957 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5269 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.99571 -s 0 -d 9 -p ack -e 40 -c 0 -i 5272 -a 0 -x {10.0 9.0 2631 ------- null} + -t 2.99571 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5283 -a 0 -x {9.0 10.0 2646 ------- null} - -t 2.99571 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5283 -a 0 -x {9.0 10.0 2646 ------- null} h -t 2.99571 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5283 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.99592 -s 0 -d 9 -p ack -e 40 -c 0 -i 5276 -a 0 -x {10.0 9.0 2633 ------- null} - -t 2.99592 -s 0 -d 9 -p ack -e 40 -c 0 -i 5276 -a 0 -x {10.0 9.0 2633 ------- null} h -t 2.99592 -s 0 -d 9 -p ack -e 40 -c 0 -i 5276 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.99595 -s 10 -d 7 -p ack -e 40 -c 0 -i 5280 -a 0 -x {10.0 9.0 2635 ------- null} + -t 2.99595 -s 7 -d 0 -p ack -e 40 -c 0 -i 5280 -a 0 -x {10.0 9.0 2635 ------- null} h -t 2.99595 -s 7 -d 8 -p ack -e 40 -c 0 -i 5280 -a 0 -x {10.0 9.0 2635 ------- null} r -t 2.9961 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5279 -a 0 -x {9.0 10.0 2644 ------- null} + -t 2.9961 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5279 -a 0 -x {9.0 10.0 2644 ------- null} h -t 2.9961 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5279 -a 0 -x {9.0 10.0 2644 ------- null} r -t 2.99624 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5265 -a 0 -x {9.0 10.0 2637 ------- null} + -t 2.99624 -s 10 -d 7 -p ack -e 40 -c 0 -i 5284 -a 0 -x {10.0 9.0 2637 ------- null} - -t 2.99624 -s 10 -d 7 -p ack -e 40 -c 0 -i 5284 -a 0 -x {10.0 9.0 2637 ------- null} h -t 2.99624 -s 10 -d 7 -p ack -e 40 -c 0 -i 5284 -a 0 -x {10.0 9.0 -1 ------- null} + -t 2.99678 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5271 -a 0 -x {9.0 10.0 2640 ------- null} - -t 2.99678 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5271 -a 0 -x {9.0 10.0 2640 ------- null} h -t 2.99678 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5271 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.99686 -s 0 -d 9 -p ack -e 40 -c 0 -i 5274 -a 0 -x {10.0 9.0 2632 ------- null} + -t 2.99686 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5285 -a 0 -x {9.0 10.0 2647 ------- null} - -t 2.99686 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5285 -a 0 -x {9.0 10.0 2647 ------- null} h -t 2.99686 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5285 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.99704 -s 10 -d 7 -p ack -e 40 -c 0 -i 5282 -a 0 -x {10.0 9.0 2636 ------- null} + -t 2.99704 -s 7 -d 0 -p ack -e 40 -c 0 -i 5282 -a 0 -x {10.0 9.0 2636 ------- null} h -t 2.99704 -s 7 -d 8 -p ack -e 40 -c 0 -i 5282 -a 0 -x {10.0 9.0 2636 ------- null} + -t 2.99706 -s 0 -d 9 -p ack -e 40 -c 0 -i 5278 -a 0 -x {10.0 9.0 2634 ------- null} - -t 2.99706 -s 0 -d 9 -p ack -e 40 -c 0 -i 5278 -a 0 -x {10.0 9.0 2634 ------- null} h -t 2.99706 -s 0 -d 9 -p ack -e 40 -c 0 -i 5278 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.99733 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5267 -a 0 -x {9.0 10.0 2638 ------- null} + -t 2.99733 -s 10 -d 7 -p ack -e 40 -c 0 -i 5286 -a 0 -x {10.0 9.0 2638 ------- null} - -t 2.99733 -s 10 -d 7 -p ack -e 40 -c 0 -i 5286 -a 0 -x {10.0 9.0 2638 ------- null} h -t 2.99733 -s 10 -d 7 -p ack -e 40 -c 0 -i 5286 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.99734 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5281 -a 0 -x {9.0 10.0 2645 ------- null} + -t 2.99734 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5281 -a 0 -x {9.0 10.0 2645 ------- null} h -t 2.99734 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5281 -a 0 -x {9.0 10.0 2645 ------- null} r -t 2.99795 -s 0 -d 9 -p ack -e 40 -c 0 -i 5276 -a 0 -x {10.0 9.0 2633 ------- null} + -t 2.99795 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5287 -a 0 -x {9.0 10.0 2648 ------- null} - -t 2.99795 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5287 -a 0 -x {9.0 10.0 2648 ------- null} h -t 2.99795 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5287 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.99811 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5273 -a 0 -x {9.0 10.0 2641 ------- null} - -t 2.99811 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5273 -a 0 -x {9.0 10.0 2641 ------- null} h -t 2.99811 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5273 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.99822 -s 0 -d 9 -p ack -e 40 -c 0 -i 5280 -a 0 -x {10.0 9.0 2635 ------- null} - -t 2.99822 -s 0 -d 9 -p ack -e 40 -c 0 -i 5280 -a 0 -x {10.0 9.0 2635 ------- null} h -t 2.99822 -s 0 -d 9 -p ack -e 40 -c 0 -i 5280 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.99827 -s 10 -d 7 -p ack -e 40 -c 0 -i 5284 -a 0 -x {10.0 9.0 2637 ------- null} + -t 2.99827 -s 7 -d 0 -p ack -e 40 -c 0 -i 5284 -a 0 -x {10.0 9.0 2637 ------- null} h -t 2.99827 -s 7 -d 8 -p ack -e 40 -c 0 -i 5284 -a 0 -x {10.0 9.0 2637 ------- null} r -t 2.9985 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5269 -a 0 -x {9.0 10.0 2639 ------- null} + -t 2.9985 -s 10 -d 7 -p ack -e 40 -c 0 -i 5288 -a 0 -x {10.0 9.0 2639 ------- null} - -t 2.9985 -s 10 -d 7 -p ack -e 40 -c 0 -i 5288 -a 0 -x {10.0 9.0 2639 ------- null} h -t 2.9985 -s 10 -d 7 -p ack -e 40 -c 0 -i 5288 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.99851 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5283 -a 0 -x {9.0 10.0 2646 ------- null} + -t 2.99851 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5283 -a 0 -x {9.0 10.0 2646 ------- null} h -t 2.99851 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5283 -a 0 -x {9.0 10.0 2646 ------- null} r -t 2.99909 -s 0 -d 9 -p ack -e 40 -c 0 -i 5278 -a 0 -x {10.0 9.0 2634 ------- null} + -t 2.99909 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5289 -a 0 -x {9.0 10.0 2649 ------- null} - -t 2.99909 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5289 -a 0 -x {9.0 10.0 2649 ------- null} h -t 2.99909 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5289 -a 0 -x {9.0 10.0 -1 ------- null} + -t 2.9992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5275 -a 0 -x {9.0 10.0 2642 ------- null} - -t 2.9992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5275 -a 0 -x {9.0 10.0 2642 ------- null} h -t 2.9992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5275 -a 0 -x {9.0 10.0 -1 ------- null} r -t 2.99936 -s 10 -d 7 -p ack -e 40 -c 0 -i 5286 -a 0 -x {10.0 9.0 2638 ------- null} + -t 2.99936 -s 7 -d 0 -p ack -e 40 -c 0 -i 5286 -a 0 -x {10.0 9.0 2638 ------- null} h -t 2.99936 -s 7 -d 8 -p ack -e 40 -c 0 -i 5286 -a 0 -x {10.0 9.0 2638 ------- null} + -t 2.99944 -s 0 -d 9 -p ack -e 40 -c 0 -i 5282 -a 0 -x {10.0 9.0 2636 ------- null} - -t 2.99944 -s 0 -d 9 -p ack -e 40 -c 0 -i 5282 -a 0 -x {10.0 9.0 2636 ------- null} h -t 2.99944 -s 0 -d 9 -p ack -e 40 -c 0 -i 5282 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.99958 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5271 -a 0 -x {9.0 10.0 2640 ------- null} + -t 2.99958 -s 10 -d 7 -p ack -e 40 -c 0 -i 5290 -a 0 -x {10.0 9.0 2640 ------- null} - -t 2.99958 -s 10 -d 7 -p ack -e 40 -c 0 -i 5290 -a 0 -x {10.0 9.0 2640 ------- null} h -t 2.99958 -s 10 -d 7 -p ack -e 40 -c 0 -i 5290 -a 0 -x {10.0 9.0 -1 ------- null} r -t 2.99966 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5285 -a 0 -x {9.0 10.0 2647 ------- null} + -t 2.99966 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5285 -a 0 -x {9.0 10.0 2647 ------- null} h -t 2.99966 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5285 -a 0 -x {9.0 10.0 2647 ------- null} r -t 3.00026 -s 0 -d 9 -p ack -e 40 -c 0 -i 5280 -a 0 -x {10.0 9.0 2635 ------- null} + -t 3.00026 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5291 -a 0 -x {9.0 10.0 2650 ------- null} - -t 3.00026 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5291 -a 0 -x {9.0 10.0 2650 ------- null} h -t 3.00026 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5291 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.00029 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5277 -a 0 -x {9.0 10.0 2643 ------- null} - -t 3.00029 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5277 -a 0 -x {9.0 10.0 2643 ------- null} h -t 3.00029 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5277 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.00053 -s 10 -d 7 -p ack -e 40 -c 0 -i 5288 -a 0 -x {10.0 9.0 2639 ------- null} + -t 3.00053 -s 7 -d 0 -p ack -e 40 -c 0 -i 5288 -a 0 -x {10.0 9.0 2639 ------- null} h -t 3.00053 -s 7 -d 8 -p ack -e 40 -c 0 -i 5288 -a 0 -x {10.0 9.0 2639 ------- null} + -t 3.00054 -s 0 -d 9 -p ack -e 40 -c 0 -i 5284 -a 0 -x {10.0 9.0 2637 ------- null} - -t 3.00054 -s 0 -d 9 -p ack -e 40 -c 0 -i 5284 -a 0 -x {10.0 9.0 2637 ------- null} h -t 3.00054 -s 0 -d 9 -p ack -e 40 -c 0 -i 5284 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.00075 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5287 -a 0 -x {9.0 10.0 2648 ------- null} + -t 3.00075 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5287 -a 0 -x {9.0 10.0 2648 ------- null} h -t 3.00075 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5287 -a 0 -x {9.0 10.0 2648 ------- null} r -t 3.00091 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5273 -a 0 -x {9.0 10.0 2641 ------- null} + -t 3.00091 -s 10 -d 7 -p ack -e 40 -c 0 -i 5292 -a 0 -x {10.0 9.0 2641 ------- null} - -t 3.00091 -s 10 -d 7 -p ack -e 40 -c 0 -i 5292 -a 0 -x {10.0 9.0 2641 ------- null} h -t 3.00091 -s 10 -d 7 -p ack -e 40 -c 0 -i 5292 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.00138 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5279 -a 0 -x {9.0 10.0 2644 ------- null} - -t 3.00138 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5279 -a 0 -x {9.0 10.0 2644 ------- null} h -t 3.00138 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5279 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.00147 -s 0 -d 9 -p ack -e 40 -c 0 -i 5282 -a 0 -x {10.0 9.0 2636 ------- null} + -t 3.00147 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5293 -a 0 -x {9.0 10.0 2651 ------- null} - -t 3.00147 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5293 -a 0 -x {9.0 10.0 2651 ------- null} h -t 3.00147 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5293 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.00158 -s 0 -d 9 -p ack -e 40 -c 0 -i 5286 -a 0 -x {10.0 9.0 2638 ------- null} - -t 3.00158 -s 0 -d 9 -p ack -e 40 -c 0 -i 5286 -a 0 -x {10.0 9.0 2638 ------- null} h -t 3.00158 -s 0 -d 9 -p ack -e 40 -c 0 -i 5286 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.00162 -s 10 -d 7 -p ack -e 40 -c 0 -i 5290 -a 0 -x {10.0 9.0 2640 ------- null} + -t 3.00162 -s 7 -d 0 -p ack -e 40 -c 0 -i 5290 -a 0 -x {10.0 9.0 2640 ------- null} h -t 3.00162 -s 7 -d 8 -p ack -e 40 -c 0 -i 5290 -a 0 -x {10.0 9.0 2640 ------- null} r -t 3.00189 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5289 -a 0 -x {9.0 10.0 2649 ------- null} + -t 3.00189 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5289 -a 0 -x {9.0 10.0 2649 ------- null} h -t 3.00189 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5289 -a 0 -x {9.0 10.0 2649 ------- null} r -t 3.002 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5275 -a 0 -x {9.0 10.0 2642 ------- null} + -t 3.002 -s 10 -d 7 -p ack -e 40 -c 0 -i 5294 -a 0 -x {10.0 9.0 2642 ------- null} - -t 3.002 -s 10 -d 7 -p ack -e 40 -c 0 -i 5294 -a 0 -x {10.0 9.0 2642 ------- null} h -t 3.002 -s 10 -d 7 -p ack -e 40 -c 0 -i 5294 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.00246 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5281 -a 0 -x {9.0 10.0 2645 ------- null} - -t 3.00246 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5281 -a 0 -x {9.0 10.0 2645 ------- null} h -t 3.00246 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5281 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.00254 -s 0 -d 9 -p ack -e 40 -c 0 -i 5288 -a 0 -x {10.0 9.0 2639 ------- null} - -t 3.00254 -s 0 -d 9 -p ack -e 40 -c 0 -i 5288 -a 0 -x {10.0 9.0 2639 ------- null} h -t 3.00254 -s 0 -d 9 -p ack -e 40 -c 0 -i 5288 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.00258 -s 0 -d 9 -p ack -e 40 -c 0 -i 5284 -a 0 -x {10.0 9.0 2637 ------- null} + -t 3.00258 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5295 -a 0 -x {9.0 10.0 2652 ------- null} - -t 3.00258 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5295 -a 0 -x {9.0 10.0 2652 ------- null} h -t 3.00258 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5295 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.00294 -s 10 -d 7 -p ack -e 40 -c 0 -i 5292 -a 0 -x {10.0 9.0 2641 ------- null} + -t 3.00294 -s 7 -d 0 -p ack -e 40 -c 0 -i 5292 -a 0 -x {10.0 9.0 2641 ------- null} h -t 3.00294 -s 7 -d 8 -p ack -e 40 -c 0 -i 5292 -a 0 -x {10.0 9.0 2641 ------- null} r -t 3.00306 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5291 -a 0 -x {9.0 10.0 2650 ------- null} + -t 3.00306 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5291 -a 0 -x {9.0 10.0 2650 ------- null} h -t 3.00306 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5291 -a 0 -x {9.0 10.0 2650 ------- null} r -t 3.00309 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5277 -a 0 -x {9.0 10.0 2643 ------- null} + -t 3.00309 -s 10 -d 7 -p ack -e 40 -c 0 -i 5296 -a 0 -x {10.0 9.0 2643 ------- null} - -t 3.00309 -s 10 -d 7 -p ack -e 40 -c 0 -i 5296 -a 0 -x {10.0 9.0 2643 ------- null} h -t 3.00309 -s 10 -d 7 -p ack -e 40 -c 0 -i 5296 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.00355 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5283 -a 0 -x {9.0 10.0 2646 ------- null} - -t 3.00355 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5283 -a 0 -x {9.0 10.0 2646 ------- null} h -t 3.00355 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5283 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.00362 -s 0 -d 9 -p ack -e 40 -c 0 -i 5286 -a 0 -x {10.0 9.0 2638 ------- null} + -t 3.00362 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5297 -a 0 -x {9.0 10.0 2653 ------- null} - -t 3.00362 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5297 -a 0 -x {9.0 10.0 2653 ------- null} h -t 3.00362 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5297 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.00368 -s 0 -d 9 -p ack -e 40 -c 0 -i 5290 -a 0 -x {10.0 9.0 2640 ------- null} - -t 3.00368 -s 0 -d 9 -p ack -e 40 -c 0 -i 5290 -a 0 -x {10.0 9.0 2640 ------- null} h -t 3.00368 -s 0 -d 9 -p ack -e 40 -c 0 -i 5290 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.00403 -s 10 -d 7 -p ack -e 40 -c 0 -i 5294 -a 0 -x {10.0 9.0 2642 ------- null} + -t 3.00403 -s 7 -d 0 -p ack -e 40 -c 0 -i 5294 -a 0 -x {10.0 9.0 2642 ------- null} h -t 3.00403 -s 7 -d 8 -p ack -e 40 -c 0 -i 5294 -a 0 -x {10.0 9.0 2642 ------- null} r -t 3.00418 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5279 -a 0 -x {9.0 10.0 2644 ------- null} + -t 3.00418 -s 10 -d 7 -p ack -e 40 -c 0 -i 5298 -a 0 -x {10.0 9.0 2644 ------- null} - -t 3.00418 -s 10 -d 7 -p ack -e 40 -c 0 -i 5298 -a 0 -x {10.0 9.0 2644 ------- null} h -t 3.00418 -s 10 -d 7 -p ack -e 40 -c 0 -i 5298 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.00427 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5293 -a 0 -x {9.0 10.0 2651 ------- null} + -t 3.00427 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5293 -a 0 -x {9.0 10.0 2651 ------- null} h -t 3.00427 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5293 -a 0 -x {9.0 10.0 2651 ------- null} r -t 3.00458 -s 0 -d 9 -p ack -e 40 -c 0 -i 5288 -a 0 -x {10.0 9.0 2639 ------- null} + -t 3.00458 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5299 -a 0 -x {9.0 10.0 2654 ------- null} - -t 3.00458 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5299 -a 0 -x {9.0 10.0 2654 ------- null} h -t 3.00458 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5299 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.00464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5285 -a 0 -x {9.0 10.0 2647 ------- null} - -t 3.00464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5285 -a 0 -x {9.0 10.0 2647 ------- null} h -t 3.00464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5285 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.00488 -s 0 -d 9 -p ack -e 40 -c 0 -i 5292 -a 0 -x {10.0 9.0 2641 ------- null} - -t 3.00488 -s 0 -d 9 -p ack -e 40 -c 0 -i 5292 -a 0 -x {10.0 9.0 2641 ------- null} h -t 3.00488 -s 0 -d 9 -p ack -e 40 -c 0 -i 5292 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.00512 -s 10 -d 7 -p ack -e 40 -c 0 -i 5296 -a 0 -x {10.0 9.0 2643 ------- null} + -t 3.00512 -s 7 -d 0 -p ack -e 40 -c 0 -i 5296 -a 0 -x {10.0 9.0 2643 ------- null} h -t 3.00512 -s 7 -d 8 -p ack -e 40 -c 0 -i 5296 -a 0 -x {10.0 9.0 2643 ------- null} r -t 3.00526 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5281 -a 0 -x {9.0 10.0 2645 ------- null} + -t 3.00526 -s 10 -d 7 -p ack -e 40 -c 0 -i 5300 -a 0 -x {10.0 9.0 2645 ------- null} - -t 3.00526 -s 10 -d 7 -p ack -e 40 -c 0 -i 5300 -a 0 -x {10.0 9.0 2645 ------- null} h -t 3.00526 -s 10 -d 7 -p ack -e 40 -c 0 -i 5300 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.00538 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5295 -a 0 -x {9.0 10.0 2652 ------- null} + -t 3.00538 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5295 -a 0 -x {9.0 10.0 2652 ------- null} h -t 3.00538 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5295 -a 0 -x {9.0 10.0 2652 ------- null} r -t 3.00571 -s 0 -d 9 -p ack -e 40 -c 0 -i 5290 -a 0 -x {10.0 9.0 2640 ------- null} + -t 3.00571 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5301 -a 0 -x {9.0 10.0 2655 ------- null} - -t 3.00571 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5301 -a 0 -x {9.0 10.0 2655 ------- null} h -t 3.00571 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5301 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.00573 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5287 -a 0 -x {9.0 10.0 2648 ------- null} - -t 3.00573 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5287 -a 0 -x {9.0 10.0 2648 ------- null} h -t 3.00573 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5287 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.00587 -s 0 -d 9 -p ack -e 40 -c 0 -i 5294 -a 0 -x {10.0 9.0 2642 ------- null} - -t 3.00587 -s 0 -d 9 -p ack -e 40 -c 0 -i 5294 -a 0 -x {10.0 9.0 2642 ------- null} h -t 3.00587 -s 0 -d 9 -p ack -e 40 -c 0 -i 5294 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.00621 -s 10 -d 7 -p ack -e 40 -c 0 -i 5298 -a 0 -x {10.0 9.0 2644 ------- null} + -t 3.00621 -s 7 -d 0 -p ack -e 40 -c 0 -i 5298 -a 0 -x {10.0 9.0 2644 ------- null} h -t 3.00621 -s 7 -d 8 -p ack -e 40 -c 0 -i 5298 -a 0 -x {10.0 9.0 2644 ------- null} r -t 3.00635 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5283 -a 0 -x {9.0 10.0 2646 ------- null} + -t 3.00635 -s 10 -d 7 -p ack -e 40 -c 0 -i 5302 -a 0 -x {10.0 9.0 2646 ------- null} - -t 3.00635 -s 10 -d 7 -p ack -e 40 -c 0 -i 5302 -a 0 -x {10.0 9.0 2646 ------- null} h -t 3.00635 -s 10 -d 7 -p ack -e 40 -c 0 -i 5302 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.00642 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5297 -a 0 -x {9.0 10.0 2653 ------- null} + -t 3.00642 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5297 -a 0 -x {9.0 10.0 2653 ------- null} h -t 3.00642 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5297 -a 0 -x {9.0 10.0 2653 ------- null} + -t 3.00682 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5289 -a 0 -x {9.0 10.0 2649 ------- null} - -t 3.00682 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5289 -a 0 -x {9.0 10.0 2649 ------- null} h -t 3.00682 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5289 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.00691 -s 0 -d 9 -p ack -e 40 -c 0 -i 5292 -a 0 -x {10.0 9.0 2641 ------- null} + -t 3.00691 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5303 -a 0 -x {9.0 10.0 2656 ------- null} - -t 3.00691 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5303 -a 0 -x {9.0 10.0 2656 ------- null} h -t 3.00691 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5303 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.00702 -s 0 -d 9 -p ack -e 40 -c 0 -i 5296 -a 0 -x {10.0 9.0 2643 ------- null} - -t 3.00702 -s 0 -d 9 -p ack -e 40 -c 0 -i 5296 -a 0 -x {10.0 9.0 2643 ------- null} h -t 3.00702 -s 0 -d 9 -p ack -e 40 -c 0 -i 5296 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.0073 -s 10 -d 7 -p ack -e 40 -c 0 -i 5300 -a 0 -x {10.0 9.0 2645 ------- null} + -t 3.0073 -s 7 -d 0 -p ack -e 40 -c 0 -i 5300 -a 0 -x {10.0 9.0 2645 ------- null} h -t 3.0073 -s 7 -d 8 -p ack -e 40 -c 0 -i 5300 -a 0 -x {10.0 9.0 2645 ------- null} r -t 3.00738 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5299 -a 0 -x {9.0 10.0 2654 ------- null} + -t 3.00738 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5299 -a 0 -x {9.0 10.0 2654 ------- null} h -t 3.00738 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5299 -a 0 -x {9.0 10.0 2654 ------- null} r -t 3.00744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5285 -a 0 -x {9.0 10.0 2647 ------- null} + -t 3.00744 -s 10 -d 7 -p ack -e 40 -c 0 -i 5304 -a 0 -x {10.0 9.0 2647 ------- null} - -t 3.00744 -s 10 -d 7 -p ack -e 40 -c 0 -i 5304 -a 0 -x {10.0 9.0 2647 ------- null} h -t 3.00744 -s 10 -d 7 -p ack -e 40 -c 0 -i 5304 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.0079 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5291 -a 0 -x {9.0 10.0 2650 ------- null} - -t 3.0079 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5291 -a 0 -x {9.0 10.0 2650 ------- null} h -t 3.0079 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5291 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.0079 -s 0 -d 9 -p ack -e 40 -c 0 -i 5294 -a 0 -x {10.0 9.0 2642 ------- null} + -t 3.0079 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5305 -a 0 -x {9.0 10.0 2657 ------- null} - -t 3.0079 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5305 -a 0 -x {9.0 10.0 2657 ------- null} h -t 3.0079 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5305 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.00821 -s 0 -d 9 -p ack -e 40 -c 0 -i 5298 -a 0 -x {10.0 9.0 2644 ------- null} - -t 3.00821 -s 0 -d 9 -p ack -e 40 -c 0 -i 5298 -a 0 -x {10.0 9.0 2644 ------- null} h -t 3.00821 -s 0 -d 9 -p ack -e 40 -c 0 -i 5298 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.00838 -s 10 -d 7 -p ack -e 40 -c 0 -i 5302 -a 0 -x {10.0 9.0 2646 ------- null} + -t 3.00838 -s 7 -d 0 -p ack -e 40 -c 0 -i 5302 -a 0 -x {10.0 9.0 2646 ------- null} h -t 3.00838 -s 7 -d 8 -p ack -e 40 -c 0 -i 5302 -a 0 -x {10.0 9.0 2646 ------- null} r -t 3.00851 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5301 -a 0 -x {9.0 10.0 2655 ------- null} + -t 3.00851 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5301 -a 0 -x {9.0 10.0 2655 ------- null} h -t 3.00851 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5301 -a 0 -x {9.0 10.0 2655 ------- null} r -t 3.00853 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5287 -a 0 -x {9.0 10.0 2648 ------- null} + -t 3.00853 -s 10 -d 7 -p ack -e 40 -c 0 -i 5306 -a 0 -x {10.0 9.0 2648 ------- null} - -t 3.00853 -s 10 -d 7 -p ack -e 40 -c 0 -i 5306 -a 0 -x {10.0 9.0 2648 ------- null} h -t 3.00853 -s 10 -d 7 -p ack -e 40 -c 0 -i 5306 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.00906 -s 0 -d 9 -p ack -e 40 -c 0 -i 5296 -a 0 -x {10.0 9.0 2643 ------- null} + -t 3.00906 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5307 -a 0 -x {9.0 10.0 2658 ------- null} - -t 3.00906 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5307 -a 0 -x {9.0 10.0 2658 ------- null} h -t 3.00906 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5307 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.0092 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5293 -a 0 -x {9.0 10.0 2651 ------- null} - -t 3.0092 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5293 -a 0 -x {9.0 10.0 2651 ------- null} h -t 3.0092 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5293 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.00942 -s 0 -d 9 -p ack -e 40 -c 0 -i 5300 -a 0 -x {10.0 9.0 2645 ------- null} - -t 3.00942 -s 0 -d 9 -p ack -e 40 -c 0 -i 5300 -a 0 -x {10.0 9.0 2645 ------- null} h -t 3.00942 -s 0 -d 9 -p ack -e 40 -c 0 -i 5300 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.00947 -s 10 -d 7 -p ack -e 40 -c 0 -i 5304 -a 0 -x {10.0 9.0 2647 ------- null} + -t 3.00947 -s 7 -d 0 -p ack -e 40 -c 0 -i 5304 -a 0 -x {10.0 9.0 2647 ------- null} h -t 3.00947 -s 7 -d 8 -p ack -e 40 -c 0 -i 5304 -a 0 -x {10.0 9.0 2647 ------- null} r -t 3.00962 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5289 -a 0 -x {9.0 10.0 2649 ------- null} + -t 3.00962 -s 10 -d 7 -p ack -e 40 -c 0 -i 5308 -a 0 -x {10.0 9.0 2649 ------- null} - -t 3.00962 -s 10 -d 7 -p ack -e 40 -c 0 -i 5308 -a 0 -x {10.0 9.0 2649 ------- null} h -t 3.00962 -s 10 -d 7 -p ack -e 40 -c 0 -i 5308 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.00971 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5303 -a 0 -x {9.0 10.0 2656 ------- null} + -t 3.00971 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5303 -a 0 -x {9.0 10.0 2656 ------- null} h -t 3.00971 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5303 -a 0 -x {9.0 10.0 2656 ------- null} r -t 3.01024 -s 0 -d 9 -p ack -e 40 -c 0 -i 5298 -a 0 -x {10.0 9.0 2644 ------- null} + -t 3.01024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5309 -a 0 -x {9.0 10.0 2659 ------- null} - -t 3.01024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5309 -a 0 -x {9.0 10.0 2659 ------- null} h -t 3.01024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5309 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.01029 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5295 -a 0 -x {9.0 10.0 2652 ------- null} - -t 3.01029 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5295 -a 0 -x {9.0 10.0 2652 ------- null} h -t 3.01029 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5295 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.0104 -s 0 -d 9 -p ack -e 40 -c 0 -i 5302 -a 0 -x {10.0 9.0 2646 ------- null} - -t 3.0104 -s 0 -d 9 -p ack -e 40 -c 0 -i 5302 -a 0 -x {10.0 9.0 2646 ------- null} h -t 3.0104 -s 0 -d 9 -p ack -e 40 -c 0 -i 5302 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.01056 -s 10 -d 7 -p ack -e 40 -c 0 -i 5306 -a 0 -x {10.0 9.0 2648 ------- null} + -t 3.01056 -s 7 -d 0 -p ack -e 40 -c 0 -i 5306 -a 0 -x {10.0 9.0 2648 ------- null} h -t 3.01056 -s 7 -d 8 -p ack -e 40 -c 0 -i 5306 -a 0 -x {10.0 9.0 2648 ------- null} r -t 3.0107 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5291 -a 0 -x {9.0 10.0 2650 ------- null} + -t 3.0107 -s 10 -d 7 -p ack -e 40 -c 0 -i 5310 -a 0 -x {10.0 9.0 2650 ------- null} - -t 3.0107 -s 10 -d 7 -p ack -e 40 -c 0 -i 5310 -a 0 -x {10.0 9.0 2650 ------- null} h -t 3.0107 -s 10 -d 7 -p ack -e 40 -c 0 -i 5310 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.0107 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5305 -a 0 -x {9.0 10.0 2657 ------- null} + -t 3.0107 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5305 -a 0 -x {9.0 10.0 2657 ------- null} h -t 3.0107 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5305 -a 0 -x {9.0 10.0 2657 ------- null} + -t 3.01138 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5297 -a 0 -x {9.0 10.0 2653 ------- null} - -t 3.01138 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5297 -a 0 -x {9.0 10.0 2653 ------- null} h -t 3.01138 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5297 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.01146 -s 0 -d 9 -p ack -e 40 -c 0 -i 5300 -a 0 -x {10.0 9.0 2645 ------- null} + -t 3.01146 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5311 -a 0 -x {9.0 10.0 2660 ------- null} - -t 3.01146 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5311 -a 0 -x {9.0 10.0 2660 ------- null} h -t 3.01146 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5311 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.01165 -s 10 -d 7 -p ack -e 40 -c 0 -i 5308 -a 0 -x {10.0 9.0 2649 ------- null} + -t 3.01165 -s 7 -d 0 -p ack -e 40 -c 0 -i 5308 -a 0 -x {10.0 9.0 2649 ------- null} h -t 3.01165 -s 7 -d 8 -p ack -e 40 -c 0 -i 5308 -a 0 -x {10.0 9.0 2649 ------- null} + -t 3.01168 -s 0 -d 9 -p ack -e 40 -c 0 -i 5304 -a 0 -x {10.0 9.0 2647 ------- null} - -t 3.01168 -s 0 -d 9 -p ack -e 40 -c 0 -i 5304 -a 0 -x {10.0 9.0 2647 ------- null} h -t 3.01168 -s 0 -d 9 -p ack -e 40 -c 0 -i 5304 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.01186 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5307 -a 0 -x {9.0 10.0 2658 ------- null} + -t 3.01186 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5307 -a 0 -x {9.0 10.0 2658 ------- null} h -t 3.01186 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5307 -a 0 -x {9.0 10.0 2658 ------- null} r -t 3.012 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5293 -a 0 -x {9.0 10.0 2651 ------- null} + -t 3.012 -s 10 -d 7 -p ack -e 40 -c 0 -i 5312 -a 0 -x {10.0 9.0 2651 ------- null} - -t 3.012 -s 10 -d 7 -p ack -e 40 -c 0 -i 5312 -a 0 -x {10.0 9.0 2651 ------- null} h -t 3.012 -s 10 -d 7 -p ack -e 40 -c 0 -i 5312 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.01243 -s 0 -d 9 -p ack -e 40 -c 0 -i 5302 -a 0 -x {10.0 9.0 2646 ------- null} + -t 3.01243 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5313 -a 0 -x {9.0 10.0 2661 ------- null} - -t 3.01243 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5313 -a 0 -x {9.0 10.0 2661 ------- null} h -t 3.01243 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5313 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.01266 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5299 -a 0 -x {9.0 10.0 2654 ------- null} - -t 3.01266 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5299 -a 0 -x {9.0 10.0 2654 ------- null} h -t 3.01266 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5299 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.01274 -s 10 -d 7 -p ack -e 40 -c 0 -i 5310 -a 0 -x {10.0 9.0 2650 ------- null} + -t 3.01274 -s 7 -d 0 -p ack -e 40 -c 0 -i 5310 -a 0 -x {10.0 9.0 2650 ------- null} h -t 3.01274 -s 7 -d 8 -p ack -e 40 -c 0 -i 5310 -a 0 -x {10.0 9.0 2650 ------- null} + -t 3.01285 -s 0 -d 9 -p ack -e 40 -c 0 -i 5306 -a 0 -x {10.0 9.0 2648 ------- null} - -t 3.01285 -s 0 -d 9 -p ack -e 40 -c 0 -i 5306 -a 0 -x {10.0 9.0 2648 ------- null} h -t 3.01285 -s 0 -d 9 -p ack -e 40 -c 0 -i 5306 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.01304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5309 -a 0 -x {9.0 10.0 2659 ------- null} + -t 3.01304 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5309 -a 0 -x {9.0 10.0 2659 ------- null} h -t 3.01304 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5309 -a 0 -x {9.0 10.0 2659 ------- null} r -t 3.01309 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5295 -a 0 -x {9.0 10.0 2652 ------- null} + -t 3.01309 -s 10 -d 7 -p ack -e 40 -c 0 -i 5314 -a 0 -x {10.0 9.0 2652 ------- null} - -t 3.01309 -s 10 -d 7 -p ack -e 40 -c 0 -i 5314 -a 0 -x {10.0 9.0 2652 ------- null} h -t 3.01309 -s 10 -d 7 -p ack -e 40 -c 0 -i 5314 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.01371 -s 0 -d 9 -p ack -e 40 -c 0 -i 5304 -a 0 -x {10.0 9.0 2647 ------- null} + -t 3.01371 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5315 -a 0 -x {9.0 10.0 2662 ------- null} - -t 3.01371 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5315 -a 0 -x {9.0 10.0 2662 ------- null} h -t 3.01371 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5315 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.01374 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5301 -a 0 -x {9.0 10.0 2655 ------- null} - -t 3.01374 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5301 -a 0 -x {9.0 10.0 2655 ------- null} h -t 3.01374 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5301 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.01397 -s 0 -d 9 -p ack -e 40 -c 0 -i 5308 -a 0 -x {10.0 9.0 2649 ------- null} - -t 3.01397 -s 0 -d 9 -p ack -e 40 -c 0 -i 5308 -a 0 -x {10.0 9.0 2649 ------- null} h -t 3.01397 -s 0 -d 9 -p ack -e 40 -c 0 -i 5308 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.01403 -s 10 -d 7 -p ack -e 40 -c 0 -i 5312 -a 0 -x {10.0 9.0 2651 ------- null} + -t 3.01403 -s 7 -d 0 -p ack -e 40 -c 0 -i 5312 -a 0 -x {10.0 9.0 2651 ------- null} h -t 3.01403 -s 7 -d 8 -p ack -e 40 -c 0 -i 5312 -a 0 -x {10.0 9.0 2651 ------- null} r -t 3.01418 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5297 -a 0 -x {9.0 10.0 2653 ------- null} + -t 3.01418 -s 10 -d 7 -p ack -e 40 -c 0 -i 5316 -a 0 -x {10.0 9.0 2653 ------- null} - -t 3.01418 -s 10 -d 7 -p ack -e 40 -c 0 -i 5316 -a 0 -x {10.0 9.0 2653 ------- null} h -t 3.01418 -s 10 -d 7 -p ack -e 40 -c 0 -i 5316 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.01426 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5311 -a 0 -x {9.0 10.0 2660 ------- null} + -t 3.01426 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5311 -a 0 -x {9.0 10.0 2660 ------- null} h -t 3.01426 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5311 -a 0 -x {9.0 10.0 2660 ------- null} + -t 3.01483 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5303 -a 0 -x {9.0 10.0 2656 ------- null} - -t 3.01483 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5303 -a 0 -x {9.0 10.0 2656 ------- null} h -t 3.01483 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5303 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.01488 -s 0 -d 9 -p ack -e 40 -c 0 -i 5306 -a 0 -x {10.0 9.0 2648 ------- null} + -t 3.01488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5317 -a 0 -x {9.0 10.0 2663 ------- null} - -t 3.01488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5317 -a 0 -x {9.0 10.0 2663 ------- null} h -t 3.01488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5317 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.01512 -s 10 -d 7 -p ack -e 40 -c 0 -i 5314 -a 0 -x {10.0 9.0 2652 ------- null} + -t 3.01512 -s 7 -d 0 -p ack -e 40 -c 0 -i 5314 -a 0 -x {10.0 9.0 2652 ------- null} h -t 3.01512 -s 7 -d 8 -p ack -e 40 -c 0 -i 5314 -a 0 -x {10.0 9.0 2652 ------- null} + -t 3.01514 -s 0 -d 9 -p ack -e 40 -c 0 -i 5310 -a 0 -x {10.0 9.0 2650 ------- null} - -t 3.01514 -s 0 -d 9 -p ack -e 40 -c 0 -i 5310 -a 0 -x {10.0 9.0 2650 ------- null} h -t 3.01514 -s 0 -d 9 -p ack -e 40 -c 0 -i 5310 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.01523 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5313 -a 0 -x {9.0 10.0 2661 ------- null} + -t 3.01523 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5313 -a 0 -x {9.0 10.0 2661 ------- null} h -t 3.01523 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5313 -a 0 -x {9.0 10.0 2661 ------- null} r -t 3.01546 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5299 -a 0 -x {9.0 10.0 2654 ------- null} + -t 3.01546 -s 10 -d 7 -p ack -e 40 -c 0 -i 5318 -a 0 -x {10.0 9.0 2654 ------- null} - -t 3.01546 -s 10 -d 7 -p ack -e 40 -c 0 -i 5318 -a 0 -x {10.0 9.0 2654 ------- null} h -t 3.01546 -s 10 -d 7 -p ack -e 40 -c 0 -i 5318 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.01597 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5305 -a 0 -x {9.0 10.0 2657 ------- null} - -t 3.01597 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5305 -a 0 -x {9.0 10.0 2657 ------- null} h -t 3.01597 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5305 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.016 -s 0 -d 9 -p ack -e 40 -c 0 -i 5308 -a 0 -x {10.0 9.0 2649 ------- null} + -t 3.016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5319 -a 0 -x {9.0 10.0 2664 ------- null} - -t 3.016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5319 -a 0 -x {9.0 10.0 2664 ------- null} h -t 3.016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5319 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.01616 -s 0 -d 9 -p ack -e 40 -c 0 -i 5312 -a 0 -x {10.0 9.0 2651 ------- null} - -t 3.01616 -s 0 -d 9 -p ack -e 40 -c 0 -i 5312 -a 0 -x {10.0 9.0 2651 ------- null} h -t 3.01616 -s 0 -d 9 -p ack -e 40 -c 0 -i 5312 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.01621 -s 10 -d 7 -p ack -e 40 -c 0 -i 5316 -a 0 -x {10.0 9.0 2653 ------- null} + -t 3.01621 -s 7 -d 0 -p ack -e 40 -c 0 -i 5316 -a 0 -x {10.0 9.0 2653 ------- null} h -t 3.01621 -s 7 -d 8 -p ack -e 40 -c 0 -i 5316 -a 0 -x {10.0 9.0 2653 ------- null} r -t 3.01651 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5315 -a 0 -x {9.0 10.0 2662 ------- null} + -t 3.01651 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5315 -a 0 -x {9.0 10.0 2662 ------- null} h -t 3.01651 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5315 -a 0 -x {9.0 10.0 2662 ------- null} r -t 3.01654 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5301 -a 0 -x {9.0 10.0 2655 ------- null} + -t 3.01654 -s 10 -d 7 -p ack -e 40 -c 0 -i 5320 -a 0 -x {10.0 9.0 2655 ------- null} - -t 3.01654 -s 10 -d 7 -p ack -e 40 -c 0 -i 5320 -a 0 -x {10.0 9.0 2655 ------- null} h -t 3.01654 -s 10 -d 7 -p ack -e 40 -c 0 -i 5320 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.01706 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5307 -a 0 -x {9.0 10.0 2658 ------- null} - -t 3.01706 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5307 -a 0 -x {9.0 10.0 2658 ------- null} h -t 3.01706 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5307 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.01717 -s 0 -d 9 -p ack -e 40 -c 0 -i 5310 -a 0 -x {10.0 9.0 2650 ------- null} + -t 3.01717 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5321 -a 0 -x {9.0 10.0 2665 ------- null} - -t 3.01717 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5321 -a 0 -x {9.0 10.0 2665 ------- null} h -t 3.01717 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5321 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.0172 -s 0 -d 9 -p ack -e 40 -c 0 -i 5314 -a 0 -x {10.0 9.0 2652 ------- null} - -t 3.0172 -s 0 -d 9 -p ack -e 40 -c 0 -i 5314 -a 0 -x {10.0 9.0 2652 ------- null} h -t 3.0172 -s 0 -d 9 -p ack -e 40 -c 0 -i 5314 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.01749 -s 10 -d 7 -p ack -e 40 -c 0 -i 5318 -a 0 -x {10.0 9.0 2654 ------- null} + -t 3.01749 -s 7 -d 0 -p ack -e 40 -c 0 -i 5318 -a 0 -x {10.0 9.0 2654 ------- null} h -t 3.01749 -s 7 -d 8 -p ack -e 40 -c 0 -i 5318 -a 0 -x {10.0 9.0 2654 ------- null} r -t 3.01763 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5303 -a 0 -x {9.0 10.0 2656 ------- null} + -t 3.01763 -s 10 -d 7 -p ack -e 40 -c 0 -i 5322 -a 0 -x {10.0 9.0 2656 ------- null} - -t 3.01763 -s 10 -d 7 -p ack -e 40 -c 0 -i 5322 -a 0 -x {10.0 9.0 2656 ------- null} h -t 3.01763 -s 10 -d 7 -p ack -e 40 -c 0 -i 5322 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.01768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5317 -a 0 -x {9.0 10.0 2663 ------- null} + -t 3.01768 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5317 -a 0 -x {9.0 10.0 2663 ------- null} h -t 3.01768 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5317 -a 0 -x {9.0 10.0 2663 ------- null} + -t 3.01814 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5309 -a 0 -x {9.0 10.0 2659 ------- null} - -t 3.01814 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5309 -a 0 -x {9.0 10.0 2659 ------- null} h -t 3.01814 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5309 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.01819 -s 0 -d 9 -p ack -e 40 -c 0 -i 5312 -a 0 -x {10.0 9.0 2651 ------- null} + -t 3.01819 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5323 -a 0 -x {9.0 10.0 2666 ------- null} - -t 3.01819 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5323 -a 0 -x {9.0 10.0 2666 ------- null} h -t 3.01819 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5323 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.01824 -s 0 -d 9 -p ack -e 40 -c 0 -i 5316 -a 0 -x {10.0 9.0 2653 ------- null} - -t 3.01824 -s 0 -d 9 -p ack -e 40 -c 0 -i 5316 -a 0 -x {10.0 9.0 2653 ------- null} h -t 3.01824 -s 0 -d 9 -p ack -e 40 -c 0 -i 5316 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.01858 -s 10 -d 7 -p ack -e 40 -c 0 -i 5320 -a 0 -x {10.0 9.0 2655 ------- null} + -t 3.01858 -s 7 -d 0 -p ack -e 40 -c 0 -i 5320 -a 0 -x {10.0 9.0 2655 ------- null} h -t 3.01858 -s 7 -d 8 -p ack -e 40 -c 0 -i 5320 -a 0 -x {10.0 9.0 2655 ------- null} r -t 3.01877 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5305 -a 0 -x {9.0 10.0 2657 ------- null} + -t 3.01877 -s 10 -d 7 -p ack -e 40 -c 0 -i 5324 -a 0 -x {10.0 9.0 2657 ------- null} - -t 3.01877 -s 10 -d 7 -p ack -e 40 -c 0 -i 5324 -a 0 -x {10.0 9.0 2657 ------- null} h -t 3.01877 -s 10 -d 7 -p ack -e 40 -c 0 -i 5324 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.0188 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5319 -a 0 -x {9.0 10.0 2664 ------- null} + -t 3.0188 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5319 -a 0 -x {9.0 10.0 2664 ------- null} h -t 3.0188 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5319 -a 0 -x {9.0 10.0 2664 ------- null} + -t 3.01923 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5311 -a 0 -x {9.0 10.0 2660 ------- null} - -t 3.01923 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5311 -a 0 -x {9.0 10.0 2660 ------- null} h -t 3.01923 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5311 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.01923 -s 0 -d 9 -p ack -e 40 -c 0 -i 5314 -a 0 -x {10.0 9.0 2652 ------- null} + -t 3.01923 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5325 -a 0 -x {9.0 10.0 2667 ------- null} - -t 3.01923 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5325 -a 0 -x {9.0 10.0 2667 ------- null} h -t 3.01923 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5325 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.0195 -s 0 -d 9 -p ack -e 40 -c 0 -i 5318 -a 0 -x {10.0 9.0 2654 ------- null} - -t 3.0195 -s 0 -d 9 -p ack -e 40 -c 0 -i 5318 -a 0 -x {10.0 9.0 2654 ------- null} h -t 3.0195 -s 0 -d 9 -p ack -e 40 -c 0 -i 5318 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.01966 -s 10 -d 7 -p ack -e 40 -c 0 -i 5322 -a 0 -x {10.0 9.0 2656 ------- null} + -t 3.01966 -s 7 -d 0 -p ack -e 40 -c 0 -i 5322 -a 0 -x {10.0 9.0 2656 ------- null} h -t 3.01966 -s 7 -d 8 -p ack -e 40 -c 0 -i 5322 -a 0 -x {10.0 9.0 2656 ------- null} r -t 3.01986 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5307 -a 0 -x {9.0 10.0 2658 ------- null} + -t 3.01986 -s 10 -d 7 -p ack -e 40 -c 0 -i 5326 -a 0 -x {10.0 9.0 2658 ------- null} - -t 3.01986 -s 10 -d 7 -p ack -e 40 -c 0 -i 5326 -a 0 -x {10.0 9.0 2658 ------- null} h -t 3.01986 -s 10 -d 7 -p ack -e 40 -c 0 -i 5326 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.01997 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5321 -a 0 -x {9.0 10.0 2665 ------- null} + -t 3.01997 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5321 -a 0 -x {9.0 10.0 2665 ------- null} h -t 3.01997 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5321 -a 0 -x {9.0 10.0 2665 ------- null} r -t 3.02027 -s 0 -d 9 -p ack -e 40 -c 0 -i 5316 -a 0 -x {10.0 9.0 2653 ------- null} + -t 3.02027 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5327 -a 0 -x {9.0 10.0 2668 ------- null} - -t 3.02027 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5327 -a 0 -x {9.0 10.0 2668 ------- null} h -t 3.02027 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5327 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.02058 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5313 -a 0 -x {9.0 10.0 2661 ------- null} - -t 3.02058 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5313 -a 0 -x {9.0 10.0 2661 ------- null} h -t 3.02058 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5313 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.02066 -s 0 -d 9 -p ack -e 40 -c 0 -i 5320 -a 0 -x {10.0 9.0 2655 ------- null} - -t 3.02066 -s 0 -d 9 -p ack -e 40 -c 0 -i 5320 -a 0 -x {10.0 9.0 2655 ------- null} h -t 3.02066 -s 0 -d 9 -p ack -e 40 -c 0 -i 5320 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.0208 -s 10 -d 7 -p ack -e 40 -c 0 -i 5324 -a 0 -x {10.0 9.0 2657 ------- null} + -t 3.0208 -s 7 -d 0 -p ack -e 40 -c 0 -i 5324 -a 0 -x {10.0 9.0 2657 ------- null} h -t 3.0208 -s 7 -d 8 -p ack -e 40 -c 0 -i 5324 -a 0 -x {10.0 9.0 2657 ------- null} r -t 3.02094 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5309 -a 0 -x {9.0 10.0 2659 ------- null} + -t 3.02094 -s 10 -d 7 -p ack -e 40 -c 0 -i 5328 -a 0 -x {10.0 9.0 2659 ------- null} - -t 3.02094 -s 10 -d 7 -p ack -e 40 -c 0 -i 5328 -a 0 -x {10.0 9.0 2659 ------- null} h -t 3.02094 -s 10 -d 7 -p ack -e 40 -c 0 -i 5328 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.02099 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5323 -a 0 -x {9.0 10.0 2666 ------- null} + -t 3.02099 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5323 -a 0 -x {9.0 10.0 2666 ------- null} h -t 3.02099 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5323 -a 0 -x {9.0 10.0 2666 ------- null} r -t 3.02154 -s 0 -d 9 -p ack -e 40 -c 0 -i 5318 -a 0 -x {10.0 9.0 2654 ------- null} + -t 3.02154 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5329 -a 0 -x {9.0 10.0 2669 ------- null} - -t 3.02154 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5329 -a 0 -x {9.0 10.0 2669 ------- null} h -t 3.02154 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5329 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.02166 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5315 -a 0 -x {9.0 10.0 2662 ------- null} - -t 3.02166 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5315 -a 0 -x {9.0 10.0 2662 ------- null} h -t 3.02166 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5315 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.02189 -s 10 -d 7 -p ack -e 40 -c 0 -i 5326 -a 0 -x {10.0 9.0 2658 ------- null} + -t 3.02189 -s 7 -d 0 -p ack -e 40 -c 0 -i 5326 -a 0 -x {10.0 9.0 2658 ------- null} h -t 3.02189 -s 7 -d 8 -p ack -e 40 -c 0 -i 5326 -a 0 -x {10.0 9.0 2658 ------- null} + -t 3.02195 -s 0 -d 9 -p ack -e 40 -c 0 -i 5322 -a 0 -x {10.0 9.0 2656 ------- null} - -t 3.02195 -s 0 -d 9 -p ack -e 40 -c 0 -i 5322 -a 0 -x {10.0 9.0 2656 ------- null} h -t 3.02195 -s 0 -d 9 -p ack -e 40 -c 0 -i 5322 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.02203 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5311 -a 0 -x {9.0 10.0 2660 ------- null} + -t 3.02203 -s 10 -d 7 -p ack -e 40 -c 0 -i 5330 -a 0 -x {10.0 9.0 2660 ------- null} - -t 3.02203 -s 10 -d 7 -p ack -e 40 -c 0 -i 5330 -a 0 -x {10.0 9.0 2660 ------- null} h -t 3.02203 -s 10 -d 7 -p ack -e 40 -c 0 -i 5330 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.02203 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5325 -a 0 -x {9.0 10.0 2667 ------- null} + -t 3.02203 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5325 -a 0 -x {9.0 10.0 2667 ------- null} h -t 3.02203 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5325 -a 0 -x {9.0 10.0 2667 ------- null} r -t 3.02269 -s 0 -d 9 -p ack -e 40 -c 0 -i 5320 -a 0 -x {10.0 9.0 2655 ------- null} + -t 3.02269 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5331 -a 0 -x {9.0 10.0 2670 ------- null} - -t 3.02269 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5331 -a 0 -x {9.0 10.0 2670 ------- null} h -t 3.02269 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5331 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.02296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5317 -a 0 -x {9.0 10.0 2663 ------- null} - -t 3.02296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5317 -a 0 -x {9.0 10.0 2663 ------- null} h -t 3.02296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5317 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.02298 -s 10 -d 7 -p ack -e 40 -c 0 -i 5328 -a 0 -x {10.0 9.0 2659 ------- null} + -t 3.02298 -s 7 -d 0 -p ack -e 40 -c 0 -i 5328 -a 0 -x {10.0 9.0 2659 ------- null} h -t 3.02298 -s 7 -d 8 -p ack -e 40 -c 0 -i 5328 -a 0 -x {10.0 9.0 2659 ------- null} r -t 3.02307 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5327 -a 0 -x {9.0 10.0 2668 ------- null} + -t 3.02307 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5327 -a 0 -x {9.0 10.0 2668 ------- null} h -t 3.02307 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5327 -a 0 -x {9.0 10.0 2668 ------- null} + -t 3.02312 -s 0 -d 9 -p ack -e 40 -c 0 -i 5324 -a 0 -x {10.0 9.0 2657 ------- null} - -t 3.02312 -s 0 -d 9 -p ack -e 40 -c 0 -i 5324 -a 0 -x {10.0 9.0 2657 ------- null} h -t 3.02312 -s 0 -d 9 -p ack -e 40 -c 0 -i 5324 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.02338 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5313 -a 0 -x {9.0 10.0 2661 ------- null} + -t 3.02338 -s 10 -d 7 -p ack -e 40 -c 0 -i 5332 -a 0 -x {10.0 9.0 2661 ------- null} - -t 3.02338 -s 10 -d 7 -p ack -e 40 -c 0 -i 5332 -a 0 -x {10.0 9.0 2661 ------- null} h -t 3.02338 -s 10 -d 7 -p ack -e 40 -c 0 -i 5332 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.02398 -s 0 -d 9 -p ack -e 40 -c 0 -i 5322 -a 0 -x {10.0 9.0 2656 ------- null} + -t 3.02398 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5333 -a 0 -x {9.0 10.0 2671 ------- null} - -t 3.02398 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5333 -a 0 -x {9.0 10.0 2671 ------- null} h -t 3.02398 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5333 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.02405 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5319 -a 0 -x {9.0 10.0 2664 ------- null} - -t 3.02405 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5319 -a 0 -x {9.0 10.0 2664 ------- null} h -t 3.02405 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5319 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.02406 -s 10 -d 7 -p ack -e 40 -c 0 -i 5330 -a 0 -x {10.0 9.0 2660 ------- null} + -t 3.02406 -s 7 -d 0 -p ack -e 40 -c 0 -i 5330 -a 0 -x {10.0 9.0 2660 ------- null} h -t 3.02406 -s 7 -d 8 -p ack -e 40 -c 0 -i 5330 -a 0 -x {10.0 9.0 2660 ------- null} + -t 3.02422 -s 0 -d 9 -p ack -e 40 -c 0 -i 5326 -a 0 -x {10.0 9.0 2658 ------- null} - -t 3.02422 -s 0 -d 9 -p ack -e 40 -c 0 -i 5326 -a 0 -x {10.0 9.0 2658 ------- null} h -t 3.02422 -s 0 -d 9 -p ack -e 40 -c 0 -i 5326 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.02434 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5329 -a 0 -x {9.0 10.0 2669 ------- null} + -t 3.02434 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5329 -a 0 -x {9.0 10.0 2669 ------- null} h -t 3.02434 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5329 -a 0 -x {9.0 10.0 2669 ------- null} r -t 3.02446 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5315 -a 0 -x {9.0 10.0 2662 ------- null} + -t 3.02446 -s 10 -d 7 -p ack -e 40 -c 0 -i 5334 -a 0 -x {10.0 9.0 2662 ------- null} - -t 3.02446 -s 10 -d 7 -p ack -e 40 -c 0 -i 5334 -a 0 -x {10.0 9.0 2662 ------- null} h -t 3.02446 -s 10 -d 7 -p ack -e 40 -c 0 -i 5334 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.02514 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5321 -a 0 -x {9.0 10.0 2665 ------- null} - -t 3.02514 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5321 -a 0 -x {9.0 10.0 2665 ------- null} h -t 3.02514 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5321 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.02515 -s 0 -d 9 -p ack -e 40 -c 0 -i 5324 -a 0 -x {10.0 9.0 2657 ------- null} + -t 3.02515 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5335 -a 0 -x {9.0 10.0 2672 ------- null} - -t 3.02515 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5335 -a 0 -x {9.0 10.0 2672 ------- null} h -t 3.02515 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5335 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.0252 -s 0 -d 9 -p ack -e 40 -c 0 -i 5328 -a 0 -x {10.0 9.0 2659 ------- null} - -t 3.0252 -s 0 -d 9 -p ack -e 40 -c 0 -i 5328 -a 0 -x {10.0 9.0 2659 ------- null} h -t 3.0252 -s 0 -d 9 -p ack -e 40 -c 0 -i 5328 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.02541 -s 10 -d 7 -p ack -e 40 -c 0 -i 5332 -a 0 -x {10.0 9.0 2661 ------- null} + -t 3.02541 -s 7 -d 0 -p ack -e 40 -c 0 -i 5332 -a 0 -x {10.0 9.0 2661 ------- null} h -t 3.02541 -s 7 -d 8 -p ack -e 40 -c 0 -i 5332 -a 0 -x {10.0 9.0 2661 ------- null} r -t 3.02549 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5331 -a 0 -x {9.0 10.0 2670 ------- null} + -t 3.02549 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5331 -a 0 -x {9.0 10.0 2670 ------- null} h -t 3.02549 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5331 -a 0 -x {9.0 10.0 2670 ------- null} r -t 3.02576 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5317 -a 0 -x {9.0 10.0 2663 ------- null} + -t 3.02576 -s 10 -d 7 -p ack -e 40 -c 0 -i 5336 -a 0 -x {10.0 9.0 2663 ------- null} - -t 3.02576 -s 10 -d 7 -p ack -e 40 -c 0 -i 5336 -a 0 -x {10.0 9.0 2663 ------- null} h -t 3.02576 -s 10 -d 7 -p ack -e 40 -c 0 -i 5336 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.02622 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5323 -a 0 -x {9.0 10.0 2666 ------- null} - -t 3.02622 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5323 -a 0 -x {9.0 10.0 2666 ------- null} h -t 3.02622 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5323 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.02626 -s 0 -d 9 -p ack -e 40 -c 0 -i 5326 -a 0 -x {10.0 9.0 2658 ------- null} + -t 3.02626 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5337 -a 0 -x {9.0 10.0 2673 ------- null} - -t 3.02626 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5337 -a 0 -x {9.0 10.0 2673 ------- null} h -t 3.02626 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5337 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.0265 -s 0 -d 9 -p ack -e 40 -c 0 -i 5330 -a 0 -x {10.0 9.0 2660 ------- null} - -t 3.0265 -s 0 -d 9 -p ack -e 40 -c 0 -i 5330 -a 0 -x {10.0 9.0 2660 ------- null} h -t 3.0265 -s 0 -d 9 -p ack -e 40 -c 0 -i 5330 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.0265 -s 10 -d 7 -p ack -e 40 -c 0 -i 5334 -a 0 -x {10.0 9.0 2662 ------- null} + -t 3.0265 -s 7 -d 0 -p ack -e 40 -c 0 -i 5334 -a 0 -x {10.0 9.0 2662 ------- null} h -t 3.0265 -s 7 -d 8 -p ack -e 40 -c 0 -i 5334 -a 0 -x {10.0 9.0 2662 ------- null} r -t 3.02678 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5333 -a 0 -x {9.0 10.0 2671 ------- null} + -t 3.02678 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5333 -a 0 -x {9.0 10.0 2671 ------- null} h -t 3.02678 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5333 -a 0 -x {9.0 10.0 2671 ------- null} r -t 3.02685 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5319 -a 0 -x {9.0 10.0 2664 ------- null} + -t 3.02685 -s 10 -d 7 -p ack -e 40 -c 0 -i 5338 -a 0 -x {10.0 9.0 2664 ------- null} - -t 3.02685 -s 10 -d 7 -p ack -e 40 -c 0 -i 5338 -a 0 -x {10.0 9.0 2664 ------- null} h -t 3.02685 -s 10 -d 7 -p ack -e 40 -c 0 -i 5338 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.02723 -s 0 -d 9 -p ack -e 40 -c 0 -i 5328 -a 0 -x {10.0 9.0 2659 ------- null} + -t 3.02723 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5339 -a 0 -x {9.0 10.0 2674 ------- null} - -t 3.02723 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5339 -a 0 -x {9.0 10.0 2674 ------- null} h -t 3.02723 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5339 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.02744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5325 -a 0 -x {9.0 10.0 2667 ------- null} - -t 3.02744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5325 -a 0 -x {9.0 10.0 2667 ------- null} h -t 3.02744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5325 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.02754 -s 0 -d 9 -p ack -e 40 -c 0 -i 5332 -a 0 -x {10.0 9.0 2661 ------- null} - -t 3.02754 -s 0 -d 9 -p ack -e 40 -c 0 -i 5332 -a 0 -x {10.0 9.0 2661 ------- null} h -t 3.02754 -s 0 -d 9 -p ack -e 40 -c 0 -i 5332 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.02779 -s 10 -d 7 -p ack -e 40 -c 0 -i 5336 -a 0 -x {10.0 9.0 2663 ------- null} + -t 3.02779 -s 7 -d 0 -p ack -e 40 -c 0 -i 5336 -a 0 -x {10.0 9.0 2663 ------- null} h -t 3.02779 -s 7 -d 8 -p ack -e 40 -c 0 -i 5336 -a 0 -x {10.0 9.0 2663 ------- null} r -t 3.02794 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5321 -a 0 -x {9.0 10.0 2665 ------- null} + -t 3.02794 -s 10 -d 7 -p ack -e 40 -c 0 -i 5340 -a 0 -x {10.0 9.0 2665 ------- null} - -t 3.02794 -s 10 -d 7 -p ack -e 40 -c 0 -i 5340 -a 0 -x {10.0 9.0 2665 ------- null} h -t 3.02794 -s 10 -d 7 -p ack -e 40 -c 0 -i 5340 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.02795 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5335 -a 0 -x {9.0 10.0 2672 ------- null} + -t 3.02795 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5335 -a 0 -x {9.0 10.0 2672 ------- null} h -t 3.02795 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5335 -a 0 -x {9.0 10.0 2672 ------- null} r -t 3.02853 -s 0 -d 9 -p ack -e 40 -c 0 -i 5330 -a 0 -x {10.0 9.0 2660 ------- null} + -t 3.02853 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5341 -a 0 -x {9.0 10.0 2675 ------- null} - -t 3.02853 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5341 -a 0 -x {9.0 10.0 2675 ------- null} h -t 3.02853 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5341 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.02853 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5327 -a 0 -x {9.0 10.0 2668 ------- null} - -t 3.02853 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5327 -a 0 -x {9.0 10.0 2668 ------- null} h -t 3.02853 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5327 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.02883 -s 0 -d 9 -p ack -e 40 -c 0 -i 5334 -a 0 -x {10.0 9.0 2662 ------- null} - -t 3.02883 -s 0 -d 9 -p ack -e 40 -c 0 -i 5334 -a 0 -x {10.0 9.0 2662 ------- null} h -t 3.02883 -s 0 -d 9 -p ack -e 40 -c 0 -i 5334 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.02888 -s 10 -d 7 -p ack -e 40 -c 0 -i 5338 -a 0 -x {10.0 9.0 2664 ------- null} + -t 3.02888 -s 7 -d 0 -p ack -e 40 -c 0 -i 5338 -a 0 -x {10.0 9.0 2664 ------- null} h -t 3.02888 -s 7 -d 8 -p ack -e 40 -c 0 -i 5338 -a 0 -x {10.0 9.0 2664 ------- null} r -t 3.02902 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5323 -a 0 -x {9.0 10.0 2666 ------- null} + -t 3.02902 -s 10 -d 7 -p ack -e 40 -c 0 -i 5342 -a 0 -x {10.0 9.0 2666 ------- null} - -t 3.02902 -s 10 -d 7 -p ack -e 40 -c 0 -i 5342 -a 0 -x {10.0 9.0 2666 ------- null} h -t 3.02902 -s 10 -d 7 -p ack -e 40 -c 0 -i 5342 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.02906 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5337 -a 0 -x {9.0 10.0 2673 ------- null} + -t 3.02906 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5337 -a 0 -x {9.0 10.0 2673 ------- null} h -t 3.02906 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5337 -a 0 -x {9.0 10.0 2673 ------- null} r -t 3.02957 -s 0 -d 9 -p ack -e 40 -c 0 -i 5332 -a 0 -x {10.0 9.0 2661 ------- null} + -t 3.02957 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5343 -a 0 -x {9.0 10.0 2676 ------- null} - -t 3.02957 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5343 -a 0 -x {9.0 10.0 2676 ------- null} h -t 3.02957 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5343 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.0297 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5329 -a 0 -x {9.0 10.0 2669 ------- null} - -t 3.0297 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5329 -a 0 -x {9.0 10.0 2669 ------- null} h -t 3.0297 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5329 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.02986 -s 0 -d 9 -p ack -e 40 -c 0 -i 5336 -a 0 -x {10.0 9.0 2663 ------- null} - -t 3.02986 -s 0 -d 9 -p ack -e 40 -c 0 -i 5336 -a 0 -x {10.0 9.0 2663 ------- null} h -t 3.02986 -s 0 -d 9 -p ack -e 40 -c 0 -i 5336 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.02997 -s 10 -d 7 -p ack -e 40 -c 0 -i 5340 -a 0 -x {10.0 9.0 2665 ------- null} + -t 3.02997 -s 7 -d 0 -p ack -e 40 -c 0 -i 5340 -a 0 -x {10.0 9.0 2665 ------- null} h -t 3.02997 -s 7 -d 8 -p ack -e 40 -c 0 -i 5340 -a 0 -x {10.0 9.0 2665 ------- null} r -t 3.03003 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5339 -a 0 -x {9.0 10.0 2674 ------- null} + -t 3.03003 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5339 -a 0 -x {9.0 10.0 2674 ------- null} h -t 3.03003 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5339 -a 0 -x {9.0 10.0 2674 ------- null} r -t 3.03024 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5325 -a 0 -x {9.0 10.0 2667 ------- null} + -t 3.03024 -s 10 -d 7 -p ack -e 40 -c 0 -i 5344 -a 0 -x {10.0 9.0 2667 ------- null} - -t 3.03024 -s 10 -d 7 -p ack -e 40 -c 0 -i 5344 -a 0 -x {10.0 9.0 2667 ------- null} h -t 3.03024 -s 10 -d 7 -p ack -e 40 -c 0 -i 5344 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.03078 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5331 -a 0 -x {9.0 10.0 2670 ------- null} - -t 3.03078 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5331 -a 0 -x {9.0 10.0 2670 ------- null} h -t 3.03078 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5331 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.03086 -s 0 -d 9 -p ack -e 40 -c 0 -i 5334 -a 0 -x {10.0 9.0 2662 ------- null} + -t 3.03086 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5345 -a 0 -x {9.0 10.0 2677 ------- null} - -t 3.03086 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5345 -a 0 -x {9.0 10.0 2677 ------- null} h -t 3.03086 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5345 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.0309 -s 0 -d 9 -p ack -e 40 -c 0 -i 5338 -a 0 -x {10.0 9.0 2664 ------- null} - -t 3.0309 -s 0 -d 9 -p ack -e 40 -c 0 -i 5338 -a 0 -x {10.0 9.0 2664 ------- null} h -t 3.0309 -s 0 -d 9 -p ack -e 40 -c 0 -i 5338 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.03106 -s 10 -d 7 -p ack -e 40 -c 0 -i 5342 -a 0 -x {10.0 9.0 2666 ------- null} + -t 3.03106 -s 7 -d 0 -p ack -e 40 -c 0 -i 5342 -a 0 -x {10.0 9.0 2666 ------- null} h -t 3.03106 -s 7 -d 8 -p ack -e 40 -c 0 -i 5342 -a 0 -x {10.0 9.0 2666 ------- null} r -t 3.03133 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5341 -a 0 -x {9.0 10.0 2675 ------- null} + -t 3.03133 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5341 -a 0 -x {9.0 10.0 2675 ------- null} h -t 3.03133 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5341 -a 0 -x {9.0 10.0 2675 ------- null} r -t 3.03133 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5327 -a 0 -x {9.0 10.0 2668 ------- null} + -t 3.03133 -s 10 -d 7 -p ack -e 40 -c 0 -i 5346 -a 0 -x {10.0 9.0 2668 ------- null} - -t 3.03133 -s 10 -d 7 -p ack -e 40 -c 0 -i 5346 -a 0 -x {10.0 9.0 2668 ------- null} h -t 3.03133 -s 10 -d 7 -p ack -e 40 -c 0 -i 5346 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.03187 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5333 -a 0 -x {9.0 10.0 2671 ------- null} - -t 3.03187 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5333 -a 0 -x {9.0 10.0 2671 ------- null} h -t 3.03187 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5333 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.03189 -s 0 -d 9 -p ack -e 40 -c 0 -i 5336 -a 0 -x {10.0 9.0 2663 ------- null} + -t 3.03189 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5347 -a 0 -x {9.0 10.0 2678 ------- null} - -t 3.03189 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5347 -a 0 -x {9.0 10.0 2678 ------- null} h -t 3.03189 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5347 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.03211 -s 0 -d 9 -p ack -e 40 -c 0 -i 5340 -a 0 -x {10.0 9.0 2665 ------- null} - -t 3.03211 -s 0 -d 9 -p ack -e 40 -c 0 -i 5340 -a 0 -x {10.0 9.0 2665 ------- null} h -t 3.03211 -s 0 -d 9 -p ack -e 40 -c 0 -i 5340 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.03227 -s 10 -d 7 -p ack -e 40 -c 0 -i 5344 -a 0 -x {10.0 9.0 2667 ------- null} + -t 3.03227 -s 7 -d 0 -p ack -e 40 -c 0 -i 5344 -a 0 -x {10.0 9.0 2667 ------- null} h -t 3.03227 -s 7 -d 8 -p ack -e 40 -c 0 -i 5344 -a 0 -x {10.0 9.0 2667 ------- null} r -t 3.03237 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5343 -a 0 -x {9.0 10.0 2676 ------- null} + -t 3.03237 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5343 -a 0 -x {9.0 10.0 2676 ------- null} h -t 3.03237 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5343 -a 0 -x {9.0 10.0 2676 ------- null} r -t 3.0325 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5329 -a 0 -x {9.0 10.0 2669 ------- null} + -t 3.0325 -s 10 -d 7 -p ack -e 40 -c 0 -i 5348 -a 0 -x {10.0 9.0 2669 ------- null} - -t 3.0325 -s 10 -d 7 -p ack -e 40 -c 0 -i 5348 -a 0 -x {10.0 9.0 2669 ------- null} h -t 3.0325 -s 10 -d 7 -p ack -e 40 -c 0 -i 5348 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.03293 -s 0 -d 9 -p ack -e 40 -c 0 -i 5338 -a 0 -x {10.0 9.0 2664 ------- null} + -t 3.03293 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5349 -a 0 -x {9.0 10.0 2679 ------- null} - -t 3.03293 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5349 -a 0 -x {9.0 10.0 2679 ------- null} h -t 3.03293 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5349 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.03296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5335 -a 0 -x {9.0 10.0 2672 ------- null} - -t 3.03296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5335 -a 0 -x {9.0 10.0 2672 ------- null} h -t 3.03296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5335 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.03317 -s 0 -d 9 -p ack -e 40 -c 0 -i 5342 -a 0 -x {10.0 9.0 2666 ------- null} - -t 3.03317 -s 0 -d 9 -p ack -e 40 -c 0 -i 5342 -a 0 -x {10.0 9.0 2666 ------- null} h -t 3.03317 -s 0 -d 9 -p ack -e 40 -c 0 -i 5342 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.03336 -s 10 -d 7 -p ack -e 40 -c 0 -i 5346 -a 0 -x {10.0 9.0 2668 ------- null} + -t 3.03336 -s 7 -d 0 -p ack -e 40 -c 0 -i 5346 -a 0 -x {10.0 9.0 2668 ------- null} h -t 3.03336 -s 7 -d 8 -p ack -e 40 -c 0 -i 5346 -a 0 -x {10.0 9.0 2668 ------- null} r -t 3.03358 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5331 -a 0 -x {9.0 10.0 2670 ------- null} + -t 3.03358 -s 10 -d 7 -p ack -e 40 -c 0 -i 5350 -a 0 -x {10.0 9.0 2670 ------- null} - -t 3.03358 -s 10 -d 7 -p ack -e 40 -c 0 -i 5350 -a 0 -x {10.0 9.0 2670 ------- null} h -t 3.03358 -s 10 -d 7 -p ack -e 40 -c 0 -i 5350 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.03366 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5345 -a 0 -x {9.0 10.0 2677 ------- null} + -t 3.03366 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5345 -a 0 -x {9.0 10.0 2677 ------- null} h -t 3.03366 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5345 -a 0 -x {9.0 10.0 2677 ------- null} + -t 3.03405 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5337 -a 0 -x {9.0 10.0 2673 ------- null} - -t 3.03405 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5337 -a 0 -x {9.0 10.0 2673 ------- null} h -t 3.03405 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5337 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.03414 -s 0 -d 9 -p ack -e 40 -c 0 -i 5340 -a 0 -x {10.0 9.0 2665 ------- null} + -t 3.03414 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5351 -a 0 -x {9.0 10.0 2680 ------- null} - -t 3.03414 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5351 -a 0 -x {9.0 10.0 2680 ------- null} h -t 3.03414 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5351 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.0343 -s 0 -d 9 -p ack -e 40 -c 0 -i 5344 -a 0 -x {10.0 9.0 2667 ------- null} - -t 3.0343 -s 0 -d 9 -p ack -e 40 -c 0 -i 5344 -a 0 -x {10.0 9.0 2667 ------- null} h -t 3.0343 -s 0 -d 9 -p ack -e 40 -c 0 -i 5344 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.03453 -s 10 -d 7 -p ack -e 40 -c 0 -i 5348 -a 0 -x {10.0 9.0 2669 ------- null} + -t 3.03453 -s 7 -d 0 -p ack -e 40 -c 0 -i 5348 -a 0 -x {10.0 9.0 2669 ------- null} h -t 3.03453 -s 7 -d 8 -p ack -e 40 -c 0 -i 5348 -a 0 -x {10.0 9.0 2669 ------- null} r -t 3.03467 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5333 -a 0 -x {9.0 10.0 2671 ------- null} + -t 3.03467 -s 10 -d 7 -p ack -e 40 -c 0 -i 5352 -a 0 -x {10.0 9.0 2671 ------- null} - -t 3.03467 -s 10 -d 7 -p ack -e 40 -c 0 -i 5352 -a 0 -x {10.0 9.0 2671 ------- null} h -t 3.03467 -s 10 -d 7 -p ack -e 40 -c 0 -i 5352 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.03469 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5347 -a 0 -x {9.0 10.0 2678 ------- null} + -t 3.03469 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5347 -a 0 -x {9.0 10.0 2678 ------- null} h -t 3.03469 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5347 -a 0 -x {9.0 10.0 2678 ------- null} r -t 3.0352 -s 0 -d 9 -p ack -e 40 -c 0 -i 5342 -a 0 -x {10.0 9.0 2666 ------- null} + -t 3.0352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5353 -a 0 -x {9.0 10.0 2681 ------- null} - -t 3.0352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5353 -a 0 -x {9.0 10.0 2681 ------- null} h -t 3.0352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5353 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.03534 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5339 -a 0 -x {9.0 10.0 2674 ------- null} - -t 3.03534 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5339 -a 0 -x {9.0 10.0 2674 ------- null} h -t 3.03534 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5339 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.03547 -s 0 -d 9 -p ack -e 40 -c 0 -i 5346 -a 0 -x {10.0 9.0 2668 ------- null} - -t 3.03547 -s 0 -d 9 -p ack -e 40 -c 0 -i 5346 -a 0 -x {10.0 9.0 2668 ------- null} h -t 3.03547 -s 0 -d 9 -p ack -e 40 -c 0 -i 5346 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.03562 -s 10 -d 7 -p ack -e 40 -c 0 -i 5350 -a 0 -x {10.0 9.0 2670 ------- null} + -t 3.03562 -s 7 -d 0 -p ack -e 40 -c 0 -i 5350 -a 0 -x {10.0 9.0 2670 ------- null} h -t 3.03562 -s 7 -d 8 -p ack -e 40 -c 0 -i 5350 -a 0 -x {10.0 9.0 2670 ------- null} r -t 3.03573 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5349 -a 0 -x {9.0 10.0 2679 ------- null} + -t 3.03573 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5349 -a 0 -x {9.0 10.0 2679 ------- null} h -t 3.03573 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5349 -a 0 -x {9.0 10.0 2679 ------- null} r -t 3.03576 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5335 -a 0 -x {9.0 10.0 2672 ------- null} + -t 3.03576 -s 10 -d 7 -p ack -e 40 -c 0 -i 5354 -a 0 -x {10.0 9.0 2672 ------- null} - -t 3.03576 -s 10 -d 7 -p ack -e 40 -c 0 -i 5354 -a 0 -x {10.0 9.0 2672 ------- null} h -t 3.03576 -s 10 -d 7 -p ack -e 40 -c 0 -i 5354 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.03634 -s 0 -d 9 -p ack -e 40 -c 0 -i 5344 -a 0 -x {10.0 9.0 2667 ------- null} + -t 3.03634 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5355 -a 0 -x {9.0 10.0 2682 ------- null} - -t 3.03634 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5355 -a 0 -x {9.0 10.0 2682 ------- null} h -t 3.03634 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5355 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.03643 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5341 -a 0 -x {9.0 10.0 2675 ------- null} - -t 3.03643 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5341 -a 0 -x {9.0 10.0 2675 ------- null} h -t 3.03643 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5341 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.0367 -s 10 -d 7 -p ack -e 40 -c 0 -i 5352 -a 0 -x {10.0 9.0 2671 ------- null} + -t 3.0367 -s 7 -d 0 -p ack -e 40 -c 0 -i 5352 -a 0 -x {10.0 9.0 2671 ------- null} h -t 3.0367 -s 7 -d 8 -p ack -e 40 -c 0 -i 5352 -a 0 -x {10.0 9.0 2671 ------- null} + -t 3.0367 -s 0 -d 9 -p ack -e 40 -c 0 -i 5348 -a 0 -x {10.0 9.0 2669 ------- null} - -t 3.0367 -s 0 -d 9 -p ack -e 40 -c 0 -i 5348 -a 0 -x {10.0 9.0 2669 ------- null} h -t 3.0367 -s 0 -d 9 -p ack -e 40 -c 0 -i 5348 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.03685 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5337 -a 0 -x {9.0 10.0 2673 ------- null} + -t 3.03685 -s 10 -d 7 -p ack -e 40 -c 0 -i 5356 -a 0 -x {10.0 9.0 2673 ------- null} - -t 3.03685 -s 10 -d 7 -p ack -e 40 -c 0 -i 5356 -a 0 -x {10.0 9.0 2673 ------- null} h -t 3.03685 -s 10 -d 7 -p ack -e 40 -c 0 -i 5356 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.03694 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5351 -a 0 -x {9.0 10.0 2680 ------- null} + -t 3.03694 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5351 -a 0 -x {9.0 10.0 2680 ------- null} h -t 3.03694 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5351 -a 0 -x {9.0 10.0 2680 ------- null} r -t 3.0375 -s 0 -d 9 -p ack -e 40 -c 0 -i 5346 -a 0 -x {10.0 9.0 2668 ------- null} + -t 3.0375 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5357 -a 0 -x {9.0 10.0 2683 ------- null} - -t 3.0375 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5357 -a 0 -x {9.0 10.0 2683 ------- null} h -t 3.0375 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5357 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.03774 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5343 -a 0 -x {9.0 10.0 2676 ------- null} - -t 3.03774 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5343 -a 0 -x {9.0 10.0 2676 ------- null} h -t 3.03774 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5343 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.03779 -s 10 -d 7 -p ack -e 40 -c 0 -i 5354 -a 0 -x {10.0 9.0 2672 ------- null} + -t 3.03779 -s 7 -d 0 -p ack -e 40 -c 0 -i 5354 -a 0 -x {10.0 9.0 2672 ------- null} h -t 3.03779 -s 7 -d 8 -p ack -e 40 -c 0 -i 5354 -a 0 -x {10.0 9.0 2672 ------- null} r -t 3.038 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5353 -a 0 -x {9.0 10.0 2681 ------- null} + -t 3.038 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5353 -a 0 -x {9.0 10.0 2681 ------- null} h -t 3.038 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5353 -a 0 -x {9.0 10.0 2681 ------- null} + -t 3.038 -s 0 -d 9 -p ack -e 40 -c 0 -i 5350 -a 0 -x {10.0 9.0 2670 ------- null} - -t 3.038 -s 0 -d 9 -p ack -e 40 -c 0 -i 5350 -a 0 -x {10.0 9.0 2670 ------- null} h -t 3.038 -s 0 -d 9 -p ack -e 40 -c 0 -i 5350 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.03814 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5339 -a 0 -x {9.0 10.0 2674 ------- null} + -t 3.03814 -s 10 -d 7 -p ack -e 40 -c 0 -i 5358 -a 0 -x {10.0 9.0 2674 ------- null} - -t 3.03814 -s 10 -d 7 -p ack -e 40 -c 0 -i 5358 -a 0 -x {10.0 9.0 2674 ------- null} h -t 3.03814 -s 10 -d 7 -p ack -e 40 -c 0 -i 5358 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.03874 -s 0 -d 9 -p ack -e 40 -c 0 -i 5348 -a 0 -x {10.0 9.0 2669 ------- null} + -t 3.03874 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5359 -a 0 -x {9.0 10.0 2684 ------- null} - -t 3.03874 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5359 -a 0 -x {9.0 10.0 2684 ------- null} h -t 3.03874 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5359 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.03888 -s 10 -d 7 -p ack -e 40 -c 0 -i 5356 -a 0 -x {10.0 9.0 2673 ------- null} + -t 3.03888 -s 7 -d 0 -p ack -e 40 -c 0 -i 5356 -a 0 -x {10.0 9.0 2673 ------- null} h -t 3.03888 -s 7 -d 8 -p ack -e 40 -c 0 -i 5356 -a 0 -x {10.0 9.0 2673 ------- null} + -t 3.03894 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5345 -a 0 -x {9.0 10.0 2677 ------- null} - -t 3.03894 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5345 -a 0 -x {9.0 10.0 2677 ------- null} h -t 3.03894 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5345 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.03914 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5355 -a 0 -x {9.0 10.0 2682 ------- null} + -t 3.03914 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5355 -a 0 -x {9.0 10.0 2682 ------- null} h -t 3.03914 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5355 -a 0 -x {9.0 10.0 2682 ------- null} + -t 3.03915 -s 0 -d 9 -p ack -e 40 -c 0 -i 5352 -a 0 -x {10.0 9.0 2671 ------- null} - -t 3.03915 -s 0 -d 9 -p ack -e 40 -c 0 -i 5352 -a 0 -x {10.0 9.0 2671 ------- null} h -t 3.03915 -s 0 -d 9 -p ack -e 40 -c 0 -i 5352 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.03923 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5341 -a 0 -x {9.0 10.0 2675 ------- null} + -t 3.03923 -s 10 -d 7 -p ack -e 40 -c 0 -i 5360 -a 0 -x {10.0 9.0 2675 ------- null} - -t 3.03923 -s 10 -d 7 -p ack -e 40 -c 0 -i 5360 -a 0 -x {10.0 9.0 2675 ------- null} h -t 3.03923 -s 10 -d 7 -p ack -e 40 -c 0 -i 5360 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.04003 -s 0 -d 9 -p ack -e 40 -c 0 -i 5350 -a 0 -x {10.0 9.0 2670 ------- null} + -t 3.04003 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5361 -a 0 -x {9.0 10.0 2685 ------- null} - -t 3.04003 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5361 -a 0 -x {9.0 10.0 2685 ------- null} h -t 3.04003 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5361 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.04003 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5347 -a 0 -x {9.0 10.0 2678 ------- null} - -t 3.04003 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5347 -a 0 -x {9.0 10.0 2678 ------- null} h -t 3.04003 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5347 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.04018 -s 10 -d 7 -p ack -e 40 -c 0 -i 5358 -a 0 -x {10.0 9.0 2674 ------- null} + -t 3.04018 -s 7 -d 0 -p ack -e 40 -c 0 -i 5358 -a 0 -x {10.0 9.0 2674 ------- null} h -t 3.04018 -s 7 -d 8 -p ack -e 40 -c 0 -i 5358 -a 0 -x {10.0 9.0 2674 ------- null} + -t 3.04019 -s 0 -d 9 -p ack -e 40 -c 0 -i 5354 -a 0 -x {10.0 9.0 2672 ------- null} - -t 3.04019 -s 0 -d 9 -p ack -e 40 -c 0 -i 5354 -a 0 -x {10.0 9.0 2672 ------- null} h -t 3.04019 -s 0 -d 9 -p ack -e 40 -c 0 -i 5354 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.0403 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5357 -a 0 -x {9.0 10.0 2683 ------- null} + -t 3.0403 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5357 -a 0 -x {9.0 10.0 2683 ------- null} h -t 3.0403 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5357 -a 0 -x {9.0 10.0 2683 ------- null} r -t 3.04054 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5343 -a 0 -x {9.0 10.0 2676 ------- null} + -t 3.04054 -s 10 -d 7 -p ack -e 40 -c 0 -i 5362 -a 0 -x {10.0 9.0 2676 ------- null} - -t 3.04054 -s 10 -d 7 -p ack -e 40 -c 0 -i 5362 -a 0 -x {10.0 9.0 2676 ------- null} h -t 3.04054 -s 10 -d 7 -p ack -e 40 -c 0 -i 5362 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.04112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5349 -a 0 -x {9.0 10.0 2679 ------- null} - -t 3.04112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5349 -a 0 -x {9.0 10.0 2679 ------- null} h -t 3.04112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5349 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.04118 -s 0 -d 9 -p ack -e 40 -c 0 -i 5352 -a 0 -x {10.0 9.0 2671 ------- null} + -t 3.04118 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5363 -a 0 -x {9.0 10.0 2686 ------- null} - -t 3.04118 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5363 -a 0 -x {9.0 10.0 2686 ------- null} h -t 3.04118 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5363 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.04126 -s 10 -d 7 -p ack -e 40 -c 0 -i 5360 -a 0 -x {10.0 9.0 2675 ------- null} + -t 3.04126 -s 7 -d 0 -p ack -e 40 -c 0 -i 5360 -a 0 -x {10.0 9.0 2675 ------- null} h -t 3.04126 -s 7 -d 8 -p ack -e 40 -c 0 -i 5360 -a 0 -x {10.0 9.0 2675 ------- null} + -t 3.04131 -s 0 -d 9 -p ack -e 40 -c 0 -i 5356 -a 0 -x {10.0 9.0 2673 ------- null} - -t 3.04131 -s 0 -d 9 -p ack -e 40 -c 0 -i 5356 -a 0 -x {10.0 9.0 2673 ------- null} h -t 3.04131 -s 0 -d 9 -p ack -e 40 -c 0 -i 5356 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.04154 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5359 -a 0 -x {9.0 10.0 2684 ------- null} + -t 3.04154 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5359 -a 0 -x {9.0 10.0 2684 ------- null} h -t 3.04154 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5359 -a 0 -x {9.0 10.0 2684 ------- null} r -t 3.04174 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5345 -a 0 -x {9.0 10.0 2677 ------- null} + -t 3.04174 -s 10 -d 7 -p ack -e 40 -c 0 -i 5364 -a 0 -x {10.0 9.0 2677 ------- null} - -t 3.04174 -s 10 -d 7 -p ack -e 40 -c 0 -i 5364 -a 0 -x {10.0 9.0 2677 ------- null} h -t 3.04174 -s 10 -d 7 -p ack -e 40 -c 0 -i 5364 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.04221 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5351 -a 0 -x {9.0 10.0 2680 ------- null} - -t 3.04221 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5351 -a 0 -x {9.0 10.0 2680 ------- null} h -t 3.04221 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5351 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.04222 -s 0 -d 9 -p ack -e 40 -c 0 -i 5354 -a 0 -x {10.0 9.0 2672 ------- null} + -t 3.04222 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5365 -a 0 -x {9.0 10.0 2687 ------- null} - -t 3.04222 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5365 -a 0 -x {9.0 10.0 2687 ------- null} h -t 3.04222 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5365 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.04227 -s 0 -d 9 -p ack -e 40 -c 0 -i 5358 -a 0 -x {10.0 9.0 2674 ------- null} - -t 3.04227 -s 0 -d 9 -p ack -e 40 -c 0 -i 5358 -a 0 -x {10.0 9.0 2674 ------- null} h -t 3.04227 -s 0 -d 9 -p ack -e 40 -c 0 -i 5358 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.04258 -s 10 -d 7 -p ack -e 40 -c 0 -i 5362 -a 0 -x {10.0 9.0 2676 ------- null} + -t 3.04258 -s 7 -d 0 -p ack -e 40 -c 0 -i 5362 -a 0 -x {10.0 9.0 2676 ------- null} h -t 3.04258 -s 7 -d 8 -p ack -e 40 -c 0 -i 5362 -a 0 -x {10.0 9.0 2676 ------- null} r -t 3.04283 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5361 -a 0 -x {9.0 10.0 2685 ------- null} + -t 3.04283 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5361 -a 0 -x {9.0 10.0 2685 ------- null} h -t 3.04283 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5361 -a 0 -x {9.0 10.0 2685 ------- null} r -t 3.04283 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5347 -a 0 -x {9.0 10.0 2678 ------- null} + -t 3.04283 -s 10 -d 7 -p ack -e 40 -c 0 -i 5366 -a 0 -x {10.0 9.0 2678 ------- null} - -t 3.04283 -s 10 -d 7 -p ack -e 40 -c 0 -i 5366 -a 0 -x {10.0 9.0 2678 ------- null} h -t 3.04283 -s 10 -d 7 -p ack -e 40 -c 0 -i 5366 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.0433 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5353 -a 0 -x {9.0 10.0 2681 ------- null} - -t 3.0433 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5353 -a 0 -x {9.0 10.0 2681 ------- null} h -t 3.0433 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5353 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.04334 -s 0 -d 9 -p ack -e 40 -c 0 -i 5356 -a 0 -x {10.0 9.0 2673 ------- null} + -t 3.04334 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5367 -a 0 -x {9.0 10.0 2688 ------- null} - -t 3.04334 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5367 -a 0 -x {9.0 10.0 2688 ------- null} h -t 3.04334 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5367 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.04339 -s 0 -d 9 -p ack -e 40 -c 0 -i 5360 -a 0 -x {10.0 9.0 2675 ------- null} - -t 3.04339 -s 0 -d 9 -p ack -e 40 -c 0 -i 5360 -a 0 -x {10.0 9.0 2675 ------- null} h -t 3.04339 -s 0 -d 9 -p ack -e 40 -c 0 -i 5360 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.04378 -s 10 -d 7 -p ack -e 40 -c 0 -i 5364 -a 0 -x {10.0 9.0 2677 ------- null} + -t 3.04378 -s 7 -d 0 -p ack -e 40 -c 0 -i 5364 -a 0 -x {10.0 9.0 2677 ------- null} h -t 3.04378 -s 7 -d 8 -p ack -e 40 -c 0 -i 5364 -a 0 -x {10.0 9.0 2677 ------- null} r -t 3.04392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5349 -a 0 -x {9.0 10.0 2679 ------- null} + -t 3.04392 -s 10 -d 7 -p ack -e 40 -c 0 -i 5368 -a 0 -x {10.0 9.0 2679 ------- null} - -t 3.04392 -s 10 -d 7 -p ack -e 40 -c 0 -i 5368 -a 0 -x {10.0 9.0 2679 ------- null} h -t 3.04392 -s 10 -d 7 -p ack -e 40 -c 0 -i 5368 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.04398 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5363 -a 0 -x {9.0 10.0 2686 ------- null} + -t 3.04398 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5363 -a 0 -x {9.0 10.0 2686 ------- null} h -t 3.04398 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5363 -a 0 -x {9.0 10.0 2686 ------- null} r -t 3.0443 -s 0 -d 9 -p ack -e 40 -c 0 -i 5358 -a 0 -x {10.0 9.0 2674 ------- null} + -t 3.0443 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5369 -a 0 -x {9.0 10.0 2689 ------- null} - -t 3.0443 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5369 -a 0 -x {9.0 10.0 2689 ------- null} h -t 3.0443 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5369 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.04438 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5355 -a 0 -x {9.0 10.0 2682 ------- null} - -t 3.04438 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5355 -a 0 -x {9.0 10.0 2682 ------- null} h -t 3.04438 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5355 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.04448 -s 0 -d 9 -p ack -e 40 -c 0 -i 5362 -a 0 -x {10.0 9.0 2676 ------- null} - -t 3.04448 -s 0 -d 9 -p ack -e 40 -c 0 -i 5362 -a 0 -x {10.0 9.0 2676 ------- null} h -t 3.04448 -s 0 -d 9 -p ack -e 40 -c 0 -i 5362 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.04486 -s 10 -d 7 -p ack -e 40 -c 0 -i 5366 -a 0 -x {10.0 9.0 2678 ------- null} + -t 3.04486 -s 7 -d 0 -p ack -e 40 -c 0 -i 5366 -a 0 -x {10.0 9.0 2678 ------- null} h -t 3.04486 -s 7 -d 8 -p ack -e 40 -c 0 -i 5366 -a 0 -x {10.0 9.0 2678 ------- null} r -t 3.04501 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5351 -a 0 -x {9.0 10.0 2680 ------- null} + -t 3.04501 -s 10 -d 7 -p ack -e 40 -c 0 -i 5370 -a 0 -x {10.0 9.0 2680 ------- null} - -t 3.04501 -s 10 -d 7 -p ack -e 40 -c 0 -i 5370 -a 0 -x {10.0 9.0 2680 ------- null} h -t 3.04501 -s 10 -d 7 -p ack -e 40 -c 0 -i 5370 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.04502 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5365 -a 0 -x {9.0 10.0 2687 ------- null} + -t 3.04502 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5365 -a 0 -x {9.0 10.0 2687 ------- null} h -t 3.04502 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5365 -a 0 -x {9.0 10.0 2687 ------- null} r -t 3.04542 -s 0 -d 9 -p ack -e 40 -c 0 -i 5360 -a 0 -x {10.0 9.0 2675 ------- null} + -t 3.04542 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5371 -a 0 -x {9.0 10.0 2690 ------- null} - -t 3.04542 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5371 -a 0 -x {9.0 10.0 2690 ------- null} h -t 3.04542 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5371 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.04547 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5357 -a 0 -x {9.0 10.0 2683 ------- null} - -t 3.04547 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5357 -a 0 -x {9.0 10.0 2683 ------- null} h -t 3.04547 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5357 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.04558 -s 0 -d 9 -p ack -e 40 -c 0 -i 5364 -a 0 -x {10.0 9.0 2677 ------- null} - -t 3.04558 -s 0 -d 9 -p ack -e 40 -c 0 -i 5364 -a 0 -x {10.0 9.0 2677 ------- null} h -t 3.04558 -s 0 -d 9 -p ack -e 40 -c 0 -i 5364 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.04595 -s 10 -d 7 -p ack -e 40 -c 0 -i 5368 -a 0 -x {10.0 9.0 2679 ------- null} + -t 3.04595 -s 7 -d 0 -p ack -e 40 -c 0 -i 5368 -a 0 -x {10.0 9.0 2679 ------- null} h -t 3.04595 -s 7 -d 8 -p ack -e 40 -c 0 -i 5368 -a 0 -x {10.0 9.0 2679 ------- null} r -t 3.0461 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5353 -a 0 -x {9.0 10.0 2681 ------- null} + -t 3.0461 -s 10 -d 7 -p ack -e 40 -c 0 -i 5372 -a 0 -x {10.0 9.0 2681 ------- null} - -t 3.0461 -s 10 -d 7 -p ack -e 40 -c 0 -i 5372 -a 0 -x {10.0 9.0 2681 ------- null} h -t 3.0461 -s 10 -d 7 -p ack -e 40 -c 0 -i 5372 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.04614 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5367 -a 0 -x {9.0 10.0 2688 ------- null} + -t 3.04614 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5367 -a 0 -x {9.0 10.0 2688 ------- null} h -t 3.04614 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5367 -a 0 -x {9.0 10.0 2688 ------- null} r -t 3.04651 -s 0 -d 9 -p ack -e 40 -c 0 -i 5362 -a 0 -x {10.0 9.0 2676 ------- null} + -t 3.04651 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5373 -a 0 -x {9.0 10.0 2691 ------- null} - -t 3.04651 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5373 -a 0 -x {9.0 10.0 2691 ------- null} h -t 3.04651 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5373 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.04656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5359 -a 0 -x {9.0 10.0 2684 ------- null} - -t 3.04656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5359 -a 0 -x {9.0 10.0 2684 ------- null} h -t 3.04656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5359 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.04666 -s 0 -d 9 -p ack -e 40 -c 0 -i 5366 -a 0 -x {10.0 9.0 2678 ------- null} - -t 3.04666 -s 0 -d 9 -p ack -e 40 -c 0 -i 5366 -a 0 -x {10.0 9.0 2678 ------- null} h -t 3.04666 -s 0 -d 9 -p ack -e 40 -c 0 -i 5366 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.04704 -s 10 -d 7 -p ack -e 40 -c 0 -i 5370 -a 0 -x {10.0 9.0 2680 ------- null} + -t 3.04704 -s 7 -d 0 -p ack -e 40 -c 0 -i 5370 -a 0 -x {10.0 9.0 2680 ------- null} h -t 3.04704 -s 7 -d 8 -p ack -e 40 -c 0 -i 5370 -a 0 -x {10.0 9.0 2680 ------- null} r -t 3.0471 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5369 -a 0 -x {9.0 10.0 2689 ------- null} + -t 3.0471 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5369 -a 0 -x {9.0 10.0 2689 ------- null} h -t 3.0471 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5369 -a 0 -x {9.0 10.0 2689 ------- null} r -t 3.04718 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5355 -a 0 -x {9.0 10.0 2682 ------- null} + -t 3.04718 -s 10 -d 7 -p ack -e 40 -c 0 -i 5374 -a 0 -x {10.0 9.0 2682 ------- null} - -t 3.04718 -s 10 -d 7 -p ack -e 40 -c 0 -i 5374 -a 0 -x {10.0 9.0 2682 ------- null} h -t 3.04718 -s 10 -d 7 -p ack -e 40 -c 0 -i 5374 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.04762 -s 0 -d 9 -p ack -e 40 -c 0 -i 5364 -a 0 -x {10.0 9.0 2677 ------- null} + -t 3.04762 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5375 -a 0 -x {9.0 10.0 2692 ------- null} - -t 3.04762 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5375 -a 0 -x {9.0 10.0 2692 ------- null} h -t 3.04762 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5375 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.04765 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5361 -a 0 -x {9.0 10.0 2685 ------- null} - -t 3.04765 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5361 -a 0 -x {9.0 10.0 2685 ------- null} h -t 3.04765 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5361 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.04781 -s 0 -d 9 -p ack -e 40 -c 0 -i 5368 -a 0 -x {10.0 9.0 2679 ------- null} - -t 3.04781 -s 0 -d 9 -p ack -e 40 -c 0 -i 5368 -a 0 -x {10.0 9.0 2679 ------- null} h -t 3.04781 -s 0 -d 9 -p ack -e 40 -c 0 -i 5368 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.04813 -s 10 -d 7 -p ack -e 40 -c 0 -i 5372 -a 0 -x {10.0 9.0 2681 ------- null} + -t 3.04813 -s 7 -d 0 -p ack -e 40 -c 0 -i 5372 -a 0 -x {10.0 9.0 2681 ------- null} h -t 3.04813 -s 7 -d 8 -p ack -e 40 -c 0 -i 5372 -a 0 -x {10.0 9.0 2681 ------- null} r -t 3.04822 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5371 -a 0 -x {9.0 10.0 2690 ------- null} + -t 3.04822 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5371 -a 0 -x {9.0 10.0 2690 ------- null} h -t 3.04822 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5371 -a 0 -x {9.0 10.0 2690 ------- null} r -t 3.04827 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5357 -a 0 -x {9.0 10.0 2683 ------- null} + -t 3.04827 -s 10 -d 7 -p ack -e 40 -c 0 -i 5376 -a 0 -x {10.0 9.0 2683 ------- null} - -t 3.04827 -s 10 -d 7 -p ack -e 40 -c 0 -i 5376 -a 0 -x {10.0 9.0 2683 ------- null} h -t 3.04827 -s 10 -d 7 -p ack -e 40 -c 0 -i 5376 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.04869 -s 0 -d 9 -p ack -e 40 -c 0 -i 5366 -a 0 -x {10.0 9.0 2678 ------- null} + -t 3.04869 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5377 -a 0 -x {9.0 10.0 2693 ------- null} - -t 3.04869 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5377 -a 0 -x {9.0 10.0 2693 ------- null} h -t 3.04869 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5377 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.04874 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5363 -a 0 -x {9.0 10.0 2686 ------- null} - -t 3.04874 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5363 -a 0 -x {9.0 10.0 2686 ------- null} h -t 3.04874 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5363 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.04888 -s 0 -d 9 -p ack -e 40 -c 0 -i 5370 -a 0 -x {10.0 9.0 2680 ------- null} - -t 3.04888 -s 0 -d 9 -p ack -e 40 -c 0 -i 5370 -a 0 -x {10.0 9.0 2680 ------- null} h -t 3.04888 -s 0 -d 9 -p ack -e 40 -c 0 -i 5370 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.04922 -s 10 -d 7 -p ack -e 40 -c 0 -i 5374 -a 0 -x {10.0 9.0 2682 ------- null} + -t 3.04922 -s 7 -d 0 -p ack -e 40 -c 0 -i 5374 -a 0 -x {10.0 9.0 2682 ------- null} h -t 3.04922 -s 7 -d 8 -p ack -e 40 -c 0 -i 5374 -a 0 -x {10.0 9.0 2682 ------- null} r -t 3.04931 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5373 -a 0 -x {9.0 10.0 2691 ------- null} + -t 3.04931 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5373 -a 0 -x {9.0 10.0 2691 ------- null} h -t 3.04931 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5373 -a 0 -x {9.0 10.0 2691 ------- null} r -t 3.04936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5359 -a 0 -x {9.0 10.0 2684 ------- null} + -t 3.04936 -s 10 -d 7 -p ack -e 40 -c 0 -i 5378 -a 0 -x {10.0 9.0 2684 ------- null} - -t 3.04936 -s 10 -d 7 -p ack -e 40 -c 0 -i 5378 -a 0 -x {10.0 9.0 2684 ------- null} h -t 3.04936 -s 10 -d 7 -p ack -e 40 -c 0 -i 5378 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.04982 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5365 -a 0 -x {9.0 10.0 2687 ------- null} - -t 3.04982 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5365 -a 0 -x {9.0 10.0 2687 ------- null} h -t 3.04982 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5365 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.04984 -s 0 -d 9 -p ack -e 40 -c 0 -i 5368 -a 0 -x {10.0 9.0 2679 ------- null} + -t 3.04984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5379 -a 0 -x {9.0 10.0 2694 ------- null} - -t 3.04984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5379 -a 0 -x {9.0 10.0 2694 ------- null} h -t 3.04984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5379 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.04992 -s 0 -d 9 -p ack -e 40 -c 0 -i 5372 -a 0 -x {10.0 9.0 2681 ------- null} - -t 3.04992 -s 0 -d 9 -p ack -e 40 -c 0 -i 5372 -a 0 -x {10.0 9.0 2681 ------- null} h -t 3.04992 -s 0 -d 9 -p ack -e 40 -c 0 -i 5372 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.0503 -s 10 -d 7 -p ack -e 40 -c 0 -i 5376 -a 0 -x {10.0 9.0 2683 ------- null} + -t 3.0503 -s 7 -d 0 -p ack -e 40 -c 0 -i 5376 -a 0 -x {10.0 9.0 2683 ------- null} h -t 3.0503 -s 7 -d 8 -p ack -e 40 -c 0 -i 5376 -a 0 -x {10.0 9.0 2683 ------- null} r -t 3.05042 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5375 -a 0 -x {9.0 10.0 2692 ------- null} + -t 3.05042 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5375 -a 0 -x {9.0 10.0 2692 ------- null} h -t 3.05042 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5375 -a 0 -x {9.0 10.0 2692 ------- null} r -t 3.05045 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5361 -a 0 -x {9.0 10.0 2685 ------- null} + -t 3.05045 -s 10 -d 7 -p ack -e 40 -c 0 -i 5380 -a 0 -x {10.0 9.0 2685 ------- null} - -t 3.05045 -s 10 -d 7 -p ack -e 40 -c 0 -i 5380 -a 0 -x {10.0 9.0 2685 ------- null} h -t 3.05045 -s 10 -d 7 -p ack -e 40 -c 0 -i 5380 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.05091 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5367 -a 0 -x {9.0 10.0 2688 ------- null} - -t 3.05091 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5367 -a 0 -x {9.0 10.0 2688 ------- null} h -t 3.05091 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5367 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.05091 -s 0 -d 9 -p ack -e 40 -c 0 -i 5370 -a 0 -x {10.0 9.0 2680 ------- null} + -t 3.05091 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5381 -a 0 -x {9.0 10.0 2695 ------- null} - -t 3.05091 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5381 -a 0 -x {9.0 10.0 2695 ------- null} h -t 3.05091 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5381 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.05104 -s 0 -d 9 -p ack -e 40 -c 0 -i 5374 -a 0 -x {10.0 9.0 2682 ------- null} - -t 3.05104 -s 0 -d 9 -p ack -e 40 -c 0 -i 5374 -a 0 -x {10.0 9.0 2682 ------- null} h -t 3.05104 -s 0 -d 9 -p ack -e 40 -c 0 -i 5374 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.05139 -s 10 -d 7 -p ack -e 40 -c 0 -i 5378 -a 0 -x {10.0 9.0 2684 ------- null} + -t 3.05139 -s 7 -d 0 -p ack -e 40 -c 0 -i 5378 -a 0 -x {10.0 9.0 2684 ------- null} h -t 3.05139 -s 7 -d 8 -p ack -e 40 -c 0 -i 5378 -a 0 -x {10.0 9.0 2684 ------- null} r -t 3.05149 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5377 -a 0 -x {9.0 10.0 2693 ------- null} + -t 3.05149 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5377 -a 0 -x {9.0 10.0 2693 ------- null} h -t 3.05149 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5377 -a 0 -x {9.0 10.0 2693 ------- null} r -t 3.05154 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5363 -a 0 -x {9.0 10.0 2686 ------- null} + -t 3.05154 -s 10 -d 7 -p ack -e 40 -c 0 -i 5382 -a 0 -x {10.0 9.0 2686 ------- null} - -t 3.05154 -s 10 -d 7 -p ack -e 40 -c 0 -i 5382 -a 0 -x {10.0 9.0 2686 ------- null} h -t 3.05154 -s 10 -d 7 -p ack -e 40 -c 0 -i 5382 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.05195 -s 0 -d 9 -p ack -e 40 -c 0 -i 5372 -a 0 -x {10.0 9.0 2681 ------- null} + -t 3.05195 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5383 -a 0 -x {9.0 10.0 2696 ------- null} - -t 3.05195 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5383 -a 0 -x {9.0 10.0 2696 ------- null} h -t 3.05195 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5383 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.052 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5369 -a 0 -x {9.0 10.0 2689 ------- null} - -t 3.052 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5369 -a 0 -x {9.0 10.0 2689 ------- null} h -t 3.052 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5369 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.05221 -s 0 -d 9 -p ack -e 40 -c 0 -i 5376 -a 0 -x {10.0 9.0 2683 ------- null} - -t 3.05221 -s 0 -d 9 -p ack -e 40 -c 0 -i 5376 -a 0 -x {10.0 9.0 2683 ------- null} h -t 3.05221 -s 0 -d 9 -p ack -e 40 -c 0 -i 5376 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.05248 -s 10 -d 7 -p ack -e 40 -c 0 -i 5380 -a 0 -x {10.0 9.0 2685 ------- null} + -t 3.05248 -s 7 -d 0 -p ack -e 40 -c 0 -i 5380 -a 0 -x {10.0 9.0 2685 ------- null} h -t 3.05248 -s 7 -d 8 -p ack -e 40 -c 0 -i 5380 -a 0 -x {10.0 9.0 2685 ------- null} r -t 3.05262 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5365 -a 0 -x {9.0 10.0 2687 ------- null} + -t 3.05262 -s 10 -d 7 -p ack -e 40 -c 0 -i 5384 -a 0 -x {10.0 9.0 2687 ------- null} - -t 3.05262 -s 10 -d 7 -p ack -e 40 -c 0 -i 5384 -a 0 -x {10.0 9.0 2687 ------- null} h -t 3.05262 -s 10 -d 7 -p ack -e 40 -c 0 -i 5384 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.05264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5379 -a 0 -x {9.0 10.0 2694 ------- null} + -t 3.05264 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5379 -a 0 -x {9.0 10.0 2694 ------- null} h -t 3.05264 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5379 -a 0 -x {9.0 10.0 2694 ------- null} r -t 3.05307 -s 0 -d 9 -p ack -e 40 -c 0 -i 5374 -a 0 -x {10.0 9.0 2682 ------- null} + -t 3.05307 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5385 -a 0 -x {9.0 10.0 2697 ------- null} - -t 3.05307 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5385 -a 0 -x {9.0 10.0 2697 ------- null} h -t 3.05307 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5385 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.05309 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5371 -a 0 -x {9.0 10.0 2690 ------- null} - -t 3.05309 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5371 -a 0 -x {9.0 10.0 2690 ------- null} h -t 3.05309 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5371 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.05315 -s 0 -d 9 -p ack -e 40 -c 0 -i 5378 -a 0 -x {10.0 9.0 2684 ------- null} - -t 3.05315 -s 0 -d 9 -p ack -e 40 -c 0 -i 5378 -a 0 -x {10.0 9.0 2684 ------- null} h -t 3.05315 -s 0 -d 9 -p ack -e 40 -c 0 -i 5378 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.05357 -s 10 -d 7 -p ack -e 40 -c 0 -i 5382 -a 0 -x {10.0 9.0 2686 ------- null} + -t 3.05357 -s 7 -d 0 -p ack -e 40 -c 0 -i 5382 -a 0 -x {10.0 9.0 2686 ------- null} h -t 3.05357 -s 7 -d 8 -p ack -e 40 -c 0 -i 5382 -a 0 -x {10.0 9.0 2686 ------- null} r -t 3.05371 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5367 -a 0 -x {9.0 10.0 2688 ------- null} + -t 3.05371 -s 10 -d 7 -p ack -e 40 -c 0 -i 5386 -a 0 -x {10.0 9.0 2688 ------- null} - -t 3.05371 -s 10 -d 7 -p ack -e 40 -c 0 -i 5386 -a 0 -x {10.0 9.0 2688 ------- null} h -t 3.05371 -s 10 -d 7 -p ack -e 40 -c 0 -i 5386 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.05371 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5381 -a 0 -x {9.0 10.0 2695 ------- null} + -t 3.05371 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5381 -a 0 -x {9.0 10.0 2695 ------- null} h -t 3.05371 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5381 -a 0 -x {9.0 10.0 2695 ------- null} + -t 3.05418 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5373 -a 0 -x {9.0 10.0 2691 ------- null} - -t 3.05418 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5373 -a 0 -x {9.0 10.0 2691 ------- null} h -t 3.05418 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5373 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.05424 -s 0 -d 9 -p ack -e 40 -c 0 -i 5376 -a 0 -x {10.0 9.0 2683 ------- null} + -t 3.05424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5387 -a 0 -x {9.0 10.0 2698 ------- null} - -t 3.05424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5387 -a 0 -x {9.0 10.0 2698 ------- null} h -t 3.05424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5387 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.05443 -s 0 -d 9 -p ack -e 40 -c 0 -i 5380 -a 0 -x {10.0 9.0 2685 ------- null} - -t 3.05443 -s 0 -d 9 -p ack -e 40 -c 0 -i 5380 -a 0 -x {10.0 9.0 2685 ------- null} h -t 3.05443 -s 0 -d 9 -p ack -e 40 -c 0 -i 5380 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.05466 -s 10 -d 7 -p ack -e 40 -c 0 -i 5384 -a 0 -x {10.0 9.0 2687 ------- null} + -t 3.05466 -s 7 -d 0 -p ack -e 40 -c 0 -i 5384 -a 0 -x {10.0 9.0 2687 ------- null} h -t 3.05466 -s 7 -d 8 -p ack -e 40 -c 0 -i 5384 -a 0 -x {10.0 9.0 2687 ------- null} r -t 3.05475 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5383 -a 0 -x {9.0 10.0 2696 ------- null} + -t 3.05475 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5383 -a 0 -x {9.0 10.0 2696 ------- null} h -t 3.05475 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5383 -a 0 -x {9.0 10.0 2696 ------- null} r -t 3.0548 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5369 -a 0 -x {9.0 10.0 2689 ------- null} + -t 3.0548 -s 10 -d 7 -p ack -e 40 -c 0 -i 5388 -a 0 -x {10.0 9.0 2689 ------- null} - -t 3.0548 -s 10 -d 7 -p ack -e 40 -c 0 -i 5388 -a 0 -x {10.0 9.0 2689 ------- null} h -t 3.0548 -s 10 -d 7 -p ack -e 40 -c 0 -i 5388 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.05518 -s 0 -d 9 -p ack -e 40 -c 0 -i 5378 -a 0 -x {10.0 9.0 2684 ------- null} + -t 3.05518 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5389 -a 0 -x {9.0 10.0 2699 ------- null} - -t 3.05518 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5389 -a 0 -x {9.0 10.0 2699 ------- null} h -t 3.05518 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5389 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.0555 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5375 -a 0 -x {9.0 10.0 2692 ------- null} - -t 3.0555 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5375 -a 0 -x {9.0 10.0 2692 ------- null} h -t 3.0555 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5375 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.05574 -s 10 -d 7 -p ack -e 40 -c 0 -i 5386 -a 0 -x {10.0 9.0 2688 ------- null} + -t 3.05574 -s 7 -d 0 -p ack -e 40 -c 0 -i 5386 -a 0 -x {10.0 9.0 2688 ------- null} h -t 3.05574 -s 7 -d 8 -p ack -e 40 -c 0 -i 5386 -a 0 -x {10.0 9.0 2688 ------- null} + -t 3.05578 -s 0 -d 9 -p ack -e 40 -c 0 -i 5382 -a 0 -x {10.0 9.0 2686 ------- null} - -t 3.05578 -s 0 -d 9 -p ack -e 40 -c 0 -i 5382 -a 0 -x {10.0 9.0 2686 ------- null} h -t 3.05578 -s 0 -d 9 -p ack -e 40 -c 0 -i 5382 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.05587 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5385 -a 0 -x {9.0 10.0 2697 ------- null} + -t 3.05587 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5385 -a 0 -x {9.0 10.0 2697 ------- null} h -t 3.05587 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5385 -a 0 -x {9.0 10.0 2697 ------- null} r -t 3.05589 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5371 -a 0 -x {9.0 10.0 2690 ------- null} + -t 3.05589 -s 10 -d 7 -p ack -e 40 -c 0 -i 5390 -a 0 -x {10.0 9.0 2690 ------- null} - -t 3.05589 -s 10 -d 7 -p ack -e 40 -c 0 -i 5390 -a 0 -x {10.0 9.0 2690 ------- null} h -t 3.05589 -s 10 -d 7 -p ack -e 40 -c 0 -i 5390 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.05646 -s 0 -d 9 -p ack -e 40 -c 0 -i 5380 -a 0 -x {10.0 9.0 2685 ------- null} + -t 3.05646 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5391 -a 0 -x {9.0 10.0 2700 ------- null} - -t 3.05646 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5391 -a 0 -x {9.0 10.0 2700 ------- null} h -t 3.05646 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5391 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.05677 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5377 -a 0 -x {9.0 10.0 2693 ------- null} - -t 3.05677 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5377 -a 0 -x {9.0 10.0 2693 ------- null} h -t 3.05677 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5377 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.05683 -s 10 -d 7 -p ack -e 40 -c 0 -i 5388 -a 0 -x {10.0 9.0 2689 ------- null} + -t 3.05683 -s 7 -d 0 -p ack -e 40 -c 0 -i 5388 -a 0 -x {10.0 9.0 2689 ------- null} h -t 3.05683 -s 7 -d 8 -p ack -e 40 -c 0 -i 5388 -a 0 -x {10.0 9.0 2689 ------- null} r -t 3.05698 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5373 -a 0 -x {9.0 10.0 2691 ------- null} + -t 3.05698 -s 10 -d 7 -p ack -e 40 -c 0 -i 5392 -a 0 -x {10.0 9.0 2691 ------- null} - -t 3.05698 -s 10 -d 7 -p ack -e 40 -c 0 -i 5392 -a 0 -x {10.0 9.0 2691 ------- null} h -t 3.05698 -s 10 -d 7 -p ack -e 40 -c 0 -i 5392 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.05701 -s 0 -d 9 -p ack -e 40 -c 0 -i 5384 -a 0 -x {10.0 9.0 2687 ------- null} - -t 3.05701 -s 0 -d 9 -p ack -e 40 -c 0 -i 5384 -a 0 -x {10.0 9.0 2687 ------- null} h -t 3.05701 -s 0 -d 9 -p ack -e 40 -c 0 -i 5384 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.05704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5387 -a 0 -x {9.0 10.0 2698 ------- null} + -t 3.05704 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5387 -a 0 -x {9.0 10.0 2698 ------- null} h -t 3.05704 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5387 -a 0 -x {9.0 10.0 2698 ------- null} r -t 3.05781 -s 0 -d 9 -p ack -e 40 -c 0 -i 5382 -a 0 -x {10.0 9.0 2686 ------- null} + -t 3.05781 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5393 -a 0 -x {9.0 10.0 2701 ------- null} - -t 3.05781 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5393 -a 0 -x {9.0 10.0 2701 ------- null} h -t 3.05781 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5393 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.05786 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5379 -a 0 -x {9.0 10.0 2694 ------- null} - -t 3.05786 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5379 -a 0 -x {9.0 10.0 2694 ------- null} h -t 3.05786 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5379 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.05792 -s 10 -d 7 -p ack -e 40 -c 0 -i 5390 -a 0 -x {10.0 9.0 2690 ------- null} + -t 3.05792 -s 7 -d 0 -p ack -e 40 -c 0 -i 5390 -a 0 -x {10.0 9.0 2690 ------- null} h -t 3.05792 -s 7 -d 8 -p ack -e 40 -c 0 -i 5390 -a 0 -x {10.0 9.0 2690 ------- null} r -t 3.05798 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5389 -a 0 -x {9.0 10.0 2699 ------- null} + -t 3.05798 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5389 -a 0 -x {9.0 10.0 2699 ------- null} h -t 3.05798 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5389 -a 0 -x {9.0 10.0 2699 ------- null} + -t 3.05816 -s 0 -d 9 -p ack -e 40 -c 0 -i 5386 -a 0 -x {10.0 9.0 2688 ------- null} - -t 3.05816 -s 0 -d 9 -p ack -e 40 -c 0 -i 5386 -a 0 -x {10.0 9.0 2688 ------- null} h -t 3.05816 -s 0 -d 9 -p ack -e 40 -c 0 -i 5386 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.0583 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5375 -a 0 -x {9.0 10.0 2692 ------- null} + -t 3.0583 -s 10 -d 7 -p ack -e 40 -c 0 -i 5394 -a 0 -x {10.0 9.0 2692 ------- null} - -t 3.0583 -s 10 -d 7 -p ack -e 40 -c 0 -i 5394 -a 0 -x {10.0 9.0 2692 ------- null} h -t 3.0583 -s 10 -d 7 -p ack -e 40 -c 0 -i 5394 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.05901 -s 10 -d 7 -p ack -e 40 -c 0 -i 5392 -a 0 -x {10.0 9.0 2691 ------- null} + -t 3.05901 -s 7 -d 0 -p ack -e 40 -c 0 -i 5392 -a 0 -x {10.0 9.0 2691 ------- null} h -t 3.05901 -s 7 -d 8 -p ack -e 40 -c 0 -i 5392 -a 0 -x {10.0 9.0 2691 ------- null} r -t 3.05904 -s 0 -d 9 -p ack -e 40 -c 0 -i 5384 -a 0 -x {10.0 9.0 2687 ------- null} + -t 3.05904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5395 -a 0 -x {9.0 10.0 2702 ------- null} - -t 3.05904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5395 -a 0 -x {9.0 10.0 2702 ------- null} h -t 3.05904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5395 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.05918 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5381 -a 0 -x {9.0 10.0 2695 ------- null} - -t 3.05918 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5381 -a 0 -x {9.0 10.0 2695 ------- null} h -t 3.05918 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5381 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.05926 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5391 -a 0 -x {9.0 10.0 2700 ------- null} + -t 3.05926 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5391 -a 0 -x {9.0 10.0 2700 ------- null} h -t 3.05926 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5391 -a 0 -x {9.0 10.0 2700 ------- null} + -t 3.05934 -s 0 -d 9 -p ack -e 40 -c 0 -i 5388 -a 0 -x {10.0 9.0 2689 ------- null} - -t 3.05934 -s 0 -d 9 -p ack -e 40 -c 0 -i 5388 -a 0 -x {10.0 9.0 2689 ------- null} h -t 3.05934 -s 0 -d 9 -p ack -e 40 -c 0 -i 5388 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.05957 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5377 -a 0 -x {9.0 10.0 2693 ------- null} + -t 3.05957 -s 10 -d 7 -p ack -e 40 -c 0 -i 5396 -a 0 -x {10.0 9.0 2693 ------- null} - -t 3.05957 -s 10 -d 7 -p ack -e 40 -c 0 -i 5396 -a 0 -x {10.0 9.0 2693 ------- null} h -t 3.05957 -s 10 -d 7 -p ack -e 40 -c 0 -i 5396 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.06019 -s 0 -d 9 -p ack -e 40 -c 0 -i 5386 -a 0 -x {10.0 9.0 2688 ------- null} + -t 3.06019 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5397 -a 0 -x {9.0 10.0 2703 ------- null} - -t 3.06019 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5397 -a 0 -x {9.0 10.0 2703 ------- null} h -t 3.06019 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5397 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.06027 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5383 -a 0 -x {9.0 10.0 2696 ------- null} - -t 3.06027 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5383 -a 0 -x {9.0 10.0 2696 ------- null} h -t 3.06027 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5383 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.06034 -s 10 -d 7 -p ack -e 40 -c 0 -i 5394 -a 0 -x {10.0 9.0 2692 ------- null} + -t 3.06034 -s 7 -d 0 -p ack -e 40 -c 0 -i 5394 -a 0 -x {10.0 9.0 2692 ------- null} h -t 3.06034 -s 7 -d 8 -p ack -e 40 -c 0 -i 5394 -a 0 -x {10.0 9.0 2692 ------- null} + -t 3.06051 -s 0 -d 9 -p ack -e 40 -c 0 -i 5390 -a 0 -x {10.0 9.0 2690 ------- null} - -t 3.06051 -s 0 -d 9 -p ack -e 40 -c 0 -i 5390 -a 0 -x {10.0 9.0 2690 ------- null} h -t 3.06051 -s 0 -d 9 -p ack -e 40 -c 0 -i 5390 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.06061 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5393 -a 0 -x {9.0 10.0 2701 ------- null} + -t 3.06061 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5393 -a 0 -x {9.0 10.0 2701 ------- null} h -t 3.06061 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5393 -a 0 -x {9.0 10.0 2701 ------- null} r -t 3.06066 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5379 -a 0 -x {9.0 10.0 2694 ------- null} + -t 3.06066 -s 10 -d 7 -p ack -e 40 -c 0 -i 5398 -a 0 -x {10.0 9.0 2694 ------- null} - -t 3.06066 -s 10 -d 7 -p ack -e 40 -c 0 -i 5398 -a 0 -x {10.0 9.0 2694 ------- null} h -t 3.06066 -s 10 -d 7 -p ack -e 40 -c 0 -i 5398 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.06136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5385 -a 0 -x {9.0 10.0 2697 ------- null} - -t 3.06136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5385 -a 0 -x {9.0 10.0 2697 ------- null} h -t 3.06136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5385 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.06138 -s 0 -d 9 -p ack -e 40 -c 0 -i 5388 -a 0 -x {10.0 9.0 2689 ------- null} + -t 3.06138 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5399 -a 0 -x {9.0 10.0 2704 ------- null} - -t 3.06138 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5399 -a 0 -x {9.0 10.0 2704 ------- null} h -t 3.06138 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5399 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.0616 -s 10 -d 7 -p ack -e 40 -c 0 -i 5396 -a 0 -x {10.0 9.0 2693 ------- null} + -t 3.0616 -s 7 -d 0 -p ack -e 40 -c 0 -i 5396 -a 0 -x {10.0 9.0 2693 ------- null} h -t 3.0616 -s 7 -d 8 -p ack -e 40 -c 0 -i 5396 -a 0 -x {10.0 9.0 2693 ------- null} + -t 3.06165 -s 0 -d 9 -p ack -e 40 -c 0 -i 5392 -a 0 -x {10.0 9.0 2691 ------- null} - -t 3.06165 -s 0 -d 9 -p ack -e 40 -c 0 -i 5392 -a 0 -x {10.0 9.0 2691 ------- null} h -t 3.06165 -s 0 -d 9 -p ack -e 40 -c 0 -i 5392 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.06184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5395 -a 0 -x {9.0 10.0 2702 ------- null} + -t 3.06184 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5395 -a 0 -x {9.0 10.0 2702 ------- null} h -t 3.06184 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5395 -a 0 -x {9.0 10.0 2702 ------- null} r -t 3.06198 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5381 -a 0 -x {9.0 10.0 2695 ------- null} + -t 3.06198 -s 10 -d 7 -p ack -e 40 -c 0 -i 5400 -a 0 -x {10.0 9.0 2695 ------- null} - -t 3.06198 -s 10 -d 7 -p ack -e 40 -c 0 -i 5400 -a 0 -x {10.0 9.0 2695 ------- null} h -t 3.06198 -s 10 -d 7 -p ack -e 40 -c 0 -i 5400 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.06254 -s 0 -d 9 -p ack -e 40 -c 0 -i 5390 -a 0 -x {10.0 9.0 2690 ------- null} + -t 3.06254 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5401 -a 0 -x {9.0 10.0 2705 ------- null} - -t 3.06254 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5401 -a 0 -x {9.0 10.0 2705 ------- null} h -t 3.06254 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5401 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.06269 -s 10 -d 7 -p ack -e 40 -c 0 -i 5398 -a 0 -x {10.0 9.0 2694 ------- null} + -t 3.06269 -s 7 -d 0 -p ack -e 40 -c 0 -i 5398 -a 0 -x {10.0 9.0 2694 ------- null} h -t 3.06269 -s 7 -d 8 -p ack -e 40 -c 0 -i 5398 -a 0 -x {10.0 9.0 2694 ------- null} + -t 3.06272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5387 -a 0 -x {9.0 10.0 2698 ------- null} - -t 3.06272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5387 -a 0 -x {9.0 10.0 2698 ------- null} h -t 3.06272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5387 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.06296 -s 0 -d 9 -p ack -e 40 -c 0 -i 5394 -a 0 -x {10.0 9.0 2692 ------- null} - -t 3.06296 -s 0 -d 9 -p ack -e 40 -c 0 -i 5394 -a 0 -x {10.0 9.0 2692 ------- null} h -t 3.06296 -s 0 -d 9 -p ack -e 40 -c 0 -i 5394 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.06299 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5397 -a 0 -x {9.0 10.0 2703 ------- null} + -t 3.06299 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5397 -a 0 -x {9.0 10.0 2703 ------- null} h -t 3.06299 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5397 -a 0 -x {9.0 10.0 2703 ------- null} r -t 3.06307 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5383 -a 0 -x {9.0 10.0 2696 ------- null} + -t 3.06307 -s 10 -d 7 -p ack -e 40 -c 0 -i 5402 -a 0 -x {10.0 9.0 2696 ------- null} - -t 3.06307 -s 10 -d 7 -p ack -e 40 -c 0 -i 5402 -a 0 -x {10.0 9.0 2696 ------- null} h -t 3.06307 -s 10 -d 7 -p ack -e 40 -c 0 -i 5402 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.06368 -s 0 -d 9 -p ack -e 40 -c 0 -i 5392 -a 0 -x {10.0 9.0 2691 ------- null} + -t 3.06368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5403 -a 0 -x {9.0 10.0 2706 ------- null} - -t 3.06368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5403 -a 0 -x {9.0 10.0 2706 ------- null} h -t 3.06368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5403 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.06381 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5389 -a 0 -x {9.0 10.0 2699 ------- null} - -t 3.06381 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5389 -a 0 -x {9.0 10.0 2699 ------- null} h -t 3.06381 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5389 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.06402 -s 10 -d 7 -p ack -e 40 -c 0 -i 5400 -a 0 -x {10.0 9.0 2695 ------- null} + -t 3.06402 -s 7 -d 0 -p ack -e 40 -c 0 -i 5400 -a 0 -x {10.0 9.0 2695 ------- null} h -t 3.06402 -s 7 -d 8 -p ack -e 40 -c 0 -i 5400 -a 0 -x {10.0 9.0 2695 ------- null} + -t 3.06405 -s 0 -d 9 -p ack -e 40 -c 0 -i 5396 -a 0 -x {10.0 9.0 2693 ------- null} - -t 3.06405 -s 0 -d 9 -p ack -e 40 -c 0 -i 5396 -a 0 -x {10.0 9.0 2693 ------- null} h -t 3.06405 -s 0 -d 9 -p ack -e 40 -c 0 -i 5396 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.06416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5385 -a 0 -x {9.0 10.0 2697 ------- null} + -t 3.06416 -s 10 -d 7 -p ack -e 40 -c 0 -i 5404 -a 0 -x {10.0 9.0 2697 ------- null} - -t 3.06416 -s 10 -d 7 -p ack -e 40 -c 0 -i 5404 -a 0 -x {10.0 9.0 2697 ------- null} h -t 3.06416 -s 10 -d 7 -p ack -e 40 -c 0 -i 5404 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.06418 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5399 -a 0 -x {9.0 10.0 2704 ------- null} + -t 3.06418 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5399 -a 0 -x {9.0 10.0 2704 ------- null} h -t 3.06418 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5399 -a 0 -x {9.0 10.0 2704 ------- null} + -t 3.0649 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5391 -a 0 -x {9.0 10.0 2700 ------- null} - -t 3.0649 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5391 -a 0 -x {9.0 10.0 2700 ------- null} h -t 3.0649 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5391 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.06499 -s 0 -d 9 -p ack -e 40 -c 0 -i 5394 -a 0 -x {10.0 9.0 2692 ------- null} + -t 3.06499 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5405 -a 0 -x {9.0 10.0 2707 ------- null} - -t 3.06499 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5405 -a 0 -x {9.0 10.0 2707 ------- null} h -t 3.06499 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5405 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.06509 -s 0 -d 9 -p ack -e 40 -c 0 -i 5398 -a 0 -x {10.0 9.0 2694 ------- null} - -t 3.06509 -s 0 -d 9 -p ack -e 40 -c 0 -i 5398 -a 0 -x {10.0 9.0 2694 ------- null} h -t 3.06509 -s 0 -d 9 -p ack -e 40 -c 0 -i 5398 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.0651 -s 10 -d 7 -p ack -e 40 -c 0 -i 5402 -a 0 -x {10.0 9.0 2696 ------- null} + -t 3.0651 -s 7 -d 0 -p ack -e 40 -c 0 -i 5402 -a 0 -x {10.0 9.0 2696 ------- null} h -t 3.0651 -s 7 -d 8 -p ack -e 40 -c 0 -i 5402 -a 0 -x {10.0 9.0 2696 ------- null} r -t 3.06534 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5401 -a 0 -x {9.0 10.0 2705 ------- null} + -t 3.06534 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5401 -a 0 -x {9.0 10.0 2705 ------- null} h -t 3.06534 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5401 -a 0 -x {9.0 10.0 2705 ------- null} r -t 3.06552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5387 -a 0 -x {9.0 10.0 2698 ------- null} + -t 3.06552 -s 10 -d 7 -p ack -e 40 -c 0 -i 5406 -a 0 -x {10.0 9.0 2698 ------- null} - -t 3.06552 -s 10 -d 7 -p ack -e 40 -c 0 -i 5406 -a 0 -x {10.0 9.0 2698 ------- null} h -t 3.06552 -s 10 -d 7 -p ack -e 40 -c 0 -i 5406 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.06598 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5393 -a 0 -x {9.0 10.0 2701 ------- null} - -t 3.06598 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5393 -a 0 -x {9.0 10.0 2701 ------- null} h -t 3.06598 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5393 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.06608 -s 0 -d 9 -p ack -e 40 -c 0 -i 5396 -a 0 -x {10.0 9.0 2693 ------- null} + -t 3.06608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5407 -a 0 -x {9.0 10.0 2708 ------- null} - -t 3.06608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5407 -a 0 -x {9.0 10.0 2708 ------- null} h -t 3.06608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5407 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.06619 -s 10 -d 7 -p ack -e 40 -c 0 -i 5404 -a 0 -x {10.0 9.0 2697 ------- null} + -t 3.06619 -s 7 -d 0 -p ack -e 40 -c 0 -i 5404 -a 0 -x {10.0 9.0 2697 ------- null} h -t 3.06619 -s 7 -d 8 -p ack -e 40 -c 0 -i 5404 -a 0 -x {10.0 9.0 2697 ------- null} + -t 3.06629 -s 0 -d 9 -p ack -e 40 -c 0 -i 5400 -a 0 -x {10.0 9.0 2695 ------- null} - -t 3.06629 -s 0 -d 9 -p ack -e 40 -c 0 -i 5400 -a 0 -x {10.0 9.0 2695 ------- null} h -t 3.06629 -s 0 -d 9 -p ack -e 40 -c 0 -i 5400 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.06648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5403 -a 0 -x {9.0 10.0 2706 ------- null} + -t 3.06648 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5403 -a 0 -x {9.0 10.0 2706 ------- null} h -t 3.06648 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5403 -a 0 -x {9.0 10.0 2706 ------- null} r -t 3.06661 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5389 -a 0 -x {9.0 10.0 2699 ------- null} + -t 3.06661 -s 10 -d 7 -p ack -e 40 -c 0 -i 5408 -a 0 -x {10.0 9.0 2699 ------- null} - -t 3.06661 -s 10 -d 7 -p ack -e 40 -c 0 -i 5408 -a 0 -x {10.0 9.0 2699 ------- null} h -t 3.06661 -s 10 -d 7 -p ack -e 40 -c 0 -i 5408 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.06712 -s 0 -d 9 -p ack -e 40 -c 0 -i 5398 -a 0 -x {10.0 9.0 2694 ------- null} + -t 3.06712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5409 -a 0 -x {9.0 10.0 2709 ------- null} - -t 3.06712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5409 -a 0 -x {9.0 10.0 2709 ------- null} h -t 3.06712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5409 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.06725 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5395 -a 0 -x {9.0 10.0 2702 ------- null} - -t 3.06725 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5395 -a 0 -x {9.0 10.0 2702 ------- null} h -t 3.06725 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5395 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.06736 -s 0 -d 9 -p ack -e 40 -c 0 -i 5402 -a 0 -x {10.0 9.0 2696 ------- null} - -t 3.06736 -s 0 -d 9 -p ack -e 40 -c 0 -i 5402 -a 0 -x {10.0 9.0 2696 ------- null} h -t 3.06736 -s 0 -d 9 -p ack -e 40 -c 0 -i 5402 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.06755 -s 10 -d 7 -p ack -e 40 -c 0 -i 5406 -a 0 -x {10.0 9.0 2698 ------- null} + -t 3.06755 -s 7 -d 0 -p ack -e 40 -c 0 -i 5406 -a 0 -x {10.0 9.0 2698 ------- null} h -t 3.06755 -s 7 -d 8 -p ack -e 40 -c 0 -i 5406 -a 0 -x {10.0 9.0 2698 ------- null} r -t 3.0677 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5391 -a 0 -x {9.0 10.0 2700 ------- null} + -t 3.0677 -s 10 -d 7 -p ack -e 40 -c 0 -i 5410 -a 0 -x {10.0 9.0 2700 ------- null} - -t 3.0677 -s 10 -d 7 -p ack -e 40 -c 0 -i 5410 -a 0 -x {10.0 9.0 2700 ------- null} h -t 3.0677 -s 10 -d 7 -p ack -e 40 -c 0 -i 5410 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.06779 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5405 -a 0 -x {9.0 10.0 2707 ------- null} + -t 3.06779 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5405 -a 0 -x {9.0 10.0 2707 ------- null} h -t 3.06779 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5405 -a 0 -x {9.0 10.0 2707 ------- null} r -t 3.06832 -s 0 -d 9 -p ack -e 40 -c 0 -i 5400 -a 0 -x {10.0 9.0 2695 ------- null} + -t 3.06832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5411 -a 0 -x {9.0 10.0 2710 ------- null} - -t 3.06832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5411 -a 0 -x {9.0 10.0 2710 ------- null} h -t 3.06832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5411 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.06834 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5397 -a 0 -x {9.0 10.0 2703 ------- null} - -t 3.06834 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5397 -a 0 -x {9.0 10.0 2703 ------- null} h -t 3.06834 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5397 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.06846 -s 0 -d 9 -p ack -e 40 -c 0 -i 5404 -a 0 -x {10.0 9.0 2697 ------- null} - -t 3.06846 -s 0 -d 9 -p ack -e 40 -c 0 -i 5404 -a 0 -x {10.0 9.0 2697 ------- null} h -t 3.06846 -s 0 -d 9 -p ack -e 40 -c 0 -i 5404 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.06864 -s 10 -d 7 -p ack -e 40 -c 0 -i 5408 -a 0 -x {10.0 9.0 2699 ------- null} + -t 3.06864 -s 7 -d 0 -p ack -e 40 -c 0 -i 5408 -a 0 -x {10.0 9.0 2699 ------- null} h -t 3.06864 -s 7 -d 8 -p ack -e 40 -c 0 -i 5408 -a 0 -x {10.0 9.0 2699 ------- null} r -t 3.06878 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5393 -a 0 -x {9.0 10.0 2701 ------- null} + -t 3.06878 -s 10 -d 7 -p ack -e 40 -c 0 -i 5412 -a 0 -x {10.0 9.0 2701 ------- null} - -t 3.06878 -s 10 -d 7 -p ack -e 40 -c 0 -i 5412 -a 0 -x {10.0 9.0 2701 ------- null} h -t 3.06878 -s 10 -d 7 -p ack -e 40 -c 0 -i 5412 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.06888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5407 -a 0 -x {9.0 10.0 2708 ------- null} + -t 3.06888 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5407 -a 0 -x {9.0 10.0 2708 ------- null} h -t 3.06888 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5407 -a 0 -x {9.0 10.0 2708 ------- null} r -t 3.06939 -s 0 -d 9 -p ack -e 40 -c 0 -i 5402 -a 0 -x {10.0 9.0 2696 ------- null} + -t 3.06939 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5413 -a 0 -x {9.0 10.0 2711 ------- null} - -t 3.06939 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5413 -a 0 -x {9.0 10.0 2711 ------- null} h -t 3.06939 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5413 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.06942 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5399 -a 0 -x {9.0 10.0 2704 ------- null} - -t 3.06942 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5399 -a 0 -x {9.0 10.0 2704 ------- null} h -t 3.06942 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5399 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.0697 -s 0 -d 9 -p ack -e 40 -c 0 -i 5406 -a 0 -x {10.0 9.0 2698 ------- null} - -t 3.0697 -s 0 -d 9 -p ack -e 40 -c 0 -i 5406 -a 0 -x {10.0 9.0 2698 ------- null} h -t 3.0697 -s 0 -d 9 -p ack -e 40 -c 0 -i 5406 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.06973 -s 10 -d 7 -p ack -e 40 -c 0 -i 5410 -a 0 -x {10.0 9.0 2700 ------- null} + -t 3.06973 -s 7 -d 0 -p ack -e 40 -c 0 -i 5410 -a 0 -x {10.0 9.0 2700 ------- null} h -t 3.06973 -s 7 -d 8 -p ack -e 40 -c 0 -i 5410 -a 0 -x {10.0 9.0 2700 ------- null} r -t 3.06992 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5409 -a 0 -x {9.0 10.0 2709 ------- null} + -t 3.06992 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5409 -a 0 -x {9.0 10.0 2709 ------- null} h -t 3.06992 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5409 -a 0 -x {9.0 10.0 2709 ------- null} r -t 3.07005 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5395 -a 0 -x {9.0 10.0 2702 ------- null} + -t 3.07005 -s 10 -d 7 -p ack -e 40 -c 0 -i 5414 -a 0 -x {10.0 9.0 2702 ------- null} - -t 3.07005 -s 10 -d 7 -p ack -e 40 -c 0 -i 5414 -a 0 -x {10.0 9.0 2702 ------- null} h -t 3.07005 -s 10 -d 7 -p ack -e 40 -c 0 -i 5414 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.0705 -s 0 -d 9 -p ack -e 40 -c 0 -i 5404 -a 0 -x {10.0 9.0 2697 ------- null} + -t 3.0705 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5415 -a 0 -x {9.0 10.0 2712 ------- null} - -t 3.0705 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5415 -a 0 -x {9.0 10.0 2712 ------- null} h -t 3.0705 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5415 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.07058 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5401 -a 0 -x {9.0 10.0 2705 ------- null} - -t 3.07058 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5401 -a 0 -x {9.0 10.0 2705 ------- null} h -t 3.07058 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5401 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.0708 -s 0 -d 9 -p ack -e 40 -c 0 -i 5408 -a 0 -x {10.0 9.0 2699 ------- null} - -t 3.0708 -s 0 -d 9 -p ack -e 40 -c 0 -i 5408 -a 0 -x {10.0 9.0 2699 ------- null} h -t 3.0708 -s 0 -d 9 -p ack -e 40 -c 0 -i 5408 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.07082 -s 10 -d 7 -p ack -e 40 -c 0 -i 5412 -a 0 -x {10.0 9.0 2701 ------- null} + -t 3.07082 -s 7 -d 0 -p ack -e 40 -c 0 -i 5412 -a 0 -x {10.0 9.0 2701 ------- null} h -t 3.07082 -s 7 -d 8 -p ack -e 40 -c 0 -i 5412 -a 0 -x {10.0 9.0 2701 ------- null} r -t 3.07112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5411 -a 0 -x {9.0 10.0 2710 ------- null} + -t 3.07112 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5411 -a 0 -x {9.0 10.0 2710 ------- null} h -t 3.07112 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5411 -a 0 -x {9.0 10.0 2710 ------- null} r -t 3.07114 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5397 -a 0 -x {9.0 10.0 2703 ------- null} + -t 3.07114 -s 10 -d 7 -p ack -e 40 -c 0 -i 5416 -a 0 -x {10.0 9.0 2703 ------- null} - -t 3.07114 -s 10 -d 7 -p ack -e 40 -c 0 -i 5416 -a 0 -x {10.0 9.0 2703 ------- null} h -t 3.07114 -s 10 -d 7 -p ack -e 40 -c 0 -i 5416 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.07166 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5403 -a 0 -x {9.0 10.0 2706 ------- null} - -t 3.07166 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5403 -a 0 -x {9.0 10.0 2706 ------- null} h -t 3.07166 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5403 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.07173 -s 0 -d 9 -p ack -e 40 -c 0 -i 5406 -a 0 -x {10.0 9.0 2698 ------- null} + -t 3.07173 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5417 -a 0 -x {9.0 10.0 2713 ------- null} - -t 3.07173 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5417 -a 0 -x {9.0 10.0 2713 ------- null} h -t 3.07173 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5417 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.0719 -s 0 -d 9 -p ack -e 40 -c 0 -i 5410 -a 0 -x {10.0 9.0 2700 ------- null} - -t 3.0719 -s 0 -d 9 -p ack -e 40 -c 0 -i 5410 -a 0 -x {10.0 9.0 2700 ------- null} h -t 3.0719 -s 0 -d 9 -p ack -e 40 -c 0 -i 5410 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.07208 -s 10 -d 7 -p ack -e 40 -c 0 -i 5414 -a 0 -x {10.0 9.0 2702 ------- null} + -t 3.07208 -s 7 -d 0 -p ack -e 40 -c 0 -i 5414 -a 0 -x {10.0 9.0 2702 ------- null} h -t 3.07208 -s 7 -d 8 -p ack -e 40 -c 0 -i 5414 -a 0 -x {10.0 9.0 2702 ------- null} r -t 3.07219 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5413 -a 0 -x {9.0 10.0 2711 ------- null} + -t 3.07219 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5413 -a 0 -x {9.0 10.0 2711 ------- null} h -t 3.07219 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5413 -a 0 -x {9.0 10.0 2711 ------- null} r -t 3.07222 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5399 -a 0 -x {9.0 10.0 2704 ------- null} + -t 3.07222 -s 10 -d 7 -p ack -e 40 -c 0 -i 5418 -a 0 -x {10.0 9.0 2704 ------- null} - -t 3.07222 -s 10 -d 7 -p ack -e 40 -c 0 -i 5418 -a 0 -x {10.0 9.0 2704 ------- null} h -t 3.07222 -s 10 -d 7 -p ack -e 40 -c 0 -i 5418 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.07275 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5405 -a 0 -x {9.0 10.0 2707 ------- null} - -t 3.07275 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5405 -a 0 -x {9.0 10.0 2707 ------- null} h -t 3.07275 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5405 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.07283 -s 0 -d 9 -p ack -e 40 -c 0 -i 5408 -a 0 -x {10.0 9.0 2699 ------- null} + -t 3.07283 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5419 -a 0 -x {9.0 10.0 2714 ------- null} - -t 3.07283 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5419 -a 0 -x {9.0 10.0 2714 ------- null} h -t 3.07283 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5419 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.07288 -s 0 -d 9 -p ack -e 40 -c 0 -i 5412 -a 0 -x {10.0 9.0 2701 ------- null} - -t 3.07288 -s 0 -d 9 -p ack -e 40 -c 0 -i 5412 -a 0 -x {10.0 9.0 2701 ------- null} h -t 3.07288 -s 0 -d 9 -p ack -e 40 -c 0 -i 5412 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.07317 -s 10 -d 7 -p ack -e 40 -c 0 -i 5416 -a 0 -x {10.0 9.0 2703 ------- null} + -t 3.07317 -s 7 -d 0 -p ack -e 40 -c 0 -i 5416 -a 0 -x {10.0 9.0 2703 ------- null} h -t 3.07317 -s 7 -d 8 -p ack -e 40 -c 0 -i 5416 -a 0 -x {10.0 9.0 2703 ------- null} r -t 3.0733 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5415 -a 0 -x {9.0 10.0 2712 ------- null} + -t 3.0733 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5415 -a 0 -x {9.0 10.0 2712 ------- null} h -t 3.0733 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5415 -a 0 -x {9.0 10.0 2712 ------- null} r -t 3.07338 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5401 -a 0 -x {9.0 10.0 2705 ------- null} + -t 3.07338 -s 10 -d 7 -p ack -e 40 -c 0 -i 5420 -a 0 -x {10.0 9.0 2705 ------- null} - -t 3.07338 -s 10 -d 7 -p ack -e 40 -c 0 -i 5420 -a 0 -x {10.0 9.0 2705 ------- null} h -t 3.07338 -s 10 -d 7 -p ack -e 40 -c 0 -i 5420 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.07384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5407 -a 0 -x {9.0 10.0 2708 ------- null} - -t 3.07384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5407 -a 0 -x {9.0 10.0 2708 ------- null} h -t 3.07384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5407 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.07394 -s 0 -d 9 -p ack -e 40 -c 0 -i 5410 -a 0 -x {10.0 9.0 2700 ------- null} + -t 3.07394 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5421 -a 0 -x {9.0 10.0 2715 ------- null} - -t 3.07394 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5421 -a 0 -x {9.0 10.0 2715 ------- null} h -t 3.07394 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5421 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.07414 -s 0 -d 9 -p ack -e 40 -c 0 -i 5414 -a 0 -x {10.0 9.0 2702 ------- null} - -t 3.07414 -s 0 -d 9 -p ack -e 40 -c 0 -i 5414 -a 0 -x {10.0 9.0 2702 ------- null} h -t 3.07414 -s 0 -d 9 -p ack -e 40 -c 0 -i 5414 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.07426 -s 10 -d 7 -p ack -e 40 -c 0 -i 5418 -a 0 -x {10.0 9.0 2704 ------- null} + -t 3.07426 -s 7 -d 0 -p ack -e 40 -c 0 -i 5418 -a 0 -x {10.0 9.0 2704 ------- null} h -t 3.07426 -s 7 -d 8 -p ack -e 40 -c 0 -i 5418 -a 0 -x {10.0 9.0 2704 ------- null} r -t 3.07446 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5403 -a 0 -x {9.0 10.0 2706 ------- null} + -t 3.07446 -s 10 -d 7 -p ack -e 40 -c 0 -i 5422 -a 0 -x {10.0 9.0 2706 ------- null} - -t 3.07446 -s 10 -d 7 -p ack -e 40 -c 0 -i 5422 -a 0 -x {10.0 9.0 2706 ------- null} h -t 3.07446 -s 10 -d 7 -p ack -e 40 -c 0 -i 5422 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.07453 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5417 -a 0 -x {9.0 10.0 2713 ------- null} + -t 3.07453 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5417 -a 0 -x {9.0 10.0 2713 ------- null} h -t 3.07453 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5417 -a 0 -x {9.0 10.0 2713 ------- null} r -t 3.07491 -s 0 -d 9 -p ack -e 40 -c 0 -i 5412 -a 0 -x {10.0 9.0 2701 ------- null} + -t 3.07491 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5423 -a 0 -x {9.0 10.0 2716 ------- null} - -t 3.07491 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5423 -a 0 -x {9.0 10.0 2716 ------- null} h -t 3.07491 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5423 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.07507 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5409 -a 0 -x {9.0 10.0 2709 ------- null} - -t 3.07507 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5409 -a 0 -x {9.0 10.0 2709 ------- null} h -t 3.07507 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5409 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.07517 -s 0 -d 9 -p ack -e 40 -c 0 -i 5416 -a 0 -x {10.0 9.0 2703 ------- null} - -t 3.07517 -s 0 -d 9 -p ack -e 40 -c 0 -i 5416 -a 0 -x {10.0 9.0 2703 ------- null} h -t 3.07517 -s 0 -d 9 -p ack -e 40 -c 0 -i 5416 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.07541 -s 10 -d 7 -p ack -e 40 -c 0 -i 5420 -a 0 -x {10.0 9.0 2705 ------- null} + -t 3.07541 -s 7 -d 0 -p ack -e 40 -c 0 -i 5420 -a 0 -x {10.0 9.0 2705 ------- null} h -t 3.07541 -s 7 -d 8 -p ack -e 40 -c 0 -i 5420 -a 0 -x {10.0 9.0 2705 ------- null} r -t 3.07555 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5405 -a 0 -x {9.0 10.0 2707 ------- null} + -t 3.07555 -s 10 -d 7 -p ack -e 40 -c 0 -i 5424 -a 0 -x {10.0 9.0 2707 ------- null} - -t 3.07555 -s 10 -d 7 -p ack -e 40 -c 0 -i 5424 -a 0 -x {10.0 9.0 2707 ------- null} h -t 3.07555 -s 10 -d 7 -p ack -e 40 -c 0 -i 5424 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.07563 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5419 -a 0 -x {9.0 10.0 2714 ------- null} + -t 3.07563 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5419 -a 0 -x {9.0 10.0 2714 ------- null} h -t 3.07563 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5419 -a 0 -x {9.0 10.0 2714 ------- null} + -t 3.07616 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5411 -a 0 -x {9.0 10.0 2710 ------- null} - -t 3.07616 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5411 -a 0 -x {9.0 10.0 2710 ------- null} h -t 3.07616 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5411 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.07618 -s 0 -d 9 -p ack -e 40 -c 0 -i 5414 -a 0 -x {10.0 9.0 2702 ------- null} + -t 3.07618 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5425 -a 0 -x {9.0 10.0 2717 ------- null} - -t 3.07618 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5425 -a 0 -x {9.0 10.0 2717 ------- null} h -t 3.07618 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5425 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.07634 -s 0 -d 9 -p ack -e 40 -c 0 -i 5418 -a 0 -x {10.0 9.0 2704 ------- null} - -t 3.07634 -s 0 -d 9 -p ack -e 40 -c 0 -i 5418 -a 0 -x {10.0 9.0 2704 ------- null} h -t 3.07634 -s 0 -d 9 -p ack -e 40 -c 0 -i 5418 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.0765 -s 10 -d 7 -p ack -e 40 -c 0 -i 5422 -a 0 -x {10.0 9.0 2706 ------- null} + -t 3.0765 -s 7 -d 0 -p ack -e 40 -c 0 -i 5422 -a 0 -x {10.0 9.0 2706 ------- null} h -t 3.0765 -s 7 -d 8 -p ack -e 40 -c 0 -i 5422 -a 0 -x {10.0 9.0 2706 ------- null} r -t 3.07664 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5407 -a 0 -x {9.0 10.0 2708 ------- null} + -t 3.07664 -s 10 -d 7 -p ack -e 40 -c 0 -i 5426 -a 0 -x {10.0 9.0 2708 ------- null} - -t 3.07664 -s 10 -d 7 -p ack -e 40 -c 0 -i 5426 -a 0 -x {10.0 9.0 2708 ------- null} h -t 3.07664 -s 10 -d 7 -p ack -e 40 -c 0 -i 5426 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.07674 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5421 -a 0 -x {9.0 10.0 2715 ------- null} + -t 3.07674 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5421 -a 0 -x {9.0 10.0 2715 ------- null} h -t 3.07674 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5421 -a 0 -x {9.0 10.0 2715 ------- null} r -t 3.0772 -s 0 -d 9 -p ack -e 40 -c 0 -i 5416 -a 0 -x {10.0 9.0 2703 ------- null} + -t 3.0772 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5427 -a 0 -x {9.0 10.0 2718 ------- null} - -t 3.0772 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5427 -a 0 -x {9.0 10.0 2718 ------- null} h -t 3.0772 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5427 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.07725 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5413 -a 0 -x {9.0 10.0 2711 ------- null} - -t 3.07725 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5413 -a 0 -x {9.0 10.0 2711 ------- null} h -t 3.07725 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5413 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.07738 -s 0 -d 9 -p ack -e 40 -c 0 -i 5420 -a 0 -x {10.0 9.0 2705 ------- null} - -t 3.07738 -s 0 -d 9 -p ack -e 40 -c 0 -i 5420 -a 0 -x {10.0 9.0 2705 ------- null} h -t 3.07738 -s 0 -d 9 -p ack -e 40 -c 0 -i 5420 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.07758 -s 10 -d 7 -p ack -e 40 -c 0 -i 5424 -a 0 -x {10.0 9.0 2707 ------- null} + -t 3.07758 -s 7 -d 0 -p ack -e 40 -c 0 -i 5424 -a 0 -x {10.0 9.0 2707 ------- null} h -t 3.07758 -s 7 -d 8 -p ack -e 40 -c 0 -i 5424 -a 0 -x {10.0 9.0 2707 ------- null} r -t 3.07771 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5423 -a 0 -x {9.0 10.0 2716 ------- null} + -t 3.07771 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5423 -a 0 -x {9.0 10.0 2716 ------- null} h -t 3.07771 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5423 -a 0 -x {9.0 10.0 2716 ------- null} r -t 3.07787 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5409 -a 0 -x {9.0 10.0 2709 ------- null} + -t 3.07787 -s 10 -d 7 -p ack -e 40 -c 0 -i 5428 -a 0 -x {10.0 9.0 2709 ------- null} - -t 3.07787 -s 10 -d 7 -p ack -e 40 -c 0 -i 5428 -a 0 -x {10.0 9.0 2709 ------- null} h -t 3.07787 -s 10 -d 7 -p ack -e 40 -c 0 -i 5428 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.07834 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5415 -a 0 -x {9.0 10.0 2712 ------- null} - -t 3.07834 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5415 -a 0 -x {9.0 10.0 2712 ------- null} h -t 3.07834 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5415 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.07837 -s 0 -d 9 -p ack -e 40 -c 0 -i 5418 -a 0 -x {10.0 9.0 2704 ------- null} + -t 3.07837 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5429 -a 0 -x {9.0 10.0 2719 ------- null} - -t 3.07837 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5429 -a 0 -x {9.0 10.0 2719 ------- null} h -t 3.07837 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5429 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.07862 -s 0 -d 9 -p ack -e 40 -c 0 -i 5422 -a 0 -x {10.0 9.0 2706 ------- null} - -t 3.07862 -s 0 -d 9 -p ack -e 40 -c 0 -i 5422 -a 0 -x {10.0 9.0 2706 ------- null} h -t 3.07862 -s 0 -d 9 -p ack -e 40 -c 0 -i 5422 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.07867 -s 10 -d 7 -p ack -e 40 -c 0 -i 5426 -a 0 -x {10.0 9.0 2708 ------- null} + -t 3.07867 -s 7 -d 0 -p ack -e 40 -c 0 -i 5426 -a 0 -x {10.0 9.0 2708 ------- null} h -t 3.07867 -s 7 -d 8 -p ack -e 40 -c 0 -i 5426 -a 0 -x {10.0 9.0 2708 ------- null} r -t 3.07896 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5411 -a 0 -x {9.0 10.0 2710 ------- null} + -t 3.07896 -s 10 -d 7 -p ack -e 40 -c 0 -i 5430 -a 0 -x {10.0 9.0 2710 ------- null} - -t 3.07896 -s 10 -d 7 -p ack -e 40 -c 0 -i 5430 -a 0 -x {10.0 9.0 2710 ------- null} h -t 3.07896 -s 10 -d 7 -p ack -e 40 -c 0 -i 5430 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.07898 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5425 -a 0 -x {9.0 10.0 2717 ------- null} + -t 3.07898 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5425 -a 0 -x {9.0 10.0 2717 ------- null} h -t 3.07898 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5425 -a 0 -x {9.0 10.0 2717 ------- null} r -t 3.07941 -s 0 -d 9 -p ack -e 40 -c 0 -i 5420 -a 0 -x {10.0 9.0 2705 ------- null} + -t 3.07941 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5431 -a 0 -x {9.0 10.0 2720 ------- null} - -t 3.07941 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5431 -a 0 -x {9.0 10.0 2720 ------- null} h -t 3.07941 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5431 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.07965 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5417 -a 0 -x {9.0 10.0 2713 ------- null} - -t 3.07965 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5417 -a 0 -x {9.0 10.0 2713 ------- null} h -t 3.07965 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5417 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.07979 -s 0 -d 9 -p ack -e 40 -c 0 -i 5424 -a 0 -x {10.0 9.0 2707 ------- null} - -t 3.07979 -s 0 -d 9 -p ack -e 40 -c 0 -i 5424 -a 0 -x {10.0 9.0 2707 ------- null} h -t 3.07979 -s 0 -d 9 -p ack -e 40 -c 0 -i 5424 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.0799 -s 10 -d 7 -p ack -e 40 -c 0 -i 5428 -a 0 -x {10.0 9.0 2709 ------- null} + -t 3.0799 -s 7 -d 0 -p ack -e 40 -c 0 -i 5428 -a 0 -x {10.0 9.0 2709 ------- null} h -t 3.0799 -s 7 -d 8 -p ack -e 40 -c 0 -i 5428 -a 0 -x {10.0 9.0 2709 ------- null} r -t 3.08 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5427 -a 0 -x {9.0 10.0 2718 ------- null} + -t 3.08 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5427 -a 0 -x {9.0 10.0 2718 ------- null} h -t 3.08 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5427 -a 0 -x {9.0 10.0 2718 ------- null} r -t 3.08005 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5413 -a 0 -x {9.0 10.0 2711 ------- null} + -t 3.08005 -s 10 -d 7 -p ack -e 40 -c 0 -i 5432 -a 0 -x {10.0 9.0 2711 ------- null} - -t 3.08005 -s 10 -d 7 -p ack -e 40 -c 0 -i 5432 -a 0 -x {10.0 9.0 2711 ------- null} h -t 3.08005 -s 10 -d 7 -p ack -e 40 -c 0 -i 5432 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.08066 -s 0 -d 9 -p ack -e 40 -c 0 -i 5422 -a 0 -x {10.0 9.0 2706 ------- null} + -t 3.08066 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5433 -a 0 -x {9.0 10.0 2721 ------- null} - -t 3.08066 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5433 -a 0 -x {9.0 10.0 2721 ------- null} h -t 3.08066 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5433 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.08074 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5419 -a 0 -x {9.0 10.0 2714 ------- null} - -t 3.08074 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5419 -a 0 -x {9.0 10.0 2714 ------- null} h -t 3.08074 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5419 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.08096 -s 0 -d 9 -p ack -e 40 -c 0 -i 5426 -a 0 -x {10.0 9.0 2708 ------- null} - -t 3.08096 -s 0 -d 9 -p ack -e 40 -c 0 -i 5426 -a 0 -x {10.0 9.0 2708 ------- null} h -t 3.08096 -s 0 -d 9 -p ack -e 40 -c 0 -i 5426 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.08099 -s 10 -d 7 -p ack -e 40 -c 0 -i 5430 -a 0 -x {10.0 9.0 2710 ------- null} + -t 3.08099 -s 7 -d 0 -p ack -e 40 -c 0 -i 5430 -a 0 -x {10.0 9.0 2710 ------- null} h -t 3.08099 -s 7 -d 8 -p ack -e 40 -c 0 -i 5430 -a 0 -x {10.0 9.0 2710 ------- null} r -t 3.08114 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5415 -a 0 -x {9.0 10.0 2712 ------- null} + -t 3.08114 -s 10 -d 7 -p ack -e 40 -c 0 -i 5434 -a 0 -x {10.0 9.0 2712 ------- null} - -t 3.08114 -s 10 -d 7 -p ack -e 40 -c 0 -i 5434 -a 0 -x {10.0 9.0 2712 ------- null} h -t 3.08114 -s 10 -d 7 -p ack -e 40 -c 0 -i 5434 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.08117 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5429 -a 0 -x {9.0 10.0 2719 ------- null} + -t 3.08117 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5429 -a 0 -x {9.0 10.0 2719 ------- null} h -t 3.08117 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5429 -a 0 -x {9.0 10.0 2719 ------- null} + -t 3.08182 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5421 -a 0 -x {9.0 10.0 2715 ------- null} - -t 3.08182 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5421 -a 0 -x {9.0 10.0 2715 ------- null} h -t 3.08182 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5421 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.08182 -s 0 -d 9 -p ack -e 40 -c 0 -i 5424 -a 0 -x {10.0 9.0 2707 ------- null} + -t 3.08182 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5435 -a 0 -x {9.0 10.0 2722 ------- null} - -t 3.08182 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5435 -a 0 -x {9.0 10.0 2722 ------- null} h -t 3.08182 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5435 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.08198 -s 0 -d 9 -p ack -e 40 -c 0 -i 5428 -a 0 -x {10.0 9.0 2709 ------- null} - -t 3.08198 -s 0 -d 9 -p ack -e 40 -c 0 -i 5428 -a 0 -x {10.0 9.0 2709 ------- null} h -t 3.08198 -s 0 -d 9 -p ack -e 40 -c 0 -i 5428 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.08208 -s 10 -d 7 -p ack -e 40 -c 0 -i 5432 -a 0 -x {10.0 9.0 2711 ------- null} + -t 3.08208 -s 7 -d 0 -p ack -e 40 -c 0 -i 5432 -a 0 -x {10.0 9.0 2711 ------- null} h -t 3.08208 -s 7 -d 8 -p ack -e 40 -c 0 -i 5432 -a 0 -x {10.0 9.0 2711 ------- null} r -t 3.08221 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5431 -a 0 -x {9.0 10.0 2720 ------- null} + -t 3.08221 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5431 -a 0 -x {9.0 10.0 2720 ------- null} h -t 3.08221 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5431 -a 0 -x {9.0 10.0 2720 ------- null} r -t 3.08245 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5417 -a 0 -x {9.0 10.0 2713 ------- null} + -t 3.08245 -s 10 -d 7 -p ack -e 40 -c 0 -i 5436 -a 0 -x {10.0 9.0 2713 ------- null} - -t 3.08245 -s 10 -d 7 -p ack -e 40 -c 0 -i 5436 -a 0 -x {10.0 9.0 2713 ------- null} h -t 3.08245 -s 10 -d 7 -p ack -e 40 -c 0 -i 5436 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.08291 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5423 -a 0 -x {9.0 10.0 2716 ------- null} - -t 3.08291 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5423 -a 0 -x {9.0 10.0 2716 ------- null} h -t 3.08291 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5423 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.08299 -s 0 -d 9 -p ack -e 40 -c 0 -i 5426 -a 0 -x {10.0 9.0 2708 ------- null} + -t 3.08299 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5437 -a 0 -x {9.0 10.0 2723 ------- null} - -t 3.08299 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5437 -a 0 -x {9.0 10.0 2723 ------- null} h -t 3.08299 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5437 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.08314 -s 0 -d 9 -p ack -e 40 -c 0 -i 5430 -a 0 -x {10.0 9.0 2710 ------- null} - -t 3.08314 -s 0 -d 9 -p ack -e 40 -c 0 -i 5430 -a 0 -x {10.0 9.0 2710 ------- null} h -t 3.08314 -s 0 -d 9 -p ack -e 40 -c 0 -i 5430 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.08317 -s 10 -d 7 -p ack -e 40 -c 0 -i 5434 -a 0 -x {10.0 9.0 2712 ------- null} + -t 3.08317 -s 7 -d 0 -p ack -e 40 -c 0 -i 5434 -a 0 -x {10.0 9.0 2712 ------- null} h -t 3.08317 -s 7 -d 8 -p ack -e 40 -c 0 -i 5434 -a 0 -x {10.0 9.0 2712 ------- null} r -t 3.08346 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5433 -a 0 -x {9.0 10.0 2721 ------- null} + -t 3.08346 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5433 -a 0 -x {9.0 10.0 2721 ------- null} h -t 3.08346 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5433 -a 0 -x {9.0 10.0 2721 ------- null} r -t 3.08354 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5419 -a 0 -x {9.0 10.0 2714 ------- null} + -t 3.08354 -s 10 -d 7 -p ack -e 40 -c 0 -i 5438 -a 0 -x {10.0 9.0 2714 ------- null} - -t 3.08354 -s 10 -d 7 -p ack -e 40 -c 0 -i 5438 -a 0 -x {10.0 9.0 2714 ------- null} h -t 3.08354 -s 10 -d 7 -p ack -e 40 -c 0 -i 5438 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.084 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5425 -a 0 -x {9.0 10.0 2717 ------- null} - -t 3.084 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5425 -a 0 -x {9.0 10.0 2717 ------- null} h -t 3.084 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5425 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.08402 -s 0 -d 9 -p ack -e 40 -c 0 -i 5428 -a 0 -x {10.0 9.0 2709 ------- null} + -t 3.08402 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5439 -a 0 -x {9.0 10.0 2724 ------- null} - -t 3.08402 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5439 -a 0 -x {9.0 10.0 2724 ------- null} h -t 3.08402 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5439 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.08427 -s 0 -d 9 -p ack -e 40 -c 0 -i 5432 -a 0 -x {10.0 9.0 2711 ------- null} - -t 3.08427 -s 0 -d 9 -p ack -e 40 -c 0 -i 5432 -a 0 -x {10.0 9.0 2711 ------- null} h -t 3.08427 -s 0 -d 9 -p ack -e 40 -c 0 -i 5432 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.08448 -s 10 -d 7 -p ack -e 40 -c 0 -i 5436 -a 0 -x {10.0 9.0 2713 ------- null} + -t 3.08448 -s 7 -d 0 -p ack -e 40 -c 0 -i 5436 -a 0 -x {10.0 9.0 2713 ------- null} h -t 3.08448 -s 7 -d 8 -p ack -e 40 -c 0 -i 5436 -a 0 -x {10.0 9.0 2713 ------- null} r -t 3.08462 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5421 -a 0 -x {9.0 10.0 2715 ------- null} + -t 3.08462 -s 10 -d 7 -p ack -e 40 -c 0 -i 5440 -a 0 -x {10.0 9.0 2715 ------- null} - -t 3.08462 -s 10 -d 7 -p ack -e 40 -c 0 -i 5440 -a 0 -x {10.0 9.0 2715 ------- null} h -t 3.08462 -s 10 -d 7 -p ack -e 40 -c 0 -i 5440 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.08462 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5435 -a 0 -x {9.0 10.0 2722 ------- null} + -t 3.08462 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5435 -a 0 -x {9.0 10.0 2722 ------- null} h -t 3.08462 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5435 -a 0 -x {9.0 10.0 2722 ------- null} r -t 3.08517 -s 0 -d 9 -p ack -e 40 -c 0 -i 5430 -a 0 -x {10.0 9.0 2710 ------- null} + -t 3.08517 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5441 -a 0 -x {9.0 10.0 2725 ------- null} - -t 3.08517 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5441 -a 0 -x {9.0 10.0 2725 ------- null} h -t 3.08517 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5441 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.08528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5427 -a 0 -x {9.0 10.0 2718 ------- null} - -t 3.08528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5427 -a 0 -x {9.0 10.0 2718 ------- null} h -t 3.08528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5427 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.08538 -s 0 -d 9 -p ack -e 40 -c 0 -i 5434 -a 0 -x {10.0 9.0 2712 ------- null} - -t 3.08538 -s 0 -d 9 -p ack -e 40 -c 0 -i 5434 -a 0 -x {10.0 9.0 2712 ------- null} h -t 3.08538 -s 0 -d 9 -p ack -e 40 -c 0 -i 5434 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.08557 -s 10 -d 7 -p ack -e 40 -c 0 -i 5438 -a 0 -x {10.0 9.0 2714 ------- null} + -t 3.08557 -s 7 -d 0 -p ack -e 40 -c 0 -i 5438 -a 0 -x {10.0 9.0 2714 ------- null} h -t 3.08557 -s 7 -d 8 -p ack -e 40 -c 0 -i 5438 -a 0 -x {10.0 9.0 2714 ------- null} r -t 3.08571 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5423 -a 0 -x {9.0 10.0 2716 ------- null} + -t 3.08571 -s 10 -d 7 -p ack -e 40 -c 0 -i 5442 -a 0 -x {10.0 9.0 2716 ------- null} - -t 3.08571 -s 10 -d 7 -p ack -e 40 -c 0 -i 5442 -a 0 -x {10.0 9.0 2716 ------- null} h -t 3.08571 -s 10 -d 7 -p ack -e 40 -c 0 -i 5442 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.08579 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5437 -a 0 -x {9.0 10.0 2723 ------- null} + -t 3.08579 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5437 -a 0 -x {9.0 10.0 2723 ------- null} h -t 3.08579 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5437 -a 0 -x {9.0 10.0 2723 ------- null} r -t 3.0863 -s 0 -d 9 -p ack -e 40 -c 0 -i 5432 -a 0 -x {10.0 9.0 2711 ------- null} + -t 3.0863 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5443 -a 0 -x {9.0 10.0 2726 ------- null} - -t 3.0863 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5443 -a 0 -x {9.0 10.0 2726 ------- null} h -t 3.0863 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5443 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.08637 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5429 -a 0 -x {9.0 10.0 2719 ------- null} - -t 3.08637 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5429 -a 0 -x {9.0 10.0 2719 ------- null} h -t 3.08637 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5429 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.08648 -s 0 -d 9 -p ack -e 40 -c 0 -i 5436 -a 0 -x {10.0 9.0 2713 ------- null} - -t 3.08648 -s 0 -d 9 -p ack -e 40 -c 0 -i 5436 -a 0 -x {10.0 9.0 2713 ------- null} h -t 3.08648 -s 0 -d 9 -p ack -e 40 -c 0 -i 5436 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.08666 -s 10 -d 7 -p ack -e 40 -c 0 -i 5440 -a 0 -x {10.0 9.0 2715 ------- null} + -t 3.08666 -s 7 -d 0 -p ack -e 40 -c 0 -i 5440 -a 0 -x {10.0 9.0 2715 ------- null} h -t 3.08666 -s 7 -d 8 -p ack -e 40 -c 0 -i 5440 -a 0 -x {10.0 9.0 2715 ------- null} r -t 3.0868 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5425 -a 0 -x {9.0 10.0 2717 ------- null} + -t 3.0868 -s 10 -d 7 -p ack -e 40 -c 0 -i 5444 -a 0 -x {10.0 9.0 2717 ------- null} - -t 3.0868 -s 10 -d 7 -p ack -e 40 -c 0 -i 5444 -a 0 -x {10.0 9.0 2717 ------- null} h -t 3.0868 -s 10 -d 7 -p ack -e 40 -c 0 -i 5444 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.08682 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5439 -a 0 -x {9.0 10.0 2724 ------- null} + -t 3.08682 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5439 -a 0 -x {9.0 10.0 2724 ------- null} h -t 3.08682 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5439 -a 0 -x {9.0 10.0 2724 ------- null} r -t 3.08741 -s 0 -d 9 -p ack -e 40 -c 0 -i 5434 -a 0 -x {10.0 9.0 2712 ------- null} + -t 3.08741 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5445 -a 0 -x {9.0 10.0 2727 ------- null} - -t 3.08741 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5445 -a 0 -x {9.0 10.0 2727 ------- null} h -t 3.08741 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5445 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.08746 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5431 -a 0 -x {9.0 10.0 2720 ------- null} - -t 3.08746 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5431 -a 0 -x {9.0 10.0 2720 ------- null} h -t 3.08746 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5431 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.08755 -s 0 -d 9 -p ack -e 40 -c 0 -i 5438 -a 0 -x {10.0 9.0 2714 ------- null} - -t 3.08755 -s 0 -d 9 -p ack -e 40 -c 0 -i 5438 -a 0 -x {10.0 9.0 2714 ------- null} h -t 3.08755 -s 0 -d 9 -p ack -e 40 -c 0 -i 5438 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.08774 -s 10 -d 7 -p ack -e 40 -c 0 -i 5442 -a 0 -x {10.0 9.0 2716 ------- null} + -t 3.08774 -s 7 -d 0 -p ack -e 40 -c 0 -i 5442 -a 0 -x {10.0 9.0 2716 ------- null} h -t 3.08774 -s 7 -d 8 -p ack -e 40 -c 0 -i 5442 -a 0 -x {10.0 9.0 2716 ------- null} r -t 3.08797 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5441 -a 0 -x {9.0 10.0 2725 ------- null} + -t 3.08797 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5441 -a 0 -x {9.0 10.0 2725 ------- null} h -t 3.08797 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5441 -a 0 -x {9.0 10.0 2725 ------- null} r -t 3.08808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5427 -a 0 -x {9.0 10.0 2718 ------- null} + -t 3.08808 -s 10 -d 7 -p ack -e 40 -c 0 -i 5446 -a 0 -x {10.0 9.0 2718 ------- null} - -t 3.08808 -s 10 -d 7 -p ack -e 40 -c 0 -i 5446 -a 0 -x {10.0 9.0 2718 ------- null} h -t 3.08808 -s 10 -d 7 -p ack -e 40 -c 0 -i 5446 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.08851 -s 0 -d 9 -p ack -e 40 -c 0 -i 5436 -a 0 -x {10.0 9.0 2713 ------- null} + -t 3.08851 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5447 -a 0 -x {9.0 10.0 2728 ------- null} - -t 3.08851 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5447 -a 0 -x {9.0 10.0 2728 ------- null} h -t 3.08851 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5447 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.08854 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5433 -a 0 -x {9.0 10.0 2721 ------- null} - -t 3.08854 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5433 -a 0 -x {9.0 10.0 2721 ------- null} h -t 3.08854 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5433 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.08866 -s 0 -d 9 -p ack -e 40 -c 0 -i 5440 -a 0 -x {10.0 9.0 2715 ------- null} - -t 3.08866 -s 0 -d 9 -p ack -e 40 -c 0 -i 5440 -a 0 -x {10.0 9.0 2715 ------- null} h -t 3.08866 -s 0 -d 9 -p ack -e 40 -c 0 -i 5440 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.08883 -s 10 -d 7 -p ack -e 40 -c 0 -i 5444 -a 0 -x {10.0 9.0 2717 ------- null} + -t 3.08883 -s 7 -d 0 -p ack -e 40 -c 0 -i 5444 -a 0 -x {10.0 9.0 2717 ------- null} h -t 3.08883 -s 7 -d 8 -p ack -e 40 -c 0 -i 5444 -a 0 -x {10.0 9.0 2717 ------- null} r -t 3.0891 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5443 -a 0 -x {9.0 10.0 2726 ------- null} + -t 3.0891 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5443 -a 0 -x {9.0 10.0 2726 ------- null} h -t 3.0891 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5443 -a 0 -x {9.0 10.0 2726 ------- null} r -t 3.08917 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5429 -a 0 -x {9.0 10.0 2719 ------- null} + -t 3.08917 -s 10 -d 7 -p ack -e 40 -c 0 -i 5448 -a 0 -x {10.0 9.0 2719 ------- null} - -t 3.08917 -s 10 -d 7 -p ack -e 40 -c 0 -i 5448 -a 0 -x {10.0 9.0 2719 ------- null} h -t 3.08917 -s 10 -d 7 -p ack -e 40 -c 0 -i 5448 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.08958 -s 0 -d 9 -p ack -e 40 -c 0 -i 5438 -a 0 -x {10.0 9.0 2714 ------- null} + -t 3.08958 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5449 -a 0 -x {9.0 10.0 2729 ------- null} - -t 3.08958 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5449 -a 0 -x {9.0 10.0 2729 ------- null} h -t 3.08958 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5449 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.08963 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5435 -a 0 -x {9.0 10.0 2722 ------- null} - -t 3.08963 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5435 -a 0 -x {9.0 10.0 2722 ------- null} h -t 3.08963 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5435 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.0897 -s 0 -d 9 -p ack -e 40 -c 0 -i 5442 -a 0 -x {10.0 9.0 2716 ------- null} - -t 3.0897 -s 0 -d 9 -p ack -e 40 -c 0 -i 5442 -a 0 -x {10.0 9.0 2716 ------- null} h -t 3.0897 -s 0 -d 9 -p ack -e 40 -c 0 -i 5442 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.09011 -s 10 -d 7 -p ack -e 40 -c 0 -i 5446 -a 0 -x {10.0 9.0 2718 ------- null} + -t 3.09011 -s 7 -d 0 -p ack -e 40 -c 0 -i 5446 -a 0 -x {10.0 9.0 2718 ------- null} h -t 3.09011 -s 7 -d 8 -p ack -e 40 -c 0 -i 5446 -a 0 -x {10.0 9.0 2718 ------- null} r -t 3.09021 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5445 -a 0 -x {9.0 10.0 2727 ------- null} + -t 3.09021 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5445 -a 0 -x {9.0 10.0 2727 ------- null} h -t 3.09021 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5445 -a 0 -x {9.0 10.0 2727 ------- null} r -t 3.09026 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5431 -a 0 -x {9.0 10.0 2720 ------- null} + -t 3.09026 -s 10 -d 7 -p ack -e 40 -c 0 -i 5450 -a 0 -x {10.0 9.0 2720 ------- null} - -t 3.09026 -s 10 -d 7 -p ack -e 40 -c 0 -i 5450 -a 0 -x {10.0 9.0 2720 ------- null} h -t 3.09026 -s 10 -d 7 -p ack -e 40 -c 0 -i 5450 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.09069 -s 0 -d 9 -p ack -e 40 -c 0 -i 5440 -a 0 -x {10.0 9.0 2715 ------- null} + -t 3.09069 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5451 -a 0 -x {9.0 10.0 2730 ------- null} - -t 3.09069 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5451 -a 0 -x {9.0 10.0 2730 ------- null} h -t 3.09069 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5451 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.09072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5437 -a 0 -x {9.0 10.0 2723 ------- null} - -t 3.09072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5437 -a 0 -x {9.0 10.0 2723 ------- null} h -t 3.09072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5437 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.09078 -s 0 -d 9 -p ack -e 40 -c 0 -i 5444 -a 0 -x {10.0 9.0 2717 ------- null} - -t 3.09078 -s 0 -d 9 -p ack -e 40 -c 0 -i 5444 -a 0 -x {10.0 9.0 2717 ------- null} h -t 3.09078 -s 0 -d 9 -p ack -e 40 -c 0 -i 5444 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.0912 -s 10 -d 7 -p ack -e 40 -c 0 -i 5448 -a 0 -x {10.0 9.0 2719 ------- null} + -t 3.0912 -s 7 -d 0 -p ack -e 40 -c 0 -i 5448 -a 0 -x {10.0 9.0 2719 ------- null} h -t 3.0912 -s 7 -d 8 -p ack -e 40 -c 0 -i 5448 -a 0 -x {10.0 9.0 2719 ------- null} r -t 3.09131 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5447 -a 0 -x {9.0 10.0 2728 ------- null} + -t 3.09131 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5447 -a 0 -x {9.0 10.0 2728 ------- null} h -t 3.09131 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5447 -a 0 -x {9.0 10.0 2728 ------- null} r -t 3.09134 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5433 -a 0 -x {9.0 10.0 2721 ------- null} + -t 3.09134 -s 10 -d 7 -p ack -e 40 -c 0 -i 5452 -a 0 -x {10.0 9.0 2721 ------- null} - -t 3.09134 -s 10 -d 7 -p ack -e 40 -c 0 -i 5452 -a 0 -x {10.0 9.0 2721 ------- null} h -t 3.09134 -s 10 -d 7 -p ack -e 40 -c 0 -i 5452 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.09173 -s 0 -d 9 -p ack -e 40 -c 0 -i 5442 -a 0 -x {10.0 9.0 2716 ------- null} + -t 3.09173 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5453 -a 0 -x {9.0 10.0 2731 ------- null} - -t 3.09173 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5453 -a 0 -x {9.0 10.0 2731 ------- null} h -t 3.09173 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5453 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.09181 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5439 -a 0 -x {9.0 10.0 2724 ------- null} - -t 3.09181 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5439 -a 0 -x {9.0 10.0 2724 ------- null} h -t 3.09181 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5439 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.09195 -s 0 -d 9 -p ack -e 40 -c 0 -i 5446 -a 0 -x {10.0 9.0 2718 ------- null} - -t 3.09195 -s 0 -d 9 -p ack -e 40 -c 0 -i 5446 -a 0 -x {10.0 9.0 2718 ------- null} h -t 3.09195 -s 0 -d 9 -p ack -e 40 -c 0 -i 5446 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.09229 -s 10 -d 7 -p ack -e 40 -c 0 -i 5450 -a 0 -x {10.0 9.0 2720 ------- null} + -t 3.09229 -s 7 -d 0 -p ack -e 40 -c 0 -i 5450 -a 0 -x {10.0 9.0 2720 ------- null} h -t 3.09229 -s 7 -d 8 -p ack -e 40 -c 0 -i 5450 -a 0 -x {10.0 9.0 2720 ------- null} r -t 3.09238 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5449 -a 0 -x {9.0 10.0 2729 ------- null} + -t 3.09238 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5449 -a 0 -x {9.0 10.0 2729 ------- null} h -t 3.09238 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5449 -a 0 -x {9.0 10.0 2729 ------- null} r -t 3.09243 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5435 -a 0 -x {9.0 10.0 2722 ------- null} + -t 3.09243 -s 10 -d 7 -p ack -e 40 -c 0 -i 5454 -a 0 -x {10.0 9.0 2722 ------- null} - -t 3.09243 -s 10 -d 7 -p ack -e 40 -c 0 -i 5454 -a 0 -x {10.0 9.0 2722 ------- null} h -t 3.09243 -s 10 -d 7 -p ack -e 40 -c 0 -i 5454 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.09282 -s 0 -d 9 -p ack -e 40 -c 0 -i 5444 -a 0 -x {10.0 9.0 2717 ------- null} + -t 3.09282 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5455 -a 0 -x {9.0 10.0 2732 ------- null} - -t 3.09282 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5455 -a 0 -x {9.0 10.0 2732 ------- null} h -t 3.09282 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5455 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.0929 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5441 -a 0 -x {9.0 10.0 2725 ------- null} - -t 3.0929 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5441 -a 0 -x {9.0 10.0 2725 ------- null} h -t 3.0929 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5441 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.09318 -s 0 -d 9 -p ack -e 40 -c 0 -i 5448 -a 0 -x {10.0 9.0 2719 ------- null} - -t 3.09318 -s 0 -d 9 -p ack -e 40 -c 0 -i 5448 -a 0 -x {10.0 9.0 2719 ------- null} h -t 3.09318 -s 0 -d 9 -p ack -e 40 -c 0 -i 5448 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.09338 -s 10 -d 7 -p ack -e 40 -c 0 -i 5452 -a 0 -x {10.0 9.0 2721 ------- null} + -t 3.09338 -s 7 -d 0 -p ack -e 40 -c 0 -i 5452 -a 0 -x {10.0 9.0 2721 ------- null} h -t 3.09338 -s 7 -d 8 -p ack -e 40 -c 0 -i 5452 -a 0 -x {10.0 9.0 2721 ------- null} r -t 3.09349 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5451 -a 0 -x {9.0 10.0 2730 ------- null} + -t 3.09349 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5451 -a 0 -x {9.0 10.0 2730 ------- null} h -t 3.09349 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5451 -a 0 -x {9.0 10.0 2730 ------- null} r -t 3.09352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5437 -a 0 -x {9.0 10.0 2723 ------- null} + -t 3.09352 -s 10 -d 7 -p ack -e 40 -c 0 -i 5456 -a 0 -x {10.0 9.0 2723 ------- null} - -t 3.09352 -s 10 -d 7 -p ack -e 40 -c 0 -i 5456 -a 0 -x {10.0 9.0 2723 ------- null} h -t 3.09352 -s 10 -d 7 -p ack -e 40 -c 0 -i 5456 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.09398 -s 0 -d 9 -p ack -e 40 -c 0 -i 5446 -a 0 -x {10.0 9.0 2718 ------- null} + -t 3.09398 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5457 -a 0 -x {9.0 10.0 2733 ------- null} - -t 3.09398 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5457 -a 0 -x {9.0 10.0 2733 ------- null} h -t 3.09398 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5457 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.09402 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5443 -a 0 -x {9.0 10.0 2726 ------- null} - -t 3.09402 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5443 -a 0 -x {9.0 10.0 2726 ------- null} h -t 3.09402 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5443 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.09421 -s 0 -d 9 -p ack -e 40 -c 0 -i 5450 -a 0 -x {10.0 9.0 2720 ------- null} - -t 3.09421 -s 0 -d 9 -p ack -e 40 -c 0 -i 5450 -a 0 -x {10.0 9.0 2720 ------- null} h -t 3.09421 -s 0 -d 9 -p ack -e 40 -c 0 -i 5450 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.09446 -s 10 -d 7 -p ack -e 40 -c 0 -i 5454 -a 0 -x {10.0 9.0 2722 ------- null} + -t 3.09446 -s 7 -d 0 -p ack -e 40 -c 0 -i 5454 -a 0 -x {10.0 9.0 2722 ------- null} h -t 3.09446 -s 7 -d 8 -p ack -e 40 -c 0 -i 5454 -a 0 -x {10.0 9.0 2722 ------- null} r -t 3.09453 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5453 -a 0 -x {9.0 10.0 2731 ------- null} + -t 3.09453 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5453 -a 0 -x {9.0 10.0 2731 ------- null} h -t 3.09453 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5453 -a 0 -x {9.0 10.0 2731 ------- null} r -t 3.09461 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5439 -a 0 -x {9.0 10.0 2724 ------- null} + -t 3.09461 -s 10 -d 7 -p ack -e 40 -c 0 -i 5458 -a 0 -x {10.0 9.0 2724 ------- null} - -t 3.09461 -s 10 -d 7 -p ack -e 40 -c 0 -i 5458 -a 0 -x {10.0 9.0 2724 ------- null} h -t 3.09461 -s 10 -d 7 -p ack -e 40 -c 0 -i 5458 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.0951 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5445 -a 0 -x {9.0 10.0 2727 ------- null} - -t 3.0951 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5445 -a 0 -x {9.0 10.0 2727 ------- null} h -t 3.0951 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5445 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.09518 -s 0 -d 9 -p ack -e 40 -c 0 -i 5452 -a 0 -x {10.0 9.0 2721 ------- null} - -t 3.09518 -s 0 -d 9 -p ack -e 40 -c 0 -i 5452 -a 0 -x {10.0 9.0 2721 ------- null} h -t 3.09518 -s 0 -d 9 -p ack -e 40 -c 0 -i 5452 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.09522 -s 0 -d 9 -p ack -e 40 -c 0 -i 5448 -a 0 -x {10.0 9.0 2719 ------- null} + -t 3.09522 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5459 -a 0 -x {9.0 10.0 2734 ------- null} - -t 3.09522 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5459 -a 0 -x {9.0 10.0 2734 ------- null} h -t 3.09522 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5459 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.09555 -s 10 -d 7 -p ack -e 40 -c 0 -i 5456 -a 0 -x {10.0 9.0 2723 ------- null} + -t 3.09555 -s 7 -d 0 -p ack -e 40 -c 0 -i 5456 -a 0 -x {10.0 9.0 2723 ------- null} h -t 3.09555 -s 7 -d 8 -p ack -e 40 -c 0 -i 5456 -a 0 -x {10.0 9.0 2723 ------- null} r -t 3.09562 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5455 -a 0 -x {9.0 10.0 2732 ------- null} + -t 3.09562 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5455 -a 0 -x {9.0 10.0 2732 ------- null} h -t 3.09562 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5455 -a 0 -x {9.0 10.0 2732 ------- null} r -t 3.0957 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5441 -a 0 -x {9.0 10.0 2725 ------- null} + -t 3.0957 -s 10 -d 7 -p ack -e 40 -c 0 -i 5460 -a 0 -x {10.0 9.0 2725 ------- null} - -t 3.0957 -s 10 -d 7 -p ack -e 40 -c 0 -i 5460 -a 0 -x {10.0 9.0 2725 ------- null} h -t 3.0957 -s 10 -d 7 -p ack -e 40 -c 0 -i 5460 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.09619 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5447 -a 0 -x {9.0 10.0 2728 ------- null} - -t 3.09619 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5447 -a 0 -x {9.0 10.0 2728 ------- null} h -t 3.09619 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5447 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.09624 -s 0 -d 9 -p ack -e 40 -c 0 -i 5450 -a 0 -x {10.0 9.0 2720 ------- null} + -t 3.09624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5461 -a 0 -x {9.0 10.0 2735 ------- null} - -t 3.09624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5461 -a 0 -x {9.0 10.0 2735 ------- null} h -t 3.09624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5461 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.09627 -s 0 -d 9 -p ack -e 40 -c 0 -i 5454 -a 0 -x {10.0 9.0 2722 ------- null} - -t 3.09627 -s 0 -d 9 -p ack -e 40 -c 0 -i 5454 -a 0 -x {10.0 9.0 2722 ------- null} h -t 3.09627 -s 0 -d 9 -p ack -e 40 -c 0 -i 5454 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.09664 -s 10 -d 7 -p ack -e 40 -c 0 -i 5458 -a 0 -x {10.0 9.0 2724 ------- null} + -t 3.09664 -s 7 -d 0 -p ack -e 40 -c 0 -i 5458 -a 0 -x {10.0 9.0 2724 ------- null} h -t 3.09664 -s 7 -d 8 -p ack -e 40 -c 0 -i 5458 -a 0 -x {10.0 9.0 2724 ------- null} r -t 3.09678 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5457 -a 0 -x {9.0 10.0 2733 ------- null} + -t 3.09678 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5457 -a 0 -x {9.0 10.0 2733 ------- null} h -t 3.09678 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5457 -a 0 -x {9.0 10.0 2733 ------- null} r -t 3.09682 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5443 -a 0 -x {9.0 10.0 2726 ------- null} + -t 3.09682 -s 10 -d 7 -p ack -e 40 -c 0 -i 5462 -a 0 -x {10.0 9.0 2726 ------- null} - -t 3.09682 -s 10 -d 7 -p ack -e 40 -c 0 -i 5462 -a 0 -x {10.0 9.0 2726 ------- null} h -t 3.09682 -s 10 -d 7 -p ack -e 40 -c 0 -i 5462 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.09722 -s 0 -d 9 -p ack -e 40 -c 0 -i 5452 -a 0 -x {10.0 9.0 2721 ------- null} + -t 3.09722 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5463 -a 0 -x {9.0 10.0 2736 ------- null} - -t 3.09722 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5463 -a 0 -x {9.0 10.0 2736 ------- null} h -t 3.09722 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5463 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.09728 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5449 -a 0 -x {9.0 10.0 2729 ------- null} - -t 3.09728 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5449 -a 0 -x {9.0 10.0 2729 ------- null} h -t 3.09728 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5449 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.09758 -s 0 -d 9 -p ack -e 40 -c 0 -i 5456 -a 0 -x {10.0 9.0 2723 ------- null} - -t 3.09758 -s 0 -d 9 -p ack -e 40 -c 0 -i 5456 -a 0 -x {10.0 9.0 2723 ------- null} h -t 3.09758 -s 0 -d 9 -p ack -e 40 -c 0 -i 5456 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.09773 -s 10 -d 7 -p ack -e 40 -c 0 -i 5460 -a 0 -x {10.0 9.0 2725 ------- null} + -t 3.09773 -s 7 -d 0 -p ack -e 40 -c 0 -i 5460 -a 0 -x {10.0 9.0 2725 ------- null} h -t 3.09773 -s 7 -d 8 -p ack -e 40 -c 0 -i 5460 -a 0 -x {10.0 9.0 2725 ------- null} r -t 3.0979 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5445 -a 0 -x {9.0 10.0 2727 ------- null} + -t 3.0979 -s 10 -d 7 -p ack -e 40 -c 0 -i 5464 -a 0 -x {10.0 9.0 2727 ------- null} - -t 3.0979 -s 10 -d 7 -p ack -e 40 -c 0 -i 5464 -a 0 -x {10.0 9.0 2727 ------- null} h -t 3.0979 -s 10 -d 7 -p ack -e 40 -c 0 -i 5464 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.09802 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5459 -a 0 -x {9.0 10.0 2734 ------- null} + -t 3.09802 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5459 -a 0 -x {9.0 10.0 2734 ------- null} h -t 3.09802 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5459 -a 0 -x {9.0 10.0 2734 ------- null} r -t 3.0983 -s 0 -d 9 -p ack -e 40 -c 0 -i 5454 -a 0 -x {10.0 9.0 2722 ------- null} + -t 3.0983 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5465 -a 0 -x {9.0 10.0 2737 ------- null} - -t 3.0983 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5465 -a 0 -x {9.0 10.0 2737 ------- null} h -t 3.0983 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5465 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.09859 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5451 -a 0 -x {9.0 10.0 2730 ------- null} - -t 3.09859 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5451 -a 0 -x {9.0 10.0 2730 ------- null} h -t 3.09859 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5451 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.09885 -s 0 -d 9 -p ack -e 40 -c 0 -i 5458 -a 0 -x {10.0 9.0 2724 ------- null} - -t 3.09885 -s 0 -d 9 -p ack -e 40 -c 0 -i 5458 -a 0 -x {10.0 9.0 2724 ------- null} h -t 3.09885 -s 0 -d 9 -p ack -e 40 -c 0 -i 5458 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.09885 -s 10 -d 7 -p ack -e 40 -c 0 -i 5462 -a 0 -x {10.0 9.0 2726 ------- null} + -t 3.09885 -s 7 -d 0 -p ack -e 40 -c 0 -i 5462 -a 0 -x {10.0 9.0 2726 ------- null} h -t 3.09885 -s 7 -d 8 -p ack -e 40 -c 0 -i 5462 -a 0 -x {10.0 9.0 2726 ------- null} r -t 3.09899 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5447 -a 0 -x {9.0 10.0 2728 ------- null} + -t 3.09899 -s 10 -d 7 -p ack -e 40 -c 0 -i 5466 -a 0 -x {10.0 9.0 2728 ------- null} - -t 3.09899 -s 10 -d 7 -p ack -e 40 -c 0 -i 5466 -a 0 -x {10.0 9.0 2728 ------- null} h -t 3.09899 -s 10 -d 7 -p ack -e 40 -c 0 -i 5466 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.09904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5461 -a 0 -x {9.0 10.0 2735 ------- null} + -t 3.09904 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5461 -a 0 -x {9.0 10.0 2735 ------- null} h -t 3.09904 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5461 -a 0 -x {9.0 10.0 2735 ------- null} r -t 3.09962 -s 0 -d 9 -p ack -e 40 -c 0 -i 5456 -a 0 -x {10.0 9.0 2723 ------- null} + -t 3.09962 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5467 -a 0 -x {9.0 10.0 2738 ------- null} - -t 3.09962 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5467 -a 0 -x {9.0 10.0 2738 ------- null} h -t 3.09962 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5467 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.09987 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5453 -a 0 -x {9.0 10.0 2731 ------- null} - -t 3.09987 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5453 -a 0 -x {9.0 10.0 2731 ------- null} h -t 3.09987 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5453 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.09994 -s 10 -d 7 -p ack -e 40 -c 0 -i 5464 -a 0 -x {10.0 9.0 2727 ------- null} + -t 3.09994 -s 7 -d 0 -p ack -e 40 -c 0 -i 5464 -a 0 -x {10.0 9.0 2727 ------- null} h -t 3.09994 -s 7 -d 8 -p ack -e 40 -c 0 -i 5464 -a 0 -x {10.0 9.0 2727 ------- null} r -t 3.10002 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5463 -a 0 -x {9.0 10.0 2736 ------- null} + -t 3.10002 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5463 -a 0 -x {9.0 10.0 2736 ------- null} h -t 3.10002 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5463 -a 0 -x {9.0 10.0 2736 ------- null} r -t 3.10008 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5449 -a 0 -x {9.0 10.0 2729 ------- null} + -t 3.10008 -s 10 -d 7 -p ack -e 40 -c 0 -i 5468 -a 0 -x {10.0 9.0 2729 ------- null} - -t 3.10008 -s 10 -d 7 -p ack -e 40 -c 0 -i 5468 -a 0 -x {10.0 9.0 2729 ------- null} h -t 3.10008 -s 10 -d 7 -p ack -e 40 -c 0 -i 5468 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.10013 -s 0 -d 9 -p ack -e 40 -c 0 -i 5460 -a 0 -x {10.0 9.0 2725 ------- null} - -t 3.10013 -s 0 -d 9 -p ack -e 40 -c 0 -i 5460 -a 0 -x {10.0 9.0 2725 ------- null} h -t 3.10013 -s 0 -d 9 -p ack -e 40 -c 0 -i 5460 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.10088 -s 0 -d 9 -p ack -e 40 -c 0 -i 5458 -a 0 -x {10.0 9.0 2724 ------- null} + -t 3.10088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5469 -a 0 -x {9.0 10.0 2739 ------- null} - -t 3.10088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5469 -a 0 -x {9.0 10.0 2739 ------- null} h -t 3.10088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5469 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.10102 -s 10 -d 7 -p ack -e 40 -c 0 -i 5466 -a 0 -x {10.0 9.0 2728 ------- null} + -t 3.10102 -s 7 -d 0 -p ack -e 40 -c 0 -i 5466 -a 0 -x {10.0 9.0 2728 ------- null} h -t 3.10102 -s 7 -d 8 -p ack -e 40 -c 0 -i 5466 -a 0 -x {10.0 9.0 2728 ------- null} r -t 3.1011 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5465 -a 0 -x {9.0 10.0 2737 ------- null} + -t 3.1011 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5465 -a 0 -x {9.0 10.0 2737 ------- null} h -t 3.1011 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5465 -a 0 -x {9.0 10.0 2737 ------- null} + -t 3.10118 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5455 -a 0 -x {9.0 10.0 2732 ------- null} - -t 3.10118 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5455 -a 0 -x {9.0 10.0 2732 ------- null} h -t 3.10118 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5455 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.10125 -s 0 -d 9 -p ack -e 40 -c 0 -i 5462 -a 0 -x {10.0 9.0 2726 ------- null} - -t 3.10125 -s 0 -d 9 -p ack -e 40 -c 0 -i 5462 -a 0 -x {10.0 9.0 2726 ------- null} h -t 3.10125 -s 0 -d 9 -p ack -e 40 -c 0 -i 5462 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.10139 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5451 -a 0 -x {9.0 10.0 2730 ------- null} + -t 3.10139 -s 10 -d 7 -p ack -e 40 -c 0 -i 5470 -a 0 -x {10.0 9.0 2730 ------- null} - -t 3.10139 -s 10 -d 7 -p ack -e 40 -c 0 -i 5470 -a 0 -x {10.0 9.0 2730 ------- null} h -t 3.10139 -s 10 -d 7 -p ack -e 40 -c 0 -i 5470 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.10211 -s 10 -d 7 -p ack -e 40 -c 0 -i 5468 -a 0 -x {10.0 9.0 2729 ------- null} + -t 3.10211 -s 7 -d 0 -p ack -e 40 -c 0 -i 5468 -a 0 -x {10.0 9.0 2729 ------- null} h -t 3.10211 -s 7 -d 8 -p ack -e 40 -c 0 -i 5468 -a 0 -x {10.0 9.0 2729 ------- null} r -t 3.10216 -s 0 -d 9 -p ack -e 40 -c 0 -i 5460 -a 0 -x {10.0 9.0 2725 ------- null} + -t 3.10216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5471 -a 0 -x {9.0 10.0 2740 ------- null} - -t 3.10216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5471 -a 0 -x {9.0 10.0 2740 ------- null} h -t 3.10216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5471 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.10227 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5457 -a 0 -x {9.0 10.0 2733 ------- null} - -t 3.10227 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5457 -a 0 -x {9.0 10.0 2733 ------- null} h -t 3.10227 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5457 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.10242 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5467 -a 0 -x {9.0 10.0 2738 ------- null} + -t 3.10242 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5467 -a 0 -x {9.0 10.0 2738 ------- null} h -t 3.10242 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5467 -a 0 -x {9.0 10.0 2738 ------- null} + -t 3.10253 -s 0 -d 9 -p ack -e 40 -c 0 -i 5464 -a 0 -x {10.0 9.0 2727 ------- null} - -t 3.10253 -s 0 -d 9 -p ack -e 40 -c 0 -i 5464 -a 0 -x {10.0 9.0 2727 ------- null} h -t 3.10253 -s 0 -d 9 -p ack -e 40 -c 0 -i 5464 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.10267 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5453 -a 0 -x {9.0 10.0 2731 ------- null} + -t 3.10267 -s 10 -d 7 -p ack -e 40 -c 0 -i 5472 -a 0 -x {10.0 9.0 2731 ------- null} - -t 3.10267 -s 10 -d 7 -p ack -e 40 -c 0 -i 5472 -a 0 -x {10.0 9.0 2731 ------- null} h -t 3.10267 -s 10 -d 7 -p ack -e 40 -c 0 -i 5472 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.10328 -s 0 -d 9 -p ack -e 40 -c 0 -i 5462 -a 0 -x {10.0 9.0 2726 ------- null} + -t 3.10328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5473 -a 0 -x {9.0 10.0 2741 ------- null} - -t 3.10328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5473 -a 0 -x {9.0 10.0 2741 ------- null} h -t 3.10328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5473 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.10342 -s 10 -d 7 -p ack -e 40 -c 0 -i 5470 -a 0 -x {10.0 9.0 2730 ------- null} + -t 3.10342 -s 7 -d 0 -p ack -e 40 -c 0 -i 5470 -a 0 -x {10.0 9.0 2730 ------- null} h -t 3.10342 -s 7 -d 8 -p ack -e 40 -c 0 -i 5470 -a 0 -x {10.0 9.0 2730 ------- null} + -t 3.10358 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5459 -a 0 -x {9.0 10.0 2734 ------- null} - -t 3.10358 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5459 -a 0 -x {9.0 10.0 2734 ------- null} h -t 3.10358 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5459 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.10368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5469 -a 0 -x {9.0 10.0 2739 ------- null} + -t 3.10368 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5469 -a 0 -x {9.0 10.0 2739 ------- null} h -t 3.10368 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5469 -a 0 -x {9.0 10.0 2739 ------- null} + -t 3.10376 -s 0 -d 9 -p ack -e 40 -c 0 -i 5466 -a 0 -x {10.0 9.0 2728 ------- null} - -t 3.10376 -s 0 -d 9 -p ack -e 40 -c 0 -i 5466 -a 0 -x {10.0 9.0 2728 ------- null} h -t 3.10376 -s 0 -d 9 -p ack -e 40 -c 0 -i 5466 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.10398 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5455 -a 0 -x {9.0 10.0 2732 ------- null} + -t 3.10398 -s 10 -d 7 -p ack -e 40 -c 0 -i 5474 -a 0 -x {10.0 9.0 2732 ------- null} - -t 3.10398 -s 10 -d 7 -p ack -e 40 -c 0 -i 5474 -a 0 -x {10.0 9.0 2732 ------- null} h -t 3.10398 -s 10 -d 7 -p ack -e 40 -c 0 -i 5474 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.10456 -s 0 -d 9 -p ack -e 40 -c 0 -i 5464 -a 0 -x {10.0 9.0 2727 ------- null} + -t 3.10456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5475 -a 0 -x {9.0 10.0 2742 ------- null} - -t 3.10456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5475 -a 0 -x {9.0 10.0 2742 ------- null} h -t 3.10456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5475 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.10467 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5461 -a 0 -x {9.0 10.0 2735 ------- null} - -t 3.10467 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5461 -a 0 -x {9.0 10.0 2735 ------- null} h -t 3.10467 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5461 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.1047 -s 10 -d 7 -p ack -e 40 -c 0 -i 5472 -a 0 -x {10.0 9.0 2731 ------- null} + -t 3.1047 -s 7 -d 0 -p ack -e 40 -c 0 -i 5472 -a 0 -x {10.0 9.0 2731 ------- null} h -t 3.1047 -s 7 -d 8 -p ack -e 40 -c 0 -i 5472 -a 0 -x {10.0 9.0 2731 ------- null} r -t 3.10496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5471 -a 0 -x {9.0 10.0 2740 ------- null} + -t 3.10496 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5471 -a 0 -x {9.0 10.0 2740 ------- null} h -t 3.10496 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5471 -a 0 -x {9.0 10.0 2740 ------- null} + -t 3.10498 -s 0 -d 9 -p ack -e 40 -c 0 -i 5468 -a 0 -x {10.0 9.0 2729 ------- null} - -t 3.10498 -s 0 -d 9 -p ack -e 40 -c 0 -i 5468 -a 0 -x {10.0 9.0 2729 ------- null} h -t 3.10498 -s 0 -d 9 -p ack -e 40 -c 0 -i 5468 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.10507 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5457 -a 0 -x {9.0 10.0 2733 ------- null} + -t 3.10507 -s 10 -d 7 -p ack -e 40 -c 0 -i 5476 -a 0 -x {10.0 9.0 2733 ------- null} - -t 3.10507 -s 10 -d 7 -p ack -e 40 -c 0 -i 5476 -a 0 -x {10.0 9.0 2733 ------- null} h -t 3.10507 -s 10 -d 7 -p ack -e 40 -c 0 -i 5476 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.10579 -s 0 -d 9 -p ack -e 40 -c 0 -i 5466 -a 0 -x {10.0 9.0 2728 ------- null} + -t 3.10579 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5477 -a 0 -x {9.0 10.0 2743 ------- null} - -t 3.10579 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5477 -a 0 -x {9.0 10.0 2743 ------- null} h -t 3.10579 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5477 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.10602 -s 10 -d 7 -p ack -e 40 -c 0 -i 5474 -a 0 -x {10.0 9.0 2732 ------- null} + -t 3.10602 -s 7 -d 0 -p ack -e 40 -c 0 -i 5474 -a 0 -x {10.0 9.0 2732 ------- null} h -t 3.10602 -s 7 -d 8 -p ack -e 40 -c 0 -i 5474 -a 0 -x {10.0 9.0 2732 ------- null} + -t 3.10605 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5463 -a 0 -x {9.0 10.0 2736 ------- null} - -t 3.10605 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5463 -a 0 -x {9.0 10.0 2736 ------- null} h -t 3.10605 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5463 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.10608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5473 -a 0 -x {9.0 10.0 2741 ------- null} + -t 3.10608 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5473 -a 0 -x {9.0 10.0 2741 ------- null} h -t 3.10608 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5473 -a 0 -x {9.0 10.0 2741 ------- null} + -t 3.10622 -s 0 -d 9 -p ack -e 40 -c 0 -i 5470 -a 0 -x {10.0 9.0 2730 ------- null} - -t 3.10622 -s 0 -d 9 -p ack -e 40 -c 0 -i 5470 -a 0 -x {10.0 9.0 2730 ------- null} h -t 3.10622 -s 0 -d 9 -p ack -e 40 -c 0 -i 5470 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.10638 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5459 -a 0 -x {9.0 10.0 2734 ------- null} + -t 3.10638 -s 10 -d 7 -p ack -e 40 -c 0 -i 5478 -a 0 -x {10.0 9.0 2734 ------- null} - -t 3.10638 -s 10 -d 7 -p ack -e 40 -c 0 -i 5478 -a 0 -x {10.0 9.0 2734 ------- null} h -t 3.10638 -s 10 -d 7 -p ack -e 40 -c 0 -i 5478 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.10701 -s 0 -d 9 -p ack -e 40 -c 0 -i 5468 -a 0 -x {10.0 9.0 2729 ------- null} + -t 3.10701 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5479 -a 0 -x {9.0 10.0 2744 ------- null} - -t 3.10701 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5479 -a 0 -x {9.0 10.0 2744 ------- null} h -t 3.10701 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5479 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.1071 -s 10 -d 7 -p ack -e 40 -c 0 -i 5476 -a 0 -x {10.0 9.0 2733 ------- null} + -t 3.1071 -s 7 -d 0 -p ack -e 40 -c 0 -i 5476 -a 0 -x {10.0 9.0 2733 ------- null} h -t 3.1071 -s 7 -d 8 -p ack -e 40 -c 0 -i 5476 -a 0 -x {10.0 9.0 2733 ------- null} + -t 3.10714 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5465 -a 0 -x {9.0 10.0 2737 ------- null} - -t 3.10714 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5465 -a 0 -x {9.0 10.0 2737 ------- null} h -t 3.10714 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5465 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.10736 -s 0 -d 9 -p ack -e 40 -c 0 -i 5472 -a 0 -x {10.0 9.0 2731 ------- null} - -t 3.10736 -s 0 -d 9 -p ack -e 40 -c 0 -i 5472 -a 0 -x {10.0 9.0 2731 ------- null} h -t 3.10736 -s 0 -d 9 -p ack -e 40 -c 0 -i 5472 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.10736 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5475 -a 0 -x {9.0 10.0 2742 ------- null} + -t 3.10736 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5475 -a 0 -x {9.0 10.0 2742 ------- null} h -t 3.10736 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5475 -a 0 -x {9.0 10.0 2742 ------- null} r -t 3.10747 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5461 -a 0 -x {9.0 10.0 2735 ------- null} + -t 3.10747 -s 10 -d 7 -p ack -e 40 -c 0 -i 5480 -a 0 -x {10.0 9.0 2735 ------- null} - -t 3.10747 -s 10 -d 7 -p ack -e 40 -c 0 -i 5480 -a 0 -x {10.0 9.0 2735 ------- null} h -t 3.10747 -s 10 -d 7 -p ack -e 40 -c 0 -i 5480 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.10822 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5467 -a 0 -x {9.0 10.0 2738 ------- null} - -t 3.10822 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5467 -a 0 -x {9.0 10.0 2738 ------- null} h -t 3.10822 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5467 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.10826 -s 0 -d 9 -p ack -e 40 -c 0 -i 5470 -a 0 -x {10.0 9.0 2730 ------- null} + -t 3.10826 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5481 -a 0 -x {9.0 10.0 2745 ------- null} - -t 3.10826 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5481 -a 0 -x {9.0 10.0 2745 ------- null} h -t 3.10826 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5481 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.10842 -s 10 -d 7 -p ack -e 40 -c 0 -i 5478 -a 0 -x {10.0 9.0 2734 ------- null} + -t 3.10842 -s 7 -d 0 -p ack -e 40 -c 0 -i 5478 -a 0 -x {10.0 9.0 2734 ------- null} h -t 3.10842 -s 7 -d 8 -p ack -e 40 -c 0 -i 5478 -a 0 -x {10.0 9.0 2734 ------- null} + -t 3.10848 -s 0 -d 9 -p ack -e 40 -c 0 -i 5474 -a 0 -x {10.0 9.0 2732 ------- null} - -t 3.10848 -s 0 -d 9 -p ack -e 40 -c 0 -i 5474 -a 0 -x {10.0 9.0 2732 ------- null} h -t 3.10848 -s 0 -d 9 -p ack -e 40 -c 0 -i 5474 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.10859 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5477 -a 0 -x {9.0 10.0 2743 ------- null} + -t 3.10859 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5477 -a 0 -x {9.0 10.0 2743 ------- null} h -t 3.10859 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5477 -a 0 -x {9.0 10.0 2743 ------- null} r -t 3.10885 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5463 -a 0 -x {9.0 10.0 2736 ------- null} + -t 3.10885 -s 10 -d 7 -p ack -e 40 -c 0 -i 5482 -a 0 -x {10.0 9.0 2736 ------- null} - -t 3.10885 -s 10 -d 7 -p ack -e 40 -c 0 -i 5482 -a 0 -x {10.0 9.0 2736 ------- null} h -t 3.10885 -s 10 -d 7 -p ack -e 40 -c 0 -i 5482 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.10939 -s 0 -d 9 -p ack -e 40 -c 0 -i 5472 -a 0 -x {10.0 9.0 2731 ------- null} + -t 3.10939 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5483 -a 0 -x {9.0 10.0 2746 ------- null} - -t 3.10939 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5483 -a 0 -x {9.0 10.0 2746 ------- null} h -t 3.10939 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5483 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.10941 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5469 -a 0 -x {9.0 10.0 2739 ------- null} - -t 3.10941 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5469 -a 0 -x {9.0 10.0 2739 ------- null} h -t 3.10941 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5469 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.1095 -s 10 -d 7 -p ack -e 40 -c 0 -i 5480 -a 0 -x {10.0 9.0 2735 ------- null} + -t 3.1095 -s 7 -d 0 -p ack -e 40 -c 0 -i 5480 -a 0 -x {10.0 9.0 2735 ------- null} h -t 3.1095 -s 7 -d 8 -p ack -e 40 -c 0 -i 5480 -a 0 -x {10.0 9.0 2735 ------- null} + -t 3.10965 -s 0 -d 9 -p ack -e 40 -c 0 -i 5476 -a 0 -x {10.0 9.0 2733 ------- null} - -t 3.10965 -s 0 -d 9 -p ack -e 40 -c 0 -i 5476 -a 0 -x {10.0 9.0 2733 ------- null} h -t 3.10965 -s 0 -d 9 -p ack -e 40 -c 0 -i 5476 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.10981 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5479 -a 0 -x {9.0 10.0 2744 ------- null} + -t 3.10981 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5479 -a 0 -x {9.0 10.0 2744 ------- null} h -t 3.10981 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5479 -a 0 -x {9.0 10.0 2744 ------- null} r -t 3.10994 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5465 -a 0 -x {9.0 10.0 2737 ------- null} + -t 3.10994 -s 10 -d 7 -p ack -e 40 -c 0 -i 5484 -a 0 -x {10.0 9.0 2737 ------- null} - -t 3.10994 -s 10 -d 7 -p ack -e 40 -c 0 -i 5484 -a 0 -x {10.0 9.0 2737 ------- null} h -t 3.10994 -s 10 -d 7 -p ack -e 40 -c 0 -i 5484 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.1105 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5471 -a 0 -x {9.0 10.0 2740 ------- null} - -t 3.1105 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5471 -a 0 -x {9.0 10.0 2740 ------- null} h -t 3.1105 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5471 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.11051 -s 0 -d 9 -p ack -e 40 -c 0 -i 5474 -a 0 -x {10.0 9.0 2732 ------- null} + -t 3.11051 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5485 -a 0 -x {9.0 10.0 2747 ------- null} - -t 3.11051 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5485 -a 0 -x {9.0 10.0 2747 ------- null} h -t 3.11051 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5485 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.11062 -s 0 -d 9 -p ack -e 40 -c 0 -i 5478 -a 0 -x {10.0 9.0 2734 ------- null} - -t 3.11062 -s 0 -d 9 -p ack -e 40 -c 0 -i 5478 -a 0 -x {10.0 9.0 2734 ------- null} h -t 3.11062 -s 0 -d 9 -p ack -e 40 -c 0 -i 5478 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.11088 -s 10 -d 7 -p ack -e 40 -c 0 -i 5482 -a 0 -x {10.0 9.0 2736 ------- null} + -t 3.11088 -s 7 -d 0 -p ack -e 40 -c 0 -i 5482 -a 0 -x {10.0 9.0 2736 ------- null} h -t 3.11088 -s 7 -d 8 -p ack -e 40 -c 0 -i 5482 -a 0 -x {10.0 9.0 2736 ------- null} r -t 3.11102 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5467 -a 0 -x {9.0 10.0 2738 ------- null} + -t 3.11102 -s 10 -d 7 -p ack -e 40 -c 0 -i 5486 -a 0 -x {10.0 9.0 2738 ------- null} - -t 3.11102 -s 10 -d 7 -p ack -e 40 -c 0 -i 5486 -a 0 -x {10.0 9.0 2738 ------- null} h -t 3.11102 -s 10 -d 7 -p ack -e 40 -c 0 -i 5486 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.11106 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5481 -a 0 -x {9.0 10.0 2745 ------- null} + -t 3.11106 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5481 -a 0 -x {9.0 10.0 2745 ------- null} h -t 3.11106 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5481 -a 0 -x {9.0 10.0 2745 ------- null} + -t 3.11158 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5473 -a 0 -x {9.0 10.0 2741 ------- null} - -t 3.11158 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5473 -a 0 -x {9.0 10.0 2741 ------- null} h -t 3.11158 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5473 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.11168 -s 0 -d 9 -p ack -e 40 -c 0 -i 5480 -a 0 -x {10.0 9.0 2735 ------- null} - -t 3.11168 -s 0 -d 9 -p ack -e 40 -c 0 -i 5480 -a 0 -x {10.0 9.0 2735 ------- null} h -t 3.11168 -s 0 -d 9 -p ack -e 40 -c 0 -i 5480 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.11168 -s 0 -d 9 -p ack -e 40 -c 0 -i 5476 -a 0 -x {10.0 9.0 2733 ------- null} + -t 3.11168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5487 -a 0 -x {9.0 10.0 2748 ------- null} - -t 3.11168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5487 -a 0 -x {9.0 10.0 2748 ------- null} h -t 3.11168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5487 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.11197 -s 10 -d 7 -p ack -e 40 -c 0 -i 5484 -a 0 -x {10.0 9.0 2737 ------- null} + -t 3.11197 -s 7 -d 0 -p ack -e 40 -c 0 -i 5484 -a 0 -x {10.0 9.0 2737 ------- null} h -t 3.11197 -s 7 -d 8 -p ack -e 40 -c 0 -i 5484 -a 0 -x {10.0 9.0 2737 ------- null} r -t 3.11219 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5483 -a 0 -x {9.0 10.0 2746 ------- null} + -t 3.11219 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5483 -a 0 -x {9.0 10.0 2746 ------- null} h -t 3.11219 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5483 -a 0 -x {9.0 10.0 2746 ------- null} r -t 3.11221 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5469 -a 0 -x {9.0 10.0 2739 ------- null} + -t 3.11221 -s 10 -d 7 -p ack -e 40 -c 0 -i 5488 -a 0 -x {10.0 9.0 2739 ------- null} - -t 3.11221 -s 10 -d 7 -p ack -e 40 -c 0 -i 5488 -a 0 -x {10.0 9.0 2739 ------- null} h -t 3.11221 -s 10 -d 7 -p ack -e 40 -c 0 -i 5488 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.11266 -s 0 -d 9 -p ack -e 40 -c 0 -i 5478 -a 0 -x {10.0 9.0 2734 ------- null} + -t 3.11266 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5489 -a 0 -x {9.0 10.0 2749 ------- null} - -t 3.11266 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5489 -a 0 -x {9.0 10.0 2749 ------- null} h -t 3.11266 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5489 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.11267 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5475 -a 0 -x {9.0 10.0 2742 ------- null} - -t 3.11267 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5475 -a 0 -x {9.0 10.0 2742 ------- null} h -t 3.11267 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5475 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.11277 -s 0 -d 9 -p ack -e 40 -c 0 -i 5482 -a 0 -x {10.0 9.0 2736 ------- null} - -t 3.11277 -s 0 -d 9 -p ack -e 40 -c 0 -i 5482 -a 0 -x {10.0 9.0 2736 ------- null} h -t 3.11277 -s 0 -d 9 -p ack -e 40 -c 0 -i 5482 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.11306 -s 10 -d 7 -p ack -e 40 -c 0 -i 5486 -a 0 -x {10.0 9.0 2738 ------- null} + -t 3.11306 -s 7 -d 0 -p ack -e 40 -c 0 -i 5486 -a 0 -x {10.0 9.0 2738 ------- null} h -t 3.11306 -s 7 -d 8 -p ack -e 40 -c 0 -i 5486 -a 0 -x {10.0 9.0 2738 ------- null} r -t 3.1133 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5471 -a 0 -x {9.0 10.0 2740 ------- null} + -t 3.1133 -s 10 -d 7 -p ack -e 40 -c 0 -i 5490 -a 0 -x {10.0 9.0 2740 ------- null} - -t 3.1133 -s 10 -d 7 -p ack -e 40 -c 0 -i 5490 -a 0 -x {10.0 9.0 2740 ------- null} h -t 3.1133 -s 10 -d 7 -p ack -e 40 -c 0 -i 5490 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.11331 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5485 -a 0 -x {9.0 10.0 2747 ------- null} + -t 3.11331 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5485 -a 0 -x {9.0 10.0 2747 ------- null} h -t 3.11331 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5485 -a 0 -x {9.0 10.0 2747 ------- null} r -t 3.11371 -s 0 -d 9 -p ack -e 40 -c 0 -i 5480 -a 0 -x {10.0 9.0 2735 ------- null} + -t 3.11371 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5491 -a 0 -x {9.0 10.0 2750 ------- null} - -t 3.11371 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5491 -a 0 -x {9.0 10.0 2750 ------- null} h -t 3.11371 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5491 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.11376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5477 -a 0 -x {9.0 10.0 2743 ------- null} - -t 3.11376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5477 -a 0 -x {9.0 10.0 2743 ------- null} h -t 3.11376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5477 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.11392 -s 0 -d 9 -p ack -e 40 -c 0 -i 5484 -a 0 -x {10.0 9.0 2737 ------- null} - -t 3.11392 -s 0 -d 9 -p ack -e 40 -c 0 -i 5484 -a 0 -x {10.0 9.0 2737 ------- null} h -t 3.11392 -s 0 -d 9 -p ack -e 40 -c 0 -i 5484 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.11424 -s 10 -d 7 -p ack -e 40 -c 0 -i 5488 -a 0 -x {10.0 9.0 2739 ------- null} + -t 3.11424 -s 7 -d 0 -p ack -e 40 -c 0 -i 5488 -a 0 -x {10.0 9.0 2739 ------- null} h -t 3.11424 -s 7 -d 8 -p ack -e 40 -c 0 -i 5488 -a 0 -x {10.0 9.0 2739 ------- null} r -t 3.11438 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5473 -a 0 -x {9.0 10.0 2741 ------- null} + -t 3.11438 -s 10 -d 7 -p ack -e 40 -c 0 -i 5492 -a 0 -x {10.0 9.0 2741 ------- null} - -t 3.11438 -s 10 -d 7 -p ack -e 40 -c 0 -i 5492 -a 0 -x {10.0 9.0 2741 ------- null} h -t 3.11438 -s 10 -d 7 -p ack -e 40 -c 0 -i 5492 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.11448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5487 -a 0 -x {9.0 10.0 2748 ------- null} + -t 3.11448 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5487 -a 0 -x {9.0 10.0 2748 ------- null} h -t 3.11448 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5487 -a 0 -x {9.0 10.0 2748 ------- null} r -t 3.1148 -s 0 -d 9 -p ack -e 40 -c 0 -i 5482 -a 0 -x {10.0 9.0 2736 ------- null} + -t 3.1148 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5493 -a 0 -x {9.0 10.0 2751 ------- null} - -t 3.1148 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5493 -a 0 -x {9.0 10.0 2751 ------- null} h -t 3.1148 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5493 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.11485 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5479 -a 0 -x {9.0 10.0 2744 ------- null} - -t 3.11485 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5479 -a 0 -x {9.0 10.0 2744 ------- null} h -t 3.11485 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5479 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.11493 -s 0 -d 9 -p ack -e 40 -c 0 -i 5486 -a 0 -x {10.0 9.0 2738 ------- null} - -t 3.11493 -s 0 -d 9 -p ack -e 40 -c 0 -i 5486 -a 0 -x {10.0 9.0 2738 ------- null} h -t 3.11493 -s 0 -d 9 -p ack -e 40 -c 0 -i 5486 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.11533 -s 10 -d 7 -p ack -e 40 -c 0 -i 5490 -a 0 -x {10.0 9.0 2740 ------- null} + -t 3.11533 -s 7 -d 0 -p ack -e 40 -c 0 -i 5490 -a 0 -x {10.0 9.0 2740 ------- null} h -t 3.11533 -s 7 -d 8 -p ack -e 40 -c 0 -i 5490 -a 0 -x {10.0 9.0 2740 ------- null} r -t 3.11546 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5489 -a 0 -x {9.0 10.0 2749 ------- null} + -t 3.11546 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5489 -a 0 -x {9.0 10.0 2749 ------- null} h -t 3.11546 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5489 -a 0 -x {9.0 10.0 2749 ------- null} r -t 3.11547 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5475 -a 0 -x {9.0 10.0 2742 ------- null} + -t 3.11547 -s 10 -d 7 -p ack -e 40 -c 0 -i 5494 -a 0 -x {10.0 9.0 2742 ------- null} - -t 3.11547 -s 10 -d 7 -p ack -e 40 -c 0 -i 5494 -a 0 -x {10.0 9.0 2742 ------- null} h -t 3.11547 -s 10 -d 7 -p ack -e 40 -c 0 -i 5494 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.11594 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5481 -a 0 -x {9.0 10.0 2745 ------- null} - -t 3.11594 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5481 -a 0 -x {9.0 10.0 2745 ------- null} h -t 3.11594 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5481 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.11595 -s 0 -d 9 -p ack -e 40 -c 0 -i 5484 -a 0 -x {10.0 9.0 2737 ------- null} + -t 3.11595 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5495 -a 0 -x {9.0 10.0 2752 ------- null} - -t 3.11595 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5495 -a 0 -x {9.0 10.0 2752 ------- null} h -t 3.11595 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5495 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.11614 -s 0 -d 9 -p ack -e 40 -c 0 -i 5488 -a 0 -x {10.0 9.0 2739 ------- null} - -t 3.11614 -s 0 -d 9 -p ack -e 40 -c 0 -i 5488 -a 0 -x {10.0 9.0 2739 ------- null} h -t 3.11614 -s 0 -d 9 -p ack -e 40 -c 0 -i 5488 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.11642 -s 10 -d 7 -p ack -e 40 -c 0 -i 5492 -a 0 -x {10.0 9.0 2741 ------- null} + -t 3.11642 -s 7 -d 0 -p ack -e 40 -c 0 -i 5492 -a 0 -x {10.0 9.0 2741 ------- null} h -t 3.11642 -s 7 -d 8 -p ack -e 40 -c 0 -i 5492 -a 0 -x {10.0 9.0 2741 ------- null} r -t 3.11651 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5491 -a 0 -x {9.0 10.0 2750 ------- null} + -t 3.11651 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5491 -a 0 -x {9.0 10.0 2750 ------- null} h -t 3.11651 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5491 -a 0 -x {9.0 10.0 2750 ------- null} r -t 3.11656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5477 -a 0 -x {9.0 10.0 2743 ------- null} + -t 3.11656 -s 10 -d 7 -p ack -e 40 -c 0 -i 5496 -a 0 -x {10.0 9.0 2743 ------- null} - -t 3.11656 -s 10 -d 7 -p ack -e 40 -c 0 -i 5496 -a 0 -x {10.0 9.0 2743 ------- null} h -t 3.11656 -s 10 -d 7 -p ack -e 40 -c 0 -i 5496 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.11696 -s 0 -d 9 -p ack -e 40 -c 0 -i 5486 -a 0 -x {10.0 9.0 2738 ------- null} + -t 3.11696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5497 -a 0 -x {9.0 10.0 2753 ------- null} - -t 3.11696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5497 -a 0 -x {9.0 10.0 2753 ------- null} h -t 3.11696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5497 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.11702 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5483 -a 0 -x {9.0 10.0 2746 ------- null} - -t 3.11702 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5483 -a 0 -x {9.0 10.0 2746 ------- null} h -t 3.11702 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5483 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.11718 -s 0 -d 9 -p ack -e 40 -c 0 -i 5490 -a 0 -x {10.0 9.0 2740 ------- null} - -t 3.11718 -s 0 -d 9 -p ack -e 40 -c 0 -i 5490 -a 0 -x {10.0 9.0 2740 ------- null} h -t 3.11718 -s 0 -d 9 -p ack -e 40 -c 0 -i 5490 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.1175 -s 10 -d 7 -p ack -e 40 -c 0 -i 5494 -a 0 -x {10.0 9.0 2742 ------- null} + -t 3.1175 -s 7 -d 0 -p ack -e 40 -c 0 -i 5494 -a 0 -x {10.0 9.0 2742 ------- null} h -t 3.1175 -s 7 -d 8 -p ack -e 40 -c 0 -i 5494 -a 0 -x {10.0 9.0 2742 ------- null} r -t 3.1176 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5493 -a 0 -x {9.0 10.0 2751 ------- null} + -t 3.1176 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5493 -a 0 -x {9.0 10.0 2751 ------- null} h -t 3.1176 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5493 -a 0 -x {9.0 10.0 2751 ------- null} r -t 3.11765 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5479 -a 0 -x {9.0 10.0 2744 ------- null} + -t 3.11765 -s 10 -d 7 -p ack -e 40 -c 0 -i 5498 -a 0 -x {10.0 9.0 2744 ------- null} - -t 3.11765 -s 10 -d 7 -p ack -e 40 -c 0 -i 5498 -a 0 -x {10.0 9.0 2744 ------- null} h -t 3.11765 -s 10 -d 7 -p ack -e 40 -c 0 -i 5498 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.11811 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5485 -a 0 -x {9.0 10.0 2747 ------- null} - -t 3.11811 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5485 -a 0 -x {9.0 10.0 2747 ------- null} h -t 3.11811 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5485 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.11818 -s 0 -d 9 -p ack -e 40 -c 0 -i 5492 -a 0 -x {10.0 9.0 2741 ------- null} - -t 3.11818 -s 0 -d 9 -p ack -e 40 -c 0 -i 5492 -a 0 -x {10.0 9.0 2741 ------- null} h -t 3.11818 -s 0 -d 9 -p ack -e 40 -c 0 -i 5492 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.11818 -s 0 -d 9 -p ack -e 40 -c 0 -i 5488 -a 0 -x {10.0 9.0 2739 ------- null} + -t 3.11818 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5499 -a 0 -x {9.0 10.0 2754 ------- null} - -t 3.11818 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5499 -a 0 -x {9.0 10.0 2754 ------- null} h -t 3.11818 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5499 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.11859 -s 10 -d 7 -p ack -e 40 -c 0 -i 5496 -a 0 -x {10.0 9.0 2743 ------- null} + -t 3.11859 -s 7 -d 0 -p ack -e 40 -c 0 -i 5496 -a 0 -x {10.0 9.0 2743 ------- null} h -t 3.11859 -s 7 -d 8 -p ack -e 40 -c 0 -i 5496 -a 0 -x {10.0 9.0 2743 ------- null} r -t 3.11874 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5481 -a 0 -x {9.0 10.0 2745 ------- null} + -t 3.11874 -s 10 -d 7 -p ack -e 40 -c 0 -i 5500 -a 0 -x {10.0 9.0 2745 ------- null} - -t 3.11874 -s 10 -d 7 -p ack -e 40 -c 0 -i 5500 -a 0 -x {10.0 9.0 2745 ------- null} h -t 3.11874 -s 10 -d 7 -p ack -e 40 -c 0 -i 5500 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.11875 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5495 -a 0 -x {9.0 10.0 2752 ------- null} + -t 3.11875 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5495 -a 0 -x {9.0 10.0 2752 ------- null} h -t 3.11875 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5495 -a 0 -x {9.0 10.0 2752 ------- null} + -t 3.1192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5487 -a 0 -x {9.0 10.0 2748 ------- null} - -t 3.1192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5487 -a 0 -x {9.0 10.0 2748 ------- null} h -t 3.1192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5487 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.11922 -s 0 -d 9 -p ack -e 40 -c 0 -i 5490 -a 0 -x {10.0 9.0 2740 ------- null} + -t 3.11922 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5501 -a 0 -x {9.0 10.0 2755 ------- null} - -t 3.11922 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5501 -a 0 -x {9.0 10.0 2755 ------- null} h -t 3.11922 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5501 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.11942 -s 0 -d 9 -p ack -e 40 -c 0 -i 5494 -a 0 -x {10.0 9.0 2742 ------- null} - -t 3.11942 -s 0 -d 9 -p ack -e 40 -c 0 -i 5494 -a 0 -x {10.0 9.0 2742 ------- null} h -t 3.11942 -s 0 -d 9 -p ack -e 40 -c 0 -i 5494 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.11968 -s 10 -d 7 -p ack -e 40 -c 0 -i 5498 -a 0 -x {10.0 9.0 2744 ------- null} + -t 3.11968 -s 7 -d 0 -p ack -e 40 -c 0 -i 5498 -a 0 -x {10.0 9.0 2744 ------- null} h -t 3.11968 -s 7 -d 8 -p ack -e 40 -c 0 -i 5498 -a 0 -x {10.0 9.0 2744 ------- null} r -t 3.11976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5497 -a 0 -x {9.0 10.0 2753 ------- null} + -t 3.11976 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5497 -a 0 -x {9.0 10.0 2753 ------- null} h -t 3.11976 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5497 -a 0 -x {9.0 10.0 2753 ------- null} r -t 3.11982 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5483 -a 0 -x {9.0 10.0 2746 ------- null} + -t 3.11982 -s 10 -d 7 -p ack -e 40 -c 0 -i 5502 -a 0 -x {10.0 9.0 2746 ------- null} - -t 3.11982 -s 10 -d 7 -p ack -e 40 -c 0 -i 5502 -a 0 -x {10.0 9.0 2746 ------- null} h -t 3.11982 -s 10 -d 7 -p ack -e 40 -c 0 -i 5502 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.12021 -s 0 -d 9 -p ack -e 40 -c 0 -i 5492 -a 0 -x {10.0 9.0 2741 ------- null} + -t 3.12021 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5503 -a 0 -x {9.0 10.0 2756 ------- null} - -t 3.12021 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5503 -a 0 -x {9.0 10.0 2756 ------- null} h -t 3.12021 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5503 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.12029 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5489 -a 0 -x {9.0 10.0 2749 ------- null} - -t 3.12029 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5489 -a 0 -x {9.0 10.0 2749 ------- null} h -t 3.12029 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5489 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.12046 -s 0 -d 9 -p ack -e 40 -c 0 -i 5496 -a 0 -x {10.0 9.0 2743 ------- null} - -t 3.12046 -s 0 -d 9 -p ack -e 40 -c 0 -i 5496 -a 0 -x {10.0 9.0 2743 ------- null} h -t 3.12046 -s 0 -d 9 -p ack -e 40 -c 0 -i 5496 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.12077 -s 10 -d 7 -p ack -e 40 -c 0 -i 5500 -a 0 -x {10.0 9.0 2745 ------- null} + -t 3.12077 -s 7 -d 0 -p ack -e 40 -c 0 -i 5500 -a 0 -x {10.0 9.0 2745 ------- null} h -t 3.12077 -s 7 -d 8 -p ack -e 40 -c 0 -i 5500 -a 0 -x {10.0 9.0 2745 ------- null} r -t 3.12091 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5485 -a 0 -x {9.0 10.0 2747 ------- null} + -t 3.12091 -s 10 -d 7 -p ack -e 40 -c 0 -i 5504 -a 0 -x {10.0 9.0 2747 ------- null} - -t 3.12091 -s 10 -d 7 -p ack -e 40 -c 0 -i 5504 -a 0 -x {10.0 9.0 2747 ------- null} h -t 3.12091 -s 10 -d 7 -p ack -e 40 -c 0 -i 5504 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.12098 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5499 -a 0 -x {9.0 10.0 2754 ------- null} + -t 3.12098 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5499 -a 0 -x {9.0 10.0 2754 ------- null} h -t 3.12098 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5499 -a 0 -x {9.0 10.0 2754 ------- null} + -t 3.12138 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5491 -a 0 -x {9.0 10.0 2750 ------- null} - -t 3.12138 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5491 -a 0 -x {9.0 10.0 2750 ------- null} h -t 3.12138 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5491 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.12146 -s 0 -d 9 -p ack -e 40 -c 0 -i 5494 -a 0 -x {10.0 9.0 2742 ------- null} + -t 3.12146 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5505 -a 0 -x {9.0 10.0 2757 ------- null} - -t 3.12146 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5505 -a 0 -x {9.0 10.0 2757 ------- null} h -t 3.12146 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5505 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.12147 -s 0 -d 9 -p ack -e 40 -c 0 -i 5498 -a 0 -x {10.0 9.0 2744 ------- null} - -t 3.12147 -s 0 -d 9 -p ack -e 40 -c 0 -i 5498 -a 0 -x {10.0 9.0 2744 ------- null} h -t 3.12147 -s 0 -d 9 -p ack -e 40 -c 0 -i 5498 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.12186 -s 10 -d 7 -p ack -e 40 -c 0 -i 5502 -a 0 -x {10.0 9.0 2746 ------- null} + -t 3.12186 -s 7 -d 0 -p ack -e 40 -c 0 -i 5502 -a 0 -x {10.0 9.0 2746 ------- null} h -t 3.12186 -s 7 -d 8 -p ack -e 40 -c 0 -i 5502 -a 0 -x {10.0 9.0 2746 ------- null} r -t 3.122 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5487 -a 0 -x {9.0 10.0 2748 ------- null} + -t 3.122 -s 10 -d 7 -p ack -e 40 -c 0 -i 5506 -a 0 -x {10.0 9.0 2748 ------- null} - -t 3.122 -s 10 -d 7 -p ack -e 40 -c 0 -i 5506 -a 0 -x {10.0 9.0 2748 ------- null} h -t 3.122 -s 10 -d 7 -p ack -e 40 -c 0 -i 5506 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.12202 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5501 -a 0 -x {9.0 10.0 2755 ------- null} + -t 3.12202 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5501 -a 0 -x {9.0 10.0 2755 ------- null} h -t 3.12202 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5501 -a 0 -x {9.0 10.0 2755 ------- null} + -t 3.12246 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5493 -a 0 -x {9.0 10.0 2751 ------- null} - -t 3.12246 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5493 -a 0 -x {9.0 10.0 2751 ------- null} h -t 3.12246 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5493 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.1225 -s 0 -d 9 -p ack -e 40 -c 0 -i 5496 -a 0 -x {10.0 9.0 2743 ------- null} + -t 3.1225 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5507 -a 0 -x {9.0 10.0 2758 ------- null} - -t 3.1225 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5507 -a 0 -x {9.0 10.0 2758 ------- null} h -t 3.1225 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5507 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.12256 -s 0 -d 9 -p ack -e 40 -c 0 -i 5500 -a 0 -x {10.0 9.0 2745 ------- null} - -t 3.12256 -s 0 -d 9 -p ack -e 40 -c 0 -i 5500 -a 0 -x {10.0 9.0 2745 ------- null} h -t 3.12256 -s 0 -d 9 -p ack -e 40 -c 0 -i 5500 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.12294 -s 10 -d 7 -p ack -e 40 -c 0 -i 5504 -a 0 -x {10.0 9.0 2747 ------- null} + -t 3.12294 -s 7 -d 0 -p ack -e 40 -c 0 -i 5504 -a 0 -x {10.0 9.0 2747 ------- null} h -t 3.12294 -s 7 -d 8 -p ack -e 40 -c 0 -i 5504 -a 0 -x {10.0 9.0 2747 ------- null} r -t 3.12301 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5503 -a 0 -x {9.0 10.0 2756 ------- null} + -t 3.12301 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5503 -a 0 -x {9.0 10.0 2756 ------- null} h -t 3.12301 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5503 -a 0 -x {9.0 10.0 2756 ------- null} r -t 3.12309 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5489 -a 0 -x {9.0 10.0 2749 ------- null} + -t 3.12309 -s 10 -d 7 -p ack -e 40 -c 0 -i 5508 -a 0 -x {10.0 9.0 2749 ------- null} - -t 3.12309 -s 10 -d 7 -p ack -e 40 -c 0 -i 5508 -a 0 -x {10.0 9.0 2749 ------- null} h -t 3.12309 -s 10 -d 7 -p ack -e 40 -c 0 -i 5508 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.1235 -s 0 -d 9 -p ack -e 40 -c 0 -i 5498 -a 0 -x {10.0 9.0 2744 ------- null} + -t 3.1235 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5509 -a 0 -x {9.0 10.0 2759 ------- null} - -t 3.1235 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5509 -a 0 -x {9.0 10.0 2759 ------- null} h -t 3.1235 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5509 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.12355 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5495 -a 0 -x {9.0 10.0 2752 ------- null} - -t 3.12355 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5495 -a 0 -x {9.0 10.0 2752 ------- null} h -t 3.12355 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5495 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.12363 -s 0 -d 9 -p ack -e 40 -c 0 -i 5502 -a 0 -x {10.0 9.0 2746 ------- null} - -t 3.12363 -s 0 -d 9 -p ack -e 40 -c 0 -i 5502 -a 0 -x {10.0 9.0 2746 ------- null} h -t 3.12363 -s 0 -d 9 -p ack -e 40 -c 0 -i 5502 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.12403 -s 10 -d 7 -p ack -e 40 -c 0 -i 5506 -a 0 -x {10.0 9.0 2748 ------- null} + -t 3.12403 -s 7 -d 0 -p ack -e 40 -c 0 -i 5506 -a 0 -x {10.0 9.0 2748 ------- null} h -t 3.12403 -s 7 -d 8 -p ack -e 40 -c 0 -i 5506 -a 0 -x {10.0 9.0 2748 ------- null} r -t 3.12418 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5491 -a 0 -x {9.0 10.0 2750 ------- null} + -t 3.12418 -s 10 -d 7 -p ack -e 40 -c 0 -i 5510 -a 0 -x {10.0 9.0 2750 ------- null} - -t 3.12418 -s 10 -d 7 -p ack -e 40 -c 0 -i 5510 -a 0 -x {10.0 9.0 2750 ------- null} h -t 3.12418 -s 10 -d 7 -p ack -e 40 -c 0 -i 5510 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.12426 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5505 -a 0 -x {9.0 10.0 2757 ------- null} + -t 3.12426 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5505 -a 0 -x {9.0 10.0 2757 ------- null} h -t 3.12426 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5505 -a 0 -x {9.0 10.0 2757 ------- null} r -t 3.12459 -s 0 -d 9 -p ack -e 40 -c 0 -i 5500 -a 0 -x {10.0 9.0 2745 ------- null} + -t 3.12459 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5511 -a 0 -x {9.0 10.0 2760 ------- null} - -t 3.12459 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5511 -a 0 -x {9.0 10.0 2760 ------- null} h -t 3.12459 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5511 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.12464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5497 -a 0 -x {9.0 10.0 2753 ------- null} - -t 3.12464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5497 -a 0 -x {9.0 10.0 2753 ------- null} h -t 3.12464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5497 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.12472 -s 0 -d 9 -p ack -e 40 -c 0 -i 5504 -a 0 -x {10.0 9.0 2747 ------- null} - -t 3.12472 -s 0 -d 9 -p ack -e 40 -c 0 -i 5504 -a 0 -x {10.0 9.0 2747 ------- null} h -t 3.12472 -s 0 -d 9 -p ack -e 40 -c 0 -i 5504 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.12512 -s 10 -d 7 -p ack -e 40 -c 0 -i 5508 -a 0 -x {10.0 9.0 2749 ------- null} + -t 3.12512 -s 7 -d 0 -p ack -e 40 -c 0 -i 5508 -a 0 -x {10.0 9.0 2749 ------- null} h -t 3.12512 -s 7 -d 8 -p ack -e 40 -c 0 -i 5508 -a 0 -x {10.0 9.0 2749 ------- null} r -t 3.12526 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5493 -a 0 -x {9.0 10.0 2751 ------- null} + -t 3.12526 -s 10 -d 7 -p ack -e 40 -c 0 -i 5512 -a 0 -x {10.0 9.0 2751 ------- null} - -t 3.12526 -s 10 -d 7 -p ack -e 40 -c 0 -i 5512 -a 0 -x {10.0 9.0 2751 ------- null} h -t 3.12526 -s 10 -d 7 -p ack -e 40 -c 0 -i 5512 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.1253 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5507 -a 0 -x {9.0 10.0 2758 ------- null} + -t 3.1253 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5507 -a 0 -x {9.0 10.0 2758 ------- null} h -t 3.1253 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5507 -a 0 -x {9.0 10.0 2758 ------- null} r -t 3.12566 -s 0 -d 9 -p ack -e 40 -c 0 -i 5502 -a 0 -x {10.0 9.0 2746 ------- null} + -t 3.12566 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5513 -a 0 -x {9.0 10.0 2761 ------- null} - -t 3.12566 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5513 -a 0 -x {9.0 10.0 2761 ------- null} h -t 3.12566 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5513 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.12573 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5499 -a 0 -x {9.0 10.0 2754 ------- null} - -t 3.12573 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5499 -a 0 -x {9.0 10.0 2754 ------- null} h -t 3.12573 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5499 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.12584 -s 0 -d 9 -p ack -e 40 -c 0 -i 5506 -a 0 -x {10.0 9.0 2748 ------- null} - -t 3.12584 -s 0 -d 9 -p ack -e 40 -c 0 -i 5506 -a 0 -x {10.0 9.0 2748 ------- null} h -t 3.12584 -s 0 -d 9 -p ack -e 40 -c 0 -i 5506 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.12621 -s 10 -d 7 -p ack -e 40 -c 0 -i 5510 -a 0 -x {10.0 9.0 2750 ------- null} + -t 3.12621 -s 7 -d 0 -p ack -e 40 -c 0 -i 5510 -a 0 -x {10.0 9.0 2750 ------- null} h -t 3.12621 -s 7 -d 8 -p ack -e 40 -c 0 -i 5510 -a 0 -x {10.0 9.0 2750 ------- null} r -t 3.1263 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5509 -a 0 -x {9.0 10.0 2759 ------- null} + -t 3.1263 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5509 -a 0 -x {9.0 10.0 2759 ------- null} h -t 3.1263 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5509 -a 0 -x {9.0 10.0 2759 ------- null} r -t 3.12635 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5495 -a 0 -x {9.0 10.0 2752 ------- null} + -t 3.12635 -s 10 -d 7 -p ack -e 40 -c 0 -i 5514 -a 0 -x {10.0 9.0 2752 ------- null} - -t 3.12635 -s 10 -d 7 -p ack -e 40 -c 0 -i 5514 -a 0 -x {10.0 9.0 2752 ------- null} h -t 3.12635 -s 10 -d 7 -p ack -e 40 -c 0 -i 5514 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.12675 -s 0 -d 9 -p ack -e 40 -c 0 -i 5504 -a 0 -x {10.0 9.0 2747 ------- null} + -t 3.12675 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5515 -a 0 -x {9.0 10.0 2762 ------- null} - -t 3.12675 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5515 -a 0 -x {9.0 10.0 2762 ------- null} h -t 3.12675 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5515 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.12682 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5501 -a 0 -x {9.0 10.0 2755 ------- null} - -t 3.12682 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5501 -a 0 -x {9.0 10.0 2755 ------- null} h -t 3.12682 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5501 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.12712 -s 0 -d 9 -p ack -e 40 -c 0 -i 5508 -a 0 -x {10.0 9.0 2749 ------- null} - -t 3.12712 -s 0 -d 9 -p ack -e 40 -c 0 -i 5508 -a 0 -x {10.0 9.0 2749 ------- null} h -t 3.12712 -s 0 -d 9 -p ack -e 40 -c 0 -i 5508 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.1273 -s 10 -d 7 -p ack -e 40 -c 0 -i 5512 -a 0 -x {10.0 9.0 2751 ------- null} + -t 3.1273 -s 7 -d 0 -p ack -e 40 -c 0 -i 5512 -a 0 -x {10.0 9.0 2751 ------- null} h -t 3.1273 -s 7 -d 8 -p ack -e 40 -c 0 -i 5512 -a 0 -x {10.0 9.0 2751 ------- null} r -t 3.12739 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5511 -a 0 -x {9.0 10.0 2760 ------- null} + -t 3.12739 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5511 -a 0 -x {9.0 10.0 2760 ------- null} h -t 3.12739 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5511 -a 0 -x {9.0 10.0 2760 ------- null} r -t 3.12744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5497 -a 0 -x {9.0 10.0 2753 ------- null} + -t 3.12744 -s 10 -d 7 -p ack -e 40 -c 0 -i 5516 -a 0 -x {10.0 9.0 2753 ------- null} - -t 3.12744 -s 10 -d 7 -p ack -e 40 -c 0 -i 5516 -a 0 -x {10.0 9.0 2753 ------- null} h -t 3.12744 -s 10 -d 7 -p ack -e 40 -c 0 -i 5516 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.12787 -s 0 -d 9 -p ack -e 40 -c 0 -i 5506 -a 0 -x {10.0 9.0 2748 ------- null} + -t 3.12787 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5517 -a 0 -x {9.0 10.0 2763 ------- null} - -t 3.12787 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5517 -a 0 -x {9.0 10.0 2763 ------- null} h -t 3.12787 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5517 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.12808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5503 -a 0 -x {9.0 10.0 2756 ------- null} - -t 3.12808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5503 -a 0 -x {9.0 10.0 2756 ------- null} h -t 3.12808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5503 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.12821 -s 0 -d 9 -p ack -e 40 -c 0 -i 5510 -a 0 -x {10.0 9.0 2750 ------- null} - -t 3.12821 -s 0 -d 9 -p ack -e 40 -c 0 -i 5510 -a 0 -x {10.0 9.0 2750 ------- null} h -t 3.12821 -s 0 -d 9 -p ack -e 40 -c 0 -i 5510 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.12838 -s 10 -d 7 -p ack -e 40 -c 0 -i 5514 -a 0 -x {10.0 9.0 2752 ------- null} + -t 3.12838 -s 7 -d 0 -p ack -e 40 -c 0 -i 5514 -a 0 -x {10.0 9.0 2752 ------- null} h -t 3.12838 -s 7 -d 8 -p ack -e 40 -c 0 -i 5514 -a 0 -x {10.0 9.0 2752 ------- null} r -t 3.12846 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5513 -a 0 -x {9.0 10.0 2761 ------- null} + -t 3.12846 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5513 -a 0 -x {9.0 10.0 2761 ------- null} h -t 3.12846 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5513 -a 0 -x {9.0 10.0 2761 ------- null} r -t 3.12853 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5499 -a 0 -x {9.0 10.0 2754 ------- null} + -t 3.12853 -s 10 -d 7 -p ack -e 40 -c 0 -i 5518 -a 0 -x {10.0 9.0 2754 ------- null} - -t 3.12853 -s 10 -d 7 -p ack -e 40 -c 0 -i 5518 -a 0 -x {10.0 9.0 2754 ------- null} h -t 3.12853 -s 10 -d 7 -p ack -e 40 -c 0 -i 5518 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.12915 -s 0 -d 9 -p ack -e 40 -c 0 -i 5508 -a 0 -x {10.0 9.0 2749 ------- null} + -t 3.12915 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5519 -a 0 -x {9.0 10.0 2764 ------- null} - -t 3.12915 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5519 -a 0 -x {9.0 10.0 2764 ------- null} h -t 3.12915 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5519 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.12917 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5505 -a 0 -x {9.0 10.0 2757 ------- null} - -t 3.12917 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5505 -a 0 -x {9.0 10.0 2757 ------- null} h -t 3.12917 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5505 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.12936 -s 0 -d 9 -p ack -e 40 -c 0 -i 5512 -a 0 -x {10.0 9.0 2751 ------- null} - -t 3.12936 -s 0 -d 9 -p ack -e 40 -c 0 -i 5512 -a 0 -x {10.0 9.0 2751 ------- null} h -t 3.12936 -s 0 -d 9 -p ack -e 40 -c 0 -i 5512 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.12947 -s 10 -d 7 -p ack -e 40 -c 0 -i 5516 -a 0 -x {10.0 9.0 2753 ------- null} + -t 3.12947 -s 7 -d 0 -p ack -e 40 -c 0 -i 5516 -a 0 -x {10.0 9.0 2753 ------- null} h -t 3.12947 -s 7 -d 8 -p ack -e 40 -c 0 -i 5516 -a 0 -x {10.0 9.0 2753 ------- null} r -t 3.12955 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5515 -a 0 -x {9.0 10.0 2762 ------- null} + -t 3.12955 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5515 -a 0 -x {9.0 10.0 2762 ------- null} h -t 3.12955 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5515 -a 0 -x {9.0 10.0 2762 ------- null} r -t 3.12962 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5501 -a 0 -x {9.0 10.0 2755 ------- null} + -t 3.12962 -s 10 -d 7 -p ack -e 40 -c 0 -i 5520 -a 0 -x {10.0 9.0 2755 ------- null} - -t 3.12962 -s 10 -d 7 -p ack -e 40 -c 0 -i 5520 -a 0 -x {10.0 9.0 2755 ------- null} h -t 3.12962 -s 10 -d 7 -p ack -e 40 -c 0 -i 5520 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.13024 -s 0 -d 9 -p ack -e 40 -c 0 -i 5510 -a 0 -x {10.0 9.0 2750 ------- null} + -t 3.13024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5521 -a 0 -x {9.0 10.0 2765 ------- null} - -t 3.13024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5521 -a 0 -x {9.0 10.0 2765 ------- null} h -t 3.13024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5521 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.13026 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5507 -a 0 -x {9.0 10.0 2758 ------- null} - -t 3.13026 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5507 -a 0 -x {9.0 10.0 2758 ------- null} h -t 3.13026 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5507 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.13038 -s 0 -d 9 -p ack -e 40 -c 0 -i 5514 -a 0 -x {10.0 9.0 2752 ------- null} - -t 3.13038 -s 0 -d 9 -p ack -e 40 -c 0 -i 5514 -a 0 -x {10.0 9.0 2752 ------- null} h -t 3.13038 -s 0 -d 9 -p ack -e 40 -c 0 -i 5514 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.13056 -s 10 -d 7 -p ack -e 40 -c 0 -i 5518 -a 0 -x {10.0 9.0 2754 ------- null} + -t 3.13056 -s 7 -d 0 -p ack -e 40 -c 0 -i 5518 -a 0 -x {10.0 9.0 2754 ------- null} h -t 3.13056 -s 7 -d 8 -p ack -e 40 -c 0 -i 5518 -a 0 -x {10.0 9.0 2754 ------- null} r -t 3.13067 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5517 -a 0 -x {9.0 10.0 2763 ------- null} + -t 3.13067 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5517 -a 0 -x {9.0 10.0 2763 ------- null} h -t 3.13067 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5517 -a 0 -x {9.0 10.0 2763 ------- null} r -t 3.13088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5503 -a 0 -x {9.0 10.0 2756 ------- null} + -t 3.13088 -s 10 -d 7 -p ack -e 40 -c 0 -i 5522 -a 0 -x {10.0 9.0 2756 ------- null} - -t 3.13088 -s 10 -d 7 -p ack -e 40 -c 0 -i 5522 -a 0 -x {10.0 9.0 2756 ------- null} h -t 3.13088 -s 10 -d 7 -p ack -e 40 -c 0 -i 5522 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.13134 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5509 -a 0 -x {9.0 10.0 2759 ------- null} - -t 3.13134 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5509 -a 0 -x {9.0 10.0 2759 ------- null} h -t 3.13134 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5509 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.13139 -s 0 -d 9 -p ack -e 40 -c 0 -i 5512 -a 0 -x {10.0 9.0 2751 ------- null} + -t 3.13139 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5523 -a 0 -x {9.0 10.0 2766 ------- null} - -t 3.13139 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5523 -a 0 -x {9.0 10.0 2766 ------- null} h -t 3.13139 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5523 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.1316 -s 0 -d 9 -p ack -e 40 -c 0 -i 5516 -a 0 -x {10.0 9.0 2753 ------- null} - -t 3.1316 -s 0 -d 9 -p ack -e 40 -c 0 -i 5516 -a 0 -x {10.0 9.0 2753 ------- null} h -t 3.1316 -s 0 -d 9 -p ack -e 40 -c 0 -i 5516 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.13165 -s 10 -d 7 -p ack -e 40 -c 0 -i 5520 -a 0 -x {10.0 9.0 2755 ------- null} + -t 3.13165 -s 7 -d 0 -p ack -e 40 -c 0 -i 5520 -a 0 -x {10.0 9.0 2755 ------- null} h -t 3.13165 -s 7 -d 8 -p ack -e 40 -c 0 -i 5520 -a 0 -x {10.0 9.0 2755 ------- null} r -t 3.13195 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5519 -a 0 -x {9.0 10.0 2764 ------- null} + -t 3.13195 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5519 -a 0 -x {9.0 10.0 2764 ------- null} h -t 3.13195 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5519 -a 0 -x {9.0 10.0 2764 ------- null} r -t 3.13197 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5505 -a 0 -x {9.0 10.0 2757 ------- null} + -t 3.13197 -s 10 -d 7 -p ack -e 40 -c 0 -i 5524 -a 0 -x {10.0 9.0 2757 ------- null} - -t 3.13197 -s 10 -d 7 -p ack -e 40 -c 0 -i 5524 -a 0 -x {10.0 9.0 2757 ------- null} h -t 3.13197 -s 10 -d 7 -p ack -e 40 -c 0 -i 5524 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.13242 -s 0 -d 9 -p ack -e 40 -c 0 -i 5514 -a 0 -x {10.0 9.0 2752 ------- null} + -t 3.13242 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5525 -a 0 -x {9.0 10.0 2767 ------- null} - -t 3.13242 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5525 -a 0 -x {9.0 10.0 2767 ------- null} h -t 3.13242 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5525 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.13246 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5511 -a 0 -x {9.0 10.0 2760 ------- null} - -t 3.13246 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5511 -a 0 -x {9.0 10.0 2760 ------- null} h -t 3.13246 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5511 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.1327 -s 0 -d 9 -p ack -e 40 -c 0 -i 5518 -a 0 -x {10.0 9.0 2754 ------- null} - -t 3.1327 -s 0 -d 9 -p ack -e 40 -c 0 -i 5518 -a 0 -x {10.0 9.0 2754 ------- null} h -t 3.1327 -s 0 -d 9 -p ack -e 40 -c 0 -i 5518 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.13291 -s 10 -d 7 -p ack -e 40 -c 0 -i 5522 -a 0 -x {10.0 9.0 2756 ------- null} + -t 3.13291 -s 7 -d 0 -p ack -e 40 -c 0 -i 5522 -a 0 -x {10.0 9.0 2756 ------- null} h -t 3.13291 -s 7 -d 8 -p ack -e 40 -c 0 -i 5522 -a 0 -x {10.0 9.0 2756 ------- null} r -t 3.13304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5521 -a 0 -x {9.0 10.0 2765 ------- null} + -t 3.13304 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5521 -a 0 -x {9.0 10.0 2765 ------- null} h -t 3.13304 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5521 -a 0 -x {9.0 10.0 2765 ------- null} r -t 3.13306 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5507 -a 0 -x {9.0 10.0 2758 ------- null} + -t 3.13306 -s 10 -d 7 -p ack -e 40 -c 0 -i 5526 -a 0 -x {10.0 9.0 2758 ------- null} - -t 3.13306 -s 10 -d 7 -p ack -e 40 -c 0 -i 5526 -a 0 -x {10.0 9.0 2758 ------- null} h -t 3.13306 -s 10 -d 7 -p ack -e 40 -c 0 -i 5526 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.13355 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5513 -a 0 -x {9.0 10.0 2761 ------- null} - -t 3.13355 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5513 -a 0 -x {9.0 10.0 2761 ------- null} h -t 3.13355 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5513 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.13363 -s 0 -d 9 -p ack -e 40 -c 0 -i 5516 -a 0 -x {10.0 9.0 2753 ------- null} + -t 3.13363 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5527 -a 0 -x {9.0 10.0 2768 ------- null} - -t 3.13363 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5527 -a 0 -x {9.0 10.0 2768 ------- null} h -t 3.13363 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5527 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.13373 -s 0 -d 9 -p ack -e 40 -c 0 -i 5520 -a 0 -x {10.0 9.0 2755 ------- null} - -t 3.13373 -s 0 -d 9 -p ack -e 40 -c 0 -i 5520 -a 0 -x {10.0 9.0 2755 ------- null} h -t 3.13373 -s 0 -d 9 -p ack -e 40 -c 0 -i 5520 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.134 -s 10 -d 7 -p ack -e 40 -c 0 -i 5524 -a 0 -x {10.0 9.0 2757 ------- null} + -t 3.134 -s 7 -d 0 -p ack -e 40 -c 0 -i 5524 -a 0 -x {10.0 9.0 2757 ------- null} h -t 3.134 -s 7 -d 8 -p ack -e 40 -c 0 -i 5524 -a 0 -x {10.0 9.0 2757 ------- null} r -t 3.13414 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5509 -a 0 -x {9.0 10.0 2759 ------- null} + -t 3.13414 -s 10 -d 7 -p ack -e 40 -c 0 -i 5528 -a 0 -x {10.0 9.0 2759 ------- null} - -t 3.13414 -s 10 -d 7 -p ack -e 40 -c 0 -i 5528 -a 0 -x {10.0 9.0 2759 ------- null} h -t 3.13414 -s 10 -d 7 -p ack -e 40 -c 0 -i 5528 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.13419 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5523 -a 0 -x {9.0 10.0 2766 ------- null} + -t 3.13419 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5523 -a 0 -x {9.0 10.0 2766 ------- null} h -t 3.13419 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5523 -a 0 -x {9.0 10.0 2766 ------- null} + -t 3.13464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5515 -a 0 -x {9.0 10.0 2762 ------- null} - -t 3.13464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5515 -a 0 -x {9.0 10.0 2762 ------- null} h -t 3.13464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5515 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.13474 -s 0 -d 9 -p ack -e 40 -c 0 -i 5518 -a 0 -x {10.0 9.0 2754 ------- null} + -t 3.13474 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5529 -a 0 -x {9.0 10.0 2769 ------- null} - -t 3.13474 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5529 -a 0 -x {9.0 10.0 2769 ------- null} h -t 3.13474 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5529 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.13482 -s 0 -d 9 -p ack -e 40 -c 0 -i 5522 -a 0 -x {10.0 9.0 2756 ------- null} - -t 3.13482 -s 0 -d 9 -p ack -e 40 -c 0 -i 5522 -a 0 -x {10.0 9.0 2756 ------- null} h -t 3.13482 -s 0 -d 9 -p ack -e 40 -c 0 -i 5522 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.13509 -s 10 -d 7 -p ack -e 40 -c 0 -i 5526 -a 0 -x {10.0 9.0 2758 ------- null} + -t 3.13509 -s 7 -d 0 -p ack -e 40 -c 0 -i 5526 -a 0 -x {10.0 9.0 2758 ------- null} h -t 3.13509 -s 7 -d 8 -p ack -e 40 -c 0 -i 5526 -a 0 -x {10.0 9.0 2758 ------- null} r -t 3.13522 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5525 -a 0 -x {9.0 10.0 2767 ------- null} + -t 3.13522 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5525 -a 0 -x {9.0 10.0 2767 ------- null} h -t 3.13522 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5525 -a 0 -x {9.0 10.0 2767 ------- null} r -t 3.13526 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5511 -a 0 -x {9.0 10.0 2760 ------- null} + -t 3.13526 -s 10 -d 7 -p ack -e 40 -c 0 -i 5530 -a 0 -x {10.0 9.0 2760 ------- null} - -t 3.13526 -s 10 -d 7 -p ack -e 40 -c 0 -i 5530 -a 0 -x {10.0 9.0 2760 ------- null} h -t 3.13526 -s 10 -d 7 -p ack -e 40 -c 0 -i 5530 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.13573 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5517 -a 0 -x {9.0 10.0 2763 ------- null} - -t 3.13573 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5517 -a 0 -x {9.0 10.0 2763 ------- null} h -t 3.13573 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5517 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.13576 -s 0 -d 9 -p ack -e 40 -c 0 -i 5520 -a 0 -x {10.0 9.0 2755 ------- null} + -t 3.13576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5531 -a 0 -x {9.0 10.0 2770 ------- null} - -t 3.13576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5531 -a 0 -x {9.0 10.0 2770 ------- null} h -t 3.13576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5531 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.1359 -s 0 -d 9 -p ack -e 40 -c 0 -i 5524 -a 0 -x {10.0 9.0 2757 ------- null} - -t 3.1359 -s 0 -d 9 -p ack -e 40 -c 0 -i 5524 -a 0 -x {10.0 9.0 2757 ------- null} h -t 3.1359 -s 0 -d 9 -p ack -e 40 -c 0 -i 5524 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.13618 -s 10 -d 7 -p ack -e 40 -c 0 -i 5528 -a 0 -x {10.0 9.0 2759 ------- null} + -t 3.13618 -s 7 -d 0 -p ack -e 40 -c 0 -i 5528 -a 0 -x {10.0 9.0 2759 ------- null} h -t 3.13618 -s 7 -d 8 -p ack -e 40 -c 0 -i 5528 -a 0 -x {10.0 9.0 2759 ------- null} r -t 3.13635 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5513 -a 0 -x {9.0 10.0 2761 ------- null} + -t 3.13635 -s 10 -d 7 -p ack -e 40 -c 0 -i 5532 -a 0 -x {10.0 9.0 2761 ------- null} - -t 3.13635 -s 10 -d 7 -p ack -e 40 -c 0 -i 5532 -a 0 -x {10.0 9.0 2761 ------- null} h -t 3.13635 -s 10 -d 7 -p ack -e 40 -c 0 -i 5532 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.13643 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5527 -a 0 -x {9.0 10.0 2768 ------- null} + -t 3.13643 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5527 -a 0 -x {9.0 10.0 2768 ------- null} h -t 3.13643 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5527 -a 0 -x {9.0 10.0 2768 ------- null} + -t 3.13682 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5519 -a 0 -x {9.0 10.0 2764 ------- null} - -t 3.13682 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5519 -a 0 -x {9.0 10.0 2764 ------- null} h -t 3.13682 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5519 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.13685 -s 0 -d 9 -p ack -e 40 -c 0 -i 5522 -a 0 -x {10.0 9.0 2756 ------- null} + -t 3.13685 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5533 -a 0 -x {9.0 10.0 2771 ------- null} - -t 3.13685 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5533 -a 0 -x {9.0 10.0 2771 ------- null} h -t 3.13685 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5533 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.13694 -s 0 -d 9 -p ack -e 40 -c 0 -i 5526 -a 0 -x {10.0 9.0 2758 ------- null} - -t 3.13694 -s 0 -d 9 -p ack -e 40 -c 0 -i 5526 -a 0 -x {10.0 9.0 2758 ------- null} h -t 3.13694 -s 0 -d 9 -p ack -e 40 -c 0 -i 5526 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.1373 -s 10 -d 7 -p ack -e 40 -c 0 -i 5530 -a 0 -x {10.0 9.0 2760 ------- null} + -t 3.1373 -s 7 -d 0 -p ack -e 40 -c 0 -i 5530 -a 0 -x {10.0 9.0 2760 ------- null} h -t 3.1373 -s 7 -d 8 -p ack -e 40 -c 0 -i 5530 -a 0 -x {10.0 9.0 2760 ------- null} r -t 3.13744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5515 -a 0 -x {9.0 10.0 2762 ------- null} + -t 3.13744 -s 10 -d 7 -p ack -e 40 -c 0 -i 5534 -a 0 -x {10.0 9.0 2762 ------- null} - -t 3.13744 -s 10 -d 7 -p ack -e 40 -c 0 -i 5534 -a 0 -x {10.0 9.0 2762 ------- null} h -t 3.13744 -s 10 -d 7 -p ack -e 40 -c 0 -i 5534 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.13754 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5529 -a 0 -x {9.0 10.0 2769 ------- null} + -t 3.13754 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5529 -a 0 -x {9.0 10.0 2769 ------- null} h -t 3.13754 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5529 -a 0 -x {9.0 10.0 2769 ------- null} + -t 3.1379 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5521 -a 0 -x {9.0 10.0 2765 ------- null} - -t 3.1379 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5521 -a 0 -x {9.0 10.0 2765 ------- null} h -t 3.1379 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5521 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.13794 -s 0 -d 9 -p ack -e 40 -c 0 -i 5524 -a 0 -x {10.0 9.0 2757 ------- null} + -t 3.13794 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5535 -a 0 -x {9.0 10.0 2772 ------- null} - -t 3.13794 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5535 -a 0 -x {9.0 10.0 2772 ------- null} h -t 3.13794 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5535 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.13813 -s 0 -d 9 -p ack -e 40 -c 0 -i 5528 -a 0 -x {10.0 9.0 2759 ------- null} - -t 3.13813 -s 0 -d 9 -p ack -e 40 -c 0 -i 5528 -a 0 -x {10.0 9.0 2759 ------- null} h -t 3.13813 -s 0 -d 9 -p ack -e 40 -c 0 -i 5528 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.13838 -s 10 -d 7 -p ack -e 40 -c 0 -i 5532 -a 0 -x {10.0 9.0 2761 ------- null} + -t 3.13838 -s 7 -d 0 -p ack -e 40 -c 0 -i 5532 -a 0 -x {10.0 9.0 2761 ------- null} h -t 3.13838 -s 7 -d 8 -p ack -e 40 -c 0 -i 5532 -a 0 -x {10.0 9.0 2761 ------- null} r -t 3.13853 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5517 -a 0 -x {9.0 10.0 2763 ------- null} + -t 3.13853 -s 10 -d 7 -p ack -e 40 -c 0 -i 5536 -a 0 -x {10.0 9.0 2763 ------- null} - -t 3.13853 -s 10 -d 7 -p ack -e 40 -c 0 -i 5536 -a 0 -x {10.0 9.0 2763 ------- null} h -t 3.13853 -s 10 -d 7 -p ack -e 40 -c 0 -i 5536 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.13856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5531 -a 0 -x {9.0 10.0 2770 ------- null} + -t 3.13856 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5531 -a 0 -x {9.0 10.0 2770 ------- null} h -t 3.13856 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5531 -a 0 -x {9.0 10.0 2770 ------- null} r -t 3.13898 -s 0 -d 9 -p ack -e 40 -c 0 -i 5526 -a 0 -x {10.0 9.0 2758 ------- null} + -t 3.13898 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5537 -a 0 -x {9.0 10.0 2773 ------- null} - -t 3.13898 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5537 -a 0 -x {9.0 10.0 2773 ------- null} h -t 3.13898 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5537 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.13899 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5523 -a 0 -x {9.0 10.0 2766 ------- null} - -t 3.13899 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5523 -a 0 -x {9.0 10.0 2766 ------- null} h -t 3.13899 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5523 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.13912 -s 0 -d 9 -p ack -e 40 -c 0 -i 5530 -a 0 -x {10.0 9.0 2760 ------- null} - -t 3.13912 -s 0 -d 9 -p ack -e 40 -c 0 -i 5530 -a 0 -x {10.0 9.0 2760 ------- null} h -t 3.13912 -s 0 -d 9 -p ack -e 40 -c 0 -i 5530 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.13947 -s 10 -d 7 -p ack -e 40 -c 0 -i 5534 -a 0 -x {10.0 9.0 2762 ------- null} + -t 3.13947 -s 7 -d 0 -p ack -e 40 -c 0 -i 5534 -a 0 -x {10.0 9.0 2762 ------- null} h -t 3.13947 -s 7 -d 8 -p ack -e 40 -c 0 -i 5534 -a 0 -x {10.0 9.0 2762 ------- null} r -t 3.13962 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5519 -a 0 -x {9.0 10.0 2764 ------- null} + -t 3.13962 -s 10 -d 7 -p ack -e 40 -c 0 -i 5538 -a 0 -x {10.0 9.0 2764 ------- null} - -t 3.13962 -s 10 -d 7 -p ack -e 40 -c 0 -i 5538 -a 0 -x {10.0 9.0 2764 ------- null} h -t 3.13962 -s 10 -d 7 -p ack -e 40 -c 0 -i 5538 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.13965 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5533 -a 0 -x {9.0 10.0 2771 ------- null} + -t 3.13965 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5533 -a 0 -x {9.0 10.0 2771 ------- null} h -t 3.13965 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5533 -a 0 -x {9.0 10.0 2771 ------- null} + -t 3.14008 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5525 -a 0 -x {9.0 10.0 2767 ------- null} - -t 3.14008 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5525 -a 0 -x {9.0 10.0 2767 ------- null} h -t 3.14008 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5525 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.14016 -s 0 -d 9 -p ack -e 40 -c 0 -i 5528 -a 0 -x {10.0 9.0 2759 ------- null} + -t 3.14016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5539 -a 0 -x {9.0 10.0 2774 ------- null} - -t 3.14016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5539 -a 0 -x {9.0 10.0 2774 ------- null} h -t 3.14016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5539 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.14029 -s 0 -d 9 -p ack -e 40 -c 0 -i 5532 -a 0 -x {10.0 9.0 2761 ------- null} - -t 3.14029 -s 0 -d 9 -p ack -e 40 -c 0 -i 5532 -a 0 -x {10.0 9.0 2761 ------- null} h -t 3.14029 -s 0 -d 9 -p ack -e 40 -c 0 -i 5532 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.14056 -s 10 -d 7 -p ack -e 40 -c 0 -i 5536 -a 0 -x {10.0 9.0 2763 ------- null} + -t 3.14056 -s 7 -d 0 -p ack -e 40 -c 0 -i 5536 -a 0 -x {10.0 9.0 2763 ------- null} h -t 3.14056 -s 7 -d 8 -p ack -e 40 -c 0 -i 5536 -a 0 -x {10.0 9.0 2763 ------- null} r -t 3.1407 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5521 -a 0 -x {9.0 10.0 2765 ------- null} + -t 3.1407 -s 10 -d 7 -p ack -e 40 -c 0 -i 5540 -a 0 -x {10.0 9.0 2765 ------- null} - -t 3.1407 -s 10 -d 7 -p ack -e 40 -c 0 -i 5540 -a 0 -x {10.0 9.0 2765 ------- null} h -t 3.1407 -s 10 -d 7 -p ack -e 40 -c 0 -i 5540 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.14074 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5535 -a 0 -x {9.0 10.0 2772 ------- null} + -t 3.14074 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5535 -a 0 -x {9.0 10.0 2772 ------- null} h -t 3.14074 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5535 -a 0 -x {9.0 10.0 2772 ------- null} r -t 3.14115 -s 0 -d 9 -p ack -e 40 -c 0 -i 5530 -a 0 -x {10.0 9.0 2760 ------- null} + -t 3.14115 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5541 -a 0 -x {9.0 10.0 2775 ------- null} - -t 3.14115 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5541 -a 0 -x {9.0 10.0 2775 ------- null} h -t 3.14115 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5541 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.14117 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5527 -a 0 -x {9.0 10.0 2768 ------- null} - -t 3.14117 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5527 -a 0 -x {9.0 10.0 2768 ------- null} h -t 3.14117 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5527 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.14136 -s 0 -d 9 -p ack -e 40 -c 0 -i 5534 -a 0 -x {10.0 9.0 2762 ------- null} - -t 3.14136 -s 0 -d 9 -p ack -e 40 -c 0 -i 5534 -a 0 -x {10.0 9.0 2762 ------- null} h -t 3.14136 -s 0 -d 9 -p ack -e 40 -c 0 -i 5534 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.14165 -s 10 -d 7 -p ack -e 40 -c 0 -i 5538 -a 0 -x {10.0 9.0 2764 ------- null} + -t 3.14165 -s 7 -d 0 -p ack -e 40 -c 0 -i 5538 -a 0 -x {10.0 9.0 2764 ------- null} h -t 3.14165 -s 7 -d 8 -p ack -e 40 -c 0 -i 5538 -a 0 -x {10.0 9.0 2764 ------- null} r -t 3.14178 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5537 -a 0 -x {9.0 10.0 2773 ------- null} + -t 3.14178 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5537 -a 0 -x {9.0 10.0 2773 ------- null} h -t 3.14178 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5537 -a 0 -x {9.0 10.0 2773 ------- null} r -t 3.14179 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5523 -a 0 -x {9.0 10.0 2766 ------- null} + -t 3.14179 -s 10 -d 7 -p ack -e 40 -c 0 -i 5542 -a 0 -x {10.0 9.0 2766 ------- null} - -t 3.14179 -s 10 -d 7 -p ack -e 40 -c 0 -i 5542 -a 0 -x {10.0 9.0 2766 ------- null} h -t 3.14179 -s 10 -d 7 -p ack -e 40 -c 0 -i 5542 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.14226 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5529 -a 0 -x {9.0 10.0 2769 ------- null} - -t 3.14226 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5529 -a 0 -x {9.0 10.0 2769 ------- null} h -t 3.14226 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5529 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.14232 -s 0 -d 9 -p ack -e 40 -c 0 -i 5532 -a 0 -x {10.0 9.0 2761 ------- null} + -t 3.14232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5543 -a 0 -x {9.0 10.0 2776 ------- null} - -t 3.14232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5543 -a 0 -x {9.0 10.0 2776 ------- null} h -t 3.14232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5543 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.14235 -s 0 -d 9 -p ack -e 40 -c 0 -i 5536 -a 0 -x {10.0 9.0 2763 ------- null} - -t 3.14235 -s 0 -d 9 -p ack -e 40 -c 0 -i 5536 -a 0 -x {10.0 9.0 2763 ------- null} h -t 3.14235 -s 0 -d 9 -p ack -e 40 -c 0 -i 5536 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.14274 -s 10 -d 7 -p ack -e 40 -c 0 -i 5540 -a 0 -x {10.0 9.0 2765 ------- null} + -t 3.14274 -s 7 -d 0 -p ack -e 40 -c 0 -i 5540 -a 0 -x {10.0 9.0 2765 ------- null} h -t 3.14274 -s 7 -d 8 -p ack -e 40 -c 0 -i 5540 -a 0 -x {10.0 9.0 2765 ------- null} r -t 3.14288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5525 -a 0 -x {9.0 10.0 2767 ------- null} + -t 3.14288 -s 10 -d 7 -p ack -e 40 -c 0 -i 5544 -a 0 -x {10.0 9.0 2767 ------- null} - -t 3.14288 -s 10 -d 7 -p ack -e 40 -c 0 -i 5544 -a 0 -x {10.0 9.0 2767 ------- null} h -t 3.14288 -s 10 -d 7 -p ack -e 40 -c 0 -i 5544 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.14296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5539 -a 0 -x {9.0 10.0 2774 ------- null} + -t 3.14296 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5539 -a 0 -x {9.0 10.0 2774 ------- null} h -t 3.14296 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5539 -a 0 -x {9.0 10.0 2774 ------- null} + -t 3.14334 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5531 -a 0 -x {9.0 10.0 2770 ------- null} - -t 3.14334 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5531 -a 0 -x {9.0 10.0 2770 ------- null} h -t 3.14334 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5531 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.14339 -s 0 -d 9 -p ack -e 40 -c 0 -i 5534 -a 0 -x {10.0 9.0 2762 ------- null} + -t 3.14339 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5545 -a 0 -x {9.0 10.0 2777 ------- null} - -t 3.14339 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5545 -a 0 -x {9.0 10.0 2777 ------- null} h -t 3.14339 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5545 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.14342 -s 0 -d 9 -p ack -e 40 -c 0 -i 5538 -a 0 -x {10.0 9.0 2764 ------- null} - -t 3.14342 -s 0 -d 9 -p ack -e 40 -c 0 -i 5538 -a 0 -x {10.0 9.0 2764 ------- null} h -t 3.14342 -s 0 -d 9 -p ack -e 40 -c 0 -i 5538 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.14382 -s 10 -d 7 -p ack -e 40 -c 0 -i 5542 -a 0 -x {10.0 9.0 2766 ------- null} + -t 3.14382 -s 7 -d 0 -p ack -e 40 -c 0 -i 5542 -a 0 -x {10.0 9.0 2766 ------- null} h -t 3.14382 -s 7 -d 8 -p ack -e 40 -c 0 -i 5542 -a 0 -x {10.0 9.0 2766 ------- null} r -t 3.14395 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5541 -a 0 -x {9.0 10.0 2775 ------- null} + -t 3.14395 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5541 -a 0 -x {9.0 10.0 2775 ------- null} h -t 3.14395 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5541 -a 0 -x {9.0 10.0 2775 ------- null} r -t 3.14397 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5527 -a 0 -x {9.0 10.0 2768 ------- null} + -t 3.14397 -s 10 -d 7 -p ack -e 40 -c 0 -i 5546 -a 0 -x {10.0 9.0 2768 ------- null} - -t 3.14397 -s 10 -d 7 -p ack -e 40 -c 0 -i 5546 -a 0 -x {10.0 9.0 2768 ------- null} h -t 3.14397 -s 10 -d 7 -p ack -e 40 -c 0 -i 5546 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.14438 -s 0 -d 9 -p ack -e 40 -c 0 -i 5536 -a 0 -x {10.0 9.0 2763 ------- null} + -t 3.14438 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5547 -a 0 -x {9.0 10.0 2778 ------- null} - -t 3.14438 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5547 -a 0 -x {9.0 10.0 2778 ------- null} h -t 3.14438 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5547 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.14443 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5533 -a 0 -x {9.0 10.0 2771 ------- null} - -t 3.14443 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5533 -a 0 -x {9.0 10.0 2771 ------- null} h -t 3.14443 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5533 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.14474 -s 0 -d 9 -p ack -e 40 -c 0 -i 5540 -a 0 -x {10.0 9.0 2765 ------- null} - -t 3.14474 -s 0 -d 9 -p ack -e 40 -c 0 -i 5540 -a 0 -x {10.0 9.0 2765 ------- null} h -t 3.14474 -s 0 -d 9 -p ack -e 40 -c 0 -i 5540 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.14491 -s 10 -d 7 -p ack -e 40 -c 0 -i 5544 -a 0 -x {10.0 9.0 2767 ------- null} + -t 3.14491 -s 7 -d 0 -p ack -e 40 -c 0 -i 5544 -a 0 -x {10.0 9.0 2767 ------- null} h -t 3.14491 -s 7 -d 8 -p ack -e 40 -c 0 -i 5544 -a 0 -x {10.0 9.0 2767 ------- null} r -t 3.14506 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5529 -a 0 -x {9.0 10.0 2769 ------- null} + -t 3.14506 -s 10 -d 7 -p ack -e 40 -c 0 -i 5548 -a 0 -x {10.0 9.0 2769 ------- null} - -t 3.14506 -s 10 -d 7 -p ack -e 40 -c 0 -i 5548 -a 0 -x {10.0 9.0 2769 ------- null} h -t 3.14506 -s 10 -d 7 -p ack -e 40 -c 0 -i 5548 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.14512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5543 -a 0 -x {9.0 10.0 2776 ------- null} + -t 3.14512 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5543 -a 0 -x {9.0 10.0 2776 ------- null} h -t 3.14512 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5543 -a 0 -x {9.0 10.0 2776 ------- null} r -t 3.14546 -s 0 -d 9 -p ack -e 40 -c 0 -i 5538 -a 0 -x {10.0 9.0 2764 ------- null} + -t 3.14546 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5549 -a 0 -x {9.0 10.0 2779 ------- null} - -t 3.14546 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5549 -a 0 -x {9.0 10.0 2779 ------- null} h -t 3.14546 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5549 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.14574 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5535 -a 0 -x {9.0 10.0 2772 ------- null} - -t 3.14574 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5535 -a 0 -x {9.0 10.0 2772 ------- null} h -t 3.14574 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5535 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.14592 -s 0 -d 9 -p ack -e 40 -c 0 -i 5542 -a 0 -x {10.0 9.0 2766 ------- null} - -t 3.14592 -s 0 -d 9 -p ack -e 40 -c 0 -i 5542 -a 0 -x {10.0 9.0 2766 ------- null} h -t 3.14592 -s 0 -d 9 -p ack -e 40 -c 0 -i 5542 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.146 -s 10 -d 7 -p ack -e 40 -c 0 -i 5546 -a 0 -x {10.0 9.0 2768 ------- null} + -t 3.146 -s 7 -d 0 -p ack -e 40 -c 0 -i 5546 -a 0 -x {10.0 9.0 2768 ------- null} h -t 3.146 -s 7 -d 8 -p ack -e 40 -c 0 -i 5546 -a 0 -x {10.0 9.0 2768 ------- null} r -t 3.14614 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5531 -a 0 -x {9.0 10.0 2770 ------- null} + -t 3.14614 -s 10 -d 7 -p ack -e 40 -c 0 -i 5550 -a 0 -x {10.0 9.0 2770 ------- null} - -t 3.14614 -s 10 -d 7 -p ack -e 40 -c 0 -i 5550 -a 0 -x {10.0 9.0 2770 ------- null} h -t 3.14614 -s 10 -d 7 -p ack -e 40 -c 0 -i 5550 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.14619 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5545 -a 0 -x {9.0 10.0 2777 ------- null} + -t 3.14619 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5545 -a 0 -x {9.0 10.0 2777 ------- null} h -t 3.14619 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5545 -a 0 -x {9.0 10.0 2777 ------- null} r -t 3.14677 -s 0 -d 9 -p ack -e 40 -c 0 -i 5540 -a 0 -x {10.0 9.0 2765 ------- null} + -t 3.14677 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5551 -a 0 -x {9.0 10.0 2780 ------- null} - -t 3.14677 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5551 -a 0 -x {9.0 10.0 2780 ------- null} h -t 3.14677 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5551 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.14683 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5537 -a 0 -x {9.0 10.0 2773 ------- null} - -t 3.14683 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5537 -a 0 -x {9.0 10.0 2773 ------- null} h -t 3.14683 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5537 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.14702 -s 0 -d 9 -p ack -e 40 -c 0 -i 5544 -a 0 -x {10.0 9.0 2767 ------- null} - -t 3.14702 -s 0 -d 9 -p ack -e 40 -c 0 -i 5544 -a 0 -x {10.0 9.0 2767 ------- null} h -t 3.14702 -s 0 -d 9 -p ack -e 40 -c 0 -i 5544 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.14709 -s 10 -d 7 -p ack -e 40 -c 0 -i 5548 -a 0 -x {10.0 9.0 2769 ------- null} + -t 3.14709 -s 7 -d 0 -p ack -e 40 -c 0 -i 5548 -a 0 -x {10.0 9.0 2769 ------- null} h -t 3.14709 -s 7 -d 8 -p ack -e 40 -c 0 -i 5548 -a 0 -x {10.0 9.0 2769 ------- null} r -t 3.14718 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5547 -a 0 -x {9.0 10.0 2778 ------- null} + -t 3.14718 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5547 -a 0 -x {9.0 10.0 2778 ------- null} h -t 3.14718 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5547 -a 0 -x {9.0 10.0 2778 ------- null} r -t 3.14723 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5533 -a 0 -x {9.0 10.0 2771 ------- null} + -t 3.14723 -s 10 -d 7 -p ack -e 40 -c 0 -i 5552 -a 0 -x {10.0 9.0 2771 ------- null} - -t 3.14723 -s 10 -d 7 -p ack -e 40 -c 0 -i 5552 -a 0 -x {10.0 9.0 2771 ------- null} h -t 3.14723 -s 10 -d 7 -p ack -e 40 -c 0 -i 5552 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.14792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5539 -a 0 -x {9.0 10.0 2774 ------- null} - -t 3.14792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5539 -a 0 -x {9.0 10.0 2774 ------- null} h -t 3.14792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5539 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.14795 -s 0 -d 9 -p ack -e 40 -c 0 -i 5542 -a 0 -x {10.0 9.0 2766 ------- null} + -t 3.14795 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5553 -a 0 -x {9.0 10.0 2781 ------- null} - -t 3.14795 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5553 -a 0 -x {9.0 10.0 2781 ------- null} h -t 3.14795 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5553 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.14818 -s 10 -d 7 -p ack -e 40 -c 0 -i 5550 -a 0 -x {10.0 9.0 2770 ------- null} + -t 3.14818 -s 7 -d 0 -p ack -e 40 -c 0 -i 5550 -a 0 -x {10.0 9.0 2770 ------- null} h -t 3.14818 -s 7 -d 8 -p ack -e 40 -c 0 -i 5550 -a 0 -x {10.0 9.0 2770 ------- null} + -t 3.14821 -s 0 -d 9 -p ack -e 40 -c 0 -i 5546 -a 0 -x {10.0 9.0 2768 ------- null} - -t 3.14821 -s 0 -d 9 -p ack -e 40 -c 0 -i 5546 -a 0 -x {10.0 9.0 2768 ------- null} h -t 3.14821 -s 0 -d 9 -p ack -e 40 -c 0 -i 5546 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.14826 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5549 -a 0 -x {9.0 10.0 2779 ------- null} + -t 3.14826 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5549 -a 0 -x {9.0 10.0 2779 ------- null} h -t 3.14826 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5549 -a 0 -x {9.0 10.0 2779 ------- null} r -t 3.14854 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5535 -a 0 -x {9.0 10.0 2772 ------- null} + -t 3.14854 -s 10 -d 7 -p ack -e 40 -c 0 -i 5554 -a 0 -x {10.0 9.0 2772 ------- null} - -t 3.14854 -s 10 -d 7 -p ack -e 40 -c 0 -i 5554 -a 0 -x {10.0 9.0 2772 ------- null} h -t 3.14854 -s 10 -d 7 -p ack -e 40 -c 0 -i 5554 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.14906 -s 0 -d 9 -p ack -e 40 -c 0 -i 5544 -a 0 -x {10.0 9.0 2767 ------- null} + -t 3.14906 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5555 -a 0 -x {9.0 10.0 2782 ------- null} - -t 3.14906 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5555 -a 0 -x {9.0 10.0 2782 ------- null} h -t 3.14906 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5555 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.14907 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5541 -a 0 -x {9.0 10.0 2775 ------- null} - -t 3.14907 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5541 -a 0 -x {9.0 10.0 2775 ------- null} h -t 3.14907 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5541 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.14926 -s 10 -d 7 -p ack -e 40 -c 0 -i 5552 -a 0 -x {10.0 9.0 2771 ------- null} + -t 3.14926 -s 7 -d 0 -p ack -e 40 -c 0 -i 5552 -a 0 -x {10.0 9.0 2771 ------- null} h -t 3.14926 -s 7 -d 8 -p ack -e 40 -c 0 -i 5552 -a 0 -x {10.0 9.0 2771 ------- null} + -t 3.14928 -s 0 -d 9 -p ack -e 40 -c 0 -i 5548 -a 0 -x {10.0 9.0 2769 ------- null} - -t 3.14928 -s 0 -d 9 -p ack -e 40 -c 0 -i 5548 -a 0 -x {10.0 9.0 2769 ------- null} h -t 3.14928 -s 0 -d 9 -p ack -e 40 -c 0 -i 5548 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.14957 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5551 -a 0 -x {9.0 10.0 2780 ------- null} + -t 3.14957 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5551 -a 0 -x {9.0 10.0 2780 ------- null} h -t 3.14957 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5551 -a 0 -x {9.0 10.0 2780 ------- null} r -t 3.14963 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5537 -a 0 -x {9.0 10.0 2773 ------- null} + -t 3.14963 -s 10 -d 7 -p ack -e 40 -c 0 -i 5556 -a 0 -x {10.0 9.0 2773 ------- null} - -t 3.14963 -s 10 -d 7 -p ack -e 40 -c 0 -i 5556 -a 0 -x {10.0 9.0 2773 ------- null} h -t 3.14963 -s 10 -d 7 -p ack -e 40 -c 0 -i 5556 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.15016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5543 -a 0 -x {9.0 10.0 2776 ------- null} - -t 3.15016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5543 -a 0 -x {9.0 10.0 2776 ------- null} h -t 3.15016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5543 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.15024 -s 0 -d 9 -p ack -e 40 -c 0 -i 5546 -a 0 -x {10.0 9.0 2768 ------- null} + -t 3.15024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5557 -a 0 -x {9.0 10.0 2783 ------- null} - -t 3.15024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5557 -a 0 -x {9.0 10.0 2783 ------- null} h -t 3.15024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5557 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.15035 -s 0 -d 9 -p ack -e 40 -c 0 -i 5550 -a 0 -x {10.0 9.0 2770 ------- null} - -t 3.15035 -s 0 -d 9 -p ack -e 40 -c 0 -i 5550 -a 0 -x {10.0 9.0 2770 ------- null} h -t 3.15035 -s 0 -d 9 -p ack -e 40 -c 0 -i 5550 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.15058 -s 10 -d 7 -p ack -e 40 -c 0 -i 5554 -a 0 -x {10.0 9.0 2772 ------- null} + -t 3.15058 -s 7 -d 0 -p ack -e 40 -c 0 -i 5554 -a 0 -x {10.0 9.0 2772 ------- null} h -t 3.15058 -s 7 -d 8 -p ack -e 40 -c 0 -i 5554 -a 0 -x {10.0 9.0 2772 ------- null} r -t 3.15072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5539 -a 0 -x {9.0 10.0 2774 ------- null} + -t 3.15072 -s 10 -d 7 -p ack -e 40 -c 0 -i 5558 -a 0 -x {10.0 9.0 2774 ------- null} - -t 3.15072 -s 10 -d 7 -p ack -e 40 -c 0 -i 5558 -a 0 -x {10.0 9.0 2774 ------- null} h -t 3.15072 -s 10 -d 7 -p ack -e 40 -c 0 -i 5558 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.15075 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5553 -a 0 -x {9.0 10.0 2781 ------- null} + -t 3.15075 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5553 -a 0 -x {9.0 10.0 2781 ------- null} h -t 3.15075 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5553 -a 0 -x {9.0 10.0 2781 ------- null} + -t 3.15125 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5545 -a 0 -x {9.0 10.0 2777 ------- null} - -t 3.15125 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5545 -a 0 -x {9.0 10.0 2777 ------- null} h -t 3.15125 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5545 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.15131 -s 0 -d 9 -p ack -e 40 -c 0 -i 5548 -a 0 -x {10.0 9.0 2769 ------- null} + -t 3.15131 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5559 -a 0 -x {9.0 10.0 2784 ------- null} - -t 3.15131 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5559 -a 0 -x {9.0 10.0 2784 ------- null} h -t 3.15131 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5559 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.15147 -s 0 -d 9 -p ack -e 40 -c 0 -i 5552 -a 0 -x {10.0 9.0 2771 ------- null} - -t 3.15147 -s 0 -d 9 -p ack -e 40 -c 0 -i 5552 -a 0 -x {10.0 9.0 2771 ------- null} h -t 3.15147 -s 0 -d 9 -p ack -e 40 -c 0 -i 5552 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.15166 -s 10 -d 7 -p ack -e 40 -c 0 -i 5556 -a 0 -x {10.0 9.0 2773 ------- null} + -t 3.15166 -s 7 -d 0 -p ack -e 40 -c 0 -i 5556 -a 0 -x {10.0 9.0 2773 ------- null} h -t 3.15166 -s 7 -d 8 -p ack -e 40 -c 0 -i 5556 -a 0 -x {10.0 9.0 2773 ------- null} r -t 3.15186 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5555 -a 0 -x {9.0 10.0 2782 ------- null} + -t 3.15186 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5555 -a 0 -x {9.0 10.0 2782 ------- null} h -t 3.15186 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5555 -a 0 -x {9.0 10.0 2782 ------- null} r -t 3.15187 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5541 -a 0 -x {9.0 10.0 2775 ------- null} + -t 3.15187 -s 10 -d 7 -p ack -e 40 -c 0 -i 5560 -a 0 -x {10.0 9.0 2775 ------- null} - -t 3.15187 -s 10 -d 7 -p ack -e 40 -c 0 -i 5560 -a 0 -x {10.0 9.0 2775 ------- null} h -t 3.15187 -s 10 -d 7 -p ack -e 40 -c 0 -i 5560 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.15234 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5547 -a 0 -x {9.0 10.0 2778 ------- null} - -t 3.15234 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5547 -a 0 -x {9.0 10.0 2778 ------- null} h -t 3.15234 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5547 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.15238 -s 0 -d 9 -p ack -e 40 -c 0 -i 5550 -a 0 -x {10.0 9.0 2770 ------- null} + -t 3.15238 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5561 -a 0 -x {9.0 10.0 2785 ------- null} - -t 3.15238 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5561 -a 0 -x {9.0 10.0 2785 ------- null} h -t 3.15238 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5561 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.15261 -s 0 -d 9 -p ack -e 40 -c 0 -i 5554 -a 0 -x {10.0 9.0 2772 ------- null} - -t 3.15261 -s 0 -d 9 -p ack -e 40 -c 0 -i 5554 -a 0 -x {10.0 9.0 2772 ------- null} h -t 3.15261 -s 0 -d 9 -p ack -e 40 -c 0 -i 5554 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.15275 -s 10 -d 7 -p ack -e 40 -c 0 -i 5558 -a 0 -x {10.0 9.0 2774 ------- null} + -t 3.15275 -s 7 -d 0 -p ack -e 40 -c 0 -i 5558 -a 0 -x {10.0 9.0 2774 ------- null} h -t 3.15275 -s 7 -d 8 -p ack -e 40 -c 0 -i 5558 -a 0 -x {10.0 9.0 2774 ------- null} r -t 3.15296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5543 -a 0 -x {9.0 10.0 2776 ------- null} + -t 3.15296 -s 10 -d 7 -p ack -e 40 -c 0 -i 5562 -a 0 -x {10.0 9.0 2776 ------- null} - -t 3.15296 -s 10 -d 7 -p ack -e 40 -c 0 -i 5562 -a 0 -x {10.0 9.0 2776 ------- null} h -t 3.15296 -s 10 -d 7 -p ack -e 40 -c 0 -i 5562 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.15304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5557 -a 0 -x {9.0 10.0 2783 ------- null} + -t 3.15304 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5557 -a 0 -x {9.0 10.0 2783 ------- null} h -t 3.15304 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5557 -a 0 -x {9.0 10.0 2783 ------- null} r -t 3.1535 -s 0 -d 9 -p ack -e 40 -c 0 -i 5552 -a 0 -x {10.0 9.0 2771 ------- null} + -t 3.1535 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5563 -a 0 -x {9.0 10.0 2786 ------- null} - -t 3.1535 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5563 -a 0 -x {9.0 10.0 2786 ------- null} h -t 3.1535 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5563 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.15355 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5549 -a 0 -x {9.0 10.0 2779 ------- null} - -t 3.15355 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5549 -a 0 -x {9.0 10.0 2779 ------- null} h -t 3.15355 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5549 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.15373 -s 0 -d 9 -p ack -e 40 -c 0 -i 5556 -a 0 -x {10.0 9.0 2773 ------- null} - -t 3.15373 -s 0 -d 9 -p ack -e 40 -c 0 -i 5556 -a 0 -x {10.0 9.0 2773 ------- null} h -t 3.15373 -s 0 -d 9 -p ack -e 40 -c 0 -i 5556 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.1539 -s 10 -d 7 -p ack -e 40 -c 0 -i 5560 -a 0 -x {10.0 9.0 2775 ------- null} + -t 3.1539 -s 7 -d 0 -p ack -e 40 -c 0 -i 5560 -a 0 -x {10.0 9.0 2775 ------- null} h -t 3.1539 -s 7 -d 8 -p ack -e 40 -c 0 -i 5560 -a 0 -x {10.0 9.0 2775 ------- null} r -t 3.15405 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5545 -a 0 -x {9.0 10.0 2777 ------- null} + -t 3.15405 -s 10 -d 7 -p ack -e 40 -c 0 -i 5564 -a 0 -x {10.0 9.0 2777 ------- null} - -t 3.15405 -s 10 -d 7 -p ack -e 40 -c 0 -i 5564 -a 0 -x {10.0 9.0 2777 ------- null} h -t 3.15405 -s 10 -d 7 -p ack -e 40 -c 0 -i 5564 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.15411 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5559 -a 0 -x {9.0 10.0 2784 ------- null} + -t 3.15411 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5559 -a 0 -x {9.0 10.0 2784 ------- null} h -t 3.15411 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5559 -a 0 -x {9.0 10.0 2784 ------- null} r -t 3.15464 -s 0 -d 9 -p ack -e 40 -c 0 -i 5554 -a 0 -x {10.0 9.0 2772 ------- null} + -t 3.15464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5565 -a 0 -x {9.0 10.0 2787 ------- null} - -t 3.15464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5565 -a 0 -x {9.0 10.0 2787 ------- null} h -t 3.15464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5565 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.15464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5551 -a 0 -x {9.0 10.0 2780 ------- null} - -t 3.15464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5551 -a 0 -x {9.0 10.0 2780 ------- null} h -t 3.15464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5551 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.15493 -s 0 -d 9 -p ack -e 40 -c 0 -i 5558 -a 0 -x {10.0 9.0 2774 ------- null} - -t 3.15493 -s 0 -d 9 -p ack -e 40 -c 0 -i 5558 -a 0 -x {10.0 9.0 2774 ------- null} h -t 3.15493 -s 0 -d 9 -p ack -e 40 -c 0 -i 5558 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.15499 -s 10 -d 7 -p ack -e 40 -c 0 -i 5562 -a 0 -x {10.0 9.0 2776 ------- null} + -t 3.15499 -s 7 -d 0 -p ack -e 40 -c 0 -i 5562 -a 0 -x {10.0 9.0 2776 ------- null} h -t 3.15499 -s 7 -d 8 -p ack -e 40 -c 0 -i 5562 -a 0 -x {10.0 9.0 2776 ------- null} r -t 3.15514 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5547 -a 0 -x {9.0 10.0 2778 ------- null} + -t 3.15514 -s 10 -d 7 -p ack -e 40 -c 0 -i 5566 -a 0 -x {10.0 9.0 2778 ------- null} - -t 3.15514 -s 10 -d 7 -p ack -e 40 -c 0 -i 5566 -a 0 -x {10.0 9.0 2778 ------- null} h -t 3.15514 -s 10 -d 7 -p ack -e 40 -c 0 -i 5566 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.15518 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5561 -a 0 -x {9.0 10.0 2785 ------- null} + -t 3.15518 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5561 -a 0 -x {9.0 10.0 2785 ------- null} h -t 3.15518 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5561 -a 0 -x {9.0 10.0 2785 ------- null} + -t 3.15576 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5553 -a 0 -x {9.0 10.0 2781 ------- null} - -t 3.15576 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5553 -a 0 -x {9.0 10.0 2781 ------- null} h -t 3.15576 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5553 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.15576 -s 0 -d 9 -p ack -e 40 -c 0 -i 5556 -a 0 -x {10.0 9.0 2773 ------- null} + -t 3.15576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5567 -a 0 -x {9.0 10.0 2788 ------- null} - -t 3.15576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5567 -a 0 -x {9.0 10.0 2788 ------- null} h -t 3.15576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5567 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.15584 -s 0 -d 9 -p ack -e 40 -c 0 -i 5560 -a 0 -x {10.0 9.0 2775 ------- null} - -t 3.15584 -s 0 -d 9 -p ack -e 40 -c 0 -i 5560 -a 0 -x {10.0 9.0 2775 ------- null} h -t 3.15584 -s 0 -d 9 -p ack -e 40 -c 0 -i 5560 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.15608 -s 10 -d 7 -p ack -e 40 -c 0 -i 5564 -a 0 -x {10.0 9.0 2777 ------- null} + -t 3.15608 -s 7 -d 0 -p ack -e 40 -c 0 -i 5564 -a 0 -x {10.0 9.0 2777 ------- null} h -t 3.15608 -s 7 -d 8 -p ack -e 40 -c 0 -i 5564 -a 0 -x {10.0 9.0 2777 ------- null} r -t 3.1563 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5563 -a 0 -x {9.0 10.0 2786 ------- null} + -t 3.1563 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5563 -a 0 -x {9.0 10.0 2786 ------- null} h -t 3.1563 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5563 -a 0 -x {9.0 10.0 2786 ------- null} r -t 3.15635 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5549 -a 0 -x {9.0 10.0 2779 ------- null} + -t 3.15635 -s 10 -d 7 -p ack -e 40 -c 0 -i 5568 -a 0 -x {10.0 9.0 2779 ------- null} - -t 3.15635 -s 10 -d 7 -p ack -e 40 -c 0 -i 5568 -a 0 -x {10.0 9.0 2779 ------- null} h -t 3.15635 -s 10 -d 7 -p ack -e 40 -c 0 -i 5568 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.15685 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5555 -a 0 -x {9.0 10.0 2782 ------- null} - -t 3.15685 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5555 -a 0 -x {9.0 10.0 2782 ------- null} h -t 3.15685 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5555 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.15696 -s 0 -d 9 -p ack -e 40 -c 0 -i 5558 -a 0 -x {10.0 9.0 2774 ------- null} + -t 3.15696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5569 -a 0 -x {9.0 10.0 2789 ------- null} - -t 3.15696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5569 -a 0 -x {9.0 10.0 2789 ------- null} h -t 3.15696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5569 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.15706 -s 0 -d 9 -p ack -e 40 -c 0 -i 5562 -a 0 -x {10.0 9.0 2776 ------- null} - -t 3.15706 -s 0 -d 9 -p ack -e 40 -c 0 -i 5562 -a 0 -x {10.0 9.0 2776 ------- null} h -t 3.15706 -s 0 -d 9 -p ack -e 40 -c 0 -i 5562 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.15717 -s 10 -d 7 -p ack -e 40 -c 0 -i 5566 -a 0 -x {10.0 9.0 2778 ------- null} + -t 3.15717 -s 7 -d 0 -p ack -e 40 -c 0 -i 5566 -a 0 -x {10.0 9.0 2778 ------- null} h -t 3.15717 -s 7 -d 8 -p ack -e 40 -c 0 -i 5566 -a 0 -x {10.0 9.0 2778 ------- null} r -t 3.15744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5565 -a 0 -x {9.0 10.0 2787 ------- null} + -t 3.15744 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5565 -a 0 -x {9.0 10.0 2787 ------- null} h -t 3.15744 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5565 -a 0 -x {9.0 10.0 2787 ------- null} r -t 3.15744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5551 -a 0 -x {9.0 10.0 2780 ------- null} + -t 3.15744 -s 10 -d 7 -p ack -e 40 -c 0 -i 5570 -a 0 -x {10.0 9.0 2780 ------- null} - -t 3.15744 -s 10 -d 7 -p ack -e 40 -c 0 -i 5570 -a 0 -x {10.0 9.0 2780 ------- null} h -t 3.15744 -s 10 -d 7 -p ack -e 40 -c 0 -i 5570 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.15787 -s 0 -d 9 -p ack -e 40 -c 0 -i 5560 -a 0 -x {10.0 9.0 2775 ------- null} + -t 3.15787 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5571 -a 0 -x {9.0 10.0 2790 ------- null} - -t 3.15787 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5571 -a 0 -x {9.0 10.0 2790 ------- null} h -t 3.15787 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5571 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.15794 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5557 -a 0 -x {9.0 10.0 2783 ------- null} - -t 3.15794 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5557 -a 0 -x {9.0 10.0 2783 ------- null} h -t 3.15794 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5557 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.15805 -s 0 -d 9 -p ack -e 40 -c 0 -i 5564 -a 0 -x {10.0 9.0 2777 ------- null} - -t 3.15805 -s 0 -d 9 -p ack -e 40 -c 0 -i 5564 -a 0 -x {10.0 9.0 2777 ------- null} h -t 3.15805 -s 0 -d 9 -p ack -e 40 -c 0 -i 5564 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.15838 -s 10 -d 7 -p ack -e 40 -c 0 -i 5568 -a 0 -x {10.0 9.0 2779 ------- null} + -t 3.15838 -s 7 -d 0 -p ack -e 40 -c 0 -i 5568 -a 0 -x {10.0 9.0 2779 ------- null} h -t 3.15838 -s 7 -d 8 -p ack -e 40 -c 0 -i 5568 -a 0 -x {10.0 9.0 2779 ------- null} r -t 3.15856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5553 -a 0 -x {9.0 10.0 2781 ------- null} + -t 3.15856 -s 10 -d 7 -p ack -e 40 -c 0 -i 5572 -a 0 -x {10.0 9.0 2781 ------- null} - -t 3.15856 -s 10 -d 7 -p ack -e 40 -c 0 -i 5572 -a 0 -x {10.0 9.0 2781 ------- null} h -t 3.15856 -s 10 -d 7 -p ack -e 40 -c 0 -i 5572 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.15856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5567 -a 0 -x {9.0 10.0 2788 ------- null} + -t 3.15856 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5567 -a 0 -x {9.0 10.0 2788 ------- null} h -t 3.15856 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5567 -a 0 -x {9.0 10.0 2788 ------- null} + -t 3.15902 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5559 -a 0 -x {9.0 10.0 2784 ------- null} - -t 3.15902 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5559 -a 0 -x {9.0 10.0 2784 ------- null} h -t 3.15902 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5559 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.15909 -s 0 -d 9 -p ack -e 40 -c 0 -i 5562 -a 0 -x {10.0 9.0 2776 ------- null} + -t 3.15909 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5573 -a 0 -x {9.0 10.0 2791 ------- null} - -t 3.15909 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5573 -a 0 -x {9.0 10.0 2791 ------- null} h -t 3.15909 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5573 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.15923 -s 0 -d 9 -p ack -e 40 -c 0 -i 5566 -a 0 -x {10.0 9.0 2778 ------- null} - -t 3.15923 -s 0 -d 9 -p ack -e 40 -c 0 -i 5566 -a 0 -x {10.0 9.0 2778 ------- null} h -t 3.15923 -s 0 -d 9 -p ack -e 40 -c 0 -i 5566 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.15947 -s 10 -d 7 -p ack -e 40 -c 0 -i 5570 -a 0 -x {10.0 9.0 2780 ------- null} + -t 3.15947 -s 7 -d 0 -p ack -e 40 -c 0 -i 5570 -a 0 -x {10.0 9.0 2780 ------- null} h -t 3.15947 -s 7 -d 8 -p ack -e 40 -c 0 -i 5570 -a 0 -x {10.0 9.0 2780 ------- null} r -t 3.15965 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5555 -a 0 -x {9.0 10.0 2782 ------- null} + -t 3.15965 -s 10 -d 7 -p ack -e 40 -c 0 -i 5574 -a 0 -x {10.0 9.0 2782 ------- null} - -t 3.15965 -s 10 -d 7 -p ack -e 40 -c 0 -i 5574 -a 0 -x {10.0 9.0 2782 ------- null} h -t 3.15965 -s 10 -d 7 -p ack -e 40 -c 0 -i 5574 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.15976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5569 -a 0 -x {9.0 10.0 2789 ------- null} + -t 3.15976 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5569 -a 0 -x {9.0 10.0 2789 ------- null} h -t 3.15976 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5569 -a 0 -x {9.0 10.0 2789 ------- null} r -t 3.16008 -s 0 -d 9 -p ack -e 40 -c 0 -i 5564 -a 0 -x {10.0 9.0 2777 ------- null} + -t 3.16008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5575 -a 0 -x {9.0 10.0 2792 ------- null} - -t 3.16008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5575 -a 0 -x {9.0 10.0 2792 ------- null} h -t 3.16008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5575 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.16011 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5561 -a 0 -x {9.0 10.0 2785 ------- null} - -t 3.16011 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5561 -a 0 -x {9.0 10.0 2785 ------- null} h -t 3.16011 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5561 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.16042 -s 0 -d 9 -p ack -e 40 -c 0 -i 5568 -a 0 -x {10.0 9.0 2779 ------- null} - -t 3.16042 -s 0 -d 9 -p ack -e 40 -c 0 -i 5568 -a 0 -x {10.0 9.0 2779 ------- null} h -t 3.16042 -s 0 -d 9 -p ack -e 40 -c 0 -i 5568 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.16059 -s 10 -d 7 -p ack -e 40 -c 0 -i 5572 -a 0 -x {10.0 9.0 2781 ------- null} + -t 3.16059 -s 7 -d 0 -p ack -e 40 -c 0 -i 5572 -a 0 -x {10.0 9.0 2781 ------- null} h -t 3.16059 -s 7 -d 8 -p ack -e 40 -c 0 -i 5572 -a 0 -x {10.0 9.0 2781 ------- null} r -t 3.16067 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5571 -a 0 -x {9.0 10.0 2790 ------- null} + -t 3.16067 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5571 -a 0 -x {9.0 10.0 2790 ------- null} h -t 3.16067 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5571 -a 0 -x {9.0 10.0 2790 ------- null} r -t 3.16074 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5557 -a 0 -x {9.0 10.0 2783 ------- null} + -t 3.16074 -s 10 -d 7 -p ack -e 40 -c 0 -i 5576 -a 0 -x {10.0 9.0 2783 ------- null} - -t 3.16074 -s 10 -d 7 -p ack -e 40 -c 0 -i 5576 -a 0 -x {10.0 9.0 2783 ------- null} h -t 3.16074 -s 10 -d 7 -p ack -e 40 -c 0 -i 5576 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.16126 -s 0 -d 9 -p ack -e 40 -c 0 -i 5566 -a 0 -x {10.0 9.0 2778 ------- null} + -t 3.16126 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5577 -a 0 -x {9.0 10.0 2793 ------- null} - -t 3.16126 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5577 -a 0 -x {9.0 10.0 2793 ------- null} h -t 3.16126 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5577 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.1613 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5563 -a 0 -x {9.0 10.0 2786 ------- null} - -t 3.1613 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5563 -a 0 -x {9.0 10.0 2786 ------- null} h -t 3.1613 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5563 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.16146 -s 0 -d 9 -p ack -e 40 -c 0 -i 5570 -a 0 -x {10.0 9.0 2780 ------- null} - -t 3.16146 -s 0 -d 9 -p ack -e 40 -c 0 -i 5570 -a 0 -x {10.0 9.0 2780 ------- null} h -t 3.16146 -s 0 -d 9 -p ack -e 40 -c 0 -i 5570 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.16168 -s 10 -d 7 -p ack -e 40 -c 0 -i 5574 -a 0 -x {10.0 9.0 2782 ------- null} + -t 3.16168 -s 7 -d 0 -p ack -e 40 -c 0 -i 5574 -a 0 -x {10.0 9.0 2782 ------- null} h -t 3.16168 -s 7 -d 8 -p ack -e 40 -c 0 -i 5574 -a 0 -x {10.0 9.0 2782 ------- null} r -t 3.16182 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5559 -a 0 -x {9.0 10.0 2784 ------- null} + -t 3.16182 -s 10 -d 7 -p ack -e 40 -c 0 -i 5578 -a 0 -x {10.0 9.0 2784 ------- null} - -t 3.16182 -s 10 -d 7 -p ack -e 40 -c 0 -i 5578 -a 0 -x {10.0 9.0 2784 ------- null} h -t 3.16182 -s 10 -d 7 -p ack -e 40 -c 0 -i 5578 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.16189 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5573 -a 0 -x {9.0 10.0 2791 ------- null} + -t 3.16189 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5573 -a 0 -x {9.0 10.0 2791 ------- null} h -t 3.16189 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5573 -a 0 -x {9.0 10.0 2791 ------- null} + -t 3.16238 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5565 -a 0 -x {9.0 10.0 2787 ------- null} - -t 3.16238 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5565 -a 0 -x {9.0 10.0 2787 ------- null} h -t 3.16238 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5565 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.16245 -s 0 -d 9 -p ack -e 40 -c 0 -i 5568 -a 0 -x {10.0 9.0 2779 ------- null} + -t 3.16245 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5579 -a 0 -x {9.0 10.0 2794 ------- null} - -t 3.16245 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5579 -a 0 -x {9.0 10.0 2794 ------- null} h -t 3.16245 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5579 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.16251 -s 0 -d 9 -p ack -e 40 -c 0 -i 5572 -a 0 -x {10.0 9.0 2781 ------- null} - -t 3.16251 -s 0 -d 9 -p ack -e 40 -c 0 -i 5572 -a 0 -x {10.0 9.0 2781 ------- null} h -t 3.16251 -s 0 -d 9 -p ack -e 40 -c 0 -i 5572 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.16277 -s 10 -d 7 -p ack -e 40 -c 0 -i 5576 -a 0 -x {10.0 9.0 2783 ------- null} + -t 3.16277 -s 7 -d 0 -p ack -e 40 -c 0 -i 5576 -a 0 -x {10.0 9.0 2783 ------- null} h -t 3.16277 -s 7 -d 8 -p ack -e 40 -c 0 -i 5576 -a 0 -x {10.0 9.0 2783 ------- null} r -t 3.16288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5575 -a 0 -x {9.0 10.0 2792 ------- null} + -t 3.16288 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5575 -a 0 -x {9.0 10.0 2792 ------- null} h -t 3.16288 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5575 -a 0 -x {9.0 10.0 2792 ------- null} r -t 3.16291 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5561 -a 0 -x {9.0 10.0 2785 ------- null} + -t 3.16291 -s 10 -d 7 -p ack -e 40 -c 0 -i 5580 -a 0 -x {10.0 9.0 2785 ------- null} - -t 3.16291 -s 10 -d 7 -p ack -e 40 -c 0 -i 5580 -a 0 -x {10.0 9.0 2785 ------- null} h -t 3.16291 -s 10 -d 7 -p ack -e 40 -c 0 -i 5580 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.16347 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5567 -a 0 -x {9.0 10.0 2788 ------- null} - -t 3.16347 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5567 -a 0 -x {9.0 10.0 2788 ------- null} h -t 3.16347 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5567 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.16349 -s 0 -d 9 -p ack -e 40 -c 0 -i 5570 -a 0 -x {10.0 9.0 2780 ------- null} + -t 3.16349 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5581 -a 0 -x {9.0 10.0 2795 ------- null} - -t 3.16349 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5581 -a 0 -x {9.0 10.0 2795 ------- null} h -t 3.16349 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5581 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.16373 -s 0 -d 9 -p ack -e 40 -c 0 -i 5574 -a 0 -x {10.0 9.0 2782 ------- null} - -t 3.16373 -s 0 -d 9 -p ack -e 40 -c 0 -i 5574 -a 0 -x {10.0 9.0 2782 ------- null} h -t 3.16373 -s 0 -d 9 -p ack -e 40 -c 0 -i 5574 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.16386 -s 10 -d 7 -p ack -e 40 -c 0 -i 5578 -a 0 -x {10.0 9.0 2784 ------- null} + -t 3.16386 -s 7 -d 0 -p ack -e 40 -c 0 -i 5578 -a 0 -x {10.0 9.0 2784 ------- null} h -t 3.16386 -s 7 -d 8 -p ack -e 40 -c 0 -i 5578 -a 0 -x {10.0 9.0 2784 ------- null} r -t 3.16406 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5577 -a 0 -x {9.0 10.0 2793 ------- null} + -t 3.16406 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5577 -a 0 -x {9.0 10.0 2793 ------- null} h -t 3.16406 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5577 -a 0 -x {9.0 10.0 2793 ------- null} r -t 3.1641 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5563 -a 0 -x {9.0 10.0 2786 ------- null} + -t 3.1641 -s 10 -d 7 -p ack -e 40 -c 0 -i 5582 -a 0 -x {10.0 9.0 2786 ------- null} - -t 3.1641 -s 10 -d 7 -p ack -e 40 -c 0 -i 5582 -a 0 -x {10.0 9.0 2786 ------- null} h -t 3.1641 -s 10 -d 7 -p ack -e 40 -c 0 -i 5582 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.16454 -s 0 -d 9 -p ack -e 40 -c 0 -i 5572 -a 0 -x {10.0 9.0 2781 ------- null} + -t 3.16454 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5583 -a 0 -x {9.0 10.0 2796 ------- null} - -t 3.16454 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5583 -a 0 -x {9.0 10.0 2796 ------- null} h -t 3.16454 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5583 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.16458 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5569 -a 0 -x {9.0 10.0 2789 ------- null} - -t 3.16458 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5569 -a 0 -x {9.0 10.0 2789 ------- null} h -t 3.16458 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5569 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.16478 -s 0 -d 9 -p ack -e 40 -c 0 -i 5576 -a 0 -x {10.0 9.0 2783 ------- null} - -t 3.16478 -s 0 -d 9 -p ack -e 40 -c 0 -i 5576 -a 0 -x {10.0 9.0 2783 ------- null} h -t 3.16478 -s 0 -d 9 -p ack -e 40 -c 0 -i 5576 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.16494 -s 10 -d 7 -p ack -e 40 -c 0 -i 5580 -a 0 -x {10.0 9.0 2785 ------- null} + -t 3.16494 -s 7 -d 0 -p ack -e 40 -c 0 -i 5580 -a 0 -x {10.0 9.0 2785 ------- null} h -t 3.16494 -s 7 -d 8 -p ack -e 40 -c 0 -i 5580 -a 0 -x {10.0 9.0 2785 ------- null} r -t 3.16518 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5565 -a 0 -x {9.0 10.0 2787 ------- null} + -t 3.16518 -s 10 -d 7 -p ack -e 40 -c 0 -i 5584 -a 0 -x {10.0 9.0 2787 ------- null} - -t 3.16518 -s 10 -d 7 -p ack -e 40 -c 0 -i 5584 -a 0 -x {10.0 9.0 2787 ------- null} h -t 3.16518 -s 10 -d 7 -p ack -e 40 -c 0 -i 5584 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.16525 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5579 -a 0 -x {9.0 10.0 2794 ------- null} + -t 3.16525 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5579 -a 0 -x {9.0 10.0 2794 ------- null} h -t 3.16525 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5579 -a 0 -x {9.0 10.0 2794 ------- null} + -t 3.16566 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5571 -a 0 -x {9.0 10.0 2790 ------- null} - -t 3.16566 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5571 -a 0 -x {9.0 10.0 2790 ------- null} h -t 3.16566 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5571 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.16576 -s 0 -d 9 -p ack -e 40 -c 0 -i 5574 -a 0 -x {10.0 9.0 2782 ------- null} + -t 3.16576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5585 -a 0 -x {9.0 10.0 2797 ------- null} - -t 3.16576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5585 -a 0 -x {9.0 10.0 2797 ------- null} h -t 3.16576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5585 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.16581 -s 0 -d 9 -p ack -e 40 -c 0 -i 5578 -a 0 -x {10.0 9.0 2784 ------- null} - -t 3.16581 -s 0 -d 9 -p ack -e 40 -c 0 -i 5578 -a 0 -x {10.0 9.0 2784 ------- null} h -t 3.16581 -s 0 -d 9 -p ack -e 40 -c 0 -i 5578 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.16613 -s 10 -d 7 -p ack -e 40 -c 0 -i 5582 -a 0 -x {10.0 9.0 2786 ------- null} + -t 3.16613 -s 7 -d 0 -p ack -e 40 -c 0 -i 5582 -a 0 -x {10.0 9.0 2786 ------- null} h -t 3.16613 -s 7 -d 8 -p ack -e 40 -c 0 -i 5582 -a 0 -x {10.0 9.0 2786 ------- null} r -t 3.16627 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5567 -a 0 -x {9.0 10.0 2788 ------- null} + -t 3.16627 -s 10 -d 7 -p ack -e 40 -c 0 -i 5586 -a 0 -x {10.0 9.0 2788 ------- null} - -t 3.16627 -s 10 -d 7 -p ack -e 40 -c 0 -i 5586 -a 0 -x {10.0 9.0 2788 ------- null} h -t 3.16627 -s 10 -d 7 -p ack -e 40 -c 0 -i 5586 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.16629 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5581 -a 0 -x {9.0 10.0 2795 ------- null} + -t 3.16629 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5581 -a 0 -x {9.0 10.0 2795 ------- null} h -t 3.16629 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5581 -a 0 -x {9.0 10.0 2795 ------- null} + -t 3.16675 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5573 -a 0 -x {9.0 10.0 2791 ------- null} - -t 3.16675 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5573 -a 0 -x {9.0 10.0 2791 ------- null} h -t 3.16675 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5573 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.16682 -s 0 -d 9 -p ack -e 40 -c 0 -i 5576 -a 0 -x {10.0 9.0 2783 ------- null} + -t 3.16682 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5587 -a 0 -x {9.0 10.0 2798 ------- null} - -t 3.16682 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5587 -a 0 -x {9.0 10.0 2798 ------- null} h -t 3.16682 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5587 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.16706 -s 0 -d 9 -p ack -e 40 -c 0 -i 5580 -a 0 -x {10.0 9.0 2785 ------- null} - -t 3.16706 -s 0 -d 9 -p ack -e 40 -c 0 -i 5580 -a 0 -x {10.0 9.0 2785 ------- null} h -t 3.16706 -s 0 -d 9 -p ack -e 40 -c 0 -i 5580 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.16722 -s 10 -d 7 -p ack -e 40 -c 0 -i 5584 -a 0 -x {10.0 9.0 2787 ------- null} + -t 3.16722 -s 7 -d 0 -p ack -e 40 -c 0 -i 5584 -a 0 -x {10.0 9.0 2787 ------- null} h -t 3.16722 -s 7 -d 8 -p ack -e 40 -c 0 -i 5584 -a 0 -x {10.0 9.0 2787 ------- null} r -t 3.16734 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5583 -a 0 -x {9.0 10.0 2796 ------- null} + -t 3.16734 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5583 -a 0 -x {9.0 10.0 2796 ------- null} h -t 3.16734 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5583 -a 0 -x {9.0 10.0 2796 ------- null} r -t 3.16738 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5569 -a 0 -x {9.0 10.0 2789 ------- null} + -t 3.16738 -s 10 -d 7 -p ack -e 40 -c 0 -i 5588 -a 0 -x {10.0 9.0 2789 ------- null} - -t 3.16738 -s 10 -d 7 -p ack -e 40 -c 0 -i 5588 -a 0 -x {10.0 9.0 2789 ------- null} h -t 3.16738 -s 10 -d 7 -p ack -e 40 -c 0 -i 5588 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.16784 -s 0 -d 9 -p ack -e 40 -c 0 -i 5578 -a 0 -x {10.0 9.0 2784 ------- null} + -t 3.16784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5589 -a 0 -x {9.0 10.0 2799 ------- null} - -t 3.16784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5589 -a 0 -x {9.0 10.0 2799 ------- null} h -t 3.16784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5589 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.1679 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5575 -a 0 -x {9.0 10.0 2792 ------- null} - -t 3.1679 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5575 -a 0 -x {9.0 10.0 2792 ------- null} h -t 3.1679 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5575 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.16816 -s 0 -d 9 -p ack -e 40 -c 0 -i 5582 -a 0 -x {10.0 9.0 2786 ------- null} - -t 3.16816 -s 0 -d 9 -p ack -e 40 -c 0 -i 5582 -a 0 -x {10.0 9.0 2786 ------- null} h -t 3.16816 -s 0 -d 9 -p ack -e 40 -c 0 -i 5582 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.1683 -s 10 -d 7 -p ack -e 40 -c 0 -i 5586 -a 0 -x {10.0 9.0 2788 ------- null} + -t 3.1683 -s 7 -d 0 -p ack -e 40 -c 0 -i 5586 -a 0 -x {10.0 9.0 2788 ------- null} h -t 3.1683 -s 7 -d 8 -p ack -e 40 -c 0 -i 5586 -a 0 -x {10.0 9.0 2788 ------- null} r -t 3.16846 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5571 -a 0 -x {9.0 10.0 2790 ------- null} + -t 3.16846 -s 10 -d 7 -p ack -e 40 -c 0 -i 5590 -a 0 -x {10.0 9.0 2790 ------- null} - -t 3.16846 -s 10 -d 7 -p ack -e 40 -c 0 -i 5590 -a 0 -x {10.0 9.0 2790 ------- null} h -t 3.16846 -s 10 -d 7 -p ack -e 40 -c 0 -i 5590 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.16856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5585 -a 0 -x {9.0 10.0 2797 ------- null} + -t 3.16856 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5585 -a 0 -x {9.0 10.0 2797 ------- null} h -t 3.16856 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5585 -a 0 -x {9.0 10.0 2797 ------- null} r -t 3.16909 -s 0 -d 9 -p ack -e 40 -c 0 -i 5580 -a 0 -x {10.0 9.0 2785 ------- null} + -t 3.16909 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5591 -a 0 -x {9.0 10.0 2800 ------- null} - -t 3.16909 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5591 -a 0 -x {9.0 10.0 2800 ------- null} h -t 3.16909 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5591 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.1692 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5577 -a 0 -x {9.0 10.0 2793 ------- null} - -t 3.1692 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5577 -a 0 -x {9.0 10.0 2793 ------- null} h -t 3.1692 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5577 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.1693 -s 0 -d 9 -p ack -e 40 -c 0 -i 5584 -a 0 -x {10.0 9.0 2787 ------- null} - -t 3.1693 -s 0 -d 9 -p ack -e 40 -c 0 -i 5584 -a 0 -x {10.0 9.0 2787 ------- null} h -t 3.1693 -s 0 -d 9 -p ack -e 40 -c 0 -i 5584 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.16941 -s 10 -d 7 -p ack -e 40 -c 0 -i 5588 -a 0 -x {10.0 9.0 2789 ------- null} + -t 3.16941 -s 7 -d 0 -p ack -e 40 -c 0 -i 5588 -a 0 -x {10.0 9.0 2789 ------- null} h -t 3.16941 -s 7 -d 8 -p ack -e 40 -c 0 -i 5588 -a 0 -x {10.0 9.0 2789 ------- null} r -t 3.16955 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5573 -a 0 -x {9.0 10.0 2791 ------- null} + -t 3.16955 -s 10 -d 7 -p ack -e 40 -c 0 -i 5592 -a 0 -x {10.0 9.0 2791 ------- null} - -t 3.16955 -s 10 -d 7 -p ack -e 40 -c 0 -i 5592 -a 0 -x {10.0 9.0 2791 ------- null} h -t 3.16955 -s 10 -d 7 -p ack -e 40 -c 0 -i 5592 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.16962 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5587 -a 0 -x {9.0 10.0 2798 ------- null} + -t 3.16962 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5587 -a 0 -x {9.0 10.0 2798 ------- null} h -t 3.16962 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5587 -a 0 -x {9.0 10.0 2798 ------- null} r -t 3.17019 -s 0 -d 9 -p ack -e 40 -c 0 -i 5582 -a 0 -x {10.0 9.0 2786 ------- null} + -t 3.17019 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5593 -a 0 -x {9.0 10.0 2801 ------- null} - -t 3.17019 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5593 -a 0 -x {9.0 10.0 2801 ------- null} h -t 3.17019 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5593 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.17029 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5579 -a 0 -x {9.0 10.0 2794 ------- null} - -t 3.17029 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5579 -a 0 -x {9.0 10.0 2794 ------- null} h -t 3.17029 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5579 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.1705 -s 10 -d 7 -p ack -e 40 -c 0 -i 5590 -a 0 -x {10.0 9.0 2790 ------- null} + -t 3.1705 -s 7 -d 0 -p ack -e 40 -c 0 -i 5590 -a 0 -x {10.0 9.0 2790 ------- null} h -t 3.1705 -s 7 -d 8 -p ack -e 40 -c 0 -i 5590 -a 0 -x {10.0 9.0 2790 ------- null} + -t 3.17051 -s 0 -d 9 -p ack -e 40 -c 0 -i 5586 -a 0 -x {10.0 9.0 2788 ------- null} - -t 3.17051 -s 0 -d 9 -p ack -e 40 -c 0 -i 5586 -a 0 -x {10.0 9.0 2788 ------- null} h -t 3.17051 -s 0 -d 9 -p ack -e 40 -c 0 -i 5586 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.17064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5589 -a 0 -x {9.0 10.0 2799 ------- null} + -t 3.17064 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5589 -a 0 -x {9.0 10.0 2799 ------- null} h -t 3.17064 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5589 -a 0 -x {9.0 10.0 2799 ------- null} r -t 3.1707 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5575 -a 0 -x {9.0 10.0 2792 ------- null} + -t 3.1707 -s 10 -d 7 -p ack -e 40 -c 0 -i 5594 -a 0 -x {10.0 9.0 2792 ------- null} - -t 3.1707 -s 10 -d 7 -p ack -e 40 -c 0 -i 5594 -a 0 -x {10.0 9.0 2792 ------- null} h -t 3.1707 -s 10 -d 7 -p ack -e 40 -c 0 -i 5594 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.17133 -s 0 -d 9 -p ack -e 40 -c 0 -i 5584 -a 0 -x {10.0 9.0 2787 ------- null} + -t 3.17133 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5595 -a 0 -x {9.0 10.0 2802 ------- null} - -t 3.17133 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5595 -a 0 -x {9.0 10.0 2802 ------- null} h -t 3.17133 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5595 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.17138 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5581 -a 0 -x {9.0 10.0 2795 ------- null} - -t 3.17138 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5581 -a 0 -x {9.0 10.0 2795 ------- null} h -t 3.17138 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5581 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.17147 -s 0 -d 9 -p ack -e 40 -c 0 -i 5588 -a 0 -x {10.0 9.0 2789 ------- null} - -t 3.17147 -s 0 -d 9 -p ack -e 40 -c 0 -i 5588 -a 0 -x {10.0 9.0 2789 ------- null} h -t 3.17147 -s 0 -d 9 -p ack -e 40 -c 0 -i 5588 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.17158 -s 10 -d 7 -p ack -e 40 -c 0 -i 5592 -a 0 -x {10.0 9.0 2791 ------- null} + -t 3.17158 -s 7 -d 0 -p ack -e 40 -c 0 -i 5592 -a 0 -x {10.0 9.0 2791 ------- null} h -t 3.17158 -s 7 -d 8 -p ack -e 40 -c 0 -i 5592 -a 0 -x {10.0 9.0 2791 ------- null} r -t 3.17189 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5591 -a 0 -x {9.0 10.0 2800 ------- null} + -t 3.17189 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5591 -a 0 -x {9.0 10.0 2800 ------- null} h -t 3.17189 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5591 -a 0 -x {9.0 10.0 2800 ------- null} r -t 3.172 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5577 -a 0 -x {9.0 10.0 2793 ------- null} + -t 3.172 -s 10 -d 7 -p ack -e 40 -c 0 -i 5596 -a 0 -x {10.0 9.0 2793 ------- null} - -t 3.172 -s 10 -d 7 -p ack -e 40 -c 0 -i 5596 -a 0 -x {10.0 9.0 2793 ------- null} h -t 3.172 -s 10 -d 7 -p ack -e 40 -c 0 -i 5596 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.17246 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5583 -a 0 -x {9.0 10.0 2796 ------- null} - -t 3.17246 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5583 -a 0 -x {9.0 10.0 2796 ------- null} h -t 3.17246 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5583 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.17254 -s 0 -d 9 -p ack -e 40 -c 0 -i 5586 -a 0 -x {10.0 9.0 2788 ------- null} + -t 3.17254 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5597 -a 0 -x {9.0 10.0 2803 ------- null} - -t 3.17254 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5597 -a 0 -x {9.0 10.0 2803 ------- null} h -t 3.17254 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5597 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.17272 -s 0 -d 9 -p ack -e 40 -c 0 -i 5590 -a 0 -x {10.0 9.0 2790 ------- null} - -t 3.17272 -s 0 -d 9 -p ack -e 40 -c 0 -i 5590 -a 0 -x {10.0 9.0 2790 ------- null} h -t 3.17272 -s 0 -d 9 -p ack -e 40 -c 0 -i 5590 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.17274 -s 10 -d 7 -p ack -e 40 -c 0 -i 5594 -a 0 -x {10.0 9.0 2792 ------- null} + -t 3.17274 -s 7 -d 0 -p ack -e 40 -c 0 -i 5594 -a 0 -x {10.0 9.0 2792 ------- null} h -t 3.17274 -s 7 -d 8 -p ack -e 40 -c 0 -i 5594 -a 0 -x {10.0 9.0 2792 ------- null} r -t 3.17299 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5593 -a 0 -x {9.0 10.0 2801 ------- null} + -t 3.17299 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5593 -a 0 -x {9.0 10.0 2801 ------- null} h -t 3.17299 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5593 -a 0 -x {9.0 10.0 2801 ------- null} r -t 3.17309 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5579 -a 0 -x {9.0 10.0 2794 ------- null} + -t 3.17309 -s 10 -d 7 -p ack -e 40 -c 0 -i 5598 -a 0 -x {10.0 9.0 2794 ------- null} - -t 3.17309 -s 10 -d 7 -p ack -e 40 -c 0 -i 5598 -a 0 -x {10.0 9.0 2794 ------- null} h -t 3.17309 -s 10 -d 7 -p ack -e 40 -c 0 -i 5598 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.1735 -s 0 -d 9 -p ack -e 40 -c 0 -i 5588 -a 0 -x {10.0 9.0 2789 ------- null} + -t 3.1735 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5599 -a 0 -x {9.0 10.0 2804 ------- null} - -t 3.1735 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5599 -a 0 -x {9.0 10.0 2804 ------- null} h -t 3.1735 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5599 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.17355 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5585 -a 0 -x {9.0 10.0 2797 ------- null} - -t 3.17355 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5585 -a 0 -x {9.0 10.0 2797 ------- null} h -t 3.17355 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5585 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.17365 -s 0 -d 9 -p ack -e 40 -c 0 -i 5592 -a 0 -x {10.0 9.0 2791 ------- null} - -t 3.17365 -s 0 -d 9 -p ack -e 40 -c 0 -i 5592 -a 0 -x {10.0 9.0 2791 ------- null} h -t 3.17365 -s 0 -d 9 -p ack -e 40 -c 0 -i 5592 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.17403 -s 10 -d 7 -p ack -e 40 -c 0 -i 5596 -a 0 -x {10.0 9.0 2793 ------- null} + -t 3.17403 -s 7 -d 0 -p ack -e 40 -c 0 -i 5596 -a 0 -x {10.0 9.0 2793 ------- null} h -t 3.17403 -s 7 -d 8 -p ack -e 40 -c 0 -i 5596 -a 0 -x {10.0 9.0 2793 ------- null} r -t 3.17413 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5595 -a 0 -x {9.0 10.0 2802 ------- null} + -t 3.17413 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5595 -a 0 -x {9.0 10.0 2802 ------- null} h -t 3.17413 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5595 -a 0 -x {9.0 10.0 2802 ------- null} r -t 3.17418 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5581 -a 0 -x {9.0 10.0 2795 ------- null} + -t 3.17418 -s 10 -d 7 -p ack -e 40 -c 0 -i 5600 -a 0 -x {10.0 9.0 2795 ------- null} - -t 3.17418 -s 10 -d 7 -p ack -e 40 -c 0 -i 5600 -a 0 -x {10.0 9.0 2795 ------- null} h -t 3.17418 -s 10 -d 7 -p ack -e 40 -c 0 -i 5600 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.17464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5587 -a 0 -x {9.0 10.0 2798 ------- null} - -t 3.17464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5587 -a 0 -x {9.0 10.0 2798 ------- null} h -t 3.17464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5587 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.17475 -s 0 -d 9 -p ack -e 40 -c 0 -i 5590 -a 0 -x {10.0 9.0 2790 ------- null} + -t 3.17475 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5601 -a 0 -x {9.0 10.0 2805 ------- null} - -t 3.17475 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5601 -a 0 -x {9.0 10.0 2805 ------- null} h -t 3.17475 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5601 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.17477 -s 0 -d 9 -p ack -e 40 -c 0 -i 5594 -a 0 -x {10.0 9.0 2792 ------- null} - -t 3.17477 -s 0 -d 9 -p ack -e 40 -c 0 -i 5594 -a 0 -x {10.0 9.0 2792 ------- null} h -t 3.17477 -s 0 -d 9 -p ack -e 40 -c 0 -i 5594 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.17512 -s 10 -d 7 -p ack -e 40 -c 0 -i 5598 -a 0 -x {10.0 9.0 2794 ------- null} + -t 3.17512 -s 7 -d 0 -p ack -e 40 -c 0 -i 5598 -a 0 -x {10.0 9.0 2794 ------- null} h -t 3.17512 -s 7 -d 8 -p ack -e 40 -c 0 -i 5598 -a 0 -x {10.0 9.0 2794 ------- null} r -t 3.17526 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5583 -a 0 -x {9.0 10.0 2796 ------- null} + -t 3.17526 -s 10 -d 7 -p ack -e 40 -c 0 -i 5602 -a 0 -x {10.0 9.0 2796 ------- null} - -t 3.17526 -s 10 -d 7 -p ack -e 40 -c 0 -i 5602 -a 0 -x {10.0 9.0 2796 ------- null} h -t 3.17526 -s 10 -d 7 -p ack -e 40 -c 0 -i 5602 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.17534 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5597 -a 0 -x {9.0 10.0 2803 ------- null} + -t 3.17534 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5597 -a 0 -x {9.0 10.0 2803 ------- null} h -t 3.17534 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5597 -a 0 -x {9.0 10.0 2803 ------- null} r -t 3.17568 -s 0 -d 9 -p ack -e 40 -c 0 -i 5592 -a 0 -x {10.0 9.0 2791 ------- null} + -t 3.17568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5603 -a 0 -x {9.0 10.0 2806 ------- null} - -t 3.17568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5603 -a 0 -x {9.0 10.0 2806 ------- null} h -t 3.17568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5603 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.17573 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5589 -a 0 -x {9.0 10.0 2799 ------- null} - -t 3.17573 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5589 -a 0 -x {9.0 10.0 2799 ------- null} h -t 3.17573 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5589 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.17586 -s 0 -d 9 -p ack -e 40 -c 0 -i 5596 -a 0 -x {10.0 9.0 2793 ------- null} - -t 3.17586 -s 0 -d 9 -p ack -e 40 -c 0 -i 5596 -a 0 -x {10.0 9.0 2793 ------- null} h -t 3.17586 -s 0 -d 9 -p ack -e 40 -c 0 -i 5596 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.17621 -s 10 -d 7 -p ack -e 40 -c 0 -i 5600 -a 0 -x {10.0 9.0 2795 ------- null} + -t 3.17621 -s 7 -d 0 -p ack -e 40 -c 0 -i 5600 -a 0 -x {10.0 9.0 2795 ------- null} h -t 3.17621 -s 7 -d 8 -p ack -e 40 -c 0 -i 5600 -a 0 -x {10.0 9.0 2795 ------- null} r -t 3.1763 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5599 -a 0 -x {9.0 10.0 2804 ------- null} + -t 3.1763 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5599 -a 0 -x {9.0 10.0 2804 ------- null} h -t 3.1763 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5599 -a 0 -x {9.0 10.0 2804 ------- null} r -t 3.17635 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5585 -a 0 -x {9.0 10.0 2797 ------- null} + -t 3.17635 -s 10 -d 7 -p ack -e 40 -c 0 -i 5604 -a 0 -x {10.0 9.0 2797 ------- null} - -t 3.17635 -s 10 -d 7 -p ack -e 40 -c 0 -i 5604 -a 0 -x {10.0 9.0 2797 ------- null} h -t 3.17635 -s 10 -d 7 -p ack -e 40 -c 0 -i 5604 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.1768 -s 0 -d 9 -p ack -e 40 -c 0 -i 5594 -a 0 -x {10.0 9.0 2792 ------- null} + -t 3.1768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5605 -a 0 -x {9.0 10.0 2807 ------- null} - -t 3.1768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5605 -a 0 -x {9.0 10.0 2807 ------- null} h -t 3.1768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5605 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.17682 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5591 -a 0 -x {9.0 10.0 2800 ------- null} - -t 3.17682 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5591 -a 0 -x {9.0 10.0 2800 ------- null} h -t 3.17682 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5591 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.17698 -s 0 -d 9 -p ack -e 40 -c 0 -i 5598 -a 0 -x {10.0 9.0 2794 ------- null} - -t 3.17698 -s 0 -d 9 -p ack -e 40 -c 0 -i 5598 -a 0 -x {10.0 9.0 2794 ------- null} h -t 3.17698 -s 0 -d 9 -p ack -e 40 -c 0 -i 5598 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.1773 -s 10 -d 7 -p ack -e 40 -c 0 -i 5602 -a 0 -x {10.0 9.0 2796 ------- null} + -t 3.1773 -s 7 -d 0 -p ack -e 40 -c 0 -i 5602 -a 0 -x {10.0 9.0 2796 ------- null} h -t 3.1773 -s 7 -d 8 -p ack -e 40 -c 0 -i 5602 -a 0 -x {10.0 9.0 2796 ------- null} r -t 3.17744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5587 -a 0 -x {9.0 10.0 2798 ------- null} + -t 3.17744 -s 10 -d 7 -p ack -e 40 -c 0 -i 5606 -a 0 -x {10.0 9.0 2798 ------- null} - -t 3.17744 -s 10 -d 7 -p ack -e 40 -c 0 -i 5606 -a 0 -x {10.0 9.0 2798 ------- null} h -t 3.17744 -s 10 -d 7 -p ack -e 40 -c 0 -i 5606 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.17755 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5601 -a 0 -x {9.0 10.0 2805 ------- null} + -t 3.17755 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5601 -a 0 -x {9.0 10.0 2805 ------- null} h -t 3.17755 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5601 -a 0 -x {9.0 10.0 2805 ------- null} r -t 3.17789 -s 0 -d 9 -p ack -e 40 -c 0 -i 5596 -a 0 -x {10.0 9.0 2793 ------- null} + -t 3.17789 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5607 -a 0 -x {9.0 10.0 2808 ------- null} - -t 3.17789 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5607 -a 0 -x {9.0 10.0 2808 ------- null} h -t 3.17789 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5607 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.1779 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5593 -a 0 -x {9.0 10.0 2801 ------- null} - -t 3.1779 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5593 -a 0 -x {9.0 10.0 2801 ------- null} h -t 3.1779 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5593 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.178 -s 0 -d 9 -p ack -e 40 -c 0 -i 5600 -a 0 -x {10.0 9.0 2795 ------- null} - -t 3.178 -s 0 -d 9 -p ack -e 40 -c 0 -i 5600 -a 0 -x {10.0 9.0 2795 ------- null} h -t 3.178 -s 0 -d 9 -p ack -e 40 -c 0 -i 5600 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.17838 -s 10 -d 7 -p ack -e 40 -c 0 -i 5604 -a 0 -x {10.0 9.0 2797 ------- null} + -t 3.17838 -s 7 -d 0 -p ack -e 40 -c 0 -i 5604 -a 0 -x {10.0 9.0 2797 ------- null} h -t 3.17838 -s 7 -d 8 -p ack -e 40 -c 0 -i 5604 -a 0 -x {10.0 9.0 2797 ------- null} r -t 3.17848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5603 -a 0 -x {9.0 10.0 2806 ------- null} + -t 3.17848 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5603 -a 0 -x {9.0 10.0 2806 ------- null} h -t 3.17848 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5603 -a 0 -x {9.0 10.0 2806 ------- null} r -t 3.17853 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5589 -a 0 -x {9.0 10.0 2799 ------- null} + -t 3.17853 -s 10 -d 7 -p ack -e 40 -c 0 -i 5608 -a 0 -x {10.0 9.0 2799 ------- null} - -t 3.17853 -s 10 -d 7 -p ack -e 40 -c 0 -i 5608 -a 0 -x {10.0 9.0 2799 ------- null} h -t 3.17853 -s 10 -d 7 -p ack -e 40 -c 0 -i 5608 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.17899 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5595 -a 0 -x {9.0 10.0 2802 ------- null} - -t 3.17899 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5595 -a 0 -x {9.0 10.0 2802 ------- null} h -t 3.17899 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5595 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.17901 -s 0 -d 9 -p ack -e 40 -c 0 -i 5598 -a 0 -x {10.0 9.0 2794 ------- null} + -t 3.17901 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5609 -a 0 -x {9.0 10.0 2809 ------- null} - -t 3.17901 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5609 -a 0 -x {9.0 10.0 2809 ------- null} h -t 3.17901 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5609 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.17922 -s 0 -d 9 -p ack -e 40 -c 0 -i 5602 -a 0 -x {10.0 9.0 2796 ------- null} - -t 3.17922 -s 0 -d 9 -p ack -e 40 -c 0 -i 5602 -a 0 -x {10.0 9.0 2796 ------- null} h -t 3.17922 -s 0 -d 9 -p ack -e 40 -c 0 -i 5602 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.17947 -s 10 -d 7 -p ack -e 40 -c 0 -i 5606 -a 0 -x {10.0 9.0 2798 ------- null} + -t 3.17947 -s 7 -d 0 -p ack -e 40 -c 0 -i 5606 -a 0 -x {10.0 9.0 2798 ------- null} h -t 3.17947 -s 7 -d 8 -p ack -e 40 -c 0 -i 5606 -a 0 -x {10.0 9.0 2798 ------- null} r -t 3.1796 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5605 -a 0 -x {9.0 10.0 2807 ------- null} + -t 3.1796 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5605 -a 0 -x {9.0 10.0 2807 ------- null} h -t 3.1796 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5605 -a 0 -x {9.0 10.0 2807 ------- null} r -t 3.17962 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5591 -a 0 -x {9.0 10.0 2800 ------- null} + -t 3.17962 -s 10 -d 7 -p ack -e 40 -c 0 -i 5610 -a 0 -x {10.0 9.0 2800 ------- null} - -t 3.17962 -s 10 -d 7 -p ack -e 40 -c 0 -i 5610 -a 0 -x {10.0 9.0 2800 ------- null} h -t 3.17962 -s 10 -d 7 -p ack -e 40 -c 0 -i 5610 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.18003 -s 0 -d 9 -p ack -e 40 -c 0 -i 5600 -a 0 -x {10.0 9.0 2795 ------- null} + -t 3.18003 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5611 -a 0 -x {9.0 10.0 2810 ------- null} - -t 3.18003 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5611 -a 0 -x {9.0 10.0 2810 ------- null} h -t 3.18003 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5611 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.18008 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5597 -a 0 -x {9.0 10.0 2803 ------- null} - -t 3.18008 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5597 -a 0 -x {9.0 10.0 2803 ------- null} h -t 3.18008 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5597 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.18038 -s 0 -d 9 -p ack -e 40 -c 0 -i 5604 -a 0 -x {10.0 9.0 2797 ------- null} - -t 3.18038 -s 0 -d 9 -p ack -e 40 -c 0 -i 5604 -a 0 -x {10.0 9.0 2797 ------- null} h -t 3.18038 -s 0 -d 9 -p ack -e 40 -c 0 -i 5604 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.18056 -s 10 -d 7 -p ack -e 40 -c 0 -i 5608 -a 0 -x {10.0 9.0 2799 ------- null} + -t 3.18056 -s 7 -d 0 -p ack -e 40 -c 0 -i 5608 -a 0 -x {10.0 9.0 2799 ------- null} h -t 3.18056 -s 7 -d 8 -p ack -e 40 -c 0 -i 5608 -a 0 -x {10.0 9.0 2799 ------- null} r -t 3.18069 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5607 -a 0 -x {9.0 10.0 2808 ------- null} + -t 3.18069 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5607 -a 0 -x {9.0 10.0 2808 ------- null} h -t 3.18069 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5607 -a 0 -x {9.0 10.0 2808 ------- null} r -t 3.1807 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5593 -a 0 -x {9.0 10.0 2801 ------- null} + -t 3.1807 -s 10 -d 7 -p ack -e 40 -c 0 -i 5612 -a 0 -x {10.0 9.0 2801 ------- null} - -t 3.1807 -s 10 -d 7 -p ack -e 40 -c 0 -i 5612 -a 0 -x {10.0 9.0 2801 ------- null} h -t 3.1807 -s 10 -d 7 -p ack -e 40 -c 0 -i 5612 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.18125 -s 0 -d 9 -p ack -e 40 -c 0 -i 5602 -a 0 -x {10.0 9.0 2796 ------- null} + -t 3.18125 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5613 -a 0 -x {9.0 10.0 2811 ------- null} - -t 3.18125 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5613 -a 0 -x {9.0 10.0 2811 ------- null} h -t 3.18125 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5613 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.18144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5599 -a 0 -x {9.0 10.0 2804 ------- null} - -t 3.18144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5599 -a 0 -x {9.0 10.0 2804 ------- null} h -t 3.18144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5599 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.1816 -s 0 -d 9 -p ack -e 40 -c 0 -i 5606 -a 0 -x {10.0 9.0 2798 ------- null} - -t 3.1816 -s 0 -d 9 -p ack -e 40 -c 0 -i 5606 -a 0 -x {10.0 9.0 2798 ------- null} h -t 3.1816 -s 0 -d 9 -p ack -e 40 -c 0 -i 5606 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.18165 -s 10 -d 7 -p ack -e 40 -c 0 -i 5610 -a 0 -x {10.0 9.0 2800 ------- null} + -t 3.18165 -s 7 -d 0 -p ack -e 40 -c 0 -i 5610 -a 0 -x {10.0 9.0 2800 ------- null} h -t 3.18165 -s 7 -d 8 -p ack -e 40 -c 0 -i 5610 -a 0 -x {10.0 9.0 2800 ------- null} r -t 3.18179 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5595 -a 0 -x {9.0 10.0 2802 ------- null} + -t 3.18179 -s 10 -d 7 -p ack -e 40 -c 0 -i 5614 -a 0 -x {10.0 9.0 2802 ------- null} - -t 3.18179 -s 10 -d 7 -p ack -e 40 -c 0 -i 5614 -a 0 -x {10.0 9.0 2802 ------- null} h -t 3.18179 -s 10 -d 7 -p ack -e 40 -c 0 -i 5614 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.18181 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5609 -a 0 -x {9.0 10.0 2809 ------- null} + -t 3.18181 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5609 -a 0 -x {9.0 10.0 2809 ------- null} h -t 3.18181 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5609 -a 0 -x {9.0 10.0 2809 ------- null} r -t 3.18242 -s 0 -d 9 -p ack -e 40 -c 0 -i 5604 -a 0 -x {10.0 9.0 2797 ------- null} + -t 3.18242 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5615 -a 0 -x {9.0 10.0 2812 ------- null} - -t 3.18242 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5615 -a 0 -x {9.0 10.0 2812 ------- null} h -t 3.18242 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5615 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.18253 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5601 -a 0 -x {9.0 10.0 2805 ------- null} - -t 3.18253 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5601 -a 0 -x {9.0 10.0 2805 ------- null} h -t 3.18253 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5601 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.18264 -s 0 -d 9 -p ack -e 40 -c 0 -i 5608 -a 0 -x {10.0 9.0 2799 ------- null} - -t 3.18264 -s 0 -d 9 -p ack -e 40 -c 0 -i 5608 -a 0 -x {10.0 9.0 2799 ------- null} h -t 3.18264 -s 0 -d 9 -p ack -e 40 -c 0 -i 5608 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.18274 -s 10 -d 7 -p ack -e 40 -c 0 -i 5612 -a 0 -x {10.0 9.0 2801 ------- null} + -t 3.18274 -s 7 -d 0 -p ack -e 40 -c 0 -i 5612 -a 0 -x {10.0 9.0 2801 ------- null} h -t 3.18274 -s 7 -d 8 -p ack -e 40 -c 0 -i 5612 -a 0 -x {10.0 9.0 2801 ------- null} r -t 3.18283 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5611 -a 0 -x {9.0 10.0 2810 ------- null} + -t 3.18283 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5611 -a 0 -x {9.0 10.0 2810 ------- null} h -t 3.18283 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5611 -a 0 -x {9.0 10.0 2810 ------- null} r -t 3.18288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5597 -a 0 -x {9.0 10.0 2803 ------- null} + -t 3.18288 -s 10 -d 7 -p ack -e 40 -c 0 -i 5616 -a 0 -x {10.0 9.0 2803 ------- null} - -t 3.18288 -s 10 -d 7 -p ack -e 40 -c 0 -i 5616 -a 0 -x {10.0 9.0 2803 ------- null} h -t 3.18288 -s 10 -d 7 -p ack -e 40 -c 0 -i 5616 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.18362 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5603 -a 0 -x {9.0 10.0 2806 ------- null} - -t 3.18362 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5603 -a 0 -x {9.0 10.0 2806 ------- null} h -t 3.18362 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5603 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.18363 -s 0 -d 9 -p ack -e 40 -c 0 -i 5606 -a 0 -x {10.0 9.0 2798 ------- null} + -t 3.18363 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5617 -a 0 -x {9.0 10.0 2813 ------- null} - -t 3.18363 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5617 -a 0 -x {9.0 10.0 2813 ------- null} h -t 3.18363 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5617 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.18381 -s 0 -d 9 -p ack -e 40 -c 0 -i 5610 -a 0 -x {10.0 9.0 2800 ------- null} - -t 3.18381 -s 0 -d 9 -p ack -e 40 -c 0 -i 5610 -a 0 -x {10.0 9.0 2800 ------- null} h -t 3.18381 -s 0 -d 9 -p ack -e 40 -c 0 -i 5610 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.18382 -s 10 -d 7 -p ack -e 40 -c 0 -i 5614 -a 0 -x {10.0 9.0 2802 ------- null} + -t 3.18382 -s 7 -d 0 -p ack -e 40 -c 0 -i 5614 -a 0 -x {10.0 9.0 2802 ------- null} h -t 3.18382 -s 7 -d 8 -p ack -e 40 -c 0 -i 5614 -a 0 -x {10.0 9.0 2802 ------- null} r -t 3.18405 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5613 -a 0 -x {9.0 10.0 2811 ------- null} + -t 3.18405 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5613 -a 0 -x {9.0 10.0 2811 ------- null} h -t 3.18405 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5613 -a 0 -x {9.0 10.0 2811 ------- null} r -t 3.18424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5599 -a 0 -x {9.0 10.0 2804 ------- null} + -t 3.18424 -s 10 -d 7 -p ack -e 40 -c 0 -i 5618 -a 0 -x {10.0 9.0 2804 ------- null} - -t 3.18424 -s 10 -d 7 -p ack -e 40 -c 0 -i 5618 -a 0 -x {10.0 9.0 2804 ------- null} h -t 3.18424 -s 10 -d 7 -p ack -e 40 -c 0 -i 5618 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.18467 -s 0 -d 9 -p ack -e 40 -c 0 -i 5608 -a 0 -x {10.0 9.0 2799 ------- null} + -t 3.18467 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5619 -a 0 -x {9.0 10.0 2814 ------- null} - -t 3.18467 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5619 -a 0 -x {9.0 10.0 2814 ------- null} h -t 3.18467 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5619 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.1847 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5605 -a 0 -x {9.0 10.0 2807 ------- null} - -t 3.1847 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5605 -a 0 -x {9.0 10.0 2807 ------- null} h -t 3.1847 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5605 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.1849 -s 0 -d 9 -p ack -e 40 -c 0 -i 5612 -a 0 -x {10.0 9.0 2801 ------- null} - -t 3.1849 -s 0 -d 9 -p ack -e 40 -c 0 -i 5612 -a 0 -x {10.0 9.0 2801 ------- null} h -t 3.1849 -s 0 -d 9 -p ack -e 40 -c 0 -i 5612 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.18491 -s 10 -d 7 -p ack -e 40 -c 0 -i 5616 -a 0 -x {10.0 9.0 2803 ------- null} + -t 3.18491 -s 7 -d 0 -p ack -e 40 -c 0 -i 5616 -a 0 -x {10.0 9.0 2803 ------- null} h -t 3.18491 -s 7 -d 8 -p ack -e 40 -c 0 -i 5616 -a 0 -x {10.0 9.0 2803 ------- null} r -t 3.18522 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5615 -a 0 -x {9.0 10.0 2812 ------- null} + -t 3.18522 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5615 -a 0 -x {9.0 10.0 2812 ------- null} h -t 3.18522 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5615 -a 0 -x {9.0 10.0 2812 ------- null} r -t 3.18533 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5601 -a 0 -x {9.0 10.0 2805 ------- null} + -t 3.18533 -s 10 -d 7 -p ack -e 40 -c 0 -i 5620 -a 0 -x {10.0 9.0 2805 ------- null} - -t 3.18533 -s 10 -d 7 -p ack -e 40 -c 0 -i 5620 -a 0 -x {10.0 9.0 2805 ------- null} h -t 3.18533 -s 10 -d 7 -p ack -e 40 -c 0 -i 5620 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.18579 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5607 -a 0 -x {9.0 10.0 2808 ------- null} - -t 3.18579 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5607 -a 0 -x {9.0 10.0 2808 ------- null} h -t 3.18579 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5607 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.18584 -s 0 -d 9 -p ack -e 40 -c 0 -i 5610 -a 0 -x {10.0 9.0 2800 ------- null} + -t 3.18584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5621 -a 0 -x {9.0 10.0 2815 ------- null} - -t 3.18584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5621 -a 0 -x {9.0 10.0 2815 ------- null} h -t 3.18584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5621 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.18602 -s 0 -d 9 -p ack -e 40 -c 0 -i 5614 -a 0 -x {10.0 9.0 2802 ------- null} - -t 3.18602 -s 0 -d 9 -p ack -e 40 -c 0 -i 5614 -a 0 -x {10.0 9.0 2802 ------- null} h -t 3.18602 -s 0 -d 9 -p ack -e 40 -c 0 -i 5614 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.18627 -s 10 -d 7 -p ack -e 40 -c 0 -i 5618 -a 0 -x {10.0 9.0 2804 ------- null} + -t 3.18627 -s 7 -d 0 -p ack -e 40 -c 0 -i 5618 -a 0 -x {10.0 9.0 2804 ------- null} h -t 3.18627 -s 7 -d 8 -p ack -e 40 -c 0 -i 5618 -a 0 -x {10.0 9.0 2804 ------- null} r -t 3.18642 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5603 -a 0 -x {9.0 10.0 2806 ------- null} + -t 3.18642 -s 10 -d 7 -p ack -e 40 -c 0 -i 5622 -a 0 -x {10.0 9.0 2806 ------- null} - -t 3.18642 -s 10 -d 7 -p ack -e 40 -c 0 -i 5622 -a 0 -x {10.0 9.0 2806 ------- null} h -t 3.18642 -s 10 -d 7 -p ack -e 40 -c 0 -i 5622 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.18643 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5617 -a 0 -x {9.0 10.0 2813 ------- null} + -t 3.18643 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5617 -a 0 -x {9.0 10.0 2813 ------- null} h -t 3.18643 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5617 -a 0 -x {9.0 10.0 2813 ------- null} + -t 3.18688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5609 -a 0 -x {9.0 10.0 2809 ------- null} - -t 3.18688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5609 -a 0 -x {9.0 10.0 2809 ------- null} h -t 3.18688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5609 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.18693 -s 0 -d 9 -p ack -e 40 -c 0 -i 5612 -a 0 -x {10.0 9.0 2801 ------- null} + -t 3.18693 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5623 -a 0 -x {9.0 10.0 2816 ------- null} - -t 3.18693 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5623 -a 0 -x {9.0 10.0 2816 ------- null} h -t 3.18693 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5623 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.18696 -s 0 -d 9 -p ack -e 40 -c 0 -i 5616 -a 0 -x {10.0 9.0 2803 ------- null} - -t 3.18696 -s 0 -d 9 -p ack -e 40 -c 0 -i 5616 -a 0 -x {10.0 9.0 2803 ------- null} h -t 3.18696 -s 0 -d 9 -p ack -e 40 -c 0 -i 5616 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.18736 -s 10 -d 7 -p ack -e 40 -c 0 -i 5620 -a 0 -x {10.0 9.0 2805 ------- null} + -t 3.18736 -s 7 -d 0 -p ack -e 40 -c 0 -i 5620 -a 0 -x {10.0 9.0 2805 ------- null} h -t 3.18736 -s 7 -d 8 -p ack -e 40 -c 0 -i 5620 -a 0 -x {10.0 9.0 2805 ------- null} r -t 3.18747 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5619 -a 0 -x {9.0 10.0 2814 ------- null} + -t 3.18747 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5619 -a 0 -x {9.0 10.0 2814 ------- null} h -t 3.18747 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5619 -a 0 -x {9.0 10.0 2814 ------- null} r -t 3.1875 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5605 -a 0 -x {9.0 10.0 2807 ------- null} + -t 3.1875 -s 10 -d 7 -p ack -e 40 -c 0 -i 5624 -a 0 -x {10.0 9.0 2807 ------- null} - -t 3.1875 -s 10 -d 7 -p ack -e 40 -c 0 -i 5624 -a 0 -x {10.0 9.0 2807 ------- null} h -t 3.1875 -s 10 -d 7 -p ack -e 40 -c 0 -i 5624 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.18797 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5611 -a 0 -x {9.0 10.0 2810 ------- null} - -t 3.18797 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5611 -a 0 -x {9.0 10.0 2810 ------- null} h -t 3.18797 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5611 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.18805 -s 0 -d 9 -p ack -e 40 -c 0 -i 5614 -a 0 -x {10.0 9.0 2802 ------- null} + -t 3.18805 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5625 -a 0 -x {9.0 10.0 2817 ------- null} - -t 3.18805 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5625 -a 0 -x {9.0 10.0 2817 ------- null} h -t 3.18805 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5625 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.18808 -s 0 -d 9 -p ack -e 40 -c 0 -i 5618 -a 0 -x {10.0 9.0 2804 ------- null} - -t 3.18808 -s 0 -d 9 -p ack -e 40 -c 0 -i 5618 -a 0 -x {10.0 9.0 2804 ------- null} h -t 3.18808 -s 0 -d 9 -p ack -e 40 -c 0 -i 5618 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.18845 -s 10 -d 7 -p ack -e 40 -c 0 -i 5622 -a 0 -x {10.0 9.0 2806 ------- null} + -t 3.18845 -s 7 -d 0 -p ack -e 40 -c 0 -i 5622 -a 0 -x {10.0 9.0 2806 ------- null} h -t 3.18845 -s 7 -d 8 -p ack -e 40 -c 0 -i 5622 -a 0 -x {10.0 9.0 2806 ------- null} r -t 3.18859 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5607 -a 0 -x {9.0 10.0 2808 ------- null} + -t 3.18859 -s 10 -d 7 -p ack -e 40 -c 0 -i 5626 -a 0 -x {10.0 9.0 2808 ------- null} - -t 3.18859 -s 10 -d 7 -p ack -e 40 -c 0 -i 5626 -a 0 -x {10.0 9.0 2808 ------- null} h -t 3.18859 -s 10 -d 7 -p ack -e 40 -c 0 -i 5626 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.18864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5621 -a 0 -x {9.0 10.0 2815 ------- null} + -t 3.18864 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5621 -a 0 -x {9.0 10.0 2815 ------- null} h -t 3.18864 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5621 -a 0 -x {9.0 10.0 2815 ------- null} r -t 3.18899 -s 0 -d 9 -p ack -e 40 -c 0 -i 5616 -a 0 -x {10.0 9.0 2803 ------- null} + -t 3.18899 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5627 -a 0 -x {9.0 10.0 2818 ------- null} - -t 3.18899 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5627 -a 0 -x {9.0 10.0 2818 ------- null} h -t 3.18899 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5627 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.18906 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5613 -a 0 -x {9.0 10.0 2811 ------- null} - -t 3.18906 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5613 -a 0 -x {9.0 10.0 2811 ------- null} h -t 3.18906 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5613 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.1893 -s 0 -d 9 -p ack -e 40 -c 0 -i 5620 -a 0 -x {10.0 9.0 2805 ------- null} - -t 3.1893 -s 0 -d 9 -p ack -e 40 -c 0 -i 5620 -a 0 -x {10.0 9.0 2805 ------- null} h -t 3.1893 -s 0 -d 9 -p ack -e 40 -c 0 -i 5620 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.18954 -s 10 -d 7 -p ack -e 40 -c 0 -i 5624 -a 0 -x {10.0 9.0 2807 ------- null} + -t 3.18954 -s 7 -d 0 -p ack -e 40 -c 0 -i 5624 -a 0 -x {10.0 9.0 2807 ------- null} h -t 3.18954 -s 7 -d 8 -p ack -e 40 -c 0 -i 5624 -a 0 -x {10.0 9.0 2807 ------- null} r -t 3.18968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5609 -a 0 -x {9.0 10.0 2809 ------- null} + -t 3.18968 -s 10 -d 7 -p ack -e 40 -c 0 -i 5628 -a 0 -x {10.0 9.0 2809 ------- null} - -t 3.18968 -s 10 -d 7 -p ack -e 40 -c 0 -i 5628 -a 0 -x {10.0 9.0 2809 ------- null} h -t 3.18968 -s 10 -d 7 -p ack -e 40 -c 0 -i 5628 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.18973 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5623 -a 0 -x {9.0 10.0 2816 ------- null} + -t 3.18973 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5623 -a 0 -x {9.0 10.0 2816 ------- null} h -t 3.18973 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5623 -a 0 -x {9.0 10.0 2816 ------- null} r -t 3.19011 -s 0 -d 9 -p ack -e 40 -c 0 -i 5618 -a 0 -x {10.0 9.0 2804 ------- null} + -t 3.19011 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5629 -a 0 -x {9.0 10.0 2819 ------- null} - -t 3.19011 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5629 -a 0 -x {9.0 10.0 2819 ------- null} h -t 3.19011 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5629 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.19014 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5615 -a 0 -x {9.0 10.0 2812 ------- null} - -t 3.19014 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5615 -a 0 -x {9.0 10.0 2812 ------- null} h -t 3.19014 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5615 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.19038 -s 0 -d 9 -p ack -e 40 -c 0 -i 5622 -a 0 -x {10.0 9.0 2806 ------- null} - -t 3.19038 -s 0 -d 9 -p ack -e 40 -c 0 -i 5622 -a 0 -x {10.0 9.0 2806 ------- null} h -t 3.19038 -s 0 -d 9 -p ack -e 40 -c 0 -i 5622 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.19062 -s 10 -d 7 -p ack -e 40 -c 0 -i 5626 -a 0 -x {10.0 9.0 2808 ------- null} + -t 3.19062 -s 7 -d 0 -p ack -e 40 -c 0 -i 5626 -a 0 -x {10.0 9.0 2808 ------- null} h -t 3.19062 -s 7 -d 8 -p ack -e 40 -c 0 -i 5626 -a 0 -x {10.0 9.0 2808 ------- null} r -t 3.19077 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5611 -a 0 -x {9.0 10.0 2810 ------- null} + -t 3.19077 -s 10 -d 7 -p ack -e 40 -c 0 -i 5630 -a 0 -x {10.0 9.0 2810 ------- null} - -t 3.19077 -s 10 -d 7 -p ack -e 40 -c 0 -i 5630 -a 0 -x {10.0 9.0 2810 ------- null} h -t 3.19077 -s 10 -d 7 -p ack -e 40 -c 0 -i 5630 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.19085 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5625 -a 0 -x {9.0 10.0 2817 ------- null} + -t 3.19085 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5625 -a 0 -x {9.0 10.0 2817 ------- null} h -t 3.19085 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5625 -a 0 -x {9.0 10.0 2817 ------- null} + -t 3.19123 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5617 -a 0 -x {9.0 10.0 2813 ------- null} - -t 3.19123 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5617 -a 0 -x {9.0 10.0 2813 ------- null} h -t 3.19123 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5617 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.19133 -s 0 -d 9 -p ack -e 40 -c 0 -i 5620 -a 0 -x {10.0 9.0 2805 ------- null} + -t 3.19133 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5631 -a 0 -x {9.0 10.0 2820 ------- null} - -t 3.19133 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5631 -a 0 -x {9.0 10.0 2820 ------- null} h -t 3.19133 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5631 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.19147 -s 0 -d 9 -p ack -e 40 -c 0 -i 5624 -a 0 -x {10.0 9.0 2807 ------- null} - -t 3.19147 -s 0 -d 9 -p ack -e 40 -c 0 -i 5624 -a 0 -x {10.0 9.0 2807 ------- null} h -t 3.19147 -s 0 -d 9 -p ack -e 40 -c 0 -i 5624 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.19171 -s 10 -d 7 -p ack -e 40 -c 0 -i 5628 -a 0 -x {10.0 9.0 2809 ------- null} + -t 3.19171 -s 7 -d 0 -p ack -e 40 -c 0 -i 5628 -a 0 -x {10.0 9.0 2809 ------- null} h -t 3.19171 -s 7 -d 8 -p ack -e 40 -c 0 -i 5628 -a 0 -x {10.0 9.0 2809 ------- null} r -t 3.19179 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5627 -a 0 -x {9.0 10.0 2818 ------- null} + -t 3.19179 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5627 -a 0 -x {9.0 10.0 2818 ------- null} h -t 3.19179 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5627 -a 0 -x {9.0 10.0 2818 ------- null} r -t 3.19186 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5613 -a 0 -x {9.0 10.0 2811 ------- null} + -t 3.19186 -s 10 -d 7 -p ack -e 40 -c 0 -i 5632 -a 0 -x {10.0 9.0 2811 ------- null} - -t 3.19186 -s 10 -d 7 -p ack -e 40 -c 0 -i 5632 -a 0 -x {10.0 9.0 2811 ------- null} h -t 3.19186 -s 10 -d 7 -p ack -e 40 -c 0 -i 5632 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.19232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5619 -a 0 -x {9.0 10.0 2814 ------- null} - -t 3.19232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5619 -a 0 -x {9.0 10.0 2814 ------- null} h -t 3.19232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5619 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.19242 -s 0 -d 9 -p ack -e 40 -c 0 -i 5622 -a 0 -x {10.0 9.0 2806 ------- null} + -t 3.19242 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5633 -a 0 -x {9.0 10.0 2821 ------- null} - -t 3.19242 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5633 -a 0 -x {9.0 10.0 2821 ------- null} h -t 3.19242 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5633 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.19245 -s 0 -d 9 -p ack -e 40 -c 0 -i 5626 -a 0 -x {10.0 9.0 2808 ------- null} - -t 3.19245 -s 0 -d 9 -p ack -e 40 -c 0 -i 5626 -a 0 -x {10.0 9.0 2808 ------- null} h -t 3.19245 -s 0 -d 9 -p ack -e 40 -c 0 -i 5626 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.1928 -s 10 -d 7 -p ack -e 40 -c 0 -i 5630 -a 0 -x {10.0 9.0 2810 ------- null} + -t 3.1928 -s 7 -d 0 -p ack -e 40 -c 0 -i 5630 -a 0 -x {10.0 9.0 2810 ------- null} h -t 3.1928 -s 7 -d 8 -p ack -e 40 -c 0 -i 5630 -a 0 -x {10.0 9.0 2810 ------- null} r -t 3.19291 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5629 -a 0 -x {9.0 10.0 2819 ------- null} + -t 3.19291 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5629 -a 0 -x {9.0 10.0 2819 ------- null} h -t 3.19291 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5629 -a 0 -x {9.0 10.0 2819 ------- null} r -t 3.19294 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5615 -a 0 -x {9.0 10.0 2812 ------- null} + -t 3.19294 -s 10 -d 7 -p ack -e 40 -c 0 -i 5634 -a 0 -x {10.0 9.0 2812 ------- null} - -t 3.19294 -s 10 -d 7 -p ack -e 40 -c 0 -i 5634 -a 0 -x {10.0 9.0 2812 ------- null} h -t 3.19294 -s 10 -d 7 -p ack -e 40 -c 0 -i 5634 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.19341 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5621 -a 0 -x {9.0 10.0 2815 ------- null} - -t 3.19341 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5621 -a 0 -x {9.0 10.0 2815 ------- null} h -t 3.19341 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5621 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.1935 -s 0 -d 9 -p ack -e 40 -c 0 -i 5624 -a 0 -x {10.0 9.0 2807 ------- null} + -t 3.1935 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5635 -a 0 -x {9.0 10.0 2822 ------- null} - -t 3.1935 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5635 -a 0 -x {9.0 10.0 2822 ------- null} h -t 3.1935 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5635 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.19362 -s 0 -d 9 -p ack -e 40 -c 0 -i 5628 -a 0 -x {10.0 9.0 2809 ------- null} - -t 3.19362 -s 0 -d 9 -p ack -e 40 -c 0 -i 5628 -a 0 -x {10.0 9.0 2809 ------- null} h -t 3.19362 -s 0 -d 9 -p ack -e 40 -c 0 -i 5628 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.19389 -s 10 -d 7 -p ack -e 40 -c 0 -i 5632 -a 0 -x {10.0 9.0 2811 ------- null} + -t 3.19389 -s 7 -d 0 -p ack -e 40 -c 0 -i 5632 -a 0 -x {10.0 9.0 2811 ------- null} h -t 3.19389 -s 7 -d 8 -p ack -e 40 -c 0 -i 5632 -a 0 -x {10.0 9.0 2811 ------- null} r -t 3.19403 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5617 -a 0 -x {9.0 10.0 2813 ------- null} + -t 3.19403 -s 10 -d 7 -p ack -e 40 -c 0 -i 5636 -a 0 -x {10.0 9.0 2813 ------- null} - -t 3.19403 -s 10 -d 7 -p ack -e 40 -c 0 -i 5636 -a 0 -x {10.0 9.0 2813 ------- null} h -t 3.19403 -s 10 -d 7 -p ack -e 40 -c 0 -i 5636 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.19413 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5631 -a 0 -x {9.0 10.0 2820 ------- null} + -t 3.19413 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5631 -a 0 -x {9.0 10.0 2820 ------- null} h -t 3.19413 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5631 -a 0 -x {9.0 10.0 2820 ------- null} r -t 3.19448 -s 0 -d 9 -p ack -e 40 -c 0 -i 5626 -a 0 -x {10.0 9.0 2808 ------- null} + -t 3.19448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5637 -a 0 -x {9.0 10.0 2823 ------- null} - -t 3.19448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5637 -a 0 -x {9.0 10.0 2823 ------- null} h -t 3.19448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5637 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.1945 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5623 -a 0 -x {9.0 10.0 2816 ------- null} - -t 3.1945 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5623 -a 0 -x {9.0 10.0 2816 ------- null} h -t 3.1945 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5623 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.19478 -s 0 -d 9 -p ack -e 40 -c 0 -i 5630 -a 0 -x {10.0 9.0 2810 ------- null} - -t 3.19478 -s 0 -d 9 -p ack -e 40 -c 0 -i 5630 -a 0 -x {10.0 9.0 2810 ------- null} h -t 3.19478 -s 0 -d 9 -p ack -e 40 -c 0 -i 5630 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.19498 -s 10 -d 7 -p ack -e 40 -c 0 -i 5634 -a 0 -x {10.0 9.0 2812 ------- null} + -t 3.19498 -s 7 -d 0 -p ack -e 40 -c 0 -i 5634 -a 0 -x {10.0 9.0 2812 ------- null} h -t 3.19498 -s 7 -d 8 -p ack -e 40 -c 0 -i 5634 -a 0 -x {10.0 9.0 2812 ------- null} r -t 3.19512 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5619 -a 0 -x {9.0 10.0 2814 ------- null} + -t 3.19512 -s 10 -d 7 -p ack -e 40 -c 0 -i 5638 -a 0 -x {10.0 9.0 2814 ------- null} - -t 3.19512 -s 10 -d 7 -p ack -e 40 -c 0 -i 5638 -a 0 -x {10.0 9.0 2814 ------- null} h -t 3.19512 -s 10 -d 7 -p ack -e 40 -c 0 -i 5638 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.19522 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5633 -a 0 -x {9.0 10.0 2821 ------- null} + -t 3.19522 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5633 -a 0 -x {9.0 10.0 2821 ------- null} h -t 3.19522 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5633 -a 0 -x {9.0 10.0 2821 ------- null} r -t 3.19565 -s 0 -d 9 -p ack -e 40 -c 0 -i 5628 -a 0 -x {10.0 9.0 2809 ------- null} + -t 3.19565 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5639 -a 0 -x {9.0 10.0 2824 ------- null} - -t 3.19565 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5639 -a 0 -x {9.0 10.0 2824 ------- null} h -t 3.19565 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5639 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.19584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5625 -a 0 -x {9.0 10.0 2817 ------- null} - -t 3.19584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5625 -a 0 -x {9.0 10.0 2817 ------- null} h -t 3.19584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5625 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.19597 -s 0 -d 9 -p ack -e 40 -c 0 -i 5632 -a 0 -x {10.0 9.0 2811 ------- null} - -t 3.19597 -s 0 -d 9 -p ack -e 40 -c 0 -i 5632 -a 0 -x {10.0 9.0 2811 ------- null} h -t 3.19597 -s 0 -d 9 -p ack -e 40 -c 0 -i 5632 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.19606 -s 10 -d 7 -p ack -e 40 -c 0 -i 5636 -a 0 -x {10.0 9.0 2813 ------- null} + -t 3.19606 -s 7 -d 0 -p ack -e 40 -c 0 -i 5636 -a 0 -x {10.0 9.0 2813 ------- null} h -t 3.19606 -s 7 -d 8 -p ack -e 40 -c 0 -i 5636 -a 0 -x {10.0 9.0 2813 ------- null} r -t 3.19621 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5621 -a 0 -x {9.0 10.0 2815 ------- null} + -t 3.19621 -s 10 -d 7 -p ack -e 40 -c 0 -i 5640 -a 0 -x {10.0 9.0 2815 ------- null} - -t 3.19621 -s 10 -d 7 -p ack -e 40 -c 0 -i 5640 -a 0 -x {10.0 9.0 2815 ------- null} h -t 3.19621 -s 10 -d 7 -p ack -e 40 -c 0 -i 5640 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.1963 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5635 -a 0 -x {9.0 10.0 2822 ------- null} + -t 3.1963 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5635 -a 0 -x {9.0 10.0 2822 ------- null} h -t 3.1963 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5635 -a 0 -x {9.0 10.0 2822 ------- null} r -t 3.19682 -s 0 -d 9 -p ack -e 40 -c 0 -i 5630 -a 0 -x {10.0 9.0 2810 ------- null} + -t 3.19682 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5641 -a 0 -x {9.0 10.0 2825 ------- null} - -t 3.19682 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5641 -a 0 -x {9.0 10.0 2825 ------- null} h -t 3.19682 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5641 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.19693 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5627 -a 0 -x {9.0 10.0 2818 ------- null} - -t 3.19693 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5627 -a 0 -x {9.0 10.0 2818 ------- null} h -t 3.19693 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5627 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.19715 -s 10 -d 7 -p ack -e 40 -c 0 -i 5638 -a 0 -x {10.0 9.0 2814 ------- null} + -t 3.19715 -s 7 -d 0 -p ack -e 40 -c 0 -i 5638 -a 0 -x {10.0 9.0 2814 ------- null} h -t 3.19715 -s 7 -d 8 -p ack -e 40 -c 0 -i 5638 -a 0 -x {10.0 9.0 2814 ------- null} + -t 3.19722 -s 0 -d 9 -p ack -e 40 -c 0 -i 5634 -a 0 -x {10.0 9.0 2812 ------- null} - -t 3.19722 -s 0 -d 9 -p ack -e 40 -c 0 -i 5634 -a 0 -x {10.0 9.0 2812 ------- null} h -t 3.19722 -s 0 -d 9 -p ack -e 40 -c 0 -i 5634 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.19728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5637 -a 0 -x {9.0 10.0 2823 ------- null} + -t 3.19728 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5637 -a 0 -x {9.0 10.0 2823 ------- null} h -t 3.19728 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5637 -a 0 -x {9.0 10.0 2823 ------- null} r -t 3.1973 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5623 -a 0 -x {9.0 10.0 2816 ------- null} + -t 3.1973 -s 10 -d 7 -p ack -e 40 -c 0 -i 5642 -a 0 -x {10.0 9.0 2816 ------- null} - -t 3.1973 -s 10 -d 7 -p ack -e 40 -c 0 -i 5642 -a 0 -x {10.0 9.0 2816 ------- null} h -t 3.1973 -s 10 -d 7 -p ack -e 40 -c 0 -i 5642 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.198 -s 0 -d 9 -p ack -e 40 -c 0 -i 5632 -a 0 -x {10.0 9.0 2811 ------- null} + -t 3.198 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5643 -a 0 -x {9.0 10.0 2826 ------- null} - -t 3.198 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5643 -a 0 -x {9.0 10.0 2826 ------- null} h -t 3.198 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5643 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.19819 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5629 -a 0 -x {9.0 10.0 2819 ------- null} - -t 3.19819 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5629 -a 0 -x {9.0 10.0 2819 ------- null} h -t 3.19819 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5629 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.19824 -s 10 -d 7 -p ack -e 40 -c 0 -i 5640 -a 0 -x {10.0 9.0 2815 ------- null} + -t 3.19824 -s 7 -d 0 -p ack -e 40 -c 0 -i 5640 -a 0 -x {10.0 9.0 2815 ------- null} h -t 3.19824 -s 7 -d 8 -p ack -e 40 -c 0 -i 5640 -a 0 -x {10.0 9.0 2815 ------- null} + -t 3.19842 -s 0 -d 9 -p ack -e 40 -c 0 -i 5636 -a 0 -x {10.0 9.0 2813 ------- null} - -t 3.19842 -s 0 -d 9 -p ack -e 40 -c 0 -i 5636 -a 0 -x {10.0 9.0 2813 ------- null} h -t 3.19842 -s 0 -d 9 -p ack -e 40 -c 0 -i 5636 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.19845 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5639 -a 0 -x {9.0 10.0 2824 ------- null} + -t 3.19845 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5639 -a 0 -x {9.0 10.0 2824 ------- null} h -t 3.19845 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5639 -a 0 -x {9.0 10.0 2824 ------- null} r -t 3.19864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5625 -a 0 -x {9.0 10.0 2817 ------- null} + -t 3.19864 -s 10 -d 7 -p ack -e 40 -c 0 -i 5644 -a 0 -x {10.0 9.0 2817 ------- null} - -t 3.19864 -s 10 -d 7 -p ack -e 40 -c 0 -i 5644 -a 0 -x {10.0 9.0 2817 ------- null} h -t 3.19864 -s 10 -d 7 -p ack -e 40 -c 0 -i 5644 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.19925 -s 0 -d 9 -p ack -e 40 -c 0 -i 5634 -a 0 -x {10.0 9.0 2812 ------- null} + -t 3.19925 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5645 -a 0 -x {9.0 10.0 2827 ------- null} - -t 3.19925 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5645 -a 0 -x {9.0 10.0 2827 ------- null} h -t 3.19925 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5645 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.19928 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5631 -a 0 -x {9.0 10.0 2820 ------- null} - -t 3.19928 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5631 -a 0 -x {9.0 10.0 2820 ------- null} h -t 3.19928 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5631 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.19933 -s 10 -d 7 -p ack -e 40 -c 0 -i 5642 -a 0 -x {10.0 9.0 2816 ------- null} + -t 3.19933 -s 7 -d 0 -p ack -e 40 -c 0 -i 5642 -a 0 -x {10.0 9.0 2816 ------- null} h -t 3.19933 -s 7 -d 8 -p ack -e 40 -c 0 -i 5642 -a 0 -x {10.0 9.0 2816 ------- null} + -t 3.19944 -s 0 -d 9 -p ack -e 40 -c 0 -i 5638 -a 0 -x {10.0 9.0 2814 ------- null} - -t 3.19944 -s 0 -d 9 -p ack -e 40 -c 0 -i 5638 -a 0 -x {10.0 9.0 2814 ------- null} h -t 3.19944 -s 0 -d 9 -p ack -e 40 -c 0 -i 5638 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.19962 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5641 -a 0 -x {9.0 10.0 2825 ------- null} + -t 3.19962 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5641 -a 0 -x {9.0 10.0 2825 ------- null} h -t 3.19962 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5641 -a 0 -x {9.0 10.0 2825 ------- null} r -t 3.19973 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5627 -a 0 -x {9.0 10.0 2818 ------- null} + -t 3.19973 -s 10 -d 7 -p ack -e 40 -c 0 -i 5646 -a 0 -x {10.0 9.0 2818 ------- null} - -t 3.19973 -s 10 -d 7 -p ack -e 40 -c 0 -i 5646 -a 0 -x {10.0 9.0 2818 ------- null} h -t 3.19973 -s 10 -d 7 -p ack -e 40 -c 0 -i 5646 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.20037 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5633 -a 0 -x {9.0 10.0 2821 ------- null} - -t 3.20037 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5633 -a 0 -x {9.0 10.0 2821 ------- null} h -t 3.20037 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5633 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.20045 -s 0 -d 9 -p ack -e 40 -c 0 -i 5636 -a 0 -x {10.0 9.0 2813 ------- null} + -t 3.20045 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5647 -a 0 -x {9.0 10.0 2828 ------- null} - -t 3.20045 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5647 -a 0 -x {9.0 10.0 2828 ------- null} h -t 3.20045 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5647 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.20053 -s 0 -d 9 -p ack -e 40 -c 0 -i 5640 -a 0 -x {10.0 9.0 2815 ------- null} - -t 3.20053 -s 0 -d 9 -p ack -e 40 -c 0 -i 5640 -a 0 -x {10.0 9.0 2815 ------- null} h -t 3.20053 -s 0 -d 9 -p ack -e 40 -c 0 -i 5640 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.20067 -s 10 -d 7 -p ack -e 40 -c 0 -i 5644 -a 0 -x {10.0 9.0 2817 ------- null} + -t 3.20067 -s 7 -d 0 -p ack -e 40 -c 0 -i 5644 -a 0 -x {10.0 9.0 2817 ------- null} h -t 3.20067 -s 7 -d 8 -p ack -e 40 -c 0 -i 5644 -a 0 -x {10.0 9.0 2817 ------- null} r -t 3.2008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5643 -a 0 -x {9.0 10.0 2826 ------- null} + -t 3.2008 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5643 -a 0 -x {9.0 10.0 2826 ------- null} h -t 3.2008 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5643 -a 0 -x {9.0 10.0 2826 ------- null} r -t 3.20099 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5629 -a 0 -x {9.0 10.0 2819 ------- null} + -t 3.20099 -s 10 -d 7 -p ack -e 40 -c 0 -i 5648 -a 0 -x {10.0 9.0 2819 ------- null} - -t 3.20099 -s 10 -d 7 -p ack -e 40 -c 0 -i 5648 -a 0 -x {10.0 9.0 2819 ------- null} h -t 3.20099 -s 10 -d 7 -p ack -e 40 -c 0 -i 5648 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.20146 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5635 -a 0 -x {9.0 10.0 2822 ------- null} - -t 3.20146 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5635 -a 0 -x {9.0 10.0 2822 ------- null} h -t 3.20146 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5635 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.20147 -s 0 -d 9 -p ack -e 40 -c 0 -i 5638 -a 0 -x {10.0 9.0 2814 ------- null} + -t 3.20147 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5649 -a 0 -x {9.0 10.0 2829 ------- null} - -t 3.20147 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5649 -a 0 -x {9.0 10.0 2829 ------- null} h -t 3.20147 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5649 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.20165 -s 0 -d 9 -p ack -e 40 -c 0 -i 5642 -a 0 -x {10.0 9.0 2816 ------- null} - -t 3.20165 -s 0 -d 9 -p ack -e 40 -c 0 -i 5642 -a 0 -x {10.0 9.0 2816 ------- null} h -t 3.20165 -s 0 -d 9 -p ack -e 40 -c 0 -i 5642 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.20176 -s 10 -d 7 -p ack -e 40 -c 0 -i 5646 -a 0 -x {10.0 9.0 2818 ------- null} + -t 3.20176 -s 7 -d 0 -p ack -e 40 -c 0 -i 5646 -a 0 -x {10.0 9.0 2818 ------- null} h -t 3.20176 -s 7 -d 8 -p ack -e 40 -c 0 -i 5646 -a 0 -x {10.0 9.0 2818 ------- null} r -t 3.20205 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5645 -a 0 -x {9.0 10.0 2827 ------- null} + -t 3.20205 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5645 -a 0 -x {9.0 10.0 2827 ------- null} h -t 3.20205 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5645 -a 0 -x {9.0 10.0 2827 ------- null} r -t 3.20208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5631 -a 0 -x {9.0 10.0 2820 ------- null} + -t 3.20208 -s 10 -d 7 -p ack -e 40 -c 0 -i 5650 -a 0 -x {10.0 9.0 2820 ------- null} - -t 3.20208 -s 10 -d 7 -p ack -e 40 -c 0 -i 5650 -a 0 -x {10.0 9.0 2820 ------- null} h -t 3.20208 -s 10 -d 7 -p ack -e 40 -c 0 -i 5650 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.20254 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5637 -a 0 -x {9.0 10.0 2823 ------- null} - -t 3.20254 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5637 -a 0 -x {9.0 10.0 2823 ------- null} h -t 3.20254 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5637 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.20256 -s 0 -d 9 -p ack -e 40 -c 0 -i 5640 -a 0 -x {10.0 9.0 2815 ------- null} + -t 3.20256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5651 -a 0 -x {9.0 10.0 2830 ------- null} - -t 3.20256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5651 -a 0 -x {9.0 10.0 2830 ------- null} h -t 3.20256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5651 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.20264 -s 0 -d 9 -p ack -e 40 -c 0 -i 5644 -a 0 -x {10.0 9.0 2817 ------- null} - -t 3.20264 -s 0 -d 9 -p ack -e 40 -c 0 -i 5644 -a 0 -x {10.0 9.0 2817 ------- null} h -t 3.20264 -s 0 -d 9 -p ack -e 40 -c 0 -i 5644 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.20302 -s 10 -d 7 -p ack -e 40 -c 0 -i 5648 -a 0 -x {10.0 9.0 2819 ------- null} + -t 3.20302 -s 7 -d 0 -p ack -e 40 -c 0 -i 5648 -a 0 -x {10.0 9.0 2819 ------- null} h -t 3.20302 -s 7 -d 8 -p ack -e 40 -c 0 -i 5648 -a 0 -x {10.0 9.0 2819 ------- null} r -t 3.20317 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5633 -a 0 -x {9.0 10.0 2821 ------- null} + -t 3.20317 -s 10 -d 7 -p ack -e 40 -c 0 -i 5652 -a 0 -x {10.0 9.0 2821 ------- null} - -t 3.20317 -s 10 -d 7 -p ack -e 40 -c 0 -i 5652 -a 0 -x {10.0 9.0 2821 ------- null} h -t 3.20317 -s 10 -d 7 -p ack -e 40 -c 0 -i 5652 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.20325 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5647 -a 0 -x {9.0 10.0 2828 ------- null} + -t 3.20325 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5647 -a 0 -x {9.0 10.0 2828 ------- null} h -t 3.20325 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5647 -a 0 -x {9.0 10.0 2828 ------- null} + -t 3.20363 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5639 -a 0 -x {9.0 10.0 2824 ------- null} - -t 3.20363 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5639 -a 0 -x {9.0 10.0 2824 ------- null} h -t 3.20363 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5639 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.20368 -s 0 -d 9 -p ack -e 40 -c 0 -i 5642 -a 0 -x {10.0 9.0 2816 ------- null} + -t 3.20368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5653 -a 0 -x {9.0 10.0 2831 ------- null} - -t 3.20368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5653 -a 0 -x {9.0 10.0 2831 ------- null} h -t 3.20368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5653 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.20384 -s 0 -d 9 -p ack -e 40 -c 0 -i 5646 -a 0 -x {10.0 9.0 2818 ------- null} - -t 3.20384 -s 0 -d 9 -p ack -e 40 -c 0 -i 5646 -a 0 -x {10.0 9.0 2818 ------- null} h -t 3.20384 -s 0 -d 9 -p ack -e 40 -c 0 -i 5646 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.20411 -s 10 -d 7 -p ack -e 40 -c 0 -i 5650 -a 0 -x {10.0 9.0 2820 ------- null} + -t 3.20411 -s 7 -d 0 -p ack -e 40 -c 0 -i 5650 -a 0 -x {10.0 9.0 2820 ------- null} h -t 3.20411 -s 7 -d 8 -p ack -e 40 -c 0 -i 5650 -a 0 -x {10.0 9.0 2820 ------- null} r -t 3.20426 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5635 -a 0 -x {9.0 10.0 2822 ------- null} + -t 3.20426 -s 10 -d 7 -p ack -e 40 -c 0 -i 5654 -a 0 -x {10.0 9.0 2822 ------- null} - -t 3.20426 -s 10 -d 7 -p ack -e 40 -c 0 -i 5654 -a 0 -x {10.0 9.0 2822 ------- null} h -t 3.20426 -s 10 -d 7 -p ack -e 40 -c 0 -i 5654 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.20427 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5649 -a 0 -x {9.0 10.0 2829 ------- null} + -t 3.20427 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5649 -a 0 -x {9.0 10.0 2829 ------- null} h -t 3.20427 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5649 -a 0 -x {9.0 10.0 2829 ------- null} r -t 3.20467 -s 0 -d 9 -p ack -e 40 -c 0 -i 5644 -a 0 -x {10.0 9.0 2817 ------- null} + -t 3.20467 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5655 -a 0 -x {9.0 10.0 2832 ------- null} - -t 3.20467 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5655 -a 0 -x {9.0 10.0 2832 ------- null} h -t 3.20467 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5655 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.20472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5641 -a 0 -x {9.0 10.0 2825 ------- null} - -t 3.20472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5641 -a 0 -x {9.0 10.0 2825 ------- null} h -t 3.20472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5641 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.2048 -s 0 -d 9 -p ack -e 40 -c 0 -i 5648 -a 0 -x {10.0 9.0 2819 ------- null} - -t 3.2048 -s 0 -d 9 -p ack -e 40 -c 0 -i 5648 -a 0 -x {10.0 9.0 2819 ------- null} h -t 3.2048 -s 0 -d 9 -p ack -e 40 -c 0 -i 5648 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.2052 -s 10 -d 7 -p ack -e 40 -c 0 -i 5652 -a 0 -x {10.0 9.0 2821 ------- null} + -t 3.2052 -s 7 -d 0 -p ack -e 40 -c 0 -i 5652 -a 0 -x {10.0 9.0 2821 ------- null} h -t 3.2052 -s 7 -d 8 -p ack -e 40 -c 0 -i 5652 -a 0 -x {10.0 9.0 2821 ------- null} r -t 3.20534 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5637 -a 0 -x {9.0 10.0 2823 ------- null} + -t 3.20534 -s 10 -d 7 -p ack -e 40 -c 0 -i 5656 -a 0 -x {10.0 9.0 2823 ------- null} - -t 3.20534 -s 10 -d 7 -p ack -e 40 -c 0 -i 5656 -a 0 -x {10.0 9.0 2823 ------- null} h -t 3.20534 -s 10 -d 7 -p ack -e 40 -c 0 -i 5656 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.20536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5651 -a 0 -x {9.0 10.0 2830 ------- null} + -t 3.20536 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5651 -a 0 -x {9.0 10.0 2830 ------- null} h -t 3.20536 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5651 -a 0 -x {9.0 10.0 2830 ------- null} + -t 3.20581 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5643 -a 0 -x {9.0 10.0 2826 ------- null} - -t 3.20581 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5643 -a 0 -x {9.0 10.0 2826 ------- null} h -t 3.20581 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5643 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.20587 -s 0 -d 9 -p ack -e 40 -c 0 -i 5646 -a 0 -x {10.0 9.0 2818 ------- null} + -t 3.20587 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5657 -a 0 -x {9.0 10.0 2833 ------- null} - -t 3.20587 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5657 -a 0 -x {9.0 10.0 2833 ------- null} h -t 3.20587 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5657 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.20592 -s 0 -d 9 -p ack -e 40 -c 0 -i 5650 -a 0 -x {10.0 9.0 2820 ------- null} - -t 3.20592 -s 0 -d 9 -p ack -e 40 -c 0 -i 5650 -a 0 -x {10.0 9.0 2820 ------- null} h -t 3.20592 -s 0 -d 9 -p ack -e 40 -c 0 -i 5650 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.20629 -s 10 -d 7 -p ack -e 40 -c 0 -i 5654 -a 0 -x {10.0 9.0 2822 ------- null} + -t 3.20629 -s 7 -d 0 -p ack -e 40 -c 0 -i 5654 -a 0 -x {10.0 9.0 2822 ------- null} h -t 3.20629 -s 7 -d 8 -p ack -e 40 -c 0 -i 5654 -a 0 -x {10.0 9.0 2822 ------- null} r -t 3.20643 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5639 -a 0 -x {9.0 10.0 2824 ------- null} + -t 3.20643 -s 10 -d 7 -p ack -e 40 -c 0 -i 5658 -a 0 -x {10.0 9.0 2824 ------- null} - -t 3.20643 -s 10 -d 7 -p ack -e 40 -c 0 -i 5658 -a 0 -x {10.0 9.0 2824 ------- null} h -t 3.20643 -s 10 -d 7 -p ack -e 40 -c 0 -i 5658 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.20648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5653 -a 0 -x {9.0 10.0 2831 ------- null} + -t 3.20648 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5653 -a 0 -x {9.0 10.0 2831 ------- null} h -t 3.20648 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5653 -a 0 -x {9.0 10.0 2831 ------- null} r -t 3.20683 -s 0 -d 9 -p ack -e 40 -c 0 -i 5648 -a 0 -x {10.0 9.0 2819 ------- null} + -t 3.20683 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5659 -a 0 -x {9.0 10.0 2834 ------- null} - -t 3.20683 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5659 -a 0 -x {9.0 10.0 2834 ------- null} h -t 3.20683 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5659 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.2069 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5645 -a 0 -x {9.0 10.0 2827 ------- null} - -t 3.2069 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5645 -a 0 -x {9.0 10.0 2827 ------- null} h -t 3.2069 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5645 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.20709 -s 0 -d 9 -p ack -e 40 -c 0 -i 5652 -a 0 -x {10.0 9.0 2821 ------- null} - -t 3.20709 -s 0 -d 9 -p ack -e 40 -c 0 -i 5652 -a 0 -x {10.0 9.0 2821 ------- null} h -t 3.20709 -s 0 -d 9 -p ack -e 40 -c 0 -i 5652 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.20738 -s 10 -d 7 -p ack -e 40 -c 0 -i 5656 -a 0 -x {10.0 9.0 2823 ------- null} + -t 3.20738 -s 7 -d 0 -p ack -e 40 -c 0 -i 5656 -a 0 -x {10.0 9.0 2823 ------- null} h -t 3.20738 -s 7 -d 8 -p ack -e 40 -c 0 -i 5656 -a 0 -x {10.0 9.0 2823 ------- null} r -t 3.20747 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5655 -a 0 -x {9.0 10.0 2832 ------- null} + -t 3.20747 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5655 -a 0 -x {9.0 10.0 2832 ------- null} h -t 3.20747 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5655 -a 0 -x {9.0 10.0 2832 ------- null} r -t 3.20752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5641 -a 0 -x {9.0 10.0 2825 ------- null} + -t 3.20752 -s 10 -d 7 -p ack -e 40 -c 0 -i 5660 -a 0 -x {10.0 9.0 2825 ------- null} - -t 3.20752 -s 10 -d 7 -p ack -e 40 -c 0 -i 5660 -a 0 -x {10.0 9.0 2825 ------- null} h -t 3.20752 -s 10 -d 7 -p ack -e 40 -c 0 -i 5660 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.20795 -s 0 -d 9 -p ack -e 40 -c 0 -i 5650 -a 0 -x {10.0 9.0 2820 ------- null} + -t 3.20795 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5661 -a 0 -x {9.0 10.0 2835 ------- null} - -t 3.20795 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5661 -a 0 -x {9.0 10.0 2835 ------- null} h -t 3.20795 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5661 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.20798 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5647 -a 0 -x {9.0 10.0 2828 ------- null} - -t 3.20798 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5647 -a 0 -x {9.0 10.0 2828 ------- null} h -t 3.20798 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5647 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.20811 -s 0 -d 9 -p ack -e 40 -c 0 -i 5654 -a 0 -x {10.0 9.0 2822 ------- null} - -t 3.20811 -s 0 -d 9 -p ack -e 40 -c 0 -i 5654 -a 0 -x {10.0 9.0 2822 ------- null} h -t 3.20811 -s 0 -d 9 -p ack -e 40 -c 0 -i 5654 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.20846 -s 10 -d 7 -p ack -e 40 -c 0 -i 5658 -a 0 -x {10.0 9.0 2824 ------- null} + -t 3.20846 -s 7 -d 0 -p ack -e 40 -c 0 -i 5658 -a 0 -x {10.0 9.0 2824 ------- null} h -t 3.20846 -s 7 -d 8 -p ack -e 40 -c 0 -i 5658 -a 0 -x {10.0 9.0 2824 ------- null} r -t 3.20861 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5643 -a 0 -x {9.0 10.0 2826 ------- null} + -t 3.20861 -s 10 -d 7 -p ack -e 40 -c 0 -i 5662 -a 0 -x {10.0 9.0 2826 ------- null} - -t 3.20861 -s 10 -d 7 -p ack -e 40 -c 0 -i 5662 -a 0 -x {10.0 9.0 2826 ------- null} h -t 3.20861 -s 10 -d 7 -p ack -e 40 -c 0 -i 5662 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.20867 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5657 -a 0 -x {9.0 10.0 2833 ------- null} + -t 3.20867 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5657 -a 0 -x {9.0 10.0 2833 ------- null} h -t 3.20867 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5657 -a 0 -x {9.0 10.0 2833 ------- null} + -t 3.20907 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5649 -a 0 -x {9.0 10.0 2829 ------- null} - -t 3.20907 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5649 -a 0 -x {9.0 10.0 2829 ------- null} h -t 3.20907 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5649 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.20912 -s 0 -d 9 -p ack -e 40 -c 0 -i 5652 -a 0 -x {10.0 9.0 2821 ------- null} + -t 3.20912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5663 -a 0 -x {9.0 10.0 2836 ------- null} - -t 3.20912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5663 -a 0 -x {9.0 10.0 2836 ------- null} h -t 3.20912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5663 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.20933 -s 0 -d 9 -p ack -e 40 -c 0 -i 5656 -a 0 -x {10.0 9.0 2823 ------- null} - -t 3.20933 -s 0 -d 9 -p ack -e 40 -c 0 -i 5656 -a 0 -x {10.0 9.0 2823 ------- null} h -t 3.20933 -s 0 -d 9 -p ack -e 40 -c 0 -i 5656 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.20955 -s 10 -d 7 -p ack -e 40 -c 0 -i 5660 -a 0 -x {10.0 9.0 2825 ------- null} + -t 3.20955 -s 7 -d 0 -p ack -e 40 -c 0 -i 5660 -a 0 -x {10.0 9.0 2825 ------- null} h -t 3.20955 -s 7 -d 8 -p ack -e 40 -c 0 -i 5660 -a 0 -x {10.0 9.0 2825 ------- null} r -t 3.20963 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5659 -a 0 -x {9.0 10.0 2834 ------- null} + -t 3.20963 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5659 -a 0 -x {9.0 10.0 2834 ------- null} h -t 3.20963 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5659 -a 0 -x {9.0 10.0 2834 ------- null} r -t 3.2097 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5645 -a 0 -x {9.0 10.0 2827 ------- null} + -t 3.2097 -s 10 -d 7 -p ack -e 40 -c 0 -i 5664 -a 0 -x {10.0 9.0 2827 ------- null} - -t 3.2097 -s 10 -d 7 -p ack -e 40 -c 0 -i 5664 -a 0 -x {10.0 9.0 2827 ------- null} h -t 3.2097 -s 10 -d 7 -p ack -e 40 -c 0 -i 5664 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.21014 -s 0 -d 9 -p ack -e 40 -c 0 -i 5654 -a 0 -x {10.0 9.0 2822 ------- null} + -t 3.21014 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5665 -a 0 -x {9.0 10.0 2837 ------- null} - -t 3.21014 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5665 -a 0 -x {9.0 10.0 2837 ------- null} h -t 3.21014 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5665 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.21018 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5651 -a 0 -x {9.0 10.0 2830 ------- null} - -t 3.21018 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5651 -a 0 -x {9.0 10.0 2830 ------- null} h -t 3.21018 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5651 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.21034 -s 0 -d 9 -p ack -e 40 -c 0 -i 5658 -a 0 -x {10.0 9.0 2824 ------- null} - -t 3.21034 -s 0 -d 9 -p ack -e 40 -c 0 -i 5658 -a 0 -x {10.0 9.0 2824 ------- null} h -t 3.21034 -s 0 -d 9 -p ack -e 40 -c 0 -i 5658 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.21064 -s 10 -d 7 -p ack -e 40 -c 0 -i 5662 -a 0 -x {10.0 9.0 2826 ------- null} + -t 3.21064 -s 7 -d 0 -p ack -e 40 -c 0 -i 5662 -a 0 -x {10.0 9.0 2826 ------- null} h -t 3.21064 -s 7 -d 8 -p ack -e 40 -c 0 -i 5662 -a 0 -x {10.0 9.0 2826 ------- null} r -t 3.21075 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5661 -a 0 -x {9.0 10.0 2835 ------- null} + -t 3.21075 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5661 -a 0 -x {9.0 10.0 2835 ------- null} h -t 3.21075 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5661 -a 0 -x {9.0 10.0 2835 ------- null} r -t 3.21078 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5647 -a 0 -x {9.0 10.0 2828 ------- null} + -t 3.21078 -s 10 -d 7 -p ack -e 40 -c 0 -i 5666 -a 0 -x {10.0 9.0 2828 ------- null} - -t 3.21078 -s 10 -d 7 -p ack -e 40 -c 0 -i 5666 -a 0 -x {10.0 9.0 2828 ------- null} h -t 3.21078 -s 10 -d 7 -p ack -e 40 -c 0 -i 5666 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.21126 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5653 -a 0 -x {9.0 10.0 2831 ------- null} - -t 3.21126 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5653 -a 0 -x {9.0 10.0 2831 ------- null} h -t 3.21126 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5653 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.21136 -s 0 -d 9 -p ack -e 40 -c 0 -i 5656 -a 0 -x {10.0 9.0 2823 ------- null} + -t 3.21136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5667 -a 0 -x {9.0 10.0 2838 ------- null} - -t 3.21136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5667 -a 0 -x {9.0 10.0 2838 ------- null} h -t 3.21136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5667 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.21139 -s 0 -d 9 -p ack -e 40 -c 0 -i 5660 -a 0 -x {10.0 9.0 2825 ------- null} - -t 3.21139 -s 0 -d 9 -p ack -e 40 -c 0 -i 5660 -a 0 -x {10.0 9.0 2825 ------- null} h -t 3.21139 -s 0 -d 9 -p ack -e 40 -c 0 -i 5660 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.21173 -s 10 -d 7 -p ack -e 40 -c 0 -i 5664 -a 0 -x {10.0 9.0 2827 ------- null} + -t 3.21173 -s 7 -d 0 -p ack -e 40 -c 0 -i 5664 -a 0 -x {10.0 9.0 2827 ------- null} h -t 3.21173 -s 7 -d 8 -p ack -e 40 -c 0 -i 5664 -a 0 -x {10.0 9.0 2827 ------- null} r -t 3.21187 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5649 -a 0 -x {9.0 10.0 2829 ------- null} + -t 3.21187 -s 10 -d 7 -p ack -e 40 -c 0 -i 5668 -a 0 -x {10.0 9.0 2829 ------- null} - -t 3.21187 -s 10 -d 7 -p ack -e 40 -c 0 -i 5668 -a 0 -x {10.0 9.0 2829 ------- null} h -t 3.21187 -s 10 -d 7 -p ack -e 40 -c 0 -i 5668 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.21192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5663 -a 0 -x {9.0 10.0 2836 ------- null} + -t 3.21192 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5663 -a 0 -x {9.0 10.0 2836 ------- null} h -t 3.21192 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5663 -a 0 -x {9.0 10.0 2836 ------- null} + -t 3.21235 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5655 -a 0 -x {9.0 10.0 2832 ------- null} - -t 3.21235 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5655 -a 0 -x {9.0 10.0 2832 ------- null} h -t 3.21235 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5655 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.21237 -s 0 -d 9 -p ack -e 40 -c 0 -i 5658 -a 0 -x {10.0 9.0 2824 ------- null} + -t 3.21237 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5669 -a 0 -x {9.0 10.0 2839 ------- null} - -t 3.21237 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5669 -a 0 -x {9.0 10.0 2839 ------- null} h -t 3.21237 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5669 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.21258 -s 0 -d 9 -p ack -e 40 -c 0 -i 5662 -a 0 -x {10.0 9.0 2826 ------- null} - -t 3.21258 -s 0 -d 9 -p ack -e 40 -c 0 -i 5662 -a 0 -x {10.0 9.0 2826 ------- null} h -t 3.21258 -s 0 -d 9 -p ack -e 40 -c 0 -i 5662 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.21282 -s 10 -d 7 -p ack -e 40 -c 0 -i 5666 -a 0 -x {10.0 9.0 2828 ------- null} + -t 3.21282 -s 7 -d 0 -p ack -e 40 -c 0 -i 5666 -a 0 -x {10.0 9.0 2828 ------- null} h -t 3.21282 -s 7 -d 8 -p ack -e 40 -c 0 -i 5666 -a 0 -x {10.0 9.0 2828 ------- null} r -t 3.21294 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5665 -a 0 -x {9.0 10.0 2837 ------- null} + -t 3.21294 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5665 -a 0 -x {9.0 10.0 2837 ------- null} h -t 3.21294 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5665 -a 0 -x {9.0 10.0 2837 ------- null} r -t 3.21298 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5651 -a 0 -x {9.0 10.0 2830 ------- null} + -t 3.21298 -s 10 -d 7 -p ack -e 40 -c 0 -i 5670 -a 0 -x {10.0 9.0 2830 ------- null} - -t 3.21298 -s 10 -d 7 -p ack -e 40 -c 0 -i 5670 -a 0 -x {10.0 9.0 2830 ------- null} h -t 3.21298 -s 10 -d 7 -p ack -e 40 -c 0 -i 5670 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.21342 -s 0 -d 9 -p ack -e 40 -c 0 -i 5660 -a 0 -x {10.0 9.0 2825 ------- null} + -t 3.21342 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5671 -a 0 -x {9.0 10.0 2840 ------- null} - -t 3.21342 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5671 -a 0 -x {9.0 10.0 2840 ------- null} h -t 3.21342 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5671 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.21344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5657 -a 0 -x {9.0 10.0 2833 ------- null} - -t 3.21344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5657 -a 0 -x {9.0 10.0 2833 ------- null} h -t 3.21344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5657 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.2135 -s 0 -d 9 -p ack -e 40 -c 0 -i 5664 -a 0 -x {10.0 9.0 2827 ------- null} - -t 3.2135 -s 0 -d 9 -p ack -e 40 -c 0 -i 5664 -a 0 -x {10.0 9.0 2827 ------- null} h -t 3.2135 -s 0 -d 9 -p ack -e 40 -c 0 -i 5664 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.2139 -s 10 -d 7 -p ack -e 40 -c 0 -i 5668 -a 0 -x {10.0 9.0 2829 ------- null} + -t 3.2139 -s 7 -d 0 -p ack -e 40 -c 0 -i 5668 -a 0 -x {10.0 9.0 2829 ------- null} h -t 3.2139 -s 7 -d 8 -p ack -e 40 -c 0 -i 5668 -a 0 -x {10.0 9.0 2829 ------- null} r -t 3.21406 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5653 -a 0 -x {9.0 10.0 2831 ------- null} + -t 3.21406 -s 10 -d 7 -p ack -e 40 -c 0 -i 5672 -a 0 -x {10.0 9.0 2831 ------- null} - -t 3.21406 -s 10 -d 7 -p ack -e 40 -c 0 -i 5672 -a 0 -x {10.0 9.0 2831 ------- null} h -t 3.21406 -s 10 -d 7 -p ack -e 40 -c 0 -i 5672 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.21416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5667 -a 0 -x {9.0 10.0 2838 ------- null} + -t 3.21416 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5667 -a 0 -x {9.0 10.0 2838 ------- null} h -t 3.21416 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5667 -a 0 -x {9.0 10.0 2838 ------- null} + -t 3.21453 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5659 -a 0 -x {9.0 10.0 2834 ------- null} - -t 3.21453 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5659 -a 0 -x {9.0 10.0 2834 ------- null} h -t 3.21453 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5659 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.21461 -s 0 -d 9 -p ack -e 40 -c 0 -i 5662 -a 0 -x {10.0 9.0 2826 ------- null} + -t 3.21461 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5673 -a 0 -x {9.0 10.0 2841 ------- null} - -t 3.21461 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5673 -a 0 -x {9.0 10.0 2841 ------- null} h -t 3.21461 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5673 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.21477 -s 0 -d 9 -p ack -e 40 -c 0 -i 5666 -a 0 -x {10.0 9.0 2828 ------- null} - -t 3.21477 -s 0 -d 9 -p ack -e 40 -c 0 -i 5666 -a 0 -x {10.0 9.0 2828 ------- null} h -t 3.21477 -s 0 -d 9 -p ack -e 40 -c 0 -i 5666 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.21501 -s 10 -d 7 -p ack -e 40 -c 0 -i 5670 -a 0 -x {10.0 9.0 2830 ------- null} + -t 3.21501 -s 7 -d 0 -p ack -e 40 -c 0 -i 5670 -a 0 -x {10.0 9.0 2830 ------- null} h -t 3.21501 -s 7 -d 8 -p ack -e 40 -c 0 -i 5670 -a 0 -x {10.0 9.0 2830 ------- null} r -t 3.21515 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5655 -a 0 -x {9.0 10.0 2832 ------- null} + -t 3.21515 -s 10 -d 7 -p ack -e 40 -c 0 -i 5674 -a 0 -x {10.0 9.0 2832 ------- null} - -t 3.21515 -s 10 -d 7 -p ack -e 40 -c 0 -i 5674 -a 0 -x {10.0 9.0 2832 ------- null} h -t 3.21515 -s 10 -d 7 -p ack -e 40 -c 0 -i 5674 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.21517 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5669 -a 0 -x {9.0 10.0 2839 ------- null} + -t 3.21517 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5669 -a 0 -x {9.0 10.0 2839 ------- null} h -t 3.21517 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5669 -a 0 -x {9.0 10.0 2839 ------- null} r -t 3.21554 -s 0 -d 9 -p ack -e 40 -c 0 -i 5664 -a 0 -x {10.0 9.0 2827 ------- null} + -t 3.21554 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5675 -a 0 -x {9.0 10.0 2842 ------- null} - -t 3.21554 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5675 -a 0 -x {9.0 10.0 2842 ------- null} h -t 3.21554 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5675 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.21562 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5661 -a 0 -x {9.0 10.0 2835 ------- null} - -t 3.21562 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5661 -a 0 -x {9.0 10.0 2835 ------- null} h -t 3.21562 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5661 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.21576 -s 0 -d 9 -p ack -e 40 -c 0 -i 5668 -a 0 -x {10.0 9.0 2829 ------- null} - -t 3.21576 -s 0 -d 9 -p ack -e 40 -c 0 -i 5668 -a 0 -x {10.0 9.0 2829 ------- null} h -t 3.21576 -s 0 -d 9 -p ack -e 40 -c 0 -i 5668 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.2161 -s 10 -d 7 -p ack -e 40 -c 0 -i 5672 -a 0 -x {10.0 9.0 2831 ------- null} + -t 3.2161 -s 7 -d 0 -p ack -e 40 -c 0 -i 5672 -a 0 -x {10.0 9.0 2831 ------- null} h -t 3.2161 -s 7 -d 8 -p ack -e 40 -c 0 -i 5672 -a 0 -x {10.0 9.0 2831 ------- null} r -t 3.21622 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5671 -a 0 -x {9.0 10.0 2840 ------- null} + -t 3.21622 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5671 -a 0 -x {9.0 10.0 2840 ------- null} h -t 3.21622 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5671 -a 0 -x {9.0 10.0 2840 ------- null} r -t 3.21624 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5657 -a 0 -x {9.0 10.0 2833 ------- null} + -t 3.21624 -s 10 -d 7 -p ack -e 40 -c 0 -i 5676 -a 0 -x {10.0 9.0 2833 ------- null} - -t 3.21624 -s 10 -d 7 -p ack -e 40 -c 0 -i 5676 -a 0 -x {10.0 9.0 2833 ------- null} h -t 3.21624 -s 10 -d 7 -p ack -e 40 -c 0 -i 5676 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.2167 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5663 -a 0 -x {9.0 10.0 2836 ------- null} - -t 3.2167 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5663 -a 0 -x {9.0 10.0 2836 ------- null} h -t 3.2167 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5663 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.2168 -s 0 -d 9 -p ack -e 40 -c 0 -i 5666 -a 0 -x {10.0 9.0 2828 ------- null} + -t 3.2168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5677 -a 0 -x {9.0 10.0 2843 ------- null} - -t 3.2168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5677 -a 0 -x {9.0 10.0 2843 ------- null} h -t 3.2168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5677 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.21686 -s 0 -d 9 -p ack -e 40 -c 0 -i 5670 -a 0 -x {10.0 9.0 2830 ------- null} - -t 3.21686 -s 0 -d 9 -p ack -e 40 -c 0 -i 5670 -a 0 -x {10.0 9.0 2830 ------- null} h -t 3.21686 -s 0 -d 9 -p ack -e 40 -c 0 -i 5670 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.21718 -s 10 -d 7 -p ack -e 40 -c 0 -i 5674 -a 0 -x {10.0 9.0 2832 ------- null} + -t 3.21718 -s 7 -d 0 -p ack -e 40 -c 0 -i 5674 -a 0 -x {10.0 9.0 2832 ------- null} h -t 3.21718 -s 7 -d 8 -p ack -e 40 -c 0 -i 5674 -a 0 -x {10.0 9.0 2832 ------- null} r -t 3.21733 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5659 -a 0 -x {9.0 10.0 2834 ------- null} + -t 3.21733 -s 10 -d 7 -p ack -e 40 -c 0 -i 5678 -a 0 -x {10.0 9.0 2834 ------- null} - -t 3.21733 -s 10 -d 7 -p ack -e 40 -c 0 -i 5678 -a 0 -x {10.0 9.0 2834 ------- null} h -t 3.21733 -s 10 -d 7 -p ack -e 40 -c 0 -i 5678 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.21741 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5673 -a 0 -x {9.0 10.0 2841 ------- null} + -t 3.21741 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5673 -a 0 -x {9.0 10.0 2841 ------- null} h -t 3.21741 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5673 -a 0 -x {9.0 10.0 2841 ------- null} + -t 3.21779 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5665 -a 0 -x {9.0 10.0 2837 ------- null} - -t 3.21779 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5665 -a 0 -x {9.0 10.0 2837 ------- null} h -t 3.21779 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5665 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.21779 -s 0 -d 9 -p ack -e 40 -c 0 -i 5668 -a 0 -x {10.0 9.0 2829 ------- null} + -t 3.21779 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5679 -a 0 -x {9.0 10.0 2844 ------- null} - -t 3.21779 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5679 -a 0 -x {9.0 10.0 2844 ------- null} h -t 3.21779 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5679 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.2181 -s 0 -d 9 -p ack -e 40 -c 0 -i 5672 -a 0 -x {10.0 9.0 2831 ------- null} - -t 3.2181 -s 0 -d 9 -p ack -e 40 -c 0 -i 5672 -a 0 -x {10.0 9.0 2831 ------- null} h -t 3.2181 -s 0 -d 9 -p ack -e 40 -c 0 -i 5672 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.21827 -s 10 -d 7 -p ack -e 40 -c 0 -i 5676 -a 0 -x {10.0 9.0 2833 ------- null} + -t 3.21827 -s 7 -d 0 -p ack -e 40 -c 0 -i 5676 -a 0 -x {10.0 9.0 2833 ------- null} h -t 3.21827 -s 7 -d 8 -p ack -e 40 -c 0 -i 5676 -a 0 -x {10.0 9.0 2833 ------- null} r -t 3.21834 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5675 -a 0 -x {9.0 10.0 2842 ------- null} + -t 3.21834 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5675 -a 0 -x {9.0 10.0 2842 ------- null} h -t 3.21834 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5675 -a 0 -x {9.0 10.0 2842 ------- null} r -t 3.21842 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5661 -a 0 -x {9.0 10.0 2835 ------- null} + -t 3.21842 -s 10 -d 7 -p ack -e 40 -c 0 -i 5680 -a 0 -x {10.0 9.0 2835 ------- null} - -t 3.21842 -s 10 -d 7 -p ack -e 40 -c 0 -i 5680 -a 0 -x {10.0 9.0 2835 ------- null} h -t 3.21842 -s 10 -d 7 -p ack -e 40 -c 0 -i 5680 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.2189 -s 0 -d 9 -p ack -e 40 -c 0 -i 5670 -a 0 -x {10.0 9.0 2830 ------- null} + -t 3.2189 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5681 -a 0 -x {9.0 10.0 2845 ------- null} - -t 3.2189 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5681 -a 0 -x {9.0 10.0 2845 ------- null} h -t 3.2189 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5681 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.21907 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5667 -a 0 -x {9.0 10.0 2838 ------- null} - -t 3.21907 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5667 -a 0 -x {9.0 10.0 2838 ------- null} h -t 3.21907 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5667 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.21923 -s 0 -d 9 -p ack -e 40 -c 0 -i 5674 -a 0 -x {10.0 9.0 2832 ------- null} - -t 3.21923 -s 0 -d 9 -p ack -e 40 -c 0 -i 5674 -a 0 -x {10.0 9.0 2832 ------- null} h -t 3.21923 -s 0 -d 9 -p ack -e 40 -c 0 -i 5674 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.21936 -s 10 -d 7 -p ack -e 40 -c 0 -i 5678 -a 0 -x {10.0 9.0 2834 ------- null} + -t 3.21936 -s 7 -d 0 -p ack -e 40 -c 0 -i 5678 -a 0 -x {10.0 9.0 2834 ------- null} h -t 3.21936 -s 7 -d 8 -p ack -e 40 -c 0 -i 5678 -a 0 -x {10.0 9.0 2834 ------- null} r -t 3.2195 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5663 -a 0 -x {9.0 10.0 2836 ------- null} + -t 3.2195 -s 10 -d 7 -p ack -e 40 -c 0 -i 5682 -a 0 -x {10.0 9.0 2836 ------- null} - -t 3.2195 -s 10 -d 7 -p ack -e 40 -c 0 -i 5682 -a 0 -x {10.0 9.0 2836 ------- null} h -t 3.2195 -s 10 -d 7 -p ack -e 40 -c 0 -i 5682 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.2196 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5677 -a 0 -x {9.0 10.0 2843 ------- null} + -t 3.2196 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5677 -a 0 -x {9.0 10.0 2843 ------- null} h -t 3.2196 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5677 -a 0 -x {9.0 10.0 2843 ------- null} r -t 3.22013 -s 0 -d 9 -p ack -e 40 -c 0 -i 5672 -a 0 -x {10.0 9.0 2831 ------- null} + -t 3.22013 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5683 -a 0 -x {9.0 10.0 2846 ------- null} - -t 3.22013 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5683 -a 0 -x {9.0 10.0 2846 ------- null} h -t 3.22013 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5683 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.22016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5669 -a 0 -x {9.0 10.0 2839 ------- null} - -t 3.22016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5669 -a 0 -x {9.0 10.0 2839 ------- null} h -t 3.22016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5669 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.22029 -s 0 -d 9 -p ack -e 40 -c 0 -i 5676 -a 0 -x {10.0 9.0 2833 ------- null} - -t 3.22029 -s 0 -d 9 -p ack -e 40 -c 0 -i 5676 -a 0 -x {10.0 9.0 2833 ------- null} h -t 3.22029 -s 0 -d 9 -p ack -e 40 -c 0 -i 5676 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.22045 -s 10 -d 7 -p ack -e 40 -c 0 -i 5680 -a 0 -x {10.0 9.0 2835 ------- null} + -t 3.22045 -s 7 -d 0 -p ack -e 40 -c 0 -i 5680 -a 0 -x {10.0 9.0 2835 ------- null} h -t 3.22045 -s 7 -d 8 -p ack -e 40 -c 0 -i 5680 -a 0 -x {10.0 9.0 2835 ------- null} r -t 3.22059 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5665 -a 0 -x {9.0 10.0 2837 ------- null} + -t 3.22059 -s 10 -d 7 -p ack -e 40 -c 0 -i 5684 -a 0 -x {10.0 9.0 2837 ------- null} - -t 3.22059 -s 10 -d 7 -p ack -e 40 -c 0 -i 5684 -a 0 -x {10.0 9.0 2837 ------- null} h -t 3.22059 -s 10 -d 7 -p ack -e 40 -c 0 -i 5684 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.22059 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5679 -a 0 -x {9.0 10.0 2844 ------- null} + -t 3.22059 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5679 -a 0 -x {9.0 10.0 2844 ------- null} h -t 3.22059 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5679 -a 0 -x {9.0 10.0 2844 ------- null} + -t 3.22125 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5671 -a 0 -x {9.0 10.0 2840 ------- null} - -t 3.22125 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5671 -a 0 -x {9.0 10.0 2840 ------- null} h -t 3.22125 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5671 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.22126 -s 0 -d 9 -p ack -e 40 -c 0 -i 5674 -a 0 -x {10.0 9.0 2832 ------- null} + -t 3.22126 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5685 -a 0 -x {9.0 10.0 2847 ------- null} - -t 3.22126 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5685 -a 0 -x {9.0 10.0 2847 ------- null} h -t 3.22126 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5685 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.22136 -s 0 -d 9 -p ack -e 40 -c 0 -i 5678 -a 0 -x {10.0 9.0 2834 ------- null} - -t 3.22136 -s 0 -d 9 -p ack -e 40 -c 0 -i 5678 -a 0 -x {10.0 9.0 2834 ------- null} h -t 3.22136 -s 0 -d 9 -p ack -e 40 -c 0 -i 5678 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.22154 -s 10 -d 7 -p ack -e 40 -c 0 -i 5682 -a 0 -x {10.0 9.0 2836 ------- null} + -t 3.22154 -s 7 -d 0 -p ack -e 40 -c 0 -i 5682 -a 0 -x {10.0 9.0 2836 ------- null} h -t 3.22154 -s 7 -d 8 -p ack -e 40 -c 0 -i 5682 -a 0 -x {10.0 9.0 2836 ------- null} r -t 3.2217 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5681 -a 0 -x {9.0 10.0 2845 ------- null} + -t 3.2217 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5681 -a 0 -x {9.0 10.0 2845 ------- null} h -t 3.2217 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5681 -a 0 -x {9.0 10.0 2845 ------- null} r -t 3.22187 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5667 -a 0 -x {9.0 10.0 2838 ------- null} + -t 3.22187 -s 10 -d 7 -p ack -e 40 -c 0 -i 5686 -a 0 -x {10.0 9.0 2838 ------- null} - -t 3.22187 -s 10 -d 7 -p ack -e 40 -c 0 -i 5686 -a 0 -x {10.0 9.0 2838 ------- null} h -t 3.22187 -s 10 -d 7 -p ack -e 40 -c 0 -i 5686 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.22232 -s 0 -d 9 -p ack -e 40 -c 0 -i 5676 -a 0 -x {10.0 9.0 2833 ------- null} + -t 3.22232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5687 -a 0 -x {9.0 10.0 2848 ------- null} - -t 3.22232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5687 -a 0 -x {9.0 10.0 2848 ------- null} h -t 3.22232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5687 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.22234 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5673 -a 0 -x {9.0 10.0 2841 ------- null} - -t 3.22234 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5673 -a 0 -x {9.0 10.0 2841 ------- null} h -t 3.22234 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5673 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.22246 -s 0 -d 9 -p ack -e 40 -c 0 -i 5680 -a 0 -x {10.0 9.0 2835 ------- null} - -t 3.22246 -s 0 -d 9 -p ack -e 40 -c 0 -i 5680 -a 0 -x {10.0 9.0 2835 ------- null} h -t 3.22246 -s 0 -d 9 -p ack -e 40 -c 0 -i 5680 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.22262 -s 10 -d 7 -p ack -e 40 -c 0 -i 5684 -a 0 -x {10.0 9.0 2837 ------- null} + -t 3.22262 -s 7 -d 0 -p ack -e 40 -c 0 -i 5684 -a 0 -x {10.0 9.0 2837 ------- null} h -t 3.22262 -s 7 -d 8 -p ack -e 40 -c 0 -i 5684 -a 0 -x {10.0 9.0 2837 ------- null} r -t 3.22293 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5683 -a 0 -x {9.0 10.0 2846 ------- null} + -t 3.22293 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5683 -a 0 -x {9.0 10.0 2846 ------- null} h -t 3.22293 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5683 -a 0 -x {9.0 10.0 2846 ------- null} r -t 3.22296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5669 -a 0 -x {9.0 10.0 2839 ------- null} + -t 3.22296 -s 10 -d 7 -p ack -e 40 -c 0 -i 5688 -a 0 -x {10.0 9.0 2839 ------- null} - -t 3.22296 -s 10 -d 7 -p ack -e 40 -c 0 -i 5688 -a 0 -x {10.0 9.0 2839 ------- null} h -t 3.22296 -s 10 -d 7 -p ack -e 40 -c 0 -i 5688 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.22339 -s 0 -d 9 -p ack -e 40 -c 0 -i 5678 -a 0 -x {10.0 9.0 2834 ------- null} + -t 3.22339 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5689 -a 0 -x {9.0 10.0 2849 ------- null} - -t 3.22339 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5689 -a 0 -x {9.0 10.0 2849 ------- null} h -t 3.22339 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5689 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.22342 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5675 -a 0 -x {9.0 10.0 2842 ------- null} - -t 3.22342 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5675 -a 0 -x {9.0 10.0 2842 ------- null} h -t 3.22342 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5675 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.22354 -s 0 -d 9 -p ack -e 40 -c 0 -i 5682 -a 0 -x {10.0 9.0 2836 ------- null} - -t 3.22354 -s 0 -d 9 -p ack -e 40 -c 0 -i 5682 -a 0 -x {10.0 9.0 2836 ------- null} h -t 3.22354 -s 0 -d 9 -p ack -e 40 -c 0 -i 5682 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.2239 -s 10 -d 7 -p ack -e 40 -c 0 -i 5686 -a 0 -x {10.0 9.0 2838 ------- null} + -t 3.2239 -s 7 -d 0 -p ack -e 40 -c 0 -i 5686 -a 0 -x {10.0 9.0 2838 ------- null} h -t 3.2239 -s 7 -d 8 -p ack -e 40 -c 0 -i 5686 -a 0 -x {10.0 9.0 2838 ------- null} r -t 3.22405 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5671 -a 0 -x {9.0 10.0 2840 ------- null} + -t 3.22405 -s 10 -d 7 -p ack -e 40 -c 0 -i 5690 -a 0 -x {10.0 9.0 2840 ------- null} - -t 3.22405 -s 10 -d 7 -p ack -e 40 -c 0 -i 5690 -a 0 -x {10.0 9.0 2840 ------- null} h -t 3.22405 -s 10 -d 7 -p ack -e 40 -c 0 -i 5690 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.22406 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5685 -a 0 -x {9.0 10.0 2847 ------- null} + -t 3.22406 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5685 -a 0 -x {9.0 10.0 2847 ------- null} h -t 3.22406 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5685 -a 0 -x {9.0 10.0 2847 ------- null} r -t 3.2245 -s 0 -d 9 -p ack -e 40 -c 0 -i 5680 -a 0 -x {10.0 9.0 2835 ------- null} + -t 3.2245 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5691 -a 0 -x {9.0 10.0 2850 ------- null} - -t 3.2245 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5691 -a 0 -x {9.0 10.0 2850 ------- null} h -t 3.2245 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5691 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.22451 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5677 -a 0 -x {9.0 10.0 2843 ------- null} - -t 3.22451 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5677 -a 0 -x {9.0 10.0 2843 ------- null} h -t 3.22451 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5677 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.22472 -s 0 -d 9 -p ack -e 40 -c 0 -i 5684 -a 0 -x {10.0 9.0 2837 ------- null} - -t 3.22472 -s 0 -d 9 -p ack -e 40 -c 0 -i 5684 -a 0 -x {10.0 9.0 2837 ------- null} h -t 3.22472 -s 0 -d 9 -p ack -e 40 -c 0 -i 5684 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.22499 -s 10 -d 7 -p ack -e 40 -c 0 -i 5688 -a 0 -x {10.0 9.0 2839 ------- null} + -t 3.22499 -s 7 -d 0 -p ack -e 40 -c 0 -i 5688 -a 0 -x {10.0 9.0 2839 ------- null} h -t 3.22499 -s 7 -d 8 -p ack -e 40 -c 0 -i 5688 -a 0 -x {10.0 9.0 2839 ------- null} r -t 3.22512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5687 -a 0 -x {9.0 10.0 2848 ------- null} + -t 3.22512 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5687 -a 0 -x {9.0 10.0 2848 ------- null} h -t 3.22512 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5687 -a 0 -x {9.0 10.0 2848 ------- null} r -t 3.22514 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5673 -a 0 -x {9.0 10.0 2841 ------- null} + -t 3.22514 -s 10 -d 7 -p ack -e 40 -c 0 -i 5692 -a 0 -x {10.0 9.0 2841 ------- null} - -t 3.22514 -s 10 -d 7 -p ack -e 40 -c 0 -i 5692 -a 0 -x {10.0 9.0 2841 ------- null} h -t 3.22514 -s 10 -d 7 -p ack -e 40 -c 0 -i 5692 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.22557 -s 0 -d 9 -p ack -e 40 -c 0 -i 5682 -a 0 -x {10.0 9.0 2836 ------- null} + -t 3.22557 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5693 -a 0 -x {9.0 10.0 2851 ------- null} - -t 3.22557 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5693 -a 0 -x {9.0 10.0 2851 ------- null} h -t 3.22557 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5693 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.2256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5679 -a 0 -x {9.0 10.0 2844 ------- null} - -t 3.2256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5679 -a 0 -x {9.0 10.0 2844 ------- null} h -t 3.2256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5679 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.22576 -s 0 -d 9 -p ack -e 40 -c 0 -i 5686 -a 0 -x {10.0 9.0 2838 ------- null} - -t 3.22576 -s 0 -d 9 -p ack -e 40 -c 0 -i 5686 -a 0 -x {10.0 9.0 2838 ------- null} h -t 3.22576 -s 0 -d 9 -p ack -e 40 -c 0 -i 5686 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.22608 -s 10 -d 7 -p ack -e 40 -c 0 -i 5690 -a 0 -x {10.0 9.0 2840 ------- null} + -t 3.22608 -s 7 -d 0 -p ack -e 40 -c 0 -i 5690 -a 0 -x {10.0 9.0 2840 ------- null} h -t 3.22608 -s 7 -d 8 -p ack -e 40 -c 0 -i 5690 -a 0 -x {10.0 9.0 2840 ------- null} r -t 3.22619 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5689 -a 0 -x {9.0 10.0 2849 ------- null} + -t 3.22619 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5689 -a 0 -x {9.0 10.0 2849 ------- null} h -t 3.22619 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5689 -a 0 -x {9.0 10.0 2849 ------- null} r -t 3.22622 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5675 -a 0 -x {9.0 10.0 2842 ------- null} + -t 3.22622 -s 10 -d 7 -p ack -e 40 -c 0 -i 5694 -a 0 -x {10.0 9.0 2842 ------- null} - -t 3.22622 -s 10 -d 7 -p ack -e 40 -c 0 -i 5694 -a 0 -x {10.0 9.0 2842 ------- null} h -t 3.22622 -s 10 -d 7 -p ack -e 40 -c 0 -i 5694 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.22669 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5681 -a 0 -x {9.0 10.0 2845 ------- null} - -t 3.22669 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5681 -a 0 -x {9.0 10.0 2845 ------- null} h -t 3.22669 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5681 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.22675 -s 0 -d 9 -p ack -e 40 -c 0 -i 5684 -a 0 -x {10.0 9.0 2837 ------- null} + -t 3.22675 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5695 -a 0 -x {9.0 10.0 2852 ------- null} - -t 3.22675 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5695 -a 0 -x {9.0 10.0 2852 ------- null} h -t 3.22675 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5695 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.22688 -s 0 -d 9 -p ack -e 40 -c 0 -i 5688 -a 0 -x {10.0 9.0 2839 ------- null} - -t 3.22688 -s 0 -d 9 -p ack -e 40 -c 0 -i 5688 -a 0 -x {10.0 9.0 2839 ------- null} h -t 3.22688 -s 0 -d 9 -p ack -e 40 -c 0 -i 5688 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.22717 -s 10 -d 7 -p ack -e 40 -c 0 -i 5692 -a 0 -x {10.0 9.0 2841 ------- null} + -t 3.22717 -s 7 -d 0 -p ack -e 40 -c 0 -i 5692 -a 0 -x {10.0 9.0 2841 ------- null} h -t 3.22717 -s 7 -d 8 -p ack -e 40 -c 0 -i 5692 -a 0 -x {10.0 9.0 2841 ------- null} r -t 3.2273 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5691 -a 0 -x {9.0 10.0 2850 ------- null} + -t 3.2273 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5691 -a 0 -x {9.0 10.0 2850 ------- null} h -t 3.2273 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5691 -a 0 -x {9.0 10.0 2850 ------- null} r -t 3.22731 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5677 -a 0 -x {9.0 10.0 2843 ------- null} + -t 3.22731 -s 10 -d 7 -p ack -e 40 -c 0 -i 5696 -a 0 -x {10.0 9.0 2843 ------- null} - -t 3.22731 -s 10 -d 7 -p ack -e 40 -c 0 -i 5696 -a 0 -x {10.0 9.0 2843 ------- null} h -t 3.22731 -s 10 -d 7 -p ack -e 40 -c 0 -i 5696 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.22778 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5683 -a 0 -x {9.0 10.0 2846 ------- null} - -t 3.22778 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5683 -a 0 -x {9.0 10.0 2846 ------- null} h -t 3.22778 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5683 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.22779 -s 0 -d 9 -p ack -e 40 -c 0 -i 5686 -a 0 -x {10.0 9.0 2838 ------- null} + -t 3.22779 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5697 -a 0 -x {9.0 10.0 2853 ------- null} - -t 3.22779 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5697 -a 0 -x {9.0 10.0 2853 ------- null} h -t 3.22779 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5697 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.22786 -s 0 -d 9 -p ack -e 40 -c 0 -i 5690 -a 0 -x {10.0 9.0 2840 ------- null} - -t 3.22786 -s 0 -d 9 -p ack -e 40 -c 0 -i 5690 -a 0 -x {10.0 9.0 2840 ------- null} h -t 3.22786 -s 0 -d 9 -p ack -e 40 -c 0 -i 5690 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.22826 -s 10 -d 7 -p ack -e 40 -c 0 -i 5694 -a 0 -x {10.0 9.0 2842 ------- null} + -t 3.22826 -s 7 -d 0 -p ack -e 40 -c 0 -i 5694 -a 0 -x {10.0 9.0 2842 ------- null} h -t 3.22826 -s 7 -d 8 -p ack -e 40 -c 0 -i 5694 -a 0 -x {10.0 9.0 2842 ------- null} r -t 3.22837 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5693 -a 0 -x {9.0 10.0 2851 ------- null} + -t 3.22837 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5693 -a 0 -x {9.0 10.0 2851 ------- null} h -t 3.22837 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5693 -a 0 -x {9.0 10.0 2851 ------- null} r -t 3.2284 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5679 -a 0 -x {9.0 10.0 2844 ------- null} + -t 3.2284 -s 10 -d 7 -p ack -e 40 -c 0 -i 5698 -a 0 -x {10.0 9.0 2844 ------- null} - -t 3.2284 -s 10 -d 7 -p ack -e 40 -c 0 -i 5698 -a 0 -x {10.0 9.0 2844 ------- null} h -t 3.2284 -s 10 -d 7 -p ack -e 40 -c 0 -i 5698 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.22886 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5685 -a 0 -x {9.0 10.0 2847 ------- null} - -t 3.22886 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5685 -a 0 -x {9.0 10.0 2847 ------- null} h -t 3.22886 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5685 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.22891 -s 0 -d 9 -p ack -e 40 -c 0 -i 5688 -a 0 -x {10.0 9.0 2839 ------- null} + -t 3.22891 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5699 -a 0 -x {9.0 10.0 2854 ------- null} - -t 3.22891 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5699 -a 0 -x {9.0 10.0 2854 ------- null} h -t 3.22891 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5699 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.22902 -s 0 -d 9 -p ack -e 40 -c 0 -i 5692 -a 0 -x {10.0 9.0 2841 ------- null} - -t 3.22902 -s 0 -d 9 -p ack -e 40 -c 0 -i 5692 -a 0 -x {10.0 9.0 2841 ------- null} h -t 3.22902 -s 0 -d 9 -p ack -e 40 -c 0 -i 5692 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.22934 -s 10 -d 7 -p ack -e 40 -c 0 -i 5696 -a 0 -x {10.0 9.0 2843 ------- null} + -t 3.22934 -s 7 -d 0 -p ack -e 40 -c 0 -i 5696 -a 0 -x {10.0 9.0 2843 ------- null} h -t 3.22934 -s 7 -d 8 -p ack -e 40 -c 0 -i 5696 -a 0 -x {10.0 9.0 2843 ------- null} r -t 3.22949 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5681 -a 0 -x {9.0 10.0 2845 ------- null} + -t 3.22949 -s 10 -d 7 -p ack -e 40 -c 0 -i 5700 -a 0 -x {10.0 9.0 2845 ------- null} - -t 3.22949 -s 10 -d 7 -p ack -e 40 -c 0 -i 5700 -a 0 -x {10.0 9.0 2845 ------- null} h -t 3.22949 -s 10 -d 7 -p ack -e 40 -c 0 -i 5700 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.22955 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5695 -a 0 -x {9.0 10.0 2852 ------- null} + -t 3.22955 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5695 -a 0 -x {9.0 10.0 2852 ------- null} h -t 3.22955 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5695 -a 0 -x {9.0 10.0 2852 ------- null} r -t 3.22989 -s 0 -d 9 -p ack -e 40 -c 0 -i 5690 -a 0 -x {10.0 9.0 2840 ------- null} + -t 3.22989 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5701 -a 0 -x {9.0 10.0 2855 ------- null} - -t 3.22989 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5701 -a 0 -x {9.0 10.0 2855 ------- null} h -t 3.22989 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5701 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.22995 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5687 -a 0 -x {9.0 10.0 2848 ------- null} - -t 3.22995 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5687 -a 0 -x {9.0 10.0 2848 ------- null} h -t 3.22995 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5687 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.23005 -s 0 -d 9 -p ack -e 40 -c 0 -i 5694 -a 0 -x {10.0 9.0 2842 ------- null} - -t 3.23005 -s 0 -d 9 -p ack -e 40 -c 0 -i 5694 -a 0 -x {10.0 9.0 2842 ------- null} h -t 3.23005 -s 0 -d 9 -p ack -e 40 -c 0 -i 5694 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.23043 -s 10 -d 7 -p ack -e 40 -c 0 -i 5698 -a 0 -x {10.0 9.0 2844 ------- null} + -t 3.23043 -s 7 -d 0 -p ack -e 40 -c 0 -i 5698 -a 0 -x {10.0 9.0 2844 ------- null} h -t 3.23043 -s 7 -d 8 -p ack -e 40 -c 0 -i 5698 -a 0 -x {10.0 9.0 2844 ------- null} r -t 3.23058 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5683 -a 0 -x {9.0 10.0 2846 ------- null} + -t 3.23058 -s 10 -d 7 -p ack -e 40 -c 0 -i 5702 -a 0 -x {10.0 9.0 2846 ------- null} - -t 3.23058 -s 10 -d 7 -p ack -e 40 -c 0 -i 5702 -a 0 -x {10.0 9.0 2846 ------- null} h -t 3.23058 -s 10 -d 7 -p ack -e 40 -c 0 -i 5702 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.23059 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5697 -a 0 -x {9.0 10.0 2853 ------- null} + -t 3.23059 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5697 -a 0 -x {9.0 10.0 2853 ------- null} h -t 3.23059 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5697 -a 0 -x {9.0 10.0 2853 ------- null} + -t 3.23104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5689 -a 0 -x {9.0 10.0 2849 ------- null} - -t 3.23104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5689 -a 0 -x {9.0 10.0 2849 ------- null} h -t 3.23104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5689 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.23106 -s 0 -d 9 -p ack -e 40 -c 0 -i 5692 -a 0 -x {10.0 9.0 2841 ------- null} + -t 3.23106 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5703 -a 0 -x {9.0 10.0 2856 ------- null} - -t 3.23106 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5703 -a 0 -x {9.0 10.0 2856 ------- null} h -t 3.23106 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5703 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.2313 -s 0 -d 9 -p ack -e 40 -c 0 -i 5696 -a 0 -x {10.0 9.0 2843 ------- null} - -t 3.2313 -s 0 -d 9 -p ack -e 40 -c 0 -i 5696 -a 0 -x {10.0 9.0 2843 ------- null} h -t 3.2313 -s 0 -d 9 -p ack -e 40 -c 0 -i 5696 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.23152 -s 10 -d 7 -p ack -e 40 -c 0 -i 5700 -a 0 -x {10.0 9.0 2845 ------- null} + -t 3.23152 -s 7 -d 0 -p ack -e 40 -c 0 -i 5700 -a 0 -x {10.0 9.0 2845 ------- null} h -t 3.23152 -s 7 -d 8 -p ack -e 40 -c 0 -i 5700 -a 0 -x {10.0 9.0 2845 ------- null} r -t 3.23166 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5685 -a 0 -x {9.0 10.0 2847 ------- null} + -t 3.23166 -s 10 -d 7 -p ack -e 40 -c 0 -i 5704 -a 0 -x {10.0 9.0 2847 ------- null} - -t 3.23166 -s 10 -d 7 -p ack -e 40 -c 0 -i 5704 -a 0 -x {10.0 9.0 2847 ------- null} h -t 3.23166 -s 10 -d 7 -p ack -e 40 -c 0 -i 5704 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.23171 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5699 -a 0 -x {9.0 10.0 2854 ------- null} + -t 3.23171 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5699 -a 0 -x {9.0 10.0 2854 ------- null} h -t 3.23171 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5699 -a 0 -x {9.0 10.0 2854 ------- null} r -t 3.23208 -s 0 -d 9 -p ack -e 40 -c 0 -i 5694 -a 0 -x {10.0 9.0 2842 ------- null} + -t 3.23208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5705 -a 0 -x {9.0 10.0 2857 ------- null} - -t 3.23208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5705 -a 0 -x {9.0 10.0 2857 ------- null} h -t 3.23208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5705 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.23226 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5691 -a 0 -x {9.0 10.0 2850 ------- null} - -t 3.23226 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5691 -a 0 -x {9.0 10.0 2850 ------- null} h -t 3.23226 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5691 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.23232 -s 0 -d 9 -p ack -e 40 -c 0 -i 5698 -a 0 -x {10.0 9.0 2844 ------- null} - -t 3.23232 -s 0 -d 9 -p ack -e 40 -c 0 -i 5698 -a 0 -x {10.0 9.0 2844 ------- null} h -t 3.23232 -s 0 -d 9 -p ack -e 40 -c 0 -i 5698 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.23261 -s 10 -d 7 -p ack -e 40 -c 0 -i 5702 -a 0 -x {10.0 9.0 2846 ------- null} + -t 3.23261 -s 7 -d 0 -p ack -e 40 -c 0 -i 5702 -a 0 -x {10.0 9.0 2846 ------- null} h -t 3.23261 -s 7 -d 8 -p ack -e 40 -c 0 -i 5702 -a 0 -x {10.0 9.0 2846 ------- null} r -t 3.23269 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5701 -a 0 -x {9.0 10.0 2855 ------- null} + -t 3.23269 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5701 -a 0 -x {9.0 10.0 2855 ------- null} h -t 3.23269 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5701 -a 0 -x {9.0 10.0 2855 ------- null} r -t 3.23275 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5687 -a 0 -x {9.0 10.0 2848 ------- null} + -t 3.23275 -s 10 -d 7 -p ack -e 40 -c 0 -i 5706 -a 0 -x {10.0 9.0 2848 ------- null} - -t 3.23275 -s 10 -d 7 -p ack -e 40 -c 0 -i 5706 -a 0 -x {10.0 9.0 2848 ------- null} h -t 3.23275 -s 10 -d 7 -p ack -e 40 -c 0 -i 5706 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.23333 -s 0 -d 9 -p ack -e 40 -c 0 -i 5696 -a 0 -x {10.0 9.0 2843 ------- null} + -t 3.23333 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5707 -a 0 -x {9.0 10.0 2858 ------- null} - -t 3.23333 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5707 -a 0 -x {9.0 10.0 2858 ------- null} h -t 3.23333 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5707 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.23334 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5693 -a 0 -x {9.0 10.0 2851 ------- null} - -t 3.23334 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5693 -a 0 -x {9.0 10.0 2851 ------- null} h -t 3.23334 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5693 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.23346 -s 0 -d 9 -p ack -e 40 -c 0 -i 5700 -a 0 -x {10.0 9.0 2845 ------- null} - -t 3.23346 -s 0 -d 9 -p ack -e 40 -c 0 -i 5700 -a 0 -x {10.0 9.0 2845 ------- null} h -t 3.23346 -s 0 -d 9 -p ack -e 40 -c 0 -i 5700 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.2337 -s 10 -d 7 -p ack -e 40 -c 0 -i 5704 -a 0 -x {10.0 9.0 2847 ------- null} + -t 3.2337 -s 7 -d 0 -p ack -e 40 -c 0 -i 5704 -a 0 -x {10.0 9.0 2847 ------- null} h -t 3.2337 -s 7 -d 8 -p ack -e 40 -c 0 -i 5704 -a 0 -x {10.0 9.0 2847 ------- null} r -t 3.23384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5689 -a 0 -x {9.0 10.0 2849 ------- null} + -t 3.23384 -s 10 -d 7 -p ack -e 40 -c 0 -i 5708 -a 0 -x {10.0 9.0 2849 ------- null} - -t 3.23384 -s 10 -d 7 -p ack -e 40 -c 0 -i 5708 -a 0 -x {10.0 9.0 2849 ------- null} h -t 3.23384 -s 10 -d 7 -p ack -e 40 -c 0 -i 5708 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.23386 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5703 -a 0 -x {9.0 10.0 2856 ------- null} + -t 3.23386 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5703 -a 0 -x {9.0 10.0 2856 ------- null} h -t 3.23386 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5703 -a 0 -x {9.0 10.0 2856 ------- null} r -t 3.23435 -s 0 -d 9 -p ack -e 40 -c 0 -i 5698 -a 0 -x {10.0 9.0 2844 ------- null} + -t 3.23435 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5709 -a 0 -x {9.0 10.0 2859 ------- null} - -t 3.23435 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5709 -a 0 -x {9.0 10.0 2859 ------- null} h -t 3.23435 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5709 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.23443 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5695 -a 0 -x {9.0 10.0 2852 ------- null} - -t 3.23443 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5695 -a 0 -x {9.0 10.0 2852 ------- null} h -t 3.23443 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5695 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.23474 -s 0 -d 9 -p ack -e 40 -c 0 -i 5702 -a 0 -x {10.0 9.0 2846 ------- null} - -t 3.23474 -s 0 -d 9 -p ack -e 40 -c 0 -i 5702 -a 0 -x {10.0 9.0 2846 ------- null} h -t 3.23474 -s 0 -d 9 -p ack -e 40 -c 0 -i 5702 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.23478 -s 10 -d 7 -p ack -e 40 -c 0 -i 5706 -a 0 -x {10.0 9.0 2848 ------- null} + -t 3.23478 -s 7 -d 0 -p ack -e 40 -c 0 -i 5706 -a 0 -x {10.0 9.0 2848 ------- null} h -t 3.23478 -s 7 -d 8 -p ack -e 40 -c 0 -i 5706 -a 0 -x {10.0 9.0 2848 ------- null} r -t 3.23488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5705 -a 0 -x {9.0 10.0 2857 ------- null} + -t 3.23488 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5705 -a 0 -x {9.0 10.0 2857 ------- null} h -t 3.23488 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5705 -a 0 -x {9.0 10.0 2857 ------- null} r -t 3.23506 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5691 -a 0 -x {9.0 10.0 2850 ------- null} + -t 3.23506 -s 10 -d 7 -p ack -e 40 -c 0 -i 5710 -a 0 -x {10.0 9.0 2850 ------- null} - -t 3.23506 -s 10 -d 7 -p ack -e 40 -c 0 -i 5710 -a 0 -x {10.0 9.0 2850 ------- null} h -t 3.23506 -s 10 -d 7 -p ack -e 40 -c 0 -i 5710 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.23549 -s 0 -d 9 -p ack -e 40 -c 0 -i 5700 -a 0 -x {10.0 9.0 2845 ------- null} + -t 3.23549 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5711 -a 0 -x {9.0 10.0 2860 ------- null} - -t 3.23549 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5711 -a 0 -x {9.0 10.0 2860 ------- null} h -t 3.23549 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5711 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.23574 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5697 -a 0 -x {9.0 10.0 2853 ------- null} - -t 3.23574 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5697 -a 0 -x {9.0 10.0 2853 ------- null} h -t 3.23574 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5697 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.23582 -s 0 -d 9 -p ack -e 40 -c 0 -i 5704 -a 0 -x {10.0 9.0 2847 ------- null} - -t 3.23582 -s 0 -d 9 -p ack -e 40 -c 0 -i 5704 -a 0 -x {10.0 9.0 2847 ------- null} h -t 3.23582 -s 0 -d 9 -p ack -e 40 -c 0 -i 5704 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.23587 -s 10 -d 7 -p ack -e 40 -c 0 -i 5708 -a 0 -x {10.0 9.0 2849 ------- null} + -t 3.23587 -s 7 -d 0 -p ack -e 40 -c 0 -i 5708 -a 0 -x {10.0 9.0 2849 ------- null} h -t 3.23587 -s 7 -d 8 -p ack -e 40 -c 0 -i 5708 -a 0 -x {10.0 9.0 2849 ------- null} r -t 3.23613 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5707 -a 0 -x {9.0 10.0 2858 ------- null} + -t 3.23613 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5707 -a 0 -x {9.0 10.0 2858 ------- null} h -t 3.23613 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5707 -a 0 -x {9.0 10.0 2858 ------- null} r -t 3.23614 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5693 -a 0 -x {9.0 10.0 2851 ------- null} + -t 3.23614 -s 10 -d 7 -p ack -e 40 -c 0 -i 5712 -a 0 -x {10.0 9.0 2851 ------- null} - -t 3.23614 -s 10 -d 7 -p ack -e 40 -c 0 -i 5712 -a 0 -x {10.0 9.0 2851 ------- null} h -t 3.23614 -s 10 -d 7 -p ack -e 40 -c 0 -i 5712 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.23677 -s 0 -d 9 -p ack -e 40 -c 0 -i 5702 -a 0 -x {10.0 9.0 2846 ------- null} + -t 3.23677 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5713 -a 0 -x {9.0 10.0 2861 ------- null} - -t 3.23677 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5713 -a 0 -x {9.0 10.0 2861 ------- null} h -t 3.23677 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5713 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.23683 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5699 -a 0 -x {9.0 10.0 2854 ------- null} - -t 3.23683 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5699 -a 0 -x {9.0 10.0 2854 ------- null} h -t 3.23683 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5699 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.23691 -s 0 -d 9 -p ack -e 40 -c 0 -i 5706 -a 0 -x {10.0 9.0 2848 ------- null} - -t 3.23691 -s 0 -d 9 -p ack -e 40 -c 0 -i 5706 -a 0 -x {10.0 9.0 2848 ------- null} h -t 3.23691 -s 0 -d 9 -p ack -e 40 -c 0 -i 5706 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.23709 -s 10 -d 7 -p ack -e 40 -c 0 -i 5710 -a 0 -x {10.0 9.0 2850 ------- null} + -t 3.23709 -s 7 -d 0 -p ack -e 40 -c 0 -i 5710 -a 0 -x {10.0 9.0 2850 ------- null} h -t 3.23709 -s 7 -d 8 -p ack -e 40 -c 0 -i 5710 -a 0 -x {10.0 9.0 2850 ------- null} r -t 3.23715 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5709 -a 0 -x {9.0 10.0 2859 ------- null} + -t 3.23715 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5709 -a 0 -x {9.0 10.0 2859 ------- null} h -t 3.23715 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5709 -a 0 -x {9.0 10.0 2859 ------- null} r -t 3.23723 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5695 -a 0 -x {9.0 10.0 2852 ------- null} + -t 3.23723 -s 10 -d 7 -p ack -e 40 -c 0 -i 5714 -a 0 -x {10.0 9.0 2852 ------- null} - -t 3.23723 -s 10 -d 7 -p ack -e 40 -c 0 -i 5714 -a 0 -x {10.0 9.0 2852 ------- null} h -t 3.23723 -s 10 -d 7 -p ack -e 40 -c 0 -i 5714 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.23786 -s 0 -d 9 -p ack -e 40 -c 0 -i 5704 -a 0 -x {10.0 9.0 2847 ------- null} + -t 3.23786 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5715 -a 0 -x {9.0 10.0 2862 ------- null} - -t 3.23786 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5715 -a 0 -x {9.0 10.0 2862 ------- null} h -t 3.23786 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5715 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.23792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5701 -a 0 -x {9.0 10.0 2855 ------- null} - -t 3.23792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5701 -a 0 -x {9.0 10.0 2855 ------- null} h -t 3.23792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5701 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.2381 -s 0 -d 9 -p ack -e 40 -c 0 -i 5708 -a 0 -x {10.0 9.0 2849 ------- null} - -t 3.2381 -s 0 -d 9 -p ack -e 40 -c 0 -i 5708 -a 0 -x {10.0 9.0 2849 ------- null} h -t 3.2381 -s 0 -d 9 -p ack -e 40 -c 0 -i 5708 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.23818 -s 10 -d 7 -p ack -e 40 -c 0 -i 5712 -a 0 -x {10.0 9.0 2851 ------- null} + -t 3.23818 -s 7 -d 0 -p ack -e 40 -c 0 -i 5712 -a 0 -x {10.0 9.0 2851 ------- null} h -t 3.23818 -s 7 -d 8 -p ack -e 40 -c 0 -i 5712 -a 0 -x {10.0 9.0 2851 ------- null} r -t 3.23829 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5711 -a 0 -x {9.0 10.0 2860 ------- null} + -t 3.23829 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5711 -a 0 -x {9.0 10.0 2860 ------- null} h -t 3.23829 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5711 -a 0 -x {9.0 10.0 2860 ------- null} r -t 3.23854 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5697 -a 0 -x {9.0 10.0 2853 ------- null} + -t 3.23854 -s 10 -d 7 -p ack -e 40 -c 0 -i 5716 -a 0 -x {10.0 9.0 2853 ------- null} - -t 3.23854 -s 10 -d 7 -p ack -e 40 -c 0 -i 5716 -a 0 -x {10.0 9.0 2853 ------- null} h -t 3.23854 -s 10 -d 7 -p ack -e 40 -c 0 -i 5716 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.23894 -s 0 -d 9 -p ack -e 40 -c 0 -i 5706 -a 0 -x {10.0 9.0 2848 ------- null} + -t 3.23894 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5717 -a 0 -x {9.0 10.0 2863 ------- null} - -t 3.23894 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5717 -a 0 -x {9.0 10.0 2863 ------- null} h -t 3.23894 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5717 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.23901 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5703 -a 0 -x {9.0 10.0 2856 ------- null} - -t 3.23901 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5703 -a 0 -x {9.0 10.0 2856 ------- null} h -t 3.23901 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5703 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.23926 -s 0 -d 9 -p ack -e 40 -c 0 -i 5710 -a 0 -x {10.0 9.0 2850 ------- null} - -t 3.23926 -s 0 -d 9 -p ack -e 40 -c 0 -i 5710 -a 0 -x {10.0 9.0 2850 ------- null} h -t 3.23926 -s 0 -d 9 -p ack -e 40 -c 0 -i 5710 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.23926 -s 10 -d 7 -p ack -e 40 -c 0 -i 5714 -a 0 -x {10.0 9.0 2852 ------- null} + -t 3.23926 -s 7 -d 0 -p ack -e 40 -c 0 -i 5714 -a 0 -x {10.0 9.0 2852 ------- null} h -t 3.23926 -s 7 -d 8 -p ack -e 40 -c 0 -i 5714 -a 0 -x {10.0 9.0 2852 ------- null} r -t 3.23957 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5713 -a 0 -x {9.0 10.0 2861 ------- null} + -t 3.23957 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5713 -a 0 -x {9.0 10.0 2861 ------- null} h -t 3.23957 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5713 -a 0 -x {9.0 10.0 2861 ------- null} r -t 3.23963 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5699 -a 0 -x {9.0 10.0 2854 ------- null} + -t 3.23963 -s 10 -d 7 -p ack -e 40 -c 0 -i 5718 -a 0 -x {10.0 9.0 2854 ------- null} - -t 3.23963 -s 10 -d 7 -p ack -e 40 -c 0 -i 5718 -a 0 -x {10.0 9.0 2854 ------- null} h -t 3.23963 -s 10 -d 7 -p ack -e 40 -c 0 -i 5718 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.24013 -s 0 -d 9 -p ack -e 40 -c 0 -i 5708 -a 0 -x {10.0 9.0 2849 ------- null} + -t 3.24013 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5719 -a 0 -x {9.0 10.0 2864 ------- null} - -t 3.24013 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5719 -a 0 -x {9.0 10.0 2864 ------- null} h -t 3.24013 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5719 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.24016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5705 -a 0 -x {9.0 10.0 2857 ------- null} - -t 3.24016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5705 -a 0 -x {9.0 10.0 2857 ------- null} h -t 3.24016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5705 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.24032 -s 0 -d 9 -p ack -e 40 -c 0 -i 5712 -a 0 -x {10.0 9.0 2851 ------- null} - -t 3.24032 -s 0 -d 9 -p ack -e 40 -c 0 -i 5712 -a 0 -x {10.0 9.0 2851 ------- null} h -t 3.24032 -s 0 -d 9 -p ack -e 40 -c 0 -i 5712 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.24058 -s 10 -d 7 -p ack -e 40 -c 0 -i 5716 -a 0 -x {10.0 9.0 2853 ------- null} + -t 3.24058 -s 7 -d 0 -p ack -e 40 -c 0 -i 5716 -a 0 -x {10.0 9.0 2853 ------- null} h -t 3.24058 -s 7 -d 8 -p ack -e 40 -c 0 -i 5716 -a 0 -x {10.0 9.0 2853 ------- null} r -t 3.24066 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5715 -a 0 -x {9.0 10.0 2862 ------- null} + -t 3.24066 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5715 -a 0 -x {9.0 10.0 2862 ------- null} h -t 3.24066 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5715 -a 0 -x {9.0 10.0 2862 ------- null} r -t 3.24072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5701 -a 0 -x {9.0 10.0 2855 ------- null} + -t 3.24072 -s 10 -d 7 -p ack -e 40 -c 0 -i 5720 -a 0 -x {10.0 9.0 2855 ------- null} - -t 3.24072 -s 10 -d 7 -p ack -e 40 -c 0 -i 5720 -a 0 -x {10.0 9.0 2855 ------- null} h -t 3.24072 -s 10 -d 7 -p ack -e 40 -c 0 -i 5720 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.24125 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5707 -a 0 -x {9.0 10.0 2858 ------- null} - -t 3.24125 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5707 -a 0 -x {9.0 10.0 2858 ------- null} h -t 3.24125 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5707 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.2413 -s 0 -d 9 -p ack -e 40 -c 0 -i 5710 -a 0 -x {10.0 9.0 2850 ------- null} + -t 3.2413 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5721 -a 0 -x {9.0 10.0 2865 ------- null} - -t 3.2413 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5721 -a 0 -x {9.0 10.0 2865 ------- null} h -t 3.2413 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5721 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.24146 -s 0 -d 9 -p ack -e 40 -c 0 -i 5714 -a 0 -x {10.0 9.0 2852 ------- null} - -t 3.24146 -s 0 -d 9 -p ack -e 40 -c 0 -i 5714 -a 0 -x {10.0 9.0 2852 ------- null} h -t 3.24146 -s 0 -d 9 -p ack -e 40 -c 0 -i 5714 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.24166 -s 10 -d 7 -p ack -e 40 -c 0 -i 5718 -a 0 -x {10.0 9.0 2854 ------- null} + -t 3.24166 -s 7 -d 0 -p ack -e 40 -c 0 -i 5718 -a 0 -x {10.0 9.0 2854 ------- null} h -t 3.24166 -s 7 -d 8 -p ack -e 40 -c 0 -i 5718 -a 0 -x {10.0 9.0 2854 ------- null} r -t 3.24174 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5717 -a 0 -x {9.0 10.0 2863 ------- null} + -t 3.24174 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5717 -a 0 -x {9.0 10.0 2863 ------- null} h -t 3.24174 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5717 -a 0 -x {9.0 10.0 2863 ------- null} r -t 3.24181 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5703 -a 0 -x {9.0 10.0 2856 ------- null} + -t 3.24181 -s 10 -d 7 -p ack -e 40 -c 0 -i 5722 -a 0 -x {10.0 9.0 2856 ------- null} - -t 3.24181 -s 10 -d 7 -p ack -e 40 -c 0 -i 5722 -a 0 -x {10.0 9.0 2856 ------- null} h -t 3.24181 -s 10 -d 7 -p ack -e 40 -c 0 -i 5722 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.24234 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5709 -a 0 -x {9.0 10.0 2859 ------- null} - -t 3.24234 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5709 -a 0 -x {9.0 10.0 2859 ------- null} h -t 3.24234 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5709 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.24235 -s 0 -d 9 -p ack -e 40 -c 0 -i 5712 -a 0 -x {10.0 9.0 2851 ------- null} + -t 3.24235 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5723 -a 0 -x {9.0 10.0 2866 ------- null} - -t 3.24235 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5723 -a 0 -x {9.0 10.0 2866 ------- null} h -t 3.24235 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5723 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.24253 -s 0 -d 9 -p ack -e 40 -c 0 -i 5716 -a 0 -x {10.0 9.0 2853 ------- null} - -t 3.24253 -s 0 -d 9 -p ack -e 40 -c 0 -i 5716 -a 0 -x {10.0 9.0 2853 ------- null} h -t 3.24253 -s 0 -d 9 -p ack -e 40 -c 0 -i 5716 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.24275 -s 10 -d 7 -p ack -e 40 -c 0 -i 5720 -a 0 -x {10.0 9.0 2855 ------- null} + -t 3.24275 -s 7 -d 0 -p ack -e 40 -c 0 -i 5720 -a 0 -x {10.0 9.0 2855 ------- null} h -t 3.24275 -s 7 -d 8 -p ack -e 40 -c 0 -i 5720 -a 0 -x {10.0 9.0 2855 ------- null} r -t 3.24293 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5719 -a 0 -x {9.0 10.0 2864 ------- null} + -t 3.24293 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5719 -a 0 -x {9.0 10.0 2864 ------- null} h -t 3.24293 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5719 -a 0 -x {9.0 10.0 2864 ------- null} r -t 3.24296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5705 -a 0 -x {9.0 10.0 2857 ------- null} + -t 3.24296 -s 10 -d 7 -p ack -e 40 -c 0 -i 5724 -a 0 -x {10.0 9.0 2857 ------- null} - -t 3.24296 -s 10 -d 7 -p ack -e 40 -c 0 -i 5724 -a 0 -x {10.0 9.0 2857 ------- null} h -t 3.24296 -s 10 -d 7 -p ack -e 40 -c 0 -i 5724 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.24342 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5711 -a 0 -x {9.0 10.0 2860 ------- null} - -t 3.24342 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5711 -a 0 -x {9.0 10.0 2860 ------- null} h -t 3.24342 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5711 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.24349 -s 0 -d 9 -p ack -e 40 -c 0 -i 5714 -a 0 -x {10.0 9.0 2852 ------- null} + -t 3.24349 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5725 -a 0 -x {9.0 10.0 2867 ------- null} - -t 3.24349 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5725 -a 0 -x {9.0 10.0 2867 ------- null} h -t 3.24349 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5725 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.24366 -s 0 -d 9 -p ack -e 40 -c 0 -i 5718 -a 0 -x {10.0 9.0 2854 ------- null} - -t 3.24366 -s 0 -d 9 -p ack -e 40 -c 0 -i 5718 -a 0 -x {10.0 9.0 2854 ------- null} h -t 3.24366 -s 0 -d 9 -p ack -e 40 -c 0 -i 5718 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.24384 -s 10 -d 7 -p ack -e 40 -c 0 -i 5722 -a 0 -x {10.0 9.0 2856 ------- null} + -t 3.24384 -s 7 -d 0 -p ack -e 40 -c 0 -i 5722 -a 0 -x {10.0 9.0 2856 ------- null} h -t 3.24384 -s 7 -d 8 -p ack -e 40 -c 0 -i 5722 -a 0 -x {10.0 9.0 2856 ------- null} r -t 3.24405 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5707 -a 0 -x {9.0 10.0 2858 ------- null} + -t 3.24405 -s 10 -d 7 -p ack -e 40 -c 0 -i 5726 -a 0 -x {10.0 9.0 2858 ------- null} - -t 3.24405 -s 10 -d 7 -p ack -e 40 -c 0 -i 5726 -a 0 -x {10.0 9.0 2858 ------- null} h -t 3.24405 -s 10 -d 7 -p ack -e 40 -c 0 -i 5726 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.2441 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5721 -a 0 -x {9.0 10.0 2865 ------- null} + -t 3.2441 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5721 -a 0 -x {9.0 10.0 2865 ------- null} h -t 3.2441 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5721 -a 0 -x {9.0 10.0 2865 ------- null} + -t 3.24451 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5713 -a 0 -x {9.0 10.0 2861 ------- null} - -t 3.24451 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5713 -a 0 -x {9.0 10.0 2861 ------- null} h -t 3.24451 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5713 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.24456 -s 0 -d 9 -p ack -e 40 -c 0 -i 5716 -a 0 -x {10.0 9.0 2853 ------- null} + -t 3.24456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5727 -a 0 -x {9.0 10.0 2868 ------- null} - -t 3.24456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5727 -a 0 -x {9.0 10.0 2868 ------- null} h -t 3.24456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5727 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.2448 -s 0 -d 9 -p ack -e 40 -c 0 -i 5720 -a 0 -x {10.0 9.0 2855 ------- null} - -t 3.2448 -s 0 -d 9 -p ack -e 40 -c 0 -i 5720 -a 0 -x {10.0 9.0 2855 ------- null} h -t 3.2448 -s 0 -d 9 -p ack -e 40 -c 0 -i 5720 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.24499 -s 10 -d 7 -p ack -e 40 -c 0 -i 5724 -a 0 -x {10.0 9.0 2857 ------- null} + -t 3.24499 -s 7 -d 0 -p ack -e 40 -c 0 -i 5724 -a 0 -x {10.0 9.0 2857 ------- null} h -t 3.24499 -s 7 -d 8 -p ack -e 40 -c 0 -i 5724 -a 0 -x {10.0 9.0 2857 ------- null} r -t 3.24514 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5709 -a 0 -x {9.0 10.0 2859 ------- null} + -t 3.24514 -s 10 -d 7 -p ack -e 40 -c 0 -i 5728 -a 0 -x {10.0 9.0 2859 ------- null} - -t 3.24514 -s 10 -d 7 -p ack -e 40 -c 0 -i 5728 -a 0 -x {10.0 9.0 2859 ------- null} h -t 3.24514 -s 10 -d 7 -p ack -e 40 -c 0 -i 5728 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.24515 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5723 -a 0 -x {9.0 10.0 2866 ------- null} + -t 3.24515 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5723 -a 0 -x {9.0 10.0 2866 ------- null} h -t 3.24515 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5723 -a 0 -x {9.0 10.0 2866 ------- null} + -t 3.24566 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5715 -a 0 -x {9.0 10.0 2862 ------- null} - -t 3.24566 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5715 -a 0 -x {9.0 10.0 2862 ------- null} h -t 3.24566 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5715 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.2457 -s 0 -d 9 -p ack -e 40 -c 0 -i 5718 -a 0 -x {10.0 9.0 2854 ------- null} + -t 3.2457 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5729 -a 0 -x {9.0 10.0 2869 ------- null} - -t 3.2457 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5729 -a 0 -x {9.0 10.0 2869 ------- null} h -t 3.2457 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5729 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.24592 -s 0 -d 9 -p ack -e 40 -c 0 -i 5722 -a 0 -x {10.0 9.0 2856 ------- null} - -t 3.24592 -s 0 -d 9 -p ack -e 40 -c 0 -i 5722 -a 0 -x {10.0 9.0 2856 ------- null} h -t 3.24592 -s 0 -d 9 -p ack -e 40 -c 0 -i 5722 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.24608 -s 10 -d 7 -p ack -e 40 -c 0 -i 5726 -a 0 -x {10.0 9.0 2858 ------- null} + -t 3.24608 -s 7 -d 0 -p ack -e 40 -c 0 -i 5726 -a 0 -x {10.0 9.0 2858 ------- null} h -t 3.24608 -s 7 -d 8 -p ack -e 40 -c 0 -i 5726 -a 0 -x {10.0 9.0 2858 ------- null} r -t 3.24622 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5711 -a 0 -x {9.0 10.0 2860 ------- null} + -t 3.24622 -s 10 -d 7 -p ack -e 40 -c 0 -i 5730 -a 0 -x {10.0 9.0 2860 ------- null} - -t 3.24622 -s 10 -d 7 -p ack -e 40 -c 0 -i 5730 -a 0 -x {10.0 9.0 2860 ------- null} h -t 3.24622 -s 10 -d 7 -p ack -e 40 -c 0 -i 5730 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.24629 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5725 -a 0 -x {9.0 10.0 2867 ------- null} + -t 3.24629 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5725 -a 0 -x {9.0 10.0 2867 ------- null} h -t 3.24629 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5725 -a 0 -x {9.0 10.0 2867 ------- null} r -t 3.24683 -s 0 -d 9 -p ack -e 40 -c 0 -i 5720 -a 0 -x {10.0 9.0 2855 ------- null} + -t 3.24683 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5731 -a 0 -x {9.0 10.0 2870 ------- null} - -t 3.24683 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5731 -a 0 -x {9.0 10.0 2870 ------- null} h -t 3.24683 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5731 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.24693 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5717 -a 0 -x {9.0 10.0 2863 ------- null} - -t 3.24693 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5717 -a 0 -x {9.0 10.0 2863 ------- null} h -t 3.24693 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5717 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.24717 -s 10 -d 7 -p ack -e 40 -c 0 -i 5728 -a 0 -x {10.0 9.0 2859 ------- null} + -t 3.24717 -s 7 -d 0 -p ack -e 40 -c 0 -i 5728 -a 0 -x {10.0 9.0 2859 ------- null} h -t 3.24717 -s 7 -d 8 -p ack -e 40 -c 0 -i 5728 -a 0 -x {10.0 9.0 2859 ------- null} + -t 3.24718 -s 0 -d 9 -p ack -e 40 -c 0 -i 5724 -a 0 -x {10.0 9.0 2857 ------- null} - -t 3.24718 -s 0 -d 9 -p ack -e 40 -c 0 -i 5724 -a 0 -x {10.0 9.0 2857 ------- null} h -t 3.24718 -s 0 -d 9 -p ack -e 40 -c 0 -i 5724 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.24731 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5713 -a 0 -x {9.0 10.0 2861 ------- null} + -t 3.24731 -s 10 -d 7 -p ack -e 40 -c 0 -i 5732 -a 0 -x {10.0 9.0 2861 ------- null} - -t 3.24731 -s 10 -d 7 -p ack -e 40 -c 0 -i 5732 -a 0 -x {10.0 9.0 2861 ------- null} h -t 3.24731 -s 10 -d 7 -p ack -e 40 -c 0 -i 5732 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.24736 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5727 -a 0 -x {9.0 10.0 2868 ------- null} + -t 3.24736 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5727 -a 0 -x {9.0 10.0 2868 ------- null} h -t 3.24736 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5727 -a 0 -x {9.0 10.0 2868 ------- null} r -t 3.24795 -s 0 -d 9 -p ack -e 40 -c 0 -i 5722 -a 0 -x {10.0 9.0 2856 ------- null} + -t 3.24795 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5733 -a 0 -x {9.0 10.0 2871 ------- null} - -t 3.24795 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5733 -a 0 -x {9.0 10.0 2871 ------- null} h -t 3.24795 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5733 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.24824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5719 -a 0 -x {9.0 10.0 2864 ------- null} - -t 3.24824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5719 -a 0 -x {9.0 10.0 2864 ------- null} h -t 3.24824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5719 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.24826 -s 10 -d 7 -p ack -e 40 -c 0 -i 5730 -a 0 -x {10.0 9.0 2860 ------- null} + -t 3.24826 -s 7 -d 0 -p ack -e 40 -c 0 -i 5730 -a 0 -x {10.0 9.0 2860 ------- null} h -t 3.24826 -s 7 -d 8 -p ack -e 40 -c 0 -i 5730 -a 0 -x {10.0 9.0 2860 ------- null} + -t 3.24835 -s 0 -d 9 -p ack -e 40 -c 0 -i 5726 -a 0 -x {10.0 9.0 2858 ------- null} - -t 3.24835 -s 0 -d 9 -p ack -e 40 -c 0 -i 5726 -a 0 -x {10.0 9.0 2858 ------- null} h -t 3.24835 -s 0 -d 9 -p ack -e 40 -c 0 -i 5726 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.24846 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5715 -a 0 -x {9.0 10.0 2862 ------- null} + -t 3.24846 -s 10 -d 7 -p ack -e 40 -c 0 -i 5734 -a 0 -x {10.0 9.0 2862 ------- null} - -t 3.24846 -s 10 -d 7 -p ack -e 40 -c 0 -i 5734 -a 0 -x {10.0 9.0 2862 ------- null} h -t 3.24846 -s 10 -d 7 -p ack -e 40 -c 0 -i 5734 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.2485 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5729 -a 0 -x {9.0 10.0 2869 ------- null} + -t 3.2485 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5729 -a 0 -x {9.0 10.0 2869 ------- null} h -t 3.2485 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5729 -a 0 -x {9.0 10.0 2869 ------- null} r -t 3.24922 -s 0 -d 9 -p ack -e 40 -c 0 -i 5724 -a 0 -x {10.0 9.0 2857 ------- null} + -t 3.24922 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5735 -a 0 -x {9.0 10.0 2872 ------- null} - -t 3.24922 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5735 -a 0 -x {9.0 10.0 2872 ------- null} h -t 3.24922 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5735 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.24933 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5721 -a 0 -x {9.0 10.0 2865 ------- null} - -t 3.24933 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5721 -a 0 -x {9.0 10.0 2865 ------- null} h -t 3.24933 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5721 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.24934 -s 10 -d 7 -p ack -e 40 -c 0 -i 5732 -a 0 -x {10.0 9.0 2861 ------- null} + -t 3.24934 -s 7 -d 0 -p ack -e 40 -c 0 -i 5732 -a 0 -x {10.0 9.0 2861 ------- null} h -t 3.24934 -s 7 -d 8 -p ack -e 40 -c 0 -i 5732 -a 0 -x {10.0 9.0 2861 ------- null} + -t 3.24958 -s 0 -d 9 -p ack -e 40 -c 0 -i 5728 -a 0 -x {10.0 9.0 2859 ------- null} - -t 3.24958 -s 0 -d 9 -p ack -e 40 -c 0 -i 5728 -a 0 -x {10.0 9.0 2859 ------- null} h -t 3.24958 -s 0 -d 9 -p ack -e 40 -c 0 -i 5728 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.24963 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5731 -a 0 -x {9.0 10.0 2870 ------- null} + -t 3.24963 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5731 -a 0 -x {9.0 10.0 2870 ------- null} h -t 3.24963 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5731 -a 0 -x {9.0 10.0 2870 ------- null} r -t 3.24973 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5717 -a 0 -x {9.0 10.0 2863 ------- null} + -t 3.24973 -s 10 -d 7 -p ack -e 40 -c 0 -i 5736 -a 0 -x {10.0 9.0 2863 ------- null} - -t 3.24973 -s 10 -d 7 -p ack -e 40 -c 0 -i 5736 -a 0 -x {10.0 9.0 2863 ------- null} h -t 3.24973 -s 10 -d 7 -p ack -e 40 -c 0 -i 5736 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.25038 -s 0 -d 9 -p ack -e 40 -c 0 -i 5726 -a 0 -x {10.0 9.0 2858 ------- null} + -t 3.25038 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5737 -a 0 -x {9.0 10.0 2873 ------- null} - -t 3.25038 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5737 -a 0 -x {9.0 10.0 2873 ------- null} h -t 3.25038 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5737 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.2505 -s 10 -d 7 -p ack -e 40 -c 0 -i 5734 -a 0 -x {10.0 9.0 2862 ------- null} + -t 3.2505 -s 7 -d 0 -p ack -e 40 -c 0 -i 5734 -a 0 -x {10.0 9.0 2862 ------- null} h -t 3.2505 -s 7 -d 8 -p ack -e 40 -c 0 -i 5734 -a 0 -x {10.0 9.0 2862 ------- null} + -t 3.25056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5723 -a 0 -x {9.0 10.0 2866 ------- null} - -t 3.25056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5723 -a 0 -x {9.0 10.0 2866 ------- null} h -t 3.25056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5723 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.25075 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5733 -a 0 -x {9.0 10.0 2871 ------- null} + -t 3.25075 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5733 -a 0 -x {9.0 10.0 2871 ------- null} h -t 3.25075 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5733 -a 0 -x {9.0 10.0 2871 ------- null} + -t 3.25086 -s 0 -d 9 -p ack -e 40 -c 0 -i 5730 -a 0 -x {10.0 9.0 2860 ------- null} - -t 3.25086 -s 0 -d 9 -p ack -e 40 -c 0 -i 5730 -a 0 -x {10.0 9.0 2860 ------- null} h -t 3.25086 -s 0 -d 9 -p ack -e 40 -c 0 -i 5730 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.25104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5719 -a 0 -x {9.0 10.0 2864 ------- null} + -t 3.25104 -s 10 -d 7 -p ack -e 40 -c 0 -i 5738 -a 0 -x {10.0 9.0 2864 ------- null} - -t 3.25104 -s 10 -d 7 -p ack -e 40 -c 0 -i 5738 -a 0 -x {10.0 9.0 2864 ------- null} h -t 3.25104 -s 10 -d 7 -p ack -e 40 -c 0 -i 5738 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.25162 -s 0 -d 9 -p ack -e 40 -c 0 -i 5728 -a 0 -x {10.0 9.0 2859 ------- null} + -t 3.25162 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5739 -a 0 -x {9.0 10.0 2874 ------- null} - -t 3.25162 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5739 -a 0 -x {9.0 10.0 2874 ------- null} h -t 3.25162 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5739 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.25176 -s 10 -d 7 -p ack -e 40 -c 0 -i 5736 -a 0 -x {10.0 9.0 2863 ------- null} + -t 3.25176 -s 7 -d 0 -p ack -e 40 -c 0 -i 5736 -a 0 -x {10.0 9.0 2863 ------- null} h -t 3.25176 -s 7 -d 8 -p ack -e 40 -c 0 -i 5736 -a 0 -x {10.0 9.0 2863 ------- null} + -t 3.25186 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5725 -a 0 -x {9.0 10.0 2867 ------- null} - -t 3.25186 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5725 -a 0 -x {9.0 10.0 2867 ------- null} h -t 3.25186 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5725 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.25202 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5735 -a 0 -x {9.0 10.0 2872 ------- null} + -t 3.25202 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5735 -a 0 -x {9.0 10.0 2872 ------- null} h -t 3.25202 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5735 -a 0 -x {9.0 10.0 2872 ------- null} r -t 3.25213 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5721 -a 0 -x {9.0 10.0 2865 ------- null} + -t 3.25213 -s 10 -d 7 -p ack -e 40 -c 0 -i 5740 -a 0 -x {10.0 9.0 2865 ------- null} - -t 3.25213 -s 10 -d 7 -p ack -e 40 -c 0 -i 5740 -a 0 -x {10.0 9.0 2865 ------- null} h -t 3.25213 -s 10 -d 7 -p ack -e 40 -c 0 -i 5740 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.25213 -s 0 -d 9 -p ack -e 40 -c 0 -i 5732 -a 0 -x {10.0 9.0 2861 ------- null} - -t 3.25213 -s 0 -d 9 -p ack -e 40 -c 0 -i 5732 -a 0 -x {10.0 9.0 2861 ------- null} h -t 3.25213 -s 0 -d 9 -p ack -e 40 -c 0 -i 5732 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.2529 -s 0 -d 9 -p ack -e 40 -c 0 -i 5730 -a 0 -x {10.0 9.0 2860 ------- null} + -t 3.2529 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5741 -a 0 -x {9.0 10.0 2875 ------- null} - -t 3.2529 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5741 -a 0 -x {9.0 10.0 2875 ------- null} h -t 3.2529 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5741 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.25304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5727 -a 0 -x {9.0 10.0 2868 ------- null} - -t 3.25304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5727 -a 0 -x {9.0 10.0 2868 ------- null} h -t 3.25304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5727 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.25307 -s 10 -d 7 -p ack -e 40 -c 0 -i 5738 -a 0 -x {10.0 9.0 2864 ------- null} + -t 3.25307 -s 7 -d 0 -p ack -e 40 -c 0 -i 5738 -a 0 -x {10.0 9.0 2864 ------- null} h -t 3.25307 -s 7 -d 8 -p ack -e 40 -c 0 -i 5738 -a 0 -x {10.0 9.0 2864 ------- null} r -t 3.25318 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5737 -a 0 -x {9.0 10.0 2873 ------- null} + -t 3.25318 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5737 -a 0 -x {9.0 10.0 2873 ------- null} h -t 3.25318 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5737 -a 0 -x {9.0 10.0 2873 ------- null} + -t 3.25333 -s 0 -d 9 -p ack -e 40 -c 0 -i 5734 -a 0 -x {10.0 9.0 2862 ------- null} - -t 3.25333 -s 0 -d 9 -p ack -e 40 -c 0 -i 5734 -a 0 -x {10.0 9.0 2862 ------- null} h -t 3.25333 -s 0 -d 9 -p ack -e 40 -c 0 -i 5734 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.25336 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5723 -a 0 -x {9.0 10.0 2866 ------- null} + -t 3.25336 -s 10 -d 7 -p ack -e 40 -c 0 -i 5742 -a 0 -x {10.0 9.0 2866 ------- null} - -t 3.25336 -s 10 -d 7 -p ack -e 40 -c 0 -i 5742 -a 0 -x {10.0 9.0 2866 ------- null} h -t 3.25336 -s 10 -d 7 -p ack -e 40 -c 0 -i 5742 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.25416 -s 10 -d 7 -p ack -e 40 -c 0 -i 5740 -a 0 -x {10.0 9.0 2865 ------- null} + -t 3.25416 -s 7 -d 0 -p ack -e 40 -c 0 -i 5740 -a 0 -x {10.0 9.0 2865 ------- null} h -t 3.25416 -s 7 -d 8 -p ack -e 40 -c 0 -i 5740 -a 0 -x {10.0 9.0 2865 ------- null} r -t 3.25416 -s 0 -d 9 -p ack -e 40 -c 0 -i 5732 -a 0 -x {10.0 9.0 2861 ------- null} + -t 3.25416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5743 -a 0 -x {9.0 10.0 2876 ------- null} - -t 3.25416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5743 -a 0 -x {9.0 10.0 2876 ------- null} h -t 3.25416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5743 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.25418 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5729 -a 0 -x {9.0 10.0 2869 ------- null} - -t 3.25418 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5729 -a 0 -x {9.0 10.0 2869 ------- null} h -t 3.25418 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5729 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.25429 -s 0 -d 9 -p ack -e 40 -c 0 -i 5736 -a 0 -x {10.0 9.0 2863 ------- null} - -t 3.25429 -s 0 -d 9 -p ack -e 40 -c 0 -i 5736 -a 0 -x {10.0 9.0 2863 ------- null} h -t 3.25429 -s 0 -d 9 -p ack -e 40 -c 0 -i 5736 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.25442 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5739 -a 0 -x {9.0 10.0 2874 ------- null} + -t 3.25442 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5739 -a 0 -x {9.0 10.0 2874 ------- null} h -t 3.25442 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5739 -a 0 -x {9.0 10.0 2874 ------- null} r -t 3.25466 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5725 -a 0 -x {9.0 10.0 2867 ------- null} + -t 3.25466 -s 10 -d 7 -p ack -e 40 -c 0 -i 5744 -a 0 -x {10.0 9.0 2867 ------- null} - -t 3.25466 -s 10 -d 7 -p ack -e 40 -c 0 -i 5744 -a 0 -x {10.0 9.0 2867 ------- null} h -t 3.25466 -s 10 -d 7 -p ack -e 40 -c 0 -i 5744 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.25526 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5731 -a 0 -x {9.0 10.0 2870 ------- null} - -t 3.25526 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5731 -a 0 -x {9.0 10.0 2870 ------- null} h -t 3.25526 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5731 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.25536 -s 0 -d 9 -p ack -e 40 -c 0 -i 5734 -a 0 -x {10.0 9.0 2862 ------- null} + -t 3.25536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5745 -a 0 -x {9.0 10.0 2877 ------- null} - -t 3.25536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5745 -a 0 -x {9.0 10.0 2877 ------- null} h -t 3.25536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5745 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.25539 -s 10 -d 7 -p ack -e 40 -c 0 -i 5742 -a 0 -x {10.0 9.0 2866 ------- null} + -t 3.25539 -s 7 -d 0 -p ack -e 40 -c 0 -i 5742 -a 0 -x {10.0 9.0 2866 ------- null} h -t 3.25539 -s 7 -d 8 -p ack -e 40 -c 0 -i 5742 -a 0 -x {10.0 9.0 2866 ------- null} + -t 3.25557 -s 0 -d 9 -p ack -e 40 -c 0 -i 5738 -a 0 -x {10.0 9.0 2864 ------- null} - -t 3.25557 -s 0 -d 9 -p ack -e 40 -c 0 -i 5738 -a 0 -x {10.0 9.0 2864 ------- null} h -t 3.25557 -s 0 -d 9 -p ack -e 40 -c 0 -i 5738 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.2557 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5741 -a 0 -x {9.0 10.0 2875 ------- null} + -t 3.2557 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5741 -a 0 -x {9.0 10.0 2875 ------- null} h -t 3.2557 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5741 -a 0 -x {9.0 10.0 2875 ------- null} r -t 3.25584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5727 -a 0 -x {9.0 10.0 2868 ------- null} + -t 3.25584 -s 10 -d 7 -p ack -e 40 -c 0 -i 5746 -a 0 -x {10.0 9.0 2868 ------- null} - -t 3.25584 -s 10 -d 7 -p ack -e 40 -c 0 -i 5746 -a 0 -x {10.0 9.0 2868 ------- null} h -t 3.25584 -s 10 -d 7 -p ack -e 40 -c 0 -i 5746 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.25632 -s 0 -d 9 -p ack -e 40 -c 0 -i 5736 -a 0 -x {10.0 9.0 2863 ------- null} + -t 3.25632 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5747 -a 0 -x {9.0 10.0 2878 ------- null} - -t 3.25632 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5747 -a 0 -x {9.0 10.0 2878 ------- null} h -t 3.25632 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5747 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.25653 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5733 -a 0 -x {9.0 10.0 2871 ------- null} - -t 3.25653 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5733 -a 0 -x {9.0 10.0 2871 ------- null} h -t 3.25653 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5733 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.25669 -s 10 -d 7 -p ack -e 40 -c 0 -i 5744 -a 0 -x {10.0 9.0 2867 ------- null} + -t 3.25669 -s 7 -d 0 -p ack -e 40 -c 0 -i 5744 -a 0 -x {10.0 9.0 2867 ------- null} h -t 3.25669 -s 7 -d 8 -p ack -e 40 -c 0 -i 5744 -a 0 -x {10.0 9.0 2867 ------- null} + -t 3.25669 -s 0 -d 9 -p ack -e 40 -c 0 -i 5740 -a 0 -x {10.0 9.0 2865 ------- null} - -t 3.25669 -s 0 -d 9 -p ack -e 40 -c 0 -i 5740 -a 0 -x {10.0 9.0 2865 ------- null} h -t 3.25669 -s 0 -d 9 -p ack -e 40 -c 0 -i 5740 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.25696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5743 -a 0 -x {9.0 10.0 2876 ------- null} + -t 3.25696 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5743 -a 0 -x {9.0 10.0 2876 ------- null} h -t 3.25696 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5743 -a 0 -x {9.0 10.0 2876 ------- null} r -t 3.25698 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5729 -a 0 -x {9.0 10.0 2869 ------- null} + -t 3.25698 -s 10 -d 7 -p ack -e 40 -c 0 -i 5748 -a 0 -x {10.0 9.0 2869 ------- null} - -t 3.25698 -s 10 -d 7 -p ack -e 40 -c 0 -i 5748 -a 0 -x {10.0 9.0 2869 ------- null} h -t 3.25698 -s 10 -d 7 -p ack -e 40 -c 0 -i 5748 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.2576 -s 0 -d 9 -p ack -e 40 -c 0 -i 5738 -a 0 -x {10.0 9.0 2864 ------- null} + -t 3.2576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5749 -a 0 -x {9.0 10.0 2879 ------- null} - -t 3.2576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5749 -a 0 -x {9.0 10.0 2879 ------- null} h -t 3.2576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5749 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.25762 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5735 -a 0 -x {9.0 10.0 2872 ------- null} - -t 3.25762 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5735 -a 0 -x {9.0 10.0 2872 ------- null} h -t 3.25762 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5735 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.25787 -s 10 -d 7 -p ack -e 40 -c 0 -i 5746 -a 0 -x {10.0 9.0 2868 ------- null} + -t 3.25787 -s 7 -d 0 -p ack -e 40 -c 0 -i 5746 -a 0 -x {10.0 9.0 2868 ------- null} h -t 3.25787 -s 7 -d 8 -p ack -e 40 -c 0 -i 5746 -a 0 -x {10.0 9.0 2868 ------- null} + -t 3.25792 -s 0 -d 9 -p ack -e 40 -c 0 -i 5742 -a 0 -x {10.0 9.0 2866 ------- null} - -t 3.25792 -s 0 -d 9 -p ack -e 40 -c 0 -i 5742 -a 0 -x {10.0 9.0 2866 ------- null} h -t 3.25792 -s 0 -d 9 -p ack -e 40 -c 0 -i 5742 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.25806 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5731 -a 0 -x {9.0 10.0 2870 ------- null} + -t 3.25806 -s 10 -d 7 -p ack -e 40 -c 0 -i 5750 -a 0 -x {10.0 9.0 2870 ------- null} - -t 3.25806 -s 10 -d 7 -p ack -e 40 -c 0 -i 5750 -a 0 -x {10.0 9.0 2870 ------- null} h -t 3.25806 -s 10 -d 7 -p ack -e 40 -c 0 -i 5750 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.25816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5745 -a 0 -x {9.0 10.0 2877 ------- null} + -t 3.25816 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5745 -a 0 -x {9.0 10.0 2877 ------- null} h -t 3.25816 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5745 -a 0 -x {9.0 10.0 2877 ------- null} r -t 3.25872 -s 0 -d 9 -p ack -e 40 -c 0 -i 5740 -a 0 -x {10.0 9.0 2865 ------- null} + -t 3.25872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5751 -a 0 -x {9.0 10.0 2880 ------- null} - -t 3.25872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5751 -a 0 -x {9.0 10.0 2880 ------- null} h -t 3.25872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5751 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.25888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5737 -a 0 -x {9.0 10.0 2873 ------- null} - -t 3.25888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5737 -a 0 -x {9.0 10.0 2873 ------- null} h -t 3.25888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5737 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.25901 -s 10 -d 7 -p ack -e 40 -c 0 -i 5748 -a 0 -x {10.0 9.0 2869 ------- null} + -t 3.25901 -s 7 -d 0 -p ack -e 40 -c 0 -i 5748 -a 0 -x {10.0 9.0 2869 ------- null} h -t 3.25901 -s 7 -d 8 -p ack -e 40 -c 0 -i 5748 -a 0 -x {10.0 9.0 2869 ------- null} + -t 3.25907 -s 0 -d 9 -p ack -e 40 -c 0 -i 5744 -a 0 -x {10.0 9.0 2867 ------- null} - -t 3.25907 -s 0 -d 9 -p ack -e 40 -c 0 -i 5744 -a 0 -x {10.0 9.0 2867 ------- null} h -t 3.25907 -s 0 -d 9 -p ack -e 40 -c 0 -i 5744 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.25912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5747 -a 0 -x {9.0 10.0 2878 ------- null} + -t 3.25912 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5747 -a 0 -x {9.0 10.0 2878 ------- null} h -t 3.25912 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5747 -a 0 -x {9.0 10.0 2878 ------- null} r -t 3.25933 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5733 -a 0 -x {9.0 10.0 2871 ------- null} + -t 3.25933 -s 10 -d 7 -p ack -e 40 -c 0 -i 5752 -a 0 -x {10.0 9.0 2871 ------- null} - -t 3.25933 -s 10 -d 7 -p ack -e 40 -c 0 -i 5752 -a 0 -x {10.0 9.0 2871 ------- null} h -t 3.25933 -s 10 -d 7 -p ack -e 40 -c 0 -i 5752 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.25995 -s 0 -d 9 -p ack -e 40 -c 0 -i 5742 -a 0 -x {10.0 9.0 2866 ------- null} + -t 3.25995 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5753 -a 0 -x {9.0 10.0 2881 ------- null} - -t 3.25995 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5753 -a 0 -x {9.0 10.0 2881 ------- null} h -t 3.25995 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5753 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.25997 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5739 -a 0 -x {9.0 10.0 2874 ------- null} - -t 3.25997 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5739 -a 0 -x {9.0 10.0 2874 ------- null} h -t 3.25997 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5739 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.2601 -s 10 -d 7 -p ack -e 40 -c 0 -i 5750 -a 0 -x {10.0 9.0 2870 ------- null} + -t 3.2601 -s 7 -d 0 -p ack -e 40 -c 0 -i 5750 -a 0 -x {10.0 9.0 2870 ------- null} h -t 3.2601 -s 7 -d 8 -p ack -e 40 -c 0 -i 5750 -a 0 -x {10.0 9.0 2870 ------- null} + -t 3.26024 -s 0 -d 9 -p ack -e 40 -c 0 -i 5746 -a 0 -x {10.0 9.0 2868 ------- null} - -t 3.26024 -s 0 -d 9 -p ack -e 40 -c 0 -i 5746 -a 0 -x {10.0 9.0 2868 ------- null} h -t 3.26024 -s 0 -d 9 -p ack -e 40 -c 0 -i 5746 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.2604 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5749 -a 0 -x {9.0 10.0 2879 ------- null} + -t 3.2604 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5749 -a 0 -x {9.0 10.0 2879 ------- null} h -t 3.2604 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5749 -a 0 -x {9.0 10.0 2879 ------- null} r -t 3.26042 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5735 -a 0 -x {9.0 10.0 2872 ------- null} + -t 3.26042 -s 10 -d 7 -p ack -e 40 -c 0 -i 5754 -a 0 -x {10.0 9.0 2872 ------- null} - -t 3.26042 -s 10 -d 7 -p ack -e 40 -c 0 -i 5754 -a 0 -x {10.0 9.0 2872 ------- null} h -t 3.26042 -s 10 -d 7 -p ack -e 40 -c 0 -i 5754 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.2611 -s 0 -d 9 -p ack -e 40 -c 0 -i 5744 -a 0 -x {10.0 9.0 2867 ------- null} + -t 3.2611 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5755 -a 0 -x {9.0 10.0 2882 ------- null} - -t 3.2611 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5755 -a 0 -x {9.0 10.0 2882 ------- null} h -t 3.2611 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5755 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.26114 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5741 -a 0 -x {9.0 10.0 2875 ------- null} - -t 3.26114 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5741 -a 0 -x {9.0 10.0 2875 ------- null} h -t 3.26114 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5741 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.26133 -s 0 -d 9 -p ack -e 40 -c 0 -i 5748 -a 0 -x {10.0 9.0 2869 ------- null} - -t 3.26133 -s 0 -d 9 -p ack -e 40 -c 0 -i 5748 -a 0 -x {10.0 9.0 2869 ------- null} h -t 3.26133 -s 0 -d 9 -p ack -e 40 -c 0 -i 5748 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.26136 -s 10 -d 7 -p ack -e 40 -c 0 -i 5752 -a 0 -x {10.0 9.0 2871 ------- null} + -t 3.26136 -s 7 -d 0 -p ack -e 40 -c 0 -i 5752 -a 0 -x {10.0 9.0 2871 ------- null} h -t 3.26136 -s 7 -d 8 -p ack -e 40 -c 0 -i 5752 -a 0 -x {10.0 9.0 2871 ------- null} r -t 3.26152 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5751 -a 0 -x {9.0 10.0 2880 ------- null} + -t 3.26152 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5751 -a 0 -x {9.0 10.0 2880 ------- null} h -t 3.26152 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5751 -a 0 -x {9.0 10.0 2880 ------- null} r -t 3.26168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5737 -a 0 -x {9.0 10.0 2873 ------- null} + -t 3.26168 -s 10 -d 7 -p ack -e 40 -c 0 -i 5756 -a 0 -x {10.0 9.0 2873 ------- null} - -t 3.26168 -s 10 -d 7 -p ack -e 40 -c 0 -i 5756 -a 0 -x {10.0 9.0 2873 ------- null} h -t 3.26168 -s 10 -d 7 -p ack -e 40 -c 0 -i 5756 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.26222 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5743 -a 0 -x {9.0 10.0 2876 ------- null} - -t 3.26222 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5743 -a 0 -x {9.0 10.0 2876 ------- null} h -t 3.26222 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5743 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.26227 -s 0 -d 9 -p ack -e 40 -c 0 -i 5746 -a 0 -x {10.0 9.0 2868 ------- null} + -t 3.26227 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5757 -a 0 -x {9.0 10.0 2883 ------- null} - -t 3.26227 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5757 -a 0 -x {9.0 10.0 2883 ------- null} h -t 3.26227 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5757 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.26229 -s 0 -d 9 -p ack -e 40 -c 0 -i 5750 -a 0 -x {10.0 9.0 2870 ------- null} - -t 3.26229 -s 0 -d 9 -p ack -e 40 -c 0 -i 5750 -a 0 -x {10.0 9.0 2870 ------- null} h -t 3.26229 -s 0 -d 9 -p ack -e 40 -c 0 -i 5750 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.26245 -s 10 -d 7 -p ack -e 40 -c 0 -i 5754 -a 0 -x {10.0 9.0 2872 ------- null} + -t 3.26245 -s 7 -d 0 -p ack -e 40 -c 0 -i 5754 -a 0 -x {10.0 9.0 2872 ------- null} h -t 3.26245 -s 7 -d 8 -p ack -e 40 -c 0 -i 5754 -a 0 -x {10.0 9.0 2872 ------- null} r -t 3.26275 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5753 -a 0 -x {9.0 10.0 2881 ------- null} + -t 3.26275 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5753 -a 0 -x {9.0 10.0 2881 ------- null} h -t 3.26275 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5753 -a 0 -x {9.0 10.0 2881 ------- null} r -t 3.26277 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5739 -a 0 -x {9.0 10.0 2874 ------- null} + -t 3.26277 -s 10 -d 7 -p ack -e 40 -c 0 -i 5758 -a 0 -x {10.0 9.0 2874 ------- null} - -t 3.26277 -s 10 -d 7 -p ack -e 40 -c 0 -i 5758 -a 0 -x {10.0 9.0 2874 ------- null} h -t 3.26277 -s 10 -d 7 -p ack -e 40 -c 0 -i 5758 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.26331 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5745 -a 0 -x {9.0 10.0 2877 ------- null} - -t 3.26331 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5745 -a 0 -x {9.0 10.0 2877 ------- null} h -t 3.26331 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5745 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.26336 -s 0 -d 9 -p ack -e 40 -c 0 -i 5748 -a 0 -x {10.0 9.0 2869 ------- null} + -t 3.26336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5759 -a 0 -x {9.0 10.0 2884 ------- null} - -t 3.26336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5759 -a 0 -x {9.0 10.0 2884 ------- null} h -t 3.26336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5759 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.26362 -s 0 -d 9 -p ack -e 40 -c 0 -i 5752 -a 0 -x {10.0 9.0 2871 ------- null} - -t 3.26362 -s 0 -d 9 -p ack -e 40 -c 0 -i 5752 -a 0 -x {10.0 9.0 2871 ------- null} h -t 3.26362 -s 0 -d 9 -p ack -e 40 -c 0 -i 5752 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.26371 -s 10 -d 7 -p ack -e 40 -c 0 -i 5756 -a 0 -x {10.0 9.0 2873 ------- null} + -t 3.26371 -s 7 -d 0 -p ack -e 40 -c 0 -i 5756 -a 0 -x {10.0 9.0 2873 ------- null} h -t 3.26371 -s 7 -d 8 -p ack -e 40 -c 0 -i 5756 -a 0 -x {10.0 9.0 2873 ------- null} r -t 3.2639 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5755 -a 0 -x {9.0 10.0 2882 ------- null} + -t 3.2639 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5755 -a 0 -x {9.0 10.0 2882 ------- null} h -t 3.2639 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5755 -a 0 -x {9.0 10.0 2882 ------- null} r -t 3.26394 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5741 -a 0 -x {9.0 10.0 2875 ------- null} + -t 3.26394 -s 10 -d 7 -p ack -e 40 -c 0 -i 5760 -a 0 -x {10.0 9.0 2875 ------- null} - -t 3.26394 -s 10 -d 7 -p ack -e 40 -c 0 -i 5760 -a 0 -x {10.0 9.0 2875 ------- null} h -t 3.26394 -s 10 -d 7 -p ack -e 40 -c 0 -i 5760 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.26432 -s 0 -d 9 -p ack -e 40 -c 0 -i 5750 -a 0 -x {10.0 9.0 2870 ------- null} + -t 3.26432 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5761 -a 0 -x {9.0 10.0 2885 ------- null} - -t 3.26432 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5761 -a 0 -x {9.0 10.0 2885 ------- null} h -t 3.26432 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5761 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.26459 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5747 -a 0 -x {9.0 10.0 2878 ------- null} - -t 3.26459 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5747 -a 0 -x {9.0 10.0 2878 ------- null} h -t 3.26459 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5747 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.2648 -s 10 -d 7 -p ack -e 40 -c 0 -i 5758 -a 0 -x {10.0 9.0 2874 ------- null} + -t 3.2648 -s 7 -d 0 -p ack -e 40 -c 0 -i 5758 -a 0 -x {10.0 9.0 2874 ------- null} h -t 3.2648 -s 7 -d 8 -p ack -e 40 -c 0 -i 5758 -a 0 -x {10.0 9.0 2874 ------- null} + -t 3.26488 -s 0 -d 9 -p ack -e 40 -c 0 -i 5754 -a 0 -x {10.0 9.0 2872 ------- null} - -t 3.26488 -s 0 -d 9 -p ack -e 40 -c 0 -i 5754 -a 0 -x {10.0 9.0 2872 ------- null} h -t 3.26488 -s 0 -d 9 -p ack -e 40 -c 0 -i 5754 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.26502 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5743 -a 0 -x {9.0 10.0 2876 ------- null} + -t 3.26502 -s 10 -d 7 -p ack -e 40 -c 0 -i 5762 -a 0 -x {10.0 9.0 2876 ------- null} - -t 3.26502 -s 10 -d 7 -p ack -e 40 -c 0 -i 5762 -a 0 -x {10.0 9.0 2876 ------- null} h -t 3.26502 -s 10 -d 7 -p ack -e 40 -c 0 -i 5762 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.26507 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5757 -a 0 -x {9.0 10.0 2883 ------- null} + -t 3.26507 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5757 -a 0 -x {9.0 10.0 2883 ------- null} h -t 3.26507 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5757 -a 0 -x {9.0 10.0 2883 ------- null} r -t 3.26565 -s 0 -d 9 -p ack -e 40 -c 0 -i 5752 -a 0 -x {10.0 9.0 2871 ------- null} + -t 3.26565 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5763 -a 0 -x {9.0 10.0 2886 ------- null} - -t 3.26565 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5763 -a 0 -x {9.0 10.0 2886 ------- null} h -t 3.26565 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5763 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.26573 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5749 -a 0 -x {9.0 10.0 2879 ------- null} - -t 3.26573 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5749 -a 0 -x {9.0 10.0 2879 ------- null} h -t 3.26573 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5749 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.26584 -s 0 -d 9 -p ack -e 40 -c 0 -i 5756 -a 0 -x {10.0 9.0 2873 ------- null} - -t 3.26584 -s 0 -d 9 -p ack -e 40 -c 0 -i 5756 -a 0 -x {10.0 9.0 2873 ------- null} h -t 3.26584 -s 0 -d 9 -p ack -e 40 -c 0 -i 5756 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.26597 -s 10 -d 7 -p ack -e 40 -c 0 -i 5760 -a 0 -x {10.0 9.0 2875 ------- null} + -t 3.26597 -s 7 -d 0 -p ack -e 40 -c 0 -i 5760 -a 0 -x {10.0 9.0 2875 ------- null} h -t 3.26597 -s 7 -d 8 -p ack -e 40 -c 0 -i 5760 -a 0 -x {10.0 9.0 2875 ------- null} r -t 3.26611 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5745 -a 0 -x {9.0 10.0 2877 ------- null} + -t 3.26611 -s 10 -d 7 -p ack -e 40 -c 0 -i 5764 -a 0 -x {10.0 9.0 2877 ------- null} - -t 3.26611 -s 10 -d 7 -p ack -e 40 -c 0 -i 5764 -a 0 -x {10.0 9.0 2877 ------- null} h -t 3.26611 -s 10 -d 7 -p ack -e 40 -c 0 -i 5764 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.26616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5759 -a 0 -x {9.0 10.0 2884 ------- null} + -t 3.26616 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5759 -a 0 -x {9.0 10.0 2884 ------- null} h -t 3.26616 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5759 -a 0 -x {9.0 10.0 2884 ------- null} + -t 3.26682 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5751 -a 0 -x {9.0 10.0 2880 ------- null} - -t 3.26682 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5751 -a 0 -x {9.0 10.0 2880 ------- null} h -t 3.26682 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5751 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.26691 -s 0 -d 9 -p ack -e 40 -c 0 -i 5754 -a 0 -x {10.0 9.0 2872 ------- null} + -t 3.26691 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5765 -a 0 -x {9.0 10.0 2887 ------- null} - -t 3.26691 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5765 -a 0 -x {9.0 10.0 2887 ------- null} h -t 3.26691 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5765 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.26691 -s 0 -d 9 -p ack -e 40 -c 0 -i 5758 -a 0 -x {10.0 9.0 2874 ------- null} - -t 3.26691 -s 0 -d 9 -p ack -e 40 -c 0 -i 5758 -a 0 -x {10.0 9.0 2874 ------- null} h -t 3.26691 -s 0 -d 9 -p ack -e 40 -c 0 -i 5758 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.26706 -s 10 -d 7 -p ack -e 40 -c 0 -i 5762 -a 0 -x {10.0 9.0 2876 ------- null} + -t 3.26706 -s 7 -d 0 -p ack -e 40 -c 0 -i 5762 -a 0 -x {10.0 9.0 2876 ------- null} h -t 3.26706 -s 7 -d 8 -p ack -e 40 -c 0 -i 5762 -a 0 -x {10.0 9.0 2876 ------- null} r -t 3.26712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5761 -a 0 -x {9.0 10.0 2885 ------- null} + -t 3.26712 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5761 -a 0 -x {9.0 10.0 2885 ------- null} h -t 3.26712 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5761 -a 0 -x {9.0 10.0 2885 ------- null} r -t 3.26739 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5747 -a 0 -x {9.0 10.0 2878 ------- null} + -t 3.26739 -s 10 -d 7 -p ack -e 40 -c 0 -i 5766 -a 0 -x {10.0 9.0 2878 ------- null} - -t 3.26739 -s 10 -d 7 -p ack -e 40 -c 0 -i 5766 -a 0 -x {10.0 9.0 2878 ------- null} h -t 3.26739 -s 10 -d 7 -p ack -e 40 -c 0 -i 5766 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.26787 -s 0 -d 9 -p ack -e 40 -c 0 -i 5756 -a 0 -x {10.0 9.0 2873 ------- null} + -t 3.26787 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5767 -a 0 -x {9.0 10.0 2888 ------- null} - -t 3.26787 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5767 -a 0 -x {9.0 10.0 2888 ------- null} h -t 3.26787 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5767 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.2679 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5753 -a 0 -x {9.0 10.0 2881 ------- null} - -t 3.2679 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5753 -a 0 -x {9.0 10.0 2881 ------- null} h -t 3.2679 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5753 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.26803 -s 0 -d 9 -p ack -e 40 -c 0 -i 5760 -a 0 -x {10.0 9.0 2875 ------- null} - -t 3.26803 -s 0 -d 9 -p ack -e 40 -c 0 -i 5760 -a 0 -x {10.0 9.0 2875 ------- null} h -t 3.26803 -s 0 -d 9 -p ack -e 40 -c 0 -i 5760 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.26814 -s 10 -d 7 -p ack -e 40 -c 0 -i 5764 -a 0 -x {10.0 9.0 2877 ------- null} + -t 3.26814 -s 7 -d 0 -p ack -e 40 -c 0 -i 5764 -a 0 -x {10.0 9.0 2877 ------- null} h -t 3.26814 -s 7 -d 8 -p ack -e 40 -c 0 -i 5764 -a 0 -x {10.0 9.0 2877 ------- null} r -t 3.26845 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5763 -a 0 -x {9.0 10.0 2886 ------- null} + -t 3.26845 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5763 -a 0 -x {9.0 10.0 2886 ------- null} h -t 3.26845 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5763 -a 0 -x {9.0 10.0 2886 ------- null} r -t 3.26853 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5749 -a 0 -x {9.0 10.0 2879 ------- null} + -t 3.26853 -s 10 -d 7 -p ack -e 40 -c 0 -i 5768 -a 0 -x {10.0 9.0 2879 ------- null} - -t 3.26853 -s 10 -d 7 -p ack -e 40 -c 0 -i 5768 -a 0 -x {10.0 9.0 2879 ------- null} h -t 3.26853 -s 10 -d 7 -p ack -e 40 -c 0 -i 5768 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.26894 -s 0 -d 9 -p ack -e 40 -c 0 -i 5758 -a 0 -x {10.0 9.0 2874 ------- null} + -t 3.26894 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5769 -a 0 -x {9.0 10.0 2889 ------- null} - -t 3.26894 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5769 -a 0 -x {9.0 10.0 2889 ------- null} h -t 3.26894 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5769 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.26899 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5755 -a 0 -x {9.0 10.0 2882 ------- null} - -t 3.26899 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5755 -a 0 -x {9.0 10.0 2882 ------- null} h -t 3.26899 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5755 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.26918 -s 0 -d 9 -p ack -e 40 -c 0 -i 5762 -a 0 -x {10.0 9.0 2876 ------- null} - -t 3.26918 -s 0 -d 9 -p ack -e 40 -c 0 -i 5762 -a 0 -x {10.0 9.0 2876 ------- null} h -t 3.26918 -s 0 -d 9 -p ack -e 40 -c 0 -i 5762 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.26942 -s 10 -d 7 -p ack -e 40 -c 0 -i 5766 -a 0 -x {10.0 9.0 2878 ------- null} + -t 3.26942 -s 7 -d 0 -p ack -e 40 -c 0 -i 5766 -a 0 -x {10.0 9.0 2878 ------- null} h -t 3.26942 -s 7 -d 8 -p ack -e 40 -c 0 -i 5766 -a 0 -x {10.0 9.0 2878 ------- null} r -t 3.26962 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5751 -a 0 -x {9.0 10.0 2880 ------- null} + -t 3.26962 -s 10 -d 7 -p ack -e 40 -c 0 -i 5770 -a 0 -x {10.0 9.0 2880 ------- null} - -t 3.26962 -s 10 -d 7 -p ack -e 40 -c 0 -i 5770 -a 0 -x {10.0 9.0 2880 ------- null} h -t 3.26962 -s 10 -d 7 -p ack -e 40 -c 0 -i 5770 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.26971 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5765 -a 0 -x {9.0 10.0 2887 ------- null} + -t 3.26971 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5765 -a 0 -x {9.0 10.0 2887 ------- null} h -t 3.26971 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5765 -a 0 -x {9.0 10.0 2887 ------- null} r -t 3.27006 -s 0 -d 9 -p ack -e 40 -c 0 -i 5760 -a 0 -x {10.0 9.0 2875 ------- null} + -t 3.27006 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5771 -a 0 -x {9.0 10.0 2890 ------- null} - -t 3.27006 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5771 -a 0 -x {9.0 10.0 2890 ------- null} h -t 3.27006 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5771 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.27008 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5757 -a 0 -x {9.0 10.0 2883 ------- null} - -t 3.27008 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5757 -a 0 -x {9.0 10.0 2883 ------- null} h -t 3.27008 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5757 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.27014 -s 0 -d 9 -p ack -e 40 -c 0 -i 5764 -a 0 -x {10.0 9.0 2877 ------- null} - -t 3.27014 -s 0 -d 9 -p ack -e 40 -c 0 -i 5764 -a 0 -x {10.0 9.0 2877 ------- null} h -t 3.27014 -s 0 -d 9 -p ack -e 40 -c 0 -i 5764 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.27056 -s 10 -d 7 -p ack -e 40 -c 0 -i 5768 -a 0 -x {10.0 9.0 2879 ------- null} + -t 3.27056 -s 7 -d 0 -p ack -e 40 -c 0 -i 5768 -a 0 -x {10.0 9.0 2879 ------- null} h -t 3.27056 -s 7 -d 8 -p ack -e 40 -c 0 -i 5768 -a 0 -x {10.0 9.0 2879 ------- null} r -t 3.27067 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5767 -a 0 -x {9.0 10.0 2888 ------- null} + -t 3.27067 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5767 -a 0 -x {9.0 10.0 2888 ------- null} h -t 3.27067 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5767 -a 0 -x {9.0 10.0 2888 ------- null} r -t 3.2707 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5753 -a 0 -x {9.0 10.0 2881 ------- null} + -t 3.2707 -s 10 -d 7 -p ack -e 40 -c 0 -i 5772 -a 0 -x {10.0 9.0 2881 ------- null} - -t 3.2707 -s 10 -d 7 -p ack -e 40 -c 0 -i 5772 -a 0 -x {10.0 9.0 2881 ------- null} h -t 3.2707 -s 10 -d 7 -p ack -e 40 -c 0 -i 5772 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.27117 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5759 -a 0 -x {9.0 10.0 2884 ------- null} - -t 3.27117 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5759 -a 0 -x {9.0 10.0 2884 ------- null} h -t 3.27117 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5759 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.27122 -s 0 -d 9 -p ack -e 40 -c 0 -i 5762 -a 0 -x {10.0 9.0 2876 ------- null} + -t 3.27122 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5773 -a 0 -x {9.0 10.0 2891 ------- null} - -t 3.27122 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5773 -a 0 -x {9.0 10.0 2891 ------- null} h -t 3.27122 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5773 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.27139 -s 0 -d 9 -p ack -e 40 -c 0 -i 5766 -a 0 -x {10.0 9.0 2878 ------- null} - -t 3.27139 -s 0 -d 9 -p ack -e 40 -c 0 -i 5766 -a 0 -x {10.0 9.0 2878 ------- null} h -t 3.27139 -s 0 -d 9 -p ack -e 40 -c 0 -i 5766 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.27165 -s 10 -d 7 -p ack -e 40 -c 0 -i 5770 -a 0 -x {10.0 9.0 2880 ------- null} + -t 3.27165 -s 7 -d 0 -p ack -e 40 -c 0 -i 5770 -a 0 -x {10.0 9.0 2880 ------- null} h -t 3.27165 -s 7 -d 8 -p ack -e 40 -c 0 -i 5770 -a 0 -x {10.0 9.0 2880 ------- null} r -t 3.27174 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5769 -a 0 -x {9.0 10.0 2889 ------- null} + -t 3.27174 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5769 -a 0 -x {9.0 10.0 2889 ------- null} h -t 3.27174 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5769 -a 0 -x {9.0 10.0 2889 ------- null} r -t 3.27179 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5755 -a 0 -x {9.0 10.0 2882 ------- null} + -t 3.27179 -s 10 -d 7 -p ack -e 40 -c 0 -i 5774 -a 0 -x {10.0 9.0 2882 ------- null} - -t 3.27179 -s 10 -d 7 -p ack -e 40 -c 0 -i 5774 -a 0 -x {10.0 9.0 2882 ------- null} h -t 3.27179 -s 10 -d 7 -p ack -e 40 -c 0 -i 5774 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.27218 -s 0 -d 9 -p ack -e 40 -c 0 -i 5764 -a 0 -x {10.0 9.0 2877 ------- null} + -t 3.27218 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5775 -a 0 -x {9.0 10.0 2892 ------- null} - -t 3.27218 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5775 -a 0 -x {9.0 10.0 2892 ------- null} h -t 3.27218 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5775 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.27226 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5761 -a 0 -x {9.0 10.0 2885 ------- null} - -t 3.27226 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5761 -a 0 -x {9.0 10.0 2885 ------- null} h -t 3.27226 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5761 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.27245 -s 0 -d 9 -p ack -e 40 -c 0 -i 5768 -a 0 -x {10.0 9.0 2879 ------- null} - -t 3.27245 -s 0 -d 9 -p ack -e 40 -c 0 -i 5768 -a 0 -x {10.0 9.0 2879 ------- null} h -t 3.27245 -s 0 -d 9 -p ack -e 40 -c 0 -i 5768 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.27274 -s 10 -d 7 -p ack -e 40 -c 0 -i 5772 -a 0 -x {10.0 9.0 2881 ------- null} + -t 3.27274 -s 7 -d 0 -p ack -e 40 -c 0 -i 5772 -a 0 -x {10.0 9.0 2881 ------- null} h -t 3.27274 -s 7 -d 8 -p ack -e 40 -c 0 -i 5772 -a 0 -x {10.0 9.0 2881 ------- null} r -t 3.27286 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5771 -a 0 -x {9.0 10.0 2890 ------- null} + -t 3.27286 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5771 -a 0 -x {9.0 10.0 2890 ------- null} h -t 3.27286 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5771 -a 0 -x {9.0 10.0 2890 ------- null} r -t 3.27288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5757 -a 0 -x {9.0 10.0 2883 ------- null} + -t 3.27288 -s 10 -d 7 -p ack -e 40 -c 0 -i 5776 -a 0 -x {10.0 9.0 2883 ------- null} - -t 3.27288 -s 10 -d 7 -p ack -e 40 -c 0 -i 5776 -a 0 -x {10.0 9.0 2883 ------- null} h -t 3.27288 -s 10 -d 7 -p ack -e 40 -c 0 -i 5776 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.27334 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5763 -a 0 -x {9.0 10.0 2886 ------- null} - -t 3.27334 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5763 -a 0 -x {9.0 10.0 2886 ------- null} h -t 3.27334 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5763 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.27342 -s 0 -d 9 -p ack -e 40 -c 0 -i 5766 -a 0 -x {10.0 9.0 2878 ------- null} + -t 3.27342 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5777 -a 0 -x {9.0 10.0 2893 ------- null} - -t 3.27342 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5777 -a 0 -x {9.0 10.0 2893 ------- null} h -t 3.27342 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5777 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.27358 -s 0 -d 9 -p ack -e 40 -c 0 -i 5770 -a 0 -x {10.0 9.0 2880 ------- null} - -t 3.27358 -s 0 -d 9 -p ack -e 40 -c 0 -i 5770 -a 0 -x {10.0 9.0 2880 ------- null} h -t 3.27358 -s 0 -d 9 -p ack -e 40 -c 0 -i 5770 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.27382 -s 10 -d 7 -p ack -e 40 -c 0 -i 5774 -a 0 -x {10.0 9.0 2882 ------- null} + -t 3.27382 -s 7 -d 0 -p ack -e 40 -c 0 -i 5774 -a 0 -x {10.0 9.0 2882 ------- null} h -t 3.27382 -s 7 -d 8 -p ack -e 40 -c 0 -i 5774 -a 0 -x {10.0 9.0 2882 ------- null} r -t 3.27397 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5759 -a 0 -x {9.0 10.0 2884 ------- null} + -t 3.27397 -s 10 -d 7 -p ack -e 40 -c 0 -i 5778 -a 0 -x {10.0 9.0 2884 ------- null} - -t 3.27397 -s 10 -d 7 -p ack -e 40 -c 0 -i 5778 -a 0 -x {10.0 9.0 2884 ------- null} h -t 3.27397 -s 10 -d 7 -p ack -e 40 -c 0 -i 5778 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.27402 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5773 -a 0 -x {9.0 10.0 2891 ------- null} + -t 3.27402 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5773 -a 0 -x {9.0 10.0 2891 ------- null} h -t 3.27402 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5773 -a 0 -x {9.0 10.0 2891 ------- null} + -t 3.27443 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5765 -a 0 -x {9.0 10.0 2887 ------- null} - -t 3.27443 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5765 -a 0 -x {9.0 10.0 2887 ------- null} h -t 3.27443 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5765 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.27448 -s 0 -d 9 -p ack -e 40 -c 0 -i 5768 -a 0 -x {10.0 9.0 2879 ------- null} + -t 3.27448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5779 -a 0 -x {9.0 10.0 2894 ------- null} - -t 3.27448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5779 -a 0 -x {9.0 10.0 2894 ------- null} h -t 3.27448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5779 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.27453 -s 0 -d 9 -p ack -e 40 -c 0 -i 5772 -a 0 -x {10.0 9.0 2881 ------- null} - -t 3.27453 -s 0 -d 9 -p ack -e 40 -c 0 -i 5772 -a 0 -x {10.0 9.0 2881 ------- null} h -t 3.27453 -s 0 -d 9 -p ack -e 40 -c 0 -i 5772 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.27491 -s 10 -d 7 -p ack -e 40 -c 0 -i 5776 -a 0 -x {10.0 9.0 2883 ------- null} + -t 3.27491 -s 7 -d 0 -p ack -e 40 -c 0 -i 5776 -a 0 -x {10.0 9.0 2883 ------- null} h -t 3.27491 -s 7 -d 8 -p ack -e 40 -c 0 -i 5776 -a 0 -x {10.0 9.0 2883 ------- null} r -t 3.27498 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5775 -a 0 -x {9.0 10.0 2892 ------- null} + -t 3.27498 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5775 -a 0 -x {9.0 10.0 2892 ------- null} h -t 3.27498 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5775 -a 0 -x {9.0 10.0 2892 ------- null} r -t 3.27506 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5761 -a 0 -x {9.0 10.0 2885 ------- null} + -t 3.27506 -s 10 -d 7 -p ack -e 40 -c 0 -i 5780 -a 0 -x {10.0 9.0 2885 ------- null} - -t 3.27506 -s 10 -d 7 -p ack -e 40 -c 0 -i 5780 -a 0 -x {10.0 9.0 2885 ------- null} h -t 3.27506 -s 10 -d 7 -p ack -e 40 -c 0 -i 5780 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.27552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5767 -a 0 -x {9.0 10.0 2888 ------- null} - -t 3.27552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5767 -a 0 -x {9.0 10.0 2888 ------- null} h -t 3.27552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5767 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.27562 -s 0 -d 9 -p ack -e 40 -c 0 -i 5774 -a 0 -x {10.0 9.0 2882 ------- null} - -t 3.27562 -s 0 -d 9 -p ack -e 40 -c 0 -i 5774 -a 0 -x {10.0 9.0 2882 ------- null} h -t 3.27562 -s 0 -d 9 -p ack -e 40 -c 0 -i 5774 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.27562 -s 0 -d 9 -p ack -e 40 -c 0 -i 5770 -a 0 -x {10.0 9.0 2880 ------- null} + -t 3.27562 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5781 -a 0 -x {9.0 10.0 2895 ------- null} - -t 3.27562 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5781 -a 0 -x {9.0 10.0 2895 ------- null} h -t 3.27562 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5781 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.276 -s 10 -d 7 -p ack -e 40 -c 0 -i 5778 -a 0 -x {10.0 9.0 2884 ------- null} + -t 3.276 -s 7 -d 0 -p ack -e 40 -c 0 -i 5778 -a 0 -x {10.0 9.0 2884 ------- null} h -t 3.276 -s 7 -d 8 -p ack -e 40 -c 0 -i 5778 -a 0 -x {10.0 9.0 2884 ------- null} r -t 3.27614 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5763 -a 0 -x {9.0 10.0 2886 ------- null} + -t 3.27614 -s 10 -d 7 -p ack -e 40 -c 0 -i 5782 -a 0 -x {10.0 9.0 2886 ------- null} - -t 3.27614 -s 10 -d 7 -p ack -e 40 -c 0 -i 5782 -a 0 -x {10.0 9.0 2886 ------- null} h -t 3.27614 -s 10 -d 7 -p ack -e 40 -c 0 -i 5782 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.27622 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5777 -a 0 -x {9.0 10.0 2893 ------- null} + -t 3.27622 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5777 -a 0 -x {9.0 10.0 2893 ------- null} h -t 3.27622 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5777 -a 0 -x {9.0 10.0 2893 ------- null} r -t 3.27656 -s 0 -d 9 -p ack -e 40 -c 0 -i 5772 -a 0 -x {10.0 9.0 2881 ------- null} + -t 3.27656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5783 -a 0 -x {9.0 10.0 2896 ------- null} - -t 3.27656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5783 -a 0 -x {9.0 10.0 2896 ------- null} h -t 3.27656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5783 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.27661 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5769 -a 0 -x {9.0 10.0 2889 ------- null} - -t 3.27661 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5769 -a 0 -x {9.0 10.0 2889 ------- null} h -t 3.27661 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5769 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.27683 -s 0 -d 9 -p ack -e 40 -c 0 -i 5776 -a 0 -x {10.0 9.0 2883 ------- null} - -t 3.27683 -s 0 -d 9 -p ack -e 40 -c 0 -i 5776 -a 0 -x {10.0 9.0 2883 ------- null} h -t 3.27683 -s 0 -d 9 -p ack -e 40 -c 0 -i 5776 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.27709 -s 10 -d 7 -p ack -e 40 -c 0 -i 5780 -a 0 -x {10.0 9.0 2885 ------- null} + -t 3.27709 -s 7 -d 0 -p ack -e 40 -c 0 -i 5780 -a 0 -x {10.0 9.0 2885 ------- null} h -t 3.27709 -s 7 -d 8 -p ack -e 40 -c 0 -i 5780 -a 0 -x {10.0 9.0 2885 ------- null} r -t 3.27723 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5765 -a 0 -x {9.0 10.0 2887 ------- null} + -t 3.27723 -s 10 -d 7 -p ack -e 40 -c 0 -i 5784 -a 0 -x {10.0 9.0 2887 ------- null} - -t 3.27723 -s 10 -d 7 -p ack -e 40 -c 0 -i 5784 -a 0 -x {10.0 9.0 2887 ------- null} h -t 3.27723 -s 10 -d 7 -p ack -e 40 -c 0 -i 5784 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.27728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5779 -a 0 -x {9.0 10.0 2894 ------- null} + -t 3.27728 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5779 -a 0 -x {9.0 10.0 2894 ------- null} h -t 3.27728 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5779 -a 0 -x {9.0 10.0 2894 ------- null} r -t 3.27765 -s 0 -d 9 -p ack -e 40 -c 0 -i 5774 -a 0 -x {10.0 9.0 2882 ------- null} + -t 3.27765 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5785 -a 0 -x {9.0 10.0 2897 ------- null} - -t 3.27765 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5785 -a 0 -x {9.0 10.0 2897 ------- null} h -t 3.27765 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5785 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.2777 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5771 -a 0 -x {9.0 10.0 2890 ------- null} - -t 3.2777 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5771 -a 0 -x {9.0 10.0 2890 ------- null} h -t 3.2777 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5771 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.27779 -s 0 -d 9 -p ack -e 40 -c 0 -i 5778 -a 0 -x {10.0 9.0 2884 ------- null} - -t 3.27779 -s 0 -d 9 -p ack -e 40 -c 0 -i 5778 -a 0 -x {10.0 9.0 2884 ------- null} h -t 3.27779 -s 0 -d 9 -p ack -e 40 -c 0 -i 5778 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.27818 -s 10 -d 7 -p ack -e 40 -c 0 -i 5782 -a 0 -x {10.0 9.0 2886 ------- null} + -t 3.27818 -s 7 -d 0 -p ack -e 40 -c 0 -i 5782 -a 0 -x {10.0 9.0 2886 ------- null} h -t 3.27818 -s 7 -d 8 -p ack -e 40 -c 0 -i 5782 -a 0 -x {10.0 9.0 2886 ------- null} r -t 3.27832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5767 -a 0 -x {9.0 10.0 2888 ------- null} + -t 3.27832 -s 10 -d 7 -p ack -e 40 -c 0 -i 5786 -a 0 -x {10.0 9.0 2888 ------- null} - -t 3.27832 -s 10 -d 7 -p ack -e 40 -c 0 -i 5786 -a 0 -x {10.0 9.0 2888 ------- null} h -t 3.27832 -s 10 -d 7 -p ack -e 40 -c 0 -i 5786 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.27842 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5781 -a 0 -x {9.0 10.0 2895 ------- null} + -t 3.27842 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5781 -a 0 -x {9.0 10.0 2895 ------- null} h -t 3.27842 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5781 -a 0 -x {9.0 10.0 2895 ------- null} + -t 3.27878 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5773 -a 0 -x {9.0 10.0 2891 ------- null} - -t 3.27878 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5773 -a 0 -x {9.0 10.0 2891 ------- null} h -t 3.27878 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5773 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.27886 -s 0 -d 9 -p ack -e 40 -c 0 -i 5780 -a 0 -x {10.0 9.0 2885 ------- null} - -t 3.27886 -s 0 -d 9 -p ack -e 40 -c 0 -i 5780 -a 0 -x {10.0 9.0 2885 ------- null} h -t 3.27886 -s 0 -d 9 -p ack -e 40 -c 0 -i 5780 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.27886 -s 0 -d 9 -p ack -e 40 -c 0 -i 5776 -a 0 -x {10.0 9.0 2883 ------- null} + -t 3.27886 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5787 -a 0 -x {9.0 10.0 2898 ------- null} - -t 3.27886 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5787 -a 0 -x {9.0 10.0 2898 ------- null} h -t 3.27886 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5787 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.27926 -s 10 -d 7 -p ack -e 40 -c 0 -i 5784 -a 0 -x {10.0 9.0 2887 ------- null} + -t 3.27926 -s 7 -d 0 -p ack -e 40 -c 0 -i 5784 -a 0 -x {10.0 9.0 2887 ------- null} h -t 3.27926 -s 7 -d 8 -p ack -e 40 -c 0 -i 5784 -a 0 -x {10.0 9.0 2887 ------- null} r -t 3.27936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5783 -a 0 -x {9.0 10.0 2896 ------- null} + -t 3.27936 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5783 -a 0 -x {9.0 10.0 2896 ------- null} h -t 3.27936 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5783 -a 0 -x {9.0 10.0 2896 ------- null} r -t 3.27941 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5769 -a 0 -x {9.0 10.0 2889 ------- null} + -t 3.27941 -s 10 -d 7 -p ack -e 40 -c 0 -i 5788 -a 0 -x {10.0 9.0 2889 ------- null} - -t 3.27941 -s 10 -d 7 -p ack -e 40 -c 0 -i 5788 -a 0 -x {10.0 9.0 2889 ------- null} h -t 3.27941 -s 10 -d 7 -p ack -e 40 -c 0 -i 5788 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.27982 -s 0 -d 9 -p ack -e 40 -c 0 -i 5778 -a 0 -x {10.0 9.0 2884 ------- null} + -t 3.27982 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5789 -a 0 -x {9.0 10.0 2899 ------- null} - -t 3.27982 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5789 -a 0 -x {9.0 10.0 2899 ------- null} h -t 3.27982 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5789 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.27987 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5775 -a 0 -x {9.0 10.0 2892 ------- null} - -t 3.27987 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5775 -a 0 -x {9.0 10.0 2892 ------- null} h -t 3.27987 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5775 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.28011 -s 0 -d 9 -p ack -e 40 -c 0 -i 5782 -a 0 -x {10.0 9.0 2886 ------- null} - -t 3.28011 -s 0 -d 9 -p ack -e 40 -c 0 -i 5782 -a 0 -x {10.0 9.0 2886 ------- null} h -t 3.28011 -s 0 -d 9 -p ack -e 40 -c 0 -i 5782 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.28035 -s 10 -d 7 -p ack -e 40 -c 0 -i 5786 -a 0 -x {10.0 9.0 2888 ------- null} + -t 3.28035 -s 7 -d 0 -p ack -e 40 -c 0 -i 5786 -a 0 -x {10.0 9.0 2888 ------- null} h -t 3.28035 -s 7 -d 8 -p ack -e 40 -c 0 -i 5786 -a 0 -x {10.0 9.0 2888 ------- null} r -t 3.28045 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5785 -a 0 -x {9.0 10.0 2897 ------- null} + -t 3.28045 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5785 -a 0 -x {9.0 10.0 2897 ------- null} h -t 3.28045 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5785 -a 0 -x {9.0 10.0 2897 ------- null} r -t 3.2805 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5771 -a 0 -x {9.0 10.0 2890 ------- null} + -t 3.2805 -s 10 -d 7 -p ack -e 40 -c 0 -i 5790 -a 0 -x {10.0 9.0 2890 ------- null} - -t 3.2805 -s 10 -d 7 -p ack -e 40 -c 0 -i 5790 -a 0 -x {10.0 9.0 2890 ------- null} h -t 3.2805 -s 10 -d 7 -p ack -e 40 -c 0 -i 5790 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.2809 -s 0 -d 9 -p ack -e 40 -c 0 -i 5780 -a 0 -x {10.0 9.0 2885 ------- null} + -t 3.2809 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5791 -a 0 -x {9.0 10.0 2900 ------- null} - -t 3.2809 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5791 -a 0 -x {9.0 10.0 2900 ------- null} h -t 3.2809 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5791 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.28096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5777 -a 0 -x {9.0 10.0 2893 ------- null} - -t 3.28096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5777 -a 0 -x {9.0 10.0 2893 ------- null} h -t 3.28096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5777 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.28107 -s 0 -d 9 -p ack -e 40 -c 0 -i 5784 -a 0 -x {10.0 9.0 2887 ------- null} - -t 3.28107 -s 0 -d 9 -p ack -e 40 -c 0 -i 5784 -a 0 -x {10.0 9.0 2887 ------- null} h -t 3.28107 -s 0 -d 9 -p ack -e 40 -c 0 -i 5784 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.28144 -s 10 -d 7 -p ack -e 40 -c 0 -i 5788 -a 0 -x {10.0 9.0 2889 ------- null} + -t 3.28144 -s 7 -d 0 -p ack -e 40 -c 0 -i 5788 -a 0 -x {10.0 9.0 2889 ------- null} h -t 3.28144 -s 7 -d 8 -p ack -e 40 -c 0 -i 5788 -a 0 -x {10.0 9.0 2889 ------- null} r -t 3.28158 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5773 -a 0 -x {9.0 10.0 2891 ------- null} + -t 3.28158 -s 10 -d 7 -p ack -e 40 -c 0 -i 5792 -a 0 -x {10.0 9.0 2891 ------- null} - -t 3.28158 -s 10 -d 7 -p ack -e 40 -c 0 -i 5792 -a 0 -x {10.0 9.0 2891 ------- null} h -t 3.28158 -s 10 -d 7 -p ack -e 40 -c 0 -i 5792 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.28166 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5787 -a 0 -x {9.0 10.0 2898 ------- null} + -t 3.28166 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5787 -a 0 -x {9.0 10.0 2898 ------- null} h -t 3.28166 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5787 -a 0 -x {9.0 10.0 2898 ------- null} + -t 3.28205 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5779 -a 0 -x {9.0 10.0 2894 ------- null} - -t 3.28205 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5779 -a 0 -x {9.0 10.0 2894 ------- null} h -t 3.28205 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5779 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.28214 -s 0 -d 9 -p ack -e 40 -c 0 -i 5782 -a 0 -x {10.0 9.0 2886 ------- null} + -t 3.28214 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5793 -a 0 -x {9.0 10.0 2901 ------- null} - -t 3.28214 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5793 -a 0 -x {9.0 10.0 2901 ------- null} h -t 3.28214 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5793 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.28216 -s 0 -d 9 -p ack -e 40 -c 0 -i 5786 -a 0 -x {10.0 9.0 2888 ------- null} - -t 3.28216 -s 0 -d 9 -p ack -e 40 -c 0 -i 5786 -a 0 -x {10.0 9.0 2888 ------- null} h -t 3.28216 -s 0 -d 9 -p ack -e 40 -c 0 -i 5786 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.28253 -s 10 -d 7 -p ack -e 40 -c 0 -i 5790 -a 0 -x {10.0 9.0 2890 ------- null} + -t 3.28253 -s 7 -d 0 -p ack -e 40 -c 0 -i 5790 -a 0 -x {10.0 9.0 2890 ------- null} h -t 3.28253 -s 7 -d 8 -p ack -e 40 -c 0 -i 5790 -a 0 -x {10.0 9.0 2890 ------- null} r -t 3.28262 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5789 -a 0 -x {9.0 10.0 2899 ------- null} + -t 3.28262 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5789 -a 0 -x {9.0 10.0 2899 ------- null} h -t 3.28262 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5789 -a 0 -x {9.0 10.0 2899 ------- null} r -t 3.28267 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5775 -a 0 -x {9.0 10.0 2892 ------- null} + -t 3.28267 -s 10 -d 7 -p ack -e 40 -c 0 -i 5794 -a 0 -x {10.0 9.0 2892 ------- null} - -t 3.28267 -s 10 -d 7 -p ack -e 40 -c 0 -i 5794 -a 0 -x {10.0 9.0 2892 ------- null} h -t 3.28267 -s 10 -d 7 -p ack -e 40 -c 0 -i 5794 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.2831 -s 0 -d 9 -p ack -e 40 -c 0 -i 5784 -a 0 -x {10.0 9.0 2887 ------- null} + -t 3.2831 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5795 -a 0 -x {9.0 10.0 2902 ------- null} - -t 3.2831 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5795 -a 0 -x {9.0 10.0 2902 ------- null} h -t 3.2831 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5795 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.28314 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5781 -a 0 -x {9.0 10.0 2895 ------- null} - -t 3.28314 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5781 -a 0 -x {9.0 10.0 2895 ------- null} h -t 3.28314 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5781 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.28325 -s 0 -d 9 -p ack -e 40 -c 0 -i 5788 -a 0 -x {10.0 9.0 2889 ------- null} - -t 3.28325 -s 0 -d 9 -p ack -e 40 -c 0 -i 5788 -a 0 -x {10.0 9.0 2889 ------- null} h -t 3.28325 -s 0 -d 9 -p ack -e 40 -c 0 -i 5788 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.28362 -s 10 -d 7 -p ack -e 40 -c 0 -i 5792 -a 0 -x {10.0 9.0 2891 ------- null} + -t 3.28362 -s 7 -d 0 -p ack -e 40 -c 0 -i 5792 -a 0 -x {10.0 9.0 2891 ------- null} h -t 3.28362 -s 7 -d 8 -p ack -e 40 -c 0 -i 5792 -a 0 -x {10.0 9.0 2891 ------- null} r -t 3.2837 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5791 -a 0 -x {9.0 10.0 2900 ------- null} + -t 3.2837 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5791 -a 0 -x {9.0 10.0 2900 ------- null} h -t 3.2837 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5791 -a 0 -x {9.0 10.0 2900 ------- null} r -t 3.28376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5777 -a 0 -x {9.0 10.0 2893 ------- null} + -t 3.28376 -s 10 -d 7 -p ack -e 40 -c 0 -i 5796 -a 0 -x {10.0 9.0 2893 ------- null} - -t 3.28376 -s 10 -d 7 -p ack -e 40 -c 0 -i 5796 -a 0 -x {10.0 9.0 2893 ------- null} h -t 3.28376 -s 10 -d 7 -p ack -e 40 -c 0 -i 5796 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.28419 -s 0 -d 9 -p ack -e 40 -c 0 -i 5786 -a 0 -x {10.0 9.0 2888 ------- null} + -t 3.28419 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5797 -a 0 -x {9.0 10.0 2903 ------- null} - -t 3.28419 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5797 -a 0 -x {9.0 10.0 2903 ------- null} h -t 3.28419 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5797 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.28422 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5783 -a 0 -x {9.0 10.0 2896 ------- null} - -t 3.28422 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5783 -a 0 -x {9.0 10.0 2896 ------- null} h -t 3.28422 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5783 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.28446 -s 0 -d 9 -p ack -e 40 -c 0 -i 5790 -a 0 -x {10.0 9.0 2890 ------- null} - -t 3.28446 -s 0 -d 9 -p ack -e 40 -c 0 -i 5790 -a 0 -x {10.0 9.0 2890 ------- null} h -t 3.28446 -s 0 -d 9 -p ack -e 40 -c 0 -i 5790 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.2847 -s 10 -d 7 -p ack -e 40 -c 0 -i 5794 -a 0 -x {10.0 9.0 2892 ------- null} + -t 3.2847 -s 7 -d 0 -p ack -e 40 -c 0 -i 5794 -a 0 -x {10.0 9.0 2892 ------- null} h -t 3.2847 -s 7 -d 8 -p ack -e 40 -c 0 -i 5794 -a 0 -x {10.0 9.0 2892 ------- null} r -t 3.28485 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5779 -a 0 -x {9.0 10.0 2894 ------- null} + -t 3.28485 -s 10 -d 7 -p ack -e 40 -c 0 -i 5798 -a 0 -x {10.0 9.0 2894 ------- null} - -t 3.28485 -s 10 -d 7 -p ack -e 40 -c 0 -i 5798 -a 0 -x {10.0 9.0 2894 ------- null} h -t 3.28485 -s 10 -d 7 -p ack -e 40 -c 0 -i 5798 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.28494 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5793 -a 0 -x {9.0 10.0 2901 ------- null} + -t 3.28494 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5793 -a 0 -x {9.0 10.0 2901 ------- null} h -t 3.28494 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5793 -a 0 -x {9.0 10.0 2901 ------- null} r -t 3.28528 -s 0 -d 9 -p ack -e 40 -c 0 -i 5788 -a 0 -x {10.0 9.0 2889 ------- null} + -t 3.28528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5799 -a 0 -x {9.0 10.0 2904 ------- null} - -t 3.28528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5799 -a 0 -x {9.0 10.0 2904 ------- null} h -t 3.28528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5799 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.28531 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5785 -a 0 -x {9.0 10.0 2897 ------- null} - -t 3.28531 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5785 -a 0 -x {9.0 10.0 2897 ------- null} h -t 3.28531 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5785 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.28539 -s 0 -d 9 -p ack -e 40 -c 0 -i 5792 -a 0 -x {10.0 9.0 2891 ------- null} - -t 3.28539 -s 0 -d 9 -p ack -e 40 -c 0 -i 5792 -a 0 -x {10.0 9.0 2891 ------- null} h -t 3.28539 -s 0 -d 9 -p ack -e 40 -c 0 -i 5792 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.28579 -s 10 -d 7 -p ack -e 40 -c 0 -i 5796 -a 0 -x {10.0 9.0 2893 ------- null} + -t 3.28579 -s 7 -d 0 -p ack -e 40 -c 0 -i 5796 -a 0 -x {10.0 9.0 2893 ------- null} h -t 3.28579 -s 7 -d 8 -p ack -e 40 -c 0 -i 5796 -a 0 -x {10.0 9.0 2893 ------- null} r -t 3.2859 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5795 -a 0 -x {9.0 10.0 2902 ------- null} + -t 3.2859 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5795 -a 0 -x {9.0 10.0 2902 ------- null} h -t 3.2859 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5795 -a 0 -x {9.0 10.0 2902 ------- null} r -t 3.28594 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5781 -a 0 -x {9.0 10.0 2895 ------- null} + -t 3.28594 -s 10 -d 7 -p ack -e 40 -c 0 -i 5800 -a 0 -x {10.0 9.0 2895 ------- null} - -t 3.28594 -s 10 -d 7 -p ack -e 40 -c 0 -i 5800 -a 0 -x {10.0 9.0 2895 ------- null} h -t 3.28594 -s 10 -d 7 -p ack -e 40 -c 0 -i 5800 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.2864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5787 -a 0 -x {9.0 10.0 2898 ------- null} - -t 3.2864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5787 -a 0 -x {9.0 10.0 2898 ------- null} h -t 3.2864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5787 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.2865 -s 0 -d 9 -p ack -e 40 -c 0 -i 5790 -a 0 -x {10.0 9.0 2890 ------- null} + -t 3.2865 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5801 -a 0 -x {9.0 10.0 2905 ------- null} - -t 3.2865 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5801 -a 0 -x {9.0 10.0 2905 ------- null} h -t 3.2865 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5801 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.28658 -s 0 -d 9 -p ack -e 40 -c 0 -i 5794 -a 0 -x {10.0 9.0 2892 ------- null} - -t 3.28658 -s 0 -d 9 -p ack -e 40 -c 0 -i 5794 -a 0 -x {10.0 9.0 2892 ------- null} h -t 3.28658 -s 0 -d 9 -p ack -e 40 -c 0 -i 5794 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.28688 -s 10 -d 7 -p ack -e 40 -c 0 -i 5798 -a 0 -x {10.0 9.0 2894 ------- null} + -t 3.28688 -s 7 -d 0 -p ack -e 40 -c 0 -i 5798 -a 0 -x {10.0 9.0 2894 ------- null} h -t 3.28688 -s 7 -d 8 -p ack -e 40 -c 0 -i 5798 -a 0 -x {10.0 9.0 2894 ------- null} r -t 3.28699 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5797 -a 0 -x {9.0 10.0 2903 ------- null} + -t 3.28699 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5797 -a 0 -x {9.0 10.0 2903 ------- null} h -t 3.28699 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5797 -a 0 -x {9.0 10.0 2903 ------- null} r -t 3.28702 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5783 -a 0 -x {9.0 10.0 2896 ------- null} + -t 3.28702 -s 10 -d 7 -p ack -e 40 -c 0 -i 5802 -a 0 -x {10.0 9.0 2896 ------- null} - -t 3.28702 -s 10 -d 7 -p ack -e 40 -c 0 -i 5802 -a 0 -x {10.0 9.0 2896 ------- null} h -t 3.28702 -s 10 -d 7 -p ack -e 40 -c 0 -i 5802 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.28742 -s 0 -d 9 -p ack -e 40 -c 0 -i 5792 -a 0 -x {10.0 9.0 2891 ------- null} + -t 3.28742 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5803 -a 0 -x {9.0 10.0 2906 ------- null} - -t 3.28742 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5803 -a 0 -x {9.0 10.0 2906 ------- null} h -t 3.28742 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5803 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.28749 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5789 -a 0 -x {9.0 10.0 2899 ------- null} - -t 3.28749 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5789 -a 0 -x {9.0 10.0 2899 ------- null} h -t 3.28749 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5789 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.28766 -s 0 -d 9 -p ack -e 40 -c 0 -i 5796 -a 0 -x {10.0 9.0 2893 ------- null} - -t 3.28766 -s 0 -d 9 -p ack -e 40 -c 0 -i 5796 -a 0 -x {10.0 9.0 2893 ------- null} h -t 3.28766 -s 0 -d 9 -p ack -e 40 -c 0 -i 5796 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.28797 -s 10 -d 7 -p ack -e 40 -c 0 -i 5800 -a 0 -x {10.0 9.0 2895 ------- null} + -t 3.28797 -s 7 -d 0 -p ack -e 40 -c 0 -i 5800 -a 0 -x {10.0 9.0 2895 ------- null} h -t 3.28797 -s 7 -d 8 -p ack -e 40 -c 0 -i 5800 -a 0 -x {10.0 9.0 2895 ------- null} r -t 3.28808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5799 -a 0 -x {9.0 10.0 2904 ------- null} + -t 3.28808 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5799 -a 0 -x {9.0 10.0 2904 ------- null} h -t 3.28808 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5799 -a 0 -x {9.0 10.0 2904 ------- null} r -t 3.28811 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5785 -a 0 -x {9.0 10.0 2897 ------- null} + -t 3.28811 -s 10 -d 7 -p ack -e 40 -c 0 -i 5804 -a 0 -x {10.0 9.0 2897 ------- null} - -t 3.28811 -s 10 -d 7 -p ack -e 40 -c 0 -i 5804 -a 0 -x {10.0 9.0 2897 ------- null} h -t 3.28811 -s 10 -d 7 -p ack -e 40 -c 0 -i 5804 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.28858 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5791 -a 0 -x {9.0 10.0 2900 ------- null} - -t 3.28858 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5791 -a 0 -x {9.0 10.0 2900 ------- null} h -t 3.28858 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5791 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.28861 -s 0 -d 9 -p ack -e 40 -c 0 -i 5794 -a 0 -x {10.0 9.0 2892 ------- null} + -t 3.28861 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5805 -a 0 -x {9.0 10.0 2907 ------- null} - -t 3.28861 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5805 -a 0 -x {9.0 10.0 2907 ------- null} h -t 3.28861 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5805 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.28882 -s 0 -d 9 -p ack -e 40 -c 0 -i 5798 -a 0 -x {10.0 9.0 2894 ------- null} - -t 3.28882 -s 0 -d 9 -p ack -e 40 -c 0 -i 5798 -a 0 -x {10.0 9.0 2894 ------- null} h -t 3.28882 -s 0 -d 9 -p ack -e 40 -c 0 -i 5798 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.28906 -s 10 -d 7 -p ack -e 40 -c 0 -i 5802 -a 0 -x {10.0 9.0 2896 ------- null} + -t 3.28906 -s 7 -d 0 -p ack -e 40 -c 0 -i 5802 -a 0 -x {10.0 9.0 2896 ------- null} h -t 3.28906 -s 7 -d 8 -p ack -e 40 -c 0 -i 5802 -a 0 -x {10.0 9.0 2896 ------- null} r -t 3.2892 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5787 -a 0 -x {9.0 10.0 2898 ------- null} + -t 3.2892 -s 10 -d 7 -p ack -e 40 -c 0 -i 5806 -a 0 -x {10.0 9.0 2898 ------- null} - -t 3.2892 -s 10 -d 7 -p ack -e 40 -c 0 -i 5806 -a 0 -x {10.0 9.0 2898 ------- null} h -t 3.2892 -s 10 -d 7 -p ack -e 40 -c 0 -i 5806 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.2893 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5801 -a 0 -x {9.0 10.0 2905 ------- null} + -t 3.2893 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5801 -a 0 -x {9.0 10.0 2905 ------- null} h -t 3.2893 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5801 -a 0 -x {9.0 10.0 2905 ------- null} + -t 3.28966 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5793 -a 0 -x {9.0 10.0 2901 ------- null} - -t 3.28966 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5793 -a 0 -x {9.0 10.0 2901 ------- null} h -t 3.28966 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5793 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.2897 -s 0 -d 9 -p ack -e 40 -c 0 -i 5796 -a 0 -x {10.0 9.0 2893 ------- null} + -t 3.2897 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5807 -a 0 -x {9.0 10.0 2908 ------- null} - -t 3.2897 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5807 -a 0 -x {9.0 10.0 2908 ------- null} h -t 3.2897 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5807 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.28981 -s 0 -d 9 -p ack -e 40 -c 0 -i 5800 -a 0 -x {10.0 9.0 2895 ------- null} - -t 3.28981 -s 0 -d 9 -p ack -e 40 -c 0 -i 5800 -a 0 -x {10.0 9.0 2895 ------- null} h -t 3.28981 -s 0 -d 9 -p ack -e 40 -c 0 -i 5800 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.29014 -s 10 -d 7 -p ack -e 40 -c 0 -i 5804 -a 0 -x {10.0 9.0 2897 ------- null} + -t 3.29014 -s 7 -d 0 -p ack -e 40 -c 0 -i 5804 -a 0 -x {10.0 9.0 2897 ------- null} h -t 3.29014 -s 7 -d 8 -p ack -e 40 -c 0 -i 5804 -a 0 -x {10.0 9.0 2897 ------- null} r -t 3.29022 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5803 -a 0 -x {9.0 10.0 2906 ------- null} + -t 3.29022 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5803 -a 0 -x {9.0 10.0 2906 ------- null} h -t 3.29022 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5803 -a 0 -x {9.0 10.0 2906 ------- null} r -t 3.29029 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5789 -a 0 -x {9.0 10.0 2899 ------- null} + -t 3.29029 -s 10 -d 7 -p ack -e 40 -c 0 -i 5808 -a 0 -x {10.0 9.0 2899 ------- null} - -t 3.29029 -s 10 -d 7 -p ack -e 40 -c 0 -i 5808 -a 0 -x {10.0 9.0 2899 ------- null} h -t 3.29029 -s 10 -d 7 -p ack -e 40 -c 0 -i 5808 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.29075 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5795 -a 0 -x {9.0 10.0 2902 ------- null} - -t 3.29075 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5795 -a 0 -x {9.0 10.0 2902 ------- null} h -t 3.29075 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5795 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.29085 -s 0 -d 9 -p ack -e 40 -c 0 -i 5798 -a 0 -x {10.0 9.0 2894 ------- null} + -t 3.29085 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5809 -a 0 -x {9.0 10.0 2909 ------- null} - -t 3.29085 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5809 -a 0 -x {9.0 10.0 2909 ------- null} h -t 3.29085 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5809 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.29106 -s 0 -d 9 -p ack -e 40 -c 0 -i 5802 -a 0 -x {10.0 9.0 2896 ------- null} - -t 3.29106 -s 0 -d 9 -p ack -e 40 -c 0 -i 5802 -a 0 -x {10.0 9.0 2896 ------- null} h -t 3.29106 -s 0 -d 9 -p ack -e 40 -c 0 -i 5802 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.29123 -s 10 -d 7 -p ack -e 40 -c 0 -i 5806 -a 0 -x {10.0 9.0 2898 ------- null} + -t 3.29123 -s 7 -d 0 -p ack -e 40 -c 0 -i 5806 -a 0 -x {10.0 9.0 2898 ------- null} h -t 3.29123 -s 7 -d 8 -p ack -e 40 -c 0 -i 5806 -a 0 -x {10.0 9.0 2898 ------- null} r -t 3.29138 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5791 -a 0 -x {9.0 10.0 2900 ------- null} + -t 3.29138 -s 10 -d 7 -p ack -e 40 -c 0 -i 5810 -a 0 -x {10.0 9.0 2900 ------- null} - -t 3.29138 -s 10 -d 7 -p ack -e 40 -c 0 -i 5810 -a 0 -x {10.0 9.0 2900 ------- null} h -t 3.29138 -s 10 -d 7 -p ack -e 40 -c 0 -i 5810 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.29141 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5805 -a 0 -x {9.0 10.0 2907 ------- null} + -t 3.29141 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5805 -a 0 -x {9.0 10.0 2907 ------- null} h -t 3.29141 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5805 -a 0 -x {9.0 10.0 2907 ------- null} r -t 3.29184 -s 0 -d 9 -p ack -e 40 -c 0 -i 5800 -a 0 -x {10.0 9.0 2895 ------- null} + -t 3.29184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5811 -a 0 -x {9.0 10.0 2910 ------- null} - -t 3.29184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5811 -a 0 -x {9.0 10.0 2910 ------- null} h -t 3.29184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5811 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.29197 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5797 -a 0 -x {9.0 10.0 2903 ------- null} - -t 3.29197 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5797 -a 0 -x {9.0 10.0 2903 ------- null} h -t 3.29197 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5797 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.29222 -s 0 -d 9 -p ack -e 40 -c 0 -i 5804 -a 0 -x {10.0 9.0 2897 ------- null} - -t 3.29222 -s 0 -d 9 -p ack -e 40 -c 0 -i 5804 -a 0 -x {10.0 9.0 2897 ------- null} h -t 3.29222 -s 0 -d 9 -p ack -e 40 -c 0 -i 5804 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.29232 -s 10 -d 7 -p ack -e 40 -c 0 -i 5808 -a 0 -x {10.0 9.0 2899 ------- null} + -t 3.29232 -s 7 -d 0 -p ack -e 40 -c 0 -i 5808 -a 0 -x {10.0 9.0 2899 ------- null} h -t 3.29232 -s 7 -d 8 -p ack -e 40 -c 0 -i 5808 -a 0 -x {10.0 9.0 2899 ------- null} r -t 3.29246 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5793 -a 0 -x {9.0 10.0 2901 ------- null} + -t 3.29246 -s 10 -d 7 -p ack -e 40 -c 0 -i 5812 -a 0 -x {10.0 9.0 2901 ------- null} - -t 3.29246 -s 10 -d 7 -p ack -e 40 -c 0 -i 5812 -a 0 -x {10.0 9.0 2901 ------- null} h -t 3.29246 -s 10 -d 7 -p ack -e 40 -c 0 -i 5812 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.2925 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5807 -a 0 -x {9.0 10.0 2908 ------- null} + -t 3.2925 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5807 -a 0 -x {9.0 10.0 2908 ------- null} h -t 3.2925 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5807 -a 0 -x {9.0 10.0 2908 ------- null} r -t 3.29309 -s 0 -d 9 -p ack -e 40 -c 0 -i 5802 -a 0 -x {10.0 9.0 2896 ------- null} + -t 3.29309 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5813 -a 0 -x {9.0 10.0 2911 ------- null} - -t 3.29309 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5813 -a 0 -x {9.0 10.0 2911 ------- null} h -t 3.29309 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5813 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.2932 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5799 -a 0 -x {9.0 10.0 2904 ------- null} - -t 3.2932 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5799 -a 0 -x {9.0 10.0 2904 ------- null} h -t 3.2932 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5799 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.2933 -s 0 -d 9 -p ack -e 40 -c 0 -i 5806 -a 0 -x {10.0 9.0 2898 ------- null} - -t 3.2933 -s 0 -d 9 -p ack -e 40 -c 0 -i 5806 -a 0 -x {10.0 9.0 2898 ------- null} h -t 3.2933 -s 0 -d 9 -p ack -e 40 -c 0 -i 5806 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.29341 -s 10 -d 7 -p ack -e 40 -c 0 -i 5810 -a 0 -x {10.0 9.0 2900 ------- null} + -t 3.29341 -s 7 -d 0 -p ack -e 40 -c 0 -i 5810 -a 0 -x {10.0 9.0 2900 ------- null} h -t 3.29341 -s 7 -d 8 -p ack -e 40 -c 0 -i 5810 -a 0 -x {10.0 9.0 2900 ------- null} r -t 3.29355 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5795 -a 0 -x {9.0 10.0 2902 ------- null} + -t 3.29355 -s 10 -d 7 -p ack -e 40 -c 0 -i 5814 -a 0 -x {10.0 9.0 2902 ------- null} - -t 3.29355 -s 10 -d 7 -p ack -e 40 -c 0 -i 5814 -a 0 -x {10.0 9.0 2902 ------- null} h -t 3.29355 -s 10 -d 7 -p ack -e 40 -c 0 -i 5814 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.29365 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5809 -a 0 -x {9.0 10.0 2909 ------- null} + -t 3.29365 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5809 -a 0 -x {9.0 10.0 2909 ------- null} h -t 3.29365 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5809 -a 0 -x {9.0 10.0 2909 ------- null} r -t 3.29426 -s 0 -d 9 -p ack -e 40 -c 0 -i 5804 -a 0 -x {10.0 9.0 2897 ------- null} + -t 3.29426 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5815 -a 0 -x {9.0 10.0 2912 ------- null} - -t 3.29426 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5815 -a 0 -x {9.0 10.0 2912 ------- null} h -t 3.29426 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5815 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.29429 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5801 -a 0 -x {9.0 10.0 2905 ------- null} - -t 3.29429 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5801 -a 0 -x {9.0 10.0 2905 ------- null} h -t 3.29429 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5801 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.29442 -s 0 -d 9 -p ack -e 40 -c 0 -i 5808 -a 0 -x {10.0 9.0 2899 ------- null} - -t 3.29442 -s 0 -d 9 -p ack -e 40 -c 0 -i 5808 -a 0 -x {10.0 9.0 2899 ------- null} h -t 3.29442 -s 0 -d 9 -p ack -e 40 -c 0 -i 5808 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.2945 -s 10 -d 7 -p ack -e 40 -c 0 -i 5812 -a 0 -x {10.0 9.0 2901 ------- null} + -t 3.2945 -s 7 -d 0 -p ack -e 40 -c 0 -i 5812 -a 0 -x {10.0 9.0 2901 ------- null} h -t 3.2945 -s 7 -d 8 -p ack -e 40 -c 0 -i 5812 -a 0 -x {10.0 9.0 2901 ------- null} r -t 3.29464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5811 -a 0 -x {9.0 10.0 2910 ------- null} + -t 3.29464 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5811 -a 0 -x {9.0 10.0 2910 ------- null} h -t 3.29464 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5811 -a 0 -x {9.0 10.0 2910 ------- null} r -t 3.29477 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5797 -a 0 -x {9.0 10.0 2903 ------- null} + -t 3.29477 -s 10 -d 7 -p ack -e 40 -c 0 -i 5816 -a 0 -x {10.0 9.0 2903 ------- null} - -t 3.29477 -s 10 -d 7 -p ack -e 40 -c 0 -i 5816 -a 0 -x {10.0 9.0 2903 ------- null} h -t 3.29477 -s 10 -d 7 -p ack -e 40 -c 0 -i 5816 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.29533 -s 0 -d 9 -p ack -e 40 -c 0 -i 5806 -a 0 -x {10.0 9.0 2898 ------- null} + -t 3.29533 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5817 -a 0 -x {9.0 10.0 2913 ------- null} - -t 3.29533 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5817 -a 0 -x {9.0 10.0 2913 ------- null} h -t 3.29533 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5817 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.29538 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5803 -a 0 -x {9.0 10.0 2906 ------- null} - -t 3.29538 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5803 -a 0 -x {9.0 10.0 2906 ------- null} h -t 3.29538 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5803 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.29558 -s 10 -d 7 -p ack -e 40 -c 0 -i 5814 -a 0 -x {10.0 9.0 2902 ------- null} + -t 3.29558 -s 7 -d 0 -p ack -e 40 -c 0 -i 5814 -a 0 -x {10.0 9.0 2902 ------- null} h -t 3.29558 -s 7 -d 8 -p ack -e 40 -c 0 -i 5814 -a 0 -x {10.0 9.0 2902 ------- null} + -t 3.29565 -s 0 -d 9 -p ack -e 40 -c 0 -i 5810 -a 0 -x {10.0 9.0 2900 ------- null} - -t 3.29565 -s 0 -d 9 -p ack -e 40 -c 0 -i 5810 -a 0 -x {10.0 9.0 2900 ------- null} h -t 3.29565 -s 0 -d 9 -p ack -e 40 -c 0 -i 5810 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.29589 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5813 -a 0 -x {9.0 10.0 2911 ------- null} + -t 3.29589 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5813 -a 0 -x {9.0 10.0 2911 ------- null} h -t 3.29589 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5813 -a 0 -x {9.0 10.0 2911 ------- null} r -t 3.296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5799 -a 0 -x {9.0 10.0 2904 ------- null} + -t 3.296 -s 10 -d 7 -p ack -e 40 -c 0 -i 5818 -a 0 -x {10.0 9.0 2904 ------- null} - -t 3.296 -s 10 -d 7 -p ack -e 40 -c 0 -i 5818 -a 0 -x {10.0 9.0 2904 ------- null} h -t 3.296 -s 10 -d 7 -p ack -e 40 -c 0 -i 5818 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.29645 -s 0 -d 9 -p ack -e 40 -c 0 -i 5808 -a 0 -x {10.0 9.0 2899 ------- null} + -t 3.29645 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5819 -a 0 -x {9.0 10.0 2914 ------- null} - -t 3.29645 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5819 -a 0 -x {9.0 10.0 2914 ------- null} h -t 3.29645 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5819 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.29651 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5805 -a 0 -x {9.0 10.0 2907 ------- null} - -t 3.29651 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5805 -a 0 -x {9.0 10.0 2907 ------- null} h -t 3.29651 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5805 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.29678 -s 0 -d 9 -p ack -e 40 -c 0 -i 5812 -a 0 -x {10.0 9.0 2901 ------- null} - -t 3.29678 -s 0 -d 9 -p ack -e 40 -c 0 -i 5812 -a 0 -x {10.0 9.0 2901 ------- null} h -t 3.29678 -s 0 -d 9 -p ack -e 40 -c 0 -i 5812 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.2968 -s 10 -d 7 -p ack -e 40 -c 0 -i 5816 -a 0 -x {10.0 9.0 2903 ------- null} + -t 3.2968 -s 7 -d 0 -p ack -e 40 -c 0 -i 5816 -a 0 -x {10.0 9.0 2903 ------- null} h -t 3.2968 -s 7 -d 8 -p ack -e 40 -c 0 -i 5816 -a 0 -x {10.0 9.0 2903 ------- null} r -t 3.29706 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5815 -a 0 -x {9.0 10.0 2912 ------- null} + -t 3.29706 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5815 -a 0 -x {9.0 10.0 2912 ------- null} h -t 3.29706 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5815 -a 0 -x {9.0 10.0 2912 ------- null} r -t 3.29709 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5801 -a 0 -x {9.0 10.0 2905 ------- null} + -t 3.29709 -s 10 -d 7 -p ack -e 40 -c 0 -i 5820 -a 0 -x {10.0 9.0 2905 ------- null} - -t 3.29709 -s 10 -d 7 -p ack -e 40 -c 0 -i 5820 -a 0 -x {10.0 9.0 2905 ------- null} h -t 3.29709 -s 10 -d 7 -p ack -e 40 -c 0 -i 5820 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.29768 -s 0 -d 9 -p ack -e 40 -c 0 -i 5810 -a 0 -x {10.0 9.0 2900 ------- null} + -t 3.29768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5821 -a 0 -x {9.0 10.0 2915 ------- null} - -t 3.29768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5821 -a 0 -x {9.0 10.0 2915 ------- null} h -t 3.29768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5821 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.29774 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5807 -a 0 -x {9.0 10.0 2908 ------- null} - -t 3.29774 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5807 -a 0 -x {9.0 10.0 2908 ------- null} h -t 3.29774 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5807 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.29797 -s 0 -d 9 -p ack -e 40 -c 0 -i 5814 -a 0 -x {10.0 9.0 2902 ------- null} - -t 3.29797 -s 0 -d 9 -p ack -e 40 -c 0 -i 5814 -a 0 -x {10.0 9.0 2902 ------- null} h -t 3.29797 -s 0 -d 9 -p ack -e 40 -c 0 -i 5814 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.29803 -s 10 -d 7 -p ack -e 40 -c 0 -i 5818 -a 0 -x {10.0 9.0 2904 ------- null} + -t 3.29803 -s 7 -d 0 -p ack -e 40 -c 0 -i 5818 -a 0 -x {10.0 9.0 2904 ------- null} h -t 3.29803 -s 7 -d 8 -p ack -e 40 -c 0 -i 5818 -a 0 -x {10.0 9.0 2904 ------- null} r -t 3.29813 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5817 -a 0 -x {9.0 10.0 2913 ------- null} + -t 3.29813 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5817 -a 0 -x {9.0 10.0 2913 ------- null} h -t 3.29813 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5817 -a 0 -x {9.0 10.0 2913 ------- null} r -t 3.29818 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5803 -a 0 -x {9.0 10.0 2906 ------- null} + -t 3.29818 -s 10 -d 7 -p ack -e 40 -c 0 -i 5822 -a 0 -x {10.0 9.0 2906 ------- null} - -t 3.29818 -s 10 -d 7 -p ack -e 40 -c 0 -i 5822 -a 0 -x {10.0 9.0 2906 ------- null} h -t 3.29818 -s 10 -d 7 -p ack -e 40 -c 0 -i 5822 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.29882 -s 0 -d 9 -p ack -e 40 -c 0 -i 5812 -a 0 -x {10.0 9.0 2901 ------- null} + -t 3.29882 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5823 -a 0 -x {9.0 10.0 2916 ------- null} - -t 3.29882 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5823 -a 0 -x {9.0 10.0 2916 ------- null} h -t 3.29882 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5823 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.29883 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5809 -a 0 -x {9.0 10.0 2909 ------- null} - -t 3.29883 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5809 -a 0 -x {9.0 10.0 2909 ------- null} h -t 3.29883 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5809 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.29894 -s 0 -d 9 -p ack -e 40 -c 0 -i 5816 -a 0 -x {10.0 9.0 2903 ------- null} - -t 3.29894 -s 0 -d 9 -p ack -e 40 -c 0 -i 5816 -a 0 -x {10.0 9.0 2903 ------- null} h -t 3.29894 -s 0 -d 9 -p ack -e 40 -c 0 -i 5816 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.29912 -s 10 -d 7 -p ack -e 40 -c 0 -i 5820 -a 0 -x {10.0 9.0 2905 ------- null} + -t 3.29912 -s 7 -d 0 -p ack -e 40 -c 0 -i 5820 -a 0 -x {10.0 9.0 2905 ------- null} h -t 3.29912 -s 7 -d 8 -p ack -e 40 -c 0 -i 5820 -a 0 -x {10.0 9.0 2905 ------- null} r -t 3.29925 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5819 -a 0 -x {9.0 10.0 2914 ------- null} + -t 3.29925 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5819 -a 0 -x {9.0 10.0 2914 ------- null} h -t 3.29925 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5819 -a 0 -x {9.0 10.0 2914 ------- null} r -t 3.29931 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5805 -a 0 -x {9.0 10.0 2907 ------- null} + -t 3.29931 -s 10 -d 7 -p ack -e 40 -c 0 -i 5824 -a 0 -x {10.0 9.0 2907 ------- null} - -t 3.29931 -s 10 -d 7 -p ack -e 40 -c 0 -i 5824 -a 0 -x {10.0 9.0 2907 ------- null} h -t 3.29931 -s 10 -d 7 -p ack -e 40 -c 0 -i 5824 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.29992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5811 -a 0 -x {9.0 10.0 2910 ------- null} - -t 3.29992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5811 -a 0 -x {9.0 10.0 2910 ------- null} h -t 3.29992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5811 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.3 -s 0 -d 9 -p ack -e 40 -c 0 -i 5814 -a 0 -x {10.0 9.0 2902 ------- null} + -t 3.3 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5825 -a 0 -x {9.0 10.0 2917 ------- null} - -t 3.3 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5825 -a 0 -x {9.0 10.0 2917 ------- null} h -t 3.3 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5825 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.3001 -s 0 -d 9 -p ack -e 40 -c 0 -i 5818 -a 0 -x {10.0 9.0 2904 ------- null} - -t 3.3001 -s 0 -d 9 -p ack -e 40 -c 0 -i 5818 -a 0 -x {10.0 9.0 2904 ------- null} h -t 3.3001 -s 0 -d 9 -p ack -e 40 -c 0 -i 5818 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.30021 -s 10 -d 7 -p ack -e 40 -c 0 -i 5822 -a 0 -x {10.0 9.0 2906 ------- null} + -t 3.30021 -s 7 -d 0 -p ack -e 40 -c 0 -i 5822 -a 0 -x {10.0 9.0 2906 ------- null} h -t 3.30021 -s 7 -d 8 -p ack -e 40 -c 0 -i 5822 -a 0 -x {10.0 9.0 2906 ------- null} r -t 3.30048 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5821 -a 0 -x {9.0 10.0 2915 ------- null} + -t 3.30048 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5821 -a 0 -x {9.0 10.0 2915 ------- null} h -t 3.30048 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5821 -a 0 -x {9.0 10.0 2915 ------- null} r -t 3.30054 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5807 -a 0 -x {9.0 10.0 2908 ------- null} + -t 3.30054 -s 10 -d 7 -p ack -e 40 -c 0 -i 5826 -a 0 -x {10.0 9.0 2908 ------- null} - -t 3.30054 -s 10 -d 7 -p ack -e 40 -c 0 -i 5826 -a 0 -x {10.0 9.0 2908 ------- null} h -t 3.30054 -s 10 -d 7 -p ack -e 40 -c 0 -i 5826 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.30098 -s 0 -d 9 -p ack -e 40 -c 0 -i 5816 -a 0 -x {10.0 9.0 2903 ------- null} + -t 3.30098 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5827 -a 0 -x {9.0 10.0 2918 ------- null} - -t 3.30098 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5827 -a 0 -x {9.0 10.0 2918 ------- null} h -t 3.30098 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5827 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.30101 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5813 -a 0 -x {9.0 10.0 2911 ------- null} - -t 3.30101 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5813 -a 0 -x {9.0 10.0 2911 ------- null} h -t 3.30101 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5813 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.30125 -s 0 -d 9 -p ack -e 40 -c 0 -i 5820 -a 0 -x {10.0 9.0 2905 ------- null} - -t 3.30125 -s 0 -d 9 -p ack -e 40 -c 0 -i 5820 -a 0 -x {10.0 9.0 2905 ------- null} h -t 3.30125 -s 0 -d 9 -p ack -e 40 -c 0 -i 5820 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.30134 -s 10 -d 7 -p ack -e 40 -c 0 -i 5824 -a 0 -x {10.0 9.0 2907 ------- null} + -t 3.30134 -s 7 -d 0 -p ack -e 40 -c 0 -i 5824 -a 0 -x {10.0 9.0 2907 ------- null} h -t 3.30134 -s 7 -d 8 -p ack -e 40 -c 0 -i 5824 -a 0 -x {10.0 9.0 2907 ------- null} r -t 3.30162 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5823 -a 0 -x {9.0 10.0 2916 ------- null} + -t 3.30162 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5823 -a 0 -x {9.0 10.0 2916 ------- null} h -t 3.30162 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5823 -a 0 -x {9.0 10.0 2916 ------- null} r -t 3.30163 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5809 -a 0 -x {9.0 10.0 2909 ------- null} + -t 3.30163 -s 10 -d 7 -p ack -e 40 -c 0 -i 5828 -a 0 -x {10.0 9.0 2909 ------- null} - -t 3.30163 -s 10 -d 7 -p ack -e 40 -c 0 -i 5828 -a 0 -x {10.0 9.0 2909 ------- null} h -t 3.30163 -s 10 -d 7 -p ack -e 40 -c 0 -i 5828 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.3021 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5815 -a 0 -x {9.0 10.0 2912 ------- null} - -t 3.3021 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5815 -a 0 -x {9.0 10.0 2912 ------- null} h -t 3.3021 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5815 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.30213 -s 0 -d 9 -p ack -e 40 -c 0 -i 5818 -a 0 -x {10.0 9.0 2904 ------- null} + -t 3.30213 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5829 -a 0 -x {9.0 10.0 2919 ------- null} - -t 3.30213 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5829 -a 0 -x {9.0 10.0 2919 ------- null} h -t 3.30213 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5829 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.30226 -s 0 -d 9 -p ack -e 40 -c 0 -i 5822 -a 0 -x {10.0 9.0 2906 ------- null} - -t 3.30226 -s 0 -d 9 -p ack -e 40 -c 0 -i 5822 -a 0 -x {10.0 9.0 2906 ------- null} h -t 3.30226 -s 0 -d 9 -p ack -e 40 -c 0 -i 5822 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.30258 -s 10 -d 7 -p ack -e 40 -c 0 -i 5826 -a 0 -x {10.0 9.0 2908 ------- null} + -t 3.30258 -s 7 -d 0 -p ack -e 40 -c 0 -i 5826 -a 0 -x {10.0 9.0 2908 ------- null} h -t 3.30258 -s 7 -d 8 -p ack -e 40 -c 0 -i 5826 -a 0 -x {10.0 9.0 2908 ------- null} r -t 3.30272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5811 -a 0 -x {9.0 10.0 2910 ------- null} + -t 3.30272 -s 10 -d 7 -p ack -e 40 -c 0 -i 5830 -a 0 -x {10.0 9.0 2910 ------- null} - -t 3.30272 -s 10 -d 7 -p ack -e 40 -c 0 -i 5830 -a 0 -x {10.0 9.0 2910 ------- null} h -t 3.30272 -s 10 -d 7 -p ack -e 40 -c 0 -i 5830 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.3028 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5825 -a 0 -x {9.0 10.0 2917 ------- null} + -t 3.3028 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5825 -a 0 -x {9.0 10.0 2917 ------- null} h -t 3.3028 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5825 -a 0 -x {9.0 10.0 2917 ------- null} + -t 3.30318 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5817 -a 0 -x {9.0 10.0 2913 ------- null} - -t 3.30318 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5817 -a 0 -x {9.0 10.0 2913 ------- null} h -t 3.30318 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5817 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.30328 -s 0 -d 9 -p ack -e 40 -c 0 -i 5820 -a 0 -x {10.0 9.0 2905 ------- null} + -t 3.30328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5831 -a 0 -x {9.0 10.0 2920 ------- null} - -t 3.30328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5831 -a 0 -x {9.0 10.0 2920 ------- null} h -t 3.30328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5831 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.3033 -s 0 -d 9 -p ack -e 40 -c 0 -i 5824 -a 0 -x {10.0 9.0 2907 ------- null} - -t 3.3033 -s 0 -d 9 -p ack -e 40 -c 0 -i 5824 -a 0 -x {10.0 9.0 2907 ------- null} h -t 3.3033 -s 0 -d 9 -p ack -e 40 -c 0 -i 5824 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.30366 -s 10 -d 7 -p ack -e 40 -c 0 -i 5828 -a 0 -x {10.0 9.0 2909 ------- null} + -t 3.30366 -s 7 -d 0 -p ack -e 40 -c 0 -i 5828 -a 0 -x {10.0 9.0 2909 ------- null} h -t 3.30366 -s 7 -d 8 -p ack -e 40 -c 0 -i 5828 -a 0 -x {10.0 9.0 2909 ------- null} r -t 3.30378 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5827 -a 0 -x {9.0 10.0 2918 ------- null} + -t 3.30378 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5827 -a 0 -x {9.0 10.0 2918 ------- null} h -t 3.30378 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5827 -a 0 -x {9.0 10.0 2918 ------- null} r -t 3.30381 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5813 -a 0 -x {9.0 10.0 2911 ------- null} + -t 3.30381 -s 10 -d 7 -p ack -e 40 -c 0 -i 5832 -a 0 -x {10.0 9.0 2911 ------- null} - -t 3.30381 -s 10 -d 7 -p ack -e 40 -c 0 -i 5832 -a 0 -x {10.0 9.0 2911 ------- null} h -t 3.30381 -s 10 -d 7 -p ack -e 40 -c 0 -i 5832 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.30427 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5819 -a 0 -x {9.0 10.0 2914 ------- null} - -t 3.30427 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5819 -a 0 -x {9.0 10.0 2914 ------- null} h -t 3.30427 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5819 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.30429 -s 0 -d 9 -p ack -e 40 -c 0 -i 5822 -a 0 -x {10.0 9.0 2906 ------- null} + -t 3.30429 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5833 -a 0 -x {9.0 10.0 2921 ------- null} - -t 3.30429 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5833 -a 0 -x {9.0 10.0 2921 ------- null} h -t 3.30429 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5833 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.30443 -s 0 -d 9 -p ack -e 40 -c 0 -i 5826 -a 0 -x {10.0 9.0 2908 ------- null} - -t 3.30443 -s 0 -d 9 -p ack -e 40 -c 0 -i 5826 -a 0 -x {10.0 9.0 2908 ------- null} h -t 3.30443 -s 0 -d 9 -p ack -e 40 -c 0 -i 5826 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.30475 -s 10 -d 7 -p ack -e 40 -c 0 -i 5830 -a 0 -x {10.0 9.0 2910 ------- null} + -t 3.30475 -s 7 -d 0 -p ack -e 40 -c 0 -i 5830 -a 0 -x {10.0 9.0 2910 ------- null} h -t 3.30475 -s 7 -d 8 -p ack -e 40 -c 0 -i 5830 -a 0 -x {10.0 9.0 2910 ------- null} r -t 3.3049 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5815 -a 0 -x {9.0 10.0 2912 ------- null} + -t 3.3049 -s 10 -d 7 -p ack -e 40 -c 0 -i 5834 -a 0 -x {10.0 9.0 2912 ------- null} - -t 3.3049 -s 10 -d 7 -p ack -e 40 -c 0 -i 5834 -a 0 -x {10.0 9.0 2912 ------- null} h -t 3.3049 -s 10 -d 7 -p ack -e 40 -c 0 -i 5834 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.30493 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5829 -a 0 -x {9.0 10.0 2919 ------- null} + -t 3.30493 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5829 -a 0 -x {9.0 10.0 2919 ------- null} h -t 3.30493 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5829 -a 0 -x {9.0 10.0 2919 ------- null} r -t 3.30533 -s 0 -d 9 -p ack -e 40 -c 0 -i 5824 -a 0 -x {10.0 9.0 2907 ------- null} + -t 3.30533 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5835 -a 0 -x {9.0 10.0 2922 ------- null} - -t 3.30533 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5835 -a 0 -x {9.0 10.0 2922 ------- null} h -t 3.30533 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5835 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.30536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5821 -a 0 -x {9.0 10.0 2915 ------- null} - -t 3.30536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5821 -a 0 -x {9.0 10.0 2915 ------- null} h -t 3.30536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5821 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.30558 -s 0 -d 9 -p ack -e 40 -c 0 -i 5828 -a 0 -x {10.0 9.0 2909 ------- null} - -t 3.30558 -s 0 -d 9 -p ack -e 40 -c 0 -i 5828 -a 0 -x {10.0 9.0 2909 ------- null} h -t 3.30558 -s 0 -d 9 -p ack -e 40 -c 0 -i 5828 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.30584 -s 10 -d 7 -p ack -e 40 -c 0 -i 5832 -a 0 -x {10.0 9.0 2911 ------- null} + -t 3.30584 -s 7 -d 0 -p ack -e 40 -c 0 -i 5832 -a 0 -x {10.0 9.0 2911 ------- null} h -t 3.30584 -s 7 -d 8 -p ack -e 40 -c 0 -i 5832 -a 0 -x {10.0 9.0 2911 ------- null} r -t 3.30598 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5817 -a 0 -x {9.0 10.0 2913 ------- null} + -t 3.30598 -s 10 -d 7 -p ack -e 40 -c 0 -i 5836 -a 0 -x {10.0 9.0 2913 ------- null} - -t 3.30598 -s 10 -d 7 -p ack -e 40 -c 0 -i 5836 -a 0 -x {10.0 9.0 2913 ------- null} h -t 3.30598 -s 10 -d 7 -p ack -e 40 -c 0 -i 5836 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.30608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5831 -a 0 -x {9.0 10.0 2920 ------- null} + -t 3.30608 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5831 -a 0 -x {9.0 10.0 2920 ------- null} h -t 3.30608 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5831 -a 0 -x {9.0 10.0 2920 ------- null} + -t 3.30645 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5823 -a 0 -x {9.0 10.0 2916 ------- null} - -t 3.30645 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5823 -a 0 -x {9.0 10.0 2916 ------- null} h -t 3.30645 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5823 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.30646 -s 0 -d 9 -p ack -e 40 -c 0 -i 5826 -a 0 -x {10.0 9.0 2908 ------- null} + -t 3.30646 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5837 -a 0 -x {9.0 10.0 2923 ------- null} - -t 3.30646 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5837 -a 0 -x {9.0 10.0 2923 ------- null} h -t 3.30646 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5837 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.30654 -s 0 -d 9 -p ack -e 40 -c 0 -i 5830 -a 0 -x {10.0 9.0 2910 ------- null} - -t 3.30654 -s 0 -d 9 -p ack -e 40 -c 0 -i 5830 -a 0 -x {10.0 9.0 2910 ------- null} h -t 3.30654 -s 0 -d 9 -p ack -e 40 -c 0 -i 5830 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.30693 -s 10 -d 7 -p ack -e 40 -c 0 -i 5834 -a 0 -x {10.0 9.0 2912 ------- null} + -t 3.30693 -s 7 -d 0 -p ack -e 40 -c 0 -i 5834 -a 0 -x {10.0 9.0 2912 ------- null} h -t 3.30693 -s 7 -d 8 -p ack -e 40 -c 0 -i 5834 -a 0 -x {10.0 9.0 2912 ------- null} r -t 3.30707 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5819 -a 0 -x {9.0 10.0 2914 ------- null} + -t 3.30707 -s 10 -d 7 -p ack -e 40 -c 0 -i 5838 -a 0 -x {10.0 9.0 2914 ------- null} - -t 3.30707 -s 10 -d 7 -p ack -e 40 -c 0 -i 5838 -a 0 -x {10.0 9.0 2914 ------- null} h -t 3.30707 -s 10 -d 7 -p ack -e 40 -c 0 -i 5838 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.30709 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5833 -a 0 -x {9.0 10.0 2921 ------- null} + -t 3.30709 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5833 -a 0 -x {9.0 10.0 2921 ------- null} h -t 3.30709 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5833 -a 0 -x {9.0 10.0 2921 ------- null} + -t 3.30754 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5825 -a 0 -x {9.0 10.0 2917 ------- null} - -t 3.30754 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5825 -a 0 -x {9.0 10.0 2917 ------- null} h -t 3.30754 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5825 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.30762 -s 0 -d 9 -p ack -e 40 -c 0 -i 5828 -a 0 -x {10.0 9.0 2909 ------- null} + -t 3.30762 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5839 -a 0 -x {9.0 10.0 2924 ------- null} - -t 3.30762 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5839 -a 0 -x {9.0 10.0 2924 ------- null} h -t 3.30762 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5839 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.30778 -s 0 -d 9 -p ack -e 40 -c 0 -i 5832 -a 0 -x {10.0 9.0 2911 ------- null} - -t 3.30778 -s 0 -d 9 -p ack -e 40 -c 0 -i 5832 -a 0 -x {10.0 9.0 2911 ------- null} h -t 3.30778 -s 0 -d 9 -p ack -e 40 -c 0 -i 5832 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.30802 -s 10 -d 7 -p ack -e 40 -c 0 -i 5836 -a 0 -x {10.0 9.0 2913 ------- null} + -t 3.30802 -s 7 -d 0 -p ack -e 40 -c 0 -i 5836 -a 0 -x {10.0 9.0 2913 ------- null} h -t 3.30802 -s 7 -d 8 -p ack -e 40 -c 0 -i 5836 -a 0 -x {10.0 9.0 2913 ------- null} r -t 3.30813 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5835 -a 0 -x {9.0 10.0 2922 ------- null} + -t 3.30813 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5835 -a 0 -x {9.0 10.0 2922 ------- null} h -t 3.30813 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5835 -a 0 -x {9.0 10.0 2922 ------- null} r -t 3.30816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5821 -a 0 -x {9.0 10.0 2915 ------- null} + -t 3.30816 -s 10 -d 7 -p ack -e 40 -c 0 -i 5840 -a 0 -x {10.0 9.0 2915 ------- null} - -t 3.30816 -s 10 -d 7 -p ack -e 40 -c 0 -i 5840 -a 0 -x {10.0 9.0 2915 ------- null} h -t 3.30816 -s 10 -d 7 -p ack -e 40 -c 0 -i 5840 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.30858 -s 0 -d 9 -p ack -e 40 -c 0 -i 5830 -a 0 -x {10.0 9.0 2910 ------- null} + -t 3.30858 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5841 -a 0 -x {9.0 10.0 2925 ------- null} - -t 3.30858 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5841 -a 0 -x {9.0 10.0 2925 ------- null} h -t 3.30858 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5841 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.30862 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5827 -a 0 -x {9.0 10.0 2918 ------- null} - -t 3.30862 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5827 -a 0 -x {9.0 10.0 2918 ------- null} h -t 3.30862 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5827 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.3087 -s 0 -d 9 -p ack -e 40 -c 0 -i 5834 -a 0 -x {10.0 9.0 2912 ------- null} - -t 3.3087 -s 0 -d 9 -p ack -e 40 -c 0 -i 5834 -a 0 -x {10.0 9.0 2912 ------- null} h -t 3.3087 -s 0 -d 9 -p ack -e 40 -c 0 -i 5834 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.3091 -s 10 -d 7 -p ack -e 40 -c 0 -i 5838 -a 0 -x {10.0 9.0 2914 ------- null} + -t 3.3091 -s 7 -d 0 -p ack -e 40 -c 0 -i 5838 -a 0 -x {10.0 9.0 2914 ------- null} h -t 3.3091 -s 7 -d 8 -p ack -e 40 -c 0 -i 5838 -a 0 -x {10.0 9.0 2914 ------- null} r -t 3.30925 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5823 -a 0 -x {9.0 10.0 2916 ------- null} + -t 3.30925 -s 10 -d 7 -p ack -e 40 -c 0 -i 5842 -a 0 -x {10.0 9.0 2916 ------- null} - -t 3.30925 -s 10 -d 7 -p ack -e 40 -c 0 -i 5842 -a 0 -x {10.0 9.0 2916 ------- null} h -t 3.30925 -s 10 -d 7 -p ack -e 40 -c 0 -i 5842 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.30926 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5837 -a 0 -x {9.0 10.0 2923 ------- null} + -t 3.30926 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5837 -a 0 -x {9.0 10.0 2923 ------- null} h -t 3.30926 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5837 -a 0 -x {9.0 10.0 2923 ------- null} + -t 3.30971 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5829 -a 0 -x {9.0 10.0 2919 ------- null} - -t 3.30971 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5829 -a 0 -x {9.0 10.0 2919 ------- null} h -t 3.30971 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5829 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.30981 -s 0 -d 9 -p ack -e 40 -c 0 -i 5832 -a 0 -x {10.0 9.0 2911 ------- null} + -t 3.30981 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5843 -a 0 -x {9.0 10.0 2926 ------- null} - -t 3.30981 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5843 -a 0 -x {9.0 10.0 2926 ------- null} h -t 3.30981 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5843 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.30992 -s 0 -d 9 -p ack -e 40 -c 0 -i 5836 -a 0 -x {10.0 9.0 2913 ------- null} - -t 3.30992 -s 0 -d 9 -p ack -e 40 -c 0 -i 5836 -a 0 -x {10.0 9.0 2913 ------- null} h -t 3.30992 -s 0 -d 9 -p ack -e 40 -c 0 -i 5836 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.31019 -s 10 -d 7 -p ack -e 40 -c 0 -i 5840 -a 0 -x {10.0 9.0 2915 ------- null} + -t 3.31019 -s 7 -d 0 -p ack -e 40 -c 0 -i 5840 -a 0 -x {10.0 9.0 2915 ------- null} h -t 3.31019 -s 7 -d 8 -p ack -e 40 -c 0 -i 5840 -a 0 -x {10.0 9.0 2915 ------- null} r -t 3.31034 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5825 -a 0 -x {9.0 10.0 2917 ------- null} + -t 3.31034 -s 10 -d 7 -p ack -e 40 -c 0 -i 5844 -a 0 -x {10.0 9.0 2917 ------- null} - -t 3.31034 -s 10 -d 7 -p ack -e 40 -c 0 -i 5844 -a 0 -x {10.0 9.0 2917 ------- null} h -t 3.31034 -s 10 -d 7 -p ack -e 40 -c 0 -i 5844 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.31042 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5839 -a 0 -x {9.0 10.0 2924 ------- null} + -t 3.31042 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5839 -a 0 -x {9.0 10.0 2924 ------- null} h -t 3.31042 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5839 -a 0 -x {9.0 10.0 2924 ------- null} r -t 3.31074 -s 0 -d 9 -p ack -e 40 -c 0 -i 5834 -a 0 -x {10.0 9.0 2912 ------- null} + -t 3.31074 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5845 -a 0 -x {9.0 10.0 2927 ------- null} - -t 3.31074 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5845 -a 0 -x {9.0 10.0 2927 ------- null} h -t 3.31074 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5845 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.3108 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5831 -a 0 -x {9.0 10.0 2920 ------- null} - -t 3.3108 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5831 -a 0 -x {9.0 10.0 2920 ------- null} h -t 3.3108 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5831 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.31104 -s 0 -d 9 -p ack -e 40 -c 0 -i 5838 -a 0 -x {10.0 9.0 2914 ------- null} - -t 3.31104 -s 0 -d 9 -p ack -e 40 -c 0 -i 5838 -a 0 -x {10.0 9.0 2914 ------- null} h -t 3.31104 -s 0 -d 9 -p ack -e 40 -c 0 -i 5838 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.31128 -s 10 -d 7 -p ack -e 40 -c 0 -i 5842 -a 0 -x {10.0 9.0 2916 ------- null} + -t 3.31128 -s 7 -d 0 -p ack -e 40 -c 0 -i 5842 -a 0 -x {10.0 9.0 2916 ------- null} h -t 3.31128 -s 7 -d 8 -p ack -e 40 -c 0 -i 5842 -a 0 -x {10.0 9.0 2916 ------- null} r -t 3.31138 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5841 -a 0 -x {9.0 10.0 2925 ------- null} + -t 3.31138 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5841 -a 0 -x {9.0 10.0 2925 ------- null} h -t 3.31138 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5841 -a 0 -x {9.0 10.0 2925 ------- null} r -t 3.31142 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5827 -a 0 -x {9.0 10.0 2918 ------- null} + -t 3.31142 -s 10 -d 7 -p ack -e 40 -c 0 -i 5846 -a 0 -x {10.0 9.0 2918 ------- null} - -t 3.31142 -s 10 -d 7 -p ack -e 40 -c 0 -i 5846 -a 0 -x {10.0 9.0 2918 ------- null} h -t 3.31142 -s 10 -d 7 -p ack -e 40 -c 0 -i 5846 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.31189 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5833 -a 0 -x {9.0 10.0 2921 ------- null} - -t 3.31189 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5833 -a 0 -x {9.0 10.0 2921 ------- null} h -t 3.31189 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5833 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.31195 -s 0 -d 9 -p ack -e 40 -c 0 -i 5836 -a 0 -x {10.0 9.0 2913 ------- null} + -t 3.31195 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5847 -a 0 -x {9.0 10.0 2928 ------- null} - -t 3.31195 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5847 -a 0 -x {9.0 10.0 2928 ------- null} h -t 3.31195 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5847 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.31219 -s 0 -d 9 -p ack -e 40 -c 0 -i 5840 -a 0 -x {10.0 9.0 2915 ------- null} - -t 3.31219 -s 0 -d 9 -p ack -e 40 -c 0 -i 5840 -a 0 -x {10.0 9.0 2915 ------- null} h -t 3.31219 -s 0 -d 9 -p ack -e 40 -c 0 -i 5840 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.31237 -s 10 -d 7 -p ack -e 40 -c 0 -i 5844 -a 0 -x {10.0 9.0 2917 ------- null} + -t 3.31237 -s 7 -d 0 -p ack -e 40 -c 0 -i 5844 -a 0 -x {10.0 9.0 2917 ------- null} h -t 3.31237 -s 7 -d 8 -p ack -e 40 -c 0 -i 5844 -a 0 -x {10.0 9.0 2917 ------- null} r -t 3.31251 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5829 -a 0 -x {9.0 10.0 2919 ------- null} + -t 3.31251 -s 10 -d 7 -p ack -e 40 -c 0 -i 5848 -a 0 -x {10.0 9.0 2919 ------- null} - -t 3.31251 -s 10 -d 7 -p ack -e 40 -c 0 -i 5848 -a 0 -x {10.0 9.0 2919 ------- null} h -t 3.31251 -s 10 -d 7 -p ack -e 40 -c 0 -i 5848 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.31261 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5843 -a 0 -x {9.0 10.0 2926 ------- null} + -t 3.31261 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5843 -a 0 -x {9.0 10.0 2926 ------- null} h -t 3.31261 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5843 -a 0 -x {9.0 10.0 2926 ------- null} + -t 3.31307 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5835 -a 0 -x {9.0 10.0 2922 ------- null} - -t 3.31307 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5835 -a 0 -x {9.0 10.0 2922 ------- null} h -t 3.31307 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5835 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.31307 -s 0 -d 9 -p ack -e 40 -c 0 -i 5838 -a 0 -x {10.0 9.0 2914 ------- null} + -t 3.31307 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5849 -a 0 -x {9.0 10.0 2929 ------- null} - -t 3.31307 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5849 -a 0 -x {9.0 10.0 2929 ------- null} h -t 3.31307 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5849 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.31336 -s 0 -d 9 -p ack -e 40 -c 0 -i 5842 -a 0 -x {10.0 9.0 2916 ------- null} - -t 3.31336 -s 0 -d 9 -p ack -e 40 -c 0 -i 5842 -a 0 -x {10.0 9.0 2916 ------- null} h -t 3.31336 -s 0 -d 9 -p ack -e 40 -c 0 -i 5842 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.31346 -s 10 -d 7 -p ack -e 40 -c 0 -i 5846 -a 0 -x {10.0 9.0 2918 ------- null} + -t 3.31346 -s 7 -d 0 -p ack -e 40 -c 0 -i 5846 -a 0 -x {10.0 9.0 2918 ------- null} h -t 3.31346 -s 7 -d 8 -p ack -e 40 -c 0 -i 5846 -a 0 -x {10.0 9.0 2918 ------- null} r -t 3.31354 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5845 -a 0 -x {9.0 10.0 2927 ------- null} + -t 3.31354 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5845 -a 0 -x {9.0 10.0 2927 ------- null} h -t 3.31354 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5845 -a 0 -x {9.0 10.0 2927 ------- null} r -t 3.3136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5831 -a 0 -x {9.0 10.0 2920 ------- null} + -t 3.3136 -s 10 -d 7 -p ack -e 40 -c 0 -i 5850 -a 0 -x {10.0 9.0 2920 ------- null} - -t 3.3136 -s 10 -d 7 -p ack -e 40 -c 0 -i 5850 -a 0 -x {10.0 9.0 2920 ------- null} h -t 3.3136 -s 10 -d 7 -p ack -e 40 -c 0 -i 5850 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.31421 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5837 -a 0 -x {9.0 10.0 2923 ------- null} - -t 3.31421 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5837 -a 0 -x {9.0 10.0 2923 ------- null} h -t 3.31421 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5837 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.31422 -s 0 -d 9 -p ack -e 40 -c 0 -i 5840 -a 0 -x {10.0 9.0 2915 ------- null} + -t 3.31422 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5851 -a 0 -x {9.0 10.0 2930 ------- null} - -t 3.31422 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5851 -a 0 -x {9.0 10.0 2930 ------- null} h -t 3.31422 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5851 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.31443 -s 0 -d 9 -p ack -e 40 -c 0 -i 5844 -a 0 -x {10.0 9.0 2917 ------- null} - -t 3.31443 -s 0 -d 9 -p ack -e 40 -c 0 -i 5844 -a 0 -x {10.0 9.0 2917 ------- null} h -t 3.31443 -s 0 -d 9 -p ack -e 40 -c 0 -i 5844 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.31454 -s 10 -d 7 -p ack -e 40 -c 0 -i 5848 -a 0 -x {10.0 9.0 2919 ------- null} + -t 3.31454 -s 7 -d 0 -p ack -e 40 -c 0 -i 5848 -a 0 -x {10.0 9.0 2919 ------- null} h -t 3.31454 -s 7 -d 8 -p ack -e 40 -c 0 -i 5848 -a 0 -x {10.0 9.0 2919 ------- null} r -t 3.31469 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5833 -a 0 -x {9.0 10.0 2921 ------- null} + -t 3.31469 -s 10 -d 7 -p ack -e 40 -c 0 -i 5852 -a 0 -x {10.0 9.0 2921 ------- null} - -t 3.31469 -s 10 -d 7 -p ack -e 40 -c 0 -i 5852 -a 0 -x {10.0 9.0 2921 ------- null} h -t 3.31469 -s 10 -d 7 -p ack -e 40 -c 0 -i 5852 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.31475 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5847 -a 0 -x {9.0 10.0 2928 ------- null} + -t 3.31475 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5847 -a 0 -x {9.0 10.0 2928 ------- null} h -t 3.31475 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5847 -a 0 -x {9.0 10.0 2928 ------- null} + -t 3.3153 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5839 -a 0 -x {9.0 10.0 2924 ------- null} - -t 3.3153 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5839 -a 0 -x {9.0 10.0 2924 ------- null} h -t 3.3153 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5839 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.31538 -s 0 -d 9 -p ack -e 40 -c 0 -i 5846 -a 0 -x {10.0 9.0 2918 ------- null} - -t 3.31538 -s 0 -d 9 -p ack -e 40 -c 0 -i 5846 -a 0 -x {10.0 9.0 2918 ------- null} h -t 3.31538 -s 0 -d 9 -p ack -e 40 -c 0 -i 5846 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.31539 -s 0 -d 9 -p ack -e 40 -c 0 -i 5842 -a 0 -x {10.0 9.0 2916 ------- null} + -t 3.31539 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5853 -a 0 -x {9.0 10.0 2931 ------- null} - -t 3.31539 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5853 -a 0 -x {9.0 10.0 2931 ------- null} h -t 3.31539 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5853 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.31563 -s 10 -d 7 -p ack -e 40 -c 0 -i 5850 -a 0 -x {10.0 9.0 2920 ------- null} + -t 3.31563 -s 7 -d 0 -p ack -e 40 -c 0 -i 5850 -a 0 -x {10.0 9.0 2920 ------- null} h -t 3.31563 -s 7 -d 8 -p ack -e 40 -c 0 -i 5850 -a 0 -x {10.0 9.0 2920 ------- null} r -t 3.31587 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5835 -a 0 -x {9.0 10.0 2922 ------- null} + -t 3.31587 -s 10 -d 7 -p ack -e 40 -c 0 -i 5854 -a 0 -x {10.0 9.0 2922 ------- null} - -t 3.31587 -s 10 -d 7 -p ack -e 40 -c 0 -i 5854 -a 0 -x {10.0 9.0 2922 ------- null} h -t 3.31587 -s 10 -d 7 -p ack -e 40 -c 0 -i 5854 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.31587 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5849 -a 0 -x {9.0 10.0 2929 ------- null} + -t 3.31587 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5849 -a 0 -x {9.0 10.0 2929 ------- null} h -t 3.31587 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5849 -a 0 -x {9.0 10.0 2929 ------- null} + -t 3.31638 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5841 -a 0 -x {9.0 10.0 2925 ------- null} - -t 3.31638 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5841 -a 0 -x {9.0 10.0 2925 ------- null} h -t 3.31638 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5841 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.31646 -s 0 -d 9 -p ack -e 40 -c 0 -i 5844 -a 0 -x {10.0 9.0 2917 ------- null} + -t 3.31646 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5855 -a 0 -x {9.0 10.0 2932 ------- null} - -t 3.31646 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5855 -a 0 -x {9.0 10.0 2932 ------- null} h -t 3.31646 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5855 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.31662 -s 0 -d 9 -p ack -e 40 -c 0 -i 5848 -a 0 -x {10.0 9.0 2919 ------- null} - -t 3.31662 -s 0 -d 9 -p ack -e 40 -c 0 -i 5848 -a 0 -x {10.0 9.0 2919 ------- null} h -t 3.31662 -s 0 -d 9 -p ack -e 40 -c 0 -i 5848 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.31672 -s 10 -d 7 -p ack -e 40 -c 0 -i 5852 -a 0 -x {10.0 9.0 2921 ------- null} + -t 3.31672 -s 7 -d 0 -p ack -e 40 -c 0 -i 5852 -a 0 -x {10.0 9.0 2921 ------- null} h -t 3.31672 -s 7 -d 8 -p ack -e 40 -c 0 -i 5852 -a 0 -x {10.0 9.0 2921 ------- null} r -t 3.31701 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5837 -a 0 -x {9.0 10.0 2923 ------- null} + -t 3.31701 -s 10 -d 7 -p ack -e 40 -c 0 -i 5856 -a 0 -x {10.0 9.0 2923 ------- null} - -t 3.31701 -s 10 -d 7 -p ack -e 40 -c 0 -i 5856 -a 0 -x {10.0 9.0 2923 ------- null} h -t 3.31701 -s 10 -d 7 -p ack -e 40 -c 0 -i 5856 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.31702 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5851 -a 0 -x {9.0 10.0 2930 ------- null} + -t 3.31702 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5851 -a 0 -x {9.0 10.0 2930 ------- null} h -t 3.31702 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5851 -a 0 -x {9.0 10.0 2930 ------- null} r -t 3.31741 -s 0 -d 9 -p ack -e 40 -c 0 -i 5846 -a 0 -x {10.0 9.0 2918 ------- null} + -t 3.31741 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5857 -a 0 -x {9.0 10.0 2933 ------- null} - -t 3.31741 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5857 -a 0 -x {9.0 10.0 2933 ------- null} h -t 3.31741 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5857 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.31747 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5843 -a 0 -x {9.0 10.0 2926 ------- null} - -t 3.31747 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5843 -a 0 -x {9.0 10.0 2926 ------- null} h -t 3.31747 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5843 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.31765 -s 0 -d 9 -p ack -e 40 -c 0 -i 5850 -a 0 -x {10.0 9.0 2920 ------- null} - -t 3.31765 -s 0 -d 9 -p ack -e 40 -c 0 -i 5850 -a 0 -x {10.0 9.0 2920 ------- null} h -t 3.31765 -s 0 -d 9 -p ack -e 40 -c 0 -i 5850 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.3179 -s 10 -d 7 -p ack -e 40 -c 0 -i 5854 -a 0 -x {10.0 9.0 2922 ------- null} + -t 3.3179 -s 7 -d 0 -p ack -e 40 -c 0 -i 5854 -a 0 -x {10.0 9.0 2922 ------- null} h -t 3.3179 -s 7 -d 8 -p ack -e 40 -c 0 -i 5854 -a 0 -x {10.0 9.0 2922 ------- null} r -t 3.3181 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5839 -a 0 -x {9.0 10.0 2924 ------- null} + -t 3.3181 -s 10 -d 7 -p ack -e 40 -c 0 -i 5858 -a 0 -x {10.0 9.0 2924 ------- null} - -t 3.3181 -s 10 -d 7 -p ack -e 40 -c 0 -i 5858 -a 0 -x {10.0 9.0 2924 ------- null} h -t 3.3181 -s 10 -d 7 -p ack -e 40 -c 0 -i 5858 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.31819 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5853 -a 0 -x {9.0 10.0 2931 ------- null} + -t 3.31819 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5853 -a 0 -x {9.0 10.0 2931 ------- null} h -t 3.31819 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5853 -a 0 -x {9.0 10.0 2931 ------- null} + -t 3.31856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5845 -a 0 -x {9.0 10.0 2927 ------- null} - -t 3.31856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5845 -a 0 -x {9.0 10.0 2927 ------- null} h -t 3.31856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5845 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.31866 -s 0 -d 9 -p ack -e 40 -c 0 -i 5848 -a 0 -x {10.0 9.0 2919 ------- null} + -t 3.31866 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5859 -a 0 -x {9.0 10.0 2934 ------- null} - -t 3.31866 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5859 -a 0 -x {9.0 10.0 2934 ------- null} h -t 3.31866 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5859 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.3188 -s 0 -d 9 -p ack -e 40 -c 0 -i 5852 -a 0 -x {10.0 9.0 2921 ------- null} - -t 3.3188 -s 0 -d 9 -p ack -e 40 -c 0 -i 5852 -a 0 -x {10.0 9.0 2921 ------- null} h -t 3.3188 -s 0 -d 9 -p ack -e 40 -c 0 -i 5852 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.31904 -s 10 -d 7 -p ack -e 40 -c 0 -i 5856 -a 0 -x {10.0 9.0 2923 ------- null} + -t 3.31904 -s 7 -d 0 -p ack -e 40 -c 0 -i 5856 -a 0 -x {10.0 9.0 2923 ------- null} h -t 3.31904 -s 7 -d 8 -p ack -e 40 -c 0 -i 5856 -a 0 -x {10.0 9.0 2923 ------- null} r -t 3.31918 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5841 -a 0 -x {9.0 10.0 2925 ------- null} + -t 3.31918 -s 10 -d 7 -p ack -e 40 -c 0 -i 5860 -a 0 -x {10.0 9.0 2925 ------- null} - -t 3.31918 -s 10 -d 7 -p ack -e 40 -c 0 -i 5860 -a 0 -x {10.0 9.0 2925 ------- null} h -t 3.31918 -s 10 -d 7 -p ack -e 40 -c 0 -i 5860 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.31926 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5855 -a 0 -x {9.0 10.0 2932 ------- null} + -t 3.31926 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5855 -a 0 -x {9.0 10.0 2932 ------- null} h -t 3.31926 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5855 -a 0 -x {9.0 10.0 2932 ------- null} + -t 3.31965 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5847 -a 0 -x {9.0 10.0 2928 ------- null} - -t 3.31965 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5847 -a 0 -x {9.0 10.0 2928 ------- null} h -t 3.31965 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5847 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.31968 -s 0 -d 9 -p ack -e 40 -c 0 -i 5850 -a 0 -x {10.0 9.0 2920 ------- null} + -t 3.31968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5861 -a 0 -x {9.0 10.0 2935 ------- null} - -t 3.31968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5861 -a 0 -x {9.0 10.0 2935 ------- null} h -t 3.31968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5861 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.3199 -s 0 -d 9 -p ack -e 40 -c 0 -i 5854 -a 0 -x {10.0 9.0 2922 ------- null} - -t 3.3199 -s 0 -d 9 -p ack -e 40 -c 0 -i 5854 -a 0 -x {10.0 9.0 2922 ------- null} h -t 3.3199 -s 0 -d 9 -p ack -e 40 -c 0 -i 5854 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.32013 -s 10 -d 7 -p ack -e 40 -c 0 -i 5858 -a 0 -x {10.0 9.0 2924 ------- null} + -t 3.32013 -s 7 -d 0 -p ack -e 40 -c 0 -i 5858 -a 0 -x {10.0 9.0 2924 ------- null} h -t 3.32013 -s 7 -d 8 -p ack -e 40 -c 0 -i 5858 -a 0 -x {10.0 9.0 2924 ------- null} r -t 3.32021 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5857 -a 0 -x {9.0 10.0 2933 ------- null} + -t 3.32021 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5857 -a 0 -x {9.0 10.0 2933 ------- null} h -t 3.32021 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5857 -a 0 -x {9.0 10.0 2933 ------- null} r -t 3.32027 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5843 -a 0 -x {9.0 10.0 2926 ------- null} + -t 3.32027 -s 10 -d 7 -p ack -e 40 -c 0 -i 5862 -a 0 -x {10.0 9.0 2926 ------- null} - -t 3.32027 -s 10 -d 7 -p ack -e 40 -c 0 -i 5862 -a 0 -x {10.0 9.0 2926 ------- null} h -t 3.32027 -s 10 -d 7 -p ack -e 40 -c 0 -i 5862 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.32083 -s 0 -d 9 -p ack -e 40 -c 0 -i 5852 -a 0 -x {10.0 9.0 2921 ------- null} + -t 3.32083 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5863 -a 0 -x {9.0 10.0 2936 ------- null} - -t 3.32083 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5863 -a 0 -x {9.0 10.0 2936 ------- null} h -t 3.32083 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5863 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.32085 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5849 -a 0 -x {9.0 10.0 2929 ------- null} - -t 3.32085 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5849 -a 0 -x {9.0 10.0 2929 ------- null} h -t 3.32085 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5849 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.32107 -s 0 -d 9 -p ack -e 40 -c 0 -i 5856 -a 0 -x {10.0 9.0 2923 ------- null} - -t 3.32107 -s 0 -d 9 -p ack -e 40 -c 0 -i 5856 -a 0 -x {10.0 9.0 2923 ------- null} h -t 3.32107 -s 0 -d 9 -p ack -e 40 -c 0 -i 5856 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.32122 -s 10 -d 7 -p ack -e 40 -c 0 -i 5860 -a 0 -x {10.0 9.0 2925 ------- null} + -t 3.32122 -s 7 -d 0 -p ack -e 40 -c 0 -i 5860 -a 0 -x {10.0 9.0 2925 ------- null} h -t 3.32122 -s 7 -d 8 -p ack -e 40 -c 0 -i 5860 -a 0 -x {10.0 9.0 2925 ------- null} r -t 3.32136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5845 -a 0 -x {9.0 10.0 2927 ------- null} + -t 3.32136 -s 10 -d 7 -p ack -e 40 -c 0 -i 5864 -a 0 -x {10.0 9.0 2927 ------- null} - -t 3.32136 -s 10 -d 7 -p ack -e 40 -c 0 -i 5864 -a 0 -x {10.0 9.0 2927 ------- null} h -t 3.32136 -s 10 -d 7 -p ack -e 40 -c 0 -i 5864 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.32146 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5859 -a 0 -x {9.0 10.0 2934 ------- null} + -t 3.32146 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5859 -a 0 -x {9.0 10.0 2934 ------- null} h -t 3.32146 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5859 -a 0 -x {9.0 10.0 2934 ------- null} r -t 3.32194 -s 0 -d 9 -p ack -e 40 -c 0 -i 5854 -a 0 -x {10.0 9.0 2922 ------- null} + -t 3.32194 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5865 -a 0 -x {9.0 10.0 2937 ------- null} - -t 3.32194 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5865 -a 0 -x {9.0 10.0 2937 ------- null} h -t 3.32194 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5865 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.32194 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5851 -a 0 -x {9.0 10.0 2930 ------- null} - -t 3.32194 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5851 -a 0 -x {9.0 10.0 2930 ------- null} h -t 3.32194 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5851 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.32219 -s 0 -d 9 -p ack -e 40 -c 0 -i 5858 -a 0 -x {10.0 9.0 2924 ------- null} - -t 3.32219 -s 0 -d 9 -p ack -e 40 -c 0 -i 5858 -a 0 -x {10.0 9.0 2924 ------- null} h -t 3.32219 -s 0 -d 9 -p ack -e 40 -c 0 -i 5858 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.3223 -s 10 -d 7 -p ack -e 40 -c 0 -i 5862 -a 0 -x {10.0 9.0 2926 ------- null} + -t 3.3223 -s 7 -d 0 -p ack -e 40 -c 0 -i 5862 -a 0 -x {10.0 9.0 2926 ------- null} h -t 3.3223 -s 7 -d 8 -p ack -e 40 -c 0 -i 5862 -a 0 -x {10.0 9.0 2926 ------- null} r -t 3.32245 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5847 -a 0 -x {9.0 10.0 2928 ------- null} + -t 3.32245 -s 10 -d 7 -p ack -e 40 -c 0 -i 5866 -a 0 -x {10.0 9.0 2928 ------- null} - -t 3.32245 -s 10 -d 7 -p ack -e 40 -c 0 -i 5866 -a 0 -x {10.0 9.0 2928 ------- null} h -t 3.32245 -s 10 -d 7 -p ack -e 40 -c 0 -i 5866 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.32248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5861 -a 0 -x {9.0 10.0 2935 ------- null} + -t 3.32248 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5861 -a 0 -x {9.0 10.0 2935 ------- null} h -t 3.32248 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5861 -a 0 -x {9.0 10.0 2935 ------- null} r -t 3.3231 -s 0 -d 9 -p ack -e 40 -c 0 -i 5856 -a 0 -x {10.0 9.0 2923 ------- null} + -t 3.3231 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5867 -a 0 -x {9.0 10.0 2938 ------- null} - -t 3.3231 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5867 -a 0 -x {9.0 10.0 2938 ------- null} h -t 3.3231 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5867 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.32322 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5853 -a 0 -x {9.0 10.0 2931 ------- null} - -t 3.32322 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5853 -a 0 -x {9.0 10.0 2931 ------- null} h -t 3.32322 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5853 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.32331 -s 0 -d 9 -p ack -e 40 -c 0 -i 5860 -a 0 -x {10.0 9.0 2925 ------- null} - -t 3.32331 -s 0 -d 9 -p ack -e 40 -c 0 -i 5860 -a 0 -x {10.0 9.0 2925 ------- null} h -t 3.32331 -s 0 -d 9 -p ack -e 40 -c 0 -i 5860 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.32339 -s 10 -d 7 -p ack -e 40 -c 0 -i 5864 -a 0 -x {10.0 9.0 2927 ------- null} + -t 3.32339 -s 7 -d 0 -p ack -e 40 -c 0 -i 5864 -a 0 -x {10.0 9.0 2927 ------- null} h -t 3.32339 -s 7 -d 8 -p ack -e 40 -c 0 -i 5864 -a 0 -x {10.0 9.0 2927 ------- null} r -t 3.32363 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5863 -a 0 -x {9.0 10.0 2936 ------- null} + -t 3.32363 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5863 -a 0 -x {9.0 10.0 2936 ------- null} h -t 3.32363 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5863 -a 0 -x {9.0 10.0 2936 ------- null} r -t 3.32365 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5849 -a 0 -x {9.0 10.0 2929 ------- null} + -t 3.32365 -s 10 -d 7 -p ack -e 40 -c 0 -i 5868 -a 0 -x {10.0 9.0 2929 ------- null} - -t 3.32365 -s 10 -d 7 -p ack -e 40 -c 0 -i 5868 -a 0 -x {10.0 9.0 2929 ------- null} h -t 3.32365 -s 10 -d 7 -p ack -e 40 -c 0 -i 5868 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.32422 -s 0 -d 9 -p ack -e 40 -c 0 -i 5858 -a 0 -x {10.0 9.0 2924 ------- null} + -t 3.32422 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5869 -a 0 -x {9.0 10.0 2939 ------- null} - -t 3.32422 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5869 -a 0 -x {9.0 10.0 2939 ------- null} h -t 3.32422 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5869 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.3243 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5855 -a 0 -x {9.0 10.0 2932 ------- null} - -t 3.3243 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5855 -a 0 -x {9.0 10.0 2932 ------- null} h -t 3.3243 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5855 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.32437 -s 0 -d 9 -p ack -e 40 -c 0 -i 5862 -a 0 -x {10.0 9.0 2926 ------- null} - -t 3.32437 -s 0 -d 9 -p ack -e 40 -c 0 -i 5862 -a 0 -x {10.0 9.0 2926 ------- null} h -t 3.32437 -s 0 -d 9 -p ack -e 40 -c 0 -i 5862 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.32448 -s 10 -d 7 -p ack -e 40 -c 0 -i 5866 -a 0 -x {10.0 9.0 2928 ------- null} + -t 3.32448 -s 7 -d 0 -p ack -e 40 -c 0 -i 5866 -a 0 -x {10.0 9.0 2928 ------- null} h -t 3.32448 -s 7 -d 8 -p ack -e 40 -c 0 -i 5866 -a 0 -x {10.0 9.0 2928 ------- null} r -t 3.32474 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5865 -a 0 -x {9.0 10.0 2937 ------- null} + -t 3.32474 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5865 -a 0 -x {9.0 10.0 2937 ------- null} h -t 3.32474 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5865 -a 0 -x {9.0 10.0 2937 ------- null} r -t 3.32474 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5851 -a 0 -x {9.0 10.0 2930 ------- null} + -t 3.32474 -s 10 -d 7 -p ack -e 40 -c 0 -i 5870 -a 0 -x {10.0 9.0 2930 ------- null} - -t 3.32474 -s 10 -d 7 -p ack -e 40 -c 0 -i 5870 -a 0 -x {10.0 9.0 2930 ------- null} h -t 3.32474 -s 10 -d 7 -p ack -e 40 -c 0 -i 5870 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.32534 -s 0 -d 9 -p ack -e 40 -c 0 -i 5860 -a 0 -x {10.0 9.0 2925 ------- null} + -t 3.32534 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5871 -a 0 -x {9.0 10.0 2940 ------- null} - -t 3.32534 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5871 -a 0 -x {9.0 10.0 2940 ------- null} h -t 3.32534 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5871 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.32539 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5857 -a 0 -x {9.0 10.0 2933 ------- null} - -t 3.32539 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5857 -a 0 -x {9.0 10.0 2933 ------- null} h -t 3.32539 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5857 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.32547 -s 0 -d 9 -p ack -e 40 -c 0 -i 5864 -a 0 -x {10.0 9.0 2927 ------- null} - -t 3.32547 -s 0 -d 9 -p ack -e 40 -c 0 -i 5864 -a 0 -x {10.0 9.0 2927 ------- null} h -t 3.32547 -s 0 -d 9 -p ack -e 40 -c 0 -i 5864 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.32568 -s 10 -d 7 -p ack -e 40 -c 0 -i 5868 -a 0 -x {10.0 9.0 2929 ------- null} + -t 3.32568 -s 7 -d 0 -p ack -e 40 -c 0 -i 5868 -a 0 -x {10.0 9.0 2929 ------- null} h -t 3.32568 -s 7 -d 8 -p ack -e 40 -c 0 -i 5868 -a 0 -x {10.0 9.0 2929 ------- null} r -t 3.3259 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5867 -a 0 -x {9.0 10.0 2938 ------- null} + -t 3.3259 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5867 -a 0 -x {9.0 10.0 2938 ------- null} h -t 3.3259 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5867 -a 0 -x {9.0 10.0 2938 ------- null} r -t 3.32602 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5853 -a 0 -x {9.0 10.0 2931 ------- null} + -t 3.32602 -s 10 -d 7 -p ack -e 40 -c 0 -i 5872 -a 0 -x {10.0 9.0 2931 ------- null} - -t 3.32602 -s 10 -d 7 -p ack -e 40 -c 0 -i 5872 -a 0 -x {10.0 9.0 2931 ------- null} h -t 3.32602 -s 10 -d 7 -p ack -e 40 -c 0 -i 5872 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.3264 -s 0 -d 9 -p ack -e 40 -c 0 -i 5862 -a 0 -x {10.0 9.0 2926 ------- null} + -t 3.3264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5873 -a 0 -x {9.0 10.0 2941 ------- null} - -t 3.3264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5873 -a 0 -x {9.0 10.0 2941 ------- null} h -t 3.3264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5873 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.32648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5859 -a 0 -x {9.0 10.0 2934 ------- null} - -t 3.32648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5859 -a 0 -x {9.0 10.0 2934 ------- null} h -t 3.32648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5859 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.32677 -s 10 -d 7 -p ack -e 40 -c 0 -i 5870 -a 0 -x {10.0 9.0 2930 ------- null} + -t 3.32677 -s 7 -d 0 -p ack -e 40 -c 0 -i 5870 -a 0 -x {10.0 9.0 2930 ------- null} h -t 3.32677 -s 7 -d 8 -p ack -e 40 -c 0 -i 5870 -a 0 -x {10.0 9.0 2930 ------- null} + -t 3.32678 -s 0 -d 9 -p ack -e 40 -c 0 -i 5866 -a 0 -x {10.0 9.0 2928 ------- null} - -t 3.32678 -s 0 -d 9 -p ack -e 40 -c 0 -i 5866 -a 0 -x {10.0 9.0 2928 ------- null} h -t 3.32678 -s 0 -d 9 -p ack -e 40 -c 0 -i 5866 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.32702 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5869 -a 0 -x {9.0 10.0 2939 ------- null} + -t 3.32702 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5869 -a 0 -x {9.0 10.0 2939 ------- null} h -t 3.32702 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5869 -a 0 -x {9.0 10.0 2939 ------- null} r -t 3.3271 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5855 -a 0 -x {9.0 10.0 2932 ------- null} + -t 3.3271 -s 10 -d 7 -p ack -e 40 -c 0 -i 5874 -a 0 -x {10.0 9.0 2932 ------- null} - -t 3.3271 -s 10 -d 7 -p ack -e 40 -c 0 -i 5874 -a 0 -x {10.0 9.0 2932 ------- null} h -t 3.3271 -s 10 -d 7 -p ack -e 40 -c 0 -i 5874 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.3275 -s 0 -d 9 -p ack -e 40 -c 0 -i 5864 -a 0 -x {10.0 9.0 2927 ------- null} + -t 3.3275 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5875 -a 0 -x {9.0 10.0 2942 ------- null} - -t 3.3275 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5875 -a 0 -x {9.0 10.0 2942 ------- null} h -t 3.3275 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5875 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.32763 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5861 -a 0 -x {9.0 10.0 2935 ------- null} - -t 3.32763 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5861 -a 0 -x {9.0 10.0 2935 ------- null} h -t 3.32763 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5861 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.32771 -s 0 -d 9 -p ack -e 40 -c 0 -i 5868 -a 0 -x {10.0 9.0 2929 ------- null} - -t 3.32771 -s 0 -d 9 -p ack -e 40 -c 0 -i 5868 -a 0 -x {10.0 9.0 2929 ------- null} h -t 3.32771 -s 0 -d 9 -p ack -e 40 -c 0 -i 5868 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.32805 -s 10 -d 7 -p ack -e 40 -c 0 -i 5872 -a 0 -x {10.0 9.0 2931 ------- null} + -t 3.32805 -s 7 -d 0 -p ack -e 40 -c 0 -i 5872 -a 0 -x {10.0 9.0 2931 ------- null} h -t 3.32805 -s 7 -d 8 -p ack -e 40 -c 0 -i 5872 -a 0 -x {10.0 9.0 2931 ------- null} r -t 3.32814 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5871 -a 0 -x {9.0 10.0 2940 ------- null} + -t 3.32814 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5871 -a 0 -x {9.0 10.0 2940 ------- null} h -t 3.32814 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5871 -a 0 -x {9.0 10.0 2940 ------- null} r -t 3.32819 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5857 -a 0 -x {9.0 10.0 2933 ------- null} + -t 3.32819 -s 10 -d 7 -p ack -e 40 -c 0 -i 5876 -a 0 -x {10.0 9.0 2933 ------- null} - -t 3.32819 -s 10 -d 7 -p ack -e 40 -c 0 -i 5876 -a 0 -x {10.0 9.0 2933 ------- null} h -t 3.32819 -s 10 -d 7 -p ack -e 40 -c 0 -i 5876 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.32872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5863 -a 0 -x {9.0 10.0 2936 ------- null} - -t 3.32872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5863 -a 0 -x {9.0 10.0 2936 ------- null} h -t 3.32872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5863 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.32882 -s 0 -d 9 -p ack -e 40 -c 0 -i 5866 -a 0 -x {10.0 9.0 2928 ------- null} + -t 3.32882 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5877 -a 0 -x {9.0 10.0 2943 ------- null} - -t 3.32882 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5877 -a 0 -x {9.0 10.0 2943 ------- null} h -t 3.32882 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5877 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.32885 -s 0 -d 9 -p ack -e 40 -c 0 -i 5870 -a 0 -x {10.0 9.0 2930 ------- null} - -t 3.32885 -s 0 -d 9 -p ack -e 40 -c 0 -i 5870 -a 0 -x {10.0 9.0 2930 ------- null} h -t 3.32885 -s 0 -d 9 -p ack -e 40 -c 0 -i 5870 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.32914 -s 10 -d 7 -p ack -e 40 -c 0 -i 5874 -a 0 -x {10.0 9.0 2932 ------- null} + -t 3.32914 -s 7 -d 0 -p ack -e 40 -c 0 -i 5874 -a 0 -x {10.0 9.0 2932 ------- null} h -t 3.32914 -s 7 -d 8 -p ack -e 40 -c 0 -i 5874 -a 0 -x {10.0 9.0 2932 ------- null} r -t 3.3292 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5873 -a 0 -x {9.0 10.0 2941 ------- null} + -t 3.3292 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5873 -a 0 -x {9.0 10.0 2941 ------- null} h -t 3.3292 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5873 -a 0 -x {9.0 10.0 2941 ------- null} r -t 3.32928 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5859 -a 0 -x {9.0 10.0 2934 ------- null} + -t 3.32928 -s 10 -d 7 -p ack -e 40 -c 0 -i 5878 -a 0 -x {10.0 9.0 2934 ------- null} - -t 3.32928 -s 10 -d 7 -p ack -e 40 -c 0 -i 5878 -a 0 -x {10.0 9.0 2934 ------- null} h -t 3.32928 -s 10 -d 7 -p ack -e 40 -c 0 -i 5878 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.32974 -s 0 -d 9 -p ack -e 40 -c 0 -i 5868 -a 0 -x {10.0 9.0 2929 ------- null} + -t 3.32974 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5879 -a 0 -x {9.0 10.0 2944 ------- null} - -t 3.32974 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5879 -a 0 -x {9.0 10.0 2944 ------- null} h -t 3.32974 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5879 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.32981 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5865 -a 0 -x {9.0 10.0 2937 ------- null} - -t 3.32981 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5865 -a 0 -x {9.0 10.0 2937 ------- null} h -t 3.32981 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5865 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.3299 -s 0 -d 9 -p ack -e 40 -c 0 -i 5872 -a 0 -x {10.0 9.0 2931 ------- null} - -t 3.3299 -s 0 -d 9 -p ack -e 40 -c 0 -i 5872 -a 0 -x {10.0 9.0 2931 ------- null} h -t 3.3299 -s 0 -d 9 -p ack -e 40 -c 0 -i 5872 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.33022 -s 10 -d 7 -p ack -e 40 -c 0 -i 5876 -a 0 -x {10.0 9.0 2933 ------- null} + -t 3.33022 -s 7 -d 0 -p ack -e 40 -c 0 -i 5876 -a 0 -x {10.0 9.0 2933 ------- null} h -t 3.33022 -s 7 -d 8 -p ack -e 40 -c 0 -i 5876 -a 0 -x {10.0 9.0 2933 ------- null} r -t 3.3303 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5875 -a 0 -x {9.0 10.0 2942 ------- null} + -t 3.3303 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5875 -a 0 -x {9.0 10.0 2942 ------- null} h -t 3.3303 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5875 -a 0 -x {9.0 10.0 2942 ------- null} r -t 3.33043 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5861 -a 0 -x {9.0 10.0 2935 ------- null} + -t 3.33043 -s 10 -d 7 -p ack -e 40 -c 0 -i 5880 -a 0 -x {10.0 9.0 2935 ------- null} - -t 3.33043 -s 10 -d 7 -p ack -e 40 -c 0 -i 5880 -a 0 -x {10.0 9.0 2935 ------- null} h -t 3.33043 -s 10 -d 7 -p ack -e 40 -c 0 -i 5880 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.33088 -s 0 -d 9 -p ack -e 40 -c 0 -i 5870 -a 0 -x {10.0 9.0 2930 ------- null} + -t 3.33088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5881 -a 0 -x {9.0 10.0 2945 ------- null} - -t 3.33088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5881 -a 0 -x {9.0 10.0 2945 ------- null} h -t 3.33088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5881 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.3309 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5867 -a 0 -x {9.0 10.0 2938 ------- null} - -t 3.3309 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5867 -a 0 -x {9.0 10.0 2938 ------- null} h -t 3.3309 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5867 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.33102 -s 0 -d 9 -p ack -e 40 -c 0 -i 5874 -a 0 -x {10.0 9.0 2932 ------- null} - -t 3.33102 -s 0 -d 9 -p ack -e 40 -c 0 -i 5874 -a 0 -x {10.0 9.0 2932 ------- null} h -t 3.33102 -s 0 -d 9 -p ack -e 40 -c 0 -i 5874 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.33131 -s 10 -d 7 -p ack -e 40 -c 0 -i 5878 -a 0 -x {10.0 9.0 2934 ------- null} + -t 3.33131 -s 7 -d 0 -p ack -e 40 -c 0 -i 5878 -a 0 -x {10.0 9.0 2934 ------- null} h -t 3.33131 -s 7 -d 8 -p ack -e 40 -c 0 -i 5878 -a 0 -x {10.0 9.0 2934 ------- null} r -t 3.33152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5863 -a 0 -x {9.0 10.0 2936 ------- null} + -t 3.33152 -s 10 -d 7 -p ack -e 40 -c 0 -i 5882 -a 0 -x {10.0 9.0 2936 ------- null} - -t 3.33152 -s 10 -d 7 -p ack -e 40 -c 0 -i 5882 -a 0 -x {10.0 9.0 2936 ------- null} h -t 3.33152 -s 10 -d 7 -p ack -e 40 -c 0 -i 5882 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.33162 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5877 -a 0 -x {9.0 10.0 2943 ------- null} + -t 3.33162 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5877 -a 0 -x {9.0 10.0 2943 ------- null} h -t 3.33162 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5877 -a 0 -x {9.0 10.0 2943 ------- null} r -t 3.33194 -s 0 -d 9 -p ack -e 40 -c 0 -i 5872 -a 0 -x {10.0 9.0 2931 ------- null} + -t 3.33194 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5883 -a 0 -x {9.0 10.0 2946 ------- null} - -t 3.33194 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5883 -a 0 -x {9.0 10.0 2946 ------- null} h -t 3.33194 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5883 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.33198 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5869 -a 0 -x {9.0 10.0 2939 ------- null} - -t 3.33198 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5869 -a 0 -x {9.0 10.0 2939 ------- null} h -t 3.33198 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5869 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.33213 -s 0 -d 9 -p ack -e 40 -c 0 -i 5876 -a 0 -x {10.0 9.0 2933 ------- null} - -t 3.33213 -s 0 -d 9 -p ack -e 40 -c 0 -i 5876 -a 0 -x {10.0 9.0 2933 ------- null} h -t 3.33213 -s 0 -d 9 -p ack -e 40 -c 0 -i 5876 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.33246 -s 10 -d 7 -p ack -e 40 -c 0 -i 5880 -a 0 -x {10.0 9.0 2935 ------- null} + -t 3.33246 -s 7 -d 0 -p ack -e 40 -c 0 -i 5880 -a 0 -x {10.0 9.0 2935 ------- null} h -t 3.33246 -s 7 -d 8 -p ack -e 40 -c 0 -i 5880 -a 0 -x {10.0 9.0 2935 ------- null} r -t 3.33254 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5879 -a 0 -x {9.0 10.0 2944 ------- null} + -t 3.33254 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5879 -a 0 -x {9.0 10.0 2944 ------- null} h -t 3.33254 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5879 -a 0 -x {9.0 10.0 2944 ------- null} r -t 3.33261 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5865 -a 0 -x {9.0 10.0 2937 ------- null} + -t 3.33261 -s 10 -d 7 -p ack -e 40 -c 0 -i 5884 -a 0 -x {10.0 9.0 2937 ------- null} - -t 3.33261 -s 10 -d 7 -p ack -e 40 -c 0 -i 5884 -a 0 -x {10.0 9.0 2937 ------- null} h -t 3.33261 -s 10 -d 7 -p ack -e 40 -c 0 -i 5884 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.33306 -s 0 -d 9 -p ack -e 40 -c 0 -i 5874 -a 0 -x {10.0 9.0 2932 ------- null} + -t 3.33306 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5885 -a 0 -x {9.0 10.0 2947 ------- null} - -t 3.33306 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5885 -a 0 -x {9.0 10.0 2947 ------- null} h -t 3.33306 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5885 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.33307 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5871 -a 0 -x {9.0 10.0 2940 ------- null} - -t 3.33307 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5871 -a 0 -x {9.0 10.0 2940 ------- null} h -t 3.33307 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5871 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.33314 -s 0 -d 9 -p ack -e 40 -c 0 -i 5878 -a 0 -x {10.0 9.0 2934 ------- null} - -t 3.33314 -s 0 -d 9 -p ack -e 40 -c 0 -i 5878 -a 0 -x {10.0 9.0 2934 ------- null} h -t 3.33314 -s 0 -d 9 -p ack -e 40 -c 0 -i 5878 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.33355 -s 10 -d 7 -p ack -e 40 -c 0 -i 5882 -a 0 -x {10.0 9.0 2936 ------- null} + -t 3.33355 -s 7 -d 0 -p ack -e 40 -c 0 -i 5882 -a 0 -x {10.0 9.0 2936 ------- null} h -t 3.33355 -s 7 -d 8 -p ack -e 40 -c 0 -i 5882 -a 0 -x {10.0 9.0 2936 ------- null} r -t 3.33368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5881 -a 0 -x {9.0 10.0 2945 ------- null} + -t 3.33368 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5881 -a 0 -x {9.0 10.0 2945 ------- null} h -t 3.33368 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5881 -a 0 -x {9.0 10.0 2945 ------- null} r -t 3.3337 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5867 -a 0 -x {9.0 10.0 2938 ------- null} + -t 3.3337 -s 10 -d 7 -p ack -e 40 -c 0 -i 5886 -a 0 -x {10.0 9.0 2938 ------- null} - -t 3.3337 -s 10 -d 7 -p ack -e 40 -c 0 -i 5886 -a 0 -x {10.0 9.0 2938 ------- null} h -t 3.3337 -s 10 -d 7 -p ack -e 40 -c 0 -i 5886 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.33416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5873 -a 0 -x {9.0 10.0 2941 ------- null} - -t 3.33416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5873 -a 0 -x {9.0 10.0 2941 ------- null} h -t 3.33416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5873 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.33416 -s 0 -d 9 -p ack -e 40 -c 0 -i 5876 -a 0 -x {10.0 9.0 2933 ------- null} + -t 3.33416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5887 -a 0 -x {9.0 10.0 2948 ------- null} - -t 3.33416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5887 -a 0 -x {9.0 10.0 2948 ------- null} h -t 3.33416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5887 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.33434 -s 0 -d 9 -p ack -e 40 -c 0 -i 5880 -a 0 -x {10.0 9.0 2935 ------- null} - -t 3.33434 -s 0 -d 9 -p ack -e 40 -c 0 -i 5880 -a 0 -x {10.0 9.0 2935 ------- null} h -t 3.33434 -s 0 -d 9 -p ack -e 40 -c 0 -i 5880 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.33464 -s 10 -d 7 -p ack -e 40 -c 0 -i 5884 -a 0 -x {10.0 9.0 2937 ------- null} + -t 3.33464 -s 7 -d 0 -p ack -e 40 -c 0 -i 5884 -a 0 -x {10.0 9.0 2937 ------- null} h -t 3.33464 -s 7 -d 8 -p ack -e 40 -c 0 -i 5884 -a 0 -x {10.0 9.0 2937 ------- null} r -t 3.33474 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5883 -a 0 -x {9.0 10.0 2946 ------- null} + -t 3.33474 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5883 -a 0 -x {9.0 10.0 2946 ------- null} h -t 3.33474 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5883 -a 0 -x {9.0 10.0 2946 ------- null} r -t 3.33478 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5869 -a 0 -x {9.0 10.0 2939 ------- null} + -t 3.33478 -s 10 -d 7 -p ack -e 40 -c 0 -i 5888 -a 0 -x {10.0 9.0 2939 ------- null} - -t 3.33478 -s 10 -d 7 -p ack -e 40 -c 0 -i 5888 -a 0 -x {10.0 9.0 2939 ------- null} h -t 3.33478 -s 10 -d 7 -p ack -e 40 -c 0 -i 5888 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.33517 -s 0 -d 9 -p ack -e 40 -c 0 -i 5878 -a 0 -x {10.0 9.0 2934 ------- null} + -t 3.33517 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5889 -a 0 -x {9.0 10.0 2949 ------- null} - -t 3.33517 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5889 -a 0 -x {9.0 10.0 2949 ------- null} h -t 3.33517 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5889 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.33525 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5875 -a 0 -x {9.0 10.0 2942 ------- null} - -t 3.33525 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5875 -a 0 -x {9.0 10.0 2942 ------- null} h -t 3.33525 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5875 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.33541 -s 0 -d 9 -p ack -e 40 -c 0 -i 5882 -a 0 -x {10.0 9.0 2936 ------- null} - -t 3.33541 -s 0 -d 9 -p ack -e 40 -c 0 -i 5882 -a 0 -x {10.0 9.0 2936 ------- null} h -t 3.33541 -s 0 -d 9 -p ack -e 40 -c 0 -i 5882 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.33573 -s 10 -d 7 -p ack -e 40 -c 0 -i 5886 -a 0 -x {10.0 9.0 2938 ------- null} + -t 3.33573 -s 7 -d 0 -p ack -e 40 -c 0 -i 5886 -a 0 -x {10.0 9.0 2938 ------- null} h -t 3.33573 -s 7 -d 8 -p ack -e 40 -c 0 -i 5886 -a 0 -x {10.0 9.0 2938 ------- null} r -t 3.33586 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5885 -a 0 -x {9.0 10.0 2947 ------- null} + -t 3.33586 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5885 -a 0 -x {9.0 10.0 2947 ------- null} h -t 3.33586 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5885 -a 0 -x {9.0 10.0 2947 ------- null} r -t 3.33587 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5871 -a 0 -x {9.0 10.0 2940 ------- null} + -t 3.33587 -s 10 -d 7 -p ack -e 40 -c 0 -i 5890 -a 0 -x {10.0 9.0 2940 ------- null} - -t 3.33587 -s 10 -d 7 -p ack -e 40 -c 0 -i 5890 -a 0 -x {10.0 9.0 2940 ------- null} h -t 3.33587 -s 10 -d 7 -p ack -e 40 -c 0 -i 5890 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.33634 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5877 -a 0 -x {9.0 10.0 2943 ------- null} - -t 3.33634 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5877 -a 0 -x {9.0 10.0 2943 ------- null} h -t 3.33634 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5877 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.33637 -s 0 -d 9 -p ack -e 40 -c 0 -i 5880 -a 0 -x {10.0 9.0 2935 ------- null} + -t 3.33637 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5891 -a 0 -x {9.0 10.0 2950 ------- null} - -t 3.33637 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5891 -a 0 -x {9.0 10.0 2950 ------- null} h -t 3.33637 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5891 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.33656 -s 0 -d 9 -p ack -e 40 -c 0 -i 5884 -a 0 -x {10.0 9.0 2937 ------- null} - -t 3.33656 -s 0 -d 9 -p ack -e 40 -c 0 -i 5884 -a 0 -x {10.0 9.0 2937 ------- null} h -t 3.33656 -s 0 -d 9 -p ack -e 40 -c 0 -i 5884 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.33682 -s 10 -d 7 -p ack -e 40 -c 0 -i 5888 -a 0 -x {10.0 9.0 2939 ------- null} + -t 3.33682 -s 7 -d 0 -p ack -e 40 -c 0 -i 5888 -a 0 -x {10.0 9.0 2939 ------- null} h -t 3.33682 -s 7 -d 8 -p ack -e 40 -c 0 -i 5888 -a 0 -x {10.0 9.0 2939 ------- null} r -t 3.33696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5873 -a 0 -x {9.0 10.0 2941 ------- null} + -t 3.33696 -s 10 -d 7 -p ack -e 40 -c 0 -i 5892 -a 0 -x {10.0 9.0 2941 ------- null} - -t 3.33696 -s 10 -d 7 -p ack -e 40 -c 0 -i 5892 -a 0 -x {10.0 9.0 2941 ------- null} h -t 3.33696 -s 10 -d 7 -p ack -e 40 -c 0 -i 5892 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.33696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5887 -a 0 -x {9.0 10.0 2948 ------- null} + -t 3.33696 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5887 -a 0 -x {9.0 10.0 2948 ------- null} h -t 3.33696 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5887 -a 0 -x {9.0 10.0 2948 ------- null} + -t 3.33742 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5879 -a 0 -x {9.0 10.0 2944 ------- null} - -t 3.33742 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5879 -a 0 -x {9.0 10.0 2944 ------- null} h -t 3.33742 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5879 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.33744 -s 0 -d 9 -p ack -e 40 -c 0 -i 5882 -a 0 -x {10.0 9.0 2936 ------- null} + -t 3.33744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5893 -a 0 -x {9.0 10.0 2951 ------- null} - -t 3.33744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5893 -a 0 -x {9.0 10.0 2951 ------- null} h -t 3.33744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5893 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.33763 -s 0 -d 9 -p ack -e 40 -c 0 -i 5886 -a 0 -x {10.0 9.0 2938 ------- null} - -t 3.33763 -s 0 -d 9 -p ack -e 40 -c 0 -i 5886 -a 0 -x {10.0 9.0 2938 ------- null} h -t 3.33763 -s 0 -d 9 -p ack -e 40 -c 0 -i 5886 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.3379 -s 10 -d 7 -p ack -e 40 -c 0 -i 5890 -a 0 -x {10.0 9.0 2940 ------- null} + -t 3.3379 -s 7 -d 0 -p ack -e 40 -c 0 -i 5890 -a 0 -x {10.0 9.0 2940 ------- null} h -t 3.3379 -s 7 -d 8 -p ack -e 40 -c 0 -i 5890 -a 0 -x {10.0 9.0 2940 ------- null} r -t 3.33797 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5889 -a 0 -x {9.0 10.0 2949 ------- null} + -t 3.33797 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5889 -a 0 -x {9.0 10.0 2949 ------- null} h -t 3.33797 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5889 -a 0 -x {9.0 10.0 2949 ------- null} r -t 3.33805 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5875 -a 0 -x {9.0 10.0 2942 ------- null} + -t 3.33805 -s 10 -d 7 -p ack -e 40 -c 0 -i 5894 -a 0 -x {10.0 9.0 2942 ------- null} - -t 3.33805 -s 10 -d 7 -p ack -e 40 -c 0 -i 5894 -a 0 -x {10.0 9.0 2942 ------- null} h -t 3.33805 -s 10 -d 7 -p ack -e 40 -c 0 -i 5894 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.33851 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5881 -a 0 -x {9.0 10.0 2945 ------- null} - -t 3.33851 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5881 -a 0 -x {9.0 10.0 2945 ------- null} h -t 3.33851 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5881 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.33859 -s 0 -d 9 -p ack -e 40 -c 0 -i 5884 -a 0 -x {10.0 9.0 2937 ------- null} + -t 3.33859 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5895 -a 0 -x {9.0 10.0 2952 ------- null} - -t 3.33859 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5895 -a 0 -x {9.0 10.0 2952 ------- null} h -t 3.33859 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5895 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.33875 -s 0 -d 9 -p ack -e 40 -c 0 -i 5888 -a 0 -x {10.0 9.0 2939 ------- null} - -t 3.33875 -s 0 -d 9 -p ack -e 40 -c 0 -i 5888 -a 0 -x {10.0 9.0 2939 ------- null} h -t 3.33875 -s 0 -d 9 -p ack -e 40 -c 0 -i 5888 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.33899 -s 10 -d 7 -p ack -e 40 -c 0 -i 5892 -a 0 -x {10.0 9.0 2941 ------- null} + -t 3.33899 -s 7 -d 0 -p ack -e 40 -c 0 -i 5892 -a 0 -x {10.0 9.0 2941 ------- null} h -t 3.33899 -s 7 -d 8 -p ack -e 40 -c 0 -i 5892 -a 0 -x {10.0 9.0 2941 ------- null} r -t 3.33914 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5877 -a 0 -x {9.0 10.0 2943 ------- null} + -t 3.33914 -s 10 -d 7 -p ack -e 40 -c 0 -i 5896 -a 0 -x {10.0 9.0 2943 ------- null} - -t 3.33914 -s 10 -d 7 -p ack -e 40 -c 0 -i 5896 -a 0 -x {10.0 9.0 2943 ------- null} h -t 3.33914 -s 10 -d 7 -p ack -e 40 -c 0 -i 5896 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.33917 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5891 -a 0 -x {9.0 10.0 2950 ------- null} + -t 3.33917 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5891 -a 0 -x {9.0 10.0 2950 ------- null} h -t 3.33917 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5891 -a 0 -x {9.0 10.0 2950 ------- null} + -t 3.3396 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5883 -a 0 -x {9.0 10.0 2946 ------- null} - -t 3.3396 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5883 -a 0 -x {9.0 10.0 2946 ------- null} h -t 3.3396 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5883 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.33966 -s 0 -d 9 -p ack -e 40 -c 0 -i 5886 -a 0 -x {10.0 9.0 2938 ------- null} + -t 3.33966 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5897 -a 0 -x {9.0 10.0 2953 ------- null} - -t 3.33966 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5897 -a 0 -x {9.0 10.0 2953 ------- null} h -t 3.33966 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5897 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.33974 -s 0 -d 9 -p ack -e 40 -c 0 -i 5890 -a 0 -x {10.0 9.0 2940 ------- null} - -t 3.33974 -s 0 -d 9 -p ack -e 40 -c 0 -i 5890 -a 0 -x {10.0 9.0 2940 ------- null} h -t 3.33974 -s 0 -d 9 -p ack -e 40 -c 0 -i 5890 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.34008 -s 10 -d 7 -p ack -e 40 -c 0 -i 5894 -a 0 -x {10.0 9.0 2942 ------- null} + -t 3.34008 -s 7 -d 0 -p ack -e 40 -c 0 -i 5894 -a 0 -x {10.0 9.0 2942 ------- null} h -t 3.34008 -s 7 -d 8 -p ack -e 40 -c 0 -i 5894 -a 0 -x {10.0 9.0 2942 ------- null} r -t 3.34022 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5879 -a 0 -x {9.0 10.0 2944 ------- null} + -t 3.34022 -s 10 -d 7 -p ack -e 40 -c 0 -i 5898 -a 0 -x {10.0 9.0 2944 ------- null} - -t 3.34022 -s 10 -d 7 -p ack -e 40 -c 0 -i 5898 -a 0 -x {10.0 9.0 2944 ------- null} h -t 3.34022 -s 10 -d 7 -p ack -e 40 -c 0 -i 5898 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.34024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5893 -a 0 -x {9.0 10.0 2951 ------- null} + -t 3.34024 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5893 -a 0 -x {9.0 10.0 2951 ------- null} h -t 3.34024 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5893 -a 0 -x {9.0 10.0 2951 ------- null} + -t 3.34069 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5885 -a 0 -x {9.0 10.0 2947 ------- null} - -t 3.34069 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5885 -a 0 -x {9.0 10.0 2947 ------- null} h -t 3.34069 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5885 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.34078 -s 0 -d 9 -p ack -e 40 -c 0 -i 5888 -a 0 -x {10.0 9.0 2939 ------- null} + -t 3.34078 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5899 -a 0 -x {9.0 10.0 2954 ------- null} - -t 3.34078 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5899 -a 0 -x {9.0 10.0 2954 ------- null} h -t 3.34078 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5899 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.34085 -s 0 -d 9 -p ack -e 40 -c 0 -i 5892 -a 0 -x {10.0 9.0 2941 ------- null} - -t 3.34085 -s 0 -d 9 -p ack -e 40 -c 0 -i 5892 -a 0 -x {10.0 9.0 2941 ------- null} h -t 3.34085 -s 0 -d 9 -p ack -e 40 -c 0 -i 5892 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.34117 -s 10 -d 7 -p ack -e 40 -c 0 -i 5896 -a 0 -x {10.0 9.0 2943 ------- null} + -t 3.34117 -s 7 -d 0 -p ack -e 40 -c 0 -i 5896 -a 0 -x {10.0 9.0 2943 ------- null} h -t 3.34117 -s 7 -d 8 -p ack -e 40 -c 0 -i 5896 -a 0 -x {10.0 9.0 2943 ------- null} r -t 3.34131 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5881 -a 0 -x {9.0 10.0 2945 ------- null} + -t 3.34131 -s 10 -d 7 -p ack -e 40 -c 0 -i 5900 -a 0 -x {10.0 9.0 2945 ------- null} - -t 3.34131 -s 10 -d 7 -p ack -e 40 -c 0 -i 5900 -a 0 -x {10.0 9.0 2945 ------- null} h -t 3.34131 -s 10 -d 7 -p ack -e 40 -c 0 -i 5900 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.34139 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5895 -a 0 -x {9.0 10.0 2952 ------- null} + -t 3.34139 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5895 -a 0 -x {9.0 10.0 2952 ------- null} h -t 3.34139 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5895 -a 0 -x {9.0 10.0 2952 ------- null} + -t 3.34178 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5887 -a 0 -x {9.0 10.0 2948 ------- null} - -t 3.34178 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5887 -a 0 -x {9.0 10.0 2948 ------- null} h -t 3.34178 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5887 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.34178 -s 0 -d 9 -p ack -e 40 -c 0 -i 5890 -a 0 -x {10.0 9.0 2940 ------- null} + -t 3.34178 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5901 -a 0 -x {9.0 10.0 2955 ------- null} - -t 3.34178 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5901 -a 0 -x {9.0 10.0 2955 ------- null} h -t 3.34178 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5901 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.34184 -s 0 -d 9 -p ack -e 40 -c 0 -i 5894 -a 0 -x {10.0 9.0 2942 ------- null} - -t 3.34184 -s 0 -d 9 -p ack -e 40 -c 0 -i 5894 -a 0 -x {10.0 9.0 2942 ------- null} h -t 3.34184 -s 0 -d 9 -p ack -e 40 -c 0 -i 5894 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.34226 -s 10 -d 7 -p ack -e 40 -c 0 -i 5898 -a 0 -x {10.0 9.0 2944 ------- null} + -t 3.34226 -s 7 -d 0 -p ack -e 40 -c 0 -i 5898 -a 0 -x {10.0 9.0 2944 ------- null} h -t 3.34226 -s 7 -d 8 -p ack -e 40 -c 0 -i 5898 -a 0 -x {10.0 9.0 2944 ------- null} r -t 3.3424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5883 -a 0 -x {9.0 10.0 2946 ------- null} + -t 3.3424 -s 10 -d 7 -p ack -e 40 -c 0 -i 5902 -a 0 -x {10.0 9.0 2946 ------- null} - -t 3.3424 -s 10 -d 7 -p ack -e 40 -c 0 -i 5902 -a 0 -x {10.0 9.0 2946 ------- null} h -t 3.3424 -s 10 -d 7 -p ack -e 40 -c 0 -i 5902 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.34246 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5897 -a 0 -x {9.0 10.0 2953 ------- null} + -t 3.34246 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5897 -a 0 -x {9.0 10.0 2953 ------- null} h -t 3.34246 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5897 -a 0 -x {9.0 10.0 2953 ------- null} + -t 3.34286 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5889 -a 0 -x {9.0 10.0 2949 ------- null} - -t 3.34286 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5889 -a 0 -x {9.0 10.0 2949 ------- null} h -t 3.34286 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5889 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.34288 -s 0 -d 9 -p ack -e 40 -c 0 -i 5892 -a 0 -x {10.0 9.0 2941 ------- null} + -t 3.34288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5903 -a 0 -x {9.0 10.0 2956 ------- null} - -t 3.34288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5903 -a 0 -x {9.0 10.0 2956 ------- null} h -t 3.34288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5903 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.34299 -s 0 -d 9 -p ack -e 40 -c 0 -i 5896 -a 0 -x {10.0 9.0 2943 ------- null} - -t 3.34299 -s 0 -d 9 -p ack -e 40 -c 0 -i 5896 -a 0 -x {10.0 9.0 2943 ------- null} h -t 3.34299 -s 0 -d 9 -p ack -e 40 -c 0 -i 5896 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.34334 -s 10 -d 7 -p ack -e 40 -c 0 -i 5900 -a 0 -x {10.0 9.0 2945 ------- null} + -t 3.34334 -s 7 -d 0 -p ack -e 40 -c 0 -i 5900 -a 0 -x {10.0 9.0 2945 ------- null} h -t 3.34334 -s 7 -d 8 -p ack -e 40 -c 0 -i 5900 -a 0 -x {10.0 9.0 2945 ------- null} r -t 3.34349 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5885 -a 0 -x {9.0 10.0 2947 ------- null} + -t 3.34349 -s 10 -d 7 -p ack -e 40 -c 0 -i 5904 -a 0 -x {10.0 9.0 2947 ------- null} - -t 3.34349 -s 10 -d 7 -p ack -e 40 -c 0 -i 5904 -a 0 -x {10.0 9.0 2947 ------- null} h -t 3.34349 -s 10 -d 7 -p ack -e 40 -c 0 -i 5904 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.34358 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5899 -a 0 -x {9.0 10.0 2954 ------- null} + -t 3.34358 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5899 -a 0 -x {9.0 10.0 2954 ------- null} h -t 3.34358 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5899 -a 0 -x {9.0 10.0 2954 ------- null} r -t 3.34387 -s 0 -d 9 -p ack -e 40 -c 0 -i 5894 -a 0 -x {10.0 9.0 2942 ------- null} + -t 3.34387 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5905 -a 0 -x {9.0 10.0 2957 ------- null} - -t 3.34387 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5905 -a 0 -x {9.0 10.0 2957 ------- null} h -t 3.34387 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5905 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.34395 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5891 -a 0 -x {9.0 10.0 2950 ------- null} - -t 3.34395 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5891 -a 0 -x {9.0 10.0 2950 ------- null} h -t 3.34395 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5891 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.34408 -s 0 -d 9 -p ack -e 40 -c 0 -i 5898 -a 0 -x {10.0 9.0 2944 ------- null} - -t 3.34408 -s 0 -d 9 -p ack -e 40 -c 0 -i 5898 -a 0 -x {10.0 9.0 2944 ------- null} h -t 3.34408 -s 0 -d 9 -p ack -e 40 -c 0 -i 5898 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.34443 -s 10 -d 7 -p ack -e 40 -c 0 -i 5902 -a 0 -x {10.0 9.0 2946 ------- null} + -t 3.34443 -s 7 -d 0 -p ack -e 40 -c 0 -i 5902 -a 0 -x {10.0 9.0 2946 ------- null} h -t 3.34443 -s 7 -d 8 -p ack -e 40 -c 0 -i 5902 -a 0 -x {10.0 9.0 2946 ------- null} r -t 3.34458 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5887 -a 0 -x {9.0 10.0 2948 ------- null} + -t 3.34458 -s 10 -d 7 -p ack -e 40 -c 0 -i 5906 -a 0 -x {10.0 9.0 2948 ------- null} - -t 3.34458 -s 10 -d 7 -p ack -e 40 -c 0 -i 5906 -a 0 -x {10.0 9.0 2948 ------- null} h -t 3.34458 -s 10 -d 7 -p ack -e 40 -c 0 -i 5906 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.34458 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5901 -a 0 -x {9.0 10.0 2955 ------- null} + -t 3.34458 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5901 -a 0 -x {9.0 10.0 2955 ------- null} h -t 3.34458 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5901 -a 0 -x {9.0 10.0 2955 ------- null} r -t 3.34502 -s 0 -d 9 -p ack -e 40 -c 0 -i 5896 -a 0 -x {10.0 9.0 2943 ------- null} + -t 3.34502 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5907 -a 0 -x {9.0 10.0 2958 ------- null} - -t 3.34502 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5907 -a 0 -x {9.0 10.0 2958 ------- null} h -t 3.34502 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5907 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.34504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5893 -a 0 -x {9.0 10.0 2951 ------- null} - -t 3.34504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5893 -a 0 -x {9.0 10.0 2951 ------- null} h -t 3.34504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5893 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.34522 -s 0 -d 9 -p ack -e 40 -c 0 -i 5900 -a 0 -x {10.0 9.0 2945 ------- null} - -t 3.34522 -s 0 -d 9 -p ack -e 40 -c 0 -i 5900 -a 0 -x {10.0 9.0 2945 ------- null} h -t 3.34522 -s 0 -d 9 -p ack -e 40 -c 0 -i 5900 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.34552 -s 10 -d 7 -p ack -e 40 -c 0 -i 5904 -a 0 -x {10.0 9.0 2947 ------- null} + -t 3.34552 -s 7 -d 0 -p ack -e 40 -c 0 -i 5904 -a 0 -x {10.0 9.0 2947 ------- null} h -t 3.34552 -s 7 -d 8 -p ack -e 40 -c 0 -i 5904 -a 0 -x {10.0 9.0 2947 ------- null} r -t 3.34566 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5889 -a 0 -x {9.0 10.0 2949 ------- null} + -t 3.34566 -s 10 -d 7 -p ack -e 40 -c 0 -i 5908 -a 0 -x {10.0 9.0 2949 ------- null} - -t 3.34566 -s 10 -d 7 -p ack -e 40 -c 0 -i 5908 -a 0 -x {10.0 9.0 2949 ------- null} h -t 3.34566 -s 10 -d 7 -p ack -e 40 -c 0 -i 5908 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.34568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5903 -a 0 -x {9.0 10.0 2956 ------- null} + -t 3.34568 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5903 -a 0 -x {9.0 10.0 2956 ------- null} h -t 3.34568 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5903 -a 0 -x {9.0 10.0 2956 ------- null} r -t 3.34611 -s 0 -d 9 -p ack -e 40 -c 0 -i 5898 -a 0 -x {10.0 9.0 2944 ------- null} + -t 3.34611 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5909 -a 0 -x {9.0 10.0 2959 ------- null} - -t 3.34611 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5909 -a 0 -x {9.0 10.0 2959 ------- null} h -t 3.34611 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5909 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.34613 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5895 -a 0 -x {9.0 10.0 2952 ------- null} - -t 3.34613 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5895 -a 0 -x {9.0 10.0 2952 ------- null} h -t 3.34613 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5895 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.34621 -s 0 -d 9 -p ack -e 40 -c 0 -i 5902 -a 0 -x {10.0 9.0 2946 ------- null} - -t 3.34621 -s 0 -d 9 -p ack -e 40 -c 0 -i 5902 -a 0 -x {10.0 9.0 2946 ------- null} h -t 3.34621 -s 0 -d 9 -p ack -e 40 -c 0 -i 5902 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.34661 -s 10 -d 7 -p ack -e 40 -c 0 -i 5906 -a 0 -x {10.0 9.0 2948 ------- null} + -t 3.34661 -s 7 -d 0 -p ack -e 40 -c 0 -i 5906 -a 0 -x {10.0 9.0 2948 ------- null} h -t 3.34661 -s 7 -d 8 -p ack -e 40 -c 0 -i 5906 -a 0 -x {10.0 9.0 2948 ------- null} r -t 3.34667 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5905 -a 0 -x {9.0 10.0 2957 ------- null} + -t 3.34667 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5905 -a 0 -x {9.0 10.0 2957 ------- null} h -t 3.34667 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5905 -a 0 -x {9.0 10.0 2957 ------- null} r -t 3.34675 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5891 -a 0 -x {9.0 10.0 2950 ------- null} + -t 3.34675 -s 10 -d 7 -p ack -e 40 -c 0 -i 5910 -a 0 -x {10.0 9.0 2950 ------- null} - -t 3.34675 -s 10 -d 7 -p ack -e 40 -c 0 -i 5910 -a 0 -x {10.0 9.0 2950 ------- null} h -t 3.34675 -s 10 -d 7 -p ack -e 40 -c 0 -i 5910 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.34722 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5897 -a 0 -x {9.0 10.0 2953 ------- null} - -t 3.34722 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5897 -a 0 -x {9.0 10.0 2953 ------- null} h -t 3.34722 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5897 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.34725 -s 0 -d 9 -p ack -e 40 -c 0 -i 5900 -a 0 -x {10.0 9.0 2945 ------- null} + -t 3.34725 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5911 -a 0 -x {9.0 10.0 2960 ------- null} - -t 3.34725 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5911 -a 0 -x {9.0 10.0 2960 ------- null} h -t 3.34725 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5911 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.34731 -s 0 -d 9 -p ack -e 40 -c 0 -i 5904 -a 0 -x {10.0 9.0 2947 ------- null} - -t 3.34731 -s 0 -d 9 -p ack -e 40 -c 0 -i 5904 -a 0 -x {10.0 9.0 2947 ------- null} h -t 3.34731 -s 0 -d 9 -p ack -e 40 -c 0 -i 5904 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.3477 -s 10 -d 7 -p ack -e 40 -c 0 -i 5908 -a 0 -x {10.0 9.0 2949 ------- null} + -t 3.3477 -s 7 -d 0 -p ack -e 40 -c 0 -i 5908 -a 0 -x {10.0 9.0 2949 ------- null} h -t 3.3477 -s 7 -d 8 -p ack -e 40 -c 0 -i 5908 -a 0 -x {10.0 9.0 2949 ------- null} r -t 3.34782 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5907 -a 0 -x {9.0 10.0 2958 ------- null} + -t 3.34782 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5907 -a 0 -x {9.0 10.0 2958 ------- null} h -t 3.34782 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5907 -a 0 -x {9.0 10.0 2958 ------- null} r -t 3.34784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5893 -a 0 -x {9.0 10.0 2951 ------- null} + -t 3.34784 -s 10 -d 7 -p ack -e 40 -c 0 -i 5912 -a 0 -x {10.0 9.0 2951 ------- null} - -t 3.34784 -s 10 -d 7 -p ack -e 40 -c 0 -i 5912 -a 0 -x {10.0 9.0 2951 ------- null} h -t 3.34784 -s 10 -d 7 -p ack -e 40 -c 0 -i 5912 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.34824 -s 0 -d 9 -p ack -e 40 -c 0 -i 5902 -a 0 -x {10.0 9.0 2946 ------- null} + -t 3.34824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5913 -a 0 -x {9.0 10.0 2961 ------- null} - -t 3.34824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5913 -a 0 -x {9.0 10.0 2961 ------- null} h -t 3.34824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5913 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.3483 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5899 -a 0 -x {9.0 10.0 2954 ------- null} - -t 3.3483 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5899 -a 0 -x {9.0 10.0 2954 ------- null} h -t 3.3483 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5899 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.34845 -s 0 -d 9 -p ack -e 40 -c 0 -i 5906 -a 0 -x {10.0 9.0 2948 ------- null} - -t 3.34845 -s 0 -d 9 -p ack -e 40 -c 0 -i 5906 -a 0 -x {10.0 9.0 2948 ------- null} h -t 3.34845 -s 0 -d 9 -p ack -e 40 -c 0 -i 5906 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.34878 -s 10 -d 7 -p ack -e 40 -c 0 -i 5910 -a 0 -x {10.0 9.0 2950 ------- null} + -t 3.34878 -s 7 -d 0 -p ack -e 40 -c 0 -i 5910 -a 0 -x {10.0 9.0 2950 ------- null} h -t 3.34878 -s 7 -d 8 -p ack -e 40 -c 0 -i 5910 -a 0 -x {10.0 9.0 2950 ------- null} r -t 3.34891 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5909 -a 0 -x {9.0 10.0 2959 ------- null} + -t 3.34891 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5909 -a 0 -x {9.0 10.0 2959 ------- null} h -t 3.34891 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5909 -a 0 -x {9.0 10.0 2959 ------- null} r -t 3.34893 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5895 -a 0 -x {9.0 10.0 2952 ------- null} + -t 3.34893 -s 10 -d 7 -p ack -e 40 -c 0 -i 5914 -a 0 -x {10.0 9.0 2952 ------- null} - -t 3.34893 -s 10 -d 7 -p ack -e 40 -c 0 -i 5914 -a 0 -x {10.0 9.0 2952 ------- null} h -t 3.34893 -s 10 -d 7 -p ack -e 40 -c 0 -i 5914 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.34934 -s 0 -d 9 -p ack -e 40 -c 0 -i 5904 -a 0 -x {10.0 9.0 2947 ------- null} + -t 3.34934 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5915 -a 0 -x {9.0 10.0 2962 ------- null} - -t 3.34934 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5915 -a 0 -x {9.0 10.0 2962 ------- null} h -t 3.34934 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5915 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.34939 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5901 -a 0 -x {9.0 10.0 2955 ------- null} - -t 3.34939 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5901 -a 0 -x {9.0 10.0 2955 ------- null} h -t 3.34939 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5901 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.34965 -s 0 -d 9 -p ack -e 40 -c 0 -i 5908 -a 0 -x {10.0 9.0 2949 ------- null} - -t 3.34965 -s 0 -d 9 -p ack -e 40 -c 0 -i 5908 -a 0 -x {10.0 9.0 2949 ------- null} h -t 3.34965 -s 0 -d 9 -p ack -e 40 -c 0 -i 5908 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.34987 -s 10 -d 7 -p ack -e 40 -c 0 -i 5912 -a 0 -x {10.0 9.0 2951 ------- null} + -t 3.34987 -s 7 -d 0 -p ack -e 40 -c 0 -i 5912 -a 0 -x {10.0 9.0 2951 ------- null} h -t 3.34987 -s 7 -d 8 -p ack -e 40 -c 0 -i 5912 -a 0 -x {10.0 9.0 2951 ------- null} r -t 3.35002 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5897 -a 0 -x {9.0 10.0 2953 ------- null} + -t 3.35002 -s 10 -d 7 -p ack -e 40 -c 0 -i 5916 -a 0 -x {10.0 9.0 2953 ------- null} - -t 3.35002 -s 10 -d 7 -p ack -e 40 -c 0 -i 5916 -a 0 -x {10.0 9.0 2953 ------- null} h -t 3.35002 -s 10 -d 7 -p ack -e 40 -c 0 -i 5916 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.35005 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5911 -a 0 -x {9.0 10.0 2960 ------- null} + -t 3.35005 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5911 -a 0 -x {9.0 10.0 2960 ------- null} h -t 3.35005 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5911 -a 0 -x {9.0 10.0 2960 ------- null} r -t 3.35048 -s 0 -d 9 -p ack -e 40 -c 0 -i 5906 -a 0 -x {10.0 9.0 2948 ------- null} + -t 3.35048 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5917 -a 0 -x {9.0 10.0 2963 ------- null} - -t 3.35048 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5917 -a 0 -x {9.0 10.0 2963 ------- null} h -t 3.35048 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5917 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.35053 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5903 -a 0 -x {9.0 10.0 2956 ------- null} - -t 3.35053 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5903 -a 0 -x {9.0 10.0 2956 ------- null} h -t 3.35053 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5903 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.35083 -s 0 -d 9 -p ack -e 40 -c 0 -i 5910 -a 0 -x {10.0 9.0 2950 ------- null} - -t 3.35083 -s 0 -d 9 -p ack -e 40 -c 0 -i 5910 -a 0 -x {10.0 9.0 2950 ------- null} h -t 3.35083 -s 0 -d 9 -p ack -e 40 -c 0 -i 5910 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.35096 -s 10 -d 7 -p ack -e 40 -c 0 -i 5914 -a 0 -x {10.0 9.0 2952 ------- null} + -t 3.35096 -s 7 -d 0 -p ack -e 40 -c 0 -i 5914 -a 0 -x {10.0 9.0 2952 ------- null} h -t 3.35096 -s 7 -d 8 -p ack -e 40 -c 0 -i 5914 -a 0 -x {10.0 9.0 2952 ------- null} r -t 3.35104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5913 -a 0 -x {9.0 10.0 2961 ------- null} + -t 3.35104 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5913 -a 0 -x {9.0 10.0 2961 ------- null} h -t 3.35104 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5913 -a 0 -x {9.0 10.0 2961 ------- null} r -t 3.3511 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5899 -a 0 -x {9.0 10.0 2954 ------- null} + -t 3.3511 -s 10 -d 7 -p ack -e 40 -c 0 -i 5918 -a 0 -x {10.0 9.0 2954 ------- null} - -t 3.3511 -s 10 -d 7 -p ack -e 40 -c 0 -i 5918 -a 0 -x {10.0 9.0 2954 ------- null} h -t 3.3511 -s 10 -d 7 -p ack -e 40 -c 0 -i 5918 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.35168 -s 0 -d 9 -p ack -e 40 -c 0 -i 5908 -a 0 -x {10.0 9.0 2949 ------- null} + -t 3.35168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5919 -a 0 -x {9.0 10.0 2964 ------- null} - -t 3.35168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5919 -a 0 -x {9.0 10.0 2964 ------- null} h -t 3.35168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5919 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.35179 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5905 -a 0 -x {9.0 10.0 2957 ------- null} - -t 3.35179 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5905 -a 0 -x {9.0 10.0 2957 ------- null} h -t 3.35179 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5905 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.35205 -s 10 -d 7 -p ack -e 40 -c 0 -i 5916 -a 0 -x {10.0 9.0 2953 ------- null} + -t 3.35205 -s 7 -d 0 -p ack -e 40 -c 0 -i 5916 -a 0 -x {10.0 9.0 2953 ------- null} h -t 3.35205 -s 7 -d 8 -p ack -e 40 -c 0 -i 5916 -a 0 -x {10.0 9.0 2953 ------- null} + -t 3.35206 -s 0 -d 9 -p ack -e 40 -c 0 -i 5912 -a 0 -x {10.0 9.0 2951 ------- null} - -t 3.35206 -s 0 -d 9 -p ack -e 40 -c 0 -i 5912 -a 0 -x {10.0 9.0 2951 ------- null} h -t 3.35206 -s 0 -d 9 -p ack -e 40 -c 0 -i 5912 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.35214 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5915 -a 0 -x {9.0 10.0 2962 ------- null} + -t 3.35214 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5915 -a 0 -x {9.0 10.0 2962 ------- null} h -t 3.35214 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5915 -a 0 -x {9.0 10.0 2962 ------- null} r -t 3.35219 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5901 -a 0 -x {9.0 10.0 2955 ------- null} + -t 3.35219 -s 10 -d 7 -p ack -e 40 -c 0 -i 5920 -a 0 -x {10.0 9.0 2955 ------- null} - -t 3.35219 -s 10 -d 7 -p ack -e 40 -c 0 -i 5920 -a 0 -x {10.0 9.0 2955 ------- null} h -t 3.35219 -s 10 -d 7 -p ack -e 40 -c 0 -i 5920 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.35286 -s 0 -d 9 -p ack -e 40 -c 0 -i 5910 -a 0 -x {10.0 9.0 2950 ------- null} + -t 3.35286 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5921 -a 0 -x {9.0 10.0 2965 ------- null} - -t 3.35286 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5921 -a 0 -x {9.0 10.0 2965 ------- null} h -t 3.35286 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5921 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.3531 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5907 -a 0 -x {9.0 10.0 2958 ------- null} - -t 3.3531 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5907 -a 0 -x {9.0 10.0 2958 ------- null} h -t 3.3531 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5907 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.35314 -s 10 -d 7 -p ack -e 40 -c 0 -i 5918 -a 0 -x {10.0 9.0 2954 ------- null} + -t 3.35314 -s 7 -d 0 -p ack -e 40 -c 0 -i 5918 -a 0 -x {10.0 9.0 2954 ------- null} h -t 3.35314 -s 7 -d 8 -p ack -e 40 -c 0 -i 5918 -a 0 -x {10.0 9.0 2954 ------- null} r -t 3.35328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5917 -a 0 -x {9.0 10.0 2963 ------- null} + -t 3.35328 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5917 -a 0 -x {9.0 10.0 2963 ------- null} h -t 3.35328 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5917 -a 0 -x {9.0 10.0 2963 ------- null} r -t 3.35333 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5903 -a 0 -x {9.0 10.0 2956 ------- null} + -t 3.35333 -s 10 -d 7 -p ack -e 40 -c 0 -i 5922 -a 0 -x {10.0 9.0 2956 ------- null} - -t 3.35333 -s 10 -d 7 -p ack -e 40 -c 0 -i 5922 -a 0 -x {10.0 9.0 2956 ------- null} h -t 3.35333 -s 10 -d 7 -p ack -e 40 -c 0 -i 5922 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.35339 -s 0 -d 9 -p ack -e 40 -c 0 -i 5914 -a 0 -x {10.0 9.0 2952 ------- null} - -t 3.35339 -s 0 -d 9 -p ack -e 40 -c 0 -i 5914 -a 0 -x {10.0 9.0 2952 ------- null} h -t 3.35339 -s 0 -d 9 -p ack -e 40 -c 0 -i 5914 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.3541 -s 0 -d 9 -p ack -e 40 -c 0 -i 5912 -a 0 -x {10.0 9.0 2951 ------- null} + -t 3.3541 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5923 -a 0 -x {9.0 10.0 2966 ------- null} - -t 3.3541 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5923 -a 0 -x {9.0 10.0 2966 ------- null} h -t 3.3541 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5923 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.35422 -s 10 -d 7 -p ack -e 40 -c 0 -i 5920 -a 0 -x {10.0 9.0 2955 ------- null} + -t 3.35422 -s 7 -d 0 -p ack -e 40 -c 0 -i 5920 -a 0 -x {10.0 9.0 2955 ------- null} h -t 3.35422 -s 7 -d 8 -p ack -e 40 -c 0 -i 5920 -a 0 -x {10.0 9.0 2955 ------- null} + -t 3.35445 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5909 -a 0 -x {9.0 10.0 2959 ------- null} - -t 3.35445 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5909 -a 0 -x {9.0 10.0 2959 ------- null} h -t 3.35445 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5909 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.35448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5919 -a 0 -x {9.0 10.0 2964 ------- null} + -t 3.35448 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5919 -a 0 -x {9.0 10.0 2964 ------- null} h -t 3.35448 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5919 -a 0 -x {9.0 10.0 2964 ------- null} r -t 3.35459 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5905 -a 0 -x {9.0 10.0 2957 ------- null} + -t 3.35459 -s 10 -d 7 -p ack -e 40 -c 0 -i 5924 -a 0 -x {10.0 9.0 2957 ------- null} - -t 3.35459 -s 10 -d 7 -p ack -e 40 -c 0 -i 5924 -a 0 -x {10.0 9.0 2957 ------- null} h -t 3.35459 -s 10 -d 7 -p ack -e 40 -c 0 -i 5924 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.35474 -s 0 -d 9 -p ack -e 40 -c 0 -i 5916 -a 0 -x {10.0 9.0 2953 ------- null} - -t 3.35474 -s 0 -d 9 -p ack -e 40 -c 0 -i 5916 -a 0 -x {10.0 9.0 2953 ------- null} h -t 3.35474 -s 0 -d 9 -p ack -e 40 -c 0 -i 5916 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.35536 -s 10 -d 7 -p ack -e 40 -c 0 -i 5922 -a 0 -x {10.0 9.0 2956 ------- null} + -t 3.35536 -s 7 -d 0 -p ack -e 40 -c 0 -i 5922 -a 0 -x {10.0 9.0 2956 ------- null} h -t 3.35536 -s 7 -d 8 -p ack -e 40 -c 0 -i 5922 -a 0 -x {10.0 9.0 2956 ------- null} r -t 3.35542 -s 0 -d 9 -p ack -e 40 -c 0 -i 5914 -a 0 -x {10.0 9.0 2952 ------- null} + -t 3.35542 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5925 -a 0 -x {9.0 10.0 2967 ------- null} - -t 3.35542 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5925 -a 0 -x {9.0 10.0 2967 ------- null} h -t 3.35542 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5925 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.35566 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5921 -a 0 -x {9.0 10.0 2965 ------- null} + -t 3.35566 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5921 -a 0 -x {9.0 10.0 2965 ------- null} h -t 3.35566 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5921 -a 0 -x {9.0 10.0 2965 ------- null} + -t 3.35581 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5911 -a 0 -x {9.0 10.0 2960 ------- null} - -t 3.35581 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5911 -a 0 -x {9.0 10.0 2960 ------- null} h -t 3.35581 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5911 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.3559 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5907 -a 0 -x {9.0 10.0 2958 ------- null} + -t 3.3559 -s 10 -d 7 -p ack -e 40 -c 0 -i 5926 -a 0 -x {10.0 9.0 2958 ------- null} - -t 3.3559 -s 10 -d 7 -p ack -e 40 -c 0 -i 5926 -a 0 -x {10.0 9.0 2958 ------- null} h -t 3.3559 -s 10 -d 7 -p ack -e 40 -c 0 -i 5926 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.35605 -s 0 -d 9 -p ack -e 40 -c 0 -i 5918 -a 0 -x {10.0 9.0 2954 ------- null} - -t 3.35605 -s 0 -d 9 -p ack -e 40 -c 0 -i 5918 -a 0 -x {10.0 9.0 2954 ------- null} h -t 3.35605 -s 0 -d 9 -p ack -e 40 -c 0 -i 5918 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.35662 -s 10 -d 7 -p ack -e 40 -c 0 -i 5924 -a 0 -x {10.0 9.0 2957 ------- null} + -t 3.35662 -s 7 -d 0 -p ack -e 40 -c 0 -i 5924 -a 0 -x {10.0 9.0 2957 ------- null} h -t 3.35662 -s 7 -d 8 -p ack -e 40 -c 0 -i 5924 -a 0 -x {10.0 9.0 2957 ------- null} r -t 3.35677 -s 0 -d 9 -p ack -e 40 -c 0 -i 5916 -a 0 -x {10.0 9.0 2953 ------- null} + -t 3.35677 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5927 -a 0 -x {9.0 10.0 2968 ------- null} - -t 3.35677 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5927 -a 0 -x {9.0 10.0 2968 ------- null} h -t 3.35677 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5927 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.3569 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5913 -a 0 -x {9.0 10.0 2961 ------- null} - -t 3.3569 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5913 -a 0 -x {9.0 10.0 2961 ------- null} h -t 3.3569 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5913 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.3569 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5923 -a 0 -x {9.0 10.0 2966 ------- null} + -t 3.3569 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5923 -a 0 -x {9.0 10.0 2966 ------- null} h -t 3.3569 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5923 -a 0 -x {9.0 10.0 2966 ------- null} + -t 3.35717 -s 0 -d 9 -p ack -e 40 -c 0 -i 5920 -a 0 -x {10.0 9.0 2955 ------- null} - -t 3.35717 -s 0 -d 9 -p ack -e 40 -c 0 -i 5920 -a 0 -x {10.0 9.0 2955 ------- null} h -t 3.35717 -s 0 -d 9 -p ack -e 40 -c 0 -i 5920 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.35725 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5909 -a 0 -x {9.0 10.0 2959 ------- null} + -t 3.35725 -s 10 -d 7 -p ack -e 40 -c 0 -i 5928 -a 0 -x {10.0 9.0 2959 ------- null} - -t 3.35725 -s 10 -d 7 -p ack -e 40 -c 0 -i 5928 -a 0 -x {10.0 9.0 2959 ------- null} h -t 3.35725 -s 10 -d 7 -p ack -e 40 -c 0 -i 5928 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.35794 -s 10 -d 7 -p ack -e 40 -c 0 -i 5926 -a 0 -x {10.0 9.0 2958 ------- null} + -t 3.35794 -s 7 -d 0 -p ack -e 40 -c 0 -i 5926 -a 0 -x {10.0 9.0 2958 ------- null} h -t 3.35794 -s 7 -d 8 -p ack -e 40 -c 0 -i 5926 -a 0 -x {10.0 9.0 2958 ------- null} r -t 3.35808 -s 0 -d 9 -p ack -e 40 -c 0 -i 5918 -a 0 -x {10.0 9.0 2954 ------- null} + -t 3.35808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5929 -a 0 -x {9.0 10.0 2969 ------- null} - -t 3.35808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5929 -a 0 -x {9.0 10.0 2969 ------- null} h -t 3.35808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5929 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.35822 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5915 -a 0 -x {9.0 10.0 2962 ------- null} - -t 3.35822 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5915 -a 0 -x {9.0 10.0 2962 ------- null} h -t 3.35822 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5915 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.35822 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5925 -a 0 -x {9.0 10.0 2967 ------- null} + -t 3.35822 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5925 -a 0 -x {9.0 10.0 2967 ------- null} h -t 3.35822 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5925 -a 0 -x {9.0 10.0 2967 ------- null} + -t 3.3584 -s 0 -d 9 -p ack -e 40 -c 0 -i 5922 -a 0 -x {10.0 9.0 2956 ------- null} - -t 3.3584 -s 0 -d 9 -p ack -e 40 -c 0 -i 5922 -a 0 -x {10.0 9.0 2956 ------- null} h -t 3.3584 -s 0 -d 9 -p ack -e 40 -c 0 -i 5922 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.35861 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5911 -a 0 -x {9.0 10.0 2960 ------- null} + -t 3.35861 -s 10 -d 7 -p ack -e 40 -c 0 -i 5930 -a 0 -x {10.0 9.0 2960 ------- null} - -t 3.35861 -s 10 -d 7 -p ack -e 40 -c 0 -i 5930 -a 0 -x {10.0 9.0 2960 ------- null} h -t 3.35861 -s 10 -d 7 -p ack -e 40 -c 0 -i 5930 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.3592 -s 0 -d 9 -p ack -e 40 -c 0 -i 5920 -a 0 -x {10.0 9.0 2955 ------- null} + -t 3.3592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5931 -a 0 -x {9.0 10.0 2970 ------- null} - -t 3.3592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5931 -a 0 -x {9.0 10.0 2970 ------- null} h -t 3.3592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5931 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.35928 -s 10 -d 7 -p ack -e 40 -c 0 -i 5928 -a 0 -x {10.0 9.0 2959 ------- null} + -t 3.35928 -s 7 -d 0 -p ack -e 40 -c 0 -i 5928 -a 0 -x {10.0 9.0 2959 ------- null} h -t 3.35928 -s 7 -d 8 -p ack -e 40 -c 0 -i 5928 -a 0 -x {10.0 9.0 2959 ------- null} + -t 3.35931 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5917 -a 0 -x {9.0 10.0 2963 ------- null} - -t 3.35931 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5917 -a 0 -x {9.0 10.0 2963 ------- null} h -t 3.35931 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5917 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.35946 -s 0 -d 9 -p ack -e 40 -c 0 -i 5924 -a 0 -x {10.0 9.0 2957 ------- null} - -t 3.35946 -s 0 -d 9 -p ack -e 40 -c 0 -i 5924 -a 0 -x {10.0 9.0 2957 ------- null} h -t 3.35946 -s 0 -d 9 -p ack -e 40 -c 0 -i 5924 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.35957 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5927 -a 0 -x {9.0 10.0 2968 ------- null} + -t 3.35957 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5927 -a 0 -x {9.0 10.0 2968 ------- null} h -t 3.35957 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5927 -a 0 -x {9.0 10.0 2968 ------- null} r -t 3.3597 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5913 -a 0 -x {9.0 10.0 2961 ------- null} + -t 3.3597 -s 10 -d 7 -p ack -e 40 -c 0 -i 5932 -a 0 -x {10.0 9.0 2961 ------- null} - -t 3.3597 -s 10 -d 7 -p ack -e 40 -c 0 -i 5932 -a 0 -x {10.0 9.0 2961 ------- null} h -t 3.3597 -s 10 -d 7 -p ack -e 40 -c 0 -i 5932 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.3604 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5919 -a 0 -x {9.0 10.0 2964 ------- null} - -t 3.3604 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5919 -a 0 -x {9.0 10.0 2964 ------- null} h -t 3.3604 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5919 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.36043 -s 0 -d 9 -p ack -e 40 -c 0 -i 5922 -a 0 -x {10.0 9.0 2956 ------- null} + -t 3.36043 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5933 -a 0 -x {9.0 10.0 2971 ------- null} - -t 3.36043 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5933 -a 0 -x {9.0 10.0 2971 ------- null} h -t 3.36043 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5933 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.36061 -s 0 -d 9 -p ack -e 40 -c 0 -i 5926 -a 0 -x {10.0 9.0 2958 ------- null} - -t 3.36061 -s 0 -d 9 -p ack -e 40 -c 0 -i 5926 -a 0 -x {10.0 9.0 2958 ------- null} h -t 3.36061 -s 0 -d 9 -p ack -e 40 -c 0 -i 5926 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.36064 -s 10 -d 7 -p ack -e 40 -c 0 -i 5930 -a 0 -x {10.0 9.0 2960 ------- null} + -t 3.36064 -s 7 -d 0 -p ack -e 40 -c 0 -i 5930 -a 0 -x {10.0 9.0 2960 ------- null} h -t 3.36064 -s 7 -d 8 -p ack -e 40 -c 0 -i 5930 -a 0 -x {10.0 9.0 2960 ------- null} r -t 3.36088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5929 -a 0 -x {9.0 10.0 2969 ------- null} + -t 3.36088 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5929 -a 0 -x {9.0 10.0 2969 ------- null} h -t 3.36088 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5929 -a 0 -x {9.0 10.0 2969 ------- null} r -t 3.36102 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5915 -a 0 -x {9.0 10.0 2962 ------- null} + -t 3.36102 -s 10 -d 7 -p ack -e 40 -c 0 -i 5934 -a 0 -x {10.0 9.0 2962 ------- null} - -t 3.36102 -s 10 -d 7 -p ack -e 40 -c 0 -i 5934 -a 0 -x {10.0 9.0 2962 ------- null} h -t 3.36102 -s 10 -d 7 -p ack -e 40 -c 0 -i 5934 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.36149 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5921 -a 0 -x {9.0 10.0 2965 ------- null} - -t 3.36149 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5921 -a 0 -x {9.0 10.0 2965 ------- null} h -t 3.36149 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5921 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.36149 -s 0 -d 9 -p ack -e 40 -c 0 -i 5924 -a 0 -x {10.0 9.0 2957 ------- null} + -t 3.36149 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5935 -a 0 -x {9.0 10.0 2972 ------- null} - -t 3.36149 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5935 -a 0 -x {9.0 10.0 2972 ------- null} h -t 3.36149 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5935 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.36173 -s 10 -d 7 -p ack -e 40 -c 0 -i 5932 -a 0 -x {10.0 9.0 2961 ------- null} + -t 3.36173 -s 7 -d 0 -p ack -e 40 -c 0 -i 5932 -a 0 -x {10.0 9.0 2961 ------- null} h -t 3.36173 -s 7 -d 8 -p ack -e 40 -c 0 -i 5932 -a 0 -x {10.0 9.0 2961 ------- null} + -t 3.36179 -s 0 -d 9 -p ack -e 40 -c 0 -i 5928 -a 0 -x {10.0 9.0 2959 ------- null} - -t 3.36179 -s 0 -d 9 -p ack -e 40 -c 0 -i 5928 -a 0 -x {10.0 9.0 2959 ------- null} h -t 3.36179 -s 0 -d 9 -p ack -e 40 -c 0 -i 5928 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.362 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5931 -a 0 -x {9.0 10.0 2970 ------- null} + -t 3.362 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5931 -a 0 -x {9.0 10.0 2970 ------- null} h -t 3.362 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5931 -a 0 -x {9.0 10.0 2970 ------- null} r -t 3.36211 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5917 -a 0 -x {9.0 10.0 2963 ------- null} + -t 3.36211 -s 10 -d 7 -p ack -e 40 -c 0 -i 5936 -a 0 -x {10.0 9.0 2963 ------- null} - -t 3.36211 -s 10 -d 7 -p ack -e 40 -c 0 -i 5936 -a 0 -x {10.0 9.0 2963 ------- null} h -t 3.36211 -s 10 -d 7 -p ack -e 40 -c 0 -i 5936 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.36264 -s 0 -d 9 -p ack -e 40 -c 0 -i 5926 -a 0 -x {10.0 9.0 2958 ------- null} + -t 3.36264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5937 -a 0 -x {9.0 10.0 2973 ------- null} - -t 3.36264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5937 -a 0 -x {9.0 10.0 2973 ------- null} h -t 3.36264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5937 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.36286 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5923 -a 0 -x {9.0 10.0 2966 ------- null} - -t 3.36286 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5923 -a 0 -x {9.0 10.0 2966 ------- null} h -t 3.36286 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5923 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.36306 -s 10 -d 7 -p ack -e 40 -c 0 -i 5934 -a 0 -x {10.0 9.0 2962 ------- null} + -t 3.36306 -s 7 -d 0 -p ack -e 40 -c 0 -i 5934 -a 0 -x {10.0 9.0 2962 ------- null} h -t 3.36306 -s 7 -d 8 -p ack -e 40 -c 0 -i 5934 -a 0 -x {10.0 9.0 2962 ------- null} + -t 3.36317 -s 0 -d 9 -p ack -e 40 -c 0 -i 5930 -a 0 -x {10.0 9.0 2960 ------- null} - -t 3.36317 -s 0 -d 9 -p ack -e 40 -c 0 -i 5930 -a 0 -x {10.0 9.0 2960 ------- null} h -t 3.36317 -s 0 -d 9 -p ack -e 40 -c 0 -i 5930 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.3632 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5919 -a 0 -x {9.0 10.0 2964 ------- null} + -t 3.3632 -s 10 -d 7 -p ack -e 40 -c 0 -i 5938 -a 0 -x {10.0 9.0 2964 ------- null} - -t 3.3632 -s 10 -d 7 -p ack -e 40 -c 0 -i 5938 -a 0 -x {10.0 9.0 2964 ------- null} h -t 3.3632 -s 10 -d 7 -p ack -e 40 -c 0 -i 5938 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.36323 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5933 -a 0 -x {9.0 10.0 2971 ------- null} + -t 3.36323 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5933 -a 0 -x {9.0 10.0 2971 ------- null} h -t 3.36323 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5933 -a 0 -x {9.0 10.0 2971 ------- null} r -t 3.36382 -s 0 -d 9 -p ack -e 40 -c 0 -i 5928 -a 0 -x {10.0 9.0 2959 ------- null} + -t 3.36382 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5939 -a 0 -x {9.0 10.0 2974 ------- null} - -t 3.36382 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5939 -a 0 -x {9.0 10.0 2974 ------- null} h -t 3.36382 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5939 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.36406 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5925 -a 0 -x {9.0 10.0 2967 ------- null} - -t 3.36406 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5925 -a 0 -x {9.0 10.0 2967 ------- null} h -t 3.36406 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5925 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.36414 -s 10 -d 7 -p ack -e 40 -c 0 -i 5936 -a 0 -x {10.0 9.0 2963 ------- null} + -t 3.36414 -s 7 -d 0 -p ack -e 40 -c 0 -i 5936 -a 0 -x {10.0 9.0 2963 ------- null} h -t 3.36414 -s 7 -d 8 -p ack -e 40 -c 0 -i 5936 -a 0 -x {10.0 9.0 2963 ------- null} r -t 3.36429 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5921 -a 0 -x {9.0 10.0 2965 ------- null} + -t 3.36429 -s 10 -d 7 -p ack -e 40 -c 0 -i 5940 -a 0 -x {10.0 9.0 2965 ------- null} - -t 3.36429 -s 10 -d 7 -p ack -e 40 -c 0 -i 5940 -a 0 -x {10.0 9.0 2965 ------- null} h -t 3.36429 -s 10 -d 7 -p ack -e 40 -c 0 -i 5940 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.36429 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5935 -a 0 -x {9.0 10.0 2972 ------- null} + -t 3.36429 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5935 -a 0 -x {9.0 10.0 2972 ------- null} h -t 3.36429 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5935 -a 0 -x {9.0 10.0 2972 ------- null} + -t 3.36432 -s 0 -d 9 -p ack -e 40 -c 0 -i 5932 -a 0 -x {10.0 9.0 2961 ------- null} - -t 3.36432 -s 0 -d 9 -p ack -e 40 -c 0 -i 5932 -a 0 -x {10.0 9.0 2961 ------- null} h -t 3.36432 -s 0 -d 9 -p ack -e 40 -c 0 -i 5932 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.3652 -s 0 -d 9 -p ack -e 40 -c 0 -i 5930 -a 0 -x {10.0 9.0 2960 ------- null} + -t 3.3652 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5941 -a 0 -x {9.0 10.0 2975 ------- null} - -t 3.3652 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5941 -a 0 -x {9.0 10.0 2975 ------- null} h -t 3.3652 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5941 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.36523 -s 10 -d 7 -p ack -e 40 -c 0 -i 5938 -a 0 -x {10.0 9.0 2964 ------- null} + -t 3.36523 -s 7 -d 0 -p ack -e 40 -c 0 -i 5938 -a 0 -x {10.0 9.0 2964 ------- null} h -t 3.36523 -s 7 -d 8 -p ack -e 40 -c 0 -i 5938 -a 0 -x {10.0 9.0 2964 ------- null} + -t 3.36539 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5927 -a 0 -x {9.0 10.0 2968 ------- null} - -t 3.36539 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5927 -a 0 -x {9.0 10.0 2968 ------- null} h -t 3.36539 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5927 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.36544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5937 -a 0 -x {9.0 10.0 2973 ------- null} + -t 3.36544 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5937 -a 0 -x {9.0 10.0 2973 ------- null} h -t 3.36544 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5937 -a 0 -x {9.0 10.0 2973 ------- null} r -t 3.36566 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5923 -a 0 -x {9.0 10.0 2966 ------- null} + -t 3.36566 -s 10 -d 7 -p ack -e 40 -c 0 -i 5942 -a 0 -x {10.0 9.0 2966 ------- null} - -t 3.36566 -s 10 -d 7 -p ack -e 40 -c 0 -i 5942 -a 0 -x {10.0 9.0 2966 ------- null} h -t 3.36566 -s 10 -d 7 -p ack -e 40 -c 0 -i 5942 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.36566 -s 0 -d 9 -p ack -e 40 -c 0 -i 5934 -a 0 -x {10.0 9.0 2962 ------- null} - -t 3.36566 -s 0 -d 9 -p ack -e 40 -c 0 -i 5934 -a 0 -x {10.0 9.0 2962 ------- null} h -t 3.36566 -s 0 -d 9 -p ack -e 40 -c 0 -i 5934 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.36632 -s 10 -d 7 -p ack -e 40 -c 0 -i 5940 -a 0 -x {10.0 9.0 2965 ------- null} + -t 3.36632 -s 7 -d 0 -p ack -e 40 -c 0 -i 5940 -a 0 -x {10.0 9.0 2965 ------- null} h -t 3.36632 -s 7 -d 8 -p ack -e 40 -c 0 -i 5940 -a 0 -x {10.0 9.0 2965 ------- null} r -t 3.36635 -s 0 -d 9 -p ack -e 40 -c 0 -i 5932 -a 0 -x {10.0 9.0 2961 ------- null} + -t 3.36635 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5943 -a 0 -x {9.0 10.0 2976 ------- null} - -t 3.36635 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5943 -a 0 -x {9.0 10.0 2976 ------- null} h -t 3.36635 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5943 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.36662 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5939 -a 0 -x {9.0 10.0 2974 ------- null} + -t 3.36662 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5939 -a 0 -x {9.0 10.0 2974 ------- null} h -t 3.36662 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5939 -a 0 -x {9.0 10.0 2974 ------- null} + -t 3.36662 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5929 -a 0 -x {9.0 10.0 2969 ------- null} - -t 3.36662 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5929 -a 0 -x {9.0 10.0 2969 ------- null} h -t 3.36662 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5929 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.36669 -s 0 -d 9 -p ack -e 40 -c 0 -i 5936 -a 0 -x {10.0 9.0 2963 ------- null} - -t 3.36669 -s 0 -d 9 -p ack -e 40 -c 0 -i 5936 -a 0 -x {10.0 9.0 2963 ------- null} h -t 3.36669 -s 0 -d 9 -p ack -e 40 -c 0 -i 5936 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.36686 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5925 -a 0 -x {9.0 10.0 2967 ------- null} + -t 3.36686 -s 10 -d 7 -p ack -e 40 -c 0 -i 5944 -a 0 -x {10.0 9.0 2967 ------- null} - -t 3.36686 -s 10 -d 7 -p ack -e 40 -c 0 -i 5944 -a 0 -x {10.0 9.0 2967 ------- null} h -t 3.36686 -s 10 -d 7 -p ack -e 40 -c 0 -i 5944 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.3677 -s 10 -d 7 -p ack -e 40 -c 0 -i 5942 -a 0 -x {10.0 9.0 2966 ------- null} + -t 3.3677 -s 7 -d 0 -p ack -e 40 -c 0 -i 5942 -a 0 -x {10.0 9.0 2966 ------- null} h -t 3.3677 -s 7 -d 8 -p ack -e 40 -c 0 -i 5942 -a 0 -x {10.0 9.0 2966 ------- null} r -t 3.3677 -s 0 -d 9 -p ack -e 40 -c 0 -i 5934 -a 0 -x {10.0 9.0 2962 ------- null} + -t 3.3677 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5945 -a 0 -x {9.0 10.0 2977 ------- null} - -t 3.3677 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5945 -a 0 -x {9.0 10.0 2977 ------- null} h -t 3.3677 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5945 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.36771 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5931 -a 0 -x {9.0 10.0 2970 ------- null} - -t 3.36771 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5931 -a 0 -x {9.0 10.0 2970 ------- null} h -t 3.36771 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5931 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5941 -a 0 -x {9.0 10.0 2975 ------- null} + -t 3.368 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5941 -a 0 -x {9.0 10.0 2975 ------- null} h -t 3.368 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5941 -a 0 -x {9.0 10.0 2975 ------- null} + -t 3.36802 -s 0 -d 9 -p ack -e 40 -c 0 -i 5938 -a 0 -x {10.0 9.0 2964 ------- null} - -t 3.36802 -s 0 -d 9 -p ack -e 40 -c 0 -i 5938 -a 0 -x {10.0 9.0 2964 ------- null} h -t 3.36802 -s 0 -d 9 -p ack -e 40 -c 0 -i 5938 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.36819 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5927 -a 0 -x {9.0 10.0 2968 ------- null} + -t 3.36819 -s 10 -d 7 -p ack -e 40 -c 0 -i 5946 -a 0 -x {10.0 9.0 2968 ------- null} - -t 3.36819 -s 10 -d 7 -p ack -e 40 -c 0 -i 5946 -a 0 -x {10.0 9.0 2968 ------- null} h -t 3.36819 -s 10 -d 7 -p ack -e 40 -c 0 -i 5946 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.36872 -s 0 -d 9 -p ack -e 40 -c 0 -i 5936 -a 0 -x {10.0 9.0 2963 ------- null} + -t 3.36872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5947 -a 0 -x {9.0 10.0 2978 ------- null} - -t 3.36872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5947 -a 0 -x {9.0 10.0 2978 ------- null} h -t 3.36872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5947 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.36885 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5933 -a 0 -x {9.0 10.0 2971 ------- null} - -t 3.36885 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5933 -a 0 -x {9.0 10.0 2971 ------- null} h -t 3.36885 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5933 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.3689 -s 10 -d 7 -p ack -e 40 -c 0 -i 5944 -a 0 -x {10.0 9.0 2967 ------- null} + -t 3.3689 -s 7 -d 0 -p ack -e 40 -c 0 -i 5944 -a 0 -x {10.0 9.0 2967 ------- null} h -t 3.3689 -s 7 -d 8 -p ack -e 40 -c 0 -i 5944 -a 0 -x {10.0 9.0 2967 ------- null} + -t 3.36891 -s 0 -d 9 -p ack -e 40 -c 0 -i 5940 -a 0 -x {10.0 9.0 2965 ------- null} - -t 3.36891 -s 0 -d 9 -p ack -e 40 -c 0 -i 5940 -a 0 -x {10.0 9.0 2965 ------- null} h -t 3.36891 -s 0 -d 9 -p ack -e 40 -c 0 -i 5940 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.36915 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5943 -a 0 -x {9.0 10.0 2976 ------- null} + -t 3.36915 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5943 -a 0 -x {9.0 10.0 2976 ------- null} h -t 3.36915 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5943 -a 0 -x {9.0 10.0 2976 ------- null} r -t 3.36942 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5929 -a 0 -x {9.0 10.0 2969 ------- null} + -t 3.36942 -s 10 -d 7 -p ack -e 40 -c 0 -i 5948 -a 0 -x {10.0 9.0 2969 ------- null} - -t 3.36942 -s 10 -d 7 -p ack -e 40 -c 0 -i 5948 -a 0 -x {10.0 9.0 2969 ------- null} h -t 3.36942 -s 10 -d 7 -p ack -e 40 -c 0 -i 5948 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.36994 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5935 -a 0 -x {9.0 10.0 2972 ------- null} - -t 3.36994 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5935 -a 0 -x {9.0 10.0 2972 ------- null} h -t 3.36994 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5935 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.37005 -s 0 -d 9 -p ack -e 40 -c 0 -i 5938 -a 0 -x {10.0 9.0 2964 ------- null} + -t 3.37005 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5949 -a 0 -x {9.0 10.0 2979 ------- null} - -t 3.37005 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5949 -a 0 -x {9.0 10.0 2979 ------- null} h -t 3.37005 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5949 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.37016 -s 0 -d 9 -p ack -e 40 -c 0 -i 5942 -a 0 -x {10.0 9.0 2966 ------- null} - -t 3.37016 -s 0 -d 9 -p ack -e 40 -c 0 -i 5942 -a 0 -x {10.0 9.0 2966 ------- null} h -t 3.37016 -s 0 -d 9 -p ack -e 40 -c 0 -i 5942 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.37022 -s 10 -d 7 -p ack -e 40 -c 0 -i 5946 -a 0 -x {10.0 9.0 2968 ------- null} + -t 3.37022 -s 7 -d 0 -p ack -e 40 -c 0 -i 5946 -a 0 -x {10.0 9.0 2968 ------- null} h -t 3.37022 -s 7 -d 8 -p ack -e 40 -c 0 -i 5946 -a 0 -x {10.0 9.0 2968 ------- null} r -t 3.3705 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5945 -a 0 -x {9.0 10.0 2977 ------- null} + -t 3.3705 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5945 -a 0 -x {9.0 10.0 2977 ------- null} h -t 3.3705 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5945 -a 0 -x {9.0 10.0 2977 ------- null} r -t 3.37051 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5931 -a 0 -x {9.0 10.0 2970 ------- null} + -t 3.37051 -s 10 -d 7 -p ack -e 40 -c 0 -i 5950 -a 0 -x {10.0 9.0 2970 ------- null} - -t 3.37051 -s 10 -d 7 -p ack -e 40 -c 0 -i 5950 -a 0 -x {10.0 9.0 2970 ------- null} h -t 3.37051 -s 10 -d 7 -p ack -e 40 -c 0 -i 5950 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.37094 -s 0 -d 9 -p ack -e 40 -c 0 -i 5940 -a 0 -x {10.0 9.0 2965 ------- null} + -t 3.37094 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5951 -a 0 -x {9.0 10.0 2980 ------- null} - -t 3.37094 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5951 -a 0 -x {9.0 10.0 2980 ------- null} h -t 3.37094 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5951 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.37102 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5937 -a 0 -x {9.0 10.0 2973 ------- null} - -t 3.37102 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5937 -a 0 -x {9.0 10.0 2973 ------- null} h -t 3.37102 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5937 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.37118 -s 0 -d 9 -p ack -e 40 -c 0 -i 5944 -a 0 -x {10.0 9.0 2967 ------- null} - -t 3.37118 -s 0 -d 9 -p ack -e 40 -c 0 -i 5944 -a 0 -x {10.0 9.0 2967 ------- null} h -t 3.37118 -s 0 -d 9 -p ack -e 40 -c 0 -i 5944 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.37146 -s 10 -d 7 -p ack -e 40 -c 0 -i 5948 -a 0 -x {10.0 9.0 2969 ------- null} + -t 3.37146 -s 7 -d 0 -p ack -e 40 -c 0 -i 5948 -a 0 -x {10.0 9.0 2969 ------- null} h -t 3.37146 -s 7 -d 8 -p ack -e 40 -c 0 -i 5948 -a 0 -x {10.0 9.0 2969 ------- null} r -t 3.37152 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5947 -a 0 -x {9.0 10.0 2978 ------- null} + -t 3.37152 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5947 -a 0 -x {9.0 10.0 2978 ------- null} h -t 3.37152 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5947 -a 0 -x {9.0 10.0 2978 ------- null} r -t 3.37165 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5933 -a 0 -x {9.0 10.0 2971 ------- null} + -t 3.37165 -s 10 -d 7 -p ack -e 40 -c 0 -i 5952 -a 0 -x {10.0 9.0 2971 ------- null} - -t 3.37165 -s 10 -d 7 -p ack -e 40 -c 0 -i 5952 -a 0 -x {10.0 9.0 2971 ------- null} h -t 3.37165 -s 10 -d 7 -p ack -e 40 -c 0 -i 5952 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.37211 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5939 -a 0 -x {9.0 10.0 2974 ------- null} - -t 3.37211 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5939 -a 0 -x {9.0 10.0 2974 ------- null} h -t 3.37211 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5939 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.37219 -s 0 -d 9 -p ack -e 40 -c 0 -i 5942 -a 0 -x {10.0 9.0 2966 ------- null} + -t 3.37219 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5953 -a 0 -x {9.0 10.0 2981 ------- null} - -t 3.37219 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5953 -a 0 -x {9.0 10.0 2981 ------- null} h -t 3.37219 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5953 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.37232 -s 0 -d 9 -p ack -e 40 -c 0 -i 5946 -a 0 -x {10.0 9.0 2968 ------- null} - -t 3.37232 -s 0 -d 9 -p ack -e 40 -c 0 -i 5946 -a 0 -x {10.0 9.0 2968 ------- null} h -t 3.37232 -s 0 -d 9 -p ack -e 40 -c 0 -i 5946 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.37254 -s 10 -d 7 -p ack -e 40 -c 0 -i 5950 -a 0 -x {10.0 9.0 2970 ------- null} + -t 3.37254 -s 7 -d 0 -p ack -e 40 -c 0 -i 5950 -a 0 -x {10.0 9.0 2970 ------- null} h -t 3.37254 -s 7 -d 8 -p ack -e 40 -c 0 -i 5950 -a 0 -x {10.0 9.0 2970 ------- null} r -t 3.37274 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5935 -a 0 -x {9.0 10.0 2972 ------- null} + -t 3.37274 -s 10 -d 7 -p ack -e 40 -c 0 -i 5954 -a 0 -x {10.0 9.0 2972 ------- null} - -t 3.37274 -s 10 -d 7 -p ack -e 40 -c 0 -i 5954 -a 0 -x {10.0 9.0 2972 ------- null} h -t 3.37274 -s 10 -d 7 -p ack -e 40 -c 0 -i 5954 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.37285 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5949 -a 0 -x {9.0 10.0 2979 ------- null} + -t 3.37285 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5949 -a 0 -x {9.0 10.0 2979 ------- null} h -t 3.37285 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5949 -a 0 -x {9.0 10.0 2979 ------- null} + -t 3.3732 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5941 -a 0 -x {9.0 10.0 2975 ------- null} - -t 3.3732 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5941 -a 0 -x {9.0 10.0 2975 ------- null} h -t 3.3732 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5941 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.37322 -s 0 -d 9 -p ack -e 40 -c 0 -i 5944 -a 0 -x {10.0 9.0 2967 ------- null} + -t 3.37322 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5955 -a 0 -x {9.0 10.0 2982 ------- null} - -t 3.37322 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5955 -a 0 -x {9.0 10.0 2982 ------- null} h -t 3.37322 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5955 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.37347 -s 0 -d 9 -p ack -e 40 -c 0 -i 5948 -a 0 -x {10.0 9.0 2969 ------- null} - -t 3.37347 -s 0 -d 9 -p ack -e 40 -c 0 -i 5948 -a 0 -x {10.0 9.0 2969 ------- null} h -t 3.37347 -s 0 -d 9 -p ack -e 40 -c 0 -i 5948 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.37368 -s 10 -d 7 -p ack -e 40 -c 0 -i 5952 -a 0 -x {10.0 9.0 2971 ------- null} + -t 3.37368 -s 7 -d 0 -p ack -e 40 -c 0 -i 5952 -a 0 -x {10.0 9.0 2971 ------- null} h -t 3.37368 -s 7 -d 8 -p ack -e 40 -c 0 -i 5952 -a 0 -x {10.0 9.0 2971 ------- null} r -t 3.37374 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5951 -a 0 -x {9.0 10.0 2980 ------- null} + -t 3.37374 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5951 -a 0 -x {9.0 10.0 2980 ------- null} h -t 3.37374 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5951 -a 0 -x {9.0 10.0 2980 ------- null} r -t 3.37382 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5937 -a 0 -x {9.0 10.0 2973 ------- null} + -t 3.37382 -s 10 -d 7 -p ack -e 40 -c 0 -i 5956 -a 0 -x {10.0 9.0 2973 ------- null} - -t 3.37382 -s 10 -d 7 -p ack -e 40 -c 0 -i 5956 -a 0 -x {10.0 9.0 2973 ------- null} h -t 3.37382 -s 10 -d 7 -p ack -e 40 -c 0 -i 5956 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.37435 -s 0 -d 9 -p ack -e 40 -c 0 -i 5946 -a 0 -x {10.0 9.0 2968 ------- null} + -t 3.37435 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5957 -a 0 -x {9.0 10.0 2983 ------- null} - -t 3.37435 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5957 -a 0 -x {9.0 10.0 2983 ------- null} h -t 3.37435 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5957 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.3744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5943 -a 0 -x {9.0 10.0 2976 ------- null} - -t 3.3744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5943 -a 0 -x {9.0 10.0 2976 ------- null} h -t 3.3744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5943 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.37458 -s 0 -d 9 -p ack -e 40 -c 0 -i 5950 -a 0 -x {10.0 9.0 2970 ------- null} - -t 3.37458 -s 0 -d 9 -p ack -e 40 -c 0 -i 5950 -a 0 -x {10.0 9.0 2970 ------- null} h -t 3.37458 -s 0 -d 9 -p ack -e 40 -c 0 -i 5950 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.37477 -s 10 -d 7 -p ack -e 40 -c 0 -i 5954 -a 0 -x {10.0 9.0 2972 ------- null} + -t 3.37477 -s 7 -d 0 -p ack -e 40 -c 0 -i 5954 -a 0 -x {10.0 9.0 2972 ------- null} h -t 3.37477 -s 7 -d 8 -p ack -e 40 -c 0 -i 5954 -a 0 -x {10.0 9.0 2972 ------- null} r -t 3.37491 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5939 -a 0 -x {9.0 10.0 2974 ------- null} + -t 3.37491 -s 10 -d 7 -p ack -e 40 -c 0 -i 5958 -a 0 -x {10.0 9.0 2974 ------- null} - -t 3.37491 -s 10 -d 7 -p ack -e 40 -c 0 -i 5958 -a 0 -x {10.0 9.0 2974 ------- null} h -t 3.37491 -s 10 -d 7 -p ack -e 40 -c 0 -i 5958 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.37499 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5953 -a 0 -x {9.0 10.0 2981 ------- null} + -t 3.37499 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5953 -a 0 -x {9.0 10.0 2981 ------- null} h -t 3.37499 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5953 -a 0 -x {9.0 10.0 2981 ------- null} + -t 3.37549 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5945 -a 0 -x {9.0 10.0 2977 ------- null} - -t 3.37549 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5945 -a 0 -x {9.0 10.0 2977 ------- null} h -t 3.37549 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5945 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.3755 -s 0 -d 9 -p ack -e 40 -c 0 -i 5948 -a 0 -x {10.0 9.0 2969 ------- null} + -t 3.3755 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5959 -a 0 -x {9.0 10.0 2984 ------- null} - -t 3.3755 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5959 -a 0 -x {9.0 10.0 2984 ------- null} h -t 3.3755 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5959 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.37579 -s 0 -d 9 -p ack -e 40 -c 0 -i 5952 -a 0 -x {10.0 9.0 2971 ------- null} - -t 3.37579 -s 0 -d 9 -p ack -e 40 -c 0 -i 5952 -a 0 -x {10.0 9.0 2971 ------- null} h -t 3.37579 -s 0 -d 9 -p ack -e 40 -c 0 -i 5952 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.37586 -s 10 -d 7 -p ack -e 40 -c 0 -i 5956 -a 0 -x {10.0 9.0 2973 ------- null} + -t 3.37586 -s 7 -d 0 -p ack -e 40 -c 0 -i 5956 -a 0 -x {10.0 9.0 2973 ------- null} h -t 3.37586 -s 7 -d 8 -p ack -e 40 -c 0 -i 5956 -a 0 -x {10.0 9.0 2973 ------- null} r -t 3.376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5941 -a 0 -x {9.0 10.0 2975 ------- null} + -t 3.376 -s 10 -d 7 -p ack -e 40 -c 0 -i 5960 -a 0 -x {10.0 9.0 2975 ------- null} - -t 3.376 -s 10 -d 7 -p ack -e 40 -c 0 -i 5960 -a 0 -x {10.0 9.0 2975 ------- null} h -t 3.376 -s 10 -d 7 -p ack -e 40 -c 0 -i 5960 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.37602 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5955 -a 0 -x {9.0 10.0 2982 ------- null} + -t 3.37602 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5955 -a 0 -x {9.0 10.0 2982 ------- null} h -t 3.37602 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5955 -a 0 -x {9.0 10.0 2982 ------- null} r -t 3.37661 -s 0 -d 9 -p ack -e 40 -c 0 -i 5950 -a 0 -x {10.0 9.0 2970 ------- null} + -t 3.37661 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5961 -a 0 -x {9.0 10.0 2985 ------- null} - -t 3.37661 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5961 -a 0 -x {9.0 10.0 2985 ------- null} h -t 3.37661 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5961 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.37675 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5947 -a 0 -x {9.0 10.0 2978 ------- null} - -t 3.37675 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5947 -a 0 -x {9.0 10.0 2978 ------- null} h -t 3.37675 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5947 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.37694 -s 10 -d 7 -p ack -e 40 -c 0 -i 5958 -a 0 -x {10.0 9.0 2974 ------- null} + -t 3.37694 -s 7 -d 0 -p ack -e 40 -c 0 -i 5958 -a 0 -x {10.0 9.0 2974 ------- null} h -t 3.37694 -s 7 -d 8 -p ack -e 40 -c 0 -i 5958 -a 0 -x {10.0 9.0 2974 ------- null} + -t 3.37699 -s 0 -d 9 -p ack -e 40 -c 0 -i 5954 -a 0 -x {10.0 9.0 2972 ------- null} - -t 3.37699 -s 0 -d 9 -p ack -e 40 -c 0 -i 5954 -a 0 -x {10.0 9.0 2972 ------- null} h -t 3.37699 -s 0 -d 9 -p ack -e 40 -c 0 -i 5954 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.37715 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5957 -a 0 -x {9.0 10.0 2983 ------- null} + -t 3.37715 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5957 -a 0 -x {9.0 10.0 2983 ------- null} h -t 3.37715 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5957 -a 0 -x {9.0 10.0 2983 ------- null} r -t 3.3772 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5943 -a 0 -x {9.0 10.0 2976 ------- null} + -t 3.3772 -s 10 -d 7 -p ack -e 40 -c 0 -i 5962 -a 0 -x {10.0 9.0 2976 ------- null} - -t 3.3772 -s 10 -d 7 -p ack -e 40 -c 0 -i 5962 -a 0 -x {10.0 9.0 2976 ------- null} h -t 3.3772 -s 10 -d 7 -p ack -e 40 -c 0 -i 5962 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.37782 -s 0 -d 9 -p ack -e 40 -c 0 -i 5952 -a 0 -x {10.0 9.0 2971 ------- null} + -t 3.37782 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5963 -a 0 -x {9.0 10.0 2986 ------- null} - -t 3.37782 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5963 -a 0 -x {9.0 10.0 2986 ------- null} h -t 3.37782 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5963 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.37784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5949 -a 0 -x {9.0 10.0 2979 ------- null} - -t 3.37784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5949 -a 0 -x {9.0 10.0 2979 ------- null} h -t 3.37784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5949 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.3779 -s 0 -d 9 -p ack -e 40 -c 0 -i 5956 -a 0 -x {10.0 9.0 2973 ------- null} - -t 3.3779 -s 0 -d 9 -p ack -e 40 -c 0 -i 5956 -a 0 -x {10.0 9.0 2973 ------- null} h -t 3.3779 -s 0 -d 9 -p ack -e 40 -c 0 -i 5956 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.37803 -s 10 -d 7 -p ack -e 40 -c 0 -i 5960 -a 0 -x {10.0 9.0 2975 ------- null} + -t 3.37803 -s 7 -d 0 -p ack -e 40 -c 0 -i 5960 -a 0 -x {10.0 9.0 2975 ------- null} h -t 3.37803 -s 7 -d 8 -p ack -e 40 -c 0 -i 5960 -a 0 -x {10.0 9.0 2975 ------- null} r -t 3.37829 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5945 -a 0 -x {9.0 10.0 2977 ------- null} + -t 3.37829 -s 10 -d 7 -p ack -e 40 -c 0 -i 5964 -a 0 -x {10.0 9.0 2977 ------- null} - -t 3.37829 -s 10 -d 7 -p ack -e 40 -c 0 -i 5964 -a 0 -x {10.0 9.0 2977 ------- null} h -t 3.37829 -s 10 -d 7 -p ack -e 40 -c 0 -i 5964 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.3783 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5959 -a 0 -x {9.0 10.0 2984 ------- null} + -t 3.3783 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5959 -a 0 -x {9.0 10.0 2984 ------- null} h -t 3.3783 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5959 -a 0 -x {9.0 10.0 2984 ------- null} + -t 3.37893 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5951 -a 0 -x {9.0 10.0 2980 ------- null} - -t 3.37893 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5951 -a 0 -x {9.0 10.0 2980 ------- null} h -t 3.37893 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5951 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.37899 -s 0 -d 9 -p ack -e 40 -c 0 -i 5958 -a 0 -x {10.0 9.0 2974 ------- null} - -t 3.37899 -s 0 -d 9 -p ack -e 40 -c 0 -i 5958 -a 0 -x {10.0 9.0 2974 ------- null} h -t 3.37899 -s 0 -d 9 -p ack -e 40 -c 0 -i 5958 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.37902 -s 0 -d 9 -p ack -e 40 -c 0 -i 5954 -a 0 -x {10.0 9.0 2972 ------- null} + -t 3.37902 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5965 -a 0 -x {9.0 10.0 2987 ------- null} - -t 3.37902 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5965 -a 0 -x {9.0 10.0 2987 ------- null} h -t 3.37902 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5965 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.37923 -s 10 -d 7 -p ack -e 40 -c 0 -i 5962 -a 0 -x {10.0 9.0 2976 ------- null} + -t 3.37923 -s 7 -d 0 -p ack -e 40 -c 0 -i 5962 -a 0 -x {10.0 9.0 2976 ------- null} h -t 3.37923 -s 7 -d 8 -p ack -e 40 -c 0 -i 5962 -a 0 -x {10.0 9.0 2976 ------- null} r -t 3.37941 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5961 -a 0 -x {9.0 10.0 2985 ------- null} + -t 3.37941 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5961 -a 0 -x {9.0 10.0 2985 ------- null} h -t 3.37941 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5961 -a 0 -x {9.0 10.0 2985 ------- null} r -t 3.37955 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5947 -a 0 -x {9.0 10.0 2978 ------- null} + -t 3.37955 -s 10 -d 7 -p ack -e 40 -c 0 -i 5966 -a 0 -x {10.0 9.0 2978 ------- null} - -t 3.37955 -s 10 -d 7 -p ack -e 40 -c 0 -i 5966 -a 0 -x {10.0 9.0 2978 ------- null} h -t 3.37955 -s 10 -d 7 -p ack -e 40 -c 0 -i 5966 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.37994 -s 0 -d 9 -p ack -e 40 -c 0 -i 5956 -a 0 -x {10.0 9.0 2973 ------- null} + -t 3.37994 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5967 -a 0 -x {9.0 10.0 2988 ------- null} - -t 3.37994 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5967 -a 0 -x {9.0 10.0 2988 ------- null} h -t 3.37994 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5967 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.38002 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5953 -a 0 -x {9.0 10.0 2981 ------- null} - -t 3.38002 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5953 -a 0 -x {9.0 10.0 2981 ------- null} h -t 3.38002 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5953 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.38019 -s 0 -d 9 -p ack -e 40 -c 0 -i 5960 -a 0 -x {10.0 9.0 2975 ------- null} - -t 3.38019 -s 0 -d 9 -p ack -e 40 -c 0 -i 5960 -a 0 -x {10.0 9.0 2975 ------- null} h -t 3.38019 -s 0 -d 9 -p ack -e 40 -c 0 -i 5960 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.38032 -s 10 -d 7 -p ack -e 40 -c 0 -i 5964 -a 0 -x {10.0 9.0 2977 ------- null} + -t 3.38032 -s 7 -d 0 -p ack -e 40 -c 0 -i 5964 -a 0 -x {10.0 9.0 2977 ------- null} h -t 3.38032 -s 7 -d 8 -p ack -e 40 -c 0 -i 5964 -a 0 -x {10.0 9.0 2977 ------- null} r -t 3.38062 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5963 -a 0 -x {9.0 10.0 2986 ------- null} + -t 3.38062 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5963 -a 0 -x {9.0 10.0 2986 ------- null} h -t 3.38062 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5963 -a 0 -x {9.0 10.0 2986 ------- null} r -t 3.38064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5949 -a 0 -x {9.0 10.0 2979 ------- null} + -t 3.38064 -s 10 -d 7 -p ack -e 40 -c 0 -i 5968 -a 0 -x {10.0 9.0 2979 ------- null} - -t 3.38064 -s 10 -d 7 -p ack -e 40 -c 0 -i 5968 -a 0 -x {10.0 9.0 2979 ------- null} h -t 3.38064 -s 10 -d 7 -p ack -e 40 -c 0 -i 5968 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.38102 -s 0 -d 9 -p ack -e 40 -c 0 -i 5958 -a 0 -x {10.0 9.0 2974 ------- null} + -t 3.38102 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5969 -a 0 -x {9.0 10.0 2989 ------- null} - -t 3.38102 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5969 -a 0 -x {9.0 10.0 2989 ------- null} h -t 3.38102 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5969 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.3811 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5955 -a 0 -x {9.0 10.0 2982 ------- null} - -t 3.3811 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5955 -a 0 -x {9.0 10.0 2982 ------- null} h -t 3.3811 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5955 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.3813 -s 0 -d 9 -p ack -e 40 -c 0 -i 5962 -a 0 -x {10.0 9.0 2976 ------- null} - -t 3.3813 -s 0 -d 9 -p ack -e 40 -c 0 -i 5962 -a 0 -x {10.0 9.0 2976 ------- null} h -t 3.3813 -s 0 -d 9 -p ack -e 40 -c 0 -i 5962 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.38158 -s 10 -d 7 -p ack -e 40 -c 0 -i 5966 -a 0 -x {10.0 9.0 2978 ------- null} + -t 3.38158 -s 7 -d 0 -p ack -e 40 -c 0 -i 5966 -a 0 -x {10.0 9.0 2978 ------- null} h -t 3.38158 -s 7 -d 8 -p ack -e 40 -c 0 -i 5966 -a 0 -x {10.0 9.0 2978 ------- null} r -t 3.38173 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5951 -a 0 -x {9.0 10.0 2980 ------- null} + -t 3.38173 -s 10 -d 7 -p ack -e 40 -c 0 -i 5970 -a 0 -x {10.0 9.0 2980 ------- null} - -t 3.38173 -s 10 -d 7 -p ack -e 40 -c 0 -i 5970 -a 0 -x {10.0 9.0 2980 ------- null} h -t 3.38173 -s 10 -d 7 -p ack -e 40 -c 0 -i 5970 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.38182 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5965 -a 0 -x {9.0 10.0 2987 ------- null} + -t 3.38182 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5965 -a 0 -x {9.0 10.0 2987 ------- null} h -t 3.38182 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5965 -a 0 -x {9.0 10.0 2987 ------- null} + -t 3.38219 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5957 -a 0 -x {9.0 10.0 2983 ------- null} - -t 3.38219 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5957 -a 0 -x {9.0 10.0 2983 ------- null} h -t 3.38219 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5957 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.38222 -s 0 -d 9 -p ack -e 40 -c 0 -i 5960 -a 0 -x {10.0 9.0 2975 ------- null} + -t 3.38222 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5971 -a 0 -x {9.0 10.0 2990 ------- null} - -t 3.38222 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5971 -a 0 -x {9.0 10.0 2990 ------- null} h -t 3.38222 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5971 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.38243 -s 0 -d 9 -p ack -e 40 -c 0 -i 5964 -a 0 -x {10.0 9.0 2977 ------- null} - -t 3.38243 -s 0 -d 9 -p ack -e 40 -c 0 -i 5964 -a 0 -x {10.0 9.0 2977 ------- null} h -t 3.38243 -s 0 -d 9 -p ack -e 40 -c 0 -i 5964 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.38267 -s 10 -d 7 -p ack -e 40 -c 0 -i 5968 -a 0 -x {10.0 9.0 2979 ------- null} + -t 3.38267 -s 7 -d 0 -p ack -e 40 -c 0 -i 5968 -a 0 -x {10.0 9.0 2979 ------- null} h -t 3.38267 -s 7 -d 8 -p ack -e 40 -c 0 -i 5968 -a 0 -x {10.0 9.0 2979 ------- null} r -t 3.38274 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5967 -a 0 -x {9.0 10.0 2988 ------- null} + -t 3.38274 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5967 -a 0 -x {9.0 10.0 2988 ------- null} h -t 3.38274 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5967 -a 0 -x {9.0 10.0 2988 ------- null} r -t 3.38282 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5953 -a 0 -x {9.0 10.0 2981 ------- null} + -t 3.38282 -s 10 -d 7 -p ack -e 40 -c 0 -i 5972 -a 0 -x {10.0 9.0 2981 ------- null} - -t 3.38282 -s 10 -d 7 -p ack -e 40 -c 0 -i 5972 -a 0 -x {10.0 9.0 2981 ------- null} h -t 3.38282 -s 10 -d 7 -p ack -e 40 -c 0 -i 5972 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.38328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5959 -a 0 -x {9.0 10.0 2984 ------- null} - -t 3.38328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5959 -a 0 -x {9.0 10.0 2984 ------- null} h -t 3.38328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5959 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.38333 -s 0 -d 9 -p ack -e 40 -c 0 -i 5962 -a 0 -x {10.0 9.0 2976 ------- null} + -t 3.38333 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5973 -a 0 -x {9.0 10.0 2991 ------- null} - -t 3.38333 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5973 -a 0 -x {9.0 10.0 2991 ------- null} h -t 3.38333 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5973 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.38355 -s 0 -d 9 -p ack -e 40 -c 0 -i 5966 -a 0 -x {10.0 9.0 2978 ------- null} - -t 3.38355 -s 0 -d 9 -p ack -e 40 -c 0 -i 5966 -a 0 -x {10.0 9.0 2978 ------- null} h -t 3.38355 -s 0 -d 9 -p ack -e 40 -c 0 -i 5966 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.38376 -s 10 -d 7 -p ack -e 40 -c 0 -i 5970 -a 0 -x {10.0 9.0 2980 ------- null} + -t 3.38376 -s 7 -d 0 -p ack -e 40 -c 0 -i 5970 -a 0 -x {10.0 9.0 2980 ------- null} h -t 3.38376 -s 7 -d 8 -p ack -e 40 -c 0 -i 5970 -a 0 -x {10.0 9.0 2980 ------- null} r -t 3.38382 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5969 -a 0 -x {9.0 10.0 2989 ------- null} + -t 3.38382 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5969 -a 0 -x {9.0 10.0 2989 ------- null} h -t 3.38382 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5969 -a 0 -x {9.0 10.0 2989 ------- null} r -t 3.3839 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5955 -a 0 -x {9.0 10.0 2982 ------- null} + -t 3.3839 -s 10 -d 7 -p ack -e 40 -c 0 -i 5974 -a 0 -x {10.0 9.0 2982 ------- null} - -t 3.3839 -s 10 -d 7 -p ack -e 40 -c 0 -i 5974 -a 0 -x {10.0 9.0 2982 ------- null} h -t 3.3839 -s 10 -d 7 -p ack -e 40 -c 0 -i 5974 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.38446 -s 0 -d 9 -p ack -e 40 -c 0 -i 5964 -a 0 -x {10.0 9.0 2977 ------- null} + -t 3.38446 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5975 -a 0 -x {9.0 10.0 2992 ------- null} - -t 3.38446 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5975 -a 0 -x {9.0 10.0 2992 ------- null} h -t 3.38446 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5975 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.38462 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5961 -a 0 -x {9.0 10.0 2985 ------- null} - -t 3.38462 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5961 -a 0 -x {9.0 10.0 2985 ------- null} h -t 3.38462 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5961 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.38485 -s 10 -d 7 -p ack -e 40 -c 0 -i 5972 -a 0 -x {10.0 9.0 2981 ------- null} + -t 3.38485 -s 7 -d 0 -p ack -e 40 -c 0 -i 5972 -a 0 -x {10.0 9.0 2981 ------- null} h -t 3.38485 -s 7 -d 8 -p ack -e 40 -c 0 -i 5972 -a 0 -x {10.0 9.0 2981 ------- null} + -t 3.38486 -s 0 -d 9 -p ack -e 40 -c 0 -i 5968 -a 0 -x {10.0 9.0 2979 ------- null} - -t 3.38486 -s 0 -d 9 -p ack -e 40 -c 0 -i 5968 -a 0 -x {10.0 9.0 2979 ------- null} h -t 3.38486 -s 0 -d 9 -p ack -e 40 -c 0 -i 5968 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.38499 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5957 -a 0 -x {9.0 10.0 2983 ------- null} + -t 3.38499 -s 10 -d 7 -p ack -e 40 -c 0 -i 5976 -a 0 -x {10.0 9.0 2983 ------- null} - -t 3.38499 -s 10 -d 7 -p ack -e 40 -c 0 -i 5976 -a 0 -x {10.0 9.0 2983 ------- null} h -t 3.38499 -s 10 -d 7 -p ack -e 40 -c 0 -i 5976 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.38502 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5971 -a 0 -x {9.0 10.0 2990 ------- null} + -t 3.38502 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5971 -a 0 -x {9.0 10.0 2990 ------- null} h -t 3.38502 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5971 -a 0 -x {9.0 10.0 2990 ------- null} r -t 3.38558 -s 0 -d 9 -p ack -e 40 -c 0 -i 5966 -a 0 -x {10.0 9.0 2978 ------- null} + -t 3.38558 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5977 -a 0 -x {9.0 10.0 2993 ------- null} - -t 3.38558 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5977 -a 0 -x {9.0 10.0 2993 ------- null} h -t 3.38558 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5977 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.38571 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5963 -a 0 -x {9.0 10.0 2986 ------- null} - -t 3.38571 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5963 -a 0 -x {9.0 10.0 2986 ------- null} h -t 3.38571 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5963 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.38594 -s 10 -d 7 -p ack -e 40 -c 0 -i 5974 -a 0 -x {10.0 9.0 2982 ------- null} + -t 3.38594 -s 7 -d 0 -p ack -e 40 -c 0 -i 5974 -a 0 -x {10.0 9.0 2982 ------- null} h -t 3.38594 -s 7 -d 8 -p ack -e 40 -c 0 -i 5974 -a 0 -x {10.0 9.0 2982 ------- null} + -t 3.38595 -s 0 -d 9 -p ack -e 40 -c 0 -i 5970 -a 0 -x {10.0 9.0 2980 ------- null} - -t 3.38595 -s 0 -d 9 -p ack -e 40 -c 0 -i 5970 -a 0 -x {10.0 9.0 2980 ------- null} h -t 3.38595 -s 0 -d 9 -p ack -e 40 -c 0 -i 5970 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.38608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5959 -a 0 -x {9.0 10.0 2984 ------- null} + -t 3.38608 -s 10 -d 7 -p ack -e 40 -c 0 -i 5978 -a 0 -x {10.0 9.0 2984 ------- null} - -t 3.38608 -s 10 -d 7 -p ack -e 40 -c 0 -i 5978 -a 0 -x {10.0 9.0 2984 ------- null} h -t 3.38608 -s 10 -d 7 -p ack -e 40 -c 0 -i 5978 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.38613 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5973 -a 0 -x {9.0 10.0 2991 ------- null} + -t 3.38613 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5973 -a 0 -x {9.0 10.0 2991 ------- null} h -t 3.38613 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5973 -a 0 -x {9.0 10.0 2991 ------- null} + -t 3.3868 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5965 -a 0 -x {9.0 10.0 2987 ------- null} - -t 3.3868 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5965 -a 0 -x {9.0 10.0 2987 ------- null} h -t 3.3868 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5965 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.3869 -s 0 -d 9 -p ack -e 40 -c 0 -i 5968 -a 0 -x {10.0 9.0 2979 ------- null} + -t 3.3869 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5979 -a 0 -x {9.0 10.0 2994 ------- null} - -t 3.3869 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5979 -a 0 -x {9.0 10.0 2994 ------- null} h -t 3.3869 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5979 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.38702 -s 10 -d 7 -p ack -e 40 -c 0 -i 5976 -a 0 -x {10.0 9.0 2983 ------- null} + -t 3.38702 -s 7 -d 0 -p ack -e 40 -c 0 -i 5976 -a 0 -x {10.0 9.0 2983 ------- null} h -t 3.38702 -s 7 -d 8 -p ack -e 40 -c 0 -i 5976 -a 0 -x {10.0 9.0 2983 ------- null} + -t 3.3871 -s 0 -d 9 -p ack -e 40 -c 0 -i 5972 -a 0 -x {10.0 9.0 2981 ------- null} - -t 3.3871 -s 0 -d 9 -p ack -e 40 -c 0 -i 5972 -a 0 -x {10.0 9.0 2981 ------- null} h -t 3.3871 -s 0 -d 9 -p ack -e 40 -c 0 -i 5972 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.38726 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5975 -a 0 -x {9.0 10.0 2992 ------- null} + -t 3.38726 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5975 -a 0 -x {9.0 10.0 2992 ------- null} h -t 3.38726 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5975 -a 0 -x {9.0 10.0 2992 ------- null} r -t 3.38742 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5961 -a 0 -x {9.0 10.0 2985 ------- null} + -t 3.38742 -s 10 -d 7 -p ack -e 40 -c 0 -i 5980 -a 0 -x {10.0 9.0 2985 ------- null} - -t 3.38742 -s 10 -d 7 -p ack -e 40 -c 0 -i 5980 -a 0 -x {10.0 9.0 2985 ------- null} h -t 3.38742 -s 10 -d 7 -p ack -e 40 -c 0 -i 5980 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.38794 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5967 -a 0 -x {9.0 10.0 2988 ------- null} - -t 3.38794 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5967 -a 0 -x {9.0 10.0 2988 ------- null} h -t 3.38794 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5967 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.38798 -s 0 -d 9 -p ack -e 40 -c 0 -i 5970 -a 0 -x {10.0 9.0 2980 ------- null} + -t 3.38798 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5981 -a 0 -x {9.0 10.0 2995 ------- null} - -t 3.38798 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5981 -a 0 -x {9.0 10.0 2995 ------- null} h -t 3.38798 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5981 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.38802 -s 0 -d 9 -p ack -e 40 -c 0 -i 5974 -a 0 -x {10.0 9.0 2982 ------- null} - -t 3.38802 -s 0 -d 9 -p ack -e 40 -c 0 -i 5974 -a 0 -x {10.0 9.0 2982 ------- null} h -t 3.38802 -s 0 -d 9 -p ack -e 40 -c 0 -i 5974 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.38811 -s 10 -d 7 -p ack -e 40 -c 0 -i 5978 -a 0 -x {10.0 9.0 2984 ------- null} + -t 3.38811 -s 7 -d 0 -p ack -e 40 -c 0 -i 5978 -a 0 -x {10.0 9.0 2984 ------- null} h -t 3.38811 -s 7 -d 8 -p ack -e 40 -c 0 -i 5978 -a 0 -x {10.0 9.0 2984 ------- null} r -t 3.38838 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5977 -a 0 -x {9.0 10.0 2993 ------- null} + -t 3.38838 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5977 -a 0 -x {9.0 10.0 2993 ------- null} h -t 3.38838 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5977 -a 0 -x {9.0 10.0 2993 ------- null} r -t 3.38851 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5963 -a 0 -x {9.0 10.0 2986 ------- null} + -t 3.38851 -s 10 -d 7 -p ack -e 40 -c 0 -i 5982 -a 0 -x {10.0 9.0 2986 ------- null} - -t 3.38851 -s 10 -d 7 -p ack -e 40 -c 0 -i 5982 -a 0 -x {10.0 9.0 2986 ------- null} h -t 3.38851 -s 10 -d 7 -p ack -e 40 -c 0 -i 5982 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.38902 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5969 -a 0 -x {9.0 10.0 2989 ------- null} - -t 3.38902 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5969 -a 0 -x {9.0 10.0 2989 ------- null} h -t 3.38902 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5969 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.38914 -s 0 -d 9 -p ack -e 40 -c 0 -i 5972 -a 0 -x {10.0 9.0 2981 ------- null} + -t 3.38914 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5983 -a 0 -x {9.0 10.0 2996 ------- null} - -t 3.38914 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5983 -a 0 -x {9.0 10.0 2996 ------- null} h -t 3.38914 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5983 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.38923 -s 0 -d 9 -p ack -e 40 -c 0 -i 5976 -a 0 -x {10.0 9.0 2983 ------- null} - -t 3.38923 -s 0 -d 9 -p ack -e 40 -c 0 -i 5976 -a 0 -x {10.0 9.0 2983 ------- null} h -t 3.38923 -s 0 -d 9 -p ack -e 40 -c 0 -i 5976 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.38946 -s 10 -d 7 -p ack -e 40 -c 0 -i 5980 -a 0 -x {10.0 9.0 2985 ------- null} + -t 3.38946 -s 7 -d 0 -p ack -e 40 -c 0 -i 5980 -a 0 -x {10.0 9.0 2985 ------- null} h -t 3.38946 -s 7 -d 8 -p ack -e 40 -c 0 -i 5980 -a 0 -x {10.0 9.0 2985 ------- null} r -t 3.3896 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5965 -a 0 -x {9.0 10.0 2987 ------- null} + -t 3.3896 -s 10 -d 7 -p ack -e 40 -c 0 -i 5984 -a 0 -x {10.0 9.0 2987 ------- null} - -t 3.3896 -s 10 -d 7 -p ack -e 40 -c 0 -i 5984 -a 0 -x {10.0 9.0 2987 ------- null} h -t 3.3896 -s 10 -d 7 -p ack -e 40 -c 0 -i 5984 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.3897 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5979 -a 0 -x {9.0 10.0 2994 ------- null} + -t 3.3897 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5979 -a 0 -x {9.0 10.0 2994 ------- null} h -t 3.3897 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5979 -a 0 -x {9.0 10.0 2994 ------- null} r -t 3.39005 -s 0 -d 9 -p ack -e 40 -c 0 -i 5974 -a 0 -x {10.0 9.0 2982 ------- null} + -t 3.39005 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5985 -a 0 -x {9.0 10.0 2997 ------- null} - -t 3.39005 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5985 -a 0 -x {9.0 10.0 2997 ------- null} h -t 3.39005 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5985 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.39011 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5971 -a 0 -x {9.0 10.0 2990 ------- null} - -t 3.39011 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5971 -a 0 -x {9.0 10.0 2990 ------- null} h -t 3.39011 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5971 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.39021 -s 0 -d 9 -p ack -e 40 -c 0 -i 5978 -a 0 -x {10.0 9.0 2984 ------- null} - -t 3.39021 -s 0 -d 9 -p ack -e 40 -c 0 -i 5978 -a 0 -x {10.0 9.0 2984 ------- null} h -t 3.39021 -s 0 -d 9 -p ack -e 40 -c 0 -i 5978 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.39054 -s 10 -d 7 -p ack -e 40 -c 0 -i 5982 -a 0 -x {10.0 9.0 2986 ------- null} + -t 3.39054 -s 7 -d 0 -p ack -e 40 -c 0 -i 5982 -a 0 -x {10.0 9.0 2986 ------- null} h -t 3.39054 -s 7 -d 8 -p ack -e 40 -c 0 -i 5982 -a 0 -x {10.0 9.0 2986 ------- null} r -t 3.39074 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5967 -a 0 -x {9.0 10.0 2988 ------- null} + -t 3.39074 -s 10 -d 7 -p ack -e 40 -c 0 -i 5986 -a 0 -x {10.0 9.0 2988 ------- null} - -t 3.39074 -s 10 -d 7 -p ack -e 40 -c 0 -i 5986 -a 0 -x {10.0 9.0 2988 ------- null} h -t 3.39074 -s 10 -d 7 -p ack -e 40 -c 0 -i 5986 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.39078 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5981 -a 0 -x {9.0 10.0 2995 ------- null} + -t 3.39078 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5981 -a 0 -x {9.0 10.0 2995 ------- null} h -t 3.39078 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5981 -a 0 -x {9.0 10.0 2995 ------- null} + -t 3.3912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5973 -a 0 -x {9.0 10.0 2991 ------- null} - -t 3.3912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5973 -a 0 -x {9.0 10.0 2991 ------- null} h -t 3.3912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5973 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.39126 -s 0 -d 9 -p ack -e 40 -c 0 -i 5976 -a 0 -x {10.0 9.0 2983 ------- null} + -t 3.39126 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5987 -a 0 -x {9.0 10.0 2998 ------- null} - -t 3.39126 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5987 -a 0 -x {9.0 10.0 2998 ------- null} h -t 3.39126 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5987 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.39134 -s 0 -d 9 -p ack -e 40 -c 0 -i 5980 -a 0 -x {10.0 9.0 2985 ------- null} - -t 3.39134 -s 0 -d 9 -p ack -e 40 -c 0 -i 5980 -a 0 -x {10.0 9.0 2985 ------- null} h -t 3.39134 -s 0 -d 9 -p ack -e 40 -c 0 -i 5980 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.39163 -s 10 -d 7 -p ack -e 40 -c 0 -i 5984 -a 0 -x {10.0 9.0 2987 ------- null} + -t 3.39163 -s 7 -d 0 -p ack -e 40 -c 0 -i 5984 -a 0 -x {10.0 9.0 2987 ------- null} h -t 3.39163 -s 7 -d 8 -p ack -e 40 -c 0 -i 5984 -a 0 -x {10.0 9.0 2987 ------- null} r -t 3.39182 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5969 -a 0 -x {9.0 10.0 2989 ------- null} + -t 3.39182 -s 10 -d 7 -p ack -e 40 -c 0 -i 5988 -a 0 -x {10.0 9.0 2989 ------- null} - -t 3.39182 -s 10 -d 7 -p ack -e 40 -c 0 -i 5988 -a 0 -x {10.0 9.0 2989 ------- null} h -t 3.39182 -s 10 -d 7 -p ack -e 40 -c 0 -i 5988 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.39194 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5983 -a 0 -x {9.0 10.0 2996 ------- null} + -t 3.39194 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5983 -a 0 -x {9.0 10.0 2996 ------- null} h -t 3.39194 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5983 -a 0 -x {9.0 10.0 2996 ------- null} r -t 3.39224 -s 0 -d 9 -p ack -e 40 -c 0 -i 5978 -a 0 -x {10.0 9.0 2984 ------- null} + -t 3.39224 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5989 -a 0 -x {9.0 10.0 2999 ------- null} - -t 3.39224 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5989 -a 0 -x {9.0 10.0 2999 ------- null} h -t 3.39224 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5989 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.39229 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5975 -a 0 -x {9.0 10.0 2992 ------- null} - -t 3.39229 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5975 -a 0 -x {9.0 10.0 2992 ------- null} h -t 3.39229 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5975 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.39256 -s 0 -d 9 -p ack -e 40 -c 0 -i 5982 -a 0 -x {10.0 9.0 2986 ------- null} - -t 3.39256 -s 0 -d 9 -p ack -e 40 -c 0 -i 5982 -a 0 -x {10.0 9.0 2986 ------- null} h -t 3.39256 -s 0 -d 9 -p ack -e 40 -c 0 -i 5982 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.39277 -s 10 -d 7 -p ack -e 40 -c 0 -i 5986 -a 0 -x {10.0 9.0 2988 ------- null} + -t 3.39277 -s 7 -d 0 -p ack -e 40 -c 0 -i 5986 -a 0 -x {10.0 9.0 2988 ------- null} h -t 3.39277 -s 7 -d 8 -p ack -e 40 -c 0 -i 5986 -a 0 -x {10.0 9.0 2988 ------- null} r -t 3.39285 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5985 -a 0 -x {9.0 10.0 2997 ------- null} + -t 3.39285 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5985 -a 0 -x {9.0 10.0 2997 ------- null} h -t 3.39285 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5985 -a 0 -x {9.0 10.0 2997 ------- null} r -t 3.39291 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5971 -a 0 -x {9.0 10.0 2990 ------- null} + -t 3.39291 -s 10 -d 7 -p ack -e 40 -c 0 -i 5990 -a 0 -x {10.0 9.0 2990 ------- null} - -t 3.39291 -s 10 -d 7 -p ack -e 40 -c 0 -i 5990 -a 0 -x {10.0 9.0 2990 ------- null} h -t 3.39291 -s 10 -d 7 -p ack -e 40 -c 0 -i 5990 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.39338 -s 0 -d 9 -p ack -e 40 -c 0 -i 5980 -a 0 -x {10.0 9.0 2985 ------- null} + -t 3.39338 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5991 -a 0 -x {9.0 10.0 3000 ------- null} - -t 3.39338 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5991 -a 0 -x {9.0 10.0 3000 ------- null} h -t 3.39338 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5991 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.39346 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5977 -a 0 -x {9.0 10.0 2993 ------- null} - -t 3.39346 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5977 -a 0 -x {9.0 10.0 2993 ------- null} h -t 3.39346 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5977 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.3937 -s 0 -d 9 -p ack -e 40 -c 0 -i 5984 -a 0 -x {10.0 9.0 2987 ------- null} - -t 3.3937 -s 0 -d 9 -p ack -e 40 -c 0 -i 5984 -a 0 -x {10.0 9.0 2987 ------- null} h -t 3.3937 -s 0 -d 9 -p ack -e 40 -c 0 -i 5984 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.39386 -s 10 -d 7 -p ack -e 40 -c 0 -i 5988 -a 0 -x {10.0 9.0 2989 ------- null} + -t 3.39386 -s 7 -d 0 -p ack -e 40 -c 0 -i 5988 -a 0 -x {10.0 9.0 2989 ------- null} h -t 3.39386 -s 7 -d 8 -p ack -e 40 -c 0 -i 5988 -a 0 -x {10.0 9.0 2989 ------- null} r -t 3.394 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5973 -a 0 -x {9.0 10.0 2991 ------- null} + -t 3.394 -s 10 -d 7 -p ack -e 40 -c 0 -i 5992 -a 0 -x {10.0 9.0 2991 ------- null} - -t 3.394 -s 10 -d 7 -p ack -e 40 -c 0 -i 5992 -a 0 -x {10.0 9.0 2991 ------- null} h -t 3.394 -s 10 -d 7 -p ack -e 40 -c 0 -i 5992 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.39406 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5987 -a 0 -x {9.0 10.0 2998 ------- null} + -t 3.39406 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5987 -a 0 -x {9.0 10.0 2998 ------- null} h -t 3.39406 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5987 -a 0 -x {9.0 10.0 2998 ------- null} + -t 3.39454 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5979 -a 0 -x {9.0 10.0 2994 ------- null} - -t 3.39454 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5979 -a 0 -x {9.0 10.0 2994 ------- null} h -t 3.39454 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5979 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.39459 -s 0 -d 9 -p ack -e 40 -c 0 -i 5982 -a 0 -x {10.0 9.0 2986 ------- null} + -t 3.39459 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5993 -a 0 -x {9.0 10.0 3001 ------- null} - -t 3.39459 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5993 -a 0 -x {9.0 10.0 3001 ------- null} h -t 3.39459 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5993 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.39466 -s 0 -d 9 -p ack -e 40 -c 0 -i 5986 -a 0 -x {10.0 9.0 2988 ------- null} - -t 3.39466 -s 0 -d 9 -p ack -e 40 -c 0 -i 5986 -a 0 -x {10.0 9.0 2988 ------- null} h -t 3.39466 -s 0 -d 9 -p ack -e 40 -c 0 -i 5986 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.39494 -s 10 -d 7 -p ack -e 40 -c 0 -i 5990 -a 0 -x {10.0 9.0 2990 ------- null} + -t 3.39494 -s 7 -d 0 -p ack -e 40 -c 0 -i 5990 -a 0 -x {10.0 9.0 2990 ------- null} h -t 3.39494 -s 7 -d 8 -p ack -e 40 -c 0 -i 5990 -a 0 -x {10.0 9.0 2990 ------- null} r -t 3.39504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5989 -a 0 -x {9.0 10.0 2999 ------- null} + -t 3.39504 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5989 -a 0 -x {9.0 10.0 2999 ------- null} h -t 3.39504 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5989 -a 0 -x {9.0 10.0 2999 ------- null} r -t 3.39509 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5975 -a 0 -x {9.0 10.0 2992 ------- null} + -t 3.39509 -s 10 -d 7 -p ack -e 40 -c 0 -i 5994 -a 0 -x {10.0 9.0 2992 ------- null} - -t 3.39509 -s 10 -d 7 -p ack -e 40 -c 0 -i 5994 -a 0 -x {10.0 9.0 2992 ------- null} h -t 3.39509 -s 10 -d 7 -p ack -e 40 -c 0 -i 5994 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.39563 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5981 -a 0 -x {9.0 10.0 2995 ------- null} - -t 3.39563 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5981 -a 0 -x {9.0 10.0 2995 ------- null} h -t 3.39563 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5981 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.39573 -s 0 -d 9 -p ack -e 40 -c 0 -i 5984 -a 0 -x {10.0 9.0 2987 ------- null} + -t 3.39573 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5995 -a 0 -x {9.0 10.0 3002 ------- null} - -t 3.39573 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5995 -a 0 -x {9.0 10.0 3002 ------- null} h -t 3.39573 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5995 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.39574 -s 0 -d 9 -p ack -e 40 -c 0 -i 5988 -a 0 -x {10.0 9.0 2989 ------- null} - -t 3.39574 -s 0 -d 9 -p ack -e 40 -c 0 -i 5988 -a 0 -x {10.0 9.0 2989 ------- null} h -t 3.39574 -s 0 -d 9 -p ack -e 40 -c 0 -i 5988 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.39603 -s 10 -d 7 -p ack -e 40 -c 0 -i 5992 -a 0 -x {10.0 9.0 2991 ------- null} + -t 3.39603 -s 7 -d 0 -p ack -e 40 -c 0 -i 5992 -a 0 -x {10.0 9.0 2991 ------- null} h -t 3.39603 -s 7 -d 8 -p ack -e 40 -c 0 -i 5992 -a 0 -x {10.0 9.0 2991 ------- null} r -t 3.39618 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5991 -a 0 -x {9.0 10.0 3000 ------- null} + -t 3.39618 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5991 -a 0 -x {9.0 10.0 3000 ------- null} h -t 3.39618 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5991 -a 0 -x {9.0 10.0 3000 ------- null} r -t 3.39626 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5977 -a 0 -x {9.0 10.0 2993 ------- null} + -t 3.39626 -s 10 -d 7 -p ack -e 40 -c 0 -i 5996 -a 0 -x {10.0 9.0 2993 ------- null} - -t 3.39626 -s 10 -d 7 -p ack -e 40 -c 0 -i 5996 -a 0 -x {10.0 9.0 2993 ------- null} h -t 3.39626 -s 10 -d 7 -p ack -e 40 -c 0 -i 5996 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.39669 -s 0 -d 9 -p ack -e 40 -c 0 -i 5986 -a 0 -x {10.0 9.0 2988 ------- null} + -t 3.39669 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5997 -a 0 -x {9.0 10.0 3003 ------- null} - -t 3.39669 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5997 -a 0 -x {9.0 10.0 3003 ------- null} h -t 3.39669 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5997 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.39672 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5983 -a 0 -x {9.0 10.0 2996 ------- null} - -t 3.39672 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5983 -a 0 -x {9.0 10.0 2996 ------- null} h -t 3.39672 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5983 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.39678 -s 0 -d 9 -p ack -e 40 -c 0 -i 5990 -a 0 -x {10.0 9.0 2990 ------- null} - -t 3.39678 -s 0 -d 9 -p ack -e 40 -c 0 -i 5990 -a 0 -x {10.0 9.0 2990 ------- null} h -t 3.39678 -s 0 -d 9 -p ack -e 40 -c 0 -i 5990 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.39712 -s 10 -d 7 -p ack -e 40 -c 0 -i 5994 -a 0 -x {10.0 9.0 2992 ------- null} + -t 3.39712 -s 7 -d 0 -p ack -e 40 -c 0 -i 5994 -a 0 -x {10.0 9.0 2992 ------- null} h -t 3.39712 -s 7 -d 8 -p ack -e 40 -c 0 -i 5994 -a 0 -x {10.0 9.0 2992 ------- null} r -t 3.39734 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5979 -a 0 -x {9.0 10.0 2994 ------- null} + -t 3.39734 -s 10 -d 7 -p ack -e 40 -c 0 -i 5998 -a 0 -x {10.0 9.0 2994 ------- null} - -t 3.39734 -s 10 -d 7 -p ack -e 40 -c 0 -i 5998 -a 0 -x {10.0 9.0 2994 ------- null} h -t 3.39734 -s 10 -d 7 -p ack -e 40 -c 0 -i 5998 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.39739 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5993 -a 0 -x {9.0 10.0 3001 ------- null} + -t 3.39739 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5993 -a 0 -x {9.0 10.0 3001 ------- null} h -t 3.39739 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5993 -a 0 -x {9.0 10.0 3001 ------- null} r -t 3.39778 -s 0 -d 9 -p ack -e 40 -c 0 -i 5988 -a 0 -x {10.0 9.0 2989 ------- null} + -t 3.39778 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5999 -a 0 -x {9.0 10.0 3004 ------- null} - -t 3.39778 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5999 -a 0 -x {9.0 10.0 3004 ------- null} h -t 3.39778 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5999 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.39781 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5985 -a 0 -x {9.0 10.0 2997 ------- null} - -t 3.39781 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5985 -a 0 -x {9.0 10.0 2997 ------- null} h -t 3.39781 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5985 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.39802 -s 0 -d 9 -p ack -e 40 -c 0 -i 5992 -a 0 -x {10.0 9.0 2991 ------- null} - -t 3.39802 -s 0 -d 9 -p ack -e 40 -c 0 -i 5992 -a 0 -x {10.0 9.0 2991 ------- null} h -t 3.39802 -s 0 -d 9 -p ack -e 40 -c 0 -i 5992 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.39829 -s 10 -d 7 -p ack -e 40 -c 0 -i 5996 -a 0 -x {10.0 9.0 2993 ------- null} + -t 3.39829 -s 7 -d 0 -p ack -e 40 -c 0 -i 5996 -a 0 -x {10.0 9.0 2993 ------- null} h -t 3.39829 -s 7 -d 8 -p ack -e 40 -c 0 -i 5996 -a 0 -x {10.0 9.0 2993 ------- null} r -t 3.39843 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5981 -a 0 -x {9.0 10.0 2995 ------- null} + -t 3.39843 -s 10 -d 7 -p ack -e 40 -c 0 -i 6000 -a 0 -x {10.0 9.0 2995 ------- null} - -t 3.39843 -s 10 -d 7 -p ack -e 40 -c 0 -i 6000 -a 0 -x {10.0 9.0 2995 ------- null} h -t 3.39843 -s 10 -d 7 -p ack -e 40 -c 0 -i 6000 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.39853 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5995 -a 0 -x {9.0 10.0 3002 ------- null} + -t 3.39853 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5995 -a 0 -x {9.0 10.0 3002 ------- null} h -t 3.39853 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5995 -a 0 -x {9.0 10.0 3002 ------- null} r -t 3.39882 -s 0 -d 9 -p ack -e 40 -c 0 -i 5990 -a 0 -x {10.0 9.0 2990 ------- null} + -t 3.39882 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6001 -a 0 -x {9.0 10.0 3005 ------- null} - -t 3.39882 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6001 -a 0 -x {9.0 10.0 3005 ------- null} h -t 3.39882 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6001 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.3989 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5987 -a 0 -x {9.0 10.0 2998 ------- null} - -t 3.3989 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5987 -a 0 -x {9.0 10.0 2998 ------- null} h -t 3.3989 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5987 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.39915 -s 0 -d 9 -p ack -e 40 -c 0 -i 5994 -a 0 -x {10.0 9.0 2992 ------- null} - -t 3.39915 -s 0 -d 9 -p ack -e 40 -c 0 -i 5994 -a 0 -x {10.0 9.0 2992 ------- null} h -t 3.39915 -s 0 -d 9 -p ack -e 40 -c 0 -i 5994 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.39938 -s 10 -d 7 -p ack -e 40 -c 0 -i 5998 -a 0 -x {10.0 9.0 2994 ------- null} + -t 3.39938 -s 7 -d 0 -p ack -e 40 -c 0 -i 5998 -a 0 -x {10.0 9.0 2994 ------- null} h -t 3.39938 -s 7 -d 8 -p ack -e 40 -c 0 -i 5998 -a 0 -x {10.0 9.0 2994 ------- null} r -t 3.39949 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5997 -a 0 -x {9.0 10.0 3003 ------- null} + -t 3.39949 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5997 -a 0 -x {9.0 10.0 3003 ------- null} h -t 3.39949 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5997 -a 0 -x {9.0 10.0 3003 ------- null} r -t 3.39952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5983 -a 0 -x {9.0 10.0 2996 ------- null} + -t 3.39952 -s 10 -d 7 -p ack -e 40 -c 0 -i 6002 -a 0 -x {10.0 9.0 2996 ------- null} - -t 3.39952 -s 10 -d 7 -p ack -e 40 -c 0 -i 6002 -a 0 -x {10.0 9.0 2996 ------- null} h -t 3.39952 -s 10 -d 7 -p ack -e 40 -c 0 -i 6002 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.40005 -s 0 -d 9 -p ack -e 40 -c 0 -i 5992 -a 0 -x {10.0 9.0 2991 ------- null} + -t 3.40005 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6003 -a 0 -x {9.0 10.0 3006 ------- null} - -t 3.40005 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6003 -a 0 -x {9.0 10.0 3006 ------- null} h -t 3.40005 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6003 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.40005 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5989 -a 0 -x {9.0 10.0 2999 ------- null} - -t 3.40005 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5989 -a 0 -x {9.0 10.0 2999 ------- null} h -t 3.40005 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5989 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.40011 -s 0 -d 9 -p ack -e 40 -c 0 -i 5996 -a 0 -x {10.0 9.0 2993 ------- null} - -t 3.40011 -s 0 -d 9 -p ack -e 40 -c 0 -i 5996 -a 0 -x {10.0 9.0 2993 ------- null} h -t 3.40011 -s 0 -d 9 -p ack -e 40 -c 0 -i 5996 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.40046 -s 10 -d 7 -p ack -e 40 -c 0 -i 6000 -a 0 -x {10.0 9.0 2995 ------- null} + -t 3.40046 -s 7 -d 0 -p ack -e 40 -c 0 -i 6000 -a 0 -x {10.0 9.0 2995 ------- null} h -t 3.40046 -s 7 -d 8 -p ack -e 40 -c 0 -i 6000 -a 0 -x {10.0 9.0 2995 ------- null} r -t 3.40058 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 5999 -a 0 -x {9.0 10.0 3004 ------- null} + -t 3.40058 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 5999 -a 0 -x {9.0 10.0 3004 ------- null} h -t 3.40058 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 5999 -a 0 -x {9.0 10.0 3004 ------- null} r -t 3.40061 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5985 -a 0 -x {9.0 10.0 2997 ------- null} + -t 3.40061 -s 10 -d 7 -p ack -e 40 -c 0 -i 6004 -a 0 -x {10.0 9.0 2997 ------- null} - -t 3.40061 -s 10 -d 7 -p ack -e 40 -c 0 -i 6004 -a 0 -x {10.0 9.0 2997 ------- null} h -t 3.40061 -s 10 -d 7 -p ack -e 40 -c 0 -i 6004 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.40114 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5991 -a 0 -x {9.0 10.0 3000 ------- null} - -t 3.40114 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5991 -a 0 -x {9.0 10.0 3000 ------- null} h -t 3.40114 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5991 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.40118 -s 0 -d 9 -p ack -e 40 -c 0 -i 5994 -a 0 -x {10.0 9.0 2992 ------- null} + -t 3.40118 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6005 -a 0 -x {9.0 10.0 3007 ------- null} - -t 3.40118 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6005 -a 0 -x {9.0 10.0 3007 ------- null} h -t 3.40118 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6005 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.40123 -s 0 -d 9 -p ack -e 40 -c 0 -i 5998 -a 0 -x {10.0 9.0 2994 ------- null} - -t 3.40123 -s 0 -d 9 -p ack -e 40 -c 0 -i 5998 -a 0 -x {10.0 9.0 2994 ------- null} h -t 3.40123 -s 0 -d 9 -p ack -e 40 -c 0 -i 5998 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.40155 -s 10 -d 7 -p ack -e 40 -c 0 -i 6002 -a 0 -x {10.0 9.0 2996 ------- null} + -t 3.40155 -s 7 -d 0 -p ack -e 40 -c 0 -i 6002 -a 0 -x {10.0 9.0 2996 ------- null} h -t 3.40155 -s 7 -d 8 -p ack -e 40 -c 0 -i 6002 -a 0 -x {10.0 9.0 2996 ------- null} r -t 3.40162 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6001 -a 0 -x {9.0 10.0 3005 ------- null} + -t 3.40162 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6001 -a 0 -x {9.0 10.0 3005 ------- null} h -t 3.40162 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6001 -a 0 -x {9.0 10.0 3005 ------- null} r -t 3.4017 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5987 -a 0 -x {9.0 10.0 2998 ------- null} + -t 3.4017 -s 10 -d 7 -p ack -e 40 -c 0 -i 6006 -a 0 -x {10.0 9.0 2998 ------- null} - -t 3.4017 -s 10 -d 7 -p ack -e 40 -c 0 -i 6006 -a 0 -x {10.0 9.0 2998 ------- null} h -t 3.4017 -s 10 -d 7 -p ack -e 40 -c 0 -i 6006 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.40214 -s 0 -d 9 -p ack -e 40 -c 0 -i 5996 -a 0 -x {10.0 9.0 2993 ------- null} + -t 3.40214 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6007 -a 0 -x {9.0 10.0 3008 ------- null} - -t 3.40214 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6007 -a 0 -x {9.0 10.0 3008 ------- null} h -t 3.40214 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6007 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.40222 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5993 -a 0 -x {9.0 10.0 3001 ------- null} - -t 3.40222 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5993 -a 0 -x {9.0 10.0 3001 ------- null} h -t 3.40222 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5993 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.40242 -s 0 -d 9 -p ack -e 40 -c 0 -i 6000 -a 0 -x {10.0 9.0 2995 ------- null} - -t 3.40242 -s 0 -d 9 -p ack -e 40 -c 0 -i 6000 -a 0 -x {10.0 9.0 2995 ------- null} h -t 3.40242 -s 0 -d 9 -p ack -e 40 -c 0 -i 6000 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.40264 -s 10 -d 7 -p ack -e 40 -c 0 -i 6004 -a 0 -x {10.0 9.0 2997 ------- null} + -t 3.40264 -s 7 -d 0 -p ack -e 40 -c 0 -i 6004 -a 0 -x {10.0 9.0 2997 ------- null} h -t 3.40264 -s 7 -d 8 -p ack -e 40 -c 0 -i 6004 -a 0 -x {10.0 9.0 2997 ------- null} r -t 3.40285 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6003 -a 0 -x {9.0 10.0 3006 ------- null} + -t 3.40285 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6003 -a 0 -x {9.0 10.0 3006 ------- null} h -t 3.40285 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6003 -a 0 -x {9.0 10.0 3006 ------- null} r -t 3.40285 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5989 -a 0 -x {9.0 10.0 2999 ------- null} + -t 3.40285 -s 10 -d 7 -p ack -e 40 -c 0 -i 6008 -a 0 -x {10.0 9.0 2999 ------- null} - -t 3.40285 -s 10 -d 7 -p ack -e 40 -c 0 -i 6008 -a 0 -x {10.0 9.0 2999 ------- null} h -t 3.40285 -s 10 -d 7 -p ack -e 40 -c 0 -i 6008 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.40326 -s 0 -d 9 -p ack -e 40 -c 0 -i 5998 -a 0 -x {10.0 9.0 2994 ------- null} + -t 3.40326 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6009 -a 0 -x {9.0 10.0 3009 ------- null} - -t 3.40326 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6009 -a 0 -x {9.0 10.0 3009 ------- null} h -t 3.40326 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6009 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.40331 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5995 -a 0 -x {9.0 10.0 3002 ------- null} - -t 3.40331 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5995 -a 0 -x {9.0 10.0 3002 ------- null} h -t 3.40331 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5995 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.40339 -s 0 -d 9 -p ack -e 40 -c 0 -i 6002 -a 0 -x {10.0 9.0 2996 ------- null} - -t 3.40339 -s 0 -d 9 -p ack -e 40 -c 0 -i 6002 -a 0 -x {10.0 9.0 2996 ------- null} h -t 3.40339 -s 0 -d 9 -p ack -e 40 -c 0 -i 6002 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.40373 -s 10 -d 7 -p ack -e 40 -c 0 -i 6006 -a 0 -x {10.0 9.0 2998 ------- null} + -t 3.40373 -s 7 -d 0 -p ack -e 40 -c 0 -i 6006 -a 0 -x {10.0 9.0 2998 ------- null} h -t 3.40373 -s 7 -d 8 -p ack -e 40 -c 0 -i 6006 -a 0 -x {10.0 9.0 2998 ------- null} r -t 3.40394 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5991 -a 0 -x {9.0 10.0 3000 ------- null} + -t 3.40394 -s 10 -d 7 -p ack -e 40 -c 0 -i 6010 -a 0 -x {10.0 9.0 3000 ------- null} - -t 3.40394 -s 10 -d 7 -p ack -e 40 -c 0 -i 6010 -a 0 -x {10.0 9.0 3000 ------- null} h -t 3.40394 -s 10 -d 7 -p ack -e 40 -c 0 -i 6010 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.40398 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6005 -a 0 -x {9.0 10.0 3007 ------- null} + -t 3.40398 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6005 -a 0 -x {9.0 10.0 3007 ------- null} h -t 3.40398 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6005 -a 0 -x {9.0 10.0 3007 ------- null} + -t 3.4044 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5997 -a 0 -x {9.0 10.0 3003 ------- null} - -t 3.4044 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5997 -a 0 -x {9.0 10.0 3003 ------- null} h -t 3.4044 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5997 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.40445 -s 0 -d 9 -p ack -e 40 -c 0 -i 6000 -a 0 -x {10.0 9.0 2995 ------- null} + -t 3.40445 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6011 -a 0 -x {9.0 10.0 3010 ------- null} - -t 3.40445 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6011 -a 0 -x {9.0 10.0 3010 ------- null} h -t 3.40445 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6011 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.40467 -s 0 -d 9 -p ack -e 40 -c 0 -i 6004 -a 0 -x {10.0 9.0 2997 ------- null} - -t 3.40467 -s 0 -d 9 -p ack -e 40 -c 0 -i 6004 -a 0 -x {10.0 9.0 2997 ------- null} h -t 3.40467 -s 0 -d 9 -p ack -e 40 -c 0 -i 6004 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.40488 -s 10 -d 7 -p ack -e 40 -c 0 -i 6008 -a 0 -x {10.0 9.0 2999 ------- null} + -t 3.40488 -s 7 -d 0 -p ack -e 40 -c 0 -i 6008 -a 0 -x {10.0 9.0 2999 ------- null} h -t 3.40488 -s 7 -d 8 -p ack -e 40 -c 0 -i 6008 -a 0 -x {10.0 9.0 2999 ------- null} r -t 3.40494 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6007 -a 0 -x {9.0 10.0 3008 ------- null} + -t 3.40494 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6007 -a 0 -x {9.0 10.0 3008 ------- null} h -t 3.40494 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6007 -a 0 -x {9.0 10.0 3008 ------- null} r -t 3.40502 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5993 -a 0 -x {9.0 10.0 3001 ------- null} + -t 3.40502 -s 10 -d 7 -p ack -e 40 -c 0 -i 6012 -a 0 -x {10.0 9.0 3001 ------- null} - -t 3.40502 -s 10 -d 7 -p ack -e 40 -c 0 -i 6012 -a 0 -x {10.0 9.0 3001 ------- null} h -t 3.40502 -s 10 -d 7 -p ack -e 40 -c 0 -i 6012 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.40542 -s 0 -d 9 -p ack -e 40 -c 0 -i 6002 -a 0 -x {10.0 9.0 2996 ------- null} + -t 3.40542 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6013 -a 0 -x {9.0 10.0 3011 ------- null} - -t 3.40542 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6013 -a 0 -x {9.0 10.0 3011 ------- null} h -t 3.40542 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6013 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.40557 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5999 -a 0 -x {9.0 10.0 3004 ------- null} - -t 3.40557 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5999 -a 0 -x {9.0 10.0 3004 ------- null} h -t 3.40557 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5999 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.40582 -s 0 -d 9 -p ack -e 40 -c 0 -i 6006 -a 0 -x {10.0 9.0 2998 ------- null} - -t 3.40582 -s 0 -d 9 -p ack -e 40 -c 0 -i 6006 -a 0 -x {10.0 9.0 2998 ------- null} h -t 3.40582 -s 0 -d 9 -p ack -e 40 -c 0 -i 6006 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.40597 -s 10 -d 7 -p ack -e 40 -c 0 -i 6010 -a 0 -x {10.0 9.0 3000 ------- null} + -t 3.40597 -s 7 -d 0 -p ack -e 40 -c 0 -i 6010 -a 0 -x {10.0 9.0 3000 ------- null} h -t 3.40597 -s 7 -d 8 -p ack -e 40 -c 0 -i 6010 -a 0 -x {10.0 9.0 3000 ------- null} r -t 3.40606 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6009 -a 0 -x {9.0 10.0 3009 ------- null} + -t 3.40606 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6009 -a 0 -x {9.0 10.0 3009 ------- null} h -t 3.40606 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6009 -a 0 -x {9.0 10.0 3009 ------- null} r -t 3.40611 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5995 -a 0 -x {9.0 10.0 3002 ------- null} + -t 3.40611 -s 10 -d 7 -p ack -e 40 -c 0 -i 6014 -a 0 -x {10.0 9.0 3002 ------- null} - -t 3.40611 -s 10 -d 7 -p ack -e 40 -c 0 -i 6014 -a 0 -x {10.0 9.0 3002 ------- null} h -t 3.40611 -s 10 -d 7 -p ack -e 40 -c 0 -i 6014 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.4067 -s 0 -d 9 -p ack -e 40 -c 0 -i 6004 -a 0 -x {10.0 9.0 2997 ------- null} + -t 3.4067 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6015 -a 0 -x {9.0 10.0 3012 ------- null} - -t 3.4067 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6015 -a 0 -x {9.0 10.0 3012 ------- null} h -t 3.4067 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6015 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.40675 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6001 -a 0 -x {9.0 10.0 3005 ------- null} - -t 3.40675 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6001 -a 0 -x {9.0 10.0 3005 ------- null} h -t 3.40675 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6001 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.40683 -s 0 -d 9 -p ack -e 40 -c 0 -i 6008 -a 0 -x {10.0 9.0 2999 ------- null} - -t 3.40683 -s 0 -d 9 -p ack -e 40 -c 0 -i 6008 -a 0 -x {10.0 9.0 2999 ------- null} h -t 3.40683 -s 0 -d 9 -p ack -e 40 -c 0 -i 6008 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.40706 -s 10 -d 7 -p ack -e 40 -c 0 -i 6012 -a 0 -x {10.0 9.0 3001 ------- null} + -t 3.40706 -s 7 -d 0 -p ack -e 40 -c 0 -i 6012 -a 0 -x {10.0 9.0 3001 ------- null} h -t 3.40706 -s 7 -d 8 -p ack -e 40 -c 0 -i 6012 -a 0 -x {10.0 9.0 3001 ------- null} r -t 3.4072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5997 -a 0 -x {9.0 10.0 3003 ------- null} + -t 3.4072 -s 10 -d 7 -p ack -e 40 -c 0 -i 6016 -a 0 -x {10.0 9.0 3003 ------- null} - -t 3.4072 -s 10 -d 7 -p ack -e 40 -c 0 -i 6016 -a 0 -x {10.0 9.0 3003 ------- null} h -t 3.4072 -s 10 -d 7 -p ack -e 40 -c 0 -i 6016 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.40725 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6011 -a 0 -x {9.0 10.0 3010 ------- null} + -t 3.40725 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6011 -a 0 -x {9.0 10.0 3010 ------- null} h -t 3.40725 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6011 -a 0 -x {9.0 10.0 3010 ------- null} + -t 3.40784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6003 -a 0 -x {9.0 10.0 3006 ------- null} - -t 3.40784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6003 -a 0 -x {9.0 10.0 3006 ------- null} h -t 3.40784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6003 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.40786 -s 0 -d 9 -p ack -e 40 -c 0 -i 6006 -a 0 -x {10.0 9.0 2998 ------- null} + -t 3.40786 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6017 -a 0 -x {9.0 10.0 3013 ------- null} - -t 3.40786 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6017 -a 0 -x {9.0 10.0 3013 ------- null} h -t 3.40786 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6017 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.4079 -s 0 -d 9 -p ack -e 40 -c 0 -i 6010 -a 0 -x {10.0 9.0 3000 ------- null} - -t 3.4079 -s 0 -d 9 -p ack -e 40 -c 0 -i 6010 -a 0 -x {10.0 9.0 3000 ------- null} h -t 3.4079 -s 0 -d 9 -p ack -e 40 -c 0 -i 6010 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.40814 -s 10 -d 7 -p ack -e 40 -c 0 -i 6014 -a 0 -x {10.0 9.0 3002 ------- null} + -t 3.40814 -s 7 -d 0 -p ack -e 40 -c 0 -i 6014 -a 0 -x {10.0 9.0 3002 ------- null} h -t 3.40814 -s 7 -d 8 -p ack -e 40 -c 0 -i 6014 -a 0 -x {10.0 9.0 3002 ------- null} r -t 3.40822 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6013 -a 0 -x {9.0 10.0 3011 ------- null} + -t 3.40822 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6013 -a 0 -x {9.0 10.0 3011 ------- null} h -t 3.40822 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6013 -a 0 -x {9.0 10.0 3011 ------- null} r -t 3.40837 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 5999 -a 0 -x {9.0 10.0 3004 ------- null} + -t 3.40837 -s 10 -d 7 -p ack -e 40 -c 0 -i 6018 -a 0 -x {10.0 9.0 3004 ------- null} - -t 3.40837 -s 10 -d 7 -p ack -e 40 -c 0 -i 6018 -a 0 -x {10.0 9.0 3004 ------- null} h -t 3.40837 -s 10 -d 7 -p ack -e 40 -c 0 -i 6018 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.40886 -s 0 -d 9 -p ack -e 40 -c 0 -i 6008 -a 0 -x {10.0 9.0 2999 ------- null} + -t 3.40886 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6019 -a 0 -x {9.0 10.0 3014 ------- null} - -t 3.40886 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6019 -a 0 -x {9.0 10.0 3014 ------- null} h -t 3.40886 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6019 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.40893 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6005 -a 0 -x {9.0 10.0 3007 ------- null} - -t 3.40893 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6005 -a 0 -x {9.0 10.0 3007 ------- null} h -t 3.40893 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6005 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.40904 -s 0 -d 9 -p ack -e 40 -c 0 -i 6012 -a 0 -x {10.0 9.0 3001 ------- null} - -t 3.40904 -s 0 -d 9 -p ack -e 40 -c 0 -i 6012 -a 0 -x {10.0 9.0 3001 ------- null} h -t 3.40904 -s 0 -d 9 -p ack -e 40 -c 0 -i 6012 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.40923 -s 10 -d 7 -p ack -e 40 -c 0 -i 6016 -a 0 -x {10.0 9.0 3003 ------- null} + -t 3.40923 -s 7 -d 0 -p ack -e 40 -c 0 -i 6016 -a 0 -x {10.0 9.0 3003 ------- null} h -t 3.40923 -s 7 -d 8 -p ack -e 40 -c 0 -i 6016 -a 0 -x {10.0 9.0 3003 ------- null} r -t 3.4095 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6015 -a 0 -x {9.0 10.0 3012 ------- null} + -t 3.4095 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6015 -a 0 -x {9.0 10.0 3012 ------- null} h -t 3.4095 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6015 -a 0 -x {9.0 10.0 3012 ------- null} r -t 3.40955 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6001 -a 0 -x {9.0 10.0 3005 ------- null} + -t 3.40955 -s 10 -d 7 -p ack -e 40 -c 0 -i 6020 -a 0 -x {10.0 9.0 3005 ------- null} - -t 3.40955 -s 10 -d 7 -p ack -e 40 -c 0 -i 6020 -a 0 -x {10.0 9.0 3005 ------- null} h -t 3.40955 -s 10 -d 7 -p ack -e 40 -c 0 -i 6020 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.40994 -s 0 -d 9 -p ack -e 40 -c 0 -i 6010 -a 0 -x {10.0 9.0 3000 ------- null} + -t 3.40994 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6021 -a 0 -x {9.0 10.0 3015 ------- null} - -t 3.40994 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6021 -a 0 -x {9.0 10.0 3015 ------- null} h -t 3.40994 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6021 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.41002 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6007 -a 0 -x {9.0 10.0 3008 ------- null} - -t 3.41002 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6007 -a 0 -x {9.0 10.0 3008 ------- null} h -t 3.41002 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6007 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.41016 -s 0 -d 9 -p ack -e 40 -c 0 -i 6014 -a 0 -x {10.0 9.0 3002 ------- null} - -t 3.41016 -s 0 -d 9 -p ack -e 40 -c 0 -i 6014 -a 0 -x {10.0 9.0 3002 ------- null} h -t 3.41016 -s 0 -d 9 -p ack -e 40 -c 0 -i 6014 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.4104 -s 10 -d 7 -p ack -e 40 -c 0 -i 6018 -a 0 -x {10.0 9.0 3004 ------- null} + -t 3.4104 -s 7 -d 0 -p ack -e 40 -c 0 -i 6018 -a 0 -x {10.0 9.0 3004 ------- null} h -t 3.4104 -s 7 -d 8 -p ack -e 40 -c 0 -i 6018 -a 0 -x {10.0 9.0 3004 ------- null} r -t 3.41064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6003 -a 0 -x {9.0 10.0 3006 ------- null} + -t 3.41064 -s 10 -d 7 -p ack -e 40 -c 0 -i 6022 -a 0 -x {10.0 9.0 3006 ------- null} - -t 3.41064 -s 10 -d 7 -p ack -e 40 -c 0 -i 6022 -a 0 -x {10.0 9.0 3006 ------- null} h -t 3.41064 -s 10 -d 7 -p ack -e 40 -c 0 -i 6022 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.41066 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6017 -a 0 -x {9.0 10.0 3013 ------- null} + -t 3.41066 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6017 -a 0 -x {9.0 10.0 3013 ------- null} h -t 3.41066 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6017 -a 0 -x {9.0 10.0 3013 ------- null} r -t 3.41107 -s 0 -d 9 -p ack -e 40 -c 0 -i 6012 -a 0 -x {10.0 9.0 3001 ------- null} + -t 3.41107 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6023 -a 0 -x {9.0 10.0 3016 ------- null} - -t 3.41107 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6023 -a 0 -x {9.0 10.0 3016 ------- null} h -t 3.41107 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6023 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.4111 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6009 -a 0 -x {9.0 10.0 3009 ------- null} - -t 3.4111 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6009 -a 0 -x {9.0 10.0 3009 ------- null} h -t 3.4111 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6009 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.41122 -s 0 -d 9 -p ack -e 40 -c 0 -i 6016 -a 0 -x {10.0 9.0 3003 ------- null} - -t 3.41122 -s 0 -d 9 -p ack -e 40 -c 0 -i 6016 -a 0 -x {10.0 9.0 3003 ------- null} h -t 3.41122 -s 0 -d 9 -p ack -e 40 -c 0 -i 6016 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.41158 -s 10 -d 7 -p ack -e 40 -c 0 -i 6020 -a 0 -x {10.0 9.0 3005 ------- null} + -t 3.41158 -s 7 -d 0 -p ack -e 40 -c 0 -i 6020 -a 0 -x {10.0 9.0 3005 ------- null} h -t 3.41158 -s 7 -d 8 -p ack -e 40 -c 0 -i 6020 -a 0 -x {10.0 9.0 3005 ------- null} r -t 3.41166 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6019 -a 0 -x {9.0 10.0 3014 ------- null} + -t 3.41166 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6019 -a 0 -x {9.0 10.0 3014 ------- null} h -t 3.41166 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6019 -a 0 -x {9.0 10.0 3014 ------- null} r -t 3.41173 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6005 -a 0 -x {9.0 10.0 3007 ------- null} + -t 3.41173 -s 10 -d 7 -p ack -e 40 -c 0 -i 6024 -a 0 -x {10.0 9.0 3007 ------- null} - -t 3.41173 -s 10 -d 7 -p ack -e 40 -c 0 -i 6024 -a 0 -x {10.0 9.0 3007 ------- null} h -t 3.41173 -s 10 -d 7 -p ack -e 40 -c 0 -i 6024 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.41219 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6011 -a 0 -x {9.0 10.0 3010 ------- null} - -t 3.41219 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6011 -a 0 -x {9.0 10.0 3010 ------- null} h -t 3.41219 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6011 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.41219 -s 0 -d 9 -p ack -e 40 -c 0 -i 6014 -a 0 -x {10.0 9.0 3002 ------- null} + -t 3.41219 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6025 -a 0 -x {9.0 10.0 3017 ------- null} - -t 3.41219 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6025 -a 0 -x {9.0 10.0 3017 ------- null} h -t 3.41219 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6025 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.4124 -s 0 -d 9 -p ack -e 40 -c 0 -i 6018 -a 0 -x {10.0 9.0 3004 ------- null} - -t 3.4124 -s 0 -d 9 -p ack -e 40 -c 0 -i 6018 -a 0 -x {10.0 9.0 3004 ------- null} h -t 3.4124 -s 0 -d 9 -p ack -e 40 -c 0 -i 6018 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.41267 -s 10 -d 7 -p ack -e 40 -c 0 -i 6022 -a 0 -x {10.0 9.0 3006 ------- null} + -t 3.41267 -s 7 -d 0 -p ack -e 40 -c 0 -i 6022 -a 0 -x {10.0 9.0 3006 ------- null} h -t 3.41267 -s 7 -d 8 -p ack -e 40 -c 0 -i 6022 -a 0 -x {10.0 9.0 3006 ------- null} r -t 3.41274 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6021 -a 0 -x {9.0 10.0 3015 ------- null} + -t 3.41274 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6021 -a 0 -x {9.0 10.0 3015 ------- null} h -t 3.41274 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6021 -a 0 -x {9.0 10.0 3015 ------- null} r -t 3.41282 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6007 -a 0 -x {9.0 10.0 3008 ------- null} + -t 3.41282 -s 10 -d 7 -p ack -e 40 -c 0 -i 6026 -a 0 -x {10.0 9.0 3008 ------- null} - -t 3.41282 -s 10 -d 7 -p ack -e 40 -c 0 -i 6026 -a 0 -x {10.0 9.0 3008 ------- null} h -t 3.41282 -s 10 -d 7 -p ack -e 40 -c 0 -i 6026 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.41325 -s 0 -d 9 -p ack -e 40 -c 0 -i 6016 -a 0 -x {10.0 9.0 3003 ------- null} + -t 3.41325 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6027 -a 0 -x {9.0 10.0 3018 ------- null} - -t 3.41325 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6027 -a 0 -x {9.0 10.0 3018 ------- null} h -t 3.41325 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6027 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.41328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6013 -a 0 -x {9.0 10.0 3011 ------- null} - -t 3.41328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6013 -a 0 -x {9.0 10.0 3011 ------- null} h -t 3.41328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6013 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.41349 -s 0 -d 9 -p ack -e 40 -c 0 -i 6020 -a 0 -x {10.0 9.0 3005 ------- null} - -t 3.41349 -s 0 -d 9 -p ack -e 40 -c 0 -i 6020 -a 0 -x {10.0 9.0 3005 ------- null} h -t 3.41349 -s 0 -d 9 -p ack -e 40 -c 0 -i 6020 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.41376 -s 10 -d 7 -p ack -e 40 -c 0 -i 6024 -a 0 -x {10.0 9.0 3007 ------- null} + -t 3.41376 -s 7 -d 0 -p ack -e 40 -c 0 -i 6024 -a 0 -x {10.0 9.0 3007 ------- null} h -t 3.41376 -s 7 -d 8 -p ack -e 40 -c 0 -i 6024 -a 0 -x {10.0 9.0 3007 ------- null} r -t 3.41387 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6023 -a 0 -x {9.0 10.0 3016 ------- null} + -t 3.41387 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6023 -a 0 -x {9.0 10.0 3016 ------- null} h -t 3.41387 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6023 -a 0 -x {9.0 10.0 3016 ------- null} r -t 3.4139 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6009 -a 0 -x {9.0 10.0 3009 ------- null} + -t 3.4139 -s 10 -d 7 -p ack -e 40 -c 0 -i 6028 -a 0 -x {10.0 9.0 3009 ------- null} - -t 3.4139 -s 10 -d 7 -p ack -e 40 -c 0 -i 6028 -a 0 -x {10.0 9.0 3009 ------- null} h -t 3.4139 -s 10 -d 7 -p ack -e 40 -c 0 -i 6028 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.41437 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6015 -a 0 -x {9.0 10.0 3012 ------- null} - -t 3.41437 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6015 -a 0 -x {9.0 10.0 3012 ------- null} h -t 3.41437 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6015 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.41443 -s 0 -d 9 -p ack -e 40 -c 0 -i 6018 -a 0 -x {10.0 9.0 3004 ------- null} + -t 3.41443 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6029 -a 0 -x {9.0 10.0 3019 ------- null} - -t 3.41443 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6029 -a 0 -x {9.0 10.0 3019 ------- null} h -t 3.41443 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6029 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.41461 -s 0 -d 9 -p ack -e 40 -c 0 -i 6022 -a 0 -x {10.0 9.0 3006 ------- null} - -t 3.41461 -s 0 -d 9 -p ack -e 40 -c 0 -i 6022 -a 0 -x {10.0 9.0 3006 ------- null} h -t 3.41461 -s 0 -d 9 -p ack -e 40 -c 0 -i 6022 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.41485 -s 10 -d 7 -p ack -e 40 -c 0 -i 6026 -a 0 -x {10.0 9.0 3008 ------- null} + -t 3.41485 -s 7 -d 0 -p ack -e 40 -c 0 -i 6026 -a 0 -x {10.0 9.0 3008 ------- null} h -t 3.41485 -s 7 -d 8 -p ack -e 40 -c 0 -i 6026 -a 0 -x {10.0 9.0 3008 ------- null} r -t 3.41499 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6011 -a 0 -x {9.0 10.0 3010 ------- null} + -t 3.41499 -s 10 -d 7 -p ack -e 40 -c 0 -i 6030 -a 0 -x {10.0 9.0 3010 ------- null} - -t 3.41499 -s 10 -d 7 -p ack -e 40 -c 0 -i 6030 -a 0 -x {10.0 9.0 3010 ------- null} h -t 3.41499 -s 10 -d 7 -p ack -e 40 -c 0 -i 6030 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.41499 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6025 -a 0 -x {9.0 10.0 3017 ------- null} + -t 3.41499 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6025 -a 0 -x {9.0 10.0 3017 ------- null} h -t 3.41499 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6025 -a 0 -x {9.0 10.0 3017 ------- null} + -t 3.41546 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6017 -a 0 -x {9.0 10.0 3013 ------- null} - -t 3.41546 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6017 -a 0 -x {9.0 10.0 3013 ------- null} h -t 3.41546 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6017 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.41552 -s 0 -d 9 -p ack -e 40 -c 0 -i 6020 -a 0 -x {10.0 9.0 3005 ------- null} + -t 3.41552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6031 -a 0 -x {9.0 10.0 3020 ------- null} - -t 3.41552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6031 -a 0 -x {9.0 10.0 3020 ------- null} h -t 3.41552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6031 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.41571 -s 0 -d 9 -p ack -e 40 -c 0 -i 6024 -a 0 -x {10.0 9.0 3007 ------- null} - -t 3.41571 -s 0 -d 9 -p ack -e 40 -c 0 -i 6024 -a 0 -x {10.0 9.0 3007 ------- null} h -t 3.41571 -s 0 -d 9 -p ack -e 40 -c 0 -i 6024 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.41594 -s 10 -d 7 -p ack -e 40 -c 0 -i 6028 -a 0 -x {10.0 9.0 3009 ------- null} + -t 3.41594 -s 7 -d 0 -p ack -e 40 -c 0 -i 6028 -a 0 -x {10.0 9.0 3009 ------- null} h -t 3.41594 -s 7 -d 8 -p ack -e 40 -c 0 -i 6028 -a 0 -x {10.0 9.0 3009 ------- null} r -t 3.41605 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6027 -a 0 -x {9.0 10.0 3018 ------- null} + -t 3.41605 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6027 -a 0 -x {9.0 10.0 3018 ------- null} h -t 3.41605 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6027 -a 0 -x {9.0 10.0 3018 ------- null} r -t 3.41608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6013 -a 0 -x {9.0 10.0 3011 ------- null} + -t 3.41608 -s 10 -d 7 -p ack -e 40 -c 0 -i 6032 -a 0 -x {10.0 9.0 3011 ------- null} - -t 3.41608 -s 10 -d 7 -p ack -e 40 -c 0 -i 6032 -a 0 -x {10.0 9.0 3011 ------- null} h -t 3.41608 -s 10 -d 7 -p ack -e 40 -c 0 -i 6032 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.41656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6019 -a 0 -x {9.0 10.0 3014 ------- null} - -t 3.41656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6019 -a 0 -x {9.0 10.0 3014 ------- null} h -t 3.41656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6019 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.41664 -s 0 -d 9 -p ack -e 40 -c 0 -i 6022 -a 0 -x {10.0 9.0 3006 ------- null} + -t 3.41664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6033 -a 0 -x {9.0 10.0 3021 ------- null} - -t 3.41664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6033 -a 0 -x {9.0 10.0 3021 ------- null} h -t 3.41664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6033 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.4168 -s 0 -d 9 -p ack -e 40 -c 0 -i 6026 -a 0 -x {10.0 9.0 3008 ------- null} - -t 3.4168 -s 0 -d 9 -p ack -e 40 -c 0 -i 6026 -a 0 -x {10.0 9.0 3008 ------- null} h -t 3.4168 -s 0 -d 9 -p ack -e 40 -c 0 -i 6026 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.41702 -s 10 -d 7 -p ack -e 40 -c 0 -i 6030 -a 0 -x {10.0 9.0 3010 ------- null} + -t 3.41702 -s 7 -d 0 -p ack -e 40 -c 0 -i 6030 -a 0 -x {10.0 9.0 3010 ------- null} h -t 3.41702 -s 7 -d 8 -p ack -e 40 -c 0 -i 6030 -a 0 -x {10.0 9.0 3010 ------- null} r -t 3.41717 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6015 -a 0 -x {9.0 10.0 3012 ------- null} + -t 3.41717 -s 10 -d 7 -p ack -e 40 -c 0 -i 6034 -a 0 -x {10.0 9.0 3012 ------- null} - -t 3.41717 -s 10 -d 7 -p ack -e 40 -c 0 -i 6034 -a 0 -x {10.0 9.0 3012 ------- null} h -t 3.41717 -s 10 -d 7 -p ack -e 40 -c 0 -i 6034 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.41723 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6029 -a 0 -x {9.0 10.0 3019 ------- null} + -t 3.41723 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6029 -a 0 -x {9.0 10.0 3019 ------- null} h -t 3.41723 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6029 -a 0 -x {9.0 10.0 3019 ------- null} + -t 3.41765 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6021 -a 0 -x {9.0 10.0 3015 ------- null} - -t 3.41765 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6021 -a 0 -x {9.0 10.0 3015 ------- null} h -t 3.41765 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6021 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.41774 -s 0 -d 9 -p ack -e 40 -c 0 -i 6024 -a 0 -x {10.0 9.0 3007 ------- null} + -t 3.41774 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6035 -a 0 -x {9.0 10.0 3022 ------- null} - -t 3.41774 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6035 -a 0 -x {9.0 10.0 3022 ------- null} h -t 3.41774 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6035 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.41792 -s 0 -d 9 -p ack -e 40 -c 0 -i 6028 -a 0 -x {10.0 9.0 3009 ------- null} - -t 3.41792 -s 0 -d 9 -p ack -e 40 -c 0 -i 6028 -a 0 -x {10.0 9.0 3009 ------- null} h -t 3.41792 -s 0 -d 9 -p ack -e 40 -c 0 -i 6028 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.41811 -s 10 -d 7 -p ack -e 40 -c 0 -i 6032 -a 0 -x {10.0 9.0 3011 ------- null} + -t 3.41811 -s 7 -d 0 -p ack -e 40 -c 0 -i 6032 -a 0 -x {10.0 9.0 3011 ------- null} h -t 3.41811 -s 7 -d 8 -p ack -e 40 -c 0 -i 6032 -a 0 -x {10.0 9.0 3011 ------- null} r -t 3.41826 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6017 -a 0 -x {9.0 10.0 3013 ------- null} + -t 3.41826 -s 10 -d 7 -p ack -e 40 -c 0 -i 6036 -a 0 -x {10.0 9.0 3013 ------- null} - -t 3.41826 -s 10 -d 7 -p ack -e 40 -c 0 -i 6036 -a 0 -x {10.0 9.0 3013 ------- null} h -t 3.41826 -s 10 -d 7 -p ack -e 40 -c 0 -i 6036 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.41832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6031 -a 0 -x {9.0 10.0 3020 ------- null} + -t 3.41832 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6031 -a 0 -x {9.0 10.0 3020 ------- null} h -t 3.41832 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6031 -a 0 -x {9.0 10.0 3020 ------- null} + -t 3.41882 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6023 -a 0 -x {9.0 10.0 3016 ------- null} - -t 3.41882 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6023 -a 0 -x {9.0 10.0 3016 ------- null} h -t 3.41882 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6023 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.41883 -s 0 -d 9 -p ack -e 40 -c 0 -i 6026 -a 0 -x {10.0 9.0 3008 ------- null} + -t 3.41883 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6037 -a 0 -x {9.0 10.0 3023 ------- null} - -t 3.41883 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6037 -a 0 -x {9.0 10.0 3023 ------- null} h -t 3.41883 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6037 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.41898 -s 0 -d 9 -p ack -e 40 -c 0 -i 6030 -a 0 -x {10.0 9.0 3010 ------- null} - -t 3.41898 -s 0 -d 9 -p ack -e 40 -c 0 -i 6030 -a 0 -x {10.0 9.0 3010 ------- null} h -t 3.41898 -s 0 -d 9 -p ack -e 40 -c 0 -i 6030 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.4192 -s 10 -d 7 -p ack -e 40 -c 0 -i 6034 -a 0 -x {10.0 9.0 3012 ------- null} + -t 3.4192 -s 7 -d 0 -p ack -e 40 -c 0 -i 6034 -a 0 -x {10.0 9.0 3012 ------- null} h -t 3.4192 -s 7 -d 8 -p ack -e 40 -c 0 -i 6034 -a 0 -x {10.0 9.0 3012 ------- null} r -t 3.41936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6019 -a 0 -x {9.0 10.0 3014 ------- null} + -t 3.41936 -s 10 -d 7 -p ack -e 40 -c 0 -i 6038 -a 0 -x {10.0 9.0 3014 ------- null} - -t 3.41936 -s 10 -d 7 -p ack -e 40 -c 0 -i 6038 -a 0 -x {10.0 9.0 3014 ------- null} h -t 3.41936 -s 10 -d 7 -p ack -e 40 -c 0 -i 6038 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.41944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6033 -a 0 -x {9.0 10.0 3021 ------- null} + -t 3.41944 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6033 -a 0 -x {9.0 10.0 3021 ------- null} h -t 3.41944 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6033 -a 0 -x {9.0 10.0 3021 ------- null} + -t 3.4199 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6025 -a 0 -x {9.0 10.0 3017 ------- null} - -t 3.4199 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6025 -a 0 -x {9.0 10.0 3017 ------- null} h -t 3.4199 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6025 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.41995 -s 0 -d 9 -p ack -e 40 -c 0 -i 6028 -a 0 -x {10.0 9.0 3009 ------- null} + -t 3.41995 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6039 -a 0 -x {9.0 10.0 3024 ------- null} - -t 3.41995 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6039 -a 0 -x {9.0 10.0 3024 ------- null} h -t 3.41995 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6039 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.41998 -s 0 -d 9 -p ack -e 40 -c 0 -i 6032 -a 0 -x {10.0 9.0 3011 ------- null} - -t 3.41998 -s 0 -d 9 -p ack -e 40 -c 0 -i 6032 -a 0 -x {10.0 9.0 3011 ------- null} h -t 3.41998 -s 0 -d 9 -p ack -e 40 -c 0 -i 6032 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.42029 -s 10 -d 7 -p ack -e 40 -c 0 -i 6036 -a 0 -x {10.0 9.0 3013 ------- null} + -t 3.42029 -s 7 -d 0 -p ack -e 40 -c 0 -i 6036 -a 0 -x {10.0 9.0 3013 ------- null} h -t 3.42029 -s 7 -d 8 -p ack -e 40 -c 0 -i 6036 -a 0 -x {10.0 9.0 3013 ------- null} r -t 3.42045 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6021 -a 0 -x {9.0 10.0 3015 ------- null} + -t 3.42045 -s 10 -d 7 -p ack -e 40 -c 0 -i 6040 -a 0 -x {10.0 9.0 3015 ------- null} - -t 3.42045 -s 10 -d 7 -p ack -e 40 -c 0 -i 6040 -a 0 -x {10.0 9.0 3015 ------- null} h -t 3.42045 -s 10 -d 7 -p ack -e 40 -c 0 -i 6040 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.42054 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6035 -a 0 -x {9.0 10.0 3022 ------- null} + -t 3.42054 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6035 -a 0 -x {9.0 10.0 3022 ------- null} h -t 3.42054 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6035 -a 0 -x {9.0 10.0 3022 ------- null} + -t 3.42099 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6027 -a 0 -x {9.0 10.0 3018 ------- null} - -t 3.42099 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6027 -a 0 -x {9.0 10.0 3018 ------- null} h -t 3.42099 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6027 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.42101 -s 0 -d 9 -p ack -e 40 -c 0 -i 6030 -a 0 -x {10.0 9.0 3010 ------- null} + -t 3.42101 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6041 -a 0 -x {9.0 10.0 3025 ------- null} - -t 3.42101 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6041 -a 0 -x {9.0 10.0 3025 ------- null} h -t 3.42101 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6041 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.42126 -s 0 -d 9 -p ack -e 40 -c 0 -i 6034 -a 0 -x {10.0 9.0 3012 ------- null} - -t 3.42126 -s 0 -d 9 -p ack -e 40 -c 0 -i 6034 -a 0 -x {10.0 9.0 3012 ------- null} h -t 3.42126 -s 0 -d 9 -p ack -e 40 -c 0 -i 6034 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.42139 -s 10 -d 7 -p ack -e 40 -c 0 -i 6038 -a 0 -x {10.0 9.0 3014 ------- null} + -t 3.42139 -s 7 -d 0 -p ack -e 40 -c 0 -i 6038 -a 0 -x {10.0 9.0 3014 ------- null} h -t 3.42139 -s 7 -d 8 -p ack -e 40 -c 0 -i 6038 -a 0 -x {10.0 9.0 3014 ------- null} r -t 3.42162 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6023 -a 0 -x {9.0 10.0 3016 ------- null} + -t 3.42162 -s 10 -d 7 -p ack -e 40 -c 0 -i 6042 -a 0 -x {10.0 9.0 3016 ------- null} - -t 3.42162 -s 10 -d 7 -p ack -e 40 -c 0 -i 6042 -a 0 -x {10.0 9.0 3016 ------- null} h -t 3.42162 -s 10 -d 7 -p ack -e 40 -c 0 -i 6042 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.42163 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6037 -a 0 -x {9.0 10.0 3023 ------- null} + -t 3.42163 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6037 -a 0 -x {9.0 10.0 3023 ------- null} h -t 3.42163 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6037 -a 0 -x {9.0 10.0 3023 ------- null} r -t 3.42202 -s 0 -d 9 -p ack -e 40 -c 0 -i 6032 -a 0 -x {10.0 9.0 3011 ------- null} + -t 3.42202 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6043 -a 0 -x {9.0 10.0 3026 ------- null} - -t 3.42202 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6043 -a 0 -x {9.0 10.0 3026 ------- null} h -t 3.42202 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6043 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.42213 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6029 -a 0 -x {9.0 10.0 3019 ------- null} - -t 3.42213 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6029 -a 0 -x {9.0 10.0 3019 ------- null} h -t 3.42213 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6029 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.42221 -s 0 -d 9 -p ack -e 40 -c 0 -i 6036 -a 0 -x {10.0 9.0 3013 ------- null} - -t 3.42221 -s 0 -d 9 -p ack -e 40 -c 0 -i 6036 -a 0 -x {10.0 9.0 3013 ------- null} h -t 3.42221 -s 0 -d 9 -p ack -e 40 -c 0 -i 6036 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.42248 -s 10 -d 7 -p ack -e 40 -c 0 -i 6040 -a 0 -x {10.0 9.0 3015 ------- null} + -t 3.42248 -s 7 -d 0 -p ack -e 40 -c 0 -i 6040 -a 0 -x {10.0 9.0 3015 ------- null} h -t 3.42248 -s 7 -d 8 -p ack -e 40 -c 0 -i 6040 -a 0 -x {10.0 9.0 3015 ------- null} r -t 3.4227 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6025 -a 0 -x {9.0 10.0 3017 ------- null} + -t 3.4227 -s 10 -d 7 -p ack -e 40 -c 0 -i 6044 -a 0 -x {10.0 9.0 3017 ------- null} - -t 3.4227 -s 10 -d 7 -p ack -e 40 -c 0 -i 6044 -a 0 -x {10.0 9.0 3017 ------- null} h -t 3.4227 -s 10 -d 7 -p ack -e 40 -c 0 -i 6044 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.42275 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6039 -a 0 -x {9.0 10.0 3024 ------- null} + -t 3.42275 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6039 -a 0 -x {9.0 10.0 3024 ------- null} h -t 3.42275 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6039 -a 0 -x {9.0 10.0 3024 ------- null} + -t 3.42322 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6031 -a 0 -x {9.0 10.0 3020 ------- null} - -t 3.42322 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6031 -a 0 -x {9.0 10.0 3020 ------- null} h -t 3.42322 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6031 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.4233 -s 0 -d 9 -p ack -e 40 -c 0 -i 6034 -a 0 -x {10.0 9.0 3012 ------- null} + -t 3.4233 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6045 -a 0 -x {9.0 10.0 3027 ------- null} - -t 3.4233 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6045 -a 0 -x {9.0 10.0 3027 ------- null} h -t 3.4233 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6045 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.42341 -s 0 -d 9 -p ack -e 40 -c 0 -i 6038 -a 0 -x {10.0 9.0 3014 ------- null} - -t 3.42341 -s 0 -d 9 -p ack -e 40 -c 0 -i 6038 -a 0 -x {10.0 9.0 3014 ------- null} h -t 3.42341 -s 0 -d 9 -p ack -e 40 -c 0 -i 6038 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.42365 -s 10 -d 7 -p ack -e 40 -c 0 -i 6042 -a 0 -x {10.0 9.0 3016 ------- null} + -t 3.42365 -s 7 -d 0 -p ack -e 40 -c 0 -i 6042 -a 0 -x {10.0 9.0 3016 ------- null} h -t 3.42365 -s 7 -d 8 -p ack -e 40 -c 0 -i 6042 -a 0 -x {10.0 9.0 3016 ------- null} r -t 3.42379 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6027 -a 0 -x {9.0 10.0 3018 ------- null} + -t 3.42379 -s 10 -d 7 -p ack -e 40 -c 0 -i 6046 -a 0 -x {10.0 9.0 3018 ------- null} - -t 3.42379 -s 10 -d 7 -p ack -e 40 -c 0 -i 6046 -a 0 -x {10.0 9.0 3018 ------- null} h -t 3.42379 -s 10 -d 7 -p ack -e 40 -c 0 -i 6046 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.42381 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6041 -a 0 -x {9.0 10.0 3025 ------- null} + -t 3.42381 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6041 -a 0 -x {9.0 10.0 3025 ------- null} h -t 3.42381 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6041 -a 0 -x {9.0 10.0 3025 ------- null} r -t 3.42424 -s 0 -d 9 -p ack -e 40 -c 0 -i 6036 -a 0 -x {10.0 9.0 3013 ------- null} + -t 3.42424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6047 -a 0 -x {9.0 10.0 3028 ------- null} - -t 3.42424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6047 -a 0 -x {9.0 10.0 3028 ------- null} h -t 3.42424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6047 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.4243 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6033 -a 0 -x {9.0 10.0 3021 ------- null} - -t 3.4243 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6033 -a 0 -x {9.0 10.0 3021 ------- null} h -t 3.4243 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6033 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.42448 -s 0 -d 9 -p ack -e 40 -c 0 -i 6040 -a 0 -x {10.0 9.0 3015 ------- null} - -t 3.42448 -s 0 -d 9 -p ack -e 40 -c 0 -i 6040 -a 0 -x {10.0 9.0 3015 ------- null} h -t 3.42448 -s 0 -d 9 -p ack -e 40 -c 0 -i 6040 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.42474 -s 10 -d 7 -p ack -e 40 -c 0 -i 6044 -a 0 -x {10.0 9.0 3017 ------- null} + -t 3.42474 -s 7 -d 0 -p ack -e 40 -c 0 -i 6044 -a 0 -x {10.0 9.0 3017 ------- null} h -t 3.42474 -s 7 -d 8 -p ack -e 40 -c 0 -i 6044 -a 0 -x {10.0 9.0 3017 ------- null} r -t 3.42482 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6043 -a 0 -x {9.0 10.0 3026 ------- null} + -t 3.42482 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6043 -a 0 -x {9.0 10.0 3026 ------- null} h -t 3.42482 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6043 -a 0 -x {9.0 10.0 3026 ------- null} r -t 3.42493 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6029 -a 0 -x {9.0 10.0 3019 ------- null} + -t 3.42493 -s 10 -d 7 -p ack -e 40 -c 0 -i 6048 -a 0 -x {10.0 9.0 3019 ------- null} - -t 3.42493 -s 10 -d 7 -p ack -e 40 -c 0 -i 6048 -a 0 -x {10.0 9.0 3019 ------- null} h -t 3.42493 -s 10 -d 7 -p ack -e 40 -c 0 -i 6048 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.42539 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6035 -a 0 -x {9.0 10.0 3022 ------- null} - -t 3.42539 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6035 -a 0 -x {9.0 10.0 3022 ------- null} h -t 3.42539 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6035 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.42544 -s 0 -d 9 -p ack -e 40 -c 0 -i 6038 -a 0 -x {10.0 9.0 3014 ------- null} + -t 3.42544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6049 -a 0 -x {9.0 10.0 3029 ------- null} - -t 3.42544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6049 -a 0 -x {9.0 10.0 3029 ------- null} h -t 3.42544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6049 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.42563 -s 0 -d 9 -p ack -e 40 -c 0 -i 6042 -a 0 -x {10.0 9.0 3016 ------- null} - -t 3.42563 -s 0 -d 9 -p ack -e 40 -c 0 -i 6042 -a 0 -x {10.0 9.0 3016 ------- null} h -t 3.42563 -s 0 -d 9 -p ack -e 40 -c 0 -i 6042 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.42582 -s 10 -d 7 -p ack -e 40 -c 0 -i 6046 -a 0 -x {10.0 9.0 3018 ------- null} + -t 3.42582 -s 7 -d 0 -p ack -e 40 -c 0 -i 6046 -a 0 -x {10.0 9.0 3018 ------- null} h -t 3.42582 -s 7 -d 8 -p ack -e 40 -c 0 -i 6046 -a 0 -x {10.0 9.0 3018 ------- null} r -t 3.42602 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6031 -a 0 -x {9.0 10.0 3020 ------- null} + -t 3.42602 -s 10 -d 7 -p ack -e 40 -c 0 -i 6050 -a 0 -x {10.0 9.0 3020 ------- null} - -t 3.42602 -s 10 -d 7 -p ack -e 40 -c 0 -i 6050 -a 0 -x {10.0 9.0 3020 ------- null} h -t 3.42602 -s 10 -d 7 -p ack -e 40 -c 0 -i 6050 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.4261 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6045 -a 0 -x {9.0 10.0 3027 ------- null} + -t 3.4261 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6045 -a 0 -x {9.0 10.0 3027 ------- null} h -t 3.4261 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6045 -a 0 -x {9.0 10.0 3027 ------- null} + -t 3.42648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6037 -a 0 -x {9.0 10.0 3023 ------- null} - -t 3.42648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6037 -a 0 -x {9.0 10.0 3023 ------- null} h -t 3.42648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6037 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.42651 -s 0 -d 9 -p ack -e 40 -c 0 -i 6040 -a 0 -x {10.0 9.0 3015 ------- null} + -t 3.42651 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6051 -a 0 -x {9.0 10.0 3030 ------- null} - -t 3.42651 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6051 -a 0 -x {9.0 10.0 3030 ------- null} h -t 3.42651 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6051 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.42656 -s 0 -d 9 -p ack -e 40 -c 0 -i 6044 -a 0 -x {10.0 9.0 3017 ------- null} - -t 3.42656 -s 0 -d 9 -p ack -e 40 -c 0 -i 6044 -a 0 -x {10.0 9.0 3017 ------- null} h -t 3.42656 -s 0 -d 9 -p ack -e 40 -c 0 -i 6044 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.42696 -s 10 -d 7 -p ack -e 40 -c 0 -i 6048 -a 0 -x {10.0 9.0 3019 ------- null} + -t 3.42696 -s 7 -d 0 -p ack -e 40 -c 0 -i 6048 -a 0 -x {10.0 9.0 3019 ------- null} h -t 3.42696 -s 7 -d 8 -p ack -e 40 -c 0 -i 6048 -a 0 -x {10.0 9.0 3019 ------- null} r -t 3.42704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6047 -a 0 -x {9.0 10.0 3028 ------- null} + -t 3.42704 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6047 -a 0 -x {9.0 10.0 3028 ------- null} h -t 3.42704 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6047 -a 0 -x {9.0 10.0 3028 ------- null} r -t 3.4271 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6033 -a 0 -x {9.0 10.0 3021 ------- null} + -t 3.4271 -s 10 -d 7 -p ack -e 40 -c 0 -i 6052 -a 0 -x {10.0 9.0 3021 ------- null} - -t 3.4271 -s 10 -d 7 -p ack -e 40 -c 0 -i 6052 -a 0 -x {10.0 9.0 3021 ------- null} h -t 3.4271 -s 10 -d 7 -p ack -e 40 -c 0 -i 6052 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.42757 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6039 -a 0 -x {9.0 10.0 3024 ------- null} - -t 3.42757 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6039 -a 0 -x {9.0 10.0 3024 ------- null} h -t 3.42757 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6039 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.42766 -s 0 -d 9 -p ack -e 40 -c 0 -i 6042 -a 0 -x {10.0 9.0 3016 ------- null} + -t 3.42766 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6053 -a 0 -x {9.0 10.0 3031 ------- null} - -t 3.42766 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6053 -a 0 -x {9.0 10.0 3031 ------- null} h -t 3.42766 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6053 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.42786 -s 0 -d 9 -p ack -e 40 -c 0 -i 6046 -a 0 -x {10.0 9.0 3018 ------- null} - -t 3.42786 -s 0 -d 9 -p ack -e 40 -c 0 -i 6046 -a 0 -x {10.0 9.0 3018 ------- null} h -t 3.42786 -s 0 -d 9 -p ack -e 40 -c 0 -i 6046 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.42805 -s 10 -d 7 -p ack -e 40 -c 0 -i 6050 -a 0 -x {10.0 9.0 3020 ------- null} + -t 3.42805 -s 7 -d 0 -p ack -e 40 -c 0 -i 6050 -a 0 -x {10.0 9.0 3020 ------- null} h -t 3.42805 -s 7 -d 8 -p ack -e 40 -c 0 -i 6050 -a 0 -x {10.0 9.0 3020 ------- null} r -t 3.42819 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6035 -a 0 -x {9.0 10.0 3022 ------- null} + -t 3.42819 -s 10 -d 7 -p ack -e 40 -c 0 -i 6054 -a 0 -x {10.0 9.0 3022 ------- null} - -t 3.42819 -s 10 -d 7 -p ack -e 40 -c 0 -i 6054 -a 0 -x {10.0 9.0 3022 ------- null} h -t 3.42819 -s 10 -d 7 -p ack -e 40 -c 0 -i 6054 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.42824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6049 -a 0 -x {9.0 10.0 3029 ------- null} + -t 3.42824 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6049 -a 0 -x {9.0 10.0 3029 ------- null} h -t 3.42824 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6049 -a 0 -x {9.0 10.0 3029 ------- null} r -t 3.42859 -s 0 -d 9 -p ack -e 40 -c 0 -i 6044 -a 0 -x {10.0 9.0 3017 ------- null} + -t 3.42859 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6055 -a 0 -x {9.0 10.0 3032 ------- null} - -t 3.42859 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6055 -a 0 -x {9.0 10.0 3032 ------- null} h -t 3.42859 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6055 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.42883 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6041 -a 0 -x {9.0 10.0 3025 ------- null} - -t 3.42883 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6041 -a 0 -x {9.0 10.0 3025 ------- null} h -t 3.42883 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6041 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.4291 -s 0 -d 9 -p ack -e 40 -c 0 -i 6048 -a 0 -x {10.0 9.0 3019 ------- null} - -t 3.4291 -s 0 -d 9 -p ack -e 40 -c 0 -i 6048 -a 0 -x {10.0 9.0 3019 ------- null} h -t 3.4291 -s 0 -d 9 -p ack -e 40 -c 0 -i 6048 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.42914 -s 10 -d 7 -p ack -e 40 -c 0 -i 6052 -a 0 -x {10.0 9.0 3021 ------- null} + -t 3.42914 -s 7 -d 0 -p ack -e 40 -c 0 -i 6052 -a 0 -x {10.0 9.0 3021 ------- null} h -t 3.42914 -s 7 -d 8 -p ack -e 40 -c 0 -i 6052 -a 0 -x {10.0 9.0 3021 ------- null} r -t 3.42928 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6037 -a 0 -x {9.0 10.0 3023 ------- null} + -t 3.42928 -s 10 -d 7 -p ack -e 40 -c 0 -i 6056 -a 0 -x {10.0 9.0 3023 ------- null} - -t 3.42928 -s 10 -d 7 -p ack -e 40 -c 0 -i 6056 -a 0 -x {10.0 9.0 3023 ------- null} h -t 3.42928 -s 10 -d 7 -p ack -e 40 -c 0 -i 6056 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.42931 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6051 -a 0 -x {9.0 10.0 3030 ------- null} + -t 3.42931 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6051 -a 0 -x {9.0 10.0 3030 ------- null} h -t 3.42931 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6051 -a 0 -x {9.0 10.0 3030 ------- null} r -t 3.42989 -s 0 -d 9 -p ack -e 40 -c 0 -i 6046 -a 0 -x {10.0 9.0 3018 ------- null} + -t 3.42989 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6057 -a 0 -x {9.0 10.0 3033 ------- null} - -t 3.42989 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6057 -a 0 -x {9.0 10.0 3033 ------- null} h -t 3.42989 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6057 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.43014 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6043 -a 0 -x {9.0 10.0 3026 ------- null} - -t 3.43014 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6043 -a 0 -x {9.0 10.0 3026 ------- null} h -t 3.43014 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6043 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.43022 -s 10 -d 7 -p ack -e 40 -c 0 -i 6054 -a 0 -x {10.0 9.0 3022 ------- null} + -t 3.43022 -s 7 -d 0 -p ack -e 40 -c 0 -i 6054 -a 0 -x {10.0 9.0 3022 ------- null} h -t 3.43022 -s 7 -d 8 -p ack -e 40 -c 0 -i 6054 -a 0 -x {10.0 9.0 3022 ------- null} r -t 3.43037 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6039 -a 0 -x {9.0 10.0 3024 ------- null} + -t 3.43037 -s 10 -d 7 -p ack -e 40 -c 0 -i 6058 -a 0 -x {10.0 9.0 3024 ------- null} - -t 3.43037 -s 10 -d 7 -p ack -e 40 -c 0 -i 6058 -a 0 -x {10.0 9.0 3024 ------- null} h -t 3.43037 -s 10 -d 7 -p ack -e 40 -c 0 -i 6058 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.43043 -s 0 -d 9 -p ack -e 40 -c 0 -i 6050 -a 0 -x {10.0 9.0 3020 ------- null} - -t 3.43043 -s 0 -d 9 -p ack -e 40 -c 0 -i 6050 -a 0 -x {10.0 9.0 3020 ------- null} h -t 3.43043 -s 0 -d 9 -p ack -e 40 -c 0 -i 6050 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.43046 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6053 -a 0 -x {9.0 10.0 3031 ------- null} + -t 3.43046 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6053 -a 0 -x {9.0 10.0 3031 ------- null} h -t 3.43046 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6053 -a 0 -x {9.0 10.0 3031 ------- null} r -t 3.43114 -s 0 -d 9 -p ack -e 40 -c 0 -i 6048 -a 0 -x {10.0 9.0 3019 ------- null} + -t 3.43114 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6059 -a 0 -x {9.0 10.0 3034 ------- null} - -t 3.43114 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6059 -a 0 -x {9.0 10.0 3034 ------- null} h -t 3.43114 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6059 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.43126 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6045 -a 0 -x {9.0 10.0 3027 ------- null} - -t 3.43126 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6045 -a 0 -x {9.0 10.0 3027 ------- null} h -t 3.43126 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6045 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.43131 -s 10 -d 7 -p ack -e 40 -c 0 -i 6056 -a 0 -x {10.0 9.0 3023 ------- null} + -t 3.43131 -s 7 -d 0 -p ack -e 40 -c 0 -i 6056 -a 0 -x {10.0 9.0 3023 ------- null} h -t 3.43131 -s 7 -d 8 -p ack -e 40 -c 0 -i 6056 -a 0 -x {10.0 9.0 3023 ------- null} r -t 3.43139 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6055 -a 0 -x {9.0 10.0 3032 ------- null} + -t 3.43139 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6055 -a 0 -x {9.0 10.0 3032 ------- null} h -t 3.43139 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6055 -a 0 -x {9.0 10.0 3032 ------- null} + -t 3.43142 -s 0 -d 9 -p ack -e 40 -c 0 -i 6052 -a 0 -x {10.0 9.0 3021 ------- null} - -t 3.43142 -s 0 -d 9 -p ack -e 40 -c 0 -i 6052 -a 0 -x {10.0 9.0 3021 ------- null} h -t 3.43142 -s 0 -d 9 -p ack -e 40 -c 0 -i 6052 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.43163 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6041 -a 0 -x {9.0 10.0 3025 ------- null} + -t 3.43163 -s 10 -d 7 -p ack -e 40 -c 0 -i 6060 -a 0 -x {10.0 9.0 3025 ------- null} - -t 3.43163 -s 10 -d 7 -p ack -e 40 -c 0 -i 6060 -a 0 -x {10.0 9.0 3025 ------- null} h -t 3.43163 -s 10 -d 7 -p ack -e 40 -c 0 -i 6060 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.43235 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6047 -a 0 -x {9.0 10.0 3028 ------- null} - -t 3.43235 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6047 -a 0 -x {9.0 10.0 3028 ------- null} h -t 3.43235 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6047 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.4324 -s 10 -d 7 -p ack -e 40 -c 0 -i 6058 -a 0 -x {10.0 9.0 3024 ------- null} + -t 3.4324 -s 7 -d 0 -p ack -e 40 -c 0 -i 6058 -a 0 -x {10.0 9.0 3024 ------- null} h -t 3.4324 -s 7 -d 8 -p ack -e 40 -c 0 -i 6058 -a 0 -x {10.0 9.0 3024 ------- null} r -t 3.43246 -s 0 -d 9 -p ack -e 40 -c 0 -i 6050 -a 0 -x {10.0 9.0 3020 ------- null} + -t 3.43246 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6061 -a 0 -x {9.0 10.0 3035 ------- null} - -t 3.43246 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6061 -a 0 -x {9.0 10.0 3035 ------- null} h -t 3.43246 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6061 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.43251 -s 0 -d 9 -p ack -e 40 -c 0 -i 6054 -a 0 -x {10.0 9.0 3022 ------- null} - -t 3.43251 -s 0 -d 9 -p ack -e 40 -c 0 -i 6054 -a 0 -x {10.0 9.0 3022 ------- null} h -t 3.43251 -s 0 -d 9 -p ack -e 40 -c 0 -i 6054 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.43269 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6057 -a 0 -x {9.0 10.0 3033 ------- null} + -t 3.43269 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6057 -a 0 -x {9.0 10.0 3033 ------- null} h -t 3.43269 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6057 -a 0 -x {9.0 10.0 3033 ------- null} r -t 3.43294 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6043 -a 0 -x {9.0 10.0 3026 ------- null} + -t 3.43294 -s 10 -d 7 -p ack -e 40 -c 0 -i 6062 -a 0 -x {10.0 9.0 3026 ------- null} - -t 3.43294 -s 10 -d 7 -p ack -e 40 -c 0 -i 6062 -a 0 -x {10.0 9.0 3026 ------- null} h -t 3.43294 -s 10 -d 7 -p ack -e 40 -c 0 -i 6062 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.43344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6049 -a 0 -x {9.0 10.0 3029 ------- null} - -t 3.43344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6049 -a 0 -x {9.0 10.0 3029 ------- null} h -t 3.43344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6049 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.43346 -s 0 -d 9 -p ack -e 40 -c 0 -i 6052 -a 0 -x {10.0 9.0 3021 ------- null} + -t 3.43346 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6063 -a 0 -x {9.0 10.0 3036 ------- null} - -t 3.43346 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6063 -a 0 -x {9.0 10.0 3036 ------- null} h -t 3.43346 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6063 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.4336 -s 0 -d 9 -p ack -e 40 -c 0 -i 6056 -a 0 -x {10.0 9.0 3023 ------- null} - -t 3.4336 -s 0 -d 9 -p ack -e 40 -c 0 -i 6056 -a 0 -x {10.0 9.0 3023 ------- null} h -t 3.4336 -s 0 -d 9 -p ack -e 40 -c 0 -i 6056 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.43366 -s 10 -d 7 -p ack -e 40 -c 0 -i 6060 -a 0 -x {10.0 9.0 3025 ------- null} + -t 3.43366 -s 7 -d 0 -p ack -e 40 -c 0 -i 6060 -a 0 -x {10.0 9.0 3025 ------- null} h -t 3.43366 -s 7 -d 8 -p ack -e 40 -c 0 -i 6060 -a 0 -x {10.0 9.0 3025 ------- null} r -t 3.43394 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6059 -a 0 -x {9.0 10.0 3034 ------- null} + -t 3.43394 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6059 -a 0 -x {9.0 10.0 3034 ------- null} h -t 3.43394 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6059 -a 0 -x {9.0 10.0 3034 ------- null} r -t 3.43406 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6045 -a 0 -x {9.0 10.0 3027 ------- null} + -t 3.43406 -s 10 -d 7 -p ack -e 40 -c 0 -i 6064 -a 0 -x {10.0 9.0 3027 ------- null} - -t 3.43406 -s 10 -d 7 -p ack -e 40 -c 0 -i 6064 -a 0 -x {10.0 9.0 3027 ------- null} h -t 3.43406 -s 10 -d 7 -p ack -e 40 -c 0 -i 6064 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.43453 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6051 -a 0 -x {9.0 10.0 3030 ------- null} - -t 3.43453 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6051 -a 0 -x {9.0 10.0 3030 ------- null} h -t 3.43453 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6051 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.43454 -s 0 -d 9 -p ack -e 40 -c 0 -i 6054 -a 0 -x {10.0 9.0 3022 ------- null} + -t 3.43454 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6065 -a 0 -x {9.0 10.0 3037 ------- null} - -t 3.43454 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6065 -a 0 -x {9.0 10.0 3037 ------- null} h -t 3.43454 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6065 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.43464 -s 0 -d 9 -p ack -e 40 -c 0 -i 6058 -a 0 -x {10.0 9.0 3024 ------- null} - -t 3.43464 -s 0 -d 9 -p ack -e 40 -c 0 -i 6058 -a 0 -x {10.0 9.0 3024 ------- null} h -t 3.43464 -s 0 -d 9 -p ack -e 40 -c 0 -i 6058 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.43498 -s 10 -d 7 -p ack -e 40 -c 0 -i 6062 -a 0 -x {10.0 9.0 3026 ------- null} + -t 3.43498 -s 7 -d 0 -p ack -e 40 -c 0 -i 6062 -a 0 -x {10.0 9.0 3026 ------- null} h -t 3.43498 -s 7 -d 8 -p ack -e 40 -c 0 -i 6062 -a 0 -x {10.0 9.0 3026 ------- null} r -t 3.43515 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6047 -a 0 -x {9.0 10.0 3028 ------- null} + -t 3.43515 -s 10 -d 7 -p ack -e 40 -c 0 -i 6066 -a 0 -x {10.0 9.0 3028 ------- null} - -t 3.43515 -s 10 -d 7 -p ack -e 40 -c 0 -i 6066 -a 0 -x {10.0 9.0 3028 ------- null} h -t 3.43515 -s 10 -d 7 -p ack -e 40 -c 0 -i 6066 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.43526 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6061 -a 0 -x {9.0 10.0 3035 ------- null} + -t 3.43526 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6061 -a 0 -x {9.0 10.0 3035 ------- null} h -t 3.43526 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6061 -a 0 -x {9.0 10.0 3035 ------- null} + -t 3.43562 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6053 -a 0 -x {9.0 10.0 3031 ------- null} - -t 3.43562 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6053 -a 0 -x {9.0 10.0 3031 ------- null} h -t 3.43562 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6053 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.43563 -s 0 -d 9 -p ack -e 40 -c 0 -i 6056 -a 0 -x {10.0 9.0 3023 ------- null} + -t 3.43563 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6067 -a 0 -x {9.0 10.0 3038 ------- null} - -t 3.43563 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6067 -a 0 -x {9.0 10.0 3038 ------- null} h -t 3.43563 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6067 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.43574 -s 0 -d 9 -p ack -e 40 -c 0 -i 6060 -a 0 -x {10.0 9.0 3025 ------- null} - -t 3.43574 -s 0 -d 9 -p ack -e 40 -c 0 -i 6060 -a 0 -x {10.0 9.0 3025 ------- null} h -t 3.43574 -s 0 -d 9 -p ack -e 40 -c 0 -i 6060 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.4361 -s 10 -d 7 -p ack -e 40 -c 0 -i 6064 -a 0 -x {10.0 9.0 3027 ------- null} + -t 3.4361 -s 7 -d 0 -p ack -e 40 -c 0 -i 6064 -a 0 -x {10.0 9.0 3027 ------- null} h -t 3.4361 -s 7 -d 8 -p ack -e 40 -c 0 -i 6064 -a 0 -x {10.0 9.0 3027 ------- null} r -t 3.43624 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6049 -a 0 -x {9.0 10.0 3029 ------- null} + -t 3.43624 -s 10 -d 7 -p ack -e 40 -c 0 -i 6068 -a 0 -x {10.0 9.0 3029 ------- null} - -t 3.43624 -s 10 -d 7 -p ack -e 40 -c 0 -i 6068 -a 0 -x {10.0 9.0 3029 ------- null} h -t 3.43624 -s 10 -d 7 -p ack -e 40 -c 0 -i 6068 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.43626 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6063 -a 0 -x {9.0 10.0 3036 ------- null} + -t 3.43626 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6063 -a 0 -x {9.0 10.0 3036 ------- null} h -t 3.43626 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6063 -a 0 -x {9.0 10.0 3036 ------- null} r -t 3.43667 -s 0 -d 9 -p ack -e 40 -c 0 -i 6058 -a 0 -x {10.0 9.0 3024 ------- null} + -t 3.43667 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6069 -a 0 -x {9.0 10.0 3039 ------- null} - -t 3.43667 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6069 -a 0 -x {9.0 10.0 3039 ------- null} h -t 3.43667 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6069 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.4367 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6055 -a 0 -x {9.0 10.0 3032 ------- null} - -t 3.4367 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6055 -a 0 -x {9.0 10.0 3032 ------- null} h -t 3.4367 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6055 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.4369 -s 0 -d 9 -p ack -e 40 -c 0 -i 6062 -a 0 -x {10.0 9.0 3026 ------- null} - -t 3.4369 -s 0 -d 9 -p ack -e 40 -c 0 -i 6062 -a 0 -x {10.0 9.0 3026 ------- null} h -t 3.4369 -s 0 -d 9 -p ack -e 40 -c 0 -i 6062 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.43718 -s 10 -d 7 -p ack -e 40 -c 0 -i 6066 -a 0 -x {10.0 9.0 3028 ------- null} + -t 3.43718 -s 7 -d 0 -p ack -e 40 -c 0 -i 6066 -a 0 -x {10.0 9.0 3028 ------- null} h -t 3.43718 -s 7 -d 8 -p ack -e 40 -c 0 -i 6066 -a 0 -x {10.0 9.0 3028 ------- null} r -t 3.43733 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6051 -a 0 -x {9.0 10.0 3030 ------- null} + -t 3.43733 -s 10 -d 7 -p ack -e 40 -c 0 -i 6070 -a 0 -x {10.0 9.0 3030 ------- null} - -t 3.43733 -s 10 -d 7 -p ack -e 40 -c 0 -i 6070 -a 0 -x {10.0 9.0 3030 ------- null} h -t 3.43733 -s 10 -d 7 -p ack -e 40 -c 0 -i 6070 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.43734 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6065 -a 0 -x {9.0 10.0 3037 ------- null} + -t 3.43734 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6065 -a 0 -x {9.0 10.0 3037 ------- null} h -t 3.43734 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6065 -a 0 -x {9.0 10.0 3037 ------- null} r -t 3.43778 -s 0 -d 9 -p ack -e 40 -c 0 -i 6060 -a 0 -x {10.0 9.0 3025 ------- null} + -t 3.43778 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6071 -a 0 -x {9.0 10.0 3040 ------- null} - -t 3.43778 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6071 -a 0 -x {9.0 10.0 3040 ------- null} h -t 3.43778 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6071 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.43779 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6057 -a 0 -x {9.0 10.0 3033 ------- null} - -t 3.43779 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6057 -a 0 -x {9.0 10.0 3033 ------- null} h -t 3.43779 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6057 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.43798 -s 0 -d 9 -p ack -e 40 -c 0 -i 6064 -a 0 -x {10.0 9.0 3027 ------- null} - -t 3.43798 -s 0 -d 9 -p ack -e 40 -c 0 -i 6064 -a 0 -x {10.0 9.0 3027 ------- null} h -t 3.43798 -s 0 -d 9 -p ack -e 40 -c 0 -i 6064 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.43827 -s 10 -d 7 -p ack -e 40 -c 0 -i 6068 -a 0 -x {10.0 9.0 3029 ------- null} + -t 3.43827 -s 7 -d 0 -p ack -e 40 -c 0 -i 6068 -a 0 -x {10.0 9.0 3029 ------- null} h -t 3.43827 -s 7 -d 8 -p ack -e 40 -c 0 -i 6068 -a 0 -x {10.0 9.0 3029 ------- null} r -t 3.43842 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6053 -a 0 -x {9.0 10.0 3031 ------- null} + -t 3.43842 -s 10 -d 7 -p ack -e 40 -c 0 -i 6072 -a 0 -x {10.0 9.0 3031 ------- null} - -t 3.43842 -s 10 -d 7 -p ack -e 40 -c 0 -i 6072 -a 0 -x {10.0 9.0 3031 ------- null} h -t 3.43842 -s 10 -d 7 -p ack -e 40 -c 0 -i 6072 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.43843 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6067 -a 0 -x {9.0 10.0 3038 ------- null} + -t 3.43843 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6067 -a 0 -x {9.0 10.0 3038 ------- null} h -t 3.43843 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6067 -a 0 -x {9.0 10.0 3038 ------- null} + -t 3.43888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6059 -a 0 -x {9.0 10.0 3034 ------- null} - -t 3.43888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6059 -a 0 -x {9.0 10.0 3034 ------- null} h -t 3.43888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6059 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.43893 -s 0 -d 9 -p ack -e 40 -c 0 -i 6062 -a 0 -x {10.0 9.0 3026 ------- null} + -t 3.43893 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6073 -a 0 -x {9.0 10.0 3041 ------- null} - -t 3.43893 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6073 -a 0 -x {9.0 10.0 3041 ------- null} h -t 3.43893 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6073 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.43894 -s 0 -d 9 -p ack -e 40 -c 0 -i 6066 -a 0 -x {10.0 9.0 3028 ------- null} - -t 3.43894 -s 0 -d 9 -p ack -e 40 -c 0 -i 6066 -a 0 -x {10.0 9.0 3028 ------- null} h -t 3.43894 -s 0 -d 9 -p ack -e 40 -c 0 -i 6066 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.43936 -s 10 -d 7 -p ack -e 40 -c 0 -i 6070 -a 0 -x {10.0 9.0 3030 ------- null} + -t 3.43936 -s 7 -d 0 -p ack -e 40 -c 0 -i 6070 -a 0 -x {10.0 9.0 3030 ------- null} h -t 3.43936 -s 7 -d 8 -p ack -e 40 -c 0 -i 6070 -a 0 -x {10.0 9.0 3030 ------- null} r -t 3.43947 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6069 -a 0 -x {9.0 10.0 3039 ------- null} + -t 3.43947 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6069 -a 0 -x {9.0 10.0 3039 ------- null} h -t 3.43947 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6069 -a 0 -x {9.0 10.0 3039 ------- null} r -t 3.4395 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6055 -a 0 -x {9.0 10.0 3032 ------- null} + -t 3.4395 -s 10 -d 7 -p ack -e 40 -c 0 -i 6074 -a 0 -x {10.0 9.0 3032 ------- null} - -t 3.4395 -s 10 -d 7 -p ack -e 40 -c 0 -i 6074 -a 0 -x {10.0 9.0 3032 ------- null} h -t 3.4395 -s 10 -d 7 -p ack -e 40 -c 0 -i 6074 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.43997 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6061 -a 0 -x {9.0 10.0 3035 ------- null} - -t 3.43997 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6061 -a 0 -x {9.0 10.0 3035 ------- null} h -t 3.43997 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6061 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.44002 -s 0 -d 9 -p ack -e 40 -c 0 -i 6064 -a 0 -x {10.0 9.0 3027 ------- null} + -t 3.44002 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6075 -a 0 -x {9.0 10.0 3042 ------- null} - -t 3.44002 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6075 -a 0 -x {9.0 10.0 3042 ------- null} h -t 3.44002 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6075 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.44018 -s 0 -d 9 -p ack -e 40 -c 0 -i 6068 -a 0 -x {10.0 9.0 3029 ------- null} - -t 3.44018 -s 0 -d 9 -p ack -e 40 -c 0 -i 6068 -a 0 -x {10.0 9.0 3029 ------- null} h -t 3.44018 -s 0 -d 9 -p ack -e 40 -c 0 -i 6068 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.44045 -s 10 -d 7 -p ack -e 40 -c 0 -i 6072 -a 0 -x {10.0 9.0 3031 ------- null} + -t 3.44045 -s 7 -d 0 -p ack -e 40 -c 0 -i 6072 -a 0 -x {10.0 9.0 3031 ------- null} h -t 3.44045 -s 7 -d 8 -p ack -e 40 -c 0 -i 6072 -a 0 -x {10.0 9.0 3031 ------- null} r -t 3.44058 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6071 -a 0 -x {9.0 10.0 3040 ------- null} + -t 3.44058 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6071 -a 0 -x {9.0 10.0 3040 ------- null} h -t 3.44058 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6071 -a 0 -x {9.0 10.0 3040 ------- null} r -t 3.44059 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6057 -a 0 -x {9.0 10.0 3033 ------- null} + -t 3.44059 -s 10 -d 7 -p ack -e 40 -c 0 -i 6076 -a 0 -x {10.0 9.0 3033 ------- null} - -t 3.44059 -s 10 -d 7 -p ack -e 40 -c 0 -i 6076 -a 0 -x {10.0 9.0 3033 ------- null} h -t 3.44059 -s 10 -d 7 -p ack -e 40 -c 0 -i 6076 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.44098 -s 0 -d 9 -p ack -e 40 -c 0 -i 6066 -a 0 -x {10.0 9.0 3028 ------- null} + -t 3.44098 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6077 -a 0 -x {9.0 10.0 3043 ------- null} - -t 3.44098 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6077 -a 0 -x {9.0 10.0 3043 ------- null} h -t 3.44098 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6077 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.44106 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6063 -a 0 -x {9.0 10.0 3036 ------- null} - -t 3.44106 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6063 -a 0 -x {9.0 10.0 3036 ------- null} h -t 3.44106 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6063 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.44131 -s 0 -d 9 -p ack -e 40 -c 0 -i 6070 -a 0 -x {10.0 9.0 3030 ------- null} - -t 3.44131 -s 0 -d 9 -p ack -e 40 -c 0 -i 6070 -a 0 -x {10.0 9.0 3030 ------- null} h -t 3.44131 -s 0 -d 9 -p ack -e 40 -c 0 -i 6070 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.44154 -s 10 -d 7 -p ack -e 40 -c 0 -i 6074 -a 0 -x {10.0 9.0 3032 ------- null} + -t 3.44154 -s 7 -d 0 -p ack -e 40 -c 0 -i 6074 -a 0 -x {10.0 9.0 3032 ------- null} h -t 3.44154 -s 7 -d 8 -p ack -e 40 -c 0 -i 6074 -a 0 -x {10.0 9.0 3032 ------- null} r -t 3.44168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6059 -a 0 -x {9.0 10.0 3034 ------- null} + -t 3.44168 -s 10 -d 7 -p ack -e 40 -c 0 -i 6078 -a 0 -x {10.0 9.0 3034 ------- null} - -t 3.44168 -s 10 -d 7 -p ack -e 40 -c 0 -i 6078 -a 0 -x {10.0 9.0 3034 ------- null} h -t 3.44168 -s 10 -d 7 -p ack -e 40 -c 0 -i 6078 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.44173 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6073 -a 0 -x {9.0 10.0 3041 ------- null} + -t 3.44173 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6073 -a 0 -x {9.0 10.0 3041 ------- null} h -t 3.44173 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6073 -a 0 -x {9.0 10.0 3041 ------- null} r -t 3.44221 -s 0 -d 9 -p ack -e 40 -c 0 -i 6068 -a 0 -x {10.0 9.0 3029 ------- null} + -t 3.44221 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6079 -a 0 -x {9.0 10.0 3044 ------- null} - -t 3.44221 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6079 -a 0 -x {9.0 10.0 3044 ------- null} h -t 3.44221 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6079 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.44232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6065 -a 0 -x {9.0 10.0 3037 ------- null} - -t 3.44232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6065 -a 0 -x {9.0 10.0 3037 ------- null} h -t 3.44232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6065 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.44253 -s 0 -d 9 -p ack -e 40 -c 0 -i 6072 -a 0 -x {10.0 9.0 3031 ------- null} - -t 3.44253 -s 0 -d 9 -p ack -e 40 -c 0 -i 6072 -a 0 -x {10.0 9.0 3031 ------- null} h -t 3.44253 -s 0 -d 9 -p ack -e 40 -c 0 -i 6072 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.44262 -s 10 -d 7 -p ack -e 40 -c 0 -i 6076 -a 0 -x {10.0 9.0 3033 ------- null} + -t 3.44262 -s 7 -d 0 -p ack -e 40 -c 0 -i 6076 -a 0 -x {10.0 9.0 3033 ------- null} h -t 3.44262 -s 7 -d 8 -p ack -e 40 -c 0 -i 6076 -a 0 -x {10.0 9.0 3033 ------- null} r -t 3.44277 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6061 -a 0 -x {9.0 10.0 3035 ------- null} + -t 3.44277 -s 10 -d 7 -p ack -e 40 -c 0 -i 6080 -a 0 -x {10.0 9.0 3035 ------- null} - -t 3.44277 -s 10 -d 7 -p ack -e 40 -c 0 -i 6080 -a 0 -x {10.0 9.0 3035 ------- null} h -t 3.44277 -s 10 -d 7 -p ack -e 40 -c 0 -i 6080 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.44282 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6075 -a 0 -x {9.0 10.0 3042 ------- null} + -t 3.44282 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6075 -a 0 -x {9.0 10.0 3042 ------- null} h -t 3.44282 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6075 -a 0 -x {9.0 10.0 3042 ------- null} r -t 3.44334 -s 0 -d 9 -p ack -e 40 -c 0 -i 6070 -a 0 -x {10.0 9.0 3030 ------- null} + -t 3.44334 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6081 -a 0 -x {9.0 10.0 3045 ------- null} - -t 3.44334 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6081 -a 0 -x {9.0 10.0 3045 ------- null} h -t 3.44334 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6081 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.44341 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6067 -a 0 -x {9.0 10.0 3038 ------- null} - -t 3.44341 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6067 -a 0 -x {9.0 10.0 3038 ------- null} h -t 3.44341 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6067 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.44358 -s 0 -d 9 -p ack -e 40 -c 0 -i 6074 -a 0 -x {10.0 9.0 3032 ------- null} - -t 3.44358 -s 0 -d 9 -p ack -e 40 -c 0 -i 6074 -a 0 -x {10.0 9.0 3032 ------- null} h -t 3.44358 -s 0 -d 9 -p ack -e 40 -c 0 -i 6074 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.44371 -s 10 -d 7 -p ack -e 40 -c 0 -i 6078 -a 0 -x {10.0 9.0 3034 ------- null} + -t 3.44371 -s 7 -d 0 -p ack -e 40 -c 0 -i 6078 -a 0 -x {10.0 9.0 3034 ------- null} h -t 3.44371 -s 7 -d 8 -p ack -e 40 -c 0 -i 6078 -a 0 -x {10.0 9.0 3034 ------- null} r -t 3.44378 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6077 -a 0 -x {9.0 10.0 3043 ------- null} + -t 3.44378 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6077 -a 0 -x {9.0 10.0 3043 ------- null} h -t 3.44378 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6077 -a 0 -x {9.0 10.0 3043 ------- null} r -t 3.44386 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6063 -a 0 -x {9.0 10.0 3036 ------- null} + -t 3.44386 -s 10 -d 7 -p ack -e 40 -c 0 -i 6082 -a 0 -x {10.0 9.0 3036 ------- null} - -t 3.44386 -s 10 -d 7 -p ack -e 40 -c 0 -i 6082 -a 0 -x {10.0 9.0 3036 ------- null} h -t 3.44386 -s 10 -d 7 -p ack -e 40 -c 0 -i 6082 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.4445 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6069 -a 0 -x {9.0 10.0 3039 ------- null} - -t 3.4445 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6069 -a 0 -x {9.0 10.0 3039 ------- null} h -t 3.4445 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6069 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.44456 -s 0 -d 9 -p ack -e 40 -c 0 -i 6072 -a 0 -x {10.0 9.0 3031 ------- null} + -t 3.44456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6083 -a 0 -x {9.0 10.0 3046 ------- null} - -t 3.44456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6083 -a 0 -x {9.0 10.0 3046 ------- null} h -t 3.44456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6083 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.44469 -s 0 -d 9 -p ack -e 40 -c 0 -i 6076 -a 0 -x {10.0 9.0 3033 ------- null} - -t 3.44469 -s 0 -d 9 -p ack -e 40 -c 0 -i 6076 -a 0 -x {10.0 9.0 3033 ------- null} h -t 3.44469 -s 0 -d 9 -p ack -e 40 -c 0 -i 6076 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.4448 -s 10 -d 7 -p ack -e 40 -c 0 -i 6080 -a 0 -x {10.0 9.0 3035 ------- null} + -t 3.4448 -s 7 -d 0 -p ack -e 40 -c 0 -i 6080 -a 0 -x {10.0 9.0 3035 ------- null} h -t 3.4448 -s 7 -d 8 -p ack -e 40 -c 0 -i 6080 -a 0 -x {10.0 9.0 3035 ------- null} r -t 3.44501 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6079 -a 0 -x {9.0 10.0 3044 ------- null} + -t 3.44501 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6079 -a 0 -x {9.0 10.0 3044 ------- null} h -t 3.44501 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6079 -a 0 -x {9.0 10.0 3044 ------- null} r -t 3.44512 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6065 -a 0 -x {9.0 10.0 3037 ------- null} + -t 3.44512 -s 10 -d 7 -p ack -e 40 -c 0 -i 6084 -a 0 -x {10.0 9.0 3037 ------- null} - -t 3.44512 -s 10 -d 7 -p ack -e 40 -c 0 -i 6084 -a 0 -x {10.0 9.0 3037 ------- null} h -t 3.44512 -s 10 -d 7 -p ack -e 40 -c 0 -i 6084 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.44558 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6071 -a 0 -x {9.0 10.0 3040 ------- null} - -t 3.44558 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6071 -a 0 -x {9.0 10.0 3040 ------- null} h -t 3.44558 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6071 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.44562 -s 0 -d 9 -p ack -e 40 -c 0 -i 6074 -a 0 -x {10.0 9.0 3032 ------- null} + -t 3.44562 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6085 -a 0 -x {9.0 10.0 3047 ------- null} - -t 3.44562 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6085 -a 0 -x {9.0 10.0 3047 ------- null} h -t 3.44562 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6085 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.44576 -s 0 -d 9 -p ack -e 40 -c 0 -i 6078 -a 0 -x {10.0 9.0 3034 ------- null} - -t 3.44576 -s 0 -d 9 -p ack -e 40 -c 0 -i 6078 -a 0 -x {10.0 9.0 3034 ------- null} h -t 3.44576 -s 0 -d 9 -p ack -e 40 -c 0 -i 6078 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.44589 -s 10 -d 7 -p ack -e 40 -c 0 -i 6082 -a 0 -x {10.0 9.0 3036 ------- null} + -t 3.44589 -s 7 -d 0 -p ack -e 40 -c 0 -i 6082 -a 0 -x {10.0 9.0 3036 ------- null} h -t 3.44589 -s 7 -d 8 -p ack -e 40 -c 0 -i 6082 -a 0 -x {10.0 9.0 3036 ------- null} r -t 3.44614 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6081 -a 0 -x {9.0 10.0 3045 ------- null} + -t 3.44614 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6081 -a 0 -x {9.0 10.0 3045 ------- null} h -t 3.44614 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6081 -a 0 -x {9.0 10.0 3045 ------- null} r -t 3.44621 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6067 -a 0 -x {9.0 10.0 3038 ------- null} + -t 3.44621 -s 10 -d 7 -p ack -e 40 -c 0 -i 6086 -a 0 -x {10.0 9.0 3038 ------- null} - -t 3.44621 -s 10 -d 7 -p ack -e 40 -c 0 -i 6086 -a 0 -x {10.0 9.0 3038 ------- null} h -t 3.44621 -s 10 -d 7 -p ack -e 40 -c 0 -i 6086 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.44667 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6073 -a 0 -x {9.0 10.0 3041 ------- null} - -t 3.44667 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6073 -a 0 -x {9.0 10.0 3041 ------- null} h -t 3.44667 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6073 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.44672 -s 0 -d 9 -p ack -e 40 -c 0 -i 6076 -a 0 -x {10.0 9.0 3033 ------- null} + -t 3.44672 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6087 -a 0 -x {9.0 10.0 3048 ------- null} - -t 3.44672 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6087 -a 0 -x {9.0 10.0 3048 ------- null} h -t 3.44672 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6087 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.44678 -s 0 -d 9 -p ack -e 40 -c 0 -i 6080 -a 0 -x {10.0 9.0 3035 ------- null} - -t 3.44678 -s 0 -d 9 -p ack -e 40 -c 0 -i 6080 -a 0 -x {10.0 9.0 3035 ------- null} h -t 3.44678 -s 0 -d 9 -p ack -e 40 -c 0 -i 6080 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.44715 -s 10 -d 7 -p ack -e 40 -c 0 -i 6084 -a 0 -x {10.0 9.0 3037 ------- null} + -t 3.44715 -s 7 -d 0 -p ack -e 40 -c 0 -i 6084 -a 0 -x {10.0 9.0 3037 ------- null} h -t 3.44715 -s 7 -d 8 -p ack -e 40 -c 0 -i 6084 -a 0 -x {10.0 9.0 3037 ------- null} r -t 3.4473 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6069 -a 0 -x {9.0 10.0 3039 ------- null} + -t 3.4473 -s 10 -d 7 -p ack -e 40 -c 0 -i 6088 -a 0 -x {10.0 9.0 3039 ------- null} - -t 3.4473 -s 10 -d 7 -p ack -e 40 -c 0 -i 6088 -a 0 -x {10.0 9.0 3039 ------- null} h -t 3.4473 -s 10 -d 7 -p ack -e 40 -c 0 -i 6088 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.44736 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6083 -a 0 -x {9.0 10.0 3046 ------- null} + -t 3.44736 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6083 -a 0 -x {9.0 10.0 3046 ------- null} h -t 3.44736 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6083 -a 0 -x {9.0 10.0 3046 ------- null} + -t 3.44776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6075 -a 0 -x {9.0 10.0 3042 ------- null} - -t 3.44776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6075 -a 0 -x {9.0 10.0 3042 ------- null} h -t 3.44776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6075 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.44779 -s 0 -d 9 -p ack -e 40 -c 0 -i 6078 -a 0 -x {10.0 9.0 3034 ------- null} + -t 3.44779 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6089 -a 0 -x {9.0 10.0 3049 ------- null} - -t 3.44779 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6089 -a 0 -x {9.0 10.0 3049 ------- null} h -t 3.44779 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6089 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.44787 -s 0 -d 9 -p ack -e 40 -c 0 -i 6082 -a 0 -x {10.0 9.0 3036 ------- null} - -t 3.44787 -s 0 -d 9 -p ack -e 40 -c 0 -i 6082 -a 0 -x {10.0 9.0 3036 ------- null} h -t 3.44787 -s 0 -d 9 -p ack -e 40 -c 0 -i 6082 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.44824 -s 10 -d 7 -p ack -e 40 -c 0 -i 6086 -a 0 -x {10.0 9.0 3038 ------- null} + -t 3.44824 -s 7 -d 0 -p ack -e 40 -c 0 -i 6086 -a 0 -x {10.0 9.0 3038 ------- null} h -t 3.44824 -s 7 -d 8 -p ack -e 40 -c 0 -i 6086 -a 0 -x {10.0 9.0 3038 ------- null} r -t 3.44838 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6071 -a 0 -x {9.0 10.0 3040 ------- null} + -t 3.44838 -s 10 -d 7 -p ack -e 40 -c 0 -i 6090 -a 0 -x {10.0 9.0 3040 ------- null} - -t 3.44838 -s 10 -d 7 -p ack -e 40 -c 0 -i 6090 -a 0 -x {10.0 9.0 3040 ------- null} h -t 3.44838 -s 10 -d 7 -p ack -e 40 -c 0 -i 6090 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.44842 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6085 -a 0 -x {9.0 10.0 3047 ------- null} + -t 3.44842 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6085 -a 0 -x {9.0 10.0 3047 ------- null} h -t 3.44842 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6085 -a 0 -x {9.0 10.0 3047 ------- null} r -t 3.44882 -s 0 -d 9 -p ack -e 40 -c 0 -i 6080 -a 0 -x {10.0 9.0 3035 ------- null} + -t 3.44882 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6091 -a 0 -x {9.0 10.0 3050 ------- null} - -t 3.44882 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6091 -a 0 -x {9.0 10.0 3050 ------- null} h -t 3.44882 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6091 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.44885 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6077 -a 0 -x {9.0 10.0 3043 ------- null} - -t 3.44885 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6077 -a 0 -x {9.0 10.0 3043 ------- null} h -t 3.44885 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6077 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.44915 -s 0 -d 9 -p ack -e 40 -c 0 -i 6084 -a 0 -x {10.0 9.0 3037 ------- null} - -t 3.44915 -s 0 -d 9 -p ack -e 40 -c 0 -i 6084 -a 0 -x {10.0 9.0 3037 ------- null} h -t 3.44915 -s 0 -d 9 -p ack -e 40 -c 0 -i 6084 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.44933 -s 10 -d 7 -p ack -e 40 -c 0 -i 6088 -a 0 -x {10.0 9.0 3039 ------- null} + -t 3.44933 -s 7 -d 0 -p ack -e 40 -c 0 -i 6088 -a 0 -x {10.0 9.0 3039 ------- null} h -t 3.44933 -s 7 -d 8 -p ack -e 40 -c 0 -i 6088 -a 0 -x {10.0 9.0 3039 ------- null} r -t 3.44947 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6073 -a 0 -x {9.0 10.0 3041 ------- null} + -t 3.44947 -s 10 -d 7 -p ack -e 40 -c 0 -i 6092 -a 0 -x {10.0 9.0 3041 ------- null} - -t 3.44947 -s 10 -d 7 -p ack -e 40 -c 0 -i 6092 -a 0 -x {10.0 9.0 3041 ------- null} h -t 3.44947 -s 10 -d 7 -p ack -e 40 -c 0 -i 6092 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.44952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6087 -a 0 -x {9.0 10.0 3048 ------- null} + -t 3.44952 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6087 -a 0 -x {9.0 10.0 3048 ------- null} h -t 3.44952 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6087 -a 0 -x {9.0 10.0 3048 ------- null} r -t 3.4499 -s 0 -d 9 -p ack -e 40 -c 0 -i 6082 -a 0 -x {10.0 9.0 3036 ------- null} + -t 3.4499 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6093 -a 0 -x {9.0 10.0 3051 ------- null} - -t 3.4499 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6093 -a 0 -x {9.0 10.0 3051 ------- null} h -t 3.4499 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6093 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.45006 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6079 -a 0 -x {9.0 10.0 3044 ------- null} - -t 3.45006 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6079 -a 0 -x {9.0 10.0 3044 ------- null} h -t 3.45006 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6079 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.45034 -s 0 -d 9 -p ack -e 40 -c 0 -i 6086 -a 0 -x {10.0 9.0 3038 ------- null} - -t 3.45034 -s 0 -d 9 -p ack -e 40 -c 0 -i 6086 -a 0 -x {10.0 9.0 3038 ------- null} h -t 3.45034 -s 0 -d 9 -p ack -e 40 -c 0 -i 6086 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.45042 -s 10 -d 7 -p ack -e 40 -c 0 -i 6090 -a 0 -x {10.0 9.0 3040 ------- null} + -t 3.45042 -s 7 -d 0 -p ack -e 40 -c 0 -i 6090 -a 0 -x {10.0 9.0 3040 ------- null} h -t 3.45042 -s 7 -d 8 -p ack -e 40 -c 0 -i 6090 -a 0 -x {10.0 9.0 3040 ------- null} r -t 3.45056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6075 -a 0 -x {9.0 10.0 3042 ------- null} + -t 3.45056 -s 10 -d 7 -p ack -e 40 -c 0 -i 6094 -a 0 -x {10.0 9.0 3042 ------- null} - -t 3.45056 -s 10 -d 7 -p ack -e 40 -c 0 -i 6094 -a 0 -x {10.0 9.0 3042 ------- null} h -t 3.45056 -s 10 -d 7 -p ack -e 40 -c 0 -i 6094 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.45059 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6089 -a 0 -x {9.0 10.0 3049 ------- null} + -t 3.45059 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6089 -a 0 -x {9.0 10.0 3049 ------- null} h -t 3.45059 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6089 -a 0 -x {9.0 10.0 3049 ------- null} r -t 3.45118 -s 0 -d 9 -p ack -e 40 -c 0 -i 6084 -a 0 -x {10.0 9.0 3037 ------- null} + -t 3.45118 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6095 -a 0 -x {9.0 10.0 3052 ------- null} - -t 3.45118 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6095 -a 0 -x {9.0 10.0 3052 ------- null} h -t 3.45118 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6095 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.4513 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6081 -a 0 -x {9.0 10.0 3045 ------- null} - -t 3.4513 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6081 -a 0 -x {9.0 10.0 3045 ------- null} h -t 3.4513 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6081 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.45136 -s 0 -d 9 -p ack -e 40 -c 0 -i 6088 -a 0 -x {10.0 9.0 3039 ------- null} - -t 3.45136 -s 0 -d 9 -p ack -e 40 -c 0 -i 6088 -a 0 -x {10.0 9.0 3039 ------- null} h -t 3.45136 -s 0 -d 9 -p ack -e 40 -c 0 -i 6088 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.4515 -s 10 -d 7 -p ack -e 40 -c 0 -i 6092 -a 0 -x {10.0 9.0 3041 ------- null} + -t 3.4515 -s 7 -d 0 -p ack -e 40 -c 0 -i 6092 -a 0 -x {10.0 9.0 3041 ------- null} h -t 3.4515 -s 7 -d 8 -p ack -e 40 -c 0 -i 6092 -a 0 -x {10.0 9.0 3041 ------- null} r -t 3.45162 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6091 -a 0 -x {9.0 10.0 3050 ------- null} + -t 3.45162 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6091 -a 0 -x {9.0 10.0 3050 ------- null} h -t 3.45162 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6091 -a 0 -x {9.0 10.0 3050 ------- null} r -t 3.45165 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6077 -a 0 -x {9.0 10.0 3043 ------- null} + -t 3.45165 -s 10 -d 7 -p ack -e 40 -c 0 -i 6096 -a 0 -x {10.0 9.0 3043 ------- null} - -t 3.45165 -s 10 -d 7 -p ack -e 40 -c 0 -i 6096 -a 0 -x {10.0 9.0 3043 ------- null} h -t 3.45165 -s 10 -d 7 -p ack -e 40 -c 0 -i 6096 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.45237 -s 0 -d 9 -p ack -e 40 -c 0 -i 6086 -a 0 -x {10.0 9.0 3038 ------- null} + -t 3.45237 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6097 -a 0 -x {9.0 10.0 3053 ------- null} - -t 3.45237 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6097 -a 0 -x {9.0 10.0 3053 ------- null} h -t 3.45237 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6097 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.45238 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6083 -a 0 -x {9.0 10.0 3046 ------- null} - -t 3.45238 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6083 -a 0 -x {9.0 10.0 3046 ------- null} h -t 3.45238 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6083 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.4525 -s 0 -d 9 -p ack -e 40 -c 0 -i 6090 -a 0 -x {10.0 9.0 3040 ------- null} - -t 3.4525 -s 0 -d 9 -p ack -e 40 -c 0 -i 6090 -a 0 -x {10.0 9.0 3040 ------- null} h -t 3.4525 -s 0 -d 9 -p ack -e 40 -c 0 -i 6090 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.45259 -s 10 -d 7 -p ack -e 40 -c 0 -i 6094 -a 0 -x {10.0 9.0 3042 ------- null} + -t 3.45259 -s 7 -d 0 -p ack -e 40 -c 0 -i 6094 -a 0 -x {10.0 9.0 3042 ------- null} h -t 3.45259 -s 7 -d 8 -p ack -e 40 -c 0 -i 6094 -a 0 -x {10.0 9.0 3042 ------- null} r -t 3.4527 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6093 -a 0 -x {9.0 10.0 3051 ------- null} + -t 3.4527 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6093 -a 0 -x {9.0 10.0 3051 ------- null} h -t 3.4527 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6093 -a 0 -x {9.0 10.0 3051 ------- null} r -t 3.45286 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6079 -a 0 -x {9.0 10.0 3044 ------- null} + -t 3.45286 -s 10 -d 7 -p ack -e 40 -c 0 -i 6098 -a 0 -x {10.0 9.0 3044 ------- null} - -t 3.45286 -s 10 -d 7 -p ack -e 40 -c 0 -i 6098 -a 0 -x {10.0 9.0 3044 ------- null} h -t 3.45286 -s 10 -d 7 -p ack -e 40 -c 0 -i 6098 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.45339 -s 0 -d 9 -p ack -e 40 -c 0 -i 6088 -a 0 -x {10.0 9.0 3039 ------- null} + -t 3.45339 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6099 -a 0 -x {9.0 10.0 3054 ------- null} - -t 3.45339 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6099 -a 0 -x {9.0 10.0 3054 ------- null} h -t 3.45339 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6099 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.45347 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6085 -a 0 -x {9.0 10.0 3047 ------- null} - -t 3.45347 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6085 -a 0 -x {9.0 10.0 3047 ------- null} h -t 3.45347 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6085 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.45368 -s 10 -d 7 -p ack -e 40 -c 0 -i 6096 -a 0 -x {10.0 9.0 3043 ------- null} + -t 3.45368 -s 7 -d 0 -p ack -e 40 -c 0 -i 6096 -a 0 -x {10.0 9.0 3043 ------- null} h -t 3.45368 -s 7 -d 8 -p ack -e 40 -c 0 -i 6096 -a 0 -x {10.0 9.0 3043 ------- null} + -t 3.45373 -s 0 -d 9 -p ack -e 40 -c 0 -i 6092 -a 0 -x {10.0 9.0 3041 ------- null} - -t 3.45373 -s 0 -d 9 -p ack -e 40 -c 0 -i 6092 -a 0 -x {10.0 9.0 3041 ------- null} h -t 3.45373 -s 0 -d 9 -p ack -e 40 -c 0 -i 6092 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.45398 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6095 -a 0 -x {9.0 10.0 3052 ------- null} + -t 3.45398 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6095 -a 0 -x {9.0 10.0 3052 ------- null} h -t 3.45398 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6095 -a 0 -x {9.0 10.0 3052 ------- null} r -t 3.4541 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6081 -a 0 -x {9.0 10.0 3045 ------- null} + -t 3.4541 -s 10 -d 7 -p ack -e 40 -c 0 -i 6100 -a 0 -x {10.0 9.0 3045 ------- null} - -t 3.4541 -s 10 -d 7 -p ack -e 40 -c 0 -i 6100 -a 0 -x {10.0 9.0 3045 ------- null} h -t 3.4541 -s 10 -d 7 -p ack -e 40 -c 0 -i 6100 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.45453 -s 0 -d 9 -p ack -e 40 -c 0 -i 6090 -a 0 -x {10.0 9.0 3040 ------- null} + -t 3.45453 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6101 -a 0 -x {9.0 10.0 3055 ------- null} - -t 3.45453 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6101 -a 0 -x {9.0 10.0 3055 ------- null} h -t 3.45453 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6101 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.4548 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6087 -a 0 -x {9.0 10.0 3048 ------- null} - -t 3.4548 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6087 -a 0 -x {9.0 10.0 3048 ------- null} h -t 3.4548 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6087 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.4549 -s 10 -d 7 -p ack -e 40 -c 0 -i 6098 -a 0 -x {10.0 9.0 3044 ------- null} + -t 3.4549 -s 7 -d 0 -p ack -e 40 -c 0 -i 6098 -a 0 -x {10.0 9.0 3044 ------- null} h -t 3.4549 -s 7 -d 8 -p ack -e 40 -c 0 -i 6098 -a 0 -x {10.0 9.0 3044 ------- null} + -t 3.45506 -s 0 -d 9 -p ack -e 40 -c 0 -i 6094 -a 0 -x {10.0 9.0 3042 ------- null} - -t 3.45506 -s 0 -d 9 -p ack -e 40 -c 0 -i 6094 -a 0 -x {10.0 9.0 3042 ------- null} h -t 3.45506 -s 0 -d 9 -p ack -e 40 -c 0 -i 6094 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.45517 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6097 -a 0 -x {9.0 10.0 3053 ------- null} + -t 3.45517 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6097 -a 0 -x {9.0 10.0 3053 ------- null} h -t 3.45517 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6097 -a 0 -x {9.0 10.0 3053 ------- null} r -t 3.45518 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6083 -a 0 -x {9.0 10.0 3046 ------- null} + -t 3.45518 -s 10 -d 7 -p ack -e 40 -c 0 -i 6102 -a 0 -x {10.0 9.0 3046 ------- null} - -t 3.45518 -s 10 -d 7 -p ack -e 40 -c 0 -i 6102 -a 0 -x {10.0 9.0 3046 ------- null} h -t 3.45518 -s 10 -d 7 -p ack -e 40 -c 0 -i 6102 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.45576 -s 0 -d 9 -p ack -e 40 -c 0 -i 6092 -a 0 -x {10.0 9.0 3041 ------- null} + -t 3.45576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6103 -a 0 -x {9.0 10.0 3056 ------- null} - -t 3.45576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6103 -a 0 -x {9.0 10.0 3056 ------- null} h -t 3.45576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6103 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.4559 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6089 -a 0 -x {9.0 10.0 3049 ------- null} - -t 3.4559 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6089 -a 0 -x {9.0 10.0 3049 ------- null} h -t 3.4559 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6089 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.45611 -s 0 -d 9 -p ack -e 40 -c 0 -i 6096 -a 0 -x {10.0 9.0 3043 ------- null} - -t 3.45611 -s 0 -d 9 -p ack -e 40 -c 0 -i 6096 -a 0 -x {10.0 9.0 3043 ------- null} h -t 3.45611 -s 0 -d 9 -p ack -e 40 -c 0 -i 6096 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.45613 -s 10 -d 7 -p ack -e 40 -c 0 -i 6100 -a 0 -x {10.0 9.0 3045 ------- null} + -t 3.45613 -s 7 -d 0 -p ack -e 40 -c 0 -i 6100 -a 0 -x {10.0 9.0 3045 ------- null} h -t 3.45613 -s 7 -d 8 -p ack -e 40 -c 0 -i 6100 -a 0 -x {10.0 9.0 3045 ------- null} r -t 3.45619 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6099 -a 0 -x {9.0 10.0 3054 ------- null} + -t 3.45619 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6099 -a 0 -x {9.0 10.0 3054 ------- null} h -t 3.45619 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6099 -a 0 -x {9.0 10.0 3054 ------- null} r -t 3.45627 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6085 -a 0 -x {9.0 10.0 3047 ------- null} + -t 3.45627 -s 10 -d 7 -p ack -e 40 -c 0 -i 6104 -a 0 -x {10.0 9.0 3047 ------- null} - -t 3.45627 -s 10 -d 7 -p ack -e 40 -c 0 -i 6104 -a 0 -x {10.0 9.0 3047 ------- null} h -t 3.45627 -s 10 -d 7 -p ack -e 40 -c 0 -i 6104 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.45699 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6091 -a 0 -x {9.0 10.0 3050 ------- null} - -t 3.45699 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6091 -a 0 -x {9.0 10.0 3050 ------- null} h -t 3.45699 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6091 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.45709 -s 0 -d 9 -p ack -e 40 -c 0 -i 6094 -a 0 -x {10.0 9.0 3042 ------- null} + -t 3.45709 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6105 -a 0 -x {9.0 10.0 3057 ------- null} - -t 3.45709 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6105 -a 0 -x {9.0 10.0 3057 ------- null} h -t 3.45709 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6105 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.45722 -s 10 -d 7 -p ack -e 40 -c 0 -i 6102 -a 0 -x {10.0 9.0 3046 ------- null} + -t 3.45722 -s 7 -d 0 -p ack -e 40 -c 0 -i 6102 -a 0 -x {10.0 9.0 3046 ------- null} h -t 3.45722 -s 7 -d 8 -p ack -e 40 -c 0 -i 6102 -a 0 -x {10.0 9.0 3046 ------- null} + -t 3.45723 -s 0 -d 9 -p ack -e 40 -c 0 -i 6098 -a 0 -x {10.0 9.0 3044 ------- null} - -t 3.45723 -s 0 -d 9 -p ack -e 40 -c 0 -i 6098 -a 0 -x {10.0 9.0 3044 ------- null} h -t 3.45723 -s 0 -d 9 -p ack -e 40 -c 0 -i 6098 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.45733 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6101 -a 0 -x {9.0 10.0 3055 ------- null} + -t 3.45733 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6101 -a 0 -x {9.0 10.0 3055 ------- null} h -t 3.45733 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6101 -a 0 -x {9.0 10.0 3055 ------- null} r -t 3.4576 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6087 -a 0 -x {9.0 10.0 3048 ------- null} + -t 3.4576 -s 10 -d 7 -p ack -e 40 -c 0 -i 6106 -a 0 -x {10.0 9.0 3048 ------- null} - -t 3.4576 -s 10 -d 7 -p ack -e 40 -c 0 -i 6106 -a 0 -x {10.0 9.0 3048 ------- null} h -t 3.4576 -s 10 -d 7 -p ack -e 40 -c 0 -i 6106 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.45808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6093 -a 0 -x {9.0 10.0 3051 ------- null} - -t 3.45808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6093 -a 0 -x {9.0 10.0 3051 ------- null} h -t 3.45808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6093 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.45814 -s 0 -d 9 -p ack -e 40 -c 0 -i 6096 -a 0 -x {10.0 9.0 3043 ------- null} + -t 3.45814 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6107 -a 0 -x {9.0 10.0 3058 ------- null} - -t 3.45814 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6107 -a 0 -x {9.0 10.0 3058 ------- null} h -t 3.45814 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6107 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.4583 -s 10 -d 7 -p ack -e 40 -c 0 -i 6104 -a 0 -x {10.0 9.0 3047 ------- null} + -t 3.4583 -s 7 -d 0 -p ack -e 40 -c 0 -i 6104 -a 0 -x {10.0 9.0 3047 ------- null} h -t 3.4583 -s 7 -d 8 -p ack -e 40 -c 0 -i 6104 -a 0 -x {10.0 9.0 3047 ------- null} + -t 3.45835 -s 0 -d 9 -p ack -e 40 -c 0 -i 6100 -a 0 -x {10.0 9.0 3045 ------- null} - -t 3.45835 -s 0 -d 9 -p ack -e 40 -c 0 -i 6100 -a 0 -x {10.0 9.0 3045 ------- null} h -t 3.45835 -s 0 -d 9 -p ack -e 40 -c 0 -i 6100 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.45856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6103 -a 0 -x {9.0 10.0 3056 ------- null} + -t 3.45856 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6103 -a 0 -x {9.0 10.0 3056 ------- null} h -t 3.45856 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6103 -a 0 -x {9.0 10.0 3056 ------- null} r -t 3.4587 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6089 -a 0 -x {9.0 10.0 3049 ------- null} + -t 3.4587 -s 10 -d 7 -p ack -e 40 -c 0 -i 6108 -a 0 -x {10.0 9.0 3049 ------- null} - -t 3.4587 -s 10 -d 7 -p ack -e 40 -c 0 -i 6108 -a 0 -x {10.0 9.0 3049 ------- null} h -t 3.4587 -s 10 -d 7 -p ack -e 40 -c 0 -i 6108 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.45926 -s 0 -d 9 -p ack -e 40 -c 0 -i 6098 -a 0 -x {10.0 9.0 3044 ------- null} + -t 3.45926 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6109 -a 0 -x {9.0 10.0 3059 ------- null} - -t 3.45926 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6109 -a 0 -x {9.0 10.0 3059 ------- null} h -t 3.45926 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6109 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.45928 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6095 -a 0 -x {9.0 10.0 3052 ------- null} - -t 3.45928 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6095 -a 0 -x {9.0 10.0 3052 ------- null} h -t 3.45928 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6095 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.45949 -s 0 -d 9 -p ack -e 40 -c 0 -i 6102 -a 0 -x {10.0 9.0 3046 ------- null} - -t 3.45949 -s 0 -d 9 -p ack -e 40 -c 0 -i 6102 -a 0 -x {10.0 9.0 3046 ------- null} h -t 3.45949 -s 0 -d 9 -p ack -e 40 -c 0 -i 6102 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.45963 -s 10 -d 7 -p ack -e 40 -c 0 -i 6106 -a 0 -x {10.0 9.0 3048 ------- null} + -t 3.45963 -s 7 -d 0 -p ack -e 40 -c 0 -i 6106 -a 0 -x {10.0 9.0 3048 ------- null} h -t 3.45963 -s 7 -d 8 -p ack -e 40 -c 0 -i 6106 -a 0 -x {10.0 9.0 3048 ------- null} r -t 3.45979 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6091 -a 0 -x {9.0 10.0 3050 ------- null} + -t 3.45979 -s 10 -d 7 -p ack -e 40 -c 0 -i 6110 -a 0 -x {10.0 9.0 3050 ------- null} - -t 3.45979 -s 10 -d 7 -p ack -e 40 -c 0 -i 6110 -a 0 -x {10.0 9.0 3050 ------- null} h -t 3.45979 -s 10 -d 7 -p ack -e 40 -c 0 -i 6110 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.45989 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6105 -a 0 -x {9.0 10.0 3057 ------- null} + -t 3.45989 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6105 -a 0 -x {9.0 10.0 3057 ------- null} h -t 3.45989 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6105 -a 0 -x {9.0 10.0 3057 ------- null} + -t 3.46037 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6097 -a 0 -x {9.0 10.0 3053 ------- null} - -t 3.46037 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6097 -a 0 -x {9.0 10.0 3053 ------- null} h -t 3.46037 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6097 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.46038 -s 0 -d 9 -p ack -e 40 -c 0 -i 6100 -a 0 -x {10.0 9.0 3045 ------- null} + -t 3.46038 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6111 -a 0 -x {9.0 10.0 3060 ------- null} - -t 3.46038 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6111 -a 0 -x {9.0 10.0 3060 ------- null} h -t 3.46038 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6111 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.46051 -s 0 -d 9 -p ack -e 40 -c 0 -i 6104 -a 0 -x {10.0 9.0 3047 ------- null} - -t 3.46051 -s 0 -d 9 -p ack -e 40 -c 0 -i 6104 -a 0 -x {10.0 9.0 3047 ------- null} h -t 3.46051 -s 0 -d 9 -p ack -e 40 -c 0 -i 6104 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.46074 -s 10 -d 7 -p ack -e 40 -c 0 -i 6108 -a 0 -x {10.0 9.0 3049 ------- null} + -t 3.46074 -s 7 -d 0 -p ack -e 40 -c 0 -i 6108 -a 0 -x {10.0 9.0 3049 ------- null} h -t 3.46074 -s 7 -d 8 -p ack -e 40 -c 0 -i 6108 -a 0 -x {10.0 9.0 3049 ------- null} r -t 3.46088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6093 -a 0 -x {9.0 10.0 3051 ------- null} + -t 3.46088 -s 10 -d 7 -p ack -e 40 -c 0 -i 6112 -a 0 -x {10.0 9.0 3051 ------- null} - -t 3.46088 -s 10 -d 7 -p ack -e 40 -c 0 -i 6112 -a 0 -x {10.0 9.0 3051 ------- null} h -t 3.46088 -s 10 -d 7 -p ack -e 40 -c 0 -i 6112 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.46094 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6107 -a 0 -x {9.0 10.0 3058 ------- null} + -t 3.46094 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6107 -a 0 -x {9.0 10.0 3058 ------- null} h -t 3.46094 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6107 -a 0 -x {9.0 10.0 3058 ------- null} + -t 3.46146 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6099 -a 0 -x {9.0 10.0 3054 ------- null} - -t 3.46146 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6099 -a 0 -x {9.0 10.0 3054 ------- null} h -t 3.46146 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6099 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.46152 -s 0 -d 9 -p ack -e 40 -c 0 -i 6102 -a 0 -x {10.0 9.0 3046 ------- null} + -t 3.46152 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6113 -a 0 -x {9.0 10.0 3061 ------- null} - -t 3.46152 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6113 -a 0 -x {9.0 10.0 3061 ------- null} h -t 3.46152 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6113 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.46155 -s 0 -d 9 -p ack -e 40 -c 0 -i 6106 -a 0 -x {10.0 9.0 3048 ------- null} - -t 3.46155 -s 0 -d 9 -p ack -e 40 -c 0 -i 6106 -a 0 -x {10.0 9.0 3048 ------- null} h -t 3.46155 -s 0 -d 9 -p ack -e 40 -c 0 -i 6106 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.46182 -s 10 -d 7 -p ack -e 40 -c 0 -i 6110 -a 0 -x {10.0 9.0 3050 ------- null} + -t 3.46182 -s 7 -d 0 -p ack -e 40 -c 0 -i 6110 -a 0 -x {10.0 9.0 3050 ------- null} h -t 3.46182 -s 7 -d 8 -p ack -e 40 -c 0 -i 6110 -a 0 -x {10.0 9.0 3050 ------- null} r -t 3.46206 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6109 -a 0 -x {9.0 10.0 3059 ------- null} + -t 3.46206 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6109 -a 0 -x {9.0 10.0 3059 ------- null} h -t 3.46206 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6109 -a 0 -x {9.0 10.0 3059 ------- null} r -t 3.46208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6095 -a 0 -x {9.0 10.0 3052 ------- null} + -t 3.46208 -s 10 -d 7 -p ack -e 40 -c 0 -i 6114 -a 0 -x {10.0 9.0 3052 ------- null} - -t 3.46208 -s 10 -d 7 -p ack -e 40 -c 0 -i 6114 -a 0 -x {10.0 9.0 3052 ------- null} h -t 3.46208 -s 10 -d 7 -p ack -e 40 -c 0 -i 6114 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.46254 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6101 -a 0 -x {9.0 10.0 3055 ------- null} - -t 3.46254 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6101 -a 0 -x {9.0 10.0 3055 ------- null} h -t 3.46254 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6101 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.46254 -s 0 -d 9 -p ack -e 40 -c 0 -i 6104 -a 0 -x {10.0 9.0 3047 ------- null} + -t 3.46254 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6115 -a 0 -x {9.0 10.0 3062 ------- null} - -t 3.46254 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6115 -a 0 -x {9.0 10.0 3062 ------- null} h -t 3.46254 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6115 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.46277 -s 0 -d 9 -p ack -e 40 -c 0 -i 6108 -a 0 -x {10.0 9.0 3049 ------- null} - -t 3.46277 -s 0 -d 9 -p ack -e 40 -c 0 -i 6108 -a 0 -x {10.0 9.0 3049 ------- null} h -t 3.46277 -s 0 -d 9 -p ack -e 40 -c 0 -i 6108 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.46291 -s 10 -d 7 -p ack -e 40 -c 0 -i 6112 -a 0 -x {10.0 9.0 3051 ------- null} + -t 3.46291 -s 7 -d 0 -p ack -e 40 -c 0 -i 6112 -a 0 -x {10.0 9.0 3051 ------- null} h -t 3.46291 -s 7 -d 8 -p ack -e 40 -c 0 -i 6112 -a 0 -x {10.0 9.0 3051 ------- null} r -t 3.46317 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6097 -a 0 -x {9.0 10.0 3053 ------- null} + -t 3.46317 -s 10 -d 7 -p ack -e 40 -c 0 -i 6116 -a 0 -x {10.0 9.0 3053 ------- null} - -t 3.46317 -s 10 -d 7 -p ack -e 40 -c 0 -i 6116 -a 0 -x {10.0 9.0 3053 ------- null} h -t 3.46317 -s 10 -d 7 -p ack -e 40 -c 0 -i 6116 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.46318 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6111 -a 0 -x {9.0 10.0 3060 ------- null} + -t 3.46318 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6111 -a 0 -x {9.0 10.0 3060 ------- null} h -t 3.46318 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6111 -a 0 -x {9.0 10.0 3060 ------- null} r -t 3.46358 -s 0 -d 9 -p ack -e 40 -c 0 -i 6106 -a 0 -x {10.0 9.0 3048 ------- null} + -t 3.46358 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6117 -a 0 -x {9.0 10.0 3063 ------- null} - -t 3.46358 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6117 -a 0 -x {9.0 10.0 3063 ------- null} h -t 3.46358 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6117 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.46363 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6103 -a 0 -x {9.0 10.0 3056 ------- null} - -t 3.46363 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6103 -a 0 -x {9.0 10.0 3056 ------- null} h -t 3.46363 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6103 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.46374 -s 0 -d 9 -p ack -e 40 -c 0 -i 6110 -a 0 -x {10.0 9.0 3050 ------- null} - -t 3.46374 -s 0 -d 9 -p ack -e 40 -c 0 -i 6110 -a 0 -x {10.0 9.0 3050 ------- null} h -t 3.46374 -s 0 -d 9 -p ack -e 40 -c 0 -i 6110 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.46411 -s 10 -d 7 -p ack -e 40 -c 0 -i 6114 -a 0 -x {10.0 9.0 3052 ------- null} + -t 3.46411 -s 7 -d 0 -p ack -e 40 -c 0 -i 6114 -a 0 -x {10.0 9.0 3052 ------- null} h -t 3.46411 -s 7 -d 8 -p ack -e 40 -c 0 -i 6114 -a 0 -x {10.0 9.0 3052 ------- null} r -t 3.46426 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6099 -a 0 -x {9.0 10.0 3054 ------- null} + -t 3.46426 -s 10 -d 7 -p ack -e 40 -c 0 -i 6118 -a 0 -x {10.0 9.0 3054 ------- null} - -t 3.46426 -s 10 -d 7 -p ack -e 40 -c 0 -i 6118 -a 0 -x {10.0 9.0 3054 ------- null} h -t 3.46426 -s 10 -d 7 -p ack -e 40 -c 0 -i 6118 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.46432 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6113 -a 0 -x {9.0 10.0 3061 ------- null} + -t 3.46432 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6113 -a 0 -x {9.0 10.0 3061 ------- null} h -t 3.46432 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6113 -a 0 -x {9.0 10.0 3061 ------- null} + -t 3.46472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6105 -a 0 -x {9.0 10.0 3057 ------- null} - -t 3.46472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6105 -a 0 -x {9.0 10.0 3057 ------- null} h -t 3.46472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6105 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.4648 -s 0 -d 9 -p ack -e 40 -c 0 -i 6108 -a 0 -x {10.0 9.0 3049 ------- null} + -t 3.4648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6119 -a 0 -x {9.0 10.0 3064 ------- null} - -t 3.4648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6119 -a 0 -x {9.0 10.0 3064 ------- null} h -t 3.4648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6119 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.46482 -s 0 -d 9 -p ack -e 40 -c 0 -i 6112 -a 0 -x {10.0 9.0 3051 ------- null} - -t 3.46482 -s 0 -d 9 -p ack -e 40 -c 0 -i 6112 -a 0 -x {10.0 9.0 3051 ------- null} h -t 3.46482 -s 0 -d 9 -p ack -e 40 -c 0 -i 6112 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.4652 -s 10 -d 7 -p ack -e 40 -c 0 -i 6116 -a 0 -x {10.0 9.0 3053 ------- null} + -t 3.4652 -s 7 -d 0 -p ack -e 40 -c 0 -i 6116 -a 0 -x {10.0 9.0 3053 ------- null} h -t 3.4652 -s 7 -d 8 -p ack -e 40 -c 0 -i 6116 -a 0 -x {10.0 9.0 3053 ------- null} r -t 3.46534 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6101 -a 0 -x {9.0 10.0 3055 ------- null} + -t 3.46534 -s 10 -d 7 -p ack -e 40 -c 0 -i 6120 -a 0 -x {10.0 9.0 3055 ------- null} - -t 3.46534 -s 10 -d 7 -p ack -e 40 -c 0 -i 6120 -a 0 -x {10.0 9.0 3055 ------- null} h -t 3.46534 -s 10 -d 7 -p ack -e 40 -c 0 -i 6120 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.46534 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6115 -a 0 -x {9.0 10.0 3062 ------- null} + -t 3.46534 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6115 -a 0 -x {9.0 10.0 3062 ------- null} h -t 3.46534 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6115 -a 0 -x {9.0 10.0 3062 ------- null} r -t 3.46578 -s 0 -d 9 -p ack -e 40 -c 0 -i 6110 -a 0 -x {10.0 9.0 3050 ------- null} + -t 3.46578 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6121 -a 0 -x {9.0 10.0 3065 ------- null} - -t 3.46578 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6121 -a 0 -x {9.0 10.0 3065 ------- null} h -t 3.46578 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6121 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.46581 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6107 -a 0 -x {9.0 10.0 3058 ------- null} - -t 3.46581 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6107 -a 0 -x {9.0 10.0 3058 ------- null} h -t 3.46581 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6107 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.46602 -s 0 -d 9 -p ack -e 40 -c 0 -i 6114 -a 0 -x {10.0 9.0 3052 ------- null} - -t 3.46602 -s 0 -d 9 -p ack -e 40 -c 0 -i 6114 -a 0 -x {10.0 9.0 3052 ------- null} h -t 3.46602 -s 0 -d 9 -p ack -e 40 -c 0 -i 6114 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.46629 -s 10 -d 7 -p ack -e 40 -c 0 -i 6118 -a 0 -x {10.0 9.0 3054 ------- null} + -t 3.46629 -s 7 -d 0 -p ack -e 40 -c 0 -i 6118 -a 0 -x {10.0 9.0 3054 ------- null} h -t 3.46629 -s 7 -d 8 -p ack -e 40 -c 0 -i 6118 -a 0 -x {10.0 9.0 3054 ------- null} r -t 3.46638 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6117 -a 0 -x {9.0 10.0 3063 ------- null} + -t 3.46638 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6117 -a 0 -x {9.0 10.0 3063 ------- null} h -t 3.46638 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6117 -a 0 -x {9.0 10.0 3063 ------- null} r -t 3.46643 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6103 -a 0 -x {9.0 10.0 3056 ------- null} + -t 3.46643 -s 10 -d 7 -p ack -e 40 -c 0 -i 6122 -a 0 -x {10.0 9.0 3056 ------- null} - -t 3.46643 -s 10 -d 7 -p ack -e 40 -c 0 -i 6122 -a 0 -x {10.0 9.0 3056 ------- null} h -t 3.46643 -s 10 -d 7 -p ack -e 40 -c 0 -i 6122 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.46685 -s 0 -d 9 -p ack -e 40 -c 0 -i 6112 -a 0 -x {10.0 9.0 3051 ------- null} + -t 3.46685 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6123 -a 0 -x {9.0 10.0 3066 ------- null} - -t 3.46685 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6123 -a 0 -x {9.0 10.0 3066 ------- null} h -t 3.46685 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6123 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.4669 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6109 -a 0 -x {9.0 10.0 3059 ------- null} - -t 3.4669 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6109 -a 0 -x {9.0 10.0 3059 ------- null} h -t 3.4669 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6109 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.46706 -s 0 -d 9 -p ack -e 40 -c 0 -i 6116 -a 0 -x {10.0 9.0 3053 ------- null} - -t 3.46706 -s 0 -d 9 -p ack -e 40 -c 0 -i 6116 -a 0 -x {10.0 9.0 3053 ------- null} h -t 3.46706 -s 0 -d 9 -p ack -e 40 -c 0 -i 6116 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.46738 -s 10 -d 7 -p ack -e 40 -c 0 -i 6120 -a 0 -x {10.0 9.0 3055 ------- null} + -t 3.46738 -s 7 -d 0 -p ack -e 40 -c 0 -i 6120 -a 0 -x {10.0 9.0 3055 ------- null} h -t 3.46738 -s 7 -d 8 -p ack -e 40 -c 0 -i 6120 -a 0 -x {10.0 9.0 3055 ------- null} r -t 3.46752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6105 -a 0 -x {9.0 10.0 3057 ------- null} + -t 3.46752 -s 10 -d 7 -p ack -e 40 -c 0 -i 6124 -a 0 -x {10.0 9.0 3057 ------- null} - -t 3.46752 -s 10 -d 7 -p ack -e 40 -c 0 -i 6124 -a 0 -x {10.0 9.0 3057 ------- null} h -t 3.46752 -s 10 -d 7 -p ack -e 40 -c 0 -i 6124 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.4676 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6119 -a 0 -x {9.0 10.0 3064 ------- null} + -t 3.4676 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6119 -a 0 -x {9.0 10.0 3064 ------- null} h -t 3.4676 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6119 -a 0 -x {9.0 10.0 3064 ------- null} + -t 3.46798 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6111 -a 0 -x {9.0 10.0 3060 ------- null} - -t 3.46798 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6111 -a 0 -x {9.0 10.0 3060 ------- null} h -t 3.46798 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6111 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.46805 -s 0 -d 9 -p ack -e 40 -c 0 -i 6114 -a 0 -x {10.0 9.0 3052 ------- null} + -t 3.46805 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6125 -a 0 -x {9.0 10.0 3067 ------- null} - -t 3.46805 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6125 -a 0 -x {9.0 10.0 3067 ------- null} h -t 3.46805 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6125 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.46818 -s 0 -d 9 -p ack -e 40 -c 0 -i 6118 -a 0 -x {10.0 9.0 3054 ------- null} - -t 3.46818 -s 0 -d 9 -p ack -e 40 -c 0 -i 6118 -a 0 -x {10.0 9.0 3054 ------- null} h -t 3.46818 -s 0 -d 9 -p ack -e 40 -c 0 -i 6118 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.46846 -s 10 -d 7 -p ack -e 40 -c 0 -i 6122 -a 0 -x {10.0 9.0 3056 ------- null} + -t 3.46846 -s 7 -d 0 -p ack -e 40 -c 0 -i 6122 -a 0 -x {10.0 9.0 3056 ------- null} h -t 3.46846 -s 7 -d 8 -p ack -e 40 -c 0 -i 6122 -a 0 -x {10.0 9.0 3056 ------- null} r -t 3.46858 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6121 -a 0 -x {9.0 10.0 3065 ------- null} + -t 3.46858 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6121 -a 0 -x {9.0 10.0 3065 ------- null} h -t 3.46858 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6121 -a 0 -x {9.0 10.0 3065 ------- null} r -t 3.46861 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6107 -a 0 -x {9.0 10.0 3058 ------- null} + -t 3.46861 -s 10 -d 7 -p ack -e 40 -c 0 -i 6126 -a 0 -x {10.0 9.0 3058 ------- null} - -t 3.46861 -s 10 -d 7 -p ack -e 40 -c 0 -i 6126 -a 0 -x {10.0 9.0 3058 ------- null} h -t 3.46861 -s 10 -d 7 -p ack -e 40 -c 0 -i 6126 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.46907 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6113 -a 0 -x {9.0 10.0 3061 ------- null} - -t 3.46907 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6113 -a 0 -x {9.0 10.0 3061 ------- null} h -t 3.46907 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6113 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.46909 -s 0 -d 9 -p ack -e 40 -c 0 -i 6116 -a 0 -x {10.0 9.0 3053 ------- null} + -t 3.46909 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6127 -a 0 -x {9.0 10.0 3068 ------- null} - -t 3.46909 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6127 -a 0 -x {9.0 10.0 3068 ------- null} h -t 3.46909 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6127 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.46918 -s 0 -d 9 -p ack -e 40 -c 0 -i 6120 -a 0 -x {10.0 9.0 3055 ------- null} - -t 3.46918 -s 0 -d 9 -p ack -e 40 -c 0 -i 6120 -a 0 -x {10.0 9.0 3055 ------- null} h -t 3.46918 -s 0 -d 9 -p ack -e 40 -c 0 -i 6120 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.46955 -s 10 -d 7 -p ack -e 40 -c 0 -i 6124 -a 0 -x {10.0 9.0 3057 ------- null} + -t 3.46955 -s 7 -d 0 -p ack -e 40 -c 0 -i 6124 -a 0 -x {10.0 9.0 3057 ------- null} h -t 3.46955 -s 7 -d 8 -p ack -e 40 -c 0 -i 6124 -a 0 -x {10.0 9.0 3057 ------- null} r -t 3.46965 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6123 -a 0 -x {9.0 10.0 3066 ------- null} + -t 3.46965 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6123 -a 0 -x {9.0 10.0 3066 ------- null} h -t 3.46965 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6123 -a 0 -x {9.0 10.0 3066 ------- null} r -t 3.4697 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6109 -a 0 -x {9.0 10.0 3059 ------- null} + -t 3.4697 -s 10 -d 7 -p ack -e 40 -c 0 -i 6128 -a 0 -x {10.0 9.0 3059 ------- null} - -t 3.4697 -s 10 -d 7 -p ack -e 40 -c 0 -i 6128 -a 0 -x {10.0 9.0 3059 ------- null} h -t 3.4697 -s 10 -d 7 -p ack -e 40 -c 0 -i 6128 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.47016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6115 -a 0 -x {9.0 10.0 3062 ------- null} - -t 3.47016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6115 -a 0 -x {9.0 10.0 3062 ------- null} h -t 3.47016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6115 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.47021 -s 0 -d 9 -p ack -e 40 -c 0 -i 6118 -a 0 -x {10.0 9.0 3054 ------- null} + -t 3.47021 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6129 -a 0 -x {9.0 10.0 3069 ------- null} - -t 3.47021 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6129 -a 0 -x {9.0 10.0 3069 ------- null} h -t 3.47021 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6129 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.47034 -s 0 -d 9 -p ack -e 40 -c 0 -i 6122 -a 0 -x {10.0 9.0 3056 ------- null} - -t 3.47034 -s 0 -d 9 -p ack -e 40 -c 0 -i 6122 -a 0 -x {10.0 9.0 3056 ------- null} h -t 3.47034 -s 0 -d 9 -p ack -e 40 -c 0 -i 6122 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.47064 -s 10 -d 7 -p ack -e 40 -c 0 -i 6126 -a 0 -x {10.0 9.0 3058 ------- null} + -t 3.47064 -s 7 -d 0 -p ack -e 40 -c 0 -i 6126 -a 0 -x {10.0 9.0 3058 ------- null} h -t 3.47064 -s 7 -d 8 -p ack -e 40 -c 0 -i 6126 -a 0 -x {10.0 9.0 3058 ------- null} r -t 3.47078 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6111 -a 0 -x {9.0 10.0 3060 ------- null} + -t 3.47078 -s 10 -d 7 -p ack -e 40 -c 0 -i 6130 -a 0 -x {10.0 9.0 3060 ------- null} - -t 3.47078 -s 10 -d 7 -p ack -e 40 -c 0 -i 6130 -a 0 -x {10.0 9.0 3060 ------- null} h -t 3.47078 -s 10 -d 7 -p ack -e 40 -c 0 -i 6130 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.47085 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6125 -a 0 -x {9.0 10.0 3067 ------- null} + -t 3.47085 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6125 -a 0 -x {9.0 10.0 3067 ------- null} h -t 3.47085 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6125 -a 0 -x {9.0 10.0 3067 ------- null} r -t 3.47122 -s 0 -d 9 -p ack -e 40 -c 0 -i 6120 -a 0 -x {10.0 9.0 3055 ------- null} + -t 3.47122 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6131 -a 0 -x {9.0 10.0 3070 ------- null} - -t 3.47122 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6131 -a 0 -x {9.0 10.0 3070 ------- null} h -t 3.47122 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6131 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.47125 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6117 -a 0 -x {9.0 10.0 3063 ------- null} - -t 3.47125 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6117 -a 0 -x {9.0 10.0 3063 ------- null} h -t 3.47125 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6117 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.47149 -s 0 -d 9 -p ack -e 40 -c 0 -i 6124 -a 0 -x {10.0 9.0 3057 ------- null} - -t 3.47149 -s 0 -d 9 -p ack -e 40 -c 0 -i 6124 -a 0 -x {10.0 9.0 3057 ------- null} h -t 3.47149 -s 0 -d 9 -p ack -e 40 -c 0 -i 6124 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.47173 -s 10 -d 7 -p ack -e 40 -c 0 -i 6128 -a 0 -x {10.0 9.0 3059 ------- null} + -t 3.47173 -s 7 -d 0 -p ack -e 40 -c 0 -i 6128 -a 0 -x {10.0 9.0 3059 ------- null} h -t 3.47173 -s 7 -d 8 -p ack -e 40 -c 0 -i 6128 -a 0 -x {10.0 9.0 3059 ------- null} r -t 3.47187 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6113 -a 0 -x {9.0 10.0 3061 ------- null} + -t 3.47187 -s 10 -d 7 -p ack -e 40 -c 0 -i 6132 -a 0 -x {10.0 9.0 3061 ------- null} - -t 3.47187 -s 10 -d 7 -p ack -e 40 -c 0 -i 6132 -a 0 -x {10.0 9.0 3061 ------- null} h -t 3.47187 -s 10 -d 7 -p ack -e 40 -c 0 -i 6132 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.47189 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6127 -a 0 -x {9.0 10.0 3068 ------- null} + -t 3.47189 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6127 -a 0 -x {9.0 10.0 3068 ------- null} h -t 3.47189 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6127 -a 0 -x {9.0 10.0 3068 ------- null} + -t 3.47234 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6119 -a 0 -x {9.0 10.0 3064 ------- null} - -t 3.47234 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6119 -a 0 -x {9.0 10.0 3064 ------- null} h -t 3.47234 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6119 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.47237 -s 0 -d 9 -p ack -e 40 -c 0 -i 6122 -a 0 -x {10.0 9.0 3056 ------- null} + -t 3.47237 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6133 -a 0 -x {9.0 10.0 3071 ------- null} - -t 3.47237 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6133 -a 0 -x {9.0 10.0 3071 ------- null} h -t 3.47237 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6133 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.4725 -s 0 -d 9 -p ack -e 40 -c 0 -i 6126 -a 0 -x {10.0 9.0 3058 ------- null} - -t 3.4725 -s 0 -d 9 -p ack -e 40 -c 0 -i 6126 -a 0 -x {10.0 9.0 3058 ------- null} h -t 3.4725 -s 0 -d 9 -p ack -e 40 -c 0 -i 6126 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.47282 -s 10 -d 7 -p ack -e 40 -c 0 -i 6130 -a 0 -x {10.0 9.0 3060 ------- null} + -t 3.47282 -s 7 -d 0 -p ack -e 40 -c 0 -i 6130 -a 0 -x {10.0 9.0 3060 ------- null} h -t 3.47282 -s 7 -d 8 -p ack -e 40 -c 0 -i 6130 -a 0 -x {10.0 9.0 3060 ------- null} r -t 3.47296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6115 -a 0 -x {9.0 10.0 3062 ------- null} + -t 3.47296 -s 10 -d 7 -p ack -e 40 -c 0 -i 6134 -a 0 -x {10.0 9.0 3062 ------- null} - -t 3.47296 -s 10 -d 7 -p ack -e 40 -c 0 -i 6134 -a 0 -x {10.0 9.0 3062 ------- null} h -t 3.47296 -s 10 -d 7 -p ack -e 40 -c 0 -i 6134 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.47301 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6129 -a 0 -x {9.0 10.0 3069 ------- null} + -t 3.47301 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6129 -a 0 -x {9.0 10.0 3069 ------- null} h -t 3.47301 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6129 -a 0 -x {9.0 10.0 3069 ------- null} + -t 3.47342 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6121 -a 0 -x {9.0 10.0 3065 ------- null} - -t 3.47342 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6121 -a 0 -x {9.0 10.0 3065 ------- null} h -t 3.47342 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6121 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.47352 -s 0 -d 9 -p ack -e 40 -c 0 -i 6124 -a 0 -x {10.0 9.0 3057 ------- null} + -t 3.47352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6135 -a 0 -x {9.0 10.0 3072 ------- null} - -t 3.47352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6135 -a 0 -x {9.0 10.0 3072 ------- null} h -t 3.47352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6135 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.47365 -s 0 -d 9 -p ack -e 40 -c 0 -i 6128 -a 0 -x {10.0 9.0 3059 ------- null} - -t 3.47365 -s 0 -d 9 -p ack -e 40 -c 0 -i 6128 -a 0 -x {10.0 9.0 3059 ------- null} h -t 3.47365 -s 0 -d 9 -p ack -e 40 -c 0 -i 6128 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.4739 -s 10 -d 7 -p ack -e 40 -c 0 -i 6132 -a 0 -x {10.0 9.0 3061 ------- null} + -t 3.4739 -s 7 -d 0 -p ack -e 40 -c 0 -i 6132 -a 0 -x {10.0 9.0 3061 ------- null} h -t 3.4739 -s 7 -d 8 -p ack -e 40 -c 0 -i 6132 -a 0 -x {10.0 9.0 3061 ------- null} r -t 3.47402 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6131 -a 0 -x {9.0 10.0 3070 ------- null} + -t 3.47402 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6131 -a 0 -x {9.0 10.0 3070 ------- null} h -t 3.47402 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6131 -a 0 -x {9.0 10.0 3070 ------- null} r -t 3.47405 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6117 -a 0 -x {9.0 10.0 3063 ------- null} + -t 3.47405 -s 10 -d 7 -p ack -e 40 -c 0 -i 6136 -a 0 -x {10.0 9.0 3063 ------- null} - -t 3.47405 -s 10 -d 7 -p ack -e 40 -c 0 -i 6136 -a 0 -x {10.0 9.0 3063 ------- null} h -t 3.47405 -s 10 -d 7 -p ack -e 40 -c 0 -i 6136 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.47451 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6123 -a 0 -x {9.0 10.0 3066 ------- null} - -t 3.47451 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6123 -a 0 -x {9.0 10.0 3066 ------- null} h -t 3.47451 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6123 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.47453 -s 0 -d 9 -p ack -e 40 -c 0 -i 6126 -a 0 -x {10.0 9.0 3058 ------- null} + -t 3.47453 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6137 -a 0 -x {9.0 10.0 3073 ------- null} - -t 3.47453 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6137 -a 0 -x {9.0 10.0 3073 ------- null} h -t 3.47453 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6137 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.47458 -s 0 -d 9 -p ack -e 40 -c 0 -i 6130 -a 0 -x {10.0 9.0 3060 ------- null} - -t 3.47458 -s 0 -d 9 -p ack -e 40 -c 0 -i 6130 -a 0 -x {10.0 9.0 3060 ------- null} h -t 3.47458 -s 0 -d 9 -p ack -e 40 -c 0 -i 6130 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.47499 -s 10 -d 7 -p ack -e 40 -c 0 -i 6134 -a 0 -x {10.0 9.0 3062 ------- null} + -t 3.47499 -s 7 -d 0 -p ack -e 40 -c 0 -i 6134 -a 0 -x {10.0 9.0 3062 ------- null} h -t 3.47499 -s 7 -d 8 -p ack -e 40 -c 0 -i 6134 -a 0 -x {10.0 9.0 3062 ------- null} r -t 3.47514 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6119 -a 0 -x {9.0 10.0 3064 ------- null} + -t 3.47514 -s 10 -d 7 -p ack -e 40 -c 0 -i 6138 -a 0 -x {10.0 9.0 3064 ------- null} - -t 3.47514 -s 10 -d 7 -p ack -e 40 -c 0 -i 6138 -a 0 -x {10.0 9.0 3064 ------- null} h -t 3.47514 -s 10 -d 7 -p ack -e 40 -c 0 -i 6138 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.47517 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6133 -a 0 -x {9.0 10.0 3071 ------- null} + -t 3.47517 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6133 -a 0 -x {9.0 10.0 3071 ------- null} h -t 3.47517 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6133 -a 0 -x {9.0 10.0 3071 ------- null} + -t 3.4756 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6125 -a 0 -x {9.0 10.0 3067 ------- null} - -t 3.4756 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6125 -a 0 -x {9.0 10.0 3067 ------- null} h -t 3.4756 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6125 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.47568 -s 0 -d 9 -p ack -e 40 -c 0 -i 6132 -a 0 -x {10.0 9.0 3061 ------- null} - -t 3.47568 -s 0 -d 9 -p ack -e 40 -c 0 -i 6132 -a 0 -x {10.0 9.0 3061 ------- null} h -t 3.47568 -s 0 -d 9 -p ack -e 40 -c 0 -i 6132 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.47568 -s 0 -d 9 -p ack -e 40 -c 0 -i 6128 -a 0 -x {10.0 9.0 3059 ------- null} + -t 3.47568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6139 -a 0 -x {9.0 10.0 3074 ------- null} - -t 3.47568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6139 -a 0 -x {9.0 10.0 3074 ------- null} h -t 3.47568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6139 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.47608 -s 10 -d 7 -p ack -e 40 -c 0 -i 6136 -a 0 -x {10.0 9.0 3063 ------- null} + -t 3.47608 -s 7 -d 0 -p ack -e 40 -c 0 -i 6136 -a 0 -x {10.0 9.0 3063 ------- null} h -t 3.47608 -s 7 -d 8 -p ack -e 40 -c 0 -i 6136 -a 0 -x {10.0 9.0 3063 ------- null} r -t 3.47622 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6121 -a 0 -x {9.0 10.0 3065 ------- null} + -t 3.47622 -s 10 -d 7 -p ack -e 40 -c 0 -i 6140 -a 0 -x {10.0 9.0 3065 ------- null} - -t 3.47622 -s 10 -d 7 -p ack -e 40 -c 0 -i 6140 -a 0 -x {10.0 9.0 3065 ------- null} h -t 3.47622 -s 10 -d 7 -p ack -e 40 -c 0 -i 6140 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.47632 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6135 -a 0 -x {9.0 10.0 3072 ------- null} + -t 3.47632 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6135 -a 0 -x {9.0 10.0 3072 ------- null} h -t 3.47632 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6135 -a 0 -x {9.0 10.0 3072 ------- null} r -t 3.47661 -s 0 -d 9 -p ack -e 40 -c 0 -i 6130 -a 0 -x {10.0 9.0 3060 ------- null} + -t 3.47661 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6141 -a 0 -x {9.0 10.0 3075 ------- null} - -t 3.47661 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6141 -a 0 -x {9.0 10.0 3075 ------- null} h -t 3.47661 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6141 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.47669 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6127 -a 0 -x {9.0 10.0 3068 ------- null} - -t 3.47669 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6127 -a 0 -x {9.0 10.0 3068 ------- null} h -t 3.47669 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6127 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.47683 -s 0 -d 9 -p ack -e 40 -c 0 -i 6134 -a 0 -x {10.0 9.0 3062 ------- null} - -t 3.47683 -s 0 -d 9 -p ack -e 40 -c 0 -i 6134 -a 0 -x {10.0 9.0 3062 ------- null} h -t 3.47683 -s 0 -d 9 -p ack -e 40 -c 0 -i 6134 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.47717 -s 10 -d 7 -p ack -e 40 -c 0 -i 6138 -a 0 -x {10.0 9.0 3064 ------- null} + -t 3.47717 -s 7 -d 0 -p ack -e 40 -c 0 -i 6138 -a 0 -x {10.0 9.0 3064 ------- null} h -t 3.47717 -s 7 -d 8 -p ack -e 40 -c 0 -i 6138 -a 0 -x {10.0 9.0 3064 ------- null} r -t 3.47731 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6123 -a 0 -x {9.0 10.0 3066 ------- null} + -t 3.47731 -s 10 -d 7 -p ack -e 40 -c 0 -i 6142 -a 0 -x {10.0 9.0 3066 ------- null} - -t 3.47731 -s 10 -d 7 -p ack -e 40 -c 0 -i 6142 -a 0 -x {10.0 9.0 3066 ------- null} h -t 3.47731 -s 10 -d 7 -p ack -e 40 -c 0 -i 6142 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.47733 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6137 -a 0 -x {9.0 10.0 3073 ------- null} + -t 3.47733 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6137 -a 0 -x {9.0 10.0 3073 ------- null} h -t 3.47733 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6137 -a 0 -x {9.0 10.0 3073 ------- null} r -t 3.47771 -s 0 -d 9 -p ack -e 40 -c 0 -i 6132 -a 0 -x {10.0 9.0 3061 ------- null} + -t 3.47771 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6143 -a 0 -x {9.0 10.0 3076 ------- null} - -t 3.47771 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6143 -a 0 -x {9.0 10.0 3076 ------- null} h -t 3.47771 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6143 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.47778 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6129 -a 0 -x {9.0 10.0 3069 ------- null} - -t 3.47778 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6129 -a 0 -x {9.0 10.0 3069 ------- null} h -t 3.47778 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6129 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.47798 -s 0 -d 9 -p ack -e 40 -c 0 -i 6136 -a 0 -x {10.0 9.0 3063 ------- null} - -t 3.47798 -s 0 -d 9 -p ack -e 40 -c 0 -i 6136 -a 0 -x {10.0 9.0 3063 ------- null} h -t 3.47798 -s 0 -d 9 -p ack -e 40 -c 0 -i 6136 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.47826 -s 10 -d 7 -p ack -e 40 -c 0 -i 6140 -a 0 -x {10.0 9.0 3065 ------- null} + -t 3.47826 -s 7 -d 0 -p ack -e 40 -c 0 -i 6140 -a 0 -x {10.0 9.0 3065 ------- null} h -t 3.47826 -s 7 -d 8 -p ack -e 40 -c 0 -i 6140 -a 0 -x {10.0 9.0 3065 ------- null} r -t 3.4784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6125 -a 0 -x {9.0 10.0 3067 ------- null} + -t 3.4784 -s 10 -d 7 -p ack -e 40 -c 0 -i 6144 -a 0 -x {10.0 9.0 3067 ------- null} - -t 3.4784 -s 10 -d 7 -p ack -e 40 -c 0 -i 6144 -a 0 -x {10.0 9.0 3067 ------- null} h -t 3.4784 -s 10 -d 7 -p ack -e 40 -c 0 -i 6144 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.47848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6139 -a 0 -x {9.0 10.0 3074 ------- null} + -t 3.47848 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6139 -a 0 -x {9.0 10.0 3074 ------- null} h -t 3.47848 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6139 -a 0 -x {9.0 10.0 3074 ------- null} + -t 3.47886 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6131 -a 0 -x {9.0 10.0 3070 ------- null} - -t 3.47886 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6131 -a 0 -x {9.0 10.0 3070 ------- null} h -t 3.47886 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6131 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.47886 -s 0 -d 9 -p ack -e 40 -c 0 -i 6134 -a 0 -x {10.0 9.0 3062 ------- null} + -t 3.47886 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6145 -a 0 -x {9.0 10.0 3077 ------- null} - -t 3.47886 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6145 -a 0 -x {9.0 10.0 3077 ------- null} h -t 3.47886 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6145 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.47915 -s 0 -d 9 -p ack -e 40 -c 0 -i 6138 -a 0 -x {10.0 9.0 3064 ------- null} - -t 3.47915 -s 0 -d 9 -p ack -e 40 -c 0 -i 6138 -a 0 -x {10.0 9.0 3064 ------- null} h -t 3.47915 -s 0 -d 9 -p ack -e 40 -c 0 -i 6138 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.47934 -s 10 -d 7 -p ack -e 40 -c 0 -i 6142 -a 0 -x {10.0 9.0 3066 ------- null} + -t 3.47934 -s 7 -d 0 -p ack -e 40 -c 0 -i 6142 -a 0 -x {10.0 9.0 3066 ------- null} h -t 3.47934 -s 7 -d 8 -p ack -e 40 -c 0 -i 6142 -a 0 -x {10.0 9.0 3066 ------- null} r -t 3.47941 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6141 -a 0 -x {9.0 10.0 3075 ------- null} + -t 3.47941 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6141 -a 0 -x {9.0 10.0 3075 ------- null} h -t 3.47941 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6141 -a 0 -x {9.0 10.0 3075 ------- null} r -t 3.47949 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6127 -a 0 -x {9.0 10.0 3068 ------- null} + -t 3.47949 -s 10 -d 7 -p ack -e 40 -c 0 -i 6146 -a 0 -x {10.0 9.0 3068 ------- null} - -t 3.47949 -s 10 -d 7 -p ack -e 40 -c 0 -i 6146 -a 0 -x {10.0 9.0 3068 ------- null} h -t 3.47949 -s 10 -d 7 -p ack -e 40 -c 0 -i 6146 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.48002 -s 0 -d 9 -p ack -e 40 -c 0 -i 6136 -a 0 -x {10.0 9.0 3063 ------- null} + -t 3.48002 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6147 -a 0 -x {9.0 10.0 3078 ------- null} - -t 3.48002 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6147 -a 0 -x {9.0 10.0 3078 ------- null} h -t 3.48002 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6147 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.48016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6133 -a 0 -x {9.0 10.0 3071 ------- null} - -t 3.48016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6133 -a 0 -x {9.0 10.0 3071 ------- null} h -t 3.48016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6133 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.48035 -s 0 -d 9 -p ack -e 40 -c 0 -i 6140 -a 0 -x {10.0 9.0 3065 ------- null} - -t 3.48035 -s 0 -d 9 -p ack -e 40 -c 0 -i 6140 -a 0 -x {10.0 9.0 3065 ------- null} h -t 3.48035 -s 0 -d 9 -p ack -e 40 -c 0 -i 6140 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.48043 -s 10 -d 7 -p ack -e 40 -c 0 -i 6144 -a 0 -x {10.0 9.0 3067 ------- null} + -t 3.48043 -s 7 -d 0 -p ack -e 40 -c 0 -i 6144 -a 0 -x {10.0 9.0 3067 ------- null} h -t 3.48043 -s 7 -d 8 -p ack -e 40 -c 0 -i 6144 -a 0 -x {10.0 9.0 3067 ------- null} r -t 3.48051 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6143 -a 0 -x {9.0 10.0 3076 ------- null} + -t 3.48051 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6143 -a 0 -x {9.0 10.0 3076 ------- null} h -t 3.48051 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6143 -a 0 -x {9.0 10.0 3076 ------- null} r -t 3.48058 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6129 -a 0 -x {9.0 10.0 3069 ------- null} + -t 3.48058 -s 10 -d 7 -p ack -e 40 -c 0 -i 6148 -a 0 -x {10.0 9.0 3069 ------- null} - -t 3.48058 -s 10 -d 7 -p ack -e 40 -c 0 -i 6148 -a 0 -x {10.0 9.0 3069 ------- null} h -t 3.48058 -s 10 -d 7 -p ack -e 40 -c 0 -i 6148 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.48118 -s 0 -d 9 -p ack -e 40 -c 0 -i 6138 -a 0 -x {10.0 9.0 3064 ------- null} + -t 3.48118 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6149 -a 0 -x {9.0 10.0 3079 ------- null} - -t 3.48118 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6149 -a 0 -x {9.0 10.0 3079 ------- null} h -t 3.48118 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6149 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.48125 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6135 -a 0 -x {9.0 10.0 3072 ------- null} - -t 3.48125 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6135 -a 0 -x {9.0 10.0 3072 ------- null} h -t 3.48125 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6135 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.48152 -s 10 -d 7 -p ack -e 40 -c 0 -i 6146 -a 0 -x {10.0 9.0 3068 ------- null} + -t 3.48152 -s 7 -d 0 -p ack -e 40 -c 0 -i 6146 -a 0 -x {10.0 9.0 3068 ------- null} h -t 3.48152 -s 7 -d 8 -p ack -e 40 -c 0 -i 6146 -a 0 -x {10.0 9.0 3068 ------- null} + -t 3.48154 -s 0 -d 9 -p ack -e 40 -c 0 -i 6142 -a 0 -x {10.0 9.0 3066 ------- null} - -t 3.48154 -s 0 -d 9 -p ack -e 40 -c 0 -i 6142 -a 0 -x {10.0 9.0 3066 ------- null} h -t 3.48154 -s 0 -d 9 -p ack -e 40 -c 0 -i 6142 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.48166 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6131 -a 0 -x {9.0 10.0 3070 ------- null} + -t 3.48166 -s 10 -d 7 -p ack -e 40 -c 0 -i 6150 -a 0 -x {10.0 9.0 3070 ------- null} - -t 3.48166 -s 10 -d 7 -p ack -e 40 -c 0 -i 6150 -a 0 -x {10.0 9.0 3070 ------- null} h -t 3.48166 -s 10 -d 7 -p ack -e 40 -c 0 -i 6150 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.48166 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6145 -a 0 -x {9.0 10.0 3077 ------- null} + -t 3.48166 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6145 -a 0 -x {9.0 10.0 3077 ------- null} h -t 3.48166 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6145 -a 0 -x {9.0 10.0 3077 ------- null} r -t 3.48238 -s 0 -d 9 -p ack -e 40 -c 0 -i 6140 -a 0 -x {10.0 9.0 3065 ------- null} + -t 3.48238 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6151 -a 0 -x {9.0 10.0 3080 ------- null} - -t 3.48238 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6151 -a 0 -x {9.0 10.0 3080 ------- null} h -t 3.48238 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6151 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.48259 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6137 -a 0 -x {9.0 10.0 3073 ------- null} - -t 3.48259 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6137 -a 0 -x {9.0 10.0 3073 ------- null} h -t 3.48259 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6137 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.48261 -s 10 -d 7 -p ack -e 40 -c 0 -i 6148 -a 0 -x {10.0 9.0 3069 ------- null} + -t 3.48261 -s 7 -d 0 -p ack -e 40 -c 0 -i 6148 -a 0 -x {10.0 9.0 3069 ------- null} h -t 3.48261 -s 7 -d 8 -p ack -e 40 -c 0 -i 6148 -a 0 -x {10.0 9.0 3069 ------- null} r -t 3.48282 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6147 -a 0 -x {9.0 10.0 3078 ------- null} + -t 3.48282 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6147 -a 0 -x {9.0 10.0 3078 ------- null} h -t 3.48282 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6147 -a 0 -x {9.0 10.0 3078 ------- null} + -t 3.48285 -s 0 -d 9 -p ack -e 40 -c 0 -i 6144 -a 0 -x {10.0 9.0 3067 ------- null} - -t 3.48285 -s 0 -d 9 -p ack -e 40 -c 0 -i 6144 -a 0 -x {10.0 9.0 3067 ------- null} h -t 3.48285 -s 0 -d 9 -p ack -e 40 -c 0 -i 6144 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.48296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6133 -a 0 -x {9.0 10.0 3071 ------- null} + -t 3.48296 -s 10 -d 7 -p ack -e 40 -c 0 -i 6152 -a 0 -x {10.0 9.0 3071 ------- null} - -t 3.48296 -s 10 -d 7 -p ack -e 40 -c 0 -i 6152 -a 0 -x {10.0 9.0 3071 ------- null} h -t 3.48296 -s 10 -d 7 -p ack -e 40 -c 0 -i 6152 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.48357 -s 0 -d 9 -p ack -e 40 -c 0 -i 6142 -a 0 -x {10.0 9.0 3066 ------- null} + -t 3.48357 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6153 -a 0 -x {9.0 10.0 3081 ------- null} - -t 3.48357 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6153 -a 0 -x {9.0 10.0 3081 ------- null} h -t 3.48357 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6153 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.4837 -s 10 -d 7 -p ack -e 40 -c 0 -i 6150 -a 0 -x {10.0 9.0 3070 ------- null} + -t 3.4837 -s 7 -d 0 -p ack -e 40 -c 0 -i 6150 -a 0 -x {10.0 9.0 3070 ------- null} h -t 3.4837 -s 7 -d 8 -p ack -e 40 -c 0 -i 6150 -a 0 -x {10.0 9.0 3070 ------- null} + -t 3.48378 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6139 -a 0 -x {9.0 10.0 3074 ------- null} - -t 3.48378 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6139 -a 0 -x {9.0 10.0 3074 ------- null} h -t 3.48378 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6139 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.48397 -s 0 -d 9 -p ack -e 40 -c 0 -i 6146 -a 0 -x {10.0 9.0 3068 ------- null} - -t 3.48397 -s 0 -d 9 -p ack -e 40 -c 0 -i 6146 -a 0 -x {10.0 9.0 3068 ------- null} h -t 3.48397 -s 0 -d 9 -p ack -e 40 -c 0 -i 6146 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.48398 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6149 -a 0 -x {9.0 10.0 3079 ------- null} + -t 3.48398 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6149 -a 0 -x {9.0 10.0 3079 ------- null} h -t 3.48398 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6149 -a 0 -x {9.0 10.0 3079 ------- null} r -t 3.48405 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6135 -a 0 -x {9.0 10.0 3072 ------- null} + -t 3.48405 -s 10 -d 7 -p ack -e 40 -c 0 -i 6154 -a 0 -x {10.0 9.0 3072 ------- null} - -t 3.48405 -s 10 -d 7 -p ack -e 40 -c 0 -i 6154 -a 0 -x {10.0 9.0 3072 ------- null} h -t 3.48405 -s 10 -d 7 -p ack -e 40 -c 0 -i 6154 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.48486 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6141 -a 0 -x {9.0 10.0 3075 ------- null} - -t 3.48486 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6141 -a 0 -x {9.0 10.0 3075 ------- null} h -t 3.48486 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6141 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.48488 -s 0 -d 9 -p ack -e 40 -c 0 -i 6144 -a 0 -x {10.0 9.0 3067 ------- null} + -t 3.48488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6155 -a 0 -x {9.0 10.0 3082 ------- null} - -t 3.48488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6155 -a 0 -x {9.0 10.0 3082 ------- null} h -t 3.48488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6155 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.48499 -s 0 -d 9 -p ack -e 40 -c 0 -i 6148 -a 0 -x {10.0 9.0 3069 ------- null} - -t 3.48499 -s 0 -d 9 -p ack -e 40 -c 0 -i 6148 -a 0 -x {10.0 9.0 3069 ------- null} h -t 3.48499 -s 0 -d 9 -p ack -e 40 -c 0 -i 6148 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.48499 -s 10 -d 7 -p ack -e 40 -c 0 -i 6152 -a 0 -x {10.0 9.0 3071 ------- null} + -t 3.48499 -s 7 -d 0 -p ack -e 40 -c 0 -i 6152 -a 0 -x {10.0 9.0 3071 ------- null} h -t 3.48499 -s 7 -d 8 -p ack -e 40 -c 0 -i 6152 -a 0 -x {10.0 9.0 3071 ------- null} r -t 3.48518 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6151 -a 0 -x {9.0 10.0 3080 ------- null} + -t 3.48518 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6151 -a 0 -x {9.0 10.0 3080 ------- null} h -t 3.48518 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6151 -a 0 -x {9.0 10.0 3080 ------- null} r -t 3.48539 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6137 -a 0 -x {9.0 10.0 3073 ------- null} + -t 3.48539 -s 10 -d 7 -p ack -e 40 -c 0 -i 6156 -a 0 -x {10.0 9.0 3073 ------- null} - -t 3.48539 -s 10 -d 7 -p ack -e 40 -c 0 -i 6156 -a 0 -x {10.0 9.0 3073 ------- null} h -t 3.48539 -s 10 -d 7 -p ack -e 40 -c 0 -i 6156 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.48595 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6143 -a 0 -x {9.0 10.0 3076 ------- null} - -t 3.48595 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6143 -a 0 -x {9.0 10.0 3076 ------- null} h -t 3.48595 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6143 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.486 -s 0 -d 9 -p ack -e 40 -c 0 -i 6146 -a 0 -x {10.0 9.0 3068 ------- null} + -t 3.486 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6157 -a 0 -x {9.0 10.0 3083 ------- null} - -t 3.486 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6157 -a 0 -x {9.0 10.0 3083 ------- null} h -t 3.486 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6157 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.48608 -s 10 -d 7 -p ack -e 40 -c 0 -i 6154 -a 0 -x {10.0 9.0 3072 ------- null} + -t 3.48608 -s 7 -d 0 -p ack -e 40 -c 0 -i 6154 -a 0 -x {10.0 9.0 3072 ------- null} h -t 3.48608 -s 7 -d 8 -p ack -e 40 -c 0 -i 6154 -a 0 -x {10.0 9.0 3072 ------- null} + -t 3.48616 -s 0 -d 9 -p ack -e 40 -c 0 -i 6150 -a 0 -x {10.0 9.0 3070 ------- null} - -t 3.48616 -s 0 -d 9 -p ack -e 40 -c 0 -i 6150 -a 0 -x {10.0 9.0 3070 ------- null} h -t 3.48616 -s 0 -d 9 -p ack -e 40 -c 0 -i 6150 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.48637 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6153 -a 0 -x {9.0 10.0 3081 ------- null} + -t 3.48637 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6153 -a 0 -x {9.0 10.0 3081 ------- null} h -t 3.48637 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6153 -a 0 -x {9.0 10.0 3081 ------- null} r -t 3.48658 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6139 -a 0 -x {9.0 10.0 3074 ------- null} + -t 3.48658 -s 10 -d 7 -p ack -e 40 -c 0 -i 6158 -a 0 -x {10.0 9.0 3074 ------- null} - -t 3.48658 -s 10 -d 7 -p ack -e 40 -c 0 -i 6158 -a 0 -x {10.0 9.0 3074 ------- null} h -t 3.48658 -s 10 -d 7 -p ack -e 40 -c 0 -i 6158 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.48702 -s 0 -d 9 -p ack -e 40 -c 0 -i 6148 -a 0 -x {10.0 9.0 3069 ------- null} + -t 3.48702 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6159 -a 0 -x {9.0 10.0 3084 ------- null} - -t 3.48702 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6159 -a 0 -x {9.0 10.0 3084 ------- null} h -t 3.48702 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6159 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.48704 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6145 -a 0 -x {9.0 10.0 3077 ------- null} - -t 3.48704 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6145 -a 0 -x {9.0 10.0 3077 ------- null} h -t 3.48704 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6145 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.48733 -s 0 -d 9 -p ack -e 40 -c 0 -i 6152 -a 0 -x {10.0 9.0 3071 ------- null} - -t 3.48733 -s 0 -d 9 -p ack -e 40 -c 0 -i 6152 -a 0 -x {10.0 9.0 3071 ------- null} h -t 3.48733 -s 0 -d 9 -p ack -e 40 -c 0 -i 6152 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.48742 -s 10 -d 7 -p ack -e 40 -c 0 -i 6156 -a 0 -x {10.0 9.0 3073 ------- null} + -t 3.48742 -s 7 -d 0 -p ack -e 40 -c 0 -i 6156 -a 0 -x {10.0 9.0 3073 ------- null} h -t 3.48742 -s 7 -d 8 -p ack -e 40 -c 0 -i 6156 -a 0 -x {10.0 9.0 3073 ------- null} r -t 3.48766 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6141 -a 0 -x {9.0 10.0 3075 ------- null} + -t 3.48766 -s 10 -d 7 -p ack -e 40 -c 0 -i 6160 -a 0 -x {10.0 9.0 3075 ------- null} - -t 3.48766 -s 10 -d 7 -p ack -e 40 -c 0 -i 6160 -a 0 -x {10.0 9.0 3075 ------- null} h -t 3.48766 -s 10 -d 7 -p ack -e 40 -c 0 -i 6160 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.48768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6155 -a 0 -x {9.0 10.0 3082 ------- null} + -t 3.48768 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6155 -a 0 -x {9.0 10.0 3082 ------- null} h -t 3.48768 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6155 -a 0 -x {9.0 10.0 3082 ------- null} r -t 3.48819 -s 0 -d 9 -p ack -e 40 -c 0 -i 6150 -a 0 -x {10.0 9.0 3070 ------- null} + -t 3.48819 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6161 -a 0 -x {9.0 10.0 3085 ------- null} - -t 3.48819 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6161 -a 0 -x {9.0 10.0 3085 ------- null} h -t 3.48819 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6161 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.48837 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6147 -a 0 -x {9.0 10.0 3078 ------- null} - -t 3.48837 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6147 -a 0 -x {9.0 10.0 3078 ------- null} h -t 3.48837 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6147 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.48856 -s 0 -d 9 -p ack -e 40 -c 0 -i 6154 -a 0 -x {10.0 9.0 3072 ------- null} - -t 3.48856 -s 0 -d 9 -p ack -e 40 -c 0 -i 6154 -a 0 -x {10.0 9.0 3072 ------- null} h -t 3.48856 -s 0 -d 9 -p ack -e 40 -c 0 -i 6154 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.48861 -s 10 -d 7 -p ack -e 40 -c 0 -i 6158 -a 0 -x {10.0 9.0 3074 ------- null} + -t 3.48861 -s 7 -d 0 -p ack -e 40 -c 0 -i 6158 -a 0 -x {10.0 9.0 3074 ------- null} h -t 3.48861 -s 7 -d 8 -p ack -e 40 -c 0 -i 6158 -a 0 -x {10.0 9.0 3074 ------- null} r -t 3.48875 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6143 -a 0 -x {9.0 10.0 3076 ------- null} + -t 3.48875 -s 10 -d 7 -p ack -e 40 -c 0 -i 6162 -a 0 -x {10.0 9.0 3076 ------- null} - -t 3.48875 -s 10 -d 7 -p ack -e 40 -c 0 -i 6162 -a 0 -x {10.0 9.0 3076 ------- null} h -t 3.48875 -s 10 -d 7 -p ack -e 40 -c 0 -i 6162 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.4888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6157 -a 0 -x {9.0 10.0 3083 ------- null} + -t 3.4888 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6157 -a 0 -x {9.0 10.0 3083 ------- null} h -t 3.4888 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6157 -a 0 -x {9.0 10.0 3083 ------- null} r -t 3.48936 -s 0 -d 9 -p ack -e 40 -c 0 -i 6152 -a 0 -x {10.0 9.0 3071 ------- null} + -t 3.48936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6163 -a 0 -x {9.0 10.0 3086 ------- null} - -t 3.48936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6163 -a 0 -x {9.0 10.0 3086 ------- null} h -t 3.48936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6163 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.48946 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6149 -a 0 -x {9.0 10.0 3079 ------- null} - -t 3.48946 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6149 -a 0 -x {9.0 10.0 3079 ------- null} h -t 3.48946 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6149 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.48955 -s 0 -d 9 -p ack -e 40 -c 0 -i 6156 -a 0 -x {10.0 9.0 3073 ------- null} - -t 3.48955 -s 0 -d 9 -p ack -e 40 -c 0 -i 6156 -a 0 -x {10.0 9.0 3073 ------- null} h -t 3.48955 -s 0 -d 9 -p ack -e 40 -c 0 -i 6156 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.4897 -s 10 -d 7 -p ack -e 40 -c 0 -i 6160 -a 0 -x {10.0 9.0 3075 ------- null} + -t 3.4897 -s 7 -d 0 -p ack -e 40 -c 0 -i 6160 -a 0 -x {10.0 9.0 3075 ------- null} h -t 3.4897 -s 7 -d 8 -p ack -e 40 -c 0 -i 6160 -a 0 -x {10.0 9.0 3075 ------- null} r -t 3.48982 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6159 -a 0 -x {9.0 10.0 3084 ------- null} + -t 3.48982 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6159 -a 0 -x {9.0 10.0 3084 ------- null} h -t 3.48982 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6159 -a 0 -x {9.0 10.0 3084 ------- null} r -t 3.48984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6145 -a 0 -x {9.0 10.0 3077 ------- null} + -t 3.48984 -s 10 -d 7 -p ack -e 40 -c 0 -i 6164 -a 0 -x {10.0 9.0 3077 ------- null} - -t 3.48984 -s 10 -d 7 -p ack -e 40 -c 0 -i 6164 -a 0 -x {10.0 9.0 3077 ------- null} h -t 3.48984 -s 10 -d 7 -p ack -e 40 -c 0 -i 6164 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.49054 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6151 -a 0 -x {9.0 10.0 3080 ------- null} - -t 3.49054 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6151 -a 0 -x {9.0 10.0 3080 ------- null} h -t 3.49054 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6151 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.49059 -s 0 -d 9 -p ack -e 40 -c 0 -i 6154 -a 0 -x {10.0 9.0 3072 ------- null} + -t 3.49059 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6165 -a 0 -x {9.0 10.0 3087 ------- null} - -t 3.49059 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6165 -a 0 -x {9.0 10.0 3087 ------- null} h -t 3.49059 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6165 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.49078 -s 10 -d 7 -p ack -e 40 -c 0 -i 6162 -a 0 -x {10.0 9.0 3076 ------- null} + -t 3.49078 -s 7 -d 0 -p ack -e 40 -c 0 -i 6162 -a 0 -x {10.0 9.0 3076 ------- null} h -t 3.49078 -s 7 -d 8 -p ack -e 40 -c 0 -i 6162 -a 0 -x {10.0 9.0 3076 ------- null} + -t 3.49085 -s 0 -d 9 -p ack -e 40 -c 0 -i 6158 -a 0 -x {10.0 9.0 3074 ------- null} - -t 3.49085 -s 0 -d 9 -p ack -e 40 -c 0 -i 6158 -a 0 -x {10.0 9.0 3074 ------- null} h -t 3.49085 -s 0 -d 9 -p ack -e 40 -c 0 -i 6158 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.49099 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6161 -a 0 -x {9.0 10.0 3085 ------- null} + -t 3.49099 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6161 -a 0 -x {9.0 10.0 3085 ------- null} h -t 3.49099 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6161 -a 0 -x {9.0 10.0 3085 ------- null} r -t 3.49117 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6147 -a 0 -x {9.0 10.0 3078 ------- null} + -t 3.49117 -s 10 -d 7 -p ack -e 40 -c 0 -i 6166 -a 0 -x {10.0 9.0 3078 ------- null} - -t 3.49117 -s 10 -d 7 -p ack -e 40 -c 0 -i 6166 -a 0 -x {10.0 9.0 3078 ------- null} h -t 3.49117 -s 10 -d 7 -p ack -e 40 -c 0 -i 6166 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.49158 -s 0 -d 9 -p ack -e 40 -c 0 -i 6156 -a 0 -x {10.0 9.0 3073 ------- null} + -t 3.49158 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6167 -a 0 -x {9.0 10.0 3088 ------- null} - -t 3.49158 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6167 -a 0 -x {9.0 10.0 3088 ------- null} h -t 3.49158 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6167 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.49178 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6153 -a 0 -x {9.0 10.0 3081 ------- null} - -t 3.49178 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6153 -a 0 -x {9.0 10.0 3081 ------- null} h -t 3.49178 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6153 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.49187 -s 10 -d 7 -p ack -e 40 -c 0 -i 6164 -a 0 -x {10.0 9.0 3077 ------- null} + -t 3.49187 -s 7 -d 0 -p ack -e 40 -c 0 -i 6164 -a 0 -x {10.0 9.0 3077 ------- null} h -t 3.49187 -s 7 -d 8 -p ack -e 40 -c 0 -i 6164 -a 0 -x {10.0 9.0 3077 ------- null} + -t 3.49202 -s 0 -d 9 -p ack -e 40 -c 0 -i 6160 -a 0 -x {10.0 9.0 3075 ------- null} - -t 3.49202 -s 0 -d 9 -p ack -e 40 -c 0 -i 6160 -a 0 -x {10.0 9.0 3075 ------- null} h -t 3.49202 -s 0 -d 9 -p ack -e 40 -c 0 -i 6160 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.49216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6163 -a 0 -x {9.0 10.0 3086 ------- null} + -t 3.49216 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6163 -a 0 -x {9.0 10.0 3086 ------- null} h -t 3.49216 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6163 -a 0 -x {9.0 10.0 3086 ------- null} r -t 3.49226 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6149 -a 0 -x {9.0 10.0 3079 ------- null} + -t 3.49226 -s 10 -d 7 -p ack -e 40 -c 0 -i 6168 -a 0 -x {10.0 9.0 3079 ------- null} - -t 3.49226 -s 10 -d 7 -p ack -e 40 -c 0 -i 6168 -a 0 -x {10.0 9.0 3079 ------- null} h -t 3.49226 -s 10 -d 7 -p ack -e 40 -c 0 -i 6168 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.49286 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6155 -a 0 -x {9.0 10.0 3082 ------- null} - -t 3.49286 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6155 -a 0 -x {9.0 10.0 3082 ------- null} h -t 3.49286 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6155 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.49288 -s 0 -d 9 -p ack -e 40 -c 0 -i 6158 -a 0 -x {10.0 9.0 3074 ------- null} + -t 3.49288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6169 -a 0 -x {9.0 10.0 3089 ------- null} - -t 3.49288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6169 -a 0 -x {9.0 10.0 3089 ------- null} h -t 3.49288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6169 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.49307 -s 0 -d 9 -p ack -e 40 -c 0 -i 6162 -a 0 -x {10.0 9.0 3076 ------- null} - -t 3.49307 -s 0 -d 9 -p ack -e 40 -c 0 -i 6162 -a 0 -x {10.0 9.0 3076 ------- null} h -t 3.49307 -s 0 -d 9 -p ack -e 40 -c 0 -i 6162 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.4932 -s 10 -d 7 -p ack -e 40 -c 0 -i 6166 -a 0 -x {10.0 9.0 3078 ------- null} + -t 3.4932 -s 7 -d 0 -p ack -e 40 -c 0 -i 6166 -a 0 -x {10.0 9.0 3078 ------- null} h -t 3.4932 -s 7 -d 8 -p ack -e 40 -c 0 -i 6166 -a 0 -x {10.0 9.0 3078 ------- null} r -t 3.49334 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6151 -a 0 -x {9.0 10.0 3080 ------- null} + -t 3.49334 -s 10 -d 7 -p ack -e 40 -c 0 -i 6170 -a 0 -x {10.0 9.0 3080 ------- null} - -t 3.49334 -s 10 -d 7 -p ack -e 40 -c 0 -i 6170 -a 0 -x {10.0 9.0 3080 ------- null} h -t 3.49334 -s 10 -d 7 -p ack -e 40 -c 0 -i 6170 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.49339 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6165 -a 0 -x {9.0 10.0 3087 ------- null} + -t 3.49339 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6165 -a 0 -x {9.0 10.0 3087 ------- null} h -t 3.49339 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6165 -a 0 -x {9.0 10.0 3087 ------- null} + -t 3.49395 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6157 -a 0 -x {9.0 10.0 3083 ------- null} - -t 3.49395 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6157 -a 0 -x {9.0 10.0 3083 ------- null} h -t 3.49395 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6157 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.49405 -s 0 -d 9 -p ack -e 40 -c 0 -i 6160 -a 0 -x {10.0 9.0 3075 ------- null} + -t 3.49405 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6171 -a 0 -x {9.0 10.0 3090 ------- null} - -t 3.49405 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6171 -a 0 -x {9.0 10.0 3090 ------- null} h -t 3.49405 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6171 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.49424 -s 0 -d 9 -p ack -e 40 -c 0 -i 6164 -a 0 -x {10.0 9.0 3077 ------- null} - -t 3.49424 -s 0 -d 9 -p ack -e 40 -c 0 -i 6164 -a 0 -x {10.0 9.0 3077 ------- null} h -t 3.49424 -s 0 -d 9 -p ack -e 40 -c 0 -i 6164 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.49429 -s 10 -d 7 -p ack -e 40 -c 0 -i 6168 -a 0 -x {10.0 9.0 3079 ------- null} + -t 3.49429 -s 7 -d 0 -p ack -e 40 -c 0 -i 6168 -a 0 -x {10.0 9.0 3079 ------- null} h -t 3.49429 -s 7 -d 8 -p ack -e 40 -c 0 -i 6168 -a 0 -x {10.0 9.0 3079 ------- null} r -t 3.49438 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6167 -a 0 -x {9.0 10.0 3088 ------- null} + -t 3.49438 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6167 -a 0 -x {9.0 10.0 3088 ------- null} h -t 3.49438 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6167 -a 0 -x {9.0 10.0 3088 ------- null} r -t 3.49458 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6153 -a 0 -x {9.0 10.0 3081 ------- null} + -t 3.49458 -s 10 -d 7 -p ack -e 40 -c 0 -i 6172 -a 0 -x {10.0 9.0 3081 ------- null} - -t 3.49458 -s 10 -d 7 -p ack -e 40 -c 0 -i 6172 -a 0 -x {10.0 9.0 3081 ------- null} h -t 3.49458 -s 10 -d 7 -p ack -e 40 -c 0 -i 6172 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.4951 -s 0 -d 9 -p ack -e 40 -c 0 -i 6162 -a 0 -x {10.0 9.0 3076 ------- null} + -t 3.4951 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6173 -a 0 -x {9.0 10.0 3091 ------- null} - -t 3.4951 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6173 -a 0 -x {9.0 10.0 3091 ------- null} h -t 3.4951 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6173 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.4952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6159 -a 0 -x {9.0 10.0 3084 ------- null} - -t 3.4952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6159 -a 0 -x {9.0 10.0 3084 ------- null} h -t 3.4952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6159 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.49528 -s 0 -d 9 -p ack -e 40 -c 0 -i 6166 -a 0 -x {10.0 9.0 3078 ------- null} - -t 3.49528 -s 0 -d 9 -p ack -e 40 -c 0 -i 6166 -a 0 -x {10.0 9.0 3078 ------- null} h -t 3.49528 -s 0 -d 9 -p ack -e 40 -c 0 -i 6166 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.49538 -s 10 -d 7 -p ack -e 40 -c 0 -i 6170 -a 0 -x {10.0 9.0 3080 ------- null} + -t 3.49538 -s 7 -d 0 -p ack -e 40 -c 0 -i 6170 -a 0 -x {10.0 9.0 3080 ------- null} h -t 3.49538 -s 7 -d 8 -p ack -e 40 -c 0 -i 6170 -a 0 -x {10.0 9.0 3080 ------- null} r -t 3.49566 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6155 -a 0 -x {9.0 10.0 3082 ------- null} + -t 3.49566 -s 10 -d 7 -p ack -e 40 -c 0 -i 6174 -a 0 -x {10.0 9.0 3082 ------- null} - -t 3.49566 -s 10 -d 7 -p ack -e 40 -c 0 -i 6174 -a 0 -x {10.0 9.0 3082 ------- null} h -t 3.49566 -s 10 -d 7 -p ack -e 40 -c 0 -i 6174 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.49568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6169 -a 0 -x {9.0 10.0 3089 ------- null} + -t 3.49568 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6169 -a 0 -x {9.0 10.0 3089 ------- null} h -t 3.49568 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6169 -a 0 -x {9.0 10.0 3089 ------- null} r -t 3.49627 -s 0 -d 9 -p ack -e 40 -c 0 -i 6164 -a 0 -x {10.0 9.0 3077 ------- null} + -t 3.49627 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6175 -a 0 -x {9.0 10.0 3092 ------- null} - -t 3.49627 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6175 -a 0 -x {9.0 10.0 3092 ------- null} h -t 3.49627 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6175 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.49629 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6161 -a 0 -x {9.0 10.0 3085 ------- null} - -t 3.49629 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6161 -a 0 -x {9.0 10.0 3085 ------- null} h -t 3.49629 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6161 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.49635 -s 0 -d 9 -p ack -e 40 -c 0 -i 6168 -a 0 -x {10.0 9.0 3079 ------- null} - -t 3.49635 -s 0 -d 9 -p ack -e 40 -c 0 -i 6168 -a 0 -x {10.0 9.0 3079 ------- null} h -t 3.49635 -s 0 -d 9 -p ack -e 40 -c 0 -i 6168 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.49661 -s 10 -d 7 -p ack -e 40 -c 0 -i 6172 -a 0 -x {10.0 9.0 3081 ------- null} + -t 3.49661 -s 7 -d 0 -p ack -e 40 -c 0 -i 6172 -a 0 -x {10.0 9.0 3081 ------- null} h -t 3.49661 -s 7 -d 8 -p ack -e 40 -c 0 -i 6172 -a 0 -x {10.0 9.0 3081 ------- null} r -t 3.49675 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6157 -a 0 -x {9.0 10.0 3083 ------- null} + -t 3.49675 -s 10 -d 7 -p ack -e 40 -c 0 -i 6176 -a 0 -x {10.0 9.0 3083 ------- null} - -t 3.49675 -s 10 -d 7 -p ack -e 40 -c 0 -i 6176 -a 0 -x {10.0 9.0 3083 ------- null} h -t 3.49675 -s 10 -d 7 -p ack -e 40 -c 0 -i 6176 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.49685 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6171 -a 0 -x {9.0 10.0 3090 ------- null} + -t 3.49685 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6171 -a 0 -x {9.0 10.0 3090 ------- null} h -t 3.49685 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6171 -a 0 -x {9.0 10.0 3090 ------- null} r -t 3.49731 -s 0 -d 9 -p ack -e 40 -c 0 -i 6166 -a 0 -x {10.0 9.0 3078 ------- null} + -t 3.49731 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6177 -a 0 -x {9.0 10.0 3093 ------- null} - -t 3.49731 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6177 -a 0 -x {9.0 10.0 3093 ------- null} h -t 3.49731 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6177 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.49738 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6163 -a 0 -x {9.0 10.0 3086 ------- null} - -t 3.49738 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6163 -a 0 -x {9.0 10.0 3086 ------- null} h -t 3.49738 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6163 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.49766 -s 0 -d 9 -p ack -e 40 -c 0 -i 6170 -a 0 -x {10.0 9.0 3080 ------- null} - -t 3.49766 -s 0 -d 9 -p ack -e 40 -c 0 -i 6170 -a 0 -x {10.0 9.0 3080 ------- null} h -t 3.49766 -s 0 -d 9 -p ack -e 40 -c 0 -i 6170 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.4977 -s 10 -d 7 -p ack -e 40 -c 0 -i 6174 -a 0 -x {10.0 9.0 3082 ------- null} + -t 3.4977 -s 7 -d 0 -p ack -e 40 -c 0 -i 6174 -a 0 -x {10.0 9.0 3082 ------- null} h -t 3.4977 -s 7 -d 8 -p ack -e 40 -c 0 -i 6174 -a 0 -x {10.0 9.0 3082 ------- null} r -t 3.4979 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6173 -a 0 -x {9.0 10.0 3091 ------- null} + -t 3.4979 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6173 -a 0 -x {9.0 10.0 3091 ------- null} h -t 3.4979 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6173 -a 0 -x {9.0 10.0 3091 ------- null} r -t 3.498 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6159 -a 0 -x {9.0 10.0 3084 ------- null} + -t 3.498 -s 10 -d 7 -p ack -e 40 -c 0 -i 6178 -a 0 -x {10.0 9.0 3084 ------- null} - -t 3.498 -s 10 -d 7 -p ack -e 40 -c 0 -i 6178 -a 0 -x {10.0 9.0 3084 ------- null} h -t 3.498 -s 10 -d 7 -p ack -e 40 -c 0 -i 6178 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.49838 -s 0 -d 9 -p ack -e 40 -c 0 -i 6168 -a 0 -x {10.0 9.0 3079 ------- null} + -t 3.49838 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6179 -a 0 -x {9.0 10.0 3094 ------- null} - -t 3.49838 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6179 -a 0 -x {9.0 10.0 3094 ------- null} h -t 3.49838 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6179 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.49864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6165 -a 0 -x {9.0 10.0 3087 ------- null} - -t 3.49864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6165 -a 0 -x {9.0 10.0 3087 ------- null} h -t 3.49864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6165 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.49878 -s 10 -d 7 -p ack -e 40 -c 0 -i 6176 -a 0 -x {10.0 9.0 3083 ------- null} + -t 3.49878 -s 7 -d 0 -p ack -e 40 -c 0 -i 6176 -a 0 -x {10.0 9.0 3083 ------- null} h -t 3.49878 -s 7 -d 8 -p ack -e 40 -c 0 -i 6176 -a 0 -x {10.0 9.0 3083 ------- null} + -t 3.49883 -s 0 -d 9 -p ack -e 40 -c 0 -i 6172 -a 0 -x {10.0 9.0 3081 ------- null} - -t 3.49883 -s 0 -d 9 -p ack -e 40 -c 0 -i 6172 -a 0 -x {10.0 9.0 3081 ------- null} h -t 3.49883 -s 0 -d 9 -p ack -e 40 -c 0 -i 6172 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.49907 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6175 -a 0 -x {9.0 10.0 3092 ------- null} + -t 3.49907 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6175 -a 0 -x {9.0 10.0 3092 ------- null} h -t 3.49907 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6175 -a 0 -x {9.0 10.0 3092 ------- null} r -t 3.49909 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6161 -a 0 -x {9.0 10.0 3085 ------- null} + -t 3.49909 -s 10 -d 7 -p ack -e 40 -c 0 -i 6180 -a 0 -x {10.0 9.0 3085 ------- null} - -t 3.49909 -s 10 -d 7 -p ack -e 40 -c 0 -i 6180 -a 0 -x {10.0 9.0 3085 ------- null} h -t 3.49909 -s 10 -d 7 -p ack -e 40 -c 0 -i 6180 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.4997 -s 0 -d 9 -p ack -e 40 -c 0 -i 6170 -a 0 -x {10.0 9.0 3080 ------- null} + -t 3.4997 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6181 -a 0 -x {9.0 10.0 3095 ------- null} - -t 3.4997 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6181 -a 0 -x {9.0 10.0 3095 ------- null} h -t 3.4997 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6181 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.49973 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6167 -a 0 -x {9.0 10.0 3088 ------- null} - -t 3.49973 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6167 -a 0 -x {9.0 10.0 3088 ------- null} h -t 3.49973 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6167 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.49986 -s 0 -d 9 -p ack -e 40 -c 0 -i 6174 -a 0 -x {10.0 9.0 3082 ------- null} - -t 3.49986 -s 0 -d 9 -p ack -e 40 -c 0 -i 6174 -a 0 -x {10.0 9.0 3082 ------- null} h -t 3.49986 -s 0 -d 9 -p ack -e 40 -c 0 -i 6174 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.50003 -s 10 -d 7 -p ack -e 40 -c 0 -i 6178 -a 0 -x {10.0 9.0 3084 ------- null} + -t 3.50003 -s 7 -d 0 -p ack -e 40 -c 0 -i 6178 -a 0 -x {10.0 9.0 3084 ------- null} h -t 3.50003 -s 7 -d 8 -p ack -e 40 -c 0 -i 6178 -a 0 -x {10.0 9.0 3084 ------- null} r -t 3.50011 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6177 -a 0 -x {9.0 10.0 3093 ------- null} + -t 3.50011 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6177 -a 0 -x {9.0 10.0 3093 ------- null} h -t 3.50011 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6177 -a 0 -x {9.0 10.0 3093 ------- null} r -t 3.50018 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6163 -a 0 -x {9.0 10.0 3086 ------- null} + -t 3.50018 -s 10 -d 7 -p ack -e 40 -c 0 -i 6182 -a 0 -x {10.0 9.0 3086 ------- null} - -t 3.50018 -s 10 -d 7 -p ack -e 40 -c 0 -i 6182 -a 0 -x {10.0 9.0 3086 ------- null} h -t 3.50018 -s 10 -d 7 -p ack -e 40 -c 0 -i 6182 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.50082 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6169 -a 0 -x {9.0 10.0 3089 ------- null} - -t 3.50082 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6169 -a 0 -x {9.0 10.0 3089 ------- null} h -t 3.50082 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6169 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.50086 -s 0 -d 9 -p ack -e 40 -c 0 -i 6172 -a 0 -x {10.0 9.0 3081 ------- null} + -t 3.50086 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6183 -a 0 -x {9.0 10.0 3096 ------- null} - -t 3.50086 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6183 -a 0 -x {9.0 10.0 3096 ------- null} h -t 3.50086 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6183 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.50104 -s 0 -d 9 -p ack -e 40 -c 0 -i 6176 -a 0 -x {10.0 9.0 3083 ------- null} - -t 3.50104 -s 0 -d 9 -p ack -e 40 -c 0 -i 6176 -a 0 -x {10.0 9.0 3083 ------- null} h -t 3.50104 -s 0 -d 9 -p ack -e 40 -c 0 -i 6176 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.50112 -s 10 -d 7 -p ack -e 40 -c 0 -i 6180 -a 0 -x {10.0 9.0 3085 ------- null} + -t 3.50112 -s 7 -d 0 -p ack -e 40 -c 0 -i 6180 -a 0 -x {10.0 9.0 3085 ------- null} h -t 3.50112 -s 7 -d 8 -p ack -e 40 -c 0 -i 6180 -a 0 -x {10.0 9.0 3085 ------- null} r -t 3.50118 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6179 -a 0 -x {9.0 10.0 3094 ------- null} + -t 3.50118 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6179 -a 0 -x {9.0 10.0 3094 ------- null} h -t 3.50118 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6179 -a 0 -x {9.0 10.0 3094 ------- null} r -t 3.50144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6165 -a 0 -x {9.0 10.0 3087 ------- null} + -t 3.50144 -s 10 -d 7 -p ack -e 40 -c 0 -i 6184 -a 0 -x {10.0 9.0 3087 ------- null} - -t 3.50144 -s 10 -d 7 -p ack -e 40 -c 0 -i 6184 -a 0 -x {10.0 9.0 3087 ------- null} h -t 3.50144 -s 10 -d 7 -p ack -e 40 -c 0 -i 6184 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.50189 -s 0 -d 9 -p ack -e 40 -c 0 -i 6174 -a 0 -x {10.0 9.0 3082 ------- null} + -t 3.50189 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6185 -a 0 -x {9.0 10.0 3097 ------- null} - -t 3.50189 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6185 -a 0 -x {9.0 10.0 3097 ------- null} h -t 3.50189 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6185 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.5019 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6171 -a 0 -x {9.0 10.0 3090 ------- null} - -t 3.5019 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6171 -a 0 -x {9.0 10.0 3090 ------- null} h -t 3.5019 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6171 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.50208 -s 0 -d 9 -p ack -e 40 -c 0 -i 6178 -a 0 -x {10.0 9.0 3084 ------- null} - -t 3.50208 -s 0 -d 9 -p ack -e 40 -c 0 -i 6178 -a 0 -x {10.0 9.0 3084 ------- null} h -t 3.50208 -s 0 -d 9 -p ack -e 40 -c 0 -i 6178 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.50221 -s 10 -d 7 -p ack -e 40 -c 0 -i 6182 -a 0 -x {10.0 9.0 3086 ------- null} + -t 3.50221 -s 7 -d 0 -p ack -e 40 -c 0 -i 6182 -a 0 -x {10.0 9.0 3086 ------- null} h -t 3.50221 -s 7 -d 8 -p ack -e 40 -c 0 -i 6182 -a 0 -x {10.0 9.0 3086 ------- null} r -t 3.5025 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6181 -a 0 -x {9.0 10.0 3095 ------- null} + -t 3.5025 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6181 -a 0 -x {9.0 10.0 3095 ------- null} h -t 3.5025 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6181 -a 0 -x {9.0 10.0 3095 ------- null} r -t 3.50253 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6167 -a 0 -x {9.0 10.0 3088 ------- null} + -t 3.50253 -s 10 -d 7 -p ack -e 40 -c 0 -i 6186 -a 0 -x {10.0 9.0 3088 ------- null} - -t 3.50253 -s 10 -d 7 -p ack -e 40 -c 0 -i 6186 -a 0 -x {10.0 9.0 3088 ------- null} h -t 3.50253 -s 10 -d 7 -p ack -e 40 -c 0 -i 6186 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.50299 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6173 -a 0 -x {9.0 10.0 3091 ------- null} - -t 3.50299 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6173 -a 0 -x {9.0 10.0 3091 ------- null} h -t 3.50299 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6173 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.50307 -s 0 -d 9 -p ack -e 40 -c 0 -i 6176 -a 0 -x {10.0 9.0 3083 ------- null} + -t 3.50307 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6187 -a 0 -x {9.0 10.0 3098 ------- null} - -t 3.50307 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6187 -a 0 -x {9.0 10.0 3098 ------- null} h -t 3.50307 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6187 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.50315 -s 0 -d 9 -p ack -e 40 -c 0 -i 6180 -a 0 -x {10.0 9.0 3085 ------- null} - -t 3.50315 -s 0 -d 9 -p ack -e 40 -c 0 -i 6180 -a 0 -x {10.0 9.0 3085 ------- null} h -t 3.50315 -s 0 -d 9 -p ack -e 40 -c 0 -i 6180 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.50347 -s 10 -d 7 -p ack -e 40 -c 0 -i 6184 -a 0 -x {10.0 9.0 3087 ------- null} + -t 3.50347 -s 7 -d 0 -p ack -e 40 -c 0 -i 6184 -a 0 -x {10.0 9.0 3087 ------- null} h -t 3.50347 -s 7 -d 8 -p ack -e 40 -c 0 -i 6184 -a 0 -x {10.0 9.0 3087 ------- null} r -t 3.50362 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6169 -a 0 -x {9.0 10.0 3089 ------- null} + -t 3.50362 -s 10 -d 7 -p ack -e 40 -c 0 -i 6188 -a 0 -x {10.0 9.0 3089 ------- null} - -t 3.50362 -s 10 -d 7 -p ack -e 40 -c 0 -i 6188 -a 0 -x {10.0 9.0 3089 ------- null} h -t 3.50362 -s 10 -d 7 -p ack -e 40 -c 0 -i 6188 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.50366 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6183 -a 0 -x {9.0 10.0 3096 ------- null} + -t 3.50366 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6183 -a 0 -x {9.0 10.0 3096 ------- null} h -t 3.50366 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6183 -a 0 -x {9.0 10.0 3096 ------- null} + -t 3.50408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6175 -a 0 -x {9.0 10.0 3092 ------- null} - -t 3.50408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6175 -a 0 -x {9.0 10.0 3092 ------- null} h -t 3.50408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6175 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.50411 -s 0 -d 9 -p ack -e 40 -c 0 -i 6178 -a 0 -x {10.0 9.0 3084 ------- null} + -t 3.50411 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6189 -a 0 -x {9.0 10.0 3099 ------- null} - -t 3.50411 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6189 -a 0 -x {9.0 10.0 3099 ------- null} h -t 3.50411 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6189 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.50438 -s 0 -d 9 -p ack -e 40 -c 0 -i 6182 -a 0 -x {10.0 9.0 3086 ------- null} - -t 3.50438 -s 0 -d 9 -p ack -e 40 -c 0 -i 6182 -a 0 -x {10.0 9.0 3086 ------- null} h -t 3.50438 -s 0 -d 9 -p ack -e 40 -c 0 -i 6182 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.50456 -s 10 -d 7 -p ack -e 40 -c 0 -i 6186 -a 0 -x {10.0 9.0 3088 ------- null} + -t 3.50456 -s 7 -d 0 -p ack -e 40 -c 0 -i 6186 -a 0 -x {10.0 9.0 3088 ------- null} h -t 3.50456 -s 7 -d 8 -p ack -e 40 -c 0 -i 6186 -a 0 -x {10.0 9.0 3088 ------- null} r -t 3.50469 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6185 -a 0 -x {9.0 10.0 3097 ------- null} + -t 3.50469 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6185 -a 0 -x {9.0 10.0 3097 ------- null} h -t 3.50469 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6185 -a 0 -x {9.0 10.0 3097 ------- null} r -t 3.5047 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6171 -a 0 -x {9.0 10.0 3090 ------- null} + -t 3.5047 -s 10 -d 7 -p ack -e 40 -c 0 -i 6190 -a 0 -x {10.0 9.0 3090 ------- null} - -t 3.5047 -s 10 -d 7 -p ack -e 40 -c 0 -i 6190 -a 0 -x {10.0 9.0 3090 ------- null} h -t 3.5047 -s 10 -d 7 -p ack -e 40 -c 0 -i 6190 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.50518 -s 0 -d 9 -p ack -e 40 -c 0 -i 6180 -a 0 -x {10.0 9.0 3085 ------- null} + -t 3.50518 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6191 -a 0 -x {9.0 10.0 3100 ------- null} - -t 3.50518 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6191 -a 0 -x {9.0 10.0 3100 ------- null} h -t 3.50518 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6191 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.5053 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6177 -a 0 -x {9.0 10.0 3093 ------- null} - -t 3.5053 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6177 -a 0 -x {9.0 10.0 3093 ------- null} h -t 3.5053 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6177 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.50539 -s 0 -d 9 -p ack -e 40 -c 0 -i 6184 -a 0 -x {10.0 9.0 3087 ------- null} - -t 3.50539 -s 0 -d 9 -p ack -e 40 -c 0 -i 6184 -a 0 -x {10.0 9.0 3087 ------- null} h -t 3.50539 -s 0 -d 9 -p ack -e 40 -c 0 -i 6184 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.50565 -s 10 -d 7 -p ack -e 40 -c 0 -i 6188 -a 0 -x {10.0 9.0 3089 ------- null} + -t 3.50565 -s 7 -d 0 -p ack -e 40 -c 0 -i 6188 -a 0 -x {10.0 9.0 3089 ------- null} h -t 3.50565 -s 7 -d 8 -p ack -e 40 -c 0 -i 6188 -a 0 -x {10.0 9.0 3089 ------- null} r -t 3.50579 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6173 -a 0 -x {9.0 10.0 3091 ------- null} + -t 3.50579 -s 10 -d 7 -p ack -e 40 -c 0 -i 6192 -a 0 -x {10.0 9.0 3091 ------- null} - -t 3.50579 -s 10 -d 7 -p ack -e 40 -c 0 -i 6192 -a 0 -x {10.0 9.0 3091 ------- null} h -t 3.50579 -s 10 -d 7 -p ack -e 40 -c 0 -i 6192 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.50587 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6187 -a 0 -x {9.0 10.0 3098 ------- null} + -t 3.50587 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6187 -a 0 -x {9.0 10.0 3098 ------- null} h -t 3.50587 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6187 -a 0 -x {9.0 10.0 3098 ------- null} + -t 3.50638 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6179 -a 0 -x {9.0 10.0 3094 ------- null} - -t 3.50638 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6179 -a 0 -x {9.0 10.0 3094 ------- null} h -t 3.50638 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6179 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.50642 -s 0 -d 9 -p ack -e 40 -c 0 -i 6182 -a 0 -x {10.0 9.0 3086 ------- null} + -t 3.50642 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6193 -a 0 -x {9.0 10.0 3101 ------- null} - -t 3.50642 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6193 -a 0 -x {9.0 10.0 3101 ------- null} h -t 3.50642 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6193 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.50653 -s 0 -d 9 -p ack -e 40 -c 0 -i 6186 -a 0 -x {10.0 9.0 3088 ------- null} - -t 3.50653 -s 0 -d 9 -p ack -e 40 -c 0 -i 6186 -a 0 -x {10.0 9.0 3088 ------- null} h -t 3.50653 -s 0 -d 9 -p ack -e 40 -c 0 -i 6186 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.50674 -s 10 -d 7 -p ack -e 40 -c 0 -i 6190 -a 0 -x {10.0 9.0 3090 ------- null} + -t 3.50674 -s 7 -d 0 -p ack -e 40 -c 0 -i 6190 -a 0 -x {10.0 9.0 3090 ------- null} h -t 3.50674 -s 7 -d 8 -p ack -e 40 -c 0 -i 6190 -a 0 -x {10.0 9.0 3090 ------- null} r -t 3.50688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6175 -a 0 -x {9.0 10.0 3092 ------- null} + -t 3.50688 -s 10 -d 7 -p ack -e 40 -c 0 -i 6194 -a 0 -x {10.0 9.0 3092 ------- null} - -t 3.50688 -s 10 -d 7 -p ack -e 40 -c 0 -i 6194 -a 0 -x {10.0 9.0 3092 ------- null} h -t 3.50688 -s 10 -d 7 -p ack -e 40 -c 0 -i 6194 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.50691 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6189 -a 0 -x {9.0 10.0 3099 ------- null} + -t 3.50691 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6189 -a 0 -x {9.0 10.0 3099 ------- null} h -t 3.50691 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6189 -a 0 -x {9.0 10.0 3099 ------- null} r -t 3.50742 -s 0 -d 9 -p ack -e 40 -c 0 -i 6184 -a 0 -x {10.0 9.0 3087 ------- null} + -t 3.50742 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6195 -a 0 -x {9.0 10.0 3102 ------- null} - -t 3.50742 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6195 -a 0 -x {9.0 10.0 3102 ------- null} h -t 3.50742 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6195 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.50747 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6181 -a 0 -x {9.0 10.0 3095 ------- null} - -t 3.50747 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6181 -a 0 -x {9.0 10.0 3095 ------- null} h -t 3.50747 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6181 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.50754 -s 0 -d 9 -p ack -e 40 -c 0 -i 6188 -a 0 -x {10.0 9.0 3089 ------- null} - -t 3.50754 -s 0 -d 9 -p ack -e 40 -c 0 -i 6188 -a 0 -x {10.0 9.0 3089 ------- null} h -t 3.50754 -s 0 -d 9 -p ack -e 40 -c 0 -i 6188 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.50782 -s 10 -d 7 -p ack -e 40 -c 0 -i 6192 -a 0 -x {10.0 9.0 3091 ------- null} + -t 3.50782 -s 7 -d 0 -p ack -e 40 -c 0 -i 6192 -a 0 -x {10.0 9.0 3091 ------- null} h -t 3.50782 -s 7 -d 8 -p ack -e 40 -c 0 -i 6192 -a 0 -x {10.0 9.0 3091 ------- null} r -t 3.50798 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6191 -a 0 -x {9.0 10.0 3100 ------- null} + -t 3.50798 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6191 -a 0 -x {9.0 10.0 3100 ------- null} h -t 3.50798 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6191 -a 0 -x {9.0 10.0 3100 ------- null} r -t 3.5081 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6177 -a 0 -x {9.0 10.0 3093 ------- null} + -t 3.5081 -s 10 -d 7 -p ack -e 40 -c 0 -i 6196 -a 0 -x {10.0 9.0 3093 ------- null} - -t 3.5081 -s 10 -d 7 -p ack -e 40 -c 0 -i 6196 -a 0 -x {10.0 9.0 3093 ------- null} h -t 3.5081 -s 10 -d 7 -p ack -e 40 -c 0 -i 6196 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.50856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6183 -a 0 -x {9.0 10.0 3096 ------- null} - -t 3.50856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6183 -a 0 -x {9.0 10.0 3096 ------- null} h -t 3.50856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6183 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.50856 -s 0 -d 9 -p ack -e 40 -c 0 -i 6186 -a 0 -x {10.0 9.0 3088 ------- null} + -t 3.50856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6197 -a 0 -x {9.0 10.0 3103 ------- null} - -t 3.50856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6197 -a 0 -x {9.0 10.0 3103 ------- null} h -t 3.50856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6197 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.5087 -s 0 -d 9 -p ack -e 40 -c 0 -i 6190 -a 0 -x {10.0 9.0 3090 ------- null} - -t 3.5087 -s 0 -d 9 -p ack -e 40 -c 0 -i 6190 -a 0 -x {10.0 9.0 3090 ------- null} h -t 3.5087 -s 0 -d 9 -p ack -e 40 -c 0 -i 6190 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.50891 -s 10 -d 7 -p ack -e 40 -c 0 -i 6194 -a 0 -x {10.0 9.0 3092 ------- null} + -t 3.50891 -s 7 -d 0 -p ack -e 40 -c 0 -i 6194 -a 0 -x {10.0 9.0 3092 ------- null} h -t 3.50891 -s 7 -d 8 -p ack -e 40 -c 0 -i 6194 -a 0 -x {10.0 9.0 3092 ------- null} r -t 3.50918 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6179 -a 0 -x {9.0 10.0 3094 ------- null} + -t 3.50918 -s 10 -d 7 -p ack -e 40 -c 0 -i 6198 -a 0 -x {10.0 9.0 3094 ------- null} - -t 3.50918 -s 10 -d 7 -p ack -e 40 -c 0 -i 6198 -a 0 -x {10.0 9.0 3094 ------- null} h -t 3.50918 -s 10 -d 7 -p ack -e 40 -c 0 -i 6198 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.50922 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6193 -a 0 -x {9.0 10.0 3101 ------- null} + -t 3.50922 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6193 -a 0 -x {9.0 10.0 3101 ------- null} h -t 3.50922 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6193 -a 0 -x {9.0 10.0 3101 ------- null} r -t 3.50957 -s 0 -d 9 -p ack -e 40 -c 0 -i 6188 -a 0 -x {10.0 9.0 3089 ------- null} + -t 3.50957 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6199 -a 0 -x {9.0 10.0 3104 ------- null} - -t 3.50957 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6199 -a 0 -x {9.0 10.0 3104 ------- null} h -t 3.50957 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6199 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.50965 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6185 -a 0 -x {9.0 10.0 3097 ------- null} - -t 3.50965 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6185 -a 0 -x {9.0 10.0 3097 ------- null} h -t 3.50965 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6185 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.50987 -s 0 -d 9 -p ack -e 40 -c 0 -i 6192 -a 0 -x {10.0 9.0 3091 ------- null} - -t 3.50987 -s 0 -d 9 -p ack -e 40 -c 0 -i 6192 -a 0 -x {10.0 9.0 3091 ------- null} h -t 3.50987 -s 0 -d 9 -p ack -e 40 -c 0 -i 6192 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.51013 -s 10 -d 7 -p ack -e 40 -c 0 -i 6196 -a 0 -x {10.0 9.0 3093 ------- null} + -t 3.51013 -s 7 -d 0 -p ack -e 40 -c 0 -i 6196 -a 0 -x {10.0 9.0 3093 ------- null} h -t 3.51013 -s 7 -d 8 -p ack -e 40 -c 0 -i 6196 -a 0 -x {10.0 9.0 3093 ------- null} r -t 3.51022 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6195 -a 0 -x {9.0 10.0 3102 ------- null} + -t 3.51022 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6195 -a 0 -x {9.0 10.0 3102 ------- null} h -t 3.51022 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6195 -a 0 -x {9.0 10.0 3102 ------- null} r -t 3.51027 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6181 -a 0 -x {9.0 10.0 3095 ------- null} + -t 3.51027 -s 10 -d 7 -p ack -e 40 -c 0 -i 6200 -a 0 -x {10.0 9.0 3095 ------- null} - -t 3.51027 -s 10 -d 7 -p ack -e 40 -c 0 -i 6200 -a 0 -x {10.0 9.0 3095 ------- null} h -t 3.51027 -s 10 -d 7 -p ack -e 40 -c 0 -i 6200 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.51074 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6187 -a 0 -x {9.0 10.0 3098 ------- null} - -t 3.51074 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6187 -a 0 -x {9.0 10.0 3098 ------- null} h -t 3.51074 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6187 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.51074 -s 0 -d 9 -p ack -e 40 -c 0 -i 6190 -a 0 -x {10.0 9.0 3090 ------- null} + -t 3.51074 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6201 -a 0 -x {9.0 10.0 3105 ------- null} - -t 3.51074 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6201 -a 0 -x {9.0 10.0 3105 ------- null} h -t 3.51074 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6201 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.51093 -s 0 -d 9 -p ack -e 40 -c 0 -i 6194 -a 0 -x {10.0 9.0 3092 ------- null} - -t 3.51093 -s 0 -d 9 -p ack -e 40 -c 0 -i 6194 -a 0 -x {10.0 9.0 3092 ------- null} h -t 3.51093 -s 0 -d 9 -p ack -e 40 -c 0 -i 6194 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.51122 -s 10 -d 7 -p ack -e 40 -c 0 -i 6198 -a 0 -x {10.0 9.0 3094 ------- null} + -t 3.51122 -s 7 -d 0 -p ack -e 40 -c 0 -i 6198 -a 0 -x {10.0 9.0 3094 ------- null} h -t 3.51122 -s 7 -d 8 -p ack -e 40 -c 0 -i 6198 -a 0 -x {10.0 9.0 3094 ------- null} r -t 3.51136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6183 -a 0 -x {9.0 10.0 3096 ------- null} + -t 3.51136 -s 10 -d 7 -p ack -e 40 -c 0 -i 6202 -a 0 -x {10.0 9.0 3096 ------- null} - -t 3.51136 -s 10 -d 7 -p ack -e 40 -c 0 -i 6202 -a 0 -x {10.0 9.0 3096 ------- null} h -t 3.51136 -s 10 -d 7 -p ack -e 40 -c 0 -i 6202 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.51136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6197 -a 0 -x {9.0 10.0 3103 ------- null} + -t 3.51136 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6197 -a 0 -x {9.0 10.0 3103 ------- null} h -t 3.51136 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6197 -a 0 -x {9.0 10.0 3103 ------- null} + -t 3.51182 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6189 -a 0 -x {9.0 10.0 3099 ------- null} - -t 3.51182 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6189 -a 0 -x {9.0 10.0 3099 ------- null} h -t 3.51182 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6189 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.5119 -s 0 -d 9 -p ack -e 40 -c 0 -i 6192 -a 0 -x {10.0 9.0 3091 ------- null} + -t 3.5119 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6203 -a 0 -x {9.0 10.0 3106 ------- null} - -t 3.5119 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6203 -a 0 -x {9.0 10.0 3106 ------- null} h -t 3.5119 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6203 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.51211 -s 0 -d 9 -p ack -e 40 -c 0 -i 6196 -a 0 -x {10.0 9.0 3093 ------- null} - -t 3.51211 -s 0 -d 9 -p ack -e 40 -c 0 -i 6196 -a 0 -x {10.0 9.0 3093 ------- null} h -t 3.51211 -s 0 -d 9 -p ack -e 40 -c 0 -i 6196 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.5123 -s 10 -d 7 -p ack -e 40 -c 0 -i 6200 -a 0 -x {10.0 9.0 3095 ------- null} + -t 3.5123 -s 7 -d 0 -p ack -e 40 -c 0 -i 6200 -a 0 -x {10.0 9.0 3095 ------- null} h -t 3.5123 -s 7 -d 8 -p ack -e 40 -c 0 -i 6200 -a 0 -x {10.0 9.0 3095 ------- null} r -t 3.51237 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6199 -a 0 -x {9.0 10.0 3104 ------- null} + -t 3.51237 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6199 -a 0 -x {9.0 10.0 3104 ------- null} h -t 3.51237 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6199 -a 0 -x {9.0 10.0 3104 ------- null} r -t 3.51245 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6185 -a 0 -x {9.0 10.0 3097 ------- null} + -t 3.51245 -s 10 -d 7 -p ack -e 40 -c 0 -i 6204 -a 0 -x {10.0 9.0 3097 ------- null} - -t 3.51245 -s 10 -d 7 -p ack -e 40 -c 0 -i 6204 -a 0 -x {10.0 9.0 3097 ------- null} h -t 3.51245 -s 10 -d 7 -p ack -e 40 -c 0 -i 6204 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.51296 -s 0 -d 9 -p ack -e 40 -c 0 -i 6194 -a 0 -x {10.0 9.0 3092 ------- null} + -t 3.51296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6205 -a 0 -x {9.0 10.0 3107 ------- null} - -t 3.51296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6205 -a 0 -x {9.0 10.0 3107 ------- null} h -t 3.51296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6205 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.51309 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6191 -a 0 -x {9.0 10.0 3100 ------- null} - -t 3.51309 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6191 -a 0 -x {9.0 10.0 3100 ------- null} h -t 3.51309 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6191 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.51336 -s 0 -d 9 -p ack -e 40 -c 0 -i 6198 -a 0 -x {10.0 9.0 3094 ------- null} - -t 3.51336 -s 0 -d 9 -p ack -e 40 -c 0 -i 6198 -a 0 -x {10.0 9.0 3094 ------- null} h -t 3.51336 -s 0 -d 9 -p ack -e 40 -c 0 -i 6198 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.51339 -s 10 -d 7 -p ack -e 40 -c 0 -i 6202 -a 0 -x {10.0 9.0 3096 ------- null} + -t 3.51339 -s 7 -d 0 -p ack -e 40 -c 0 -i 6202 -a 0 -x {10.0 9.0 3096 ------- null} h -t 3.51339 -s 7 -d 8 -p ack -e 40 -c 0 -i 6202 -a 0 -x {10.0 9.0 3096 ------- null} r -t 3.51354 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6187 -a 0 -x {9.0 10.0 3098 ------- null} + -t 3.51354 -s 10 -d 7 -p ack -e 40 -c 0 -i 6206 -a 0 -x {10.0 9.0 3098 ------- null} - -t 3.51354 -s 10 -d 7 -p ack -e 40 -c 0 -i 6206 -a 0 -x {10.0 9.0 3098 ------- null} h -t 3.51354 -s 10 -d 7 -p ack -e 40 -c 0 -i 6206 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.51354 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6201 -a 0 -x {9.0 10.0 3105 ------- null} + -t 3.51354 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6201 -a 0 -x {9.0 10.0 3105 ------- null} h -t 3.51354 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6201 -a 0 -x {9.0 10.0 3105 ------- null} r -t 3.51414 -s 0 -d 9 -p ack -e 40 -c 0 -i 6196 -a 0 -x {10.0 9.0 3093 ------- null} + -t 3.51414 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6207 -a 0 -x {9.0 10.0 3108 ------- null} - -t 3.51414 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6207 -a 0 -x {9.0 10.0 3108 ------- null} h -t 3.51414 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6207 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.51434 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6193 -a 0 -x {9.0 10.0 3101 ------- null} - -t 3.51434 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6193 -a 0 -x {9.0 10.0 3101 ------- null} h -t 3.51434 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6193 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.51448 -s 10 -d 7 -p ack -e 40 -c 0 -i 6204 -a 0 -x {10.0 9.0 3097 ------- null} + -t 3.51448 -s 7 -d 0 -p ack -e 40 -c 0 -i 6204 -a 0 -x {10.0 9.0 3097 ------- null} h -t 3.51448 -s 7 -d 8 -p ack -e 40 -c 0 -i 6204 -a 0 -x {10.0 9.0 3097 ------- null} r -t 3.51462 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6189 -a 0 -x {9.0 10.0 3099 ------- null} + -t 3.51462 -s 10 -d 7 -p ack -e 40 -c 0 -i 6208 -a 0 -x {10.0 9.0 3099 ------- null} - -t 3.51462 -s 10 -d 7 -p ack -e 40 -c 0 -i 6208 -a 0 -x {10.0 9.0 3099 ------- null} h -t 3.51462 -s 10 -d 7 -p ack -e 40 -c 0 -i 6208 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.51464 -s 0 -d 9 -p ack -e 40 -c 0 -i 6200 -a 0 -x {10.0 9.0 3095 ------- null} - -t 3.51464 -s 0 -d 9 -p ack -e 40 -c 0 -i 6200 -a 0 -x {10.0 9.0 3095 ------- null} h -t 3.51464 -s 0 -d 9 -p ack -e 40 -c 0 -i 6200 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.5147 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6203 -a 0 -x {9.0 10.0 3106 ------- null} + -t 3.5147 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6203 -a 0 -x {9.0 10.0 3106 ------- null} h -t 3.5147 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6203 -a 0 -x {9.0 10.0 3106 ------- null} r -t 3.51539 -s 0 -d 9 -p ack -e 40 -c 0 -i 6198 -a 0 -x {10.0 9.0 3094 ------- null} + -t 3.51539 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6209 -a 0 -x {9.0 10.0 3109 ------- null} - -t 3.51539 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6209 -a 0 -x {9.0 10.0 3109 ------- null} h -t 3.51539 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6209 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.51557 -s 10 -d 7 -p ack -e 40 -c 0 -i 6206 -a 0 -x {10.0 9.0 3098 ------- null} + -t 3.51557 -s 7 -d 0 -p ack -e 40 -c 0 -i 6206 -a 0 -x {10.0 9.0 3098 ------- null} h -t 3.51557 -s 7 -d 8 -p ack -e 40 -c 0 -i 6206 -a 0 -x {10.0 9.0 3098 ------- null} + -t 3.51571 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6195 -a 0 -x {9.0 10.0 3102 ------- null} - -t 3.51571 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6195 -a 0 -x {9.0 10.0 3102 ------- null} h -t 3.51571 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6195 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.51576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6205 -a 0 -x {9.0 10.0 3107 ------- null} + -t 3.51576 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6205 -a 0 -x {9.0 10.0 3107 ------- null} h -t 3.51576 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6205 -a 0 -x {9.0 10.0 3107 ------- null} r -t 3.51589 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6191 -a 0 -x {9.0 10.0 3100 ------- null} + -t 3.51589 -s 10 -d 7 -p ack -e 40 -c 0 -i 6210 -a 0 -x {10.0 9.0 3100 ------- null} - -t 3.51589 -s 10 -d 7 -p ack -e 40 -c 0 -i 6210 -a 0 -x {10.0 9.0 3100 ------- null} h -t 3.51589 -s 10 -d 7 -p ack -e 40 -c 0 -i 6210 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.51592 -s 0 -d 9 -p ack -e 40 -c 0 -i 6202 -a 0 -x {10.0 9.0 3096 ------- null} - -t 3.51592 -s 0 -d 9 -p ack -e 40 -c 0 -i 6202 -a 0 -x {10.0 9.0 3096 ------- null} h -t 3.51592 -s 0 -d 9 -p ack -e 40 -c 0 -i 6202 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.51666 -s 10 -d 7 -p ack -e 40 -c 0 -i 6208 -a 0 -x {10.0 9.0 3099 ------- null} + -t 3.51666 -s 7 -d 0 -p ack -e 40 -c 0 -i 6208 -a 0 -x {10.0 9.0 3099 ------- null} h -t 3.51666 -s 7 -d 8 -p ack -e 40 -c 0 -i 6208 -a 0 -x {10.0 9.0 3099 ------- null} r -t 3.51667 -s 0 -d 9 -p ack -e 40 -c 0 -i 6200 -a 0 -x {10.0 9.0 3095 ------- null} + -t 3.51667 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6211 -a 0 -x {9.0 10.0 3110 ------- null} - -t 3.51667 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6211 -a 0 -x {9.0 10.0 3110 ------- null} h -t 3.51667 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6211 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.5168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6197 -a 0 -x {9.0 10.0 3103 ------- null} - -t 3.5168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6197 -a 0 -x {9.0 10.0 3103 ------- null} h -t 3.5168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6197 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.51694 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6207 -a 0 -x {9.0 10.0 3108 ------- null} + -t 3.51694 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6207 -a 0 -x {9.0 10.0 3108 ------- null} h -t 3.51694 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6207 -a 0 -x {9.0 10.0 3108 ------- null} + -t 3.51709 -s 0 -d 9 -p ack -e 40 -c 0 -i 6204 -a 0 -x {10.0 9.0 3097 ------- null} - -t 3.51709 -s 0 -d 9 -p ack -e 40 -c 0 -i 6204 -a 0 -x {10.0 9.0 3097 ------- null} h -t 3.51709 -s 0 -d 9 -p ack -e 40 -c 0 -i 6204 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.51714 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6193 -a 0 -x {9.0 10.0 3101 ------- null} + -t 3.51714 -s 10 -d 7 -p ack -e 40 -c 0 -i 6212 -a 0 -x {10.0 9.0 3101 ------- null} - -t 3.51714 -s 10 -d 7 -p ack -e 40 -c 0 -i 6212 -a 0 -x {10.0 9.0 3101 ------- null} h -t 3.51714 -s 10 -d 7 -p ack -e 40 -c 0 -i 6212 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.51792 -s 10 -d 7 -p ack -e 40 -c 0 -i 6210 -a 0 -x {10.0 9.0 3100 ------- null} + -t 3.51792 -s 7 -d 0 -p ack -e 40 -c 0 -i 6210 -a 0 -x {10.0 9.0 3100 ------- null} h -t 3.51792 -s 7 -d 8 -p ack -e 40 -c 0 -i 6210 -a 0 -x {10.0 9.0 3100 ------- null} r -t 3.51795 -s 0 -d 9 -p ack -e 40 -c 0 -i 6202 -a 0 -x {10.0 9.0 3096 ------- null} + -t 3.51795 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6213 -a 0 -x {9.0 10.0 3111 ------- null} - -t 3.51795 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6213 -a 0 -x {9.0 10.0 3111 ------- null} h -t 3.51795 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6213 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.51814 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6199 -a 0 -x {9.0 10.0 3104 ------- null} - -t 3.51814 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6199 -a 0 -x {9.0 10.0 3104 ------- null} h -t 3.51814 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6199 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.51819 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6209 -a 0 -x {9.0 10.0 3109 ------- null} + -t 3.51819 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6209 -a 0 -x {9.0 10.0 3109 ------- null} h -t 3.51819 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6209 -a 0 -x {9.0 10.0 3109 ------- null} + -t 3.51829 -s 0 -d 9 -p ack -e 40 -c 0 -i 6206 -a 0 -x {10.0 9.0 3098 ------- null} - -t 3.51829 -s 0 -d 9 -p ack -e 40 -c 0 -i 6206 -a 0 -x {10.0 9.0 3098 ------- null} h -t 3.51829 -s 0 -d 9 -p ack -e 40 -c 0 -i 6206 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.51851 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6195 -a 0 -x {9.0 10.0 3102 ------- null} + -t 3.51851 -s 10 -d 7 -p ack -e 40 -c 0 -i 6214 -a 0 -x {10.0 9.0 3102 ------- null} - -t 3.51851 -s 10 -d 7 -p ack -e 40 -c 0 -i 6214 -a 0 -x {10.0 9.0 3102 ------- null} h -t 3.51851 -s 10 -d 7 -p ack -e 40 -c 0 -i 6214 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.51912 -s 0 -d 9 -p ack -e 40 -c 0 -i 6204 -a 0 -x {10.0 9.0 3097 ------- null} + -t 3.51912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6215 -a 0 -x {9.0 10.0 3112 ------- null} - -t 3.51912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6215 -a 0 -x {9.0 10.0 3112 ------- null} h -t 3.51912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6215 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.51917 -s 10 -d 7 -p ack -e 40 -c 0 -i 6212 -a 0 -x {10.0 9.0 3101 ------- null} + -t 3.51917 -s 7 -d 0 -p ack -e 40 -c 0 -i 6212 -a 0 -x {10.0 9.0 3101 ------- null} h -t 3.51917 -s 7 -d 8 -p ack -e 40 -c 0 -i 6212 -a 0 -x {10.0 9.0 3101 ------- null} + -t 3.51923 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6201 -a 0 -x {9.0 10.0 3105 ------- null} - -t 3.51923 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6201 -a 0 -x {9.0 10.0 3105 ------- null} h -t 3.51923 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6201 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.51934 -s 0 -d 9 -p ack -e 40 -c 0 -i 6208 -a 0 -x {10.0 9.0 3099 ------- null} - -t 3.51934 -s 0 -d 9 -p ack -e 40 -c 0 -i 6208 -a 0 -x {10.0 9.0 3099 ------- null} h -t 3.51934 -s 0 -d 9 -p ack -e 40 -c 0 -i 6208 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.51947 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6211 -a 0 -x {9.0 10.0 3110 ------- null} + -t 3.51947 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6211 -a 0 -x {9.0 10.0 3110 ------- null} h -t 3.51947 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6211 -a 0 -x {9.0 10.0 3110 ------- null} r -t 3.5196 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6197 -a 0 -x {9.0 10.0 3103 ------- null} + -t 3.5196 -s 10 -d 7 -p ack -e 40 -c 0 -i 6216 -a 0 -x {10.0 9.0 3103 ------- null} - -t 3.5196 -s 10 -d 7 -p ack -e 40 -c 0 -i 6216 -a 0 -x {10.0 9.0 3103 ------- null} h -t 3.5196 -s 10 -d 7 -p ack -e 40 -c 0 -i 6216 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.52032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6203 -a 0 -x {9.0 10.0 3106 ------- null} - -t 3.52032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6203 -a 0 -x {9.0 10.0 3106 ------- null} h -t 3.52032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6203 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.52032 -s 0 -d 9 -p ack -e 40 -c 0 -i 6206 -a 0 -x {10.0 9.0 3098 ------- null} + -t 3.52032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6217 -a 0 -x {9.0 10.0 3113 ------- null} - -t 3.52032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6217 -a 0 -x {9.0 10.0 3113 ------- null} h -t 3.52032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6217 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.52038 -s 0 -d 9 -p ack -e 40 -c 0 -i 6210 -a 0 -x {10.0 9.0 3100 ------- null} - -t 3.52038 -s 0 -d 9 -p ack -e 40 -c 0 -i 6210 -a 0 -x {10.0 9.0 3100 ------- null} h -t 3.52038 -s 0 -d 9 -p ack -e 40 -c 0 -i 6210 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.52054 -s 10 -d 7 -p ack -e 40 -c 0 -i 6214 -a 0 -x {10.0 9.0 3102 ------- null} + -t 3.52054 -s 7 -d 0 -p ack -e 40 -c 0 -i 6214 -a 0 -x {10.0 9.0 3102 ------- null} h -t 3.52054 -s 7 -d 8 -p ack -e 40 -c 0 -i 6214 -a 0 -x {10.0 9.0 3102 ------- null} r -t 3.52075 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6213 -a 0 -x {9.0 10.0 3111 ------- null} + -t 3.52075 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6213 -a 0 -x {9.0 10.0 3111 ------- null} h -t 3.52075 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6213 -a 0 -x {9.0 10.0 3111 ------- null} r -t 3.52094 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6199 -a 0 -x {9.0 10.0 3104 ------- null} + -t 3.52094 -s 10 -d 7 -p ack -e 40 -c 0 -i 6218 -a 0 -x {10.0 9.0 3104 ------- null} - -t 3.52094 -s 10 -d 7 -p ack -e 40 -c 0 -i 6218 -a 0 -x {10.0 9.0 3104 ------- null} h -t 3.52094 -s 10 -d 7 -p ack -e 40 -c 0 -i 6218 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.52138 -s 0 -d 9 -p ack -e 40 -c 0 -i 6208 -a 0 -x {10.0 9.0 3099 ------- null} + -t 3.52138 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6219 -a 0 -x {9.0 10.0 3114 ------- null} - -t 3.52138 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6219 -a 0 -x {9.0 10.0 3114 ------- null} h -t 3.52138 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6219 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.52141 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6205 -a 0 -x {9.0 10.0 3107 ------- null} - -t 3.52141 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6205 -a 0 -x {9.0 10.0 3107 ------- null} h -t 3.52141 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6205 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.52163 -s 10 -d 7 -p ack -e 40 -c 0 -i 6216 -a 0 -x {10.0 9.0 3103 ------- null} + -t 3.52163 -s 7 -d 0 -p ack -e 40 -c 0 -i 6216 -a 0 -x {10.0 9.0 3103 ------- null} h -t 3.52163 -s 7 -d 8 -p ack -e 40 -c 0 -i 6216 -a 0 -x {10.0 9.0 3103 ------- null} + -t 3.52168 -s 0 -d 9 -p ack -e 40 -c 0 -i 6212 -a 0 -x {10.0 9.0 3101 ------- null} - -t 3.52168 -s 0 -d 9 -p ack -e 40 -c 0 -i 6212 -a 0 -x {10.0 9.0 3101 ------- null} h -t 3.52168 -s 0 -d 9 -p ack -e 40 -c 0 -i 6212 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.52192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6215 -a 0 -x {9.0 10.0 3112 ------- null} + -t 3.52192 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6215 -a 0 -x {9.0 10.0 3112 ------- null} h -t 3.52192 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6215 -a 0 -x {9.0 10.0 3112 ------- null} r -t 3.52203 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6201 -a 0 -x {9.0 10.0 3105 ------- null} + -t 3.52203 -s 10 -d 7 -p ack -e 40 -c 0 -i 6220 -a 0 -x {10.0 9.0 3105 ------- null} - -t 3.52203 -s 10 -d 7 -p ack -e 40 -c 0 -i 6220 -a 0 -x {10.0 9.0 3105 ------- null} h -t 3.52203 -s 10 -d 7 -p ack -e 40 -c 0 -i 6220 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.52242 -s 0 -d 9 -p ack -e 40 -c 0 -i 6210 -a 0 -x {10.0 9.0 3100 ------- null} + -t 3.52242 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6221 -a 0 -x {9.0 10.0 3115 ------- null} - -t 3.52242 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6221 -a 0 -x {9.0 10.0 3115 ------- null} h -t 3.52242 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6221 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.52258 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6207 -a 0 -x {9.0 10.0 3108 ------- null} - -t 3.52258 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6207 -a 0 -x {9.0 10.0 3108 ------- null} h -t 3.52258 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6207 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.52278 -s 0 -d 9 -p ack -e 40 -c 0 -i 6214 -a 0 -x {10.0 9.0 3102 ------- null} - -t 3.52278 -s 0 -d 9 -p ack -e 40 -c 0 -i 6214 -a 0 -x {10.0 9.0 3102 ------- null} h -t 3.52278 -s 0 -d 9 -p ack -e 40 -c 0 -i 6214 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.52298 -s 10 -d 7 -p ack -e 40 -c 0 -i 6218 -a 0 -x {10.0 9.0 3104 ------- null} + -t 3.52298 -s 7 -d 0 -p ack -e 40 -c 0 -i 6218 -a 0 -x {10.0 9.0 3104 ------- null} h -t 3.52298 -s 7 -d 8 -p ack -e 40 -c 0 -i 6218 -a 0 -x {10.0 9.0 3104 ------- null} r -t 3.52312 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6203 -a 0 -x {9.0 10.0 3106 ------- null} + -t 3.52312 -s 10 -d 7 -p ack -e 40 -c 0 -i 6222 -a 0 -x {10.0 9.0 3106 ------- null} - -t 3.52312 -s 10 -d 7 -p ack -e 40 -c 0 -i 6222 -a 0 -x {10.0 9.0 3106 ------- null} h -t 3.52312 -s 10 -d 7 -p ack -e 40 -c 0 -i 6222 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.52312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6217 -a 0 -x {9.0 10.0 3113 ------- null} + -t 3.52312 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6217 -a 0 -x {9.0 10.0 3113 ------- null} h -t 3.52312 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6217 -a 0 -x {9.0 10.0 3113 ------- null} + -t 3.52366 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6209 -a 0 -x {9.0 10.0 3109 ------- null} - -t 3.52366 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6209 -a 0 -x {9.0 10.0 3109 ------- null} h -t 3.52366 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6209 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.52371 -s 0 -d 9 -p ack -e 40 -c 0 -i 6212 -a 0 -x {10.0 9.0 3101 ------- null} + -t 3.52371 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6223 -a 0 -x {9.0 10.0 3116 ------- null} - -t 3.52371 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6223 -a 0 -x {9.0 10.0 3116 ------- null} h -t 3.52371 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6223 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.52374 -s 0 -d 9 -p ack -e 40 -c 0 -i 6216 -a 0 -x {10.0 9.0 3103 ------- null} - -t 3.52374 -s 0 -d 9 -p ack -e 40 -c 0 -i 6216 -a 0 -x {10.0 9.0 3103 ------- null} h -t 3.52374 -s 0 -d 9 -p ack -e 40 -c 0 -i 6216 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.52406 -s 10 -d 7 -p ack -e 40 -c 0 -i 6220 -a 0 -x {10.0 9.0 3105 ------- null} + -t 3.52406 -s 7 -d 0 -p ack -e 40 -c 0 -i 6220 -a 0 -x {10.0 9.0 3105 ------- null} h -t 3.52406 -s 7 -d 8 -p ack -e 40 -c 0 -i 6220 -a 0 -x {10.0 9.0 3105 ------- null} r -t 3.52418 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6219 -a 0 -x {9.0 10.0 3114 ------- null} + -t 3.52418 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6219 -a 0 -x {9.0 10.0 3114 ------- null} h -t 3.52418 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6219 -a 0 -x {9.0 10.0 3114 ------- null} r -t 3.52421 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6205 -a 0 -x {9.0 10.0 3107 ------- null} + -t 3.52421 -s 10 -d 7 -p ack -e 40 -c 0 -i 6224 -a 0 -x {10.0 9.0 3107 ------- null} - -t 3.52421 -s 10 -d 7 -p ack -e 40 -c 0 -i 6224 -a 0 -x {10.0 9.0 3107 ------- null} h -t 3.52421 -s 10 -d 7 -p ack -e 40 -c 0 -i 6224 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.52475 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6211 -a 0 -x {9.0 10.0 3110 ------- null} - -t 3.52475 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6211 -a 0 -x {9.0 10.0 3110 ------- null} h -t 3.52475 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6211 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.52482 -s 0 -d 9 -p ack -e 40 -c 0 -i 6214 -a 0 -x {10.0 9.0 3102 ------- null} + -t 3.52482 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6225 -a 0 -x {9.0 10.0 3117 ------- null} - -t 3.52482 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6225 -a 0 -x {9.0 10.0 3117 ------- null} h -t 3.52482 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6225 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.52502 -s 0 -d 9 -p ack -e 40 -c 0 -i 6218 -a 0 -x {10.0 9.0 3104 ------- null} - -t 3.52502 -s 0 -d 9 -p ack -e 40 -c 0 -i 6218 -a 0 -x {10.0 9.0 3104 ------- null} h -t 3.52502 -s 0 -d 9 -p ack -e 40 -c 0 -i 6218 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.52515 -s 10 -d 7 -p ack -e 40 -c 0 -i 6222 -a 0 -x {10.0 9.0 3106 ------- null} + -t 3.52515 -s 7 -d 0 -p ack -e 40 -c 0 -i 6222 -a 0 -x {10.0 9.0 3106 ------- null} h -t 3.52515 -s 7 -d 8 -p ack -e 40 -c 0 -i 6222 -a 0 -x {10.0 9.0 3106 ------- null} r -t 3.52522 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6221 -a 0 -x {9.0 10.0 3115 ------- null} + -t 3.52522 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6221 -a 0 -x {9.0 10.0 3115 ------- null} h -t 3.52522 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6221 -a 0 -x {9.0 10.0 3115 ------- null} r -t 3.52538 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6207 -a 0 -x {9.0 10.0 3108 ------- null} + -t 3.52538 -s 10 -d 7 -p ack -e 40 -c 0 -i 6226 -a 0 -x {10.0 9.0 3108 ------- null} - -t 3.52538 -s 10 -d 7 -p ack -e 40 -c 0 -i 6226 -a 0 -x {10.0 9.0 3108 ------- null} h -t 3.52538 -s 10 -d 7 -p ack -e 40 -c 0 -i 6226 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.52578 -s 0 -d 9 -p ack -e 40 -c 0 -i 6216 -a 0 -x {10.0 9.0 3103 ------- null} + -t 3.52578 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6227 -a 0 -x {9.0 10.0 3118 ------- null} - -t 3.52578 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6227 -a 0 -x {9.0 10.0 3118 ------- null} h -t 3.52578 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6227 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.5261 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6213 -a 0 -x {9.0 10.0 3111 ------- null} - -t 3.5261 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6213 -a 0 -x {9.0 10.0 3111 ------- null} h -t 3.5261 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6213 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.52624 -s 10 -d 7 -p ack -e 40 -c 0 -i 6224 -a 0 -x {10.0 9.0 3107 ------- null} + -t 3.52624 -s 7 -d 0 -p ack -e 40 -c 0 -i 6224 -a 0 -x {10.0 9.0 3107 ------- null} h -t 3.52624 -s 7 -d 8 -p ack -e 40 -c 0 -i 6224 -a 0 -x {10.0 9.0 3107 ------- null} + -t 3.5264 -s 0 -d 9 -p ack -e 40 -c 0 -i 6220 -a 0 -x {10.0 9.0 3105 ------- null} - -t 3.5264 -s 0 -d 9 -p ack -e 40 -c 0 -i 6220 -a 0 -x {10.0 9.0 3105 ------- null} h -t 3.5264 -s 0 -d 9 -p ack -e 40 -c 0 -i 6220 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.52646 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6209 -a 0 -x {9.0 10.0 3109 ------- null} + -t 3.52646 -s 10 -d 7 -p ack -e 40 -c 0 -i 6228 -a 0 -x {10.0 9.0 3109 ------- null} - -t 3.52646 -s 10 -d 7 -p ack -e 40 -c 0 -i 6228 -a 0 -x {10.0 9.0 3109 ------- null} h -t 3.52646 -s 10 -d 7 -p ack -e 40 -c 0 -i 6228 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.52651 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6223 -a 0 -x {9.0 10.0 3116 ------- null} + -t 3.52651 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6223 -a 0 -x {9.0 10.0 3116 ------- null} h -t 3.52651 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6223 -a 0 -x {9.0 10.0 3116 ------- null} r -t 3.52706 -s 0 -d 9 -p ack -e 40 -c 0 -i 6218 -a 0 -x {10.0 9.0 3104 ------- null} + -t 3.52706 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6229 -a 0 -x {9.0 10.0 3119 ------- null} - -t 3.52706 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6229 -a 0 -x {9.0 10.0 3119 ------- null} h -t 3.52706 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6229 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.52741 -s 10 -d 7 -p ack -e 40 -c 0 -i 6226 -a 0 -x {10.0 9.0 3108 ------- null} + -t 3.52741 -s 7 -d 0 -p ack -e 40 -c 0 -i 6226 -a 0 -x {10.0 9.0 3108 ------- null} h -t 3.52741 -s 7 -d 8 -p ack -e 40 -c 0 -i 6226 -a 0 -x {10.0 9.0 3108 ------- null} + -t 3.52747 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6215 -a 0 -x {9.0 10.0 3112 ------- null} - -t 3.52747 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6215 -a 0 -x {9.0 10.0 3112 ------- null} h -t 3.52747 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6215 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.52755 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6211 -a 0 -x {9.0 10.0 3110 ------- null} + -t 3.52755 -s 10 -d 7 -p ack -e 40 -c 0 -i 6230 -a 0 -x {10.0 9.0 3110 ------- null} - -t 3.52755 -s 10 -d 7 -p ack -e 40 -c 0 -i 6230 -a 0 -x {10.0 9.0 3110 ------- null} h -t 3.52755 -s 10 -d 7 -p ack -e 40 -c 0 -i 6230 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.52762 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6225 -a 0 -x {9.0 10.0 3117 ------- null} + -t 3.52762 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6225 -a 0 -x {9.0 10.0 3117 ------- null} h -t 3.52762 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6225 -a 0 -x {9.0 10.0 3117 ------- null} + -t 3.52774 -s 0 -d 9 -p ack -e 40 -c 0 -i 6222 -a 0 -x {10.0 9.0 3106 ------- null} - -t 3.52774 -s 0 -d 9 -p ack -e 40 -c 0 -i 6222 -a 0 -x {10.0 9.0 3106 ------- null} h -t 3.52774 -s 0 -d 9 -p ack -e 40 -c 0 -i 6222 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.52843 -s 0 -d 9 -p ack -e 40 -c 0 -i 6220 -a 0 -x {10.0 9.0 3105 ------- null} + -t 3.52843 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6231 -a 0 -x {9.0 10.0 3120 ------- null} - -t 3.52843 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6231 -a 0 -x {9.0 10.0 3120 ------- null} h -t 3.52843 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6231 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.5285 -s 10 -d 7 -p ack -e 40 -c 0 -i 6228 -a 0 -x {10.0 9.0 3109 ------- null} + -t 3.5285 -s 7 -d 0 -p ack -e 40 -c 0 -i 6228 -a 0 -x {10.0 9.0 3109 ------- null} h -t 3.5285 -s 7 -d 8 -p ack -e 40 -c 0 -i 6228 -a 0 -x {10.0 9.0 3109 ------- null} r -t 3.52858 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6227 -a 0 -x {9.0 10.0 3118 ------- null} + -t 3.52858 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6227 -a 0 -x {9.0 10.0 3118 ------- null} h -t 3.52858 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6227 -a 0 -x {9.0 10.0 3118 ------- null} + -t 3.52866 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6217 -a 0 -x {9.0 10.0 3113 ------- null} - -t 3.52866 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6217 -a 0 -x {9.0 10.0 3113 ------- null} h -t 3.52866 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6217 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.52885 -s 0 -d 9 -p ack -e 40 -c 0 -i 6224 -a 0 -x {10.0 9.0 3107 ------- null} - -t 3.52885 -s 0 -d 9 -p ack -e 40 -c 0 -i 6224 -a 0 -x {10.0 9.0 3107 ------- null} h -t 3.52885 -s 0 -d 9 -p ack -e 40 -c 0 -i 6224 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.5289 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6213 -a 0 -x {9.0 10.0 3111 ------- null} + -t 3.5289 -s 10 -d 7 -p ack -e 40 -c 0 -i 6232 -a 0 -x {10.0 9.0 3111 ------- null} - -t 3.5289 -s 10 -d 7 -p ack -e 40 -c 0 -i 6232 -a 0 -x {10.0 9.0 3111 ------- null} h -t 3.5289 -s 10 -d 7 -p ack -e 40 -c 0 -i 6232 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.52958 -s 10 -d 7 -p ack -e 40 -c 0 -i 6230 -a 0 -x {10.0 9.0 3110 ------- null} + -t 3.52958 -s 7 -d 0 -p ack -e 40 -c 0 -i 6230 -a 0 -x {10.0 9.0 3110 ------- null} h -t 3.52958 -s 7 -d 8 -p ack -e 40 -c 0 -i 6230 -a 0 -x {10.0 9.0 3110 ------- null} + -t 3.52974 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6219 -a 0 -x {9.0 10.0 3114 ------- null} - -t 3.52974 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6219 -a 0 -x {9.0 10.0 3114 ------- null} h -t 3.52974 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6219 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.52978 -s 0 -d 9 -p ack -e 40 -c 0 -i 6222 -a 0 -x {10.0 9.0 3106 ------- null} + -t 3.52978 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6233 -a 0 -x {9.0 10.0 3121 ------- null} - -t 3.52978 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6233 -a 0 -x {9.0 10.0 3121 ------- null} h -t 3.52978 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6233 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.52984 -s 0 -d 9 -p ack -e 40 -c 0 -i 6226 -a 0 -x {10.0 9.0 3108 ------- null} - -t 3.52984 -s 0 -d 9 -p ack -e 40 -c 0 -i 6226 -a 0 -x {10.0 9.0 3108 ------- null} h -t 3.52984 -s 0 -d 9 -p ack -e 40 -c 0 -i 6226 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.52986 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6229 -a 0 -x {9.0 10.0 3119 ------- null} + -t 3.52986 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6229 -a 0 -x {9.0 10.0 3119 ------- null} h -t 3.52986 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6229 -a 0 -x {9.0 10.0 3119 ------- null} r -t 3.53027 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6215 -a 0 -x {9.0 10.0 3112 ------- null} + -t 3.53027 -s 10 -d 7 -p ack -e 40 -c 0 -i 6234 -a 0 -x {10.0 9.0 3112 ------- null} - -t 3.53027 -s 10 -d 7 -p ack -e 40 -c 0 -i 6234 -a 0 -x {10.0 9.0 3112 ------- null} h -t 3.53027 -s 10 -d 7 -p ack -e 40 -c 0 -i 6234 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.53083 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6221 -a 0 -x {9.0 10.0 3115 ------- null} - -t 3.53083 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6221 -a 0 -x {9.0 10.0 3115 ------- null} h -t 3.53083 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6221 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.53088 -s 0 -d 9 -p ack -e 40 -c 0 -i 6224 -a 0 -x {10.0 9.0 3107 ------- null} + -t 3.53088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6235 -a 0 -x {9.0 10.0 3122 ------- null} - -t 3.53088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6235 -a 0 -x {9.0 10.0 3122 ------- null} h -t 3.53088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6235 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.53093 -s 10 -d 7 -p ack -e 40 -c 0 -i 6232 -a 0 -x {10.0 9.0 3111 ------- null} + -t 3.53093 -s 7 -d 0 -p ack -e 40 -c 0 -i 6232 -a 0 -x {10.0 9.0 3111 ------- null} h -t 3.53093 -s 7 -d 8 -p ack -e 40 -c 0 -i 6232 -a 0 -x {10.0 9.0 3111 ------- null} + -t 3.53096 -s 0 -d 9 -p ack -e 40 -c 0 -i 6228 -a 0 -x {10.0 9.0 3109 ------- null} - -t 3.53096 -s 0 -d 9 -p ack -e 40 -c 0 -i 6228 -a 0 -x {10.0 9.0 3109 ------- null} h -t 3.53096 -s 0 -d 9 -p ack -e 40 -c 0 -i 6228 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.53123 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6231 -a 0 -x {9.0 10.0 3120 ------- null} + -t 3.53123 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6231 -a 0 -x {9.0 10.0 3120 ------- null} h -t 3.53123 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6231 -a 0 -x {9.0 10.0 3120 ------- null} r -t 3.53146 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6217 -a 0 -x {9.0 10.0 3113 ------- null} + -t 3.53146 -s 10 -d 7 -p ack -e 40 -c 0 -i 6236 -a 0 -x {10.0 9.0 3113 ------- null} - -t 3.53146 -s 10 -d 7 -p ack -e 40 -c 0 -i 6236 -a 0 -x {10.0 9.0 3113 ------- null} h -t 3.53146 -s 10 -d 7 -p ack -e 40 -c 0 -i 6236 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.53187 -s 0 -d 9 -p ack -e 40 -c 0 -i 6226 -a 0 -x {10.0 9.0 3108 ------- null} + -t 3.53187 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6237 -a 0 -x {9.0 10.0 3123 ------- null} - -t 3.53187 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6237 -a 0 -x {9.0 10.0 3123 ------- null} h -t 3.53187 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6237 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.53192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6223 -a 0 -x {9.0 10.0 3116 ------- null} - -t 3.53192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6223 -a 0 -x {9.0 10.0 3116 ------- null} h -t 3.53192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6223 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.53214 -s 0 -d 9 -p ack -e 40 -c 0 -i 6230 -a 0 -x {10.0 9.0 3110 ------- null} - -t 3.53214 -s 0 -d 9 -p ack -e 40 -c 0 -i 6230 -a 0 -x {10.0 9.0 3110 ------- null} h -t 3.53214 -s 0 -d 9 -p ack -e 40 -c 0 -i 6230 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.5323 -s 10 -d 7 -p ack -e 40 -c 0 -i 6234 -a 0 -x {10.0 9.0 3112 ------- null} + -t 3.5323 -s 7 -d 0 -p ack -e 40 -c 0 -i 6234 -a 0 -x {10.0 9.0 3112 ------- null} h -t 3.5323 -s 7 -d 8 -p ack -e 40 -c 0 -i 6234 -a 0 -x {10.0 9.0 3112 ------- null} r -t 3.53254 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6219 -a 0 -x {9.0 10.0 3114 ------- null} + -t 3.53254 -s 10 -d 7 -p ack -e 40 -c 0 -i 6238 -a 0 -x {10.0 9.0 3114 ------- null} - -t 3.53254 -s 10 -d 7 -p ack -e 40 -c 0 -i 6238 -a 0 -x {10.0 9.0 3114 ------- null} h -t 3.53254 -s 10 -d 7 -p ack -e 40 -c 0 -i 6238 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.53258 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6233 -a 0 -x {9.0 10.0 3121 ------- null} + -t 3.53258 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6233 -a 0 -x {9.0 10.0 3121 ------- null} h -t 3.53258 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6233 -a 0 -x {9.0 10.0 3121 ------- null} r -t 3.53299 -s 0 -d 9 -p ack -e 40 -c 0 -i 6228 -a 0 -x {10.0 9.0 3109 ------- null} + -t 3.53299 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6239 -a 0 -x {9.0 10.0 3124 ------- null} - -t 3.53299 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6239 -a 0 -x {9.0 10.0 3124 ------- null} h -t 3.53299 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6239 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.53301 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6225 -a 0 -x {9.0 10.0 3117 ------- null} - -t 3.53301 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6225 -a 0 -x {9.0 10.0 3117 ------- null} h -t 3.53301 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6225 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.53326 -s 0 -d 9 -p ack -e 40 -c 0 -i 6232 -a 0 -x {10.0 9.0 3111 ------- null} - -t 3.53326 -s 0 -d 9 -p ack -e 40 -c 0 -i 6232 -a 0 -x {10.0 9.0 3111 ------- null} h -t 3.53326 -s 0 -d 9 -p ack -e 40 -c 0 -i 6232 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.53349 -s 10 -d 7 -p ack -e 40 -c 0 -i 6236 -a 0 -x {10.0 9.0 3113 ------- null} + -t 3.53349 -s 7 -d 0 -p ack -e 40 -c 0 -i 6236 -a 0 -x {10.0 9.0 3113 ------- null} h -t 3.53349 -s 7 -d 8 -p ack -e 40 -c 0 -i 6236 -a 0 -x {10.0 9.0 3113 ------- null} r -t 3.53363 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6221 -a 0 -x {9.0 10.0 3115 ------- null} + -t 3.53363 -s 10 -d 7 -p ack -e 40 -c 0 -i 6240 -a 0 -x {10.0 9.0 3115 ------- null} - -t 3.53363 -s 10 -d 7 -p ack -e 40 -c 0 -i 6240 -a 0 -x {10.0 9.0 3115 ------- null} h -t 3.53363 -s 10 -d 7 -p ack -e 40 -c 0 -i 6240 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.53368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6235 -a 0 -x {9.0 10.0 3122 ------- null} + -t 3.53368 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6235 -a 0 -x {9.0 10.0 3122 ------- null} h -t 3.53368 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6235 -a 0 -x {9.0 10.0 3122 ------- null} r -t 3.53418 -s 0 -d 9 -p ack -e 40 -c 0 -i 6230 -a 0 -x {10.0 9.0 3110 ------- null} + -t 3.53418 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6241 -a 0 -x {9.0 10.0 3125 ------- null} - -t 3.53418 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6241 -a 0 -x {9.0 10.0 3125 ------- null} h -t 3.53418 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6241 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.53434 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6227 -a 0 -x {9.0 10.0 3118 ------- null} - -t 3.53434 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6227 -a 0 -x {9.0 10.0 3118 ------- null} h -t 3.53434 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6227 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.53454 -s 0 -d 9 -p ack -e 40 -c 0 -i 6234 -a 0 -x {10.0 9.0 3112 ------- null} - -t 3.53454 -s 0 -d 9 -p ack -e 40 -c 0 -i 6234 -a 0 -x {10.0 9.0 3112 ------- null} h -t 3.53454 -s 0 -d 9 -p ack -e 40 -c 0 -i 6234 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.53458 -s 10 -d 7 -p ack -e 40 -c 0 -i 6238 -a 0 -x {10.0 9.0 3114 ------- null} + -t 3.53458 -s 7 -d 0 -p ack -e 40 -c 0 -i 6238 -a 0 -x {10.0 9.0 3114 ------- null} h -t 3.53458 -s 7 -d 8 -p ack -e 40 -c 0 -i 6238 -a 0 -x {10.0 9.0 3114 ------- null} r -t 3.53467 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6237 -a 0 -x {9.0 10.0 3123 ------- null} + -t 3.53467 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6237 -a 0 -x {9.0 10.0 3123 ------- null} h -t 3.53467 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6237 -a 0 -x {9.0 10.0 3123 ------- null} r -t 3.53472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6223 -a 0 -x {9.0 10.0 3116 ------- null} + -t 3.53472 -s 10 -d 7 -p ack -e 40 -c 0 -i 6242 -a 0 -x {10.0 9.0 3116 ------- null} - -t 3.53472 -s 10 -d 7 -p ack -e 40 -c 0 -i 6242 -a 0 -x {10.0 9.0 3116 ------- null} h -t 3.53472 -s 10 -d 7 -p ack -e 40 -c 0 -i 6242 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.5353 -s 0 -d 9 -p ack -e 40 -c 0 -i 6232 -a 0 -x {10.0 9.0 3111 ------- null} + -t 3.5353 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6243 -a 0 -x {9.0 10.0 3126 ------- null} - -t 3.5353 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6243 -a 0 -x {9.0 10.0 3126 ------- null} h -t 3.5353 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6243 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.53542 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6229 -a 0 -x {9.0 10.0 3119 ------- null} - -t 3.53542 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6229 -a 0 -x {9.0 10.0 3119 ------- null} h -t 3.53542 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6229 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.53554 -s 0 -d 9 -p ack -e 40 -c 0 -i 6236 -a 0 -x {10.0 9.0 3113 ------- null} - -t 3.53554 -s 0 -d 9 -p ack -e 40 -c 0 -i 6236 -a 0 -x {10.0 9.0 3113 ------- null} h -t 3.53554 -s 0 -d 9 -p ack -e 40 -c 0 -i 6236 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.53566 -s 10 -d 7 -p ack -e 40 -c 0 -i 6240 -a 0 -x {10.0 9.0 3115 ------- null} + -t 3.53566 -s 7 -d 0 -p ack -e 40 -c 0 -i 6240 -a 0 -x {10.0 9.0 3115 ------- null} h -t 3.53566 -s 7 -d 8 -p ack -e 40 -c 0 -i 6240 -a 0 -x {10.0 9.0 3115 ------- null} r -t 3.53579 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6239 -a 0 -x {9.0 10.0 3124 ------- null} + -t 3.53579 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6239 -a 0 -x {9.0 10.0 3124 ------- null} h -t 3.53579 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6239 -a 0 -x {9.0 10.0 3124 ------- null} r -t 3.53581 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6225 -a 0 -x {9.0 10.0 3117 ------- null} + -t 3.53581 -s 10 -d 7 -p ack -e 40 -c 0 -i 6244 -a 0 -x {10.0 9.0 3117 ------- null} - -t 3.53581 -s 10 -d 7 -p ack -e 40 -c 0 -i 6244 -a 0 -x {10.0 9.0 3117 ------- null} h -t 3.53581 -s 10 -d 7 -p ack -e 40 -c 0 -i 6244 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.53651 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6231 -a 0 -x {9.0 10.0 3120 ------- null} - -t 3.53651 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6231 -a 0 -x {9.0 10.0 3120 ------- null} h -t 3.53651 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6231 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.53658 -s 0 -d 9 -p ack -e 40 -c 0 -i 6234 -a 0 -x {10.0 9.0 3112 ------- null} + -t 3.53658 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6245 -a 0 -x {9.0 10.0 3127 ------- null} - -t 3.53658 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6245 -a 0 -x {9.0 10.0 3127 ------- null} h -t 3.53658 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6245 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.53669 -s 0 -d 9 -p ack -e 40 -c 0 -i 6238 -a 0 -x {10.0 9.0 3114 ------- null} - -t 3.53669 -s 0 -d 9 -p ack -e 40 -c 0 -i 6238 -a 0 -x {10.0 9.0 3114 ------- null} h -t 3.53669 -s 0 -d 9 -p ack -e 40 -c 0 -i 6238 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.53675 -s 10 -d 7 -p ack -e 40 -c 0 -i 6242 -a 0 -x {10.0 9.0 3116 ------- null} + -t 3.53675 -s 7 -d 0 -p ack -e 40 -c 0 -i 6242 -a 0 -x {10.0 9.0 3116 ------- null} h -t 3.53675 -s 7 -d 8 -p ack -e 40 -c 0 -i 6242 -a 0 -x {10.0 9.0 3116 ------- null} r -t 3.53698 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6241 -a 0 -x {9.0 10.0 3125 ------- null} + -t 3.53698 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6241 -a 0 -x {9.0 10.0 3125 ------- null} h -t 3.53698 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6241 -a 0 -x {9.0 10.0 3125 ------- null} r -t 3.53714 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6227 -a 0 -x {9.0 10.0 3118 ------- null} + -t 3.53714 -s 10 -d 7 -p ack -e 40 -c 0 -i 6246 -a 0 -x {10.0 9.0 3118 ------- null} - -t 3.53714 -s 10 -d 7 -p ack -e 40 -c 0 -i 6246 -a 0 -x {10.0 9.0 3118 ------- null} h -t 3.53714 -s 10 -d 7 -p ack -e 40 -c 0 -i 6246 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.53757 -s 0 -d 9 -p ack -e 40 -c 0 -i 6236 -a 0 -x {10.0 9.0 3113 ------- null} + -t 3.53757 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6247 -a 0 -x {9.0 10.0 3128 ------- null} - -t 3.53757 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6247 -a 0 -x {9.0 10.0 3128 ------- null} h -t 3.53757 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6247 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.5376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6233 -a 0 -x {9.0 10.0 3121 ------- null} - -t 3.5376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6233 -a 0 -x {9.0 10.0 3121 ------- null} h -t 3.5376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6233 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.53784 -s 10 -d 7 -p ack -e 40 -c 0 -i 6244 -a 0 -x {10.0 9.0 3117 ------- null} + -t 3.53784 -s 7 -d 0 -p ack -e 40 -c 0 -i 6244 -a 0 -x {10.0 9.0 3117 ------- null} h -t 3.53784 -s 7 -d 8 -p ack -e 40 -c 0 -i 6244 -a 0 -x {10.0 9.0 3117 ------- null} + -t 3.5379 -s 0 -d 9 -p ack -e 40 -c 0 -i 6240 -a 0 -x {10.0 9.0 3115 ------- null} - -t 3.5379 -s 0 -d 9 -p ack -e 40 -c 0 -i 6240 -a 0 -x {10.0 9.0 3115 ------- null} h -t 3.5379 -s 0 -d 9 -p ack -e 40 -c 0 -i 6240 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.5381 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6243 -a 0 -x {9.0 10.0 3126 ------- null} + -t 3.5381 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6243 -a 0 -x {9.0 10.0 3126 ------- null} h -t 3.5381 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6243 -a 0 -x {9.0 10.0 3126 ------- null} r -t 3.53822 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6229 -a 0 -x {9.0 10.0 3119 ------- null} + -t 3.53822 -s 10 -d 7 -p ack -e 40 -c 0 -i 6248 -a 0 -x {10.0 9.0 3119 ------- null} - -t 3.53822 -s 10 -d 7 -p ack -e 40 -c 0 -i 6248 -a 0 -x {10.0 9.0 3119 ------- null} h -t 3.53822 -s 10 -d 7 -p ack -e 40 -c 0 -i 6248 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.53872 -s 0 -d 9 -p ack -e 40 -c 0 -i 6238 -a 0 -x {10.0 9.0 3114 ------- null} + -t 3.53872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6249 -a 0 -x {9.0 10.0 3129 ------- null} - -t 3.53872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6249 -a 0 -x {9.0 10.0 3129 ------- null} h -t 3.53872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6249 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.53896 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6235 -a 0 -x {9.0 10.0 3122 ------- null} - -t 3.53896 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6235 -a 0 -x {9.0 10.0 3122 ------- null} h -t 3.53896 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6235 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.53917 -s 10 -d 7 -p ack -e 40 -c 0 -i 6246 -a 0 -x {10.0 9.0 3118 ------- null} + -t 3.53917 -s 7 -d 0 -p ack -e 40 -c 0 -i 6246 -a 0 -x {10.0 9.0 3118 ------- null} h -t 3.53917 -s 7 -d 8 -p ack -e 40 -c 0 -i 6246 -a 0 -x {10.0 9.0 3118 ------- null} + -t 3.5392 -s 0 -d 9 -p ack -e 40 -c 0 -i 6242 -a 0 -x {10.0 9.0 3116 ------- null} - -t 3.5392 -s 0 -d 9 -p ack -e 40 -c 0 -i 6242 -a 0 -x {10.0 9.0 3116 ------- null} h -t 3.5392 -s 0 -d 9 -p ack -e 40 -c 0 -i 6242 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.53931 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6231 -a 0 -x {9.0 10.0 3120 ------- null} + -t 3.53931 -s 10 -d 7 -p ack -e 40 -c 0 -i 6250 -a 0 -x {10.0 9.0 3120 ------- null} - -t 3.53931 -s 10 -d 7 -p ack -e 40 -c 0 -i 6250 -a 0 -x {10.0 9.0 3120 ------- null} h -t 3.53931 -s 10 -d 7 -p ack -e 40 -c 0 -i 6250 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.53938 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6245 -a 0 -x {9.0 10.0 3127 ------- null} + -t 3.53938 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6245 -a 0 -x {9.0 10.0 3127 ------- null} h -t 3.53938 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6245 -a 0 -x {9.0 10.0 3127 ------- null} r -t 3.53994 -s 0 -d 9 -p ack -e 40 -c 0 -i 6240 -a 0 -x {10.0 9.0 3115 ------- null} + -t 3.53994 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6251 -a 0 -x {9.0 10.0 3130 ------- null} - -t 3.53994 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6251 -a 0 -x {9.0 10.0 3130 ------- null} h -t 3.53994 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6251 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.54005 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6237 -a 0 -x {9.0 10.0 3123 ------- null} - -t 3.54005 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6237 -a 0 -x {9.0 10.0 3123 ------- null} h -t 3.54005 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6237 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.54026 -s 10 -d 7 -p ack -e 40 -c 0 -i 6248 -a 0 -x {10.0 9.0 3119 ------- null} + -t 3.54026 -s 7 -d 0 -p ack -e 40 -c 0 -i 6248 -a 0 -x {10.0 9.0 3119 ------- null} h -t 3.54026 -s 7 -d 8 -p ack -e 40 -c 0 -i 6248 -a 0 -x {10.0 9.0 3119 ------- null} + -t 3.54029 -s 0 -d 9 -p ack -e 40 -c 0 -i 6244 -a 0 -x {10.0 9.0 3117 ------- null} - -t 3.54029 -s 0 -d 9 -p ack -e 40 -c 0 -i 6244 -a 0 -x {10.0 9.0 3117 ------- null} h -t 3.54029 -s 0 -d 9 -p ack -e 40 -c 0 -i 6244 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.54037 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6247 -a 0 -x {9.0 10.0 3128 ------- null} + -t 3.54037 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6247 -a 0 -x {9.0 10.0 3128 ------- null} h -t 3.54037 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6247 -a 0 -x {9.0 10.0 3128 ------- null} r -t 3.5404 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6233 -a 0 -x {9.0 10.0 3121 ------- null} + -t 3.5404 -s 10 -d 7 -p ack -e 40 -c 0 -i 6252 -a 0 -x {10.0 9.0 3121 ------- null} - -t 3.5404 -s 10 -d 7 -p ack -e 40 -c 0 -i 6252 -a 0 -x {10.0 9.0 3121 ------- null} h -t 3.5404 -s 10 -d 7 -p ack -e 40 -c 0 -i 6252 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.54114 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6239 -a 0 -x {9.0 10.0 3124 ------- null} - -t 3.54114 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6239 -a 0 -x {9.0 10.0 3124 ------- null} h -t 3.54114 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6239 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.54123 -s 0 -d 9 -p ack -e 40 -c 0 -i 6242 -a 0 -x {10.0 9.0 3116 ------- null} + -t 3.54123 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6253 -a 0 -x {9.0 10.0 3131 ------- null} - -t 3.54123 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6253 -a 0 -x {9.0 10.0 3131 ------- null} h -t 3.54123 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6253 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.54134 -s 0 -d 9 -p ack -e 40 -c 0 -i 6246 -a 0 -x {10.0 9.0 3118 ------- null} - -t 3.54134 -s 0 -d 9 -p ack -e 40 -c 0 -i 6246 -a 0 -x {10.0 9.0 3118 ------- null} h -t 3.54134 -s 0 -d 9 -p ack -e 40 -c 0 -i 6246 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.54134 -s 10 -d 7 -p ack -e 40 -c 0 -i 6250 -a 0 -x {10.0 9.0 3120 ------- null} + -t 3.54134 -s 7 -d 0 -p ack -e 40 -c 0 -i 6250 -a 0 -x {10.0 9.0 3120 ------- null} h -t 3.54134 -s 7 -d 8 -p ack -e 40 -c 0 -i 6250 -a 0 -x {10.0 9.0 3120 ------- null} r -t 3.54152 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6249 -a 0 -x {9.0 10.0 3129 ------- null} + -t 3.54152 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6249 -a 0 -x {9.0 10.0 3129 ------- null} h -t 3.54152 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6249 -a 0 -x {9.0 10.0 3129 ------- null} r -t 3.54176 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6235 -a 0 -x {9.0 10.0 3122 ------- null} + -t 3.54176 -s 10 -d 7 -p ack -e 40 -c 0 -i 6254 -a 0 -x {10.0 9.0 3122 ------- null} - -t 3.54176 -s 10 -d 7 -p ack -e 40 -c 0 -i 6254 -a 0 -x {10.0 9.0 3122 ------- null} h -t 3.54176 -s 10 -d 7 -p ack -e 40 -c 0 -i 6254 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.54222 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6241 -a 0 -x {9.0 10.0 3125 ------- null} - -t 3.54222 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6241 -a 0 -x {9.0 10.0 3125 ------- null} h -t 3.54222 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6241 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.54232 -s 0 -d 9 -p ack -e 40 -c 0 -i 6244 -a 0 -x {10.0 9.0 3117 ------- null} + -t 3.54232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6255 -a 0 -x {9.0 10.0 3132 ------- null} - -t 3.54232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6255 -a 0 -x {9.0 10.0 3132 ------- null} h -t 3.54232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6255 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.54243 -s 10 -d 7 -p ack -e 40 -c 0 -i 6252 -a 0 -x {10.0 9.0 3121 ------- null} + -t 3.54243 -s 7 -d 0 -p ack -e 40 -c 0 -i 6252 -a 0 -x {10.0 9.0 3121 ------- null} h -t 3.54243 -s 7 -d 8 -p ack -e 40 -c 0 -i 6252 -a 0 -x {10.0 9.0 3121 ------- null} + -t 3.54246 -s 0 -d 9 -p ack -e 40 -c 0 -i 6248 -a 0 -x {10.0 9.0 3119 ------- null} - -t 3.54246 -s 0 -d 9 -p ack -e 40 -c 0 -i 6248 -a 0 -x {10.0 9.0 3119 ------- null} h -t 3.54246 -s 0 -d 9 -p ack -e 40 -c 0 -i 6248 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.54274 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6251 -a 0 -x {9.0 10.0 3130 ------- null} + -t 3.54274 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6251 -a 0 -x {9.0 10.0 3130 ------- null} h -t 3.54274 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6251 -a 0 -x {9.0 10.0 3130 ------- null} r -t 3.54285 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6237 -a 0 -x {9.0 10.0 3123 ------- null} + -t 3.54285 -s 10 -d 7 -p ack -e 40 -c 0 -i 6256 -a 0 -x {10.0 9.0 3123 ------- null} - -t 3.54285 -s 10 -d 7 -p ack -e 40 -c 0 -i 6256 -a 0 -x {10.0 9.0 3123 ------- null} h -t 3.54285 -s 10 -d 7 -p ack -e 40 -c 0 -i 6256 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.54331 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6243 -a 0 -x {9.0 10.0 3126 ------- null} - -t 3.54331 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6243 -a 0 -x {9.0 10.0 3126 ------- null} h -t 3.54331 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6243 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.54338 -s 0 -d 9 -p ack -e 40 -c 0 -i 6246 -a 0 -x {10.0 9.0 3118 ------- null} + -t 3.54338 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6257 -a 0 -x {9.0 10.0 3133 ------- null} - -t 3.54338 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6257 -a 0 -x {9.0 10.0 3133 ------- null} h -t 3.54338 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6257 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.5436 -s 0 -d 9 -p ack -e 40 -c 0 -i 6250 -a 0 -x {10.0 9.0 3120 ------- null} - -t 3.5436 -s 0 -d 9 -p ack -e 40 -c 0 -i 6250 -a 0 -x {10.0 9.0 3120 ------- null} h -t 3.5436 -s 0 -d 9 -p ack -e 40 -c 0 -i 6250 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.54379 -s 10 -d 7 -p ack -e 40 -c 0 -i 6254 -a 0 -x {10.0 9.0 3122 ------- null} + -t 3.54379 -s 7 -d 0 -p ack -e 40 -c 0 -i 6254 -a 0 -x {10.0 9.0 3122 ------- null} h -t 3.54379 -s 7 -d 8 -p ack -e 40 -c 0 -i 6254 -a 0 -x {10.0 9.0 3122 ------- null} r -t 3.54394 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6239 -a 0 -x {9.0 10.0 3124 ------- null} + -t 3.54394 -s 10 -d 7 -p ack -e 40 -c 0 -i 6258 -a 0 -x {10.0 9.0 3124 ------- null} - -t 3.54394 -s 10 -d 7 -p ack -e 40 -c 0 -i 6258 -a 0 -x {10.0 9.0 3124 ------- null} h -t 3.54394 -s 10 -d 7 -p ack -e 40 -c 0 -i 6258 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.54403 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6253 -a 0 -x {9.0 10.0 3131 ------- null} + -t 3.54403 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6253 -a 0 -x {9.0 10.0 3131 ------- null} h -t 3.54403 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6253 -a 0 -x {9.0 10.0 3131 ------- null} + -t 3.54448 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6245 -a 0 -x {9.0 10.0 3127 ------- null} - -t 3.54448 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6245 -a 0 -x {9.0 10.0 3127 ------- null} h -t 3.54448 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6245 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.5445 -s 0 -d 9 -p ack -e 40 -c 0 -i 6248 -a 0 -x {10.0 9.0 3119 ------- null} + -t 3.5445 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6259 -a 0 -x {9.0 10.0 3134 ------- null} - -t 3.5445 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6259 -a 0 -x {9.0 10.0 3134 ------- null} h -t 3.5445 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6259 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.54456 -s 0 -d 9 -p ack -e 40 -c 0 -i 6252 -a 0 -x {10.0 9.0 3121 ------- null} - -t 3.54456 -s 0 -d 9 -p ack -e 40 -c 0 -i 6252 -a 0 -x {10.0 9.0 3121 ------- null} h -t 3.54456 -s 0 -d 9 -p ack -e 40 -c 0 -i 6252 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.54488 -s 10 -d 7 -p ack -e 40 -c 0 -i 6256 -a 0 -x {10.0 9.0 3123 ------- null} + -t 3.54488 -s 7 -d 0 -p ack -e 40 -c 0 -i 6256 -a 0 -x {10.0 9.0 3123 ------- null} h -t 3.54488 -s 7 -d 8 -p ack -e 40 -c 0 -i 6256 -a 0 -x {10.0 9.0 3123 ------- null} r -t 3.54502 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6241 -a 0 -x {9.0 10.0 3125 ------- null} + -t 3.54502 -s 10 -d 7 -p ack -e 40 -c 0 -i 6260 -a 0 -x {10.0 9.0 3125 ------- null} - -t 3.54502 -s 10 -d 7 -p ack -e 40 -c 0 -i 6260 -a 0 -x {10.0 9.0 3125 ------- null} h -t 3.54502 -s 10 -d 7 -p ack -e 40 -c 0 -i 6260 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.54512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6255 -a 0 -x {9.0 10.0 3132 ------- null} + -t 3.54512 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6255 -a 0 -x {9.0 10.0 3132 ------- null} h -t 3.54512 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6255 -a 0 -x {9.0 10.0 3132 ------- null} + -t 3.54557 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6247 -a 0 -x {9.0 10.0 3128 ------- null} - -t 3.54557 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6247 -a 0 -x {9.0 10.0 3128 ------- null} h -t 3.54557 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6247 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.54563 -s 0 -d 9 -p ack -e 40 -c 0 -i 6250 -a 0 -x {10.0 9.0 3120 ------- null} + -t 3.54563 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6261 -a 0 -x {9.0 10.0 3135 ------- null} - -t 3.54563 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6261 -a 0 -x {9.0 10.0 3135 ------- null} h -t 3.54563 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6261 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.54568 -s 0 -d 9 -p ack -e 40 -c 0 -i 6254 -a 0 -x {10.0 9.0 3122 ------- null} - -t 3.54568 -s 0 -d 9 -p ack -e 40 -c 0 -i 6254 -a 0 -x {10.0 9.0 3122 ------- null} h -t 3.54568 -s 0 -d 9 -p ack -e 40 -c 0 -i 6254 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.54597 -s 10 -d 7 -p ack -e 40 -c 0 -i 6258 -a 0 -x {10.0 9.0 3124 ------- null} + -t 3.54597 -s 7 -d 0 -p ack -e 40 -c 0 -i 6258 -a 0 -x {10.0 9.0 3124 ------- null} h -t 3.54597 -s 7 -d 8 -p ack -e 40 -c 0 -i 6258 -a 0 -x {10.0 9.0 3124 ------- null} r -t 3.54611 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6243 -a 0 -x {9.0 10.0 3126 ------- null} + -t 3.54611 -s 10 -d 7 -p ack -e 40 -c 0 -i 6262 -a 0 -x {10.0 9.0 3126 ------- null} - -t 3.54611 -s 10 -d 7 -p ack -e 40 -c 0 -i 6262 -a 0 -x {10.0 9.0 3126 ------- null} h -t 3.54611 -s 10 -d 7 -p ack -e 40 -c 0 -i 6262 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.54618 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6257 -a 0 -x {9.0 10.0 3133 ------- null} + -t 3.54618 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6257 -a 0 -x {9.0 10.0 3133 ------- null} h -t 3.54618 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6257 -a 0 -x {9.0 10.0 3133 ------- null} r -t 3.54659 -s 0 -d 9 -p ack -e 40 -c 0 -i 6252 -a 0 -x {10.0 9.0 3121 ------- null} + -t 3.54659 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6263 -a 0 -x {9.0 10.0 3136 ------- null} - -t 3.54659 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6263 -a 0 -x {9.0 10.0 3136 ------- null} h -t 3.54659 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6263 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.54666 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6249 -a 0 -x {9.0 10.0 3129 ------- null} - -t 3.54666 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6249 -a 0 -x {9.0 10.0 3129 ------- null} h -t 3.54666 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6249 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.54696 -s 0 -d 9 -p ack -e 40 -c 0 -i 6256 -a 0 -x {10.0 9.0 3123 ------- null} - -t 3.54696 -s 0 -d 9 -p ack -e 40 -c 0 -i 6256 -a 0 -x {10.0 9.0 3123 ------- null} h -t 3.54696 -s 0 -d 9 -p ack -e 40 -c 0 -i 6256 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.54706 -s 10 -d 7 -p ack -e 40 -c 0 -i 6260 -a 0 -x {10.0 9.0 3125 ------- null} + -t 3.54706 -s 7 -d 0 -p ack -e 40 -c 0 -i 6260 -a 0 -x {10.0 9.0 3125 ------- null} h -t 3.54706 -s 7 -d 8 -p ack -e 40 -c 0 -i 6260 -a 0 -x {10.0 9.0 3125 ------- null} r -t 3.54728 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6245 -a 0 -x {9.0 10.0 3127 ------- null} + -t 3.54728 -s 10 -d 7 -p ack -e 40 -c 0 -i 6264 -a 0 -x {10.0 9.0 3127 ------- null} - -t 3.54728 -s 10 -d 7 -p ack -e 40 -c 0 -i 6264 -a 0 -x {10.0 9.0 3127 ------- null} h -t 3.54728 -s 10 -d 7 -p ack -e 40 -c 0 -i 6264 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.5473 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6259 -a 0 -x {9.0 10.0 3134 ------- null} + -t 3.5473 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6259 -a 0 -x {9.0 10.0 3134 ------- null} h -t 3.5473 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6259 -a 0 -x {9.0 10.0 3134 ------- null} r -t 3.54771 -s 0 -d 9 -p ack -e 40 -c 0 -i 6254 -a 0 -x {10.0 9.0 3122 ------- null} + -t 3.54771 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6265 -a 0 -x {9.0 10.0 3137 ------- null} - -t 3.54771 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6265 -a 0 -x {9.0 10.0 3137 ------- null} h -t 3.54771 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6265 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.54794 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6251 -a 0 -x {9.0 10.0 3130 ------- null} - -t 3.54794 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6251 -a 0 -x {9.0 10.0 3130 ------- null} h -t 3.54794 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6251 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.54805 -s 0 -d 9 -p ack -e 40 -c 0 -i 6258 -a 0 -x {10.0 9.0 3124 ------- null} - -t 3.54805 -s 0 -d 9 -p ack -e 40 -c 0 -i 6258 -a 0 -x {10.0 9.0 3124 ------- null} h -t 3.54805 -s 0 -d 9 -p ack -e 40 -c 0 -i 6258 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.54814 -s 10 -d 7 -p ack -e 40 -c 0 -i 6262 -a 0 -x {10.0 9.0 3126 ------- null} + -t 3.54814 -s 7 -d 0 -p ack -e 40 -c 0 -i 6262 -a 0 -x {10.0 9.0 3126 ------- null} h -t 3.54814 -s 7 -d 8 -p ack -e 40 -c 0 -i 6262 -a 0 -x {10.0 9.0 3126 ------- null} r -t 3.54837 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6247 -a 0 -x {9.0 10.0 3128 ------- null} + -t 3.54837 -s 10 -d 7 -p ack -e 40 -c 0 -i 6266 -a 0 -x {10.0 9.0 3128 ------- null} - -t 3.54837 -s 10 -d 7 -p ack -e 40 -c 0 -i 6266 -a 0 -x {10.0 9.0 3128 ------- null} h -t 3.54837 -s 10 -d 7 -p ack -e 40 -c 0 -i 6266 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.54843 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6261 -a 0 -x {9.0 10.0 3135 ------- null} + -t 3.54843 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6261 -a 0 -x {9.0 10.0 3135 ------- null} h -t 3.54843 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6261 -a 0 -x {9.0 10.0 3135 ------- null} r -t 3.54899 -s 0 -d 9 -p ack -e 40 -c 0 -i 6256 -a 0 -x {10.0 9.0 3123 ------- null} + -t 3.54899 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6267 -a 0 -x {9.0 10.0 3138 ------- null} - -t 3.54899 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6267 -a 0 -x {9.0 10.0 3138 ------- null} h -t 3.54899 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6267 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.54902 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6253 -a 0 -x {9.0 10.0 3131 ------- null} - -t 3.54902 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6253 -a 0 -x {9.0 10.0 3131 ------- null} h -t 3.54902 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6253 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.54925 -s 0 -d 9 -p ack -e 40 -c 0 -i 6260 -a 0 -x {10.0 9.0 3125 ------- null} - -t 3.54925 -s 0 -d 9 -p ack -e 40 -c 0 -i 6260 -a 0 -x {10.0 9.0 3125 ------- null} h -t 3.54925 -s 0 -d 9 -p ack -e 40 -c 0 -i 6260 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.54931 -s 10 -d 7 -p ack -e 40 -c 0 -i 6264 -a 0 -x {10.0 9.0 3127 ------- null} + -t 3.54931 -s 7 -d 0 -p ack -e 40 -c 0 -i 6264 -a 0 -x {10.0 9.0 3127 ------- null} h -t 3.54931 -s 7 -d 8 -p ack -e 40 -c 0 -i 6264 -a 0 -x {10.0 9.0 3127 ------- null} r -t 3.54939 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6263 -a 0 -x {9.0 10.0 3136 ------- null} + -t 3.54939 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6263 -a 0 -x {9.0 10.0 3136 ------- null} h -t 3.54939 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6263 -a 0 -x {9.0 10.0 3136 ------- null} r -t 3.54946 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6249 -a 0 -x {9.0 10.0 3129 ------- null} + -t 3.54946 -s 10 -d 7 -p ack -e 40 -c 0 -i 6268 -a 0 -x {10.0 9.0 3129 ------- null} - -t 3.54946 -s 10 -d 7 -p ack -e 40 -c 0 -i 6268 -a 0 -x {10.0 9.0 3129 ------- null} h -t 3.54946 -s 10 -d 7 -p ack -e 40 -c 0 -i 6268 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.55008 -s 0 -d 9 -p ack -e 40 -c 0 -i 6258 -a 0 -x {10.0 9.0 3124 ------- null} + -t 3.55008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6269 -a 0 -x {9.0 10.0 3139 ------- null} - -t 3.55008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6269 -a 0 -x {9.0 10.0 3139 ------- null} h -t 3.55008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6269 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.55011 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6255 -a 0 -x {9.0 10.0 3132 ------- null} - -t 3.55011 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6255 -a 0 -x {9.0 10.0 3132 ------- null} h -t 3.55011 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6255 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.5504 -s 10 -d 7 -p ack -e 40 -c 0 -i 6266 -a 0 -x {10.0 9.0 3128 ------- null} + -t 3.5504 -s 7 -d 0 -p ack -e 40 -c 0 -i 6266 -a 0 -x {10.0 9.0 3128 ------- null} h -t 3.5504 -s 7 -d 8 -p ack -e 40 -c 0 -i 6266 -a 0 -x {10.0 9.0 3128 ------- null} + -t 3.55042 -s 0 -d 9 -p ack -e 40 -c 0 -i 6262 -a 0 -x {10.0 9.0 3126 ------- null} - -t 3.55042 -s 0 -d 9 -p ack -e 40 -c 0 -i 6262 -a 0 -x {10.0 9.0 3126 ------- null} h -t 3.55042 -s 0 -d 9 -p ack -e 40 -c 0 -i 6262 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.55051 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6265 -a 0 -x {9.0 10.0 3137 ------- null} + -t 3.55051 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6265 -a 0 -x {9.0 10.0 3137 ------- null} h -t 3.55051 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6265 -a 0 -x {9.0 10.0 3137 ------- null} r -t 3.55074 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6251 -a 0 -x {9.0 10.0 3130 ------- null} + -t 3.55074 -s 10 -d 7 -p ack -e 40 -c 0 -i 6270 -a 0 -x {10.0 9.0 3130 ------- null} - -t 3.55074 -s 10 -d 7 -p ack -e 40 -c 0 -i 6270 -a 0 -x {10.0 9.0 3130 ------- null} h -t 3.55074 -s 10 -d 7 -p ack -e 40 -c 0 -i 6270 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.55126 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6257 -a 0 -x {9.0 10.0 3133 ------- null} - -t 3.55126 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6257 -a 0 -x {9.0 10.0 3133 ------- null} h -t 3.55126 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6257 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.55128 -s 0 -d 9 -p ack -e 40 -c 0 -i 6260 -a 0 -x {10.0 9.0 3125 ------- null} + -t 3.55128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6271 -a 0 -x {9.0 10.0 3140 ------- null} - -t 3.55128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6271 -a 0 -x {9.0 10.0 3140 ------- null} h -t 3.55128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6271 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.55141 -s 0 -d 9 -p ack -e 40 -c 0 -i 6264 -a 0 -x {10.0 9.0 3127 ------- null} - -t 3.55141 -s 0 -d 9 -p ack -e 40 -c 0 -i 6264 -a 0 -x {10.0 9.0 3127 ------- null} h -t 3.55141 -s 0 -d 9 -p ack -e 40 -c 0 -i 6264 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.55149 -s 10 -d 7 -p ack -e 40 -c 0 -i 6268 -a 0 -x {10.0 9.0 3129 ------- null} + -t 3.55149 -s 7 -d 0 -p ack -e 40 -c 0 -i 6268 -a 0 -x {10.0 9.0 3129 ------- null} h -t 3.55149 -s 7 -d 8 -p ack -e 40 -c 0 -i 6268 -a 0 -x {10.0 9.0 3129 ------- null} r -t 3.55179 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6267 -a 0 -x {9.0 10.0 3138 ------- null} + -t 3.55179 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6267 -a 0 -x {9.0 10.0 3138 ------- null} h -t 3.55179 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6267 -a 0 -x {9.0 10.0 3138 ------- null} r -t 3.55182 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6253 -a 0 -x {9.0 10.0 3131 ------- null} + -t 3.55182 -s 10 -d 7 -p ack -e 40 -c 0 -i 6272 -a 0 -x {10.0 9.0 3131 ------- null} - -t 3.55182 -s 10 -d 7 -p ack -e 40 -c 0 -i 6272 -a 0 -x {10.0 9.0 3131 ------- null} h -t 3.55182 -s 10 -d 7 -p ack -e 40 -c 0 -i 6272 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.55235 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6259 -a 0 -x {9.0 10.0 3134 ------- null} - -t 3.55235 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6259 -a 0 -x {9.0 10.0 3134 ------- null} h -t 3.55235 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6259 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.55243 -s 0 -d 9 -p ack -e 40 -c 0 -i 6266 -a 0 -x {10.0 9.0 3128 ------- null} - -t 3.55243 -s 0 -d 9 -p ack -e 40 -c 0 -i 6266 -a 0 -x {10.0 9.0 3128 ------- null} h -t 3.55243 -s 0 -d 9 -p ack -e 40 -c 0 -i 6266 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.55245 -s 0 -d 9 -p ack -e 40 -c 0 -i 6262 -a 0 -x {10.0 9.0 3126 ------- null} + -t 3.55245 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6273 -a 0 -x {9.0 10.0 3141 ------- null} - -t 3.55245 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6273 -a 0 -x {9.0 10.0 3141 ------- null} h -t 3.55245 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6273 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.55277 -s 10 -d 7 -p ack -e 40 -c 0 -i 6270 -a 0 -x {10.0 9.0 3130 ------- null} + -t 3.55277 -s 7 -d 0 -p ack -e 40 -c 0 -i 6270 -a 0 -x {10.0 9.0 3130 ------- null} h -t 3.55277 -s 7 -d 8 -p ack -e 40 -c 0 -i 6270 -a 0 -x {10.0 9.0 3130 ------- null} r -t 3.55288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6269 -a 0 -x {9.0 10.0 3139 ------- null} + -t 3.55288 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6269 -a 0 -x {9.0 10.0 3139 ------- null} h -t 3.55288 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6269 -a 0 -x {9.0 10.0 3139 ------- null} r -t 3.55291 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6255 -a 0 -x {9.0 10.0 3132 ------- null} + -t 3.55291 -s 10 -d 7 -p ack -e 40 -c 0 -i 6274 -a 0 -x {10.0 9.0 3132 ------- null} - -t 3.55291 -s 10 -d 7 -p ack -e 40 -c 0 -i 6274 -a 0 -x {10.0 9.0 3132 ------- null} h -t 3.55291 -s 10 -d 7 -p ack -e 40 -c 0 -i 6274 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.55344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6261 -a 0 -x {9.0 10.0 3135 ------- null} - -t 3.55344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6261 -a 0 -x {9.0 10.0 3135 ------- null} h -t 3.55344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6261 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.55344 -s 0 -d 9 -p ack -e 40 -c 0 -i 6264 -a 0 -x {10.0 9.0 3127 ------- null} + -t 3.55344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6275 -a 0 -x {9.0 10.0 3142 ------- null} - -t 3.55344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6275 -a 0 -x {9.0 10.0 3142 ------- null} h -t 3.55344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6275 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.55355 -s 0 -d 9 -p ack -e 40 -c 0 -i 6268 -a 0 -x {10.0 9.0 3129 ------- null} - -t 3.55355 -s 0 -d 9 -p ack -e 40 -c 0 -i 6268 -a 0 -x {10.0 9.0 3129 ------- null} h -t 3.55355 -s 0 -d 9 -p ack -e 40 -c 0 -i 6268 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.55386 -s 10 -d 7 -p ack -e 40 -c 0 -i 6272 -a 0 -x {10.0 9.0 3131 ------- null} + -t 3.55386 -s 7 -d 0 -p ack -e 40 -c 0 -i 6272 -a 0 -x {10.0 9.0 3131 ------- null} h -t 3.55386 -s 7 -d 8 -p ack -e 40 -c 0 -i 6272 -a 0 -x {10.0 9.0 3131 ------- null} r -t 3.55406 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6257 -a 0 -x {9.0 10.0 3133 ------- null} + -t 3.55406 -s 10 -d 7 -p ack -e 40 -c 0 -i 6276 -a 0 -x {10.0 9.0 3133 ------- null} - -t 3.55406 -s 10 -d 7 -p ack -e 40 -c 0 -i 6276 -a 0 -x {10.0 9.0 3133 ------- null} h -t 3.55406 -s 10 -d 7 -p ack -e 40 -c 0 -i 6276 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.55408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6271 -a 0 -x {9.0 10.0 3140 ------- null} + -t 3.55408 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6271 -a 0 -x {9.0 10.0 3140 ------- null} h -t 3.55408 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6271 -a 0 -x {9.0 10.0 3140 ------- null} r -t 3.55446 -s 0 -d 9 -p ack -e 40 -c 0 -i 6266 -a 0 -x {10.0 9.0 3128 ------- null} + -t 3.55446 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6277 -a 0 -x {9.0 10.0 3143 ------- null} - -t 3.55446 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6277 -a 0 -x {9.0 10.0 3143 ------- null} h -t 3.55446 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6277 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.55453 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6263 -a 0 -x {9.0 10.0 3136 ------- null} - -t 3.55453 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6263 -a 0 -x {9.0 10.0 3136 ------- null} h -t 3.55453 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6263 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.55469 -s 0 -d 9 -p ack -e 40 -c 0 -i 6270 -a 0 -x {10.0 9.0 3130 ------- null} - -t 3.55469 -s 0 -d 9 -p ack -e 40 -c 0 -i 6270 -a 0 -x {10.0 9.0 3130 ------- null} h -t 3.55469 -s 0 -d 9 -p ack -e 40 -c 0 -i 6270 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.55494 -s 10 -d 7 -p ack -e 40 -c 0 -i 6274 -a 0 -x {10.0 9.0 3132 ------- null} + -t 3.55494 -s 7 -d 0 -p ack -e 40 -c 0 -i 6274 -a 0 -x {10.0 9.0 3132 ------- null} h -t 3.55494 -s 7 -d 8 -p ack -e 40 -c 0 -i 6274 -a 0 -x {10.0 9.0 3132 ------- null} r -t 3.55515 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6259 -a 0 -x {9.0 10.0 3134 ------- null} + -t 3.55515 -s 10 -d 7 -p ack -e 40 -c 0 -i 6278 -a 0 -x {10.0 9.0 3134 ------- null} - -t 3.55515 -s 10 -d 7 -p ack -e 40 -c 0 -i 6278 -a 0 -x {10.0 9.0 3134 ------- null} h -t 3.55515 -s 10 -d 7 -p ack -e 40 -c 0 -i 6278 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.55525 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6273 -a 0 -x {9.0 10.0 3141 ------- null} + -t 3.55525 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6273 -a 0 -x {9.0 10.0 3141 ------- null} h -t 3.55525 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6273 -a 0 -x {9.0 10.0 3141 ------- null} r -t 3.55558 -s 0 -d 9 -p ack -e 40 -c 0 -i 6268 -a 0 -x {10.0 9.0 3129 ------- null} + -t 3.55558 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6279 -a 0 -x {9.0 10.0 3144 ------- null} - -t 3.55558 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6279 -a 0 -x {9.0 10.0 3144 ------- null} h -t 3.55558 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6279 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.55562 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6265 -a 0 -x {9.0 10.0 3137 ------- null} - -t 3.55562 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6265 -a 0 -x {9.0 10.0 3137 ------- null} h -t 3.55562 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6265 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.55578 -s 0 -d 9 -p ack -e 40 -c 0 -i 6272 -a 0 -x {10.0 9.0 3131 ------- null} - -t 3.55578 -s 0 -d 9 -p ack -e 40 -c 0 -i 6272 -a 0 -x {10.0 9.0 3131 ------- null} h -t 3.55578 -s 0 -d 9 -p ack -e 40 -c 0 -i 6272 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.5561 -s 10 -d 7 -p ack -e 40 -c 0 -i 6276 -a 0 -x {10.0 9.0 3133 ------- null} + -t 3.5561 -s 7 -d 0 -p ack -e 40 -c 0 -i 6276 -a 0 -x {10.0 9.0 3133 ------- null} h -t 3.5561 -s 7 -d 8 -p ack -e 40 -c 0 -i 6276 -a 0 -x {10.0 9.0 3133 ------- null} r -t 3.55624 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6261 -a 0 -x {9.0 10.0 3135 ------- null} + -t 3.55624 -s 10 -d 7 -p ack -e 40 -c 0 -i 6280 -a 0 -x {10.0 9.0 3135 ------- null} - -t 3.55624 -s 10 -d 7 -p ack -e 40 -c 0 -i 6280 -a 0 -x {10.0 9.0 3135 ------- null} h -t 3.55624 -s 10 -d 7 -p ack -e 40 -c 0 -i 6280 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.55624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6275 -a 0 -x {9.0 10.0 3142 ------- null} + -t 3.55624 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6275 -a 0 -x {9.0 10.0 3142 ------- null} h -t 3.55624 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6275 -a 0 -x {9.0 10.0 3142 ------- null} + -t 3.5567 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6267 -a 0 -x {9.0 10.0 3138 ------- null} - -t 3.5567 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6267 -a 0 -x {9.0 10.0 3138 ------- null} h -t 3.5567 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6267 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.55672 -s 0 -d 9 -p ack -e 40 -c 0 -i 6270 -a 0 -x {10.0 9.0 3130 ------- null} + -t 3.55672 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6281 -a 0 -x {9.0 10.0 3145 ------- null} - -t 3.55672 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6281 -a 0 -x {9.0 10.0 3145 ------- null} h -t 3.55672 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6281 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.55683 -s 0 -d 9 -p ack -e 40 -c 0 -i 6274 -a 0 -x {10.0 9.0 3132 ------- null} - -t 3.55683 -s 0 -d 9 -p ack -e 40 -c 0 -i 6274 -a 0 -x {10.0 9.0 3132 ------- null} h -t 3.55683 -s 0 -d 9 -p ack -e 40 -c 0 -i 6274 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.55718 -s 10 -d 7 -p ack -e 40 -c 0 -i 6278 -a 0 -x {10.0 9.0 3134 ------- null} + -t 3.55718 -s 7 -d 0 -p ack -e 40 -c 0 -i 6278 -a 0 -x {10.0 9.0 3134 ------- null} h -t 3.55718 -s 7 -d 8 -p ack -e 40 -c 0 -i 6278 -a 0 -x {10.0 9.0 3134 ------- null} r -t 3.55726 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6277 -a 0 -x {9.0 10.0 3143 ------- null} + -t 3.55726 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6277 -a 0 -x {9.0 10.0 3143 ------- null} h -t 3.55726 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6277 -a 0 -x {9.0 10.0 3143 ------- null} r -t 3.55733 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6263 -a 0 -x {9.0 10.0 3136 ------- null} + -t 3.55733 -s 10 -d 7 -p ack -e 40 -c 0 -i 6282 -a 0 -x {10.0 9.0 3136 ------- null} - -t 3.55733 -s 10 -d 7 -p ack -e 40 -c 0 -i 6282 -a 0 -x {10.0 9.0 3136 ------- null} h -t 3.55733 -s 10 -d 7 -p ack -e 40 -c 0 -i 6282 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.55779 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6269 -a 0 -x {9.0 10.0 3139 ------- null} - -t 3.55779 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6269 -a 0 -x {9.0 10.0 3139 ------- null} h -t 3.55779 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6269 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.55781 -s 0 -d 9 -p ack -e 40 -c 0 -i 6272 -a 0 -x {10.0 9.0 3131 ------- null} + -t 3.55781 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6283 -a 0 -x {9.0 10.0 3146 ------- null} - -t 3.55781 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6283 -a 0 -x {9.0 10.0 3146 ------- null} h -t 3.55781 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6283 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.55787 -s 0 -d 9 -p ack -e 40 -c 0 -i 6276 -a 0 -x {10.0 9.0 3133 ------- null} - -t 3.55787 -s 0 -d 9 -p ack -e 40 -c 0 -i 6276 -a 0 -x {10.0 9.0 3133 ------- null} h -t 3.55787 -s 0 -d 9 -p ack -e 40 -c 0 -i 6276 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.55827 -s 10 -d 7 -p ack -e 40 -c 0 -i 6280 -a 0 -x {10.0 9.0 3135 ------- null} + -t 3.55827 -s 7 -d 0 -p ack -e 40 -c 0 -i 6280 -a 0 -x {10.0 9.0 3135 ------- null} h -t 3.55827 -s 7 -d 8 -p ack -e 40 -c 0 -i 6280 -a 0 -x {10.0 9.0 3135 ------- null} r -t 3.55838 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6279 -a 0 -x {9.0 10.0 3144 ------- null} + -t 3.55838 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6279 -a 0 -x {9.0 10.0 3144 ------- null} h -t 3.55838 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6279 -a 0 -x {9.0 10.0 3144 ------- null} r -t 3.55842 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6265 -a 0 -x {9.0 10.0 3137 ------- null} + -t 3.55842 -s 10 -d 7 -p ack -e 40 -c 0 -i 6284 -a 0 -x {10.0 9.0 3137 ------- null} - -t 3.55842 -s 10 -d 7 -p ack -e 40 -c 0 -i 6284 -a 0 -x {10.0 9.0 3137 ------- null} h -t 3.55842 -s 10 -d 7 -p ack -e 40 -c 0 -i 6284 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.55886 -s 0 -d 9 -p ack -e 40 -c 0 -i 6274 -a 0 -x {10.0 9.0 3132 ------- null} + -t 3.55886 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6285 -a 0 -x {9.0 10.0 3147 ------- null} - -t 3.55886 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6285 -a 0 -x {9.0 10.0 3147 ------- null} h -t 3.55886 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6285 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.55888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6271 -a 0 -x {9.0 10.0 3140 ------- null} - -t 3.55888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6271 -a 0 -x {9.0 10.0 3140 ------- null} h -t 3.55888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6271 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.55906 -s 0 -d 9 -p ack -e 40 -c 0 -i 6278 -a 0 -x {10.0 9.0 3134 ------- null} - -t 3.55906 -s 0 -d 9 -p ack -e 40 -c 0 -i 6278 -a 0 -x {10.0 9.0 3134 ------- null} h -t 3.55906 -s 0 -d 9 -p ack -e 40 -c 0 -i 6278 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.55936 -s 10 -d 7 -p ack -e 40 -c 0 -i 6282 -a 0 -x {10.0 9.0 3136 ------- null} + -t 3.55936 -s 7 -d 0 -p ack -e 40 -c 0 -i 6282 -a 0 -x {10.0 9.0 3136 ------- null} h -t 3.55936 -s 7 -d 8 -p ack -e 40 -c 0 -i 6282 -a 0 -x {10.0 9.0 3136 ------- null} r -t 3.5595 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6267 -a 0 -x {9.0 10.0 3138 ------- null} + -t 3.5595 -s 10 -d 7 -p ack -e 40 -c 0 -i 6286 -a 0 -x {10.0 9.0 3138 ------- null} - -t 3.5595 -s 10 -d 7 -p ack -e 40 -c 0 -i 6286 -a 0 -x {10.0 9.0 3138 ------- null} h -t 3.5595 -s 10 -d 7 -p ack -e 40 -c 0 -i 6286 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.55952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6281 -a 0 -x {9.0 10.0 3145 ------- null} + -t 3.55952 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6281 -a 0 -x {9.0 10.0 3145 ------- null} h -t 3.55952 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6281 -a 0 -x {9.0 10.0 3145 ------- null} r -t 3.5599 -s 0 -d 9 -p ack -e 40 -c 0 -i 6276 -a 0 -x {10.0 9.0 3133 ------- null} + -t 3.5599 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6287 -a 0 -x {9.0 10.0 3148 ------- null} - -t 3.5599 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6287 -a 0 -x {9.0 10.0 3148 ------- null} h -t 3.5599 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6287 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.55997 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6273 -a 0 -x {9.0 10.0 3141 ------- null} - -t 3.55997 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6273 -a 0 -x {9.0 10.0 3141 ------- null} h -t 3.55997 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6273 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.56005 -s 0 -d 9 -p ack -e 40 -c 0 -i 6280 -a 0 -x {10.0 9.0 3135 ------- null} - -t 3.56005 -s 0 -d 9 -p ack -e 40 -c 0 -i 6280 -a 0 -x {10.0 9.0 3135 ------- null} h -t 3.56005 -s 0 -d 9 -p ack -e 40 -c 0 -i 6280 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.56045 -s 10 -d 7 -p ack -e 40 -c 0 -i 6284 -a 0 -x {10.0 9.0 3137 ------- null} + -t 3.56045 -s 7 -d 0 -p ack -e 40 -c 0 -i 6284 -a 0 -x {10.0 9.0 3137 ------- null} h -t 3.56045 -s 7 -d 8 -p ack -e 40 -c 0 -i 6284 -a 0 -x {10.0 9.0 3137 ------- null} r -t 3.56059 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6269 -a 0 -x {9.0 10.0 3139 ------- null} + -t 3.56059 -s 10 -d 7 -p ack -e 40 -c 0 -i 6288 -a 0 -x {10.0 9.0 3139 ------- null} - -t 3.56059 -s 10 -d 7 -p ack -e 40 -c 0 -i 6288 -a 0 -x {10.0 9.0 3139 ------- null} h -t 3.56059 -s 10 -d 7 -p ack -e 40 -c 0 -i 6288 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.56061 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6283 -a 0 -x {9.0 10.0 3146 ------- null} + -t 3.56061 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6283 -a 0 -x {9.0 10.0 3146 ------- null} h -t 3.56061 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6283 -a 0 -x {9.0 10.0 3146 ------- null} + -t 3.56106 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6275 -a 0 -x {9.0 10.0 3142 ------- null} - -t 3.56106 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6275 -a 0 -x {9.0 10.0 3142 ------- null} h -t 3.56106 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6275 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.56109 -s 0 -d 9 -p ack -e 40 -c 0 -i 6278 -a 0 -x {10.0 9.0 3134 ------- null} + -t 3.56109 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6289 -a 0 -x {9.0 10.0 3149 ------- null} - -t 3.56109 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6289 -a 0 -x {9.0 10.0 3149 ------- null} h -t 3.56109 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6289 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.56118 -s 0 -d 9 -p ack -e 40 -c 0 -i 6282 -a 0 -x {10.0 9.0 3136 ------- null} - -t 3.56118 -s 0 -d 9 -p ack -e 40 -c 0 -i 6282 -a 0 -x {10.0 9.0 3136 ------- null} h -t 3.56118 -s 0 -d 9 -p ack -e 40 -c 0 -i 6282 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.56154 -s 10 -d 7 -p ack -e 40 -c 0 -i 6286 -a 0 -x {10.0 9.0 3138 ------- null} + -t 3.56154 -s 7 -d 0 -p ack -e 40 -c 0 -i 6286 -a 0 -x {10.0 9.0 3138 ------- null} h -t 3.56154 -s 7 -d 8 -p ack -e 40 -c 0 -i 6286 -a 0 -x {10.0 9.0 3138 ------- null} r -t 3.56166 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6285 -a 0 -x {9.0 10.0 3147 ------- null} + -t 3.56166 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6285 -a 0 -x {9.0 10.0 3147 ------- null} h -t 3.56166 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6285 -a 0 -x {9.0 10.0 3147 ------- null} r -t 3.56168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6271 -a 0 -x {9.0 10.0 3140 ------- null} + -t 3.56168 -s 10 -d 7 -p ack -e 40 -c 0 -i 6290 -a 0 -x {10.0 9.0 3140 ------- null} - -t 3.56168 -s 10 -d 7 -p ack -e 40 -c 0 -i 6290 -a 0 -x {10.0 9.0 3140 ------- null} h -t 3.56168 -s 10 -d 7 -p ack -e 40 -c 0 -i 6290 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.56208 -s 0 -d 9 -p ack -e 40 -c 0 -i 6280 -a 0 -x {10.0 9.0 3135 ------- null} + -t 3.56208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6291 -a 0 -x {9.0 10.0 3150 ------- null} - -t 3.56208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6291 -a 0 -x {9.0 10.0 3150 ------- null} h -t 3.56208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6291 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.56214 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6277 -a 0 -x {9.0 10.0 3143 ------- null} - -t 3.56214 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6277 -a 0 -x {9.0 10.0 3143 ------- null} h -t 3.56214 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6277 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.56237 -s 0 -d 9 -p ack -e 40 -c 0 -i 6284 -a 0 -x {10.0 9.0 3137 ------- null} - -t 3.56237 -s 0 -d 9 -p ack -e 40 -c 0 -i 6284 -a 0 -x {10.0 9.0 3137 ------- null} h -t 3.56237 -s 0 -d 9 -p ack -e 40 -c 0 -i 6284 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.56262 -s 10 -d 7 -p ack -e 40 -c 0 -i 6288 -a 0 -x {10.0 9.0 3139 ------- null} + -t 3.56262 -s 7 -d 0 -p ack -e 40 -c 0 -i 6288 -a 0 -x {10.0 9.0 3139 ------- null} h -t 3.56262 -s 7 -d 8 -p ack -e 40 -c 0 -i 6288 -a 0 -x {10.0 9.0 3139 ------- null} r -t 3.5627 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6287 -a 0 -x {9.0 10.0 3148 ------- null} + -t 3.5627 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6287 -a 0 -x {9.0 10.0 3148 ------- null} h -t 3.5627 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6287 -a 0 -x {9.0 10.0 3148 ------- null} r -t 3.56277 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6273 -a 0 -x {9.0 10.0 3141 ------- null} + -t 3.56277 -s 10 -d 7 -p ack -e 40 -c 0 -i 6292 -a 0 -x {10.0 9.0 3141 ------- null} - -t 3.56277 -s 10 -d 7 -p ack -e 40 -c 0 -i 6292 -a 0 -x {10.0 9.0 3141 ------- null} h -t 3.56277 -s 10 -d 7 -p ack -e 40 -c 0 -i 6292 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.56322 -s 0 -d 9 -p ack -e 40 -c 0 -i 6282 -a 0 -x {10.0 9.0 3136 ------- null} + -t 3.56322 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6293 -a 0 -x {9.0 10.0 3151 ------- null} - -t 3.56322 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6293 -a 0 -x {9.0 10.0 3151 ------- null} h -t 3.56322 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6293 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.56323 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6279 -a 0 -x {9.0 10.0 3144 ------- null} - -t 3.56323 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6279 -a 0 -x {9.0 10.0 3144 ------- null} h -t 3.56323 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6279 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.56349 -s 0 -d 9 -p ack -e 40 -c 0 -i 6286 -a 0 -x {10.0 9.0 3138 ------- null} - -t 3.56349 -s 0 -d 9 -p ack -e 40 -c 0 -i 6286 -a 0 -x {10.0 9.0 3138 ------- null} h -t 3.56349 -s 0 -d 9 -p ack -e 40 -c 0 -i 6286 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.56371 -s 10 -d 7 -p ack -e 40 -c 0 -i 6290 -a 0 -x {10.0 9.0 3140 ------- null} + -t 3.56371 -s 7 -d 0 -p ack -e 40 -c 0 -i 6290 -a 0 -x {10.0 9.0 3140 ------- null} h -t 3.56371 -s 7 -d 8 -p ack -e 40 -c 0 -i 6290 -a 0 -x {10.0 9.0 3140 ------- null} r -t 3.56386 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6275 -a 0 -x {9.0 10.0 3142 ------- null} + -t 3.56386 -s 10 -d 7 -p ack -e 40 -c 0 -i 6294 -a 0 -x {10.0 9.0 3142 ------- null} - -t 3.56386 -s 10 -d 7 -p ack -e 40 -c 0 -i 6294 -a 0 -x {10.0 9.0 3142 ------- null} h -t 3.56386 -s 10 -d 7 -p ack -e 40 -c 0 -i 6294 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.56389 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6289 -a 0 -x {9.0 10.0 3149 ------- null} + -t 3.56389 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6289 -a 0 -x {9.0 10.0 3149 ------- null} h -t 3.56389 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6289 -a 0 -x {9.0 10.0 3149 ------- null} r -t 3.5644 -s 0 -d 9 -p ack -e 40 -c 0 -i 6284 -a 0 -x {10.0 9.0 3137 ------- null} + -t 3.5644 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6295 -a 0 -x {9.0 10.0 3152 ------- null} - -t 3.5644 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6295 -a 0 -x {9.0 10.0 3152 ------- null} h -t 3.5644 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6295 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.5645 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6281 -a 0 -x {9.0 10.0 3145 ------- null} - -t 3.5645 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6281 -a 0 -x {9.0 10.0 3145 ------- null} h -t 3.5645 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6281 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.56475 -s 0 -d 9 -p ack -e 40 -c 0 -i 6288 -a 0 -x {10.0 9.0 3139 ------- null} - -t 3.56475 -s 0 -d 9 -p ack -e 40 -c 0 -i 6288 -a 0 -x {10.0 9.0 3139 ------- null} h -t 3.56475 -s 0 -d 9 -p ack -e 40 -c 0 -i 6288 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.5648 -s 10 -d 7 -p ack -e 40 -c 0 -i 6292 -a 0 -x {10.0 9.0 3141 ------- null} + -t 3.5648 -s 7 -d 0 -p ack -e 40 -c 0 -i 6292 -a 0 -x {10.0 9.0 3141 ------- null} h -t 3.5648 -s 7 -d 8 -p ack -e 40 -c 0 -i 6292 -a 0 -x {10.0 9.0 3141 ------- null} r -t 3.56488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6291 -a 0 -x {9.0 10.0 3150 ------- null} + -t 3.56488 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6291 -a 0 -x {9.0 10.0 3150 ------- null} h -t 3.56488 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6291 -a 0 -x {9.0 10.0 3150 ------- null} r -t 3.56494 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6277 -a 0 -x {9.0 10.0 3143 ------- null} + -t 3.56494 -s 10 -d 7 -p ack -e 40 -c 0 -i 6296 -a 0 -x {10.0 9.0 3143 ------- null} - -t 3.56494 -s 10 -d 7 -p ack -e 40 -c 0 -i 6296 -a 0 -x {10.0 9.0 3143 ------- null} h -t 3.56494 -s 10 -d 7 -p ack -e 40 -c 0 -i 6296 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.56552 -s 0 -d 9 -p ack -e 40 -c 0 -i 6286 -a 0 -x {10.0 9.0 3138 ------- null} + -t 3.56552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6297 -a 0 -x {9.0 10.0 3153 ------- null} - -t 3.56552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6297 -a 0 -x {9.0 10.0 3153 ------- null} h -t 3.56552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6297 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.56566 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6283 -a 0 -x {9.0 10.0 3146 ------- null} - -t 3.56566 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6283 -a 0 -x {9.0 10.0 3146 ------- null} h -t 3.56566 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6283 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.56589 -s 10 -d 7 -p ack -e 40 -c 0 -i 6294 -a 0 -x {10.0 9.0 3142 ------- null} + -t 3.56589 -s 7 -d 0 -p ack -e 40 -c 0 -i 6294 -a 0 -x {10.0 9.0 3142 ------- null} h -t 3.56589 -s 7 -d 8 -p ack -e 40 -c 0 -i 6294 -a 0 -x {10.0 9.0 3142 ------- null} + -t 3.5659 -s 0 -d 9 -p ack -e 40 -c 0 -i 6290 -a 0 -x {10.0 9.0 3140 ------- null} - -t 3.5659 -s 0 -d 9 -p ack -e 40 -c 0 -i 6290 -a 0 -x {10.0 9.0 3140 ------- null} h -t 3.5659 -s 0 -d 9 -p ack -e 40 -c 0 -i 6290 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.56602 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6293 -a 0 -x {9.0 10.0 3151 ------- null} + -t 3.56602 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6293 -a 0 -x {9.0 10.0 3151 ------- null} h -t 3.56602 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6293 -a 0 -x {9.0 10.0 3151 ------- null} r -t 3.56603 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6279 -a 0 -x {9.0 10.0 3144 ------- null} + -t 3.56603 -s 10 -d 7 -p ack -e 40 -c 0 -i 6298 -a 0 -x {10.0 9.0 3144 ------- null} - -t 3.56603 -s 10 -d 7 -p ack -e 40 -c 0 -i 6298 -a 0 -x {10.0 9.0 3144 ------- null} h -t 3.56603 -s 10 -d 7 -p ack -e 40 -c 0 -i 6298 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.56675 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6285 -a 0 -x {9.0 10.0 3147 ------- null} - -t 3.56675 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6285 -a 0 -x {9.0 10.0 3147 ------- null} h -t 3.56675 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6285 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.56678 -s 0 -d 9 -p ack -e 40 -c 0 -i 6288 -a 0 -x {10.0 9.0 3139 ------- null} + -t 3.56678 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6299 -a 0 -x {9.0 10.0 3154 ------- null} - -t 3.56678 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6299 -a 0 -x {9.0 10.0 3154 ------- null} h -t 3.56678 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6299 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.56698 -s 10 -d 7 -p ack -e 40 -c 0 -i 6296 -a 0 -x {10.0 9.0 3143 ------- null} + -t 3.56698 -s 7 -d 0 -p ack -e 40 -c 0 -i 6296 -a 0 -x {10.0 9.0 3143 ------- null} h -t 3.56698 -s 7 -d 8 -p ack -e 40 -c 0 -i 6296 -a 0 -x {10.0 9.0 3143 ------- null} + -t 3.56704 -s 0 -d 9 -p ack -e 40 -c 0 -i 6292 -a 0 -x {10.0 9.0 3141 ------- null} - -t 3.56704 -s 0 -d 9 -p ack -e 40 -c 0 -i 6292 -a 0 -x {10.0 9.0 3141 ------- null} h -t 3.56704 -s 0 -d 9 -p ack -e 40 -c 0 -i 6292 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.5672 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6295 -a 0 -x {9.0 10.0 3152 ------- null} + -t 3.5672 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6295 -a 0 -x {9.0 10.0 3152 ------- null} h -t 3.5672 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6295 -a 0 -x {9.0 10.0 3152 ------- null} r -t 3.5673 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6281 -a 0 -x {9.0 10.0 3145 ------- null} + -t 3.5673 -s 10 -d 7 -p ack -e 40 -c 0 -i 6300 -a 0 -x {10.0 9.0 3145 ------- null} - -t 3.5673 -s 10 -d 7 -p ack -e 40 -c 0 -i 6300 -a 0 -x {10.0 9.0 3145 ------- null} h -t 3.5673 -s 10 -d 7 -p ack -e 40 -c 0 -i 6300 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.56787 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6287 -a 0 -x {9.0 10.0 3148 ------- null} - -t 3.56787 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6287 -a 0 -x {9.0 10.0 3148 ------- null} h -t 3.56787 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6287 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.56794 -s 0 -d 9 -p ack -e 40 -c 0 -i 6290 -a 0 -x {10.0 9.0 3140 ------- null} + -t 3.56794 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6301 -a 0 -x {9.0 10.0 3155 ------- null} - -t 3.56794 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6301 -a 0 -x {9.0 10.0 3155 ------- null} h -t 3.56794 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6301 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.56797 -s 0 -d 9 -p ack -e 40 -c 0 -i 6294 -a 0 -x {10.0 9.0 3142 ------- null} - -t 3.56797 -s 0 -d 9 -p ack -e 40 -c 0 -i 6294 -a 0 -x {10.0 9.0 3142 ------- null} h -t 3.56797 -s 0 -d 9 -p ack -e 40 -c 0 -i 6294 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.56806 -s 10 -d 7 -p ack -e 40 -c 0 -i 6298 -a 0 -x {10.0 9.0 3144 ------- null} + -t 3.56806 -s 7 -d 0 -p ack -e 40 -c 0 -i 6298 -a 0 -x {10.0 9.0 3144 ------- null} h -t 3.56806 -s 7 -d 8 -p ack -e 40 -c 0 -i 6298 -a 0 -x {10.0 9.0 3144 ------- null} r -t 3.56832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6297 -a 0 -x {9.0 10.0 3153 ------- null} + -t 3.56832 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6297 -a 0 -x {9.0 10.0 3153 ------- null} h -t 3.56832 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6297 -a 0 -x {9.0 10.0 3153 ------- null} r -t 3.56846 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6283 -a 0 -x {9.0 10.0 3146 ------- null} + -t 3.56846 -s 10 -d 7 -p ack -e 40 -c 0 -i 6302 -a 0 -x {10.0 9.0 3146 ------- null} - -t 3.56846 -s 10 -d 7 -p ack -e 40 -c 0 -i 6302 -a 0 -x {10.0 9.0 3146 ------- null} h -t 3.56846 -s 10 -d 7 -p ack -e 40 -c 0 -i 6302 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.56896 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6289 -a 0 -x {9.0 10.0 3149 ------- null} - -t 3.56896 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6289 -a 0 -x {9.0 10.0 3149 ------- null} h -t 3.56896 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6289 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.56907 -s 0 -d 9 -p ack -e 40 -c 0 -i 6292 -a 0 -x {10.0 9.0 3141 ------- null} + -t 3.56907 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6303 -a 0 -x {9.0 10.0 3156 ------- null} - -t 3.56907 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6303 -a 0 -x {9.0 10.0 3156 ------- null} h -t 3.56907 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6303 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.56915 -s 0 -d 9 -p ack -e 40 -c 0 -i 6296 -a 0 -x {10.0 9.0 3143 ------- null} - -t 3.56915 -s 0 -d 9 -p ack -e 40 -c 0 -i 6296 -a 0 -x {10.0 9.0 3143 ------- null} h -t 3.56915 -s 0 -d 9 -p ack -e 40 -c 0 -i 6296 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.56933 -s 10 -d 7 -p ack -e 40 -c 0 -i 6300 -a 0 -x {10.0 9.0 3145 ------- null} + -t 3.56933 -s 7 -d 0 -p ack -e 40 -c 0 -i 6300 -a 0 -x {10.0 9.0 3145 ------- null} h -t 3.56933 -s 7 -d 8 -p ack -e 40 -c 0 -i 6300 -a 0 -x {10.0 9.0 3145 ------- null} r -t 3.56955 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6285 -a 0 -x {9.0 10.0 3147 ------- null} + -t 3.56955 -s 10 -d 7 -p ack -e 40 -c 0 -i 6304 -a 0 -x {10.0 9.0 3147 ------- null} - -t 3.56955 -s 10 -d 7 -p ack -e 40 -c 0 -i 6304 -a 0 -x {10.0 9.0 3147 ------- null} h -t 3.56955 -s 10 -d 7 -p ack -e 40 -c 0 -i 6304 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.56958 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6299 -a 0 -x {9.0 10.0 3154 ------- null} + -t 3.56958 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6299 -a 0 -x {9.0 10.0 3154 ------- null} h -t 3.56958 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6299 -a 0 -x {9.0 10.0 3154 ------- null} r -t 3.57 -s 0 -d 9 -p ack -e 40 -c 0 -i 6294 -a 0 -x {10.0 9.0 3142 ------- null} + -t 3.57 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6305 -a 0 -x {9.0 10.0 3157 ------- null} - -t 3.57 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6305 -a 0 -x {9.0 10.0 3157 ------- null} h -t 3.57 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6305 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.57005 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6291 -a 0 -x {9.0 10.0 3150 ------- null} - -t 3.57005 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6291 -a 0 -x {9.0 10.0 3150 ------- null} h -t 3.57005 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6291 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.57014 -s 0 -d 9 -p ack -e 40 -c 0 -i 6298 -a 0 -x {10.0 9.0 3144 ------- null} - -t 3.57014 -s 0 -d 9 -p ack -e 40 -c 0 -i 6298 -a 0 -x {10.0 9.0 3144 ------- null} h -t 3.57014 -s 0 -d 9 -p ack -e 40 -c 0 -i 6298 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.5705 -s 10 -d 7 -p ack -e 40 -c 0 -i 6302 -a 0 -x {10.0 9.0 3146 ------- null} + -t 3.5705 -s 7 -d 0 -p ack -e 40 -c 0 -i 6302 -a 0 -x {10.0 9.0 3146 ------- null} h -t 3.5705 -s 7 -d 8 -p ack -e 40 -c 0 -i 6302 -a 0 -x {10.0 9.0 3146 ------- null} r -t 3.57067 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6287 -a 0 -x {9.0 10.0 3148 ------- null} + -t 3.57067 -s 10 -d 7 -p ack -e 40 -c 0 -i 6306 -a 0 -x {10.0 9.0 3148 ------- null} - -t 3.57067 -s 10 -d 7 -p ack -e 40 -c 0 -i 6306 -a 0 -x {10.0 9.0 3148 ------- null} h -t 3.57067 -s 10 -d 7 -p ack -e 40 -c 0 -i 6306 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.57074 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6301 -a 0 -x {9.0 10.0 3155 ------- null} + -t 3.57074 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6301 -a 0 -x {9.0 10.0 3155 ------- null} h -t 3.57074 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6301 -a 0 -x {9.0 10.0 3155 ------- null} + -t 3.57114 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6293 -a 0 -x {9.0 10.0 3151 ------- null} - -t 3.57114 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6293 -a 0 -x {9.0 10.0 3151 ------- null} h -t 3.57114 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6293 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.57118 -s 0 -d 9 -p ack -e 40 -c 0 -i 6296 -a 0 -x {10.0 9.0 3143 ------- null} + -t 3.57118 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6307 -a 0 -x {9.0 10.0 3158 ------- null} - -t 3.57118 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6307 -a 0 -x {9.0 10.0 3158 ------- null} h -t 3.57118 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6307 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.57141 -s 0 -d 9 -p ack -e 40 -c 0 -i 6300 -a 0 -x {10.0 9.0 3145 ------- null} - -t 3.57141 -s 0 -d 9 -p ack -e 40 -c 0 -i 6300 -a 0 -x {10.0 9.0 3145 ------- null} h -t 3.57141 -s 0 -d 9 -p ack -e 40 -c 0 -i 6300 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.57158 -s 10 -d 7 -p ack -e 40 -c 0 -i 6304 -a 0 -x {10.0 9.0 3147 ------- null} + -t 3.57158 -s 7 -d 0 -p ack -e 40 -c 0 -i 6304 -a 0 -x {10.0 9.0 3147 ------- null} h -t 3.57158 -s 7 -d 8 -p ack -e 40 -c 0 -i 6304 -a 0 -x {10.0 9.0 3147 ------- null} r -t 3.57176 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6289 -a 0 -x {9.0 10.0 3149 ------- null} + -t 3.57176 -s 10 -d 7 -p ack -e 40 -c 0 -i 6308 -a 0 -x {10.0 9.0 3149 ------- null} - -t 3.57176 -s 10 -d 7 -p ack -e 40 -c 0 -i 6308 -a 0 -x {10.0 9.0 3149 ------- null} h -t 3.57176 -s 10 -d 7 -p ack -e 40 -c 0 -i 6308 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.57187 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6303 -a 0 -x {9.0 10.0 3156 ------- null} + -t 3.57187 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6303 -a 0 -x {9.0 10.0 3156 ------- null} h -t 3.57187 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6303 -a 0 -x {9.0 10.0 3156 ------- null} r -t 3.57218 -s 0 -d 9 -p ack -e 40 -c 0 -i 6298 -a 0 -x {10.0 9.0 3144 ------- null} + -t 3.57218 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6309 -a 0 -x {9.0 10.0 3159 ------- null} - -t 3.57218 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6309 -a 0 -x {9.0 10.0 3159 ------- null} h -t 3.57218 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6309 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.57243 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6295 -a 0 -x {9.0 10.0 3152 ------- null} - -t 3.57243 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6295 -a 0 -x {9.0 10.0 3152 ------- null} h -t 3.57243 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6295 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.5727 -s 10 -d 7 -p ack -e 40 -c 0 -i 6306 -a 0 -x {10.0 9.0 3148 ------- null} + -t 3.5727 -s 7 -d 0 -p ack -e 40 -c 0 -i 6306 -a 0 -x {10.0 9.0 3148 ------- null} h -t 3.5727 -s 7 -d 8 -p ack -e 40 -c 0 -i 6306 -a 0 -x {10.0 9.0 3148 ------- null} + -t 3.5727 -s 0 -d 9 -p ack -e 40 -c 0 -i 6302 -a 0 -x {10.0 9.0 3146 ------- null} - -t 3.5727 -s 0 -d 9 -p ack -e 40 -c 0 -i 6302 -a 0 -x {10.0 9.0 3146 ------- null} h -t 3.5727 -s 0 -d 9 -p ack -e 40 -c 0 -i 6302 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.5728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6305 -a 0 -x {9.0 10.0 3157 ------- null} + -t 3.5728 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6305 -a 0 -x {9.0 10.0 3157 ------- null} h -t 3.5728 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6305 -a 0 -x {9.0 10.0 3157 ------- null} r -t 3.57285 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6291 -a 0 -x {9.0 10.0 3150 ------- null} + -t 3.57285 -s 10 -d 7 -p ack -e 40 -c 0 -i 6310 -a 0 -x {10.0 9.0 3150 ------- null} - -t 3.57285 -s 10 -d 7 -p ack -e 40 -c 0 -i 6310 -a 0 -x {10.0 9.0 3150 ------- null} h -t 3.57285 -s 10 -d 7 -p ack -e 40 -c 0 -i 6310 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.57344 -s 0 -d 9 -p ack -e 40 -c 0 -i 6300 -a 0 -x {10.0 9.0 3145 ------- null} + -t 3.57344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6311 -a 0 -x {9.0 10.0 3160 ------- null} - -t 3.57344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6311 -a 0 -x {9.0 10.0 3160 ------- null} h -t 3.57344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6311 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.57366 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6297 -a 0 -x {9.0 10.0 3153 ------- null} - -t 3.57366 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6297 -a 0 -x {9.0 10.0 3153 ------- null} h -t 3.57366 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6297 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.57378 -s 0 -d 9 -p ack -e 40 -c 0 -i 6304 -a 0 -x {10.0 9.0 3147 ------- null} - -t 3.57378 -s 0 -d 9 -p ack -e 40 -c 0 -i 6304 -a 0 -x {10.0 9.0 3147 ------- null} h -t 3.57378 -s 0 -d 9 -p ack -e 40 -c 0 -i 6304 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.57379 -s 10 -d 7 -p ack -e 40 -c 0 -i 6308 -a 0 -x {10.0 9.0 3149 ------- null} + -t 3.57379 -s 7 -d 0 -p ack -e 40 -c 0 -i 6308 -a 0 -x {10.0 9.0 3149 ------- null} h -t 3.57379 -s 7 -d 8 -p ack -e 40 -c 0 -i 6308 -a 0 -x {10.0 9.0 3149 ------- null} r -t 3.57394 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6293 -a 0 -x {9.0 10.0 3151 ------- null} + -t 3.57394 -s 10 -d 7 -p ack -e 40 -c 0 -i 6312 -a 0 -x {10.0 9.0 3151 ------- null} - -t 3.57394 -s 10 -d 7 -p ack -e 40 -c 0 -i 6312 -a 0 -x {10.0 9.0 3151 ------- null} h -t 3.57394 -s 10 -d 7 -p ack -e 40 -c 0 -i 6312 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.57398 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6307 -a 0 -x {9.0 10.0 3158 ------- null} + -t 3.57398 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6307 -a 0 -x {9.0 10.0 3158 ------- null} h -t 3.57398 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6307 -a 0 -x {9.0 10.0 3158 ------- null} r -t 3.57474 -s 0 -d 9 -p ack -e 40 -c 0 -i 6302 -a 0 -x {10.0 9.0 3146 ------- null} + -t 3.57474 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6313 -a 0 -x {9.0 10.0 3161 ------- null} - -t 3.57474 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6313 -a 0 -x {9.0 10.0 3161 ------- null} h -t 3.57474 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6313 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.57475 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6299 -a 0 -x {9.0 10.0 3154 ------- null} - -t 3.57475 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6299 -a 0 -x {9.0 10.0 3154 ------- null} h -t 3.57475 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6299 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.57488 -s 10 -d 7 -p ack -e 40 -c 0 -i 6310 -a 0 -x {10.0 9.0 3150 ------- null} + -t 3.57488 -s 7 -d 0 -p ack -e 40 -c 0 -i 6310 -a 0 -x {10.0 9.0 3150 ------- null} h -t 3.57488 -s 7 -d 8 -p ack -e 40 -c 0 -i 6310 -a 0 -x {10.0 9.0 3150 ------- null} + -t 3.57491 -s 0 -d 9 -p ack -e 40 -c 0 -i 6306 -a 0 -x {10.0 9.0 3148 ------- null} - -t 3.57491 -s 0 -d 9 -p ack -e 40 -c 0 -i 6306 -a 0 -x {10.0 9.0 3148 ------- null} h -t 3.57491 -s 0 -d 9 -p ack -e 40 -c 0 -i 6306 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.57498 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6309 -a 0 -x {9.0 10.0 3159 ------- null} + -t 3.57498 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6309 -a 0 -x {9.0 10.0 3159 ------- null} h -t 3.57498 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6309 -a 0 -x {9.0 10.0 3159 ------- null} r -t 3.57523 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6295 -a 0 -x {9.0 10.0 3152 ------- null} + -t 3.57523 -s 10 -d 7 -p ack -e 40 -c 0 -i 6314 -a 0 -x {10.0 9.0 3152 ------- null} - -t 3.57523 -s 10 -d 7 -p ack -e 40 -c 0 -i 6314 -a 0 -x {10.0 9.0 3152 ------- null} h -t 3.57523 -s 10 -d 7 -p ack -e 40 -c 0 -i 6314 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.57581 -s 0 -d 9 -p ack -e 40 -c 0 -i 6304 -a 0 -x {10.0 9.0 3147 ------- null} + -t 3.57581 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6315 -a 0 -x {9.0 10.0 3162 ------- null} - -t 3.57581 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6315 -a 0 -x {9.0 10.0 3162 ------- null} h -t 3.57581 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6315 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.57584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6301 -a 0 -x {9.0 10.0 3155 ------- null} - -t 3.57584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6301 -a 0 -x {9.0 10.0 3155 ------- null} h -t 3.57584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6301 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.57597 -s 10 -d 7 -p ack -e 40 -c 0 -i 6312 -a 0 -x {10.0 9.0 3151 ------- null} + -t 3.57597 -s 7 -d 0 -p ack -e 40 -c 0 -i 6312 -a 0 -x {10.0 9.0 3151 ------- null} h -t 3.57597 -s 7 -d 8 -p ack -e 40 -c 0 -i 6312 -a 0 -x {10.0 9.0 3151 ------- null} + -t 3.57608 -s 0 -d 9 -p ack -e 40 -c 0 -i 6308 -a 0 -x {10.0 9.0 3149 ------- null} - -t 3.57608 -s 0 -d 9 -p ack -e 40 -c 0 -i 6308 -a 0 -x {10.0 9.0 3149 ------- null} h -t 3.57608 -s 0 -d 9 -p ack -e 40 -c 0 -i 6308 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.57624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6311 -a 0 -x {9.0 10.0 3160 ------- null} + -t 3.57624 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6311 -a 0 -x {9.0 10.0 3160 ------- null} h -t 3.57624 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6311 -a 0 -x {9.0 10.0 3160 ------- null} r -t 3.57646 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6297 -a 0 -x {9.0 10.0 3153 ------- null} + -t 3.57646 -s 10 -d 7 -p ack -e 40 -c 0 -i 6316 -a 0 -x {10.0 9.0 3153 ------- null} - -t 3.57646 -s 10 -d 7 -p ack -e 40 -c 0 -i 6316 -a 0 -x {10.0 9.0 3153 ------- null} h -t 3.57646 -s 10 -d 7 -p ack -e 40 -c 0 -i 6316 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.57693 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6303 -a 0 -x {9.0 10.0 3156 ------- null} - -t 3.57693 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6303 -a 0 -x {9.0 10.0 3156 ------- null} h -t 3.57693 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6303 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.57694 -s 0 -d 9 -p ack -e 40 -c 0 -i 6306 -a 0 -x {10.0 9.0 3148 ------- null} + -t 3.57694 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6317 -a 0 -x {9.0 10.0 3163 ------- null} - -t 3.57694 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6317 -a 0 -x {9.0 10.0 3163 ------- null} h -t 3.57694 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6317 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.57707 -s 0 -d 9 -p ack -e 40 -c 0 -i 6310 -a 0 -x {10.0 9.0 3150 ------- null} - -t 3.57707 -s 0 -d 9 -p ack -e 40 -c 0 -i 6310 -a 0 -x {10.0 9.0 3150 ------- null} h -t 3.57707 -s 0 -d 9 -p ack -e 40 -c 0 -i 6310 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.57726 -s 10 -d 7 -p ack -e 40 -c 0 -i 6314 -a 0 -x {10.0 9.0 3152 ------- null} + -t 3.57726 -s 7 -d 0 -p ack -e 40 -c 0 -i 6314 -a 0 -x {10.0 9.0 3152 ------- null} h -t 3.57726 -s 7 -d 8 -p ack -e 40 -c 0 -i 6314 -a 0 -x {10.0 9.0 3152 ------- null} r -t 3.57754 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6313 -a 0 -x {9.0 10.0 3161 ------- null} + -t 3.57754 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6313 -a 0 -x {9.0 10.0 3161 ------- null} h -t 3.57754 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6313 -a 0 -x {9.0 10.0 3161 ------- null} r -t 3.57755 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6299 -a 0 -x {9.0 10.0 3154 ------- null} + -t 3.57755 -s 10 -d 7 -p ack -e 40 -c 0 -i 6318 -a 0 -x {10.0 9.0 3154 ------- null} - -t 3.57755 -s 10 -d 7 -p ack -e 40 -c 0 -i 6318 -a 0 -x {10.0 9.0 3154 ------- null} h -t 3.57755 -s 10 -d 7 -p ack -e 40 -c 0 -i 6318 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.57802 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6305 -a 0 -x {9.0 10.0 3157 ------- null} - -t 3.57802 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6305 -a 0 -x {9.0 10.0 3157 ------- null} h -t 3.57802 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6305 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.57811 -s 0 -d 9 -p ack -e 40 -c 0 -i 6308 -a 0 -x {10.0 9.0 3149 ------- null} + -t 3.57811 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6319 -a 0 -x {9.0 10.0 3164 ------- null} - -t 3.57811 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6319 -a 0 -x {9.0 10.0 3164 ------- null} h -t 3.57811 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6319 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.57832 -s 0 -d 9 -p ack -e 40 -c 0 -i 6312 -a 0 -x {10.0 9.0 3151 ------- null} - -t 3.57832 -s 0 -d 9 -p ack -e 40 -c 0 -i 6312 -a 0 -x {10.0 9.0 3151 ------- null} h -t 3.57832 -s 0 -d 9 -p ack -e 40 -c 0 -i 6312 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.5785 -s 10 -d 7 -p ack -e 40 -c 0 -i 6316 -a 0 -x {10.0 9.0 3153 ------- null} + -t 3.5785 -s 7 -d 0 -p ack -e 40 -c 0 -i 6316 -a 0 -x {10.0 9.0 3153 ------- null} h -t 3.5785 -s 7 -d 8 -p ack -e 40 -c 0 -i 6316 -a 0 -x {10.0 9.0 3153 ------- null} r -t 3.57861 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6315 -a 0 -x {9.0 10.0 3162 ------- null} + -t 3.57861 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6315 -a 0 -x {9.0 10.0 3162 ------- null} h -t 3.57861 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6315 -a 0 -x {9.0 10.0 3162 ------- null} r -t 3.57864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6301 -a 0 -x {9.0 10.0 3155 ------- null} + -t 3.57864 -s 10 -d 7 -p ack -e 40 -c 0 -i 6320 -a 0 -x {10.0 9.0 3155 ------- null} - -t 3.57864 -s 10 -d 7 -p ack -e 40 -c 0 -i 6320 -a 0 -x {10.0 9.0 3155 ------- null} h -t 3.57864 -s 10 -d 7 -p ack -e 40 -c 0 -i 6320 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.5791 -s 0 -d 9 -p ack -e 40 -c 0 -i 6310 -a 0 -x {10.0 9.0 3150 ------- null} + -t 3.5791 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6321 -a 0 -x {9.0 10.0 3165 ------- null} - -t 3.5791 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6321 -a 0 -x {9.0 10.0 3165 ------- null} h -t 3.5791 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6321 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.57939 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6307 -a 0 -x {9.0 10.0 3158 ------- null} - -t 3.57939 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6307 -a 0 -x {9.0 10.0 3158 ------- null} h -t 3.57939 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6307 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.57949 -s 0 -d 9 -p ack -e 40 -c 0 -i 6314 -a 0 -x {10.0 9.0 3152 ------- null} - -t 3.57949 -s 0 -d 9 -p ack -e 40 -c 0 -i 6314 -a 0 -x {10.0 9.0 3152 ------- null} h -t 3.57949 -s 0 -d 9 -p ack -e 40 -c 0 -i 6314 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.57958 -s 10 -d 7 -p ack -e 40 -c 0 -i 6318 -a 0 -x {10.0 9.0 3154 ------- null} + -t 3.57958 -s 7 -d 0 -p ack -e 40 -c 0 -i 6318 -a 0 -x {10.0 9.0 3154 ------- null} h -t 3.57958 -s 7 -d 8 -p ack -e 40 -c 0 -i 6318 -a 0 -x {10.0 9.0 3154 ------- null} r -t 3.57973 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6303 -a 0 -x {9.0 10.0 3156 ------- null} + -t 3.57973 -s 10 -d 7 -p ack -e 40 -c 0 -i 6322 -a 0 -x {10.0 9.0 3156 ------- null} - -t 3.57973 -s 10 -d 7 -p ack -e 40 -c 0 -i 6322 -a 0 -x {10.0 9.0 3156 ------- null} h -t 3.57973 -s 10 -d 7 -p ack -e 40 -c 0 -i 6322 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.57974 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6317 -a 0 -x {9.0 10.0 3163 ------- null} + -t 3.57974 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6317 -a 0 -x {9.0 10.0 3163 ------- null} h -t 3.57974 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6317 -a 0 -x {9.0 10.0 3163 ------- null} r -t 3.58035 -s 0 -d 9 -p ack -e 40 -c 0 -i 6312 -a 0 -x {10.0 9.0 3151 ------- null} + -t 3.58035 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6323 -a 0 -x {9.0 10.0 3166 ------- null} - -t 3.58035 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6323 -a 0 -x {9.0 10.0 3166 ------- null} h -t 3.58035 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6323 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.58048 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6309 -a 0 -x {9.0 10.0 3159 ------- null} - -t 3.58048 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6309 -a 0 -x {9.0 10.0 3159 ------- null} h -t 3.58048 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6309 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.58067 -s 0 -d 9 -p ack -e 40 -c 0 -i 6316 -a 0 -x {10.0 9.0 3153 ------- null} - -t 3.58067 -s 0 -d 9 -p ack -e 40 -c 0 -i 6316 -a 0 -x {10.0 9.0 3153 ------- null} h -t 3.58067 -s 0 -d 9 -p ack -e 40 -c 0 -i 6316 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.58067 -s 10 -d 7 -p ack -e 40 -c 0 -i 6320 -a 0 -x {10.0 9.0 3155 ------- null} + -t 3.58067 -s 7 -d 0 -p ack -e 40 -c 0 -i 6320 -a 0 -x {10.0 9.0 3155 ------- null} h -t 3.58067 -s 7 -d 8 -p ack -e 40 -c 0 -i 6320 -a 0 -x {10.0 9.0 3155 ------- null} r -t 3.58082 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6305 -a 0 -x {9.0 10.0 3157 ------- null} + -t 3.58082 -s 10 -d 7 -p ack -e 40 -c 0 -i 6324 -a 0 -x {10.0 9.0 3157 ------- null} - -t 3.58082 -s 10 -d 7 -p ack -e 40 -c 0 -i 6324 -a 0 -x {10.0 9.0 3157 ------- null} h -t 3.58082 -s 10 -d 7 -p ack -e 40 -c 0 -i 6324 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.58091 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6319 -a 0 -x {9.0 10.0 3164 ------- null} + -t 3.58091 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6319 -a 0 -x {9.0 10.0 3164 ------- null} h -t 3.58091 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6319 -a 0 -x {9.0 10.0 3164 ------- null} r -t 3.58152 -s 0 -d 9 -p ack -e 40 -c 0 -i 6314 -a 0 -x {10.0 9.0 3152 ------- null} + -t 3.58152 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6325 -a 0 -x {9.0 10.0 3167 ------- null} - -t 3.58152 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6325 -a 0 -x {9.0 10.0 3167 ------- null} h -t 3.58152 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6325 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.58157 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6311 -a 0 -x {9.0 10.0 3160 ------- null} - -t 3.58157 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6311 -a 0 -x {9.0 10.0 3160 ------- null} h -t 3.58157 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6311 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.58171 -s 0 -d 9 -p ack -e 40 -c 0 -i 6318 -a 0 -x {10.0 9.0 3154 ------- null} - -t 3.58171 -s 0 -d 9 -p ack -e 40 -c 0 -i 6318 -a 0 -x {10.0 9.0 3154 ------- null} h -t 3.58171 -s 0 -d 9 -p ack -e 40 -c 0 -i 6318 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.58176 -s 10 -d 7 -p ack -e 40 -c 0 -i 6322 -a 0 -x {10.0 9.0 3156 ------- null} + -t 3.58176 -s 7 -d 0 -p ack -e 40 -c 0 -i 6322 -a 0 -x {10.0 9.0 3156 ------- null} h -t 3.58176 -s 7 -d 8 -p ack -e 40 -c 0 -i 6322 -a 0 -x {10.0 9.0 3156 ------- null} r -t 3.5819 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6321 -a 0 -x {9.0 10.0 3165 ------- null} + -t 3.5819 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6321 -a 0 -x {9.0 10.0 3165 ------- null} h -t 3.5819 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6321 -a 0 -x {9.0 10.0 3165 ------- null} r -t 3.58219 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6307 -a 0 -x {9.0 10.0 3158 ------- null} + -t 3.58219 -s 10 -d 7 -p ack -e 40 -c 0 -i 6326 -a 0 -x {10.0 9.0 3158 ------- null} - -t 3.58219 -s 10 -d 7 -p ack -e 40 -c 0 -i 6326 -a 0 -x {10.0 9.0 3158 ------- null} h -t 3.58219 -s 10 -d 7 -p ack -e 40 -c 0 -i 6326 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.58266 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6313 -a 0 -x {9.0 10.0 3161 ------- null} - -t 3.58266 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6313 -a 0 -x {9.0 10.0 3161 ------- null} h -t 3.58266 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6313 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.5827 -s 0 -d 9 -p ack -e 40 -c 0 -i 6316 -a 0 -x {10.0 9.0 3153 ------- null} + -t 3.5827 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6327 -a 0 -x {9.0 10.0 3168 ------- null} - -t 3.5827 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6327 -a 0 -x {9.0 10.0 3168 ------- null} h -t 3.5827 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6327 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.58285 -s 10 -d 7 -p ack -e 40 -c 0 -i 6324 -a 0 -x {10.0 9.0 3157 ------- null} + -t 3.58285 -s 7 -d 0 -p ack -e 40 -c 0 -i 6324 -a 0 -x {10.0 9.0 3157 ------- null} h -t 3.58285 -s 7 -d 8 -p ack -e 40 -c 0 -i 6324 -a 0 -x {10.0 9.0 3157 ------- null} + -t 3.58286 -s 0 -d 9 -p ack -e 40 -c 0 -i 6320 -a 0 -x {10.0 9.0 3155 ------- null} - -t 3.58286 -s 0 -d 9 -p ack -e 40 -c 0 -i 6320 -a 0 -x {10.0 9.0 3155 ------- null} h -t 3.58286 -s 0 -d 9 -p ack -e 40 -c 0 -i 6320 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.58315 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6323 -a 0 -x {9.0 10.0 3166 ------- null} + -t 3.58315 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6323 -a 0 -x {9.0 10.0 3166 ------- null} h -t 3.58315 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6323 -a 0 -x {9.0 10.0 3166 ------- null} r -t 3.58328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6309 -a 0 -x {9.0 10.0 3159 ------- null} + -t 3.58328 -s 10 -d 7 -p ack -e 40 -c 0 -i 6328 -a 0 -x {10.0 9.0 3159 ------- null} - -t 3.58328 -s 10 -d 7 -p ack -e 40 -c 0 -i 6328 -a 0 -x {10.0 9.0 3159 ------- null} h -t 3.58328 -s 10 -d 7 -p ack -e 40 -c 0 -i 6328 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.58374 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6315 -a 0 -x {9.0 10.0 3162 ------- null} - -t 3.58374 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6315 -a 0 -x {9.0 10.0 3162 ------- null} h -t 3.58374 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6315 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.58374 -s 0 -d 9 -p ack -e 40 -c 0 -i 6318 -a 0 -x {10.0 9.0 3154 ------- null} + -t 3.58374 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6329 -a 0 -x {9.0 10.0 3169 ------- null} - -t 3.58374 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6329 -a 0 -x {9.0 10.0 3169 ------- null} h -t 3.58374 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6329 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.58395 -s 0 -d 9 -p ack -e 40 -c 0 -i 6322 -a 0 -x {10.0 9.0 3156 ------- null} - -t 3.58395 -s 0 -d 9 -p ack -e 40 -c 0 -i 6322 -a 0 -x {10.0 9.0 3156 ------- null} h -t 3.58395 -s 0 -d 9 -p ack -e 40 -c 0 -i 6322 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.58422 -s 10 -d 7 -p ack -e 40 -c 0 -i 6326 -a 0 -x {10.0 9.0 3158 ------- null} + -t 3.58422 -s 7 -d 0 -p ack -e 40 -c 0 -i 6326 -a 0 -x {10.0 9.0 3158 ------- null} h -t 3.58422 -s 7 -d 8 -p ack -e 40 -c 0 -i 6326 -a 0 -x {10.0 9.0 3158 ------- null} r -t 3.58432 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6325 -a 0 -x {9.0 10.0 3167 ------- null} + -t 3.58432 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6325 -a 0 -x {9.0 10.0 3167 ------- null} h -t 3.58432 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6325 -a 0 -x {9.0 10.0 3167 ------- null} r -t 3.58437 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6311 -a 0 -x {9.0 10.0 3160 ------- null} + -t 3.58437 -s 10 -d 7 -p ack -e 40 -c 0 -i 6330 -a 0 -x {10.0 9.0 3160 ------- null} - -t 3.58437 -s 10 -d 7 -p ack -e 40 -c 0 -i 6330 -a 0 -x {10.0 9.0 3160 ------- null} h -t 3.58437 -s 10 -d 7 -p ack -e 40 -c 0 -i 6330 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.58483 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6317 -a 0 -x {9.0 10.0 3163 ------- null} - -t 3.58483 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6317 -a 0 -x {9.0 10.0 3163 ------- null} h -t 3.58483 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6317 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.5849 -s 0 -d 9 -p ack -e 40 -c 0 -i 6320 -a 0 -x {10.0 9.0 3155 ------- null} + -t 3.5849 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6331 -a 0 -x {9.0 10.0 3170 ------- null} - -t 3.5849 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6331 -a 0 -x {9.0 10.0 3170 ------- null} h -t 3.5849 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6331 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.58506 -s 0 -d 9 -p ack -e 40 -c 0 -i 6324 -a 0 -x {10.0 9.0 3157 ------- null} - -t 3.58506 -s 0 -d 9 -p ack -e 40 -c 0 -i 6324 -a 0 -x {10.0 9.0 3157 ------- null} h -t 3.58506 -s 0 -d 9 -p ack -e 40 -c 0 -i 6324 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.58531 -s 10 -d 7 -p ack -e 40 -c 0 -i 6328 -a 0 -x {10.0 9.0 3159 ------- null} + -t 3.58531 -s 7 -d 0 -p ack -e 40 -c 0 -i 6328 -a 0 -x {10.0 9.0 3159 ------- null} h -t 3.58531 -s 7 -d 8 -p ack -e 40 -c 0 -i 6328 -a 0 -x {10.0 9.0 3159 ------- null} r -t 3.58546 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6313 -a 0 -x {9.0 10.0 3161 ------- null} + -t 3.58546 -s 10 -d 7 -p ack -e 40 -c 0 -i 6332 -a 0 -x {10.0 9.0 3161 ------- null} - -t 3.58546 -s 10 -d 7 -p ack -e 40 -c 0 -i 6332 -a 0 -x {10.0 9.0 3161 ------- null} h -t 3.58546 -s 10 -d 7 -p ack -e 40 -c 0 -i 6332 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.5855 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6327 -a 0 -x {9.0 10.0 3168 ------- null} + -t 3.5855 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6327 -a 0 -x {9.0 10.0 3168 ------- null} h -t 3.5855 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6327 -a 0 -x {9.0 10.0 3168 ------- null} + -t 3.58592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6319 -a 0 -x {9.0 10.0 3164 ------- null} - -t 3.58592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6319 -a 0 -x {9.0 10.0 3164 ------- null} h -t 3.58592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6319 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.58598 -s 0 -d 9 -p ack -e 40 -c 0 -i 6322 -a 0 -x {10.0 9.0 3156 ------- null} + -t 3.58598 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6333 -a 0 -x {9.0 10.0 3171 ------- null} - -t 3.58598 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6333 -a 0 -x {9.0 10.0 3171 ------- null} h -t 3.58598 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6333 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.58621 -s 0 -d 9 -p ack -e 40 -c 0 -i 6326 -a 0 -x {10.0 9.0 3158 ------- null} - -t 3.58621 -s 0 -d 9 -p ack -e 40 -c 0 -i 6326 -a 0 -x {10.0 9.0 3158 ------- null} h -t 3.58621 -s 0 -d 9 -p ack -e 40 -c 0 -i 6326 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.5864 -s 10 -d 7 -p ack -e 40 -c 0 -i 6330 -a 0 -x {10.0 9.0 3160 ------- null} + -t 3.5864 -s 7 -d 0 -p ack -e 40 -c 0 -i 6330 -a 0 -x {10.0 9.0 3160 ------- null} h -t 3.5864 -s 7 -d 8 -p ack -e 40 -c 0 -i 6330 -a 0 -x {10.0 9.0 3160 ------- null} r -t 3.58654 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6315 -a 0 -x {9.0 10.0 3162 ------- null} + -t 3.58654 -s 10 -d 7 -p ack -e 40 -c 0 -i 6334 -a 0 -x {10.0 9.0 3162 ------- null} - -t 3.58654 -s 10 -d 7 -p ack -e 40 -c 0 -i 6334 -a 0 -x {10.0 9.0 3162 ------- null} h -t 3.58654 -s 10 -d 7 -p ack -e 40 -c 0 -i 6334 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.58654 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6329 -a 0 -x {9.0 10.0 3169 ------- null} + -t 3.58654 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6329 -a 0 -x {9.0 10.0 3169 ------- null} h -t 3.58654 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6329 -a 0 -x {9.0 10.0 3169 ------- null} r -t 3.58709 -s 0 -d 9 -p ack -e 40 -c 0 -i 6324 -a 0 -x {10.0 9.0 3157 ------- null} + -t 3.58709 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6335 -a 0 -x {9.0 10.0 3172 ------- null} - -t 3.58709 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6335 -a 0 -x {9.0 10.0 3172 ------- null} h -t 3.58709 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6335 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.58725 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6321 -a 0 -x {9.0 10.0 3165 ------- null} - -t 3.58725 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6321 -a 0 -x {9.0 10.0 3165 ------- null} h -t 3.58725 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6321 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.58747 -s 0 -d 9 -p ack -e 40 -c 0 -i 6328 -a 0 -x {10.0 9.0 3159 ------- null} - -t 3.58747 -s 0 -d 9 -p ack -e 40 -c 0 -i 6328 -a 0 -x {10.0 9.0 3159 ------- null} h -t 3.58747 -s 0 -d 9 -p ack -e 40 -c 0 -i 6328 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.58749 -s 10 -d 7 -p ack -e 40 -c 0 -i 6332 -a 0 -x {10.0 9.0 3161 ------- null} + -t 3.58749 -s 7 -d 0 -p ack -e 40 -c 0 -i 6332 -a 0 -x {10.0 9.0 3161 ------- null} h -t 3.58749 -s 7 -d 8 -p ack -e 40 -c 0 -i 6332 -a 0 -x {10.0 9.0 3161 ------- null} r -t 3.58763 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6317 -a 0 -x {9.0 10.0 3163 ------- null} + -t 3.58763 -s 10 -d 7 -p ack -e 40 -c 0 -i 6336 -a 0 -x {10.0 9.0 3163 ------- null} - -t 3.58763 -s 10 -d 7 -p ack -e 40 -c 0 -i 6336 -a 0 -x {10.0 9.0 3163 ------- null} h -t 3.58763 -s 10 -d 7 -p ack -e 40 -c 0 -i 6336 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.5877 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6331 -a 0 -x {9.0 10.0 3170 ------- null} + -t 3.5877 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6331 -a 0 -x {9.0 10.0 3170 ------- null} h -t 3.5877 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6331 -a 0 -x {9.0 10.0 3170 ------- null} r -t 3.58824 -s 0 -d 9 -p ack -e 40 -c 0 -i 6326 -a 0 -x {10.0 9.0 3158 ------- null} + -t 3.58824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6337 -a 0 -x {9.0 10.0 3173 ------- null} - -t 3.58824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6337 -a 0 -x {9.0 10.0 3173 ------- null} h -t 3.58824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6337 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.58834 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6323 -a 0 -x {9.0 10.0 3166 ------- null} - -t 3.58834 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6323 -a 0 -x {9.0 10.0 3166 ------- null} h -t 3.58834 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6323 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.58858 -s 10 -d 7 -p ack -e 40 -c 0 -i 6334 -a 0 -x {10.0 9.0 3162 ------- null} + -t 3.58858 -s 7 -d 0 -p ack -e 40 -c 0 -i 6334 -a 0 -x {10.0 9.0 3162 ------- null} h -t 3.58858 -s 7 -d 8 -p ack -e 40 -c 0 -i 6334 -a 0 -x {10.0 9.0 3162 ------- null} + -t 3.58861 -s 0 -d 9 -p ack -e 40 -c 0 -i 6330 -a 0 -x {10.0 9.0 3160 ------- null} - -t 3.58861 -s 0 -d 9 -p ack -e 40 -c 0 -i 6330 -a 0 -x {10.0 9.0 3160 ------- null} h -t 3.58861 -s 0 -d 9 -p ack -e 40 -c 0 -i 6330 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.58872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6319 -a 0 -x {9.0 10.0 3164 ------- null} + -t 3.58872 -s 10 -d 7 -p ack -e 40 -c 0 -i 6338 -a 0 -x {10.0 9.0 3164 ------- null} - -t 3.58872 -s 10 -d 7 -p ack -e 40 -c 0 -i 6338 -a 0 -x {10.0 9.0 3164 ------- null} h -t 3.58872 -s 10 -d 7 -p ack -e 40 -c 0 -i 6338 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.58878 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6333 -a 0 -x {9.0 10.0 3171 ------- null} + -t 3.58878 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6333 -a 0 -x {9.0 10.0 3171 ------- null} h -t 3.58878 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6333 -a 0 -x {9.0 10.0 3171 ------- null} r -t 3.5895 -s 0 -d 9 -p ack -e 40 -c 0 -i 6328 -a 0 -x {10.0 9.0 3159 ------- null} + -t 3.5895 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6339 -a 0 -x {9.0 10.0 3174 ------- null} - -t 3.5895 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6339 -a 0 -x {9.0 10.0 3174 ------- null} h -t 3.5895 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6339 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.5896 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6325 -a 0 -x {9.0 10.0 3167 ------- null} - -t 3.5896 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6325 -a 0 -x {9.0 10.0 3167 ------- null} h -t 3.5896 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6325 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.58966 -s 10 -d 7 -p ack -e 40 -c 0 -i 6336 -a 0 -x {10.0 9.0 3163 ------- null} + -t 3.58966 -s 7 -d 0 -p ack -e 40 -c 0 -i 6336 -a 0 -x {10.0 9.0 3163 ------- null} h -t 3.58966 -s 7 -d 8 -p ack -e 40 -c 0 -i 6336 -a 0 -x {10.0 9.0 3163 ------- null} + -t 3.58981 -s 0 -d 9 -p ack -e 40 -c 0 -i 6332 -a 0 -x {10.0 9.0 3161 ------- null} - -t 3.58981 -s 0 -d 9 -p ack -e 40 -c 0 -i 6332 -a 0 -x {10.0 9.0 3161 ------- null} h -t 3.58981 -s 0 -d 9 -p ack -e 40 -c 0 -i 6332 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.58989 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6335 -a 0 -x {9.0 10.0 3172 ------- null} + -t 3.58989 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6335 -a 0 -x {9.0 10.0 3172 ------- null} h -t 3.58989 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6335 -a 0 -x {9.0 10.0 3172 ------- null} r -t 3.59005 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6321 -a 0 -x {9.0 10.0 3165 ------- null} + -t 3.59005 -s 10 -d 7 -p ack -e 40 -c 0 -i 6340 -a 0 -x {10.0 9.0 3165 ------- null} - -t 3.59005 -s 10 -d 7 -p ack -e 40 -c 0 -i 6340 -a 0 -x {10.0 9.0 3165 ------- null} h -t 3.59005 -s 10 -d 7 -p ack -e 40 -c 0 -i 6340 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.59064 -s 0 -d 9 -p ack -e 40 -c 0 -i 6330 -a 0 -x {10.0 9.0 3160 ------- null} + -t 3.59064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6341 -a 0 -x {9.0 10.0 3175 ------- null} - -t 3.59064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6341 -a 0 -x {9.0 10.0 3175 ------- null} h -t 3.59064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6341 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.59069 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6327 -a 0 -x {9.0 10.0 3168 ------- null} - -t 3.59069 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6327 -a 0 -x {9.0 10.0 3168 ------- null} h -t 3.59069 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6327 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.59075 -s 10 -d 7 -p ack -e 40 -c 0 -i 6338 -a 0 -x {10.0 9.0 3164 ------- null} + -t 3.59075 -s 7 -d 0 -p ack -e 40 -c 0 -i 6338 -a 0 -x {10.0 9.0 3164 ------- null} h -t 3.59075 -s 7 -d 8 -p ack -e 40 -c 0 -i 6338 -a 0 -x {10.0 9.0 3164 ------- null} + -t 3.59075 -s 0 -d 9 -p ack -e 40 -c 0 -i 6334 -a 0 -x {10.0 9.0 3162 ------- null} - -t 3.59075 -s 0 -d 9 -p ack -e 40 -c 0 -i 6334 -a 0 -x {10.0 9.0 3162 ------- null} h -t 3.59075 -s 0 -d 9 -p ack -e 40 -c 0 -i 6334 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.59104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6337 -a 0 -x {9.0 10.0 3173 ------- null} + -t 3.59104 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6337 -a 0 -x {9.0 10.0 3173 ------- null} h -t 3.59104 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6337 -a 0 -x {9.0 10.0 3173 ------- null} r -t 3.59114 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6323 -a 0 -x {9.0 10.0 3166 ------- null} + -t 3.59114 -s 10 -d 7 -p ack -e 40 -c 0 -i 6342 -a 0 -x {10.0 9.0 3166 ------- null} - -t 3.59114 -s 10 -d 7 -p ack -e 40 -c 0 -i 6342 -a 0 -x {10.0 9.0 3166 ------- null} h -t 3.59114 -s 10 -d 7 -p ack -e 40 -c 0 -i 6342 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.59178 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6329 -a 0 -x {9.0 10.0 3169 ------- null} - -t 3.59178 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6329 -a 0 -x {9.0 10.0 3169 ------- null} h -t 3.59178 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6329 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.59184 -s 0 -d 9 -p ack -e 40 -c 0 -i 6332 -a 0 -x {10.0 9.0 3161 ------- null} + -t 3.59184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6343 -a 0 -x {9.0 10.0 3176 ------- null} - -t 3.59184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6343 -a 0 -x {9.0 10.0 3176 ------- null} h -t 3.59184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6343 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.59203 -s 0 -d 9 -p ack -e 40 -c 0 -i 6336 -a 0 -x {10.0 9.0 3163 ------- null} - -t 3.59203 -s 0 -d 9 -p ack -e 40 -c 0 -i 6336 -a 0 -x {10.0 9.0 3163 ------- null} h -t 3.59203 -s 0 -d 9 -p ack -e 40 -c 0 -i 6336 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.59208 -s 10 -d 7 -p ack -e 40 -c 0 -i 6340 -a 0 -x {10.0 9.0 3165 ------- null} + -t 3.59208 -s 7 -d 0 -p ack -e 40 -c 0 -i 6340 -a 0 -x {10.0 9.0 3165 ------- null} h -t 3.59208 -s 7 -d 8 -p ack -e 40 -c 0 -i 6340 -a 0 -x {10.0 9.0 3165 ------- null} r -t 3.5923 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6339 -a 0 -x {9.0 10.0 3174 ------- null} + -t 3.5923 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6339 -a 0 -x {9.0 10.0 3174 ------- null} h -t 3.5923 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6339 -a 0 -x {9.0 10.0 3174 ------- null} r -t 3.5924 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6325 -a 0 -x {9.0 10.0 3167 ------- null} + -t 3.5924 -s 10 -d 7 -p ack -e 40 -c 0 -i 6344 -a 0 -x {10.0 9.0 3167 ------- null} - -t 3.5924 -s 10 -d 7 -p ack -e 40 -c 0 -i 6344 -a 0 -x {10.0 9.0 3167 ------- null} h -t 3.5924 -s 10 -d 7 -p ack -e 40 -c 0 -i 6344 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.59278 -s 0 -d 9 -p ack -e 40 -c 0 -i 6334 -a 0 -x {10.0 9.0 3162 ------- null} + -t 3.59278 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6345 -a 0 -x {9.0 10.0 3177 ------- null} - -t 3.59278 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6345 -a 0 -x {9.0 10.0 3177 ------- null} h -t 3.59278 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6345 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.59309 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6331 -a 0 -x {9.0 10.0 3170 ------- null} - -t 3.59309 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6331 -a 0 -x {9.0 10.0 3170 ------- null} h -t 3.59309 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6331 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.59317 -s 10 -d 7 -p ack -e 40 -c 0 -i 6342 -a 0 -x {10.0 9.0 3166 ------- null} + -t 3.59317 -s 7 -d 0 -p ack -e 40 -c 0 -i 6342 -a 0 -x {10.0 9.0 3166 ------- null} h -t 3.59317 -s 7 -d 8 -p ack -e 40 -c 0 -i 6342 -a 0 -x {10.0 9.0 3166 ------- null} + -t 3.59338 -s 0 -d 9 -p ack -e 40 -c 0 -i 6338 -a 0 -x {10.0 9.0 3164 ------- null} - -t 3.59338 -s 0 -d 9 -p ack -e 40 -c 0 -i 6338 -a 0 -x {10.0 9.0 3164 ------- null} h -t 3.59338 -s 0 -d 9 -p ack -e 40 -c 0 -i 6338 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.59344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6341 -a 0 -x {9.0 10.0 3175 ------- null} + -t 3.59344 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6341 -a 0 -x {9.0 10.0 3175 ------- null} h -t 3.59344 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6341 -a 0 -x {9.0 10.0 3175 ------- null} r -t 3.59349 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6327 -a 0 -x {9.0 10.0 3168 ------- null} + -t 3.59349 -s 10 -d 7 -p ack -e 40 -c 0 -i 6346 -a 0 -x {10.0 9.0 3168 ------- null} - -t 3.59349 -s 10 -d 7 -p ack -e 40 -c 0 -i 6346 -a 0 -x {10.0 9.0 3168 ------- null} h -t 3.59349 -s 10 -d 7 -p ack -e 40 -c 0 -i 6346 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.59406 -s 0 -d 9 -p ack -e 40 -c 0 -i 6336 -a 0 -x {10.0 9.0 3163 ------- null} + -t 3.59406 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6347 -a 0 -x {9.0 10.0 3178 ------- null} - -t 3.59406 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6347 -a 0 -x {9.0 10.0 3178 ------- null} h -t 3.59406 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6347 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.59443 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6333 -a 0 -x {9.0 10.0 3171 ------- null} - -t 3.59443 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6333 -a 0 -x {9.0 10.0 3171 ------- null} h -t 3.59443 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6333 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.59443 -s 10 -d 7 -p ack -e 40 -c 0 -i 6344 -a 0 -x {10.0 9.0 3167 ------- null} + -t 3.59443 -s 7 -d 0 -p ack -e 40 -c 0 -i 6344 -a 0 -x {10.0 9.0 3167 ------- null} h -t 3.59443 -s 7 -d 8 -p ack -e 40 -c 0 -i 6344 -a 0 -x {10.0 9.0 3167 ------- null} r -t 3.59458 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6329 -a 0 -x {9.0 10.0 3169 ------- null} + -t 3.59458 -s 10 -d 7 -p ack -e 40 -c 0 -i 6348 -a 0 -x {10.0 9.0 3169 ------- null} - -t 3.59458 -s 10 -d 7 -p ack -e 40 -c 0 -i 6348 -a 0 -x {10.0 9.0 3169 ------- null} h -t 3.59458 -s 10 -d 7 -p ack -e 40 -c 0 -i 6348 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.59464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6343 -a 0 -x {9.0 10.0 3176 ------- null} + -t 3.59464 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6343 -a 0 -x {9.0 10.0 3176 ------- null} h -t 3.59464 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6343 -a 0 -x {9.0 10.0 3176 ------- null} + -t 3.5947 -s 0 -d 9 -p ack -e 40 -c 0 -i 6340 -a 0 -x {10.0 9.0 3165 ------- null} - -t 3.5947 -s 0 -d 9 -p ack -e 40 -c 0 -i 6340 -a 0 -x {10.0 9.0 3165 ------- null} h -t 3.5947 -s 0 -d 9 -p ack -e 40 -c 0 -i 6340 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.59541 -s 0 -d 9 -p ack -e 40 -c 0 -i 6338 -a 0 -x {10.0 9.0 3164 ------- null} + -t 3.59541 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6349 -a 0 -x {9.0 10.0 3179 ------- null} - -t 3.59541 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6349 -a 0 -x {9.0 10.0 3179 ------- null} h -t 3.59541 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6349 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.59552 -s 10 -d 7 -p ack -e 40 -c 0 -i 6346 -a 0 -x {10.0 9.0 3168 ------- null} + -t 3.59552 -s 7 -d 0 -p ack -e 40 -c 0 -i 6346 -a 0 -x {10.0 9.0 3168 ------- null} h -t 3.59552 -s 7 -d 8 -p ack -e 40 -c 0 -i 6346 -a 0 -x {10.0 9.0 3168 ------- null} + -t 3.59555 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6335 -a 0 -x {9.0 10.0 3172 ------- null} - -t 3.59555 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6335 -a 0 -x {9.0 10.0 3172 ------- null} h -t 3.59555 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6335 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.59558 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6345 -a 0 -x {9.0 10.0 3177 ------- null} + -t 3.59558 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6345 -a 0 -x {9.0 10.0 3177 ------- null} h -t 3.59558 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6345 -a 0 -x {9.0 10.0 3177 ------- null} + -t 3.59579 -s 0 -d 9 -p ack -e 40 -c 0 -i 6342 -a 0 -x {10.0 9.0 3166 ------- null} - -t 3.59579 -s 0 -d 9 -p ack -e 40 -c 0 -i 6342 -a 0 -x {10.0 9.0 3166 ------- null} h -t 3.59579 -s 0 -d 9 -p ack -e 40 -c 0 -i 6342 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.59589 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6331 -a 0 -x {9.0 10.0 3170 ------- null} + -t 3.59589 -s 10 -d 7 -p ack -e 40 -c 0 -i 6350 -a 0 -x {10.0 9.0 3170 ------- null} - -t 3.59589 -s 10 -d 7 -p ack -e 40 -c 0 -i 6350 -a 0 -x {10.0 9.0 3170 ------- null} h -t 3.59589 -s 10 -d 7 -p ack -e 40 -c 0 -i 6350 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.59661 -s 10 -d 7 -p ack -e 40 -c 0 -i 6348 -a 0 -x {10.0 9.0 3169 ------- null} + -t 3.59661 -s 7 -d 0 -p ack -e 40 -c 0 -i 6348 -a 0 -x {10.0 9.0 3169 ------- null} h -t 3.59661 -s 7 -d 8 -p ack -e 40 -c 0 -i 6348 -a 0 -x {10.0 9.0 3169 ------- null} + -t 3.59664 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6337 -a 0 -x {9.0 10.0 3173 ------- null} - -t 3.59664 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6337 -a 0 -x {9.0 10.0 3173 ------- null} h -t 3.59664 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6337 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.59674 -s 0 -d 9 -p ack -e 40 -c 0 -i 6340 -a 0 -x {10.0 9.0 3165 ------- null} + -t 3.59674 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6351 -a 0 -x {9.0 10.0 3180 ------- null} - -t 3.59674 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6351 -a 0 -x {9.0 10.0 3180 ------- null} h -t 3.59674 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6351 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.59675 -s 0 -d 9 -p ack -e 40 -c 0 -i 6344 -a 0 -x {10.0 9.0 3167 ------- null} - -t 3.59675 -s 0 -d 9 -p ack -e 40 -c 0 -i 6344 -a 0 -x {10.0 9.0 3167 ------- null} h -t 3.59675 -s 0 -d 9 -p ack -e 40 -c 0 -i 6344 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.59686 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6347 -a 0 -x {9.0 10.0 3178 ------- null} + -t 3.59686 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6347 -a 0 -x {9.0 10.0 3178 ------- null} h -t 3.59686 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6347 -a 0 -x {9.0 10.0 3178 ------- null} r -t 3.59723 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6333 -a 0 -x {9.0 10.0 3171 ------- null} + -t 3.59723 -s 10 -d 7 -p ack -e 40 -c 0 -i 6352 -a 0 -x {10.0 9.0 3171 ------- null} - -t 3.59723 -s 10 -d 7 -p ack -e 40 -c 0 -i 6352 -a 0 -x {10.0 9.0 3171 ------- null} h -t 3.59723 -s 10 -d 7 -p ack -e 40 -c 0 -i 6352 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.59773 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6339 -a 0 -x {9.0 10.0 3174 ------- null} - -t 3.59773 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6339 -a 0 -x {9.0 10.0 3174 ------- null} h -t 3.59773 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6339 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.59782 -s 0 -d 9 -p ack -e 40 -c 0 -i 6342 -a 0 -x {10.0 9.0 3166 ------- null} + -t 3.59782 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6353 -a 0 -x {9.0 10.0 3181 ------- null} - -t 3.59782 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6353 -a 0 -x {9.0 10.0 3181 ------- null} h -t 3.59782 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6353 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.59784 -s 0 -d 9 -p ack -e 40 -c 0 -i 6346 -a 0 -x {10.0 9.0 3168 ------- null} - -t 3.59784 -s 0 -d 9 -p ack -e 40 -c 0 -i 6346 -a 0 -x {10.0 9.0 3168 ------- null} h -t 3.59784 -s 0 -d 9 -p ack -e 40 -c 0 -i 6346 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.59792 -s 10 -d 7 -p ack -e 40 -c 0 -i 6350 -a 0 -x {10.0 9.0 3170 ------- null} + -t 3.59792 -s 7 -d 0 -p ack -e 40 -c 0 -i 6350 -a 0 -x {10.0 9.0 3170 ------- null} h -t 3.59792 -s 7 -d 8 -p ack -e 40 -c 0 -i 6350 -a 0 -x {10.0 9.0 3170 ------- null} r -t 3.59821 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6349 -a 0 -x {9.0 10.0 3179 ------- null} + -t 3.59821 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6349 -a 0 -x {9.0 10.0 3179 ------- null} h -t 3.59821 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6349 -a 0 -x {9.0 10.0 3179 ------- null} r -t 3.59835 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6335 -a 0 -x {9.0 10.0 3172 ------- null} + -t 3.59835 -s 10 -d 7 -p ack -e 40 -c 0 -i 6354 -a 0 -x {10.0 9.0 3172 ------- null} - -t 3.59835 -s 10 -d 7 -p ack -e 40 -c 0 -i 6354 -a 0 -x {10.0 9.0 3172 ------- null} h -t 3.59835 -s 10 -d 7 -p ack -e 40 -c 0 -i 6354 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.59878 -s 0 -d 9 -p ack -e 40 -c 0 -i 6344 -a 0 -x {10.0 9.0 3167 ------- null} + -t 3.59878 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6355 -a 0 -x {9.0 10.0 3182 ------- null} - -t 3.59878 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6355 -a 0 -x {9.0 10.0 3182 ------- null} h -t 3.59878 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6355 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.59882 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6341 -a 0 -x {9.0 10.0 3175 ------- null} - -t 3.59882 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6341 -a 0 -x {9.0 10.0 3175 ------- null} h -t 3.59882 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6341 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.59888 -s 0 -d 9 -p ack -e 40 -c 0 -i 6348 -a 0 -x {10.0 9.0 3169 ------- null} - -t 3.59888 -s 0 -d 9 -p ack -e 40 -c 0 -i 6348 -a 0 -x {10.0 9.0 3169 ------- null} h -t 3.59888 -s 0 -d 9 -p ack -e 40 -c 0 -i 6348 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.59926 -s 10 -d 7 -p ack -e 40 -c 0 -i 6352 -a 0 -x {10.0 9.0 3171 ------- null} + -t 3.59926 -s 7 -d 0 -p ack -e 40 -c 0 -i 6352 -a 0 -x {10.0 9.0 3171 ------- null} h -t 3.59926 -s 7 -d 8 -p ack -e 40 -c 0 -i 6352 -a 0 -x {10.0 9.0 3171 ------- null} r -t 3.59944 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6337 -a 0 -x {9.0 10.0 3173 ------- null} + -t 3.59944 -s 10 -d 7 -p ack -e 40 -c 0 -i 6356 -a 0 -x {10.0 9.0 3173 ------- null} - -t 3.59944 -s 10 -d 7 -p ack -e 40 -c 0 -i 6356 -a 0 -x {10.0 9.0 3173 ------- null} h -t 3.59944 -s 10 -d 7 -p ack -e 40 -c 0 -i 6356 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.59954 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6351 -a 0 -x {9.0 10.0 3180 ------- null} + -t 3.59954 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6351 -a 0 -x {9.0 10.0 3180 ------- null} h -t 3.59954 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6351 -a 0 -x {9.0 10.0 3180 ------- null} r -t 3.59987 -s 0 -d 9 -p ack -e 40 -c 0 -i 6346 -a 0 -x {10.0 9.0 3168 ------- null} + -t 3.59987 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6357 -a 0 -x {9.0 10.0 3183 ------- null} - -t 3.59987 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6357 -a 0 -x {9.0 10.0 3183 ------- null} h -t 3.59987 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6357 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.5999 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6343 -a 0 -x {9.0 10.0 3176 ------- null} - -t 3.5999 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6343 -a 0 -x {9.0 10.0 3176 ------- null} h -t 3.5999 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6343 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.6001 -s 0 -d 9 -p ack -e 40 -c 0 -i 6350 -a 0 -x {10.0 9.0 3170 ------- null} - -t 3.6001 -s 0 -d 9 -p ack -e 40 -c 0 -i 6350 -a 0 -x {10.0 9.0 3170 ------- null} h -t 3.6001 -s 0 -d 9 -p ack -e 40 -c 0 -i 6350 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.60038 -s 10 -d 7 -p ack -e 40 -c 0 -i 6354 -a 0 -x {10.0 9.0 3172 ------- null} + -t 3.60038 -s 7 -d 0 -p ack -e 40 -c 0 -i 6354 -a 0 -x {10.0 9.0 3172 ------- null} h -t 3.60038 -s 7 -d 8 -p ack -e 40 -c 0 -i 6354 -a 0 -x {10.0 9.0 3172 ------- null} r -t 3.60053 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6339 -a 0 -x {9.0 10.0 3174 ------- null} + -t 3.60053 -s 10 -d 7 -p ack -e 40 -c 0 -i 6358 -a 0 -x {10.0 9.0 3174 ------- null} - -t 3.60053 -s 10 -d 7 -p ack -e 40 -c 0 -i 6358 -a 0 -x {10.0 9.0 3174 ------- null} h -t 3.60053 -s 10 -d 7 -p ack -e 40 -c 0 -i 6358 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.60062 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6353 -a 0 -x {9.0 10.0 3181 ------- null} + -t 3.60062 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6353 -a 0 -x {9.0 10.0 3181 ------- null} h -t 3.60062 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6353 -a 0 -x {9.0 10.0 3181 ------- null} r -t 3.60091 -s 0 -d 9 -p ack -e 40 -c 0 -i 6348 -a 0 -x {10.0 9.0 3169 ------- null} + -t 3.60091 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6359 -a 0 -x {9.0 10.0 3184 ------- null} - -t 3.60091 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6359 -a 0 -x {9.0 10.0 3184 ------- null} h -t 3.60091 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6359 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.60099 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6345 -a 0 -x {9.0 10.0 3177 ------- null} - -t 3.60099 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6345 -a 0 -x {9.0 10.0 3177 ------- null} h -t 3.60099 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6345 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.60123 -s 0 -d 9 -p ack -e 40 -c 0 -i 6352 -a 0 -x {10.0 9.0 3171 ------- null} - -t 3.60123 -s 0 -d 9 -p ack -e 40 -c 0 -i 6352 -a 0 -x {10.0 9.0 3171 ------- null} h -t 3.60123 -s 0 -d 9 -p ack -e 40 -c 0 -i 6352 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.60147 -s 10 -d 7 -p ack -e 40 -c 0 -i 6356 -a 0 -x {10.0 9.0 3173 ------- null} + -t 3.60147 -s 7 -d 0 -p ack -e 40 -c 0 -i 6356 -a 0 -x {10.0 9.0 3173 ------- null} h -t 3.60147 -s 7 -d 8 -p ack -e 40 -c 0 -i 6356 -a 0 -x {10.0 9.0 3173 ------- null} r -t 3.60158 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6355 -a 0 -x {9.0 10.0 3182 ------- null} + -t 3.60158 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6355 -a 0 -x {9.0 10.0 3182 ------- null} h -t 3.60158 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6355 -a 0 -x {9.0 10.0 3182 ------- null} r -t 3.60162 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6341 -a 0 -x {9.0 10.0 3175 ------- null} + -t 3.60162 -s 10 -d 7 -p ack -e 40 -c 0 -i 6360 -a 0 -x {10.0 9.0 3175 ------- null} - -t 3.60162 -s 10 -d 7 -p ack -e 40 -c 0 -i 6360 -a 0 -x {10.0 9.0 3175 ------- null} h -t 3.60162 -s 10 -d 7 -p ack -e 40 -c 0 -i 6360 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.60208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6347 -a 0 -x {9.0 10.0 3178 ------- null} - -t 3.60208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6347 -a 0 -x {9.0 10.0 3178 ------- null} h -t 3.60208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6347 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.60213 -s 0 -d 9 -p ack -e 40 -c 0 -i 6350 -a 0 -x {10.0 9.0 3170 ------- null} + -t 3.60213 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6361 -a 0 -x {9.0 10.0 3185 ------- null} - -t 3.60213 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6361 -a 0 -x {9.0 10.0 3185 ------- null} h -t 3.60213 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6361 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.60235 -s 0 -d 9 -p ack -e 40 -c 0 -i 6354 -a 0 -x {10.0 9.0 3172 ------- null} - -t 3.60235 -s 0 -d 9 -p ack -e 40 -c 0 -i 6354 -a 0 -x {10.0 9.0 3172 ------- null} h -t 3.60235 -s 0 -d 9 -p ack -e 40 -c 0 -i 6354 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.60256 -s 10 -d 7 -p ack -e 40 -c 0 -i 6358 -a 0 -x {10.0 9.0 3174 ------- null} + -t 3.60256 -s 7 -d 0 -p ack -e 40 -c 0 -i 6358 -a 0 -x {10.0 9.0 3174 ------- null} h -t 3.60256 -s 7 -d 8 -p ack -e 40 -c 0 -i 6358 -a 0 -x {10.0 9.0 3174 ------- null} r -t 3.60267 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6357 -a 0 -x {9.0 10.0 3183 ------- null} + -t 3.60267 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6357 -a 0 -x {9.0 10.0 3183 ------- null} h -t 3.60267 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6357 -a 0 -x {9.0 10.0 3183 ------- null} r -t 3.6027 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6343 -a 0 -x {9.0 10.0 3176 ------- null} + -t 3.6027 -s 10 -d 7 -p ack -e 40 -c 0 -i 6362 -a 0 -x {10.0 9.0 3176 ------- null} - -t 3.6027 -s 10 -d 7 -p ack -e 40 -c 0 -i 6362 -a 0 -x {10.0 9.0 3176 ------- null} h -t 3.6027 -s 10 -d 7 -p ack -e 40 -c 0 -i 6362 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.60326 -s 0 -d 9 -p ack -e 40 -c 0 -i 6352 -a 0 -x {10.0 9.0 3171 ------- null} + -t 3.60326 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6363 -a 0 -x {9.0 10.0 3186 ------- null} - -t 3.60326 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6363 -a 0 -x {9.0 10.0 3186 ------- null} h -t 3.60326 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6363 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.60334 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6349 -a 0 -x {9.0 10.0 3179 ------- null} - -t 3.60334 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6349 -a 0 -x {9.0 10.0 3179 ------- null} h -t 3.60334 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6349 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.60349 -s 0 -d 9 -p ack -e 40 -c 0 -i 6356 -a 0 -x {10.0 9.0 3173 ------- null} - -t 3.60349 -s 0 -d 9 -p ack -e 40 -c 0 -i 6356 -a 0 -x {10.0 9.0 3173 ------- null} h -t 3.60349 -s 0 -d 9 -p ack -e 40 -c 0 -i 6356 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.60365 -s 10 -d 7 -p ack -e 40 -c 0 -i 6360 -a 0 -x {10.0 9.0 3175 ------- null} + -t 3.60365 -s 7 -d 0 -p ack -e 40 -c 0 -i 6360 -a 0 -x {10.0 9.0 3175 ------- null} h -t 3.60365 -s 7 -d 8 -p ack -e 40 -c 0 -i 6360 -a 0 -x {10.0 9.0 3175 ------- null} r -t 3.60371 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6359 -a 0 -x {9.0 10.0 3184 ------- null} + -t 3.60371 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6359 -a 0 -x {9.0 10.0 3184 ------- null} h -t 3.60371 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6359 -a 0 -x {9.0 10.0 3184 ------- null} r -t 3.60379 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6345 -a 0 -x {9.0 10.0 3177 ------- null} + -t 3.60379 -s 10 -d 7 -p ack -e 40 -c 0 -i 6364 -a 0 -x {10.0 9.0 3177 ------- null} - -t 3.60379 -s 10 -d 7 -p ack -e 40 -c 0 -i 6364 -a 0 -x {10.0 9.0 3177 ------- null} h -t 3.60379 -s 10 -d 7 -p ack -e 40 -c 0 -i 6364 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.60438 -s 0 -d 9 -p ack -e 40 -c 0 -i 6354 -a 0 -x {10.0 9.0 3172 ------- null} + -t 3.60438 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6365 -a 0 -x {9.0 10.0 3187 ------- null} - -t 3.60438 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6365 -a 0 -x {9.0 10.0 3187 ------- null} h -t 3.60438 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6365 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.60443 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6351 -a 0 -x {9.0 10.0 3180 ------- null} - -t 3.60443 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6351 -a 0 -x {9.0 10.0 3180 ------- null} h -t 3.60443 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6351 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.60467 -s 0 -d 9 -p ack -e 40 -c 0 -i 6358 -a 0 -x {10.0 9.0 3174 ------- null} - -t 3.60467 -s 0 -d 9 -p ack -e 40 -c 0 -i 6358 -a 0 -x {10.0 9.0 3174 ------- null} h -t 3.60467 -s 0 -d 9 -p ack -e 40 -c 0 -i 6358 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.60474 -s 10 -d 7 -p ack -e 40 -c 0 -i 6362 -a 0 -x {10.0 9.0 3176 ------- null} + -t 3.60474 -s 7 -d 0 -p ack -e 40 -c 0 -i 6362 -a 0 -x {10.0 9.0 3176 ------- null} h -t 3.60474 -s 7 -d 8 -p ack -e 40 -c 0 -i 6362 -a 0 -x {10.0 9.0 3176 ------- null} r -t 3.60488 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6347 -a 0 -x {9.0 10.0 3178 ------- null} + -t 3.60488 -s 10 -d 7 -p ack -e 40 -c 0 -i 6366 -a 0 -x {10.0 9.0 3178 ------- null} - -t 3.60488 -s 10 -d 7 -p ack -e 40 -c 0 -i 6366 -a 0 -x {10.0 9.0 3178 ------- null} h -t 3.60488 -s 10 -d 7 -p ack -e 40 -c 0 -i 6366 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.60493 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6361 -a 0 -x {9.0 10.0 3185 ------- null} + -t 3.60493 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6361 -a 0 -x {9.0 10.0 3185 ------- null} h -t 3.60493 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6361 -a 0 -x {9.0 10.0 3185 ------- null} + -t 3.60552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6353 -a 0 -x {9.0 10.0 3181 ------- null} - -t 3.60552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6353 -a 0 -x {9.0 10.0 3181 ------- null} h -t 3.60552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6353 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.60552 -s 0 -d 9 -p ack -e 40 -c 0 -i 6356 -a 0 -x {10.0 9.0 3173 ------- null} + -t 3.60552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6367 -a 0 -x {9.0 10.0 3188 ------- null} - -t 3.60552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6367 -a 0 -x {9.0 10.0 3188 ------- null} h -t 3.60552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6367 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.60574 -s 0 -d 9 -p ack -e 40 -c 0 -i 6360 -a 0 -x {10.0 9.0 3175 ------- null} - -t 3.60574 -s 0 -d 9 -p ack -e 40 -c 0 -i 6360 -a 0 -x {10.0 9.0 3175 ------- null} h -t 3.60574 -s 0 -d 9 -p ack -e 40 -c 0 -i 6360 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.60582 -s 10 -d 7 -p ack -e 40 -c 0 -i 6364 -a 0 -x {10.0 9.0 3177 ------- null} + -t 3.60582 -s 7 -d 0 -p ack -e 40 -c 0 -i 6364 -a 0 -x {10.0 9.0 3177 ------- null} h -t 3.60582 -s 7 -d 8 -p ack -e 40 -c 0 -i 6364 -a 0 -x {10.0 9.0 3177 ------- null} r -t 3.60606 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6363 -a 0 -x {9.0 10.0 3186 ------- null} + -t 3.60606 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6363 -a 0 -x {9.0 10.0 3186 ------- null} h -t 3.60606 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6363 -a 0 -x {9.0 10.0 3186 ------- null} r -t 3.60614 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6349 -a 0 -x {9.0 10.0 3179 ------- null} + -t 3.60614 -s 10 -d 7 -p ack -e 40 -c 0 -i 6368 -a 0 -x {10.0 9.0 3179 ------- null} - -t 3.60614 -s 10 -d 7 -p ack -e 40 -c 0 -i 6368 -a 0 -x {10.0 9.0 3179 ------- null} h -t 3.60614 -s 10 -d 7 -p ack -e 40 -c 0 -i 6368 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.60661 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6355 -a 0 -x {9.0 10.0 3182 ------- null} - -t 3.60661 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6355 -a 0 -x {9.0 10.0 3182 ------- null} h -t 3.60661 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6355 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.6067 -s 0 -d 9 -p ack -e 40 -c 0 -i 6358 -a 0 -x {10.0 9.0 3174 ------- null} + -t 3.6067 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6369 -a 0 -x {9.0 10.0 3189 ------- null} - -t 3.6067 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6369 -a 0 -x {9.0 10.0 3189 ------- null} h -t 3.6067 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6369 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.60682 -s 0 -d 9 -p ack -e 40 -c 0 -i 6362 -a 0 -x {10.0 9.0 3176 ------- null} - -t 3.60682 -s 0 -d 9 -p ack -e 40 -c 0 -i 6362 -a 0 -x {10.0 9.0 3176 ------- null} h -t 3.60682 -s 0 -d 9 -p ack -e 40 -c 0 -i 6362 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.60691 -s 10 -d 7 -p ack -e 40 -c 0 -i 6366 -a 0 -x {10.0 9.0 3178 ------- null} + -t 3.60691 -s 7 -d 0 -p ack -e 40 -c 0 -i 6366 -a 0 -x {10.0 9.0 3178 ------- null} h -t 3.60691 -s 7 -d 8 -p ack -e 40 -c 0 -i 6366 -a 0 -x {10.0 9.0 3178 ------- null} r -t 3.60718 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6365 -a 0 -x {9.0 10.0 3187 ------- null} + -t 3.60718 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6365 -a 0 -x {9.0 10.0 3187 ------- null} h -t 3.60718 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6365 -a 0 -x {9.0 10.0 3187 ------- null} r -t 3.60723 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6351 -a 0 -x {9.0 10.0 3180 ------- null} + -t 3.60723 -s 10 -d 7 -p ack -e 40 -c 0 -i 6370 -a 0 -x {10.0 9.0 3180 ------- null} - -t 3.60723 -s 10 -d 7 -p ack -e 40 -c 0 -i 6370 -a 0 -x {10.0 9.0 3180 ------- null} h -t 3.60723 -s 10 -d 7 -p ack -e 40 -c 0 -i 6370 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.6077 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6357 -a 0 -x {9.0 10.0 3183 ------- null} - -t 3.6077 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6357 -a 0 -x {9.0 10.0 3183 ------- null} h -t 3.6077 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6357 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.60778 -s 0 -d 9 -p ack -e 40 -c 0 -i 6360 -a 0 -x {10.0 9.0 3175 ------- null} + -t 3.60778 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6371 -a 0 -x {9.0 10.0 3190 ------- null} - -t 3.60778 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6371 -a 0 -x {9.0 10.0 3190 ------- null} h -t 3.60778 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6371 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.608 -s 0 -d 9 -p ack -e 40 -c 0 -i 6364 -a 0 -x {10.0 9.0 3177 ------- null} - -t 3.608 -s 0 -d 9 -p ack -e 40 -c 0 -i 6364 -a 0 -x {10.0 9.0 3177 ------- null} h -t 3.608 -s 0 -d 9 -p ack -e 40 -c 0 -i 6364 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.60818 -s 10 -d 7 -p ack -e 40 -c 0 -i 6368 -a 0 -x {10.0 9.0 3179 ------- null} + -t 3.60818 -s 7 -d 0 -p ack -e 40 -c 0 -i 6368 -a 0 -x {10.0 9.0 3179 ------- null} h -t 3.60818 -s 7 -d 8 -p ack -e 40 -c 0 -i 6368 -a 0 -x {10.0 9.0 3179 ------- null} r -t 3.60832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6353 -a 0 -x {9.0 10.0 3181 ------- null} + -t 3.60832 -s 10 -d 7 -p ack -e 40 -c 0 -i 6372 -a 0 -x {10.0 9.0 3181 ------- null} - -t 3.60832 -s 10 -d 7 -p ack -e 40 -c 0 -i 6372 -a 0 -x {10.0 9.0 3181 ------- null} h -t 3.60832 -s 10 -d 7 -p ack -e 40 -c 0 -i 6372 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.60832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6367 -a 0 -x {9.0 10.0 3188 ------- null} + -t 3.60832 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6367 -a 0 -x {9.0 10.0 3188 ------- null} h -t 3.60832 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6367 -a 0 -x {9.0 10.0 3188 ------- null} r -t 3.60885 -s 0 -d 9 -p ack -e 40 -c 0 -i 6362 -a 0 -x {10.0 9.0 3176 ------- null} + -t 3.60885 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6373 -a 0 -x {9.0 10.0 3191 ------- null} - -t 3.60885 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6373 -a 0 -x {9.0 10.0 3191 ------- null} h -t 3.60885 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6373 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.60902 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6359 -a 0 -x {9.0 10.0 3184 ------- null} - -t 3.60902 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6359 -a 0 -x {9.0 10.0 3184 ------- null} h -t 3.60902 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6359 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.60925 -s 0 -d 9 -p ack -e 40 -c 0 -i 6366 -a 0 -x {10.0 9.0 3178 ------- null} - -t 3.60925 -s 0 -d 9 -p ack -e 40 -c 0 -i 6366 -a 0 -x {10.0 9.0 3178 ------- null} h -t 3.60925 -s 0 -d 9 -p ack -e 40 -c 0 -i 6366 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.60926 -s 10 -d 7 -p ack -e 40 -c 0 -i 6370 -a 0 -x {10.0 9.0 3180 ------- null} + -t 3.60926 -s 7 -d 0 -p ack -e 40 -c 0 -i 6370 -a 0 -x {10.0 9.0 3180 ------- null} h -t 3.60926 -s 7 -d 8 -p ack -e 40 -c 0 -i 6370 -a 0 -x {10.0 9.0 3180 ------- null} r -t 3.60941 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6355 -a 0 -x {9.0 10.0 3182 ------- null} + -t 3.60941 -s 10 -d 7 -p ack -e 40 -c 0 -i 6374 -a 0 -x {10.0 9.0 3182 ------- null} - -t 3.60941 -s 10 -d 7 -p ack -e 40 -c 0 -i 6374 -a 0 -x {10.0 9.0 3182 ------- null} h -t 3.60941 -s 10 -d 7 -p ack -e 40 -c 0 -i 6374 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.6095 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6369 -a 0 -x {9.0 10.0 3189 ------- null} + -t 3.6095 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6369 -a 0 -x {9.0 10.0 3189 ------- null} h -t 3.6095 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6369 -a 0 -x {9.0 10.0 3189 ------- null} r -t 3.61003 -s 0 -d 9 -p ack -e 40 -c 0 -i 6364 -a 0 -x {10.0 9.0 3177 ------- null} + -t 3.61003 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6375 -a 0 -x {9.0 10.0 3192 ------- null} - -t 3.61003 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6375 -a 0 -x {9.0 10.0 3192 ------- null} h -t 3.61003 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6375 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.61011 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6361 -a 0 -x {9.0 10.0 3185 ------- null} - -t 3.61011 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6361 -a 0 -x {9.0 10.0 3185 ------- null} h -t 3.61011 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6361 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.61035 -s 10 -d 7 -p ack -e 40 -c 0 -i 6372 -a 0 -x {10.0 9.0 3181 ------- null} + -t 3.61035 -s 7 -d 0 -p ack -e 40 -c 0 -i 6372 -a 0 -x {10.0 9.0 3181 ------- null} h -t 3.61035 -s 7 -d 8 -p ack -e 40 -c 0 -i 6372 -a 0 -x {10.0 9.0 3181 ------- null} + -t 3.61038 -s 0 -d 9 -p ack -e 40 -c 0 -i 6368 -a 0 -x {10.0 9.0 3179 ------- null} - -t 3.61038 -s 0 -d 9 -p ack -e 40 -c 0 -i 6368 -a 0 -x {10.0 9.0 3179 ------- null} h -t 3.61038 -s 0 -d 9 -p ack -e 40 -c 0 -i 6368 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.6105 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6357 -a 0 -x {9.0 10.0 3183 ------- null} + -t 3.6105 -s 10 -d 7 -p ack -e 40 -c 0 -i 6376 -a 0 -x {10.0 9.0 3183 ------- null} - -t 3.6105 -s 10 -d 7 -p ack -e 40 -c 0 -i 6376 -a 0 -x {10.0 9.0 3183 ------- null} h -t 3.6105 -s 10 -d 7 -p ack -e 40 -c 0 -i 6376 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.61058 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6371 -a 0 -x {9.0 10.0 3190 ------- null} + -t 3.61058 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6371 -a 0 -x {9.0 10.0 3190 ------- null} h -t 3.61058 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6371 -a 0 -x {9.0 10.0 3190 ------- null} r -t 3.61128 -s 0 -d 9 -p ack -e 40 -c 0 -i 6366 -a 0 -x {10.0 9.0 3178 ------- null} + -t 3.61128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6377 -a 0 -x {9.0 10.0 3193 ------- null} - -t 3.61128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6377 -a 0 -x {9.0 10.0 3193 ------- null} h -t 3.61128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6377 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.61142 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6363 -a 0 -x {9.0 10.0 3186 ------- null} - -t 3.61142 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6363 -a 0 -x {9.0 10.0 3186 ------- null} h -t 3.61142 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6363 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.61144 -s 10 -d 7 -p ack -e 40 -c 0 -i 6374 -a 0 -x {10.0 9.0 3182 ------- null} + -t 3.61144 -s 7 -d 0 -p ack -e 40 -c 0 -i 6374 -a 0 -x {10.0 9.0 3182 ------- null} h -t 3.61144 -s 7 -d 8 -p ack -e 40 -c 0 -i 6374 -a 0 -x {10.0 9.0 3182 ------- null} + -t 3.61155 -s 0 -d 9 -p ack -e 40 -c 0 -i 6370 -a 0 -x {10.0 9.0 3180 ------- null} - -t 3.61155 -s 0 -d 9 -p ack -e 40 -c 0 -i 6370 -a 0 -x {10.0 9.0 3180 ------- null} h -t 3.61155 -s 0 -d 9 -p ack -e 40 -c 0 -i 6370 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.61165 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6373 -a 0 -x {9.0 10.0 3191 ------- null} + -t 3.61165 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6373 -a 0 -x {9.0 10.0 3191 ------- null} h -t 3.61165 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6373 -a 0 -x {9.0 10.0 3191 ------- null} r -t 3.61182 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6359 -a 0 -x {9.0 10.0 3184 ------- null} + -t 3.61182 -s 10 -d 7 -p ack -e 40 -c 0 -i 6378 -a 0 -x {10.0 9.0 3184 ------- null} - -t 3.61182 -s 10 -d 7 -p ack -e 40 -c 0 -i 6378 -a 0 -x {10.0 9.0 3184 ------- null} h -t 3.61182 -s 10 -d 7 -p ack -e 40 -c 0 -i 6378 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.61242 -s 0 -d 9 -p ack -e 40 -c 0 -i 6368 -a 0 -x {10.0 9.0 3179 ------- null} + -t 3.61242 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6379 -a 0 -x {9.0 10.0 3194 ------- null} - -t 3.61242 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6379 -a 0 -x {9.0 10.0 3194 ------- null} h -t 3.61242 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6379 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.61251 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6365 -a 0 -x {9.0 10.0 3187 ------- null} - -t 3.61251 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6365 -a 0 -x {9.0 10.0 3187 ------- null} h -t 3.61251 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6365 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.61253 -s 10 -d 7 -p ack -e 40 -c 0 -i 6376 -a 0 -x {10.0 9.0 3183 ------- null} + -t 3.61253 -s 7 -d 0 -p ack -e 40 -c 0 -i 6376 -a 0 -x {10.0 9.0 3183 ------- null} h -t 3.61253 -s 7 -d 8 -p ack -e 40 -c 0 -i 6376 -a 0 -x {10.0 9.0 3183 ------- null} + -t 3.61258 -s 0 -d 9 -p ack -e 40 -c 0 -i 6372 -a 0 -x {10.0 9.0 3181 ------- null} - -t 3.61258 -s 0 -d 9 -p ack -e 40 -c 0 -i 6372 -a 0 -x {10.0 9.0 3181 ------- null} h -t 3.61258 -s 0 -d 9 -p ack -e 40 -c 0 -i 6372 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.61283 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6375 -a 0 -x {9.0 10.0 3192 ------- null} + -t 3.61283 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6375 -a 0 -x {9.0 10.0 3192 ------- null} h -t 3.61283 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6375 -a 0 -x {9.0 10.0 3192 ------- null} r -t 3.61291 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6361 -a 0 -x {9.0 10.0 3185 ------- null} + -t 3.61291 -s 10 -d 7 -p ack -e 40 -c 0 -i 6380 -a 0 -x {10.0 9.0 3185 ------- null} - -t 3.61291 -s 10 -d 7 -p ack -e 40 -c 0 -i 6380 -a 0 -x {10.0 9.0 3185 ------- null} h -t 3.61291 -s 10 -d 7 -p ack -e 40 -c 0 -i 6380 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.61358 -s 0 -d 9 -p ack -e 40 -c 0 -i 6370 -a 0 -x {10.0 9.0 3180 ------- null} + -t 3.61358 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6381 -a 0 -x {9.0 10.0 3195 ------- null} - -t 3.61358 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6381 -a 0 -x {9.0 10.0 3195 ------- null} h -t 3.61358 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6381 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.6136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6367 -a 0 -x {9.0 10.0 3188 ------- null} - -t 3.6136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6367 -a 0 -x {9.0 10.0 3188 ------- null} h -t 3.6136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6367 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.61386 -s 10 -d 7 -p ack -e 40 -c 0 -i 6378 -a 0 -x {10.0 9.0 3184 ------- null} + -t 3.61386 -s 7 -d 0 -p ack -e 40 -c 0 -i 6378 -a 0 -x {10.0 9.0 3184 ------- null} h -t 3.61386 -s 7 -d 8 -p ack -e 40 -c 0 -i 6378 -a 0 -x {10.0 9.0 3184 ------- null} + -t 3.6139 -s 0 -d 9 -p ack -e 40 -c 0 -i 6374 -a 0 -x {10.0 9.0 3182 ------- null} - -t 3.6139 -s 0 -d 9 -p ack -e 40 -c 0 -i 6374 -a 0 -x {10.0 9.0 3182 ------- null} h -t 3.6139 -s 0 -d 9 -p ack -e 40 -c 0 -i 6374 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.61408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6377 -a 0 -x {9.0 10.0 3193 ------- null} + -t 3.61408 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6377 -a 0 -x {9.0 10.0 3193 ------- null} h -t 3.61408 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6377 -a 0 -x {9.0 10.0 3193 ------- null} r -t 3.61422 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6363 -a 0 -x {9.0 10.0 3186 ------- null} + -t 3.61422 -s 10 -d 7 -p ack -e 40 -c 0 -i 6382 -a 0 -x {10.0 9.0 3186 ------- null} - -t 3.61422 -s 10 -d 7 -p ack -e 40 -c 0 -i 6382 -a 0 -x {10.0 9.0 3186 ------- null} h -t 3.61422 -s 10 -d 7 -p ack -e 40 -c 0 -i 6382 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.61461 -s 0 -d 9 -p ack -e 40 -c 0 -i 6372 -a 0 -x {10.0 9.0 3181 ------- null} + -t 3.61461 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6383 -a 0 -x {9.0 10.0 3196 ------- null} - -t 3.61461 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6383 -a 0 -x {9.0 10.0 3196 ------- null} h -t 3.61461 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6383 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.61474 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6369 -a 0 -x {9.0 10.0 3189 ------- null} - -t 3.61474 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6369 -a 0 -x {9.0 10.0 3189 ------- null} h -t 3.61474 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6369 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.61486 -s 0 -d 9 -p ack -e 40 -c 0 -i 6376 -a 0 -x {10.0 9.0 3183 ------- null} - -t 3.61486 -s 0 -d 9 -p ack -e 40 -c 0 -i 6376 -a 0 -x {10.0 9.0 3183 ------- null} h -t 3.61486 -s 0 -d 9 -p ack -e 40 -c 0 -i 6376 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.61494 -s 10 -d 7 -p ack -e 40 -c 0 -i 6380 -a 0 -x {10.0 9.0 3185 ------- null} + -t 3.61494 -s 7 -d 0 -p ack -e 40 -c 0 -i 6380 -a 0 -x {10.0 9.0 3185 ------- null} h -t 3.61494 -s 7 -d 8 -p ack -e 40 -c 0 -i 6380 -a 0 -x {10.0 9.0 3185 ------- null} r -t 3.61522 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6379 -a 0 -x {9.0 10.0 3194 ------- null} + -t 3.61522 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6379 -a 0 -x {9.0 10.0 3194 ------- null} h -t 3.61522 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6379 -a 0 -x {9.0 10.0 3194 ------- null} r -t 3.61531 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6365 -a 0 -x {9.0 10.0 3187 ------- null} + -t 3.61531 -s 10 -d 7 -p ack -e 40 -c 0 -i 6384 -a 0 -x {10.0 9.0 3187 ------- null} - -t 3.61531 -s 10 -d 7 -p ack -e 40 -c 0 -i 6384 -a 0 -x {10.0 9.0 3187 ------- null} h -t 3.61531 -s 10 -d 7 -p ack -e 40 -c 0 -i 6384 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.61582 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6371 -a 0 -x {9.0 10.0 3190 ------- null} - -t 3.61582 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6371 -a 0 -x {9.0 10.0 3190 ------- null} h -t 3.61582 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6371 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.61594 -s 0 -d 9 -p ack -e 40 -c 0 -i 6374 -a 0 -x {10.0 9.0 3182 ------- null} + -t 3.61594 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6385 -a 0 -x {9.0 10.0 3197 ------- null} - -t 3.61594 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6385 -a 0 -x {9.0 10.0 3197 ------- null} h -t 3.61594 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6385 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.61597 -s 0 -d 9 -p ack -e 40 -c 0 -i 6378 -a 0 -x {10.0 9.0 3184 ------- null} - -t 3.61597 -s 0 -d 9 -p ack -e 40 -c 0 -i 6378 -a 0 -x {10.0 9.0 3184 ------- null} h -t 3.61597 -s 0 -d 9 -p ack -e 40 -c 0 -i 6378 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.61626 -s 10 -d 7 -p ack -e 40 -c 0 -i 6382 -a 0 -x {10.0 9.0 3186 ------- null} + -t 3.61626 -s 7 -d 0 -p ack -e 40 -c 0 -i 6382 -a 0 -x {10.0 9.0 3186 ------- null} h -t 3.61626 -s 7 -d 8 -p ack -e 40 -c 0 -i 6382 -a 0 -x {10.0 9.0 3186 ------- null} r -t 3.61638 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6381 -a 0 -x {9.0 10.0 3195 ------- null} + -t 3.61638 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6381 -a 0 -x {9.0 10.0 3195 ------- null} h -t 3.61638 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6381 -a 0 -x {9.0 10.0 3195 ------- null} r -t 3.6164 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6367 -a 0 -x {9.0 10.0 3188 ------- null} + -t 3.6164 -s 10 -d 7 -p ack -e 40 -c 0 -i 6386 -a 0 -x {10.0 9.0 3188 ------- null} - -t 3.6164 -s 10 -d 7 -p ack -e 40 -c 0 -i 6386 -a 0 -x {10.0 9.0 3188 ------- null} h -t 3.6164 -s 10 -d 7 -p ack -e 40 -c 0 -i 6386 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.6169 -s 0 -d 9 -p ack -e 40 -c 0 -i 6376 -a 0 -x {10.0 9.0 3183 ------- null} + -t 3.6169 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6387 -a 0 -x {9.0 10.0 3198 ------- null} - -t 3.6169 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6387 -a 0 -x {9.0 10.0 3198 ------- null} h -t 3.6169 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6387 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.61691 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6373 -a 0 -x {9.0 10.0 3191 ------- null} - -t 3.61691 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6373 -a 0 -x {9.0 10.0 3191 ------- null} h -t 3.61691 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6373 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.61698 -s 0 -d 9 -p ack -e 40 -c 0 -i 6380 -a 0 -x {10.0 9.0 3185 ------- null} - -t 3.61698 -s 0 -d 9 -p ack -e 40 -c 0 -i 6380 -a 0 -x {10.0 9.0 3185 ------- null} h -t 3.61698 -s 0 -d 9 -p ack -e 40 -c 0 -i 6380 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.61734 -s 10 -d 7 -p ack -e 40 -c 0 -i 6384 -a 0 -x {10.0 9.0 3187 ------- null} + -t 3.61734 -s 7 -d 0 -p ack -e 40 -c 0 -i 6384 -a 0 -x {10.0 9.0 3187 ------- null} h -t 3.61734 -s 7 -d 8 -p ack -e 40 -c 0 -i 6384 -a 0 -x {10.0 9.0 3187 ------- null} r -t 3.61741 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6383 -a 0 -x {9.0 10.0 3196 ------- null} + -t 3.61741 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6383 -a 0 -x {9.0 10.0 3196 ------- null} h -t 3.61741 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6383 -a 0 -x {9.0 10.0 3196 ------- null} r -t 3.61754 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6369 -a 0 -x {9.0 10.0 3189 ------- null} + -t 3.61754 -s 10 -d 7 -p ack -e 40 -c 0 -i 6388 -a 0 -x {10.0 9.0 3189 ------- null} - -t 3.61754 -s 10 -d 7 -p ack -e 40 -c 0 -i 6388 -a 0 -x {10.0 9.0 3189 ------- null} h -t 3.61754 -s 10 -d 7 -p ack -e 40 -c 0 -i 6388 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.618 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6375 -a 0 -x {9.0 10.0 3192 ------- null} - -t 3.618 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6375 -a 0 -x {9.0 10.0 3192 ------- null} h -t 3.618 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6375 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.618 -s 0 -d 9 -p ack -e 40 -c 0 -i 6378 -a 0 -x {10.0 9.0 3184 ------- null} + -t 3.618 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6389 -a 0 -x {9.0 10.0 3199 ------- null} - -t 3.618 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6389 -a 0 -x {9.0 10.0 3199 ------- null} h -t 3.618 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6389 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.61821 -s 0 -d 9 -p ack -e 40 -c 0 -i 6382 -a 0 -x {10.0 9.0 3186 ------- null} - -t 3.61821 -s 0 -d 9 -p ack -e 40 -c 0 -i 6382 -a 0 -x {10.0 9.0 3186 ------- null} h -t 3.61821 -s 0 -d 9 -p ack -e 40 -c 0 -i 6382 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.61843 -s 10 -d 7 -p ack -e 40 -c 0 -i 6386 -a 0 -x {10.0 9.0 3188 ------- null} + -t 3.61843 -s 7 -d 0 -p ack -e 40 -c 0 -i 6386 -a 0 -x {10.0 9.0 3188 ------- null} h -t 3.61843 -s 7 -d 8 -p ack -e 40 -c 0 -i 6386 -a 0 -x {10.0 9.0 3188 ------- null} r -t 3.61862 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6371 -a 0 -x {9.0 10.0 3190 ------- null} + -t 3.61862 -s 10 -d 7 -p ack -e 40 -c 0 -i 6390 -a 0 -x {10.0 9.0 3190 ------- null} - -t 3.61862 -s 10 -d 7 -p ack -e 40 -c 0 -i 6390 -a 0 -x {10.0 9.0 3190 ------- null} h -t 3.61862 -s 10 -d 7 -p ack -e 40 -c 0 -i 6390 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.61874 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6385 -a 0 -x {9.0 10.0 3197 ------- null} + -t 3.61874 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6385 -a 0 -x {9.0 10.0 3197 ------- null} h -t 3.61874 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6385 -a 0 -x {9.0 10.0 3197 ------- null} r -t 3.61901 -s 0 -d 9 -p ack -e 40 -c 0 -i 6380 -a 0 -x {10.0 9.0 3185 ------- null} + -t 3.61901 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6391 -a 0 -x {9.0 10.0 3200 ------- null} - -t 3.61901 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6391 -a 0 -x {9.0 10.0 3200 ------- null} h -t 3.61901 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6391 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.61909 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6377 -a 0 -x {9.0 10.0 3193 ------- null} - -t 3.61909 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6377 -a 0 -x {9.0 10.0 3193 ------- null} h -t 3.61909 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6377 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.61915 -s 0 -d 9 -p ack -e 40 -c 0 -i 6384 -a 0 -x {10.0 9.0 3187 ------- null} - -t 3.61915 -s 0 -d 9 -p ack -e 40 -c 0 -i 6384 -a 0 -x {10.0 9.0 3187 ------- null} h -t 3.61915 -s 0 -d 9 -p ack -e 40 -c 0 -i 6384 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.61957 -s 10 -d 7 -p ack -e 40 -c 0 -i 6388 -a 0 -x {10.0 9.0 3189 ------- null} + -t 3.61957 -s 7 -d 0 -p ack -e 40 -c 0 -i 6388 -a 0 -x {10.0 9.0 3189 ------- null} h -t 3.61957 -s 7 -d 8 -p ack -e 40 -c 0 -i 6388 -a 0 -x {10.0 9.0 3189 ------- null} r -t 3.6197 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6387 -a 0 -x {9.0 10.0 3198 ------- null} + -t 3.6197 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6387 -a 0 -x {9.0 10.0 3198 ------- null} h -t 3.6197 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6387 -a 0 -x {9.0 10.0 3198 ------- null} r -t 3.61971 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6373 -a 0 -x {9.0 10.0 3191 ------- null} + -t 3.61971 -s 10 -d 7 -p ack -e 40 -c 0 -i 6392 -a 0 -x {10.0 9.0 3191 ------- null} - -t 3.61971 -s 10 -d 7 -p ack -e 40 -c 0 -i 6392 -a 0 -x {10.0 9.0 3191 ------- null} h -t 3.61971 -s 10 -d 7 -p ack -e 40 -c 0 -i 6392 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.62018 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6379 -a 0 -x {9.0 10.0 3194 ------- null} - -t 3.62018 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6379 -a 0 -x {9.0 10.0 3194 ------- null} h -t 3.62018 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6379 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.62024 -s 0 -d 9 -p ack -e 40 -c 0 -i 6382 -a 0 -x {10.0 9.0 3186 ------- null} + -t 3.62024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6393 -a 0 -x {9.0 10.0 3201 ------- null} - -t 3.62024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6393 -a 0 -x {9.0 10.0 3201 ------- null} h -t 3.62024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6393 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.62043 -s 0 -d 9 -p ack -e 40 -c 0 -i 6386 -a 0 -x {10.0 9.0 3188 ------- null} - -t 3.62043 -s 0 -d 9 -p ack -e 40 -c 0 -i 6386 -a 0 -x {10.0 9.0 3188 ------- null} h -t 3.62043 -s 0 -d 9 -p ack -e 40 -c 0 -i 6386 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.62066 -s 10 -d 7 -p ack -e 40 -c 0 -i 6390 -a 0 -x {10.0 9.0 3190 ------- null} + -t 3.62066 -s 7 -d 0 -p ack -e 40 -c 0 -i 6390 -a 0 -x {10.0 9.0 3190 ------- null} h -t 3.62066 -s 7 -d 8 -p ack -e 40 -c 0 -i 6390 -a 0 -x {10.0 9.0 3190 ------- null} r -t 3.6208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6375 -a 0 -x {9.0 10.0 3192 ------- null} + -t 3.6208 -s 10 -d 7 -p ack -e 40 -c 0 -i 6394 -a 0 -x {10.0 9.0 3192 ------- null} - -t 3.6208 -s 10 -d 7 -p ack -e 40 -c 0 -i 6394 -a 0 -x {10.0 9.0 3192 ------- null} h -t 3.6208 -s 10 -d 7 -p ack -e 40 -c 0 -i 6394 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.6208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6389 -a 0 -x {9.0 10.0 3199 ------- null} + -t 3.6208 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6389 -a 0 -x {9.0 10.0 3199 ------- null} h -t 3.6208 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6389 -a 0 -x {9.0 10.0 3199 ------- null} r -t 3.62118 -s 0 -d 9 -p ack -e 40 -c 0 -i 6384 -a 0 -x {10.0 9.0 3187 ------- null} + -t 3.62118 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6395 -a 0 -x {9.0 10.0 3202 ------- null} - -t 3.62118 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6395 -a 0 -x {9.0 10.0 3202 ------- null} h -t 3.62118 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6395 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.62147 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6381 -a 0 -x {9.0 10.0 3195 ------- null} - -t 3.62147 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6381 -a 0 -x {9.0 10.0 3195 ------- null} h -t 3.62147 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6381 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.62171 -s 0 -d 9 -p ack -e 40 -c 0 -i 6388 -a 0 -x {10.0 9.0 3189 ------- null} - -t 3.62171 -s 0 -d 9 -p ack -e 40 -c 0 -i 6388 -a 0 -x {10.0 9.0 3189 ------- null} h -t 3.62171 -s 0 -d 9 -p ack -e 40 -c 0 -i 6388 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.62174 -s 10 -d 7 -p ack -e 40 -c 0 -i 6392 -a 0 -x {10.0 9.0 3191 ------- null} + -t 3.62174 -s 7 -d 0 -p ack -e 40 -c 0 -i 6392 -a 0 -x {10.0 9.0 3191 ------- null} h -t 3.62174 -s 7 -d 8 -p ack -e 40 -c 0 -i 6392 -a 0 -x {10.0 9.0 3191 ------- null} r -t 3.62181 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6391 -a 0 -x {9.0 10.0 3200 ------- null} + -t 3.62181 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6391 -a 0 -x {9.0 10.0 3200 ------- null} h -t 3.62181 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6391 -a 0 -x {9.0 10.0 3200 ------- null} r -t 3.62189 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6377 -a 0 -x {9.0 10.0 3193 ------- null} + -t 3.62189 -s 10 -d 7 -p ack -e 40 -c 0 -i 6396 -a 0 -x {10.0 9.0 3193 ------- null} - -t 3.62189 -s 10 -d 7 -p ack -e 40 -c 0 -i 6396 -a 0 -x {10.0 9.0 3193 ------- null} h -t 3.62189 -s 10 -d 7 -p ack -e 40 -c 0 -i 6396 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.62246 -s 0 -d 9 -p ack -e 40 -c 0 -i 6386 -a 0 -x {10.0 9.0 3188 ------- null} + -t 3.62246 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6397 -a 0 -x {9.0 10.0 3203 ------- null} - -t 3.62246 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6397 -a 0 -x {9.0 10.0 3203 ------- null} h -t 3.62246 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6397 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.62256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6383 -a 0 -x {9.0 10.0 3196 ------- null} - -t 3.62256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6383 -a 0 -x {9.0 10.0 3196 ------- null} h -t 3.62256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6383 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.62278 -s 0 -d 9 -p ack -e 40 -c 0 -i 6390 -a 0 -x {10.0 9.0 3190 ------- null} - -t 3.62278 -s 0 -d 9 -p ack -e 40 -c 0 -i 6390 -a 0 -x {10.0 9.0 3190 ------- null} h -t 3.62278 -s 0 -d 9 -p ack -e 40 -c 0 -i 6390 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.62283 -s 10 -d 7 -p ack -e 40 -c 0 -i 6394 -a 0 -x {10.0 9.0 3192 ------- null} + -t 3.62283 -s 7 -d 0 -p ack -e 40 -c 0 -i 6394 -a 0 -x {10.0 9.0 3192 ------- null} h -t 3.62283 -s 7 -d 8 -p ack -e 40 -c 0 -i 6394 -a 0 -x {10.0 9.0 3192 ------- null} r -t 3.62298 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6379 -a 0 -x {9.0 10.0 3194 ------- null} + -t 3.62298 -s 10 -d 7 -p ack -e 40 -c 0 -i 6398 -a 0 -x {10.0 9.0 3194 ------- null} - -t 3.62298 -s 10 -d 7 -p ack -e 40 -c 0 -i 6398 -a 0 -x {10.0 9.0 3194 ------- null} h -t 3.62298 -s 10 -d 7 -p ack -e 40 -c 0 -i 6398 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.62304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6393 -a 0 -x {9.0 10.0 3201 ------- null} + -t 3.62304 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6393 -a 0 -x {9.0 10.0 3201 ------- null} h -t 3.62304 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6393 -a 0 -x {9.0 10.0 3201 ------- null} + -t 3.62365 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6385 -a 0 -x {9.0 10.0 3197 ------- null} - -t 3.62365 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6385 -a 0 -x {9.0 10.0 3197 ------- null} h -t 3.62365 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6385 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.62374 -s 0 -d 9 -p ack -e 40 -c 0 -i 6388 -a 0 -x {10.0 9.0 3189 ------- null} + -t 3.62374 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6399 -a 0 -x {9.0 10.0 3204 ------- null} - -t 3.62374 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6399 -a 0 -x {9.0 10.0 3204 ------- null} h -t 3.62374 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6399 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.62392 -s 10 -d 7 -p ack -e 40 -c 0 -i 6396 -a 0 -x {10.0 9.0 3193 ------- null} + -t 3.62392 -s 7 -d 0 -p ack -e 40 -c 0 -i 6396 -a 0 -x {10.0 9.0 3193 ------- null} h -t 3.62392 -s 7 -d 8 -p ack -e 40 -c 0 -i 6396 -a 0 -x {10.0 9.0 3193 ------- null} + -t 3.62394 -s 0 -d 9 -p ack -e 40 -c 0 -i 6392 -a 0 -x {10.0 9.0 3191 ------- null} - -t 3.62394 -s 0 -d 9 -p ack -e 40 -c 0 -i 6392 -a 0 -x {10.0 9.0 3191 ------- null} h -t 3.62394 -s 0 -d 9 -p ack -e 40 -c 0 -i 6392 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.62398 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6395 -a 0 -x {9.0 10.0 3202 ------- null} + -t 3.62398 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6395 -a 0 -x {9.0 10.0 3202 ------- null} h -t 3.62398 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6395 -a 0 -x {9.0 10.0 3202 ------- null} r -t 3.62427 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6381 -a 0 -x {9.0 10.0 3195 ------- null} + -t 3.62427 -s 10 -d 7 -p ack -e 40 -c 0 -i 6400 -a 0 -x {10.0 9.0 3195 ------- null} - -t 3.62427 -s 10 -d 7 -p ack -e 40 -c 0 -i 6400 -a 0 -x {10.0 9.0 3195 ------- null} h -t 3.62427 -s 10 -d 7 -p ack -e 40 -c 0 -i 6400 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.62482 -s 0 -d 9 -p ack -e 40 -c 0 -i 6390 -a 0 -x {10.0 9.0 3190 ------- null} + -t 3.62482 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6401 -a 0 -x {9.0 10.0 3205 ------- null} - -t 3.62482 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6401 -a 0 -x {9.0 10.0 3205 ------- null} h -t 3.62482 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6401 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.62483 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6387 -a 0 -x {9.0 10.0 3198 ------- null} - -t 3.62483 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6387 -a 0 -x {9.0 10.0 3198 ------- null} h -t 3.62483 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6387 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.62496 -s 0 -d 9 -p ack -e 40 -c 0 -i 6394 -a 0 -x {10.0 9.0 3192 ------- null} - -t 3.62496 -s 0 -d 9 -p ack -e 40 -c 0 -i 6394 -a 0 -x {10.0 9.0 3192 ------- null} h -t 3.62496 -s 0 -d 9 -p ack -e 40 -c 0 -i 6394 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.62501 -s 10 -d 7 -p ack -e 40 -c 0 -i 6398 -a 0 -x {10.0 9.0 3194 ------- null} + -t 3.62501 -s 7 -d 0 -p ack -e 40 -c 0 -i 6398 -a 0 -x {10.0 9.0 3194 ------- null} h -t 3.62501 -s 7 -d 8 -p ack -e 40 -c 0 -i 6398 -a 0 -x {10.0 9.0 3194 ------- null} r -t 3.62526 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6397 -a 0 -x {9.0 10.0 3203 ------- null} + -t 3.62526 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6397 -a 0 -x {9.0 10.0 3203 ------- null} h -t 3.62526 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6397 -a 0 -x {9.0 10.0 3203 ------- null} r -t 3.62536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6383 -a 0 -x {9.0 10.0 3196 ------- null} + -t 3.62536 -s 10 -d 7 -p ack -e 40 -c 0 -i 6402 -a 0 -x {10.0 9.0 3196 ------- null} - -t 3.62536 -s 10 -d 7 -p ack -e 40 -c 0 -i 6402 -a 0 -x {10.0 9.0 3196 ------- null} h -t 3.62536 -s 10 -d 7 -p ack -e 40 -c 0 -i 6402 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.62592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6389 -a 0 -x {9.0 10.0 3199 ------- null} - -t 3.62592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6389 -a 0 -x {9.0 10.0 3199 ------- null} h -t 3.62592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6389 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.62597 -s 0 -d 9 -p ack -e 40 -c 0 -i 6392 -a 0 -x {10.0 9.0 3191 ------- null} + -t 3.62597 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6403 -a 0 -x {9.0 10.0 3206 ------- null} - -t 3.62597 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6403 -a 0 -x {9.0 10.0 3206 ------- null} h -t 3.62597 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6403 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.62611 -s 0 -d 9 -p ack -e 40 -c 0 -i 6396 -a 0 -x {10.0 9.0 3193 ------- null} - -t 3.62611 -s 0 -d 9 -p ack -e 40 -c 0 -i 6396 -a 0 -x {10.0 9.0 3193 ------- null} h -t 3.62611 -s 0 -d 9 -p ack -e 40 -c 0 -i 6396 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.6263 -s 10 -d 7 -p ack -e 40 -c 0 -i 6400 -a 0 -x {10.0 9.0 3195 ------- null} + -t 3.6263 -s 7 -d 0 -p ack -e 40 -c 0 -i 6400 -a 0 -x {10.0 9.0 3195 ------- null} h -t 3.6263 -s 7 -d 8 -p ack -e 40 -c 0 -i 6400 -a 0 -x {10.0 9.0 3195 ------- null} r -t 3.62645 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6385 -a 0 -x {9.0 10.0 3197 ------- null} + -t 3.62645 -s 10 -d 7 -p ack -e 40 -c 0 -i 6404 -a 0 -x {10.0 9.0 3197 ------- null} - -t 3.62645 -s 10 -d 7 -p ack -e 40 -c 0 -i 6404 -a 0 -x {10.0 9.0 3197 ------- null} h -t 3.62645 -s 10 -d 7 -p ack -e 40 -c 0 -i 6404 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.62654 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6399 -a 0 -x {9.0 10.0 3204 ------- null} + -t 3.62654 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6399 -a 0 -x {9.0 10.0 3204 ------- null} h -t 3.62654 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6399 -a 0 -x {9.0 10.0 3204 ------- null} r -t 3.62699 -s 0 -d 9 -p ack -e 40 -c 0 -i 6394 -a 0 -x {10.0 9.0 3192 ------- null} + -t 3.62699 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6405 -a 0 -x {9.0 10.0 3207 ------- null} - -t 3.62699 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6405 -a 0 -x {9.0 10.0 3207 ------- null} h -t 3.62699 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6405 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.62701 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6391 -a 0 -x {9.0 10.0 3200 ------- null} - -t 3.62701 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6391 -a 0 -x {9.0 10.0 3200 ------- null} h -t 3.62701 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6391 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.62714 -s 0 -d 9 -p ack -e 40 -c 0 -i 6398 -a 0 -x {10.0 9.0 3194 ------- null} - -t 3.62714 -s 0 -d 9 -p ack -e 40 -c 0 -i 6398 -a 0 -x {10.0 9.0 3194 ------- null} h -t 3.62714 -s 0 -d 9 -p ack -e 40 -c 0 -i 6398 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.62739 -s 10 -d 7 -p ack -e 40 -c 0 -i 6402 -a 0 -x {10.0 9.0 3196 ------- null} + -t 3.62739 -s 7 -d 0 -p ack -e 40 -c 0 -i 6402 -a 0 -x {10.0 9.0 3196 ------- null} h -t 3.62739 -s 7 -d 8 -p ack -e 40 -c 0 -i 6402 -a 0 -x {10.0 9.0 3196 ------- null} r -t 3.62762 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6401 -a 0 -x {9.0 10.0 3205 ------- null} + -t 3.62762 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6401 -a 0 -x {9.0 10.0 3205 ------- null} h -t 3.62762 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6401 -a 0 -x {9.0 10.0 3205 ------- null} r -t 3.62763 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6387 -a 0 -x {9.0 10.0 3198 ------- null} + -t 3.62763 -s 10 -d 7 -p ack -e 40 -c 0 -i 6406 -a 0 -x {10.0 9.0 3198 ------- null} - -t 3.62763 -s 10 -d 7 -p ack -e 40 -c 0 -i 6406 -a 0 -x {10.0 9.0 3198 ------- null} h -t 3.62763 -s 10 -d 7 -p ack -e 40 -c 0 -i 6406 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.6281 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6393 -a 0 -x {9.0 10.0 3201 ------- null} - -t 3.6281 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6393 -a 0 -x {9.0 10.0 3201 ------- null} h -t 3.6281 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6393 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.62814 -s 0 -d 9 -p ack -e 40 -c 0 -i 6396 -a 0 -x {10.0 9.0 3193 ------- null} + -t 3.62814 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6407 -a 0 -x {9.0 10.0 3208 ------- null} - -t 3.62814 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6407 -a 0 -x {9.0 10.0 3208 ------- null} h -t 3.62814 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6407 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.62818 -s 0 -d 9 -p ack -e 40 -c 0 -i 6400 -a 0 -x {10.0 9.0 3195 ------- null} - -t 3.62818 -s 0 -d 9 -p ack -e 40 -c 0 -i 6400 -a 0 -x {10.0 9.0 3195 ------- null} h -t 3.62818 -s 0 -d 9 -p ack -e 40 -c 0 -i 6400 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.62848 -s 10 -d 7 -p ack -e 40 -c 0 -i 6404 -a 0 -x {10.0 9.0 3197 ------- null} + -t 3.62848 -s 7 -d 0 -p ack -e 40 -c 0 -i 6404 -a 0 -x {10.0 9.0 3197 ------- null} h -t 3.62848 -s 7 -d 8 -p ack -e 40 -c 0 -i 6404 -a 0 -x {10.0 9.0 3197 ------- null} r -t 3.62872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6389 -a 0 -x {9.0 10.0 3199 ------- null} + -t 3.62872 -s 10 -d 7 -p ack -e 40 -c 0 -i 6408 -a 0 -x {10.0 9.0 3199 ------- null} - -t 3.62872 -s 10 -d 7 -p ack -e 40 -c 0 -i 6408 -a 0 -x {10.0 9.0 3199 ------- null} h -t 3.62872 -s 10 -d 7 -p ack -e 40 -c 0 -i 6408 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.62877 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6403 -a 0 -x {9.0 10.0 3206 ------- null} + -t 3.62877 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6403 -a 0 -x {9.0 10.0 3206 ------- null} h -t 3.62877 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6403 -a 0 -x {9.0 10.0 3206 ------- null} r -t 3.62917 -s 0 -d 9 -p ack -e 40 -c 0 -i 6398 -a 0 -x {10.0 9.0 3194 ------- null} + -t 3.62917 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6409 -a 0 -x {9.0 10.0 3209 ------- null} - -t 3.62917 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6409 -a 0 -x {9.0 10.0 3209 ------- null} h -t 3.62917 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6409 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.62918 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6395 -a 0 -x {9.0 10.0 3202 ------- null} - -t 3.62918 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6395 -a 0 -x {9.0 10.0 3202 ------- null} h -t 3.62918 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6395 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.6293 -s 0 -d 9 -p ack -e 40 -c 0 -i 6402 -a 0 -x {10.0 9.0 3196 ------- null} - -t 3.6293 -s 0 -d 9 -p ack -e 40 -c 0 -i 6402 -a 0 -x {10.0 9.0 3196 ------- null} h -t 3.6293 -s 0 -d 9 -p ack -e 40 -c 0 -i 6402 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.62966 -s 10 -d 7 -p ack -e 40 -c 0 -i 6406 -a 0 -x {10.0 9.0 3198 ------- null} + -t 3.62966 -s 7 -d 0 -p ack -e 40 -c 0 -i 6406 -a 0 -x {10.0 9.0 3198 ------- null} h -t 3.62966 -s 7 -d 8 -p ack -e 40 -c 0 -i 6406 -a 0 -x {10.0 9.0 3198 ------- null} r -t 3.62979 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6405 -a 0 -x {9.0 10.0 3207 ------- null} + -t 3.62979 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6405 -a 0 -x {9.0 10.0 3207 ------- null} h -t 3.62979 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6405 -a 0 -x {9.0 10.0 3207 ------- null} r -t 3.62981 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6391 -a 0 -x {9.0 10.0 3200 ------- null} + -t 3.62981 -s 10 -d 7 -p ack -e 40 -c 0 -i 6410 -a 0 -x {10.0 9.0 3200 ------- null} - -t 3.62981 -s 10 -d 7 -p ack -e 40 -c 0 -i 6410 -a 0 -x {10.0 9.0 3200 ------- null} h -t 3.62981 -s 10 -d 7 -p ack -e 40 -c 0 -i 6410 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.63021 -s 0 -d 9 -p ack -e 40 -c 0 -i 6400 -a 0 -x {10.0 9.0 3195 ------- null} + -t 3.63021 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6411 -a 0 -x {9.0 10.0 3210 ------- null} - -t 3.63021 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6411 -a 0 -x {9.0 10.0 3210 ------- null} h -t 3.63021 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6411 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.63027 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6397 -a 0 -x {9.0 10.0 3203 ------- null} - -t 3.63027 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6397 -a 0 -x {9.0 10.0 3203 ------- null} h -t 3.63027 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6397 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.63048 -s 0 -d 9 -p ack -e 40 -c 0 -i 6404 -a 0 -x {10.0 9.0 3197 ------- null} - -t 3.63048 -s 0 -d 9 -p ack -e 40 -c 0 -i 6404 -a 0 -x {10.0 9.0 3197 ------- null} h -t 3.63048 -s 0 -d 9 -p ack -e 40 -c 0 -i 6404 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.63075 -s 10 -d 7 -p ack -e 40 -c 0 -i 6408 -a 0 -x {10.0 9.0 3199 ------- null} + -t 3.63075 -s 7 -d 0 -p ack -e 40 -c 0 -i 6408 -a 0 -x {10.0 9.0 3199 ------- null} h -t 3.63075 -s 7 -d 8 -p ack -e 40 -c 0 -i 6408 -a 0 -x {10.0 9.0 3199 ------- null} r -t 3.6309 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6393 -a 0 -x {9.0 10.0 3201 ------- null} + -t 3.6309 -s 10 -d 7 -p ack -e 40 -c 0 -i 6412 -a 0 -x {10.0 9.0 3201 ------- null} - -t 3.6309 -s 10 -d 7 -p ack -e 40 -c 0 -i 6412 -a 0 -x {10.0 9.0 3201 ------- null} h -t 3.6309 -s 10 -d 7 -p ack -e 40 -c 0 -i 6412 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.63094 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6407 -a 0 -x {9.0 10.0 3208 ------- null} + -t 3.63094 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6407 -a 0 -x {9.0 10.0 3208 ------- null} h -t 3.63094 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6407 -a 0 -x {9.0 10.0 3208 ------- null} r -t 3.63133 -s 0 -d 9 -p ack -e 40 -c 0 -i 6402 -a 0 -x {10.0 9.0 3196 ------- null} + -t 3.63133 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6413 -a 0 -x {9.0 10.0 3211 ------- null} - -t 3.63133 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6413 -a 0 -x {9.0 10.0 3211 ------- null} h -t 3.63133 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6413 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.63136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6399 -a 0 -x {9.0 10.0 3204 ------- null} - -t 3.63136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6399 -a 0 -x {9.0 10.0 3204 ------- null} h -t 3.63136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6399 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.63155 -s 0 -d 9 -p ack -e 40 -c 0 -i 6406 -a 0 -x {10.0 9.0 3198 ------- null} - -t 3.63155 -s 0 -d 9 -p ack -e 40 -c 0 -i 6406 -a 0 -x {10.0 9.0 3198 ------- null} h -t 3.63155 -s 0 -d 9 -p ack -e 40 -c 0 -i 6406 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.63184 -s 10 -d 7 -p ack -e 40 -c 0 -i 6410 -a 0 -x {10.0 9.0 3200 ------- null} + -t 3.63184 -s 7 -d 0 -p ack -e 40 -c 0 -i 6410 -a 0 -x {10.0 9.0 3200 ------- null} h -t 3.63184 -s 7 -d 8 -p ack -e 40 -c 0 -i 6410 -a 0 -x {10.0 9.0 3200 ------- null} r -t 3.63197 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6409 -a 0 -x {9.0 10.0 3209 ------- null} + -t 3.63197 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6409 -a 0 -x {9.0 10.0 3209 ------- null} h -t 3.63197 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6409 -a 0 -x {9.0 10.0 3209 ------- null} r -t 3.63198 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6395 -a 0 -x {9.0 10.0 3202 ------- null} + -t 3.63198 -s 10 -d 7 -p ack -e 40 -c 0 -i 6414 -a 0 -x {10.0 9.0 3202 ------- null} - -t 3.63198 -s 10 -d 7 -p ack -e 40 -c 0 -i 6414 -a 0 -x {10.0 9.0 3202 ------- null} h -t 3.63198 -s 10 -d 7 -p ack -e 40 -c 0 -i 6414 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.63245 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6401 -a 0 -x {9.0 10.0 3205 ------- null} - -t 3.63245 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6401 -a 0 -x {9.0 10.0 3205 ------- null} h -t 3.63245 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6401 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.63251 -s 0 -d 9 -p ack -e 40 -c 0 -i 6404 -a 0 -x {10.0 9.0 3197 ------- null} + -t 3.63251 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6415 -a 0 -x {9.0 10.0 3212 ------- null} - -t 3.63251 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6415 -a 0 -x {9.0 10.0 3212 ------- null} h -t 3.63251 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6415 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.63267 -s 0 -d 9 -p ack -e 40 -c 0 -i 6408 -a 0 -x {10.0 9.0 3199 ------- null} - -t 3.63267 -s 0 -d 9 -p ack -e 40 -c 0 -i 6408 -a 0 -x {10.0 9.0 3199 ------- null} h -t 3.63267 -s 0 -d 9 -p ack -e 40 -c 0 -i 6408 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.63293 -s 10 -d 7 -p ack -e 40 -c 0 -i 6412 -a 0 -x {10.0 9.0 3201 ------- null} + -t 3.63293 -s 7 -d 0 -p ack -e 40 -c 0 -i 6412 -a 0 -x {10.0 9.0 3201 ------- null} h -t 3.63293 -s 7 -d 8 -p ack -e 40 -c 0 -i 6412 -a 0 -x {10.0 9.0 3201 ------- null} r -t 3.63301 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6411 -a 0 -x {9.0 10.0 3210 ------- null} + -t 3.63301 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6411 -a 0 -x {9.0 10.0 3210 ------- null} h -t 3.63301 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6411 -a 0 -x {9.0 10.0 3210 ------- null} r -t 3.63307 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6397 -a 0 -x {9.0 10.0 3203 ------- null} + -t 3.63307 -s 10 -d 7 -p ack -e 40 -c 0 -i 6416 -a 0 -x {10.0 9.0 3203 ------- null} - -t 3.63307 -s 10 -d 7 -p ack -e 40 -c 0 -i 6416 -a 0 -x {10.0 9.0 3203 ------- null} h -t 3.63307 -s 10 -d 7 -p ack -e 40 -c 0 -i 6416 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.63354 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6403 -a 0 -x {9.0 10.0 3206 ------- null} - -t 3.63354 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6403 -a 0 -x {9.0 10.0 3206 ------- null} h -t 3.63354 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6403 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.63358 -s 0 -d 9 -p ack -e 40 -c 0 -i 6406 -a 0 -x {10.0 9.0 3198 ------- null} + -t 3.63358 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6417 -a 0 -x {9.0 10.0 3213 ------- null} - -t 3.63358 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6417 -a 0 -x {9.0 10.0 3213 ------- null} h -t 3.63358 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6417 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.63365 -s 0 -d 9 -p ack -e 40 -c 0 -i 6410 -a 0 -x {10.0 9.0 3200 ------- null} - -t 3.63365 -s 0 -d 9 -p ack -e 40 -c 0 -i 6410 -a 0 -x {10.0 9.0 3200 ------- null} h -t 3.63365 -s 0 -d 9 -p ack -e 40 -c 0 -i 6410 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.63402 -s 10 -d 7 -p ack -e 40 -c 0 -i 6414 -a 0 -x {10.0 9.0 3202 ------- null} + -t 3.63402 -s 7 -d 0 -p ack -e 40 -c 0 -i 6414 -a 0 -x {10.0 9.0 3202 ------- null} h -t 3.63402 -s 7 -d 8 -p ack -e 40 -c 0 -i 6414 -a 0 -x {10.0 9.0 3202 ------- null} r -t 3.63413 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6413 -a 0 -x {9.0 10.0 3211 ------- null} + -t 3.63413 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6413 -a 0 -x {9.0 10.0 3211 ------- null} h -t 3.63413 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6413 -a 0 -x {9.0 10.0 3211 ------- null} r -t 3.63416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6399 -a 0 -x {9.0 10.0 3204 ------- null} + -t 3.63416 -s 10 -d 7 -p ack -e 40 -c 0 -i 6418 -a 0 -x {10.0 9.0 3204 ------- null} - -t 3.63416 -s 10 -d 7 -p ack -e 40 -c 0 -i 6418 -a 0 -x {10.0 9.0 3204 ------- null} h -t 3.63416 -s 10 -d 7 -p ack -e 40 -c 0 -i 6418 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.63462 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6405 -a 0 -x {9.0 10.0 3207 ------- null} - -t 3.63462 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6405 -a 0 -x {9.0 10.0 3207 ------- null} h -t 3.63462 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6405 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.6347 -s 0 -d 9 -p ack -e 40 -c 0 -i 6408 -a 0 -x {10.0 9.0 3199 ------- null} + -t 3.6347 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6419 -a 0 -x {9.0 10.0 3214 ------- null} - -t 3.6347 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6419 -a 0 -x {9.0 10.0 3214 ------- null} h -t 3.6347 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6419 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.63475 -s 0 -d 9 -p ack -e 40 -c 0 -i 6412 -a 0 -x {10.0 9.0 3201 ------- null} - -t 3.63475 -s 0 -d 9 -p ack -e 40 -c 0 -i 6412 -a 0 -x {10.0 9.0 3201 ------- null} h -t 3.63475 -s 0 -d 9 -p ack -e 40 -c 0 -i 6412 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.6351 -s 10 -d 7 -p ack -e 40 -c 0 -i 6416 -a 0 -x {10.0 9.0 3203 ------- null} + -t 3.6351 -s 7 -d 0 -p ack -e 40 -c 0 -i 6416 -a 0 -x {10.0 9.0 3203 ------- null} h -t 3.6351 -s 7 -d 8 -p ack -e 40 -c 0 -i 6416 -a 0 -x {10.0 9.0 3203 ------- null} r -t 3.63525 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6401 -a 0 -x {9.0 10.0 3205 ------- null} + -t 3.63525 -s 10 -d 7 -p ack -e 40 -c 0 -i 6420 -a 0 -x {10.0 9.0 3205 ------- null} - -t 3.63525 -s 10 -d 7 -p ack -e 40 -c 0 -i 6420 -a 0 -x {10.0 9.0 3205 ------- null} h -t 3.63525 -s 10 -d 7 -p ack -e 40 -c 0 -i 6420 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.63531 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6415 -a 0 -x {9.0 10.0 3212 ------- null} + -t 3.63531 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6415 -a 0 -x {9.0 10.0 3212 ------- null} h -t 3.63531 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6415 -a 0 -x {9.0 10.0 3212 ------- null} r -t 3.63568 -s 0 -d 9 -p ack -e 40 -c 0 -i 6410 -a 0 -x {10.0 9.0 3200 ------- null} + -t 3.63568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6421 -a 0 -x {9.0 10.0 3215 ------- null} - -t 3.63568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6421 -a 0 -x {9.0 10.0 3215 ------- null} h -t 3.63568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6421 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.63571 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6407 -a 0 -x {9.0 10.0 3208 ------- null} - -t 3.63571 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6407 -a 0 -x {9.0 10.0 3208 ------- null} h -t 3.63571 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6407 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.63584 -s 0 -d 9 -p ack -e 40 -c 0 -i 6414 -a 0 -x {10.0 9.0 3202 ------- null} - -t 3.63584 -s 0 -d 9 -p ack -e 40 -c 0 -i 6414 -a 0 -x {10.0 9.0 3202 ------- null} h -t 3.63584 -s 0 -d 9 -p ack -e 40 -c 0 -i 6414 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.63619 -s 10 -d 7 -p ack -e 40 -c 0 -i 6418 -a 0 -x {10.0 9.0 3204 ------- null} + -t 3.63619 -s 7 -d 0 -p ack -e 40 -c 0 -i 6418 -a 0 -x {10.0 9.0 3204 ------- null} h -t 3.63619 -s 7 -d 8 -p ack -e 40 -c 0 -i 6418 -a 0 -x {10.0 9.0 3204 ------- null} r -t 3.63634 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6403 -a 0 -x {9.0 10.0 3206 ------- null} + -t 3.63634 -s 10 -d 7 -p ack -e 40 -c 0 -i 6422 -a 0 -x {10.0 9.0 3206 ------- null} - -t 3.63634 -s 10 -d 7 -p ack -e 40 -c 0 -i 6422 -a 0 -x {10.0 9.0 3206 ------- null} h -t 3.63634 -s 10 -d 7 -p ack -e 40 -c 0 -i 6422 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.63638 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6417 -a 0 -x {9.0 10.0 3213 ------- null} + -t 3.63638 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6417 -a 0 -x {9.0 10.0 3213 ------- null} h -t 3.63638 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6417 -a 0 -x {9.0 10.0 3213 ------- null} r -t 3.63678 -s 0 -d 9 -p ack -e 40 -c 0 -i 6412 -a 0 -x {10.0 9.0 3201 ------- null} + -t 3.63678 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6423 -a 0 -x {9.0 10.0 3216 ------- null} - -t 3.63678 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6423 -a 0 -x {9.0 10.0 3216 ------- null} h -t 3.63678 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6423 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.6368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6409 -a 0 -x {9.0 10.0 3209 ------- null} - -t 3.6368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6409 -a 0 -x {9.0 10.0 3209 ------- null} h -t 3.6368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6409 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.63701 -s 0 -d 9 -p ack -e 40 -c 0 -i 6416 -a 0 -x {10.0 9.0 3203 ------- null} - -t 3.63701 -s 0 -d 9 -p ack -e 40 -c 0 -i 6416 -a 0 -x {10.0 9.0 3203 ------- null} h -t 3.63701 -s 0 -d 9 -p ack -e 40 -c 0 -i 6416 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.63728 -s 10 -d 7 -p ack -e 40 -c 0 -i 6420 -a 0 -x {10.0 9.0 3205 ------- null} + -t 3.63728 -s 7 -d 0 -p ack -e 40 -c 0 -i 6420 -a 0 -x {10.0 9.0 3205 ------- null} h -t 3.63728 -s 7 -d 8 -p ack -e 40 -c 0 -i 6420 -a 0 -x {10.0 9.0 3205 ------- null} r -t 3.63742 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6405 -a 0 -x {9.0 10.0 3207 ------- null} + -t 3.63742 -s 10 -d 7 -p ack -e 40 -c 0 -i 6424 -a 0 -x {10.0 9.0 3207 ------- null} - -t 3.63742 -s 10 -d 7 -p ack -e 40 -c 0 -i 6424 -a 0 -x {10.0 9.0 3207 ------- null} h -t 3.63742 -s 10 -d 7 -p ack -e 40 -c 0 -i 6424 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.6375 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6419 -a 0 -x {9.0 10.0 3214 ------- null} + -t 3.6375 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6419 -a 0 -x {9.0 10.0 3214 ------- null} h -t 3.6375 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6419 -a 0 -x {9.0 10.0 3214 ------- null} r -t 3.63787 -s 0 -d 9 -p ack -e 40 -c 0 -i 6414 -a 0 -x {10.0 9.0 3202 ------- null} + -t 3.63787 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6425 -a 0 -x {9.0 10.0 3217 ------- null} - -t 3.63787 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6425 -a 0 -x {9.0 10.0 3217 ------- null} h -t 3.63787 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6425 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.63789 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6411 -a 0 -x {9.0 10.0 3210 ------- null} - -t 3.63789 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6411 -a 0 -x {9.0 10.0 3210 ------- null} h -t 3.63789 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6411 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.63795 -s 0 -d 9 -p ack -e 40 -c 0 -i 6418 -a 0 -x {10.0 9.0 3204 ------- null} - -t 3.63795 -s 0 -d 9 -p ack -e 40 -c 0 -i 6418 -a 0 -x {10.0 9.0 3204 ------- null} h -t 3.63795 -s 0 -d 9 -p ack -e 40 -c 0 -i 6418 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.63837 -s 10 -d 7 -p ack -e 40 -c 0 -i 6422 -a 0 -x {10.0 9.0 3206 ------- null} + -t 3.63837 -s 7 -d 0 -p ack -e 40 -c 0 -i 6422 -a 0 -x {10.0 9.0 3206 ------- null} h -t 3.63837 -s 7 -d 8 -p ack -e 40 -c 0 -i 6422 -a 0 -x {10.0 9.0 3206 ------- null} r -t 3.63848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6421 -a 0 -x {9.0 10.0 3215 ------- null} + -t 3.63848 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6421 -a 0 -x {9.0 10.0 3215 ------- null} h -t 3.63848 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6421 -a 0 -x {9.0 10.0 3215 ------- null} r -t 3.63851 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6407 -a 0 -x {9.0 10.0 3208 ------- null} + -t 3.63851 -s 10 -d 7 -p ack -e 40 -c 0 -i 6426 -a 0 -x {10.0 9.0 3208 ------- null} - -t 3.63851 -s 10 -d 7 -p ack -e 40 -c 0 -i 6426 -a 0 -x {10.0 9.0 3208 ------- null} h -t 3.63851 -s 10 -d 7 -p ack -e 40 -c 0 -i 6426 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.63898 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6413 -a 0 -x {9.0 10.0 3211 ------- null} - -t 3.63898 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6413 -a 0 -x {9.0 10.0 3211 ------- null} h -t 3.63898 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6413 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.63904 -s 0 -d 9 -p ack -e 40 -c 0 -i 6416 -a 0 -x {10.0 9.0 3203 ------- null} + -t 3.63904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6427 -a 0 -x {9.0 10.0 3218 ------- null} - -t 3.63904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6427 -a 0 -x {9.0 10.0 3218 ------- null} h -t 3.63904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6427 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.63926 -s 0 -d 9 -p ack -e 40 -c 0 -i 6420 -a 0 -x {10.0 9.0 3205 ------- null} - -t 3.63926 -s 0 -d 9 -p ack -e 40 -c 0 -i 6420 -a 0 -x {10.0 9.0 3205 ------- null} h -t 3.63926 -s 0 -d 9 -p ack -e 40 -c 0 -i 6420 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.63946 -s 10 -d 7 -p ack -e 40 -c 0 -i 6424 -a 0 -x {10.0 9.0 3207 ------- null} + -t 3.63946 -s 7 -d 0 -p ack -e 40 -c 0 -i 6424 -a 0 -x {10.0 9.0 3207 ------- null} h -t 3.63946 -s 7 -d 8 -p ack -e 40 -c 0 -i 6424 -a 0 -x {10.0 9.0 3207 ------- null} r -t 3.63958 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6423 -a 0 -x {9.0 10.0 3216 ------- null} + -t 3.63958 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6423 -a 0 -x {9.0 10.0 3216 ------- null} h -t 3.63958 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6423 -a 0 -x {9.0 10.0 3216 ------- null} r -t 3.6396 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6409 -a 0 -x {9.0 10.0 3209 ------- null} + -t 3.6396 -s 10 -d 7 -p ack -e 40 -c 0 -i 6428 -a 0 -x {10.0 9.0 3209 ------- null} - -t 3.6396 -s 10 -d 7 -p ack -e 40 -c 0 -i 6428 -a 0 -x {10.0 9.0 3209 ------- null} h -t 3.6396 -s 10 -d 7 -p ack -e 40 -c 0 -i 6428 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.63998 -s 0 -d 9 -p ack -e 40 -c 0 -i 6418 -a 0 -x {10.0 9.0 3204 ------- null} + -t 3.63998 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6429 -a 0 -x {9.0 10.0 3219 ------- null} - -t 3.63998 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6429 -a 0 -x {9.0 10.0 3219 ------- null} h -t 3.63998 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6429 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.64013 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6415 -a 0 -x {9.0 10.0 3212 ------- null} - -t 3.64013 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6415 -a 0 -x {9.0 10.0 3212 ------- null} h -t 3.64013 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6415 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.64035 -s 0 -d 9 -p ack -e 40 -c 0 -i 6422 -a 0 -x {10.0 9.0 3206 ------- null} - -t 3.64035 -s 0 -d 9 -p ack -e 40 -c 0 -i 6422 -a 0 -x {10.0 9.0 3206 ------- null} h -t 3.64035 -s 0 -d 9 -p ack -e 40 -c 0 -i 6422 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.64054 -s 10 -d 7 -p ack -e 40 -c 0 -i 6426 -a 0 -x {10.0 9.0 3208 ------- null} + -t 3.64054 -s 7 -d 0 -p ack -e 40 -c 0 -i 6426 -a 0 -x {10.0 9.0 3208 ------- null} h -t 3.64054 -s 7 -d 8 -p ack -e 40 -c 0 -i 6426 -a 0 -x {10.0 9.0 3208 ------- null} r -t 3.64067 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6425 -a 0 -x {9.0 10.0 3217 ------- null} + -t 3.64067 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6425 -a 0 -x {9.0 10.0 3217 ------- null} h -t 3.64067 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6425 -a 0 -x {9.0 10.0 3217 ------- null} r -t 3.64069 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6411 -a 0 -x {9.0 10.0 3210 ------- null} + -t 3.64069 -s 10 -d 7 -p ack -e 40 -c 0 -i 6430 -a 0 -x {10.0 9.0 3210 ------- null} - -t 3.64069 -s 10 -d 7 -p ack -e 40 -c 0 -i 6430 -a 0 -x {10.0 9.0 3210 ------- null} h -t 3.64069 -s 10 -d 7 -p ack -e 40 -c 0 -i 6430 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.64122 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6417 -a 0 -x {9.0 10.0 3213 ------- null} - -t 3.64122 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6417 -a 0 -x {9.0 10.0 3213 ------- null} h -t 3.64122 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6417 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.6413 -s 0 -d 9 -p ack -e 40 -c 0 -i 6420 -a 0 -x {10.0 9.0 3205 ------- null} + -t 3.6413 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6431 -a 0 -x {9.0 10.0 3220 ------- null} - -t 3.6413 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6431 -a 0 -x {9.0 10.0 3220 ------- null} h -t 3.6413 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6431 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.64144 -s 0 -d 9 -p ack -e 40 -c 0 -i 6424 -a 0 -x {10.0 9.0 3207 ------- null} - -t 3.64144 -s 0 -d 9 -p ack -e 40 -c 0 -i 6424 -a 0 -x {10.0 9.0 3207 ------- null} h -t 3.64144 -s 0 -d 9 -p ack -e 40 -c 0 -i 6424 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.64163 -s 10 -d 7 -p ack -e 40 -c 0 -i 6428 -a 0 -x {10.0 9.0 3209 ------- null} + -t 3.64163 -s 7 -d 0 -p ack -e 40 -c 0 -i 6428 -a 0 -x {10.0 9.0 3209 ------- null} h -t 3.64163 -s 7 -d 8 -p ack -e 40 -c 0 -i 6428 -a 0 -x {10.0 9.0 3209 ------- null} r -t 3.64178 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6413 -a 0 -x {9.0 10.0 3211 ------- null} + -t 3.64178 -s 10 -d 7 -p ack -e 40 -c 0 -i 6432 -a 0 -x {10.0 9.0 3211 ------- null} - -t 3.64178 -s 10 -d 7 -p ack -e 40 -c 0 -i 6432 -a 0 -x {10.0 9.0 3211 ------- null} h -t 3.64178 -s 10 -d 7 -p ack -e 40 -c 0 -i 6432 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.64184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6427 -a 0 -x {9.0 10.0 3218 ------- null} + -t 3.64184 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6427 -a 0 -x {9.0 10.0 3218 ------- null} h -t 3.64184 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6427 -a 0 -x {9.0 10.0 3218 ------- null} + -t 3.6423 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6419 -a 0 -x {9.0 10.0 3214 ------- null} - -t 3.6423 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6419 -a 0 -x {9.0 10.0 3214 ------- null} h -t 3.6423 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6419 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.64238 -s 0 -d 9 -p ack -e 40 -c 0 -i 6422 -a 0 -x {10.0 9.0 3206 ------- null} + -t 3.64238 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6433 -a 0 -x {9.0 10.0 3221 ------- null} - -t 3.64238 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6433 -a 0 -x {9.0 10.0 3221 ------- null} h -t 3.64238 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6433 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.64242 -s 0 -d 9 -p ack -e 40 -c 0 -i 6426 -a 0 -x {10.0 9.0 3208 ------- null} - -t 3.64242 -s 0 -d 9 -p ack -e 40 -c 0 -i 6426 -a 0 -x {10.0 9.0 3208 ------- null} h -t 3.64242 -s 0 -d 9 -p ack -e 40 -c 0 -i 6426 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.64272 -s 10 -d 7 -p ack -e 40 -c 0 -i 6430 -a 0 -x {10.0 9.0 3210 ------- null} + -t 3.64272 -s 7 -d 0 -p ack -e 40 -c 0 -i 6430 -a 0 -x {10.0 9.0 3210 ------- null} h -t 3.64272 -s 7 -d 8 -p ack -e 40 -c 0 -i 6430 -a 0 -x {10.0 9.0 3210 ------- null} r -t 3.64278 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6429 -a 0 -x {9.0 10.0 3219 ------- null} + -t 3.64278 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6429 -a 0 -x {9.0 10.0 3219 ------- null} h -t 3.64278 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6429 -a 0 -x {9.0 10.0 3219 ------- null} r -t 3.64293 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6415 -a 0 -x {9.0 10.0 3212 ------- null} + -t 3.64293 -s 10 -d 7 -p ack -e 40 -c 0 -i 6434 -a 0 -x {10.0 9.0 3212 ------- null} - -t 3.64293 -s 10 -d 7 -p ack -e 40 -c 0 -i 6434 -a 0 -x {10.0 9.0 3212 ------- null} h -t 3.64293 -s 10 -d 7 -p ack -e 40 -c 0 -i 6434 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.64339 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6421 -a 0 -x {9.0 10.0 3215 ------- null} - -t 3.64339 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6421 -a 0 -x {9.0 10.0 3215 ------- null} h -t 3.64339 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6421 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.64347 -s 0 -d 9 -p ack -e 40 -c 0 -i 6424 -a 0 -x {10.0 9.0 3207 ------- null} + -t 3.64347 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6435 -a 0 -x {9.0 10.0 3222 ------- null} - -t 3.64347 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6435 -a 0 -x {9.0 10.0 3222 ------- null} h -t 3.64347 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6435 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.64357 -s 0 -d 9 -p ack -e 40 -c 0 -i 6428 -a 0 -x {10.0 9.0 3209 ------- null} - -t 3.64357 -s 0 -d 9 -p ack -e 40 -c 0 -i 6428 -a 0 -x {10.0 9.0 3209 ------- null} h -t 3.64357 -s 0 -d 9 -p ack -e 40 -c 0 -i 6428 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.64381 -s 10 -d 7 -p ack -e 40 -c 0 -i 6432 -a 0 -x {10.0 9.0 3211 ------- null} + -t 3.64381 -s 7 -d 0 -p ack -e 40 -c 0 -i 6432 -a 0 -x {10.0 9.0 3211 ------- null} h -t 3.64381 -s 7 -d 8 -p ack -e 40 -c 0 -i 6432 -a 0 -x {10.0 9.0 3211 ------- null} r -t 3.64402 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6417 -a 0 -x {9.0 10.0 3213 ------- null} + -t 3.64402 -s 10 -d 7 -p ack -e 40 -c 0 -i 6436 -a 0 -x {10.0 9.0 3213 ------- null} - -t 3.64402 -s 10 -d 7 -p ack -e 40 -c 0 -i 6436 -a 0 -x {10.0 9.0 3213 ------- null} h -t 3.64402 -s 10 -d 7 -p ack -e 40 -c 0 -i 6436 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.6441 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6431 -a 0 -x {9.0 10.0 3220 ------- null} + -t 3.6441 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6431 -a 0 -x {9.0 10.0 3220 ------- null} h -t 3.6441 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6431 -a 0 -x {9.0 10.0 3220 ------- null} r -t 3.64445 -s 0 -d 9 -p ack -e 40 -c 0 -i 6426 -a 0 -x {10.0 9.0 3208 ------- null} + -t 3.64445 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6437 -a 0 -x {9.0 10.0 3223 ------- null} - -t 3.64445 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6437 -a 0 -x {9.0 10.0 3223 ------- null} h -t 3.64445 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6437 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.64448 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6423 -a 0 -x {9.0 10.0 3216 ------- null} - -t 3.64448 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6423 -a 0 -x {9.0 10.0 3216 ------- null} h -t 3.64448 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6423 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.64461 -s 0 -d 9 -p ack -e 40 -c 0 -i 6430 -a 0 -x {10.0 9.0 3210 ------- null} - -t 3.64461 -s 0 -d 9 -p ack -e 40 -c 0 -i 6430 -a 0 -x {10.0 9.0 3210 ------- null} h -t 3.64461 -s 0 -d 9 -p ack -e 40 -c 0 -i 6430 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.64496 -s 10 -d 7 -p ack -e 40 -c 0 -i 6434 -a 0 -x {10.0 9.0 3212 ------- null} + -t 3.64496 -s 7 -d 0 -p ack -e 40 -c 0 -i 6434 -a 0 -x {10.0 9.0 3212 ------- null} h -t 3.64496 -s 7 -d 8 -p ack -e 40 -c 0 -i 6434 -a 0 -x {10.0 9.0 3212 ------- null} r -t 3.6451 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6419 -a 0 -x {9.0 10.0 3214 ------- null} + -t 3.6451 -s 10 -d 7 -p ack -e 40 -c 0 -i 6438 -a 0 -x {10.0 9.0 3214 ------- null} - -t 3.6451 -s 10 -d 7 -p ack -e 40 -c 0 -i 6438 -a 0 -x {10.0 9.0 3214 ------- null} h -t 3.6451 -s 10 -d 7 -p ack -e 40 -c 0 -i 6438 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.64518 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6433 -a 0 -x {9.0 10.0 3221 ------- null} + -t 3.64518 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6433 -a 0 -x {9.0 10.0 3221 ------- null} h -t 3.64518 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6433 -a 0 -x {9.0 10.0 3221 ------- null} + -t 3.64557 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6425 -a 0 -x {9.0 10.0 3217 ------- null} - -t 3.64557 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6425 -a 0 -x {9.0 10.0 3217 ------- null} h -t 3.64557 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6425 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.6456 -s 0 -d 9 -p ack -e 40 -c 0 -i 6428 -a 0 -x {10.0 9.0 3209 ------- null} + -t 3.6456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6439 -a 0 -x {9.0 10.0 3224 ------- null} - -t 3.6456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6439 -a 0 -x {9.0 10.0 3224 ------- null} h -t 3.6456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6439 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.6457 -s 0 -d 9 -p ack -e 40 -c 0 -i 6432 -a 0 -x {10.0 9.0 3211 ------- null} - -t 3.6457 -s 0 -d 9 -p ack -e 40 -c 0 -i 6432 -a 0 -x {10.0 9.0 3211 ------- null} h -t 3.6457 -s 0 -d 9 -p ack -e 40 -c 0 -i 6432 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.64605 -s 10 -d 7 -p ack -e 40 -c 0 -i 6436 -a 0 -x {10.0 9.0 3213 ------- null} + -t 3.64605 -s 7 -d 0 -p ack -e 40 -c 0 -i 6436 -a 0 -x {10.0 9.0 3213 ------- null} h -t 3.64605 -s 7 -d 8 -p ack -e 40 -c 0 -i 6436 -a 0 -x {10.0 9.0 3213 ------- null} r -t 3.64619 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6421 -a 0 -x {9.0 10.0 3215 ------- null} + -t 3.64619 -s 10 -d 7 -p ack -e 40 -c 0 -i 6440 -a 0 -x {10.0 9.0 3215 ------- null} - -t 3.64619 -s 10 -d 7 -p ack -e 40 -c 0 -i 6440 -a 0 -x {10.0 9.0 3215 ------- null} h -t 3.64619 -s 10 -d 7 -p ack -e 40 -c 0 -i 6440 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.64627 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6435 -a 0 -x {9.0 10.0 3222 ------- null} + -t 3.64627 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6435 -a 0 -x {9.0 10.0 3222 ------- null} h -t 3.64627 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6435 -a 0 -x {9.0 10.0 3222 ------- null} r -t 3.64664 -s 0 -d 9 -p ack -e 40 -c 0 -i 6430 -a 0 -x {10.0 9.0 3210 ------- null} + -t 3.64664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6441 -a 0 -x {9.0 10.0 3225 ------- null} - -t 3.64664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6441 -a 0 -x {9.0 10.0 3225 ------- null} h -t 3.64664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6441 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.64666 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6427 -a 0 -x {9.0 10.0 3218 ------- null} - -t 3.64666 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6427 -a 0 -x {9.0 10.0 3218 ------- null} h -t 3.64666 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6427 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.64686 -s 0 -d 9 -p ack -e 40 -c 0 -i 6434 -a 0 -x {10.0 9.0 3212 ------- null} - -t 3.64686 -s 0 -d 9 -p ack -e 40 -c 0 -i 6434 -a 0 -x {10.0 9.0 3212 ------- null} h -t 3.64686 -s 0 -d 9 -p ack -e 40 -c 0 -i 6434 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.64714 -s 10 -d 7 -p ack -e 40 -c 0 -i 6438 -a 0 -x {10.0 9.0 3214 ------- null} + -t 3.64714 -s 7 -d 0 -p ack -e 40 -c 0 -i 6438 -a 0 -x {10.0 9.0 3214 ------- null} h -t 3.64714 -s 7 -d 8 -p ack -e 40 -c 0 -i 6438 -a 0 -x {10.0 9.0 3214 ------- null} r -t 3.64725 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6437 -a 0 -x {9.0 10.0 3223 ------- null} + -t 3.64725 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6437 -a 0 -x {9.0 10.0 3223 ------- null} h -t 3.64725 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6437 -a 0 -x {9.0 10.0 3223 ------- null} r -t 3.64728 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6423 -a 0 -x {9.0 10.0 3216 ------- null} + -t 3.64728 -s 10 -d 7 -p ack -e 40 -c 0 -i 6442 -a 0 -x {10.0 9.0 3216 ------- null} - -t 3.64728 -s 10 -d 7 -p ack -e 40 -c 0 -i 6442 -a 0 -x {10.0 9.0 3216 ------- null} h -t 3.64728 -s 10 -d 7 -p ack -e 40 -c 0 -i 6442 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.64773 -s 0 -d 9 -p ack -e 40 -c 0 -i 6432 -a 0 -x {10.0 9.0 3211 ------- null} + -t 3.64773 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6443 -a 0 -x {9.0 10.0 3226 ------- null} - -t 3.64773 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6443 -a 0 -x {9.0 10.0 3226 ------- null} h -t 3.64773 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6443 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.64774 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6429 -a 0 -x {9.0 10.0 3219 ------- null} - -t 3.64774 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6429 -a 0 -x {9.0 10.0 3219 ------- null} h -t 3.64774 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6429 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.64786 -s 0 -d 9 -p ack -e 40 -c 0 -i 6436 -a 0 -x {10.0 9.0 3213 ------- null} - -t 3.64786 -s 0 -d 9 -p ack -e 40 -c 0 -i 6436 -a 0 -x {10.0 9.0 3213 ------- null} h -t 3.64786 -s 0 -d 9 -p ack -e 40 -c 0 -i 6436 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.64822 -s 10 -d 7 -p ack -e 40 -c 0 -i 6440 -a 0 -x {10.0 9.0 3215 ------- null} + -t 3.64822 -s 7 -d 0 -p ack -e 40 -c 0 -i 6440 -a 0 -x {10.0 9.0 3215 ------- null} h -t 3.64822 -s 7 -d 8 -p ack -e 40 -c 0 -i 6440 -a 0 -x {10.0 9.0 3215 ------- null} r -t 3.64837 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6425 -a 0 -x {9.0 10.0 3217 ------- null} + -t 3.64837 -s 10 -d 7 -p ack -e 40 -c 0 -i 6444 -a 0 -x {10.0 9.0 3217 ------- null} - -t 3.64837 -s 10 -d 7 -p ack -e 40 -c 0 -i 6444 -a 0 -x {10.0 9.0 3217 ------- null} h -t 3.64837 -s 10 -d 7 -p ack -e 40 -c 0 -i 6444 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.6484 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6439 -a 0 -x {9.0 10.0 3224 ------- null} + -t 3.6484 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6439 -a 0 -x {9.0 10.0 3224 ------- null} h -t 3.6484 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6439 -a 0 -x {9.0 10.0 3224 ------- null} + -t 3.64883 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6431 -a 0 -x {9.0 10.0 3220 ------- null} - -t 3.64883 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6431 -a 0 -x {9.0 10.0 3220 ------- null} h -t 3.64883 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6431 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.6489 -s 0 -d 9 -p ack -e 40 -c 0 -i 6434 -a 0 -x {10.0 9.0 3212 ------- null} + -t 3.6489 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6445 -a 0 -x {9.0 10.0 3227 ------- null} - -t 3.6489 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6445 -a 0 -x {9.0 10.0 3227 ------- null} h -t 3.6489 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6445 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.64914 -s 0 -d 9 -p ack -e 40 -c 0 -i 6438 -a 0 -x {10.0 9.0 3214 ------- null} - -t 3.64914 -s 0 -d 9 -p ack -e 40 -c 0 -i 6438 -a 0 -x {10.0 9.0 3214 ------- null} h -t 3.64914 -s 0 -d 9 -p ack -e 40 -c 0 -i 6438 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.64931 -s 10 -d 7 -p ack -e 40 -c 0 -i 6442 -a 0 -x {10.0 9.0 3216 ------- null} + -t 3.64931 -s 7 -d 0 -p ack -e 40 -c 0 -i 6442 -a 0 -x {10.0 9.0 3216 ------- null} h -t 3.64931 -s 7 -d 8 -p ack -e 40 -c 0 -i 6442 -a 0 -x {10.0 9.0 3216 ------- null} r -t 3.64944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6441 -a 0 -x {9.0 10.0 3225 ------- null} + -t 3.64944 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6441 -a 0 -x {9.0 10.0 3225 ------- null} h -t 3.64944 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6441 -a 0 -x {9.0 10.0 3225 ------- null} r -t 3.64946 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6427 -a 0 -x {9.0 10.0 3218 ------- null} + -t 3.64946 -s 10 -d 7 -p ack -e 40 -c 0 -i 6446 -a 0 -x {10.0 9.0 3218 ------- null} - -t 3.64946 -s 10 -d 7 -p ack -e 40 -c 0 -i 6446 -a 0 -x {10.0 9.0 3218 ------- null} h -t 3.64946 -s 10 -d 7 -p ack -e 40 -c 0 -i 6446 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.64989 -s 0 -d 9 -p ack -e 40 -c 0 -i 6436 -a 0 -x {10.0 9.0 3213 ------- null} + -t 3.64989 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6447 -a 0 -x {9.0 10.0 3228 ------- null} - -t 3.64989 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6447 -a 0 -x {9.0 10.0 3228 ------- null} h -t 3.64989 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6447 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.65005 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6433 -a 0 -x {9.0 10.0 3221 ------- null} - -t 3.65005 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6433 -a 0 -x {9.0 10.0 3221 ------- null} h -t 3.65005 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6433 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.65032 -s 0 -d 9 -p ack -e 40 -c 0 -i 6440 -a 0 -x {10.0 9.0 3215 ------- null} - -t 3.65032 -s 0 -d 9 -p ack -e 40 -c 0 -i 6440 -a 0 -x {10.0 9.0 3215 ------- null} h -t 3.65032 -s 0 -d 9 -p ack -e 40 -c 0 -i 6440 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.6504 -s 10 -d 7 -p ack -e 40 -c 0 -i 6444 -a 0 -x {10.0 9.0 3217 ------- null} + -t 3.6504 -s 7 -d 0 -p ack -e 40 -c 0 -i 6444 -a 0 -x {10.0 9.0 3217 ------- null} h -t 3.6504 -s 7 -d 8 -p ack -e 40 -c 0 -i 6444 -a 0 -x {10.0 9.0 3217 ------- null} r -t 3.65053 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6443 -a 0 -x {9.0 10.0 3226 ------- null} + -t 3.65053 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6443 -a 0 -x {9.0 10.0 3226 ------- null} h -t 3.65053 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6443 -a 0 -x {9.0 10.0 3226 ------- null} r -t 3.65054 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6429 -a 0 -x {9.0 10.0 3219 ------- null} + -t 3.65054 -s 10 -d 7 -p ack -e 40 -c 0 -i 6448 -a 0 -x {10.0 9.0 3219 ------- null} - -t 3.65054 -s 10 -d 7 -p ack -e 40 -c 0 -i 6448 -a 0 -x {10.0 9.0 3219 ------- null} h -t 3.65054 -s 10 -d 7 -p ack -e 40 -c 0 -i 6448 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.65117 -s 0 -d 9 -p ack -e 40 -c 0 -i 6438 -a 0 -x {10.0 9.0 3214 ------- null} + -t 3.65117 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6449 -a 0 -x {9.0 10.0 3229 ------- null} - -t 3.65117 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6449 -a 0 -x {9.0 10.0 3229 ------- null} h -t 3.65117 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6449 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.65139 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6435 -a 0 -x {9.0 10.0 3222 ------- null} - -t 3.65139 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6435 -a 0 -x {9.0 10.0 3222 ------- null} h -t 3.65139 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6435 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.65149 -s 10 -d 7 -p ack -e 40 -c 0 -i 6446 -a 0 -x {10.0 9.0 3218 ------- null} + -t 3.65149 -s 7 -d 0 -p ack -e 40 -c 0 -i 6446 -a 0 -x {10.0 9.0 3218 ------- null} h -t 3.65149 -s 7 -d 8 -p ack -e 40 -c 0 -i 6446 -a 0 -x {10.0 9.0 3218 ------- null} + -t 3.65155 -s 0 -d 9 -p ack -e 40 -c 0 -i 6442 -a 0 -x {10.0 9.0 3216 ------- null} - -t 3.65155 -s 0 -d 9 -p ack -e 40 -c 0 -i 6442 -a 0 -x {10.0 9.0 3216 ------- null} h -t 3.65155 -s 0 -d 9 -p ack -e 40 -c 0 -i 6442 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.65163 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6431 -a 0 -x {9.0 10.0 3220 ------- null} + -t 3.65163 -s 10 -d 7 -p ack -e 40 -c 0 -i 6450 -a 0 -x {10.0 9.0 3220 ------- null} - -t 3.65163 -s 10 -d 7 -p ack -e 40 -c 0 -i 6450 -a 0 -x {10.0 9.0 3220 ------- null} h -t 3.65163 -s 10 -d 7 -p ack -e 40 -c 0 -i 6450 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.6517 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6445 -a 0 -x {9.0 10.0 3227 ------- null} + -t 3.6517 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6445 -a 0 -x {9.0 10.0 3227 ------- null} h -t 3.6517 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6445 -a 0 -x {9.0 10.0 3227 ------- null} r -t 3.65235 -s 0 -d 9 -p ack -e 40 -c 0 -i 6440 -a 0 -x {10.0 9.0 3215 ------- null} + -t 3.65235 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6451 -a 0 -x {9.0 10.0 3230 ------- null} - -t 3.65235 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6451 -a 0 -x {9.0 10.0 3230 ------- null} h -t 3.65235 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6451 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.65248 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6437 -a 0 -x {9.0 10.0 3223 ------- null} - -t 3.65248 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6437 -a 0 -x {9.0 10.0 3223 ------- null} h -t 3.65248 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6437 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.65258 -s 10 -d 7 -p ack -e 40 -c 0 -i 6448 -a 0 -x {10.0 9.0 3219 ------- null} + -t 3.65258 -s 7 -d 0 -p ack -e 40 -c 0 -i 6448 -a 0 -x {10.0 9.0 3219 ------- null} h -t 3.65258 -s 7 -d 8 -p ack -e 40 -c 0 -i 6448 -a 0 -x {10.0 9.0 3219 ------- null} r -t 3.65269 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6447 -a 0 -x {9.0 10.0 3228 ------- null} + -t 3.65269 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6447 -a 0 -x {9.0 10.0 3228 ------- null} h -t 3.65269 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6447 -a 0 -x {9.0 10.0 3228 ------- null} + -t 3.65277 -s 0 -d 9 -p ack -e 40 -c 0 -i 6444 -a 0 -x {10.0 9.0 3217 ------- null} - -t 3.65277 -s 0 -d 9 -p ack -e 40 -c 0 -i 6444 -a 0 -x {10.0 9.0 3217 ------- null} h -t 3.65277 -s 0 -d 9 -p ack -e 40 -c 0 -i 6444 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.65285 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6433 -a 0 -x {9.0 10.0 3221 ------- null} + -t 3.65285 -s 10 -d 7 -p ack -e 40 -c 0 -i 6452 -a 0 -x {10.0 9.0 3221 ------- null} - -t 3.65285 -s 10 -d 7 -p ack -e 40 -c 0 -i 6452 -a 0 -x {10.0 9.0 3221 ------- null} h -t 3.65285 -s 10 -d 7 -p ack -e 40 -c 0 -i 6452 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.65358 -s 0 -d 9 -p ack -e 40 -c 0 -i 6442 -a 0 -x {10.0 9.0 3216 ------- null} + -t 3.65358 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6453 -a 0 -x {9.0 10.0 3231 ------- null} - -t 3.65358 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6453 -a 0 -x {9.0 10.0 3231 ------- null} h -t 3.65358 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6453 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.65366 -s 10 -d 7 -p ack -e 40 -c 0 -i 6450 -a 0 -x {10.0 9.0 3220 ------- null} + -t 3.65366 -s 7 -d 0 -p ack -e 40 -c 0 -i 6450 -a 0 -x {10.0 9.0 3220 ------- null} h -t 3.65366 -s 7 -d 8 -p ack -e 40 -c 0 -i 6450 -a 0 -x {10.0 9.0 3220 ------- null} + -t 3.65373 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6439 -a 0 -x {9.0 10.0 3224 ------- null} - -t 3.65373 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6439 -a 0 -x {9.0 10.0 3224 ------- null} h -t 3.65373 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6439 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.65379 -s 0 -d 9 -p ack -e 40 -c 0 -i 6446 -a 0 -x {10.0 9.0 3218 ------- null} - -t 3.65379 -s 0 -d 9 -p ack -e 40 -c 0 -i 6446 -a 0 -x {10.0 9.0 3218 ------- null} h -t 3.65379 -s 0 -d 9 -p ack -e 40 -c 0 -i 6446 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.65397 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6449 -a 0 -x {9.0 10.0 3229 ------- null} + -t 3.65397 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6449 -a 0 -x {9.0 10.0 3229 ------- null} h -t 3.65397 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6449 -a 0 -x {9.0 10.0 3229 ------- null} r -t 3.65419 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6435 -a 0 -x {9.0 10.0 3222 ------- null} + -t 3.65419 -s 10 -d 7 -p ack -e 40 -c 0 -i 6454 -a 0 -x {10.0 9.0 3222 ------- null} - -t 3.65419 -s 10 -d 7 -p ack -e 40 -c 0 -i 6454 -a 0 -x {10.0 9.0 3222 ------- null} h -t 3.65419 -s 10 -d 7 -p ack -e 40 -c 0 -i 6454 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.6548 -s 0 -d 9 -p ack -e 40 -c 0 -i 6444 -a 0 -x {10.0 9.0 3217 ------- null} + -t 3.6548 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6455 -a 0 -x {9.0 10.0 3232 ------- null} - -t 3.6548 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6455 -a 0 -x {9.0 10.0 3232 ------- null} h -t 3.6548 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6455 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.65482 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6441 -a 0 -x {9.0 10.0 3225 ------- null} - -t 3.65482 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6441 -a 0 -x {9.0 10.0 3225 ------- null} h -t 3.65482 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6441 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.65488 -s 10 -d 7 -p ack -e 40 -c 0 -i 6452 -a 0 -x {10.0 9.0 3221 ------- null} + -t 3.65488 -s 7 -d 0 -p ack -e 40 -c 0 -i 6452 -a 0 -x {10.0 9.0 3221 ------- null} h -t 3.65488 -s 7 -d 8 -p ack -e 40 -c 0 -i 6452 -a 0 -x {10.0 9.0 3221 ------- null} + -t 3.65504 -s 0 -d 9 -p ack -e 40 -c 0 -i 6448 -a 0 -x {10.0 9.0 3219 ------- null} - -t 3.65504 -s 0 -d 9 -p ack -e 40 -c 0 -i 6448 -a 0 -x {10.0 9.0 3219 ------- null} h -t 3.65504 -s 0 -d 9 -p ack -e 40 -c 0 -i 6448 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.65515 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6451 -a 0 -x {9.0 10.0 3230 ------- null} + -t 3.65515 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6451 -a 0 -x {9.0 10.0 3230 ------- null} h -t 3.65515 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6451 -a 0 -x {9.0 10.0 3230 ------- null} r -t 3.65528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6437 -a 0 -x {9.0 10.0 3223 ------- null} + -t 3.65528 -s 10 -d 7 -p ack -e 40 -c 0 -i 6456 -a 0 -x {10.0 9.0 3223 ------- null} - -t 3.65528 -s 10 -d 7 -p ack -e 40 -c 0 -i 6456 -a 0 -x {10.0 9.0 3223 ------- null} h -t 3.65528 -s 10 -d 7 -p ack -e 40 -c 0 -i 6456 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.65582 -s 0 -d 9 -p ack -e 40 -c 0 -i 6446 -a 0 -x {10.0 9.0 3218 ------- null} + -t 3.65582 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6457 -a 0 -x {9.0 10.0 3233 ------- null} - -t 3.65582 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6457 -a 0 -x {9.0 10.0 3233 ------- null} h -t 3.65582 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6457 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.6559 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6443 -a 0 -x {9.0 10.0 3226 ------- null} - -t 3.6559 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6443 -a 0 -x {9.0 10.0 3226 ------- null} h -t 3.6559 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6443 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.65606 -s 0 -d 9 -p ack -e 40 -c 0 -i 6450 -a 0 -x {10.0 9.0 3220 ------- null} - -t 3.65606 -s 0 -d 9 -p ack -e 40 -c 0 -i 6450 -a 0 -x {10.0 9.0 3220 ------- null} h -t 3.65606 -s 0 -d 9 -p ack -e 40 -c 0 -i 6450 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.65622 -s 10 -d 7 -p ack -e 40 -c 0 -i 6454 -a 0 -x {10.0 9.0 3222 ------- null} + -t 3.65622 -s 7 -d 0 -p ack -e 40 -c 0 -i 6454 -a 0 -x {10.0 9.0 3222 ------- null} h -t 3.65622 -s 7 -d 8 -p ack -e 40 -c 0 -i 6454 -a 0 -x {10.0 9.0 3222 ------- null} r -t 3.65638 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6453 -a 0 -x {9.0 10.0 3231 ------- null} + -t 3.65638 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6453 -a 0 -x {9.0 10.0 3231 ------- null} h -t 3.65638 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6453 -a 0 -x {9.0 10.0 3231 ------- null} r -t 3.65653 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6439 -a 0 -x {9.0 10.0 3224 ------- null} + -t 3.65653 -s 10 -d 7 -p ack -e 40 -c 0 -i 6458 -a 0 -x {10.0 9.0 3224 ------- null} - -t 3.65653 -s 10 -d 7 -p ack -e 40 -c 0 -i 6458 -a 0 -x {10.0 9.0 3224 ------- null} h -t 3.65653 -s 10 -d 7 -p ack -e 40 -c 0 -i 6458 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.65699 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6445 -a 0 -x {9.0 10.0 3227 ------- null} - -t 3.65699 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6445 -a 0 -x {9.0 10.0 3227 ------- null} h -t 3.65699 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6445 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.65707 -s 0 -d 9 -p ack -e 40 -c 0 -i 6448 -a 0 -x {10.0 9.0 3219 ------- null} + -t 3.65707 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6459 -a 0 -x {9.0 10.0 3234 ------- null} - -t 3.65707 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6459 -a 0 -x {9.0 10.0 3234 ------- null} h -t 3.65707 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6459 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.65726 -s 0 -d 9 -p ack -e 40 -c 0 -i 6452 -a 0 -x {10.0 9.0 3221 ------- null} - -t 3.65726 -s 0 -d 9 -p ack -e 40 -c 0 -i 6452 -a 0 -x {10.0 9.0 3221 ------- null} h -t 3.65726 -s 0 -d 9 -p ack -e 40 -c 0 -i 6452 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.65731 -s 10 -d 7 -p ack -e 40 -c 0 -i 6456 -a 0 -x {10.0 9.0 3223 ------- null} + -t 3.65731 -s 7 -d 0 -p ack -e 40 -c 0 -i 6456 -a 0 -x {10.0 9.0 3223 ------- null} h -t 3.65731 -s 7 -d 8 -p ack -e 40 -c 0 -i 6456 -a 0 -x {10.0 9.0 3223 ------- null} r -t 3.6576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6455 -a 0 -x {9.0 10.0 3232 ------- null} + -t 3.6576 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6455 -a 0 -x {9.0 10.0 3232 ------- null} h -t 3.6576 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6455 -a 0 -x {9.0 10.0 3232 ------- null} r -t 3.65762 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6441 -a 0 -x {9.0 10.0 3225 ------- null} + -t 3.65762 -s 10 -d 7 -p ack -e 40 -c 0 -i 6460 -a 0 -x {10.0 9.0 3225 ------- null} - -t 3.65762 -s 10 -d 7 -p ack -e 40 -c 0 -i 6460 -a 0 -x {10.0 9.0 3225 ------- null} h -t 3.65762 -s 10 -d 7 -p ack -e 40 -c 0 -i 6460 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.6581 -s 0 -d 9 -p ack -e 40 -c 0 -i 6450 -a 0 -x {10.0 9.0 3220 ------- null} + -t 3.6581 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6461 -a 0 -x {9.0 10.0 3235 ------- null} - -t 3.6581 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6461 -a 0 -x {9.0 10.0 3235 ------- null} h -t 3.6581 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6461 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.65814 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6447 -a 0 -x {9.0 10.0 3228 ------- null} - -t 3.65814 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6447 -a 0 -x {9.0 10.0 3228 ------- null} h -t 3.65814 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6447 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.65826 -s 0 -d 9 -p ack -e 40 -c 0 -i 6454 -a 0 -x {10.0 9.0 3222 ------- null} - -t 3.65826 -s 0 -d 9 -p ack -e 40 -c 0 -i 6454 -a 0 -x {10.0 9.0 3222 ------- null} h -t 3.65826 -s 0 -d 9 -p ack -e 40 -c 0 -i 6454 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.65856 -s 10 -d 7 -p ack -e 40 -c 0 -i 6458 -a 0 -x {10.0 9.0 3224 ------- null} + -t 3.65856 -s 7 -d 0 -p ack -e 40 -c 0 -i 6458 -a 0 -x {10.0 9.0 3224 ------- null} h -t 3.65856 -s 7 -d 8 -p ack -e 40 -c 0 -i 6458 -a 0 -x {10.0 9.0 3224 ------- null} r -t 3.65862 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6457 -a 0 -x {9.0 10.0 3233 ------- null} + -t 3.65862 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6457 -a 0 -x {9.0 10.0 3233 ------- null} h -t 3.65862 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6457 -a 0 -x {9.0 10.0 3233 ------- null} r -t 3.6587 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6443 -a 0 -x {9.0 10.0 3226 ------- null} + -t 3.6587 -s 10 -d 7 -p ack -e 40 -c 0 -i 6462 -a 0 -x {10.0 9.0 3226 ------- null} - -t 3.6587 -s 10 -d 7 -p ack -e 40 -c 0 -i 6462 -a 0 -x {10.0 9.0 3226 ------- null} h -t 3.6587 -s 10 -d 7 -p ack -e 40 -c 0 -i 6462 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.65923 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6449 -a 0 -x {9.0 10.0 3229 ------- null} - -t 3.65923 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6449 -a 0 -x {9.0 10.0 3229 ------- null} h -t 3.65923 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6449 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.6593 -s 0 -d 9 -p ack -e 40 -c 0 -i 6452 -a 0 -x {10.0 9.0 3221 ------- null} + -t 3.6593 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6463 -a 0 -x {9.0 10.0 3236 ------- null} - -t 3.6593 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6463 -a 0 -x {9.0 10.0 3236 ------- null} h -t 3.6593 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6463 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.65949 -s 0 -d 9 -p ack -e 40 -c 0 -i 6456 -a 0 -x {10.0 9.0 3223 ------- null} - -t 3.65949 -s 0 -d 9 -p ack -e 40 -c 0 -i 6456 -a 0 -x {10.0 9.0 3223 ------- null} h -t 3.65949 -s 0 -d 9 -p ack -e 40 -c 0 -i 6456 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.65965 -s 10 -d 7 -p ack -e 40 -c 0 -i 6460 -a 0 -x {10.0 9.0 3225 ------- null} + -t 3.65965 -s 7 -d 0 -p ack -e 40 -c 0 -i 6460 -a 0 -x {10.0 9.0 3225 ------- null} h -t 3.65965 -s 7 -d 8 -p ack -e 40 -c 0 -i 6460 -a 0 -x {10.0 9.0 3225 ------- null} r -t 3.65979 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6445 -a 0 -x {9.0 10.0 3227 ------- null} + -t 3.65979 -s 10 -d 7 -p ack -e 40 -c 0 -i 6464 -a 0 -x {10.0 9.0 3227 ------- null} - -t 3.65979 -s 10 -d 7 -p ack -e 40 -c 0 -i 6464 -a 0 -x {10.0 9.0 3227 ------- null} h -t 3.65979 -s 10 -d 7 -p ack -e 40 -c 0 -i 6464 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.65987 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6459 -a 0 -x {9.0 10.0 3234 ------- null} + -t 3.65987 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6459 -a 0 -x {9.0 10.0 3234 ------- null} h -t 3.65987 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6459 -a 0 -x {9.0 10.0 3234 ------- null} r -t 3.66029 -s 0 -d 9 -p ack -e 40 -c 0 -i 6454 -a 0 -x {10.0 9.0 3222 ------- null} + -t 3.66029 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6465 -a 0 -x {9.0 10.0 3237 ------- null} - -t 3.66029 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6465 -a 0 -x {9.0 10.0 3237 ------- null} h -t 3.66029 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6465 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.66056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6451 -a 0 -x {9.0 10.0 3230 ------- null} - -t 3.66056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6451 -a 0 -x {9.0 10.0 3230 ------- null} h -t 3.66056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6451 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.66074 -s 10 -d 7 -p ack -e 40 -c 0 -i 6462 -a 0 -x {10.0 9.0 3226 ------- null} + -t 3.66074 -s 7 -d 0 -p ack -e 40 -c 0 -i 6462 -a 0 -x {10.0 9.0 3226 ------- null} h -t 3.66074 -s 7 -d 8 -p ack -e 40 -c 0 -i 6462 -a 0 -x {10.0 9.0 3226 ------- null} + -t 3.66086 -s 0 -d 9 -p ack -e 40 -c 0 -i 6458 -a 0 -x {10.0 9.0 3224 ------- null} - -t 3.66086 -s 0 -d 9 -p ack -e 40 -c 0 -i 6458 -a 0 -x {10.0 9.0 3224 ------- null} h -t 3.66086 -s 0 -d 9 -p ack -e 40 -c 0 -i 6458 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.6609 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6461 -a 0 -x {9.0 10.0 3235 ------- null} + -t 3.6609 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6461 -a 0 -x {9.0 10.0 3235 ------- null} h -t 3.6609 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6461 -a 0 -x {9.0 10.0 3235 ------- null} r -t 3.66094 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6447 -a 0 -x {9.0 10.0 3228 ------- null} + -t 3.66094 -s 10 -d 7 -p ack -e 40 -c 0 -i 6466 -a 0 -x {10.0 9.0 3228 ------- null} - -t 3.66094 -s 10 -d 7 -p ack -e 40 -c 0 -i 6466 -a 0 -x {10.0 9.0 3228 ------- null} h -t 3.66094 -s 10 -d 7 -p ack -e 40 -c 0 -i 6466 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.66152 -s 0 -d 9 -p ack -e 40 -c 0 -i 6456 -a 0 -x {10.0 9.0 3223 ------- null} + -t 3.66152 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6467 -a 0 -x {9.0 10.0 3238 ------- null} - -t 3.66152 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6467 -a 0 -x {9.0 10.0 3238 ------- null} h -t 3.66152 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6467 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.66182 -s 10 -d 7 -p ack -e 40 -c 0 -i 6464 -a 0 -x {10.0 9.0 3227 ------- null} + -t 3.66182 -s 7 -d 0 -p ack -e 40 -c 0 -i 6464 -a 0 -x {10.0 9.0 3227 ------- null} h -t 3.66182 -s 7 -d 8 -p ack -e 40 -c 0 -i 6464 -a 0 -x {10.0 9.0 3227 ------- null} + -t 3.66194 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6453 -a 0 -x {9.0 10.0 3231 ------- null} - -t 3.66194 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6453 -a 0 -x {9.0 10.0 3231 ------- null} h -t 3.66194 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6453 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.66203 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6449 -a 0 -x {9.0 10.0 3229 ------- null} + -t 3.66203 -s 10 -d 7 -p ack -e 40 -c 0 -i 6468 -a 0 -x {10.0 9.0 3229 ------- null} - -t 3.66203 -s 10 -d 7 -p ack -e 40 -c 0 -i 6468 -a 0 -x {10.0 9.0 3229 ------- null} h -t 3.66203 -s 10 -d 7 -p ack -e 40 -c 0 -i 6468 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.66205 -s 0 -d 9 -p ack -e 40 -c 0 -i 6460 -a 0 -x {10.0 9.0 3225 ------- null} - -t 3.66205 -s 0 -d 9 -p ack -e 40 -c 0 -i 6460 -a 0 -x {10.0 9.0 3225 ------- null} h -t 3.66205 -s 0 -d 9 -p ack -e 40 -c 0 -i 6460 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.6621 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6463 -a 0 -x {9.0 10.0 3236 ------- null} + -t 3.6621 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6463 -a 0 -x {9.0 10.0 3236 ------- null} h -t 3.6621 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6463 -a 0 -x {9.0 10.0 3236 ------- null} r -t 3.6629 -s 0 -d 9 -p ack -e 40 -c 0 -i 6458 -a 0 -x {10.0 9.0 3224 ------- null} + -t 3.6629 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6469 -a 0 -x {9.0 10.0 3239 ------- null} - -t 3.6629 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6469 -a 0 -x {9.0 10.0 3239 ------- null} h -t 3.6629 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6469 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.66298 -s 10 -d 7 -p ack -e 40 -c 0 -i 6466 -a 0 -x {10.0 9.0 3228 ------- null} + -t 3.66298 -s 7 -d 0 -p ack -e 40 -c 0 -i 6466 -a 0 -x {10.0 9.0 3228 ------- null} h -t 3.66298 -s 7 -d 8 -p ack -e 40 -c 0 -i 6466 -a 0 -x {10.0 9.0 3228 ------- null} + -t 3.66302 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6455 -a 0 -x {9.0 10.0 3232 ------- null} - -t 3.66302 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6455 -a 0 -x {9.0 10.0 3232 ------- null} h -t 3.66302 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6455 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.66309 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6465 -a 0 -x {9.0 10.0 3237 ------- null} + -t 3.66309 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6465 -a 0 -x {9.0 10.0 3237 ------- null} h -t 3.66309 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6465 -a 0 -x {9.0 10.0 3237 ------- null} + -t 3.66326 -s 0 -d 9 -p ack -e 40 -c 0 -i 6462 -a 0 -x {10.0 9.0 3226 ------- null} - -t 3.66326 -s 0 -d 9 -p ack -e 40 -c 0 -i 6462 -a 0 -x {10.0 9.0 3226 ------- null} h -t 3.66326 -s 0 -d 9 -p ack -e 40 -c 0 -i 6462 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.66336 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6451 -a 0 -x {9.0 10.0 3230 ------- null} + -t 3.66336 -s 10 -d 7 -p ack -e 40 -c 0 -i 6470 -a 0 -x {10.0 9.0 3230 ------- null} - -t 3.66336 -s 10 -d 7 -p ack -e 40 -c 0 -i 6470 -a 0 -x {10.0 9.0 3230 ------- null} h -t 3.66336 -s 10 -d 7 -p ack -e 40 -c 0 -i 6470 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.66406 -s 10 -d 7 -p ack -e 40 -c 0 -i 6468 -a 0 -x {10.0 9.0 3229 ------- null} + -t 3.66406 -s 7 -d 0 -p ack -e 40 -c 0 -i 6468 -a 0 -x {10.0 9.0 3229 ------- null} h -t 3.66406 -s 7 -d 8 -p ack -e 40 -c 0 -i 6468 -a 0 -x {10.0 9.0 3229 ------- null} r -t 3.66408 -s 0 -d 9 -p ack -e 40 -c 0 -i 6460 -a 0 -x {10.0 9.0 3225 ------- null} + -t 3.66408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6471 -a 0 -x {9.0 10.0 3240 ------- null} - -t 3.66408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6471 -a 0 -x {9.0 10.0 3240 ------- null} h -t 3.66408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6471 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.66411 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6457 -a 0 -x {9.0 10.0 3233 ------- null} - -t 3.66411 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6457 -a 0 -x {9.0 10.0 3233 ------- null} h -t 3.66411 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6457 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.66421 -s 0 -d 9 -p ack -e 40 -c 0 -i 6464 -a 0 -x {10.0 9.0 3227 ------- null} - -t 3.66421 -s 0 -d 9 -p ack -e 40 -c 0 -i 6464 -a 0 -x {10.0 9.0 3227 ------- null} h -t 3.66421 -s 0 -d 9 -p ack -e 40 -c 0 -i 6464 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.66432 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6467 -a 0 -x {9.0 10.0 3238 ------- null} + -t 3.66432 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6467 -a 0 -x {9.0 10.0 3238 ------- null} h -t 3.66432 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6467 -a 0 -x {9.0 10.0 3238 ------- null} r -t 3.66474 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6453 -a 0 -x {9.0 10.0 3231 ------- null} + -t 3.66474 -s 10 -d 7 -p ack -e 40 -c 0 -i 6472 -a 0 -x {10.0 9.0 3231 ------- null} - -t 3.66474 -s 10 -d 7 -p ack -e 40 -c 0 -i 6472 -a 0 -x {10.0 9.0 3231 ------- null} h -t 3.66474 -s 10 -d 7 -p ack -e 40 -c 0 -i 6472 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.6652 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6459 -a 0 -x {9.0 10.0 3234 ------- null} - -t 3.6652 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6459 -a 0 -x {9.0 10.0 3234 ------- null} h -t 3.6652 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6459 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.6653 -s 0 -d 9 -p ack -e 40 -c 0 -i 6462 -a 0 -x {10.0 9.0 3226 ------- null} + -t 3.6653 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6473 -a 0 -x {9.0 10.0 3241 ------- null} - -t 3.6653 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6473 -a 0 -x {9.0 10.0 3241 ------- null} h -t 3.6653 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6473 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.66539 -s 10 -d 7 -p ack -e 40 -c 0 -i 6470 -a 0 -x {10.0 9.0 3230 ------- null} + -t 3.66539 -s 7 -d 0 -p ack -e 40 -c 0 -i 6470 -a 0 -x {10.0 9.0 3230 ------- null} h -t 3.66539 -s 7 -d 8 -p ack -e 40 -c 0 -i 6470 -a 0 -x {10.0 9.0 3230 ------- null} + -t 3.66549 -s 0 -d 9 -p ack -e 40 -c 0 -i 6466 -a 0 -x {10.0 9.0 3228 ------- null} - -t 3.66549 -s 0 -d 9 -p ack -e 40 -c 0 -i 6466 -a 0 -x {10.0 9.0 3228 ------- null} h -t 3.66549 -s 0 -d 9 -p ack -e 40 -c 0 -i 6466 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.6657 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6469 -a 0 -x {9.0 10.0 3239 ------- null} + -t 3.6657 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6469 -a 0 -x {9.0 10.0 3239 ------- null} h -t 3.6657 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6469 -a 0 -x {9.0 10.0 3239 ------- null} r -t 3.66582 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6455 -a 0 -x {9.0 10.0 3232 ------- null} + -t 3.66582 -s 10 -d 7 -p ack -e 40 -c 0 -i 6474 -a 0 -x {10.0 9.0 3232 ------- null} - -t 3.66582 -s 10 -d 7 -p ack -e 40 -c 0 -i 6474 -a 0 -x {10.0 9.0 3232 ------- null} h -t 3.66582 -s 10 -d 7 -p ack -e 40 -c 0 -i 6474 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.66624 -s 0 -d 9 -p ack -e 40 -c 0 -i 6464 -a 0 -x {10.0 9.0 3227 ------- null} + -t 3.66624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6475 -a 0 -x {9.0 10.0 3242 ------- null} - -t 3.66624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6475 -a 0 -x {9.0 10.0 3242 ------- null} h -t 3.66624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6475 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.6664 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6461 -a 0 -x {9.0 10.0 3235 ------- null} - -t 3.6664 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6461 -a 0 -x {9.0 10.0 3235 ------- null} h -t 3.6664 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6461 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.66651 -s 0 -d 9 -p ack -e 40 -c 0 -i 6468 -a 0 -x {10.0 9.0 3229 ------- null} - -t 3.66651 -s 0 -d 9 -p ack -e 40 -c 0 -i 6468 -a 0 -x {10.0 9.0 3229 ------- null} h -t 3.66651 -s 0 -d 9 -p ack -e 40 -c 0 -i 6468 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.66677 -s 10 -d 7 -p ack -e 40 -c 0 -i 6472 -a 0 -x {10.0 9.0 3231 ------- null} + -t 3.66677 -s 7 -d 0 -p ack -e 40 -c 0 -i 6472 -a 0 -x {10.0 9.0 3231 ------- null} h -t 3.66677 -s 7 -d 8 -p ack -e 40 -c 0 -i 6472 -a 0 -x {10.0 9.0 3231 ------- null} r -t 3.66688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6471 -a 0 -x {9.0 10.0 3240 ------- null} + -t 3.66688 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6471 -a 0 -x {9.0 10.0 3240 ------- null} h -t 3.66688 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6471 -a 0 -x {9.0 10.0 3240 ------- null} r -t 3.66691 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6457 -a 0 -x {9.0 10.0 3233 ------- null} + -t 3.66691 -s 10 -d 7 -p ack -e 40 -c 0 -i 6476 -a 0 -x {10.0 9.0 3233 ------- null} - -t 3.66691 -s 10 -d 7 -p ack -e 40 -c 0 -i 6476 -a 0 -x {10.0 9.0 3233 ------- null} h -t 3.66691 -s 10 -d 7 -p ack -e 40 -c 0 -i 6476 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.66749 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6463 -a 0 -x {9.0 10.0 3236 ------- null} - -t 3.66749 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6463 -a 0 -x {9.0 10.0 3236 ------- null} h -t 3.66749 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6463 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.66752 -s 0 -d 9 -p ack -e 40 -c 0 -i 6466 -a 0 -x {10.0 9.0 3228 ------- null} + -t 3.66752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6477 -a 0 -x {9.0 10.0 3243 ------- null} - -t 3.66752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6477 -a 0 -x {9.0 10.0 3243 ------- null} h -t 3.66752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6477 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.66768 -s 0 -d 9 -p ack -e 40 -c 0 -i 6470 -a 0 -x {10.0 9.0 3230 ------- null} - -t 3.66768 -s 0 -d 9 -p ack -e 40 -c 0 -i 6470 -a 0 -x {10.0 9.0 3230 ------- null} h -t 3.66768 -s 0 -d 9 -p ack -e 40 -c 0 -i 6470 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.66786 -s 10 -d 7 -p ack -e 40 -c 0 -i 6474 -a 0 -x {10.0 9.0 3232 ------- null} + -t 3.66786 -s 7 -d 0 -p ack -e 40 -c 0 -i 6474 -a 0 -x {10.0 9.0 3232 ------- null} h -t 3.66786 -s 7 -d 8 -p ack -e 40 -c 0 -i 6474 -a 0 -x {10.0 9.0 3232 ------- null} r -t 3.668 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6459 -a 0 -x {9.0 10.0 3234 ------- null} + -t 3.668 -s 10 -d 7 -p ack -e 40 -c 0 -i 6478 -a 0 -x {10.0 9.0 3234 ------- null} - -t 3.668 -s 10 -d 7 -p ack -e 40 -c 0 -i 6478 -a 0 -x {10.0 9.0 3234 ------- null} h -t 3.668 -s 10 -d 7 -p ack -e 40 -c 0 -i 6478 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.6681 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6473 -a 0 -x {9.0 10.0 3241 ------- null} + -t 3.6681 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6473 -a 0 -x {9.0 10.0 3241 ------- null} h -t 3.6681 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6473 -a 0 -x {9.0 10.0 3241 ------- null} r -t 3.66854 -s 0 -d 9 -p ack -e 40 -c 0 -i 6468 -a 0 -x {10.0 9.0 3229 ------- null} + -t 3.66854 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6479 -a 0 -x {9.0 10.0 3244 ------- null} - -t 3.66854 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6479 -a 0 -x {9.0 10.0 3244 ------- null} h -t 3.66854 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6479 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.66858 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6465 -a 0 -x {9.0 10.0 3237 ------- null} - -t 3.66858 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6465 -a 0 -x {9.0 10.0 3237 ------- null} h -t 3.66858 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6465 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.6688 -s 0 -d 9 -p ack -e 40 -c 0 -i 6472 -a 0 -x {10.0 9.0 3231 ------- null} - -t 3.6688 -s 0 -d 9 -p ack -e 40 -c 0 -i 6472 -a 0 -x {10.0 9.0 3231 ------- null} h -t 3.6688 -s 0 -d 9 -p ack -e 40 -c 0 -i 6472 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.66894 -s 10 -d 7 -p ack -e 40 -c 0 -i 6476 -a 0 -x {10.0 9.0 3233 ------- null} + -t 3.66894 -s 7 -d 0 -p ack -e 40 -c 0 -i 6476 -a 0 -x {10.0 9.0 3233 ------- null} h -t 3.66894 -s 7 -d 8 -p ack -e 40 -c 0 -i 6476 -a 0 -x {10.0 9.0 3233 ------- null} r -t 3.66904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6475 -a 0 -x {9.0 10.0 3242 ------- null} + -t 3.66904 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6475 -a 0 -x {9.0 10.0 3242 ------- null} h -t 3.66904 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6475 -a 0 -x {9.0 10.0 3242 ------- null} r -t 3.6692 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6461 -a 0 -x {9.0 10.0 3235 ------- null} + -t 3.6692 -s 10 -d 7 -p ack -e 40 -c 0 -i 6480 -a 0 -x {10.0 9.0 3235 ------- null} - -t 3.6692 -s 10 -d 7 -p ack -e 40 -c 0 -i 6480 -a 0 -x {10.0 9.0 3235 ------- null} h -t 3.6692 -s 10 -d 7 -p ack -e 40 -c 0 -i 6480 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.66966 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6467 -a 0 -x {9.0 10.0 3238 ------- null} - -t 3.66966 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6467 -a 0 -x {9.0 10.0 3238 ------- null} h -t 3.66966 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6467 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.66971 -s 0 -d 9 -p ack -e 40 -c 0 -i 6470 -a 0 -x {10.0 9.0 3230 ------- null} + -t 3.66971 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6481 -a 0 -x {9.0 10.0 3245 ------- null} - -t 3.66971 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6481 -a 0 -x {9.0 10.0 3245 ------- null} h -t 3.66971 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6481 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.66986 -s 0 -d 9 -p ack -e 40 -c 0 -i 6474 -a 0 -x {10.0 9.0 3232 ------- null} - -t 3.66986 -s 0 -d 9 -p ack -e 40 -c 0 -i 6474 -a 0 -x {10.0 9.0 3232 ------- null} h -t 3.66986 -s 0 -d 9 -p ack -e 40 -c 0 -i 6474 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.67003 -s 10 -d 7 -p ack -e 40 -c 0 -i 6478 -a 0 -x {10.0 9.0 3234 ------- null} + -t 3.67003 -s 7 -d 0 -p ack -e 40 -c 0 -i 6478 -a 0 -x {10.0 9.0 3234 ------- null} h -t 3.67003 -s 7 -d 8 -p ack -e 40 -c 0 -i 6478 -a 0 -x {10.0 9.0 3234 ------- null} r -t 3.67029 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6463 -a 0 -x {9.0 10.0 3236 ------- null} + -t 3.67029 -s 10 -d 7 -p ack -e 40 -c 0 -i 6482 -a 0 -x {10.0 9.0 3236 ------- null} - -t 3.67029 -s 10 -d 7 -p ack -e 40 -c 0 -i 6482 -a 0 -x {10.0 9.0 3236 ------- null} h -t 3.67029 -s 10 -d 7 -p ack -e 40 -c 0 -i 6482 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.67032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6477 -a 0 -x {9.0 10.0 3243 ------- null} + -t 3.67032 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6477 -a 0 -x {9.0 10.0 3243 ------- null} h -t 3.67032 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6477 -a 0 -x {9.0 10.0 3243 ------- null} + -t 3.67075 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6469 -a 0 -x {9.0 10.0 3239 ------- null} - -t 3.67075 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6469 -a 0 -x {9.0 10.0 3239 ------- null} h -t 3.67075 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6469 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.67083 -s 0 -d 9 -p ack -e 40 -c 0 -i 6476 -a 0 -x {10.0 9.0 3233 ------- null} - -t 3.67083 -s 0 -d 9 -p ack -e 40 -c 0 -i 6476 -a 0 -x {10.0 9.0 3233 ------- null} h -t 3.67083 -s 0 -d 9 -p ack -e 40 -c 0 -i 6476 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.67083 -s 0 -d 9 -p ack -e 40 -c 0 -i 6472 -a 0 -x {10.0 9.0 3231 ------- null} + -t 3.67083 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6483 -a 0 -x {9.0 10.0 3246 ------- null} - -t 3.67083 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6483 -a 0 -x {9.0 10.0 3246 ------- null} h -t 3.67083 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6483 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.67123 -s 10 -d 7 -p ack -e 40 -c 0 -i 6480 -a 0 -x {10.0 9.0 3235 ------- null} + -t 3.67123 -s 7 -d 0 -p ack -e 40 -c 0 -i 6480 -a 0 -x {10.0 9.0 3235 ------- null} h -t 3.67123 -s 7 -d 8 -p ack -e 40 -c 0 -i 6480 -a 0 -x {10.0 9.0 3235 ------- null} r -t 3.67134 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6479 -a 0 -x {9.0 10.0 3244 ------- null} + -t 3.67134 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6479 -a 0 -x {9.0 10.0 3244 ------- null} h -t 3.67134 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6479 -a 0 -x {9.0 10.0 3244 ------- null} r -t 3.67138 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6465 -a 0 -x {9.0 10.0 3237 ------- null} + -t 3.67138 -s 10 -d 7 -p ack -e 40 -c 0 -i 6484 -a 0 -x {10.0 9.0 3237 ------- null} - -t 3.67138 -s 10 -d 7 -p ack -e 40 -c 0 -i 6484 -a 0 -x {10.0 9.0 3237 ------- null} h -t 3.67138 -s 10 -d 7 -p ack -e 40 -c 0 -i 6484 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.67184 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6471 -a 0 -x {9.0 10.0 3240 ------- null} - -t 3.67184 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6471 -a 0 -x {9.0 10.0 3240 ------- null} h -t 3.67184 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6471 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.67189 -s 0 -d 9 -p ack -e 40 -c 0 -i 6474 -a 0 -x {10.0 9.0 3232 ------- null} + -t 3.67189 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6485 -a 0 -x {9.0 10.0 3247 ------- null} - -t 3.67189 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6485 -a 0 -x {9.0 10.0 3247 ------- null} h -t 3.67189 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6485 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.67192 -s 0 -d 9 -p ack -e 40 -c 0 -i 6478 -a 0 -x {10.0 9.0 3234 ------- null} - -t 3.67192 -s 0 -d 9 -p ack -e 40 -c 0 -i 6478 -a 0 -x {10.0 9.0 3234 ------- null} h -t 3.67192 -s 0 -d 9 -p ack -e 40 -c 0 -i 6478 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.67232 -s 10 -d 7 -p ack -e 40 -c 0 -i 6482 -a 0 -x {10.0 9.0 3236 ------- null} + -t 3.67232 -s 7 -d 0 -p ack -e 40 -c 0 -i 6482 -a 0 -x {10.0 9.0 3236 ------- null} h -t 3.67232 -s 7 -d 8 -p ack -e 40 -c 0 -i 6482 -a 0 -x {10.0 9.0 3236 ------- null} r -t 3.67246 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6467 -a 0 -x {9.0 10.0 3238 ------- null} + -t 3.67246 -s 10 -d 7 -p ack -e 40 -c 0 -i 6486 -a 0 -x {10.0 9.0 3238 ------- null} - -t 3.67246 -s 10 -d 7 -p ack -e 40 -c 0 -i 6486 -a 0 -x {10.0 9.0 3238 ------- null} h -t 3.67246 -s 10 -d 7 -p ack -e 40 -c 0 -i 6486 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.67251 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6481 -a 0 -x {9.0 10.0 3245 ------- null} + -t 3.67251 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6481 -a 0 -x {9.0 10.0 3245 ------- null} h -t 3.67251 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6481 -a 0 -x {9.0 10.0 3245 ------- null} r -t 3.67286 -s 0 -d 9 -p ack -e 40 -c 0 -i 6476 -a 0 -x {10.0 9.0 3233 ------- null} + -t 3.67286 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6487 -a 0 -x {9.0 10.0 3248 ------- null} - -t 3.67286 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6487 -a 0 -x {9.0 10.0 3248 ------- null} h -t 3.67286 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6487 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.67293 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6473 -a 0 -x {9.0 10.0 3241 ------- null} - -t 3.67293 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6473 -a 0 -x {9.0 10.0 3241 ------- null} h -t 3.67293 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6473 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.6732 -s 0 -d 9 -p ack -e 40 -c 0 -i 6480 -a 0 -x {10.0 9.0 3235 ------- null} - -t 3.6732 -s 0 -d 9 -p ack -e 40 -c 0 -i 6480 -a 0 -x {10.0 9.0 3235 ------- null} h -t 3.6732 -s 0 -d 9 -p ack -e 40 -c 0 -i 6480 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.67341 -s 10 -d 7 -p ack -e 40 -c 0 -i 6484 -a 0 -x {10.0 9.0 3237 ------- null} + -t 3.67341 -s 7 -d 0 -p ack -e 40 -c 0 -i 6484 -a 0 -x {10.0 9.0 3237 ------- null} h -t 3.67341 -s 7 -d 8 -p ack -e 40 -c 0 -i 6484 -a 0 -x {10.0 9.0 3237 ------- null} r -t 3.67355 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6469 -a 0 -x {9.0 10.0 3239 ------- null} + -t 3.67355 -s 10 -d 7 -p ack -e 40 -c 0 -i 6488 -a 0 -x {10.0 9.0 3239 ------- null} - -t 3.67355 -s 10 -d 7 -p ack -e 40 -c 0 -i 6488 -a 0 -x {10.0 9.0 3239 ------- null} h -t 3.67355 -s 10 -d 7 -p ack -e 40 -c 0 -i 6488 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.67363 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6483 -a 0 -x {9.0 10.0 3246 ------- null} + -t 3.67363 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6483 -a 0 -x {9.0 10.0 3246 ------- null} h -t 3.67363 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6483 -a 0 -x {9.0 10.0 3246 ------- null} r -t 3.67395 -s 0 -d 9 -p ack -e 40 -c 0 -i 6478 -a 0 -x {10.0 9.0 3234 ------- null} + -t 3.67395 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6489 -a 0 -x {9.0 10.0 3249 ------- null} - -t 3.67395 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6489 -a 0 -x {9.0 10.0 3249 ------- null} h -t 3.67395 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6489 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.67411 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6475 -a 0 -x {9.0 10.0 3242 ------- null} - -t 3.67411 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6475 -a 0 -x {9.0 10.0 3242 ------- null} h -t 3.67411 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6475 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.67424 -s 0 -d 9 -p ack -e 40 -c 0 -i 6482 -a 0 -x {10.0 9.0 3236 ------- null} - -t 3.67424 -s 0 -d 9 -p ack -e 40 -c 0 -i 6482 -a 0 -x {10.0 9.0 3236 ------- null} h -t 3.67424 -s 0 -d 9 -p ack -e 40 -c 0 -i 6482 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.6745 -s 10 -d 7 -p ack -e 40 -c 0 -i 6486 -a 0 -x {10.0 9.0 3238 ------- null} + -t 3.6745 -s 7 -d 0 -p ack -e 40 -c 0 -i 6486 -a 0 -x {10.0 9.0 3238 ------- null} h -t 3.6745 -s 7 -d 8 -p ack -e 40 -c 0 -i 6486 -a 0 -x {10.0 9.0 3238 ------- null} r -t 3.67464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6471 -a 0 -x {9.0 10.0 3240 ------- null} + -t 3.67464 -s 10 -d 7 -p ack -e 40 -c 0 -i 6490 -a 0 -x {10.0 9.0 3240 ------- null} - -t 3.67464 -s 10 -d 7 -p ack -e 40 -c 0 -i 6490 -a 0 -x {10.0 9.0 3240 ------- null} h -t 3.67464 -s 10 -d 7 -p ack -e 40 -c 0 -i 6490 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.67469 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6485 -a 0 -x {9.0 10.0 3247 ------- null} + -t 3.67469 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6485 -a 0 -x {9.0 10.0 3247 ------- null} h -t 3.67469 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6485 -a 0 -x {9.0 10.0 3247 ------- null} + -t 3.6752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6477 -a 0 -x {9.0 10.0 3243 ------- null} - -t 3.6752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6477 -a 0 -x {9.0 10.0 3243 ------- null} h -t 3.6752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6477 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.67523 -s 0 -d 9 -p ack -e 40 -c 0 -i 6480 -a 0 -x {10.0 9.0 3235 ------- null} + -t 3.67523 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6491 -a 0 -x {9.0 10.0 3250 ------- null} - -t 3.67523 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6491 -a 0 -x {9.0 10.0 3250 ------- null} h -t 3.67523 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6491 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.67538 -s 0 -d 9 -p ack -e 40 -c 0 -i 6484 -a 0 -x {10.0 9.0 3237 ------- null} - -t 3.67538 -s 0 -d 9 -p ack -e 40 -c 0 -i 6484 -a 0 -x {10.0 9.0 3237 ------- null} h -t 3.67538 -s 0 -d 9 -p ack -e 40 -c 0 -i 6484 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.67558 -s 10 -d 7 -p ack -e 40 -c 0 -i 6488 -a 0 -x {10.0 9.0 3239 ------- null} + -t 3.67558 -s 7 -d 0 -p ack -e 40 -c 0 -i 6488 -a 0 -x {10.0 9.0 3239 ------- null} h -t 3.67558 -s 7 -d 8 -p ack -e 40 -c 0 -i 6488 -a 0 -x {10.0 9.0 3239 ------- null} r -t 3.67566 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6487 -a 0 -x {9.0 10.0 3248 ------- null} + -t 3.67566 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6487 -a 0 -x {9.0 10.0 3248 ------- null} h -t 3.67566 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6487 -a 0 -x {9.0 10.0 3248 ------- null} r -t 3.67573 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6473 -a 0 -x {9.0 10.0 3241 ------- null} + -t 3.67573 -s 10 -d 7 -p ack -e 40 -c 0 -i 6492 -a 0 -x {10.0 9.0 3241 ------- null} - -t 3.67573 -s 10 -d 7 -p ack -e 40 -c 0 -i 6492 -a 0 -x {10.0 9.0 3241 ------- null} h -t 3.67573 -s 10 -d 7 -p ack -e 40 -c 0 -i 6492 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.67627 -s 0 -d 9 -p ack -e 40 -c 0 -i 6482 -a 0 -x {10.0 9.0 3236 ------- null} + -t 3.67627 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6493 -a 0 -x {9.0 10.0 3251 ------- null} - -t 3.67627 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6493 -a 0 -x {9.0 10.0 3251 ------- null} h -t 3.67627 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6493 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.67629 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6479 -a 0 -x {9.0 10.0 3244 ------- null} - -t 3.67629 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6479 -a 0 -x {9.0 10.0 3244 ------- null} h -t 3.67629 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6479 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.6765 -s 0 -d 9 -p ack -e 40 -c 0 -i 6486 -a 0 -x {10.0 9.0 3238 ------- null} - -t 3.6765 -s 0 -d 9 -p ack -e 40 -c 0 -i 6486 -a 0 -x {10.0 9.0 3238 ------- null} h -t 3.6765 -s 0 -d 9 -p ack -e 40 -c 0 -i 6486 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.67667 -s 10 -d 7 -p ack -e 40 -c 0 -i 6490 -a 0 -x {10.0 9.0 3240 ------- null} + -t 3.67667 -s 7 -d 0 -p ack -e 40 -c 0 -i 6490 -a 0 -x {10.0 9.0 3240 ------- null} h -t 3.67667 -s 7 -d 8 -p ack -e 40 -c 0 -i 6490 -a 0 -x {10.0 9.0 3240 ------- null} r -t 3.67675 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6489 -a 0 -x {9.0 10.0 3249 ------- null} + -t 3.67675 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6489 -a 0 -x {9.0 10.0 3249 ------- null} h -t 3.67675 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6489 -a 0 -x {9.0 10.0 3249 ------- null} r -t 3.67691 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6475 -a 0 -x {9.0 10.0 3242 ------- null} + -t 3.67691 -s 10 -d 7 -p ack -e 40 -c 0 -i 6494 -a 0 -x {10.0 9.0 3242 ------- null} - -t 3.67691 -s 10 -d 7 -p ack -e 40 -c 0 -i 6494 -a 0 -x {10.0 9.0 3242 ------- null} h -t 3.67691 -s 10 -d 7 -p ack -e 40 -c 0 -i 6494 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.67738 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6481 -a 0 -x {9.0 10.0 3245 ------- null} - -t 3.67738 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6481 -a 0 -x {9.0 10.0 3245 ------- null} h -t 3.67738 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6481 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.67741 -s 0 -d 9 -p ack -e 40 -c 0 -i 6484 -a 0 -x {10.0 9.0 3237 ------- null} + -t 3.67741 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6495 -a 0 -x {9.0 10.0 3252 ------- null} - -t 3.67741 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6495 -a 0 -x {9.0 10.0 3252 ------- null} h -t 3.67741 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6495 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.67752 -s 0 -d 9 -p ack -e 40 -c 0 -i 6488 -a 0 -x {10.0 9.0 3239 ------- null} - -t 3.67752 -s 0 -d 9 -p ack -e 40 -c 0 -i 6488 -a 0 -x {10.0 9.0 3239 ------- null} h -t 3.67752 -s 0 -d 9 -p ack -e 40 -c 0 -i 6488 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.67776 -s 10 -d 7 -p ack -e 40 -c 0 -i 6492 -a 0 -x {10.0 9.0 3241 ------- null} + -t 3.67776 -s 7 -d 0 -p ack -e 40 -c 0 -i 6492 -a 0 -x {10.0 9.0 3241 ------- null} h -t 3.67776 -s 7 -d 8 -p ack -e 40 -c 0 -i 6492 -a 0 -x {10.0 9.0 3241 ------- null} r -t 3.678 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6477 -a 0 -x {9.0 10.0 3243 ------- null} + -t 3.678 -s 10 -d 7 -p ack -e 40 -c 0 -i 6496 -a 0 -x {10.0 9.0 3243 ------- null} - -t 3.678 -s 10 -d 7 -p ack -e 40 -c 0 -i 6496 -a 0 -x {10.0 9.0 3243 ------- null} h -t 3.678 -s 10 -d 7 -p ack -e 40 -c 0 -i 6496 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.67803 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6491 -a 0 -x {9.0 10.0 3250 ------- null} + -t 3.67803 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6491 -a 0 -x {9.0 10.0 3250 ------- null} h -t 3.67803 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6491 -a 0 -x {9.0 10.0 3250 ------- null} + -t 3.67846 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6483 -a 0 -x {9.0 10.0 3246 ------- null} - -t 3.67846 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6483 -a 0 -x {9.0 10.0 3246 ------- null} h -t 3.67846 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6483 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.67853 -s 0 -d 9 -p ack -e 40 -c 0 -i 6486 -a 0 -x {10.0 9.0 3238 ------- null} + -t 3.67853 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6497 -a 0 -x {9.0 10.0 3253 ------- null} - -t 3.67853 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6497 -a 0 -x {9.0 10.0 3253 ------- null} h -t 3.67853 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6497 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.67877 -s 0 -d 9 -p ack -e 40 -c 0 -i 6490 -a 0 -x {10.0 9.0 3240 ------- null} - -t 3.67877 -s 0 -d 9 -p ack -e 40 -c 0 -i 6490 -a 0 -x {10.0 9.0 3240 ------- null} h -t 3.67877 -s 0 -d 9 -p ack -e 40 -c 0 -i 6490 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.67894 -s 10 -d 7 -p ack -e 40 -c 0 -i 6494 -a 0 -x {10.0 9.0 3242 ------- null} + -t 3.67894 -s 7 -d 0 -p ack -e 40 -c 0 -i 6494 -a 0 -x {10.0 9.0 3242 ------- null} h -t 3.67894 -s 7 -d 8 -p ack -e 40 -c 0 -i 6494 -a 0 -x {10.0 9.0 3242 ------- null} r -t 3.67907 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6493 -a 0 -x {9.0 10.0 3251 ------- null} + -t 3.67907 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6493 -a 0 -x {9.0 10.0 3251 ------- null} h -t 3.67907 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6493 -a 0 -x {9.0 10.0 3251 ------- null} r -t 3.67909 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6479 -a 0 -x {9.0 10.0 3244 ------- null} + -t 3.67909 -s 10 -d 7 -p ack -e 40 -c 0 -i 6498 -a 0 -x {10.0 9.0 3244 ------- null} - -t 3.67909 -s 10 -d 7 -p ack -e 40 -c 0 -i 6498 -a 0 -x {10.0 9.0 3244 ------- null} h -t 3.67909 -s 10 -d 7 -p ack -e 40 -c 0 -i 6498 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.67955 -s 0 -d 9 -p ack -e 40 -c 0 -i 6488 -a 0 -x {10.0 9.0 3239 ------- null} + -t 3.67955 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6499 -a 0 -x {9.0 10.0 3254 ------- null} - -t 3.67955 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6499 -a 0 -x {9.0 10.0 3254 ------- null} h -t 3.67955 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6499 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.67973 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6485 -a 0 -x {9.0 10.0 3247 ------- null} - -t 3.67973 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6485 -a 0 -x {9.0 10.0 3247 ------- null} h -t 3.67973 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6485 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.67982 -s 0 -d 9 -p ack -e 40 -c 0 -i 6492 -a 0 -x {10.0 9.0 3241 ------- null} - -t 3.67982 -s 0 -d 9 -p ack -e 40 -c 0 -i 6492 -a 0 -x {10.0 9.0 3241 ------- null} h -t 3.67982 -s 0 -d 9 -p ack -e 40 -c 0 -i 6492 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.68003 -s 10 -d 7 -p ack -e 40 -c 0 -i 6496 -a 0 -x {10.0 9.0 3243 ------- null} + -t 3.68003 -s 7 -d 0 -p ack -e 40 -c 0 -i 6496 -a 0 -x {10.0 9.0 3243 ------- null} h -t 3.68003 -s 7 -d 8 -p ack -e 40 -c 0 -i 6496 -a 0 -x {10.0 9.0 3243 ------- null} r -t 3.68018 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6481 -a 0 -x {9.0 10.0 3245 ------- null} + -t 3.68018 -s 10 -d 7 -p ack -e 40 -c 0 -i 6500 -a 0 -x {10.0 9.0 3245 ------- null} - -t 3.68018 -s 10 -d 7 -p ack -e 40 -c 0 -i 6500 -a 0 -x {10.0 9.0 3245 ------- null} h -t 3.68018 -s 10 -d 7 -p ack -e 40 -c 0 -i 6500 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.68021 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6495 -a 0 -x {9.0 10.0 3252 ------- null} + -t 3.68021 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6495 -a 0 -x {9.0 10.0 3252 ------- null} h -t 3.68021 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6495 -a 0 -x {9.0 10.0 3252 ------- null} r -t 3.6808 -s 0 -d 9 -p ack -e 40 -c 0 -i 6490 -a 0 -x {10.0 9.0 3240 ------- null} + -t 3.6808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6501 -a 0 -x {9.0 10.0 3255 ------- null} - -t 3.6808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6501 -a 0 -x {9.0 10.0 3255 ------- null} h -t 3.6808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6501 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.68082 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6487 -a 0 -x {9.0 10.0 3248 ------- null} - -t 3.68082 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6487 -a 0 -x {9.0 10.0 3248 ------- null} h -t 3.68082 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6487 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.68106 -s 0 -d 9 -p ack -e 40 -c 0 -i 6494 -a 0 -x {10.0 9.0 3242 ------- null} - -t 3.68106 -s 0 -d 9 -p ack -e 40 -c 0 -i 6494 -a 0 -x {10.0 9.0 3242 ------- null} h -t 3.68106 -s 0 -d 9 -p ack -e 40 -c 0 -i 6494 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.68112 -s 10 -d 7 -p ack -e 40 -c 0 -i 6498 -a 0 -x {10.0 9.0 3244 ------- null} + -t 3.68112 -s 7 -d 0 -p ack -e 40 -c 0 -i 6498 -a 0 -x {10.0 9.0 3244 ------- null} h -t 3.68112 -s 7 -d 8 -p ack -e 40 -c 0 -i 6498 -a 0 -x {10.0 9.0 3244 ------- null} r -t 3.68126 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6483 -a 0 -x {9.0 10.0 3246 ------- null} + -t 3.68126 -s 10 -d 7 -p ack -e 40 -c 0 -i 6502 -a 0 -x {10.0 9.0 3246 ------- null} - -t 3.68126 -s 10 -d 7 -p ack -e 40 -c 0 -i 6502 -a 0 -x {10.0 9.0 3246 ------- null} h -t 3.68126 -s 10 -d 7 -p ack -e 40 -c 0 -i 6502 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.68133 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6497 -a 0 -x {9.0 10.0 3253 ------- null} + -t 3.68133 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6497 -a 0 -x {9.0 10.0 3253 ------- null} h -t 3.68133 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6497 -a 0 -x {9.0 10.0 3253 ------- null} r -t 3.68186 -s 0 -d 9 -p ack -e 40 -c 0 -i 6492 -a 0 -x {10.0 9.0 3241 ------- null} + -t 3.68186 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6503 -a 0 -x {9.0 10.0 3256 ------- null} - -t 3.68186 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6503 -a 0 -x {9.0 10.0 3256 ------- null} h -t 3.68186 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6503 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.6819 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6489 -a 0 -x {9.0 10.0 3249 ------- null} - -t 3.6819 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6489 -a 0 -x {9.0 10.0 3249 ------- null} h -t 3.6819 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6489 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.68202 -s 0 -d 9 -p ack -e 40 -c 0 -i 6496 -a 0 -x {10.0 9.0 3243 ------- null} - -t 3.68202 -s 0 -d 9 -p ack -e 40 -c 0 -i 6496 -a 0 -x {10.0 9.0 3243 ------- null} h -t 3.68202 -s 0 -d 9 -p ack -e 40 -c 0 -i 6496 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.68221 -s 10 -d 7 -p ack -e 40 -c 0 -i 6500 -a 0 -x {10.0 9.0 3245 ------- null} + -t 3.68221 -s 7 -d 0 -p ack -e 40 -c 0 -i 6500 -a 0 -x {10.0 9.0 3245 ------- null} h -t 3.68221 -s 7 -d 8 -p ack -e 40 -c 0 -i 6500 -a 0 -x {10.0 9.0 3245 ------- null} r -t 3.68235 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6499 -a 0 -x {9.0 10.0 3254 ------- null} + -t 3.68235 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6499 -a 0 -x {9.0 10.0 3254 ------- null} h -t 3.68235 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6499 -a 0 -x {9.0 10.0 3254 ------- null} r -t 3.68253 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6485 -a 0 -x {9.0 10.0 3247 ------- null} + -t 3.68253 -s 10 -d 7 -p ack -e 40 -c 0 -i 6504 -a 0 -x {10.0 9.0 3247 ------- null} - -t 3.68253 -s 10 -d 7 -p ack -e 40 -c 0 -i 6504 -a 0 -x {10.0 9.0 3247 ------- null} h -t 3.68253 -s 10 -d 7 -p ack -e 40 -c 0 -i 6504 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.68299 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6491 -a 0 -x {9.0 10.0 3250 ------- null} - -t 3.68299 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6491 -a 0 -x {9.0 10.0 3250 ------- null} h -t 3.68299 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6491 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.68309 -s 0 -d 9 -p ack -e 40 -c 0 -i 6494 -a 0 -x {10.0 9.0 3242 ------- null} + -t 3.68309 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6505 -a 0 -x {9.0 10.0 3257 ------- null} - -t 3.68309 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6505 -a 0 -x {9.0 10.0 3257 ------- null} h -t 3.68309 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6505 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.68325 -s 0 -d 9 -p ack -e 40 -c 0 -i 6498 -a 0 -x {10.0 9.0 3244 ------- null} - -t 3.68325 -s 0 -d 9 -p ack -e 40 -c 0 -i 6498 -a 0 -x {10.0 9.0 3244 ------- null} h -t 3.68325 -s 0 -d 9 -p ack -e 40 -c 0 -i 6498 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.6833 -s 10 -d 7 -p ack -e 40 -c 0 -i 6502 -a 0 -x {10.0 9.0 3246 ------- null} + -t 3.6833 -s 7 -d 0 -p ack -e 40 -c 0 -i 6502 -a 0 -x {10.0 9.0 3246 ------- null} h -t 3.6833 -s 7 -d 8 -p ack -e 40 -c 0 -i 6502 -a 0 -x {10.0 9.0 3246 ------- null} r -t 3.6836 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6501 -a 0 -x {9.0 10.0 3255 ------- null} + -t 3.6836 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6501 -a 0 -x {9.0 10.0 3255 ------- null} h -t 3.6836 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6501 -a 0 -x {9.0 10.0 3255 ------- null} r -t 3.68362 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6487 -a 0 -x {9.0 10.0 3248 ------- null} + -t 3.68362 -s 10 -d 7 -p ack -e 40 -c 0 -i 6506 -a 0 -x {10.0 9.0 3248 ------- null} - -t 3.68362 -s 10 -d 7 -p ack -e 40 -c 0 -i 6506 -a 0 -x {10.0 9.0 3248 ------- null} h -t 3.68362 -s 10 -d 7 -p ack -e 40 -c 0 -i 6506 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.68405 -s 0 -d 9 -p ack -e 40 -c 0 -i 6496 -a 0 -x {10.0 9.0 3243 ------- null} + -t 3.68405 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6507 -a 0 -x {9.0 10.0 3258 ------- null} - -t 3.68405 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6507 -a 0 -x {9.0 10.0 3258 ------- null} h -t 3.68405 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6507 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.68416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6493 -a 0 -x {9.0 10.0 3251 ------- null} - -t 3.68416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6493 -a 0 -x {9.0 10.0 3251 ------- null} h -t 3.68416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6493 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.6843 -s 0 -d 9 -p ack -e 40 -c 0 -i 6500 -a 0 -x {10.0 9.0 3245 ------- null} - -t 3.6843 -s 0 -d 9 -p ack -e 40 -c 0 -i 6500 -a 0 -x {10.0 9.0 3245 ------- null} h -t 3.6843 -s 0 -d 9 -p ack -e 40 -c 0 -i 6500 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.68456 -s 10 -d 7 -p ack -e 40 -c 0 -i 6504 -a 0 -x {10.0 9.0 3247 ------- null} + -t 3.68456 -s 7 -d 0 -p ack -e 40 -c 0 -i 6504 -a 0 -x {10.0 9.0 3247 ------- null} h -t 3.68456 -s 7 -d 8 -p ack -e 40 -c 0 -i 6504 -a 0 -x {10.0 9.0 3247 ------- null} r -t 3.68466 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6503 -a 0 -x {9.0 10.0 3256 ------- null} + -t 3.68466 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6503 -a 0 -x {9.0 10.0 3256 ------- null} h -t 3.68466 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6503 -a 0 -x {9.0 10.0 3256 ------- null} r -t 3.6847 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6489 -a 0 -x {9.0 10.0 3249 ------- null} + -t 3.6847 -s 10 -d 7 -p ack -e 40 -c 0 -i 6508 -a 0 -x {10.0 9.0 3249 ------- null} - -t 3.6847 -s 10 -d 7 -p ack -e 40 -c 0 -i 6508 -a 0 -x {10.0 9.0 3249 ------- null} h -t 3.6847 -s 10 -d 7 -p ack -e 40 -c 0 -i 6508 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.68525 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6495 -a 0 -x {9.0 10.0 3252 ------- null} - -t 3.68525 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6495 -a 0 -x {9.0 10.0 3252 ------- null} h -t 3.68525 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6495 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.68528 -s 0 -d 9 -p ack -e 40 -c 0 -i 6498 -a 0 -x {10.0 9.0 3244 ------- null} + -t 3.68528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6509 -a 0 -x {9.0 10.0 3259 ------- null} - -t 3.68528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6509 -a 0 -x {9.0 10.0 3259 ------- null} h -t 3.68528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6509 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.68554 -s 0 -d 9 -p ack -e 40 -c 0 -i 6502 -a 0 -x {10.0 9.0 3246 ------- null} - -t 3.68554 -s 0 -d 9 -p ack -e 40 -c 0 -i 6502 -a 0 -x {10.0 9.0 3246 ------- null} h -t 3.68554 -s 0 -d 9 -p ack -e 40 -c 0 -i 6502 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.68565 -s 10 -d 7 -p ack -e 40 -c 0 -i 6506 -a 0 -x {10.0 9.0 3248 ------- null} + -t 3.68565 -s 7 -d 0 -p ack -e 40 -c 0 -i 6506 -a 0 -x {10.0 9.0 3248 ------- null} h -t 3.68565 -s 7 -d 8 -p ack -e 40 -c 0 -i 6506 -a 0 -x {10.0 9.0 3248 ------- null} r -t 3.68579 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6491 -a 0 -x {9.0 10.0 3250 ------- null} + -t 3.68579 -s 10 -d 7 -p ack -e 40 -c 0 -i 6510 -a 0 -x {10.0 9.0 3250 ------- null} - -t 3.68579 -s 10 -d 7 -p ack -e 40 -c 0 -i 6510 -a 0 -x {10.0 9.0 3250 ------- null} h -t 3.68579 -s 10 -d 7 -p ack -e 40 -c 0 -i 6510 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.68589 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6505 -a 0 -x {9.0 10.0 3257 ------- null} + -t 3.68589 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6505 -a 0 -x {9.0 10.0 3257 ------- null} h -t 3.68589 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6505 -a 0 -x {9.0 10.0 3257 ------- null} r -t 3.68634 -s 0 -d 9 -p ack -e 40 -c 0 -i 6500 -a 0 -x {10.0 9.0 3245 ------- null} + -t 3.68634 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6511 -a 0 -x {9.0 10.0 3260 ------- null} - -t 3.68634 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6511 -a 0 -x {9.0 10.0 3260 ------- null} h -t 3.68634 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6511 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.68643 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6497 -a 0 -x {9.0 10.0 3253 ------- null} - -t 3.68643 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6497 -a 0 -x {9.0 10.0 3253 ------- null} h -t 3.68643 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6497 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.68656 -s 0 -d 9 -p ack -e 40 -c 0 -i 6504 -a 0 -x {10.0 9.0 3247 ------- null} - -t 3.68656 -s 0 -d 9 -p ack -e 40 -c 0 -i 6504 -a 0 -x {10.0 9.0 3247 ------- null} h -t 3.68656 -s 0 -d 9 -p ack -e 40 -c 0 -i 6504 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.68674 -s 10 -d 7 -p ack -e 40 -c 0 -i 6508 -a 0 -x {10.0 9.0 3249 ------- null} + -t 3.68674 -s 7 -d 0 -p ack -e 40 -c 0 -i 6508 -a 0 -x {10.0 9.0 3249 ------- null} h -t 3.68674 -s 7 -d 8 -p ack -e 40 -c 0 -i 6508 -a 0 -x {10.0 9.0 3249 ------- null} r -t 3.68685 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6507 -a 0 -x {9.0 10.0 3258 ------- null} + -t 3.68685 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6507 -a 0 -x {9.0 10.0 3258 ------- null} h -t 3.68685 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6507 -a 0 -x {9.0 10.0 3258 ------- null} r -t 3.68696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6493 -a 0 -x {9.0 10.0 3251 ------- null} + -t 3.68696 -s 10 -d 7 -p ack -e 40 -c 0 -i 6512 -a 0 -x {10.0 9.0 3251 ------- null} - -t 3.68696 -s 10 -d 7 -p ack -e 40 -c 0 -i 6512 -a 0 -x {10.0 9.0 3251 ------- null} h -t 3.68696 -s 10 -d 7 -p ack -e 40 -c 0 -i 6512 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.68752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6499 -a 0 -x {9.0 10.0 3254 ------- null} - -t 3.68752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6499 -a 0 -x {9.0 10.0 3254 ------- null} h -t 3.68752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6499 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.68757 -s 0 -d 9 -p ack -e 40 -c 0 -i 6502 -a 0 -x {10.0 9.0 3246 ------- null} + -t 3.68757 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6513 -a 0 -x {9.0 10.0 3261 ------- null} - -t 3.68757 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6513 -a 0 -x {9.0 10.0 3261 ------- null} h -t 3.68757 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6513 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.68778 -s 0 -d 9 -p ack -e 40 -c 0 -i 6506 -a 0 -x {10.0 9.0 3248 ------- null} - -t 3.68778 -s 0 -d 9 -p ack -e 40 -c 0 -i 6506 -a 0 -x {10.0 9.0 3248 ------- null} h -t 3.68778 -s 0 -d 9 -p ack -e 40 -c 0 -i 6506 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.68782 -s 10 -d 7 -p ack -e 40 -c 0 -i 6510 -a 0 -x {10.0 9.0 3250 ------- null} + -t 3.68782 -s 7 -d 0 -p ack -e 40 -c 0 -i 6510 -a 0 -x {10.0 9.0 3250 ------- null} h -t 3.68782 -s 7 -d 8 -p ack -e 40 -c 0 -i 6510 -a 0 -x {10.0 9.0 3250 ------- null} r -t 3.68805 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6495 -a 0 -x {9.0 10.0 3252 ------- null} + -t 3.68805 -s 10 -d 7 -p ack -e 40 -c 0 -i 6514 -a 0 -x {10.0 9.0 3252 ------- null} - -t 3.68805 -s 10 -d 7 -p ack -e 40 -c 0 -i 6514 -a 0 -x {10.0 9.0 3252 ------- null} h -t 3.68805 -s 10 -d 7 -p ack -e 40 -c 0 -i 6514 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.68808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6509 -a 0 -x {9.0 10.0 3259 ------- null} + -t 3.68808 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6509 -a 0 -x {9.0 10.0 3259 ------- null} h -t 3.68808 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6509 -a 0 -x {9.0 10.0 3259 ------- null} r -t 3.68859 -s 0 -d 9 -p ack -e 40 -c 0 -i 6504 -a 0 -x {10.0 9.0 3247 ------- null} + -t 3.68859 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6515 -a 0 -x {9.0 10.0 3262 ------- null} - -t 3.68859 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6515 -a 0 -x {9.0 10.0 3262 ------- null} h -t 3.68859 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6515 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.68877 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6501 -a 0 -x {9.0 10.0 3255 ------- null} - -t 3.68877 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6501 -a 0 -x {9.0 10.0 3255 ------- null} h -t 3.68877 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6501 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.68899 -s 10 -d 7 -p ack -e 40 -c 0 -i 6512 -a 0 -x {10.0 9.0 3251 ------- null} + -t 3.68899 -s 7 -d 0 -p ack -e 40 -c 0 -i 6512 -a 0 -x {10.0 9.0 3251 ------- null} h -t 3.68899 -s 7 -d 8 -p ack -e 40 -c 0 -i 6512 -a 0 -x {10.0 9.0 3251 ------- null} + -t 3.68901 -s 0 -d 9 -p ack -e 40 -c 0 -i 6508 -a 0 -x {10.0 9.0 3249 ------- null} - -t 3.68901 -s 0 -d 9 -p ack -e 40 -c 0 -i 6508 -a 0 -x {10.0 9.0 3249 ------- null} h -t 3.68901 -s 0 -d 9 -p ack -e 40 -c 0 -i 6508 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.68914 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6511 -a 0 -x {9.0 10.0 3260 ------- null} + -t 3.68914 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6511 -a 0 -x {9.0 10.0 3260 ------- null} h -t 3.68914 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6511 -a 0 -x {9.0 10.0 3260 ------- null} r -t 3.68923 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6497 -a 0 -x {9.0 10.0 3253 ------- null} + -t 3.68923 -s 10 -d 7 -p ack -e 40 -c 0 -i 6516 -a 0 -x {10.0 9.0 3253 ------- null} - -t 3.68923 -s 10 -d 7 -p ack -e 40 -c 0 -i 6516 -a 0 -x {10.0 9.0 3253 ------- null} h -t 3.68923 -s 10 -d 7 -p ack -e 40 -c 0 -i 6516 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.68981 -s 0 -d 9 -p ack -e 40 -c 0 -i 6506 -a 0 -x {10.0 9.0 3248 ------- null} + -t 3.68981 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6517 -a 0 -x {9.0 10.0 3263 ------- null} - -t 3.68981 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6517 -a 0 -x {9.0 10.0 3263 ------- null} h -t 3.68981 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6517 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.68986 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6503 -a 0 -x {9.0 10.0 3256 ------- null} - -t 3.68986 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6503 -a 0 -x {9.0 10.0 3256 ------- null} h -t 3.68986 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6503 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.68992 -s 0 -d 9 -p ack -e 40 -c 0 -i 6510 -a 0 -x {10.0 9.0 3250 ------- null} - -t 3.68992 -s 0 -d 9 -p ack -e 40 -c 0 -i 6510 -a 0 -x {10.0 9.0 3250 ------- null} h -t 3.68992 -s 0 -d 9 -p ack -e 40 -c 0 -i 6510 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.69008 -s 10 -d 7 -p ack -e 40 -c 0 -i 6514 -a 0 -x {10.0 9.0 3252 ------- null} + -t 3.69008 -s 7 -d 0 -p ack -e 40 -c 0 -i 6514 -a 0 -x {10.0 9.0 3252 ------- null} h -t 3.69008 -s 7 -d 8 -p ack -e 40 -c 0 -i 6514 -a 0 -x {10.0 9.0 3252 ------- null} r -t 3.69032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6499 -a 0 -x {9.0 10.0 3254 ------- null} + -t 3.69032 -s 10 -d 7 -p ack -e 40 -c 0 -i 6518 -a 0 -x {10.0 9.0 3254 ------- null} - -t 3.69032 -s 10 -d 7 -p ack -e 40 -c 0 -i 6518 -a 0 -x {10.0 9.0 3254 ------- null} h -t 3.69032 -s 10 -d 7 -p ack -e 40 -c 0 -i 6518 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.69037 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6513 -a 0 -x {9.0 10.0 3261 ------- null} + -t 3.69037 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6513 -a 0 -x {9.0 10.0 3261 ------- null} h -t 3.69037 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6513 -a 0 -x {9.0 10.0 3261 ------- null} + -t 3.69094 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6505 -a 0 -x {9.0 10.0 3257 ------- null} - -t 3.69094 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6505 -a 0 -x {9.0 10.0 3257 ------- null} h -t 3.69094 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6505 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.69104 -s 0 -d 9 -p ack -e 40 -c 0 -i 6512 -a 0 -x {10.0 9.0 3251 ------- null} - -t 3.69104 -s 0 -d 9 -p ack -e 40 -c 0 -i 6512 -a 0 -x {10.0 9.0 3251 ------- null} h -t 3.69104 -s 0 -d 9 -p ack -e 40 -c 0 -i 6512 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.69104 -s 0 -d 9 -p ack -e 40 -c 0 -i 6508 -a 0 -x {10.0 9.0 3249 ------- null} + -t 3.69104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6519 -a 0 -x {9.0 10.0 3264 ------- null} - -t 3.69104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6519 -a 0 -x {9.0 10.0 3264 ------- null} h -t 3.69104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6519 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.69126 -s 10 -d 7 -p ack -e 40 -c 0 -i 6516 -a 0 -x {10.0 9.0 3253 ------- null} + -t 3.69126 -s 7 -d 0 -p ack -e 40 -c 0 -i 6516 -a 0 -x {10.0 9.0 3253 ------- null} h -t 3.69126 -s 7 -d 8 -p ack -e 40 -c 0 -i 6516 -a 0 -x {10.0 9.0 3253 ------- null} r -t 3.69139 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6515 -a 0 -x {9.0 10.0 3262 ------- null} + -t 3.69139 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6515 -a 0 -x {9.0 10.0 3262 ------- null} h -t 3.69139 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6515 -a 0 -x {9.0 10.0 3262 ------- null} r -t 3.69157 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6501 -a 0 -x {9.0 10.0 3255 ------- null} + -t 3.69157 -s 10 -d 7 -p ack -e 40 -c 0 -i 6520 -a 0 -x {10.0 9.0 3255 ------- null} - -t 3.69157 -s 10 -d 7 -p ack -e 40 -c 0 -i 6520 -a 0 -x {10.0 9.0 3255 ------- null} h -t 3.69157 -s 10 -d 7 -p ack -e 40 -c 0 -i 6520 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.69195 -s 0 -d 9 -p ack -e 40 -c 0 -i 6510 -a 0 -x {10.0 9.0 3250 ------- null} + -t 3.69195 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6521 -a 0 -x {9.0 10.0 3265 ------- null} - -t 3.69195 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6521 -a 0 -x {9.0 10.0 3265 ------- null} h -t 3.69195 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6521 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.69203 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6507 -a 0 -x {9.0 10.0 3258 ------- null} - -t 3.69203 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6507 -a 0 -x {9.0 10.0 3258 ------- null} h -t 3.69203 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6507 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.69222 -s 0 -d 9 -p ack -e 40 -c 0 -i 6514 -a 0 -x {10.0 9.0 3252 ------- null} - -t 3.69222 -s 0 -d 9 -p ack -e 40 -c 0 -i 6514 -a 0 -x {10.0 9.0 3252 ------- null} h -t 3.69222 -s 0 -d 9 -p ack -e 40 -c 0 -i 6514 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.69235 -s 10 -d 7 -p ack -e 40 -c 0 -i 6518 -a 0 -x {10.0 9.0 3254 ------- null} + -t 3.69235 -s 7 -d 0 -p ack -e 40 -c 0 -i 6518 -a 0 -x {10.0 9.0 3254 ------- null} h -t 3.69235 -s 7 -d 8 -p ack -e 40 -c 0 -i 6518 -a 0 -x {10.0 9.0 3254 ------- null} r -t 3.69261 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6517 -a 0 -x {9.0 10.0 3263 ------- null} + -t 3.69261 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6517 -a 0 -x {9.0 10.0 3263 ------- null} h -t 3.69261 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6517 -a 0 -x {9.0 10.0 3263 ------- null} r -t 3.69266 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6503 -a 0 -x {9.0 10.0 3256 ------- null} + -t 3.69266 -s 10 -d 7 -p ack -e 40 -c 0 -i 6522 -a 0 -x {10.0 9.0 3256 ------- null} - -t 3.69266 -s 10 -d 7 -p ack -e 40 -c 0 -i 6522 -a 0 -x {10.0 9.0 3256 ------- null} h -t 3.69266 -s 10 -d 7 -p ack -e 40 -c 0 -i 6522 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.69307 -s 0 -d 9 -p ack -e 40 -c 0 -i 6512 -a 0 -x {10.0 9.0 3251 ------- null} + -t 3.69307 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6523 -a 0 -x {9.0 10.0 3266 ------- null} - -t 3.69307 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6523 -a 0 -x {9.0 10.0 3266 ------- null} h -t 3.69307 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6523 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.69312 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6509 -a 0 -x {9.0 10.0 3259 ------- null} - -t 3.69312 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6509 -a 0 -x {9.0 10.0 3259 ------- null} h -t 3.69312 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6509 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.69338 -s 0 -d 9 -p ack -e 40 -c 0 -i 6516 -a 0 -x {10.0 9.0 3253 ------- null} - -t 3.69338 -s 0 -d 9 -p ack -e 40 -c 0 -i 6516 -a 0 -x {10.0 9.0 3253 ------- null} h -t 3.69338 -s 0 -d 9 -p ack -e 40 -c 0 -i 6516 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.6936 -s 10 -d 7 -p ack -e 40 -c 0 -i 6520 -a 0 -x {10.0 9.0 3255 ------- null} + -t 3.6936 -s 7 -d 0 -p ack -e 40 -c 0 -i 6520 -a 0 -x {10.0 9.0 3255 ------- null} h -t 3.6936 -s 7 -d 8 -p ack -e 40 -c 0 -i 6520 -a 0 -x {10.0 9.0 3255 ------- null} r -t 3.69374 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6505 -a 0 -x {9.0 10.0 3257 ------- null} + -t 3.69374 -s 10 -d 7 -p ack -e 40 -c 0 -i 6524 -a 0 -x {10.0 9.0 3257 ------- null} - -t 3.69374 -s 10 -d 7 -p ack -e 40 -c 0 -i 6524 -a 0 -x {10.0 9.0 3257 ------- null} h -t 3.69374 -s 10 -d 7 -p ack -e 40 -c 0 -i 6524 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.69384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6519 -a 0 -x {9.0 10.0 3264 ------- null} + -t 3.69384 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6519 -a 0 -x {9.0 10.0 3264 ------- null} h -t 3.69384 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6519 -a 0 -x {9.0 10.0 3264 ------- null} r -t 3.69426 -s 0 -d 9 -p ack -e 40 -c 0 -i 6514 -a 0 -x {10.0 9.0 3252 ------- null} + -t 3.69426 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6525 -a 0 -x {9.0 10.0 3267 ------- null} - -t 3.69426 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6525 -a 0 -x {9.0 10.0 3267 ------- null} h -t 3.69426 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6525 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.6944 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6511 -a 0 -x {9.0 10.0 3260 ------- null} - -t 3.6944 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6511 -a 0 -x {9.0 10.0 3260 ------- null} h -t 3.6944 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6511 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.69453 -s 0 -d 9 -p ack -e 40 -c 0 -i 6518 -a 0 -x {10.0 9.0 3254 ------- null} - -t 3.69453 -s 0 -d 9 -p ack -e 40 -c 0 -i 6518 -a 0 -x {10.0 9.0 3254 ------- null} h -t 3.69453 -s 0 -d 9 -p ack -e 40 -c 0 -i 6518 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.69469 -s 10 -d 7 -p ack -e 40 -c 0 -i 6522 -a 0 -x {10.0 9.0 3256 ------- null} + -t 3.69469 -s 7 -d 0 -p ack -e 40 -c 0 -i 6522 -a 0 -x {10.0 9.0 3256 ------- null} h -t 3.69469 -s 7 -d 8 -p ack -e 40 -c 0 -i 6522 -a 0 -x {10.0 9.0 3256 ------- null} r -t 3.69475 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6521 -a 0 -x {9.0 10.0 3265 ------- null} + -t 3.69475 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6521 -a 0 -x {9.0 10.0 3265 ------- null} h -t 3.69475 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6521 -a 0 -x {9.0 10.0 3265 ------- null} r -t 3.69483 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6507 -a 0 -x {9.0 10.0 3258 ------- null} + -t 3.69483 -s 10 -d 7 -p ack -e 40 -c 0 -i 6526 -a 0 -x {10.0 9.0 3258 ------- null} - -t 3.69483 -s 10 -d 7 -p ack -e 40 -c 0 -i 6526 -a 0 -x {10.0 9.0 3258 ------- null} h -t 3.69483 -s 10 -d 7 -p ack -e 40 -c 0 -i 6526 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.69541 -s 0 -d 9 -p ack -e 40 -c 0 -i 6516 -a 0 -x {10.0 9.0 3253 ------- null} + -t 3.69541 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6527 -a 0 -x {9.0 10.0 3268 ------- null} - -t 3.69541 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6527 -a 0 -x {9.0 10.0 3268 ------- null} h -t 3.69541 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6527 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.69549 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6513 -a 0 -x {9.0 10.0 3261 ------- null} - -t 3.69549 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6513 -a 0 -x {9.0 10.0 3261 ------- null} h -t 3.69549 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6513 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.6957 -s 0 -d 9 -p ack -e 40 -c 0 -i 6520 -a 0 -x {10.0 9.0 3255 ------- null} - -t 3.6957 -s 0 -d 9 -p ack -e 40 -c 0 -i 6520 -a 0 -x {10.0 9.0 3255 ------- null} h -t 3.6957 -s 0 -d 9 -p ack -e 40 -c 0 -i 6520 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.69578 -s 10 -d 7 -p ack -e 40 -c 0 -i 6524 -a 0 -x {10.0 9.0 3257 ------- null} + -t 3.69578 -s 7 -d 0 -p ack -e 40 -c 0 -i 6524 -a 0 -x {10.0 9.0 3257 ------- null} h -t 3.69578 -s 7 -d 8 -p ack -e 40 -c 0 -i 6524 -a 0 -x {10.0 9.0 3257 ------- null} r -t 3.69587 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6523 -a 0 -x {9.0 10.0 3266 ------- null} + -t 3.69587 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6523 -a 0 -x {9.0 10.0 3266 ------- null} h -t 3.69587 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6523 -a 0 -x {9.0 10.0 3266 ------- null} r -t 3.69592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6509 -a 0 -x {9.0 10.0 3259 ------- null} + -t 3.69592 -s 10 -d 7 -p ack -e 40 -c 0 -i 6528 -a 0 -x {10.0 9.0 3259 ------- null} - -t 3.69592 -s 10 -d 7 -p ack -e 40 -c 0 -i 6528 -a 0 -x {10.0 9.0 3259 ------- null} h -t 3.69592 -s 10 -d 7 -p ack -e 40 -c 0 -i 6528 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.69656 -s 0 -d 9 -p ack -e 40 -c 0 -i 6518 -a 0 -x {10.0 9.0 3254 ------- null} + -t 3.69656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6529 -a 0 -x {9.0 10.0 3269 ------- null} - -t 3.69656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6529 -a 0 -x {9.0 10.0 3269 ------- null} h -t 3.69656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6529 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.69658 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6515 -a 0 -x {9.0 10.0 3262 ------- null} - -t 3.69658 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6515 -a 0 -x {9.0 10.0 3262 ------- null} h -t 3.69658 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6515 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.69672 -s 0 -d 9 -p ack -e 40 -c 0 -i 6522 -a 0 -x {10.0 9.0 3256 ------- null} - -t 3.69672 -s 0 -d 9 -p ack -e 40 -c 0 -i 6522 -a 0 -x {10.0 9.0 3256 ------- null} h -t 3.69672 -s 0 -d 9 -p ack -e 40 -c 0 -i 6522 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.69686 -s 10 -d 7 -p ack -e 40 -c 0 -i 6526 -a 0 -x {10.0 9.0 3258 ------- null} + -t 3.69686 -s 7 -d 0 -p ack -e 40 -c 0 -i 6526 -a 0 -x {10.0 9.0 3258 ------- null} h -t 3.69686 -s 7 -d 8 -p ack -e 40 -c 0 -i 6526 -a 0 -x {10.0 9.0 3258 ------- null} r -t 3.69706 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6525 -a 0 -x {9.0 10.0 3267 ------- null} + -t 3.69706 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6525 -a 0 -x {9.0 10.0 3267 ------- null} h -t 3.69706 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6525 -a 0 -x {9.0 10.0 3267 ------- null} r -t 3.6972 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6511 -a 0 -x {9.0 10.0 3260 ------- null} + -t 3.6972 -s 10 -d 7 -p ack -e 40 -c 0 -i 6530 -a 0 -x {10.0 9.0 3260 ------- null} - -t 3.6972 -s 10 -d 7 -p ack -e 40 -c 0 -i 6530 -a 0 -x {10.0 9.0 3260 ------- null} h -t 3.6972 -s 10 -d 7 -p ack -e 40 -c 0 -i 6530 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.69766 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6517 -a 0 -x {9.0 10.0 3263 ------- null} - -t 3.69766 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6517 -a 0 -x {9.0 10.0 3263 ------- null} h -t 3.69766 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6517 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.69773 -s 0 -d 9 -p ack -e 40 -c 0 -i 6524 -a 0 -x {10.0 9.0 3257 ------- null} - -t 3.69773 -s 0 -d 9 -p ack -e 40 -c 0 -i 6524 -a 0 -x {10.0 9.0 3257 ------- null} h -t 3.69773 -s 0 -d 9 -p ack -e 40 -c 0 -i 6524 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.69773 -s 0 -d 9 -p ack -e 40 -c 0 -i 6520 -a 0 -x {10.0 9.0 3255 ------- null} + -t 3.69773 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6531 -a 0 -x {9.0 10.0 3270 ------- null} - -t 3.69773 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6531 -a 0 -x {9.0 10.0 3270 ------- null} h -t 3.69773 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6531 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.69795 -s 10 -d 7 -p ack -e 40 -c 0 -i 6528 -a 0 -x {10.0 9.0 3259 ------- null} + -t 3.69795 -s 7 -d 0 -p ack -e 40 -c 0 -i 6528 -a 0 -x {10.0 9.0 3259 ------- null} h -t 3.69795 -s 7 -d 8 -p ack -e 40 -c 0 -i 6528 -a 0 -x {10.0 9.0 3259 ------- null} r -t 3.69821 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6527 -a 0 -x {9.0 10.0 3268 ------- null} + -t 3.69821 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6527 -a 0 -x {9.0 10.0 3268 ------- null} h -t 3.69821 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6527 -a 0 -x {9.0 10.0 3268 ------- null} r -t 3.69829 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6513 -a 0 -x {9.0 10.0 3261 ------- null} + -t 3.69829 -s 10 -d 7 -p ack -e 40 -c 0 -i 6532 -a 0 -x {10.0 9.0 3261 ------- null} - -t 3.69829 -s 10 -d 7 -p ack -e 40 -c 0 -i 6532 -a 0 -x {10.0 9.0 3261 ------- null} h -t 3.69829 -s 10 -d 7 -p ack -e 40 -c 0 -i 6532 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.69875 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6519 -a 0 -x {9.0 10.0 3264 ------- null} - -t 3.69875 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6519 -a 0 -x {9.0 10.0 3264 ------- null} h -t 3.69875 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6519 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.69875 -s 0 -d 9 -p ack -e 40 -c 0 -i 6522 -a 0 -x {10.0 9.0 3256 ------- null} + -t 3.69875 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6533 -a 0 -x {9.0 10.0 3271 ------- null} - -t 3.69875 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6533 -a 0 -x {9.0 10.0 3271 ------- null} h -t 3.69875 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6533 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.69902 -s 0 -d 9 -p ack -e 40 -c 0 -i 6526 -a 0 -x {10.0 9.0 3258 ------- null} - -t 3.69902 -s 0 -d 9 -p ack -e 40 -c 0 -i 6526 -a 0 -x {10.0 9.0 3258 ------- null} h -t 3.69902 -s 0 -d 9 -p ack -e 40 -c 0 -i 6526 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.69923 -s 10 -d 7 -p ack -e 40 -c 0 -i 6530 -a 0 -x {10.0 9.0 3260 ------- null} + -t 3.69923 -s 7 -d 0 -p ack -e 40 -c 0 -i 6530 -a 0 -x {10.0 9.0 3260 ------- null} h -t 3.69923 -s 7 -d 8 -p ack -e 40 -c 0 -i 6530 -a 0 -x {10.0 9.0 3260 ------- null} r -t 3.69936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6529 -a 0 -x {9.0 10.0 3269 ------- null} + -t 3.69936 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6529 -a 0 -x {9.0 10.0 3269 ------- null} h -t 3.69936 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6529 -a 0 -x {9.0 10.0 3269 ------- null} r -t 3.69938 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6515 -a 0 -x {9.0 10.0 3262 ------- null} + -t 3.69938 -s 10 -d 7 -p ack -e 40 -c 0 -i 6534 -a 0 -x {10.0 9.0 3262 ------- null} - -t 3.69938 -s 10 -d 7 -p ack -e 40 -c 0 -i 6534 -a 0 -x {10.0 9.0 3262 ------- null} h -t 3.69938 -s 10 -d 7 -p ack -e 40 -c 0 -i 6534 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.69976 -s 0 -d 9 -p ack -e 40 -c 0 -i 6524 -a 0 -x {10.0 9.0 3257 ------- null} + -t 3.69976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6535 -a 0 -x {9.0 10.0 3272 ------- null} - -t 3.69976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6535 -a 0 -x {9.0 10.0 3272 ------- null} h -t 3.69976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6535 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.69994 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6521 -a 0 -x {9.0 10.0 3265 ------- null} - -t 3.69994 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6521 -a 0 -x {9.0 10.0 3265 ------- null} h -t 3.69994 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6521 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.70003 -s 0 -d 9 -p ack -e 40 -c 0 -i 6528 -a 0 -x {10.0 9.0 3259 ------- null} - -t 3.70003 -s 0 -d 9 -p ack -e 40 -c 0 -i 6528 -a 0 -x {10.0 9.0 3259 ------- null} h -t 3.70003 -s 0 -d 9 -p ack -e 40 -c 0 -i 6528 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.70032 -s 10 -d 7 -p ack -e 40 -c 0 -i 6532 -a 0 -x {10.0 9.0 3261 ------- null} + -t 3.70032 -s 7 -d 0 -p ack -e 40 -c 0 -i 6532 -a 0 -x {10.0 9.0 3261 ------- null} h -t 3.70032 -s 7 -d 8 -p ack -e 40 -c 0 -i 6532 -a 0 -x {10.0 9.0 3261 ------- null} r -t 3.70046 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6517 -a 0 -x {9.0 10.0 3263 ------- null} + -t 3.70046 -s 10 -d 7 -p ack -e 40 -c 0 -i 6536 -a 0 -x {10.0 9.0 3263 ------- null} - -t 3.70046 -s 10 -d 7 -p ack -e 40 -c 0 -i 6536 -a 0 -x {10.0 9.0 3263 ------- null} h -t 3.70046 -s 10 -d 7 -p ack -e 40 -c 0 -i 6536 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.70053 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6531 -a 0 -x {9.0 10.0 3270 ------- null} + -t 3.70053 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6531 -a 0 -x {9.0 10.0 3270 ------- null} h -t 3.70053 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6531 -a 0 -x {9.0 10.0 3270 ------- null} + -t 3.70102 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6523 -a 0 -x {9.0 10.0 3266 ------- null} - -t 3.70102 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6523 -a 0 -x {9.0 10.0 3266 ------- null} h -t 3.70102 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6523 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.70106 -s 0 -d 9 -p ack -e 40 -c 0 -i 6526 -a 0 -x {10.0 9.0 3258 ------- null} + -t 3.70106 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6537 -a 0 -x {9.0 10.0 3273 ------- null} - -t 3.70106 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6537 -a 0 -x {9.0 10.0 3273 ------- null} h -t 3.70106 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6537 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.70123 -s 0 -d 9 -p ack -e 40 -c 0 -i 6530 -a 0 -x {10.0 9.0 3260 ------- null} - -t 3.70123 -s 0 -d 9 -p ack -e 40 -c 0 -i 6530 -a 0 -x {10.0 9.0 3260 ------- null} h -t 3.70123 -s 0 -d 9 -p ack -e 40 -c 0 -i 6530 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.70141 -s 10 -d 7 -p ack -e 40 -c 0 -i 6534 -a 0 -x {10.0 9.0 3262 ------- null} + -t 3.70141 -s 7 -d 0 -p ack -e 40 -c 0 -i 6534 -a 0 -x {10.0 9.0 3262 ------- null} h -t 3.70141 -s 7 -d 8 -p ack -e 40 -c 0 -i 6534 -a 0 -x {10.0 9.0 3262 ------- null} r -t 3.70155 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6519 -a 0 -x {9.0 10.0 3264 ------- null} + -t 3.70155 -s 10 -d 7 -p ack -e 40 -c 0 -i 6538 -a 0 -x {10.0 9.0 3264 ------- null} - -t 3.70155 -s 10 -d 7 -p ack -e 40 -c 0 -i 6538 -a 0 -x {10.0 9.0 3264 ------- null} h -t 3.70155 -s 10 -d 7 -p ack -e 40 -c 0 -i 6538 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.70155 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6533 -a 0 -x {9.0 10.0 3271 ------- null} + -t 3.70155 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6533 -a 0 -x {9.0 10.0 3271 ------- null} h -t 3.70155 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6533 -a 0 -x {9.0 10.0 3271 ------- null} r -t 3.70206 -s 0 -d 9 -p ack -e 40 -c 0 -i 6528 -a 0 -x {10.0 9.0 3259 ------- null} + -t 3.70206 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6539 -a 0 -x {9.0 10.0 3274 ------- null} - -t 3.70206 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6539 -a 0 -x {9.0 10.0 3274 ------- null} h -t 3.70206 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6539 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.70211 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6525 -a 0 -x {9.0 10.0 3267 ------- null} - -t 3.70211 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6525 -a 0 -x {9.0 10.0 3267 ------- null} h -t 3.70211 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6525 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.70229 -s 0 -d 9 -p ack -e 40 -c 0 -i 6532 -a 0 -x {10.0 9.0 3261 ------- null} - -t 3.70229 -s 0 -d 9 -p ack -e 40 -c 0 -i 6532 -a 0 -x {10.0 9.0 3261 ------- null} h -t 3.70229 -s 0 -d 9 -p ack -e 40 -c 0 -i 6532 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.7025 -s 10 -d 7 -p ack -e 40 -c 0 -i 6536 -a 0 -x {10.0 9.0 3263 ------- null} + -t 3.7025 -s 7 -d 0 -p ack -e 40 -c 0 -i 6536 -a 0 -x {10.0 9.0 3263 ------- null} h -t 3.7025 -s 7 -d 8 -p ack -e 40 -c 0 -i 6536 -a 0 -x {10.0 9.0 3263 ------- null} r -t 3.70256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6535 -a 0 -x {9.0 10.0 3272 ------- null} + -t 3.70256 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6535 -a 0 -x {9.0 10.0 3272 ------- null} h -t 3.70256 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6535 -a 0 -x {9.0 10.0 3272 ------- null} r -t 3.70274 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6521 -a 0 -x {9.0 10.0 3265 ------- null} + -t 3.70274 -s 10 -d 7 -p ack -e 40 -c 0 -i 6540 -a 0 -x {10.0 9.0 3265 ------- null} - -t 3.70274 -s 10 -d 7 -p ack -e 40 -c 0 -i 6540 -a 0 -x {10.0 9.0 3265 ------- null} h -t 3.70274 -s 10 -d 7 -p ack -e 40 -c 0 -i 6540 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.7032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6527 -a 0 -x {9.0 10.0 3268 ------- null} - -t 3.7032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6527 -a 0 -x {9.0 10.0 3268 ------- null} h -t 3.7032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6527 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.70326 -s 0 -d 9 -p ack -e 40 -c 0 -i 6534 -a 0 -x {10.0 9.0 3262 ------- null} - -t 3.70326 -s 0 -d 9 -p ack -e 40 -c 0 -i 6534 -a 0 -x {10.0 9.0 3262 ------- null} h -t 3.70326 -s 0 -d 9 -p ack -e 40 -c 0 -i 6534 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.70326 -s 0 -d 9 -p ack -e 40 -c 0 -i 6530 -a 0 -x {10.0 9.0 3260 ------- null} + -t 3.70326 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6541 -a 0 -x {9.0 10.0 3275 ------- null} - -t 3.70326 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6541 -a 0 -x {9.0 10.0 3275 ------- null} h -t 3.70326 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6541 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.70358 -s 10 -d 7 -p ack -e 40 -c 0 -i 6538 -a 0 -x {10.0 9.0 3264 ------- null} + -t 3.70358 -s 7 -d 0 -p ack -e 40 -c 0 -i 6538 -a 0 -x {10.0 9.0 3264 ------- null} h -t 3.70358 -s 7 -d 8 -p ack -e 40 -c 0 -i 6538 -a 0 -x {10.0 9.0 3264 ------- null} r -t 3.70382 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6523 -a 0 -x {9.0 10.0 3266 ------- null} + -t 3.70382 -s 10 -d 7 -p ack -e 40 -c 0 -i 6542 -a 0 -x {10.0 9.0 3266 ------- null} - -t 3.70382 -s 10 -d 7 -p ack -e 40 -c 0 -i 6542 -a 0 -x {10.0 9.0 3266 ------- null} h -t 3.70382 -s 10 -d 7 -p ack -e 40 -c 0 -i 6542 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.70386 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6537 -a 0 -x {9.0 10.0 3273 ------- null} + -t 3.70386 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6537 -a 0 -x {9.0 10.0 3273 ------- null} h -t 3.70386 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6537 -a 0 -x {9.0 10.0 3273 ------- null} + -t 3.70429 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6529 -a 0 -x {9.0 10.0 3269 ------- null} - -t 3.70429 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6529 -a 0 -x {9.0 10.0 3269 ------- null} h -t 3.70429 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6529 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.70432 -s 0 -d 9 -p ack -e 40 -c 0 -i 6532 -a 0 -x {10.0 9.0 3261 ------- null} + -t 3.70432 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6543 -a 0 -x {9.0 10.0 3276 ------- null} - -t 3.70432 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6543 -a 0 -x {9.0 10.0 3276 ------- null} h -t 3.70432 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6543 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.7044 -s 0 -d 9 -p ack -e 40 -c 0 -i 6536 -a 0 -x {10.0 9.0 3263 ------- null} - -t 3.7044 -s 0 -d 9 -p ack -e 40 -c 0 -i 6536 -a 0 -x {10.0 9.0 3263 ------- null} h -t 3.7044 -s 0 -d 9 -p ack -e 40 -c 0 -i 6536 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.70477 -s 10 -d 7 -p ack -e 40 -c 0 -i 6540 -a 0 -x {10.0 9.0 3265 ------- null} + -t 3.70477 -s 7 -d 0 -p ack -e 40 -c 0 -i 6540 -a 0 -x {10.0 9.0 3265 ------- null} h -t 3.70477 -s 7 -d 8 -p ack -e 40 -c 0 -i 6540 -a 0 -x {10.0 9.0 3265 ------- null} r -t 3.70486 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6539 -a 0 -x {9.0 10.0 3274 ------- null} + -t 3.70486 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6539 -a 0 -x {9.0 10.0 3274 ------- null} h -t 3.70486 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6539 -a 0 -x {9.0 10.0 3274 ------- null} r -t 3.70491 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6525 -a 0 -x {9.0 10.0 3267 ------- null} + -t 3.70491 -s 10 -d 7 -p ack -e 40 -c 0 -i 6544 -a 0 -x {10.0 9.0 3267 ------- null} - -t 3.70491 -s 10 -d 7 -p ack -e 40 -c 0 -i 6544 -a 0 -x {10.0 9.0 3267 ------- null} h -t 3.70491 -s 10 -d 7 -p ack -e 40 -c 0 -i 6544 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.7053 -s 0 -d 9 -p ack -e 40 -c 0 -i 6534 -a 0 -x {10.0 9.0 3262 ------- null} + -t 3.7053 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6545 -a 0 -x {9.0 10.0 3277 ------- null} - -t 3.7053 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6545 -a 0 -x {9.0 10.0 3277 ------- null} h -t 3.7053 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6545 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.70538 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6531 -a 0 -x {9.0 10.0 3270 ------- null} - -t 3.70538 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6531 -a 0 -x {9.0 10.0 3270 ------- null} h -t 3.70538 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6531 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.70557 -s 0 -d 9 -p ack -e 40 -c 0 -i 6538 -a 0 -x {10.0 9.0 3264 ------- null} - -t 3.70557 -s 0 -d 9 -p ack -e 40 -c 0 -i 6538 -a 0 -x {10.0 9.0 3264 ------- null} h -t 3.70557 -s 0 -d 9 -p ack -e 40 -c 0 -i 6538 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.70586 -s 10 -d 7 -p ack -e 40 -c 0 -i 6542 -a 0 -x {10.0 9.0 3266 ------- null} + -t 3.70586 -s 7 -d 0 -p ack -e 40 -c 0 -i 6542 -a 0 -x {10.0 9.0 3266 ------- null} h -t 3.70586 -s 7 -d 8 -p ack -e 40 -c 0 -i 6542 -a 0 -x {10.0 9.0 3266 ------- null} r -t 3.706 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6527 -a 0 -x {9.0 10.0 3268 ------- null} + -t 3.706 -s 10 -d 7 -p ack -e 40 -c 0 -i 6546 -a 0 -x {10.0 9.0 3268 ------- null} - -t 3.706 -s 10 -d 7 -p ack -e 40 -c 0 -i 6546 -a 0 -x {10.0 9.0 3268 ------- null} h -t 3.706 -s 10 -d 7 -p ack -e 40 -c 0 -i 6546 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.70606 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6541 -a 0 -x {9.0 10.0 3275 ------- null} + -t 3.70606 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6541 -a 0 -x {9.0 10.0 3275 ------- null} h -t 3.70606 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6541 -a 0 -x {9.0 10.0 3275 ------- null} r -t 3.70643 -s 0 -d 9 -p ack -e 40 -c 0 -i 6536 -a 0 -x {10.0 9.0 3263 ------- null} + -t 3.70643 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6547 -a 0 -x {9.0 10.0 3278 ------- null} - -t 3.70643 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6547 -a 0 -x {9.0 10.0 3278 ------- null} h -t 3.70643 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6547 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.70646 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6533 -a 0 -x {9.0 10.0 3271 ------- null} - -t 3.70646 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6533 -a 0 -x {9.0 10.0 3271 ------- null} h -t 3.70646 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6533 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.70666 -s 0 -d 9 -p ack -e 40 -c 0 -i 6540 -a 0 -x {10.0 9.0 3265 ------- null} - -t 3.70666 -s 0 -d 9 -p ack -e 40 -c 0 -i 6540 -a 0 -x {10.0 9.0 3265 ------- null} h -t 3.70666 -s 0 -d 9 -p ack -e 40 -c 0 -i 6540 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.70694 -s 10 -d 7 -p ack -e 40 -c 0 -i 6544 -a 0 -x {10.0 9.0 3267 ------- null} + -t 3.70694 -s 7 -d 0 -p ack -e 40 -c 0 -i 6544 -a 0 -x {10.0 9.0 3267 ------- null} h -t 3.70694 -s 7 -d 8 -p ack -e 40 -c 0 -i 6544 -a 0 -x {10.0 9.0 3267 ------- null} r -t 3.70709 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6529 -a 0 -x {9.0 10.0 3269 ------- null} + -t 3.70709 -s 10 -d 7 -p ack -e 40 -c 0 -i 6548 -a 0 -x {10.0 9.0 3269 ------- null} - -t 3.70709 -s 10 -d 7 -p ack -e 40 -c 0 -i 6548 -a 0 -x {10.0 9.0 3269 ------- null} h -t 3.70709 -s 10 -d 7 -p ack -e 40 -c 0 -i 6548 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.70712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6543 -a 0 -x {9.0 10.0 3276 ------- null} + -t 3.70712 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6543 -a 0 -x {9.0 10.0 3276 ------- null} h -t 3.70712 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6543 -a 0 -x {9.0 10.0 3276 ------- null} + -t 3.70755 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6535 -a 0 -x {9.0 10.0 3272 ------- null} - -t 3.70755 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6535 -a 0 -x {9.0 10.0 3272 ------- null} h -t 3.70755 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6535 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.7076 -s 0 -d 9 -p ack -e 40 -c 0 -i 6538 -a 0 -x {10.0 9.0 3264 ------- null} + -t 3.7076 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6549 -a 0 -x {9.0 10.0 3279 ------- null} - -t 3.7076 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6549 -a 0 -x {9.0 10.0 3279 ------- null} h -t 3.7076 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6549 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.70773 -s 0 -d 9 -p ack -e 40 -c 0 -i 6542 -a 0 -x {10.0 9.0 3266 ------- null} - -t 3.70773 -s 0 -d 9 -p ack -e 40 -c 0 -i 6542 -a 0 -x {10.0 9.0 3266 ------- null} h -t 3.70773 -s 0 -d 9 -p ack -e 40 -c 0 -i 6542 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.70803 -s 10 -d 7 -p ack -e 40 -c 0 -i 6546 -a 0 -x {10.0 9.0 3268 ------- null} + -t 3.70803 -s 7 -d 0 -p ack -e 40 -c 0 -i 6546 -a 0 -x {10.0 9.0 3268 ------- null} h -t 3.70803 -s 7 -d 8 -p ack -e 40 -c 0 -i 6546 -a 0 -x {10.0 9.0 3268 ------- null} r -t 3.7081 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6545 -a 0 -x {9.0 10.0 3277 ------- null} + -t 3.7081 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6545 -a 0 -x {9.0 10.0 3277 ------- null} h -t 3.7081 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6545 -a 0 -x {9.0 10.0 3277 ------- null} r -t 3.70818 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6531 -a 0 -x {9.0 10.0 3270 ------- null} + -t 3.70818 -s 10 -d 7 -p ack -e 40 -c 0 -i 6550 -a 0 -x {10.0 9.0 3270 ------- null} - -t 3.70818 -s 10 -d 7 -p ack -e 40 -c 0 -i 6550 -a 0 -x {10.0 9.0 3270 ------- null} h -t 3.70818 -s 10 -d 7 -p ack -e 40 -c 0 -i 6550 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.70864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6537 -a 0 -x {9.0 10.0 3273 ------- null} - -t 3.70864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6537 -a 0 -x {9.0 10.0 3273 ------- null} h -t 3.70864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6537 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.70869 -s 0 -d 9 -p ack -e 40 -c 0 -i 6540 -a 0 -x {10.0 9.0 3265 ------- null} + -t 3.70869 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6551 -a 0 -x {9.0 10.0 3280 ------- null} - -t 3.70869 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6551 -a 0 -x {9.0 10.0 3280 ------- null} h -t 3.70869 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6551 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.70891 -s 0 -d 9 -p ack -e 40 -c 0 -i 6544 -a 0 -x {10.0 9.0 3267 ------- null} - -t 3.70891 -s 0 -d 9 -p ack -e 40 -c 0 -i 6544 -a 0 -x {10.0 9.0 3267 ------- null} h -t 3.70891 -s 0 -d 9 -p ack -e 40 -c 0 -i 6544 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.70912 -s 10 -d 7 -p ack -e 40 -c 0 -i 6548 -a 0 -x {10.0 9.0 3269 ------- null} + -t 3.70912 -s 7 -d 0 -p ack -e 40 -c 0 -i 6548 -a 0 -x {10.0 9.0 3269 ------- null} h -t 3.70912 -s 7 -d 8 -p ack -e 40 -c 0 -i 6548 -a 0 -x {10.0 9.0 3269 ------- null} r -t 3.70923 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6547 -a 0 -x {9.0 10.0 3278 ------- null} + -t 3.70923 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6547 -a 0 -x {9.0 10.0 3278 ------- null} h -t 3.70923 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6547 -a 0 -x {9.0 10.0 3278 ------- null} r -t 3.70926 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6533 -a 0 -x {9.0 10.0 3271 ------- null} + -t 3.70926 -s 10 -d 7 -p ack -e 40 -c 0 -i 6552 -a 0 -x {10.0 9.0 3271 ------- null} - -t 3.70926 -s 10 -d 7 -p ack -e 40 -c 0 -i 6552 -a 0 -x {10.0 9.0 3271 ------- null} h -t 3.70926 -s 10 -d 7 -p ack -e 40 -c 0 -i 6552 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.70976 -s 0 -d 9 -p ack -e 40 -c 0 -i 6542 -a 0 -x {10.0 9.0 3266 ------- null} + -t 3.70976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6553 -a 0 -x {9.0 10.0 3281 ------- null} - -t 3.70976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6553 -a 0 -x {9.0 10.0 3281 ------- null} h -t 3.70976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6553 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.70984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6539 -a 0 -x {9.0 10.0 3274 ------- null} - -t 3.70984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6539 -a 0 -x {9.0 10.0 3274 ------- null} h -t 3.70984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6539 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.71006 -s 0 -d 9 -p ack -e 40 -c 0 -i 6546 -a 0 -x {10.0 9.0 3268 ------- null} - -t 3.71006 -s 0 -d 9 -p ack -e 40 -c 0 -i 6546 -a 0 -x {10.0 9.0 3268 ------- null} h -t 3.71006 -s 0 -d 9 -p ack -e 40 -c 0 -i 6546 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.71021 -s 10 -d 7 -p ack -e 40 -c 0 -i 6550 -a 0 -x {10.0 9.0 3270 ------- null} + -t 3.71021 -s 7 -d 0 -p ack -e 40 -c 0 -i 6550 -a 0 -x {10.0 9.0 3270 ------- null} h -t 3.71021 -s 7 -d 8 -p ack -e 40 -c 0 -i 6550 -a 0 -x {10.0 9.0 3270 ------- null} r -t 3.71035 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6535 -a 0 -x {9.0 10.0 3272 ------- null} + -t 3.71035 -s 10 -d 7 -p ack -e 40 -c 0 -i 6554 -a 0 -x {10.0 9.0 3272 ------- null} - -t 3.71035 -s 10 -d 7 -p ack -e 40 -c 0 -i 6554 -a 0 -x {10.0 9.0 3272 ------- null} h -t 3.71035 -s 10 -d 7 -p ack -e 40 -c 0 -i 6554 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.7104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6549 -a 0 -x {9.0 10.0 3279 ------- null} + -t 3.7104 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6549 -a 0 -x {9.0 10.0 3279 ------- null} h -t 3.7104 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6549 -a 0 -x {9.0 10.0 3279 ------- null} + -t 3.71093 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6541 -a 0 -x {9.0 10.0 3275 ------- null} - -t 3.71093 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6541 -a 0 -x {9.0 10.0 3275 ------- null} h -t 3.71093 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6541 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.71094 -s 0 -d 9 -p ack -e 40 -c 0 -i 6544 -a 0 -x {10.0 9.0 3267 ------- null} + -t 3.71094 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6555 -a 0 -x {9.0 10.0 3282 ------- null} - -t 3.71094 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6555 -a 0 -x {9.0 10.0 3282 ------- null} h -t 3.71094 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6555 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.71104 -s 0 -d 9 -p ack -e 40 -c 0 -i 6548 -a 0 -x {10.0 9.0 3269 ------- null} - -t 3.71104 -s 0 -d 9 -p ack -e 40 -c 0 -i 6548 -a 0 -x {10.0 9.0 3269 ------- null} h -t 3.71104 -s 0 -d 9 -p ack -e 40 -c 0 -i 6548 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.7113 -s 10 -d 7 -p ack -e 40 -c 0 -i 6552 -a 0 -x {10.0 9.0 3271 ------- null} + -t 3.7113 -s 7 -d 0 -p ack -e 40 -c 0 -i 6552 -a 0 -x {10.0 9.0 3271 ------- null} h -t 3.7113 -s 7 -d 8 -p ack -e 40 -c 0 -i 6552 -a 0 -x {10.0 9.0 3271 ------- null} r -t 3.71144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6537 -a 0 -x {9.0 10.0 3273 ------- null} + -t 3.71144 -s 10 -d 7 -p ack -e 40 -c 0 -i 6556 -a 0 -x {10.0 9.0 3273 ------- null} - -t 3.71144 -s 10 -d 7 -p ack -e 40 -c 0 -i 6556 -a 0 -x {10.0 9.0 3273 ------- null} h -t 3.71144 -s 10 -d 7 -p ack -e 40 -c 0 -i 6556 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.71149 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6551 -a 0 -x {9.0 10.0 3280 ------- null} + -t 3.71149 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6551 -a 0 -x {9.0 10.0 3280 ------- null} h -t 3.71149 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6551 -a 0 -x {9.0 10.0 3280 ------- null} + -t 3.71202 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6543 -a 0 -x {9.0 10.0 3276 ------- null} - -t 3.71202 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6543 -a 0 -x {9.0 10.0 3276 ------- null} h -t 3.71202 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6543 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.7121 -s 0 -d 9 -p ack -e 40 -c 0 -i 6546 -a 0 -x {10.0 9.0 3268 ------- null} + -t 3.7121 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6557 -a 0 -x {9.0 10.0 3283 ------- null} - -t 3.7121 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6557 -a 0 -x {9.0 10.0 3283 ------- null} h -t 3.7121 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6557 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.71221 -s 0 -d 9 -p ack -e 40 -c 0 -i 6550 -a 0 -x {10.0 9.0 3270 ------- null} - -t 3.71221 -s 0 -d 9 -p ack -e 40 -c 0 -i 6550 -a 0 -x {10.0 9.0 3270 ------- null} h -t 3.71221 -s 0 -d 9 -p ack -e 40 -c 0 -i 6550 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.71238 -s 10 -d 7 -p ack -e 40 -c 0 -i 6554 -a 0 -x {10.0 9.0 3272 ------- null} + -t 3.71238 -s 7 -d 0 -p ack -e 40 -c 0 -i 6554 -a 0 -x {10.0 9.0 3272 ------- null} h -t 3.71238 -s 7 -d 8 -p ack -e 40 -c 0 -i 6554 -a 0 -x {10.0 9.0 3272 ------- null} r -t 3.71256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6553 -a 0 -x {9.0 10.0 3281 ------- null} + -t 3.71256 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6553 -a 0 -x {9.0 10.0 3281 ------- null} h -t 3.71256 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6553 -a 0 -x {9.0 10.0 3281 ------- null} r -t 3.71264 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6539 -a 0 -x {9.0 10.0 3274 ------- null} + -t 3.71264 -s 10 -d 7 -p ack -e 40 -c 0 -i 6558 -a 0 -x {10.0 9.0 3274 ------- null} - -t 3.71264 -s 10 -d 7 -p ack -e 40 -c 0 -i 6558 -a 0 -x {10.0 9.0 3274 ------- null} h -t 3.71264 -s 10 -d 7 -p ack -e 40 -c 0 -i 6558 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.71307 -s 0 -d 9 -p ack -e 40 -c 0 -i 6548 -a 0 -x {10.0 9.0 3269 ------- null} + -t 3.71307 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6559 -a 0 -x {9.0 10.0 3284 ------- null} - -t 3.71307 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6559 -a 0 -x {9.0 10.0 3284 ------- null} h -t 3.71307 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6559 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.7131 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6545 -a 0 -x {9.0 10.0 3277 ------- null} - -t 3.7131 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6545 -a 0 -x {9.0 10.0 3277 ------- null} h -t 3.7131 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6545 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.71322 -s 0 -d 9 -p ack -e 40 -c 0 -i 6552 -a 0 -x {10.0 9.0 3271 ------- null} - -t 3.71322 -s 0 -d 9 -p ack -e 40 -c 0 -i 6552 -a 0 -x {10.0 9.0 3271 ------- null} h -t 3.71322 -s 0 -d 9 -p ack -e 40 -c 0 -i 6552 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.71347 -s 10 -d 7 -p ack -e 40 -c 0 -i 6556 -a 0 -x {10.0 9.0 3273 ------- null} + -t 3.71347 -s 7 -d 0 -p ack -e 40 -c 0 -i 6556 -a 0 -x {10.0 9.0 3273 ------- null} h -t 3.71347 -s 7 -d 8 -p ack -e 40 -c 0 -i 6556 -a 0 -x {10.0 9.0 3273 ------- null} r -t 3.71373 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6541 -a 0 -x {9.0 10.0 3275 ------- null} + -t 3.71373 -s 10 -d 7 -p ack -e 40 -c 0 -i 6560 -a 0 -x {10.0 9.0 3275 ------- null} - -t 3.71373 -s 10 -d 7 -p ack -e 40 -c 0 -i 6560 -a 0 -x {10.0 9.0 3275 ------- null} h -t 3.71373 -s 10 -d 7 -p ack -e 40 -c 0 -i 6560 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.71374 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6555 -a 0 -x {9.0 10.0 3282 ------- null} + -t 3.71374 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6555 -a 0 -x {9.0 10.0 3282 ------- null} h -t 3.71374 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6555 -a 0 -x {9.0 10.0 3282 ------- null} + -t 3.71419 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6547 -a 0 -x {9.0 10.0 3278 ------- null} - -t 3.71419 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6547 -a 0 -x {9.0 10.0 3278 ------- null} h -t 3.71419 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6547 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.71424 -s 0 -d 9 -p ack -e 40 -c 0 -i 6550 -a 0 -x {10.0 9.0 3270 ------- null} + -t 3.71424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6561 -a 0 -x {9.0 10.0 3285 ------- null} - -t 3.71424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6561 -a 0 -x {9.0 10.0 3285 ------- null} h -t 3.71424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6561 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.71432 -s 0 -d 9 -p ack -e 40 -c 0 -i 6554 -a 0 -x {10.0 9.0 3272 ------- null} - -t 3.71432 -s 0 -d 9 -p ack -e 40 -c 0 -i 6554 -a 0 -x {10.0 9.0 3272 ------- null} h -t 3.71432 -s 0 -d 9 -p ack -e 40 -c 0 -i 6554 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.71467 -s 10 -d 7 -p ack -e 40 -c 0 -i 6558 -a 0 -x {10.0 9.0 3274 ------- null} + -t 3.71467 -s 7 -d 0 -p ack -e 40 -c 0 -i 6558 -a 0 -x {10.0 9.0 3274 ------- null} h -t 3.71467 -s 7 -d 8 -p ack -e 40 -c 0 -i 6558 -a 0 -x {10.0 9.0 3274 ------- null} r -t 3.71482 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6543 -a 0 -x {9.0 10.0 3276 ------- null} + -t 3.71482 -s 10 -d 7 -p ack -e 40 -c 0 -i 6562 -a 0 -x {10.0 9.0 3276 ------- null} - -t 3.71482 -s 10 -d 7 -p ack -e 40 -c 0 -i 6562 -a 0 -x {10.0 9.0 3276 ------- null} h -t 3.71482 -s 10 -d 7 -p ack -e 40 -c 0 -i 6562 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.7149 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6557 -a 0 -x {9.0 10.0 3283 ------- null} + -t 3.7149 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6557 -a 0 -x {9.0 10.0 3283 ------- null} h -t 3.7149 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6557 -a 0 -x {9.0 10.0 3283 ------- null} r -t 3.71525 -s 0 -d 9 -p ack -e 40 -c 0 -i 6552 -a 0 -x {10.0 9.0 3271 ------- null} + -t 3.71525 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6563 -a 0 -x {9.0 10.0 3286 ------- null} - -t 3.71525 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6563 -a 0 -x {9.0 10.0 3286 ------- null} h -t 3.71525 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6563 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.71528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6549 -a 0 -x {9.0 10.0 3279 ------- null} - -t 3.71528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6549 -a 0 -x {9.0 10.0 3279 ------- null} h -t 3.71528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6549 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.71539 -s 0 -d 9 -p ack -e 40 -c 0 -i 6556 -a 0 -x {10.0 9.0 3273 ------- null} - -t 3.71539 -s 0 -d 9 -p ack -e 40 -c 0 -i 6556 -a 0 -x {10.0 9.0 3273 ------- null} h -t 3.71539 -s 0 -d 9 -p ack -e 40 -c 0 -i 6556 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.71576 -s 10 -d 7 -p ack -e 40 -c 0 -i 6560 -a 0 -x {10.0 9.0 3275 ------- null} + -t 3.71576 -s 7 -d 0 -p ack -e 40 -c 0 -i 6560 -a 0 -x {10.0 9.0 3275 ------- null} h -t 3.71576 -s 7 -d 8 -p ack -e 40 -c 0 -i 6560 -a 0 -x {10.0 9.0 3275 ------- null} r -t 3.71587 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6559 -a 0 -x {9.0 10.0 3284 ------- null} + -t 3.71587 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6559 -a 0 -x {9.0 10.0 3284 ------- null} h -t 3.71587 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6559 -a 0 -x {9.0 10.0 3284 ------- null} r -t 3.7159 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6545 -a 0 -x {9.0 10.0 3277 ------- null} + -t 3.7159 -s 10 -d 7 -p ack -e 40 -c 0 -i 6564 -a 0 -x {10.0 9.0 3277 ------- null} - -t 3.7159 -s 10 -d 7 -p ack -e 40 -c 0 -i 6564 -a 0 -x {10.0 9.0 3277 ------- null} h -t 3.7159 -s 10 -d 7 -p ack -e 40 -c 0 -i 6564 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.71635 -s 0 -d 9 -p ack -e 40 -c 0 -i 6554 -a 0 -x {10.0 9.0 3272 ------- null} + -t 3.71635 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6565 -a 0 -x {9.0 10.0 3287 ------- null} - -t 3.71635 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6565 -a 0 -x {9.0 10.0 3287 ------- null} h -t 3.71635 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6565 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.71637 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6551 -a 0 -x {9.0 10.0 3280 ------- null} - -t 3.71637 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6551 -a 0 -x {9.0 10.0 3280 ------- null} h -t 3.71637 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6551 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.7165 -s 0 -d 9 -p ack -e 40 -c 0 -i 6558 -a 0 -x {10.0 9.0 3274 ------- null} - -t 3.7165 -s 0 -d 9 -p ack -e 40 -c 0 -i 6558 -a 0 -x {10.0 9.0 3274 ------- null} h -t 3.7165 -s 0 -d 9 -p ack -e 40 -c 0 -i 6558 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.71685 -s 10 -d 7 -p ack -e 40 -c 0 -i 6562 -a 0 -x {10.0 9.0 3276 ------- null} + -t 3.71685 -s 7 -d 0 -p ack -e 40 -c 0 -i 6562 -a 0 -x {10.0 9.0 3276 ------- null} h -t 3.71685 -s 7 -d 8 -p ack -e 40 -c 0 -i 6562 -a 0 -x {10.0 9.0 3276 ------- null} r -t 3.71699 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6547 -a 0 -x {9.0 10.0 3278 ------- null} + -t 3.71699 -s 10 -d 7 -p ack -e 40 -c 0 -i 6566 -a 0 -x {10.0 9.0 3278 ------- null} - -t 3.71699 -s 10 -d 7 -p ack -e 40 -c 0 -i 6566 -a 0 -x {10.0 9.0 3278 ------- null} h -t 3.71699 -s 10 -d 7 -p ack -e 40 -c 0 -i 6566 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.71704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6561 -a 0 -x {9.0 10.0 3285 ------- null} + -t 3.71704 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6561 -a 0 -x {9.0 10.0 3285 ------- null} h -t 3.71704 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6561 -a 0 -x {9.0 10.0 3285 ------- null} r -t 3.71742 -s 0 -d 9 -p ack -e 40 -c 0 -i 6556 -a 0 -x {10.0 9.0 3273 ------- null} + -t 3.71742 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6567 -a 0 -x {9.0 10.0 3288 ------- null} - -t 3.71742 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6567 -a 0 -x {9.0 10.0 3288 ------- null} h -t 3.71742 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6567 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.71746 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6553 -a 0 -x {9.0 10.0 3281 ------- null} - -t 3.71746 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6553 -a 0 -x {9.0 10.0 3281 ------- null} h -t 3.71746 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6553 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.71766 -s 0 -d 9 -p ack -e 40 -c 0 -i 6560 -a 0 -x {10.0 9.0 3275 ------- null} - -t 3.71766 -s 0 -d 9 -p ack -e 40 -c 0 -i 6560 -a 0 -x {10.0 9.0 3275 ------- null} h -t 3.71766 -s 0 -d 9 -p ack -e 40 -c 0 -i 6560 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.71794 -s 10 -d 7 -p ack -e 40 -c 0 -i 6564 -a 0 -x {10.0 9.0 3277 ------- null} + -t 3.71794 -s 7 -d 0 -p ack -e 40 -c 0 -i 6564 -a 0 -x {10.0 9.0 3277 ------- null} h -t 3.71794 -s 7 -d 8 -p ack -e 40 -c 0 -i 6564 -a 0 -x {10.0 9.0 3277 ------- null} r -t 3.71805 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6563 -a 0 -x {9.0 10.0 3286 ------- null} + -t 3.71805 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6563 -a 0 -x {9.0 10.0 3286 ------- null} h -t 3.71805 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6563 -a 0 -x {9.0 10.0 3286 ------- null} r -t 3.71808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6549 -a 0 -x {9.0 10.0 3279 ------- null} + -t 3.71808 -s 10 -d 7 -p ack -e 40 -c 0 -i 6568 -a 0 -x {10.0 9.0 3279 ------- null} - -t 3.71808 -s 10 -d 7 -p ack -e 40 -c 0 -i 6568 -a 0 -x {10.0 9.0 3279 ------- null} h -t 3.71808 -s 10 -d 7 -p ack -e 40 -c 0 -i 6568 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.71853 -s 0 -d 9 -p ack -e 40 -c 0 -i 6558 -a 0 -x {10.0 9.0 3274 ------- null} + -t 3.71853 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6569 -a 0 -x {9.0 10.0 3289 ------- null} - -t 3.71853 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6569 -a 0 -x {9.0 10.0 3289 ------- null} h -t 3.71853 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6569 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.71854 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6555 -a 0 -x {9.0 10.0 3282 ------- null} - -t 3.71854 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6555 -a 0 -x {9.0 10.0 3282 ------- null} h -t 3.71854 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6555 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.71877 -s 0 -d 9 -p ack -e 40 -c 0 -i 6562 -a 0 -x {10.0 9.0 3276 ------- null} - -t 3.71877 -s 0 -d 9 -p ack -e 40 -c 0 -i 6562 -a 0 -x {10.0 9.0 3276 ------- null} h -t 3.71877 -s 0 -d 9 -p ack -e 40 -c 0 -i 6562 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.71902 -s 10 -d 7 -p ack -e 40 -c 0 -i 6566 -a 0 -x {10.0 9.0 3278 ------- null} + -t 3.71902 -s 7 -d 0 -p ack -e 40 -c 0 -i 6566 -a 0 -x {10.0 9.0 3278 ------- null} h -t 3.71902 -s 7 -d 8 -p ack -e 40 -c 0 -i 6566 -a 0 -x {10.0 9.0 3278 ------- null} r -t 3.71915 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6565 -a 0 -x {9.0 10.0 3287 ------- null} + -t 3.71915 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6565 -a 0 -x {9.0 10.0 3287 ------- null} h -t 3.71915 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6565 -a 0 -x {9.0 10.0 3287 ------- null} r -t 3.71917 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6551 -a 0 -x {9.0 10.0 3280 ------- null} + -t 3.71917 -s 10 -d 7 -p ack -e 40 -c 0 -i 6570 -a 0 -x {10.0 9.0 3280 ------- null} - -t 3.71917 -s 10 -d 7 -p ack -e 40 -c 0 -i 6570 -a 0 -x {10.0 9.0 3280 ------- null} h -t 3.71917 -s 10 -d 7 -p ack -e 40 -c 0 -i 6570 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.71963 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6557 -a 0 -x {9.0 10.0 3283 ------- null} - -t 3.71963 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6557 -a 0 -x {9.0 10.0 3283 ------- null} h -t 3.71963 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6557 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.7197 -s 0 -d 9 -p ack -e 40 -c 0 -i 6560 -a 0 -x {10.0 9.0 3275 ------- null} + -t 3.7197 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6571 -a 0 -x {9.0 10.0 3290 ------- null} - -t 3.7197 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6571 -a 0 -x {9.0 10.0 3290 ------- null} h -t 3.7197 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6571 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.71989 -s 0 -d 9 -p ack -e 40 -c 0 -i 6564 -a 0 -x {10.0 9.0 3277 ------- null} - -t 3.71989 -s 0 -d 9 -p ack -e 40 -c 0 -i 6564 -a 0 -x {10.0 9.0 3277 ------- null} h -t 3.71989 -s 0 -d 9 -p ack -e 40 -c 0 -i 6564 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.72011 -s 10 -d 7 -p ack -e 40 -c 0 -i 6568 -a 0 -x {10.0 9.0 3279 ------- null} + -t 3.72011 -s 7 -d 0 -p ack -e 40 -c 0 -i 6568 -a 0 -x {10.0 9.0 3279 ------- null} h -t 3.72011 -s 7 -d 8 -p ack -e 40 -c 0 -i 6568 -a 0 -x {10.0 9.0 3279 ------- null} r -t 3.72022 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6567 -a 0 -x {9.0 10.0 3288 ------- null} + -t 3.72022 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6567 -a 0 -x {9.0 10.0 3288 ------- null} h -t 3.72022 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6567 -a 0 -x {9.0 10.0 3288 ------- null} r -t 3.72026 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6553 -a 0 -x {9.0 10.0 3281 ------- null} + -t 3.72026 -s 10 -d 7 -p ack -e 40 -c 0 -i 6572 -a 0 -x {10.0 9.0 3281 ------- null} - -t 3.72026 -s 10 -d 7 -p ack -e 40 -c 0 -i 6572 -a 0 -x {10.0 9.0 3281 ------- null} h -t 3.72026 -s 10 -d 7 -p ack -e 40 -c 0 -i 6572 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.7208 -s 0 -d 9 -p ack -e 40 -c 0 -i 6562 -a 0 -x {10.0 9.0 3276 ------- null} + -t 3.7208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6573 -a 0 -x {9.0 10.0 3291 ------- null} - -t 3.7208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6573 -a 0 -x {9.0 10.0 3291 ------- null} h -t 3.7208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6573 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.72086 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6559 -a 0 -x {9.0 10.0 3284 ------- null} - -t 3.72086 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6559 -a 0 -x {9.0 10.0 3284 ------- null} h -t 3.72086 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6559 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.72102 -s 0 -d 9 -p ack -e 40 -c 0 -i 6566 -a 0 -x {10.0 9.0 3278 ------- null} - -t 3.72102 -s 0 -d 9 -p ack -e 40 -c 0 -i 6566 -a 0 -x {10.0 9.0 3278 ------- null} h -t 3.72102 -s 0 -d 9 -p ack -e 40 -c 0 -i 6566 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.7212 -s 10 -d 7 -p ack -e 40 -c 0 -i 6570 -a 0 -x {10.0 9.0 3280 ------- null} + -t 3.7212 -s 7 -d 0 -p ack -e 40 -c 0 -i 6570 -a 0 -x {10.0 9.0 3280 ------- null} h -t 3.7212 -s 7 -d 8 -p ack -e 40 -c 0 -i 6570 -a 0 -x {10.0 9.0 3280 ------- null} r -t 3.72133 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6569 -a 0 -x {9.0 10.0 3289 ------- null} + -t 3.72133 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6569 -a 0 -x {9.0 10.0 3289 ------- null} h -t 3.72133 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6569 -a 0 -x {9.0 10.0 3289 ------- null} r -t 3.72134 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6555 -a 0 -x {9.0 10.0 3282 ------- null} + -t 3.72134 -s 10 -d 7 -p ack -e 40 -c 0 -i 6574 -a 0 -x {10.0 9.0 3282 ------- null} - -t 3.72134 -s 10 -d 7 -p ack -e 40 -c 0 -i 6574 -a 0 -x {10.0 9.0 3282 ------- null} h -t 3.72134 -s 10 -d 7 -p ack -e 40 -c 0 -i 6574 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.72192 -s 0 -d 9 -p ack -e 40 -c 0 -i 6564 -a 0 -x {10.0 9.0 3277 ------- null} + -t 3.72192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6575 -a 0 -x {9.0 10.0 3292 ------- null} - -t 3.72192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6575 -a 0 -x {9.0 10.0 3292 ------- null} h -t 3.72192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6575 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.72195 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6561 -a 0 -x {9.0 10.0 3285 ------- null} - -t 3.72195 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6561 -a 0 -x {9.0 10.0 3285 ------- null} h -t 3.72195 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6561 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.72205 -s 0 -d 9 -p ack -e 40 -c 0 -i 6568 -a 0 -x {10.0 9.0 3279 ------- null} - -t 3.72205 -s 0 -d 9 -p ack -e 40 -c 0 -i 6568 -a 0 -x {10.0 9.0 3279 ------- null} h -t 3.72205 -s 0 -d 9 -p ack -e 40 -c 0 -i 6568 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.72229 -s 10 -d 7 -p ack -e 40 -c 0 -i 6572 -a 0 -x {10.0 9.0 3281 ------- null} + -t 3.72229 -s 7 -d 0 -p ack -e 40 -c 0 -i 6572 -a 0 -x {10.0 9.0 3281 ------- null} h -t 3.72229 -s 7 -d 8 -p ack -e 40 -c 0 -i 6572 -a 0 -x {10.0 9.0 3281 ------- null} r -t 3.72243 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6557 -a 0 -x {9.0 10.0 3283 ------- null} + -t 3.72243 -s 10 -d 7 -p ack -e 40 -c 0 -i 6576 -a 0 -x {10.0 9.0 3283 ------- null} - -t 3.72243 -s 10 -d 7 -p ack -e 40 -c 0 -i 6576 -a 0 -x {10.0 9.0 3283 ------- null} h -t 3.72243 -s 10 -d 7 -p ack -e 40 -c 0 -i 6576 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.7225 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6571 -a 0 -x {9.0 10.0 3290 ------- null} + -t 3.7225 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6571 -a 0 -x {9.0 10.0 3290 ------- null} h -t 3.7225 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6571 -a 0 -x {9.0 10.0 3290 ------- null} + -t 3.72304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6563 -a 0 -x {9.0 10.0 3286 ------- null} - -t 3.72304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6563 -a 0 -x {9.0 10.0 3286 ------- null} h -t 3.72304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6563 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.72306 -s 0 -d 9 -p ack -e 40 -c 0 -i 6566 -a 0 -x {10.0 9.0 3278 ------- null} + -t 3.72306 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6577 -a 0 -x {9.0 10.0 3293 ------- null} - -t 3.72306 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6577 -a 0 -x {9.0 10.0 3293 ------- null} h -t 3.72306 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6577 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.72325 -s 0 -d 9 -p ack -e 40 -c 0 -i 6570 -a 0 -x {10.0 9.0 3280 ------- null} - -t 3.72325 -s 0 -d 9 -p ack -e 40 -c 0 -i 6570 -a 0 -x {10.0 9.0 3280 ------- null} h -t 3.72325 -s 0 -d 9 -p ack -e 40 -c 0 -i 6570 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.72338 -s 10 -d 7 -p ack -e 40 -c 0 -i 6574 -a 0 -x {10.0 9.0 3282 ------- null} + -t 3.72338 -s 7 -d 0 -p ack -e 40 -c 0 -i 6574 -a 0 -x {10.0 9.0 3282 ------- null} h -t 3.72338 -s 7 -d 8 -p ack -e 40 -c 0 -i 6574 -a 0 -x {10.0 9.0 3282 ------- null} r -t 3.7236 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6573 -a 0 -x {9.0 10.0 3291 ------- null} + -t 3.7236 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6573 -a 0 -x {9.0 10.0 3291 ------- null} h -t 3.7236 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6573 -a 0 -x {9.0 10.0 3291 ------- null} r -t 3.72366 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6559 -a 0 -x {9.0 10.0 3284 ------- null} + -t 3.72366 -s 10 -d 7 -p ack -e 40 -c 0 -i 6578 -a 0 -x {10.0 9.0 3284 ------- null} - -t 3.72366 -s 10 -d 7 -p ack -e 40 -c 0 -i 6578 -a 0 -x {10.0 9.0 3284 ------- null} h -t 3.72366 -s 10 -d 7 -p ack -e 40 -c 0 -i 6578 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.72408 -s 0 -d 9 -p ack -e 40 -c 0 -i 6568 -a 0 -x {10.0 9.0 3279 ------- null} + -t 3.72408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6579 -a 0 -x {9.0 10.0 3294 ------- null} - -t 3.72408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6579 -a 0 -x {9.0 10.0 3294 ------- null} h -t 3.72408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6579 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.72413 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6565 -a 0 -x {9.0 10.0 3287 ------- null} - -t 3.72413 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6565 -a 0 -x {9.0 10.0 3287 ------- null} h -t 3.72413 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6565 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.72419 -s 0 -d 9 -p ack -e 40 -c 0 -i 6572 -a 0 -x {10.0 9.0 3281 ------- null} - -t 3.72419 -s 0 -d 9 -p ack -e 40 -c 0 -i 6572 -a 0 -x {10.0 9.0 3281 ------- null} h -t 3.72419 -s 0 -d 9 -p ack -e 40 -c 0 -i 6572 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.72446 -s 10 -d 7 -p ack -e 40 -c 0 -i 6576 -a 0 -x {10.0 9.0 3283 ------- null} + -t 3.72446 -s 7 -d 0 -p ack -e 40 -c 0 -i 6576 -a 0 -x {10.0 9.0 3283 ------- null} h -t 3.72446 -s 7 -d 8 -p ack -e 40 -c 0 -i 6576 -a 0 -x {10.0 9.0 3283 ------- null} r -t 3.72472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6575 -a 0 -x {9.0 10.0 3292 ------- null} + -t 3.72472 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6575 -a 0 -x {9.0 10.0 3292 ------- null} h -t 3.72472 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6575 -a 0 -x {9.0 10.0 3292 ------- null} r -t 3.72475 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6561 -a 0 -x {9.0 10.0 3285 ------- null} + -t 3.72475 -s 10 -d 7 -p ack -e 40 -c 0 -i 6580 -a 0 -x {10.0 9.0 3285 ------- null} - -t 3.72475 -s 10 -d 7 -p ack -e 40 -c 0 -i 6580 -a 0 -x {10.0 9.0 3285 ------- null} h -t 3.72475 -s 10 -d 7 -p ack -e 40 -c 0 -i 6580 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.72522 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6567 -a 0 -x {9.0 10.0 3288 ------- null} - -t 3.72522 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6567 -a 0 -x {9.0 10.0 3288 ------- null} h -t 3.72522 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6567 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.72528 -s 0 -d 9 -p ack -e 40 -c 0 -i 6570 -a 0 -x {10.0 9.0 3280 ------- null} + -t 3.72528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6581 -a 0 -x {9.0 10.0 3295 ------- null} - -t 3.72528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6581 -a 0 -x {9.0 10.0 3295 ------- null} h -t 3.72528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6581 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.72539 -s 0 -d 9 -p ack -e 40 -c 0 -i 6574 -a 0 -x {10.0 9.0 3282 ------- null} - -t 3.72539 -s 0 -d 9 -p ack -e 40 -c 0 -i 6574 -a 0 -x {10.0 9.0 3282 ------- null} h -t 3.72539 -s 0 -d 9 -p ack -e 40 -c 0 -i 6574 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.7257 -s 10 -d 7 -p ack -e 40 -c 0 -i 6578 -a 0 -x {10.0 9.0 3284 ------- null} + -t 3.7257 -s 7 -d 0 -p ack -e 40 -c 0 -i 6578 -a 0 -x {10.0 9.0 3284 ------- null} h -t 3.7257 -s 7 -d 8 -p ack -e 40 -c 0 -i 6578 -a 0 -x {10.0 9.0 3284 ------- null} r -t 3.72584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6563 -a 0 -x {9.0 10.0 3286 ------- null} + -t 3.72584 -s 10 -d 7 -p ack -e 40 -c 0 -i 6582 -a 0 -x {10.0 9.0 3286 ------- null} - -t 3.72584 -s 10 -d 7 -p ack -e 40 -c 0 -i 6582 -a 0 -x {10.0 9.0 3286 ------- null} h -t 3.72584 -s 10 -d 7 -p ack -e 40 -c 0 -i 6582 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.72586 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6577 -a 0 -x {9.0 10.0 3293 ------- null} + -t 3.72586 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6577 -a 0 -x {9.0 10.0 3293 ------- null} h -t 3.72586 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6577 -a 0 -x {9.0 10.0 3293 ------- null} r -t 3.72622 -s 0 -d 9 -p ack -e 40 -c 0 -i 6572 -a 0 -x {10.0 9.0 3281 ------- null} + -t 3.72622 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6583 -a 0 -x {9.0 10.0 3296 ------- null} - -t 3.72622 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6583 -a 0 -x {9.0 10.0 3296 ------- null} h -t 3.72622 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6583 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.7263 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6569 -a 0 -x {9.0 10.0 3289 ------- null} - -t 3.7263 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6569 -a 0 -x {9.0 10.0 3289 ------- null} h -t 3.7263 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6569 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.72659 -s 0 -d 9 -p ack -e 40 -c 0 -i 6576 -a 0 -x {10.0 9.0 3283 ------- null} - -t 3.72659 -s 0 -d 9 -p ack -e 40 -c 0 -i 6576 -a 0 -x {10.0 9.0 3283 ------- null} h -t 3.72659 -s 0 -d 9 -p ack -e 40 -c 0 -i 6576 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.72678 -s 10 -d 7 -p ack -e 40 -c 0 -i 6580 -a 0 -x {10.0 9.0 3285 ------- null} + -t 3.72678 -s 7 -d 0 -p ack -e 40 -c 0 -i 6580 -a 0 -x {10.0 9.0 3285 ------- null} h -t 3.72678 -s 7 -d 8 -p ack -e 40 -c 0 -i 6580 -a 0 -x {10.0 9.0 3285 ------- null} r -t 3.72688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6579 -a 0 -x {9.0 10.0 3294 ------- null} + -t 3.72688 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6579 -a 0 -x {9.0 10.0 3294 ------- null} h -t 3.72688 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6579 -a 0 -x {9.0 10.0 3294 ------- null} r -t 3.72693 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6565 -a 0 -x {9.0 10.0 3287 ------- null} + -t 3.72693 -s 10 -d 7 -p ack -e 40 -c 0 -i 6584 -a 0 -x {10.0 9.0 3287 ------- null} - -t 3.72693 -s 10 -d 7 -p ack -e 40 -c 0 -i 6584 -a 0 -x {10.0 9.0 3287 ------- null} h -t 3.72693 -s 10 -d 7 -p ack -e 40 -c 0 -i 6584 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.72742 -s 0 -d 9 -p ack -e 40 -c 0 -i 6574 -a 0 -x {10.0 9.0 3282 ------- null} + -t 3.72742 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6585 -a 0 -x {9.0 10.0 3297 ------- null} - -t 3.72742 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6585 -a 0 -x {9.0 10.0 3297 ------- null} h -t 3.72742 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6585 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.7275 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6571 -a 0 -x {9.0 10.0 3290 ------- null} - -t 3.7275 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6571 -a 0 -x {9.0 10.0 3290 ------- null} h -t 3.7275 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6571 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.72757 -s 0 -d 9 -p ack -e 40 -c 0 -i 6578 -a 0 -x {10.0 9.0 3284 ------- null} - -t 3.72757 -s 0 -d 9 -p ack -e 40 -c 0 -i 6578 -a 0 -x {10.0 9.0 3284 ------- null} h -t 3.72757 -s 0 -d 9 -p ack -e 40 -c 0 -i 6578 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.72787 -s 10 -d 7 -p ack -e 40 -c 0 -i 6582 -a 0 -x {10.0 9.0 3286 ------- null} + -t 3.72787 -s 7 -d 0 -p ack -e 40 -c 0 -i 6582 -a 0 -x {10.0 9.0 3286 ------- null} h -t 3.72787 -s 7 -d 8 -p ack -e 40 -c 0 -i 6582 -a 0 -x {10.0 9.0 3286 ------- null} r -t 3.72802 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6567 -a 0 -x {9.0 10.0 3288 ------- null} + -t 3.72802 -s 10 -d 7 -p ack -e 40 -c 0 -i 6586 -a 0 -x {10.0 9.0 3288 ------- null} - -t 3.72802 -s 10 -d 7 -p ack -e 40 -c 0 -i 6586 -a 0 -x {10.0 9.0 3288 ------- null} h -t 3.72802 -s 10 -d 7 -p ack -e 40 -c 0 -i 6586 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.72808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6581 -a 0 -x {9.0 10.0 3295 ------- null} + -t 3.72808 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6581 -a 0 -x {9.0 10.0 3295 ------- null} h -t 3.72808 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6581 -a 0 -x {9.0 10.0 3295 ------- null} + -t 3.72859 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6573 -a 0 -x {9.0 10.0 3291 ------- null} - -t 3.72859 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6573 -a 0 -x {9.0 10.0 3291 ------- null} h -t 3.72859 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6573 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.72862 -s 0 -d 9 -p ack -e 40 -c 0 -i 6576 -a 0 -x {10.0 9.0 3283 ------- null} + -t 3.72862 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6587 -a 0 -x {9.0 10.0 3298 ------- null} - -t 3.72862 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6587 -a 0 -x {9.0 10.0 3298 ------- null} h -t 3.72862 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6587 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.72882 -s 0 -d 9 -p ack -e 40 -c 0 -i 6580 -a 0 -x {10.0 9.0 3285 ------- null} - -t 3.72882 -s 0 -d 9 -p ack -e 40 -c 0 -i 6580 -a 0 -x {10.0 9.0 3285 ------- null} h -t 3.72882 -s 0 -d 9 -p ack -e 40 -c 0 -i 6580 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.72896 -s 10 -d 7 -p ack -e 40 -c 0 -i 6584 -a 0 -x {10.0 9.0 3287 ------- null} + -t 3.72896 -s 7 -d 0 -p ack -e 40 -c 0 -i 6584 -a 0 -x {10.0 9.0 3287 ------- null} h -t 3.72896 -s 7 -d 8 -p ack -e 40 -c 0 -i 6584 -a 0 -x {10.0 9.0 3287 ------- null} r -t 3.72902 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6583 -a 0 -x {9.0 10.0 3296 ------- null} + -t 3.72902 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6583 -a 0 -x {9.0 10.0 3296 ------- null} h -t 3.72902 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6583 -a 0 -x {9.0 10.0 3296 ------- null} r -t 3.7291 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6569 -a 0 -x {9.0 10.0 3289 ------- null} + -t 3.7291 -s 10 -d 7 -p ack -e 40 -c 0 -i 6588 -a 0 -x {10.0 9.0 3289 ------- null} - -t 3.7291 -s 10 -d 7 -p ack -e 40 -c 0 -i 6588 -a 0 -x {10.0 9.0 3289 ------- null} h -t 3.7291 -s 10 -d 7 -p ack -e 40 -c 0 -i 6588 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.7296 -s 0 -d 9 -p ack -e 40 -c 0 -i 6578 -a 0 -x {10.0 9.0 3284 ------- null} + -t 3.7296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6589 -a 0 -x {9.0 10.0 3299 ------- null} - -t 3.7296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6589 -a 0 -x {9.0 10.0 3299 ------- null} h -t 3.7296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6589 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.72968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6575 -a 0 -x {9.0 10.0 3292 ------- null} - -t 3.72968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6575 -a 0 -x {9.0 10.0 3292 ------- null} h -t 3.72968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6575 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.72974 -s 0 -d 9 -p ack -e 40 -c 0 -i 6582 -a 0 -x {10.0 9.0 3286 ------- null} - -t 3.72974 -s 0 -d 9 -p ack -e 40 -c 0 -i 6582 -a 0 -x {10.0 9.0 3286 ------- null} h -t 3.72974 -s 0 -d 9 -p ack -e 40 -c 0 -i 6582 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.73005 -s 10 -d 7 -p ack -e 40 -c 0 -i 6586 -a 0 -x {10.0 9.0 3288 ------- null} + -t 3.73005 -s 7 -d 0 -p ack -e 40 -c 0 -i 6586 -a 0 -x {10.0 9.0 3288 ------- null} h -t 3.73005 -s 7 -d 8 -p ack -e 40 -c 0 -i 6586 -a 0 -x {10.0 9.0 3288 ------- null} r -t 3.73022 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6585 -a 0 -x {9.0 10.0 3297 ------- null} + -t 3.73022 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6585 -a 0 -x {9.0 10.0 3297 ------- null} h -t 3.73022 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6585 -a 0 -x {9.0 10.0 3297 ------- null} r -t 3.7303 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6571 -a 0 -x {9.0 10.0 3290 ------- null} + -t 3.7303 -s 10 -d 7 -p ack -e 40 -c 0 -i 6590 -a 0 -x {10.0 9.0 3290 ------- null} - -t 3.7303 -s 10 -d 7 -p ack -e 40 -c 0 -i 6590 -a 0 -x {10.0 9.0 3290 ------- null} h -t 3.7303 -s 10 -d 7 -p ack -e 40 -c 0 -i 6590 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.73077 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6577 -a 0 -x {9.0 10.0 3293 ------- null} - -t 3.73077 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6577 -a 0 -x {9.0 10.0 3293 ------- null} h -t 3.73077 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6577 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.73085 -s 0 -d 9 -p ack -e 40 -c 0 -i 6580 -a 0 -x {10.0 9.0 3285 ------- null} + -t 3.73085 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6591 -a 0 -x {9.0 10.0 3300 ------- null} - -t 3.73085 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6591 -a 0 -x {9.0 10.0 3300 ------- null} h -t 3.73085 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6591 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.73099 -s 0 -d 9 -p ack -e 40 -c 0 -i 6584 -a 0 -x {10.0 9.0 3287 ------- null} - -t 3.73099 -s 0 -d 9 -p ack -e 40 -c 0 -i 6584 -a 0 -x {10.0 9.0 3287 ------- null} h -t 3.73099 -s 0 -d 9 -p ack -e 40 -c 0 -i 6584 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.73114 -s 10 -d 7 -p ack -e 40 -c 0 -i 6588 -a 0 -x {10.0 9.0 3289 ------- null} + -t 3.73114 -s 7 -d 0 -p ack -e 40 -c 0 -i 6588 -a 0 -x {10.0 9.0 3289 ------- null} h -t 3.73114 -s 7 -d 8 -p ack -e 40 -c 0 -i 6588 -a 0 -x {10.0 9.0 3289 ------- null} r -t 3.73139 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6573 -a 0 -x {9.0 10.0 3291 ------- null} + -t 3.73139 -s 10 -d 7 -p ack -e 40 -c 0 -i 6592 -a 0 -x {10.0 9.0 3291 ------- null} - -t 3.73139 -s 10 -d 7 -p ack -e 40 -c 0 -i 6592 -a 0 -x {10.0 9.0 3291 ------- null} h -t 3.73139 -s 10 -d 7 -p ack -e 40 -c 0 -i 6592 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.73142 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6587 -a 0 -x {9.0 10.0 3298 ------- null} + -t 3.73142 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6587 -a 0 -x {9.0 10.0 3298 ------- null} h -t 3.73142 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6587 -a 0 -x {9.0 10.0 3298 ------- null} r -t 3.73178 -s 0 -d 9 -p ack -e 40 -c 0 -i 6582 -a 0 -x {10.0 9.0 3286 ------- null} + -t 3.73178 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6593 -a 0 -x {9.0 10.0 3301 ------- null} - -t 3.73178 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6593 -a 0 -x {9.0 10.0 3301 ------- null} h -t 3.73178 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6593 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.73186 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6579 -a 0 -x {9.0 10.0 3294 ------- null} - -t 3.73186 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6579 -a 0 -x {9.0 10.0 3294 ------- null} h -t 3.73186 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6579 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.73216 -s 0 -d 9 -p ack -e 40 -c 0 -i 6586 -a 0 -x {10.0 9.0 3288 ------- null} - -t 3.73216 -s 0 -d 9 -p ack -e 40 -c 0 -i 6586 -a 0 -x {10.0 9.0 3288 ------- null} h -t 3.73216 -s 0 -d 9 -p ack -e 40 -c 0 -i 6586 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.73234 -s 10 -d 7 -p ack -e 40 -c 0 -i 6590 -a 0 -x {10.0 9.0 3290 ------- null} + -t 3.73234 -s 7 -d 0 -p ack -e 40 -c 0 -i 6590 -a 0 -x {10.0 9.0 3290 ------- null} h -t 3.73234 -s 7 -d 8 -p ack -e 40 -c 0 -i 6590 -a 0 -x {10.0 9.0 3290 ------- null} r -t 3.7324 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6589 -a 0 -x {9.0 10.0 3299 ------- null} + -t 3.7324 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6589 -a 0 -x {9.0 10.0 3299 ------- null} h -t 3.7324 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6589 -a 0 -x {9.0 10.0 3299 ------- null} r -t 3.73248 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6575 -a 0 -x {9.0 10.0 3292 ------- null} + -t 3.73248 -s 10 -d 7 -p ack -e 40 -c 0 -i 6594 -a 0 -x {10.0 9.0 3292 ------- null} - -t 3.73248 -s 10 -d 7 -p ack -e 40 -c 0 -i 6594 -a 0 -x {10.0 9.0 3292 ------- null} h -t 3.73248 -s 10 -d 7 -p ack -e 40 -c 0 -i 6594 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.73302 -s 0 -d 9 -p ack -e 40 -c 0 -i 6584 -a 0 -x {10.0 9.0 3287 ------- null} + -t 3.73302 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6595 -a 0 -x {9.0 10.0 3302 ------- null} - -t 3.73302 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6595 -a 0 -x {9.0 10.0 3302 ------- null} h -t 3.73302 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6595 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.73312 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6581 -a 0 -x {9.0 10.0 3295 ------- null} - -t 3.73312 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6581 -a 0 -x {9.0 10.0 3295 ------- null} h -t 3.73312 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6581 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.73338 -s 0 -d 9 -p ack -e 40 -c 0 -i 6588 -a 0 -x {10.0 9.0 3289 ------- null} - -t 3.73338 -s 0 -d 9 -p ack -e 40 -c 0 -i 6588 -a 0 -x {10.0 9.0 3289 ------- null} h -t 3.73338 -s 0 -d 9 -p ack -e 40 -c 0 -i 6588 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.73342 -s 10 -d 7 -p ack -e 40 -c 0 -i 6592 -a 0 -x {10.0 9.0 3291 ------- null} + -t 3.73342 -s 7 -d 0 -p ack -e 40 -c 0 -i 6592 -a 0 -x {10.0 9.0 3291 ------- null} h -t 3.73342 -s 7 -d 8 -p ack -e 40 -c 0 -i 6592 -a 0 -x {10.0 9.0 3291 ------- null} r -t 3.73357 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6577 -a 0 -x {9.0 10.0 3293 ------- null} + -t 3.73357 -s 10 -d 7 -p ack -e 40 -c 0 -i 6596 -a 0 -x {10.0 9.0 3293 ------- null} - -t 3.73357 -s 10 -d 7 -p ack -e 40 -c 0 -i 6596 -a 0 -x {10.0 9.0 3293 ------- null} h -t 3.73357 -s 10 -d 7 -p ack -e 40 -c 0 -i 6596 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.73365 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6591 -a 0 -x {9.0 10.0 3300 ------- null} + -t 3.73365 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6591 -a 0 -x {9.0 10.0 3300 ------- null} h -t 3.73365 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6591 -a 0 -x {9.0 10.0 3300 ------- null} r -t 3.73419 -s 0 -d 9 -p ack -e 40 -c 0 -i 6586 -a 0 -x {10.0 9.0 3288 ------- null} + -t 3.73419 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6597 -a 0 -x {9.0 10.0 3303 ------- null} - -t 3.73419 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6597 -a 0 -x {9.0 10.0 3303 ------- null} h -t 3.73419 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6597 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.73421 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6583 -a 0 -x {9.0 10.0 3296 ------- null} - -t 3.73421 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6583 -a 0 -x {9.0 10.0 3296 ------- null} h -t 3.73421 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6583 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.73445 -s 0 -d 9 -p ack -e 40 -c 0 -i 6590 -a 0 -x {10.0 9.0 3290 ------- null} - -t 3.73445 -s 0 -d 9 -p ack -e 40 -c 0 -i 6590 -a 0 -x {10.0 9.0 3290 ------- null} h -t 3.73445 -s 0 -d 9 -p ack -e 40 -c 0 -i 6590 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.73451 -s 10 -d 7 -p ack -e 40 -c 0 -i 6594 -a 0 -x {10.0 9.0 3292 ------- null} + -t 3.73451 -s 7 -d 0 -p ack -e 40 -c 0 -i 6594 -a 0 -x {10.0 9.0 3292 ------- null} h -t 3.73451 -s 7 -d 8 -p ack -e 40 -c 0 -i 6594 -a 0 -x {10.0 9.0 3292 ------- null} r -t 3.73458 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6593 -a 0 -x {9.0 10.0 3301 ------- null} + -t 3.73458 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6593 -a 0 -x {9.0 10.0 3301 ------- null} h -t 3.73458 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6593 -a 0 -x {9.0 10.0 3301 ------- null} r -t 3.73466 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6579 -a 0 -x {9.0 10.0 3294 ------- null} + -t 3.73466 -s 10 -d 7 -p ack -e 40 -c 0 -i 6598 -a 0 -x {10.0 9.0 3294 ------- null} - -t 3.73466 -s 10 -d 7 -p ack -e 40 -c 0 -i 6598 -a 0 -x {10.0 9.0 3294 ------- null} h -t 3.73466 -s 10 -d 7 -p ack -e 40 -c 0 -i 6598 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.7353 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6585 -a 0 -x {9.0 10.0 3297 ------- null} - -t 3.7353 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6585 -a 0 -x {9.0 10.0 3297 ------- null} h -t 3.7353 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6585 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.73541 -s 0 -d 9 -p ack -e 40 -c 0 -i 6588 -a 0 -x {10.0 9.0 3289 ------- null} + -t 3.73541 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6599 -a 0 -x {9.0 10.0 3304 ------- null} - -t 3.73541 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6599 -a 0 -x {9.0 10.0 3304 ------- null} h -t 3.73541 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6599 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.73558 -s 0 -d 9 -p ack -e 40 -c 0 -i 6592 -a 0 -x {10.0 9.0 3291 ------- null} - -t 3.73558 -s 0 -d 9 -p ack -e 40 -c 0 -i 6592 -a 0 -x {10.0 9.0 3291 ------- null} h -t 3.73558 -s 0 -d 9 -p ack -e 40 -c 0 -i 6592 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.7356 -s 10 -d 7 -p ack -e 40 -c 0 -i 6596 -a 0 -x {10.0 9.0 3293 ------- null} + -t 3.7356 -s 7 -d 0 -p ack -e 40 -c 0 -i 6596 -a 0 -x {10.0 9.0 3293 ------- null} h -t 3.7356 -s 7 -d 8 -p ack -e 40 -c 0 -i 6596 -a 0 -x {10.0 9.0 3293 ------- null} r -t 3.73582 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6595 -a 0 -x {9.0 10.0 3302 ------- null} + -t 3.73582 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6595 -a 0 -x {9.0 10.0 3302 ------- null} h -t 3.73582 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6595 -a 0 -x {9.0 10.0 3302 ------- null} r -t 3.73592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6581 -a 0 -x {9.0 10.0 3295 ------- null} + -t 3.73592 -s 10 -d 7 -p ack -e 40 -c 0 -i 6600 -a 0 -x {10.0 9.0 3295 ------- null} - -t 3.73592 -s 10 -d 7 -p ack -e 40 -c 0 -i 6600 -a 0 -x {10.0 9.0 3295 ------- null} h -t 3.73592 -s 10 -d 7 -p ack -e 40 -c 0 -i 6600 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.73648 -s 0 -d 9 -p ack -e 40 -c 0 -i 6590 -a 0 -x {10.0 9.0 3290 ------- null} + -t 3.73648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6601 -a 0 -x {9.0 10.0 3305 ------- null} - -t 3.73648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6601 -a 0 -x {9.0 10.0 3305 ------- null} h -t 3.73648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6601 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.73653 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6587 -a 0 -x {9.0 10.0 3298 ------- null} - -t 3.73653 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6587 -a 0 -x {9.0 10.0 3298 ------- null} h -t 3.73653 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6587 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.73669 -s 10 -d 7 -p ack -e 40 -c 0 -i 6598 -a 0 -x {10.0 9.0 3294 ------- null} + -t 3.73669 -s 7 -d 0 -p ack -e 40 -c 0 -i 6598 -a 0 -x {10.0 9.0 3294 ------- null} h -t 3.73669 -s 7 -d 8 -p ack -e 40 -c 0 -i 6598 -a 0 -x {10.0 9.0 3294 ------- null} + -t 3.7368 -s 0 -d 9 -p ack -e 40 -c 0 -i 6594 -a 0 -x {10.0 9.0 3292 ------- null} - -t 3.7368 -s 0 -d 9 -p ack -e 40 -c 0 -i 6594 -a 0 -x {10.0 9.0 3292 ------- null} h -t 3.7368 -s 0 -d 9 -p ack -e 40 -c 0 -i 6594 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.73699 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6597 -a 0 -x {9.0 10.0 3303 ------- null} + -t 3.73699 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6597 -a 0 -x {9.0 10.0 3303 ------- null} h -t 3.73699 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6597 -a 0 -x {9.0 10.0 3303 ------- null} r -t 3.73701 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6583 -a 0 -x {9.0 10.0 3296 ------- null} + -t 3.73701 -s 10 -d 7 -p ack -e 40 -c 0 -i 6602 -a 0 -x {10.0 9.0 3296 ------- null} - -t 3.73701 -s 10 -d 7 -p ack -e 40 -c 0 -i 6602 -a 0 -x {10.0 9.0 3296 ------- null} h -t 3.73701 -s 10 -d 7 -p ack -e 40 -c 0 -i 6602 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.73762 -s 0 -d 9 -p ack -e 40 -c 0 -i 6592 -a 0 -x {10.0 9.0 3291 ------- null} + -t 3.73762 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6603 -a 0 -x {9.0 10.0 3306 ------- null} - -t 3.73762 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6603 -a 0 -x {9.0 10.0 3306 ------- null} h -t 3.73762 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6603 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.73763 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6589 -a 0 -x {9.0 10.0 3299 ------- null} - -t 3.73763 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6589 -a 0 -x {9.0 10.0 3299 ------- null} h -t 3.73763 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6589 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.7377 -s 0 -d 9 -p ack -e 40 -c 0 -i 6596 -a 0 -x {10.0 9.0 3293 ------- null} - -t 3.7377 -s 0 -d 9 -p ack -e 40 -c 0 -i 6596 -a 0 -x {10.0 9.0 3293 ------- null} h -t 3.7377 -s 0 -d 9 -p ack -e 40 -c 0 -i 6596 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.73795 -s 10 -d 7 -p ack -e 40 -c 0 -i 6600 -a 0 -x {10.0 9.0 3295 ------- null} + -t 3.73795 -s 7 -d 0 -p ack -e 40 -c 0 -i 6600 -a 0 -x {10.0 9.0 3295 ------- null} h -t 3.73795 -s 7 -d 8 -p ack -e 40 -c 0 -i 6600 -a 0 -x {10.0 9.0 3295 ------- null} r -t 3.7381 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6585 -a 0 -x {9.0 10.0 3297 ------- null} + -t 3.7381 -s 10 -d 7 -p ack -e 40 -c 0 -i 6604 -a 0 -x {10.0 9.0 3297 ------- null} - -t 3.7381 -s 10 -d 7 -p ack -e 40 -c 0 -i 6604 -a 0 -x {10.0 9.0 3297 ------- null} h -t 3.7381 -s 10 -d 7 -p ack -e 40 -c 0 -i 6604 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.73821 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6599 -a 0 -x {9.0 10.0 3304 ------- null} + -t 3.73821 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6599 -a 0 -x {9.0 10.0 3304 ------- null} h -t 3.73821 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6599 -a 0 -x {9.0 10.0 3304 ------- null} + -t 3.73872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6591 -a 0 -x {9.0 10.0 3300 ------- null} - -t 3.73872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6591 -a 0 -x {9.0 10.0 3300 ------- null} h -t 3.73872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6591 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.73883 -s 0 -d 9 -p ack -e 40 -c 0 -i 6594 -a 0 -x {10.0 9.0 3292 ------- null} + -t 3.73883 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6605 -a 0 -x {9.0 10.0 3307 ------- null} - -t 3.73883 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6605 -a 0 -x {9.0 10.0 3307 ------- null} h -t 3.73883 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6605 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.73885 -s 0 -d 9 -p ack -e 40 -c 0 -i 6598 -a 0 -x {10.0 9.0 3294 ------- null} - -t 3.73885 -s 0 -d 9 -p ack -e 40 -c 0 -i 6598 -a 0 -x {10.0 9.0 3294 ------- null} h -t 3.73885 -s 0 -d 9 -p ack -e 40 -c 0 -i 6598 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.73904 -s 10 -d 7 -p ack -e 40 -c 0 -i 6602 -a 0 -x {10.0 9.0 3296 ------- null} + -t 3.73904 -s 7 -d 0 -p ack -e 40 -c 0 -i 6602 -a 0 -x {10.0 9.0 3296 ------- null} h -t 3.73904 -s 7 -d 8 -p ack -e 40 -c 0 -i 6602 -a 0 -x {10.0 9.0 3296 ------- null} r -t 3.73928 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6601 -a 0 -x {9.0 10.0 3305 ------- null} + -t 3.73928 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6601 -a 0 -x {9.0 10.0 3305 ------- null} h -t 3.73928 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6601 -a 0 -x {9.0 10.0 3305 ------- null} r -t 3.73933 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6587 -a 0 -x {9.0 10.0 3298 ------- null} + -t 3.73933 -s 10 -d 7 -p ack -e 40 -c 0 -i 6606 -a 0 -x {10.0 9.0 3298 ------- null} - -t 3.73933 -s 10 -d 7 -p ack -e 40 -c 0 -i 6606 -a 0 -x {10.0 9.0 3298 ------- null} h -t 3.73933 -s 10 -d 7 -p ack -e 40 -c 0 -i 6606 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.73973 -s 0 -d 9 -p ack -e 40 -c 0 -i 6596 -a 0 -x {10.0 9.0 3293 ------- null} + -t 3.73973 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6607 -a 0 -x {9.0 10.0 3308 ------- null} - -t 3.73973 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6607 -a 0 -x {9.0 10.0 3308 ------- null} h -t 3.73973 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6607 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.73981 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6593 -a 0 -x {9.0 10.0 3301 ------- null} - -t 3.73981 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6593 -a 0 -x {9.0 10.0 3301 ------- null} h -t 3.73981 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6593 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.73994 -s 0 -d 9 -p ack -e 40 -c 0 -i 6600 -a 0 -x {10.0 9.0 3295 ------- null} - -t 3.73994 -s 0 -d 9 -p ack -e 40 -c 0 -i 6600 -a 0 -x {10.0 9.0 3295 ------- null} h -t 3.73994 -s 0 -d 9 -p ack -e 40 -c 0 -i 6600 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.74013 -s 10 -d 7 -p ack -e 40 -c 0 -i 6604 -a 0 -x {10.0 9.0 3297 ------- null} + -t 3.74013 -s 7 -d 0 -p ack -e 40 -c 0 -i 6604 -a 0 -x {10.0 9.0 3297 ------- null} h -t 3.74013 -s 7 -d 8 -p ack -e 40 -c 0 -i 6604 -a 0 -x {10.0 9.0 3297 ------- null} r -t 3.74042 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6603 -a 0 -x {9.0 10.0 3306 ------- null} + -t 3.74042 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6603 -a 0 -x {9.0 10.0 3306 ------- null} h -t 3.74042 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6603 -a 0 -x {9.0 10.0 3306 ------- null} r -t 3.74043 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6589 -a 0 -x {9.0 10.0 3299 ------- null} + -t 3.74043 -s 10 -d 7 -p ack -e 40 -c 0 -i 6608 -a 0 -x {10.0 9.0 3299 ------- null} - -t 3.74043 -s 10 -d 7 -p ack -e 40 -c 0 -i 6608 -a 0 -x {10.0 9.0 3299 ------- null} h -t 3.74043 -s 10 -d 7 -p ack -e 40 -c 0 -i 6608 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.74088 -s 0 -d 9 -p ack -e 40 -c 0 -i 6598 -a 0 -x {10.0 9.0 3294 ------- null} + -t 3.74088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6609 -a 0 -x {9.0 10.0 3309 ------- null} - -t 3.74088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6609 -a 0 -x {9.0 10.0 3309 ------- null} h -t 3.74088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6609 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.7409 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6595 -a 0 -x {9.0 10.0 3302 ------- null} - -t 3.7409 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6595 -a 0 -x {9.0 10.0 3302 ------- null} h -t 3.7409 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6595 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.74118 -s 0 -d 9 -p ack -e 40 -c 0 -i 6602 -a 0 -x {10.0 9.0 3296 ------- null} - -t 3.74118 -s 0 -d 9 -p ack -e 40 -c 0 -i 6602 -a 0 -x {10.0 9.0 3296 ------- null} h -t 3.74118 -s 0 -d 9 -p ack -e 40 -c 0 -i 6602 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.74136 -s 10 -d 7 -p ack -e 40 -c 0 -i 6606 -a 0 -x {10.0 9.0 3298 ------- null} + -t 3.74136 -s 7 -d 0 -p ack -e 40 -c 0 -i 6606 -a 0 -x {10.0 9.0 3298 ------- null} h -t 3.74136 -s 7 -d 8 -p ack -e 40 -c 0 -i 6606 -a 0 -x {10.0 9.0 3298 ------- null} r -t 3.74152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6591 -a 0 -x {9.0 10.0 3300 ------- null} + -t 3.74152 -s 10 -d 7 -p ack -e 40 -c 0 -i 6610 -a 0 -x {10.0 9.0 3300 ------- null} - -t 3.74152 -s 10 -d 7 -p ack -e 40 -c 0 -i 6610 -a 0 -x {10.0 9.0 3300 ------- null} h -t 3.74152 -s 10 -d 7 -p ack -e 40 -c 0 -i 6610 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.74163 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6605 -a 0 -x {9.0 10.0 3307 ------- null} + -t 3.74163 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6605 -a 0 -x {9.0 10.0 3307 ------- null} h -t 3.74163 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6605 -a 0 -x {9.0 10.0 3307 ------- null} r -t 3.74197 -s 0 -d 9 -p ack -e 40 -c 0 -i 6600 -a 0 -x {10.0 9.0 3295 ------- null} + -t 3.74197 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6611 -a 0 -x {9.0 10.0 3310 ------- null} - -t 3.74197 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6611 -a 0 -x {9.0 10.0 3310 ------- null} h -t 3.74197 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6611 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.74219 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6597 -a 0 -x {9.0 10.0 3303 ------- null} - -t 3.74219 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6597 -a 0 -x {9.0 10.0 3303 ------- null} h -t 3.74219 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6597 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.74246 -s 10 -d 7 -p ack -e 40 -c 0 -i 6608 -a 0 -x {10.0 9.0 3299 ------- null} + -t 3.74246 -s 7 -d 0 -p ack -e 40 -c 0 -i 6608 -a 0 -x {10.0 9.0 3299 ------- null} h -t 3.74246 -s 7 -d 8 -p ack -e 40 -c 0 -i 6608 -a 0 -x {10.0 9.0 3299 ------- null} + -t 3.74248 -s 0 -d 9 -p ack -e 40 -c 0 -i 6604 -a 0 -x {10.0 9.0 3297 ------- null} - -t 3.74248 -s 0 -d 9 -p ack -e 40 -c 0 -i 6604 -a 0 -x {10.0 9.0 3297 ------- null} h -t 3.74248 -s 0 -d 9 -p ack -e 40 -c 0 -i 6604 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.74253 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6607 -a 0 -x {9.0 10.0 3308 ------- null} + -t 3.74253 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6607 -a 0 -x {9.0 10.0 3308 ------- null} h -t 3.74253 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6607 -a 0 -x {9.0 10.0 3308 ------- null} r -t 3.74261 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6593 -a 0 -x {9.0 10.0 3301 ------- null} + -t 3.74261 -s 10 -d 7 -p ack -e 40 -c 0 -i 6612 -a 0 -x {10.0 9.0 3301 ------- null} - -t 3.74261 -s 10 -d 7 -p ack -e 40 -c 0 -i 6612 -a 0 -x {10.0 9.0 3301 ------- null} h -t 3.74261 -s 10 -d 7 -p ack -e 40 -c 0 -i 6612 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.74322 -s 0 -d 9 -p ack -e 40 -c 0 -i 6602 -a 0 -x {10.0 9.0 3296 ------- null} + -t 3.74322 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6613 -a 0 -x {9.0 10.0 3311 ------- null} - -t 3.74322 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6613 -a 0 -x {9.0 10.0 3311 ------- null} h -t 3.74322 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6613 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.74342 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6599 -a 0 -x {9.0 10.0 3304 ------- null} - -t 3.74342 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6599 -a 0 -x {9.0 10.0 3304 ------- null} h -t 3.74342 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6599 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.74355 -s 10 -d 7 -p ack -e 40 -c 0 -i 6610 -a 0 -x {10.0 9.0 3300 ------- null} + -t 3.74355 -s 7 -d 0 -p ack -e 40 -c 0 -i 6610 -a 0 -x {10.0 9.0 3300 ------- null} h -t 3.74355 -s 7 -d 8 -p ack -e 40 -c 0 -i 6610 -a 0 -x {10.0 9.0 3300 ------- null} + -t 3.7436 -s 0 -d 9 -p ack -e 40 -c 0 -i 6606 -a 0 -x {10.0 9.0 3298 ------- null} - -t 3.7436 -s 0 -d 9 -p ack -e 40 -c 0 -i 6606 -a 0 -x {10.0 9.0 3298 ------- null} h -t 3.7436 -s 0 -d 9 -p ack -e 40 -c 0 -i 6606 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.74368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6609 -a 0 -x {9.0 10.0 3309 ------- null} + -t 3.74368 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6609 -a 0 -x {9.0 10.0 3309 ------- null} h -t 3.74368 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6609 -a 0 -x {9.0 10.0 3309 ------- null} r -t 3.7437 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6595 -a 0 -x {9.0 10.0 3302 ------- null} + -t 3.7437 -s 10 -d 7 -p ack -e 40 -c 0 -i 6614 -a 0 -x {10.0 9.0 3302 ------- null} - -t 3.7437 -s 10 -d 7 -p ack -e 40 -c 0 -i 6614 -a 0 -x {10.0 9.0 3302 ------- null} h -t 3.7437 -s 10 -d 7 -p ack -e 40 -c 0 -i 6614 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.74451 -s 0 -d 9 -p ack -e 40 -c 0 -i 6604 -a 0 -x {10.0 9.0 3297 ------- null} + -t 3.74451 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6615 -a 0 -x {9.0 10.0 3312 ------- null} - -t 3.74451 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6615 -a 0 -x {9.0 10.0 3312 ------- null} h -t 3.74451 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6615 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.74451 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6601 -a 0 -x {9.0 10.0 3305 ------- null} - -t 3.74451 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6601 -a 0 -x {9.0 10.0 3305 ------- null} h -t 3.74451 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6601 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.74464 -s 10 -d 7 -p ack -e 40 -c 0 -i 6612 -a 0 -x {10.0 9.0 3301 ------- null} + -t 3.74464 -s 7 -d 0 -p ack -e 40 -c 0 -i 6612 -a 0 -x {10.0 9.0 3301 ------- null} h -t 3.74464 -s 7 -d 8 -p ack -e 40 -c 0 -i 6612 -a 0 -x {10.0 9.0 3301 ------- null} + -t 3.74469 -s 0 -d 9 -p ack -e 40 -c 0 -i 6608 -a 0 -x {10.0 9.0 3299 ------- null} - -t 3.74469 -s 0 -d 9 -p ack -e 40 -c 0 -i 6608 -a 0 -x {10.0 9.0 3299 ------- null} h -t 3.74469 -s 0 -d 9 -p ack -e 40 -c 0 -i 6608 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.74477 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6611 -a 0 -x {9.0 10.0 3310 ------- null} + -t 3.74477 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6611 -a 0 -x {9.0 10.0 3310 ------- null} h -t 3.74477 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6611 -a 0 -x {9.0 10.0 3310 ------- null} r -t 3.74499 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6597 -a 0 -x {9.0 10.0 3303 ------- null} + -t 3.74499 -s 10 -d 7 -p ack -e 40 -c 0 -i 6616 -a 0 -x {10.0 9.0 3303 ------- null} - -t 3.74499 -s 10 -d 7 -p ack -e 40 -c 0 -i 6616 -a 0 -x {10.0 9.0 3303 ------- null} h -t 3.74499 -s 10 -d 7 -p ack -e 40 -c 0 -i 6616 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.7456 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6603 -a 0 -x {9.0 10.0 3306 ------- null} - -t 3.7456 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6603 -a 0 -x {9.0 10.0 3306 ------- null} h -t 3.7456 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6603 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.74563 -s 0 -d 9 -p ack -e 40 -c 0 -i 6606 -a 0 -x {10.0 9.0 3298 ------- null} + -t 3.74563 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6617 -a 0 -x {9.0 10.0 3313 ------- null} - -t 3.74563 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6617 -a 0 -x {9.0 10.0 3313 ------- null} h -t 3.74563 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6617 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.74573 -s 10 -d 7 -p ack -e 40 -c 0 -i 6614 -a 0 -x {10.0 9.0 3302 ------- null} + -t 3.74573 -s 7 -d 0 -p ack -e 40 -c 0 -i 6614 -a 0 -x {10.0 9.0 3302 ------- null} h -t 3.74573 -s 7 -d 8 -p ack -e 40 -c 0 -i 6614 -a 0 -x {10.0 9.0 3302 ------- null} + -t 3.74574 -s 0 -d 9 -p ack -e 40 -c 0 -i 6610 -a 0 -x {10.0 9.0 3300 ------- null} - -t 3.74574 -s 0 -d 9 -p ack -e 40 -c 0 -i 6610 -a 0 -x {10.0 9.0 3300 ------- null} h -t 3.74574 -s 0 -d 9 -p ack -e 40 -c 0 -i 6610 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.74602 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6613 -a 0 -x {9.0 10.0 3311 ------- null} + -t 3.74602 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6613 -a 0 -x {9.0 10.0 3311 ------- null} h -t 3.74602 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6613 -a 0 -x {9.0 10.0 3311 ------- null} r -t 3.74622 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6599 -a 0 -x {9.0 10.0 3304 ------- null} + -t 3.74622 -s 10 -d 7 -p ack -e 40 -c 0 -i 6618 -a 0 -x {10.0 9.0 3304 ------- null} - -t 3.74622 -s 10 -d 7 -p ack -e 40 -c 0 -i 6618 -a 0 -x {10.0 9.0 3304 ------- null} h -t 3.74622 -s 10 -d 7 -p ack -e 40 -c 0 -i 6618 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.74669 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6605 -a 0 -x {9.0 10.0 3307 ------- null} - -t 3.74669 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6605 -a 0 -x {9.0 10.0 3307 ------- null} h -t 3.74669 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6605 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.74672 -s 0 -d 9 -p ack -e 40 -c 0 -i 6608 -a 0 -x {10.0 9.0 3299 ------- null} + -t 3.74672 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6619 -a 0 -x {9.0 10.0 3314 ------- null} - -t 3.74672 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6619 -a 0 -x {9.0 10.0 3314 ------- null} h -t 3.74672 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6619 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.74677 -s 0 -d 9 -p ack -e 40 -c 0 -i 6612 -a 0 -x {10.0 9.0 3301 ------- null} - -t 3.74677 -s 0 -d 9 -p ack -e 40 -c 0 -i 6612 -a 0 -x {10.0 9.0 3301 ------- null} h -t 3.74677 -s 0 -d 9 -p ack -e 40 -c 0 -i 6612 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.74702 -s 10 -d 7 -p ack -e 40 -c 0 -i 6616 -a 0 -x {10.0 9.0 3303 ------- null} + -t 3.74702 -s 7 -d 0 -p ack -e 40 -c 0 -i 6616 -a 0 -x {10.0 9.0 3303 ------- null} h -t 3.74702 -s 7 -d 8 -p ack -e 40 -c 0 -i 6616 -a 0 -x {10.0 9.0 3303 ------- null} r -t 3.74731 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6615 -a 0 -x {9.0 10.0 3312 ------- null} + -t 3.74731 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6615 -a 0 -x {9.0 10.0 3312 ------- null} h -t 3.74731 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6615 -a 0 -x {9.0 10.0 3312 ------- null} r -t 3.74731 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6601 -a 0 -x {9.0 10.0 3305 ------- null} + -t 3.74731 -s 10 -d 7 -p ack -e 40 -c 0 -i 6620 -a 0 -x {10.0 9.0 3305 ------- null} - -t 3.74731 -s 10 -d 7 -p ack -e 40 -c 0 -i 6620 -a 0 -x {10.0 9.0 3305 ------- null} h -t 3.74731 -s 10 -d 7 -p ack -e 40 -c 0 -i 6620 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.74778 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6607 -a 0 -x {9.0 10.0 3308 ------- null} - -t 3.74778 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6607 -a 0 -x {9.0 10.0 3308 ------- null} h -t 3.74778 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6607 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.74778 -s 0 -d 9 -p ack -e 40 -c 0 -i 6610 -a 0 -x {10.0 9.0 3300 ------- null} + -t 3.74778 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6621 -a 0 -x {9.0 10.0 3315 ------- null} - -t 3.74778 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6621 -a 0 -x {9.0 10.0 3315 ------- null} h -t 3.74778 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6621 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.74792 -s 0 -d 9 -p ack -e 40 -c 0 -i 6614 -a 0 -x {10.0 9.0 3302 ------- null} - -t 3.74792 -s 0 -d 9 -p ack -e 40 -c 0 -i 6614 -a 0 -x {10.0 9.0 3302 ------- null} h -t 3.74792 -s 0 -d 9 -p ack -e 40 -c 0 -i 6614 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.74826 -s 10 -d 7 -p ack -e 40 -c 0 -i 6618 -a 0 -x {10.0 9.0 3304 ------- null} + -t 3.74826 -s 7 -d 0 -p ack -e 40 -c 0 -i 6618 -a 0 -x {10.0 9.0 3304 ------- null} h -t 3.74826 -s 7 -d 8 -p ack -e 40 -c 0 -i 6618 -a 0 -x {10.0 9.0 3304 ------- null} r -t 3.7484 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6603 -a 0 -x {9.0 10.0 3306 ------- null} + -t 3.7484 -s 10 -d 7 -p ack -e 40 -c 0 -i 6622 -a 0 -x {10.0 9.0 3306 ------- null} - -t 3.7484 -s 10 -d 7 -p ack -e 40 -c 0 -i 6622 -a 0 -x {10.0 9.0 3306 ------- null} h -t 3.7484 -s 10 -d 7 -p ack -e 40 -c 0 -i 6622 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.74843 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6617 -a 0 -x {9.0 10.0 3313 ------- null} + -t 3.74843 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6617 -a 0 -x {9.0 10.0 3313 ------- null} h -t 3.74843 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6617 -a 0 -x {9.0 10.0 3313 ------- null} r -t 3.7488 -s 0 -d 9 -p ack -e 40 -c 0 -i 6612 -a 0 -x {10.0 9.0 3301 ------- null} + -t 3.7488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6623 -a 0 -x {9.0 10.0 3316 ------- null} - -t 3.7488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6623 -a 0 -x {9.0 10.0 3316 ------- null} h -t 3.7488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6623 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.74886 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6609 -a 0 -x {9.0 10.0 3309 ------- null} - -t 3.74886 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6609 -a 0 -x {9.0 10.0 3309 ------- null} h -t 3.74886 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6609 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.74902 -s 0 -d 9 -p ack -e 40 -c 0 -i 6616 -a 0 -x {10.0 9.0 3303 ------- null} - -t 3.74902 -s 0 -d 9 -p ack -e 40 -c 0 -i 6616 -a 0 -x {10.0 9.0 3303 ------- null} h -t 3.74902 -s 0 -d 9 -p ack -e 40 -c 0 -i 6616 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.74934 -s 10 -d 7 -p ack -e 40 -c 0 -i 6620 -a 0 -x {10.0 9.0 3305 ------- null} + -t 3.74934 -s 7 -d 0 -p ack -e 40 -c 0 -i 6620 -a 0 -x {10.0 9.0 3305 ------- null} h -t 3.74934 -s 7 -d 8 -p ack -e 40 -c 0 -i 6620 -a 0 -x {10.0 9.0 3305 ------- null} r -t 3.74949 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6605 -a 0 -x {9.0 10.0 3307 ------- null} + -t 3.74949 -s 10 -d 7 -p ack -e 40 -c 0 -i 6624 -a 0 -x {10.0 9.0 3307 ------- null} - -t 3.74949 -s 10 -d 7 -p ack -e 40 -c 0 -i 6624 -a 0 -x {10.0 9.0 3307 ------- null} h -t 3.74949 -s 10 -d 7 -p ack -e 40 -c 0 -i 6624 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.74952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6619 -a 0 -x {9.0 10.0 3314 ------- null} + -t 3.74952 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6619 -a 0 -x {9.0 10.0 3314 ------- null} h -t 3.74952 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6619 -a 0 -x {9.0 10.0 3314 ------- null} + -t 3.74995 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6611 -a 0 -x {9.0 10.0 3310 ------- null} - -t 3.74995 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6611 -a 0 -x {9.0 10.0 3310 ------- null} h -t 3.74995 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6611 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.74995 -s 0 -d 9 -p ack -e 40 -c 0 -i 6614 -a 0 -x {10.0 9.0 3302 ------- null} + -t 3.74995 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6625 -a 0 -x {9.0 10.0 3317 ------- null} - -t 3.74995 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6625 -a 0 -x {9.0 10.0 3317 ------- null} h -t 3.74995 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6625 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.75002 -s 0 -d 9 -p ack -e 40 -c 0 -i 6618 -a 0 -x {10.0 9.0 3304 ------- null} - -t 3.75002 -s 0 -d 9 -p ack -e 40 -c 0 -i 6618 -a 0 -x {10.0 9.0 3304 ------- null} h -t 3.75002 -s 0 -d 9 -p ack -e 40 -c 0 -i 6618 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.75043 -s 10 -d 7 -p ack -e 40 -c 0 -i 6622 -a 0 -x {10.0 9.0 3306 ------- null} + -t 3.75043 -s 7 -d 0 -p ack -e 40 -c 0 -i 6622 -a 0 -x {10.0 9.0 3306 ------- null} h -t 3.75043 -s 7 -d 8 -p ack -e 40 -c 0 -i 6622 -a 0 -x {10.0 9.0 3306 ------- null} r -t 3.75058 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6607 -a 0 -x {9.0 10.0 3308 ------- null} + -t 3.75058 -s 10 -d 7 -p ack -e 40 -c 0 -i 6626 -a 0 -x {10.0 9.0 3308 ------- null} - -t 3.75058 -s 10 -d 7 -p ack -e 40 -c 0 -i 6626 -a 0 -x {10.0 9.0 3308 ------- null} h -t 3.75058 -s 10 -d 7 -p ack -e 40 -c 0 -i 6626 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.75058 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6621 -a 0 -x {9.0 10.0 3315 ------- null} + -t 3.75058 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6621 -a 0 -x {9.0 10.0 3315 ------- null} h -t 3.75058 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6621 -a 0 -x {9.0 10.0 3315 ------- null} + -t 3.75104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6613 -a 0 -x {9.0 10.0 3311 ------- null} - -t 3.75104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6613 -a 0 -x {9.0 10.0 3311 ------- null} h -t 3.75104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6613 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.75106 -s 0 -d 9 -p ack -e 40 -c 0 -i 6616 -a 0 -x {10.0 9.0 3303 ------- null} + -t 3.75106 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6627 -a 0 -x {9.0 10.0 3318 ------- null} - -t 3.75106 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6627 -a 0 -x {9.0 10.0 3318 ------- null} h -t 3.75106 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6627 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.75125 -s 0 -d 9 -p ack -e 40 -c 0 -i 6620 -a 0 -x {10.0 9.0 3305 ------- null} - -t 3.75125 -s 0 -d 9 -p ack -e 40 -c 0 -i 6620 -a 0 -x {10.0 9.0 3305 ------- null} h -t 3.75125 -s 0 -d 9 -p ack -e 40 -c 0 -i 6620 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.75152 -s 10 -d 7 -p ack -e 40 -c 0 -i 6624 -a 0 -x {10.0 9.0 3307 ------- null} + -t 3.75152 -s 7 -d 0 -p ack -e 40 -c 0 -i 6624 -a 0 -x {10.0 9.0 3307 ------- null} h -t 3.75152 -s 7 -d 8 -p ack -e 40 -c 0 -i 6624 -a 0 -x {10.0 9.0 3307 ------- null} r -t 3.7516 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6623 -a 0 -x {9.0 10.0 3316 ------- null} + -t 3.7516 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6623 -a 0 -x {9.0 10.0 3316 ------- null} h -t 3.7516 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6623 -a 0 -x {9.0 10.0 3316 ------- null} r -t 3.75166 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6609 -a 0 -x {9.0 10.0 3309 ------- null} + -t 3.75166 -s 10 -d 7 -p ack -e 40 -c 0 -i 6628 -a 0 -x {10.0 9.0 3309 ------- null} - -t 3.75166 -s 10 -d 7 -p ack -e 40 -c 0 -i 6628 -a 0 -x {10.0 9.0 3309 ------- null} h -t 3.75166 -s 10 -d 7 -p ack -e 40 -c 0 -i 6628 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.75205 -s 0 -d 9 -p ack -e 40 -c 0 -i 6618 -a 0 -x {10.0 9.0 3304 ------- null} + -t 3.75205 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6629 -a 0 -x {9.0 10.0 3319 ------- null} - -t 3.75205 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6629 -a 0 -x {9.0 10.0 3319 ------- null} h -t 3.75205 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6629 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.75213 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6615 -a 0 -x {9.0 10.0 3312 ------- null} - -t 3.75213 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6615 -a 0 -x {9.0 10.0 3312 ------- null} h -t 3.75213 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6615 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.7523 -s 0 -d 9 -p ack -e 40 -c 0 -i 6622 -a 0 -x {10.0 9.0 3306 ------- null} - -t 3.7523 -s 0 -d 9 -p ack -e 40 -c 0 -i 6622 -a 0 -x {10.0 9.0 3306 ------- null} h -t 3.7523 -s 0 -d 9 -p ack -e 40 -c 0 -i 6622 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.75261 -s 10 -d 7 -p ack -e 40 -c 0 -i 6626 -a 0 -x {10.0 9.0 3308 ------- null} + -t 3.75261 -s 7 -d 0 -p ack -e 40 -c 0 -i 6626 -a 0 -x {10.0 9.0 3308 ------- null} h -t 3.75261 -s 7 -d 8 -p ack -e 40 -c 0 -i 6626 -a 0 -x {10.0 9.0 3308 ------- null} r -t 3.75275 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6611 -a 0 -x {9.0 10.0 3310 ------- null} + -t 3.75275 -s 10 -d 7 -p ack -e 40 -c 0 -i 6630 -a 0 -x {10.0 9.0 3310 ------- null} - -t 3.75275 -s 10 -d 7 -p ack -e 40 -c 0 -i 6630 -a 0 -x {10.0 9.0 3310 ------- null} h -t 3.75275 -s 10 -d 7 -p ack -e 40 -c 0 -i 6630 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.75275 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6625 -a 0 -x {9.0 10.0 3317 ------- null} + -t 3.75275 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6625 -a 0 -x {9.0 10.0 3317 ------- null} h -t 3.75275 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6625 -a 0 -x {9.0 10.0 3317 ------- null} + -t 3.75322 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6617 -a 0 -x {9.0 10.0 3313 ------- null} - -t 3.75322 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6617 -a 0 -x {9.0 10.0 3313 ------- null} h -t 3.75322 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6617 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.75328 -s 0 -d 9 -p ack -e 40 -c 0 -i 6620 -a 0 -x {10.0 9.0 3305 ------- null} + -t 3.75328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6631 -a 0 -x {9.0 10.0 3320 ------- null} - -t 3.75328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6631 -a 0 -x {9.0 10.0 3320 ------- null} h -t 3.75328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6631 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.75347 -s 0 -d 9 -p ack -e 40 -c 0 -i 6624 -a 0 -x {10.0 9.0 3307 ------- null} - -t 3.75347 -s 0 -d 9 -p ack -e 40 -c 0 -i 6624 -a 0 -x {10.0 9.0 3307 ------- null} h -t 3.75347 -s 0 -d 9 -p ack -e 40 -c 0 -i 6624 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.7537 -s 10 -d 7 -p ack -e 40 -c 0 -i 6628 -a 0 -x {10.0 9.0 3309 ------- null} + -t 3.7537 -s 7 -d 0 -p ack -e 40 -c 0 -i 6628 -a 0 -x {10.0 9.0 3309 ------- null} h -t 3.7537 -s 7 -d 8 -p ack -e 40 -c 0 -i 6628 -a 0 -x {10.0 9.0 3309 ------- null} r -t 3.75384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6613 -a 0 -x {9.0 10.0 3311 ------- null} + -t 3.75384 -s 10 -d 7 -p ack -e 40 -c 0 -i 6632 -a 0 -x {10.0 9.0 3311 ------- null} - -t 3.75384 -s 10 -d 7 -p ack -e 40 -c 0 -i 6632 -a 0 -x {10.0 9.0 3311 ------- null} h -t 3.75384 -s 10 -d 7 -p ack -e 40 -c 0 -i 6632 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.75386 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6627 -a 0 -x {9.0 10.0 3318 ------- null} + -t 3.75386 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6627 -a 0 -x {9.0 10.0 3318 ------- null} h -t 3.75386 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6627 -a 0 -x {9.0 10.0 3318 ------- null} r -t 3.75434 -s 0 -d 9 -p ack -e 40 -c 0 -i 6622 -a 0 -x {10.0 9.0 3306 ------- null} + -t 3.75434 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6633 -a 0 -x {9.0 10.0 3321 ------- null} - -t 3.75434 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6633 -a 0 -x {9.0 10.0 3321 ------- null} h -t 3.75434 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6633 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.7545 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6619 -a 0 -x {9.0 10.0 3314 ------- null} - -t 3.7545 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6619 -a 0 -x {9.0 10.0 3314 ------- null} h -t 3.7545 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6619 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.75477 -s 0 -d 9 -p ack -e 40 -c 0 -i 6626 -a 0 -x {10.0 9.0 3308 ------- null} - -t 3.75477 -s 0 -d 9 -p ack -e 40 -c 0 -i 6626 -a 0 -x {10.0 9.0 3308 ------- null} h -t 3.75477 -s 0 -d 9 -p ack -e 40 -c 0 -i 6626 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.75478 -s 10 -d 7 -p ack -e 40 -c 0 -i 6630 -a 0 -x {10.0 9.0 3310 ------- null} + -t 3.75478 -s 7 -d 0 -p ack -e 40 -c 0 -i 6630 -a 0 -x {10.0 9.0 3310 ------- null} h -t 3.75478 -s 7 -d 8 -p ack -e 40 -c 0 -i 6630 -a 0 -x {10.0 9.0 3310 ------- null} r -t 3.75485 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6629 -a 0 -x {9.0 10.0 3319 ------- null} + -t 3.75485 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6629 -a 0 -x {9.0 10.0 3319 ------- null} h -t 3.75485 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6629 -a 0 -x {9.0 10.0 3319 ------- null} r -t 3.75493 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6615 -a 0 -x {9.0 10.0 3312 ------- null} + -t 3.75493 -s 10 -d 7 -p ack -e 40 -c 0 -i 6634 -a 0 -x {10.0 9.0 3312 ------- null} - -t 3.75493 -s 10 -d 7 -p ack -e 40 -c 0 -i 6634 -a 0 -x {10.0 9.0 3312 ------- null} h -t 3.75493 -s 10 -d 7 -p ack -e 40 -c 0 -i 6634 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.7555 -s 0 -d 9 -p ack -e 40 -c 0 -i 6624 -a 0 -x {10.0 9.0 3307 ------- null} + -t 3.7555 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6635 -a 0 -x {9.0 10.0 3322 ------- null} - -t 3.7555 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6635 -a 0 -x {9.0 10.0 3322 ------- null} h -t 3.7555 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6635 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.75578 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6621 -a 0 -x {9.0 10.0 3315 ------- null} - -t 3.75578 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6621 -a 0 -x {9.0 10.0 3315 ------- null} h -t 3.75578 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6621 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.75586 -s 0 -d 9 -p ack -e 40 -c 0 -i 6628 -a 0 -x {10.0 9.0 3309 ------- null} - -t 3.75586 -s 0 -d 9 -p ack -e 40 -c 0 -i 6628 -a 0 -x {10.0 9.0 3309 ------- null} h -t 3.75586 -s 0 -d 9 -p ack -e 40 -c 0 -i 6628 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.75587 -s 10 -d 7 -p ack -e 40 -c 0 -i 6632 -a 0 -x {10.0 9.0 3311 ------- null} + -t 3.75587 -s 7 -d 0 -p ack -e 40 -c 0 -i 6632 -a 0 -x {10.0 9.0 3311 ------- null} h -t 3.75587 -s 7 -d 8 -p ack -e 40 -c 0 -i 6632 -a 0 -x {10.0 9.0 3311 ------- null} r -t 3.75602 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6617 -a 0 -x {9.0 10.0 3313 ------- null} + -t 3.75602 -s 10 -d 7 -p ack -e 40 -c 0 -i 6636 -a 0 -x {10.0 9.0 3313 ------- null} - -t 3.75602 -s 10 -d 7 -p ack -e 40 -c 0 -i 6636 -a 0 -x {10.0 9.0 3313 ------- null} h -t 3.75602 -s 10 -d 7 -p ack -e 40 -c 0 -i 6636 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.75608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6631 -a 0 -x {9.0 10.0 3320 ------- null} + -t 3.75608 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6631 -a 0 -x {9.0 10.0 3320 ------- null} h -t 3.75608 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6631 -a 0 -x {9.0 10.0 3320 ------- null} r -t 3.7568 -s 0 -d 9 -p ack -e 40 -c 0 -i 6626 -a 0 -x {10.0 9.0 3308 ------- null} + -t 3.7568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6637 -a 0 -x {9.0 10.0 3323 ------- null} - -t 3.7568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6637 -a 0 -x {9.0 10.0 3323 ------- null} h -t 3.7568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6637 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.75686 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6623 -a 0 -x {9.0 10.0 3316 ------- null} - -t 3.75686 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6623 -a 0 -x {9.0 10.0 3316 ------- null} h -t 3.75686 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6623 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.75696 -s 10 -d 7 -p ack -e 40 -c 0 -i 6634 -a 0 -x {10.0 9.0 3312 ------- null} + -t 3.75696 -s 7 -d 0 -p ack -e 40 -c 0 -i 6634 -a 0 -x {10.0 9.0 3312 ------- null} h -t 3.75696 -s 7 -d 8 -p ack -e 40 -c 0 -i 6634 -a 0 -x {10.0 9.0 3312 ------- null} + -t 3.7571 -s 0 -d 9 -p ack -e 40 -c 0 -i 6630 -a 0 -x {10.0 9.0 3310 ------- null} - -t 3.7571 -s 0 -d 9 -p ack -e 40 -c 0 -i 6630 -a 0 -x {10.0 9.0 3310 ------- null} h -t 3.7571 -s 0 -d 9 -p ack -e 40 -c 0 -i 6630 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.75714 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6633 -a 0 -x {9.0 10.0 3321 ------- null} + -t 3.75714 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6633 -a 0 -x {9.0 10.0 3321 ------- null} h -t 3.75714 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6633 -a 0 -x {9.0 10.0 3321 ------- null} r -t 3.7573 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6619 -a 0 -x {9.0 10.0 3314 ------- null} + -t 3.7573 -s 10 -d 7 -p ack -e 40 -c 0 -i 6638 -a 0 -x {10.0 9.0 3314 ------- null} - -t 3.7573 -s 10 -d 7 -p ack -e 40 -c 0 -i 6638 -a 0 -x {10.0 9.0 3314 ------- null} h -t 3.7573 -s 10 -d 7 -p ack -e 40 -c 0 -i 6638 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.75789 -s 0 -d 9 -p ack -e 40 -c 0 -i 6628 -a 0 -x {10.0 9.0 3309 ------- null} + -t 3.75789 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6639 -a 0 -x {9.0 10.0 3324 ------- null} - -t 3.75789 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6639 -a 0 -x {9.0 10.0 3324 ------- null} h -t 3.75789 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6639 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.75795 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6625 -a 0 -x {9.0 10.0 3317 ------- null} - -t 3.75795 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6625 -a 0 -x {9.0 10.0 3317 ------- null} h -t 3.75795 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6625 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.75805 -s 10 -d 7 -p ack -e 40 -c 0 -i 6636 -a 0 -x {10.0 9.0 3313 ------- null} + -t 3.75805 -s 7 -d 0 -p ack -e 40 -c 0 -i 6636 -a 0 -x {10.0 9.0 3313 ------- null} h -t 3.75805 -s 7 -d 8 -p ack -e 40 -c 0 -i 6636 -a 0 -x {10.0 9.0 3313 ------- null} + -t 3.75818 -s 0 -d 9 -p ack -e 40 -c 0 -i 6632 -a 0 -x {10.0 9.0 3311 ------- null} - -t 3.75818 -s 0 -d 9 -p ack -e 40 -c 0 -i 6632 -a 0 -x {10.0 9.0 3311 ------- null} h -t 3.75818 -s 0 -d 9 -p ack -e 40 -c 0 -i 6632 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.7583 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6635 -a 0 -x {9.0 10.0 3322 ------- null} + -t 3.7583 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6635 -a 0 -x {9.0 10.0 3322 ------- null} h -t 3.7583 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6635 -a 0 -x {9.0 10.0 3322 ------- null} r -t 3.75858 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6621 -a 0 -x {9.0 10.0 3315 ------- null} + -t 3.75858 -s 10 -d 7 -p ack -e 40 -c 0 -i 6640 -a 0 -x {10.0 9.0 3315 ------- null} - -t 3.75858 -s 10 -d 7 -p ack -e 40 -c 0 -i 6640 -a 0 -x {10.0 9.0 3315 ------- null} h -t 3.75858 -s 10 -d 7 -p ack -e 40 -c 0 -i 6640 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.75904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6627 -a 0 -x {9.0 10.0 3318 ------- null} - -t 3.75904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6627 -a 0 -x {9.0 10.0 3318 ------- null} h -t 3.75904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6627 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.75914 -s 0 -d 9 -p ack -e 40 -c 0 -i 6630 -a 0 -x {10.0 9.0 3310 ------- null} + -t 3.75914 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6641 -a 0 -x {9.0 10.0 3325 ------- null} - -t 3.75914 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6641 -a 0 -x {9.0 10.0 3325 ------- null} h -t 3.75914 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6641 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.75923 -s 0 -d 9 -p ack -e 40 -c 0 -i 6634 -a 0 -x {10.0 9.0 3312 ------- null} - -t 3.75923 -s 0 -d 9 -p ack -e 40 -c 0 -i 6634 -a 0 -x {10.0 9.0 3312 ------- null} h -t 3.75923 -s 0 -d 9 -p ack -e 40 -c 0 -i 6634 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.75933 -s 10 -d 7 -p ack -e 40 -c 0 -i 6638 -a 0 -x {10.0 9.0 3314 ------- null} + -t 3.75933 -s 7 -d 0 -p ack -e 40 -c 0 -i 6638 -a 0 -x {10.0 9.0 3314 ------- null} h -t 3.75933 -s 7 -d 8 -p ack -e 40 -c 0 -i 6638 -a 0 -x {10.0 9.0 3314 ------- null} r -t 3.7596 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6637 -a 0 -x {9.0 10.0 3323 ------- null} + -t 3.7596 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6637 -a 0 -x {9.0 10.0 3323 ------- null} h -t 3.7596 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6637 -a 0 -x {9.0 10.0 3323 ------- null} r -t 3.75966 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6623 -a 0 -x {9.0 10.0 3316 ------- null} + -t 3.75966 -s 10 -d 7 -p ack -e 40 -c 0 -i 6642 -a 0 -x {10.0 9.0 3316 ------- null} - -t 3.75966 -s 10 -d 7 -p ack -e 40 -c 0 -i 6642 -a 0 -x {10.0 9.0 3316 ------- null} h -t 3.75966 -s 10 -d 7 -p ack -e 40 -c 0 -i 6642 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.76013 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6629 -a 0 -x {9.0 10.0 3319 ------- null} - -t 3.76013 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6629 -a 0 -x {9.0 10.0 3319 ------- null} h -t 3.76013 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6629 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.76021 -s 0 -d 9 -p ack -e 40 -c 0 -i 6632 -a 0 -x {10.0 9.0 3311 ------- null} + -t 3.76021 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6643 -a 0 -x {9.0 10.0 3326 ------- null} - -t 3.76021 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6643 -a 0 -x {9.0 10.0 3326 ------- null} h -t 3.76021 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6643 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.76029 -s 0 -d 9 -p ack -e 40 -c 0 -i 6636 -a 0 -x {10.0 9.0 3313 ------- null} - -t 3.76029 -s 0 -d 9 -p ack -e 40 -c 0 -i 6636 -a 0 -x {10.0 9.0 3313 ------- null} h -t 3.76029 -s 0 -d 9 -p ack -e 40 -c 0 -i 6636 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.76061 -s 10 -d 7 -p ack -e 40 -c 0 -i 6640 -a 0 -x {10.0 9.0 3315 ------- null} + -t 3.76061 -s 7 -d 0 -p ack -e 40 -c 0 -i 6640 -a 0 -x {10.0 9.0 3315 ------- null} h -t 3.76061 -s 7 -d 8 -p ack -e 40 -c 0 -i 6640 -a 0 -x {10.0 9.0 3315 ------- null} r -t 3.76069 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6639 -a 0 -x {9.0 10.0 3324 ------- null} + -t 3.76069 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6639 -a 0 -x {9.0 10.0 3324 ------- null} h -t 3.76069 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6639 -a 0 -x {9.0 10.0 3324 ------- null} r -t 3.76075 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6625 -a 0 -x {9.0 10.0 3317 ------- null} + -t 3.76075 -s 10 -d 7 -p ack -e 40 -c 0 -i 6644 -a 0 -x {10.0 9.0 3317 ------- null} - -t 3.76075 -s 10 -d 7 -p ack -e 40 -c 0 -i 6644 -a 0 -x {10.0 9.0 3317 ------- null} h -t 3.76075 -s 10 -d 7 -p ack -e 40 -c 0 -i 6644 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.76122 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6631 -a 0 -x {9.0 10.0 3320 ------- null} - -t 3.76122 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6631 -a 0 -x {9.0 10.0 3320 ------- null} h -t 3.76122 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6631 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.76126 -s 0 -d 9 -p ack -e 40 -c 0 -i 6634 -a 0 -x {10.0 9.0 3312 ------- null} + -t 3.76126 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6645 -a 0 -x {9.0 10.0 3327 ------- null} - -t 3.76126 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6645 -a 0 -x {9.0 10.0 3327 ------- null} h -t 3.76126 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6645 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.76133 -s 0 -d 9 -p ack -e 40 -c 0 -i 6638 -a 0 -x {10.0 9.0 3314 ------- null} - -t 3.76133 -s 0 -d 9 -p ack -e 40 -c 0 -i 6638 -a 0 -x {10.0 9.0 3314 ------- null} h -t 3.76133 -s 0 -d 9 -p ack -e 40 -c 0 -i 6638 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.7617 -s 10 -d 7 -p ack -e 40 -c 0 -i 6642 -a 0 -x {10.0 9.0 3316 ------- null} + -t 3.7617 -s 7 -d 0 -p ack -e 40 -c 0 -i 6642 -a 0 -x {10.0 9.0 3316 ------- null} h -t 3.7617 -s 7 -d 8 -p ack -e 40 -c 0 -i 6642 -a 0 -x {10.0 9.0 3316 ------- null} r -t 3.76184 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6627 -a 0 -x {9.0 10.0 3318 ------- null} + -t 3.76184 -s 10 -d 7 -p ack -e 40 -c 0 -i 6646 -a 0 -x {10.0 9.0 3318 ------- null} - -t 3.76184 -s 10 -d 7 -p ack -e 40 -c 0 -i 6646 -a 0 -x {10.0 9.0 3318 ------- null} h -t 3.76184 -s 10 -d 7 -p ack -e 40 -c 0 -i 6646 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.76194 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6641 -a 0 -x {9.0 10.0 3325 ------- null} + -t 3.76194 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6641 -a 0 -x {9.0 10.0 3325 ------- null} h -t 3.76194 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6641 -a 0 -x {9.0 10.0 3325 ------- null} + -t 3.7623 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6633 -a 0 -x {9.0 10.0 3321 ------- null} - -t 3.7623 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6633 -a 0 -x {9.0 10.0 3321 ------- null} h -t 3.7623 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6633 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.76232 -s 0 -d 9 -p ack -e 40 -c 0 -i 6636 -a 0 -x {10.0 9.0 3313 ------- null} + -t 3.76232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6647 -a 0 -x {9.0 10.0 3328 ------- null} - -t 3.76232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6647 -a 0 -x {9.0 10.0 3328 ------- null} h -t 3.76232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6647 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.76243 -s 0 -d 9 -p ack -e 40 -c 0 -i 6640 -a 0 -x {10.0 9.0 3315 ------- null} - -t 3.76243 -s 0 -d 9 -p ack -e 40 -c 0 -i 6640 -a 0 -x {10.0 9.0 3315 ------- null} h -t 3.76243 -s 0 -d 9 -p ack -e 40 -c 0 -i 6640 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.76278 -s 10 -d 7 -p ack -e 40 -c 0 -i 6644 -a 0 -x {10.0 9.0 3317 ------- null} + -t 3.76278 -s 7 -d 0 -p ack -e 40 -c 0 -i 6644 -a 0 -x {10.0 9.0 3317 ------- null} h -t 3.76278 -s 7 -d 8 -p ack -e 40 -c 0 -i 6644 -a 0 -x {10.0 9.0 3317 ------- null} r -t 3.76293 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6629 -a 0 -x {9.0 10.0 3319 ------- null} + -t 3.76293 -s 10 -d 7 -p ack -e 40 -c 0 -i 6648 -a 0 -x {10.0 9.0 3319 ------- null} - -t 3.76293 -s 10 -d 7 -p ack -e 40 -c 0 -i 6648 -a 0 -x {10.0 9.0 3319 ------- null} h -t 3.76293 -s 10 -d 7 -p ack -e 40 -c 0 -i 6648 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.76301 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6643 -a 0 -x {9.0 10.0 3326 ------- null} + -t 3.76301 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6643 -a 0 -x {9.0 10.0 3326 ------- null} h -t 3.76301 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6643 -a 0 -x {9.0 10.0 3326 ------- null} r -t 3.76336 -s 0 -d 9 -p ack -e 40 -c 0 -i 6638 -a 0 -x {10.0 9.0 3314 ------- null} + -t 3.76336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6649 -a 0 -x {9.0 10.0 3329 ------- null} - -t 3.76336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6649 -a 0 -x {9.0 10.0 3329 ------- null} h -t 3.76336 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6649 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.76339 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6635 -a 0 -x {9.0 10.0 3322 ------- null} - -t 3.76339 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6635 -a 0 -x {9.0 10.0 3322 ------- null} h -t 3.76339 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6635 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.76366 -s 0 -d 9 -p ack -e 40 -c 0 -i 6642 -a 0 -x {10.0 9.0 3316 ------- null} - -t 3.76366 -s 0 -d 9 -p ack -e 40 -c 0 -i 6642 -a 0 -x {10.0 9.0 3316 ------- null} h -t 3.76366 -s 0 -d 9 -p ack -e 40 -c 0 -i 6642 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.76387 -s 10 -d 7 -p ack -e 40 -c 0 -i 6646 -a 0 -x {10.0 9.0 3318 ------- null} + -t 3.76387 -s 7 -d 0 -p ack -e 40 -c 0 -i 6646 -a 0 -x {10.0 9.0 3318 ------- null} h -t 3.76387 -s 7 -d 8 -p ack -e 40 -c 0 -i 6646 -a 0 -x {10.0 9.0 3318 ------- null} r -t 3.76402 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6631 -a 0 -x {9.0 10.0 3320 ------- null} + -t 3.76402 -s 10 -d 7 -p ack -e 40 -c 0 -i 6650 -a 0 -x {10.0 9.0 3320 ------- null} - -t 3.76402 -s 10 -d 7 -p ack -e 40 -c 0 -i 6650 -a 0 -x {10.0 9.0 3320 ------- null} h -t 3.76402 -s 10 -d 7 -p ack -e 40 -c 0 -i 6650 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.76406 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6645 -a 0 -x {9.0 10.0 3327 ------- null} + -t 3.76406 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6645 -a 0 -x {9.0 10.0 3327 ------- null} h -t 3.76406 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6645 -a 0 -x {9.0 10.0 3327 ------- null} r -t 3.76446 -s 0 -d 9 -p ack -e 40 -c 0 -i 6640 -a 0 -x {10.0 9.0 3315 ------- null} + -t 3.76446 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6651 -a 0 -x {9.0 10.0 3330 ------- null} - -t 3.76446 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6651 -a 0 -x {9.0 10.0 3330 ------- null} h -t 3.76446 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6651 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.76462 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6637 -a 0 -x {9.0 10.0 3323 ------- null} - -t 3.76462 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6637 -a 0 -x {9.0 10.0 3323 ------- null} h -t 3.76462 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6637 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.76469 -s 0 -d 9 -p ack -e 40 -c 0 -i 6644 -a 0 -x {10.0 9.0 3317 ------- null} - -t 3.76469 -s 0 -d 9 -p ack -e 40 -c 0 -i 6644 -a 0 -x {10.0 9.0 3317 ------- null} h -t 3.76469 -s 0 -d 9 -p ack -e 40 -c 0 -i 6644 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.76496 -s 10 -d 7 -p ack -e 40 -c 0 -i 6648 -a 0 -x {10.0 9.0 3319 ------- null} + -t 3.76496 -s 7 -d 0 -p ack -e 40 -c 0 -i 6648 -a 0 -x {10.0 9.0 3319 ------- null} h -t 3.76496 -s 7 -d 8 -p ack -e 40 -c 0 -i 6648 -a 0 -x {10.0 9.0 3319 ------- null} r -t 3.7651 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6633 -a 0 -x {9.0 10.0 3321 ------- null} + -t 3.7651 -s 10 -d 7 -p ack -e 40 -c 0 -i 6652 -a 0 -x {10.0 9.0 3321 ------- null} - -t 3.7651 -s 10 -d 7 -p ack -e 40 -c 0 -i 6652 -a 0 -x {10.0 9.0 3321 ------- null} h -t 3.7651 -s 10 -d 7 -p ack -e 40 -c 0 -i 6652 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.76512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6647 -a 0 -x {9.0 10.0 3328 ------- null} + -t 3.76512 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6647 -a 0 -x {9.0 10.0 3328 ------- null} h -t 3.76512 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6647 -a 0 -x {9.0 10.0 3328 ------- null} r -t 3.7657 -s 0 -d 9 -p ack -e 40 -c 0 -i 6642 -a 0 -x {10.0 9.0 3316 ------- null} + -t 3.7657 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6653 -a 0 -x {9.0 10.0 3331 ------- null} - -t 3.7657 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6653 -a 0 -x {9.0 10.0 3331 ------- null} h -t 3.7657 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6653 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.76571 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6639 -a 0 -x {9.0 10.0 3324 ------- null} - -t 3.76571 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6639 -a 0 -x {9.0 10.0 3324 ------- null} h -t 3.76571 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6639 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.76582 -s 0 -d 9 -p ack -e 40 -c 0 -i 6646 -a 0 -x {10.0 9.0 3318 ------- null} - -t 3.76582 -s 0 -d 9 -p ack -e 40 -c 0 -i 6646 -a 0 -x {10.0 9.0 3318 ------- null} h -t 3.76582 -s 0 -d 9 -p ack -e 40 -c 0 -i 6646 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.76605 -s 10 -d 7 -p ack -e 40 -c 0 -i 6650 -a 0 -x {10.0 9.0 3320 ------- null} + -t 3.76605 -s 7 -d 0 -p ack -e 40 -c 0 -i 6650 -a 0 -x {10.0 9.0 3320 ------- null} h -t 3.76605 -s 7 -d 8 -p ack -e 40 -c 0 -i 6650 -a 0 -x {10.0 9.0 3320 ------- null} r -t 3.76616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6649 -a 0 -x {9.0 10.0 3329 ------- null} + -t 3.76616 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6649 -a 0 -x {9.0 10.0 3329 ------- null} h -t 3.76616 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6649 -a 0 -x {9.0 10.0 3329 ------- null} r -t 3.76619 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6635 -a 0 -x {9.0 10.0 3322 ------- null} + -t 3.76619 -s 10 -d 7 -p ack -e 40 -c 0 -i 6654 -a 0 -x {10.0 9.0 3322 ------- null} - -t 3.76619 -s 10 -d 7 -p ack -e 40 -c 0 -i 6654 -a 0 -x {10.0 9.0 3322 ------- null} h -t 3.76619 -s 10 -d 7 -p ack -e 40 -c 0 -i 6654 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.76672 -s 0 -d 9 -p ack -e 40 -c 0 -i 6644 -a 0 -x {10.0 9.0 3317 ------- null} + -t 3.76672 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6655 -a 0 -x {9.0 10.0 3332 ------- null} - -t 3.76672 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6655 -a 0 -x {9.0 10.0 3332 ------- null} h -t 3.76672 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6655 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.7668 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6641 -a 0 -x {9.0 10.0 3325 ------- null} - -t 3.7668 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6641 -a 0 -x {9.0 10.0 3325 ------- null} h -t 3.7668 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6641 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.76691 -s 0 -d 9 -p ack -e 40 -c 0 -i 6648 -a 0 -x {10.0 9.0 3319 ------- null} - -t 3.76691 -s 0 -d 9 -p ack -e 40 -c 0 -i 6648 -a 0 -x {10.0 9.0 3319 ------- null} h -t 3.76691 -s 0 -d 9 -p ack -e 40 -c 0 -i 6648 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.76714 -s 10 -d 7 -p ack -e 40 -c 0 -i 6652 -a 0 -x {10.0 9.0 3321 ------- null} + -t 3.76714 -s 7 -d 0 -p ack -e 40 -c 0 -i 6652 -a 0 -x {10.0 9.0 3321 ------- null} h -t 3.76714 -s 7 -d 8 -p ack -e 40 -c 0 -i 6652 -a 0 -x {10.0 9.0 3321 ------- null} r -t 3.76726 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6651 -a 0 -x {9.0 10.0 3330 ------- null} + -t 3.76726 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6651 -a 0 -x {9.0 10.0 3330 ------- null} h -t 3.76726 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6651 -a 0 -x {9.0 10.0 3330 ------- null} r -t 3.76742 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6637 -a 0 -x {9.0 10.0 3323 ------- null} + -t 3.76742 -s 10 -d 7 -p ack -e 40 -c 0 -i 6656 -a 0 -x {10.0 9.0 3323 ------- null} - -t 3.76742 -s 10 -d 7 -p ack -e 40 -c 0 -i 6656 -a 0 -x {10.0 9.0 3323 ------- null} h -t 3.76742 -s 10 -d 7 -p ack -e 40 -c 0 -i 6656 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.76786 -s 0 -d 9 -p ack -e 40 -c 0 -i 6646 -a 0 -x {10.0 9.0 3318 ------- null} + -t 3.76786 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6657 -a 0 -x {9.0 10.0 3333 ------- null} - -t 3.76786 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6657 -a 0 -x {9.0 10.0 3333 ------- null} h -t 3.76786 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6657 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.76789 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6643 -a 0 -x {9.0 10.0 3326 ------- null} - -t 3.76789 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6643 -a 0 -x {9.0 10.0 3326 ------- null} h -t 3.76789 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6643 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.76819 -s 0 -d 9 -p ack -e 40 -c 0 -i 6650 -a 0 -x {10.0 9.0 3320 ------- null} - -t 3.76819 -s 0 -d 9 -p ack -e 40 -c 0 -i 6650 -a 0 -x {10.0 9.0 3320 ------- null} h -t 3.76819 -s 0 -d 9 -p ack -e 40 -c 0 -i 6650 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.76822 -s 10 -d 7 -p ack -e 40 -c 0 -i 6654 -a 0 -x {10.0 9.0 3322 ------- null} + -t 3.76822 -s 7 -d 0 -p ack -e 40 -c 0 -i 6654 -a 0 -x {10.0 9.0 3322 ------- null} h -t 3.76822 -s 7 -d 8 -p ack -e 40 -c 0 -i 6654 -a 0 -x {10.0 9.0 3322 ------- null} r -t 3.7685 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6653 -a 0 -x {9.0 10.0 3331 ------- null} + -t 3.7685 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6653 -a 0 -x {9.0 10.0 3331 ------- null} h -t 3.7685 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6653 -a 0 -x {9.0 10.0 3331 ------- null} r -t 3.76851 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6639 -a 0 -x {9.0 10.0 3324 ------- null} + -t 3.76851 -s 10 -d 7 -p ack -e 40 -c 0 -i 6658 -a 0 -x {10.0 9.0 3324 ------- null} - -t 3.76851 -s 10 -d 7 -p ack -e 40 -c 0 -i 6658 -a 0 -x {10.0 9.0 3324 ------- null} h -t 3.76851 -s 10 -d 7 -p ack -e 40 -c 0 -i 6658 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.76894 -s 0 -d 9 -p ack -e 40 -c 0 -i 6648 -a 0 -x {10.0 9.0 3319 ------- null} + -t 3.76894 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6659 -a 0 -x {9.0 10.0 3334 ------- null} - -t 3.76894 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6659 -a 0 -x {9.0 10.0 3334 ------- null} h -t 3.76894 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6659 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.7692 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6645 -a 0 -x {9.0 10.0 3327 ------- null} - -t 3.7692 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6645 -a 0 -x {9.0 10.0 3327 ------- null} h -t 3.7692 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6645 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.76946 -s 10 -d 7 -p ack -e 40 -c 0 -i 6656 -a 0 -x {10.0 9.0 3323 ------- null} + -t 3.76946 -s 7 -d 0 -p ack -e 40 -c 0 -i 6656 -a 0 -x {10.0 9.0 3323 ------- null} h -t 3.76946 -s 7 -d 8 -p ack -e 40 -c 0 -i 6656 -a 0 -x {10.0 9.0 3323 ------- null} + -t 3.76947 -s 0 -d 9 -p ack -e 40 -c 0 -i 6652 -a 0 -x {10.0 9.0 3321 ------- null} - -t 3.76947 -s 0 -d 9 -p ack -e 40 -c 0 -i 6652 -a 0 -x {10.0 9.0 3321 ------- null} h -t 3.76947 -s 0 -d 9 -p ack -e 40 -c 0 -i 6652 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.76952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6655 -a 0 -x {9.0 10.0 3332 ------- null} + -t 3.76952 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6655 -a 0 -x {9.0 10.0 3332 ------- null} h -t 3.76952 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6655 -a 0 -x {9.0 10.0 3332 ------- null} r -t 3.7696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6641 -a 0 -x {9.0 10.0 3325 ------- null} + -t 3.7696 -s 10 -d 7 -p ack -e 40 -c 0 -i 6660 -a 0 -x {10.0 9.0 3325 ------- null} - -t 3.7696 -s 10 -d 7 -p ack -e 40 -c 0 -i 6660 -a 0 -x {10.0 9.0 3325 ------- null} h -t 3.7696 -s 10 -d 7 -p ack -e 40 -c 0 -i 6660 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.77022 -s 0 -d 9 -p ack -e 40 -c 0 -i 6650 -a 0 -x {10.0 9.0 3320 ------- null} + -t 3.77022 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6661 -a 0 -x {9.0 10.0 3335 ------- null} - -t 3.77022 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6661 -a 0 -x {9.0 10.0 3335 ------- null} h -t 3.77022 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6661 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.7705 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6647 -a 0 -x {9.0 10.0 3328 ------- null} - -t 3.7705 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6647 -a 0 -x {9.0 10.0 3328 ------- null} h -t 3.7705 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6647 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.77054 -s 10 -d 7 -p ack -e 40 -c 0 -i 6658 -a 0 -x {10.0 9.0 3324 ------- null} + -t 3.77054 -s 7 -d 0 -p ack -e 40 -c 0 -i 6658 -a 0 -x {10.0 9.0 3324 ------- null} h -t 3.77054 -s 7 -d 8 -p ack -e 40 -c 0 -i 6658 -a 0 -x {10.0 9.0 3324 ------- null} + -t 3.77056 -s 0 -d 9 -p ack -e 40 -c 0 -i 6654 -a 0 -x {10.0 9.0 3322 ------- null} - -t 3.77056 -s 0 -d 9 -p ack -e 40 -c 0 -i 6654 -a 0 -x {10.0 9.0 3322 ------- null} h -t 3.77056 -s 0 -d 9 -p ack -e 40 -c 0 -i 6654 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.77066 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6657 -a 0 -x {9.0 10.0 3333 ------- null} + -t 3.77066 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6657 -a 0 -x {9.0 10.0 3333 ------- null} h -t 3.77066 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6657 -a 0 -x {9.0 10.0 3333 ------- null} r -t 3.77069 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6643 -a 0 -x {9.0 10.0 3326 ------- null} + -t 3.77069 -s 10 -d 7 -p ack -e 40 -c 0 -i 6662 -a 0 -x {10.0 9.0 3326 ------- null} - -t 3.77069 -s 10 -d 7 -p ack -e 40 -c 0 -i 6662 -a 0 -x {10.0 9.0 3326 ------- null} h -t 3.77069 -s 10 -d 7 -p ack -e 40 -c 0 -i 6662 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.7715 -s 0 -d 9 -p ack -e 40 -c 0 -i 6652 -a 0 -x {10.0 9.0 3321 ------- null} + -t 3.7715 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6663 -a 0 -x {9.0 10.0 3336 ------- null} - -t 3.7715 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6663 -a 0 -x {9.0 10.0 3336 ------- null} h -t 3.7715 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6663 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.77158 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6649 -a 0 -x {9.0 10.0 3329 ------- null} - -t 3.77158 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6649 -a 0 -x {9.0 10.0 3329 ------- null} h -t 3.77158 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6649 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.77163 -s 10 -d 7 -p ack -e 40 -c 0 -i 6660 -a 0 -x {10.0 9.0 3325 ------- null} + -t 3.77163 -s 7 -d 0 -p ack -e 40 -c 0 -i 6660 -a 0 -x {10.0 9.0 3325 ------- null} h -t 3.77163 -s 7 -d 8 -p ack -e 40 -c 0 -i 6660 -a 0 -x {10.0 9.0 3325 ------- null} + -t 3.77173 -s 0 -d 9 -p ack -e 40 -c 0 -i 6656 -a 0 -x {10.0 9.0 3323 ------- null} - -t 3.77173 -s 0 -d 9 -p ack -e 40 -c 0 -i 6656 -a 0 -x {10.0 9.0 3323 ------- null} h -t 3.77173 -s 0 -d 9 -p ack -e 40 -c 0 -i 6656 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.77174 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6659 -a 0 -x {9.0 10.0 3334 ------- null} + -t 3.77174 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6659 -a 0 -x {9.0 10.0 3334 ------- null} h -t 3.77174 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6659 -a 0 -x {9.0 10.0 3334 ------- null} r -t 3.772 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6645 -a 0 -x {9.0 10.0 3327 ------- null} + -t 3.772 -s 10 -d 7 -p ack -e 40 -c 0 -i 6664 -a 0 -x {10.0 9.0 3327 ------- null} - -t 3.772 -s 10 -d 7 -p ack -e 40 -c 0 -i 6664 -a 0 -x {10.0 9.0 3327 ------- null} h -t 3.772 -s 10 -d 7 -p ack -e 40 -c 0 -i 6664 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.77259 -s 0 -d 9 -p ack -e 40 -c 0 -i 6654 -a 0 -x {10.0 9.0 3322 ------- null} + -t 3.77259 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6665 -a 0 -x {9.0 10.0 3337 ------- null} - -t 3.77259 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6665 -a 0 -x {9.0 10.0 3337 ------- null} h -t 3.77259 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6665 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.77267 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6651 -a 0 -x {9.0 10.0 3330 ------- null} - -t 3.77267 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6651 -a 0 -x {9.0 10.0 3330 ------- null} h -t 3.77267 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6651 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.77272 -s 10 -d 7 -p ack -e 40 -c 0 -i 6662 -a 0 -x {10.0 9.0 3326 ------- null} + -t 3.77272 -s 7 -d 0 -p ack -e 40 -c 0 -i 6662 -a 0 -x {10.0 9.0 3326 ------- null} h -t 3.77272 -s 7 -d 8 -p ack -e 40 -c 0 -i 6662 -a 0 -x {10.0 9.0 3326 ------- null} + -t 3.7728 -s 0 -d 9 -p ack -e 40 -c 0 -i 6658 -a 0 -x {10.0 9.0 3324 ------- null} - -t 3.7728 -s 0 -d 9 -p ack -e 40 -c 0 -i 6658 -a 0 -x {10.0 9.0 3324 ------- null} h -t 3.7728 -s 0 -d 9 -p ack -e 40 -c 0 -i 6658 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.77302 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6661 -a 0 -x {9.0 10.0 3335 ------- null} + -t 3.77302 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6661 -a 0 -x {9.0 10.0 3335 ------- null} h -t 3.77302 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6661 -a 0 -x {9.0 10.0 3335 ------- null} r -t 3.7733 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6647 -a 0 -x {9.0 10.0 3328 ------- null} + -t 3.7733 -s 10 -d 7 -p ack -e 40 -c 0 -i 6666 -a 0 -x {10.0 9.0 3328 ------- null} - -t 3.7733 -s 10 -d 7 -p ack -e 40 -c 0 -i 6666 -a 0 -x {10.0 9.0 3328 ------- null} h -t 3.7733 -s 10 -d 7 -p ack -e 40 -c 0 -i 6666 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.77376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6653 -a 0 -x {9.0 10.0 3331 ------- null} - -t 3.77376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6653 -a 0 -x {9.0 10.0 3331 ------- null} h -t 3.77376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6653 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.77376 -s 0 -d 9 -p ack -e 40 -c 0 -i 6656 -a 0 -x {10.0 9.0 3323 ------- null} + -t 3.77376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6667 -a 0 -x {9.0 10.0 3338 ------- null} - -t 3.77376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6667 -a 0 -x {9.0 10.0 3338 ------- null} h -t 3.77376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6667 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.7739 -s 0 -d 9 -p ack -e 40 -c 0 -i 6660 -a 0 -x {10.0 9.0 3325 ------- null} - -t 3.7739 -s 0 -d 9 -p ack -e 40 -c 0 -i 6660 -a 0 -x {10.0 9.0 3325 ------- null} h -t 3.7739 -s 0 -d 9 -p ack -e 40 -c 0 -i 6660 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.77403 -s 10 -d 7 -p ack -e 40 -c 0 -i 6664 -a 0 -x {10.0 9.0 3327 ------- null} + -t 3.77403 -s 7 -d 0 -p ack -e 40 -c 0 -i 6664 -a 0 -x {10.0 9.0 3327 ------- null} h -t 3.77403 -s 7 -d 8 -p ack -e 40 -c 0 -i 6664 -a 0 -x {10.0 9.0 3327 ------- null} r -t 3.7743 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6663 -a 0 -x {9.0 10.0 3336 ------- null} + -t 3.7743 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6663 -a 0 -x {9.0 10.0 3336 ------- null} h -t 3.7743 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6663 -a 0 -x {9.0 10.0 3336 ------- null} r -t 3.77438 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6649 -a 0 -x {9.0 10.0 3329 ------- null} + -t 3.77438 -s 10 -d 7 -p ack -e 40 -c 0 -i 6668 -a 0 -x {10.0 9.0 3329 ------- null} - -t 3.77438 -s 10 -d 7 -p ack -e 40 -c 0 -i 6668 -a 0 -x {10.0 9.0 3329 ------- null} h -t 3.77438 -s 10 -d 7 -p ack -e 40 -c 0 -i 6668 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.77483 -s 0 -d 9 -p ack -e 40 -c 0 -i 6658 -a 0 -x {10.0 9.0 3324 ------- null} + -t 3.77483 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6669 -a 0 -x {9.0 10.0 3339 ------- null} - -t 3.77483 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6669 -a 0 -x {9.0 10.0 3339 ------- null} h -t 3.77483 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6669 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.77485 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6655 -a 0 -x {9.0 10.0 3332 ------- null} - -t 3.77485 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6655 -a 0 -x {9.0 10.0 3332 ------- null} h -t 3.77485 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6655 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.77496 -s 0 -d 9 -p ack -e 40 -c 0 -i 6662 -a 0 -x {10.0 9.0 3326 ------- null} - -t 3.77496 -s 0 -d 9 -p ack -e 40 -c 0 -i 6662 -a 0 -x {10.0 9.0 3326 ------- null} h -t 3.77496 -s 0 -d 9 -p ack -e 40 -c 0 -i 6662 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.77533 -s 10 -d 7 -p ack -e 40 -c 0 -i 6666 -a 0 -x {10.0 9.0 3328 ------- null} + -t 3.77533 -s 7 -d 0 -p ack -e 40 -c 0 -i 6666 -a 0 -x {10.0 9.0 3328 ------- null} h -t 3.77533 -s 7 -d 8 -p ack -e 40 -c 0 -i 6666 -a 0 -x {10.0 9.0 3328 ------- null} r -t 3.77539 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6665 -a 0 -x {9.0 10.0 3337 ------- null} + -t 3.77539 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6665 -a 0 -x {9.0 10.0 3337 ------- null} h -t 3.77539 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6665 -a 0 -x {9.0 10.0 3337 ------- null} r -t 3.77547 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6651 -a 0 -x {9.0 10.0 3330 ------- null} + -t 3.77547 -s 10 -d 7 -p ack -e 40 -c 0 -i 6670 -a 0 -x {10.0 9.0 3330 ------- null} - -t 3.77547 -s 10 -d 7 -p ack -e 40 -c 0 -i 6670 -a 0 -x {10.0 9.0 3330 ------- null} h -t 3.77547 -s 10 -d 7 -p ack -e 40 -c 0 -i 6670 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.77594 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6657 -a 0 -x {9.0 10.0 3333 ------- null} - -t 3.77594 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6657 -a 0 -x {9.0 10.0 3333 ------- null} h -t 3.77594 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6657 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.77594 -s 0 -d 9 -p ack -e 40 -c 0 -i 6660 -a 0 -x {10.0 9.0 3325 ------- null} + -t 3.77594 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6671 -a 0 -x {9.0 10.0 3340 ------- null} - -t 3.77594 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6671 -a 0 -x {9.0 10.0 3340 ------- null} h -t 3.77594 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6671 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.776 -s 0 -d 9 -p ack -e 40 -c 0 -i 6664 -a 0 -x {10.0 9.0 3327 ------- null} - -t 3.776 -s 0 -d 9 -p ack -e 40 -c 0 -i 6664 -a 0 -x {10.0 9.0 3327 ------- null} h -t 3.776 -s 0 -d 9 -p ack -e 40 -c 0 -i 6664 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.77642 -s 10 -d 7 -p ack -e 40 -c 0 -i 6668 -a 0 -x {10.0 9.0 3329 ------- null} + -t 3.77642 -s 7 -d 0 -p ack -e 40 -c 0 -i 6668 -a 0 -x {10.0 9.0 3329 ------- null} h -t 3.77642 -s 7 -d 8 -p ack -e 40 -c 0 -i 6668 -a 0 -x {10.0 9.0 3329 ------- null} r -t 3.77656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6653 -a 0 -x {9.0 10.0 3331 ------- null} + -t 3.77656 -s 10 -d 7 -p ack -e 40 -c 0 -i 6672 -a 0 -x {10.0 9.0 3331 ------- null} - -t 3.77656 -s 10 -d 7 -p ack -e 40 -c 0 -i 6672 -a 0 -x {10.0 9.0 3331 ------- null} h -t 3.77656 -s 10 -d 7 -p ack -e 40 -c 0 -i 6672 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.77656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6667 -a 0 -x {9.0 10.0 3338 ------- null} + -t 3.77656 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6667 -a 0 -x {9.0 10.0 3338 ------- null} h -t 3.77656 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6667 -a 0 -x {9.0 10.0 3338 ------- null} r -t 3.77699 -s 0 -d 9 -p ack -e 40 -c 0 -i 6662 -a 0 -x {10.0 9.0 3326 ------- null} + -t 3.77699 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6673 -a 0 -x {9.0 10.0 3341 ------- null} - -t 3.77699 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6673 -a 0 -x {9.0 10.0 3341 ------- null} h -t 3.77699 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6673 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.77702 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6659 -a 0 -x {9.0 10.0 3334 ------- null} - -t 3.77702 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6659 -a 0 -x {9.0 10.0 3334 ------- null} h -t 3.77702 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6659 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.7773 -s 0 -d 9 -p ack -e 40 -c 0 -i 6666 -a 0 -x {10.0 9.0 3328 ------- null} - -t 3.7773 -s 0 -d 9 -p ack -e 40 -c 0 -i 6666 -a 0 -x {10.0 9.0 3328 ------- null} h -t 3.7773 -s 0 -d 9 -p ack -e 40 -c 0 -i 6666 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.7775 -s 10 -d 7 -p ack -e 40 -c 0 -i 6670 -a 0 -x {10.0 9.0 3330 ------- null} + -t 3.7775 -s 7 -d 0 -p ack -e 40 -c 0 -i 6670 -a 0 -x {10.0 9.0 3330 ------- null} h -t 3.7775 -s 7 -d 8 -p ack -e 40 -c 0 -i 6670 -a 0 -x {10.0 9.0 3330 ------- null} r -t 3.77763 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6669 -a 0 -x {9.0 10.0 3339 ------- null} + -t 3.77763 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6669 -a 0 -x {9.0 10.0 3339 ------- null} h -t 3.77763 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6669 -a 0 -x {9.0 10.0 3339 ------- null} r -t 3.77765 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6655 -a 0 -x {9.0 10.0 3332 ------- null} + -t 3.77765 -s 10 -d 7 -p ack -e 40 -c 0 -i 6674 -a 0 -x {10.0 9.0 3332 ------- null} - -t 3.77765 -s 10 -d 7 -p ack -e 40 -c 0 -i 6674 -a 0 -x {10.0 9.0 3332 ------- null} h -t 3.77765 -s 10 -d 7 -p ack -e 40 -c 0 -i 6674 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.77803 -s 0 -d 9 -p ack -e 40 -c 0 -i 6664 -a 0 -x {10.0 9.0 3327 ------- null} + -t 3.77803 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6675 -a 0 -x {9.0 10.0 3342 ------- null} - -t 3.77803 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6675 -a 0 -x {9.0 10.0 3342 ------- null} h -t 3.77803 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6675 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.77824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6661 -a 0 -x {9.0 10.0 3335 ------- null} - -t 3.77824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6661 -a 0 -x {9.0 10.0 3335 ------- null} h -t 3.77824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6661 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.77837 -s 0 -d 9 -p ack -e 40 -c 0 -i 6668 -a 0 -x {10.0 9.0 3329 ------- null} - -t 3.77837 -s 0 -d 9 -p ack -e 40 -c 0 -i 6668 -a 0 -x {10.0 9.0 3329 ------- null} h -t 3.77837 -s 0 -d 9 -p ack -e 40 -c 0 -i 6668 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.77859 -s 10 -d 7 -p ack -e 40 -c 0 -i 6672 -a 0 -x {10.0 9.0 3331 ------- null} + -t 3.77859 -s 7 -d 0 -p ack -e 40 -c 0 -i 6672 -a 0 -x {10.0 9.0 3331 ------- null} h -t 3.77859 -s 7 -d 8 -p ack -e 40 -c 0 -i 6672 -a 0 -x {10.0 9.0 3331 ------- null} r -t 3.77874 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6657 -a 0 -x {9.0 10.0 3333 ------- null} + -t 3.77874 -s 10 -d 7 -p ack -e 40 -c 0 -i 6676 -a 0 -x {10.0 9.0 3333 ------- null} - -t 3.77874 -s 10 -d 7 -p ack -e 40 -c 0 -i 6676 -a 0 -x {10.0 9.0 3333 ------- null} h -t 3.77874 -s 10 -d 7 -p ack -e 40 -c 0 -i 6676 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.77874 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6671 -a 0 -x {9.0 10.0 3340 ------- null} + -t 3.77874 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6671 -a 0 -x {9.0 10.0 3340 ------- null} h -t 3.77874 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6671 -a 0 -x {9.0 10.0 3340 ------- null} r -t 3.77933 -s 0 -d 9 -p ack -e 40 -c 0 -i 6666 -a 0 -x {10.0 9.0 3328 ------- null} + -t 3.77933 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6677 -a 0 -x {9.0 10.0 3343 ------- null} - -t 3.77933 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6677 -a 0 -x {9.0 10.0 3343 ------- null} h -t 3.77933 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6677 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.77933 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6663 -a 0 -x {9.0 10.0 3336 ------- null} - -t 3.77933 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6663 -a 0 -x {9.0 10.0 3336 ------- null} h -t 3.77933 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6663 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.77952 -s 0 -d 9 -p ack -e 40 -c 0 -i 6670 -a 0 -x {10.0 9.0 3330 ------- null} - -t 3.77952 -s 0 -d 9 -p ack -e 40 -c 0 -i 6670 -a 0 -x {10.0 9.0 3330 ------- null} h -t 3.77952 -s 0 -d 9 -p ack -e 40 -c 0 -i 6670 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.77968 -s 10 -d 7 -p ack -e 40 -c 0 -i 6674 -a 0 -x {10.0 9.0 3332 ------- null} + -t 3.77968 -s 7 -d 0 -p ack -e 40 -c 0 -i 6674 -a 0 -x {10.0 9.0 3332 ------- null} h -t 3.77968 -s 7 -d 8 -p ack -e 40 -c 0 -i 6674 -a 0 -x {10.0 9.0 3332 ------- null} r -t 3.77979 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6673 -a 0 -x {9.0 10.0 3341 ------- null} + -t 3.77979 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6673 -a 0 -x {9.0 10.0 3341 ------- null} h -t 3.77979 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6673 -a 0 -x {9.0 10.0 3341 ------- null} r -t 3.77982 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6659 -a 0 -x {9.0 10.0 3334 ------- null} + -t 3.77982 -s 10 -d 7 -p ack -e 40 -c 0 -i 6678 -a 0 -x {10.0 9.0 3334 ------- null} - -t 3.77982 -s 10 -d 7 -p ack -e 40 -c 0 -i 6678 -a 0 -x {10.0 9.0 3334 ------- null} h -t 3.77982 -s 10 -d 7 -p ack -e 40 -c 0 -i 6678 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.7804 -s 0 -d 9 -p ack -e 40 -c 0 -i 6668 -a 0 -x {10.0 9.0 3329 ------- null} + -t 3.7804 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6679 -a 0 -x {9.0 10.0 3344 ------- null} - -t 3.7804 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6679 -a 0 -x {9.0 10.0 3344 ------- null} h -t 3.7804 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6679 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.78042 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6665 -a 0 -x {9.0 10.0 3337 ------- null} - -t 3.78042 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6665 -a 0 -x {9.0 10.0 3337 ------- null} h -t 3.78042 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6665 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.7805 -s 0 -d 9 -p ack -e 40 -c 0 -i 6672 -a 0 -x {10.0 9.0 3331 ------- null} - -t 3.7805 -s 0 -d 9 -p ack -e 40 -c 0 -i 6672 -a 0 -x {10.0 9.0 3331 ------- null} h -t 3.7805 -s 0 -d 9 -p ack -e 40 -c 0 -i 6672 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.78077 -s 10 -d 7 -p ack -e 40 -c 0 -i 6676 -a 0 -x {10.0 9.0 3333 ------- null} + -t 3.78077 -s 7 -d 0 -p ack -e 40 -c 0 -i 6676 -a 0 -x {10.0 9.0 3333 ------- null} h -t 3.78077 -s 7 -d 8 -p ack -e 40 -c 0 -i 6676 -a 0 -x {10.0 9.0 3333 ------- null} r -t 3.78083 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6675 -a 0 -x {9.0 10.0 3342 ------- null} + -t 3.78083 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6675 -a 0 -x {9.0 10.0 3342 ------- null} h -t 3.78083 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6675 -a 0 -x {9.0 10.0 3342 ------- null} r -t 3.78104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6661 -a 0 -x {9.0 10.0 3335 ------- null} + -t 3.78104 -s 10 -d 7 -p ack -e 40 -c 0 -i 6680 -a 0 -x {10.0 9.0 3335 ------- null} - -t 3.78104 -s 10 -d 7 -p ack -e 40 -c 0 -i 6680 -a 0 -x {10.0 9.0 3335 ------- null} h -t 3.78104 -s 10 -d 7 -p ack -e 40 -c 0 -i 6680 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.7815 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6667 -a 0 -x {9.0 10.0 3338 ------- null} - -t 3.7815 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6667 -a 0 -x {9.0 10.0 3338 ------- null} h -t 3.7815 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6667 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.78155 -s 0 -d 9 -p ack -e 40 -c 0 -i 6670 -a 0 -x {10.0 9.0 3330 ------- null} + -t 3.78155 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6681 -a 0 -x {9.0 10.0 3345 ------- null} - -t 3.78155 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6681 -a 0 -x {9.0 10.0 3345 ------- null} h -t 3.78155 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6681 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.78174 -s 0 -d 9 -p ack -e 40 -c 0 -i 6674 -a 0 -x {10.0 9.0 3332 ------- null} - -t 3.78174 -s 0 -d 9 -p ack -e 40 -c 0 -i 6674 -a 0 -x {10.0 9.0 3332 ------- null} h -t 3.78174 -s 0 -d 9 -p ack -e 40 -c 0 -i 6674 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.78186 -s 10 -d 7 -p ack -e 40 -c 0 -i 6678 -a 0 -x {10.0 9.0 3334 ------- null} + -t 3.78186 -s 7 -d 0 -p ack -e 40 -c 0 -i 6678 -a 0 -x {10.0 9.0 3334 ------- null} h -t 3.78186 -s 7 -d 8 -p ack -e 40 -c 0 -i 6678 -a 0 -x {10.0 9.0 3334 ------- null} r -t 3.78213 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6677 -a 0 -x {9.0 10.0 3343 ------- null} + -t 3.78213 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6677 -a 0 -x {9.0 10.0 3343 ------- null} h -t 3.78213 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6677 -a 0 -x {9.0 10.0 3343 ------- null} r -t 3.78213 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6663 -a 0 -x {9.0 10.0 3336 ------- null} + -t 3.78213 -s 10 -d 7 -p ack -e 40 -c 0 -i 6682 -a 0 -x {10.0 9.0 3336 ------- null} - -t 3.78213 -s 10 -d 7 -p ack -e 40 -c 0 -i 6682 -a 0 -x {10.0 9.0 3336 ------- null} h -t 3.78213 -s 10 -d 7 -p ack -e 40 -c 0 -i 6682 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.78253 -s 0 -d 9 -p ack -e 40 -c 0 -i 6672 -a 0 -x {10.0 9.0 3331 ------- null} + -t 3.78253 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6683 -a 0 -x {9.0 10.0 3346 ------- null} - -t 3.78253 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6683 -a 0 -x {9.0 10.0 3346 ------- null} h -t 3.78253 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6683 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.78259 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6669 -a 0 -x {9.0 10.0 3339 ------- null} - -t 3.78259 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6669 -a 0 -x {9.0 10.0 3339 ------- null} h -t 3.78259 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6669 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.78285 -s 0 -d 9 -p ack -e 40 -c 0 -i 6676 -a 0 -x {10.0 9.0 3333 ------- null} - -t 3.78285 -s 0 -d 9 -p ack -e 40 -c 0 -i 6676 -a 0 -x {10.0 9.0 3333 ------- null} h -t 3.78285 -s 0 -d 9 -p ack -e 40 -c 0 -i 6676 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.78307 -s 10 -d 7 -p ack -e 40 -c 0 -i 6680 -a 0 -x {10.0 9.0 3335 ------- null} + -t 3.78307 -s 7 -d 0 -p ack -e 40 -c 0 -i 6680 -a 0 -x {10.0 9.0 3335 ------- null} h -t 3.78307 -s 7 -d 8 -p ack -e 40 -c 0 -i 6680 -a 0 -x {10.0 9.0 3335 ------- null} r -t 3.7832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6679 -a 0 -x {9.0 10.0 3344 ------- null} + -t 3.7832 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6679 -a 0 -x {9.0 10.0 3344 ------- null} h -t 3.7832 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6679 -a 0 -x {9.0 10.0 3344 ------- null} r -t 3.78322 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6665 -a 0 -x {9.0 10.0 3337 ------- null} + -t 3.78322 -s 10 -d 7 -p ack -e 40 -c 0 -i 6684 -a 0 -x {10.0 9.0 3337 ------- null} - -t 3.78322 -s 10 -d 7 -p ack -e 40 -c 0 -i 6684 -a 0 -x {10.0 9.0 3337 ------- null} h -t 3.78322 -s 10 -d 7 -p ack -e 40 -c 0 -i 6684 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.78378 -s 0 -d 9 -p ack -e 40 -c 0 -i 6674 -a 0 -x {10.0 9.0 3332 ------- null} + -t 3.78378 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6685 -a 0 -x {9.0 10.0 3347 ------- null} - -t 3.78378 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6685 -a 0 -x {9.0 10.0 3347 ------- null} h -t 3.78378 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6685 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.7839 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6671 -a 0 -x {9.0 10.0 3340 ------- null} - -t 3.7839 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6671 -a 0 -x {9.0 10.0 3340 ------- null} h -t 3.7839 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6671 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.78411 -s 0 -d 9 -p ack -e 40 -c 0 -i 6678 -a 0 -x {10.0 9.0 3334 ------- null} - -t 3.78411 -s 0 -d 9 -p ack -e 40 -c 0 -i 6678 -a 0 -x {10.0 9.0 3334 ------- null} h -t 3.78411 -s 0 -d 9 -p ack -e 40 -c 0 -i 6678 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.78416 -s 10 -d 7 -p ack -e 40 -c 0 -i 6682 -a 0 -x {10.0 9.0 3336 ------- null} + -t 3.78416 -s 7 -d 0 -p ack -e 40 -c 0 -i 6682 -a 0 -x {10.0 9.0 3336 ------- null} h -t 3.78416 -s 7 -d 8 -p ack -e 40 -c 0 -i 6682 -a 0 -x {10.0 9.0 3336 ------- null} r -t 3.7843 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6667 -a 0 -x {9.0 10.0 3338 ------- null} + -t 3.7843 -s 10 -d 7 -p ack -e 40 -c 0 -i 6686 -a 0 -x {10.0 9.0 3338 ------- null} - -t 3.7843 -s 10 -d 7 -p ack -e 40 -c 0 -i 6686 -a 0 -x {10.0 9.0 3338 ------- null} h -t 3.7843 -s 10 -d 7 -p ack -e 40 -c 0 -i 6686 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.78435 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6681 -a 0 -x {9.0 10.0 3345 ------- null} + -t 3.78435 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6681 -a 0 -x {9.0 10.0 3345 ------- null} h -t 3.78435 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6681 -a 0 -x {9.0 10.0 3345 ------- null} r -t 3.78488 -s 0 -d 9 -p ack -e 40 -c 0 -i 6676 -a 0 -x {10.0 9.0 3333 ------- null} + -t 3.78488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6687 -a 0 -x {9.0 10.0 3348 ------- null} - -t 3.78488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6687 -a 0 -x {9.0 10.0 3348 ------- null} h -t 3.78488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6687 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.78499 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6673 -a 0 -x {9.0 10.0 3341 ------- null} - -t 3.78499 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6673 -a 0 -x {9.0 10.0 3341 ------- null} h -t 3.78499 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6673 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.78517 -s 0 -d 9 -p ack -e 40 -c 0 -i 6680 -a 0 -x {10.0 9.0 3335 ------- null} - -t 3.78517 -s 0 -d 9 -p ack -e 40 -c 0 -i 6680 -a 0 -x {10.0 9.0 3335 ------- null} h -t 3.78517 -s 0 -d 9 -p ack -e 40 -c 0 -i 6680 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.78525 -s 10 -d 7 -p ack -e 40 -c 0 -i 6684 -a 0 -x {10.0 9.0 3337 ------- null} + -t 3.78525 -s 7 -d 0 -p ack -e 40 -c 0 -i 6684 -a 0 -x {10.0 9.0 3337 ------- null} h -t 3.78525 -s 7 -d 8 -p ack -e 40 -c 0 -i 6684 -a 0 -x {10.0 9.0 3337 ------- null} r -t 3.78533 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6683 -a 0 -x {9.0 10.0 3346 ------- null} + -t 3.78533 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6683 -a 0 -x {9.0 10.0 3346 ------- null} h -t 3.78533 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6683 -a 0 -x {9.0 10.0 3346 ------- null} r -t 3.78539 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6669 -a 0 -x {9.0 10.0 3339 ------- null} + -t 3.78539 -s 10 -d 7 -p ack -e 40 -c 0 -i 6688 -a 0 -x {10.0 9.0 3339 ------- null} - -t 3.78539 -s 10 -d 7 -p ack -e 40 -c 0 -i 6688 -a 0 -x {10.0 9.0 3339 ------- null} h -t 3.78539 -s 10 -d 7 -p ack -e 40 -c 0 -i 6688 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.78608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6675 -a 0 -x {9.0 10.0 3342 ------- null} - -t 3.78608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6675 -a 0 -x {9.0 10.0 3342 ------- null} h -t 3.78608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6675 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.78614 -s 0 -d 9 -p ack -e 40 -c 0 -i 6678 -a 0 -x {10.0 9.0 3334 ------- null} + -t 3.78614 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6689 -a 0 -x {9.0 10.0 3349 ------- null} - -t 3.78614 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6689 -a 0 -x {9.0 10.0 3349 ------- null} h -t 3.78614 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6689 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.78616 -s 0 -d 9 -p ack -e 40 -c 0 -i 6682 -a 0 -x {10.0 9.0 3336 ------- null} - -t 3.78616 -s 0 -d 9 -p ack -e 40 -c 0 -i 6682 -a 0 -x {10.0 9.0 3336 ------- null} h -t 3.78616 -s 0 -d 9 -p ack -e 40 -c 0 -i 6682 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.78634 -s 10 -d 7 -p ack -e 40 -c 0 -i 6686 -a 0 -x {10.0 9.0 3338 ------- null} + -t 3.78634 -s 7 -d 0 -p ack -e 40 -c 0 -i 6686 -a 0 -x {10.0 9.0 3338 ------- null} h -t 3.78634 -s 7 -d 8 -p ack -e 40 -c 0 -i 6686 -a 0 -x {10.0 9.0 3338 ------- null} r -t 3.78658 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6685 -a 0 -x {9.0 10.0 3347 ------- null} + -t 3.78658 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6685 -a 0 -x {9.0 10.0 3347 ------- null} h -t 3.78658 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6685 -a 0 -x {9.0 10.0 3347 ------- null} r -t 3.7867 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6671 -a 0 -x {9.0 10.0 3340 ------- null} + -t 3.7867 -s 10 -d 7 -p ack -e 40 -c 0 -i 6690 -a 0 -x {10.0 9.0 3340 ------- null} - -t 3.7867 -s 10 -d 7 -p ack -e 40 -c 0 -i 6690 -a 0 -x {10.0 9.0 3340 ------- null} h -t 3.7867 -s 10 -d 7 -p ack -e 40 -c 0 -i 6690 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.78717 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6677 -a 0 -x {9.0 10.0 3343 ------- null} - -t 3.78717 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6677 -a 0 -x {9.0 10.0 3343 ------- null} h -t 3.78717 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6677 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.7872 -s 0 -d 9 -p ack -e 40 -c 0 -i 6680 -a 0 -x {10.0 9.0 3335 ------- null} + -t 3.7872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6691 -a 0 -x {9.0 10.0 3350 ------- null} - -t 3.7872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6691 -a 0 -x {9.0 10.0 3350 ------- null} h -t 3.7872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6691 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.7873 -s 0 -d 9 -p ack -e 40 -c 0 -i 6684 -a 0 -x {10.0 9.0 3337 ------- null} - -t 3.7873 -s 0 -d 9 -p ack -e 40 -c 0 -i 6684 -a 0 -x {10.0 9.0 3337 ------- null} h -t 3.7873 -s 0 -d 9 -p ack -e 40 -c 0 -i 6684 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.78742 -s 10 -d 7 -p ack -e 40 -c 0 -i 6688 -a 0 -x {10.0 9.0 3339 ------- null} + -t 3.78742 -s 7 -d 0 -p ack -e 40 -c 0 -i 6688 -a 0 -x {10.0 9.0 3339 ------- null} h -t 3.78742 -s 7 -d 8 -p ack -e 40 -c 0 -i 6688 -a 0 -x {10.0 9.0 3339 ------- null} r -t 3.78768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6687 -a 0 -x {9.0 10.0 3348 ------- null} + -t 3.78768 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6687 -a 0 -x {9.0 10.0 3348 ------- null} h -t 3.78768 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6687 -a 0 -x {9.0 10.0 3348 ------- null} r -t 3.78779 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6673 -a 0 -x {9.0 10.0 3341 ------- null} + -t 3.78779 -s 10 -d 7 -p ack -e 40 -c 0 -i 6692 -a 0 -x {10.0 9.0 3341 ------- null} - -t 3.78779 -s 10 -d 7 -p ack -e 40 -c 0 -i 6692 -a 0 -x {10.0 9.0 3341 ------- null} h -t 3.78779 -s 10 -d 7 -p ack -e 40 -c 0 -i 6692 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.78819 -s 0 -d 9 -p ack -e 40 -c 0 -i 6682 -a 0 -x {10.0 9.0 3336 ------- null} + -t 3.78819 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6693 -a 0 -x {9.0 10.0 3351 ------- null} - -t 3.78819 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6693 -a 0 -x {9.0 10.0 3351 ------- null} h -t 3.78819 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6693 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.78826 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6679 -a 0 -x {9.0 10.0 3344 ------- null} - -t 3.78826 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6679 -a 0 -x {9.0 10.0 3344 ------- null} h -t 3.78826 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6679 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.78838 -s 0 -d 9 -p ack -e 40 -c 0 -i 6686 -a 0 -x {10.0 9.0 3338 ------- null} - -t 3.78838 -s 0 -d 9 -p ack -e 40 -c 0 -i 6686 -a 0 -x {10.0 9.0 3338 ------- null} h -t 3.78838 -s 0 -d 9 -p ack -e 40 -c 0 -i 6686 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.78874 -s 10 -d 7 -p ack -e 40 -c 0 -i 6690 -a 0 -x {10.0 9.0 3340 ------- null} + -t 3.78874 -s 7 -d 0 -p ack -e 40 -c 0 -i 6690 -a 0 -x {10.0 9.0 3340 ------- null} h -t 3.78874 -s 7 -d 8 -p ack -e 40 -c 0 -i 6690 -a 0 -x {10.0 9.0 3340 ------- null} r -t 3.78888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6675 -a 0 -x {9.0 10.0 3342 ------- null} + -t 3.78888 -s 10 -d 7 -p ack -e 40 -c 0 -i 6694 -a 0 -x {10.0 9.0 3342 ------- null} - -t 3.78888 -s 10 -d 7 -p ack -e 40 -c 0 -i 6694 -a 0 -x {10.0 9.0 3342 ------- null} h -t 3.78888 -s 10 -d 7 -p ack -e 40 -c 0 -i 6694 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.78894 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6689 -a 0 -x {9.0 10.0 3349 ------- null} + -t 3.78894 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6689 -a 0 -x {9.0 10.0 3349 ------- null} h -t 3.78894 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6689 -a 0 -x {9.0 10.0 3349 ------- null} r -t 3.78933 -s 0 -d 9 -p ack -e 40 -c 0 -i 6684 -a 0 -x {10.0 9.0 3337 ------- null} + -t 3.78933 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6695 -a 0 -x {9.0 10.0 3352 ------- null} - -t 3.78933 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6695 -a 0 -x {9.0 10.0 3352 ------- null} h -t 3.78933 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6695 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.78934 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6681 -a 0 -x {9.0 10.0 3345 ------- null} - -t 3.78934 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6681 -a 0 -x {9.0 10.0 3345 ------- null} h -t 3.78934 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6681 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.7895 -s 0 -d 9 -p ack -e 40 -c 0 -i 6688 -a 0 -x {10.0 9.0 3339 ------- null} - -t 3.7895 -s 0 -d 9 -p ack -e 40 -c 0 -i 6688 -a 0 -x {10.0 9.0 3339 ------- null} h -t 3.7895 -s 0 -d 9 -p ack -e 40 -c 0 -i 6688 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.78982 -s 10 -d 7 -p ack -e 40 -c 0 -i 6692 -a 0 -x {10.0 9.0 3341 ------- null} + -t 3.78982 -s 7 -d 0 -p ack -e 40 -c 0 -i 6692 -a 0 -x {10.0 9.0 3341 ------- null} h -t 3.78982 -s 7 -d 8 -p ack -e 40 -c 0 -i 6692 -a 0 -x {10.0 9.0 3341 ------- null} r -t 3.78997 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6677 -a 0 -x {9.0 10.0 3343 ------- null} + -t 3.78997 -s 10 -d 7 -p ack -e 40 -c 0 -i 6696 -a 0 -x {10.0 9.0 3343 ------- null} - -t 3.78997 -s 10 -d 7 -p ack -e 40 -c 0 -i 6696 -a 0 -x {10.0 9.0 3343 ------- null} h -t 3.78997 -s 10 -d 7 -p ack -e 40 -c 0 -i 6696 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.79 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6691 -a 0 -x {9.0 10.0 3350 ------- null} + -t 3.79 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6691 -a 0 -x {9.0 10.0 3350 ------- null} h -t 3.79 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6691 -a 0 -x {9.0 10.0 3350 ------- null} r -t 3.79042 -s 0 -d 9 -p ack -e 40 -c 0 -i 6686 -a 0 -x {10.0 9.0 3338 ------- null} + -t 3.79042 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6697 -a 0 -x {9.0 10.0 3353 ------- null} - -t 3.79042 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6697 -a 0 -x {9.0 10.0 3353 ------- null} h -t 3.79042 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6697 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.79043 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6683 -a 0 -x {9.0 10.0 3346 ------- null} - -t 3.79043 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6683 -a 0 -x {9.0 10.0 3346 ------- null} h -t 3.79043 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6683 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.7905 -s 0 -d 9 -p ack -e 40 -c 0 -i 6690 -a 0 -x {10.0 9.0 3340 ------- null} - -t 3.7905 -s 0 -d 9 -p ack -e 40 -c 0 -i 6690 -a 0 -x {10.0 9.0 3340 ------- null} h -t 3.7905 -s 0 -d 9 -p ack -e 40 -c 0 -i 6690 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.79091 -s 10 -d 7 -p ack -e 40 -c 0 -i 6694 -a 0 -x {10.0 9.0 3342 ------- null} + -t 3.79091 -s 7 -d 0 -p ack -e 40 -c 0 -i 6694 -a 0 -x {10.0 9.0 3342 ------- null} h -t 3.79091 -s 7 -d 8 -p ack -e 40 -c 0 -i 6694 -a 0 -x {10.0 9.0 3342 ------- null} r -t 3.79099 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6693 -a 0 -x {9.0 10.0 3351 ------- null} + -t 3.79099 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6693 -a 0 -x {9.0 10.0 3351 ------- null} h -t 3.79099 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6693 -a 0 -x {9.0 10.0 3351 ------- null} r -t 3.79106 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6679 -a 0 -x {9.0 10.0 3344 ------- null} + -t 3.79106 -s 10 -d 7 -p ack -e 40 -c 0 -i 6698 -a 0 -x {10.0 9.0 3344 ------- null} - -t 3.79106 -s 10 -d 7 -p ack -e 40 -c 0 -i 6698 -a 0 -x {10.0 9.0 3344 ------- null} h -t 3.79106 -s 10 -d 7 -p ack -e 40 -c 0 -i 6698 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.79152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6685 -a 0 -x {9.0 10.0 3347 ------- null} - -t 3.79152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6685 -a 0 -x {9.0 10.0 3347 ------- null} h -t 3.79152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6685 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.79154 -s 0 -d 9 -p ack -e 40 -c 0 -i 6688 -a 0 -x {10.0 9.0 3339 ------- null} + -t 3.79154 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6699 -a 0 -x {9.0 10.0 3354 ------- null} - -t 3.79154 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6699 -a 0 -x {9.0 10.0 3354 ------- null} h -t 3.79154 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6699 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.79166 -s 0 -d 9 -p ack -e 40 -c 0 -i 6692 -a 0 -x {10.0 9.0 3341 ------- null} - -t 3.79166 -s 0 -d 9 -p ack -e 40 -c 0 -i 6692 -a 0 -x {10.0 9.0 3341 ------- null} h -t 3.79166 -s 0 -d 9 -p ack -e 40 -c 0 -i 6692 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.792 -s 10 -d 7 -p ack -e 40 -c 0 -i 6696 -a 0 -x {10.0 9.0 3343 ------- null} + -t 3.792 -s 7 -d 0 -p ack -e 40 -c 0 -i 6696 -a 0 -x {10.0 9.0 3343 ------- null} h -t 3.792 -s 7 -d 8 -p ack -e 40 -c 0 -i 6696 -a 0 -x {10.0 9.0 3343 ------- null} r -t 3.79213 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6695 -a 0 -x {9.0 10.0 3352 ------- null} + -t 3.79213 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6695 -a 0 -x {9.0 10.0 3352 ------- null} h -t 3.79213 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6695 -a 0 -x {9.0 10.0 3352 ------- null} r -t 3.79214 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6681 -a 0 -x {9.0 10.0 3345 ------- null} + -t 3.79214 -s 10 -d 7 -p ack -e 40 -c 0 -i 6700 -a 0 -x {10.0 9.0 3345 ------- null} - -t 3.79214 -s 10 -d 7 -p ack -e 40 -c 0 -i 6700 -a 0 -x {10.0 9.0 3345 ------- null} h -t 3.79214 -s 10 -d 7 -p ack -e 40 -c 0 -i 6700 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.79253 -s 0 -d 9 -p ack -e 40 -c 0 -i 6690 -a 0 -x {10.0 9.0 3340 ------- null} + -t 3.79253 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6701 -a 0 -x {9.0 10.0 3355 ------- null} - -t 3.79253 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6701 -a 0 -x {9.0 10.0 3355 ------- null} h -t 3.79253 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6701 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.79261 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6687 -a 0 -x {9.0 10.0 3348 ------- null} - -t 3.79261 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6687 -a 0 -x {9.0 10.0 3348 ------- null} h -t 3.79261 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6687 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.7927 -s 0 -d 9 -p ack -e 40 -c 0 -i 6694 -a 0 -x {10.0 9.0 3342 ------- null} - -t 3.7927 -s 0 -d 9 -p ack -e 40 -c 0 -i 6694 -a 0 -x {10.0 9.0 3342 ------- null} h -t 3.7927 -s 0 -d 9 -p ack -e 40 -c 0 -i 6694 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.79309 -s 10 -d 7 -p ack -e 40 -c 0 -i 6698 -a 0 -x {10.0 9.0 3344 ------- null} + -t 3.79309 -s 7 -d 0 -p ack -e 40 -c 0 -i 6698 -a 0 -x {10.0 9.0 3344 ------- null} h -t 3.79309 -s 7 -d 8 -p ack -e 40 -c 0 -i 6698 -a 0 -x {10.0 9.0 3344 ------- null} r -t 3.79322 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6697 -a 0 -x {9.0 10.0 3353 ------- null} + -t 3.79322 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6697 -a 0 -x {9.0 10.0 3353 ------- null} h -t 3.79322 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6697 -a 0 -x {9.0 10.0 3353 ------- null} r -t 3.79323 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6683 -a 0 -x {9.0 10.0 3346 ------- null} + -t 3.79323 -s 10 -d 7 -p ack -e 40 -c 0 -i 6702 -a 0 -x {10.0 9.0 3346 ------- null} - -t 3.79323 -s 10 -d 7 -p ack -e 40 -c 0 -i 6702 -a 0 -x {10.0 9.0 3346 ------- null} h -t 3.79323 -s 10 -d 7 -p ack -e 40 -c 0 -i 6702 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.7937 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6689 -a 0 -x {9.0 10.0 3349 ------- null} - -t 3.7937 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6689 -a 0 -x {9.0 10.0 3349 ------- null} h -t 3.7937 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6689 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.7937 -s 0 -d 9 -p ack -e 40 -c 0 -i 6692 -a 0 -x {10.0 9.0 3341 ------- null} + -t 3.7937 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6703 -a 0 -x {9.0 10.0 3356 ------- null} - -t 3.7937 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6703 -a 0 -x {9.0 10.0 3356 ------- null} h -t 3.7937 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6703 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.7939 -s 0 -d 9 -p ack -e 40 -c 0 -i 6696 -a 0 -x {10.0 9.0 3343 ------- null} - -t 3.7939 -s 0 -d 9 -p ack -e 40 -c 0 -i 6696 -a 0 -x {10.0 9.0 3343 ------- null} h -t 3.7939 -s 0 -d 9 -p ack -e 40 -c 0 -i 6696 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.79418 -s 10 -d 7 -p ack -e 40 -c 0 -i 6700 -a 0 -x {10.0 9.0 3345 ------- null} + -t 3.79418 -s 7 -d 0 -p ack -e 40 -c 0 -i 6700 -a 0 -x {10.0 9.0 3345 ------- null} h -t 3.79418 -s 7 -d 8 -p ack -e 40 -c 0 -i 6700 -a 0 -x {10.0 9.0 3345 ------- null} r -t 3.79432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6685 -a 0 -x {9.0 10.0 3347 ------- null} + -t 3.79432 -s 10 -d 7 -p ack -e 40 -c 0 -i 6704 -a 0 -x {10.0 9.0 3347 ------- null} - -t 3.79432 -s 10 -d 7 -p ack -e 40 -c 0 -i 6704 -a 0 -x {10.0 9.0 3347 ------- null} h -t 3.79432 -s 10 -d 7 -p ack -e 40 -c 0 -i 6704 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.79434 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6699 -a 0 -x {9.0 10.0 3354 ------- null} + -t 3.79434 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6699 -a 0 -x {9.0 10.0 3354 ------- null} h -t 3.79434 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6699 -a 0 -x {9.0 10.0 3354 ------- null} r -t 3.79474 -s 0 -d 9 -p ack -e 40 -c 0 -i 6694 -a 0 -x {10.0 9.0 3342 ------- null} + -t 3.79474 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6705 -a 0 -x {9.0 10.0 3357 ------- null} - -t 3.79474 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6705 -a 0 -x {9.0 10.0 3357 ------- null} h -t 3.79474 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6705 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.79478 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6691 -a 0 -x {9.0 10.0 3350 ------- null} - -t 3.79478 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6691 -a 0 -x {9.0 10.0 3350 ------- null} h -t 3.79478 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6691 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.79507 -s 0 -d 9 -p ack -e 40 -c 0 -i 6698 -a 0 -x {10.0 9.0 3344 ------- null} - -t 3.79507 -s 0 -d 9 -p ack -e 40 -c 0 -i 6698 -a 0 -x {10.0 9.0 3344 ------- null} h -t 3.79507 -s 0 -d 9 -p ack -e 40 -c 0 -i 6698 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.79526 -s 10 -d 7 -p ack -e 40 -c 0 -i 6702 -a 0 -x {10.0 9.0 3346 ------- null} + -t 3.79526 -s 7 -d 0 -p ack -e 40 -c 0 -i 6702 -a 0 -x {10.0 9.0 3346 ------- null} h -t 3.79526 -s 7 -d 8 -p ack -e 40 -c 0 -i 6702 -a 0 -x {10.0 9.0 3346 ------- null} r -t 3.79533 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6701 -a 0 -x {9.0 10.0 3355 ------- null} + -t 3.79533 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6701 -a 0 -x {9.0 10.0 3355 ------- null} h -t 3.79533 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6701 -a 0 -x {9.0 10.0 3355 ------- null} r -t 3.79541 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6687 -a 0 -x {9.0 10.0 3348 ------- null} + -t 3.79541 -s 10 -d 7 -p ack -e 40 -c 0 -i 6706 -a 0 -x {10.0 9.0 3348 ------- null} - -t 3.79541 -s 10 -d 7 -p ack -e 40 -c 0 -i 6706 -a 0 -x {10.0 9.0 3348 ------- null} h -t 3.79541 -s 10 -d 7 -p ack -e 40 -c 0 -i 6706 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.79594 -s 0 -d 9 -p ack -e 40 -c 0 -i 6696 -a 0 -x {10.0 9.0 3343 ------- null} + -t 3.79594 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6707 -a 0 -x {9.0 10.0 3358 ------- null} - -t 3.79594 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6707 -a 0 -x {9.0 10.0 3358 ------- null} h -t 3.79594 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6707 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.79608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6693 -a 0 -x {9.0 10.0 3351 ------- null} - -t 3.79608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6693 -a 0 -x {9.0 10.0 3351 ------- null} h -t 3.79608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6693 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.79622 -s 0 -d 9 -p ack -e 40 -c 0 -i 6700 -a 0 -x {10.0 9.0 3345 ------- null} - -t 3.79622 -s 0 -d 9 -p ack -e 40 -c 0 -i 6700 -a 0 -x {10.0 9.0 3345 ------- null} h -t 3.79622 -s 0 -d 9 -p ack -e 40 -c 0 -i 6700 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.79635 -s 10 -d 7 -p ack -e 40 -c 0 -i 6704 -a 0 -x {10.0 9.0 3347 ------- null} + -t 3.79635 -s 7 -d 0 -p ack -e 40 -c 0 -i 6704 -a 0 -x {10.0 9.0 3347 ------- null} h -t 3.79635 -s 7 -d 8 -p ack -e 40 -c 0 -i 6704 -a 0 -x {10.0 9.0 3347 ------- null} r -t 3.7965 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6689 -a 0 -x {9.0 10.0 3349 ------- null} + -t 3.7965 -s 10 -d 7 -p ack -e 40 -c 0 -i 6708 -a 0 -x {10.0 9.0 3349 ------- null} - -t 3.7965 -s 10 -d 7 -p ack -e 40 -c 0 -i 6708 -a 0 -x {10.0 9.0 3349 ------- null} h -t 3.7965 -s 10 -d 7 -p ack -e 40 -c 0 -i 6708 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.7965 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6703 -a 0 -x {9.0 10.0 3356 ------- null} + -t 3.7965 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6703 -a 0 -x {9.0 10.0 3356 ------- null} h -t 3.7965 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6703 -a 0 -x {9.0 10.0 3356 ------- null} r -t 3.7971 -s 0 -d 9 -p ack -e 40 -c 0 -i 6698 -a 0 -x {10.0 9.0 3344 ------- null} + -t 3.7971 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6709 -a 0 -x {9.0 10.0 3359 ------- null} - -t 3.7971 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6709 -a 0 -x {9.0 10.0 3359 ------- null} h -t 3.7971 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6709 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.79717 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6695 -a 0 -x {9.0 10.0 3352 ------- null} - -t 3.79717 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6695 -a 0 -x {9.0 10.0 3352 ------- null} h -t 3.79717 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6695 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.79739 -s 0 -d 9 -p ack -e 40 -c 0 -i 6702 -a 0 -x {10.0 9.0 3346 ------- null} - -t 3.79739 -s 0 -d 9 -p ack -e 40 -c 0 -i 6702 -a 0 -x {10.0 9.0 3346 ------- null} h -t 3.79739 -s 0 -d 9 -p ack -e 40 -c 0 -i 6702 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.79744 -s 10 -d 7 -p ack -e 40 -c 0 -i 6706 -a 0 -x {10.0 9.0 3348 ------- null} + -t 3.79744 -s 7 -d 0 -p ack -e 40 -c 0 -i 6706 -a 0 -x {10.0 9.0 3348 ------- null} h -t 3.79744 -s 7 -d 8 -p ack -e 40 -c 0 -i 6706 -a 0 -x {10.0 9.0 3348 ------- null} r -t 3.79754 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6705 -a 0 -x {9.0 10.0 3357 ------- null} + -t 3.79754 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6705 -a 0 -x {9.0 10.0 3357 ------- null} h -t 3.79754 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6705 -a 0 -x {9.0 10.0 3357 ------- null} r -t 3.79758 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6691 -a 0 -x {9.0 10.0 3350 ------- null} + -t 3.79758 -s 10 -d 7 -p ack -e 40 -c 0 -i 6710 -a 0 -x {10.0 9.0 3350 ------- null} - -t 3.79758 -s 10 -d 7 -p ack -e 40 -c 0 -i 6710 -a 0 -x {10.0 9.0 3350 ------- null} h -t 3.79758 -s 10 -d 7 -p ack -e 40 -c 0 -i 6710 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.79826 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6697 -a 0 -x {9.0 10.0 3353 ------- null} - -t 3.79826 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6697 -a 0 -x {9.0 10.0 3353 ------- null} h -t 3.79826 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6697 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.79826 -s 0 -d 9 -p ack -e 40 -c 0 -i 6700 -a 0 -x {10.0 9.0 3345 ------- null} + -t 3.79826 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6711 -a 0 -x {9.0 10.0 3360 ------- null} - -t 3.79826 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6711 -a 0 -x {9.0 10.0 3360 ------- null} h -t 3.79826 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6711 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.7985 -s 0 -d 9 -p ack -e 40 -c 0 -i 6704 -a 0 -x {10.0 9.0 3347 ------- null} - -t 3.7985 -s 0 -d 9 -p ack -e 40 -c 0 -i 6704 -a 0 -x {10.0 9.0 3347 ------- null} h -t 3.7985 -s 0 -d 9 -p ack -e 40 -c 0 -i 6704 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.79853 -s 10 -d 7 -p ack -e 40 -c 0 -i 6708 -a 0 -x {10.0 9.0 3349 ------- null} + -t 3.79853 -s 7 -d 0 -p ack -e 40 -c 0 -i 6708 -a 0 -x {10.0 9.0 3349 ------- null} h -t 3.79853 -s 7 -d 8 -p ack -e 40 -c 0 -i 6708 -a 0 -x {10.0 9.0 3349 ------- null} r -t 3.79874 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6707 -a 0 -x {9.0 10.0 3358 ------- null} + -t 3.79874 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6707 -a 0 -x {9.0 10.0 3358 ------- null} h -t 3.79874 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6707 -a 0 -x {9.0 10.0 3358 ------- null} r -t 3.79888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6693 -a 0 -x {9.0 10.0 3351 ------- null} + -t 3.79888 -s 10 -d 7 -p ack -e 40 -c 0 -i 6712 -a 0 -x {10.0 9.0 3351 ------- null} - -t 3.79888 -s 10 -d 7 -p ack -e 40 -c 0 -i 6712 -a 0 -x {10.0 9.0 3351 ------- null} h -t 3.79888 -s 10 -d 7 -p ack -e 40 -c 0 -i 6712 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.79934 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6699 -a 0 -x {9.0 10.0 3354 ------- null} - -t 3.79934 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6699 -a 0 -x {9.0 10.0 3354 ------- null} h -t 3.79934 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6699 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.79942 -s 0 -d 9 -p ack -e 40 -c 0 -i 6702 -a 0 -x {10.0 9.0 3346 ------- null} + -t 3.79942 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6713 -a 0 -x {9.0 10.0 3361 ------- null} - -t 3.79942 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6713 -a 0 -x {9.0 10.0 3361 ------- null} h -t 3.79942 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6713 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.79954 -s 0 -d 9 -p ack -e 40 -c 0 -i 6706 -a 0 -x {10.0 9.0 3348 ------- null} - -t 3.79954 -s 0 -d 9 -p ack -e 40 -c 0 -i 6706 -a 0 -x {10.0 9.0 3348 ------- null} h -t 3.79954 -s 0 -d 9 -p ack -e 40 -c 0 -i 6706 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.79962 -s 10 -d 7 -p ack -e 40 -c 0 -i 6710 -a 0 -x {10.0 9.0 3350 ------- null} + -t 3.79962 -s 7 -d 0 -p ack -e 40 -c 0 -i 6710 -a 0 -x {10.0 9.0 3350 ------- null} h -t 3.79962 -s 7 -d 8 -p ack -e 40 -c 0 -i 6710 -a 0 -x {10.0 9.0 3350 ------- null} r -t 3.7999 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6709 -a 0 -x {9.0 10.0 3359 ------- null} + -t 3.7999 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6709 -a 0 -x {9.0 10.0 3359 ------- null} h -t 3.7999 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6709 -a 0 -x {9.0 10.0 3359 ------- null} r -t 3.79997 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6695 -a 0 -x {9.0 10.0 3352 ------- null} + -t 3.79997 -s 10 -d 7 -p ack -e 40 -c 0 -i 6714 -a 0 -x {10.0 9.0 3352 ------- null} - -t 3.79997 -s 10 -d 7 -p ack -e 40 -c 0 -i 6714 -a 0 -x {10.0 9.0 3352 ------- null} h -t 3.79997 -s 10 -d 7 -p ack -e 40 -c 0 -i 6714 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.80043 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6701 -a 0 -x {9.0 10.0 3355 ------- null} - -t 3.80043 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6701 -a 0 -x {9.0 10.0 3355 ------- null} h -t 3.80043 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6701 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.80053 -s 0 -d 9 -p ack -e 40 -c 0 -i 6704 -a 0 -x {10.0 9.0 3347 ------- null} + -t 3.80053 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6715 -a 0 -x {9.0 10.0 3362 ------- null} - -t 3.80053 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6715 -a 0 -x {9.0 10.0 3362 ------- null} h -t 3.80053 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6715 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.80061 -s 0 -d 9 -p ack -e 40 -c 0 -i 6708 -a 0 -x {10.0 9.0 3349 ------- null} - -t 3.80061 -s 0 -d 9 -p ack -e 40 -c 0 -i 6708 -a 0 -x {10.0 9.0 3349 ------- null} h -t 3.80061 -s 0 -d 9 -p ack -e 40 -c 0 -i 6708 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.80091 -s 10 -d 7 -p ack -e 40 -c 0 -i 6712 -a 0 -x {10.0 9.0 3351 ------- null} + -t 3.80091 -s 7 -d 0 -p ack -e 40 -c 0 -i 6712 -a 0 -x {10.0 9.0 3351 ------- null} h -t 3.80091 -s 7 -d 8 -p ack -e 40 -c 0 -i 6712 -a 0 -x {10.0 9.0 3351 ------- null} r -t 3.80106 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6697 -a 0 -x {9.0 10.0 3353 ------- null} + -t 3.80106 -s 10 -d 7 -p ack -e 40 -c 0 -i 6716 -a 0 -x {10.0 9.0 3353 ------- null} - -t 3.80106 -s 10 -d 7 -p ack -e 40 -c 0 -i 6716 -a 0 -x {10.0 9.0 3353 ------- null} h -t 3.80106 -s 10 -d 7 -p ack -e 40 -c 0 -i 6716 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.80106 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6711 -a 0 -x {9.0 10.0 3360 ------- null} + -t 3.80106 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6711 -a 0 -x {9.0 10.0 3360 ------- null} h -t 3.80106 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6711 -a 0 -x {9.0 10.0 3360 ------- null} + -t 3.80152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6703 -a 0 -x {9.0 10.0 3356 ------- null} - -t 3.80152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6703 -a 0 -x {9.0 10.0 3356 ------- null} h -t 3.80152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6703 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.80157 -s 0 -d 9 -p ack -e 40 -c 0 -i 6706 -a 0 -x {10.0 9.0 3348 ------- null} + -t 3.80157 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6717 -a 0 -x {9.0 10.0 3363 ------- null} - -t 3.80157 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6717 -a 0 -x {9.0 10.0 3363 ------- null} h -t 3.80157 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6717 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.80158 -s 0 -d 9 -p ack -e 40 -c 0 -i 6710 -a 0 -x {10.0 9.0 3350 ------- null} - -t 3.80158 -s 0 -d 9 -p ack -e 40 -c 0 -i 6710 -a 0 -x {10.0 9.0 3350 ------- null} h -t 3.80158 -s 0 -d 9 -p ack -e 40 -c 0 -i 6710 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.802 -s 10 -d 7 -p ack -e 40 -c 0 -i 6714 -a 0 -x {10.0 9.0 3352 ------- null} + -t 3.802 -s 7 -d 0 -p ack -e 40 -c 0 -i 6714 -a 0 -x {10.0 9.0 3352 ------- null} h -t 3.802 -s 7 -d 8 -p ack -e 40 -c 0 -i 6714 -a 0 -x {10.0 9.0 3352 ------- null} r -t 3.80214 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6699 -a 0 -x {9.0 10.0 3354 ------- null} + -t 3.80214 -s 10 -d 7 -p ack -e 40 -c 0 -i 6718 -a 0 -x {10.0 9.0 3354 ------- null} - -t 3.80214 -s 10 -d 7 -p ack -e 40 -c 0 -i 6718 -a 0 -x {10.0 9.0 3354 ------- null} h -t 3.80214 -s 10 -d 7 -p ack -e 40 -c 0 -i 6718 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.80222 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6713 -a 0 -x {9.0 10.0 3361 ------- null} + -t 3.80222 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6713 -a 0 -x {9.0 10.0 3361 ------- null} h -t 3.80222 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6713 -a 0 -x {9.0 10.0 3361 ------- null} + -t 3.80261 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6705 -a 0 -x {9.0 10.0 3357 ------- null} - -t 3.80261 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6705 -a 0 -x {9.0 10.0 3357 ------- null} h -t 3.80261 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6705 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.80264 -s 0 -d 9 -p ack -e 40 -c 0 -i 6708 -a 0 -x {10.0 9.0 3349 ------- null} + -t 3.80264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6719 -a 0 -x {9.0 10.0 3364 ------- null} - -t 3.80264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6719 -a 0 -x {9.0 10.0 3364 ------- null} h -t 3.80264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6719 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.80277 -s 0 -d 9 -p ack -e 40 -c 0 -i 6712 -a 0 -x {10.0 9.0 3351 ------- null} - -t 3.80277 -s 0 -d 9 -p ack -e 40 -c 0 -i 6712 -a 0 -x {10.0 9.0 3351 ------- null} h -t 3.80277 -s 0 -d 9 -p ack -e 40 -c 0 -i 6712 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.80309 -s 10 -d 7 -p ack -e 40 -c 0 -i 6716 -a 0 -x {10.0 9.0 3353 ------- null} + -t 3.80309 -s 7 -d 0 -p ack -e 40 -c 0 -i 6716 -a 0 -x {10.0 9.0 3353 ------- null} h -t 3.80309 -s 7 -d 8 -p ack -e 40 -c 0 -i 6716 -a 0 -x {10.0 9.0 3353 ------- null} r -t 3.80323 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6701 -a 0 -x {9.0 10.0 3355 ------- null} + -t 3.80323 -s 10 -d 7 -p ack -e 40 -c 0 -i 6720 -a 0 -x {10.0 9.0 3355 ------- null} - -t 3.80323 -s 10 -d 7 -p ack -e 40 -c 0 -i 6720 -a 0 -x {10.0 9.0 3355 ------- null} h -t 3.80323 -s 10 -d 7 -p ack -e 40 -c 0 -i 6720 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.80333 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6715 -a 0 -x {9.0 10.0 3362 ------- null} + -t 3.80333 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6715 -a 0 -x {9.0 10.0 3362 ------- null} h -t 3.80333 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6715 -a 0 -x {9.0 10.0 3362 ------- null} r -t 3.80362 -s 0 -d 9 -p ack -e 40 -c 0 -i 6710 -a 0 -x {10.0 9.0 3350 ------- null} + -t 3.80362 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6721 -a 0 -x {9.0 10.0 3365 ------- null} - -t 3.80362 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6721 -a 0 -x {9.0 10.0 3365 ------- null} h -t 3.80362 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6721 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.8037 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6707 -a 0 -x {9.0 10.0 3358 ------- null} - -t 3.8037 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6707 -a 0 -x {9.0 10.0 3358 ------- null} h -t 3.8037 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6707 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.804 -s 0 -d 9 -p ack -e 40 -c 0 -i 6714 -a 0 -x {10.0 9.0 3352 ------- null} - -t 3.804 -s 0 -d 9 -p ack -e 40 -c 0 -i 6714 -a 0 -x {10.0 9.0 3352 ------- null} h -t 3.804 -s 0 -d 9 -p ack -e 40 -c 0 -i 6714 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.80418 -s 10 -d 7 -p ack -e 40 -c 0 -i 6718 -a 0 -x {10.0 9.0 3354 ------- null} + -t 3.80418 -s 7 -d 0 -p ack -e 40 -c 0 -i 6718 -a 0 -x {10.0 9.0 3354 ------- null} h -t 3.80418 -s 7 -d 8 -p ack -e 40 -c 0 -i 6718 -a 0 -x {10.0 9.0 3354 ------- null} r -t 3.80432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6703 -a 0 -x {9.0 10.0 3356 ------- null} + -t 3.80432 -s 10 -d 7 -p ack -e 40 -c 0 -i 6722 -a 0 -x {10.0 9.0 3356 ------- null} - -t 3.80432 -s 10 -d 7 -p ack -e 40 -c 0 -i 6722 -a 0 -x {10.0 9.0 3356 ------- null} h -t 3.80432 -s 10 -d 7 -p ack -e 40 -c 0 -i 6722 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.80437 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6717 -a 0 -x {9.0 10.0 3363 ------- null} + -t 3.80437 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6717 -a 0 -x {9.0 10.0 3363 ------- null} h -t 3.80437 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6717 -a 0 -x {9.0 10.0 3363 ------- null} r -t 3.8048 -s 0 -d 9 -p ack -e 40 -c 0 -i 6712 -a 0 -x {10.0 9.0 3351 ------- null} + -t 3.8048 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6723 -a 0 -x {9.0 10.0 3366 ------- null} - -t 3.8048 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6723 -a 0 -x {9.0 10.0 3366 ------- null} h -t 3.8048 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6723 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.80494 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6709 -a 0 -x {9.0 10.0 3359 ------- null} - -t 3.80494 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6709 -a 0 -x {9.0 10.0 3359 ------- null} h -t 3.80494 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6709 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.80507 -s 0 -d 9 -p ack -e 40 -c 0 -i 6716 -a 0 -x {10.0 9.0 3353 ------- null} - -t 3.80507 -s 0 -d 9 -p ack -e 40 -c 0 -i 6716 -a 0 -x {10.0 9.0 3353 ------- null} h -t 3.80507 -s 0 -d 9 -p ack -e 40 -c 0 -i 6716 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.80526 -s 10 -d 7 -p ack -e 40 -c 0 -i 6720 -a 0 -x {10.0 9.0 3355 ------- null} + -t 3.80526 -s 7 -d 0 -p ack -e 40 -c 0 -i 6720 -a 0 -x {10.0 9.0 3355 ------- null} h -t 3.80526 -s 7 -d 8 -p ack -e 40 -c 0 -i 6720 -a 0 -x {10.0 9.0 3355 ------- null} r -t 3.80541 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6705 -a 0 -x {9.0 10.0 3357 ------- null} + -t 3.80541 -s 10 -d 7 -p ack -e 40 -c 0 -i 6724 -a 0 -x {10.0 9.0 3357 ------- null} - -t 3.80541 -s 10 -d 7 -p ack -e 40 -c 0 -i 6724 -a 0 -x {10.0 9.0 3357 ------- null} h -t 3.80541 -s 10 -d 7 -p ack -e 40 -c 0 -i 6724 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.80544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6719 -a 0 -x {9.0 10.0 3364 ------- null} + -t 3.80544 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6719 -a 0 -x {9.0 10.0 3364 ------- null} h -t 3.80544 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6719 -a 0 -x {9.0 10.0 3364 ------- null} r -t 3.80603 -s 0 -d 9 -p ack -e 40 -c 0 -i 6714 -a 0 -x {10.0 9.0 3352 ------- null} + -t 3.80603 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6725 -a 0 -x {9.0 10.0 3367 ------- null} - -t 3.80603 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6725 -a 0 -x {9.0 10.0 3367 ------- null} h -t 3.80603 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6725 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.80603 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6711 -a 0 -x {9.0 10.0 3360 ------- null} - -t 3.80603 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6711 -a 0 -x {9.0 10.0 3360 ------- null} h -t 3.80603 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6711 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.8061 -s 0 -d 9 -p ack -e 40 -c 0 -i 6718 -a 0 -x {10.0 9.0 3354 ------- null} - -t 3.8061 -s 0 -d 9 -p ack -e 40 -c 0 -i 6718 -a 0 -x {10.0 9.0 3354 ------- null} h -t 3.8061 -s 0 -d 9 -p ack -e 40 -c 0 -i 6718 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.80635 -s 10 -d 7 -p ack -e 40 -c 0 -i 6722 -a 0 -x {10.0 9.0 3356 ------- null} + -t 3.80635 -s 7 -d 0 -p ack -e 40 -c 0 -i 6722 -a 0 -x {10.0 9.0 3356 ------- null} h -t 3.80635 -s 7 -d 8 -p ack -e 40 -c 0 -i 6722 -a 0 -x {10.0 9.0 3356 ------- null} r -t 3.80642 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6721 -a 0 -x {9.0 10.0 3365 ------- null} + -t 3.80642 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6721 -a 0 -x {9.0 10.0 3365 ------- null} h -t 3.80642 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6721 -a 0 -x {9.0 10.0 3365 ------- null} r -t 3.8065 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6707 -a 0 -x {9.0 10.0 3358 ------- null} + -t 3.8065 -s 10 -d 7 -p ack -e 40 -c 0 -i 6726 -a 0 -x {10.0 9.0 3358 ------- null} - -t 3.8065 -s 10 -d 7 -p ack -e 40 -c 0 -i 6726 -a 0 -x {10.0 9.0 3358 ------- null} h -t 3.8065 -s 10 -d 7 -p ack -e 40 -c 0 -i 6726 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.8071 -s 0 -d 9 -p ack -e 40 -c 0 -i 6716 -a 0 -x {10.0 9.0 3353 ------- null} + -t 3.8071 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6727 -a 0 -x {9.0 10.0 3368 ------- null} - -t 3.8071 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6727 -a 0 -x {9.0 10.0 3368 ------- null} h -t 3.8071 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6727 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.80712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6713 -a 0 -x {9.0 10.0 3361 ------- null} - -t 3.80712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6713 -a 0 -x {9.0 10.0 3361 ------- null} h -t 3.80712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6713 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.8073 -s 0 -d 9 -p ack -e 40 -c 0 -i 6720 -a 0 -x {10.0 9.0 3355 ------- null} - -t 3.8073 -s 0 -d 9 -p ack -e 40 -c 0 -i 6720 -a 0 -x {10.0 9.0 3355 ------- null} h -t 3.8073 -s 0 -d 9 -p ack -e 40 -c 0 -i 6720 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.80744 -s 10 -d 7 -p ack -e 40 -c 0 -i 6724 -a 0 -x {10.0 9.0 3357 ------- null} + -t 3.80744 -s 7 -d 0 -p ack -e 40 -c 0 -i 6724 -a 0 -x {10.0 9.0 3357 ------- null} h -t 3.80744 -s 7 -d 8 -p ack -e 40 -c 0 -i 6724 -a 0 -x {10.0 9.0 3357 ------- null} r -t 3.8076 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6723 -a 0 -x {9.0 10.0 3366 ------- null} + -t 3.8076 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6723 -a 0 -x {9.0 10.0 3366 ------- null} h -t 3.8076 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6723 -a 0 -x {9.0 10.0 3366 ------- null} r -t 3.80774 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6709 -a 0 -x {9.0 10.0 3359 ------- null} + -t 3.80774 -s 10 -d 7 -p ack -e 40 -c 0 -i 6728 -a 0 -x {10.0 9.0 3359 ------- null} - -t 3.80774 -s 10 -d 7 -p ack -e 40 -c 0 -i 6728 -a 0 -x {10.0 9.0 3359 ------- null} h -t 3.80774 -s 10 -d 7 -p ack -e 40 -c 0 -i 6728 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.80813 -s 0 -d 9 -p ack -e 40 -c 0 -i 6718 -a 0 -x {10.0 9.0 3354 ------- null} + -t 3.80813 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6729 -a 0 -x {9.0 10.0 3369 ------- null} - -t 3.80813 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6729 -a 0 -x {9.0 10.0 3369 ------- null} h -t 3.80813 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6729 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.80821 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6715 -a 0 -x {9.0 10.0 3362 ------- null} - -t 3.80821 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6715 -a 0 -x {9.0 10.0 3362 ------- null} h -t 3.80821 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6715 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.80834 -s 0 -d 9 -p ack -e 40 -c 0 -i 6722 -a 0 -x {10.0 9.0 3356 ------- null} - -t 3.80834 -s 0 -d 9 -p ack -e 40 -c 0 -i 6722 -a 0 -x {10.0 9.0 3356 ------- null} h -t 3.80834 -s 0 -d 9 -p ack -e 40 -c 0 -i 6722 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.80853 -s 10 -d 7 -p ack -e 40 -c 0 -i 6726 -a 0 -x {10.0 9.0 3358 ------- null} + -t 3.80853 -s 7 -d 0 -p ack -e 40 -c 0 -i 6726 -a 0 -x {10.0 9.0 3358 ------- null} h -t 3.80853 -s 7 -d 8 -p ack -e 40 -c 0 -i 6726 -a 0 -x {10.0 9.0 3358 ------- null} r -t 3.80883 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6725 -a 0 -x {9.0 10.0 3367 ------- null} + -t 3.80883 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6725 -a 0 -x {9.0 10.0 3367 ------- null} h -t 3.80883 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6725 -a 0 -x {9.0 10.0 3367 ------- null} r -t 3.80883 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6711 -a 0 -x {9.0 10.0 3360 ------- null} + -t 3.80883 -s 10 -d 7 -p ack -e 40 -c 0 -i 6730 -a 0 -x {10.0 9.0 3360 ------- null} - -t 3.80883 -s 10 -d 7 -p ack -e 40 -c 0 -i 6730 -a 0 -x {10.0 9.0 3360 ------- null} h -t 3.80883 -s 10 -d 7 -p ack -e 40 -c 0 -i 6730 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.8093 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6717 -a 0 -x {9.0 10.0 3363 ------- null} - -t 3.8093 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6717 -a 0 -x {9.0 10.0 3363 ------- null} h -t 3.8093 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6717 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.80933 -s 0 -d 9 -p ack -e 40 -c 0 -i 6720 -a 0 -x {10.0 9.0 3355 ------- null} + -t 3.80933 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6731 -a 0 -x {9.0 10.0 3370 ------- null} - -t 3.80933 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6731 -a 0 -x {9.0 10.0 3370 ------- null} h -t 3.80933 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6731 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.80957 -s 0 -d 9 -p ack -e 40 -c 0 -i 6724 -a 0 -x {10.0 9.0 3357 ------- null} - -t 3.80957 -s 0 -d 9 -p ack -e 40 -c 0 -i 6724 -a 0 -x {10.0 9.0 3357 ------- null} h -t 3.80957 -s 0 -d 9 -p ack -e 40 -c 0 -i 6724 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.80978 -s 10 -d 7 -p ack -e 40 -c 0 -i 6728 -a 0 -x {10.0 9.0 3359 ------- null} + -t 3.80978 -s 7 -d 0 -p ack -e 40 -c 0 -i 6728 -a 0 -x {10.0 9.0 3359 ------- null} h -t 3.80978 -s 7 -d 8 -p ack -e 40 -c 0 -i 6728 -a 0 -x {10.0 9.0 3359 ------- null} r -t 3.8099 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6727 -a 0 -x {9.0 10.0 3368 ------- null} + -t 3.8099 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6727 -a 0 -x {9.0 10.0 3368 ------- null} h -t 3.8099 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6727 -a 0 -x {9.0 10.0 3368 ------- null} r -t 3.80992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6713 -a 0 -x {9.0 10.0 3361 ------- null} + -t 3.80992 -s 10 -d 7 -p ack -e 40 -c 0 -i 6732 -a 0 -x {10.0 9.0 3361 ------- null} - -t 3.80992 -s 10 -d 7 -p ack -e 40 -c 0 -i 6732 -a 0 -x {10.0 9.0 3361 ------- null} h -t 3.80992 -s 10 -d 7 -p ack -e 40 -c 0 -i 6732 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.81037 -s 0 -d 9 -p ack -e 40 -c 0 -i 6722 -a 0 -x {10.0 9.0 3356 ------- null} + -t 3.81037 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6733 -a 0 -x {9.0 10.0 3371 ------- null} - -t 3.81037 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6733 -a 0 -x {9.0 10.0 3371 ------- null} h -t 3.81037 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6733 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.8105 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6719 -a 0 -x {9.0 10.0 3364 ------- null} - -t 3.8105 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6719 -a 0 -x {9.0 10.0 3364 ------- null} h -t 3.8105 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6719 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.81069 -s 0 -d 9 -p ack -e 40 -c 0 -i 6726 -a 0 -x {10.0 9.0 3358 ------- null} - -t 3.81069 -s 0 -d 9 -p ack -e 40 -c 0 -i 6726 -a 0 -x {10.0 9.0 3358 ------- null} h -t 3.81069 -s 0 -d 9 -p ack -e 40 -c 0 -i 6726 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.81086 -s 10 -d 7 -p ack -e 40 -c 0 -i 6730 -a 0 -x {10.0 9.0 3360 ------- null} + -t 3.81086 -s 7 -d 0 -p ack -e 40 -c 0 -i 6730 -a 0 -x {10.0 9.0 3360 ------- null} h -t 3.81086 -s 7 -d 8 -p ack -e 40 -c 0 -i 6730 -a 0 -x {10.0 9.0 3360 ------- null} r -t 3.81093 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6729 -a 0 -x {9.0 10.0 3369 ------- null} + -t 3.81093 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6729 -a 0 -x {9.0 10.0 3369 ------- null} h -t 3.81093 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6729 -a 0 -x {9.0 10.0 3369 ------- null} r -t 3.81101 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6715 -a 0 -x {9.0 10.0 3362 ------- null} + -t 3.81101 -s 10 -d 7 -p ack -e 40 -c 0 -i 6734 -a 0 -x {10.0 9.0 3362 ------- null} - -t 3.81101 -s 10 -d 7 -p ack -e 40 -c 0 -i 6734 -a 0 -x {10.0 9.0 3362 ------- null} h -t 3.81101 -s 10 -d 7 -p ack -e 40 -c 0 -i 6734 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.81158 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6721 -a 0 -x {9.0 10.0 3365 ------- null} - -t 3.81158 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6721 -a 0 -x {9.0 10.0 3365 ------- null} h -t 3.81158 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6721 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.8116 -s 0 -d 9 -p ack -e 40 -c 0 -i 6724 -a 0 -x {10.0 9.0 3357 ------- null} + -t 3.8116 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6735 -a 0 -x {9.0 10.0 3372 ------- null} - -t 3.8116 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6735 -a 0 -x {9.0 10.0 3372 ------- null} h -t 3.8116 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6735 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.8117 -s 0 -d 9 -p ack -e 40 -c 0 -i 6728 -a 0 -x {10.0 9.0 3359 ------- null} - -t 3.8117 -s 0 -d 9 -p ack -e 40 -c 0 -i 6728 -a 0 -x {10.0 9.0 3359 ------- null} h -t 3.8117 -s 0 -d 9 -p ack -e 40 -c 0 -i 6728 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.81195 -s 10 -d 7 -p ack -e 40 -c 0 -i 6732 -a 0 -x {10.0 9.0 3361 ------- null} + -t 3.81195 -s 7 -d 0 -p ack -e 40 -c 0 -i 6732 -a 0 -x {10.0 9.0 3361 ------- null} h -t 3.81195 -s 7 -d 8 -p ack -e 40 -c 0 -i 6732 -a 0 -x {10.0 9.0 3361 ------- null} r -t 3.8121 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6717 -a 0 -x {9.0 10.0 3363 ------- null} + -t 3.8121 -s 10 -d 7 -p ack -e 40 -c 0 -i 6736 -a 0 -x {10.0 9.0 3363 ------- null} - -t 3.8121 -s 10 -d 7 -p ack -e 40 -c 0 -i 6736 -a 0 -x {10.0 9.0 3363 ------- null} h -t 3.8121 -s 10 -d 7 -p ack -e 40 -c 0 -i 6736 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.81213 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6731 -a 0 -x {9.0 10.0 3370 ------- null} + -t 3.81213 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6731 -a 0 -x {9.0 10.0 3370 ------- null} h -t 3.81213 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6731 -a 0 -x {9.0 10.0 3370 ------- null} + -t 3.81267 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6723 -a 0 -x {9.0 10.0 3366 ------- null} - -t 3.81267 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6723 -a 0 -x {9.0 10.0 3366 ------- null} h -t 3.81267 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6723 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.81272 -s 0 -d 9 -p ack -e 40 -c 0 -i 6726 -a 0 -x {10.0 9.0 3358 ------- null} + -t 3.81272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6737 -a 0 -x {9.0 10.0 3373 ------- null} - -t 3.81272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6737 -a 0 -x {9.0 10.0 3373 ------- null} h -t 3.81272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6737 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.81275 -s 0 -d 9 -p ack -e 40 -c 0 -i 6730 -a 0 -x {10.0 9.0 3360 ------- null} - -t 3.81275 -s 0 -d 9 -p ack -e 40 -c 0 -i 6730 -a 0 -x {10.0 9.0 3360 ------- null} h -t 3.81275 -s 0 -d 9 -p ack -e 40 -c 0 -i 6730 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.81304 -s 10 -d 7 -p ack -e 40 -c 0 -i 6734 -a 0 -x {10.0 9.0 3362 ------- null} + -t 3.81304 -s 7 -d 0 -p ack -e 40 -c 0 -i 6734 -a 0 -x {10.0 9.0 3362 ------- null} h -t 3.81304 -s 7 -d 8 -p ack -e 40 -c 0 -i 6734 -a 0 -x {10.0 9.0 3362 ------- null} r -t 3.81317 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6733 -a 0 -x {9.0 10.0 3371 ------- null} + -t 3.81317 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6733 -a 0 -x {9.0 10.0 3371 ------- null} h -t 3.81317 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6733 -a 0 -x {9.0 10.0 3371 ------- null} r -t 3.8133 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6719 -a 0 -x {9.0 10.0 3364 ------- null} + -t 3.8133 -s 10 -d 7 -p ack -e 40 -c 0 -i 6738 -a 0 -x {10.0 9.0 3364 ------- null} - -t 3.8133 -s 10 -d 7 -p ack -e 40 -c 0 -i 6738 -a 0 -x {10.0 9.0 3364 ------- null} h -t 3.8133 -s 10 -d 7 -p ack -e 40 -c 0 -i 6738 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.81373 -s 0 -d 9 -p ack -e 40 -c 0 -i 6728 -a 0 -x {10.0 9.0 3359 ------- null} + -t 3.81373 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6739 -a 0 -x {9.0 10.0 3374 ------- null} - -t 3.81373 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6739 -a 0 -x {9.0 10.0 3374 ------- null} h -t 3.81373 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6739 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.81376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6725 -a 0 -x {9.0 10.0 3367 ------- null} - -t 3.81376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6725 -a 0 -x {9.0 10.0 3367 ------- null} h -t 3.81376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6725 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.814 -s 0 -d 9 -p ack -e 40 -c 0 -i 6732 -a 0 -x {10.0 9.0 3361 ------- null} - -t 3.814 -s 0 -d 9 -p ack -e 40 -c 0 -i 6732 -a 0 -x {10.0 9.0 3361 ------- null} h -t 3.814 -s 0 -d 9 -p ack -e 40 -c 0 -i 6732 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.81413 -s 10 -d 7 -p ack -e 40 -c 0 -i 6736 -a 0 -x {10.0 9.0 3363 ------- null} + -t 3.81413 -s 7 -d 0 -p ack -e 40 -c 0 -i 6736 -a 0 -x {10.0 9.0 3363 ------- null} h -t 3.81413 -s 7 -d 8 -p ack -e 40 -c 0 -i 6736 -a 0 -x {10.0 9.0 3363 ------- null} r -t 3.81438 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6721 -a 0 -x {9.0 10.0 3365 ------- null} + -t 3.81438 -s 10 -d 7 -p ack -e 40 -c 0 -i 6740 -a 0 -x {10.0 9.0 3365 ------- null} - -t 3.81438 -s 10 -d 7 -p ack -e 40 -c 0 -i 6740 -a 0 -x {10.0 9.0 3365 ------- null} h -t 3.81438 -s 10 -d 7 -p ack -e 40 -c 0 -i 6740 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.8144 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6735 -a 0 -x {9.0 10.0 3372 ------- null} + -t 3.8144 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6735 -a 0 -x {9.0 10.0 3372 ------- null} h -t 3.8144 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6735 -a 0 -x {9.0 10.0 3372 ------- null} r -t 3.81478 -s 0 -d 9 -p ack -e 40 -c 0 -i 6730 -a 0 -x {10.0 9.0 3360 ------- null} + -t 3.81478 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6741 -a 0 -x {9.0 10.0 3375 ------- null} - -t 3.81478 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6741 -a 0 -x {9.0 10.0 3375 ------- null} h -t 3.81478 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6741 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.81485 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6727 -a 0 -x {9.0 10.0 3368 ------- null} - -t 3.81485 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6727 -a 0 -x {9.0 10.0 3368 ------- null} h -t 3.81485 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6727 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.81512 -s 0 -d 9 -p ack -e 40 -c 0 -i 6734 -a 0 -x {10.0 9.0 3362 ------- null} - -t 3.81512 -s 0 -d 9 -p ack -e 40 -c 0 -i 6734 -a 0 -x {10.0 9.0 3362 ------- null} h -t 3.81512 -s 0 -d 9 -p ack -e 40 -c 0 -i 6734 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.81533 -s 10 -d 7 -p ack -e 40 -c 0 -i 6738 -a 0 -x {10.0 9.0 3364 ------- null} + -t 3.81533 -s 7 -d 0 -p ack -e 40 -c 0 -i 6738 -a 0 -x {10.0 9.0 3364 ------- null} h -t 3.81533 -s 7 -d 8 -p ack -e 40 -c 0 -i 6738 -a 0 -x {10.0 9.0 3364 ------- null} r -t 3.81547 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6723 -a 0 -x {9.0 10.0 3366 ------- null} + -t 3.81547 -s 10 -d 7 -p ack -e 40 -c 0 -i 6742 -a 0 -x {10.0 9.0 3366 ------- null} - -t 3.81547 -s 10 -d 7 -p ack -e 40 -c 0 -i 6742 -a 0 -x {10.0 9.0 3366 ------- null} h -t 3.81547 -s 10 -d 7 -p ack -e 40 -c 0 -i 6742 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.81552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6737 -a 0 -x {9.0 10.0 3373 ------- null} + -t 3.81552 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6737 -a 0 -x {9.0 10.0 3373 ------- null} h -t 3.81552 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6737 -a 0 -x {9.0 10.0 3373 ------- null} r -t 3.81603 -s 0 -d 9 -p ack -e 40 -c 0 -i 6732 -a 0 -x {10.0 9.0 3361 ------- null} + -t 3.81603 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6743 -a 0 -x {9.0 10.0 3376 ------- null} - -t 3.81603 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6743 -a 0 -x {9.0 10.0 3376 ------- null} h -t 3.81603 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6743 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.81603 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6729 -a 0 -x {9.0 10.0 3369 ------- null} - -t 3.81603 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6729 -a 0 -x {9.0 10.0 3369 ------- null} h -t 3.81603 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6729 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.81624 -s 0 -d 9 -p ack -e 40 -c 0 -i 6736 -a 0 -x {10.0 9.0 3363 ------- null} - -t 3.81624 -s 0 -d 9 -p ack -e 40 -c 0 -i 6736 -a 0 -x {10.0 9.0 3363 ------- null} h -t 3.81624 -s 0 -d 9 -p ack -e 40 -c 0 -i 6736 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.81642 -s 10 -d 7 -p ack -e 40 -c 0 -i 6740 -a 0 -x {10.0 9.0 3365 ------- null} + -t 3.81642 -s 7 -d 0 -p ack -e 40 -c 0 -i 6740 -a 0 -x {10.0 9.0 3365 ------- null} h -t 3.81642 -s 7 -d 8 -p ack -e 40 -c 0 -i 6740 -a 0 -x {10.0 9.0 3365 ------- null} r -t 3.81653 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6739 -a 0 -x {9.0 10.0 3374 ------- null} + -t 3.81653 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6739 -a 0 -x {9.0 10.0 3374 ------- null} h -t 3.81653 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6739 -a 0 -x {9.0 10.0 3374 ------- null} r -t 3.81656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6725 -a 0 -x {9.0 10.0 3367 ------- null} + -t 3.81656 -s 10 -d 7 -p ack -e 40 -c 0 -i 6744 -a 0 -x {10.0 9.0 3367 ------- null} - -t 3.81656 -s 10 -d 7 -p ack -e 40 -c 0 -i 6744 -a 0 -x {10.0 9.0 3367 ------- null} h -t 3.81656 -s 10 -d 7 -p ack -e 40 -c 0 -i 6744 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.81712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6731 -a 0 -x {9.0 10.0 3370 ------- null} - -t 3.81712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6731 -a 0 -x {9.0 10.0 3370 ------- null} h -t 3.81712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6731 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.81715 -s 0 -d 9 -p ack -e 40 -c 0 -i 6734 -a 0 -x {10.0 9.0 3362 ------- null} + -t 3.81715 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6745 -a 0 -x {9.0 10.0 3377 ------- null} - -t 3.81715 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6745 -a 0 -x {9.0 10.0 3377 ------- null} h -t 3.81715 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6745 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.81742 -s 0 -d 9 -p ack -e 40 -c 0 -i 6738 -a 0 -x {10.0 9.0 3364 ------- null} - -t 3.81742 -s 0 -d 9 -p ack -e 40 -c 0 -i 6738 -a 0 -x {10.0 9.0 3364 ------- null} h -t 3.81742 -s 0 -d 9 -p ack -e 40 -c 0 -i 6738 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.8175 -s 10 -d 7 -p ack -e 40 -c 0 -i 6742 -a 0 -x {10.0 9.0 3366 ------- null} + -t 3.8175 -s 7 -d 0 -p ack -e 40 -c 0 -i 6742 -a 0 -x {10.0 9.0 3366 ------- null} h -t 3.8175 -s 7 -d 8 -p ack -e 40 -c 0 -i 6742 -a 0 -x {10.0 9.0 3366 ------- null} r -t 3.81758 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6741 -a 0 -x {9.0 10.0 3375 ------- null} + -t 3.81758 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6741 -a 0 -x {9.0 10.0 3375 ------- null} h -t 3.81758 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6741 -a 0 -x {9.0 10.0 3375 ------- null} r -t 3.81765 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6727 -a 0 -x {9.0 10.0 3368 ------- null} + -t 3.81765 -s 10 -d 7 -p ack -e 40 -c 0 -i 6746 -a 0 -x {10.0 9.0 3368 ------- null} - -t 3.81765 -s 10 -d 7 -p ack -e 40 -c 0 -i 6746 -a 0 -x {10.0 9.0 3368 ------- null} h -t 3.81765 -s 10 -d 7 -p ack -e 40 -c 0 -i 6746 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.81827 -s 0 -d 9 -p ack -e 40 -c 0 -i 6736 -a 0 -x {10.0 9.0 3363 ------- null} + -t 3.81827 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6747 -a 0 -x {9.0 10.0 3378 ------- null} - -t 3.81827 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6747 -a 0 -x {9.0 10.0 3378 ------- null} h -t 3.81827 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6747 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.8185 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6733 -a 0 -x {9.0 10.0 3371 ------- null} - -t 3.8185 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6733 -a 0 -x {9.0 10.0 3371 ------- null} h -t 3.8185 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6733 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.81859 -s 10 -d 7 -p ack -e 40 -c 0 -i 6744 -a 0 -x {10.0 9.0 3367 ------- null} + -t 3.81859 -s 7 -d 0 -p ack -e 40 -c 0 -i 6744 -a 0 -x {10.0 9.0 3367 ------- null} h -t 3.81859 -s 7 -d 8 -p ack -e 40 -c 0 -i 6744 -a 0 -x {10.0 9.0 3367 ------- null} + -t 3.81869 -s 0 -d 9 -p ack -e 40 -c 0 -i 6740 -a 0 -x {10.0 9.0 3365 ------- null} - -t 3.81869 -s 0 -d 9 -p ack -e 40 -c 0 -i 6740 -a 0 -x {10.0 9.0 3365 ------- null} h -t 3.81869 -s 0 -d 9 -p ack -e 40 -c 0 -i 6740 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.81883 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6743 -a 0 -x {9.0 10.0 3376 ------- null} + -t 3.81883 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6743 -a 0 -x {9.0 10.0 3376 ------- null} h -t 3.81883 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6743 -a 0 -x {9.0 10.0 3376 ------- null} r -t 3.81883 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6729 -a 0 -x {9.0 10.0 3369 ------- null} + -t 3.81883 -s 10 -d 7 -p ack -e 40 -c 0 -i 6748 -a 0 -x {10.0 9.0 3369 ------- null} - -t 3.81883 -s 10 -d 7 -p ack -e 40 -c 0 -i 6748 -a 0 -x {10.0 9.0 3369 ------- null} h -t 3.81883 -s 10 -d 7 -p ack -e 40 -c 0 -i 6748 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.81946 -s 0 -d 9 -p ack -e 40 -c 0 -i 6738 -a 0 -x {10.0 9.0 3364 ------- null} + -t 3.81946 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6749 -a 0 -x {9.0 10.0 3379 ------- null} - -t 3.81946 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6749 -a 0 -x {9.0 10.0 3379 ------- null} h -t 3.81946 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6749 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.81958 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6735 -a 0 -x {9.0 10.0 3372 ------- null} - -t 3.81958 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6735 -a 0 -x {9.0 10.0 3372 ------- null} h -t 3.81958 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6735 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.81968 -s 10 -d 7 -p ack -e 40 -c 0 -i 6746 -a 0 -x {10.0 9.0 3368 ------- null} + -t 3.81968 -s 7 -d 0 -p ack -e 40 -c 0 -i 6746 -a 0 -x {10.0 9.0 3368 ------- null} h -t 3.81968 -s 7 -d 8 -p ack -e 40 -c 0 -i 6746 -a 0 -x {10.0 9.0 3368 ------- null} + -t 3.81984 -s 0 -d 9 -p ack -e 40 -c 0 -i 6742 -a 0 -x {10.0 9.0 3366 ------- null} - -t 3.81984 -s 0 -d 9 -p ack -e 40 -c 0 -i 6742 -a 0 -x {10.0 9.0 3366 ------- null} h -t 3.81984 -s 0 -d 9 -p ack -e 40 -c 0 -i 6742 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.81992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6731 -a 0 -x {9.0 10.0 3370 ------- null} + -t 3.81992 -s 10 -d 7 -p ack -e 40 -c 0 -i 6750 -a 0 -x {10.0 9.0 3370 ------- null} - -t 3.81992 -s 10 -d 7 -p ack -e 40 -c 0 -i 6750 -a 0 -x {10.0 9.0 3370 ------- null} h -t 3.81992 -s 10 -d 7 -p ack -e 40 -c 0 -i 6750 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.81995 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6745 -a 0 -x {9.0 10.0 3377 ------- null} + -t 3.81995 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6745 -a 0 -x {9.0 10.0 3377 ------- null} h -t 3.81995 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6745 -a 0 -x {9.0 10.0 3377 ------- null} r -t 3.82072 -s 0 -d 9 -p ack -e 40 -c 0 -i 6740 -a 0 -x {10.0 9.0 3365 ------- null} + -t 3.82072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6751 -a 0 -x {9.0 10.0 3380 ------- null} - -t 3.82072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6751 -a 0 -x {9.0 10.0 3380 ------- null} h -t 3.82072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6751 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.82085 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6737 -a 0 -x {9.0 10.0 3373 ------- null} - -t 3.82085 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6737 -a 0 -x {9.0 10.0 3373 ------- null} h -t 3.82085 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6737 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.82086 -s 10 -d 7 -p ack -e 40 -c 0 -i 6748 -a 0 -x {10.0 9.0 3369 ------- null} + -t 3.82086 -s 7 -d 0 -p ack -e 40 -c 0 -i 6748 -a 0 -x {10.0 9.0 3369 ------- null} h -t 3.82086 -s 7 -d 8 -p ack -e 40 -c 0 -i 6748 -a 0 -x {10.0 9.0 3369 ------- null} r -t 3.82107 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6747 -a 0 -x {9.0 10.0 3378 ------- null} + -t 3.82107 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6747 -a 0 -x {9.0 10.0 3378 ------- null} h -t 3.82107 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6747 -a 0 -x {9.0 10.0 3378 ------- null} + -t 3.82114 -s 0 -d 9 -p ack -e 40 -c 0 -i 6744 -a 0 -x {10.0 9.0 3367 ------- null} - -t 3.82114 -s 0 -d 9 -p ack -e 40 -c 0 -i 6744 -a 0 -x {10.0 9.0 3367 ------- null} h -t 3.82114 -s 0 -d 9 -p ack -e 40 -c 0 -i 6744 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.8213 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6733 -a 0 -x {9.0 10.0 3371 ------- null} + -t 3.8213 -s 10 -d 7 -p ack -e 40 -c 0 -i 6752 -a 0 -x {10.0 9.0 3371 ------- null} - -t 3.8213 -s 10 -d 7 -p ack -e 40 -c 0 -i 6752 -a 0 -x {10.0 9.0 3371 ------- null} h -t 3.8213 -s 10 -d 7 -p ack -e 40 -c 0 -i 6752 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.82187 -s 0 -d 9 -p ack -e 40 -c 0 -i 6742 -a 0 -x {10.0 9.0 3366 ------- null} + -t 3.82187 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6753 -a 0 -x {9.0 10.0 3381 ------- null} - -t 3.82187 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6753 -a 0 -x {9.0 10.0 3381 ------- null} h -t 3.82187 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6753 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.82195 -s 10 -d 7 -p ack -e 40 -c 0 -i 6750 -a 0 -x {10.0 9.0 3370 ------- null} + -t 3.82195 -s 7 -d 0 -p ack -e 40 -c 0 -i 6750 -a 0 -x {10.0 9.0 3370 ------- null} h -t 3.82195 -s 7 -d 8 -p ack -e 40 -c 0 -i 6750 -a 0 -x {10.0 9.0 3370 ------- null} + -t 3.8221 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6739 -a 0 -x {9.0 10.0 3374 ------- null} - -t 3.8221 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6739 -a 0 -x {9.0 10.0 3374 ------- null} h -t 3.8221 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6739 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.82224 -s 0 -d 9 -p ack -e 40 -c 0 -i 6746 -a 0 -x {10.0 9.0 3368 ------- null} - -t 3.82224 -s 0 -d 9 -p ack -e 40 -c 0 -i 6746 -a 0 -x {10.0 9.0 3368 ------- null} h -t 3.82224 -s 0 -d 9 -p ack -e 40 -c 0 -i 6746 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.82226 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6749 -a 0 -x {9.0 10.0 3379 ------- null} + -t 3.82226 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6749 -a 0 -x {9.0 10.0 3379 ------- null} h -t 3.82226 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6749 -a 0 -x {9.0 10.0 3379 ------- null} r -t 3.82238 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6735 -a 0 -x {9.0 10.0 3372 ------- null} + -t 3.82238 -s 10 -d 7 -p ack -e 40 -c 0 -i 6754 -a 0 -x {10.0 9.0 3372 ------- null} - -t 3.82238 -s 10 -d 7 -p ack -e 40 -c 0 -i 6754 -a 0 -x {10.0 9.0 3372 ------- null} h -t 3.82238 -s 10 -d 7 -p ack -e 40 -c 0 -i 6754 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.82317 -s 0 -d 9 -p ack -e 40 -c 0 -i 6744 -a 0 -x {10.0 9.0 3367 ------- null} + -t 3.82317 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6755 -a 0 -x {9.0 10.0 3382 ------- null} - -t 3.82317 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6755 -a 0 -x {9.0 10.0 3382 ------- null} h -t 3.82317 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6755 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.82318 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6741 -a 0 -x {9.0 10.0 3375 ------- null} - -t 3.82318 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6741 -a 0 -x {9.0 10.0 3375 ------- null} h -t 3.82318 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6741 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.82333 -s 10 -d 7 -p ack -e 40 -c 0 -i 6752 -a 0 -x {10.0 9.0 3371 ------- null} + -t 3.82333 -s 7 -d 0 -p ack -e 40 -c 0 -i 6752 -a 0 -x {10.0 9.0 3371 ------- null} h -t 3.82333 -s 7 -d 8 -p ack -e 40 -c 0 -i 6752 -a 0 -x {10.0 9.0 3371 ------- null} + -t 3.82349 -s 0 -d 9 -p ack -e 40 -c 0 -i 6748 -a 0 -x {10.0 9.0 3369 ------- null} - -t 3.82349 -s 0 -d 9 -p ack -e 40 -c 0 -i 6748 -a 0 -x {10.0 9.0 3369 ------- null} h -t 3.82349 -s 0 -d 9 -p ack -e 40 -c 0 -i 6748 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.82352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6751 -a 0 -x {9.0 10.0 3380 ------- null} + -t 3.82352 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6751 -a 0 -x {9.0 10.0 3380 ------- null} h -t 3.82352 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6751 -a 0 -x {9.0 10.0 3380 ------- null} r -t 3.82365 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6737 -a 0 -x {9.0 10.0 3373 ------- null} + -t 3.82365 -s 10 -d 7 -p ack -e 40 -c 0 -i 6756 -a 0 -x {10.0 9.0 3373 ------- null} - -t 3.82365 -s 10 -d 7 -p ack -e 40 -c 0 -i 6756 -a 0 -x {10.0 9.0 3373 ------- null} h -t 3.82365 -s 10 -d 7 -p ack -e 40 -c 0 -i 6756 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.82427 -s 0 -d 9 -p ack -e 40 -c 0 -i 6746 -a 0 -x {10.0 9.0 3368 ------- null} + -t 3.82427 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6757 -a 0 -x {9.0 10.0 3383 ------- null} - -t 3.82427 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6757 -a 0 -x {9.0 10.0 3383 ------- null} h -t 3.82427 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6757 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.82442 -s 10 -d 7 -p ack -e 40 -c 0 -i 6754 -a 0 -x {10.0 9.0 3372 ------- null} + -t 3.82442 -s 7 -d 0 -p ack -e 40 -c 0 -i 6754 -a 0 -x {10.0 9.0 3372 ------- null} h -t 3.82442 -s 7 -d 8 -p ack -e 40 -c 0 -i 6754 -a 0 -x {10.0 9.0 3372 ------- null} + -t 3.8245 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6743 -a 0 -x {9.0 10.0 3376 ------- null} - -t 3.8245 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6743 -a 0 -x {9.0 10.0 3376 ------- null} h -t 3.8245 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6743 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.82462 -s 0 -d 9 -p ack -e 40 -c 0 -i 6750 -a 0 -x {10.0 9.0 3370 ------- null} - -t 3.82462 -s 0 -d 9 -p ack -e 40 -c 0 -i 6750 -a 0 -x {10.0 9.0 3370 ------- null} h -t 3.82462 -s 0 -d 9 -p ack -e 40 -c 0 -i 6750 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.82467 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6753 -a 0 -x {9.0 10.0 3381 ------- null} + -t 3.82467 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6753 -a 0 -x {9.0 10.0 3381 ------- null} h -t 3.82467 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6753 -a 0 -x {9.0 10.0 3381 ------- null} r -t 3.8249 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6739 -a 0 -x {9.0 10.0 3374 ------- null} + -t 3.8249 -s 10 -d 7 -p ack -e 40 -c 0 -i 6758 -a 0 -x {10.0 9.0 3374 ------- null} - -t 3.8249 -s 10 -d 7 -p ack -e 40 -c 0 -i 6758 -a 0 -x {10.0 9.0 3374 ------- null} h -t 3.8249 -s 10 -d 7 -p ack -e 40 -c 0 -i 6758 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.82552 -s 0 -d 9 -p ack -e 40 -c 0 -i 6748 -a 0 -x {10.0 9.0 3369 ------- null} + -t 3.82552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6759 -a 0 -x {9.0 10.0 3384 ------- null} - -t 3.82552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6759 -a 0 -x {9.0 10.0 3384 ------- null} h -t 3.82552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6759 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.82558 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6745 -a 0 -x {9.0 10.0 3377 ------- null} - -t 3.82558 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6745 -a 0 -x {9.0 10.0 3377 ------- null} h -t 3.82558 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6745 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.82568 -s 10 -d 7 -p ack -e 40 -c 0 -i 6756 -a 0 -x {10.0 9.0 3373 ------- null} + -t 3.82568 -s 7 -d 0 -p ack -e 40 -c 0 -i 6756 -a 0 -x {10.0 9.0 3373 ------- null} h -t 3.82568 -s 7 -d 8 -p ack -e 40 -c 0 -i 6756 -a 0 -x {10.0 9.0 3373 ------- null} + -t 3.82582 -s 0 -d 9 -p ack -e 40 -c 0 -i 6752 -a 0 -x {10.0 9.0 3371 ------- null} - -t 3.82582 -s 0 -d 9 -p ack -e 40 -c 0 -i 6752 -a 0 -x {10.0 9.0 3371 ------- null} h -t 3.82582 -s 0 -d 9 -p ack -e 40 -c 0 -i 6752 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.82597 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6755 -a 0 -x {9.0 10.0 3382 ------- null} + -t 3.82597 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6755 -a 0 -x {9.0 10.0 3382 ------- null} h -t 3.82597 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6755 -a 0 -x {9.0 10.0 3382 ------- null} r -t 3.82598 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6741 -a 0 -x {9.0 10.0 3375 ------- null} + -t 3.82598 -s 10 -d 7 -p ack -e 40 -c 0 -i 6760 -a 0 -x {10.0 9.0 3375 ------- null} - -t 3.82598 -s 10 -d 7 -p ack -e 40 -c 0 -i 6760 -a 0 -x {10.0 9.0 3375 ------- null} h -t 3.82598 -s 10 -d 7 -p ack -e 40 -c 0 -i 6760 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.82666 -s 0 -d 9 -p ack -e 40 -c 0 -i 6750 -a 0 -x {10.0 9.0 3370 ------- null} + -t 3.82666 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6761 -a 0 -x {9.0 10.0 3385 ------- null} - -t 3.82666 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6761 -a 0 -x {9.0 10.0 3385 ------- null} h -t 3.82666 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6761 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.82667 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6747 -a 0 -x {9.0 10.0 3378 ------- null} - -t 3.82667 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6747 -a 0 -x {9.0 10.0 3378 ------- null} h -t 3.82667 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6747 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.82674 -s 0 -d 9 -p ack -e 40 -c 0 -i 6754 -a 0 -x {10.0 9.0 3372 ------- null} - -t 3.82674 -s 0 -d 9 -p ack -e 40 -c 0 -i 6754 -a 0 -x {10.0 9.0 3372 ------- null} h -t 3.82674 -s 0 -d 9 -p ack -e 40 -c 0 -i 6754 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.82693 -s 10 -d 7 -p ack -e 40 -c 0 -i 6758 -a 0 -x {10.0 9.0 3374 ------- null} + -t 3.82693 -s 7 -d 0 -p ack -e 40 -c 0 -i 6758 -a 0 -x {10.0 9.0 3374 ------- null} h -t 3.82693 -s 7 -d 8 -p ack -e 40 -c 0 -i 6758 -a 0 -x {10.0 9.0 3374 ------- null} r -t 3.82707 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6757 -a 0 -x {9.0 10.0 3383 ------- null} + -t 3.82707 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6757 -a 0 -x {9.0 10.0 3383 ------- null} h -t 3.82707 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6757 -a 0 -x {9.0 10.0 3383 ------- null} r -t 3.8273 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6743 -a 0 -x {9.0 10.0 3376 ------- null} + -t 3.8273 -s 10 -d 7 -p ack -e 40 -c 0 -i 6762 -a 0 -x {10.0 9.0 3376 ------- null} - -t 3.8273 -s 10 -d 7 -p ack -e 40 -c 0 -i 6762 -a 0 -x {10.0 9.0 3376 ------- null} h -t 3.8273 -s 10 -d 7 -p ack -e 40 -c 0 -i 6762 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.82776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6749 -a 0 -x {9.0 10.0 3379 ------- null} - -t 3.82776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6749 -a 0 -x {9.0 10.0 3379 ------- null} h -t 3.82776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6749 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.82786 -s 0 -d 9 -p ack -e 40 -c 0 -i 6752 -a 0 -x {10.0 9.0 3371 ------- null} + -t 3.82786 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6763 -a 0 -x {9.0 10.0 3386 ------- null} - -t 3.82786 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6763 -a 0 -x {9.0 10.0 3386 ------- null} h -t 3.82786 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6763 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.82802 -s 10 -d 7 -p ack -e 40 -c 0 -i 6760 -a 0 -x {10.0 9.0 3375 ------- null} + -t 3.82802 -s 7 -d 0 -p ack -e 40 -c 0 -i 6760 -a 0 -x {10.0 9.0 3375 ------- null} h -t 3.82802 -s 7 -d 8 -p ack -e 40 -c 0 -i 6760 -a 0 -x {10.0 9.0 3375 ------- null} + -t 3.82803 -s 0 -d 9 -p ack -e 40 -c 0 -i 6756 -a 0 -x {10.0 9.0 3373 ------- null} - -t 3.82803 -s 0 -d 9 -p ack -e 40 -c 0 -i 6756 -a 0 -x {10.0 9.0 3373 ------- null} h -t 3.82803 -s 0 -d 9 -p ack -e 40 -c 0 -i 6756 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.82832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6759 -a 0 -x {9.0 10.0 3384 ------- null} + -t 3.82832 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6759 -a 0 -x {9.0 10.0 3384 ------- null} h -t 3.82832 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6759 -a 0 -x {9.0 10.0 3384 ------- null} r -t 3.82838 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6745 -a 0 -x {9.0 10.0 3377 ------- null} + -t 3.82838 -s 10 -d 7 -p ack -e 40 -c 0 -i 6764 -a 0 -x {10.0 9.0 3377 ------- null} - -t 3.82838 -s 10 -d 7 -p ack -e 40 -c 0 -i 6764 -a 0 -x {10.0 9.0 3377 ------- null} h -t 3.82838 -s 10 -d 7 -p ack -e 40 -c 0 -i 6764 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.82877 -s 0 -d 9 -p ack -e 40 -c 0 -i 6754 -a 0 -x {10.0 9.0 3372 ------- null} + -t 3.82877 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6765 -a 0 -x {9.0 10.0 3387 ------- null} - -t 3.82877 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6765 -a 0 -x {9.0 10.0 3387 ------- null} h -t 3.82877 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6765 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.82896 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6751 -a 0 -x {9.0 10.0 3380 ------- null} - -t 3.82896 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6751 -a 0 -x {9.0 10.0 3380 ------- null} h -t 3.82896 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6751 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.82917 -s 0 -d 9 -p ack -e 40 -c 0 -i 6758 -a 0 -x {10.0 9.0 3374 ------- null} - -t 3.82917 -s 0 -d 9 -p ack -e 40 -c 0 -i 6758 -a 0 -x {10.0 9.0 3374 ------- null} h -t 3.82917 -s 0 -d 9 -p ack -e 40 -c 0 -i 6758 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.82933 -s 10 -d 7 -p ack -e 40 -c 0 -i 6762 -a 0 -x {10.0 9.0 3376 ------- null} + -t 3.82933 -s 7 -d 0 -p ack -e 40 -c 0 -i 6762 -a 0 -x {10.0 9.0 3376 ------- null} h -t 3.82933 -s 7 -d 8 -p ack -e 40 -c 0 -i 6762 -a 0 -x {10.0 9.0 3376 ------- null} r -t 3.82946 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6761 -a 0 -x {9.0 10.0 3385 ------- null} + -t 3.82946 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6761 -a 0 -x {9.0 10.0 3385 ------- null} h -t 3.82946 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6761 -a 0 -x {9.0 10.0 3385 ------- null} r -t 3.82947 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6747 -a 0 -x {9.0 10.0 3378 ------- null} + -t 3.82947 -s 10 -d 7 -p ack -e 40 -c 0 -i 6766 -a 0 -x {10.0 9.0 3378 ------- null} - -t 3.82947 -s 10 -d 7 -p ack -e 40 -c 0 -i 6766 -a 0 -x {10.0 9.0 3378 ------- null} h -t 3.82947 -s 10 -d 7 -p ack -e 40 -c 0 -i 6766 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.83005 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6753 -a 0 -x {9.0 10.0 3381 ------- null} - -t 3.83005 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6753 -a 0 -x {9.0 10.0 3381 ------- null} h -t 3.83005 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6753 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.83006 -s 0 -d 9 -p ack -e 40 -c 0 -i 6756 -a 0 -x {10.0 9.0 3373 ------- null} + -t 3.83006 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6767 -a 0 -x {9.0 10.0 3388 ------- null} - -t 3.83006 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6767 -a 0 -x {9.0 10.0 3388 ------- null} h -t 3.83006 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6767 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.83026 -s 0 -d 9 -p ack -e 40 -c 0 -i 6760 -a 0 -x {10.0 9.0 3375 ------- null} - -t 3.83026 -s 0 -d 9 -p ack -e 40 -c 0 -i 6760 -a 0 -x {10.0 9.0 3375 ------- null} h -t 3.83026 -s 0 -d 9 -p ack -e 40 -c 0 -i 6760 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.83042 -s 10 -d 7 -p ack -e 40 -c 0 -i 6764 -a 0 -x {10.0 9.0 3377 ------- null} + -t 3.83042 -s 7 -d 0 -p ack -e 40 -c 0 -i 6764 -a 0 -x {10.0 9.0 3377 ------- null} h -t 3.83042 -s 7 -d 8 -p ack -e 40 -c 0 -i 6764 -a 0 -x {10.0 9.0 3377 ------- null} r -t 3.83056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6749 -a 0 -x {9.0 10.0 3379 ------- null} + -t 3.83056 -s 10 -d 7 -p ack -e 40 -c 0 -i 6768 -a 0 -x {10.0 9.0 3379 ------- null} - -t 3.83056 -s 10 -d 7 -p ack -e 40 -c 0 -i 6768 -a 0 -x {10.0 9.0 3379 ------- null} h -t 3.83056 -s 10 -d 7 -p ack -e 40 -c 0 -i 6768 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.83066 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6763 -a 0 -x {9.0 10.0 3386 ------- null} + -t 3.83066 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6763 -a 0 -x {9.0 10.0 3386 ------- null} h -t 3.83066 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6763 -a 0 -x {9.0 10.0 3386 ------- null} + -t 3.83114 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6755 -a 0 -x {9.0 10.0 3382 ------- null} - -t 3.83114 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6755 -a 0 -x {9.0 10.0 3382 ------- null} h -t 3.83114 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6755 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.8312 -s 0 -d 9 -p ack -e 40 -c 0 -i 6762 -a 0 -x {10.0 9.0 3376 ------- null} - -t 3.8312 -s 0 -d 9 -p ack -e 40 -c 0 -i 6762 -a 0 -x {10.0 9.0 3376 ------- null} h -t 3.8312 -s 0 -d 9 -p ack -e 40 -c 0 -i 6762 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.8312 -s 0 -d 9 -p ack -e 40 -c 0 -i 6758 -a 0 -x {10.0 9.0 3374 ------- null} + -t 3.8312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6769 -a 0 -x {9.0 10.0 3389 ------- null} - -t 3.8312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6769 -a 0 -x {9.0 10.0 3389 ------- null} h -t 3.8312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6769 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.8315 -s 10 -d 7 -p ack -e 40 -c 0 -i 6766 -a 0 -x {10.0 9.0 3378 ------- null} + -t 3.8315 -s 7 -d 0 -p ack -e 40 -c 0 -i 6766 -a 0 -x {10.0 9.0 3378 ------- null} h -t 3.8315 -s 7 -d 8 -p ack -e 40 -c 0 -i 6766 -a 0 -x {10.0 9.0 3378 ------- null} r -t 3.83157 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6765 -a 0 -x {9.0 10.0 3387 ------- null} + -t 3.83157 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6765 -a 0 -x {9.0 10.0 3387 ------- null} h -t 3.83157 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6765 -a 0 -x {9.0 10.0 3387 ------- null} r -t 3.83176 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6751 -a 0 -x {9.0 10.0 3380 ------- null} + -t 3.83176 -s 10 -d 7 -p ack -e 40 -c 0 -i 6770 -a 0 -x {10.0 9.0 3380 ------- null} - -t 3.83176 -s 10 -d 7 -p ack -e 40 -c 0 -i 6770 -a 0 -x {10.0 9.0 3380 ------- null} h -t 3.83176 -s 10 -d 7 -p ack -e 40 -c 0 -i 6770 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.83222 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6757 -a 0 -x {9.0 10.0 3383 ------- null} - -t 3.83222 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6757 -a 0 -x {9.0 10.0 3383 ------- null} h -t 3.83222 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6757 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.83229 -s 0 -d 9 -p ack -e 40 -c 0 -i 6760 -a 0 -x {10.0 9.0 3375 ------- null} + -t 3.83229 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6771 -a 0 -x {9.0 10.0 3390 ------- null} - -t 3.83229 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6771 -a 0 -x {9.0 10.0 3390 ------- null} h -t 3.83229 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6771 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.83234 -s 0 -d 9 -p ack -e 40 -c 0 -i 6764 -a 0 -x {10.0 9.0 3377 ------- null} - -t 3.83234 -s 0 -d 9 -p ack -e 40 -c 0 -i 6764 -a 0 -x {10.0 9.0 3377 ------- null} h -t 3.83234 -s 0 -d 9 -p ack -e 40 -c 0 -i 6764 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.83259 -s 10 -d 7 -p ack -e 40 -c 0 -i 6768 -a 0 -x {10.0 9.0 3379 ------- null} + -t 3.83259 -s 7 -d 0 -p ack -e 40 -c 0 -i 6768 -a 0 -x {10.0 9.0 3379 ------- null} h -t 3.83259 -s 7 -d 8 -p ack -e 40 -c 0 -i 6768 -a 0 -x {10.0 9.0 3379 ------- null} r -t 3.83285 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6753 -a 0 -x {9.0 10.0 3381 ------- null} + -t 3.83285 -s 10 -d 7 -p ack -e 40 -c 0 -i 6772 -a 0 -x {10.0 9.0 3381 ------- null} - -t 3.83285 -s 10 -d 7 -p ack -e 40 -c 0 -i 6772 -a 0 -x {10.0 9.0 3381 ------- null} h -t 3.83285 -s 10 -d 7 -p ack -e 40 -c 0 -i 6772 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.83286 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6767 -a 0 -x {9.0 10.0 3388 ------- null} + -t 3.83286 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6767 -a 0 -x {9.0 10.0 3388 ------- null} h -t 3.83286 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6767 -a 0 -x {9.0 10.0 3388 ------- null} r -t 3.83323 -s 0 -d 9 -p ack -e 40 -c 0 -i 6762 -a 0 -x {10.0 9.0 3376 ------- null} + -t 3.83323 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6773 -a 0 -x {9.0 10.0 3391 ------- null} - -t 3.83323 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6773 -a 0 -x {9.0 10.0 3391 ------- null} h -t 3.83323 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6773 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.83331 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6759 -a 0 -x {9.0 10.0 3384 ------- null} - -t 3.83331 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6759 -a 0 -x {9.0 10.0 3384 ------- null} h -t 3.83331 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6759 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.83354 -s 0 -d 9 -p ack -e 40 -c 0 -i 6766 -a 0 -x {10.0 9.0 3378 ------- null} - -t 3.83354 -s 0 -d 9 -p ack -e 40 -c 0 -i 6766 -a 0 -x {10.0 9.0 3378 ------- null} h -t 3.83354 -s 0 -d 9 -p ack -e 40 -c 0 -i 6766 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.83379 -s 10 -d 7 -p ack -e 40 -c 0 -i 6770 -a 0 -x {10.0 9.0 3380 ------- null} + -t 3.83379 -s 7 -d 0 -p ack -e 40 -c 0 -i 6770 -a 0 -x {10.0 9.0 3380 ------- null} h -t 3.83379 -s 7 -d 8 -p ack -e 40 -c 0 -i 6770 -a 0 -x {10.0 9.0 3380 ------- null} r -t 3.83394 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6755 -a 0 -x {9.0 10.0 3382 ------- null} + -t 3.83394 -s 10 -d 7 -p ack -e 40 -c 0 -i 6774 -a 0 -x {10.0 9.0 3382 ------- null} - -t 3.83394 -s 10 -d 7 -p ack -e 40 -c 0 -i 6774 -a 0 -x {10.0 9.0 3382 ------- null} h -t 3.83394 -s 10 -d 7 -p ack -e 40 -c 0 -i 6774 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.834 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6769 -a 0 -x {9.0 10.0 3389 ------- null} + -t 3.834 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6769 -a 0 -x {9.0 10.0 3389 ------- null} h -t 3.834 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6769 -a 0 -x {9.0 10.0 3389 ------- null} r -t 3.83437 -s 0 -d 9 -p ack -e 40 -c 0 -i 6764 -a 0 -x {10.0 9.0 3377 ------- null} + -t 3.83437 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6775 -a 0 -x {9.0 10.0 3392 ------- null} - -t 3.83437 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6775 -a 0 -x {9.0 10.0 3392 ------- null} h -t 3.83437 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6775 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.8344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6761 -a 0 -x {9.0 10.0 3385 ------- null} - -t 3.8344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6761 -a 0 -x {9.0 10.0 3385 ------- null} h -t 3.8344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6761 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.83451 -s 0 -d 9 -p ack -e 40 -c 0 -i 6768 -a 0 -x {10.0 9.0 3379 ------- null} - -t 3.83451 -s 0 -d 9 -p ack -e 40 -c 0 -i 6768 -a 0 -x {10.0 9.0 3379 ------- null} h -t 3.83451 -s 0 -d 9 -p ack -e 40 -c 0 -i 6768 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.83488 -s 10 -d 7 -p ack -e 40 -c 0 -i 6772 -a 0 -x {10.0 9.0 3381 ------- null} + -t 3.83488 -s 7 -d 0 -p ack -e 40 -c 0 -i 6772 -a 0 -x {10.0 9.0 3381 ------- null} h -t 3.83488 -s 7 -d 8 -p ack -e 40 -c 0 -i 6772 -a 0 -x {10.0 9.0 3381 ------- null} r -t 3.83502 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6757 -a 0 -x {9.0 10.0 3383 ------- null} + -t 3.83502 -s 10 -d 7 -p ack -e 40 -c 0 -i 6776 -a 0 -x {10.0 9.0 3383 ------- null} - -t 3.83502 -s 10 -d 7 -p ack -e 40 -c 0 -i 6776 -a 0 -x {10.0 9.0 3383 ------- null} h -t 3.83502 -s 10 -d 7 -p ack -e 40 -c 0 -i 6776 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.83509 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6771 -a 0 -x {9.0 10.0 3390 ------- null} + -t 3.83509 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6771 -a 0 -x {9.0 10.0 3390 ------- null} h -t 3.83509 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6771 -a 0 -x {9.0 10.0 3390 ------- null} + -t 3.83549 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6763 -a 0 -x {9.0 10.0 3386 ------- null} - -t 3.83549 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6763 -a 0 -x {9.0 10.0 3386 ------- null} h -t 3.83549 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6763 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.83557 -s 0 -d 9 -p ack -e 40 -c 0 -i 6766 -a 0 -x {10.0 9.0 3378 ------- null} + -t 3.83557 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6777 -a 0 -x {9.0 10.0 3393 ------- null} - -t 3.83557 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6777 -a 0 -x {9.0 10.0 3393 ------- null} h -t 3.83557 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6777 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.83573 -s 0 -d 9 -p ack -e 40 -c 0 -i 6770 -a 0 -x {10.0 9.0 3380 ------- null} - -t 3.83573 -s 0 -d 9 -p ack -e 40 -c 0 -i 6770 -a 0 -x {10.0 9.0 3380 ------- null} h -t 3.83573 -s 0 -d 9 -p ack -e 40 -c 0 -i 6770 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.83597 -s 10 -d 7 -p ack -e 40 -c 0 -i 6774 -a 0 -x {10.0 9.0 3382 ------- null} + -t 3.83597 -s 7 -d 0 -p ack -e 40 -c 0 -i 6774 -a 0 -x {10.0 9.0 3382 ------- null} h -t 3.83597 -s 7 -d 8 -p ack -e 40 -c 0 -i 6774 -a 0 -x {10.0 9.0 3382 ------- null} r -t 3.83603 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6773 -a 0 -x {9.0 10.0 3391 ------- null} + -t 3.83603 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6773 -a 0 -x {9.0 10.0 3391 ------- null} h -t 3.83603 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6773 -a 0 -x {9.0 10.0 3391 ------- null} r -t 3.83611 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6759 -a 0 -x {9.0 10.0 3384 ------- null} + -t 3.83611 -s 10 -d 7 -p ack -e 40 -c 0 -i 6778 -a 0 -x {10.0 9.0 3384 ------- null} - -t 3.83611 -s 10 -d 7 -p ack -e 40 -c 0 -i 6778 -a 0 -x {10.0 9.0 3384 ------- null} h -t 3.83611 -s 10 -d 7 -p ack -e 40 -c 0 -i 6778 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.83654 -s 0 -d 9 -p ack -e 40 -c 0 -i 6768 -a 0 -x {10.0 9.0 3379 ------- null} + -t 3.83654 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6779 -a 0 -x {9.0 10.0 3394 ------- null} - -t 3.83654 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6779 -a 0 -x {9.0 10.0 3394 ------- null} h -t 3.83654 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6779 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.83658 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6765 -a 0 -x {9.0 10.0 3387 ------- null} - -t 3.83658 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6765 -a 0 -x {9.0 10.0 3387 ------- null} h -t 3.83658 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6765 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.83688 -s 0 -d 9 -p ack -e 40 -c 0 -i 6772 -a 0 -x {10.0 9.0 3381 ------- null} - -t 3.83688 -s 0 -d 9 -p ack -e 40 -c 0 -i 6772 -a 0 -x {10.0 9.0 3381 ------- null} h -t 3.83688 -s 0 -d 9 -p ack -e 40 -c 0 -i 6772 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.83706 -s 10 -d 7 -p ack -e 40 -c 0 -i 6776 -a 0 -x {10.0 9.0 3383 ------- null} + -t 3.83706 -s 7 -d 0 -p ack -e 40 -c 0 -i 6776 -a 0 -x {10.0 9.0 3383 ------- null} h -t 3.83706 -s 7 -d 8 -p ack -e 40 -c 0 -i 6776 -a 0 -x {10.0 9.0 3383 ------- null} r -t 3.83717 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6775 -a 0 -x {9.0 10.0 3392 ------- null} + -t 3.83717 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6775 -a 0 -x {9.0 10.0 3392 ------- null} h -t 3.83717 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6775 -a 0 -x {9.0 10.0 3392 ------- null} r -t 3.8372 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6761 -a 0 -x {9.0 10.0 3385 ------- null} + -t 3.8372 -s 10 -d 7 -p ack -e 40 -c 0 -i 6780 -a 0 -x {10.0 9.0 3385 ------- null} - -t 3.8372 -s 10 -d 7 -p ack -e 40 -c 0 -i 6780 -a 0 -x {10.0 9.0 3385 ------- null} h -t 3.8372 -s 10 -d 7 -p ack -e 40 -c 0 -i 6780 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.83776 -s 0 -d 9 -p ack -e 40 -c 0 -i 6770 -a 0 -x {10.0 9.0 3380 ------- null} + -t 3.83776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6781 -a 0 -x {9.0 10.0 3395 ------- null} - -t 3.83776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6781 -a 0 -x {9.0 10.0 3395 ------- null} h -t 3.83776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6781 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.83784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6767 -a 0 -x {9.0 10.0 3388 ------- null} - -t 3.83784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6767 -a 0 -x {9.0 10.0 3388 ------- null} h -t 3.83784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6767 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.83814 -s 0 -d 9 -p ack -e 40 -c 0 -i 6774 -a 0 -x {10.0 9.0 3382 ------- null} - -t 3.83814 -s 0 -d 9 -p ack -e 40 -c 0 -i 6774 -a 0 -x {10.0 9.0 3382 ------- null} h -t 3.83814 -s 0 -d 9 -p ack -e 40 -c 0 -i 6774 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.83814 -s 10 -d 7 -p ack -e 40 -c 0 -i 6778 -a 0 -x {10.0 9.0 3384 ------- null} + -t 3.83814 -s 7 -d 0 -p ack -e 40 -c 0 -i 6778 -a 0 -x {10.0 9.0 3384 ------- null} h -t 3.83814 -s 7 -d 8 -p ack -e 40 -c 0 -i 6778 -a 0 -x {10.0 9.0 3384 ------- null} r -t 3.83829 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6763 -a 0 -x {9.0 10.0 3386 ------- null} + -t 3.83829 -s 10 -d 7 -p ack -e 40 -c 0 -i 6782 -a 0 -x {10.0 9.0 3386 ------- null} - -t 3.83829 -s 10 -d 7 -p ack -e 40 -c 0 -i 6782 -a 0 -x {10.0 9.0 3386 ------- null} h -t 3.83829 -s 10 -d 7 -p ack -e 40 -c 0 -i 6782 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.83837 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6777 -a 0 -x {9.0 10.0 3393 ------- null} + -t 3.83837 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6777 -a 0 -x {9.0 10.0 3393 ------- null} h -t 3.83837 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6777 -a 0 -x {9.0 10.0 3393 ------- null} r -t 3.83891 -s 0 -d 9 -p ack -e 40 -c 0 -i 6772 -a 0 -x {10.0 9.0 3381 ------- null} + -t 3.83891 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6783 -a 0 -x {9.0 10.0 3396 ------- null} - -t 3.83891 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6783 -a 0 -x {9.0 10.0 3396 ------- null} h -t 3.83891 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6783 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.83922 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6769 -a 0 -x {9.0 10.0 3389 ------- null} - -t 3.83922 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6769 -a 0 -x {9.0 10.0 3389 ------- null} h -t 3.83922 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6769 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.83923 -s 10 -d 7 -p ack -e 40 -c 0 -i 6780 -a 0 -x {10.0 9.0 3385 ------- null} + -t 3.83923 -s 7 -d 0 -p ack -e 40 -c 0 -i 6780 -a 0 -x {10.0 9.0 3385 ------- null} h -t 3.83923 -s 7 -d 8 -p ack -e 40 -c 0 -i 6780 -a 0 -x {10.0 9.0 3385 ------- null} r -t 3.83934 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6779 -a 0 -x {9.0 10.0 3394 ------- null} + -t 3.83934 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6779 -a 0 -x {9.0 10.0 3394 ------- null} h -t 3.83934 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6779 -a 0 -x {9.0 10.0 3394 ------- null} r -t 3.83938 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6765 -a 0 -x {9.0 10.0 3387 ------- null} + -t 3.83938 -s 10 -d 7 -p ack -e 40 -c 0 -i 6784 -a 0 -x {10.0 9.0 3387 ------- null} - -t 3.83938 -s 10 -d 7 -p ack -e 40 -c 0 -i 6784 -a 0 -x {10.0 9.0 3387 ------- null} h -t 3.83938 -s 10 -d 7 -p ack -e 40 -c 0 -i 6784 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.83952 -s 0 -d 9 -p ack -e 40 -c 0 -i 6776 -a 0 -x {10.0 9.0 3383 ------- null} - -t 3.83952 -s 0 -d 9 -p ack -e 40 -c 0 -i 6776 -a 0 -x {10.0 9.0 3383 ------- null} h -t 3.83952 -s 0 -d 9 -p ack -e 40 -c 0 -i 6776 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.84018 -s 0 -d 9 -p ack -e 40 -c 0 -i 6774 -a 0 -x {10.0 9.0 3382 ------- null} + -t 3.84018 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6785 -a 0 -x {9.0 10.0 3397 ------- null} - -t 3.84018 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6785 -a 0 -x {9.0 10.0 3397 ------- null} h -t 3.84018 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6785 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.84032 -s 10 -d 7 -p ack -e 40 -c 0 -i 6782 -a 0 -x {10.0 9.0 3386 ------- null} + -t 3.84032 -s 7 -d 0 -p ack -e 40 -c 0 -i 6782 -a 0 -x {10.0 9.0 3386 ------- null} h -t 3.84032 -s 7 -d 8 -p ack -e 40 -c 0 -i 6782 -a 0 -x {10.0 9.0 3386 ------- null} r -t 3.84056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6781 -a 0 -x {9.0 10.0 3395 ------- null} + -t 3.84056 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6781 -a 0 -x {9.0 10.0 3395 ------- null} h -t 3.84056 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6781 -a 0 -x {9.0 10.0 3395 ------- null} + -t 3.84058 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6771 -a 0 -x {9.0 10.0 3390 ------- null} - -t 3.84058 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6771 -a 0 -x {9.0 10.0 3390 ------- null} h -t 3.84058 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6771 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.84064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6767 -a 0 -x {9.0 10.0 3388 ------- null} + -t 3.84064 -s 10 -d 7 -p ack -e 40 -c 0 -i 6786 -a 0 -x {10.0 9.0 3388 ------- null} - -t 3.84064 -s 10 -d 7 -p ack -e 40 -c 0 -i 6786 -a 0 -x {10.0 9.0 3388 ------- null} h -t 3.84064 -s 10 -d 7 -p ack -e 40 -c 0 -i 6786 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.84069 -s 0 -d 9 -p ack -e 40 -c 0 -i 6778 -a 0 -x {10.0 9.0 3384 ------- null} - -t 3.84069 -s 0 -d 9 -p ack -e 40 -c 0 -i 6778 -a 0 -x {10.0 9.0 3384 ------- null} h -t 3.84069 -s 0 -d 9 -p ack -e 40 -c 0 -i 6778 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.84141 -s 10 -d 7 -p ack -e 40 -c 0 -i 6784 -a 0 -x {10.0 9.0 3387 ------- null} + -t 3.84141 -s 7 -d 0 -p ack -e 40 -c 0 -i 6784 -a 0 -x {10.0 9.0 3387 ------- null} h -t 3.84141 -s 7 -d 8 -p ack -e 40 -c 0 -i 6784 -a 0 -x {10.0 9.0 3387 ------- null} r -t 3.84155 -s 0 -d 9 -p ack -e 40 -c 0 -i 6776 -a 0 -x {10.0 9.0 3383 ------- null} + -t 3.84155 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6787 -a 0 -x {9.0 10.0 3398 ------- null} - -t 3.84155 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6787 -a 0 -x {9.0 10.0 3398 ------- null} h -t 3.84155 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6787 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.84166 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6773 -a 0 -x {9.0 10.0 3391 ------- null} - -t 3.84166 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6773 -a 0 -x {9.0 10.0 3391 ------- null} h -t 3.84166 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6773 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.84171 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6783 -a 0 -x {9.0 10.0 3396 ------- null} + -t 3.84171 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6783 -a 0 -x {9.0 10.0 3396 ------- null} h -t 3.84171 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6783 -a 0 -x {9.0 10.0 3396 ------- null} + -t 3.84182 -s 0 -d 9 -p ack -e 40 -c 0 -i 6780 -a 0 -x {10.0 9.0 3385 ------- null} - -t 3.84182 -s 0 -d 9 -p ack -e 40 -c 0 -i 6780 -a 0 -x {10.0 9.0 3385 ------- null} h -t 3.84182 -s 0 -d 9 -p ack -e 40 -c 0 -i 6780 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.84202 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6769 -a 0 -x {9.0 10.0 3389 ------- null} + -t 3.84202 -s 10 -d 7 -p ack -e 40 -c 0 -i 6788 -a 0 -x {10.0 9.0 3389 ------- null} - -t 3.84202 -s 10 -d 7 -p ack -e 40 -c 0 -i 6788 -a 0 -x {10.0 9.0 3389 ------- null} h -t 3.84202 -s 10 -d 7 -p ack -e 40 -c 0 -i 6788 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.84267 -s 10 -d 7 -p ack -e 40 -c 0 -i 6786 -a 0 -x {10.0 9.0 3388 ------- null} + -t 3.84267 -s 7 -d 0 -p ack -e 40 -c 0 -i 6786 -a 0 -x {10.0 9.0 3388 ------- null} h -t 3.84267 -s 7 -d 8 -p ack -e 40 -c 0 -i 6786 -a 0 -x {10.0 9.0 3388 ------- null} r -t 3.84272 -s 0 -d 9 -p ack -e 40 -c 0 -i 6778 -a 0 -x {10.0 9.0 3384 ------- null} + -t 3.84272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6789 -a 0 -x {9.0 10.0 3399 ------- null} - -t 3.84272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6789 -a 0 -x {9.0 10.0 3399 ------- null} h -t 3.84272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6789 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.84275 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6775 -a 0 -x {9.0 10.0 3392 ------- null} - -t 3.84275 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6775 -a 0 -x {9.0 10.0 3392 ------- null} h -t 3.84275 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6775 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.84294 -s 0 -d 9 -p ack -e 40 -c 0 -i 6782 -a 0 -x {10.0 9.0 3386 ------- null} - -t 3.84294 -s 0 -d 9 -p ack -e 40 -c 0 -i 6782 -a 0 -x {10.0 9.0 3386 ------- null} h -t 3.84294 -s 0 -d 9 -p ack -e 40 -c 0 -i 6782 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.84298 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6785 -a 0 -x {9.0 10.0 3397 ------- null} + -t 3.84298 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6785 -a 0 -x {9.0 10.0 3397 ------- null} h -t 3.84298 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6785 -a 0 -x {9.0 10.0 3397 ------- null} r -t 3.84338 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6771 -a 0 -x {9.0 10.0 3390 ------- null} + -t 3.84338 -s 10 -d 7 -p ack -e 40 -c 0 -i 6790 -a 0 -x {10.0 9.0 3390 ------- null} - -t 3.84338 -s 10 -d 7 -p ack -e 40 -c 0 -i 6790 -a 0 -x {10.0 9.0 3390 ------- null} h -t 3.84338 -s 10 -d 7 -p ack -e 40 -c 0 -i 6790 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.84384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6777 -a 0 -x {9.0 10.0 3393 ------- null} - -t 3.84384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6777 -a 0 -x {9.0 10.0 3393 ------- null} h -t 3.84384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6777 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.84386 -s 0 -d 9 -p ack -e 40 -c 0 -i 6780 -a 0 -x {10.0 9.0 3385 ------- null} + -t 3.84386 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6791 -a 0 -x {9.0 10.0 3400 ------- null} - -t 3.84386 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6791 -a 0 -x {9.0 10.0 3400 ------- null} h -t 3.84386 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6791 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.84405 -s 10 -d 7 -p ack -e 40 -c 0 -i 6788 -a 0 -x {10.0 9.0 3389 ------- null} + -t 3.84405 -s 7 -d 0 -p ack -e 40 -c 0 -i 6788 -a 0 -x {10.0 9.0 3389 ------- null} h -t 3.84405 -s 7 -d 8 -p ack -e 40 -c 0 -i 6788 -a 0 -x {10.0 9.0 3389 ------- null} + -t 3.84408 -s 0 -d 9 -p ack -e 40 -c 0 -i 6784 -a 0 -x {10.0 9.0 3387 ------- null} - -t 3.84408 -s 0 -d 9 -p ack -e 40 -c 0 -i 6784 -a 0 -x {10.0 9.0 3387 ------- null} h -t 3.84408 -s 0 -d 9 -p ack -e 40 -c 0 -i 6784 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.84435 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6787 -a 0 -x {9.0 10.0 3398 ------- null} + -t 3.84435 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6787 -a 0 -x {9.0 10.0 3398 ------- null} h -t 3.84435 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6787 -a 0 -x {9.0 10.0 3398 ------- null} r -t 3.84446 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6773 -a 0 -x {9.0 10.0 3391 ------- null} + -t 3.84446 -s 10 -d 7 -p ack -e 40 -c 0 -i 6792 -a 0 -x {10.0 9.0 3391 ------- null} - -t 3.84446 -s 10 -d 7 -p ack -e 40 -c 0 -i 6792 -a 0 -x {10.0 9.0 3391 ------- null} h -t 3.84446 -s 10 -d 7 -p ack -e 40 -c 0 -i 6792 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.84493 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6779 -a 0 -x {9.0 10.0 3394 ------- null} - -t 3.84493 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6779 -a 0 -x {9.0 10.0 3394 ------- null} h -t 3.84493 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6779 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.84498 -s 0 -d 9 -p ack -e 40 -c 0 -i 6782 -a 0 -x {10.0 9.0 3386 ------- null} + -t 3.84498 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6793 -a 0 -x {9.0 10.0 3401 ------- null} - -t 3.84498 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6793 -a 0 -x {9.0 10.0 3401 ------- null} h -t 3.84498 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6793 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.8452 -s 0 -d 9 -p ack -e 40 -c 0 -i 6786 -a 0 -x {10.0 9.0 3388 ------- null} - -t 3.8452 -s 0 -d 9 -p ack -e 40 -c 0 -i 6786 -a 0 -x {10.0 9.0 3388 ------- null} h -t 3.8452 -s 0 -d 9 -p ack -e 40 -c 0 -i 6786 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.84541 -s 10 -d 7 -p ack -e 40 -c 0 -i 6790 -a 0 -x {10.0 9.0 3390 ------- null} + -t 3.84541 -s 7 -d 0 -p ack -e 40 -c 0 -i 6790 -a 0 -x {10.0 9.0 3390 ------- null} h -t 3.84541 -s 7 -d 8 -p ack -e 40 -c 0 -i 6790 -a 0 -x {10.0 9.0 3390 ------- null} r -t 3.84552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6789 -a 0 -x {9.0 10.0 3399 ------- null} + -t 3.84552 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6789 -a 0 -x {9.0 10.0 3399 ------- null} h -t 3.84552 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6789 -a 0 -x {9.0 10.0 3399 ------- null} r -t 3.84555 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6775 -a 0 -x {9.0 10.0 3392 ------- null} + -t 3.84555 -s 10 -d 7 -p ack -e 40 -c 0 -i 6794 -a 0 -x {10.0 9.0 3392 ------- null} - -t 3.84555 -s 10 -d 7 -p ack -e 40 -c 0 -i 6794 -a 0 -x {10.0 9.0 3392 ------- null} h -t 3.84555 -s 10 -d 7 -p ack -e 40 -c 0 -i 6794 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.84611 -s 0 -d 9 -p ack -e 40 -c 0 -i 6784 -a 0 -x {10.0 9.0 3387 ------- null} + -t 3.84611 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6795 -a 0 -x {9.0 10.0 3402 ------- null} - -t 3.84611 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6795 -a 0 -x {9.0 10.0 3402 ------- null} h -t 3.84611 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6795 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.84622 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6781 -a 0 -x {9.0 10.0 3395 ------- null} - -t 3.84622 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6781 -a 0 -x {9.0 10.0 3395 ------- null} h -t 3.84622 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6781 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.84642 -s 0 -d 9 -p ack -e 40 -c 0 -i 6788 -a 0 -x {10.0 9.0 3389 ------- null} - -t 3.84642 -s 0 -d 9 -p ack -e 40 -c 0 -i 6788 -a 0 -x {10.0 9.0 3389 ------- null} h -t 3.84642 -s 0 -d 9 -p ack -e 40 -c 0 -i 6788 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.8465 -s 10 -d 7 -p ack -e 40 -c 0 -i 6792 -a 0 -x {10.0 9.0 3391 ------- null} + -t 3.8465 -s 7 -d 0 -p ack -e 40 -c 0 -i 6792 -a 0 -x {10.0 9.0 3391 ------- null} h -t 3.8465 -s 7 -d 8 -p ack -e 40 -c 0 -i 6792 -a 0 -x {10.0 9.0 3391 ------- null} r -t 3.84664 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6777 -a 0 -x {9.0 10.0 3393 ------- null} + -t 3.84664 -s 10 -d 7 -p ack -e 40 -c 0 -i 6796 -a 0 -x {10.0 9.0 3393 ------- null} - -t 3.84664 -s 10 -d 7 -p ack -e 40 -c 0 -i 6796 -a 0 -x {10.0 9.0 3393 ------- null} h -t 3.84664 -s 10 -d 7 -p ack -e 40 -c 0 -i 6796 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.84666 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6791 -a 0 -x {9.0 10.0 3400 ------- null} + -t 3.84666 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6791 -a 0 -x {9.0 10.0 3400 ------- null} h -t 3.84666 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6791 -a 0 -x {9.0 10.0 3400 ------- null} r -t 3.84723 -s 0 -d 9 -p ack -e 40 -c 0 -i 6786 -a 0 -x {10.0 9.0 3388 ------- null} + -t 3.84723 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6797 -a 0 -x {9.0 10.0 3403 ------- null} - -t 3.84723 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6797 -a 0 -x {9.0 10.0 3403 ------- null} h -t 3.84723 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6797 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.84731 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6783 -a 0 -x {9.0 10.0 3396 ------- null} - -t 3.84731 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6783 -a 0 -x {9.0 10.0 3396 ------- null} h -t 3.84731 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6783 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.84738 -s 0 -d 9 -p ack -e 40 -c 0 -i 6790 -a 0 -x {10.0 9.0 3390 ------- null} - -t 3.84738 -s 0 -d 9 -p ack -e 40 -c 0 -i 6790 -a 0 -x {10.0 9.0 3390 ------- null} h -t 3.84738 -s 0 -d 9 -p ack -e 40 -c 0 -i 6790 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.84758 -s 10 -d 7 -p ack -e 40 -c 0 -i 6794 -a 0 -x {10.0 9.0 3392 ------- null} + -t 3.84758 -s 7 -d 0 -p ack -e 40 -c 0 -i 6794 -a 0 -x {10.0 9.0 3392 ------- null} h -t 3.84758 -s 7 -d 8 -p ack -e 40 -c 0 -i 6794 -a 0 -x {10.0 9.0 3392 ------- null} r -t 3.84773 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6779 -a 0 -x {9.0 10.0 3394 ------- null} + -t 3.84773 -s 10 -d 7 -p ack -e 40 -c 0 -i 6798 -a 0 -x {10.0 9.0 3394 ------- null} - -t 3.84773 -s 10 -d 7 -p ack -e 40 -c 0 -i 6798 -a 0 -x {10.0 9.0 3394 ------- null} h -t 3.84773 -s 10 -d 7 -p ack -e 40 -c 0 -i 6798 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.84778 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6793 -a 0 -x {9.0 10.0 3401 ------- null} + -t 3.84778 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6793 -a 0 -x {9.0 10.0 3401 ------- null} h -t 3.84778 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6793 -a 0 -x {9.0 10.0 3401 ------- null} + -t 3.8484 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6785 -a 0 -x {9.0 10.0 3397 ------- null} - -t 3.8484 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6785 -a 0 -x {9.0 10.0 3397 ------- null} h -t 3.8484 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6785 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.84845 -s 0 -d 9 -p ack -e 40 -c 0 -i 6788 -a 0 -x {10.0 9.0 3389 ------- null} + -t 3.84845 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6799 -a 0 -x {9.0 10.0 3404 ------- null} - -t 3.84845 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6799 -a 0 -x {9.0 10.0 3404 ------- null} h -t 3.84845 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6799 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.84848 -s 0 -d 9 -p ack -e 40 -c 0 -i 6792 -a 0 -x {10.0 9.0 3391 ------- null} - -t 3.84848 -s 0 -d 9 -p ack -e 40 -c 0 -i 6792 -a 0 -x {10.0 9.0 3391 ------- null} h -t 3.84848 -s 0 -d 9 -p ack -e 40 -c 0 -i 6792 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.84867 -s 10 -d 7 -p ack -e 40 -c 0 -i 6796 -a 0 -x {10.0 9.0 3393 ------- null} + -t 3.84867 -s 7 -d 0 -p ack -e 40 -c 0 -i 6796 -a 0 -x {10.0 9.0 3393 ------- null} h -t 3.84867 -s 7 -d 8 -p ack -e 40 -c 0 -i 6796 -a 0 -x {10.0 9.0 3393 ------- null} r -t 3.84891 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6795 -a 0 -x {9.0 10.0 3402 ------- null} + -t 3.84891 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6795 -a 0 -x {9.0 10.0 3402 ------- null} h -t 3.84891 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6795 -a 0 -x {9.0 10.0 3402 ------- null} r -t 3.84902 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6781 -a 0 -x {9.0 10.0 3395 ------- null} + -t 3.84902 -s 10 -d 7 -p ack -e 40 -c 0 -i 6800 -a 0 -x {10.0 9.0 3395 ------- null} - -t 3.84902 -s 10 -d 7 -p ack -e 40 -c 0 -i 6800 -a 0 -x {10.0 9.0 3395 ------- null} h -t 3.84902 -s 10 -d 7 -p ack -e 40 -c 0 -i 6800 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.84941 -s 0 -d 9 -p ack -e 40 -c 0 -i 6790 -a 0 -x {10.0 9.0 3390 ------- null} + -t 3.84941 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6801 -a 0 -x {9.0 10.0 3405 ------- null} - -t 3.84941 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6801 -a 0 -x {9.0 10.0 3405 ------- null} h -t 3.84941 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6801 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.84949 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6787 -a 0 -x {9.0 10.0 3398 ------- null} - -t 3.84949 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6787 -a 0 -x {9.0 10.0 3398 ------- null} h -t 3.84949 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6787 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.84968 -s 0 -d 9 -p ack -e 40 -c 0 -i 6794 -a 0 -x {10.0 9.0 3392 ------- null} - -t 3.84968 -s 0 -d 9 -p ack -e 40 -c 0 -i 6794 -a 0 -x {10.0 9.0 3392 ------- null} h -t 3.84968 -s 0 -d 9 -p ack -e 40 -c 0 -i 6794 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.84976 -s 10 -d 7 -p ack -e 40 -c 0 -i 6798 -a 0 -x {10.0 9.0 3394 ------- null} + -t 3.84976 -s 7 -d 0 -p ack -e 40 -c 0 -i 6798 -a 0 -x {10.0 9.0 3394 ------- null} h -t 3.84976 -s 7 -d 8 -p ack -e 40 -c 0 -i 6798 -a 0 -x {10.0 9.0 3394 ------- null} r -t 3.85003 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6797 -a 0 -x {9.0 10.0 3403 ------- null} + -t 3.85003 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6797 -a 0 -x {9.0 10.0 3403 ------- null} h -t 3.85003 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6797 -a 0 -x {9.0 10.0 3403 ------- null} r -t 3.85011 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6783 -a 0 -x {9.0 10.0 3396 ------- null} + -t 3.85011 -s 10 -d 7 -p ack -e 40 -c 0 -i 6802 -a 0 -x {10.0 9.0 3396 ------- null} - -t 3.85011 -s 10 -d 7 -p ack -e 40 -c 0 -i 6802 -a 0 -x {10.0 9.0 3396 ------- null} h -t 3.85011 -s 10 -d 7 -p ack -e 40 -c 0 -i 6802 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.85051 -s 0 -d 9 -p ack -e 40 -c 0 -i 6792 -a 0 -x {10.0 9.0 3391 ------- null} + -t 3.85051 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6803 -a 0 -x {9.0 10.0 3406 ------- null} - -t 3.85051 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6803 -a 0 -x {9.0 10.0 3406 ------- null} h -t 3.85051 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6803 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.85058 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6789 -a 0 -x {9.0 10.0 3399 ------- null} - -t 3.85058 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6789 -a 0 -x {9.0 10.0 3399 ------- null} h -t 3.85058 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6789 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.85075 -s 0 -d 9 -p ack -e 40 -c 0 -i 6796 -a 0 -x {10.0 9.0 3393 ------- null} - -t 3.85075 -s 0 -d 9 -p ack -e 40 -c 0 -i 6796 -a 0 -x {10.0 9.0 3393 ------- null} h -t 3.85075 -s 0 -d 9 -p ack -e 40 -c 0 -i 6796 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.85106 -s 10 -d 7 -p ack -e 40 -c 0 -i 6800 -a 0 -x {10.0 9.0 3395 ------- null} + -t 3.85106 -s 7 -d 0 -p ack -e 40 -c 0 -i 6800 -a 0 -x {10.0 9.0 3395 ------- null} h -t 3.85106 -s 7 -d 8 -p ack -e 40 -c 0 -i 6800 -a 0 -x {10.0 9.0 3395 ------- null} r -t 3.8512 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6785 -a 0 -x {9.0 10.0 3397 ------- null} + -t 3.8512 -s 10 -d 7 -p ack -e 40 -c 0 -i 6804 -a 0 -x {10.0 9.0 3397 ------- null} - -t 3.8512 -s 10 -d 7 -p ack -e 40 -c 0 -i 6804 -a 0 -x {10.0 9.0 3397 ------- null} h -t 3.8512 -s 10 -d 7 -p ack -e 40 -c 0 -i 6804 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.85125 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6799 -a 0 -x {9.0 10.0 3404 ------- null} + -t 3.85125 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6799 -a 0 -x {9.0 10.0 3404 ------- null} h -t 3.85125 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6799 -a 0 -x {9.0 10.0 3404 ------- null} + -t 3.85166 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6791 -a 0 -x {9.0 10.0 3400 ------- null} - -t 3.85166 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6791 -a 0 -x {9.0 10.0 3400 ------- null} h -t 3.85166 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6791 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.85171 -s 0 -d 9 -p ack -e 40 -c 0 -i 6794 -a 0 -x {10.0 9.0 3392 ------- null} + -t 3.85171 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6805 -a 0 -x {9.0 10.0 3407 ------- null} - -t 3.85171 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6805 -a 0 -x {9.0 10.0 3407 ------- null} h -t 3.85171 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6805 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.85195 -s 0 -d 9 -p ack -e 40 -c 0 -i 6798 -a 0 -x {10.0 9.0 3394 ------- null} - -t 3.85195 -s 0 -d 9 -p ack -e 40 -c 0 -i 6798 -a 0 -x {10.0 9.0 3394 ------- null} h -t 3.85195 -s 0 -d 9 -p ack -e 40 -c 0 -i 6798 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.85214 -s 10 -d 7 -p ack -e 40 -c 0 -i 6802 -a 0 -x {10.0 9.0 3396 ------- null} + -t 3.85214 -s 7 -d 0 -p ack -e 40 -c 0 -i 6802 -a 0 -x {10.0 9.0 3396 ------- null} h -t 3.85214 -s 7 -d 8 -p ack -e 40 -c 0 -i 6802 -a 0 -x {10.0 9.0 3396 ------- null} r -t 3.85221 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6801 -a 0 -x {9.0 10.0 3405 ------- null} + -t 3.85221 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6801 -a 0 -x {9.0 10.0 3405 ------- null} h -t 3.85221 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6801 -a 0 -x {9.0 10.0 3405 ------- null} r -t 3.85229 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6787 -a 0 -x {9.0 10.0 3398 ------- null} + -t 3.85229 -s 10 -d 7 -p ack -e 40 -c 0 -i 6806 -a 0 -x {10.0 9.0 3398 ------- null} - -t 3.85229 -s 10 -d 7 -p ack -e 40 -c 0 -i 6806 -a 0 -x {10.0 9.0 3398 ------- null} h -t 3.85229 -s 10 -d 7 -p ack -e 40 -c 0 -i 6806 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.85278 -s 0 -d 9 -p ack -e 40 -c 0 -i 6796 -a 0 -x {10.0 9.0 3393 ------- null} + -t 3.85278 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6807 -a 0 -x {9.0 10.0 3408 ------- null} - -t 3.85278 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6807 -a 0 -x {9.0 10.0 3408 ------- null} h -t 3.85278 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6807 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.85298 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6793 -a 0 -x {9.0 10.0 3401 ------- null} - -t 3.85298 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6793 -a 0 -x {9.0 10.0 3401 ------- null} h -t 3.85298 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6793 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.85314 -s 0 -d 9 -p ack -e 40 -c 0 -i 6800 -a 0 -x {10.0 9.0 3395 ------- null} - -t 3.85314 -s 0 -d 9 -p ack -e 40 -c 0 -i 6800 -a 0 -x {10.0 9.0 3395 ------- null} h -t 3.85314 -s 0 -d 9 -p ack -e 40 -c 0 -i 6800 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.85323 -s 10 -d 7 -p ack -e 40 -c 0 -i 6804 -a 0 -x {10.0 9.0 3397 ------- null} + -t 3.85323 -s 7 -d 0 -p ack -e 40 -c 0 -i 6804 -a 0 -x {10.0 9.0 3397 ------- null} h -t 3.85323 -s 7 -d 8 -p ack -e 40 -c 0 -i 6804 -a 0 -x {10.0 9.0 3397 ------- null} r -t 3.85331 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6803 -a 0 -x {9.0 10.0 3406 ------- null} + -t 3.85331 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6803 -a 0 -x {9.0 10.0 3406 ------- null} h -t 3.85331 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6803 -a 0 -x {9.0 10.0 3406 ------- null} r -t 3.85338 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6789 -a 0 -x {9.0 10.0 3399 ------- null} + -t 3.85338 -s 10 -d 7 -p ack -e 40 -c 0 -i 6808 -a 0 -x {10.0 9.0 3399 ------- null} - -t 3.85338 -s 10 -d 7 -p ack -e 40 -c 0 -i 6808 -a 0 -x {10.0 9.0 3399 ------- null} h -t 3.85338 -s 10 -d 7 -p ack -e 40 -c 0 -i 6808 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.85398 -s 0 -d 9 -p ack -e 40 -c 0 -i 6798 -a 0 -x {10.0 9.0 3394 ------- null} + -t 3.85398 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6809 -a 0 -x {9.0 10.0 3409 ------- null} - -t 3.85398 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6809 -a 0 -x {9.0 10.0 3409 ------- null} h -t 3.85398 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6809 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.85406 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6795 -a 0 -x {9.0 10.0 3402 ------- null} - -t 3.85406 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6795 -a 0 -x {9.0 10.0 3402 ------- null} h -t 3.85406 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6795 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.85413 -s 0 -d 9 -p ack -e 40 -c 0 -i 6802 -a 0 -x {10.0 9.0 3396 ------- null} - -t 3.85413 -s 0 -d 9 -p ack -e 40 -c 0 -i 6802 -a 0 -x {10.0 9.0 3396 ------- null} h -t 3.85413 -s 0 -d 9 -p ack -e 40 -c 0 -i 6802 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.85432 -s 10 -d 7 -p ack -e 40 -c 0 -i 6806 -a 0 -x {10.0 9.0 3398 ------- null} + -t 3.85432 -s 7 -d 0 -p ack -e 40 -c 0 -i 6806 -a 0 -x {10.0 9.0 3398 ------- null} h -t 3.85432 -s 7 -d 8 -p ack -e 40 -c 0 -i 6806 -a 0 -x {10.0 9.0 3398 ------- null} r -t 3.85446 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6791 -a 0 -x {9.0 10.0 3400 ------- null} + -t 3.85446 -s 10 -d 7 -p ack -e 40 -c 0 -i 6810 -a 0 -x {10.0 9.0 3400 ------- null} - -t 3.85446 -s 10 -d 7 -p ack -e 40 -c 0 -i 6810 -a 0 -x {10.0 9.0 3400 ------- null} h -t 3.85446 -s 10 -d 7 -p ack -e 40 -c 0 -i 6810 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.85451 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6805 -a 0 -x {9.0 10.0 3407 ------- null} + -t 3.85451 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6805 -a 0 -x {9.0 10.0 3407 ------- null} h -t 3.85451 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6805 -a 0 -x {9.0 10.0 3407 ------- null} + -t 3.85515 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6797 -a 0 -x {9.0 10.0 3403 ------- null} - -t 3.85515 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6797 -a 0 -x {9.0 10.0 3403 ------- null} h -t 3.85515 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6797 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.85517 -s 0 -d 9 -p ack -e 40 -c 0 -i 6800 -a 0 -x {10.0 9.0 3395 ------- null} + -t 3.85517 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6811 -a 0 -x {9.0 10.0 3410 ------- null} - -t 3.85517 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6811 -a 0 -x {9.0 10.0 3410 ------- null} h -t 3.85517 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6811 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.85541 -s 10 -d 7 -p ack -e 40 -c 0 -i 6808 -a 0 -x {10.0 9.0 3399 ------- null} + -t 3.85541 -s 7 -d 0 -p ack -e 40 -c 0 -i 6808 -a 0 -x {10.0 9.0 3399 ------- null} h -t 3.85541 -s 7 -d 8 -p ack -e 40 -c 0 -i 6808 -a 0 -x {10.0 9.0 3399 ------- null} + -t 3.85542 -s 0 -d 9 -p ack -e 40 -c 0 -i 6804 -a 0 -x {10.0 9.0 3397 ------- null} - -t 3.85542 -s 0 -d 9 -p ack -e 40 -c 0 -i 6804 -a 0 -x {10.0 9.0 3397 ------- null} h -t 3.85542 -s 0 -d 9 -p ack -e 40 -c 0 -i 6804 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.85558 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6807 -a 0 -x {9.0 10.0 3408 ------- null} + -t 3.85558 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6807 -a 0 -x {9.0 10.0 3408 ------- null} h -t 3.85558 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6807 -a 0 -x {9.0 10.0 3408 ------- null} r -t 3.85578 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6793 -a 0 -x {9.0 10.0 3401 ------- null} + -t 3.85578 -s 10 -d 7 -p ack -e 40 -c 0 -i 6812 -a 0 -x {10.0 9.0 3401 ------- null} - -t 3.85578 -s 10 -d 7 -p ack -e 40 -c 0 -i 6812 -a 0 -x {10.0 9.0 3401 ------- null} h -t 3.85578 -s 10 -d 7 -p ack -e 40 -c 0 -i 6812 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.85616 -s 0 -d 9 -p ack -e 40 -c 0 -i 6802 -a 0 -x {10.0 9.0 3396 ------- null} + -t 3.85616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6813 -a 0 -x {9.0 10.0 3411 ------- null} - -t 3.85616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6813 -a 0 -x {9.0 10.0 3411 ------- null} h -t 3.85616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6813 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.85645 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6799 -a 0 -x {9.0 10.0 3404 ------- null} - -t 3.85645 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6799 -a 0 -x {9.0 10.0 3404 ------- null} h -t 3.85645 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6799 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.8565 -s 10 -d 7 -p ack -e 40 -c 0 -i 6810 -a 0 -x {10.0 9.0 3400 ------- null} + -t 3.8565 -s 7 -d 0 -p ack -e 40 -c 0 -i 6810 -a 0 -x {10.0 9.0 3400 ------- null} h -t 3.8565 -s 7 -d 8 -p ack -e 40 -c 0 -i 6810 -a 0 -x {10.0 9.0 3400 ------- null} + -t 3.85666 -s 0 -d 9 -p ack -e 40 -c 0 -i 6806 -a 0 -x {10.0 9.0 3398 ------- null} - -t 3.85666 -s 0 -d 9 -p ack -e 40 -c 0 -i 6806 -a 0 -x {10.0 9.0 3398 ------- null} h -t 3.85666 -s 0 -d 9 -p ack -e 40 -c 0 -i 6806 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.85678 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6809 -a 0 -x {9.0 10.0 3409 ------- null} + -t 3.85678 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6809 -a 0 -x {9.0 10.0 3409 ------- null} h -t 3.85678 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6809 -a 0 -x {9.0 10.0 3409 ------- null} r -t 3.85686 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6795 -a 0 -x {9.0 10.0 3402 ------- null} + -t 3.85686 -s 10 -d 7 -p ack -e 40 -c 0 -i 6814 -a 0 -x {10.0 9.0 3402 ------- null} - -t 3.85686 -s 10 -d 7 -p ack -e 40 -c 0 -i 6814 -a 0 -x {10.0 9.0 3402 ------- null} h -t 3.85686 -s 10 -d 7 -p ack -e 40 -c 0 -i 6814 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.85746 -s 0 -d 9 -p ack -e 40 -c 0 -i 6804 -a 0 -x {10.0 9.0 3397 ------- null} + -t 3.85746 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6815 -a 0 -x {9.0 10.0 3412 ------- null} - -t 3.85746 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6815 -a 0 -x {9.0 10.0 3412 ------- null} h -t 3.85746 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6815 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.85754 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6801 -a 0 -x {9.0 10.0 3405 ------- null} - -t 3.85754 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6801 -a 0 -x {9.0 10.0 3405 ------- null} h -t 3.85754 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6801 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.85778 -s 0 -d 9 -p ack -e 40 -c 0 -i 6808 -a 0 -x {10.0 9.0 3399 ------- null} - -t 3.85778 -s 0 -d 9 -p ack -e 40 -c 0 -i 6808 -a 0 -x {10.0 9.0 3399 ------- null} h -t 3.85778 -s 0 -d 9 -p ack -e 40 -c 0 -i 6808 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.85781 -s 10 -d 7 -p ack -e 40 -c 0 -i 6812 -a 0 -x {10.0 9.0 3401 ------- null} + -t 3.85781 -s 7 -d 0 -p ack -e 40 -c 0 -i 6812 -a 0 -x {10.0 9.0 3401 ------- null} h -t 3.85781 -s 7 -d 8 -p ack -e 40 -c 0 -i 6812 -a 0 -x {10.0 9.0 3401 ------- null} r -t 3.85795 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6797 -a 0 -x {9.0 10.0 3403 ------- null} + -t 3.85795 -s 10 -d 7 -p ack -e 40 -c 0 -i 6816 -a 0 -x {10.0 9.0 3403 ------- null} - -t 3.85795 -s 10 -d 7 -p ack -e 40 -c 0 -i 6816 -a 0 -x {10.0 9.0 3403 ------- null} h -t 3.85795 -s 10 -d 7 -p ack -e 40 -c 0 -i 6816 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.85797 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6811 -a 0 -x {9.0 10.0 3410 ------- null} + -t 3.85797 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6811 -a 0 -x {9.0 10.0 3410 ------- null} h -t 3.85797 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6811 -a 0 -x {9.0 10.0 3410 ------- null} + -t 3.85862 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6803 -a 0 -x {9.0 10.0 3406 ------- null} - -t 3.85862 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6803 -a 0 -x {9.0 10.0 3406 ------- null} h -t 3.85862 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6803 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.85869 -s 0 -d 9 -p ack -e 40 -c 0 -i 6806 -a 0 -x {10.0 9.0 3398 ------- null} + -t 3.85869 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6817 -a 0 -x {9.0 10.0 3413 ------- null} - -t 3.85869 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6817 -a 0 -x {9.0 10.0 3413 ------- null} h -t 3.85869 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6817 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.8587 -s 0 -d 9 -p ack -e 40 -c 0 -i 6810 -a 0 -x {10.0 9.0 3400 ------- null} - -t 3.8587 -s 0 -d 9 -p ack -e 40 -c 0 -i 6810 -a 0 -x {10.0 9.0 3400 ------- null} h -t 3.8587 -s 0 -d 9 -p ack -e 40 -c 0 -i 6810 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.8589 -s 10 -d 7 -p ack -e 40 -c 0 -i 6814 -a 0 -x {10.0 9.0 3402 ------- null} + -t 3.8589 -s 7 -d 0 -p ack -e 40 -c 0 -i 6814 -a 0 -x {10.0 9.0 3402 ------- null} h -t 3.8589 -s 7 -d 8 -p ack -e 40 -c 0 -i 6814 -a 0 -x {10.0 9.0 3402 ------- null} r -t 3.85896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6813 -a 0 -x {9.0 10.0 3411 ------- null} + -t 3.85896 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6813 -a 0 -x {9.0 10.0 3411 ------- null} h -t 3.85896 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6813 -a 0 -x {9.0 10.0 3411 ------- null} r -t 3.85925 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6799 -a 0 -x {9.0 10.0 3404 ------- null} + -t 3.85925 -s 10 -d 7 -p ack -e 40 -c 0 -i 6818 -a 0 -x {10.0 9.0 3404 ------- null} - -t 3.85925 -s 10 -d 7 -p ack -e 40 -c 0 -i 6818 -a 0 -x {10.0 9.0 3404 ------- null} h -t 3.85925 -s 10 -d 7 -p ack -e 40 -c 0 -i 6818 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.85971 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6805 -a 0 -x {9.0 10.0 3407 ------- null} - -t 3.85971 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6805 -a 0 -x {9.0 10.0 3407 ------- null} h -t 3.85971 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6805 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.85981 -s 0 -d 9 -p ack -e 40 -c 0 -i 6808 -a 0 -x {10.0 9.0 3399 ------- null} + -t 3.85981 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6819 -a 0 -x {9.0 10.0 3414 ------- null} - -t 3.85981 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6819 -a 0 -x {9.0 10.0 3414 ------- null} h -t 3.85981 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6819 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.85997 -s 0 -d 9 -p ack -e 40 -c 0 -i 6812 -a 0 -x {10.0 9.0 3401 ------- null} - -t 3.85997 -s 0 -d 9 -p ack -e 40 -c 0 -i 6812 -a 0 -x {10.0 9.0 3401 ------- null} h -t 3.85997 -s 0 -d 9 -p ack -e 40 -c 0 -i 6812 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.85998 -s 10 -d 7 -p ack -e 40 -c 0 -i 6816 -a 0 -x {10.0 9.0 3403 ------- null} + -t 3.85998 -s 7 -d 0 -p ack -e 40 -c 0 -i 6816 -a 0 -x {10.0 9.0 3403 ------- null} h -t 3.85998 -s 7 -d 8 -p ack -e 40 -c 0 -i 6816 -a 0 -x {10.0 9.0 3403 ------- null} r -t 3.86026 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6815 -a 0 -x {9.0 10.0 3412 ------- null} + -t 3.86026 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6815 -a 0 -x {9.0 10.0 3412 ------- null} h -t 3.86026 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6815 -a 0 -x {9.0 10.0 3412 ------- null} r -t 3.86034 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6801 -a 0 -x {9.0 10.0 3405 ------- null} + -t 3.86034 -s 10 -d 7 -p ack -e 40 -c 0 -i 6820 -a 0 -x {10.0 9.0 3405 ------- null} - -t 3.86034 -s 10 -d 7 -p ack -e 40 -c 0 -i 6820 -a 0 -x {10.0 9.0 3405 ------- null} h -t 3.86034 -s 10 -d 7 -p ack -e 40 -c 0 -i 6820 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.86074 -s 0 -d 9 -p ack -e 40 -c 0 -i 6810 -a 0 -x {10.0 9.0 3400 ------- null} + -t 3.86074 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6821 -a 0 -x {9.0 10.0 3415 ------- null} - -t 3.86074 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6821 -a 0 -x {9.0 10.0 3415 ------- null} h -t 3.86074 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6821 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.86102 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6807 -a 0 -x {9.0 10.0 3408 ------- null} - -t 3.86102 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6807 -a 0 -x {9.0 10.0 3408 ------- null} h -t 3.86102 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6807 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.86114 -s 0 -d 9 -p ack -e 40 -c 0 -i 6814 -a 0 -x {10.0 9.0 3402 ------- null} - -t 3.86114 -s 0 -d 9 -p ack -e 40 -c 0 -i 6814 -a 0 -x {10.0 9.0 3402 ------- null} h -t 3.86114 -s 0 -d 9 -p ack -e 40 -c 0 -i 6814 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.86128 -s 10 -d 7 -p ack -e 40 -c 0 -i 6818 -a 0 -x {10.0 9.0 3404 ------- null} + -t 3.86128 -s 7 -d 0 -p ack -e 40 -c 0 -i 6818 -a 0 -x {10.0 9.0 3404 ------- null} h -t 3.86128 -s 7 -d 8 -p ack -e 40 -c 0 -i 6818 -a 0 -x {10.0 9.0 3404 ------- null} r -t 3.86142 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6803 -a 0 -x {9.0 10.0 3406 ------- null} + -t 3.86142 -s 10 -d 7 -p ack -e 40 -c 0 -i 6822 -a 0 -x {10.0 9.0 3406 ------- null} - -t 3.86142 -s 10 -d 7 -p ack -e 40 -c 0 -i 6822 -a 0 -x {10.0 9.0 3406 ------- null} h -t 3.86142 -s 10 -d 7 -p ack -e 40 -c 0 -i 6822 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.86149 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6817 -a 0 -x {9.0 10.0 3413 ------- null} + -t 3.86149 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6817 -a 0 -x {9.0 10.0 3413 ------- null} h -t 3.86149 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6817 -a 0 -x {9.0 10.0 3413 ------- null} r -t 3.862 -s 0 -d 9 -p ack -e 40 -c 0 -i 6812 -a 0 -x {10.0 9.0 3401 ------- null} + -t 3.862 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6823 -a 0 -x {9.0 10.0 3416 ------- null} - -t 3.862 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6823 -a 0 -x {9.0 10.0 3416 ------- null} h -t 3.862 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6823 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.86211 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6809 -a 0 -x {9.0 10.0 3409 ------- null} - -t 3.86211 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6809 -a 0 -x {9.0 10.0 3409 ------- null} h -t 3.86211 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6809 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.86221 -s 0 -d 9 -p ack -e 40 -c 0 -i 6816 -a 0 -x {10.0 9.0 3403 ------- null} - -t 3.86221 -s 0 -d 9 -p ack -e 40 -c 0 -i 6816 -a 0 -x {10.0 9.0 3403 ------- null} h -t 3.86221 -s 0 -d 9 -p ack -e 40 -c 0 -i 6816 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.86237 -s 10 -d 7 -p ack -e 40 -c 0 -i 6820 -a 0 -x {10.0 9.0 3405 ------- null} + -t 3.86237 -s 7 -d 0 -p ack -e 40 -c 0 -i 6820 -a 0 -x {10.0 9.0 3405 ------- null} h -t 3.86237 -s 7 -d 8 -p ack -e 40 -c 0 -i 6820 -a 0 -x {10.0 9.0 3405 ------- null} r -t 3.86251 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6805 -a 0 -x {9.0 10.0 3407 ------- null} + -t 3.86251 -s 10 -d 7 -p ack -e 40 -c 0 -i 6824 -a 0 -x {10.0 9.0 3407 ------- null} - -t 3.86251 -s 10 -d 7 -p ack -e 40 -c 0 -i 6824 -a 0 -x {10.0 9.0 3407 ------- null} h -t 3.86251 -s 10 -d 7 -p ack -e 40 -c 0 -i 6824 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.86261 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6819 -a 0 -x {9.0 10.0 3414 ------- null} + -t 3.86261 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6819 -a 0 -x {9.0 10.0 3414 ------- null} h -t 3.86261 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6819 -a 0 -x {9.0 10.0 3414 ------- null} r -t 3.86317 -s 0 -d 9 -p ack -e 40 -c 0 -i 6814 -a 0 -x {10.0 9.0 3402 ------- null} + -t 3.86317 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6825 -a 0 -x {9.0 10.0 3417 ------- null} - -t 3.86317 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6825 -a 0 -x {9.0 10.0 3417 ------- null} h -t 3.86317 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6825 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.8632 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6811 -a 0 -x {9.0 10.0 3410 ------- null} - -t 3.8632 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6811 -a 0 -x {9.0 10.0 3410 ------- null} h -t 3.8632 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6811 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.86336 -s 0 -d 9 -p ack -e 40 -c 0 -i 6818 -a 0 -x {10.0 9.0 3404 ------- null} - -t 3.86336 -s 0 -d 9 -p ack -e 40 -c 0 -i 6818 -a 0 -x {10.0 9.0 3404 ------- null} h -t 3.86336 -s 0 -d 9 -p ack -e 40 -c 0 -i 6818 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.86346 -s 10 -d 7 -p ack -e 40 -c 0 -i 6822 -a 0 -x {10.0 9.0 3406 ------- null} + -t 3.86346 -s 7 -d 0 -p ack -e 40 -c 0 -i 6822 -a 0 -x {10.0 9.0 3406 ------- null} h -t 3.86346 -s 7 -d 8 -p ack -e 40 -c 0 -i 6822 -a 0 -x {10.0 9.0 3406 ------- null} r -t 3.86354 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6821 -a 0 -x {9.0 10.0 3415 ------- null} + -t 3.86354 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6821 -a 0 -x {9.0 10.0 3415 ------- null} h -t 3.86354 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6821 -a 0 -x {9.0 10.0 3415 ------- null} r -t 3.86382 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6807 -a 0 -x {9.0 10.0 3408 ------- null} + -t 3.86382 -s 10 -d 7 -p ack -e 40 -c 0 -i 6826 -a 0 -x {10.0 9.0 3408 ------- null} - -t 3.86382 -s 10 -d 7 -p ack -e 40 -c 0 -i 6826 -a 0 -x {10.0 9.0 3408 ------- null} h -t 3.86382 -s 10 -d 7 -p ack -e 40 -c 0 -i 6826 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.86424 -s 0 -d 9 -p ack -e 40 -c 0 -i 6816 -a 0 -x {10.0 9.0 3403 ------- null} + -t 3.86424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6827 -a 0 -x {9.0 10.0 3418 ------- null} - -t 3.86424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6827 -a 0 -x {9.0 10.0 3418 ------- null} h -t 3.86424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6827 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.86429 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6813 -a 0 -x {9.0 10.0 3411 ------- null} - -t 3.86429 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6813 -a 0 -x {9.0 10.0 3411 ------- null} h -t 3.86429 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6813 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.86443 -s 0 -d 9 -p ack -e 40 -c 0 -i 6820 -a 0 -x {10.0 9.0 3405 ------- null} - -t 3.86443 -s 0 -d 9 -p ack -e 40 -c 0 -i 6820 -a 0 -x {10.0 9.0 3405 ------- null} h -t 3.86443 -s 0 -d 9 -p ack -e 40 -c 0 -i 6820 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.86454 -s 10 -d 7 -p ack -e 40 -c 0 -i 6824 -a 0 -x {10.0 9.0 3407 ------- null} + -t 3.86454 -s 7 -d 0 -p ack -e 40 -c 0 -i 6824 -a 0 -x {10.0 9.0 3407 ------- null} h -t 3.86454 -s 7 -d 8 -p ack -e 40 -c 0 -i 6824 -a 0 -x {10.0 9.0 3407 ------- null} r -t 3.8648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6823 -a 0 -x {9.0 10.0 3416 ------- null} + -t 3.8648 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6823 -a 0 -x {9.0 10.0 3416 ------- null} h -t 3.8648 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6823 -a 0 -x {9.0 10.0 3416 ------- null} r -t 3.86491 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6809 -a 0 -x {9.0 10.0 3409 ------- null} + -t 3.86491 -s 10 -d 7 -p ack -e 40 -c 0 -i 6828 -a 0 -x {10.0 9.0 3409 ------- null} - -t 3.86491 -s 10 -d 7 -p ack -e 40 -c 0 -i 6828 -a 0 -x {10.0 9.0 3409 ------- null} h -t 3.86491 -s 10 -d 7 -p ack -e 40 -c 0 -i 6828 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.86538 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6815 -a 0 -x {9.0 10.0 3412 ------- null} - -t 3.86538 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6815 -a 0 -x {9.0 10.0 3412 ------- null} h -t 3.86538 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6815 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.86539 -s 0 -d 9 -p ack -e 40 -c 0 -i 6818 -a 0 -x {10.0 9.0 3404 ------- null} + -t 3.86539 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6829 -a 0 -x {9.0 10.0 3419 ------- null} - -t 3.86539 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6829 -a 0 -x {9.0 10.0 3419 ------- null} h -t 3.86539 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6829 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.86552 -s 0 -d 9 -p ack -e 40 -c 0 -i 6822 -a 0 -x {10.0 9.0 3406 ------- null} - -t 3.86552 -s 0 -d 9 -p ack -e 40 -c 0 -i 6822 -a 0 -x {10.0 9.0 3406 ------- null} h -t 3.86552 -s 0 -d 9 -p ack -e 40 -c 0 -i 6822 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.86586 -s 10 -d 7 -p ack -e 40 -c 0 -i 6826 -a 0 -x {10.0 9.0 3408 ------- null} + -t 3.86586 -s 7 -d 0 -p ack -e 40 -c 0 -i 6826 -a 0 -x {10.0 9.0 3408 ------- null} h -t 3.86586 -s 7 -d 8 -p ack -e 40 -c 0 -i 6826 -a 0 -x {10.0 9.0 3408 ------- null} r -t 3.86597 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6825 -a 0 -x {9.0 10.0 3417 ------- null} + -t 3.86597 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6825 -a 0 -x {9.0 10.0 3417 ------- null} h -t 3.86597 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6825 -a 0 -x {9.0 10.0 3417 ------- null} r -t 3.866 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6811 -a 0 -x {9.0 10.0 3410 ------- null} + -t 3.866 -s 10 -d 7 -p ack -e 40 -c 0 -i 6830 -a 0 -x {10.0 9.0 3410 ------- null} - -t 3.866 -s 10 -d 7 -p ack -e 40 -c 0 -i 6830 -a 0 -x {10.0 9.0 3410 ------- null} h -t 3.866 -s 10 -d 7 -p ack -e 40 -c 0 -i 6830 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.86646 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6817 -a 0 -x {9.0 10.0 3413 ------- null} - -t 3.86646 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6817 -a 0 -x {9.0 10.0 3413 ------- null} h -t 3.86646 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6817 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.86646 -s 0 -d 9 -p ack -e 40 -c 0 -i 6820 -a 0 -x {10.0 9.0 3405 ------- null} + -t 3.86646 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6831 -a 0 -x {9.0 10.0 3420 ------- null} - -t 3.86646 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6831 -a 0 -x {9.0 10.0 3420 ------- null} h -t 3.86646 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6831 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.86654 -s 0 -d 9 -p ack -e 40 -c 0 -i 6824 -a 0 -x {10.0 9.0 3407 ------- null} - -t 3.86654 -s 0 -d 9 -p ack -e 40 -c 0 -i 6824 -a 0 -x {10.0 9.0 3407 ------- null} h -t 3.86654 -s 0 -d 9 -p ack -e 40 -c 0 -i 6824 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.86694 -s 10 -d 7 -p ack -e 40 -c 0 -i 6828 -a 0 -x {10.0 9.0 3409 ------- null} + -t 3.86694 -s 7 -d 0 -p ack -e 40 -c 0 -i 6828 -a 0 -x {10.0 9.0 3409 ------- null} h -t 3.86694 -s 7 -d 8 -p ack -e 40 -c 0 -i 6828 -a 0 -x {10.0 9.0 3409 ------- null} r -t 3.86704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6827 -a 0 -x {9.0 10.0 3418 ------- null} + -t 3.86704 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6827 -a 0 -x {9.0 10.0 3418 ------- null} h -t 3.86704 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6827 -a 0 -x {9.0 10.0 3418 ------- null} r -t 3.86709 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6813 -a 0 -x {9.0 10.0 3411 ------- null} + -t 3.86709 -s 10 -d 7 -p ack -e 40 -c 0 -i 6832 -a 0 -x {10.0 9.0 3411 ------- null} - -t 3.86709 -s 10 -d 7 -p ack -e 40 -c 0 -i 6832 -a 0 -x {10.0 9.0 3411 ------- null} h -t 3.86709 -s 10 -d 7 -p ack -e 40 -c 0 -i 6832 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.86755 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6819 -a 0 -x {9.0 10.0 3414 ------- null} - -t 3.86755 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6819 -a 0 -x {9.0 10.0 3414 ------- null} h -t 3.86755 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6819 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.86755 -s 0 -d 9 -p ack -e 40 -c 0 -i 6822 -a 0 -x {10.0 9.0 3406 ------- null} + -t 3.86755 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6833 -a 0 -x {9.0 10.0 3421 ------- null} - -t 3.86755 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6833 -a 0 -x {9.0 10.0 3421 ------- null} h -t 3.86755 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6833 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.86786 -s 0 -d 9 -p ack -e 40 -c 0 -i 6826 -a 0 -x {10.0 9.0 3408 ------- null} - -t 3.86786 -s 0 -d 9 -p ack -e 40 -c 0 -i 6826 -a 0 -x {10.0 9.0 3408 ------- null} h -t 3.86786 -s 0 -d 9 -p ack -e 40 -c 0 -i 6826 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.86803 -s 10 -d 7 -p ack -e 40 -c 0 -i 6830 -a 0 -x {10.0 9.0 3410 ------- null} + -t 3.86803 -s 7 -d 0 -p ack -e 40 -c 0 -i 6830 -a 0 -x {10.0 9.0 3410 ------- null} h -t 3.86803 -s 7 -d 8 -p ack -e 40 -c 0 -i 6830 -a 0 -x {10.0 9.0 3410 ------- null} r -t 3.86818 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6815 -a 0 -x {9.0 10.0 3412 ------- null} + -t 3.86818 -s 10 -d 7 -p ack -e 40 -c 0 -i 6834 -a 0 -x {10.0 9.0 3412 ------- null} - -t 3.86818 -s 10 -d 7 -p ack -e 40 -c 0 -i 6834 -a 0 -x {10.0 9.0 3412 ------- null} h -t 3.86818 -s 10 -d 7 -p ack -e 40 -c 0 -i 6834 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.86819 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6829 -a 0 -x {9.0 10.0 3419 ------- null} + -t 3.86819 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6829 -a 0 -x {9.0 10.0 3419 ------- null} h -t 3.86819 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6829 -a 0 -x {9.0 10.0 3419 ------- null} r -t 3.86858 -s 0 -d 9 -p ack -e 40 -c 0 -i 6824 -a 0 -x {10.0 9.0 3407 ------- null} + -t 3.86858 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6835 -a 0 -x {9.0 10.0 3422 ------- null} - -t 3.86858 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6835 -a 0 -x {9.0 10.0 3422 ------- null} h -t 3.86858 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6835 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.86877 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6821 -a 0 -x {9.0 10.0 3415 ------- null} - -t 3.86877 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6821 -a 0 -x {9.0 10.0 3415 ------- null} h -t 3.86877 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6821 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.86899 -s 0 -d 9 -p ack -e 40 -c 0 -i 6828 -a 0 -x {10.0 9.0 3409 ------- null} - -t 3.86899 -s 0 -d 9 -p ack -e 40 -c 0 -i 6828 -a 0 -x {10.0 9.0 3409 ------- null} h -t 3.86899 -s 0 -d 9 -p ack -e 40 -c 0 -i 6828 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.86912 -s 10 -d 7 -p ack -e 40 -c 0 -i 6832 -a 0 -x {10.0 9.0 3411 ------- null} + -t 3.86912 -s 7 -d 0 -p ack -e 40 -c 0 -i 6832 -a 0 -x {10.0 9.0 3411 ------- null} h -t 3.86912 -s 7 -d 8 -p ack -e 40 -c 0 -i 6832 -a 0 -x {10.0 9.0 3411 ------- null} r -t 3.86926 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6817 -a 0 -x {9.0 10.0 3413 ------- null} + -t 3.86926 -s 10 -d 7 -p ack -e 40 -c 0 -i 6836 -a 0 -x {10.0 9.0 3413 ------- null} - -t 3.86926 -s 10 -d 7 -p ack -e 40 -c 0 -i 6836 -a 0 -x {10.0 9.0 3413 ------- null} h -t 3.86926 -s 10 -d 7 -p ack -e 40 -c 0 -i 6836 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.86926 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6831 -a 0 -x {9.0 10.0 3420 ------- null} + -t 3.86926 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6831 -a 0 -x {9.0 10.0 3420 ------- null} h -t 3.86926 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6831 -a 0 -x {9.0 10.0 3420 ------- null} + -t 3.86986 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6823 -a 0 -x {9.0 10.0 3416 ------- null} - -t 3.86986 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6823 -a 0 -x {9.0 10.0 3416 ------- null} h -t 3.86986 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6823 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.86989 -s 0 -d 9 -p ack -e 40 -c 0 -i 6826 -a 0 -x {10.0 9.0 3408 ------- null} + -t 3.86989 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6837 -a 0 -x {9.0 10.0 3423 ------- null} - -t 3.86989 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6837 -a 0 -x {9.0 10.0 3423 ------- null} h -t 3.86989 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6837 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.87014 -s 0 -d 9 -p ack -e 40 -c 0 -i 6830 -a 0 -x {10.0 9.0 3410 ------- null} - -t 3.87014 -s 0 -d 9 -p ack -e 40 -c 0 -i 6830 -a 0 -x {10.0 9.0 3410 ------- null} h -t 3.87014 -s 0 -d 9 -p ack -e 40 -c 0 -i 6830 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.87021 -s 10 -d 7 -p ack -e 40 -c 0 -i 6834 -a 0 -x {10.0 9.0 3412 ------- null} + -t 3.87021 -s 7 -d 0 -p ack -e 40 -c 0 -i 6834 -a 0 -x {10.0 9.0 3412 ------- null} h -t 3.87021 -s 7 -d 8 -p ack -e 40 -c 0 -i 6834 -a 0 -x {10.0 9.0 3412 ------- null} r -t 3.87035 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6819 -a 0 -x {9.0 10.0 3414 ------- null} + -t 3.87035 -s 10 -d 7 -p ack -e 40 -c 0 -i 6838 -a 0 -x {10.0 9.0 3414 ------- null} - -t 3.87035 -s 10 -d 7 -p ack -e 40 -c 0 -i 6838 -a 0 -x {10.0 9.0 3414 ------- null} h -t 3.87035 -s 10 -d 7 -p ack -e 40 -c 0 -i 6838 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.87035 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6833 -a 0 -x {9.0 10.0 3421 ------- null} + -t 3.87035 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6833 -a 0 -x {9.0 10.0 3421 ------- null} h -t 3.87035 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6833 -a 0 -x {9.0 10.0 3421 ------- null} + -t 3.87098 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6825 -a 0 -x {9.0 10.0 3417 ------- null} - -t 3.87098 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6825 -a 0 -x {9.0 10.0 3417 ------- null} h -t 3.87098 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6825 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.87102 -s 0 -d 9 -p ack -e 40 -c 0 -i 6828 -a 0 -x {10.0 9.0 3409 ------- null} + -t 3.87102 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6839 -a 0 -x {9.0 10.0 3424 ------- null} - -t 3.87102 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6839 -a 0 -x {9.0 10.0 3424 ------- null} h -t 3.87102 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6839 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.87109 -s 0 -d 9 -p ack -e 40 -c 0 -i 6832 -a 0 -x {10.0 9.0 3411 ------- null} - -t 3.87109 -s 0 -d 9 -p ack -e 40 -c 0 -i 6832 -a 0 -x {10.0 9.0 3411 ------- null} h -t 3.87109 -s 0 -d 9 -p ack -e 40 -c 0 -i 6832 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.8713 -s 10 -d 7 -p ack -e 40 -c 0 -i 6836 -a 0 -x {10.0 9.0 3413 ------- null} + -t 3.8713 -s 7 -d 0 -p ack -e 40 -c 0 -i 6836 -a 0 -x {10.0 9.0 3413 ------- null} h -t 3.8713 -s 7 -d 8 -p ack -e 40 -c 0 -i 6836 -a 0 -x {10.0 9.0 3413 ------- null} r -t 3.87138 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6835 -a 0 -x {9.0 10.0 3422 ------- null} + -t 3.87138 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6835 -a 0 -x {9.0 10.0 3422 ------- null} h -t 3.87138 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6835 -a 0 -x {9.0 10.0 3422 ------- null} r -t 3.87157 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6821 -a 0 -x {9.0 10.0 3415 ------- null} + -t 3.87157 -s 10 -d 7 -p ack -e 40 -c 0 -i 6840 -a 0 -x {10.0 9.0 3415 ------- null} - -t 3.87157 -s 10 -d 7 -p ack -e 40 -c 0 -i 6840 -a 0 -x {10.0 9.0 3415 ------- null} h -t 3.87157 -s 10 -d 7 -p ack -e 40 -c 0 -i 6840 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.87206 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6827 -a 0 -x {9.0 10.0 3418 ------- null} - -t 3.87206 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6827 -a 0 -x {9.0 10.0 3418 ------- null} h -t 3.87206 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6827 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.87218 -s 0 -d 9 -p ack -e 40 -c 0 -i 6830 -a 0 -x {10.0 9.0 3410 ------- null} + -t 3.87218 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6841 -a 0 -x {9.0 10.0 3425 ------- null} - -t 3.87218 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6841 -a 0 -x {9.0 10.0 3425 ------- null} h -t 3.87218 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6841 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.87234 -s 0 -d 9 -p ack -e 40 -c 0 -i 6834 -a 0 -x {10.0 9.0 3412 ------- null} - -t 3.87234 -s 0 -d 9 -p ack -e 40 -c 0 -i 6834 -a 0 -x {10.0 9.0 3412 ------- null} h -t 3.87234 -s 0 -d 9 -p ack -e 40 -c 0 -i 6834 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.87238 -s 10 -d 7 -p ack -e 40 -c 0 -i 6838 -a 0 -x {10.0 9.0 3414 ------- null} + -t 3.87238 -s 7 -d 0 -p ack -e 40 -c 0 -i 6838 -a 0 -x {10.0 9.0 3414 ------- null} h -t 3.87238 -s 7 -d 8 -p ack -e 40 -c 0 -i 6838 -a 0 -x {10.0 9.0 3414 ------- null} r -t 3.87266 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6823 -a 0 -x {9.0 10.0 3416 ------- null} + -t 3.87266 -s 10 -d 7 -p ack -e 40 -c 0 -i 6842 -a 0 -x {10.0 9.0 3416 ------- null} - -t 3.87266 -s 10 -d 7 -p ack -e 40 -c 0 -i 6842 -a 0 -x {10.0 9.0 3416 ------- null} h -t 3.87266 -s 10 -d 7 -p ack -e 40 -c 0 -i 6842 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.87269 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6837 -a 0 -x {9.0 10.0 3423 ------- null} + -t 3.87269 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6837 -a 0 -x {9.0 10.0 3423 ------- null} h -t 3.87269 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6837 -a 0 -x {9.0 10.0 3423 ------- null} r -t 3.87312 -s 0 -d 9 -p ack -e 40 -c 0 -i 6832 -a 0 -x {10.0 9.0 3411 ------- null} + -t 3.87312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6843 -a 0 -x {9.0 10.0 3426 ------- null} - -t 3.87312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6843 -a 0 -x {9.0 10.0 3426 ------- null} h -t 3.87312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6843 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.87341 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6829 -a 0 -x {9.0 10.0 3419 ------- null} - -t 3.87341 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6829 -a 0 -x {9.0 10.0 3419 ------- null} h -t 3.87341 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6829 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.87355 -s 0 -d 9 -p ack -e 40 -c 0 -i 6836 -a 0 -x {10.0 9.0 3413 ------- null} - -t 3.87355 -s 0 -d 9 -p ack -e 40 -c 0 -i 6836 -a 0 -x {10.0 9.0 3413 ------- null} h -t 3.87355 -s 0 -d 9 -p ack -e 40 -c 0 -i 6836 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.8736 -s 10 -d 7 -p ack -e 40 -c 0 -i 6840 -a 0 -x {10.0 9.0 3415 ------- null} + -t 3.8736 -s 7 -d 0 -p ack -e 40 -c 0 -i 6840 -a 0 -x {10.0 9.0 3415 ------- null} h -t 3.8736 -s 7 -d 8 -p ack -e 40 -c 0 -i 6840 -a 0 -x {10.0 9.0 3415 ------- null} r -t 3.87378 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6825 -a 0 -x {9.0 10.0 3417 ------- null} + -t 3.87378 -s 10 -d 7 -p ack -e 40 -c 0 -i 6844 -a 0 -x {10.0 9.0 3417 ------- null} - -t 3.87378 -s 10 -d 7 -p ack -e 40 -c 0 -i 6844 -a 0 -x {10.0 9.0 3417 ------- null} h -t 3.87378 -s 10 -d 7 -p ack -e 40 -c 0 -i 6844 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.87382 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6839 -a 0 -x {9.0 10.0 3424 ------- null} + -t 3.87382 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6839 -a 0 -x {9.0 10.0 3424 ------- null} h -t 3.87382 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6839 -a 0 -x {9.0 10.0 3424 ------- null} r -t 3.87437 -s 0 -d 9 -p ack -e 40 -c 0 -i 6834 -a 0 -x {10.0 9.0 3412 ------- null} + -t 3.87437 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6845 -a 0 -x {9.0 10.0 3427 ------- null} - -t 3.87437 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6845 -a 0 -x {9.0 10.0 3427 ------- null} h -t 3.87437 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6845 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.8745 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6831 -a 0 -x {9.0 10.0 3420 ------- null} - -t 3.8745 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6831 -a 0 -x {9.0 10.0 3420 ------- null} h -t 3.8745 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6831 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.87469 -s 10 -d 7 -p ack -e 40 -c 0 -i 6842 -a 0 -x {10.0 9.0 3416 ------- null} + -t 3.87469 -s 7 -d 0 -p ack -e 40 -c 0 -i 6842 -a 0 -x {10.0 9.0 3416 ------- null} h -t 3.87469 -s 7 -d 8 -p ack -e 40 -c 0 -i 6842 -a 0 -x {10.0 9.0 3416 ------- null} + -t 3.8747 -s 0 -d 9 -p ack -e 40 -c 0 -i 6838 -a 0 -x {10.0 9.0 3414 ------- null} - -t 3.8747 -s 0 -d 9 -p ack -e 40 -c 0 -i 6838 -a 0 -x {10.0 9.0 3414 ------- null} h -t 3.8747 -s 0 -d 9 -p ack -e 40 -c 0 -i 6838 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.87486 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6827 -a 0 -x {9.0 10.0 3418 ------- null} + -t 3.87486 -s 10 -d 7 -p ack -e 40 -c 0 -i 6846 -a 0 -x {10.0 9.0 3418 ------- null} - -t 3.87486 -s 10 -d 7 -p ack -e 40 -c 0 -i 6846 -a 0 -x {10.0 9.0 3418 ------- null} h -t 3.87486 -s 10 -d 7 -p ack -e 40 -c 0 -i 6846 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.87498 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6841 -a 0 -x {9.0 10.0 3425 ------- null} + -t 3.87498 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6841 -a 0 -x {9.0 10.0 3425 ------- null} h -t 3.87498 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6841 -a 0 -x {9.0 10.0 3425 ------- null} + -t 3.87558 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6833 -a 0 -x {9.0 10.0 3421 ------- null} - -t 3.87558 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6833 -a 0 -x {9.0 10.0 3421 ------- null} h -t 3.87558 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6833 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.87558 -s 0 -d 9 -p ack -e 40 -c 0 -i 6836 -a 0 -x {10.0 9.0 3413 ------- null} + -t 3.87558 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6847 -a 0 -x {9.0 10.0 3428 ------- null} - -t 3.87558 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6847 -a 0 -x {9.0 10.0 3428 ------- null} h -t 3.87558 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6847 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.87581 -s 10 -d 7 -p ack -e 40 -c 0 -i 6844 -a 0 -x {10.0 9.0 3417 ------- null} + -t 3.87581 -s 7 -d 0 -p ack -e 40 -c 0 -i 6844 -a 0 -x {10.0 9.0 3417 ------- null} h -t 3.87581 -s 7 -d 8 -p ack -e 40 -c 0 -i 6844 -a 0 -x {10.0 9.0 3417 ------- null} + -t 3.87582 -s 0 -d 9 -p ack -e 40 -c 0 -i 6840 -a 0 -x {10.0 9.0 3415 ------- null} - -t 3.87582 -s 0 -d 9 -p ack -e 40 -c 0 -i 6840 -a 0 -x {10.0 9.0 3415 ------- null} h -t 3.87582 -s 0 -d 9 -p ack -e 40 -c 0 -i 6840 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.87592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6843 -a 0 -x {9.0 10.0 3426 ------- null} + -t 3.87592 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6843 -a 0 -x {9.0 10.0 3426 ------- null} h -t 3.87592 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6843 -a 0 -x {9.0 10.0 3426 ------- null} r -t 3.87621 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6829 -a 0 -x {9.0 10.0 3419 ------- null} + -t 3.87621 -s 10 -d 7 -p ack -e 40 -c 0 -i 6848 -a 0 -x {10.0 9.0 3419 ------- null} - -t 3.87621 -s 10 -d 7 -p ack -e 40 -c 0 -i 6848 -a 0 -x {10.0 9.0 3419 ------- null} h -t 3.87621 -s 10 -d 7 -p ack -e 40 -c 0 -i 6848 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.87667 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6835 -a 0 -x {9.0 10.0 3422 ------- null} - -t 3.87667 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6835 -a 0 -x {9.0 10.0 3422 ------- null} h -t 3.87667 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6835 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.87674 -s 0 -d 9 -p ack -e 40 -c 0 -i 6838 -a 0 -x {10.0 9.0 3414 ------- null} + -t 3.87674 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6849 -a 0 -x {9.0 10.0 3429 ------- null} - -t 3.87674 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6849 -a 0 -x {9.0 10.0 3429 ------- null} h -t 3.87674 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6849 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.8769 -s 10 -d 7 -p ack -e 40 -c 0 -i 6846 -a 0 -x {10.0 9.0 3418 ------- null} + -t 3.8769 -s 7 -d 0 -p ack -e 40 -c 0 -i 6846 -a 0 -x {10.0 9.0 3418 ------- null} h -t 3.8769 -s 7 -d 8 -p ack -e 40 -c 0 -i 6846 -a 0 -x {10.0 9.0 3418 ------- null} + -t 3.87696 -s 0 -d 9 -p ack -e 40 -c 0 -i 6842 -a 0 -x {10.0 9.0 3416 ------- null} - -t 3.87696 -s 0 -d 9 -p ack -e 40 -c 0 -i 6842 -a 0 -x {10.0 9.0 3416 ------- null} h -t 3.87696 -s 0 -d 9 -p ack -e 40 -c 0 -i 6842 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.87717 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6845 -a 0 -x {9.0 10.0 3427 ------- null} + -t 3.87717 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6845 -a 0 -x {9.0 10.0 3427 ------- null} h -t 3.87717 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6845 -a 0 -x {9.0 10.0 3427 ------- null} r -t 3.8773 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6831 -a 0 -x {9.0 10.0 3420 ------- null} + -t 3.8773 -s 10 -d 7 -p ack -e 40 -c 0 -i 6850 -a 0 -x {10.0 9.0 3420 ------- null} - -t 3.8773 -s 10 -d 7 -p ack -e 40 -c 0 -i 6850 -a 0 -x {10.0 9.0 3420 ------- null} h -t 3.8773 -s 10 -d 7 -p ack -e 40 -c 0 -i 6850 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.87786 -s 0 -d 9 -p ack -e 40 -c 0 -i 6840 -a 0 -x {10.0 9.0 3415 ------- null} + -t 3.87786 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6851 -a 0 -x {9.0 10.0 3430 ------- null} - -t 3.87786 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6851 -a 0 -x {9.0 10.0 3430 ------- null} h -t 3.87786 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6851 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.87798 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6837 -a 0 -x {9.0 10.0 3423 ------- null} - -t 3.87798 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6837 -a 0 -x {9.0 10.0 3423 ------- null} h -t 3.87798 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6837 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.87818 -s 0 -d 9 -p ack -e 40 -c 0 -i 6844 -a 0 -x {10.0 9.0 3417 ------- null} - -t 3.87818 -s 0 -d 9 -p ack -e 40 -c 0 -i 6844 -a 0 -x {10.0 9.0 3417 ------- null} h -t 3.87818 -s 0 -d 9 -p ack -e 40 -c 0 -i 6844 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.87824 -s 10 -d 7 -p ack -e 40 -c 0 -i 6848 -a 0 -x {10.0 9.0 3419 ------- null} + -t 3.87824 -s 7 -d 0 -p ack -e 40 -c 0 -i 6848 -a 0 -x {10.0 9.0 3419 ------- null} h -t 3.87824 -s 7 -d 8 -p ack -e 40 -c 0 -i 6848 -a 0 -x {10.0 9.0 3419 ------- null} r -t 3.87838 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6833 -a 0 -x {9.0 10.0 3421 ------- null} + -t 3.87838 -s 10 -d 7 -p ack -e 40 -c 0 -i 6852 -a 0 -x {10.0 9.0 3421 ------- null} - -t 3.87838 -s 10 -d 7 -p ack -e 40 -c 0 -i 6852 -a 0 -x {10.0 9.0 3421 ------- null} h -t 3.87838 -s 10 -d 7 -p ack -e 40 -c 0 -i 6852 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.87838 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6847 -a 0 -x {9.0 10.0 3428 ------- null} + -t 3.87838 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6847 -a 0 -x {9.0 10.0 3428 ------- null} h -t 3.87838 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6847 -a 0 -x {9.0 10.0 3428 ------- null} r -t 3.87899 -s 0 -d 9 -p ack -e 40 -c 0 -i 6842 -a 0 -x {10.0 9.0 3416 ------- null} + -t 3.87899 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6853 -a 0 -x {9.0 10.0 3431 ------- null} - -t 3.87899 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6853 -a 0 -x {9.0 10.0 3431 ------- null} h -t 3.87899 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6853 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.87907 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6839 -a 0 -x {9.0 10.0 3424 ------- null} - -t 3.87907 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6839 -a 0 -x {9.0 10.0 3424 ------- null} h -t 3.87907 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6839 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.87931 -s 0 -d 9 -p ack -e 40 -c 0 -i 6846 -a 0 -x {10.0 9.0 3418 ------- null} - -t 3.87931 -s 0 -d 9 -p ack -e 40 -c 0 -i 6846 -a 0 -x {10.0 9.0 3418 ------- null} h -t 3.87931 -s 0 -d 9 -p ack -e 40 -c 0 -i 6846 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.87933 -s 10 -d 7 -p ack -e 40 -c 0 -i 6850 -a 0 -x {10.0 9.0 3420 ------- null} + -t 3.87933 -s 7 -d 0 -p ack -e 40 -c 0 -i 6850 -a 0 -x {10.0 9.0 3420 ------- null} h -t 3.87933 -s 7 -d 8 -p ack -e 40 -c 0 -i 6850 -a 0 -x {10.0 9.0 3420 ------- null} r -t 3.87947 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6835 -a 0 -x {9.0 10.0 3422 ------- null} + -t 3.87947 -s 10 -d 7 -p ack -e 40 -c 0 -i 6854 -a 0 -x {10.0 9.0 3422 ------- null} - -t 3.87947 -s 10 -d 7 -p ack -e 40 -c 0 -i 6854 -a 0 -x {10.0 9.0 3422 ------- null} h -t 3.87947 -s 10 -d 7 -p ack -e 40 -c 0 -i 6854 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.87954 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6849 -a 0 -x {9.0 10.0 3429 ------- null} + -t 3.87954 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6849 -a 0 -x {9.0 10.0 3429 ------- null} h -t 3.87954 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6849 -a 0 -x {9.0 10.0 3429 ------- null} + -t 3.88016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6841 -a 0 -x {9.0 10.0 3425 ------- null} - -t 3.88016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6841 -a 0 -x {9.0 10.0 3425 ------- null} h -t 3.88016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6841 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.88021 -s 0 -d 9 -p ack -e 40 -c 0 -i 6844 -a 0 -x {10.0 9.0 3417 ------- null} + -t 3.88021 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6855 -a 0 -x {9.0 10.0 3432 ------- null} - -t 3.88021 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6855 -a 0 -x {9.0 10.0 3432 ------- null} h -t 3.88021 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6855 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.88032 -s 0 -d 9 -p ack -e 40 -c 0 -i 6848 -a 0 -x {10.0 9.0 3419 ------- null} - -t 3.88032 -s 0 -d 9 -p ack -e 40 -c 0 -i 6848 -a 0 -x {10.0 9.0 3419 ------- null} h -t 3.88032 -s 0 -d 9 -p ack -e 40 -c 0 -i 6848 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.88042 -s 10 -d 7 -p ack -e 40 -c 0 -i 6852 -a 0 -x {10.0 9.0 3421 ------- null} + -t 3.88042 -s 7 -d 0 -p ack -e 40 -c 0 -i 6852 -a 0 -x {10.0 9.0 3421 ------- null} h -t 3.88042 -s 7 -d 8 -p ack -e 40 -c 0 -i 6852 -a 0 -x {10.0 9.0 3421 ------- null} r -t 3.88066 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6851 -a 0 -x {9.0 10.0 3430 ------- null} + -t 3.88066 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6851 -a 0 -x {9.0 10.0 3430 ------- null} h -t 3.88066 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6851 -a 0 -x {9.0 10.0 3430 ------- null} r -t 3.88078 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6837 -a 0 -x {9.0 10.0 3423 ------- null} + -t 3.88078 -s 10 -d 7 -p ack -e 40 -c 0 -i 6856 -a 0 -x {10.0 9.0 3423 ------- null} - -t 3.88078 -s 10 -d 7 -p ack -e 40 -c 0 -i 6856 -a 0 -x {10.0 9.0 3423 ------- null} h -t 3.88078 -s 10 -d 7 -p ack -e 40 -c 0 -i 6856 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.88125 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6843 -a 0 -x {9.0 10.0 3426 ------- null} - -t 3.88125 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6843 -a 0 -x {9.0 10.0 3426 ------- null} h -t 3.88125 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6843 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.88134 -s 0 -d 9 -p ack -e 40 -c 0 -i 6846 -a 0 -x {10.0 9.0 3418 ------- null} + -t 3.88134 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6857 -a 0 -x {9.0 10.0 3433 ------- null} - -t 3.88134 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6857 -a 0 -x {9.0 10.0 3433 ------- null} h -t 3.88134 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6857 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.8815 -s 10 -d 7 -p ack -e 40 -c 0 -i 6854 -a 0 -x {10.0 9.0 3422 ------- null} + -t 3.8815 -s 7 -d 0 -p ack -e 40 -c 0 -i 6854 -a 0 -x {10.0 9.0 3422 ------- null} h -t 3.8815 -s 7 -d 8 -p ack -e 40 -c 0 -i 6854 -a 0 -x {10.0 9.0 3422 ------- null} + -t 3.88154 -s 0 -d 9 -p ack -e 40 -c 0 -i 6850 -a 0 -x {10.0 9.0 3420 ------- null} - -t 3.88154 -s 0 -d 9 -p ack -e 40 -c 0 -i 6850 -a 0 -x {10.0 9.0 3420 ------- null} h -t 3.88154 -s 0 -d 9 -p ack -e 40 -c 0 -i 6850 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.88179 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6853 -a 0 -x {9.0 10.0 3431 ------- null} + -t 3.88179 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6853 -a 0 -x {9.0 10.0 3431 ------- null} h -t 3.88179 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6853 -a 0 -x {9.0 10.0 3431 ------- null} r -t 3.88187 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6839 -a 0 -x {9.0 10.0 3424 ------- null} + -t 3.88187 -s 10 -d 7 -p ack -e 40 -c 0 -i 6858 -a 0 -x {10.0 9.0 3424 ------- null} - -t 3.88187 -s 10 -d 7 -p ack -e 40 -c 0 -i 6858 -a 0 -x {10.0 9.0 3424 ------- null} h -t 3.88187 -s 10 -d 7 -p ack -e 40 -c 0 -i 6858 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.88235 -s 0 -d 9 -p ack -e 40 -c 0 -i 6848 -a 0 -x {10.0 9.0 3419 ------- null} + -t 3.88235 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6859 -a 0 -x {9.0 10.0 3434 ------- null} - -t 3.88235 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6859 -a 0 -x {9.0 10.0 3434 ------- null} h -t 3.88235 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6859 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.88261 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6845 -a 0 -x {9.0 10.0 3427 ------- null} - -t 3.88261 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6845 -a 0 -x {9.0 10.0 3427 ------- null} h -t 3.88261 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6845 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.8827 -s 0 -d 9 -p ack -e 40 -c 0 -i 6852 -a 0 -x {10.0 9.0 3421 ------- null} - -t 3.8827 -s 0 -d 9 -p ack -e 40 -c 0 -i 6852 -a 0 -x {10.0 9.0 3421 ------- null} h -t 3.8827 -s 0 -d 9 -p ack -e 40 -c 0 -i 6852 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.88282 -s 10 -d 7 -p ack -e 40 -c 0 -i 6856 -a 0 -x {10.0 9.0 3423 ------- null} + -t 3.88282 -s 7 -d 0 -p ack -e 40 -c 0 -i 6856 -a 0 -x {10.0 9.0 3423 ------- null} h -t 3.88282 -s 7 -d 8 -p ack -e 40 -c 0 -i 6856 -a 0 -x {10.0 9.0 3423 ------- null} r -t 3.88296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6841 -a 0 -x {9.0 10.0 3425 ------- null} + -t 3.88296 -s 10 -d 7 -p ack -e 40 -c 0 -i 6860 -a 0 -x {10.0 9.0 3425 ------- null} - -t 3.88296 -s 10 -d 7 -p ack -e 40 -c 0 -i 6860 -a 0 -x {10.0 9.0 3425 ------- null} h -t 3.88296 -s 10 -d 7 -p ack -e 40 -c 0 -i 6860 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.88301 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6855 -a 0 -x {9.0 10.0 3432 ------- null} + -t 3.88301 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6855 -a 0 -x {9.0 10.0 3432 ------- null} h -t 3.88301 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6855 -a 0 -x {9.0 10.0 3432 ------- null} r -t 3.88357 -s 0 -d 9 -p ack -e 40 -c 0 -i 6850 -a 0 -x {10.0 9.0 3420 ------- null} + -t 3.88357 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6861 -a 0 -x {9.0 10.0 3435 ------- null} - -t 3.88357 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6861 -a 0 -x {9.0 10.0 3435 ------- null} h -t 3.88357 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6861 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.8837 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6847 -a 0 -x {9.0 10.0 3428 ------- null} - -t 3.8837 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6847 -a 0 -x {9.0 10.0 3428 ------- null} h -t 3.8837 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6847 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.88387 -s 0 -d 9 -p ack -e 40 -c 0 -i 6854 -a 0 -x {10.0 9.0 3422 ------- null} - -t 3.88387 -s 0 -d 9 -p ack -e 40 -c 0 -i 6854 -a 0 -x {10.0 9.0 3422 ------- null} h -t 3.88387 -s 0 -d 9 -p ack -e 40 -c 0 -i 6854 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.8839 -s 10 -d 7 -p ack -e 40 -c 0 -i 6858 -a 0 -x {10.0 9.0 3424 ------- null} + -t 3.8839 -s 7 -d 0 -p ack -e 40 -c 0 -i 6858 -a 0 -x {10.0 9.0 3424 ------- null} h -t 3.8839 -s 7 -d 8 -p ack -e 40 -c 0 -i 6858 -a 0 -x {10.0 9.0 3424 ------- null} r -t 3.88405 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6843 -a 0 -x {9.0 10.0 3426 ------- null} + -t 3.88405 -s 10 -d 7 -p ack -e 40 -c 0 -i 6862 -a 0 -x {10.0 9.0 3426 ------- null} - -t 3.88405 -s 10 -d 7 -p ack -e 40 -c 0 -i 6862 -a 0 -x {10.0 9.0 3426 ------- null} h -t 3.88405 -s 10 -d 7 -p ack -e 40 -c 0 -i 6862 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.88414 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6857 -a 0 -x {9.0 10.0 3433 ------- null} + -t 3.88414 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6857 -a 0 -x {9.0 10.0 3433 ------- null} h -t 3.88414 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6857 -a 0 -x {9.0 10.0 3433 ------- null} r -t 3.88474 -s 0 -d 9 -p ack -e 40 -c 0 -i 6852 -a 0 -x {10.0 9.0 3421 ------- null} + -t 3.88474 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6863 -a 0 -x {9.0 10.0 3436 ------- null} - -t 3.88474 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6863 -a 0 -x {9.0 10.0 3436 ------- null} h -t 3.88474 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6863 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.88478 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6849 -a 0 -x {9.0 10.0 3429 ------- null} - -t 3.88478 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6849 -a 0 -x {9.0 10.0 3429 ------- null} h -t 3.88478 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6849 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.88496 -s 0 -d 9 -p ack -e 40 -c 0 -i 6856 -a 0 -x {10.0 9.0 3423 ------- null} - -t 3.88496 -s 0 -d 9 -p ack -e 40 -c 0 -i 6856 -a 0 -x {10.0 9.0 3423 ------- null} h -t 3.88496 -s 0 -d 9 -p ack -e 40 -c 0 -i 6856 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.88499 -s 10 -d 7 -p ack -e 40 -c 0 -i 6860 -a 0 -x {10.0 9.0 3425 ------- null} + -t 3.88499 -s 7 -d 0 -p ack -e 40 -c 0 -i 6860 -a 0 -x {10.0 9.0 3425 ------- null} h -t 3.88499 -s 7 -d 8 -p ack -e 40 -c 0 -i 6860 -a 0 -x {10.0 9.0 3425 ------- null} r -t 3.88515 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6859 -a 0 -x {9.0 10.0 3434 ------- null} + -t 3.88515 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6859 -a 0 -x {9.0 10.0 3434 ------- null} h -t 3.88515 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6859 -a 0 -x {9.0 10.0 3434 ------- null} r -t 3.88541 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6845 -a 0 -x {9.0 10.0 3427 ------- null} + -t 3.88541 -s 10 -d 7 -p ack -e 40 -c 0 -i 6864 -a 0 -x {10.0 9.0 3427 ------- null} - -t 3.88541 -s 10 -d 7 -p ack -e 40 -c 0 -i 6864 -a 0 -x {10.0 9.0 3427 ------- null} h -t 3.88541 -s 10 -d 7 -p ack -e 40 -c 0 -i 6864 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.88587 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6851 -a 0 -x {9.0 10.0 3430 ------- null} - -t 3.88587 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6851 -a 0 -x {9.0 10.0 3430 ------- null} h -t 3.88587 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6851 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.8859 -s 0 -d 9 -p ack -e 40 -c 0 -i 6854 -a 0 -x {10.0 9.0 3422 ------- null} + -t 3.8859 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6865 -a 0 -x {9.0 10.0 3437 ------- null} - -t 3.8859 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6865 -a 0 -x {9.0 10.0 3437 ------- null} h -t 3.8859 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6865 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.88608 -s 10 -d 7 -p ack -e 40 -c 0 -i 6862 -a 0 -x {10.0 9.0 3426 ------- null} + -t 3.88608 -s 7 -d 0 -p ack -e 40 -c 0 -i 6862 -a 0 -x {10.0 9.0 3426 ------- null} h -t 3.88608 -s 7 -d 8 -p ack -e 40 -c 0 -i 6862 -a 0 -x {10.0 9.0 3426 ------- null} + -t 3.8861 -s 0 -d 9 -p ack -e 40 -c 0 -i 6858 -a 0 -x {10.0 9.0 3424 ------- null} - -t 3.8861 -s 0 -d 9 -p ack -e 40 -c 0 -i 6858 -a 0 -x {10.0 9.0 3424 ------- null} h -t 3.8861 -s 0 -d 9 -p ack -e 40 -c 0 -i 6858 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.88637 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6861 -a 0 -x {9.0 10.0 3435 ------- null} + -t 3.88637 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6861 -a 0 -x {9.0 10.0 3435 ------- null} h -t 3.88637 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6861 -a 0 -x {9.0 10.0 3435 ------- null} r -t 3.8865 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6847 -a 0 -x {9.0 10.0 3428 ------- null} + -t 3.8865 -s 10 -d 7 -p ack -e 40 -c 0 -i 6866 -a 0 -x {10.0 9.0 3428 ------- null} - -t 3.8865 -s 10 -d 7 -p ack -e 40 -c 0 -i 6866 -a 0 -x {10.0 9.0 3428 ------- null} h -t 3.8865 -s 10 -d 7 -p ack -e 40 -c 0 -i 6866 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.88696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6853 -a 0 -x {9.0 10.0 3431 ------- null} - -t 3.88696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6853 -a 0 -x {9.0 10.0 3431 ------- null} h -t 3.88696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6853 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.88699 -s 0 -d 9 -p ack -e 40 -c 0 -i 6856 -a 0 -x {10.0 9.0 3423 ------- null} + -t 3.88699 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6867 -a 0 -x {9.0 10.0 3438 ------- null} - -t 3.88699 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6867 -a 0 -x {9.0 10.0 3438 ------- null} h -t 3.88699 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6867 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.88702 -s 0 -d 9 -p ack -e 40 -c 0 -i 6860 -a 0 -x {10.0 9.0 3425 ------- null} - -t 3.88702 -s 0 -d 9 -p ack -e 40 -c 0 -i 6860 -a 0 -x {10.0 9.0 3425 ------- null} h -t 3.88702 -s 0 -d 9 -p ack -e 40 -c 0 -i 6860 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.88744 -s 10 -d 7 -p ack -e 40 -c 0 -i 6864 -a 0 -x {10.0 9.0 3427 ------- null} + -t 3.88744 -s 7 -d 0 -p ack -e 40 -c 0 -i 6864 -a 0 -x {10.0 9.0 3427 ------- null} h -t 3.88744 -s 7 -d 8 -p ack -e 40 -c 0 -i 6864 -a 0 -x {10.0 9.0 3427 ------- null} r -t 3.88754 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6863 -a 0 -x {9.0 10.0 3436 ------- null} + -t 3.88754 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6863 -a 0 -x {9.0 10.0 3436 ------- null} h -t 3.88754 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6863 -a 0 -x {9.0 10.0 3436 ------- null} r -t 3.88758 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6849 -a 0 -x {9.0 10.0 3429 ------- null} + -t 3.88758 -s 10 -d 7 -p ack -e 40 -c 0 -i 6868 -a 0 -x {10.0 9.0 3429 ------- null} - -t 3.88758 -s 10 -d 7 -p ack -e 40 -c 0 -i 6868 -a 0 -x {10.0 9.0 3429 ------- null} h -t 3.88758 -s 10 -d 7 -p ack -e 40 -c 0 -i 6868 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.88805 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6855 -a 0 -x {9.0 10.0 3432 ------- null} - -t 3.88805 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6855 -a 0 -x {9.0 10.0 3432 ------- null} h -t 3.88805 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6855 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.88813 -s 0 -d 9 -p ack -e 40 -c 0 -i 6858 -a 0 -x {10.0 9.0 3424 ------- null} + -t 3.88813 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6869 -a 0 -x {9.0 10.0 3439 ------- null} - -t 3.88813 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6869 -a 0 -x {9.0 10.0 3439 ------- null} h -t 3.88813 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6869 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.88814 -s 0 -d 9 -p ack -e 40 -c 0 -i 6862 -a 0 -x {10.0 9.0 3426 ------- null} - -t 3.88814 -s 0 -d 9 -p ack -e 40 -c 0 -i 6862 -a 0 -x {10.0 9.0 3426 ------- null} h -t 3.88814 -s 0 -d 9 -p ack -e 40 -c 0 -i 6862 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.88853 -s 10 -d 7 -p ack -e 40 -c 0 -i 6866 -a 0 -x {10.0 9.0 3428 ------- null} + -t 3.88853 -s 7 -d 0 -p ack -e 40 -c 0 -i 6866 -a 0 -x {10.0 9.0 3428 ------- null} h -t 3.88853 -s 7 -d 8 -p ack -e 40 -c 0 -i 6866 -a 0 -x {10.0 9.0 3428 ------- null} r -t 3.88867 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6851 -a 0 -x {9.0 10.0 3430 ------- null} + -t 3.88867 -s 10 -d 7 -p ack -e 40 -c 0 -i 6870 -a 0 -x {10.0 9.0 3430 ------- null} - -t 3.88867 -s 10 -d 7 -p ack -e 40 -c 0 -i 6870 -a 0 -x {10.0 9.0 3430 ------- null} h -t 3.88867 -s 10 -d 7 -p ack -e 40 -c 0 -i 6870 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.8887 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6865 -a 0 -x {9.0 10.0 3437 ------- null} + -t 3.8887 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6865 -a 0 -x {9.0 10.0 3437 ------- null} h -t 3.8887 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6865 -a 0 -x {9.0 10.0 3437 ------- null} r -t 3.88906 -s 0 -d 9 -p ack -e 40 -c 0 -i 6860 -a 0 -x {10.0 9.0 3425 ------- null} + -t 3.88906 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6871 -a 0 -x {9.0 10.0 3440 ------- null} - -t 3.88906 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6871 -a 0 -x {9.0 10.0 3440 ------- null} h -t 3.88906 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6871 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.88914 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6857 -a 0 -x {9.0 10.0 3433 ------- null} - -t 3.88914 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6857 -a 0 -x {9.0 10.0 3433 ------- null} h -t 3.88914 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6857 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.88944 -s 0 -d 9 -p ack -e 40 -c 0 -i 6864 -a 0 -x {10.0 9.0 3427 ------- null} - -t 3.88944 -s 0 -d 9 -p ack -e 40 -c 0 -i 6864 -a 0 -x {10.0 9.0 3427 ------- null} h -t 3.88944 -s 0 -d 9 -p ack -e 40 -c 0 -i 6864 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.88962 -s 10 -d 7 -p ack -e 40 -c 0 -i 6868 -a 0 -x {10.0 9.0 3429 ------- null} + -t 3.88962 -s 7 -d 0 -p ack -e 40 -c 0 -i 6868 -a 0 -x {10.0 9.0 3429 ------- null} h -t 3.88962 -s 7 -d 8 -p ack -e 40 -c 0 -i 6868 -a 0 -x {10.0 9.0 3429 ------- null} r -t 3.88976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6853 -a 0 -x {9.0 10.0 3431 ------- null} + -t 3.88976 -s 10 -d 7 -p ack -e 40 -c 0 -i 6872 -a 0 -x {10.0 9.0 3431 ------- null} - -t 3.88976 -s 10 -d 7 -p ack -e 40 -c 0 -i 6872 -a 0 -x {10.0 9.0 3431 ------- null} h -t 3.88976 -s 10 -d 7 -p ack -e 40 -c 0 -i 6872 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.88979 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6867 -a 0 -x {9.0 10.0 3438 ------- null} + -t 3.88979 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6867 -a 0 -x {9.0 10.0 3438 ------- null} h -t 3.88979 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6867 -a 0 -x {9.0 10.0 3438 ------- null} r -t 3.89018 -s 0 -d 9 -p ack -e 40 -c 0 -i 6862 -a 0 -x {10.0 9.0 3426 ------- null} + -t 3.89018 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6873 -a 0 -x {9.0 10.0 3441 ------- null} - -t 3.89018 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6873 -a 0 -x {9.0 10.0 3441 ------- null} h -t 3.89018 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6873 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.89029 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6859 -a 0 -x {9.0 10.0 3434 ------- null} - -t 3.89029 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6859 -a 0 -x {9.0 10.0 3434 ------- null} h -t 3.89029 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6859 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.89043 -s 0 -d 9 -p ack -e 40 -c 0 -i 6866 -a 0 -x {10.0 9.0 3428 ------- null} - -t 3.89043 -s 0 -d 9 -p ack -e 40 -c 0 -i 6866 -a 0 -x {10.0 9.0 3428 ------- null} h -t 3.89043 -s 0 -d 9 -p ack -e 40 -c 0 -i 6866 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.8907 -s 10 -d 7 -p ack -e 40 -c 0 -i 6870 -a 0 -x {10.0 9.0 3430 ------- null} + -t 3.8907 -s 7 -d 0 -p ack -e 40 -c 0 -i 6870 -a 0 -x {10.0 9.0 3430 ------- null} h -t 3.8907 -s 7 -d 8 -p ack -e 40 -c 0 -i 6870 -a 0 -x {10.0 9.0 3430 ------- null} r -t 3.89085 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6855 -a 0 -x {9.0 10.0 3432 ------- null} + -t 3.89085 -s 10 -d 7 -p ack -e 40 -c 0 -i 6874 -a 0 -x {10.0 9.0 3432 ------- null} - -t 3.89085 -s 10 -d 7 -p ack -e 40 -c 0 -i 6874 -a 0 -x {10.0 9.0 3432 ------- null} h -t 3.89085 -s 10 -d 7 -p ack -e 40 -c 0 -i 6874 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.89093 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6869 -a 0 -x {9.0 10.0 3439 ------- null} + -t 3.89093 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6869 -a 0 -x {9.0 10.0 3439 ------- null} h -t 3.89093 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6869 -a 0 -x {9.0 10.0 3439 ------- null} + -t 3.89138 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6861 -a 0 -x {9.0 10.0 3435 ------- null} - -t 3.89138 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6861 -a 0 -x {9.0 10.0 3435 ------- null} h -t 3.89138 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6861 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.89147 -s 0 -d 9 -p ack -e 40 -c 0 -i 6864 -a 0 -x {10.0 9.0 3427 ------- null} + -t 3.89147 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6875 -a 0 -x {9.0 10.0 3442 ------- null} - -t 3.89147 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6875 -a 0 -x {9.0 10.0 3442 ------- null} h -t 3.89147 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6875 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.89168 -s 0 -d 9 -p ack -e 40 -c 0 -i 6868 -a 0 -x {10.0 9.0 3429 ------- null} - -t 3.89168 -s 0 -d 9 -p ack -e 40 -c 0 -i 6868 -a 0 -x {10.0 9.0 3429 ------- null} h -t 3.89168 -s 0 -d 9 -p ack -e 40 -c 0 -i 6868 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.89179 -s 10 -d 7 -p ack -e 40 -c 0 -i 6872 -a 0 -x {10.0 9.0 3431 ------- null} + -t 3.89179 -s 7 -d 0 -p ack -e 40 -c 0 -i 6872 -a 0 -x {10.0 9.0 3431 ------- null} h -t 3.89179 -s 7 -d 8 -p ack -e 40 -c 0 -i 6872 -a 0 -x {10.0 9.0 3431 ------- null} r -t 3.89186 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6871 -a 0 -x {9.0 10.0 3440 ------- null} + -t 3.89186 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6871 -a 0 -x {9.0 10.0 3440 ------- null} h -t 3.89186 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6871 -a 0 -x {9.0 10.0 3440 ------- null} r -t 3.89194 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6857 -a 0 -x {9.0 10.0 3433 ------- null} + -t 3.89194 -s 10 -d 7 -p ack -e 40 -c 0 -i 6876 -a 0 -x {10.0 9.0 3433 ------- null} - -t 3.89194 -s 10 -d 7 -p ack -e 40 -c 0 -i 6876 -a 0 -x {10.0 9.0 3433 ------- null} h -t 3.89194 -s 10 -d 7 -p ack -e 40 -c 0 -i 6876 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.89246 -s 0 -d 9 -p ack -e 40 -c 0 -i 6866 -a 0 -x {10.0 9.0 3428 ------- null} + -t 3.89246 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6877 -a 0 -x {9.0 10.0 3443 ------- null} - -t 3.89246 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6877 -a 0 -x {9.0 10.0 3443 ------- null} h -t 3.89246 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6877 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.89256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6863 -a 0 -x {9.0 10.0 3436 ------- null} - -t 3.89256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6863 -a 0 -x {9.0 10.0 3436 ------- null} h -t 3.89256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6863 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.89283 -s 0 -d 9 -p ack -e 40 -c 0 -i 6870 -a 0 -x {10.0 9.0 3430 ------- null} - -t 3.89283 -s 0 -d 9 -p ack -e 40 -c 0 -i 6870 -a 0 -x {10.0 9.0 3430 ------- null} h -t 3.89283 -s 0 -d 9 -p ack -e 40 -c 0 -i 6870 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.89288 -s 10 -d 7 -p ack -e 40 -c 0 -i 6874 -a 0 -x {10.0 9.0 3432 ------- null} + -t 3.89288 -s 7 -d 0 -p ack -e 40 -c 0 -i 6874 -a 0 -x {10.0 9.0 3432 ------- null} h -t 3.89288 -s 7 -d 8 -p ack -e 40 -c 0 -i 6874 -a 0 -x {10.0 9.0 3432 ------- null} r -t 3.89298 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6873 -a 0 -x {9.0 10.0 3441 ------- null} + -t 3.89298 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6873 -a 0 -x {9.0 10.0 3441 ------- null} h -t 3.89298 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6873 -a 0 -x {9.0 10.0 3441 ------- null} r -t 3.89309 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6859 -a 0 -x {9.0 10.0 3434 ------- null} + -t 3.89309 -s 10 -d 7 -p ack -e 40 -c 0 -i 6878 -a 0 -x {10.0 9.0 3434 ------- null} - -t 3.89309 -s 10 -d 7 -p ack -e 40 -c 0 -i 6878 -a 0 -x {10.0 9.0 3434 ------- null} h -t 3.89309 -s 10 -d 7 -p ack -e 40 -c 0 -i 6878 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.89368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6865 -a 0 -x {9.0 10.0 3437 ------- null} - -t 3.89368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6865 -a 0 -x {9.0 10.0 3437 ------- null} h -t 3.89368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6865 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.89371 -s 0 -d 9 -p ack -e 40 -c 0 -i 6868 -a 0 -x {10.0 9.0 3429 ------- null} + -t 3.89371 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6879 -a 0 -x {9.0 10.0 3444 ------- null} - -t 3.89371 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6879 -a 0 -x {9.0 10.0 3444 ------- null} h -t 3.89371 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6879 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.89381 -s 0 -d 9 -p ack -e 40 -c 0 -i 6872 -a 0 -x {10.0 9.0 3431 ------- null} - -t 3.89381 -s 0 -d 9 -p ack -e 40 -c 0 -i 6872 -a 0 -x {10.0 9.0 3431 ------- null} h -t 3.89381 -s 0 -d 9 -p ack -e 40 -c 0 -i 6872 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.89397 -s 10 -d 7 -p ack -e 40 -c 0 -i 6876 -a 0 -x {10.0 9.0 3433 ------- null} + -t 3.89397 -s 7 -d 0 -p ack -e 40 -c 0 -i 6876 -a 0 -x {10.0 9.0 3433 ------- null} h -t 3.89397 -s 7 -d 8 -p ack -e 40 -c 0 -i 6876 -a 0 -x {10.0 9.0 3433 ------- null} r -t 3.89418 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6861 -a 0 -x {9.0 10.0 3435 ------- null} + -t 3.89418 -s 10 -d 7 -p ack -e 40 -c 0 -i 6880 -a 0 -x {10.0 9.0 3435 ------- null} - -t 3.89418 -s 10 -d 7 -p ack -e 40 -c 0 -i 6880 -a 0 -x {10.0 9.0 3435 ------- null} h -t 3.89418 -s 10 -d 7 -p ack -e 40 -c 0 -i 6880 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.89427 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6875 -a 0 -x {9.0 10.0 3442 ------- null} + -t 3.89427 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6875 -a 0 -x {9.0 10.0 3442 ------- null} h -t 3.89427 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6875 -a 0 -x {9.0 10.0 3442 ------- null} + -t 3.89477 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6867 -a 0 -x {9.0 10.0 3438 ------- null} - -t 3.89477 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6867 -a 0 -x {9.0 10.0 3438 ------- null} h -t 3.89477 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6867 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.89486 -s 0 -d 9 -p ack -e 40 -c 0 -i 6870 -a 0 -x {10.0 9.0 3430 ------- null} + -t 3.89486 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6881 -a 0 -x {9.0 10.0 3445 ------- null} - -t 3.89486 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6881 -a 0 -x {9.0 10.0 3445 ------- null} h -t 3.89486 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6881 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.89496 -s 0 -d 9 -p ack -e 40 -c 0 -i 6874 -a 0 -x {10.0 9.0 3432 ------- null} - -t 3.89496 -s 0 -d 9 -p ack -e 40 -c 0 -i 6874 -a 0 -x {10.0 9.0 3432 ------- null} h -t 3.89496 -s 0 -d 9 -p ack -e 40 -c 0 -i 6874 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.89512 -s 10 -d 7 -p ack -e 40 -c 0 -i 6878 -a 0 -x {10.0 9.0 3434 ------- null} + -t 3.89512 -s 7 -d 0 -p ack -e 40 -c 0 -i 6878 -a 0 -x {10.0 9.0 3434 ------- null} h -t 3.89512 -s 7 -d 8 -p ack -e 40 -c 0 -i 6878 -a 0 -x {10.0 9.0 3434 ------- null} r -t 3.89526 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6877 -a 0 -x {9.0 10.0 3443 ------- null} + -t 3.89526 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6877 -a 0 -x {9.0 10.0 3443 ------- null} h -t 3.89526 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6877 -a 0 -x {9.0 10.0 3443 ------- null} r -t 3.89536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6863 -a 0 -x {9.0 10.0 3436 ------- null} + -t 3.89536 -s 10 -d 7 -p ack -e 40 -c 0 -i 6882 -a 0 -x {10.0 9.0 3436 ------- null} - -t 3.89536 -s 10 -d 7 -p ack -e 40 -c 0 -i 6882 -a 0 -x {10.0 9.0 3436 ------- null} h -t 3.89536 -s 10 -d 7 -p ack -e 40 -c 0 -i 6882 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.89584 -s 0 -d 9 -p ack -e 40 -c 0 -i 6872 -a 0 -x {10.0 9.0 3431 ------- null} + -t 3.89584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6883 -a 0 -x {9.0 10.0 3446 ------- null} - -t 3.89584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6883 -a 0 -x {9.0 10.0 3446 ------- null} h -t 3.89584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6883 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.89586 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6869 -a 0 -x {9.0 10.0 3439 ------- null} - -t 3.89586 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6869 -a 0 -x {9.0 10.0 3439 ------- null} h -t 3.89586 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6869 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.89606 -s 0 -d 9 -p ack -e 40 -c 0 -i 6876 -a 0 -x {10.0 9.0 3433 ------- null} - -t 3.89606 -s 0 -d 9 -p ack -e 40 -c 0 -i 6876 -a 0 -x {10.0 9.0 3433 ------- null} h -t 3.89606 -s 0 -d 9 -p ack -e 40 -c 0 -i 6876 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.89621 -s 10 -d 7 -p ack -e 40 -c 0 -i 6880 -a 0 -x {10.0 9.0 3435 ------- null} + -t 3.89621 -s 7 -d 0 -p ack -e 40 -c 0 -i 6880 -a 0 -x {10.0 9.0 3435 ------- null} h -t 3.89621 -s 7 -d 8 -p ack -e 40 -c 0 -i 6880 -a 0 -x {10.0 9.0 3435 ------- null} r -t 3.89648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6865 -a 0 -x {9.0 10.0 3437 ------- null} + -t 3.89648 -s 10 -d 7 -p ack -e 40 -c 0 -i 6884 -a 0 -x {10.0 9.0 3437 ------- null} - -t 3.89648 -s 10 -d 7 -p ack -e 40 -c 0 -i 6884 -a 0 -x {10.0 9.0 3437 ------- null} h -t 3.89648 -s 10 -d 7 -p ack -e 40 -c 0 -i 6884 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.89651 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6879 -a 0 -x {9.0 10.0 3444 ------- null} + -t 3.89651 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6879 -a 0 -x {9.0 10.0 3444 ------- null} h -t 3.89651 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6879 -a 0 -x {9.0 10.0 3444 ------- null} + -t 3.89694 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6871 -a 0 -x {9.0 10.0 3440 ------- null} - -t 3.89694 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6871 -a 0 -x {9.0 10.0 3440 ------- null} h -t 3.89694 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6871 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.89699 -s 0 -d 9 -p ack -e 40 -c 0 -i 6874 -a 0 -x {10.0 9.0 3432 ------- null} + -t 3.89699 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6885 -a 0 -x {9.0 10.0 3447 ------- null} - -t 3.89699 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6885 -a 0 -x {9.0 10.0 3447 ------- null} h -t 3.89699 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6885 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.89702 -s 0 -d 9 -p ack -e 40 -c 0 -i 6878 -a 0 -x {10.0 9.0 3434 ------- null} - -t 3.89702 -s 0 -d 9 -p ack -e 40 -c 0 -i 6878 -a 0 -x {10.0 9.0 3434 ------- null} h -t 3.89702 -s 0 -d 9 -p ack -e 40 -c 0 -i 6878 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.89739 -s 10 -d 7 -p ack -e 40 -c 0 -i 6882 -a 0 -x {10.0 9.0 3436 ------- null} + -t 3.89739 -s 7 -d 0 -p ack -e 40 -c 0 -i 6882 -a 0 -x {10.0 9.0 3436 ------- null} h -t 3.89739 -s 7 -d 8 -p ack -e 40 -c 0 -i 6882 -a 0 -x {10.0 9.0 3436 ------- null} r -t 3.89757 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6867 -a 0 -x {9.0 10.0 3438 ------- null} + -t 3.89757 -s 10 -d 7 -p ack -e 40 -c 0 -i 6886 -a 0 -x {10.0 9.0 3438 ------- null} - -t 3.89757 -s 10 -d 7 -p ack -e 40 -c 0 -i 6886 -a 0 -x {10.0 9.0 3438 ------- null} h -t 3.89757 -s 10 -d 7 -p ack -e 40 -c 0 -i 6886 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.89766 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6881 -a 0 -x {9.0 10.0 3445 ------- null} + -t 3.89766 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6881 -a 0 -x {9.0 10.0 3445 ------- null} h -t 3.89766 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6881 -a 0 -x {9.0 10.0 3445 ------- null} + -t 3.89803 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6873 -a 0 -x {9.0 10.0 3441 ------- null} - -t 3.89803 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6873 -a 0 -x {9.0 10.0 3441 ------- null} h -t 3.89803 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6873 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.8981 -s 0 -d 9 -p ack -e 40 -c 0 -i 6876 -a 0 -x {10.0 9.0 3433 ------- null} + -t 3.8981 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6887 -a 0 -x {9.0 10.0 3448 ------- null} - -t 3.8981 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6887 -a 0 -x {9.0 10.0 3448 ------- null} h -t 3.8981 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6887 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.89821 -s 0 -d 9 -p ack -e 40 -c 0 -i 6880 -a 0 -x {10.0 9.0 3435 ------- null} - -t 3.89821 -s 0 -d 9 -p ack -e 40 -c 0 -i 6880 -a 0 -x {10.0 9.0 3435 ------- null} h -t 3.89821 -s 0 -d 9 -p ack -e 40 -c 0 -i 6880 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.89851 -s 10 -d 7 -p ack -e 40 -c 0 -i 6884 -a 0 -x {10.0 9.0 3437 ------- null} + -t 3.89851 -s 7 -d 0 -p ack -e 40 -c 0 -i 6884 -a 0 -x {10.0 9.0 3437 ------- null} h -t 3.89851 -s 7 -d 8 -p ack -e 40 -c 0 -i 6884 -a 0 -x {10.0 9.0 3437 ------- null} r -t 3.89864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6883 -a 0 -x {9.0 10.0 3446 ------- null} + -t 3.89864 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6883 -a 0 -x {9.0 10.0 3446 ------- null} h -t 3.89864 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6883 -a 0 -x {9.0 10.0 3446 ------- null} r -t 3.89866 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6869 -a 0 -x {9.0 10.0 3439 ------- null} + -t 3.89866 -s 10 -d 7 -p ack -e 40 -c 0 -i 6888 -a 0 -x {10.0 9.0 3439 ------- null} - -t 3.89866 -s 10 -d 7 -p ack -e 40 -c 0 -i 6888 -a 0 -x {10.0 9.0 3439 ------- null} h -t 3.89866 -s 10 -d 7 -p ack -e 40 -c 0 -i 6888 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.89906 -s 0 -d 9 -p ack -e 40 -c 0 -i 6878 -a 0 -x {10.0 9.0 3434 ------- null} + -t 3.89906 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6889 -a 0 -x {9.0 10.0 3449 ------- null} - -t 3.89906 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6889 -a 0 -x {9.0 10.0 3449 ------- null} h -t 3.89906 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6889 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.89912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6875 -a 0 -x {9.0 10.0 3442 ------- null} - -t 3.89912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6875 -a 0 -x {9.0 10.0 3442 ------- null} h -t 3.89912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6875 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.89923 -s 0 -d 9 -p ack -e 40 -c 0 -i 6882 -a 0 -x {10.0 9.0 3436 ------- null} - -t 3.89923 -s 0 -d 9 -p ack -e 40 -c 0 -i 6882 -a 0 -x {10.0 9.0 3436 ------- null} h -t 3.89923 -s 0 -d 9 -p ack -e 40 -c 0 -i 6882 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.8996 -s 10 -d 7 -p ack -e 40 -c 0 -i 6886 -a 0 -x {10.0 9.0 3438 ------- null} + -t 3.8996 -s 7 -d 0 -p ack -e 40 -c 0 -i 6886 -a 0 -x {10.0 9.0 3438 ------- null} h -t 3.8996 -s 7 -d 8 -p ack -e 40 -c 0 -i 6886 -a 0 -x {10.0 9.0 3438 ------- null} r -t 3.89974 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6871 -a 0 -x {9.0 10.0 3440 ------- null} + -t 3.89974 -s 10 -d 7 -p ack -e 40 -c 0 -i 6890 -a 0 -x {10.0 9.0 3440 ------- null} - -t 3.89974 -s 10 -d 7 -p ack -e 40 -c 0 -i 6890 -a 0 -x {10.0 9.0 3440 ------- null} h -t 3.89974 -s 10 -d 7 -p ack -e 40 -c 0 -i 6890 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.89979 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6885 -a 0 -x {9.0 10.0 3447 ------- null} + -t 3.89979 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6885 -a 0 -x {9.0 10.0 3447 ------- null} h -t 3.89979 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6885 -a 0 -x {9.0 10.0 3447 ------- null} + -t 3.90021 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6877 -a 0 -x {9.0 10.0 3443 ------- null} - -t 3.90021 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6877 -a 0 -x {9.0 10.0 3443 ------- null} h -t 3.90021 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6877 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.90024 -s 0 -d 9 -p ack -e 40 -c 0 -i 6880 -a 0 -x {10.0 9.0 3435 ------- null} + -t 3.90024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6891 -a 0 -x {9.0 10.0 3450 ------- null} - -t 3.90024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6891 -a 0 -x {9.0 10.0 3450 ------- null} h -t 3.90024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6891 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.9004 -s 0 -d 9 -p ack -e 40 -c 0 -i 6884 -a 0 -x {10.0 9.0 3437 ------- null} - -t 3.9004 -s 0 -d 9 -p ack -e 40 -c 0 -i 6884 -a 0 -x {10.0 9.0 3437 ------- null} h -t 3.9004 -s 0 -d 9 -p ack -e 40 -c 0 -i 6884 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.90069 -s 10 -d 7 -p ack -e 40 -c 0 -i 6888 -a 0 -x {10.0 9.0 3439 ------- null} + -t 3.90069 -s 7 -d 0 -p ack -e 40 -c 0 -i 6888 -a 0 -x {10.0 9.0 3439 ------- null} h -t 3.90069 -s 7 -d 8 -p ack -e 40 -c 0 -i 6888 -a 0 -x {10.0 9.0 3439 ------- null} r -t 3.90083 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6873 -a 0 -x {9.0 10.0 3441 ------- null} + -t 3.90083 -s 10 -d 7 -p ack -e 40 -c 0 -i 6892 -a 0 -x {10.0 9.0 3441 ------- null} - -t 3.90083 -s 10 -d 7 -p ack -e 40 -c 0 -i 6892 -a 0 -x {10.0 9.0 3441 ------- null} h -t 3.90083 -s 10 -d 7 -p ack -e 40 -c 0 -i 6892 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.9009 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6887 -a 0 -x {9.0 10.0 3448 ------- null} + -t 3.9009 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6887 -a 0 -x {9.0 10.0 3448 ------- null} h -t 3.9009 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6887 -a 0 -x {9.0 10.0 3448 ------- null} r -t 3.90126 -s 0 -d 9 -p ack -e 40 -c 0 -i 6882 -a 0 -x {10.0 9.0 3436 ------- null} + -t 3.90126 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6893 -a 0 -x {9.0 10.0 3451 ------- null} - -t 3.90126 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6893 -a 0 -x {9.0 10.0 3451 ------- null} h -t 3.90126 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6893 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.9013 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6879 -a 0 -x {9.0 10.0 3444 ------- null} - -t 3.9013 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6879 -a 0 -x {9.0 10.0 3444 ------- null} h -t 3.9013 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6879 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.9015 -s 0 -d 9 -p ack -e 40 -c 0 -i 6886 -a 0 -x {10.0 9.0 3438 ------- null} - -t 3.9015 -s 0 -d 9 -p ack -e 40 -c 0 -i 6886 -a 0 -x {10.0 9.0 3438 ------- null} h -t 3.9015 -s 0 -d 9 -p ack -e 40 -c 0 -i 6886 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.90178 -s 10 -d 7 -p ack -e 40 -c 0 -i 6890 -a 0 -x {10.0 9.0 3440 ------- null} + -t 3.90178 -s 7 -d 0 -p ack -e 40 -c 0 -i 6890 -a 0 -x {10.0 9.0 3440 ------- null} h -t 3.90178 -s 7 -d 8 -p ack -e 40 -c 0 -i 6890 -a 0 -x {10.0 9.0 3440 ------- null} r -t 3.90186 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6889 -a 0 -x {9.0 10.0 3449 ------- null} + -t 3.90186 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6889 -a 0 -x {9.0 10.0 3449 ------- null} h -t 3.90186 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6889 -a 0 -x {9.0 10.0 3449 ------- null} r -t 3.90192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6875 -a 0 -x {9.0 10.0 3442 ------- null} + -t 3.90192 -s 10 -d 7 -p ack -e 40 -c 0 -i 6894 -a 0 -x {10.0 9.0 3442 ------- null} - -t 3.90192 -s 10 -d 7 -p ack -e 40 -c 0 -i 6894 -a 0 -x {10.0 9.0 3442 ------- null} h -t 3.90192 -s 10 -d 7 -p ack -e 40 -c 0 -i 6894 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.90238 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6881 -a 0 -x {9.0 10.0 3445 ------- null} - -t 3.90238 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6881 -a 0 -x {9.0 10.0 3445 ------- null} h -t 3.90238 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6881 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.90243 -s 0 -d 9 -p ack -e 40 -c 0 -i 6884 -a 0 -x {10.0 9.0 3437 ------- null} + -t 3.90243 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6895 -a 0 -x {9.0 10.0 3452 ------- null} - -t 3.90243 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6895 -a 0 -x {9.0 10.0 3452 ------- null} h -t 3.90243 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6895 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.9025 -s 0 -d 9 -p ack -e 40 -c 0 -i 6888 -a 0 -x {10.0 9.0 3439 ------- null} - -t 3.9025 -s 0 -d 9 -p ack -e 40 -c 0 -i 6888 -a 0 -x {10.0 9.0 3439 ------- null} h -t 3.9025 -s 0 -d 9 -p ack -e 40 -c 0 -i 6888 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.90286 -s 10 -d 7 -p ack -e 40 -c 0 -i 6892 -a 0 -x {10.0 9.0 3441 ------- null} + -t 3.90286 -s 7 -d 0 -p ack -e 40 -c 0 -i 6892 -a 0 -x {10.0 9.0 3441 ------- null} h -t 3.90286 -s 7 -d 8 -p ack -e 40 -c 0 -i 6892 -a 0 -x {10.0 9.0 3441 ------- null} r -t 3.90301 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6877 -a 0 -x {9.0 10.0 3443 ------- null} + -t 3.90301 -s 10 -d 7 -p ack -e 40 -c 0 -i 6896 -a 0 -x {10.0 9.0 3443 ------- null} - -t 3.90301 -s 10 -d 7 -p ack -e 40 -c 0 -i 6896 -a 0 -x {10.0 9.0 3443 ------- null} h -t 3.90301 -s 10 -d 7 -p ack -e 40 -c 0 -i 6896 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.90304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6891 -a 0 -x {9.0 10.0 3450 ------- null} + -t 3.90304 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6891 -a 0 -x {9.0 10.0 3450 ------- null} h -t 3.90304 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6891 -a 0 -x {9.0 10.0 3450 ------- null} + -t 3.90347 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6883 -a 0 -x {9.0 10.0 3446 ------- null} - -t 3.90347 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6883 -a 0 -x {9.0 10.0 3446 ------- null} h -t 3.90347 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6883 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.90354 -s 0 -d 9 -p ack -e 40 -c 0 -i 6890 -a 0 -x {10.0 9.0 3440 ------- null} - -t 3.90354 -s 0 -d 9 -p ack -e 40 -c 0 -i 6890 -a 0 -x {10.0 9.0 3440 ------- null} h -t 3.90354 -s 0 -d 9 -p ack -e 40 -c 0 -i 6890 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.90354 -s 0 -d 9 -p ack -e 40 -c 0 -i 6886 -a 0 -x {10.0 9.0 3438 ------- null} + -t 3.90354 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6897 -a 0 -x {9.0 10.0 3453 ------- null} - -t 3.90354 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6897 -a 0 -x {9.0 10.0 3453 ------- null} h -t 3.90354 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6897 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.90395 -s 10 -d 7 -p ack -e 40 -c 0 -i 6894 -a 0 -x {10.0 9.0 3442 ------- null} + -t 3.90395 -s 7 -d 0 -p ack -e 40 -c 0 -i 6894 -a 0 -x {10.0 9.0 3442 ------- null} h -t 3.90395 -s 7 -d 8 -p ack -e 40 -c 0 -i 6894 -a 0 -x {10.0 9.0 3442 ------- null} r -t 3.90406 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6893 -a 0 -x {9.0 10.0 3451 ------- null} + -t 3.90406 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6893 -a 0 -x {9.0 10.0 3451 ------- null} h -t 3.90406 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6893 -a 0 -x {9.0 10.0 3451 ------- null} r -t 3.9041 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6879 -a 0 -x {9.0 10.0 3444 ------- null} + -t 3.9041 -s 10 -d 7 -p ack -e 40 -c 0 -i 6898 -a 0 -x {10.0 9.0 3444 ------- null} - -t 3.9041 -s 10 -d 7 -p ack -e 40 -c 0 -i 6898 -a 0 -x {10.0 9.0 3444 ------- null} h -t 3.9041 -s 10 -d 7 -p ack -e 40 -c 0 -i 6898 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.90453 -s 0 -d 9 -p ack -e 40 -c 0 -i 6888 -a 0 -x {10.0 9.0 3439 ------- null} + -t 3.90453 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6899 -a 0 -x {9.0 10.0 3454 ------- null} - -t 3.90453 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6899 -a 0 -x {9.0 10.0 3454 ------- null} h -t 3.90453 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6899 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.90456 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6885 -a 0 -x {9.0 10.0 3447 ------- null} - -t 3.90456 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6885 -a 0 -x {9.0 10.0 3447 ------- null} h -t 3.90456 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6885 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.9048 -s 0 -d 9 -p ack -e 40 -c 0 -i 6892 -a 0 -x {10.0 9.0 3441 ------- null} - -t 3.9048 -s 0 -d 9 -p ack -e 40 -c 0 -i 6892 -a 0 -x {10.0 9.0 3441 ------- null} h -t 3.9048 -s 0 -d 9 -p ack -e 40 -c 0 -i 6892 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.90504 -s 10 -d 7 -p ack -e 40 -c 0 -i 6896 -a 0 -x {10.0 9.0 3443 ------- null} + -t 3.90504 -s 7 -d 0 -p ack -e 40 -c 0 -i 6896 -a 0 -x {10.0 9.0 3443 ------- null} h -t 3.90504 -s 7 -d 8 -p ack -e 40 -c 0 -i 6896 -a 0 -x {10.0 9.0 3443 ------- null} r -t 3.90518 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6881 -a 0 -x {9.0 10.0 3445 ------- null} + -t 3.90518 -s 10 -d 7 -p ack -e 40 -c 0 -i 6900 -a 0 -x {10.0 9.0 3445 ------- null} - -t 3.90518 -s 10 -d 7 -p ack -e 40 -c 0 -i 6900 -a 0 -x {10.0 9.0 3445 ------- null} h -t 3.90518 -s 10 -d 7 -p ack -e 40 -c 0 -i 6900 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.90523 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6895 -a 0 -x {9.0 10.0 3452 ------- null} + -t 3.90523 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6895 -a 0 -x {9.0 10.0 3452 ------- null} h -t 3.90523 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6895 -a 0 -x {9.0 10.0 3452 ------- null} r -t 3.90557 -s 0 -d 9 -p ack -e 40 -c 0 -i 6890 -a 0 -x {10.0 9.0 3440 ------- null} + -t 3.90557 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6901 -a 0 -x {9.0 10.0 3455 ------- null} - -t 3.90557 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6901 -a 0 -x {9.0 10.0 3455 ------- null} h -t 3.90557 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6901 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.90565 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6887 -a 0 -x {9.0 10.0 3448 ------- null} - -t 3.90565 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6887 -a 0 -x {9.0 10.0 3448 ------- null} h -t 3.90565 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6887 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.90582 -s 0 -d 9 -p ack -e 40 -c 0 -i 6894 -a 0 -x {10.0 9.0 3442 ------- null} - -t 3.90582 -s 0 -d 9 -p ack -e 40 -c 0 -i 6894 -a 0 -x {10.0 9.0 3442 ------- null} h -t 3.90582 -s 0 -d 9 -p ack -e 40 -c 0 -i 6894 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.90613 -s 10 -d 7 -p ack -e 40 -c 0 -i 6898 -a 0 -x {10.0 9.0 3444 ------- null} + -t 3.90613 -s 7 -d 0 -p ack -e 40 -c 0 -i 6898 -a 0 -x {10.0 9.0 3444 ------- null} h -t 3.90613 -s 7 -d 8 -p ack -e 40 -c 0 -i 6898 -a 0 -x {10.0 9.0 3444 ------- null} r -t 3.90627 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6883 -a 0 -x {9.0 10.0 3446 ------- null} + -t 3.90627 -s 10 -d 7 -p ack -e 40 -c 0 -i 6902 -a 0 -x {10.0 9.0 3446 ------- null} - -t 3.90627 -s 10 -d 7 -p ack -e 40 -c 0 -i 6902 -a 0 -x {10.0 9.0 3446 ------- null} h -t 3.90627 -s 10 -d 7 -p ack -e 40 -c 0 -i 6902 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.90634 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6897 -a 0 -x {9.0 10.0 3453 ------- null} + -t 3.90634 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6897 -a 0 -x {9.0 10.0 3453 ------- null} h -t 3.90634 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6897 -a 0 -x {9.0 10.0 3453 ------- null} + -t 3.90674 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6889 -a 0 -x {9.0 10.0 3449 ------- null} - -t 3.90674 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6889 -a 0 -x {9.0 10.0 3449 ------- null} h -t 3.90674 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6889 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.90683 -s 0 -d 9 -p ack -e 40 -c 0 -i 6892 -a 0 -x {10.0 9.0 3441 ------- null} + -t 3.90683 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6903 -a 0 -x {9.0 10.0 3456 ------- null} - -t 3.90683 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6903 -a 0 -x {9.0 10.0 3456 ------- null} h -t 3.90683 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6903 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.9069 -s 0 -d 9 -p ack -e 40 -c 0 -i 6896 -a 0 -x {10.0 9.0 3443 ------- null} - -t 3.9069 -s 0 -d 9 -p ack -e 40 -c 0 -i 6896 -a 0 -x {10.0 9.0 3443 ------- null} h -t 3.9069 -s 0 -d 9 -p ack -e 40 -c 0 -i 6896 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.90722 -s 10 -d 7 -p ack -e 40 -c 0 -i 6900 -a 0 -x {10.0 9.0 3445 ------- null} + -t 3.90722 -s 7 -d 0 -p ack -e 40 -c 0 -i 6900 -a 0 -x {10.0 9.0 3445 ------- null} h -t 3.90722 -s 7 -d 8 -p ack -e 40 -c 0 -i 6900 -a 0 -x {10.0 9.0 3445 ------- null} r -t 3.90733 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6899 -a 0 -x {9.0 10.0 3454 ------- null} + -t 3.90733 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6899 -a 0 -x {9.0 10.0 3454 ------- null} h -t 3.90733 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6899 -a 0 -x {9.0 10.0 3454 ------- null} r -t 3.90736 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6885 -a 0 -x {9.0 10.0 3447 ------- null} + -t 3.90736 -s 10 -d 7 -p ack -e 40 -c 0 -i 6904 -a 0 -x {10.0 9.0 3447 ------- null} - -t 3.90736 -s 10 -d 7 -p ack -e 40 -c 0 -i 6904 -a 0 -x {10.0 9.0 3447 ------- null} h -t 3.90736 -s 10 -d 7 -p ack -e 40 -c 0 -i 6904 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.90782 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6891 -a 0 -x {9.0 10.0 3450 ------- null} - -t 3.90782 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6891 -a 0 -x {9.0 10.0 3450 ------- null} h -t 3.90782 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6891 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.90786 -s 0 -d 9 -p ack -e 40 -c 0 -i 6894 -a 0 -x {10.0 9.0 3442 ------- null} + -t 3.90786 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6905 -a 0 -x {9.0 10.0 3457 ------- null} - -t 3.90786 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6905 -a 0 -x {9.0 10.0 3457 ------- null} h -t 3.90786 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6905 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.90794 -s 0 -d 9 -p ack -e 40 -c 0 -i 6898 -a 0 -x {10.0 9.0 3444 ------- null} - -t 3.90794 -s 0 -d 9 -p ack -e 40 -c 0 -i 6898 -a 0 -x {10.0 9.0 3444 ------- null} h -t 3.90794 -s 0 -d 9 -p ack -e 40 -c 0 -i 6898 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.9083 -s 10 -d 7 -p ack -e 40 -c 0 -i 6902 -a 0 -x {10.0 9.0 3446 ------- null} + -t 3.9083 -s 7 -d 0 -p ack -e 40 -c 0 -i 6902 -a 0 -x {10.0 9.0 3446 ------- null} h -t 3.9083 -s 7 -d 8 -p ack -e 40 -c 0 -i 6902 -a 0 -x {10.0 9.0 3446 ------- null} r -t 3.90837 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6901 -a 0 -x {9.0 10.0 3455 ------- null} + -t 3.90837 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6901 -a 0 -x {9.0 10.0 3455 ------- null} h -t 3.90837 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6901 -a 0 -x {9.0 10.0 3455 ------- null} r -t 3.90845 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6887 -a 0 -x {9.0 10.0 3448 ------- null} + -t 3.90845 -s 10 -d 7 -p ack -e 40 -c 0 -i 6906 -a 0 -x {10.0 9.0 3448 ------- null} - -t 3.90845 -s 10 -d 7 -p ack -e 40 -c 0 -i 6906 -a 0 -x {10.0 9.0 3448 ------- null} h -t 3.90845 -s 10 -d 7 -p ack -e 40 -c 0 -i 6906 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.90891 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6893 -a 0 -x {9.0 10.0 3451 ------- null} - -t 3.90891 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6893 -a 0 -x {9.0 10.0 3451 ------- null} h -t 3.90891 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6893 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.90893 -s 0 -d 9 -p ack -e 40 -c 0 -i 6896 -a 0 -x {10.0 9.0 3443 ------- null} + -t 3.90893 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6907 -a 0 -x {9.0 10.0 3458 ------- null} - -t 3.90893 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6907 -a 0 -x {9.0 10.0 3458 ------- null} h -t 3.90893 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6907 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.90898 -s 0 -d 9 -p ack -e 40 -c 0 -i 6900 -a 0 -x {10.0 9.0 3445 ------- null} - -t 3.90898 -s 0 -d 9 -p ack -e 40 -c 0 -i 6900 -a 0 -x {10.0 9.0 3445 ------- null} h -t 3.90898 -s 0 -d 9 -p ack -e 40 -c 0 -i 6900 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.90939 -s 10 -d 7 -p ack -e 40 -c 0 -i 6904 -a 0 -x {10.0 9.0 3447 ------- null} + -t 3.90939 -s 7 -d 0 -p ack -e 40 -c 0 -i 6904 -a 0 -x {10.0 9.0 3447 ------- null} h -t 3.90939 -s 7 -d 8 -p ack -e 40 -c 0 -i 6904 -a 0 -x {10.0 9.0 3447 ------- null} r -t 3.90954 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6889 -a 0 -x {9.0 10.0 3449 ------- null} + -t 3.90954 -s 10 -d 7 -p ack -e 40 -c 0 -i 6908 -a 0 -x {10.0 9.0 3449 ------- null} - -t 3.90954 -s 10 -d 7 -p ack -e 40 -c 0 -i 6908 -a 0 -x {10.0 9.0 3449 ------- null} h -t 3.90954 -s 10 -d 7 -p ack -e 40 -c 0 -i 6908 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.90963 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6903 -a 0 -x {9.0 10.0 3456 ------- null} + -t 3.90963 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6903 -a 0 -x {9.0 10.0 3456 ------- null} h -t 3.90963 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6903 -a 0 -x {9.0 10.0 3456 ------- null} r -t 3.90997 -s 0 -d 9 -p ack -e 40 -c 0 -i 6898 -a 0 -x {10.0 9.0 3444 ------- null} + -t 3.90997 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6909 -a 0 -x {9.0 10.0 3459 ------- null} - -t 3.90997 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6909 -a 0 -x {9.0 10.0 3459 ------- null} h -t 3.90997 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6909 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.91 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6895 -a 0 -x {9.0 10.0 3452 ------- null} - -t 3.91 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6895 -a 0 -x {9.0 10.0 3452 ------- null} h -t 3.91 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6895 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.9103 -s 0 -d 9 -p ack -e 40 -c 0 -i 6902 -a 0 -x {10.0 9.0 3446 ------- null} - -t 3.9103 -s 0 -d 9 -p ack -e 40 -c 0 -i 6902 -a 0 -x {10.0 9.0 3446 ------- null} h -t 3.9103 -s 0 -d 9 -p ack -e 40 -c 0 -i 6902 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.91048 -s 10 -d 7 -p ack -e 40 -c 0 -i 6906 -a 0 -x {10.0 9.0 3448 ------- null} + -t 3.91048 -s 7 -d 0 -p ack -e 40 -c 0 -i 6906 -a 0 -x {10.0 9.0 3448 ------- null} h -t 3.91048 -s 7 -d 8 -p ack -e 40 -c 0 -i 6906 -a 0 -x {10.0 9.0 3448 ------- null} r -t 3.91062 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6891 -a 0 -x {9.0 10.0 3450 ------- null} + -t 3.91062 -s 10 -d 7 -p ack -e 40 -c 0 -i 6910 -a 0 -x {10.0 9.0 3450 ------- null} - -t 3.91062 -s 10 -d 7 -p ack -e 40 -c 0 -i 6910 -a 0 -x {10.0 9.0 3450 ------- null} h -t 3.91062 -s 10 -d 7 -p ack -e 40 -c 0 -i 6910 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.91066 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6905 -a 0 -x {9.0 10.0 3457 ------- null} + -t 3.91066 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6905 -a 0 -x {9.0 10.0 3457 ------- null} h -t 3.91066 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6905 -a 0 -x {9.0 10.0 3457 ------- null} r -t 3.91101 -s 0 -d 9 -p ack -e 40 -c 0 -i 6900 -a 0 -x {10.0 9.0 3445 ------- null} + -t 3.91101 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6911 -a 0 -x {9.0 10.0 3460 ------- null} - -t 3.91101 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6911 -a 0 -x {9.0 10.0 3460 ------- null} h -t 3.91101 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6911 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.91115 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6897 -a 0 -x {9.0 10.0 3453 ------- null} - -t 3.91115 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6897 -a 0 -x {9.0 10.0 3453 ------- null} h -t 3.91115 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6897 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.91128 -s 0 -d 9 -p ack -e 40 -c 0 -i 6904 -a 0 -x {10.0 9.0 3447 ------- null} - -t 3.91128 -s 0 -d 9 -p ack -e 40 -c 0 -i 6904 -a 0 -x {10.0 9.0 3447 ------- null} h -t 3.91128 -s 0 -d 9 -p ack -e 40 -c 0 -i 6904 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.91157 -s 10 -d 7 -p ack -e 40 -c 0 -i 6908 -a 0 -x {10.0 9.0 3449 ------- null} + -t 3.91157 -s 7 -d 0 -p ack -e 40 -c 0 -i 6908 -a 0 -x {10.0 9.0 3449 ------- null} h -t 3.91157 -s 7 -d 8 -p ack -e 40 -c 0 -i 6908 -a 0 -x {10.0 9.0 3449 ------- null} r -t 3.91171 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6893 -a 0 -x {9.0 10.0 3451 ------- null} + -t 3.91171 -s 10 -d 7 -p ack -e 40 -c 0 -i 6912 -a 0 -x {10.0 9.0 3451 ------- null} - -t 3.91171 -s 10 -d 7 -p ack -e 40 -c 0 -i 6912 -a 0 -x {10.0 9.0 3451 ------- null} h -t 3.91171 -s 10 -d 7 -p ack -e 40 -c 0 -i 6912 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.91173 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6907 -a 0 -x {9.0 10.0 3458 ------- null} + -t 3.91173 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6907 -a 0 -x {9.0 10.0 3458 ------- null} h -t 3.91173 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6907 -a 0 -x {9.0 10.0 3458 ------- null} + -t 3.91224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6899 -a 0 -x {9.0 10.0 3454 ------- null} - -t 3.91224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6899 -a 0 -x {9.0 10.0 3454 ------- null} h -t 3.91224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6899 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.91234 -s 0 -d 9 -p ack -e 40 -c 0 -i 6902 -a 0 -x {10.0 9.0 3446 ------- null} + -t 3.91234 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6913 -a 0 -x {9.0 10.0 3461 ------- null} - -t 3.91234 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6913 -a 0 -x {9.0 10.0 3461 ------- null} h -t 3.91234 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6913 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.91242 -s 0 -d 9 -p ack -e 40 -c 0 -i 6906 -a 0 -x {10.0 9.0 3448 ------- null} - -t 3.91242 -s 0 -d 9 -p ack -e 40 -c 0 -i 6906 -a 0 -x {10.0 9.0 3448 ------- null} h -t 3.91242 -s 0 -d 9 -p ack -e 40 -c 0 -i 6906 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.91266 -s 10 -d 7 -p ack -e 40 -c 0 -i 6910 -a 0 -x {10.0 9.0 3450 ------- null} + -t 3.91266 -s 7 -d 0 -p ack -e 40 -c 0 -i 6910 -a 0 -x {10.0 9.0 3450 ------- null} h -t 3.91266 -s 7 -d 8 -p ack -e 40 -c 0 -i 6910 -a 0 -x {10.0 9.0 3450 ------- null} r -t 3.91277 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6909 -a 0 -x {9.0 10.0 3459 ------- null} + -t 3.91277 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6909 -a 0 -x {9.0 10.0 3459 ------- null} h -t 3.91277 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6909 -a 0 -x {9.0 10.0 3459 ------- null} r -t 3.9128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6895 -a 0 -x {9.0 10.0 3452 ------- null} + -t 3.9128 -s 10 -d 7 -p ack -e 40 -c 0 -i 6914 -a 0 -x {10.0 9.0 3452 ------- null} - -t 3.9128 -s 10 -d 7 -p ack -e 40 -c 0 -i 6914 -a 0 -x {10.0 9.0 3452 ------- null} h -t 3.9128 -s 10 -d 7 -p ack -e 40 -c 0 -i 6914 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.91331 -s 0 -d 9 -p ack -e 40 -c 0 -i 6904 -a 0 -x {10.0 9.0 3447 ------- null} + -t 3.91331 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6915 -a 0 -x {9.0 10.0 3462 ------- null} - -t 3.91331 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6915 -a 0 -x {9.0 10.0 3462 ------- null} h -t 3.91331 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6915 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.91333 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6901 -a 0 -x {9.0 10.0 3455 ------- null} - -t 3.91333 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6901 -a 0 -x {9.0 10.0 3455 ------- null} h -t 3.91333 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6901 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.9135 -s 0 -d 9 -p ack -e 40 -c 0 -i 6908 -a 0 -x {10.0 9.0 3449 ------- null} - -t 3.9135 -s 0 -d 9 -p ack -e 40 -c 0 -i 6908 -a 0 -x {10.0 9.0 3449 ------- null} h -t 3.9135 -s 0 -d 9 -p ack -e 40 -c 0 -i 6908 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.91374 -s 10 -d 7 -p ack -e 40 -c 0 -i 6912 -a 0 -x {10.0 9.0 3451 ------- null} + -t 3.91374 -s 7 -d 0 -p ack -e 40 -c 0 -i 6912 -a 0 -x {10.0 9.0 3451 ------- null} h -t 3.91374 -s 7 -d 8 -p ack -e 40 -c 0 -i 6912 -a 0 -x {10.0 9.0 3451 ------- null} r -t 3.91381 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6911 -a 0 -x {9.0 10.0 3460 ------- null} + -t 3.91381 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6911 -a 0 -x {9.0 10.0 3460 ------- null} h -t 3.91381 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6911 -a 0 -x {9.0 10.0 3460 ------- null} r -t 3.91395 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6897 -a 0 -x {9.0 10.0 3453 ------- null} + -t 3.91395 -s 10 -d 7 -p ack -e 40 -c 0 -i 6916 -a 0 -x {10.0 9.0 3453 ------- null} - -t 3.91395 -s 10 -d 7 -p ack -e 40 -c 0 -i 6916 -a 0 -x {10.0 9.0 3453 ------- null} h -t 3.91395 -s 10 -d 7 -p ack -e 40 -c 0 -i 6916 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.91442 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6903 -a 0 -x {9.0 10.0 3456 ------- null} - -t 3.91442 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6903 -a 0 -x {9.0 10.0 3456 ------- null} h -t 3.91442 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6903 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.91445 -s 0 -d 9 -p ack -e 40 -c 0 -i 6906 -a 0 -x {10.0 9.0 3448 ------- null} + -t 3.91445 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6917 -a 0 -x {9.0 10.0 3463 ------- null} - -t 3.91445 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6917 -a 0 -x {9.0 10.0 3463 ------- null} h -t 3.91445 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6917 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.91467 -s 0 -d 9 -p ack -e 40 -c 0 -i 6910 -a 0 -x {10.0 9.0 3450 ------- null} - -t 3.91467 -s 0 -d 9 -p ack -e 40 -c 0 -i 6910 -a 0 -x {10.0 9.0 3450 ------- null} h -t 3.91467 -s 0 -d 9 -p ack -e 40 -c 0 -i 6910 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.91483 -s 10 -d 7 -p ack -e 40 -c 0 -i 6914 -a 0 -x {10.0 9.0 3452 ------- null} + -t 3.91483 -s 7 -d 0 -p ack -e 40 -c 0 -i 6914 -a 0 -x {10.0 9.0 3452 ------- null} h -t 3.91483 -s 7 -d 8 -p ack -e 40 -c 0 -i 6914 -a 0 -x {10.0 9.0 3452 ------- null} r -t 3.91504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6899 -a 0 -x {9.0 10.0 3454 ------- null} + -t 3.91504 -s 10 -d 7 -p ack -e 40 -c 0 -i 6918 -a 0 -x {10.0 9.0 3454 ------- null} - -t 3.91504 -s 10 -d 7 -p ack -e 40 -c 0 -i 6918 -a 0 -x {10.0 9.0 3454 ------- null} h -t 3.91504 -s 10 -d 7 -p ack -e 40 -c 0 -i 6918 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.91514 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6913 -a 0 -x {9.0 10.0 3461 ------- null} + -t 3.91514 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6913 -a 0 -x {9.0 10.0 3461 ------- null} h -t 3.91514 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6913 -a 0 -x {9.0 10.0 3461 ------- null} r -t 3.91554 -s 0 -d 9 -p ack -e 40 -c 0 -i 6908 -a 0 -x {10.0 9.0 3449 ------- null} + -t 3.91554 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6919 -a 0 -x {9.0 10.0 3464 ------- null} - -t 3.91554 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6919 -a 0 -x {9.0 10.0 3464 ------- null} h -t 3.91554 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6919 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.91566 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6905 -a 0 -x {9.0 10.0 3457 ------- null} - -t 3.91566 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6905 -a 0 -x {9.0 10.0 3457 ------- null} h -t 3.91566 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6905 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.91574 -s 0 -d 9 -p ack -e 40 -c 0 -i 6912 -a 0 -x {10.0 9.0 3451 ------- null} - -t 3.91574 -s 0 -d 9 -p ack -e 40 -c 0 -i 6912 -a 0 -x {10.0 9.0 3451 ------- null} h -t 3.91574 -s 0 -d 9 -p ack -e 40 -c 0 -i 6912 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.91598 -s 10 -d 7 -p ack -e 40 -c 0 -i 6916 -a 0 -x {10.0 9.0 3453 ------- null} + -t 3.91598 -s 7 -d 0 -p ack -e 40 -c 0 -i 6916 -a 0 -x {10.0 9.0 3453 ------- null} h -t 3.91598 -s 7 -d 8 -p ack -e 40 -c 0 -i 6916 -a 0 -x {10.0 9.0 3453 ------- null} r -t 3.91611 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6915 -a 0 -x {9.0 10.0 3462 ------- null} + -t 3.91611 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6915 -a 0 -x {9.0 10.0 3462 ------- null} h -t 3.91611 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6915 -a 0 -x {9.0 10.0 3462 ------- null} r -t 3.91613 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6901 -a 0 -x {9.0 10.0 3455 ------- null} + -t 3.91613 -s 10 -d 7 -p ack -e 40 -c 0 -i 6920 -a 0 -x {10.0 9.0 3455 ------- null} - -t 3.91613 -s 10 -d 7 -p ack -e 40 -c 0 -i 6920 -a 0 -x {10.0 9.0 3455 ------- null} h -t 3.91613 -s 10 -d 7 -p ack -e 40 -c 0 -i 6920 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.9167 -s 0 -d 9 -p ack -e 40 -c 0 -i 6910 -a 0 -x {10.0 9.0 3450 ------- null} + -t 3.9167 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6921 -a 0 -x {9.0 10.0 3465 ------- null} - -t 3.9167 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6921 -a 0 -x {9.0 10.0 3465 ------- null} h -t 3.9167 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6921 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.91675 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6907 -a 0 -x {9.0 10.0 3458 ------- null} - -t 3.91675 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6907 -a 0 -x {9.0 10.0 3458 ------- null} h -t 3.91675 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6907 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.91686 -s 0 -d 9 -p ack -e 40 -c 0 -i 6914 -a 0 -x {10.0 9.0 3452 ------- null} - -t 3.91686 -s 0 -d 9 -p ack -e 40 -c 0 -i 6914 -a 0 -x {10.0 9.0 3452 ------- null} h -t 3.91686 -s 0 -d 9 -p ack -e 40 -c 0 -i 6914 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.91707 -s 10 -d 7 -p ack -e 40 -c 0 -i 6918 -a 0 -x {10.0 9.0 3454 ------- null} + -t 3.91707 -s 7 -d 0 -p ack -e 40 -c 0 -i 6918 -a 0 -x {10.0 9.0 3454 ------- null} h -t 3.91707 -s 7 -d 8 -p ack -e 40 -c 0 -i 6918 -a 0 -x {10.0 9.0 3454 ------- null} r -t 3.91722 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6903 -a 0 -x {9.0 10.0 3456 ------- null} + -t 3.91722 -s 10 -d 7 -p ack -e 40 -c 0 -i 6922 -a 0 -x {10.0 9.0 3456 ------- null} - -t 3.91722 -s 10 -d 7 -p ack -e 40 -c 0 -i 6922 -a 0 -x {10.0 9.0 3456 ------- null} h -t 3.91722 -s 10 -d 7 -p ack -e 40 -c 0 -i 6922 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.91725 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6917 -a 0 -x {9.0 10.0 3463 ------- null} + -t 3.91725 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6917 -a 0 -x {9.0 10.0 3463 ------- null} h -t 3.91725 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6917 -a 0 -x {9.0 10.0 3463 ------- null} r -t 3.91778 -s 0 -d 9 -p ack -e 40 -c 0 -i 6912 -a 0 -x {10.0 9.0 3451 ------- null} + -t 3.91778 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6923 -a 0 -x {9.0 10.0 3466 ------- null} - -t 3.91778 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6923 -a 0 -x {9.0 10.0 3466 ------- null} h -t 3.91778 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6923 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.91784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6909 -a 0 -x {9.0 10.0 3459 ------- null} - -t 3.91784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6909 -a 0 -x {9.0 10.0 3459 ------- null} h -t 3.91784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6909 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.91803 -s 0 -d 9 -p ack -e 40 -c 0 -i 6916 -a 0 -x {10.0 9.0 3453 ------- null} - -t 3.91803 -s 0 -d 9 -p ack -e 40 -c 0 -i 6916 -a 0 -x {10.0 9.0 3453 ------- null} h -t 3.91803 -s 0 -d 9 -p ack -e 40 -c 0 -i 6916 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.91816 -s 10 -d 7 -p ack -e 40 -c 0 -i 6920 -a 0 -x {10.0 9.0 3455 ------- null} + -t 3.91816 -s 7 -d 0 -p ack -e 40 -c 0 -i 6920 -a 0 -x {10.0 9.0 3455 ------- null} h -t 3.91816 -s 7 -d 8 -p ack -e 40 -c 0 -i 6920 -a 0 -x {10.0 9.0 3455 ------- null} r -t 3.91834 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6919 -a 0 -x {9.0 10.0 3464 ------- null} + -t 3.91834 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6919 -a 0 -x {9.0 10.0 3464 ------- null} h -t 3.91834 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6919 -a 0 -x {9.0 10.0 3464 ------- null} r -t 3.91846 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6905 -a 0 -x {9.0 10.0 3457 ------- null} + -t 3.91846 -s 10 -d 7 -p ack -e 40 -c 0 -i 6924 -a 0 -x {10.0 9.0 3457 ------- null} - -t 3.91846 -s 10 -d 7 -p ack -e 40 -c 0 -i 6924 -a 0 -x {10.0 9.0 3457 ------- null} h -t 3.91846 -s 10 -d 7 -p ack -e 40 -c 0 -i 6924 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.9189 -s 0 -d 9 -p ack -e 40 -c 0 -i 6914 -a 0 -x {10.0 9.0 3452 ------- null} + -t 3.9189 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6925 -a 0 -x {9.0 10.0 3467 ------- null} - -t 3.9189 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6925 -a 0 -x {9.0 10.0 3467 ------- null} h -t 3.9189 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6925 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.91893 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6911 -a 0 -x {9.0 10.0 3460 ------- null} - -t 3.91893 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6911 -a 0 -x {9.0 10.0 3460 ------- null} h -t 3.91893 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6911 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.91899 -s 0 -d 9 -p ack -e 40 -c 0 -i 6918 -a 0 -x {10.0 9.0 3454 ------- null} - -t 3.91899 -s 0 -d 9 -p ack -e 40 -c 0 -i 6918 -a 0 -x {10.0 9.0 3454 ------- null} h -t 3.91899 -s 0 -d 9 -p ack -e 40 -c 0 -i 6918 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.91925 -s 10 -d 7 -p ack -e 40 -c 0 -i 6922 -a 0 -x {10.0 9.0 3456 ------- null} + -t 3.91925 -s 7 -d 0 -p ack -e 40 -c 0 -i 6922 -a 0 -x {10.0 9.0 3456 ------- null} h -t 3.91925 -s 7 -d 8 -p ack -e 40 -c 0 -i 6922 -a 0 -x {10.0 9.0 3456 ------- null} r -t 3.9195 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6921 -a 0 -x {9.0 10.0 3465 ------- null} + -t 3.9195 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6921 -a 0 -x {9.0 10.0 3465 ------- null} h -t 3.9195 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6921 -a 0 -x {9.0 10.0 3465 ------- null} r -t 3.91955 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6907 -a 0 -x {9.0 10.0 3458 ------- null} + -t 3.91955 -s 10 -d 7 -p ack -e 40 -c 0 -i 6926 -a 0 -x {10.0 9.0 3458 ------- null} - -t 3.91955 -s 10 -d 7 -p ack -e 40 -c 0 -i 6926 -a 0 -x {10.0 9.0 3458 ------- null} h -t 3.91955 -s 10 -d 7 -p ack -e 40 -c 0 -i 6926 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.92002 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6913 -a 0 -x {9.0 10.0 3461 ------- null} - -t 3.92002 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6913 -a 0 -x {9.0 10.0 3461 ------- null} h -t 3.92002 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6913 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.92006 -s 0 -d 9 -p ack -e 40 -c 0 -i 6916 -a 0 -x {10.0 9.0 3453 ------- null} + -t 3.92006 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6927 -a 0 -x {9.0 10.0 3468 ------- null} - -t 3.92006 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6927 -a 0 -x {9.0 10.0 3468 ------- null} h -t 3.92006 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6927 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.92014 -s 0 -d 9 -p ack -e 40 -c 0 -i 6920 -a 0 -x {10.0 9.0 3455 ------- null} - -t 3.92014 -s 0 -d 9 -p ack -e 40 -c 0 -i 6920 -a 0 -x {10.0 9.0 3455 ------- null} h -t 3.92014 -s 0 -d 9 -p ack -e 40 -c 0 -i 6920 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.9205 -s 10 -d 7 -p ack -e 40 -c 0 -i 6924 -a 0 -x {10.0 9.0 3457 ------- null} + -t 3.9205 -s 7 -d 0 -p ack -e 40 -c 0 -i 6924 -a 0 -x {10.0 9.0 3457 ------- null} h -t 3.9205 -s 7 -d 8 -p ack -e 40 -c 0 -i 6924 -a 0 -x {10.0 9.0 3457 ------- null} r -t 3.92058 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6923 -a 0 -x {9.0 10.0 3466 ------- null} + -t 3.92058 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6923 -a 0 -x {9.0 10.0 3466 ------- null} h -t 3.92058 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6923 -a 0 -x {9.0 10.0 3466 ------- null} r -t 3.92064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6909 -a 0 -x {9.0 10.0 3459 ------- null} + -t 3.92064 -s 10 -d 7 -p ack -e 40 -c 0 -i 6928 -a 0 -x {10.0 9.0 3459 ------- null} - -t 3.92064 -s 10 -d 7 -p ack -e 40 -c 0 -i 6928 -a 0 -x {10.0 9.0 3459 ------- null} h -t 3.92064 -s 10 -d 7 -p ack -e 40 -c 0 -i 6928 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.92102 -s 0 -d 9 -p ack -e 40 -c 0 -i 6918 -a 0 -x {10.0 9.0 3454 ------- null} + -t 3.92102 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6929 -a 0 -x {9.0 10.0 3469 ------- null} - -t 3.92102 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6929 -a 0 -x {9.0 10.0 3469 ------- null} h -t 3.92102 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6929 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.9211 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6915 -a 0 -x {9.0 10.0 3462 ------- null} - -t 3.9211 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6915 -a 0 -x {9.0 10.0 3462 ------- null} h -t 3.9211 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6915 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.92117 -s 0 -d 9 -p ack -e 40 -c 0 -i 6922 -a 0 -x {10.0 9.0 3456 ------- null} - -t 3.92117 -s 0 -d 9 -p ack -e 40 -c 0 -i 6922 -a 0 -x {10.0 9.0 3456 ------- null} h -t 3.92117 -s 0 -d 9 -p ack -e 40 -c 0 -i 6922 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.92158 -s 10 -d 7 -p ack -e 40 -c 0 -i 6926 -a 0 -x {10.0 9.0 3458 ------- null} + -t 3.92158 -s 7 -d 0 -p ack -e 40 -c 0 -i 6926 -a 0 -x {10.0 9.0 3458 ------- null} h -t 3.92158 -s 7 -d 8 -p ack -e 40 -c 0 -i 6926 -a 0 -x {10.0 9.0 3458 ------- null} r -t 3.9217 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6925 -a 0 -x {9.0 10.0 3467 ------- null} + -t 3.9217 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6925 -a 0 -x {9.0 10.0 3467 ------- null} h -t 3.9217 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6925 -a 0 -x {9.0 10.0 3467 ------- null} r -t 3.92173 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6911 -a 0 -x {9.0 10.0 3460 ------- null} + -t 3.92173 -s 10 -d 7 -p ack -e 40 -c 0 -i 6930 -a 0 -x {10.0 9.0 3460 ------- null} - -t 3.92173 -s 10 -d 7 -p ack -e 40 -c 0 -i 6930 -a 0 -x {10.0 9.0 3460 ------- null} h -t 3.92173 -s 10 -d 7 -p ack -e 40 -c 0 -i 6930 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.92218 -s 0 -d 9 -p ack -e 40 -c 0 -i 6920 -a 0 -x {10.0 9.0 3455 ------- null} + -t 3.92218 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6931 -a 0 -x {9.0 10.0 3470 ------- null} - -t 3.92218 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6931 -a 0 -x {9.0 10.0 3470 ------- null} h -t 3.92218 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6931 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.92219 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6917 -a 0 -x {9.0 10.0 3463 ------- null} - -t 3.92219 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6917 -a 0 -x {9.0 10.0 3463 ------- null} h -t 3.92219 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6917 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.92235 -s 0 -d 9 -p ack -e 40 -c 0 -i 6924 -a 0 -x {10.0 9.0 3457 ------- null} - -t 3.92235 -s 0 -d 9 -p ack -e 40 -c 0 -i 6924 -a 0 -x {10.0 9.0 3457 ------- null} h -t 3.92235 -s 0 -d 9 -p ack -e 40 -c 0 -i 6924 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.92267 -s 10 -d 7 -p ack -e 40 -c 0 -i 6928 -a 0 -x {10.0 9.0 3459 ------- null} + -t 3.92267 -s 7 -d 0 -p ack -e 40 -c 0 -i 6928 -a 0 -x {10.0 9.0 3459 ------- null} h -t 3.92267 -s 7 -d 8 -p ack -e 40 -c 0 -i 6928 -a 0 -x {10.0 9.0 3459 ------- null} r -t 3.92282 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6913 -a 0 -x {9.0 10.0 3461 ------- null} + -t 3.92282 -s 10 -d 7 -p ack -e 40 -c 0 -i 6932 -a 0 -x {10.0 9.0 3461 ------- null} - -t 3.92282 -s 10 -d 7 -p ack -e 40 -c 0 -i 6932 -a 0 -x {10.0 9.0 3461 ------- null} h -t 3.92282 -s 10 -d 7 -p ack -e 40 -c 0 -i 6932 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.92286 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6927 -a 0 -x {9.0 10.0 3468 ------- null} + -t 3.92286 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6927 -a 0 -x {9.0 10.0 3468 ------- null} h -t 3.92286 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6927 -a 0 -x {9.0 10.0 3468 ------- null} r -t 3.9232 -s 0 -d 9 -p ack -e 40 -c 0 -i 6922 -a 0 -x {10.0 9.0 3456 ------- null} + -t 3.9232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6933 -a 0 -x {9.0 10.0 3471 ------- null} - -t 3.9232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6933 -a 0 -x {9.0 10.0 3471 ------- null} h -t 3.9232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6933 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.92328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6919 -a 0 -x {9.0 10.0 3464 ------- null} - -t 3.92328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6919 -a 0 -x {9.0 10.0 3464 ------- null} h -t 3.92328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6919 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.92346 -s 0 -d 9 -p ack -e 40 -c 0 -i 6926 -a 0 -x {10.0 9.0 3458 ------- null} - -t 3.92346 -s 0 -d 9 -p ack -e 40 -c 0 -i 6926 -a 0 -x {10.0 9.0 3458 ------- null} h -t 3.92346 -s 0 -d 9 -p ack -e 40 -c 0 -i 6926 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.92376 -s 10 -d 7 -p ack -e 40 -c 0 -i 6930 -a 0 -x {10.0 9.0 3460 ------- null} + -t 3.92376 -s 7 -d 0 -p ack -e 40 -c 0 -i 6930 -a 0 -x {10.0 9.0 3460 ------- null} h -t 3.92376 -s 7 -d 8 -p ack -e 40 -c 0 -i 6930 -a 0 -x {10.0 9.0 3460 ------- null} r -t 3.92382 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6929 -a 0 -x {9.0 10.0 3469 ------- null} + -t 3.92382 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6929 -a 0 -x {9.0 10.0 3469 ------- null} h -t 3.92382 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6929 -a 0 -x {9.0 10.0 3469 ------- null} r -t 3.9239 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6915 -a 0 -x {9.0 10.0 3462 ------- null} + -t 3.9239 -s 10 -d 7 -p ack -e 40 -c 0 -i 6934 -a 0 -x {10.0 9.0 3462 ------- null} - -t 3.9239 -s 10 -d 7 -p ack -e 40 -c 0 -i 6934 -a 0 -x {10.0 9.0 3462 ------- null} h -t 3.9239 -s 10 -d 7 -p ack -e 40 -c 0 -i 6934 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.92437 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6921 -a 0 -x {9.0 10.0 3465 ------- null} - -t 3.92437 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6921 -a 0 -x {9.0 10.0 3465 ------- null} h -t 3.92437 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6921 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.92438 -s 0 -d 9 -p ack -e 40 -c 0 -i 6924 -a 0 -x {10.0 9.0 3457 ------- null} + -t 3.92438 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6935 -a 0 -x {9.0 10.0 3472 ------- null} - -t 3.92438 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6935 -a 0 -x {9.0 10.0 3472 ------- null} h -t 3.92438 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6935 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.92443 -s 0 -d 9 -p ack -e 40 -c 0 -i 6928 -a 0 -x {10.0 9.0 3459 ------- null} - -t 3.92443 -s 0 -d 9 -p ack -e 40 -c 0 -i 6928 -a 0 -x {10.0 9.0 3459 ------- null} h -t 3.92443 -s 0 -d 9 -p ack -e 40 -c 0 -i 6928 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.92485 -s 10 -d 7 -p ack -e 40 -c 0 -i 6932 -a 0 -x {10.0 9.0 3461 ------- null} + -t 3.92485 -s 7 -d 0 -p ack -e 40 -c 0 -i 6932 -a 0 -x {10.0 9.0 3461 ------- null} h -t 3.92485 -s 7 -d 8 -p ack -e 40 -c 0 -i 6932 -a 0 -x {10.0 9.0 3461 ------- null} r -t 3.92498 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6931 -a 0 -x {9.0 10.0 3470 ------- null} + -t 3.92498 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6931 -a 0 -x {9.0 10.0 3470 ------- null} h -t 3.92498 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6931 -a 0 -x {9.0 10.0 3470 ------- null} r -t 3.92499 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6917 -a 0 -x {9.0 10.0 3463 ------- null} + -t 3.92499 -s 10 -d 7 -p ack -e 40 -c 0 -i 6936 -a 0 -x {10.0 9.0 3463 ------- null} - -t 3.92499 -s 10 -d 7 -p ack -e 40 -c 0 -i 6936 -a 0 -x {10.0 9.0 3463 ------- null} h -t 3.92499 -s 10 -d 7 -p ack -e 40 -c 0 -i 6936 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.92546 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6923 -a 0 -x {9.0 10.0 3466 ------- null} - -t 3.92546 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6923 -a 0 -x {9.0 10.0 3466 ------- null} h -t 3.92546 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6923 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.92549 -s 0 -d 9 -p ack -e 40 -c 0 -i 6926 -a 0 -x {10.0 9.0 3458 ------- null} + -t 3.92549 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6937 -a 0 -x {9.0 10.0 3473 ------- null} - -t 3.92549 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6937 -a 0 -x {9.0 10.0 3473 ------- null} h -t 3.92549 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6937 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.92571 -s 0 -d 9 -p ack -e 40 -c 0 -i 6930 -a 0 -x {10.0 9.0 3460 ------- null} - -t 3.92571 -s 0 -d 9 -p ack -e 40 -c 0 -i 6930 -a 0 -x {10.0 9.0 3460 ------- null} h -t 3.92571 -s 0 -d 9 -p ack -e 40 -c 0 -i 6930 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.92594 -s 10 -d 7 -p ack -e 40 -c 0 -i 6934 -a 0 -x {10.0 9.0 3462 ------- null} + -t 3.92594 -s 7 -d 0 -p ack -e 40 -c 0 -i 6934 -a 0 -x {10.0 9.0 3462 ------- null} h -t 3.92594 -s 7 -d 8 -p ack -e 40 -c 0 -i 6934 -a 0 -x {10.0 9.0 3462 ------- null} r -t 3.926 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6933 -a 0 -x {9.0 10.0 3471 ------- null} + -t 3.926 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6933 -a 0 -x {9.0 10.0 3471 ------- null} h -t 3.926 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6933 -a 0 -x {9.0 10.0 3471 ------- null} r -t 3.92608 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6919 -a 0 -x {9.0 10.0 3464 ------- null} + -t 3.92608 -s 10 -d 7 -p ack -e 40 -c 0 -i 6938 -a 0 -x {10.0 9.0 3464 ------- null} - -t 3.92608 -s 10 -d 7 -p ack -e 40 -c 0 -i 6938 -a 0 -x {10.0 9.0 3464 ------- null} h -t 3.92608 -s 10 -d 7 -p ack -e 40 -c 0 -i 6938 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.92646 -s 0 -d 9 -p ack -e 40 -c 0 -i 6928 -a 0 -x {10.0 9.0 3459 ------- null} + -t 3.92646 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6939 -a 0 -x {9.0 10.0 3474 ------- null} - -t 3.92646 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6939 -a 0 -x {9.0 10.0 3474 ------- null} h -t 3.92646 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6939 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.92654 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6925 -a 0 -x {9.0 10.0 3467 ------- null} - -t 3.92654 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6925 -a 0 -x {9.0 10.0 3467 ------- null} h -t 3.92654 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6925 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.92678 -s 0 -d 9 -p ack -e 40 -c 0 -i 6932 -a 0 -x {10.0 9.0 3461 ------- null} - -t 3.92678 -s 0 -d 9 -p ack -e 40 -c 0 -i 6932 -a 0 -x {10.0 9.0 3461 ------- null} h -t 3.92678 -s 0 -d 9 -p ack -e 40 -c 0 -i 6932 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.92702 -s 10 -d 7 -p ack -e 40 -c 0 -i 6936 -a 0 -x {10.0 9.0 3463 ------- null} + -t 3.92702 -s 7 -d 0 -p ack -e 40 -c 0 -i 6936 -a 0 -x {10.0 9.0 3463 ------- null} h -t 3.92702 -s 7 -d 8 -p ack -e 40 -c 0 -i 6936 -a 0 -x {10.0 9.0 3463 ------- null} r -t 3.92717 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6921 -a 0 -x {9.0 10.0 3465 ------- null} + -t 3.92717 -s 10 -d 7 -p ack -e 40 -c 0 -i 6940 -a 0 -x {10.0 9.0 3465 ------- null} - -t 3.92717 -s 10 -d 7 -p ack -e 40 -c 0 -i 6940 -a 0 -x {10.0 9.0 3465 ------- null} h -t 3.92717 -s 10 -d 7 -p ack -e 40 -c 0 -i 6940 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.92718 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6935 -a 0 -x {9.0 10.0 3472 ------- null} + -t 3.92718 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6935 -a 0 -x {9.0 10.0 3472 ------- null} h -t 3.92718 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6935 -a 0 -x {9.0 10.0 3472 ------- null} + -t 3.92763 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6927 -a 0 -x {9.0 10.0 3468 ------- null} - -t 3.92763 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6927 -a 0 -x {9.0 10.0 3468 ------- null} h -t 3.92763 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6927 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.92774 -s 0 -d 9 -p ack -e 40 -c 0 -i 6930 -a 0 -x {10.0 9.0 3460 ------- null} + -t 3.92774 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6941 -a 0 -x {9.0 10.0 3475 ------- null} - -t 3.92774 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6941 -a 0 -x {9.0 10.0 3475 ------- null} h -t 3.92774 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6941 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.9279 -s 0 -d 9 -p ack -e 40 -c 0 -i 6934 -a 0 -x {10.0 9.0 3462 ------- null} - -t 3.9279 -s 0 -d 9 -p ack -e 40 -c 0 -i 6934 -a 0 -x {10.0 9.0 3462 ------- null} h -t 3.9279 -s 0 -d 9 -p ack -e 40 -c 0 -i 6934 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.92811 -s 10 -d 7 -p ack -e 40 -c 0 -i 6938 -a 0 -x {10.0 9.0 3464 ------- null} + -t 3.92811 -s 7 -d 0 -p ack -e 40 -c 0 -i 6938 -a 0 -x {10.0 9.0 3464 ------- null} h -t 3.92811 -s 7 -d 8 -p ack -e 40 -c 0 -i 6938 -a 0 -x {10.0 9.0 3464 ------- null} r -t 3.92826 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6923 -a 0 -x {9.0 10.0 3466 ------- null} + -t 3.92826 -s 10 -d 7 -p ack -e 40 -c 0 -i 6942 -a 0 -x {10.0 9.0 3466 ------- null} - -t 3.92826 -s 10 -d 7 -p ack -e 40 -c 0 -i 6942 -a 0 -x {10.0 9.0 3466 ------- null} h -t 3.92826 -s 10 -d 7 -p ack -e 40 -c 0 -i 6942 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.92829 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6937 -a 0 -x {9.0 10.0 3473 ------- null} + -t 3.92829 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6937 -a 0 -x {9.0 10.0 3473 ------- null} h -t 3.92829 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6937 -a 0 -x {9.0 10.0 3473 ------- null} + -t 3.9288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6929 -a 0 -x {9.0 10.0 3469 ------- null} - -t 3.9288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6929 -a 0 -x {9.0 10.0 3469 ------- null} h -t 3.9288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6929 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.92882 -s 0 -d 9 -p ack -e 40 -c 0 -i 6932 -a 0 -x {10.0 9.0 3461 ------- null} + -t 3.92882 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6943 -a 0 -x {9.0 10.0 3476 ------- null} - -t 3.92882 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6943 -a 0 -x {9.0 10.0 3476 ------- null} h -t 3.92882 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6943 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.92886 -s 0 -d 9 -p ack -e 40 -c 0 -i 6936 -a 0 -x {10.0 9.0 3463 ------- null} - -t 3.92886 -s 0 -d 9 -p ack -e 40 -c 0 -i 6936 -a 0 -x {10.0 9.0 3463 ------- null} h -t 3.92886 -s 0 -d 9 -p ack -e 40 -c 0 -i 6936 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.9292 -s 10 -d 7 -p ack -e 40 -c 0 -i 6940 -a 0 -x {10.0 9.0 3465 ------- null} + -t 3.9292 -s 7 -d 0 -p ack -e 40 -c 0 -i 6940 -a 0 -x {10.0 9.0 3465 ------- null} h -t 3.9292 -s 7 -d 8 -p ack -e 40 -c 0 -i 6940 -a 0 -x {10.0 9.0 3465 ------- null} r -t 3.92926 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6939 -a 0 -x {9.0 10.0 3474 ------- null} + -t 3.92926 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6939 -a 0 -x {9.0 10.0 3474 ------- null} h -t 3.92926 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6939 -a 0 -x {9.0 10.0 3474 ------- null} r -t 3.92934 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6925 -a 0 -x {9.0 10.0 3467 ------- null} + -t 3.92934 -s 10 -d 7 -p ack -e 40 -c 0 -i 6944 -a 0 -x {10.0 9.0 3467 ------- null} - -t 3.92934 -s 10 -d 7 -p ack -e 40 -c 0 -i 6944 -a 0 -x {10.0 9.0 3467 ------- null} h -t 3.92934 -s 10 -d 7 -p ack -e 40 -c 0 -i 6944 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.92989 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6931 -a 0 -x {9.0 10.0 3470 ------- null} - -t 3.92989 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6931 -a 0 -x {9.0 10.0 3470 ------- null} h -t 3.92989 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6931 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.92994 -s 0 -d 9 -p ack -e 40 -c 0 -i 6934 -a 0 -x {10.0 9.0 3462 ------- null} + -t 3.92994 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6945 -a 0 -x {9.0 10.0 3477 ------- null} - -t 3.92994 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6945 -a 0 -x {9.0 10.0 3477 ------- null} h -t 3.92994 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6945 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.93005 -s 0 -d 9 -p ack -e 40 -c 0 -i 6938 -a 0 -x {10.0 9.0 3464 ------- null} - -t 3.93005 -s 0 -d 9 -p ack -e 40 -c 0 -i 6938 -a 0 -x {10.0 9.0 3464 ------- null} h -t 3.93005 -s 0 -d 9 -p ack -e 40 -c 0 -i 6938 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.93029 -s 10 -d 7 -p ack -e 40 -c 0 -i 6942 -a 0 -x {10.0 9.0 3466 ------- null} + -t 3.93029 -s 7 -d 0 -p ack -e 40 -c 0 -i 6942 -a 0 -x {10.0 9.0 3466 ------- null} h -t 3.93029 -s 7 -d 8 -p ack -e 40 -c 0 -i 6942 -a 0 -x {10.0 9.0 3466 ------- null} r -t 3.93043 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6927 -a 0 -x {9.0 10.0 3468 ------- null} + -t 3.93043 -s 10 -d 7 -p ack -e 40 -c 0 -i 6946 -a 0 -x {10.0 9.0 3468 ------- null} - -t 3.93043 -s 10 -d 7 -p ack -e 40 -c 0 -i 6946 -a 0 -x {10.0 9.0 3468 ------- null} h -t 3.93043 -s 10 -d 7 -p ack -e 40 -c 0 -i 6946 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.93054 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6941 -a 0 -x {9.0 10.0 3475 ------- null} + -t 3.93054 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6941 -a 0 -x {9.0 10.0 3475 ------- null} h -t 3.93054 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6941 -a 0 -x {9.0 10.0 3475 ------- null} r -t 3.9309 -s 0 -d 9 -p ack -e 40 -c 0 -i 6936 -a 0 -x {10.0 9.0 3463 ------- null} + -t 3.9309 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6947 -a 0 -x {9.0 10.0 3478 ------- null} - -t 3.9309 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6947 -a 0 -x {9.0 10.0 3478 ------- null} h -t 3.9309 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6947 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.93098 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6933 -a 0 -x {9.0 10.0 3471 ------- null} - -t 3.93098 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6933 -a 0 -x {9.0 10.0 3471 ------- null} h -t 3.93098 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6933 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.93125 -s 0 -d 9 -p ack -e 40 -c 0 -i 6940 -a 0 -x {10.0 9.0 3465 ------- null} - -t 3.93125 -s 0 -d 9 -p ack -e 40 -c 0 -i 6940 -a 0 -x {10.0 9.0 3465 ------- null} h -t 3.93125 -s 0 -d 9 -p ack -e 40 -c 0 -i 6940 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.93138 -s 10 -d 7 -p ack -e 40 -c 0 -i 6944 -a 0 -x {10.0 9.0 3467 ------- null} + -t 3.93138 -s 7 -d 0 -p ack -e 40 -c 0 -i 6944 -a 0 -x {10.0 9.0 3467 ------- null} h -t 3.93138 -s 7 -d 8 -p ack -e 40 -c 0 -i 6944 -a 0 -x {10.0 9.0 3467 ------- null} r -t 3.9316 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6929 -a 0 -x {9.0 10.0 3469 ------- null} + -t 3.9316 -s 10 -d 7 -p ack -e 40 -c 0 -i 6948 -a 0 -x {10.0 9.0 3469 ------- null} - -t 3.9316 -s 10 -d 7 -p ack -e 40 -c 0 -i 6948 -a 0 -x {10.0 9.0 3469 ------- null} h -t 3.9316 -s 10 -d 7 -p ack -e 40 -c 0 -i 6948 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.93162 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6943 -a 0 -x {9.0 10.0 3476 ------- null} + -t 3.93162 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6943 -a 0 -x {9.0 10.0 3476 ------- null} h -t 3.93162 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6943 -a 0 -x {9.0 10.0 3476 ------- null} r -t 3.93208 -s 0 -d 9 -p ack -e 40 -c 0 -i 6938 -a 0 -x {10.0 9.0 3464 ------- null} + -t 3.93208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6949 -a 0 -x {9.0 10.0 3479 ------- null} - -t 3.93208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6949 -a 0 -x {9.0 10.0 3479 ------- null} h -t 3.93208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6949 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.93224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6935 -a 0 -x {9.0 10.0 3472 ------- null} - -t 3.93224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6935 -a 0 -x {9.0 10.0 3472 ------- null} h -t 3.93224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6935 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.93246 -s 10 -d 7 -p ack -e 40 -c 0 -i 6946 -a 0 -x {10.0 9.0 3468 ------- null} + -t 3.93246 -s 7 -d 0 -p ack -e 40 -c 0 -i 6946 -a 0 -x {10.0 9.0 3468 ------- null} h -t 3.93246 -s 7 -d 8 -p ack -e 40 -c 0 -i 6946 -a 0 -x {10.0 9.0 3468 ------- null} + -t 3.93254 -s 0 -d 9 -p ack -e 40 -c 0 -i 6942 -a 0 -x {10.0 9.0 3466 ------- null} - -t 3.93254 -s 0 -d 9 -p ack -e 40 -c 0 -i 6942 -a 0 -x {10.0 9.0 3466 ------- null} h -t 3.93254 -s 0 -d 9 -p ack -e 40 -c 0 -i 6942 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.93269 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6931 -a 0 -x {9.0 10.0 3470 ------- null} + -t 3.93269 -s 10 -d 7 -p ack -e 40 -c 0 -i 6950 -a 0 -x {10.0 9.0 3470 ------- null} - -t 3.93269 -s 10 -d 7 -p ack -e 40 -c 0 -i 6950 -a 0 -x {10.0 9.0 3470 ------- null} h -t 3.93269 -s 10 -d 7 -p ack -e 40 -c 0 -i 6950 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.93274 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6945 -a 0 -x {9.0 10.0 3477 ------- null} + -t 3.93274 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6945 -a 0 -x {9.0 10.0 3477 ------- null} h -t 3.93274 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6945 -a 0 -x {9.0 10.0 3477 ------- null} r -t 3.93328 -s 0 -d 9 -p ack -e 40 -c 0 -i 6940 -a 0 -x {10.0 9.0 3465 ------- null} + -t 3.93328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6951 -a 0 -x {9.0 10.0 3480 ------- null} - -t 3.93328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6951 -a 0 -x {9.0 10.0 3480 ------- null} h -t 3.93328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6951 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.93354 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6937 -a 0 -x {9.0 10.0 3473 ------- null} - -t 3.93354 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6937 -a 0 -x {9.0 10.0 3473 ------- null} h -t 3.93354 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6937 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.93363 -s 10 -d 7 -p ack -e 40 -c 0 -i 6948 -a 0 -x {10.0 9.0 3469 ------- null} + -t 3.93363 -s 7 -d 0 -p ack -e 40 -c 0 -i 6948 -a 0 -x {10.0 9.0 3469 ------- null} h -t 3.93363 -s 7 -d 8 -p ack -e 40 -c 0 -i 6948 -a 0 -x {10.0 9.0 3469 ------- null} + -t 3.93363 -s 0 -d 9 -p ack -e 40 -c 0 -i 6944 -a 0 -x {10.0 9.0 3467 ------- null} - -t 3.93363 -s 0 -d 9 -p ack -e 40 -c 0 -i 6944 -a 0 -x {10.0 9.0 3467 ------- null} h -t 3.93363 -s 0 -d 9 -p ack -e 40 -c 0 -i 6944 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.9337 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6947 -a 0 -x {9.0 10.0 3478 ------- null} + -t 3.9337 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6947 -a 0 -x {9.0 10.0 3478 ------- null} h -t 3.9337 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6947 -a 0 -x {9.0 10.0 3478 ------- null} r -t 3.93378 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6933 -a 0 -x {9.0 10.0 3471 ------- null} + -t 3.93378 -s 10 -d 7 -p ack -e 40 -c 0 -i 6952 -a 0 -x {10.0 9.0 3471 ------- null} - -t 3.93378 -s 10 -d 7 -p ack -e 40 -c 0 -i 6952 -a 0 -x {10.0 9.0 3471 ------- null} h -t 3.93378 -s 10 -d 7 -p ack -e 40 -c 0 -i 6952 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.93458 -s 0 -d 9 -p ack -e 40 -c 0 -i 6942 -a 0 -x {10.0 9.0 3466 ------- null} + -t 3.93458 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6953 -a 0 -x {9.0 10.0 3481 ------- null} - -t 3.93458 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6953 -a 0 -x {9.0 10.0 3481 ------- null} h -t 3.93458 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6953 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.93462 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6939 -a 0 -x {9.0 10.0 3474 ------- null} - -t 3.93462 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6939 -a 0 -x {9.0 10.0 3474 ------- null} h -t 3.93462 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6939 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.93472 -s 10 -d 7 -p ack -e 40 -c 0 -i 6950 -a 0 -x {10.0 9.0 3470 ------- null} + -t 3.93472 -s 7 -d 0 -p ack -e 40 -c 0 -i 6950 -a 0 -x {10.0 9.0 3470 ------- null} h -t 3.93472 -s 7 -d 8 -p ack -e 40 -c 0 -i 6950 -a 0 -x {10.0 9.0 3470 ------- null} + -t 3.93482 -s 0 -d 9 -p ack -e 40 -c 0 -i 6946 -a 0 -x {10.0 9.0 3468 ------- null} - -t 3.93482 -s 0 -d 9 -p ack -e 40 -c 0 -i 6946 -a 0 -x {10.0 9.0 3468 ------- null} h -t 3.93482 -s 0 -d 9 -p ack -e 40 -c 0 -i 6946 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.93488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6949 -a 0 -x {9.0 10.0 3479 ------- null} + -t 3.93488 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6949 -a 0 -x {9.0 10.0 3479 ------- null} h -t 3.93488 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6949 -a 0 -x {9.0 10.0 3479 ------- null} r -t 3.93504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6935 -a 0 -x {9.0 10.0 3472 ------- null} + -t 3.93504 -s 10 -d 7 -p ack -e 40 -c 0 -i 6954 -a 0 -x {10.0 9.0 3472 ------- null} - -t 3.93504 -s 10 -d 7 -p ack -e 40 -c 0 -i 6954 -a 0 -x {10.0 9.0 3472 ------- null} h -t 3.93504 -s 10 -d 7 -p ack -e 40 -c 0 -i 6954 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.93566 -s 0 -d 9 -p ack -e 40 -c 0 -i 6944 -a 0 -x {10.0 9.0 3467 ------- null} + -t 3.93566 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6955 -a 0 -x {9.0 10.0 3482 ------- null} - -t 3.93566 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6955 -a 0 -x {9.0 10.0 3482 ------- null} h -t 3.93566 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6955 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.93571 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6941 -a 0 -x {9.0 10.0 3475 ------- null} - -t 3.93571 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6941 -a 0 -x {9.0 10.0 3475 ------- null} h -t 3.93571 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6941 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.93581 -s 10 -d 7 -p ack -e 40 -c 0 -i 6952 -a 0 -x {10.0 9.0 3471 ------- null} + -t 3.93581 -s 7 -d 0 -p ack -e 40 -c 0 -i 6952 -a 0 -x {10.0 9.0 3471 ------- null} h -t 3.93581 -s 7 -d 8 -p ack -e 40 -c 0 -i 6952 -a 0 -x {10.0 9.0 3471 ------- null} + -t 3.93584 -s 0 -d 9 -p ack -e 40 -c 0 -i 6948 -a 0 -x {10.0 9.0 3469 ------- null} - -t 3.93584 -s 0 -d 9 -p ack -e 40 -c 0 -i 6948 -a 0 -x {10.0 9.0 3469 ------- null} h -t 3.93584 -s 0 -d 9 -p ack -e 40 -c 0 -i 6948 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.93608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6951 -a 0 -x {9.0 10.0 3480 ------- null} + -t 3.93608 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6951 -a 0 -x {9.0 10.0 3480 ------- null} h -t 3.93608 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6951 -a 0 -x {9.0 10.0 3480 ------- null} r -t 3.93634 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6937 -a 0 -x {9.0 10.0 3473 ------- null} + -t 3.93634 -s 10 -d 7 -p ack -e 40 -c 0 -i 6956 -a 0 -x {10.0 9.0 3473 ------- null} - -t 3.93634 -s 10 -d 7 -p ack -e 40 -c 0 -i 6956 -a 0 -x {10.0 9.0 3473 ------- null} h -t 3.93634 -s 10 -d 7 -p ack -e 40 -c 0 -i 6956 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.9368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6943 -a 0 -x {9.0 10.0 3476 ------- null} - -t 3.9368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6943 -a 0 -x {9.0 10.0 3476 ------- null} h -t 3.9368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6943 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.93685 -s 0 -d 9 -p ack -e 40 -c 0 -i 6946 -a 0 -x {10.0 9.0 3468 ------- null} + -t 3.93685 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6957 -a 0 -x {9.0 10.0 3483 ------- null} - -t 3.93685 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6957 -a 0 -x {9.0 10.0 3483 ------- null} h -t 3.93685 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6957 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.93696 -s 0 -d 9 -p ack -e 40 -c 0 -i 6950 -a 0 -x {10.0 9.0 3470 ------- null} - -t 3.93696 -s 0 -d 9 -p ack -e 40 -c 0 -i 6950 -a 0 -x {10.0 9.0 3470 ------- null} h -t 3.93696 -s 0 -d 9 -p ack -e 40 -c 0 -i 6950 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.93707 -s 10 -d 7 -p ack -e 40 -c 0 -i 6954 -a 0 -x {10.0 9.0 3472 ------- null} + -t 3.93707 -s 7 -d 0 -p ack -e 40 -c 0 -i 6954 -a 0 -x {10.0 9.0 3472 ------- null} h -t 3.93707 -s 7 -d 8 -p ack -e 40 -c 0 -i 6954 -a 0 -x {10.0 9.0 3472 ------- null} r -t 3.93738 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6953 -a 0 -x {9.0 10.0 3481 ------- null} + -t 3.93738 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6953 -a 0 -x {9.0 10.0 3481 ------- null} h -t 3.93738 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6953 -a 0 -x {9.0 10.0 3481 ------- null} r -t 3.93742 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6939 -a 0 -x {9.0 10.0 3474 ------- null} + -t 3.93742 -s 10 -d 7 -p ack -e 40 -c 0 -i 6958 -a 0 -x {10.0 9.0 3474 ------- null} - -t 3.93742 -s 10 -d 7 -p ack -e 40 -c 0 -i 6958 -a 0 -x {10.0 9.0 3474 ------- null} h -t 3.93742 -s 10 -d 7 -p ack -e 40 -c 0 -i 6958 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.93787 -s 0 -d 9 -p ack -e 40 -c 0 -i 6948 -a 0 -x {10.0 9.0 3469 ------- null} + -t 3.93787 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6959 -a 0 -x {9.0 10.0 3484 ------- null} - -t 3.93787 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6959 -a 0 -x {9.0 10.0 3484 ------- null} h -t 3.93787 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6959 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.93789 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6945 -a 0 -x {9.0 10.0 3477 ------- null} - -t 3.93789 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6945 -a 0 -x {9.0 10.0 3477 ------- null} h -t 3.93789 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6945 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.93803 -s 0 -d 9 -p ack -e 40 -c 0 -i 6952 -a 0 -x {10.0 9.0 3471 ------- null} - -t 3.93803 -s 0 -d 9 -p ack -e 40 -c 0 -i 6952 -a 0 -x {10.0 9.0 3471 ------- null} h -t 3.93803 -s 0 -d 9 -p ack -e 40 -c 0 -i 6952 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.93837 -s 10 -d 7 -p ack -e 40 -c 0 -i 6956 -a 0 -x {10.0 9.0 3473 ------- null} + -t 3.93837 -s 7 -d 0 -p ack -e 40 -c 0 -i 6956 -a 0 -x {10.0 9.0 3473 ------- null} h -t 3.93837 -s 7 -d 8 -p ack -e 40 -c 0 -i 6956 -a 0 -x {10.0 9.0 3473 ------- null} r -t 3.93846 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6955 -a 0 -x {9.0 10.0 3482 ------- null} + -t 3.93846 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6955 -a 0 -x {9.0 10.0 3482 ------- null} h -t 3.93846 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6955 -a 0 -x {9.0 10.0 3482 ------- null} r -t 3.93851 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6941 -a 0 -x {9.0 10.0 3475 ------- null} + -t 3.93851 -s 10 -d 7 -p ack -e 40 -c 0 -i 6960 -a 0 -x {10.0 9.0 3475 ------- null} - -t 3.93851 -s 10 -d 7 -p ack -e 40 -c 0 -i 6960 -a 0 -x {10.0 9.0 3475 ------- null} h -t 3.93851 -s 10 -d 7 -p ack -e 40 -c 0 -i 6960 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.93898 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6947 -a 0 -x {9.0 10.0 3478 ------- null} - -t 3.93898 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6947 -a 0 -x {9.0 10.0 3478 ------- null} h -t 3.93898 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6947 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.93899 -s 0 -d 9 -p ack -e 40 -c 0 -i 6950 -a 0 -x {10.0 9.0 3470 ------- null} + -t 3.93899 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6961 -a 0 -x {9.0 10.0 3485 ------- null} - -t 3.93899 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6961 -a 0 -x {9.0 10.0 3485 ------- null} h -t 3.93899 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6961 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.93907 -s 0 -d 9 -p ack -e 40 -c 0 -i 6954 -a 0 -x {10.0 9.0 3472 ------- null} - -t 3.93907 -s 0 -d 9 -p ack -e 40 -c 0 -i 6954 -a 0 -x {10.0 9.0 3472 ------- null} h -t 3.93907 -s 0 -d 9 -p ack -e 40 -c 0 -i 6954 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.93946 -s 10 -d 7 -p ack -e 40 -c 0 -i 6958 -a 0 -x {10.0 9.0 3474 ------- null} + -t 3.93946 -s 7 -d 0 -p ack -e 40 -c 0 -i 6958 -a 0 -x {10.0 9.0 3474 ------- null} h -t 3.93946 -s 7 -d 8 -p ack -e 40 -c 0 -i 6958 -a 0 -x {10.0 9.0 3474 ------- null} r -t 3.9396 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6943 -a 0 -x {9.0 10.0 3476 ------- null} + -t 3.9396 -s 10 -d 7 -p ack -e 40 -c 0 -i 6962 -a 0 -x {10.0 9.0 3476 ------- null} - -t 3.9396 -s 10 -d 7 -p ack -e 40 -c 0 -i 6962 -a 0 -x {10.0 9.0 3476 ------- null} h -t 3.9396 -s 10 -d 7 -p ack -e 40 -c 0 -i 6962 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.93965 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6957 -a 0 -x {9.0 10.0 3483 ------- null} + -t 3.93965 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6957 -a 0 -x {9.0 10.0 3483 ------- null} h -t 3.93965 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6957 -a 0 -x {9.0 10.0 3483 ------- null} + -t 3.94006 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6949 -a 0 -x {9.0 10.0 3479 ------- null} - -t 3.94006 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6949 -a 0 -x {9.0 10.0 3479 ------- null} h -t 3.94006 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6949 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.94006 -s 0 -d 9 -p ack -e 40 -c 0 -i 6952 -a 0 -x {10.0 9.0 3471 ------- null} + -t 3.94006 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6963 -a 0 -x {9.0 10.0 3486 ------- null} - -t 3.94006 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6963 -a 0 -x {9.0 10.0 3486 ------- null} h -t 3.94006 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6963 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.94018 -s 0 -d 9 -p ack -e 40 -c 0 -i 6956 -a 0 -x {10.0 9.0 3473 ------- null} - -t 3.94018 -s 0 -d 9 -p ack -e 40 -c 0 -i 6956 -a 0 -x {10.0 9.0 3473 ------- null} h -t 3.94018 -s 0 -d 9 -p ack -e 40 -c 0 -i 6956 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.94054 -s 10 -d 7 -p ack -e 40 -c 0 -i 6960 -a 0 -x {10.0 9.0 3475 ------- null} + -t 3.94054 -s 7 -d 0 -p ack -e 40 -c 0 -i 6960 -a 0 -x {10.0 9.0 3475 ------- null} h -t 3.94054 -s 7 -d 8 -p ack -e 40 -c 0 -i 6960 -a 0 -x {10.0 9.0 3475 ------- null} r -t 3.94067 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6959 -a 0 -x {9.0 10.0 3484 ------- null} + -t 3.94067 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6959 -a 0 -x {9.0 10.0 3484 ------- null} h -t 3.94067 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6959 -a 0 -x {9.0 10.0 3484 ------- null} r -t 3.94069 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6945 -a 0 -x {9.0 10.0 3477 ------- null} + -t 3.94069 -s 10 -d 7 -p ack -e 40 -c 0 -i 6964 -a 0 -x {10.0 9.0 3477 ------- null} - -t 3.94069 -s 10 -d 7 -p ack -e 40 -c 0 -i 6964 -a 0 -x {10.0 9.0 3477 ------- null} h -t 3.94069 -s 10 -d 7 -p ack -e 40 -c 0 -i 6964 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.9411 -s 0 -d 9 -p ack -e 40 -c 0 -i 6954 -a 0 -x {10.0 9.0 3472 ------- null} + -t 3.9411 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6965 -a 0 -x {9.0 10.0 3487 ------- null} - -t 3.9411 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6965 -a 0 -x {9.0 10.0 3487 ------- null} h -t 3.9411 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6965 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.94115 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6951 -a 0 -x {9.0 10.0 3480 ------- null} - -t 3.94115 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6951 -a 0 -x {9.0 10.0 3480 ------- null} h -t 3.94115 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6951 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.94123 -s 0 -d 9 -p ack -e 40 -c 0 -i 6958 -a 0 -x {10.0 9.0 3474 ------- null} - -t 3.94123 -s 0 -d 9 -p ack -e 40 -c 0 -i 6958 -a 0 -x {10.0 9.0 3474 ------- null} h -t 3.94123 -s 0 -d 9 -p ack -e 40 -c 0 -i 6958 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.94163 -s 10 -d 7 -p ack -e 40 -c 0 -i 6962 -a 0 -x {10.0 9.0 3476 ------- null} + -t 3.94163 -s 7 -d 0 -p ack -e 40 -c 0 -i 6962 -a 0 -x {10.0 9.0 3476 ------- null} h -t 3.94163 -s 7 -d 8 -p ack -e 40 -c 0 -i 6962 -a 0 -x {10.0 9.0 3476 ------- null} r -t 3.94178 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6947 -a 0 -x {9.0 10.0 3478 ------- null} + -t 3.94178 -s 10 -d 7 -p ack -e 40 -c 0 -i 6966 -a 0 -x {10.0 9.0 3478 ------- null} - -t 3.94178 -s 10 -d 7 -p ack -e 40 -c 0 -i 6966 -a 0 -x {10.0 9.0 3478 ------- null} h -t 3.94178 -s 10 -d 7 -p ack -e 40 -c 0 -i 6966 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.94179 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6961 -a 0 -x {9.0 10.0 3485 ------- null} + -t 3.94179 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6961 -a 0 -x {9.0 10.0 3485 ------- null} h -t 3.94179 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6961 -a 0 -x {9.0 10.0 3485 ------- null} r -t 3.94221 -s 0 -d 9 -p ack -e 40 -c 0 -i 6956 -a 0 -x {10.0 9.0 3473 ------- null} + -t 3.94221 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6967 -a 0 -x {9.0 10.0 3488 ------- null} - -t 3.94221 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6967 -a 0 -x {9.0 10.0 3488 ------- null} h -t 3.94221 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6967 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.94224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6953 -a 0 -x {9.0 10.0 3481 ------- null} - -t 3.94224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6953 -a 0 -x {9.0 10.0 3481 ------- null} h -t 3.94224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6953 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.94251 -s 0 -d 9 -p ack -e 40 -c 0 -i 6960 -a 0 -x {10.0 9.0 3475 ------- null} - -t 3.94251 -s 0 -d 9 -p ack -e 40 -c 0 -i 6960 -a 0 -x {10.0 9.0 3475 ------- null} h -t 3.94251 -s 0 -d 9 -p ack -e 40 -c 0 -i 6960 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.94272 -s 10 -d 7 -p ack -e 40 -c 0 -i 6964 -a 0 -x {10.0 9.0 3477 ------- null} + -t 3.94272 -s 7 -d 0 -p ack -e 40 -c 0 -i 6964 -a 0 -x {10.0 9.0 3477 ------- null} h -t 3.94272 -s 7 -d 8 -p ack -e 40 -c 0 -i 6964 -a 0 -x {10.0 9.0 3477 ------- null} r -t 3.94286 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6949 -a 0 -x {9.0 10.0 3479 ------- null} + -t 3.94286 -s 10 -d 7 -p ack -e 40 -c 0 -i 6968 -a 0 -x {10.0 9.0 3479 ------- null} - -t 3.94286 -s 10 -d 7 -p ack -e 40 -c 0 -i 6968 -a 0 -x {10.0 9.0 3479 ------- null} h -t 3.94286 -s 10 -d 7 -p ack -e 40 -c 0 -i 6968 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.94286 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6963 -a 0 -x {9.0 10.0 3486 ------- null} + -t 3.94286 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6963 -a 0 -x {9.0 10.0 3486 ------- null} h -t 3.94286 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6963 -a 0 -x {9.0 10.0 3486 ------- null} r -t 3.94326 -s 0 -d 9 -p ack -e 40 -c 0 -i 6958 -a 0 -x {10.0 9.0 3474 ------- null} + -t 3.94326 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6969 -a 0 -x {9.0 10.0 3489 ------- null} - -t 3.94326 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6969 -a 0 -x {9.0 10.0 3489 ------- null} h -t 3.94326 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6969 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.94344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6955 -a 0 -x {9.0 10.0 3482 ------- null} - -t 3.94344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6955 -a 0 -x {9.0 10.0 3482 ------- null} h -t 3.94344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6955 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.9435 -s 0 -d 9 -p ack -e 40 -c 0 -i 6962 -a 0 -x {10.0 9.0 3476 ------- null} - -t 3.9435 -s 0 -d 9 -p ack -e 40 -c 0 -i 6962 -a 0 -x {10.0 9.0 3476 ------- null} h -t 3.9435 -s 0 -d 9 -p ack -e 40 -c 0 -i 6962 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.94381 -s 10 -d 7 -p ack -e 40 -c 0 -i 6966 -a 0 -x {10.0 9.0 3478 ------- null} + -t 3.94381 -s 7 -d 0 -p ack -e 40 -c 0 -i 6966 -a 0 -x {10.0 9.0 3478 ------- null} h -t 3.94381 -s 7 -d 8 -p ack -e 40 -c 0 -i 6966 -a 0 -x {10.0 9.0 3478 ------- null} r -t 3.9439 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6965 -a 0 -x {9.0 10.0 3487 ------- null} + -t 3.9439 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6965 -a 0 -x {9.0 10.0 3487 ------- null} h -t 3.9439 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6965 -a 0 -x {9.0 10.0 3487 ------- null} r -t 3.94395 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6951 -a 0 -x {9.0 10.0 3480 ------- null} + -t 3.94395 -s 10 -d 7 -p ack -e 40 -c 0 -i 6970 -a 0 -x {10.0 9.0 3480 ------- null} - -t 3.94395 -s 10 -d 7 -p ack -e 40 -c 0 -i 6970 -a 0 -x {10.0 9.0 3480 ------- null} h -t 3.94395 -s 10 -d 7 -p ack -e 40 -c 0 -i 6970 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.94453 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6957 -a 0 -x {9.0 10.0 3483 ------- null} - -t 3.94453 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6957 -a 0 -x {9.0 10.0 3483 ------- null} h -t 3.94453 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6957 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.94454 -s 0 -d 9 -p ack -e 40 -c 0 -i 6960 -a 0 -x {10.0 9.0 3475 ------- null} + -t 3.94454 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6971 -a 0 -x {9.0 10.0 3490 ------- null} - -t 3.94454 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6971 -a 0 -x {9.0 10.0 3490 ------- null} h -t 3.94454 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6971 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.94466 -s 0 -d 9 -p ack -e 40 -c 0 -i 6964 -a 0 -x {10.0 9.0 3477 ------- null} - -t 3.94466 -s 0 -d 9 -p ack -e 40 -c 0 -i 6964 -a 0 -x {10.0 9.0 3477 ------- null} h -t 3.94466 -s 0 -d 9 -p ack -e 40 -c 0 -i 6964 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.9449 -s 10 -d 7 -p ack -e 40 -c 0 -i 6968 -a 0 -x {10.0 9.0 3479 ------- null} + -t 3.9449 -s 7 -d 0 -p ack -e 40 -c 0 -i 6968 -a 0 -x {10.0 9.0 3479 ------- null} h -t 3.9449 -s 7 -d 8 -p ack -e 40 -c 0 -i 6968 -a 0 -x {10.0 9.0 3479 ------- null} r -t 3.94501 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6967 -a 0 -x {9.0 10.0 3488 ------- null} + -t 3.94501 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6967 -a 0 -x {9.0 10.0 3488 ------- null} h -t 3.94501 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6967 -a 0 -x {9.0 10.0 3488 ------- null} r -t 3.94504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6953 -a 0 -x {9.0 10.0 3481 ------- null} + -t 3.94504 -s 10 -d 7 -p ack -e 40 -c 0 -i 6972 -a 0 -x {10.0 9.0 3481 ------- null} - -t 3.94504 -s 10 -d 7 -p ack -e 40 -c 0 -i 6972 -a 0 -x {10.0 9.0 3481 ------- null} h -t 3.94504 -s 10 -d 7 -p ack -e 40 -c 0 -i 6972 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.94554 -s 0 -d 9 -p ack -e 40 -c 0 -i 6962 -a 0 -x {10.0 9.0 3476 ------- null} + -t 3.94554 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6973 -a 0 -x {9.0 10.0 3491 ------- null} - -t 3.94554 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6973 -a 0 -x {9.0 10.0 3491 ------- null} h -t 3.94554 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6973 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.94562 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6959 -a 0 -x {9.0 10.0 3484 ------- null} - -t 3.94562 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6959 -a 0 -x {9.0 10.0 3484 ------- null} h -t 3.94562 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6959 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.94592 -s 0 -d 9 -p ack -e 40 -c 0 -i 6966 -a 0 -x {10.0 9.0 3478 ------- null} - -t 3.94592 -s 0 -d 9 -p ack -e 40 -c 0 -i 6966 -a 0 -x {10.0 9.0 3478 ------- null} h -t 3.94592 -s 0 -d 9 -p ack -e 40 -c 0 -i 6966 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.94598 -s 10 -d 7 -p ack -e 40 -c 0 -i 6970 -a 0 -x {10.0 9.0 3480 ------- null} + -t 3.94598 -s 7 -d 0 -p ack -e 40 -c 0 -i 6970 -a 0 -x {10.0 9.0 3480 ------- null} h -t 3.94598 -s 7 -d 8 -p ack -e 40 -c 0 -i 6970 -a 0 -x {10.0 9.0 3480 ------- null} r -t 3.94606 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6969 -a 0 -x {9.0 10.0 3489 ------- null} + -t 3.94606 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6969 -a 0 -x {9.0 10.0 3489 ------- null} h -t 3.94606 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6969 -a 0 -x {9.0 10.0 3489 ------- null} r -t 3.94624 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6955 -a 0 -x {9.0 10.0 3482 ------- null} + -t 3.94624 -s 10 -d 7 -p ack -e 40 -c 0 -i 6974 -a 0 -x {10.0 9.0 3482 ------- null} - -t 3.94624 -s 10 -d 7 -p ack -e 40 -c 0 -i 6974 -a 0 -x {10.0 9.0 3482 ------- null} h -t 3.94624 -s 10 -d 7 -p ack -e 40 -c 0 -i 6974 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.94669 -s 0 -d 9 -p ack -e 40 -c 0 -i 6964 -a 0 -x {10.0 9.0 3477 ------- null} + -t 3.94669 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6975 -a 0 -x {9.0 10.0 3492 ------- null} - -t 3.94669 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6975 -a 0 -x {9.0 10.0 3492 ------- null} h -t 3.94669 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6975 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.94683 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6961 -a 0 -x {9.0 10.0 3485 ------- null} - -t 3.94683 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6961 -a 0 -x {9.0 10.0 3485 ------- null} h -t 3.94683 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6961 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.94706 -s 0 -d 9 -p ack -e 40 -c 0 -i 6968 -a 0 -x {10.0 9.0 3479 ------- null} - -t 3.94706 -s 0 -d 9 -p ack -e 40 -c 0 -i 6968 -a 0 -x {10.0 9.0 3479 ------- null} h -t 3.94706 -s 0 -d 9 -p ack -e 40 -c 0 -i 6968 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.94707 -s 10 -d 7 -p ack -e 40 -c 0 -i 6972 -a 0 -x {10.0 9.0 3481 ------- null} + -t 3.94707 -s 7 -d 0 -p ack -e 40 -c 0 -i 6972 -a 0 -x {10.0 9.0 3481 ------- null} h -t 3.94707 -s 7 -d 8 -p ack -e 40 -c 0 -i 6972 -a 0 -x {10.0 9.0 3481 ------- null} r -t 3.94733 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6957 -a 0 -x {9.0 10.0 3483 ------- null} + -t 3.94733 -s 10 -d 7 -p ack -e 40 -c 0 -i 6976 -a 0 -x {10.0 9.0 3483 ------- null} - -t 3.94733 -s 10 -d 7 -p ack -e 40 -c 0 -i 6976 -a 0 -x {10.0 9.0 3483 ------- null} h -t 3.94733 -s 10 -d 7 -p ack -e 40 -c 0 -i 6976 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.94734 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6971 -a 0 -x {9.0 10.0 3490 ------- null} + -t 3.94734 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6971 -a 0 -x {9.0 10.0 3490 ------- null} h -t 3.94734 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6971 -a 0 -x {9.0 10.0 3490 ------- null} + -t 3.94792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6963 -a 0 -x {9.0 10.0 3486 ------- null} - -t 3.94792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6963 -a 0 -x {9.0 10.0 3486 ------- null} h -t 3.94792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6963 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.94795 -s 0 -d 9 -p ack -e 40 -c 0 -i 6966 -a 0 -x {10.0 9.0 3478 ------- null} + -t 3.94795 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6977 -a 0 -x {9.0 10.0 3493 ------- null} - -t 3.94795 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6977 -a 0 -x {9.0 10.0 3493 ------- null} h -t 3.94795 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6977 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.94811 -s 0 -d 9 -p ack -e 40 -c 0 -i 6970 -a 0 -x {10.0 9.0 3480 ------- null} - -t 3.94811 -s 0 -d 9 -p ack -e 40 -c 0 -i 6970 -a 0 -x {10.0 9.0 3480 ------- null} h -t 3.94811 -s 0 -d 9 -p ack -e 40 -c 0 -i 6970 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.94827 -s 10 -d 7 -p ack -e 40 -c 0 -i 6974 -a 0 -x {10.0 9.0 3482 ------- null} + -t 3.94827 -s 7 -d 0 -p ack -e 40 -c 0 -i 6974 -a 0 -x {10.0 9.0 3482 ------- null} h -t 3.94827 -s 7 -d 8 -p ack -e 40 -c 0 -i 6974 -a 0 -x {10.0 9.0 3482 ------- null} r -t 3.94834 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6973 -a 0 -x {9.0 10.0 3491 ------- null} + -t 3.94834 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6973 -a 0 -x {9.0 10.0 3491 ------- null} h -t 3.94834 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6973 -a 0 -x {9.0 10.0 3491 ------- null} r -t 3.94842 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6959 -a 0 -x {9.0 10.0 3484 ------- null} + -t 3.94842 -s 10 -d 7 -p ack -e 40 -c 0 -i 6978 -a 0 -x {10.0 9.0 3484 ------- null} - -t 3.94842 -s 10 -d 7 -p ack -e 40 -c 0 -i 6978 -a 0 -x {10.0 9.0 3484 ------- null} h -t 3.94842 -s 10 -d 7 -p ack -e 40 -c 0 -i 6978 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.94901 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6965 -a 0 -x {9.0 10.0 3487 ------- null} - -t 3.94901 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6965 -a 0 -x {9.0 10.0 3487 ------- null} h -t 3.94901 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6965 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.94909 -s 0 -d 9 -p ack -e 40 -c 0 -i 6968 -a 0 -x {10.0 9.0 3479 ------- null} + -t 3.94909 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6979 -a 0 -x {9.0 10.0 3494 ------- null} - -t 3.94909 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6979 -a 0 -x {9.0 10.0 3494 ------- null} h -t 3.94909 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6979 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.94922 -s 0 -d 9 -p ack -e 40 -c 0 -i 6972 -a 0 -x {10.0 9.0 3481 ------- null} - -t 3.94922 -s 0 -d 9 -p ack -e 40 -c 0 -i 6972 -a 0 -x {10.0 9.0 3481 ------- null} h -t 3.94922 -s 0 -d 9 -p ack -e 40 -c 0 -i 6972 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.94936 -s 10 -d 7 -p ack -e 40 -c 0 -i 6976 -a 0 -x {10.0 9.0 3483 ------- null} + -t 3.94936 -s 7 -d 0 -p ack -e 40 -c 0 -i 6976 -a 0 -x {10.0 9.0 3483 ------- null} h -t 3.94936 -s 7 -d 8 -p ack -e 40 -c 0 -i 6976 -a 0 -x {10.0 9.0 3483 ------- null} r -t 3.94949 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6975 -a 0 -x {9.0 10.0 3492 ------- null} + -t 3.94949 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6975 -a 0 -x {9.0 10.0 3492 ------- null} h -t 3.94949 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6975 -a 0 -x {9.0 10.0 3492 ------- null} r -t 3.94963 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6961 -a 0 -x {9.0 10.0 3485 ------- null} + -t 3.94963 -s 10 -d 7 -p ack -e 40 -c 0 -i 6980 -a 0 -x {10.0 9.0 3485 ------- null} - -t 3.94963 -s 10 -d 7 -p ack -e 40 -c 0 -i 6980 -a 0 -x {10.0 9.0 3485 ------- null} h -t 3.94963 -s 10 -d 7 -p ack -e 40 -c 0 -i 6980 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.9501 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6967 -a 0 -x {9.0 10.0 3488 ------- null} - -t 3.9501 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6967 -a 0 -x {9.0 10.0 3488 ------- null} h -t 3.9501 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6967 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.95014 -s 0 -d 9 -p ack -e 40 -c 0 -i 6970 -a 0 -x {10.0 9.0 3480 ------- null} + -t 3.95014 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6981 -a 0 -x {9.0 10.0 3495 ------- null} - -t 3.95014 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6981 -a 0 -x {9.0 10.0 3495 ------- null} h -t 3.95014 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6981 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.95019 -s 0 -d 9 -p ack -e 40 -c 0 -i 6974 -a 0 -x {10.0 9.0 3482 ------- null} - -t 3.95019 -s 0 -d 9 -p ack -e 40 -c 0 -i 6974 -a 0 -x {10.0 9.0 3482 ------- null} h -t 3.95019 -s 0 -d 9 -p ack -e 40 -c 0 -i 6974 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.95045 -s 10 -d 7 -p ack -e 40 -c 0 -i 6978 -a 0 -x {10.0 9.0 3484 ------- null} + -t 3.95045 -s 7 -d 0 -p ack -e 40 -c 0 -i 6978 -a 0 -x {10.0 9.0 3484 ------- null} h -t 3.95045 -s 7 -d 8 -p ack -e 40 -c 0 -i 6978 -a 0 -x {10.0 9.0 3484 ------- null} r -t 3.95072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6963 -a 0 -x {9.0 10.0 3486 ------- null} + -t 3.95072 -s 10 -d 7 -p ack -e 40 -c 0 -i 6982 -a 0 -x {10.0 9.0 3486 ------- null} - -t 3.95072 -s 10 -d 7 -p ack -e 40 -c 0 -i 6982 -a 0 -x {10.0 9.0 3486 ------- null} h -t 3.95072 -s 10 -d 7 -p ack -e 40 -c 0 -i 6982 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.95075 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6977 -a 0 -x {9.0 10.0 3493 ------- null} + -t 3.95075 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6977 -a 0 -x {9.0 10.0 3493 ------- null} h -t 3.95075 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6977 -a 0 -x {9.0 10.0 3493 ------- null} + -t 3.95118 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6969 -a 0 -x {9.0 10.0 3489 ------- null} - -t 3.95118 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6969 -a 0 -x {9.0 10.0 3489 ------- null} h -t 3.95118 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6969 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.95125 -s 0 -d 9 -p ack -e 40 -c 0 -i 6972 -a 0 -x {10.0 9.0 3481 ------- null} + -t 3.95125 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6983 -a 0 -x {9.0 10.0 3496 ------- null} - -t 3.95125 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6983 -a 0 -x {9.0 10.0 3496 ------- null} h -t 3.95125 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6983 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.95126 -s 0 -d 9 -p ack -e 40 -c 0 -i 6976 -a 0 -x {10.0 9.0 3483 ------- null} - -t 3.95126 -s 0 -d 9 -p ack -e 40 -c 0 -i 6976 -a 0 -x {10.0 9.0 3483 ------- null} h -t 3.95126 -s 0 -d 9 -p ack -e 40 -c 0 -i 6976 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.95166 -s 10 -d 7 -p ack -e 40 -c 0 -i 6980 -a 0 -x {10.0 9.0 3485 ------- null} + -t 3.95166 -s 7 -d 0 -p ack -e 40 -c 0 -i 6980 -a 0 -x {10.0 9.0 3485 ------- null} h -t 3.95166 -s 7 -d 8 -p ack -e 40 -c 0 -i 6980 -a 0 -x {10.0 9.0 3485 ------- null} r -t 3.95181 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6965 -a 0 -x {9.0 10.0 3487 ------- null} + -t 3.95181 -s 10 -d 7 -p ack -e 40 -c 0 -i 6984 -a 0 -x {10.0 9.0 3487 ------- null} - -t 3.95181 -s 10 -d 7 -p ack -e 40 -c 0 -i 6984 -a 0 -x {10.0 9.0 3487 ------- null} h -t 3.95181 -s 10 -d 7 -p ack -e 40 -c 0 -i 6984 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.95189 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6979 -a 0 -x {9.0 10.0 3494 ------- null} + -t 3.95189 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6979 -a 0 -x {9.0 10.0 3494 ------- null} h -t 3.95189 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6979 -a 0 -x {9.0 10.0 3494 ------- null} r -t 3.95222 -s 0 -d 9 -p ack -e 40 -c 0 -i 6974 -a 0 -x {10.0 9.0 3482 ------- null} + -t 3.95222 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6985 -a 0 -x {9.0 10.0 3497 ------- null} - -t 3.95222 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6985 -a 0 -x {9.0 10.0 3497 ------- null} h -t 3.95222 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6985 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.95227 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6971 -a 0 -x {9.0 10.0 3490 ------- null} - -t 3.95227 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6971 -a 0 -x {9.0 10.0 3490 ------- null} h -t 3.95227 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6971 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.95237 -s 0 -d 9 -p ack -e 40 -c 0 -i 6978 -a 0 -x {10.0 9.0 3484 ------- null} - -t 3.95237 -s 0 -d 9 -p ack -e 40 -c 0 -i 6978 -a 0 -x {10.0 9.0 3484 ------- null} h -t 3.95237 -s 0 -d 9 -p ack -e 40 -c 0 -i 6978 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.95275 -s 10 -d 7 -p ack -e 40 -c 0 -i 6982 -a 0 -x {10.0 9.0 3486 ------- null} + -t 3.95275 -s 7 -d 0 -p ack -e 40 -c 0 -i 6982 -a 0 -x {10.0 9.0 3486 ------- null} h -t 3.95275 -s 7 -d 8 -p ack -e 40 -c 0 -i 6982 -a 0 -x {10.0 9.0 3486 ------- null} r -t 3.9529 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6967 -a 0 -x {9.0 10.0 3488 ------- null} + -t 3.9529 -s 10 -d 7 -p ack -e 40 -c 0 -i 6986 -a 0 -x {10.0 9.0 3488 ------- null} - -t 3.9529 -s 10 -d 7 -p ack -e 40 -c 0 -i 6986 -a 0 -x {10.0 9.0 3488 ------- null} h -t 3.9529 -s 10 -d 7 -p ack -e 40 -c 0 -i 6986 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.95294 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6981 -a 0 -x {9.0 10.0 3495 ------- null} + -t 3.95294 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6981 -a 0 -x {9.0 10.0 3495 ------- null} h -t 3.95294 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6981 -a 0 -x {9.0 10.0 3495 ------- null} r -t 3.9533 -s 0 -d 9 -p ack -e 40 -c 0 -i 6976 -a 0 -x {10.0 9.0 3483 ------- null} + -t 3.9533 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6987 -a 0 -x {9.0 10.0 3498 ------- null} - -t 3.9533 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6987 -a 0 -x {9.0 10.0 3498 ------- null} h -t 3.9533 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6987 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.95336 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6973 -a 0 -x {9.0 10.0 3491 ------- null} - -t 3.95336 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6973 -a 0 -x {9.0 10.0 3491 ------- null} h -t 3.95336 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6973 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.95344 -s 0 -d 9 -p ack -e 40 -c 0 -i 6980 -a 0 -x {10.0 9.0 3485 ------- null} - -t 3.95344 -s 0 -d 9 -p ack -e 40 -c 0 -i 6980 -a 0 -x {10.0 9.0 3485 ------- null} h -t 3.95344 -s 0 -d 9 -p ack -e 40 -c 0 -i 6980 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.95384 -s 10 -d 7 -p ack -e 40 -c 0 -i 6984 -a 0 -x {10.0 9.0 3487 ------- null} + -t 3.95384 -s 7 -d 0 -p ack -e 40 -c 0 -i 6984 -a 0 -x {10.0 9.0 3487 ------- null} h -t 3.95384 -s 7 -d 8 -p ack -e 40 -c 0 -i 6984 -a 0 -x {10.0 9.0 3487 ------- null} r -t 3.95398 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6969 -a 0 -x {9.0 10.0 3489 ------- null} + -t 3.95398 -s 10 -d 7 -p ack -e 40 -c 0 -i 6988 -a 0 -x {10.0 9.0 3489 ------- null} - -t 3.95398 -s 10 -d 7 -p ack -e 40 -c 0 -i 6988 -a 0 -x {10.0 9.0 3489 ------- null} h -t 3.95398 -s 10 -d 7 -p ack -e 40 -c 0 -i 6988 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.95405 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6983 -a 0 -x {9.0 10.0 3496 ------- null} + -t 3.95405 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6983 -a 0 -x {9.0 10.0 3496 ------- null} h -t 3.95405 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6983 -a 0 -x {9.0 10.0 3496 ------- null} r -t 3.9544 -s 0 -d 9 -p ack -e 40 -c 0 -i 6978 -a 0 -x {10.0 9.0 3484 ------- null} + -t 3.9544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6989 -a 0 -x {9.0 10.0 3499 ------- null} - -t 3.9544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6989 -a 0 -x {9.0 10.0 3499 ------- null} h -t 3.9544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6989 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.95445 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6975 -a 0 -x {9.0 10.0 3492 ------- null} - -t 3.95445 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6975 -a 0 -x {9.0 10.0 3492 ------- null} h -t 3.95445 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6975 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.95461 -s 0 -d 9 -p ack -e 40 -c 0 -i 6982 -a 0 -x {10.0 9.0 3486 ------- null} - -t 3.95461 -s 0 -d 9 -p ack -e 40 -c 0 -i 6982 -a 0 -x {10.0 9.0 3486 ------- null} h -t 3.95461 -s 0 -d 9 -p ack -e 40 -c 0 -i 6982 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.95493 -s 10 -d 7 -p ack -e 40 -c 0 -i 6986 -a 0 -x {10.0 9.0 3488 ------- null} + -t 3.95493 -s 7 -d 0 -p ack -e 40 -c 0 -i 6986 -a 0 -x {10.0 9.0 3488 ------- null} h -t 3.95493 -s 7 -d 8 -p ack -e 40 -c 0 -i 6986 -a 0 -x {10.0 9.0 3488 ------- null} r -t 3.95502 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6985 -a 0 -x {9.0 10.0 3497 ------- null} + -t 3.95502 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6985 -a 0 -x {9.0 10.0 3497 ------- null} h -t 3.95502 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6985 -a 0 -x {9.0 10.0 3497 ------- null} r -t 3.95507 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6971 -a 0 -x {9.0 10.0 3490 ------- null} + -t 3.95507 -s 10 -d 7 -p ack -e 40 -c 0 -i 6990 -a 0 -x {10.0 9.0 3490 ------- null} - -t 3.95507 -s 10 -d 7 -p ack -e 40 -c 0 -i 6990 -a 0 -x {10.0 9.0 3490 ------- null} h -t 3.95507 -s 10 -d 7 -p ack -e 40 -c 0 -i 6990 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.95547 -s 0 -d 9 -p ack -e 40 -c 0 -i 6980 -a 0 -x {10.0 9.0 3485 ------- null} + -t 3.95547 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6991 -a 0 -x {9.0 10.0 3500 ------- null} - -t 3.95547 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6991 -a 0 -x {9.0 10.0 3500 ------- null} h -t 3.95547 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6991 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.95554 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6977 -a 0 -x {9.0 10.0 3493 ------- null} - -t 3.95554 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6977 -a 0 -x {9.0 10.0 3493 ------- null} h -t 3.95554 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6977 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.95574 -s 0 -d 9 -p ack -e 40 -c 0 -i 6984 -a 0 -x {10.0 9.0 3487 ------- null} - -t 3.95574 -s 0 -d 9 -p ack -e 40 -c 0 -i 6984 -a 0 -x {10.0 9.0 3487 ------- null} h -t 3.95574 -s 0 -d 9 -p ack -e 40 -c 0 -i 6984 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.95602 -s 10 -d 7 -p ack -e 40 -c 0 -i 6988 -a 0 -x {10.0 9.0 3489 ------- null} + -t 3.95602 -s 7 -d 0 -p ack -e 40 -c 0 -i 6988 -a 0 -x {10.0 9.0 3489 ------- null} h -t 3.95602 -s 7 -d 8 -p ack -e 40 -c 0 -i 6988 -a 0 -x {10.0 9.0 3489 ------- null} r -t 3.9561 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6987 -a 0 -x {9.0 10.0 3498 ------- null} + -t 3.9561 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6987 -a 0 -x {9.0 10.0 3498 ------- null} h -t 3.9561 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6987 -a 0 -x {9.0 10.0 3498 ------- null} r -t 3.95616 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6973 -a 0 -x {9.0 10.0 3491 ------- null} + -t 3.95616 -s 10 -d 7 -p ack -e 40 -c 0 -i 6992 -a 0 -x {10.0 9.0 3491 ------- null} - -t 3.95616 -s 10 -d 7 -p ack -e 40 -c 0 -i 6992 -a 0 -x {10.0 9.0 3491 ------- null} h -t 3.95616 -s 10 -d 7 -p ack -e 40 -c 0 -i 6992 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.95662 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6979 -a 0 -x {9.0 10.0 3494 ------- null} - -t 3.95662 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6979 -a 0 -x {9.0 10.0 3494 ------- null} h -t 3.95662 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6979 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.95664 -s 0 -d 9 -p ack -e 40 -c 0 -i 6982 -a 0 -x {10.0 9.0 3486 ------- null} + -t 3.95664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6993 -a 0 -x {9.0 10.0 3501 ------- null} - -t 3.95664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6993 -a 0 -x {9.0 10.0 3501 ------- null} h -t 3.95664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6993 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.9569 -s 0 -d 9 -p ack -e 40 -c 0 -i 6986 -a 0 -x {10.0 9.0 3488 ------- null} - -t 3.9569 -s 0 -d 9 -p ack -e 40 -c 0 -i 6986 -a 0 -x {10.0 9.0 3488 ------- null} h -t 3.9569 -s 0 -d 9 -p ack -e 40 -c 0 -i 6986 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.9571 -s 10 -d 7 -p ack -e 40 -c 0 -i 6990 -a 0 -x {10.0 9.0 3490 ------- null} + -t 3.9571 -s 7 -d 0 -p ack -e 40 -c 0 -i 6990 -a 0 -x {10.0 9.0 3490 ------- null} h -t 3.9571 -s 7 -d 8 -p ack -e 40 -c 0 -i 6990 -a 0 -x {10.0 9.0 3490 ------- null} r -t 3.9572 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6989 -a 0 -x {9.0 10.0 3499 ------- null} + -t 3.9572 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6989 -a 0 -x {9.0 10.0 3499 ------- null} h -t 3.9572 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6989 -a 0 -x {9.0 10.0 3499 ------- null} r -t 3.95725 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6975 -a 0 -x {9.0 10.0 3492 ------- null} + -t 3.95725 -s 10 -d 7 -p ack -e 40 -c 0 -i 6994 -a 0 -x {10.0 9.0 3492 ------- null} - -t 3.95725 -s 10 -d 7 -p ack -e 40 -c 0 -i 6994 -a 0 -x {10.0 9.0 3492 ------- null} h -t 3.95725 -s 10 -d 7 -p ack -e 40 -c 0 -i 6994 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.95773 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6981 -a 0 -x {9.0 10.0 3495 ------- null} - -t 3.95773 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6981 -a 0 -x {9.0 10.0 3495 ------- null} h -t 3.95773 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6981 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.95778 -s 0 -d 9 -p ack -e 40 -c 0 -i 6984 -a 0 -x {10.0 9.0 3487 ------- null} + -t 3.95778 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6995 -a 0 -x {9.0 10.0 3502 ------- null} - -t 3.95778 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6995 -a 0 -x {9.0 10.0 3502 ------- null} h -t 3.95778 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6995 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.95787 -s 0 -d 9 -p ack -e 40 -c 0 -i 6988 -a 0 -x {10.0 9.0 3489 ------- null} - -t 3.95787 -s 0 -d 9 -p ack -e 40 -c 0 -i 6988 -a 0 -x {10.0 9.0 3489 ------- null} h -t 3.95787 -s 0 -d 9 -p ack -e 40 -c 0 -i 6988 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.95819 -s 10 -d 7 -p ack -e 40 -c 0 -i 6992 -a 0 -x {10.0 9.0 3491 ------- null} + -t 3.95819 -s 7 -d 0 -p ack -e 40 -c 0 -i 6992 -a 0 -x {10.0 9.0 3491 ------- null} h -t 3.95819 -s 7 -d 8 -p ack -e 40 -c 0 -i 6992 -a 0 -x {10.0 9.0 3491 ------- null} r -t 3.95827 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6991 -a 0 -x {9.0 10.0 3500 ------- null} + -t 3.95827 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6991 -a 0 -x {9.0 10.0 3500 ------- null} h -t 3.95827 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6991 -a 0 -x {9.0 10.0 3500 ------- null} r -t 3.95834 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6977 -a 0 -x {9.0 10.0 3493 ------- null} + -t 3.95834 -s 10 -d 7 -p ack -e 40 -c 0 -i 6996 -a 0 -x {10.0 9.0 3493 ------- null} - -t 3.95834 -s 10 -d 7 -p ack -e 40 -c 0 -i 6996 -a 0 -x {10.0 9.0 3493 ------- null} h -t 3.95834 -s 10 -d 7 -p ack -e 40 -c 0 -i 6996 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.95882 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6983 -a 0 -x {9.0 10.0 3496 ------- null} - -t 3.95882 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6983 -a 0 -x {9.0 10.0 3496 ------- null} h -t 3.95882 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6983 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.95893 -s 0 -d 9 -p ack -e 40 -c 0 -i 6986 -a 0 -x {10.0 9.0 3488 ------- null} + -t 3.95893 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6997 -a 0 -x {9.0 10.0 3503 ------- null} - -t 3.95893 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6997 -a 0 -x {9.0 10.0 3503 ------- null} h -t 3.95893 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6997 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.95899 -s 0 -d 9 -p ack -e 40 -c 0 -i 6990 -a 0 -x {10.0 9.0 3490 ------- null} - -t 3.95899 -s 0 -d 9 -p ack -e 40 -c 0 -i 6990 -a 0 -x {10.0 9.0 3490 ------- null} h -t 3.95899 -s 0 -d 9 -p ack -e 40 -c 0 -i 6990 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.95928 -s 10 -d 7 -p ack -e 40 -c 0 -i 6994 -a 0 -x {10.0 9.0 3492 ------- null} + -t 3.95928 -s 7 -d 0 -p ack -e 40 -c 0 -i 6994 -a 0 -x {10.0 9.0 3492 ------- null} h -t 3.95928 -s 7 -d 8 -p ack -e 40 -c 0 -i 6994 -a 0 -x {10.0 9.0 3492 ------- null} r -t 3.95942 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6979 -a 0 -x {9.0 10.0 3494 ------- null} + -t 3.95942 -s 10 -d 7 -p ack -e 40 -c 0 -i 6998 -a 0 -x {10.0 9.0 3494 ------- null} - -t 3.95942 -s 10 -d 7 -p ack -e 40 -c 0 -i 6998 -a 0 -x {10.0 9.0 3494 ------- null} h -t 3.95942 -s 10 -d 7 -p ack -e 40 -c 0 -i 6998 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.95944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6993 -a 0 -x {9.0 10.0 3501 ------- null} + -t 3.95944 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6993 -a 0 -x {9.0 10.0 3501 ------- null} h -t 3.95944 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6993 -a 0 -x {9.0 10.0 3501 ------- null} + -t 3.9599 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6985 -a 0 -x {9.0 10.0 3497 ------- null} - -t 3.9599 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6985 -a 0 -x {9.0 10.0 3497 ------- null} h -t 3.9599 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6985 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.9599 -s 0 -d 9 -p ack -e 40 -c 0 -i 6988 -a 0 -x {10.0 9.0 3489 ------- null} + -t 3.9599 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6999 -a 0 -x {9.0 10.0 3504 ------- null} - -t 3.9599 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6999 -a 0 -x {9.0 10.0 3504 ------- null} h -t 3.9599 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6999 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.96011 -s 0 -d 9 -p ack -e 40 -c 0 -i 6992 -a 0 -x {10.0 9.0 3491 ------- null} - -t 3.96011 -s 0 -d 9 -p ack -e 40 -c 0 -i 6992 -a 0 -x {10.0 9.0 3491 ------- null} h -t 3.96011 -s 0 -d 9 -p ack -e 40 -c 0 -i 6992 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.96037 -s 10 -d 7 -p ack -e 40 -c 0 -i 6996 -a 0 -x {10.0 9.0 3493 ------- null} + -t 3.96037 -s 7 -d 0 -p ack -e 40 -c 0 -i 6996 -a 0 -x {10.0 9.0 3493 ------- null} h -t 3.96037 -s 7 -d 8 -p ack -e 40 -c 0 -i 6996 -a 0 -x {10.0 9.0 3493 ------- null} r -t 3.96053 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6981 -a 0 -x {9.0 10.0 3495 ------- null} + -t 3.96053 -s 10 -d 7 -p ack -e 40 -c 0 -i 7000 -a 0 -x {10.0 9.0 3495 ------- null} - -t 3.96053 -s 10 -d 7 -p ack -e 40 -c 0 -i 7000 -a 0 -x {10.0 9.0 3495 ------- null} h -t 3.96053 -s 10 -d 7 -p ack -e 40 -c 0 -i 7000 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.96058 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6995 -a 0 -x {9.0 10.0 3502 ------- null} + -t 3.96058 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6995 -a 0 -x {9.0 10.0 3502 ------- null} h -t 3.96058 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6995 -a 0 -x {9.0 10.0 3502 ------- null} + -t 3.96099 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6987 -a 0 -x {9.0 10.0 3498 ------- null} - -t 3.96099 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6987 -a 0 -x {9.0 10.0 3498 ------- null} h -t 3.96099 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6987 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.96102 -s 0 -d 9 -p ack -e 40 -c 0 -i 6990 -a 0 -x {10.0 9.0 3490 ------- null} + -t 3.96102 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7001 -a 0 -x {9.0 10.0 3505 ------- null} - -t 3.96102 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7001 -a 0 -x {9.0 10.0 3505 ------- null} h -t 3.96102 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7001 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.96118 -s 0 -d 9 -p ack -e 40 -c 0 -i 6994 -a 0 -x {10.0 9.0 3492 ------- null} - -t 3.96118 -s 0 -d 9 -p ack -e 40 -c 0 -i 6994 -a 0 -x {10.0 9.0 3492 ------- null} h -t 3.96118 -s 0 -d 9 -p ack -e 40 -c 0 -i 6994 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.96146 -s 10 -d 7 -p ack -e 40 -c 0 -i 6998 -a 0 -x {10.0 9.0 3494 ------- null} + -t 3.96146 -s 7 -d 0 -p ack -e 40 -c 0 -i 6998 -a 0 -x {10.0 9.0 3494 ------- null} h -t 3.96146 -s 7 -d 8 -p ack -e 40 -c 0 -i 6998 -a 0 -x {10.0 9.0 3494 ------- null} r -t 3.96162 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6983 -a 0 -x {9.0 10.0 3496 ------- null} + -t 3.96162 -s 10 -d 7 -p ack -e 40 -c 0 -i 7002 -a 0 -x {10.0 9.0 3496 ------- null} - -t 3.96162 -s 10 -d 7 -p ack -e 40 -c 0 -i 7002 -a 0 -x {10.0 9.0 3496 ------- null} h -t 3.96162 -s 10 -d 7 -p ack -e 40 -c 0 -i 7002 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.96173 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6997 -a 0 -x {9.0 10.0 3503 ------- null} + -t 3.96173 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6997 -a 0 -x {9.0 10.0 3503 ------- null} h -t 3.96173 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6997 -a 0 -x {9.0 10.0 3503 ------- null} + -t 3.96208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6989 -a 0 -x {9.0 10.0 3499 ------- null} - -t 3.96208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6989 -a 0 -x {9.0 10.0 3499 ------- null} h -t 3.96208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6989 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.96214 -s 0 -d 9 -p ack -e 40 -c 0 -i 6992 -a 0 -x {10.0 9.0 3491 ------- null} + -t 3.96214 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7003 -a 0 -x {9.0 10.0 3506 ------- null} - -t 3.96214 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7003 -a 0 -x {9.0 10.0 3506 ------- null} h -t 3.96214 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7003 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.96238 -s 0 -d 9 -p ack -e 40 -c 0 -i 6996 -a 0 -x {10.0 9.0 3493 ------- null} - -t 3.96238 -s 0 -d 9 -p ack -e 40 -c 0 -i 6996 -a 0 -x {10.0 9.0 3493 ------- null} h -t 3.96238 -s 0 -d 9 -p ack -e 40 -c 0 -i 6996 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.96256 -s 10 -d 7 -p ack -e 40 -c 0 -i 7000 -a 0 -x {10.0 9.0 3495 ------- null} + -t 3.96256 -s 7 -d 0 -p ack -e 40 -c 0 -i 7000 -a 0 -x {10.0 9.0 3495 ------- null} h -t 3.96256 -s 7 -d 8 -p ack -e 40 -c 0 -i 7000 -a 0 -x {10.0 9.0 3495 ------- null} r -t 3.9627 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6985 -a 0 -x {9.0 10.0 3497 ------- null} + -t 3.9627 -s 10 -d 7 -p ack -e 40 -c 0 -i 7004 -a 0 -x {10.0 9.0 3497 ------- null} - -t 3.9627 -s 10 -d 7 -p ack -e 40 -c 0 -i 7004 -a 0 -x {10.0 9.0 3497 ------- null} h -t 3.9627 -s 10 -d 7 -p ack -e 40 -c 0 -i 7004 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.9627 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6999 -a 0 -x {9.0 10.0 3504 ------- null} + -t 3.9627 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 6999 -a 0 -x {9.0 10.0 3504 ------- null} h -t 3.9627 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6999 -a 0 -x {9.0 10.0 3504 ------- null} r -t 3.96322 -s 0 -d 9 -p ack -e 40 -c 0 -i 6994 -a 0 -x {10.0 9.0 3492 ------- null} + -t 3.96322 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7005 -a 0 -x {9.0 10.0 3507 ------- null} - -t 3.96322 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7005 -a 0 -x {9.0 10.0 3507 ------- null} h -t 3.96322 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7005 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.96334 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6991 -a 0 -x {9.0 10.0 3500 ------- null} - -t 3.96334 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6991 -a 0 -x {9.0 10.0 3500 ------- null} h -t 3.96334 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6991 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.96352 -s 0 -d 9 -p ack -e 40 -c 0 -i 6998 -a 0 -x {10.0 9.0 3494 ------- null} - -t 3.96352 -s 0 -d 9 -p ack -e 40 -c 0 -i 6998 -a 0 -x {10.0 9.0 3494 ------- null} h -t 3.96352 -s 0 -d 9 -p ack -e 40 -c 0 -i 6998 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.96365 -s 10 -d 7 -p ack -e 40 -c 0 -i 7002 -a 0 -x {10.0 9.0 3496 ------- null} + -t 3.96365 -s 7 -d 0 -p ack -e 40 -c 0 -i 7002 -a 0 -x {10.0 9.0 3496 ------- null} h -t 3.96365 -s 7 -d 8 -p ack -e 40 -c 0 -i 7002 -a 0 -x {10.0 9.0 3496 ------- null} r -t 3.96379 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6987 -a 0 -x {9.0 10.0 3498 ------- null} + -t 3.96379 -s 10 -d 7 -p ack -e 40 -c 0 -i 7006 -a 0 -x {10.0 9.0 3498 ------- null} - -t 3.96379 -s 10 -d 7 -p ack -e 40 -c 0 -i 7006 -a 0 -x {10.0 9.0 3498 ------- null} h -t 3.96379 -s 10 -d 7 -p ack -e 40 -c 0 -i 7006 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.96382 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7001 -a 0 -x {9.0 10.0 3505 ------- null} + -t 3.96382 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7001 -a 0 -x {9.0 10.0 3505 ------- null} h -t 3.96382 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7001 -a 0 -x {9.0 10.0 3505 ------- null} r -t 3.96442 -s 0 -d 9 -p ack -e 40 -c 0 -i 6996 -a 0 -x {10.0 9.0 3493 ------- null} + -t 3.96442 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7007 -a 0 -x {9.0 10.0 3508 ------- null} - -t 3.96442 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7007 -a 0 -x {9.0 10.0 3508 ------- null} h -t 3.96442 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7007 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.96443 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6993 -a 0 -x {9.0 10.0 3501 ------- null} - -t 3.96443 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6993 -a 0 -x {9.0 10.0 3501 ------- null} h -t 3.96443 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6993 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.9647 -s 0 -d 9 -p ack -e 40 -c 0 -i 7000 -a 0 -x {10.0 9.0 3495 ------- null} - -t 3.9647 -s 0 -d 9 -p ack -e 40 -c 0 -i 7000 -a 0 -x {10.0 9.0 3495 ------- null} h -t 3.9647 -s 0 -d 9 -p ack -e 40 -c 0 -i 7000 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.96474 -s 10 -d 7 -p ack -e 40 -c 0 -i 7004 -a 0 -x {10.0 9.0 3497 ------- null} + -t 3.96474 -s 7 -d 0 -p ack -e 40 -c 0 -i 7004 -a 0 -x {10.0 9.0 3497 ------- null} h -t 3.96474 -s 7 -d 8 -p ack -e 40 -c 0 -i 7004 -a 0 -x {10.0 9.0 3497 ------- null} r -t 3.96488 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6989 -a 0 -x {9.0 10.0 3499 ------- null} + -t 3.96488 -s 10 -d 7 -p ack -e 40 -c 0 -i 7008 -a 0 -x {10.0 9.0 3499 ------- null} - -t 3.96488 -s 10 -d 7 -p ack -e 40 -c 0 -i 7008 -a 0 -x {10.0 9.0 3499 ------- null} h -t 3.96488 -s 10 -d 7 -p ack -e 40 -c 0 -i 7008 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.96494 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7003 -a 0 -x {9.0 10.0 3506 ------- null} + -t 3.96494 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7003 -a 0 -x {9.0 10.0 3506 ------- null} h -t 3.96494 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7003 -a 0 -x {9.0 10.0 3506 ------- null} r -t 3.96555 -s 0 -d 9 -p ack -e 40 -c 0 -i 6998 -a 0 -x {10.0 9.0 3494 ------- null} + -t 3.96555 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7009 -a 0 -x {9.0 10.0 3509 ------- null} - -t 3.96555 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7009 -a 0 -x {9.0 10.0 3509 ------- null} h -t 3.96555 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7009 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.96558 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6995 -a 0 -x {9.0 10.0 3502 ------- null} - -t 3.96558 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6995 -a 0 -x {9.0 10.0 3502 ------- null} h -t 3.96558 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6995 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.96573 -s 0 -d 9 -p ack -e 40 -c 0 -i 7002 -a 0 -x {10.0 9.0 3496 ------- null} - -t 3.96573 -s 0 -d 9 -p ack -e 40 -c 0 -i 7002 -a 0 -x {10.0 9.0 3496 ------- null} h -t 3.96573 -s 0 -d 9 -p ack -e 40 -c 0 -i 7002 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.96582 -s 10 -d 7 -p ack -e 40 -c 0 -i 7006 -a 0 -x {10.0 9.0 3498 ------- null} + -t 3.96582 -s 7 -d 0 -p ack -e 40 -c 0 -i 7006 -a 0 -x {10.0 9.0 3498 ------- null} h -t 3.96582 -s 7 -d 8 -p ack -e 40 -c 0 -i 7006 -a 0 -x {10.0 9.0 3498 ------- null} r -t 3.96602 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7005 -a 0 -x {9.0 10.0 3507 ------- null} + -t 3.96602 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7005 -a 0 -x {9.0 10.0 3507 ------- null} h -t 3.96602 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7005 -a 0 -x {9.0 10.0 3507 ------- null} r -t 3.96614 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6991 -a 0 -x {9.0 10.0 3500 ------- null} + -t 3.96614 -s 10 -d 7 -p ack -e 40 -c 0 -i 7010 -a 0 -x {10.0 9.0 3500 ------- null} - -t 3.96614 -s 10 -d 7 -p ack -e 40 -c 0 -i 7010 -a 0 -x {10.0 9.0 3500 ------- null} h -t 3.96614 -s 10 -d 7 -p ack -e 40 -c 0 -i 7010 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.96667 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6997 -a 0 -x {9.0 10.0 3503 ------- null} - -t 3.96667 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6997 -a 0 -x {9.0 10.0 3503 ------- null} h -t 3.96667 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6997 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.96674 -s 0 -d 9 -p ack -e 40 -c 0 -i 7000 -a 0 -x {10.0 9.0 3495 ------- null} + -t 3.96674 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7011 -a 0 -x {9.0 10.0 3510 ------- null} - -t 3.96674 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7011 -a 0 -x {9.0 10.0 3510 ------- null} h -t 3.96674 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7011 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.96678 -s 0 -d 9 -p ack -e 40 -c 0 -i 7004 -a 0 -x {10.0 9.0 3497 ------- null} - -t 3.96678 -s 0 -d 9 -p ack -e 40 -c 0 -i 7004 -a 0 -x {10.0 9.0 3497 ------- null} h -t 3.96678 -s 0 -d 9 -p ack -e 40 -c 0 -i 7004 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.96691 -s 10 -d 7 -p ack -e 40 -c 0 -i 7008 -a 0 -x {10.0 9.0 3499 ------- null} + -t 3.96691 -s 7 -d 0 -p ack -e 40 -c 0 -i 7008 -a 0 -x {10.0 9.0 3499 ------- null} h -t 3.96691 -s 7 -d 8 -p ack -e 40 -c 0 -i 7008 -a 0 -x {10.0 9.0 3499 ------- null} r -t 3.96722 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7007 -a 0 -x {9.0 10.0 3508 ------- null} + -t 3.96722 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7007 -a 0 -x {9.0 10.0 3508 ------- null} h -t 3.96722 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7007 -a 0 -x {9.0 10.0 3508 ------- null} r -t 3.96723 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6993 -a 0 -x {9.0 10.0 3501 ------- null} + -t 3.96723 -s 10 -d 7 -p ack -e 40 -c 0 -i 7012 -a 0 -x {10.0 9.0 3501 ------- null} - -t 3.96723 -s 10 -d 7 -p ack -e 40 -c 0 -i 7012 -a 0 -x {10.0 9.0 3501 ------- null} h -t 3.96723 -s 10 -d 7 -p ack -e 40 -c 0 -i 7012 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.96776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6999 -a 0 -x {9.0 10.0 3504 ------- null} - -t 3.96776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6999 -a 0 -x {9.0 10.0 3504 ------- null} h -t 3.96776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6999 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.96776 -s 0 -d 9 -p ack -e 40 -c 0 -i 7002 -a 0 -x {10.0 9.0 3496 ------- null} + -t 3.96776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7013 -a 0 -x {9.0 10.0 3511 ------- null} - -t 3.96776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7013 -a 0 -x {9.0 10.0 3511 ------- null} h -t 3.96776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7013 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.96802 -s 0 -d 9 -p ack -e 40 -c 0 -i 7006 -a 0 -x {10.0 9.0 3498 ------- null} - -t 3.96802 -s 0 -d 9 -p ack -e 40 -c 0 -i 7006 -a 0 -x {10.0 9.0 3498 ------- null} h -t 3.96802 -s 0 -d 9 -p ack -e 40 -c 0 -i 7006 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.96818 -s 10 -d 7 -p ack -e 40 -c 0 -i 7010 -a 0 -x {10.0 9.0 3500 ------- null} + -t 3.96818 -s 7 -d 0 -p ack -e 40 -c 0 -i 7010 -a 0 -x {10.0 9.0 3500 ------- null} h -t 3.96818 -s 7 -d 8 -p ack -e 40 -c 0 -i 7010 -a 0 -x {10.0 9.0 3500 ------- null} r -t 3.96835 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7009 -a 0 -x {9.0 10.0 3509 ------- null} + -t 3.96835 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7009 -a 0 -x {9.0 10.0 3509 ------- null} h -t 3.96835 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7009 -a 0 -x {9.0 10.0 3509 ------- null} r -t 3.96838 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6995 -a 0 -x {9.0 10.0 3502 ------- null} + -t 3.96838 -s 10 -d 7 -p ack -e 40 -c 0 -i 7014 -a 0 -x {10.0 9.0 3502 ------- null} - -t 3.96838 -s 10 -d 7 -p ack -e 40 -c 0 -i 7014 -a 0 -x {10.0 9.0 3502 ------- null} h -t 3.96838 -s 10 -d 7 -p ack -e 40 -c 0 -i 7014 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.96882 -s 0 -d 9 -p ack -e 40 -c 0 -i 7004 -a 0 -x {10.0 9.0 3497 ------- null} + -t 3.96882 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7015 -a 0 -x {9.0 10.0 3512 ------- null} - -t 3.96882 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7015 -a 0 -x {9.0 10.0 3512 ------- null} h -t 3.96882 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7015 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.96898 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7001 -a 0 -x {9.0 10.0 3505 ------- null} - -t 3.96898 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7001 -a 0 -x {9.0 10.0 3505 ------- null} h -t 3.96898 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7001 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.96915 -s 0 -d 9 -p ack -e 40 -c 0 -i 7008 -a 0 -x {10.0 9.0 3499 ------- null} - -t 3.96915 -s 0 -d 9 -p ack -e 40 -c 0 -i 7008 -a 0 -x {10.0 9.0 3499 ------- null} h -t 3.96915 -s 0 -d 9 -p ack -e 40 -c 0 -i 7008 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.96926 -s 10 -d 7 -p ack -e 40 -c 0 -i 7012 -a 0 -x {10.0 9.0 3501 ------- null} + -t 3.96926 -s 7 -d 0 -p ack -e 40 -c 0 -i 7012 -a 0 -x {10.0 9.0 3501 ------- null} h -t 3.96926 -s 7 -d 8 -p ack -e 40 -c 0 -i 7012 -a 0 -x {10.0 9.0 3501 ------- null} r -t 3.96947 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6997 -a 0 -x {9.0 10.0 3503 ------- null} + -t 3.96947 -s 10 -d 7 -p ack -e 40 -c 0 -i 7016 -a 0 -x {10.0 9.0 3503 ------- null} - -t 3.96947 -s 10 -d 7 -p ack -e 40 -c 0 -i 7016 -a 0 -x {10.0 9.0 3503 ------- null} h -t 3.96947 -s 10 -d 7 -p ack -e 40 -c 0 -i 7016 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.96954 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7011 -a 0 -x {9.0 10.0 3510 ------- null} + -t 3.96954 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7011 -a 0 -x {9.0 10.0 3510 ------- null} h -t 3.96954 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7011 -a 0 -x {9.0 10.0 3510 ------- null} r -t 3.97005 -s 0 -d 9 -p ack -e 40 -c 0 -i 7006 -a 0 -x {10.0 9.0 3498 ------- null} + -t 3.97005 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7017 -a 0 -x {9.0 10.0 3513 ------- null} - -t 3.97005 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7017 -a 0 -x {9.0 10.0 3513 ------- null} h -t 3.97005 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7017 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.97006 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7003 -a 0 -x {9.0 10.0 3506 ------- null} - -t 3.97006 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7003 -a 0 -x {9.0 10.0 3506 ------- null} h -t 3.97006 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7003 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.9703 -s 0 -d 9 -p ack -e 40 -c 0 -i 7010 -a 0 -x {10.0 9.0 3500 ------- null} - -t 3.9703 -s 0 -d 9 -p ack -e 40 -c 0 -i 7010 -a 0 -x {10.0 9.0 3500 ------- null} h -t 3.9703 -s 0 -d 9 -p ack -e 40 -c 0 -i 7010 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.97042 -s 10 -d 7 -p ack -e 40 -c 0 -i 7014 -a 0 -x {10.0 9.0 3502 ------- null} + -t 3.97042 -s 7 -d 0 -p ack -e 40 -c 0 -i 7014 -a 0 -x {10.0 9.0 3502 ------- null} h -t 3.97042 -s 7 -d 8 -p ack -e 40 -c 0 -i 7014 -a 0 -x {10.0 9.0 3502 ------- null} r -t 3.97056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 6999 -a 0 -x {9.0 10.0 3504 ------- null} + -t 3.97056 -s 10 -d 7 -p ack -e 40 -c 0 -i 7018 -a 0 -x {10.0 9.0 3504 ------- null} - -t 3.97056 -s 10 -d 7 -p ack -e 40 -c 0 -i 7018 -a 0 -x {10.0 9.0 3504 ------- null} h -t 3.97056 -s 10 -d 7 -p ack -e 40 -c 0 -i 7018 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.97056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7013 -a 0 -x {9.0 10.0 3511 ------- null} + -t 3.97056 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7013 -a 0 -x {9.0 10.0 3511 ------- null} h -t 3.97056 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7013 -a 0 -x {9.0 10.0 3511 ------- null} + -t 3.97115 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7005 -a 0 -x {9.0 10.0 3507 ------- null} - -t 3.97115 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7005 -a 0 -x {9.0 10.0 3507 ------- null} h -t 3.97115 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7005 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.97118 -s 0 -d 9 -p ack -e 40 -c 0 -i 7008 -a 0 -x {10.0 9.0 3499 ------- null} + -t 3.97118 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7019 -a 0 -x {9.0 10.0 3514 ------- null} - -t 3.97118 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7019 -a 0 -x {9.0 10.0 3514 ------- null} h -t 3.97118 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7019 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.97128 -s 0 -d 9 -p ack -e 40 -c 0 -i 7012 -a 0 -x {10.0 9.0 3501 ------- null} - -t 3.97128 -s 0 -d 9 -p ack -e 40 -c 0 -i 7012 -a 0 -x {10.0 9.0 3501 ------- null} h -t 3.97128 -s 0 -d 9 -p ack -e 40 -c 0 -i 7012 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.9715 -s 10 -d 7 -p ack -e 40 -c 0 -i 7016 -a 0 -x {10.0 9.0 3503 ------- null} + -t 3.9715 -s 7 -d 0 -p ack -e 40 -c 0 -i 7016 -a 0 -x {10.0 9.0 3503 ------- null} h -t 3.9715 -s 7 -d 8 -p ack -e 40 -c 0 -i 7016 -a 0 -x {10.0 9.0 3503 ------- null} r -t 3.97162 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7015 -a 0 -x {9.0 10.0 3512 ------- null} + -t 3.97162 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7015 -a 0 -x {9.0 10.0 3512 ------- null} h -t 3.97162 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7015 -a 0 -x {9.0 10.0 3512 ------- null} r -t 3.97178 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7001 -a 0 -x {9.0 10.0 3505 ------- null} + -t 3.97178 -s 10 -d 7 -p ack -e 40 -c 0 -i 7020 -a 0 -x {10.0 9.0 3505 ------- null} - -t 3.97178 -s 10 -d 7 -p ack -e 40 -c 0 -i 7020 -a 0 -x {10.0 9.0 3505 ------- null} h -t 3.97178 -s 10 -d 7 -p ack -e 40 -c 0 -i 7020 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.97224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7007 -a 0 -x {9.0 10.0 3508 ------- null} - -t 3.97224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7007 -a 0 -x {9.0 10.0 3508 ------- null} h -t 3.97224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7007 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.97234 -s 0 -d 9 -p ack -e 40 -c 0 -i 7010 -a 0 -x {10.0 9.0 3500 ------- null} + -t 3.97234 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7021 -a 0 -x {9.0 10.0 3515 ------- null} - -t 3.97234 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7021 -a 0 -x {9.0 10.0 3515 ------- null} h -t 3.97234 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7021 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.97254 -s 0 -d 9 -p ack -e 40 -c 0 -i 7014 -a 0 -x {10.0 9.0 3502 ------- null} - -t 3.97254 -s 0 -d 9 -p ack -e 40 -c 0 -i 7014 -a 0 -x {10.0 9.0 3502 ------- null} h -t 3.97254 -s 0 -d 9 -p ack -e 40 -c 0 -i 7014 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.97259 -s 10 -d 7 -p ack -e 40 -c 0 -i 7018 -a 0 -x {10.0 9.0 3504 ------- null} + -t 3.97259 -s 7 -d 0 -p ack -e 40 -c 0 -i 7018 -a 0 -x {10.0 9.0 3504 ------- null} h -t 3.97259 -s 7 -d 8 -p ack -e 40 -c 0 -i 7018 -a 0 -x {10.0 9.0 3504 ------- null} r -t 3.97285 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7017 -a 0 -x {9.0 10.0 3513 ------- null} + -t 3.97285 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7017 -a 0 -x {9.0 10.0 3513 ------- null} h -t 3.97285 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7017 -a 0 -x {9.0 10.0 3513 ------- null} r -t 3.97286 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7003 -a 0 -x {9.0 10.0 3506 ------- null} + -t 3.97286 -s 10 -d 7 -p ack -e 40 -c 0 -i 7022 -a 0 -x {10.0 9.0 3506 ------- null} - -t 3.97286 -s 10 -d 7 -p ack -e 40 -c 0 -i 7022 -a 0 -x {10.0 9.0 3506 ------- null} h -t 3.97286 -s 10 -d 7 -p ack -e 40 -c 0 -i 7022 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.97331 -s 0 -d 9 -p ack -e 40 -c 0 -i 7012 -a 0 -x {10.0 9.0 3501 ------- null} + -t 3.97331 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7023 -a 0 -x {9.0 10.0 3516 ------- null} - -t 3.97331 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7023 -a 0 -x {9.0 10.0 3516 ------- null} h -t 3.97331 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7023 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.97349 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7009 -a 0 -x {9.0 10.0 3509 ------- null} - -t 3.97349 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7009 -a 0 -x {9.0 10.0 3509 ------- null} h -t 3.97349 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7009 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.97363 -s 0 -d 9 -p ack -e 40 -c 0 -i 7016 -a 0 -x {10.0 9.0 3503 ------- null} - -t 3.97363 -s 0 -d 9 -p ack -e 40 -c 0 -i 7016 -a 0 -x {10.0 9.0 3503 ------- null} h -t 3.97363 -s 0 -d 9 -p ack -e 40 -c 0 -i 7016 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.97381 -s 10 -d 7 -p ack -e 40 -c 0 -i 7020 -a 0 -x {10.0 9.0 3505 ------- null} + -t 3.97381 -s 7 -d 0 -p ack -e 40 -c 0 -i 7020 -a 0 -x {10.0 9.0 3505 ------- null} h -t 3.97381 -s 7 -d 8 -p ack -e 40 -c 0 -i 7020 -a 0 -x {10.0 9.0 3505 ------- null} r -t 3.97395 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7005 -a 0 -x {9.0 10.0 3507 ------- null} + -t 3.97395 -s 10 -d 7 -p ack -e 40 -c 0 -i 7024 -a 0 -x {10.0 9.0 3507 ------- null} - -t 3.97395 -s 10 -d 7 -p ack -e 40 -c 0 -i 7024 -a 0 -x {10.0 9.0 3507 ------- null} h -t 3.97395 -s 10 -d 7 -p ack -e 40 -c 0 -i 7024 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.97398 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7019 -a 0 -x {9.0 10.0 3514 ------- null} + -t 3.97398 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7019 -a 0 -x {9.0 10.0 3514 ------- null} h -t 3.97398 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7019 -a 0 -x {9.0 10.0 3514 ------- null} r -t 3.97458 -s 0 -d 9 -p ack -e 40 -c 0 -i 7014 -a 0 -x {10.0 9.0 3502 ------- null} + -t 3.97458 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7025 -a 0 -x {9.0 10.0 3517 ------- null} - -t 3.97458 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7025 -a 0 -x {9.0 10.0 3517 ------- null} h -t 3.97458 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7025 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.97458 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7011 -a 0 -x {9.0 10.0 3510 ------- null} - -t 3.97458 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7011 -a 0 -x {9.0 10.0 3510 ------- null} h -t 3.97458 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7011 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.97474 -s 0 -d 9 -p ack -e 40 -c 0 -i 7018 -a 0 -x {10.0 9.0 3504 ------- null} - -t 3.97474 -s 0 -d 9 -p ack -e 40 -c 0 -i 7018 -a 0 -x {10.0 9.0 3504 ------- null} h -t 3.97474 -s 0 -d 9 -p ack -e 40 -c 0 -i 7018 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.9749 -s 10 -d 7 -p ack -e 40 -c 0 -i 7022 -a 0 -x {10.0 9.0 3506 ------- null} + -t 3.9749 -s 7 -d 0 -p ack -e 40 -c 0 -i 7022 -a 0 -x {10.0 9.0 3506 ------- null} h -t 3.9749 -s 7 -d 8 -p ack -e 40 -c 0 -i 7022 -a 0 -x {10.0 9.0 3506 ------- null} r -t 3.97504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7007 -a 0 -x {9.0 10.0 3508 ------- null} + -t 3.97504 -s 10 -d 7 -p ack -e 40 -c 0 -i 7026 -a 0 -x {10.0 9.0 3508 ------- null} - -t 3.97504 -s 10 -d 7 -p ack -e 40 -c 0 -i 7026 -a 0 -x {10.0 9.0 3508 ------- null} h -t 3.97504 -s 10 -d 7 -p ack -e 40 -c 0 -i 7026 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.97514 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7021 -a 0 -x {9.0 10.0 3515 ------- null} + -t 3.97514 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7021 -a 0 -x {9.0 10.0 3515 ------- null} h -t 3.97514 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7021 -a 0 -x {9.0 10.0 3515 ------- null} + -t 3.97566 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7013 -a 0 -x {9.0 10.0 3511 ------- null} - -t 3.97566 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7013 -a 0 -x {9.0 10.0 3511 ------- null} h -t 3.97566 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7013 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.97566 -s 0 -d 9 -p ack -e 40 -c 0 -i 7016 -a 0 -x {10.0 9.0 3503 ------- null} + -t 3.97566 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7027 -a 0 -x {9.0 10.0 3518 ------- null} - -t 3.97566 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7027 -a 0 -x {9.0 10.0 3518 ------- null} h -t 3.97566 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7027 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.97573 -s 0 -d 9 -p ack -e 40 -c 0 -i 7020 -a 0 -x {10.0 9.0 3505 ------- null} - -t 3.97573 -s 0 -d 9 -p ack -e 40 -c 0 -i 7020 -a 0 -x {10.0 9.0 3505 ------- null} h -t 3.97573 -s 0 -d 9 -p ack -e 40 -c 0 -i 7020 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.97598 -s 10 -d 7 -p ack -e 40 -c 0 -i 7024 -a 0 -x {10.0 9.0 3507 ------- null} + -t 3.97598 -s 7 -d 0 -p ack -e 40 -c 0 -i 7024 -a 0 -x {10.0 9.0 3507 ------- null} h -t 3.97598 -s 7 -d 8 -p ack -e 40 -c 0 -i 7024 -a 0 -x {10.0 9.0 3507 ------- null} r -t 3.97611 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7023 -a 0 -x {9.0 10.0 3516 ------- null} + -t 3.97611 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7023 -a 0 -x {9.0 10.0 3516 ------- null} h -t 3.97611 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7023 -a 0 -x {9.0 10.0 3516 ------- null} r -t 3.97629 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7009 -a 0 -x {9.0 10.0 3509 ------- null} + -t 3.97629 -s 10 -d 7 -p ack -e 40 -c 0 -i 7028 -a 0 -x {10.0 9.0 3509 ------- null} - -t 3.97629 -s 10 -d 7 -p ack -e 40 -c 0 -i 7028 -a 0 -x {10.0 9.0 3509 ------- null} h -t 3.97629 -s 10 -d 7 -p ack -e 40 -c 0 -i 7028 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.97675 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7015 -a 0 -x {9.0 10.0 3512 ------- null} - -t 3.97675 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7015 -a 0 -x {9.0 10.0 3512 ------- null} h -t 3.97675 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7015 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.97677 -s 0 -d 9 -p ack -e 40 -c 0 -i 7018 -a 0 -x {10.0 9.0 3504 ------- null} + -t 3.97677 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7029 -a 0 -x {9.0 10.0 3519 ------- null} - -t 3.97677 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7029 -a 0 -x {9.0 10.0 3519 ------- null} h -t 3.97677 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7029 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.97691 -s 0 -d 9 -p ack -e 40 -c 0 -i 7022 -a 0 -x {10.0 9.0 3506 ------- null} - -t 3.97691 -s 0 -d 9 -p ack -e 40 -c 0 -i 7022 -a 0 -x {10.0 9.0 3506 ------- null} h -t 3.97691 -s 0 -d 9 -p ack -e 40 -c 0 -i 7022 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.97707 -s 10 -d 7 -p ack -e 40 -c 0 -i 7026 -a 0 -x {10.0 9.0 3508 ------- null} + -t 3.97707 -s 7 -d 0 -p ack -e 40 -c 0 -i 7026 -a 0 -x {10.0 9.0 3508 ------- null} h -t 3.97707 -s 7 -d 8 -p ack -e 40 -c 0 -i 7026 -a 0 -x {10.0 9.0 3508 ------- null} r -t 3.97738 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7025 -a 0 -x {9.0 10.0 3517 ------- null} + -t 3.97738 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7025 -a 0 -x {9.0 10.0 3517 ------- null} h -t 3.97738 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7025 -a 0 -x {9.0 10.0 3517 ------- null} r -t 3.97738 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7011 -a 0 -x {9.0 10.0 3510 ------- null} + -t 3.97738 -s 10 -d 7 -p ack -e 40 -c 0 -i 7030 -a 0 -x {10.0 9.0 3510 ------- null} - -t 3.97738 -s 10 -d 7 -p ack -e 40 -c 0 -i 7030 -a 0 -x {10.0 9.0 3510 ------- null} h -t 3.97738 -s 10 -d 7 -p ack -e 40 -c 0 -i 7030 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.97776 -s 0 -d 9 -p ack -e 40 -c 0 -i 7020 -a 0 -x {10.0 9.0 3505 ------- null} + -t 3.97776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7031 -a 0 -x {9.0 10.0 3520 ------- null} - -t 3.97776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7031 -a 0 -x {9.0 10.0 3520 ------- null} h -t 3.97776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7031 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.97784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7017 -a 0 -x {9.0 10.0 3513 ------- null} - -t 3.97784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7017 -a 0 -x {9.0 10.0 3513 ------- null} h -t 3.97784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7017 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.97813 -s 0 -d 9 -p ack -e 40 -c 0 -i 7024 -a 0 -x {10.0 9.0 3507 ------- null} - -t 3.97813 -s 0 -d 9 -p ack -e 40 -c 0 -i 7024 -a 0 -x {10.0 9.0 3507 ------- null} h -t 3.97813 -s 0 -d 9 -p ack -e 40 -c 0 -i 7024 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.97832 -s 10 -d 7 -p ack -e 40 -c 0 -i 7028 -a 0 -x {10.0 9.0 3509 ------- null} + -t 3.97832 -s 7 -d 0 -p ack -e 40 -c 0 -i 7028 -a 0 -x {10.0 9.0 3509 ------- null} h -t 3.97832 -s 7 -d 8 -p ack -e 40 -c 0 -i 7028 -a 0 -x {10.0 9.0 3509 ------- null} r -t 3.97846 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7013 -a 0 -x {9.0 10.0 3511 ------- null} + -t 3.97846 -s 10 -d 7 -p ack -e 40 -c 0 -i 7032 -a 0 -x {10.0 9.0 3511 ------- null} - -t 3.97846 -s 10 -d 7 -p ack -e 40 -c 0 -i 7032 -a 0 -x {10.0 9.0 3511 ------- null} h -t 3.97846 -s 10 -d 7 -p ack -e 40 -c 0 -i 7032 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.97846 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7027 -a 0 -x {9.0 10.0 3518 ------- null} + -t 3.97846 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7027 -a 0 -x {9.0 10.0 3518 ------- null} h -t 3.97846 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7027 -a 0 -x {9.0 10.0 3518 ------- null} r -t 3.97894 -s 0 -d 9 -p ack -e 40 -c 0 -i 7022 -a 0 -x {10.0 9.0 3506 ------- null} + -t 3.97894 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7033 -a 0 -x {9.0 10.0 3521 ------- null} - -t 3.97894 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7033 -a 0 -x {9.0 10.0 3521 ------- null} h -t 3.97894 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7033 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.97915 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7019 -a 0 -x {9.0 10.0 3514 ------- null} - -t 3.97915 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7019 -a 0 -x {9.0 10.0 3514 ------- null} h -t 3.97915 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7019 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.97939 -s 0 -d 9 -p ack -e 40 -c 0 -i 7026 -a 0 -x {10.0 9.0 3508 ------- null} - -t 3.97939 -s 0 -d 9 -p ack -e 40 -c 0 -i 7026 -a 0 -x {10.0 9.0 3508 ------- null} h -t 3.97939 -s 0 -d 9 -p ack -e 40 -c 0 -i 7026 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.97941 -s 10 -d 7 -p ack -e 40 -c 0 -i 7030 -a 0 -x {10.0 9.0 3510 ------- null} + -t 3.97941 -s 7 -d 0 -p ack -e 40 -c 0 -i 7030 -a 0 -x {10.0 9.0 3510 ------- null} h -t 3.97941 -s 7 -d 8 -p ack -e 40 -c 0 -i 7030 -a 0 -x {10.0 9.0 3510 ------- null} r -t 3.97955 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7015 -a 0 -x {9.0 10.0 3512 ------- null} + -t 3.97955 -s 10 -d 7 -p ack -e 40 -c 0 -i 7034 -a 0 -x {10.0 9.0 3512 ------- null} - -t 3.97955 -s 10 -d 7 -p ack -e 40 -c 0 -i 7034 -a 0 -x {10.0 9.0 3512 ------- null} h -t 3.97955 -s 10 -d 7 -p ack -e 40 -c 0 -i 7034 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.97957 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7029 -a 0 -x {9.0 10.0 3519 ------- null} + -t 3.97957 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7029 -a 0 -x {9.0 10.0 3519 ------- null} h -t 3.97957 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7029 -a 0 -x {9.0 10.0 3519 ------- null} r -t 3.98016 -s 0 -d 9 -p ack -e 40 -c 0 -i 7024 -a 0 -x {10.0 9.0 3507 ------- null} + -t 3.98016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7035 -a 0 -x {9.0 10.0 3522 ------- null} - -t 3.98016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7035 -a 0 -x {9.0 10.0 3522 ------- null} h -t 3.98016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7035 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.98024 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7021 -a 0 -x {9.0 10.0 3515 ------- null} - -t 3.98024 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7021 -a 0 -x {9.0 10.0 3515 ------- null} h -t 3.98024 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7021 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.98035 -s 0 -d 9 -p ack -e 40 -c 0 -i 7028 -a 0 -x {10.0 9.0 3509 ------- null} - -t 3.98035 -s 0 -d 9 -p ack -e 40 -c 0 -i 7028 -a 0 -x {10.0 9.0 3509 ------- null} h -t 3.98035 -s 0 -d 9 -p ack -e 40 -c 0 -i 7028 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.9805 -s 10 -d 7 -p ack -e 40 -c 0 -i 7032 -a 0 -x {10.0 9.0 3511 ------- null} + -t 3.9805 -s 7 -d 0 -p ack -e 40 -c 0 -i 7032 -a 0 -x {10.0 9.0 3511 ------- null} h -t 3.9805 -s 7 -d 8 -p ack -e 40 -c 0 -i 7032 -a 0 -x {10.0 9.0 3511 ------- null} r -t 3.98056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7031 -a 0 -x {9.0 10.0 3520 ------- null} + -t 3.98056 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7031 -a 0 -x {9.0 10.0 3520 ------- null} h -t 3.98056 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7031 -a 0 -x {9.0 10.0 3520 ------- null} r -t 3.98064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7017 -a 0 -x {9.0 10.0 3513 ------- null} + -t 3.98064 -s 10 -d 7 -p ack -e 40 -c 0 -i 7036 -a 0 -x {10.0 9.0 3513 ------- null} - -t 3.98064 -s 10 -d 7 -p ack -e 40 -c 0 -i 7036 -a 0 -x {10.0 9.0 3513 ------- null} h -t 3.98064 -s 10 -d 7 -p ack -e 40 -c 0 -i 7036 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.98133 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7023 -a 0 -x {9.0 10.0 3516 ------- null} - -t 3.98133 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7023 -a 0 -x {9.0 10.0 3516 ------- null} h -t 3.98133 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7023 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.98142 -s 0 -d 9 -p ack -e 40 -c 0 -i 7026 -a 0 -x {10.0 9.0 3508 ------- null} + -t 3.98142 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7037 -a 0 -x {9.0 10.0 3523 ------- null} - -t 3.98142 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7037 -a 0 -x {9.0 10.0 3523 ------- null} h -t 3.98142 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7037 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.9815 -s 0 -d 9 -p ack -e 40 -c 0 -i 7030 -a 0 -x {10.0 9.0 3510 ------- null} - -t 3.9815 -s 0 -d 9 -p ack -e 40 -c 0 -i 7030 -a 0 -x {10.0 9.0 3510 ------- null} h -t 3.9815 -s 0 -d 9 -p ack -e 40 -c 0 -i 7030 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.98158 -s 10 -d 7 -p ack -e 40 -c 0 -i 7034 -a 0 -x {10.0 9.0 3512 ------- null} + -t 3.98158 -s 7 -d 0 -p ack -e 40 -c 0 -i 7034 -a 0 -x {10.0 9.0 3512 ------- null} h -t 3.98158 -s 7 -d 8 -p ack -e 40 -c 0 -i 7034 -a 0 -x {10.0 9.0 3512 ------- null} r -t 3.98174 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7033 -a 0 -x {9.0 10.0 3521 ------- null} + -t 3.98174 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7033 -a 0 -x {9.0 10.0 3521 ------- null} h -t 3.98174 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7033 -a 0 -x {9.0 10.0 3521 ------- null} r -t 3.98195 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7019 -a 0 -x {9.0 10.0 3514 ------- null} + -t 3.98195 -s 10 -d 7 -p ack -e 40 -c 0 -i 7038 -a 0 -x {10.0 9.0 3514 ------- null} - -t 3.98195 -s 10 -d 7 -p ack -e 40 -c 0 -i 7038 -a 0 -x {10.0 9.0 3514 ------- null} h -t 3.98195 -s 10 -d 7 -p ack -e 40 -c 0 -i 7038 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.98238 -s 0 -d 9 -p ack -e 40 -c 0 -i 7028 -a 0 -x {10.0 9.0 3509 ------- null} + -t 3.98238 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7039 -a 0 -x {9.0 10.0 3524 ------- null} - -t 3.98238 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7039 -a 0 -x {9.0 10.0 3524 ------- null} h -t 3.98238 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7039 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.98242 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7025 -a 0 -x {9.0 10.0 3517 ------- null} - -t 3.98242 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7025 -a 0 -x {9.0 10.0 3517 ------- null} h -t 3.98242 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7025 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.98267 -s 10 -d 7 -p ack -e 40 -c 0 -i 7036 -a 0 -x {10.0 9.0 3513 ------- null} + -t 3.98267 -s 7 -d 0 -p ack -e 40 -c 0 -i 7036 -a 0 -x {10.0 9.0 3513 ------- null} h -t 3.98267 -s 7 -d 8 -p ack -e 40 -c 0 -i 7036 -a 0 -x {10.0 9.0 3513 ------- null} + -t 3.9827 -s 0 -d 9 -p ack -e 40 -c 0 -i 7032 -a 0 -x {10.0 9.0 3511 ------- null} - -t 3.9827 -s 0 -d 9 -p ack -e 40 -c 0 -i 7032 -a 0 -x {10.0 9.0 3511 ------- null} h -t 3.9827 -s 0 -d 9 -p ack -e 40 -c 0 -i 7032 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.98296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7035 -a 0 -x {9.0 10.0 3522 ------- null} + -t 3.98296 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7035 -a 0 -x {9.0 10.0 3522 ------- null} h -t 3.98296 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7035 -a 0 -x {9.0 10.0 3522 ------- null} r -t 3.98304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7021 -a 0 -x {9.0 10.0 3515 ------- null} + -t 3.98304 -s 10 -d 7 -p ack -e 40 -c 0 -i 7040 -a 0 -x {10.0 9.0 3515 ------- null} - -t 3.98304 -s 10 -d 7 -p ack -e 40 -c 0 -i 7040 -a 0 -x {10.0 9.0 3515 ------- null} h -t 3.98304 -s 10 -d 7 -p ack -e 40 -c 0 -i 7040 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.98354 -s 0 -d 9 -p ack -e 40 -c 0 -i 7030 -a 0 -x {10.0 9.0 3510 ------- null} + -t 3.98354 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7041 -a 0 -x {9.0 10.0 3525 ------- null} - -t 3.98354 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7041 -a 0 -x {9.0 10.0 3525 ------- null} h -t 3.98354 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7041 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.98376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7027 -a 0 -x {9.0 10.0 3518 ------- null} - -t 3.98376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7027 -a 0 -x {9.0 10.0 3518 ------- null} h -t 3.98376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7027 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.9839 -s 0 -d 9 -p ack -e 40 -c 0 -i 7034 -a 0 -x {10.0 9.0 3512 ------- null} - -t 3.9839 -s 0 -d 9 -p ack -e 40 -c 0 -i 7034 -a 0 -x {10.0 9.0 3512 ------- null} h -t 3.9839 -s 0 -d 9 -p ack -e 40 -c 0 -i 7034 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.98398 -s 10 -d 7 -p ack -e 40 -c 0 -i 7038 -a 0 -x {10.0 9.0 3514 ------- null} + -t 3.98398 -s 7 -d 0 -p ack -e 40 -c 0 -i 7038 -a 0 -x {10.0 9.0 3514 ------- null} h -t 3.98398 -s 7 -d 8 -p ack -e 40 -c 0 -i 7038 -a 0 -x {10.0 9.0 3514 ------- null} r -t 3.98413 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7023 -a 0 -x {9.0 10.0 3516 ------- null} + -t 3.98413 -s 10 -d 7 -p ack -e 40 -c 0 -i 7042 -a 0 -x {10.0 9.0 3516 ------- null} - -t 3.98413 -s 10 -d 7 -p ack -e 40 -c 0 -i 7042 -a 0 -x {10.0 9.0 3516 ------- null} h -t 3.98413 -s 10 -d 7 -p ack -e 40 -c 0 -i 7042 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.98422 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7037 -a 0 -x {9.0 10.0 3523 ------- null} + -t 3.98422 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7037 -a 0 -x {9.0 10.0 3523 ------- null} h -t 3.98422 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7037 -a 0 -x {9.0 10.0 3523 ------- null} r -t 3.98474 -s 0 -d 9 -p ack -e 40 -c 0 -i 7032 -a 0 -x {10.0 9.0 3511 ------- null} + -t 3.98474 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7043 -a 0 -x {9.0 10.0 3526 ------- null} - -t 3.98474 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7043 -a 0 -x {9.0 10.0 3526 ------- null} h -t 3.98474 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7043 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.98485 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7029 -a 0 -x {9.0 10.0 3519 ------- null} - -t 3.98485 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7029 -a 0 -x {9.0 10.0 3519 ------- null} h -t 3.98485 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7029 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.98507 -s 10 -d 7 -p ack -e 40 -c 0 -i 7040 -a 0 -x {10.0 9.0 3515 ------- null} + -t 3.98507 -s 7 -d 0 -p ack -e 40 -c 0 -i 7040 -a 0 -x {10.0 9.0 3515 ------- null} h -t 3.98507 -s 7 -d 8 -p ack -e 40 -c 0 -i 7040 -a 0 -x {10.0 9.0 3515 ------- null} + -t 3.9851 -s 0 -d 9 -p ack -e 40 -c 0 -i 7036 -a 0 -x {10.0 9.0 3513 ------- null} - -t 3.9851 -s 0 -d 9 -p ack -e 40 -c 0 -i 7036 -a 0 -x {10.0 9.0 3513 ------- null} h -t 3.9851 -s 0 -d 9 -p ack -e 40 -c 0 -i 7036 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.98518 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7039 -a 0 -x {9.0 10.0 3524 ------- null} + -t 3.98518 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7039 -a 0 -x {9.0 10.0 3524 ------- null} h -t 3.98518 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7039 -a 0 -x {9.0 10.0 3524 ------- null} r -t 3.98522 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7025 -a 0 -x {9.0 10.0 3517 ------- null} + -t 3.98522 -s 10 -d 7 -p ack -e 40 -c 0 -i 7044 -a 0 -x {10.0 9.0 3517 ------- null} - -t 3.98522 -s 10 -d 7 -p ack -e 40 -c 0 -i 7044 -a 0 -x {10.0 9.0 3517 ------- null} h -t 3.98522 -s 10 -d 7 -p ack -e 40 -c 0 -i 7044 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.98594 -s 0 -d 9 -p ack -e 40 -c 0 -i 7034 -a 0 -x {10.0 9.0 3512 ------- null} + -t 3.98594 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7045 -a 0 -x {9.0 10.0 3527 ------- null} - -t 3.98594 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7045 -a 0 -x {9.0 10.0 3527 ------- null} h -t 3.98594 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7045 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.98613 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7031 -a 0 -x {9.0 10.0 3520 ------- null} - -t 3.98613 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7031 -a 0 -x {9.0 10.0 3520 ------- null} h -t 3.98613 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7031 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.98616 -s 10 -d 7 -p ack -e 40 -c 0 -i 7042 -a 0 -x {10.0 9.0 3516 ------- null} + -t 3.98616 -s 7 -d 0 -p ack -e 40 -c 0 -i 7042 -a 0 -x {10.0 9.0 3516 ------- null} h -t 3.98616 -s 7 -d 8 -p ack -e 40 -c 0 -i 7042 -a 0 -x {10.0 9.0 3516 ------- null} + -t 3.98624 -s 0 -d 9 -p ack -e 40 -c 0 -i 7038 -a 0 -x {10.0 9.0 3514 ------- null} - -t 3.98624 -s 0 -d 9 -p ack -e 40 -c 0 -i 7038 -a 0 -x {10.0 9.0 3514 ------- null} h -t 3.98624 -s 0 -d 9 -p ack -e 40 -c 0 -i 7038 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.98634 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7041 -a 0 -x {9.0 10.0 3525 ------- null} + -t 3.98634 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7041 -a 0 -x {9.0 10.0 3525 ------- null} h -t 3.98634 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7041 -a 0 -x {9.0 10.0 3525 ------- null} r -t 3.98656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7027 -a 0 -x {9.0 10.0 3518 ------- null} + -t 3.98656 -s 10 -d 7 -p ack -e 40 -c 0 -i 7046 -a 0 -x {10.0 9.0 3518 ------- null} - -t 3.98656 -s 10 -d 7 -p ack -e 40 -c 0 -i 7046 -a 0 -x {10.0 9.0 3518 ------- null} h -t 3.98656 -s 10 -d 7 -p ack -e 40 -c 0 -i 7046 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.98714 -s 0 -d 9 -p ack -e 40 -c 0 -i 7036 -a 0 -x {10.0 9.0 3513 ------- null} + -t 3.98714 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7047 -a 0 -x {9.0 10.0 3528 ------- null} - -t 3.98714 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7047 -a 0 -x {9.0 10.0 3528 ------- null} h -t 3.98714 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7047 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.98722 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7033 -a 0 -x {9.0 10.0 3521 ------- null} - -t 3.98722 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7033 -a 0 -x {9.0 10.0 3521 ------- null} h -t 3.98722 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7033 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.98725 -s 10 -d 7 -p ack -e 40 -c 0 -i 7044 -a 0 -x {10.0 9.0 3517 ------- null} + -t 3.98725 -s 7 -d 0 -p ack -e 40 -c 0 -i 7044 -a 0 -x {10.0 9.0 3517 ------- null} h -t 3.98725 -s 7 -d 8 -p ack -e 40 -c 0 -i 7044 -a 0 -x {10.0 9.0 3517 ------- null} + -t 3.98746 -s 0 -d 9 -p ack -e 40 -c 0 -i 7040 -a 0 -x {10.0 9.0 3515 ------- null} - -t 3.98746 -s 0 -d 9 -p ack -e 40 -c 0 -i 7040 -a 0 -x {10.0 9.0 3515 ------- null} h -t 3.98746 -s 0 -d 9 -p ack -e 40 -c 0 -i 7040 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.98754 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7043 -a 0 -x {9.0 10.0 3526 ------- null} + -t 3.98754 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7043 -a 0 -x {9.0 10.0 3526 ------- null} h -t 3.98754 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7043 -a 0 -x {9.0 10.0 3526 ------- null} r -t 3.98765 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7029 -a 0 -x {9.0 10.0 3519 ------- null} + -t 3.98765 -s 10 -d 7 -p ack -e 40 -c 0 -i 7048 -a 0 -x {10.0 9.0 3519 ------- null} - -t 3.98765 -s 10 -d 7 -p ack -e 40 -c 0 -i 7048 -a 0 -x {10.0 9.0 3519 ------- null} h -t 3.98765 -s 10 -d 7 -p ack -e 40 -c 0 -i 7048 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.98827 -s 0 -d 9 -p ack -e 40 -c 0 -i 7038 -a 0 -x {10.0 9.0 3514 ------- null} + -t 3.98827 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7049 -a 0 -x {9.0 10.0 3529 ------- null} - -t 3.98827 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7049 -a 0 -x {9.0 10.0 3529 ------- null} h -t 3.98827 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7049 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.9883 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7035 -a 0 -x {9.0 10.0 3522 ------- null} - -t 3.9883 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7035 -a 0 -x {9.0 10.0 3522 ------- null} h -t 3.9883 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7035 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.9884 -s 0 -d 9 -p ack -e 40 -c 0 -i 7042 -a 0 -x {10.0 9.0 3516 ------- null} - -t 3.9884 -s 0 -d 9 -p ack -e 40 -c 0 -i 7042 -a 0 -x {10.0 9.0 3516 ------- null} h -t 3.9884 -s 0 -d 9 -p ack -e 40 -c 0 -i 7042 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.98859 -s 10 -d 7 -p ack -e 40 -c 0 -i 7046 -a 0 -x {10.0 9.0 3518 ------- null} + -t 3.98859 -s 7 -d 0 -p ack -e 40 -c 0 -i 7046 -a 0 -x {10.0 9.0 3518 ------- null} h -t 3.98859 -s 7 -d 8 -p ack -e 40 -c 0 -i 7046 -a 0 -x {10.0 9.0 3518 ------- null} r -t 3.98874 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7045 -a 0 -x {9.0 10.0 3527 ------- null} + -t 3.98874 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7045 -a 0 -x {9.0 10.0 3527 ------- null} h -t 3.98874 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7045 -a 0 -x {9.0 10.0 3527 ------- null} r -t 3.98893 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7031 -a 0 -x {9.0 10.0 3520 ------- null} + -t 3.98893 -s 10 -d 7 -p ack -e 40 -c 0 -i 7050 -a 0 -x {10.0 9.0 3520 ------- null} - -t 3.98893 -s 10 -d 7 -p ack -e 40 -c 0 -i 7050 -a 0 -x {10.0 9.0 3520 ------- null} h -t 3.98893 -s 10 -d 7 -p ack -e 40 -c 0 -i 7050 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.98939 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7037 -a 0 -x {9.0 10.0 3523 ------- null} - -t 3.98939 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7037 -a 0 -x {9.0 10.0 3523 ------- null} h -t 3.98939 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7037 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.98949 -s 0 -d 9 -p ack -e 40 -c 0 -i 7040 -a 0 -x {10.0 9.0 3515 ------- null} + -t 3.98949 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7051 -a 0 -x {9.0 10.0 3530 ------- null} - -t 3.98949 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7051 -a 0 -x {9.0 10.0 3530 ------- null} h -t 3.98949 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7051 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.98968 -s 0 -d 9 -p ack -e 40 -c 0 -i 7044 -a 0 -x {10.0 9.0 3517 ------- null} - -t 3.98968 -s 0 -d 9 -p ack -e 40 -c 0 -i 7044 -a 0 -x {10.0 9.0 3517 ------- null} h -t 3.98968 -s 0 -d 9 -p ack -e 40 -c 0 -i 7044 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.98968 -s 10 -d 7 -p ack -e 40 -c 0 -i 7048 -a 0 -x {10.0 9.0 3519 ------- null} + -t 3.98968 -s 7 -d 0 -p ack -e 40 -c 0 -i 7048 -a 0 -x {10.0 9.0 3519 ------- null} h -t 3.98968 -s 7 -d 8 -p ack -e 40 -c 0 -i 7048 -a 0 -x {10.0 9.0 3519 ------- null} r -t 3.98994 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7047 -a 0 -x {9.0 10.0 3528 ------- null} + -t 3.98994 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7047 -a 0 -x {9.0 10.0 3528 ------- null} h -t 3.98994 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7047 -a 0 -x {9.0 10.0 3528 ------- null} r -t 3.99002 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7033 -a 0 -x {9.0 10.0 3521 ------- null} + -t 3.99002 -s 10 -d 7 -p ack -e 40 -c 0 -i 7052 -a 0 -x {10.0 9.0 3521 ------- null} - -t 3.99002 -s 10 -d 7 -p ack -e 40 -c 0 -i 7052 -a 0 -x {10.0 9.0 3521 ------- null} h -t 3.99002 -s 10 -d 7 -p ack -e 40 -c 0 -i 7052 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.99043 -s 0 -d 9 -p ack -e 40 -c 0 -i 7042 -a 0 -x {10.0 9.0 3516 ------- null} + -t 3.99043 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7053 -a 0 -x {9.0 10.0 3531 ------- null} - -t 3.99043 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7053 -a 0 -x {9.0 10.0 3531 ------- null} h -t 3.99043 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7053 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.99064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7039 -a 0 -x {9.0 10.0 3524 ------- null} - -t 3.99064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7039 -a 0 -x {9.0 10.0 3524 ------- null} h -t 3.99064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7039 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.99093 -s 0 -d 9 -p ack -e 40 -c 0 -i 7046 -a 0 -x {10.0 9.0 3518 ------- null} - -t 3.99093 -s 0 -d 9 -p ack -e 40 -c 0 -i 7046 -a 0 -x {10.0 9.0 3518 ------- null} h -t 3.99093 -s 0 -d 9 -p ack -e 40 -c 0 -i 7046 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.99096 -s 10 -d 7 -p ack -e 40 -c 0 -i 7050 -a 0 -x {10.0 9.0 3520 ------- null} + -t 3.99096 -s 7 -d 0 -p ack -e 40 -c 0 -i 7050 -a 0 -x {10.0 9.0 3520 ------- null} h -t 3.99096 -s 7 -d 8 -p ack -e 40 -c 0 -i 7050 -a 0 -x {10.0 9.0 3520 ------- null} r -t 3.99107 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7049 -a 0 -x {9.0 10.0 3529 ------- null} + -t 3.99107 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7049 -a 0 -x {9.0 10.0 3529 ------- null} h -t 3.99107 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7049 -a 0 -x {9.0 10.0 3529 ------- null} r -t 3.9911 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7035 -a 0 -x {9.0 10.0 3522 ------- null} + -t 3.9911 -s 10 -d 7 -p ack -e 40 -c 0 -i 7054 -a 0 -x {10.0 9.0 3522 ------- null} - -t 3.9911 -s 10 -d 7 -p ack -e 40 -c 0 -i 7054 -a 0 -x {10.0 9.0 3522 ------- null} h -t 3.9911 -s 10 -d 7 -p ack -e 40 -c 0 -i 7054 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.99171 -s 0 -d 9 -p ack -e 40 -c 0 -i 7044 -a 0 -x {10.0 9.0 3517 ------- null} + -t 3.99171 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7055 -a 0 -x {9.0 10.0 3532 ------- null} - -t 3.99171 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7055 -a 0 -x {9.0 10.0 3532 ------- null} h -t 3.99171 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7055 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7041 -a 0 -x {9.0 10.0 3525 ------- null} - -t 3.992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7041 -a 0 -x {9.0 10.0 3525 ------- null} h -t 3.992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7041 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.99205 -s 10 -d 7 -p ack -e 40 -c 0 -i 7052 -a 0 -x {10.0 9.0 3521 ------- null} + -t 3.99205 -s 7 -d 0 -p ack -e 40 -c 0 -i 7052 -a 0 -x {10.0 9.0 3521 ------- null} h -t 3.99205 -s 7 -d 8 -p ack -e 40 -c 0 -i 7052 -a 0 -x {10.0 9.0 3521 ------- null} r -t 3.99219 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7037 -a 0 -x {9.0 10.0 3523 ------- null} + -t 3.99219 -s 10 -d 7 -p ack -e 40 -c 0 -i 7056 -a 0 -x {10.0 9.0 3523 ------- null} - -t 3.99219 -s 10 -d 7 -p ack -e 40 -c 0 -i 7056 -a 0 -x {10.0 9.0 3523 ------- null} h -t 3.99219 -s 10 -d 7 -p ack -e 40 -c 0 -i 7056 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.99226 -s 0 -d 9 -p ack -e 40 -c 0 -i 7048 -a 0 -x {10.0 9.0 3519 ------- null} - -t 3.99226 -s 0 -d 9 -p ack -e 40 -c 0 -i 7048 -a 0 -x {10.0 9.0 3519 ------- null} h -t 3.99226 -s 0 -d 9 -p ack -e 40 -c 0 -i 7048 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.99229 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7051 -a 0 -x {9.0 10.0 3530 ------- null} + -t 3.99229 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7051 -a 0 -x {9.0 10.0 3530 ------- null} h -t 3.99229 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7051 -a 0 -x {9.0 10.0 3530 ------- null} r -t 3.99296 -s 0 -d 9 -p ack -e 40 -c 0 -i 7046 -a 0 -x {10.0 9.0 3518 ------- null} + -t 3.99296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7057 -a 0 -x {9.0 10.0 3533 ------- null} - -t 3.99296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7057 -a 0 -x {9.0 10.0 3533 ------- null} h -t 3.99296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7057 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.99314 -s 10 -d 7 -p ack -e 40 -c 0 -i 7054 -a 0 -x {10.0 9.0 3522 ------- null} + -t 3.99314 -s 7 -d 0 -p ack -e 40 -c 0 -i 7054 -a 0 -x {10.0 9.0 3522 ------- null} h -t 3.99314 -s 7 -d 8 -p ack -e 40 -c 0 -i 7054 -a 0 -x {10.0 9.0 3522 ------- null} + -t 3.9932 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7043 -a 0 -x {9.0 10.0 3526 ------- null} - -t 3.9932 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7043 -a 0 -x {9.0 10.0 3526 ------- null} h -t 3.9932 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7043 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.99323 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7053 -a 0 -x {9.0 10.0 3531 ------- null} + -t 3.99323 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7053 -a 0 -x {9.0 10.0 3531 ------- null} h -t 3.99323 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7053 -a 0 -x {9.0 10.0 3531 ------- null} + -t 3.99331 -s 0 -d 9 -p ack -e 40 -c 0 -i 7050 -a 0 -x {10.0 9.0 3520 ------- null} - -t 3.99331 -s 0 -d 9 -p ack -e 40 -c 0 -i 7050 -a 0 -x {10.0 9.0 3520 ------- null} h -t 3.99331 -s 0 -d 9 -p ack -e 40 -c 0 -i 7050 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.99344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7039 -a 0 -x {9.0 10.0 3524 ------- null} + -t 3.99344 -s 10 -d 7 -p ack -e 40 -c 0 -i 7058 -a 0 -x {10.0 9.0 3524 ------- null} - -t 3.99344 -s 10 -d 7 -p ack -e 40 -c 0 -i 7058 -a 0 -x {10.0 9.0 3524 ------- null} h -t 3.99344 -s 10 -d 7 -p ack -e 40 -c 0 -i 7058 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.99422 -s 10 -d 7 -p ack -e 40 -c 0 -i 7056 -a 0 -x {10.0 9.0 3523 ------- null} + -t 3.99422 -s 7 -d 0 -p ack -e 40 -c 0 -i 7056 -a 0 -x {10.0 9.0 3523 ------- null} h -t 3.99422 -s 7 -d 8 -p ack -e 40 -c 0 -i 7056 -a 0 -x {10.0 9.0 3523 ------- null} r -t 3.99429 -s 0 -d 9 -p ack -e 40 -c 0 -i 7048 -a 0 -x {10.0 9.0 3519 ------- null} + -t 3.99429 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7059 -a 0 -x {9.0 10.0 3534 ------- null} - -t 3.99429 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7059 -a 0 -x {9.0 10.0 3534 ------- null} h -t 3.99429 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7059 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.99429 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7045 -a 0 -x {9.0 10.0 3527 ------- null} - -t 3.99429 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7045 -a 0 -x {9.0 10.0 3527 ------- null} h -t 3.99429 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7045 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.99448 -s 0 -d 9 -p ack -e 40 -c 0 -i 7052 -a 0 -x {10.0 9.0 3521 ------- null} - -t 3.99448 -s 0 -d 9 -p ack -e 40 -c 0 -i 7052 -a 0 -x {10.0 9.0 3521 ------- null} h -t 3.99448 -s 0 -d 9 -p ack -e 40 -c 0 -i 7052 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.99451 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7055 -a 0 -x {9.0 10.0 3532 ------- null} + -t 3.99451 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7055 -a 0 -x {9.0 10.0 3532 ------- null} h -t 3.99451 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7055 -a 0 -x {9.0 10.0 3532 ------- null} r -t 3.9948 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7041 -a 0 -x {9.0 10.0 3525 ------- null} + -t 3.9948 -s 10 -d 7 -p ack -e 40 -c 0 -i 7060 -a 0 -x {10.0 9.0 3525 ------- null} - -t 3.9948 -s 10 -d 7 -p ack -e 40 -c 0 -i 7060 -a 0 -x {10.0 9.0 3525 ------- null} h -t 3.9948 -s 10 -d 7 -p ack -e 40 -c 0 -i 7060 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.99534 -s 0 -d 9 -p ack -e 40 -c 0 -i 7050 -a 0 -x {10.0 9.0 3520 ------- null} + -t 3.99534 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7061 -a 0 -x {9.0 10.0 3535 ------- null} - -t 3.99534 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7061 -a 0 -x {9.0 10.0 3535 ------- null} h -t 3.99534 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7061 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.99538 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7047 -a 0 -x {9.0 10.0 3528 ------- null} - -t 3.99538 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7047 -a 0 -x {9.0 10.0 3528 ------- null} h -t 3.99538 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7047 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.99546 -s 0 -d 9 -p ack -e 40 -c 0 -i 7054 -a 0 -x {10.0 9.0 3522 ------- null} - -t 3.99546 -s 0 -d 9 -p ack -e 40 -c 0 -i 7054 -a 0 -x {10.0 9.0 3522 ------- null} h -t 3.99546 -s 0 -d 9 -p ack -e 40 -c 0 -i 7054 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.99547 -s 10 -d 7 -p ack -e 40 -c 0 -i 7058 -a 0 -x {10.0 9.0 3524 ------- null} + -t 3.99547 -s 7 -d 0 -p ack -e 40 -c 0 -i 7058 -a 0 -x {10.0 9.0 3524 ------- null} h -t 3.99547 -s 7 -d 8 -p ack -e 40 -c 0 -i 7058 -a 0 -x {10.0 9.0 3524 ------- null} r -t 3.99576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7057 -a 0 -x {9.0 10.0 3533 ------- null} + -t 3.99576 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7057 -a 0 -x {9.0 10.0 3533 ------- null} h -t 3.99576 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7057 -a 0 -x {9.0 10.0 3533 ------- null} r -t 3.996 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7043 -a 0 -x {9.0 10.0 3526 ------- null} + -t 3.996 -s 10 -d 7 -p ack -e 40 -c 0 -i 7062 -a 0 -x {10.0 9.0 3526 ------- null} - -t 3.996 -s 10 -d 7 -p ack -e 40 -c 0 -i 7062 -a 0 -x {10.0 9.0 3526 ------- null} h -t 3.996 -s 10 -d 7 -p ack -e 40 -c 0 -i 7062 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.99646 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7049 -a 0 -x {9.0 10.0 3529 ------- null} - -t 3.99646 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7049 -a 0 -x {9.0 10.0 3529 ------- null} h -t 3.99646 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7049 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.99651 -s 0 -d 9 -p ack -e 40 -c 0 -i 7052 -a 0 -x {10.0 9.0 3521 ------- null} + -t 3.99651 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7063 -a 0 -x {9.0 10.0 3536 ------- null} - -t 3.99651 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7063 -a 0 -x {9.0 10.0 3536 ------- null} h -t 3.99651 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7063 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.99664 -s 0 -d 9 -p ack -e 40 -c 0 -i 7056 -a 0 -x {10.0 9.0 3523 ------- null} - -t 3.99664 -s 0 -d 9 -p ack -e 40 -c 0 -i 7056 -a 0 -x {10.0 9.0 3523 ------- null} h -t 3.99664 -s 0 -d 9 -p ack -e 40 -c 0 -i 7056 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.99683 -s 10 -d 7 -p ack -e 40 -c 0 -i 7060 -a 0 -x {10.0 9.0 3525 ------- null} + -t 3.99683 -s 7 -d 0 -p ack -e 40 -c 0 -i 7060 -a 0 -x {10.0 9.0 3525 ------- null} h -t 3.99683 -s 7 -d 8 -p ack -e 40 -c 0 -i 7060 -a 0 -x {10.0 9.0 3525 ------- null} r -t 3.99709 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7059 -a 0 -x {9.0 10.0 3534 ------- null} + -t 3.99709 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7059 -a 0 -x {9.0 10.0 3534 ------- null} h -t 3.99709 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7059 -a 0 -x {9.0 10.0 3534 ------- null} r -t 3.99709 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7045 -a 0 -x {9.0 10.0 3527 ------- null} + -t 3.99709 -s 10 -d 7 -p ack -e 40 -c 0 -i 7064 -a 0 -x {10.0 9.0 3527 ------- null} - -t 3.99709 -s 10 -d 7 -p ack -e 40 -c 0 -i 7064 -a 0 -x {10.0 9.0 3527 ------- null} h -t 3.99709 -s 10 -d 7 -p ack -e 40 -c 0 -i 7064 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.99749 -s 0 -d 9 -p ack -e 40 -c 0 -i 7054 -a 0 -x {10.0 9.0 3522 ------- null} + -t 3.99749 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7065 -a 0 -x {9.0 10.0 3537 ------- null} - -t 3.99749 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7065 -a 0 -x {9.0 10.0 3537 ------- null} h -t 3.99749 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7065 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.99755 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7051 -a 0 -x {9.0 10.0 3530 ------- null} - -t 3.99755 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7051 -a 0 -x {9.0 10.0 3530 ------- null} h -t 3.99755 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7051 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.99768 -s 0 -d 9 -p ack -e 40 -c 0 -i 7058 -a 0 -x {10.0 9.0 3524 ------- null} - -t 3.99768 -s 0 -d 9 -p ack -e 40 -c 0 -i 7058 -a 0 -x {10.0 9.0 3524 ------- null} h -t 3.99768 -s 0 -d 9 -p ack -e 40 -c 0 -i 7058 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.99803 -s 10 -d 7 -p ack -e 40 -c 0 -i 7062 -a 0 -x {10.0 9.0 3526 ------- null} + -t 3.99803 -s 7 -d 0 -p ack -e 40 -c 0 -i 7062 -a 0 -x {10.0 9.0 3526 ------- null} h -t 3.99803 -s 7 -d 8 -p ack -e 40 -c 0 -i 7062 -a 0 -x {10.0 9.0 3526 ------- null} r -t 3.99814 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7061 -a 0 -x {9.0 10.0 3535 ------- null} + -t 3.99814 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7061 -a 0 -x {9.0 10.0 3535 ------- null} h -t 3.99814 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7061 -a 0 -x {9.0 10.0 3535 ------- null} r -t 3.99818 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7047 -a 0 -x {9.0 10.0 3528 ------- null} + -t 3.99818 -s 10 -d 7 -p ack -e 40 -c 0 -i 7066 -a 0 -x {10.0 9.0 3528 ------- null} - -t 3.99818 -s 10 -d 7 -p ack -e 40 -c 0 -i 7066 -a 0 -x {10.0 9.0 3528 ------- null} h -t 3.99818 -s 10 -d 7 -p ack -e 40 -c 0 -i 7066 -a 0 -x {10.0 9.0 -1 ------- null} + -t 3.99864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7053 -a 0 -x {9.0 10.0 3531 ------- null} - -t 3.99864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7053 -a 0 -x {9.0 10.0 3531 ------- null} h -t 3.99864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7053 -a 0 -x {9.0 10.0 -1 ------- null} r -t 3.99867 -s 0 -d 9 -p ack -e 40 -c 0 -i 7056 -a 0 -x {10.0 9.0 3523 ------- null} + -t 3.99867 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7067 -a 0 -x {9.0 10.0 3538 ------- null} - -t 3.99867 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7067 -a 0 -x {9.0 10.0 3538 ------- null} h -t 3.99867 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7067 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.99875 -s 0 -d 9 -p ack -e 40 -c 0 -i 7060 -a 0 -x {10.0 9.0 3525 ------- null} - -t 3.99875 -s 0 -d 9 -p ack -e 40 -c 0 -i 7060 -a 0 -x {10.0 9.0 3525 ------- null} h -t 3.99875 -s 0 -d 9 -p ack -e 40 -c 0 -i 7060 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.99912 -s 10 -d 7 -p ack -e 40 -c 0 -i 7064 -a 0 -x {10.0 9.0 3527 ------- null} + -t 3.99912 -s 7 -d 0 -p ack -e 40 -c 0 -i 7064 -a 0 -x {10.0 9.0 3527 ------- null} h -t 3.99912 -s 7 -d 8 -p ack -e 40 -c 0 -i 7064 -a 0 -x {10.0 9.0 3527 ------- null} r -t 3.99926 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7049 -a 0 -x {9.0 10.0 3529 ------- null} + -t 3.99926 -s 10 -d 7 -p ack -e 40 -c 0 -i 7068 -a 0 -x {10.0 9.0 3529 ------- null} - -t 3.99926 -s 10 -d 7 -p ack -e 40 -c 0 -i 7068 -a 0 -x {10.0 9.0 3529 ------- null} h -t 3.99926 -s 10 -d 7 -p ack -e 40 -c 0 -i 7068 -a 0 -x {10.0 9.0 -1 ------- null} r -t 3.99931 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7063 -a 0 -x {9.0 10.0 3536 ------- null} + -t 3.99931 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7063 -a 0 -x {9.0 10.0 3536 ------- null} h -t 3.99931 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7063 -a 0 -x {9.0 10.0 3536 ------- null} r -t 3.99971 -s 0 -d 9 -p ack -e 40 -c 0 -i 7058 -a 0 -x {10.0 9.0 3524 ------- null} + -t 3.99971 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7069 -a 0 -x {9.0 10.0 3539 ------- null} - -t 3.99971 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7069 -a 0 -x {9.0 10.0 3539 ------- null} h -t 3.99971 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7069 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.99973 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7055 -a 0 -x {9.0 10.0 3532 ------- null} - -t 3.99973 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7055 -a 0 -x {9.0 10.0 3532 ------- null} h -t 3.99973 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7055 -a 0 -x {9.0 10.0 -1 ------- null} + -t 3.99997 -s 0 -d 9 -p ack -e 40 -c 0 -i 7062 -a 0 -x {10.0 9.0 3526 ------- null} - -t 3.99997 -s 0 -d 9 -p ack -e 40 -c 0 -i 7062 -a 0 -x {10.0 9.0 3526 ------- null} h -t 3.99997 -s 0 -d 9 -p ack -e 40 -c 0 -i 7062 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.00021 -s 10 -d 7 -p ack -e 40 -c 0 -i 7066 -a 0 -x {10.0 9.0 3528 ------- null} + -t 4.00021 -s 7 -d 0 -p ack -e 40 -c 0 -i 7066 -a 0 -x {10.0 9.0 3528 ------- null} h -t 4.00021 -s 7 -d 8 -p ack -e 40 -c 0 -i 7066 -a 0 -x {10.0 9.0 3528 ------- null} r -t 4.00029 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7065 -a 0 -x {9.0 10.0 3537 ------- null} + -t 4.00029 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7065 -a 0 -x {9.0 10.0 3537 ------- null} h -t 4.00029 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7065 -a 0 -x {9.0 10.0 3537 ------- null} r -t 4.00035 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7051 -a 0 -x {9.0 10.0 3530 ------- null} + -t 4.00035 -s 10 -d 7 -p ack -e 40 -c 0 -i 7070 -a 0 -x {10.0 9.0 3530 ------- null} - -t 4.00035 -s 10 -d 7 -p ack -e 40 -c 0 -i 7070 -a 0 -x {10.0 9.0 3530 ------- null} h -t 4.00035 -s 10 -d 7 -p ack -e 40 -c 0 -i 7070 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.00078 -s 0 -d 9 -p ack -e 40 -c 0 -i 7060 -a 0 -x {10.0 9.0 3525 ------- null} + -t 4.00078 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7071 -a 0 -x {9.0 10.0 3540 ------- null} - -t 4.00078 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7071 -a 0 -x {9.0 10.0 3540 ------- null} h -t 4.00078 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7071 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.00082 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7057 -a 0 -x {9.0 10.0 3533 ------- null} - -t 4.00082 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7057 -a 0 -x {9.0 10.0 3533 ------- null} h -t 4.00082 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7057 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.00091 -s 0 -d 9 -p ack -e 40 -c 0 -i 7064 -a 0 -x {10.0 9.0 3527 ------- null} - -t 4.00091 -s 0 -d 9 -p ack -e 40 -c 0 -i 7064 -a 0 -x {10.0 9.0 3527 ------- null} h -t 4.00091 -s 0 -d 9 -p ack -e 40 -c 0 -i 7064 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.0013 -s 10 -d 7 -p ack -e 40 -c 0 -i 7068 -a 0 -x {10.0 9.0 3529 ------- null} + -t 4.0013 -s 7 -d 0 -p ack -e 40 -c 0 -i 7068 -a 0 -x {10.0 9.0 3529 ------- null} h -t 4.0013 -s 7 -d 8 -p ack -e 40 -c 0 -i 7068 -a 0 -x {10.0 9.0 3529 ------- null} r -t 4.00144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7053 -a 0 -x {9.0 10.0 3531 ------- null} + -t 4.00144 -s 10 -d 7 -p ack -e 40 -c 0 -i 7072 -a 0 -x {10.0 9.0 3531 ------- null} - -t 4.00144 -s 10 -d 7 -p ack -e 40 -c 0 -i 7072 -a 0 -x {10.0 9.0 3531 ------- null} h -t 4.00144 -s 10 -d 7 -p ack -e 40 -c 0 -i 7072 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.00147 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7067 -a 0 -x {9.0 10.0 3538 ------- null} + -t 4.00147 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7067 -a 0 -x {9.0 10.0 3538 ------- null} h -t 4.00147 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7067 -a 0 -x {9.0 10.0 3538 ------- null} + -t 4.0019 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7059 -a 0 -x {9.0 10.0 3534 ------- null} - -t 4.0019 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7059 -a 0 -x {9.0 10.0 3534 ------- null} h -t 4.0019 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7059 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.002 -s 0 -d 9 -p ack -e 40 -c 0 -i 7062 -a 0 -x {10.0 9.0 3526 ------- null} + -t 4.002 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7073 -a 0 -x {9.0 10.0 3541 ------- null} - -t 4.002 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7073 -a 0 -x {9.0 10.0 3541 ------- null} h -t 4.002 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7073 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.00218 -s 0 -d 9 -p ack -e 40 -c 0 -i 7066 -a 0 -x {10.0 9.0 3528 ------- null} - -t 4.00218 -s 0 -d 9 -p ack -e 40 -c 0 -i 7066 -a 0 -x {10.0 9.0 3528 ------- null} h -t 4.00218 -s 0 -d 9 -p ack -e 40 -c 0 -i 7066 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.00238 -s 10 -d 7 -p ack -e 40 -c 0 -i 7070 -a 0 -x {10.0 9.0 3530 ------- null} + -t 4.00238 -s 7 -d 0 -p ack -e 40 -c 0 -i 7070 -a 0 -x {10.0 9.0 3530 ------- null} h -t 4.00238 -s 7 -d 8 -p ack -e 40 -c 0 -i 7070 -a 0 -x {10.0 9.0 3530 ------- null} r -t 4.00251 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7069 -a 0 -x {9.0 10.0 3539 ------- null} + -t 4.00251 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7069 -a 0 -x {9.0 10.0 3539 ------- null} h -t 4.00251 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7069 -a 0 -x {9.0 10.0 3539 ------- null} r -t 4.00253 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7055 -a 0 -x {9.0 10.0 3532 ------- null} + -t 4.00253 -s 10 -d 7 -p ack -e 40 -c 0 -i 7074 -a 0 -x {10.0 9.0 3532 ------- null} - -t 4.00253 -s 10 -d 7 -p ack -e 40 -c 0 -i 7074 -a 0 -x {10.0 9.0 3532 ------- null} h -t 4.00253 -s 10 -d 7 -p ack -e 40 -c 0 -i 7074 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.00294 -s 0 -d 9 -p ack -e 40 -c 0 -i 7064 -a 0 -x {10.0 9.0 3527 ------- null} + -t 4.00294 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7075 -a 0 -x {9.0 10.0 3542 ------- null} - -t 4.00294 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7075 -a 0 -x {9.0 10.0 3542 ------- null} h -t 4.00294 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7075 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.00318 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7061 -a 0 -x {9.0 10.0 3535 ------- null} - -t 4.00318 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7061 -a 0 -x {9.0 10.0 3535 ------- null} h -t 4.00318 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7061 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.00346 -s 0 -d 9 -p ack -e 40 -c 0 -i 7068 -a 0 -x {10.0 9.0 3529 ------- null} - -t 4.00346 -s 0 -d 9 -p ack -e 40 -c 0 -i 7068 -a 0 -x {10.0 9.0 3529 ------- null} h -t 4.00346 -s 0 -d 9 -p ack -e 40 -c 0 -i 7068 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.00347 -s 10 -d 7 -p ack -e 40 -c 0 -i 7072 -a 0 -x {10.0 9.0 3531 ------- null} + -t 4.00347 -s 7 -d 0 -p ack -e 40 -c 0 -i 7072 -a 0 -x {10.0 9.0 3531 ------- null} h -t 4.00347 -s 7 -d 8 -p ack -e 40 -c 0 -i 7072 -a 0 -x {10.0 9.0 3531 ------- null} r -t 4.00358 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7071 -a 0 -x {9.0 10.0 3540 ------- null} + -t 4.00358 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7071 -a 0 -x {9.0 10.0 3540 ------- null} h -t 4.00358 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7071 -a 0 -x {9.0 10.0 3540 ------- null} r -t 4.00362 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7057 -a 0 -x {9.0 10.0 3533 ------- null} + -t 4.00362 -s 10 -d 7 -p ack -e 40 -c 0 -i 7076 -a 0 -x {10.0 9.0 3533 ------- null} - -t 4.00362 -s 10 -d 7 -p ack -e 40 -c 0 -i 7076 -a 0 -x {10.0 9.0 3533 ------- null} h -t 4.00362 -s 10 -d 7 -p ack -e 40 -c 0 -i 7076 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.00421 -s 0 -d 9 -p ack -e 40 -c 0 -i 7066 -a 0 -x {10.0 9.0 3528 ------- null} + -t 4.00421 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7077 -a 0 -x {9.0 10.0 3543 ------- null} - -t 4.00421 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7077 -a 0 -x {9.0 10.0 3543 ------- null} h -t 4.00421 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7077 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.00443 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7063 -a 0 -x {9.0 10.0 3536 ------- null} - -t 4.00443 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7063 -a 0 -x {9.0 10.0 3536 ------- null} h -t 4.00443 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7063 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.00456 -s 10 -d 7 -p ack -e 40 -c 0 -i 7074 -a 0 -x {10.0 9.0 3532 ------- null} + -t 4.00456 -s 7 -d 0 -p ack -e 40 -c 0 -i 7074 -a 0 -x {10.0 9.0 3532 ------- null} h -t 4.00456 -s 7 -d 8 -p ack -e 40 -c 0 -i 7074 -a 0 -x {10.0 9.0 3532 ------- null} r -t 4.0047 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7059 -a 0 -x {9.0 10.0 3534 ------- null} + -t 4.0047 -s 10 -d 7 -p ack -e 40 -c 0 -i 7078 -a 0 -x {10.0 9.0 3534 ------- null} - -t 4.0047 -s 10 -d 7 -p ack -e 40 -c 0 -i 7078 -a 0 -x {10.0 9.0 3534 ------- null} h -t 4.0047 -s 10 -d 7 -p ack -e 40 -c 0 -i 7078 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.00474 -s 0 -d 9 -p ack -e 40 -c 0 -i 7070 -a 0 -x {10.0 9.0 3530 ------- null} - -t 4.00474 -s 0 -d 9 -p ack -e 40 -c 0 -i 7070 -a 0 -x {10.0 9.0 3530 ------- null} h -t 4.00474 -s 0 -d 9 -p ack -e 40 -c 0 -i 7070 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.0048 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7073 -a 0 -x {9.0 10.0 3541 ------- null} + -t 4.0048 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7073 -a 0 -x {9.0 10.0 3541 ------- null} h -t 4.0048 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7073 -a 0 -x {9.0 10.0 3541 ------- null} r -t 4.00549 -s 0 -d 9 -p ack -e 40 -c 0 -i 7068 -a 0 -x {10.0 9.0 3529 ------- null} + -t 4.00549 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7079 -a 0 -x {9.0 10.0 3544 ------- null} - -t 4.00549 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7079 -a 0 -x {9.0 10.0 3544 ------- null} h -t 4.00549 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7079 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.00565 -s 10 -d 7 -p ack -e 40 -c 0 -i 7076 -a 0 -x {10.0 9.0 3533 ------- null} + -t 4.00565 -s 7 -d 0 -p ack -e 40 -c 0 -i 7076 -a 0 -x {10.0 9.0 3533 ------- null} h -t 4.00565 -s 7 -d 8 -p ack -e 40 -c 0 -i 7076 -a 0 -x {10.0 9.0 3533 ------- null} r -t 4.00574 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7075 -a 0 -x {9.0 10.0 3542 ------- null} + -t 4.00574 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7075 -a 0 -x {9.0 10.0 3542 ------- null} h -t 4.00574 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7075 -a 0 -x {9.0 10.0 3542 ------- null} + -t 4.00576 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7065 -a 0 -x {9.0 10.0 3537 ------- null} - -t 4.00576 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7065 -a 0 -x {9.0 10.0 3537 ------- null} h -t 4.00576 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7065 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.00589 -s 0 -d 9 -p ack -e 40 -c 0 -i 7072 -a 0 -x {10.0 9.0 3531 ------- null} - -t 4.00589 -s 0 -d 9 -p ack -e 40 -c 0 -i 7072 -a 0 -x {10.0 9.0 3531 ------- null} h -t 4.00589 -s 0 -d 9 -p ack -e 40 -c 0 -i 7072 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.00598 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7061 -a 0 -x {9.0 10.0 3535 ------- null} + -t 4.00598 -s 10 -d 7 -p ack -e 40 -c 0 -i 7080 -a 0 -x {10.0 9.0 3535 ------- null} - -t 4.00598 -s 10 -d 7 -p ack -e 40 -c 0 -i 7080 -a 0 -x {10.0 9.0 3535 ------- null} h -t 4.00598 -s 10 -d 7 -p ack -e 40 -c 0 -i 7080 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.00674 -s 10 -d 7 -p ack -e 40 -c 0 -i 7078 -a 0 -x {10.0 9.0 3534 ------- null} + -t 4.00674 -s 7 -d 0 -p ack -e 40 -c 0 -i 7078 -a 0 -x {10.0 9.0 3534 ------- null} h -t 4.00674 -s 7 -d 8 -p ack -e 40 -c 0 -i 7078 -a 0 -x {10.0 9.0 3534 ------- null} r -t 4.00677 -s 0 -d 9 -p ack -e 40 -c 0 -i 7070 -a 0 -x {10.0 9.0 3530 ------- null} + -t 4.00677 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7081 -a 0 -x {9.0 10.0 3545 ------- null} - -t 4.00677 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7081 -a 0 -x {9.0 10.0 3545 ------- null} h -t 4.00677 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7081 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.00685 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7067 -a 0 -x {9.0 10.0 3538 ------- null} - -t 4.00685 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7067 -a 0 -x {9.0 10.0 3538 ------- null} h -t 4.00685 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7067 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.00698 -s 0 -d 9 -p ack -e 40 -c 0 -i 7074 -a 0 -x {10.0 9.0 3532 ------- null} - -t 4.00698 -s 0 -d 9 -p ack -e 40 -c 0 -i 7074 -a 0 -x {10.0 9.0 3532 ------- null} h -t 4.00698 -s 0 -d 9 -p ack -e 40 -c 0 -i 7074 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.00701 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7077 -a 0 -x {9.0 10.0 3543 ------- null} + -t 4.00701 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7077 -a 0 -x {9.0 10.0 3543 ------- null} h -t 4.00701 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7077 -a 0 -x {9.0 10.0 3543 ------- null} r -t 4.00723 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7063 -a 0 -x {9.0 10.0 3536 ------- null} + -t 4.00723 -s 10 -d 7 -p ack -e 40 -c 0 -i 7082 -a 0 -x {10.0 9.0 3536 ------- null} - -t 4.00723 -s 10 -d 7 -p ack -e 40 -c 0 -i 7082 -a 0 -x {10.0 9.0 3536 ------- null} h -t 4.00723 -s 10 -d 7 -p ack -e 40 -c 0 -i 7082 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.00792 -s 0 -d 9 -p ack -e 40 -c 0 -i 7072 -a 0 -x {10.0 9.0 3531 ------- null} + -t 4.00792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7083 -a 0 -x {9.0 10.0 3546 ------- null} - -t 4.00792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7083 -a 0 -x {9.0 10.0 3546 ------- null} h -t 4.00792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7083 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.00794 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7069 -a 0 -x {9.0 10.0 3539 ------- null} - -t 4.00794 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7069 -a 0 -x {9.0 10.0 3539 ------- null} h -t 4.00794 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7069 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.00802 -s 10 -d 7 -p ack -e 40 -c 0 -i 7080 -a 0 -x {10.0 9.0 3535 ------- null} + -t 4.00802 -s 7 -d 0 -p ack -e 40 -c 0 -i 7080 -a 0 -x {10.0 9.0 3535 ------- null} h -t 4.00802 -s 7 -d 8 -p ack -e 40 -c 0 -i 7080 -a 0 -x {10.0 9.0 3535 ------- null} + -t 4.00808 -s 0 -d 9 -p ack -e 40 -c 0 -i 7076 -a 0 -x {10.0 9.0 3533 ------- null} - -t 4.00808 -s 0 -d 9 -p ack -e 40 -c 0 -i 7076 -a 0 -x {10.0 9.0 3533 ------- null} h -t 4.00808 -s 0 -d 9 -p ack -e 40 -c 0 -i 7076 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.00829 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7079 -a 0 -x {9.0 10.0 3544 ------- null} + -t 4.00829 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7079 -a 0 -x {9.0 10.0 3544 ------- null} h -t 4.00829 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7079 -a 0 -x {9.0 10.0 3544 ------- null} r -t 4.00856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7065 -a 0 -x {9.0 10.0 3537 ------- null} + -t 4.00856 -s 10 -d 7 -p ack -e 40 -c 0 -i 7084 -a 0 -x {10.0 9.0 3537 ------- null} - -t 4.00856 -s 10 -d 7 -p ack -e 40 -c 0 -i 7084 -a 0 -x {10.0 9.0 3537 ------- null} h -t 4.00856 -s 10 -d 7 -p ack -e 40 -c 0 -i 7084 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.00901 -s 0 -d 9 -p ack -e 40 -c 0 -i 7074 -a 0 -x {10.0 9.0 3532 ------- null} + -t 4.00901 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7085 -a 0 -x {9.0 10.0 3547 ------- null} - -t 4.00901 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7085 -a 0 -x {9.0 10.0 3547 ------- null} h -t 4.00901 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7085 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.00902 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7071 -a 0 -x {9.0 10.0 3540 ------- null} - -t 4.00902 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7071 -a 0 -x {9.0 10.0 3540 ------- null} h -t 4.00902 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7071 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.00912 -s 0 -d 9 -p ack -e 40 -c 0 -i 7078 -a 0 -x {10.0 9.0 3534 ------- null} - -t 4.00912 -s 0 -d 9 -p ack -e 40 -c 0 -i 7078 -a 0 -x {10.0 9.0 3534 ------- null} h -t 4.00912 -s 0 -d 9 -p ack -e 40 -c 0 -i 7078 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.00926 -s 10 -d 7 -p ack -e 40 -c 0 -i 7082 -a 0 -x {10.0 9.0 3536 ------- null} + -t 4.00926 -s 7 -d 0 -p ack -e 40 -c 0 -i 7082 -a 0 -x {10.0 9.0 3536 ------- null} h -t 4.00926 -s 7 -d 8 -p ack -e 40 -c 0 -i 7082 -a 0 -x {10.0 9.0 3536 ------- null} r -t 4.00957 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7081 -a 0 -x {9.0 10.0 3545 ------- null} + -t 4.00957 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7081 -a 0 -x {9.0 10.0 3545 ------- null} h -t 4.00957 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7081 -a 0 -x {9.0 10.0 3545 ------- null} r -t 4.00965 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7067 -a 0 -x {9.0 10.0 3538 ------- null} + -t 4.00965 -s 10 -d 7 -p ack -e 40 -c 0 -i 7086 -a 0 -x {10.0 9.0 3538 ------- null} - -t 4.00965 -s 10 -d 7 -p ack -e 40 -c 0 -i 7086 -a 0 -x {10.0 9.0 3538 ------- null} h -t 4.00965 -s 10 -d 7 -p ack -e 40 -c 0 -i 7086 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.01011 -s 0 -d 9 -p ack -e 40 -c 0 -i 7076 -a 0 -x {10.0 9.0 3533 ------- null} + -t 4.01011 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7087 -a 0 -x {9.0 10.0 3548 ------- null} - -t 4.01011 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7087 -a 0 -x {9.0 10.0 3548 ------- null} h -t 4.01011 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7087 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.01011 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7073 -a 0 -x {9.0 10.0 3541 ------- null} - -t 4.01011 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7073 -a 0 -x {9.0 10.0 3541 ------- null} h -t 4.01011 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7073 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.01018 -s 0 -d 9 -p ack -e 40 -c 0 -i 7080 -a 0 -x {10.0 9.0 3535 ------- null} - -t 4.01018 -s 0 -d 9 -p ack -e 40 -c 0 -i 7080 -a 0 -x {10.0 9.0 3535 ------- null} h -t 4.01018 -s 0 -d 9 -p ack -e 40 -c 0 -i 7080 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.01059 -s 10 -d 7 -p ack -e 40 -c 0 -i 7084 -a 0 -x {10.0 9.0 3537 ------- null} + -t 4.01059 -s 7 -d 0 -p ack -e 40 -c 0 -i 7084 -a 0 -x {10.0 9.0 3537 ------- null} h -t 4.01059 -s 7 -d 8 -p ack -e 40 -c 0 -i 7084 -a 0 -x {10.0 9.0 3537 ------- null} r -t 4.01072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7083 -a 0 -x {9.0 10.0 3546 ------- null} + -t 4.01072 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7083 -a 0 -x {9.0 10.0 3546 ------- null} h -t 4.01072 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7083 -a 0 -x {9.0 10.0 3546 ------- null} r -t 4.01074 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7069 -a 0 -x {9.0 10.0 3539 ------- null} + -t 4.01074 -s 10 -d 7 -p ack -e 40 -c 0 -i 7088 -a 0 -x {10.0 9.0 3539 ------- null} - -t 4.01074 -s 10 -d 7 -p ack -e 40 -c 0 -i 7088 -a 0 -x {10.0 9.0 3539 ------- null} h -t 4.01074 -s 10 -d 7 -p ack -e 40 -c 0 -i 7088 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.01115 -s 0 -d 9 -p ack -e 40 -c 0 -i 7078 -a 0 -x {10.0 9.0 3534 ------- null} + -t 4.01115 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7089 -a 0 -x {9.0 10.0 3549 ------- null} - -t 4.01115 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7089 -a 0 -x {9.0 10.0 3549 ------- null} h -t 4.01115 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7089 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.0112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7075 -a 0 -x {9.0 10.0 3542 ------- null} - -t 4.0112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7075 -a 0 -x {9.0 10.0 3542 ------- null} h -t 4.0112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7075 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.01134 -s 0 -d 9 -p ack -e 40 -c 0 -i 7082 -a 0 -x {10.0 9.0 3536 ------- null} - -t 4.01134 -s 0 -d 9 -p ack -e 40 -c 0 -i 7082 -a 0 -x {10.0 9.0 3536 ------- null} h -t 4.01134 -s 0 -d 9 -p ack -e 40 -c 0 -i 7082 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.01168 -s 10 -d 7 -p ack -e 40 -c 0 -i 7086 -a 0 -x {10.0 9.0 3538 ------- null} + -t 4.01168 -s 7 -d 0 -p ack -e 40 -c 0 -i 7086 -a 0 -x {10.0 9.0 3538 ------- null} h -t 4.01168 -s 7 -d 8 -p ack -e 40 -c 0 -i 7086 -a 0 -x {10.0 9.0 3538 ------- null} r -t 4.01181 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7085 -a 0 -x {9.0 10.0 3547 ------- null} + -t 4.01181 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7085 -a 0 -x {9.0 10.0 3547 ------- null} h -t 4.01181 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7085 -a 0 -x {9.0 10.0 3547 ------- null} r -t 4.01182 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7071 -a 0 -x {9.0 10.0 3540 ------- null} + -t 4.01182 -s 10 -d 7 -p ack -e 40 -c 0 -i 7090 -a 0 -x {10.0 9.0 3540 ------- null} - -t 4.01182 -s 10 -d 7 -p ack -e 40 -c 0 -i 7090 -a 0 -x {10.0 9.0 3540 ------- null} h -t 4.01182 -s 10 -d 7 -p ack -e 40 -c 0 -i 7090 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.01221 -s 0 -d 9 -p ack -e 40 -c 0 -i 7080 -a 0 -x {10.0 9.0 3535 ------- null} + -t 4.01221 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7091 -a 0 -x {9.0 10.0 3550 ------- null} - -t 4.01221 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7091 -a 0 -x {9.0 10.0 3550 ------- null} h -t 4.01221 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7091 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.01229 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7077 -a 0 -x {9.0 10.0 3543 ------- null} - -t 4.01229 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7077 -a 0 -x {9.0 10.0 3543 ------- null} h -t 4.01229 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7077 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.01259 -s 0 -d 9 -p ack -e 40 -c 0 -i 7084 -a 0 -x {10.0 9.0 3537 ------- null} - -t 4.01259 -s 0 -d 9 -p ack -e 40 -c 0 -i 7084 -a 0 -x {10.0 9.0 3537 ------- null} h -t 4.01259 -s 0 -d 9 -p ack -e 40 -c 0 -i 7084 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.01277 -s 10 -d 7 -p ack -e 40 -c 0 -i 7088 -a 0 -x {10.0 9.0 3539 ------- null} + -t 4.01277 -s 7 -d 0 -p ack -e 40 -c 0 -i 7088 -a 0 -x {10.0 9.0 3539 ------- null} h -t 4.01277 -s 7 -d 8 -p ack -e 40 -c 0 -i 7088 -a 0 -x {10.0 9.0 3539 ------- null} r -t 4.01291 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7087 -a 0 -x {9.0 10.0 3548 ------- null} + -t 4.01291 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7087 -a 0 -x {9.0 10.0 3548 ------- null} h -t 4.01291 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7087 -a 0 -x {9.0 10.0 3548 ------- null} r -t 4.01291 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7073 -a 0 -x {9.0 10.0 3541 ------- null} + -t 4.01291 -s 10 -d 7 -p ack -e 40 -c 0 -i 7092 -a 0 -x {10.0 9.0 3541 ------- null} - -t 4.01291 -s 10 -d 7 -p ack -e 40 -c 0 -i 7092 -a 0 -x {10.0 9.0 3541 ------- null} h -t 4.01291 -s 10 -d 7 -p ack -e 40 -c 0 -i 7092 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.01338 -s 0 -d 9 -p ack -e 40 -c 0 -i 7082 -a 0 -x {10.0 9.0 3536 ------- null} + -t 4.01338 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7093 -a 0 -x {9.0 10.0 3551 ------- null} - -t 4.01338 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7093 -a 0 -x {9.0 10.0 3551 ------- null} h -t 4.01338 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7093 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.01346 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7079 -a 0 -x {9.0 10.0 3544 ------- null} - -t 4.01346 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7079 -a 0 -x {9.0 10.0 3544 ------- null} h -t 4.01346 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7079 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.01363 -s 0 -d 9 -p ack -e 40 -c 0 -i 7086 -a 0 -x {10.0 9.0 3538 ------- null} - -t 4.01363 -s 0 -d 9 -p ack -e 40 -c 0 -i 7086 -a 0 -x {10.0 9.0 3538 ------- null} h -t 4.01363 -s 0 -d 9 -p ack -e 40 -c 0 -i 7086 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.01386 -s 10 -d 7 -p ack -e 40 -c 0 -i 7090 -a 0 -x {10.0 9.0 3540 ------- null} + -t 4.01386 -s 7 -d 0 -p ack -e 40 -c 0 -i 7090 -a 0 -x {10.0 9.0 3540 ------- null} h -t 4.01386 -s 7 -d 8 -p ack -e 40 -c 0 -i 7090 -a 0 -x {10.0 9.0 3540 ------- null} r -t 4.01395 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7089 -a 0 -x {9.0 10.0 3549 ------- null} + -t 4.01395 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7089 -a 0 -x {9.0 10.0 3549 ------- null} h -t 4.01395 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7089 -a 0 -x {9.0 10.0 3549 ------- null} r -t 4.014 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7075 -a 0 -x {9.0 10.0 3542 ------- null} + -t 4.014 -s 10 -d 7 -p ack -e 40 -c 0 -i 7094 -a 0 -x {10.0 9.0 3542 ------- null} - -t 4.014 -s 10 -d 7 -p ack -e 40 -c 0 -i 7094 -a 0 -x {10.0 9.0 3542 ------- null} h -t 4.014 -s 10 -d 7 -p ack -e 40 -c 0 -i 7094 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.01454 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7081 -a 0 -x {9.0 10.0 3545 ------- null} - -t 4.01454 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7081 -a 0 -x {9.0 10.0 3545 ------- null} h -t 4.01454 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7081 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.01461 -s 0 -d 9 -p ack -e 40 -c 0 -i 7088 -a 0 -x {10.0 9.0 3539 ------- null} - -t 4.01461 -s 0 -d 9 -p ack -e 40 -c 0 -i 7088 -a 0 -x {10.0 9.0 3539 ------- null} h -t 4.01461 -s 0 -d 9 -p ack -e 40 -c 0 -i 7088 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.01462 -s 0 -d 9 -p ack -e 40 -c 0 -i 7084 -a 0 -x {10.0 9.0 3537 ------- null} + -t 4.01462 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7095 -a 0 -x {9.0 10.0 3552 ------- null} - -t 4.01462 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7095 -a 0 -x {9.0 10.0 3552 ------- null} h -t 4.01462 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7095 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.01494 -s 10 -d 7 -p ack -e 40 -c 0 -i 7092 -a 0 -x {10.0 9.0 3541 ------- null} + -t 4.01494 -s 7 -d 0 -p ack -e 40 -c 0 -i 7092 -a 0 -x {10.0 9.0 3541 ------- null} h -t 4.01494 -s 7 -d 8 -p ack -e 40 -c 0 -i 7092 -a 0 -x {10.0 9.0 3541 ------- null} r -t 4.01501 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7091 -a 0 -x {9.0 10.0 3550 ------- null} + -t 4.01501 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7091 -a 0 -x {9.0 10.0 3550 ------- null} h -t 4.01501 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7091 -a 0 -x {9.0 10.0 3550 ------- null} r -t 4.01509 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7077 -a 0 -x {9.0 10.0 3543 ------- null} + -t 4.01509 -s 10 -d 7 -p ack -e 40 -c 0 -i 7096 -a 0 -x {10.0 9.0 3543 ------- null} - -t 4.01509 -s 10 -d 7 -p ack -e 40 -c 0 -i 7096 -a 0 -x {10.0 9.0 3543 ------- null} h -t 4.01509 -s 10 -d 7 -p ack -e 40 -c 0 -i 7096 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.01563 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7083 -a 0 -x {9.0 10.0 3546 ------- null} - -t 4.01563 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7083 -a 0 -x {9.0 10.0 3546 ------- null} h -t 4.01563 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7083 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.01566 -s 0 -d 9 -p ack -e 40 -c 0 -i 7086 -a 0 -x {10.0 9.0 3538 ------- null} + -t 4.01566 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7097 -a 0 -x {9.0 10.0 3553 ------- null} - -t 4.01566 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7097 -a 0 -x {9.0 10.0 3553 ------- null} h -t 4.01566 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7097 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.01578 -s 0 -d 9 -p ack -e 40 -c 0 -i 7090 -a 0 -x {10.0 9.0 3540 ------- null} - -t 4.01578 -s 0 -d 9 -p ack -e 40 -c 0 -i 7090 -a 0 -x {10.0 9.0 3540 ------- null} h -t 4.01578 -s 0 -d 9 -p ack -e 40 -c 0 -i 7090 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.01603 -s 10 -d 7 -p ack -e 40 -c 0 -i 7094 -a 0 -x {10.0 9.0 3542 ------- null} + -t 4.01603 -s 7 -d 0 -p ack -e 40 -c 0 -i 7094 -a 0 -x {10.0 9.0 3542 ------- null} h -t 4.01603 -s 7 -d 8 -p ack -e 40 -c 0 -i 7094 -a 0 -x {10.0 9.0 3542 ------- null} r -t 4.01618 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7093 -a 0 -x {9.0 10.0 3551 ------- null} + -t 4.01618 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7093 -a 0 -x {9.0 10.0 3551 ------- null} h -t 4.01618 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7093 -a 0 -x {9.0 10.0 3551 ------- null} r -t 4.01626 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7079 -a 0 -x {9.0 10.0 3544 ------- null} + -t 4.01626 -s 10 -d 7 -p ack -e 40 -c 0 -i 7098 -a 0 -x {10.0 9.0 3544 ------- null} - -t 4.01626 -s 10 -d 7 -p ack -e 40 -c 0 -i 7098 -a 0 -x {10.0 9.0 3544 ------- null} h -t 4.01626 -s 10 -d 7 -p ack -e 40 -c 0 -i 7098 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.01664 -s 0 -d 9 -p ack -e 40 -c 0 -i 7088 -a 0 -x {10.0 9.0 3539 ------- null} + -t 4.01664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7099 -a 0 -x {9.0 10.0 3554 ------- null} - -t 4.01664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7099 -a 0 -x {9.0 10.0 3554 ------- null} h -t 4.01664 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7099 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.01672 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7085 -a 0 -x {9.0 10.0 3547 ------- null} - -t 4.01672 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7085 -a 0 -x {9.0 10.0 3547 ------- null} h -t 4.01672 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7085 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.01694 -s 0 -d 9 -p ack -e 40 -c 0 -i 7092 -a 0 -x {10.0 9.0 3541 ------- null} - -t 4.01694 -s 0 -d 9 -p ack -e 40 -c 0 -i 7092 -a 0 -x {10.0 9.0 3541 ------- null} h -t 4.01694 -s 0 -d 9 -p ack -e 40 -c 0 -i 7092 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.01712 -s 10 -d 7 -p ack -e 40 -c 0 -i 7096 -a 0 -x {10.0 9.0 3543 ------- null} + -t 4.01712 -s 7 -d 0 -p ack -e 40 -c 0 -i 7096 -a 0 -x {10.0 9.0 3543 ------- null} h -t 4.01712 -s 7 -d 8 -p ack -e 40 -c 0 -i 7096 -a 0 -x {10.0 9.0 3543 ------- null} r -t 4.01734 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7081 -a 0 -x {9.0 10.0 3545 ------- null} + -t 4.01734 -s 10 -d 7 -p ack -e 40 -c 0 -i 7100 -a 0 -x {10.0 9.0 3545 ------- null} - -t 4.01734 -s 10 -d 7 -p ack -e 40 -c 0 -i 7100 -a 0 -x {10.0 9.0 3545 ------- null} h -t 4.01734 -s 10 -d 7 -p ack -e 40 -c 0 -i 7100 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.01742 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7095 -a 0 -x {9.0 10.0 3552 ------- null} + -t 4.01742 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7095 -a 0 -x {9.0 10.0 3552 ------- null} h -t 4.01742 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7095 -a 0 -x {9.0 10.0 3552 ------- null} r -t 4.01781 -s 0 -d 9 -p ack -e 40 -c 0 -i 7090 -a 0 -x {10.0 9.0 3540 ------- null} + -t 4.01781 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7101 -a 0 -x {9.0 10.0 3555 ------- null} - -t 4.01781 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7101 -a 0 -x {9.0 10.0 3555 ------- null} h -t 4.01781 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7101 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.01781 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7087 -a 0 -x {9.0 10.0 3548 ------- null} - -t 4.01781 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7087 -a 0 -x {9.0 10.0 3548 ------- null} h -t 4.01781 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7087 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.01798 -s 0 -d 9 -p ack -e 40 -c 0 -i 7094 -a 0 -x {10.0 9.0 3542 ------- null} - -t 4.01798 -s 0 -d 9 -p ack -e 40 -c 0 -i 7094 -a 0 -x {10.0 9.0 3542 ------- null} h -t 4.01798 -s 0 -d 9 -p ack -e 40 -c 0 -i 7094 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.01829 -s 10 -d 7 -p ack -e 40 -c 0 -i 7098 -a 0 -x {10.0 9.0 3544 ------- null} + -t 4.01829 -s 7 -d 0 -p ack -e 40 -c 0 -i 7098 -a 0 -x {10.0 9.0 3544 ------- null} h -t 4.01829 -s 7 -d 8 -p ack -e 40 -c 0 -i 7098 -a 0 -x {10.0 9.0 3544 ------- null} r -t 4.01843 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7083 -a 0 -x {9.0 10.0 3546 ------- null} + -t 4.01843 -s 10 -d 7 -p ack -e 40 -c 0 -i 7102 -a 0 -x {10.0 9.0 3546 ------- null} - -t 4.01843 -s 10 -d 7 -p ack -e 40 -c 0 -i 7102 -a 0 -x {10.0 9.0 3546 ------- null} h -t 4.01843 -s 10 -d 7 -p ack -e 40 -c 0 -i 7102 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.01846 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7097 -a 0 -x {9.0 10.0 3553 ------- null} + -t 4.01846 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7097 -a 0 -x {9.0 10.0 3553 ------- null} h -t 4.01846 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7097 -a 0 -x {9.0 10.0 3553 ------- null} + -t 4.0189 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7089 -a 0 -x {9.0 10.0 3549 ------- null} - -t 4.0189 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7089 -a 0 -x {9.0 10.0 3549 ------- null} h -t 4.0189 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7089 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.01898 -s 0 -d 9 -p ack -e 40 -c 0 -i 7092 -a 0 -x {10.0 9.0 3541 ------- null} + -t 4.01898 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7103 -a 0 -x {9.0 10.0 3556 ------- null} - -t 4.01898 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7103 -a 0 -x {9.0 10.0 3556 ------- null} h -t 4.01898 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7103 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.01909 -s 0 -d 9 -p ack -e 40 -c 0 -i 7096 -a 0 -x {10.0 9.0 3543 ------- null} - -t 4.01909 -s 0 -d 9 -p ack -e 40 -c 0 -i 7096 -a 0 -x {10.0 9.0 3543 ------- null} h -t 4.01909 -s 0 -d 9 -p ack -e 40 -c 0 -i 7096 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.01938 -s 10 -d 7 -p ack -e 40 -c 0 -i 7100 -a 0 -x {10.0 9.0 3545 ------- null} + -t 4.01938 -s 7 -d 0 -p ack -e 40 -c 0 -i 7100 -a 0 -x {10.0 9.0 3545 ------- null} h -t 4.01938 -s 7 -d 8 -p ack -e 40 -c 0 -i 7100 -a 0 -x {10.0 9.0 3545 ------- null} r -t 4.01944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7099 -a 0 -x {9.0 10.0 3554 ------- null} + -t 4.01944 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7099 -a 0 -x {9.0 10.0 3554 ------- null} h -t 4.01944 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7099 -a 0 -x {9.0 10.0 3554 ------- null} r -t 4.01952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7085 -a 0 -x {9.0 10.0 3547 ------- null} + -t 4.01952 -s 10 -d 7 -p ack -e 40 -c 0 -i 7104 -a 0 -x {10.0 9.0 3547 ------- null} - -t 4.01952 -s 10 -d 7 -p ack -e 40 -c 0 -i 7104 -a 0 -x {10.0 9.0 3547 ------- null} h -t 4.01952 -s 10 -d 7 -p ack -e 40 -c 0 -i 7104 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.01998 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7091 -a 0 -x {9.0 10.0 3550 ------- null} - -t 4.01998 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7091 -a 0 -x {9.0 10.0 3550 ------- null} h -t 4.01998 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7091 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.02002 -s 0 -d 9 -p ack -e 40 -c 0 -i 7094 -a 0 -x {10.0 9.0 3542 ------- null} + -t 4.02002 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7105 -a 0 -x {9.0 10.0 3557 ------- null} - -t 4.02002 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7105 -a 0 -x {9.0 10.0 3557 ------- null} h -t 4.02002 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7105 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.02014 -s 0 -d 9 -p ack -e 40 -c 0 -i 7098 -a 0 -x {10.0 9.0 3544 ------- null} - -t 4.02014 -s 0 -d 9 -p ack -e 40 -c 0 -i 7098 -a 0 -x {10.0 9.0 3544 ------- null} h -t 4.02014 -s 0 -d 9 -p ack -e 40 -c 0 -i 7098 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.02046 -s 10 -d 7 -p ack -e 40 -c 0 -i 7102 -a 0 -x {10.0 9.0 3546 ------- null} + -t 4.02046 -s 7 -d 0 -p ack -e 40 -c 0 -i 7102 -a 0 -x {10.0 9.0 3546 ------- null} h -t 4.02046 -s 7 -d 8 -p ack -e 40 -c 0 -i 7102 -a 0 -x {10.0 9.0 3546 ------- null} r -t 4.02061 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7101 -a 0 -x {9.0 10.0 3555 ------- null} + -t 4.02061 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7101 -a 0 -x {9.0 10.0 3555 ------- null} h -t 4.02061 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7101 -a 0 -x {9.0 10.0 3555 ------- null} r -t 4.02061 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7087 -a 0 -x {9.0 10.0 3548 ------- null} + -t 4.02061 -s 10 -d 7 -p ack -e 40 -c 0 -i 7106 -a 0 -x {10.0 9.0 3548 ------- null} - -t 4.02061 -s 10 -d 7 -p ack -e 40 -c 0 -i 7106 -a 0 -x {10.0 9.0 3548 ------- null} h -t 4.02061 -s 10 -d 7 -p ack -e 40 -c 0 -i 7106 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.02107 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7093 -a 0 -x {9.0 10.0 3551 ------- null} - -t 4.02107 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7093 -a 0 -x {9.0 10.0 3551 ------- null} h -t 4.02107 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7093 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.02112 -s 0 -d 9 -p ack -e 40 -c 0 -i 7096 -a 0 -x {10.0 9.0 3543 ------- null} + -t 4.02112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7107 -a 0 -x {9.0 10.0 3558 ------- null} - -t 4.02112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7107 -a 0 -x {9.0 10.0 3558 ------- null} h -t 4.02112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7107 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.02138 -s 0 -d 9 -p ack -e 40 -c 0 -i 7100 -a 0 -x {10.0 9.0 3545 ------- null} - -t 4.02138 -s 0 -d 9 -p ack -e 40 -c 0 -i 7100 -a 0 -x {10.0 9.0 3545 ------- null} h -t 4.02138 -s 0 -d 9 -p ack -e 40 -c 0 -i 7100 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.02155 -s 10 -d 7 -p ack -e 40 -c 0 -i 7104 -a 0 -x {10.0 9.0 3547 ------- null} + -t 4.02155 -s 7 -d 0 -p ack -e 40 -c 0 -i 7104 -a 0 -x {10.0 9.0 3547 ------- null} h -t 4.02155 -s 7 -d 8 -p ack -e 40 -c 0 -i 7104 -a 0 -x {10.0 9.0 3547 ------- null} r -t 4.0217 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7089 -a 0 -x {9.0 10.0 3549 ------- null} + -t 4.0217 -s 10 -d 7 -p ack -e 40 -c 0 -i 7108 -a 0 -x {10.0 9.0 3549 ------- null} - -t 4.0217 -s 10 -d 7 -p ack -e 40 -c 0 -i 7108 -a 0 -x {10.0 9.0 3549 ------- null} h -t 4.0217 -s 10 -d 7 -p ack -e 40 -c 0 -i 7108 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.02178 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7103 -a 0 -x {9.0 10.0 3556 ------- null} + -t 4.02178 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7103 -a 0 -x {9.0 10.0 3556 ------- null} h -t 4.02178 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7103 -a 0 -x {9.0 10.0 3556 ------- null} r -t 4.02218 -s 0 -d 9 -p ack -e 40 -c 0 -i 7098 -a 0 -x {10.0 9.0 3544 ------- null} + -t 4.02218 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7109 -a 0 -x {9.0 10.0 3559 ------- null} - -t 4.02218 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7109 -a 0 -x {9.0 10.0 3559 ------- null} h -t 4.02218 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7109 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.02221 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7095 -a 0 -x {9.0 10.0 3552 ------- null} - -t 4.02221 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7095 -a 0 -x {9.0 10.0 3552 ------- null} h -t 4.02221 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7095 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.02235 -s 0 -d 9 -p ack -e 40 -c 0 -i 7102 -a 0 -x {10.0 9.0 3546 ------- null} - -t 4.02235 -s 0 -d 9 -p ack -e 40 -c 0 -i 7102 -a 0 -x {10.0 9.0 3546 ------- null} h -t 4.02235 -s 0 -d 9 -p ack -e 40 -c 0 -i 7102 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.02264 -s 10 -d 7 -p ack -e 40 -c 0 -i 7106 -a 0 -x {10.0 9.0 3548 ------- null} + -t 4.02264 -s 7 -d 0 -p ack -e 40 -c 0 -i 7106 -a 0 -x {10.0 9.0 3548 ------- null} h -t 4.02264 -s 7 -d 8 -p ack -e 40 -c 0 -i 7106 -a 0 -x {10.0 9.0 3548 ------- null} r -t 4.02278 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7091 -a 0 -x {9.0 10.0 3550 ------- null} + -t 4.02278 -s 10 -d 7 -p ack -e 40 -c 0 -i 7110 -a 0 -x {10.0 9.0 3550 ------- null} - -t 4.02278 -s 10 -d 7 -p ack -e 40 -c 0 -i 7110 -a 0 -x {10.0 9.0 3550 ------- null} h -t 4.02278 -s 10 -d 7 -p ack -e 40 -c 0 -i 7110 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.02282 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7105 -a 0 -x {9.0 10.0 3557 ------- null} + -t 4.02282 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7105 -a 0 -x {9.0 10.0 3557 ------- null} h -t 4.02282 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7105 -a 0 -x {9.0 10.0 3557 ------- null} + -t 4.0233 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7097 -a 0 -x {9.0 10.0 3553 ------- null} - -t 4.0233 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7097 -a 0 -x {9.0 10.0 3553 ------- null} h -t 4.0233 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7097 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.02341 -s 0 -d 9 -p ack -e 40 -c 0 -i 7100 -a 0 -x {10.0 9.0 3545 ------- null} + -t 4.02341 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7111 -a 0 -x {9.0 10.0 3560 ------- null} - -t 4.02341 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7111 -a 0 -x {9.0 10.0 3560 ------- null} h -t 4.02341 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7111 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.02347 -s 0 -d 9 -p ack -e 40 -c 0 -i 7104 -a 0 -x {10.0 9.0 3547 ------- null} - -t 4.02347 -s 0 -d 9 -p ack -e 40 -c 0 -i 7104 -a 0 -x {10.0 9.0 3547 ------- null} h -t 4.02347 -s 0 -d 9 -p ack -e 40 -c 0 -i 7104 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.02373 -s 10 -d 7 -p ack -e 40 -c 0 -i 7108 -a 0 -x {10.0 9.0 3549 ------- null} + -t 4.02373 -s 7 -d 0 -p ack -e 40 -c 0 -i 7108 -a 0 -x {10.0 9.0 3549 ------- null} h -t 4.02373 -s 7 -d 8 -p ack -e 40 -c 0 -i 7108 -a 0 -x {10.0 9.0 3549 ------- null} r -t 4.02387 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7093 -a 0 -x {9.0 10.0 3551 ------- null} + -t 4.02387 -s 10 -d 7 -p ack -e 40 -c 0 -i 7112 -a 0 -x {10.0 9.0 3551 ------- null} - -t 4.02387 -s 10 -d 7 -p ack -e 40 -c 0 -i 7112 -a 0 -x {10.0 9.0 3551 ------- null} h -t 4.02387 -s 10 -d 7 -p ack -e 40 -c 0 -i 7112 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.02392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7107 -a 0 -x {9.0 10.0 3558 ------- null} + -t 4.02392 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7107 -a 0 -x {9.0 10.0 3558 ------- null} h -t 4.02392 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7107 -a 0 -x {9.0 10.0 3558 ------- null} r -t 4.02438 -s 0 -d 9 -p ack -e 40 -c 0 -i 7102 -a 0 -x {10.0 9.0 3546 ------- null} + -t 4.02438 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7113 -a 0 -x {9.0 10.0 3561 ------- null} - -t 4.02438 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7113 -a 0 -x {9.0 10.0 3561 ------- null} h -t 4.02438 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7113 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.02438 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7099 -a 0 -x {9.0 10.0 3554 ------- null} - -t 4.02438 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7099 -a 0 -x {9.0 10.0 3554 ------- null} h -t 4.02438 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7099 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.02453 -s 0 -d 9 -p ack -e 40 -c 0 -i 7106 -a 0 -x {10.0 9.0 3548 ------- null} - -t 4.02453 -s 0 -d 9 -p ack -e 40 -c 0 -i 7106 -a 0 -x {10.0 9.0 3548 ------- null} h -t 4.02453 -s 0 -d 9 -p ack -e 40 -c 0 -i 7106 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.02482 -s 10 -d 7 -p ack -e 40 -c 0 -i 7110 -a 0 -x {10.0 9.0 3550 ------- null} + -t 4.02482 -s 7 -d 0 -p ack -e 40 -c 0 -i 7110 -a 0 -x {10.0 9.0 3550 ------- null} h -t 4.02482 -s 7 -d 8 -p ack -e 40 -c 0 -i 7110 -a 0 -x {10.0 9.0 3550 ------- null} r -t 4.02498 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7109 -a 0 -x {9.0 10.0 3559 ------- null} + -t 4.02498 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7109 -a 0 -x {9.0 10.0 3559 ------- null} h -t 4.02498 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7109 -a 0 -x {9.0 10.0 3559 ------- null} r -t 4.02501 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7095 -a 0 -x {9.0 10.0 3552 ------- null} + -t 4.02501 -s 10 -d 7 -p ack -e 40 -c 0 -i 7114 -a 0 -x {10.0 9.0 3552 ------- null} - -t 4.02501 -s 10 -d 7 -p ack -e 40 -c 0 -i 7114 -a 0 -x {10.0 9.0 3552 ------- null} h -t 4.02501 -s 10 -d 7 -p ack -e 40 -c 0 -i 7114 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.02547 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7101 -a 0 -x {9.0 10.0 3555 ------- null} - -t 4.02547 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7101 -a 0 -x {9.0 10.0 3555 ------- null} h -t 4.02547 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7101 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.0255 -s 0 -d 9 -p ack -e 40 -c 0 -i 7104 -a 0 -x {10.0 9.0 3547 ------- null} + -t 4.0255 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7115 -a 0 -x {9.0 10.0 3562 ------- null} - -t 4.0255 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7115 -a 0 -x {9.0 10.0 3562 ------- null} h -t 4.0255 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7115 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.02563 -s 0 -d 9 -p ack -e 40 -c 0 -i 7108 -a 0 -x {10.0 9.0 3549 ------- null} - -t 4.02563 -s 0 -d 9 -p ack -e 40 -c 0 -i 7108 -a 0 -x {10.0 9.0 3549 ------- null} h -t 4.02563 -s 0 -d 9 -p ack -e 40 -c 0 -i 7108 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.0259 -s 10 -d 7 -p ack -e 40 -c 0 -i 7112 -a 0 -x {10.0 9.0 3551 ------- null} + -t 4.0259 -s 7 -d 0 -p ack -e 40 -c 0 -i 7112 -a 0 -x {10.0 9.0 3551 ------- null} h -t 4.0259 -s 7 -d 8 -p ack -e 40 -c 0 -i 7112 -a 0 -x {10.0 9.0 3551 ------- null} r -t 4.0261 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7097 -a 0 -x {9.0 10.0 3553 ------- null} + -t 4.0261 -s 10 -d 7 -p ack -e 40 -c 0 -i 7116 -a 0 -x {10.0 9.0 3553 ------- null} - -t 4.0261 -s 10 -d 7 -p ack -e 40 -c 0 -i 7116 -a 0 -x {10.0 9.0 3553 ------- null} h -t 4.0261 -s 10 -d 7 -p ack -e 40 -c 0 -i 7116 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.02621 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7111 -a 0 -x {9.0 10.0 3560 ------- null} + -t 4.02621 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7111 -a 0 -x {9.0 10.0 3560 ------- null} h -t 4.02621 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7111 -a 0 -x {9.0 10.0 3560 ------- null} r -t 4.02656 -s 0 -d 9 -p ack -e 40 -c 0 -i 7106 -a 0 -x {10.0 9.0 3548 ------- null} + -t 4.02656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7117 -a 0 -x {9.0 10.0 3563 ------- null} - -t 4.02656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7117 -a 0 -x {9.0 10.0 3563 ------- null} h -t 4.02656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7117 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.02656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7103 -a 0 -x {9.0 10.0 3556 ------- null} - -t 4.02656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7103 -a 0 -x {9.0 10.0 3556 ------- null} h -t 4.02656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7103 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.0267 -s 0 -d 9 -p ack -e 40 -c 0 -i 7110 -a 0 -x {10.0 9.0 3550 ------- null} - -t 4.0267 -s 0 -d 9 -p ack -e 40 -c 0 -i 7110 -a 0 -x {10.0 9.0 3550 ------- null} h -t 4.0267 -s 0 -d 9 -p ack -e 40 -c 0 -i 7110 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.02704 -s 10 -d 7 -p ack -e 40 -c 0 -i 7114 -a 0 -x {10.0 9.0 3552 ------- null} + -t 4.02704 -s 7 -d 0 -p ack -e 40 -c 0 -i 7114 -a 0 -x {10.0 9.0 3552 ------- null} h -t 4.02704 -s 7 -d 8 -p ack -e 40 -c 0 -i 7114 -a 0 -x {10.0 9.0 3552 ------- null} r -t 4.02718 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7113 -a 0 -x {9.0 10.0 3561 ------- null} + -t 4.02718 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7113 -a 0 -x {9.0 10.0 3561 ------- null} h -t 4.02718 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7113 -a 0 -x {9.0 10.0 3561 ------- null} r -t 4.02718 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7099 -a 0 -x {9.0 10.0 3554 ------- null} + -t 4.02718 -s 10 -d 7 -p ack -e 40 -c 0 -i 7118 -a 0 -x {10.0 9.0 3554 ------- null} - -t 4.02718 -s 10 -d 7 -p ack -e 40 -c 0 -i 7118 -a 0 -x {10.0 9.0 3554 ------- null} h -t 4.02718 -s 10 -d 7 -p ack -e 40 -c 0 -i 7118 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.02765 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7105 -a 0 -x {9.0 10.0 3557 ------- null} - -t 4.02765 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7105 -a 0 -x {9.0 10.0 3557 ------- null} h -t 4.02765 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7105 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.02766 -s 0 -d 9 -p ack -e 40 -c 0 -i 7108 -a 0 -x {10.0 9.0 3549 ------- null} + -t 4.02766 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7119 -a 0 -x {9.0 10.0 3564 ------- null} - -t 4.02766 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7119 -a 0 -x {9.0 10.0 3564 ------- null} h -t 4.02766 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7119 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.02779 -s 0 -d 9 -p ack -e 40 -c 0 -i 7112 -a 0 -x {10.0 9.0 3551 ------- null} - -t 4.02779 -s 0 -d 9 -p ack -e 40 -c 0 -i 7112 -a 0 -x {10.0 9.0 3551 ------- null} h -t 4.02779 -s 0 -d 9 -p ack -e 40 -c 0 -i 7112 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.02813 -s 10 -d 7 -p ack -e 40 -c 0 -i 7116 -a 0 -x {10.0 9.0 3553 ------- null} + -t 4.02813 -s 7 -d 0 -p ack -e 40 -c 0 -i 7116 -a 0 -x {10.0 9.0 3553 ------- null} h -t 4.02813 -s 7 -d 8 -p ack -e 40 -c 0 -i 7116 -a 0 -x {10.0 9.0 3553 ------- null} r -t 4.02827 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7101 -a 0 -x {9.0 10.0 3555 ------- null} + -t 4.02827 -s 10 -d 7 -p ack -e 40 -c 0 -i 7120 -a 0 -x {10.0 9.0 3555 ------- null} - -t 4.02827 -s 10 -d 7 -p ack -e 40 -c 0 -i 7120 -a 0 -x {10.0 9.0 3555 ------- null} h -t 4.02827 -s 10 -d 7 -p ack -e 40 -c 0 -i 7120 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.0283 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7115 -a 0 -x {9.0 10.0 3562 ------- null} + -t 4.0283 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7115 -a 0 -x {9.0 10.0 3562 ------- null} h -t 4.0283 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7115 -a 0 -x {9.0 10.0 3562 ------- null} r -t 4.02874 -s 0 -d 9 -p ack -e 40 -c 0 -i 7110 -a 0 -x {10.0 9.0 3550 ------- null} + -t 4.02874 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7121 -a 0 -x {9.0 10.0 3565 ------- null} - -t 4.02874 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7121 -a 0 -x {9.0 10.0 3565 ------- null} h -t 4.02874 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7121 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.02874 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7107 -a 0 -x {9.0 10.0 3558 ------- null} - -t 4.02874 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7107 -a 0 -x {9.0 10.0 3558 ------- null} h -t 4.02874 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7107 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.02902 -s 0 -d 9 -p ack -e 40 -c 0 -i 7114 -a 0 -x {10.0 9.0 3552 ------- null} - -t 4.02902 -s 0 -d 9 -p ack -e 40 -c 0 -i 7114 -a 0 -x {10.0 9.0 3552 ------- null} h -t 4.02902 -s 0 -d 9 -p ack -e 40 -c 0 -i 7114 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.02922 -s 10 -d 7 -p ack -e 40 -c 0 -i 7118 -a 0 -x {10.0 9.0 3554 ------- null} + -t 4.02922 -s 7 -d 0 -p ack -e 40 -c 0 -i 7118 -a 0 -x {10.0 9.0 3554 ------- null} h -t 4.02922 -s 7 -d 8 -p ack -e 40 -c 0 -i 7118 -a 0 -x {10.0 9.0 3554 ------- null} r -t 4.02936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7117 -a 0 -x {9.0 10.0 3563 ------- null} + -t 4.02936 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7117 -a 0 -x {9.0 10.0 3563 ------- null} h -t 4.02936 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7117 -a 0 -x {9.0 10.0 3563 ------- null} r -t 4.02936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7103 -a 0 -x {9.0 10.0 3556 ------- null} + -t 4.02936 -s 10 -d 7 -p ack -e 40 -c 0 -i 7122 -a 0 -x {10.0 9.0 3556 ------- null} - -t 4.02936 -s 10 -d 7 -p ack -e 40 -c 0 -i 7122 -a 0 -x {10.0 9.0 3556 ------- null} h -t 4.02936 -s 10 -d 7 -p ack -e 40 -c 0 -i 7122 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.02982 -s 0 -d 9 -p ack -e 40 -c 0 -i 7112 -a 0 -x {10.0 9.0 3551 ------- null} + -t 4.02982 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7123 -a 0 -x {9.0 10.0 3566 ------- null} - -t 4.02982 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7123 -a 0 -x {9.0 10.0 3566 ------- null} h -t 4.02982 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7123 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.03008 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7109 -a 0 -x {9.0 10.0 3559 ------- null} - -t 4.03008 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7109 -a 0 -x {9.0 10.0 3559 ------- null} h -t 4.03008 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7109 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.0303 -s 10 -d 7 -p ack -e 40 -c 0 -i 7120 -a 0 -x {10.0 9.0 3555 ------- null} + -t 4.0303 -s 7 -d 0 -p ack -e 40 -c 0 -i 7120 -a 0 -x {10.0 9.0 3555 ------- null} h -t 4.0303 -s 7 -d 8 -p ack -e 40 -c 0 -i 7120 -a 0 -x {10.0 9.0 3555 ------- null} + -t 4.03037 -s 0 -d 9 -p ack -e 40 -c 0 -i 7116 -a 0 -x {10.0 9.0 3553 ------- null} - -t 4.03037 -s 0 -d 9 -p ack -e 40 -c 0 -i 7116 -a 0 -x {10.0 9.0 3553 ------- null} h -t 4.03037 -s 0 -d 9 -p ack -e 40 -c 0 -i 7116 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.03045 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7105 -a 0 -x {9.0 10.0 3557 ------- null} + -t 4.03045 -s 10 -d 7 -p ack -e 40 -c 0 -i 7124 -a 0 -x {10.0 9.0 3557 ------- null} - -t 4.03045 -s 10 -d 7 -p ack -e 40 -c 0 -i 7124 -a 0 -x {10.0 9.0 3557 ------- null} h -t 4.03045 -s 10 -d 7 -p ack -e 40 -c 0 -i 7124 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.03046 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7119 -a 0 -x {9.0 10.0 3564 ------- null} + -t 4.03046 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7119 -a 0 -x {9.0 10.0 3564 ------- null} h -t 4.03046 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7119 -a 0 -x {9.0 10.0 3564 ------- null} r -t 4.03106 -s 0 -d 9 -p ack -e 40 -c 0 -i 7114 -a 0 -x {10.0 9.0 3552 ------- null} + -t 4.03106 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7125 -a 0 -x {9.0 10.0 3567 ------- null} - -t 4.03106 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7125 -a 0 -x {9.0 10.0 3567 ------- null} h -t 4.03106 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7125 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.0313 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7111 -a 0 -x {9.0 10.0 3560 ------- null} - -t 4.0313 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7111 -a 0 -x {9.0 10.0 3560 ------- null} h -t 4.0313 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7111 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.03139 -s 10 -d 7 -p ack -e 40 -c 0 -i 7122 -a 0 -x {10.0 9.0 3556 ------- null} + -t 4.03139 -s 7 -d 0 -p ack -e 40 -c 0 -i 7122 -a 0 -x {10.0 9.0 3556 ------- null} h -t 4.03139 -s 7 -d 8 -p ack -e 40 -c 0 -i 7122 -a 0 -x {10.0 9.0 3556 ------- null} + -t 4.0315 -s 0 -d 9 -p ack -e 40 -c 0 -i 7118 -a 0 -x {10.0 9.0 3554 ------- null} - -t 4.0315 -s 0 -d 9 -p ack -e 40 -c 0 -i 7118 -a 0 -x {10.0 9.0 3554 ------- null} h -t 4.0315 -s 0 -d 9 -p ack -e 40 -c 0 -i 7118 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.03154 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7121 -a 0 -x {9.0 10.0 3565 ------- null} + -t 4.03154 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7121 -a 0 -x {9.0 10.0 3565 ------- null} h -t 4.03154 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7121 -a 0 -x {9.0 10.0 3565 ------- null} r -t 4.03154 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7107 -a 0 -x {9.0 10.0 3558 ------- null} + -t 4.03154 -s 10 -d 7 -p ack -e 40 -c 0 -i 7126 -a 0 -x {10.0 9.0 3558 ------- null} - -t 4.03154 -s 10 -d 7 -p ack -e 40 -c 0 -i 7126 -a 0 -x {10.0 9.0 3558 ------- null} h -t 4.03154 -s 10 -d 7 -p ack -e 40 -c 0 -i 7126 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.03238 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7113 -a 0 -x {9.0 10.0 3561 ------- null} - -t 4.03238 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7113 -a 0 -x {9.0 10.0 3561 ------- null} h -t 4.03238 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7113 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.0324 -s 0 -d 9 -p ack -e 40 -c 0 -i 7116 -a 0 -x {10.0 9.0 3553 ------- null} + -t 4.0324 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7127 -a 0 -x {9.0 10.0 3568 ------- null} - -t 4.0324 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7127 -a 0 -x {9.0 10.0 3568 ------- null} h -t 4.0324 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7127 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.03248 -s 10 -d 7 -p ack -e 40 -c 0 -i 7124 -a 0 -x {10.0 9.0 3557 ------- null} + -t 4.03248 -s 7 -d 0 -p ack -e 40 -c 0 -i 7124 -a 0 -x {10.0 9.0 3557 ------- null} h -t 4.03248 -s 7 -d 8 -p ack -e 40 -c 0 -i 7124 -a 0 -x {10.0 9.0 3557 ------- null} + -t 4.03253 -s 0 -d 9 -p ack -e 40 -c 0 -i 7120 -a 0 -x {10.0 9.0 3555 ------- null} - -t 4.03253 -s 0 -d 9 -p ack -e 40 -c 0 -i 7120 -a 0 -x {10.0 9.0 3555 ------- null} h -t 4.03253 -s 0 -d 9 -p ack -e 40 -c 0 -i 7120 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.03262 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7123 -a 0 -x {9.0 10.0 3566 ------- null} + -t 4.03262 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7123 -a 0 -x {9.0 10.0 3566 ------- null} h -t 4.03262 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7123 -a 0 -x {9.0 10.0 3566 ------- null} r -t 4.03288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7109 -a 0 -x {9.0 10.0 3559 ------- null} + -t 4.03288 -s 10 -d 7 -p ack -e 40 -c 0 -i 7128 -a 0 -x {10.0 9.0 3559 ------- null} - -t 4.03288 -s 10 -d 7 -p ack -e 40 -c 0 -i 7128 -a 0 -x {10.0 9.0 3559 ------- null} h -t 4.03288 -s 10 -d 7 -p ack -e 40 -c 0 -i 7128 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.03347 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7115 -a 0 -x {9.0 10.0 3562 ------- null} - -t 4.03347 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7115 -a 0 -x {9.0 10.0 3562 ------- null} h -t 4.03347 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7115 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.03354 -s 0 -d 9 -p ack -e 40 -c 0 -i 7118 -a 0 -x {10.0 9.0 3554 ------- null} + -t 4.03354 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7129 -a 0 -x {9.0 10.0 3569 ------- null} - -t 4.03354 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7129 -a 0 -x {9.0 10.0 3569 ------- null} h -t 4.03354 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7129 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.03357 -s 0 -d 9 -p ack -e 40 -c 0 -i 7122 -a 0 -x {10.0 9.0 3556 ------- null} - -t 4.03357 -s 0 -d 9 -p ack -e 40 -c 0 -i 7122 -a 0 -x {10.0 9.0 3556 ------- null} h -t 4.03357 -s 0 -d 9 -p ack -e 40 -c 0 -i 7122 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.03357 -s 10 -d 7 -p ack -e 40 -c 0 -i 7126 -a 0 -x {10.0 9.0 3558 ------- null} + -t 4.03357 -s 7 -d 0 -p ack -e 40 -c 0 -i 7126 -a 0 -x {10.0 9.0 3558 ------- null} h -t 4.03357 -s 7 -d 8 -p ack -e 40 -c 0 -i 7126 -a 0 -x {10.0 9.0 3558 ------- null} r -t 4.03386 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7125 -a 0 -x {9.0 10.0 3567 ------- null} + -t 4.03386 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7125 -a 0 -x {9.0 10.0 3567 ------- null} h -t 4.03386 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7125 -a 0 -x {9.0 10.0 3567 ------- null} r -t 4.0341 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7111 -a 0 -x {9.0 10.0 3560 ------- null} + -t 4.0341 -s 10 -d 7 -p ack -e 40 -c 0 -i 7130 -a 0 -x {10.0 9.0 3560 ------- null} - -t 4.0341 -s 10 -d 7 -p ack -e 40 -c 0 -i 7130 -a 0 -x {10.0 9.0 3560 ------- null} h -t 4.0341 -s 10 -d 7 -p ack -e 40 -c 0 -i 7130 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.03456 -s 0 -d 9 -p ack -e 40 -c 0 -i 7120 -a 0 -x {10.0 9.0 3555 ------- null} + -t 4.03456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7131 -a 0 -x {9.0 10.0 3570 ------- null} - -t 4.03456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7131 -a 0 -x {9.0 10.0 3570 ------- null} h -t 4.03456 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7131 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.03456 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7117 -a 0 -x {9.0 10.0 3563 ------- null} - -t 4.03456 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7117 -a 0 -x {9.0 10.0 3563 ------- null} h -t 4.03456 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7117 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.03485 -s 0 -d 9 -p ack -e 40 -c 0 -i 7124 -a 0 -x {10.0 9.0 3557 ------- null} - -t 4.03485 -s 0 -d 9 -p ack -e 40 -c 0 -i 7124 -a 0 -x {10.0 9.0 3557 ------- null} h -t 4.03485 -s 0 -d 9 -p ack -e 40 -c 0 -i 7124 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.03491 -s 10 -d 7 -p ack -e 40 -c 0 -i 7128 -a 0 -x {10.0 9.0 3559 ------- null} + -t 4.03491 -s 7 -d 0 -p ack -e 40 -c 0 -i 7128 -a 0 -x {10.0 9.0 3559 ------- null} h -t 4.03491 -s 7 -d 8 -p ack -e 40 -c 0 -i 7128 -a 0 -x {10.0 9.0 3559 ------- null} r -t 4.03518 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7113 -a 0 -x {9.0 10.0 3561 ------- null} + -t 4.03518 -s 10 -d 7 -p ack -e 40 -c 0 -i 7132 -a 0 -x {10.0 9.0 3561 ------- null} - -t 4.03518 -s 10 -d 7 -p ack -e 40 -c 0 -i 7132 -a 0 -x {10.0 9.0 3561 ------- null} h -t 4.03518 -s 10 -d 7 -p ack -e 40 -c 0 -i 7132 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.0352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7127 -a 0 -x {9.0 10.0 3568 ------- null} + -t 4.0352 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7127 -a 0 -x {9.0 10.0 3568 ------- null} h -t 4.0352 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7127 -a 0 -x {9.0 10.0 3568 ------- null} r -t 4.0356 -s 0 -d 9 -p ack -e 40 -c 0 -i 7122 -a 0 -x {10.0 9.0 3556 ------- null} + -t 4.0356 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7133 -a 0 -x {9.0 10.0 3571 ------- null} - -t 4.0356 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7133 -a 0 -x {9.0 10.0 3571 ------- null} h -t 4.0356 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7133 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.03592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7119 -a 0 -x {9.0 10.0 3564 ------- null} - -t 4.03592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7119 -a 0 -x {9.0 10.0 3564 ------- null} h -t 4.03592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7119 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.03613 -s 10 -d 7 -p ack -e 40 -c 0 -i 7130 -a 0 -x {10.0 9.0 3560 ------- null} + -t 4.03613 -s 7 -d 0 -p ack -e 40 -c 0 -i 7130 -a 0 -x {10.0 9.0 3560 ------- null} h -t 4.03613 -s 7 -d 8 -p ack -e 40 -c 0 -i 7130 -a 0 -x {10.0 9.0 3560 ------- null} + -t 4.03614 -s 0 -d 9 -p ack -e 40 -c 0 -i 7126 -a 0 -x {10.0 9.0 3558 ------- null} - -t 4.03614 -s 0 -d 9 -p ack -e 40 -c 0 -i 7126 -a 0 -x {10.0 9.0 3558 ------- null} h -t 4.03614 -s 0 -d 9 -p ack -e 40 -c 0 -i 7126 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.03627 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7115 -a 0 -x {9.0 10.0 3562 ------- null} + -t 4.03627 -s 10 -d 7 -p ack -e 40 -c 0 -i 7134 -a 0 -x {10.0 9.0 3562 ------- null} - -t 4.03627 -s 10 -d 7 -p ack -e 40 -c 0 -i 7134 -a 0 -x {10.0 9.0 3562 ------- null} h -t 4.03627 -s 10 -d 7 -p ack -e 40 -c 0 -i 7134 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.03634 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7129 -a 0 -x {9.0 10.0 3569 ------- null} + -t 4.03634 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7129 -a 0 -x {9.0 10.0 3569 ------- null} h -t 4.03634 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7129 -a 0 -x {9.0 10.0 3569 ------- null} r -t 4.03688 -s 0 -d 9 -p ack -e 40 -c 0 -i 7124 -a 0 -x {10.0 9.0 3557 ------- null} + -t 4.03688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7135 -a 0 -x {9.0 10.0 3572 ------- null} - -t 4.03688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7135 -a 0 -x {9.0 10.0 3572 ------- null} h -t 4.03688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7135 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.03701 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7121 -a 0 -x {9.0 10.0 3565 ------- null} - -t 4.03701 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7121 -a 0 -x {9.0 10.0 3565 ------- null} h -t 4.03701 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7121 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.0371 -s 0 -d 9 -p ack -e 40 -c 0 -i 7128 -a 0 -x {10.0 9.0 3559 ------- null} - -t 4.0371 -s 0 -d 9 -p ack -e 40 -c 0 -i 7128 -a 0 -x {10.0 9.0 3559 ------- null} h -t 4.0371 -s 0 -d 9 -p ack -e 40 -c 0 -i 7128 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.03722 -s 10 -d 7 -p ack -e 40 -c 0 -i 7132 -a 0 -x {10.0 9.0 3561 ------- null} + -t 4.03722 -s 7 -d 0 -p ack -e 40 -c 0 -i 7132 -a 0 -x {10.0 9.0 3561 ------- null} h -t 4.03722 -s 7 -d 8 -p ack -e 40 -c 0 -i 7132 -a 0 -x {10.0 9.0 3561 ------- null} r -t 4.03736 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7131 -a 0 -x {9.0 10.0 3570 ------- null} + -t 4.03736 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7131 -a 0 -x {9.0 10.0 3570 ------- null} h -t 4.03736 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7131 -a 0 -x {9.0 10.0 3570 ------- null} r -t 4.03736 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7117 -a 0 -x {9.0 10.0 3563 ------- null} + -t 4.03736 -s 10 -d 7 -p ack -e 40 -c 0 -i 7136 -a 0 -x {10.0 9.0 3563 ------- null} - -t 4.03736 -s 10 -d 7 -p ack -e 40 -c 0 -i 7136 -a 0 -x {10.0 9.0 3563 ------- null} h -t 4.03736 -s 10 -d 7 -p ack -e 40 -c 0 -i 7136 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.0381 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7123 -a 0 -x {9.0 10.0 3566 ------- null} - -t 4.0381 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7123 -a 0 -x {9.0 10.0 3566 ------- null} h -t 4.0381 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7123 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.03818 -s 0 -d 9 -p ack -e 40 -c 0 -i 7126 -a 0 -x {10.0 9.0 3558 ------- null} + -t 4.03818 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7137 -a 0 -x {9.0 10.0 3573 ------- null} - -t 4.03818 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7137 -a 0 -x {9.0 10.0 3573 ------- null} h -t 4.03818 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7137 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.03818 -s 0 -d 9 -p ack -e 40 -c 0 -i 7130 -a 0 -x {10.0 9.0 3560 ------- null} - -t 4.03818 -s 0 -d 9 -p ack -e 40 -c 0 -i 7130 -a 0 -x {10.0 9.0 3560 ------- null} h -t 4.03818 -s 0 -d 9 -p ack -e 40 -c 0 -i 7130 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.0383 -s 10 -d 7 -p ack -e 40 -c 0 -i 7134 -a 0 -x {10.0 9.0 3562 ------- null} + -t 4.0383 -s 7 -d 0 -p ack -e 40 -c 0 -i 7134 -a 0 -x {10.0 9.0 3562 ------- null} h -t 4.0383 -s 7 -d 8 -p ack -e 40 -c 0 -i 7134 -a 0 -x {10.0 9.0 3562 ------- null} r -t 4.0384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7133 -a 0 -x {9.0 10.0 3571 ------- null} + -t 4.0384 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7133 -a 0 -x {9.0 10.0 3571 ------- null} h -t 4.0384 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7133 -a 0 -x {9.0 10.0 3571 ------- null} r -t 4.03872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7119 -a 0 -x {9.0 10.0 3564 ------- null} + -t 4.03872 -s 10 -d 7 -p ack -e 40 -c 0 -i 7138 -a 0 -x {10.0 9.0 3564 ------- null} - -t 4.03872 -s 10 -d 7 -p ack -e 40 -c 0 -i 7138 -a 0 -x {10.0 9.0 3564 ------- null} h -t 4.03872 -s 10 -d 7 -p ack -e 40 -c 0 -i 7138 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.03914 -s 0 -d 9 -p ack -e 40 -c 0 -i 7128 -a 0 -x {10.0 9.0 3559 ------- null} + -t 4.03914 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7139 -a 0 -x {9.0 10.0 3574 ------- null} - -t 4.03914 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7139 -a 0 -x {9.0 10.0 3574 ------- null} h -t 4.03914 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7139 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.03918 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7125 -a 0 -x {9.0 10.0 3567 ------- null} - -t 4.03918 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7125 -a 0 -x {9.0 10.0 3567 ------- null} h -t 4.03918 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7125 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.03939 -s 10 -d 7 -p ack -e 40 -c 0 -i 7136 -a 0 -x {10.0 9.0 3563 ------- null} + -t 4.03939 -s 7 -d 0 -p ack -e 40 -c 0 -i 7136 -a 0 -x {10.0 9.0 3563 ------- null} h -t 4.03939 -s 7 -d 8 -p ack -e 40 -c 0 -i 7136 -a 0 -x {10.0 9.0 3563 ------- null} + -t 4.03949 -s 0 -d 9 -p ack -e 40 -c 0 -i 7132 -a 0 -x {10.0 9.0 3561 ------- null} - -t 4.03949 -s 0 -d 9 -p ack -e 40 -c 0 -i 7132 -a 0 -x {10.0 9.0 3561 ------- null} h -t 4.03949 -s 0 -d 9 -p ack -e 40 -c 0 -i 7132 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.03968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7135 -a 0 -x {9.0 10.0 3572 ------- null} + -t 4.03968 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7135 -a 0 -x {9.0 10.0 3572 ------- null} h -t 4.03968 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7135 -a 0 -x {9.0 10.0 3572 ------- null} r -t 4.03981 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7121 -a 0 -x {9.0 10.0 3565 ------- null} + -t 4.03981 -s 10 -d 7 -p ack -e 40 -c 0 -i 7140 -a 0 -x {10.0 9.0 3565 ------- null} - -t 4.03981 -s 10 -d 7 -p ack -e 40 -c 0 -i 7140 -a 0 -x {10.0 9.0 3565 ------- null} h -t 4.03981 -s 10 -d 7 -p ack -e 40 -c 0 -i 7140 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.04021 -s 0 -d 9 -p ack -e 40 -c 0 -i 7130 -a 0 -x {10.0 9.0 3560 ------- null} + -t 4.04021 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7141 -a 0 -x {9.0 10.0 3575 ------- null} - -t 4.04021 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7141 -a 0 -x {9.0 10.0 3575 ------- null} h -t 4.04021 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7141 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.04037 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7127 -a 0 -x {9.0 10.0 3568 ------- null} - -t 4.04037 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7127 -a 0 -x {9.0 10.0 3568 ------- null} h -t 4.04037 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7127 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.04048 -s 0 -d 9 -p ack -e 40 -c 0 -i 7134 -a 0 -x {10.0 9.0 3562 ------- null} - -t 4.04048 -s 0 -d 9 -p ack -e 40 -c 0 -i 7134 -a 0 -x {10.0 9.0 3562 ------- null} h -t 4.04048 -s 0 -d 9 -p ack -e 40 -c 0 -i 7134 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.04075 -s 10 -d 7 -p ack -e 40 -c 0 -i 7138 -a 0 -x {10.0 9.0 3564 ------- null} + -t 4.04075 -s 7 -d 0 -p ack -e 40 -c 0 -i 7138 -a 0 -x {10.0 9.0 3564 ------- null} h -t 4.04075 -s 7 -d 8 -p ack -e 40 -c 0 -i 7138 -a 0 -x {10.0 9.0 3564 ------- null} r -t 4.0409 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7123 -a 0 -x {9.0 10.0 3566 ------- null} + -t 4.0409 -s 10 -d 7 -p ack -e 40 -c 0 -i 7142 -a 0 -x {10.0 9.0 3566 ------- null} - -t 4.0409 -s 10 -d 7 -p ack -e 40 -c 0 -i 7142 -a 0 -x {10.0 9.0 3566 ------- null} h -t 4.0409 -s 10 -d 7 -p ack -e 40 -c 0 -i 7142 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.04098 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7137 -a 0 -x {9.0 10.0 3573 ------- null} + -t 4.04098 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7137 -a 0 -x {9.0 10.0 3573 ------- null} h -t 4.04098 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7137 -a 0 -x {9.0 10.0 3573 ------- null} + -t 4.04146 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7129 -a 0 -x {9.0 10.0 3569 ------- null} - -t 4.04146 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7129 -a 0 -x {9.0 10.0 3569 ------- null} h -t 4.04146 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7129 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.04152 -s 0 -d 9 -p ack -e 40 -c 0 -i 7132 -a 0 -x {10.0 9.0 3561 ------- null} + -t 4.04152 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7143 -a 0 -x {9.0 10.0 3576 ------- null} - -t 4.04152 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7143 -a 0 -x {9.0 10.0 3576 ------- null} h -t 4.04152 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7143 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.04173 -s 0 -d 9 -p ack -e 40 -c 0 -i 7136 -a 0 -x {10.0 9.0 3563 ------- null} - -t 4.04173 -s 0 -d 9 -p ack -e 40 -c 0 -i 7136 -a 0 -x {10.0 9.0 3563 ------- null} h -t 4.04173 -s 0 -d 9 -p ack -e 40 -c 0 -i 7136 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.04184 -s 10 -d 7 -p ack -e 40 -c 0 -i 7140 -a 0 -x {10.0 9.0 3565 ------- null} + -t 4.04184 -s 7 -d 0 -p ack -e 40 -c 0 -i 7140 -a 0 -x {10.0 9.0 3565 ------- null} h -t 4.04184 -s 7 -d 8 -p ack -e 40 -c 0 -i 7140 -a 0 -x {10.0 9.0 3565 ------- null} r -t 4.04194 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7139 -a 0 -x {9.0 10.0 3574 ------- null} + -t 4.04194 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7139 -a 0 -x {9.0 10.0 3574 ------- null} h -t 4.04194 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7139 -a 0 -x {9.0 10.0 3574 ------- null} r -t 4.04198 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7125 -a 0 -x {9.0 10.0 3567 ------- null} + -t 4.04198 -s 10 -d 7 -p ack -e 40 -c 0 -i 7144 -a 0 -x {10.0 9.0 3567 ------- null} - -t 4.04198 -s 10 -d 7 -p ack -e 40 -c 0 -i 7144 -a 0 -x {10.0 9.0 3567 ------- null} h -t 4.04198 -s 10 -d 7 -p ack -e 40 -c 0 -i 7144 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.04251 -s 0 -d 9 -p ack -e 40 -c 0 -i 7134 -a 0 -x {10.0 9.0 3562 ------- null} + -t 4.04251 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7145 -a 0 -x {9.0 10.0 3577 ------- null} - -t 4.04251 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7145 -a 0 -x {9.0 10.0 3577 ------- null} h -t 4.04251 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7145 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.04261 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7131 -a 0 -x {9.0 10.0 3570 ------- null} - -t 4.04261 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7131 -a 0 -x {9.0 10.0 3570 ------- null} h -t 4.04261 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7131 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.0427 -s 0 -d 9 -p ack -e 40 -c 0 -i 7138 -a 0 -x {10.0 9.0 3564 ------- null} - -t 4.0427 -s 0 -d 9 -p ack -e 40 -c 0 -i 7138 -a 0 -x {10.0 9.0 3564 ------- null} h -t 4.0427 -s 0 -d 9 -p ack -e 40 -c 0 -i 7138 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.04293 -s 10 -d 7 -p ack -e 40 -c 0 -i 7142 -a 0 -x {10.0 9.0 3566 ------- null} + -t 4.04293 -s 7 -d 0 -p ack -e 40 -c 0 -i 7142 -a 0 -x {10.0 9.0 3566 ------- null} h -t 4.04293 -s 7 -d 8 -p ack -e 40 -c 0 -i 7142 -a 0 -x {10.0 9.0 3566 ------- null} r -t 4.04301 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7141 -a 0 -x {9.0 10.0 3575 ------- null} + -t 4.04301 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7141 -a 0 -x {9.0 10.0 3575 ------- null} h -t 4.04301 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7141 -a 0 -x {9.0 10.0 3575 ------- null} r -t 4.04317 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7127 -a 0 -x {9.0 10.0 3568 ------- null} + -t 4.04317 -s 10 -d 7 -p ack -e 40 -c 0 -i 7146 -a 0 -x {10.0 9.0 3568 ------- null} - -t 4.04317 -s 10 -d 7 -p ack -e 40 -c 0 -i 7146 -a 0 -x {10.0 9.0 3568 ------- null} h -t 4.04317 -s 10 -d 7 -p ack -e 40 -c 0 -i 7146 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.0437 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7133 -a 0 -x {9.0 10.0 3571 ------- null} - -t 4.0437 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7133 -a 0 -x {9.0 10.0 3571 ------- null} h -t 4.0437 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7133 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.04376 -s 0 -d 9 -p ack -e 40 -c 0 -i 7136 -a 0 -x {10.0 9.0 3563 ------- null} + -t 4.04376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7147 -a 0 -x {9.0 10.0 3578 ------- null} - -t 4.04376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7147 -a 0 -x {9.0 10.0 3578 ------- null} h -t 4.04376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7147 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.04384 -s 0 -d 9 -p ack -e 40 -c 0 -i 7140 -a 0 -x {10.0 9.0 3565 ------- null} - -t 4.04384 -s 0 -d 9 -p ack -e 40 -c 0 -i 7140 -a 0 -x {10.0 9.0 3565 ------- null} h -t 4.04384 -s 0 -d 9 -p ack -e 40 -c 0 -i 7140 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.04402 -s 10 -d 7 -p ack -e 40 -c 0 -i 7144 -a 0 -x {10.0 9.0 3567 ------- null} + -t 4.04402 -s 7 -d 0 -p ack -e 40 -c 0 -i 7144 -a 0 -x {10.0 9.0 3567 ------- null} h -t 4.04402 -s 7 -d 8 -p ack -e 40 -c 0 -i 7144 -a 0 -x {10.0 9.0 3567 ------- null} r -t 4.04426 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7129 -a 0 -x {9.0 10.0 3569 ------- null} + -t 4.04426 -s 10 -d 7 -p ack -e 40 -c 0 -i 7148 -a 0 -x {10.0 9.0 3569 ------- null} - -t 4.04426 -s 10 -d 7 -p ack -e 40 -c 0 -i 7148 -a 0 -x {10.0 9.0 3569 ------- null} h -t 4.04426 -s 10 -d 7 -p ack -e 40 -c 0 -i 7148 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.04432 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7143 -a 0 -x {9.0 10.0 3576 ------- null} + -t 4.04432 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7143 -a 0 -x {9.0 10.0 3576 ------- null} h -t 4.04432 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7143 -a 0 -x {9.0 10.0 3576 ------- null} r -t 4.04474 -s 0 -d 9 -p ack -e 40 -c 0 -i 7138 -a 0 -x {10.0 9.0 3564 ------- null} + -t 4.04474 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7149 -a 0 -x {9.0 10.0 3579 ------- null} - -t 4.04474 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7149 -a 0 -x {9.0 10.0 3579 ------- null} h -t 4.04474 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7149 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.04478 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7135 -a 0 -x {9.0 10.0 3572 ------- null} - -t 4.04478 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7135 -a 0 -x {9.0 10.0 3572 ------- null} h -t 4.04478 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7135 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.04498 -s 0 -d 9 -p ack -e 40 -c 0 -i 7142 -a 0 -x {10.0 9.0 3566 ------- null} - -t 4.04498 -s 0 -d 9 -p ack -e 40 -c 0 -i 7142 -a 0 -x {10.0 9.0 3566 ------- null} h -t 4.04498 -s 0 -d 9 -p ack -e 40 -c 0 -i 7142 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.0452 -s 10 -d 7 -p ack -e 40 -c 0 -i 7146 -a 0 -x {10.0 9.0 3568 ------- null} + -t 4.0452 -s 7 -d 0 -p ack -e 40 -c 0 -i 7146 -a 0 -x {10.0 9.0 3568 ------- null} h -t 4.0452 -s 7 -d 8 -p ack -e 40 -c 0 -i 7146 -a 0 -x {10.0 9.0 3568 ------- null} r -t 4.04531 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7145 -a 0 -x {9.0 10.0 3577 ------- null} + -t 4.04531 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7145 -a 0 -x {9.0 10.0 3577 ------- null} h -t 4.04531 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7145 -a 0 -x {9.0 10.0 3577 ------- null} r -t 4.04541 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7131 -a 0 -x {9.0 10.0 3570 ------- null} + -t 4.04541 -s 10 -d 7 -p ack -e 40 -c 0 -i 7150 -a 0 -x {10.0 9.0 3570 ------- null} - -t 4.04541 -s 10 -d 7 -p ack -e 40 -c 0 -i 7150 -a 0 -x {10.0 9.0 3570 ------- null} h -t 4.04541 -s 10 -d 7 -p ack -e 40 -c 0 -i 7150 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.04587 -s 0 -d 9 -p ack -e 40 -c 0 -i 7140 -a 0 -x {10.0 9.0 3565 ------- null} + -t 4.04587 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7151 -a 0 -x {9.0 10.0 3580 ------- null} - -t 4.04587 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7151 -a 0 -x {9.0 10.0 3580 ------- null} h -t 4.04587 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7151 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.04587 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7137 -a 0 -x {9.0 10.0 3573 ------- null} - -t 4.04587 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7137 -a 0 -x {9.0 10.0 3573 ------- null} h -t 4.04587 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7137 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.04611 -s 0 -d 9 -p ack -e 40 -c 0 -i 7144 -a 0 -x {10.0 9.0 3567 ------- null} - -t 4.04611 -s 0 -d 9 -p ack -e 40 -c 0 -i 7144 -a 0 -x {10.0 9.0 3567 ------- null} h -t 4.04611 -s 0 -d 9 -p ack -e 40 -c 0 -i 7144 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.04629 -s 10 -d 7 -p ack -e 40 -c 0 -i 7148 -a 0 -x {10.0 9.0 3569 ------- null} + -t 4.04629 -s 7 -d 0 -p ack -e 40 -c 0 -i 7148 -a 0 -x {10.0 9.0 3569 ------- null} h -t 4.04629 -s 7 -d 8 -p ack -e 40 -c 0 -i 7148 -a 0 -x {10.0 9.0 3569 ------- null} r -t 4.0465 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7133 -a 0 -x {9.0 10.0 3571 ------- null} + -t 4.0465 -s 10 -d 7 -p ack -e 40 -c 0 -i 7152 -a 0 -x {10.0 9.0 3571 ------- null} - -t 4.0465 -s 10 -d 7 -p ack -e 40 -c 0 -i 7152 -a 0 -x {10.0 9.0 3571 ------- null} h -t 4.0465 -s 10 -d 7 -p ack -e 40 -c 0 -i 7152 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.04656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7147 -a 0 -x {9.0 10.0 3578 ------- null} + -t 4.04656 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7147 -a 0 -x {9.0 10.0 3578 ------- null} h -t 4.04656 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7147 -a 0 -x {9.0 10.0 3578 ------- null} + -t 4.04696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7139 -a 0 -x {9.0 10.0 3574 ------- null} - -t 4.04696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7139 -a 0 -x {9.0 10.0 3574 ------- null} h -t 4.04696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7139 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.04701 -s 0 -d 9 -p ack -e 40 -c 0 -i 7142 -a 0 -x {10.0 9.0 3566 ------- null} + -t 4.04701 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7153 -a 0 -x {9.0 10.0 3581 ------- null} - -t 4.04701 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7153 -a 0 -x {9.0 10.0 3581 ------- null} h -t 4.04701 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7153 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.04712 -s 0 -d 9 -p ack -e 40 -c 0 -i 7146 -a 0 -x {10.0 9.0 3568 ------- null} - -t 4.04712 -s 0 -d 9 -p ack -e 40 -c 0 -i 7146 -a 0 -x {10.0 9.0 3568 ------- null} h -t 4.04712 -s 0 -d 9 -p ack -e 40 -c 0 -i 7146 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.04744 -s 10 -d 7 -p ack -e 40 -c 0 -i 7150 -a 0 -x {10.0 9.0 3570 ------- null} + -t 4.04744 -s 7 -d 0 -p ack -e 40 -c 0 -i 7150 -a 0 -x {10.0 9.0 3570 ------- null} h -t 4.04744 -s 7 -d 8 -p ack -e 40 -c 0 -i 7150 -a 0 -x {10.0 9.0 3570 ------- null} r -t 4.04754 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7149 -a 0 -x {9.0 10.0 3579 ------- null} + -t 4.04754 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7149 -a 0 -x {9.0 10.0 3579 ------- null} h -t 4.04754 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7149 -a 0 -x {9.0 10.0 3579 ------- null} r -t 4.04758 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7135 -a 0 -x {9.0 10.0 3572 ------- null} + -t 4.04758 -s 10 -d 7 -p ack -e 40 -c 0 -i 7154 -a 0 -x {10.0 9.0 3572 ------- null} - -t 4.04758 -s 10 -d 7 -p ack -e 40 -c 0 -i 7154 -a 0 -x {10.0 9.0 3572 ------- null} h -t 4.04758 -s 10 -d 7 -p ack -e 40 -c 0 -i 7154 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.04805 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7141 -a 0 -x {9.0 10.0 3575 ------- null} - -t 4.04805 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7141 -a 0 -x {9.0 10.0 3575 ------- null} h -t 4.04805 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7141 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.04814 -s 0 -d 9 -p ack -e 40 -c 0 -i 7144 -a 0 -x {10.0 9.0 3567 ------- null} + -t 4.04814 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7155 -a 0 -x {9.0 10.0 3582 ------- null} - -t 4.04814 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7155 -a 0 -x {9.0 10.0 3582 ------- null} h -t 4.04814 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7155 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.04819 -s 0 -d 9 -p ack -e 40 -c 0 -i 7148 -a 0 -x {10.0 9.0 3569 ------- null} - -t 4.04819 -s 0 -d 9 -p ack -e 40 -c 0 -i 7148 -a 0 -x {10.0 9.0 3569 ------- null} h -t 4.04819 -s 0 -d 9 -p ack -e 40 -c 0 -i 7148 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.04853 -s 10 -d 7 -p ack -e 40 -c 0 -i 7152 -a 0 -x {10.0 9.0 3571 ------- null} + -t 4.04853 -s 7 -d 0 -p ack -e 40 -c 0 -i 7152 -a 0 -x {10.0 9.0 3571 ------- null} h -t 4.04853 -s 7 -d 8 -p ack -e 40 -c 0 -i 7152 -a 0 -x {10.0 9.0 3571 ------- null} r -t 4.04867 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7151 -a 0 -x {9.0 10.0 3580 ------- null} + -t 4.04867 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7151 -a 0 -x {9.0 10.0 3580 ------- null} h -t 4.04867 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7151 -a 0 -x {9.0 10.0 3580 ------- null} r -t 4.04867 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7137 -a 0 -x {9.0 10.0 3573 ------- null} + -t 4.04867 -s 10 -d 7 -p ack -e 40 -c 0 -i 7156 -a 0 -x {10.0 9.0 3573 ------- null} - -t 4.04867 -s 10 -d 7 -p ack -e 40 -c 0 -i 7156 -a 0 -x {10.0 9.0 3573 ------- null} h -t 4.04867 -s 10 -d 7 -p ack -e 40 -c 0 -i 7156 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.04914 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7143 -a 0 -x {9.0 10.0 3576 ------- null} - -t 4.04914 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7143 -a 0 -x {9.0 10.0 3576 ------- null} h -t 4.04914 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7143 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.04915 -s 0 -d 9 -p ack -e 40 -c 0 -i 7146 -a 0 -x {10.0 9.0 3568 ------- null} + -t 4.04915 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7157 -a 0 -x {9.0 10.0 3583 ------- null} - -t 4.04915 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7157 -a 0 -x {9.0 10.0 3583 ------- null} h -t 4.04915 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7157 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.04922 -s 0 -d 9 -p ack -e 40 -c 0 -i 7150 -a 0 -x {10.0 9.0 3570 ------- null} - -t 4.04922 -s 0 -d 9 -p ack -e 40 -c 0 -i 7150 -a 0 -x {10.0 9.0 3570 ------- null} h -t 4.04922 -s 0 -d 9 -p ack -e 40 -c 0 -i 7150 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.04962 -s 10 -d 7 -p ack -e 40 -c 0 -i 7154 -a 0 -x {10.0 9.0 3572 ------- null} + -t 4.04962 -s 7 -d 0 -p ack -e 40 -c 0 -i 7154 -a 0 -x {10.0 9.0 3572 ------- null} h -t 4.04962 -s 7 -d 8 -p ack -e 40 -c 0 -i 7154 -a 0 -x {10.0 9.0 3572 ------- null} r -t 4.04976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7139 -a 0 -x {9.0 10.0 3574 ------- null} + -t 4.04976 -s 10 -d 7 -p ack -e 40 -c 0 -i 7158 -a 0 -x {10.0 9.0 3574 ------- null} - -t 4.04976 -s 10 -d 7 -p ack -e 40 -c 0 -i 7158 -a 0 -x {10.0 9.0 3574 ------- null} h -t 4.04976 -s 10 -d 7 -p ack -e 40 -c 0 -i 7158 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.04981 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7153 -a 0 -x {9.0 10.0 3581 ------- null} + -t 4.04981 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7153 -a 0 -x {9.0 10.0 3581 ------- null} h -t 4.04981 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7153 -a 0 -x {9.0 10.0 3581 ------- null} r -t 4.05022 -s 0 -d 9 -p ack -e 40 -c 0 -i 7148 -a 0 -x {10.0 9.0 3569 ------- null} + -t 4.05022 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7159 -a 0 -x {9.0 10.0 3584 ------- null} - -t 4.05022 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7159 -a 0 -x {9.0 10.0 3584 ------- null} h -t 4.05022 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7159 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.05022 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7145 -a 0 -x {9.0 10.0 3577 ------- null} - -t 4.05022 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7145 -a 0 -x {9.0 10.0 3577 ------- null} h -t 4.05022 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7145 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.05029 -s 0 -d 9 -p ack -e 40 -c 0 -i 7152 -a 0 -x {10.0 9.0 3571 ------- null} - -t 4.05029 -s 0 -d 9 -p ack -e 40 -c 0 -i 7152 -a 0 -x {10.0 9.0 3571 ------- null} h -t 4.05029 -s 0 -d 9 -p ack -e 40 -c 0 -i 7152 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.0507 -s 10 -d 7 -p ack -e 40 -c 0 -i 7156 -a 0 -x {10.0 9.0 3573 ------- null} + -t 4.0507 -s 7 -d 0 -p ack -e 40 -c 0 -i 7156 -a 0 -x {10.0 9.0 3573 ------- null} h -t 4.0507 -s 7 -d 8 -p ack -e 40 -c 0 -i 7156 -a 0 -x {10.0 9.0 3573 ------- null} r -t 4.05085 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7141 -a 0 -x {9.0 10.0 3575 ------- null} + -t 4.05085 -s 10 -d 7 -p ack -e 40 -c 0 -i 7160 -a 0 -x {10.0 9.0 3575 ------- null} - -t 4.05085 -s 10 -d 7 -p ack -e 40 -c 0 -i 7160 -a 0 -x {10.0 9.0 3575 ------- null} h -t 4.05085 -s 10 -d 7 -p ack -e 40 -c 0 -i 7160 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.05094 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7155 -a 0 -x {9.0 10.0 3582 ------- null} + -t 4.05094 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7155 -a 0 -x {9.0 10.0 3582 ------- null} h -t 4.05094 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7155 -a 0 -x {9.0 10.0 3582 ------- null} r -t 4.05125 -s 0 -d 9 -p ack -e 40 -c 0 -i 7150 -a 0 -x {10.0 9.0 3570 ------- null} + -t 4.05125 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7161 -a 0 -x {9.0 10.0 3585 ------- null} - -t 4.05125 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7161 -a 0 -x {9.0 10.0 3585 ------- null} h -t 4.05125 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7161 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.05131 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7147 -a 0 -x {9.0 10.0 3578 ------- null} - -t 4.05131 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7147 -a 0 -x {9.0 10.0 3578 ------- null} h -t 4.05131 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7147 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.05144 -s 0 -d 9 -p ack -e 40 -c 0 -i 7154 -a 0 -x {10.0 9.0 3572 ------- null} - -t 4.05144 -s 0 -d 9 -p ack -e 40 -c 0 -i 7154 -a 0 -x {10.0 9.0 3572 ------- null} h -t 4.05144 -s 0 -d 9 -p ack -e 40 -c 0 -i 7154 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.05179 -s 10 -d 7 -p ack -e 40 -c 0 -i 7158 -a 0 -x {10.0 9.0 3574 ------- null} + -t 4.05179 -s 7 -d 0 -p ack -e 40 -c 0 -i 7158 -a 0 -x {10.0 9.0 3574 ------- null} h -t 4.05179 -s 7 -d 8 -p ack -e 40 -c 0 -i 7158 -a 0 -x {10.0 9.0 3574 ------- null} r -t 4.05194 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7143 -a 0 -x {9.0 10.0 3576 ------- null} + -t 4.05194 -s 10 -d 7 -p ack -e 40 -c 0 -i 7162 -a 0 -x {10.0 9.0 3576 ------- null} - -t 4.05194 -s 10 -d 7 -p ack -e 40 -c 0 -i 7162 -a 0 -x {10.0 9.0 3576 ------- null} h -t 4.05194 -s 10 -d 7 -p ack -e 40 -c 0 -i 7162 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.05195 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7157 -a 0 -x {9.0 10.0 3583 ------- null} + -t 4.05195 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7157 -a 0 -x {9.0 10.0 3583 ------- null} h -t 4.05195 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7157 -a 0 -x {9.0 10.0 3583 ------- null} r -t 4.05232 -s 0 -d 9 -p ack -e 40 -c 0 -i 7152 -a 0 -x {10.0 9.0 3571 ------- null} + -t 4.05232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7163 -a 0 -x {9.0 10.0 3586 ------- null} - -t 4.05232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7163 -a 0 -x {9.0 10.0 3586 ------- null} h -t 4.05232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7163 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.0524 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7149 -a 0 -x {9.0 10.0 3579 ------- null} - -t 4.0524 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7149 -a 0 -x {9.0 10.0 3579 ------- null} h -t 4.0524 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7149 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.05251 -s 0 -d 9 -p ack -e 40 -c 0 -i 7156 -a 0 -x {10.0 9.0 3573 ------- null} - -t 4.05251 -s 0 -d 9 -p ack -e 40 -c 0 -i 7156 -a 0 -x {10.0 9.0 3573 ------- null} h -t 4.05251 -s 0 -d 9 -p ack -e 40 -c 0 -i 7156 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.05288 -s 10 -d 7 -p ack -e 40 -c 0 -i 7160 -a 0 -x {10.0 9.0 3575 ------- null} + -t 4.05288 -s 7 -d 0 -p ack -e 40 -c 0 -i 7160 -a 0 -x {10.0 9.0 3575 ------- null} h -t 4.05288 -s 7 -d 8 -p ack -e 40 -c 0 -i 7160 -a 0 -x {10.0 9.0 3575 ------- null} r -t 4.05302 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7159 -a 0 -x {9.0 10.0 3584 ------- null} + -t 4.05302 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7159 -a 0 -x {9.0 10.0 3584 ------- null} h -t 4.05302 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7159 -a 0 -x {9.0 10.0 3584 ------- null} r -t 4.05302 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7145 -a 0 -x {9.0 10.0 3577 ------- null} + -t 4.05302 -s 10 -d 7 -p ack -e 40 -c 0 -i 7164 -a 0 -x {10.0 9.0 3577 ------- null} - -t 4.05302 -s 10 -d 7 -p ack -e 40 -c 0 -i 7164 -a 0 -x {10.0 9.0 3577 ------- null} h -t 4.05302 -s 10 -d 7 -p ack -e 40 -c 0 -i 7164 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.05347 -s 0 -d 9 -p ack -e 40 -c 0 -i 7154 -a 0 -x {10.0 9.0 3572 ------- null} + -t 4.05347 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7165 -a 0 -x {9.0 10.0 3587 ------- null} - -t 4.05347 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7165 -a 0 -x {9.0 10.0 3587 ------- null} h -t 4.05347 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7165 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.05349 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7151 -a 0 -x {9.0 10.0 3580 ------- null} - -t 4.05349 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7151 -a 0 -x {9.0 10.0 3580 ------- null} h -t 4.05349 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7151 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.0537 -s 0 -d 9 -p ack -e 40 -c 0 -i 7158 -a 0 -x {10.0 9.0 3574 ------- null} - -t 4.0537 -s 0 -d 9 -p ack -e 40 -c 0 -i 7158 -a 0 -x {10.0 9.0 3574 ------- null} h -t 4.0537 -s 0 -d 9 -p ack -e 40 -c 0 -i 7158 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.05397 -s 10 -d 7 -p ack -e 40 -c 0 -i 7162 -a 0 -x {10.0 9.0 3576 ------- null} + -t 4.05397 -s 7 -d 0 -p ack -e 40 -c 0 -i 7162 -a 0 -x {10.0 9.0 3576 ------- null} h -t 4.05397 -s 7 -d 8 -p ack -e 40 -c 0 -i 7162 -a 0 -x {10.0 9.0 3576 ------- null} r -t 4.05405 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7161 -a 0 -x {9.0 10.0 3585 ------- null} + -t 4.05405 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7161 -a 0 -x {9.0 10.0 3585 ------- null} h -t 4.05405 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7161 -a 0 -x {9.0 10.0 3585 ------- null} r -t 4.05411 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7147 -a 0 -x {9.0 10.0 3578 ------- null} + -t 4.05411 -s 10 -d 7 -p ack -e 40 -c 0 -i 7166 -a 0 -x {10.0 9.0 3578 ------- null} - -t 4.05411 -s 10 -d 7 -p ack -e 40 -c 0 -i 7166 -a 0 -x {10.0 9.0 3578 ------- null} h -t 4.05411 -s 10 -d 7 -p ack -e 40 -c 0 -i 7166 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.05454 -s 0 -d 9 -p ack -e 40 -c 0 -i 7156 -a 0 -x {10.0 9.0 3573 ------- null} + -t 4.05454 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7167 -a 0 -x {9.0 10.0 3588 ------- null} - -t 4.05454 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7167 -a 0 -x {9.0 10.0 3588 ------- null} h -t 4.05454 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7167 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.05458 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7153 -a 0 -x {9.0 10.0 3581 ------- null} - -t 4.05458 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7153 -a 0 -x {9.0 10.0 3581 ------- null} h -t 4.05458 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7153 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.0547 -s 0 -d 9 -p ack -e 40 -c 0 -i 7160 -a 0 -x {10.0 9.0 3575 ------- null} - -t 4.0547 -s 0 -d 9 -p ack -e 40 -c 0 -i 7160 -a 0 -x {10.0 9.0 3575 ------- null} h -t 4.0547 -s 0 -d 9 -p ack -e 40 -c 0 -i 7160 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.05506 -s 10 -d 7 -p ack -e 40 -c 0 -i 7164 -a 0 -x {10.0 9.0 3577 ------- null} + -t 4.05506 -s 7 -d 0 -p ack -e 40 -c 0 -i 7164 -a 0 -x {10.0 9.0 3577 ------- null} h -t 4.05506 -s 7 -d 8 -p ack -e 40 -c 0 -i 7164 -a 0 -x {10.0 9.0 3577 ------- null} r -t 4.05512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7163 -a 0 -x {9.0 10.0 3586 ------- null} + -t 4.05512 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7163 -a 0 -x {9.0 10.0 3586 ------- null} h -t 4.05512 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7163 -a 0 -x {9.0 10.0 3586 ------- null} r -t 4.0552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7149 -a 0 -x {9.0 10.0 3579 ------- null} + -t 4.0552 -s 10 -d 7 -p ack -e 40 -c 0 -i 7168 -a 0 -x {10.0 9.0 3579 ------- null} - -t 4.0552 -s 10 -d 7 -p ack -e 40 -c 0 -i 7168 -a 0 -x {10.0 9.0 3579 ------- null} h -t 4.0552 -s 10 -d 7 -p ack -e 40 -c 0 -i 7168 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.05566 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7155 -a 0 -x {9.0 10.0 3582 ------- null} - -t 4.05566 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7155 -a 0 -x {9.0 10.0 3582 ------- null} h -t 4.05566 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7155 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.05573 -s 0 -d 9 -p ack -e 40 -c 0 -i 7158 -a 0 -x {10.0 9.0 3574 ------- null} + -t 4.05573 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7169 -a 0 -x {9.0 10.0 3589 ------- null} - -t 4.05573 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7169 -a 0 -x {9.0 10.0 3589 ------- null} h -t 4.05573 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7169 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.05582 -s 0 -d 9 -p ack -e 40 -c 0 -i 7162 -a 0 -x {10.0 9.0 3576 ------- null} - -t 4.05582 -s 0 -d 9 -p ack -e 40 -c 0 -i 7162 -a 0 -x {10.0 9.0 3576 ------- null} h -t 4.05582 -s 0 -d 9 -p ack -e 40 -c 0 -i 7162 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.05614 -s 10 -d 7 -p ack -e 40 -c 0 -i 7166 -a 0 -x {10.0 9.0 3578 ------- null} + -t 4.05614 -s 7 -d 0 -p ack -e 40 -c 0 -i 7166 -a 0 -x {10.0 9.0 3578 ------- null} h -t 4.05614 -s 7 -d 8 -p ack -e 40 -c 0 -i 7166 -a 0 -x {10.0 9.0 3578 ------- null} r -t 4.05627 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7165 -a 0 -x {9.0 10.0 3587 ------- null} + -t 4.05627 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7165 -a 0 -x {9.0 10.0 3587 ------- null} h -t 4.05627 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7165 -a 0 -x {9.0 10.0 3587 ------- null} r -t 4.05629 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7151 -a 0 -x {9.0 10.0 3580 ------- null} + -t 4.05629 -s 10 -d 7 -p ack -e 40 -c 0 -i 7170 -a 0 -x {10.0 9.0 3580 ------- null} - -t 4.05629 -s 10 -d 7 -p ack -e 40 -c 0 -i 7170 -a 0 -x {10.0 9.0 3580 ------- null} h -t 4.05629 -s 10 -d 7 -p ack -e 40 -c 0 -i 7170 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.05674 -s 0 -d 9 -p ack -e 40 -c 0 -i 7160 -a 0 -x {10.0 9.0 3575 ------- null} + -t 4.05674 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7171 -a 0 -x {9.0 10.0 3590 ------- null} - -t 4.05674 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7171 -a 0 -x {9.0 10.0 3590 ------- null} h -t 4.05674 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7171 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.05675 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7157 -a 0 -x {9.0 10.0 3583 ------- null} - -t 4.05675 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7157 -a 0 -x {9.0 10.0 3583 ------- null} h -t 4.05675 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7157 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.05693 -s 0 -d 9 -p ack -e 40 -c 0 -i 7164 -a 0 -x {10.0 9.0 3577 ------- null} - -t 4.05693 -s 0 -d 9 -p ack -e 40 -c 0 -i 7164 -a 0 -x {10.0 9.0 3577 ------- null} h -t 4.05693 -s 0 -d 9 -p ack -e 40 -c 0 -i 7164 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.05723 -s 10 -d 7 -p ack -e 40 -c 0 -i 7168 -a 0 -x {10.0 9.0 3579 ------- null} + -t 4.05723 -s 7 -d 0 -p ack -e 40 -c 0 -i 7168 -a 0 -x {10.0 9.0 3579 ------- null} h -t 4.05723 -s 7 -d 8 -p ack -e 40 -c 0 -i 7168 -a 0 -x {10.0 9.0 3579 ------- null} r -t 4.05734 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7167 -a 0 -x {9.0 10.0 3588 ------- null} + -t 4.05734 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7167 -a 0 -x {9.0 10.0 3588 ------- null} h -t 4.05734 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7167 -a 0 -x {9.0 10.0 3588 ------- null} r -t 4.05738 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7153 -a 0 -x {9.0 10.0 3581 ------- null} + -t 4.05738 -s 10 -d 7 -p ack -e 40 -c 0 -i 7172 -a 0 -x {10.0 9.0 3581 ------- null} - -t 4.05738 -s 10 -d 7 -p ack -e 40 -c 0 -i 7172 -a 0 -x {10.0 9.0 3581 ------- null} h -t 4.05738 -s 10 -d 7 -p ack -e 40 -c 0 -i 7172 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.05784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7159 -a 0 -x {9.0 10.0 3584 ------- null} - -t 4.05784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7159 -a 0 -x {9.0 10.0 3584 ------- null} h -t 4.05784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7159 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.05786 -s 0 -d 9 -p ack -e 40 -c 0 -i 7162 -a 0 -x {10.0 9.0 3576 ------- null} + -t 4.05786 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7173 -a 0 -x {9.0 10.0 3591 ------- null} - -t 4.05786 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7173 -a 0 -x {9.0 10.0 3591 ------- null} h -t 4.05786 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7173 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.05798 -s 0 -d 9 -p ack -e 40 -c 0 -i 7166 -a 0 -x {10.0 9.0 3578 ------- null} - -t 4.05798 -s 0 -d 9 -p ack -e 40 -c 0 -i 7166 -a 0 -x {10.0 9.0 3578 ------- null} h -t 4.05798 -s 0 -d 9 -p ack -e 40 -c 0 -i 7166 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.05832 -s 10 -d 7 -p ack -e 40 -c 0 -i 7170 -a 0 -x {10.0 9.0 3580 ------- null} + -t 4.05832 -s 7 -d 0 -p ack -e 40 -c 0 -i 7170 -a 0 -x {10.0 9.0 3580 ------- null} h -t 4.05832 -s 7 -d 8 -p ack -e 40 -c 0 -i 7170 -a 0 -x {10.0 9.0 3580 ------- null} r -t 4.05846 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7155 -a 0 -x {9.0 10.0 3582 ------- null} + -t 4.05846 -s 10 -d 7 -p ack -e 40 -c 0 -i 7174 -a 0 -x {10.0 9.0 3582 ------- null} - -t 4.05846 -s 10 -d 7 -p ack -e 40 -c 0 -i 7174 -a 0 -x {10.0 9.0 3582 ------- null} h -t 4.05846 -s 10 -d 7 -p ack -e 40 -c 0 -i 7174 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.05853 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7169 -a 0 -x {9.0 10.0 3589 ------- null} + -t 4.05853 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7169 -a 0 -x {9.0 10.0 3589 ------- null} h -t 4.05853 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7169 -a 0 -x {9.0 10.0 3589 ------- null} + -t 4.05893 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7161 -a 0 -x {9.0 10.0 3585 ------- null} - -t 4.05893 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7161 -a 0 -x {9.0 10.0 3585 ------- null} h -t 4.05893 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7161 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.05896 -s 0 -d 9 -p ack -e 40 -c 0 -i 7164 -a 0 -x {10.0 9.0 3577 ------- null} + -t 4.05896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7175 -a 0 -x {9.0 10.0 3592 ------- null} - -t 4.05896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7175 -a 0 -x {9.0 10.0 3592 ------- null} h -t 4.05896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7175 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.05922 -s 0 -d 9 -p ack -e 40 -c 0 -i 7168 -a 0 -x {10.0 9.0 3579 ------- null} - -t 4.05922 -s 0 -d 9 -p ack -e 40 -c 0 -i 7168 -a 0 -x {10.0 9.0 3579 ------- null} h -t 4.05922 -s 0 -d 9 -p ack -e 40 -c 0 -i 7168 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.05941 -s 10 -d 7 -p ack -e 40 -c 0 -i 7172 -a 0 -x {10.0 9.0 3581 ------- null} + -t 4.05941 -s 7 -d 0 -p ack -e 40 -c 0 -i 7172 -a 0 -x {10.0 9.0 3581 ------- null} h -t 4.05941 -s 7 -d 8 -p ack -e 40 -c 0 -i 7172 -a 0 -x {10.0 9.0 3581 ------- null} r -t 4.05954 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7171 -a 0 -x {9.0 10.0 3590 ------- null} + -t 4.05954 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7171 -a 0 -x {9.0 10.0 3590 ------- null} h -t 4.05954 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7171 -a 0 -x {9.0 10.0 3590 ------- null} r -t 4.05955 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7157 -a 0 -x {9.0 10.0 3583 ------- null} + -t 4.05955 -s 10 -d 7 -p ack -e 40 -c 0 -i 7176 -a 0 -x {10.0 9.0 3583 ------- null} - -t 4.05955 -s 10 -d 7 -p ack -e 40 -c 0 -i 7176 -a 0 -x {10.0 9.0 3583 ------- null} h -t 4.05955 -s 10 -d 7 -p ack -e 40 -c 0 -i 7176 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.06002 -s 0 -d 9 -p ack -e 40 -c 0 -i 7166 -a 0 -x {10.0 9.0 3578 ------- null} + -t 4.06002 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7177 -a 0 -x {9.0 10.0 3593 ------- null} - -t 4.06002 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7177 -a 0 -x {9.0 10.0 3593 ------- null} h -t 4.06002 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7177 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.06029 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7163 -a 0 -x {9.0 10.0 3586 ------- null} - -t 4.06029 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7163 -a 0 -x {9.0 10.0 3586 ------- null} h -t 4.06029 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7163 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.0605 -s 10 -d 7 -p ack -e 40 -c 0 -i 7174 -a 0 -x {10.0 9.0 3582 ------- null} + -t 4.0605 -s 7 -d 0 -p ack -e 40 -c 0 -i 7174 -a 0 -x {10.0 9.0 3582 ------- null} h -t 4.0605 -s 7 -d 8 -p ack -e 40 -c 0 -i 7174 -a 0 -x {10.0 9.0 3582 ------- null} + -t 4.06051 -s 0 -d 9 -p ack -e 40 -c 0 -i 7170 -a 0 -x {10.0 9.0 3580 ------- null} - -t 4.06051 -s 0 -d 9 -p ack -e 40 -c 0 -i 7170 -a 0 -x {10.0 9.0 3580 ------- null} h -t 4.06051 -s 0 -d 9 -p ack -e 40 -c 0 -i 7170 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.06064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7159 -a 0 -x {9.0 10.0 3584 ------- null} + -t 4.06064 -s 10 -d 7 -p ack -e 40 -c 0 -i 7178 -a 0 -x {10.0 9.0 3584 ------- null} - -t 4.06064 -s 10 -d 7 -p ack -e 40 -c 0 -i 7178 -a 0 -x {10.0 9.0 3584 ------- null} h -t 4.06064 -s 10 -d 7 -p ack -e 40 -c 0 -i 7178 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.06066 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7173 -a 0 -x {9.0 10.0 3591 ------- null} + -t 4.06066 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7173 -a 0 -x {9.0 10.0 3591 ------- null} h -t 4.06066 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7173 -a 0 -x {9.0 10.0 3591 ------- null} r -t 4.06125 -s 0 -d 9 -p ack -e 40 -c 0 -i 7168 -a 0 -x {10.0 9.0 3579 ------- null} + -t 4.06125 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7179 -a 0 -x {9.0 10.0 3594 ------- null} - -t 4.06125 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7179 -a 0 -x {9.0 10.0 3594 ------- null} h -t 4.06125 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7179 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.06138 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7165 -a 0 -x {9.0 10.0 3587 ------- null} - -t 4.06138 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7165 -a 0 -x {9.0 10.0 3587 ------- null} h -t 4.06138 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7165 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.0615 -s 0 -d 9 -p ack -e 40 -c 0 -i 7172 -a 0 -x {10.0 9.0 3581 ------- null} - -t 4.0615 -s 0 -d 9 -p ack -e 40 -c 0 -i 7172 -a 0 -x {10.0 9.0 3581 ------- null} h -t 4.0615 -s 0 -d 9 -p ack -e 40 -c 0 -i 7172 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.06158 -s 10 -d 7 -p ack -e 40 -c 0 -i 7176 -a 0 -x {10.0 9.0 3583 ------- null} + -t 4.06158 -s 7 -d 0 -p ack -e 40 -c 0 -i 7176 -a 0 -x {10.0 9.0 3583 ------- null} h -t 4.06158 -s 7 -d 8 -p ack -e 40 -c 0 -i 7176 -a 0 -x {10.0 9.0 3583 ------- null} r -t 4.06173 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7161 -a 0 -x {9.0 10.0 3585 ------- null} + -t 4.06173 -s 10 -d 7 -p ack -e 40 -c 0 -i 7180 -a 0 -x {10.0 9.0 3585 ------- null} - -t 4.06173 -s 10 -d 7 -p ack -e 40 -c 0 -i 7180 -a 0 -x {10.0 9.0 3585 ------- null} h -t 4.06173 -s 10 -d 7 -p ack -e 40 -c 0 -i 7180 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.06176 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7175 -a 0 -x {9.0 10.0 3592 ------- null} + -t 4.06176 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7175 -a 0 -x {9.0 10.0 3592 ------- null} h -t 4.06176 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7175 -a 0 -x {9.0 10.0 3592 ------- null} + -t 4.06246 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7167 -a 0 -x {9.0 10.0 3588 ------- null} - -t 4.06246 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7167 -a 0 -x {9.0 10.0 3588 ------- null} h -t 4.06246 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7167 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.06254 -s 0 -d 9 -p ack -e 40 -c 0 -i 7170 -a 0 -x {10.0 9.0 3580 ------- null} + -t 4.06254 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7181 -a 0 -x {9.0 10.0 3595 ------- null} - -t 4.06254 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7181 -a 0 -x {9.0 10.0 3595 ------- null} h -t 4.06254 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7181 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.06259 -s 0 -d 9 -p ack -e 40 -c 0 -i 7174 -a 0 -x {10.0 9.0 3582 ------- null} - -t 4.06259 -s 0 -d 9 -p ack -e 40 -c 0 -i 7174 -a 0 -x {10.0 9.0 3582 ------- null} h -t 4.06259 -s 0 -d 9 -p ack -e 40 -c 0 -i 7174 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.06267 -s 10 -d 7 -p ack -e 40 -c 0 -i 7178 -a 0 -x {10.0 9.0 3584 ------- null} + -t 4.06267 -s 7 -d 0 -p ack -e 40 -c 0 -i 7178 -a 0 -x {10.0 9.0 3584 ------- null} h -t 4.06267 -s 7 -d 8 -p ack -e 40 -c 0 -i 7178 -a 0 -x {10.0 9.0 3584 ------- null} r -t 4.06282 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7177 -a 0 -x {9.0 10.0 3593 ------- null} + -t 4.06282 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7177 -a 0 -x {9.0 10.0 3593 ------- null} h -t 4.06282 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7177 -a 0 -x {9.0 10.0 3593 ------- null} r -t 4.06309 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7163 -a 0 -x {9.0 10.0 3586 ------- null} + -t 4.06309 -s 10 -d 7 -p ack -e 40 -c 0 -i 7182 -a 0 -x {10.0 9.0 3586 ------- null} - -t 4.06309 -s 10 -d 7 -p ack -e 40 -c 0 -i 7182 -a 0 -x {10.0 9.0 3586 ------- null} h -t 4.06309 -s 10 -d 7 -p ack -e 40 -c 0 -i 7182 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.06354 -s 0 -d 9 -p ack -e 40 -c 0 -i 7172 -a 0 -x {10.0 9.0 3581 ------- null} + -t 4.06354 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7183 -a 0 -x {9.0 10.0 3596 ------- null} - -t 4.06354 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7183 -a 0 -x {9.0 10.0 3596 ------- null} h -t 4.06354 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7183 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.06355 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7169 -a 0 -x {9.0 10.0 3589 ------- null} - -t 4.06355 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7169 -a 0 -x {9.0 10.0 3589 ------- null} h -t 4.06355 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7169 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.06368 -s 0 -d 9 -p ack -e 40 -c 0 -i 7176 -a 0 -x {10.0 9.0 3583 ------- null} - -t 4.06368 -s 0 -d 9 -p ack -e 40 -c 0 -i 7176 -a 0 -x {10.0 9.0 3583 ------- null} h -t 4.06368 -s 0 -d 9 -p ack -e 40 -c 0 -i 7176 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.06376 -s 10 -d 7 -p ack -e 40 -c 0 -i 7180 -a 0 -x {10.0 9.0 3585 ------- null} + -t 4.06376 -s 7 -d 0 -p ack -e 40 -c 0 -i 7180 -a 0 -x {10.0 9.0 3585 ------- null} h -t 4.06376 -s 7 -d 8 -p ack -e 40 -c 0 -i 7180 -a 0 -x {10.0 9.0 3585 ------- null} r -t 4.06405 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7179 -a 0 -x {9.0 10.0 3594 ------- null} + -t 4.06405 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7179 -a 0 -x {9.0 10.0 3594 ------- null} h -t 4.06405 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7179 -a 0 -x {9.0 10.0 3594 ------- null} r -t 4.06418 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7165 -a 0 -x {9.0 10.0 3587 ------- null} + -t 4.06418 -s 10 -d 7 -p ack -e 40 -c 0 -i 7184 -a 0 -x {10.0 9.0 3587 ------- null} - -t 4.06418 -s 10 -d 7 -p ack -e 40 -c 0 -i 7184 -a 0 -x {10.0 9.0 3587 ------- null} h -t 4.06418 -s 10 -d 7 -p ack -e 40 -c 0 -i 7184 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.06462 -s 0 -d 9 -p ack -e 40 -c 0 -i 7174 -a 0 -x {10.0 9.0 3582 ------- null} + -t 4.06462 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7185 -a 0 -x {9.0 10.0 3597 ------- null} - -t 4.06462 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7185 -a 0 -x {9.0 10.0 3597 ------- null} h -t 4.06462 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7185 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.06464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7171 -a 0 -x {9.0 10.0 3590 ------- null} - -t 4.06464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7171 -a 0 -x {9.0 10.0 3590 ------- null} h -t 4.06464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7171 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.06475 -s 0 -d 9 -p ack -e 40 -c 0 -i 7178 -a 0 -x {10.0 9.0 3584 ------- null} - -t 4.06475 -s 0 -d 9 -p ack -e 40 -c 0 -i 7178 -a 0 -x {10.0 9.0 3584 ------- null} h -t 4.06475 -s 0 -d 9 -p ack -e 40 -c 0 -i 7178 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.06512 -s 10 -d 7 -p ack -e 40 -c 0 -i 7182 -a 0 -x {10.0 9.0 3586 ------- null} + -t 4.06512 -s 7 -d 0 -p ack -e 40 -c 0 -i 7182 -a 0 -x {10.0 9.0 3586 ------- null} h -t 4.06512 -s 7 -d 8 -p ack -e 40 -c 0 -i 7182 -a 0 -x {10.0 9.0 3586 ------- null} r -t 4.06526 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7167 -a 0 -x {9.0 10.0 3588 ------- null} + -t 4.06526 -s 10 -d 7 -p ack -e 40 -c 0 -i 7186 -a 0 -x {10.0 9.0 3588 ------- null} - -t 4.06526 -s 10 -d 7 -p ack -e 40 -c 0 -i 7186 -a 0 -x {10.0 9.0 3588 ------- null} h -t 4.06526 -s 10 -d 7 -p ack -e 40 -c 0 -i 7186 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.06534 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7181 -a 0 -x {9.0 10.0 3595 ------- null} + -t 4.06534 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7181 -a 0 -x {9.0 10.0 3595 ------- null} h -t 4.06534 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7181 -a 0 -x {9.0 10.0 3595 ------- null} r -t 4.06571 -s 0 -d 9 -p ack -e 40 -c 0 -i 7176 -a 0 -x {10.0 9.0 3583 ------- null} + -t 4.06571 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7187 -a 0 -x {9.0 10.0 3598 ------- null} - -t 4.06571 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7187 -a 0 -x {9.0 10.0 3598 ------- null} h -t 4.06571 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7187 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.06573 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7173 -a 0 -x {9.0 10.0 3591 ------- null} - -t 4.06573 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7173 -a 0 -x {9.0 10.0 3591 ------- null} h -t 4.06573 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7173 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.06597 -s 0 -d 9 -p ack -e 40 -c 0 -i 7180 -a 0 -x {10.0 9.0 3585 ------- null} - -t 4.06597 -s 0 -d 9 -p ack -e 40 -c 0 -i 7180 -a 0 -x {10.0 9.0 3585 ------- null} h -t 4.06597 -s 0 -d 9 -p ack -e 40 -c 0 -i 7180 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.06621 -s 10 -d 7 -p ack -e 40 -c 0 -i 7184 -a 0 -x {10.0 9.0 3587 ------- null} + -t 4.06621 -s 7 -d 0 -p ack -e 40 -c 0 -i 7184 -a 0 -x {10.0 9.0 3587 ------- null} h -t 4.06621 -s 7 -d 8 -p ack -e 40 -c 0 -i 7184 -a 0 -x {10.0 9.0 3587 ------- null} r -t 4.06634 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7183 -a 0 -x {9.0 10.0 3596 ------- null} + -t 4.06634 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7183 -a 0 -x {9.0 10.0 3596 ------- null} h -t 4.06634 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7183 -a 0 -x {9.0 10.0 3596 ------- null} r -t 4.06635 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7169 -a 0 -x {9.0 10.0 3589 ------- null} + -t 4.06635 -s 10 -d 7 -p ack -e 40 -c 0 -i 7188 -a 0 -x {10.0 9.0 3589 ------- null} - -t 4.06635 -s 10 -d 7 -p ack -e 40 -c 0 -i 7188 -a 0 -x {10.0 9.0 3589 ------- null} h -t 4.06635 -s 10 -d 7 -p ack -e 40 -c 0 -i 7188 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.06678 -s 0 -d 9 -p ack -e 40 -c 0 -i 7178 -a 0 -x {10.0 9.0 3584 ------- null} + -t 4.06678 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7189 -a 0 -x {9.0 10.0 3599 ------- null} - -t 4.06678 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7189 -a 0 -x {9.0 10.0 3599 ------- null} h -t 4.06678 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7189 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.06682 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7175 -a 0 -x {9.0 10.0 3592 ------- null} - -t 4.06682 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7175 -a 0 -x {9.0 10.0 3592 ------- null} h -t 4.06682 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7175 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.06701 -s 0 -d 9 -p ack -e 40 -c 0 -i 7182 -a 0 -x {10.0 9.0 3586 ------- null} - -t 4.06701 -s 0 -d 9 -p ack -e 40 -c 0 -i 7182 -a 0 -x {10.0 9.0 3586 ------- null} h -t 4.06701 -s 0 -d 9 -p ack -e 40 -c 0 -i 7182 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.0673 -s 10 -d 7 -p ack -e 40 -c 0 -i 7186 -a 0 -x {10.0 9.0 3588 ------- null} + -t 4.0673 -s 7 -d 0 -p ack -e 40 -c 0 -i 7186 -a 0 -x {10.0 9.0 3588 ------- null} h -t 4.0673 -s 7 -d 8 -p ack -e 40 -c 0 -i 7186 -a 0 -x {10.0 9.0 3588 ------- null} r -t 4.06742 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7185 -a 0 -x {9.0 10.0 3597 ------- null} + -t 4.06742 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7185 -a 0 -x {9.0 10.0 3597 ------- null} h -t 4.06742 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7185 -a 0 -x {9.0 10.0 3597 ------- null} r -t 4.06744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7171 -a 0 -x {9.0 10.0 3590 ------- null} + -t 4.06744 -s 10 -d 7 -p ack -e 40 -c 0 -i 7190 -a 0 -x {10.0 9.0 3590 ------- null} - -t 4.06744 -s 10 -d 7 -p ack -e 40 -c 0 -i 7190 -a 0 -x {10.0 9.0 3590 ------- null} h -t 4.06744 -s 10 -d 7 -p ack -e 40 -c 0 -i 7190 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.0679 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7177 -a 0 -x {9.0 10.0 3593 ------- null} - -t 4.0679 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7177 -a 0 -x {9.0 10.0 3593 ------- null} h -t 4.0679 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7177 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.068 -s 0 -d 9 -p ack -e 40 -c 0 -i 7180 -a 0 -x {10.0 9.0 3585 ------- null} + -t 4.068 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7191 -a 0 -x {9.0 10.0 3600 ------- null} - -t 4.068 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7191 -a 0 -x {9.0 10.0 3600 ------- null} h -t 4.068 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7191 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.06818 -s 0 -d 9 -p ack -e 40 -c 0 -i 7184 -a 0 -x {10.0 9.0 3587 ------- null} - -t 4.06818 -s 0 -d 9 -p ack -e 40 -c 0 -i 7184 -a 0 -x {10.0 9.0 3587 ------- null} h -t 4.06818 -s 0 -d 9 -p ack -e 40 -c 0 -i 7184 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.06838 -s 10 -d 7 -p ack -e 40 -c 0 -i 7188 -a 0 -x {10.0 9.0 3589 ------- null} + -t 4.06838 -s 7 -d 0 -p ack -e 40 -c 0 -i 7188 -a 0 -x {10.0 9.0 3589 ------- null} h -t 4.06838 -s 7 -d 8 -p ack -e 40 -c 0 -i 7188 -a 0 -x {10.0 9.0 3589 ------- null} r -t 4.06851 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7187 -a 0 -x {9.0 10.0 3598 ------- null} + -t 4.06851 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7187 -a 0 -x {9.0 10.0 3598 ------- null} h -t 4.06851 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7187 -a 0 -x {9.0 10.0 3598 ------- null} r -t 4.06853 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7173 -a 0 -x {9.0 10.0 3591 ------- null} + -t 4.06853 -s 10 -d 7 -p ack -e 40 -c 0 -i 7192 -a 0 -x {10.0 9.0 3591 ------- null} - -t 4.06853 -s 10 -d 7 -p ack -e 40 -c 0 -i 7192 -a 0 -x {10.0 9.0 3591 ------- null} h -t 4.06853 -s 10 -d 7 -p ack -e 40 -c 0 -i 7192 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.06904 -s 0 -d 9 -p ack -e 40 -c 0 -i 7182 -a 0 -x {10.0 9.0 3586 ------- null} + -t 4.06904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7193 -a 0 -x {9.0 10.0 3601 ------- null} - -t 4.06904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7193 -a 0 -x {9.0 10.0 3601 ------- null} h -t 4.06904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7193 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.06904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7179 -a 0 -x {9.0 10.0 3594 ------- null} - -t 4.06904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7179 -a 0 -x {9.0 10.0 3594 ------- null} h -t 4.06904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7179 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.06912 -s 0 -d 9 -p ack -e 40 -c 0 -i 7186 -a 0 -x {10.0 9.0 3588 ------- null} - -t 4.06912 -s 0 -d 9 -p ack -e 40 -c 0 -i 7186 -a 0 -x {10.0 9.0 3588 ------- null} h -t 4.06912 -s 0 -d 9 -p ack -e 40 -c 0 -i 7186 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.06947 -s 10 -d 7 -p ack -e 40 -c 0 -i 7190 -a 0 -x {10.0 9.0 3590 ------- null} + -t 4.06947 -s 7 -d 0 -p ack -e 40 -c 0 -i 7190 -a 0 -x {10.0 9.0 3590 ------- null} h -t 4.06947 -s 7 -d 8 -p ack -e 40 -c 0 -i 7190 -a 0 -x {10.0 9.0 3590 ------- null} r -t 4.06958 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7189 -a 0 -x {9.0 10.0 3599 ------- null} + -t 4.06958 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7189 -a 0 -x {9.0 10.0 3599 ------- null} h -t 4.06958 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7189 -a 0 -x {9.0 10.0 3599 ------- null} r -t 4.06962 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7175 -a 0 -x {9.0 10.0 3592 ------- null} + -t 4.06962 -s 10 -d 7 -p ack -e 40 -c 0 -i 7194 -a 0 -x {10.0 9.0 3592 ------- null} - -t 4.06962 -s 10 -d 7 -p ack -e 40 -c 0 -i 7194 -a 0 -x {10.0 9.0 3592 ------- null} h -t 4.06962 -s 10 -d 7 -p ack -e 40 -c 0 -i 7194 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.07013 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7181 -a 0 -x {9.0 10.0 3595 ------- null} - -t 4.07013 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7181 -a 0 -x {9.0 10.0 3595 ------- null} h -t 4.07013 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7181 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.07021 -s 0 -d 9 -p ack -e 40 -c 0 -i 7184 -a 0 -x {10.0 9.0 3587 ------- null} + -t 4.07021 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7195 -a 0 -x {9.0 10.0 3602 ------- null} - -t 4.07021 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7195 -a 0 -x {9.0 10.0 3602 ------- null} h -t 4.07021 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7195 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.07043 -s 0 -d 9 -p ack -e 40 -c 0 -i 7188 -a 0 -x {10.0 9.0 3589 ------- null} - -t 4.07043 -s 0 -d 9 -p ack -e 40 -c 0 -i 7188 -a 0 -x {10.0 9.0 3589 ------- null} h -t 4.07043 -s 0 -d 9 -p ack -e 40 -c 0 -i 7188 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.07056 -s 10 -d 7 -p ack -e 40 -c 0 -i 7192 -a 0 -x {10.0 9.0 3591 ------- null} + -t 4.07056 -s 7 -d 0 -p ack -e 40 -c 0 -i 7192 -a 0 -x {10.0 9.0 3591 ------- null} h -t 4.07056 -s 7 -d 8 -p ack -e 40 -c 0 -i 7192 -a 0 -x {10.0 9.0 3591 ------- null} r -t 4.0707 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7177 -a 0 -x {9.0 10.0 3593 ------- null} + -t 4.0707 -s 10 -d 7 -p ack -e 40 -c 0 -i 7196 -a 0 -x {10.0 9.0 3593 ------- null} - -t 4.0707 -s 10 -d 7 -p ack -e 40 -c 0 -i 7196 -a 0 -x {10.0 9.0 3593 ------- null} h -t 4.0707 -s 10 -d 7 -p ack -e 40 -c 0 -i 7196 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.0708 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7191 -a 0 -x {9.0 10.0 3600 ------- null} + -t 4.0708 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7191 -a 0 -x {9.0 10.0 3600 ------- null} h -t 4.0708 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7191 -a 0 -x {9.0 10.0 3600 ------- null} r -t 4.07115 -s 0 -d 9 -p ack -e 40 -c 0 -i 7186 -a 0 -x {10.0 9.0 3588 ------- null} + -t 4.07115 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7197 -a 0 -x {9.0 10.0 3603 ------- null} - -t 4.07115 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7197 -a 0 -x {9.0 10.0 3603 ------- null} h -t 4.07115 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7197 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.07131 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7183 -a 0 -x {9.0 10.0 3596 ------- null} - -t 4.07131 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7183 -a 0 -x {9.0 10.0 3596 ------- null} h -t 4.07131 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7183 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.07155 -s 0 -d 9 -p ack -e 40 -c 0 -i 7190 -a 0 -x {10.0 9.0 3590 ------- null} - -t 4.07155 -s 0 -d 9 -p ack -e 40 -c 0 -i 7190 -a 0 -x {10.0 9.0 3590 ------- null} h -t 4.07155 -s 0 -d 9 -p ack -e 40 -c 0 -i 7190 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.07165 -s 10 -d 7 -p ack -e 40 -c 0 -i 7194 -a 0 -x {10.0 9.0 3592 ------- null} + -t 4.07165 -s 7 -d 0 -p ack -e 40 -c 0 -i 7194 -a 0 -x {10.0 9.0 3592 ------- null} h -t 4.07165 -s 7 -d 8 -p ack -e 40 -c 0 -i 7194 -a 0 -x {10.0 9.0 3592 ------- null} r -t 4.07184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7193 -a 0 -x {9.0 10.0 3601 ------- null} + -t 4.07184 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7193 -a 0 -x {9.0 10.0 3601 ------- null} h -t 4.07184 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7193 -a 0 -x {9.0 10.0 3601 ------- null} r -t 4.07184 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7179 -a 0 -x {9.0 10.0 3594 ------- null} + -t 4.07184 -s 10 -d 7 -p ack -e 40 -c 0 -i 7198 -a 0 -x {10.0 9.0 3594 ------- null} - -t 4.07184 -s 10 -d 7 -p ack -e 40 -c 0 -i 7198 -a 0 -x {10.0 9.0 3594 ------- null} h -t 4.07184 -s 10 -d 7 -p ack -e 40 -c 0 -i 7198 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.0724 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7185 -a 0 -x {9.0 10.0 3597 ------- null} - -t 4.0724 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7185 -a 0 -x {9.0 10.0 3597 ------- null} h -t 4.0724 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7185 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.07246 -s 0 -d 9 -p ack -e 40 -c 0 -i 7188 -a 0 -x {10.0 9.0 3589 ------- null} + -t 4.07246 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7199 -a 0 -x {9.0 10.0 3604 ------- null} - -t 4.07246 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7199 -a 0 -x {9.0 10.0 3604 ------- null} h -t 4.07246 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7199 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.07254 -s 0 -d 9 -p ack -e 40 -c 0 -i 7192 -a 0 -x {10.0 9.0 3591 ------- null} - -t 4.07254 -s 0 -d 9 -p ack -e 40 -c 0 -i 7192 -a 0 -x {10.0 9.0 3591 ------- null} h -t 4.07254 -s 0 -d 9 -p ack -e 40 -c 0 -i 7192 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.07274 -s 10 -d 7 -p ack -e 40 -c 0 -i 7196 -a 0 -x {10.0 9.0 3593 ------- null} + -t 4.07274 -s 7 -d 0 -p ack -e 40 -c 0 -i 7196 -a 0 -x {10.0 9.0 3593 ------- null} h -t 4.07274 -s 7 -d 8 -p ack -e 40 -c 0 -i 7196 -a 0 -x {10.0 9.0 3593 ------- null} r -t 4.07293 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7181 -a 0 -x {9.0 10.0 3595 ------- null} + -t 4.07293 -s 10 -d 7 -p ack -e 40 -c 0 -i 7200 -a 0 -x {10.0 9.0 3595 ------- null} - -t 4.07293 -s 10 -d 7 -p ack -e 40 -c 0 -i 7200 -a 0 -x {10.0 9.0 3595 ------- null} h -t 4.07293 -s 10 -d 7 -p ack -e 40 -c 0 -i 7200 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.07301 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7195 -a 0 -x {9.0 10.0 3602 ------- null} + -t 4.07301 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7195 -a 0 -x {9.0 10.0 3602 ------- null} h -t 4.07301 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7195 -a 0 -x {9.0 10.0 3602 ------- null} + -t 4.07349 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7187 -a 0 -x {9.0 10.0 3598 ------- null} - -t 4.07349 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7187 -a 0 -x {9.0 10.0 3598 ------- null} h -t 4.07349 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7187 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.07358 -s 0 -d 9 -p ack -e 40 -c 0 -i 7190 -a 0 -x {10.0 9.0 3590 ------- null} + -t 4.07358 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7201 -a 0 -x {9.0 10.0 3605 ------- null} - -t 4.07358 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7201 -a 0 -x {9.0 10.0 3605 ------- null} h -t 4.07358 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7201 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.0737 -s 0 -d 9 -p ack -e 40 -c 0 -i 7194 -a 0 -x {10.0 9.0 3592 ------- null} - -t 4.0737 -s 0 -d 9 -p ack -e 40 -c 0 -i 7194 -a 0 -x {10.0 9.0 3592 ------- null} h -t 4.0737 -s 0 -d 9 -p ack -e 40 -c 0 -i 7194 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.07387 -s 10 -d 7 -p ack -e 40 -c 0 -i 7198 -a 0 -x {10.0 9.0 3594 ------- null} + -t 4.07387 -s 7 -d 0 -p ack -e 40 -c 0 -i 7198 -a 0 -x {10.0 9.0 3594 ------- null} h -t 4.07387 -s 7 -d 8 -p ack -e 40 -c 0 -i 7198 -a 0 -x {10.0 9.0 3594 ------- null} r -t 4.07395 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7197 -a 0 -x {9.0 10.0 3603 ------- null} + -t 4.07395 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7197 -a 0 -x {9.0 10.0 3603 ------- null} h -t 4.07395 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7197 -a 0 -x {9.0 10.0 3603 ------- null} r -t 4.07411 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7183 -a 0 -x {9.0 10.0 3596 ------- null} + -t 4.07411 -s 10 -d 7 -p ack -e 40 -c 0 -i 7202 -a 0 -x {10.0 9.0 3596 ------- null} - -t 4.07411 -s 10 -d 7 -p ack -e 40 -c 0 -i 7202 -a 0 -x {10.0 9.0 3596 ------- null} h -t 4.07411 -s 10 -d 7 -p ack -e 40 -c 0 -i 7202 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.07458 -s 0 -d 9 -p ack -e 40 -c 0 -i 7192 -a 0 -x {10.0 9.0 3591 ------- null} + -t 4.07458 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7203 -a 0 -x {9.0 10.0 3606 ------- null} - -t 4.07458 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7203 -a 0 -x {9.0 10.0 3606 ------- null} h -t 4.07458 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7203 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.07458 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7189 -a 0 -x {9.0 10.0 3599 ------- null} - -t 4.07458 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7189 -a 0 -x {9.0 10.0 3599 ------- null} h -t 4.07458 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7189 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.07482 -s 0 -d 9 -p ack -e 40 -c 0 -i 7196 -a 0 -x {10.0 9.0 3593 ------- null} - -t 4.07482 -s 0 -d 9 -p ack -e 40 -c 0 -i 7196 -a 0 -x {10.0 9.0 3593 ------- null} h -t 4.07482 -s 0 -d 9 -p ack -e 40 -c 0 -i 7196 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.07496 -s 10 -d 7 -p ack -e 40 -c 0 -i 7200 -a 0 -x {10.0 9.0 3595 ------- null} + -t 4.07496 -s 7 -d 0 -p ack -e 40 -c 0 -i 7200 -a 0 -x {10.0 9.0 3595 ------- null} h -t 4.07496 -s 7 -d 8 -p ack -e 40 -c 0 -i 7200 -a 0 -x {10.0 9.0 3595 ------- null} r -t 4.0752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7185 -a 0 -x {9.0 10.0 3597 ------- null} + -t 4.0752 -s 10 -d 7 -p ack -e 40 -c 0 -i 7204 -a 0 -x {10.0 9.0 3597 ------- null} - -t 4.0752 -s 10 -d 7 -p ack -e 40 -c 0 -i 7204 -a 0 -x {10.0 9.0 3597 ------- null} h -t 4.0752 -s 10 -d 7 -p ack -e 40 -c 0 -i 7204 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.07526 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7199 -a 0 -x {9.0 10.0 3604 ------- null} + -t 4.07526 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7199 -a 0 -x {9.0 10.0 3604 ------- null} h -t 4.07526 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7199 -a 0 -x {9.0 10.0 3604 ------- null} + -t 4.07566 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7191 -a 0 -x {9.0 10.0 3600 ------- null} - -t 4.07566 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7191 -a 0 -x {9.0 10.0 3600 ------- null} h -t 4.07566 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7191 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.07573 -s 0 -d 9 -p ack -e 40 -c 0 -i 7194 -a 0 -x {10.0 9.0 3592 ------- null} + -t 4.07573 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7205 -a 0 -x {9.0 10.0 3607 ------- null} - -t 4.07573 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7205 -a 0 -x {9.0 10.0 3607 ------- null} h -t 4.07573 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7205 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.07581 -s 0 -d 9 -p ack -e 40 -c 0 -i 7198 -a 0 -x {10.0 9.0 3594 ------- null} - -t 4.07581 -s 0 -d 9 -p ack -e 40 -c 0 -i 7198 -a 0 -x {10.0 9.0 3594 ------- null} h -t 4.07581 -s 0 -d 9 -p ack -e 40 -c 0 -i 7198 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.07614 -s 10 -d 7 -p ack -e 40 -c 0 -i 7202 -a 0 -x {10.0 9.0 3596 ------- null} + -t 4.07614 -s 7 -d 0 -p ack -e 40 -c 0 -i 7202 -a 0 -x {10.0 9.0 3596 ------- null} h -t 4.07614 -s 7 -d 8 -p ack -e 40 -c 0 -i 7202 -a 0 -x {10.0 9.0 3596 ------- null} r -t 4.07629 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7187 -a 0 -x {9.0 10.0 3598 ------- null} + -t 4.07629 -s 10 -d 7 -p ack -e 40 -c 0 -i 7206 -a 0 -x {10.0 9.0 3598 ------- null} - -t 4.07629 -s 10 -d 7 -p ack -e 40 -c 0 -i 7206 -a 0 -x {10.0 9.0 3598 ------- null} h -t 4.07629 -s 10 -d 7 -p ack -e 40 -c 0 -i 7206 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.07638 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7201 -a 0 -x {9.0 10.0 3605 ------- null} + -t 4.07638 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7201 -a 0 -x {9.0 10.0 3605 ------- null} h -t 4.07638 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7201 -a 0 -x {9.0 10.0 3605 ------- null} + -t 4.07675 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7193 -a 0 -x {9.0 10.0 3601 ------- null} - -t 4.07675 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7193 -a 0 -x {9.0 10.0 3601 ------- null} h -t 4.07675 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7193 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.07685 -s 0 -d 9 -p ack -e 40 -c 0 -i 7196 -a 0 -x {10.0 9.0 3593 ------- null} + -t 4.07685 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7207 -a 0 -x {9.0 10.0 3608 ------- null} - -t 4.07685 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7207 -a 0 -x {9.0 10.0 3608 ------- null} h -t 4.07685 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7207 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.07702 -s 0 -d 9 -p ack -e 40 -c 0 -i 7200 -a 0 -x {10.0 9.0 3595 ------- null} - -t 4.07702 -s 0 -d 9 -p ack -e 40 -c 0 -i 7200 -a 0 -x {10.0 9.0 3595 ------- null} h -t 4.07702 -s 0 -d 9 -p ack -e 40 -c 0 -i 7200 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.07723 -s 10 -d 7 -p ack -e 40 -c 0 -i 7204 -a 0 -x {10.0 9.0 3597 ------- null} + -t 4.07723 -s 7 -d 0 -p ack -e 40 -c 0 -i 7204 -a 0 -x {10.0 9.0 3597 ------- null} h -t 4.07723 -s 7 -d 8 -p ack -e 40 -c 0 -i 7204 -a 0 -x {10.0 9.0 3597 ------- null} r -t 4.07738 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7203 -a 0 -x {9.0 10.0 3606 ------- null} + -t 4.07738 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7203 -a 0 -x {9.0 10.0 3606 ------- null} h -t 4.07738 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7203 -a 0 -x {9.0 10.0 3606 ------- null} r -t 4.07738 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7189 -a 0 -x {9.0 10.0 3599 ------- null} + -t 4.07738 -s 10 -d 7 -p ack -e 40 -c 0 -i 7208 -a 0 -x {10.0 9.0 3599 ------- null} - -t 4.07738 -s 10 -d 7 -p ack -e 40 -c 0 -i 7208 -a 0 -x {10.0 9.0 3599 ------- null} h -t 4.07738 -s 10 -d 7 -p ack -e 40 -c 0 -i 7208 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.07784 -s 0 -d 9 -p ack -e 40 -c 0 -i 7198 -a 0 -x {10.0 9.0 3594 ------- null} + -t 4.07784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7209 -a 0 -x {9.0 10.0 3609 ------- null} - -t 4.07784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7209 -a 0 -x {9.0 10.0 3609 ------- null} h -t 4.07784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7209 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.07797 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7195 -a 0 -x {9.0 10.0 3602 ------- null} - -t 4.07797 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7195 -a 0 -x {9.0 10.0 3602 ------- null} h -t 4.07797 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7195 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.07827 -s 0 -d 9 -p ack -e 40 -c 0 -i 7202 -a 0 -x {10.0 9.0 3596 ------- null} - -t 4.07827 -s 0 -d 9 -p ack -e 40 -c 0 -i 7202 -a 0 -x {10.0 9.0 3596 ------- null} h -t 4.07827 -s 0 -d 9 -p ack -e 40 -c 0 -i 7202 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.07832 -s 10 -d 7 -p ack -e 40 -c 0 -i 7206 -a 0 -x {10.0 9.0 3598 ------- null} + -t 4.07832 -s 7 -d 0 -p ack -e 40 -c 0 -i 7206 -a 0 -x {10.0 9.0 3598 ------- null} h -t 4.07832 -s 7 -d 8 -p ack -e 40 -c 0 -i 7206 -a 0 -x {10.0 9.0 3598 ------- null} r -t 4.07846 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7191 -a 0 -x {9.0 10.0 3600 ------- null} + -t 4.07846 -s 10 -d 7 -p ack -e 40 -c 0 -i 7210 -a 0 -x {10.0 9.0 3600 ------- null} - -t 4.07846 -s 10 -d 7 -p ack -e 40 -c 0 -i 7210 -a 0 -x {10.0 9.0 3600 ------- null} h -t 4.07846 -s 10 -d 7 -p ack -e 40 -c 0 -i 7210 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.07853 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7205 -a 0 -x {9.0 10.0 3607 ------- null} + -t 4.07853 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7205 -a 0 -x {9.0 10.0 3607 ------- null} h -t 4.07853 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7205 -a 0 -x {9.0 10.0 3607 ------- null} r -t 4.07906 -s 0 -d 9 -p ack -e 40 -c 0 -i 7200 -a 0 -x {10.0 9.0 3595 ------- null} + -t 4.07906 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7211 -a 0 -x {9.0 10.0 3610 ------- null} - -t 4.07906 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7211 -a 0 -x {9.0 10.0 3610 ------- null} h -t 4.07906 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7211 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.0793 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7197 -a 0 -x {9.0 10.0 3603 ------- null} - -t 4.0793 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7197 -a 0 -x {9.0 10.0 3603 ------- null} h -t 4.0793 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7197 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.07941 -s 10 -d 7 -p ack -e 40 -c 0 -i 7208 -a 0 -x {10.0 9.0 3599 ------- null} + -t 4.07941 -s 7 -d 0 -p ack -e 40 -c 0 -i 7208 -a 0 -x {10.0 9.0 3599 ------- null} h -t 4.07941 -s 7 -d 8 -p ack -e 40 -c 0 -i 7208 -a 0 -x {10.0 9.0 3599 ------- null} r -t 4.07955 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7193 -a 0 -x {9.0 10.0 3601 ------- null} + -t 4.07955 -s 10 -d 7 -p ack -e 40 -c 0 -i 7212 -a 0 -x {10.0 9.0 3601 ------- null} - -t 4.07955 -s 10 -d 7 -p ack -e 40 -c 0 -i 7212 -a 0 -x {10.0 9.0 3601 ------- null} h -t 4.07955 -s 10 -d 7 -p ack -e 40 -c 0 -i 7212 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.07957 -s 0 -d 9 -p ack -e 40 -c 0 -i 7204 -a 0 -x {10.0 9.0 3597 ------- null} - -t 4.07957 -s 0 -d 9 -p ack -e 40 -c 0 -i 7204 -a 0 -x {10.0 9.0 3597 ------- null} h -t 4.07957 -s 0 -d 9 -p ack -e 40 -c 0 -i 7204 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.07965 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7207 -a 0 -x {9.0 10.0 3608 ------- null} + -t 4.07965 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7207 -a 0 -x {9.0 10.0 3608 ------- null} h -t 4.07965 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7207 -a 0 -x {9.0 10.0 3608 ------- null} r -t 4.0803 -s 0 -d 9 -p ack -e 40 -c 0 -i 7202 -a 0 -x {10.0 9.0 3596 ------- null} + -t 4.0803 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7213 -a 0 -x {9.0 10.0 3611 ------- null} - -t 4.0803 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7213 -a 0 -x {9.0 10.0 3611 ------- null} h -t 4.0803 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7213 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.08043 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7199 -a 0 -x {9.0 10.0 3604 ------- null} - -t 4.08043 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7199 -a 0 -x {9.0 10.0 3604 ------- null} h -t 4.08043 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7199 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.0805 -s 10 -d 7 -p ack -e 40 -c 0 -i 7210 -a 0 -x {10.0 9.0 3600 ------- null} + -t 4.0805 -s 7 -d 0 -p ack -e 40 -c 0 -i 7210 -a 0 -x {10.0 9.0 3600 ------- null} h -t 4.0805 -s 7 -d 8 -p ack -e 40 -c 0 -i 7210 -a 0 -x {10.0 9.0 3600 ------- null} r -t 4.08064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7209 -a 0 -x {9.0 10.0 3609 ------- null} + -t 4.08064 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7209 -a 0 -x {9.0 10.0 3609 ------- null} h -t 4.08064 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7209 -a 0 -x {9.0 10.0 3609 ------- null} + -t 4.0807 -s 0 -d 9 -p ack -e 40 -c 0 -i 7206 -a 0 -x {10.0 9.0 3598 ------- null} - -t 4.0807 -s 0 -d 9 -p ack -e 40 -c 0 -i 7206 -a 0 -x {10.0 9.0 3598 ------- null} h -t 4.0807 -s 0 -d 9 -p ack -e 40 -c 0 -i 7206 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.08077 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7195 -a 0 -x {9.0 10.0 3602 ------- null} + -t 4.08077 -s 10 -d 7 -p ack -e 40 -c 0 -i 7214 -a 0 -x {10.0 9.0 3602 ------- null} - -t 4.08077 -s 10 -d 7 -p ack -e 40 -c 0 -i 7214 -a 0 -x {10.0 9.0 3602 ------- null} h -t 4.08077 -s 10 -d 7 -p ack -e 40 -c 0 -i 7214 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.08158 -s 10 -d 7 -p ack -e 40 -c 0 -i 7212 -a 0 -x {10.0 9.0 3601 ------- null} + -t 4.08158 -s 7 -d 0 -p ack -e 40 -c 0 -i 7212 -a 0 -x {10.0 9.0 3601 ------- null} h -t 4.08158 -s 7 -d 8 -p ack -e 40 -c 0 -i 7212 -a 0 -x {10.0 9.0 3601 ------- null} r -t 4.0816 -s 0 -d 9 -p ack -e 40 -c 0 -i 7204 -a 0 -x {10.0 9.0 3597 ------- null} + -t 4.0816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7215 -a 0 -x {9.0 10.0 3612 ------- null} - -t 4.0816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7215 -a 0 -x {9.0 10.0 3612 ------- null} h -t 4.0816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7215 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.08168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7201 -a 0 -x {9.0 10.0 3605 ------- null} - -t 4.08168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7201 -a 0 -x {9.0 10.0 3605 ------- null} h -t 4.08168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7201 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.08186 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7211 -a 0 -x {9.0 10.0 3610 ------- null} + -t 4.08186 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7211 -a 0 -x {9.0 10.0 3610 ------- null} h -t 4.08186 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7211 -a 0 -x {9.0 10.0 3610 ------- null} + -t 4.08198 -s 0 -d 9 -p ack -e 40 -c 0 -i 7208 -a 0 -x {10.0 9.0 3599 ------- null} - -t 4.08198 -s 0 -d 9 -p ack -e 40 -c 0 -i 7208 -a 0 -x {10.0 9.0 3599 ------- null} h -t 4.08198 -s 0 -d 9 -p ack -e 40 -c 0 -i 7208 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.0821 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7197 -a 0 -x {9.0 10.0 3603 ------- null} + -t 4.0821 -s 10 -d 7 -p ack -e 40 -c 0 -i 7216 -a 0 -x {10.0 9.0 3603 ------- null} - -t 4.0821 -s 10 -d 7 -p ack -e 40 -c 0 -i 7216 -a 0 -x {10.0 9.0 3603 ------- null} h -t 4.0821 -s 10 -d 7 -p ack -e 40 -c 0 -i 7216 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.08274 -s 0 -d 9 -p ack -e 40 -c 0 -i 7206 -a 0 -x {10.0 9.0 3598 ------- null} + -t 4.08274 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7217 -a 0 -x {9.0 10.0 3613 ------- null} - -t 4.08274 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7217 -a 0 -x {9.0 10.0 3613 ------- null} h -t 4.08274 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7217 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.0828 -s 10 -d 7 -p ack -e 40 -c 0 -i 7214 -a 0 -x {10.0 9.0 3602 ------- null} + -t 4.0828 -s 7 -d 0 -p ack -e 40 -c 0 -i 7214 -a 0 -x {10.0 9.0 3602 ------- null} h -t 4.0828 -s 7 -d 8 -p ack -e 40 -c 0 -i 7214 -a 0 -x {10.0 9.0 3602 ------- null} + -t 4.08293 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7203 -a 0 -x {9.0 10.0 3606 ------- null} - -t 4.08293 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7203 -a 0 -x {9.0 10.0 3606 ------- null} h -t 4.08293 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7203 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.08306 -s 0 -d 9 -p ack -e 40 -c 0 -i 7210 -a 0 -x {10.0 9.0 3600 ------- null} - -t 4.08306 -s 0 -d 9 -p ack -e 40 -c 0 -i 7210 -a 0 -x {10.0 9.0 3600 ------- null} h -t 4.08306 -s 0 -d 9 -p ack -e 40 -c 0 -i 7210 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.0831 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7213 -a 0 -x {9.0 10.0 3611 ------- null} + -t 4.0831 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7213 -a 0 -x {9.0 10.0 3611 ------- null} h -t 4.0831 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7213 -a 0 -x {9.0 10.0 3611 ------- null} r -t 4.08323 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7199 -a 0 -x {9.0 10.0 3604 ------- null} + -t 4.08323 -s 10 -d 7 -p ack -e 40 -c 0 -i 7218 -a 0 -x {10.0 9.0 3604 ------- null} - -t 4.08323 -s 10 -d 7 -p ack -e 40 -c 0 -i 7218 -a 0 -x {10.0 9.0 3604 ------- null} h -t 4.08323 -s 10 -d 7 -p ack -e 40 -c 0 -i 7218 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.08402 -s 0 -d 9 -p ack -e 40 -c 0 -i 7208 -a 0 -x {10.0 9.0 3599 ------- null} + -t 4.08402 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7219 -a 0 -x {9.0 10.0 3614 ------- null} - -t 4.08402 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7219 -a 0 -x {9.0 10.0 3614 ------- null} h -t 4.08402 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7219 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.08402 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7205 -a 0 -x {9.0 10.0 3607 ------- null} - -t 4.08402 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7205 -a 0 -x {9.0 10.0 3607 ------- null} h -t 4.08402 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7205 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.0841 -s 0 -d 9 -p ack -e 40 -c 0 -i 7212 -a 0 -x {10.0 9.0 3601 ------- null} - -t 4.0841 -s 0 -d 9 -p ack -e 40 -c 0 -i 7212 -a 0 -x {10.0 9.0 3601 ------- null} h -t 4.0841 -s 0 -d 9 -p ack -e 40 -c 0 -i 7212 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.08413 -s 10 -d 7 -p ack -e 40 -c 0 -i 7216 -a 0 -x {10.0 9.0 3603 ------- null} + -t 4.08413 -s 7 -d 0 -p ack -e 40 -c 0 -i 7216 -a 0 -x {10.0 9.0 3603 ------- null} h -t 4.08413 -s 7 -d 8 -p ack -e 40 -c 0 -i 7216 -a 0 -x {10.0 9.0 3603 ------- null} r -t 4.0844 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7215 -a 0 -x {9.0 10.0 3612 ------- null} + -t 4.0844 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7215 -a 0 -x {9.0 10.0 3612 ------- null} h -t 4.0844 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7215 -a 0 -x {9.0 10.0 3612 ------- null} r -t 4.08448 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7201 -a 0 -x {9.0 10.0 3605 ------- null} + -t 4.08448 -s 10 -d 7 -p ack -e 40 -c 0 -i 7220 -a 0 -x {10.0 9.0 3605 ------- null} - -t 4.08448 -s 10 -d 7 -p ack -e 40 -c 0 -i 7220 -a 0 -x {10.0 9.0 3605 ------- null} h -t 4.08448 -s 10 -d 7 -p ack -e 40 -c 0 -i 7220 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.08509 -s 0 -d 9 -p ack -e 40 -c 0 -i 7210 -a 0 -x {10.0 9.0 3600 ------- null} + -t 4.08509 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7221 -a 0 -x {9.0 10.0 3615 ------- null} - -t 4.08509 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7221 -a 0 -x {9.0 10.0 3615 ------- null} h -t 4.08509 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7221 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.0851 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7207 -a 0 -x {9.0 10.0 3608 ------- null} - -t 4.0851 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7207 -a 0 -x {9.0 10.0 3608 ------- null} h -t 4.0851 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7207 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.0852 -s 0 -d 9 -p ack -e 40 -c 0 -i 7214 -a 0 -x {10.0 9.0 3602 ------- null} - -t 4.0852 -s 0 -d 9 -p ack -e 40 -c 0 -i 7214 -a 0 -x {10.0 9.0 3602 ------- null} h -t 4.0852 -s 0 -d 9 -p ack -e 40 -c 0 -i 7214 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.08526 -s 10 -d 7 -p ack -e 40 -c 0 -i 7218 -a 0 -x {10.0 9.0 3604 ------- null} + -t 4.08526 -s 7 -d 0 -p ack -e 40 -c 0 -i 7218 -a 0 -x {10.0 9.0 3604 ------- null} h -t 4.08526 -s 7 -d 8 -p ack -e 40 -c 0 -i 7218 -a 0 -x {10.0 9.0 3604 ------- null} r -t 4.08554 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7217 -a 0 -x {9.0 10.0 3613 ------- null} + -t 4.08554 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7217 -a 0 -x {9.0 10.0 3613 ------- null} h -t 4.08554 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7217 -a 0 -x {9.0 10.0 3613 ------- null} r -t 4.08573 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7203 -a 0 -x {9.0 10.0 3606 ------- null} + -t 4.08573 -s 10 -d 7 -p ack -e 40 -c 0 -i 7222 -a 0 -x {10.0 9.0 3606 ------- null} - -t 4.08573 -s 10 -d 7 -p ack -e 40 -c 0 -i 7222 -a 0 -x {10.0 9.0 3606 ------- null} h -t 4.08573 -s 10 -d 7 -p ack -e 40 -c 0 -i 7222 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.08613 -s 0 -d 9 -p ack -e 40 -c 0 -i 7212 -a 0 -x {10.0 9.0 3601 ------- null} + -t 4.08613 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7223 -a 0 -x {9.0 10.0 3616 ------- null} - -t 4.08613 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7223 -a 0 -x {9.0 10.0 3616 ------- null} h -t 4.08613 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7223 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.08619 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7209 -a 0 -x {9.0 10.0 3609 ------- null} - -t 4.08619 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7209 -a 0 -x {9.0 10.0 3609 ------- null} h -t 4.08619 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7209 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.0863 -s 0 -d 9 -p ack -e 40 -c 0 -i 7216 -a 0 -x {10.0 9.0 3603 ------- null} - -t 4.0863 -s 0 -d 9 -p ack -e 40 -c 0 -i 7216 -a 0 -x {10.0 9.0 3603 ------- null} h -t 4.0863 -s 0 -d 9 -p ack -e 40 -c 0 -i 7216 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.08651 -s 10 -d 7 -p ack -e 40 -c 0 -i 7220 -a 0 -x {10.0 9.0 3605 ------- null} + -t 4.08651 -s 7 -d 0 -p ack -e 40 -c 0 -i 7220 -a 0 -x {10.0 9.0 3605 ------- null} h -t 4.08651 -s 7 -d 8 -p ack -e 40 -c 0 -i 7220 -a 0 -x {10.0 9.0 3605 ------- null} r -t 4.08682 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7219 -a 0 -x {9.0 10.0 3614 ------- null} + -t 4.08682 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7219 -a 0 -x {9.0 10.0 3614 ------- null} h -t 4.08682 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7219 -a 0 -x {9.0 10.0 3614 ------- null} r -t 4.08682 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7205 -a 0 -x {9.0 10.0 3607 ------- null} + -t 4.08682 -s 10 -d 7 -p ack -e 40 -c 0 -i 7224 -a 0 -x {10.0 9.0 3607 ------- null} - -t 4.08682 -s 10 -d 7 -p ack -e 40 -c 0 -i 7224 -a 0 -x {10.0 9.0 3607 ------- null} h -t 4.08682 -s 10 -d 7 -p ack -e 40 -c 0 -i 7224 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.08723 -s 0 -d 9 -p ack -e 40 -c 0 -i 7214 -a 0 -x {10.0 9.0 3602 ------- null} + -t 4.08723 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7225 -a 0 -x {9.0 10.0 3617 ------- null} - -t 4.08723 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7225 -a 0 -x {9.0 10.0 3617 ------- null} h -t 4.08723 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7225 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.08728 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7211 -a 0 -x {9.0 10.0 3610 ------- null} - -t 4.08728 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7211 -a 0 -x {9.0 10.0 3610 ------- null} h -t 4.08728 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7211 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.08749 -s 0 -d 9 -p ack -e 40 -c 0 -i 7218 -a 0 -x {10.0 9.0 3604 ------- null} - -t 4.08749 -s 0 -d 9 -p ack -e 40 -c 0 -i 7218 -a 0 -x {10.0 9.0 3604 ------- null} h -t 4.08749 -s 0 -d 9 -p ack -e 40 -c 0 -i 7218 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.08776 -s 10 -d 7 -p ack -e 40 -c 0 -i 7222 -a 0 -x {10.0 9.0 3606 ------- null} + -t 4.08776 -s 7 -d 0 -p ack -e 40 -c 0 -i 7222 -a 0 -x {10.0 9.0 3606 ------- null} h -t 4.08776 -s 7 -d 8 -p ack -e 40 -c 0 -i 7222 -a 0 -x {10.0 9.0 3606 ------- null} r -t 4.08789 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7221 -a 0 -x {9.0 10.0 3615 ------- null} + -t 4.08789 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7221 -a 0 -x {9.0 10.0 3615 ------- null} h -t 4.08789 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7221 -a 0 -x {9.0 10.0 3615 ------- null} r -t 4.0879 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7207 -a 0 -x {9.0 10.0 3608 ------- null} + -t 4.0879 -s 10 -d 7 -p ack -e 40 -c 0 -i 7226 -a 0 -x {10.0 9.0 3608 ------- null} - -t 4.0879 -s 10 -d 7 -p ack -e 40 -c 0 -i 7226 -a 0 -x {10.0 9.0 3608 ------- null} h -t 4.0879 -s 10 -d 7 -p ack -e 40 -c 0 -i 7226 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.08834 -s 0 -d 9 -p ack -e 40 -c 0 -i 7216 -a 0 -x {10.0 9.0 3603 ------- null} + -t 4.08834 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7227 -a 0 -x {9.0 10.0 3618 ------- null} - -t 4.08834 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7227 -a 0 -x {9.0 10.0 3618 ------- null} h -t 4.08834 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7227 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.08837 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7213 -a 0 -x {9.0 10.0 3611 ------- null} - -t 4.08837 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7213 -a 0 -x {9.0 10.0 3611 ------- null} h -t 4.08837 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7213 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.08848 -s 0 -d 9 -p ack -e 40 -c 0 -i 7220 -a 0 -x {10.0 9.0 3605 ------- null} - -t 4.08848 -s 0 -d 9 -p ack -e 40 -c 0 -i 7220 -a 0 -x {10.0 9.0 3605 ------- null} h -t 4.08848 -s 0 -d 9 -p ack -e 40 -c 0 -i 7220 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.08885 -s 10 -d 7 -p ack -e 40 -c 0 -i 7224 -a 0 -x {10.0 9.0 3607 ------- null} + -t 4.08885 -s 7 -d 0 -p ack -e 40 -c 0 -i 7224 -a 0 -x {10.0 9.0 3607 ------- null} h -t 4.08885 -s 7 -d 8 -p ack -e 40 -c 0 -i 7224 -a 0 -x {10.0 9.0 3607 ------- null} r -t 4.08893 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7223 -a 0 -x {9.0 10.0 3616 ------- null} + -t 4.08893 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7223 -a 0 -x {9.0 10.0 3616 ------- null} h -t 4.08893 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7223 -a 0 -x {9.0 10.0 3616 ------- null} r -t 4.08899 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7209 -a 0 -x {9.0 10.0 3609 ------- null} + -t 4.08899 -s 10 -d 7 -p ack -e 40 -c 0 -i 7228 -a 0 -x {10.0 9.0 3609 ------- null} - -t 4.08899 -s 10 -d 7 -p ack -e 40 -c 0 -i 7228 -a 0 -x {10.0 9.0 3609 ------- null} h -t 4.08899 -s 10 -d 7 -p ack -e 40 -c 0 -i 7228 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.08946 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7215 -a 0 -x {9.0 10.0 3612 ------- null} - -t 4.08946 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7215 -a 0 -x {9.0 10.0 3612 ------- null} h -t 4.08946 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7215 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.08952 -s 0 -d 9 -p ack -e 40 -c 0 -i 7218 -a 0 -x {10.0 9.0 3604 ------- null} + -t 4.08952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7229 -a 0 -x {9.0 10.0 3619 ------- null} - -t 4.08952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7229 -a 0 -x {9.0 10.0 3619 ------- null} h -t 4.08952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7229 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.08958 -s 0 -d 9 -p ack -e 40 -c 0 -i 7222 -a 0 -x {10.0 9.0 3606 ------- null} - -t 4.08958 -s 0 -d 9 -p ack -e 40 -c 0 -i 7222 -a 0 -x {10.0 9.0 3606 ------- null} h -t 4.08958 -s 0 -d 9 -p ack -e 40 -c 0 -i 7222 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.08994 -s 10 -d 7 -p ack -e 40 -c 0 -i 7226 -a 0 -x {10.0 9.0 3608 ------- null} + -t 4.08994 -s 7 -d 0 -p ack -e 40 -c 0 -i 7226 -a 0 -x {10.0 9.0 3608 ------- null} h -t 4.08994 -s 7 -d 8 -p ack -e 40 -c 0 -i 7226 -a 0 -x {10.0 9.0 3608 ------- null} r -t 4.09003 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7225 -a 0 -x {9.0 10.0 3617 ------- null} + -t 4.09003 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7225 -a 0 -x {9.0 10.0 3617 ------- null} h -t 4.09003 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7225 -a 0 -x {9.0 10.0 3617 ------- null} r -t 4.09008 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7211 -a 0 -x {9.0 10.0 3610 ------- null} + -t 4.09008 -s 10 -d 7 -p ack -e 40 -c 0 -i 7230 -a 0 -x {10.0 9.0 3610 ------- null} - -t 4.09008 -s 10 -d 7 -p ack -e 40 -c 0 -i 7230 -a 0 -x {10.0 9.0 3610 ------- null} h -t 4.09008 -s 10 -d 7 -p ack -e 40 -c 0 -i 7230 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.09051 -s 0 -d 9 -p ack -e 40 -c 0 -i 7220 -a 0 -x {10.0 9.0 3605 ------- null} + -t 4.09051 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7231 -a 0 -x {9.0 10.0 3620 ------- null} - -t 4.09051 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7231 -a 0 -x {9.0 10.0 3620 ------- null} h -t 4.09051 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7231 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.09054 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7217 -a 0 -x {9.0 10.0 3613 ------- null} - -t 4.09054 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7217 -a 0 -x {9.0 10.0 3613 ------- null} h -t 4.09054 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7217 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.09064 -s 0 -d 9 -p ack -e 40 -c 0 -i 7224 -a 0 -x {10.0 9.0 3607 ------- null} - -t 4.09064 -s 0 -d 9 -p ack -e 40 -c 0 -i 7224 -a 0 -x {10.0 9.0 3607 ------- null} h -t 4.09064 -s 0 -d 9 -p ack -e 40 -c 0 -i 7224 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.09102 -s 10 -d 7 -p ack -e 40 -c 0 -i 7228 -a 0 -x {10.0 9.0 3609 ------- null} + -t 4.09102 -s 7 -d 0 -p ack -e 40 -c 0 -i 7228 -a 0 -x {10.0 9.0 3609 ------- null} h -t 4.09102 -s 7 -d 8 -p ack -e 40 -c 0 -i 7228 -a 0 -x {10.0 9.0 3609 ------- null} r -t 4.09114 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7227 -a 0 -x {9.0 10.0 3618 ------- null} + -t 4.09114 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7227 -a 0 -x {9.0 10.0 3618 ------- null} h -t 4.09114 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7227 -a 0 -x {9.0 10.0 3618 ------- null} r -t 4.09117 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7213 -a 0 -x {9.0 10.0 3611 ------- null} + -t 4.09117 -s 10 -d 7 -p ack -e 40 -c 0 -i 7232 -a 0 -x {10.0 9.0 3611 ------- null} - -t 4.09117 -s 10 -d 7 -p ack -e 40 -c 0 -i 7232 -a 0 -x {10.0 9.0 3611 ------- null} h -t 4.09117 -s 10 -d 7 -p ack -e 40 -c 0 -i 7232 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.09162 -s 0 -d 9 -p ack -e 40 -c 0 -i 7222 -a 0 -x {10.0 9.0 3606 ------- null} + -t 4.09162 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7233 -a 0 -x {9.0 10.0 3621 ------- null} - -t 4.09162 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7233 -a 0 -x {9.0 10.0 3621 ------- null} h -t 4.09162 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7233 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.09163 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7219 -a 0 -x {9.0 10.0 3614 ------- null} - -t 4.09163 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7219 -a 0 -x {9.0 10.0 3614 ------- null} h -t 4.09163 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7219 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.09189 -s 0 -d 9 -p ack -e 40 -c 0 -i 7226 -a 0 -x {10.0 9.0 3608 ------- null} - -t 4.09189 -s 0 -d 9 -p ack -e 40 -c 0 -i 7226 -a 0 -x {10.0 9.0 3608 ------- null} h -t 4.09189 -s 0 -d 9 -p ack -e 40 -c 0 -i 7226 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.09211 -s 10 -d 7 -p ack -e 40 -c 0 -i 7230 -a 0 -x {10.0 9.0 3610 ------- null} + -t 4.09211 -s 7 -d 0 -p ack -e 40 -c 0 -i 7230 -a 0 -x {10.0 9.0 3610 ------- null} h -t 4.09211 -s 7 -d 8 -p ack -e 40 -c 0 -i 7230 -a 0 -x {10.0 9.0 3610 ------- null} r -t 4.09226 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7215 -a 0 -x {9.0 10.0 3612 ------- null} + -t 4.09226 -s 10 -d 7 -p ack -e 40 -c 0 -i 7234 -a 0 -x {10.0 9.0 3612 ------- null} - -t 4.09226 -s 10 -d 7 -p ack -e 40 -c 0 -i 7234 -a 0 -x {10.0 9.0 3612 ------- null} h -t 4.09226 -s 10 -d 7 -p ack -e 40 -c 0 -i 7234 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.09232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7229 -a 0 -x {9.0 10.0 3619 ------- null} + -t 4.09232 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7229 -a 0 -x {9.0 10.0 3619 ------- null} h -t 4.09232 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7229 -a 0 -x {9.0 10.0 3619 ------- null} r -t 4.09267 -s 0 -d 9 -p ack -e 40 -c 0 -i 7224 -a 0 -x {10.0 9.0 3607 ------- null} + -t 4.09267 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7235 -a 0 -x {9.0 10.0 3622 ------- null} - -t 4.09267 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7235 -a 0 -x {9.0 10.0 3622 ------- null} h -t 4.09267 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7235 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.09272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7221 -a 0 -x {9.0 10.0 3615 ------- null} - -t 4.09272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7221 -a 0 -x {9.0 10.0 3615 ------- null} h -t 4.09272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7221 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.09302 -s 0 -d 9 -p ack -e 40 -c 0 -i 7228 -a 0 -x {10.0 9.0 3609 ------- null} - -t 4.09302 -s 0 -d 9 -p ack -e 40 -c 0 -i 7228 -a 0 -x {10.0 9.0 3609 ------- null} h -t 4.09302 -s 0 -d 9 -p ack -e 40 -c 0 -i 7228 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.0932 -s 10 -d 7 -p ack -e 40 -c 0 -i 7232 -a 0 -x {10.0 9.0 3611 ------- null} + -t 4.0932 -s 7 -d 0 -p ack -e 40 -c 0 -i 7232 -a 0 -x {10.0 9.0 3611 ------- null} h -t 4.0932 -s 7 -d 8 -p ack -e 40 -c 0 -i 7232 -a 0 -x {10.0 9.0 3611 ------- null} r -t 4.09331 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7231 -a 0 -x {9.0 10.0 3620 ------- null} + -t 4.09331 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7231 -a 0 -x {9.0 10.0 3620 ------- null} h -t 4.09331 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7231 -a 0 -x {9.0 10.0 3620 ------- null} r -t 4.09334 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7217 -a 0 -x {9.0 10.0 3613 ------- null} + -t 4.09334 -s 10 -d 7 -p ack -e 40 -c 0 -i 7236 -a 0 -x {10.0 9.0 3613 ------- null} - -t 4.09334 -s 10 -d 7 -p ack -e 40 -c 0 -i 7236 -a 0 -x {10.0 9.0 3613 ------- null} h -t 4.09334 -s 10 -d 7 -p ack -e 40 -c 0 -i 7236 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.09392 -s 0 -d 9 -p ack -e 40 -c 0 -i 7226 -a 0 -x {10.0 9.0 3608 ------- null} + -t 4.09392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7237 -a 0 -x {9.0 10.0 3623 ------- null} - -t 4.09392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7237 -a 0 -x {9.0 10.0 3623 ------- null} h -t 4.09392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7237 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.09392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7223 -a 0 -x {9.0 10.0 3616 ------- null} - -t 4.09392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7223 -a 0 -x {9.0 10.0 3616 ------- null} h -t 4.09392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7223 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.09406 -s 0 -d 9 -p ack -e 40 -c 0 -i 7230 -a 0 -x {10.0 9.0 3610 ------- null} - -t 4.09406 -s 0 -d 9 -p ack -e 40 -c 0 -i 7230 -a 0 -x {10.0 9.0 3610 ------- null} h -t 4.09406 -s 0 -d 9 -p ack -e 40 -c 0 -i 7230 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.09429 -s 10 -d 7 -p ack -e 40 -c 0 -i 7234 -a 0 -x {10.0 9.0 3612 ------- null} + -t 4.09429 -s 7 -d 0 -p ack -e 40 -c 0 -i 7234 -a 0 -x {10.0 9.0 3612 ------- null} h -t 4.09429 -s 7 -d 8 -p ack -e 40 -c 0 -i 7234 -a 0 -x {10.0 9.0 3612 ------- null} r -t 4.09442 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7233 -a 0 -x {9.0 10.0 3621 ------- null} + -t 4.09442 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7233 -a 0 -x {9.0 10.0 3621 ------- null} h -t 4.09442 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7233 -a 0 -x {9.0 10.0 3621 ------- null} r -t 4.09443 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7219 -a 0 -x {9.0 10.0 3614 ------- null} + -t 4.09443 -s 10 -d 7 -p ack -e 40 -c 0 -i 7238 -a 0 -x {10.0 9.0 3614 ------- null} - -t 4.09443 -s 10 -d 7 -p ack -e 40 -c 0 -i 7238 -a 0 -x {10.0 9.0 3614 ------- null} h -t 4.09443 -s 10 -d 7 -p ack -e 40 -c 0 -i 7238 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.09501 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7225 -a 0 -x {9.0 10.0 3617 ------- null} - -t 4.09501 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7225 -a 0 -x {9.0 10.0 3617 ------- null} h -t 4.09501 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7225 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.09506 -s 0 -d 9 -p ack -e 40 -c 0 -i 7228 -a 0 -x {10.0 9.0 3609 ------- null} + -t 4.09506 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7239 -a 0 -x {9.0 10.0 3624 ------- null} - -t 4.09506 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7239 -a 0 -x {9.0 10.0 3624 ------- null} h -t 4.09506 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7239 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.0953 -s 0 -d 9 -p ack -e 40 -c 0 -i 7232 -a 0 -x {10.0 9.0 3611 ------- null} - -t 4.0953 -s 0 -d 9 -p ack -e 40 -c 0 -i 7232 -a 0 -x {10.0 9.0 3611 ------- null} h -t 4.0953 -s 0 -d 9 -p ack -e 40 -c 0 -i 7232 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.09538 -s 10 -d 7 -p ack -e 40 -c 0 -i 7236 -a 0 -x {10.0 9.0 3613 ------- null} + -t 4.09538 -s 7 -d 0 -p ack -e 40 -c 0 -i 7236 -a 0 -x {10.0 9.0 3613 ------- null} h -t 4.09538 -s 7 -d 8 -p ack -e 40 -c 0 -i 7236 -a 0 -x {10.0 9.0 3613 ------- null} r -t 4.09547 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7235 -a 0 -x {9.0 10.0 3622 ------- null} + -t 4.09547 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7235 -a 0 -x {9.0 10.0 3622 ------- null} h -t 4.09547 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7235 -a 0 -x {9.0 10.0 3622 ------- null} r -t 4.09552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7221 -a 0 -x {9.0 10.0 3615 ------- null} + -t 4.09552 -s 10 -d 7 -p ack -e 40 -c 0 -i 7240 -a 0 -x {10.0 9.0 3615 ------- null} - -t 4.09552 -s 10 -d 7 -p ack -e 40 -c 0 -i 7240 -a 0 -x {10.0 9.0 3615 ------- null} h -t 4.09552 -s 10 -d 7 -p ack -e 40 -c 0 -i 7240 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.0961 -s 0 -d 9 -p ack -e 40 -c 0 -i 7230 -a 0 -x {10.0 9.0 3610 ------- null} + -t 4.0961 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7241 -a 0 -x {9.0 10.0 3625 ------- null} - -t 4.0961 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7241 -a 0 -x {9.0 10.0 3625 ------- null} h -t 4.0961 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7241 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.09629 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7227 -a 0 -x {9.0 10.0 3618 ------- null} - -t 4.09629 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7227 -a 0 -x {9.0 10.0 3618 ------- null} h -t 4.09629 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7227 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.09646 -s 10 -d 7 -p ack -e 40 -c 0 -i 7238 -a 0 -x {10.0 9.0 3614 ------- null} + -t 4.09646 -s 7 -d 0 -p ack -e 40 -c 0 -i 7238 -a 0 -x {10.0 9.0 3614 ------- null} h -t 4.09646 -s 7 -d 8 -p ack -e 40 -c 0 -i 7238 -a 0 -x {10.0 9.0 3614 ------- null} + -t 4.09658 -s 0 -d 9 -p ack -e 40 -c 0 -i 7234 -a 0 -x {10.0 9.0 3612 ------- null} - -t 4.09658 -s 0 -d 9 -p ack -e 40 -c 0 -i 7234 -a 0 -x {10.0 9.0 3612 ------- null} h -t 4.09658 -s 0 -d 9 -p ack -e 40 -c 0 -i 7234 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.09672 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7237 -a 0 -x {9.0 10.0 3623 ------- null} + -t 4.09672 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7237 -a 0 -x {9.0 10.0 3623 ------- null} h -t 4.09672 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7237 -a 0 -x {9.0 10.0 3623 ------- null} r -t 4.09672 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7223 -a 0 -x {9.0 10.0 3616 ------- null} + -t 4.09672 -s 10 -d 7 -p ack -e 40 -c 0 -i 7242 -a 0 -x {10.0 9.0 3616 ------- null} - -t 4.09672 -s 10 -d 7 -p ack -e 40 -c 0 -i 7242 -a 0 -x {10.0 9.0 3616 ------- null} h -t 4.09672 -s 10 -d 7 -p ack -e 40 -c 0 -i 7242 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.09733 -s 0 -d 9 -p ack -e 40 -c 0 -i 7232 -a 0 -x {10.0 9.0 3611 ------- null} + -t 4.09733 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7243 -a 0 -x {9.0 10.0 3626 ------- null} - -t 4.09733 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7243 -a 0 -x {9.0 10.0 3626 ------- null} h -t 4.09733 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7243 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.09755 -s 10 -d 7 -p ack -e 40 -c 0 -i 7240 -a 0 -x {10.0 9.0 3615 ------- null} + -t 4.09755 -s 7 -d 0 -p ack -e 40 -c 0 -i 7240 -a 0 -x {10.0 9.0 3615 ------- null} h -t 4.09755 -s 7 -d 8 -p ack -e 40 -c 0 -i 7240 -a 0 -x {10.0 9.0 3615 ------- null} + -t 4.0976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7229 -a 0 -x {9.0 10.0 3619 ------- null} - -t 4.0976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7229 -a 0 -x {9.0 10.0 3619 ------- null} h -t 4.0976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7229 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.09781 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7225 -a 0 -x {9.0 10.0 3617 ------- null} + -t 4.09781 -s 10 -d 7 -p ack -e 40 -c 0 -i 7244 -a 0 -x {10.0 9.0 3617 ------- null} - -t 4.09781 -s 10 -d 7 -p ack -e 40 -c 0 -i 7244 -a 0 -x {10.0 9.0 3617 ------- null} h -t 4.09781 -s 10 -d 7 -p ack -e 40 -c 0 -i 7244 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.09786 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7239 -a 0 -x {9.0 10.0 3624 ------- null} + -t 4.09786 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7239 -a 0 -x {9.0 10.0 3624 ------- null} h -t 4.09786 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7239 -a 0 -x {9.0 10.0 3624 ------- null} + -t 4.0979 -s 0 -d 9 -p ack -e 40 -c 0 -i 7236 -a 0 -x {10.0 9.0 3613 ------- null} - -t 4.0979 -s 0 -d 9 -p ack -e 40 -c 0 -i 7236 -a 0 -x {10.0 9.0 3613 ------- null} h -t 4.0979 -s 0 -d 9 -p ack -e 40 -c 0 -i 7236 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.09861 -s 0 -d 9 -p ack -e 40 -c 0 -i 7234 -a 0 -x {10.0 9.0 3612 ------- null} + -t 4.09861 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7245 -a 0 -x {9.0 10.0 3627 ------- null} - -t 4.09861 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7245 -a 0 -x {9.0 10.0 3627 ------- null} h -t 4.09861 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7245 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.09875 -s 10 -d 7 -p ack -e 40 -c 0 -i 7242 -a 0 -x {10.0 9.0 3616 ------- null} + -t 4.09875 -s 7 -d 0 -p ack -e 40 -c 0 -i 7242 -a 0 -x {10.0 9.0 3616 ------- null} h -t 4.09875 -s 7 -d 8 -p ack -e 40 -c 0 -i 7242 -a 0 -x {10.0 9.0 3616 ------- null} + -t 4.09888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7231 -a 0 -x {9.0 10.0 3620 ------- null} - -t 4.09888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7231 -a 0 -x {9.0 10.0 3620 ------- null} h -t 4.09888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7231 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.0989 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7241 -a 0 -x {9.0 10.0 3625 ------- null} + -t 4.0989 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7241 -a 0 -x {9.0 10.0 3625 ------- null} h -t 4.0989 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7241 -a 0 -x {9.0 10.0 3625 ------- null} + -t 4.09901 -s 0 -d 9 -p ack -e 40 -c 0 -i 7238 -a 0 -x {10.0 9.0 3614 ------- null} - -t 4.09901 -s 0 -d 9 -p ack -e 40 -c 0 -i 7238 -a 0 -x {10.0 9.0 3614 ------- null} h -t 4.09901 -s 0 -d 9 -p ack -e 40 -c 0 -i 7238 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.09909 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7227 -a 0 -x {9.0 10.0 3618 ------- null} + -t 4.09909 -s 10 -d 7 -p ack -e 40 -c 0 -i 7246 -a 0 -x {10.0 9.0 3618 ------- null} - -t 4.09909 -s 10 -d 7 -p ack -e 40 -c 0 -i 7246 -a 0 -x {10.0 9.0 3618 ------- null} h -t 4.09909 -s 10 -d 7 -p ack -e 40 -c 0 -i 7246 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.09984 -s 10 -d 7 -p ack -e 40 -c 0 -i 7244 -a 0 -x {10.0 9.0 3617 ------- null} + -t 4.09984 -s 7 -d 0 -p ack -e 40 -c 0 -i 7244 -a 0 -x {10.0 9.0 3617 ------- null} h -t 4.09984 -s 7 -d 8 -p ack -e 40 -c 0 -i 7244 -a 0 -x {10.0 9.0 3617 ------- null} r -t 4.09994 -s 0 -d 9 -p ack -e 40 -c 0 -i 7236 -a 0 -x {10.0 9.0 3613 ------- null} + -t 4.09994 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7247 -a 0 -x {9.0 10.0 3628 ------- null} - -t 4.09994 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7247 -a 0 -x {9.0 10.0 3628 ------- null} h -t 4.09994 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7247 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.09997 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7233 -a 0 -x {9.0 10.0 3621 ------- null} - -t 4.09997 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7233 -a 0 -x {9.0 10.0 3621 ------- null} h -t 4.09997 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7233 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.10003 -s 0 -d 9 -p ack -e 40 -c 0 -i 7240 -a 0 -x {10.0 9.0 3615 ------- null} - -t 4.10003 -s 0 -d 9 -p ack -e 40 -c 0 -i 7240 -a 0 -x {10.0 9.0 3615 ------- null} h -t 4.10003 -s 0 -d 9 -p ack -e 40 -c 0 -i 7240 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.10013 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7243 -a 0 -x {9.0 10.0 3626 ------- null} + -t 4.10013 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7243 -a 0 -x {9.0 10.0 3626 ------- null} h -t 4.10013 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7243 -a 0 -x {9.0 10.0 3626 ------- null} r -t 4.1004 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7229 -a 0 -x {9.0 10.0 3619 ------- null} + -t 4.1004 -s 10 -d 7 -p ack -e 40 -c 0 -i 7248 -a 0 -x {10.0 9.0 3619 ------- null} - -t 4.1004 -s 10 -d 7 -p ack -e 40 -c 0 -i 7248 -a 0 -x {10.0 9.0 3619 ------- null} h -t 4.1004 -s 10 -d 7 -p ack -e 40 -c 0 -i 7248 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.10104 -s 0 -d 9 -p ack -e 40 -c 0 -i 7238 -a 0 -x {10.0 9.0 3614 ------- null} + -t 4.10104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7249 -a 0 -x {9.0 10.0 3629 ------- null} - -t 4.10104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7249 -a 0 -x {9.0 10.0 3629 ------- null} h -t 4.10104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7249 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.10106 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7235 -a 0 -x {9.0 10.0 3622 ------- null} - -t 4.10106 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7235 -a 0 -x {9.0 10.0 3622 ------- null} h -t 4.10106 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7235 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.10112 -s 10 -d 7 -p ack -e 40 -c 0 -i 7246 -a 0 -x {10.0 9.0 3618 ------- null} + -t 4.10112 -s 7 -d 0 -p ack -e 40 -c 0 -i 7246 -a 0 -x {10.0 9.0 3618 ------- null} h -t 4.10112 -s 7 -d 8 -p ack -e 40 -c 0 -i 7246 -a 0 -x {10.0 9.0 3618 ------- null} + -t 4.10122 -s 0 -d 9 -p ack -e 40 -c 0 -i 7242 -a 0 -x {10.0 9.0 3616 ------- null} - -t 4.10122 -s 0 -d 9 -p ack -e 40 -c 0 -i 7242 -a 0 -x {10.0 9.0 3616 ------- null} h -t 4.10122 -s 0 -d 9 -p ack -e 40 -c 0 -i 7242 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.10141 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7245 -a 0 -x {9.0 10.0 3627 ------- null} + -t 4.10141 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7245 -a 0 -x {9.0 10.0 3627 ------- null} h -t 4.10141 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7245 -a 0 -x {9.0 10.0 3627 ------- null} r -t 4.10168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7231 -a 0 -x {9.0 10.0 3620 ------- null} + -t 4.10168 -s 10 -d 7 -p ack -e 40 -c 0 -i 7250 -a 0 -x {10.0 9.0 3620 ------- null} - -t 4.10168 -s 10 -d 7 -p ack -e 40 -c 0 -i 7250 -a 0 -x {10.0 9.0 3620 ------- null} h -t 4.10168 -s 10 -d 7 -p ack -e 40 -c 0 -i 7250 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.10206 -s 0 -d 9 -p ack -e 40 -c 0 -i 7240 -a 0 -x {10.0 9.0 3615 ------- null} + -t 4.10206 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7251 -a 0 -x {9.0 10.0 3630 ------- null} - -t 4.10206 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7251 -a 0 -x {9.0 10.0 3630 ------- null} h -t 4.10206 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7251 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.10214 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7237 -a 0 -x {9.0 10.0 3623 ------- null} - -t 4.10214 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7237 -a 0 -x {9.0 10.0 3623 ------- null} h -t 4.10214 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7237 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.10226 -s 0 -d 9 -p ack -e 40 -c 0 -i 7244 -a 0 -x {10.0 9.0 3617 ------- null} - -t 4.10226 -s 0 -d 9 -p ack -e 40 -c 0 -i 7244 -a 0 -x {10.0 9.0 3617 ------- null} h -t 4.10226 -s 0 -d 9 -p ack -e 40 -c 0 -i 7244 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.10243 -s 10 -d 7 -p ack -e 40 -c 0 -i 7248 -a 0 -x {10.0 9.0 3619 ------- null} + -t 4.10243 -s 7 -d 0 -p ack -e 40 -c 0 -i 7248 -a 0 -x {10.0 9.0 3619 ------- null} h -t 4.10243 -s 7 -d 8 -p ack -e 40 -c 0 -i 7248 -a 0 -x {10.0 9.0 3619 ------- null} r -t 4.10274 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7247 -a 0 -x {9.0 10.0 3628 ------- null} + -t 4.10274 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7247 -a 0 -x {9.0 10.0 3628 ------- null} h -t 4.10274 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7247 -a 0 -x {9.0 10.0 3628 ------- null} r -t 4.10277 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7233 -a 0 -x {9.0 10.0 3621 ------- null} + -t 4.10277 -s 10 -d 7 -p ack -e 40 -c 0 -i 7252 -a 0 -x {10.0 9.0 3621 ------- null} - -t 4.10277 -s 10 -d 7 -p ack -e 40 -c 0 -i 7252 -a 0 -x {10.0 9.0 3621 ------- null} h -t 4.10277 -s 10 -d 7 -p ack -e 40 -c 0 -i 7252 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.10323 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7239 -a 0 -x {9.0 10.0 3624 ------- null} - -t 4.10323 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7239 -a 0 -x {9.0 10.0 3624 ------- null} h -t 4.10323 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7239 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.10325 -s 0 -d 9 -p ack -e 40 -c 0 -i 7242 -a 0 -x {10.0 9.0 3616 ------- null} + -t 4.10325 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7253 -a 0 -x {9.0 10.0 3631 ------- null} - -t 4.10325 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7253 -a 0 -x {9.0 10.0 3631 ------- null} h -t 4.10325 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7253 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.10352 -s 0 -d 9 -p ack -e 40 -c 0 -i 7246 -a 0 -x {10.0 9.0 3618 ------- null} - -t 4.10352 -s 0 -d 9 -p ack -e 40 -c 0 -i 7246 -a 0 -x {10.0 9.0 3618 ------- null} h -t 4.10352 -s 0 -d 9 -p ack -e 40 -c 0 -i 7246 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.10371 -s 10 -d 7 -p ack -e 40 -c 0 -i 7250 -a 0 -x {10.0 9.0 3620 ------- null} + -t 4.10371 -s 7 -d 0 -p ack -e 40 -c 0 -i 7250 -a 0 -x {10.0 9.0 3620 ------- null} h -t 4.10371 -s 7 -d 8 -p ack -e 40 -c 0 -i 7250 -a 0 -x {10.0 9.0 3620 ------- null} r -t 4.10384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7249 -a 0 -x {9.0 10.0 3629 ------- null} + -t 4.10384 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7249 -a 0 -x {9.0 10.0 3629 ------- null} h -t 4.10384 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7249 -a 0 -x {9.0 10.0 3629 ------- null} r -t 4.10386 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7235 -a 0 -x {9.0 10.0 3622 ------- null} + -t 4.10386 -s 10 -d 7 -p ack -e 40 -c 0 -i 7254 -a 0 -x {10.0 9.0 3622 ------- null} - -t 4.10386 -s 10 -d 7 -p ack -e 40 -c 0 -i 7254 -a 0 -x {10.0 9.0 3622 ------- null} h -t 4.10386 -s 10 -d 7 -p ack -e 40 -c 0 -i 7254 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.10429 -s 0 -d 9 -p ack -e 40 -c 0 -i 7244 -a 0 -x {10.0 9.0 3617 ------- null} + -t 4.10429 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7255 -a 0 -x {9.0 10.0 3632 ------- null} - -t 4.10429 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7255 -a 0 -x {9.0 10.0 3632 ------- null} h -t 4.10429 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7255 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.10437 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7241 -a 0 -x {9.0 10.0 3625 ------- null} - -t 4.10437 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7241 -a 0 -x {9.0 10.0 3625 ------- null} h -t 4.10437 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7241 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.10454 -s 0 -d 9 -p ack -e 40 -c 0 -i 7248 -a 0 -x {10.0 9.0 3619 ------- null} - -t 4.10454 -s 0 -d 9 -p ack -e 40 -c 0 -i 7248 -a 0 -x {10.0 9.0 3619 ------- null} h -t 4.10454 -s 0 -d 9 -p ack -e 40 -c 0 -i 7248 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.1048 -s 10 -d 7 -p ack -e 40 -c 0 -i 7252 -a 0 -x {10.0 9.0 3621 ------- null} + -t 4.1048 -s 7 -d 0 -p ack -e 40 -c 0 -i 7252 -a 0 -x {10.0 9.0 3621 ------- null} h -t 4.1048 -s 7 -d 8 -p ack -e 40 -c 0 -i 7252 -a 0 -x {10.0 9.0 3621 ------- null} r -t 4.10486 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7251 -a 0 -x {9.0 10.0 3630 ------- null} + -t 4.10486 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7251 -a 0 -x {9.0 10.0 3630 ------- null} h -t 4.10486 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7251 -a 0 -x {9.0 10.0 3630 ------- null} r -t 4.10494 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7237 -a 0 -x {9.0 10.0 3623 ------- null} + -t 4.10494 -s 10 -d 7 -p ack -e 40 -c 0 -i 7256 -a 0 -x {10.0 9.0 3623 ------- null} - -t 4.10494 -s 10 -d 7 -p ack -e 40 -c 0 -i 7256 -a 0 -x {10.0 9.0 3623 ------- null} h -t 4.10494 -s 10 -d 7 -p ack -e 40 -c 0 -i 7256 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.10546 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7243 -a 0 -x {9.0 10.0 3626 ------- null} - -t 4.10546 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7243 -a 0 -x {9.0 10.0 3626 ------- null} h -t 4.10546 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7243 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.10555 -s 0 -d 9 -p ack -e 40 -c 0 -i 7246 -a 0 -x {10.0 9.0 3618 ------- null} + -t 4.10555 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7257 -a 0 -x {9.0 10.0 3633 ------- null} - -t 4.10555 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7257 -a 0 -x {9.0 10.0 3633 ------- null} h -t 4.10555 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7257 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.10571 -s 0 -d 9 -p ack -e 40 -c 0 -i 7250 -a 0 -x {10.0 9.0 3620 ------- null} - -t 4.10571 -s 0 -d 9 -p ack -e 40 -c 0 -i 7250 -a 0 -x {10.0 9.0 3620 ------- null} h -t 4.10571 -s 0 -d 9 -p ack -e 40 -c 0 -i 7250 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.10589 -s 10 -d 7 -p ack -e 40 -c 0 -i 7254 -a 0 -x {10.0 9.0 3622 ------- null} + -t 4.10589 -s 7 -d 0 -p ack -e 40 -c 0 -i 7254 -a 0 -x {10.0 9.0 3622 ------- null} h -t 4.10589 -s 7 -d 8 -p ack -e 40 -c 0 -i 7254 -a 0 -x {10.0 9.0 3622 ------- null} r -t 4.10603 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7239 -a 0 -x {9.0 10.0 3624 ------- null} + -t 4.10603 -s 10 -d 7 -p ack -e 40 -c 0 -i 7258 -a 0 -x {10.0 9.0 3624 ------- null} - -t 4.10603 -s 10 -d 7 -p ack -e 40 -c 0 -i 7258 -a 0 -x {10.0 9.0 3624 ------- null} h -t 4.10603 -s 10 -d 7 -p ack -e 40 -c 0 -i 7258 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.10605 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7253 -a 0 -x {9.0 10.0 3631 ------- null} + -t 4.10605 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7253 -a 0 -x {9.0 10.0 3631 ------- null} h -t 4.10605 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7253 -a 0 -x {9.0 10.0 3631 ------- null} + -t 4.10654 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7245 -a 0 -x {9.0 10.0 3627 ------- null} - -t 4.10654 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7245 -a 0 -x {9.0 10.0 3627 ------- null} h -t 4.10654 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7245 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.10658 -s 0 -d 9 -p ack -e 40 -c 0 -i 7248 -a 0 -x {10.0 9.0 3619 ------- null} + -t 4.10658 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7259 -a 0 -x {9.0 10.0 3634 ------- null} - -t 4.10658 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7259 -a 0 -x {9.0 10.0 3634 ------- null} h -t 4.10658 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7259 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.10678 -s 0 -d 9 -p ack -e 40 -c 0 -i 7252 -a 0 -x {10.0 9.0 3621 ------- null} - -t 4.10678 -s 0 -d 9 -p ack -e 40 -c 0 -i 7252 -a 0 -x {10.0 9.0 3621 ------- null} h -t 4.10678 -s 0 -d 9 -p ack -e 40 -c 0 -i 7252 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.10698 -s 10 -d 7 -p ack -e 40 -c 0 -i 7256 -a 0 -x {10.0 9.0 3623 ------- null} + -t 4.10698 -s 7 -d 0 -p ack -e 40 -c 0 -i 7256 -a 0 -x {10.0 9.0 3623 ------- null} h -t 4.10698 -s 7 -d 8 -p ack -e 40 -c 0 -i 7256 -a 0 -x {10.0 9.0 3623 ------- null} r -t 4.10709 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7255 -a 0 -x {9.0 10.0 3632 ------- null} + -t 4.10709 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7255 -a 0 -x {9.0 10.0 3632 ------- null} h -t 4.10709 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7255 -a 0 -x {9.0 10.0 3632 ------- null} r -t 4.10717 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7241 -a 0 -x {9.0 10.0 3625 ------- null} + -t 4.10717 -s 10 -d 7 -p ack -e 40 -c 0 -i 7260 -a 0 -x {10.0 9.0 3625 ------- null} - -t 4.10717 -s 10 -d 7 -p ack -e 40 -c 0 -i 7260 -a 0 -x {10.0 9.0 3625 ------- null} h -t 4.10717 -s 10 -d 7 -p ack -e 40 -c 0 -i 7260 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.10763 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7247 -a 0 -x {9.0 10.0 3628 ------- null} - -t 4.10763 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7247 -a 0 -x {9.0 10.0 3628 ------- null} h -t 4.10763 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7247 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.10774 -s 0 -d 9 -p ack -e 40 -c 0 -i 7250 -a 0 -x {10.0 9.0 3620 ------- null} + -t 4.10774 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7261 -a 0 -x {9.0 10.0 3635 ------- null} - -t 4.10774 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7261 -a 0 -x {9.0 10.0 3635 ------- null} h -t 4.10774 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7261 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.1079 -s 0 -d 9 -p ack -e 40 -c 0 -i 7254 -a 0 -x {10.0 9.0 3622 ------- null} - -t 4.1079 -s 0 -d 9 -p ack -e 40 -c 0 -i 7254 -a 0 -x {10.0 9.0 3622 ------- null} h -t 4.1079 -s 0 -d 9 -p ack -e 40 -c 0 -i 7254 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.10806 -s 10 -d 7 -p ack -e 40 -c 0 -i 7258 -a 0 -x {10.0 9.0 3624 ------- null} + -t 4.10806 -s 7 -d 0 -p ack -e 40 -c 0 -i 7258 -a 0 -x {10.0 9.0 3624 ------- null} h -t 4.10806 -s 7 -d 8 -p ack -e 40 -c 0 -i 7258 -a 0 -x {10.0 9.0 3624 ------- null} r -t 4.10826 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7243 -a 0 -x {9.0 10.0 3626 ------- null} + -t 4.10826 -s 10 -d 7 -p ack -e 40 -c 0 -i 7262 -a 0 -x {10.0 9.0 3626 ------- null} - -t 4.10826 -s 10 -d 7 -p ack -e 40 -c 0 -i 7262 -a 0 -x {10.0 9.0 3626 ------- null} h -t 4.10826 -s 10 -d 7 -p ack -e 40 -c 0 -i 7262 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.10835 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7257 -a 0 -x {9.0 10.0 3633 ------- null} + -t 4.10835 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7257 -a 0 -x {9.0 10.0 3633 ------- null} h -t 4.10835 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7257 -a 0 -x {9.0 10.0 3633 ------- null} + -t 4.10878 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7249 -a 0 -x {9.0 10.0 3629 ------- null} - -t 4.10878 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7249 -a 0 -x {9.0 10.0 3629 ------- null} h -t 4.10878 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7249 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.10882 -s 0 -d 9 -p ack -e 40 -c 0 -i 7252 -a 0 -x {10.0 9.0 3621 ------- null} + -t 4.10882 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7263 -a 0 -x {9.0 10.0 3636 ------- null} - -t 4.10882 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7263 -a 0 -x {9.0 10.0 3636 ------- null} h -t 4.10882 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7263 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.10891 -s 0 -d 9 -p ack -e 40 -c 0 -i 7256 -a 0 -x {10.0 9.0 3623 ------- null} - -t 4.10891 -s 0 -d 9 -p ack -e 40 -c 0 -i 7256 -a 0 -x {10.0 9.0 3623 ------- null} h -t 4.10891 -s 0 -d 9 -p ack -e 40 -c 0 -i 7256 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.1092 -s 10 -d 7 -p ack -e 40 -c 0 -i 7260 -a 0 -x {10.0 9.0 3625 ------- null} + -t 4.1092 -s 7 -d 0 -p ack -e 40 -c 0 -i 7260 -a 0 -x {10.0 9.0 3625 ------- null} h -t 4.1092 -s 7 -d 8 -p ack -e 40 -c 0 -i 7260 -a 0 -x {10.0 9.0 3625 ------- null} r -t 4.10934 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7245 -a 0 -x {9.0 10.0 3627 ------- null} + -t 4.10934 -s 10 -d 7 -p ack -e 40 -c 0 -i 7264 -a 0 -x {10.0 9.0 3627 ------- null} - -t 4.10934 -s 10 -d 7 -p ack -e 40 -c 0 -i 7264 -a 0 -x {10.0 9.0 3627 ------- null} h -t 4.10934 -s 10 -d 7 -p ack -e 40 -c 0 -i 7264 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.10938 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7259 -a 0 -x {9.0 10.0 3634 ------- null} + -t 4.10938 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7259 -a 0 -x {9.0 10.0 3634 ------- null} h -t 4.10938 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7259 -a 0 -x {9.0 10.0 3634 ------- null} + -t 4.10987 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7251 -a 0 -x {9.0 10.0 3630 ------- null} - -t 4.10987 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7251 -a 0 -x {9.0 10.0 3630 ------- null} h -t 4.10987 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7251 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.10994 -s 0 -d 9 -p ack -e 40 -c 0 -i 7254 -a 0 -x {10.0 9.0 3622 ------- null} + -t 4.10994 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7265 -a 0 -x {9.0 10.0 3637 ------- null} - -t 4.10994 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7265 -a 0 -x {9.0 10.0 3637 ------- null} h -t 4.10994 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7265 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.11002 -s 0 -d 9 -p ack -e 40 -c 0 -i 7258 -a 0 -x {10.0 9.0 3624 ------- null} - -t 4.11002 -s 0 -d 9 -p ack -e 40 -c 0 -i 7258 -a 0 -x {10.0 9.0 3624 ------- null} h -t 4.11002 -s 0 -d 9 -p ack -e 40 -c 0 -i 7258 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.11029 -s 10 -d 7 -p ack -e 40 -c 0 -i 7262 -a 0 -x {10.0 9.0 3626 ------- null} + -t 4.11029 -s 7 -d 0 -p ack -e 40 -c 0 -i 7262 -a 0 -x {10.0 9.0 3626 ------- null} h -t 4.11029 -s 7 -d 8 -p ack -e 40 -c 0 -i 7262 -a 0 -x {10.0 9.0 3626 ------- null} r -t 4.11043 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7247 -a 0 -x {9.0 10.0 3628 ------- null} + -t 4.11043 -s 10 -d 7 -p ack -e 40 -c 0 -i 7266 -a 0 -x {10.0 9.0 3628 ------- null} - -t 4.11043 -s 10 -d 7 -p ack -e 40 -c 0 -i 7266 -a 0 -x {10.0 9.0 3628 ------- null} h -t 4.11043 -s 10 -d 7 -p ack -e 40 -c 0 -i 7266 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.11054 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7261 -a 0 -x {9.0 10.0 3635 ------- null} + -t 4.11054 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7261 -a 0 -x {9.0 10.0 3635 ------- null} h -t 4.11054 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7261 -a 0 -x {9.0 10.0 3635 ------- null} r -t 4.11094 -s 0 -d 9 -p ack -e 40 -c 0 -i 7256 -a 0 -x {10.0 9.0 3623 ------- null} + -t 4.11094 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7267 -a 0 -x {9.0 10.0 3638 ------- null} - -t 4.11094 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7267 -a 0 -x {9.0 10.0 3638 ------- null} h -t 4.11094 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7267 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.11096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7253 -a 0 -x {9.0 10.0 3631 ------- null} - -t 4.11096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7253 -a 0 -x {9.0 10.0 3631 ------- null} h -t 4.11096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7253 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.11102 -s 0 -d 9 -p ack -e 40 -c 0 -i 7260 -a 0 -x {10.0 9.0 3625 ------- null} - -t 4.11102 -s 0 -d 9 -p ack -e 40 -c 0 -i 7260 -a 0 -x {10.0 9.0 3625 ------- null} h -t 4.11102 -s 0 -d 9 -p ack -e 40 -c 0 -i 7260 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.11138 -s 10 -d 7 -p ack -e 40 -c 0 -i 7264 -a 0 -x {10.0 9.0 3627 ------- null} + -t 4.11138 -s 7 -d 0 -p ack -e 40 -c 0 -i 7264 -a 0 -x {10.0 9.0 3627 ------- null} h -t 4.11138 -s 7 -d 8 -p ack -e 40 -c 0 -i 7264 -a 0 -x {10.0 9.0 3627 ------- null} r -t 4.11158 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7249 -a 0 -x {9.0 10.0 3629 ------- null} + -t 4.11158 -s 10 -d 7 -p ack -e 40 -c 0 -i 7268 -a 0 -x {10.0 9.0 3629 ------- null} - -t 4.11158 -s 10 -d 7 -p ack -e 40 -c 0 -i 7268 -a 0 -x {10.0 9.0 3629 ------- null} h -t 4.11158 -s 10 -d 7 -p ack -e 40 -c 0 -i 7268 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.11162 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7263 -a 0 -x {9.0 10.0 3636 ------- null} + -t 4.11162 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7263 -a 0 -x {9.0 10.0 3636 ------- null} h -t 4.11162 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7263 -a 0 -x {9.0 10.0 3636 ------- null} r -t 4.11205 -s 0 -d 9 -p ack -e 40 -c 0 -i 7258 -a 0 -x {10.0 9.0 3624 ------- null} + -t 4.11205 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7269 -a 0 -x {9.0 10.0 3639 ------- null} - -t 4.11205 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7269 -a 0 -x {9.0 10.0 3639 ------- null} h -t 4.11205 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7269 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.11205 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7255 -a 0 -x {9.0 10.0 3632 ------- null} - -t 4.11205 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7255 -a 0 -x {9.0 10.0 3632 ------- null} h -t 4.11205 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7255 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.1123 -s 0 -d 9 -p ack -e 40 -c 0 -i 7262 -a 0 -x {10.0 9.0 3626 ------- null} - -t 4.1123 -s 0 -d 9 -p ack -e 40 -c 0 -i 7262 -a 0 -x {10.0 9.0 3626 ------- null} h -t 4.1123 -s 0 -d 9 -p ack -e 40 -c 0 -i 7262 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.11246 -s 10 -d 7 -p ack -e 40 -c 0 -i 7266 -a 0 -x {10.0 9.0 3628 ------- null} + -t 4.11246 -s 7 -d 0 -p ack -e 40 -c 0 -i 7266 -a 0 -x {10.0 9.0 3628 ------- null} h -t 4.11246 -s 7 -d 8 -p ack -e 40 -c 0 -i 7266 -a 0 -x {10.0 9.0 3628 ------- null} r -t 4.11267 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7251 -a 0 -x {9.0 10.0 3630 ------- null} + -t 4.11267 -s 10 -d 7 -p ack -e 40 -c 0 -i 7270 -a 0 -x {10.0 9.0 3630 ------- null} - -t 4.11267 -s 10 -d 7 -p ack -e 40 -c 0 -i 7270 -a 0 -x {10.0 9.0 3630 ------- null} h -t 4.11267 -s 10 -d 7 -p ack -e 40 -c 0 -i 7270 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.11274 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7265 -a 0 -x {9.0 10.0 3637 ------- null} + -t 4.11274 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7265 -a 0 -x {9.0 10.0 3637 ------- null} h -t 4.11274 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7265 -a 0 -x {9.0 10.0 3637 ------- null} r -t 4.11306 -s 0 -d 9 -p ack -e 40 -c 0 -i 7260 -a 0 -x {10.0 9.0 3625 ------- null} + -t 4.11306 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7271 -a 0 -x {9.0 10.0 3640 ------- null} - -t 4.11306 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7271 -a 0 -x {9.0 10.0 3640 ------- null} h -t 4.11306 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7271 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.11314 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7257 -a 0 -x {9.0 10.0 3633 ------- null} - -t 4.11314 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7257 -a 0 -x {9.0 10.0 3633 ------- null} h -t 4.11314 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7257 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.1133 -s 0 -d 9 -p ack -e 40 -c 0 -i 7264 -a 0 -x {10.0 9.0 3627 ------- null} - -t 4.1133 -s 0 -d 9 -p ack -e 40 -c 0 -i 7264 -a 0 -x {10.0 9.0 3627 ------- null} h -t 4.1133 -s 0 -d 9 -p ack -e 40 -c 0 -i 7264 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.11362 -s 10 -d 7 -p ack -e 40 -c 0 -i 7268 -a 0 -x {10.0 9.0 3629 ------- null} + -t 4.11362 -s 7 -d 0 -p ack -e 40 -c 0 -i 7268 -a 0 -x {10.0 9.0 3629 ------- null} h -t 4.11362 -s 7 -d 8 -p ack -e 40 -c 0 -i 7268 -a 0 -x {10.0 9.0 3629 ------- null} r -t 4.11374 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7267 -a 0 -x {9.0 10.0 3638 ------- null} + -t 4.11374 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7267 -a 0 -x {9.0 10.0 3638 ------- null} h -t 4.11374 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7267 -a 0 -x {9.0 10.0 3638 ------- null} r -t 4.11376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7253 -a 0 -x {9.0 10.0 3631 ------- null} + -t 4.11376 -s 10 -d 7 -p ack -e 40 -c 0 -i 7272 -a 0 -x {10.0 9.0 3631 ------- null} - -t 4.11376 -s 10 -d 7 -p ack -e 40 -c 0 -i 7272 -a 0 -x {10.0 9.0 3631 ------- null} h -t 4.11376 -s 10 -d 7 -p ack -e 40 -c 0 -i 7272 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.11422 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7259 -a 0 -x {9.0 10.0 3634 ------- null} - -t 4.11422 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7259 -a 0 -x {9.0 10.0 3634 ------- null} h -t 4.11422 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7259 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.11434 -s 0 -d 9 -p ack -e 40 -c 0 -i 7262 -a 0 -x {10.0 9.0 3626 ------- null} + -t 4.11434 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7273 -a 0 -x {9.0 10.0 3641 ------- null} - -t 4.11434 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7273 -a 0 -x {9.0 10.0 3641 ------- null} h -t 4.11434 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7273 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.11442 -s 0 -d 9 -p ack -e 40 -c 0 -i 7266 -a 0 -x {10.0 9.0 3628 ------- null} - -t 4.11442 -s 0 -d 9 -p ack -e 40 -c 0 -i 7266 -a 0 -x {10.0 9.0 3628 ------- null} h -t 4.11442 -s 0 -d 9 -p ack -e 40 -c 0 -i 7266 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.1147 -s 10 -d 7 -p ack -e 40 -c 0 -i 7270 -a 0 -x {10.0 9.0 3630 ------- null} + -t 4.1147 -s 7 -d 0 -p ack -e 40 -c 0 -i 7270 -a 0 -x {10.0 9.0 3630 ------- null} h -t 4.1147 -s 7 -d 8 -p ack -e 40 -c 0 -i 7270 -a 0 -x {10.0 9.0 3630 ------- null} r -t 4.11485 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7269 -a 0 -x {9.0 10.0 3639 ------- null} + -t 4.11485 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7269 -a 0 -x {9.0 10.0 3639 ------- null} h -t 4.11485 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7269 -a 0 -x {9.0 10.0 3639 ------- null} r -t 4.11485 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7255 -a 0 -x {9.0 10.0 3632 ------- null} + -t 4.11485 -s 10 -d 7 -p ack -e 40 -c 0 -i 7274 -a 0 -x {10.0 9.0 3632 ------- null} - -t 4.11485 -s 10 -d 7 -p ack -e 40 -c 0 -i 7274 -a 0 -x {10.0 9.0 3632 ------- null} h -t 4.11485 -s 10 -d 7 -p ack -e 40 -c 0 -i 7274 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.11531 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7261 -a 0 -x {9.0 10.0 3635 ------- null} - -t 4.11531 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7261 -a 0 -x {9.0 10.0 3635 ------- null} h -t 4.11531 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7261 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.11533 -s 0 -d 9 -p ack -e 40 -c 0 -i 7264 -a 0 -x {10.0 9.0 3627 ------- null} + -t 4.11533 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7275 -a 0 -x {9.0 10.0 3642 ------- null} - -t 4.11533 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7275 -a 0 -x {9.0 10.0 3642 ------- null} h -t 4.11533 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7275 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.11539 -s 0 -d 9 -p ack -e 40 -c 0 -i 7268 -a 0 -x {10.0 9.0 3629 ------- null} - -t 4.11539 -s 0 -d 9 -p ack -e 40 -c 0 -i 7268 -a 0 -x {10.0 9.0 3629 ------- null} h -t 4.11539 -s 0 -d 9 -p ack -e 40 -c 0 -i 7268 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.11579 -s 10 -d 7 -p ack -e 40 -c 0 -i 7272 -a 0 -x {10.0 9.0 3631 ------- null} + -t 4.11579 -s 7 -d 0 -p ack -e 40 -c 0 -i 7272 -a 0 -x {10.0 9.0 3631 ------- null} h -t 4.11579 -s 7 -d 8 -p ack -e 40 -c 0 -i 7272 -a 0 -x {10.0 9.0 3631 ------- null} r -t 4.11586 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7271 -a 0 -x {9.0 10.0 3640 ------- null} + -t 4.11586 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7271 -a 0 -x {9.0 10.0 3640 ------- null} h -t 4.11586 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7271 -a 0 -x {9.0 10.0 3640 ------- null} r -t 4.11594 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7257 -a 0 -x {9.0 10.0 3633 ------- null} + -t 4.11594 -s 10 -d 7 -p ack -e 40 -c 0 -i 7276 -a 0 -x {10.0 9.0 3633 ------- null} - -t 4.11594 -s 10 -d 7 -p ack -e 40 -c 0 -i 7276 -a 0 -x {10.0 9.0 3633 ------- null} h -t 4.11594 -s 10 -d 7 -p ack -e 40 -c 0 -i 7276 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.1164 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7263 -a 0 -x {9.0 10.0 3636 ------- null} - -t 4.1164 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7263 -a 0 -x {9.0 10.0 3636 ------- null} h -t 4.1164 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7263 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.11645 -s 0 -d 9 -p ack -e 40 -c 0 -i 7266 -a 0 -x {10.0 9.0 3628 ------- null} + -t 4.11645 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7277 -a 0 -x {9.0 10.0 3643 ------- null} - -t 4.11645 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7277 -a 0 -x {9.0 10.0 3643 ------- null} h -t 4.11645 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7277 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.11654 -s 0 -d 9 -p ack -e 40 -c 0 -i 7270 -a 0 -x {10.0 9.0 3630 ------- null} - -t 4.11654 -s 0 -d 9 -p ack -e 40 -c 0 -i 7270 -a 0 -x {10.0 9.0 3630 ------- null} h -t 4.11654 -s 0 -d 9 -p ack -e 40 -c 0 -i 7270 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.11688 -s 10 -d 7 -p ack -e 40 -c 0 -i 7274 -a 0 -x {10.0 9.0 3632 ------- null} + -t 4.11688 -s 7 -d 0 -p ack -e 40 -c 0 -i 7274 -a 0 -x {10.0 9.0 3632 ------- null} h -t 4.11688 -s 7 -d 8 -p ack -e 40 -c 0 -i 7274 -a 0 -x {10.0 9.0 3632 ------- null} r -t 4.11702 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7259 -a 0 -x {9.0 10.0 3634 ------- null} + -t 4.11702 -s 10 -d 7 -p ack -e 40 -c 0 -i 7278 -a 0 -x {10.0 9.0 3634 ------- null} - -t 4.11702 -s 10 -d 7 -p ack -e 40 -c 0 -i 7278 -a 0 -x {10.0 9.0 3634 ------- null} h -t 4.11702 -s 10 -d 7 -p ack -e 40 -c 0 -i 7278 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.11714 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7273 -a 0 -x {9.0 10.0 3641 ------- null} + -t 4.11714 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7273 -a 0 -x {9.0 10.0 3641 ------- null} h -t 4.11714 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7273 -a 0 -x {9.0 10.0 3641 ------- null} r -t 4.11742 -s 0 -d 9 -p ack -e 40 -c 0 -i 7268 -a 0 -x {10.0 9.0 3629 ------- null} + -t 4.11742 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7279 -a 0 -x {9.0 10.0 3644 ------- null} - -t 4.11742 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7279 -a 0 -x {9.0 10.0 3644 ------- null} h -t 4.11742 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7279 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.11749 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7265 -a 0 -x {9.0 10.0 3637 ------- null} - -t 4.11749 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7265 -a 0 -x {9.0 10.0 3637 ------- null} h -t 4.11749 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7265 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.11755 -s 0 -d 9 -p ack -e 40 -c 0 -i 7272 -a 0 -x {10.0 9.0 3631 ------- null} - -t 4.11755 -s 0 -d 9 -p ack -e 40 -c 0 -i 7272 -a 0 -x {10.0 9.0 3631 ------- null} h -t 4.11755 -s 0 -d 9 -p ack -e 40 -c 0 -i 7272 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.11797 -s 10 -d 7 -p ack -e 40 -c 0 -i 7276 -a 0 -x {10.0 9.0 3633 ------- null} + -t 4.11797 -s 7 -d 0 -p ack -e 40 -c 0 -i 7276 -a 0 -x {10.0 9.0 3633 ------- null} h -t 4.11797 -s 7 -d 8 -p ack -e 40 -c 0 -i 7276 -a 0 -x {10.0 9.0 3633 ------- null} r -t 4.11811 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7261 -a 0 -x {9.0 10.0 3635 ------- null} + -t 4.11811 -s 10 -d 7 -p ack -e 40 -c 0 -i 7280 -a 0 -x {10.0 9.0 3635 ------- null} - -t 4.11811 -s 10 -d 7 -p ack -e 40 -c 0 -i 7280 -a 0 -x {10.0 9.0 3635 ------- null} h -t 4.11811 -s 10 -d 7 -p ack -e 40 -c 0 -i 7280 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.11813 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7275 -a 0 -x {9.0 10.0 3642 ------- null} + -t 4.11813 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7275 -a 0 -x {9.0 10.0 3642 ------- null} h -t 4.11813 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7275 -a 0 -x {9.0 10.0 3642 ------- null} r -t 4.11858 -s 0 -d 9 -p ack -e 40 -c 0 -i 7270 -a 0 -x {10.0 9.0 3630 ------- null} + -t 4.11858 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7281 -a 0 -x {9.0 10.0 3645 ------- null} - -t 4.11858 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7281 -a 0 -x {9.0 10.0 3645 ------- null} h -t 4.11858 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7281 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.11858 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7267 -a 0 -x {9.0 10.0 3638 ------- null} - -t 4.11858 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7267 -a 0 -x {9.0 10.0 3638 ------- null} h -t 4.11858 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7267 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.11883 -s 0 -d 9 -p ack -e 40 -c 0 -i 7274 -a 0 -x {10.0 9.0 3632 ------- null} - -t 4.11883 -s 0 -d 9 -p ack -e 40 -c 0 -i 7274 -a 0 -x {10.0 9.0 3632 ------- null} h -t 4.11883 -s 0 -d 9 -p ack -e 40 -c 0 -i 7274 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.11906 -s 10 -d 7 -p ack -e 40 -c 0 -i 7278 -a 0 -x {10.0 9.0 3634 ------- null} + -t 4.11906 -s 7 -d 0 -p ack -e 40 -c 0 -i 7278 -a 0 -x {10.0 9.0 3634 ------- null} h -t 4.11906 -s 7 -d 8 -p ack -e 40 -c 0 -i 7278 -a 0 -x {10.0 9.0 3634 ------- null} r -t 4.1192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7263 -a 0 -x {9.0 10.0 3636 ------- null} + -t 4.1192 -s 10 -d 7 -p ack -e 40 -c 0 -i 7282 -a 0 -x {10.0 9.0 3636 ------- null} - -t 4.1192 -s 10 -d 7 -p ack -e 40 -c 0 -i 7282 -a 0 -x {10.0 9.0 3636 ------- null} h -t 4.1192 -s 10 -d 7 -p ack -e 40 -c 0 -i 7282 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.11925 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7277 -a 0 -x {9.0 10.0 3643 ------- null} + -t 4.11925 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7277 -a 0 -x {9.0 10.0 3643 ------- null} h -t 4.11925 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7277 -a 0 -x {9.0 10.0 3643 ------- null} r -t 4.11958 -s 0 -d 9 -p ack -e 40 -c 0 -i 7272 -a 0 -x {10.0 9.0 3631 ------- null} + -t 4.11958 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7283 -a 0 -x {9.0 10.0 3646 ------- null} - -t 4.11958 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7283 -a 0 -x {9.0 10.0 3646 ------- null} h -t 4.11958 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7283 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.11966 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7269 -a 0 -x {9.0 10.0 3639 ------- null} - -t 4.11966 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7269 -a 0 -x {9.0 10.0 3639 ------- null} h -t 4.11966 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7269 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.11994 -s 0 -d 9 -p ack -e 40 -c 0 -i 7276 -a 0 -x {10.0 9.0 3633 ------- null} - -t 4.11994 -s 0 -d 9 -p ack -e 40 -c 0 -i 7276 -a 0 -x {10.0 9.0 3633 ------- null} h -t 4.11994 -s 0 -d 9 -p ack -e 40 -c 0 -i 7276 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.12014 -s 10 -d 7 -p ack -e 40 -c 0 -i 7280 -a 0 -x {10.0 9.0 3635 ------- null} + -t 4.12014 -s 7 -d 0 -p ack -e 40 -c 0 -i 7280 -a 0 -x {10.0 9.0 3635 ------- null} h -t 4.12014 -s 7 -d 8 -p ack -e 40 -c 0 -i 7280 -a 0 -x {10.0 9.0 3635 ------- null} r -t 4.12022 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7279 -a 0 -x {9.0 10.0 3644 ------- null} + -t 4.12022 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7279 -a 0 -x {9.0 10.0 3644 ------- null} h -t 4.12022 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7279 -a 0 -x {9.0 10.0 3644 ------- null} r -t 4.12029 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7265 -a 0 -x {9.0 10.0 3637 ------- null} + -t 4.12029 -s 10 -d 7 -p ack -e 40 -c 0 -i 7284 -a 0 -x {10.0 9.0 3637 ------- null} - -t 4.12029 -s 10 -d 7 -p ack -e 40 -c 0 -i 7284 -a 0 -x {10.0 9.0 3637 ------- null} h -t 4.12029 -s 10 -d 7 -p ack -e 40 -c 0 -i 7284 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.12086 -s 0 -d 9 -p ack -e 40 -c 0 -i 7274 -a 0 -x {10.0 9.0 3632 ------- null} + -t 4.12086 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7285 -a 0 -x {9.0 10.0 3647 ------- null} - -t 4.12086 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7285 -a 0 -x {9.0 10.0 3647 ------- null} h -t 4.12086 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7285 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.12101 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7271 -a 0 -x {9.0 10.0 3640 ------- null} - -t 4.12101 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7271 -a 0 -x {9.0 10.0 3640 ------- null} h -t 4.12101 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7271 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.12114 -s 0 -d 9 -p ack -e 40 -c 0 -i 7278 -a 0 -x {10.0 9.0 3634 ------- null} - -t 4.12114 -s 0 -d 9 -p ack -e 40 -c 0 -i 7278 -a 0 -x {10.0 9.0 3634 ------- null} h -t 4.12114 -s 0 -d 9 -p ack -e 40 -c 0 -i 7278 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.12123 -s 10 -d 7 -p ack -e 40 -c 0 -i 7282 -a 0 -x {10.0 9.0 3636 ------- null} + -t 4.12123 -s 7 -d 0 -p ack -e 40 -c 0 -i 7282 -a 0 -x {10.0 9.0 3636 ------- null} h -t 4.12123 -s 7 -d 8 -p ack -e 40 -c 0 -i 7282 -a 0 -x {10.0 9.0 3636 ------- null} r -t 4.12138 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7281 -a 0 -x {9.0 10.0 3645 ------- null} + -t 4.12138 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7281 -a 0 -x {9.0 10.0 3645 ------- null} h -t 4.12138 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7281 -a 0 -x {9.0 10.0 3645 ------- null} r -t 4.12138 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7267 -a 0 -x {9.0 10.0 3638 ------- null} + -t 4.12138 -s 10 -d 7 -p ack -e 40 -c 0 -i 7286 -a 0 -x {10.0 9.0 3638 ------- null} - -t 4.12138 -s 10 -d 7 -p ack -e 40 -c 0 -i 7286 -a 0 -x {10.0 9.0 3638 ------- null} h -t 4.12138 -s 10 -d 7 -p ack -e 40 -c 0 -i 7286 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.12197 -s 0 -d 9 -p ack -e 40 -c 0 -i 7276 -a 0 -x {10.0 9.0 3633 ------- null} + -t 4.12197 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7287 -a 0 -x {9.0 10.0 3648 ------- null} - -t 4.12197 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7287 -a 0 -x {9.0 10.0 3648 ------- null} h -t 4.12197 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7287 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.1221 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7273 -a 0 -x {9.0 10.0 3641 ------- null} - -t 4.1221 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7273 -a 0 -x {9.0 10.0 3641 ------- null} h -t 4.1221 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7273 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.12222 -s 0 -d 9 -p ack -e 40 -c 0 -i 7280 -a 0 -x {10.0 9.0 3635 ------- null} - -t 4.12222 -s 0 -d 9 -p ack -e 40 -c 0 -i 7280 -a 0 -x {10.0 9.0 3635 ------- null} h -t 4.12222 -s 0 -d 9 -p ack -e 40 -c 0 -i 7280 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.12232 -s 10 -d 7 -p ack -e 40 -c 0 -i 7284 -a 0 -x {10.0 9.0 3637 ------- null} + -t 4.12232 -s 7 -d 0 -p ack -e 40 -c 0 -i 7284 -a 0 -x {10.0 9.0 3637 ------- null} h -t 4.12232 -s 7 -d 8 -p ack -e 40 -c 0 -i 7284 -a 0 -x {10.0 9.0 3637 ------- null} r -t 4.12238 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7283 -a 0 -x {9.0 10.0 3646 ------- null} + -t 4.12238 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7283 -a 0 -x {9.0 10.0 3646 ------- null} h -t 4.12238 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7283 -a 0 -x {9.0 10.0 3646 ------- null} r -t 4.12246 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7269 -a 0 -x {9.0 10.0 3639 ------- null} + -t 4.12246 -s 10 -d 7 -p ack -e 40 -c 0 -i 7288 -a 0 -x {10.0 9.0 3639 ------- null} - -t 4.12246 -s 10 -d 7 -p ack -e 40 -c 0 -i 7288 -a 0 -x {10.0 9.0 3639 ------- null} h -t 4.12246 -s 10 -d 7 -p ack -e 40 -c 0 -i 7288 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.12317 -s 0 -d 9 -p ack -e 40 -c 0 -i 7278 -a 0 -x {10.0 9.0 3634 ------- null} + -t 4.12317 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7289 -a 0 -x {9.0 10.0 3649 ------- null} - -t 4.12317 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7289 -a 0 -x {9.0 10.0 3649 ------- null} h -t 4.12317 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7289 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.12318 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7275 -a 0 -x {9.0 10.0 3642 ------- null} - -t 4.12318 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7275 -a 0 -x {9.0 10.0 3642 ------- null} h -t 4.12318 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7275 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.12341 -s 10 -d 7 -p ack -e 40 -c 0 -i 7286 -a 0 -x {10.0 9.0 3638 ------- null} + -t 4.12341 -s 7 -d 0 -p ack -e 40 -c 0 -i 7286 -a 0 -x {10.0 9.0 3638 ------- null} h -t 4.12341 -s 7 -d 8 -p ack -e 40 -c 0 -i 7286 -a 0 -x {10.0 9.0 3638 ------- null} + -t 4.12349 -s 0 -d 9 -p ack -e 40 -c 0 -i 7282 -a 0 -x {10.0 9.0 3636 ------- null} - -t 4.12349 -s 0 -d 9 -p ack -e 40 -c 0 -i 7282 -a 0 -x {10.0 9.0 3636 ------- null} h -t 4.12349 -s 0 -d 9 -p ack -e 40 -c 0 -i 7282 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.12366 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7285 -a 0 -x {9.0 10.0 3647 ------- null} + -t 4.12366 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7285 -a 0 -x {9.0 10.0 3647 ------- null} h -t 4.12366 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7285 -a 0 -x {9.0 10.0 3647 ------- null} r -t 4.12381 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7271 -a 0 -x {9.0 10.0 3640 ------- null} + -t 4.12381 -s 10 -d 7 -p ack -e 40 -c 0 -i 7290 -a 0 -x {10.0 9.0 3640 ------- null} - -t 4.12381 -s 10 -d 7 -p ack -e 40 -c 0 -i 7290 -a 0 -x {10.0 9.0 3640 ------- null} h -t 4.12381 -s 10 -d 7 -p ack -e 40 -c 0 -i 7290 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.12426 -s 0 -d 9 -p ack -e 40 -c 0 -i 7280 -a 0 -x {10.0 9.0 3635 ------- null} + -t 4.12426 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7291 -a 0 -x {9.0 10.0 3650 ------- null} - -t 4.12426 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7291 -a 0 -x {9.0 10.0 3650 ------- null} h -t 4.12426 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7291 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.1245 -s 10 -d 7 -p ack -e 40 -c 0 -i 7288 -a 0 -x {10.0 9.0 3639 ------- null} + -t 4.1245 -s 7 -d 0 -p ack -e 40 -c 0 -i 7288 -a 0 -x {10.0 9.0 3639 ------- null} h -t 4.1245 -s 7 -d 8 -p ack -e 40 -c 0 -i 7288 -a 0 -x {10.0 9.0 3639 ------- null} + -t 4.12451 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7277 -a 0 -x {9.0 10.0 3643 ------- null} - -t 4.12451 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7277 -a 0 -x {9.0 10.0 3643 ------- null} h -t 4.12451 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7277 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.12477 -s 0 -d 9 -p ack -e 40 -c 0 -i 7284 -a 0 -x {10.0 9.0 3637 ------- null} - -t 4.12477 -s 0 -d 9 -p ack -e 40 -c 0 -i 7284 -a 0 -x {10.0 9.0 3637 ------- null} h -t 4.12477 -s 0 -d 9 -p ack -e 40 -c 0 -i 7284 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.12477 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7287 -a 0 -x {9.0 10.0 3648 ------- null} + -t 4.12477 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7287 -a 0 -x {9.0 10.0 3648 ------- null} h -t 4.12477 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7287 -a 0 -x {9.0 10.0 3648 ------- null} r -t 4.1249 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7273 -a 0 -x {9.0 10.0 3641 ------- null} + -t 4.1249 -s 10 -d 7 -p ack -e 40 -c 0 -i 7292 -a 0 -x {10.0 9.0 3641 ------- null} - -t 4.1249 -s 10 -d 7 -p ack -e 40 -c 0 -i 7292 -a 0 -x {10.0 9.0 3641 ------- null} h -t 4.1249 -s 10 -d 7 -p ack -e 40 -c 0 -i 7292 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.12552 -s 0 -d 9 -p ack -e 40 -c 0 -i 7282 -a 0 -x {10.0 9.0 3636 ------- null} + -t 4.12552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7293 -a 0 -x {9.0 10.0 3651 ------- null} - -t 4.12552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7293 -a 0 -x {9.0 10.0 3651 ------- null} h -t 4.12552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7293 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.1256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7279 -a 0 -x {9.0 10.0 3644 ------- null} - -t 4.1256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7279 -a 0 -x {9.0 10.0 3644 ------- null} h -t 4.1256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7279 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.1257 -s 0 -d 9 -p ack -e 40 -c 0 -i 7286 -a 0 -x {10.0 9.0 3638 ------- null} - -t 4.1257 -s 0 -d 9 -p ack -e 40 -c 0 -i 7286 -a 0 -x {10.0 9.0 3638 ------- null} h -t 4.1257 -s 0 -d 9 -p ack -e 40 -c 0 -i 7286 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.12584 -s 10 -d 7 -p ack -e 40 -c 0 -i 7290 -a 0 -x {10.0 9.0 3640 ------- null} + -t 4.12584 -s 7 -d 0 -p ack -e 40 -c 0 -i 7290 -a 0 -x {10.0 9.0 3640 ------- null} h -t 4.12584 -s 7 -d 8 -p ack -e 40 -c 0 -i 7290 -a 0 -x {10.0 9.0 3640 ------- null} r -t 4.12597 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7289 -a 0 -x {9.0 10.0 3649 ------- null} + -t 4.12597 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7289 -a 0 -x {9.0 10.0 3649 ------- null} h -t 4.12597 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7289 -a 0 -x {9.0 10.0 3649 ------- null} r -t 4.12598 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7275 -a 0 -x {9.0 10.0 3642 ------- null} + -t 4.12598 -s 10 -d 7 -p ack -e 40 -c 0 -i 7294 -a 0 -x {10.0 9.0 3642 ------- null} - -t 4.12598 -s 10 -d 7 -p ack -e 40 -c 0 -i 7294 -a 0 -x {10.0 9.0 3642 ------- null} h -t 4.12598 -s 10 -d 7 -p ack -e 40 -c 0 -i 7294 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.12669 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7281 -a 0 -x {9.0 10.0 3645 ------- null} - -t 4.12669 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7281 -a 0 -x {9.0 10.0 3645 ------- null} h -t 4.12669 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7281 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.1268 -s 0 -d 9 -p ack -e 40 -c 0 -i 7284 -a 0 -x {10.0 9.0 3637 ------- null} + -t 4.1268 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7295 -a 0 -x {9.0 10.0 3652 ------- null} - -t 4.1268 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7295 -a 0 -x {9.0 10.0 3652 ------- null} h -t 4.1268 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7295 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.12691 -s 0 -d 9 -p ack -e 40 -c 0 -i 7288 -a 0 -x {10.0 9.0 3639 ------- null} - -t 4.12691 -s 0 -d 9 -p ack -e 40 -c 0 -i 7288 -a 0 -x {10.0 9.0 3639 ------- null} h -t 4.12691 -s 0 -d 9 -p ack -e 40 -c 0 -i 7288 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.12693 -s 10 -d 7 -p ack -e 40 -c 0 -i 7292 -a 0 -x {10.0 9.0 3641 ------- null} + -t 4.12693 -s 7 -d 0 -p ack -e 40 -c 0 -i 7292 -a 0 -x {10.0 9.0 3641 ------- null} h -t 4.12693 -s 7 -d 8 -p ack -e 40 -c 0 -i 7292 -a 0 -x {10.0 9.0 3641 ------- null} r -t 4.12706 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7291 -a 0 -x {9.0 10.0 3650 ------- null} + -t 4.12706 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7291 -a 0 -x {9.0 10.0 3650 ------- null} h -t 4.12706 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7291 -a 0 -x {9.0 10.0 3650 ------- null} r -t 4.12731 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7277 -a 0 -x {9.0 10.0 3643 ------- null} + -t 4.12731 -s 10 -d 7 -p ack -e 40 -c 0 -i 7296 -a 0 -x {10.0 9.0 3643 ------- null} - -t 4.12731 -s 10 -d 7 -p ack -e 40 -c 0 -i 7296 -a 0 -x {10.0 9.0 3643 ------- null} h -t 4.12731 -s 10 -d 7 -p ack -e 40 -c 0 -i 7296 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.12773 -s 0 -d 9 -p ack -e 40 -c 0 -i 7286 -a 0 -x {10.0 9.0 3638 ------- null} + -t 4.12773 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7297 -a 0 -x {9.0 10.0 3653 ------- null} - -t 4.12773 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7297 -a 0 -x {9.0 10.0 3653 ------- null} h -t 4.12773 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7297 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.12778 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7283 -a 0 -x {9.0 10.0 3646 ------- null} - -t 4.12778 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7283 -a 0 -x {9.0 10.0 3646 ------- null} h -t 4.12778 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7283 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.12798 -s 0 -d 9 -p ack -e 40 -c 0 -i 7290 -a 0 -x {10.0 9.0 3640 ------- null} - -t 4.12798 -s 0 -d 9 -p ack -e 40 -c 0 -i 7290 -a 0 -x {10.0 9.0 3640 ------- null} h -t 4.12798 -s 0 -d 9 -p ack -e 40 -c 0 -i 7290 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.12802 -s 10 -d 7 -p ack -e 40 -c 0 -i 7294 -a 0 -x {10.0 9.0 3642 ------- null} + -t 4.12802 -s 7 -d 0 -p ack -e 40 -c 0 -i 7294 -a 0 -x {10.0 9.0 3642 ------- null} h -t 4.12802 -s 7 -d 8 -p ack -e 40 -c 0 -i 7294 -a 0 -x {10.0 9.0 3642 ------- null} r -t 4.12832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7293 -a 0 -x {9.0 10.0 3651 ------- null} + -t 4.12832 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7293 -a 0 -x {9.0 10.0 3651 ------- null} h -t 4.12832 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7293 -a 0 -x {9.0 10.0 3651 ------- null} r -t 4.1284 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7279 -a 0 -x {9.0 10.0 3644 ------- null} + -t 4.1284 -s 10 -d 7 -p ack -e 40 -c 0 -i 7298 -a 0 -x {10.0 9.0 3644 ------- null} - -t 4.1284 -s 10 -d 7 -p ack -e 40 -c 0 -i 7298 -a 0 -x {10.0 9.0 3644 ------- null} h -t 4.1284 -s 10 -d 7 -p ack -e 40 -c 0 -i 7298 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.12886 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7285 -a 0 -x {9.0 10.0 3647 ------- null} - -t 4.12886 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7285 -a 0 -x {9.0 10.0 3647 ------- null} h -t 4.12886 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7285 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.12894 -s 0 -d 9 -p ack -e 40 -c 0 -i 7288 -a 0 -x {10.0 9.0 3639 ------- null} + -t 4.12894 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7299 -a 0 -x {9.0 10.0 3654 ------- null} - -t 4.12894 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7299 -a 0 -x {9.0 10.0 3654 ------- null} h -t 4.12894 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7299 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.12906 -s 0 -d 9 -p ack -e 40 -c 0 -i 7292 -a 0 -x {10.0 9.0 3641 ------- null} - -t 4.12906 -s 0 -d 9 -p ack -e 40 -c 0 -i 7292 -a 0 -x {10.0 9.0 3641 ------- null} h -t 4.12906 -s 0 -d 9 -p ack -e 40 -c 0 -i 7292 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.12934 -s 10 -d 7 -p ack -e 40 -c 0 -i 7296 -a 0 -x {10.0 9.0 3643 ------- null} + -t 4.12934 -s 7 -d 0 -p ack -e 40 -c 0 -i 7296 -a 0 -x {10.0 9.0 3643 ------- null} h -t 4.12934 -s 7 -d 8 -p ack -e 40 -c 0 -i 7296 -a 0 -x {10.0 9.0 3643 ------- null} r -t 4.12949 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7281 -a 0 -x {9.0 10.0 3645 ------- null} + -t 4.12949 -s 10 -d 7 -p ack -e 40 -c 0 -i 7300 -a 0 -x {10.0 9.0 3645 ------- null} - -t 4.12949 -s 10 -d 7 -p ack -e 40 -c 0 -i 7300 -a 0 -x {10.0 9.0 3645 ------- null} h -t 4.12949 -s 10 -d 7 -p ack -e 40 -c 0 -i 7300 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.1296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7295 -a 0 -x {9.0 10.0 3652 ------- null} + -t 4.1296 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7295 -a 0 -x {9.0 10.0 3652 ------- null} h -t 4.1296 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7295 -a 0 -x {9.0 10.0 3652 ------- null} + -t 4.12995 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7287 -a 0 -x {9.0 10.0 3648 ------- null} - -t 4.12995 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7287 -a 0 -x {9.0 10.0 3648 ------- null} h -t 4.12995 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7287 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.13002 -s 0 -d 9 -p ack -e 40 -c 0 -i 7290 -a 0 -x {10.0 9.0 3640 ------- null} + -t 4.13002 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7301 -a 0 -x {9.0 10.0 3655 ------- null} - -t 4.13002 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7301 -a 0 -x {9.0 10.0 3655 ------- null} h -t 4.13002 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7301 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.13022 -s 0 -d 9 -p ack -e 40 -c 0 -i 7294 -a 0 -x {10.0 9.0 3642 ------- null} - -t 4.13022 -s 0 -d 9 -p ack -e 40 -c 0 -i 7294 -a 0 -x {10.0 9.0 3642 ------- null} h -t 4.13022 -s 0 -d 9 -p ack -e 40 -c 0 -i 7294 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.13043 -s 10 -d 7 -p ack -e 40 -c 0 -i 7298 -a 0 -x {10.0 9.0 3644 ------- null} + -t 4.13043 -s 7 -d 0 -p ack -e 40 -c 0 -i 7298 -a 0 -x {10.0 9.0 3644 ------- null} h -t 4.13043 -s 7 -d 8 -p ack -e 40 -c 0 -i 7298 -a 0 -x {10.0 9.0 3644 ------- null} r -t 4.13053 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7297 -a 0 -x {9.0 10.0 3653 ------- null} + -t 4.13053 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7297 -a 0 -x {9.0 10.0 3653 ------- null} h -t 4.13053 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7297 -a 0 -x {9.0 10.0 3653 ------- null} r -t 4.13058 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7283 -a 0 -x {9.0 10.0 3646 ------- null} + -t 4.13058 -s 10 -d 7 -p ack -e 40 -c 0 -i 7302 -a 0 -x {10.0 9.0 3646 ------- null} - -t 4.13058 -s 10 -d 7 -p ack -e 40 -c 0 -i 7302 -a 0 -x {10.0 9.0 3646 ------- null} h -t 4.13058 -s 10 -d 7 -p ack -e 40 -c 0 -i 7302 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.13106 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7289 -a 0 -x {9.0 10.0 3649 ------- null} - -t 4.13106 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7289 -a 0 -x {9.0 10.0 3649 ------- null} h -t 4.13106 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7289 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.13109 -s 0 -d 9 -p ack -e 40 -c 0 -i 7292 -a 0 -x {10.0 9.0 3641 ------- null} + -t 4.13109 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7303 -a 0 -x {9.0 10.0 3656 ------- null} - -t 4.13109 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7303 -a 0 -x {9.0 10.0 3656 ------- null} h -t 4.13109 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7303 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.13118 -s 0 -d 9 -p ack -e 40 -c 0 -i 7296 -a 0 -x {10.0 9.0 3643 ------- null} - -t 4.13118 -s 0 -d 9 -p ack -e 40 -c 0 -i 7296 -a 0 -x {10.0 9.0 3643 ------- null} h -t 4.13118 -s 0 -d 9 -p ack -e 40 -c 0 -i 7296 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.13152 -s 10 -d 7 -p ack -e 40 -c 0 -i 7300 -a 0 -x {10.0 9.0 3645 ------- null} + -t 4.13152 -s 7 -d 0 -p ack -e 40 -c 0 -i 7300 -a 0 -x {10.0 9.0 3645 ------- null} h -t 4.13152 -s 7 -d 8 -p ack -e 40 -c 0 -i 7300 -a 0 -x {10.0 9.0 3645 ------- null} r -t 4.13166 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7285 -a 0 -x {9.0 10.0 3647 ------- null} + -t 4.13166 -s 10 -d 7 -p ack -e 40 -c 0 -i 7304 -a 0 -x {10.0 9.0 3647 ------- null} - -t 4.13166 -s 10 -d 7 -p ack -e 40 -c 0 -i 7304 -a 0 -x {10.0 9.0 3647 ------- null} h -t 4.13166 -s 10 -d 7 -p ack -e 40 -c 0 -i 7304 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.13174 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7299 -a 0 -x {9.0 10.0 3654 ------- null} + -t 4.13174 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7299 -a 0 -x {9.0 10.0 3654 ------- null} h -t 4.13174 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7299 -a 0 -x {9.0 10.0 3654 ------- null} + -t 4.13214 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7291 -a 0 -x {9.0 10.0 3650 ------- null} - -t 4.13214 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7291 -a 0 -x {9.0 10.0 3650 ------- null} h -t 4.13214 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7291 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.13226 -s 0 -d 9 -p ack -e 40 -c 0 -i 7294 -a 0 -x {10.0 9.0 3642 ------- null} + -t 4.13226 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7305 -a 0 -x {9.0 10.0 3657 ------- null} - -t 4.13226 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7305 -a 0 -x {9.0 10.0 3657 ------- null} h -t 4.13226 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7305 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.13227 -s 0 -d 9 -p ack -e 40 -c 0 -i 7298 -a 0 -x {10.0 9.0 3644 ------- null} - -t 4.13227 -s 0 -d 9 -p ack -e 40 -c 0 -i 7298 -a 0 -x {10.0 9.0 3644 ------- null} h -t 4.13227 -s 0 -d 9 -p ack -e 40 -c 0 -i 7298 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.13261 -s 10 -d 7 -p ack -e 40 -c 0 -i 7302 -a 0 -x {10.0 9.0 3646 ------- null} + -t 4.13261 -s 7 -d 0 -p ack -e 40 -c 0 -i 7302 -a 0 -x {10.0 9.0 3646 ------- null} h -t 4.13261 -s 7 -d 8 -p ack -e 40 -c 0 -i 7302 -a 0 -x {10.0 9.0 3646 ------- null} r -t 4.13275 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7287 -a 0 -x {9.0 10.0 3648 ------- null} + -t 4.13275 -s 10 -d 7 -p ack -e 40 -c 0 -i 7306 -a 0 -x {10.0 9.0 3648 ------- null} - -t 4.13275 -s 10 -d 7 -p ack -e 40 -c 0 -i 7306 -a 0 -x {10.0 9.0 3648 ------- null} h -t 4.13275 -s 10 -d 7 -p ack -e 40 -c 0 -i 7306 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.13282 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7301 -a 0 -x {9.0 10.0 3655 ------- null} + -t 4.13282 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7301 -a 0 -x {9.0 10.0 3655 ------- null} h -t 4.13282 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7301 -a 0 -x {9.0 10.0 3655 ------- null} r -t 4.13322 -s 0 -d 9 -p ack -e 40 -c 0 -i 7296 -a 0 -x {10.0 9.0 3643 ------- null} + -t 4.13322 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7307 -a 0 -x {9.0 10.0 3658 ------- null} - -t 4.13322 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7307 -a 0 -x {9.0 10.0 3658 ------- null} h -t 4.13322 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7307 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.13323 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7293 -a 0 -x {9.0 10.0 3651 ------- null} - -t 4.13323 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7293 -a 0 -x {9.0 10.0 3651 ------- null} h -t 4.13323 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7293 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.13339 -s 0 -d 9 -p ack -e 40 -c 0 -i 7300 -a 0 -x {10.0 9.0 3645 ------- null} - -t 4.13339 -s 0 -d 9 -p ack -e 40 -c 0 -i 7300 -a 0 -x {10.0 9.0 3645 ------- null} h -t 4.13339 -s 0 -d 9 -p ack -e 40 -c 0 -i 7300 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.1337 -s 10 -d 7 -p ack -e 40 -c 0 -i 7304 -a 0 -x {10.0 9.0 3647 ------- null} + -t 4.1337 -s 7 -d 0 -p ack -e 40 -c 0 -i 7304 -a 0 -x {10.0 9.0 3647 ------- null} h -t 4.1337 -s 7 -d 8 -p ack -e 40 -c 0 -i 7304 -a 0 -x {10.0 9.0 3647 ------- null} r -t 4.13386 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7289 -a 0 -x {9.0 10.0 3649 ------- null} + -t 4.13386 -s 10 -d 7 -p ack -e 40 -c 0 -i 7308 -a 0 -x {10.0 9.0 3649 ------- null} - -t 4.13386 -s 10 -d 7 -p ack -e 40 -c 0 -i 7308 -a 0 -x {10.0 9.0 3649 ------- null} h -t 4.13386 -s 10 -d 7 -p ack -e 40 -c 0 -i 7308 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.13389 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7303 -a 0 -x {9.0 10.0 3656 ------- null} + -t 4.13389 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7303 -a 0 -x {9.0 10.0 3656 ------- null} h -t 4.13389 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7303 -a 0 -x {9.0 10.0 3656 ------- null} r -t 4.1343 -s 0 -d 9 -p ack -e 40 -c 0 -i 7298 -a 0 -x {10.0 9.0 3644 ------- null} + -t 4.1343 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7309 -a 0 -x {9.0 10.0 3659 ------- null} - -t 4.1343 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7309 -a 0 -x {9.0 10.0 3659 ------- null} h -t 4.1343 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7309 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.13432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7295 -a 0 -x {9.0 10.0 3652 ------- null} - -t 4.13432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7295 -a 0 -x {9.0 10.0 3652 ------- null} h -t 4.13432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7295 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.13448 -s 0 -d 9 -p ack -e 40 -c 0 -i 7302 -a 0 -x {10.0 9.0 3646 ------- null} - -t 4.13448 -s 0 -d 9 -p ack -e 40 -c 0 -i 7302 -a 0 -x {10.0 9.0 3646 ------- null} h -t 4.13448 -s 0 -d 9 -p ack -e 40 -c 0 -i 7302 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.13478 -s 10 -d 7 -p ack -e 40 -c 0 -i 7306 -a 0 -x {10.0 9.0 3648 ------- null} + -t 4.13478 -s 7 -d 0 -p ack -e 40 -c 0 -i 7306 -a 0 -x {10.0 9.0 3648 ------- null} h -t 4.13478 -s 7 -d 8 -p ack -e 40 -c 0 -i 7306 -a 0 -x {10.0 9.0 3648 ------- null} r -t 4.13494 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7291 -a 0 -x {9.0 10.0 3650 ------- null} + -t 4.13494 -s 10 -d 7 -p ack -e 40 -c 0 -i 7310 -a 0 -x {10.0 9.0 3650 ------- null} - -t 4.13494 -s 10 -d 7 -p ack -e 40 -c 0 -i 7310 -a 0 -x {10.0 9.0 3650 ------- null} h -t 4.13494 -s 10 -d 7 -p ack -e 40 -c 0 -i 7310 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.13506 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7305 -a 0 -x {9.0 10.0 3657 ------- null} + -t 4.13506 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7305 -a 0 -x {9.0 10.0 3657 ------- null} h -t 4.13506 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7305 -a 0 -x {9.0 10.0 3657 ------- null} + -t 4.13541 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7297 -a 0 -x {9.0 10.0 3653 ------- null} - -t 4.13541 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7297 -a 0 -x {9.0 10.0 3653 ------- null} h -t 4.13541 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7297 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.13542 -s 0 -d 9 -p ack -e 40 -c 0 -i 7300 -a 0 -x {10.0 9.0 3645 ------- null} + -t 4.13542 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7311 -a 0 -x {9.0 10.0 3660 ------- null} - -t 4.13542 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7311 -a 0 -x {9.0 10.0 3660 ------- null} h -t 4.13542 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7311 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.13547 -s 0 -d 9 -p ack -e 40 -c 0 -i 7304 -a 0 -x {10.0 9.0 3647 ------- null} - -t 4.13547 -s 0 -d 9 -p ack -e 40 -c 0 -i 7304 -a 0 -x {10.0 9.0 3647 ------- null} h -t 4.13547 -s 0 -d 9 -p ack -e 40 -c 0 -i 7304 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.13589 -s 10 -d 7 -p ack -e 40 -c 0 -i 7308 -a 0 -x {10.0 9.0 3649 ------- null} + -t 4.13589 -s 7 -d 0 -p ack -e 40 -c 0 -i 7308 -a 0 -x {10.0 9.0 3649 ------- null} h -t 4.13589 -s 7 -d 8 -p ack -e 40 -c 0 -i 7308 -a 0 -x {10.0 9.0 3649 ------- null} r -t 4.13602 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7307 -a 0 -x {9.0 10.0 3658 ------- null} + -t 4.13602 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7307 -a 0 -x {9.0 10.0 3658 ------- null} h -t 4.13602 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7307 -a 0 -x {9.0 10.0 3658 ------- null} r -t 4.13603 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7293 -a 0 -x {9.0 10.0 3651 ------- null} + -t 4.13603 -s 10 -d 7 -p ack -e 40 -c 0 -i 7312 -a 0 -x {10.0 9.0 3651 ------- null} - -t 4.13603 -s 10 -d 7 -p ack -e 40 -c 0 -i 7312 -a 0 -x {10.0 9.0 3651 ------- null} h -t 4.13603 -s 10 -d 7 -p ack -e 40 -c 0 -i 7312 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.1365 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7299 -a 0 -x {9.0 10.0 3654 ------- null} - -t 4.1365 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7299 -a 0 -x {9.0 10.0 3654 ------- null} h -t 4.1365 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7299 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.13651 -s 0 -d 9 -p ack -e 40 -c 0 -i 7302 -a 0 -x {10.0 9.0 3646 ------- null} + -t 4.13651 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7313 -a 0 -x {9.0 10.0 3661 ------- null} - -t 4.13651 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7313 -a 0 -x {9.0 10.0 3661 ------- null} h -t 4.13651 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7313 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.13658 -s 0 -d 9 -p ack -e 40 -c 0 -i 7306 -a 0 -x {10.0 9.0 3648 ------- null} - -t 4.13658 -s 0 -d 9 -p ack -e 40 -c 0 -i 7306 -a 0 -x {10.0 9.0 3648 ------- null} h -t 4.13658 -s 0 -d 9 -p ack -e 40 -c 0 -i 7306 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.13698 -s 10 -d 7 -p ack -e 40 -c 0 -i 7310 -a 0 -x {10.0 9.0 3650 ------- null} + -t 4.13698 -s 7 -d 0 -p ack -e 40 -c 0 -i 7310 -a 0 -x {10.0 9.0 3650 ------- null} h -t 4.13698 -s 7 -d 8 -p ack -e 40 -c 0 -i 7310 -a 0 -x {10.0 9.0 3650 ------- null} r -t 4.1371 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7309 -a 0 -x {9.0 10.0 3659 ------- null} + -t 4.1371 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7309 -a 0 -x {9.0 10.0 3659 ------- null} h -t 4.1371 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7309 -a 0 -x {9.0 10.0 3659 ------- null} r -t 4.13712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7295 -a 0 -x {9.0 10.0 3652 ------- null} + -t 4.13712 -s 10 -d 7 -p ack -e 40 -c 0 -i 7314 -a 0 -x {10.0 9.0 3652 ------- null} - -t 4.13712 -s 10 -d 7 -p ack -e 40 -c 0 -i 7314 -a 0 -x {10.0 9.0 3652 ------- null} h -t 4.13712 -s 10 -d 7 -p ack -e 40 -c 0 -i 7314 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.1375 -s 0 -d 9 -p ack -e 40 -c 0 -i 7304 -a 0 -x {10.0 9.0 3647 ------- null} + -t 4.1375 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7315 -a 0 -x {9.0 10.0 3662 ------- null} - -t 4.1375 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7315 -a 0 -x {9.0 10.0 3662 ------- null} h -t 4.1375 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7315 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.13758 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7301 -a 0 -x {9.0 10.0 3655 ------- null} - -t 4.13758 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7301 -a 0 -x {9.0 10.0 3655 ------- null} h -t 4.13758 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7301 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.13776 -s 0 -d 9 -p ack -e 40 -c 0 -i 7308 -a 0 -x {10.0 9.0 3649 ------- null} - -t 4.13776 -s 0 -d 9 -p ack -e 40 -c 0 -i 7308 -a 0 -x {10.0 9.0 3649 ------- null} h -t 4.13776 -s 0 -d 9 -p ack -e 40 -c 0 -i 7308 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.13806 -s 10 -d 7 -p ack -e 40 -c 0 -i 7312 -a 0 -x {10.0 9.0 3651 ------- null} + -t 4.13806 -s 7 -d 0 -p ack -e 40 -c 0 -i 7312 -a 0 -x {10.0 9.0 3651 ------- null} h -t 4.13806 -s 7 -d 8 -p ack -e 40 -c 0 -i 7312 -a 0 -x {10.0 9.0 3651 ------- null} r -t 4.13821 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7297 -a 0 -x {9.0 10.0 3653 ------- null} + -t 4.13821 -s 10 -d 7 -p ack -e 40 -c 0 -i 7316 -a 0 -x {10.0 9.0 3653 ------- null} - -t 4.13821 -s 10 -d 7 -p ack -e 40 -c 0 -i 7316 -a 0 -x {10.0 9.0 3653 ------- null} h -t 4.13821 -s 10 -d 7 -p ack -e 40 -c 0 -i 7316 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.13822 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7311 -a 0 -x {9.0 10.0 3660 ------- null} + -t 4.13822 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7311 -a 0 -x {9.0 10.0 3660 ------- null} h -t 4.13822 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7311 -a 0 -x {9.0 10.0 3660 ------- null} r -t 4.13861 -s 0 -d 9 -p ack -e 40 -c 0 -i 7306 -a 0 -x {10.0 9.0 3648 ------- null} + -t 4.13861 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7317 -a 0 -x {9.0 10.0 3663 ------- null} - -t 4.13861 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7317 -a 0 -x {9.0 10.0 3663 ------- null} h -t 4.13861 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7317 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.13867 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7303 -a 0 -x {9.0 10.0 3656 ------- null} - -t 4.13867 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7303 -a 0 -x {9.0 10.0 3656 ------- null} h -t 4.13867 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7303 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.13893 -s 0 -d 9 -p ack -e 40 -c 0 -i 7310 -a 0 -x {10.0 9.0 3650 ------- null} - -t 4.13893 -s 0 -d 9 -p ack -e 40 -c 0 -i 7310 -a 0 -x {10.0 9.0 3650 ------- null} h -t 4.13893 -s 0 -d 9 -p ack -e 40 -c 0 -i 7310 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.13915 -s 10 -d 7 -p ack -e 40 -c 0 -i 7314 -a 0 -x {10.0 9.0 3652 ------- null} + -t 4.13915 -s 7 -d 0 -p ack -e 40 -c 0 -i 7314 -a 0 -x {10.0 9.0 3652 ------- null} h -t 4.13915 -s 7 -d 8 -p ack -e 40 -c 0 -i 7314 -a 0 -x {10.0 9.0 3652 ------- null} r -t 4.1393 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7299 -a 0 -x {9.0 10.0 3654 ------- null} + -t 4.1393 -s 10 -d 7 -p ack -e 40 -c 0 -i 7318 -a 0 -x {10.0 9.0 3654 ------- null} - -t 4.1393 -s 10 -d 7 -p ack -e 40 -c 0 -i 7318 -a 0 -x {10.0 9.0 3654 ------- null} h -t 4.1393 -s 10 -d 7 -p ack -e 40 -c 0 -i 7318 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.13931 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7313 -a 0 -x {9.0 10.0 3661 ------- null} + -t 4.13931 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7313 -a 0 -x {9.0 10.0 3661 ------- null} h -t 4.13931 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7313 -a 0 -x {9.0 10.0 3661 ------- null} + -t 4.13976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7305 -a 0 -x {9.0 10.0 3657 ------- null} - -t 4.13976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7305 -a 0 -x {9.0 10.0 3657 ------- null} h -t 4.13976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7305 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.13979 -s 0 -d 9 -p ack -e 40 -c 0 -i 7308 -a 0 -x {10.0 9.0 3649 ------- null} + -t 4.13979 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7319 -a 0 -x {9.0 10.0 3664 ------- null} - -t 4.13979 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7319 -a 0 -x {9.0 10.0 3664 ------- null} h -t 4.13979 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7319 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.13984 -s 0 -d 9 -p ack -e 40 -c 0 -i 7312 -a 0 -x {10.0 9.0 3651 ------- null} - -t 4.13984 -s 0 -d 9 -p ack -e 40 -c 0 -i 7312 -a 0 -x {10.0 9.0 3651 ------- null} h -t 4.13984 -s 0 -d 9 -p ack -e 40 -c 0 -i 7312 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.14024 -s 10 -d 7 -p ack -e 40 -c 0 -i 7316 -a 0 -x {10.0 9.0 3653 ------- null} + -t 4.14024 -s 7 -d 0 -p ack -e 40 -c 0 -i 7316 -a 0 -x {10.0 9.0 3653 ------- null} h -t 4.14024 -s 7 -d 8 -p ack -e 40 -c 0 -i 7316 -a 0 -x {10.0 9.0 3653 ------- null} r -t 4.1403 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7315 -a 0 -x {9.0 10.0 3662 ------- null} + -t 4.1403 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7315 -a 0 -x {9.0 10.0 3662 ------- null} h -t 4.1403 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7315 -a 0 -x {9.0 10.0 3662 ------- null} r -t 4.14038 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7301 -a 0 -x {9.0 10.0 3655 ------- null} + -t 4.14038 -s 10 -d 7 -p ack -e 40 -c 0 -i 7320 -a 0 -x {10.0 9.0 3655 ------- null} - -t 4.14038 -s 10 -d 7 -p ack -e 40 -c 0 -i 7320 -a 0 -x {10.0 9.0 3655 ------- null} h -t 4.14038 -s 10 -d 7 -p ack -e 40 -c 0 -i 7320 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.14085 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7307 -a 0 -x {9.0 10.0 3658 ------- null} - -t 4.14085 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7307 -a 0 -x {9.0 10.0 3658 ------- null} h -t 4.14085 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7307 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.14096 -s 0 -d 9 -p ack -e 40 -c 0 -i 7310 -a 0 -x {10.0 9.0 3650 ------- null} + -t 4.14096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7321 -a 0 -x {9.0 10.0 3665 ------- null} - -t 4.14096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7321 -a 0 -x {9.0 10.0 3665 ------- null} h -t 4.14096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7321 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.14101 -s 0 -d 9 -p ack -e 40 -c 0 -i 7314 -a 0 -x {10.0 9.0 3652 ------- null} - -t 4.14101 -s 0 -d 9 -p ack -e 40 -c 0 -i 7314 -a 0 -x {10.0 9.0 3652 ------- null} h -t 4.14101 -s 0 -d 9 -p ack -e 40 -c 0 -i 7314 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.14133 -s 10 -d 7 -p ack -e 40 -c 0 -i 7318 -a 0 -x {10.0 9.0 3654 ------- null} + -t 4.14133 -s 7 -d 0 -p ack -e 40 -c 0 -i 7318 -a 0 -x {10.0 9.0 3654 ------- null} h -t 4.14133 -s 7 -d 8 -p ack -e 40 -c 0 -i 7318 -a 0 -x {10.0 9.0 3654 ------- null} r -t 4.14141 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7317 -a 0 -x {9.0 10.0 3663 ------- null} + -t 4.14141 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7317 -a 0 -x {9.0 10.0 3663 ------- null} h -t 4.14141 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7317 -a 0 -x {9.0 10.0 3663 ------- null} r -t 4.14147 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7303 -a 0 -x {9.0 10.0 3656 ------- null} + -t 4.14147 -s 10 -d 7 -p ack -e 40 -c 0 -i 7322 -a 0 -x {10.0 9.0 3656 ------- null} - -t 4.14147 -s 10 -d 7 -p ack -e 40 -c 0 -i 7322 -a 0 -x {10.0 9.0 3656 ------- null} h -t 4.14147 -s 10 -d 7 -p ack -e 40 -c 0 -i 7322 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.14187 -s 0 -d 9 -p ack -e 40 -c 0 -i 7312 -a 0 -x {10.0 9.0 3651 ------- null} + -t 4.14187 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7323 -a 0 -x {9.0 10.0 3666 ------- null} - -t 4.14187 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7323 -a 0 -x {9.0 10.0 3666 ------- null} h -t 4.14187 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7323 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.14194 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7309 -a 0 -x {9.0 10.0 3659 ------- null} - -t 4.14194 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7309 -a 0 -x {9.0 10.0 3659 ------- null} h -t 4.14194 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7309 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.14205 -s 0 -d 9 -p ack -e 40 -c 0 -i 7316 -a 0 -x {10.0 9.0 3653 ------- null} - -t 4.14205 -s 0 -d 9 -p ack -e 40 -c 0 -i 7316 -a 0 -x {10.0 9.0 3653 ------- null} h -t 4.14205 -s 0 -d 9 -p ack -e 40 -c 0 -i 7316 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.14242 -s 10 -d 7 -p ack -e 40 -c 0 -i 7320 -a 0 -x {10.0 9.0 3655 ------- null} + -t 4.14242 -s 7 -d 0 -p ack -e 40 -c 0 -i 7320 -a 0 -x {10.0 9.0 3655 ------- null} h -t 4.14242 -s 7 -d 8 -p ack -e 40 -c 0 -i 7320 -a 0 -x {10.0 9.0 3655 ------- null} r -t 4.14256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7305 -a 0 -x {9.0 10.0 3657 ------- null} + -t 4.14256 -s 10 -d 7 -p ack -e 40 -c 0 -i 7324 -a 0 -x {10.0 9.0 3657 ------- null} - -t 4.14256 -s 10 -d 7 -p ack -e 40 -c 0 -i 7324 -a 0 -x {10.0 9.0 3657 ------- null} h -t 4.14256 -s 10 -d 7 -p ack -e 40 -c 0 -i 7324 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.14259 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7319 -a 0 -x {9.0 10.0 3664 ------- null} + -t 4.14259 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7319 -a 0 -x {9.0 10.0 3664 ------- null} h -t 4.14259 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7319 -a 0 -x {9.0 10.0 3664 ------- null} + -t 4.14302 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7311 -a 0 -x {9.0 10.0 3660 ------- null} - -t 4.14302 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7311 -a 0 -x {9.0 10.0 3660 ------- null} h -t 4.14302 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7311 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.14304 -s 0 -d 9 -p ack -e 40 -c 0 -i 7314 -a 0 -x {10.0 9.0 3652 ------- null} + -t 4.14304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7325 -a 0 -x {9.0 10.0 3667 ------- null} - -t 4.14304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7325 -a 0 -x {9.0 10.0 3667 ------- null} h -t 4.14304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7325 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.1431 -s 0 -d 9 -p ack -e 40 -c 0 -i 7318 -a 0 -x {10.0 9.0 3654 ------- null} - -t 4.1431 -s 0 -d 9 -p ack -e 40 -c 0 -i 7318 -a 0 -x {10.0 9.0 3654 ------- null} h -t 4.1431 -s 0 -d 9 -p ack -e 40 -c 0 -i 7318 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.1435 -s 10 -d 7 -p ack -e 40 -c 0 -i 7322 -a 0 -x {10.0 9.0 3656 ------- null} + -t 4.1435 -s 7 -d 0 -p ack -e 40 -c 0 -i 7322 -a 0 -x {10.0 9.0 3656 ------- null} h -t 4.1435 -s 7 -d 8 -p ack -e 40 -c 0 -i 7322 -a 0 -x {10.0 9.0 3656 ------- null} r -t 4.14365 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7307 -a 0 -x {9.0 10.0 3658 ------- null} + -t 4.14365 -s 10 -d 7 -p ack -e 40 -c 0 -i 7326 -a 0 -x {10.0 9.0 3658 ------- null} - -t 4.14365 -s 10 -d 7 -p ack -e 40 -c 0 -i 7326 -a 0 -x {10.0 9.0 3658 ------- null} h -t 4.14365 -s 10 -d 7 -p ack -e 40 -c 0 -i 7326 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.14376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7321 -a 0 -x {9.0 10.0 3665 ------- null} + -t 4.14376 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7321 -a 0 -x {9.0 10.0 3665 ------- null} h -t 4.14376 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7321 -a 0 -x {9.0 10.0 3665 ------- null} r -t 4.14408 -s 0 -d 9 -p ack -e 40 -c 0 -i 7316 -a 0 -x {10.0 9.0 3653 ------- null} + -t 4.14408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7327 -a 0 -x {9.0 10.0 3668 ------- null} - -t 4.14408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7327 -a 0 -x {9.0 10.0 3668 ------- null} h -t 4.14408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7327 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.14411 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7313 -a 0 -x {9.0 10.0 3661 ------- null} - -t 4.14411 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7313 -a 0 -x {9.0 10.0 3661 ------- null} h -t 4.14411 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7313 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.14421 -s 0 -d 9 -p ack -e 40 -c 0 -i 7320 -a 0 -x {10.0 9.0 3655 ------- null} - -t 4.14421 -s 0 -d 9 -p ack -e 40 -c 0 -i 7320 -a 0 -x {10.0 9.0 3655 ------- null} h -t 4.14421 -s 0 -d 9 -p ack -e 40 -c 0 -i 7320 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.14459 -s 10 -d 7 -p ack -e 40 -c 0 -i 7324 -a 0 -x {10.0 9.0 3657 ------- null} + -t 4.14459 -s 7 -d 0 -p ack -e 40 -c 0 -i 7324 -a 0 -x {10.0 9.0 3657 ------- null} h -t 4.14459 -s 7 -d 8 -p ack -e 40 -c 0 -i 7324 -a 0 -x {10.0 9.0 3657 ------- null} r -t 4.14467 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7323 -a 0 -x {9.0 10.0 3666 ------- null} + -t 4.14467 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7323 -a 0 -x {9.0 10.0 3666 ------- null} h -t 4.14467 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7323 -a 0 -x {9.0 10.0 3666 ------- null} r -t 4.14474 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7309 -a 0 -x {9.0 10.0 3659 ------- null} + -t 4.14474 -s 10 -d 7 -p ack -e 40 -c 0 -i 7328 -a 0 -x {10.0 9.0 3659 ------- null} - -t 4.14474 -s 10 -d 7 -p ack -e 40 -c 0 -i 7328 -a 0 -x {10.0 9.0 3659 ------- null} h -t 4.14474 -s 10 -d 7 -p ack -e 40 -c 0 -i 7328 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.14514 -s 0 -d 9 -p ack -e 40 -c 0 -i 7318 -a 0 -x {10.0 9.0 3654 ------- null} + -t 4.14514 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7329 -a 0 -x {9.0 10.0 3669 ------- null} - -t 4.14514 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7329 -a 0 -x {9.0 10.0 3669 ------- null} h -t 4.14514 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7329 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.1452 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7315 -a 0 -x {9.0 10.0 3662 ------- null} - -t 4.1452 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7315 -a 0 -x {9.0 10.0 3662 ------- null} h -t 4.1452 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7315 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.14531 -s 0 -d 9 -p ack -e 40 -c 0 -i 7322 -a 0 -x {10.0 9.0 3656 ------- null} - -t 4.14531 -s 0 -d 9 -p ack -e 40 -c 0 -i 7322 -a 0 -x {10.0 9.0 3656 ------- null} h -t 4.14531 -s 0 -d 9 -p ack -e 40 -c 0 -i 7322 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.14568 -s 10 -d 7 -p ack -e 40 -c 0 -i 7326 -a 0 -x {10.0 9.0 3658 ------- null} + -t 4.14568 -s 7 -d 0 -p ack -e 40 -c 0 -i 7326 -a 0 -x {10.0 9.0 3658 ------- null} h -t 4.14568 -s 7 -d 8 -p ack -e 40 -c 0 -i 7326 -a 0 -x {10.0 9.0 3658 ------- null} r -t 4.14582 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7311 -a 0 -x {9.0 10.0 3660 ------- null} + -t 4.14582 -s 10 -d 7 -p ack -e 40 -c 0 -i 7330 -a 0 -x {10.0 9.0 3660 ------- null} - -t 4.14582 -s 10 -d 7 -p ack -e 40 -c 0 -i 7330 -a 0 -x {10.0 9.0 3660 ------- null} h -t 4.14582 -s 10 -d 7 -p ack -e 40 -c 0 -i 7330 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.14584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7325 -a 0 -x {9.0 10.0 3667 ------- null} + -t 4.14584 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7325 -a 0 -x {9.0 10.0 3667 ------- null} h -t 4.14584 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7325 -a 0 -x {9.0 10.0 3667 ------- null} r -t 4.14624 -s 0 -d 9 -p ack -e 40 -c 0 -i 7320 -a 0 -x {10.0 9.0 3655 ------- null} + -t 4.14624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7331 -a 0 -x {9.0 10.0 3670 ------- null} - -t 4.14624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7331 -a 0 -x {9.0 10.0 3670 ------- null} h -t 4.14624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7331 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.14629 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7317 -a 0 -x {9.0 10.0 3663 ------- null} - -t 4.14629 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7317 -a 0 -x {9.0 10.0 3663 ------- null} h -t 4.14629 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7317 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.14635 -s 0 -d 9 -p ack -e 40 -c 0 -i 7324 -a 0 -x {10.0 9.0 3657 ------- null} - -t 4.14635 -s 0 -d 9 -p ack -e 40 -c 0 -i 7324 -a 0 -x {10.0 9.0 3657 ------- null} h -t 4.14635 -s 0 -d 9 -p ack -e 40 -c 0 -i 7324 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.14677 -s 10 -d 7 -p ack -e 40 -c 0 -i 7328 -a 0 -x {10.0 9.0 3659 ------- null} + -t 4.14677 -s 7 -d 0 -p ack -e 40 -c 0 -i 7328 -a 0 -x {10.0 9.0 3659 ------- null} h -t 4.14677 -s 7 -d 8 -p ack -e 40 -c 0 -i 7328 -a 0 -x {10.0 9.0 3659 ------- null} r -t 4.14688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7327 -a 0 -x {9.0 10.0 3668 ------- null} + -t 4.14688 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7327 -a 0 -x {9.0 10.0 3668 ------- null} h -t 4.14688 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7327 -a 0 -x {9.0 10.0 3668 ------- null} r -t 4.14691 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7313 -a 0 -x {9.0 10.0 3661 ------- null} + -t 4.14691 -s 10 -d 7 -p ack -e 40 -c 0 -i 7332 -a 0 -x {10.0 9.0 3661 ------- null} - -t 4.14691 -s 10 -d 7 -p ack -e 40 -c 0 -i 7332 -a 0 -x {10.0 9.0 3661 ------- null} h -t 4.14691 -s 10 -d 7 -p ack -e 40 -c 0 -i 7332 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.14734 -s 0 -d 9 -p ack -e 40 -c 0 -i 7322 -a 0 -x {10.0 9.0 3656 ------- null} + -t 4.14734 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7333 -a 0 -x {9.0 10.0 3671 ------- null} - -t 4.14734 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7333 -a 0 -x {9.0 10.0 3671 ------- null} h -t 4.14734 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7333 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.14738 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7319 -a 0 -x {9.0 10.0 3664 ------- null} - -t 4.14738 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7319 -a 0 -x {9.0 10.0 3664 ------- null} h -t 4.14738 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7319 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.14758 -s 0 -d 9 -p ack -e 40 -c 0 -i 7326 -a 0 -x {10.0 9.0 3658 ------- null} - -t 4.14758 -s 0 -d 9 -p ack -e 40 -c 0 -i 7326 -a 0 -x {10.0 9.0 3658 ------- null} h -t 4.14758 -s 0 -d 9 -p ack -e 40 -c 0 -i 7326 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.14786 -s 10 -d 7 -p ack -e 40 -c 0 -i 7330 -a 0 -x {10.0 9.0 3660 ------- null} + -t 4.14786 -s 7 -d 0 -p ack -e 40 -c 0 -i 7330 -a 0 -x {10.0 9.0 3660 ------- null} h -t 4.14786 -s 7 -d 8 -p ack -e 40 -c 0 -i 7330 -a 0 -x {10.0 9.0 3660 ------- null} r -t 4.14794 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7329 -a 0 -x {9.0 10.0 3669 ------- null} + -t 4.14794 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7329 -a 0 -x {9.0 10.0 3669 ------- null} h -t 4.14794 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7329 -a 0 -x {9.0 10.0 3669 ------- null} r -t 4.148 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7315 -a 0 -x {9.0 10.0 3662 ------- null} + -t 4.148 -s 10 -d 7 -p ack -e 40 -c 0 -i 7334 -a 0 -x {10.0 9.0 3662 ------- null} - -t 4.148 -s 10 -d 7 -p ack -e 40 -c 0 -i 7334 -a 0 -x {10.0 9.0 3662 ------- null} h -t 4.148 -s 10 -d 7 -p ack -e 40 -c 0 -i 7334 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.14838 -s 0 -d 9 -p ack -e 40 -c 0 -i 7324 -a 0 -x {10.0 9.0 3657 ------- null} + -t 4.14838 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7335 -a 0 -x {9.0 10.0 3672 ------- null} - -t 4.14838 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7335 -a 0 -x {9.0 10.0 3672 ------- null} h -t 4.14838 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7335 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.14846 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7321 -a 0 -x {9.0 10.0 3665 ------- null} - -t 4.14846 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7321 -a 0 -x {9.0 10.0 3665 ------- null} h -t 4.14846 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7321 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.14874 -s 0 -d 9 -p ack -e 40 -c 0 -i 7328 -a 0 -x {10.0 9.0 3659 ------- null} - -t 4.14874 -s 0 -d 9 -p ack -e 40 -c 0 -i 7328 -a 0 -x {10.0 9.0 3659 ------- null} h -t 4.14874 -s 0 -d 9 -p ack -e 40 -c 0 -i 7328 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.14894 -s 10 -d 7 -p ack -e 40 -c 0 -i 7332 -a 0 -x {10.0 9.0 3661 ------- null} + -t 4.14894 -s 7 -d 0 -p ack -e 40 -c 0 -i 7332 -a 0 -x {10.0 9.0 3661 ------- null} h -t 4.14894 -s 7 -d 8 -p ack -e 40 -c 0 -i 7332 -a 0 -x {10.0 9.0 3661 ------- null} r -t 4.14904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7331 -a 0 -x {9.0 10.0 3670 ------- null} + -t 4.14904 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7331 -a 0 -x {9.0 10.0 3670 ------- null} h -t 4.14904 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7331 -a 0 -x {9.0 10.0 3670 ------- null} r -t 4.14909 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7317 -a 0 -x {9.0 10.0 3663 ------- null} + -t 4.14909 -s 10 -d 7 -p ack -e 40 -c 0 -i 7336 -a 0 -x {10.0 9.0 3663 ------- null} - -t 4.14909 -s 10 -d 7 -p ack -e 40 -c 0 -i 7336 -a 0 -x {10.0 9.0 3663 ------- null} h -t 4.14909 -s 10 -d 7 -p ack -e 40 -c 0 -i 7336 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.1496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7323 -a 0 -x {9.0 10.0 3666 ------- null} - -t 4.1496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7323 -a 0 -x {9.0 10.0 3666 ------- null} h -t 4.1496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7323 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.14962 -s 0 -d 9 -p ack -e 40 -c 0 -i 7326 -a 0 -x {10.0 9.0 3658 ------- null} + -t 4.14962 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7337 -a 0 -x {9.0 10.0 3673 ------- null} - -t 4.14962 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7337 -a 0 -x {9.0 10.0 3673 ------- null} h -t 4.14962 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7337 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.14984 -s 0 -d 9 -p ack -e 40 -c 0 -i 7330 -a 0 -x {10.0 9.0 3660 ------- null} - -t 4.14984 -s 0 -d 9 -p ack -e 40 -c 0 -i 7330 -a 0 -x {10.0 9.0 3660 ------- null} h -t 4.14984 -s 0 -d 9 -p ack -e 40 -c 0 -i 7330 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.15003 -s 10 -d 7 -p ack -e 40 -c 0 -i 7334 -a 0 -x {10.0 9.0 3662 ------- null} + -t 4.15003 -s 7 -d 0 -p ack -e 40 -c 0 -i 7334 -a 0 -x {10.0 9.0 3662 ------- null} h -t 4.15003 -s 7 -d 8 -p ack -e 40 -c 0 -i 7334 -a 0 -x {10.0 9.0 3662 ------- null} r -t 4.15014 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7333 -a 0 -x {9.0 10.0 3671 ------- null} + -t 4.15014 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7333 -a 0 -x {9.0 10.0 3671 ------- null} h -t 4.15014 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7333 -a 0 -x {9.0 10.0 3671 ------- null} r -t 4.15018 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7319 -a 0 -x {9.0 10.0 3664 ------- null} + -t 4.15018 -s 10 -d 7 -p ack -e 40 -c 0 -i 7338 -a 0 -x {10.0 9.0 3664 ------- null} - -t 4.15018 -s 10 -d 7 -p ack -e 40 -c 0 -i 7338 -a 0 -x {10.0 9.0 3664 ------- null} h -t 4.15018 -s 10 -d 7 -p ack -e 40 -c 0 -i 7338 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.15069 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7325 -a 0 -x {9.0 10.0 3667 ------- null} - -t 4.15069 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7325 -a 0 -x {9.0 10.0 3667 ------- null} h -t 4.15069 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7325 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.15077 -s 0 -d 9 -p ack -e 40 -c 0 -i 7328 -a 0 -x {10.0 9.0 3659 ------- null} + -t 4.15077 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7339 -a 0 -x {9.0 10.0 3674 ------- null} - -t 4.15077 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7339 -a 0 -x {9.0 10.0 3674 ------- null} h -t 4.15077 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7339 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.15098 -s 0 -d 9 -p ack -e 40 -c 0 -i 7332 -a 0 -x {10.0 9.0 3661 ------- null} - -t 4.15098 -s 0 -d 9 -p ack -e 40 -c 0 -i 7332 -a 0 -x {10.0 9.0 3661 ------- null} h -t 4.15098 -s 0 -d 9 -p ack -e 40 -c 0 -i 7332 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.15112 -s 10 -d 7 -p ack -e 40 -c 0 -i 7336 -a 0 -x {10.0 9.0 3663 ------- null} + -t 4.15112 -s 7 -d 0 -p ack -e 40 -c 0 -i 7336 -a 0 -x {10.0 9.0 3663 ------- null} h -t 4.15112 -s 7 -d 8 -p ack -e 40 -c 0 -i 7336 -a 0 -x {10.0 9.0 3663 ------- null} r -t 4.15118 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7335 -a 0 -x {9.0 10.0 3672 ------- null} + -t 4.15118 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7335 -a 0 -x {9.0 10.0 3672 ------- null} h -t 4.15118 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7335 -a 0 -x {9.0 10.0 3672 ------- null} r -t 4.15126 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7321 -a 0 -x {9.0 10.0 3665 ------- null} + -t 4.15126 -s 10 -d 7 -p ack -e 40 -c 0 -i 7340 -a 0 -x {10.0 9.0 3665 ------- null} - -t 4.15126 -s 10 -d 7 -p ack -e 40 -c 0 -i 7340 -a 0 -x {10.0 9.0 3665 ------- null} h -t 4.15126 -s 10 -d 7 -p ack -e 40 -c 0 -i 7340 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.15187 -s 0 -d 9 -p ack -e 40 -c 0 -i 7330 -a 0 -x {10.0 9.0 3660 ------- null} + -t 4.15187 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7341 -a 0 -x {9.0 10.0 3675 ------- null} - -t 4.15187 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7341 -a 0 -x {9.0 10.0 3675 ------- null} h -t 4.15187 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7341 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.15192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7327 -a 0 -x {9.0 10.0 3668 ------- null} - -t 4.15192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7327 -a 0 -x {9.0 10.0 3668 ------- null} h -t 4.15192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7327 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.15202 -s 0 -d 9 -p ack -e 40 -c 0 -i 7334 -a 0 -x {10.0 9.0 3662 ------- null} - -t 4.15202 -s 0 -d 9 -p ack -e 40 -c 0 -i 7334 -a 0 -x {10.0 9.0 3662 ------- null} h -t 4.15202 -s 0 -d 9 -p ack -e 40 -c 0 -i 7334 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.15221 -s 10 -d 7 -p ack -e 40 -c 0 -i 7338 -a 0 -x {10.0 9.0 3664 ------- null} + -t 4.15221 -s 7 -d 0 -p ack -e 40 -c 0 -i 7338 -a 0 -x {10.0 9.0 3664 ------- null} h -t 4.15221 -s 7 -d 8 -p ack -e 40 -c 0 -i 7338 -a 0 -x {10.0 9.0 3664 ------- null} r -t 4.1524 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7323 -a 0 -x {9.0 10.0 3666 ------- null} + -t 4.1524 -s 10 -d 7 -p ack -e 40 -c 0 -i 7342 -a 0 -x {10.0 9.0 3666 ------- null} - -t 4.1524 -s 10 -d 7 -p ack -e 40 -c 0 -i 7342 -a 0 -x {10.0 9.0 3666 ------- null} h -t 4.1524 -s 10 -d 7 -p ack -e 40 -c 0 -i 7342 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.15242 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7337 -a 0 -x {9.0 10.0 3673 ------- null} + -t 4.15242 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7337 -a 0 -x {9.0 10.0 3673 ------- null} h -t 4.15242 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7337 -a 0 -x {9.0 10.0 3673 ------- null} r -t 4.15301 -s 0 -d 9 -p ack -e 40 -c 0 -i 7332 -a 0 -x {10.0 9.0 3661 ------- null} + -t 4.15301 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7343 -a 0 -x {9.0 10.0 3676 ------- null} - -t 4.15301 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7343 -a 0 -x {9.0 10.0 3676 ------- null} h -t 4.15301 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7343 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.15301 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7329 -a 0 -x {9.0 10.0 3669 ------- null} - -t 4.15301 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7329 -a 0 -x {9.0 10.0 3669 ------- null} h -t 4.15301 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7329 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.1533 -s 10 -d 7 -p ack -e 40 -c 0 -i 7340 -a 0 -x {10.0 9.0 3665 ------- null} + -t 4.1533 -s 7 -d 0 -p ack -e 40 -c 0 -i 7340 -a 0 -x {10.0 9.0 3665 ------- null} h -t 4.1533 -s 7 -d 8 -p ack -e 40 -c 0 -i 7340 -a 0 -x {10.0 9.0 3665 ------- null} + -t 4.15331 -s 0 -d 9 -p ack -e 40 -c 0 -i 7336 -a 0 -x {10.0 9.0 3663 ------- null} - -t 4.15331 -s 0 -d 9 -p ack -e 40 -c 0 -i 7336 -a 0 -x {10.0 9.0 3663 ------- null} h -t 4.15331 -s 0 -d 9 -p ack -e 40 -c 0 -i 7336 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.15349 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7325 -a 0 -x {9.0 10.0 3667 ------- null} + -t 4.15349 -s 10 -d 7 -p ack -e 40 -c 0 -i 7344 -a 0 -x {10.0 9.0 3667 ------- null} - -t 4.15349 -s 10 -d 7 -p ack -e 40 -c 0 -i 7344 -a 0 -x {10.0 9.0 3667 ------- null} h -t 4.15349 -s 10 -d 7 -p ack -e 40 -c 0 -i 7344 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.15357 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7339 -a 0 -x {9.0 10.0 3674 ------- null} + -t 4.15357 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7339 -a 0 -x {9.0 10.0 3674 ------- null} h -t 4.15357 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7339 -a 0 -x {9.0 10.0 3674 ------- null} r -t 4.15405 -s 0 -d 9 -p ack -e 40 -c 0 -i 7334 -a 0 -x {10.0 9.0 3662 ------- null} + -t 4.15405 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7345 -a 0 -x {9.0 10.0 3677 ------- null} - -t 4.15405 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7345 -a 0 -x {9.0 10.0 3677 ------- null} h -t 4.15405 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7345 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.15422 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7331 -a 0 -x {9.0 10.0 3670 ------- null} - -t 4.15422 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7331 -a 0 -x {9.0 10.0 3670 ------- null} h -t 4.15422 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7331 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.15438 -s 0 -d 9 -p ack -e 40 -c 0 -i 7338 -a 0 -x {10.0 9.0 3664 ------- null} - -t 4.15438 -s 0 -d 9 -p ack -e 40 -c 0 -i 7338 -a 0 -x {10.0 9.0 3664 ------- null} h -t 4.15438 -s 0 -d 9 -p ack -e 40 -c 0 -i 7338 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.15443 -s 10 -d 7 -p ack -e 40 -c 0 -i 7342 -a 0 -x {10.0 9.0 3666 ------- null} + -t 4.15443 -s 7 -d 0 -p ack -e 40 -c 0 -i 7342 -a 0 -x {10.0 9.0 3666 ------- null} h -t 4.15443 -s 7 -d 8 -p ack -e 40 -c 0 -i 7342 -a 0 -x {10.0 9.0 3666 ------- null} r -t 4.15467 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7341 -a 0 -x {9.0 10.0 3675 ------- null} + -t 4.15467 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7341 -a 0 -x {9.0 10.0 3675 ------- null} h -t 4.15467 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7341 -a 0 -x {9.0 10.0 3675 ------- null} r -t 4.15472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7327 -a 0 -x {9.0 10.0 3668 ------- null} + -t 4.15472 -s 10 -d 7 -p ack -e 40 -c 0 -i 7346 -a 0 -x {10.0 9.0 3668 ------- null} - -t 4.15472 -s 10 -d 7 -p ack -e 40 -c 0 -i 7346 -a 0 -x {10.0 9.0 3668 ------- null} h -t 4.15472 -s 10 -d 7 -p ack -e 40 -c 0 -i 7346 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.15531 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7333 -a 0 -x {9.0 10.0 3671 ------- null} - -t 4.15531 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7333 -a 0 -x {9.0 10.0 3671 ------- null} h -t 4.15531 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7333 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.15534 -s 0 -d 9 -p ack -e 40 -c 0 -i 7336 -a 0 -x {10.0 9.0 3663 ------- null} + -t 4.15534 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7347 -a 0 -x {9.0 10.0 3678 ------- null} - -t 4.15534 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7347 -a 0 -x {9.0 10.0 3678 ------- null} h -t 4.15534 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7347 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.15552 -s 10 -d 7 -p ack -e 40 -c 0 -i 7344 -a 0 -x {10.0 9.0 3667 ------- null} + -t 4.15552 -s 7 -d 0 -p ack -e 40 -c 0 -i 7344 -a 0 -x {10.0 9.0 3667 ------- null} h -t 4.15552 -s 7 -d 8 -p ack -e 40 -c 0 -i 7344 -a 0 -x {10.0 9.0 3667 ------- null} + -t 4.15557 -s 0 -d 9 -p ack -e 40 -c 0 -i 7340 -a 0 -x {10.0 9.0 3665 ------- null} - -t 4.15557 -s 0 -d 9 -p ack -e 40 -c 0 -i 7340 -a 0 -x {10.0 9.0 3665 ------- null} h -t 4.15557 -s 0 -d 9 -p ack -e 40 -c 0 -i 7340 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.15581 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7343 -a 0 -x {9.0 10.0 3676 ------- null} + -t 4.15581 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7343 -a 0 -x {9.0 10.0 3676 ------- null} h -t 4.15581 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7343 -a 0 -x {9.0 10.0 3676 ------- null} r -t 4.15581 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7329 -a 0 -x {9.0 10.0 3669 ------- null} + -t 4.15581 -s 10 -d 7 -p ack -e 40 -c 0 -i 7348 -a 0 -x {10.0 9.0 3669 ------- null} - -t 4.15581 -s 10 -d 7 -p ack -e 40 -c 0 -i 7348 -a 0 -x {10.0 9.0 3669 ------- null} h -t 4.15581 -s 10 -d 7 -p ack -e 40 -c 0 -i 7348 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.1564 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7335 -a 0 -x {9.0 10.0 3672 ------- null} - -t 4.1564 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7335 -a 0 -x {9.0 10.0 3672 ------- null} h -t 4.1564 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7335 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.15642 -s 0 -d 9 -p ack -e 40 -c 0 -i 7338 -a 0 -x {10.0 9.0 3664 ------- null} + -t 4.15642 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7349 -a 0 -x {9.0 10.0 3679 ------- null} - -t 4.15642 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7349 -a 0 -x {9.0 10.0 3679 ------- null} h -t 4.15642 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7349 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.15661 -s 0 -d 9 -p ack -e 40 -c 0 -i 7342 -a 0 -x {10.0 9.0 3666 ------- null} - -t 4.15661 -s 0 -d 9 -p ack -e 40 -c 0 -i 7342 -a 0 -x {10.0 9.0 3666 ------- null} h -t 4.15661 -s 0 -d 9 -p ack -e 40 -c 0 -i 7342 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.15675 -s 10 -d 7 -p ack -e 40 -c 0 -i 7346 -a 0 -x {10.0 9.0 3668 ------- null} + -t 4.15675 -s 7 -d 0 -p ack -e 40 -c 0 -i 7346 -a 0 -x {10.0 9.0 3668 ------- null} h -t 4.15675 -s 7 -d 8 -p ack -e 40 -c 0 -i 7346 -a 0 -x {10.0 9.0 3668 ------- null} r -t 4.15685 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7345 -a 0 -x {9.0 10.0 3677 ------- null} + -t 4.15685 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7345 -a 0 -x {9.0 10.0 3677 ------- null} h -t 4.15685 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7345 -a 0 -x {9.0 10.0 3677 ------- null} r -t 4.15702 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7331 -a 0 -x {9.0 10.0 3670 ------- null} + -t 4.15702 -s 10 -d 7 -p ack -e 40 -c 0 -i 7350 -a 0 -x {10.0 9.0 3670 ------- null} - -t 4.15702 -s 10 -d 7 -p ack -e 40 -c 0 -i 7350 -a 0 -x {10.0 9.0 3670 ------- null} h -t 4.15702 -s 10 -d 7 -p ack -e 40 -c 0 -i 7350 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.15749 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7337 -a 0 -x {9.0 10.0 3673 ------- null} - -t 4.15749 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7337 -a 0 -x {9.0 10.0 3673 ------- null} h -t 4.15749 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7337 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.1576 -s 0 -d 9 -p ack -e 40 -c 0 -i 7340 -a 0 -x {10.0 9.0 3665 ------- null} + -t 4.1576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7351 -a 0 -x {9.0 10.0 3680 ------- null} - -t 4.1576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7351 -a 0 -x {9.0 10.0 3680 ------- null} h -t 4.1576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7351 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.15778 -s 0 -d 9 -p ack -e 40 -c 0 -i 7344 -a 0 -x {10.0 9.0 3667 ------- null} - -t 4.15778 -s 0 -d 9 -p ack -e 40 -c 0 -i 7344 -a 0 -x {10.0 9.0 3667 ------- null} h -t 4.15778 -s 0 -d 9 -p ack -e 40 -c 0 -i 7344 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.15784 -s 10 -d 7 -p ack -e 40 -c 0 -i 7348 -a 0 -x {10.0 9.0 3669 ------- null} + -t 4.15784 -s 7 -d 0 -p ack -e 40 -c 0 -i 7348 -a 0 -x {10.0 9.0 3669 ------- null} h -t 4.15784 -s 7 -d 8 -p ack -e 40 -c 0 -i 7348 -a 0 -x {10.0 9.0 3669 ------- null} r -t 4.15811 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7333 -a 0 -x {9.0 10.0 3671 ------- null} + -t 4.15811 -s 10 -d 7 -p ack -e 40 -c 0 -i 7352 -a 0 -x {10.0 9.0 3671 ------- null} - -t 4.15811 -s 10 -d 7 -p ack -e 40 -c 0 -i 7352 -a 0 -x {10.0 9.0 3671 ------- null} h -t 4.15811 -s 10 -d 7 -p ack -e 40 -c 0 -i 7352 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.15814 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7347 -a 0 -x {9.0 10.0 3678 ------- null} + -t 4.15814 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7347 -a 0 -x {9.0 10.0 3678 ------- null} h -t 4.15814 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7347 -a 0 -x {9.0 10.0 3678 ------- null} r -t 4.15864 -s 0 -d 9 -p ack -e 40 -c 0 -i 7342 -a 0 -x {10.0 9.0 3666 ------- null} + -t 4.15864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7353 -a 0 -x {9.0 10.0 3681 ------- null} - -t 4.15864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7353 -a 0 -x {9.0 10.0 3681 ------- null} h -t 4.15864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7353 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.15874 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7339 -a 0 -x {9.0 10.0 3674 ------- null} - -t 4.15874 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7339 -a 0 -x {9.0 10.0 3674 ------- null} h -t 4.15874 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7339 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.15894 -s 0 -d 9 -p ack -e 40 -c 0 -i 7346 -a 0 -x {10.0 9.0 3668 ------- null} - -t 4.15894 -s 0 -d 9 -p ack -e 40 -c 0 -i 7346 -a 0 -x {10.0 9.0 3668 ------- null} h -t 4.15894 -s 0 -d 9 -p ack -e 40 -c 0 -i 7346 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.15906 -s 10 -d 7 -p ack -e 40 -c 0 -i 7350 -a 0 -x {10.0 9.0 3670 ------- null} + -t 4.15906 -s 7 -d 0 -p ack -e 40 -c 0 -i 7350 -a 0 -x {10.0 9.0 3670 ------- null} h -t 4.15906 -s 7 -d 8 -p ack -e 40 -c 0 -i 7350 -a 0 -x {10.0 9.0 3670 ------- null} r -t 4.1592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7335 -a 0 -x {9.0 10.0 3672 ------- null} + -t 4.1592 -s 10 -d 7 -p ack -e 40 -c 0 -i 7354 -a 0 -x {10.0 9.0 3672 ------- null} - -t 4.1592 -s 10 -d 7 -p ack -e 40 -c 0 -i 7354 -a 0 -x {10.0 9.0 3672 ------- null} h -t 4.1592 -s 10 -d 7 -p ack -e 40 -c 0 -i 7354 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.15922 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7349 -a 0 -x {9.0 10.0 3679 ------- null} + -t 4.15922 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7349 -a 0 -x {9.0 10.0 3679 ------- null} h -t 4.15922 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7349 -a 0 -x {9.0 10.0 3679 ------- null} r -t 4.15981 -s 0 -d 9 -p ack -e 40 -c 0 -i 7344 -a 0 -x {10.0 9.0 3667 ------- null} + -t 4.15981 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7355 -a 0 -x {9.0 10.0 3682 ------- null} - -t 4.15981 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7355 -a 0 -x {9.0 10.0 3682 ------- null} h -t 4.15981 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7355 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.15982 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7341 -a 0 -x {9.0 10.0 3675 ------- null} - -t 4.15982 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7341 -a 0 -x {9.0 10.0 3675 ------- null} h -t 4.15982 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7341 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.15994 -s 0 -d 9 -p ack -e 40 -c 0 -i 7348 -a 0 -x {10.0 9.0 3669 ------- null} - -t 4.15994 -s 0 -d 9 -p ack -e 40 -c 0 -i 7348 -a 0 -x {10.0 9.0 3669 ------- null} h -t 4.15994 -s 0 -d 9 -p ack -e 40 -c 0 -i 7348 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.16014 -s 10 -d 7 -p ack -e 40 -c 0 -i 7352 -a 0 -x {10.0 9.0 3671 ------- null} + -t 4.16014 -s 7 -d 0 -p ack -e 40 -c 0 -i 7352 -a 0 -x {10.0 9.0 3671 ------- null} h -t 4.16014 -s 7 -d 8 -p ack -e 40 -c 0 -i 7352 -a 0 -x {10.0 9.0 3671 ------- null} r -t 4.16029 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7337 -a 0 -x {9.0 10.0 3673 ------- null} + -t 4.16029 -s 10 -d 7 -p ack -e 40 -c 0 -i 7356 -a 0 -x {10.0 9.0 3673 ------- null} - -t 4.16029 -s 10 -d 7 -p ack -e 40 -c 0 -i 7356 -a 0 -x {10.0 9.0 3673 ------- null} h -t 4.16029 -s 10 -d 7 -p ack -e 40 -c 0 -i 7356 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.1604 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7351 -a 0 -x {9.0 10.0 3680 ------- null} + -t 4.1604 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7351 -a 0 -x {9.0 10.0 3680 ------- null} h -t 4.1604 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7351 -a 0 -x {9.0 10.0 3680 ------- null} + -t 4.16091 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7343 -a 0 -x {9.0 10.0 3676 ------- null} - -t 4.16091 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7343 -a 0 -x {9.0 10.0 3676 ------- null} h -t 4.16091 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7343 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.16098 -s 0 -d 9 -p ack -e 40 -c 0 -i 7346 -a 0 -x {10.0 9.0 3668 ------- null} + -t 4.16098 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7357 -a 0 -x {9.0 10.0 3683 ------- null} - -t 4.16098 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7357 -a 0 -x {9.0 10.0 3683 ------- null} h -t 4.16098 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7357 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.1611 -s 0 -d 9 -p ack -e 40 -c 0 -i 7350 -a 0 -x {10.0 9.0 3670 ------- null} - -t 4.1611 -s 0 -d 9 -p ack -e 40 -c 0 -i 7350 -a 0 -x {10.0 9.0 3670 ------- null} h -t 4.1611 -s 0 -d 9 -p ack -e 40 -c 0 -i 7350 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.16123 -s 10 -d 7 -p ack -e 40 -c 0 -i 7354 -a 0 -x {10.0 9.0 3672 ------- null} + -t 4.16123 -s 7 -d 0 -p ack -e 40 -c 0 -i 7354 -a 0 -x {10.0 9.0 3672 ------- null} h -t 4.16123 -s 7 -d 8 -p ack -e 40 -c 0 -i 7354 -a 0 -x {10.0 9.0 3672 ------- null} r -t 4.16144 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7353 -a 0 -x {9.0 10.0 3681 ------- null} + -t 4.16144 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7353 -a 0 -x {9.0 10.0 3681 ------- null} h -t 4.16144 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7353 -a 0 -x {9.0 10.0 3681 ------- null} r -t 4.16154 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7339 -a 0 -x {9.0 10.0 3674 ------- null} + -t 4.16154 -s 10 -d 7 -p ack -e 40 -c 0 -i 7358 -a 0 -x {10.0 9.0 3674 ------- null} - -t 4.16154 -s 10 -d 7 -p ack -e 40 -c 0 -i 7358 -a 0 -x {10.0 9.0 3674 ------- null} h -t 4.16154 -s 10 -d 7 -p ack -e 40 -c 0 -i 7358 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.16197 -s 0 -d 9 -p ack -e 40 -c 0 -i 7348 -a 0 -x {10.0 9.0 3669 ------- null} + -t 4.16197 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7359 -a 0 -x {9.0 10.0 3684 ------- null} - -t 4.16197 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7359 -a 0 -x {9.0 10.0 3684 ------- null} h -t 4.16197 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7359 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.162 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7345 -a 0 -x {9.0 10.0 3677 ------- null} - -t 4.162 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7345 -a 0 -x {9.0 10.0 3677 ------- null} h -t 4.162 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7345 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.1623 -s 0 -d 9 -p ack -e 40 -c 0 -i 7352 -a 0 -x {10.0 9.0 3671 ------- null} - -t 4.1623 -s 0 -d 9 -p ack -e 40 -c 0 -i 7352 -a 0 -x {10.0 9.0 3671 ------- null} h -t 4.1623 -s 0 -d 9 -p ack -e 40 -c 0 -i 7352 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.16232 -s 10 -d 7 -p ack -e 40 -c 0 -i 7356 -a 0 -x {10.0 9.0 3673 ------- null} + -t 4.16232 -s 7 -d 0 -p ack -e 40 -c 0 -i 7356 -a 0 -x {10.0 9.0 3673 ------- null} h -t 4.16232 -s 7 -d 8 -p ack -e 40 -c 0 -i 7356 -a 0 -x {10.0 9.0 3673 ------- null} r -t 4.16261 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7355 -a 0 -x {9.0 10.0 3682 ------- null} + -t 4.16261 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7355 -a 0 -x {9.0 10.0 3682 ------- null} h -t 4.16261 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7355 -a 0 -x {9.0 10.0 3682 ------- null} r -t 4.16262 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7341 -a 0 -x {9.0 10.0 3675 ------- null} + -t 4.16262 -s 10 -d 7 -p ack -e 40 -c 0 -i 7360 -a 0 -x {10.0 9.0 3675 ------- null} - -t 4.16262 -s 10 -d 7 -p ack -e 40 -c 0 -i 7360 -a 0 -x {10.0 9.0 3675 ------- null} h -t 4.16262 -s 10 -d 7 -p ack -e 40 -c 0 -i 7360 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.16314 -s 0 -d 9 -p ack -e 40 -c 0 -i 7350 -a 0 -x {10.0 9.0 3670 ------- null} + -t 4.16314 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7361 -a 0 -x {9.0 10.0 3685 ------- null} - -t 4.16314 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7361 -a 0 -x {9.0 10.0 3685 ------- null} h -t 4.16314 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7361 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.16338 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7347 -a 0 -x {9.0 10.0 3678 ------- null} - -t 4.16338 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7347 -a 0 -x {9.0 10.0 3678 ------- null} h -t 4.16338 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7347 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.1635 -s 0 -d 9 -p ack -e 40 -c 0 -i 7354 -a 0 -x {10.0 9.0 3672 ------- null} - -t 4.1635 -s 0 -d 9 -p ack -e 40 -c 0 -i 7354 -a 0 -x {10.0 9.0 3672 ------- null} h -t 4.1635 -s 0 -d 9 -p ack -e 40 -c 0 -i 7354 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.16357 -s 10 -d 7 -p ack -e 40 -c 0 -i 7358 -a 0 -x {10.0 9.0 3674 ------- null} + -t 4.16357 -s 7 -d 0 -p ack -e 40 -c 0 -i 7358 -a 0 -x {10.0 9.0 3674 ------- null} h -t 4.16357 -s 7 -d 8 -p ack -e 40 -c 0 -i 7358 -a 0 -x {10.0 9.0 3674 ------- null} r -t 4.16371 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7343 -a 0 -x {9.0 10.0 3676 ------- null} + -t 4.16371 -s 10 -d 7 -p ack -e 40 -c 0 -i 7362 -a 0 -x {10.0 9.0 3676 ------- null} - -t 4.16371 -s 10 -d 7 -p ack -e 40 -c 0 -i 7362 -a 0 -x {10.0 9.0 3676 ------- null} h -t 4.16371 -s 10 -d 7 -p ack -e 40 -c 0 -i 7362 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.16378 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7357 -a 0 -x {9.0 10.0 3683 ------- null} + -t 4.16378 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7357 -a 0 -x {9.0 10.0 3683 ------- null} h -t 4.16378 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7357 -a 0 -x {9.0 10.0 3683 ------- null} r -t 4.16434 -s 0 -d 9 -p ack -e 40 -c 0 -i 7352 -a 0 -x {10.0 9.0 3671 ------- null} + -t 4.16434 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7363 -a 0 -x {9.0 10.0 3686 ------- null} - -t 4.16434 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7363 -a 0 -x {9.0 10.0 3686 ------- null} h -t 4.16434 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7363 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.16446 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7349 -a 0 -x {9.0 10.0 3679 ------- null} - -t 4.16446 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7349 -a 0 -x {9.0 10.0 3679 ------- null} h -t 4.16446 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7349 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.16453 -s 0 -d 9 -p ack -e 40 -c 0 -i 7356 -a 0 -x {10.0 9.0 3673 ------- null} - -t 4.16453 -s 0 -d 9 -p ack -e 40 -c 0 -i 7356 -a 0 -x {10.0 9.0 3673 ------- null} h -t 4.16453 -s 0 -d 9 -p ack -e 40 -c 0 -i 7356 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.16466 -s 10 -d 7 -p ack -e 40 -c 0 -i 7360 -a 0 -x {10.0 9.0 3675 ------- null} + -t 4.16466 -s 7 -d 0 -p ack -e 40 -c 0 -i 7360 -a 0 -x {10.0 9.0 3675 ------- null} h -t 4.16466 -s 7 -d 8 -p ack -e 40 -c 0 -i 7360 -a 0 -x {10.0 9.0 3675 ------- null} r -t 4.16477 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7359 -a 0 -x {9.0 10.0 3684 ------- null} + -t 4.16477 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7359 -a 0 -x {9.0 10.0 3684 ------- null} h -t 4.16477 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7359 -a 0 -x {9.0 10.0 3684 ------- null} r -t 4.1648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7345 -a 0 -x {9.0 10.0 3677 ------- null} + -t 4.1648 -s 10 -d 7 -p ack -e 40 -c 0 -i 7364 -a 0 -x {10.0 9.0 3677 ------- null} - -t 4.1648 -s 10 -d 7 -p ack -e 40 -c 0 -i 7364 -a 0 -x {10.0 9.0 3677 ------- null} h -t 4.1648 -s 10 -d 7 -p ack -e 40 -c 0 -i 7364 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.16554 -s 0 -d 9 -p ack -e 40 -c 0 -i 7354 -a 0 -x {10.0 9.0 3672 ------- null} + -t 4.16554 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7365 -a 0 -x {9.0 10.0 3687 ------- null} - -t 4.16554 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7365 -a 0 -x {9.0 10.0 3687 ------- null} h -t 4.16554 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7365 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.16555 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7351 -a 0 -x {9.0 10.0 3680 ------- null} - -t 4.16555 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7351 -a 0 -x {9.0 10.0 3680 ------- null} h -t 4.16555 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7351 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.16573 -s 0 -d 9 -p ack -e 40 -c 0 -i 7358 -a 0 -x {10.0 9.0 3674 ------- null} - -t 4.16573 -s 0 -d 9 -p ack -e 40 -c 0 -i 7358 -a 0 -x {10.0 9.0 3674 ------- null} h -t 4.16573 -s 0 -d 9 -p ack -e 40 -c 0 -i 7358 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.16574 -s 10 -d 7 -p ack -e 40 -c 0 -i 7362 -a 0 -x {10.0 9.0 3676 ------- null} + -t 4.16574 -s 7 -d 0 -p ack -e 40 -c 0 -i 7362 -a 0 -x {10.0 9.0 3676 ------- null} h -t 4.16574 -s 7 -d 8 -p ack -e 40 -c 0 -i 7362 -a 0 -x {10.0 9.0 3676 ------- null} r -t 4.16594 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7361 -a 0 -x {9.0 10.0 3685 ------- null} + -t 4.16594 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7361 -a 0 -x {9.0 10.0 3685 ------- null} h -t 4.16594 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7361 -a 0 -x {9.0 10.0 3685 ------- null} r -t 4.16618 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7347 -a 0 -x {9.0 10.0 3678 ------- null} + -t 4.16618 -s 10 -d 7 -p ack -e 40 -c 0 -i 7366 -a 0 -x {10.0 9.0 3678 ------- null} - -t 4.16618 -s 10 -d 7 -p ack -e 40 -c 0 -i 7366 -a 0 -x {10.0 9.0 3678 ------- null} h -t 4.16618 -s 10 -d 7 -p ack -e 40 -c 0 -i 7366 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.16656 -s 0 -d 9 -p ack -e 40 -c 0 -i 7356 -a 0 -x {10.0 9.0 3673 ------- null} + -t 4.16656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7367 -a 0 -x {9.0 10.0 3688 ------- null} - -t 4.16656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7367 -a 0 -x {9.0 10.0 3688 ------- null} h -t 4.16656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7367 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.16664 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7353 -a 0 -x {9.0 10.0 3681 ------- null} - -t 4.16664 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7353 -a 0 -x {9.0 10.0 3681 ------- null} h -t 4.16664 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7353 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.16683 -s 10 -d 7 -p ack -e 40 -c 0 -i 7364 -a 0 -x {10.0 9.0 3677 ------- null} + -t 4.16683 -s 7 -d 0 -p ack -e 40 -c 0 -i 7364 -a 0 -x {10.0 9.0 3677 ------- null} h -t 4.16683 -s 7 -d 8 -p ack -e 40 -c 0 -i 7364 -a 0 -x {10.0 9.0 3677 ------- null} + -t 4.16685 -s 0 -d 9 -p ack -e 40 -c 0 -i 7360 -a 0 -x {10.0 9.0 3675 ------- null} - -t 4.16685 -s 0 -d 9 -p ack -e 40 -c 0 -i 7360 -a 0 -x {10.0 9.0 3675 ------- null} h -t 4.16685 -s 0 -d 9 -p ack -e 40 -c 0 -i 7360 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.16714 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7363 -a 0 -x {9.0 10.0 3686 ------- null} + -t 4.16714 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7363 -a 0 -x {9.0 10.0 3686 ------- null} h -t 4.16714 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7363 -a 0 -x {9.0 10.0 3686 ------- null} r -t 4.16726 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7349 -a 0 -x {9.0 10.0 3679 ------- null} + -t 4.16726 -s 10 -d 7 -p ack -e 40 -c 0 -i 7368 -a 0 -x {10.0 9.0 3679 ------- null} - -t 4.16726 -s 10 -d 7 -p ack -e 40 -c 0 -i 7368 -a 0 -x {10.0 9.0 3679 ------- null} h -t 4.16726 -s 10 -d 7 -p ack -e 40 -c 0 -i 7368 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.16773 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7355 -a 0 -x {9.0 10.0 3682 ------- null} - -t 4.16773 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7355 -a 0 -x {9.0 10.0 3682 ------- null} h -t 4.16773 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7355 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.16776 -s 0 -d 9 -p ack -e 40 -c 0 -i 7358 -a 0 -x {10.0 9.0 3674 ------- null} + -t 4.16776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7369 -a 0 -x {9.0 10.0 3689 ------- null} - -t 4.16776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7369 -a 0 -x {9.0 10.0 3689 ------- null} h -t 4.16776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7369 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.168 -s 0 -d 9 -p ack -e 40 -c 0 -i 7362 -a 0 -x {10.0 9.0 3676 ------- null} - -t 4.168 -s 0 -d 9 -p ack -e 40 -c 0 -i 7362 -a 0 -x {10.0 9.0 3676 ------- null} h -t 4.168 -s 0 -d 9 -p ack -e 40 -c 0 -i 7362 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.16821 -s 10 -d 7 -p ack -e 40 -c 0 -i 7366 -a 0 -x {10.0 9.0 3678 ------- null} + -t 4.16821 -s 7 -d 0 -p ack -e 40 -c 0 -i 7366 -a 0 -x {10.0 9.0 3678 ------- null} h -t 4.16821 -s 7 -d 8 -p ack -e 40 -c 0 -i 7366 -a 0 -x {10.0 9.0 3678 ------- null} r -t 4.16834 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7365 -a 0 -x {9.0 10.0 3687 ------- null} + -t 4.16834 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7365 -a 0 -x {9.0 10.0 3687 ------- null} h -t 4.16834 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7365 -a 0 -x {9.0 10.0 3687 ------- null} r -t 4.16835 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7351 -a 0 -x {9.0 10.0 3680 ------- null} + -t 4.16835 -s 10 -d 7 -p ack -e 40 -c 0 -i 7370 -a 0 -x {10.0 9.0 3680 ------- null} - -t 4.16835 -s 10 -d 7 -p ack -e 40 -c 0 -i 7370 -a 0 -x {10.0 9.0 3680 ------- null} h -t 4.16835 -s 10 -d 7 -p ack -e 40 -c 0 -i 7370 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.16886 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7357 -a 0 -x {9.0 10.0 3683 ------- null} - -t 4.16886 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7357 -a 0 -x {9.0 10.0 3683 ------- null} h -t 4.16886 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7357 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.16888 -s 0 -d 9 -p ack -e 40 -c 0 -i 7360 -a 0 -x {10.0 9.0 3675 ------- null} + -t 4.16888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7371 -a 0 -x {9.0 10.0 3690 ------- null} - -t 4.16888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7371 -a 0 -x {9.0 10.0 3690 ------- null} h -t 4.16888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7371 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.16914 -s 0 -d 9 -p ack -e 40 -c 0 -i 7364 -a 0 -x {10.0 9.0 3677 ------- null} - -t 4.16914 -s 0 -d 9 -p ack -e 40 -c 0 -i 7364 -a 0 -x {10.0 9.0 3677 ------- null} h -t 4.16914 -s 0 -d 9 -p ack -e 40 -c 0 -i 7364 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.1693 -s 10 -d 7 -p ack -e 40 -c 0 -i 7368 -a 0 -x {10.0 9.0 3679 ------- null} + -t 4.1693 -s 7 -d 0 -p ack -e 40 -c 0 -i 7368 -a 0 -x {10.0 9.0 3679 ------- null} h -t 4.1693 -s 7 -d 8 -p ack -e 40 -c 0 -i 7368 -a 0 -x {10.0 9.0 3679 ------- null} r -t 4.16936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7367 -a 0 -x {9.0 10.0 3688 ------- null} + -t 4.16936 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7367 -a 0 -x {9.0 10.0 3688 ------- null} h -t 4.16936 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7367 -a 0 -x {9.0 10.0 3688 ------- null} r -t 4.16944 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7353 -a 0 -x {9.0 10.0 3681 ------- null} + -t 4.16944 -s 10 -d 7 -p ack -e 40 -c 0 -i 7372 -a 0 -x {10.0 9.0 3681 ------- null} - -t 4.16944 -s 10 -d 7 -p ack -e 40 -c 0 -i 7372 -a 0 -x {10.0 9.0 3681 ------- null} h -t 4.16944 -s 10 -d 7 -p ack -e 40 -c 0 -i 7372 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.17003 -s 0 -d 9 -p ack -e 40 -c 0 -i 7362 -a 0 -x {10.0 9.0 3676 ------- null} + -t 4.17003 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7373 -a 0 -x {9.0 10.0 3691 ------- null} - -t 4.17003 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7373 -a 0 -x {9.0 10.0 3691 ------- null} h -t 4.17003 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7373 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.17011 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7359 -a 0 -x {9.0 10.0 3684 ------- null} - -t 4.17011 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7359 -a 0 -x {9.0 10.0 3684 ------- null} h -t 4.17011 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7359 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.17038 -s 0 -d 9 -p ack -e 40 -c 0 -i 7366 -a 0 -x {10.0 9.0 3678 ------- null} - -t 4.17038 -s 0 -d 9 -p ack -e 40 -c 0 -i 7366 -a 0 -x {10.0 9.0 3678 ------- null} h -t 4.17038 -s 0 -d 9 -p ack -e 40 -c 0 -i 7366 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.17038 -s 10 -d 7 -p ack -e 40 -c 0 -i 7370 -a 0 -x {10.0 9.0 3680 ------- null} + -t 4.17038 -s 7 -d 0 -p ack -e 40 -c 0 -i 7370 -a 0 -x {10.0 9.0 3680 ------- null} h -t 4.17038 -s 7 -d 8 -p ack -e 40 -c 0 -i 7370 -a 0 -x {10.0 9.0 3680 ------- null} r -t 4.17053 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7355 -a 0 -x {9.0 10.0 3682 ------- null} + -t 4.17053 -s 10 -d 7 -p ack -e 40 -c 0 -i 7374 -a 0 -x {10.0 9.0 3682 ------- null} - -t 4.17053 -s 10 -d 7 -p ack -e 40 -c 0 -i 7374 -a 0 -x {10.0 9.0 3682 ------- null} h -t 4.17053 -s 10 -d 7 -p ack -e 40 -c 0 -i 7374 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.17056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7369 -a 0 -x {9.0 10.0 3689 ------- null} + -t 4.17056 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7369 -a 0 -x {9.0 10.0 3689 ------- null} h -t 4.17056 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7369 -a 0 -x {9.0 10.0 3689 ------- null} r -t 4.17117 -s 0 -d 9 -p ack -e 40 -c 0 -i 7364 -a 0 -x {10.0 9.0 3677 ------- null} + -t 4.17117 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7375 -a 0 -x {9.0 10.0 3692 ------- null} - -t 4.17117 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7375 -a 0 -x {9.0 10.0 3692 ------- null} h -t 4.17117 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7375 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.17136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7361 -a 0 -x {9.0 10.0 3685 ------- null} - -t 4.17136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7361 -a 0 -x {9.0 10.0 3685 ------- null} h -t 4.17136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7361 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.17144 -s 0 -d 9 -p ack -e 40 -c 0 -i 7368 -a 0 -x {10.0 9.0 3679 ------- null} - -t 4.17144 -s 0 -d 9 -p ack -e 40 -c 0 -i 7368 -a 0 -x {10.0 9.0 3679 ------- null} h -t 4.17144 -s 0 -d 9 -p ack -e 40 -c 0 -i 7368 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.17147 -s 10 -d 7 -p ack -e 40 -c 0 -i 7372 -a 0 -x {10.0 9.0 3681 ------- null} + -t 4.17147 -s 7 -d 0 -p ack -e 40 -c 0 -i 7372 -a 0 -x {10.0 9.0 3681 ------- null} h -t 4.17147 -s 7 -d 8 -p ack -e 40 -c 0 -i 7372 -a 0 -x {10.0 9.0 3681 ------- null} r -t 4.17166 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7357 -a 0 -x {9.0 10.0 3683 ------- null} + -t 4.17166 -s 10 -d 7 -p ack -e 40 -c 0 -i 7376 -a 0 -x {10.0 9.0 3683 ------- null} - -t 4.17166 -s 10 -d 7 -p ack -e 40 -c 0 -i 7376 -a 0 -x {10.0 9.0 3683 ------- null} h -t 4.17166 -s 10 -d 7 -p ack -e 40 -c 0 -i 7376 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.17168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7371 -a 0 -x {9.0 10.0 3690 ------- null} + -t 4.17168 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7371 -a 0 -x {9.0 10.0 3690 ------- null} h -t 4.17168 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7371 -a 0 -x {9.0 10.0 3690 ------- null} r -t 4.17242 -s 0 -d 9 -p ack -e 40 -c 0 -i 7366 -a 0 -x {10.0 9.0 3678 ------- null} + -t 4.17242 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7377 -a 0 -x {9.0 10.0 3693 ------- null} - -t 4.17242 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7377 -a 0 -x {9.0 10.0 3693 ------- null} h -t 4.17242 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7377 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.17245 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7363 -a 0 -x {9.0 10.0 3686 ------- null} - -t 4.17245 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7363 -a 0 -x {9.0 10.0 3686 ------- null} h -t 4.17245 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7363 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.17256 -s 10 -d 7 -p ack -e 40 -c 0 -i 7374 -a 0 -x {10.0 9.0 3682 ------- null} + -t 4.17256 -s 7 -d 0 -p ack -e 40 -c 0 -i 7374 -a 0 -x {10.0 9.0 3682 ------- null} h -t 4.17256 -s 7 -d 8 -p ack -e 40 -c 0 -i 7374 -a 0 -x {10.0 9.0 3682 ------- null} + -t 4.17275 -s 0 -d 9 -p ack -e 40 -c 0 -i 7370 -a 0 -x {10.0 9.0 3680 ------- null} - -t 4.17275 -s 0 -d 9 -p ack -e 40 -c 0 -i 7370 -a 0 -x {10.0 9.0 3680 ------- null} h -t 4.17275 -s 0 -d 9 -p ack -e 40 -c 0 -i 7370 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.17283 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7373 -a 0 -x {9.0 10.0 3691 ------- null} + -t 4.17283 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7373 -a 0 -x {9.0 10.0 3691 ------- null} h -t 4.17283 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7373 -a 0 -x {9.0 10.0 3691 ------- null} r -t 4.17291 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7359 -a 0 -x {9.0 10.0 3684 ------- null} + -t 4.17291 -s 10 -d 7 -p ack -e 40 -c 0 -i 7378 -a 0 -x {10.0 9.0 3684 ------- null} - -t 4.17291 -s 10 -d 7 -p ack -e 40 -c 0 -i 7378 -a 0 -x {10.0 9.0 3684 ------- null} h -t 4.17291 -s 10 -d 7 -p ack -e 40 -c 0 -i 7378 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.17347 -s 0 -d 9 -p ack -e 40 -c 0 -i 7368 -a 0 -x {10.0 9.0 3679 ------- null} + -t 4.17347 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7379 -a 0 -x {9.0 10.0 3694 ------- null} - -t 4.17347 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7379 -a 0 -x {9.0 10.0 3694 ------- null} h -t 4.17347 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7379 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.1737 -s 10 -d 7 -p ack -e 40 -c 0 -i 7376 -a 0 -x {10.0 9.0 3683 ------- null} + -t 4.1737 -s 7 -d 0 -p ack -e 40 -c 0 -i 7376 -a 0 -x {10.0 9.0 3683 ------- null} h -t 4.1737 -s 7 -d 8 -p ack -e 40 -c 0 -i 7376 -a 0 -x {10.0 9.0 3683 ------- null} + -t 4.17371 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7365 -a 0 -x {9.0 10.0 3687 ------- null} - -t 4.17371 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7365 -a 0 -x {9.0 10.0 3687 ------- null} h -t 4.17371 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7365 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.17392 -s 0 -d 9 -p ack -e 40 -c 0 -i 7372 -a 0 -x {10.0 9.0 3681 ------- null} - -t 4.17392 -s 0 -d 9 -p ack -e 40 -c 0 -i 7372 -a 0 -x {10.0 9.0 3681 ------- null} h -t 4.17392 -s 0 -d 9 -p ack -e 40 -c 0 -i 7372 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.17397 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7375 -a 0 -x {9.0 10.0 3692 ------- null} + -t 4.17397 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7375 -a 0 -x {9.0 10.0 3692 ------- null} h -t 4.17397 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7375 -a 0 -x {9.0 10.0 3692 ------- null} r -t 4.17416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7361 -a 0 -x {9.0 10.0 3685 ------- null} + -t 4.17416 -s 10 -d 7 -p ack -e 40 -c 0 -i 7380 -a 0 -x {10.0 9.0 3685 ------- null} - -t 4.17416 -s 10 -d 7 -p ack -e 40 -c 0 -i 7380 -a 0 -x {10.0 9.0 3685 ------- null} h -t 4.17416 -s 10 -d 7 -p ack -e 40 -c 0 -i 7380 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.17478 -s 0 -d 9 -p ack -e 40 -c 0 -i 7370 -a 0 -x {10.0 9.0 3680 ------- null} + -t 4.17478 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7381 -a 0 -x {9.0 10.0 3695 ------- null} - -t 4.17478 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7381 -a 0 -x {9.0 10.0 3695 ------- null} h -t 4.17478 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7381 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.1748 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7367 -a 0 -x {9.0 10.0 3688 ------- null} - -t 4.1748 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7367 -a 0 -x {9.0 10.0 3688 ------- null} h -t 4.1748 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7367 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.17494 -s 10 -d 7 -p ack -e 40 -c 0 -i 7378 -a 0 -x {10.0 9.0 3684 ------- null} + -t 4.17494 -s 7 -d 0 -p ack -e 40 -c 0 -i 7378 -a 0 -x {10.0 9.0 3684 ------- null} h -t 4.17494 -s 7 -d 8 -p ack -e 40 -c 0 -i 7378 -a 0 -x {10.0 9.0 3684 ------- null} + -t 4.17498 -s 0 -d 9 -p ack -e 40 -c 0 -i 7374 -a 0 -x {10.0 9.0 3682 ------- null} - -t 4.17498 -s 0 -d 9 -p ack -e 40 -c 0 -i 7374 -a 0 -x {10.0 9.0 3682 ------- null} h -t 4.17498 -s 0 -d 9 -p ack -e 40 -c 0 -i 7374 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.17522 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7377 -a 0 -x {9.0 10.0 3693 ------- null} + -t 4.17522 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7377 -a 0 -x {9.0 10.0 3693 ------- null} h -t 4.17522 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7377 -a 0 -x {9.0 10.0 3693 ------- null} r -t 4.17525 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7363 -a 0 -x {9.0 10.0 3686 ------- null} + -t 4.17525 -s 10 -d 7 -p ack -e 40 -c 0 -i 7382 -a 0 -x {10.0 9.0 3686 ------- null} - -t 4.17525 -s 10 -d 7 -p ack -e 40 -c 0 -i 7382 -a 0 -x {10.0 9.0 3686 ------- null} h -t 4.17525 -s 10 -d 7 -p ack -e 40 -c 0 -i 7382 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.17589 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7369 -a 0 -x {9.0 10.0 3689 ------- null} - -t 4.17589 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7369 -a 0 -x {9.0 10.0 3689 ------- null} h -t 4.17589 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7369 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.17595 -s 0 -d 9 -p ack -e 40 -c 0 -i 7372 -a 0 -x {10.0 9.0 3681 ------- null} + -t 4.17595 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7383 -a 0 -x {9.0 10.0 3696 ------- null} - -t 4.17595 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7383 -a 0 -x {9.0 10.0 3696 ------- null} h -t 4.17595 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7383 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.17606 -s 0 -d 9 -p ack -e 40 -c 0 -i 7376 -a 0 -x {10.0 9.0 3683 ------- null} - -t 4.17606 -s 0 -d 9 -p ack -e 40 -c 0 -i 7376 -a 0 -x {10.0 9.0 3683 ------- null} h -t 4.17606 -s 0 -d 9 -p ack -e 40 -c 0 -i 7376 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.17619 -s 10 -d 7 -p ack -e 40 -c 0 -i 7380 -a 0 -x {10.0 9.0 3685 ------- null} + -t 4.17619 -s 7 -d 0 -p ack -e 40 -c 0 -i 7380 -a 0 -x {10.0 9.0 3685 ------- null} h -t 4.17619 -s 7 -d 8 -p ack -e 40 -c 0 -i 7380 -a 0 -x {10.0 9.0 3685 ------- null} r -t 4.17627 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7379 -a 0 -x {9.0 10.0 3694 ------- null} + -t 4.17627 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7379 -a 0 -x {9.0 10.0 3694 ------- null} h -t 4.17627 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7379 -a 0 -x {9.0 10.0 3694 ------- null} r -t 4.17651 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7365 -a 0 -x {9.0 10.0 3687 ------- null} + -t 4.17651 -s 10 -d 7 -p ack -e 40 -c 0 -i 7384 -a 0 -x {10.0 9.0 3687 ------- null} - -t 4.17651 -s 10 -d 7 -p ack -e 40 -c 0 -i 7384 -a 0 -x {10.0 9.0 3687 ------- null} h -t 4.17651 -s 10 -d 7 -p ack -e 40 -c 0 -i 7384 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.17698 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7371 -a 0 -x {9.0 10.0 3690 ------- null} - -t 4.17698 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7371 -a 0 -x {9.0 10.0 3690 ------- null} h -t 4.17698 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7371 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.17701 -s 0 -d 9 -p ack -e 40 -c 0 -i 7374 -a 0 -x {10.0 9.0 3682 ------- null} + -t 4.17701 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7385 -a 0 -x {9.0 10.0 3697 ------- null} - -t 4.17701 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7385 -a 0 -x {9.0 10.0 3697 ------- null} h -t 4.17701 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7385 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.17717 -s 0 -d 9 -p ack -e 40 -c 0 -i 7378 -a 0 -x {10.0 9.0 3684 ------- null} - -t 4.17717 -s 0 -d 9 -p ack -e 40 -c 0 -i 7378 -a 0 -x {10.0 9.0 3684 ------- null} h -t 4.17717 -s 0 -d 9 -p ack -e 40 -c 0 -i 7378 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.17728 -s 10 -d 7 -p ack -e 40 -c 0 -i 7382 -a 0 -x {10.0 9.0 3686 ------- null} + -t 4.17728 -s 7 -d 0 -p ack -e 40 -c 0 -i 7382 -a 0 -x {10.0 9.0 3686 ------- null} h -t 4.17728 -s 7 -d 8 -p ack -e 40 -c 0 -i 7382 -a 0 -x {10.0 9.0 3686 ------- null} r -t 4.17758 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7381 -a 0 -x {9.0 10.0 3695 ------- null} + -t 4.17758 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7381 -a 0 -x {9.0 10.0 3695 ------- null} h -t 4.17758 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7381 -a 0 -x {9.0 10.0 3695 ------- null} r -t 4.1776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7367 -a 0 -x {9.0 10.0 3688 ------- null} + -t 4.1776 -s 10 -d 7 -p ack -e 40 -c 0 -i 7386 -a 0 -x {10.0 9.0 3688 ------- null} - -t 4.1776 -s 10 -d 7 -p ack -e 40 -c 0 -i 7386 -a 0 -x {10.0 9.0 3688 ------- null} h -t 4.1776 -s 10 -d 7 -p ack -e 40 -c 0 -i 7386 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.17806 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7373 -a 0 -x {9.0 10.0 3691 ------- null} - -t 4.17806 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7373 -a 0 -x {9.0 10.0 3691 ------- null} h -t 4.17806 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7373 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.1781 -s 0 -d 9 -p ack -e 40 -c 0 -i 7376 -a 0 -x {10.0 9.0 3683 ------- null} + -t 4.1781 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7387 -a 0 -x {9.0 10.0 3698 ------- null} - -t 4.1781 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7387 -a 0 -x {9.0 10.0 3698 ------- null} h -t 4.1781 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7387 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.17826 -s 0 -d 9 -p ack -e 40 -c 0 -i 7380 -a 0 -x {10.0 9.0 3685 ------- null} - -t 4.17826 -s 0 -d 9 -p ack -e 40 -c 0 -i 7380 -a 0 -x {10.0 9.0 3685 ------- null} h -t 4.17826 -s 0 -d 9 -p ack -e 40 -c 0 -i 7380 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.17854 -s 10 -d 7 -p ack -e 40 -c 0 -i 7384 -a 0 -x {10.0 9.0 3687 ------- null} + -t 4.17854 -s 7 -d 0 -p ack -e 40 -c 0 -i 7384 -a 0 -x {10.0 9.0 3687 ------- null} h -t 4.17854 -s 7 -d 8 -p ack -e 40 -c 0 -i 7384 -a 0 -x {10.0 9.0 3687 ------- null} r -t 4.17869 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7369 -a 0 -x {9.0 10.0 3689 ------- null} + -t 4.17869 -s 10 -d 7 -p ack -e 40 -c 0 -i 7388 -a 0 -x {10.0 9.0 3689 ------- null} - -t 4.17869 -s 10 -d 7 -p ack -e 40 -c 0 -i 7388 -a 0 -x {10.0 9.0 3689 ------- null} h -t 4.17869 -s 10 -d 7 -p ack -e 40 -c 0 -i 7388 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.17875 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7383 -a 0 -x {9.0 10.0 3696 ------- null} + -t 4.17875 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7383 -a 0 -x {9.0 10.0 3696 ------- null} h -t 4.17875 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7383 -a 0 -x {9.0 10.0 3696 ------- null} + -t 4.17915 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7375 -a 0 -x {9.0 10.0 3692 ------- null} - -t 4.17915 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7375 -a 0 -x {9.0 10.0 3692 ------- null} h -t 4.17915 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7375 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.1792 -s 0 -d 9 -p ack -e 40 -c 0 -i 7378 -a 0 -x {10.0 9.0 3684 ------- null} + -t 4.1792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7389 -a 0 -x {9.0 10.0 3699 ------- null} - -t 4.1792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7389 -a 0 -x {9.0 10.0 3699 ------- null} h -t 4.1792 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7389 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.17938 -s 0 -d 9 -p ack -e 40 -c 0 -i 7382 -a 0 -x {10.0 9.0 3686 ------- null} - -t 4.17938 -s 0 -d 9 -p ack -e 40 -c 0 -i 7382 -a 0 -x {10.0 9.0 3686 ------- null} h -t 4.17938 -s 0 -d 9 -p ack -e 40 -c 0 -i 7382 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.17963 -s 10 -d 7 -p ack -e 40 -c 0 -i 7386 -a 0 -x {10.0 9.0 3688 ------- null} + -t 4.17963 -s 7 -d 0 -p ack -e 40 -c 0 -i 7386 -a 0 -x {10.0 9.0 3688 ------- null} h -t 4.17963 -s 7 -d 8 -p ack -e 40 -c 0 -i 7386 -a 0 -x {10.0 9.0 3688 ------- null} r -t 4.17978 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7371 -a 0 -x {9.0 10.0 3690 ------- null} + -t 4.17978 -s 10 -d 7 -p ack -e 40 -c 0 -i 7390 -a 0 -x {10.0 9.0 3690 ------- null} - -t 4.17978 -s 10 -d 7 -p ack -e 40 -c 0 -i 7390 -a 0 -x {10.0 9.0 3690 ------- null} h -t 4.17978 -s 10 -d 7 -p ack -e 40 -c 0 -i 7390 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.17981 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7385 -a 0 -x {9.0 10.0 3697 ------- null} + -t 4.17981 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7385 -a 0 -x {9.0 10.0 3697 ------- null} h -t 4.17981 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7385 -a 0 -x {9.0 10.0 3697 ------- null} + -t 4.18024 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7377 -a 0 -x {9.0 10.0 3693 ------- null} - -t 4.18024 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7377 -a 0 -x {9.0 10.0 3693 ------- null} h -t 4.18024 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7377 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.18029 -s 0 -d 9 -p ack -e 40 -c 0 -i 7380 -a 0 -x {10.0 9.0 3685 ------- null} + -t 4.18029 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7391 -a 0 -x {9.0 10.0 3700 ------- null} - -t 4.18029 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7391 -a 0 -x {9.0 10.0 3700 ------- null} h -t 4.18029 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7391 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.18035 -s 0 -d 9 -p ack -e 40 -c 0 -i 7384 -a 0 -x {10.0 9.0 3687 ------- null} - -t 4.18035 -s 0 -d 9 -p ack -e 40 -c 0 -i 7384 -a 0 -x {10.0 9.0 3687 ------- null} h -t 4.18035 -s 0 -d 9 -p ack -e 40 -c 0 -i 7384 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.18072 -s 10 -d 7 -p ack -e 40 -c 0 -i 7388 -a 0 -x {10.0 9.0 3689 ------- null} + -t 4.18072 -s 7 -d 0 -p ack -e 40 -c 0 -i 7388 -a 0 -x {10.0 9.0 3689 ------- null} h -t 4.18072 -s 7 -d 8 -p ack -e 40 -c 0 -i 7388 -a 0 -x {10.0 9.0 3689 ------- null} r -t 4.18086 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7373 -a 0 -x {9.0 10.0 3691 ------- null} + -t 4.18086 -s 10 -d 7 -p ack -e 40 -c 0 -i 7392 -a 0 -x {10.0 9.0 3691 ------- null} - -t 4.18086 -s 10 -d 7 -p ack -e 40 -c 0 -i 7392 -a 0 -x {10.0 9.0 3691 ------- null} h -t 4.18086 -s 10 -d 7 -p ack -e 40 -c 0 -i 7392 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.1809 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7387 -a 0 -x {9.0 10.0 3698 ------- null} + -t 4.1809 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7387 -a 0 -x {9.0 10.0 3698 ------- null} h -t 4.1809 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7387 -a 0 -x {9.0 10.0 3698 ------- null} + -t 4.18133 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7379 -a 0 -x {9.0 10.0 3694 ------- null} - -t 4.18133 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7379 -a 0 -x {9.0 10.0 3694 ------- null} h -t 4.18133 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7379 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.18141 -s 0 -d 9 -p ack -e 40 -c 0 -i 7382 -a 0 -x {10.0 9.0 3686 ------- null} + -t 4.18141 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7393 -a 0 -x {9.0 10.0 3701 ------- null} - -t 4.18141 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7393 -a 0 -x {9.0 10.0 3701 ------- null} h -t 4.18141 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7393 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.18146 -s 0 -d 9 -p ack -e 40 -c 0 -i 7386 -a 0 -x {10.0 9.0 3688 ------- null} - -t 4.18146 -s 0 -d 9 -p ack -e 40 -c 0 -i 7386 -a 0 -x {10.0 9.0 3688 ------- null} h -t 4.18146 -s 0 -d 9 -p ack -e 40 -c 0 -i 7386 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.18181 -s 10 -d 7 -p ack -e 40 -c 0 -i 7390 -a 0 -x {10.0 9.0 3690 ------- null} + -t 4.18181 -s 7 -d 0 -p ack -e 40 -c 0 -i 7390 -a 0 -x {10.0 9.0 3690 ------- null} h -t 4.18181 -s 7 -d 8 -p ack -e 40 -c 0 -i 7390 -a 0 -x {10.0 9.0 3690 ------- null} r -t 4.18195 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7375 -a 0 -x {9.0 10.0 3692 ------- null} + -t 4.18195 -s 10 -d 7 -p ack -e 40 -c 0 -i 7394 -a 0 -x {10.0 9.0 3692 ------- null} - -t 4.18195 -s 10 -d 7 -p ack -e 40 -c 0 -i 7394 -a 0 -x {10.0 9.0 3692 ------- null} h -t 4.18195 -s 10 -d 7 -p ack -e 40 -c 0 -i 7394 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.182 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7389 -a 0 -x {9.0 10.0 3699 ------- null} + -t 4.182 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7389 -a 0 -x {9.0 10.0 3699 ------- null} h -t 4.182 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7389 -a 0 -x {9.0 10.0 3699 ------- null} r -t 4.18238 -s 0 -d 9 -p ack -e 40 -c 0 -i 7384 -a 0 -x {10.0 9.0 3687 ------- null} + -t 4.18238 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7395 -a 0 -x {9.0 10.0 3702 ------- null} - -t 4.18238 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7395 -a 0 -x {9.0 10.0 3702 ------- null} h -t 4.18238 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7395 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.18242 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7381 -a 0 -x {9.0 10.0 3695 ------- null} - -t 4.18242 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7381 -a 0 -x {9.0 10.0 3695 ------- null} h -t 4.18242 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7381 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.18251 -s 0 -d 9 -p ack -e 40 -c 0 -i 7388 -a 0 -x {10.0 9.0 3689 ------- null} - -t 4.18251 -s 0 -d 9 -p ack -e 40 -c 0 -i 7388 -a 0 -x {10.0 9.0 3689 ------- null} h -t 4.18251 -s 0 -d 9 -p ack -e 40 -c 0 -i 7388 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.1829 -s 10 -d 7 -p ack -e 40 -c 0 -i 7392 -a 0 -x {10.0 9.0 3691 ------- null} + -t 4.1829 -s 7 -d 0 -p ack -e 40 -c 0 -i 7392 -a 0 -x {10.0 9.0 3691 ------- null} h -t 4.1829 -s 7 -d 8 -p ack -e 40 -c 0 -i 7392 -a 0 -x {10.0 9.0 3691 ------- null} r -t 4.18304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7377 -a 0 -x {9.0 10.0 3693 ------- null} + -t 4.18304 -s 10 -d 7 -p ack -e 40 -c 0 -i 7396 -a 0 -x {10.0 9.0 3693 ------- null} - -t 4.18304 -s 10 -d 7 -p ack -e 40 -c 0 -i 7396 -a 0 -x {10.0 9.0 3693 ------- null} h -t 4.18304 -s 10 -d 7 -p ack -e 40 -c 0 -i 7396 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.18309 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7391 -a 0 -x {9.0 10.0 3700 ------- null} + -t 4.18309 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7391 -a 0 -x {9.0 10.0 3700 ------- null} h -t 4.18309 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7391 -a 0 -x {9.0 10.0 3700 ------- null} r -t 4.18349 -s 0 -d 9 -p ack -e 40 -c 0 -i 7386 -a 0 -x {10.0 9.0 3688 ------- null} + -t 4.18349 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7397 -a 0 -x {9.0 10.0 3703 ------- null} - -t 4.18349 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7397 -a 0 -x {9.0 10.0 3703 ------- null} h -t 4.18349 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7397 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.1835 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7383 -a 0 -x {9.0 10.0 3696 ------- null} - -t 4.1835 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7383 -a 0 -x {9.0 10.0 3696 ------- null} h -t 4.1835 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7383 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.1837 -s 0 -d 9 -p ack -e 40 -c 0 -i 7390 -a 0 -x {10.0 9.0 3690 ------- null} - -t 4.1837 -s 0 -d 9 -p ack -e 40 -c 0 -i 7390 -a 0 -x {10.0 9.0 3690 ------- null} h -t 4.1837 -s 0 -d 9 -p ack -e 40 -c 0 -i 7390 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.18398 -s 10 -d 7 -p ack -e 40 -c 0 -i 7394 -a 0 -x {10.0 9.0 3692 ------- null} + -t 4.18398 -s 7 -d 0 -p ack -e 40 -c 0 -i 7394 -a 0 -x {10.0 9.0 3692 ------- null} h -t 4.18398 -s 7 -d 8 -p ack -e 40 -c 0 -i 7394 -a 0 -x {10.0 9.0 3692 ------- null} r -t 4.18413 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7379 -a 0 -x {9.0 10.0 3694 ------- null} + -t 4.18413 -s 10 -d 7 -p ack -e 40 -c 0 -i 7398 -a 0 -x {10.0 9.0 3694 ------- null} - -t 4.18413 -s 10 -d 7 -p ack -e 40 -c 0 -i 7398 -a 0 -x {10.0 9.0 3694 ------- null} h -t 4.18413 -s 10 -d 7 -p ack -e 40 -c 0 -i 7398 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.18421 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7393 -a 0 -x {9.0 10.0 3701 ------- null} + -t 4.18421 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7393 -a 0 -x {9.0 10.0 3701 ------- null} h -t 4.18421 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7393 -a 0 -x {9.0 10.0 3701 ------- null} r -t 4.18454 -s 0 -d 9 -p ack -e 40 -c 0 -i 7388 -a 0 -x {10.0 9.0 3689 ------- null} + -t 4.18454 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7399 -a 0 -x {9.0 10.0 3704 ------- null} - -t 4.18454 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7399 -a 0 -x {9.0 10.0 3704 ------- null} h -t 4.18454 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7399 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.18459 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7385 -a 0 -x {9.0 10.0 3697 ------- null} - -t 4.18459 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7385 -a 0 -x {9.0 10.0 3697 ------- null} h -t 4.18459 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7385 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.18477 -s 0 -d 9 -p ack -e 40 -c 0 -i 7392 -a 0 -x {10.0 9.0 3691 ------- null} - -t 4.18477 -s 0 -d 9 -p ack -e 40 -c 0 -i 7392 -a 0 -x {10.0 9.0 3691 ------- null} h -t 4.18477 -s 0 -d 9 -p ack -e 40 -c 0 -i 7392 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.18507 -s 10 -d 7 -p ack -e 40 -c 0 -i 7396 -a 0 -x {10.0 9.0 3693 ------- null} + -t 4.18507 -s 7 -d 0 -p ack -e 40 -c 0 -i 7396 -a 0 -x {10.0 9.0 3693 ------- null} h -t 4.18507 -s 7 -d 8 -p ack -e 40 -c 0 -i 7396 -a 0 -x {10.0 9.0 3693 ------- null} r -t 4.18518 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7395 -a 0 -x {9.0 10.0 3702 ------- null} + -t 4.18518 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7395 -a 0 -x {9.0 10.0 3702 ------- null} h -t 4.18518 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7395 -a 0 -x {9.0 10.0 3702 ------- null} r -t 4.18522 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7381 -a 0 -x {9.0 10.0 3695 ------- null} + -t 4.18522 -s 10 -d 7 -p ack -e 40 -c 0 -i 7400 -a 0 -x {10.0 9.0 3695 ------- null} - -t 4.18522 -s 10 -d 7 -p ack -e 40 -c 0 -i 7400 -a 0 -x {10.0 9.0 3695 ------- null} h -t 4.18522 -s 10 -d 7 -p ack -e 40 -c 0 -i 7400 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.18568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7387 -a 0 -x {9.0 10.0 3698 ------- null} - -t 4.18568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7387 -a 0 -x {9.0 10.0 3698 ------- null} h -t 4.18568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7387 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.18573 -s 0 -d 9 -p ack -e 40 -c 0 -i 7390 -a 0 -x {10.0 9.0 3690 ------- null} + -t 4.18573 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7401 -a 0 -x {9.0 10.0 3705 ------- null} - -t 4.18573 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7401 -a 0 -x {9.0 10.0 3705 ------- null} h -t 4.18573 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7401 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.18592 -s 0 -d 9 -p ack -e 40 -c 0 -i 7394 -a 0 -x {10.0 9.0 3692 ------- null} - -t 4.18592 -s 0 -d 9 -p ack -e 40 -c 0 -i 7394 -a 0 -x {10.0 9.0 3692 ------- null} h -t 4.18592 -s 0 -d 9 -p ack -e 40 -c 0 -i 7394 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.18616 -s 10 -d 7 -p ack -e 40 -c 0 -i 7398 -a 0 -x {10.0 9.0 3694 ------- null} + -t 4.18616 -s 7 -d 0 -p ack -e 40 -c 0 -i 7398 -a 0 -x {10.0 9.0 3694 ------- null} h -t 4.18616 -s 7 -d 8 -p ack -e 40 -c 0 -i 7398 -a 0 -x {10.0 9.0 3694 ------- null} r -t 4.18629 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7397 -a 0 -x {9.0 10.0 3703 ------- null} + -t 4.18629 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7397 -a 0 -x {9.0 10.0 3703 ------- null} h -t 4.18629 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7397 -a 0 -x {9.0 10.0 3703 ------- null} r -t 4.1863 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7383 -a 0 -x {9.0 10.0 3696 ------- null} + -t 4.1863 -s 10 -d 7 -p ack -e 40 -c 0 -i 7402 -a 0 -x {10.0 9.0 3696 ------- null} - -t 4.1863 -s 10 -d 7 -p ack -e 40 -c 0 -i 7402 -a 0 -x {10.0 9.0 3696 ------- null} h -t 4.1863 -s 10 -d 7 -p ack -e 40 -c 0 -i 7402 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.18677 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7389 -a 0 -x {9.0 10.0 3699 ------- null} - -t 4.18677 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7389 -a 0 -x {9.0 10.0 3699 ------- null} h -t 4.18677 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7389 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.1868 -s 0 -d 9 -p ack -e 40 -c 0 -i 7392 -a 0 -x {10.0 9.0 3691 ------- null} + -t 4.1868 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7403 -a 0 -x {9.0 10.0 3706 ------- null} - -t 4.1868 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7403 -a 0 -x {9.0 10.0 3706 ------- null} h -t 4.1868 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7403 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.18698 -s 0 -d 9 -p ack -e 40 -c 0 -i 7396 -a 0 -x {10.0 9.0 3693 ------- null} - -t 4.18698 -s 0 -d 9 -p ack -e 40 -c 0 -i 7396 -a 0 -x {10.0 9.0 3693 ------- null} h -t 4.18698 -s 0 -d 9 -p ack -e 40 -c 0 -i 7396 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.18725 -s 10 -d 7 -p ack -e 40 -c 0 -i 7400 -a 0 -x {10.0 9.0 3695 ------- null} + -t 4.18725 -s 7 -d 0 -p ack -e 40 -c 0 -i 7400 -a 0 -x {10.0 9.0 3695 ------- null} h -t 4.18725 -s 7 -d 8 -p ack -e 40 -c 0 -i 7400 -a 0 -x {10.0 9.0 3695 ------- null} r -t 4.18734 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7399 -a 0 -x {9.0 10.0 3704 ------- null} + -t 4.18734 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7399 -a 0 -x {9.0 10.0 3704 ------- null} h -t 4.18734 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7399 -a 0 -x {9.0 10.0 3704 ------- null} r -t 4.18739 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7385 -a 0 -x {9.0 10.0 3697 ------- null} + -t 4.18739 -s 10 -d 7 -p ack -e 40 -c 0 -i 7404 -a 0 -x {10.0 9.0 3697 ------- null} - -t 4.18739 -s 10 -d 7 -p ack -e 40 -c 0 -i 7404 -a 0 -x {10.0 9.0 3697 ------- null} h -t 4.18739 -s 10 -d 7 -p ack -e 40 -c 0 -i 7404 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.18786 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7391 -a 0 -x {9.0 10.0 3700 ------- null} - -t 4.18786 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7391 -a 0 -x {9.0 10.0 3700 ------- null} h -t 4.18786 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7391 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.18794 -s 0 -d 9 -p ack -e 40 -c 0 -i 7398 -a 0 -x {10.0 9.0 3694 ------- null} - -t 4.18794 -s 0 -d 9 -p ack -e 40 -c 0 -i 7398 -a 0 -x {10.0 9.0 3694 ------- null} h -t 4.18794 -s 0 -d 9 -p ack -e 40 -c 0 -i 7398 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.18795 -s 0 -d 9 -p ack -e 40 -c 0 -i 7394 -a 0 -x {10.0 9.0 3692 ------- null} + -t 4.18795 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7405 -a 0 -x {9.0 10.0 3707 ------- null} - -t 4.18795 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7405 -a 0 -x {9.0 10.0 3707 ------- null} h -t 4.18795 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7405 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.18834 -s 10 -d 7 -p ack -e 40 -c 0 -i 7402 -a 0 -x {10.0 9.0 3696 ------- null} + -t 4.18834 -s 7 -d 0 -p ack -e 40 -c 0 -i 7402 -a 0 -x {10.0 9.0 3696 ------- null} h -t 4.18834 -s 7 -d 8 -p ack -e 40 -c 0 -i 7402 -a 0 -x {10.0 9.0 3696 ------- null} r -t 4.18848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7387 -a 0 -x {9.0 10.0 3698 ------- null} + -t 4.18848 -s 10 -d 7 -p ack -e 40 -c 0 -i 7406 -a 0 -x {10.0 9.0 3698 ------- null} - -t 4.18848 -s 10 -d 7 -p ack -e 40 -c 0 -i 7406 -a 0 -x {10.0 9.0 3698 ------- null} h -t 4.18848 -s 10 -d 7 -p ack -e 40 -c 0 -i 7406 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.18853 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7401 -a 0 -x {9.0 10.0 3705 ------- null} + -t 4.18853 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7401 -a 0 -x {9.0 10.0 3705 ------- null} h -t 4.18853 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7401 -a 0 -x {9.0 10.0 3705 ------- null} + -t 4.18894 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7393 -a 0 -x {9.0 10.0 3701 ------- null} - -t 4.18894 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7393 -a 0 -x {9.0 10.0 3701 ------- null} h -t 4.18894 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7393 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.18901 -s 0 -d 9 -p ack -e 40 -c 0 -i 7396 -a 0 -x {10.0 9.0 3693 ------- null} + -t 4.18901 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7407 -a 0 -x {9.0 10.0 3708 ------- null} - -t 4.18901 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7407 -a 0 -x {9.0 10.0 3708 ------- null} h -t 4.18901 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7407 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.18912 -s 0 -d 9 -p ack -e 40 -c 0 -i 7400 -a 0 -x {10.0 9.0 3695 ------- null} - -t 4.18912 -s 0 -d 9 -p ack -e 40 -c 0 -i 7400 -a 0 -x {10.0 9.0 3695 ------- null} h -t 4.18912 -s 0 -d 9 -p ack -e 40 -c 0 -i 7400 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.18942 -s 10 -d 7 -p ack -e 40 -c 0 -i 7404 -a 0 -x {10.0 9.0 3697 ------- null} + -t 4.18942 -s 7 -d 0 -p ack -e 40 -c 0 -i 7404 -a 0 -x {10.0 9.0 3697 ------- null} h -t 4.18942 -s 7 -d 8 -p ack -e 40 -c 0 -i 7404 -a 0 -x {10.0 9.0 3697 ------- null} r -t 4.18957 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7389 -a 0 -x {9.0 10.0 3699 ------- null} + -t 4.18957 -s 10 -d 7 -p ack -e 40 -c 0 -i 7408 -a 0 -x {10.0 9.0 3699 ------- null} - -t 4.18957 -s 10 -d 7 -p ack -e 40 -c 0 -i 7408 -a 0 -x {10.0 9.0 3699 ------- null} h -t 4.18957 -s 10 -d 7 -p ack -e 40 -c 0 -i 7408 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.1896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7403 -a 0 -x {9.0 10.0 3706 ------- null} + -t 4.1896 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7403 -a 0 -x {9.0 10.0 3706 ------- null} h -t 4.1896 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7403 -a 0 -x {9.0 10.0 3706 ------- null} r -t 4.18997 -s 0 -d 9 -p ack -e 40 -c 0 -i 7398 -a 0 -x {10.0 9.0 3694 ------- null} + -t 4.18997 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7409 -a 0 -x {9.0 10.0 3709 ------- null} - -t 4.18997 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7409 -a 0 -x {9.0 10.0 3709 ------- null} h -t 4.18997 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7409 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.19003 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7395 -a 0 -x {9.0 10.0 3702 ------- null} - -t 4.19003 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7395 -a 0 -x {9.0 10.0 3702 ------- null} h -t 4.19003 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7395 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.19019 -s 0 -d 9 -p ack -e 40 -c 0 -i 7402 -a 0 -x {10.0 9.0 3696 ------- null} - -t 4.19019 -s 0 -d 9 -p ack -e 40 -c 0 -i 7402 -a 0 -x {10.0 9.0 3696 ------- null} h -t 4.19019 -s 0 -d 9 -p ack -e 40 -c 0 -i 7402 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.19051 -s 10 -d 7 -p ack -e 40 -c 0 -i 7406 -a 0 -x {10.0 9.0 3698 ------- null} + -t 4.19051 -s 7 -d 0 -p ack -e 40 -c 0 -i 7406 -a 0 -x {10.0 9.0 3698 ------- null} h -t 4.19051 -s 7 -d 8 -p ack -e 40 -c 0 -i 7406 -a 0 -x {10.0 9.0 3698 ------- null} r -t 4.19066 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7391 -a 0 -x {9.0 10.0 3700 ------- null} + -t 4.19066 -s 10 -d 7 -p ack -e 40 -c 0 -i 7410 -a 0 -x {10.0 9.0 3700 ------- null} - -t 4.19066 -s 10 -d 7 -p ack -e 40 -c 0 -i 7410 -a 0 -x {10.0 9.0 3700 ------- null} h -t 4.19066 -s 10 -d 7 -p ack -e 40 -c 0 -i 7410 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.19075 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7405 -a 0 -x {9.0 10.0 3707 ------- null} + -t 4.19075 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7405 -a 0 -x {9.0 10.0 3707 ------- null} h -t 4.19075 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7405 -a 0 -x {9.0 10.0 3707 ------- null} + -t 4.19112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7397 -a 0 -x {9.0 10.0 3703 ------- null} - -t 4.19112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7397 -a 0 -x {9.0 10.0 3703 ------- null} h -t 4.19112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7397 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.19115 -s 0 -d 9 -p ack -e 40 -c 0 -i 7400 -a 0 -x {10.0 9.0 3695 ------- null} + -t 4.19115 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7411 -a 0 -x {9.0 10.0 3710 ------- null} - -t 4.19115 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7411 -a 0 -x {9.0 10.0 3710 ------- null} h -t 4.19115 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7411 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.19128 -s 0 -d 9 -p ack -e 40 -c 0 -i 7404 -a 0 -x {10.0 9.0 3697 ------- null} - -t 4.19128 -s 0 -d 9 -p ack -e 40 -c 0 -i 7404 -a 0 -x {10.0 9.0 3697 ------- null} h -t 4.19128 -s 0 -d 9 -p ack -e 40 -c 0 -i 7404 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.1916 -s 10 -d 7 -p ack -e 40 -c 0 -i 7408 -a 0 -x {10.0 9.0 3699 ------- null} + -t 4.1916 -s 7 -d 0 -p ack -e 40 -c 0 -i 7408 -a 0 -x {10.0 9.0 3699 ------- null} h -t 4.1916 -s 7 -d 8 -p ack -e 40 -c 0 -i 7408 -a 0 -x {10.0 9.0 3699 ------- null} r -t 4.19174 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7393 -a 0 -x {9.0 10.0 3701 ------- null} + -t 4.19174 -s 10 -d 7 -p ack -e 40 -c 0 -i 7412 -a 0 -x {10.0 9.0 3701 ------- null} - -t 4.19174 -s 10 -d 7 -p ack -e 40 -c 0 -i 7412 -a 0 -x {10.0 9.0 3701 ------- null} h -t 4.19174 -s 10 -d 7 -p ack -e 40 -c 0 -i 7412 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.19181 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7407 -a 0 -x {9.0 10.0 3708 ------- null} + -t 4.19181 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7407 -a 0 -x {9.0 10.0 3708 ------- null} h -t 4.19181 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7407 -a 0 -x {9.0 10.0 3708 ------- null} + -t 4.19221 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7399 -a 0 -x {9.0 10.0 3704 ------- null} - -t 4.19221 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7399 -a 0 -x {9.0 10.0 3704 ------- null} h -t 4.19221 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7399 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.19222 -s 0 -d 9 -p ack -e 40 -c 0 -i 7402 -a 0 -x {10.0 9.0 3696 ------- null} + -t 4.19222 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7413 -a 0 -x {9.0 10.0 3711 ------- null} - -t 4.19222 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7413 -a 0 -x {9.0 10.0 3711 ------- null} h -t 4.19222 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7413 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.19237 -s 0 -d 9 -p ack -e 40 -c 0 -i 7406 -a 0 -x {10.0 9.0 3698 ------- null} - -t 4.19237 -s 0 -d 9 -p ack -e 40 -c 0 -i 7406 -a 0 -x {10.0 9.0 3698 ------- null} h -t 4.19237 -s 0 -d 9 -p ack -e 40 -c 0 -i 7406 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.19269 -s 10 -d 7 -p ack -e 40 -c 0 -i 7410 -a 0 -x {10.0 9.0 3700 ------- null} + -t 4.19269 -s 7 -d 0 -p ack -e 40 -c 0 -i 7410 -a 0 -x {10.0 9.0 3700 ------- null} h -t 4.19269 -s 7 -d 8 -p ack -e 40 -c 0 -i 7410 -a 0 -x {10.0 9.0 3700 ------- null} r -t 4.19277 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7409 -a 0 -x {9.0 10.0 3709 ------- null} + -t 4.19277 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7409 -a 0 -x {9.0 10.0 3709 ------- null} h -t 4.19277 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7409 -a 0 -x {9.0 10.0 3709 ------- null} r -t 4.19283 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7395 -a 0 -x {9.0 10.0 3702 ------- null} + -t 4.19283 -s 10 -d 7 -p ack -e 40 -c 0 -i 7414 -a 0 -x {10.0 9.0 3702 ------- null} - -t 4.19283 -s 10 -d 7 -p ack -e 40 -c 0 -i 7414 -a 0 -x {10.0 9.0 3702 ------- null} h -t 4.19283 -s 10 -d 7 -p ack -e 40 -c 0 -i 7414 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.1933 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7401 -a 0 -x {9.0 10.0 3705 ------- null} - -t 4.1933 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7401 -a 0 -x {9.0 10.0 3705 ------- null} h -t 4.1933 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7401 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.19331 -s 0 -d 9 -p ack -e 40 -c 0 -i 7404 -a 0 -x {10.0 9.0 3697 ------- null} + -t 4.19331 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7415 -a 0 -x {9.0 10.0 3712 ------- null} - -t 4.19331 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7415 -a 0 -x {9.0 10.0 3712 ------- null} h -t 4.19331 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7415 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.1935 -s 0 -d 9 -p ack -e 40 -c 0 -i 7408 -a 0 -x {10.0 9.0 3699 ------- null} - -t 4.1935 -s 0 -d 9 -p ack -e 40 -c 0 -i 7408 -a 0 -x {10.0 9.0 3699 ------- null} h -t 4.1935 -s 0 -d 9 -p ack -e 40 -c 0 -i 7408 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.19378 -s 10 -d 7 -p ack -e 40 -c 0 -i 7412 -a 0 -x {10.0 9.0 3701 ------- null} + -t 4.19378 -s 7 -d 0 -p ack -e 40 -c 0 -i 7412 -a 0 -x {10.0 9.0 3701 ------- null} h -t 4.19378 -s 7 -d 8 -p ack -e 40 -c 0 -i 7412 -a 0 -x {10.0 9.0 3701 ------- null} r -t 4.19392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7397 -a 0 -x {9.0 10.0 3703 ------- null} + -t 4.19392 -s 10 -d 7 -p ack -e 40 -c 0 -i 7416 -a 0 -x {10.0 9.0 3703 ------- null} - -t 4.19392 -s 10 -d 7 -p ack -e 40 -c 0 -i 7416 -a 0 -x {10.0 9.0 3703 ------- null} h -t 4.19392 -s 10 -d 7 -p ack -e 40 -c 0 -i 7416 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.19395 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7411 -a 0 -x {9.0 10.0 3710 ------- null} + -t 4.19395 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7411 -a 0 -x {9.0 10.0 3710 ------- null} h -t 4.19395 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7411 -a 0 -x {9.0 10.0 3710 ------- null} + -t 4.19438 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7403 -a 0 -x {9.0 10.0 3706 ------- null} - -t 4.19438 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7403 -a 0 -x {9.0 10.0 3706 ------- null} h -t 4.19438 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7403 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.1944 -s 0 -d 9 -p ack -e 40 -c 0 -i 7406 -a 0 -x {10.0 9.0 3698 ------- null} + -t 4.1944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7417 -a 0 -x {9.0 10.0 3713 ------- null} - -t 4.1944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7417 -a 0 -x {9.0 10.0 3713 ------- null} h -t 4.1944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7417 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.19458 -s 0 -d 9 -p ack -e 40 -c 0 -i 7410 -a 0 -x {10.0 9.0 3700 ------- null} - -t 4.19458 -s 0 -d 9 -p ack -e 40 -c 0 -i 7410 -a 0 -x {10.0 9.0 3700 ------- null} h -t 4.19458 -s 0 -d 9 -p ack -e 40 -c 0 -i 7410 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.19486 -s 10 -d 7 -p ack -e 40 -c 0 -i 7414 -a 0 -x {10.0 9.0 3702 ------- null} + -t 4.19486 -s 7 -d 0 -p ack -e 40 -c 0 -i 7414 -a 0 -x {10.0 9.0 3702 ------- null} h -t 4.19486 -s 7 -d 8 -p ack -e 40 -c 0 -i 7414 -a 0 -x {10.0 9.0 3702 ------- null} r -t 4.19501 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7399 -a 0 -x {9.0 10.0 3704 ------- null} + -t 4.19501 -s 10 -d 7 -p ack -e 40 -c 0 -i 7418 -a 0 -x {10.0 9.0 3704 ------- null} - -t 4.19501 -s 10 -d 7 -p ack -e 40 -c 0 -i 7418 -a 0 -x {10.0 9.0 3704 ------- null} h -t 4.19501 -s 10 -d 7 -p ack -e 40 -c 0 -i 7418 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.19502 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7413 -a 0 -x {9.0 10.0 3711 ------- null} + -t 4.19502 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7413 -a 0 -x {9.0 10.0 3711 ------- null} h -t 4.19502 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7413 -a 0 -x {9.0 10.0 3711 ------- null} + -t 4.19547 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7405 -a 0 -x {9.0 10.0 3707 ------- null} - -t 4.19547 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7405 -a 0 -x {9.0 10.0 3707 ------- null} h -t 4.19547 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7405 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.19554 -s 0 -d 9 -p ack -e 40 -c 0 -i 7408 -a 0 -x {10.0 9.0 3699 ------- null} + -t 4.19554 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7419 -a 0 -x {9.0 10.0 3714 ------- null} - -t 4.19554 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7419 -a 0 -x {9.0 10.0 3714 ------- null} h -t 4.19554 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7419 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.19554 -s 0 -d 9 -p ack -e 40 -c 0 -i 7412 -a 0 -x {10.0 9.0 3701 ------- null} - -t 4.19554 -s 0 -d 9 -p ack -e 40 -c 0 -i 7412 -a 0 -x {10.0 9.0 3701 ------- null} h -t 4.19554 -s 0 -d 9 -p ack -e 40 -c 0 -i 7412 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.19595 -s 10 -d 7 -p ack -e 40 -c 0 -i 7416 -a 0 -x {10.0 9.0 3703 ------- null} + -t 4.19595 -s 7 -d 0 -p ack -e 40 -c 0 -i 7416 -a 0 -x {10.0 9.0 3703 ------- null} h -t 4.19595 -s 7 -d 8 -p ack -e 40 -c 0 -i 7416 -a 0 -x {10.0 9.0 3703 ------- null} r -t 4.1961 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7401 -a 0 -x {9.0 10.0 3705 ------- null} + -t 4.1961 -s 10 -d 7 -p ack -e 40 -c 0 -i 7420 -a 0 -x {10.0 9.0 3705 ------- null} - -t 4.1961 -s 10 -d 7 -p ack -e 40 -c 0 -i 7420 -a 0 -x {10.0 9.0 3705 ------- null} h -t 4.1961 -s 10 -d 7 -p ack -e 40 -c 0 -i 7420 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.19611 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7415 -a 0 -x {9.0 10.0 3712 ------- null} + -t 4.19611 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7415 -a 0 -x {9.0 10.0 3712 ------- null} h -t 4.19611 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7415 -a 0 -x {9.0 10.0 3712 ------- null} + -t 4.19656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7407 -a 0 -x {9.0 10.0 3708 ------- null} - -t 4.19656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7407 -a 0 -x {9.0 10.0 3708 ------- null} h -t 4.19656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7407 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.19661 -s 0 -d 9 -p ack -e 40 -c 0 -i 7410 -a 0 -x {10.0 9.0 3700 ------- null} + -t 4.19661 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7421 -a 0 -x {9.0 10.0 3715 ------- null} - -t 4.19661 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7421 -a 0 -x {9.0 10.0 3715 ------- null} h -t 4.19661 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7421 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.19674 -s 0 -d 9 -p ack -e 40 -c 0 -i 7414 -a 0 -x {10.0 9.0 3702 ------- null} - -t 4.19674 -s 0 -d 9 -p ack -e 40 -c 0 -i 7414 -a 0 -x {10.0 9.0 3702 ------- null} h -t 4.19674 -s 0 -d 9 -p ack -e 40 -c 0 -i 7414 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.19704 -s 10 -d 7 -p ack -e 40 -c 0 -i 7418 -a 0 -x {10.0 9.0 3704 ------- null} + -t 4.19704 -s 7 -d 0 -p ack -e 40 -c 0 -i 7418 -a 0 -x {10.0 9.0 3704 ------- null} h -t 4.19704 -s 7 -d 8 -p ack -e 40 -c 0 -i 7418 -a 0 -x {10.0 9.0 3704 ------- null} r -t 4.19718 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7403 -a 0 -x {9.0 10.0 3706 ------- null} + -t 4.19718 -s 10 -d 7 -p ack -e 40 -c 0 -i 7422 -a 0 -x {10.0 9.0 3706 ------- null} - -t 4.19718 -s 10 -d 7 -p ack -e 40 -c 0 -i 7422 -a 0 -x {10.0 9.0 3706 ------- null} h -t 4.19718 -s 10 -d 7 -p ack -e 40 -c 0 -i 7422 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.1972 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7417 -a 0 -x {9.0 10.0 3713 ------- null} + -t 4.1972 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7417 -a 0 -x {9.0 10.0 3713 ------- null} h -t 4.1972 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7417 -a 0 -x {9.0 10.0 3713 ------- null} r -t 4.19757 -s 0 -d 9 -p ack -e 40 -c 0 -i 7412 -a 0 -x {10.0 9.0 3701 ------- null} + -t 4.19757 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7423 -a 0 -x {9.0 10.0 3716 ------- null} - -t 4.19757 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7423 -a 0 -x {9.0 10.0 3716 ------- null} h -t 4.19757 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7423 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.19765 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7409 -a 0 -x {9.0 10.0 3709 ------- null} - -t 4.19765 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7409 -a 0 -x {9.0 10.0 3709 ------- null} h -t 4.19765 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7409 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.19786 -s 0 -d 9 -p ack -e 40 -c 0 -i 7416 -a 0 -x {10.0 9.0 3703 ------- null} - -t 4.19786 -s 0 -d 9 -p ack -e 40 -c 0 -i 7416 -a 0 -x {10.0 9.0 3703 ------- null} h -t 4.19786 -s 0 -d 9 -p ack -e 40 -c 0 -i 7416 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.19813 -s 10 -d 7 -p ack -e 40 -c 0 -i 7420 -a 0 -x {10.0 9.0 3705 ------- null} + -t 4.19813 -s 7 -d 0 -p ack -e 40 -c 0 -i 7420 -a 0 -x {10.0 9.0 3705 ------- null} h -t 4.19813 -s 7 -d 8 -p ack -e 40 -c 0 -i 7420 -a 0 -x {10.0 9.0 3705 ------- null} r -t 4.19827 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7405 -a 0 -x {9.0 10.0 3707 ------- null} + -t 4.19827 -s 10 -d 7 -p ack -e 40 -c 0 -i 7424 -a 0 -x {10.0 9.0 3707 ------- null} - -t 4.19827 -s 10 -d 7 -p ack -e 40 -c 0 -i 7424 -a 0 -x {10.0 9.0 3707 ------- null} h -t 4.19827 -s 10 -d 7 -p ack -e 40 -c 0 -i 7424 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.19834 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7419 -a 0 -x {9.0 10.0 3714 ------- null} + -t 4.19834 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7419 -a 0 -x {9.0 10.0 3714 ------- null} h -t 4.19834 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7419 -a 0 -x {9.0 10.0 3714 ------- null} + -t 4.19874 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7411 -a 0 -x {9.0 10.0 3710 ------- null} - -t 4.19874 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7411 -a 0 -x {9.0 10.0 3710 ------- null} h -t 4.19874 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7411 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.19877 -s 0 -d 9 -p ack -e 40 -c 0 -i 7414 -a 0 -x {10.0 9.0 3702 ------- null} + -t 4.19877 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7425 -a 0 -x {9.0 10.0 3717 ------- null} - -t 4.19877 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7425 -a 0 -x {9.0 10.0 3717 ------- null} h -t 4.19877 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7425 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.1988 -s 0 -d 9 -p ack -e 40 -c 0 -i 7418 -a 0 -x {10.0 9.0 3704 ------- null} - -t 4.1988 -s 0 -d 9 -p ack -e 40 -c 0 -i 7418 -a 0 -x {10.0 9.0 3704 ------- null} h -t 4.1988 -s 0 -d 9 -p ack -e 40 -c 0 -i 7418 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.19922 -s 10 -d 7 -p ack -e 40 -c 0 -i 7422 -a 0 -x {10.0 9.0 3706 ------- null} + -t 4.19922 -s 7 -d 0 -p ack -e 40 -c 0 -i 7422 -a 0 -x {10.0 9.0 3706 ------- null} h -t 4.19922 -s 7 -d 8 -p ack -e 40 -c 0 -i 7422 -a 0 -x {10.0 9.0 3706 ------- null} r -t 4.19936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7407 -a 0 -x {9.0 10.0 3708 ------- null} + -t 4.19936 -s 10 -d 7 -p ack -e 40 -c 0 -i 7426 -a 0 -x {10.0 9.0 3708 ------- null} - -t 4.19936 -s 10 -d 7 -p ack -e 40 -c 0 -i 7426 -a 0 -x {10.0 9.0 3708 ------- null} h -t 4.19936 -s 10 -d 7 -p ack -e 40 -c 0 -i 7426 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.19941 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7421 -a 0 -x {9.0 10.0 3715 ------- null} + -t 4.19941 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7421 -a 0 -x {9.0 10.0 3715 ------- null} h -t 4.19941 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7421 -a 0 -x {9.0 10.0 3715 ------- null} + -t 4.19982 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7413 -a 0 -x {9.0 10.0 3711 ------- null} - -t 4.19982 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7413 -a 0 -x {9.0 10.0 3711 ------- null} h -t 4.19982 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7413 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.19989 -s 0 -d 9 -p ack -e 40 -c 0 -i 7416 -a 0 -x {10.0 9.0 3703 ------- null} + -t 4.19989 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7427 -a 0 -x {9.0 10.0 3718 ------- null} - -t 4.19989 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7427 -a 0 -x {9.0 10.0 3718 ------- null} h -t 4.19989 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7427 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.19992 -s 0 -d 9 -p ack -e 40 -c 0 -i 7420 -a 0 -x {10.0 9.0 3705 ------- null} - -t 4.19992 -s 0 -d 9 -p ack -e 40 -c 0 -i 7420 -a 0 -x {10.0 9.0 3705 ------- null} h -t 4.19992 -s 0 -d 9 -p ack -e 40 -c 0 -i 7420 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.2003 -s 10 -d 7 -p ack -e 40 -c 0 -i 7424 -a 0 -x {10.0 9.0 3707 ------- null} + -t 4.2003 -s 7 -d 0 -p ack -e 40 -c 0 -i 7424 -a 0 -x {10.0 9.0 3707 ------- null} h -t 4.2003 -s 7 -d 8 -p ack -e 40 -c 0 -i 7424 -a 0 -x {10.0 9.0 3707 ------- null} r -t 4.20037 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7423 -a 0 -x {9.0 10.0 3716 ------- null} + -t 4.20037 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7423 -a 0 -x {9.0 10.0 3716 ------- null} h -t 4.20037 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7423 -a 0 -x {9.0 10.0 3716 ------- null} r -t 4.20045 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7409 -a 0 -x {9.0 10.0 3709 ------- null} + -t 4.20045 -s 10 -d 7 -p ack -e 40 -c 0 -i 7428 -a 0 -x {10.0 9.0 3709 ------- null} - -t 4.20045 -s 10 -d 7 -p ack -e 40 -c 0 -i 7428 -a 0 -x {10.0 9.0 3709 ------- null} h -t 4.20045 -s 10 -d 7 -p ack -e 40 -c 0 -i 7428 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.20083 -s 0 -d 9 -p ack -e 40 -c 0 -i 7418 -a 0 -x {10.0 9.0 3704 ------- null} + -t 4.20083 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7429 -a 0 -x {9.0 10.0 3719 ------- null} - -t 4.20083 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7429 -a 0 -x {9.0 10.0 3719 ------- null} h -t 4.20083 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7429 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.20091 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7415 -a 0 -x {9.0 10.0 3712 ------- null} - -t 4.20091 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7415 -a 0 -x {9.0 10.0 3712 ------- null} h -t 4.20091 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7415 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.20101 -s 0 -d 9 -p ack -e 40 -c 0 -i 7422 -a 0 -x {10.0 9.0 3706 ------- null} - -t 4.20101 -s 0 -d 9 -p ack -e 40 -c 0 -i 7422 -a 0 -x {10.0 9.0 3706 ------- null} h -t 4.20101 -s 0 -d 9 -p ack -e 40 -c 0 -i 7422 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.20139 -s 10 -d 7 -p ack -e 40 -c 0 -i 7426 -a 0 -x {10.0 9.0 3708 ------- null} + -t 4.20139 -s 7 -d 0 -p ack -e 40 -c 0 -i 7426 -a 0 -x {10.0 9.0 3708 ------- null} h -t 4.20139 -s 7 -d 8 -p ack -e 40 -c 0 -i 7426 -a 0 -x {10.0 9.0 3708 ------- null} r -t 4.20154 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7411 -a 0 -x {9.0 10.0 3710 ------- null} + -t 4.20154 -s 10 -d 7 -p ack -e 40 -c 0 -i 7430 -a 0 -x {10.0 9.0 3710 ------- null} - -t 4.20154 -s 10 -d 7 -p ack -e 40 -c 0 -i 7430 -a 0 -x {10.0 9.0 3710 ------- null} h -t 4.20154 -s 10 -d 7 -p ack -e 40 -c 0 -i 7430 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.20157 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7425 -a 0 -x {9.0 10.0 3717 ------- null} + -t 4.20157 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7425 -a 0 -x {9.0 10.0 3717 ------- null} h -t 4.20157 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7425 -a 0 -x {9.0 10.0 3717 ------- null} r -t 4.20195 -s 0 -d 9 -p ack -e 40 -c 0 -i 7420 -a 0 -x {10.0 9.0 3705 ------- null} + -t 4.20195 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7431 -a 0 -x {9.0 10.0 3720 ------- null} - -t 4.20195 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7431 -a 0 -x {9.0 10.0 3720 ------- null} h -t 4.20195 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7431 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.202 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7417 -a 0 -x {9.0 10.0 3713 ------- null} - -t 4.202 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7417 -a 0 -x {9.0 10.0 3713 ------- null} h -t 4.202 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7417 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.20222 -s 0 -d 9 -p ack -e 40 -c 0 -i 7424 -a 0 -x {10.0 9.0 3707 ------- null} - -t 4.20222 -s 0 -d 9 -p ack -e 40 -c 0 -i 7424 -a 0 -x {10.0 9.0 3707 ------- null} h -t 4.20222 -s 0 -d 9 -p ack -e 40 -c 0 -i 7424 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.20248 -s 10 -d 7 -p ack -e 40 -c 0 -i 7428 -a 0 -x {10.0 9.0 3709 ------- null} + -t 4.20248 -s 7 -d 0 -p ack -e 40 -c 0 -i 7428 -a 0 -x {10.0 9.0 3709 ------- null} h -t 4.20248 -s 7 -d 8 -p ack -e 40 -c 0 -i 7428 -a 0 -x {10.0 9.0 3709 ------- null} r -t 4.20262 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7413 -a 0 -x {9.0 10.0 3711 ------- null} + -t 4.20262 -s 10 -d 7 -p ack -e 40 -c 0 -i 7432 -a 0 -x {10.0 9.0 3711 ------- null} - -t 4.20262 -s 10 -d 7 -p ack -e 40 -c 0 -i 7432 -a 0 -x {10.0 9.0 3711 ------- null} h -t 4.20262 -s 10 -d 7 -p ack -e 40 -c 0 -i 7432 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.20269 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7427 -a 0 -x {9.0 10.0 3718 ------- null} + -t 4.20269 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7427 -a 0 -x {9.0 10.0 3718 ------- null} h -t 4.20269 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7427 -a 0 -x {9.0 10.0 3718 ------- null} r -t 4.20304 -s 0 -d 9 -p ack -e 40 -c 0 -i 7422 -a 0 -x {10.0 9.0 3706 ------- null} + -t 4.20304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7433 -a 0 -x {9.0 10.0 3721 ------- null} - -t 4.20304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7433 -a 0 -x {9.0 10.0 3721 ------- null} h -t 4.20304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7433 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.20309 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7419 -a 0 -x {9.0 10.0 3714 ------- null} - -t 4.20309 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7419 -a 0 -x {9.0 10.0 3714 ------- null} h -t 4.20309 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7419 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.20328 -s 0 -d 9 -p ack -e 40 -c 0 -i 7426 -a 0 -x {10.0 9.0 3708 ------- null} - -t 4.20328 -s 0 -d 9 -p ack -e 40 -c 0 -i 7426 -a 0 -x {10.0 9.0 3708 ------- null} h -t 4.20328 -s 0 -d 9 -p ack -e 40 -c 0 -i 7426 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.20357 -s 10 -d 7 -p ack -e 40 -c 0 -i 7430 -a 0 -x {10.0 9.0 3710 ------- null} + -t 4.20357 -s 7 -d 0 -p ack -e 40 -c 0 -i 7430 -a 0 -x {10.0 9.0 3710 ------- null} h -t 4.20357 -s 7 -d 8 -p ack -e 40 -c 0 -i 7430 -a 0 -x {10.0 9.0 3710 ------- null} r -t 4.20363 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7429 -a 0 -x {9.0 10.0 3719 ------- null} + -t 4.20363 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7429 -a 0 -x {9.0 10.0 3719 ------- null} h -t 4.20363 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7429 -a 0 -x {9.0 10.0 3719 ------- null} r -t 4.20371 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7415 -a 0 -x {9.0 10.0 3712 ------- null} + -t 4.20371 -s 10 -d 7 -p ack -e 40 -c 0 -i 7434 -a 0 -x {10.0 9.0 3712 ------- null} - -t 4.20371 -s 10 -d 7 -p ack -e 40 -c 0 -i 7434 -a 0 -x {10.0 9.0 3712 ------- null} h -t 4.20371 -s 10 -d 7 -p ack -e 40 -c 0 -i 7434 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.20418 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7421 -a 0 -x {9.0 10.0 3715 ------- null} - -t 4.20418 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7421 -a 0 -x {9.0 10.0 3715 ------- null} h -t 4.20418 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7421 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.20426 -s 0 -d 9 -p ack -e 40 -c 0 -i 7424 -a 0 -x {10.0 9.0 3707 ------- null} + -t 4.20426 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7435 -a 0 -x {9.0 10.0 3722 ------- null} - -t 4.20426 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7435 -a 0 -x {9.0 10.0 3722 ------- null} h -t 4.20426 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7435 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.2044 -s 0 -d 9 -p ack -e 40 -c 0 -i 7428 -a 0 -x {10.0 9.0 3709 ------- null} - -t 4.2044 -s 0 -d 9 -p ack -e 40 -c 0 -i 7428 -a 0 -x {10.0 9.0 3709 ------- null} h -t 4.2044 -s 0 -d 9 -p ack -e 40 -c 0 -i 7428 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.20466 -s 10 -d 7 -p ack -e 40 -c 0 -i 7432 -a 0 -x {10.0 9.0 3711 ------- null} + -t 4.20466 -s 7 -d 0 -p ack -e 40 -c 0 -i 7432 -a 0 -x {10.0 9.0 3711 ------- null} h -t 4.20466 -s 7 -d 8 -p ack -e 40 -c 0 -i 7432 -a 0 -x {10.0 9.0 3711 ------- null} r -t 4.20475 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7431 -a 0 -x {9.0 10.0 3720 ------- null} + -t 4.20475 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7431 -a 0 -x {9.0 10.0 3720 ------- null} h -t 4.20475 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7431 -a 0 -x {9.0 10.0 3720 ------- null} r -t 4.2048 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7417 -a 0 -x {9.0 10.0 3713 ------- null} + -t 4.2048 -s 10 -d 7 -p ack -e 40 -c 0 -i 7436 -a 0 -x {10.0 9.0 3713 ------- null} - -t 4.2048 -s 10 -d 7 -p ack -e 40 -c 0 -i 7436 -a 0 -x {10.0 9.0 3713 ------- null} h -t 4.2048 -s 10 -d 7 -p ack -e 40 -c 0 -i 7436 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.20526 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7423 -a 0 -x {9.0 10.0 3716 ------- null} - -t 4.20526 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7423 -a 0 -x {9.0 10.0 3716 ------- null} h -t 4.20526 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7423 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.20531 -s 0 -d 9 -p ack -e 40 -c 0 -i 7426 -a 0 -x {10.0 9.0 3708 ------- null} + -t 4.20531 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7437 -a 0 -x {9.0 10.0 3723 ------- null} - -t 4.20531 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7437 -a 0 -x {9.0 10.0 3723 ------- null} h -t 4.20531 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7437 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.20552 -s 0 -d 9 -p ack -e 40 -c 0 -i 7430 -a 0 -x {10.0 9.0 3710 ------- null} - -t 4.20552 -s 0 -d 9 -p ack -e 40 -c 0 -i 7430 -a 0 -x {10.0 9.0 3710 ------- null} h -t 4.20552 -s 0 -d 9 -p ack -e 40 -c 0 -i 7430 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.20574 -s 10 -d 7 -p ack -e 40 -c 0 -i 7434 -a 0 -x {10.0 9.0 3712 ------- null} + -t 4.20574 -s 7 -d 0 -p ack -e 40 -c 0 -i 7434 -a 0 -x {10.0 9.0 3712 ------- null} h -t 4.20574 -s 7 -d 8 -p ack -e 40 -c 0 -i 7434 -a 0 -x {10.0 9.0 3712 ------- null} r -t 4.20584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7433 -a 0 -x {9.0 10.0 3721 ------- null} + -t 4.20584 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7433 -a 0 -x {9.0 10.0 3721 ------- null} h -t 4.20584 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7433 -a 0 -x {9.0 10.0 3721 ------- null} r -t 4.20589 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7419 -a 0 -x {9.0 10.0 3714 ------- null} + -t 4.20589 -s 10 -d 7 -p ack -e 40 -c 0 -i 7438 -a 0 -x {10.0 9.0 3714 ------- null} - -t 4.20589 -s 10 -d 7 -p ack -e 40 -c 0 -i 7438 -a 0 -x {10.0 9.0 3714 ------- null} h -t 4.20589 -s 10 -d 7 -p ack -e 40 -c 0 -i 7438 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.20635 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7425 -a 0 -x {9.0 10.0 3717 ------- null} - -t 4.20635 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7425 -a 0 -x {9.0 10.0 3717 ------- null} h -t 4.20635 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7425 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.20643 -s 0 -d 9 -p ack -e 40 -c 0 -i 7428 -a 0 -x {10.0 9.0 3709 ------- null} + -t 4.20643 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7439 -a 0 -x {9.0 10.0 3724 ------- null} - -t 4.20643 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7439 -a 0 -x {9.0 10.0 3724 ------- null} h -t 4.20643 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7439 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.20664 -s 0 -d 9 -p ack -e 40 -c 0 -i 7432 -a 0 -x {10.0 9.0 3711 ------- null} - -t 4.20664 -s 0 -d 9 -p ack -e 40 -c 0 -i 7432 -a 0 -x {10.0 9.0 3711 ------- null} h -t 4.20664 -s 0 -d 9 -p ack -e 40 -c 0 -i 7432 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.20683 -s 10 -d 7 -p ack -e 40 -c 0 -i 7436 -a 0 -x {10.0 9.0 3713 ------- null} + -t 4.20683 -s 7 -d 0 -p ack -e 40 -c 0 -i 7436 -a 0 -x {10.0 9.0 3713 ------- null} h -t 4.20683 -s 7 -d 8 -p ack -e 40 -c 0 -i 7436 -a 0 -x {10.0 9.0 3713 ------- null} r -t 4.20698 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7421 -a 0 -x {9.0 10.0 3715 ------- null} + -t 4.20698 -s 10 -d 7 -p ack -e 40 -c 0 -i 7440 -a 0 -x {10.0 9.0 3715 ------- null} - -t 4.20698 -s 10 -d 7 -p ack -e 40 -c 0 -i 7440 -a 0 -x {10.0 9.0 3715 ------- null} h -t 4.20698 -s 10 -d 7 -p ack -e 40 -c 0 -i 7440 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.20706 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7435 -a 0 -x {9.0 10.0 3722 ------- null} + -t 4.20706 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7435 -a 0 -x {9.0 10.0 3722 ------- null} h -t 4.20706 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7435 -a 0 -x {9.0 10.0 3722 ------- null} r -t 4.20755 -s 0 -d 9 -p ack -e 40 -c 0 -i 7430 -a 0 -x {10.0 9.0 3710 ------- null} + -t 4.20755 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7441 -a 0 -x {9.0 10.0 3725 ------- null} - -t 4.20755 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7441 -a 0 -x {9.0 10.0 3725 ------- null} h -t 4.20755 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7441 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.20762 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7427 -a 0 -x {9.0 10.0 3718 ------- null} - -t 4.20762 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7427 -a 0 -x {9.0 10.0 3718 ------- null} h -t 4.20762 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7427 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.2077 -s 0 -d 9 -p ack -e 40 -c 0 -i 7434 -a 0 -x {10.0 9.0 3712 ------- null} - -t 4.2077 -s 0 -d 9 -p ack -e 40 -c 0 -i 7434 -a 0 -x {10.0 9.0 3712 ------- null} h -t 4.2077 -s 0 -d 9 -p ack -e 40 -c 0 -i 7434 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.20792 -s 10 -d 7 -p ack -e 40 -c 0 -i 7438 -a 0 -x {10.0 9.0 3714 ------- null} + -t 4.20792 -s 7 -d 0 -p ack -e 40 -c 0 -i 7438 -a 0 -x {10.0 9.0 3714 ------- null} h -t 4.20792 -s 7 -d 8 -p ack -e 40 -c 0 -i 7438 -a 0 -x {10.0 9.0 3714 ------- null} r -t 4.20806 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7423 -a 0 -x {9.0 10.0 3716 ------- null} + -t 4.20806 -s 10 -d 7 -p ack -e 40 -c 0 -i 7442 -a 0 -x {10.0 9.0 3716 ------- null} - -t 4.20806 -s 10 -d 7 -p ack -e 40 -c 0 -i 7442 -a 0 -x {10.0 9.0 3716 ------- null} h -t 4.20806 -s 10 -d 7 -p ack -e 40 -c 0 -i 7442 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.20811 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7437 -a 0 -x {9.0 10.0 3723 ------- null} + -t 4.20811 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7437 -a 0 -x {9.0 10.0 3723 ------- null} h -t 4.20811 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7437 -a 0 -x {9.0 10.0 3723 ------- null} r -t 4.20867 -s 0 -d 9 -p ack -e 40 -c 0 -i 7432 -a 0 -x {10.0 9.0 3711 ------- null} + -t 4.20867 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7443 -a 0 -x {9.0 10.0 3726 ------- null} - -t 4.20867 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7443 -a 0 -x {9.0 10.0 3726 ------- null} h -t 4.20867 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7443 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.2087 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7429 -a 0 -x {9.0 10.0 3719 ------- null} - -t 4.2087 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7429 -a 0 -x {9.0 10.0 3719 ------- null} h -t 4.2087 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7429 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.20901 -s 0 -d 9 -p ack -e 40 -c 0 -i 7436 -a 0 -x {10.0 9.0 3713 ------- null} - -t 4.20901 -s 0 -d 9 -p ack -e 40 -c 0 -i 7436 -a 0 -x {10.0 9.0 3713 ------- null} h -t 4.20901 -s 0 -d 9 -p ack -e 40 -c 0 -i 7436 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.20901 -s 10 -d 7 -p ack -e 40 -c 0 -i 7440 -a 0 -x {10.0 9.0 3715 ------- null} + -t 4.20901 -s 7 -d 0 -p ack -e 40 -c 0 -i 7440 -a 0 -x {10.0 9.0 3715 ------- null} h -t 4.20901 -s 7 -d 8 -p ack -e 40 -c 0 -i 7440 -a 0 -x {10.0 9.0 3715 ------- null} r -t 4.20915 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7425 -a 0 -x {9.0 10.0 3717 ------- null} + -t 4.20915 -s 10 -d 7 -p ack -e 40 -c 0 -i 7444 -a 0 -x {10.0 9.0 3717 ------- null} - -t 4.20915 -s 10 -d 7 -p ack -e 40 -c 0 -i 7444 -a 0 -x {10.0 9.0 3717 ------- null} h -t 4.20915 -s 10 -d 7 -p ack -e 40 -c 0 -i 7444 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.20923 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7439 -a 0 -x {9.0 10.0 3724 ------- null} + -t 4.20923 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7439 -a 0 -x {9.0 10.0 3724 ------- null} h -t 4.20923 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7439 -a 0 -x {9.0 10.0 3724 ------- null} r -t 4.20973 -s 0 -d 9 -p ack -e 40 -c 0 -i 7434 -a 0 -x {10.0 9.0 3712 ------- null} + -t 4.20973 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7445 -a 0 -x {9.0 10.0 3727 ------- null} - -t 4.20973 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7445 -a 0 -x {9.0 10.0 3727 ------- null} h -t 4.20973 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7445 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.21003 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7431 -a 0 -x {9.0 10.0 3720 ------- null} - -t 4.21003 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7431 -a 0 -x {9.0 10.0 3720 ------- null} h -t 4.21003 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7431 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.2101 -s 10 -d 7 -p ack -e 40 -c 0 -i 7442 -a 0 -x {10.0 9.0 3716 ------- null} + -t 4.2101 -s 7 -d 0 -p ack -e 40 -c 0 -i 7442 -a 0 -x {10.0 9.0 3716 ------- null} h -t 4.2101 -s 7 -d 8 -p ack -e 40 -c 0 -i 7442 -a 0 -x {10.0 9.0 3716 ------- null} + -t 4.21027 -s 0 -d 9 -p ack -e 40 -c 0 -i 7438 -a 0 -x {10.0 9.0 3714 ------- null} - -t 4.21027 -s 0 -d 9 -p ack -e 40 -c 0 -i 7438 -a 0 -x {10.0 9.0 3714 ------- null} h -t 4.21027 -s 0 -d 9 -p ack -e 40 -c 0 -i 7438 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.21035 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7441 -a 0 -x {9.0 10.0 3725 ------- null} + -t 4.21035 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7441 -a 0 -x {9.0 10.0 3725 ------- null} h -t 4.21035 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7441 -a 0 -x {9.0 10.0 3725 ------- null} r -t 4.21042 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7427 -a 0 -x {9.0 10.0 3718 ------- null} + -t 4.21042 -s 10 -d 7 -p ack -e 40 -c 0 -i 7446 -a 0 -x {10.0 9.0 3718 ------- null} - -t 4.21042 -s 10 -d 7 -p ack -e 40 -c 0 -i 7446 -a 0 -x {10.0 9.0 3718 ------- null} h -t 4.21042 -s 10 -d 7 -p ack -e 40 -c 0 -i 7446 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.21104 -s 0 -d 9 -p ack -e 40 -c 0 -i 7436 -a 0 -x {10.0 9.0 3713 ------- null} + -t 4.21104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7447 -a 0 -x {9.0 10.0 3728 ------- null} - -t 4.21104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7447 -a 0 -x {9.0 10.0 3728 ------- null} h -t 4.21104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7447 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.21112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7433 -a 0 -x {9.0 10.0 3721 ------- null} - -t 4.21112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7433 -a 0 -x {9.0 10.0 3721 ------- null} h -t 4.21112 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7433 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.21118 -s 10 -d 7 -p ack -e 40 -c 0 -i 7444 -a 0 -x {10.0 9.0 3717 ------- null} + -t 4.21118 -s 7 -d 0 -p ack -e 40 -c 0 -i 7444 -a 0 -x {10.0 9.0 3717 ------- null} h -t 4.21118 -s 7 -d 8 -p ack -e 40 -c 0 -i 7444 -a 0 -x {10.0 9.0 3717 ------- null} + -t 4.21125 -s 0 -d 9 -p ack -e 40 -c 0 -i 7440 -a 0 -x {10.0 9.0 3715 ------- null} - -t 4.21125 -s 0 -d 9 -p ack -e 40 -c 0 -i 7440 -a 0 -x {10.0 9.0 3715 ------- null} h -t 4.21125 -s 0 -d 9 -p ack -e 40 -c 0 -i 7440 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.21147 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7443 -a 0 -x {9.0 10.0 3726 ------- null} + -t 4.21147 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7443 -a 0 -x {9.0 10.0 3726 ------- null} h -t 4.21147 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7443 -a 0 -x {9.0 10.0 3726 ------- null} r -t 4.2115 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7429 -a 0 -x {9.0 10.0 3719 ------- null} + -t 4.2115 -s 10 -d 7 -p ack -e 40 -c 0 -i 7448 -a 0 -x {10.0 9.0 3719 ------- null} - -t 4.2115 -s 10 -d 7 -p ack -e 40 -c 0 -i 7448 -a 0 -x {10.0 9.0 3719 ------- null} h -t 4.2115 -s 10 -d 7 -p ack -e 40 -c 0 -i 7448 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.21221 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7435 -a 0 -x {9.0 10.0 3722 ------- null} - -t 4.21221 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7435 -a 0 -x {9.0 10.0 3722 ------- null} h -t 4.21221 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7435 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.21229 -s 0 -d 9 -p ack -e 40 -c 0 -i 7442 -a 0 -x {10.0 9.0 3716 ------- null} - -t 4.21229 -s 0 -d 9 -p ack -e 40 -c 0 -i 7442 -a 0 -x {10.0 9.0 3716 ------- null} h -t 4.21229 -s 0 -d 9 -p ack -e 40 -c 0 -i 7442 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.2123 -s 0 -d 9 -p ack -e 40 -c 0 -i 7438 -a 0 -x {10.0 9.0 3714 ------- null} + -t 4.2123 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7449 -a 0 -x {9.0 10.0 3729 ------- null} - -t 4.2123 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7449 -a 0 -x {9.0 10.0 3729 ------- null} h -t 4.2123 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7449 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.21245 -s 10 -d 7 -p ack -e 40 -c 0 -i 7446 -a 0 -x {10.0 9.0 3718 ------- null} + -t 4.21245 -s 7 -d 0 -p ack -e 40 -c 0 -i 7446 -a 0 -x {10.0 9.0 3718 ------- null} h -t 4.21245 -s 7 -d 8 -p ack -e 40 -c 0 -i 7446 -a 0 -x {10.0 9.0 3718 ------- null} r -t 4.21253 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7445 -a 0 -x {9.0 10.0 3727 ------- null} + -t 4.21253 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7445 -a 0 -x {9.0 10.0 3727 ------- null} h -t 4.21253 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7445 -a 0 -x {9.0 10.0 3727 ------- null} r -t 4.21283 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7431 -a 0 -x {9.0 10.0 3720 ------- null} + -t 4.21283 -s 10 -d 7 -p ack -e 40 -c 0 -i 7450 -a 0 -x {10.0 9.0 3720 ------- null} - -t 4.21283 -s 10 -d 7 -p ack -e 40 -c 0 -i 7450 -a 0 -x {10.0 9.0 3720 ------- null} h -t 4.21283 -s 10 -d 7 -p ack -e 40 -c 0 -i 7450 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.21328 -s 0 -d 9 -p ack -e 40 -c 0 -i 7440 -a 0 -x {10.0 9.0 3715 ------- null} + -t 4.21328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7451 -a 0 -x {9.0 10.0 3730 ------- null} - -t 4.21328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7451 -a 0 -x {9.0 10.0 3730 ------- null} h -t 4.21328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7451 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.2133 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7437 -a 0 -x {9.0 10.0 3723 ------- null} - -t 4.2133 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7437 -a 0 -x {9.0 10.0 3723 ------- null} h -t 4.2133 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7437 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.21354 -s 0 -d 9 -p ack -e 40 -c 0 -i 7444 -a 0 -x {10.0 9.0 3717 ------- null} - -t 4.21354 -s 0 -d 9 -p ack -e 40 -c 0 -i 7444 -a 0 -x {10.0 9.0 3717 ------- null} h -t 4.21354 -s 0 -d 9 -p ack -e 40 -c 0 -i 7444 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.21354 -s 10 -d 7 -p ack -e 40 -c 0 -i 7448 -a 0 -x {10.0 9.0 3719 ------- null} + -t 4.21354 -s 7 -d 0 -p ack -e 40 -c 0 -i 7448 -a 0 -x {10.0 9.0 3719 ------- null} h -t 4.21354 -s 7 -d 8 -p ack -e 40 -c 0 -i 7448 -a 0 -x {10.0 9.0 3719 ------- null} r -t 4.21384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7447 -a 0 -x {9.0 10.0 3728 ------- null} + -t 4.21384 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7447 -a 0 -x {9.0 10.0 3728 ------- null} h -t 4.21384 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7447 -a 0 -x {9.0 10.0 3728 ------- null} r -t 4.21392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7433 -a 0 -x {9.0 10.0 3721 ------- null} + -t 4.21392 -s 10 -d 7 -p ack -e 40 -c 0 -i 7452 -a 0 -x {10.0 9.0 3721 ------- null} - -t 4.21392 -s 10 -d 7 -p ack -e 40 -c 0 -i 7452 -a 0 -x {10.0 9.0 3721 ------- null} h -t 4.21392 -s 10 -d 7 -p ack -e 40 -c 0 -i 7452 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.21432 -s 0 -d 9 -p ack -e 40 -c 0 -i 7442 -a 0 -x {10.0 9.0 3716 ------- null} + -t 4.21432 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7453 -a 0 -x {9.0 10.0 3731 ------- null} - -t 4.21432 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7453 -a 0 -x {9.0 10.0 3731 ------- null} h -t 4.21432 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7453 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.21438 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7439 -a 0 -x {9.0 10.0 3724 ------- null} - -t 4.21438 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7439 -a 0 -x {9.0 10.0 3724 ------- null} h -t 4.21438 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7439 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.21466 -s 0 -d 9 -p ack -e 40 -c 0 -i 7446 -a 0 -x {10.0 9.0 3718 ------- null} - -t 4.21466 -s 0 -d 9 -p ack -e 40 -c 0 -i 7446 -a 0 -x {10.0 9.0 3718 ------- null} h -t 4.21466 -s 0 -d 9 -p ack -e 40 -c 0 -i 7446 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.21486 -s 10 -d 7 -p ack -e 40 -c 0 -i 7450 -a 0 -x {10.0 9.0 3720 ------- null} + -t 4.21486 -s 7 -d 0 -p ack -e 40 -c 0 -i 7450 -a 0 -x {10.0 9.0 3720 ------- null} h -t 4.21486 -s 7 -d 8 -p ack -e 40 -c 0 -i 7450 -a 0 -x {10.0 9.0 3720 ------- null} r -t 4.21501 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7435 -a 0 -x {9.0 10.0 3722 ------- null} + -t 4.21501 -s 10 -d 7 -p ack -e 40 -c 0 -i 7454 -a 0 -x {10.0 9.0 3722 ------- null} - -t 4.21501 -s 10 -d 7 -p ack -e 40 -c 0 -i 7454 -a 0 -x {10.0 9.0 3722 ------- null} h -t 4.21501 -s 10 -d 7 -p ack -e 40 -c 0 -i 7454 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.2151 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7449 -a 0 -x {9.0 10.0 3729 ------- null} + -t 4.2151 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7449 -a 0 -x {9.0 10.0 3729 ------- null} h -t 4.2151 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7449 -a 0 -x {9.0 10.0 3729 ------- null} r -t 4.21557 -s 0 -d 9 -p ack -e 40 -c 0 -i 7444 -a 0 -x {10.0 9.0 3717 ------- null} + -t 4.21557 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7455 -a 0 -x {9.0 10.0 3732 ------- null} - -t 4.21557 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7455 -a 0 -x {9.0 10.0 3732 ------- null} h -t 4.21557 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7455 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.21566 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7441 -a 0 -x {9.0 10.0 3725 ------- null} - -t 4.21566 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7441 -a 0 -x {9.0 10.0 3725 ------- null} h -t 4.21566 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7441 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.2159 -s 0 -d 9 -p ack -e 40 -c 0 -i 7448 -a 0 -x {10.0 9.0 3719 ------- null} - -t 4.2159 -s 0 -d 9 -p ack -e 40 -c 0 -i 7448 -a 0 -x {10.0 9.0 3719 ------- null} h -t 4.2159 -s 0 -d 9 -p ack -e 40 -c 0 -i 7448 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.21595 -s 10 -d 7 -p ack -e 40 -c 0 -i 7452 -a 0 -x {10.0 9.0 3721 ------- null} + -t 4.21595 -s 7 -d 0 -p ack -e 40 -c 0 -i 7452 -a 0 -x {10.0 9.0 3721 ------- null} h -t 4.21595 -s 7 -d 8 -p ack -e 40 -c 0 -i 7452 -a 0 -x {10.0 9.0 3721 ------- null} r -t 4.21608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7451 -a 0 -x {9.0 10.0 3730 ------- null} + -t 4.21608 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7451 -a 0 -x {9.0 10.0 3730 ------- null} h -t 4.21608 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7451 -a 0 -x {9.0 10.0 3730 ------- null} r -t 4.2161 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7437 -a 0 -x {9.0 10.0 3723 ------- null} + -t 4.2161 -s 10 -d 7 -p ack -e 40 -c 0 -i 7456 -a 0 -x {10.0 9.0 3723 ------- null} - -t 4.2161 -s 10 -d 7 -p ack -e 40 -c 0 -i 7456 -a 0 -x {10.0 9.0 3723 ------- null} h -t 4.2161 -s 10 -d 7 -p ack -e 40 -c 0 -i 7456 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.21669 -s 0 -d 9 -p ack -e 40 -c 0 -i 7446 -a 0 -x {10.0 9.0 3718 ------- null} + -t 4.21669 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7457 -a 0 -x {9.0 10.0 3733 ------- null} - -t 4.21669 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7457 -a 0 -x {9.0 10.0 3733 ------- null} h -t 4.21669 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7457 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.21675 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7443 -a 0 -x {9.0 10.0 3726 ------- null} - -t 4.21675 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7443 -a 0 -x {9.0 10.0 3726 ------- null} h -t 4.21675 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7443 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.21686 -s 0 -d 9 -p ack -e 40 -c 0 -i 7450 -a 0 -x {10.0 9.0 3720 ------- null} - -t 4.21686 -s 0 -d 9 -p ack -e 40 -c 0 -i 7450 -a 0 -x {10.0 9.0 3720 ------- null} h -t 4.21686 -s 0 -d 9 -p ack -e 40 -c 0 -i 7450 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.21704 -s 10 -d 7 -p ack -e 40 -c 0 -i 7454 -a 0 -x {10.0 9.0 3722 ------- null} + -t 4.21704 -s 7 -d 0 -p ack -e 40 -c 0 -i 7454 -a 0 -x {10.0 9.0 3722 ------- null} h -t 4.21704 -s 7 -d 8 -p ack -e 40 -c 0 -i 7454 -a 0 -x {10.0 9.0 3722 ------- null} r -t 4.21712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7453 -a 0 -x {9.0 10.0 3731 ------- null} + -t 4.21712 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7453 -a 0 -x {9.0 10.0 3731 ------- null} h -t 4.21712 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7453 -a 0 -x {9.0 10.0 3731 ------- null} r -t 4.21718 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7439 -a 0 -x {9.0 10.0 3724 ------- null} + -t 4.21718 -s 10 -d 7 -p ack -e 40 -c 0 -i 7458 -a 0 -x {10.0 9.0 3724 ------- null} - -t 4.21718 -s 10 -d 7 -p ack -e 40 -c 0 -i 7458 -a 0 -x {10.0 9.0 3724 ------- null} h -t 4.21718 -s 10 -d 7 -p ack -e 40 -c 0 -i 7458 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.21784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7445 -a 0 -x {9.0 10.0 3727 ------- null} - -t 4.21784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7445 -a 0 -x {9.0 10.0 3727 ------- null} h -t 4.21784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7445 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.21794 -s 0 -d 9 -p ack -e 40 -c 0 -i 7448 -a 0 -x {10.0 9.0 3719 ------- null} + -t 4.21794 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7459 -a 0 -x {9.0 10.0 3734 ------- null} - -t 4.21794 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7459 -a 0 -x {9.0 10.0 3734 ------- null} h -t 4.21794 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7459 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.21795 -s 0 -d 9 -p ack -e 40 -c 0 -i 7452 -a 0 -x {10.0 9.0 3721 ------- null} - -t 4.21795 -s 0 -d 9 -p ack -e 40 -c 0 -i 7452 -a 0 -x {10.0 9.0 3721 ------- null} h -t 4.21795 -s 0 -d 9 -p ack -e 40 -c 0 -i 7452 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.21813 -s 10 -d 7 -p ack -e 40 -c 0 -i 7456 -a 0 -x {10.0 9.0 3723 ------- null} + -t 4.21813 -s 7 -d 0 -p ack -e 40 -c 0 -i 7456 -a 0 -x {10.0 9.0 3723 ------- null} h -t 4.21813 -s 7 -d 8 -p ack -e 40 -c 0 -i 7456 -a 0 -x {10.0 9.0 3723 ------- null} r -t 4.21837 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7455 -a 0 -x {9.0 10.0 3732 ------- null} + -t 4.21837 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7455 -a 0 -x {9.0 10.0 3732 ------- null} h -t 4.21837 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7455 -a 0 -x {9.0 10.0 3732 ------- null} r -t 4.21846 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7441 -a 0 -x {9.0 10.0 3725 ------- null} + -t 4.21846 -s 10 -d 7 -p ack -e 40 -c 0 -i 7460 -a 0 -x {10.0 9.0 3725 ------- null} - -t 4.21846 -s 10 -d 7 -p ack -e 40 -c 0 -i 7460 -a 0 -x {10.0 9.0 3725 ------- null} h -t 4.21846 -s 10 -d 7 -p ack -e 40 -c 0 -i 7460 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.2189 -s 0 -d 9 -p ack -e 40 -c 0 -i 7450 -a 0 -x {10.0 9.0 3720 ------- null} + -t 4.2189 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7461 -a 0 -x {9.0 10.0 3735 ------- null} - -t 4.2189 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7461 -a 0 -x {9.0 10.0 3735 ------- null} h -t 4.2189 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7461 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.21893 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7447 -a 0 -x {9.0 10.0 3728 ------- null} - -t 4.21893 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7447 -a 0 -x {9.0 10.0 3728 ------- null} h -t 4.21893 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7447 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.21904 -s 0 -d 9 -p ack -e 40 -c 0 -i 7454 -a 0 -x {10.0 9.0 3722 ------- null} - -t 4.21904 -s 0 -d 9 -p ack -e 40 -c 0 -i 7454 -a 0 -x {10.0 9.0 3722 ------- null} h -t 4.21904 -s 0 -d 9 -p ack -e 40 -c 0 -i 7454 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.21922 -s 10 -d 7 -p ack -e 40 -c 0 -i 7458 -a 0 -x {10.0 9.0 3724 ------- null} + -t 4.21922 -s 7 -d 0 -p ack -e 40 -c 0 -i 7458 -a 0 -x {10.0 9.0 3724 ------- null} h -t 4.21922 -s 7 -d 8 -p ack -e 40 -c 0 -i 7458 -a 0 -x {10.0 9.0 3724 ------- null} r -t 4.21949 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7457 -a 0 -x {9.0 10.0 3733 ------- null} + -t 4.21949 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7457 -a 0 -x {9.0 10.0 3733 ------- null} h -t 4.21949 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7457 -a 0 -x {9.0 10.0 3733 ------- null} r -t 4.21955 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7443 -a 0 -x {9.0 10.0 3726 ------- null} + -t 4.21955 -s 10 -d 7 -p ack -e 40 -c 0 -i 7462 -a 0 -x {10.0 9.0 3726 ------- null} - -t 4.21955 -s 10 -d 7 -p ack -e 40 -c 0 -i 7462 -a 0 -x {10.0 9.0 3726 ------- null} h -t 4.21955 -s 10 -d 7 -p ack -e 40 -c 0 -i 7462 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.21998 -s 0 -d 9 -p ack -e 40 -c 0 -i 7452 -a 0 -x {10.0 9.0 3721 ------- null} + -t 4.21998 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7463 -a 0 -x {9.0 10.0 3736 ------- null} - -t 4.21998 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7463 -a 0 -x {9.0 10.0 3736 ------- null} h -t 4.21998 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7463 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.22002 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7449 -a 0 -x {9.0 10.0 3729 ------- null} - -t 4.22002 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7449 -a 0 -x {9.0 10.0 3729 ------- null} h -t 4.22002 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7449 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.22026 -s 0 -d 9 -p ack -e 40 -c 0 -i 7456 -a 0 -x {10.0 9.0 3723 ------- null} - -t 4.22026 -s 0 -d 9 -p ack -e 40 -c 0 -i 7456 -a 0 -x {10.0 9.0 3723 ------- null} h -t 4.22026 -s 0 -d 9 -p ack -e 40 -c 0 -i 7456 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.2205 -s 10 -d 7 -p ack -e 40 -c 0 -i 7460 -a 0 -x {10.0 9.0 3725 ------- null} + -t 4.2205 -s 7 -d 0 -p ack -e 40 -c 0 -i 7460 -a 0 -x {10.0 9.0 3725 ------- null} h -t 4.2205 -s 7 -d 8 -p ack -e 40 -c 0 -i 7460 -a 0 -x {10.0 9.0 3725 ------- null} r -t 4.22064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7445 -a 0 -x {9.0 10.0 3727 ------- null} + -t 4.22064 -s 10 -d 7 -p ack -e 40 -c 0 -i 7464 -a 0 -x {10.0 9.0 3727 ------- null} - -t 4.22064 -s 10 -d 7 -p ack -e 40 -c 0 -i 7464 -a 0 -x {10.0 9.0 3727 ------- null} h -t 4.22064 -s 10 -d 7 -p ack -e 40 -c 0 -i 7464 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.22074 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7459 -a 0 -x {9.0 10.0 3734 ------- null} + -t 4.22074 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7459 -a 0 -x {9.0 10.0 3734 ------- null} h -t 4.22074 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7459 -a 0 -x {9.0 10.0 3734 ------- null} r -t 4.22107 -s 0 -d 9 -p ack -e 40 -c 0 -i 7454 -a 0 -x {10.0 9.0 3722 ------- null} + -t 4.22107 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7465 -a 0 -x {9.0 10.0 3737 ------- null} - -t 4.22107 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7465 -a 0 -x {9.0 10.0 3737 ------- null} h -t 4.22107 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7465 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.2211 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7451 -a 0 -x {9.0 10.0 3730 ------- null} - -t 4.2211 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7451 -a 0 -x {9.0 10.0 3730 ------- null} h -t 4.2211 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7451 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.22138 -s 0 -d 9 -p ack -e 40 -c 0 -i 7458 -a 0 -x {10.0 9.0 3724 ------- null} - -t 4.22138 -s 0 -d 9 -p ack -e 40 -c 0 -i 7458 -a 0 -x {10.0 9.0 3724 ------- null} h -t 4.22138 -s 0 -d 9 -p ack -e 40 -c 0 -i 7458 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.22158 -s 10 -d 7 -p ack -e 40 -c 0 -i 7462 -a 0 -x {10.0 9.0 3726 ------- null} + -t 4.22158 -s 7 -d 0 -p ack -e 40 -c 0 -i 7462 -a 0 -x {10.0 9.0 3726 ------- null} h -t 4.22158 -s 7 -d 8 -p ack -e 40 -c 0 -i 7462 -a 0 -x {10.0 9.0 3726 ------- null} r -t 4.2217 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7461 -a 0 -x {9.0 10.0 3735 ------- null} + -t 4.2217 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7461 -a 0 -x {9.0 10.0 3735 ------- null} h -t 4.2217 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7461 -a 0 -x {9.0 10.0 3735 ------- null} r -t 4.22173 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7447 -a 0 -x {9.0 10.0 3728 ------- null} + -t 4.22173 -s 10 -d 7 -p ack -e 40 -c 0 -i 7466 -a 0 -x {10.0 9.0 3728 ------- null} - -t 4.22173 -s 10 -d 7 -p ack -e 40 -c 0 -i 7466 -a 0 -x {10.0 9.0 3728 ------- null} h -t 4.22173 -s 10 -d 7 -p ack -e 40 -c 0 -i 7466 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.22229 -s 0 -d 9 -p ack -e 40 -c 0 -i 7456 -a 0 -x {10.0 9.0 3723 ------- null} + -t 4.22229 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7467 -a 0 -x {9.0 10.0 3738 ------- null} - -t 4.22229 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7467 -a 0 -x {9.0 10.0 3738 ------- null} h -t 4.22229 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7467 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.22242 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7453 -a 0 -x {9.0 10.0 3731 ------- null} - -t 4.22242 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7453 -a 0 -x {9.0 10.0 3731 ------- null} h -t 4.22242 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7453 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.22258 -s 0 -d 9 -p ack -e 40 -c 0 -i 7460 -a 0 -x {10.0 9.0 3725 ------- null} - -t 4.22258 -s 0 -d 9 -p ack -e 40 -c 0 -i 7460 -a 0 -x {10.0 9.0 3725 ------- null} h -t 4.22258 -s 0 -d 9 -p ack -e 40 -c 0 -i 7460 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.22267 -s 10 -d 7 -p ack -e 40 -c 0 -i 7464 -a 0 -x {10.0 9.0 3727 ------- null} + -t 4.22267 -s 7 -d 0 -p ack -e 40 -c 0 -i 7464 -a 0 -x {10.0 9.0 3727 ------- null} h -t 4.22267 -s 7 -d 8 -p ack -e 40 -c 0 -i 7464 -a 0 -x {10.0 9.0 3727 ------- null} r -t 4.22278 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7463 -a 0 -x {9.0 10.0 3736 ------- null} + -t 4.22278 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7463 -a 0 -x {9.0 10.0 3736 ------- null} h -t 4.22278 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7463 -a 0 -x {9.0 10.0 3736 ------- null} r -t 4.22282 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7449 -a 0 -x {9.0 10.0 3729 ------- null} + -t 4.22282 -s 10 -d 7 -p ack -e 40 -c 0 -i 7468 -a 0 -x {10.0 9.0 3729 ------- null} - -t 4.22282 -s 10 -d 7 -p ack -e 40 -c 0 -i 7468 -a 0 -x {10.0 9.0 3729 ------- null} h -t 4.22282 -s 10 -d 7 -p ack -e 40 -c 0 -i 7468 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.22341 -s 0 -d 9 -p ack -e 40 -c 0 -i 7458 -a 0 -x {10.0 9.0 3724 ------- null} + -t 4.22341 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7469 -a 0 -x {9.0 10.0 3739 ------- null} - -t 4.22341 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7469 -a 0 -x {9.0 10.0 3739 ------- null} h -t 4.22341 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7469 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.2235 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7455 -a 0 -x {9.0 10.0 3732 ------- null} - -t 4.2235 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7455 -a 0 -x {9.0 10.0 3732 ------- null} h -t 4.2235 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7455 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.22373 -s 0 -d 9 -p ack -e 40 -c 0 -i 7462 -a 0 -x {10.0 9.0 3726 ------- null} - -t 4.22373 -s 0 -d 9 -p ack -e 40 -c 0 -i 7462 -a 0 -x {10.0 9.0 3726 ------- null} h -t 4.22373 -s 0 -d 9 -p ack -e 40 -c 0 -i 7462 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.22376 -s 10 -d 7 -p ack -e 40 -c 0 -i 7466 -a 0 -x {10.0 9.0 3728 ------- null} + -t 4.22376 -s 7 -d 0 -p ack -e 40 -c 0 -i 7466 -a 0 -x {10.0 9.0 3728 ------- null} h -t 4.22376 -s 7 -d 8 -p ack -e 40 -c 0 -i 7466 -a 0 -x {10.0 9.0 3728 ------- null} r -t 4.22387 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7465 -a 0 -x {9.0 10.0 3737 ------- null} + -t 4.22387 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7465 -a 0 -x {9.0 10.0 3737 ------- null} h -t 4.22387 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7465 -a 0 -x {9.0 10.0 3737 ------- null} r -t 4.2239 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7451 -a 0 -x {9.0 10.0 3730 ------- null} + -t 4.2239 -s 10 -d 7 -p ack -e 40 -c 0 -i 7470 -a 0 -x {10.0 9.0 3730 ------- null} - -t 4.2239 -s 10 -d 7 -p ack -e 40 -c 0 -i 7470 -a 0 -x {10.0 9.0 3730 ------- null} h -t 4.2239 -s 10 -d 7 -p ack -e 40 -c 0 -i 7470 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.22459 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7457 -a 0 -x {9.0 10.0 3733 ------- null} - -t 4.22459 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7457 -a 0 -x {9.0 10.0 3733 ------- null} h -t 4.22459 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7457 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.22461 -s 0 -d 9 -p ack -e 40 -c 0 -i 7460 -a 0 -x {10.0 9.0 3725 ------- null} + -t 4.22461 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7471 -a 0 -x {9.0 10.0 3740 ------- null} - -t 4.22461 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7471 -a 0 -x {9.0 10.0 3740 ------- null} h -t 4.22461 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7471 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.2247 -s 0 -d 9 -p ack -e 40 -c 0 -i 7464 -a 0 -x {10.0 9.0 3727 ------- null} - -t 4.2247 -s 0 -d 9 -p ack -e 40 -c 0 -i 7464 -a 0 -x {10.0 9.0 3727 ------- null} h -t 4.2247 -s 0 -d 9 -p ack -e 40 -c 0 -i 7464 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.22485 -s 10 -d 7 -p ack -e 40 -c 0 -i 7468 -a 0 -x {10.0 9.0 3729 ------- null} + -t 4.22485 -s 7 -d 0 -p ack -e 40 -c 0 -i 7468 -a 0 -x {10.0 9.0 3729 ------- null} h -t 4.22485 -s 7 -d 8 -p ack -e 40 -c 0 -i 7468 -a 0 -x {10.0 9.0 3729 ------- null} r -t 4.22509 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7467 -a 0 -x {9.0 10.0 3738 ------- null} + -t 4.22509 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7467 -a 0 -x {9.0 10.0 3738 ------- null} h -t 4.22509 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7467 -a 0 -x {9.0 10.0 3738 ------- null} r -t 4.22522 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7453 -a 0 -x {9.0 10.0 3731 ------- null} + -t 4.22522 -s 10 -d 7 -p ack -e 40 -c 0 -i 7472 -a 0 -x {10.0 9.0 3731 ------- null} - -t 4.22522 -s 10 -d 7 -p ack -e 40 -c 0 -i 7472 -a 0 -x {10.0 9.0 3731 ------- null} h -t 4.22522 -s 10 -d 7 -p ack -e 40 -c 0 -i 7472 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.22568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7459 -a 0 -x {9.0 10.0 3734 ------- null} - -t 4.22568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7459 -a 0 -x {9.0 10.0 3734 ------- null} h -t 4.22568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7459 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.22576 -s 0 -d 9 -p ack -e 40 -c 0 -i 7462 -a 0 -x {10.0 9.0 3726 ------- null} + -t 4.22576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7473 -a 0 -x {9.0 10.0 3741 ------- null} - -t 4.22576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7473 -a 0 -x {9.0 10.0 3741 ------- null} h -t 4.22576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7473 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.22594 -s 10 -d 7 -p ack -e 40 -c 0 -i 7470 -a 0 -x {10.0 9.0 3730 ------- null} + -t 4.22594 -s 7 -d 0 -p ack -e 40 -c 0 -i 7470 -a 0 -x {10.0 9.0 3730 ------- null} h -t 4.22594 -s 7 -d 8 -p ack -e 40 -c 0 -i 7470 -a 0 -x {10.0 9.0 3730 ------- null} + -t 4.22598 -s 0 -d 9 -p ack -e 40 -c 0 -i 7466 -a 0 -x {10.0 9.0 3728 ------- null} - -t 4.22598 -s 0 -d 9 -p ack -e 40 -c 0 -i 7466 -a 0 -x {10.0 9.0 3728 ------- null} h -t 4.22598 -s 0 -d 9 -p ack -e 40 -c 0 -i 7466 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.22621 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7469 -a 0 -x {9.0 10.0 3739 ------- null} + -t 4.22621 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7469 -a 0 -x {9.0 10.0 3739 ------- null} h -t 4.22621 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7469 -a 0 -x {9.0 10.0 3739 ------- null} r -t 4.2263 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7455 -a 0 -x {9.0 10.0 3732 ------- null} + -t 4.2263 -s 10 -d 7 -p ack -e 40 -c 0 -i 7474 -a 0 -x {10.0 9.0 3732 ------- null} - -t 4.2263 -s 10 -d 7 -p ack -e 40 -c 0 -i 7474 -a 0 -x {10.0 9.0 3732 ------- null} h -t 4.2263 -s 10 -d 7 -p ack -e 40 -c 0 -i 7474 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.22674 -s 0 -d 9 -p ack -e 40 -c 0 -i 7464 -a 0 -x {10.0 9.0 3727 ------- null} + -t 4.22674 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7475 -a 0 -x {9.0 10.0 3742 ------- null} - -t 4.22674 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7475 -a 0 -x {9.0 10.0 3742 ------- null} h -t 4.22674 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7475 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.22693 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7461 -a 0 -x {9.0 10.0 3735 ------- null} - -t 4.22693 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7461 -a 0 -x {9.0 10.0 3735 ------- null} h -t 4.22693 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7461 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.22718 -s 0 -d 9 -p ack -e 40 -c 0 -i 7468 -a 0 -x {10.0 9.0 3729 ------- null} - -t 4.22718 -s 0 -d 9 -p ack -e 40 -c 0 -i 7468 -a 0 -x {10.0 9.0 3729 ------- null} h -t 4.22718 -s 0 -d 9 -p ack -e 40 -c 0 -i 7468 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.22725 -s 10 -d 7 -p ack -e 40 -c 0 -i 7472 -a 0 -x {10.0 9.0 3731 ------- null} + -t 4.22725 -s 7 -d 0 -p ack -e 40 -c 0 -i 7472 -a 0 -x {10.0 9.0 3731 ------- null} h -t 4.22725 -s 7 -d 8 -p ack -e 40 -c 0 -i 7472 -a 0 -x {10.0 9.0 3731 ------- null} r -t 4.22739 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7457 -a 0 -x {9.0 10.0 3733 ------- null} + -t 4.22739 -s 10 -d 7 -p ack -e 40 -c 0 -i 7476 -a 0 -x {10.0 9.0 3733 ------- null} - -t 4.22739 -s 10 -d 7 -p ack -e 40 -c 0 -i 7476 -a 0 -x {10.0 9.0 3733 ------- null} h -t 4.22739 -s 10 -d 7 -p ack -e 40 -c 0 -i 7476 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.22741 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7471 -a 0 -x {9.0 10.0 3740 ------- null} + -t 4.22741 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7471 -a 0 -x {9.0 10.0 3740 ------- null} h -t 4.22741 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7471 -a 0 -x {9.0 10.0 3740 ------- null} r -t 4.22802 -s 0 -d 9 -p ack -e 40 -c 0 -i 7466 -a 0 -x {10.0 9.0 3728 ------- null} + -t 4.22802 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7477 -a 0 -x {9.0 10.0 3743 ------- null} - -t 4.22802 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7477 -a 0 -x {9.0 10.0 3743 ------- null} h -t 4.22802 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7477 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.22802 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7463 -a 0 -x {9.0 10.0 3736 ------- null} - -t 4.22802 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7463 -a 0 -x {9.0 10.0 3736 ------- null} h -t 4.22802 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7463 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.2283 -s 0 -d 9 -p ack -e 40 -c 0 -i 7470 -a 0 -x {10.0 9.0 3730 ------- null} - -t 4.2283 -s 0 -d 9 -p ack -e 40 -c 0 -i 7470 -a 0 -x {10.0 9.0 3730 ------- null} h -t 4.2283 -s 0 -d 9 -p ack -e 40 -c 0 -i 7470 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.22834 -s 10 -d 7 -p ack -e 40 -c 0 -i 7474 -a 0 -x {10.0 9.0 3732 ------- null} + -t 4.22834 -s 7 -d 0 -p ack -e 40 -c 0 -i 7474 -a 0 -x {10.0 9.0 3732 ------- null} h -t 4.22834 -s 7 -d 8 -p ack -e 40 -c 0 -i 7474 -a 0 -x {10.0 9.0 3732 ------- null} r -t 4.22848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7459 -a 0 -x {9.0 10.0 3734 ------- null} + -t 4.22848 -s 10 -d 7 -p ack -e 40 -c 0 -i 7478 -a 0 -x {10.0 9.0 3734 ------- null} - -t 4.22848 -s 10 -d 7 -p ack -e 40 -c 0 -i 7478 -a 0 -x {10.0 9.0 3734 ------- null} h -t 4.22848 -s 10 -d 7 -p ack -e 40 -c 0 -i 7478 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.22856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7473 -a 0 -x {9.0 10.0 3741 ------- null} + -t 4.22856 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7473 -a 0 -x {9.0 10.0 3741 ------- null} h -t 4.22856 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7473 -a 0 -x {9.0 10.0 3741 ------- null} r -t 4.22922 -s 0 -d 9 -p ack -e 40 -c 0 -i 7468 -a 0 -x {10.0 9.0 3729 ------- null} + -t 4.22922 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7479 -a 0 -x {9.0 10.0 3744 ------- null} - -t 4.22922 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7479 -a 0 -x {9.0 10.0 3744 ------- null} h -t 4.22922 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7479 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.22938 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7465 -a 0 -x {9.0 10.0 3737 ------- null} - -t 4.22938 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7465 -a 0 -x {9.0 10.0 3737 ------- null} h -t 4.22938 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7465 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.22942 -s 10 -d 7 -p ack -e 40 -c 0 -i 7476 -a 0 -x {10.0 9.0 3733 ------- null} + -t 4.22942 -s 7 -d 0 -p ack -e 40 -c 0 -i 7476 -a 0 -x {10.0 9.0 3733 ------- null} h -t 4.22942 -s 7 -d 8 -p ack -e 40 -c 0 -i 7476 -a 0 -x {10.0 9.0 3733 ------- null} + -t 4.22946 -s 0 -d 9 -p ack -e 40 -c 0 -i 7472 -a 0 -x {10.0 9.0 3731 ------- null} - -t 4.22946 -s 0 -d 9 -p ack -e 40 -c 0 -i 7472 -a 0 -x {10.0 9.0 3731 ------- null} h -t 4.22946 -s 0 -d 9 -p ack -e 40 -c 0 -i 7472 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.22954 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7475 -a 0 -x {9.0 10.0 3742 ------- null} + -t 4.22954 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7475 -a 0 -x {9.0 10.0 3742 ------- null} h -t 4.22954 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7475 -a 0 -x {9.0 10.0 3742 ------- null} r -t 4.22973 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7461 -a 0 -x {9.0 10.0 3735 ------- null} + -t 4.22973 -s 10 -d 7 -p ack -e 40 -c 0 -i 7480 -a 0 -x {10.0 9.0 3735 ------- null} - -t 4.22973 -s 10 -d 7 -p ack -e 40 -c 0 -i 7480 -a 0 -x {10.0 9.0 3735 ------- null} h -t 4.22973 -s 10 -d 7 -p ack -e 40 -c 0 -i 7480 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.23034 -s 0 -d 9 -p ack -e 40 -c 0 -i 7470 -a 0 -x {10.0 9.0 3730 ------- null} + -t 4.23034 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7481 -a 0 -x {9.0 10.0 3745 ------- null} - -t 4.23034 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7481 -a 0 -x {9.0 10.0 3745 ------- null} h -t 4.23034 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7481 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.23046 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7467 -a 0 -x {9.0 10.0 3738 ------- null} - -t 4.23046 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7467 -a 0 -x {9.0 10.0 3738 ------- null} h -t 4.23046 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7467 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.23051 -s 10 -d 7 -p ack -e 40 -c 0 -i 7478 -a 0 -x {10.0 9.0 3734 ------- null} + -t 4.23051 -s 7 -d 0 -p ack -e 40 -c 0 -i 7478 -a 0 -x {10.0 9.0 3734 ------- null} h -t 4.23051 -s 7 -d 8 -p ack -e 40 -c 0 -i 7478 -a 0 -x {10.0 9.0 3734 ------- null} + -t 4.23075 -s 0 -d 9 -p ack -e 40 -c 0 -i 7474 -a 0 -x {10.0 9.0 3732 ------- null} - -t 4.23075 -s 0 -d 9 -p ack -e 40 -c 0 -i 7474 -a 0 -x {10.0 9.0 3732 ------- null} h -t 4.23075 -s 0 -d 9 -p ack -e 40 -c 0 -i 7474 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.23082 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7477 -a 0 -x {9.0 10.0 3743 ------- null} + -t 4.23082 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7477 -a 0 -x {9.0 10.0 3743 ------- null} h -t 4.23082 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7477 -a 0 -x {9.0 10.0 3743 ------- null} r -t 4.23082 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7463 -a 0 -x {9.0 10.0 3736 ------- null} + -t 4.23082 -s 10 -d 7 -p ack -e 40 -c 0 -i 7482 -a 0 -x {10.0 9.0 3736 ------- null} - -t 4.23082 -s 10 -d 7 -p ack -e 40 -c 0 -i 7482 -a 0 -x {10.0 9.0 3736 ------- null} h -t 4.23082 -s 10 -d 7 -p ack -e 40 -c 0 -i 7482 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.23149 -s 0 -d 9 -p ack -e 40 -c 0 -i 7472 -a 0 -x {10.0 9.0 3731 ------- null} + -t 4.23149 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7483 -a 0 -x {9.0 10.0 3746 ------- null} - -t 4.23149 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7483 -a 0 -x {9.0 10.0 3746 ------- null} h -t 4.23149 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7483 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.23176 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7469 -a 0 -x {9.0 10.0 3739 ------- null} - -t 4.23176 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7469 -a 0 -x {9.0 10.0 3739 ------- null} h -t 4.23176 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7469 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.23176 -s 10 -d 7 -p ack -e 40 -c 0 -i 7480 -a 0 -x {10.0 9.0 3735 ------- null} + -t 4.23176 -s 7 -d 0 -p ack -e 40 -c 0 -i 7480 -a 0 -x {10.0 9.0 3735 ------- null} h -t 4.23176 -s 7 -d 8 -p ack -e 40 -c 0 -i 7480 -a 0 -x {10.0 9.0 3735 ------- null} + -t 4.23187 -s 0 -d 9 -p ack -e 40 -c 0 -i 7476 -a 0 -x {10.0 9.0 3733 ------- null} - -t 4.23187 -s 0 -d 9 -p ack -e 40 -c 0 -i 7476 -a 0 -x {10.0 9.0 3733 ------- null} h -t 4.23187 -s 0 -d 9 -p ack -e 40 -c 0 -i 7476 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.23202 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7479 -a 0 -x {9.0 10.0 3744 ------- null} + -t 4.23202 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7479 -a 0 -x {9.0 10.0 3744 ------- null} h -t 4.23202 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7479 -a 0 -x {9.0 10.0 3744 ------- null} r -t 4.23218 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7465 -a 0 -x {9.0 10.0 3737 ------- null} + -t 4.23218 -s 10 -d 7 -p ack -e 40 -c 0 -i 7484 -a 0 -x {10.0 9.0 3737 ------- null} - -t 4.23218 -s 10 -d 7 -p ack -e 40 -c 0 -i 7484 -a 0 -x {10.0 9.0 3737 ------- null} h -t 4.23218 -s 10 -d 7 -p ack -e 40 -c 0 -i 7484 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.23278 -s 0 -d 9 -p ack -e 40 -c 0 -i 7474 -a 0 -x {10.0 9.0 3732 ------- null} + -t 4.23278 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7485 -a 0 -x {9.0 10.0 3747 ------- null} - -t 4.23278 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7485 -a 0 -x {9.0 10.0 3747 ------- null} h -t 4.23278 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7485 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.23285 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7471 -a 0 -x {9.0 10.0 3740 ------- null} - -t 4.23285 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7471 -a 0 -x {9.0 10.0 3740 ------- null} h -t 4.23285 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7471 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.23285 -s 10 -d 7 -p ack -e 40 -c 0 -i 7482 -a 0 -x {10.0 9.0 3736 ------- null} + -t 4.23285 -s 7 -d 0 -p ack -e 40 -c 0 -i 7482 -a 0 -x {10.0 9.0 3736 ------- null} h -t 4.23285 -s 7 -d 8 -p ack -e 40 -c 0 -i 7482 -a 0 -x {10.0 9.0 3736 ------- null} + -t 4.23306 -s 0 -d 9 -p ack -e 40 -c 0 -i 7478 -a 0 -x {10.0 9.0 3734 ------- null} - -t 4.23306 -s 0 -d 9 -p ack -e 40 -c 0 -i 7478 -a 0 -x {10.0 9.0 3734 ------- null} h -t 4.23306 -s 0 -d 9 -p ack -e 40 -c 0 -i 7478 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.23314 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7481 -a 0 -x {9.0 10.0 3745 ------- null} + -t 4.23314 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7481 -a 0 -x {9.0 10.0 3745 ------- null} h -t 4.23314 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7481 -a 0 -x {9.0 10.0 3745 ------- null} r -t 4.23326 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7467 -a 0 -x {9.0 10.0 3738 ------- null} + -t 4.23326 -s 10 -d 7 -p ack -e 40 -c 0 -i 7486 -a 0 -x {10.0 9.0 3738 ------- null} - -t 4.23326 -s 10 -d 7 -p ack -e 40 -c 0 -i 7486 -a 0 -x {10.0 9.0 3738 ------- null} h -t 4.23326 -s 10 -d 7 -p ack -e 40 -c 0 -i 7486 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.2339 -s 0 -d 9 -p ack -e 40 -c 0 -i 7476 -a 0 -x {10.0 9.0 3733 ------- null} + -t 4.2339 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7487 -a 0 -x {9.0 10.0 3748 ------- null} - -t 4.2339 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7487 -a 0 -x {9.0 10.0 3748 ------- null} h -t 4.2339 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7487 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.23394 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7473 -a 0 -x {9.0 10.0 3741 ------- null} - -t 4.23394 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7473 -a 0 -x {9.0 10.0 3741 ------- null} h -t 4.23394 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7473 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.23421 -s 10 -d 7 -p ack -e 40 -c 0 -i 7484 -a 0 -x {10.0 9.0 3737 ------- null} + -t 4.23421 -s 7 -d 0 -p ack -e 40 -c 0 -i 7484 -a 0 -x {10.0 9.0 3737 ------- null} h -t 4.23421 -s 7 -d 8 -p ack -e 40 -c 0 -i 7484 -a 0 -x {10.0 9.0 3737 ------- null} + -t 4.23424 -s 0 -d 9 -p ack -e 40 -c 0 -i 7480 -a 0 -x {10.0 9.0 3735 ------- null} - -t 4.23424 -s 0 -d 9 -p ack -e 40 -c 0 -i 7480 -a 0 -x {10.0 9.0 3735 ------- null} h -t 4.23424 -s 0 -d 9 -p ack -e 40 -c 0 -i 7480 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.23429 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7483 -a 0 -x {9.0 10.0 3746 ------- null} + -t 4.23429 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7483 -a 0 -x {9.0 10.0 3746 ------- null} h -t 4.23429 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7483 -a 0 -x {9.0 10.0 3746 ------- null} r -t 4.23456 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7469 -a 0 -x {9.0 10.0 3739 ------- null} + -t 4.23456 -s 10 -d 7 -p ack -e 40 -c 0 -i 7488 -a 0 -x {10.0 9.0 3739 ------- null} - -t 4.23456 -s 10 -d 7 -p ack -e 40 -c 0 -i 7488 -a 0 -x {10.0 9.0 3739 ------- null} h -t 4.23456 -s 10 -d 7 -p ack -e 40 -c 0 -i 7488 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.23509 -s 0 -d 9 -p ack -e 40 -c 0 -i 7478 -a 0 -x {10.0 9.0 3734 ------- null} + -t 4.23509 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7489 -a 0 -x {9.0 10.0 3749 ------- null} - -t 4.23509 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7489 -a 0 -x {9.0 10.0 3749 ------- null} h -t 4.23509 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7489 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.2352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7475 -a 0 -x {9.0 10.0 3742 ------- null} - -t 4.2352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7475 -a 0 -x {9.0 10.0 3742 ------- null} h -t 4.2352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7475 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.2353 -s 10 -d 7 -p ack -e 40 -c 0 -i 7486 -a 0 -x {10.0 9.0 3738 ------- null} + -t 4.2353 -s 7 -d 0 -p ack -e 40 -c 0 -i 7486 -a 0 -x {10.0 9.0 3738 ------- null} h -t 4.2353 -s 7 -d 8 -p ack -e 40 -c 0 -i 7486 -a 0 -x {10.0 9.0 3738 ------- null} + -t 4.23538 -s 0 -d 9 -p ack -e 40 -c 0 -i 7482 -a 0 -x {10.0 9.0 3736 ------- null} - -t 4.23538 -s 0 -d 9 -p ack -e 40 -c 0 -i 7482 -a 0 -x {10.0 9.0 3736 ------- null} h -t 4.23538 -s 0 -d 9 -p ack -e 40 -c 0 -i 7482 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.23558 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7485 -a 0 -x {9.0 10.0 3747 ------- null} + -t 4.23558 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7485 -a 0 -x {9.0 10.0 3747 ------- null} h -t 4.23558 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7485 -a 0 -x {9.0 10.0 3747 ------- null} r -t 4.23565 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7471 -a 0 -x {9.0 10.0 3740 ------- null} + -t 4.23565 -s 10 -d 7 -p ack -e 40 -c 0 -i 7490 -a 0 -x {10.0 9.0 3740 ------- null} - -t 4.23565 -s 10 -d 7 -p ack -e 40 -c 0 -i 7490 -a 0 -x {10.0 9.0 3740 ------- null} h -t 4.23565 -s 10 -d 7 -p ack -e 40 -c 0 -i 7490 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.23627 -s 0 -d 9 -p ack -e 40 -c 0 -i 7480 -a 0 -x {10.0 9.0 3735 ------- null} + -t 4.23627 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7491 -a 0 -x {9.0 10.0 3750 ------- null} - -t 4.23627 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7491 -a 0 -x {9.0 10.0 3750 ------- null} h -t 4.23627 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7491 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.23629 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7477 -a 0 -x {9.0 10.0 3743 ------- null} - -t 4.23629 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7477 -a 0 -x {9.0 10.0 3743 ------- null} h -t 4.23629 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7477 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.23645 -s 0 -d 9 -p ack -e 40 -c 0 -i 7484 -a 0 -x {10.0 9.0 3737 ------- null} - -t 4.23645 -s 0 -d 9 -p ack -e 40 -c 0 -i 7484 -a 0 -x {10.0 9.0 3737 ------- null} h -t 4.23645 -s 0 -d 9 -p ack -e 40 -c 0 -i 7484 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.23659 -s 10 -d 7 -p ack -e 40 -c 0 -i 7488 -a 0 -x {10.0 9.0 3739 ------- null} + -t 4.23659 -s 7 -d 0 -p ack -e 40 -c 0 -i 7488 -a 0 -x {10.0 9.0 3739 ------- null} h -t 4.23659 -s 7 -d 8 -p ack -e 40 -c 0 -i 7488 -a 0 -x {10.0 9.0 3739 ------- null} r -t 4.2367 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7487 -a 0 -x {9.0 10.0 3748 ------- null} + -t 4.2367 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7487 -a 0 -x {9.0 10.0 3748 ------- null} h -t 4.2367 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7487 -a 0 -x {9.0 10.0 3748 ------- null} r -t 4.23674 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7473 -a 0 -x {9.0 10.0 3741 ------- null} + -t 4.23674 -s 10 -d 7 -p ack -e 40 -c 0 -i 7492 -a 0 -x {10.0 9.0 3741 ------- null} - -t 4.23674 -s 10 -d 7 -p ack -e 40 -c 0 -i 7492 -a 0 -x {10.0 9.0 3741 ------- null} h -t 4.23674 -s 10 -d 7 -p ack -e 40 -c 0 -i 7492 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.23738 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7479 -a 0 -x {9.0 10.0 3744 ------- null} - -t 4.23738 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7479 -a 0 -x {9.0 10.0 3744 ------- null} h -t 4.23738 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7479 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.23741 -s 0 -d 9 -p ack -e 40 -c 0 -i 7482 -a 0 -x {10.0 9.0 3736 ------- null} + -t 4.23741 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7493 -a 0 -x {9.0 10.0 3751 ------- null} - -t 4.23741 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7493 -a 0 -x {9.0 10.0 3751 ------- null} h -t 4.23741 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7493 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.23766 -s 0 -d 9 -p ack -e 40 -c 0 -i 7486 -a 0 -x {10.0 9.0 3738 ------- null} - -t 4.23766 -s 0 -d 9 -p ack -e 40 -c 0 -i 7486 -a 0 -x {10.0 9.0 3738 ------- null} h -t 4.23766 -s 0 -d 9 -p ack -e 40 -c 0 -i 7486 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.23768 -s 10 -d 7 -p ack -e 40 -c 0 -i 7490 -a 0 -x {10.0 9.0 3740 ------- null} + -t 4.23768 -s 7 -d 0 -p ack -e 40 -c 0 -i 7490 -a 0 -x {10.0 9.0 3740 ------- null} h -t 4.23768 -s 7 -d 8 -p ack -e 40 -c 0 -i 7490 -a 0 -x {10.0 9.0 3740 ------- null} r -t 4.23789 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7489 -a 0 -x {9.0 10.0 3749 ------- null} + -t 4.23789 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7489 -a 0 -x {9.0 10.0 3749 ------- null} h -t 4.23789 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7489 -a 0 -x {9.0 10.0 3749 ------- null} r -t 4.238 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7475 -a 0 -x {9.0 10.0 3742 ------- null} + -t 4.238 -s 10 -d 7 -p ack -e 40 -c 0 -i 7494 -a 0 -x {10.0 9.0 3742 ------- null} - -t 4.238 -s 10 -d 7 -p ack -e 40 -c 0 -i 7494 -a 0 -x {10.0 9.0 3742 ------- null} h -t 4.238 -s 10 -d 7 -p ack -e 40 -c 0 -i 7494 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.23848 -s 0 -d 9 -p ack -e 40 -c 0 -i 7484 -a 0 -x {10.0 9.0 3737 ------- null} + -t 4.23848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7495 -a 0 -x {9.0 10.0 3752 ------- null} - -t 4.23848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7495 -a 0 -x {9.0 10.0 3752 ------- null} h -t 4.23848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7495 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.23861 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7481 -a 0 -x {9.0 10.0 3745 ------- null} - -t 4.23861 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7481 -a 0 -x {9.0 10.0 3745 ------- null} h -t 4.23861 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7481 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.23877 -s 0 -d 9 -p ack -e 40 -c 0 -i 7488 -a 0 -x {10.0 9.0 3739 ------- null} - -t 4.23877 -s 0 -d 9 -p ack -e 40 -c 0 -i 7488 -a 0 -x {10.0 9.0 3739 ------- null} h -t 4.23877 -s 0 -d 9 -p ack -e 40 -c 0 -i 7488 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.23877 -s 10 -d 7 -p ack -e 40 -c 0 -i 7492 -a 0 -x {10.0 9.0 3741 ------- null} + -t 4.23877 -s 7 -d 0 -p ack -e 40 -c 0 -i 7492 -a 0 -x {10.0 9.0 3741 ------- null} h -t 4.23877 -s 7 -d 8 -p ack -e 40 -c 0 -i 7492 -a 0 -x {10.0 9.0 3741 ------- null} r -t 4.23907 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7491 -a 0 -x {9.0 10.0 3750 ------- null} + -t 4.23907 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7491 -a 0 -x {9.0 10.0 3750 ------- null} h -t 4.23907 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7491 -a 0 -x {9.0 10.0 3750 ------- null} r -t 4.23909 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7477 -a 0 -x {9.0 10.0 3743 ------- null} + -t 4.23909 -s 10 -d 7 -p ack -e 40 -c 0 -i 7496 -a 0 -x {10.0 9.0 3743 ------- null} - -t 4.23909 -s 10 -d 7 -p ack -e 40 -c 0 -i 7496 -a 0 -x {10.0 9.0 3743 ------- null} h -t 4.23909 -s 10 -d 7 -p ack -e 40 -c 0 -i 7496 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.2397 -s 0 -d 9 -p ack -e 40 -c 0 -i 7486 -a 0 -x {10.0 9.0 3738 ------- null} + -t 4.2397 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7497 -a 0 -x {9.0 10.0 3753 ------- null} - -t 4.2397 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7497 -a 0 -x {9.0 10.0 3753 ------- null} h -t 4.2397 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7497 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.2397 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7483 -a 0 -x {9.0 10.0 3746 ------- null} - -t 4.2397 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7483 -a 0 -x {9.0 10.0 3746 ------- null} h -t 4.2397 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7483 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.23976 -s 0 -d 9 -p ack -e 40 -c 0 -i 7490 -a 0 -x {10.0 9.0 3740 ------- null} - -t 4.23976 -s 0 -d 9 -p ack -e 40 -c 0 -i 7490 -a 0 -x {10.0 9.0 3740 ------- null} h -t 4.23976 -s 0 -d 9 -p ack -e 40 -c 0 -i 7490 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.24003 -s 10 -d 7 -p ack -e 40 -c 0 -i 7494 -a 0 -x {10.0 9.0 3742 ------- null} + -t 4.24003 -s 7 -d 0 -p ack -e 40 -c 0 -i 7494 -a 0 -x {10.0 9.0 3742 ------- null} h -t 4.24003 -s 7 -d 8 -p ack -e 40 -c 0 -i 7494 -a 0 -x {10.0 9.0 3742 ------- null} r -t 4.24018 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7479 -a 0 -x {9.0 10.0 3744 ------- null} + -t 4.24018 -s 10 -d 7 -p ack -e 40 -c 0 -i 7498 -a 0 -x {10.0 9.0 3744 ------- null} - -t 4.24018 -s 10 -d 7 -p ack -e 40 -c 0 -i 7498 -a 0 -x {10.0 9.0 3744 ------- null} h -t 4.24018 -s 10 -d 7 -p ack -e 40 -c 0 -i 7498 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.24021 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7493 -a 0 -x {9.0 10.0 3751 ------- null} + -t 4.24021 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7493 -a 0 -x {9.0 10.0 3751 ------- null} h -t 4.24021 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7493 -a 0 -x {9.0 10.0 3751 ------- null} + -t 4.24078 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7485 -a 0 -x {9.0 10.0 3747 ------- null} - -t 4.24078 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7485 -a 0 -x {9.0 10.0 3747 ------- null} h -t 4.24078 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7485 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.2408 -s 0 -d 9 -p ack -e 40 -c 0 -i 7488 -a 0 -x {10.0 9.0 3739 ------- null} + -t 4.2408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7499 -a 0 -x {9.0 10.0 3754 ------- null} - -t 4.2408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7499 -a 0 -x {9.0 10.0 3754 ------- null} h -t 4.2408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7499 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.24085 -s 0 -d 9 -p ack -e 40 -c 0 -i 7492 -a 0 -x {10.0 9.0 3741 ------- null} - -t 4.24085 -s 0 -d 9 -p ack -e 40 -c 0 -i 7492 -a 0 -x {10.0 9.0 3741 ------- null} h -t 4.24085 -s 0 -d 9 -p ack -e 40 -c 0 -i 7492 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.24112 -s 10 -d 7 -p ack -e 40 -c 0 -i 7496 -a 0 -x {10.0 9.0 3743 ------- null} + -t 4.24112 -s 7 -d 0 -p ack -e 40 -c 0 -i 7496 -a 0 -x {10.0 9.0 3743 ------- null} h -t 4.24112 -s 7 -d 8 -p ack -e 40 -c 0 -i 7496 -a 0 -x {10.0 9.0 3743 ------- null} r -t 4.24128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7495 -a 0 -x {9.0 10.0 3752 ------- null} + -t 4.24128 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7495 -a 0 -x {9.0 10.0 3752 ------- null} h -t 4.24128 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7495 -a 0 -x {9.0 10.0 3752 ------- null} r -t 4.24141 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7481 -a 0 -x {9.0 10.0 3745 ------- null} + -t 4.24141 -s 10 -d 7 -p ack -e 40 -c 0 -i 7500 -a 0 -x {10.0 9.0 3745 ------- null} - -t 4.24141 -s 10 -d 7 -p ack -e 40 -c 0 -i 7500 -a 0 -x {10.0 9.0 3745 ------- null} h -t 4.24141 -s 10 -d 7 -p ack -e 40 -c 0 -i 7500 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.24179 -s 0 -d 9 -p ack -e 40 -c 0 -i 7490 -a 0 -x {10.0 9.0 3740 ------- null} + -t 4.24179 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7501 -a 0 -x {9.0 10.0 3755 ------- null} - -t 4.24179 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7501 -a 0 -x {9.0 10.0 3755 ------- null} h -t 4.24179 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7501 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.24187 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7487 -a 0 -x {9.0 10.0 3748 ------- null} - -t 4.24187 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7487 -a 0 -x {9.0 10.0 3748 ------- null} h -t 4.24187 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7487 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.24208 -s 0 -d 9 -p ack -e 40 -c 0 -i 7494 -a 0 -x {10.0 9.0 3742 ------- null} - -t 4.24208 -s 0 -d 9 -p ack -e 40 -c 0 -i 7494 -a 0 -x {10.0 9.0 3742 ------- null} h -t 4.24208 -s 0 -d 9 -p ack -e 40 -c 0 -i 7494 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.24221 -s 10 -d 7 -p ack -e 40 -c 0 -i 7498 -a 0 -x {10.0 9.0 3744 ------- null} + -t 4.24221 -s 7 -d 0 -p ack -e 40 -c 0 -i 7498 -a 0 -x {10.0 9.0 3744 ------- null} h -t 4.24221 -s 7 -d 8 -p ack -e 40 -c 0 -i 7498 -a 0 -x {10.0 9.0 3744 ------- null} r -t 4.2425 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7497 -a 0 -x {9.0 10.0 3753 ------- null} + -t 4.2425 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7497 -a 0 -x {9.0 10.0 3753 ------- null} h -t 4.2425 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7497 -a 0 -x {9.0 10.0 3753 ------- null} r -t 4.2425 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7483 -a 0 -x {9.0 10.0 3746 ------- null} + -t 4.2425 -s 10 -d 7 -p ack -e 40 -c 0 -i 7502 -a 0 -x {10.0 9.0 3746 ------- null} - -t 4.2425 -s 10 -d 7 -p ack -e 40 -c 0 -i 7502 -a 0 -x {10.0 9.0 3746 ------- null} h -t 4.2425 -s 10 -d 7 -p ack -e 40 -c 0 -i 7502 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.24288 -s 0 -d 9 -p ack -e 40 -c 0 -i 7492 -a 0 -x {10.0 9.0 3741 ------- null} + -t 4.24288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7503 -a 0 -x {9.0 10.0 3756 ------- null} - -t 4.24288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7503 -a 0 -x {9.0 10.0 3756 ------- null} h -t 4.24288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7503 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.24296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7489 -a 0 -x {9.0 10.0 3749 ------- null} - -t 4.24296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7489 -a 0 -x {9.0 10.0 3749 ------- null} h -t 4.24296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7489 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.24312 -s 0 -d 9 -p ack -e 40 -c 0 -i 7496 -a 0 -x {10.0 9.0 3743 ------- null} - -t 4.24312 -s 0 -d 9 -p ack -e 40 -c 0 -i 7496 -a 0 -x {10.0 9.0 3743 ------- null} h -t 4.24312 -s 0 -d 9 -p ack -e 40 -c 0 -i 7496 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.24344 -s 10 -d 7 -p ack -e 40 -c 0 -i 7500 -a 0 -x {10.0 9.0 3745 ------- null} + -t 4.24344 -s 7 -d 0 -p ack -e 40 -c 0 -i 7500 -a 0 -x {10.0 9.0 3745 ------- null} h -t 4.24344 -s 7 -d 8 -p ack -e 40 -c 0 -i 7500 -a 0 -x {10.0 9.0 3745 ------- null} r -t 4.24358 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7485 -a 0 -x {9.0 10.0 3747 ------- null} + -t 4.24358 -s 10 -d 7 -p ack -e 40 -c 0 -i 7504 -a 0 -x {10.0 9.0 3747 ------- null} - -t 4.24358 -s 10 -d 7 -p ack -e 40 -c 0 -i 7504 -a 0 -x {10.0 9.0 3747 ------- null} h -t 4.24358 -s 10 -d 7 -p ack -e 40 -c 0 -i 7504 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.2436 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7499 -a 0 -x {9.0 10.0 3754 ------- null} + -t 4.2436 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7499 -a 0 -x {9.0 10.0 3754 ------- null} h -t 4.2436 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7499 -a 0 -x {9.0 10.0 3754 ------- null} + -t 4.24405 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7491 -a 0 -x {9.0 10.0 3750 ------- null} - -t 4.24405 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7491 -a 0 -x {9.0 10.0 3750 ------- null} h -t 4.24405 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7491 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.24411 -s 0 -d 9 -p ack -e 40 -c 0 -i 7494 -a 0 -x {10.0 9.0 3742 ------- null} + -t 4.24411 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7505 -a 0 -x {9.0 10.0 3757 ------- null} - -t 4.24411 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7505 -a 0 -x {9.0 10.0 3757 ------- null} h -t 4.24411 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7505 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.24422 -s 0 -d 9 -p ack -e 40 -c 0 -i 7498 -a 0 -x {10.0 9.0 3744 ------- null} - -t 4.24422 -s 0 -d 9 -p ack -e 40 -c 0 -i 7498 -a 0 -x {10.0 9.0 3744 ------- null} h -t 4.24422 -s 0 -d 9 -p ack -e 40 -c 0 -i 7498 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.24453 -s 10 -d 7 -p ack -e 40 -c 0 -i 7502 -a 0 -x {10.0 9.0 3746 ------- null} + -t 4.24453 -s 7 -d 0 -p ack -e 40 -c 0 -i 7502 -a 0 -x {10.0 9.0 3746 ------- null} h -t 4.24453 -s 7 -d 8 -p ack -e 40 -c 0 -i 7502 -a 0 -x {10.0 9.0 3746 ------- null} r -t 4.24459 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7501 -a 0 -x {9.0 10.0 3755 ------- null} + -t 4.24459 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7501 -a 0 -x {9.0 10.0 3755 ------- null} h -t 4.24459 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7501 -a 0 -x {9.0 10.0 3755 ------- null} r -t 4.24467 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7487 -a 0 -x {9.0 10.0 3748 ------- null} + -t 4.24467 -s 10 -d 7 -p ack -e 40 -c 0 -i 7506 -a 0 -x {10.0 9.0 3748 ------- null} - -t 4.24467 -s 10 -d 7 -p ack -e 40 -c 0 -i 7506 -a 0 -x {10.0 9.0 3748 ------- null} h -t 4.24467 -s 10 -d 7 -p ack -e 40 -c 0 -i 7506 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.24514 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7493 -a 0 -x {9.0 10.0 3751 ------- null} - -t 4.24514 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7493 -a 0 -x {9.0 10.0 3751 ------- null} h -t 4.24514 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7493 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.24515 -s 0 -d 9 -p ack -e 40 -c 0 -i 7496 -a 0 -x {10.0 9.0 3743 ------- null} + -t 4.24515 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7507 -a 0 -x {9.0 10.0 3758 ------- null} - -t 4.24515 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7507 -a 0 -x {9.0 10.0 3758 ------- null} h -t 4.24515 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7507 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.24534 -s 0 -d 9 -p ack -e 40 -c 0 -i 7500 -a 0 -x {10.0 9.0 3745 ------- null} - -t 4.24534 -s 0 -d 9 -p ack -e 40 -c 0 -i 7500 -a 0 -x {10.0 9.0 3745 ------- null} h -t 4.24534 -s 0 -d 9 -p ack -e 40 -c 0 -i 7500 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.24562 -s 10 -d 7 -p ack -e 40 -c 0 -i 7504 -a 0 -x {10.0 9.0 3747 ------- null} + -t 4.24562 -s 7 -d 0 -p ack -e 40 -c 0 -i 7504 -a 0 -x {10.0 9.0 3747 ------- null} h -t 4.24562 -s 7 -d 8 -p ack -e 40 -c 0 -i 7504 -a 0 -x {10.0 9.0 3747 ------- null} r -t 4.24568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7503 -a 0 -x {9.0 10.0 3756 ------- null} + -t 4.24568 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7503 -a 0 -x {9.0 10.0 3756 ------- null} h -t 4.24568 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7503 -a 0 -x {9.0 10.0 3756 ------- null} r -t 4.24576 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7489 -a 0 -x {9.0 10.0 3749 ------- null} + -t 4.24576 -s 10 -d 7 -p ack -e 40 -c 0 -i 7508 -a 0 -x {10.0 9.0 3749 ------- null} - -t 4.24576 -s 10 -d 7 -p ack -e 40 -c 0 -i 7508 -a 0 -x {10.0 9.0 3749 ------- null} h -t 4.24576 -s 10 -d 7 -p ack -e 40 -c 0 -i 7508 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.24622 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7495 -a 0 -x {9.0 10.0 3752 ------- null} - -t 4.24622 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7495 -a 0 -x {9.0 10.0 3752 ------- null} h -t 4.24622 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7495 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.24626 -s 0 -d 9 -p ack -e 40 -c 0 -i 7498 -a 0 -x {10.0 9.0 3744 ------- null} + -t 4.24626 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7509 -a 0 -x {9.0 10.0 3759 ------- null} - -t 4.24626 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7509 -a 0 -x {9.0 10.0 3759 ------- null} h -t 4.24626 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7509 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.24634 -s 0 -d 9 -p ack -e 40 -c 0 -i 7502 -a 0 -x {10.0 9.0 3746 ------- null} - -t 4.24634 -s 0 -d 9 -p ack -e 40 -c 0 -i 7502 -a 0 -x {10.0 9.0 3746 ------- null} h -t 4.24634 -s 0 -d 9 -p ack -e 40 -c 0 -i 7502 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.2467 -s 10 -d 7 -p ack -e 40 -c 0 -i 7506 -a 0 -x {10.0 9.0 3748 ------- null} + -t 4.2467 -s 7 -d 0 -p ack -e 40 -c 0 -i 7506 -a 0 -x {10.0 9.0 3748 ------- null} h -t 4.2467 -s 7 -d 8 -p ack -e 40 -c 0 -i 7506 -a 0 -x {10.0 9.0 3748 ------- null} r -t 4.24685 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7491 -a 0 -x {9.0 10.0 3750 ------- null} + -t 4.24685 -s 10 -d 7 -p ack -e 40 -c 0 -i 7510 -a 0 -x {10.0 9.0 3750 ------- null} - -t 4.24685 -s 10 -d 7 -p ack -e 40 -c 0 -i 7510 -a 0 -x {10.0 9.0 3750 ------- null} h -t 4.24685 -s 10 -d 7 -p ack -e 40 -c 0 -i 7510 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.24691 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7505 -a 0 -x {9.0 10.0 3757 ------- null} + -t 4.24691 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7505 -a 0 -x {9.0 10.0 3757 ------- null} h -t 4.24691 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7505 -a 0 -x {9.0 10.0 3757 ------- null} + -t 4.24731 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7497 -a 0 -x {9.0 10.0 3753 ------- null} - -t 4.24731 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7497 -a 0 -x {9.0 10.0 3753 ------- null} h -t 4.24731 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7497 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.24738 -s 0 -d 9 -p ack -e 40 -c 0 -i 7500 -a 0 -x {10.0 9.0 3745 ------- null} + -t 4.24738 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7511 -a 0 -x {9.0 10.0 3760 ------- null} - -t 4.24738 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7511 -a 0 -x {9.0 10.0 3760 ------- null} h -t 4.24738 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7511 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.2475 -s 0 -d 9 -p ack -e 40 -c 0 -i 7504 -a 0 -x {10.0 9.0 3747 ------- null} - -t 4.2475 -s 0 -d 9 -p ack -e 40 -c 0 -i 7504 -a 0 -x {10.0 9.0 3747 ------- null} h -t 4.2475 -s 0 -d 9 -p ack -e 40 -c 0 -i 7504 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.24779 -s 10 -d 7 -p ack -e 40 -c 0 -i 7508 -a 0 -x {10.0 9.0 3749 ------- null} + -t 4.24779 -s 7 -d 0 -p ack -e 40 -c 0 -i 7508 -a 0 -x {10.0 9.0 3749 ------- null} h -t 4.24779 -s 7 -d 8 -p ack -e 40 -c 0 -i 7508 -a 0 -x {10.0 9.0 3749 ------- null} r -t 4.24794 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7493 -a 0 -x {9.0 10.0 3751 ------- null} + -t 4.24794 -s 10 -d 7 -p ack -e 40 -c 0 -i 7512 -a 0 -x {10.0 9.0 3751 ------- null} - -t 4.24794 -s 10 -d 7 -p ack -e 40 -c 0 -i 7512 -a 0 -x {10.0 9.0 3751 ------- null} h -t 4.24794 -s 10 -d 7 -p ack -e 40 -c 0 -i 7512 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.24795 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7507 -a 0 -x {9.0 10.0 3758 ------- null} + -t 4.24795 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7507 -a 0 -x {9.0 10.0 3758 ------- null} h -t 4.24795 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7507 -a 0 -x {9.0 10.0 3758 ------- null} r -t 4.24837 -s 0 -d 9 -p ack -e 40 -c 0 -i 7502 -a 0 -x {10.0 9.0 3746 ------- null} + -t 4.24837 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7513 -a 0 -x {9.0 10.0 3761 ------- null} - -t 4.24837 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7513 -a 0 -x {9.0 10.0 3761 ------- null} h -t 4.24837 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7513 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.2484 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7499 -a 0 -x {9.0 10.0 3754 ------- null} - -t 4.2484 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7499 -a 0 -x {9.0 10.0 3754 ------- null} h -t 4.2484 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7499 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.2485 -s 0 -d 9 -p ack -e 40 -c 0 -i 7506 -a 0 -x {10.0 9.0 3748 ------- null} - -t 4.2485 -s 0 -d 9 -p ack -e 40 -c 0 -i 7506 -a 0 -x {10.0 9.0 3748 ------- null} h -t 4.2485 -s 0 -d 9 -p ack -e 40 -c 0 -i 7506 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.24888 -s 10 -d 7 -p ack -e 40 -c 0 -i 7510 -a 0 -x {10.0 9.0 3750 ------- null} + -t 4.24888 -s 7 -d 0 -p ack -e 40 -c 0 -i 7510 -a 0 -x {10.0 9.0 3750 ------- null} h -t 4.24888 -s 7 -d 8 -p ack -e 40 -c 0 -i 7510 -a 0 -x {10.0 9.0 3750 ------- null} r -t 4.24902 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7495 -a 0 -x {9.0 10.0 3752 ------- null} + -t 4.24902 -s 10 -d 7 -p ack -e 40 -c 0 -i 7514 -a 0 -x {10.0 9.0 3752 ------- null} - -t 4.24902 -s 10 -d 7 -p ack -e 40 -c 0 -i 7514 -a 0 -x {10.0 9.0 3752 ------- null} h -t 4.24902 -s 10 -d 7 -p ack -e 40 -c 0 -i 7514 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.24906 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7509 -a 0 -x {9.0 10.0 3759 ------- null} + -t 4.24906 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7509 -a 0 -x {9.0 10.0 3759 ------- null} h -t 4.24906 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7509 -a 0 -x {9.0 10.0 3759 ------- null} + -t 4.24949 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7501 -a 0 -x {9.0 10.0 3755 ------- null} - -t 4.24949 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7501 -a 0 -x {9.0 10.0 3755 ------- null} h -t 4.24949 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7501 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.24954 -s 0 -d 9 -p ack -e 40 -c 0 -i 7504 -a 0 -x {10.0 9.0 3747 ------- null} + -t 4.24954 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7515 -a 0 -x {9.0 10.0 3762 ------- null} - -t 4.24954 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7515 -a 0 -x {9.0 10.0 3762 ------- null} h -t 4.24954 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7515 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.24971 -s 0 -d 9 -p ack -e 40 -c 0 -i 7508 -a 0 -x {10.0 9.0 3749 ------- null} - -t 4.24971 -s 0 -d 9 -p ack -e 40 -c 0 -i 7508 -a 0 -x {10.0 9.0 3749 ------- null} h -t 4.24971 -s 0 -d 9 -p ack -e 40 -c 0 -i 7508 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.24997 -s 10 -d 7 -p ack -e 40 -c 0 -i 7512 -a 0 -x {10.0 9.0 3751 ------- null} + -t 4.24997 -s 7 -d 0 -p ack -e 40 -c 0 -i 7512 -a 0 -x {10.0 9.0 3751 ------- null} h -t 4.24997 -s 7 -d 8 -p ack -e 40 -c 0 -i 7512 -a 0 -x {10.0 9.0 3751 ------- null} r -t 4.25011 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7497 -a 0 -x {9.0 10.0 3753 ------- null} + -t 4.25011 -s 10 -d 7 -p ack -e 40 -c 0 -i 7516 -a 0 -x {10.0 9.0 3753 ------- null} - -t 4.25011 -s 10 -d 7 -p ack -e 40 -c 0 -i 7516 -a 0 -x {10.0 9.0 3753 ------- null} h -t 4.25011 -s 10 -d 7 -p ack -e 40 -c 0 -i 7516 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.25018 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7511 -a 0 -x {9.0 10.0 3760 ------- null} + -t 4.25018 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7511 -a 0 -x {9.0 10.0 3760 ------- null} h -t 4.25018 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7511 -a 0 -x {9.0 10.0 3760 ------- null} r -t 4.25053 -s 0 -d 9 -p ack -e 40 -c 0 -i 7506 -a 0 -x {10.0 9.0 3748 ------- null} + -t 4.25053 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7517 -a 0 -x {9.0 10.0 3763 ------- null} - -t 4.25053 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7517 -a 0 -x {9.0 10.0 3763 ------- null} h -t 4.25053 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7517 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.25058 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7503 -a 0 -x {9.0 10.0 3756 ------- null} - -t 4.25058 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7503 -a 0 -x {9.0 10.0 3756 ------- null} h -t 4.25058 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7503 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.25083 -s 0 -d 9 -p ack -e 40 -c 0 -i 7510 -a 0 -x {10.0 9.0 3750 ------- null} - -t 4.25083 -s 0 -d 9 -p ack -e 40 -c 0 -i 7510 -a 0 -x {10.0 9.0 3750 ------- null} h -t 4.25083 -s 0 -d 9 -p ack -e 40 -c 0 -i 7510 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.25106 -s 10 -d 7 -p ack -e 40 -c 0 -i 7514 -a 0 -x {10.0 9.0 3752 ------- null} + -t 4.25106 -s 7 -d 0 -p ack -e 40 -c 0 -i 7514 -a 0 -x {10.0 9.0 3752 ------- null} h -t 4.25106 -s 7 -d 8 -p ack -e 40 -c 0 -i 7514 -a 0 -x {10.0 9.0 3752 ------- null} r -t 4.25117 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7513 -a 0 -x {9.0 10.0 3761 ------- null} + -t 4.25117 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7513 -a 0 -x {9.0 10.0 3761 ------- null} h -t 4.25117 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7513 -a 0 -x {9.0 10.0 3761 ------- null} r -t 4.2512 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7499 -a 0 -x {9.0 10.0 3754 ------- null} + -t 4.2512 -s 10 -d 7 -p ack -e 40 -c 0 -i 7518 -a 0 -x {10.0 9.0 3754 ------- null} - -t 4.2512 -s 10 -d 7 -p ack -e 40 -c 0 -i 7518 -a 0 -x {10.0 9.0 3754 ------- null} h -t 4.2512 -s 10 -d 7 -p ack -e 40 -c 0 -i 7518 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.25166 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7505 -a 0 -x {9.0 10.0 3757 ------- null} - -t 4.25166 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7505 -a 0 -x {9.0 10.0 3757 ------- null} h -t 4.25166 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7505 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.25173 -s 0 -d 9 -p ack -e 40 -c 0 -i 7512 -a 0 -x {10.0 9.0 3751 ------- null} - -t 4.25173 -s 0 -d 9 -p ack -e 40 -c 0 -i 7512 -a 0 -x {10.0 9.0 3751 ------- null} h -t 4.25173 -s 0 -d 9 -p ack -e 40 -c 0 -i 7512 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.25174 -s 0 -d 9 -p ack -e 40 -c 0 -i 7508 -a 0 -x {10.0 9.0 3749 ------- null} + -t 4.25174 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7519 -a 0 -x {9.0 10.0 3764 ------- null} - -t 4.25174 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7519 -a 0 -x {9.0 10.0 3764 ------- null} h -t 4.25174 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7519 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.25214 -s 10 -d 7 -p ack -e 40 -c 0 -i 7516 -a 0 -x {10.0 9.0 3753 ------- null} + -t 4.25214 -s 7 -d 0 -p ack -e 40 -c 0 -i 7516 -a 0 -x {10.0 9.0 3753 ------- null} h -t 4.25214 -s 7 -d 8 -p ack -e 40 -c 0 -i 7516 -a 0 -x {10.0 9.0 3753 ------- null} r -t 4.25229 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7501 -a 0 -x {9.0 10.0 3755 ------- null} + -t 4.25229 -s 10 -d 7 -p ack -e 40 -c 0 -i 7520 -a 0 -x {10.0 9.0 3755 ------- null} - -t 4.25229 -s 10 -d 7 -p ack -e 40 -c 0 -i 7520 -a 0 -x {10.0 9.0 3755 ------- null} h -t 4.25229 -s 10 -d 7 -p ack -e 40 -c 0 -i 7520 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.25234 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7515 -a 0 -x {9.0 10.0 3762 ------- null} + -t 4.25234 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7515 -a 0 -x {9.0 10.0 3762 ------- null} h -t 4.25234 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7515 -a 0 -x {9.0 10.0 3762 ------- null} + -t 4.25275 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7507 -a 0 -x {9.0 10.0 3758 ------- null} - -t 4.25275 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7507 -a 0 -x {9.0 10.0 3758 ------- null} h -t 4.25275 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7507 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.25286 -s 0 -d 9 -p ack -e 40 -c 0 -i 7510 -a 0 -x {10.0 9.0 3750 ------- null} + -t 4.25286 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7521 -a 0 -x {9.0 10.0 3765 ------- null} - -t 4.25286 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7521 -a 0 -x {9.0 10.0 3765 ------- null} h -t 4.25286 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7521 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.25298 -s 0 -d 9 -p ack -e 40 -c 0 -i 7514 -a 0 -x {10.0 9.0 3752 ------- null} - -t 4.25298 -s 0 -d 9 -p ack -e 40 -c 0 -i 7514 -a 0 -x {10.0 9.0 3752 ------- null} h -t 4.25298 -s 0 -d 9 -p ack -e 40 -c 0 -i 7514 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.25323 -s 10 -d 7 -p ack -e 40 -c 0 -i 7518 -a 0 -x {10.0 9.0 3754 ------- null} + -t 4.25323 -s 7 -d 0 -p ack -e 40 -c 0 -i 7518 -a 0 -x {10.0 9.0 3754 ------- null} h -t 4.25323 -s 7 -d 8 -p ack -e 40 -c 0 -i 7518 -a 0 -x {10.0 9.0 3754 ------- null} r -t 4.25333 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7517 -a 0 -x {9.0 10.0 3763 ------- null} + -t 4.25333 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7517 -a 0 -x {9.0 10.0 3763 ------- null} h -t 4.25333 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7517 -a 0 -x {9.0 10.0 3763 ------- null} r -t 4.25338 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7503 -a 0 -x {9.0 10.0 3756 ------- null} + -t 4.25338 -s 10 -d 7 -p ack -e 40 -c 0 -i 7522 -a 0 -x {10.0 9.0 3756 ------- null} - -t 4.25338 -s 10 -d 7 -p ack -e 40 -c 0 -i 7522 -a 0 -x {10.0 9.0 3756 ------- null} h -t 4.25338 -s 10 -d 7 -p ack -e 40 -c 0 -i 7522 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.25376 -s 0 -d 9 -p ack -e 40 -c 0 -i 7512 -a 0 -x {10.0 9.0 3751 ------- null} + -t 4.25376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7523 -a 0 -x {9.0 10.0 3766 ------- null} - -t 4.25376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7523 -a 0 -x {9.0 10.0 3766 ------- null} h -t 4.25376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7523 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.25384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7509 -a 0 -x {9.0 10.0 3759 ------- null} - -t 4.25384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7509 -a 0 -x {9.0 10.0 3759 ------- null} h -t 4.25384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7509 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.25397 -s 0 -d 9 -p ack -e 40 -c 0 -i 7516 -a 0 -x {10.0 9.0 3753 ------- null} - -t 4.25397 -s 0 -d 9 -p ack -e 40 -c 0 -i 7516 -a 0 -x {10.0 9.0 3753 ------- null} h -t 4.25397 -s 0 -d 9 -p ack -e 40 -c 0 -i 7516 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.25432 -s 10 -d 7 -p ack -e 40 -c 0 -i 7520 -a 0 -x {10.0 9.0 3755 ------- null} + -t 4.25432 -s 7 -d 0 -p ack -e 40 -c 0 -i 7520 -a 0 -x {10.0 9.0 3755 ------- null} h -t 4.25432 -s 7 -d 8 -p ack -e 40 -c 0 -i 7520 -a 0 -x {10.0 9.0 3755 ------- null} r -t 4.25446 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7505 -a 0 -x {9.0 10.0 3757 ------- null} + -t 4.25446 -s 10 -d 7 -p ack -e 40 -c 0 -i 7524 -a 0 -x {10.0 9.0 3757 ------- null} - -t 4.25446 -s 10 -d 7 -p ack -e 40 -c 0 -i 7524 -a 0 -x {10.0 9.0 3757 ------- null} h -t 4.25446 -s 10 -d 7 -p ack -e 40 -c 0 -i 7524 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.25454 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7519 -a 0 -x {9.0 10.0 3764 ------- null} + -t 4.25454 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7519 -a 0 -x {9.0 10.0 3764 ------- null} h -t 4.25454 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7519 -a 0 -x {9.0 10.0 3764 ------- null} + -t 4.25493 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7511 -a 0 -x {9.0 10.0 3760 ------- null} - -t 4.25493 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7511 -a 0 -x {9.0 10.0 3760 ------- null} h -t 4.25493 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7511 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.25501 -s 0 -d 9 -p ack -e 40 -c 0 -i 7514 -a 0 -x {10.0 9.0 3752 ------- null} + -t 4.25501 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7525 -a 0 -x {9.0 10.0 3767 ------- null} - -t 4.25501 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7525 -a 0 -x {9.0 10.0 3767 ------- null} h -t 4.25501 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7525 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.25515 -s 0 -d 9 -p ack -e 40 -c 0 -i 7518 -a 0 -x {10.0 9.0 3754 ------- null} - -t 4.25515 -s 0 -d 9 -p ack -e 40 -c 0 -i 7518 -a 0 -x {10.0 9.0 3754 ------- null} h -t 4.25515 -s 0 -d 9 -p ack -e 40 -c 0 -i 7518 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.25541 -s 10 -d 7 -p ack -e 40 -c 0 -i 7522 -a 0 -x {10.0 9.0 3756 ------- null} + -t 4.25541 -s 7 -d 0 -p ack -e 40 -c 0 -i 7522 -a 0 -x {10.0 9.0 3756 ------- null} h -t 4.25541 -s 7 -d 8 -p ack -e 40 -c 0 -i 7522 -a 0 -x {10.0 9.0 3756 ------- null} r -t 4.25555 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7507 -a 0 -x {9.0 10.0 3758 ------- null} + -t 4.25555 -s 10 -d 7 -p ack -e 40 -c 0 -i 7526 -a 0 -x {10.0 9.0 3758 ------- null} - -t 4.25555 -s 10 -d 7 -p ack -e 40 -c 0 -i 7526 -a 0 -x {10.0 9.0 3758 ------- null} h -t 4.25555 -s 10 -d 7 -p ack -e 40 -c 0 -i 7526 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.25566 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7521 -a 0 -x {9.0 10.0 3765 ------- null} + -t 4.25566 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7521 -a 0 -x {9.0 10.0 3765 ------- null} h -t 4.25566 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7521 -a 0 -x {9.0 10.0 3765 ------- null} r -t 4.256 -s 0 -d 9 -p ack -e 40 -c 0 -i 7516 -a 0 -x {10.0 9.0 3753 ------- null} + -t 4.256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7527 -a 0 -x {9.0 10.0 3768 ------- null} - -t 4.256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7527 -a 0 -x {9.0 10.0 3768 ------- null} h -t 4.256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7527 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.25602 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7513 -a 0 -x {9.0 10.0 3761 ------- null} - -t 4.25602 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7513 -a 0 -x {9.0 10.0 3761 ------- null} h -t 4.25602 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7513 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.25621 -s 0 -d 9 -p ack -e 40 -c 0 -i 7520 -a 0 -x {10.0 9.0 3755 ------- null} - -t 4.25621 -s 0 -d 9 -p ack -e 40 -c 0 -i 7520 -a 0 -x {10.0 9.0 3755 ------- null} h -t 4.25621 -s 0 -d 9 -p ack -e 40 -c 0 -i 7520 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.2565 -s 10 -d 7 -p ack -e 40 -c 0 -i 7524 -a 0 -x {10.0 9.0 3757 ------- null} + -t 4.2565 -s 7 -d 0 -p ack -e 40 -c 0 -i 7524 -a 0 -x {10.0 9.0 3757 ------- null} h -t 4.2565 -s 7 -d 8 -p ack -e 40 -c 0 -i 7524 -a 0 -x {10.0 9.0 3757 ------- null} r -t 4.25656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7523 -a 0 -x {9.0 10.0 3766 ------- null} + -t 4.25656 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7523 -a 0 -x {9.0 10.0 3766 ------- null} h -t 4.25656 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7523 -a 0 -x {9.0 10.0 3766 ------- null} r -t 4.25664 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7509 -a 0 -x {9.0 10.0 3759 ------- null} + -t 4.25664 -s 10 -d 7 -p ack -e 40 -c 0 -i 7528 -a 0 -x {10.0 9.0 3759 ------- null} - -t 4.25664 -s 10 -d 7 -p ack -e 40 -c 0 -i 7528 -a 0 -x {10.0 9.0 3759 ------- null} h -t 4.25664 -s 10 -d 7 -p ack -e 40 -c 0 -i 7528 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.2571 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7515 -a 0 -x {9.0 10.0 3762 ------- null} - -t 4.2571 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7515 -a 0 -x {9.0 10.0 3762 ------- null} h -t 4.2571 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7515 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.25718 -s 0 -d 9 -p ack -e 40 -c 0 -i 7518 -a 0 -x {10.0 9.0 3754 ------- null} + -t 4.25718 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7529 -a 0 -x {9.0 10.0 3769 ------- null} - -t 4.25718 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7529 -a 0 -x {9.0 10.0 3769 ------- null} h -t 4.25718 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7529 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.2572 -s 0 -d 9 -p ack -e 40 -c 0 -i 7522 -a 0 -x {10.0 9.0 3756 ------- null} - -t 4.2572 -s 0 -d 9 -p ack -e 40 -c 0 -i 7522 -a 0 -x {10.0 9.0 3756 ------- null} h -t 4.2572 -s 0 -d 9 -p ack -e 40 -c 0 -i 7522 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.25758 -s 10 -d 7 -p ack -e 40 -c 0 -i 7526 -a 0 -x {10.0 9.0 3758 ------- null} + -t 4.25758 -s 7 -d 0 -p ack -e 40 -c 0 -i 7526 -a 0 -x {10.0 9.0 3758 ------- null} h -t 4.25758 -s 7 -d 8 -p ack -e 40 -c 0 -i 7526 -a 0 -x {10.0 9.0 3758 ------- null} r -t 4.25773 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7511 -a 0 -x {9.0 10.0 3760 ------- null} + -t 4.25773 -s 10 -d 7 -p ack -e 40 -c 0 -i 7530 -a 0 -x {10.0 9.0 3760 ------- null} - -t 4.25773 -s 10 -d 7 -p ack -e 40 -c 0 -i 7530 -a 0 -x {10.0 9.0 3760 ------- null} h -t 4.25773 -s 10 -d 7 -p ack -e 40 -c 0 -i 7530 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.25781 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7525 -a 0 -x {9.0 10.0 3767 ------- null} + -t 4.25781 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7525 -a 0 -x {9.0 10.0 3767 ------- null} h -t 4.25781 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7525 -a 0 -x {9.0 10.0 3767 ------- null} + -t 4.25819 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7517 -a 0 -x {9.0 10.0 3763 ------- null} - -t 4.25819 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7517 -a 0 -x {9.0 10.0 3763 ------- null} h -t 4.25819 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7517 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.25824 -s 0 -d 9 -p ack -e 40 -c 0 -i 7520 -a 0 -x {10.0 9.0 3755 ------- null} + -t 4.25824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7531 -a 0 -x {9.0 10.0 3770 ------- null} - -t 4.25824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7531 -a 0 -x {9.0 10.0 3770 ------- null} h -t 4.25824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7531 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.2585 -s 0 -d 9 -p ack -e 40 -c 0 -i 7524 -a 0 -x {10.0 9.0 3757 ------- null} - -t 4.2585 -s 0 -d 9 -p ack -e 40 -c 0 -i 7524 -a 0 -x {10.0 9.0 3757 ------- null} h -t 4.2585 -s 0 -d 9 -p ack -e 40 -c 0 -i 7524 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.25867 -s 10 -d 7 -p ack -e 40 -c 0 -i 7528 -a 0 -x {10.0 9.0 3759 ------- null} + -t 4.25867 -s 7 -d 0 -p ack -e 40 -c 0 -i 7528 -a 0 -x {10.0 9.0 3759 ------- null} h -t 4.25867 -s 7 -d 8 -p ack -e 40 -c 0 -i 7528 -a 0 -x {10.0 9.0 3759 ------- null} r -t 4.2588 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7527 -a 0 -x {9.0 10.0 3768 ------- null} + -t 4.2588 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7527 -a 0 -x {9.0 10.0 3768 ------- null} h -t 4.2588 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7527 -a 0 -x {9.0 10.0 3768 ------- null} r -t 4.25882 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7513 -a 0 -x {9.0 10.0 3761 ------- null} + -t 4.25882 -s 10 -d 7 -p ack -e 40 -c 0 -i 7532 -a 0 -x {10.0 9.0 3761 ------- null} - -t 4.25882 -s 10 -d 7 -p ack -e 40 -c 0 -i 7532 -a 0 -x {10.0 9.0 3761 ------- null} h -t 4.25882 -s 10 -d 7 -p ack -e 40 -c 0 -i 7532 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.25923 -s 0 -d 9 -p ack -e 40 -c 0 -i 7522 -a 0 -x {10.0 9.0 3756 ------- null} + -t 4.25923 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7533 -a 0 -x {9.0 10.0 3771 ------- null} - -t 4.25923 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7533 -a 0 -x {9.0 10.0 3771 ------- null} h -t 4.25923 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7533 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.25936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7519 -a 0 -x {9.0 10.0 3764 ------- null} - -t 4.25936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7519 -a 0 -x {9.0 10.0 3764 ------- null} h -t 4.25936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7519 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.25942 -s 0 -d 9 -p ack -e 40 -c 0 -i 7526 -a 0 -x {10.0 9.0 3758 ------- null} - -t 4.25942 -s 0 -d 9 -p ack -e 40 -c 0 -i 7526 -a 0 -x {10.0 9.0 3758 ------- null} h -t 4.25942 -s 0 -d 9 -p ack -e 40 -c 0 -i 7526 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.25976 -s 10 -d 7 -p ack -e 40 -c 0 -i 7530 -a 0 -x {10.0 9.0 3760 ------- null} + -t 4.25976 -s 7 -d 0 -p ack -e 40 -c 0 -i 7530 -a 0 -x {10.0 9.0 3760 ------- null} h -t 4.25976 -s 7 -d 8 -p ack -e 40 -c 0 -i 7530 -a 0 -x {10.0 9.0 3760 ------- null} r -t 4.2599 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7515 -a 0 -x {9.0 10.0 3762 ------- null} + -t 4.2599 -s 10 -d 7 -p ack -e 40 -c 0 -i 7534 -a 0 -x {10.0 9.0 3762 ------- null} - -t 4.2599 -s 10 -d 7 -p ack -e 40 -c 0 -i 7534 -a 0 -x {10.0 9.0 3762 ------- null} h -t 4.2599 -s 10 -d 7 -p ack -e 40 -c 0 -i 7534 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.25998 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7529 -a 0 -x {9.0 10.0 3769 ------- null} + -t 4.25998 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7529 -a 0 -x {9.0 10.0 3769 ------- null} h -t 4.25998 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7529 -a 0 -x {9.0 10.0 3769 ------- null} + -t 4.26045 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7521 -a 0 -x {9.0 10.0 3765 ------- null} - -t 4.26045 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7521 -a 0 -x {9.0 10.0 3765 ------- null} h -t 4.26045 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7521 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.26053 -s 0 -d 9 -p ack -e 40 -c 0 -i 7524 -a 0 -x {10.0 9.0 3757 ------- null} + -t 4.26053 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7535 -a 0 -x {9.0 10.0 3772 ------- null} - -t 4.26053 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7535 -a 0 -x {9.0 10.0 3772 ------- null} h -t 4.26053 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7535 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.26058 -s 0 -d 9 -p ack -e 40 -c 0 -i 7528 -a 0 -x {10.0 9.0 3759 ------- null} - -t 4.26058 -s 0 -d 9 -p ack -e 40 -c 0 -i 7528 -a 0 -x {10.0 9.0 3759 ------- null} h -t 4.26058 -s 0 -d 9 -p ack -e 40 -c 0 -i 7528 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.26085 -s 10 -d 7 -p ack -e 40 -c 0 -i 7532 -a 0 -x {10.0 9.0 3761 ------- null} + -t 4.26085 -s 7 -d 0 -p ack -e 40 -c 0 -i 7532 -a 0 -x {10.0 9.0 3761 ------- null} h -t 4.26085 -s 7 -d 8 -p ack -e 40 -c 0 -i 7532 -a 0 -x {10.0 9.0 3761 ------- null} r -t 4.26099 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7517 -a 0 -x {9.0 10.0 3763 ------- null} + -t 4.26099 -s 10 -d 7 -p ack -e 40 -c 0 -i 7536 -a 0 -x {10.0 9.0 3763 ------- null} - -t 4.26099 -s 10 -d 7 -p ack -e 40 -c 0 -i 7536 -a 0 -x {10.0 9.0 3763 ------- null} h -t 4.26099 -s 10 -d 7 -p ack -e 40 -c 0 -i 7536 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.26104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7531 -a 0 -x {9.0 10.0 3770 ------- null} + -t 4.26104 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7531 -a 0 -x {9.0 10.0 3770 ------- null} h -t 4.26104 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7531 -a 0 -x {9.0 10.0 3770 ------- null} r -t 4.26146 -s 0 -d 9 -p ack -e 40 -c 0 -i 7526 -a 0 -x {10.0 9.0 3758 ------- null} + -t 4.26146 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7537 -a 0 -x {9.0 10.0 3773 ------- null} - -t 4.26146 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7537 -a 0 -x {9.0 10.0 3773 ------- null} h -t 4.26146 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7537 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.26154 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7523 -a 0 -x {9.0 10.0 3766 ------- null} - -t 4.26154 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7523 -a 0 -x {9.0 10.0 3766 ------- null} h -t 4.26154 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7523 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.26173 -s 0 -d 9 -p ack -e 40 -c 0 -i 7530 -a 0 -x {10.0 9.0 3760 ------- null} - -t 4.26173 -s 0 -d 9 -p ack -e 40 -c 0 -i 7530 -a 0 -x {10.0 9.0 3760 ------- null} h -t 4.26173 -s 0 -d 9 -p ack -e 40 -c 0 -i 7530 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.26194 -s 10 -d 7 -p ack -e 40 -c 0 -i 7534 -a 0 -x {10.0 9.0 3762 ------- null} + -t 4.26194 -s 7 -d 0 -p ack -e 40 -c 0 -i 7534 -a 0 -x {10.0 9.0 3762 ------- null} h -t 4.26194 -s 7 -d 8 -p ack -e 40 -c 0 -i 7534 -a 0 -x {10.0 9.0 3762 ------- null} r -t 4.26203 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7533 -a 0 -x {9.0 10.0 3771 ------- null} + -t 4.26203 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7533 -a 0 -x {9.0 10.0 3771 ------- null} h -t 4.26203 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7533 -a 0 -x {9.0 10.0 3771 ------- null} r -t 4.26216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7519 -a 0 -x {9.0 10.0 3764 ------- null} + -t 4.26216 -s 10 -d 7 -p ack -e 40 -c 0 -i 7538 -a 0 -x {10.0 9.0 3764 ------- null} - -t 4.26216 -s 10 -d 7 -p ack -e 40 -c 0 -i 7538 -a 0 -x {10.0 9.0 3764 ------- null} h -t 4.26216 -s 10 -d 7 -p ack -e 40 -c 0 -i 7538 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.26261 -s 0 -d 9 -p ack -e 40 -c 0 -i 7528 -a 0 -x {10.0 9.0 3759 ------- null} + -t 4.26261 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7539 -a 0 -x {9.0 10.0 3774 ------- null} - -t 4.26261 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7539 -a 0 -x {9.0 10.0 3774 ------- null} h -t 4.26261 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7539 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.26262 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7525 -a 0 -x {9.0 10.0 3767 ------- null} - -t 4.26262 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7525 -a 0 -x {9.0 10.0 3767 ------- null} h -t 4.26262 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7525 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.26272 -s 0 -d 9 -p ack -e 40 -c 0 -i 7532 -a 0 -x {10.0 9.0 3761 ------- null} - -t 4.26272 -s 0 -d 9 -p ack -e 40 -c 0 -i 7532 -a 0 -x {10.0 9.0 3761 ------- null} h -t 4.26272 -s 0 -d 9 -p ack -e 40 -c 0 -i 7532 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.26302 -s 10 -d 7 -p ack -e 40 -c 0 -i 7536 -a 0 -x {10.0 9.0 3763 ------- null} + -t 4.26302 -s 7 -d 0 -p ack -e 40 -c 0 -i 7536 -a 0 -x {10.0 9.0 3763 ------- null} h -t 4.26302 -s 7 -d 8 -p ack -e 40 -c 0 -i 7536 -a 0 -x {10.0 9.0 3763 ------- null} r -t 4.26325 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7521 -a 0 -x {9.0 10.0 3765 ------- null} + -t 4.26325 -s 10 -d 7 -p ack -e 40 -c 0 -i 7540 -a 0 -x {10.0 9.0 3765 ------- null} - -t 4.26325 -s 10 -d 7 -p ack -e 40 -c 0 -i 7540 -a 0 -x {10.0 9.0 3765 ------- null} h -t 4.26325 -s 10 -d 7 -p ack -e 40 -c 0 -i 7540 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.26333 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7535 -a 0 -x {9.0 10.0 3772 ------- null} + -t 4.26333 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7535 -a 0 -x {9.0 10.0 3772 ------- null} h -t 4.26333 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7535 -a 0 -x {9.0 10.0 3772 ------- null} + -t 4.26371 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7527 -a 0 -x {9.0 10.0 3768 ------- null} - -t 4.26371 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7527 -a 0 -x {9.0 10.0 3768 ------- null} h -t 4.26371 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7527 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.26376 -s 0 -d 9 -p ack -e 40 -c 0 -i 7530 -a 0 -x {10.0 9.0 3760 ------- null} + -t 4.26376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7541 -a 0 -x {9.0 10.0 3775 ------- null} - -t 4.26376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7541 -a 0 -x {9.0 10.0 3775 ------- null} h -t 4.26376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7541 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.26402 -s 0 -d 9 -p ack -e 40 -c 0 -i 7534 -a 0 -x {10.0 9.0 3762 ------- null} - -t 4.26402 -s 0 -d 9 -p ack -e 40 -c 0 -i 7534 -a 0 -x {10.0 9.0 3762 ------- null} h -t 4.26402 -s 0 -d 9 -p ack -e 40 -c 0 -i 7534 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.26419 -s 10 -d 7 -p ack -e 40 -c 0 -i 7538 -a 0 -x {10.0 9.0 3764 ------- null} + -t 4.26419 -s 7 -d 0 -p ack -e 40 -c 0 -i 7538 -a 0 -x {10.0 9.0 3764 ------- null} h -t 4.26419 -s 7 -d 8 -p ack -e 40 -c 0 -i 7538 -a 0 -x {10.0 9.0 3764 ------- null} r -t 4.26426 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7537 -a 0 -x {9.0 10.0 3773 ------- null} + -t 4.26426 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7537 -a 0 -x {9.0 10.0 3773 ------- null} h -t 4.26426 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7537 -a 0 -x {9.0 10.0 3773 ------- null} r -t 4.26434 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7523 -a 0 -x {9.0 10.0 3766 ------- null} + -t 4.26434 -s 10 -d 7 -p ack -e 40 -c 0 -i 7542 -a 0 -x {10.0 9.0 3766 ------- null} - -t 4.26434 -s 10 -d 7 -p ack -e 40 -c 0 -i 7542 -a 0 -x {10.0 9.0 3766 ------- null} h -t 4.26434 -s 10 -d 7 -p ack -e 40 -c 0 -i 7542 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.26475 -s 0 -d 9 -p ack -e 40 -c 0 -i 7532 -a 0 -x {10.0 9.0 3761 ------- null} + -t 4.26475 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7543 -a 0 -x {9.0 10.0 3776 ------- null} - -t 4.26475 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7543 -a 0 -x {9.0 10.0 3776 ------- null} h -t 4.26475 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7543 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.26496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7529 -a 0 -x {9.0 10.0 3769 ------- null} - -t 4.26496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7529 -a 0 -x {9.0 10.0 3769 ------- null} h -t 4.26496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7529 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.26525 -s 0 -d 9 -p ack -e 40 -c 0 -i 7536 -a 0 -x {10.0 9.0 3763 ------- null} - -t 4.26525 -s 0 -d 9 -p ack -e 40 -c 0 -i 7536 -a 0 -x {10.0 9.0 3763 ------- null} h -t 4.26525 -s 0 -d 9 -p ack -e 40 -c 0 -i 7536 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.26528 -s 10 -d 7 -p ack -e 40 -c 0 -i 7540 -a 0 -x {10.0 9.0 3765 ------- null} + -t 4.26528 -s 7 -d 0 -p ack -e 40 -c 0 -i 7540 -a 0 -x {10.0 9.0 3765 ------- null} h -t 4.26528 -s 7 -d 8 -p ack -e 40 -c 0 -i 7540 -a 0 -x {10.0 9.0 3765 ------- null} r -t 4.26541 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7539 -a 0 -x {9.0 10.0 3774 ------- null} + -t 4.26541 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7539 -a 0 -x {9.0 10.0 3774 ------- null} h -t 4.26541 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7539 -a 0 -x {9.0 10.0 3774 ------- null} r -t 4.26542 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7525 -a 0 -x {9.0 10.0 3767 ------- null} + -t 4.26542 -s 10 -d 7 -p ack -e 40 -c 0 -i 7544 -a 0 -x {10.0 9.0 3767 ------- null} - -t 4.26542 -s 10 -d 7 -p ack -e 40 -c 0 -i 7544 -a 0 -x {10.0 9.0 3767 ------- null} h -t 4.26542 -s 10 -d 7 -p ack -e 40 -c 0 -i 7544 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.26605 -s 0 -d 9 -p ack -e 40 -c 0 -i 7534 -a 0 -x {10.0 9.0 3762 ------- null} + -t 4.26605 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7545 -a 0 -x {9.0 10.0 3777 ------- null} - -t 4.26605 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7545 -a 0 -x {9.0 10.0 3777 ------- null} h -t 4.26605 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7545 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.26619 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7531 -a 0 -x {9.0 10.0 3770 ------- null} - -t 4.26619 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7531 -a 0 -x {9.0 10.0 3770 ------- null} h -t 4.26619 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7531 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.26637 -s 10 -d 7 -p ack -e 40 -c 0 -i 7542 -a 0 -x {10.0 9.0 3766 ------- null} + -t 4.26637 -s 7 -d 0 -p ack -e 40 -c 0 -i 7542 -a 0 -x {10.0 9.0 3766 ------- null} h -t 4.26637 -s 7 -d 8 -p ack -e 40 -c 0 -i 7542 -a 0 -x {10.0 9.0 3766 ------- null} + -t 4.2665 -s 0 -d 9 -p ack -e 40 -c 0 -i 7538 -a 0 -x {10.0 9.0 3764 ------- null} - -t 4.2665 -s 0 -d 9 -p ack -e 40 -c 0 -i 7538 -a 0 -x {10.0 9.0 3764 ------- null} h -t 4.2665 -s 0 -d 9 -p ack -e 40 -c 0 -i 7538 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.26651 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7527 -a 0 -x {9.0 10.0 3768 ------- null} + -t 4.26651 -s 10 -d 7 -p ack -e 40 -c 0 -i 7546 -a 0 -x {10.0 9.0 3768 ------- null} - -t 4.26651 -s 10 -d 7 -p ack -e 40 -c 0 -i 7546 -a 0 -x {10.0 9.0 3768 ------- null} h -t 4.26651 -s 10 -d 7 -p ack -e 40 -c 0 -i 7546 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.26656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7541 -a 0 -x {9.0 10.0 3775 ------- null} + -t 4.26656 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7541 -a 0 -x {9.0 10.0 3775 ------- null} h -t 4.26656 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7541 -a 0 -x {9.0 10.0 3775 ------- null} r -t 4.26728 -s 0 -d 9 -p ack -e 40 -c 0 -i 7536 -a 0 -x {10.0 9.0 3763 ------- null} + -t 4.26728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7547 -a 0 -x {9.0 10.0 3778 ------- null} - -t 4.26728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7547 -a 0 -x {9.0 10.0 3778 ------- null} h -t 4.26728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7547 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.26734 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7533 -a 0 -x {9.0 10.0 3771 ------- null} - -t 4.26734 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7533 -a 0 -x {9.0 10.0 3771 ------- null} h -t 4.26734 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7533 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.26746 -s 10 -d 7 -p ack -e 40 -c 0 -i 7544 -a 0 -x {10.0 9.0 3767 ------- null} + -t 4.26746 -s 7 -d 0 -p ack -e 40 -c 0 -i 7544 -a 0 -x {10.0 9.0 3767 ------- null} h -t 4.26746 -s 7 -d 8 -p ack -e 40 -c 0 -i 7544 -a 0 -x {10.0 9.0 3767 ------- null} + -t 4.26754 -s 0 -d 9 -p ack -e 40 -c 0 -i 7540 -a 0 -x {10.0 9.0 3765 ------- null} - -t 4.26754 -s 0 -d 9 -p ack -e 40 -c 0 -i 7540 -a 0 -x {10.0 9.0 3765 ------- null} h -t 4.26754 -s 0 -d 9 -p ack -e 40 -c 0 -i 7540 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.26755 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7543 -a 0 -x {9.0 10.0 3776 ------- null} + -t 4.26755 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7543 -a 0 -x {9.0 10.0 3776 ------- null} h -t 4.26755 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7543 -a 0 -x {9.0 10.0 3776 ------- null} r -t 4.26776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7529 -a 0 -x {9.0 10.0 3769 ------- null} + -t 4.26776 -s 10 -d 7 -p ack -e 40 -c 0 -i 7548 -a 0 -x {10.0 9.0 3769 ------- null} - -t 4.26776 -s 10 -d 7 -p ack -e 40 -c 0 -i 7548 -a 0 -x {10.0 9.0 3769 ------- null} h -t 4.26776 -s 10 -d 7 -p ack -e 40 -c 0 -i 7548 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.26843 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7535 -a 0 -x {9.0 10.0 3772 ------- null} - -t 4.26843 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7535 -a 0 -x {9.0 10.0 3772 ------- null} h -t 4.26843 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7535 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.26853 -s 0 -d 9 -p ack -e 40 -c 0 -i 7538 -a 0 -x {10.0 9.0 3764 ------- null} + -t 4.26853 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7549 -a 0 -x {9.0 10.0 3779 ------- null} - -t 4.26853 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7549 -a 0 -x {9.0 10.0 3779 ------- null} h -t 4.26853 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7549 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.26854 -s 10 -d 7 -p ack -e 40 -c 0 -i 7546 -a 0 -x {10.0 9.0 3768 ------- null} + -t 4.26854 -s 7 -d 0 -p ack -e 40 -c 0 -i 7546 -a 0 -x {10.0 9.0 3768 ------- null} h -t 4.26854 -s 7 -d 8 -p ack -e 40 -c 0 -i 7546 -a 0 -x {10.0 9.0 3768 ------- null} + -t 4.26856 -s 0 -d 9 -p ack -e 40 -c 0 -i 7542 -a 0 -x {10.0 9.0 3766 ------- null} - -t 4.26856 -s 0 -d 9 -p ack -e 40 -c 0 -i 7542 -a 0 -x {10.0 9.0 3766 ------- null} h -t 4.26856 -s 0 -d 9 -p ack -e 40 -c 0 -i 7542 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.26885 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7545 -a 0 -x {9.0 10.0 3777 ------- null} + -t 4.26885 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7545 -a 0 -x {9.0 10.0 3777 ------- null} h -t 4.26885 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7545 -a 0 -x {9.0 10.0 3777 ------- null} r -t 4.26899 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7531 -a 0 -x {9.0 10.0 3770 ------- null} + -t 4.26899 -s 10 -d 7 -p ack -e 40 -c 0 -i 7550 -a 0 -x {10.0 9.0 3770 ------- null} - -t 4.26899 -s 10 -d 7 -p ack -e 40 -c 0 -i 7550 -a 0 -x {10.0 9.0 3770 ------- null} h -t 4.26899 -s 10 -d 7 -p ack -e 40 -c 0 -i 7550 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.26952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7537 -a 0 -x {9.0 10.0 3773 ------- null} - -t 4.26952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7537 -a 0 -x {9.0 10.0 3773 ------- null} h -t 4.26952 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7537 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.26957 -s 0 -d 9 -p ack -e 40 -c 0 -i 7540 -a 0 -x {10.0 9.0 3765 ------- null} + -t 4.26957 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7551 -a 0 -x {9.0 10.0 3780 ------- null} - -t 4.26957 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7551 -a 0 -x {9.0 10.0 3780 ------- null} h -t 4.26957 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7551 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.26979 -s 10 -d 7 -p ack -e 40 -c 0 -i 7548 -a 0 -x {10.0 9.0 3769 ------- null} + -t 4.26979 -s 7 -d 0 -p ack -e 40 -c 0 -i 7548 -a 0 -x {10.0 9.0 3769 ------- null} h -t 4.26979 -s 7 -d 8 -p ack -e 40 -c 0 -i 7548 -a 0 -x {10.0 9.0 3769 ------- null} + -t 4.26981 -s 0 -d 9 -p ack -e 40 -c 0 -i 7544 -a 0 -x {10.0 9.0 3767 ------- null} - -t 4.26981 -s 0 -d 9 -p ack -e 40 -c 0 -i 7544 -a 0 -x {10.0 9.0 3767 ------- null} h -t 4.26981 -s 0 -d 9 -p ack -e 40 -c 0 -i 7544 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.27008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7547 -a 0 -x {9.0 10.0 3778 ------- null} + -t 4.27008 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7547 -a 0 -x {9.0 10.0 3778 ------- null} h -t 4.27008 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7547 -a 0 -x {9.0 10.0 3778 ------- null} r -t 4.27014 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7533 -a 0 -x {9.0 10.0 3771 ------- null} + -t 4.27014 -s 10 -d 7 -p ack -e 40 -c 0 -i 7552 -a 0 -x {10.0 9.0 3771 ------- null} - -t 4.27014 -s 10 -d 7 -p ack -e 40 -c 0 -i 7552 -a 0 -x {10.0 9.0 3771 ------- null} h -t 4.27014 -s 10 -d 7 -p ack -e 40 -c 0 -i 7552 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.27059 -s 0 -d 9 -p ack -e 40 -c 0 -i 7542 -a 0 -x {10.0 9.0 3766 ------- null} + -t 4.27059 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7553 -a 0 -x {9.0 10.0 3781 ------- null} - -t 4.27059 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7553 -a 0 -x {9.0 10.0 3781 ------- null} h -t 4.27059 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7553 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.27078 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7539 -a 0 -x {9.0 10.0 3774 ------- null} - -t 4.27078 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7539 -a 0 -x {9.0 10.0 3774 ------- null} h -t 4.27078 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7539 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.27098 -s 0 -d 9 -p ack -e 40 -c 0 -i 7546 -a 0 -x {10.0 9.0 3768 ------- null} - -t 4.27098 -s 0 -d 9 -p ack -e 40 -c 0 -i 7546 -a 0 -x {10.0 9.0 3768 ------- null} h -t 4.27098 -s 0 -d 9 -p ack -e 40 -c 0 -i 7546 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.27102 -s 10 -d 7 -p ack -e 40 -c 0 -i 7550 -a 0 -x {10.0 9.0 3770 ------- null} + -t 4.27102 -s 7 -d 0 -p ack -e 40 -c 0 -i 7550 -a 0 -x {10.0 9.0 3770 ------- null} h -t 4.27102 -s 7 -d 8 -p ack -e 40 -c 0 -i 7550 -a 0 -x {10.0 9.0 3770 ------- null} r -t 4.27123 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7535 -a 0 -x {9.0 10.0 3772 ------- null} + -t 4.27123 -s 10 -d 7 -p ack -e 40 -c 0 -i 7554 -a 0 -x {10.0 9.0 3772 ------- null} - -t 4.27123 -s 10 -d 7 -p ack -e 40 -c 0 -i 7554 -a 0 -x {10.0 9.0 3772 ------- null} h -t 4.27123 -s 10 -d 7 -p ack -e 40 -c 0 -i 7554 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.27133 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7549 -a 0 -x {9.0 10.0 3779 ------- null} + -t 4.27133 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7549 -a 0 -x {9.0 10.0 3779 ------- null} h -t 4.27133 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7549 -a 0 -x {9.0 10.0 3779 ------- null} r -t 4.27184 -s 0 -d 9 -p ack -e 40 -c 0 -i 7544 -a 0 -x {10.0 9.0 3767 ------- null} + -t 4.27184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7555 -a 0 -x {9.0 10.0 3782 ------- null} - -t 4.27184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7555 -a 0 -x {9.0 10.0 3782 ------- null} h -t 4.27184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7555 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.27187 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7541 -a 0 -x {9.0 10.0 3775 ------- null} - -t 4.27187 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7541 -a 0 -x {9.0 10.0 3775 ------- null} h -t 4.27187 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7541 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.27195 -s 0 -d 9 -p ack -e 40 -c 0 -i 7548 -a 0 -x {10.0 9.0 3769 ------- null} - -t 4.27195 -s 0 -d 9 -p ack -e 40 -c 0 -i 7548 -a 0 -x {10.0 9.0 3769 ------- null} h -t 4.27195 -s 0 -d 9 -p ack -e 40 -c 0 -i 7548 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.27218 -s 10 -d 7 -p ack -e 40 -c 0 -i 7552 -a 0 -x {10.0 9.0 3771 ------- null} + -t 4.27218 -s 7 -d 0 -p ack -e 40 -c 0 -i 7552 -a 0 -x {10.0 9.0 3771 ------- null} h -t 4.27218 -s 7 -d 8 -p ack -e 40 -c 0 -i 7552 -a 0 -x {10.0 9.0 3771 ------- null} r -t 4.27232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7537 -a 0 -x {9.0 10.0 3773 ------- null} + -t 4.27232 -s 10 -d 7 -p ack -e 40 -c 0 -i 7556 -a 0 -x {10.0 9.0 3773 ------- null} - -t 4.27232 -s 10 -d 7 -p ack -e 40 -c 0 -i 7556 -a 0 -x {10.0 9.0 3773 ------- null} h -t 4.27232 -s 10 -d 7 -p ack -e 40 -c 0 -i 7556 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.27237 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7551 -a 0 -x {9.0 10.0 3780 ------- null} + -t 4.27237 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7551 -a 0 -x {9.0 10.0 3780 ------- null} h -t 4.27237 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7551 -a 0 -x {9.0 10.0 3780 ------- null} + -t 4.27296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7543 -a 0 -x {9.0 10.0 3776 ------- null} - -t 4.27296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7543 -a 0 -x {9.0 10.0 3776 ------- null} h -t 4.27296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7543 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.27301 -s 0 -d 9 -p ack -e 40 -c 0 -i 7546 -a 0 -x {10.0 9.0 3768 ------- null} + -t 4.27301 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7557 -a 0 -x {9.0 10.0 3783 ------- null} - -t 4.27301 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7557 -a 0 -x {9.0 10.0 3783 ------- null} h -t 4.27301 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7557 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.27306 -s 0 -d 9 -p ack -e 40 -c 0 -i 7550 -a 0 -x {10.0 9.0 3770 ------- null} - -t 4.27306 -s 0 -d 9 -p ack -e 40 -c 0 -i 7550 -a 0 -x {10.0 9.0 3770 ------- null} h -t 4.27306 -s 0 -d 9 -p ack -e 40 -c 0 -i 7550 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.27326 -s 10 -d 7 -p ack -e 40 -c 0 -i 7554 -a 0 -x {10.0 9.0 3772 ------- null} + -t 4.27326 -s 7 -d 0 -p ack -e 40 -c 0 -i 7554 -a 0 -x {10.0 9.0 3772 ------- null} h -t 4.27326 -s 7 -d 8 -p ack -e 40 -c 0 -i 7554 -a 0 -x {10.0 9.0 3772 ------- null} r -t 4.27339 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7553 -a 0 -x {9.0 10.0 3781 ------- null} + -t 4.27339 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7553 -a 0 -x {9.0 10.0 3781 ------- null} h -t 4.27339 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7553 -a 0 -x {9.0 10.0 3781 ------- null} r -t 4.27358 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7539 -a 0 -x {9.0 10.0 3774 ------- null} + -t 4.27358 -s 10 -d 7 -p ack -e 40 -c 0 -i 7558 -a 0 -x {10.0 9.0 3774 ------- null} - -t 4.27358 -s 10 -d 7 -p ack -e 40 -c 0 -i 7558 -a 0 -x {10.0 9.0 3774 ------- null} h -t 4.27358 -s 10 -d 7 -p ack -e 40 -c 0 -i 7558 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.27398 -s 0 -d 9 -p ack -e 40 -c 0 -i 7548 -a 0 -x {10.0 9.0 3769 ------- null} + -t 4.27398 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7559 -a 0 -x {9.0 10.0 3784 ------- null} - -t 4.27398 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7559 -a 0 -x {9.0 10.0 3784 ------- null} h -t 4.27398 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7559 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.27405 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7545 -a 0 -x {9.0 10.0 3777 ------- null} - -t 4.27405 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7545 -a 0 -x {9.0 10.0 3777 ------- null} h -t 4.27405 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7545 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.27411 -s 0 -d 9 -p ack -e 40 -c 0 -i 7552 -a 0 -x {10.0 9.0 3771 ------- null} - -t 4.27411 -s 0 -d 9 -p ack -e 40 -c 0 -i 7552 -a 0 -x {10.0 9.0 3771 ------- null} h -t 4.27411 -s 0 -d 9 -p ack -e 40 -c 0 -i 7552 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.27435 -s 10 -d 7 -p ack -e 40 -c 0 -i 7556 -a 0 -x {10.0 9.0 3773 ------- null} + -t 4.27435 -s 7 -d 0 -p ack -e 40 -c 0 -i 7556 -a 0 -x {10.0 9.0 3773 ------- null} h -t 4.27435 -s 7 -d 8 -p ack -e 40 -c 0 -i 7556 -a 0 -x {10.0 9.0 3773 ------- null} r -t 4.27464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7555 -a 0 -x {9.0 10.0 3782 ------- null} + -t 4.27464 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7555 -a 0 -x {9.0 10.0 3782 ------- null} h -t 4.27464 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7555 -a 0 -x {9.0 10.0 3782 ------- null} r -t 4.27467 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7541 -a 0 -x {9.0 10.0 3775 ------- null} + -t 4.27467 -s 10 -d 7 -p ack -e 40 -c 0 -i 7560 -a 0 -x {10.0 9.0 3775 ------- null} - -t 4.27467 -s 10 -d 7 -p ack -e 40 -c 0 -i 7560 -a 0 -x {10.0 9.0 3775 ------- null} h -t 4.27467 -s 10 -d 7 -p ack -e 40 -c 0 -i 7560 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.27509 -s 0 -d 9 -p ack -e 40 -c 0 -i 7550 -a 0 -x {10.0 9.0 3770 ------- null} + -t 4.27509 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7561 -a 0 -x {9.0 10.0 3785 ------- null} - -t 4.27509 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7561 -a 0 -x {9.0 10.0 3785 ------- null} h -t 4.27509 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7561 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.27514 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7547 -a 0 -x {9.0 10.0 3778 ------- null} - -t 4.27514 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7547 -a 0 -x {9.0 10.0 3778 ------- null} h -t 4.27514 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7547 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.27539 -s 0 -d 9 -p ack -e 40 -c 0 -i 7554 -a 0 -x {10.0 9.0 3772 ------- null} - -t 4.27539 -s 0 -d 9 -p ack -e 40 -c 0 -i 7554 -a 0 -x {10.0 9.0 3772 ------- null} h -t 4.27539 -s 0 -d 9 -p ack -e 40 -c 0 -i 7554 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.27562 -s 10 -d 7 -p ack -e 40 -c 0 -i 7558 -a 0 -x {10.0 9.0 3774 ------- null} + -t 4.27562 -s 7 -d 0 -p ack -e 40 -c 0 -i 7558 -a 0 -x {10.0 9.0 3774 ------- null} h -t 4.27562 -s 7 -d 8 -p ack -e 40 -c 0 -i 7558 -a 0 -x {10.0 9.0 3774 ------- null} r -t 4.27576 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7543 -a 0 -x {9.0 10.0 3776 ------- null} + -t 4.27576 -s 10 -d 7 -p ack -e 40 -c 0 -i 7562 -a 0 -x {10.0 9.0 3776 ------- null} - -t 4.27576 -s 10 -d 7 -p ack -e 40 -c 0 -i 7562 -a 0 -x {10.0 9.0 3776 ------- null} h -t 4.27576 -s 10 -d 7 -p ack -e 40 -c 0 -i 7562 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.27581 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7557 -a 0 -x {9.0 10.0 3783 ------- null} + -t 4.27581 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7557 -a 0 -x {9.0 10.0 3783 ------- null} h -t 4.27581 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7557 -a 0 -x {9.0 10.0 3783 ------- null} r -t 4.27614 -s 0 -d 9 -p ack -e 40 -c 0 -i 7552 -a 0 -x {10.0 9.0 3771 ------- null} + -t 4.27614 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7563 -a 0 -x {9.0 10.0 3786 ------- null} - -t 4.27614 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7563 -a 0 -x {9.0 10.0 3786 ------- null} h -t 4.27614 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7563 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.27622 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7549 -a 0 -x {9.0 10.0 3779 ------- null} - -t 4.27622 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7549 -a 0 -x {9.0 10.0 3779 ------- null} h -t 4.27622 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7549 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.2765 -s 0 -d 9 -p ack -e 40 -c 0 -i 7556 -a 0 -x {10.0 9.0 3773 ------- null} - -t 4.2765 -s 0 -d 9 -p ack -e 40 -c 0 -i 7556 -a 0 -x {10.0 9.0 3773 ------- null} h -t 4.2765 -s 0 -d 9 -p ack -e 40 -c 0 -i 7556 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.2767 -s 10 -d 7 -p ack -e 40 -c 0 -i 7560 -a 0 -x {10.0 9.0 3775 ------- null} + -t 4.2767 -s 7 -d 0 -p ack -e 40 -c 0 -i 7560 -a 0 -x {10.0 9.0 3775 ------- null} h -t 4.2767 -s 7 -d 8 -p ack -e 40 -c 0 -i 7560 -a 0 -x {10.0 9.0 3775 ------- null} r -t 4.27678 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7559 -a 0 -x {9.0 10.0 3784 ------- null} + -t 4.27678 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7559 -a 0 -x {9.0 10.0 3784 ------- null} h -t 4.27678 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7559 -a 0 -x {9.0 10.0 3784 ------- null} r -t 4.27685 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7545 -a 0 -x {9.0 10.0 3777 ------- null} + -t 4.27685 -s 10 -d 7 -p ack -e 40 -c 0 -i 7564 -a 0 -x {10.0 9.0 3777 ------- null} - -t 4.27685 -s 10 -d 7 -p ack -e 40 -c 0 -i 7564 -a 0 -x {10.0 9.0 3777 ------- null} h -t 4.27685 -s 10 -d 7 -p ack -e 40 -c 0 -i 7564 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.27742 -s 0 -d 9 -p ack -e 40 -c 0 -i 7554 -a 0 -x {10.0 9.0 3772 ------- null} + -t 4.27742 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7565 -a 0 -x {9.0 10.0 3787 ------- null} - -t 4.27742 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7565 -a 0 -x {9.0 10.0 3787 ------- null} h -t 4.27742 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7565 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.27752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7551 -a 0 -x {9.0 10.0 3780 ------- null} - -t 4.27752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7551 -a 0 -x {9.0 10.0 3780 ------- null} h -t 4.27752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7551 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.27762 -s 0 -d 9 -p ack -e 40 -c 0 -i 7558 -a 0 -x {10.0 9.0 3774 ------- null} - -t 4.27762 -s 0 -d 9 -p ack -e 40 -c 0 -i 7558 -a 0 -x {10.0 9.0 3774 ------- null} h -t 4.27762 -s 0 -d 9 -p ack -e 40 -c 0 -i 7558 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.27779 -s 10 -d 7 -p ack -e 40 -c 0 -i 7562 -a 0 -x {10.0 9.0 3776 ------- null} + -t 4.27779 -s 7 -d 0 -p ack -e 40 -c 0 -i 7562 -a 0 -x {10.0 9.0 3776 ------- null} h -t 4.27779 -s 7 -d 8 -p ack -e 40 -c 0 -i 7562 -a 0 -x {10.0 9.0 3776 ------- null} r -t 4.27789 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7561 -a 0 -x {9.0 10.0 3785 ------- null} + -t 4.27789 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7561 -a 0 -x {9.0 10.0 3785 ------- null} h -t 4.27789 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7561 -a 0 -x {9.0 10.0 3785 ------- null} r -t 4.27794 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7547 -a 0 -x {9.0 10.0 3778 ------- null} + -t 4.27794 -s 10 -d 7 -p ack -e 40 -c 0 -i 7566 -a 0 -x {10.0 9.0 3778 ------- null} - -t 4.27794 -s 10 -d 7 -p ack -e 40 -c 0 -i 7566 -a 0 -x {10.0 9.0 3778 ------- null} h -t 4.27794 -s 10 -d 7 -p ack -e 40 -c 0 -i 7566 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.27853 -s 0 -d 9 -p ack -e 40 -c 0 -i 7556 -a 0 -x {10.0 9.0 3773 ------- null} + -t 4.27853 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7567 -a 0 -x {9.0 10.0 3788 ------- null} - -t 4.27853 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7567 -a 0 -x {9.0 10.0 3788 ------- null} h -t 4.27853 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7567 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.27861 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7553 -a 0 -x {9.0 10.0 3781 ------- null} - -t 4.27861 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7553 -a 0 -x {9.0 10.0 3781 ------- null} h -t 4.27861 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7553 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.27888 -s 10 -d 7 -p ack -e 40 -c 0 -i 7564 -a 0 -x {10.0 9.0 3777 ------- null} + -t 4.27888 -s 7 -d 0 -p ack -e 40 -c 0 -i 7564 -a 0 -x {10.0 9.0 3777 ------- null} h -t 4.27888 -s 7 -d 8 -p ack -e 40 -c 0 -i 7564 -a 0 -x {10.0 9.0 3777 ------- null} + -t 4.27891 -s 0 -d 9 -p ack -e 40 -c 0 -i 7560 -a 0 -x {10.0 9.0 3775 ------- null} - -t 4.27891 -s 0 -d 9 -p ack -e 40 -c 0 -i 7560 -a 0 -x {10.0 9.0 3775 ------- null} h -t 4.27891 -s 0 -d 9 -p ack -e 40 -c 0 -i 7560 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.27894 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7563 -a 0 -x {9.0 10.0 3786 ------- null} + -t 4.27894 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7563 -a 0 -x {9.0 10.0 3786 ------- null} h -t 4.27894 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7563 -a 0 -x {9.0 10.0 3786 ------- null} r -t 4.27902 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7549 -a 0 -x {9.0 10.0 3779 ------- null} + -t 4.27902 -s 10 -d 7 -p ack -e 40 -c 0 -i 7568 -a 0 -x {10.0 9.0 3779 ------- null} - -t 4.27902 -s 10 -d 7 -p ack -e 40 -c 0 -i 7568 -a 0 -x {10.0 9.0 3779 ------- null} h -t 4.27902 -s 10 -d 7 -p ack -e 40 -c 0 -i 7568 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.27965 -s 0 -d 9 -p ack -e 40 -c 0 -i 7558 -a 0 -x {10.0 9.0 3774 ------- null} + -t 4.27965 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7569 -a 0 -x {9.0 10.0 3789 ------- null} - -t 4.27965 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7569 -a 0 -x {9.0 10.0 3789 ------- null} h -t 4.27965 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7569 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.27995 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7555 -a 0 -x {9.0 10.0 3782 ------- null} - -t 4.27995 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7555 -a 0 -x {9.0 10.0 3782 ------- null} h -t 4.27995 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7555 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.27997 -s 10 -d 7 -p ack -e 40 -c 0 -i 7566 -a 0 -x {10.0 9.0 3778 ------- null} + -t 4.27997 -s 7 -d 0 -p ack -e 40 -c 0 -i 7566 -a 0 -x {10.0 9.0 3778 ------- null} h -t 4.27997 -s 7 -d 8 -p ack -e 40 -c 0 -i 7566 -a 0 -x {10.0 9.0 3778 ------- null} + -t 4.28013 -s 0 -d 9 -p ack -e 40 -c 0 -i 7562 -a 0 -x {10.0 9.0 3776 ------- null} - -t 4.28013 -s 0 -d 9 -p ack -e 40 -c 0 -i 7562 -a 0 -x {10.0 9.0 3776 ------- null} h -t 4.28013 -s 0 -d 9 -p ack -e 40 -c 0 -i 7562 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.28022 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7565 -a 0 -x {9.0 10.0 3787 ------- null} + -t 4.28022 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7565 -a 0 -x {9.0 10.0 3787 ------- null} h -t 4.28022 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7565 -a 0 -x {9.0 10.0 3787 ------- null} r -t 4.28032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7551 -a 0 -x {9.0 10.0 3780 ------- null} + -t 4.28032 -s 10 -d 7 -p ack -e 40 -c 0 -i 7570 -a 0 -x {10.0 9.0 3780 ------- null} - -t 4.28032 -s 10 -d 7 -p ack -e 40 -c 0 -i 7570 -a 0 -x {10.0 9.0 3780 ------- null} h -t 4.28032 -s 10 -d 7 -p ack -e 40 -c 0 -i 7570 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.28094 -s 0 -d 9 -p ack -e 40 -c 0 -i 7560 -a 0 -x {10.0 9.0 3775 ------- null} + -t 4.28094 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7571 -a 0 -x {9.0 10.0 3790 ------- null} - -t 4.28094 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7571 -a 0 -x {9.0 10.0 3790 ------- null} h -t 4.28094 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7571 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.28104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7557 -a 0 -x {9.0 10.0 3783 ------- null} - -t 4.28104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7557 -a 0 -x {9.0 10.0 3783 ------- null} h -t 4.28104 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7557 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.28106 -s 10 -d 7 -p ack -e 40 -c 0 -i 7568 -a 0 -x {10.0 9.0 3779 ------- null} + -t 4.28106 -s 7 -d 0 -p ack -e 40 -c 0 -i 7568 -a 0 -x {10.0 9.0 3779 ------- null} h -t 4.28106 -s 7 -d 8 -p ack -e 40 -c 0 -i 7568 -a 0 -x {10.0 9.0 3779 ------- null} + -t 4.28112 -s 0 -d 9 -p ack -e 40 -c 0 -i 7564 -a 0 -x {10.0 9.0 3777 ------- null} - -t 4.28112 -s 0 -d 9 -p ack -e 40 -c 0 -i 7564 -a 0 -x {10.0 9.0 3777 ------- null} h -t 4.28112 -s 0 -d 9 -p ack -e 40 -c 0 -i 7564 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.28133 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7567 -a 0 -x {9.0 10.0 3788 ------- null} + -t 4.28133 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7567 -a 0 -x {9.0 10.0 3788 ------- null} h -t 4.28133 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7567 -a 0 -x {9.0 10.0 3788 ------- null} r -t 4.28141 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7553 -a 0 -x {9.0 10.0 3781 ------- null} + -t 4.28141 -s 10 -d 7 -p ack -e 40 -c 0 -i 7572 -a 0 -x {10.0 9.0 3781 ------- null} - -t 4.28141 -s 10 -d 7 -p ack -e 40 -c 0 -i 7572 -a 0 -x {10.0 9.0 3781 ------- null} h -t 4.28141 -s 10 -d 7 -p ack -e 40 -c 0 -i 7572 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.28213 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7559 -a 0 -x {9.0 10.0 3784 ------- null} - -t 4.28213 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7559 -a 0 -x {9.0 10.0 3784 ------- null} h -t 4.28213 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7559 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.28216 -s 0 -d 9 -p ack -e 40 -c 0 -i 7562 -a 0 -x {10.0 9.0 3776 ------- null} + -t 4.28216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7573 -a 0 -x {9.0 10.0 3791 ------- null} - -t 4.28216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7573 -a 0 -x {9.0 10.0 3791 ------- null} h -t 4.28216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7573 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.28232 -s 0 -d 9 -p ack -e 40 -c 0 -i 7566 -a 0 -x {10.0 9.0 3778 ------- null} - -t 4.28232 -s 0 -d 9 -p ack -e 40 -c 0 -i 7566 -a 0 -x {10.0 9.0 3778 ------- null} h -t 4.28232 -s 0 -d 9 -p ack -e 40 -c 0 -i 7566 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.28235 -s 10 -d 7 -p ack -e 40 -c 0 -i 7570 -a 0 -x {10.0 9.0 3780 ------- null} + -t 4.28235 -s 7 -d 0 -p ack -e 40 -c 0 -i 7570 -a 0 -x {10.0 9.0 3780 ------- null} h -t 4.28235 -s 7 -d 8 -p ack -e 40 -c 0 -i 7570 -a 0 -x {10.0 9.0 3780 ------- null} r -t 4.28245 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7569 -a 0 -x {9.0 10.0 3789 ------- null} + -t 4.28245 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7569 -a 0 -x {9.0 10.0 3789 ------- null} h -t 4.28245 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7569 -a 0 -x {9.0 10.0 3789 ------- null} r -t 4.28275 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7555 -a 0 -x {9.0 10.0 3782 ------- null} + -t 4.28275 -s 10 -d 7 -p ack -e 40 -c 0 -i 7574 -a 0 -x {10.0 9.0 3782 ------- null} - -t 4.28275 -s 10 -d 7 -p ack -e 40 -c 0 -i 7574 -a 0 -x {10.0 9.0 3782 ------- null} h -t 4.28275 -s 10 -d 7 -p ack -e 40 -c 0 -i 7574 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.28315 -s 0 -d 9 -p ack -e 40 -c 0 -i 7564 -a 0 -x {10.0 9.0 3777 ------- null} + -t 4.28315 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7575 -a 0 -x {9.0 10.0 3792 ------- null} - -t 4.28315 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7575 -a 0 -x {9.0 10.0 3792 ------- null} h -t 4.28315 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7575 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.28322 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7561 -a 0 -x {9.0 10.0 3785 ------- null} - -t 4.28322 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7561 -a 0 -x {9.0 10.0 3785 ------- null} h -t 4.28322 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7561 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.28344 -s 0 -d 9 -p ack -e 40 -c 0 -i 7568 -a 0 -x {10.0 9.0 3779 ------- null} - -t 4.28344 -s 0 -d 9 -p ack -e 40 -c 0 -i 7568 -a 0 -x {10.0 9.0 3779 ------- null} h -t 4.28344 -s 0 -d 9 -p ack -e 40 -c 0 -i 7568 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.28344 -s 10 -d 7 -p ack -e 40 -c 0 -i 7572 -a 0 -x {10.0 9.0 3781 ------- null} + -t 4.28344 -s 7 -d 0 -p ack -e 40 -c 0 -i 7572 -a 0 -x {10.0 9.0 3781 ------- null} h -t 4.28344 -s 7 -d 8 -p ack -e 40 -c 0 -i 7572 -a 0 -x {10.0 9.0 3781 ------- null} r -t 4.28374 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7571 -a 0 -x {9.0 10.0 3790 ------- null} + -t 4.28374 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7571 -a 0 -x {9.0 10.0 3790 ------- null} h -t 4.28374 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7571 -a 0 -x {9.0 10.0 3790 ------- null} r -t 4.28384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7557 -a 0 -x {9.0 10.0 3783 ------- null} + -t 4.28384 -s 10 -d 7 -p ack -e 40 -c 0 -i 7576 -a 0 -x {10.0 9.0 3783 ------- null} - -t 4.28384 -s 10 -d 7 -p ack -e 40 -c 0 -i 7576 -a 0 -x {10.0 9.0 3783 ------- null} h -t 4.28384 -s 10 -d 7 -p ack -e 40 -c 0 -i 7576 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.2843 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7563 -a 0 -x {9.0 10.0 3786 ------- null} - -t 4.2843 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7563 -a 0 -x {9.0 10.0 3786 ------- null} h -t 4.2843 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7563 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.28435 -s 0 -d 9 -p ack -e 40 -c 0 -i 7566 -a 0 -x {10.0 9.0 3778 ------- null} + -t 4.28435 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7577 -a 0 -x {9.0 10.0 3793 ------- null} - -t 4.28435 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7577 -a 0 -x {9.0 10.0 3793 ------- null} h -t 4.28435 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7577 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.28453 -s 0 -d 9 -p ack -e 40 -c 0 -i 7570 -a 0 -x {10.0 9.0 3780 ------- null} - -t 4.28453 -s 0 -d 9 -p ack -e 40 -c 0 -i 7570 -a 0 -x {10.0 9.0 3780 ------- null} h -t 4.28453 -s 0 -d 9 -p ack -e 40 -c 0 -i 7570 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.28478 -s 10 -d 7 -p ack -e 40 -c 0 -i 7574 -a 0 -x {10.0 9.0 3782 ------- null} + -t 4.28478 -s 7 -d 0 -p ack -e 40 -c 0 -i 7574 -a 0 -x {10.0 9.0 3782 ------- null} h -t 4.28478 -s 7 -d 8 -p ack -e 40 -c 0 -i 7574 -a 0 -x {10.0 9.0 3782 ------- null} r -t 4.28493 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7559 -a 0 -x {9.0 10.0 3784 ------- null} + -t 4.28493 -s 10 -d 7 -p ack -e 40 -c 0 -i 7578 -a 0 -x {10.0 9.0 3784 ------- null} - -t 4.28493 -s 10 -d 7 -p ack -e 40 -c 0 -i 7578 -a 0 -x {10.0 9.0 3784 ------- null} h -t 4.28493 -s 10 -d 7 -p ack -e 40 -c 0 -i 7578 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.28496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7573 -a 0 -x {9.0 10.0 3791 ------- null} + -t 4.28496 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7573 -a 0 -x {9.0 10.0 3791 ------- null} h -t 4.28496 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7573 -a 0 -x {9.0 10.0 3791 ------- null} + -t 4.28539 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7565 -a 0 -x {9.0 10.0 3787 ------- null} - -t 4.28539 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7565 -a 0 -x {9.0 10.0 3787 ------- null} h -t 4.28539 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7565 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.28547 -s 0 -d 9 -p ack -e 40 -c 0 -i 7568 -a 0 -x {10.0 9.0 3779 ------- null} + -t 4.28547 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7579 -a 0 -x {9.0 10.0 3794 ------- null} - -t 4.28547 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7579 -a 0 -x {9.0 10.0 3794 ------- null} h -t 4.28547 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7579 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.28555 -s 0 -d 9 -p ack -e 40 -c 0 -i 7572 -a 0 -x {10.0 9.0 3781 ------- null} - -t 4.28555 -s 0 -d 9 -p ack -e 40 -c 0 -i 7572 -a 0 -x {10.0 9.0 3781 ------- null} h -t 4.28555 -s 0 -d 9 -p ack -e 40 -c 0 -i 7572 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.28587 -s 10 -d 7 -p ack -e 40 -c 0 -i 7576 -a 0 -x {10.0 9.0 3783 ------- null} + -t 4.28587 -s 7 -d 0 -p ack -e 40 -c 0 -i 7576 -a 0 -x {10.0 9.0 3783 ------- null} h -t 4.28587 -s 7 -d 8 -p ack -e 40 -c 0 -i 7576 -a 0 -x {10.0 9.0 3783 ------- null} r -t 4.28595 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7575 -a 0 -x {9.0 10.0 3792 ------- null} + -t 4.28595 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7575 -a 0 -x {9.0 10.0 3792 ------- null} h -t 4.28595 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7575 -a 0 -x {9.0 10.0 3792 ------- null} r -t 4.28602 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7561 -a 0 -x {9.0 10.0 3785 ------- null} + -t 4.28602 -s 10 -d 7 -p ack -e 40 -c 0 -i 7580 -a 0 -x {10.0 9.0 3785 ------- null} - -t 4.28602 -s 10 -d 7 -p ack -e 40 -c 0 -i 7580 -a 0 -x {10.0 9.0 3785 ------- null} h -t 4.28602 -s 10 -d 7 -p ack -e 40 -c 0 -i 7580 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.28648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7567 -a 0 -x {9.0 10.0 3788 ------- null} - -t 4.28648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7567 -a 0 -x {9.0 10.0 3788 ------- null} h -t 4.28648 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7567 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.28656 -s 0 -d 9 -p ack -e 40 -c 0 -i 7570 -a 0 -x {10.0 9.0 3780 ------- null} + -t 4.28656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7581 -a 0 -x {9.0 10.0 3795 ------- null} - -t 4.28656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7581 -a 0 -x {9.0 10.0 3795 ------- null} h -t 4.28656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7581 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.28666 -s 0 -d 9 -p ack -e 40 -c 0 -i 7574 -a 0 -x {10.0 9.0 3782 ------- null} - -t 4.28666 -s 0 -d 9 -p ack -e 40 -c 0 -i 7574 -a 0 -x {10.0 9.0 3782 ------- null} h -t 4.28666 -s 0 -d 9 -p ack -e 40 -c 0 -i 7574 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.28696 -s 10 -d 7 -p ack -e 40 -c 0 -i 7578 -a 0 -x {10.0 9.0 3784 ------- null} + -t 4.28696 -s 7 -d 0 -p ack -e 40 -c 0 -i 7578 -a 0 -x {10.0 9.0 3784 ------- null} h -t 4.28696 -s 7 -d 8 -p ack -e 40 -c 0 -i 7578 -a 0 -x {10.0 9.0 3784 ------- null} r -t 4.2871 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7563 -a 0 -x {9.0 10.0 3786 ------- null} + -t 4.2871 -s 10 -d 7 -p ack -e 40 -c 0 -i 7582 -a 0 -x {10.0 9.0 3786 ------- null} - -t 4.2871 -s 10 -d 7 -p ack -e 40 -c 0 -i 7582 -a 0 -x {10.0 9.0 3786 ------- null} h -t 4.2871 -s 10 -d 7 -p ack -e 40 -c 0 -i 7582 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.28715 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7577 -a 0 -x {9.0 10.0 3793 ------- null} + -t 4.28715 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7577 -a 0 -x {9.0 10.0 3793 ------- null} h -t 4.28715 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7577 -a 0 -x {9.0 10.0 3793 ------- null} + -t 4.28757 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7569 -a 0 -x {9.0 10.0 3789 ------- null} - -t 4.28757 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7569 -a 0 -x {9.0 10.0 3789 ------- null} h -t 4.28757 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7569 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.28758 -s 0 -d 9 -p ack -e 40 -c 0 -i 7572 -a 0 -x {10.0 9.0 3781 ------- null} + -t 4.28758 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7583 -a 0 -x {9.0 10.0 3796 ------- null} - -t 4.28758 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7583 -a 0 -x {9.0 10.0 3796 ------- null} h -t 4.28758 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7583 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.28782 -s 0 -d 9 -p ack -e 40 -c 0 -i 7576 -a 0 -x {10.0 9.0 3783 ------- null} - -t 4.28782 -s 0 -d 9 -p ack -e 40 -c 0 -i 7576 -a 0 -x {10.0 9.0 3783 ------- null} h -t 4.28782 -s 0 -d 9 -p ack -e 40 -c 0 -i 7576 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.28805 -s 10 -d 7 -p ack -e 40 -c 0 -i 7580 -a 0 -x {10.0 9.0 3785 ------- null} + -t 4.28805 -s 7 -d 0 -p ack -e 40 -c 0 -i 7580 -a 0 -x {10.0 9.0 3785 ------- null} h -t 4.28805 -s 7 -d 8 -p ack -e 40 -c 0 -i 7580 -a 0 -x {10.0 9.0 3785 ------- null} r -t 4.28819 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7565 -a 0 -x {9.0 10.0 3787 ------- null} + -t 4.28819 -s 10 -d 7 -p ack -e 40 -c 0 -i 7584 -a 0 -x {10.0 9.0 3787 ------- null} - -t 4.28819 -s 10 -d 7 -p ack -e 40 -c 0 -i 7584 -a 0 -x {10.0 9.0 3787 ------- null} h -t 4.28819 -s 10 -d 7 -p ack -e 40 -c 0 -i 7584 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.28827 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7579 -a 0 -x {9.0 10.0 3794 ------- null} + -t 4.28827 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7579 -a 0 -x {9.0 10.0 3794 ------- null} h -t 4.28827 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7579 -a 0 -x {9.0 10.0 3794 ------- null} + -t 4.28866 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7571 -a 0 -x {9.0 10.0 3790 ------- null} - -t 4.28866 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7571 -a 0 -x {9.0 10.0 3790 ------- null} h -t 4.28866 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7571 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.28869 -s 0 -d 9 -p ack -e 40 -c 0 -i 7574 -a 0 -x {10.0 9.0 3782 ------- null} + -t 4.28869 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7585 -a 0 -x {9.0 10.0 3797 ------- null} - -t 4.28869 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7585 -a 0 -x {9.0 10.0 3797 ------- null} h -t 4.28869 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7585 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.2889 -s 0 -d 9 -p ack -e 40 -c 0 -i 7578 -a 0 -x {10.0 9.0 3784 ------- null} - -t 4.2889 -s 0 -d 9 -p ack -e 40 -c 0 -i 7578 -a 0 -x {10.0 9.0 3784 ------- null} h -t 4.2889 -s 0 -d 9 -p ack -e 40 -c 0 -i 7578 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.28914 -s 10 -d 7 -p ack -e 40 -c 0 -i 7582 -a 0 -x {10.0 9.0 3786 ------- null} + -t 4.28914 -s 7 -d 0 -p ack -e 40 -c 0 -i 7582 -a 0 -x {10.0 9.0 3786 ------- null} h -t 4.28914 -s 7 -d 8 -p ack -e 40 -c 0 -i 7582 -a 0 -x {10.0 9.0 3786 ------- null} r -t 4.28928 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7567 -a 0 -x {9.0 10.0 3788 ------- null} + -t 4.28928 -s 10 -d 7 -p ack -e 40 -c 0 -i 7586 -a 0 -x {10.0 9.0 3788 ------- null} - -t 4.28928 -s 10 -d 7 -p ack -e 40 -c 0 -i 7586 -a 0 -x {10.0 9.0 3788 ------- null} h -t 4.28928 -s 10 -d 7 -p ack -e 40 -c 0 -i 7586 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.28936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7581 -a 0 -x {9.0 10.0 3795 ------- null} + -t 4.28936 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7581 -a 0 -x {9.0 10.0 3795 ------- null} h -t 4.28936 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7581 -a 0 -x {9.0 10.0 3795 ------- null} + -t 4.28974 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7573 -a 0 -x {9.0 10.0 3791 ------- null} - -t 4.28974 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7573 -a 0 -x {9.0 10.0 3791 ------- null} h -t 4.28974 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7573 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.28986 -s 0 -d 9 -p ack -e 40 -c 0 -i 7576 -a 0 -x {10.0 9.0 3783 ------- null} + -t 4.28986 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7587 -a 0 -x {9.0 10.0 3798 ------- null} - -t 4.28986 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7587 -a 0 -x {9.0 10.0 3798 ------- null} h -t 4.28986 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7587 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.28994 -s 0 -d 9 -p ack -e 40 -c 0 -i 7580 -a 0 -x {10.0 9.0 3785 ------- null} - -t 4.28994 -s 0 -d 9 -p ack -e 40 -c 0 -i 7580 -a 0 -x {10.0 9.0 3785 ------- null} h -t 4.28994 -s 0 -d 9 -p ack -e 40 -c 0 -i 7580 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.29022 -s 10 -d 7 -p ack -e 40 -c 0 -i 7584 -a 0 -x {10.0 9.0 3787 ------- null} + -t 4.29022 -s 7 -d 0 -p ack -e 40 -c 0 -i 7584 -a 0 -x {10.0 9.0 3787 ------- null} h -t 4.29022 -s 7 -d 8 -p ack -e 40 -c 0 -i 7584 -a 0 -x {10.0 9.0 3787 ------- null} r -t 4.29037 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7569 -a 0 -x {9.0 10.0 3789 ------- null} + -t 4.29037 -s 10 -d 7 -p ack -e 40 -c 0 -i 7588 -a 0 -x {10.0 9.0 3789 ------- null} - -t 4.29037 -s 10 -d 7 -p ack -e 40 -c 0 -i 7588 -a 0 -x {10.0 9.0 3789 ------- null} h -t 4.29037 -s 10 -d 7 -p ack -e 40 -c 0 -i 7588 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.29038 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7583 -a 0 -x {9.0 10.0 3796 ------- null} + -t 4.29038 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7583 -a 0 -x {9.0 10.0 3796 ------- null} h -t 4.29038 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7583 -a 0 -x {9.0 10.0 3796 ------- null} + -t 4.29083 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7575 -a 0 -x {9.0 10.0 3792 ------- null} - -t 4.29083 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7575 -a 0 -x {9.0 10.0 3792 ------- null} h -t 4.29083 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7575 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.29093 -s 0 -d 9 -p ack -e 40 -c 0 -i 7578 -a 0 -x {10.0 9.0 3784 ------- null} + -t 4.29093 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7589 -a 0 -x {9.0 10.0 3799 ------- null} - -t 4.29093 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7589 -a 0 -x {9.0 10.0 3799 ------- null} h -t 4.29093 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7589 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.29102 -s 0 -d 9 -p ack -e 40 -c 0 -i 7582 -a 0 -x {10.0 9.0 3786 ------- null} - -t 4.29102 -s 0 -d 9 -p ack -e 40 -c 0 -i 7582 -a 0 -x {10.0 9.0 3786 ------- null} h -t 4.29102 -s 0 -d 9 -p ack -e 40 -c 0 -i 7582 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.29131 -s 10 -d 7 -p ack -e 40 -c 0 -i 7586 -a 0 -x {10.0 9.0 3788 ------- null} + -t 4.29131 -s 7 -d 0 -p ack -e 40 -c 0 -i 7586 -a 0 -x {10.0 9.0 3788 ------- null} h -t 4.29131 -s 7 -d 8 -p ack -e 40 -c 0 -i 7586 -a 0 -x {10.0 9.0 3788 ------- null} r -t 4.29146 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7571 -a 0 -x {9.0 10.0 3790 ------- null} + -t 4.29146 -s 10 -d 7 -p ack -e 40 -c 0 -i 7590 -a 0 -x {10.0 9.0 3790 ------- null} - -t 4.29146 -s 10 -d 7 -p ack -e 40 -c 0 -i 7590 -a 0 -x {10.0 9.0 3790 ------- null} h -t 4.29146 -s 10 -d 7 -p ack -e 40 -c 0 -i 7590 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.29149 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7585 -a 0 -x {9.0 10.0 3797 ------- null} + -t 4.29149 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7585 -a 0 -x {9.0 10.0 3797 ------- null} h -t 4.29149 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7585 -a 0 -x {9.0 10.0 3797 ------- null} + -t 4.29192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7577 -a 0 -x {9.0 10.0 3793 ------- null} - -t 4.29192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7577 -a 0 -x {9.0 10.0 3793 ------- null} h -t 4.29192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7577 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.29197 -s 0 -d 9 -p ack -e 40 -c 0 -i 7580 -a 0 -x {10.0 9.0 3785 ------- null} + -t 4.29197 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7591 -a 0 -x {9.0 10.0 3800 ------- null} - -t 4.29197 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7591 -a 0 -x {9.0 10.0 3800 ------- null} h -t 4.29197 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7591 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.29213 -s 0 -d 9 -p ack -e 40 -c 0 -i 7584 -a 0 -x {10.0 9.0 3787 ------- null} - -t 4.29213 -s 0 -d 9 -p ack -e 40 -c 0 -i 7584 -a 0 -x {10.0 9.0 3787 ------- null} h -t 4.29213 -s 0 -d 9 -p ack -e 40 -c 0 -i 7584 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.2924 -s 10 -d 7 -p ack -e 40 -c 0 -i 7588 -a 0 -x {10.0 9.0 3789 ------- null} + -t 4.2924 -s 7 -d 0 -p ack -e 40 -c 0 -i 7588 -a 0 -x {10.0 9.0 3789 ------- null} h -t 4.2924 -s 7 -d 8 -p ack -e 40 -c 0 -i 7588 -a 0 -x {10.0 9.0 3789 ------- null} r -t 4.29254 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7573 -a 0 -x {9.0 10.0 3791 ------- null} + -t 4.29254 -s 10 -d 7 -p ack -e 40 -c 0 -i 7592 -a 0 -x {10.0 9.0 3791 ------- null} - -t 4.29254 -s 10 -d 7 -p ack -e 40 -c 0 -i 7592 -a 0 -x {10.0 9.0 3791 ------- null} h -t 4.29254 -s 10 -d 7 -p ack -e 40 -c 0 -i 7592 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.29266 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7587 -a 0 -x {9.0 10.0 3798 ------- null} + -t 4.29266 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7587 -a 0 -x {9.0 10.0 3798 ------- null} h -t 4.29266 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7587 -a 0 -x {9.0 10.0 3798 ------- null} + -t 4.29301 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7579 -a 0 -x {9.0 10.0 3794 ------- null} - -t 4.29301 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7579 -a 0 -x {9.0 10.0 3794 ------- null} h -t 4.29301 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7579 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.29306 -s 0 -d 9 -p ack -e 40 -c 0 -i 7582 -a 0 -x {10.0 9.0 3786 ------- null} + -t 4.29306 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7593 -a 0 -x {9.0 10.0 3801 ------- null} - -t 4.29306 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7593 -a 0 -x {9.0 10.0 3801 ------- null} h -t 4.29306 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7593 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.29317 -s 0 -d 9 -p ack -e 40 -c 0 -i 7586 -a 0 -x {10.0 9.0 3788 ------- null} - -t 4.29317 -s 0 -d 9 -p ack -e 40 -c 0 -i 7586 -a 0 -x {10.0 9.0 3788 ------- null} h -t 4.29317 -s 0 -d 9 -p ack -e 40 -c 0 -i 7586 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.29349 -s 10 -d 7 -p ack -e 40 -c 0 -i 7590 -a 0 -x {10.0 9.0 3790 ------- null} + -t 4.29349 -s 7 -d 0 -p ack -e 40 -c 0 -i 7590 -a 0 -x {10.0 9.0 3790 ------- null} h -t 4.29349 -s 7 -d 8 -p ack -e 40 -c 0 -i 7590 -a 0 -x {10.0 9.0 3790 ------- null} r -t 4.29363 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7575 -a 0 -x {9.0 10.0 3792 ------- null} + -t 4.29363 -s 10 -d 7 -p ack -e 40 -c 0 -i 7594 -a 0 -x {10.0 9.0 3792 ------- null} - -t 4.29363 -s 10 -d 7 -p ack -e 40 -c 0 -i 7594 -a 0 -x {10.0 9.0 3792 ------- null} h -t 4.29363 -s 10 -d 7 -p ack -e 40 -c 0 -i 7594 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.29373 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7589 -a 0 -x {9.0 10.0 3799 ------- null} + -t 4.29373 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7589 -a 0 -x {9.0 10.0 3799 ------- null} h -t 4.29373 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7589 -a 0 -x {9.0 10.0 3799 ------- null} + -t 4.2941 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7581 -a 0 -x {9.0 10.0 3795 ------- null} - -t 4.2941 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7581 -a 0 -x {9.0 10.0 3795 ------- null} h -t 4.2941 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7581 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.29416 -s 0 -d 9 -p ack -e 40 -c 0 -i 7584 -a 0 -x {10.0 9.0 3787 ------- null} + -t 4.29416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7595 -a 0 -x {9.0 10.0 3802 ------- null} - -t 4.29416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7595 -a 0 -x {9.0 10.0 3802 ------- null} h -t 4.29416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7595 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.29426 -s 0 -d 9 -p ack -e 40 -c 0 -i 7588 -a 0 -x {10.0 9.0 3789 ------- null} - -t 4.29426 -s 0 -d 9 -p ack -e 40 -c 0 -i 7588 -a 0 -x {10.0 9.0 3789 ------- null} h -t 4.29426 -s 0 -d 9 -p ack -e 40 -c 0 -i 7588 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.29458 -s 10 -d 7 -p ack -e 40 -c 0 -i 7592 -a 0 -x {10.0 9.0 3791 ------- null} + -t 4.29458 -s 7 -d 0 -p ack -e 40 -c 0 -i 7592 -a 0 -x {10.0 9.0 3791 ------- null} h -t 4.29458 -s 7 -d 8 -p ack -e 40 -c 0 -i 7592 -a 0 -x {10.0 9.0 3791 ------- null} r -t 4.29472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7577 -a 0 -x {9.0 10.0 3793 ------- null} + -t 4.29472 -s 10 -d 7 -p ack -e 40 -c 0 -i 7596 -a 0 -x {10.0 9.0 3793 ------- null} - -t 4.29472 -s 10 -d 7 -p ack -e 40 -c 0 -i 7596 -a 0 -x {10.0 9.0 3793 ------- null} h -t 4.29472 -s 10 -d 7 -p ack -e 40 -c 0 -i 7596 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.29477 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7591 -a 0 -x {9.0 10.0 3800 ------- null} + -t 4.29477 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7591 -a 0 -x {9.0 10.0 3800 ------- null} h -t 4.29477 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7591 -a 0 -x {9.0 10.0 3800 ------- null} + -t 4.29518 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7583 -a 0 -x {9.0 10.0 3796 ------- null} - -t 4.29518 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7583 -a 0 -x {9.0 10.0 3796 ------- null} h -t 4.29518 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7583 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.2952 -s 0 -d 9 -p ack -e 40 -c 0 -i 7586 -a 0 -x {10.0 9.0 3788 ------- null} + -t 4.2952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7597 -a 0 -x {9.0 10.0 3803 ------- null} - -t 4.2952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7597 -a 0 -x {9.0 10.0 3803 ------- null} h -t 4.2952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7597 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.29541 -s 0 -d 9 -p ack -e 40 -c 0 -i 7590 -a 0 -x {10.0 9.0 3790 ------- null} - -t 4.29541 -s 0 -d 9 -p ack -e 40 -c 0 -i 7590 -a 0 -x {10.0 9.0 3790 ------- null} h -t 4.29541 -s 0 -d 9 -p ack -e 40 -c 0 -i 7590 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.29566 -s 10 -d 7 -p ack -e 40 -c 0 -i 7594 -a 0 -x {10.0 9.0 3792 ------- null} + -t 4.29566 -s 7 -d 0 -p ack -e 40 -c 0 -i 7594 -a 0 -x {10.0 9.0 3792 ------- null} h -t 4.29566 -s 7 -d 8 -p ack -e 40 -c 0 -i 7594 -a 0 -x {10.0 9.0 3792 ------- null} r -t 4.29581 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7579 -a 0 -x {9.0 10.0 3794 ------- null} + -t 4.29581 -s 10 -d 7 -p ack -e 40 -c 0 -i 7598 -a 0 -x {10.0 9.0 3794 ------- null} - -t 4.29581 -s 10 -d 7 -p ack -e 40 -c 0 -i 7598 -a 0 -x {10.0 9.0 3794 ------- null} h -t 4.29581 -s 10 -d 7 -p ack -e 40 -c 0 -i 7598 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.29586 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7593 -a 0 -x {9.0 10.0 3801 ------- null} + -t 4.29586 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7593 -a 0 -x {9.0 10.0 3801 ------- null} h -t 4.29586 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7593 -a 0 -x {9.0 10.0 3801 ------- null} + -t 4.29627 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7585 -a 0 -x {9.0 10.0 3797 ------- null} - -t 4.29627 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7585 -a 0 -x {9.0 10.0 3797 ------- null} h -t 4.29627 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7585 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.29629 -s 0 -d 9 -p ack -e 40 -c 0 -i 7588 -a 0 -x {10.0 9.0 3789 ------- null} + -t 4.29629 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7599 -a 0 -x {9.0 10.0 3804 ------- null} - -t 4.29629 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7599 -a 0 -x {9.0 10.0 3804 ------- null} h -t 4.29629 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7599 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.29658 -s 0 -d 9 -p ack -e 40 -c 0 -i 7592 -a 0 -x {10.0 9.0 3791 ------- null} - -t 4.29658 -s 0 -d 9 -p ack -e 40 -c 0 -i 7592 -a 0 -x {10.0 9.0 3791 ------- null} h -t 4.29658 -s 0 -d 9 -p ack -e 40 -c 0 -i 7592 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.29675 -s 10 -d 7 -p ack -e 40 -c 0 -i 7596 -a 0 -x {10.0 9.0 3793 ------- null} + -t 4.29675 -s 7 -d 0 -p ack -e 40 -c 0 -i 7596 -a 0 -x {10.0 9.0 3793 ------- null} h -t 4.29675 -s 7 -d 8 -p ack -e 40 -c 0 -i 7596 -a 0 -x {10.0 9.0 3793 ------- null} r -t 4.2969 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7581 -a 0 -x {9.0 10.0 3795 ------- null} + -t 4.2969 -s 10 -d 7 -p ack -e 40 -c 0 -i 7600 -a 0 -x {10.0 9.0 3795 ------- null} - -t 4.2969 -s 10 -d 7 -p ack -e 40 -c 0 -i 7600 -a 0 -x {10.0 9.0 3795 ------- null} h -t 4.2969 -s 10 -d 7 -p ack -e 40 -c 0 -i 7600 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.29696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7595 -a 0 -x {9.0 10.0 3802 ------- null} + -t 4.29696 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7595 -a 0 -x {9.0 10.0 3802 ------- null} h -t 4.29696 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7595 -a 0 -x {9.0 10.0 3802 ------- null} + -t 4.29741 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7587 -a 0 -x {9.0 10.0 3798 ------- null} - -t 4.29741 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7587 -a 0 -x {9.0 10.0 3798 ------- null} h -t 4.29741 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7587 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.29744 -s 0 -d 9 -p ack -e 40 -c 0 -i 7590 -a 0 -x {10.0 9.0 3790 ------- null} + -t 4.29744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7601 -a 0 -x {9.0 10.0 3805 ------- null} - -t 4.29744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7601 -a 0 -x {9.0 10.0 3805 ------- null} h -t 4.29744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7601 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.29763 -s 0 -d 9 -p ack -e 40 -c 0 -i 7594 -a 0 -x {10.0 9.0 3792 ------- null} - -t 4.29763 -s 0 -d 9 -p ack -e 40 -c 0 -i 7594 -a 0 -x {10.0 9.0 3792 ------- null} h -t 4.29763 -s 0 -d 9 -p ack -e 40 -c 0 -i 7594 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.29784 -s 10 -d 7 -p ack -e 40 -c 0 -i 7598 -a 0 -x {10.0 9.0 3794 ------- null} + -t 4.29784 -s 7 -d 0 -p ack -e 40 -c 0 -i 7598 -a 0 -x {10.0 9.0 3794 ------- null} h -t 4.29784 -s 7 -d 8 -p ack -e 40 -c 0 -i 7598 -a 0 -x {10.0 9.0 3794 ------- null} r -t 4.29798 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7583 -a 0 -x {9.0 10.0 3796 ------- null} + -t 4.29798 -s 10 -d 7 -p ack -e 40 -c 0 -i 7602 -a 0 -x {10.0 9.0 3796 ------- null} - -t 4.29798 -s 10 -d 7 -p ack -e 40 -c 0 -i 7602 -a 0 -x {10.0 9.0 3796 ------- null} h -t 4.29798 -s 10 -d 7 -p ack -e 40 -c 0 -i 7602 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.298 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7597 -a 0 -x {9.0 10.0 3803 ------- null} + -t 4.298 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7597 -a 0 -x {9.0 10.0 3803 ------- null} h -t 4.298 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7597 -a 0 -x {9.0 10.0 3803 ------- null} + -t 4.2985 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7589 -a 0 -x {9.0 10.0 3799 ------- null} - -t 4.2985 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7589 -a 0 -x {9.0 10.0 3799 ------- null} h -t 4.2985 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7589 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.29861 -s 0 -d 9 -p ack -e 40 -c 0 -i 7592 -a 0 -x {10.0 9.0 3791 ------- null} + -t 4.29861 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7603 -a 0 -x {9.0 10.0 3806 ------- null} - -t 4.29861 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7603 -a 0 -x {9.0 10.0 3806 ------- null} h -t 4.29861 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7603 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.29866 -s 0 -d 9 -p ack -e 40 -c 0 -i 7596 -a 0 -x {10.0 9.0 3793 ------- null} - -t 4.29866 -s 0 -d 9 -p ack -e 40 -c 0 -i 7596 -a 0 -x {10.0 9.0 3793 ------- null} h -t 4.29866 -s 0 -d 9 -p ack -e 40 -c 0 -i 7596 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.29893 -s 10 -d 7 -p ack -e 40 -c 0 -i 7600 -a 0 -x {10.0 9.0 3795 ------- null} + -t 4.29893 -s 7 -d 0 -p ack -e 40 -c 0 -i 7600 -a 0 -x {10.0 9.0 3795 ------- null} h -t 4.29893 -s 7 -d 8 -p ack -e 40 -c 0 -i 7600 -a 0 -x {10.0 9.0 3795 ------- null} r -t 4.29907 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7585 -a 0 -x {9.0 10.0 3797 ------- null} + -t 4.29907 -s 10 -d 7 -p ack -e 40 -c 0 -i 7604 -a 0 -x {10.0 9.0 3797 ------- null} - -t 4.29907 -s 10 -d 7 -p ack -e 40 -c 0 -i 7604 -a 0 -x {10.0 9.0 3797 ------- null} h -t 4.29907 -s 10 -d 7 -p ack -e 40 -c 0 -i 7604 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.29909 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7599 -a 0 -x {9.0 10.0 3804 ------- null} + -t 4.29909 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7599 -a 0 -x {9.0 10.0 3804 ------- null} h -t 4.29909 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7599 -a 0 -x {9.0 10.0 3804 ------- null} + -t 4.29958 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7591 -a 0 -x {9.0 10.0 3800 ------- null} - -t 4.29958 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7591 -a 0 -x {9.0 10.0 3800 ------- null} h -t 4.29958 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7591 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.29966 -s 0 -d 9 -p ack -e 40 -c 0 -i 7594 -a 0 -x {10.0 9.0 3792 ------- null} + -t 4.29966 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7605 -a 0 -x {9.0 10.0 3807 ------- null} - -t 4.29966 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7605 -a 0 -x {9.0 10.0 3807 ------- null} h -t 4.29966 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7605 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.29979 -s 0 -d 9 -p ack -e 40 -c 0 -i 7598 -a 0 -x {10.0 9.0 3794 ------- null} - -t 4.29979 -s 0 -d 9 -p ack -e 40 -c 0 -i 7598 -a 0 -x {10.0 9.0 3794 ------- null} h -t 4.29979 -s 0 -d 9 -p ack -e 40 -c 0 -i 7598 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.30002 -s 10 -d 7 -p ack -e 40 -c 0 -i 7602 -a 0 -x {10.0 9.0 3796 ------- null} + -t 4.30002 -s 7 -d 0 -p ack -e 40 -c 0 -i 7602 -a 0 -x {10.0 9.0 3796 ------- null} h -t 4.30002 -s 7 -d 8 -p ack -e 40 -c 0 -i 7602 -a 0 -x {10.0 9.0 3796 ------- null} r -t 4.30021 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7587 -a 0 -x {9.0 10.0 3798 ------- null} + -t 4.30021 -s 10 -d 7 -p ack -e 40 -c 0 -i 7606 -a 0 -x {10.0 9.0 3798 ------- null} - -t 4.30021 -s 10 -d 7 -p ack -e 40 -c 0 -i 7606 -a 0 -x {10.0 9.0 3798 ------- null} h -t 4.30021 -s 10 -d 7 -p ack -e 40 -c 0 -i 7606 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.30024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7601 -a 0 -x {9.0 10.0 3805 ------- null} + -t 4.30024 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7601 -a 0 -x {9.0 10.0 3805 ------- null} h -t 4.30024 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7601 -a 0 -x {9.0 10.0 3805 ------- null} + -t 4.30067 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7593 -a 0 -x {9.0 10.0 3801 ------- null} - -t 4.30067 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7593 -a 0 -x {9.0 10.0 3801 ------- null} h -t 4.30067 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7593 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.30069 -s 0 -d 9 -p ack -e 40 -c 0 -i 7596 -a 0 -x {10.0 9.0 3793 ------- null} + -t 4.30069 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7607 -a 0 -x {9.0 10.0 3808 ------- null} - -t 4.30069 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7607 -a 0 -x {9.0 10.0 3808 ------- null} h -t 4.30069 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7607 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.30094 -s 0 -d 9 -p ack -e 40 -c 0 -i 7600 -a 0 -x {10.0 9.0 3795 ------- null} - -t 4.30094 -s 0 -d 9 -p ack -e 40 -c 0 -i 7600 -a 0 -x {10.0 9.0 3795 ------- null} h -t 4.30094 -s 0 -d 9 -p ack -e 40 -c 0 -i 7600 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.3011 -s 10 -d 7 -p ack -e 40 -c 0 -i 7604 -a 0 -x {10.0 9.0 3797 ------- null} + -t 4.3011 -s 7 -d 0 -p ack -e 40 -c 0 -i 7604 -a 0 -x {10.0 9.0 3797 ------- null} h -t 4.3011 -s 7 -d 8 -p ack -e 40 -c 0 -i 7604 -a 0 -x {10.0 9.0 3797 ------- null} r -t 4.3013 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7589 -a 0 -x {9.0 10.0 3799 ------- null} + -t 4.3013 -s 10 -d 7 -p ack -e 40 -c 0 -i 7608 -a 0 -x {10.0 9.0 3799 ------- null} - -t 4.3013 -s 10 -d 7 -p ack -e 40 -c 0 -i 7608 -a 0 -x {10.0 9.0 3799 ------- null} h -t 4.3013 -s 10 -d 7 -p ack -e 40 -c 0 -i 7608 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.30141 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7603 -a 0 -x {9.0 10.0 3806 ------- null} + -t 4.30141 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7603 -a 0 -x {9.0 10.0 3806 ------- null} h -t 4.30141 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7603 -a 0 -x {9.0 10.0 3806 ------- null} r -t 4.30182 -s 0 -d 9 -p ack -e 40 -c 0 -i 7598 -a 0 -x {10.0 9.0 3794 ------- null} + -t 4.30182 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7609 -a 0 -x {9.0 10.0 3809 ------- null} - -t 4.30182 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7609 -a 0 -x {9.0 10.0 3809 ------- null} h -t 4.30182 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7609 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.30192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7595 -a 0 -x {9.0 10.0 3802 ------- null} - -t 4.30192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7595 -a 0 -x {9.0 10.0 3802 ------- null} h -t 4.30192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7595 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.302 -s 0 -d 9 -p ack -e 40 -c 0 -i 7602 -a 0 -x {10.0 9.0 3796 ------- null} - -t 4.302 -s 0 -d 9 -p ack -e 40 -c 0 -i 7602 -a 0 -x {10.0 9.0 3796 ------- null} h -t 4.302 -s 0 -d 9 -p ack -e 40 -c 0 -i 7602 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.30224 -s 10 -d 7 -p ack -e 40 -c 0 -i 7606 -a 0 -x {10.0 9.0 3798 ------- null} + -t 4.30224 -s 7 -d 0 -p ack -e 40 -c 0 -i 7606 -a 0 -x {10.0 9.0 3798 ------- null} h -t 4.30224 -s 7 -d 8 -p ack -e 40 -c 0 -i 7606 -a 0 -x {10.0 9.0 3798 ------- null} r -t 4.30238 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7591 -a 0 -x {9.0 10.0 3800 ------- null} + -t 4.30238 -s 10 -d 7 -p ack -e 40 -c 0 -i 7610 -a 0 -x {10.0 9.0 3800 ------- null} - -t 4.30238 -s 10 -d 7 -p ack -e 40 -c 0 -i 7610 -a 0 -x {10.0 9.0 3800 ------- null} h -t 4.30238 -s 10 -d 7 -p ack -e 40 -c 0 -i 7610 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.30246 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7605 -a 0 -x {9.0 10.0 3807 ------- null} + -t 4.30246 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7605 -a 0 -x {9.0 10.0 3807 ------- null} h -t 4.30246 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7605 -a 0 -x {9.0 10.0 3807 ------- null} r -t 4.30298 -s 0 -d 9 -p ack -e 40 -c 0 -i 7600 -a 0 -x {10.0 9.0 3795 ------- null} + -t 4.30298 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7611 -a 0 -x {9.0 10.0 3810 ------- null} - -t 4.30298 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7611 -a 0 -x {9.0 10.0 3810 ------- null} h -t 4.30298 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7611 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.30301 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7597 -a 0 -x {9.0 10.0 3803 ------- null} - -t 4.30301 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7597 -a 0 -x {9.0 10.0 3803 ------- null} h -t 4.30301 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7597 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.30325 -s 0 -d 9 -p ack -e 40 -c 0 -i 7604 -a 0 -x {10.0 9.0 3797 ------- null} - -t 4.30325 -s 0 -d 9 -p ack -e 40 -c 0 -i 7604 -a 0 -x {10.0 9.0 3797 ------- null} h -t 4.30325 -s 0 -d 9 -p ack -e 40 -c 0 -i 7604 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.30333 -s 10 -d 7 -p ack -e 40 -c 0 -i 7608 -a 0 -x {10.0 9.0 3799 ------- null} + -t 4.30333 -s 7 -d 0 -p ack -e 40 -c 0 -i 7608 -a 0 -x {10.0 9.0 3799 ------- null} h -t 4.30333 -s 7 -d 8 -p ack -e 40 -c 0 -i 7608 -a 0 -x {10.0 9.0 3799 ------- null} r -t 4.30347 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7593 -a 0 -x {9.0 10.0 3801 ------- null} + -t 4.30347 -s 10 -d 7 -p ack -e 40 -c 0 -i 7612 -a 0 -x {10.0 9.0 3801 ------- null} - -t 4.30347 -s 10 -d 7 -p ack -e 40 -c 0 -i 7612 -a 0 -x {10.0 9.0 3801 ------- null} h -t 4.30347 -s 10 -d 7 -p ack -e 40 -c 0 -i 7612 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.30349 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7607 -a 0 -x {9.0 10.0 3808 ------- null} + -t 4.30349 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7607 -a 0 -x {9.0 10.0 3808 ------- null} h -t 4.30349 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7607 -a 0 -x {9.0 10.0 3808 ------- null} r -t 4.30403 -s 0 -d 9 -p ack -e 40 -c 0 -i 7602 -a 0 -x {10.0 9.0 3796 ------- null} + -t 4.30403 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7613 -a 0 -x {9.0 10.0 3811 ------- null} - -t 4.30403 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7613 -a 0 -x {9.0 10.0 3811 ------- null} h -t 4.30403 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7613 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.3041 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7599 -a 0 -x {9.0 10.0 3804 ------- null} - -t 4.3041 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7599 -a 0 -x {9.0 10.0 3804 ------- null} h -t 4.3041 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7599 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.30434 -s 0 -d 9 -p ack -e 40 -c 0 -i 7606 -a 0 -x {10.0 9.0 3798 ------- null} - -t 4.30434 -s 0 -d 9 -p ack -e 40 -c 0 -i 7606 -a 0 -x {10.0 9.0 3798 ------- null} h -t 4.30434 -s 0 -d 9 -p ack -e 40 -c 0 -i 7606 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.30442 -s 10 -d 7 -p ack -e 40 -c 0 -i 7610 -a 0 -x {10.0 9.0 3800 ------- null} + -t 4.30442 -s 7 -d 0 -p ack -e 40 -c 0 -i 7610 -a 0 -x {10.0 9.0 3800 ------- null} h -t 4.30442 -s 7 -d 8 -p ack -e 40 -c 0 -i 7610 -a 0 -x {10.0 9.0 3800 ------- null} r -t 4.30462 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7609 -a 0 -x {9.0 10.0 3809 ------- null} + -t 4.30462 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7609 -a 0 -x {9.0 10.0 3809 ------- null} h -t 4.30462 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7609 -a 0 -x {9.0 10.0 3809 ------- null} r -t 4.30472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7595 -a 0 -x {9.0 10.0 3802 ------- null} + -t 4.30472 -s 10 -d 7 -p ack -e 40 -c 0 -i 7614 -a 0 -x {10.0 9.0 3802 ------- null} - -t 4.30472 -s 10 -d 7 -p ack -e 40 -c 0 -i 7614 -a 0 -x {10.0 9.0 3802 ------- null} h -t 4.30472 -s 10 -d 7 -p ack -e 40 -c 0 -i 7614 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.30518 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7601 -a 0 -x {9.0 10.0 3805 ------- null} - -t 4.30518 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7601 -a 0 -x {9.0 10.0 3805 ------- null} h -t 4.30518 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7601 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.30526 -s 0 -d 9 -p ack -e 40 -c 0 -i 7608 -a 0 -x {10.0 9.0 3799 ------- null} - -t 4.30526 -s 0 -d 9 -p ack -e 40 -c 0 -i 7608 -a 0 -x {10.0 9.0 3799 ------- null} h -t 4.30526 -s 0 -d 9 -p ack -e 40 -c 0 -i 7608 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.30528 -s 0 -d 9 -p ack -e 40 -c 0 -i 7604 -a 0 -x {10.0 9.0 3797 ------- null} + -t 4.30528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7615 -a 0 -x {9.0 10.0 3812 ------- null} - -t 4.30528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7615 -a 0 -x {9.0 10.0 3812 ------- null} h -t 4.30528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7615 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.3055 -s 10 -d 7 -p ack -e 40 -c 0 -i 7612 -a 0 -x {10.0 9.0 3801 ------- null} + -t 4.3055 -s 7 -d 0 -p ack -e 40 -c 0 -i 7612 -a 0 -x {10.0 9.0 3801 ------- null} h -t 4.3055 -s 7 -d 8 -p ack -e 40 -c 0 -i 7612 -a 0 -x {10.0 9.0 3801 ------- null} r -t 4.30578 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7611 -a 0 -x {9.0 10.0 3810 ------- null} + -t 4.30578 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7611 -a 0 -x {9.0 10.0 3810 ------- null} h -t 4.30578 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7611 -a 0 -x {9.0 10.0 3810 ------- null} r -t 4.30581 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7597 -a 0 -x {9.0 10.0 3803 ------- null} + -t 4.30581 -s 10 -d 7 -p ack -e 40 -c 0 -i 7616 -a 0 -x {10.0 9.0 3803 ------- null} - -t 4.30581 -s 10 -d 7 -p ack -e 40 -c 0 -i 7616 -a 0 -x {10.0 9.0 3803 ------- null} h -t 4.30581 -s 10 -d 7 -p ack -e 40 -c 0 -i 7616 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.30627 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7603 -a 0 -x {9.0 10.0 3806 ------- null} - -t 4.30627 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7603 -a 0 -x {9.0 10.0 3806 ------- null} h -t 4.30627 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7603 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.30637 -s 0 -d 9 -p ack -e 40 -c 0 -i 7606 -a 0 -x {10.0 9.0 3798 ------- null} + -t 4.30637 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7617 -a 0 -x {9.0 10.0 3813 ------- null} - -t 4.30637 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7617 -a 0 -x {9.0 10.0 3813 ------- null} h -t 4.30637 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7617 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.30645 -s 0 -d 9 -p ack -e 40 -c 0 -i 7610 -a 0 -x {10.0 9.0 3800 ------- null} - -t 4.30645 -s 0 -d 9 -p ack -e 40 -c 0 -i 7610 -a 0 -x {10.0 9.0 3800 ------- null} h -t 4.30645 -s 0 -d 9 -p ack -e 40 -c 0 -i 7610 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.30675 -s 10 -d 7 -p ack -e 40 -c 0 -i 7614 -a 0 -x {10.0 9.0 3802 ------- null} + -t 4.30675 -s 7 -d 0 -p ack -e 40 -c 0 -i 7614 -a 0 -x {10.0 9.0 3802 ------- null} h -t 4.30675 -s 7 -d 8 -p ack -e 40 -c 0 -i 7614 -a 0 -x {10.0 9.0 3802 ------- null} r -t 4.30683 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7613 -a 0 -x {9.0 10.0 3811 ------- null} + -t 4.30683 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7613 -a 0 -x {9.0 10.0 3811 ------- null} h -t 4.30683 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7613 -a 0 -x {9.0 10.0 3811 ------- null} r -t 4.3069 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7599 -a 0 -x {9.0 10.0 3804 ------- null} + -t 4.3069 -s 10 -d 7 -p ack -e 40 -c 0 -i 7618 -a 0 -x {10.0 9.0 3804 ------- null} - -t 4.3069 -s 10 -d 7 -p ack -e 40 -c 0 -i 7618 -a 0 -x {10.0 9.0 3804 ------- null} h -t 4.3069 -s 10 -d 7 -p ack -e 40 -c 0 -i 7618 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.3073 -s 0 -d 9 -p ack -e 40 -c 0 -i 7608 -a 0 -x {10.0 9.0 3799 ------- null} + -t 4.3073 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7619 -a 0 -x {9.0 10.0 3814 ------- null} - -t 4.3073 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7619 -a 0 -x {9.0 10.0 3814 ------- null} h -t 4.3073 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7619 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.30736 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7605 -a 0 -x {9.0 10.0 3807 ------- null} - -t 4.30736 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7605 -a 0 -x {9.0 10.0 3807 ------- null} h -t 4.30736 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7605 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.3075 -s 0 -d 9 -p ack -e 40 -c 0 -i 7612 -a 0 -x {10.0 9.0 3801 ------- null} - -t 4.3075 -s 0 -d 9 -p ack -e 40 -c 0 -i 7612 -a 0 -x {10.0 9.0 3801 ------- null} h -t 4.3075 -s 0 -d 9 -p ack -e 40 -c 0 -i 7612 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.30784 -s 10 -d 7 -p ack -e 40 -c 0 -i 7616 -a 0 -x {10.0 9.0 3803 ------- null} + -t 4.30784 -s 7 -d 0 -p ack -e 40 -c 0 -i 7616 -a 0 -x {10.0 9.0 3803 ------- null} h -t 4.30784 -s 7 -d 8 -p ack -e 40 -c 0 -i 7616 -a 0 -x {10.0 9.0 3803 ------- null} r -t 4.30798 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7601 -a 0 -x {9.0 10.0 3805 ------- null} + -t 4.30798 -s 10 -d 7 -p ack -e 40 -c 0 -i 7620 -a 0 -x {10.0 9.0 3805 ------- null} - -t 4.30798 -s 10 -d 7 -p ack -e 40 -c 0 -i 7620 -a 0 -x {10.0 9.0 3805 ------- null} h -t 4.30798 -s 10 -d 7 -p ack -e 40 -c 0 -i 7620 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.30808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7615 -a 0 -x {9.0 10.0 3812 ------- null} + -t 4.30808 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7615 -a 0 -x {9.0 10.0 3812 ------- null} h -t 4.30808 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7615 -a 0 -x {9.0 10.0 3812 ------- null} + -t 4.30845 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7607 -a 0 -x {9.0 10.0 3808 ------- null} - -t 4.30845 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7607 -a 0 -x {9.0 10.0 3808 ------- null} h -t 4.30845 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7607 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.30848 -s 0 -d 9 -p ack -e 40 -c 0 -i 7610 -a 0 -x {10.0 9.0 3800 ------- null} + -t 4.30848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7621 -a 0 -x {9.0 10.0 3815 ------- null} - -t 4.30848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7621 -a 0 -x {9.0 10.0 3815 ------- null} h -t 4.30848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7621 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.30872 -s 0 -d 9 -p ack -e 40 -c 0 -i 7614 -a 0 -x {10.0 9.0 3802 ------- null} - -t 4.30872 -s 0 -d 9 -p ack -e 40 -c 0 -i 7614 -a 0 -x {10.0 9.0 3802 ------- null} h -t 4.30872 -s 0 -d 9 -p ack -e 40 -c 0 -i 7614 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.30893 -s 10 -d 7 -p ack -e 40 -c 0 -i 7618 -a 0 -x {10.0 9.0 3804 ------- null} + -t 4.30893 -s 7 -d 0 -p ack -e 40 -c 0 -i 7618 -a 0 -x {10.0 9.0 3804 ------- null} h -t 4.30893 -s 7 -d 8 -p ack -e 40 -c 0 -i 7618 -a 0 -x {10.0 9.0 3804 ------- null} r -t 4.30907 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7603 -a 0 -x {9.0 10.0 3806 ------- null} + -t 4.30907 -s 10 -d 7 -p ack -e 40 -c 0 -i 7622 -a 0 -x {10.0 9.0 3806 ------- null} - -t 4.30907 -s 10 -d 7 -p ack -e 40 -c 0 -i 7622 -a 0 -x {10.0 9.0 3806 ------- null} h -t 4.30907 -s 10 -d 7 -p ack -e 40 -c 0 -i 7622 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.30917 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7617 -a 0 -x {9.0 10.0 3813 ------- null} + -t 4.30917 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7617 -a 0 -x {9.0 10.0 3813 ------- null} h -t 4.30917 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7617 -a 0 -x {9.0 10.0 3813 ------- null} r -t 4.30954 -s 0 -d 9 -p ack -e 40 -c 0 -i 7612 -a 0 -x {10.0 9.0 3801 ------- null} + -t 4.30954 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7623 -a 0 -x {9.0 10.0 3816 ------- null} - -t 4.30954 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7623 -a 0 -x {9.0 10.0 3816 ------- null} h -t 4.30954 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7623 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.30966 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7609 -a 0 -x {9.0 10.0 3809 ------- null} - -t 4.30966 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7609 -a 0 -x {9.0 10.0 3809 ------- null} h -t 4.30966 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7609 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.30995 -s 0 -d 9 -p ack -e 40 -c 0 -i 7616 -a 0 -x {10.0 9.0 3803 ------- null} - -t 4.30995 -s 0 -d 9 -p ack -e 40 -c 0 -i 7616 -a 0 -x {10.0 9.0 3803 ------- null} h -t 4.30995 -s 0 -d 9 -p ack -e 40 -c 0 -i 7616 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.31002 -s 10 -d 7 -p ack -e 40 -c 0 -i 7620 -a 0 -x {10.0 9.0 3805 ------- null} + -t 4.31002 -s 7 -d 0 -p ack -e 40 -c 0 -i 7620 -a 0 -x {10.0 9.0 3805 ------- null} h -t 4.31002 -s 7 -d 8 -p ack -e 40 -c 0 -i 7620 -a 0 -x {10.0 9.0 3805 ------- null} r -t 4.3101 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7619 -a 0 -x {9.0 10.0 3814 ------- null} + -t 4.3101 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7619 -a 0 -x {9.0 10.0 3814 ------- null} h -t 4.3101 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7619 -a 0 -x {9.0 10.0 3814 ------- null} r -t 4.31016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7605 -a 0 -x {9.0 10.0 3807 ------- null} + -t 4.31016 -s 10 -d 7 -p ack -e 40 -c 0 -i 7624 -a 0 -x {10.0 9.0 3807 ------- null} - -t 4.31016 -s 10 -d 7 -p ack -e 40 -c 0 -i 7624 -a 0 -x {10.0 9.0 3807 ------- null} h -t 4.31016 -s 10 -d 7 -p ack -e 40 -c 0 -i 7624 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.31075 -s 0 -d 9 -p ack -e 40 -c 0 -i 7614 -a 0 -x {10.0 9.0 3802 ------- null} + -t 4.31075 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7625 -a 0 -x {9.0 10.0 3817 ------- null} - -t 4.31075 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7625 -a 0 -x {9.0 10.0 3817 ------- null} h -t 4.31075 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7625 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.31102 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7611 -a 0 -x {9.0 10.0 3810 ------- null} - -t 4.31102 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7611 -a 0 -x {9.0 10.0 3810 ------- null} h -t 4.31102 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7611 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.3111 -s 10 -d 7 -p ack -e 40 -c 0 -i 7622 -a 0 -x {10.0 9.0 3806 ------- null} + -t 4.3111 -s 7 -d 0 -p ack -e 40 -c 0 -i 7622 -a 0 -x {10.0 9.0 3806 ------- null} h -t 4.3111 -s 7 -d 8 -p ack -e 40 -c 0 -i 7622 -a 0 -x {10.0 9.0 3806 ------- null} + -t 4.31122 -s 0 -d 9 -p ack -e 40 -c 0 -i 7618 -a 0 -x {10.0 9.0 3804 ------- null} - -t 4.31122 -s 0 -d 9 -p ack -e 40 -c 0 -i 7618 -a 0 -x {10.0 9.0 3804 ------- null} h -t 4.31122 -s 0 -d 9 -p ack -e 40 -c 0 -i 7618 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.31125 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7607 -a 0 -x {9.0 10.0 3808 ------- null} + -t 4.31125 -s 10 -d 7 -p ack -e 40 -c 0 -i 7626 -a 0 -x {10.0 9.0 3808 ------- null} - -t 4.31125 -s 10 -d 7 -p ack -e 40 -c 0 -i 7626 -a 0 -x {10.0 9.0 3808 ------- null} h -t 4.31125 -s 10 -d 7 -p ack -e 40 -c 0 -i 7626 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.31128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7621 -a 0 -x {9.0 10.0 3815 ------- null} + -t 4.31128 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7621 -a 0 -x {9.0 10.0 3815 ------- null} h -t 4.31128 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7621 -a 0 -x {9.0 10.0 3815 ------- null} r -t 4.31198 -s 0 -d 9 -p ack -e 40 -c 0 -i 7616 -a 0 -x {10.0 9.0 3803 ------- null} + -t 4.31198 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7627 -a 0 -x {9.0 10.0 3818 ------- null} - -t 4.31198 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7627 -a 0 -x {9.0 10.0 3818 ------- null} h -t 4.31198 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7627 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.31211 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7613 -a 0 -x {9.0 10.0 3811 ------- null} - -t 4.31211 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7613 -a 0 -x {9.0 10.0 3811 ------- null} h -t 4.31211 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7613 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.31219 -s 10 -d 7 -p ack -e 40 -c 0 -i 7624 -a 0 -x {10.0 9.0 3807 ------- null} + -t 4.31219 -s 7 -d 0 -p ack -e 40 -c 0 -i 7624 -a 0 -x {10.0 9.0 3807 ------- null} h -t 4.31219 -s 7 -d 8 -p ack -e 40 -c 0 -i 7624 -a 0 -x {10.0 9.0 3807 ------- null} + -t 4.31234 -s 0 -d 9 -p ack -e 40 -c 0 -i 7620 -a 0 -x {10.0 9.0 3805 ------- null} - -t 4.31234 -s 0 -d 9 -p ack -e 40 -c 0 -i 7620 -a 0 -x {10.0 9.0 3805 ------- null} h -t 4.31234 -s 0 -d 9 -p ack -e 40 -c 0 -i 7620 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.31234 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7623 -a 0 -x {9.0 10.0 3816 ------- null} + -t 4.31234 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7623 -a 0 -x {9.0 10.0 3816 ------- null} h -t 4.31234 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7623 -a 0 -x {9.0 10.0 3816 ------- null} r -t 4.31246 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7609 -a 0 -x {9.0 10.0 3809 ------- null} + -t 4.31246 -s 10 -d 7 -p ack -e 40 -c 0 -i 7628 -a 0 -x {10.0 9.0 3809 ------- null} - -t 4.31246 -s 10 -d 7 -p ack -e 40 -c 0 -i 7628 -a 0 -x {10.0 9.0 3809 ------- null} h -t 4.31246 -s 10 -d 7 -p ack -e 40 -c 0 -i 7628 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.3132 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7615 -a 0 -x {9.0 10.0 3812 ------- null} - -t 4.3132 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7615 -a 0 -x {9.0 10.0 3812 ------- null} h -t 4.3132 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7615 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.31325 -s 0 -d 9 -p ack -e 40 -c 0 -i 7618 -a 0 -x {10.0 9.0 3804 ------- null} + -t 4.31325 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7629 -a 0 -x {9.0 10.0 3819 ------- null} - -t 4.31325 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7629 -a 0 -x {9.0 10.0 3819 ------- null} h -t 4.31325 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7629 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.31328 -s 10 -d 7 -p ack -e 40 -c 0 -i 7626 -a 0 -x {10.0 9.0 3808 ------- null} + -t 4.31328 -s 7 -d 0 -p ack -e 40 -c 0 -i 7626 -a 0 -x {10.0 9.0 3808 ------- null} h -t 4.31328 -s 7 -d 8 -p ack -e 40 -c 0 -i 7626 -a 0 -x {10.0 9.0 3808 ------- null} + -t 4.31338 -s 0 -d 9 -p ack -e 40 -c 0 -i 7622 -a 0 -x {10.0 9.0 3806 ------- null} - -t 4.31338 -s 0 -d 9 -p ack -e 40 -c 0 -i 7622 -a 0 -x {10.0 9.0 3806 ------- null} h -t 4.31338 -s 0 -d 9 -p ack -e 40 -c 0 -i 7622 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.31355 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7625 -a 0 -x {9.0 10.0 3817 ------- null} + -t 4.31355 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7625 -a 0 -x {9.0 10.0 3817 ------- null} h -t 4.31355 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7625 -a 0 -x {9.0 10.0 3817 ------- null} r -t 4.31382 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7611 -a 0 -x {9.0 10.0 3810 ------- null} + -t 4.31382 -s 10 -d 7 -p ack -e 40 -c 0 -i 7630 -a 0 -x {10.0 9.0 3810 ------- null} - -t 4.31382 -s 10 -d 7 -p ack -e 40 -c 0 -i 7630 -a 0 -x {10.0 9.0 3810 ------- null} h -t 4.31382 -s 10 -d 7 -p ack -e 40 -c 0 -i 7630 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.31429 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7617 -a 0 -x {9.0 10.0 3813 ------- null} - -t 4.31429 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7617 -a 0 -x {9.0 10.0 3813 ------- null} h -t 4.31429 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7617 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.31437 -s 0 -d 9 -p ack -e 40 -c 0 -i 7620 -a 0 -x {10.0 9.0 3805 ------- null} + -t 4.31437 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7631 -a 0 -x {9.0 10.0 3820 ------- null} - -t 4.31437 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7631 -a 0 -x {9.0 10.0 3820 ------- null} h -t 4.31437 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7631 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.3144 -s 0 -d 9 -p ack -e 40 -c 0 -i 7624 -a 0 -x {10.0 9.0 3807 ------- null} - -t 4.3144 -s 0 -d 9 -p ack -e 40 -c 0 -i 7624 -a 0 -x {10.0 9.0 3807 ------- null} h -t 4.3144 -s 0 -d 9 -p ack -e 40 -c 0 -i 7624 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.3145 -s 10 -d 7 -p ack -e 40 -c 0 -i 7628 -a 0 -x {10.0 9.0 3809 ------- null} + -t 4.3145 -s 7 -d 0 -p ack -e 40 -c 0 -i 7628 -a 0 -x {10.0 9.0 3809 ------- null} h -t 4.3145 -s 7 -d 8 -p ack -e 40 -c 0 -i 7628 -a 0 -x {10.0 9.0 3809 ------- null} r -t 4.31478 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7627 -a 0 -x {9.0 10.0 3818 ------- null} + -t 4.31478 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7627 -a 0 -x {9.0 10.0 3818 ------- null} h -t 4.31478 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7627 -a 0 -x {9.0 10.0 3818 ------- null} r -t 4.31491 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7613 -a 0 -x {9.0 10.0 3811 ------- null} + -t 4.31491 -s 10 -d 7 -p ack -e 40 -c 0 -i 7632 -a 0 -x {10.0 9.0 3811 ------- null} - -t 4.31491 -s 10 -d 7 -p ack -e 40 -c 0 -i 7632 -a 0 -x {10.0 9.0 3811 ------- null} h -t 4.31491 -s 10 -d 7 -p ack -e 40 -c 0 -i 7632 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.31538 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7619 -a 0 -x {9.0 10.0 3814 ------- null} - -t 4.31538 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7619 -a 0 -x {9.0 10.0 3814 ------- null} h -t 4.31538 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7619 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.31541 -s 0 -d 9 -p ack -e 40 -c 0 -i 7622 -a 0 -x {10.0 9.0 3806 ------- null} + -t 4.31541 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7633 -a 0 -x {9.0 10.0 3821 ------- null} - -t 4.31541 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7633 -a 0 -x {9.0 10.0 3821 ------- null} h -t 4.31541 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7633 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.31566 -s 0 -d 9 -p ack -e 40 -c 0 -i 7626 -a 0 -x {10.0 9.0 3808 ------- null} - -t 4.31566 -s 0 -d 9 -p ack -e 40 -c 0 -i 7626 -a 0 -x {10.0 9.0 3808 ------- null} h -t 4.31566 -s 0 -d 9 -p ack -e 40 -c 0 -i 7626 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.31586 -s 10 -d 7 -p ack -e 40 -c 0 -i 7630 -a 0 -x {10.0 9.0 3810 ------- null} + -t 4.31586 -s 7 -d 0 -p ack -e 40 -c 0 -i 7630 -a 0 -x {10.0 9.0 3810 ------- null} h -t 4.31586 -s 7 -d 8 -p ack -e 40 -c 0 -i 7630 -a 0 -x {10.0 9.0 3810 ------- null} r -t 4.316 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7615 -a 0 -x {9.0 10.0 3812 ------- null} + -t 4.316 -s 10 -d 7 -p ack -e 40 -c 0 -i 7634 -a 0 -x {10.0 9.0 3812 ------- null} - -t 4.316 -s 10 -d 7 -p ack -e 40 -c 0 -i 7634 -a 0 -x {10.0 9.0 3812 ------- null} h -t 4.316 -s 10 -d 7 -p ack -e 40 -c 0 -i 7634 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.31605 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7629 -a 0 -x {9.0 10.0 3819 ------- null} + -t 4.31605 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7629 -a 0 -x {9.0 10.0 3819 ------- null} h -t 4.31605 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7629 -a 0 -x {9.0 10.0 3819 ------- null} r -t 4.31643 -s 0 -d 9 -p ack -e 40 -c 0 -i 7624 -a 0 -x {10.0 9.0 3807 ------- null} + -t 4.31643 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7635 -a 0 -x {9.0 10.0 3822 ------- null} - -t 4.31643 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7635 -a 0 -x {9.0 10.0 3822 ------- null} h -t 4.31643 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7635 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.31651 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7621 -a 0 -x {9.0 10.0 3815 ------- null} - -t 4.31651 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7621 -a 0 -x {9.0 10.0 3815 ------- null} h -t 4.31651 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7621 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.31659 -s 0 -d 9 -p ack -e 40 -c 0 -i 7628 -a 0 -x {10.0 9.0 3809 ------- null} - -t 4.31659 -s 0 -d 9 -p ack -e 40 -c 0 -i 7628 -a 0 -x {10.0 9.0 3809 ------- null} h -t 4.31659 -s 0 -d 9 -p ack -e 40 -c 0 -i 7628 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.31694 -s 10 -d 7 -p ack -e 40 -c 0 -i 7632 -a 0 -x {10.0 9.0 3811 ------- null} + -t 4.31694 -s 7 -d 0 -p ack -e 40 -c 0 -i 7632 -a 0 -x {10.0 9.0 3811 ------- null} h -t 4.31694 -s 7 -d 8 -p ack -e 40 -c 0 -i 7632 -a 0 -x {10.0 9.0 3811 ------- null} r -t 4.31709 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7617 -a 0 -x {9.0 10.0 3813 ------- null} + -t 4.31709 -s 10 -d 7 -p ack -e 40 -c 0 -i 7636 -a 0 -x {10.0 9.0 3813 ------- null} - -t 4.31709 -s 10 -d 7 -p ack -e 40 -c 0 -i 7636 -a 0 -x {10.0 9.0 3813 ------- null} h -t 4.31709 -s 10 -d 7 -p ack -e 40 -c 0 -i 7636 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.31717 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7631 -a 0 -x {9.0 10.0 3820 ------- null} + -t 4.31717 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7631 -a 0 -x {9.0 10.0 3820 ------- null} h -t 4.31717 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7631 -a 0 -x {9.0 10.0 3820 ------- null} + -t 4.3176 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7623 -a 0 -x {9.0 10.0 3816 ------- null} - -t 4.3176 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7623 -a 0 -x {9.0 10.0 3816 ------- null} h -t 4.3176 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7623 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.3177 -s 0 -d 9 -p ack -e 40 -c 0 -i 7626 -a 0 -x {10.0 9.0 3808 ------- null} + -t 4.3177 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7637 -a 0 -x {9.0 10.0 3823 ------- null} - -t 4.3177 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7637 -a 0 -x {9.0 10.0 3823 ------- null} h -t 4.3177 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7637 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.31784 -s 0 -d 9 -p ack -e 40 -c 0 -i 7630 -a 0 -x {10.0 9.0 3810 ------- null} - -t 4.31784 -s 0 -d 9 -p ack -e 40 -c 0 -i 7630 -a 0 -x {10.0 9.0 3810 ------- null} h -t 4.31784 -s 0 -d 9 -p ack -e 40 -c 0 -i 7630 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.31803 -s 10 -d 7 -p ack -e 40 -c 0 -i 7634 -a 0 -x {10.0 9.0 3812 ------- null} + -t 4.31803 -s 7 -d 0 -p ack -e 40 -c 0 -i 7634 -a 0 -x {10.0 9.0 3812 ------- null} h -t 4.31803 -s 7 -d 8 -p ack -e 40 -c 0 -i 7634 -a 0 -x {10.0 9.0 3812 ------- null} r -t 4.31818 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7619 -a 0 -x {9.0 10.0 3814 ------- null} + -t 4.31818 -s 10 -d 7 -p ack -e 40 -c 0 -i 7638 -a 0 -x {10.0 9.0 3814 ------- null} - -t 4.31818 -s 10 -d 7 -p ack -e 40 -c 0 -i 7638 -a 0 -x {10.0 9.0 3814 ------- null} h -t 4.31818 -s 10 -d 7 -p ack -e 40 -c 0 -i 7638 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.31821 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7633 -a 0 -x {9.0 10.0 3821 ------- null} + -t 4.31821 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7633 -a 0 -x {9.0 10.0 3821 ------- null} h -t 4.31821 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7633 -a 0 -x {9.0 10.0 3821 ------- null} r -t 4.31862 -s 0 -d 9 -p ack -e 40 -c 0 -i 7628 -a 0 -x {10.0 9.0 3809 ------- null} + -t 4.31862 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7639 -a 0 -x {9.0 10.0 3824 ------- null} - -t 4.31862 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7639 -a 0 -x {9.0 10.0 3824 ------- null} h -t 4.31862 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7639 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.31869 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7625 -a 0 -x {9.0 10.0 3817 ------- null} - -t 4.31869 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7625 -a 0 -x {9.0 10.0 3817 ------- null} h -t 4.31869 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7625 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.31886 -s 0 -d 9 -p ack -e 40 -c 0 -i 7632 -a 0 -x {10.0 9.0 3811 ------- null} - -t 4.31886 -s 0 -d 9 -p ack -e 40 -c 0 -i 7632 -a 0 -x {10.0 9.0 3811 ------- null} h -t 4.31886 -s 0 -d 9 -p ack -e 40 -c 0 -i 7632 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.31912 -s 10 -d 7 -p ack -e 40 -c 0 -i 7636 -a 0 -x {10.0 9.0 3813 ------- null} + -t 4.31912 -s 7 -d 0 -p ack -e 40 -c 0 -i 7636 -a 0 -x {10.0 9.0 3813 ------- null} h -t 4.31912 -s 7 -d 8 -p ack -e 40 -c 0 -i 7636 -a 0 -x {10.0 9.0 3813 ------- null} r -t 4.31923 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7635 -a 0 -x {9.0 10.0 3822 ------- null} + -t 4.31923 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7635 -a 0 -x {9.0 10.0 3822 ------- null} h -t 4.31923 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7635 -a 0 -x {9.0 10.0 3822 ------- null} r -t 4.31931 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7621 -a 0 -x {9.0 10.0 3815 ------- null} + -t 4.31931 -s 10 -d 7 -p ack -e 40 -c 0 -i 7640 -a 0 -x {10.0 9.0 3815 ------- null} - -t 4.31931 -s 10 -d 7 -p ack -e 40 -c 0 -i 7640 -a 0 -x {10.0 9.0 3815 ------- null} h -t 4.31931 -s 10 -d 7 -p ack -e 40 -c 0 -i 7640 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.31978 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7627 -a 0 -x {9.0 10.0 3818 ------- null} - -t 4.31978 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7627 -a 0 -x {9.0 10.0 3818 ------- null} h -t 4.31978 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7627 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.31987 -s 0 -d 9 -p ack -e 40 -c 0 -i 7630 -a 0 -x {10.0 9.0 3810 ------- null} + -t 4.31987 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7641 -a 0 -x {9.0 10.0 3825 ------- null} - -t 4.31987 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7641 -a 0 -x {9.0 10.0 3825 ------- null} h -t 4.31987 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7641 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.31998 -s 0 -d 9 -p ack -e 40 -c 0 -i 7634 -a 0 -x {10.0 9.0 3812 ------- null} - -t 4.31998 -s 0 -d 9 -p ack -e 40 -c 0 -i 7634 -a 0 -x {10.0 9.0 3812 ------- null} h -t 4.31998 -s 0 -d 9 -p ack -e 40 -c 0 -i 7634 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.32021 -s 10 -d 7 -p ack -e 40 -c 0 -i 7638 -a 0 -x {10.0 9.0 3814 ------- null} + -t 4.32021 -s 7 -d 0 -p ack -e 40 -c 0 -i 7638 -a 0 -x {10.0 9.0 3814 ------- null} h -t 4.32021 -s 7 -d 8 -p ack -e 40 -c 0 -i 7638 -a 0 -x {10.0 9.0 3814 ------- null} r -t 4.3204 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7623 -a 0 -x {9.0 10.0 3816 ------- null} + -t 4.3204 -s 10 -d 7 -p ack -e 40 -c 0 -i 7642 -a 0 -x {10.0 9.0 3816 ------- null} - -t 4.3204 -s 10 -d 7 -p ack -e 40 -c 0 -i 7642 -a 0 -x {10.0 9.0 3816 ------- null} h -t 4.3204 -s 10 -d 7 -p ack -e 40 -c 0 -i 7642 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.3205 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7637 -a 0 -x {9.0 10.0 3823 ------- null} + -t 4.3205 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7637 -a 0 -x {9.0 10.0 3823 ------- null} h -t 4.3205 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7637 -a 0 -x {9.0 10.0 3823 ------- null} + -t 4.32086 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7629 -a 0 -x {9.0 10.0 3819 ------- null} - -t 4.32086 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7629 -a 0 -x {9.0 10.0 3819 ------- null} h -t 4.32086 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7629 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.3209 -s 0 -d 9 -p ack -e 40 -c 0 -i 7632 -a 0 -x {10.0 9.0 3811 ------- null} + -t 4.3209 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7643 -a 0 -x {9.0 10.0 3826 ------- null} - -t 4.3209 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7643 -a 0 -x {9.0 10.0 3826 ------- null} h -t 4.3209 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7643 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.32102 -s 0 -d 9 -p ack -e 40 -c 0 -i 7636 -a 0 -x {10.0 9.0 3813 ------- null} - -t 4.32102 -s 0 -d 9 -p ack -e 40 -c 0 -i 7636 -a 0 -x {10.0 9.0 3813 ------- null} h -t 4.32102 -s 0 -d 9 -p ack -e 40 -c 0 -i 7636 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.32134 -s 10 -d 7 -p ack -e 40 -c 0 -i 7640 -a 0 -x {10.0 9.0 3815 ------- null} + -t 4.32134 -s 7 -d 0 -p ack -e 40 -c 0 -i 7640 -a 0 -x {10.0 9.0 3815 ------- null} h -t 4.32134 -s 7 -d 8 -p ack -e 40 -c 0 -i 7640 -a 0 -x {10.0 9.0 3815 ------- null} r -t 4.32142 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7639 -a 0 -x {9.0 10.0 3824 ------- null} + -t 4.32142 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7639 -a 0 -x {9.0 10.0 3824 ------- null} h -t 4.32142 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7639 -a 0 -x {9.0 10.0 3824 ------- null} r -t 4.32149 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7625 -a 0 -x {9.0 10.0 3817 ------- null} + -t 4.32149 -s 10 -d 7 -p ack -e 40 -c 0 -i 7644 -a 0 -x {10.0 9.0 3817 ------- null} - -t 4.32149 -s 10 -d 7 -p ack -e 40 -c 0 -i 7644 -a 0 -x {10.0 9.0 3817 ------- null} h -t 4.32149 -s 10 -d 7 -p ack -e 40 -c 0 -i 7644 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.32195 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7631 -a 0 -x {9.0 10.0 3820 ------- null} - -t 4.32195 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7631 -a 0 -x {9.0 10.0 3820 ------- null} h -t 4.32195 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7631 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.32202 -s 0 -d 9 -p ack -e 40 -c 0 -i 7634 -a 0 -x {10.0 9.0 3812 ------- null} + -t 4.32202 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7645 -a 0 -x {9.0 10.0 3827 ------- null} - -t 4.32202 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7645 -a 0 -x {9.0 10.0 3827 ------- null} h -t 4.32202 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7645 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.32219 -s 0 -d 9 -p ack -e 40 -c 0 -i 7638 -a 0 -x {10.0 9.0 3814 ------- null} - -t 4.32219 -s 0 -d 9 -p ack -e 40 -c 0 -i 7638 -a 0 -x {10.0 9.0 3814 ------- null} h -t 4.32219 -s 0 -d 9 -p ack -e 40 -c 0 -i 7638 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.32243 -s 10 -d 7 -p ack -e 40 -c 0 -i 7642 -a 0 -x {10.0 9.0 3816 ------- null} + -t 4.32243 -s 7 -d 0 -p ack -e 40 -c 0 -i 7642 -a 0 -x {10.0 9.0 3816 ------- null} h -t 4.32243 -s 7 -d 8 -p ack -e 40 -c 0 -i 7642 -a 0 -x {10.0 9.0 3816 ------- null} r -t 4.32258 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7627 -a 0 -x {9.0 10.0 3818 ------- null} + -t 4.32258 -s 10 -d 7 -p ack -e 40 -c 0 -i 7646 -a 0 -x {10.0 9.0 3818 ------- null} - -t 4.32258 -s 10 -d 7 -p ack -e 40 -c 0 -i 7646 -a 0 -x {10.0 9.0 3818 ------- null} h -t 4.32258 -s 10 -d 7 -p ack -e 40 -c 0 -i 7646 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.32267 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7641 -a 0 -x {9.0 10.0 3825 ------- null} + -t 4.32267 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7641 -a 0 -x {9.0 10.0 3825 ------- null} h -t 4.32267 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7641 -a 0 -x {9.0 10.0 3825 ------- null} + -t 4.32304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7633 -a 0 -x {9.0 10.0 3821 ------- null} - -t 4.32304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7633 -a 0 -x {9.0 10.0 3821 ------- null} h -t 4.32304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7633 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.32306 -s 0 -d 9 -p ack -e 40 -c 0 -i 7636 -a 0 -x {10.0 9.0 3813 ------- null} + -t 4.32306 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7647 -a 0 -x {9.0 10.0 3828 ------- null} - -t 4.32306 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7647 -a 0 -x {9.0 10.0 3828 ------- null} h -t 4.32306 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7647 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.32333 -s 0 -d 9 -p ack -e 40 -c 0 -i 7640 -a 0 -x {10.0 9.0 3815 ------- null} - -t 4.32333 -s 0 -d 9 -p ack -e 40 -c 0 -i 7640 -a 0 -x {10.0 9.0 3815 ------- null} h -t 4.32333 -s 0 -d 9 -p ack -e 40 -c 0 -i 7640 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.32352 -s 10 -d 7 -p ack -e 40 -c 0 -i 7644 -a 0 -x {10.0 9.0 3817 ------- null} + -t 4.32352 -s 7 -d 0 -p ack -e 40 -c 0 -i 7644 -a 0 -x {10.0 9.0 3817 ------- null} h -t 4.32352 -s 7 -d 8 -p ack -e 40 -c 0 -i 7644 -a 0 -x {10.0 9.0 3817 ------- null} r -t 4.32366 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7629 -a 0 -x {9.0 10.0 3819 ------- null} + -t 4.32366 -s 10 -d 7 -p ack -e 40 -c 0 -i 7648 -a 0 -x {10.0 9.0 3819 ------- null} - -t 4.32366 -s 10 -d 7 -p ack -e 40 -c 0 -i 7648 -a 0 -x {10.0 9.0 3819 ------- null} h -t 4.32366 -s 10 -d 7 -p ack -e 40 -c 0 -i 7648 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.3237 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7643 -a 0 -x {9.0 10.0 3826 ------- null} + -t 4.3237 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7643 -a 0 -x {9.0 10.0 3826 ------- null} h -t 4.3237 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7643 -a 0 -x {9.0 10.0 3826 ------- null} r -t 4.32422 -s 0 -d 9 -p ack -e 40 -c 0 -i 7638 -a 0 -x {10.0 9.0 3814 ------- null} + -t 4.32422 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7649 -a 0 -x {9.0 10.0 3829 ------- null} - -t 4.32422 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7649 -a 0 -x {9.0 10.0 3829 ------- null} h -t 4.32422 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7649 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.32438 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7635 -a 0 -x {9.0 10.0 3822 ------- null} - -t 4.32438 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7635 -a 0 -x {9.0 10.0 3822 ------- null} h -t 4.32438 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7635 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.32446 -s 0 -d 9 -p ack -e 40 -c 0 -i 7642 -a 0 -x {10.0 9.0 3816 ------- null} - -t 4.32446 -s 0 -d 9 -p ack -e 40 -c 0 -i 7642 -a 0 -x {10.0 9.0 3816 ------- null} h -t 4.32446 -s 0 -d 9 -p ack -e 40 -c 0 -i 7642 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.32461 -s 10 -d 7 -p ack -e 40 -c 0 -i 7646 -a 0 -x {10.0 9.0 3818 ------- null} + -t 4.32461 -s 7 -d 0 -p ack -e 40 -c 0 -i 7646 -a 0 -x {10.0 9.0 3818 ------- null} h -t 4.32461 -s 7 -d 8 -p ack -e 40 -c 0 -i 7646 -a 0 -x {10.0 9.0 3818 ------- null} r -t 4.32475 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7631 -a 0 -x {9.0 10.0 3820 ------- null} + -t 4.32475 -s 10 -d 7 -p ack -e 40 -c 0 -i 7650 -a 0 -x {10.0 9.0 3820 ------- null} - -t 4.32475 -s 10 -d 7 -p ack -e 40 -c 0 -i 7650 -a 0 -x {10.0 9.0 3820 ------- null} h -t 4.32475 -s 10 -d 7 -p ack -e 40 -c 0 -i 7650 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.32482 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7645 -a 0 -x {9.0 10.0 3827 ------- null} + -t 4.32482 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7645 -a 0 -x {9.0 10.0 3827 ------- null} h -t 4.32482 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7645 -a 0 -x {9.0 10.0 3827 ------- null} r -t 4.32536 -s 0 -d 9 -p ack -e 40 -c 0 -i 7640 -a 0 -x {10.0 9.0 3815 ------- null} + -t 4.32536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7651 -a 0 -x {9.0 10.0 3830 ------- null} - -t 4.32536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7651 -a 0 -x {9.0 10.0 3830 ------- null} h -t 4.32536 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7651 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.32547 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7637 -a 0 -x {9.0 10.0 3823 ------- null} - -t 4.32547 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7637 -a 0 -x {9.0 10.0 3823 ------- null} h -t 4.32547 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7637 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.3257 -s 10 -d 7 -p ack -e 40 -c 0 -i 7648 -a 0 -x {10.0 9.0 3819 ------- null} + -t 4.3257 -s 7 -d 0 -p ack -e 40 -c 0 -i 7648 -a 0 -x {10.0 9.0 3819 ------- null} h -t 4.3257 -s 7 -d 8 -p ack -e 40 -c 0 -i 7648 -a 0 -x {10.0 9.0 3819 ------- null} + -t 4.32571 -s 0 -d 9 -p ack -e 40 -c 0 -i 7644 -a 0 -x {10.0 9.0 3817 ------- null} - -t 4.32571 -s 0 -d 9 -p ack -e 40 -c 0 -i 7644 -a 0 -x {10.0 9.0 3817 ------- null} h -t 4.32571 -s 0 -d 9 -p ack -e 40 -c 0 -i 7644 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.32584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7633 -a 0 -x {9.0 10.0 3821 ------- null} + -t 4.32584 -s 10 -d 7 -p ack -e 40 -c 0 -i 7652 -a 0 -x {10.0 9.0 3821 ------- null} - -t 4.32584 -s 10 -d 7 -p ack -e 40 -c 0 -i 7652 -a 0 -x {10.0 9.0 3821 ------- null} h -t 4.32584 -s 10 -d 7 -p ack -e 40 -c 0 -i 7652 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.32586 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7647 -a 0 -x {9.0 10.0 3828 ------- null} + -t 4.32586 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7647 -a 0 -x {9.0 10.0 3828 ------- null} h -t 4.32586 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7647 -a 0 -x {9.0 10.0 3828 ------- null} r -t 4.3265 -s 0 -d 9 -p ack -e 40 -c 0 -i 7642 -a 0 -x {10.0 9.0 3816 ------- null} + -t 4.3265 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7653 -a 0 -x {9.0 10.0 3831 ------- null} - -t 4.3265 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7653 -a 0 -x {9.0 10.0 3831 ------- null} h -t 4.3265 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7653 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.32656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7639 -a 0 -x {9.0 10.0 3824 ------- null} - -t 4.32656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7639 -a 0 -x {9.0 10.0 3824 ------- null} h -t 4.32656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7639 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.32678 -s 10 -d 7 -p ack -e 40 -c 0 -i 7650 -a 0 -x {10.0 9.0 3820 ------- null} + -t 4.32678 -s 7 -d 0 -p ack -e 40 -c 0 -i 7650 -a 0 -x {10.0 9.0 3820 ------- null} h -t 4.32678 -s 7 -d 8 -p ack -e 40 -c 0 -i 7650 -a 0 -x {10.0 9.0 3820 ------- null} + -t 4.32678 -s 0 -d 9 -p ack -e 40 -c 0 -i 7646 -a 0 -x {10.0 9.0 3818 ------- null} - -t 4.32678 -s 0 -d 9 -p ack -e 40 -c 0 -i 7646 -a 0 -x {10.0 9.0 3818 ------- null} h -t 4.32678 -s 0 -d 9 -p ack -e 40 -c 0 -i 7646 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.32702 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7649 -a 0 -x {9.0 10.0 3829 ------- null} + -t 4.32702 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7649 -a 0 -x {9.0 10.0 3829 ------- null} h -t 4.32702 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7649 -a 0 -x {9.0 10.0 3829 ------- null} r -t 4.32718 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7635 -a 0 -x {9.0 10.0 3822 ------- null} + -t 4.32718 -s 10 -d 7 -p ack -e 40 -c 0 -i 7654 -a 0 -x {10.0 9.0 3822 ------- null} - -t 4.32718 -s 10 -d 7 -p ack -e 40 -c 0 -i 7654 -a 0 -x {10.0 9.0 3822 ------- null} h -t 4.32718 -s 10 -d 7 -p ack -e 40 -c 0 -i 7654 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.32765 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7641 -a 0 -x {9.0 10.0 3825 ------- null} - -t 4.32765 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7641 -a 0 -x {9.0 10.0 3825 ------- null} h -t 4.32765 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7641 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.32774 -s 0 -d 9 -p ack -e 40 -c 0 -i 7644 -a 0 -x {10.0 9.0 3817 ------- null} + -t 4.32774 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7655 -a 0 -x {9.0 10.0 3832 ------- null} - -t 4.32774 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7655 -a 0 -x {9.0 10.0 3832 ------- null} h -t 4.32774 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7655 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.32782 -s 0 -d 9 -p ack -e 40 -c 0 -i 7648 -a 0 -x {10.0 9.0 3819 ------- null} - -t 4.32782 -s 0 -d 9 -p ack -e 40 -c 0 -i 7648 -a 0 -x {10.0 9.0 3819 ------- null} h -t 4.32782 -s 0 -d 9 -p ack -e 40 -c 0 -i 7648 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.32787 -s 10 -d 7 -p ack -e 40 -c 0 -i 7652 -a 0 -x {10.0 9.0 3821 ------- null} + -t 4.32787 -s 7 -d 0 -p ack -e 40 -c 0 -i 7652 -a 0 -x {10.0 9.0 3821 ------- null} h -t 4.32787 -s 7 -d 8 -p ack -e 40 -c 0 -i 7652 -a 0 -x {10.0 9.0 3821 ------- null} r -t 4.32816 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7651 -a 0 -x {9.0 10.0 3830 ------- null} + -t 4.32816 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7651 -a 0 -x {9.0 10.0 3830 ------- null} h -t 4.32816 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7651 -a 0 -x {9.0 10.0 3830 ------- null} r -t 4.32827 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7637 -a 0 -x {9.0 10.0 3823 ------- null} + -t 4.32827 -s 10 -d 7 -p ack -e 40 -c 0 -i 7656 -a 0 -x {10.0 9.0 3823 ------- null} - -t 4.32827 -s 10 -d 7 -p ack -e 40 -c 0 -i 7656 -a 0 -x {10.0 9.0 3823 ------- null} h -t 4.32827 -s 10 -d 7 -p ack -e 40 -c 0 -i 7656 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.32874 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7643 -a 0 -x {9.0 10.0 3826 ------- null} - -t 4.32874 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7643 -a 0 -x {9.0 10.0 3826 ------- null} h -t 4.32874 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7643 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.32882 -s 0 -d 9 -p ack -e 40 -c 0 -i 7646 -a 0 -x {10.0 9.0 3818 ------- null} + -t 4.32882 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7657 -a 0 -x {9.0 10.0 3833 ------- null} - -t 4.32882 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7657 -a 0 -x {9.0 10.0 3833 ------- null} h -t 4.32882 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7657 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.32894 -s 0 -d 9 -p ack -e 40 -c 0 -i 7650 -a 0 -x {10.0 9.0 3820 ------- null} - -t 4.32894 -s 0 -d 9 -p ack -e 40 -c 0 -i 7650 -a 0 -x {10.0 9.0 3820 ------- null} h -t 4.32894 -s 0 -d 9 -p ack -e 40 -c 0 -i 7650 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.32922 -s 10 -d 7 -p ack -e 40 -c 0 -i 7654 -a 0 -x {10.0 9.0 3822 ------- null} + -t 4.32922 -s 7 -d 0 -p ack -e 40 -c 0 -i 7654 -a 0 -x {10.0 9.0 3822 ------- null} h -t 4.32922 -s 7 -d 8 -p ack -e 40 -c 0 -i 7654 -a 0 -x {10.0 9.0 3822 ------- null} r -t 4.3293 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7653 -a 0 -x {9.0 10.0 3831 ------- null} + -t 4.3293 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7653 -a 0 -x {9.0 10.0 3831 ------- null} h -t 4.3293 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7653 -a 0 -x {9.0 10.0 3831 ------- null} r -t 4.32936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7639 -a 0 -x {9.0 10.0 3824 ------- null} + -t 4.32936 -s 10 -d 7 -p ack -e 40 -c 0 -i 7658 -a 0 -x {10.0 9.0 3824 ------- null} - -t 4.32936 -s 10 -d 7 -p ack -e 40 -c 0 -i 7658 -a 0 -x {10.0 9.0 3824 ------- null} h -t 4.32936 -s 10 -d 7 -p ack -e 40 -c 0 -i 7658 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.32982 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7645 -a 0 -x {9.0 10.0 3827 ------- null} - -t 4.32982 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7645 -a 0 -x {9.0 10.0 3827 ------- null} h -t 4.32982 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7645 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.32986 -s 0 -d 9 -p ack -e 40 -c 0 -i 7648 -a 0 -x {10.0 9.0 3819 ------- null} + -t 4.32986 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7659 -a 0 -x {9.0 10.0 3834 ------- null} - -t 4.32986 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7659 -a 0 -x {9.0 10.0 3834 ------- null} h -t 4.32986 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7659 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.3301 -s 0 -d 9 -p ack -e 40 -c 0 -i 7652 -a 0 -x {10.0 9.0 3821 ------- null} - -t 4.3301 -s 0 -d 9 -p ack -e 40 -c 0 -i 7652 -a 0 -x {10.0 9.0 3821 ------- null} h -t 4.3301 -s 0 -d 9 -p ack -e 40 -c 0 -i 7652 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.3303 -s 10 -d 7 -p ack -e 40 -c 0 -i 7656 -a 0 -x {10.0 9.0 3823 ------- null} + -t 4.3303 -s 7 -d 0 -p ack -e 40 -c 0 -i 7656 -a 0 -x {10.0 9.0 3823 ------- null} h -t 4.3303 -s 7 -d 8 -p ack -e 40 -c 0 -i 7656 -a 0 -x {10.0 9.0 3823 ------- null} r -t 4.33045 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7641 -a 0 -x {9.0 10.0 3825 ------- null} + -t 4.33045 -s 10 -d 7 -p ack -e 40 -c 0 -i 7660 -a 0 -x {10.0 9.0 3825 ------- null} - -t 4.33045 -s 10 -d 7 -p ack -e 40 -c 0 -i 7660 -a 0 -x {10.0 9.0 3825 ------- null} h -t 4.33045 -s 10 -d 7 -p ack -e 40 -c 0 -i 7660 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.33054 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7655 -a 0 -x {9.0 10.0 3832 ------- null} + -t 4.33054 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7655 -a 0 -x {9.0 10.0 3832 ------- null} h -t 4.33054 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7655 -a 0 -x {9.0 10.0 3832 ------- null} r -t 4.33098 -s 0 -d 9 -p ack -e 40 -c 0 -i 7650 -a 0 -x {10.0 9.0 3820 ------- null} + -t 4.33098 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7661 -a 0 -x {9.0 10.0 3835 ------- null} - -t 4.33098 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7661 -a 0 -x {9.0 10.0 3835 ------- null} h -t 4.33098 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7661 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.33099 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7647 -a 0 -x {9.0 10.0 3828 ------- null} - -t 4.33099 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7647 -a 0 -x {9.0 10.0 3828 ------- null} h -t 4.33099 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7647 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.33114 -s 0 -d 9 -p ack -e 40 -c 0 -i 7654 -a 0 -x {10.0 9.0 3822 ------- null} - -t 4.33114 -s 0 -d 9 -p ack -e 40 -c 0 -i 7654 -a 0 -x {10.0 9.0 3822 ------- null} h -t 4.33114 -s 0 -d 9 -p ack -e 40 -c 0 -i 7654 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.33139 -s 10 -d 7 -p ack -e 40 -c 0 -i 7658 -a 0 -x {10.0 9.0 3824 ------- null} + -t 4.33139 -s 7 -d 0 -p ack -e 40 -c 0 -i 7658 -a 0 -x {10.0 9.0 3824 ------- null} h -t 4.33139 -s 7 -d 8 -p ack -e 40 -c 0 -i 7658 -a 0 -x {10.0 9.0 3824 ------- null} r -t 4.33154 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7643 -a 0 -x {9.0 10.0 3826 ------- null} + -t 4.33154 -s 10 -d 7 -p ack -e 40 -c 0 -i 7662 -a 0 -x {10.0 9.0 3826 ------- null} - -t 4.33154 -s 10 -d 7 -p ack -e 40 -c 0 -i 7662 -a 0 -x {10.0 9.0 3826 ------- null} h -t 4.33154 -s 10 -d 7 -p ack -e 40 -c 0 -i 7662 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.33162 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7657 -a 0 -x {9.0 10.0 3833 ------- null} + -t 4.33162 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7657 -a 0 -x {9.0 10.0 3833 ------- null} h -t 4.33162 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7657 -a 0 -x {9.0 10.0 3833 ------- null} + -t 4.33208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7649 -a 0 -x {9.0 10.0 3829 ------- null} - -t 4.33208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7649 -a 0 -x {9.0 10.0 3829 ------- null} h -t 4.33208 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7649 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.33213 -s 0 -d 9 -p ack -e 40 -c 0 -i 7652 -a 0 -x {10.0 9.0 3821 ------- null} + -t 4.33213 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7663 -a 0 -x {9.0 10.0 3836 ------- null} - -t 4.33213 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7663 -a 0 -x {9.0 10.0 3836 ------- null} h -t 4.33213 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7663 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.33218 -s 0 -d 9 -p ack -e 40 -c 0 -i 7656 -a 0 -x {10.0 9.0 3823 ------- null} - -t 4.33218 -s 0 -d 9 -p ack -e 40 -c 0 -i 7656 -a 0 -x {10.0 9.0 3823 ------- null} h -t 4.33218 -s 0 -d 9 -p ack -e 40 -c 0 -i 7656 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.33248 -s 10 -d 7 -p ack -e 40 -c 0 -i 7660 -a 0 -x {10.0 9.0 3825 ------- null} + -t 4.33248 -s 7 -d 0 -p ack -e 40 -c 0 -i 7660 -a 0 -x {10.0 9.0 3825 ------- null} h -t 4.33248 -s 7 -d 8 -p ack -e 40 -c 0 -i 7660 -a 0 -x {10.0 9.0 3825 ------- null} r -t 4.33262 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7645 -a 0 -x {9.0 10.0 3827 ------- null} + -t 4.33262 -s 10 -d 7 -p ack -e 40 -c 0 -i 7664 -a 0 -x {10.0 9.0 3827 ------- null} - -t 4.33262 -s 10 -d 7 -p ack -e 40 -c 0 -i 7664 -a 0 -x {10.0 9.0 3827 ------- null} h -t 4.33262 -s 10 -d 7 -p ack -e 40 -c 0 -i 7664 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.33266 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7659 -a 0 -x {9.0 10.0 3834 ------- null} + -t 4.33266 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7659 -a 0 -x {9.0 10.0 3834 ------- null} h -t 4.33266 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7659 -a 0 -x {9.0 10.0 3834 ------- null} r -t 4.33317 -s 0 -d 9 -p ack -e 40 -c 0 -i 7654 -a 0 -x {10.0 9.0 3822 ------- null} + -t 4.33317 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7665 -a 0 -x {9.0 10.0 3837 ------- null} - -t 4.33317 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7665 -a 0 -x {9.0 10.0 3837 ------- null} h -t 4.33317 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7665 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.33317 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7651 -a 0 -x {9.0 10.0 3830 ------- null} - -t 4.33317 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7651 -a 0 -x {9.0 10.0 3830 ------- null} h -t 4.33317 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7651 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.33346 -s 0 -d 9 -p ack -e 40 -c 0 -i 7658 -a 0 -x {10.0 9.0 3824 ------- null} - -t 4.33346 -s 0 -d 9 -p ack -e 40 -c 0 -i 7658 -a 0 -x {10.0 9.0 3824 ------- null} h -t 4.33346 -s 0 -d 9 -p ack -e 40 -c 0 -i 7658 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.33357 -s 10 -d 7 -p ack -e 40 -c 0 -i 7662 -a 0 -x {10.0 9.0 3826 ------- null} + -t 4.33357 -s 7 -d 0 -p ack -e 40 -c 0 -i 7662 -a 0 -x {10.0 9.0 3826 ------- null} h -t 4.33357 -s 7 -d 8 -p ack -e 40 -c 0 -i 7662 -a 0 -x {10.0 9.0 3826 ------- null} r -t 4.33378 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7661 -a 0 -x {9.0 10.0 3835 ------- null} + -t 4.33378 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7661 -a 0 -x {9.0 10.0 3835 ------- null} h -t 4.33378 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7661 -a 0 -x {9.0 10.0 3835 ------- null} r -t 4.33379 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7647 -a 0 -x {9.0 10.0 3828 ------- null} + -t 4.33379 -s 10 -d 7 -p ack -e 40 -c 0 -i 7666 -a 0 -x {10.0 9.0 3828 ------- null} - -t 4.33379 -s 10 -d 7 -p ack -e 40 -c 0 -i 7666 -a 0 -x {10.0 9.0 3828 ------- null} h -t 4.33379 -s 10 -d 7 -p ack -e 40 -c 0 -i 7666 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.33421 -s 0 -d 9 -p ack -e 40 -c 0 -i 7656 -a 0 -x {10.0 9.0 3823 ------- null} + -t 4.33421 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7667 -a 0 -x {9.0 10.0 3838 ------- null} - -t 4.33421 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7667 -a 0 -x {9.0 10.0 3838 ------- null} h -t 4.33421 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7667 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.33434 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7653 -a 0 -x {9.0 10.0 3831 ------- null} - -t 4.33434 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7653 -a 0 -x {9.0 10.0 3831 ------- null} h -t 4.33434 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7653 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.33462 -s 0 -d 9 -p ack -e 40 -c 0 -i 7660 -a 0 -x {10.0 9.0 3825 ------- null} - -t 4.33462 -s 0 -d 9 -p ack -e 40 -c 0 -i 7660 -a 0 -x {10.0 9.0 3825 ------- null} h -t 4.33462 -s 0 -d 9 -p ack -e 40 -c 0 -i 7660 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.33466 -s 10 -d 7 -p ack -e 40 -c 0 -i 7664 -a 0 -x {10.0 9.0 3827 ------- null} + -t 4.33466 -s 7 -d 0 -p ack -e 40 -c 0 -i 7664 -a 0 -x {10.0 9.0 3827 ------- null} h -t 4.33466 -s 7 -d 8 -p ack -e 40 -c 0 -i 7664 -a 0 -x {10.0 9.0 3827 ------- null} r -t 4.33488 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7649 -a 0 -x {9.0 10.0 3829 ------- null} + -t 4.33488 -s 10 -d 7 -p ack -e 40 -c 0 -i 7668 -a 0 -x {10.0 9.0 3829 ------- null} - -t 4.33488 -s 10 -d 7 -p ack -e 40 -c 0 -i 7668 -a 0 -x {10.0 9.0 3829 ------- null} h -t 4.33488 -s 10 -d 7 -p ack -e 40 -c 0 -i 7668 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.33493 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7663 -a 0 -x {9.0 10.0 3836 ------- null} + -t 4.33493 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7663 -a 0 -x {9.0 10.0 3836 ------- null} h -t 4.33493 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7663 -a 0 -x {9.0 10.0 3836 ------- null} r -t 4.33549 -s 0 -d 9 -p ack -e 40 -c 0 -i 7658 -a 0 -x {10.0 9.0 3824 ------- null} + -t 4.33549 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7669 -a 0 -x {9.0 10.0 3839 ------- null} - -t 4.33549 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7669 -a 0 -x {9.0 10.0 3839 ------- null} h -t 4.33549 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7669 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.33552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7655 -a 0 -x {9.0 10.0 3832 ------- null} - -t 4.33552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7655 -a 0 -x {9.0 10.0 3832 ------- null} h -t 4.33552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7655 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.33566 -s 0 -d 9 -p ack -e 40 -c 0 -i 7662 -a 0 -x {10.0 9.0 3826 ------- null} - -t 4.33566 -s 0 -d 9 -p ack -e 40 -c 0 -i 7662 -a 0 -x {10.0 9.0 3826 ------- null} h -t 4.33566 -s 0 -d 9 -p ack -e 40 -c 0 -i 7662 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.33582 -s 10 -d 7 -p ack -e 40 -c 0 -i 7666 -a 0 -x {10.0 9.0 3828 ------- null} + -t 4.33582 -s 7 -d 0 -p ack -e 40 -c 0 -i 7666 -a 0 -x {10.0 9.0 3828 ------- null} h -t 4.33582 -s 7 -d 8 -p ack -e 40 -c 0 -i 7666 -a 0 -x {10.0 9.0 3828 ------- null} r -t 4.33597 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7665 -a 0 -x {9.0 10.0 3837 ------- null} + -t 4.33597 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7665 -a 0 -x {9.0 10.0 3837 ------- null} h -t 4.33597 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7665 -a 0 -x {9.0 10.0 3837 ------- null} r -t 4.33597 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7651 -a 0 -x {9.0 10.0 3830 ------- null} + -t 4.33597 -s 10 -d 7 -p ack -e 40 -c 0 -i 7670 -a 0 -x {10.0 9.0 3830 ------- null} - -t 4.33597 -s 10 -d 7 -p ack -e 40 -c 0 -i 7670 -a 0 -x {10.0 9.0 3830 ------- null} h -t 4.33597 -s 10 -d 7 -p ack -e 40 -c 0 -i 7670 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.33661 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7657 -a 0 -x {9.0 10.0 3833 ------- null} - -t 4.33661 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7657 -a 0 -x {9.0 10.0 3833 ------- null} h -t 4.33661 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7657 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.33666 -s 0 -d 9 -p ack -e 40 -c 0 -i 7660 -a 0 -x {10.0 9.0 3825 ------- null} + -t 4.33666 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7671 -a 0 -x {9.0 10.0 3840 ------- null} - -t 4.33666 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7671 -a 0 -x {9.0 10.0 3840 ------- null} h -t 4.33666 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7671 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.33685 -s 0 -d 9 -p ack -e 40 -c 0 -i 7664 -a 0 -x {10.0 9.0 3827 ------- null} - -t 4.33685 -s 0 -d 9 -p ack -e 40 -c 0 -i 7664 -a 0 -x {10.0 9.0 3827 ------- null} h -t 4.33685 -s 0 -d 9 -p ack -e 40 -c 0 -i 7664 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.33691 -s 10 -d 7 -p ack -e 40 -c 0 -i 7668 -a 0 -x {10.0 9.0 3829 ------- null} + -t 4.33691 -s 7 -d 0 -p ack -e 40 -c 0 -i 7668 -a 0 -x {10.0 9.0 3829 ------- null} h -t 4.33691 -s 7 -d 8 -p ack -e 40 -c 0 -i 7668 -a 0 -x {10.0 9.0 3829 ------- null} r -t 4.33701 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7667 -a 0 -x {9.0 10.0 3838 ------- null} + -t 4.33701 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7667 -a 0 -x {9.0 10.0 3838 ------- null} h -t 4.33701 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7667 -a 0 -x {9.0 10.0 3838 ------- null} r -t 4.33714 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7653 -a 0 -x {9.0 10.0 3831 ------- null} + -t 4.33714 -s 10 -d 7 -p ack -e 40 -c 0 -i 7672 -a 0 -x {10.0 9.0 3831 ------- null} - -t 4.33714 -s 10 -d 7 -p ack -e 40 -c 0 -i 7672 -a 0 -x {10.0 9.0 3831 ------- null} h -t 4.33714 -s 10 -d 7 -p ack -e 40 -c 0 -i 7672 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.3377 -s 0 -d 9 -p ack -e 40 -c 0 -i 7662 -a 0 -x {10.0 9.0 3826 ------- null} + -t 4.3377 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7673 -a 0 -x {9.0 10.0 3841 ------- null} - -t 4.3377 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7673 -a 0 -x {9.0 10.0 3841 ------- null} h -t 4.3377 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7673 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.3377 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7659 -a 0 -x {9.0 10.0 3834 ------- null} - -t 4.3377 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7659 -a 0 -x {9.0 10.0 3834 ------- null} h -t 4.3377 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7659 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.33786 -s 0 -d 9 -p ack -e 40 -c 0 -i 7666 -a 0 -x {10.0 9.0 3828 ------- null} - -t 4.33786 -s 0 -d 9 -p ack -e 40 -c 0 -i 7666 -a 0 -x {10.0 9.0 3828 ------- null} h -t 4.33786 -s 0 -d 9 -p ack -e 40 -c 0 -i 7666 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.338 -s 10 -d 7 -p ack -e 40 -c 0 -i 7670 -a 0 -x {10.0 9.0 3830 ------- null} + -t 4.338 -s 7 -d 0 -p ack -e 40 -c 0 -i 7670 -a 0 -x {10.0 9.0 3830 ------- null} h -t 4.338 -s 7 -d 8 -p ack -e 40 -c 0 -i 7670 -a 0 -x {10.0 9.0 3830 ------- null} r -t 4.33829 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7669 -a 0 -x {9.0 10.0 3839 ------- null} + -t 4.33829 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7669 -a 0 -x {9.0 10.0 3839 ------- null} h -t 4.33829 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7669 -a 0 -x {9.0 10.0 3839 ------- null} r -t 4.33832 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7655 -a 0 -x {9.0 10.0 3832 ------- null} + -t 4.33832 -s 10 -d 7 -p ack -e 40 -c 0 -i 7674 -a 0 -x {10.0 9.0 3832 ------- null} - -t 4.33832 -s 10 -d 7 -p ack -e 40 -c 0 -i 7674 -a 0 -x {10.0 9.0 3832 ------- null} h -t 4.33832 -s 10 -d 7 -p ack -e 40 -c 0 -i 7674 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.33878 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7661 -a 0 -x {9.0 10.0 3835 ------- null} - -t 4.33878 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7661 -a 0 -x {9.0 10.0 3835 ------- null} h -t 4.33878 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7661 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.33886 -s 0 -d 9 -p ack -e 40 -c 0 -i 7668 -a 0 -x {10.0 9.0 3829 ------- null} - -t 4.33886 -s 0 -d 9 -p ack -e 40 -c 0 -i 7668 -a 0 -x {10.0 9.0 3829 ------- null} h -t 4.33886 -s 0 -d 9 -p ack -e 40 -c 0 -i 7668 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.33888 -s 0 -d 9 -p ack -e 40 -c 0 -i 7664 -a 0 -x {10.0 9.0 3827 ------- null} + -t 4.33888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7675 -a 0 -x {9.0 10.0 3842 ------- null} - -t 4.33888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7675 -a 0 -x {9.0 10.0 3842 ------- null} h -t 4.33888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7675 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.33917 -s 10 -d 7 -p ack -e 40 -c 0 -i 7672 -a 0 -x {10.0 9.0 3831 ------- null} + -t 4.33917 -s 7 -d 0 -p ack -e 40 -c 0 -i 7672 -a 0 -x {10.0 9.0 3831 ------- null} h -t 4.33917 -s 7 -d 8 -p ack -e 40 -c 0 -i 7672 -a 0 -x {10.0 9.0 3831 ------- null} r -t 4.33941 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7657 -a 0 -x {9.0 10.0 3833 ------- null} + -t 4.33941 -s 10 -d 7 -p ack -e 40 -c 0 -i 7676 -a 0 -x {10.0 9.0 3833 ------- null} - -t 4.33941 -s 10 -d 7 -p ack -e 40 -c 0 -i 7676 -a 0 -x {10.0 9.0 3833 ------- null} h -t 4.33941 -s 10 -d 7 -p ack -e 40 -c 0 -i 7676 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.33946 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7671 -a 0 -x {9.0 10.0 3840 ------- null} + -t 4.33946 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7671 -a 0 -x {9.0 10.0 3840 ------- null} h -t 4.33946 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7671 -a 0 -x {9.0 10.0 3840 ------- null} + -t 4.33987 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7663 -a 0 -x {9.0 10.0 3836 ------- null} - -t 4.33987 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7663 -a 0 -x {9.0 10.0 3836 ------- null} h -t 4.33987 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7663 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.33989 -s 0 -d 9 -p ack -e 40 -c 0 -i 7666 -a 0 -x {10.0 9.0 3828 ------- null} + -t 4.33989 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7677 -a 0 -x {9.0 10.0 3843 ------- null} - -t 4.33989 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7677 -a 0 -x {9.0 10.0 3843 ------- null} h -t 4.33989 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7677 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.33998 -s 0 -d 9 -p ack -e 40 -c 0 -i 7670 -a 0 -x {10.0 9.0 3830 ------- null} - -t 4.33998 -s 0 -d 9 -p ack -e 40 -c 0 -i 7670 -a 0 -x {10.0 9.0 3830 ------- null} h -t 4.33998 -s 0 -d 9 -p ack -e 40 -c 0 -i 7670 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.34035 -s 10 -d 7 -p ack -e 40 -c 0 -i 7674 -a 0 -x {10.0 9.0 3832 ------- null} + -t 4.34035 -s 7 -d 0 -p ack -e 40 -c 0 -i 7674 -a 0 -x {10.0 9.0 3832 ------- null} h -t 4.34035 -s 7 -d 8 -p ack -e 40 -c 0 -i 7674 -a 0 -x {10.0 9.0 3832 ------- null} r -t 4.3405 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7673 -a 0 -x {9.0 10.0 3841 ------- null} + -t 4.3405 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7673 -a 0 -x {9.0 10.0 3841 ------- null} h -t 4.3405 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7673 -a 0 -x {9.0 10.0 3841 ------- null} r -t 4.3405 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7659 -a 0 -x {9.0 10.0 3834 ------- null} + -t 4.3405 -s 10 -d 7 -p ack -e 40 -c 0 -i 7678 -a 0 -x {10.0 9.0 3834 ------- null} - -t 4.3405 -s 10 -d 7 -p ack -e 40 -c 0 -i 7678 -a 0 -x {10.0 9.0 3834 ------- null} h -t 4.3405 -s 10 -d 7 -p ack -e 40 -c 0 -i 7678 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.3409 -s 0 -d 9 -p ack -e 40 -c 0 -i 7668 -a 0 -x {10.0 9.0 3829 ------- null} + -t 4.3409 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7679 -a 0 -x {9.0 10.0 3844 ------- null} - -t 4.3409 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7679 -a 0 -x {9.0 10.0 3844 ------- null} h -t 4.3409 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7679 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.34096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7665 -a 0 -x {9.0 10.0 3837 ------- null} - -t 4.34096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7665 -a 0 -x {9.0 10.0 3837 ------- null} h -t 4.34096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7665 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.34104 -s 0 -d 9 -p ack -e 40 -c 0 -i 7672 -a 0 -x {10.0 9.0 3831 ------- null} - -t 4.34104 -s 0 -d 9 -p ack -e 40 -c 0 -i 7672 -a 0 -x {10.0 9.0 3831 ------- null} h -t 4.34104 -s 0 -d 9 -p ack -e 40 -c 0 -i 7672 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.34144 -s 10 -d 7 -p ack -e 40 -c 0 -i 7676 -a 0 -x {10.0 9.0 3833 ------- null} + -t 4.34144 -s 7 -d 0 -p ack -e 40 -c 0 -i 7676 -a 0 -x {10.0 9.0 3833 ------- null} h -t 4.34144 -s 7 -d 8 -p ack -e 40 -c 0 -i 7676 -a 0 -x {10.0 9.0 3833 ------- null} r -t 4.34158 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7661 -a 0 -x {9.0 10.0 3835 ------- null} + -t 4.34158 -s 10 -d 7 -p ack -e 40 -c 0 -i 7680 -a 0 -x {10.0 9.0 3835 ------- null} - -t 4.34158 -s 10 -d 7 -p ack -e 40 -c 0 -i 7680 -a 0 -x {10.0 9.0 3835 ------- null} h -t 4.34158 -s 10 -d 7 -p ack -e 40 -c 0 -i 7680 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.34168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7675 -a 0 -x {9.0 10.0 3842 ------- null} + -t 4.34168 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7675 -a 0 -x {9.0 10.0 3842 ------- null} h -t 4.34168 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7675 -a 0 -x {9.0 10.0 3842 ------- null} r -t 4.34202 -s 0 -d 9 -p ack -e 40 -c 0 -i 7670 -a 0 -x {10.0 9.0 3830 ------- null} + -t 4.34202 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7681 -a 0 -x {9.0 10.0 3845 ------- null} - -t 4.34202 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7681 -a 0 -x {9.0 10.0 3845 ------- null} h -t 4.34202 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7681 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.34205 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7667 -a 0 -x {9.0 10.0 3838 ------- null} - -t 4.34205 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7667 -a 0 -x {9.0 10.0 3838 ------- null} h -t 4.34205 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7667 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.34224 -s 0 -d 9 -p ack -e 40 -c 0 -i 7674 -a 0 -x {10.0 9.0 3832 ------- null} - -t 4.34224 -s 0 -d 9 -p ack -e 40 -c 0 -i 7674 -a 0 -x {10.0 9.0 3832 ------- null} h -t 4.34224 -s 0 -d 9 -p ack -e 40 -c 0 -i 7674 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.34253 -s 10 -d 7 -p ack -e 40 -c 0 -i 7678 -a 0 -x {10.0 9.0 3834 ------- null} + -t 4.34253 -s 7 -d 0 -p ack -e 40 -c 0 -i 7678 -a 0 -x {10.0 9.0 3834 ------- null} h -t 4.34253 -s 7 -d 8 -p ack -e 40 -c 0 -i 7678 -a 0 -x {10.0 9.0 3834 ------- null} r -t 4.34267 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7663 -a 0 -x {9.0 10.0 3836 ------- null} + -t 4.34267 -s 10 -d 7 -p ack -e 40 -c 0 -i 7682 -a 0 -x {10.0 9.0 3836 ------- null} - -t 4.34267 -s 10 -d 7 -p ack -e 40 -c 0 -i 7682 -a 0 -x {10.0 9.0 3836 ------- null} h -t 4.34267 -s 10 -d 7 -p ack -e 40 -c 0 -i 7682 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.34269 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7677 -a 0 -x {9.0 10.0 3843 ------- null} + -t 4.34269 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7677 -a 0 -x {9.0 10.0 3843 ------- null} h -t 4.34269 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7677 -a 0 -x {9.0 10.0 3843 ------- null} r -t 4.34307 -s 0 -d 9 -p ack -e 40 -c 0 -i 7672 -a 0 -x {10.0 9.0 3831 ------- null} + -t 4.34307 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7683 -a 0 -x {9.0 10.0 3846 ------- null} - -t 4.34307 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7683 -a 0 -x {9.0 10.0 3846 ------- null} h -t 4.34307 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7683 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.34314 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7669 -a 0 -x {9.0 10.0 3839 ------- null} - -t 4.34314 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7669 -a 0 -x {9.0 10.0 3839 ------- null} h -t 4.34314 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7669 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.34338 -s 0 -d 9 -p ack -e 40 -c 0 -i 7676 -a 0 -x {10.0 9.0 3833 ------- null} - -t 4.34338 -s 0 -d 9 -p ack -e 40 -c 0 -i 7676 -a 0 -x {10.0 9.0 3833 ------- null} h -t 4.34338 -s 0 -d 9 -p ack -e 40 -c 0 -i 7676 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.34362 -s 10 -d 7 -p ack -e 40 -c 0 -i 7680 -a 0 -x {10.0 9.0 3835 ------- null} + -t 4.34362 -s 7 -d 0 -p ack -e 40 -c 0 -i 7680 -a 0 -x {10.0 9.0 3835 ------- null} h -t 4.34362 -s 7 -d 8 -p ack -e 40 -c 0 -i 7680 -a 0 -x {10.0 9.0 3835 ------- null} r -t 4.3437 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7679 -a 0 -x {9.0 10.0 3844 ------- null} + -t 4.3437 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7679 -a 0 -x {9.0 10.0 3844 ------- null} h -t 4.3437 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7679 -a 0 -x {9.0 10.0 3844 ------- null} r -t 4.34376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7665 -a 0 -x {9.0 10.0 3837 ------- null} + -t 4.34376 -s 10 -d 7 -p ack -e 40 -c 0 -i 7684 -a 0 -x {10.0 9.0 3837 ------- null} - -t 4.34376 -s 10 -d 7 -p ack -e 40 -c 0 -i 7684 -a 0 -x {10.0 9.0 3837 ------- null} h -t 4.34376 -s 10 -d 7 -p ack -e 40 -c 0 -i 7684 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.34422 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7671 -a 0 -x {9.0 10.0 3840 ------- null} - -t 4.34422 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7671 -a 0 -x {9.0 10.0 3840 ------- null} h -t 4.34422 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7671 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.34427 -s 0 -d 9 -p ack -e 40 -c 0 -i 7674 -a 0 -x {10.0 9.0 3832 ------- null} + -t 4.34427 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7685 -a 0 -x {9.0 10.0 3847 ------- null} - -t 4.34427 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7685 -a 0 -x {9.0 10.0 3847 ------- null} h -t 4.34427 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7685 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.34429 -s 0 -d 9 -p ack -e 40 -c 0 -i 7678 -a 0 -x {10.0 9.0 3834 ------- null} - -t 4.34429 -s 0 -d 9 -p ack -e 40 -c 0 -i 7678 -a 0 -x {10.0 9.0 3834 ------- null} h -t 4.34429 -s 0 -d 9 -p ack -e 40 -c 0 -i 7678 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.3447 -s 10 -d 7 -p ack -e 40 -c 0 -i 7682 -a 0 -x {10.0 9.0 3836 ------- null} + -t 4.3447 -s 7 -d 0 -p ack -e 40 -c 0 -i 7682 -a 0 -x {10.0 9.0 3836 ------- null} h -t 4.3447 -s 7 -d 8 -p ack -e 40 -c 0 -i 7682 -a 0 -x {10.0 9.0 3836 ------- null} r -t 4.34482 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7681 -a 0 -x {9.0 10.0 3845 ------- null} + -t 4.34482 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7681 -a 0 -x {9.0 10.0 3845 ------- null} h -t 4.34482 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7681 -a 0 -x {9.0 10.0 3845 ------- null} r -t 4.34485 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7667 -a 0 -x {9.0 10.0 3838 ------- null} + -t 4.34485 -s 10 -d 7 -p ack -e 40 -c 0 -i 7686 -a 0 -x {10.0 9.0 3838 ------- null} - -t 4.34485 -s 10 -d 7 -p ack -e 40 -c 0 -i 7686 -a 0 -x {10.0 9.0 3838 ------- null} h -t 4.34485 -s 10 -d 7 -p ack -e 40 -c 0 -i 7686 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.34531 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7673 -a 0 -x {9.0 10.0 3841 ------- null} - -t 4.34531 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7673 -a 0 -x {9.0 10.0 3841 ------- null} h -t 4.34531 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7673 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.34541 -s 0 -d 9 -p ack -e 40 -c 0 -i 7676 -a 0 -x {10.0 9.0 3833 ------- null} + -t 4.34541 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7687 -a 0 -x {9.0 10.0 3848 ------- null} - -t 4.34541 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7687 -a 0 -x {9.0 10.0 3848 ------- null} h -t 4.34541 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7687 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.34541 -s 0 -d 9 -p ack -e 40 -c 0 -i 7680 -a 0 -x {10.0 9.0 3835 ------- null} - -t 4.34541 -s 0 -d 9 -p ack -e 40 -c 0 -i 7680 -a 0 -x {10.0 9.0 3835 ------- null} h -t 4.34541 -s 0 -d 9 -p ack -e 40 -c 0 -i 7680 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.34579 -s 10 -d 7 -p ack -e 40 -c 0 -i 7684 -a 0 -x {10.0 9.0 3837 ------- null} + -t 4.34579 -s 7 -d 0 -p ack -e 40 -c 0 -i 7684 -a 0 -x {10.0 9.0 3837 ------- null} h -t 4.34579 -s 7 -d 8 -p ack -e 40 -c 0 -i 7684 -a 0 -x {10.0 9.0 3837 ------- null} r -t 4.34587 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7683 -a 0 -x {9.0 10.0 3846 ------- null} + -t 4.34587 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7683 -a 0 -x {9.0 10.0 3846 ------- null} h -t 4.34587 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7683 -a 0 -x {9.0 10.0 3846 ------- null} r -t 4.34594 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7669 -a 0 -x {9.0 10.0 3839 ------- null} + -t 4.34594 -s 10 -d 7 -p ack -e 40 -c 0 -i 7688 -a 0 -x {10.0 9.0 3839 ------- null} - -t 4.34594 -s 10 -d 7 -p ack -e 40 -c 0 -i 7688 -a 0 -x {10.0 9.0 3839 ------- null} h -t 4.34594 -s 10 -d 7 -p ack -e 40 -c 0 -i 7688 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.34632 -s 0 -d 9 -p ack -e 40 -c 0 -i 7678 -a 0 -x {10.0 9.0 3834 ------- null} + -t 4.34632 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7689 -a 0 -x {9.0 10.0 3849 ------- null} - -t 4.34632 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7689 -a 0 -x {9.0 10.0 3849 ------- null} h -t 4.34632 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7689 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.3464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7675 -a 0 -x {9.0 10.0 3842 ------- null} - -t 4.3464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7675 -a 0 -x {9.0 10.0 3842 ------- null} h -t 4.3464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7675 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.34661 -s 0 -d 9 -p ack -e 40 -c 0 -i 7682 -a 0 -x {10.0 9.0 3836 ------- null} - -t 4.34661 -s 0 -d 9 -p ack -e 40 -c 0 -i 7682 -a 0 -x {10.0 9.0 3836 ------- null} h -t 4.34661 -s 0 -d 9 -p ack -e 40 -c 0 -i 7682 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.34688 -s 10 -d 7 -p ack -e 40 -c 0 -i 7686 -a 0 -x {10.0 9.0 3838 ------- null} + -t 4.34688 -s 7 -d 0 -p ack -e 40 -c 0 -i 7686 -a 0 -x {10.0 9.0 3838 ------- null} h -t 4.34688 -s 7 -d 8 -p ack -e 40 -c 0 -i 7686 -a 0 -x {10.0 9.0 3838 ------- null} r -t 4.34702 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7671 -a 0 -x {9.0 10.0 3840 ------- null} + -t 4.34702 -s 10 -d 7 -p ack -e 40 -c 0 -i 7690 -a 0 -x {10.0 9.0 3840 ------- null} - -t 4.34702 -s 10 -d 7 -p ack -e 40 -c 0 -i 7690 -a 0 -x {10.0 9.0 3840 ------- null} h -t 4.34702 -s 10 -d 7 -p ack -e 40 -c 0 -i 7690 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.34707 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7685 -a 0 -x {9.0 10.0 3847 ------- null} + -t 4.34707 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7685 -a 0 -x {9.0 10.0 3847 ------- null} h -t 4.34707 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7685 -a 0 -x {9.0 10.0 3847 ------- null} r -t 4.34744 -s 0 -d 9 -p ack -e 40 -c 0 -i 7680 -a 0 -x {10.0 9.0 3835 ------- null} + -t 4.34744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7691 -a 0 -x {9.0 10.0 3850 ------- null} - -t 4.34744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7691 -a 0 -x {9.0 10.0 3850 ------- null} h -t 4.34744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7691 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.34749 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7677 -a 0 -x {9.0 10.0 3843 ------- null} - -t 4.34749 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7677 -a 0 -x {9.0 10.0 3843 ------- null} h -t 4.34749 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7677 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.34765 -s 0 -d 9 -p ack -e 40 -c 0 -i 7684 -a 0 -x {10.0 9.0 3837 ------- null} - -t 4.34765 -s 0 -d 9 -p ack -e 40 -c 0 -i 7684 -a 0 -x {10.0 9.0 3837 ------- null} h -t 4.34765 -s 0 -d 9 -p ack -e 40 -c 0 -i 7684 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.34797 -s 10 -d 7 -p ack -e 40 -c 0 -i 7688 -a 0 -x {10.0 9.0 3839 ------- null} + -t 4.34797 -s 7 -d 0 -p ack -e 40 -c 0 -i 7688 -a 0 -x {10.0 9.0 3839 ------- null} h -t 4.34797 -s 7 -d 8 -p ack -e 40 -c 0 -i 7688 -a 0 -x {10.0 9.0 3839 ------- null} r -t 4.34811 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7673 -a 0 -x {9.0 10.0 3841 ------- null} + -t 4.34811 -s 10 -d 7 -p ack -e 40 -c 0 -i 7692 -a 0 -x {10.0 9.0 3841 ------- null} - -t 4.34811 -s 10 -d 7 -p ack -e 40 -c 0 -i 7692 -a 0 -x {10.0 9.0 3841 ------- null} h -t 4.34811 -s 10 -d 7 -p ack -e 40 -c 0 -i 7692 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.34821 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7687 -a 0 -x {9.0 10.0 3848 ------- null} + -t 4.34821 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7687 -a 0 -x {9.0 10.0 3848 ------- null} h -t 4.34821 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7687 -a 0 -x {9.0 10.0 3848 ------- null} + -t 4.34858 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7679 -a 0 -x {9.0 10.0 3844 ------- null} - -t 4.34858 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7679 -a 0 -x {9.0 10.0 3844 ------- null} h -t 4.34858 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7679 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.34864 -s 0 -d 9 -p ack -e 40 -c 0 -i 7682 -a 0 -x {10.0 9.0 3836 ------- null} + -t 4.34864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7693 -a 0 -x {9.0 10.0 3851 ------- null} - -t 4.34864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7693 -a 0 -x {9.0 10.0 3851 ------- null} h -t 4.34864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7693 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.34885 -s 0 -d 9 -p ack -e 40 -c 0 -i 7686 -a 0 -x {10.0 9.0 3838 ------- null} - -t 4.34885 -s 0 -d 9 -p ack -e 40 -c 0 -i 7686 -a 0 -x {10.0 9.0 3838 ------- null} h -t 4.34885 -s 0 -d 9 -p ack -e 40 -c 0 -i 7686 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.34906 -s 10 -d 7 -p ack -e 40 -c 0 -i 7690 -a 0 -x {10.0 9.0 3840 ------- null} + -t 4.34906 -s 7 -d 0 -p ack -e 40 -c 0 -i 7690 -a 0 -x {10.0 9.0 3840 ------- null} h -t 4.34906 -s 7 -d 8 -p ack -e 40 -c 0 -i 7690 -a 0 -x {10.0 9.0 3840 ------- null} r -t 4.34912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7689 -a 0 -x {9.0 10.0 3849 ------- null} + -t 4.34912 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7689 -a 0 -x {9.0 10.0 3849 ------- null} h -t 4.34912 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7689 -a 0 -x {9.0 10.0 3849 ------- null} r -t 4.3492 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7675 -a 0 -x {9.0 10.0 3842 ------- null} + -t 4.3492 -s 10 -d 7 -p ack -e 40 -c 0 -i 7694 -a 0 -x {10.0 9.0 3842 ------- null} - -t 4.3492 -s 10 -d 7 -p ack -e 40 -c 0 -i 7694 -a 0 -x {10.0 9.0 3842 ------- null} h -t 4.3492 -s 10 -d 7 -p ack -e 40 -c 0 -i 7694 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.34968 -s 0 -d 9 -p ack -e 40 -c 0 -i 7684 -a 0 -x {10.0 9.0 3837 ------- null} + -t 4.34968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7695 -a 0 -x {9.0 10.0 3852 ------- null} - -t 4.34968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7695 -a 0 -x {9.0 10.0 3852 ------- null} h -t 4.34968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7695 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.34979 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7681 -a 0 -x {9.0 10.0 3845 ------- null} - -t 4.34979 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7681 -a 0 -x {9.0 10.0 3845 ------- null} h -t 4.34979 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7681 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.3499 -s 0 -d 9 -p ack -e 40 -c 0 -i 7688 -a 0 -x {10.0 9.0 3839 ------- null} - -t 4.3499 -s 0 -d 9 -p ack -e 40 -c 0 -i 7688 -a 0 -x {10.0 9.0 3839 ------- null} h -t 4.3499 -s 0 -d 9 -p ack -e 40 -c 0 -i 7688 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.35014 -s 10 -d 7 -p ack -e 40 -c 0 -i 7692 -a 0 -x {10.0 9.0 3841 ------- null} + -t 4.35014 -s 7 -d 0 -p ack -e 40 -c 0 -i 7692 -a 0 -x {10.0 9.0 3841 ------- null} h -t 4.35014 -s 7 -d 8 -p ack -e 40 -c 0 -i 7692 -a 0 -x {10.0 9.0 3841 ------- null} r -t 4.35024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7691 -a 0 -x {9.0 10.0 3850 ------- null} + -t 4.35024 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7691 -a 0 -x {9.0 10.0 3850 ------- null} h -t 4.35024 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7691 -a 0 -x {9.0 10.0 3850 ------- null} r -t 4.35029 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7677 -a 0 -x {9.0 10.0 3843 ------- null} + -t 4.35029 -s 10 -d 7 -p ack -e 40 -c 0 -i 7696 -a 0 -x {10.0 9.0 3843 ------- null} - -t 4.35029 -s 10 -d 7 -p ack -e 40 -c 0 -i 7696 -a 0 -x {10.0 9.0 3843 ------- null} h -t 4.35029 -s 10 -d 7 -p ack -e 40 -c 0 -i 7696 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.35088 -s 0 -d 9 -p ack -e 40 -c 0 -i 7686 -a 0 -x {10.0 9.0 3838 ------- null} + -t 4.35088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7697 -a 0 -x {9.0 10.0 3853 ------- null} - -t 4.35088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7697 -a 0 -x {9.0 10.0 3853 ------- null} h -t 4.35088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7697 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.35088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7683 -a 0 -x {9.0 10.0 3846 ------- null} - -t 4.35088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7683 -a 0 -x {9.0 10.0 3846 ------- null} h -t 4.35088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7683 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.35112 -s 0 -d 9 -p ack -e 40 -c 0 -i 7690 -a 0 -x {10.0 9.0 3840 ------- null} - -t 4.35112 -s 0 -d 9 -p ack -e 40 -c 0 -i 7690 -a 0 -x {10.0 9.0 3840 ------- null} h -t 4.35112 -s 0 -d 9 -p ack -e 40 -c 0 -i 7690 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.35123 -s 10 -d 7 -p ack -e 40 -c 0 -i 7694 -a 0 -x {10.0 9.0 3842 ------- null} + -t 4.35123 -s 7 -d 0 -p ack -e 40 -c 0 -i 7694 -a 0 -x {10.0 9.0 3842 ------- null} h -t 4.35123 -s 7 -d 8 -p ack -e 40 -c 0 -i 7694 -a 0 -x {10.0 9.0 3842 ------- null} r -t 4.35138 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7679 -a 0 -x {9.0 10.0 3844 ------- null} + -t 4.35138 -s 10 -d 7 -p ack -e 40 -c 0 -i 7698 -a 0 -x {10.0 9.0 3844 ------- null} - -t 4.35138 -s 10 -d 7 -p ack -e 40 -c 0 -i 7698 -a 0 -x {10.0 9.0 3844 ------- null} h -t 4.35138 -s 10 -d 7 -p ack -e 40 -c 0 -i 7698 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.35144 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7693 -a 0 -x {9.0 10.0 3851 ------- null} + -t 4.35144 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7693 -a 0 -x {9.0 10.0 3851 ------- null} h -t 4.35144 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7693 -a 0 -x {9.0 10.0 3851 ------- null} r -t 4.35194 -s 0 -d 9 -p ack -e 40 -c 0 -i 7688 -a 0 -x {10.0 9.0 3839 ------- null} + -t 4.35194 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7699 -a 0 -x {9.0 10.0 3854 ------- null} - -t 4.35194 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7699 -a 0 -x {9.0 10.0 3854 ------- null} h -t 4.35194 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7699 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.35197 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7685 -a 0 -x {9.0 10.0 3847 ------- null} - -t 4.35197 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7685 -a 0 -x {9.0 10.0 3847 ------- null} h -t 4.35197 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7685 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.35222 -s 0 -d 9 -p ack -e 40 -c 0 -i 7692 -a 0 -x {10.0 9.0 3841 ------- null} - -t 4.35222 -s 0 -d 9 -p ack -e 40 -c 0 -i 7692 -a 0 -x {10.0 9.0 3841 ------- null} h -t 4.35222 -s 0 -d 9 -p ack -e 40 -c 0 -i 7692 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.35232 -s 10 -d 7 -p ack -e 40 -c 0 -i 7696 -a 0 -x {10.0 9.0 3843 ------- null} + -t 4.35232 -s 7 -d 0 -p ack -e 40 -c 0 -i 7696 -a 0 -x {10.0 9.0 3843 ------- null} h -t 4.35232 -s 7 -d 8 -p ack -e 40 -c 0 -i 7696 -a 0 -x {10.0 9.0 3843 ------- null} r -t 4.35248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7695 -a 0 -x {9.0 10.0 3852 ------- null} + -t 4.35248 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7695 -a 0 -x {9.0 10.0 3852 ------- null} h -t 4.35248 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7695 -a 0 -x {9.0 10.0 3852 ------- null} r -t 4.35259 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7681 -a 0 -x {9.0 10.0 3845 ------- null} + -t 4.35259 -s 10 -d 7 -p ack -e 40 -c 0 -i 7700 -a 0 -x {10.0 9.0 3845 ------- null} - -t 4.35259 -s 10 -d 7 -p ack -e 40 -c 0 -i 7700 -a 0 -x {10.0 9.0 3845 ------- null} h -t 4.35259 -s 10 -d 7 -p ack -e 40 -c 0 -i 7700 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.35306 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7687 -a 0 -x {9.0 10.0 3848 ------- null} - -t 4.35306 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7687 -a 0 -x {9.0 10.0 3848 ------- null} h -t 4.35306 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7687 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.35315 -s 0 -d 9 -p ack -e 40 -c 0 -i 7690 -a 0 -x {10.0 9.0 3840 ------- null} + -t 4.35315 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7701 -a 0 -x {9.0 10.0 3855 ------- null} - -t 4.35315 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7701 -a 0 -x {9.0 10.0 3855 ------- null} h -t 4.35315 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7701 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.3533 -s 0 -d 9 -p ack -e 40 -c 0 -i 7694 -a 0 -x {10.0 9.0 3842 ------- null} - -t 4.3533 -s 0 -d 9 -p ack -e 40 -c 0 -i 7694 -a 0 -x {10.0 9.0 3842 ------- null} h -t 4.3533 -s 0 -d 9 -p ack -e 40 -c 0 -i 7694 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.35341 -s 10 -d 7 -p ack -e 40 -c 0 -i 7698 -a 0 -x {10.0 9.0 3844 ------- null} + -t 4.35341 -s 7 -d 0 -p ack -e 40 -c 0 -i 7698 -a 0 -x {10.0 9.0 3844 ------- null} h -t 4.35341 -s 7 -d 8 -p ack -e 40 -c 0 -i 7698 -a 0 -x {10.0 9.0 3844 ------- null} r -t 4.35368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7697 -a 0 -x {9.0 10.0 3853 ------- null} + -t 4.35368 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7697 -a 0 -x {9.0 10.0 3853 ------- null} h -t 4.35368 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7697 -a 0 -x {9.0 10.0 3853 ------- null} r -t 4.35368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7683 -a 0 -x {9.0 10.0 3846 ------- null} + -t 4.35368 -s 10 -d 7 -p ack -e 40 -c 0 -i 7702 -a 0 -x {10.0 9.0 3846 ------- null} - -t 4.35368 -s 10 -d 7 -p ack -e 40 -c 0 -i 7702 -a 0 -x {10.0 9.0 3846 ------- null} h -t 4.35368 -s 10 -d 7 -p ack -e 40 -c 0 -i 7702 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.35414 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7689 -a 0 -x {9.0 10.0 3849 ------- null} - -t 4.35414 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7689 -a 0 -x {9.0 10.0 3849 ------- null} h -t 4.35414 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7689 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.35426 -s 0 -d 9 -p ack -e 40 -c 0 -i 7692 -a 0 -x {10.0 9.0 3841 ------- null} + -t 4.35426 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7703 -a 0 -x {9.0 10.0 3856 ------- null} - -t 4.35426 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7703 -a 0 -x {9.0 10.0 3856 ------- null} h -t 4.35426 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7703 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.35429 -s 0 -d 9 -p ack -e 40 -c 0 -i 7696 -a 0 -x {10.0 9.0 3843 ------- null} - -t 4.35429 -s 0 -d 9 -p ack -e 40 -c 0 -i 7696 -a 0 -x {10.0 9.0 3843 ------- null} h -t 4.35429 -s 0 -d 9 -p ack -e 40 -c 0 -i 7696 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.35462 -s 10 -d 7 -p ack -e 40 -c 0 -i 7700 -a 0 -x {10.0 9.0 3845 ------- null} + -t 4.35462 -s 7 -d 0 -p ack -e 40 -c 0 -i 7700 -a 0 -x {10.0 9.0 3845 ------- null} h -t 4.35462 -s 7 -d 8 -p ack -e 40 -c 0 -i 7700 -a 0 -x {10.0 9.0 3845 ------- null} r -t 4.35474 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7699 -a 0 -x {9.0 10.0 3854 ------- null} + -t 4.35474 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7699 -a 0 -x {9.0 10.0 3854 ------- null} h -t 4.35474 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7699 -a 0 -x {9.0 10.0 3854 ------- null} r -t 4.35477 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7685 -a 0 -x {9.0 10.0 3847 ------- null} + -t 4.35477 -s 10 -d 7 -p ack -e 40 -c 0 -i 7704 -a 0 -x {10.0 9.0 3847 ------- null} - -t 4.35477 -s 10 -d 7 -p ack -e 40 -c 0 -i 7704 -a 0 -x {10.0 9.0 3847 ------- null} h -t 4.35477 -s 10 -d 7 -p ack -e 40 -c 0 -i 7704 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.35523 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7691 -a 0 -x {9.0 10.0 3850 ------- null} - -t 4.35523 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7691 -a 0 -x {9.0 10.0 3850 ------- null} h -t 4.35523 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7691 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.35533 -s 0 -d 9 -p ack -e 40 -c 0 -i 7694 -a 0 -x {10.0 9.0 3842 ------- null} + -t 4.35533 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7705 -a 0 -x {9.0 10.0 3857 ------- null} - -t 4.35533 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7705 -a 0 -x {9.0 10.0 3857 ------- null} h -t 4.35533 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7705 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.35536 -s 0 -d 9 -p ack -e 40 -c 0 -i 7698 -a 0 -x {10.0 9.0 3844 ------- null} - -t 4.35536 -s 0 -d 9 -p ack -e 40 -c 0 -i 7698 -a 0 -x {10.0 9.0 3844 ------- null} h -t 4.35536 -s 0 -d 9 -p ack -e 40 -c 0 -i 7698 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.35571 -s 10 -d 7 -p ack -e 40 -c 0 -i 7702 -a 0 -x {10.0 9.0 3846 ------- null} + -t 4.35571 -s 7 -d 0 -p ack -e 40 -c 0 -i 7702 -a 0 -x {10.0 9.0 3846 ------- null} h -t 4.35571 -s 7 -d 8 -p ack -e 40 -c 0 -i 7702 -a 0 -x {10.0 9.0 3846 ------- null} r -t 4.35586 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7687 -a 0 -x {9.0 10.0 3848 ------- null} + -t 4.35586 -s 10 -d 7 -p ack -e 40 -c 0 -i 7706 -a 0 -x {10.0 9.0 3848 ------- null} - -t 4.35586 -s 10 -d 7 -p ack -e 40 -c 0 -i 7706 -a 0 -x {10.0 9.0 3848 ------- null} h -t 4.35586 -s 10 -d 7 -p ack -e 40 -c 0 -i 7706 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.35595 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7701 -a 0 -x {9.0 10.0 3855 ------- null} + -t 4.35595 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7701 -a 0 -x {9.0 10.0 3855 ------- null} h -t 4.35595 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7701 -a 0 -x {9.0 10.0 3855 ------- null} r -t 4.35632 -s 0 -d 9 -p ack -e 40 -c 0 -i 7696 -a 0 -x {10.0 9.0 3843 ------- null} + -t 4.35632 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7707 -a 0 -x {9.0 10.0 3858 ------- null} - -t 4.35632 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7707 -a 0 -x {9.0 10.0 3858 ------- null} h -t 4.35632 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7707 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.35632 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7693 -a 0 -x {9.0 10.0 3851 ------- null} - -t 4.35632 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7693 -a 0 -x {9.0 10.0 3851 ------- null} h -t 4.35632 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7693 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.35659 -s 0 -d 9 -p ack -e 40 -c 0 -i 7700 -a 0 -x {10.0 9.0 3845 ------- null} - -t 4.35659 -s 0 -d 9 -p ack -e 40 -c 0 -i 7700 -a 0 -x {10.0 9.0 3845 ------- null} h -t 4.35659 -s 0 -d 9 -p ack -e 40 -c 0 -i 7700 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.3568 -s 10 -d 7 -p ack -e 40 -c 0 -i 7704 -a 0 -x {10.0 9.0 3847 ------- null} + -t 4.3568 -s 7 -d 0 -p ack -e 40 -c 0 -i 7704 -a 0 -x {10.0 9.0 3847 ------- null} h -t 4.3568 -s 7 -d 8 -p ack -e 40 -c 0 -i 7704 -a 0 -x {10.0 9.0 3847 ------- null} r -t 4.35694 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7689 -a 0 -x {9.0 10.0 3849 ------- null} + -t 4.35694 -s 10 -d 7 -p ack -e 40 -c 0 -i 7708 -a 0 -x {10.0 9.0 3849 ------- null} - -t 4.35694 -s 10 -d 7 -p ack -e 40 -c 0 -i 7708 -a 0 -x {10.0 9.0 3849 ------- null} h -t 4.35694 -s 10 -d 7 -p ack -e 40 -c 0 -i 7708 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.35706 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7703 -a 0 -x {9.0 10.0 3856 ------- null} + -t 4.35706 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7703 -a 0 -x {9.0 10.0 3856 ------- null} h -t 4.35706 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7703 -a 0 -x {9.0 10.0 3856 ------- null} r -t 4.35739 -s 0 -d 9 -p ack -e 40 -c 0 -i 7698 -a 0 -x {10.0 9.0 3844 ------- null} + -t 4.35739 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7709 -a 0 -x {9.0 10.0 3859 ------- null} - -t 4.35739 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7709 -a 0 -x {9.0 10.0 3859 ------- null} h -t 4.35739 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7709 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.35747 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7695 -a 0 -x {9.0 10.0 3852 ------- null} - -t 4.35747 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7695 -a 0 -x {9.0 10.0 3852 ------- null} h -t 4.35747 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7695 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.35774 -s 0 -d 9 -p ack -e 40 -c 0 -i 7702 -a 0 -x {10.0 9.0 3846 ------- null} - -t 4.35774 -s 0 -d 9 -p ack -e 40 -c 0 -i 7702 -a 0 -x {10.0 9.0 3846 ------- null} h -t 4.35774 -s 0 -d 9 -p ack -e 40 -c 0 -i 7702 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.35789 -s 10 -d 7 -p ack -e 40 -c 0 -i 7706 -a 0 -x {10.0 9.0 3848 ------- null} + -t 4.35789 -s 7 -d 0 -p ack -e 40 -c 0 -i 7706 -a 0 -x {10.0 9.0 3848 ------- null} h -t 4.35789 -s 7 -d 8 -p ack -e 40 -c 0 -i 7706 -a 0 -x {10.0 9.0 3848 ------- null} r -t 4.35803 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7691 -a 0 -x {9.0 10.0 3850 ------- null} + -t 4.35803 -s 10 -d 7 -p ack -e 40 -c 0 -i 7710 -a 0 -x {10.0 9.0 3850 ------- null} - -t 4.35803 -s 10 -d 7 -p ack -e 40 -c 0 -i 7710 -a 0 -x {10.0 9.0 3850 ------- null} h -t 4.35803 -s 10 -d 7 -p ack -e 40 -c 0 -i 7710 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.35813 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7705 -a 0 -x {9.0 10.0 3857 ------- null} + -t 4.35813 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7705 -a 0 -x {9.0 10.0 3857 ------- null} h -t 4.35813 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7705 -a 0 -x {9.0 10.0 3857 ------- null} r -t 4.35862 -s 0 -d 9 -p ack -e 40 -c 0 -i 7700 -a 0 -x {10.0 9.0 3845 ------- null} + -t 4.35862 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7711 -a 0 -x {9.0 10.0 3860 ------- null} - -t 4.35862 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7711 -a 0 -x {9.0 10.0 3860 ------- null} h -t 4.35862 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7711 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.35874 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7697 -a 0 -x {9.0 10.0 3853 ------- null} - -t 4.35874 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7697 -a 0 -x {9.0 10.0 3853 ------- null} h -t 4.35874 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7697 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.35885 -s 0 -d 9 -p ack -e 40 -c 0 -i 7704 -a 0 -x {10.0 9.0 3847 ------- null} - -t 4.35885 -s 0 -d 9 -p ack -e 40 -c 0 -i 7704 -a 0 -x {10.0 9.0 3847 ------- null} h -t 4.35885 -s 0 -d 9 -p ack -e 40 -c 0 -i 7704 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.35898 -s 10 -d 7 -p ack -e 40 -c 0 -i 7708 -a 0 -x {10.0 9.0 3849 ------- null} + -t 4.35898 -s 7 -d 0 -p ack -e 40 -c 0 -i 7708 -a 0 -x {10.0 9.0 3849 ------- null} h -t 4.35898 -s 7 -d 8 -p ack -e 40 -c 0 -i 7708 -a 0 -x {10.0 9.0 3849 ------- null} r -t 4.35912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7707 -a 0 -x {9.0 10.0 3858 ------- null} + -t 4.35912 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7707 -a 0 -x {9.0 10.0 3858 ------- null} h -t 4.35912 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7707 -a 0 -x {9.0 10.0 3858 ------- null} r -t 4.35912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7693 -a 0 -x {9.0 10.0 3851 ------- null} + -t 4.35912 -s 10 -d 7 -p ack -e 40 -c 0 -i 7712 -a 0 -x {10.0 9.0 3851 ------- null} - -t 4.35912 -s 10 -d 7 -p ack -e 40 -c 0 -i 7712 -a 0 -x {10.0 9.0 3851 ------- null} h -t 4.35912 -s 10 -d 7 -p ack -e 40 -c 0 -i 7712 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.35978 -s 0 -d 9 -p ack -e 40 -c 0 -i 7702 -a 0 -x {10.0 9.0 3846 ------- null} + -t 4.35978 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7713 -a 0 -x {9.0 10.0 3861 ------- null} - -t 4.35978 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7713 -a 0 -x {9.0 10.0 3861 ------- null} h -t 4.35978 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7713 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.35982 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7699 -a 0 -x {9.0 10.0 3854 ------- null} - -t 4.35982 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7699 -a 0 -x {9.0 10.0 3854 ------- null} h -t 4.35982 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7699 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.36006 -s 10 -d 7 -p ack -e 40 -c 0 -i 7710 -a 0 -x {10.0 9.0 3850 ------- null} + -t 4.36006 -s 7 -d 0 -p ack -e 40 -c 0 -i 7710 -a 0 -x {10.0 9.0 3850 ------- null} h -t 4.36006 -s 7 -d 8 -p ack -e 40 -c 0 -i 7710 -a 0 -x {10.0 9.0 3850 ------- null} + -t 4.3601 -s 0 -d 9 -p ack -e 40 -c 0 -i 7706 -a 0 -x {10.0 9.0 3848 ------- null} - -t 4.3601 -s 0 -d 9 -p ack -e 40 -c 0 -i 7706 -a 0 -x {10.0 9.0 3848 ------- null} h -t 4.3601 -s 0 -d 9 -p ack -e 40 -c 0 -i 7706 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.36019 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7709 -a 0 -x {9.0 10.0 3859 ------- null} + -t 4.36019 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7709 -a 0 -x {9.0 10.0 3859 ------- null} h -t 4.36019 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7709 -a 0 -x {9.0 10.0 3859 ------- null} r -t 4.36027 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7695 -a 0 -x {9.0 10.0 3852 ------- null} + -t 4.36027 -s 10 -d 7 -p ack -e 40 -c 0 -i 7714 -a 0 -x {10.0 9.0 3852 ------- null} - -t 4.36027 -s 10 -d 7 -p ack -e 40 -c 0 -i 7714 -a 0 -x {10.0 9.0 3852 ------- null} h -t 4.36027 -s 10 -d 7 -p ack -e 40 -c 0 -i 7714 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.36088 -s 0 -d 9 -p ack -e 40 -c 0 -i 7704 -a 0 -x {10.0 9.0 3847 ------- null} + -t 4.36088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7715 -a 0 -x {9.0 10.0 3862 ------- null} - -t 4.36088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7715 -a 0 -x {9.0 10.0 3862 ------- null} h -t 4.36088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7715 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.36109 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7701 -a 0 -x {9.0 10.0 3855 ------- null} - -t 4.36109 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7701 -a 0 -x {9.0 10.0 3855 ------- null} h -t 4.36109 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7701 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.36115 -s 10 -d 7 -p ack -e 40 -c 0 -i 7712 -a 0 -x {10.0 9.0 3851 ------- null} + -t 4.36115 -s 7 -d 0 -p ack -e 40 -c 0 -i 7712 -a 0 -x {10.0 9.0 3851 ------- null} h -t 4.36115 -s 7 -d 8 -p ack -e 40 -c 0 -i 7712 -a 0 -x {10.0 9.0 3851 ------- null} + -t 4.36131 -s 0 -d 9 -p ack -e 40 -c 0 -i 7708 -a 0 -x {10.0 9.0 3849 ------- null} - -t 4.36131 -s 0 -d 9 -p ack -e 40 -c 0 -i 7708 -a 0 -x {10.0 9.0 3849 ------- null} h -t 4.36131 -s 0 -d 9 -p ack -e 40 -c 0 -i 7708 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.36142 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7711 -a 0 -x {9.0 10.0 3860 ------- null} + -t 4.36142 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7711 -a 0 -x {9.0 10.0 3860 ------- null} h -t 4.36142 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7711 -a 0 -x {9.0 10.0 3860 ------- null} r -t 4.36154 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7697 -a 0 -x {9.0 10.0 3853 ------- null} + -t 4.36154 -s 10 -d 7 -p ack -e 40 -c 0 -i 7716 -a 0 -x {10.0 9.0 3853 ------- null} - -t 4.36154 -s 10 -d 7 -p ack -e 40 -c 0 -i 7716 -a 0 -x {10.0 9.0 3853 ------- null} h -t 4.36154 -s 10 -d 7 -p ack -e 40 -c 0 -i 7716 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.36213 -s 0 -d 9 -p ack -e 40 -c 0 -i 7706 -a 0 -x {10.0 9.0 3848 ------- null} + -t 4.36213 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7717 -a 0 -x {9.0 10.0 3863 ------- null} - -t 4.36213 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7717 -a 0 -x {9.0 10.0 3863 ------- null} h -t 4.36213 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7717 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.36218 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7703 -a 0 -x {9.0 10.0 3856 ------- null} - -t 4.36218 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7703 -a 0 -x {9.0 10.0 3856 ------- null} h -t 4.36218 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7703 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.3623 -s 10 -d 7 -p ack -e 40 -c 0 -i 7714 -a 0 -x {10.0 9.0 3852 ------- null} + -t 4.3623 -s 7 -d 0 -p ack -e 40 -c 0 -i 7714 -a 0 -x {10.0 9.0 3852 ------- null} h -t 4.3623 -s 7 -d 8 -p ack -e 40 -c 0 -i 7714 -a 0 -x {10.0 9.0 3852 ------- null} + -t 4.36237 -s 0 -d 9 -p ack -e 40 -c 0 -i 7710 -a 0 -x {10.0 9.0 3850 ------- null} - -t 4.36237 -s 0 -d 9 -p ack -e 40 -c 0 -i 7710 -a 0 -x {10.0 9.0 3850 ------- null} h -t 4.36237 -s 0 -d 9 -p ack -e 40 -c 0 -i 7710 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.36258 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7713 -a 0 -x {9.0 10.0 3861 ------- null} + -t 4.36258 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7713 -a 0 -x {9.0 10.0 3861 ------- null} h -t 4.36258 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7713 -a 0 -x {9.0 10.0 3861 ------- null} r -t 4.36262 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7699 -a 0 -x {9.0 10.0 3854 ------- null} + -t 4.36262 -s 10 -d 7 -p ack -e 40 -c 0 -i 7718 -a 0 -x {10.0 9.0 3854 ------- null} - -t 4.36262 -s 10 -d 7 -p ack -e 40 -c 0 -i 7718 -a 0 -x {10.0 9.0 3854 ------- null} h -t 4.36262 -s 10 -d 7 -p ack -e 40 -c 0 -i 7718 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.36326 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7705 -a 0 -x {9.0 10.0 3857 ------- null} - -t 4.36326 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7705 -a 0 -x {9.0 10.0 3857 ------- null} h -t 4.36326 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7705 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.36334 -s 0 -d 9 -p ack -e 40 -c 0 -i 7708 -a 0 -x {10.0 9.0 3849 ------- null} + -t 4.36334 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7719 -a 0 -x {9.0 10.0 3864 ------- null} - -t 4.36334 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7719 -a 0 -x {9.0 10.0 3864 ------- null} h -t 4.36334 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7719 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.36341 -s 0 -d 9 -p ack -e 40 -c 0 -i 7712 -a 0 -x {10.0 9.0 3851 ------- null} - -t 4.36341 -s 0 -d 9 -p ack -e 40 -c 0 -i 7712 -a 0 -x {10.0 9.0 3851 ------- null} h -t 4.36341 -s 0 -d 9 -p ack -e 40 -c 0 -i 7712 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.36357 -s 10 -d 7 -p ack -e 40 -c 0 -i 7716 -a 0 -x {10.0 9.0 3853 ------- null} + -t 4.36357 -s 7 -d 0 -p ack -e 40 -c 0 -i 7716 -a 0 -x {10.0 9.0 3853 ------- null} h -t 4.36357 -s 7 -d 8 -p ack -e 40 -c 0 -i 7716 -a 0 -x {10.0 9.0 3853 ------- null} r -t 4.36368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7715 -a 0 -x {9.0 10.0 3862 ------- null} + -t 4.36368 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7715 -a 0 -x {9.0 10.0 3862 ------- null} h -t 4.36368 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7715 -a 0 -x {9.0 10.0 3862 ------- null} r -t 4.36389 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7701 -a 0 -x {9.0 10.0 3855 ------- null} + -t 4.36389 -s 10 -d 7 -p ack -e 40 -c 0 -i 7720 -a 0 -x {10.0 9.0 3855 ------- null} - -t 4.36389 -s 10 -d 7 -p ack -e 40 -c 0 -i 7720 -a 0 -x {10.0 9.0 3855 ------- null} h -t 4.36389 -s 10 -d 7 -p ack -e 40 -c 0 -i 7720 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.36435 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7707 -a 0 -x {9.0 10.0 3858 ------- null} - -t 4.36435 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7707 -a 0 -x {9.0 10.0 3858 ------- null} h -t 4.36435 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7707 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.3644 -s 0 -d 9 -p ack -e 40 -c 0 -i 7710 -a 0 -x {10.0 9.0 3850 ------- null} + -t 4.3644 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7721 -a 0 -x {9.0 10.0 3865 ------- null} - -t 4.3644 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7721 -a 0 -x {9.0 10.0 3865 ------- null} h -t 4.3644 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7721 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.36459 -s 0 -d 9 -p ack -e 40 -c 0 -i 7714 -a 0 -x {10.0 9.0 3852 ------- null} - -t 4.36459 -s 0 -d 9 -p ack -e 40 -c 0 -i 7714 -a 0 -x {10.0 9.0 3852 ------- null} h -t 4.36459 -s 0 -d 9 -p ack -e 40 -c 0 -i 7714 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.36466 -s 10 -d 7 -p ack -e 40 -c 0 -i 7718 -a 0 -x {10.0 9.0 3854 ------- null} + -t 4.36466 -s 7 -d 0 -p ack -e 40 -c 0 -i 7718 -a 0 -x {10.0 9.0 3854 ------- null} h -t 4.36466 -s 7 -d 8 -p ack -e 40 -c 0 -i 7718 -a 0 -x {10.0 9.0 3854 ------- null} r -t 4.36493 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7717 -a 0 -x {9.0 10.0 3863 ------- null} + -t 4.36493 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7717 -a 0 -x {9.0 10.0 3863 ------- null} h -t 4.36493 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7717 -a 0 -x {9.0 10.0 3863 ------- null} r -t 4.36498 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7703 -a 0 -x {9.0 10.0 3856 ------- null} + -t 4.36498 -s 10 -d 7 -p ack -e 40 -c 0 -i 7722 -a 0 -x {10.0 9.0 3856 ------- null} - -t 4.36498 -s 10 -d 7 -p ack -e 40 -c 0 -i 7722 -a 0 -x {10.0 9.0 3856 ------- null} h -t 4.36498 -s 10 -d 7 -p ack -e 40 -c 0 -i 7722 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.36544 -s 0 -d 9 -p ack -e 40 -c 0 -i 7712 -a 0 -x {10.0 9.0 3851 ------- null} + -t 4.36544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7723 -a 0 -x {9.0 10.0 3866 ------- null} - -t 4.36544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7723 -a 0 -x {9.0 10.0 3866 ------- null} h -t 4.36544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7723 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.36544 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7709 -a 0 -x {9.0 10.0 3859 ------- null} - -t 4.36544 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7709 -a 0 -x {9.0 10.0 3859 ------- null} h -t 4.36544 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7709 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.36566 -s 0 -d 9 -p ack -e 40 -c 0 -i 7716 -a 0 -x {10.0 9.0 3853 ------- null} - -t 4.36566 -s 0 -d 9 -p ack -e 40 -c 0 -i 7716 -a 0 -x {10.0 9.0 3853 ------- null} h -t 4.36566 -s 0 -d 9 -p ack -e 40 -c 0 -i 7716 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.36592 -s 10 -d 7 -p ack -e 40 -c 0 -i 7720 -a 0 -x {10.0 9.0 3855 ------- null} + -t 4.36592 -s 7 -d 0 -p ack -e 40 -c 0 -i 7720 -a 0 -x {10.0 9.0 3855 ------- null} h -t 4.36592 -s 7 -d 8 -p ack -e 40 -c 0 -i 7720 -a 0 -x {10.0 9.0 3855 ------- null} r -t 4.36606 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7705 -a 0 -x {9.0 10.0 3857 ------- null} + -t 4.36606 -s 10 -d 7 -p ack -e 40 -c 0 -i 7724 -a 0 -x {10.0 9.0 3857 ------- null} - -t 4.36606 -s 10 -d 7 -p ack -e 40 -c 0 -i 7724 -a 0 -x {10.0 9.0 3857 ------- null} h -t 4.36606 -s 10 -d 7 -p ack -e 40 -c 0 -i 7724 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.36614 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7719 -a 0 -x {9.0 10.0 3864 ------- null} + -t 4.36614 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7719 -a 0 -x {9.0 10.0 3864 ------- null} h -t 4.36614 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7719 -a 0 -x {9.0 10.0 3864 ------- null} + -t 4.36653 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7711 -a 0 -x {9.0 10.0 3860 ------- null} - -t 4.36653 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7711 -a 0 -x {9.0 10.0 3860 ------- null} h -t 4.36653 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7711 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.36662 -s 0 -d 9 -p ack -e 40 -c 0 -i 7714 -a 0 -x {10.0 9.0 3852 ------- null} + -t 4.36662 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7725 -a 0 -x {9.0 10.0 3867 ------- null} - -t 4.36662 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7725 -a 0 -x {9.0 10.0 3867 ------- null} h -t 4.36662 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7725 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.36669 -s 0 -d 9 -p ack -e 40 -c 0 -i 7718 -a 0 -x {10.0 9.0 3854 ------- null} - -t 4.36669 -s 0 -d 9 -p ack -e 40 -c 0 -i 7718 -a 0 -x {10.0 9.0 3854 ------- null} h -t 4.36669 -s 0 -d 9 -p ack -e 40 -c 0 -i 7718 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.36701 -s 10 -d 7 -p ack -e 40 -c 0 -i 7722 -a 0 -x {10.0 9.0 3856 ------- null} + -t 4.36701 -s 7 -d 0 -p ack -e 40 -c 0 -i 7722 -a 0 -x {10.0 9.0 3856 ------- null} h -t 4.36701 -s 7 -d 8 -p ack -e 40 -c 0 -i 7722 -a 0 -x {10.0 9.0 3856 ------- null} r -t 4.36715 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7707 -a 0 -x {9.0 10.0 3858 ------- null} + -t 4.36715 -s 10 -d 7 -p ack -e 40 -c 0 -i 7726 -a 0 -x {10.0 9.0 3858 ------- null} - -t 4.36715 -s 10 -d 7 -p ack -e 40 -c 0 -i 7726 -a 0 -x {10.0 9.0 3858 ------- null} h -t 4.36715 -s 10 -d 7 -p ack -e 40 -c 0 -i 7726 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.3672 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7721 -a 0 -x {9.0 10.0 3865 ------- null} + -t 4.3672 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7721 -a 0 -x {9.0 10.0 3865 ------- null} h -t 4.3672 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7721 -a 0 -x {9.0 10.0 3865 ------- null} + -t 4.36762 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7713 -a 0 -x {9.0 10.0 3861 ------- null} - -t 4.36762 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7713 -a 0 -x {9.0 10.0 3861 ------- null} h -t 4.36762 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7713 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.36768 -s 0 -d 9 -p ack -e 40 -c 0 -i 7720 -a 0 -x {10.0 9.0 3855 ------- null} - -t 4.36768 -s 0 -d 9 -p ack -e 40 -c 0 -i 7720 -a 0 -x {10.0 9.0 3855 ------- null} h -t 4.36768 -s 0 -d 9 -p ack -e 40 -c 0 -i 7720 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.3677 -s 0 -d 9 -p ack -e 40 -c 0 -i 7716 -a 0 -x {10.0 9.0 3853 ------- null} + -t 4.3677 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7727 -a 0 -x {9.0 10.0 3868 ------- null} - -t 4.3677 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7727 -a 0 -x {9.0 10.0 3868 ------- null} h -t 4.3677 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7727 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.3681 -s 10 -d 7 -p ack -e 40 -c 0 -i 7724 -a 0 -x {10.0 9.0 3857 ------- null} + -t 4.3681 -s 7 -d 0 -p ack -e 40 -c 0 -i 7724 -a 0 -x {10.0 9.0 3857 ------- null} h -t 4.3681 -s 7 -d 8 -p ack -e 40 -c 0 -i 7724 -a 0 -x {10.0 9.0 3857 ------- null} r -t 4.36824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7723 -a 0 -x {9.0 10.0 3866 ------- null} + -t 4.36824 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7723 -a 0 -x {9.0 10.0 3866 ------- null} h -t 4.36824 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7723 -a 0 -x {9.0 10.0 3866 ------- null} r -t 4.36824 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7709 -a 0 -x {9.0 10.0 3859 ------- null} + -t 4.36824 -s 10 -d 7 -p ack -e 40 -c 0 -i 7728 -a 0 -x {10.0 9.0 3859 ------- null} - -t 4.36824 -s 10 -d 7 -p ack -e 40 -c 0 -i 7728 -a 0 -x {10.0 9.0 3859 ------- null} h -t 4.36824 -s 10 -d 7 -p ack -e 40 -c 0 -i 7728 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.3687 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7715 -a 0 -x {9.0 10.0 3862 ------- null} - -t 4.3687 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7715 -a 0 -x {9.0 10.0 3862 ------- null} h -t 4.3687 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7715 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.36872 -s 0 -d 9 -p ack -e 40 -c 0 -i 7718 -a 0 -x {10.0 9.0 3854 ------- null} + -t 4.36872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7729 -a 0 -x {9.0 10.0 3869 ------- null} - -t 4.36872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7729 -a 0 -x {9.0 10.0 3869 ------- null} h -t 4.36872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7729 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.3689 -s 0 -d 9 -p ack -e 40 -c 0 -i 7722 -a 0 -x {10.0 9.0 3856 ------- null} - -t 4.3689 -s 0 -d 9 -p ack -e 40 -c 0 -i 7722 -a 0 -x {10.0 9.0 3856 ------- null} h -t 4.3689 -s 0 -d 9 -p ack -e 40 -c 0 -i 7722 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.36918 -s 10 -d 7 -p ack -e 40 -c 0 -i 7726 -a 0 -x {10.0 9.0 3858 ------- null} + -t 4.36918 -s 7 -d 0 -p ack -e 40 -c 0 -i 7726 -a 0 -x {10.0 9.0 3858 ------- null} h -t 4.36918 -s 7 -d 8 -p ack -e 40 -c 0 -i 7726 -a 0 -x {10.0 9.0 3858 ------- null} r -t 4.36933 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7711 -a 0 -x {9.0 10.0 3860 ------- null} + -t 4.36933 -s 10 -d 7 -p ack -e 40 -c 0 -i 7730 -a 0 -x {10.0 9.0 3860 ------- null} - -t 4.36933 -s 10 -d 7 -p ack -e 40 -c 0 -i 7730 -a 0 -x {10.0 9.0 3860 ------- null} h -t 4.36933 -s 10 -d 7 -p ack -e 40 -c 0 -i 7730 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.36942 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7725 -a 0 -x {9.0 10.0 3867 ------- null} + -t 4.36942 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7725 -a 0 -x {9.0 10.0 3867 ------- null} h -t 4.36942 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7725 -a 0 -x {9.0 10.0 3867 ------- null} r -t 4.36971 -s 0 -d 9 -p ack -e 40 -c 0 -i 7720 -a 0 -x {10.0 9.0 3855 ------- null} + -t 4.36971 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7731 -a 0 -x {9.0 10.0 3870 ------- null} - -t 4.36971 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7731 -a 0 -x {9.0 10.0 3870 ------- null} h -t 4.36971 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7731 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.36979 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7717 -a 0 -x {9.0 10.0 3863 ------- null} - -t 4.36979 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7717 -a 0 -x {9.0 10.0 3863 ------- null} h -t 4.36979 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7717 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.37008 -s 0 -d 9 -p ack -e 40 -c 0 -i 7724 -a 0 -x {10.0 9.0 3857 ------- null} - -t 4.37008 -s 0 -d 9 -p ack -e 40 -c 0 -i 7724 -a 0 -x {10.0 9.0 3857 ------- null} h -t 4.37008 -s 0 -d 9 -p ack -e 40 -c 0 -i 7724 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.37027 -s 10 -d 7 -p ack -e 40 -c 0 -i 7728 -a 0 -x {10.0 9.0 3859 ------- null} + -t 4.37027 -s 7 -d 0 -p ack -e 40 -c 0 -i 7728 -a 0 -x {10.0 9.0 3859 ------- null} h -t 4.37027 -s 7 -d 8 -p ack -e 40 -c 0 -i 7728 -a 0 -x {10.0 9.0 3859 ------- null} r -t 4.37042 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7713 -a 0 -x {9.0 10.0 3861 ------- null} + -t 4.37042 -s 10 -d 7 -p ack -e 40 -c 0 -i 7732 -a 0 -x {10.0 9.0 3861 ------- null} - -t 4.37042 -s 10 -d 7 -p ack -e 40 -c 0 -i 7732 -a 0 -x {10.0 9.0 3861 ------- null} h -t 4.37042 -s 10 -d 7 -p ack -e 40 -c 0 -i 7732 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.3705 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7727 -a 0 -x {9.0 10.0 3868 ------- null} + -t 4.3705 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7727 -a 0 -x {9.0 10.0 3868 ------- null} h -t 4.3705 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7727 -a 0 -x {9.0 10.0 3868 ------- null} r -t 4.37093 -s 0 -d 9 -p ack -e 40 -c 0 -i 7722 -a 0 -x {10.0 9.0 3856 ------- null} + -t 4.37093 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7733 -a 0 -x {9.0 10.0 3871 ------- null} - -t 4.37093 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7733 -a 0 -x {9.0 10.0 3871 ------- null} h -t 4.37093 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7733 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.37102 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7719 -a 0 -x {9.0 10.0 3864 ------- null} - -t 4.37102 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7719 -a 0 -x {9.0 10.0 3864 ------- null} h -t 4.37102 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7719 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.37123 -s 0 -d 9 -p ack -e 40 -c 0 -i 7726 -a 0 -x {10.0 9.0 3858 ------- null} - -t 4.37123 -s 0 -d 9 -p ack -e 40 -c 0 -i 7726 -a 0 -x {10.0 9.0 3858 ------- null} h -t 4.37123 -s 0 -d 9 -p ack -e 40 -c 0 -i 7726 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.37136 -s 10 -d 7 -p ack -e 40 -c 0 -i 7730 -a 0 -x {10.0 9.0 3860 ------- null} + -t 4.37136 -s 7 -d 0 -p ack -e 40 -c 0 -i 7730 -a 0 -x {10.0 9.0 3860 ------- null} h -t 4.37136 -s 7 -d 8 -p ack -e 40 -c 0 -i 7730 -a 0 -x {10.0 9.0 3860 ------- null} r -t 4.3715 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7715 -a 0 -x {9.0 10.0 3862 ------- null} + -t 4.3715 -s 10 -d 7 -p ack -e 40 -c 0 -i 7734 -a 0 -x {10.0 9.0 3862 ------- null} - -t 4.3715 -s 10 -d 7 -p ack -e 40 -c 0 -i 7734 -a 0 -x {10.0 9.0 3862 ------- null} h -t 4.3715 -s 10 -d 7 -p ack -e 40 -c 0 -i 7734 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.37152 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7729 -a 0 -x {9.0 10.0 3869 ------- null} + -t 4.37152 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7729 -a 0 -x {9.0 10.0 3869 ------- null} h -t 4.37152 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7729 -a 0 -x {9.0 10.0 3869 ------- null} r -t 4.37211 -s 0 -d 9 -p ack -e 40 -c 0 -i 7724 -a 0 -x {10.0 9.0 3857 ------- null} + -t 4.37211 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7735 -a 0 -x {9.0 10.0 3872 ------- null} - -t 4.37211 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7735 -a 0 -x {9.0 10.0 3872 ------- null} h -t 4.37211 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7735 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.37211 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7721 -a 0 -x {9.0 10.0 3865 ------- null} - -t 4.37211 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7721 -a 0 -x {9.0 10.0 3865 ------- null} h -t 4.37211 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7721 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.3723 -s 0 -d 9 -p ack -e 40 -c 0 -i 7728 -a 0 -x {10.0 9.0 3859 ------- null} - -t 4.3723 -s 0 -d 9 -p ack -e 40 -c 0 -i 7728 -a 0 -x {10.0 9.0 3859 ------- null} h -t 4.3723 -s 0 -d 9 -p ack -e 40 -c 0 -i 7728 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.37245 -s 10 -d 7 -p ack -e 40 -c 0 -i 7732 -a 0 -x {10.0 9.0 3861 ------- null} + -t 4.37245 -s 7 -d 0 -p ack -e 40 -c 0 -i 7732 -a 0 -x {10.0 9.0 3861 ------- null} h -t 4.37245 -s 7 -d 8 -p ack -e 40 -c 0 -i 7732 -a 0 -x {10.0 9.0 3861 ------- null} r -t 4.37251 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7731 -a 0 -x {9.0 10.0 3870 ------- null} + -t 4.37251 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7731 -a 0 -x {9.0 10.0 3870 ------- null} h -t 4.37251 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7731 -a 0 -x {9.0 10.0 3870 ------- null} r -t 4.37259 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7717 -a 0 -x {9.0 10.0 3863 ------- null} + -t 4.37259 -s 10 -d 7 -p ack -e 40 -c 0 -i 7736 -a 0 -x {10.0 9.0 3863 ------- null} - -t 4.37259 -s 10 -d 7 -p ack -e 40 -c 0 -i 7736 -a 0 -x {10.0 9.0 3863 ------- null} h -t 4.37259 -s 10 -d 7 -p ack -e 40 -c 0 -i 7736 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.3732 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7723 -a 0 -x {9.0 10.0 3866 ------- null} - -t 4.3732 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7723 -a 0 -x {9.0 10.0 3866 ------- null} h -t 4.3732 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7723 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.37326 -s 0 -d 9 -p ack -e 40 -c 0 -i 7726 -a 0 -x {10.0 9.0 3858 ------- null} + -t 4.37326 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7737 -a 0 -x {9.0 10.0 3873 ------- null} - -t 4.37326 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7737 -a 0 -x {9.0 10.0 3873 ------- null} h -t 4.37326 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7737 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.37334 -s 0 -d 9 -p ack -e 40 -c 0 -i 7730 -a 0 -x {10.0 9.0 3860 ------- null} - -t 4.37334 -s 0 -d 9 -p ack -e 40 -c 0 -i 7730 -a 0 -x {10.0 9.0 3860 ------- null} h -t 4.37334 -s 0 -d 9 -p ack -e 40 -c 0 -i 7730 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.37354 -s 10 -d 7 -p ack -e 40 -c 0 -i 7734 -a 0 -x {10.0 9.0 3862 ------- null} + -t 4.37354 -s 7 -d 0 -p ack -e 40 -c 0 -i 7734 -a 0 -x {10.0 9.0 3862 ------- null} h -t 4.37354 -s 7 -d 8 -p ack -e 40 -c 0 -i 7734 -a 0 -x {10.0 9.0 3862 ------- null} r -t 4.37373 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7733 -a 0 -x {9.0 10.0 3871 ------- null} + -t 4.37373 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7733 -a 0 -x {9.0 10.0 3871 ------- null} h -t 4.37373 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7733 -a 0 -x {9.0 10.0 3871 ------- null} r -t 4.37382 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7719 -a 0 -x {9.0 10.0 3864 ------- null} + -t 4.37382 -s 10 -d 7 -p ack -e 40 -c 0 -i 7738 -a 0 -x {10.0 9.0 3864 ------- null} - -t 4.37382 -s 10 -d 7 -p ack -e 40 -c 0 -i 7738 -a 0 -x {10.0 9.0 3864 ------- null} h -t 4.37382 -s 10 -d 7 -p ack -e 40 -c 0 -i 7738 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.37429 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7725 -a 0 -x {9.0 10.0 3867 ------- null} - -t 4.37429 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7725 -a 0 -x {9.0 10.0 3867 ------- null} h -t 4.37429 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7725 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.37434 -s 0 -d 9 -p ack -e 40 -c 0 -i 7728 -a 0 -x {10.0 9.0 3859 ------- null} + -t 4.37434 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7739 -a 0 -x {9.0 10.0 3874 ------- null} - -t 4.37434 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7739 -a 0 -x {9.0 10.0 3874 ------- null} h -t 4.37434 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7739 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.37448 -s 0 -d 9 -p ack -e 40 -c 0 -i 7732 -a 0 -x {10.0 9.0 3861 ------- null} - -t 4.37448 -s 0 -d 9 -p ack -e 40 -c 0 -i 7732 -a 0 -x {10.0 9.0 3861 ------- null} h -t 4.37448 -s 0 -d 9 -p ack -e 40 -c 0 -i 7732 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.37462 -s 10 -d 7 -p ack -e 40 -c 0 -i 7736 -a 0 -x {10.0 9.0 3863 ------- null} + -t 4.37462 -s 7 -d 0 -p ack -e 40 -c 0 -i 7736 -a 0 -x {10.0 9.0 3863 ------- null} h -t 4.37462 -s 7 -d 8 -p ack -e 40 -c 0 -i 7736 -a 0 -x {10.0 9.0 3863 ------- null} r -t 4.37491 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7735 -a 0 -x {9.0 10.0 3872 ------- null} + -t 4.37491 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7735 -a 0 -x {9.0 10.0 3872 ------- null} h -t 4.37491 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7735 -a 0 -x {9.0 10.0 3872 ------- null} r -t 4.37491 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7721 -a 0 -x {9.0 10.0 3865 ------- null} + -t 4.37491 -s 10 -d 7 -p ack -e 40 -c 0 -i 7740 -a 0 -x {10.0 9.0 3865 ------- null} - -t 4.37491 -s 10 -d 7 -p ack -e 40 -c 0 -i 7740 -a 0 -x {10.0 9.0 3865 ------- null} h -t 4.37491 -s 10 -d 7 -p ack -e 40 -c 0 -i 7740 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.37538 -s 0 -d 9 -p ack -e 40 -c 0 -i 7730 -a 0 -x {10.0 9.0 3860 ------- null} + -t 4.37538 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7741 -a 0 -x {9.0 10.0 3875 ------- null} - -t 4.37538 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7741 -a 0 -x {9.0 10.0 3875 ------- null} h -t 4.37538 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7741 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.37538 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7727 -a 0 -x {9.0 10.0 3868 ------- null} - -t 4.37538 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7727 -a 0 -x {9.0 10.0 3868 ------- null} h -t 4.37538 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7727 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.3755 -s 0 -d 9 -p ack -e 40 -c 0 -i 7734 -a 0 -x {10.0 9.0 3862 ------- null} - -t 4.3755 -s 0 -d 9 -p ack -e 40 -c 0 -i 7734 -a 0 -x {10.0 9.0 3862 ------- null} h -t 4.3755 -s 0 -d 9 -p ack -e 40 -c 0 -i 7734 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.37586 -s 10 -d 7 -p ack -e 40 -c 0 -i 7738 -a 0 -x {10.0 9.0 3864 ------- null} + -t 4.37586 -s 7 -d 0 -p ack -e 40 -c 0 -i 7738 -a 0 -x {10.0 9.0 3864 ------- null} h -t 4.37586 -s 7 -d 8 -p ack -e 40 -c 0 -i 7738 -a 0 -x {10.0 9.0 3864 ------- null} r -t 4.376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7723 -a 0 -x {9.0 10.0 3866 ------- null} + -t 4.376 -s 10 -d 7 -p ack -e 40 -c 0 -i 7742 -a 0 -x {10.0 9.0 3866 ------- null} - -t 4.376 -s 10 -d 7 -p ack -e 40 -c 0 -i 7742 -a 0 -x {10.0 9.0 3866 ------- null} h -t 4.376 -s 10 -d 7 -p ack -e 40 -c 0 -i 7742 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.37606 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7737 -a 0 -x {9.0 10.0 3873 ------- null} + -t 4.37606 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7737 -a 0 -x {9.0 10.0 3873 ------- null} h -t 4.37606 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7737 -a 0 -x {9.0 10.0 3873 ------- null} + -t 4.37646 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7729 -a 0 -x {9.0 10.0 3869 ------- null} - -t 4.37646 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7729 -a 0 -x {9.0 10.0 3869 ------- null} h -t 4.37646 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7729 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.37651 -s 0 -d 9 -p ack -e 40 -c 0 -i 7732 -a 0 -x {10.0 9.0 3861 ------- null} + -t 4.37651 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7743 -a 0 -x {9.0 10.0 3876 ------- null} - -t 4.37651 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7743 -a 0 -x {9.0 10.0 3876 ------- null} h -t 4.37651 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7743 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.37667 -s 0 -d 9 -p ack -e 40 -c 0 -i 7736 -a 0 -x {10.0 9.0 3863 ------- null} - -t 4.37667 -s 0 -d 9 -p ack -e 40 -c 0 -i 7736 -a 0 -x {10.0 9.0 3863 ------- null} h -t 4.37667 -s 0 -d 9 -p ack -e 40 -c 0 -i 7736 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.37694 -s 10 -d 7 -p ack -e 40 -c 0 -i 7740 -a 0 -x {10.0 9.0 3865 ------- null} + -t 4.37694 -s 7 -d 0 -p ack -e 40 -c 0 -i 7740 -a 0 -x {10.0 9.0 3865 ------- null} h -t 4.37694 -s 7 -d 8 -p ack -e 40 -c 0 -i 7740 -a 0 -x {10.0 9.0 3865 ------- null} r -t 4.37709 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7725 -a 0 -x {9.0 10.0 3867 ------- null} + -t 4.37709 -s 10 -d 7 -p ack -e 40 -c 0 -i 7744 -a 0 -x {10.0 9.0 3867 ------- null} - -t 4.37709 -s 10 -d 7 -p ack -e 40 -c 0 -i 7744 -a 0 -x {10.0 9.0 3867 ------- null} h -t 4.37709 -s 10 -d 7 -p ack -e 40 -c 0 -i 7744 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.37714 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7739 -a 0 -x {9.0 10.0 3874 ------- null} + -t 4.37714 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7739 -a 0 -x {9.0 10.0 3874 ------- null} h -t 4.37714 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7739 -a 0 -x {9.0 10.0 3874 ------- null} r -t 4.37754 -s 0 -d 9 -p ack -e 40 -c 0 -i 7734 -a 0 -x {10.0 9.0 3862 ------- null} + -t 4.37754 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7745 -a 0 -x {9.0 10.0 3877 ------- null} - -t 4.37754 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7745 -a 0 -x {9.0 10.0 3877 ------- null} h -t 4.37754 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7745 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.37755 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7731 -a 0 -x {9.0 10.0 3870 ------- null} - -t 4.37755 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7731 -a 0 -x {9.0 10.0 3870 ------- null} h -t 4.37755 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7731 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.37771 -s 0 -d 9 -p ack -e 40 -c 0 -i 7738 -a 0 -x {10.0 9.0 3864 ------- null} - -t 4.37771 -s 0 -d 9 -p ack -e 40 -c 0 -i 7738 -a 0 -x {10.0 9.0 3864 ------- null} h -t 4.37771 -s 0 -d 9 -p ack -e 40 -c 0 -i 7738 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.37803 -s 10 -d 7 -p ack -e 40 -c 0 -i 7742 -a 0 -x {10.0 9.0 3866 ------- null} + -t 4.37803 -s 7 -d 0 -p ack -e 40 -c 0 -i 7742 -a 0 -x {10.0 9.0 3866 ------- null} h -t 4.37803 -s 7 -d 8 -p ack -e 40 -c 0 -i 7742 -a 0 -x {10.0 9.0 3866 ------- null} r -t 4.37818 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7741 -a 0 -x {9.0 10.0 3875 ------- null} + -t 4.37818 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7741 -a 0 -x {9.0 10.0 3875 ------- null} h -t 4.37818 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7741 -a 0 -x {9.0 10.0 3875 ------- null} r -t 4.37818 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7727 -a 0 -x {9.0 10.0 3868 ------- null} + -t 4.37818 -s 10 -d 7 -p ack -e 40 -c 0 -i 7746 -a 0 -x {10.0 9.0 3868 ------- null} - -t 4.37818 -s 10 -d 7 -p ack -e 40 -c 0 -i 7746 -a 0 -x {10.0 9.0 3868 ------- null} h -t 4.37818 -s 10 -d 7 -p ack -e 40 -c 0 -i 7746 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.37864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7733 -a 0 -x {9.0 10.0 3871 ------- null} - -t 4.37864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7733 -a 0 -x {9.0 10.0 3871 ------- null} h -t 4.37864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7733 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.3787 -s 0 -d 9 -p ack -e 40 -c 0 -i 7736 -a 0 -x {10.0 9.0 3863 ------- null} + -t 4.3787 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7747 -a 0 -x {9.0 10.0 3878 ------- null} - -t 4.3787 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7747 -a 0 -x {9.0 10.0 3878 ------- null} h -t 4.3787 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7747 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.37886 -s 0 -d 9 -p ack -e 40 -c 0 -i 7740 -a 0 -x {10.0 9.0 3865 ------- null} - -t 4.37886 -s 0 -d 9 -p ack -e 40 -c 0 -i 7740 -a 0 -x {10.0 9.0 3865 ------- null} h -t 4.37886 -s 0 -d 9 -p ack -e 40 -c 0 -i 7740 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.37912 -s 10 -d 7 -p ack -e 40 -c 0 -i 7744 -a 0 -x {10.0 9.0 3867 ------- null} + -t 4.37912 -s 7 -d 0 -p ack -e 40 -c 0 -i 7744 -a 0 -x {10.0 9.0 3867 ------- null} h -t 4.37912 -s 7 -d 8 -p ack -e 40 -c 0 -i 7744 -a 0 -x {10.0 9.0 3867 ------- null} r -t 4.37926 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7729 -a 0 -x {9.0 10.0 3869 ------- null} + -t 4.37926 -s 10 -d 7 -p ack -e 40 -c 0 -i 7748 -a 0 -x {10.0 9.0 3869 ------- null} - -t 4.37926 -s 10 -d 7 -p ack -e 40 -c 0 -i 7748 -a 0 -x {10.0 9.0 3869 ------- null} h -t 4.37926 -s 10 -d 7 -p ack -e 40 -c 0 -i 7748 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.37931 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7743 -a 0 -x {9.0 10.0 3876 ------- null} + -t 4.37931 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7743 -a 0 -x {9.0 10.0 3876 ------- null} h -t 4.37931 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7743 -a 0 -x {9.0 10.0 3876 ------- null} + -t 4.37973 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7735 -a 0 -x {9.0 10.0 3872 ------- null} - -t 4.37973 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7735 -a 0 -x {9.0 10.0 3872 ------- null} h -t 4.37973 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7735 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.37974 -s 0 -d 9 -p ack -e 40 -c 0 -i 7738 -a 0 -x {10.0 9.0 3864 ------- null} + -t 4.37974 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7749 -a 0 -x {9.0 10.0 3879 ------- null} - -t 4.37974 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7749 -a 0 -x {9.0 10.0 3879 ------- null} h -t 4.37974 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7749 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.37987 -s 0 -d 9 -p ack -e 40 -c 0 -i 7742 -a 0 -x {10.0 9.0 3866 ------- null} - -t 4.37987 -s 0 -d 9 -p ack -e 40 -c 0 -i 7742 -a 0 -x {10.0 9.0 3866 ------- null} h -t 4.37987 -s 0 -d 9 -p ack -e 40 -c 0 -i 7742 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.38021 -s 10 -d 7 -p ack -e 40 -c 0 -i 7746 -a 0 -x {10.0 9.0 3868 ------- null} + -t 4.38021 -s 7 -d 0 -p ack -e 40 -c 0 -i 7746 -a 0 -x {10.0 9.0 3868 ------- null} h -t 4.38021 -s 7 -d 8 -p ack -e 40 -c 0 -i 7746 -a 0 -x {10.0 9.0 3868 ------- null} r -t 4.38034 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7745 -a 0 -x {9.0 10.0 3877 ------- null} + -t 4.38034 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7745 -a 0 -x {9.0 10.0 3877 ------- null} h -t 4.38034 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7745 -a 0 -x {9.0 10.0 3877 ------- null} r -t 4.38035 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7731 -a 0 -x {9.0 10.0 3870 ------- null} + -t 4.38035 -s 10 -d 7 -p ack -e 40 -c 0 -i 7750 -a 0 -x {10.0 9.0 3870 ------- null} - -t 4.38035 -s 10 -d 7 -p ack -e 40 -c 0 -i 7750 -a 0 -x {10.0 9.0 3870 ------- null} h -t 4.38035 -s 10 -d 7 -p ack -e 40 -c 0 -i 7750 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.38082 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7737 -a 0 -x {9.0 10.0 3873 ------- null} - -t 4.38082 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7737 -a 0 -x {9.0 10.0 3873 ------- null} h -t 4.38082 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7737 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.3809 -s 0 -d 9 -p ack -e 40 -c 0 -i 7740 -a 0 -x {10.0 9.0 3865 ------- null} + -t 4.3809 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7751 -a 0 -x {9.0 10.0 3880 ------- null} - -t 4.3809 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7751 -a 0 -x {9.0 10.0 3880 ------- null} h -t 4.3809 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7751 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.38101 -s 0 -d 9 -p ack -e 40 -c 0 -i 7744 -a 0 -x {10.0 9.0 3867 ------- null} - -t 4.38101 -s 0 -d 9 -p ack -e 40 -c 0 -i 7744 -a 0 -x {10.0 9.0 3867 ------- null} h -t 4.38101 -s 0 -d 9 -p ack -e 40 -c 0 -i 7744 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.3813 -s 10 -d 7 -p ack -e 40 -c 0 -i 7748 -a 0 -x {10.0 9.0 3869 ------- null} + -t 4.3813 -s 7 -d 0 -p ack -e 40 -c 0 -i 7748 -a 0 -x {10.0 9.0 3869 ------- null} h -t 4.3813 -s 7 -d 8 -p ack -e 40 -c 0 -i 7748 -a 0 -x {10.0 9.0 3869 ------- null} r -t 4.38144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7733 -a 0 -x {9.0 10.0 3871 ------- null} + -t 4.38144 -s 10 -d 7 -p ack -e 40 -c 0 -i 7752 -a 0 -x {10.0 9.0 3871 ------- null} - -t 4.38144 -s 10 -d 7 -p ack -e 40 -c 0 -i 7752 -a 0 -x {10.0 9.0 3871 ------- null} h -t 4.38144 -s 10 -d 7 -p ack -e 40 -c 0 -i 7752 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.3815 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7747 -a 0 -x {9.0 10.0 3878 ------- null} + -t 4.3815 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7747 -a 0 -x {9.0 10.0 3878 ------- null} h -t 4.3815 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7747 -a 0 -x {9.0 10.0 3878 ------- null} r -t 4.3819 -s 0 -d 9 -p ack -e 40 -c 0 -i 7742 -a 0 -x {10.0 9.0 3866 ------- null} + -t 4.3819 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7753 -a 0 -x {9.0 10.0 3881 ------- null} - -t 4.3819 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7753 -a 0 -x {9.0 10.0 3881 ------- null} h -t 4.3819 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7753 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.3819 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7739 -a 0 -x {9.0 10.0 3874 ------- null} - -t 4.3819 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7739 -a 0 -x {9.0 10.0 3874 ------- null} h -t 4.3819 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7739 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.382 -s 0 -d 9 -p ack -e 40 -c 0 -i 7746 -a 0 -x {10.0 9.0 3868 ------- null} - -t 4.382 -s 0 -d 9 -p ack -e 40 -c 0 -i 7746 -a 0 -x {10.0 9.0 3868 ------- null} h -t 4.382 -s 0 -d 9 -p ack -e 40 -c 0 -i 7746 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.38238 -s 10 -d 7 -p ack -e 40 -c 0 -i 7750 -a 0 -x {10.0 9.0 3870 ------- null} + -t 4.38238 -s 7 -d 0 -p ack -e 40 -c 0 -i 7750 -a 0 -x {10.0 9.0 3870 ------- null} h -t 4.38238 -s 7 -d 8 -p ack -e 40 -c 0 -i 7750 -a 0 -x {10.0 9.0 3870 ------- null} r -t 4.38253 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7735 -a 0 -x {9.0 10.0 3872 ------- null} + -t 4.38253 -s 10 -d 7 -p ack -e 40 -c 0 -i 7754 -a 0 -x {10.0 9.0 3872 ------- null} - -t 4.38253 -s 10 -d 7 -p ack -e 40 -c 0 -i 7754 -a 0 -x {10.0 9.0 3872 ------- null} h -t 4.38253 -s 10 -d 7 -p ack -e 40 -c 0 -i 7754 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.38254 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7749 -a 0 -x {9.0 10.0 3879 ------- null} + -t 4.38254 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7749 -a 0 -x {9.0 10.0 3879 ------- null} h -t 4.38254 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7749 -a 0 -x {9.0 10.0 3879 ------- null} + -t 4.38299 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7741 -a 0 -x {9.0 10.0 3875 ------- null} - -t 4.38299 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7741 -a 0 -x {9.0 10.0 3875 ------- null} h -t 4.38299 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7741 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.38304 -s 0 -d 9 -p ack -e 40 -c 0 -i 7744 -a 0 -x {10.0 9.0 3867 ------- null} + -t 4.38304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7755 -a 0 -x {9.0 10.0 3882 ------- null} - -t 4.38304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7755 -a 0 -x {9.0 10.0 3882 ------- null} h -t 4.38304 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7755 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.3833 -s 0 -d 9 -p ack -e 40 -c 0 -i 7748 -a 0 -x {10.0 9.0 3869 ------- null} - -t 4.3833 -s 0 -d 9 -p ack -e 40 -c 0 -i 7748 -a 0 -x {10.0 9.0 3869 ------- null} h -t 4.3833 -s 0 -d 9 -p ack -e 40 -c 0 -i 7748 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.38347 -s 10 -d 7 -p ack -e 40 -c 0 -i 7752 -a 0 -x {10.0 9.0 3871 ------- null} + -t 4.38347 -s 7 -d 0 -p ack -e 40 -c 0 -i 7752 -a 0 -x {10.0 9.0 3871 ------- null} h -t 4.38347 -s 7 -d 8 -p ack -e 40 -c 0 -i 7752 -a 0 -x {10.0 9.0 3871 ------- null} r -t 4.38362 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7737 -a 0 -x {9.0 10.0 3873 ------- null} + -t 4.38362 -s 10 -d 7 -p ack -e 40 -c 0 -i 7756 -a 0 -x {10.0 9.0 3873 ------- null} - -t 4.38362 -s 10 -d 7 -p ack -e 40 -c 0 -i 7756 -a 0 -x {10.0 9.0 3873 ------- null} h -t 4.38362 -s 10 -d 7 -p ack -e 40 -c 0 -i 7756 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.3837 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7751 -a 0 -x {9.0 10.0 3880 ------- null} + -t 4.3837 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7751 -a 0 -x {9.0 10.0 3880 ------- null} h -t 4.3837 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7751 -a 0 -x {9.0 10.0 3880 ------- null} r -t 4.38403 -s 0 -d 9 -p ack -e 40 -c 0 -i 7746 -a 0 -x {10.0 9.0 3868 ------- null} + -t 4.38403 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7757 -a 0 -x {9.0 10.0 3883 ------- null} - -t 4.38403 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7757 -a 0 -x {9.0 10.0 3883 ------- null} h -t 4.38403 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7757 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.38422 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7743 -a 0 -x {9.0 10.0 3876 ------- null} - -t 4.38422 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7743 -a 0 -x {9.0 10.0 3876 ------- null} h -t 4.38422 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7743 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.38453 -s 0 -d 9 -p ack -e 40 -c 0 -i 7750 -a 0 -x {10.0 9.0 3870 ------- null} - -t 4.38453 -s 0 -d 9 -p ack -e 40 -c 0 -i 7750 -a 0 -x {10.0 9.0 3870 ------- null} h -t 4.38453 -s 0 -d 9 -p ack -e 40 -c 0 -i 7750 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.38456 -s 10 -d 7 -p ack -e 40 -c 0 -i 7754 -a 0 -x {10.0 9.0 3872 ------- null} + -t 4.38456 -s 7 -d 0 -p ack -e 40 -c 0 -i 7754 -a 0 -x {10.0 9.0 3872 ------- null} h -t 4.38456 -s 7 -d 8 -p ack -e 40 -c 0 -i 7754 -a 0 -x {10.0 9.0 3872 ------- null} r -t 4.3847 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7753 -a 0 -x {9.0 10.0 3881 ------- null} + -t 4.3847 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7753 -a 0 -x {9.0 10.0 3881 ------- null} h -t 4.3847 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7753 -a 0 -x {9.0 10.0 3881 ------- null} r -t 4.3847 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7739 -a 0 -x {9.0 10.0 3874 ------- null} + -t 4.3847 -s 10 -d 7 -p ack -e 40 -c 0 -i 7758 -a 0 -x {10.0 9.0 3874 ------- null} - -t 4.3847 -s 10 -d 7 -p ack -e 40 -c 0 -i 7758 -a 0 -x {10.0 9.0 3874 ------- null} h -t 4.3847 -s 10 -d 7 -p ack -e 40 -c 0 -i 7758 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.38533 -s 0 -d 9 -p ack -e 40 -c 0 -i 7748 -a 0 -x {10.0 9.0 3869 ------- null} + -t 4.38533 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7759 -a 0 -x {9.0 10.0 3884 ------- null} - -t 4.38533 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7759 -a 0 -x {9.0 10.0 3884 ------- null} h -t 4.38533 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7759 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.38536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7745 -a 0 -x {9.0 10.0 3877 ------- null} - -t 4.38536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7745 -a 0 -x {9.0 10.0 3877 ------- null} h -t 4.38536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7745 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.38542 -s 0 -d 9 -p ack -e 40 -c 0 -i 7752 -a 0 -x {10.0 9.0 3871 ------- null} - -t 4.38542 -s 0 -d 9 -p ack -e 40 -c 0 -i 7752 -a 0 -x {10.0 9.0 3871 ------- null} h -t 4.38542 -s 0 -d 9 -p ack -e 40 -c 0 -i 7752 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.38565 -s 10 -d 7 -p ack -e 40 -c 0 -i 7756 -a 0 -x {10.0 9.0 3873 ------- null} + -t 4.38565 -s 7 -d 0 -p ack -e 40 -c 0 -i 7756 -a 0 -x {10.0 9.0 3873 ------- null} h -t 4.38565 -s 7 -d 8 -p ack -e 40 -c 0 -i 7756 -a 0 -x {10.0 9.0 3873 ------- null} r -t 4.38579 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7741 -a 0 -x {9.0 10.0 3875 ------- null} + -t 4.38579 -s 10 -d 7 -p ack -e 40 -c 0 -i 7760 -a 0 -x {10.0 9.0 3875 ------- null} - -t 4.38579 -s 10 -d 7 -p ack -e 40 -c 0 -i 7760 -a 0 -x {10.0 9.0 3875 ------- null} h -t 4.38579 -s 10 -d 7 -p ack -e 40 -c 0 -i 7760 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.38584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7755 -a 0 -x {9.0 10.0 3882 ------- null} + -t 4.38584 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7755 -a 0 -x {9.0 10.0 3882 ------- null} h -t 4.38584 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7755 -a 0 -x {9.0 10.0 3882 ------- null} + -t 4.38645 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7747 -a 0 -x {9.0 10.0 3878 ------- null} - -t 4.38645 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7747 -a 0 -x {9.0 10.0 3878 ------- null} h -t 4.38645 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7747 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.38656 -s 0 -d 9 -p ack -e 40 -c 0 -i 7750 -a 0 -x {10.0 9.0 3870 ------- null} + -t 4.38656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7761 -a 0 -x {9.0 10.0 3885 ------- null} - -t 4.38656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7761 -a 0 -x {9.0 10.0 3885 ------- null} h -t 4.38656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7761 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.3867 -s 0 -d 9 -p ack -e 40 -c 0 -i 7754 -a 0 -x {10.0 9.0 3872 ------- null} - -t 4.3867 -s 0 -d 9 -p ack -e 40 -c 0 -i 7754 -a 0 -x {10.0 9.0 3872 ------- null} h -t 4.3867 -s 0 -d 9 -p ack -e 40 -c 0 -i 7754 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.38674 -s 10 -d 7 -p ack -e 40 -c 0 -i 7758 -a 0 -x {10.0 9.0 3874 ------- null} + -t 4.38674 -s 7 -d 0 -p ack -e 40 -c 0 -i 7758 -a 0 -x {10.0 9.0 3874 ------- null} h -t 4.38674 -s 7 -d 8 -p ack -e 40 -c 0 -i 7758 -a 0 -x {10.0 9.0 3874 ------- null} r -t 4.38683 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7757 -a 0 -x {9.0 10.0 3883 ------- null} + -t 4.38683 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7757 -a 0 -x {9.0 10.0 3883 ------- null} h -t 4.38683 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7757 -a 0 -x {9.0 10.0 3883 ------- null} r -t 4.38702 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7743 -a 0 -x {9.0 10.0 3876 ------- null} + -t 4.38702 -s 10 -d 7 -p ack -e 40 -c 0 -i 7762 -a 0 -x {10.0 9.0 3876 ------- null} - -t 4.38702 -s 10 -d 7 -p ack -e 40 -c 0 -i 7762 -a 0 -x {10.0 9.0 3876 ------- null} h -t 4.38702 -s 10 -d 7 -p ack -e 40 -c 0 -i 7762 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.38746 -s 0 -d 9 -p ack -e 40 -c 0 -i 7752 -a 0 -x {10.0 9.0 3871 ------- null} + -t 4.38746 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7763 -a 0 -x {9.0 10.0 3886 ------- null} - -t 4.38746 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7763 -a 0 -x {9.0 10.0 3886 ------- null} h -t 4.38746 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7763 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.38754 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7749 -a 0 -x {9.0 10.0 3879 ------- null} - -t 4.38754 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7749 -a 0 -x {9.0 10.0 3879 ------- null} h -t 4.38754 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7749 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.38776 -s 0 -d 9 -p ack -e 40 -c 0 -i 7756 -a 0 -x {10.0 9.0 3873 ------- null} - -t 4.38776 -s 0 -d 9 -p ack -e 40 -c 0 -i 7756 -a 0 -x {10.0 9.0 3873 ------- null} h -t 4.38776 -s 0 -d 9 -p ack -e 40 -c 0 -i 7756 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.38782 -s 10 -d 7 -p ack -e 40 -c 0 -i 7760 -a 0 -x {10.0 9.0 3875 ------- null} + -t 4.38782 -s 7 -d 0 -p ack -e 40 -c 0 -i 7760 -a 0 -x {10.0 9.0 3875 ------- null} h -t 4.38782 -s 7 -d 8 -p ack -e 40 -c 0 -i 7760 -a 0 -x {10.0 9.0 3875 ------- null} r -t 4.38813 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7759 -a 0 -x {9.0 10.0 3884 ------- null} + -t 4.38813 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7759 -a 0 -x {9.0 10.0 3884 ------- null} h -t 4.38813 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7759 -a 0 -x {9.0 10.0 3884 ------- null} r -t 4.38816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7745 -a 0 -x {9.0 10.0 3877 ------- null} + -t 4.38816 -s 10 -d 7 -p ack -e 40 -c 0 -i 7764 -a 0 -x {10.0 9.0 3877 ------- null} - -t 4.38816 -s 10 -d 7 -p ack -e 40 -c 0 -i 7764 -a 0 -x {10.0 9.0 3877 ------- null} h -t 4.38816 -s 10 -d 7 -p ack -e 40 -c 0 -i 7764 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.38862 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7751 -a 0 -x {9.0 10.0 3880 ------- null} - -t 4.38862 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7751 -a 0 -x {9.0 10.0 3880 ------- null} h -t 4.38862 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7751 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.38874 -s 0 -d 9 -p ack -e 40 -c 0 -i 7754 -a 0 -x {10.0 9.0 3872 ------- null} + -t 4.38874 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7765 -a 0 -x {9.0 10.0 3887 ------- null} - -t 4.38874 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7765 -a 0 -x {9.0 10.0 3887 ------- null} h -t 4.38874 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7765 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.38891 -s 0 -d 9 -p ack -e 40 -c 0 -i 7758 -a 0 -x {10.0 9.0 3874 ------- null} - -t 4.38891 -s 0 -d 9 -p ack -e 40 -c 0 -i 7758 -a 0 -x {10.0 9.0 3874 ------- null} h -t 4.38891 -s 0 -d 9 -p ack -e 40 -c 0 -i 7758 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.38906 -s 10 -d 7 -p ack -e 40 -c 0 -i 7762 -a 0 -x {10.0 9.0 3876 ------- null} + -t 4.38906 -s 7 -d 0 -p ack -e 40 -c 0 -i 7762 -a 0 -x {10.0 9.0 3876 ------- null} h -t 4.38906 -s 7 -d 8 -p ack -e 40 -c 0 -i 7762 -a 0 -x {10.0 9.0 3876 ------- null} r -t 4.38925 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7747 -a 0 -x {9.0 10.0 3878 ------- null} + -t 4.38925 -s 10 -d 7 -p ack -e 40 -c 0 -i 7766 -a 0 -x {10.0 9.0 3878 ------- null} - -t 4.38925 -s 10 -d 7 -p ack -e 40 -c 0 -i 7766 -a 0 -x {10.0 9.0 3878 ------- null} h -t 4.38925 -s 10 -d 7 -p ack -e 40 -c 0 -i 7766 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.38936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7761 -a 0 -x {9.0 10.0 3885 ------- null} + -t 4.38936 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7761 -a 0 -x {9.0 10.0 3885 ------- null} h -t 4.38936 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7761 -a 0 -x {9.0 10.0 3885 ------- null} r -t 4.38979 -s 0 -d 9 -p ack -e 40 -c 0 -i 7756 -a 0 -x {10.0 9.0 3873 ------- null} + -t 4.38979 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7767 -a 0 -x {9.0 10.0 3888 ------- null} - -t 4.38979 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7767 -a 0 -x {9.0 10.0 3888 ------- null} h -t 4.38979 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7767 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.38984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7753 -a 0 -x {9.0 10.0 3881 ------- null} - -t 4.38984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7753 -a 0 -x {9.0 10.0 3881 ------- null} h -t 4.38984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7753 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.38997 -s 0 -d 9 -p ack -e 40 -c 0 -i 7760 -a 0 -x {10.0 9.0 3875 ------- null} - -t 4.38997 -s 0 -d 9 -p ack -e 40 -c 0 -i 7760 -a 0 -x {10.0 9.0 3875 ------- null} h -t 4.38997 -s 0 -d 9 -p ack -e 40 -c 0 -i 7760 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.39019 -s 10 -d 7 -p ack -e 40 -c 0 -i 7764 -a 0 -x {10.0 9.0 3877 ------- null} + -t 4.39019 -s 7 -d 0 -p ack -e 40 -c 0 -i 7764 -a 0 -x {10.0 9.0 3877 ------- null} h -t 4.39019 -s 7 -d 8 -p ack -e 40 -c 0 -i 7764 -a 0 -x {10.0 9.0 3877 ------- null} r -t 4.39026 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7763 -a 0 -x {9.0 10.0 3886 ------- null} + -t 4.39026 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7763 -a 0 -x {9.0 10.0 3886 ------- null} h -t 4.39026 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7763 -a 0 -x {9.0 10.0 3886 ------- null} r -t 4.39034 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7749 -a 0 -x {9.0 10.0 3879 ------- null} + -t 4.39034 -s 10 -d 7 -p ack -e 40 -c 0 -i 7768 -a 0 -x {10.0 9.0 3879 ------- null} - -t 4.39034 -s 10 -d 7 -p ack -e 40 -c 0 -i 7768 -a 0 -x {10.0 9.0 3879 ------- null} h -t 4.39034 -s 10 -d 7 -p ack -e 40 -c 0 -i 7768 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.39093 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7755 -a 0 -x {9.0 10.0 3882 ------- null} - -t 4.39093 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7755 -a 0 -x {9.0 10.0 3882 ------- null} h -t 4.39093 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7755 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.39094 -s 0 -d 9 -p ack -e 40 -c 0 -i 7758 -a 0 -x {10.0 9.0 3874 ------- null} + -t 4.39094 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7769 -a 0 -x {9.0 10.0 3889 ------- null} - -t 4.39094 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7769 -a 0 -x {9.0 10.0 3889 ------- null} h -t 4.39094 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7769 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.39104 -s 0 -d 9 -p ack -e 40 -c 0 -i 7762 -a 0 -x {10.0 9.0 3876 ------- null} - -t 4.39104 -s 0 -d 9 -p ack -e 40 -c 0 -i 7762 -a 0 -x {10.0 9.0 3876 ------- null} h -t 4.39104 -s 0 -d 9 -p ack -e 40 -c 0 -i 7762 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.39128 -s 10 -d 7 -p ack -e 40 -c 0 -i 7766 -a 0 -x {10.0 9.0 3878 ------- null} + -t 4.39128 -s 7 -d 0 -p ack -e 40 -c 0 -i 7766 -a 0 -x {10.0 9.0 3878 ------- null} h -t 4.39128 -s 7 -d 8 -p ack -e 40 -c 0 -i 7766 -a 0 -x {10.0 9.0 3878 ------- null} r -t 4.39142 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7751 -a 0 -x {9.0 10.0 3880 ------- null} + -t 4.39142 -s 10 -d 7 -p ack -e 40 -c 0 -i 7770 -a 0 -x {10.0 9.0 3880 ------- null} - -t 4.39142 -s 10 -d 7 -p ack -e 40 -c 0 -i 7770 -a 0 -x {10.0 9.0 3880 ------- null} h -t 4.39142 -s 10 -d 7 -p ack -e 40 -c 0 -i 7770 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.39154 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7765 -a 0 -x {9.0 10.0 3887 ------- null} + -t 4.39154 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7765 -a 0 -x {9.0 10.0 3887 ------- null} h -t 4.39154 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7765 -a 0 -x {9.0 10.0 3887 ------- null} r -t 4.392 -s 0 -d 9 -p ack -e 40 -c 0 -i 7760 -a 0 -x {10.0 9.0 3875 ------- null} + -t 4.392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7771 -a 0 -x {9.0 10.0 3890 ------- null} - -t 4.392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7771 -a 0 -x {9.0 10.0 3890 ------- null} h -t 4.392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7771 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.39202 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7757 -a 0 -x {9.0 10.0 3883 ------- null} - -t 4.39202 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7757 -a 0 -x {9.0 10.0 3883 ------- null} h -t 4.39202 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7757 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.39226 -s 0 -d 9 -p ack -e 40 -c 0 -i 7764 -a 0 -x {10.0 9.0 3877 ------- null} - -t 4.39226 -s 0 -d 9 -p ack -e 40 -c 0 -i 7764 -a 0 -x {10.0 9.0 3877 ------- null} h -t 4.39226 -s 0 -d 9 -p ack -e 40 -c 0 -i 7764 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.39237 -s 10 -d 7 -p ack -e 40 -c 0 -i 7768 -a 0 -x {10.0 9.0 3879 ------- null} + -t 4.39237 -s 7 -d 0 -p ack -e 40 -c 0 -i 7768 -a 0 -x {10.0 9.0 3879 ------- null} h -t 4.39237 -s 7 -d 8 -p ack -e 40 -c 0 -i 7768 -a 0 -x {10.0 9.0 3879 ------- null} r -t 4.39259 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7767 -a 0 -x {9.0 10.0 3888 ------- null} + -t 4.39259 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7767 -a 0 -x {9.0 10.0 3888 ------- null} h -t 4.39259 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7767 -a 0 -x {9.0 10.0 3888 ------- null} r -t 4.39264 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7753 -a 0 -x {9.0 10.0 3881 ------- null} + -t 4.39264 -s 10 -d 7 -p ack -e 40 -c 0 -i 7772 -a 0 -x {10.0 9.0 3881 ------- null} - -t 4.39264 -s 10 -d 7 -p ack -e 40 -c 0 -i 7772 -a 0 -x {10.0 9.0 3881 ------- null} h -t 4.39264 -s 10 -d 7 -p ack -e 40 -c 0 -i 7772 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.39307 -s 0 -d 9 -p ack -e 40 -c 0 -i 7762 -a 0 -x {10.0 9.0 3876 ------- null} + -t 4.39307 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7773 -a 0 -x {9.0 10.0 3891 ------- null} - -t 4.39307 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7773 -a 0 -x {9.0 10.0 3891 ------- null} h -t 4.39307 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7773 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.3931 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7759 -a 0 -x {9.0 10.0 3884 ------- null} - -t 4.3931 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7759 -a 0 -x {9.0 10.0 3884 ------- null} h -t 4.3931 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7759 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.39323 -s 0 -d 9 -p ack -e 40 -c 0 -i 7766 -a 0 -x {10.0 9.0 3878 ------- null} - -t 4.39323 -s 0 -d 9 -p ack -e 40 -c 0 -i 7766 -a 0 -x {10.0 9.0 3878 ------- null} h -t 4.39323 -s 0 -d 9 -p ack -e 40 -c 0 -i 7766 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.39346 -s 10 -d 7 -p ack -e 40 -c 0 -i 7770 -a 0 -x {10.0 9.0 3880 ------- null} + -t 4.39346 -s 7 -d 0 -p ack -e 40 -c 0 -i 7770 -a 0 -x {10.0 9.0 3880 ------- null} h -t 4.39346 -s 7 -d 8 -p ack -e 40 -c 0 -i 7770 -a 0 -x {10.0 9.0 3880 ------- null} r -t 4.39373 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7755 -a 0 -x {9.0 10.0 3882 ------- null} + -t 4.39373 -s 10 -d 7 -p ack -e 40 -c 0 -i 7774 -a 0 -x {10.0 9.0 3882 ------- null} - -t 4.39373 -s 10 -d 7 -p ack -e 40 -c 0 -i 7774 -a 0 -x {10.0 9.0 3882 ------- null} h -t 4.39373 -s 10 -d 7 -p ack -e 40 -c 0 -i 7774 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.39374 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7769 -a 0 -x {9.0 10.0 3889 ------- null} + -t 4.39374 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7769 -a 0 -x {9.0 10.0 3889 ------- null} h -t 4.39374 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7769 -a 0 -x {9.0 10.0 3889 ------- null} + -t 4.39419 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7761 -a 0 -x {9.0 10.0 3885 ------- null} - -t 4.39419 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7761 -a 0 -x {9.0 10.0 3885 ------- null} h -t 4.39419 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7761 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.39429 -s 0 -d 9 -p ack -e 40 -c 0 -i 7764 -a 0 -x {10.0 9.0 3877 ------- null} + -t 4.39429 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7775 -a 0 -x {9.0 10.0 3892 ------- null} - -t 4.39429 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7775 -a 0 -x {9.0 10.0 3892 ------- null} h -t 4.39429 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7775 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.39445 -s 0 -d 9 -p ack -e 40 -c 0 -i 7768 -a 0 -x {10.0 9.0 3879 ------- null} - -t 4.39445 -s 0 -d 9 -p ack -e 40 -c 0 -i 7768 -a 0 -x {10.0 9.0 3879 ------- null} h -t 4.39445 -s 0 -d 9 -p ack -e 40 -c 0 -i 7768 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.39467 -s 10 -d 7 -p ack -e 40 -c 0 -i 7772 -a 0 -x {10.0 9.0 3881 ------- null} + -t 4.39467 -s 7 -d 0 -p ack -e 40 -c 0 -i 7772 -a 0 -x {10.0 9.0 3881 ------- null} h -t 4.39467 -s 7 -d 8 -p ack -e 40 -c 0 -i 7772 -a 0 -x {10.0 9.0 3881 ------- null} r -t 4.3948 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7771 -a 0 -x {9.0 10.0 3890 ------- null} + -t 4.3948 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7771 -a 0 -x {9.0 10.0 3890 ------- null} h -t 4.3948 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7771 -a 0 -x {9.0 10.0 3890 ------- null} r -t 4.39482 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7757 -a 0 -x {9.0 10.0 3883 ------- null} + -t 4.39482 -s 10 -d 7 -p ack -e 40 -c 0 -i 7776 -a 0 -x {10.0 9.0 3883 ------- null} - -t 4.39482 -s 10 -d 7 -p ack -e 40 -c 0 -i 7776 -a 0 -x {10.0 9.0 3883 ------- null} h -t 4.39482 -s 10 -d 7 -p ack -e 40 -c 0 -i 7776 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.39526 -s 0 -d 9 -p ack -e 40 -c 0 -i 7766 -a 0 -x {10.0 9.0 3878 ------- null} + -t 4.39526 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7777 -a 0 -x {9.0 10.0 3893 ------- null} - -t 4.39526 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7777 -a 0 -x {9.0 10.0 3893 ------- null} h -t 4.39526 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7777 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.39528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7763 -a 0 -x {9.0 10.0 3886 ------- null} - -t 4.39528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7763 -a 0 -x {9.0 10.0 3886 ------- null} h -t 4.39528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7763 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.39552 -s 0 -d 9 -p ack -e 40 -c 0 -i 7770 -a 0 -x {10.0 9.0 3880 ------- null} - -t 4.39552 -s 0 -d 9 -p ack -e 40 -c 0 -i 7770 -a 0 -x {10.0 9.0 3880 ------- null} h -t 4.39552 -s 0 -d 9 -p ack -e 40 -c 0 -i 7770 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.39576 -s 10 -d 7 -p ack -e 40 -c 0 -i 7774 -a 0 -x {10.0 9.0 3882 ------- null} + -t 4.39576 -s 7 -d 0 -p ack -e 40 -c 0 -i 7774 -a 0 -x {10.0 9.0 3882 ------- null} h -t 4.39576 -s 7 -d 8 -p ack -e 40 -c 0 -i 7774 -a 0 -x {10.0 9.0 3882 ------- null} r -t 4.39587 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7773 -a 0 -x {9.0 10.0 3891 ------- null} + -t 4.39587 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7773 -a 0 -x {9.0 10.0 3891 ------- null} h -t 4.39587 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7773 -a 0 -x {9.0 10.0 3891 ------- null} r -t 4.3959 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7759 -a 0 -x {9.0 10.0 3884 ------- null} + -t 4.3959 -s 10 -d 7 -p ack -e 40 -c 0 -i 7778 -a 0 -x {10.0 9.0 3884 ------- null} - -t 4.3959 -s 10 -d 7 -p ack -e 40 -c 0 -i 7778 -a 0 -x {10.0 9.0 3884 ------- null} h -t 4.3959 -s 10 -d 7 -p ack -e 40 -c 0 -i 7778 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.39637 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7765 -a 0 -x {9.0 10.0 3887 ------- null} - -t 4.39637 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7765 -a 0 -x {9.0 10.0 3887 ------- null} h -t 4.39637 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7765 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.39648 -s 0 -d 9 -p ack -e 40 -c 0 -i 7768 -a 0 -x {10.0 9.0 3879 ------- null} + -t 4.39648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7779 -a 0 -x {9.0 10.0 3894 ------- null} - -t 4.39648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7779 -a 0 -x {9.0 10.0 3894 ------- null} h -t 4.39648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7779 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.39662 -s 0 -d 9 -p ack -e 40 -c 0 -i 7772 -a 0 -x {10.0 9.0 3881 ------- null} - -t 4.39662 -s 0 -d 9 -p ack -e 40 -c 0 -i 7772 -a 0 -x {10.0 9.0 3881 ------- null} h -t 4.39662 -s 0 -d 9 -p ack -e 40 -c 0 -i 7772 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.39685 -s 10 -d 7 -p ack -e 40 -c 0 -i 7776 -a 0 -x {10.0 9.0 3883 ------- null} + -t 4.39685 -s 7 -d 0 -p ack -e 40 -c 0 -i 7776 -a 0 -x {10.0 9.0 3883 ------- null} h -t 4.39685 -s 7 -d 8 -p ack -e 40 -c 0 -i 7776 -a 0 -x {10.0 9.0 3883 ------- null} r -t 4.39699 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7761 -a 0 -x {9.0 10.0 3885 ------- null} + -t 4.39699 -s 10 -d 7 -p ack -e 40 -c 0 -i 7780 -a 0 -x {10.0 9.0 3885 ------- null} - -t 4.39699 -s 10 -d 7 -p ack -e 40 -c 0 -i 7780 -a 0 -x {10.0 9.0 3885 ------- null} h -t 4.39699 -s 10 -d 7 -p ack -e 40 -c 0 -i 7780 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.39709 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7775 -a 0 -x {9.0 10.0 3892 ------- null} + -t 4.39709 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7775 -a 0 -x {9.0 10.0 3892 ------- null} h -t 4.39709 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7775 -a 0 -x {9.0 10.0 3892 ------- null} + -t 4.39746 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7767 -a 0 -x {9.0 10.0 3888 ------- null} - -t 4.39746 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7767 -a 0 -x {9.0 10.0 3888 ------- null} h -t 4.39746 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7767 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.39755 -s 0 -d 9 -p ack -e 40 -c 0 -i 7770 -a 0 -x {10.0 9.0 3880 ------- null} + -t 4.39755 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7781 -a 0 -x {9.0 10.0 3895 ------- null} - -t 4.39755 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7781 -a 0 -x {9.0 10.0 3895 ------- null} h -t 4.39755 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7781 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.39755 -s 0 -d 9 -p ack -e 40 -c 0 -i 7774 -a 0 -x {10.0 9.0 3882 ------- null} - -t 4.39755 -s 0 -d 9 -p ack -e 40 -c 0 -i 7774 -a 0 -x {10.0 9.0 3882 ------- null} h -t 4.39755 -s 0 -d 9 -p ack -e 40 -c 0 -i 7774 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.39794 -s 10 -d 7 -p ack -e 40 -c 0 -i 7778 -a 0 -x {10.0 9.0 3884 ------- null} + -t 4.39794 -s 7 -d 0 -p ack -e 40 -c 0 -i 7778 -a 0 -x {10.0 9.0 3884 ------- null} h -t 4.39794 -s 7 -d 8 -p ack -e 40 -c 0 -i 7778 -a 0 -x {10.0 9.0 3884 ------- null} r -t 4.39806 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7777 -a 0 -x {9.0 10.0 3893 ------- null} + -t 4.39806 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7777 -a 0 -x {9.0 10.0 3893 ------- null} h -t 4.39806 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7777 -a 0 -x {9.0 10.0 3893 ------- null} r -t 4.39808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7763 -a 0 -x {9.0 10.0 3886 ------- null} + -t 4.39808 -s 10 -d 7 -p ack -e 40 -c 0 -i 7782 -a 0 -x {10.0 9.0 3886 ------- null} - -t 4.39808 -s 10 -d 7 -p ack -e 40 -c 0 -i 7782 -a 0 -x {10.0 9.0 3886 ------- null} h -t 4.39808 -s 10 -d 7 -p ack -e 40 -c 0 -i 7782 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.39854 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7769 -a 0 -x {9.0 10.0 3889 ------- null} - -t 4.39854 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7769 -a 0 -x {9.0 10.0 3889 ------- null} h -t 4.39854 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7769 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.39861 -s 0 -d 9 -p ack -e 40 -c 0 -i 7776 -a 0 -x {10.0 9.0 3883 ------- null} - -t 4.39861 -s 0 -d 9 -p ack -e 40 -c 0 -i 7776 -a 0 -x {10.0 9.0 3883 ------- null} h -t 4.39861 -s 0 -d 9 -p ack -e 40 -c 0 -i 7776 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.39866 -s 0 -d 9 -p ack -e 40 -c 0 -i 7772 -a 0 -x {10.0 9.0 3881 ------- null} + -t 4.39866 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7783 -a 0 -x {9.0 10.0 3896 ------- null} - -t 4.39866 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7783 -a 0 -x {9.0 10.0 3896 ------- null} h -t 4.39866 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7783 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.39902 -s 10 -d 7 -p ack -e 40 -c 0 -i 7780 -a 0 -x {10.0 9.0 3885 ------- null} + -t 4.39902 -s 7 -d 0 -p ack -e 40 -c 0 -i 7780 -a 0 -x {10.0 9.0 3885 ------- null} h -t 4.39902 -s 7 -d 8 -p ack -e 40 -c 0 -i 7780 -a 0 -x {10.0 9.0 3885 ------- null} r -t 4.39917 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7765 -a 0 -x {9.0 10.0 3887 ------- null} + -t 4.39917 -s 10 -d 7 -p ack -e 40 -c 0 -i 7784 -a 0 -x {10.0 9.0 3887 ------- null} - -t 4.39917 -s 10 -d 7 -p ack -e 40 -c 0 -i 7784 -a 0 -x {10.0 9.0 3887 ------- null} h -t 4.39917 -s 10 -d 7 -p ack -e 40 -c 0 -i 7784 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.39928 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7779 -a 0 -x {9.0 10.0 3894 ------- null} + -t 4.39928 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7779 -a 0 -x {9.0 10.0 3894 ------- null} h -t 4.39928 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7779 -a 0 -x {9.0 10.0 3894 ------- null} r -t 4.39958 -s 0 -d 9 -p ack -e 40 -c 0 -i 7774 -a 0 -x {10.0 9.0 3882 ------- null} + -t 4.39958 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7785 -a 0 -x {9.0 10.0 3897 ------- null} - -t 4.39958 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7785 -a 0 -x {9.0 10.0 3897 ------- null} h -t 4.39958 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7785 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.39963 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7771 -a 0 -x {9.0 10.0 3890 ------- null} - -t 4.39963 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7771 -a 0 -x {9.0 10.0 3890 ------- null} h -t 4.39963 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7771 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.39989 -s 0 -d 9 -p ack -e 40 -c 0 -i 7778 -a 0 -x {10.0 9.0 3884 ------- null} - -t 4.39989 -s 0 -d 9 -p ack -e 40 -c 0 -i 7778 -a 0 -x {10.0 9.0 3884 ------- null} h -t 4.39989 -s 0 -d 9 -p ack -e 40 -c 0 -i 7778 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.40011 -s 10 -d 7 -p ack -e 40 -c 0 -i 7782 -a 0 -x {10.0 9.0 3886 ------- null} + -t 4.40011 -s 7 -d 0 -p ack -e 40 -c 0 -i 7782 -a 0 -x {10.0 9.0 3886 ------- null} h -t 4.40011 -s 7 -d 8 -p ack -e 40 -c 0 -i 7782 -a 0 -x {10.0 9.0 3886 ------- null} r -t 4.40026 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7767 -a 0 -x {9.0 10.0 3888 ------- null} + -t 4.40026 -s 10 -d 7 -p ack -e 40 -c 0 -i 7786 -a 0 -x {10.0 9.0 3888 ------- null} - -t 4.40026 -s 10 -d 7 -p ack -e 40 -c 0 -i 7786 -a 0 -x {10.0 9.0 3888 ------- null} h -t 4.40026 -s 10 -d 7 -p ack -e 40 -c 0 -i 7786 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.40035 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7781 -a 0 -x {9.0 10.0 3895 ------- null} + -t 4.40035 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7781 -a 0 -x {9.0 10.0 3895 ------- null} h -t 4.40035 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7781 -a 0 -x {9.0 10.0 3895 ------- null} r -t 4.40064 -s 0 -d 9 -p ack -e 40 -c 0 -i 7776 -a 0 -x {10.0 9.0 3883 ------- null} + -t 4.40064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7787 -a 0 -x {9.0 10.0 3898 ------- null} - -t 4.40064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7787 -a 0 -x {9.0 10.0 3898 ------- null} h -t 4.40064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7787 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.40072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7773 -a 0 -x {9.0 10.0 3891 ------- null} - -t 4.40072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7773 -a 0 -x {9.0 10.0 3891 ------- null} h -t 4.40072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7773 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.40086 -s 0 -d 9 -p ack -e 40 -c 0 -i 7780 -a 0 -x {10.0 9.0 3885 ------- null} - -t 4.40086 -s 0 -d 9 -p ack -e 40 -c 0 -i 7780 -a 0 -x {10.0 9.0 3885 ------- null} h -t 4.40086 -s 0 -d 9 -p ack -e 40 -c 0 -i 7780 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.4012 -s 10 -d 7 -p ack -e 40 -c 0 -i 7784 -a 0 -x {10.0 9.0 3887 ------- null} + -t 4.4012 -s 7 -d 0 -p ack -e 40 -c 0 -i 7784 -a 0 -x {10.0 9.0 3887 ------- null} h -t 4.4012 -s 7 -d 8 -p ack -e 40 -c 0 -i 7784 -a 0 -x {10.0 9.0 3887 ------- null} r -t 4.40134 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7769 -a 0 -x {9.0 10.0 3889 ------- null} + -t 4.40134 -s 10 -d 7 -p ack -e 40 -c 0 -i 7788 -a 0 -x {10.0 9.0 3889 ------- null} - -t 4.40134 -s 10 -d 7 -p ack -e 40 -c 0 -i 7788 -a 0 -x {10.0 9.0 3889 ------- null} h -t 4.40134 -s 10 -d 7 -p ack -e 40 -c 0 -i 7788 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.40146 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7783 -a 0 -x {9.0 10.0 3896 ------- null} + -t 4.40146 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7783 -a 0 -x {9.0 10.0 3896 ------- null} h -t 4.40146 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7783 -a 0 -x {9.0 10.0 3896 ------- null} + -t 4.40181 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7775 -a 0 -x {9.0 10.0 3892 ------- null} - -t 4.40181 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7775 -a 0 -x {9.0 10.0 3892 ------- null} h -t 4.40181 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7775 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.40192 -s 0 -d 9 -p ack -e 40 -c 0 -i 7778 -a 0 -x {10.0 9.0 3884 ------- null} + -t 4.40192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7789 -a 0 -x {9.0 10.0 3899 ------- null} - -t 4.40192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7789 -a 0 -x {9.0 10.0 3899 ------- null} h -t 4.40192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7789 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.40206 -s 0 -d 9 -p ack -e 40 -c 0 -i 7782 -a 0 -x {10.0 9.0 3886 ------- null} - -t 4.40206 -s 0 -d 9 -p ack -e 40 -c 0 -i 7782 -a 0 -x {10.0 9.0 3886 ------- null} h -t 4.40206 -s 0 -d 9 -p ack -e 40 -c 0 -i 7782 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.40229 -s 10 -d 7 -p ack -e 40 -c 0 -i 7786 -a 0 -x {10.0 9.0 3888 ------- null} + -t 4.40229 -s 7 -d 0 -p ack -e 40 -c 0 -i 7786 -a 0 -x {10.0 9.0 3888 ------- null} h -t 4.40229 -s 7 -d 8 -p ack -e 40 -c 0 -i 7786 -a 0 -x {10.0 9.0 3888 ------- null} r -t 4.40238 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7785 -a 0 -x {9.0 10.0 3897 ------- null} + -t 4.40238 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7785 -a 0 -x {9.0 10.0 3897 ------- null} h -t 4.40238 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7785 -a 0 -x {9.0 10.0 3897 ------- null} r -t 4.40243 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7771 -a 0 -x {9.0 10.0 3890 ------- null} + -t 4.40243 -s 10 -d 7 -p ack -e 40 -c 0 -i 7790 -a 0 -x {10.0 9.0 3890 ------- null} - -t 4.40243 -s 10 -d 7 -p ack -e 40 -c 0 -i 7790 -a 0 -x {10.0 9.0 3890 ------- null} h -t 4.40243 -s 10 -d 7 -p ack -e 40 -c 0 -i 7790 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.4029 -s 0 -d 9 -p ack -e 40 -c 0 -i 7780 -a 0 -x {10.0 9.0 3885 ------- null} + -t 4.4029 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7791 -a 0 -x {9.0 10.0 3900 ------- null} - -t 4.4029 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7791 -a 0 -x {9.0 10.0 3900 ------- null} h -t 4.4029 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7791 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.4029 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7777 -a 0 -x {9.0 10.0 3893 ------- null} - -t 4.4029 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7777 -a 0 -x {9.0 10.0 3893 ------- null} h -t 4.4029 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7777 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.40317 -s 0 -d 9 -p ack -e 40 -c 0 -i 7784 -a 0 -x {10.0 9.0 3887 ------- null} - -t 4.40317 -s 0 -d 9 -p ack -e 40 -c 0 -i 7784 -a 0 -x {10.0 9.0 3887 ------- null} h -t 4.40317 -s 0 -d 9 -p ack -e 40 -c 0 -i 7784 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.40338 -s 10 -d 7 -p ack -e 40 -c 0 -i 7788 -a 0 -x {10.0 9.0 3889 ------- null} + -t 4.40338 -s 7 -d 0 -p ack -e 40 -c 0 -i 7788 -a 0 -x {10.0 9.0 3889 ------- null} h -t 4.40338 -s 7 -d 8 -p ack -e 40 -c 0 -i 7788 -a 0 -x {10.0 9.0 3889 ------- null} r -t 4.40344 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7787 -a 0 -x {9.0 10.0 3898 ------- null} + -t 4.40344 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7787 -a 0 -x {9.0 10.0 3898 ------- null} h -t 4.40344 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7787 -a 0 -x {9.0 10.0 3898 ------- null} r -t 4.40352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7773 -a 0 -x {9.0 10.0 3891 ------- null} + -t 4.40352 -s 10 -d 7 -p ack -e 40 -c 0 -i 7792 -a 0 -x {10.0 9.0 3891 ------- null} - -t 4.40352 -s 10 -d 7 -p ack -e 40 -c 0 -i 7792 -a 0 -x {10.0 9.0 3891 ------- null} h -t 4.40352 -s 10 -d 7 -p ack -e 40 -c 0 -i 7792 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.40408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7779 -a 0 -x {9.0 10.0 3894 ------- null} - -t 4.40408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7779 -a 0 -x {9.0 10.0 3894 ------- null} h -t 4.40408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7779 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.4041 -s 0 -d 9 -p ack -e 40 -c 0 -i 7782 -a 0 -x {10.0 9.0 3886 ------- null} + -t 4.4041 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7793 -a 0 -x {9.0 10.0 3901 ------- null} - -t 4.4041 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7793 -a 0 -x {9.0 10.0 3901 ------- null} h -t 4.4041 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7793 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.40424 -s 0 -d 9 -p ack -e 40 -c 0 -i 7786 -a 0 -x {10.0 9.0 3888 ------- null} - -t 4.40424 -s 0 -d 9 -p ack -e 40 -c 0 -i 7786 -a 0 -x {10.0 9.0 3888 ------- null} h -t 4.40424 -s 0 -d 9 -p ack -e 40 -c 0 -i 7786 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.40446 -s 10 -d 7 -p ack -e 40 -c 0 -i 7790 -a 0 -x {10.0 9.0 3890 ------- null} + -t 4.40446 -s 7 -d 0 -p ack -e 40 -c 0 -i 7790 -a 0 -x {10.0 9.0 3890 ------- null} h -t 4.40446 -s 7 -d 8 -p ack -e 40 -c 0 -i 7790 -a 0 -x {10.0 9.0 3890 ------- null} r -t 4.40461 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7775 -a 0 -x {9.0 10.0 3892 ------- null} + -t 4.40461 -s 10 -d 7 -p ack -e 40 -c 0 -i 7794 -a 0 -x {10.0 9.0 3892 ------- null} - -t 4.40461 -s 10 -d 7 -p ack -e 40 -c 0 -i 7794 -a 0 -x {10.0 9.0 3892 ------- null} h -t 4.40461 -s 10 -d 7 -p ack -e 40 -c 0 -i 7794 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.40472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7789 -a 0 -x {9.0 10.0 3899 ------- null} + -t 4.40472 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7789 -a 0 -x {9.0 10.0 3899 ------- null} h -t 4.40472 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7789 -a 0 -x {9.0 10.0 3899 ------- null} + -t 4.40517 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7781 -a 0 -x {9.0 10.0 3895 ------- null} - -t 4.40517 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7781 -a 0 -x {9.0 10.0 3895 ------- null} h -t 4.40517 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7781 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.4052 -s 0 -d 9 -p ack -e 40 -c 0 -i 7784 -a 0 -x {10.0 9.0 3887 ------- null} + -t 4.4052 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7795 -a 0 -x {9.0 10.0 3902 ------- null} - -t 4.4052 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7795 -a 0 -x {9.0 10.0 3902 ------- null} h -t 4.4052 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7795 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.40544 -s 0 -d 9 -p ack -e 40 -c 0 -i 7788 -a 0 -x {10.0 9.0 3889 ------- null} - -t 4.40544 -s 0 -d 9 -p ack -e 40 -c 0 -i 7788 -a 0 -x {10.0 9.0 3889 ------- null} h -t 4.40544 -s 0 -d 9 -p ack -e 40 -c 0 -i 7788 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.40555 -s 10 -d 7 -p ack -e 40 -c 0 -i 7792 -a 0 -x {10.0 9.0 3891 ------- null} + -t 4.40555 -s 7 -d 0 -p ack -e 40 -c 0 -i 7792 -a 0 -x {10.0 9.0 3891 ------- null} h -t 4.40555 -s 7 -d 8 -p ack -e 40 -c 0 -i 7792 -a 0 -x {10.0 9.0 3891 ------- null} r -t 4.4057 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7791 -a 0 -x {9.0 10.0 3900 ------- null} + -t 4.4057 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7791 -a 0 -x {9.0 10.0 3900 ------- null} h -t 4.4057 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7791 -a 0 -x {9.0 10.0 3900 ------- null} r -t 4.4057 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7777 -a 0 -x {9.0 10.0 3893 ------- null} + -t 4.4057 -s 10 -d 7 -p ack -e 40 -c 0 -i 7796 -a 0 -x {10.0 9.0 3893 ------- null} - -t 4.4057 -s 10 -d 7 -p ack -e 40 -c 0 -i 7796 -a 0 -x {10.0 9.0 3893 ------- null} h -t 4.4057 -s 10 -d 7 -p ack -e 40 -c 0 -i 7796 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.40627 -s 0 -d 9 -p ack -e 40 -c 0 -i 7786 -a 0 -x {10.0 9.0 3888 ------- null} + -t 4.40627 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7797 -a 0 -x {9.0 10.0 3903 ------- null} - -t 4.40627 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7797 -a 0 -x {9.0 10.0 3903 ------- null} h -t 4.40627 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7797 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.40643 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7783 -a 0 -x {9.0 10.0 3896 ------- null} - -t 4.40643 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7783 -a 0 -x {9.0 10.0 3896 ------- null} h -t 4.40643 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7783 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.40664 -s 10 -d 7 -p ack -e 40 -c 0 -i 7794 -a 0 -x {10.0 9.0 3892 ------- null} + -t 4.40664 -s 7 -d 0 -p ack -e 40 -c 0 -i 7794 -a 0 -x {10.0 9.0 3892 ------- null} h -t 4.40664 -s 7 -d 8 -p ack -e 40 -c 0 -i 7794 -a 0 -x {10.0 9.0 3892 ------- null} + -t 4.40666 -s 0 -d 9 -p ack -e 40 -c 0 -i 7790 -a 0 -x {10.0 9.0 3890 ------- null} - -t 4.40666 -s 0 -d 9 -p ack -e 40 -c 0 -i 7790 -a 0 -x {10.0 9.0 3890 ------- null} h -t 4.40666 -s 0 -d 9 -p ack -e 40 -c 0 -i 7790 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.40688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7779 -a 0 -x {9.0 10.0 3894 ------- null} + -t 4.40688 -s 10 -d 7 -p ack -e 40 -c 0 -i 7798 -a 0 -x {10.0 9.0 3894 ------- null} - -t 4.40688 -s 10 -d 7 -p ack -e 40 -c 0 -i 7798 -a 0 -x {10.0 9.0 3894 ------- null} h -t 4.40688 -s 10 -d 7 -p ack -e 40 -c 0 -i 7798 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.4069 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7793 -a 0 -x {9.0 10.0 3901 ------- null} + -t 4.4069 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7793 -a 0 -x {9.0 10.0 3901 ------- null} h -t 4.4069 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7793 -a 0 -x {9.0 10.0 3901 ------- null} r -t 4.40747 -s 0 -d 9 -p ack -e 40 -c 0 -i 7788 -a 0 -x {10.0 9.0 3889 ------- null} + -t 4.40747 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7799 -a 0 -x {9.0 10.0 3904 ------- null} - -t 4.40747 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7799 -a 0 -x {9.0 10.0 3904 ------- null} h -t 4.40747 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7799 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.40752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7785 -a 0 -x {9.0 10.0 3897 ------- null} - -t 4.40752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7785 -a 0 -x {9.0 10.0 3897 ------- null} h -t 4.40752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7785 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.40773 -s 10 -d 7 -p ack -e 40 -c 0 -i 7796 -a 0 -x {10.0 9.0 3893 ------- null} + -t 4.40773 -s 7 -d 0 -p ack -e 40 -c 0 -i 7796 -a 0 -x {10.0 9.0 3893 ------- null} h -t 4.40773 -s 7 -d 8 -p ack -e 40 -c 0 -i 7796 -a 0 -x {10.0 9.0 3893 ------- null} + -t 4.40774 -s 0 -d 9 -p ack -e 40 -c 0 -i 7792 -a 0 -x {10.0 9.0 3891 ------- null} - -t 4.40774 -s 0 -d 9 -p ack -e 40 -c 0 -i 7792 -a 0 -x {10.0 9.0 3891 ------- null} h -t 4.40774 -s 0 -d 9 -p ack -e 40 -c 0 -i 7792 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.40797 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7781 -a 0 -x {9.0 10.0 3895 ------- null} + -t 4.40797 -s 10 -d 7 -p ack -e 40 -c 0 -i 7800 -a 0 -x {10.0 9.0 3895 ------- null} - -t 4.40797 -s 10 -d 7 -p ack -e 40 -c 0 -i 7800 -a 0 -x {10.0 9.0 3895 ------- null} h -t 4.40797 -s 10 -d 7 -p ack -e 40 -c 0 -i 7800 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7795 -a 0 -x {9.0 10.0 3902 ------- null} + -t 4.408 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7795 -a 0 -x {9.0 10.0 3902 ------- null} h -t 4.408 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7795 -a 0 -x {9.0 10.0 3902 ------- null} + -t 4.40861 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7787 -a 0 -x {9.0 10.0 3898 ------- null} - -t 4.40861 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7787 -a 0 -x {9.0 10.0 3898 ------- null} h -t 4.40861 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7787 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.40869 -s 0 -d 9 -p ack -e 40 -c 0 -i 7790 -a 0 -x {10.0 9.0 3890 ------- null} + -t 4.40869 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7801 -a 0 -x {9.0 10.0 3905 ------- null} - -t 4.40869 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7801 -a 0 -x {9.0 10.0 3905 ------- null} h -t 4.40869 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7801 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.40869 -s 0 -d 9 -p ack -e 40 -c 0 -i 7794 -a 0 -x {10.0 9.0 3892 ------- null} - -t 4.40869 -s 0 -d 9 -p ack -e 40 -c 0 -i 7794 -a 0 -x {10.0 9.0 3892 ------- null} h -t 4.40869 -s 0 -d 9 -p ack -e 40 -c 0 -i 7794 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.40891 -s 10 -d 7 -p ack -e 40 -c 0 -i 7798 -a 0 -x {10.0 9.0 3894 ------- null} + -t 4.40891 -s 7 -d 0 -p ack -e 40 -c 0 -i 7798 -a 0 -x {10.0 9.0 3894 ------- null} h -t 4.40891 -s 7 -d 8 -p ack -e 40 -c 0 -i 7798 -a 0 -x {10.0 9.0 3894 ------- null} r -t 4.40907 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7797 -a 0 -x {9.0 10.0 3903 ------- null} + -t 4.40907 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7797 -a 0 -x {9.0 10.0 3903 ------- null} h -t 4.40907 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7797 -a 0 -x {9.0 10.0 3903 ------- null} r -t 4.40923 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7783 -a 0 -x {9.0 10.0 3896 ------- null} + -t 4.40923 -s 10 -d 7 -p ack -e 40 -c 0 -i 7802 -a 0 -x {10.0 9.0 3896 ------- null} - -t 4.40923 -s 10 -d 7 -p ack -e 40 -c 0 -i 7802 -a 0 -x {10.0 9.0 3896 ------- null} h -t 4.40923 -s 10 -d 7 -p ack -e 40 -c 0 -i 7802 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.4097 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7789 -a 0 -x {9.0 10.0 3899 ------- null} - -t 4.4097 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7789 -a 0 -x {9.0 10.0 3899 ------- null} h -t 4.4097 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7789 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.40978 -s 0 -d 9 -p ack -e 40 -c 0 -i 7792 -a 0 -x {10.0 9.0 3891 ------- null} + -t 4.40978 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7803 -a 0 -x {9.0 10.0 3906 ------- null} - -t 4.40978 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7803 -a 0 -x {9.0 10.0 3906 ------- null} h -t 4.40978 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7803 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.41 -s 0 -d 9 -p ack -e 40 -c 0 -i 7796 -a 0 -x {10.0 9.0 3893 ------- null} - -t 4.41 -s 0 -d 9 -p ack -e 40 -c 0 -i 7796 -a 0 -x {10.0 9.0 3893 ------- null} h -t 4.41 -s 0 -d 9 -p ack -e 40 -c 0 -i 7796 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.41 -s 10 -d 7 -p ack -e 40 -c 0 -i 7800 -a 0 -x {10.0 9.0 3895 ------- null} + -t 4.41 -s 7 -d 0 -p ack -e 40 -c 0 -i 7800 -a 0 -x {10.0 9.0 3895 ------- null} h -t 4.41 -s 7 -d 8 -p ack -e 40 -c 0 -i 7800 -a 0 -x {10.0 9.0 3895 ------- null} r -t 4.41027 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7799 -a 0 -x {9.0 10.0 3904 ------- null} + -t 4.41027 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7799 -a 0 -x {9.0 10.0 3904 ------- null} h -t 4.41027 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7799 -a 0 -x {9.0 10.0 3904 ------- null} r -t 4.41032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7785 -a 0 -x {9.0 10.0 3897 ------- null} + -t 4.41032 -s 10 -d 7 -p ack -e 40 -c 0 -i 7804 -a 0 -x {10.0 9.0 3897 ------- null} - -t 4.41032 -s 10 -d 7 -p ack -e 40 -c 0 -i 7804 -a 0 -x {10.0 9.0 3897 ------- null} h -t 4.41032 -s 10 -d 7 -p ack -e 40 -c 0 -i 7804 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.41072 -s 0 -d 9 -p ack -e 40 -c 0 -i 7794 -a 0 -x {10.0 9.0 3892 ------- null} + -t 4.41072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7805 -a 0 -x {9.0 10.0 3907 ------- null} - -t 4.41072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7805 -a 0 -x {9.0 10.0 3907 ------- null} h -t 4.41072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7805 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.41101 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7791 -a 0 -x {9.0 10.0 3900 ------- null} - -t 4.41101 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7791 -a 0 -x {9.0 10.0 3900 ------- null} h -t 4.41101 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7791 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.41125 -s 0 -d 9 -p ack -e 40 -c 0 -i 7798 -a 0 -x {10.0 9.0 3894 ------- null} - -t 4.41125 -s 0 -d 9 -p ack -e 40 -c 0 -i 7798 -a 0 -x {10.0 9.0 3894 ------- null} h -t 4.41125 -s 0 -d 9 -p ack -e 40 -c 0 -i 7798 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.41126 -s 10 -d 7 -p ack -e 40 -c 0 -i 7802 -a 0 -x {10.0 9.0 3896 ------- null} + -t 4.41126 -s 7 -d 0 -p ack -e 40 -c 0 -i 7802 -a 0 -x {10.0 9.0 3896 ------- null} h -t 4.41126 -s 7 -d 8 -p ack -e 40 -c 0 -i 7802 -a 0 -x {10.0 9.0 3896 ------- null} r -t 4.41141 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7787 -a 0 -x {9.0 10.0 3898 ------- null} + -t 4.41141 -s 10 -d 7 -p ack -e 40 -c 0 -i 7806 -a 0 -x {10.0 9.0 3898 ------- null} - -t 4.41141 -s 10 -d 7 -p ack -e 40 -c 0 -i 7806 -a 0 -x {10.0 9.0 3898 ------- null} h -t 4.41141 -s 10 -d 7 -p ack -e 40 -c 0 -i 7806 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.41149 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7801 -a 0 -x {9.0 10.0 3905 ------- null} + -t 4.41149 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7801 -a 0 -x {9.0 10.0 3905 ------- null} h -t 4.41149 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7801 -a 0 -x {9.0 10.0 3905 ------- null} r -t 4.41203 -s 0 -d 9 -p ack -e 40 -c 0 -i 7796 -a 0 -x {10.0 9.0 3893 ------- null} + -t 4.41203 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7807 -a 0 -x {9.0 10.0 3908 ------- null} - -t 4.41203 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7807 -a 0 -x {9.0 10.0 3908 ------- null} h -t 4.41203 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7807 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.4121 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7793 -a 0 -x {9.0 10.0 3901 ------- null} - -t 4.4121 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7793 -a 0 -x {9.0 10.0 3901 ------- null} h -t 4.4121 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7793 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.41235 -s 10 -d 7 -p ack -e 40 -c 0 -i 7804 -a 0 -x {10.0 9.0 3897 ------- null} + -t 4.41235 -s 7 -d 0 -p ack -e 40 -c 0 -i 7804 -a 0 -x {10.0 9.0 3897 ------- null} h -t 4.41235 -s 7 -d 8 -p ack -e 40 -c 0 -i 7804 -a 0 -x {10.0 9.0 3897 ------- null} + -t 4.41238 -s 0 -d 9 -p ack -e 40 -c 0 -i 7800 -a 0 -x {10.0 9.0 3895 ------- null} - -t 4.41238 -s 0 -d 9 -p ack -e 40 -c 0 -i 7800 -a 0 -x {10.0 9.0 3895 ------- null} h -t 4.41238 -s 0 -d 9 -p ack -e 40 -c 0 -i 7800 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.4125 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7789 -a 0 -x {9.0 10.0 3899 ------- null} + -t 4.4125 -s 10 -d 7 -p ack -e 40 -c 0 -i 7808 -a 0 -x {10.0 9.0 3899 ------- null} - -t 4.4125 -s 10 -d 7 -p ack -e 40 -c 0 -i 7808 -a 0 -x {10.0 9.0 3899 ------- null} h -t 4.4125 -s 10 -d 7 -p ack -e 40 -c 0 -i 7808 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.41258 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7803 -a 0 -x {9.0 10.0 3906 ------- null} + -t 4.41258 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7803 -a 0 -x {9.0 10.0 3906 ------- null} h -t 4.41258 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7803 -a 0 -x {9.0 10.0 3906 ------- null} r -t 4.41328 -s 0 -d 9 -p ack -e 40 -c 0 -i 7798 -a 0 -x {10.0 9.0 3894 ------- null} + -t 4.41328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7809 -a 0 -x {9.0 10.0 3909 ------- null} - -t 4.41328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7809 -a 0 -x {9.0 10.0 3909 ------- null} h -t 4.41328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7809 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.41341 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7795 -a 0 -x {9.0 10.0 3902 ------- null} - -t 4.41341 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7795 -a 0 -x {9.0 10.0 3902 ------- null} h -t 4.41341 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7795 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.41344 -s 10 -d 7 -p ack -e 40 -c 0 -i 7806 -a 0 -x {10.0 9.0 3898 ------- null} + -t 4.41344 -s 7 -d 0 -p ack -e 40 -c 0 -i 7806 -a 0 -x {10.0 9.0 3898 ------- null} h -t 4.41344 -s 7 -d 8 -p ack -e 40 -c 0 -i 7806 -a 0 -x {10.0 9.0 3898 ------- null} r -t 4.41352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7805 -a 0 -x {9.0 10.0 3907 ------- null} + -t 4.41352 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7805 -a 0 -x {9.0 10.0 3907 ------- null} h -t 4.41352 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7805 -a 0 -x {9.0 10.0 3907 ------- null} + -t 4.4137 -s 0 -d 9 -p ack -e 40 -c 0 -i 7802 -a 0 -x {10.0 9.0 3896 ------- null} - -t 4.4137 -s 0 -d 9 -p ack -e 40 -c 0 -i 7802 -a 0 -x {10.0 9.0 3896 ------- null} h -t 4.4137 -s 0 -d 9 -p ack -e 40 -c 0 -i 7802 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.41381 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7791 -a 0 -x {9.0 10.0 3900 ------- null} + -t 4.41381 -s 10 -d 7 -p ack -e 40 -c 0 -i 7810 -a 0 -x {10.0 9.0 3900 ------- null} - -t 4.41381 -s 10 -d 7 -p ack -e 40 -c 0 -i 7810 -a 0 -x {10.0 9.0 3900 ------- null} h -t 4.41381 -s 10 -d 7 -p ack -e 40 -c 0 -i 7810 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.41442 -s 0 -d 9 -p ack -e 40 -c 0 -i 7800 -a 0 -x {10.0 9.0 3895 ------- null} + -t 4.41442 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7811 -a 0 -x {9.0 10.0 3910 ------- null} - -t 4.41442 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7811 -a 0 -x {9.0 10.0 3910 ------- null} h -t 4.41442 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7811 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.41453 -s 10 -d 7 -p ack -e 40 -c 0 -i 7808 -a 0 -x {10.0 9.0 3899 ------- null} + -t 4.41453 -s 7 -d 0 -p ack -e 40 -c 0 -i 7808 -a 0 -x {10.0 9.0 3899 ------- null} h -t 4.41453 -s 7 -d 8 -p ack -e 40 -c 0 -i 7808 -a 0 -x {10.0 9.0 3899 ------- null} + -t 4.41462 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7797 -a 0 -x {9.0 10.0 3903 ------- null} - -t 4.41462 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7797 -a 0 -x {9.0 10.0 3903 ------- null} h -t 4.41462 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7797 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.41474 -s 0 -d 9 -p ack -e 40 -c 0 -i 7804 -a 0 -x {10.0 9.0 3897 ------- null} - -t 4.41474 -s 0 -d 9 -p ack -e 40 -c 0 -i 7804 -a 0 -x {10.0 9.0 3897 ------- null} h -t 4.41474 -s 0 -d 9 -p ack -e 40 -c 0 -i 7804 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.41483 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7807 -a 0 -x {9.0 10.0 3908 ------- null} + -t 4.41483 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7807 -a 0 -x {9.0 10.0 3908 ------- null} h -t 4.41483 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7807 -a 0 -x {9.0 10.0 3908 ------- null} r -t 4.4149 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7793 -a 0 -x {9.0 10.0 3901 ------- null} + -t 4.4149 -s 10 -d 7 -p ack -e 40 -c 0 -i 7812 -a 0 -x {10.0 9.0 3901 ------- null} - -t 4.4149 -s 10 -d 7 -p ack -e 40 -c 0 -i 7812 -a 0 -x {10.0 9.0 3901 ------- null} h -t 4.4149 -s 10 -d 7 -p ack -e 40 -c 0 -i 7812 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.41571 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7799 -a 0 -x {9.0 10.0 3904 ------- null} - -t 4.41571 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7799 -a 0 -x {9.0 10.0 3904 ------- null} h -t 4.41571 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7799 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.41573 -s 0 -d 9 -p ack -e 40 -c 0 -i 7802 -a 0 -x {10.0 9.0 3896 ------- null} + -t 4.41573 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7813 -a 0 -x {9.0 10.0 3911 ------- null} - -t 4.41573 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7813 -a 0 -x {9.0 10.0 3911 ------- null} h -t 4.41573 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7813 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.41584 -s 10 -d 7 -p ack -e 40 -c 0 -i 7810 -a 0 -x {10.0 9.0 3900 ------- null} + -t 4.41584 -s 7 -d 0 -p ack -e 40 -c 0 -i 7810 -a 0 -x {10.0 9.0 3900 ------- null} h -t 4.41584 -s 7 -d 8 -p ack -e 40 -c 0 -i 7810 -a 0 -x {10.0 9.0 3900 ------- null} + -t 4.41597 -s 0 -d 9 -p ack -e 40 -c 0 -i 7806 -a 0 -x {10.0 9.0 3898 ------- null} - -t 4.41597 -s 0 -d 9 -p ack -e 40 -c 0 -i 7806 -a 0 -x {10.0 9.0 3898 ------- null} h -t 4.41597 -s 0 -d 9 -p ack -e 40 -c 0 -i 7806 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.41608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7809 -a 0 -x {9.0 10.0 3909 ------- null} + -t 4.41608 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7809 -a 0 -x {9.0 10.0 3909 ------- null} h -t 4.41608 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7809 -a 0 -x {9.0 10.0 3909 ------- null} r -t 4.41621 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7795 -a 0 -x {9.0 10.0 3902 ------- null} + -t 4.41621 -s 10 -d 7 -p ack -e 40 -c 0 -i 7814 -a 0 -x {10.0 9.0 3902 ------- null} - -t 4.41621 -s 10 -d 7 -p ack -e 40 -c 0 -i 7814 -a 0 -x {10.0 9.0 3902 ------- null} h -t 4.41621 -s 10 -d 7 -p ack -e 40 -c 0 -i 7814 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.41677 -s 0 -d 9 -p ack -e 40 -c 0 -i 7804 -a 0 -x {10.0 9.0 3897 ------- null} + -t 4.41677 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7815 -a 0 -x {9.0 10.0 3912 ------- null} - -t 4.41677 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7815 -a 0 -x {9.0 10.0 3912 ------- null} h -t 4.41677 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7815 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.4168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7801 -a 0 -x {9.0 10.0 3905 ------- null} - -t 4.4168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7801 -a 0 -x {9.0 10.0 3905 ------- null} h -t 4.4168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7801 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.41693 -s 10 -d 7 -p ack -e 40 -c 0 -i 7812 -a 0 -x {10.0 9.0 3901 ------- null} + -t 4.41693 -s 7 -d 0 -p ack -e 40 -c 0 -i 7812 -a 0 -x {10.0 9.0 3901 ------- null} h -t 4.41693 -s 7 -d 8 -p ack -e 40 -c 0 -i 7812 -a 0 -x {10.0 9.0 3901 ------- null} + -t 4.41696 -s 0 -d 9 -p ack -e 40 -c 0 -i 7808 -a 0 -x {10.0 9.0 3899 ------- null} - -t 4.41696 -s 0 -d 9 -p ack -e 40 -c 0 -i 7808 -a 0 -x {10.0 9.0 3899 ------- null} h -t 4.41696 -s 0 -d 9 -p ack -e 40 -c 0 -i 7808 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.41722 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7811 -a 0 -x {9.0 10.0 3910 ------- null} + -t 4.41722 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7811 -a 0 -x {9.0 10.0 3910 ------- null} h -t 4.41722 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7811 -a 0 -x {9.0 10.0 3910 ------- null} r -t 4.41742 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7797 -a 0 -x {9.0 10.0 3903 ------- null} + -t 4.41742 -s 10 -d 7 -p ack -e 40 -c 0 -i 7816 -a 0 -x {10.0 9.0 3903 ------- null} - -t 4.41742 -s 10 -d 7 -p ack -e 40 -c 0 -i 7816 -a 0 -x {10.0 9.0 3903 ------- null} h -t 4.41742 -s 10 -d 7 -p ack -e 40 -c 0 -i 7816 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.41789 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7803 -a 0 -x {9.0 10.0 3906 ------- null} - -t 4.41789 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7803 -a 0 -x {9.0 10.0 3906 ------- null} h -t 4.41789 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7803 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.418 -s 0 -d 9 -p ack -e 40 -c 0 -i 7806 -a 0 -x {10.0 9.0 3898 ------- null} + -t 4.418 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7817 -a 0 -x {9.0 10.0 3913 ------- null} - -t 4.418 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7817 -a 0 -x {9.0 10.0 3913 ------- null} h -t 4.418 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7817 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.4181 -s 0 -d 9 -p ack -e 40 -c 0 -i 7810 -a 0 -x {10.0 9.0 3900 ------- null} - -t 4.4181 -s 0 -d 9 -p ack -e 40 -c 0 -i 7810 -a 0 -x {10.0 9.0 3900 ------- null} h -t 4.4181 -s 0 -d 9 -p ack -e 40 -c 0 -i 7810 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.41824 -s 10 -d 7 -p ack -e 40 -c 0 -i 7814 -a 0 -x {10.0 9.0 3902 ------- null} + -t 4.41824 -s 7 -d 0 -p ack -e 40 -c 0 -i 7814 -a 0 -x {10.0 9.0 3902 ------- null} h -t 4.41824 -s 7 -d 8 -p ack -e 40 -c 0 -i 7814 -a 0 -x {10.0 9.0 3902 ------- null} r -t 4.41851 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7799 -a 0 -x {9.0 10.0 3904 ------- null} + -t 4.41851 -s 10 -d 7 -p ack -e 40 -c 0 -i 7818 -a 0 -x {10.0 9.0 3904 ------- null} - -t 4.41851 -s 10 -d 7 -p ack -e 40 -c 0 -i 7818 -a 0 -x {10.0 9.0 3904 ------- null} h -t 4.41851 -s 10 -d 7 -p ack -e 40 -c 0 -i 7818 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.41853 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7813 -a 0 -x {9.0 10.0 3911 ------- null} + -t 4.41853 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7813 -a 0 -x {9.0 10.0 3911 ------- null} h -t 4.41853 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7813 -a 0 -x {9.0 10.0 3911 ------- null} + -t 4.41898 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7805 -a 0 -x {9.0 10.0 3907 ------- null} - -t 4.41898 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7805 -a 0 -x {9.0 10.0 3907 ------- null} h -t 4.41898 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7805 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.41899 -s 0 -d 9 -p ack -e 40 -c 0 -i 7808 -a 0 -x {10.0 9.0 3899 ------- null} + -t 4.41899 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7819 -a 0 -x {9.0 10.0 3914 ------- null} - -t 4.41899 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7819 -a 0 -x {9.0 10.0 3914 ------- null} h -t 4.41899 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7819 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.41906 -s 0 -d 9 -p ack -e 40 -c 0 -i 7812 -a 0 -x {10.0 9.0 3901 ------- null} - -t 4.41906 -s 0 -d 9 -p ack -e 40 -c 0 -i 7812 -a 0 -x {10.0 9.0 3901 ------- null} h -t 4.41906 -s 0 -d 9 -p ack -e 40 -c 0 -i 7812 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.41946 -s 10 -d 7 -p ack -e 40 -c 0 -i 7816 -a 0 -x {10.0 9.0 3903 ------- null} + -t 4.41946 -s 7 -d 0 -p ack -e 40 -c 0 -i 7816 -a 0 -x {10.0 9.0 3903 ------- null} h -t 4.41946 -s 7 -d 8 -p ack -e 40 -c 0 -i 7816 -a 0 -x {10.0 9.0 3903 ------- null} r -t 4.41957 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7815 -a 0 -x {9.0 10.0 3912 ------- null} + -t 4.41957 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7815 -a 0 -x {9.0 10.0 3912 ------- null} h -t 4.41957 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7815 -a 0 -x {9.0 10.0 3912 ------- null} r -t 4.4196 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7801 -a 0 -x {9.0 10.0 3905 ------- null} + -t 4.4196 -s 10 -d 7 -p ack -e 40 -c 0 -i 7820 -a 0 -x {10.0 9.0 3905 ------- null} - -t 4.4196 -s 10 -d 7 -p ack -e 40 -c 0 -i 7820 -a 0 -x {10.0 9.0 3905 ------- null} h -t 4.4196 -s 10 -d 7 -p ack -e 40 -c 0 -i 7820 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.42006 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7807 -a 0 -x {9.0 10.0 3908 ------- null} - -t 4.42006 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7807 -a 0 -x {9.0 10.0 3908 ------- null} h -t 4.42006 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7807 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.42013 -s 0 -d 9 -p ack -e 40 -c 0 -i 7810 -a 0 -x {10.0 9.0 3900 ------- null} + -t 4.42013 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7821 -a 0 -x {9.0 10.0 3915 ------- null} - -t 4.42013 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7821 -a 0 -x {9.0 10.0 3915 ------- null} h -t 4.42013 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7821 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.42024 -s 0 -d 9 -p ack -e 40 -c 0 -i 7814 -a 0 -x {10.0 9.0 3902 ------- null} - -t 4.42024 -s 0 -d 9 -p ack -e 40 -c 0 -i 7814 -a 0 -x {10.0 9.0 3902 ------- null} h -t 4.42024 -s 0 -d 9 -p ack -e 40 -c 0 -i 7814 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.42054 -s 10 -d 7 -p ack -e 40 -c 0 -i 7818 -a 0 -x {10.0 9.0 3904 ------- null} + -t 4.42054 -s 7 -d 0 -p ack -e 40 -c 0 -i 7818 -a 0 -x {10.0 9.0 3904 ------- null} h -t 4.42054 -s 7 -d 8 -p ack -e 40 -c 0 -i 7818 -a 0 -x {10.0 9.0 3904 ------- null} r -t 4.42069 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7803 -a 0 -x {9.0 10.0 3906 ------- null} + -t 4.42069 -s 10 -d 7 -p ack -e 40 -c 0 -i 7822 -a 0 -x {10.0 9.0 3906 ------- null} - -t 4.42069 -s 10 -d 7 -p ack -e 40 -c 0 -i 7822 -a 0 -x {10.0 9.0 3906 ------- null} h -t 4.42069 -s 10 -d 7 -p ack -e 40 -c 0 -i 7822 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.4208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7817 -a 0 -x {9.0 10.0 3913 ------- null} + -t 4.4208 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7817 -a 0 -x {9.0 10.0 3913 ------- null} h -t 4.4208 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7817 -a 0 -x {9.0 10.0 3913 ------- null} r -t 4.42109 -s 0 -d 9 -p ack -e 40 -c 0 -i 7812 -a 0 -x {10.0 9.0 3901 ------- null} + -t 4.42109 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7823 -a 0 -x {9.0 10.0 3916 ------- null} - -t 4.42109 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7823 -a 0 -x {9.0 10.0 3916 ------- null} h -t 4.42109 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7823 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.42115 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7809 -a 0 -x {9.0 10.0 3909 ------- null} - -t 4.42115 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7809 -a 0 -x {9.0 10.0 3909 ------- null} h -t 4.42115 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7809 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.42125 -s 0 -d 9 -p ack -e 40 -c 0 -i 7816 -a 0 -x {10.0 9.0 3903 ------- null} - -t 4.42125 -s 0 -d 9 -p ack -e 40 -c 0 -i 7816 -a 0 -x {10.0 9.0 3903 ------- null} h -t 4.42125 -s 0 -d 9 -p ack -e 40 -c 0 -i 7816 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.42163 -s 10 -d 7 -p ack -e 40 -c 0 -i 7820 -a 0 -x {10.0 9.0 3905 ------- null} + -t 4.42163 -s 7 -d 0 -p ack -e 40 -c 0 -i 7820 -a 0 -x {10.0 9.0 3905 ------- null} h -t 4.42163 -s 7 -d 8 -p ack -e 40 -c 0 -i 7820 -a 0 -x {10.0 9.0 3905 ------- null} r -t 4.42178 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7805 -a 0 -x {9.0 10.0 3907 ------- null} + -t 4.42178 -s 10 -d 7 -p ack -e 40 -c 0 -i 7824 -a 0 -x {10.0 9.0 3907 ------- null} - -t 4.42178 -s 10 -d 7 -p ack -e 40 -c 0 -i 7824 -a 0 -x {10.0 9.0 3907 ------- null} h -t 4.42178 -s 10 -d 7 -p ack -e 40 -c 0 -i 7824 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.42179 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7819 -a 0 -x {9.0 10.0 3914 ------- null} + -t 4.42179 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7819 -a 0 -x {9.0 10.0 3914 ------- null} h -t 4.42179 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7819 -a 0 -x {9.0 10.0 3914 ------- null} + -t 4.42224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7811 -a 0 -x {9.0 10.0 3910 ------- null} - -t 4.42224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7811 -a 0 -x {9.0 10.0 3910 ------- null} h -t 4.42224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7811 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.42227 -s 0 -d 9 -p ack -e 40 -c 0 -i 7814 -a 0 -x {10.0 9.0 3902 ------- null} + -t 4.42227 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7825 -a 0 -x {9.0 10.0 3917 ------- null} - -t 4.42227 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7825 -a 0 -x {9.0 10.0 3917 ------- null} h -t 4.42227 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7825 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.42234 -s 0 -d 9 -p ack -e 40 -c 0 -i 7818 -a 0 -x {10.0 9.0 3904 ------- null} - -t 4.42234 -s 0 -d 9 -p ack -e 40 -c 0 -i 7818 -a 0 -x {10.0 9.0 3904 ------- null} h -t 4.42234 -s 0 -d 9 -p ack -e 40 -c 0 -i 7818 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.42272 -s 10 -d 7 -p ack -e 40 -c 0 -i 7822 -a 0 -x {10.0 9.0 3906 ------- null} + -t 4.42272 -s 7 -d 0 -p ack -e 40 -c 0 -i 7822 -a 0 -x {10.0 9.0 3906 ------- null} h -t 4.42272 -s 7 -d 8 -p ack -e 40 -c 0 -i 7822 -a 0 -x {10.0 9.0 3906 ------- null} r -t 4.42286 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7807 -a 0 -x {9.0 10.0 3908 ------- null} + -t 4.42286 -s 10 -d 7 -p ack -e 40 -c 0 -i 7826 -a 0 -x {10.0 9.0 3908 ------- null} - -t 4.42286 -s 10 -d 7 -p ack -e 40 -c 0 -i 7826 -a 0 -x {10.0 9.0 3908 ------- null} h -t 4.42286 -s 10 -d 7 -p ack -e 40 -c 0 -i 7826 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.42293 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7821 -a 0 -x {9.0 10.0 3915 ------- null} + -t 4.42293 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7821 -a 0 -x {9.0 10.0 3915 ------- null} h -t 4.42293 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7821 -a 0 -x {9.0 10.0 3915 ------- null} r -t 4.42328 -s 0 -d 9 -p ack -e 40 -c 0 -i 7816 -a 0 -x {10.0 9.0 3903 ------- null} + -t 4.42328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7827 -a 0 -x {9.0 10.0 3918 ------- null} - -t 4.42328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7827 -a 0 -x {9.0 10.0 3918 ------- null} h -t 4.42328 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7827 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.42333 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7813 -a 0 -x {9.0 10.0 3911 ------- null} - -t 4.42333 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7813 -a 0 -x {9.0 10.0 3911 ------- null} h -t 4.42333 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7813 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.42349 -s 0 -d 9 -p ack -e 40 -c 0 -i 7820 -a 0 -x {10.0 9.0 3905 ------- null} - -t 4.42349 -s 0 -d 9 -p ack -e 40 -c 0 -i 7820 -a 0 -x {10.0 9.0 3905 ------- null} h -t 4.42349 -s 0 -d 9 -p ack -e 40 -c 0 -i 7820 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.42381 -s 10 -d 7 -p ack -e 40 -c 0 -i 7824 -a 0 -x {10.0 9.0 3907 ------- null} + -t 4.42381 -s 7 -d 0 -p ack -e 40 -c 0 -i 7824 -a 0 -x {10.0 9.0 3907 ------- null} h -t 4.42381 -s 7 -d 8 -p ack -e 40 -c 0 -i 7824 -a 0 -x {10.0 9.0 3907 ------- null} r -t 4.42389 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7823 -a 0 -x {9.0 10.0 3916 ------- null} + -t 4.42389 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7823 -a 0 -x {9.0 10.0 3916 ------- null} h -t 4.42389 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7823 -a 0 -x {9.0 10.0 3916 ------- null} r -t 4.42395 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7809 -a 0 -x {9.0 10.0 3909 ------- null} + -t 4.42395 -s 10 -d 7 -p ack -e 40 -c 0 -i 7828 -a 0 -x {10.0 9.0 3909 ------- null} - -t 4.42395 -s 10 -d 7 -p ack -e 40 -c 0 -i 7828 -a 0 -x {10.0 9.0 3909 ------- null} h -t 4.42395 -s 10 -d 7 -p ack -e 40 -c 0 -i 7828 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.42437 -s 0 -d 9 -p ack -e 40 -c 0 -i 7818 -a 0 -x {10.0 9.0 3904 ------- null} + -t 4.42437 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7829 -a 0 -x {9.0 10.0 3919 ------- null} - -t 4.42437 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7829 -a 0 -x {9.0 10.0 3919 ------- null} h -t 4.42437 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7829 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.42442 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7815 -a 0 -x {9.0 10.0 3912 ------- null} - -t 4.42442 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7815 -a 0 -x {9.0 10.0 3912 ------- null} h -t 4.42442 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7815 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.42458 -s 0 -d 9 -p ack -e 40 -c 0 -i 7822 -a 0 -x {10.0 9.0 3906 ------- null} - -t 4.42458 -s 0 -d 9 -p ack -e 40 -c 0 -i 7822 -a 0 -x {10.0 9.0 3906 ------- null} h -t 4.42458 -s 0 -d 9 -p ack -e 40 -c 0 -i 7822 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.4249 -s 10 -d 7 -p ack -e 40 -c 0 -i 7826 -a 0 -x {10.0 9.0 3908 ------- null} + -t 4.4249 -s 7 -d 0 -p ack -e 40 -c 0 -i 7826 -a 0 -x {10.0 9.0 3908 ------- null} h -t 4.4249 -s 7 -d 8 -p ack -e 40 -c 0 -i 7826 -a 0 -x {10.0 9.0 3908 ------- null} r -t 4.42504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7811 -a 0 -x {9.0 10.0 3910 ------- null} + -t 4.42504 -s 10 -d 7 -p ack -e 40 -c 0 -i 7830 -a 0 -x {10.0 9.0 3910 ------- null} - -t 4.42504 -s 10 -d 7 -p ack -e 40 -c 0 -i 7830 -a 0 -x {10.0 9.0 3910 ------- null} h -t 4.42504 -s 10 -d 7 -p ack -e 40 -c 0 -i 7830 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.42507 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7825 -a 0 -x {9.0 10.0 3917 ------- null} + -t 4.42507 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7825 -a 0 -x {9.0 10.0 3917 ------- null} h -t 4.42507 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7825 -a 0 -x {9.0 10.0 3917 ------- null} + -t 4.4255 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7817 -a 0 -x {9.0 10.0 3913 ------- null} - -t 4.4255 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7817 -a 0 -x {9.0 10.0 3913 ------- null} h -t 4.4255 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7817 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.42552 -s 0 -d 9 -p ack -e 40 -c 0 -i 7820 -a 0 -x {10.0 9.0 3905 ------- null} + -t 4.42552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7831 -a 0 -x {9.0 10.0 3920 ------- null} - -t 4.42552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7831 -a 0 -x {9.0 10.0 3920 ------- null} h -t 4.42552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7831 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.42563 -s 0 -d 9 -p ack -e 40 -c 0 -i 7824 -a 0 -x {10.0 9.0 3907 ------- null} - -t 4.42563 -s 0 -d 9 -p ack -e 40 -c 0 -i 7824 -a 0 -x {10.0 9.0 3907 ------- null} h -t 4.42563 -s 0 -d 9 -p ack -e 40 -c 0 -i 7824 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.42598 -s 10 -d 7 -p ack -e 40 -c 0 -i 7828 -a 0 -x {10.0 9.0 3909 ------- null} + -t 4.42598 -s 7 -d 0 -p ack -e 40 -c 0 -i 7828 -a 0 -x {10.0 9.0 3909 ------- null} h -t 4.42598 -s 7 -d 8 -p ack -e 40 -c 0 -i 7828 -a 0 -x {10.0 9.0 3909 ------- null} r -t 4.42608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7827 -a 0 -x {9.0 10.0 3918 ------- null} + -t 4.42608 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7827 -a 0 -x {9.0 10.0 3918 ------- null} h -t 4.42608 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7827 -a 0 -x {9.0 10.0 3918 ------- null} r -t 4.42613 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7813 -a 0 -x {9.0 10.0 3911 ------- null} + -t 4.42613 -s 10 -d 7 -p ack -e 40 -c 0 -i 7832 -a 0 -x {10.0 9.0 3911 ------- null} - -t 4.42613 -s 10 -d 7 -p ack -e 40 -c 0 -i 7832 -a 0 -x {10.0 9.0 3911 ------- null} h -t 4.42613 -s 10 -d 7 -p ack -e 40 -c 0 -i 7832 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.42659 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7819 -a 0 -x {9.0 10.0 3914 ------- null} - -t 4.42659 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7819 -a 0 -x {9.0 10.0 3914 ------- null} h -t 4.42659 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7819 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.42661 -s 0 -d 9 -p ack -e 40 -c 0 -i 7822 -a 0 -x {10.0 9.0 3906 ------- null} + -t 4.42661 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7833 -a 0 -x {9.0 10.0 3921 ------- null} - -t 4.42661 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7833 -a 0 -x {9.0 10.0 3921 ------- null} h -t 4.42661 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7833 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.42682 -s 0 -d 9 -p ack -e 40 -c 0 -i 7826 -a 0 -x {10.0 9.0 3908 ------- null} - -t 4.42682 -s 0 -d 9 -p ack -e 40 -c 0 -i 7826 -a 0 -x {10.0 9.0 3908 ------- null} h -t 4.42682 -s 0 -d 9 -p ack -e 40 -c 0 -i 7826 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.42707 -s 10 -d 7 -p ack -e 40 -c 0 -i 7830 -a 0 -x {10.0 9.0 3910 ------- null} + -t 4.42707 -s 7 -d 0 -p ack -e 40 -c 0 -i 7830 -a 0 -x {10.0 9.0 3910 ------- null} h -t 4.42707 -s 7 -d 8 -p ack -e 40 -c 0 -i 7830 -a 0 -x {10.0 9.0 3910 ------- null} r -t 4.42717 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7829 -a 0 -x {9.0 10.0 3919 ------- null} + -t 4.42717 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7829 -a 0 -x {9.0 10.0 3919 ------- null} h -t 4.42717 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7829 -a 0 -x {9.0 10.0 3919 ------- null} r -t 4.42722 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7815 -a 0 -x {9.0 10.0 3912 ------- null} + -t 4.42722 -s 10 -d 7 -p ack -e 40 -c 0 -i 7834 -a 0 -x {10.0 9.0 3912 ------- null} - -t 4.42722 -s 10 -d 7 -p ack -e 40 -c 0 -i 7834 -a 0 -x {10.0 9.0 3912 ------- null} h -t 4.42722 -s 10 -d 7 -p ack -e 40 -c 0 -i 7834 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.42766 -s 0 -d 9 -p ack -e 40 -c 0 -i 7824 -a 0 -x {10.0 9.0 3907 ------- null} + -t 4.42766 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7835 -a 0 -x {9.0 10.0 3922 ------- null} - -t 4.42766 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7835 -a 0 -x {9.0 10.0 3922 ------- null} h -t 4.42766 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7835 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.42768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7821 -a 0 -x {9.0 10.0 3915 ------- null} - -t 4.42768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7821 -a 0 -x {9.0 10.0 3915 ------- null} h -t 4.42768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7821 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.42774 -s 0 -d 9 -p ack -e 40 -c 0 -i 7828 -a 0 -x {10.0 9.0 3909 ------- null} - -t 4.42774 -s 0 -d 9 -p ack -e 40 -c 0 -i 7828 -a 0 -x {10.0 9.0 3909 ------- null} h -t 4.42774 -s 0 -d 9 -p ack -e 40 -c 0 -i 7828 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.42816 -s 10 -d 7 -p ack -e 40 -c 0 -i 7832 -a 0 -x {10.0 9.0 3911 ------- null} + -t 4.42816 -s 7 -d 0 -p ack -e 40 -c 0 -i 7832 -a 0 -x {10.0 9.0 3911 ------- null} h -t 4.42816 -s 7 -d 8 -p ack -e 40 -c 0 -i 7832 -a 0 -x {10.0 9.0 3911 ------- null} r -t 4.4283 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7817 -a 0 -x {9.0 10.0 3913 ------- null} + -t 4.4283 -s 10 -d 7 -p ack -e 40 -c 0 -i 7836 -a 0 -x {10.0 9.0 3913 ------- null} - -t 4.4283 -s 10 -d 7 -p ack -e 40 -c 0 -i 7836 -a 0 -x {10.0 9.0 3913 ------- null} h -t 4.4283 -s 10 -d 7 -p ack -e 40 -c 0 -i 7836 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.42832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7831 -a 0 -x {9.0 10.0 3920 ------- null} + -t 4.42832 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7831 -a 0 -x {9.0 10.0 3920 ------- null} h -t 4.42832 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7831 -a 0 -x {9.0 10.0 3920 ------- null} + -t 4.42877 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7823 -a 0 -x {9.0 10.0 3916 ------- null} - -t 4.42877 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7823 -a 0 -x {9.0 10.0 3916 ------- null} h -t 4.42877 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7823 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.42885 -s 0 -d 9 -p ack -e 40 -c 0 -i 7826 -a 0 -x {10.0 9.0 3908 ------- null} + -t 4.42885 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7837 -a 0 -x {9.0 10.0 3923 ------- null} - -t 4.42885 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7837 -a 0 -x {9.0 10.0 3923 ------- null} h -t 4.42885 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7837 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.42904 -s 0 -d 9 -p ack -e 40 -c 0 -i 7830 -a 0 -x {10.0 9.0 3910 ------- null} - -t 4.42904 -s 0 -d 9 -p ack -e 40 -c 0 -i 7830 -a 0 -x {10.0 9.0 3910 ------- null} h -t 4.42904 -s 0 -d 9 -p ack -e 40 -c 0 -i 7830 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.42925 -s 10 -d 7 -p ack -e 40 -c 0 -i 7834 -a 0 -x {10.0 9.0 3912 ------- null} + -t 4.42925 -s 7 -d 0 -p ack -e 40 -c 0 -i 7834 -a 0 -x {10.0 9.0 3912 ------- null} h -t 4.42925 -s 7 -d 8 -p ack -e 40 -c 0 -i 7834 -a 0 -x {10.0 9.0 3912 ------- null} r -t 4.42939 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7819 -a 0 -x {9.0 10.0 3914 ------- null} + -t 4.42939 -s 10 -d 7 -p ack -e 40 -c 0 -i 7838 -a 0 -x {10.0 9.0 3914 ------- null} - -t 4.42939 -s 10 -d 7 -p ack -e 40 -c 0 -i 7838 -a 0 -x {10.0 9.0 3914 ------- null} h -t 4.42939 -s 10 -d 7 -p ack -e 40 -c 0 -i 7838 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.42941 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7833 -a 0 -x {9.0 10.0 3921 ------- null} + -t 4.42941 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7833 -a 0 -x {9.0 10.0 3921 ------- null} h -t 4.42941 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7833 -a 0 -x {9.0 10.0 3921 ------- null} r -t 4.42978 -s 0 -d 9 -p ack -e 40 -c 0 -i 7828 -a 0 -x {10.0 9.0 3909 ------- null} + -t 4.42978 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7839 -a 0 -x {9.0 10.0 3924 ------- null} - -t 4.42978 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7839 -a 0 -x {9.0 10.0 3924 ------- null} h -t 4.42978 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7839 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.43003 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7825 -a 0 -x {9.0 10.0 3917 ------- null} - -t 4.43003 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7825 -a 0 -x {9.0 10.0 3917 ------- null} h -t 4.43003 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7825 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.4303 -s 0 -d 9 -p ack -e 40 -c 0 -i 7832 -a 0 -x {10.0 9.0 3911 ------- null} - -t 4.4303 -s 0 -d 9 -p ack -e 40 -c 0 -i 7832 -a 0 -x {10.0 9.0 3911 ------- null} h -t 4.4303 -s 0 -d 9 -p ack -e 40 -c 0 -i 7832 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.43034 -s 10 -d 7 -p ack -e 40 -c 0 -i 7836 -a 0 -x {10.0 9.0 3913 ------- null} + -t 4.43034 -s 7 -d 0 -p ack -e 40 -c 0 -i 7836 -a 0 -x {10.0 9.0 3913 ------- null} h -t 4.43034 -s 7 -d 8 -p ack -e 40 -c 0 -i 7836 -a 0 -x {10.0 9.0 3913 ------- null} r -t 4.43046 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7835 -a 0 -x {9.0 10.0 3922 ------- null} + -t 4.43046 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7835 -a 0 -x {9.0 10.0 3922 ------- null} h -t 4.43046 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7835 -a 0 -x {9.0 10.0 3922 ------- null} r -t 4.43048 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7821 -a 0 -x {9.0 10.0 3915 ------- null} + -t 4.43048 -s 10 -d 7 -p ack -e 40 -c 0 -i 7840 -a 0 -x {10.0 9.0 3915 ------- null} - -t 4.43048 -s 10 -d 7 -p ack -e 40 -c 0 -i 7840 -a 0 -x {10.0 9.0 3915 ------- null} h -t 4.43048 -s 10 -d 7 -p ack -e 40 -c 0 -i 7840 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.43107 -s 0 -d 9 -p ack -e 40 -c 0 -i 7830 -a 0 -x {10.0 9.0 3910 ------- null} + -t 4.43107 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7841 -a 0 -x {9.0 10.0 3925 ------- null} - -t 4.43107 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7841 -a 0 -x {9.0 10.0 3925 ------- null} h -t 4.43107 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7841 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.43123 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7827 -a 0 -x {9.0 10.0 3918 ------- null} - -t 4.43123 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7827 -a 0 -x {9.0 10.0 3918 ------- null} h -t 4.43123 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7827 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.43131 -s 0 -d 9 -p ack -e 40 -c 0 -i 7834 -a 0 -x {10.0 9.0 3912 ------- null} - -t 4.43131 -s 0 -d 9 -p ack -e 40 -c 0 -i 7834 -a 0 -x {10.0 9.0 3912 ------- null} h -t 4.43131 -s 0 -d 9 -p ack -e 40 -c 0 -i 7834 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.43142 -s 10 -d 7 -p ack -e 40 -c 0 -i 7838 -a 0 -x {10.0 9.0 3914 ------- null} + -t 4.43142 -s 7 -d 0 -p ack -e 40 -c 0 -i 7838 -a 0 -x {10.0 9.0 3914 ------- null} h -t 4.43142 -s 7 -d 8 -p ack -e 40 -c 0 -i 7838 -a 0 -x {10.0 9.0 3914 ------- null} r -t 4.43157 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7823 -a 0 -x {9.0 10.0 3916 ------- null} + -t 4.43157 -s 10 -d 7 -p ack -e 40 -c 0 -i 7842 -a 0 -x {10.0 9.0 3916 ------- null} - -t 4.43157 -s 10 -d 7 -p ack -e 40 -c 0 -i 7842 -a 0 -x {10.0 9.0 3916 ------- null} h -t 4.43157 -s 10 -d 7 -p ack -e 40 -c 0 -i 7842 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.43165 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7837 -a 0 -x {9.0 10.0 3923 ------- null} + -t 4.43165 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7837 -a 0 -x {9.0 10.0 3923 ------- null} h -t 4.43165 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7837 -a 0 -x {9.0 10.0 3923 ------- null} + -t 4.43232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7829 -a 0 -x {9.0 10.0 3919 ------- null} - -t 4.43232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7829 -a 0 -x {9.0 10.0 3919 ------- null} h -t 4.43232 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7829 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.43234 -s 0 -d 9 -p ack -e 40 -c 0 -i 7832 -a 0 -x {10.0 9.0 3911 ------- null} + -t 4.43234 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7843 -a 0 -x {9.0 10.0 3926 ------- null} - -t 4.43234 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7843 -a 0 -x {9.0 10.0 3926 ------- null} h -t 4.43234 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7843 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.43245 -s 0 -d 9 -p ack -e 40 -c 0 -i 7836 -a 0 -x {10.0 9.0 3913 ------- null} - -t 4.43245 -s 0 -d 9 -p ack -e 40 -c 0 -i 7836 -a 0 -x {10.0 9.0 3913 ------- null} h -t 4.43245 -s 0 -d 9 -p ack -e 40 -c 0 -i 7836 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.43251 -s 10 -d 7 -p ack -e 40 -c 0 -i 7840 -a 0 -x {10.0 9.0 3915 ------- null} + -t 4.43251 -s 7 -d 0 -p ack -e 40 -c 0 -i 7840 -a 0 -x {10.0 9.0 3915 ------- null} h -t 4.43251 -s 7 -d 8 -p ack -e 40 -c 0 -i 7840 -a 0 -x {10.0 9.0 3915 ------- null} r -t 4.43258 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7839 -a 0 -x {9.0 10.0 3924 ------- null} + -t 4.43258 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7839 -a 0 -x {9.0 10.0 3924 ------- null} h -t 4.43258 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7839 -a 0 -x {9.0 10.0 3924 ------- null} r -t 4.43283 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7825 -a 0 -x {9.0 10.0 3917 ------- null} + -t 4.43283 -s 10 -d 7 -p ack -e 40 -c 0 -i 7844 -a 0 -x {10.0 9.0 3917 ------- null} - -t 4.43283 -s 10 -d 7 -p ack -e 40 -c 0 -i 7844 -a 0 -x {10.0 9.0 3917 ------- null} h -t 4.43283 -s 10 -d 7 -p ack -e 40 -c 0 -i 7844 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.43334 -s 0 -d 9 -p ack -e 40 -c 0 -i 7834 -a 0 -x {10.0 9.0 3912 ------- null} + -t 4.43334 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7845 -a 0 -x {9.0 10.0 3927 ------- null} - -t 4.43334 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7845 -a 0 -x {9.0 10.0 3927 ------- null} h -t 4.43334 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7845 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.43341 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7831 -a 0 -x {9.0 10.0 3920 ------- null} - -t 4.43341 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7831 -a 0 -x {9.0 10.0 3920 ------- null} h -t 4.43341 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7831 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.4336 -s 10 -d 7 -p ack -e 40 -c 0 -i 7842 -a 0 -x {10.0 9.0 3916 ------- null} + -t 4.4336 -s 7 -d 0 -p ack -e 40 -c 0 -i 7842 -a 0 -x {10.0 9.0 3916 ------- null} h -t 4.4336 -s 7 -d 8 -p ack -e 40 -c 0 -i 7842 -a 0 -x {10.0 9.0 3916 ------- null} + -t 4.4337 -s 0 -d 9 -p ack -e 40 -c 0 -i 7838 -a 0 -x {10.0 9.0 3914 ------- null} - -t 4.4337 -s 0 -d 9 -p ack -e 40 -c 0 -i 7838 -a 0 -x {10.0 9.0 3914 ------- null} h -t 4.4337 -s 0 -d 9 -p ack -e 40 -c 0 -i 7838 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.43387 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7841 -a 0 -x {9.0 10.0 3925 ------- null} + -t 4.43387 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7841 -a 0 -x {9.0 10.0 3925 ------- null} h -t 4.43387 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7841 -a 0 -x {9.0 10.0 3925 ------- null} r -t 4.43403 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7827 -a 0 -x {9.0 10.0 3918 ------- null} + -t 4.43403 -s 10 -d 7 -p ack -e 40 -c 0 -i 7846 -a 0 -x {10.0 9.0 3918 ------- null} - -t 4.43403 -s 10 -d 7 -p ack -e 40 -c 0 -i 7846 -a 0 -x {10.0 9.0 3918 ------- null} h -t 4.43403 -s 10 -d 7 -p ack -e 40 -c 0 -i 7846 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.43448 -s 0 -d 9 -p ack -e 40 -c 0 -i 7836 -a 0 -x {10.0 9.0 3913 ------- null} + -t 4.43448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7847 -a 0 -x {9.0 10.0 3928 ------- null} - -t 4.43448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7847 -a 0 -x {9.0 10.0 3928 ------- null} h -t 4.43448 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7847 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.4347 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7833 -a 0 -x {9.0 10.0 3921 ------- null} - -t 4.4347 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7833 -a 0 -x {9.0 10.0 3921 ------- null} h -t 4.4347 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7833 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.43486 -s 10 -d 7 -p ack -e 40 -c 0 -i 7844 -a 0 -x {10.0 9.0 3917 ------- null} + -t 4.43486 -s 7 -d 0 -p ack -e 40 -c 0 -i 7844 -a 0 -x {10.0 9.0 3917 ------- null} h -t 4.43486 -s 7 -d 8 -p ack -e 40 -c 0 -i 7844 -a 0 -x {10.0 9.0 3917 ------- null} + -t 4.4349 -s 0 -d 9 -p ack -e 40 -c 0 -i 7840 -a 0 -x {10.0 9.0 3915 ------- null} - -t 4.4349 -s 0 -d 9 -p ack -e 40 -c 0 -i 7840 -a 0 -x {10.0 9.0 3915 ------- null} h -t 4.4349 -s 0 -d 9 -p ack -e 40 -c 0 -i 7840 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.43512 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7829 -a 0 -x {9.0 10.0 3919 ------- null} + -t 4.43512 -s 10 -d 7 -p ack -e 40 -c 0 -i 7848 -a 0 -x {10.0 9.0 3919 ------- null} - -t 4.43512 -s 10 -d 7 -p ack -e 40 -c 0 -i 7848 -a 0 -x {10.0 9.0 3919 ------- null} h -t 4.43512 -s 10 -d 7 -p ack -e 40 -c 0 -i 7848 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.43514 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7843 -a 0 -x {9.0 10.0 3926 ------- null} + -t 4.43514 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7843 -a 0 -x {9.0 10.0 3926 ------- null} h -t 4.43514 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7843 -a 0 -x {9.0 10.0 3926 ------- null} r -t 4.43573 -s 0 -d 9 -p ack -e 40 -c 0 -i 7838 -a 0 -x {10.0 9.0 3914 ------- null} + -t 4.43573 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7849 -a 0 -x {9.0 10.0 3929 ------- null} - -t 4.43573 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7849 -a 0 -x {9.0 10.0 3929 ------- null} h -t 4.43573 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7849 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.43579 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7835 -a 0 -x {9.0 10.0 3922 ------- null} - -t 4.43579 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7835 -a 0 -x {9.0 10.0 3922 ------- null} h -t 4.43579 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7835 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.43606 -s 0 -d 9 -p ack -e 40 -c 0 -i 7842 -a 0 -x {10.0 9.0 3916 ------- null} - -t 4.43606 -s 0 -d 9 -p ack -e 40 -c 0 -i 7842 -a 0 -x {10.0 9.0 3916 ------- null} h -t 4.43606 -s 0 -d 9 -p ack -e 40 -c 0 -i 7842 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.43606 -s 10 -d 7 -p ack -e 40 -c 0 -i 7846 -a 0 -x {10.0 9.0 3918 ------- null} + -t 4.43606 -s 7 -d 0 -p ack -e 40 -c 0 -i 7846 -a 0 -x {10.0 9.0 3918 ------- null} h -t 4.43606 -s 7 -d 8 -p ack -e 40 -c 0 -i 7846 -a 0 -x {10.0 9.0 3918 ------- null} r -t 4.43614 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7845 -a 0 -x {9.0 10.0 3927 ------- null} + -t 4.43614 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7845 -a 0 -x {9.0 10.0 3927 ------- null} h -t 4.43614 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7845 -a 0 -x {9.0 10.0 3927 ------- null} r -t 4.43621 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7831 -a 0 -x {9.0 10.0 3920 ------- null} + -t 4.43621 -s 10 -d 7 -p ack -e 40 -c 0 -i 7850 -a 0 -x {10.0 9.0 3920 ------- null} - -t 4.43621 -s 10 -d 7 -p ack -e 40 -c 0 -i 7850 -a 0 -x {10.0 9.0 3920 ------- null} h -t 4.43621 -s 10 -d 7 -p ack -e 40 -c 0 -i 7850 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.43693 -s 0 -d 9 -p ack -e 40 -c 0 -i 7840 -a 0 -x {10.0 9.0 3915 ------- null} + -t 4.43693 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7851 -a 0 -x {9.0 10.0 3930 ------- null} - -t 4.43693 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7851 -a 0 -x {9.0 10.0 3930 ------- null} h -t 4.43693 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7851 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.43696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7837 -a 0 -x {9.0 10.0 3923 ------- null} - -t 4.43696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7837 -a 0 -x {9.0 10.0 3923 ------- null} h -t 4.43696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7837 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.43704 -s 0 -d 9 -p ack -e 40 -c 0 -i 7844 -a 0 -x {10.0 9.0 3917 ------- null} - -t 4.43704 -s 0 -d 9 -p ack -e 40 -c 0 -i 7844 -a 0 -x {10.0 9.0 3917 ------- null} h -t 4.43704 -s 0 -d 9 -p ack -e 40 -c 0 -i 7844 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.43715 -s 10 -d 7 -p ack -e 40 -c 0 -i 7848 -a 0 -x {10.0 9.0 3919 ------- null} + -t 4.43715 -s 7 -d 0 -p ack -e 40 -c 0 -i 7848 -a 0 -x {10.0 9.0 3919 ------- null} h -t 4.43715 -s 7 -d 8 -p ack -e 40 -c 0 -i 7848 -a 0 -x {10.0 9.0 3919 ------- null} r -t 4.43728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7847 -a 0 -x {9.0 10.0 3928 ------- null} + -t 4.43728 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7847 -a 0 -x {9.0 10.0 3928 ------- null} h -t 4.43728 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7847 -a 0 -x {9.0 10.0 3928 ------- null} r -t 4.4375 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7833 -a 0 -x {9.0 10.0 3921 ------- null} + -t 4.4375 -s 10 -d 7 -p ack -e 40 -c 0 -i 7852 -a 0 -x {10.0 9.0 3921 ------- null} - -t 4.4375 -s 10 -d 7 -p ack -e 40 -c 0 -i 7852 -a 0 -x {10.0 9.0 3921 ------- null} h -t 4.4375 -s 10 -d 7 -p ack -e 40 -c 0 -i 7852 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.43805 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7839 -a 0 -x {9.0 10.0 3924 ------- null} - -t 4.43805 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7839 -a 0 -x {9.0 10.0 3924 ------- null} h -t 4.43805 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7839 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.4381 -s 0 -d 9 -p ack -e 40 -c 0 -i 7842 -a 0 -x {10.0 9.0 3916 ------- null} + -t 4.4381 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7853 -a 0 -x {9.0 10.0 3931 ------- null} - -t 4.4381 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7853 -a 0 -x {9.0 10.0 3931 ------- null} h -t 4.4381 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7853 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.43814 -s 0 -d 9 -p ack -e 40 -c 0 -i 7846 -a 0 -x {10.0 9.0 3918 ------- null} - -t 4.43814 -s 0 -d 9 -p ack -e 40 -c 0 -i 7846 -a 0 -x {10.0 9.0 3918 ------- null} h -t 4.43814 -s 0 -d 9 -p ack -e 40 -c 0 -i 7846 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.43824 -s 10 -d 7 -p ack -e 40 -c 0 -i 7850 -a 0 -x {10.0 9.0 3920 ------- null} + -t 4.43824 -s 7 -d 0 -p ack -e 40 -c 0 -i 7850 -a 0 -x {10.0 9.0 3920 ------- null} h -t 4.43824 -s 7 -d 8 -p ack -e 40 -c 0 -i 7850 -a 0 -x {10.0 9.0 3920 ------- null} r -t 4.43853 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7849 -a 0 -x {9.0 10.0 3929 ------- null} + -t 4.43853 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7849 -a 0 -x {9.0 10.0 3929 ------- null} h -t 4.43853 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7849 -a 0 -x {9.0 10.0 3929 ------- null} r -t 4.43859 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7835 -a 0 -x {9.0 10.0 3922 ------- null} + -t 4.43859 -s 10 -d 7 -p ack -e 40 -c 0 -i 7854 -a 0 -x {10.0 9.0 3922 ------- null} - -t 4.43859 -s 10 -d 7 -p ack -e 40 -c 0 -i 7854 -a 0 -x {10.0 9.0 3922 ------- null} h -t 4.43859 -s 10 -d 7 -p ack -e 40 -c 0 -i 7854 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.43907 -s 0 -d 9 -p ack -e 40 -c 0 -i 7844 -a 0 -x {10.0 9.0 3917 ------- null} + -t 4.43907 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7855 -a 0 -x {9.0 10.0 3932 ------- null} - -t 4.43907 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7855 -a 0 -x {9.0 10.0 3932 ------- null} h -t 4.43907 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7855 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.43914 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7841 -a 0 -x {9.0 10.0 3925 ------- null} - -t 4.43914 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7841 -a 0 -x {9.0 10.0 3925 ------- null} h -t 4.43914 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7841 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.43936 -s 0 -d 9 -p ack -e 40 -c 0 -i 7848 -a 0 -x {10.0 9.0 3919 ------- null} - -t 4.43936 -s 0 -d 9 -p ack -e 40 -c 0 -i 7848 -a 0 -x {10.0 9.0 3919 ------- null} h -t 4.43936 -s 0 -d 9 -p ack -e 40 -c 0 -i 7848 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.43954 -s 10 -d 7 -p ack -e 40 -c 0 -i 7852 -a 0 -x {10.0 9.0 3921 ------- null} + -t 4.43954 -s 7 -d 0 -p ack -e 40 -c 0 -i 7852 -a 0 -x {10.0 9.0 3921 ------- null} h -t 4.43954 -s 7 -d 8 -p ack -e 40 -c 0 -i 7852 -a 0 -x {10.0 9.0 3921 ------- null} r -t 4.43973 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7851 -a 0 -x {9.0 10.0 3930 ------- null} + -t 4.43973 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7851 -a 0 -x {9.0 10.0 3930 ------- null} h -t 4.43973 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7851 -a 0 -x {9.0 10.0 3930 ------- null} r -t 4.43976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7837 -a 0 -x {9.0 10.0 3923 ------- null} + -t 4.43976 -s 10 -d 7 -p ack -e 40 -c 0 -i 7856 -a 0 -x {10.0 9.0 3923 ------- null} - -t 4.43976 -s 10 -d 7 -p ack -e 40 -c 0 -i 7856 -a 0 -x {10.0 9.0 3923 ------- null} h -t 4.43976 -s 10 -d 7 -p ack -e 40 -c 0 -i 7856 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.44018 -s 0 -d 9 -p ack -e 40 -c 0 -i 7846 -a 0 -x {10.0 9.0 3918 ------- null} + -t 4.44018 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7857 -a 0 -x {9.0 10.0 3933 ------- null} - -t 4.44018 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7857 -a 0 -x {9.0 10.0 3933 ------- null} h -t 4.44018 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7857 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.44022 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7843 -a 0 -x {9.0 10.0 3926 ------- null} - -t 4.44022 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7843 -a 0 -x {9.0 10.0 3926 ------- null} h -t 4.44022 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7843 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.44043 -s 0 -d 9 -p ack -e 40 -c 0 -i 7850 -a 0 -x {10.0 9.0 3920 ------- null} - -t 4.44043 -s 0 -d 9 -p ack -e 40 -c 0 -i 7850 -a 0 -x {10.0 9.0 3920 ------- null} h -t 4.44043 -s 0 -d 9 -p ack -e 40 -c 0 -i 7850 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.44062 -s 10 -d 7 -p ack -e 40 -c 0 -i 7854 -a 0 -x {10.0 9.0 3922 ------- null} + -t 4.44062 -s 7 -d 0 -p ack -e 40 -c 0 -i 7854 -a 0 -x {10.0 9.0 3922 ------- null} h -t 4.44062 -s 7 -d 8 -p ack -e 40 -c 0 -i 7854 -a 0 -x {10.0 9.0 3922 ------- null} r -t 4.44085 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7839 -a 0 -x {9.0 10.0 3924 ------- null} + -t 4.44085 -s 10 -d 7 -p ack -e 40 -c 0 -i 7858 -a 0 -x {10.0 9.0 3924 ------- null} - -t 4.44085 -s 10 -d 7 -p ack -e 40 -c 0 -i 7858 -a 0 -x {10.0 9.0 3924 ------- null} h -t 4.44085 -s 10 -d 7 -p ack -e 40 -c 0 -i 7858 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.4409 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7853 -a 0 -x {9.0 10.0 3931 ------- null} + -t 4.4409 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7853 -a 0 -x {9.0 10.0 3931 ------- null} h -t 4.4409 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7853 -a 0 -x {9.0 10.0 3931 ------- null} + -t 4.44131 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7845 -a 0 -x {9.0 10.0 3927 ------- null} - -t 4.44131 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7845 -a 0 -x {9.0 10.0 3927 ------- null} h -t 4.44131 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7845 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.44139 -s 0 -d 9 -p ack -e 40 -c 0 -i 7848 -a 0 -x {10.0 9.0 3919 ------- null} + -t 4.44139 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7859 -a 0 -x {9.0 10.0 3934 ------- null} - -t 4.44139 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7859 -a 0 -x {9.0 10.0 3934 ------- null} h -t 4.44139 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7859 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.44152 -s 0 -d 9 -p ack -e 40 -c 0 -i 7852 -a 0 -x {10.0 9.0 3921 ------- null} - -t 4.44152 -s 0 -d 9 -p ack -e 40 -c 0 -i 7852 -a 0 -x {10.0 9.0 3921 ------- null} h -t 4.44152 -s 0 -d 9 -p ack -e 40 -c 0 -i 7852 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.44179 -s 10 -d 7 -p ack -e 40 -c 0 -i 7856 -a 0 -x {10.0 9.0 3923 ------- null} + -t 4.44179 -s 7 -d 0 -p ack -e 40 -c 0 -i 7856 -a 0 -x {10.0 9.0 3923 ------- null} h -t 4.44179 -s 7 -d 8 -p ack -e 40 -c 0 -i 7856 -a 0 -x {10.0 9.0 3923 ------- null} r -t 4.44187 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7855 -a 0 -x {9.0 10.0 3932 ------- null} + -t 4.44187 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7855 -a 0 -x {9.0 10.0 3932 ------- null} h -t 4.44187 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7855 -a 0 -x {9.0 10.0 3932 ------- null} r -t 4.44194 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7841 -a 0 -x {9.0 10.0 3925 ------- null} + -t 4.44194 -s 10 -d 7 -p ack -e 40 -c 0 -i 7860 -a 0 -x {10.0 9.0 3925 ------- null} - -t 4.44194 -s 10 -d 7 -p ack -e 40 -c 0 -i 7860 -a 0 -x {10.0 9.0 3925 ------- null} h -t 4.44194 -s 10 -d 7 -p ack -e 40 -c 0 -i 7860 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.4424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7847 -a 0 -x {9.0 10.0 3928 ------- null} - -t 4.4424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7847 -a 0 -x {9.0 10.0 3928 ------- null} h -t 4.4424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7847 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.44246 -s 0 -d 9 -p ack -e 40 -c 0 -i 7850 -a 0 -x {10.0 9.0 3920 ------- null} + -t 4.44246 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7861 -a 0 -x {9.0 10.0 3935 ------- null} - -t 4.44246 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7861 -a 0 -x {9.0 10.0 3935 ------- null} h -t 4.44246 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7861 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.44246 -s 0 -d 9 -p ack -e 40 -c 0 -i 7854 -a 0 -x {10.0 9.0 3922 ------- null} - -t 4.44246 -s 0 -d 9 -p ack -e 40 -c 0 -i 7854 -a 0 -x {10.0 9.0 3922 ------- null} h -t 4.44246 -s 0 -d 9 -p ack -e 40 -c 0 -i 7854 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.44288 -s 10 -d 7 -p ack -e 40 -c 0 -i 7858 -a 0 -x {10.0 9.0 3924 ------- null} + -t 4.44288 -s 7 -d 0 -p ack -e 40 -c 0 -i 7858 -a 0 -x {10.0 9.0 3924 ------- null} h -t 4.44288 -s 7 -d 8 -p ack -e 40 -c 0 -i 7858 -a 0 -x {10.0 9.0 3924 ------- null} r -t 4.44298 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7857 -a 0 -x {9.0 10.0 3933 ------- null} + -t 4.44298 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7857 -a 0 -x {9.0 10.0 3933 ------- null} h -t 4.44298 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7857 -a 0 -x {9.0 10.0 3933 ------- null} r -t 4.44302 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7843 -a 0 -x {9.0 10.0 3926 ------- null} + -t 4.44302 -s 10 -d 7 -p ack -e 40 -c 0 -i 7862 -a 0 -x {10.0 9.0 3926 ------- null} - -t 4.44302 -s 10 -d 7 -p ack -e 40 -c 0 -i 7862 -a 0 -x {10.0 9.0 3926 ------- null} h -t 4.44302 -s 10 -d 7 -p ack -e 40 -c 0 -i 7862 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.44349 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7849 -a 0 -x {9.0 10.0 3929 ------- null} - -t 4.44349 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7849 -a 0 -x {9.0 10.0 3929 ------- null} h -t 4.44349 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7849 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.44355 -s 0 -d 9 -p ack -e 40 -c 0 -i 7852 -a 0 -x {10.0 9.0 3921 ------- null} + -t 4.44355 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7863 -a 0 -x {9.0 10.0 3936 ------- null} - -t 4.44355 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7863 -a 0 -x {9.0 10.0 3936 ------- null} h -t 4.44355 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7863 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.44362 -s 0 -d 9 -p ack -e 40 -c 0 -i 7856 -a 0 -x {10.0 9.0 3923 ------- null} - -t 4.44362 -s 0 -d 9 -p ack -e 40 -c 0 -i 7856 -a 0 -x {10.0 9.0 3923 ------- null} h -t 4.44362 -s 0 -d 9 -p ack -e 40 -c 0 -i 7856 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.44397 -s 10 -d 7 -p ack -e 40 -c 0 -i 7860 -a 0 -x {10.0 9.0 3925 ------- null} + -t 4.44397 -s 7 -d 0 -p ack -e 40 -c 0 -i 7860 -a 0 -x {10.0 9.0 3925 ------- null} h -t 4.44397 -s 7 -d 8 -p ack -e 40 -c 0 -i 7860 -a 0 -x {10.0 9.0 3925 ------- null} r -t 4.44411 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7845 -a 0 -x {9.0 10.0 3927 ------- null} + -t 4.44411 -s 10 -d 7 -p ack -e 40 -c 0 -i 7864 -a 0 -x {10.0 9.0 3927 ------- null} - -t 4.44411 -s 10 -d 7 -p ack -e 40 -c 0 -i 7864 -a 0 -x {10.0 9.0 3927 ------- null} h -t 4.44411 -s 10 -d 7 -p ack -e 40 -c 0 -i 7864 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.44419 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7859 -a 0 -x {9.0 10.0 3934 ------- null} + -t 4.44419 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7859 -a 0 -x {9.0 10.0 3934 ------- null} h -t 4.44419 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7859 -a 0 -x {9.0 10.0 3934 ------- null} r -t 4.4445 -s 0 -d 9 -p ack -e 40 -c 0 -i 7854 -a 0 -x {10.0 9.0 3922 ------- null} + -t 4.4445 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7865 -a 0 -x {9.0 10.0 3937 ------- null} - -t 4.4445 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7865 -a 0 -x {9.0 10.0 3937 ------- null} h -t 4.4445 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7865 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.44458 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7851 -a 0 -x {9.0 10.0 3930 ------- null} - -t 4.44458 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7851 -a 0 -x {9.0 10.0 3930 ------- null} h -t 4.44458 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7851 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.44488 -s 0 -d 9 -p ack -e 40 -c 0 -i 7858 -a 0 -x {10.0 9.0 3924 ------- null} - -t 4.44488 -s 0 -d 9 -p ack -e 40 -c 0 -i 7858 -a 0 -x {10.0 9.0 3924 ------- null} h -t 4.44488 -s 0 -d 9 -p ack -e 40 -c 0 -i 7858 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.44506 -s 10 -d 7 -p ack -e 40 -c 0 -i 7862 -a 0 -x {10.0 9.0 3926 ------- null} + -t 4.44506 -s 7 -d 0 -p ack -e 40 -c 0 -i 7862 -a 0 -x {10.0 9.0 3926 ------- null} h -t 4.44506 -s 7 -d 8 -p ack -e 40 -c 0 -i 7862 -a 0 -x {10.0 9.0 3926 ------- null} r -t 4.4452 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7847 -a 0 -x {9.0 10.0 3928 ------- null} + -t 4.4452 -s 10 -d 7 -p ack -e 40 -c 0 -i 7866 -a 0 -x {10.0 9.0 3928 ------- null} - -t 4.4452 -s 10 -d 7 -p ack -e 40 -c 0 -i 7866 -a 0 -x {10.0 9.0 3928 ------- null} h -t 4.4452 -s 10 -d 7 -p ack -e 40 -c 0 -i 7866 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.44526 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7861 -a 0 -x {9.0 10.0 3935 ------- null} + -t 4.44526 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7861 -a 0 -x {9.0 10.0 3935 ------- null} h -t 4.44526 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7861 -a 0 -x {9.0 10.0 3935 ------- null} r -t 4.44565 -s 0 -d 9 -p ack -e 40 -c 0 -i 7856 -a 0 -x {10.0 9.0 3923 ------- null} + -t 4.44565 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7867 -a 0 -x {9.0 10.0 3938 ------- null} - -t 4.44565 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7867 -a 0 -x {9.0 10.0 3938 ------- null} h -t 4.44565 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7867 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.4459 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7853 -a 0 -x {9.0 10.0 3931 ------- null} - -t 4.4459 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7853 -a 0 -x {9.0 10.0 3931 ------- null} h -t 4.4459 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7853 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.44614 -s 10 -d 7 -p ack -e 40 -c 0 -i 7864 -a 0 -x {10.0 9.0 3927 ------- null} + -t 4.44614 -s 7 -d 0 -p ack -e 40 -c 0 -i 7864 -a 0 -x {10.0 9.0 3927 ------- null} h -t 4.44614 -s 7 -d 8 -p ack -e 40 -c 0 -i 7864 -a 0 -x {10.0 9.0 3927 ------- null} + -t 4.44618 -s 0 -d 9 -p ack -e 40 -c 0 -i 7860 -a 0 -x {10.0 9.0 3925 ------- null} - -t 4.44618 -s 0 -d 9 -p ack -e 40 -c 0 -i 7860 -a 0 -x {10.0 9.0 3925 ------- null} h -t 4.44618 -s 0 -d 9 -p ack -e 40 -c 0 -i 7860 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.44629 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7849 -a 0 -x {9.0 10.0 3929 ------- null} + -t 4.44629 -s 10 -d 7 -p ack -e 40 -c 0 -i 7868 -a 0 -x {10.0 9.0 3929 ------- null} - -t 4.44629 -s 10 -d 7 -p ack -e 40 -c 0 -i 7868 -a 0 -x {10.0 9.0 3929 ------- null} h -t 4.44629 -s 10 -d 7 -p ack -e 40 -c 0 -i 7868 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.44635 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7863 -a 0 -x {9.0 10.0 3936 ------- null} + -t 4.44635 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7863 -a 0 -x {9.0 10.0 3936 ------- null} h -t 4.44635 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7863 -a 0 -x {9.0 10.0 3936 ------- null} r -t 4.44691 -s 0 -d 9 -p ack -e 40 -c 0 -i 7858 -a 0 -x {10.0 9.0 3924 ------- null} + -t 4.44691 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7869 -a 0 -x {9.0 10.0 3939 ------- null} - -t 4.44691 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7869 -a 0 -x {9.0 10.0 3939 ------- null} h -t 4.44691 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7869 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.44723 -s 10 -d 7 -p ack -e 40 -c 0 -i 7866 -a 0 -x {10.0 9.0 3928 ------- null} + -t 4.44723 -s 7 -d 0 -p ack -e 40 -c 0 -i 7866 -a 0 -x {10.0 9.0 3928 ------- null} h -t 4.44723 -s 7 -d 8 -p ack -e 40 -c 0 -i 7866 -a 0 -x {10.0 9.0 3928 ------- null} + -t 4.44725 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7855 -a 0 -x {9.0 10.0 3932 ------- null} - -t 4.44725 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7855 -a 0 -x {9.0 10.0 3932 ------- null} h -t 4.44725 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7855 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.4473 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7865 -a 0 -x {9.0 10.0 3937 ------- null} + -t 4.4473 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7865 -a 0 -x {9.0 10.0 3937 ------- null} h -t 4.4473 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7865 -a 0 -x {9.0 10.0 3937 ------- null} + -t 4.44731 -s 0 -d 9 -p ack -e 40 -c 0 -i 7862 -a 0 -x {10.0 9.0 3926 ------- null} - -t 4.44731 -s 0 -d 9 -p ack -e 40 -c 0 -i 7862 -a 0 -x {10.0 9.0 3926 ------- null} h -t 4.44731 -s 0 -d 9 -p ack -e 40 -c 0 -i 7862 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.44738 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7851 -a 0 -x {9.0 10.0 3930 ------- null} + -t 4.44738 -s 10 -d 7 -p ack -e 40 -c 0 -i 7870 -a 0 -x {10.0 9.0 3930 ------- null} - -t 4.44738 -s 10 -d 7 -p ack -e 40 -c 0 -i 7870 -a 0 -x {10.0 9.0 3930 ------- null} h -t 4.44738 -s 10 -d 7 -p ack -e 40 -c 0 -i 7870 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.44821 -s 0 -d 9 -p ack -e 40 -c 0 -i 7860 -a 0 -x {10.0 9.0 3925 ------- null} + -t 4.44821 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7871 -a 0 -x {9.0 10.0 3940 ------- null} - -t 4.44821 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7871 -a 0 -x {9.0 10.0 3940 ------- null} h -t 4.44821 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7871 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.44832 -s 10 -d 7 -p ack -e 40 -c 0 -i 7868 -a 0 -x {10.0 9.0 3929 ------- null} + -t 4.44832 -s 7 -d 0 -p ack -e 40 -c 0 -i 7868 -a 0 -x {10.0 9.0 3929 ------- null} h -t 4.44832 -s 7 -d 8 -p ack -e 40 -c 0 -i 7868 -a 0 -x {10.0 9.0 3929 ------- null} + -t 4.44834 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7857 -a 0 -x {9.0 10.0 3933 ------- null} - -t 4.44834 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7857 -a 0 -x {9.0 10.0 3933 ------- null} h -t 4.44834 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7857 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.44845 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7867 -a 0 -x {9.0 10.0 3938 ------- null} + -t 4.44845 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7867 -a 0 -x {9.0 10.0 3938 ------- null} h -t 4.44845 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7867 -a 0 -x {9.0 10.0 3938 ------- null} + -t 4.44864 -s 0 -d 9 -p ack -e 40 -c 0 -i 7864 -a 0 -x {10.0 9.0 3927 ------- null} - -t 4.44864 -s 0 -d 9 -p ack -e 40 -c 0 -i 7864 -a 0 -x {10.0 9.0 3927 ------- null} h -t 4.44864 -s 0 -d 9 -p ack -e 40 -c 0 -i 7864 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.4487 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7853 -a 0 -x {9.0 10.0 3931 ------- null} + -t 4.4487 -s 10 -d 7 -p ack -e 40 -c 0 -i 7872 -a 0 -x {10.0 9.0 3931 ------- null} - -t 4.4487 -s 10 -d 7 -p ack -e 40 -c 0 -i 7872 -a 0 -x {10.0 9.0 3931 ------- null} h -t 4.4487 -s 10 -d 7 -p ack -e 40 -c 0 -i 7872 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.44934 -s 0 -d 9 -p ack -e 40 -c 0 -i 7862 -a 0 -x {10.0 9.0 3926 ------- null} + -t 4.44934 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7873 -a 0 -x {9.0 10.0 3941 ------- null} - -t 4.44934 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7873 -a 0 -x {9.0 10.0 3941 ------- null} h -t 4.44934 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7873 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.44941 -s 10 -d 7 -p ack -e 40 -c 0 -i 7870 -a 0 -x {10.0 9.0 3930 ------- null} + -t 4.44941 -s 7 -d 0 -p ack -e 40 -c 0 -i 7870 -a 0 -x {10.0 9.0 3930 ------- null} h -t 4.44941 -s 7 -d 8 -p ack -e 40 -c 0 -i 7870 -a 0 -x {10.0 9.0 3930 ------- null} + -t 4.44966 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7859 -a 0 -x {9.0 10.0 3934 ------- null} - -t 4.44966 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7859 -a 0 -x {9.0 10.0 3934 ------- null} h -t 4.44966 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7859 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.44971 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7869 -a 0 -x {9.0 10.0 3939 ------- null} + -t 4.44971 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7869 -a 0 -x {9.0 10.0 3939 ------- null} h -t 4.44971 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7869 -a 0 -x {9.0 10.0 3939 ------- null} + -t 4.4499 -s 0 -d 9 -p ack -e 40 -c 0 -i 7866 -a 0 -x {10.0 9.0 3928 ------- null} - -t 4.4499 -s 0 -d 9 -p ack -e 40 -c 0 -i 7866 -a 0 -x {10.0 9.0 3928 ------- null} h -t 4.4499 -s 0 -d 9 -p ack -e 40 -c 0 -i 7866 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.45005 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7855 -a 0 -x {9.0 10.0 3932 ------- null} + -t 4.45005 -s 10 -d 7 -p ack -e 40 -c 0 -i 7874 -a 0 -x {10.0 9.0 3932 ------- null} - -t 4.45005 -s 10 -d 7 -p ack -e 40 -c 0 -i 7874 -a 0 -x {10.0 9.0 3932 ------- null} h -t 4.45005 -s 10 -d 7 -p ack -e 40 -c 0 -i 7874 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.45067 -s 0 -d 9 -p ack -e 40 -c 0 -i 7864 -a 0 -x {10.0 9.0 3927 ------- null} + -t 4.45067 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7875 -a 0 -x {9.0 10.0 3942 ------- null} - -t 4.45067 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7875 -a 0 -x {9.0 10.0 3942 ------- null} h -t 4.45067 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7875 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.45074 -s 10 -d 7 -p ack -e 40 -c 0 -i 7872 -a 0 -x {10.0 9.0 3931 ------- null} + -t 4.45074 -s 7 -d 0 -p ack -e 40 -c 0 -i 7872 -a 0 -x {10.0 9.0 3931 ------- null} h -t 4.45074 -s 7 -d 8 -p ack -e 40 -c 0 -i 7872 -a 0 -x {10.0 9.0 3931 ------- null} + -t 4.45075 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7861 -a 0 -x {9.0 10.0 3935 ------- null} - -t 4.45075 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7861 -a 0 -x {9.0 10.0 3935 ------- null} h -t 4.45075 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7861 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.45096 -s 0 -d 9 -p ack -e 40 -c 0 -i 7868 -a 0 -x {10.0 9.0 3929 ------- null} - -t 4.45096 -s 0 -d 9 -p ack -e 40 -c 0 -i 7868 -a 0 -x {10.0 9.0 3929 ------- null} h -t 4.45096 -s 0 -d 9 -p ack -e 40 -c 0 -i 7868 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.45101 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7871 -a 0 -x {9.0 10.0 3940 ------- null} + -t 4.45101 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7871 -a 0 -x {9.0 10.0 3940 ------- null} h -t 4.45101 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7871 -a 0 -x {9.0 10.0 3940 ------- null} r -t 4.45114 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7857 -a 0 -x {9.0 10.0 3933 ------- null} + -t 4.45114 -s 10 -d 7 -p ack -e 40 -c 0 -i 7876 -a 0 -x {10.0 9.0 3933 ------- null} - -t 4.45114 -s 10 -d 7 -p ack -e 40 -c 0 -i 7876 -a 0 -x {10.0 9.0 3933 ------- null} h -t 4.45114 -s 10 -d 7 -p ack -e 40 -c 0 -i 7876 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.45184 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7863 -a 0 -x {9.0 10.0 3936 ------- null} - -t 4.45184 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7863 -a 0 -x {9.0 10.0 3936 ------- null} h -t 4.45184 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7863 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.45194 -s 0 -d 9 -p ack -e 40 -c 0 -i 7866 -a 0 -x {10.0 9.0 3928 ------- null} + -t 4.45194 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7877 -a 0 -x {9.0 10.0 3943 ------- null} - -t 4.45194 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7877 -a 0 -x {9.0 10.0 3943 ------- null} h -t 4.45194 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7877 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.452 -s 0 -d 9 -p ack -e 40 -c 0 -i 7870 -a 0 -x {10.0 9.0 3930 ------- null} - -t 4.452 -s 0 -d 9 -p ack -e 40 -c 0 -i 7870 -a 0 -x {10.0 9.0 3930 ------- null} h -t 4.452 -s 0 -d 9 -p ack -e 40 -c 0 -i 7870 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.45208 -s 10 -d 7 -p ack -e 40 -c 0 -i 7874 -a 0 -x {10.0 9.0 3932 ------- null} + -t 4.45208 -s 7 -d 0 -p ack -e 40 -c 0 -i 7874 -a 0 -x {10.0 9.0 3932 ------- null} h -t 4.45208 -s 7 -d 8 -p ack -e 40 -c 0 -i 7874 -a 0 -x {10.0 9.0 3932 ------- null} r -t 4.45214 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7873 -a 0 -x {9.0 10.0 3941 ------- null} + -t 4.45214 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7873 -a 0 -x {9.0 10.0 3941 ------- null} h -t 4.45214 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7873 -a 0 -x {9.0 10.0 3941 ------- null} r -t 4.45246 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7859 -a 0 -x {9.0 10.0 3934 ------- null} + -t 4.45246 -s 10 -d 7 -p ack -e 40 -c 0 -i 7878 -a 0 -x {10.0 9.0 3934 ------- null} - -t 4.45246 -s 10 -d 7 -p ack -e 40 -c 0 -i 7878 -a 0 -x {10.0 9.0 3934 ------- null} h -t 4.45246 -s 10 -d 7 -p ack -e 40 -c 0 -i 7878 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.45293 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7865 -a 0 -x {9.0 10.0 3937 ------- null} - -t 4.45293 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7865 -a 0 -x {9.0 10.0 3937 ------- null} h -t 4.45293 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7865 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.45299 -s 0 -d 9 -p ack -e 40 -c 0 -i 7868 -a 0 -x {10.0 9.0 3929 ------- null} + -t 4.45299 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7879 -a 0 -x {9.0 10.0 3944 ------- null} - -t 4.45299 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7879 -a 0 -x {9.0 10.0 3944 ------- null} h -t 4.45299 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7879 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.45317 -s 10 -d 7 -p ack -e 40 -c 0 -i 7876 -a 0 -x {10.0 9.0 3933 ------- null} + -t 4.45317 -s 7 -d 0 -p ack -e 40 -c 0 -i 7876 -a 0 -x {10.0 9.0 3933 ------- null} h -t 4.45317 -s 7 -d 8 -p ack -e 40 -c 0 -i 7876 -a 0 -x {10.0 9.0 3933 ------- null} + -t 4.4532 -s 0 -d 9 -p ack -e 40 -c 0 -i 7872 -a 0 -x {10.0 9.0 3931 ------- null} - -t 4.4532 -s 0 -d 9 -p ack -e 40 -c 0 -i 7872 -a 0 -x {10.0 9.0 3931 ------- null} h -t 4.4532 -s 0 -d 9 -p ack -e 40 -c 0 -i 7872 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.45347 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7875 -a 0 -x {9.0 10.0 3942 ------- null} + -t 4.45347 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7875 -a 0 -x {9.0 10.0 3942 ------- null} h -t 4.45347 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7875 -a 0 -x {9.0 10.0 3942 ------- null} r -t 4.45355 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7861 -a 0 -x {9.0 10.0 3935 ------- null} + -t 4.45355 -s 10 -d 7 -p ack -e 40 -c 0 -i 7880 -a 0 -x {10.0 9.0 3935 ------- null} - -t 4.45355 -s 10 -d 7 -p ack -e 40 -c 0 -i 7880 -a 0 -x {10.0 9.0 3935 ------- null} h -t 4.45355 -s 10 -d 7 -p ack -e 40 -c 0 -i 7880 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.45403 -s 0 -d 9 -p ack -e 40 -c 0 -i 7870 -a 0 -x {10.0 9.0 3930 ------- null} + -t 4.45403 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7881 -a 0 -x {9.0 10.0 3945 ------- null} - -t 4.45403 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7881 -a 0 -x {9.0 10.0 3945 ------- null} h -t 4.45403 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7881 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.45418 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7867 -a 0 -x {9.0 10.0 3938 ------- null} - -t 4.45418 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7867 -a 0 -x {9.0 10.0 3938 ------- null} h -t 4.45418 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7867 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.45438 -s 0 -d 9 -p ack -e 40 -c 0 -i 7874 -a 0 -x {10.0 9.0 3932 ------- null} - -t 4.45438 -s 0 -d 9 -p ack -e 40 -c 0 -i 7874 -a 0 -x {10.0 9.0 3932 ------- null} h -t 4.45438 -s 0 -d 9 -p ack -e 40 -c 0 -i 7874 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.4545 -s 10 -d 7 -p ack -e 40 -c 0 -i 7878 -a 0 -x {10.0 9.0 3934 ------- null} + -t 4.4545 -s 7 -d 0 -p ack -e 40 -c 0 -i 7878 -a 0 -x {10.0 9.0 3934 ------- null} h -t 4.4545 -s 7 -d 8 -p ack -e 40 -c 0 -i 7878 -a 0 -x {10.0 9.0 3934 ------- null} r -t 4.45464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7863 -a 0 -x {9.0 10.0 3936 ------- null} + -t 4.45464 -s 10 -d 7 -p ack -e 40 -c 0 -i 7882 -a 0 -x {10.0 9.0 3936 ------- null} - -t 4.45464 -s 10 -d 7 -p ack -e 40 -c 0 -i 7882 -a 0 -x {10.0 9.0 3936 ------- null} h -t 4.45464 -s 10 -d 7 -p ack -e 40 -c 0 -i 7882 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.45474 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7877 -a 0 -x {9.0 10.0 3943 ------- null} + -t 4.45474 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7877 -a 0 -x {9.0 10.0 3943 ------- null} h -t 4.45474 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7877 -a 0 -x {9.0 10.0 3943 ------- null} r -t 4.45523 -s 0 -d 9 -p ack -e 40 -c 0 -i 7872 -a 0 -x {10.0 9.0 3931 ------- null} + -t 4.45523 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7883 -a 0 -x {9.0 10.0 3946 ------- null} - -t 4.45523 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7883 -a 0 -x {9.0 10.0 3946 ------- null} h -t 4.45523 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7883 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.45526 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7869 -a 0 -x {9.0 10.0 3939 ------- null} - -t 4.45526 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7869 -a 0 -x {9.0 10.0 3939 ------- null} h -t 4.45526 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7869 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.45539 -s 0 -d 9 -p ack -e 40 -c 0 -i 7876 -a 0 -x {10.0 9.0 3933 ------- null} - -t 4.45539 -s 0 -d 9 -p ack -e 40 -c 0 -i 7876 -a 0 -x {10.0 9.0 3933 ------- null} h -t 4.45539 -s 0 -d 9 -p ack -e 40 -c 0 -i 7876 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.45558 -s 10 -d 7 -p ack -e 40 -c 0 -i 7880 -a 0 -x {10.0 9.0 3935 ------- null} + -t 4.45558 -s 7 -d 0 -p ack -e 40 -c 0 -i 7880 -a 0 -x {10.0 9.0 3935 ------- null} h -t 4.45558 -s 7 -d 8 -p ack -e 40 -c 0 -i 7880 -a 0 -x {10.0 9.0 3935 ------- null} r -t 4.45573 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7865 -a 0 -x {9.0 10.0 3937 ------- null} + -t 4.45573 -s 10 -d 7 -p ack -e 40 -c 0 -i 7884 -a 0 -x {10.0 9.0 3937 ------- null} - -t 4.45573 -s 10 -d 7 -p ack -e 40 -c 0 -i 7884 -a 0 -x {10.0 9.0 3937 ------- null} h -t 4.45573 -s 10 -d 7 -p ack -e 40 -c 0 -i 7884 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.45579 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7879 -a 0 -x {9.0 10.0 3944 ------- null} + -t 4.45579 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7879 -a 0 -x {9.0 10.0 3944 ------- null} h -t 4.45579 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7879 -a 0 -x {9.0 10.0 3944 ------- null} + -t 4.45635 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7871 -a 0 -x {9.0 10.0 3940 ------- null} - -t 4.45635 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7871 -a 0 -x {9.0 10.0 3940 ------- null} h -t 4.45635 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7871 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.45642 -s 0 -d 9 -p ack -e 40 -c 0 -i 7874 -a 0 -x {10.0 9.0 3932 ------- null} + -t 4.45642 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7885 -a 0 -x {9.0 10.0 3947 ------- null} - -t 4.45642 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7885 -a 0 -x {9.0 10.0 3947 ------- null} h -t 4.45642 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7885 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.45643 -s 0 -d 9 -p ack -e 40 -c 0 -i 7878 -a 0 -x {10.0 9.0 3934 ------- null} - -t 4.45643 -s 0 -d 9 -p ack -e 40 -c 0 -i 7878 -a 0 -x {10.0 9.0 3934 ------- null} h -t 4.45643 -s 0 -d 9 -p ack -e 40 -c 0 -i 7878 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.45667 -s 10 -d 7 -p ack -e 40 -c 0 -i 7882 -a 0 -x {10.0 9.0 3936 ------- null} + -t 4.45667 -s 7 -d 0 -p ack -e 40 -c 0 -i 7882 -a 0 -x {10.0 9.0 3936 ------- null} h -t 4.45667 -s 7 -d 8 -p ack -e 40 -c 0 -i 7882 -a 0 -x {10.0 9.0 3936 ------- null} r -t 4.45683 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7881 -a 0 -x {9.0 10.0 3945 ------- null} + -t 4.45683 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7881 -a 0 -x {9.0 10.0 3945 ------- null} h -t 4.45683 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7881 -a 0 -x {9.0 10.0 3945 ------- null} r -t 4.45698 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7867 -a 0 -x {9.0 10.0 3938 ------- null} + -t 4.45698 -s 10 -d 7 -p ack -e 40 -c 0 -i 7886 -a 0 -x {10.0 9.0 3938 ------- null} - -t 4.45698 -s 10 -d 7 -p ack -e 40 -c 0 -i 7886 -a 0 -x {10.0 9.0 3938 ------- null} h -t 4.45698 -s 10 -d 7 -p ack -e 40 -c 0 -i 7886 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.45742 -s 0 -d 9 -p ack -e 40 -c 0 -i 7876 -a 0 -x {10.0 9.0 3933 ------- null} + -t 4.45742 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7887 -a 0 -x {9.0 10.0 3948 ------- null} - -t 4.45742 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7887 -a 0 -x {9.0 10.0 3948 ------- null} h -t 4.45742 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7887 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.45744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7873 -a 0 -x {9.0 10.0 3941 ------- null} - -t 4.45744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7873 -a 0 -x {9.0 10.0 3941 ------- null} h -t 4.45744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7873 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.4576 -s 0 -d 9 -p ack -e 40 -c 0 -i 7880 -a 0 -x {10.0 9.0 3935 ------- null} - -t 4.4576 -s 0 -d 9 -p ack -e 40 -c 0 -i 7880 -a 0 -x {10.0 9.0 3935 ------- null} h -t 4.4576 -s 0 -d 9 -p ack -e 40 -c 0 -i 7880 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.45776 -s 10 -d 7 -p ack -e 40 -c 0 -i 7884 -a 0 -x {10.0 9.0 3937 ------- null} + -t 4.45776 -s 7 -d 0 -p ack -e 40 -c 0 -i 7884 -a 0 -x {10.0 9.0 3937 ------- null} h -t 4.45776 -s 7 -d 8 -p ack -e 40 -c 0 -i 7884 -a 0 -x {10.0 9.0 3937 ------- null} r -t 4.45803 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7883 -a 0 -x {9.0 10.0 3946 ------- null} + -t 4.45803 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7883 -a 0 -x {9.0 10.0 3946 ------- null} h -t 4.45803 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7883 -a 0 -x {9.0 10.0 3946 ------- null} r -t 4.45806 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7869 -a 0 -x {9.0 10.0 3939 ------- null} + -t 4.45806 -s 10 -d 7 -p ack -e 40 -c 0 -i 7888 -a 0 -x {10.0 9.0 3939 ------- null} - -t 4.45806 -s 10 -d 7 -p ack -e 40 -c 0 -i 7888 -a 0 -x {10.0 9.0 3939 ------- null} h -t 4.45806 -s 10 -d 7 -p ack -e 40 -c 0 -i 7888 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.45846 -s 0 -d 9 -p ack -e 40 -c 0 -i 7878 -a 0 -x {10.0 9.0 3934 ------- null} + -t 4.45846 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7889 -a 0 -x {9.0 10.0 3949 ------- null} - -t 4.45846 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7889 -a 0 -x {9.0 10.0 3949 ------- null} h -t 4.45846 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7889 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.45853 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7875 -a 0 -x {9.0 10.0 3942 ------- null} - -t 4.45853 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7875 -a 0 -x {9.0 10.0 3942 ------- null} h -t 4.45853 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7875 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.45872 -s 0 -d 9 -p ack -e 40 -c 0 -i 7882 -a 0 -x {10.0 9.0 3936 ------- null} - -t 4.45872 -s 0 -d 9 -p ack -e 40 -c 0 -i 7882 -a 0 -x {10.0 9.0 3936 ------- null} h -t 4.45872 -s 0 -d 9 -p ack -e 40 -c 0 -i 7882 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.45901 -s 10 -d 7 -p ack -e 40 -c 0 -i 7886 -a 0 -x {10.0 9.0 3938 ------- null} + -t 4.45901 -s 7 -d 0 -p ack -e 40 -c 0 -i 7886 -a 0 -x {10.0 9.0 3938 ------- null} h -t 4.45901 -s 7 -d 8 -p ack -e 40 -c 0 -i 7886 -a 0 -x {10.0 9.0 3938 ------- null} r -t 4.45915 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7871 -a 0 -x {9.0 10.0 3940 ------- null} + -t 4.45915 -s 10 -d 7 -p ack -e 40 -c 0 -i 7890 -a 0 -x {10.0 9.0 3940 ------- null} - -t 4.45915 -s 10 -d 7 -p ack -e 40 -c 0 -i 7890 -a 0 -x {10.0 9.0 3940 ------- null} h -t 4.45915 -s 10 -d 7 -p ack -e 40 -c 0 -i 7890 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.45922 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7885 -a 0 -x {9.0 10.0 3947 ------- null} + -t 4.45922 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7885 -a 0 -x {9.0 10.0 3947 ------- null} h -t 4.45922 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7885 -a 0 -x {9.0 10.0 3947 ------- null} + -t 4.45962 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7877 -a 0 -x {9.0 10.0 3943 ------- null} - -t 4.45962 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7877 -a 0 -x {9.0 10.0 3943 ------- null} h -t 4.45962 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7877 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.45963 -s 0 -d 9 -p ack -e 40 -c 0 -i 7880 -a 0 -x {10.0 9.0 3935 ------- null} + -t 4.45963 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7891 -a 0 -x {9.0 10.0 3950 ------- null} - -t 4.45963 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7891 -a 0 -x {9.0 10.0 3950 ------- null} h -t 4.45963 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7891 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.45981 -s 0 -d 9 -p ack -e 40 -c 0 -i 7884 -a 0 -x {10.0 9.0 3937 ------- null} - -t 4.45981 -s 0 -d 9 -p ack -e 40 -c 0 -i 7884 -a 0 -x {10.0 9.0 3937 ------- null} h -t 4.45981 -s 0 -d 9 -p ack -e 40 -c 0 -i 7884 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.4601 -s 10 -d 7 -p ack -e 40 -c 0 -i 7888 -a 0 -x {10.0 9.0 3939 ------- null} + -t 4.4601 -s 7 -d 0 -p ack -e 40 -c 0 -i 7888 -a 0 -x {10.0 9.0 3939 ------- null} h -t 4.4601 -s 7 -d 8 -p ack -e 40 -c 0 -i 7888 -a 0 -x {10.0 9.0 3939 ------- null} r -t 4.46022 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7887 -a 0 -x {9.0 10.0 3948 ------- null} + -t 4.46022 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7887 -a 0 -x {9.0 10.0 3948 ------- null} h -t 4.46022 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7887 -a 0 -x {9.0 10.0 3948 ------- null} r -t 4.46024 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7873 -a 0 -x {9.0 10.0 3941 ------- null} + -t 4.46024 -s 10 -d 7 -p ack -e 40 -c 0 -i 7892 -a 0 -x {10.0 9.0 3941 ------- null} - -t 4.46024 -s 10 -d 7 -p ack -e 40 -c 0 -i 7892 -a 0 -x {10.0 9.0 3941 ------- null} h -t 4.46024 -s 10 -d 7 -p ack -e 40 -c 0 -i 7892 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.4607 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7879 -a 0 -x {9.0 10.0 3944 ------- null} - -t 4.4607 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7879 -a 0 -x {9.0 10.0 3944 ------- null} h -t 4.4607 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7879 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.46075 -s 0 -d 9 -p ack -e 40 -c 0 -i 7882 -a 0 -x {10.0 9.0 3936 ------- null} + -t 4.46075 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7893 -a 0 -x {9.0 10.0 3951 ------- null} - -t 4.46075 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7893 -a 0 -x {9.0 10.0 3951 ------- null} h -t 4.46075 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7893 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.46085 -s 0 -d 9 -p ack -e 40 -c 0 -i 7886 -a 0 -x {10.0 9.0 3938 ------- null} - -t 4.46085 -s 0 -d 9 -p ack -e 40 -c 0 -i 7886 -a 0 -x {10.0 9.0 3938 ------- null} h -t 4.46085 -s 0 -d 9 -p ack -e 40 -c 0 -i 7886 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.46118 -s 10 -d 7 -p ack -e 40 -c 0 -i 7890 -a 0 -x {10.0 9.0 3940 ------- null} + -t 4.46118 -s 7 -d 0 -p ack -e 40 -c 0 -i 7890 -a 0 -x {10.0 9.0 3940 ------- null} h -t 4.46118 -s 7 -d 8 -p ack -e 40 -c 0 -i 7890 -a 0 -x {10.0 9.0 3940 ------- null} r -t 4.46126 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7889 -a 0 -x {9.0 10.0 3949 ------- null} + -t 4.46126 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7889 -a 0 -x {9.0 10.0 3949 ------- null} h -t 4.46126 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7889 -a 0 -x {9.0 10.0 3949 ------- null} r -t 4.46133 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7875 -a 0 -x {9.0 10.0 3942 ------- null} + -t 4.46133 -s 10 -d 7 -p ack -e 40 -c 0 -i 7894 -a 0 -x {10.0 9.0 3942 ------- null} - -t 4.46133 -s 10 -d 7 -p ack -e 40 -c 0 -i 7894 -a 0 -x {10.0 9.0 3942 ------- null} h -t 4.46133 -s 10 -d 7 -p ack -e 40 -c 0 -i 7894 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.46179 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7881 -a 0 -x {9.0 10.0 3945 ------- null} - -t 4.46179 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7881 -a 0 -x {9.0 10.0 3945 ------- null} h -t 4.46179 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7881 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.46184 -s 0 -d 9 -p ack -e 40 -c 0 -i 7884 -a 0 -x {10.0 9.0 3937 ------- null} + -t 4.46184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7895 -a 0 -x {9.0 10.0 3952 ------- null} - -t 4.46184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7895 -a 0 -x {9.0 10.0 3952 ------- null} h -t 4.46184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7895 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.46203 -s 0 -d 9 -p ack -e 40 -c 0 -i 7888 -a 0 -x {10.0 9.0 3939 ------- null} - -t 4.46203 -s 0 -d 9 -p ack -e 40 -c 0 -i 7888 -a 0 -x {10.0 9.0 3939 ------- null} h -t 4.46203 -s 0 -d 9 -p ack -e 40 -c 0 -i 7888 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.46227 -s 10 -d 7 -p ack -e 40 -c 0 -i 7892 -a 0 -x {10.0 9.0 3941 ------- null} + -t 4.46227 -s 7 -d 0 -p ack -e 40 -c 0 -i 7892 -a 0 -x {10.0 9.0 3941 ------- null} h -t 4.46227 -s 7 -d 8 -p ack -e 40 -c 0 -i 7892 -a 0 -x {10.0 9.0 3941 ------- null} r -t 4.46242 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7877 -a 0 -x {9.0 10.0 3943 ------- null} + -t 4.46242 -s 10 -d 7 -p ack -e 40 -c 0 -i 7896 -a 0 -x {10.0 9.0 3943 ------- null} - -t 4.46242 -s 10 -d 7 -p ack -e 40 -c 0 -i 7896 -a 0 -x {10.0 9.0 3943 ------- null} h -t 4.46242 -s 10 -d 7 -p ack -e 40 -c 0 -i 7896 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.46243 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7891 -a 0 -x {9.0 10.0 3950 ------- null} + -t 4.46243 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7891 -a 0 -x {9.0 10.0 3950 ------- null} h -t 4.46243 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7891 -a 0 -x {9.0 10.0 3950 ------- null} r -t 4.46288 -s 0 -d 9 -p ack -e 40 -c 0 -i 7886 -a 0 -x {10.0 9.0 3938 ------- null} + -t 4.46288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7897 -a 0 -x {9.0 10.0 3953 ------- null} - -t 4.46288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7897 -a 0 -x {9.0 10.0 3953 ------- null} h -t 4.46288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7897 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.46288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7883 -a 0 -x {9.0 10.0 3946 ------- null} - -t 4.46288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7883 -a 0 -x {9.0 10.0 3946 ------- null} h -t 4.46288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7883 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.46294 -s 0 -d 9 -p ack -e 40 -c 0 -i 7890 -a 0 -x {10.0 9.0 3940 ------- null} - -t 4.46294 -s 0 -d 9 -p ack -e 40 -c 0 -i 7890 -a 0 -x {10.0 9.0 3940 ------- null} h -t 4.46294 -s 0 -d 9 -p ack -e 40 -c 0 -i 7890 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.46336 -s 10 -d 7 -p ack -e 40 -c 0 -i 7894 -a 0 -x {10.0 9.0 3942 ------- null} + -t 4.46336 -s 7 -d 0 -p ack -e 40 -c 0 -i 7894 -a 0 -x {10.0 9.0 3942 ------- null} h -t 4.46336 -s 7 -d 8 -p ack -e 40 -c 0 -i 7894 -a 0 -x {10.0 9.0 3942 ------- null} r -t 4.4635 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7879 -a 0 -x {9.0 10.0 3944 ------- null} + -t 4.4635 -s 10 -d 7 -p ack -e 40 -c 0 -i 7898 -a 0 -x {10.0 9.0 3944 ------- null} - -t 4.4635 -s 10 -d 7 -p ack -e 40 -c 0 -i 7898 -a 0 -x {10.0 9.0 3944 ------- null} h -t 4.4635 -s 10 -d 7 -p ack -e 40 -c 0 -i 7898 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.46355 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7893 -a 0 -x {9.0 10.0 3951 ------- null} + -t 4.46355 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7893 -a 0 -x {9.0 10.0 3951 ------- null} h -t 4.46355 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7893 -a 0 -x {9.0 10.0 3951 ------- null} + -t 4.46397 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7885 -a 0 -x {9.0 10.0 3947 ------- null} - -t 4.46397 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7885 -a 0 -x {9.0 10.0 3947 ------- null} h -t 4.46397 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7885 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.46405 -s 0 -d 9 -p ack -e 40 -c 0 -i 7892 -a 0 -x {10.0 9.0 3941 ------- null} - -t 4.46405 -s 0 -d 9 -p ack -e 40 -c 0 -i 7892 -a 0 -x {10.0 9.0 3941 ------- null} h -t 4.46405 -s 0 -d 9 -p ack -e 40 -c 0 -i 7892 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.46406 -s 0 -d 9 -p ack -e 40 -c 0 -i 7888 -a 0 -x {10.0 9.0 3939 ------- null} + -t 4.46406 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7899 -a 0 -x {9.0 10.0 3954 ------- null} - -t 4.46406 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7899 -a 0 -x {9.0 10.0 3954 ------- null} h -t 4.46406 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7899 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.46445 -s 10 -d 7 -p ack -e 40 -c 0 -i 7896 -a 0 -x {10.0 9.0 3943 ------- null} + -t 4.46445 -s 7 -d 0 -p ack -e 40 -c 0 -i 7896 -a 0 -x {10.0 9.0 3943 ------- null} h -t 4.46445 -s 7 -d 8 -p ack -e 40 -c 0 -i 7896 -a 0 -x {10.0 9.0 3943 ------- null} r -t 4.46459 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7881 -a 0 -x {9.0 10.0 3945 ------- null} + -t 4.46459 -s 10 -d 7 -p ack -e 40 -c 0 -i 7900 -a 0 -x {10.0 9.0 3945 ------- null} - -t 4.46459 -s 10 -d 7 -p ack -e 40 -c 0 -i 7900 -a 0 -x {10.0 9.0 3945 ------- null} h -t 4.46459 -s 10 -d 7 -p ack -e 40 -c 0 -i 7900 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.46464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7895 -a 0 -x {9.0 10.0 3952 ------- null} + -t 4.46464 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7895 -a 0 -x {9.0 10.0 3952 ------- null} h -t 4.46464 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7895 -a 0 -x {9.0 10.0 3952 ------- null} r -t 4.46498 -s 0 -d 9 -p ack -e 40 -c 0 -i 7890 -a 0 -x {10.0 9.0 3940 ------- null} + -t 4.46498 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7901 -a 0 -x {9.0 10.0 3955 ------- null} - -t 4.46498 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7901 -a 0 -x {9.0 10.0 3955 ------- null} h -t 4.46498 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7901 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.46506 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7887 -a 0 -x {9.0 10.0 3948 ------- null} - -t 4.46506 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7887 -a 0 -x {9.0 10.0 3948 ------- null} h -t 4.46506 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7887 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.46514 -s 0 -d 9 -p ack -e 40 -c 0 -i 7894 -a 0 -x {10.0 9.0 3942 ------- null} - -t 4.46514 -s 0 -d 9 -p ack -e 40 -c 0 -i 7894 -a 0 -x {10.0 9.0 3942 ------- null} h -t 4.46514 -s 0 -d 9 -p ack -e 40 -c 0 -i 7894 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.46554 -s 10 -d 7 -p ack -e 40 -c 0 -i 7898 -a 0 -x {10.0 9.0 3944 ------- null} + -t 4.46554 -s 7 -d 0 -p ack -e 40 -c 0 -i 7898 -a 0 -x {10.0 9.0 3944 ------- null} h -t 4.46554 -s 7 -d 8 -p ack -e 40 -c 0 -i 7898 -a 0 -x {10.0 9.0 3944 ------- null} r -t 4.46568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7897 -a 0 -x {9.0 10.0 3953 ------- null} + -t 4.46568 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7897 -a 0 -x {9.0 10.0 3953 ------- null} h -t 4.46568 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7897 -a 0 -x {9.0 10.0 3953 ------- null} r -t 4.46568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7883 -a 0 -x {9.0 10.0 3946 ------- null} + -t 4.46568 -s 10 -d 7 -p ack -e 40 -c 0 -i 7902 -a 0 -x {10.0 9.0 3946 ------- null} - -t 4.46568 -s 10 -d 7 -p ack -e 40 -c 0 -i 7902 -a 0 -x {10.0 9.0 3946 ------- null} h -t 4.46568 -s 10 -d 7 -p ack -e 40 -c 0 -i 7902 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.46608 -s 0 -d 9 -p ack -e 40 -c 0 -i 7892 -a 0 -x {10.0 9.0 3941 ------- null} + -t 4.46608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7903 -a 0 -x {9.0 10.0 3956 ------- null} - -t 4.46608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7903 -a 0 -x {9.0 10.0 3956 ------- null} h -t 4.46608 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7903 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.46614 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7889 -a 0 -x {9.0 10.0 3949 ------- null} - -t 4.46614 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7889 -a 0 -x {9.0 10.0 3949 ------- null} h -t 4.46614 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7889 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.46642 -s 0 -d 9 -p ack -e 40 -c 0 -i 7896 -a 0 -x {10.0 9.0 3943 ------- null} - -t 4.46642 -s 0 -d 9 -p ack -e 40 -c 0 -i 7896 -a 0 -x {10.0 9.0 3943 ------- null} h -t 4.46642 -s 0 -d 9 -p ack -e 40 -c 0 -i 7896 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.46662 -s 10 -d 7 -p ack -e 40 -c 0 -i 7900 -a 0 -x {10.0 9.0 3945 ------- null} + -t 4.46662 -s 7 -d 0 -p ack -e 40 -c 0 -i 7900 -a 0 -x {10.0 9.0 3945 ------- null} h -t 4.46662 -s 7 -d 8 -p ack -e 40 -c 0 -i 7900 -a 0 -x {10.0 9.0 3945 ------- null} r -t 4.46677 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7885 -a 0 -x {9.0 10.0 3947 ------- null} + -t 4.46677 -s 10 -d 7 -p ack -e 40 -c 0 -i 7904 -a 0 -x {10.0 9.0 3947 ------- null} - -t 4.46677 -s 10 -d 7 -p ack -e 40 -c 0 -i 7904 -a 0 -x {10.0 9.0 3947 ------- null} h -t 4.46677 -s 10 -d 7 -p ack -e 40 -c 0 -i 7904 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.46686 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7899 -a 0 -x {9.0 10.0 3954 ------- null} + -t 4.46686 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7899 -a 0 -x {9.0 10.0 3954 ------- null} h -t 4.46686 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7899 -a 0 -x {9.0 10.0 3954 ------- null} r -t 4.46717 -s 0 -d 9 -p ack -e 40 -c 0 -i 7894 -a 0 -x {10.0 9.0 3942 ------- null} + -t 4.46717 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7905 -a 0 -x {9.0 10.0 3957 ------- null} - -t 4.46717 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7905 -a 0 -x {9.0 10.0 3957 ------- null} h -t 4.46717 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7905 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.46741 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7891 -a 0 -x {9.0 10.0 3950 ------- null} - -t 4.46741 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7891 -a 0 -x {9.0 10.0 3950 ------- null} h -t 4.46741 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7891 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.46771 -s 0 -d 9 -p ack -e 40 -c 0 -i 7898 -a 0 -x {10.0 9.0 3944 ------- null} - -t 4.46771 -s 0 -d 9 -p ack -e 40 -c 0 -i 7898 -a 0 -x {10.0 9.0 3944 ------- null} h -t 4.46771 -s 0 -d 9 -p ack -e 40 -c 0 -i 7898 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.46771 -s 10 -d 7 -p ack -e 40 -c 0 -i 7902 -a 0 -x {10.0 9.0 3946 ------- null} + -t 4.46771 -s 7 -d 0 -p ack -e 40 -c 0 -i 7902 -a 0 -x {10.0 9.0 3946 ------- null} h -t 4.46771 -s 7 -d 8 -p ack -e 40 -c 0 -i 7902 -a 0 -x {10.0 9.0 3946 ------- null} r -t 4.46778 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7901 -a 0 -x {9.0 10.0 3955 ------- null} + -t 4.46778 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7901 -a 0 -x {9.0 10.0 3955 ------- null} h -t 4.46778 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7901 -a 0 -x {9.0 10.0 3955 ------- null} r -t 4.46786 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7887 -a 0 -x {9.0 10.0 3948 ------- null} + -t 4.46786 -s 10 -d 7 -p ack -e 40 -c 0 -i 7906 -a 0 -x {10.0 9.0 3948 ------- null} - -t 4.46786 -s 10 -d 7 -p ack -e 40 -c 0 -i 7906 -a 0 -x {10.0 9.0 3948 ------- null} h -t 4.46786 -s 10 -d 7 -p ack -e 40 -c 0 -i 7906 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.46845 -s 0 -d 9 -p ack -e 40 -c 0 -i 7896 -a 0 -x {10.0 9.0 3943 ------- null} + -t 4.46845 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7907 -a 0 -x {9.0 10.0 3958 ------- null} - -t 4.46845 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7907 -a 0 -x {9.0 10.0 3958 ------- null} h -t 4.46845 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7907 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.46869 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7893 -a 0 -x {9.0 10.0 3951 ------- null} - -t 4.46869 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7893 -a 0 -x {9.0 10.0 3951 ------- null} h -t 4.46869 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7893 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.46877 -s 0 -d 9 -p ack -e 40 -c 0 -i 7900 -a 0 -x {10.0 9.0 3945 ------- null} - -t 4.46877 -s 0 -d 9 -p ack -e 40 -c 0 -i 7900 -a 0 -x {10.0 9.0 3945 ------- null} h -t 4.46877 -s 0 -d 9 -p ack -e 40 -c 0 -i 7900 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.4688 -s 10 -d 7 -p ack -e 40 -c 0 -i 7904 -a 0 -x {10.0 9.0 3947 ------- null} + -t 4.4688 -s 7 -d 0 -p ack -e 40 -c 0 -i 7904 -a 0 -x {10.0 9.0 3947 ------- null} h -t 4.4688 -s 7 -d 8 -p ack -e 40 -c 0 -i 7904 -a 0 -x {10.0 9.0 3947 ------- null} r -t 4.46888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7903 -a 0 -x {9.0 10.0 3956 ------- null} + -t 4.46888 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7903 -a 0 -x {9.0 10.0 3956 ------- null} h -t 4.46888 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7903 -a 0 -x {9.0 10.0 3956 ------- null} r -t 4.46894 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7889 -a 0 -x {9.0 10.0 3949 ------- null} + -t 4.46894 -s 10 -d 7 -p ack -e 40 -c 0 -i 7908 -a 0 -x {10.0 9.0 3949 ------- null} - -t 4.46894 -s 10 -d 7 -p ack -e 40 -c 0 -i 7908 -a 0 -x {10.0 9.0 3949 ------- null} h -t 4.46894 -s 10 -d 7 -p ack -e 40 -c 0 -i 7908 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.46974 -s 0 -d 9 -p ack -e 40 -c 0 -i 7898 -a 0 -x {10.0 9.0 3944 ------- null} + -t 4.46974 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7909 -a 0 -x {9.0 10.0 3959 ------- null} - -t 4.46974 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7909 -a 0 -x {9.0 10.0 3959 ------- null} h -t 4.46974 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7909 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.46978 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7895 -a 0 -x {9.0 10.0 3952 ------- null} - -t 4.46978 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7895 -a 0 -x {9.0 10.0 3952 ------- null} h -t 4.46978 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7895 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.46989 -s 10 -d 7 -p ack -e 40 -c 0 -i 7906 -a 0 -x {10.0 9.0 3948 ------- null} + -t 4.46989 -s 7 -d 0 -p ack -e 40 -c 0 -i 7906 -a 0 -x {10.0 9.0 3948 ------- null} h -t 4.46989 -s 7 -d 8 -p ack -e 40 -c 0 -i 7906 -a 0 -x {10.0 9.0 3948 ------- null} + -t 4.4699 -s 0 -d 9 -p ack -e 40 -c 0 -i 7902 -a 0 -x {10.0 9.0 3946 ------- null} - -t 4.4699 -s 0 -d 9 -p ack -e 40 -c 0 -i 7902 -a 0 -x {10.0 9.0 3946 ------- null} h -t 4.4699 -s 0 -d 9 -p ack -e 40 -c 0 -i 7902 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.46997 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7905 -a 0 -x {9.0 10.0 3957 ------- null} + -t 4.46997 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7905 -a 0 -x {9.0 10.0 3957 ------- null} h -t 4.46997 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7905 -a 0 -x {9.0 10.0 3957 ------- null} r -t 4.47021 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7891 -a 0 -x {9.0 10.0 3950 ------- null} + -t 4.47021 -s 10 -d 7 -p ack -e 40 -c 0 -i 7910 -a 0 -x {10.0 9.0 3950 ------- null} - -t 4.47021 -s 10 -d 7 -p ack -e 40 -c 0 -i 7910 -a 0 -x {10.0 9.0 3950 ------- null} h -t 4.47021 -s 10 -d 7 -p ack -e 40 -c 0 -i 7910 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.4708 -s 0 -d 9 -p ack -e 40 -c 0 -i 7900 -a 0 -x {10.0 9.0 3945 ------- null} + -t 4.4708 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7911 -a 0 -x {9.0 10.0 3960 ------- null} - -t 4.4708 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7911 -a 0 -x {9.0 10.0 3960 ------- null} h -t 4.4708 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7911 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.47086 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7897 -a 0 -x {9.0 10.0 3953 ------- null} - -t 4.47086 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7897 -a 0 -x {9.0 10.0 3953 ------- null} h -t 4.47086 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7897 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.47093 -s 0 -d 9 -p ack -e 40 -c 0 -i 7904 -a 0 -x {10.0 9.0 3947 ------- null} - -t 4.47093 -s 0 -d 9 -p ack -e 40 -c 0 -i 7904 -a 0 -x {10.0 9.0 3947 ------- null} h -t 4.47093 -s 0 -d 9 -p ack -e 40 -c 0 -i 7904 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.47098 -s 10 -d 7 -p ack -e 40 -c 0 -i 7908 -a 0 -x {10.0 9.0 3949 ------- null} + -t 4.47098 -s 7 -d 0 -p ack -e 40 -c 0 -i 7908 -a 0 -x {10.0 9.0 3949 ------- null} h -t 4.47098 -s 7 -d 8 -p ack -e 40 -c 0 -i 7908 -a 0 -x {10.0 9.0 3949 ------- null} r -t 4.47125 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7907 -a 0 -x {9.0 10.0 3958 ------- null} + -t 4.47125 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7907 -a 0 -x {9.0 10.0 3958 ------- null} h -t 4.47125 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7907 -a 0 -x {9.0 10.0 3958 ------- null} r -t 4.47149 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7893 -a 0 -x {9.0 10.0 3951 ------- null} + -t 4.47149 -s 10 -d 7 -p ack -e 40 -c 0 -i 7912 -a 0 -x {10.0 9.0 3951 ------- null} - -t 4.47149 -s 10 -d 7 -p ack -e 40 -c 0 -i 7912 -a 0 -x {10.0 9.0 3951 ------- null} h -t 4.47149 -s 10 -d 7 -p ack -e 40 -c 0 -i 7912 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.47194 -s 0 -d 9 -p ack -e 40 -c 0 -i 7902 -a 0 -x {10.0 9.0 3946 ------- null} + -t 4.47194 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7913 -a 0 -x {9.0 10.0 3961 ------- null} - -t 4.47194 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7913 -a 0 -x {9.0 10.0 3961 ------- null} h -t 4.47194 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7913 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.47195 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7899 -a 0 -x {9.0 10.0 3954 ------- null} - -t 4.47195 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7899 -a 0 -x {9.0 10.0 3954 ------- null} h -t 4.47195 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7899 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.47224 -s 0 -d 9 -p ack -e 40 -c 0 -i 7906 -a 0 -x {10.0 9.0 3948 ------- null} - -t 4.47224 -s 0 -d 9 -p ack -e 40 -c 0 -i 7906 -a 0 -x {10.0 9.0 3948 ------- null} h -t 4.47224 -s 0 -d 9 -p ack -e 40 -c 0 -i 7906 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.47224 -s 10 -d 7 -p ack -e 40 -c 0 -i 7910 -a 0 -x {10.0 9.0 3950 ------- null} + -t 4.47224 -s 7 -d 0 -p ack -e 40 -c 0 -i 7910 -a 0 -x {10.0 9.0 3950 ------- null} h -t 4.47224 -s 7 -d 8 -p ack -e 40 -c 0 -i 7910 -a 0 -x {10.0 9.0 3950 ------- null} r -t 4.47254 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7909 -a 0 -x {9.0 10.0 3959 ------- null} + -t 4.47254 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7909 -a 0 -x {9.0 10.0 3959 ------- null} h -t 4.47254 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7909 -a 0 -x {9.0 10.0 3959 ------- null} r -t 4.47258 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7895 -a 0 -x {9.0 10.0 3952 ------- null} + -t 4.47258 -s 10 -d 7 -p ack -e 40 -c 0 -i 7914 -a 0 -x {10.0 9.0 3952 ------- null} - -t 4.47258 -s 10 -d 7 -p ack -e 40 -c 0 -i 7914 -a 0 -x {10.0 9.0 3952 ------- null} h -t 4.47258 -s 10 -d 7 -p ack -e 40 -c 0 -i 7914 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.47296 -s 0 -d 9 -p ack -e 40 -c 0 -i 7904 -a 0 -x {10.0 9.0 3947 ------- null} + -t 4.47296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7915 -a 0 -x {9.0 10.0 3962 ------- null} - -t 4.47296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7915 -a 0 -x {9.0 10.0 3962 ------- null} h -t 4.47296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7915 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.47307 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7901 -a 0 -x {9.0 10.0 3955 ------- null} - -t 4.47307 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7901 -a 0 -x {9.0 10.0 3955 ------- null} h -t 4.47307 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7901 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.47318 -s 0 -d 9 -p ack -e 40 -c 0 -i 7908 -a 0 -x {10.0 9.0 3949 ------- null} - -t 4.47318 -s 0 -d 9 -p ack -e 40 -c 0 -i 7908 -a 0 -x {10.0 9.0 3949 ------- null} h -t 4.47318 -s 0 -d 9 -p ack -e 40 -c 0 -i 7908 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.47352 -s 10 -d 7 -p ack -e 40 -c 0 -i 7912 -a 0 -x {10.0 9.0 3951 ------- null} + -t 4.47352 -s 7 -d 0 -p ack -e 40 -c 0 -i 7912 -a 0 -x {10.0 9.0 3951 ------- null} h -t 4.47352 -s 7 -d 8 -p ack -e 40 -c 0 -i 7912 -a 0 -x {10.0 9.0 3951 ------- null} r -t 4.4736 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7911 -a 0 -x {9.0 10.0 3960 ------- null} + -t 4.4736 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7911 -a 0 -x {9.0 10.0 3960 ------- null} h -t 4.4736 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7911 -a 0 -x {9.0 10.0 3960 ------- null} r -t 4.47366 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7897 -a 0 -x {9.0 10.0 3953 ------- null} + -t 4.47366 -s 10 -d 7 -p ack -e 40 -c 0 -i 7916 -a 0 -x {10.0 9.0 3953 ------- null} - -t 4.47366 -s 10 -d 7 -p ack -e 40 -c 0 -i 7916 -a 0 -x {10.0 9.0 3953 ------- null} h -t 4.47366 -s 10 -d 7 -p ack -e 40 -c 0 -i 7916 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.47416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7903 -a 0 -x {9.0 10.0 3956 ------- null} - -t 4.47416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7903 -a 0 -x {9.0 10.0 3956 ------- null} h -t 4.47416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7903 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.47427 -s 0 -d 9 -p ack -e 40 -c 0 -i 7906 -a 0 -x {10.0 9.0 3948 ------- null} + -t 4.47427 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7917 -a 0 -x {9.0 10.0 3963 ------- null} - -t 4.47427 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7917 -a 0 -x {9.0 10.0 3963 ------- null} h -t 4.47427 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7917 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.47445 -s 0 -d 9 -p ack -e 40 -c 0 -i 7910 -a 0 -x {10.0 9.0 3950 ------- null} - -t 4.47445 -s 0 -d 9 -p ack -e 40 -c 0 -i 7910 -a 0 -x {10.0 9.0 3950 ------- null} h -t 4.47445 -s 0 -d 9 -p ack -e 40 -c 0 -i 7910 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.47461 -s 10 -d 7 -p ack -e 40 -c 0 -i 7914 -a 0 -x {10.0 9.0 3952 ------- null} + -t 4.47461 -s 7 -d 0 -p ack -e 40 -c 0 -i 7914 -a 0 -x {10.0 9.0 3952 ------- null} h -t 4.47461 -s 7 -d 8 -p ack -e 40 -c 0 -i 7914 -a 0 -x {10.0 9.0 3952 ------- null} r -t 4.47474 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7913 -a 0 -x {9.0 10.0 3961 ------- null} + -t 4.47474 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7913 -a 0 -x {9.0 10.0 3961 ------- null} h -t 4.47474 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7913 -a 0 -x {9.0 10.0 3961 ------- null} r -t 4.47475 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7899 -a 0 -x {9.0 10.0 3954 ------- null} + -t 4.47475 -s 10 -d 7 -p ack -e 40 -c 0 -i 7918 -a 0 -x {10.0 9.0 3954 ------- null} - -t 4.47475 -s 10 -d 7 -p ack -e 40 -c 0 -i 7918 -a 0 -x {10.0 9.0 3954 ------- null} h -t 4.47475 -s 10 -d 7 -p ack -e 40 -c 0 -i 7918 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.47522 -s 0 -d 9 -p ack -e 40 -c 0 -i 7908 -a 0 -x {10.0 9.0 3949 ------- null} + -t 4.47522 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7919 -a 0 -x {9.0 10.0 3964 ------- null} - -t 4.47522 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7919 -a 0 -x {9.0 10.0 3964 ------- null} h -t 4.47522 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7919 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.47533 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7905 -a 0 -x {9.0 10.0 3957 ------- null} - -t 4.47533 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7905 -a 0 -x {9.0 10.0 3957 ------- null} h -t 4.47533 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7905 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.47554 -s 0 -d 9 -p ack -e 40 -c 0 -i 7912 -a 0 -x {10.0 9.0 3951 ------- null} - -t 4.47554 -s 0 -d 9 -p ack -e 40 -c 0 -i 7912 -a 0 -x {10.0 9.0 3951 ------- null} h -t 4.47554 -s 0 -d 9 -p ack -e 40 -c 0 -i 7912 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.4757 -s 10 -d 7 -p ack -e 40 -c 0 -i 7916 -a 0 -x {10.0 9.0 3953 ------- null} + -t 4.4757 -s 7 -d 0 -p ack -e 40 -c 0 -i 7916 -a 0 -x {10.0 9.0 3953 ------- null} h -t 4.4757 -s 7 -d 8 -p ack -e 40 -c 0 -i 7916 -a 0 -x {10.0 9.0 3953 ------- null} r -t 4.47576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7915 -a 0 -x {9.0 10.0 3962 ------- null} + -t 4.47576 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7915 -a 0 -x {9.0 10.0 3962 ------- null} h -t 4.47576 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7915 -a 0 -x {9.0 10.0 3962 ------- null} r -t 4.47587 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7901 -a 0 -x {9.0 10.0 3955 ------- null} + -t 4.47587 -s 10 -d 7 -p ack -e 40 -c 0 -i 7920 -a 0 -x {10.0 9.0 3955 ------- null} - -t 4.47587 -s 10 -d 7 -p ack -e 40 -c 0 -i 7920 -a 0 -x {10.0 9.0 3955 ------- null} h -t 4.47587 -s 10 -d 7 -p ack -e 40 -c 0 -i 7920 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.47642 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7907 -a 0 -x {9.0 10.0 3958 ------- null} - -t 4.47642 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7907 -a 0 -x {9.0 10.0 3958 ------- null} h -t 4.47642 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7907 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.47648 -s 0 -d 9 -p ack -e 40 -c 0 -i 7910 -a 0 -x {10.0 9.0 3950 ------- null} + -t 4.47648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7921 -a 0 -x {9.0 10.0 3965 ------- null} - -t 4.47648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7921 -a 0 -x {9.0 10.0 3965 ------- null} h -t 4.47648 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7921 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.47666 -s 0 -d 9 -p ack -e 40 -c 0 -i 7914 -a 0 -x {10.0 9.0 3952 ------- null} - -t 4.47666 -s 0 -d 9 -p ack -e 40 -c 0 -i 7914 -a 0 -x {10.0 9.0 3952 ------- null} h -t 4.47666 -s 0 -d 9 -p ack -e 40 -c 0 -i 7914 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.47678 -s 10 -d 7 -p ack -e 40 -c 0 -i 7918 -a 0 -x {10.0 9.0 3954 ------- null} + -t 4.47678 -s 7 -d 0 -p ack -e 40 -c 0 -i 7918 -a 0 -x {10.0 9.0 3954 ------- null} h -t 4.47678 -s 7 -d 8 -p ack -e 40 -c 0 -i 7918 -a 0 -x {10.0 9.0 3954 ------- null} r -t 4.47696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7903 -a 0 -x {9.0 10.0 3956 ------- null} + -t 4.47696 -s 10 -d 7 -p ack -e 40 -c 0 -i 7922 -a 0 -x {10.0 9.0 3956 ------- null} - -t 4.47696 -s 10 -d 7 -p ack -e 40 -c 0 -i 7922 -a 0 -x {10.0 9.0 3956 ------- null} h -t 4.47696 -s 10 -d 7 -p ack -e 40 -c 0 -i 7922 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.47707 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7917 -a 0 -x {9.0 10.0 3963 ------- null} + -t 4.47707 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7917 -a 0 -x {9.0 10.0 3963 ------- null} h -t 4.47707 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7917 -a 0 -x {9.0 10.0 3963 ------- null} + -t 4.4775 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7909 -a 0 -x {9.0 10.0 3959 ------- null} - -t 4.4775 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7909 -a 0 -x {9.0 10.0 3959 ------- null} h -t 4.4775 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7909 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.47757 -s 0 -d 9 -p ack -e 40 -c 0 -i 7912 -a 0 -x {10.0 9.0 3951 ------- null} + -t 4.47757 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7923 -a 0 -x {9.0 10.0 3966 ------- null} - -t 4.47757 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7923 -a 0 -x {9.0 10.0 3966 ------- null} h -t 4.47757 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7923 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.47768 -s 0 -d 9 -p ack -e 40 -c 0 -i 7916 -a 0 -x {10.0 9.0 3953 ------- null} - -t 4.47768 -s 0 -d 9 -p ack -e 40 -c 0 -i 7916 -a 0 -x {10.0 9.0 3953 ------- null} h -t 4.47768 -s 0 -d 9 -p ack -e 40 -c 0 -i 7916 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.4779 -s 10 -d 7 -p ack -e 40 -c 0 -i 7920 -a 0 -x {10.0 9.0 3955 ------- null} + -t 4.4779 -s 7 -d 0 -p ack -e 40 -c 0 -i 7920 -a 0 -x {10.0 9.0 3955 ------- null} h -t 4.4779 -s 7 -d 8 -p ack -e 40 -c 0 -i 7920 -a 0 -x {10.0 9.0 3955 ------- null} r -t 4.47802 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7919 -a 0 -x {9.0 10.0 3964 ------- null} + -t 4.47802 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7919 -a 0 -x {9.0 10.0 3964 ------- null} h -t 4.47802 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7919 -a 0 -x {9.0 10.0 3964 ------- null} r -t 4.47813 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7905 -a 0 -x {9.0 10.0 3957 ------- null} + -t 4.47813 -s 10 -d 7 -p ack -e 40 -c 0 -i 7924 -a 0 -x {10.0 9.0 3957 ------- null} - -t 4.47813 -s 10 -d 7 -p ack -e 40 -c 0 -i 7924 -a 0 -x {10.0 9.0 3957 ------- null} h -t 4.47813 -s 10 -d 7 -p ack -e 40 -c 0 -i 7924 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.47859 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7911 -a 0 -x {9.0 10.0 3960 ------- null} - -t 4.47859 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7911 -a 0 -x {9.0 10.0 3960 ------- null} h -t 4.47859 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7911 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.47869 -s 0 -d 9 -p ack -e 40 -c 0 -i 7914 -a 0 -x {10.0 9.0 3952 ------- null} + -t 4.47869 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7925 -a 0 -x {9.0 10.0 3967 ------- null} - -t 4.47869 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7925 -a 0 -x {9.0 10.0 3967 ------- null} h -t 4.47869 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7925 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.47874 -s 0 -d 9 -p ack -e 40 -c 0 -i 7918 -a 0 -x {10.0 9.0 3954 ------- null} - -t 4.47874 -s 0 -d 9 -p ack -e 40 -c 0 -i 7918 -a 0 -x {10.0 9.0 3954 ------- null} h -t 4.47874 -s 0 -d 9 -p ack -e 40 -c 0 -i 7918 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.47899 -s 10 -d 7 -p ack -e 40 -c 0 -i 7922 -a 0 -x {10.0 9.0 3956 ------- null} + -t 4.47899 -s 7 -d 0 -p ack -e 40 -c 0 -i 7922 -a 0 -x {10.0 9.0 3956 ------- null} h -t 4.47899 -s 7 -d 8 -p ack -e 40 -c 0 -i 7922 -a 0 -x {10.0 9.0 3956 ------- null} r -t 4.47922 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7907 -a 0 -x {9.0 10.0 3958 ------- null} + -t 4.47922 -s 10 -d 7 -p ack -e 40 -c 0 -i 7926 -a 0 -x {10.0 9.0 3958 ------- null} - -t 4.47922 -s 10 -d 7 -p ack -e 40 -c 0 -i 7926 -a 0 -x {10.0 9.0 3958 ------- null} h -t 4.47922 -s 10 -d 7 -p ack -e 40 -c 0 -i 7926 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.47928 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7921 -a 0 -x {9.0 10.0 3965 ------- null} + -t 4.47928 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7921 -a 0 -x {9.0 10.0 3965 ------- null} h -t 4.47928 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7921 -a 0 -x {9.0 10.0 3965 ------- null} + -t 4.47968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7913 -a 0 -x {9.0 10.0 3961 ------- null} - -t 4.47968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7913 -a 0 -x {9.0 10.0 3961 ------- null} h -t 4.47968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7913 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.47971 -s 0 -d 9 -p ack -e 40 -c 0 -i 7916 -a 0 -x {10.0 9.0 3953 ------- null} + -t 4.47971 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7927 -a 0 -x {9.0 10.0 3968 ------- null} - -t 4.47971 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7927 -a 0 -x {9.0 10.0 3968 ------- null} h -t 4.47971 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7927 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.47997 -s 0 -d 9 -p ack -e 40 -c 0 -i 7920 -a 0 -x {10.0 9.0 3955 ------- null} - -t 4.47997 -s 0 -d 9 -p ack -e 40 -c 0 -i 7920 -a 0 -x {10.0 9.0 3955 ------- null} h -t 4.47997 -s 0 -d 9 -p ack -e 40 -c 0 -i 7920 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.48016 -s 10 -d 7 -p ack -e 40 -c 0 -i 7924 -a 0 -x {10.0 9.0 3957 ------- null} + -t 4.48016 -s 7 -d 0 -p ack -e 40 -c 0 -i 7924 -a 0 -x {10.0 9.0 3957 ------- null} h -t 4.48016 -s 7 -d 8 -p ack -e 40 -c 0 -i 7924 -a 0 -x {10.0 9.0 3957 ------- null} r -t 4.4803 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7909 -a 0 -x {9.0 10.0 3959 ------- null} + -t 4.4803 -s 10 -d 7 -p ack -e 40 -c 0 -i 7928 -a 0 -x {10.0 9.0 3959 ------- null} - -t 4.4803 -s 10 -d 7 -p ack -e 40 -c 0 -i 7928 -a 0 -x {10.0 9.0 3959 ------- null} h -t 4.4803 -s 10 -d 7 -p ack -e 40 -c 0 -i 7928 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.48037 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7923 -a 0 -x {9.0 10.0 3966 ------- null} + -t 4.48037 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7923 -a 0 -x {9.0 10.0 3966 ------- null} h -t 4.48037 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7923 -a 0 -x {9.0 10.0 3966 ------- null} r -t 4.48077 -s 0 -d 9 -p ack -e 40 -c 0 -i 7918 -a 0 -x {10.0 9.0 3954 ------- null} + -t 4.48077 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7929 -a 0 -x {9.0 10.0 3969 ------- null} - -t 4.48077 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7929 -a 0 -x {9.0 10.0 3969 ------- null} h -t 4.48077 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7929 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.48086 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7915 -a 0 -x {9.0 10.0 3962 ------- null} - -t 4.48086 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7915 -a 0 -x {9.0 10.0 3962 ------- null} h -t 4.48086 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7915 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.4811 -s 0 -d 9 -p ack -e 40 -c 0 -i 7922 -a 0 -x {10.0 9.0 3956 ------- null} - -t 4.4811 -s 0 -d 9 -p ack -e 40 -c 0 -i 7922 -a 0 -x {10.0 9.0 3956 ------- null} h -t 4.4811 -s 0 -d 9 -p ack -e 40 -c 0 -i 7922 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.48125 -s 10 -d 7 -p ack -e 40 -c 0 -i 7926 -a 0 -x {10.0 9.0 3958 ------- null} + -t 4.48125 -s 7 -d 0 -p ack -e 40 -c 0 -i 7926 -a 0 -x {10.0 9.0 3958 ------- null} h -t 4.48125 -s 7 -d 8 -p ack -e 40 -c 0 -i 7926 -a 0 -x {10.0 9.0 3958 ------- null} r -t 4.48139 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7911 -a 0 -x {9.0 10.0 3960 ------- null} + -t 4.48139 -s 10 -d 7 -p ack -e 40 -c 0 -i 7930 -a 0 -x {10.0 9.0 3960 ------- null} - -t 4.48139 -s 10 -d 7 -p ack -e 40 -c 0 -i 7930 -a 0 -x {10.0 9.0 3960 ------- null} h -t 4.48139 -s 10 -d 7 -p ack -e 40 -c 0 -i 7930 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.48149 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7925 -a 0 -x {9.0 10.0 3967 ------- null} + -t 4.48149 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7925 -a 0 -x {9.0 10.0 3967 ------- null} h -t 4.48149 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7925 -a 0 -x {9.0 10.0 3967 ------- null} + -t 4.48195 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7917 -a 0 -x {9.0 10.0 3963 ------- null} - -t 4.48195 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7917 -a 0 -x {9.0 10.0 3963 ------- null} h -t 4.48195 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7917 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.482 -s 0 -d 9 -p ack -e 40 -c 0 -i 7920 -a 0 -x {10.0 9.0 3955 ------- null} + -t 4.482 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7931 -a 0 -x {9.0 10.0 3970 ------- null} - -t 4.482 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7931 -a 0 -x {9.0 10.0 3970 ------- null} h -t 4.482 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7931 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.48211 -s 0 -d 9 -p ack -e 40 -c 0 -i 7924 -a 0 -x {10.0 9.0 3957 ------- null} - -t 4.48211 -s 0 -d 9 -p ack -e 40 -c 0 -i 7924 -a 0 -x {10.0 9.0 3957 ------- null} h -t 4.48211 -s 0 -d 9 -p ack -e 40 -c 0 -i 7924 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.48234 -s 10 -d 7 -p ack -e 40 -c 0 -i 7928 -a 0 -x {10.0 9.0 3959 ------- null} + -t 4.48234 -s 7 -d 0 -p ack -e 40 -c 0 -i 7928 -a 0 -x {10.0 9.0 3959 ------- null} h -t 4.48234 -s 7 -d 8 -p ack -e 40 -c 0 -i 7928 -a 0 -x {10.0 9.0 3959 ------- null} r -t 4.48248 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7913 -a 0 -x {9.0 10.0 3961 ------- null} + -t 4.48248 -s 10 -d 7 -p ack -e 40 -c 0 -i 7932 -a 0 -x {10.0 9.0 3961 ------- null} - -t 4.48248 -s 10 -d 7 -p ack -e 40 -c 0 -i 7932 -a 0 -x {10.0 9.0 3961 ------- null} h -t 4.48248 -s 10 -d 7 -p ack -e 40 -c 0 -i 7932 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.48251 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7927 -a 0 -x {9.0 10.0 3968 ------- null} + -t 4.48251 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7927 -a 0 -x {9.0 10.0 3968 ------- null} h -t 4.48251 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7927 -a 0 -x {9.0 10.0 3968 ------- null} + -t 4.48304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7919 -a 0 -x {9.0 10.0 3964 ------- null} - -t 4.48304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7919 -a 0 -x {9.0 10.0 3964 ------- null} h -t 4.48304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7919 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.48314 -s 0 -d 9 -p ack -e 40 -c 0 -i 7922 -a 0 -x {10.0 9.0 3956 ------- null} + -t 4.48314 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7933 -a 0 -x {9.0 10.0 3971 ------- null} - -t 4.48314 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7933 -a 0 -x {9.0 10.0 3971 ------- null} h -t 4.48314 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7933 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.48317 -s 0 -d 9 -p ack -e 40 -c 0 -i 7926 -a 0 -x {10.0 9.0 3958 ------- null} - -t 4.48317 -s 0 -d 9 -p ack -e 40 -c 0 -i 7926 -a 0 -x {10.0 9.0 3958 ------- null} h -t 4.48317 -s 0 -d 9 -p ack -e 40 -c 0 -i 7926 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.48342 -s 10 -d 7 -p ack -e 40 -c 0 -i 7930 -a 0 -x {10.0 9.0 3960 ------- null} + -t 4.48342 -s 7 -d 0 -p ack -e 40 -c 0 -i 7930 -a 0 -x {10.0 9.0 3960 ------- null} h -t 4.48342 -s 7 -d 8 -p ack -e 40 -c 0 -i 7930 -a 0 -x {10.0 9.0 3960 ------- null} r -t 4.48357 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7929 -a 0 -x {9.0 10.0 3969 ------- null} + -t 4.48357 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7929 -a 0 -x {9.0 10.0 3969 ------- null} h -t 4.48357 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7929 -a 0 -x {9.0 10.0 3969 ------- null} r -t 4.48366 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7915 -a 0 -x {9.0 10.0 3962 ------- null} + -t 4.48366 -s 10 -d 7 -p ack -e 40 -c 0 -i 7934 -a 0 -x {10.0 9.0 3962 ------- null} - -t 4.48366 -s 10 -d 7 -p ack -e 40 -c 0 -i 7934 -a 0 -x {10.0 9.0 3962 ------- null} h -t 4.48366 -s 10 -d 7 -p ack -e 40 -c 0 -i 7934 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.48413 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7921 -a 0 -x {9.0 10.0 3965 ------- null} - -t 4.48413 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7921 -a 0 -x {9.0 10.0 3965 ------- null} h -t 4.48413 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7921 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.48414 -s 0 -d 9 -p ack -e 40 -c 0 -i 7924 -a 0 -x {10.0 9.0 3957 ------- null} + -t 4.48414 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7935 -a 0 -x {9.0 10.0 3972 ------- null} - -t 4.48414 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7935 -a 0 -x {9.0 10.0 3972 ------- null} h -t 4.48414 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7935 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.48438 -s 0 -d 9 -p ack -e 40 -c 0 -i 7928 -a 0 -x {10.0 9.0 3959 ------- null} - -t 4.48438 -s 0 -d 9 -p ack -e 40 -c 0 -i 7928 -a 0 -x {10.0 9.0 3959 ------- null} h -t 4.48438 -s 0 -d 9 -p ack -e 40 -c 0 -i 7928 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.48451 -s 10 -d 7 -p ack -e 40 -c 0 -i 7932 -a 0 -x {10.0 9.0 3961 ------- null} + -t 4.48451 -s 7 -d 0 -p ack -e 40 -c 0 -i 7932 -a 0 -x {10.0 9.0 3961 ------- null} h -t 4.48451 -s 7 -d 8 -p ack -e 40 -c 0 -i 7932 -a 0 -x {10.0 9.0 3961 ------- null} r -t 4.48475 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7917 -a 0 -x {9.0 10.0 3963 ------- null} + -t 4.48475 -s 10 -d 7 -p ack -e 40 -c 0 -i 7936 -a 0 -x {10.0 9.0 3963 ------- null} - -t 4.48475 -s 10 -d 7 -p ack -e 40 -c 0 -i 7936 -a 0 -x {10.0 9.0 3963 ------- null} h -t 4.48475 -s 10 -d 7 -p ack -e 40 -c 0 -i 7936 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.4848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7931 -a 0 -x {9.0 10.0 3970 ------- null} + -t 4.4848 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7931 -a 0 -x {9.0 10.0 3970 ------- null} h -t 4.4848 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7931 -a 0 -x {9.0 10.0 3970 ------- null} r -t 4.4852 -s 0 -d 9 -p ack -e 40 -c 0 -i 7926 -a 0 -x {10.0 9.0 3958 ------- null} + -t 4.4852 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7937 -a 0 -x {9.0 10.0 3973 ------- null} - -t 4.4852 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7937 -a 0 -x {9.0 10.0 3973 ------- null} h -t 4.4852 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7937 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.48522 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7923 -a 0 -x {9.0 10.0 3966 ------- null} - -t 4.48522 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7923 -a 0 -x {9.0 10.0 3966 ------- null} h -t 4.48522 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7923 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.48533 -s 0 -d 9 -p ack -e 40 -c 0 -i 7930 -a 0 -x {10.0 9.0 3960 ------- null} - -t 4.48533 -s 0 -d 9 -p ack -e 40 -c 0 -i 7930 -a 0 -x {10.0 9.0 3960 ------- null} h -t 4.48533 -s 0 -d 9 -p ack -e 40 -c 0 -i 7930 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.4857 -s 10 -d 7 -p ack -e 40 -c 0 -i 7934 -a 0 -x {10.0 9.0 3962 ------- null} + -t 4.4857 -s 7 -d 0 -p ack -e 40 -c 0 -i 7934 -a 0 -x {10.0 9.0 3962 ------- null} h -t 4.4857 -s 7 -d 8 -p ack -e 40 -c 0 -i 7934 -a 0 -x {10.0 9.0 3962 ------- null} r -t 4.48584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7919 -a 0 -x {9.0 10.0 3964 ------- null} + -t 4.48584 -s 10 -d 7 -p ack -e 40 -c 0 -i 7938 -a 0 -x {10.0 9.0 3964 ------- null} - -t 4.48584 -s 10 -d 7 -p ack -e 40 -c 0 -i 7938 -a 0 -x {10.0 9.0 3964 ------- null} h -t 4.48584 -s 10 -d 7 -p ack -e 40 -c 0 -i 7938 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.48594 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7933 -a 0 -x {9.0 10.0 3971 ------- null} + -t 4.48594 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7933 -a 0 -x {9.0 10.0 3971 ------- null} h -t 4.48594 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7933 -a 0 -x {9.0 10.0 3971 ------- null} + -t 4.4863 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7925 -a 0 -x {9.0 10.0 3967 ------- null} - -t 4.4863 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7925 -a 0 -x {9.0 10.0 3967 ------- null} h -t 4.4863 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7925 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.48642 -s 0 -d 9 -p ack -e 40 -c 0 -i 7928 -a 0 -x {10.0 9.0 3959 ------- null} + -t 4.48642 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7939 -a 0 -x {9.0 10.0 3974 ------- null} - -t 4.48642 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7939 -a 0 -x {9.0 10.0 3974 ------- null} h -t 4.48642 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7939 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.48656 -s 0 -d 9 -p ack -e 40 -c 0 -i 7932 -a 0 -x {10.0 9.0 3961 ------- null} - -t 4.48656 -s 0 -d 9 -p ack -e 40 -c 0 -i 7932 -a 0 -x {10.0 9.0 3961 ------- null} h -t 4.48656 -s 0 -d 9 -p ack -e 40 -c 0 -i 7932 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.48678 -s 10 -d 7 -p ack -e 40 -c 0 -i 7936 -a 0 -x {10.0 9.0 3963 ------- null} + -t 4.48678 -s 7 -d 0 -p ack -e 40 -c 0 -i 7936 -a 0 -x {10.0 9.0 3963 ------- null} h -t 4.48678 -s 7 -d 8 -p ack -e 40 -c 0 -i 7936 -a 0 -x {10.0 9.0 3963 ------- null} r -t 4.48693 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7921 -a 0 -x {9.0 10.0 3965 ------- null} + -t 4.48693 -s 10 -d 7 -p ack -e 40 -c 0 -i 7940 -a 0 -x {10.0 9.0 3965 ------- null} - -t 4.48693 -s 10 -d 7 -p ack -e 40 -c 0 -i 7940 -a 0 -x {10.0 9.0 3965 ------- null} h -t 4.48693 -s 10 -d 7 -p ack -e 40 -c 0 -i 7940 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.48694 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7935 -a 0 -x {9.0 10.0 3972 ------- null} + -t 4.48694 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7935 -a 0 -x {9.0 10.0 3972 ------- null} h -t 4.48694 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7935 -a 0 -x {9.0 10.0 3972 ------- null} r -t 4.48736 -s 0 -d 9 -p ack -e 40 -c 0 -i 7930 -a 0 -x {10.0 9.0 3960 ------- null} + -t 4.48736 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7941 -a 0 -x {9.0 10.0 3975 ------- null} - -t 4.48736 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7941 -a 0 -x {9.0 10.0 3975 ------- null} h -t 4.48736 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7941 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.48739 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7927 -a 0 -x {9.0 10.0 3968 ------- null} - -t 4.48739 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7927 -a 0 -x {9.0 10.0 3968 ------- null} h -t 4.48739 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7927 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.48763 -s 0 -d 9 -p ack -e 40 -c 0 -i 7934 -a 0 -x {10.0 9.0 3962 ------- null} - -t 4.48763 -s 0 -d 9 -p ack -e 40 -c 0 -i 7934 -a 0 -x {10.0 9.0 3962 ------- null} h -t 4.48763 -s 0 -d 9 -p ack -e 40 -c 0 -i 7934 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.48787 -s 10 -d 7 -p ack -e 40 -c 0 -i 7938 -a 0 -x {10.0 9.0 3964 ------- null} + -t 4.48787 -s 7 -d 0 -p ack -e 40 -c 0 -i 7938 -a 0 -x {10.0 9.0 3964 ------- null} h -t 4.48787 -s 7 -d 8 -p ack -e 40 -c 0 -i 7938 -a 0 -x {10.0 9.0 3964 ------- null} r -t 4.488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7937 -a 0 -x {9.0 10.0 3973 ------- null} + -t 4.488 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7937 -a 0 -x {9.0 10.0 3973 ------- null} h -t 4.488 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7937 -a 0 -x {9.0 10.0 3973 ------- null} r -t 4.48802 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7923 -a 0 -x {9.0 10.0 3966 ------- null} + -t 4.48802 -s 10 -d 7 -p ack -e 40 -c 0 -i 7942 -a 0 -x {10.0 9.0 3966 ------- null} - -t 4.48802 -s 10 -d 7 -p ack -e 40 -c 0 -i 7942 -a 0 -x {10.0 9.0 3966 ------- null} h -t 4.48802 -s 10 -d 7 -p ack -e 40 -c 0 -i 7942 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.48848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7929 -a 0 -x {9.0 10.0 3969 ------- null} - -t 4.48848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7929 -a 0 -x {9.0 10.0 3969 ------- null} h -t 4.48848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7929 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.48859 -s 0 -d 9 -p ack -e 40 -c 0 -i 7932 -a 0 -x {10.0 9.0 3961 ------- null} + -t 4.48859 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7943 -a 0 -x {9.0 10.0 3976 ------- null} - -t 4.48859 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7943 -a 0 -x {9.0 10.0 3976 ------- null} h -t 4.48859 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7943 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.48872 -s 0 -d 9 -p ack -e 40 -c 0 -i 7936 -a 0 -x {10.0 9.0 3963 ------- null} - -t 4.48872 -s 0 -d 9 -p ack -e 40 -c 0 -i 7936 -a 0 -x {10.0 9.0 3963 ------- null} h -t 4.48872 -s 0 -d 9 -p ack -e 40 -c 0 -i 7936 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.48896 -s 10 -d 7 -p ack -e 40 -c 0 -i 7940 -a 0 -x {10.0 9.0 3965 ------- null} + -t 4.48896 -s 7 -d 0 -p ack -e 40 -c 0 -i 7940 -a 0 -x {10.0 9.0 3965 ------- null} h -t 4.48896 -s 7 -d 8 -p ack -e 40 -c 0 -i 7940 -a 0 -x {10.0 9.0 3965 ------- null} r -t 4.4891 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7925 -a 0 -x {9.0 10.0 3967 ------- null} + -t 4.4891 -s 10 -d 7 -p ack -e 40 -c 0 -i 7944 -a 0 -x {10.0 9.0 3967 ------- null} - -t 4.4891 -s 10 -d 7 -p ack -e 40 -c 0 -i 7944 -a 0 -x {10.0 9.0 3967 ------- null} h -t 4.4891 -s 10 -d 7 -p ack -e 40 -c 0 -i 7944 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.48922 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7939 -a 0 -x {9.0 10.0 3974 ------- null} + -t 4.48922 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7939 -a 0 -x {9.0 10.0 3974 ------- null} h -t 4.48922 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7939 -a 0 -x {9.0 10.0 3974 ------- null} + -t 4.48957 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7931 -a 0 -x {9.0 10.0 3970 ------- null} - -t 4.48957 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7931 -a 0 -x {9.0 10.0 3970 ------- null} h -t 4.48957 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7931 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.48966 -s 0 -d 9 -p ack -e 40 -c 0 -i 7934 -a 0 -x {10.0 9.0 3962 ------- null} + -t 4.48966 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7945 -a 0 -x {9.0 10.0 3977 ------- null} - -t 4.48966 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7945 -a 0 -x {9.0 10.0 3977 ------- null} h -t 4.48966 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7945 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.48981 -s 0 -d 9 -p ack -e 40 -c 0 -i 7938 -a 0 -x {10.0 9.0 3964 ------- null} - -t 4.48981 -s 0 -d 9 -p ack -e 40 -c 0 -i 7938 -a 0 -x {10.0 9.0 3964 ------- null} h -t 4.48981 -s 0 -d 9 -p ack -e 40 -c 0 -i 7938 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.49005 -s 10 -d 7 -p ack -e 40 -c 0 -i 7942 -a 0 -x {10.0 9.0 3966 ------- null} + -t 4.49005 -s 7 -d 0 -p ack -e 40 -c 0 -i 7942 -a 0 -x {10.0 9.0 3966 ------- null} h -t 4.49005 -s 7 -d 8 -p ack -e 40 -c 0 -i 7942 -a 0 -x {10.0 9.0 3966 ------- null} r -t 4.49016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7941 -a 0 -x {9.0 10.0 3975 ------- null} + -t 4.49016 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7941 -a 0 -x {9.0 10.0 3975 ------- null} h -t 4.49016 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7941 -a 0 -x {9.0 10.0 3975 ------- null} r -t 4.49019 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7927 -a 0 -x {9.0 10.0 3968 ------- null} + -t 4.49019 -s 10 -d 7 -p ack -e 40 -c 0 -i 7946 -a 0 -x {10.0 9.0 3968 ------- null} - -t 4.49019 -s 10 -d 7 -p ack -e 40 -c 0 -i 7946 -a 0 -x {10.0 9.0 3968 ------- null} h -t 4.49019 -s 10 -d 7 -p ack -e 40 -c 0 -i 7946 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.49066 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7933 -a 0 -x {9.0 10.0 3971 ------- null} - -t 4.49066 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7933 -a 0 -x {9.0 10.0 3971 ------- null} h -t 4.49066 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7933 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.49074 -s 0 -d 9 -p ack -e 40 -c 0 -i 7940 -a 0 -x {10.0 9.0 3965 ------- null} - -t 4.49074 -s 0 -d 9 -p ack -e 40 -c 0 -i 7940 -a 0 -x {10.0 9.0 3965 ------- null} h -t 4.49074 -s 0 -d 9 -p ack -e 40 -c 0 -i 7940 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.49075 -s 0 -d 9 -p ack -e 40 -c 0 -i 7936 -a 0 -x {10.0 9.0 3963 ------- null} + -t 4.49075 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7947 -a 0 -x {9.0 10.0 3978 ------- null} - -t 4.49075 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7947 -a 0 -x {9.0 10.0 3978 ------- null} h -t 4.49075 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7947 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.49114 -s 10 -d 7 -p ack -e 40 -c 0 -i 7944 -a 0 -x {10.0 9.0 3967 ------- null} + -t 4.49114 -s 7 -d 0 -p ack -e 40 -c 0 -i 7944 -a 0 -x {10.0 9.0 3967 ------- null} h -t 4.49114 -s 7 -d 8 -p ack -e 40 -c 0 -i 7944 -a 0 -x {10.0 9.0 3967 ------- null} r -t 4.49128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7929 -a 0 -x {9.0 10.0 3969 ------- null} + -t 4.49128 -s 10 -d 7 -p ack -e 40 -c 0 -i 7948 -a 0 -x {10.0 9.0 3969 ------- null} - -t 4.49128 -s 10 -d 7 -p ack -e 40 -c 0 -i 7948 -a 0 -x {10.0 9.0 3969 ------- null} h -t 4.49128 -s 10 -d 7 -p ack -e 40 -c 0 -i 7948 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.49139 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7943 -a 0 -x {9.0 10.0 3976 ------- null} + -t 4.49139 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7943 -a 0 -x {9.0 10.0 3976 ------- null} h -t 4.49139 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7943 -a 0 -x {9.0 10.0 3976 ------- null} + -t 4.49174 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7935 -a 0 -x {9.0 10.0 3972 ------- null} - -t 4.49174 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7935 -a 0 -x {9.0 10.0 3972 ------- null} h -t 4.49174 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7935 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.49184 -s 0 -d 9 -p ack -e 40 -c 0 -i 7938 -a 0 -x {10.0 9.0 3964 ------- null} + -t 4.49184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7949 -a 0 -x {9.0 10.0 3979 ------- null} - -t 4.49184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7949 -a 0 -x {9.0 10.0 3979 ------- null} h -t 4.49184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7949 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.49194 -s 0 -d 9 -p ack -e 40 -c 0 -i 7942 -a 0 -x {10.0 9.0 3966 ------- null} - -t 4.49194 -s 0 -d 9 -p ack -e 40 -c 0 -i 7942 -a 0 -x {10.0 9.0 3966 ------- null} h -t 4.49194 -s 0 -d 9 -p ack -e 40 -c 0 -i 7942 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.49222 -s 10 -d 7 -p ack -e 40 -c 0 -i 7946 -a 0 -x {10.0 9.0 3968 ------- null} + -t 4.49222 -s 7 -d 0 -p ack -e 40 -c 0 -i 7946 -a 0 -x {10.0 9.0 3968 ------- null} h -t 4.49222 -s 7 -d 8 -p ack -e 40 -c 0 -i 7946 -a 0 -x {10.0 9.0 3968 ------- null} r -t 4.49237 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7931 -a 0 -x {9.0 10.0 3970 ------- null} + -t 4.49237 -s 10 -d 7 -p ack -e 40 -c 0 -i 7950 -a 0 -x {10.0 9.0 3970 ------- null} - -t 4.49237 -s 10 -d 7 -p ack -e 40 -c 0 -i 7950 -a 0 -x {10.0 9.0 3970 ------- null} h -t 4.49237 -s 10 -d 7 -p ack -e 40 -c 0 -i 7950 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.49246 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7945 -a 0 -x {9.0 10.0 3977 ------- null} + -t 4.49246 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7945 -a 0 -x {9.0 10.0 3977 ------- null} h -t 4.49246 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7945 -a 0 -x {9.0 10.0 3977 ------- null} r -t 4.49277 -s 0 -d 9 -p ack -e 40 -c 0 -i 7940 -a 0 -x {10.0 9.0 3965 ------- null} + -t 4.49277 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7951 -a 0 -x {9.0 10.0 3980 ------- null} - -t 4.49277 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7951 -a 0 -x {9.0 10.0 3980 ------- null} h -t 4.49277 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7951 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.49283 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7937 -a 0 -x {9.0 10.0 3973 ------- null} - -t 4.49283 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7937 -a 0 -x {9.0 10.0 3973 ------- null} h -t 4.49283 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7937 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.49298 -s 0 -d 9 -p ack -e 40 -c 0 -i 7944 -a 0 -x {10.0 9.0 3967 ------- null} - -t 4.49298 -s 0 -d 9 -p ack -e 40 -c 0 -i 7944 -a 0 -x {10.0 9.0 3967 ------- null} h -t 4.49298 -s 0 -d 9 -p ack -e 40 -c 0 -i 7944 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.49331 -s 10 -d 7 -p ack -e 40 -c 0 -i 7948 -a 0 -x {10.0 9.0 3969 ------- null} + -t 4.49331 -s 7 -d 0 -p ack -e 40 -c 0 -i 7948 -a 0 -x {10.0 9.0 3969 ------- null} h -t 4.49331 -s 7 -d 8 -p ack -e 40 -c 0 -i 7948 -a 0 -x {10.0 9.0 3969 ------- null} r -t 4.49346 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7933 -a 0 -x {9.0 10.0 3971 ------- null} + -t 4.49346 -s 10 -d 7 -p ack -e 40 -c 0 -i 7952 -a 0 -x {10.0 9.0 3971 ------- null} - -t 4.49346 -s 10 -d 7 -p ack -e 40 -c 0 -i 7952 -a 0 -x {10.0 9.0 3971 ------- null} h -t 4.49346 -s 10 -d 7 -p ack -e 40 -c 0 -i 7952 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.49355 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7947 -a 0 -x {9.0 10.0 3978 ------- null} + -t 4.49355 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7947 -a 0 -x {9.0 10.0 3978 ------- null} h -t 4.49355 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7947 -a 0 -x {9.0 10.0 3978 ------- null} + -t 4.49392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7939 -a 0 -x {9.0 10.0 3974 ------- null} - -t 4.49392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7939 -a 0 -x {9.0 10.0 3974 ------- null} h -t 4.49392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7939 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.49397 -s 0 -d 9 -p ack -e 40 -c 0 -i 7942 -a 0 -x {10.0 9.0 3966 ------- null} + -t 4.49397 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7953 -a 0 -x {9.0 10.0 3981 ------- null} - -t 4.49397 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7953 -a 0 -x {9.0 10.0 3981 ------- null} h -t 4.49397 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7953 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.49406 -s 0 -d 9 -p ack -e 40 -c 0 -i 7946 -a 0 -x {10.0 9.0 3968 ------- null} - -t 4.49406 -s 0 -d 9 -p ack -e 40 -c 0 -i 7946 -a 0 -x {10.0 9.0 3968 ------- null} h -t 4.49406 -s 0 -d 9 -p ack -e 40 -c 0 -i 7946 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.4944 -s 10 -d 7 -p ack -e 40 -c 0 -i 7950 -a 0 -x {10.0 9.0 3970 ------- null} + -t 4.4944 -s 7 -d 0 -p ack -e 40 -c 0 -i 7950 -a 0 -x {10.0 9.0 3970 ------- null} h -t 4.4944 -s 7 -d 8 -p ack -e 40 -c 0 -i 7950 -a 0 -x {10.0 9.0 3970 ------- null} r -t 4.49454 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7935 -a 0 -x {9.0 10.0 3972 ------- null} + -t 4.49454 -s 10 -d 7 -p ack -e 40 -c 0 -i 7954 -a 0 -x {10.0 9.0 3972 ------- null} - -t 4.49454 -s 10 -d 7 -p ack -e 40 -c 0 -i 7954 -a 0 -x {10.0 9.0 3972 ------- null} h -t 4.49454 -s 10 -d 7 -p ack -e 40 -c 0 -i 7954 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.49464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7949 -a 0 -x {9.0 10.0 3979 ------- null} + -t 4.49464 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7949 -a 0 -x {9.0 10.0 3979 ------- null} h -t 4.49464 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7949 -a 0 -x {9.0 10.0 3979 ------- null} r -t 4.49501 -s 0 -d 9 -p ack -e 40 -c 0 -i 7944 -a 0 -x {10.0 9.0 3967 ------- null} + -t 4.49501 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7955 -a 0 -x {9.0 10.0 3982 ------- null} - -t 4.49501 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7955 -a 0 -x {9.0 10.0 3982 ------- null} h -t 4.49501 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7955 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.49501 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7941 -a 0 -x {9.0 10.0 3975 ------- null} - -t 4.49501 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7941 -a 0 -x {9.0 10.0 3975 ------- null} h -t 4.49501 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7941 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.49528 -s 0 -d 9 -p ack -e 40 -c 0 -i 7948 -a 0 -x {10.0 9.0 3969 ------- null} - -t 4.49528 -s 0 -d 9 -p ack -e 40 -c 0 -i 7948 -a 0 -x {10.0 9.0 3969 ------- null} h -t 4.49528 -s 0 -d 9 -p ack -e 40 -c 0 -i 7948 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.49549 -s 10 -d 7 -p ack -e 40 -c 0 -i 7952 -a 0 -x {10.0 9.0 3971 ------- null} + -t 4.49549 -s 7 -d 0 -p ack -e 40 -c 0 -i 7952 -a 0 -x {10.0 9.0 3971 ------- null} h -t 4.49549 -s 7 -d 8 -p ack -e 40 -c 0 -i 7952 -a 0 -x {10.0 9.0 3971 ------- null} r -t 4.49557 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7951 -a 0 -x {9.0 10.0 3980 ------- null} + -t 4.49557 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7951 -a 0 -x {9.0 10.0 3980 ------- null} h -t 4.49557 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7951 -a 0 -x {9.0 10.0 3980 ------- null} r -t 4.49563 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7937 -a 0 -x {9.0 10.0 3973 ------- null} + -t 4.49563 -s 10 -d 7 -p ack -e 40 -c 0 -i 7956 -a 0 -x {10.0 9.0 3973 ------- null} - -t 4.49563 -s 10 -d 7 -p ack -e 40 -c 0 -i 7956 -a 0 -x {10.0 9.0 3973 ------- null} h -t 4.49563 -s 10 -d 7 -p ack -e 40 -c 0 -i 7956 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.4961 -s 0 -d 9 -p ack -e 40 -c 0 -i 7946 -a 0 -x {10.0 9.0 3968 ------- null} + -t 4.4961 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7957 -a 0 -x {9.0 10.0 3983 ------- null} - -t 4.4961 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7957 -a 0 -x {9.0 10.0 3983 ------- null} h -t 4.4961 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7957 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.49635 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7943 -a 0 -x {9.0 10.0 3976 ------- null} - -t 4.49635 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7943 -a 0 -x {9.0 10.0 3976 ------- null} h -t 4.49635 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7943 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.49658 -s 10 -d 7 -p ack -e 40 -c 0 -i 7954 -a 0 -x {10.0 9.0 3972 ------- null} + -t 4.49658 -s 7 -d 0 -p ack -e 40 -c 0 -i 7954 -a 0 -x {10.0 9.0 3972 ------- null} h -t 4.49658 -s 7 -d 8 -p ack -e 40 -c 0 -i 7954 -a 0 -x {10.0 9.0 3972 ------- null} + -t 4.49664 -s 0 -d 9 -p ack -e 40 -c 0 -i 7950 -a 0 -x {10.0 9.0 3970 ------- null} - -t 4.49664 -s 0 -d 9 -p ack -e 40 -c 0 -i 7950 -a 0 -x {10.0 9.0 3970 ------- null} h -t 4.49664 -s 0 -d 9 -p ack -e 40 -c 0 -i 7950 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.49672 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7939 -a 0 -x {9.0 10.0 3974 ------- null} + -t 4.49672 -s 10 -d 7 -p ack -e 40 -c 0 -i 7958 -a 0 -x {10.0 9.0 3974 ------- null} - -t 4.49672 -s 10 -d 7 -p ack -e 40 -c 0 -i 7958 -a 0 -x {10.0 9.0 3974 ------- null} h -t 4.49672 -s 10 -d 7 -p ack -e 40 -c 0 -i 7958 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.49677 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7953 -a 0 -x {9.0 10.0 3981 ------- null} + -t 4.49677 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7953 -a 0 -x {9.0 10.0 3981 ------- null} h -t 4.49677 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7953 -a 0 -x {9.0 10.0 3981 ------- null} r -t 4.49731 -s 0 -d 9 -p ack -e 40 -c 0 -i 7948 -a 0 -x {10.0 9.0 3969 ------- null} + -t 4.49731 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7959 -a 0 -x {9.0 10.0 3984 ------- null} - -t 4.49731 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7959 -a 0 -x {9.0 10.0 3984 ------- null} h -t 4.49731 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7959 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.49755 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7945 -a 0 -x {9.0 10.0 3977 ------- null} - -t 4.49755 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7945 -a 0 -x {9.0 10.0 3977 ------- null} h -t 4.49755 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7945 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.49766 -s 10 -d 7 -p ack -e 40 -c 0 -i 7956 -a 0 -x {10.0 9.0 3973 ------- null} + -t 4.49766 -s 7 -d 0 -p ack -e 40 -c 0 -i 7956 -a 0 -x {10.0 9.0 3973 ------- null} h -t 4.49766 -s 7 -d 8 -p ack -e 40 -c 0 -i 7956 -a 0 -x {10.0 9.0 3973 ------- null} + -t 4.49768 -s 0 -d 9 -p ack -e 40 -c 0 -i 7952 -a 0 -x {10.0 9.0 3971 ------- null} - -t 4.49768 -s 0 -d 9 -p ack -e 40 -c 0 -i 7952 -a 0 -x {10.0 9.0 3971 ------- null} h -t 4.49768 -s 0 -d 9 -p ack -e 40 -c 0 -i 7952 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.49781 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7955 -a 0 -x {9.0 10.0 3982 ------- null} + -t 4.49781 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7955 -a 0 -x {9.0 10.0 3982 ------- null} h -t 4.49781 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7955 -a 0 -x {9.0 10.0 3982 ------- null} r -t 4.49781 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7941 -a 0 -x {9.0 10.0 3975 ------- null} + -t 4.49781 -s 10 -d 7 -p ack -e 40 -c 0 -i 7960 -a 0 -x {10.0 9.0 3975 ------- null} - -t 4.49781 -s 10 -d 7 -p ack -e 40 -c 0 -i 7960 -a 0 -x {10.0 9.0 3975 ------- null} h -t 4.49781 -s 10 -d 7 -p ack -e 40 -c 0 -i 7960 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.49864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7947 -a 0 -x {9.0 10.0 3978 ------- null} - -t 4.49864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7947 -a 0 -x {9.0 10.0 3978 ------- null} h -t 4.49864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7947 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.49867 -s 0 -d 9 -p ack -e 40 -c 0 -i 7950 -a 0 -x {10.0 9.0 3970 ------- null} + -t 4.49867 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7961 -a 0 -x {9.0 10.0 3985 ------- null} - -t 4.49867 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7961 -a 0 -x {9.0 10.0 3985 ------- null} h -t 4.49867 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7961 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.49875 -s 10 -d 7 -p ack -e 40 -c 0 -i 7958 -a 0 -x {10.0 9.0 3974 ------- null} + -t 4.49875 -s 7 -d 0 -p ack -e 40 -c 0 -i 7958 -a 0 -x {10.0 9.0 3974 ------- null} h -t 4.49875 -s 7 -d 8 -p ack -e 40 -c 0 -i 7958 -a 0 -x {10.0 9.0 3974 ------- null} + -t 4.4988 -s 0 -d 9 -p ack -e 40 -c 0 -i 7954 -a 0 -x {10.0 9.0 3972 ------- null} - -t 4.4988 -s 0 -d 9 -p ack -e 40 -c 0 -i 7954 -a 0 -x {10.0 9.0 3972 ------- null} h -t 4.4988 -s 0 -d 9 -p ack -e 40 -c 0 -i 7954 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.4989 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7957 -a 0 -x {9.0 10.0 3983 ------- null} + -t 4.4989 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7957 -a 0 -x {9.0 10.0 3983 ------- null} h -t 4.4989 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7957 -a 0 -x {9.0 10.0 3983 ------- null} r -t 4.49915 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7943 -a 0 -x {9.0 10.0 3976 ------- null} + -t 4.49915 -s 10 -d 7 -p ack -e 40 -c 0 -i 7962 -a 0 -x {10.0 9.0 3976 ------- null} - -t 4.49915 -s 10 -d 7 -p ack -e 40 -c 0 -i 7962 -a 0 -x {10.0 9.0 3976 ------- null} h -t 4.49915 -s 10 -d 7 -p ack -e 40 -c 0 -i 7962 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.49971 -s 0 -d 9 -p ack -e 40 -c 0 -i 7952 -a 0 -x {10.0 9.0 3971 ------- null} + -t 4.49971 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7963 -a 0 -x {9.0 10.0 3986 ------- null} - -t 4.49971 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7963 -a 0 -x {9.0 10.0 3986 ------- null} h -t 4.49971 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7963 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.49973 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7949 -a 0 -x {9.0 10.0 3979 ------- null} - -t 4.49973 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7949 -a 0 -x {9.0 10.0 3979 ------- null} h -t 4.49973 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7949 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.49984 -s 10 -d 7 -p ack -e 40 -c 0 -i 7960 -a 0 -x {10.0 9.0 3975 ------- null} + -t 4.49984 -s 7 -d 0 -p ack -e 40 -c 0 -i 7960 -a 0 -x {10.0 9.0 3975 ------- null} h -t 4.49984 -s 7 -d 8 -p ack -e 40 -c 0 -i 7960 -a 0 -x {10.0 9.0 3975 ------- null} + -t 4.50003 -s 0 -d 9 -p ack -e 40 -c 0 -i 7956 -a 0 -x {10.0 9.0 3973 ------- null} - -t 4.50003 -s 0 -d 9 -p ack -e 40 -c 0 -i 7956 -a 0 -x {10.0 9.0 3973 ------- null} h -t 4.50003 -s 0 -d 9 -p ack -e 40 -c 0 -i 7956 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.50011 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7959 -a 0 -x {9.0 10.0 3984 ------- null} + -t 4.50011 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7959 -a 0 -x {9.0 10.0 3984 ------- null} h -t 4.50011 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7959 -a 0 -x {9.0 10.0 3984 ------- null} r -t 4.50035 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7945 -a 0 -x {9.0 10.0 3977 ------- null} + -t 4.50035 -s 10 -d 7 -p ack -e 40 -c 0 -i 7964 -a 0 -x {10.0 9.0 3977 ------- null} - -t 4.50035 -s 10 -d 7 -p ack -e 40 -c 0 -i 7964 -a 0 -x {10.0 9.0 3977 ------- null} h -t 4.50035 -s 10 -d 7 -p ack -e 40 -c 0 -i 7964 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.50083 -s 0 -d 9 -p ack -e 40 -c 0 -i 7954 -a 0 -x {10.0 9.0 3972 ------- null} + -t 4.50083 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7965 -a 0 -x {9.0 10.0 3987 ------- null} - -t 4.50083 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7965 -a 0 -x {9.0 10.0 3987 ------- null} h -t 4.50083 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7965 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.5009 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7951 -a 0 -x {9.0 10.0 3980 ------- null} - -t 4.5009 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7951 -a 0 -x {9.0 10.0 3980 ------- null} h -t 4.5009 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7951 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.50109 -s 0 -d 9 -p ack -e 40 -c 0 -i 7958 -a 0 -x {10.0 9.0 3974 ------- null} - -t 4.50109 -s 0 -d 9 -p ack -e 40 -c 0 -i 7958 -a 0 -x {10.0 9.0 3974 ------- null} h -t 4.50109 -s 0 -d 9 -p ack -e 40 -c 0 -i 7958 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.50118 -s 10 -d 7 -p ack -e 40 -c 0 -i 7962 -a 0 -x {10.0 9.0 3976 ------- null} + -t 4.50118 -s 7 -d 0 -p ack -e 40 -c 0 -i 7962 -a 0 -x {10.0 9.0 3976 ------- null} h -t 4.50118 -s 7 -d 8 -p ack -e 40 -c 0 -i 7962 -a 0 -x {10.0 9.0 3976 ------- null} r -t 4.50144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7947 -a 0 -x {9.0 10.0 3978 ------- null} + -t 4.50144 -s 10 -d 7 -p ack -e 40 -c 0 -i 7966 -a 0 -x {10.0 9.0 3978 ------- null} - -t 4.50144 -s 10 -d 7 -p ack -e 40 -c 0 -i 7966 -a 0 -x {10.0 9.0 3978 ------- null} h -t 4.50144 -s 10 -d 7 -p ack -e 40 -c 0 -i 7966 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.50147 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7961 -a 0 -x {9.0 10.0 3985 ------- null} + -t 4.50147 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7961 -a 0 -x {9.0 10.0 3985 ------- null} h -t 4.50147 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7961 -a 0 -x {9.0 10.0 3985 ------- null} + -t 4.50198 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7953 -a 0 -x {9.0 10.0 3981 ------- null} - -t 4.50198 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7953 -a 0 -x {9.0 10.0 3981 ------- null} h -t 4.50198 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7953 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.50206 -s 0 -d 9 -p ack -e 40 -c 0 -i 7956 -a 0 -x {10.0 9.0 3973 ------- null} + -t 4.50206 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7967 -a 0 -x {9.0 10.0 3988 ------- null} - -t 4.50206 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7967 -a 0 -x {9.0 10.0 3988 ------- null} h -t 4.50206 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7967 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.5021 -s 0 -d 9 -p ack -e 40 -c 0 -i 7960 -a 0 -x {10.0 9.0 3975 ------- null} - -t 4.5021 -s 0 -d 9 -p ack -e 40 -c 0 -i 7960 -a 0 -x {10.0 9.0 3975 ------- null} h -t 4.5021 -s 0 -d 9 -p ack -e 40 -c 0 -i 7960 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.50238 -s 10 -d 7 -p ack -e 40 -c 0 -i 7964 -a 0 -x {10.0 9.0 3977 ------- null} + -t 4.50238 -s 7 -d 0 -p ack -e 40 -c 0 -i 7964 -a 0 -x {10.0 9.0 3977 ------- null} h -t 4.50238 -s 7 -d 8 -p ack -e 40 -c 0 -i 7964 -a 0 -x {10.0 9.0 3977 ------- null} r -t 4.50251 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7963 -a 0 -x {9.0 10.0 3986 ------- null} + -t 4.50251 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7963 -a 0 -x {9.0 10.0 3986 ------- null} h -t 4.50251 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7963 -a 0 -x {9.0 10.0 3986 ------- null} r -t 4.50253 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7949 -a 0 -x {9.0 10.0 3979 ------- null} + -t 4.50253 -s 10 -d 7 -p ack -e 40 -c 0 -i 7968 -a 0 -x {10.0 9.0 3979 ------- null} - -t 4.50253 -s 10 -d 7 -p ack -e 40 -c 0 -i 7968 -a 0 -x {10.0 9.0 3979 ------- null} h -t 4.50253 -s 10 -d 7 -p ack -e 40 -c 0 -i 7968 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.50307 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7955 -a 0 -x {9.0 10.0 3982 ------- null} - -t 4.50307 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7955 -a 0 -x {9.0 10.0 3982 ------- null} h -t 4.50307 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7955 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.50312 -s 0 -d 9 -p ack -e 40 -c 0 -i 7958 -a 0 -x {10.0 9.0 3974 ------- null} + -t 4.50312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7969 -a 0 -x {9.0 10.0 3989 ------- null} - -t 4.50312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7969 -a 0 -x {9.0 10.0 3989 ------- null} h -t 4.50312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7969 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.50314 -s 0 -d 9 -p ack -e 40 -c 0 -i 7962 -a 0 -x {10.0 9.0 3976 ------- null} - -t 4.50314 -s 0 -d 9 -p ack -e 40 -c 0 -i 7962 -a 0 -x {10.0 9.0 3976 ------- null} h -t 4.50314 -s 0 -d 9 -p ack -e 40 -c 0 -i 7962 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.50347 -s 10 -d 7 -p ack -e 40 -c 0 -i 7966 -a 0 -x {10.0 9.0 3978 ------- null} + -t 4.50347 -s 7 -d 0 -p ack -e 40 -c 0 -i 7966 -a 0 -x {10.0 9.0 3978 ------- null} h -t 4.50347 -s 7 -d 8 -p ack -e 40 -c 0 -i 7966 -a 0 -x {10.0 9.0 3978 ------- null} r -t 4.50363 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7965 -a 0 -x {9.0 10.0 3987 ------- null} + -t 4.50363 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7965 -a 0 -x {9.0 10.0 3987 ------- null} h -t 4.50363 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7965 -a 0 -x {9.0 10.0 3987 ------- null} r -t 4.5037 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7951 -a 0 -x {9.0 10.0 3980 ------- null} + -t 4.5037 -s 10 -d 7 -p ack -e 40 -c 0 -i 7970 -a 0 -x {10.0 9.0 3980 ------- null} - -t 4.5037 -s 10 -d 7 -p ack -e 40 -c 0 -i 7970 -a 0 -x {10.0 9.0 3980 ------- null} h -t 4.5037 -s 10 -d 7 -p ack -e 40 -c 0 -i 7970 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.50413 -s 0 -d 9 -p ack -e 40 -c 0 -i 7960 -a 0 -x {10.0 9.0 3975 ------- null} + -t 4.50413 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7971 -a 0 -x {9.0 10.0 3990 ------- null} - -t 4.50413 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7971 -a 0 -x {9.0 10.0 3990 ------- null} h -t 4.50413 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7971 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.50416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7957 -a 0 -x {9.0 10.0 3983 ------- null} - -t 4.50416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7957 -a 0 -x {9.0 10.0 3983 ------- null} h -t 4.50416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7957 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.50446 -s 0 -d 9 -p ack -e 40 -c 0 -i 7964 -a 0 -x {10.0 9.0 3977 ------- null} - -t 4.50446 -s 0 -d 9 -p ack -e 40 -c 0 -i 7964 -a 0 -x {10.0 9.0 3977 ------- null} h -t 4.50446 -s 0 -d 9 -p ack -e 40 -c 0 -i 7964 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.50456 -s 10 -d 7 -p ack -e 40 -c 0 -i 7968 -a 0 -x {10.0 9.0 3979 ------- null} + -t 4.50456 -s 7 -d 0 -p ack -e 40 -c 0 -i 7968 -a 0 -x {10.0 9.0 3979 ------- null} h -t 4.50456 -s 7 -d 8 -p ack -e 40 -c 0 -i 7968 -a 0 -x {10.0 9.0 3979 ------- null} r -t 4.50478 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7953 -a 0 -x {9.0 10.0 3981 ------- null} + -t 4.50478 -s 10 -d 7 -p ack -e 40 -c 0 -i 7972 -a 0 -x {10.0 9.0 3981 ------- null} - -t 4.50478 -s 10 -d 7 -p ack -e 40 -c 0 -i 7972 -a 0 -x {10.0 9.0 3981 ------- null} h -t 4.50478 -s 10 -d 7 -p ack -e 40 -c 0 -i 7972 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.50486 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7967 -a 0 -x {9.0 10.0 3988 ------- null} + -t 4.50486 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7967 -a 0 -x {9.0 10.0 3988 ------- null} h -t 4.50486 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7967 -a 0 -x {9.0 10.0 3988 ------- null} r -t 4.50517 -s 0 -d 9 -p ack -e 40 -c 0 -i 7962 -a 0 -x {10.0 9.0 3976 ------- null} + -t 4.50517 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7973 -a 0 -x {9.0 10.0 3991 ------- null} - -t 4.50517 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7973 -a 0 -x {9.0 10.0 3991 ------- null} h -t 4.50517 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7973 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.5055 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7959 -a 0 -x {9.0 10.0 3984 ------- null} - -t 4.5055 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7959 -a 0 -x {9.0 10.0 3984 ------- null} h -t 4.5055 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7959 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.5057 -s 0 -d 9 -p ack -e 40 -c 0 -i 7966 -a 0 -x {10.0 9.0 3978 ------- null} - -t 4.5057 -s 0 -d 9 -p ack -e 40 -c 0 -i 7966 -a 0 -x {10.0 9.0 3978 ------- null} h -t 4.5057 -s 0 -d 9 -p ack -e 40 -c 0 -i 7966 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.50573 -s 10 -d 7 -p ack -e 40 -c 0 -i 7970 -a 0 -x {10.0 9.0 3980 ------- null} + -t 4.50573 -s 7 -d 0 -p ack -e 40 -c 0 -i 7970 -a 0 -x {10.0 9.0 3980 ------- null} h -t 4.50573 -s 7 -d 8 -p ack -e 40 -c 0 -i 7970 -a 0 -x {10.0 9.0 3980 ------- null} r -t 4.50587 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7955 -a 0 -x {9.0 10.0 3982 ------- null} + -t 4.50587 -s 10 -d 7 -p ack -e 40 -c 0 -i 7974 -a 0 -x {10.0 9.0 3982 ------- null} - -t 4.50587 -s 10 -d 7 -p ack -e 40 -c 0 -i 7974 -a 0 -x {10.0 9.0 3982 ------- null} h -t 4.50587 -s 10 -d 7 -p ack -e 40 -c 0 -i 7974 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.50592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7969 -a 0 -x {9.0 10.0 3989 ------- null} + -t 4.50592 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7969 -a 0 -x {9.0 10.0 3989 ------- null} h -t 4.50592 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7969 -a 0 -x {9.0 10.0 3989 ------- null} r -t 4.5065 -s 0 -d 9 -p ack -e 40 -c 0 -i 7964 -a 0 -x {10.0 9.0 3977 ------- null} + -t 4.5065 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7975 -a 0 -x {9.0 10.0 3992 ------- null} - -t 4.5065 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7975 -a 0 -x {9.0 10.0 3992 ------- null} h -t 4.5065 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7975 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.50659 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7961 -a 0 -x {9.0 10.0 3985 ------- null} - -t 4.50659 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7961 -a 0 -x {9.0 10.0 3985 ------- null} h -t 4.50659 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7961 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.50666 -s 0 -d 9 -p ack -e 40 -c 0 -i 7968 -a 0 -x {10.0 9.0 3979 ------- null} - -t 4.50666 -s 0 -d 9 -p ack -e 40 -c 0 -i 7968 -a 0 -x {10.0 9.0 3979 ------- null} h -t 4.50666 -s 0 -d 9 -p ack -e 40 -c 0 -i 7968 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.50682 -s 10 -d 7 -p ack -e 40 -c 0 -i 7972 -a 0 -x {10.0 9.0 3981 ------- null} + -t 4.50682 -s 7 -d 0 -p ack -e 40 -c 0 -i 7972 -a 0 -x {10.0 9.0 3981 ------- null} h -t 4.50682 -s 7 -d 8 -p ack -e 40 -c 0 -i 7972 -a 0 -x {10.0 9.0 3981 ------- null} r -t 4.50693 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7971 -a 0 -x {9.0 10.0 3990 ------- null} + -t 4.50693 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7971 -a 0 -x {9.0 10.0 3990 ------- null} h -t 4.50693 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7971 -a 0 -x {9.0 10.0 3990 ------- null} r -t 4.50696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7957 -a 0 -x {9.0 10.0 3983 ------- null} + -t 4.50696 -s 10 -d 7 -p ack -e 40 -c 0 -i 7976 -a 0 -x {10.0 9.0 3983 ------- null} - -t 4.50696 -s 10 -d 7 -p ack -e 40 -c 0 -i 7976 -a 0 -x {10.0 9.0 3983 ------- null} h -t 4.50696 -s 10 -d 7 -p ack -e 40 -c 0 -i 7976 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.50768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7963 -a 0 -x {9.0 10.0 3986 ------- null} - -t 4.50768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7963 -a 0 -x {9.0 10.0 3986 ------- null} h -t 4.50768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7963 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.50773 -s 0 -d 9 -p ack -e 40 -c 0 -i 7966 -a 0 -x {10.0 9.0 3978 ------- null} + -t 4.50773 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7977 -a 0 -x {9.0 10.0 3993 ------- null} - -t 4.50773 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7977 -a 0 -x {9.0 10.0 3993 ------- null} h -t 4.50773 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7977 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.50781 -s 0 -d 9 -p ack -e 40 -c 0 -i 7970 -a 0 -x {10.0 9.0 3980 ------- null} - -t 4.50781 -s 0 -d 9 -p ack -e 40 -c 0 -i 7970 -a 0 -x {10.0 9.0 3980 ------- null} h -t 4.50781 -s 0 -d 9 -p ack -e 40 -c 0 -i 7970 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.5079 -s 10 -d 7 -p ack -e 40 -c 0 -i 7974 -a 0 -x {10.0 9.0 3982 ------- null} + -t 4.5079 -s 7 -d 0 -p ack -e 40 -c 0 -i 7974 -a 0 -x {10.0 9.0 3982 ------- null} h -t 4.5079 -s 7 -d 8 -p ack -e 40 -c 0 -i 7974 -a 0 -x {10.0 9.0 3982 ------- null} r -t 4.50797 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7973 -a 0 -x {9.0 10.0 3991 ------- null} + -t 4.50797 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7973 -a 0 -x {9.0 10.0 3991 ------- null} h -t 4.50797 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7973 -a 0 -x {9.0 10.0 3991 ------- null} r -t 4.5083 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7959 -a 0 -x {9.0 10.0 3984 ------- null} + -t 4.5083 -s 10 -d 7 -p ack -e 40 -c 0 -i 7978 -a 0 -x {10.0 9.0 3984 ------- null} - -t 4.5083 -s 10 -d 7 -p ack -e 40 -c 0 -i 7978 -a 0 -x {10.0 9.0 3984 ------- null} h -t 4.5083 -s 10 -d 7 -p ack -e 40 -c 0 -i 7978 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.50869 -s 0 -d 9 -p ack -e 40 -c 0 -i 7968 -a 0 -x {10.0 9.0 3979 ------- null} + -t 4.50869 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7979 -a 0 -x {9.0 10.0 3994 ------- null} - -t 4.50869 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7979 -a 0 -x {9.0 10.0 3994 ------- null} h -t 4.50869 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7979 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.50877 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7965 -a 0 -x {9.0 10.0 3987 ------- null} - -t 4.50877 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7965 -a 0 -x {9.0 10.0 3987 ------- null} h -t 4.50877 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7965 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.5089 -s 0 -d 9 -p ack -e 40 -c 0 -i 7972 -a 0 -x {10.0 9.0 3981 ------- null} - -t 4.5089 -s 0 -d 9 -p ack -e 40 -c 0 -i 7972 -a 0 -x {10.0 9.0 3981 ------- null} h -t 4.5089 -s 0 -d 9 -p ack -e 40 -c 0 -i 7972 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.50899 -s 10 -d 7 -p ack -e 40 -c 0 -i 7976 -a 0 -x {10.0 9.0 3983 ------- null} + -t 4.50899 -s 7 -d 0 -p ack -e 40 -c 0 -i 7976 -a 0 -x {10.0 9.0 3983 ------- null} h -t 4.50899 -s 7 -d 8 -p ack -e 40 -c 0 -i 7976 -a 0 -x {10.0 9.0 3983 ------- null} r -t 4.5093 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7975 -a 0 -x {9.0 10.0 3992 ------- null} + -t 4.5093 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7975 -a 0 -x {9.0 10.0 3992 ------- null} h -t 4.5093 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7975 -a 0 -x {9.0 10.0 3992 ------- null} r -t 4.50939 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7961 -a 0 -x {9.0 10.0 3985 ------- null} + -t 4.50939 -s 10 -d 7 -p ack -e 40 -c 0 -i 7980 -a 0 -x {10.0 9.0 3985 ------- null} - -t 4.50939 -s 10 -d 7 -p ack -e 40 -c 0 -i 7980 -a 0 -x {10.0 9.0 3985 ------- null} h -t 4.50939 -s 10 -d 7 -p ack -e 40 -c 0 -i 7980 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.50984 -s 0 -d 9 -p ack -e 40 -c 0 -i 7970 -a 0 -x {10.0 9.0 3980 ------- null} + -t 4.50984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7981 -a 0 -x {9.0 10.0 3995 ------- null} - -t 4.50984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7981 -a 0 -x {9.0 10.0 3995 ------- null} h -t 4.50984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7981 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.50986 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7967 -a 0 -x {9.0 10.0 3988 ------- null} - -t 4.50986 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7967 -a 0 -x {9.0 10.0 3988 ------- null} h -t 4.50986 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7967 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.50997 -s 0 -d 9 -p ack -e 40 -c 0 -i 7974 -a 0 -x {10.0 9.0 3982 ------- null} - -t 4.50997 -s 0 -d 9 -p ack -e 40 -c 0 -i 7974 -a 0 -x {10.0 9.0 3982 ------- null} h -t 4.50997 -s 0 -d 9 -p ack -e 40 -c 0 -i 7974 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.51034 -s 10 -d 7 -p ack -e 40 -c 0 -i 7978 -a 0 -x {10.0 9.0 3984 ------- null} + -t 4.51034 -s 7 -d 0 -p ack -e 40 -c 0 -i 7978 -a 0 -x {10.0 9.0 3984 ------- null} h -t 4.51034 -s 7 -d 8 -p ack -e 40 -c 0 -i 7978 -a 0 -x {10.0 9.0 3984 ------- null} r -t 4.51048 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7963 -a 0 -x {9.0 10.0 3986 ------- null} + -t 4.51048 -s 10 -d 7 -p ack -e 40 -c 0 -i 7982 -a 0 -x {10.0 9.0 3986 ------- null} - -t 4.51048 -s 10 -d 7 -p ack -e 40 -c 0 -i 7982 -a 0 -x {10.0 9.0 3986 ------- null} h -t 4.51048 -s 10 -d 7 -p ack -e 40 -c 0 -i 7982 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.51053 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7977 -a 0 -x {9.0 10.0 3993 ------- null} + -t 4.51053 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7977 -a 0 -x {9.0 10.0 3993 ------- null} h -t 4.51053 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7977 -a 0 -x {9.0 10.0 3993 ------- null} r -t 4.51093 -s 0 -d 9 -p ack -e 40 -c 0 -i 7972 -a 0 -x {10.0 9.0 3981 ------- null} + -t 4.51093 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7983 -a 0 -x {9.0 10.0 3996 ------- null} - -t 4.51093 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7983 -a 0 -x {9.0 10.0 3996 ------- null} h -t 4.51093 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7983 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.51094 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7969 -a 0 -x {9.0 10.0 3989 ------- null} - -t 4.51094 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7969 -a 0 -x {9.0 10.0 3989 ------- null} h -t 4.51094 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7969 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.51106 -s 0 -d 9 -p ack -e 40 -c 0 -i 7976 -a 0 -x {10.0 9.0 3983 ------- null} - -t 4.51106 -s 0 -d 9 -p ack -e 40 -c 0 -i 7976 -a 0 -x {10.0 9.0 3983 ------- null} h -t 4.51106 -s 0 -d 9 -p ack -e 40 -c 0 -i 7976 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.51142 -s 10 -d 7 -p ack -e 40 -c 0 -i 7980 -a 0 -x {10.0 9.0 3985 ------- null} + -t 4.51142 -s 7 -d 0 -p ack -e 40 -c 0 -i 7980 -a 0 -x {10.0 9.0 3985 ------- null} h -t 4.51142 -s 7 -d 8 -p ack -e 40 -c 0 -i 7980 -a 0 -x {10.0 9.0 3985 ------- null} r -t 4.51149 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7979 -a 0 -x {9.0 10.0 3994 ------- null} + -t 4.51149 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7979 -a 0 -x {9.0 10.0 3994 ------- null} h -t 4.51149 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7979 -a 0 -x {9.0 10.0 3994 ------- null} r -t 4.51157 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7965 -a 0 -x {9.0 10.0 3987 ------- null} + -t 4.51157 -s 10 -d 7 -p ack -e 40 -c 0 -i 7984 -a 0 -x {10.0 9.0 3987 ------- null} - -t 4.51157 -s 10 -d 7 -p ack -e 40 -c 0 -i 7984 -a 0 -x {10.0 9.0 3987 ------- null} h -t 4.51157 -s 10 -d 7 -p ack -e 40 -c 0 -i 7984 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.512 -s 0 -d 9 -p ack -e 40 -c 0 -i 7974 -a 0 -x {10.0 9.0 3982 ------- null} + -t 4.512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7985 -a 0 -x {9.0 10.0 3997 ------- null} - -t 4.512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7985 -a 0 -x {9.0 10.0 3997 ------- null} h -t 4.512 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7985 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.51203 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7971 -a 0 -x {9.0 10.0 3990 ------- null} - -t 4.51203 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7971 -a 0 -x {9.0 10.0 3990 ------- null} h -t 4.51203 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7971 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.51224 -s 0 -d 9 -p ack -e 40 -c 0 -i 7978 -a 0 -x {10.0 9.0 3984 ------- null} - -t 4.51224 -s 0 -d 9 -p ack -e 40 -c 0 -i 7978 -a 0 -x {10.0 9.0 3984 ------- null} h -t 4.51224 -s 0 -d 9 -p ack -e 40 -c 0 -i 7978 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.51251 -s 10 -d 7 -p ack -e 40 -c 0 -i 7982 -a 0 -x {10.0 9.0 3986 ------- null} + -t 4.51251 -s 7 -d 0 -p ack -e 40 -c 0 -i 7982 -a 0 -x {10.0 9.0 3986 ------- null} h -t 4.51251 -s 7 -d 8 -p ack -e 40 -c 0 -i 7982 -a 0 -x {10.0 9.0 3986 ------- null} r -t 4.51264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7981 -a 0 -x {9.0 10.0 3995 ------- null} + -t 4.51264 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7981 -a 0 -x {9.0 10.0 3995 ------- null} h -t 4.51264 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7981 -a 0 -x {9.0 10.0 3995 ------- null} r -t 4.51266 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7967 -a 0 -x {9.0 10.0 3988 ------- null} + -t 4.51266 -s 10 -d 7 -p ack -e 40 -c 0 -i 7986 -a 0 -x {10.0 9.0 3988 ------- null} - -t 4.51266 -s 10 -d 7 -p ack -e 40 -c 0 -i 7986 -a 0 -x {10.0 9.0 3988 ------- null} h -t 4.51266 -s 10 -d 7 -p ack -e 40 -c 0 -i 7986 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.51309 -s 0 -d 9 -p ack -e 40 -c 0 -i 7976 -a 0 -x {10.0 9.0 3983 ------- null} + -t 4.51309 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7987 -a 0 -x {9.0 10.0 3998 ------- null} - -t 4.51309 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7987 -a 0 -x {9.0 10.0 3998 ------- null} h -t 4.51309 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7987 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.51312 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7973 -a 0 -x {9.0 10.0 3991 ------- null} - -t 4.51312 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7973 -a 0 -x {9.0 10.0 3991 ------- null} h -t 4.51312 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7973 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.51342 -s 0 -d 9 -p ack -e 40 -c 0 -i 7980 -a 0 -x {10.0 9.0 3985 ------- null} - -t 4.51342 -s 0 -d 9 -p ack -e 40 -c 0 -i 7980 -a 0 -x {10.0 9.0 3985 ------- null} h -t 4.51342 -s 0 -d 9 -p ack -e 40 -c 0 -i 7980 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.5136 -s 10 -d 7 -p ack -e 40 -c 0 -i 7984 -a 0 -x {10.0 9.0 3987 ------- null} + -t 4.5136 -s 7 -d 0 -p ack -e 40 -c 0 -i 7984 -a 0 -x {10.0 9.0 3987 ------- null} h -t 4.5136 -s 7 -d 8 -p ack -e 40 -c 0 -i 7984 -a 0 -x {10.0 9.0 3987 ------- null} r -t 4.51373 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7983 -a 0 -x {9.0 10.0 3996 ------- null} + -t 4.51373 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7983 -a 0 -x {9.0 10.0 3996 ------- null} h -t 4.51373 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7983 -a 0 -x {9.0 10.0 3996 ------- null} r -t 4.51374 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7969 -a 0 -x {9.0 10.0 3989 ------- null} + -t 4.51374 -s 10 -d 7 -p ack -e 40 -c 0 -i 7988 -a 0 -x {10.0 9.0 3989 ------- null} - -t 4.51374 -s 10 -d 7 -p ack -e 40 -c 0 -i 7988 -a 0 -x {10.0 9.0 3989 ------- null} h -t 4.51374 -s 10 -d 7 -p ack -e 40 -c 0 -i 7988 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.51427 -s 0 -d 9 -p ack -e 40 -c 0 -i 7978 -a 0 -x {10.0 9.0 3984 ------- null} + -t 4.51427 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7989 -a 0 -x {9.0 10.0 3999 ------- null} - -t 4.51427 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7989 -a 0 -x {9.0 10.0 3999 ------- null} h -t 4.51427 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7989 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.51427 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7975 -a 0 -x {9.0 10.0 3992 ------- null} - -t 4.51427 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7975 -a 0 -x {9.0 10.0 3992 ------- null} h -t 4.51427 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7975 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.5144 -s 0 -d 9 -p ack -e 40 -c 0 -i 7982 -a 0 -x {10.0 9.0 3986 ------- null} - -t 4.5144 -s 0 -d 9 -p ack -e 40 -c 0 -i 7982 -a 0 -x {10.0 9.0 3986 ------- null} h -t 4.5144 -s 0 -d 9 -p ack -e 40 -c 0 -i 7982 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.51469 -s 10 -d 7 -p ack -e 40 -c 0 -i 7986 -a 0 -x {10.0 9.0 3988 ------- null} + -t 4.51469 -s 7 -d 0 -p ack -e 40 -c 0 -i 7986 -a 0 -x {10.0 9.0 3988 ------- null} h -t 4.51469 -s 7 -d 8 -p ack -e 40 -c 0 -i 7986 -a 0 -x {10.0 9.0 3988 ------- null} r -t 4.5148 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7985 -a 0 -x {9.0 10.0 3997 ------- null} + -t 4.5148 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7985 -a 0 -x {9.0 10.0 3997 ------- null} h -t 4.5148 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7985 -a 0 -x {9.0 10.0 3997 ------- null} r -t 4.51483 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7971 -a 0 -x {9.0 10.0 3990 ------- null} + -t 4.51483 -s 10 -d 7 -p ack -e 40 -c 0 -i 7990 -a 0 -x {10.0 9.0 3990 ------- null} - -t 4.51483 -s 10 -d 7 -p ack -e 40 -c 0 -i 7990 -a 0 -x {10.0 9.0 3990 ------- null} h -t 4.51483 -s 10 -d 7 -p ack -e 40 -c 0 -i 7990 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.51536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7977 -a 0 -x {9.0 10.0 3993 ------- null} - -t 4.51536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7977 -a 0 -x {9.0 10.0 3993 ------- null} h -t 4.51536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7977 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.51546 -s 0 -d 9 -p ack -e 40 -c 0 -i 7980 -a 0 -x {10.0 9.0 3985 ------- null} + -t 4.51546 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7991 -a 0 -x {9.0 10.0 4000 ------- null} - -t 4.51546 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7991 -a 0 -x {9.0 10.0 4000 ------- null} h -t 4.51546 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7991 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.51565 -s 0 -d 9 -p ack -e 40 -c 0 -i 7984 -a 0 -x {10.0 9.0 3987 ------- null} - -t 4.51565 -s 0 -d 9 -p ack -e 40 -c 0 -i 7984 -a 0 -x {10.0 9.0 3987 ------- null} h -t 4.51565 -s 0 -d 9 -p ack -e 40 -c 0 -i 7984 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.51578 -s 10 -d 7 -p ack -e 40 -c 0 -i 7988 -a 0 -x {10.0 9.0 3989 ------- null} + -t 4.51578 -s 7 -d 0 -p ack -e 40 -c 0 -i 7988 -a 0 -x {10.0 9.0 3989 ------- null} h -t 4.51578 -s 7 -d 8 -p ack -e 40 -c 0 -i 7988 -a 0 -x {10.0 9.0 3989 ------- null} r -t 4.51589 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7987 -a 0 -x {9.0 10.0 3998 ------- null} + -t 4.51589 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7987 -a 0 -x {9.0 10.0 3998 ------- null} h -t 4.51589 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7987 -a 0 -x {9.0 10.0 3998 ------- null} r -t 4.51592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7973 -a 0 -x {9.0 10.0 3991 ------- null} + -t 4.51592 -s 10 -d 7 -p ack -e 40 -c 0 -i 7992 -a 0 -x {10.0 9.0 3991 ------- null} - -t 4.51592 -s 10 -d 7 -p ack -e 40 -c 0 -i 7992 -a 0 -x {10.0 9.0 3991 ------- null} h -t 4.51592 -s 10 -d 7 -p ack -e 40 -c 0 -i 7992 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.51643 -s 0 -d 9 -p ack -e 40 -c 0 -i 7982 -a 0 -x {10.0 9.0 3986 ------- null} + -t 4.51643 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7993 -a 0 -x {9.0 10.0 4001 ------- null} - -t 4.51643 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7993 -a 0 -x {9.0 10.0 4001 ------- null} h -t 4.51643 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7993 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.51654 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7979 -a 0 -x {9.0 10.0 3994 ------- null} - -t 4.51654 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7979 -a 0 -x {9.0 10.0 3994 ------- null} h -t 4.51654 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7979 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.51677 -s 0 -d 9 -p ack -e 40 -c 0 -i 7986 -a 0 -x {10.0 9.0 3988 ------- null} - -t 4.51677 -s 0 -d 9 -p ack -e 40 -c 0 -i 7986 -a 0 -x {10.0 9.0 3988 ------- null} h -t 4.51677 -s 0 -d 9 -p ack -e 40 -c 0 -i 7986 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.51686 -s 10 -d 7 -p ack -e 40 -c 0 -i 7990 -a 0 -x {10.0 9.0 3990 ------- null} + -t 4.51686 -s 7 -d 0 -p ack -e 40 -c 0 -i 7990 -a 0 -x {10.0 9.0 3990 ------- null} h -t 4.51686 -s 7 -d 8 -p ack -e 40 -c 0 -i 7990 -a 0 -x {10.0 9.0 3990 ------- null} r -t 4.51707 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7989 -a 0 -x {9.0 10.0 3999 ------- null} + -t 4.51707 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7989 -a 0 -x {9.0 10.0 3999 ------- null} h -t 4.51707 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7989 -a 0 -x {9.0 10.0 3999 ------- null} r -t 4.51707 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7975 -a 0 -x {9.0 10.0 3992 ------- null} + -t 4.51707 -s 10 -d 7 -p ack -e 40 -c 0 -i 7994 -a 0 -x {10.0 9.0 3992 ------- null} - -t 4.51707 -s 10 -d 7 -p ack -e 40 -c 0 -i 7994 -a 0 -x {10.0 9.0 3992 ------- null} h -t 4.51707 -s 10 -d 7 -p ack -e 40 -c 0 -i 7994 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.51763 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7981 -a 0 -x {9.0 10.0 3995 ------- null} - -t 4.51763 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7981 -a 0 -x {9.0 10.0 3995 ------- null} h -t 4.51763 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7981 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.51768 -s 0 -d 9 -p ack -e 40 -c 0 -i 7984 -a 0 -x {10.0 9.0 3987 ------- null} + -t 4.51768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7995 -a 0 -x {9.0 10.0 4002 ------- null} - -t 4.51768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7995 -a 0 -x {9.0 10.0 4002 ------- null} h -t 4.51768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7995 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.51787 -s 0 -d 9 -p ack -e 40 -c 0 -i 7988 -a 0 -x {10.0 9.0 3989 ------- null} - -t 4.51787 -s 0 -d 9 -p ack -e 40 -c 0 -i 7988 -a 0 -x {10.0 9.0 3989 ------- null} h -t 4.51787 -s 0 -d 9 -p ack -e 40 -c 0 -i 7988 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.51795 -s 10 -d 7 -p ack -e 40 -c 0 -i 7992 -a 0 -x {10.0 9.0 3991 ------- null} + -t 4.51795 -s 7 -d 0 -p ack -e 40 -c 0 -i 7992 -a 0 -x {10.0 9.0 3991 ------- null} h -t 4.51795 -s 7 -d 8 -p ack -e 40 -c 0 -i 7992 -a 0 -x {10.0 9.0 3991 ------- null} r -t 4.51816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7977 -a 0 -x {9.0 10.0 3993 ------- null} + -t 4.51816 -s 10 -d 7 -p ack -e 40 -c 0 -i 7996 -a 0 -x {10.0 9.0 3993 ------- null} - -t 4.51816 -s 10 -d 7 -p ack -e 40 -c 0 -i 7996 -a 0 -x {10.0 9.0 3993 ------- null} h -t 4.51816 -s 10 -d 7 -p ack -e 40 -c 0 -i 7996 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.51826 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7991 -a 0 -x {9.0 10.0 4000 ------- null} + -t 4.51826 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7991 -a 0 -x {9.0 10.0 4000 ------- null} h -t 4.51826 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7991 -a 0 -x {9.0 10.0 4000 ------- null} + -t 4.51872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7983 -a 0 -x {9.0 10.0 3996 ------- null} - -t 4.51872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7983 -a 0 -x {9.0 10.0 3996 ------- null} h -t 4.51872 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7983 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.5188 -s 0 -d 9 -p ack -e 40 -c 0 -i 7986 -a 0 -x {10.0 9.0 3988 ------- null} + -t 4.5188 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7997 -a 0 -x {9.0 10.0 4003 ------- null} - -t 4.5188 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7997 -a 0 -x {9.0 10.0 4003 ------- null} h -t 4.5188 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7997 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.51886 -s 0 -d 9 -p ack -e 40 -c 0 -i 7990 -a 0 -x {10.0 9.0 3990 ------- null} - -t 4.51886 -s 0 -d 9 -p ack -e 40 -c 0 -i 7990 -a 0 -x {10.0 9.0 3990 ------- null} h -t 4.51886 -s 0 -d 9 -p ack -e 40 -c 0 -i 7990 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.5191 -s 10 -d 7 -p ack -e 40 -c 0 -i 7994 -a 0 -x {10.0 9.0 3992 ------- null} + -t 4.5191 -s 7 -d 0 -p ack -e 40 -c 0 -i 7994 -a 0 -x {10.0 9.0 3992 ------- null} h -t 4.5191 -s 7 -d 8 -p ack -e 40 -c 0 -i 7994 -a 0 -x {10.0 9.0 3992 ------- null} r -t 4.51923 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7993 -a 0 -x {9.0 10.0 4001 ------- null} + -t 4.51923 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7993 -a 0 -x {9.0 10.0 4001 ------- null} h -t 4.51923 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7993 -a 0 -x {9.0 10.0 4001 ------- null} r -t 4.51934 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7979 -a 0 -x {9.0 10.0 3994 ------- null} + -t 4.51934 -s 10 -d 7 -p ack -e 40 -c 0 -i 7998 -a 0 -x {10.0 9.0 3994 ------- null} - -t 4.51934 -s 10 -d 7 -p ack -e 40 -c 0 -i 7998 -a 0 -x {10.0 9.0 3994 ------- null} h -t 4.51934 -s 10 -d 7 -p ack -e 40 -c 0 -i 7998 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.51981 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7985 -a 0 -x {9.0 10.0 3997 ------- null} - -t 4.51981 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7985 -a 0 -x {9.0 10.0 3997 ------- null} h -t 4.51981 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7985 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.51989 -s 0 -d 9 -p ack -e 40 -c 0 -i 7992 -a 0 -x {10.0 9.0 3991 ------- null} - -t 4.51989 -s 0 -d 9 -p ack -e 40 -c 0 -i 7992 -a 0 -x {10.0 9.0 3991 ------- null} h -t 4.51989 -s 0 -d 9 -p ack -e 40 -c 0 -i 7992 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.5199 -s 0 -d 9 -p ack -e 40 -c 0 -i 7988 -a 0 -x {10.0 9.0 3989 ------- null} + -t 4.5199 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7999 -a 0 -x {9.0 10.0 4004 ------- null} - -t 4.5199 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7999 -a 0 -x {9.0 10.0 4004 ------- null} h -t 4.5199 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7999 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.52019 -s 10 -d 7 -p ack -e 40 -c 0 -i 7996 -a 0 -x {10.0 9.0 3993 ------- null} + -t 4.52019 -s 7 -d 0 -p ack -e 40 -c 0 -i 7996 -a 0 -x {10.0 9.0 3993 ------- null} h -t 4.52019 -s 7 -d 8 -p ack -e 40 -c 0 -i 7996 -a 0 -x {10.0 9.0 3993 ------- null} r -t 4.52043 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7981 -a 0 -x {9.0 10.0 3995 ------- null} + -t 4.52043 -s 10 -d 7 -p ack -e 40 -c 0 -i 8000 -a 0 -x {10.0 9.0 3995 ------- null} - -t 4.52043 -s 10 -d 7 -p ack -e 40 -c 0 -i 8000 -a 0 -x {10.0 9.0 3995 ------- null} h -t 4.52043 -s 10 -d 7 -p ack -e 40 -c 0 -i 8000 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.52048 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7995 -a 0 -x {9.0 10.0 4002 ------- null} + -t 4.52048 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7995 -a 0 -x {9.0 10.0 4002 ------- null} h -t 4.52048 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7995 -a 0 -x {9.0 10.0 4002 ------- null} r -t 4.5209 -s 0 -d 9 -p ack -e 40 -c 0 -i 7990 -a 0 -x {10.0 9.0 3990 ------- null} + -t 4.5209 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8001 -a 0 -x {9.0 10.0 4005 ------- null} - -t 4.5209 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8001 -a 0 -x {9.0 10.0 4005 ------- null} h -t 4.5209 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8001 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.5209 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7987 -a 0 -x {9.0 10.0 3998 ------- null} - -t 4.5209 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7987 -a 0 -x {9.0 10.0 3998 ------- null} h -t 4.5209 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7987 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.5211 -s 0 -d 9 -p ack -e 40 -c 0 -i 7994 -a 0 -x {10.0 9.0 3992 ------- null} - -t 4.5211 -s 0 -d 9 -p ack -e 40 -c 0 -i 7994 -a 0 -x {10.0 9.0 3992 ------- null} h -t 4.5211 -s 0 -d 9 -p ack -e 40 -c 0 -i 7994 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.52138 -s 10 -d 7 -p ack -e 40 -c 0 -i 7998 -a 0 -x {10.0 9.0 3994 ------- null} + -t 4.52138 -s 7 -d 0 -p ack -e 40 -c 0 -i 7998 -a 0 -x {10.0 9.0 3994 ------- null} h -t 4.52138 -s 7 -d 8 -p ack -e 40 -c 0 -i 7998 -a 0 -x {10.0 9.0 3994 ------- null} r -t 4.52152 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7983 -a 0 -x {9.0 10.0 3996 ------- null} + -t 4.52152 -s 10 -d 7 -p ack -e 40 -c 0 -i 8002 -a 0 -x {10.0 9.0 3996 ------- null} - -t 4.52152 -s 10 -d 7 -p ack -e 40 -c 0 -i 8002 -a 0 -x {10.0 9.0 3996 ------- null} h -t 4.52152 -s 10 -d 7 -p ack -e 40 -c 0 -i 8002 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.5216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7997 -a 0 -x {9.0 10.0 4003 ------- null} + -t 4.5216 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7997 -a 0 -x {9.0 10.0 4003 ------- null} h -t 4.5216 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7997 -a 0 -x {9.0 10.0 4003 ------- null} r -t 4.52192 -s 0 -d 9 -p ack -e 40 -c 0 -i 7992 -a 0 -x {10.0 9.0 3991 ------- null} + -t 4.52192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8003 -a 0 -x {9.0 10.0 4006 ------- null} - -t 4.52192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8003 -a 0 -x {9.0 10.0 4006 ------- null} h -t 4.52192 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8003 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.52198 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7989 -a 0 -x {9.0 10.0 3999 ------- null} - -t 4.52198 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7989 -a 0 -x {9.0 10.0 3999 ------- null} h -t 4.52198 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7989 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.52214 -s 0 -d 9 -p ack -e 40 -c 0 -i 7996 -a 0 -x {10.0 9.0 3993 ------- null} - -t 4.52214 -s 0 -d 9 -p ack -e 40 -c 0 -i 7996 -a 0 -x {10.0 9.0 3993 ------- null} h -t 4.52214 -s 0 -d 9 -p ack -e 40 -c 0 -i 7996 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.52246 -s 10 -d 7 -p ack -e 40 -c 0 -i 8000 -a 0 -x {10.0 9.0 3995 ------- null} + -t 4.52246 -s 7 -d 0 -p ack -e 40 -c 0 -i 8000 -a 0 -x {10.0 9.0 3995 ------- null} h -t 4.52246 -s 7 -d 8 -p ack -e 40 -c 0 -i 8000 -a 0 -x {10.0 9.0 3995 ------- null} r -t 4.52261 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7985 -a 0 -x {9.0 10.0 3997 ------- null} + -t 4.52261 -s 10 -d 7 -p ack -e 40 -c 0 -i 8004 -a 0 -x {10.0 9.0 3997 ------- null} - -t 4.52261 -s 10 -d 7 -p ack -e 40 -c 0 -i 8004 -a 0 -x {10.0 9.0 3997 ------- null} h -t 4.52261 -s 10 -d 7 -p ack -e 40 -c 0 -i 8004 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.5227 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7999 -a 0 -x {9.0 10.0 4004 ------- null} + -t 4.5227 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 7999 -a 0 -x {9.0 10.0 4004 ------- null} h -t 4.5227 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7999 -a 0 -x {9.0 10.0 4004 ------- null} + -t 4.52307 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7991 -a 0 -x {9.0 10.0 4000 ------- null} - -t 4.52307 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7991 -a 0 -x {9.0 10.0 4000 ------- null} h -t 4.52307 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7991 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.52314 -s 0 -d 9 -p ack -e 40 -c 0 -i 7994 -a 0 -x {10.0 9.0 3992 ------- null} + -t 4.52314 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8005 -a 0 -x {9.0 10.0 4007 ------- null} - -t 4.52314 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8005 -a 0 -x {9.0 10.0 4007 ------- null} h -t 4.52314 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8005 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.52314 -s 0 -d 9 -p ack -e 40 -c 0 -i 7998 -a 0 -x {10.0 9.0 3994 ------- null} - -t 4.52314 -s 0 -d 9 -p ack -e 40 -c 0 -i 7998 -a 0 -x {10.0 9.0 3994 ------- null} h -t 4.52314 -s 0 -d 9 -p ack -e 40 -c 0 -i 7998 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.52355 -s 10 -d 7 -p ack -e 40 -c 0 -i 8002 -a 0 -x {10.0 9.0 3996 ------- null} + -t 4.52355 -s 7 -d 0 -p ack -e 40 -c 0 -i 8002 -a 0 -x {10.0 9.0 3996 ------- null} h -t 4.52355 -s 7 -d 8 -p ack -e 40 -c 0 -i 8002 -a 0 -x {10.0 9.0 3996 ------- null} r -t 4.5237 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8001 -a 0 -x {9.0 10.0 4005 ------- null} + -t 4.5237 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8001 -a 0 -x {9.0 10.0 4005 ------- null} h -t 4.5237 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8001 -a 0 -x {9.0 10.0 4005 ------- null} r -t 4.5237 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7987 -a 0 -x {9.0 10.0 3998 ------- null} + -t 4.5237 -s 10 -d 7 -p ack -e 40 -c 0 -i 8006 -a 0 -x {10.0 9.0 3998 ------- null} - -t 4.5237 -s 10 -d 7 -p ack -e 40 -c 0 -i 8006 -a 0 -x {10.0 9.0 3998 ------- null} h -t 4.5237 -s 10 -d 7 -p ack -e 40 -c 0 -i 8006 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.52416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7993 -a 0 -x {9.0 10.0 4001 ------- null} - -t 4.52416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7993 -a 0 -x {9.0 10.0 4001 ------- null} h -t 4.52416 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7993 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.52418 -s 0 -d 9 -p ack -e 40 -c 0 -i 7996 -a 0 -x {10.0 9.0 3993 ------- null} + -t 4.52418 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8007 -a 0 -x {9.0 10.0 4008 ------- null} - -t 4.52418 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8007 -a 0 -x {9.0 10.0 4008 ------- null} h -t 4.52418 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8007 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.52437 -s 0 -d 9 -p ack -e 40 -c 0 -i 8000 -a 0 -x {10.0 9.0 3995 ------- null} - -t 4.52437 -s 0 -d 9 -p ack -e 40 -c 0 -i 8000 -a 0 -x {10.0 9.0 3995 ------- null} h -t 4.52437 -s 0 -d 9 -p ack -e 40 -c 0 -i 8000 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.52464 -s 10 -d 7 -p ack -e 40 -c 0 -i 8004 -a 0 -x {10.0 9.0 3997 ------- null} + -t 4.52464 -s 7 -d 0 -p ack -e 40 -c 0 -i 8004 -a 0 -x {10.0 9.0 3997 ------- null} h -t 4.52464 -s 7 -d 8 -p ack -e 40 -c 0 -i 8004 -a 0 -x {10.0 9.0 3997 ------- null} r -t 4.52472 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8003 -a 0 -x {9.0 10.0 4006 ------- null} + -t 4.52472 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8003 -a 0 -x {9.0 10.0 4006 ------- null} h -t 4.52472 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8003 -a 0 -x {9.0 10.0 4006 ------- null} r -t 4.52478 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7989 -a 0 -x {9.0 10.0 3999 ------- null} + -t 4.52478 -s 10 -d 7 -p ack -e 40 -c 0 -i 8008 -a 0 -x {10.0 9.0 3999 ------- null} - -t 4.52478 -s 10 -d 7 -p ack -e 40 -c 0 -i 8008 -a 0 -x {10.0 9.0 3999 ------- null} h -t 4.52478 -s 10 -d 7 -p ack -e 40 -c 0 -i 8008 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.52517 -s 0 -d 9 -p ack -e 40 -c 0 -i 7998 -a 0 -x {10.0 9.0 3994 ------- null} + -t 4.52517 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8009 -a 0 -x {9.0 10.0 4009 ------- null} - -t 4.52517 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8009 -a 0 -x {9.0 10.0 4009 ------- null} h -t 4.52517 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8009 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.52525 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7995 -a 0 -x {9.0 10.0 4002 ------- null} - -t 4.52525 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7995 -a 0 -x {9.0 10.0 4002 ------- null} h -t 4.52525 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7995 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.52542 -s 0 -d 9 -p ack -e 40 -c 0 -i 8002 -a 0 -x {10.0 9.0 3996 ------- null} - -t 4.52542 -s 0 -d 9 -p ack -e 40 -c 0 -i 8002 -a 0 -x {10.0 9.0 3996 ------- null} h -t 4.52542 -s 0 -d 9 -p ack -e 40 -c 0 -i 8002 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.52573 -s 10 -d 7 -p ack -e 40 -c 0 -i 8006 -a 0 -x {10.0 9.0 3998 ------- null} + -t 4.52573 -s 7 -d 0 -p ack -e 40 -c 0 -i 8006 -a 0 -x {10.0 9.0 3998 ------- null} h -t 4.52573 -s 7 -d 8 -p ack -e 40 -c 0 -i 8006 -a 0 -x {10.0 9.0 3998 ------- null} r -t 4.52587 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7991 -a 0 -x {9.0 10.0 4000 ------- null} + -t 4.52587 -s 10 -d 7 -p ack -e 40 -c 0 -i 8010 -a 0 -x {10.0 9.0 4000 ------- null} - -t 4.52587 -s 10 -d 7 -p ack -e 40 -c 0 -i 8010 -a 0 -x {10.0 9.0 4000 ------- null} h -t 4.52587 -s 10 -d 7 -p ack -e 40 -c 0 -i 8010 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.52594 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8005 -a 0 -x {9.0 10.0 4007 ------- null} + -t 4.52594 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8005 -a 0 -x {9.0 10.0 4007 ------- null} h -t 4.52594 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8005 -a 0 -x {9.0 10.0 4007 ------- null} + -t 4.52634 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7997 -a 0 -x {9.0 10.0 4003 ------- null} - -t 4.52634 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7997 -a 0 -x {9.0 10.0 4003 ------- null} h -t 4.52634 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7997 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.5264 -s 0 -d 9 -p ack -e 40 -c 0 -i 8000 -a 0 -x {10.0 9.0 3995 ------- null} + -t 4.5264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8011 -a 0 -x {9.0 10.0 4010 ------- null} - -t 4.5264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8011 -a 0 -x {9.0 10.0 4010 ------- null} h -t 4.5264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8011 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.52656 -s 0 -d 9 -p ack -e 40 -c 0 -i 8004 -a 0 -x {10.0 9.0 3997 ------- null} - -t 4.52656 -s 0 -d 9 -p ack -e 40 -c 0 -i 8004 -a 0 -x {10.0 9.0 3997 ------- null} h -t 4.52656 -s 0 -d 9 -p ack -e 40 -c 0 -i 8004 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.52682 -s 10 -d 7 -p ack -e 40 -c 0 -i 8008 -a 0 -x {10.0 9.0 3999 ------- null} + -t 4.52682 -s 7 -d 0 -p ack -e 40 -c 0 -i 8008 -a 0 -x {10.0 9.0 3999 ------- null} h -t 4.52682 -s 7 -d 8 -p ack -e 40 -c 0 -i 8008 -a 0 -x {10.0 9.0 3999 ------- null} r -t 4.52696 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7993 -a 0 -x {9.0 10.0 4001 ------- null} + -t 4.52696 -s 10 -d 7 -p ack -e 40 -c 0 -i 8012 -a 0 -x {10.0 9.0 4001 ------- null} - -t 4.52696 -s 10 -d 7 -p ack -e 40 -c 0 -i 8012 -a 0 -x {10.0 9.0 4001 ------- null} h -t 4.52696 -s 10 -d 7 -p ack -e 40 -c 0 -i 8012 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.52698 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8007 -a 0 -x {9.0 10.0 4008 ------- null} + -t 4.52698 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8007 -a 0 -x {9.0 10.0 4008 ------- null} h -t 4.52698 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8007 -a 0 -x {9.0 10.0 4008 ------- null} + -t 4.52742 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7999 -a 0 -x {9.0 10.0 4004 ------- null} - -t 4.52742 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7999 -a 0 -x {9.0 10.0 4004 ------- null} h -t 4.52742 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7999 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.52746 -s 0 -d 9 -p ack -e 40 -c 0 -i 8002 -a 0 -x {10.0 9.0 3996 ------- null} + -t 4.52746 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8013 -a 0 -x {9.0 10.0 4011 ------- null} - -t 4.52746 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8013 -a 0 -x {9.0 10.0 4011 ------- null} h -t 4.52746 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8013 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.5275 -s 0 -d 9 -p ack -e 40 -c 0 -i 8006 -a 0 -x {10.0 9.0 3998 ------- null} - -t 4.5275 -s 0 -d 9 -p ack -e 40 -c 0 -i 8006 -a 0 -x {10.0 9.0 3998 ------- null} h -t 4.5275 -s 0 -d 9 -p ack -e 40 -c 0 -i 8006 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.5279 -s 10 -d 7 -p ack -e 40 -c 0 -i 8010 -a 0 -x {10.0 9.0 4000 ------- null} + -t 4.5279 -s 7 -d 0 -p ack -e 40 -c 0 -i 8010 -a 0 -x {10.0 9.0 4000 ------- null} h -t 4.5279 -s 7 -d 8 -p ack -e 40 -c 0 -i 8010 -a 0 -x {10.0 9.0 4000 ------- null} r -t 4.52797 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8009 -a 0 -x {9.0 10.0 4009 ------- null} + -t 4.52797 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8009 -a 0 -x {9.0 10.0 4009 ------- null} h -t 4.52797 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8009 -a 0 -x {9.0 10.0 4009 ------- null} r -t 4.52805 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7995 -a 0 -x {9.0 10.0 4002 ------- null} + -t 4.52805 -s 10 -d 7 -p ack -e 40 -c 0 -i 8014 -a 0 -x {10.0 9.0 4002 ------- null} - -t 4.52805 -s 10 -d 7 -p ack -e 40 -c 0 -i 8014 -a 0 -x {10.0 9.0 4002 ------- null} h -t 4.52805 -s 10 -d 7 -p ack -e 40 -c 0 -i 8014 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.52851 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8001 -a 0 -x {9.0 10.0 4005 ------- null} - -t 4.52851 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8001 -a 0 -x {9.0 10.0 4005 ------- null} h -t 4.52851 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8001 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.52859 -s 0 -d 9 -p ack -e 40 -c 0 -i 8004 -a 0 -x {10.0 9.0 3997 ------- null} + -t 4.52859 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8015 -a 0 -x {9.0 10.0 4012 ------- null} - -t 4.52859 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8015 -a 0 -x {9.0 10.0 4012 ------- null} h -t 4.52859 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8015 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.52872 -s 0 -d 9 -p ack -e 40 -c 0 -i 8008 -a 0 -x {10.0 9.0 3999 ------- null} - -t 4.52872 -s 0 -d 9 -p ack -e 40 -c 0 -i 8008 -a 0 -x {10.0 9.0 3999 ------- null} h -t 4.52872 -s 0 -d 9 -p ack -e 40 -c 0 -i 8008 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.52899 -s 10 -d 7 -p ack -e 40 -c 0 -i 8012 -a 0 -x {10.0 9.0 4001 ------- null} + -t 4.52899 -s 7 -d 0 -p ack -e 40 -c 0 -i 8012 -a 0 -x {10.0 9.0 4001 ------- null} h -t 4.52899 -s 7 -d 8 -p ack -e 40 -c 0 -i 8012 -a 0 -x {10.0 9.0 4001 ------- null} r -t 4.52914 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7997 -a 0 -x {9.0 10.0 4003 ------- null} + -t 4.52914 -s 10 -d 7 -p ack -e 40 -c 0 -i 8016 -a 0 -x {10.0 9.0 4003 ------- null} - -t 4.52914 -s 10 -d 7 -p ack -e 40 -c 0 -i 8016 -a 0 -x {10.0 9.0 4003 ------- null} h -t 4.52914 -s 10 -d 7 -p ack -e 40 -c 0 -i 8016 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.5292 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8011 -a 0 -x {9.0 10.0 4010 ------- null} + -t 4.5292 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8011 -a 0 -x {9.0 10.0 4010 ------- null} h -t 4.5292 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8011 -a 0 -x {9.0 10.0 4010 ------- null} r -t 4.52954 -s 0 -d 9 -p ack -e 40 -c 0 -i 8006 -a 0 -x {10.0 9.0 3998 ------- null} + -t 4.52954 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8017 -a 0 -x {9.0 10.0 4013 ------- null} - -t 4.52954 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8017 -a 0 -x {9.0 10.0 4013 ------- null} h -t 4.52954 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8017 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.5296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8003 -a 0 -x {9.0 10.0 4006 ------- null} - -t 4.5296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8003 -a 0 -x {9.0 10.0 4006 ------- null} h -t 4.5296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8003 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.52971 -s 0 -d 9 -p ack -e 40 -c 0 -i 8010 -a 0 -x {10.0 9.0 4000 ------- null} - -t 4.52971 -s 0 -d 9 -p ack -e 40 -c 0 -i 8010 -a 0 -x {10.0 9.0 4000 ------- null} h -t 4.52971 -s 0 -d 9 -p ack -e 40 -c 0 -i 8010 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.53008 -s 10 -d 7 -p ack -e 40 -c 0 -i 8014 -a 0 -x {10.0 9.0 4002 ------- null} + -t 4.53008 -s 7 -d 0 -p ack -e 40 -c 0 -i 8014 -a 0 -x {10.0 9.0 4002 ------- null} h -t 4.53008 -s 7 -d 8 -p ack -e 40 -c 0 -i 8014 -a 0 -x {10.0 9.0 4002 ------- null} r -t 4.53022 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 7999 -a 0 -x {9.0 10.0 4004 ------- null} + -t 4.53022 -s 10 -d 7 -p ack -e 40 -c 0 -i 8018 -a 0 -x {10.0 9.0 4004 ------- null} - -t 4.53022 -s 10 -d 7 -p ack -e 40 -c 0 -i 8018 -a 0 -x {10.0 9.0 4004 ------- null} h -t 4.53022 -s 10 -d 7 -p ack -e 40 -c 0 -i 8018 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.53026 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8013 -a 0 -x {9.0 10.0 4011 ------- null} + -t 4.53026 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8013 -a 0 -x {9.0 10.0 4011 ------- null} h -t 4.53026 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8013 -a 0 -x {9.0 10.0 4011 ------- null} + -t 4.53069 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8005 -a 0 -x {9.0 10.0 4007 ------- null} - -t 4.53069 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8005 -a 0 -x {9.0 10.0 4007 ------- null} h -t 4.53069 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8005 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.53075 -s 0 -d 9 -p ack -e 40 -c 0 -i 8008 -a 0 -x {10.0 9.0 3999 ------- null} + -t 4.53075 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8019 -a 0 -x {9.0 10.0 4014 ------- null} - -t 4.53075 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8019 -a 0 -x {9.0 10.0 4014 ------- null} h -t 4.53075 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8019 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.53094 -s 0 -d 9 -p ack -e 40 -c 0 -i 8012 -a 0 -x {10.0 9.0 4001 ------- null} - -t 4.53094 -s 0 -d 9 -p ack -e 40 -c 0 -i 8012 -a 0 -x {10.0 9.0 4001 ------- null} h -t 4.53094 -s 0 -d 9 -p ack -e 40 -c 0 -i 8012 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.53117 -s 10 -d 7 -p ack -e 40 -c 0 -i 8016 -a 0 -x {10.0 9.0 4003 ------- null} + -t 4.53117 -s 7 -d 0 -p ack -e 40 -c 0 -i 8016 -a 0 -x {10.0 9.0 4003 ------- null} h -t 4.53117 -s 7 -d 8 -p ack -e 40 -c 0 -i 8016 -a 0 -x {10.0 9.0 4003 ------- null} r -t 4.53131 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8001 -a 0 -x {9.0 10.0 4005 ------- null} + -t 4.53131 -s 10 -d 7 -p ack -e 40 -c 0 -i 8020 -a 0 -x {10.0 9.0 4005 ------- null} - -t 4.53131 -s 10 -d 7 -p ack -e 40 -c 0 -i 8020 -a 0 -x {10.0 9.0 4005 ------- null} h -t 4.53131 -s 10 -d 7 -p ack -e 40 -c 0 -i 8020 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.53139 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8015 -a 0 -x {9.0 10.0 4012 ------- null} + -t 4.53139 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8015 -a 0 -x {9.0 10.0 4012 ------- null} h -t 4.53139 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8015 -a 0 -x {9.0 10.0 4012 ------- null} r -t 4.53174 -s 0 -d 9 -p ack -e 40 -c 0 -i 8010 -a 0 -x {10.0 9.0 4000 ------- null} + -t 4.53174 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8021 -a 0 -x {9.0 10.0 4015 ------- null} - -t 4.53174 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8021 -a 0 -x {9.0 10.0 4015 ------- null} h -t 4.53174 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8021 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.53178 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8007 -a 0 -x {9.0 10.0 4008 ------- null} - -t 4.53178 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8007 -a 0 -x {9.0 10.0 4008 ------- null} h -t 4.53178 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8007 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.53197 -s 0 -d 9 -p ack -e 40 -c 0 -i 8014 -a 0 -x {10.0 9.0 4002 ------- null} - -t 4.53197 -s 0 -d 9 -p ack -e 40 -c 0 -i 8014 -a 0 -x {10.0 9.0 4002 ------- null} h -t 4.53197 -s 0 -d 9 -p ack -e 40 -c 0 -i 8014 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.53226 -s 10 -d 7 -p ack -e 40 -c 0 -i 8018 -a 0 -x {10.0 9.0 4004 ------- null} + -t 4.53226 -s 7 -d 0 -p ack -e 40 -c 0 -i 8018 -a 0 -x {10.0 9.0 4004 ------- null} h -t 4.53226 -s 7 -d 8 -p ack -e 40 -c 0 -i 8018 -a 0 -x {10.0 9.0 4004 ------- null} r -t 4.53234 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8017 -a 0 -x {9.0 10.0 4013 ------- null} + -t 4.53234 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8017 -a 0 -x {9.0 10.0 4013 ------- null} h -t 4.53234 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8017 -a 0 -x {9.0 10.0 4013 ------- null} r -t 4.5324 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8003 -a 0 -x {9.0 10.0 4006 ------- null} + -t 4.5324 -s 10 -d 7 -p ack -e 40 -c 0 -i 8022 -a 0 -x {10.0 9.0 4006 ------- null} - -t 4.5324 -s 10 -d 7 -p ack -e 40 -c 0 -i 8022 -a 0 -x {10.0 9.0 4006 ------- null} h -t 4.5324 -s 10 -d 7 -p ack -e 40 -c 0 -i 8022 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.53286 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8009 -a 0 -x {9.0 10.0 4009 ------- null} - -t 4.53286 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8009 -a 0 -x {9.0 10.0 4009 ------- null} h -t 4.53286 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8009 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.53298 -s 0 -d 9 -p ack -e 40 -c 0 -i 8012 -a 0 -x {10.0 9.0 4001 ------- null} + -t 4.53298 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8023 -a 0 -x {9.0 10.0 4016 ------- null} - -t 4.53298 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8023 -a 0 -x {9.0 10.0 4016 ------- null} h -t 4.53298 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8023 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.53317 -s 0 -d 9 -p ack -e 40 -c 0 -i 8016 -a 0 -x {10.0 9.0 4003 ------- null} - -t 4.53317 -s 0 -d 9 -p ack -e 40 -c 0 -i 8016 -a 0 -x {10.0 9.0 4003 ------- null} h -t 4.53317 -s 0 -d 9 -p ack -e 40 -c 0 -i 8016 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.53334 -s 10 -d 7 -p ack -e 40 -c 0 -i 8020 -a 0 -x {10.0 9.0 4005 ------- null} + -t 4.53334 -s 7 -d 0 -p ack -e 40 -c 0 -i 8020 -a 0 -x {10.0 9.0 4005 ------- null} h -t 4.53334 -s 7 -d 8 -p ack -e 40 -c 0 -i 8020 -a 0 -x {10.0 9.0 4005 ------- null} r -t 4.53349 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8005 -a 0 -x {9.0 10.0 4007 ------- null} + -t 4.53349 -s 10 -d 7 -p ack -e 40 -c 0 -i 8024 -a 0 -x {10.0 9.0 4007 ------- null} - -t 4.53349 -s 10 -d 7 -p ack -e 40 -c 0 -i 8024 -a 0 -x {10.0 9.0 4007 ------- null} h -t 4.53349 -s 10 -d 7 -p ack -e 40 -c 0 -i 8024 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.53355 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8019 -a 0 -x {9.0 10.0 4014 ------- null} + -t 4.53355 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8019 -a 0 -x {9.0 10.0 4014 ------- null} h -t 4.53355 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8019 -a 0 -x {9.0 10.0 4014 ------- null} r -t 4.534 -s 0 -d 9 -p ack -e 40 -c 0 -i 8014 -a 0 -x {10.0 9.0 4002 ------- null} + -t 4.534 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8025 -a 0 -x {9.0 10.0 4017 ------- null} - -t 4.534 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8025 -a 0 -x {9.0 10.0 4017 ------- null} h -t 4.534 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8025 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.53411 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8011 -a 0 -x {9.0 10.0 4010 ------- null} - -t 4.53411 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8011 -a 0 -x {9.0 10.0 4010 ------- null} h -t 4.53411 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8011 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.53438 -s 0 -d 9 -p ack -e 40 -c 0 -i 8018 -a 0 -x {10.0 9.0 4004 ------- null} - -t 4.53438 -s 0 -d 9 -p ack -e 40 -c 0 -i 8018 -a 0 -x {10.0 9.0 4004 ------- null} h -t 4.53438 -s 0 -d 9 -p ack -e 40 -c 0 -i 8018 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.53443 -s 10 -d 7 -p ack -e 40 -c 0 -i 8022 -a 0 -x {10.0 9.0 4006 ------- null} + -t 4.53443 -s 7 -d 0 -p ack -e 40 -c 0 -i 8022 -a 0 -x {10.0 9.0 4006 ------- null} h -t 4.53443 -s 7 -d 8 -p ack -e 40 -c 0 -i 8022 -a 0 -x {10.0 9.0 4006 ------- null} r -t 4.53454 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8021 -a 0 -x {9.0 10.0 4015 ------- null} + -t 4.53454 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8021 -a 0 -x {9.0 10.0 4015 ------- null} h -t 4.53454 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8021 -a 0 -x {9.0 10.0 4015 ------- null} r -t 4.53458 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8007 -a 0 -x {9.0 10.0 4008 ------- null} + -t 4.53458 -s 10 -d 7 -p ack -e 40 -c 0 -i 8026 -a 0 -x {10.0 9.0 4008 ------- null} - -t 4.53458 -s 10 -d 7 -p ack -e 40 -c 0 -i 8026 -a 0 -x {10.0 9.0 4008 ------- null} h -t 4.53458 -s 10 -d 7 -p ack -e 40 -c 0 -i 8026 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.5352 -s 0 -d 9 -p ack -e 40 -c 0 -i 8016 -a 0 -x {10.0 9.0 4003 ------- null} + -t 4.5352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8027 -a 0 -x {9.0 10.0 4018 ------- null} - -t 4.5352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8027 -a 0 -x {9.0 10.0 4018 ------- null} h -t 4.5352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8027 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.53533 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8013 -a 0 -x {9.0 10.0 4011 ------- null} - -t 4.53533 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8013 -a 0 -x {9.0 10.0 4011 ------- null} h -t 4.53533 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8013 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.53552 -s 10 -d 7 -p ack -e 40 -c 0 -i 8024 -a 0 -x {10.0 9.0 4007 ------- null} + -t 4.53552 -s 7 -d 0 -p ack -e 40 -c 0 -i 8024 -a 0 -x {10.0 9.0 4007 ------- null} h -t 4.53552 -s 7 -d 8 -p ack -e 40 -c 0 -i 8024 -a 0 -x {10.0 9.0 4007 ------- null} + -t 4.5356 -s 0 -d 9 -p ack -e 40 -c 0 -i 8020 -a 0 -x {10.0 9.0 4005 ------- null} - -t 4.5356 -s 0 -d 9 -p ack -e 40 -c 0 -i 8020 -a 0 -x {10.0 9.0 4005 ------- null} h -t 4.5356 -s 0 -d 9 -p ack -e 40 -c 0 -i 8020 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.53566 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8009 -a 0 -x {9.0 10.0 4009 ------- null} + -t 4.53566 -s 10 -d 7 -p ack -e 40 -c 0 -i 8028 -a 0 -x {10.0 9.0 4009 ------- null} - -t 4.53566 -s 10 -d 7 -p ack -e 40 -c 0 -i 8028 -a 0 -x {10.0 9.0 4009 ------- null} h -t 4.53566 -s 10 -d 7 -p ack -e 40 -c 0 -i 8028 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.53578 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8023 -a 0 -x {9.0 10.0 4016 ------- null} + -t 4.53578 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8023 -a 0 -x {9.0 10.0 4016 ------- null} h -t 4.53578 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8023 -a 0 -x {9.0 10.0 4016 ------- null} r -t 4.53642 -s 0 -d 9 -p ack -e 40 -c 0 -i 8018 -a 0 -x {10.0 9.0 4004 ------- null} + -t 4.53642 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8029 -a 0 -x {9.0 10.0 4019 ------- null} - -t 4.53642 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8029 -a 0 -x {9.0 10.0 4019 ------- null} h -t 4.53642 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8029 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.53654 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8015 -a 0 -x {9.0 10.0 4012 ------- null} - -t 4.53654 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8015 -a 0 -x {9.0 10.0 4012 ------- null} h -t 4.53654 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8015 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.53661 -s 10 -d 7 -p ack -e 40 -c 0 -i 8026 -a 0 -x {10.0 9.0 4008 ------- null} + -t 4.53661 -s 7 -d 0 -p ack -e 40 -c 0 -i 8026 -a 0 -x {10.0 9.0 4008 ------- null} h -t 4.53661 -s 7 -d 8 -p ack -e 40 -c 0 -i 8026 -a 0 -x {10.0 9.0 4008 ------- null} r -t 4.5368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8025 -a 0 -x {9.0 10.0 4017 ------- null} + -t 4.5368 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8025 -a 0 -x {9.0 10.0 4017 ------- null} h -t 4.5368 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8025 -a 0 -x {9.0 10.0 4017 ------- null} + -t 4.53685 -s 0 -d 9 -p ack -e 40 -c 0 -i 8022 -a 0 -x {10.0 9.0 4006 ------- null} - -t 4.53685 -s 0 -d 9 -p ack -e 40 -c 0 -i 8022 -a 0 -x {10.0 9.0 4006 ------- null} h -t 4.53685 -s 0 -d 9 -p ack -e 40 -c 0 -i 8022 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.53691 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8011 -a 0 -x {9.0 10.0 4010 ------- null} + -t 4.53691 -s 10 -d 7 -p ack -e 40 -c 0 -i 8030 -a 0 -x {10.0 9.0 4010 ------- null} - -t 4.53691 -s 10 -d 7 -p ack -e 40 -c 0 -i 8030 -a 0 -x {10.0 9.0 4010 ------- null} h -t 4.53691 -s 10 -d 7 -p ack -e 40 -c 0 -i 8030 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.53763 -s 0 -d 9 -p ack -e 40 -c 0 -i 8020 -a 0 -x {10.0 9.0 4005 ------- null} + -t 4.53763 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8031 -a 0 -x {9.0 10.0 4020 ------- null} - -t 4.53763 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8031 -a 0 -x {9.0 10.0 4020 ------- null} h -t 4.53763 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8031 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.5377 -s 10 -d 7 -p ack -e 40 -c 0 -i 8028 -a 0 -x {10.0 9.0 4009 ------- null} + -t 4.5377 -s 7 -d 0 -p ack -e 40 -c 0 -i 8028 -a 0 -x {10.0 9.0 4009 ------- null} h -t 4.5377 -s 7 -d 8 -p ack -e 40 -c 0 -i 8028 -a 0 -x {10.0 9.0 4009 ------- null} + -t 4.53789 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8017 -a 0 -x {9.0 10.0 4013 ------- null} - -t 4.53789 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8017 -a 0 -x {9.0 10.0 4013 ------- null} h -t 4.53789 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8017 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.538 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8027 -a 0 -x {9.0 10.0 4018 ------- null} + -t 4.538 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8027 -a 0 -x {9.0 10.0 4018 ------- null} h -t 4.538 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8027 -a 0 -x {9.0 10.0 4018 ------- null} + -t 4.53802 -s 0 -d 9 -p ack -e 40 -c 0 -i 8024 -a 0 -x {10.0 9.0 4007 ------- null} - -t 4.53802 -s 0 -d 9 -p ack -e 40 -c 0 -i 8024 -a 0 -x {10.0 9.0 4007 ------- null} h -t 4.53802 -s 0 -d 9 -p ack -e 40 -c 0 -i 8024 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.53813 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8013 -a 0 -x {9.0 10.0 4011 ------- null} + -t 4.53813 -s 10 -d 7 -p ack -e 40 -c 0 -i 8032 -a 0 -x {10.0 9.0 4011 ------- null} - -t 4.53813 -s 10 -d 7 -p ack -e 40 -c 0 -i 8032 -a 0 -x {10.0 9.0 4011 ------- null} h -t 4.53813 -s 10 -d 7 -p ack -e 40 -c 0 -i 8032 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.53888 -s 0 -d 9 -p ack -e 40 -c 0 -i 8022 -a 0 -x {10.0 9.0 4006 ------- null} + -t 4.53888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8033 -a 0 -x {9.0 10.0 4021 ------- null} - -t 4.53888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8033 -a 0 -x {9.0 10.0 4021 ------- null} h -t 4.53888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8033 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.53894 -s 10 -d 7 -p ack -e 40 -c 0 -i 8030 -a 0 -x {10.0 9.0 4010 ------- null} + -t 4.53894 -s 7 -d 0 -p ack -e 40 -c 0 -i 8030 -a 0 -x {10.0 9.0 4010 ------- null} h -t 4.53894 -s 7 -d 8 -p ack -e 40 -c 0 -i 8030 -a 0 -x {10.0 9.0 4010 ------- null} + -t 4.53898 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8019 -a 0 -x {9.0 10.0 4014 ------- null} - -t 4.53898 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8019 -a 0 -x {9.0 10.0 4014 ------- null} h -t 4.53898 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8019 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.53909 -s 0 -d 9 -p ack -e 40 -c 0 -i 8026 -a 0 -x {10.0 9.0 4008 ------- null} - -t 4.53909 -s 0 -d 9 -p ack -e 40 -c 0 -i 8026 -a 0 -x {10.0 9.0 4008 ------- null} h -t 4.53909 -s 0 -d 9 -p ack -e 40 -c 0 -i 8026 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.53922 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8029 -a 0 -x {9.0 10.0 4019 ------- null} + -t 4.53922 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8029 -a 0 -x {9.0 10.0 4019 ------- null} h -t 4.53922 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8029 -a 0 -x {9.0 10.0 4019 ------- null} r -t 4.53934 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8015 -a 0 -x {9.0 10.0 4012 ------- null} + -t 4.53934 -s 10 -d 7 -p ack -e 40 -c 0 -i 8034 -a 0 -x {10.0 9.0 4012 ------- null} - -t 4.53934 -s 10 -d 7 -p ack -e 40 -c 0 -i 8034 -a 0 -x {10.0 9.0 4012 ------- null} h -t 4.53934 -s 10 -d 7 -p ack -e 40 -c 0 -i 8034 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.54005 -s 0 -d 9 -p ack -e 40 -c 0 -i 8024 -a 0 -x {10.0 9.0 4007 ------- null} + -t 4.54005 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8035 -a 0 -x {9.0 10.0 4022 ------- null} - -t 4.54005 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8035 -a 0 -x {9.0 10.0 4022 ------- null} h -t 4.54005 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8035 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.54006 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8021 -a 0 -x {9.0 10.0 4015 ------- null} - -t 4.54006 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8021 -a 0 -x {9.0 10.0 4015 ------- null} h -t 4.54006 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8021 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.54016 -s 10 -d 7 -p ack -e 40 -c 0 -i 8032 -a 0 -x {10.0 9.0 4011 ------- null} + -t 4.54016 -s 7 -d 0 -p ack -e 40 -c 0 -i 8032 -a 0 -x {10.0 9.0 4011 ------- null} h -t 4.54016 -s 7 -d 8 -p ack -e 40 -c 0 -i 8032 -a 0 -x {10.0 9.0 4011 ------- null} + -t 4.54037 -s 0 -d 9 -p ack -e 40 -c 0 -i 8028 -a 0 -x {10.0 9.0 4009 ------- null} - -t 4.54037 -s 0 -d 9 -p ack -e 40 -c 0 -i 8028 -a 0 -x {10.0 9.0 4009 ------- null} h -t 4.54037 -s 0 -d 9 -p ack -e 40 -c 0 -i 8028 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.54043 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8031 -a 0 -x {9.0 10.0 4020 ------- null} + -t 4.54043 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8031 -a 0 -x {9.0 10.0 4020 ------- null} h -t 4.54043 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8031 -a 0 -x {9.0 10.0 4020 ------- null} r -t 4.54069 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8017 -a 0 -x {9.0 10.0 4013 ------- null} + -t 4.54069 -s 10 -d 7 -p ack -e 40 -c 0 -i 8036 -a 0 -x {10.0 9.0 4013 ------- null} - -t 4.54069 -s 10 -d 7 -p ack -e 40 -c 0 -i 8036 -a 0 -x {10.0 9.0 4013 ------- null} h -t 4.54069 -s 10 -d 7 -p ack -e 40 -c 0 -i 8036 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.54112 -s 0 -d 9 -p ack -e 40 -c 0 -i 8026 -a 0 -x {10.0 9.0 4008 ------- null} + -t 4.54112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8037 -a 0 -x {9.0 10.0 4023 ------- null} - -t 4.54112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8037 -a 0 -x {9.0 10.0 4023 ------- null} h -t 4.54112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8037 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.54134 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8023 -a 0 -x {9.0 10.0 4016 ------- null} - -t 4.54134 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8023 -a 0 -x {9.0 10.0 4016 ------- null} h -t 4.54134 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8023 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.54138 -s 10 -d 7 -p ack -e 40 -c 0 -i 8034 -a 0 -x {10.0 9.0 4012 ------- null} + -t 4.54138 -s 7 -d 0 -p ack -e 40 -c 0 -i 8034 -a 0 -x {10.0 9.0 4012 ------- null} h -t 4.54138 -s 7 -d 8 -p ack -e 40 -c 0 -i 8034 -a 0 -x {10.0 9.0 4012 ------- null} + -t 4.54163 -s 0 -d 9 -p ack -e 40 -c 0 -i 8030 -a 0 -x {10.0 9.0 4010 ------- null} - -t 4.54163 -s 0 -d 9 -p ack -e 40 -c 0 -i 8030 -a 0 -x {10.0 9.0 4010 ------- null} h -t 4.54163 -s 0 -d 9 -p ack -e 40 -c 0 -i 8030 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.54168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8033 -a 0 -x {9.0 10.0 4021 ------- null} + -t 4.54168 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8033 -a 0 -x {9.0 10.0 4021 ------- null} h -t 4.54168 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8033 -a 0 -x {9.0 10.0 4021 ------- null} r -t 4.54178 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8019 -a 0 -x {9.0 10.0 4014 ------- null} + -t 4.54178 -s 10 -d 7 -p ack -e 40 -c 0 -i 8038 -a 0 -x {10.0 9.0 4014 ------- null} - -t 4.54178 -s 10 -d 7 -p ack -e 40 -c 0 -i 8038 -a 0 -x {10.0 9.0 4014 ------- null} h -t 4.54178 -s 10 -d 7 -p ack -e 40 -c 0 -i 8038 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.5424 -s 0 -d 9 -p ack -e 40 -c 0 -i 8028 -a 0 -x {10.0 9.0 4009 ------- null} + -t 4.5424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8039 -a 0 -x {9.0 10.0 4024 ------- null} - -t 4.5424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8039 -a 0 -x {9.0 10.0 4024 ------- null} h -t 4.5424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8039 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.54267 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8025 -a 0 -x {9.0 10.0 4017 ------- null} - -t 4.54267 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8025 -a 0 -x {9.0 10.0 4017 ------- null} h -t 4.54267 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8025 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.54272 -s 10 -d 7 -p ack -e 40 -c 0 -i 8036 -a 0 -x {10.0 9.0 4013 ------- null} + -t 4.54272 -s 7 -d 0 -p ack -e 40 -c 0 -i 8036 -a 0 -x {10.0 9.0 4013 ------- null} h -t 4.54272 -s 7 -d 8 -p ack -e 40 -c 0 -i 8036 -a 0 -x {10.0 9.0 4013 ------- null} + -t 4.54283 -s 0 -d 9 -p ack -e 40 -c 0 -i 8032 -a 0 -x {10.0 9.0 4011 ------- null} - -t 4.54283 -s 0 -d 9 -p ack -e 40 -c 0 -i 8032 -a 0 -x {10.0 9.0 4011 ------- null} h -t 4.54283 -s 0 -d 9 -p ack -e 40 -c 0 -i 8032 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.54285 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8035 -a 0 -x {9.0 10.0 4022 ------- null} + -t 4.54285 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8035 -a 0 -x {9.0 10.0 4022 ------- null} h -t 4.54285 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8035 -a 0 -x {9.0 10.0 4022 ------- null} r -t 4.54286 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8021 -a 0 -x {9.0 10.0 4015 ------- null} + -t 4.54286 -s 10 -d 7 -p ack -e 40 -c 0 -i 8040 -a 0 -x {10.0 9.0 4015 ------- null} - -t 4.54286 -s 10 -d 7 -p ack -e 40 -c 0 -i 8040 -a 0 -x {10.0 9.0 4015 ------- null} h -t 4.54286 -s 10 -d 7 -p ack -e 40 -c 0 -i 8040 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.54366 -s 0 -d 9 -p ack -e 40 -c 0 -i 8030 -a 0 -x {10.0 9.0 4010 ------- null} + -t 4.54366 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8041 -a 0 -x {9.0 10.0 4025 ------- null} - -t 4.54366 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8041 -a 0 -x {9.0 10.0 4025 ------- null} h -t 4.54366 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8041 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.54376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8027 -a 0 -x {9.0 10.0 4018 ------- null} - -t 4.54376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8027 -a 0 -x {9.0 10.0 4018 ------- null} h -t 4.54376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8027 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.54381 -s 10 -d 7 -p ack -e 40 -c 0 -i 8038 -a 0 -x {10.0 9.0 4014 ------- null} + -t 4.54381 -s 7 -d 0 -p ack -e 40 -c 0 -i 8038 -a 0 -x {10.0 9.0 4014 ------- null} h -t 4.54381 -s 7 -d 8 -p ack -e 40 -c 0 -i 8038 -a 0 -x {10.0 9.0 4014 ------- null} + -t 4.54382 -s 0 -d 9 -p ack -e 40 -c 0 -i 8034 -a 0 -x {10.0 9.0 4012 ------- null} - -t 4.54382 -s 0 -d 9 -p ack -e 40 -c 0 -i 8034 -a 0 -x {10.0 9.0 4012 ------- null} h -t 4.54382 -s 0 -d 9 -p ack -e 40 -c 0 -i 8034 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.54392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8037 -a 0 -x {9.0 10.0 4023 ------- null} + -t 4.54392 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8037 -a 0 -x {9.0 10.0 4023 ------- null} h -t 4.54392 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8037 -a 0 -x {9.0 10.0 4023 ------- null} r -t 4.54414 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8023 -a 0 -x {9.0 10.0 4016 ------- null} + -t 4.54414 -s 10 -d 7 -p ack -e 40 -c 0 -i 8042 -a 0 -x {10.0 9.0 4016 ------- null} - -t 4.54414 -s 10 -d 7 -p ack -e 40 -c 0 -i 8042 -a 0 -x {10.0 9.0 4016 ------- null} h -t 4.54414 -s 10 -d 7 -p ack -e 40 -c 0 -i 8042 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.54485 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8029 -a 0 -x {9.0 10.0 4019 ------- null} - -t 4.54485 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8029 -a 0 -x {9.0 10.0 4019 ------- null} h -t 4.54485 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8029 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.54486 -s 0 -d 9 -p ack -e 40 -c 0 -i 8032 -a 0 -x {10.0 9.0 4011 ------- null} + -t 4.54486 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8043 -a 0 -x {9.0 10.0 4026 ------- null} - -t 4.54486 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8043 -a 0 -x {9.0 10.0 4026 ------- null} h -t 4.54486 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8043 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.5449 -s 10 -d 7 -p ack -e 40 -c 0 -i 8040 -a 0 -x {10.0 9.0 4015 ------- null} + -t 4.5449 -s 7 -d 0 -p ack -e 40 -c 0 -i 8040 -a 0 -x {10.0 9.0 4015 ------- null} h -t 4.5449 -s 7 -d 8 -p ack -e 40 -c 0 -i 8040 -a 0 -x {10.0 9.0 4015 ------- null} + -t 4.54493 -s 0 -d 9 -p ack -e 40 -c 0 -i 8036 -a 0 -x {10.0 9.0 4013 ------- null} - -t 4.54493 -s 0 -d 9 -p ack -e 40 -c 0 -i 8036 -a 0 -x {10.0 9.0 4013 ------- null} h -t 4.54493 -s 0 -d 9 -p ack -e 40 -c 0 -i 8036 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.5452 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8039 -a 0 -x {9.0 10.0 4024 ------- null} + -t 4.5452 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8039 -a 0 -x {9.0 10.0 4024 ------- null} h -t 4.5452 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8039 -a 0 -x {9.0 10.0 4024 ------- null} r -t 4.54547 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8025 -a 0 -x {9.0 10.0 4017 ------- null} + -t 4.54547 -s 10 -d 7 -p ack -e 40 -c 0 -i 8044 -a 0 -x {10.0 9.0 4017 ------- null} - -t 4.54547 -s 10 -d 7 -p ack -e 40 -c 0 -i 8044 -a 0 -x {10.0 9.0 4017 ------- null} h -t 4.54547 -s 10 -d 7 -p ack -e 40 -c 0 -i 8044 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.54586 -s 0 -d 9 -p ack -e 40 -c 0 -i 8034 -a 0 -x {10.0 9.0 4012 ------- null} + -t 4.54586 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8045 -a 0 -x {9.0 10.0 4027 ------- null} - -t 4.54586 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8045 -a 0 -x {9.0 10.0 4027 ------- null} h -t 4.54586 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8045 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.54594 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8031 -a 0 -x {9.0 10.0 4020 ------- null} - -t 4.54594 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8031 -a 0 -x {9.0 10.0 4020 ------- null} h -t 4.54594 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8031 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.54605 -s 0 -d 9 -p ack -e 40 -c 0 -i 8038 -a 0 -x {10.0 9.0 4014 ------- null} - -t 4.54605 -s 0 -d 9 -p ack -e 40 -c 0 -i 8038 -a 0 -x {10.0 9.0 4014 ------- null} h -t 4.54605 -s 0 -d 9 -p ack -e 40 -c 0 -i 8038 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.54618 -s 10 -d 7 -p ack -e 40 -c 0 -i 8042 -a 0 -x {10.0 9.0 4016 ------- null} + -t 4.54618 -s 7 -d 0 -p ack -e 40 -c 0 -i 8042 -a 0 -x {10.0 9.0 4016 ------- null} h -t 4.54618 -s 7 -d 8 -p ack -e 40 -c 0 -i 8042 -a 0 -x {10.0 9.0 4016 ------- null} r -t 4.54646 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8041 -a 0 -x {9.0 10.0 4025 ------- null} + -t 4.54646 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8041 -a 0 -x {9.0 10.0 4025 ------- null} h -t 4.54646 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8041 -a 0 -x {9.0 10.0 4025 ------- null} r -t 4.54656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8027 -a 0 -x {9.0 10.0 4018 ------- null} + -t 4.54656 -s 10 -d 7 -p ack -e 40 -c 0 -i 8046 -a 0 -x {10.0 9.0 4018 ------- null} - -t 4.54656 -s 10 -d 7 -p ack -e 40 -c 0 -i 8046 -a 0 -x {10.0 9.0 4018 ------- null} h -t 4.54656 -s 10 -d 7 -p ack -e 40 -c 0 -i 8046 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.54696 -s 0 -d 9 -p ack -e 40 -c 0 -i 8036 -a 0 -x {10.0 9.0 4013 ------- null} + -t 4.54696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8047 -a 0 -x {9.0 10.0 4028 ------- null} - -t 4.54696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8047 -a 0 -x {9.0 10.0 4028 ------- null} h -t 4.54696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8047 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.54702 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8033 -a 0 -x {9.0 10.0 4021 ------- null} - -t 4.54702 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8033 -a 0 -x {9.0 10.0 4021 ------- null} h -t 4.54702 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8033 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.54714 -s 0 -d 9 -p ack -e 40 -c 0 -i 8040 -a 0 -x {10.0 9.0 4015 ------- null} - -t 4.54714 -s 0 -d 9 -p ack -e 40 -c 0 -i 8040 -a 0 -x {10.0 9.0 4015 ------- null} h -t 4.54714 -s 0 -d 9 -p ack -e 40 -c 0 -i 8040 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.5475 -s 10 -d 7 -p ack -e 40 -c 0 -i 8044 -a 0 -x {10.0 9.0 4017 ------- null} + -t 4.5475 -s 7 -d 0 -p ack -e 40 -c 0 -i 8044 -a 0 -x {10.0 9.0 4017 ------- null} h -t 4.5475 -s 7 -d 8 -p ack -e 40 -c 0 -i 8044 -a 0 -x {10.0 9.0 4017 ------- null} r -t 4.54765 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8029 -a 0 -x {9.0 10.0 4019 ------- null} + -t 4.54765 -s 10 -d 7 -p ack -e 40 -c 0 -i 8048 -a 0 -x {10.0 9.0 4019 ------- null} - -t 4.54765 -s 10 -d 7 -p ack -e 40 -c 0 -i 8048 -a 0 -x {10.0 9.0 4019 ------- null} h -t 4.54765 -s 10 -d 7 -p ack -e 40 -c 0 -i 8048 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.54766 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8043 -a 0 -x {9.0 10.0 4026 ------- null} + -t 4.54766 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8043 -a 0 -x {9.0 10.0 4026 ------- null} h -t 4.54766 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8043 -a 0 -x {9.0 10.0 4026 ------- null} r -t 4.54808 -s 0 -d 9 -p ack -e 40 -c 0 -i 8038 -a 0 -x {10.0 9.0 4014 ------- null} + -t 4.54808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8049 -a 0 -x {9.0 10.0 4029 ------- null} - -t 4.54808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8049 -a 0 -x {9.0 10.0 4029 ------- null} h -t 4.54808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8049 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.54811 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8035 -a 0 -x {9.0 10.0 4022 ------- null} - -t 4.54811 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8035 -a 0 -x {9.0 10.0 4022 ------- null} h -t 4.54811 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8035 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.54835 -s 0 -d 9 -p ack -e 40 -c 0 -i 8042 -a 0 -x {10.0 9.0 4016 ------- null} - -t 4.54835 -s 0 -d 9 -p ack -e 40 -c 0 -i 8042 -a 0 -x {10.0 9.0 4016 ------- null} h -t 4.54835 -s 0 -d 9 -p ack -e 40 -c 0 -i 8042 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.54859 -s 10 -d 7 -p ack -e 40 -c 0 -i 8046 -a 0 -x {10.0 9.0 4018 ------- null} + -t 4.54859 -s 7 -d 0 -p ack -e 40 -c 0 -i 8046 -a 0 -x {10.0 9.0 4018 ------- null} h -t 4.54859 -s 7 -d 8 -p ack -e 40 -c 0 -i 8046 -a 0 -x {10.0 9.0 4018 ------- null} r -t 4.54866 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8045 -a 0 -x {9.0 10.0 4027 ------- null} + -t 4.54866 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8045 -a 0 -x {9.0 10.0 4027 ------- null} h -t 4.54866 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8045 -a 0 -x {9.0 10.0 4027 ------- null} r -t 4.54874 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8031 -a 0 -x {9.0 10.0 4020 ------- null} + -t 4.54874 -s 10 -d 7 -p ack -e 40 -c 0 -i 8050 -a 0 -x {10.0 9.0 4020 ------- null} - -t 4.54874 -s 10 -d 7 -p ack -e 40 -c 0 -i 8050 -a 0 -x {10.0 9.0 4020 ------- null} h -t 4.54874 -s 10 -d 7 -p ack -e 40 -c 0 -i 8050 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.54917 -s 0 -d 9 -p ack -e 40 -c 0 -i 8040 -a 0 -x {10.0 9.0 4015 ------- null} + -t 4.54917 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8051 -a 0 -x {9.0 10.0 4030 ------- null} - -t 4.54917 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8051 -a 0 -x {9.0 10.0 4030 ------- null} h -t 4.54917 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8051 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.5492 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8037 -a 0 -x {9.0 10.0 4023 ------- null} - -t 4.5492 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8037 -a 0 -x {9.0 10.0 4023 ------- null} h -t 4.5492 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8037 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.54946 -s 0 -d 9 -p ack -e 40 -c 0 -i 8044 -a 0 -x {10.0 9.0 4017 ------- null} - -t 4.54946 -s 0 -d 9 -p ack -e 40 -c 0 -i 8044 -a 0 -x {10.0 9.0 4017 ------- null} h -t 4.54946 -s 0 -d 9 -p ack -e 40 -c 0 -i 8044 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.54968 -s 10 -d 7 -p ack -e 40 -c 0 -i 8048 -a 0 -x {10.0 9.0 4019 ------- null} + -t 4.54968 -s 7 -d 0 -p ack -e 40 -c 0 -i 8048 -a 0 -x {10.0 9.0 4019 ------- null} h -t 4.54968 -s 7 -d 8 -p ack -e 40 -c 0 -i 8048 -a 0 -x {10.0 9.0 4019 ------- null} r -t 4.54976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8047 -a 0 -x {9.0 10.0 4028 ------- null} + -t 4.54976 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8047 -a 0 -x {9.0 10.0 4028 ------- null} h -t 4.54976 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8047 -a 0 -x {9.0 10.0 4028 ------- null} r -t 4.54982 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8033 -a 0 -x {9.0 10.0 4021 ------- null} + -t 4.54982 -s 10 -d 7 -p ack -e 40 -c 0 -i 8052 -a 0 -x {10.0 9.0 4021 ------- null} - -t 4.54982 -s 10 -d 7 -p ack -e 40 -c 0 -i 8052 -a 0 -x {10.0 9.0 4021 ------- null} h -t 4.54982 -s 10 -d 7 -p ack -e 40 -c 0 -i 8052 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.55029 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8039 -a 0 -x {9.0 10.0 4024 ------- null} - -t 4.55029 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8039 -a 0 -x {9.0 10.0 4024 ------- null} h -t 4.55029 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8039 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.55038 -s 0 -d 9 -p ack -e 40 -c 0 -i 8042 -a 0 -x {10.0 9.0 4016 ------- null} + -t 4.55038 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8053 -a 0 -x {9.0 10.0 4031 ------- null} - -t 4.55038 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8053 -a 0 -x {9.0 10.0 4031 ------- null} h -t 4.55038 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8053 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.55058 -s 0 -d 9 -p ack -e 40 -c 0 -i 8046 -a 0 -x {10.0 9.0 4018 ------- null} - -t 4.55058 -s 0 -d 9 -p ack -e 40 -c 0 -i 8046 -a 0 -x {10.0 9.0 4018 ------- null} h -t 4.55058 -s 0 -d 9 -p ack -e 40 -c 0 -i 8046 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.55077 -s 10 -d 7 -p ack -e 40 -c 0 -i 8050 -a 0 -x {10.0 9.0 4020 ------- null} + -t 4.55077 -s 7 -d 0 -p ack -e 40 -c 0 -i 8050 -a 0 -x {10.0 9.0 4020 ------- null} h -t 4.55077 -s 7 -d 8 -p ack -e 40 -c 0 -i 8050 -a 0 -x {10.0 9.0 4020 ------- null} r -t 4.55088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8049 -a 0 -x {9.0 10.0 4029 ------- null} + -t 4.55088 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8049 -a 0 -x {9.0 10.0 4029 ------- null} h -t 4.55088 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8049 -a 0 -x {9.0 10.0 4029 ------- null} r -t 4.55091 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8035 -a 0 -x {9.0 10.0 4022 ------- null} + -t 4.55091 -s 10 -d 7 -p ack -e 40 -c 0 -i 8054 -a 0 -x {10.0 9.0 4022 ------- null} - -t 4.55091 -s 10 -d 7 -p ack -e 40 -c 0 -i 8054 -a 0 -x {10.0 9.0 4022 ------- null} h -t 4.55091 -s 10 -d 7 -p ack -e 40 -c 0 -i 8054 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.55149 -s 0 -d 9 -p ack -e 40 -c 0 -i 8044 -a 0 -x {10.0 9.0 4017 ------- null} + -t 4.55149 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8055 -a 0 -x {9.0 10.0 4032 ------- null} - -t 4.55149 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8055 -a 0 -x {9.0 10.0 4032 ------- null} h -t 4.55149 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8055 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.55163 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8041 -a 0 -x {9.0 10.0 4025 ------- null} - -t 4.55163 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8041 -a 0 -x {9.0 10.0 4025 ------- null} h -t 4.55163 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8041 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.55186 -s 10 -d 7 -p ack -e 40 -c 0 -i 8052 -a 0 -x {10.0 9.0 4021 ------- null} + -t 4.55186 -s 7 -d 0 -p ack -e 40 -c 0 -i 8052 -a 0 -x {10.0 9.0 4021 ------- null} h -t 4.55186 -s 7 -d 8 -p ack -e 40 -c 0 -i 8052 -a 0 -x {10.0 9.0 4021 ------- null} + -t 4.55186 -s 0 -d 9 -p ack -e 40 -c 0 -i 8048 -a 0 -x {10.0 9.0 4019 ------- null} - -t 4.55186 -s 0 -d 9 -p ack -e 40 -c 0 -i 8048 -a 0 -x {10.0 9.0 4019 ------- null} h -t 4.55186 -s 0 -d 9 -p ack -e 40 -c 0 -i 8048 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.55197 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8051 -a 0 -x {9.0 10.0 4030 ------- null} + -t 4.55197 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8051 -a 0 -x {9.0 10.0 4030 ------- null} h -t 4.55197 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8051 -a 0 -x {9.0 10.0 4030 ------- null} r -t 4.552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8037 -a 0 -x {9.0 10.0 4023 ------- null} + -t 4.552 -s 10 -d 7 -p ack -e 40 -c 0 -i 8056 -a 0 -x {10.0 9.0 4023 ------- null} - -t 4.552 -s 10 -d 7 -p ack -e 40 -c 0 -i 8056 -a 0 -x {10.0 9.0 4023 ------- null} h -t 4.552 -s 10 -d 7 -p ack -e 40 -c 0 -i 8056 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.55261 -s 0 -d 9 -p ack -e 40 -c 0 -i 8046 -a 0 -x {10.0 9.0 4018 ------- null} + -t 4.55261 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8057 -a 0 -x {9.0 10.0 4033 ------- null} - -t 4.55261 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8057 -a 0 -x {9.0 10.0 4033 ------- null} h -t 4.55261 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8057 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.55272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8043 -a 0 -x {9.0 10.0 4026 ------- null} - -t 4.55272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8043 -a 0 -x {9.0 10.0 4026 ------- null} h -t 4.55272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8043 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.55283 -s 0 -d 9 -p ack -e 40 -c 0 -i 8050 -a 0 -x {10.0 9.0 4020 ------- null} - -t 4.55283 -s 0 -d 9 -p ack -e 40 -c 0 -i 8050 -a 0 -x {10.0 9.0 4020 ------- null} h -t 4.55283 -s 0 -d 9 -p ack -e 40 -c 0 -i 8050 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.55294 -s 10 -d 7 -p ack -e 40 -c 0 -i 8054 -a 0 -x {10.0 9.0 4022 ------- null} + -t 4.55294 -s 7 -d 0 -p ack -e 40 -c 0 -i 8054 -a 0 -x {10.0 9.0 4022 ------- null} h -t 4.55294 -s 7 -d 8 -p ack -e 40 -c 0 -i 8054 -a 0 -x {10.0 9.0 4022 ------- null} r -t 4.55309 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8039 -a 0 -x {9.0 10.0 4024 ------- null} + -t 4.55309 -s 10 -d 7 -p ack -e 40 -c 0 -i 8058 -a 0 -x {10.0 9.0 4024 ------- null} - -t 4.55309 -s 10 -d 7 -p ack -e 40 -c 0 -i 8058 -a 0 -x {10.0 9.0 4024 ------- null} h -t 4.55309 -s 10 -d 7 -p ack -e 40 -c 0 -i 8058 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.55318 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8053 -a 0 -x {9.0 10.0 4031 ------- null} + -t 4.55318 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8053 -a 0 -x {9.0 10.0 4031 ------- null} h -t 4.55318 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8053 -a 0 -x {9.0 10.0 4031 ------- null} + -t 4.55381 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8045 -a 0 -x {9.0 10.0 4027 ------- null} - -t 4.55381 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8045 -a 0 -x {9.0 10.0 4027 ------- null} h -t 4.55381 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8045 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.55389 -s 0 -d 9 -p ack -e 40 -c 0 -i 8048 -a 0 -x {10.0 9.0 4019 ------- null} + -t 4.55389 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8059 -a 0 -x {9.0 10.0 4034 ------- null} - -t 4.55389 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8059 -a 0 -x {9.0 10.0 4034 ------- null} h -t 4.55389 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8059 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.55403 -s 10 -d 7 -p ack -e 40 -c 0 -i 8056 -a 0 -x {10.0 9.0 4023 ------- null} + -t 4.55403 -s 7 -d 0 -p ack -e 40 -c 0 -i 8056 -a 0 -x {10.0 9.0 4023 ------- null} h -t 4.55403 -s 7 -d 8 -p ack -e 40 -c 0 -i 8056 -a 0 -x {10.0 9.0 4023 ------- null} + -t 4.55411 -s 0 -d 9 -p ack -e 40 -c 0 -i 8052 -a 0 -x {10.0 9.0 4021 ------- null} - -t 4.55411 -s 0 -d 9 -p ack -e 40 -c 0 -i 8052 -a 0 -x {10.0 9.0 4021 ------- null} h -t 4.55411 -s 0 -d 9 -p ack -e 40 -c 0 -i 8052 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.55429 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8055 -a 0 -x {9.0 10.0 4032 ------- null} + -t 4.55429 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8055 -a 0 -x {9.0 10.0 4032 ------- null} h -t 4.55429 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8055 -a 0 -x {9.0 10.0 4032 ------- null} r -t 4.55443 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8041 -a 0 -x {9.0 10.0 4025 ------- null} + -t 4.55443 -s 10 -d 7 -p ack -e 40 -c 0 -i 8060 -a 0 -x {10.0 9.0 4025 ------- null} - -t 4.55443 -s 10 -d 7 -p ack -e 40 -c 0 -i 8060 -a 0 -x {10.0 9.0 4025 ------- null} h -t 4.55443 -s 10 -d 7 -p ack -e 40 -c 0 -i 8060 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.55486 -s 0 -d 9 -p ack -e 40 -c 0 -i 8050 -a 0 -x {10.0 9.0 4020 ------- null} + -t 4.55486 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8061 -a 0 -x {9.0 10.0 4035 ------- null} - -t 4.55486 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8061 -a 0 -x {9.0 10.0 4035 ------- null} h -t 4.55486 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8061 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.55498 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8047 -a 0 -x {9.0 10.0 4028 ------- null} - -t 4.55498 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8047 -a 0 -x {9.0 10.0 4028 ------- null} h -t 4.55498 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8047 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.55509 -s 0 -d 9 -p ack -e 40 -c 0 -i 8054 -a 0 -x {10.0 9.0 4022 ------- null} - -t 4.55509 -s 0 -d 9 -p ack -e 40 -c 0 -i 8054 -a 0 -x {10.0 9.0 4022 ------- null} h -t 4.55509 -s 0 -d 9 -p ack -e 40 -c 0 -i 8054 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.55512 -s 10 -d 7 -p ack -e 40 -c 0 -i 8058 -a 0 -x {10.0 9.0 4024 ------- null} + -t 4.55512 -s 7 -d 0 -p ack -e 40 -c 0 -i 8058 -a 0 -x {10.0 9.0 4024 ------- null} h -t 4.55512 -s 7 -d 8 -p ack -e 40 -c 0 -i 8058 -a 0 -x {10.0 9.0 4024 ------- null} r -t 4.55541 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8057 -a 0 -x {9.0 10.0 4033 ------- null} + -t 4.55541 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8057 -a 0 -x {9.0 10.0 4033 ------- null} h -t 4.55541 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8057 -a 0 -x {9.0 10.0 4033 ------- null} r -t 4.55552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8043 -a 0 -x {9.0 10.0 4026 ------- null} + -t 4.55552 -s 10 -d 7 -p ack -e 40 -c 0 -i 8062 -a 0 -x {10.0 9.0 4026 ------- null} - -t 4.55552 -s 10 -d 7 -p ack -e 40 -c 0 -i 8062 -a 0 -x {10.0 9.0 4026 ------- null} h -t 4.55552 -s 10 -d 7 -p ack -e 40 -c 0 -i 8062 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.55606 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8049 -a 0 -x {9.0 10.0 4029 ------- null} - -t 4.55606 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8049 -a 0 -x {9.0 10.0 4029 ------- null} h -t 4.55606 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8049 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.55614 -s 0 -d 9 -p ack -e 40 -c 0 -i 8052 -a 0 -x {10.0 9.0 4021 ------- null} + -t 4.55614 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8063 -a 0 -x {9.0 10.0 4036 ------- null} - -t 4.55614 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8063 -a 0 -x {9.0 10.0 4036 ------- null} h -t 4.55614 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8063 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.55634 -s 0 -d 9 -p ack -e 40 -c 0 -i 8056 -a 0 -x {10.0 9.0 4023 ------- null} - -t 4.55634 -s 0 -d 9 -p ack -e 40 -c 0 -i 8056 -a 0 -x {10.0 9.0 4023 ------- null} h -t 4.55634 -s 0 -d 9 -p ack -e 40 -c 0 -i 8056 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.55646 -s 10 -d 7 -p ack -e 40 -c 0 -i 8060 -a 0 -x {10.0 9.0 4025 ------- null} + -t 4.55646 -s 7 -d 0 -p ack -e 40 -c 0 -i 8060 -a 0 -x {10.0 9.0 4025 ------- null} h -t 4.55646 -s 7 -d 8 -p ack -e 40 -c 0 -i 8060 -a 0 -x {10.0 9.0 4025 ------- null} r -t 4.55661 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8045 -a 0 -x {9.0 10.0 4027 ------- null} + -t 4.55661 -s 10 -d 7 -p ack -e 40 -c 0 -i 8064 -a 0 -x {10.0 9.0 4027 ------- null} - -t 4.55661 -s 10 -d 7 -p ack -e 40 -c 0 -i 8064 -a 0 -x {10.0 9.0 4027 ------- null} h -t 4.55661 -s 10 -d 7 -p ack -e 40 -c 0 -i 8064 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.55669 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8059 -a 0 -x {9.0 10.0 4034 ------- null} + -t 4.55669 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8059 -a 0 -x {9.0 10.0 4034 ------- null} h -t 4.55669 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8059 -a 0 -x {9.0 10.0 4034 ------- null} r -t 4.55712 -s 0 -d 9 -p ack -e 40 -c 0 -i 8054 -a 0 -x {10.0 9.0 4022 ------- null} + -t 4.55712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8065 -a 0 -x {9.0 10.0 4037 ------- null} - -t 4.55712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8065 -a 0 -x {9.0 10.0 4037 ------- null} h -t 4.55712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8065 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.55733 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8051 -a 0 -x {9.0 10.0 4030 ------- null} - -t 4.55733 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8051 -a 0 -x {9.0 10.0 4030 ------- null} h -t 4.55733 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8051 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.55755 -s 10 -d 7 -p ack -e 40 -c 0 -i 8062 -a 0 -x {10.0 9.0 4026 ------- null} + -t 4.55755 -s 7 -d 0 -p ack -e 40 -c 0 -i 8062 -a 0 -x {10.0 9.0 4026 ------- null} h -t 4.55755 -s 7 -d 8 -p ack -e 40 -c 0 -i 8062 -a 0 -x {10.0 9.0 4026 ------- null} + -t 4.55758 -s 0 -d 9 -p ack -e 40 -c 0 -i 8058 -a 0 -x {10.0 9.0 4024 ------- null} - -t 4.55758 -s 0 -d 9 -p ack -e 40 -c 0 -i 8058 -a 0 -x {10.0 9.0 4024 ------- null} h -t 4.55758 -s 0 -d 9 -p ack -e 40 -c 0 -i 8058 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.55766 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8061 -a 0 -x {9.0 10.0 4035 ------- null} + -t 4.55766 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8061 -a 0 -x {9.0 10.0 4035 ------- null} h -t 4.55766 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8061 -a 0 -x {9.0 10.0 4035 ------- null} r -t 4.55778 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8047 -a 0 -x {9.0 10.0 4028 ------- null} + -t 4.55778 -s 10 -d 7 -p ack -e 40 -c 0 -i 8066 -a 0 -x {10.0 9.0 4028 ------- null} - -t 4.55778 -s 10 -d 7 -p ack -e 40 -c 0 -i 8066 -a 0 -x {10.0 9.0 4028 ------- null} h -t 4.55778 -s 10 -d 7 -p ack -e 40 -c 0 -i 8066 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.55837 -s 0 -d 9 -p ack -e 40 -c 0 -i 8056 -a 0 -x {10.0 9.0 4023 ------- null} + -t 4.55837 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8067 -a 0 -x {9.0 10.0 4038 ------- null} - -t 4.55837 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8067 -a 0 -x {9.0 10.0 4038 ------- null} h -t 4.55837 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8067 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.55842 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8053 -a 0 -x {9.0 10.0 4031 ------- null} - -t 4.55842 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8053 -a 0 -x {9.0 10.0 4031 ------- null} h -t 4.55842 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8053 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.55864 -s 10 -d 7 -p ack -e 40 -c 0 -i 8064 -a 0 -x {10.0 9.0 4027 ------- null} + -t 4.55864 -s 7 -d 0 -p ack -e 40 -c 0 -i 8064 -a 0 -x {10.0 9.0 4027 ------- null} h -t 4.55864 -s 7 -d 8 -p ack -e 40 -c 0 -i 8064 -a 0 -x {10.0 9.0 4027 ------- null} + -t 4.5587 -s 0 -d 9 -p ack -e 40 -c 0 -i 8060 -a 0 -x {10.0 9.0 4025 ------- null} - -t 4.5587 -s 0 -d 9 -p ack -e 40 -c 0 -i 8060 -a 0 -x {10.0 9.0 4025 ------- null} h -t 4.5587 -s 0 -d 9 -p ack -e 40 -c 0 -i 8060 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.55886 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8049 -a 0 -x {9.0 10.0 4029 ------- null} + -t 4.55886 -s 10 -d 7 -p ack -e 40 -c 0 -i 8068 -a 0 -x {10.0 9.0 4029 ------- null} - -t 4.55886 -s 10 -d 7 -p ack -e 40 -c 0 -i 8068 -a 0 -x {10.0 9.0 4029 ------- null} h -t 4.55886 -s 10 -d 7 -p ack -e 40 -c 0 -i 8068 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.55894 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8063 -a 0 -x {9.0 10.0 4036 ------- null} + -t 4.55894 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8063 -a 0 -x {9.0 10.0 4036 ------- null} h -t 4.55894 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8063 -a 0 -x {9.0 10.0 4036 ------- null} r -t 4.55962 -s 0 -d 9 -p ack -e 40 -c 0 -i 8058 -a 0 -x {10.0 9.0 4024 ------- null} + -t 4.55962 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8069 -a 0 -x {9.0 10.0 4039 ------- null} - -t 4.55962 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8069 -a 0 -x {9.0 10.0 4039 ------- null} h -t 4.55962 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8069 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.55973 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8055 -a 0 -x {9.0 10.0 4032 ------- null} - -t 4.55973 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8055 -a 0 -x {9.0 10.0 4032 ------- null} h -t 4.55973 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8055 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.55981 -s 10 -d 7 -p ack -e 40 -c 0 -i 8066 -a 0 -x {10.0 9.0 4028 ------- null} + -t 4.55981 -s 7 -d 0 -p ack -e 40 -c 0 -i 8066 -a 0 -x {10.0 9.0 4028 ------- null} h -t 4.55981 -s 7 -d 8 -p ack -e 40 -c 0 -i 8066 -a 0 -x {10.0 9.0 4028 ------- null} + -t 4.55982 -s 0 -d 9 -p ack -e 40 -c 0 -i 8062 -a 0 -x {10.0 9.0 4026 ------- null} - -t 4.55982 -s 0 -d 9 -p ack -e 40 -c 0 -i 8062 -a 0 -x {10.0 9.0 4026 ------- null} h -t 4.55982 -s 0 -d 9 -p ack -e 40 -c 0 -i 8062 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.55992 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8065 -a 0 -x {9.0 10.0 4037 ------- null} + -t 4.55992 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8065 -a 0 -x {9.0 10.0 4037 ------- null} h -t 4.55992 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8065 -a 0 -x {9.0 10.0 4037 ------- null} r -t 4.56013 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8051 -a 0 -x {9.0 10.0 4030 ------- null} + -t 4.56013 -s 10 -d 7 -p ack -e 40 -c 0 -i 8070 -a 0 -x {10.0 9.0 4030 ------- null} - -t 4.56013 -s 10 -d 7 -p ack -e 40 -c 0 -i 8070 -a 0 -x {10.0 9.0 4030 ------- null} h -t 4.56013 -s 10 -d 7 -p ack -e 40 -c 0 -i 8070 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.56074 -s 0 -d 9 -p ack -e 40 -c 0 -i 8060 -a 0 -x {10.0 9.0 4025 ------- null} + -t 4.56074 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8071 -a 0 -x {9.0 10.0 4040 ------- null} - -t 4.56074 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8071 -a 0 -x {9.0 10.0 4040 ------- null} h -t 4.56074 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8071 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.56082 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8057 -a 0 -x {9.0 10.0 4033 ------- null} - -t 4.56082 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8057 -a 0 -x {9.0 10.0 4033 ------- null} h -t 4.56082 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8057 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.5609 -s 10 -d 7 -p ack -e 40 -c 0 -i 8068 -a 0 -x {10.0 9.0 4029 ------- null} + -t 4.5609 -s 7 -d 0 -p ack -e 40 -c 0 -i 8068 -a 0 -x {10.0 9.0 4029 ------- null} h -t 4.5609 -s 7 -d 8 -p ack -e 40 -c 0 -i 8068 -a 0 -x {10.0 9.0 4029 ------- null} + -t 4.56107 -s 0 -d 9 -p ack -e 40 -c 0 -i 8064 -a 0 -x {10.0 9.0 4027 ------- null} - -t 4.56107 -s 0 -d 9 -p ack -e 40 -c 0 -i 8064 -a 0 -x {10.0 9.0 4027 ------- null} h -t 4.56107 -s 0 -d 9 -p ack -e 40 -c 0 -i 8064 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.56117 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8067 -a 0 -x {9.0 10.0 4038 ------- null} + -t 4.56117 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8067 -a 0 -x {9.0 10.0 4038 ------- null} h -t 4.56117 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8067 -a 0 -x {9.0 10.0 4038 ------- null} r -t 4.56122 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8053 -a 0 -x {9.0 10.0 4031 ------- null} + -t 4.56122 -s 10 -d 7 -p ack -e 40 -c 0 -i 8072 -a 0 -x {10.0 9.0 4031 ------- null} - -t 4.56122 -s 10 -d 7 -p ack -e 40 -c 0 -i 8072 -a 0 -x {10.0 9.0 4031 ------- null} h -t 4.56122 -s 10 -d 7 -p ack -e 40 -c 0 -i 8072 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.56186 -s 0 -d 9 -p ack -e 40 -c 0 -i 8062 -a 0 -x {10.0 9.0 4026 ------- null} + -t 4.56186 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8073 -a 0 -x {9.0 10.0 4041 ------- null} - -t 4.56186 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8073 -a 0 -x {9.0 10.0 4041 ------- null} h -t 4.56186 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8073 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.5619 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8059 -a 0 -x {9.0 10.0 4034 ------- null} - -t 4.5619 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8059 -a 0 -x {9.0 10.0 4034 ------- null} h -t 4.5619 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8059 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.56214 -s 0 -d 9 -p ack -e 40 -c 0 -i 8066 -a 0 -x {10.0 9.0 4028 ------- null} - -t 4.56214 -s 0 -d 9 -p ack -e 40 -c 0 -i 8066 -a 0 -x {10.0 9.0 4028 ------- null} h -t 4.56214 -s 0 -d 9 -p ack -e 40 -c 0 -i 8066 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.56216 -s 10 -d 7 -p ack -e 40 -c 0 -i 8070 -a 0 -x {10.0 9.0 4030 ------- null} + -t 4.56216 -s 7 -d 0 -p ack -e 40 -c 0 -i 8070 -a 0 -x {10.0 9.0 4030 ------- null} h -t 4.56216 -s 7 -d 8 -p ack -e 40 -c 0 -i 8070 -a 0 -x {10.0 9.0 4030 ------- null} r -t 4.56242 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8069 -a 0 -x {9.0 10.0 4039 ------- null} + -t 4.56242 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8069 -a 0 -x {9.0 10.0 4039 ------- null} h -t 4.56242 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8069 -a 0 -x {9.0 10.0 4039 ------- null} r -t 4.56253 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8055 -a 0 -x {9.0 10.0 4032 ------- null} + -t 4.56253 -s 10 -d 7 -p ack -e 40 -c 0 -i 8074 -a 0 -x {10.0 9.0 4032 ------- null} - -t 4.56253 -s 10 -d 7 -p ack -e 40 -c 0 -i 8074 -a 0 -x {10.0 9.0 4032 ------- null} h -t 4.56253 -s 10 -d 7 -p ack -e 40 -c 0 -i 8074 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.56299 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8061 -a 0 -x {9.0 10.0 4035 ------- null} - -t 4.56299 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8061 -a 0 -x {9.0 10.0 4035 ------- null} h -t 4.56299 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8061 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.5631 -s 0 -d 9 -p ack -e 40 -c 0 -i 8064 -a 0 -x {10.0 9.0 4027 ------- null} + -t 4.5631 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8075 -a 0 -x {9.0 10.0 4042 ------- null} - -t 4.5631 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8075 -a 0 -x {9.0 10.0 4042 ------- null} h -t 4.5631 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8075 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.5631 -s 0 -d 9 -p ack -e 40 -c 0 -i 8068 -a 0 -x {10.0 9.0 4029 ------- null} - -t 4.5631 -s 0 -d 9 -p ack -e 40 -c 0 -i 8068 -a 0 -x {10.0 9.0 4029 ------- null} h -t 4.5631 -s 0 -d 9 -p ack -e 40 -c 0 -i 8068 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.56325 -s 10 -d 7 -p ack -e 40 -c 0 -i 8072 -a 0 -x {10.0 9.0 4031 ------- null} + -t 4.56325 -s 7 -d 0 -p ack -e 40 -c 0 -i 8072 -a 0 -x {10.0 9.0 4031 ------- null} h -t 4.56325 -s 7 -d 8 -p ack -e 40 -c 0 -i 8072 -a 0 -x {10.0 9.0 4031 ------- null} r -t 4.56354 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8071 -a 0 -x {9.0 10.0 4040 ------- null} + -t 4.56354 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8071 -a 0 -x {9.0 10.0 4040 ------- null} h -t 4.56354 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8071 -a 0 -x {9.0 10.0 4040 ------- null} r -t 4.56362 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8057 -a 0 -x {9.0 10.0 4033 ------- null} + -t 4.56362 -s 10 -d 7 -p ack -e 40 -c 0 -i 8076 -a 0 -x {10.0 9.0 4033 ------- null} - -t 4.56362 -s 10 -d 7 -p ack -e 40 -c 0 -i 8076 -a 0 -x {10.0 9.0 4033 ------- null} h -t 4.56362 -s 10 -d 7 -p ack -e 40 -c 0 -i 8076 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.56408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8063 -a 0 -x {9.0 10.0 4036 ------- null} - -t 4.56408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8063 -a 0 -x {9.0 10.0 4036 ------- null} h -t 4.56408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8063 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.56418 -s 0 -d 9 -p ack -e 40 -c 0 -i 8066 -a 0 -x {10.0 9.0 4028 ------- null} + -t 4.56418 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8077 -a 0 -x {9.0 10.0 4043 ------- null} - -t 4.56418 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8077 -a 0 -x {9.0 10.0 4043 ------- null} h -t 4.56418 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8077 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.5643 -s 0 -d 9 -p ack -e 40 -c 0 -i 8070 -a 0 -x {10.0 9.0 4030 ------- null} - -t 4.5643 -s 0 -d 9 -p ack -e 40 -c 0 -i 8070 -a 0 -x {10.0 9.0 4030 ------- null} h -t 4.5643 -s 0 -d 9 -p ack -e 40 -c 0 -i 8070 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.56456 -s 10 -d 7 -p ack -e 40 -c 0 -i 8074 -a 0 -x {10.0 9.0 4032 ------- null} + -t 4.56456 -s 7 -d 0 -p ack -e 40 -c 0 -i 8074 -a 0 -x {10.0 9.0 4032 ------- null} h -t 4.56456 -s 7 -d 8 -p ack -e 40 -c 0 -i 8074 -a 0 -x {10.0 9.0 4032 ------- null} r -t 4.56466 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8073 -a 0 -x {9.0 10.0 4041 ------- null} + -t 4.56466 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8073 -a 0 -x {9.0 10.0 4041 ------- null} h -t 4.56466 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8073 -a 0 -x {9.0 10.0 4041 ------- null} r -t 4.5647 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8059 -a 0 -x {9.0 10.0 4034 ------- null} + -t 4.5647 -s 10 -d 7 -p ack -e 40 -c 0 -i 8078 -a 0 -x {10.0 9.0 4034 ------- null} - -t 4.5647 -s 10 -d 7 -p ack -e 40 -c 0 -i 8078 -a 0 -x {10.0 9.0 4034 ------- null} h -t 4.5647 -s 10 -d 7 -p ack -e 40 -c 0 -i 8078 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.56514 -s 0 -d 9 -p ack -e 40 -c 0 -i 8068 -a 0 -x {10.0 9.0 4029 ------- null} + -t 4.56514 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8079 -a 0 -x {9.0 10.0 4044 ------- null} - -t 4.56514 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8079 -a 0 -x {9.0 10.0 4044 ------- null} h -t 4.56514 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8079 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.56517 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8065 -a 0 -x {9.0 10.0 4037 ------- null} - -t 4.56517 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8065 -a 0 -x {9.0 10.0 4037 ------- null} h -t 4.56517 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8065 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.56544 -s 0 -d 9 -p ack -e 40 -c 0 -i 8072 -a 0 -x {10.0 9.0 4031 ------- null} - -t 4.56544 -s 0 -d 9 -p ack -e 40 -c 0 -i 8072 -a 0 -x {10.0 9.0 4031 ------- null} h -t 4.56544 -s 0 -d 9 -p ack -e 40 -c 0 -i 8072 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.56565 -s 10 -d 7 -p ack -e 40 -c 0 -i 8076 -a 0 -x {10.0 9.0 4033 ------- null} + -t 4.56565 -s 7 -d 0 -p ack -e 40 -c 0 -i 8076 -a 0 -x {10.0 9.0 4033 ------- null} h -t 4.56565 -s 7 -d 8 -p ack -e 40 -c 0 -i 8076 -a 0 -x {10.0 9.0 4033 ------- null} r -t 4.56579 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8061 -a 0 -x {9.0 10.0 4035 ------- null} + -t 4.56579 -s 10 -d 7 -p ack -e 40 -c 0 -i 8080 -a 0 -x {10.0 9.0 4035 ------- null} - -t 4.56579 -s 10 -d 7 -p ack -e 40 -c 0 -i 8080 -a 0 -x {10.0 9.0 4035 ------- null} h -t 4.56579 -s 10 -d 7 -p ack -e 40 -c 0 -i 8080 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.5659 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8075 -a 0 -x {9.0 10.0 4042 ------- null} + -t 4.5659 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8075 -a 0 -x {9.0 10.0 4042 ------- null} h -t 4.5659 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8075 -a 0 -x {9.0 10.0 4042 ------- null} + -t 4.56627 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8067 -a 0 -x {9.0 10.0 4038 ------- null} - -t 4.56627 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8067 -a 0 -x {9.0 10.0 4038 ------- null} h -t 4.56627 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8067 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.56634 -s 0 -d 9 -p ack -e 40 -c 0 -i 8070 -a 0 -x {10.0 9.0 4030 ------- null} + -t 4.56634 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8081 -a 0 -x {9.0 10.0 4045 ------- null} - -t 4.56634 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8081 -a 0 -x {9.0 10.0 4045 ------- null} h -t 4.56634 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8081 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.56643 -s 0 -d 9 -p ack -e 40 -c 0 -i 8074 -a 0 -x {10.0 9.0 4032 ------- null} - -t 4.56643 -s 0 -d 9 -p ack -e 40 -c 0 -i 8074 -a 0 -x {10.0 9.0 4032 ------- null} h -t 4.56643 -s 0 -d 9 -p ack -e 40 -c 0 -i 8074 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.56674 -s 10 -d 7 -p ack -e 40 -c 0 -i 8078 -a 0 -x {10.0 9.0 4034 ------- null} + -t 4.56674 -s 7 -d 0 -p ack -e 40 -c 0 -i 8078 -a 0 -x {10.0 9.0 4034 ------- null} h -t 4.56674 -s 7 -d 8 -p ack -e 40 -c 0 -i 8078 -a 0 -x {10.0 9.0 4034 ------- null} r -t 4.56688 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8063 -a 0 -x {9.0 10.0 4036 ------- null} + -t 4.56688 -s 10 -d 7 -p ack -e 40 -c 0 -i 8082 -a 0 -x {10.0 9.0 4036 ------- null} - -t 4.56688 -s 10 -d 7 -p ack -e 40 -c 0 -i 8082 -a 0 -x {10.0 9.0 4036 ------- null} h -t 4.56688 -s 10 -d 7 -p ack -e 40 -c 0 -i 8082 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.56698 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8077 -a 0 -x {9.0 10.0 4043 ------- null} + -t 4.56698 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8077 -a 0 -x {9.0 10.0 4043 ------- null} h -t 4.56698 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8077 -a 0 -x {9.0 10.0 4043 ------- null} + -t 4.56736 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8069 -a 0 -x {9.0 10.0 4039 ------- null} - -t 4.56736 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8069 -a 0 -x {9.0 10.0 4039 ------- null} h -t 4.56736 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8069 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.56747 -s 0 -d 9 -p ack -e 40 -c 0 -i 8072 -a 0 -x {10.0 9.0 4031 ------- null} + -t 4.56747 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8083 -a 0 -x {9.0 10.0 4046 ------- null} - -t 4.56747 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8083 -a 0 -x {9.0 10.0 4046 ------- null} h -t 4.56747 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8083 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.56765 -s 0 -d 9 -p ack -e 40 -c 0 -i 8076 -a 0 -x {10.0 9.0 4033 ------- null} - -t 4.56765 -s 0 -d 9 -p ack -e 40 -c 0 -i 8076 -a 0 -x {10.0 9.0 4033 ------- null} h -t 4.56765 -s 0 -d 9 -p ack -e 40 -c 0 -i 8076 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.56782 -s 10 -d 7 -p ack -e 40 -c 0 -i 8080 -a 0 -x {10.0 9.0 4035 ------- null} + -t 4.56782 -s 7 -d 0 -p ack -e 40 -c 0 -i 8080 -a 0 -x {10.0 9.0 4035 ------- null} h -t 4.56782 -s 7 -d 8 -p ack -e 40 -c 0 -i 8080 -a 0 -x {10.0 9.0 4035 ------- null} r -t 4.56794 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8079 -a 0 -x {9.0 10.0 4044 ------- null} + -t 4.56794 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8079 -a 0 -x {9.0 10.0 4044 ------- null} h -t 4.56794 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8079 -a 0 -x {9.0 10.0 4044 ------- null} r -t 4.56797 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8065 -a 0 -x {9.0 10.0 4037 ------- null} + -t 4.56797 -s 10 -d 7 -p ack -e 40 -c 0 -i 8084 -a 0 -x {10.0 9.0 4037 ------- null} - -t 4.56797 -s 10 -d 7 -p ack -e 40 -c 0 -i 8084 -a 0 -x {10.0 9.0 4037 ------- null} h -t 4.56797 -s 10 -d 7 -p ack -e 40 -c 0 -i 8084 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.56846 -s 0 -d 9 -p ack -e 40 -c 0 -i 8074 -a 0 -x {10.0 9.0 4032 ------- null} + -t 4.56846 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8085 -a 0 -x {9.0 10.0 4047 ------- null} - -t 4.56846 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8085 -a 0 -x {9.0 10.0 4047 ------- null} h -t 4.56846 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8085 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.56856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8071 -a 0 -x {9.0 10.0 4040 ------- null} - -t 4.56856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8071 -a 0 -x {9.0 10.0 4040 ------- null} h -t 4.56856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8071 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.56877 -s 0 -d 9 -p ack -e 40 -c 0 -i 8078 -a 0 -x {10.0 9.0 4034 ------- null} - -t 4.56877 -s 0 -d 9 -p ack -e 40 -c 0 -i 8078 -a 0 -x {10.0 9.0 4034 ------- null} h -t 4.56877 -s 0 -d 9 -p ack -e 40 -c 0 -i 8078 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.56891 -s 10 -d 7 -p ack -e 40 -c 0 -i 8082 -a 0 -x {10.0 9.0 4036 ------- null} + -t 4.56891 -s 7 -d 0 -p ack -e 40 -c 0 -i 8082 -a 0 -x {10.0 9.0 4036 ------- null} h -t 4.56891 -s 7 -d 8 -p ack -e 40 -c 0 -i 8082 -a 0 -x {10.0 9.0 4036 ------- null} r -t 4.56907 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8067 -a 0 -x {9.0 10.0 4038 ------- null} + -t 4.56907 -s 10 -d 7 -p ack -e 40 -c 0 -i 8086 -a 0 -x {10.0 9.0 4038 ------- null} - -t 4.56907 -s 10 -d 7 -p ack -e 40 -c 0 -i 8086 -a 0 -x {10.0 9.0 4038 ------- null} h -t 4.56907 -s 10 -d 7 -p ack -e 40 -c 0 -i 8086 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.56914 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8081 -a 0 -x {9.0 10.0 4045 ------- null} + -t 4.56914 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8081 -a 0 -x {9.0 10.0 4045 ------- null} h -t 4.56914 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8081 -a 0 -x {9.0 10.0 4045 ------- null} + -t 4.56965 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8073 -a 0 -x {9.0 10.0 4041 ------- null} - -t 4.56965 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8073 -a 0 -x {9.0 10.0 4041 ------- null} h -t 4.56965 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8073 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.56968 -s 0 -d 9 -p ack -e 40 -c 0 -i 8076 -a 0 -x {10.0 9.0 4033 ------- null} + -t 4.56968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8087 -a 0 -x {9.0 10.0 4048 ------- null} - -t 4.56968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8087 -a 0 -x {9.0 10.0 4048 ------- null} h -t 4.56968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8087 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.56982 -s 0 -d 9 -p ack -e 40 -c 0 -i 8080 -a 0 -x {10.0 9.0 4035 ------- null} - -t 4.56982 -s 0 -d 9 -p ack -e 40 -c 0 -i 8080 -a 0 -x {10.0 9.0 4035 ------- null} h -t 4.56982 -s 0 -d 9 -p ack -e 40 -c 0 -i 8080 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.57 -s 10 -d 7 -p ack -e 40 -c 0 -i 8084 -a 0 -x {10.0 9.0 4037 ------- null} + -t 4.57 -s 7 -d 0 -p ack -e 40 -c 0 -i 8084 -a 0 -x {10.0 9.0 4037 ------- null} h -t 4.57 -s 7 -d 8 -p ack -e 40 -c 0 -i 8084 -a 0 -x {10.0 9.0 4037 ------- null} r -t 4.57016 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8069 -a 0 -x {9.0 10.0 4039 ------- null} + -t 4.57016 -s 10 -d 7 -p ack -e 40 -c 0 -i 8088 -a 0 -x {10.0 9.0 4039 ------- null} - -t 4.57016 -s 10 -d 7 -p ack -e 40 -c 0 -i 8088 -a 0 -x {10.0 9.0 4039 ------- null} h -t 4.57016 -s 10 -d 7 -p ack -e 40 -c 0 -i 8088 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.57027 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8083 -a 0 -x {9.0 10.0 4046 ------- null} + -t 4.57027 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8083 -a 0 -x {9.0 10.0 4046 ------- null} h -t 4.57027 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8083 -a 0 -x {9.0 10.0 4046 ------- null} + -t 4.57074 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8075 -a 0 -x {9.0 10.0 4042 ------- null} - -t 4.57074 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8075 -a 0 -x {9.0 10.0 4042 ------- null} h -t 4.57074 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8075 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.5708 -s 0 -d 9 -p ack -e 40 -c 0 -i 8078 -a 0 -x {10.0 9.0 4034 ------- null} + -t 4.5708 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8089 -a 0 -x {9.0 10.0 4049 ------- null} - -t 4.5708 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8089 -a 0 -x {9.0 10.0 4049 ------- null} h -t 4.5708 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8089 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.57094 -s 0 -d 9 -p ack -e 40 -c 0 -i 8082 -a 0 -x {10.0 9.0 4036 ------- null} - -t 4.57094 -s 0 -d 9 -p ack -e 40 -c 0 -i 8082 -a 0 -x {10.0 9.0 4036 ------- null} h -t 4.57094 -s 0 -d 9 -p ack -e 40 -c 0 -i 8082 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.5711 -s 10 -d 7 -p ack -e 40 -c 0 -i 8086 -a 0 -x {10.0 9.0 4038 ------- null} + -t 4.5711 -s 7 -d 0 -p ack -e 40 -c 0 -i 8086 -a 0 -x {10.0 9.0 4038 ------- null} h -t 4.5711 -s 7 -d 8 -p ack -e 40 -c 0 -i 8086 -a 0 -x {10.0 9.0 4038 ------- null} r -t 4.57126 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8085 -a 0 -x {9.0 10.0 4047 ------- null} + -t 4.57126 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8085 -a 0 -x {9.0 10.0 4047 ------- null} h -t 4.57126 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8085 -a 0 -x {9.0 10.0 4047 ------- null} r -t 4.57136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8071 -a 0 -x {9.0 10.0 4040 ------- null} + -t 4.57136 -s 10 -d 7 -p ack -e 40 -c 0 -i 8090 -a 0 -x {10.0 9.0 4040 ------- null} - -t 4.57136 -s 10 -d 7 -p ack -e 40 -c 0 -i 8090 -a 0 -x {10.0 9.0 4040 ------- null} h -t 4.57136 -s 10 -d 7 -p ack -e 40 -c 0 -i 8090 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.57182 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8077 -a 0 -x {9.0 10.0 4043 ------- null} - -t 4.57182 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8077 -a 0 -x {9.0 10.0 4043 ------- null} h -t 4.57182 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8077 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.57186 -s 0 -d 9 -p ack -e 40 -c 0 -i 8080 -a 0 -x {10.0 9.0 4035 ------- null} + -t 4.57186 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8091 -a 0 -x {9.0 10.0 4050 ------- null} - -t 4.57186 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8091 -a 0 -x {9.0 10.0 4050 ------- null} h -t 4.57186 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8091 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.572 -s 0 -d 9 -p ack -e 40 -c 0 -i 8084 -a 0 -x {10.0 9.0 4037 ------- null} - -t 4.572 -s 0 -d 9 -p ack -e 40 -c 0 -i 8084 -a 0 -x {10.0 9.0 4037 ------- null} h -t 4.572 -s 0 -d 9 -p ack -e 40 -c 0 -i 8084 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.57219 -s 10 -d 7 -p ack -e 40 -c 0 -i 8088 -a 0 -x {10.0 9.0 4039 ------- null} + -t 4.57219 -s 7 -d 0 -p ack -e 40 -c 0 -i 8088 -a 0 -x {10.0 9.0 4039 ------- null} h -t 4.57219 -s 7 -d 8 -p ack -e 40 -c 0 -i 8088 -a 0 -x {10.0 9.0 4039 ------- null} r -t 4.57245 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8073 -a 0 -x {9.0 10.0 4041 ------- null} + -t 4.57245 -s 10 -d 7 -p ack -e 40 -c 0 -i 8092 -a 0 -x {10.0 9.0 4041 ------- null} - -t 4.57245 -s 10 -d 7 -p ack -e 40 -c 0 -i 8092 -a 0 -x {10.0 9.0 4041 ------- null} h -t 4.57245 -s 10 -d 7 -p ack -e 40 -c 0 -i 8092 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.57248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8087 -a 0 -x {9.0 10.0 4048 ------- null} + -t 4.57248 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8087 -a 0 -x {9.0 10.0 4048 ------- null} h -t 4.57248 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8087 -a 0 -x {9.0 10.0 4048 ------- null} + -t 4.57291 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8079 -a 0 -x {9.0 10.0 4044 ------- null} - -t 4.57291 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8079 -a 0 -x {9.0 10.0 4044 ------- null} h -t 4.57291 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8079 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.57298 -s 0 -d 9 -p ack -e 40 -c 0 -i 8082 -a 0 -x {10.0 9.0 4036 ------- null} + -t 4.57298 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8093 -a 0 -x {9.0 10.0 4051 ------- null} - -t 4.57298 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8093 -a 0 -x {9.0 10.0 4051 ------- null} h -t 4.57298 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8093 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.57299 -s 0 -d 9 -p ack -e 40 -c 0 -i 8086 -a 0 -x {10.0 9.0 4038 ------- null} - -t 4.57299 -s 0 -d 9 -p ack -e 40 -c 0 -i 8086 -a 0 -x {10.0 9.0 4038 ------- null} h -t 4.57299 -s 0 -d 9 -p ack -e 40 -c 0 -i 8086 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.57339 -s 10 -d 7 -p ack -e 40 -c 0 -i 8090 -a 0 -x {10.0 9.0 4040 ------- null} + -t 4.57339 -s 7 -d 0 -p ack -e 40 -c 0 -i 8090 -a 0 -x {10.0 9.0 4040 ------- null} h -t 4.57339 -s 7 -d 8 -p ack -e 40 -c 0 -i 8090 -a 0 -x {10.0 9.0 4040 ------- null} r -t 4.57354 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8075 -a 0 -x {9.0 10.0 4042 ------- null} + -t 4.57354 -s 10 -d 7 -p ack -e 40 -c 0 -i 8094 -a 0 -x {10.0 9.0 4042 ------- null} - -t 4.57354 -s 10 -d 7 -p ack -e 40 -c 0 -i 8094 -a 0 -x {10.0 9.0 4042 ------- null} h -t 4.57354 -s 10 -d 7 -p ack -e 40 -c 0 -i 8094 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.5736 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8089 -a 0 -x {9.0 10.0 4049 ------- null} + -t 4.5736 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8089 -a 0 -x {9.0 10.0 4049 ------- null} h -t 4.5736 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8089 -a 0 -x {9.0 10.0 4049 ------- null} + -t 4.574 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8081 -a 0 -x {9.0 10.0 4045 ------- null} - -t 4.574 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8081 -a 0 -x {9.0 10.0 4045 ------- null} h -t 4.574 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8081 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.57403 -s 0 -d 9 -p ack -e 40 -c 0 -i 8084 -a 0 -x {10.0 9.0 4037 ------- null} + -t 4.57403 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8095 -a 0 -x {9.0 10.0 4052 ------- null} - -t 4.57403 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8095 -a 0 -x {9.0 10.0 4052 ------- null} h -t 4.57403 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8095 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.57426 -s 0 -d 9 -p ack -e 40 -c 0 -i 8088 -a 0 -x {10.0 9.0 4039 ------- null} - -t 4.57426 -s 0 -d 9 -p ack -e 40 -c 0 -i 8088 -a 0 -x {10.0 9.0 4039 ------- null} h -t 4.57426 -s 0 -d 9 -p ack -e 40 -c 0 -i 8088 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.57448 -s 10 -d 7 -p ack -e 40 -c 0 -i 8092 -a 0 -x {10.0 9.0 4041 ------- null} + -t 4.57448 -s 7 -d 0 -p ack -e 40 -c 0 -i 8092 -a 0 -x {10.0 9.0 4041 ------- null} h -t 4.57448 -s 7 -d 8 -p ack -e 40 -c 0 -i 8092 -a 0 -x {10.0 9.0 4041 ------- null} r -t 4.57462 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8077 -a 0 -x {9.0 10.0 4043 ------- null} + -t 4.57462 -s 10 -d 7 -p ack -e 40 -c 0 -i 8096 -a 0 -x {10.0 9.0 4043 ------- null} - -t 4.57462 -s 10 -d 7 -p ack -e 40 -c 0 -i 8096 -a 0 -x {10.0 9.0 4043 ------- null} h -t 4.57462 -s 10 -d 7 -p ack -e 40 -c 0 -i 8096 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.57466 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8091 -a 0 -x {9.0 10.0 4050 ------- null} + -t 4.57466 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8091 -a 0 -x {9.0 10.0 4050 ------- null} h -t 4.57466 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8091 -a 0 -x {9.0 10.0 4050 ------- null} r -t 4.57502 -s 0 -d 9 -p ack -e 40 -c 0 -i 8086 -a 0 -x {10.0 9.0 4038 ------- null} + -t 4.57502 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8097 -a 0 -x {9.0 10.0 4053 ------- null} - -t 4.57502 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8097 -a 0 -x {9.0 10.0 4053 ------- null} h -t 4.57502 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8097 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.57509 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8083 -a 0 -x {9.0 10.0 4046 ------- null} - -t 4.57509 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8083 -a 0 -x {9.0 10.0 4046 ------- null} h -t 4.57509 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8083 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.57525 -s 0 -d 9 -p ack -e 40 -c 0 -i 8090 -a 0 -x {10.0 9.0 4040 ------- null} - -t 4.57525 -s 0 -d 9 -p ack -e 40 -c 0 -i 8090 -a 0 -x {10.0 9.0 4040 ------- null} h -t 4.57525 -s 0 -d 9 -p ack -e 40 -c 0 -i 8090 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.57557 -s 10 -d 7 -p ack -e 40 -c 0 -i 8094 -a 0 -x {10.0 9.0 4042 ------- null} + -t 4.57557 -s 7 -d 0 -p ack -e 40 -c 0 -i 8094 -a 0 -x {10.0 9.0 4042 ------- null} h -t 4.57557 -s 7 -d 8 -p ack -e 40 -c 0 -i 8094 -a 0 -x {10.0 9.0 4042 ------- null} r -t 4.57571 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8079 -a 0 -x {9.0 10.0 4044 ------- null} + -t 4.57571 -s 10 -d 7 -p ack -e 40 -c 0 -i 8098 -a 0 -x {10.0 9.0 4044 ------- null} - -t 4.57571 -s 10 -d 7 -p ack -e 40 -c 0 -i 8098 -a 0 -x {10.0 9.0 4044 ------- null} h -t 4.57571 -s 10 -d 7 -p ack -e 40 -c 0 -i 8098 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.57578 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8093 -a 0 -x {9.0 10.0 4051 ------- null} + -t 4.57578 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8093 -a 0 -x {9.0 10.0 4051 ------- null} h -t 4.57578 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8093 -a 0 -x {9.0 10.0 4051 ------- null} + -t 4.57618 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8085 -a 0 -x {9.0 10.0 4047 ------- null} - -t 4.57618 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8085 -a 0 -x {9.0 10.0 4047 ------- null} h -t 4.57618 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8085 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.57629 -s 0 -d 9 -p ack -e 40 -c 0 -i 8088 -a 0 -x {10.0 9.0 4039 ------- null} + -t 4.57629 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8099 -a 0 -x {9.0 10.0 4054 ------- null} - -t 4.57629 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8099 -a 0 -x {9.0 10.0 4054 ------- null} h -t 4.57629 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8099 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.57643 -s 0 -d 9 -p ack -e 40 -c 0 -i 8092 -a 0 -x {10.0 9.0 4041 ------- null} - -t 4.57643 -s 0 -d 9 -p ack -e 40 -c 0 -i 8092 -a 0 -x {10.0 9.0 4041 ------- null} h -t 4.57643 -s 0 -d 9 -p ack -e 40 -c 0 -i 8092 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.57666 -s 10 -d 7 -p ack -e 40 -c 0 -i 8096 -a 0 -x {10.0 9.0 4043 ------- null} + -t 4.57666 -s 7 -d 0 -p ack -e 40 -c 0 -i 8096 -a 0 -x {10.0 9.0 4043 ------- null} h -t 4.57666 -s 7 -d 8 -p ack -e 40 -c 0 -i 8096 -a 0 -x {10.0 9.0 4043 ------- null} r -t 4.5768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8081 -a 0 -x {9.0 10.0 4045 ------- null} + -t 4.5768 -s 10 -d 7 -p ack -e 40 -c 0 -i 8100 -a 0 -x {10.0 9.0 4045 ------- null} - -t 4.5768 -s 10 -d 7 -p ack -e 40 -c 0 -i 8100 -a 0 -x {10.0 9.0 4045 ------- null} h -t 4.5768 -s 10 -d 7 -p ack -e 40 -c 0 -i 8100 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.57683 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8095 -a 0 -x {9.0 10.0 4052 ------- null} + -t 4.57683 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8095 -a 0 -x {9.0 10.0 4052 ------- null} h -t 4.57683 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8095 -a 0 -x {9.0 10.0 4052 ------- null} + -t 4.57726 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8087 -a 0 -x {9.0 10.0 4048 ------- null} - -t 4.57726 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8087 -a 0 -x {9.0 10.0 4048 ------- null} h -t 4.57726 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8087 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.57728 -s 0 -d 9 -p ack -e 40 -c 0 -i 8090 -a 0 -x {10.0 9.0 4040 ------- null} + -t 4.57728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8101 -a 0 -x {9.0 10.0 4055 ------- null} - -t 4.57728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8101 -a 0 -x {9.0 10.0 4055 ------- null} h -t 4.57728 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8101 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.5775 -s 0 -d 9 -p ack -e 40 -c 0 -i 8094 -a 0 -x {10.0 9.0 4042 ------- null} - -t 4.5775 -s 0 -d 9 -p ack -e 40 -c 0 -i 8094 -a 0 -x {10.0 9.0 4042 ------- null} h -t 4.5775 -s 0 -d 9 -p ack -e 40 -c 0 -i 8094 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.57774 -s 10 -d 7 -p ack -e 40 -c 0 -i 8098 -a 0 -x {10.0 9.0 4044 ------- null} + -t 4.57774 -s 7 -d 0 -p ack -e 40 -c 0 -i 8098 -a 0 -x {10.0 9.0 4044 ------- null} h -t 4.57774 -s 7 -d 8 -p ack -e 40 -c 0 -i 8098 -a 0 -x {10.0 9.0 4044 ------- null} r -t 4.57782 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8097 -a 0 -x {9.0 10.0 4053 ------- null} + -t 4.57782 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8097 -a 0 -x {9.0 10.0 4053 ------- null} h -t 4.57782 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8097 -a 0 -x {9.0 10.0 4053 ------- null} r -t 4.57789 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8083 -a 0 -x {9.0 10.0 4046 ------- null} + -t 4.57789 -s 10 -d 7 -p ack -e 40 -c 0 -i 8102 -a 0 -x {10.0 9.0 4046 ------- null} - -t 4.57789 -s 10 -d 7 -p ack -e 40 -c 0 -i 8102 -a 0 -x {10.0 9.0 4046 ------- null} h -t 4.57789 -s 10 -d 7 -p ack -e 40 -c 0 -i 8102 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.57835 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8089 -a 0 -x {9.0 10.0 4049 ------- null} - -t 4.57835 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8089 -a 0 -x {9.0 10.0 4049 ------- null} h -t 4.57835 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8089 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.57846 -s 0 -d 9 -p ack -e 40 -c 0 -i 8092 -a 0 -x {10.0 9.0 4041 ------- null} + -t 4.57846 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8103 -a 0 -x {9.0 10.0 4056 ------- null} - -t 4.57846 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8103 -a 0 -x {9.0 10.0 4056 ------- null} h -t 4.57846 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8103 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.57866 -s 0 -d 9 -p ack -e 40 -c 0 -i 8096 -a 0 -x {10.0 9.0 4043 ------- null} - -t 4.57866 -s 0 -d 9 -p ack -e 40 -c 0 -i 8096 -a 0 -x {10.0 9.0 4043 ------- null} h -t 4.57866 -s 0 -d 9 -p ack -e 40 -c 0 -i 8096 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.57883 -s 10 -d 7 -p ack -e 40 -c 0 -i 8100 -a 0 -x {10.0 9.0 4045 ------- null} + -t 4.57883 -s 7 -d 0 -p ack -e 40 -c 0 -i 8100 -a 0 -x {10.0 9.0 4045 ------- null} h -t 4.57883 -s 7 -d 8 -p ack -e 40 -c 0 -i 8100 -a 0 -x {10.0 9.0 4045 ------- null} r -t 4.57898 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8085 -a 0 -x {9.0 10.0 4047 ------- null} + -t 4.57898 -s 10 -d 7 -p ack -e 40 -c 0 -i 8104 -a 0 -x {10.0 9.0 4047 ------- null} - -t 4.57898 -s 10 -d 7 -p ack -e 40 -c 0 -i 8104 -a 0 -x {10.0 9.0 4047 ------- null} h -t 4.57898 -s 10 -d 7 -p ack -e 40 -c 0 -i 8104 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.57909 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8099 -a 0 -x {9.0 10.0 4054 ------- null} + -t 4.57909 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8099 -a 0 -x {9.0 10.0 4054 ------- null} h -t 4.57909 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8099 -a 0 -x {9.0 10.0 4054 ------- null} r -t 4.57954 -s 0 -d 9 -p ack -e 40 -c 0 -i 8094 -a 0 -x {10.0 9.0 4042 ------- null} + -t 4.57954 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8105 -a 0 -x {9.0 10.0 4057 ------- null} - -t 4.57954 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8105 -a 0 -x {9.0 10.0 4057 ------- null} h -t 4.57954 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8105 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.57962 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8091 -a 0 -x {9.0 10.0 4050 ------- null} - -t 4.57962 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8091 -a 0 -x {9.0 10.0 4050 ------- null} h -t 4.57962 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8091 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.5799 -s 0 -d 9 -p ack -e 40 -c 0 -i 8098 -a 0 -x {10.0 9.0 4044 ------- null} - -t 4.5799 -s 0 -d 9 -p ack -e 40 -c 0 -i 8098 -a 0 -x {10.0 9.0 4044 ------- null} h -t 4.5799 -s 0 -d 9 -p ack -e 40 -c 0 -i 8098 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.57992 -s 10 -d 7 -p ack -e 40 -c 0 -i 8102 -a 0 -x {10.0 9.0 4046 ------- null} + -t 4.57992 -s 7 -d 0 -p ack -e 40 -c 0 -i 8102 -a 0 -x {10.0 9.0 4046 ------- null} h -t 4.57992 -s 7 -d 8 -p ack -e 40 -c 0 -i 8102 -a 0 -x {10.0 9.0 4046 ------- null} r -t 4.58006 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8087 -a 0 -x {9.0 10.0 4048 ------- null} + -t 4.58006 -s 10 -d 7 -p ack -e 40 -c 0 -i 8106 -a 0 -x {10.0 9.0 4048 ------- null} - -t 4.58006 -s 10 -d 7 -p ack -e 40 -c 0 -i 8106 -a 0 -x {10.0 9.0 4048 ------- null} h -t 4.58006 -s 10 -d 7 -p ack -e 40 -c 0 -i 8106 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.58008 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8101 -a 0 -x {9.0 10.0 4055 ------- null} + -t 4.58008 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8101 -a 0 -x {9.0 10.0 4055 ------- null} h -t 4.58008 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8101 -a 0 -x {9.0 10.0 4055 ------- null} r -t 4.58069 -s 0 -d 9 -p ack -e 40 -c 0 -i 8096 -a 0 -x {10.0 9.0 4043 ------- null} + -t 4.58069 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8107 -a 0 -x {9.0 10.0 4058 ------- null} - -t 4.58069 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8107 -a 0 -x {9.0 10.0 4058 ------- null} h -t 4.58069 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8107 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.58094 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8093 -a 0 -x {9.0 10.0 4051 ------- null} - -t 4.58094 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8093 -a 0 -x {9.0 10.0 4051 ------- null} h -t 4.58094 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8093 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.58101 -s 10 -d 7 -p ack -e 40 -c 0 -i 8104 -a 0 -x {10.0 9.0 4047 ------- null} + -t 4.58101 -s 7 -d 0 -p ack -e 40 -c 0 -i 8104 -a 0 -x {10.0 9.0 4047 ------- null} h -t 4.58101 -s 7 -d 8 -p ack -e 40 -c 0 -i 8104 -a 0 -x {10.0 9.0 4047 ------- null} r -t 4.58115 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8089 -a 0 -x {9.0 10.0 4049 ------- null} + -t 4.58115 -s 10 -d 7 -p ack -e 40 -c 0 -i 8108 -a 0 -x {10.0 9.0 4049 ------- null} - -t 4.58115 -s 10 -d 7 -p ack -e 40 -c 0 -i 8108 -a 0 -x {10.0 9.0 4049 ------- null} h -t 4.58115 -s 10 -d 7 -p ack -e 40 -c 0 -i 8108 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.58122 -s 0 -d 9 -p ack -e 40 -c 0 -i 8100 -a 0 -x {10.0 9.0 4045 ------- null} - -t 4.58122 -s 0 -d 9 -p ack -e 40 -c 0 -i 8100 -a 0 -x {10.0 9.0 4045 ------- null} h -t 4.58122 -s 0 -d 9 -p ack -e 40 -c 0 -i 8100 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.58126 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8103 -a 0 -x {9.0 10.0 4056 ------- null} + -t 4.58126 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8103 -a 0 -x {9.0 10.0 4056 ------- null} h -t 4.58126 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8103 -a 0 -x {9.0 10.0 4056 ------- null} r -t 4.58194 -s 0 -d 9 -p ack -e 40 -c 0 -i 8098 -a 0 -x {10.0 9.0 4044 ------- null} + -t 4.58194 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8109 -a 0 -x {9.0 10.0 4059 ------- null} - -t 4.58194 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8109 -a 0 -x {9.0 10.0 4059 ------- null} h -t 4.58194 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8109 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.5821 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8095 -a 0 -x {9.0 10.0 4052 ------- null} - -t 4.5821 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8095 -a 0 -x {9.0 10.0 4052 ------- null} h -t 4.5821 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8095 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.5821 -s 10 -d 7 -p ack -e 40 -c 0 -i 8106 -a 0 -x {10.0 9.0 4048 ------- null} + -t 4.5821 -s 7 -d 0 -p ack -e 40 -c 0 -i 8106 -a 0 -x {10.0 9.0 4048 ------- null} h -t 4.5821 -s 7 -d 8 -p ack -e 40 -c 0 -i 8106 -a 0 -x {10.0 9.0 4048 ------- null} + -t 4.58234 -s 0 -d 9 -p ack -e 40 -c 0 -i 8102 -a 0 -x {10.0 9.0 4046 ------- null} - -t 4.58234 -s 0 -d 9 -p ack -e 40 -c 0 -i 8102 -a 0 -x {10.0 9.0 4046 ------- null} h -t 4.58234 -s 0 -d 9 -p ack -e 40 -c 0 -i 8102 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.58234 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8105 -a 0 -x {9.0 10.0 4057 ------- null} + -t 4.58234 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8105 -a 0 -x {9.0 10.0 4057 ------- null} h -t 4.58234 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8105 -a 0 -x {9.0 10.0 4057 ------- null} r -t 4.58242 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8091 -a 0 -x {9.0 10.0 4050 ------- null} + -t 4.58242 -s 10 -d 7 -p ack -e 40 -c 0 -i 8110 -a 0 -x {10.0 9.0 4050 ------- null} - -t 4.58242 -s 10 -d 7 -p ack -e 40 -c 0 -i 8110 -a 0 -x {10.0 9.0 4050 ------- null} h -t 4.58242 -s 10 -d 7 -p ack -e 40 -c 0 -i 8110 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.58318 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8097 -a 0 -x {9.0 10.0 4053 ------- null} - -t 4.58318 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8097 -a 0 -x {9.0 10.0 4053 ------- null} h -t 4.58318 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8097 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.58318 -s 10 -d 7 -p ack -e 40 -c 0 -i 8108 -a 0 -x {10.0 9.0 4049 ------- null} + -t 4.58318 -s 7 -d 0 -p ack -e 40 -c 0 -i 8108 -a 0 -x {10.0 9.0 4049 ------- null} h -t 4.58318 -s 7 -d 8 -p ack -e 40 -c 0 -i 8108 -a 0 -x {10.0 9.0 4049 ------- null} r -t 4.58325 -s 0 -d 9 -p ack -e 40 -c 0 -i 8100 -a 0 -x {10.0 9.0 4045 ------- null} + -t 4.58325 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8111 -a 0 -x {9.0 10.0 4060 ------- null} - -t 4.58325 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8111 -a 0 -x {9.0 10.0 4060 ------- null} h -t 4.58325 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8111 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.58341 -s 0 -d 9 -p ack -e 40 -c 0 -i 8104 -a 0 -x {10.0 9.0 4047 ------- null} - -t 4.58341 -s 0 -d 9 -p ack -e 40 -c 0 -i 8104 -a 0 -x {10.0 9.0 4047 ------- null} h -t 4.58341 -s 0 -d 9 -p ack -e 40 -c 0 -i 8104 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.58349 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8107 -a 0 -x {9.0 10.0 4058 ------- null} + -t 4.58349 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8107 -a 0 -x {9.0 10.0 4058 ------- null} h -t 4.58349 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8107 -a 0 -x {9.0 10.0 4058 ------- null} r -t 4.58374 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8093 -a 0 -x {9.0 10.0 4051 ------- null} + -t 4.58374 -s 10 -d 7 -p ack -e 40 -c 0 -i 8112 -a 0 -x {10.0 9.0 4051 ------- null} - -t 4.58374 -s 10 -d 7 -p ack -e 40 -c 0 -i 8112 -a 0 -x {10.0 9.0 4051 ------- null} h -t 4.58374 -s 10 -d 7 -p ack -e 40 -c 0 -i 8112 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.58427 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8099 -a 0 -x {9.0 10.0 4054 ------- null} - -t 4.58427 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8099 -a 0 -x {9.0 10.0 4054 ------- null} h -t 4.58427 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8099 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.58437 -s 0 -d 9 -p ack -e 40 -c 0 -i 8102 -a 0 -x {10.0 9.0 4046 ------- null} + -t 4.58437 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8113 -a 0 -x {9.0 10.0 4061 ------- null} - -t 4.58437 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8113 -a 0 -x {9.0 10.0 4061 ------- null} h -t 4.58437 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8113 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.58445 -s 10 -d 7 -p ack -e 40 -c 0 -i 8110 -a 0 -x {10.0 9.0 4050 ------- null} + -t 4.58445 -s 7 -d 0 -p ack -e 40 -c 0 -i 8110 -a 0 -x {10.0 9.0 4050 ------- null} h -t 4.58445 -s 7 -d 8 -p ack -e 40 -c 0 -i 8110 -a 0 -x {10.0 9.0 4050 ------- null} + -t 4.58453 -s 0 -d 9 -p ack -e 40 -c 0 -i 8106 -a 0 -x {10.0 9.0 4048 ------- null} - -t 4.58453 -s 0 -d 9 -p ack -e 40 -c 0 -i 8106 -a 0 -x {10.0 9.0 4048 ------- null} h -t 4.58453 -s 0 -d 9 -p ack -e 40 -c 0 -i 8106 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.58474 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8109 -a 0 -x {9.0 10.0 4059 ------- null} + -t 4.58474 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8109 -a 0 -x {9.0 10.0 4059 ------- null} h -t 4.58474 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8109 -a 0 -x {9.0 10.0 4059 ------- null} r -t 4.5849 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8095 -a 0 -x {9.0 10.0 4052 ------- null} + -t 4.5849 -s 10 -d 7 -p ack -e 40 -c 0 -i 8114 -a 0 -x {10.0 9.0 4052 ------- null} - -t 4.5849 -s 10 -d 7 -p ack -e 40 -c 0 -i 8114 -a 0 -x {10.0 9.0 4052 ------- null} h -t 4.5849 -s 10 -d 7 -p ack -e 40 -c 0 -i 8114 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.58536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8101 -a 0 -x {9.0 10.0 4055 ------- null} - -t 4.58536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8101 -a 0 -x {9.0 10.0 4055 ------- null} h -t 4.58536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8101 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.58544 -s 0 -d 9 -p ack -e 40 -c 0 -i 8104 -a 0 -x {10.0 9.0 4047 ------- null} + -t 4.58544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8115 -a 0 -x {9.0 10.0 4062 ------- null} - -t 4.58544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8115 -a 0 -x {9.0 10.0 4062 ------- null} h -t 4.58544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8115 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.58557 -s 0 -d 9 -p ack -e 40 -c 0 -i 8108 -a 0 -x {10.0 9.0 4049 ------- null} - -t 4.58557 -s 0 -d 9 -p ack -e 40 -c 0 -i 8108 -a 0 -x {10.0 9.0 4049 ------- null} h -t 4.58557 -s 0 -d 9 -p ack -e 40 -c 0 -i 8108 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.58578 -s 10 -d 7 -p ack -e 40 -c 0 -i 8112 -a 0 -x {10.0 9.0 4051 ------- null} + -t 4.58578 -s 7 -d 0 -p ack -e 40 -c 0 -i 8112 -a 0 -x {10.0 9.0 4051 ------- null} h -t 4.58578 -s 7 -d 8 -p ack -e 40 -c 0 -i 8112 -a 0 -x {10.0 9.0 4051 ------- null} r -t 4.58598 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8097 -a 0 -x {9.0 10.0 4053 ------- null} + -t 4.58598 -s 10 -d 7 -p ack -e 40 -c 0 -i 8116 -a 0 -x {10.0 9.0 4053 ------- null} - -t 4.58598 -s 10 -d 7 -p ack -e 40 -c 0 -i 8116 -a 0 -x {10.0 9.0 4053 ------- null} h -t 4.58598 -s 10 -d 7 -p ack -e 40 -c 0 -i 8116 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.58605 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8111 -a 0 -x {9.0 10.0 4060 ------- null} + -t 4.58605 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8111 -a 0 -x {9.0 10.0 4060 ------- null} h -t 4.58605 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8111 -a 0 -x {9.0 10.0 4060 ------- null} + -t 4.58645 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8103 -a 0 -x {9.0 10.0 4056 ------- null} - -t 4.58645 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8103 -a 0 -x {9.0 10.0 4056 ------- null} h -t 4.58645 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8103 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.58656 -s 0 -d 9 -p ack -e 40 -c 0 -i 8106 -a 0 -x {10.0 9.0 4048 ------- null} + -t 4.58656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8117 -a 0 -x {9.0 10.0 4063 ------- null} - -t 4.58656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8117 -a 0 -x {9.0 10.0 4063 ------- null} h -t 4.58656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8117 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.58675 -s 0 -d 9 -p ack -e 40 -c 0 -i 8110 -a 0 -x {10.0 9.0 4050 ------- null} - -t 4.58675 -s 0 -d 9 -p ack -e 40 -c 0 -i 8110 -a 0 -x {10.0 9.0 4050 ------- null} h -t 4.58675 -s 0 -d 9 -p ack -e 40 -c 0 -i 8110 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.58693 -s 10 -d 7 -p ack -e 40 -c 0 -i 8114 -a 0 -x {10.0 9.0 4052 ------- null} + -t 4.58693 -s 7 -d 0 -p ack -e 40 -c 0 -i 8114 -a 0 -x {10.0 9.0 4052 ------- null} h -t 4.58693 -s 7 -d 8 -p ack -e 40 -c 0 -i 8114 -a 0 -x {10.0 9.0 4052 ------- null} r -t 4.58707 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8099 -a 0 -x {9.0 10.0 4054 ------- null} + -t 4.58707 -s 10 -d 7 -p ack -e 40 -c 0 -i 8118 -a 0 -x {10.0 9.0 4054 ------- null} - -t 4.58707 -s 10 -d 7 -p ack -e 40 -c 0 -i 8118 -a 0 -x {10.0 9.0 4054 ------- null} h -t 4.58707 -s 10 -d 7 -p ack -e 40 -c 0 -i 8118 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.58717 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8113 -a 0 -x {9.0 10.0 4061 ------- null} + -t 4.58717 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8113 -a 0 -x {9.0 10.0 4061 ------- null} h -t 4.58717 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8113 -a 0 -x {9.0 10.0 4061 ------- null} r -t 4.5876 -s 0 -d 9 -p ack -e 40 -c 0 -i 8108 -a 0 -x {10.0 9.0 4049 ------- null} + -t 4.5876 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8119 -a 0 -x {9.0 10.0 4064 ------- null} - -t 4.5876 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8119 -a 0 -x {9.0 10.0 4064 ------- null} h -t 4.5876 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8119 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.5876 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8105 -a 0 -x {9.0 10.0 4057 ------- null} - -t 4.5876 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8105 -a 0 -x {9.0 10.0 4057 ------- null} h -t 4.5876 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8105 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.58782 -s 0 -d 9 -p ack -e 40 -c 0 -i 8112 -a 0 -x {10.0 9.0 4051 ------- null} - -t 4.58782 -s 0 -d 9 -p ack -e 40 -c 0 -i 8112 -a 0 -x {10.0 9.0 4051 ------- null} h -t 4.58782 -s 0 -d 9 -p ack -e 40 -c 0 -i 8112 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.58802 -s 10 -d 7 -p ack -e 40 -c 0 -i 8116 -a 0 -x {10.0 9.0 4053 ------- null} + -t 4.58802 -s 7 -d 0 -p ack -e 40 -c 0 -i 8116 -a 0 -x {10.0 9.0 4053 ------- null} h -t 4.58802 -s 7 -d 8 -p ack -e 40 -c 0 -i 8116 -a 0 -x {10.0 9.0 4053 ------- null} r -t 4.58816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8101 -a 0 -x {9.0 10.0 4055 ------- null} + -t 4.58816 -s 10 -d 7 -p ack -e 40 -c 0 -i 8120 -a 0 -x {10.0 9.0 4055 ------- null} - -t 4.58816 -s 10 -d 7 -p ack -e 40 -c 0 -i 8120 -a 0 -x {10.0 9.0 4055 ------- null} h -t 4.58816 -s 10 -d 7 -p ack -e 40 -c 0 -i 8120 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.58824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8115 -a 0 -x {9.0 10.0 4062 ------- null} + -t 4.58824 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8115 -a 0 -x {9.0 10.0 4062 ------- null} h -t 4.58824 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8115 -a 0 -x {9.0 10.0 4062 ------- null} + -t 4.58869 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8107 -a 0 -x {9.0 10.0 4058 ------- null} - -t 4.58869 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8107 -a 0 -x {9.0 10.0 4058 ------- null} h -t 4.58869 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8107 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.58878 -s 0 -d 9 -p ack -e 40 -c 0 -i 8110 -a 0 -x {10.0 9.0 4050 ------- null} + -t 4.58878 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8121 -a 0 -x {9.0 10.0 4065 ------- null} - -t 4.58878 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8121 -a 0 -x {9.0 10.0 4065 ------- null} h -t 4.58878 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8121 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.5888 -s 0 -d 9 -p ack -e 40 -c 0 -i 8114 -a 0 -x {10.0 9.0 4052 ------- null} - -t 4.5888 -s 0 -d 9 -p ack -e 40 -c 0 -i 8114 -a 0 -x {10.0 9.0 4052 ------- null} h -t 4.5888 -s 0 -d 9 -p ack -e 40 -c 0 -i 8114 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.5891 -s 10 -d 7 -p ack -e 40 -c 0 -i 8118 -a 0 -x {10.0 9.0 4054 ------- null} + -t 4.5891 -s 7 -d 0 -p ack -e 40 -c 0 -i 8118 -a 0 -x {10.0 9.0 4054 ------- null} h -t 4.5891 -s 7 -d 8 -p ack -e 40 -c 0 -i 8118 -a 0 -x {10.0 9.0 4054 ------- null} r -t 4.58925 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8103 -a 0 -x {9.0 10.0 4056 ------- null} + -t 4.58925 -s 10 -d 7 -p ack -e 40 -c 0 -i 8122 -a 0 -x {10.0 9.0 4056 ------- null} - -t 4.58925 -s 10 -d 7 -p ack -e 40 -c 0 -i 8122 -a 0 -x {10.0 9.0 4056 ------- null} h -t 4.58925 -s 10 -d 7 -p ack -e 40 -c 0 -i 8122 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.58936 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8117 -a 0 -x {9.0 10.0 4063 ------- null} + -t 4.58936 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8117 -a 0 -x {9.0 10.0 4063 ------- null} h -t 4.58936 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8117 -a 0 -x {9.0 10.0 4063 ------- null} + -t 4.58978 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8109 -a 0 -x {9.0 10.0 4059 ------- null} - -t 4.58978 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8109 -a 0 -x {9.0 10.0 4059 ------- null} h -t 4.58978 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8109 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.58986 -s 0 -d 9 -p ack -e 40 -c 0 -i 8112 -a 0 -x {10.0 9.0 4051 ------- null} + -t 4.58986 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8123 -a 0 -x {9.0 10.0 4066 ------- null} - -t 4.58986 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8123 -a 0 -x {9.0 10.0 4066 ------- null} h -t 4.58986 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8123 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.58998 -s 0 -d 9 -p ack -e 40 -c 0 -i 8116 -a 0 -x {10.0 9.0 4053 ------- null} - -t 4.58998 -s 0 -d 9 -p ack -e 40 -c 0 -i 8116 -a 0 -x {10.0 9.0 4053 ------- null} h -t 4.58998 -s 0 -d 9 -p ack -e 40 -c 0 -i 8116 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.59019 -s 10 -d 7 -p ack -e 40 -c 0 -i 8120 -a 0 -x {10.0 9.0 4055 ------- null} + -t 4.59019 -s 7 -d 0 -p ack -e 40 -c 0 -i 8120 -a 0 -x {10.0 9.0 4055 ------- null} h -t 4.59019 -s 7 -d 8 -p ack -e 40 -c 0 -i 8120 -a 0 -x {10.0 9.0 4055 ------- null} r -t 4.5904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8119 -a 0 -x {9.0 10.0 4064 ------- null} + -t 4.5904 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8119 -a 0 -x {9.0 10.0 4064 ------- null} h -t 4.5904 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8119 -a 0 -x {9.0 10.0 4064 ------- null} r -t 4.5904 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8105 -a 0 -x {9.0 10.0 4057 ------- null} + -t 4.5904 -s 10 -d 7 -p ack -e 40 -c 0 -i 8124 -a 0 -x {10.0 9.0 4057 ------- null} - -t 4.5904 -s 10 -d 7 -p ack -e 40 -c 0 -i 8124 -a 0 -x {10.0 9.0 4057 ------- null} h -t 4.5904 -s 10 -d 7 -p ack -e 40 -c 0 -i 8124 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.59083 -s 0 -d 9 -p ack -e 40 -c 0 -i 8114 -a 0 -x {10.0 9.0 4052 ------- null} + -t 4.59083 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8125 -a 0 -x {9.0 10.0 4067 ------- null} - -t 4.59083 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8125 -a 0 -x {9.0 10.0 4067 ------- null} h -t 4.59083 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8125 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.59086 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8111 -a 0 -x {9.0 10.0 4060 ------- null} - -t 4.59086 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8111 -a 0 -x {9.0 10.0 4060 ------- null} h -t 4.59086 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8111 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.59109 -s 0 -d 9 -p ack -e 40 -c 0 -i 8118 -a 0 -x {10.0 9.0 4054 ------- null} - -t 4.59109 -s 0 -d 9 -p ack -e 40 -c 0 -i 8118 -a 0 -x {10.0 9.0 4054 ------- null} h -t 4.59109 -s 0 -d 9 -p ack -e 40 -c 0 -i 8118 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.59128 -s 10 -d 7 -p ack -e 40 -c 0 -i 8122 -a 0 -x {10.0 9.0 4056 ------- null} + -t 4.59128 -s 7 -d 0 -p ack -e 40 -c 0 -i 8122 -a 0 -x {10.0 9.0 4056 ------- null} h -t 4.59128 -s 7 -d 8 -p ack -e 40 -c 0 -i 8122 -a 0 -x {10.0 9.0 4056 ------- null} r -t 4.59149 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8107 -a 0 -x {9.0 10.0 4058 ------- null} + -t 4.59149 -s 10 -d 7 -p ack -e 40 -c 0 -i 8126 -a 0 -x {10.0 9.0 4058 ------- null} - -t 4.59149 -s 10 -d 7 -p ack -e 40 -c 0 -i 8126 -a 0 -x {10.0 9.0 4058 ------- null} h -t 4.59149 -s 10 -d 7 -p ack -e 40 -c 0 -i 8126 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.59158 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8121 -a 0 -x {9.0 10.0 4065 ------- null} + -t 4.59158 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8121 -a 0 -x {9.0 10.0 4065 ------- null} h -t 4.59158 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8121 -a 0 -x {9.0 10.0 4065 ------- null} + -t 4.59195 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8113 -a 0 -x {9.0 10.0 4061 ------- null} - -t 4.59195 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8113 -a 0 -x {9.0 10.0 4061 ------- null} h -t 4.59195 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8113 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.59202 -s 0 -d 9 -p ack -e 40 -c 0 -i 8116 -a 0 -x {10.0 9.0 4053 ------- null} + -t 4.59202 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8127 -a 0 -x {9.0 10.0 4068 ------- null} - -t 4.59202 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8127 -a 0 -x {9.0 10.0 4068 ------- null} h -t 4.59202 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8127 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.59213 -s 0 -d 9 -p ack -e 40 -c 0 -i 8120 -a 0 -x {10.0 9.0 4055 ------- null} - -t 4.59213 -s 0 -d 9 -p ack -e 40 -c 0 -i 8120 -a 0 -x {10.0 9.0 4055 ------- null} h -t 4.59213 -s 0 -d 9 -p ack -e 40 -c 0 -i 8120 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.59243 -s 10 -d 7 -p ack -e 40 -c 0 -i 8124 -a 0 -x {10.0 9.0 4057 ------- null} + -t 4.59243 -s 7 -d 0 -p ack -e 40 -c 0 -i 8124 -a 0 -x {10.0 9.0 4057 ------- null} h -t 4.59243 -s 7 -d 8 -p ack -e 40 -c 0 -i 8124 -a 0 -x {10.0 9.0 4057 ------- null} r -t 4.59258 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8109 -a 0 -x {9.0 10.0 4059 ------- null} + -t 4.59258 -s 10 -d 7 -p ack -e 40 -c 0 -i 8128 -a 0 -x {10.0 9.0 4059 ------- null} - -t 4.59258 -s 10 -d 7 -p ack -e 40 -c 0 -i 8128 -a 0 -x {10.0 9.0 4059 ------- null} h -t 4.59258 -s 10 -d 7 -p ack -e 40 -c 0 -i 8128 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.59266 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8123 -a 0 -x {9.0 10.0 4066 ------- null} + -t 4.59266 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8123 -a 0 -x {9.0 10.0 4066 ------- null} h -t 4.59266 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8123 -a 0 -x {9.0 10.0 4066 ------- null} + -t 4.59304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8115 -a 0 -x {9.0 10.0 4062 ------- null} - -t 4.59304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8115 -a 0 -x {9.0 10.0 4062 ------- null} h -t 4.59304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8115 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.59312 -s 0 -d 9 -p ack -e 40 -c 0 -i 8118 -a 0 -x {10.0 9.0 4054 ------- null} + -t 4.59312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8129 -a 0 -x {9.0 10.0 4069 ------- null} - -t 4.59312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8129 -a 0 -x {9.0 10.0 4069 ------- null} h -t 4.59312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8129 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.59322 -s 0 -d 9 -p ack -e 40 -c 0 -i 8122 -a 0 -x {10.0 9.0 4056 ------- null} - -t 4.59322 -s 0 -d 9 -p ack -e 40 -c 0 -i 8122 -a 0 -x {10.0 9.0 4056 ------- null} h -t 4.59322 -s 0 -d 9 -p ack -e 40 -c 0 -i 8122 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.59352 -s 10 -d 7 -p ack -e 40 -c 0 -i 8126 -a 0 -x {10.0 9.0 4058 ------- null} + -t 4.59352 -s 7 -d 0 -p ack -e 40 -c 0 -i 8126 -a 0 -x {10.0 9.0 4058 ------- null} h -t 4.59352 -s 7 -d 8 -p ack -e 40 -c 0 -i 8126 -a 0 -x {10.0 9.0 4058 ------- null} r -t 4.59363 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8125 -a 0 -x {9.0 10.0 4067 ------- null} + -t 4.59363 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8125 -a 0 -x {9.0 10.0 4067 ------- null} h -t 4.59363 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8125 -a 0 -x {9.0 10.0 4067 ------- null} r -t 4.59366 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8111 -a 0 -x {9.0 10.0 4060 ------- null} + -t 4.59366 -s 10 -d 7 -p ack -e 40 -c 0 -i 8130 -a 0 -x {10.0 9.0 4060 ------- null} - -t 4.59366 -s 10 -d 7 -p ack -e 40 -c 0 -i 8130 -a 0 -x {10.0 9.0 4060 ------- null} h -t 4.59366 -s 10 -d 7 -p ack -e 40 -c 0 -i 8130 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.59413 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8117 -a 0 -x {9.0 10.0 4063 ------- null} - -t 4.59413 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8117 -a 0 -x {9.0 10.0 4063 ------- null} h -t 4.59413 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8117 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.59416 -s 0 -d 9 -p ack -e 40 -c 0 -i 8120 -a 0 -x {10.0 9.0 4055 ------- null} + -t 4.59416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8131 -a 0 -x {9.0 10.0 4070 ------- null} - -t 4.59416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8131 -a 0 -x {9.0 10.0 4070 ------- null} h -t 4.59416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8131 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.59438 -s 0 -d 9 -p ack -e 40 -c 0 -i 8124 -a 0 -x {10.0 9.0 4057 ------- null} - -t 4.59438 -s 0 -d 9 -p ack -e 40 -c 0 -i 8124 -a 0 -x {10.0 9.0 4057 ------- null} h -t 4.59438 -s 0 -d 9 -p ack -e 40 -c 0 -i 8124 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.59461 -s 10 -d 7 -p ack -e 40 -c 0 -i 8128 -a 0 -x {10.0 9.0 4059 ------- null} + -t 4.59461 -s 7 -d 0 -p ack -e 40 -c 0 -i 8128 -a 0 -x {10.0 9.0 4059 ------- null} h -t 4.59461 -s 7 -d 8 -p ack -e 40 -c 0 -i 8128 -a 0 -x {10.0 9.0 4059 ------- null} r -t 4.59475 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8113 -a 0 -x {9.0 10.0 4061 ------- null} + -t 4.59475 -s 10 -d 7 -p ack -e 40 -c 0 -i 8132 -a 0 -x {10.0 9.0 4061 ------- null} - -t 4.59475 -s 10 -d 7 -p ack -e 40 -c 0 -i 8132 -a 0 -x {10.0 9.0 4061 ------- null} h -t 4.59475 -s 10 -d 7 -p ack -e 40 -c 0 -i 8132 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.59482 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8127 -a 0 -x {9.0 10.0 4068 ------- null} + -t 4.59482 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8127 -a 0 -x {9.0 10.0 4068 ------- null} h -t 4.59482 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8127 -a 0 -x {9.0 10.0 4068 ------- null} + -t 4.59522 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8119 -a 0 -x {9.0 10.0 4064 ------- null} - -t 4.59522 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8119 -a 0 -x {9.0 10.0 4064 ------- null} h -t 4.59522 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8119 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.59525 -s 0 -d 9 -p ack -e 40 -c 0 -i 8122 -a 0 -x {10.0 9.0 4056 ------- null} + -t 4.59525 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8133 -a 0 -x {9.0 10.0 4071 ------- null} - -t 4.59525 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8133 -a 0 -x {9.0 10.0 4071 ------- null} h -t 4.59525 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8133 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.59552 -s 0 -d 9 -p ack -e 40 -c 0 -i 8126 -a 0 -x {10.0 9.0 4058 ------- null} - -t 4.59552 -s 0 -d 9 -p ack -e 40 -c 0 -i 8126 -a 0 -x {10.0 9.0 4058 ------- null} h -t 4.59552 -s 0 -d 9 -p ack -e 40 -c 0 -i 8126 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.5957 -s 10 -d 7 -p ack -e 40 -c 0 -i 8130 -a 0 -x {10.0 9.0 4060 ------- null} + -t 4.5957 -s 7 -d 0 -p ack -e 40 -c 0 -i 8130 -a 0 -x {10.0 9.0 4060 ------- null} h -t 4.5957 -s 7 -d 8 -p ack -e 40 -c 0 -i 8130 -a 0 -x {10.0 9.0 4060 ------- null} r -t 4.59584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8115 -a 0 -x {9.0 10.0 4062 ------- null} + -t 4.59584 -s 10 -d 7 -p ack -e 40 -c 0 -i 8134 -a 0 -x {10.0 9.0 4062 ------- null} - -t 4.59584 -s 10 -d 7 -p ack -e 40 -c 0 -i 8134 -a 0 -x {10.0 9.0 4062 ------- null} h -t 4.59584 -s 10 -d 7 -p ack -e 40 -c 0 -i 8134 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.59592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8129 -a 0 -x {9.0 10.0 4069 ------- null} + -t 4.59592 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8129 -a 0 -x {9.0 10.0 4069 ------- null} h -t 4.59592 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8129 -a 0 -x {9.0 10.0 4069 ------- null} r -t 4.59642 -s 0 -d 9 -p ack -e 40 -c 0 -i 8124 -a 0 -x {10.0 9.0 4057 ------- null} + -t 4.59642 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8135 -a 0 -x {9.0 10.0 4072 ------- null} - -t 4.59642 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8135 -a 0 -x {9.0 10.0 4072 ------- null} h -t 4.59642 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8135 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.59656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8121 -a 0 -x {9.0 10.0 4065 ------- null} - -t 4.59656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8121 -a 0 -x {9.0 10.0 4065 ------- null} h -t 4.59656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8121 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.59678 -s 0 -d 9 -p ack -e 40 -c 0 -i 8128 -a 0 -x {10.0 9.0 4059 ------- null} - -t 4.59678 -s 0 -d 9 -p ack -e 40 -c 0 -i 8128 -a 0 -x {10.0 9.0 4059 ------- null} h -t 4.59678 -s 0 -d 9 -p ack -e 40 -c 0 -i 8128 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.59678 -s 10 -d 7 -p ack -e 40 -c 0 -i 8132 -a 0 -x {10.0 9.0 4061 ------- null} + -t 4.59678 -s 7 -d 0 -p ack -e 40 -c 0 -i 8132 -a 0 -x {10.0 9.0 4061 ------- null} h -t 4.59678 -s 7 -d 8 -p ack -e 40 -c 0 -i 8132 -a 0 -x {10.0 9.0 4061 ------- null} r -t 4.59693 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8117 -a 0 -x {9.0 10.0 4063 ------- null} + -t 4.59693 -s 10 -d 7 -p ack -e 40 -c 0 -i 8136 -a 0 -x {10.0 9.0 4063 ------- null} - -t 4.59693 -s 10 -d 7 -p ack -e 40 -c 0 -i 8136 -a 0 -x {10.0 9.0 4063 ------- null} h -t 4.59693 -s 10 -d 7 -p ack -e 40 -c 0 -i 8136 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.59696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8131 -a 0 -x {9.0 10.0 4070 ------- null} + -t 4.59696 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8131 -a 0 -x {9.0 10.0 4070 ------- null} h -t 4.59696 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8131 -a 0 -x {9.0 10.0 4070 ------- null} r -t 4.59755 -s 0 -d 9 -p ack -e 40 -c 0 -i 8126 -a 0 -x {10.0 9.0 4058 ------- null} + -t 4.59755 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8137 -a 0 -x {9.0 10.0 4073 ------- null} - -t 4.59755 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8137 -a 0 -x {9.0 10.0 4073 ------- null} h -t 4.59755 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8137 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.59765 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8123 -a 0 -x {9.0 10.0 4066 ------- null} - -t 4.59765 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8123 -a 0 -x {9.0 10.0 4066 ------- null} h -t 4.59765 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8123 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.59781 -s 0 -d 9 -p ack -e 40 -c 0 -i 8130 -a 0 -x {10.0 9.0 4060 ------- null} - -t 4.59781 -s 0 -d 9 -p ack -e 40 -c 0 -i 8130 -a 0 -x {10.0 9.0 4060 ------- null} h -t 4.59781 -s 0 -d 9 -p ack -e 40 -c 0 -i 8130 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.59787 -s 10 -d 7 -p ack -e 40 -c 0 -i 8134 -a 0 -x {10.0 9.0 4062 ------- null} + -t 4.59787 -s 7 -d 0 -p ack -e 40 -c 0 -i 8134 -a 0 -x {10.0 9.0 4062 ------- null} h -t 4.59787 -s 7 -d 8 -p ack -e 40 -c 0 -i 8134 -a 0 -x {10.0 9.0 4062 ------- null} r -t 4.59802 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8119 -a 0 -x {9.0 10.0 4064 ------- null} + -t 4.59802 -s 10 -d 7 -p ack -e 40 -c 0 -i 8138 -a 0 -x {10.0 9.0 4064 ------- null} - -t 4.59802 -s 10 -d 7 -p ack -e 40 -c 0 -i 8138 -a 0 -x {10.0 9.0 4064 ------- null} h -t 4.59802 -s 10 -d 7 -p ack -e 40 -c 0 -i 8138 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.59805 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8133 -a 0 -x {9.0 10.0 4071 ------- null} + -t 4.59805 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8133 -a 0 -x {9.0 10.0 4071 ------- null} h -t 4.59805 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8133 -a 0 -x {9.0 10.0 4071 ------- null} + -t 4.59874 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8125 -a 0 -x {9.0 10.0 4067 ------- null} - -t 4.59874 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8125 -a 0 -x {9.0 10.0 4067 ------- null} h -t 4.59874 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8125 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.5988 -s 0 -d 9 -p ack -e 40 -c 0 -i 8132 -a 0 -x {10.0 9.0 4061 ------- null} - -t 4.5988 -s 0 -d 9 -p ack -e 40 -c 0 -i 8132 -a 0 -x {10.0 9.0 4061 ------- null} h -t 4.5988 -s 0 -d 9 -p ack -e 40 -c 0 -i 8132 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.59882 -s 0 -d 9 -p ack -e 40 -c 0 -i 8128 -a 0 -x {10.0 9.0 4059 ------- null} + -t 4.59882 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8139 -a 0 -x {9.0 10.0 4074 ------- null} - -t 4.59882 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8139 -a 0 -x {9.0 10.0 4074 ------- null} h -t 4.59882 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8139 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.59896 -s 10 -d 7 -p ack -e 40 -c 0 -i 8136 -a 0 -x {10.0 9.0 4063 ------- null} + -t 4.59896 -s 7 -d 0 -p ack -e 40 -c 0 -i 8136 -a 0 -x {10.0 9.0 4063 ------- null} h -t 4.59896 -s 7 -d 8 -p ack -e 40 -c 0 -i 8136 -a 0 -x {10.0 9.0 4063 ------- null} r -t 4.59922 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8135 -a 0 -x {9.0 10.0 4072 ------- null} + -t 4.59922 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8135 -a 0 -x {9.0 10.0 4072 ------- null} h -t 4.59922 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8135 -a 0 -x {9.0 10.0 4072 ------- null} r -t 4.59936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8121 -a 0 -x {9.0 10.0 4065 ------- null} + -t 4.59936 -s 10 -d 7 -p ack -e 40 -c 0 -i 8140 -a 0 -x {10.0 9.0 4065 ------- null} - -t 4.59936 -s 10 -d 7 -p ack -e 40 -c 0 -i 8140 -a 0 -x {10.0 9.0 4065 ------- null} h -t 4.59936 -s 10 -d 7 -p ack -e 40 -c 0 -i 8140 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.59982 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8127 -a 0 -x {9.0 10.0 4068 ------- null} - -t 4.59982 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8127 -a 0 -x {9.0 10.0 4068 ------- null} h -t 4.59982 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8127 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.59984 -s 0 -d 9 -p ack -e 40 -c 0 -i 8130 -a 0 -x {10.0 9.0 4060 ------- null} + -t 4.59984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8141 -a 0 -x {9.0 10.0 4075 ------- null} - -t 4.59984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8141 -a 0 -x {9.0 10.0 4075 ------- null} h -t 4.59984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8141 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.59994 -s 0 -d 9 -p ack -e 40 -c 0 -i 8134 -a 0 -x {10.0 9.0 4062 ------- null} - -t 4.59994 -s 0 -d 9 -p ack -e 40 -c 0 -i 8134 -a 0 -x {10.0 9.0 4062 ------- null} h -t 4.59994 -s 0 -d 9 -p ack -e 40 -c 0 -i 8134 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.60005 -s 10 -d 7 -p ack -e 40 -c 0 -i 8138 -a 0 -x {10.0 9.0 4064 ------- null} + -t 4.60005 -s 7 -d 0 -p ack -e 40 -c 0 -i 8138 -a 0 -x {10.0 9.0 4064 ------- null} h -t 4.60005 -s 7 -d 8 -p ack -e 40 -c 0 -i 8138 -a 0 -x {10.0 9.0 4064 ------- null} r -t 4.60035 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8137 -a 0 -x {9.0 10.0 4073 ------- null} + -t 4.60035 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8137 -a 0 -x {9.0 10.0 4073 ------- null} h -t 4.60035 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8137 -a 0 -x {9.0 10.0 4073 ------- null} r -t 4.60045 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8123 -a 0 -x {9.0 10.0 4066 ------- null} + -t 4.60045 -s 10 -d 7 -p ack -e 40 -c 0 -i 8142 -a 0 -x {10.0 9.0 4066 ------- null} - -t 4.60045 -s 10 -d 7 -p ack -e 40 -c 0 -i 8142 -a 0 -x {10.0 9.0 4066 ------- null} h -t 4.60045 -s 10 -d 7 -p ack -e 40 -c 0 -i 8142 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.60083 -s 0 -d 9 -p ack -e 40 -c 0 -i 8132 -a 0 -x {10.0 9.0 4061 ------- null} + -t 4.60083 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8143 -a 0 -x {9.0 10.0 4076 ------- null} - -t 4.60083 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8143 -a 0 -x {9.0 10.0 4076 ------- null} h -t 4.60083 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8143 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.60091 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8129 -a 0 -x {9.0 10.0 4069 ------- null} - -t 4.60091 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8129 -a 0 -x {9.0 10.0 4069 ------- null} h -t 4.60091 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8129 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.6012 -s 0 -d 9 -p ack -e 40 -c 0 -i 8136 -a 0 -x {10.0 9.0 4063 ------- null} - -t 4.6012 -s 0 -d 9 -p ack -e 40 -c 0 -i 8136 -a 0 -x {10.0 9.0 4063 ------- null} h -t 4.6012 -s 0 -d 9 -p ack -e 40 -c 0 -i 8136 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.60139 -s 10 -d 7 -p ack -e 40 -c 0 -i 8140 -a 0 -x {10.0 9.0 4065 ------- null} + -t 4.60139 -s 7 -d 0 -p ack -e 40 -c 0 -i 8140 -a 0 -x {10.0 9.0 4065 ------- null} h -t 4.60139 -s 7 -d 8 -p ack -e 40 -c 0 -i 8140 -a 0 -x {10.0 9.0 4065 ------- null} r -t 4.60154 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8125 -a 0 -x {9.0 10.0 4067 ------- null} + -t 4.60154 -s 10 -d 7 -p ack -e 40 -c 0 -i 8144 -a 0 -x {10.0 9.0 4067 ------- null} - -t 4.60154 -s 10 -d 7 -p ack -e 40 -c 0 -i 8144 -a 0 -x {10.0 9.0 4067 ------- null} h -t 4.60154 -s 10 -d 7 -p ack -e 40 -c 0 -i 8144 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.60162 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8139 -a 0 -x {9.0 10.0 4074 ------- null} + -t 4.60162 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8139 -a 0 -x {9.0 10.0 4074 ------- null} h -t 4.60162 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8139 -a 0 -x {9.0 10.0 4074 ------- null} r -t 4.60197 -s 0 -d 9 -p ack -e 40 -c 0 -i 8134 -a 0 -x {10.0 9.0 4062 ------- null} + -t 4.60197 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8145 -a 0 -x {9.0 10.0 4077 ------- null} - -t 4.60197 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8145 -a 0 -x {9.0 10.0 4077 ------- null} h -t 4.60197 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8145 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.60205 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8131 -a 0 -x {9.0 10.0 4070 ------- null} - -t 4.60205 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8131 -a 0 -x {9.0 10.0 4070 ------- null} h -t 4.60205 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8131 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.6023 -s 0 -d 9 -p ack -e 40 -c 0 -i 8138 -a 0 -x {10.0 9.0 4064 ------- null} - -t 4.6023 -s 0 -d 9 -p ack -e 40 -c 0 -i 8138 -a 0 -x {10.0 9.0 4064 ------- null} h -t 4.6023 -s 0 -d 9 -p ack -e 40 -c 0 -i 8138 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.60248 -s 10 -d 7 -p ack -e 40 -c 0 -i 8142 -a 0 -x {10.0 9.0 4066 ------- null} + -t 4.60248 -s 7 -d 0 -p ack -e 40 -c 0 -i 8142 -a 0 -x {10.0 9.0 4066 ------- null} h -t 4.60248 -s 7 -d 8 -p ack -e 40 -c 0 -i 8142 -a 0 -x {10.0 9.0 4066 ------- null} r -t 4.60262 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8127 -a 0 -x {9.0 10.0 4068 ------- null} + -t 4.60262 -s 10 -d 7 -p ack -e 40 -c 0 -i 8146 -a 0 -x {10.0 9.0 4068 ------- null} - -t 4.60262 -s 10 -d 7 -p ack -e 40 -c 0 -i 8146 -a 0 -x {10.0 9.0 4068 ------- null} h -t 4.60262 -s 10 -d 7 -p ack -e 40 -c 0 -i 8146 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.60264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8141 -a 0 -x {9.0 10.0 4075 ------- null} + -t 4.60264 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8141 -a 0 -x {9.0 10.0 4075 ------- null} h -t 4.60264 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8141 -a 0 -x {9.0 10.0 4075 ------- null} + -t 4.60314 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8133 -a 0 -x {9.0 10.0 4071 ------- null} - -t 4.60314 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8133 -a 0 -x {9.0 10.0 4071 ------- null} h -t 4.60314 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8133 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.60323 -s 0 -d 9 -p ack -e 40 -c 0 -i 8136 -a 0 -x {10.0 9.0 4063 ------- null} + -t 4.60323 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8147 -a 0 -x {9.0 10.0 4078 ------- null} - -t 4.60323 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8147 -a 0 -x {9.0 10.0 4078 ------- null} h -t 4.60323 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8147 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.60328 -s 0 -d 9 -p ack -e 40 -c 0 -i 8140 -a 0 -x {10.0 9.0 4065 ------- null} - -t 4.60328 -s 0 -d 9 -p ack -e 40 -c 0 -i 8140 -a 0 -x {10.0 9.0 4065 ------- null} h -t 4.60328 -s 0 -d 9 -p ack -e 40 -c 0 -i 8140 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.60357 -s 10 -d 7 -p ack -e 40 -c 0 -i 8144 -a 0 -x {10.0 9.0 4067 ------- null} + -t 4.60357 -s 7 -d 0 -p ack -e 40 -c 0 -i 8144 -a 0 -x {10.0 9.0 4067 ------- null} h -t 4.60357 -s 7 -d 8 -p ack -e 40 -c 0 -i 8144 -a 0 -x {10.0 9.0 4067 ------- null} r -t 4.60363 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8143 -a 0 -x {9.0 10.0 4076 ------- null} + -t 4.60363 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8143 -a 0 -x {9.0 10.0 4076 ------- null} h -t 4.60363 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8143 -a 0 -x {9.0 10.0 4076 ------- null} r -t 4.60371 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8129 -a 0 -x {9.0 10.0 4069 ------- null} + -t 4.60371 -s 10 -d 7 -p ack -e 40 -c 0 -i 8148 -a 0 -x {10.0 9.0 4069 ------- null} - -t 4.60371 -s 10 -d 7 -p ack -e 40 -c 0 -i 8148 -a 0 -x {10.0 9.0 4069 ------- null} h -t 4.60371 -s 10 -d 7 -p ack -e 40 -c 0 -i 8148 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.60422 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8135 -a 0 -x {9.0 10.0 4072 ------- null} - -t 4.60422 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8135 -a 0 -x {9.0 10.0 4072 ------- null} h -t 4.60422 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8135 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.60434 -s 0 -d 9 -p ack -e 40 -c 0 -i 8138 -a 0 -x {10.0 9.0 4064 ------- null} + -t 4.60434 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8149 -a 0 -x {9.0 10.0 4079 ------- null} - -t 4.60434 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8149 -a 0 -x {9.0 10.0 4079 ------- null} h -t 4.60434 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8149 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.60434 -s 0 -d 9 -p ack -e 40 -c 0 -i 8142 -a 0 -x {10.0 9.0 4066 ------- null} - -t 4.60434 -s 0 -d 9 -p ack -e 40 -c 0 -i 8142 -a 0 -x {10.0 9.0 4066 ------- null} h -t 4.60434 -s 0 -d 9 -p ack -e 40 -c 0 -i 8142 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.60466 -s 10 -d 7 -p ack -e 40 -c 0 -i 8146 -a 0 -x {10.0 9.0 4068 ------- null} + -t 4.60466 -s 7 -d 0 -p ack -e 40 -c 0 -i 8146 -a 0 -x {10.0 9.0 4068 ------- null} h -t 4.60466 -s 7 -d 8 -p ack -e 40 -c 0 -i 8146 -a 0 -x {10.0 9.0 4068 ------- null} r -t 4.60477 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8145 -a 0 -x {9.0 10.0 4077 ------- null} + -t 4.60477 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8145 -a 0 -x {9.0 10.0 4077 ------- null} h -t 4.60477 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8145 -a 0 -x {9.0 10.0 4077 ------- null} r -t 4.60485 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8131 -a 0 -x {9.0 10.0 4070 ------- null} + -t 4.60485 -s 10 -d 7 -p ack -e 40 -c 0 -i 8150 -a 0 -x {10.0 9.0 4070 ------- null} - -t 4.60485 -s 10 -d 7 -p ack -e 40 -c 0 -i 8150 -a 0 -x {10.0 9.0 4070 ------- null} h -t 4.60485 -s 10 -d 7 -p ack -e 40 -c 0 -i 8150 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.60531 -s 0 -d 9 -p ack -e 40 -c 0 -i 8140 -a 0 -x {10.0 9.0 4065 ------- null} + -t 4.60531 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8151 -a 0 -x {9.0 10.0 4080 ------- null} - -t 4.60531 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8151 -a 0 -x {9.0 10.0 4080 ------- null} h -t 4.60531 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8151 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.60531 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8137 -a 0 -x {9.0 10.0 4073 ------- null} - -t 4.60531 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8137 -a 0 -x {9.0 10.0 4073 ------- null} h -t 4.60531 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8137 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.60539 -s 0 -d 9 -p ack -e 40 -c 0 -i 8144 -a 0 -x {10.0 9.0 4067 ------- null} - -t 4.60539 -s 0 -d 9 -p ack -e 40 -c 0 -i 8144 -a 0 -x {10.0 9.0 4067 ------- null} h -t 4.60539 -s 0 -d 9 -p ack -e 40 -c 0 -i 8144 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.60574 -s 10 -d 7 -p ack -e 40 -c 0 -i 8148 -a 0 -x {10.0 9.0 4069 ------- null} + -t 4.60574 -s 7 -d 0 -p ack -e 40 -c 0 -i 8148 -a 0 -x {10.0 9.0 4069 ------- null} h -t 4.60574 -s 7 -d 8 -p ack -e 40 -c 0 -i 8148 -a 0 -x {10.0 9.0 4069 ------- null} r -t 4.60594 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8133 -a 0 -x {9.0 10.0 4071 ------- null} + -t 4.60594 -s 10 -d 7 -p ack -e 40 -c 0 -i 8152 -a 0 -x {10.0 9.0 4071 ------- null} - -t 4.60594 -s 10 -d 7 -p ack -e 40 -c 0 -i 8152 -a 0 -x {10.0 9.0 4071 ------- null} h -t 4.60594 -s 10 -d 7 -p ack -e 40 -c 0 -i 8152 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.60603 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8147 -a 0 -x {9.0 10.0 4078 ------- null} + -t 4.60603 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8147 -a 0 -x {9.0 10.0 4078 ------- null} h -t 4.60603 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8147 -a 0 -x {9.0 10.0 4078 ------- null} r -t 4.60637 -s 0 -d 9 -p ack -e 40 -c 0 -i 8142 -a 0 -x {10.0 9.0 4066 ------- null} + -t 4.60637 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8153 -a 0 -x {9.0 10.0 4081 ------- null} - -t 4.60637 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8153 -a 0 -x {9.0 10.0 4081 ------- null} h -t 4.60637 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8153 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.6064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8139 -a 0 -x {9.0 10.0 4074 ------- null} - -t 4.6064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8139 -a 0 -x {9.0 10.0 4074 ------- null} h -t 4.6064 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8139 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.60669 -s 0 -d 9 -p ack -e 40 -c 0 -i 8146 -a 0 -x {10.0 9.0 4068 ------- null} - -t 4.60669 -s 0 -d 9 -p ack -e 40 -c 0 -i 8146 -a 0 -x {10.0 9.0 4068 ------- null} h -t 4.60669 -s 0 -d 9 -p ack -e 40 -c 0 -i 8146 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.60688 -s 10 -d 7 -p ack -e 40 -c 0 -i 8150 -a 0 -x {10.0 9.0 4070 ------- null} + -t 4.60688 -s 7 -d 0 -p ack -e 40 -c 0 -i 8150 -a 0 -x {10.0 9.0 4070 ------- null} h -t 4.60688 -s 7 -d 8 -p ack -e 40 -c 0 -i 8150 -a 0 -x {10.0 9.0 4070 ------- null} r -t 4.60702 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8135 -a 0 -x {9.0 10.0 4072 ------- null} + -t 4.60702 -s 10 -d 7 -p ack -e 40 -c 0 -i 8154 -a 0 -x {10.0 9.0 4072 ------- null} - -t 4.60702 -s 10 -d 7 -p ack -e 40 -c 0 -i 8154 -a 0 -x {10.0 9.0 4072 ------- null} h -t 4.60702 -s 10 -d 7 -p ack -e 40 -c 0 -i 8154 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.60714 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8149 -a 0 -x {9.0 10.0 4079 ------- null} + -t 4.60714 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8149 -a 0 -x {9.0 10.0 4079 ------- null} h -t 4.60714 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8149 -a 0 -x {9.0 10.0 4079 ------- null} r -t 4.60742 -s 0 -d 9 -p ack -e 40 -c 0 -i 8144 -a 0 -x {10.0 9.0 4067 ------- null} + -t 4.60742 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8155 -a 0 -x {9.0 10.0 4082 ------- null} - -t 4.60742 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8155 -a 0 -x {9.0 10.0 4082 ------- null} h -t 4.60742 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8155 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.60765 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8141 -a 0 -x {9.0 10.0 4075 ------- null} - -t 4.60765 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8141 -a 0 -x {9.0 10.0 4075 ------- null} h -t 4.60765 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8141 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.60786 -s 0 -d 9 -p ack -e 40 -c 0 -i 8148 -a 0 -x {10.0 9.0 4069 ------- null} - -t 4.60786 -s 0 -d 9 -p ack -e 40 -c 0 -i 8148 -a 0 -x {10.0 9.0 4069 ------- null} h -t 4.60786 -s 0 -d 9 -p ack -e 40 -c 0 -i 8148 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.60797 -s 10 -d 7 -p ack -e 40 -c 0 -i 8152 -a 0 -x {10.0 9.0 4071 ------- null} + -t 4.60797 -s 7 -d 0 -p ack -e 40 -c 0 -i 8152 -a 0 -x {10.0 9.0 4071 ------- null} h -t 4.60797 -s 7 -d 8 -p ack -e 40 -c 0 -i 8152 -a 0 -x {10.0 9.0 4071 ------- null} r -t 4.60811 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8151 -a 0 -x {9.0 10.0 4080 ------- null} + -t 4.60811 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8151 -a 0 -x {9.0 10.0 4080 ------- null} h -t 4.60811 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8151 -a 0 -x {9.0 10.0 4080 ------- null} r -t 4.60811 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8137 -a 0 -x {9.0 10.0 4073 ------- null} + -t 4.60811 -s 10 -d 7 -p ack -e 40 -c 0 -i 8156 -a 0 -x {10.0 9.0 4073 ------- null} - -t 4.60811 -s 10 -d 7 -p ack -e 40 -c 0 -i 8156 -a 0 -x {10.0 9.0 4073 ------- null} h -t 4.60811 -s 10 -d 7 -p ack -e 40 -c 0 -i 8156 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.60872 -s 0 -d 9 -p ack -e 40 -c 0 -i 8146 -a 0 -x {10.0 9.0 4068 ------- null} + -t 4.60872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8157 -a 0 -x {9.0 10.0 4083 ------- null} - -t 4.60872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8157 -a 0 -x {9.0 10.0 4083 ------- null} h -t 4.60872 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8157 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.60874 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8143 -a 0 -x {9.0 10.0 4076 ------- null} - -t 4.60874 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8143 -a 0 -x {9.0 10.0 4076 ------- null} h -t 4.60874 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8143 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.60894 -s 0 -d 9 -p ack -e 40 -c 0 -i 8150 -a 0 -x {10.0 9.0 4070 ------- null} - -t 4.60894 -s 0 -d 9 -p ack -e 40 -c 0 -i 8150 -a 0 -x {10.0 9.0 4070 ------- null} h -t 4.60894 -s 0 -d 9 -p ack -e 40 -c 0 -i 8150 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.60906 -s 10 -d 7 -p ack -e 40 -c 0 -i 8154 -a 0 -x {10.0 9.0 4072 ------- null} + -t 4.60906 -s 7 -d 0 -p ack -e 40 -c 0 -i 8154 -a 0 -x {10.0 9.0 4072 ------- null} h -t 4.60906 -s 7 -d 8 -p ack -e 40 -c 0 -i 8154 -a 0 -x {10.0 9.0 4072 ------- null} r -t 4.60917 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8153 -a 0 -x {9.0 10.0 4081 ------- null} + -t 4.60917 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8153 -a 0 -x {9.0 10.0 4081 ------- null} h -t 4.60917 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8153 -a 0 -x {9.0 10.0 4081 ------- null} r -t 4.6092 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8139 -a 0 -x {9.0 10.0 4074 ------- null} + -t 4.6092 -s 10 -d 7 -p ack -e 40 -c 0 -i 8158 -a 0 -x {10.0 9.0 4074 ------- null} - -t 4.6092 -s 10 -d 7 -p ack -e 40 -c 0 -i 8158 -a 0 -x {10.0 9.0 4074 ------- null} h -t 4.6092 -s 10 -d 7 -p ack -e 40 -c 0 -i 8158 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.60982 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8145 -a 0 -x {9.0 10.0 4077 ------- null} - -t 4.60982 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8145 -a 0 -x {9.0 10.0 4077 ------- null} h -t 4.60982 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8145 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.60989 -s 0 -d 9 -p ack -e 40 -c 0 -i 8148 -a 0 -x {10.0 9.0 4069 ------- null} + -t 4.60989 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8159 -a 0 -x {9.0 10.0 4084 ------- null} - -t 4.60989 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8159 -a 0 -x {9.0 10.0 4084 ------- null} h -t 4.60989 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8159 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.61013 -s 0 -d 9 -p ack -e 40 -c 0 -i 8152 -a 0 -x {10.0 9.0 4071 ------- null} - -t 4.61013 -s 0 -d 9 -p ack -e 40 -c 0 -i 8152 -a 0 -x {10.0 9.0 4071 ------- null} h -t 4.61013 -s 0 -d 9 -p ack -e 40 -c 0 -i 8152 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.61014 -s 10 -d 7 -p ack -e 40 -c 0 -i 8156 -a 0 -x {10.0 9.0 4073 ------- null} + -t 4.61014 -s 7 -d 0 -p ack -e 40 -c 0 -i 8156 -a 0 -x {10.0 9.0 4073 ------- null} h -t 4.61014 -s 7 -d 8 -p ack -e 40 -c 0 -i 8156 -a 0 -x {10.0 9.0 4073 ------- null} r -t 4.61022 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8155 -a 0 -x {9.0 10.0 4082 ------- null} + -t 4.61022 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8155 -a 0 -x {9.0 10.0 4082 ------- null} h -t 4.61022 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8155 -a 0 -x {9.0 10.0 4082 ------- null} r -t 4.61045 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8141 -a 0 -x {9.0 10.0 4075 ------- null} + -t 4.61045 -s 10 -d 7 -p ack -e 40 -c 0 -i 8160 -a 0 -x {10.0 9.0 4075 ------- null} - -t 4.61045 -s 10 -d 7 -p ack -e 40 -c 0 -i 8160 -a 0 -x {10.0 9.0 4075 ------- null} h -t 4.61045 -s 10 -d 7 -p ack -e 40 -c 0 -i 8160 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.61098 -s 0 -d 9 -p ack -e 40 -c 0 -i 8150 -a 0 -x {10.0 9.0 4070 ------- null} + -t 4.61098 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8161 -a 0 -x {9.0 10.0 4085 ------- null} - -t 4.61098 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8161 -a 0 -x {9.0 10.0 4085 ------- null} h -t 4.61098 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8161 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.61115 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8147 -a 0 -x {9.0 10.0 4078 ------- null} - -t 4.61115 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8147 -a 0 -x {9.0 10.0 4078 ------- null} h -t 4.61115 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8147 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.61123 -s 10 -d 7 -p ack -e 40 -c 0 -i 8158 -a 0 -x {10.0 9.0 4074 ------- null} + -t 4.61123 -s 7 -d 0 -p ack -e 40 -c 0 -i 8158 -a 0 -x {10.0 9.0 4074 ------- null} h -t 4.61123 -s 7 -d 8 -p ack -e 40 -c 0 -i 8158 -a 0 -x {10.0 9.0 4074 ------- null} + -t 4.61134 -s 0 -d 9 -p ack -e 40 -c 0 -i 8154 -a 0 -x {10.0 9.0 4072 ------- null} - -t 4.61134 -s 0 -d 9 -p ack -e 40 -c 0 -i 8154 -a 0 -x {10.0 9.0 4072 ------- null} h -t 4.61134 -s 0 -d 9 -p ack -e 40 -c 0 -i 8154 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.61152 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8157 -a 0 -x {9.0 10.0 4083 ------- null} + -t 4.61152 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8157 -a 0 -x {9.0 10.0 4083 ------- null} h -t 4.61152 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8157 -a 0 -x {9.0 10.0 4083 ------- null} r -t 4.61154 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8143 -a 0 -x {9.0 10.0 4076 ------- null} + -t 4.61154 -s 10 -d 7 -p ack -e 40 -c 0 -i 8162 -a 0 -x {10.0 9.0 4076 ------- null} - -t 4.61154 -s 10 -d 7 -p ack -e 40 -c 0 -i 8162 -a 0 -x {10.0 9.0 4076 ------- null} h -t 4.61154 -s 10 -d 7 -p ack -e 40 -c 0 -i 8162 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.61216 -s 0 -d 9 -p ack -e 40 -c 0 -i 8152 -a 0 -x {10.0 9.0 4071 ------- null} + -t 4.61216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8163 -a 0 -x {9.0 10.0 4086 ------- null} - -t 4.61216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8163 -a 0 -x {9.0 10.0 4086 ------- null} h -t 4.61216 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8163 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.61224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8149 -a 0 -x {9.0 10.0 4079 ------- null} - -t 4.61224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8149 -a 0 -x {9.0 10.0 4079 ------- null} h -t 4.61224 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8149 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.61246 -s 0 -d 9 -p ack -e 40 -c 0 -i 8156 -a 0 -x {10.0 9.0 4073 ------- null} - -t 4.61246 -s 0 -d 9 -p ack -e 40 -c 0 -i 8156 -a 0 -x {10.0 9.0 4073 ------- null} h -t 4.61246 -s 0 -d 9 -p ack -e 40 -c 0 -i 8156 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.61248 -s 10 -d 7 -p ack -e 40 -c 0 -i 8160 -a 0 -x {10.0 9.0 4075 ------- null} + -t 4.61248 -s 7 -d 0 -p ack -e 40 -c 0 -i 8160 -a 0 -x {10.0 9.0 4075 ------- null} h -t 4.61248 -s 7 -d 8 -p ack -e 40 -c 0 -i 8160 -a 0 -x {10.0 9.0 4075 ------- null} r -t 4.61262 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8145 -a 0 -x {9.0 10.0 4077 ------- null} + -t 4.61262 -s 10 -d 7 -p ack -e 40 -c 0 -i 8164 -a 0 -x {10.0 9.0 4077 ------- null} - -t 4.61262 -s 10 -d 7 -p ack -e 40 -c 0 -i 8164 -a 0 -x {10.0 9.0 4077 ------- null} h -t 4.61262 -s 10 -d 7 -p ack -e 40 -c 0 -i 8164 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.61269 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8159 -a 0 -x {9.0 10.0 4084 ------- null} + -t 4.61269 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8159 -a 0 -x {9.0 10.0 4084 ------- null} h -t 4.61269 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8159 -a 0 -x {9.0 10.0 4084 ------- null} + -t 4.61333 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8151 -a 0 -x {9.0 10.0 4080 ------- null} - -t 4.61333 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8151 -a 0 -x {9.0 10.0 4080 ------- null} h -t 4.61333 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8151 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.61338 -s 0 -d 9 -p ack -e 40 -c 0 -i 8154 -a 0 -x {10.0 9.0 4072 ------- null} + -t 4.61338 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8165 -a 0 -x {9.0 10.0 4087 ------- null} - -t 4.61338 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8165 -a 0 -x {9.0 10.0 4087 ------- null} h -t 4.61338 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8165 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.61357 -s 10 -d 7 -p ack -e 40 -c 0 -i 8162 -a 0 -x {10.0 9.0 4076 ------- null} + -t 4.61357 -s 7 -d 0 -p ack -e 40 -c 0 -i 8162 -a 0 -x {10.0 9.0 4076 ------- null} h -t 4.61357 -s 7 -d 8 -p ack -e 40 -c 0 -i 8162 -a 0 -x {10.0 9.0 4076 ------- null} + -t 4.61358 -s 0 -d 9 -p ack -e 40 -c 0 -i 8158 -a 0 -x {10.0 9.0 4074 ------- null} - -t 4.61358 -s 0 -d 9 -p ack -e 40 -c 0 -i 8158 -a 0 -x {10.0 9.0 4074 ------- null} h -t 4.61358 -s 0 -d 9 -p ack -e 40 -c 0 -i 8158 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.61378 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8161 -a 0 -x {9.0 10.0 4085 ------- null} + -t 4.61378 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8161 -a 0 -x {9.0 10.0 4085 ------- null} h -t 4.61378 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8161 -a 0 -x {9.0 10.0 4085 ------- null} r -t 4.61395 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8147 -a 0 -x {9.0 10.0 4078 ------- null} + -t 4.61395 -s 10 -d 7 -p ack -e 40 -c 0 -i 8166 -a 0 -x {10.0 9.0 4078 ------- null} - -t 4.61395 -s 10 -d 7 -p ack -e 40 -c 0 -i 8166 -a 0 -x {10.0 9.0 4078 ------- null} h -t 4.61395 -s 10 -d 7 -p ack -e 40 -c 0 -i 8166 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.61442 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8153 -a 0 -x {9.0 10.0 4081 ------- null} - -t 4.61442 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8153 -a 0 -x {9.0 10.0 4081 ------- null} h -t 4.61442 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8153 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.6145 -s 0 -d 9 -p ack -e 40 -c 0 -i 8156 -a 0 -x {10.0 9.0 4073 ------- null} + -t 4.6145 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8167 -a 0 -x {9.0 10.0 4088 ------- null} - -t 4.6145 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8167 -a 0 -x {9.0 10.0 4088 ------- null} h -t 4.6145 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8167 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.61458 -s 0 -d 9 -p ack -e 40 -c 0 -i 8160 -a 0 -x {10.0 9.0 4075 ------- null} - -t 4.61458 -s 0 -d 9 -p ack -e 40 -c 0 -i 8160 -a 0 -x {10.0 9.0 4075 ------- null} h -t 4.61458 -s 0 -d 9 -p ack -e 40 -c 0 -i 8160 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.61466 -s 10 -d 7 -p ack -e 40 -c 0 -i 8164 -a 0 -x {10.0 9.0 4077 ------- null} + -t 4.61466 -s 7 -d 0 -p ack -e 40 -c 0 -i 8164 -a 0 -x {10.0 9.0 4077 ------- null} h -t 4.61466 -s 7 -d 8 -p ack -e 40 -c 0 -i 8164 -a 0 -x {10.0 9.0 4077 ------- null} r -t 4.61496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8163 -a 0 -x {9.0 10.0 4086 ------- null} + -t 4.61496 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8163 -a 0 -x {9.0 10.0 4086 ------- null} h -t 4.61496 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8163 -a 0 -x {9.0 10.0 4086 ------- null} r -t 4.61504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8149 -a 0 -x {9.0 10.0 4079 ------- null} + -t 4.61504 -s 10 -d 7 -p ack -e 40 -c 0 -i 8168 -a 0 -x {10.0 9.0 4079 ------- null} - -t 4.61504 -s 10 -d 7 -p ack -e 40 -c 0 -i 8168 -a 0 -x {10.0 9.0 4079 ------- null} h -t 4.61504 -s 10 -d 7 -p ack -e 40 -c 0 -i 8168 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.6155 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8155 -a 0 -x {9.0 10.0 4082 ------- null} - -t 4.6155 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8155 -a 0 -x {9.0 10.0 4082 ------- null} h -t 4.6155 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8155 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.6156 -s 0 -d 9 -p ack -e 40 -c 0 -i 8162 -a 0 -x {10.0 9.0 4076 ------- null} - -t 4.6156 -s 0 -d 9 -p ack -e 40 -c 0 -i 8162 -a 0 -x {10.0 9.0 4076 ------- null} h -t 4.6156 -s 0 -d 9 -p ack -e 40 -c 0 -i 8162 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.61562 -s 0 -d 9 -p ack -e 40 -c 0 -i 8158 -a 0 -x {10.0 9.0 4074 ------- null} + -t 4.61562 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8169 -a 0 -x {9.0 10.0 4089 ------- null} - -t 4.61562 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8169 -a 0 -x {9.0 10.0 4089 ------- null} h -t 4.61562 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8169 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.61598 -s 10 -d 7 -p ack -e 40 -c 0 -i 8166 -a 0 -x {10.0 9.0 4078 ------- null} + -t 4.61598 -s 7 -d 0 -p ack -e 40 -c 0 -i 8166 -a 0 -x {10.0 9.0 4078 ------- null} h -t 4.61598 -s 7 -d 8 -p ack -e 40 -c 0 -i 8166 -a 0 -x {10.0 9.0 4078 ------- null} r -t 4.61613 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8151 -a 0 -x {9.0 10.0 4080 ------- null} + -t 4.61613 -s 10 -d 7 -p ack -e 40 -c 0 -i 8170 -a 0 -x {10.0 9.0 4080 ------- null} - -t 4.61613 -s 10 -d 7 -p ack -e 40 -c 0 -i 8170 -a 0 -x {10.0 9.0 4080 ------- null} h -t 4.61613 -s 10 -d 7 -p ack -e 40 -c 0 -i 8170 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.61618 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8165 -a 0 -x {9.0 10.0 4087 ------- null} + -t 4.61618 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8165 -a 0 -x {9.0 10.0 4087 ------- null} h -t 4.61618 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8165 -a 0 -x {9.0 10.0 4087 ------- null} + -t 4.61659 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8157 -a 0 -x {9.0 10.0 4083 ------- null} - -t 4.61659 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8157 -a 0 -x {9.0 10.0 4083 ------- null} h -t 4.61659 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8157 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.61661 -s 0 -d 9 -p ack -e 40 -c 0 -i 8160 -a 0 -x {10.0 9.0 4075 ------- null} + -t 4.61661 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8171 -a 0 -x {9.0 10.0 4090 ------- null} - -t 4.61661 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8171 -a 0 -x {9.0 10.0 4090 ------- null} h -t 4.61661 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8171 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.61672 -s 0 -d 9 -p ack -e 40 -c 0 -i 8164 -a 0 -x {10.0 9.0 4077 ------- null} - -t 4.61672 -s 0 -d 9 -p ack -e 40 -c 0 -i 8164 -a 0 -x {10.0 9.0 4077 ------- null} h -t 4.61672 -s 0 -d 9 -p ack -e 40 -c 0 -i 8164 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.61707 -s 10 -d 7 -p ack -e 40 -c 0 -i 8168 -a 0 -x {10.0 9.0 4079 ------- null} + -t 4.61707 -s 7 -d 0 -p ack -e 40 -c 0 -i 8168 -a 0 -x {10.0 9.0 4079 ------- null} h -t 4.61707 -s 7 -d 8 -p ack -e 40 -c 0 -i 8168 -a 0 -x {10.0 9.0 4079 ------- null} r -t 4.61722 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8153 -a 0 -x {9.0 10.0 4081 ------- null} + -t 4.61722 -s 10 -d 7 -p ack -e 40 -c 0 -i 8172 -a 0 -x {10.0 9.0 4081 ------- null} - -t 4.61722 -s 10 -d 7 -p ack -e 40 -c 0 -i 8172 -a 0 -x {10.0 9.0 4081 ------- null} h -t 4.61722 -s 10 -d 7 -p ack -e 40 -c 0 -i 8172 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.6173 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8167 -a 0 -x {9.0 10.0 4088 ------- null} + -t 4.6173 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8167 -a 0 -x {9.0 10.0 4088 ------- null} h -t 4.6173 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8167 -a 0 -x {9.0 10.0 4088 ------- null} r -t 4.61763 -s 0 -d 9 -p ack -e 40 -c 0 -i 8162 -a 0 -x {10.0 9.0 4076 ------- null} + -t 4.61763 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8173 -a 0 -x {9.0 10.0 4091 ------- null} - -t 4.61763 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8173 -a 0 -x {9.0 10.0 4091 ------- null} h -t 4.61763 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8173 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.61768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8159 -a 0 -x {9.0 10.0 4084 ------- null} - -t 4.61768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8159 -a 0 -x {9.0 10.0 4084 ------- null} h -t 4.61768 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8159 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.61784 -s 0 -d 9 -p ack -e 40 -c 0 -i 8166 -a 0 -x {10.0 9.0 4078 ------- null} - -t 4.61784 -s 0 -d 9 -p ack -e 40 -c 0 -i 8166 -a 0 -x {10.0 9.0 4078 ------- null} h -t 4.61784 -s 0 -d 9 -p ack -e 40 -c 0 -i 8166 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.61816 -s 10 -d 7 -p ack -e 40 -c 0 -i 8170 -a 0 -x {10.0 9.0 4080 ------- null} + -t 4.61816 -s 7 -d 0 -p ack -e 40 -c 0 -i 8170 -a 0 -x {10.0 9.0 4080 ------- null} h -t 4.61816 -s 7 -d 8 -p ack -e 40 -c 0 -i 8170 -a 0 -x {10.0 9.0 4080 ------- null} r -t 4.6183 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8155 -a 0 -x {9.0 10.0 4082 ------- null} + -t 4.6183 -s 10 -d 7 -p ack -e 40 -c 0 -i 8174 -a 0 -x {10.0 9.0 4082 ------- null} - -t 4.6183 -s 10 -d 7 -p ack -e 40 -c 0 -i 8174 -a 0 -x {10.0 9.0 4082 ------- null} h -t 4.6183 -s 10 -d 7 -p ack -e 40 -c 0 -i 8174 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.61842 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8169 -a 0 -x {9.0 10.0 4089 ------- null} + -t 4.61842 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8169 -a 0 -x {9.0 10.0 4089 ------- null} h -t 4.61842 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8169 -a 0 -x {9.0 10.0 4089 ------- null} r -t 4.61875 -s 0 -d 9 -p ack -e 40 -c 0 -i 8164 -a 0 -x {10.0 9.0 4077 ------- null} + -t 4.61875 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8175 -a 0 -x {9.0 10.0 4092 ------- null} - -t 4.61875 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8175 -a 0 -x {9.0 10.0 4092 ------- null} h -t 4.61875 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8175 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.61877 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8161 -a 0 -x {9.0 10.0 4085 ------- null} - -t 4.61877 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8161 -a 0 -x {9.0 10.0 4085 ------- null} h -t 4.61877 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8161 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.61896 -s 0 -d 9 -p ack -e 40 -c 0 -i 8168 -a 0 -x {10.0 9.0 4079 ------- null} - -t 4.61896 -s 0 -d 9 -p ack -e 40 -c 0 -i 8168 -a 0 -x {10.0 9.0 4079 ------- null} h -t 4.61896 -s 0 -d 9 -p ack -e 40 -c 0 -i 8168 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.61925 -s 10 -d 7 -p ack -e 40 -c 0 -i 8172 -a 0 -x {10.0 9.0 4081 ------- null} + -t 4.61925 -s 7 -d 0 -p ack -e 40 -c 0 -i 8172 -a 0 -x {10.0 9.0 4081 ------- null} h -t 4.61925 -s 7 -d 8 -p ack -e 40 -c 0 -i 8172 -a 0 -x {10.0 9.0 4081 ------- null} r -t 4.61939 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8157 -a 0 -x {9.0 10.0 4083 ------- null} + -t 4.61939 -s 10 -d 7 -p ack -e 40 -c 0 -i 8176 -a 0 -x {10.0 9.0 4083 ------- null} - -t 4.61939 -s 10 -d 7 -p ack -e 40 -c 0 -i 8176 -a 0 -x {10.0 9.0 4083 ------- null} h -t 4.61939 -s 10 -d 7 -p ack -e 40 -c 0 -i 8176 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.61941 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8171 -a 0 -x {9.0 10.0 4090 ------- null} + -t 4.61941 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8171 -a 0 -x {9.0 10.0 4090 ------- null} h -t 4.61941 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8171 -a 0 -x {9.0 10.0 4090 ------- null} + -t 4.61986 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8163 -a 0 -x {9.0 10.0 4086 ------- null} - -t 4.61986 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8163 -a 0 -x {9.0 10.0 4086 ------- null} h -t 4.61986 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8163 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.61987 -s 0 -d 9 -p ack -e 40 -c 0 -i 8166 -a 0 -x {10.0 9.0 4078 ------- null} + -t 4.61987 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8177 -a 0 -x {9.0 10.0 4093 ------- null} - -t 4.61987 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8177 -a 0 -x {9.0 10.0 4093 ------- null} h -t 4.61987 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8177 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.61997 -s 0 -d 9 -p ack -e 40 -c 0 -i 8170 -a 0 -x {10.0 9.0 4080 ------- null} - -t 4.61997 -s 0 -d 9 -p ack -e 40 -c 0 -i 8170 -a 0 -x {10.0 9.0 4080 ------- null} h -t 4.61997 -s 0 -d 9 -p ack -e 40 -c 0 -i 8170 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.62034 -s 10 -d 7 -p ack -e 40 -c 0 -i 8174 -a 0 -x {10.0 9.0 4082 ------- null} + -t 4.62034 -s 7 -d 0 -p ack -e 40 -c 0 -i 8174 -a 0 -x {10.0 9.0 4082 ------- null} h -t 4.62034 -s 7 -d 8 -p ack -e 40 -c 0 -i 8174 -a 0 -x {10.0 9.0 4082 ------- null} r -t 4.62043 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8173 -a 0 -x {9.0 10.0 4091 ------- null} + -t 4.62043 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8173 -a 0 -x {9.0 10.0 4091 ------- null} h -t 4.62043 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8173 -a 0 -x {9.0 10.0 4091 ------- null} r -t 4.62048 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8159 -a 0 -x {9.0 10.0 4084 ------- null} + -t 4.62048 -s 10 -d 7 -p ack -e 40 -c 0 -i 8178 -a 0 -x {10.0 9.0 4084 ------- null} - -t 4.62048 -s 10 -d 7 -p ack -e 40 -c 0 -i 8178 -a 0 -x {10.0 9.0 4084 ------- null} h -t 4.62048 -s 10 -d 7 -p ack -e 40 -c 0 -i 8178 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.62094 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8165 -a 0 -x {9.0 10.0 4087 ------- null} - -t 4.62094 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8165 -a 0 -x {9.0 10.0 4087 ------- null} h -t 4.62094 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8165 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.62099 -s 0 -d 9 -p ack -e 40 -c 0 -i 8168 -a 0 -x {10.0 9.0 4079 ------- null} + -t 4.62099 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8179 -a 0 -x {9.0 10.0 4094 ------- null} - -t 4.62099 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8179 -a 0 -x {9.0 10.0 4094 ------- null} h -t 4.62099 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8179 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.62107 -s 0 -d 9 -p ack -e 40 -c 0 -i 8172 -a 0 -x {10.0 9.0 4081 ------- null} - -t 4.62107 -s 0 -d 9 -p ack -e 40 -c 0 -i 8172 -a 0 -x {10.0 9.0 4081 ------- null} h -t 4.62107 -s 0 -d 9 -p ack -e 40 -c 0 -i 8172 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.62142 -s 10 -d 7 -p ack -e 40 -c 0 -i 8176 -a 0 -x {10.0 9.0 4083 ------- null} + -t 4.62142 -s 7 -d 0 -p ack -e 40 -c 0 -i 8176 -a 0 -x {10.0 9.0 4083 ------- null} h -t 4.62142 -s 7 -d 8 -p ack -e 40 -c 0 -i 8176 -a 0 -x {10.0 9.0 4083 ------- null} r -t 4.62155 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8175 -a 0 -x {9.0 10.0 4092 ------- null} + -t 4.62155 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8175 -a 0 -x {9.0 10.0 4092 ------- null} h -t 4.62155 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8175 -a 0 -x {9.0 10.0 4092 ------- null} r -t 4.62157 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8161 -a 0 -x {9.0 10.0 4085 ------- null} + -t 4.62157 -s 10 -d 7 -p ack -e 40 -c 0 -i 8180 -a 0 -x {10.0 9.0 4085 ------- null} - -t 4.62157 -s 10 -d 7 -p ack -e 40 -c 0 -i 8180 -a 0 -x {10.0 9.0 4085 ------- null} h -t 4.62157 -s 10 -d 7 -p ack -e 40 -c 0 -i 8180 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.622 -s 0 -d 9 -p ack -e 40 -c 0 -i 8170 -a 0 -x {10.0 9.0 4080 ------- null} + -t 4.622 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8181 -a 0 -x {9.0 10.0 4095 ------- null} - -t 4.622 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8181 -a 0 -x {9.0 10.0 4095 ------- null} h -t 4.622 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8181 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.62203 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8167 -a 0 -x {9.0 10.0 4088 ------- null} - -t 4.62203 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8167 -a 0 -x {9.0 10.0 4088 ------- null} h -t 4.62203 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8167 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.62221 -s 0 -d 9 -p ack -e 40 -c 0 -i 8174 -a 0 -x {10.0 9.0 4082 ------- null} - -t 4.62221 -s 0 -d 9 -p ack -e 40 -c 0 -i 8174 -a 0 -x {10.0 9.0 4082 ------- null} h -t 4.62221 -s 0 -d 9 -p ack -e 40 -c 0 -i 8174 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.62251 -s 10 -d 7 -p ack -e 40 -c 0 -i 8178 -a 0 -x {10.0 9.0 4084 ------- null} + -t 4.62251 -s 7 -d 0 -p ack -e 40 -c 0 -i 8178 -a 0 -x {10.0 9.0 4084 ------- null} h -t 4.62251 -s 7 -d 8 -p ack -e 40 -c 0 -i 8178 -a 0 -x {10.0 9.0 4084 ------- null} r -t 4.62266 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8163 -a 0 -x {9.0 10.0 4086 ------- null} + -t 4.62266 -s 10 -d 7 -p ack -e 40 -c 0 -i 8182 -a 0 -x {10.0 9.0 4086 ------- null} - -t 4.62266 -s 10 -d 7 -p ack -e 40 -c 0 -i 8182 -a 0 -x {10.0 9.0 4086 ------- null} h -t 4.62266 -s 10 -d 7 -p ack -e 40 -c 0 -i 8182 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.62267 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8177 -a 0 -x {9.0 10.0 4093 ------- null} + -t 4.62267 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8177 -a 0 -x {9.0 10.0 4093 ------- null} h -t 4.62267 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8177 -a 0 -x {9.0 10.0 4093 ------- null} r -t 4.6231 -s 0 -d 9 -p ack -e 40 -c 0 -i 8172 -a 0 -x {10.0 9.0 4081 ------- null} + -t 4.6231 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8183 -a 0 -x {9.0 10.0 4096 ------- null} - -t 4.6231 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8183 -a 0 -x {9.0 10.0 4096 ------- null} h -t 4.6231 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8183 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.62312 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8169 -a 0 -x {9.0 10.0 4089 ------- null} - -t 4.62312 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8169 -a 0 -x {9.0 10.0 4089 ------- null} h -t 4.62312 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8169 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.62331 -s 0 -d 9 -p ack -e 40 -c 0 -i 8176 -a 0 -x {10.0 9.0 4083 ------- null} - -t 4.62331 -s 0 -d 9 -p ack -e 40 -c 0 -i 8176 -a 0 -x {10.0 9.0 4083 ------- null} h -t 4.62331 -s 0 -d 9 -p ack -e 40 -c 0 -i 8176 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.6236 -s 10 -d 7 -p ack -e 40 -c 0 -i 8180 -a 0 -x {10.0 9.0 4085 ------- null} + -t 4.6236 -s 7 -d 0 -p ack -e 40 -c 0 -i 8180 -a 0 -x {10.0 9.0 4085 ------- null} h -t 4.6236 -s 7 -d 8 -p ack -e 40 -c 0 -i 8180 -a 0 -x {10.0 9.0 4085 ------- null} r -t 4.62374 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8165 -a 0 -x {9.0 10.0 4087 ------- null} + -t 4.62374 -s 10 -d 7 -p ack -e 40 -c 0 -i 8184 -a 0 -x {10.0 9.0 4087 ------- null} - -t 4.62374 -s 10 -d 7 -p ack -e 40 -c 0 -i 8184 -a 0 -x {10.0 9.0 4087 ------- null} h -t 4.62374 -s 10 -d 7 -p ack -e 40 -c 0 -i 8184 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.62379 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8179 -a 0 -x {9.0 10.0 4094 ------- null} + -t 4.62379 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8179 -a 0 -x {9.0 10.0 4094 ------- null} h -t 4.62379 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8179 -a 0 -x {9.0 10.0 4094 ------- null} + -t 4.62421 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8171 -a 0 -x {9.0 10.0 4090 ------- null} - -t 4.62421 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8171 -a 0 -x {9.0 10.0 4090 ------- null} h -t 4.62421 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8171 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.62424 -s 0 -d 9 -p ack -e 40 -c 0 -i 8174 -a 0 -x {10.0 9.0 4082 ------- null} + -t 4.62424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8185 -a 0 -x {9.0 10.0 4097 ------- null} - -t 4.62424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8185 -a 0 -x {9.0 10.0 4097 ------- null} h -t 4.62424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8185 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.62438 -s 0 -d 9 -p ack -e 40 -c 0 -i 8178 -a 0 -x {10.0 9.0 4084 ------- null} - -t 4.62438 -s 0 -d 9 -p ack -e 40 -c 0 -i 8178 -a 0 -x {10.0 9.0 4084 ------- null} h -t 4.62438 -s 0 -d 9 -p ack -e 40 -c 0 -i 8178 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.62469 -s 10 -d 7 -p ack -e 40 -c 0 -i 8182 -a 0 -x {10.0 9.0 4086 ------- null} + -t 4.62469 -s 7 -d 0 -p ack -e 40 -c 0 -i 8182 -a 0 -x {10.0 9.0 4086 ------- null} h -t 4.62469 -s 7 -d 8 -p ack -e 40 -c 0 -i 8182 -a 0 -x {10.0 9.0 4086 ------- null} r -t 4.6248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8181 -a 0 -x {9.0 10.0 4095 ------- null} + -t 4.6248 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8181 -a 0 -x {9.0 10.0 4095 ------- null} h -t 4.6248 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8181 -a 0 -x {9.0 10.0 4095 ------- null} r -t 4.62483 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8167 -a 0 -x {9.0 10.0 4088 ------- null} + -t 4.62483 -s 10 -d 7 -p ack -e 40 -c 0 -i 8186 -a 0 -x {10.0 9.0 4088 ------- null} - -t 4.62483 -s 10 -d 7 -p ack -e 40 -c 0 -i 8186 -a 0 -x {10.0 9.0 4088 ------- null} h -t 4.62483 -s 10 -d 7 -p ack -e 40 -c 0 -i 8186 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.6253 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8173 -a 0 -x {9.0 10.0 4091 ------- null} - -t 4.6253 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8173 -a 0 -x {9.0 10.0 4091 ------- null} h -t 4.6253 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8173 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.62534 -s 0 -d 9 -p ack -e 40 -c 0 -i 8176 -a 0 -x {10.0 9.0 4083 ------- null} + -t 4.62534 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8187 -a 0 -x {9.0 10.0 4098 ------- null} - -t 4.62534 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8187 -a 0 -x {9.0 10.0 4098 ------- null} h -t 4.62534 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8187 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.62554 -s 0 -d 9 -p ack -e 40 -c 0 -i 8180 -a 0 -x {10.0 9.0 4085 ------- null} - -t 4.62554 -s 0 -d 9 -p ack -e 40 -c 0 -i 8180 -a 0 -x {10.0 9.0 4085 ------- null} h -t 4.62554 -s 0 -d 9 -p ack -e 40 -c 0 -i 8180 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.62578 -s 10 -d 7 -p ack -e 40 -c 0 -i 8184 -a 0 -x {10.0 9.0 4087 ------- null} + -t 4.62578 -s 7 -d 0 -p ack -e 40 -c 0 -i 8184 -a 0 -x {10.0 9.0 4087 ------- null} h -t 4.62578 -s 7 -d 8 -p ack -e 40 -c 0 -i 8184 -a 0 -x {10.0 9.0 4087 ------- null} r -t 4.6259 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8183 -a 0 -x {9.0 10.0 4096 ------- null} + -t 4.6259 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8183 -a 0 -x {9.0 10.0 4096 ------- null} h -t 4.6259 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8183 -a 0 -x {9.0 10.0 4096 ------- null} r -t 4.62592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8169 -a 0 -x {9.0 10.0 4089 ------- null} + -t 4.62592 -s 10 -d 7 -p ack -e 40 -c 0 -i 8188 -a 0 -x {10.0 9.0 4089 ------- null} - -t 4.62592 -s 10 -d 7 -p ack -e 40 -c 0 -i 8188 -a 0 -x {10.0 9.0 4089 ------- null} h -t 4.62592 -s 10 -d 7 -p ack -e 40 -c 0 -i 8188 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.62638 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8175 -a 0 -x {9.0 10.0 4092 ------- null} - -t 4.62638 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8175 -a 0 -x {9.0 10.0 4092 ------- null} h -t 4.62638 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8175 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.62642 -s 0 -d 9 -p ack -e 40 -c 0 -i 8178 -a 0 -x {10.0 9.0 4084 ------- null} + -t 4.62642 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8189 -a 0 -x {9.0 10.0 4099 ------- null} - -t 4.62642 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8189 -a 0 -x {9.0 10.0 4099 ------- null} h -t 4.62642 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8189 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.62661 -s 0 -d 9 -p ack -e 40 -c 0 -i 8182 -a 0 -x {10.0 9.0 4086 ------- null} - -t 4.62661 -s 0 -d 9 -p ack -e 40 -c 0 -i 8182 -a 0 -x {10.0 9.0 4086 ------- null} h -t 4.62661 -s 0 -d 9 -p ack -e 40 -c 0 -i 8182 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.62686 -s 10 -d 7 -p ack -e 40 -c 0 -i 8186 -a 0 -x {10.0 9.0 4088 ------- null} + -t 4.62686 -s 7 -d 0 -p ack -e 40 -c 0 -i 8186 -a 0 -x {10.0 9.0 4088 ------- null} h -t 4.62686 -s 7 -d 8 -p ack -e 40 -c 0 -i 8186 -a 0 -x {10.0 9.0 4088 ------- null} r -t 4.62701 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8171 -a 0 -x {9.0 10.0 4090 ------- null} + -t 4.62701 -s 10 -d 7 -p ack -e 40 -c 0 -i 8190 -a 0 -x {10.0 9.0 4090 ------- null} - -t 4.62701 -s 10 -d 7 -p ack -e 40 -c 0 -i 8190 -a 0 -x {10.0 9.0 4090 ------- null} h -t 4.62701 -s 10 -d 7 -p ack -e 40 -c 0 -i 8190 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.62704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8185 -a 0 -x {9.0 10.0 4097 ------- null} + -t 4.62704 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8185 -a 0 -x {9.0 10.0 4097 ------- null} h -t 4.62704 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8185 -a 0 -x {9.0 10.0 4097 ------- null} + -t 4.62747 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8177 -a 0 -x {9.0 10.0 4093 ------- null} - -t 4.62747 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8177 -a 0 -x {9.0 10.0 4093 ------- null} h -t 4.62747 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8177 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.62757 -s 0 -d 9 -p ack -e 40 -c 0 -i 8180 -a 0 -x {10.0 9.0 4085 ------- null} + -t 4.62757 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8191 -a 0 -x {9.0 10.0 4100 ------- null} - -t 4.62757 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8191 -a 0 -x {9.0 10.0 4100 ------- null} h -t 4.62757 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8191 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.62766 -s 0 -d 9 -p ack -e 40 -c 0 -i 8184 -a 0 -x {10.0 9.0 4087 ------- null} - -t 4.62766 -s 0 -d 9 -p ack -e 40 -c 0 -i 8184 -a 0 -x {10.0 9.0 4087 ------- null} h -t 4.62766 -s 0 -d 9 -p ack -e 40 -c 0 -i 8184 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.62795 -s 10 -d 7 -p ack -e 40 -c 0 -i 8188 -a 0 -x {10.0 9.0 4089 ------- null} + -t 4.62795 -s 7 -d 0 -p ack -e 40 -c 0 -i 8188 -a 0 -x {10.0 9.0 4089 ------- null} h -t 4.62795 -s 7 -d 8 -p ack -e 40 -c 0 -i 8188 -a 0 -x {10.0 9.0 4089 ------- null} r -t 4.6281 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8173 -a 0 -x {9.0 10.0 4091 ------- null} + -t 4.6281 -s 10 -d 7 -p ack -e 40 -c 0 -i 8192 -a 0 -x {10.0 9.0 4091 ------- null} - -t 4.6281 -s 10 -d 7 -p ack -e 40 -c 0 -i 8192 -a 0 -x {10.0 9.0 4091 ------- null} h -t 4.6281 -s 10 -d 7 -p ack -e 40 -c 0 -i 8192 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.62814 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8187 -a 0 -x {9.0 10.0 4098 ------- null} + -t 4.62814 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8187 -a 0 -x {9.0 10.0 4098 ------- null} h -t 4.62814 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8187 -a 0 -x {9.0 10.0 4098 ------- null} + -t 4.62856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8179 -a 0 -x {9.0 10.0 4094 ------- null} - -t 4.62856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8179 -a 0 -x {9.0 10.0 4094 ------- null} h -t 4.62856 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8179 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.62864 -s 0 -d 9 -p ack -e 40 -c 0 -i 8182 -a 0 -x {10.0 9.0 4086 ------- null} + -t 4.62864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8193 -a 0 -x {9.0 10.0 4101 ------- null} - -t 4.62864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8193 -a 0 -x {9.0 10.0 4101 ------- null} h -t 4.62864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8193 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.6288 -s 0 -d 9 -p ack -e 40 -c 0 -i 8186 -a 0 -x {10.0 9.0 4088 ------- null} - -t 4.6288 -s 0 -d 9 -p ack -e 40 -c 0 -i 8186 -a 0 -x {10.0 9.0 4088 ------- null} h -t 4.6288 -s 0 -d 9 -p ack -e 40 -c 0 -i 8186 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.62904 -s 10 -d 7 -p ack -e 40 -c 0 -i 8190 -a 0 -x {10.0 9.0 4090 ------- null} + -t 4.62904 -s 7 -d 0 -p ack -e 40 -c 0 -i 8190 -a 0 -x {10.0 9.0 4090 ------- null} h -t 4.62904 -s 7 -d 8 -p ack -e 40 -c 0 -i 8190 -a 0 -x {10.0 9.0 4090 ------- null} r -t 4.62918 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8175 -a 0 -x {9.0 10.0 4092 ------- null} + -t 4.62918 -s 10 -d 7 -p ack -e 40 -c 0 -i 8194 -a 0 -x {10.0 9.0 4092 ------- null} - -t 4.62918 -s 10 -d 7 -p ack -e 40 -c 0 -i 8194 -a 0 -x {10.0 9.0 4092 ------- null} h -t 4.62918 -s 10 -d 7 -p ack -e 40 -c 0 -i 8194 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.62922 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8189 -a 0 -x {9.0 10.0 4099 ------- null} + -t 4.62922 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8189 -a 0 -x {9.0 10.0 4099 ------- null} h -t 4.62922 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8189 -a 0 -x {9.0 10.0 4099 ------- null} + -t 4.62965 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8181 -a 0 -x {9.0 10.0 4095 ------- null} - -t 4.62965 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8181 -a 0 -x {9.0 10.0 4095 ------- null} h -t 4.62965 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8181 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.6297 -s 0 -d 9 -p ack -e 40 -c 0 -i 8184 -a 0 -x {10.0 9.0 4087 ------- null} + -t 4.6297 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8195 -a 0 -x {9.0 10.0 4102 ------- null} - -t 4.6297 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8195 -a 0 -x {9.0 10.0 4102 ------- null} h -t 4.6297 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8195 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.62978 -s 0 -d 9 -p ack -e 40 -c 0 -i 8188 -a 0 -x {10.0 9.0 4089 ------- null} - -t 4.62978 -s 0 -d 9 -p ack -e 40 -c 0 -i 8188 -a 0 -x {10.0 9.0 4089 ------- null} h -t 4.62978 -s 0 -d 9 -p ack -e 40 -c 0 -i 8188 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.63013 -s 10 -d 7 -p ack -e 40 -c 0 -i 8192 -a 0 -x {10.0 9.0 4091 ------- null} + -t 4.63013 -s 7 -d 0 -p ack -e 40 -c 0 -i 8192 -a 0 -x {10.0 9.0 4091 ------- null} h -t 4.63013 -s 7 -d 8 -p ack -e 40 -c 0 -i 8192 -a 0 -x {10.0 9.0 4091 ------- null} r -t 4.63027 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8177 -a 0 -x {9.0 10.0 4093 ------- null} + -t 4.63027 -s 10 -d 7 -p ack -e 40 -c 0 -i 8196 -a 0 -x {10.0 9.0 4093 ------- null} - -t 4.63027 -s 10 -d 7 -p ack -e 40 -c 0 -i 8196 -a 0 -x {10.0 9.0 4093 ------- null} h -t 4.63027 -s 10 -d 7 -p ack -e 40 -c 0 -i 8196 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.63037 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8191 -a 0 -x {9.0 10.0 4100 ------- null} + -t 4.63037 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8191 -a 0 -x {9.0 10.0 4100 ------- null} h -t 4.63037 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8191 -a 0 -x {9.0 10.0 4100 ------- null} + -t 4.63074 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8183 -a 0 -x {9.0 10.0 4096 ------- null} - -t 4.63074 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8183 -a 0 -x {9.0 10.0 4096 ------- null} h -t 4.63074 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8183 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.63083 -s 0 -d 9 -p ack -e 40 -c 0 -i 8186 -a 0 -x {10.0 9.0 4088 ------- null} + -t 4.63083 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8197 -a 0 -x {9.0 10.0 4103 ------- null} - -t 4.63083 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8197 -a 0 -x {9.0 10.0 4103 ------- null} h -t 4.63083 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8197 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.63094 -s 0 -d 9 -p ack -e 40 -c 0 -i 8190 -a 0 -x {10.0 9.0 4090 ------- null} - -t 4.63094 -s 0 -d 9 -p ack -e 40 -c 0 -i 8190 -a 0 -x {10.0 9.0 4090 ------- null} h -t 4.63094 -s 0 -d 9 -p ack -e 40 -c 0 -i 8190 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.63122 -s 10 -d 7 -p ack -e 40 -c 0 -i 8194 -a 0 -x {10.0 9.0 4092 ------- null} + -t 4.63122 -s 7 -d 0 -p ack -e 40 -c 0 -i 8194 -a 0 -x {10.0 9.0 4092 ------- null} h -t 4.63122 -s 7 -d 8 -p ack -e 40 -c 0 -i 8194 -a 0 -x {10.0 9.0 4092 ------- null} r -t 4.63136 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8179 -a 0 -x {9.0 10.0 4094 ------- null} + -t 4.63136 -s 10 -d 7 -p ack -e 40 -c 0 -i 8198 -a 0 -x {10.0 9.0 4094 ------- null} - -t 4.63136 -s 10 -d 7 -p ack -e 40 -c 0 -i 8198 -a 0 -x {10.0 9.0 4094 ------- null} h -t 4.63136 -s 10 -d 7 -p ack -e 40 -c 0 -i 8198 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.63144 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8193 -a 0 -x {9.0 10.0 4101 ------- null} + -t 4.63144 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8193 -a 0 -x {9.0 10.0 4101 ------- null} h -t 4.63144 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8193 -a 0 -x {9.0 10.0 4101 ------- null} r -t 4.63181 -s 0 -d 9 -p ack -e 40 -c 0 -i 8188 -a 0 -x {10.0 9.0 4089 ------- null} + -t 4.63181 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8199 -a 0 -x {9.0 10.0 4104 ------- null} - -t 4.63181 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8199 -a 0 -x {9.0 10.0 4104 ------- null} h -t 4.63181 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8199 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.63182 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8185 -a 0 -x {9.0 10.0 4097 ------- null} - -t 4.63182 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8185 -a 0 -x {9.0 10.0 4097 ------- null} h -t 4.63182 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8185 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.63208 -s 0 -d 9 -p ack -e 40 -c 0 -i 8192 -a 0 -x {10.0 9.0 4091 ------- null} - -t 4.63208 -s 0 -d 9 -p ack -e 40 -c 0 -i 8192 -a 0 -x {10.0 9.0 4091 ------- null} h -t 4.63208 -s 0 -d 9 -p ack -e 40 -c 0 -i 8192 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.6323 -s 10 -d 7 -p ack -e 40 -c 0 -i 8196 -a 0 -x {10.0 9.0 4093 ------- null} + -t 4.6323 -s 7 -d 0 -p ack -e 40 -c 0 -i 8196 -a 0 -x {10.0 9.0 4093 ------- null} h -t 4.6323 -s 7 -d 8 -p ack -e 40 -c 0 -i 8196 -a 0 -x {10.0 9.0 4093 ------- null} r -t 4.63245 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8181 -a 0 -x {9.0 10.0 4095 ------- null} + -t 4.63245 -s 10 -d 7 -p ack -e 40 -c 0 -i 8200 -a 0 -x {10.0 9.0 4095 ------- null} - -t 4.63245 -s 10 -d 7 -p ack -e 40 -c 0 -i 8200 -a 0 -x {10.0 9.0 4095 ------- null} h -t 4.63245 -s 10 -d 7 -p ack -e 40 -c 0 -i 8200 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.6325 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8195 -a 0 -x {9.0 10.0 4102 ------- null} + -t 4.6325 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8195 -a 0 -x {9.0 10.0 4102 ------- null} h -t 4.6325 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8195 -a 0 -x {9.0 10.0 4102 ------- null} + -t 4.63291 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8187 -a 0 -x {9.0 10.0 4098 ------- null} - -t 4.63291 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8187 -a 0 -x {9.0 10.0 4098 ------- null} h -t 4.63291 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8187 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.63298 -s 0 -d 9 -p ack -e 40 -c 0 -i 8190 -a 0 -x {10.0 9.0 4090 ------- null} + -t 4.63298 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8201 -a 0 -x {9.0 10.0 4105 ------- null} - -t 4.63298 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8201 -a 0 -x {9.0 10.0 4105 ------- null} h -t 4.63298 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8201 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.63298 -s 0 -d 9 -p ack -e 40 -c 0 -i 8194 -a 0 -x {10.0 9.0 4092 ------- null} - -t 4.63298 -s 0 -d 9 -p ack -e 40 -c 0 -i 8194 -a 0 -x {10.0 9.0 4092 ------- null} h -t 4.63298 -s 0 -d 9 -p ack -e 40 -c 0 -i 8194 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.63339 -s 10 -d 7 -p ack -e 40 -c 0 -i 8198 -a 0 -x {10.0 9.0 4094 ------- null} + -t 4.63339 -s 7 -d 0 -p ack -e 40 -c 0 -i 8198 -a 0 -x {10.0 9.0 4094 ------- null} h -t 4.63339 -s 7 -d 8 -p ack -e 40 -c 0 -i 8198 -a 0 -x {10.0 9.0 4094 ------- null} r -t 4.63354 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8183 -a 0 -x {9.0 10.0 4096 ------- null} + -t 4.63354 -s 10 -d 7 -p ack -e 40 -c 0 -i 8202 -a 0 -x {10.0 9.0 4096 ------- null} - -t 4.63354 -s 10 -d 7 -p ack -e 40 -c 0 -i 8202 -a 0 -x {10.0 9.0 4096 ------- null} h -t 4.63354 -s 10 -d 7 -p ack -e 40 -c 0 -i 8202 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.63363 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8197 -a 0 -x {9.0 10.0 4103 ------- null} + -t 4.63363 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8197 -a 0 -x {9.0 10.0 4103 ------- null} h -t 4.63363 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8197 -a 0 -x {9.0 10.0 4103 ------- null} + -t 4.634 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8189 -a 0 -x {9.0 10.0 4099 ------- null} - -t 4.634 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8189 -a 0 -x {9.0 10.0 4099 ------- null} h -t 4.634 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8189 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.63411 -s 0 -d 9 -p ack -e 40 -c 0 -i 8192 -a 0 -x {10.0 9.0 4091 ------- null} + -t 4.63411 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8203 -a 0 -x {9.0 10.0 4106 ------- null} - -t 4.63411 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8203 -a 0 -x {9.0 10.0 4106 ------- null} h -t 4.63411 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8203 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.63419 -s 0 -d 9 -p ack -e 40 -c 0 -i 8196 -a 0 -x {10.0 9.0 4093 ------- null} - -t 4.63419 -s 0 -d 9 -p ack -e 40 -c 0 -i 8196 -a 0 -x {10.0 9.0 4093 ------- null} h -t 4.63419 -s 0 -d 9 -p ack -e 40 -c 0 -i 8196 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.63448 -s 10 -d 7 -p ack -e 40 -c 0 -i 8200 -a 0 -x {10.0 9.0 4095 ------- null} + -t 4.63448 -s 7 -d 0 -p ack -e 40 -c 0 -i 8200 -a 0 -x {10.0 9.0 4095 ------- null} h -t 4.63448 -s 7 -d 8 -p ack -e 40 -c 0 -i 8200 -a 0 -x {10.0 9.0 4095 ------- null} r -t 4.63461 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8199 -a 0 -x {9.0 10.0 4104 ------- null} + -t 4.63461 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8199 -a 0 -x {9.0 10.0 4104 ------- null} h -t 4.63461 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8199 -a 0 -x {9.0 10.0 4104 ------- null} r -t 4.63462 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8185 -a 0 -x {9.0 10.0 4097 ------- null} + -t 4.63462 -s 10 -d 7 -p ack -e 40 -c 0 -i 8204 -a 0 -x {10.0 9.0 4097 ------- null} - -t 4.63462 -s 10 -d 7 -p ack -e 40 -c 0 -i 8204 -a 0 -x {10.0 9.0 4097 ------- null} h -t 4.63462 -s 10 -d 7 -p ack -e 40 -c 0 -i 8204 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.63501 -s 0 -d 9 -p ack -e 40 -c 0 -i 8194 -a 0 -x {10.0 9.0 4092 ------- null} + -t 4.63501 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8205 -a 0 -x {9.0 10.0 4107 ------- null} - -t 4.63501 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8205 -a 0 -x {9.0 10.0 4107 ------- null} h -t 4.63501 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8205 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.63509 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8191 -a 0 -x {9.0 10.0 4100 ------- null} - -t 4.63509 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8191 -a 0 -x {9.0 10.0 4100 ------- null} h -t 4.63509 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8191 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.63528 -s 0 -d 9 -p ack -e 40 -c 0 -i 8198 -a 0 -x {10.0 9.0 4094 ------- null} - -t 4.63528 -s 0 -d 9 -p ack -e 40 -c 0 -i 8198 -a 0 -x {10.0 9.0 4094 ------- null} h -t 4.63528 -s 0 -d 9 -p ack -e 40 -c 0 -i 8198 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.63557 -s 10 -d 7 -p ack -e 40 -c 0 -i 8202 -a 0 -x {10.0 9.0 4096 ------- null} + -t 4.63557 -s 7 -d 0 -p ack -e 40 -c 0 -i 8202 -a 0 -x {10.0 9.0 4096 ------- null} h -t 4.63557 -s 7 -d 8 -p ack -e 40 -c 0 -i 8202 -a 0 -x {10.0 9.0 4096 ------- null} r -t 4.63571 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8187 -a 0 -x {9.0 10.0 4098 ------- null} + -t 4.63571 -s 10 -d 7 -p ack -e 40 -c 0 -i 8206 -a 0 -x {10.0 9.0 4098 ------- null} - -t 4.63571 -s 10 -d 7 -p ack -e 40 -c 0 -i 8206 -a 0 -x {10.0 9.0 4098 ------- null} h -t 4.63571 -s 10 -d 7 -p ack -e 40 -c 0 -i 8206 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.63578 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8201 -a 0 -x {9.0 10.0 4105 ------- null} + -t 4.63578 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8201 -a 0 -x {9.0 10.0 4105 ------- null} h -t 4.63578 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8201 -a 0 -x {9.0 10.0 4105 ------- null} + -t 4.63618 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8193 -a 0 -x {9.0 10.0 4101 ------- null} - -t 4.63618 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8193 -a 0 -x {9.0 10.0 4101 ------- null} h -t 4.63618 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8193 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.63622 -s 0 -d 9 -p ack -e 40 -c 0 -i 8196 -a 0 -x {10.0 9.0 4093 ------- null} + -t 4.63622 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8207 -a 0 -x {9.0 10.0 4108 ------- null} - -t 4.63622 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8207 -a 0 -x {9.0 10.0 4108 ------- null} h -t 4.63622 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8207 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.63645 -s 0 -d 9 -p ack -e 40 -c 0 -i 8200 -a 0 -x {10.0 9.0 4095 ------- null} - -t 4.63645 -s 0 -d 9 -p ack -e 40 -c 0 -i 8200 -a 0 -x {10.0 9.0 4095 ------- null} h -t 4.63645 -s 0 -d 9 -p ack -e 40 -c 0 -i 8200 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.63666 -s 10 -d 7 -p ack -e 40 -c 0 -i 8204 -a 0 -x {10.0 9.0 4097 ------- null} + -t 4.63666 -s 7 -d 0 -p ack -e 40 -c 0 -i 8204 -a 0 -x {10.0 9.0 4097 ------- null} h -t 4.63666 -s 7 -d 8 -p ack -e 40 -c 0 -i 8204 -a 0 -x {10.0 9.0 4097 ------- null} r -t 4.6368 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8189 -a 0 -x {9.0 10.0 4099 ------- null} + -t 4.6368 -s 10 -d 7 -p ack -e 40 -c 0 -i 8208 -a 0 -x {10.0 9.0 4099 ------- null} - -t 4.6368 -s 10 -d 7 -p ack -e 40 -c 0 -i 8208 -a 0 -x {10.0 9.0 4099 ------- null} h -t 4.6368 -s 10 -d 7 -p ack -e 40 -c 0 -i 8208 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.63691 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8203 -a 0 -x {9.0 10.0 4106 ------- null} + -t 4.63691 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8203 -a 0 -x {9.0 10.0 4106 ------- null} h -t 4.63691 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8203 -a 0 -x {9.0 10.0 4106 ------- null} r -t 4.63731 -s 0 -d 9 -p ack -e 40 -c 0 -i 8198 -a 0 -x {10.0 9.0 4094 ------- null} + -t 4.63731 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8209 -a 0 -x {9.0 10.0 4109 ------- null} - -t 4.63731 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8209 -a 0 -x {9.0 10.0 4109 ------- null} h -t 4.63731 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8209 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.63731 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8195 -a 0 -x {9.0 10.0 4102 ------- null} - -t 4.63731 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8195 -a 0 -x {9.0 10.0 4102 ------- null} h -t 4.63731 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8195 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.63744 -s 0 -d 9 -p ack -e 40 -c 0 -i 8202 -a 0 -x {10.0 9.0 4096 ------- null} - -t 4.63744 -s 0 -d 9 -p ack -e 40 -c 0 -i 8202 -a 0 -x {10.0 9.0 4096 ------- null} h -t 4.63744 -s 0 -d 9 -p ack -e 40 -c 0 -i 8202 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.63774 -s 10 -d 7 -p ack -e 40 -c 0 -i 8206 -a 0 -x {10.0 9.0 4098 ------- null} + -t 4.63774 -s 7 -d 0 -p ack -e 40 -c 0 -i 8206 -a 0 -x {10.0 9.0 4098 ------- null} h -t 4.63774 -s 7 -d 8 -p ack -e 40 -c 0 -i 8206 -a 0 -x {10.0 9.0 4098 ------- null} r -t 4.63781 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8205 -a 0 -x {9.0 10.0 4107 ------- null} + -t 4.63781 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8205 -a 0 -x {9.0 10.0 4107 ------- null} h -t 4.63781 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8205 -a 0 -x {9.0 10.0 4107 ------- null} r -t 4.63789 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8191 -a 0 -x {9.0 10.0 4100 ------- null} + -t 4.63789 -s 10 -d 7 -p ack -e 40 -c 0 -i 8210 -a 0 -x {10.0 9.0 4100 ------- null} - -t 4.63789 -s 10 -d 7 -p ack -e 40 -c 0 -i 8210 -a 0 -x {10.0 9.0 4100 ------- null} h -t 4.63789 -s 10 -d 7 -p ack -e 40 -c 0 -i 8210 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.6384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8197 -a 0 -x {9.0 10.0 4103 ------- null} - -t 4.6384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8197 -a 0 -x {9.0 10.0 4103 ------- null} h -t 4.6384 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8197 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.63848 -s 0 -d 9 -p ack -e 40 -c 0 -i 8200 -a 0 -x {10.0 9.0 4095 ------- null} + -t 4.63848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8211 -a 0 -x {9.0 10.0 4110 ------- null} - -t 4.63848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8211 -a 0 -x {9.0 10.0 4110 ------- null} h -t 4.63848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8211 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.63854 -s 0 -d 9 -p ack -e 40 -c 0 -i 8204 -a 0 -x {10.0 9.0 4097 ------- null} - -t 4.63854 -s 0 -d 9 -p ack -e 40 -c 0 -i 8204 -a 0 -x {10.0 9.0 4097 ------- null} h -t 4.63854 -s 0 -d 9 -p ack -e 40 -c 0 -i 8204 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.63883 -s 10 -d 7 -p ack -e 40 -c 0 -i 8208 -a 0 -x {10.0 9.0 4099 ------- null} + -t 4.63883 -s 7 -d 0 -p ack -e 40 -c 0 -i 8208 -a 0 -x {10.0 9.0 4099 ------- null} h -t 4.63883 -s 7 -d 8 -p ack -e 40 -c 0 -i 8208 -a 0 -x {10.0 9.0 4099 ------- null} r -t 4.63898 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8193 -a 0 -x {9.0 10.0 4101 ------- null} + -t 4.63898 -s 10 -d 7 -p ack -e 40 -c 0 -i 8212 -a 0 -x {10.0 9.0 4101 ------- null} - -t 4.63898 -s 10 -d 7 -p ack -e 40 -c 0 -i 8212 -a 0 -x {10.0 9.0 4101 ------- null} h -t 4.63898 -s 10 -d 7 -p ack -e 40 -c 0 -i 8212 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.63902 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8207 -a 0 -x {9.0 10.0 4108 ------- null} + -t 4.63902 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8207 -a 0 -x {9.0 10.0 4108 ------- null} h -t 4.63902 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8207 -a 0 -x {9.0 10.0 4108 ------- null} r -t 4.63947 -s 0 -d 9 -p ack -e 40 -c 0 -i 8202 -a 0 -x {10.0 9.0 4096 ------- null} + -t 4.63947 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8213 -a 0 -x {9.0 10.0 4111 ------- null} - -t 4.63947 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8213 -a 0 -x {9.0 10.0 4111 ------- null} h -t 4.63947 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8213 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.63949 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8199 -a 0 -x {9.0 10.0 4104 ------- null} - -t 4.63949 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8199 -a 0 -x {9.0 10.0 4104 ------- null} h -t 4.63949 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8199 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.63963 -s 0 -d 9 -p ack -e 40 -c 0 -i 8206 -a 0 -x {10.0 9.0 4098 ------- null} - -t 4.63963 -s 0 -d 9 -p ack -e 40 -c 0 -i 8206 -a 0 -x {10.0 9.0 4098 ------- null} h -t 4.63963 -s 0 -d 9 -p ack -e 40 -c 0 -i 8206 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.63992 -s 10 -d 7 -p ack -e 40 -c 0 -i 8210 -a 0 -x {10.0 9.0 4100 ------- null} + -t 4.63992 -s 7 -d 0 -p ack -e 40 -c 0 -i 8210 -a 0 -x {10.0 9.0 4100 ------- null} h -t 4.63992 -s 7 -d 8 -p ack -e 40 -c 0 -i 8210 -a 0 -x {10.0 9.0 4100 ------- null} r -t 4.64011 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8209 -a 0 -x {9.0 10.0 4109 ------- null} + -t 4.64011 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8209 -a 0 -x {9.0 10.0 4109 ------- null} h -t 4.64011 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8209 -a 0 -x {9.0 10.0 4109 ------- null} r -t 4.64011 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8195 -a 0 -x {9.0 10.0 4102 ------- null} + -t 4.64011 -s 10 -d 7 -p ack -e 40 -c 0 -i 8214 -a 0 -x {10.0 9.0 4102 ------- null} - -t 4.64011 -s 10 -d 7 -p ack -e 40 -c 0 -i 8214 -a 0 -x {10.0 9.0 4102 ------- null} h -t 4.64011 -s 10 -d 7 -p ack -e 40 -c 0 -i 8214 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.64058 -s 0 -d 9 -p ack -e 40 -c 0 -i 8204 -a 0 -x {10.0 9.0 4097 ------- null} + -t 4.64058 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8215 -a 0 -x {9.0 10.0 4112 ------- null} - -t 4.64058 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8215 -a 0 -x {9.0 10.0 4112 ------- null} h -t 4.64058 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8215 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.64058 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8201 -a 0 -x {9.0 10.0 4105 ------- null} - -t 4.64058 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8201 -a 0 -x {9.0 10.0 4105 ------- null} h -t 4.64058 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8201 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.64086 -s 0 -d 9 -p ack -e 40 -c 0 -i 8208 -a 0 -x {10.0 9.0 4099 ------- null} - -t 4.64086 -s 0 -d 9 -p ack -e 40 -c 0 -i 8208 -a 0 -x {10.0 9.0 4099 ------- null} h -t 4.64086 -s 0 -d 9 -p ack -e 40 -c 0 -i 8208 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.64101 -s 10 -d 7 -p ack -e 40 -c 0 -i 8212 -a 0 -x {10.0 9.0 4101 ------- null} + -t 4.64101 -s 7 -d 0 -p ack -e 40 -c 0 -i 8212 -a 0 -x {10.0 9.0 4101 ------- null} h -t 4.64101 -s 7 -d 8 -p ack -e 40 -c 0 -i 8212 -a 0 -x {10.0 9.0 4101 ------- null} r -t 4.6412 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8197 -a 0 -x {9.0 10.0 4103 ------- null} + -t 4.6412 -s 10 -d 7 -p ack -e 40 -c 0 -i 8216 -a 0 -x {10.0 9.0 4103 ------- null} - -t 4.6412 -s 10 -d 7 -p ack -e 40 -c 0 -i 8216 -a 0 -x {10.0 9.0 4103 ------- null} h -t 4.6412 -s 10 -d 7 -p ack -e 40 -c 0 -i 8216 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.64128 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8211 -a 0 -x {9.0 10.0 4110 ------- null} + -t 4.64128 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8211 -a 0 -x {9.0 10.0 4110 ------- null} h -t 4.64128 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8211 -a 0 -x {9.0 10.0 4110 ------- null} r -t 4.64166 -s 0 -d 9 -p ack -e 40 -c 0 -i 8206 -a 0 -x {10.0 9.0 4098 ------- null} + -t 4.64166 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8217 -a 0 -x {9.0 10.0 4113 ------- null} - -t 4.64166 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8217 -a 0 -x {9.0 10.0 4113 ------- null} h -t 4.64166 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8217 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.6419 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8203 -a 0 -x {9.0 10.0 4106 ------- null} - -t 4.6419 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8203 -a 0 -x {9.0 10.0 4106 ------- null} h -t 4.6419 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8203 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.64214 -s 10 -d 7 -p ack -e 40 -c 0 -i 8214 -a 0 -x {10.0 9.0 4102 ------- null} + -t 4.64214 -s 7 -d 0 -p ack -e 40 -c 0 -i 8214 -a 0 -x {10.0 9.0 4102 ------- null} h -t 4.64214 -s 7 -d 8 -p ack -e 40 -c 0 -i 8214 -a 0 -x {10.0 9.0 4102 ------- null} + -t 4.64219 -s 0 -d 9 -p ack -e 40 -c 0 -i 8210 -a 0 -x {10.0 9.0 4100 ------- null} - -t 4.64219 -s 0 -d 9 -p ack -e 40 -c 0 -i 8210 -a 0 -x {10.0 9.0 4100 ------- null} h -t 4.64219 -s 0 -d 9 -p ack -e 40 -c 0 -i 8210 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.64227 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8213 -a 0 -x {9.0 10.0 4111 ------- null} + -t 4.64227 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8213 -a 0 -x {9.0 10.0 4111 ------- null} h -t 4.64227 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8213 -a 0 -x {9.0 10.0 4111 ------- null} r -t 4.64229 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8199 -a 0 -x {9.0 10.0 4104 ------- null} + -t 4.64229 -s 10 -d 7 -p ack -e 40 -c 0 -i 8218 -a 0 -x {10.0 9.0 4104 ------- null} - -t 4.64229 -s 10 -d 7 -p ack -e 40 -c 0 -i 8218 -a 0 -x {10.0 9.0 4104 ------- null} h -t 4.64229 -s 10 -d 7 -p ack -e 40 -c 0 -i 8218 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.6429 -s 0 -d 9 -p ack -e 40 -c 0 -i 8208 -a 0 -x {10.0 9.0 4099 ------- null} + -t 4.6429 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8219 -a 0 -x {9.0 10.0 4114 ------- null} - -t 4.6429 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8219 -a 0 -x {9.0 10.0 4114 ------- null} h -t 4.6429 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8219 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.64304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8205 -a 0 -x {9.0 10.0 4107 ------- null} - -t 4.64304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8205 -a 0 -x {9.0 10.0 4107 ------- null} h -t 4.64304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8205 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.64318 -s 0 -d 9 -p ack -e 40 -c 0 -i 8212 -a 0 -x {10.0 9.0 4101 ------- null} - -t 4.64318 -s 0 -d 9 -p ack -e 40 -c 0 -i 8212 -a 0 -x {10.0 9.0 4101 ------- null} h -t 4.64318 -s 0 -d 9 -p ack -e 40 -c 0 -i 8212 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.64323 -s 10 -d 7 -p ack -e 40 -c 0 -i 8216 -a 0 -x {10.0 9.0 4103 ------- null} + -t 4.64323 -s 7 -d 0 -p ack -e 40 -c 0 -i 8216 -a 0 -x {10.0 9.0 4103 ------- null} h -t 4.64323 -s 7 -d 8 -p ack -e 40 -c 0 -i 8216 -a 0 -x {10.0 9.0 4103 ------- null} r -t 4.64338 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8215 -a 0 -x {9.0 10.0 4112 ------- null} + -t 4.64338 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8215 -a 0 -x {9.0 10.0 4112 ------- null} h -t 4.64338 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8215 -a 0 -x {9.0 10.0 4112 ------- null} r -t 4.64338 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8201 -a 0 -x {9.0 10.0 4105 ------- null} + -t 4.64338 -s 10 -d 7 -p ack -e 40 -c 0 -i 8220 -a 0 -x {10.0 9.0 4105 ------- null} - -t 4.64338 -s 10 -d 7 -p ack -e 40 -c 0 -i 8220 -a 0 -x {10.0 9.0 4105 ------- null} h -t 4.64338 -s 10 -d 7 -p ack -e 40 -c 0 -i 8220 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.64413 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8207 -a 0 -x {9.0 10.0 4108 ------- null} - -t 4.64413 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8207 -a 0 -x {9.0 10.0 4108 ------- null} h -t 4.64413 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8207 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.64422 -s 0 -d 9 -p ack -e 40 -c 0 -i 8210 -a 0 -x {10.0 9.0 4100 ------- null} + -t 4.64422 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8221 -a 0 -x {9.0 10.0 4115 ------- null} - -t 4.64422 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8221 -a 0 -x {9.0 10.0 4115 ------- null} h -t 4.64422 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8221 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.64432 -s 10 -d 7 -p ack -e 40 -c 0 -i 8218 -a 0 -x {10.0 9.0 4104 ------- null} + -t 4.64432 -s 7 -d 0 -p ack -e 40 -c 0 -i 8218 -a 0 -x {10.0 9.0 4104 ------- null} h -t 4.64432 -s 7 -d 8 -p ack -e 40 -c 0 -i 8218 -a 0 -x {10.0 9.0 4104 ------- null} + -t 4.64437 -s 0 -d 9 -p ack -e 40 -c 0 -i 8214 -a 0 -x {10.0 9.0 4102 ------- null} - -t 4.64437 -s 0 -d 9 -p ack -e 40 -c 0 -i 8214 -a 0 -x {10.0 9.0 4102 ------- null} h -t 4.64437 -s 0 -d 9 -p ack -e 40 -c 0 -i 8214 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.64446 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8217 -a 0 -x {9.0 10.0 4113 ------- null} + -t 4.64446 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8217 -a 0 -x {9.0 10.0 4113 ------- null} h -t 4.64446 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8217 -a 0 -x {9.0 10.0 4113 ------- null} r -t 4.6447 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8203 -a 0 -x {9.0 10.0 4106 ------- null} + -t 4.6447 -s 10 -d 7 -p ack -e 40 -c 0 -i 8222 -a 0 -x {10.0 9.0 4106 ------- null} - -t 4.6447 -s 10 -d 7 -p ack -e 40 -c 0 -i 8222 -a 0 -x {10.0 9.0 4106 ------- null} h -t 4.6447 -s 10 -d 7 -p ack -e 40 -c 0 -i 8222 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.64522 -s 0 -d 9 -p ack -e 40 -c 0 -i 8212 -a 0 -x {10.0 9.0 4101 ------- null} + -t 4.64522 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8223 -a 0 -x {9.0 10.0 4116 ------- null} - -t 4.64522 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8223 -a 0 -x {9.0 10.0 4116 ------- null} h -t 4.64522 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8223 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.64522 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8209 -a 0 -x {9.0 10.0 4109 ------- null} - -t 4.64522 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8209 -a 0 -x {9.0 10.0 4109 ------- null} h -t 4.64522 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8209 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.6453 -s 0 -d 9 -p ack -e 40 -c 0 -i 8216 -a 0 -x {10.0 9.0 4103 ------- null} - -t 4.6453 -s 0 -d 9 -p ack -e 40 -c 0 -i 8216 -a 0 -x {10.0 9.0 4103 ------- null} h -t 4.6453 -s 0 -d 9 -p ack -e 40 -c 0 -i 8216 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.64541 -s 10 -d 7 -p ack -e 40 -c 0 -i 8220 -a 0 -x {10.0 9.0 4105 ------- null} + -t 4.64541 -s 7 -d 0 -p ack -e 40 -c 0 -i 8220 -a 0 -x {10.0 9.0 4105 ------- null} h -t 4.64541 -s 7 -d 8 -p ack -e 40 -c 0 -i 8220 -a 0 -x {10.0 9.0 4105 ------- null} r -t 4.6457 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8219 -a 0 -x {9.0 10.0 4114 ------- null} + -t 4.6457 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8219 -a 0 -x {9.0 10.0 4114 ------- null} h -t 4.6457 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8219 -a 0 -x {9.0 10.0 4114 ------- null} r -t 4.64584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8205 -a 0 -x {9.0 10.0 4107 ------- null} + -t 4.64584 -s 10 -d 7 -p ack -e 40 -c 0 -i 8224 -a 0 -x {10.0 9.0 4107 ------- null} - -t 4.64584 -s 10 -d 7 -p ack -e 40 -c 0 -i 8224 -a 0 -x {10.0 9.0 4107 ------- null} h -t 4.64584 -s 10 -d 7 -p ack -e 40 -c 0 -i 8224 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.6463 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8211 -a 0 -x {9.0 10.0 4110 ------- null} - -t 4.6463 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8211 -a 0 -x {9.0 10.0 4110 ------- null} h -t 4.6463 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8211 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.6464 -s 0 -d 9 -p ack -e 40 -c 0 -i 8214 -a 0 -x {10.0 9.0 4102 ------- null} + -t 4.6464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8225 -a 0 -x {9.0 10.0 4117 ------- null} - -t 4.6464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8225 -a 0 -x {9.0 10.0 4117 ------- null} h -t 4.6464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8225 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.64654 -s 0 -d 9 -p ack -e 40 -c 0 -i 8218 -a 0 -x {10.0 9.0 4104 ------- null} - -t 4.64654 -s 0 -d 9 -p ack -e 40 -c 0 -i 8218 -a 0 -x {10.0 9.0 4104 ------- null} h -t 4.64654 -s 0 -d 9 -p ack -e 40 -c 0 -i 8218 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.64674 -s 10 -d 7 -p ack -e 40 -c 0 -i 8222 -a 0 -x {10.0 9.0 4106 ------- null} + -t 4.64674 -s 7 -d 0 -p ack -e 40 -c 0 -i 8222 -a 0 -x {10.0 9.0 4106 ------- null} h -t 4.64674 -s 7 -d 8 -p ack -e 40 -c 0 -i 8222 -a 0 -x {10.0 9.0 4106 ------- null} r -t 4.64693 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8207 -a 0 -x {9.0 10.0 4108 ------- null} + -t 4.64693 -s 10 -d 7 -p ack -e 40 -c 0 -i 8226 -a 0 -x {10.0 9.0 4108 ------- null} - -t 4.64693 -s 10 -d 7 -p ack -e 40 -c 0 -i 8226 -a 0 -x {10.0 9.0 4108 ------- null} h -t 4.64693 -s 10 -d 7 -p ack -e 40 -c 0 -i 8226 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.64702 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8221 -a 0 -x {9.0 10.0 4115 ------- null} + -t 4.64702 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8221 -a 0 -x {9.0 10.0 4115 ------- null} h -t 4.64702 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8221 -a 0 -x {9.0 10.0 4115 ------- null} r -t 4.64733 -s 0 -d 9 -p ack -e 40 -c 0 -i 8216 -a 0 -x {10.0 9.0 4103 ------- null} + -t 4.64733 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8227 -a 0 -x {9.0 10.0 4118 ------- null} - -t 4.64733 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8227 -a 0 -x {9.0 10.0 4118 ------- null} h -t 4.64733 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8227 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.64739 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8213 -a 0 -x {9.0 10.0 4111 ------- null} - -t 4.64739 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8213 -a 0 -x {9.0 10.0 4111 ------- null} h -t 4.64739 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8213 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.64749 -s 0 -d 9 -p ack -e 40 -c 0 -i 8220 -a 0 -x {10.0 9.0 4105 ------- null} - -t 4.64749 -s 0 -d 9 -p ack -e 40 -c 0 -i 8220 -a 0 -x {10.0 9.0 4105 ------- null} h -t 4.64749 -s 0 -d 9 -p ack -e 40 -c 0 -i 8220 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.64787 -s 10 -d 7 -p ack -e 40 -c 0 -i 8224 -a 0 -x {10.0 9.0 4107 ------- null} + -t 4.64787 -s 7 -d 0 -p ack -e 40 -c 0 -i 8224 -a 0 -x {10.0 9.0 4107 ------- null} h -t 4.64787 -s 7 -d 8 -p ack -e 40 -c 0 -i 8224 -a 0 -x {10.0 9.0 4107 ------- null} r -t 4.64802 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8223 -a 0 -x {9.0 10.0 4116 ------- null} + -t 4.64802 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8223 -a 0 -x {9.0 10.0 4116 ------- null} h -t 4.64802 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8223 -a 0 -x {9.0 10.0 4116 ------- null} r -t 4.64802 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8209 -a 0 -x {9.0 10.0 4109 ------- null} + -t 4.64802 -s 10 -d 7 -p ack -e 40 -c 0 -i 8228 -a 0 -x {10.0 9.0 4109 ------- null} - -t 4.64802 -s 10 -d 7 -p ack -e 40 -c 0 -i 8228 -a 0 -x {10.0 9.0 4109 ------- null} h -t 4.64802 -s 10 -d 7 -p ack -e 40 -c 0 -i 8228 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.64848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8215 -a 0 -x {9.0 10.0 4112 ------- null} - -t 4.64848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8215 -a 0 -x {9.0 10.0 4112 ------- null} h -t 4.64848 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8215 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.64858 -s 0 -d 9 -p ack -e 40 -c 0 -i 8218 -a 0 -x {10.0 9.0 4104 ------- null} + -t 4.64858 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8229 -a 0 -x {9.0 10.0 4119 ------- null} - -t 4.64858 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8229 -a 0 -x {9.0 10.0 4119 ------- null} h -t 4.64858 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8229 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.64859 -s 0 -d 9 -p ack -e 40 -c 0 -i 8222 -a 0 -x {10.0 9.0 4106 ------- null} - -t 4.64859 -s 0 -d 9 -p ack -e 40 -c 0 -i 8222 -a 0 -x {10.0 9.0 4106 ------- null} h -t 4.64859 -s 0 -d 9 -p ack -e 40 -c 0 -i 8222 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.64896 -s 10 -d 7 -p ack -e 40 -c 0 -i 8226 -a 0 -x {10.0 9.0 4108 ------- null} + -t 4.64896 -s 7 -d 0 -p ack -e 40 -c 0 -i 8226 -a 0 -x {10.0 9.0 4108 ------- null} h -t 4.64896 -s 7 -d 8 -p ack -e 40 -c 0 -i 8226 -a 0 -x {10.0 9.0 4108 ------- null} r -t 4.6491 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8211 -a 0 -x {9.0 10.0 4110 ------- null} + -t 4.6491 -s 10 -d 7 -p ack -e 40 -c 0 -i 8230 -a 0 -x {10.0 9.0 4110 ------- null} - -t 4.6491 -s 10 -d 7 -p ack -e 40 -c 0 -i 8230 -a 0 -x {10.0 9.0 4110 ------- null} h -t 4.6491 -s 10 -d 7 -p ack -e 40 -c 0 -i 8230 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.6492 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8225 -a 0 -x {9.0 10.0 4117 ------- null} + -t 4.6492 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8225 -a 0 -x {9.0 10.0 4117 ------- null} h -t 4.6492 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8225 -a 0 -x {9.0 10.0 4117 ------- null} r -t 4.64952 -s 0 -d 9 -p ack -e 40 -c 0 -i 8220 -a 0 -x {10.0 9.0 4105 ------- null} + -t 4.64952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8231 -a 0 -x {9.0 10.0 4120 ------- null} - -t 4.64952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8231 -a 0 -x {9.0 10.0 4120 ------- null} h -t 4.64952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8231 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.64957 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8217 -a 0 -x {9.0 10.0 4113 ------- null} - -t 4.64957 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8217 -a 0 -x {9.0 10.0 4113 ------- null} h -t 4.64957 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8217 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.64974 -s 0 -d 9 -p ack -e 40 -c 0 -i 8224 -a 0 -x {10.0 9.0 4107 ------- null} - -t 4.64974 -s 0 -d 9 -p ack -e 40 -c 0 -i 8224 -a 0 -x {10.0 9.0 4107 ------- null} h -t 4.64974 -s 0 -d 9 -p ack -e 40 -c 0 -i 8224 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.65005 -s 10 -d 7 -p ack -e 40 -c 0 -i 8228 -a 0 -x {10.0 9.0 4109 ------- null} + -t 4.65005 -s 7 -d 0 -p ack -e 40 -c 0 -i 8228 -a 0 -x {10.0 9.0 4109 ------- null} h -t 4.65005 -s 7 -d 8 -p ack -e 40 -c 0 -i 8228 -a 0 -x {10.0 9.0 4109 ------- null} r -t 4.65013 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8227 -a 0 -x {9.0 10.0 4118 ------- null} + -t 4.65013 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8227 -a 0 -x {9.0 10.0 4118 ------- null} h -t 4.65013 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8227 -a 0 -x {9.0 10.0 4118 ------- null} r -t 4.65019 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8213 -a 0 -x {9.0 10.0 4111 ------- null} + -t 4.65019 -s 10 -d 7 -p ack -e 40 -c 0 -i 8232 -a 0 -x {10.0 9.0 4111 ------- null} - -t 4.65019 -s 10 -d 7 -p ack -e 40 -c 0 -i 8232 -a 0 -x {10.0 9.0 4111 ------- null} h -t 4.65019 -s 10 -d 7 -p ack -e 40 -c 0 -i 8232 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.65062 -s 0 -d 9 -p ack -e 40 -c 0 -i 8222 -a 0 -x {10.0 9.0 4106 ------- null} + -t 4.65062 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8233 -a 0 -x {9.0 10.0 4121 ------- null} - -t 4.65062 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8233 -a 0 -x {9.0 10.0 4121 ------- null} h -t 4.65062 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8233 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.65066 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8219 -a 0 -x {9.0 10.0 4114 ------- null} - -t 4.65066 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8219 -a 0 -x {9.0 10.0 4114 ------- null} h -t 4.65066 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8219 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.65077 -s 0 -d 9 -p ack -e 40 -c 0 -i 8226 -a 0 -x {10.0 9.0 4108 ------- null} - -t 4.65077 -s 0 -d 9 -p ack -e 40 -c 0 -i 8226 -a 0 -x {10.0 9.0 4108 ------- null} h -t 4.65077 -s 0 -d 9 -p ack -e 40 -c 0 -i 8226 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.65114 -s 10 -d 7 -p ack -e 40 -c 0 -i 8230 -a 0 -x {10.0 9.0 4110 ------- null} + -t 4.65114 -s 7 -d 0 -p ack -e 40 -c 0 -i 8230 -a 0 -x {10.0 9.0 4110 ------- null} h -t 4.65114 -s 7 -d 8 -p ack -e 40 -c 0 -i 8230 -a 0 -x {10.0 9.0 4110 ------- null} r -t 4.65128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8215 -a 0 -x {9.0 10.0 4112 ------- null} + -t 4.65128 -s 10 -d 7 -p ack -e 40 -c 0 -i 8234 -a 0 -x {10.0 9.0 4112 ------- null} - -t 4.65128 -s 10 -d 7 -p ack -e 40 -c 0 -i 8234 -a 0 -x {10.0 9.0 4112 ------- null} h -t 4.65128 -s 10 -d 7 -p ack -e 40 -c 0 -i 8234 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.65138 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8229 -a 0 -x {9.0 10.0 4119 ------- null} + -t 4.65138 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8229 -a 0 -x {9.0 10.0 4119 ------- null} h -t 4.65138 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8229 -a 0 -x {9.0 10.0 4119 ------- null} + -t 4.65174 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8221 -a 0 -x {9.0 10.0 4115 ------- null} - -t 4.65174 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8221 -a 0 -x {9.0 10.0 4115 ------- null} h -t 4.65174 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8221 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.65178 -s 0 -d 9 -p ack -e 40 -c 0 -i 8224 -a 0 -x {10.0 9.0 4107 ------- null} + -t 4.65178 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8235 -a 0 -x {9.0 10.0 4122 ------- null} - -t 4.65178 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8235 -a 0 -x {9.0 10.0 4122 ------- null} h -t 4.65178 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8235 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.65197 -s 0 -d 9 -p ack -e 40 -c 0 -i 8228 -a 0 -x {10.0 9.0 4109 ------- null} - -t 4.65197 -s 0 -d 9 -p ack -e 40 -c 0 -i 8228 -a 0 -x {10.0 9.0 4109 ------- null} h -t 4.65197 -s 0 -d 9 -p ack -e 40 -c 0 -i 8228 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.65222 -s 10 -d 7 -p ack -e 40 -c 0 -i 8232 -a 0 -x {10.0 9.0 4111 ------- null} + -t 4.65222 -s 7 -d 0 -p ack -e 40 -c 0 -i 8232 -a 0 -x {10.0 9.0 4111 ------- null} h -t 4.65222 -s 7 -d 8 -p ack -e 40 -c 0 -i 8232 -a 0 -x {10.0 9.0 4111 ------- null} r -t 4.65232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8231 -a 0 -x {9.0 10.0 4120 ------- null} + -t 4.65232 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8231 -a 0 -x {9.0 10.0 4120 ------- null} h -t 4.65232 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8231 -a 0 -x {9.0 10.0 4120 ------- null} r -t 4.65237 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8217 -a 0 -x {9.0 10.0 4113 ------- null} + -t 4.65237 -s 10 -d 7 -p ack -e 40 -c 0 -i 8236 -a 0 -x {10.0 9.0 4113 ------- null} - -t 4.65237 -s 10 -d 7 -p ack -e 40 -c 0 -i 8236 -a 0 -x {10.0 9.0 4113 ------- null} h -t 4.65237 -s 10 -d 7 -p ack -e 40 -c 0 -i 8236 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.6528 -s 0 -d 9 -p ack -e 40 -c 0 -i 8226 -a 0 -x {10.0 9.0 4108 ------- null} + -t 4.6528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8237 -a 0 -x {9.0 10.0 4123 ------- null} - -t 4.6528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8237 -a 0 -x {9.0 10.0 4123 ------- null} h -t 4.6528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8237 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.65283 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8223 -a 0 -x {9.0 10.0 4116 ------- null} - -t 4.65283 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8223 -a 0 -x {9.0 10.0 4116 ------- null} h -t 4.65283 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8223 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.65299 -s 0 -d 9 -p ack -e 40 -c 0 -i 8230 -a 0 -x {10.0 9.0 4110 ------- null} - -t 4.65299 -s 0 -d 9 -p ack -e 40 -c 0 -i 8230 -a 0 -x {10.0 9.0 4110 ------- null} h -t 4.65299 -s 0 -d 9 -p ack -e 40 -c 0 -i 8230 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.65331 -s 10 -d 7 -p ack -e 40 -c 0 -i 8234 -a 0 -x {10.0 9.0 4112 ------- null} + -t 4.65331 -s 7 -d 0 -p ack -e 40 -c 0 -i 8234 -a 0 -x {10.0 9.0 4112 ------- null} h -t 4.65331 -s 7 -d 8 -p ack -e 40 -c 0 -i 8234 -a 0 -x {10.0 9.0 4112 ------- null} r -t 4.65342 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8233 -a 0 -x {9.0 10.0 4121 ------- null} + -t 4.65342 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8233 -a 0 -x {9.0 10.0 4121 ------- null} h -t 4.65342 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8233 -a 0 -x {9.0 10.0 4121 ------- null} r -t 4.65346 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8219 -a 0 -x {9.0 10.0 4114 ------- null} + -t 4.65346 -s 10 -d 7 -p ack -e 40 -c 0 -i 8238 -a 0 -x {10.0 9.0 4114 ------- null} - -t 4.65346 -s 10 -d 7 -p ack -e 40 -c 0 -i 8238 -a 0 -x {10.0 9.0 4114 ------- null} h -t 4.65346 -s 10 -d 7 -p ack -e 40 -c 0 -i 8238 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.65392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8225 -a 0 -x {9.0 10.0 4117 ------- null} - -t 4.65392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8225 -a 0 -x {9.0 10.0 4117 ------- null} h -t 4.65392 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8225 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.654 -s 0 -d 9 -p ack -e 40 -c 0 -i 8228 -a 0 -x {10.0 9.0 4109 ------- null} + -t 4.654 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8239 -a 0 -x {9.0 10.0 4124 ------- null} - -t 4.654 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8239 -a 0 -x {9.0 10.0 4124 ------- null} h -t 4.654 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8239 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.65406 -s 0 -d 9 -p ack -e 40 -c 0 -i 8232 -a 0 -x {10.0 9.0 4111 ------- null} - -t 4.65406 -s 0 -d 9 -p ack -e 40 -c 0 -i 8232 -a 0 -x {10.0 9.0 4111 ------- null} h -t 4.65406 -s 0 -d 9 -p ack -e 40 -c 0 -i 8232 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.6544 -s 10 -d 7 -p ack -e 40 -c 0 -i 8236 -a 0 -x {10.0 9.0 4113 ------- null} + -t 4.6544 -s 7 -d 0 -p ack -e 40 -c 0 -i 8236 -a 0 -x {10.0 9.0 4113 ------- null} h -t 4.6544 -s 7 -d 8 -p ack -e 40 -c 0 -i 8236 -a 0 -x {10.0 9.0 4113 ------- null} r -t 4.65454 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8221 -a 0 -x {9.0 10.0 4115 ------- null} + -t 4.65454 -s 10 -d 7 -p ack -e 40 -c 0 -i 8240 -a 0 -x {10.0 9.0 4115 ------- null} - -t 4.65454 -s 10 -d 7 -p ack -e 40 -c 0 -i 8240 -a 0 -x {10.0 9.0 4115 ------- null} h -t 4.65454 -s 10 -d 7 -p ack -e 40 -c 0 -i 8240 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.65458 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8235 -a 0 -x {9.0 10.0 4122 ------- null} + -t 4.65458 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8235 -a 0 -x {9.0 10.0 4122 ------- null} h -t 4.65458 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8235 -a 0 -x {9.0 10.0 4122 ------- null} + -t 4.65501 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8227 -a 0 -x {9.0 10.0 4118 ------- null} - -t 4.65501 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8227 -a 0 -x {9.0 10.0 4118 ------- null} h -t 4.65501 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8227 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.65502 -s 0 -d 9 -p ack -e 40 -c 0 -i 8230 -a 0 -x {10.0 9.0 4110 ------- null} + -t 4.65502 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8241 -a 0 -x {9.0 10.0 4125 ------- null} - -t 4.65502 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8241 -a 0 -x {9.0 10.0 4125 ------- null} h -t 4.65502 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8241 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.65528 -s 0 -d 9 -p ack -e 40 -c 0 -i 8234 -a 0 -x {10.0 9.0 4112 ------- null} - -t 4.65528 -s 0 -d 9 -p ack -e 40 -c 0 -i 8234 -a 0 -x {10.0 9.0 4112 ------- null} h -t 4.65528 -s 0 -d 9 -p ack -e 40 -c 0 -i 8234 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.65549 -s 10 -d 7 -p ack -e 40 -c 0 -i 8238 -a 0 -x {10.0 9.0 4114 ------- null} + -t 4.65549 -s 7 -d 0 -p ack -e 40 -c 0 -i 8238 -a 0 -x {10.0 9.0 4114 ------- null} h -t 4.65549 -s 7 -d 8 -p ack -e 40 -c 0 -i 8238 -a 0 -x {10.0 9.0 4114 ------- null} r -t 4.6556 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8237 -a 0 -x {9.0 10.0 4123 ------- null} + -t 4.6556 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8237 -a 0 -x {9.0 10.0 4123 ------- null} h -t 4.6556 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8237 -a 0 -x {9.0 10.0 4123 ------- null} r -t 4.65563 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8223 -a 0 -x {9.0 10.0 4116 ------- null} + -t 4.65563 -s 10 -d 7 -p ack -e 40 -c 0 -i 8242 -a 0 -x {10.0 9.0 4116 ------- null} - -t 4.65563 -s 10 -d 7 -p ack -e 40 -c 0 -i 8242 -a 0 -x {10.0 9.0 4116 ------- null} h -t 4.65563 -s 10 -d 7 -p ack -e 40 -c 0 -i 8242 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.6561 -s 0 -d 9 -p ack -e 40 -c 0 -i 8232 -a 0 -x {10.0 9.0 4111 ------- null} + -t 4.6561 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8243 -a 0 -x {9.0 10.0 4126 ------- null} - -t 4.6561 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8243 -a 0 -x {9.0 10.0 4126 ------- null} h -t 4.6561 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8243 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.65619 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8229 -a 0 -x {9.0 10.0 4119 ------- null} - -t 4.65619 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8229 -a 0 -x {9.0 10.0 4119 ------- null} h -t 4.65619 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8229 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.65637 -s 0 -d 9 -p ack -e 40 -c 0 -i 8236 -a 0 -x {10.0 9.0 4113 ------- null} - -t 4.65637 -s 0 -d 9 -p ack -e 40 -c 0 -i 8236 -a 0 -x {10.0 9.0 4113 ------- null} h -t 4.65637 -s 0 -d 9 -p ack -e 40 -c 0 -i 8236 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.65658 -s 10 -d 7 -p ack -e 40 -c 0 -i 8240 -a 0 -x {10.0 9.0 4115 ------- null} + -t 4.65658 -s 7 -d 0 -p ack -e 40 -c 0 -i 8240 -a 0 -x {10.0 9.0 4115 ------- null} h -t 4.65658 -s 7 -d 8 -p ack -e 40 -c 0 -i 8240 -a 0 -x {10.0 9.0 4115 ------- null} r -t 4.65672 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8225 -a 0 -x {9.0 10.0 4117 ------- null} + -t 4.65672 -s 10 -d 7 -p ack -e 40 -c 0 -i 8244 -a 0 -x {10.0 9.0 4117 ------- null} - -t 4.65672 -s 10 -d 7 -p ack -e 40 -c 0 -i 8244 -a 0 -x {10.0 9.0 4117 ------- null} h -t 4.65672 -s 10 -d 7 -p ack -e 40 -c 0 -i 8244 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.6568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8239 -a 0 -x {9.0 10.0 4124 ------- null} + -t 4.6568 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8239 -a 0 -x {9.0 10.0 4124 ------- null} h -t 4.6568 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8239 -a 0 -x {9.0 10.0 4124 ------- null} + -t 4.65728 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8231 -a 0 -x {9.0 10.0 4120 ------- null} - -t 4.65728 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8231 -a 0 -x {9.0 10.0 4120 ------- null} h -t 4.65728 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8231 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.65731 -s 0 -d 9 -p ack -e 40 -c 0 -i 8234 -a 0 -x {10.0 9.0 4112 ------- null} + -t 4.65731 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8245 -a 0 -x {9.0 10.0 4127 ------- null} - -t 4.65731 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8245 -a 0 -x {9.0 10.0 4127 ------- null} h -t 4.65731 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8245 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.65747 -s 0 -d 9 -p ack -e 40 -c 0 -i 8238 -a 0 -x {10.0 9.0 4114 ------- null} - -t 4.65747 -s 0 -d 9 -p ack -e 40 -c 0 -i 8238 -a 0 -x {10.0 9.0 4114 ------- null} h -t 4.65747 -s 0 -d 9 -p ack -e 40 -c 0 -i 8238 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.65766 -s 10 -d 7 -p ack -e 40 -c 0 -i 8242 -a 0 -x {10.0 9.0 4116 ------- null} + -t 4.65766 -s 7 -d 0 -p ack -e 40 -c 0 -i 8242 -a 0 -x {10.0 9.0 4116 ------- null} h -t 4.65766 -s 7 -d 8 -p ack -e 40 -c 0 -i 8242 -a 0 -x {10.0 9.0 4116 ------- null} r -t 4.65781 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8227 -a 0 -x {9.0 10.0 4118 ------- null} + -t 4.65781 -s 10 -d 7 -p ack -e 40 -c 0 -i 8246 -a 0 -x {10.0 9.0 4118 ------- null} - -t 4.65781 -s 10 -d 7 -p ack -e 40 -c 0 -i 8246 -a 0 -x {10.0 9.0 4118 ------- null} h -t 4.65781 -s 10 -d 7 -p ack -e 40 -c 0 -i 8246 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.65782 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8241 -a 0 -x {9.0 10.0 4125 ------- null} + -t 4.65782 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8241 -a 0 -x {9.0 10.0 4125 ------- null} h -t 4.65782 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8241 -a 0 -x {9.0 10.0 4125 ------- null} + -t 4.65837 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8233 -a 0 -x {9.0 10.0 4121 ------- null} - -t 4.65837 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8233 -a 0 -x {9.0 10.0 4121 ------- null} h -t 4.65837 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8233 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.6584 -s 0 -d 9 -p ack -e 40 -c 0 -i 8236 -a 0 -x {10.0 9.0 4113 ------- null} + -t 4.6584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8247 -a 0 -x {9.0 10.0 4128 ------- null} - -t 4.6584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8247 -a 0 -x {9.0 10.0 4128 ------- null} h -t 4.6584 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8247 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.65862 -s 0 -d 9 -p ack -e 40 -c 0 -i 8240 -a 0 -x {10.0 9.0 4115 ------- null} - -t 4.65862 -s 0 -d 9 -p ack -e 40 -c 0 -i 8240 -a 0 -x {10.0 9.0 4115 ------- null} h -t 4.65862 -s 0 -d 9 -p ack -e 40 -c 0 -i 8240 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.65875 -s 10 -d 7 -p ack -e 40 -c 0 -i 8244 -a 0 -x {10.0 9.0 4117 ------- null} + -t 4.65875 -s 7 -d 0 -p ack -e 40 -c 0 -i 8244 -a 0 -x {10.0 9.0 4117 ------- null} h -t 4.65875 -s 7 -d 8 -p ack -e 40 -c 0 -i 8244 -a 0 -x {10.0 9.0 4117 ------- null} r -t 4.6589 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8243 -a 0 -x {9.0 10.0 4126 ------- null} + -t 4.6589 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8243 -a 0 -x {9.0 10.0 4126 ------- null} h -t 4.6589 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8243 -a 0 -x {9.0 10.0 4126 ------- null} r -t 4.65899 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8229 -a 0 -x {9.0 10.0 4119 ------- null} + -t 4.65899 -s 10 -d 7 -p ack -e 40 -c 0 -i 8248 -a 0 -x {10.0 9.0 4119 ------- null} - -t 4.65899 -s 10 -d 7 -p ack -e 40 -c 0 -i 8248 -a 0 -x {10.0 9.0 4119 ------- null} h -t 4.65899 -s 10 -d 7 -p ack -e 40 -c 0 -i 8248 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.65946 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8235 -a 0 -x {9.0 10.0 4122 ------- null} - -t 4.65946 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8235 -a 0 -x {9.0 10.0 4122 ------- null} h -t 4.65946 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8235 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.6595 -s 0 -d 9 -p ack -e 40 -c 0 -i 8238 -a 0 -x {10.0 9.0 4114 ------- null} + -t 4.6595 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8249 -a 0 -x {9.0 10.0 4129 ------- null} - -t 4.6595 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8249 -a 0 -x {9.0 10.0 4129 ------- null} h -t 4.6595 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8249 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.65958 -s 0 -d 9 -p ack -e 40 -c 0 -i 8242 -a 0 -x {10.0 9.0 4116 ------- null} - -t 4.65958 -s 0 -d 9 -p ack -e 40 -c 0 -i 8242 -a 0 -x {10.0 9.0 4116 ------- null} h -t 4.65958 -s 0 -d 9 -p ack -e 40 -c 0 -i 8242 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.65984 -s 10 -d 7 -p ack -e 40 -c 0 -i 8246 -a 0 -x {10.0 9.0 4118 ------- null} + -t 4.65984 -s 7 -d 0 -p ack -e 40 -c 0 -i 8246 -a 0 -x {10.0 9.0 4118 ------- null} h -t 4.65984 -s 7 -d 8 -p ack -e 40 -c 0 -i 8246 -a 0 -x {10.0 9.0 4118 ------- null} r -t 4.66008 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8231 -a 0 -x {9.0 10.0 4120 ------- null} + -t 4.66008 -s 10 -d 7 -p ack -e 40 -c 0 -i 8250 -a 0 -x {10.0 9.0 4120 ------- null} - -t 4.66008 -s 10 -d 7 -p ack -e 40 -c 0 -i 8250 -a 0 -x {10.0 9.0 4120 ------- null} h -t 4.66008 -s 10 -d 7 -p ack -e 40 -c 0 -i 8250 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.66011 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8245 -a 0 -x {9.0 10.0 4127 ------- null} + -t 4.66011 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8245 -a 0 -x {9.0 10.0 4127 ------- null} h -t 4.66011 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8245 -a 0 -x {9.0 10.0 4127 ------- null} + -t 4.66054 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8237 -a 0 -x {9.0 10.0 4123 ------- null} - -t 4.66054 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8237 -a 0 -x {9.0 10.0 4123 ------- null} h -t 4.66054 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8237 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.66066 -s 0 -d 9 -p ack -e 40 -c 0 -i 8240 -a 0 -x {10.0 9.0 4115 ------- null} + -t 4.66066 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8251 -a 0 -x {9.0 10.0 4130 ------- null} - -t 4.66066 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8251 -a 0 -x {9.0 10.0 4130 ------- null} h -t 4.66066 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8251 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.66069 -s 0 -d 9 -p ack -e 40 -c 0 -i 8244 -a 0 -x {10.0 9.0 4117 ------- null} - -t 4.66069 -s 0 -d 9 -p ack -e 40 -c 0 -i 8244 -a 0 -x {10.0 9.0 4117 ------- null} h -t 4.66069 -s 0 -d 9 -p ack -e 40 -c 0 -i 8244 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.66102 -s 10 -d 7 -p ack -e 40 -c 0 -i 8248 -a 0 -x {10.0 9.0 4119 ------- null} + -t 4.66102 -s 7 -d 0 -p ack -e 40 -c 0 -i 8248 -a 0 -x {10.0 9.0 4119 ------- null} h -t 4.66102 -s 7 -d 8 -p ack -e 40 -c 0 -i 8248 -a 0 -x {10.0 9.0 4119 ------- null} r -t 4.66117 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8233 -a 0 -x {9.0 10.0 4121 ------- null} + -t 4.66117 -s 10 -d 7 -p ack -e 40 -c 0 -i 8252 -a 0 -x {10.0 9.0 4121 ------- null} - -t 4.66117 -s 10 -d 7 -p ack -e 40 -c 0 -i 8252 -a 0 -x {10.0 9.0 4121 ------- null} h -t 4.66117 -s 10 -d 7 -p ack -e 40 -c 0 -i 8252 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.6612 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8247 -a 0 -x {9.0 10.0 4128 ------- null} + -t 4.6612 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8247 -a 0 -x {9.0 10.0 4128 ------- null} h -t 4.6612 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8247 -a 0 -x {9.0 10.0 4128 ------- null} r -t 4.66162 -s 0 -d 9 -p ack -e 40 -c 0 -i 8242 -a 0 -x {10.0 9.0 4116 ------- null} + -t 4.66162 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8253 -a 0 -x {9.0 10.0 4131 ------- null} - -t 4.66162 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8253 -a 0 -x {9.0 10.0 4131 ------- null} h -t 4.66162 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8253 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.66163 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8239 -a 0 -x {9.0 10.0 4124 ------- null} - -t 4.66163 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8239 -a 0 -x {9.0 10.0 4124 ------- null} h -t 4.66163 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8239 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.66178 -s 0 -d 9 -p ack -e 40 -c 0 -i 8246 -a 0 -x {10.0 9.0 4118 ------- null} - -t 4.66178 -s 0 -d 9 -p ack -e 40 -c 0 -i 8246 -a 0 -x {10.0 9.0 4118 ------- null} h -t 4.66178 -s 0 -d 9 -p ack -e 40 -c 0 -i 8246 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.66211 -s 10 -d 7 -p ack -e 40 -c 0 -i 8250 -a 0 -x {10.0 9.0 4120 ------- null} + -t 4.66211 -s 7 -d 0 -p ack -e 40 -c 0 -i 8250 -a 0 -x {10.0 9.0 4120 ------- null} h -t 4.66211 -s 7 -d 8 -p ack -e 40 -c 0 -i 8250 -a 0 -x {10.0 9.0 4120 ------- null} r -t 4.66226 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8235 -a 0 -x {9.0 10.0 4122 ------- null} + -t 4.66226 -s 10 -d 7 -p ack -e 40 -c 0 -i 8254 -a 0 -x {10.0 9.0 4122 ------- null} - -t 4.66226 -s 10 -d 7 -p ack -e 40 -c 0 -i 8254 -a 0 -x {10.0 9.0 4122 ------- null} h -t 4.66226 -s 10 -d 7 -p ack -e 40 -c 0 -i 8254 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.6623 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8249 -a 0 -x {9.0 10.0 4129 ------- null} + -t 4.6623 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8249 -a 0 -x {9.0 10.0 4129 ------- null} h -t 4.6623 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8249 -a 0 -x {9.0 10.0 4129 ------- null} r -t 4.66272 -s 0 -d 9 -p ack -e 40 -c 0 -i 8244 -a 0 -x {10.0 9.0 4117 ------- null} + -t 4.66272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8255 -a 0 -x {9.0 10.0 4132 ------- null} - -t 4.66272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8255 -a 0 -x {9.0 10.0 4132 ------- null} h -t 4.66272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8255 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.66272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8241 -a 0 -x {9.0 10.0 4125 ------- null} - -t 4.66272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8241 -a 0 -x {9.0 10.0 4125 ------- null} h -t 4.66272 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8241 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.6628 -s 0 -d 9 -p ack -e 40 -c 0 -i 8248 -a 0 -x {10.0 9.0 4119 ------- null} - -t 4.6628 -s 0 -d 9 -p ack -e 40 -c 0 -i 8248 -a 0 -x {10.0 9.0 4119 ------- null} h -t 4.6628 -s 0 -d 9 -p ack -e 40 -c 0 -i 8248 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.6632 -s 10 -d 7 -p ack -e 40 -c 0 -i 8252 -a 0 -x {10.0 9.0 4121 ------- null} + -t 4.6632 -s 7 -d 0 -p ack -e 40 -c 0 -i 8252 -a 0 -x {10.0 9.0 4121 ------- null} h -t 4.6632 -s 7 -d 8 -p ack -e 40 -c 0 -i 8252 -a 0 -x {10.0 9.0 4121 ------- null} r -t 4.66334 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8237 -a 0 -x {9.0 10.0 4123 ------- null} + -t 4.66334 -s 10 -d 7 -p ack -e 40 -c 0 -i 8256 -a 0 -x {10.0 9.0 4123 ------- null} - -t 4.66334 -s 10 -d 7 -p ack -e 40 -c 0 -i 8256 -a 0 -x {10.0 9.0 4123 ------- null} h -t 4.66334 -s 10 -d 7 -p ack -e 40 -c 0 -i 8256 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.66346 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8251 -a 0 -x {9.0 10.0 4130 ------- null} + -t 4.66346 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8251 -a 0 -x {9.0 10.0 4130 ------- null} h -t 4.66346 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8251 -a 0 -x {9.0 10.0 4130 ------- null} r -t 4.66381 -s 0 -d 9 -p ack -e 40 -c 0 -i 8246 -a 0 -x {10.0 9.0 4118 ------- null} + -t 4.66381 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8257 -a 0 -x {9.0 10.0 4133 ------- null} - -t 4.66381 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8257 -a 0 -x {9.0 10.0 4133 ------- null} h -t 4.66381 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8257 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.66381 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8243 -a 0 -x {9.0 10.0 4126 ------- null} - -t 4.66381 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8243 -a 0 -x {9.0 10.0 4126 ------- null} h -t 4.66381 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8243 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.66403 -s 0 -d 9 -p ack -e 40 -c 0 -i 8250 -a 0 -x {10.0 9.0 4120 ------- null} - -t 4.66403 -s 0 -d 9 -p ack -e 40 -c 0 -i 8250 -a 0 -x {10.0 9.0 4120 ------- null} h -t 4.66403 -s 0 -d 9 -p ack -e 40 -c 0 -i 8250 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.66429 -s 10 -d 7 -p ack -e 40 -c 0 -i 8254 -a 0 -x {10.0 9.0 4122 ------- null} + -t 4.66429 -s 7 -d 0 -p ack -e 40 -c 0 -i 8254 -a 0 -x {10.0 9.0 4122 ------- null} h -t 4.66429 -s 7 -d 8 -p ack -e 40 -c 0 -i 8254 -a 0 -x {10.0 9.0 4122 ------- null} r -t 4.66442 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8253 -a 0 -x {9.0 10.0 4131 ------- null} + -t 4.66442 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8253 -a 0 -x {9.0 10.0 4131 ------- null} h -t 4.66442 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8253 -a 0 -x {9.0 10.0 4131 ------- null} r -t 4.66443 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8239 -a 0 -x {9.0 10.0 4124 ------- null} + -t 4.66443 -s 10 -d 7 -p ack -e 40 -c 0 -i 8258 -a 0 -x {10.0 9.0 4124 ------- null} - -t 4.66443 -s 10 -d 7 -p ack -e 40 -c 0 -i 8258 -a 0 -x {10.0 9.0 4124 ------- null} h -t 4.66443 -s 10 -d 7 -p ack -e 40 -c 0 -i 8258 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.66483 -s 0 -d 9 -p ack -e 40 -c 0 -i 8248 -a 0 -x {10.0 9.0 4119 ------- null} + -t 4.66483 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8259 -a 0 -x {9.0 10.0 4134 ------- null} - -t 4.66483 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8259 -a 0 -x {9.0 10.0 4134 ------- null} h -t 4.66483 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8259 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.6649 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8245 -a 0 -x {9.0 10.0 4127 ------- null} - -t 4.6649 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8245 -a 0 -x {9.0 10.0 4127 ------- null} h -t 4.6649 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8245 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.66507 -s 0 -d 9 -p ack -e 40 -c 0 -i 8252 -a 0 -x {10.0 9.0 4121 ------- null} - -t 4.66507 -s 0 -d 9 -p ack -e 40 -c 0 -i 8252 -a 0 -x {10.0 9.0 4121 ------- null} h -t 4.66507 -s 0 -d 9 -p ack -e 40 -c 0 -i 8252 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.66538 -s 10 -d 7 -p ack -e 40 -c 0 -i 8256 -a 0 -x {10.0 9.0 4123 ------- null} + -t 4.66538 -s 7 -d 0 -p ack -e 40 -c 0 -i 8256 -a 0 -x {10.0 9.0 4123 ------- null} h -t 4.66538 -s 7 -d 8 -p ack -e 40 -c 0 -i 8256 -a 0 -x {10.0 9.0 4123 ------- null} r -t 4.66552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8255 -a 0 -x {9.0 10.0 4132 ------- null} + -t 4.66552 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8255 -a 0 -x {9.0 10.0 4132 ------- null} h -t 4.66552 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8255 -a 0 -x {9.0 10.0 4132 ------- null} r -t 4.66552 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8241 -a 0 -x {9.0 10.0 4125 ------- null} + -t 4.66552 -s 10 -d 7 -p ack -e 40 -c 0 -i 8260 -a 0 -x {10.0 9.0 4125 ------- null} - -t 4.66552 -s 10 -d 7 -p ack -e 40 -c 0 -i 8260 -a 0 -x {10.0 9.0 4125 ------- null} h -t 4.66552 -s 10 -d 7 -p ack -e 40 -c 0 -i 8260 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.66598 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8247 -a 0 -x {9.0 10.0 4128 ------- null} - -t 4.66598 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8247 -a 0 -x {9.0 10.0 4128 ------- null} h -t 4.66598 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8247 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.66606 -s 0 -d 9 -p ack -e 40 -c 0 -i 8250 -a 0 -x {10.0 9.0 4120 ------- null} + -t 4.66606 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8261 -a 0 -x {9.0 10.0 4135 ------- null} - -t 4.66606 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8261 -a 0 -x {9.0 10.0 4135 ------- null} h -t 4.66606 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8261 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.66624 -s 0 -d 9 -p ack -e 40 -c 0 -i 8254 -a 0 -x {10.0 9.0 4122 ------- null} - -t 4.66624 -s 0 -d 9 -p ack -e 40 -c 0 -i 8254 -a 0 -x {10.0 9.0 4122 ------- null} h -t 4.66624 -s 0 -d 9 -p ack -e 40 -c 0 -i 8254 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.66646 -s 10 -d 7 -p ack -e 40 -c 0 -i 8258 -a 0 -x {10.0 9.0 4124 ------- null} + -t 4.66646 -s 7 -d 0 -p ack -e 40 -c 0 -i 8258 -a 0 -x {10.0 9.0 4124 ------- null} h -t 4.66646 -s 7 -d 8 -p ack -e 40 -c 0 -i 8258 -a 0 -x {10.0 9.0 4124 ------- null} r -t 4.66661 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8257 -a 0 -x {9.0 10.0 4133 ------- null} + -t 4.66661 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8257 -a 0 -x {9.0 10.0 4133 ------- null} h -t 4.66661 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8257 -a 0 -x {9.0 10.0 4133 ------- null} r -t 4.66661 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8243 -a 0 -x {9.0 10.0 4126 ------- null} + -t 4.66661 -s 10 -d 7 -p ack -e 40 -c 0 -i 8262 -a 0 -x {10.0 9.0 4126 ------- null} - -t 4.66661 -s 10 -d 7 -p ack -e 40 -c 0 -i 8262 -a 0 -x {10.0 9.0 4126 ------- null} h -t 4.66661 -s 10 -d 7 -p ack -e 40 -c 0 -i 8262 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.66707 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8249 -a 0 -x {9.0 10.0 4129 ------- null} - -t 4.66707 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8249 -a 0 -x {9.0 10.0 4129 ------- null} h -t 4.66707 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8249 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.6671 -s 0 -d 9 -p ack -e 40 -c 0 -i 8252 -a 0 -x {10.0 9.0 4121 ------- null} + -t 4.6671 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8263 -a 0 -x {9.0 10.0 4136 ------- null} - -t 4.6671 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8263 -a 0 -x {9.0 10.0 4136 ------- null} h -t 4.6671 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8263 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.66726 -s 0 -d 9 -p ack -e 40 -c 0 -i 8256 -a 0 -x {10.0 9.0 4123 ------- null} - -t 4.66726 -s 0 -d 9 -p ack -e 40 -c 0 -i 8256 -a 0 -x {10.0 9.0 4123 ------- null} h -t 4.66726 -s 0 -d 9 -p ack -e 40 -c 0 -i 8256 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.66755 -s 10 -d 7 -p ack -e 40 -c 0 -i 8260 -a 0 -x {10.0 9.0 4125 ------- null} + -t 4.66755 -s 7 -d 0 -p ack -e 40 -c 0 -i 8260 -a 0 -x {10.0 9.0 4125 ------- null} h -t 4.66755 -s 7 -d 8 -p ack -e 40 -c 0 -i 8260 -a 0 -x {10.0 9.0 4125 ------- null} r -t 4.66763 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8259 -a 0 -x {9.0 10.0 4134 ------- null} + -t 4.66763 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8259 -a 0 -x {9.0 10.0 4134 ------- null} h -t 4.66763 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8259 -a 0 -x {9.0 10.0 4134 ------- null} r -t 4.6677 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8245 -a 0 -x {9.0 10.0 4127 ------- null} + -t 4.6677 -s 10 -d 7 -p ack -e 40 -c 0 -i 8264 -a 0 -x {10.0 9.0 4127 ------- null} - -t 4.6677 -s 10 -d 7 -p ack -e 40 -c 0 -i 8264 -a 0 -x {10.0 9.0 4127 ------- null} h -t 4.6677 -s 10 -d 7 -p ack -e 40 -c 0 -i 8264 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.66816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8251 -a 0 -x {9.0 10.0 4130 ------- null} - -t 4.66816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8251 -a 0 -x {9.0 10.0 4130 ------- null} h -t 4.66816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8251 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.66827 -s 0 -d 9 -p ack -e 40 -c 0 -i 8254 -a 0 -x {10.0 9.0 4122 ------- null} + -t 4.66827 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8265 -a 0 -x {9.0 10.0 4137 ------- null} - -t 4.66827 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8265 -a 0 -x {9.0 10.0 4137 ------- null} h -t 4.66827 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8265 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.66834 -s 0 -d 9 -p ack -e 40 -c 0 -i 8258 -a 0 -x {10.0 9.0 4124 ------- null} - -t 4.66834 -s 0 -d 9 -p ack -e 40 -c 0 -i 8258 -a 0 -x {10.0 9.0 4124 ------- null} h -t 4.66834 -s 0 -d 9 -p ack -e 40 -c 0 -i 8258 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.66864 -s 10 -d 7 -p ack -e 40 -c 0 -i 8262 -a 0 -x {10.0 9.0 4126 ------- null} + -t 4.66864 -s 7 -d 0 -p ack -e 40 -c 0 -i 8262 -a 0 -x {10.0 9.0 4126 ------- null} h -t 4.66864 -s 7 -d 8 -p ack -e 40 -c 0 -i 8262 -a 0 -x {10.0 9.0 4126 ------- null} r -t 4.66878 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8247 -a 0 -x {9.0 10.0 4128 ------- null} + -t 4.66878 -s 10 -d 7 -p ack -e 40 -c 0 -i 8266 -a 0 -x {10.0 9.0 4128 ------- null} - -t 4.66878 -s 10 -d 7 -p ack -e 40 -c 0 -i 8266 -a 0 -x {10.0 9.0 4128 ------- null} h -t 4.66878 -s 10 -d 7 -p ack -e 40 -c 0 -i 8266 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.66886 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8261 -a 0 -x {9.0 10.0 4135 ------- null} + -t 4.66886 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8261 -a 0 -x {9.0 10.0 4135 ------- null} h -t 4.66886 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8261 -a 0 -x {9.0 10.0 4135 ------- null} + -t 4.66925 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8253 -a 0 -x {9.0 10.0 4131 ------- null} - -t 4.66925 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8253 -a 0 -x {9.0 10.0 4131 ------- null} h -t 4.66925 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8253 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.6693 -s 0 -d 9 -p ack -e 40 -c 0 -i 8256 -a 0 -x {10.0 9.0 4123 ------- null} + -t 4.6693 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8267 -a 0 -x {9.0 10.0 4138 ------- null} - -t 4.6693 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8267 -a 0 -x {9.0 10.0 4138 ------- null} h -t 4.6693 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8267 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.66947 -s 0 -d 9 -p ack -e 40 -c 0 -i 8260 -a 0 -x {10.0 9.0 4125 ------- null} - -t 4.66947 -s 0 -d 9 -p ack -e 40 -c 0 -i 8260 -a 0 -x {10.0 9.0 4125 ------- null} h -t 4.66947 -s 0 -d 9 -p ack -e 40 -c 0 -i 8260 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.66973 -s 10 -d 7 -p ack -e 40 -c 0 -i 8264 -a 0 -x {10.0 9.0 4127 ------- null} + -t 4.66973 -s 7 -d 0 -p ack -e 40 -c 0 -i 8264 -a 0 -x {10.0 9.0 4127 ------- null} h -t 4.66973 -s 7 -d 8 -p ack -e 40 -c 0 -i 8264 -a 0 -x {10.0 9.0 4127 ------- null} r -t 4.66987 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8249 -a 0 -x {9.0 10.0 4129 ------- null} + -t 4.66987 -s 10 -d 7 -p ack -e 40 -c 0 -i 8268 -a 0 -x {10.0 9.0 4129 ------- null} - -t 4.66987 -s 10 -d 7 -p ack -e 40 -c 0 -i 8268 -a 0 -x {10.0 9.0 4129 ------- null} h -t 4.66987 -s 10 -d 7 -p ack -e 40 -c 0 -i 8268 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.6699 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8263 -a 0 -x {9.0 10.0 4136 ------- null} + -t 4.6699 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8263 -a 0 -x {9.0 10.0 4136 ------- null} h -t 4.6699 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8263 -a 0 -x {9.0 10.0 4136 ------- null} + -t 4.67034 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8255 -a 0 -x {9.0 10.0 4132 ------- null} - -t 4.67034 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8255 -a 0 -x {9.0 10.0 4132 ------- null} h -t 4.67034 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8255 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.67037 -s 0 -d 9 -p ack -e 40 -c 0 -i 8258 -a 0 -x {10.0 9.0 4124 ------- null} + -t 4.67037 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8269 -a 0 -x {9.0 10.0 4139 ------- null} - -t 4.67037 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8269 -a 0 -x {9.0 10.0 4139 ------- null} h -t 4.67037 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8269 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.67046 -s 0 -d 9 -p ack -e 40 -c 0 -i 8262 -a 0 -x {10.0 9.0 4126 ------- null} - -t 4.67046 -s 0 -d 9 -p ack -e 40 -c 0 -i 8262 -a 0 -x {10.0 9.0 4126 ------- null} h -t 4.67046 -s 0 -d 9 -p ack -e 40 -c 0 -i 8262 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.67082 -s 10 -d 7 -p ack -e 40 -c 0 -i 8266 -a 0 -x {10.0 9.0 4128 ------- null} + -t 4.67082 -s 7 -d 0 -p ack -e 40 -c 0 -i 8266 -a 0 -x {10.0 9.0 4128 ------- null} h -t 4.67082 -s 7 -d 8 -p ack -e 40 -c 0 -i 8266 -a 0 -x {10.0 9.0 4128 ------- null} r -t 4.67096 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8251 -a 0 -x {9.0 10.0 4130 ------- null} + -t 4.67096 -s 10 -d 7 -p ack -e 40 -c 0 -i 8270 -a 0 -x {10.0 9.0 4130 ------- null} - -t 4.67096 -s 10 -d 7 -p ack -e 40 -c 0 -i 8270 -a 0 -x {10.0 9.0 4130 ------- null} h -t 4.67096 -s 10 -d 7 -p ack -e 40 -c 0 -i 8270 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.67107 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8265 -a 0 -x {9.0 10.0 4137 ------- null} + -t 4.67107 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8265 -a 0 -x {9.0 10.0 4137 ------- null} h -t 4.67107 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8265 -a 0 -x {9.0 10.0 4137 ------- null} + -t 4.67142 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8257 -a 0 -x {9.0 10.0 4133 ------- null} - -t 4.67142 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8257 -a 0 -x {9.0 10.0 4133 ------- null} h -t 4.67142 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8257 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.6715 -s 0 -d 9 -p ack -e 40 -c 0 -i 8260 -a 0 -x {10.0 9.0 4125 ------- null} + -t 4.6715 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8271 -a 0 -x {9.0 10.0 4140 ------- null} - -t 4.6715 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8271 -a 0 -x {9.0 10.0 4140 ------- null} h -t 4.6715 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8271 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.67152 -s 0 -d 9 -p ack -e 40 -c 0 -i 8264 -a 0 -x {10.0 9.0 4127 ------- null} - -t 4.67152 -s 0 -d 9 -p ack -e 40 -c 0 -i 8264 -a 0 -x {10.0 9.0 4127 ------- null} h -t 4.67152 -s 0 -d 9 -p ack -e 40 -c 0 -i 8264 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.6719 -s 10 -d 7 -p ack -e 40 -c 0 -i 8268 -a 0 -x {10.0 9.0 4129 ------- null} + -t 4.6719 -s 7 -d 0 -p ack -e 40 -c 0 -i 8268 -a 0 -x {10.0 9.0 4129 ------- null} h -t 4.6719 -s 7 -d 8 -p ack -e 40 -c 0 -i 8268 -a 0 -x {10.0 9.0 4129 ------- null} r -t 4.67205 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8253 -a 0 -x {9.0 10.0 4131 ------- null} + -t 4.67205 -s 10 -d 7 -p ack -e 40 -c 0 -i 8272 -a 0 -x {10.0 9.0 4131 ------- null} - -t 4.67205 -s 10 -d 7 -p ack -e 40 -c 0 -i 8272 -a 0 -x {10.0 9.0 4131 ------- null} h -t 4.67205 -s 10 -d 7 -p ack -e 40 -c 0 -i 8272 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.6721 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8267 -a 0 -x {9.0 10.0 4138 ------- null} + -t 4.6721 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8267 -a 0 -x {9.0 10.0 4138 ------- null} h -t 4.6721 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8267 -a 0 -x {9.0 10.0 4138 ------- null} r -t 4.6725 -s 0 -d 9 -p ack -e 40 -c 0 -i 8262 -a 0 -x {10.0 9.0 4126 ------- null} + -t 4.6725 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8273 -a 0 -x {9.0 10.0 4141 ------- null} - -t 4.6725 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8273 -a 0 -x {9.0 10.0 4141 ------- null} h -t 4.6725 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8273 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.67251 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8259 -a 0 -x {9.0 10.0 4134 ------- null} - -t 4.67251 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8259 -a 0 -x {9.0 10.0 4134 ------- null} h -t 4.67251 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8259 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.67282 -s 0 -d 9 -p ack -e 40 -c 0 -i 8266 -a 0 -x {10.0 9.0 4128 ------- null} - -t 4.67282 -s 0 -d 9 -p ack -e 40 -c 0 -i 8266 -a 0 -x {10.0 9.0 4128 ------- null} h -t 4.67282 -s 0 -d 9 -p ack -e 40 -c 0 -i 8266 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.67299 -s 10 -d 7 -p ack -e 40 -c 0 -i 8270 -a 0 -x {10.0 9.0 4130 ------- null} + -t 4.67299 -s 7 -d 0 -p ack -e 40 -c 0 -i 8270 -a 0 -x {10.0 9.0 4130 ------- null} h -t 4.67299 -s 7 -d 8 -p ack -e 40 -c 0 -i 8270 -a 0 -x {10.0 9.0 4130 ------- null} r -t 4.67314 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8255 -a 0 -x {9.0 10.0 4132 ------- null} + -t 4.67314 -s 10 -d 7 -p ack -e 40 -c 0 -i 8274 -a 0 -x {10.0 9.0 4132 ------- null} - -t 4.67314 -s 10 -d 7 -p ack -e 40 -c 0 -i 8274 -a 0 -x {10.0 9.0 4132 ------- null} h -t 4.67314 -s 10 -d 7 -p ack -e 40 -c 0 -i 8274 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.67317 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8269 -a 0 -x {9.0 10.0 4139 ------- null} + -t 4.67317 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8269 -a 0 -x {9.0 10.0 4139 ------- null} h -t 4.67317 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8269 -a 0 -x {9.0 10.0 4139 ------- null} r -t 4.67355 -s 0 -d 9 -p ack -e 40 -c 0 -i 8264 -a 0 -x {10.0 9.0 4127 ------- null} + -t 4.67355 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8275 -a 0 -x {9.0 10.0 4142 ------- null} - -t 4.67355 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8275 -a 0 -x {9.0 10.0 4142 ------- null} h -t 4.67355 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8275 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.67365 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8261 -a 0 -x {9.0 10.0 4135 ------- null} - -t 4.67365 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8261 -a 0 -x {9.0 10.0 4135 ------- null} h -t 4.67365 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8261 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.67387 -s 0 -d 9 -p ack -e 40 -c 0 -i 8268 -a 0 -x {10.0 9.0 4129 ------- null} - -t 4.67387 -s 0 -d 9 -p ack -e 40 -c 0 -i 8268 -a 0 -x {10.0 9.0 4129 ------- null} h -t 4.67387 -s 0 -d 9 -p ack -e 40 -c 0 -i 8268 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.67408 -s 10 -d 7 -p ack -e 40 -c 0 -i 8272 -a 0 -x {10.0 9.0 4131 ------- null} + -t 4.67408 -s 7 -d 0 -p ack -e 40 -c 0 -i 8272 -a 0 -x {10.0 9.0 4131 ------- null} h -t 4.67408 -s 7 -d 8 -p ack -e 40 -c 0 -i 8272 -a 0 -x {10.0 9.0 4131 ------- null} r -t 4.67422 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8257 -a 0 -x {9.0 10.0 4133 ------- null} + -t 4.67422 -s 10 -d 7 -p ack -e 40 -c 0 -i 8276 -a 0 -x {10.0 9.0 4133 ------- null} - -t 4.67422 -s 10 -d 7 -p ack -e 40 -c 0 -i 8276 -a 0 -x {10.0 9.0 4133 ------- null} h -t 4.67422 -s 10 -d 7 -p ack -e 40 -c 0 -i 8276 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.6743 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8271 -a 0 -x {9.0 10.0 4140 ------- null} + -t 4.6743 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8271 -a 0 -x {9.0 10.0 4140 ------- null} h -t 4.6743 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8271 -a 0 -x {9.0 10.0 4140 ------- null} + -t 4.67474 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8263 -a 0 -x {9.0 10.0 4136 ------- null} - -t 4.67474 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8263 -a 0 -x {9.0 10.0 4136 ------- null} h -t 4.67474 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8263 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.67485 -s 0 -d 9 -p ack -e 40 -c 0 -i 8266 -a 0 -x {10.0 9.0 4128 ------- null} + -t 4.67485 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8277 -a 0 -x {9.0 10.0 4143 ------- null} - -t 4.67485 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8277 -a 0 -x {9.0 10.0 4143 ------- null} h -t 4.67485 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8277 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.67499 -s 0 -d 9 -p ack -e 40 -c 0 -i 8270 -a 0 -x {10.0 9.0 4130 ------- null} - -t 4.67499 -s 0 -d 9 -p ack -e 40 -c 0 -i 8270 -a 0 -x {10.0 9.0 4130 ------- null} h -t 4.67499 -s 0 -d 9 -p ack -e 40 -c 0 -i 8270 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.67517 -s 10 -d 7 -p ack -e 40 -c 0 -i 8274 -a 0 -x {10.0 9.0 4132 ------- null} + -t 4.67517 -s 7 -d 0 -p ack -e 40 -c 0 -i 8274 -a 0 -x {10.0 9.0 4132 ------- null} h -t 4.67517 -s 7 -d 8 -p ack -e 40 -c 0 -i 8274 -a 0 -x {10.0 9.0 4132 ------- null} r -t 4.6753 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8273 -a 0 -x {9.0 10.0 4141 ------- null} + -t 4.6753 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8273 -a 0 -x {9.0 10.0 4141 ------- null} h -t 4.6753 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8273 -a 0 -x {9.0 10.0 4141 ------- null} r -t 4.67531 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8259 -a 0 -x {9.0 10.0 4134 ------- null} + -t 4.67531 -s 10 -d 7 -p ack -e 40 -c 0 -i 8278 -a 0 -x {10.0 9.0 4134 ------- null} - -t 4.67531 -s 10 -d 7 -p ack -e 40 -c 0 -i 8278 -a 0 -x {10.0 9.0 4134 ------- null} h -t 4.67531 -s 10 -d 7 -p ack -e 40 -c 0 -i 8278 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.67582 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8265 -a 0 -x {9.0 10.0 4137 ------- null} - -t 4.67582 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8265 -a 0 -x {9.0 10.0 4137 ------- null} h -t 4.67582 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8265 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.6759 -s 0 -d 9 -p ack -e 40 -c 0 -i 8268 -a 0 -x {10.0 9.0 4129 ------- null} + -t 4.6759 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8279 -a 0 -x {9.0 10.0 4144 ------- null} - -t 4.6759 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8279 -a 0 -x {9.0 10.0 4144 ------- null} h -t 4.6759 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8279 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.67597 -s 0 -d 9 -p ack -e 40 -c 0 -i 8272 -a 0 -x {10.0 9.0 4131 ------- null} - -t 4.67597 -s 0 -d 9 -p ack -e 40 -c 0 -i 8272 -a 0 -x {10.0 9.0 4131 ------- null} h -t 4.67597 -s 0 -d 9 -p ack -e 40 -c 0 -i 8272 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.67626 -s 10 -d 7 -p ack -e 40 -c 0 -i 8276 -a 0 -x {10.0 9.0 4133 ------- null} + -t 4.67626 -s 7 -d 0 -p ack -e 40 -c 0 -i 8276 -a 0 -x {10.0 9.0 4133 ------- null} h -t 4.67626 -s 7 -d 8 -p ack -e 40 -c 0 -i 8276 -a 0 -x {10.0 9.0 4133 ------- null} r -t 4.67635 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8275 -a 0 -x {9.0 10.0 4142 ------- null} + -t 4.67635 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8275 -a 0 -x {9.0 10.0 4142 ------- null} h -t 4.67635 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8275 -a 0 -x {9.0 10.0 4142 ------- null} r -t 4.67645 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8261 -a 0 -x {9.0 10.0 4135 ------- null} + -t 4.67645 -s 10 -d 7 -p ack -e 40 -c 0 -i 8280 -a 0 -x {10.0 9.0 4135 ------- null} - -t 4.67645 -s 10 -d 7 -p ack -e 40 -c 0 -i 8280 -a 0 -x {10.0 9.0 4135 ------- null} h -t 4.67645 -s 10 -d 7 -p ack -e 40 -c 0 -i 8280 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.67691 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8267 -a 0 -x {9.0 10.0 4138 ------- null} - -t 4.67691 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8267 -a 0 -x {9.0 10.0 4138 ------- null} h -t 4.67691 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8267 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.67698 -s 0 -d 9 -p ack -e 40 -c 0 -i 8274 -a 0 -x {10.0 9.0 4132 ------- null} - -t 4.67698 -s 0 -d 9 -p ack -e 40 -c 0 -i 8274 -a 0 -x {10.0 9.0 4132 ------- null} h -t 4.67698 -s 0 -d 9 -p ack -e 40 -c 0 -i 8274 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.67702 -s 0 -d 9 -p ack -e 40 -c 0 -i 8270 -a 0 -x {10.0 9.0 4130 ------- null} + -t 4.67702 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8281 -a 0 -x {9.0 10.0 4145 ------- null} - -t 4.67702 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8281 -a 0 -x {9.0 10.0 4145 ------- null} h -t 4.67702 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8281 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.67734 -s 10 -d 7 -p ack -e 40 -c 0 -i 8278 -a 0 -x {10.0 9.0 4134 ------- null} + -t 4.67734 -s 7 -d 0 -p ack -e 40 -c 0 -i 8278 -a 0 -x {10.0 9.0 4134 ------- null} h -t 4.67734 -s 7 -d 8 -p ack -e 40 -c 0 -i 8278 -a 0 -x {10.0 9.0 4134 ------- null} r -t 4.67754 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8263 -a 0 -x {9.0 10.0 4136 ------- null} + -t 4.67754 -s 10 -d 7 -p ack -e 40 -c 0 -i 8282 -a 0 -x {10.0 9.0 4136 ------- null} - -t 4.67754 -s 10 -d 7 -p ack -e 40 -c 0 -i 8282 -a 0 -x {10.0 9.0 4136 ------- null} h -t 4.67754 -s 10 -d 7 -p ack -e 40 -c 0 -i 8282 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.67765 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8277 -a 0 -x {9.0 10.0 4143 ------- null} + -t 4.67765 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8277 -a 0 -x {9.0 10.0 4143 ------- null} h -t 4.67765 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8277 -a 0 -x {9.0 10.0 4143 ------- null} r -t 4.678 -s 0 -d 9 -p ack -e 40 -c 0 -i 8272 -a 0 -x {10.0 9.0 4131 ------- null} + -t 4.678 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8283 -a 0 -x {9.0 10.0 4146 ------- null} - -t 4.678 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8283 -a 0 -x {9.0 10.0 4146 ------- null} h -t 4.678 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8283 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.678 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8269 -a 0 -x {9.0 10.0 4139 ------- null} - -t 4.678 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8269 -a 0 -x {9.0 10.0 4139 ------- null} h -t 4.678 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8269 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.67822 -s 0 -d 9 -p ack -e 40 -c 0 -i 8276 -a 0 -x {10.0 9.0 4133 ------- null} - -t 4.67822 -s 0 -d 9 -p ack -e 40 -c 0 -i 8276 -a 0 -x {10.0 9.0 4133 ------- null} h -t 4.67822 -s 0 -d 9 -p ack -e 40 -c 0 -i 8276 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.67848 -s 10 -d 7 -p ack -e 40 -c 0 -i 8280 -a 0 -x {10.0 9.0 4135 ------- null} + -t 4.67848 -s 7 -d 0 -p ack -e 40 -c 0 -i 8280 -a 0 -x {10.0 9.0 4135 ------- null} h -t 4.67848 -s 7 -d 8 -p ack -e 40 -c 0 -i 8280 -a 0 -x {10.0 9.0 4135 ------- null} r -t 4.67862 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8265 -a 0 -x {9.0 10.0 4137 ------- null} + -t 4.67862 -s 10 -d 7 -p ack -e 40 -c 0 -i 8284 -a 0 -x {10.0 9.0 4137 ------- null} - -t 4.67862 -s 10 -d 7 -p ack -e 40 -c 0 -i 8284 -a 0 -x {10.0 9.0 4137 ------- null} h -t 4.67862 -s 10 -d 7 -p ack -e 40 -c 0 -i 8284 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.6787 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8279 -a 0 -x {9.0 10.0 4144 ------- null} + -t 4.6787 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8279 -a 0 -x {9.0 10.0 4144 ------- null} h -t 4.6787 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8279 -a 0 -x {9.0 10.0 4144 ------- null} r -t 4.67901 -s 0 -d 9 -p ack -e 40 -c 0 -i 8274 -a 0 -x {10.0 9.0 4132 ------- null} + -t 4.67901 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8285 -a 0 -x {9.0 10.0 4147 ------- null} - -t 4.67901 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8285 -a 0 -x {9.0 10.0 4147 ------- null} h -t 4.67901 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8285 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.67909 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8271 -a 0 -x {9.0 10.0 4140 ------- null} - -t 4.67909 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8271 -a 0 -x {9.0 10.0 4140 ------- null} h -t 4.67909 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8271 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.67933 -s 0 -d 9 -p ack -e 40 -c 0 -i 8278 -a 0 -x {10.0 9.0 4134 ------- null} - -t 4.67933 -s 0 -d 9 -p ack -e 40 -c 0 -i 8278 -a 0 -x {10.0 9.0 4134 ------- null} h -t 4.67933 -s 0 -d 9 -p ack -e 40 -c 0 -i 8278 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.67957 -s 10 -d 7 -p ack -e 40 -c 0 -i 8282 -a 0 -x {10.0 9.0 4136 ------- null} + -t 4.67957 -s 7 -d 0 -p ack -e 40 -c 0 -i 8282 -a 0 -x {10.0 9.0 4136 ------- null} h -t 4.67957 -s 7 -d 8 -p ack -e 40 -c 0 -i 8282 -a 0 -x {10.0 9.0 4136 ------- null} r -t 4.67971 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8267 -a 0 -x {9.0 10.0 4138 ------- null} + -t 4.67971 -s 10 -d 7 -p ack -e 40 -c 0 -i 8286 -a 0 -x {10.0 9.0 4138 ------- null} - -t 4.67971 -s 10 -d 7 -p ack -e 40 -c 0 -i 8286 -a 0 -x {10.0 9.0 4138 ------- null} h -t 4.67971 -s 10 -d 7 -p ack -e 40 -c 0 -i 8286 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.67982 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8281 -a 0 -x {9.0 10.0 4145 ------- null} + -t 4.67982 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8281 -a 0 -x {9.0 10.0 4145 ------- null} h -t 4.67982 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8281 -a 0 -x {9.0 10.0 4145 ------- null} + -t 4.68018 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8273 -a 0 -x {9.0 10.0 4141 ------- null} - -t 4.68018 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8273 -a 0 -x {9.0 10.0 4141 ------- null} h -t 4.68018 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8273 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.68026 -s 0 -d 9 -p ack -e 40 -c 0 -i 8276 -a 0 -x {10.0 9.0 4133 ------- null} + -t 4.68026 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8287 -a 0 -x {9.0 10.0 4148 ------- null} - -t 4.68026 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8287 -a 0 -x {9.0 10.0 4148 ------- null} h -t 4.68026 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8287 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.68038 -s 0 -d 9 -p ack -e 40 -c 0 -i 8280 -a 0 -x {10.0 9.0 4135 ------- null} - -t 4.68038 -s 0 -d 9 -p ack -e 40 -c 0 -i 8280 -a 0 -x {10.0 9.0 4135 ------- null} h -t 4.68038 -s 0 -d 9 -p ack -e 40 -c 0 -i 8280 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.68066 -s 10 -d 7 -p ack -e 40 -c 0 -i 8284 -a 0 -x {10.0 9.0 4137 ------- null} + -t 4.68066 -s 7 -d 0 -p ack -e 40 -c 0 -i 8284 -a 0 -x {10.0 9.0 4137 ------- null} h -t 4.68066 -s 7 -d 8 -p ack -e 40 -c 0 -i 8284 -a 0 -x {10.0 9.0 4137 ------- null} r -t 4.6808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8283 -a 0 -x {9.0 10.0 4146 ------- null} + -t 4.6808 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8283 -a 0 -x {9.0 10.0 4146 ------- null} h -t 4.6808 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8283 -a 0 -x {9.0 10.0 4146 ------- null} r -t 4.6808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8269 -a 0 -x {9.0 10.0 4139 ------- null} + -t 4.6808 -s 10 -d 7 -p ack -e 40 -c 0 -i 8288 -a 0 -x {10.0 9.0 4139 ------- null} - -t 4.6808 -s 10 -d 7 -p ack -e 40 -c 0 -i 8288 -a 0 -x {10.0 9.0 4139 ------- null} h -t 4.6808 -s 10 -d 7 -p ack -e 40 -c 0 -i 8288 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.68126 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8275 -a 0 -x {9.0 10.0 4142 ------- null} - -t 4.68126 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8275 -a 0 -x {9.0 10.0 4142 ------- null} h -t 4.68126 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8275 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.68136 -s 0 -d 9 -p ack -e 40 -c 0 -i 8278 -a 0 -x {10.0 9.0 4134 ------- null} + -t 4.68136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8289 -a 0 -x {9.0 10.0 4149 ------- null} - -t 4.68136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8289 -a 0 -x {9.0 10.0 4149 ------- null} h -t 4.68136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8289 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.6815 -s 0 -d 9 -p ack -e 40 -c 0 -i 8282 -a 0 -x {10.0 9.0 4136 ------- null} - -t 4.6815 -s 0 -d 9 -p ack -e 40 -c 0 -i 8282 -a 0 -x {10.0 9.0 4136 ------- null} h -t 4.6815 -s 0 -d 9 -p ack -e 40 -c 0 -i 8282 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.68174 -s 10 -d 7 -p ack -e 40 -c 0 -i 8286 -a 0 -x {10.0 9.0 4138 ------- null} + -t 4.68174 -s 7 -d 0 -p ack -e 40 -c 0 -i 8286 -a 0 -x {10.0 9.0 4138 ------- null} h -t 4.68174 -s 7 -d 8 -p ack -e 40 -c 0 -i 8286 -a 0 -x {10.0 9.0 4138 ------- null} r -t 4.68181 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8285 -a 0 -x {9.0 10.0 4147 ------- null} + -t 4.68181 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8285 -a 0 -x {9.0 10.0 4147 ------- null} h -t 4.68181 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8285 -a 0 -x {9.0 10.0 4147 ------- null} r -t 4.68189 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8271 -a 0 -x {9.0 10.0 4140 ------- null} + -t 4.68189 -s 10 -d 7 -p ack -e 40 -c 0 -i 8290 -a 0 -x {10.0 9.0 4140 ------- null} - -t 4.68189 -s 10 -d 7 -p ack -e 40 -c 0 -i 8290 -a 0 -x {10.0 9.0 4140 ------- null} h -t 4.68189 -s 10 -d 7 -p ack -e 40 -c 0 -i 8290 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.68235 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8277 -a 0 -x {9.0 10.0 4143 ------- null} - -t 4.68235 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8277 -a 0 -x {9.0 10.0 4143 ------- null} h -t 4.68235 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8277 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.68242 -s 0 -d 9 -p ack -e 40 -c 0 -i 8280 -a 0 -x {10.0 9.0 4135 ------- null} + -t 4.68242 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8291 -a 0 -x {9.0 10.0 4150 ------- null} - -t 4.68242 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8291 -a 0 -x {9.0 10.0 4150 ------- null} h -t 4.68242 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8291 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.68259 -s 0 -d 9 -p ack -e 40 -c 0 -i 8284 -a 0 -x {10.0 9.0 4137 ------- null} - -t 4.68259 -s 0 -d 9 -p ack -e 40 -c 0 -i 8284 -a 0 -x {10.0 9.0 4137 ------- null} h -t 4.68259 -s 0 -d 9 -p ack -e 40 -c 0 -i 8284 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.68283 -s 10 -d 7 -p ack -e 40 -c 0 -i 8288 -a 0 -x {10.0 9.0 4139 ------- null} + -t 4.68283 -s 7 -d 0 -p ack -e 40 -c 0 -i 8288 -a 0 -x {10.0 9.0 4139 ------- null} h -t 4.68283 -s 7 -d 8 -p ack -e 40 -c 0 -i 8288 -a 0 -x {10.0 9.0 4139 ------- null} r -t 4.68298 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8273 -a 0 -x {9.0 10.0 4141 ------- null} + -t 4.68298 -s 10 -d 7 -p ack -e 40 -c 0 -i 8292 -a 0 -x {10.0 9.0 4141 ------- null} - -t 4.68298 -s 10 -d 7 -p ack -e 40 -c 0 -i 8292 -a 0 -x {10.0 9.0 4141 ------- null} h -t 4.68298 -s 10 -d 7 -p ack -e 40 -c 0 -i 8292 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.68306 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8287 -a 0 -x {9.0 10.0 4148 ------- null} + -t 4.68306 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8287 -a 0 -x {9.0 10.0 4148 ------- null} h -t 4.68306 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8287 -a 0 -x {9.0 10.0 4148 ------- null} + -t 4.68344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8279 -a 0 -x {9.0 10.0 4144 ------- null} - -t 4.68344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8279 -a 0 -x {9.0 10.0 4144 ------- null} h -t 4.68344 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8279 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.68354 -s 0 -d 9 -p ack -e 40 -c 0 -i 8282 -a 0 -x {10.0 9.0 4136 ------- null} + -t 4.68354 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8293 -a 0 -x {9.0 10.0 4151 ------- null} - -t 4.68354 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8293 -a 0 -x {9.0 10.0 4151 ------- null} h -t 4.68354 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8293 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.68365 -s 0 -d 9 -p ack -e 40 -c 0 -i 8286 -a 0 -x {10.0 9.0 4138 ------- null} - -t 4.68365 -s 0 -d 9 -p ack -e 40 -c 0 -i 8286 -a 0 -x {10.0 9.0 4138 ------- null} h -t 4.68365 -s 0 -d 9 -p ack -e 40 -c 0 -i 8286 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.68392 -s 10 -d 7 -p ack -e 40 -c 0 -i 8290 -a 0 -x {10.0 9.0 4140 ------- null} + -t 4.68392 -s 7 -d 0 -p ack -e 40 -c 0 -i 8290 -a 0 -x {10.0 9.0 4140 ------- null} h -t 4.68392 -s 7 -d 8 -p ack -e 40 -c 0 -i 8290 -a 0 -x {10.0 9.0 4140 ------- null} r -t 4.68406 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8275 -a 0 -x {9.0 10.0 4142 ------- null} + -t 4.68406 -s 10 -d 7 -p ack -e 40 -c 0 -i 8294 -a 0 -x {10.0 9.0 4142 ------- null} - -t 4.68406 -s 10 -d 7 -p ack -e 40 -c 0 -i 8294 -a 0 -x {10.0 9.0 4142 ------- null} h -t 4.68406 -s 10 -d 7 -p ack -e 40 -c 0 -i 8294 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.68416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8289 -a 0 -x {9.0 10.0 4149 ------- null} + -t 4.68416 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8289 -a 0 -x {9.0 10.0 4149 ------- null} h -t 4.68416 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8289 -a 0 -x {9.0 10.0 4149 ------- null} + -t 4.68453 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8281 -a 0 -x {9.0 10.0 4145 ------- null} - -t 4.68453 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8281 -a 0 -x {9.0 10.0 4145 ------- null} h -t 4.68453 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8281 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.68459 -s 0 -d 9 -p ack -e 40 -c 0 -i 8288 -a 0 -x {10.0 9.0 4139 ------- null} - -t 4.68459 -s 0 -d 9 -p ack -e 40 -c 0 -i 8288 -a 0 -x {10.0 9.0 4139 ------- null} h -t 4.68459 -s 0 -d 9 -p ack -e 40 -c 0 -i 8288 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.68462 -s 0 -d 9 -p ack -e 40 -c 0 -i 8284 -a 0 -x {10.0 9.0 4137 ------- null} + -t 4.68462 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8295 -a 0 -x {9.0 10.0 4152 ------- null} - -t 4.68462 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8295 -a 0 -x {9.0 10.0 4152 ------- null} h -t 4.68462 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8295 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.68501 -s 10 -d 7 -p ack -e 40 -c 0 -i 8292 -a 0 -x {10.0 9.0 4141 ------- null} + -t 4.68501 -s 7 -d 0 -p ack -e 40 -c 0 -i 8292 -a 0 -x {10.0 9.0 4141 ------- null} h -t 4.68501 -s 7 -d 8 -p ack -e 40 -c 0 -i 8292 -a 0 -x {10.0 9.0 4141 ------- null} r -t 4.68515 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8277 -a 0 -x {9.0 10.0 4143 ------- null} + -t 4.68515 -s 10 -d 7 -p ack -e 40 -c 0 -i 8296 -a 0 -x {10.0 9.0 4143 ------- null} - -t 4.68515 -s 10 -d 7 -p ack -e 40 -c 0 -i 8296 -a 0 -x {10.0 9.0 4143 ------- null} h -t 4.68515 -s 10 -d 7 -p ack -e 40 -c 0 -i 8296 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.68522 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8291 -a 0 -x {9.0 10.0 4150 ------- null} + -t 4.68522 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8291 -a 0 -x {9.0 10.0 4150 ------- null} h -t 4.68522 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8291 -a 0 -x {9.0 10.0 4150 ------- null} + -t 4.68562 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8283 -a 0 -x {9.0 10.0 4146 ------- null} - -t 4.68562 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8283 -a 0 -x {9.0 10.0 4146 ------- null} h -t 4.68562 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8283 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.68568 -s 0 -d 9 -p ack -e 40 -c 0 -i 8286 -a 0 -x {10.0 9.0 4138 ------- null} + -t 4.68568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8297 -a 0 -x {9.0 10.0 4153 ------- null} - -t 4.68568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8297 -a 0 -x {9.0 10.0 4153 ------- null} h -t 4.68568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8297 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.68586 -s 0 -d 9 -p ack -e 40 -c 0 -i 8290 -a 0 -x {10.0 9.0 4140 ------- null} - -t 4.68586 -s 0 -d 9 -p ack -e 40 -c 0 -i 8290 -a 0 -x {10.0 9.0 4140 ------- null} h -t 4.68586 -s 0 -d 9 -p ack -e 40 -c 0 -i 8290 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.6861 -s 10 -d 7 -p ack -e 40 -c 0 -i 8294 -a 0 -x {10.0 9.0 4142 ------- null} + -t 4.6861 -s 7 -d 0 -p ack -e 40 -c 0 -i 8294 -a 0 -x {10.0 9.0 4142 ------- null} h -t 4.6861 -s 7 -d 8 -p ack -e 40 -c 0 -i 8294 -a 0 -x {10.0 9.0 4142 ------- null} r -t 4.68624 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8279 -a 0 -x {9.0 10.0 4144 ------- null} + -t 4.68624 -s 10 -d 7 -p ack -e 40 -c 0 -i 8298 -a 0 -x {10.0 9.0 4144 ------- null} - -t 4.68624 -s 10 -d 7 -p ack -e 40 -c 0 -i 8298 -a 0 -x {10.0 9.0 4144 ------- null} h -t 4.68624 -s 10 -d 7 -p ack -e 40 -c 0 -i 8298 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.68634 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8293 -a 0 -x {9.0 10.0 4151 ------- null} + -t 4.68634 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8293 -a 0 -x {9.0 10.0 4151 ------- null} h -t 4.68634 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8293 -a 0 -x {9.0 10.0 4151 ------- null} r -t 4.68662 -s 0 -d 9 -p ack -e 40 -c 0 -i 8288 -a 0 -x {10.0 9.0 4139 ------- null} + -t 4.68662 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8299 -a 0 -x {9.0 10.0 4154 ------- null} - -t 4.68662 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8299 -a 0 -x {9.0 10.0 4154 ------- null} h -t 4.68662 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8299 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.6867 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8285 -a 0 -x {9.0 10.0 4147 ------- null} - -t 4.6867 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8285 -a 0 -x {9.0 10.0 4147 ------- null} h -t 4.6867 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8285 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.68685 -s 0 -d 9 -p ack -e 40 -c 0 -i 8292 -a 0 -x {10.0 9.0 4141 ------- null} - -t 4.68685 -s 0 -d 9 -p ack -e 40 -c 0 -i 8292 -a 0 -x {10.0 9.0 4141 ------- null} h -t 4.68685 -s 0 -d 9 -p ack -e 40 -c 0 -i 8292 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.68718 -s 10 -d 7 -p ack -e 40 -c 0 -i 8296 -a 0 -x {10.0 9.0 4143 ------- null} + -t 4.68718 -s 7 -d 0 -p ack -e 40 -c 0 -i 8296 -a 0 -x {10.0 9.0 4143 ------- null} h -t 4.68718 -s 7 -d 8 -p ack -e 40 -c 0 -i 8296 -a 0 -x {10.0 9.0 4143 ------- null} r -t 4.68733 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8281 -a 0 -x {9.0 10.0 4145 ------- null} + -t 4.68733 -s 10 -d 7 -p ack -e 40 -c 0 -i 8300 -a 0 -x {10.0 9.0 4145 ------- null} - -t 4.68733 -s 10 -d 7 -p ack -e 40 -c 0 -i 8300 -a 0 -x {10.0 9.0 4145 ------- null} h -t 4.68733 -s 10 -d 7 -p ack -e 40 -c 0 -i 8300 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.68742 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8295 -a 0 -x {9.0 10.0 4152 ------- null} + -t 4.68742 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8295 -a 0 -x {9.0 10.0 4152 ------- null} h -t 4.68742 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8295 -a 0 -x {9.0 10.0 4152 ------- null} + -t 4.68779 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8287 -a 0 -x {9.0 10.0 4148 ------- null} - -t 4.68779 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8287 -a 0 -x {9.0 10.0 4148 ------- null} h -t 4.68779 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8287 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.68789 -s 0 -d 9 -p ack -e 40 -c 0 -i 8290 -a 0 -x {10.0 9.0 4140 ------- null} + -t 4.68789 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8301 -a 0 -x {9.0 10.0 4155 ------- null} - -t 4.68789 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8301 -a 0 -x {9.0 10.0 4155 ------- null} h -t 4.68789 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8301 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.68794 -s 0 -d 9 -p ack -e 40 -c 0 -i 8294 -a 0 -x {10.0 9.0 4142 ------- null} - -t 4.68794 -s 0 -d 9 -p ack -e 40 -c 0 -i 8294 -a 0 -x {10.0 9.0 4142 ------- null} h -t 4.68794 -s 0 -d 9 -p ack -e 40 -c 0 -i 8294 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.68827 -s 10 -d 7 -p ack -e 40 -c 0 -i 8298 -a 0 -x {10.0 9.0 4144 ------- null} + -t 4.68827 -s 7 -d 0 -p ack -e 40 -c 0 -i 8298 -a 0 -x {10.0 9.0 4144 ------- null} h -t 4.68827 -s 7 -d 8 -p ack -e 40 -c 0 -i 8298 -a 0 -x {10.0 9.0 4144 ------- null} r -t 4.68842 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8283 -a 0 -x {9.0 10.0 4146 ------- null} + -t 4.68842 -s 10 -d 7 -p ack -e 40 -c 0 -i 8302 -a 0 -x {10.0 9.0 4146 ------- null} - -t 4.68842 -s 10 -d 7 -p ack -e 40 -c 0 -i 8302 -a 0 -x {10.0 9.0 4146 ------- null} h -t 4.68842 -s 10 -d 7 -p ack -e 40 -c 0 -i 8302 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.68848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8297 -a 0 -x {9.0 10.0 4153 ------- null} + -t 4.68848 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8297 -a 0 -x {9.0 10.0 4153 ------- null} h -t 4.68848 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8297 -a 0 -x {9.0 10.0 4153 ------- null} r -t 4.68888 -s 0 -d 9 -p ack -e 40 -c 0 -i 8292 -a 0 -x {10.0 9.0 4141 ------- null} + -t 4.68888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8303 -a 0 -x {9.0 10.0 4156 ------- null} - -t 4.68888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8303 -a 0 -x {9.0 10.0 4156 ------- null} h -t 4.68888 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8303 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.68888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8289 -a 0 -x {9.0 10.0 4149 ------- null} - -t 4.68888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8289 -a 0 -x {9.0 10.0 4149 ------- null} h -t 4.68888 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8289 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.68914 -s 0 -d 9 -p ack -e 40 -c 0 -i 8296 -a 0 -x {10.0 9.0 4143 ------- null} - -t 4.68914 -s 0 -d 9 -p ack -e 40 -c 0 -i 8296 -a 0 -x {10.0 9.0 4143 ------- null} h -t 4.68914 -s 0 -d 9 -p ack -e 40 -c 0 -i 8296 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.68936 -s 10 -d 7 -p ack -e 40 -c 0 -i 8300 -a 0 -x {10.0 9.0 4145 ------- null} + -t 4.68936 -s 7 -d 0 -p ack -e 40 -c 0 -i 8300 -a 0 -x {10.0 9.0 4145 ------- null} h -t 4.68936 -s 7 -d 8 -p ack -e 40 -c 0 -i 8300 -a 0 -x {10.0 9.0 4145 ------- null} r -t 4.68942 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8299 -a 0 -x {9.0 10.0 4154 ------- null} + -t 4.68942 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8299 -a 0 -x {9.0 10.0 4154 ------- null} h -t 4.68942 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8299 -a 0 -x {9.0 10.0 4154 ------- null} r -t 4.6895 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8285 -a 0 -x {9.0 10.0 4147 ------- null} + -t 4.6895 -s 10 -d 7 -p ack -e 40 -c 0 -i 8304 -a 0 -x {10.0 9.0 4147 ------- null} - -t 4.6895 -s 10 -d 7 -p ack -e 40 -c 0 -i 8304 -a 0 -x {10.0 9.0 4147 ------- null} h -t 4.6895 -s 10 -d 7 -p ack -e 40 -c 0 -i 8304 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.68997 -s 0 -d 9 -p ack -e 40 -c 0 -i 8294 -a 0 -x {10.0 9.0 4142 ------- null} + -t 4.68997 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8305 -a 0 -x {9.0 10.0 4157 ------- null} - -t 4.68997 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8305 -a 0 -x {9.0 10.0 4157 ------- null} h -t 4.68997 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8305 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.68997 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8291 -a 0 -x {9.0 10.0 4150 ------- null} - -t 4.68997 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8291 -a 0 -x {9.0 10.0 4150 ------- null} h -t 4.68997 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8291 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.69019 -s 0 -d 9 -p ack -e 40 -c 0 -i 8298 -a 0 -x {10.0 9.0 4144 ------- null} - -t 4.69019 -s 0 -d 9 -p ack -e 40 -c 0 -i 8298 -a 0 -x {10.0 9.0 4144 ------- null} h -t 4.69019 -s 0 -d 9 -p ack -e 40 -c 0 -i 8298 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.69045 -s 10 -d 7 -p ack -e 40 -c 0 -i 8302 -a 0 -x {10.0 9.0 4146 ------- null} + -t 4.69045 -s 7 -d 0 -p ack -e 40 -c 0 -i 8302 -a 0 -x {10.0 9.0 4146 ------- null} h -t 4.69045 -s 7 -d 8 -p ack -e 40 -c 0 -i 8302 -a 0 -x {10.0 9.0 4146 ------- null} r -t 4.69059 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8287 -a 0 -x {9.0 10.0 4148 ------- null} + -t 4.69059 -s 10 -d 7 -p ack -e 40 -c 0 -i 8306 -a 0 -x {10.0 9.0 4148 ------- null} - -t 4.69059 -s 10 -d 7 -p ack -e 40 -c 0 -i 8306 -a 0 -x {10.0 9.0 4148 ------- null} h -t 4.69059 -s 10 -d 7 -p ack -e 40 -c 0 -i 8306 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.69069 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8301 -a 0 -x {9.0 10.0 4155 ------- null} + -t 4.69069 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8301 -a 0 -x {9.0 10.0 4155 ------- null} h -t 4.69069 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8301 -a 0 -x {9.0 10.0 4155 ------- null} + -t 4.69106 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8293 -a 0 -x {9.0 10.0 4151 ------- null} - -t 4.69106 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8293 -a 0 -x {9.0 10.0 4151 ------- null} h -t 4.69106 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8293 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.69117 -s 0 -d 9 -p ack -e 40 -c 0 -i 8296 -a 0 -x {10.0 9.0 4143 ------- null} + -t 4.69117 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8307 -a 0 -x {9.0 10.0 4158 ------- null} - -t 4.69117 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8307 -a 0 -x {9.0 10.0 4158 ------- null} h -t 4.69117 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8307 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.69118 -s 0 -d 9 -p ack -e 40 -c 0 -i 8300 -a 0 -x {10.0 9.0 4145 ------- null} - -t 4.69118 -s 0 -d 9 -p ack -e 40 -c 0 -i 8300 -a 0 -x {10.0 9.0 4145 ------- null} h -t 4.69118 -s 0 -d 9 -p ack -e 40 -c 0 -i 8300 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.69154 -s 10 -d 7 -p ack -e 40 -c 0 -i 8304 -a 0 -x {10.0 9.0 4147 ------- null} + -t 4.69154 -s 7 -d 0 -p ack -e 40 -c 0 -i 8304 -a 0 -x {10.0 9.0 4147 ------- null} h -t 4.69154 -s 7 -d 8 -p ack -e 40 -c 0 -i 8304 -a 0 -x {10.0 9.0 4147 ------- null} r -t 4.69168 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8303 -a 0 -x {9.0 10.0 4156 ------- null} + -t 4.69168 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8303 -a 0 -x {9.0 10.0 4156 ------- null} h -t 4.69168 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8303 -a 0 -x {9.0 10.0 4156 ------- null} r -t 4.69168 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8289 -a 0 -x {9.0 10.0 4149 ------- null} + -t 4.69168 -s 10 -d 7 -p ack -e 40 -c 0 -i 8308 -a 0 -x {10.0 9.0 4149 ------- null} - -t 4.69168 -s 10 -d 7 -p ack -e 40 -c 0 -i 8308 -a 0 -x {10.0 9.0 4149 ------- null} h -t 4.69168 -s 10 -d 7 -p ack -e 40 -c 0 -i 8308 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.69214 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8295 -a 0 -x {9.0 10.0 4152 ------- null} - -t 4.69214 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8295 -a 0 -x {9.0 10.0 4152 ------- null} h -t 4.69214 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8295 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.69222 -s 0 -d 9 -p ack -e 40 -c 0 -i 8298 -a 0 -x {10.0 9.0 4144 ------- null} + -t 4.69222 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8309 -a 0 -x {9.0 10.0 4159 ------- null} - -t 4.69222 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8309 -a 0 -x {9.0 10.0 4159 ------- null} h -t 4.69222 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8309 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.69238 -s 0 -d 9 -p ack -e 40 -c 0 -i 8302 -a 0 -x {10.0 9.0 4146 ------- null} - -t 4.69238 -s 0 -d 9 -p ack -e 40 -c 0 -i 8302 -a 0 -x {10.0 9.0 4146 ------- null} h -t 4.69238 -s 0 -d 9 -p ack -e 40 -c 0 -i 8302 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.69262 -s 10 -d 7 -p ack -e 40 -c 0 -i 8306 -a 0 -x {10.0 9.0 4148 ------- null} + -t 4.69262 -s 7 -d 0 -p ack -e 40 -c 0 -i 8306 -a 0 -x {10.0 9.0 4148 ------- null} h -t 4.69262 -s 7 -d 8 -p ack -e 40 -c 0 -i 8306 -a 0 -x {10.0 9.0 4148 ------- null} r -t 4.69277 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8305 -a 0 -x {9.0 10.0 4157 ------- null} + -t 4.69277 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8305 -a 0 -x {9.0 10.0 4157 ------- null} h -t 4.69277 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8305 -a 0 -x {9.0 10.0 4157 ------- null} r -t 4.69277 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8291 -a 0 -x {9.0 10.0 4150 ------- null} + -t 4.69277 -s 10 -d 7 -p ack -e 40 -c 0 -i 8310 -a 0 -x {10.0 9.0 4150 ------- null} - -t 4.69277 -s 10 -d 7 -p ack -e 40 -c 0 -i 8310 -a 0 -x {10.0 9.0 4150 ------- null} h -t 4.69277 -s 10 -d 7 -p ack -e 40 -c 0 -i 8310 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.69322 -s 0 -d 9 -p ack -e 40 -c 0 -i 8300 -a 0 -x {10.0 9.0 4145 ------- null} + -t 4.69322 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8311 -a 0 -x {9.0 10.0 4160 ------- null} - -t 4.69322 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8311 -a 0 -x {9.0 10.0 4160 ------- null} h -t 4.69322 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8311 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.69323 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8297 -a 0 -x {9.0 10.0 4153 ------- null} - -t 4.69323 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8297 -a 0 -x {9.0 10.0 4153 ------- null} h -t 4.69323 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8297 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.69341 -s 0 -d 9 -p ack -e 40 -c 0 -i 8304 -a 0 -x {10.0 9.0 4147 ------- null} - -t 4.69341 -s 0 -d 9 -p ack -e 40 -c 0 -i 8304 -a 0 -x {10.0 9.0 4147 ------- null} h -t 4.69341 -s 0 -d 9 -p ack -e 40 -c 0 -i 8304 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.69371 -s 10 -d 7 -p ack -e 40 -c 0 -i 8308 -a 0 -x {10.0 9.0 4149 ------- null} + -t 4.69371 -s 7 -d 0 -p ack -e 40 -c 0 -i 8308 -a 0 -x {10.0 9.0 4149 ------- null} h -t 4.69371 -s 7 -d 8 -p ack -e 40 -c 0 -i 8308 -a 0 -x {10.0 9.0 4149 ------- null} r -t 4.69386 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8293 -a 0 -x {9.0 10.0 4151 ------- null} + -t 4.69386 -s 10 -d 7 -p ack -e 40 -c 0 -i 8312 -a 0 -x {10.0 9.0 4151 ------- null} - -t 4.69386 -s 10 -d 7 -p ack -e 40 -c 0 -i 8312 -a 0 -x {10.0 9.0 4151 ------- null} h -t 4.69386 -s 10 -d 7 -p ack -e 40 -c 0 -i 8312 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.69397 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8307 -a 0 -x {9.0 10.0 4158 ------- null} + -t 4.69397 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8307 -a 0 -x {9.0 10.0 4158 ------- null} h -t 4.69397 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8307 -a 0 -x {9.0 10.0 4158 ------- null} + -t 4.69432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8299 -a 0 -x {9.0 10.0 4154 ------- null} - -t 4.69432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8299 -a 0 -x {9.0 10.0 4154 ------- null} h -t 4.69432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8299 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.69442 -s 0 -d 9 -p ack -e 40 -c 0 -i 8302 -a 0 -x {10.0 9.0 4146 ------- null} + -t 4.69442 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8313 -a 0 -x {9.0 10.0 4161 ------- null} - -t 4.69442 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8313 -a 0 -x {9.0 10.0 4161 ------- null} h -t 4.69442 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8313 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.69446 -s 0 -d 9 -p ack -e 40 -c 0 -i 8306 -a 0 -x {10.0 9.0 4148 ------- null} - -t 4.69446 -s 0 -d 9 -p ack -e 40 -c 0 -i 8306 -a 0 -x {10.0 9.0 4148 ------- null} h -t 4.69446 -s 0 -d 9 -p ack -e 40 -c 0 -i 8306 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.6948 -s 10 -d 7 -p ack -e 40 -c 0 -i 8310 -a 0 -x {10.0 9.0 4150 ------- null} + -t 4.6948 -s 7 -d 0 -p ack -e 40 -c 0 -i 8310 -a 0 -x {10.0 9.0 4150 ------- null} h -t 4.6948 -s 7 -d 8 -p ack -e 40 -c 0 -i 8310 -a 0 -x {10.0 9.0 4150 ------- null} r -t 4.69494 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8295 -a 0 -x {9.0 10.0 4152 ------- null} + -t 4.69494 -s 10 -d 7 -p ack -e 40 -c 0 -i 8314 -a 0 -x {10.0 9.0 4152 ------- null} - -t 4.69494 -s 10 -d 7 -p ack -e 40 -c 0 -i 8314 -a 0 -x {10.0 9.0 4152 ------- null} h -t 4.69494 -s 10 -d 7 -p ack -e 40 -c 0 -i 8314 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.69502 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8309 -a 0 -x {9.0 10.0 4159 ------- null} + -t 4.69502 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8309 -a 0 -x {9.0 10.0 4159 ------- null} h -t 4.69502 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8309 -a 0 -x {9.0 10.0 4159 ------- null} + -t 4.69541 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8301 -a 0 -x {9.0 10.0 4155 ------- null} - -t 4.69541 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8301 -a 0 -x {9.0 10.0 4155 ------- null} h -t 4.69541 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8301 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.69544 -s 0 -d 9 -p ack -e 40 -c 0 -i 8304 -a 0 -x {10.0 9.0 4147 ------- null} + -t 4.69544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8315 -a 0 -x {9.0 10.0 4162 ------- null} - -t 4.69544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8315 -a 0 -x {9.0 10.0 4162 ------- null} h -t 4.69544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8315 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.69555 -s 0 -d 9 -p ack -e 40 -c 0 -i 8308 -a 0 -x {10.0 9.0 4149 ------- null} - -t 4.69555 -s 0 -d 9 -p ack -e 40 -c 0 -i 8308 -a 0 -x {10.0 9.0 4149 ------- null} h -t 4.69555 -s 0 -d 9 -p ack -e 40 -c 0 -i 8308 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.69589 -s 10 -d 7 -p ack -e 40 -c 0 -i 8312 -a 0 -x {10.0 9.0 4151 ------- null} + -t 4.69589 -s 7 -d 0 -p ack -e 40 -c 0 -i 8312 -a 0 -x {10.0 9.0 4151 ------- null} h -t 4.69589 -s 7 -d 8 -p ack -e 40 -c 0 -i 8312 -a 0 -x {10.0 9.0 4151 ------- null} r -t 4.69602 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8311 -a 0 -x {9.0 10.0 4160 ------- null} + -t 4.69602 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8311 -a 0 -x {9.0 10.0 4160 ------- null} h -t 4.69602 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8311 -a 0 -x {9.0 10.0 4160 ------- null} r -t 4.69603 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8297 -a 0 -x {9.0 10.0 4153 ------- null} + -t 4.69603 -s 10 -d 7 -p ack -e 40 -c 0 -i 8316 -a 0 -x {10.0 9.0 4153 ------- null} - -t 4.69603 -s 10 -d 7 -p ack -e 40 -c 0 -i 8316 -a 0 -x {10.0 9.0 4153 ------- null} h -t 4.69603 -s 10 -d 7 -p ack -e 40 -c 0 -i 8316 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.6965 -s 0 -d 9 -p ack -e 40 -c 0 -i 8306 -a 0 -x {10.0 9.0 4148 ------- null} + -t 4.6965 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8317 -a 0 -x {9.0 10.0 4163 ------- null} - -t 4.6965 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8317 -a 0 -x {9.0 10.0 4163 ------- null} h -t 4.6965 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8317 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.6965 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8303 -a 0 -x {9.0 10.0 4156 ------- null} - -t 4.6965 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8303 -a 0 -x {9.0 10.0 4156 ------- null} h -t 4.6965 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8303 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.69672 -s 0 -d 9 -p ack -e 40 -c 0 -i 8310 -a 0 -x {10.0 9.0 4150 ------- null} - -t 4.69672 -s 0 -d 9 -p ack -e 40 -c 0 -i 8310 -a 0 -x {10.0 9.0 4150 ------- null} h -t 4.69672 -s 0 -d 9 -p ack -e 40 -c 0 -i 8310 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.69698 -s 10 -d 7 -p ack -e 40 -c 0 -i 8314 -a 0 -x {10.0 9.0 4152 ------- null} + -t 4.69698 -s 7 -d 0 -p ack -e 40 -c 0 -i 8314 -a 0 -x {10.0 9.0 4152 ------- null} h -t 4.69698 -s 7 -d 8 -p ack -e 40 -c 0 -i 8314 -a 0 -x {10.0 9.0 4152 ------- null} r -t 4.69712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8299 -a 0 -x {9.0 10.0 4154 ------- null} + -t 4.69712 -s 10 -d 7 -p ack -e 40 -c 0 -i 8318 -a 0 -x {10.0 9.0 4154 ------- null} - -t 4.69712 -s 10 -d 7 -p ack -e 40 -c 0 -i 8318 -a 0 -x {10.0 9.0 4154 ------- null} h -t 4.69712 -s 10 -d 7 -p ack -e 40 -c 0 -i 8318 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.69722 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8313 -a 0 -x {9.0 10.0 4161 ------- null} + -t 4.69722 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8313 -a 0 -x {9.0 10.0 4161 ------- null} h -t 4.69722 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8313 -a 0 -x {9.0 10.0 4161 ------- null} r -t 4.69758 -s 0 -d 9 -p ack -e 40 -c 0 -i 8308 -a 0 -x {10.0 9.0 4149 ------- null} + -t 4.69758 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8319 -a 0 -x {9.0 10.0 4164 ------- null} - -t 4.69758 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8319 -a 0 -x {9.0 10.0 4164 ------- null} h -t 4.69758 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8319 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.69758 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8305 -a 0 -x {9.0 10.0 4157 ------- null} - -t 4.69758 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8305 -a 0 -x {9.0 10.0 4157 ------- null} h -t 4.69758 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8305 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.69773 -s 0 -d 9 -p ack -e 40 -c 0 -i 8312 -a 0 -x {10.0 9.0 4151 ------- null} - -t 4.69773 -s 0 -d 9 -p ack -e 40 -c 0 -i 8312 -a 0 -x {10.0 9.0 4151 ------- null} h -t 4.69773 -s 0 -d 9 -p ack -e 40 -c 0 -i 8312 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.69806 -s 10 -d 7 -p ack -e 40 -c 0 -i 8316 -a 0 -x {10.0 9.0 4153 ------- null} + -t 4.69806 -s 7 -d 0 -p ack -e 40 -c 0 -i 8316 -a 0 -x {10.0 9.0 4153 ------- null} h -t 4.69806 -s 7 -d 8 -p ack -e 40 -c 0 -i 8316 -a 0 -x {10.0 9.0 4153 ------- null} r -t 4.69821 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8301 -a 0 -x {9.0 10.0 4155 ------- null} + -t 4.69821 -s 10 -d 7 -p ack -e 40 -c 0 -i 8320 -a 0 -x {10.0 9.0 4155 ------- null} - -t 4.69821 -s 10 -d 7 -p ack -e 40 -c 0 -i 8320 -a 0 -x {10.0 9.0 4155 ------- null} h -t 4.69821 -s 10 -d 7 -p ack -e 40 -c 0 -i 8320 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.69824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8315 -a 0 -x {9.0 10.0 4162 ------- null} + -t 4.69824 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8315 -a 0 -x {9.0 10.0 4162 ------- null} h -t 4.69824 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8315 -a 0 -x {9.0 10.0 4162 ------- null} + -t 4.69867 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8307 -a 0 -x {9.0 10.0 4158 ------- null} - -t 4.69867 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8307 -a 0 -x {9.0 10.0 4158 ------- null} h -t 4.69867 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8307 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.69875 -s 0 -d 9 -p ack -e 40 -c 0 -i 8310 -a 0 -x {10.0 9.0 4150 ------- null} + -t 4.69875 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8321 -a 0 -x {9.0 10.0 4165 ------- null} - -t 4.69875 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8321 -a 0 -x {9.0 10.0 4165 ------- null} h -t 4.69875 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8321 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.6988 -s 0 -d 9 -p ack -e 40 -c 0 -i 8314 -a 0 -x {10.0 9.0 4152 ------- null} - -t 4.6988 -s 0 -d 9 -p ack -e 40 -c 0 -i 8314 -a 0 -x {10.0 9.0 4152 ------- null} h -t 4.6988 -s 0 -d 9 -p ack -e 40 -c 0 -i 8314 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.69915 -s 10 -d 7 -p ack -e 40 -c 0 -i 8318 -a 0 -x {10.0 9.0 4154 ------- null} + -t 4.69915 -s 7 -d 0 -p ack -e 40 -c 0 -i 8318 -a 0 -x {10.0 9.0 4154 ------- null} h -t 4.69915 -s 7 -d 8 -p ack -e 40 -c 0 -i 8318 -a 0 -x {10.0 9.0 4154 ------- null} r -t 4.6993 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8317 -a 0 -x {9.0 10.0 4163 ------- null} + -t 4.6993 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8317 -a 0 -x {9.0 10.0 4163 ------- null} h -t 4.6993 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8317 -a 0 -x {9.0 10.0 4163 ------- null} r -t 4.6993 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8303 -a 0 -x {9.0 10.0 4156 ------- null} + -t 4.6993 -s 10 -d 7 -p ack -e 40 -c 0 -i 8322 -a 0 -x {10.0 9.0 4156 ------- null} - -t 4.6993 -s 10 -d 7 -p ack -e 40 -c 0 -i 8322 -a 0 -x {10.0 9.0 4156 ------- null} h -t 4.6993 -s 10 -d 7 -p ack -e 40 -c 0 -i 8322 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.69976 -s 0 -d 9 -p ack -e 40 -c 0 -i 8312 -a 0 -x {10.0 9.0 4151 ------- null} + -t 4.69976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8323 -a 0 -x {9.0 10.0 4166 ------- null} - -t 4.69976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8323 -a 0 -x {9.0 10.0 4166 ------- null} h -t 4.69976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8323 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.69976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8309 -a 0 -x {9.0 10.0 4159 ------- null} - -t 4.69976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8309 -a 0 -x {9.0 10.0 4159 ------- null} h -t 4.69976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8309 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.69994 -s 0 -d 9 -p ack -e 40 -c 0 -i 8316 -a 0 -x {10.0 9.0 4153 ------- null} - -t 4.69994 -s 0 -d 9 -p ack -e 40 -c 0 -i 8316 -a 0 -x {10.0 9.0 4153 ------- null} h -t 4.69994 -s 0 -d 9 -p ack -e 40 -c 0 -i 8316 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.70024 -s 10 -d 7 -p ack -e 40 -c 0 -i 8320 -a 0 -x {10.0 9.0 4155 ------- null} + -t 4.70024 -s 7 -d 0 -p ack -e 40 -c 0 -i 8320 -a 0 -x {10.0 9.0 4155 ------- null} h -t 4.70024 -s 7 -d 8 -p ack -e 40 -c 0 -i 8320 -a 0 -x {10.0 9.0 4155 ------- null} r -t 4.70038 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8319 -a 0 -x {9.0 10.0 4164 ------- null} + -t 4.70038 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8319 -a 0 -x {9.0 10.0 4164 ------- null} h -t 4.70038 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8319 -a 0 -x {9.0 10.0 4164 ------- null} r -t 4.70038 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8305 -a 0 -x {9.0 10.0 4157 ------- null} + -t 4.70038 -s 10 -d 7 -p ack -e 40 -c 0 -i 8324 -a 0 -x {10.0 9.0 4157 ------- null} - -t 4.70038 -s 10 -d 7 -p ack -e 40 -c 0 -i 8324 -a 0 -x {10.0 9.0 4157 ------- null} h -t 4.70038 -s 10 -d 7 -p ack -e 40 -c 0 -i 8324 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.70083 -s 0 -d 9 -p ack -e 40 -c 0 -i 8314 -a 0 -x {10.0 9.0 4152 ------- null} + -t 4.70083 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8325 -a 0 -x {9.0 10.0 4167 ------- null} - -t 4.70083 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8325 -a 0 -x {9.0 10.0 4167 ------- null} h -t 4.70083 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8325 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.70085 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8311 -a 0 -x {9.0 10.0 4160 ------- null} - -t 4.70085 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8311 -a 0 -x {9.0 10.0 4160 ------- null} h -t 4.70085 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8311 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.70094 -s 0 -d 9 -p ack -e 40 -c 0 -i 8318 -a 0 -x {10.0 9.0 4154 ------- null} - -t 4.70094 -s 0 -d 9 -p ack -e 40 -c 0 -i 8318 -a 0 -x {10.0 9.0 4154 ------- null} h -t 4.70094 -s 0 -d 9 -p ack -e 40 -c 0 -i 8318 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.70133 -s 10 -d 7 -p ack -e 40 -c 0 -i 8322 -a 0 -x {10.0 9.0 4156 ------- null} + -t 4.70133 -s 7 -d 0 -p ack -e 40 -c 0 -i 8322 -a 0 -x {10.0 9.0 4156 ------- null} h -t 4.70133 -s 7 -d 8 -p ack -e 40 -c 0 -i 8322 -a 0 -x {10.0 9.0 4156 ------- null} r -t 4.70147 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8307 -a 0 -x {9.0 10.0 4158 ------- null} + -t 4.70147 -s 10 -d 7 -p ack -e 40 -c 0 -i 8326 -a 0 -x {10.0 9.0 4158 ------- null} - -t 4.70147 -s 10 -d 7 -p ack -e 40 -c 0 -i 8326 -a 0 -x {10.0 9.0 4158 ------- null} h -t 4.70147 -s 10 -d 7 -p ack -e 40 -c 0 -i 8326 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.70155 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8321 -a 0 -x {9.0 10.0 4165 ------- null} + -t 4.70155 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8321 -a 0 -x {9.0 10.0 4165 ------- null} h -t 4.70155 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8321 -a 0 -x {9.0 10.0 4165 ------- null} + -t 4.70194 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8313 -a 0 -x {9.0 10.0 4161 ------- null} - -t 4.70194 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8313 -a 0 -x {9.0 10.0 4161 ------- null} h -t 4.70194 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8313 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.70197 -s 0 -d 9 -p ack -e 40 -c 0 -i 8316 -a 0 -x {10.0 9.0 4153 ------- null} + -t 4.70197 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8327 -a 0 -x {9.0 10.0 4168 ------- null} - -t 4.70197 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8327 -a 0 -x {9.0 10.0 4168 ------- null} h -t 4.70197 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8327 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.70218 -s 0 -d 9 -p ack -e 40 -c 0 -i 8320 -a 0 -x {10.0 9.0 4155 ------- null} - -t 4.70218 -s 0 -d 9 -p ack -e 40 -c 0 -i 8320 -a 0 -x {10.0 9.0 4155 ------- null} h -t 4.70218 -s 0 -d 9 -p ack -e 40 -c 0 -i 8320 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.70242 -s 10 -d 7 -p ack -e 40 -c 0 -i 8324 -a 0 -x {10.0 9.0 4157 ------- null} + -t 4.70242 -s 7 -d 0 -p ack -e 40 -c 0 -i 8324 -a 0 -x {10.0 9.0 4157 ------- null} h -t 4.70242 -s 7 -d 8 -p ack -e 40 -c 0 -i 8324 -a 0 -x {10.0 9.0 4157 ------- null} r -t 4.70256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8323 -a 0 -x {9.0 10.0 4166 ------- null} + -t 4.70256 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8323 -a 0 -x {9.0 10.0 4166 ------- null} h -t 4.70256 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8323 -a 0 -x {9.0 10.0 4166 ------- null} r -t 4.70256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8309 -a 0 -x {9.0 10.0 4159 ------- null} + -t 4.70256 -s 10 -d 7 -p ack -e 40 -c 0 -i 8328 -a 0 -x {10.0 9.0 4159 ------- null} - -t 4.70256 -s 10 -d 7 -p ack -e 40 -c 0 -i 8328 -a 0 -x {10.0 9.0 4159 ------- null} h -t 4.70256 -s 10 -d 7 -p ack -e 40 -c 0 -i 8328 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.70298 -s 0 -d 9 -p ack -e 40 -c 0 -i 8318 -a 0 -x {10.0 9.0 4154 ------- null} + -t 4.70298 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8329 -a 0 -x {9.0 10.0 4169 ------- null} - -t 4.70298 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8329 -a 0 -x {9.0 10.0 4169 ------- null} h -t 4.70298 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8329 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.70302 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8315 -a 0 -x {9.0 10.0 4162 ------- null} - -t 4.70302 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8315 -a 0 -x {9.0 10.0 4162 ------- null} h -t 4.70302 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8315 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.7031 -s 0 -d 9 -p ack -e 40 -c 0 -i 8322 -a 0 -x {10.0 9.0 4156 ------- null} - -t 4.7031 -s 0 -d 9 -p ack -e 40 -c 0 -i 8322 -a 0 -x {10.0 9.0 4156 ------- null} h -t 4.7031 -s 0 -d 9 -p ack -e 40 -c 0 -i 8322 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.7035 -s 10 -d 7 -p ack -e 40 -c 0 -i 8326 -a 0 -x {10.0 9.0 4158 ------- null} + -t 4.7035 -s 7 -d 0 -p ack -e 40 -c 0 -i 8326 -a 0 -x {10.0 9.0 4158 ------- null} h -t 4.7035 -s 7 -d 8 -p ack -e 40 -c 0 -i 8326 -a 0 -x {10.0 9.0 4158 ------- null} r -t 4.70363 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8325 -a 0 -x {9.0 10.0 4167 ------- null} + -t 4.70363 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8325 -a 0 -x {9.0 10.0 4167 ------- null} h -t 4.70363 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8325 -a 0 -x {9.0 10.0 4167 ------- null} r -t 4.70365 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8311 -a 0 -x {9.0 10.0 4160 ------- null} + -t 4.70365 -s 10 -d 7 -p ack -e 40 -c 0 -i 8330 -a 0 -x {10.0 9.0 4160 ------- null} - -t 4.70365 -s 10 -d 7 -p ack -e 40 -c 0 -i 8330 -a 0 -x {10.0 9.0 4160 ------- null} h -t 4.70365 -s 10 -d 7 -p ack -e 40 -c 0 -i 8330 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.70411 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8317 -a 0 -x {9.0 10.0 4163 ------- null} - -t 4.70411 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8317 -a 0 -x {9.0 10.0 4163 ------- null} h -t 4.70411 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8317 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.70419 -s 0 -d 9 -p ack -e 40 -c 0 -i 8324 -a 0 -x {10.0 9.0 4157 ------- null} - -t 4.70419 -s 0 -d 9 -p ack -e 40 -c 0 -i 8324 -a 0 -x {10.0 9.0 4157 ------- null} h -t 4.70419 -s 0 -d 9 -p ack -e 40 -c 0 -i 8324 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.70421 -s 0 -d 9 -p ack -e 40 -c 0 -i 8320 -a 0 -x {10.0 9.0 4155 ------- null} + -t 4.70421 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8331 -a 0 -x {9.0 10.0 4170 ------- null} - -t 4.70421 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8331 -a 0 -x {9.0 10.0 4170 ------- null} h -t 4.70421 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8331 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.70459 -s 10 -d 7 -p ack -e 40 -c 0 -i 8328 -a 0 -x {10.0 9.0 4159 ------- null} + -t 4.70459 -s 7 -d 0 -p ack -e 40 -c 0 -i 8328 -a 0 -x {10.0 9.0 4159 ------- null} h -t 4.70459 -s 7 -d 8 -p ack -e 40 -c 0 -i 8328 -a 0 -x {10.0 9.0 4159 ------- null} r -t 4.70474 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8313 -a 0 -x {9.0 10.0 4161 ------- null} + -t 4.70474 -s 10 -d 7 -p ack -e 40 -c 0 -i 8332 -a 0 -x {10.0 9.0 4161 ------- null} - -t 4.70474 -s 10 -d 7 -p ack -e 40 -c 0 -i 8332 -a 0 -x {10.0 9.0 4161 ------- null} h -t 4.70474 -s 10 -d 7 -p ack -e 40 -c 0 -i 8332 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.70477 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8327 -a 0 -x {9.0 10.0 4168 ------- null} + -t 4.70477 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8327 -a 0 -x {9.0 10.0 4168 ------- null} h -t 4.70477 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8327 -a 0 -x {9.0 10.0 4168 ------- null} r -t 4.70514 -s 0 -d 9 -p ack -e 40 -c 0 -i 8322 -a 0 -x {10.0 9.0 4156 ------- null} + -t 4.70514 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8333 -a 0 -x {9.0 10.0 4171 ------- null} - -t 4.70514 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8333 -a 0 -x {9.0 10.0 4171 ------- null} h -t 4.70514 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8333 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.7052 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8319 -a 0 -x {9.0 10.0 4164 ------- null} - -t 4.7052 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8319 -a 0 -x {9.0 10.0 4164 ------- null} h -t 4.7052 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8319 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.70547 -s 0 -d 9 -p ack -e 40 -c 0 -i 8326 -a 0 -x {10.0 9.0 4158 ------- null} - -t 4.70547 -s 0 -d 9 -p ack -e 40 -c 0 -i 8326 -a 0 -x {10.0 9.0 4158 ------- null} h -t 4.70547 -s 0 -d 9 -p ack -e 40 -c 0 -i 8326 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.70568 -s 10 -d 7 -p ack -e 40 -c 0 -i 8330 -a 0 -x {10.0 9.0 4160 ------- null} + -t 4.70568 -s 7 -d 0 -p ack -e 40 -c 0 -i 8330 -a 0 -x {10.0 9.0 4160 ------- null} h -t 4.70568 -s 7 -d 8 -p ack -e 40 -c 0 -i 8330 -a 0 -x {10.0 9.0 4160 ------- null} r -t 4.70578 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8329 -a 0 -x {9.0 10.0 4169 ------- null} + -t 4.70578 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8329 -a 0 -x {9.0 10.0 4169 ------- null} h -t 4.70578 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8329 -a 0 -x {9.0 10.0 4169 ------- null} r -t 4.70582 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8315 -a 0 -x {9.0 10.0 4162 ------- null} + -t 4.70582 -s 10 -d 7 -p ack -e 40 -c 0 -i 8334 -a 0 -x {10.0 9.0 4162 ------- null} - -t 4.70582 -s 10 -d 7 -p ack -e 40 -c 0 -i 8334 -a 0 -x {10.0 9.0 4162 ------- null} h -t 4.70582 -s 10 -d 7 -p ack -e 40 -c 0 -i 8334 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.70622 -s 0 -d 9 -p ack -e 40 -c 0 -i 8324 -a 0 -x {10.0 9.0 4157 ------- null} + -t 4.70622 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8335 -a 0 -x {9.0 10.0 4172 ------- null} - -t 4.70622 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8335 -a 0 -x {9.0 10.0 4172 ------- null} h -t 4.70622 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8335 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.70634 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8321 -a 0 -x {9.0 10.0 4165 ------- null} - -t 4.70634 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8321 -a 0 -x {9.0 10.0 4165 ------- null} h -t 4.70634 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8321 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.70646 -s 0 -d 9 -p ack -e 40 -c 0 -i 8328 -a 0 -x {10.0 9.0 4159 ------- null} - -t 4.70646 -s 0 -d 9 -p ack -e 40 -c 0 -i 8328 -a 0 -x {10.0 9.0 4159 ------- null} h -t 4.70646 -s 0 -d 9 -p ack -e 40 -c 0 -i 8328 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.70677 -s 10 -d 7 -p ack -e 40 -c 0 -i 8332 -a 0 -x {10.0 9.0 4161 ------- null} + -t 4.70677 -s 7 -d 0 -p ack -e 40 -c 0 -i 8332 -a 0 -x {10.0 9.0 4161 ------- null} h -t 4.70677 -s 7 -d 8 -p ack -e 40 -c 0 -i 8332 -a 0 -x {10.0 9.0 4161 ------- null} r -t 4.70691 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8317 -a 0 -x {9.0 10.0 4163 ------- null} + -t 4.70691 -s 10 -d 7 -p ack -e 40 -c 0 -i 8336 -a 0 -x {10.0 9.0 4163 ------- null} - -t 4.70691 -s 10 -d 7 -p ack -e 40 -c 0 -i 8336 -a 0 -x {10.0 9.0 4163 ------- null} h -t 4.70691 -s 10 -d 7 -p ack -e 40 -c 0 -i 8336 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.70701 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8331 -a 0 -x {9.0 10.0 4170 ------- null} + -t 4.70701 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8331 -a 0 -x {9.0 10.0 4170 ------- null} h -t 4.70701 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8331 -a 0 -x {9.0 10.0 4170 ------- null} + -t 4.70742 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8323 -a 0 -x {9.0 10.0 4166 ------- null} - -t 4.70742 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8323 -a 0 -x {9.0 10.0 4166 ------- null} h -t 4.70742 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8323 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.7075 -s 0 -d 9 -p ack -e 40 -c 0 -i 8326 -a 0 -x {10.0 9.0 4158 ------- null} + -t 4.7075 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8337 -a 0 -x {9.0 10.0 4173 ------- null} - -t 4.7075 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8337 -a 0 -x {9.0 10.0 4173 ------- null} h -t 4.7075 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8337 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.70762 -s 0 -d 9 -p ack -e 40 -c 0 -i 8330 -a 0 -x {10.0 9.0 4160 ------- null} - -t 4.70762 -s 0 -d 9 -p ack -e 40 -c 0 -i 8330 -a 0 -x {10.0 9.0 4160 ------- null} h -t 4.70762 -s 0 -d 9 -p ack -e 40 -c 0 -i 8330 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.70786 -s 10 -d 7 -p ack -e 40 -c 0 -i 8334 -a 0 -x {10.0 9.0 4162 ------- null} + -t 4.70786 -s 7 -d 0 -p ack -e 40 -c 0 -i 8334 -a 0 -x {10.0 9.0 4162 ------- null} h -t 4.70786 -s 7 -d 8 -p ack -e 40 -c 0 -i 8334 -a 0 -x {10.0 9.0 4162 ------- null} r -t 4.70794 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8333 -a 0 -x {9.0 10.0 4171 ------- null} + -t 4.70794 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8333 -a 0 -x {9.0 10.0 4171 ------- null} h -t 4.70794 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8333 -a 0 -x {9.0 10.0 4171 ------- null} r -t 4.708 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8319 -a 0 -x {9.0 10.0 4164 ------- null} + -t 4.708 -s 10 -d 7 -p ack -e 40 -c 0 -i 8338 -a 0 -x {10.0 9.0 4164 ------- null} - -t 4.708 -s 10 -d 7 -p ack -e 40 -c 0 -i 8338 -a 0 -x {10.0 9.0 4164 ------- null} h -t 4.708 -s 10 -d 7 -p ack -e 40 -c 0 -i 8338 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.7085 -s 0 -d 9 -p ack -e 40 -c 0 -i 8328 -a 0 -x {10.0 9.0 4159 ------- null} + -t 4.7085 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8339 -a 0 -x {9.0 10.0 4174 ------- null} - -t 4.7085 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8339 -a 0 -x {9.0 10.0 4174 ------- null} h -t 4.7085 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8339 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.70851 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8325 -a 0 -x {9.0 10.0 4167 ------- null} - -t 4.70851 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8325 -a 0 -x {9.0 10.0 4167 ------- null} h -t 4.70851 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8325 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.70882 -s 0 -d 9 -p ack -e 40 -c 0 -i 8332 -a 0 -x {10.0 9.0 4161 ------- null} - -t 4.70882 -s 0 -d 9 -p ack -e 40 -c 0 -i 8332 -a 0 -x {10.0 9.0 4161 ------- null} h -t 4.70882 -s 0 -d 9 -p ack -e 40 -c 0 -i 8332 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.70894 -s 10 -d 7 -p ack -e 40 -c 0 -i 8336 -a 0 -x {10.0 9.0 4163 ------- null} + -t 4.70894 -s 7 -d 0 -p ack -e 40 -c 0 -i 8336 -a 0 -x {10.0 9.0 4163 ------- null} h -t 4.70894 -s 7 -d 8 -p ack -e 40 -c 0 -i 8336 -a 0 -x {10.0 9.0 4163 ------- null} r -t 4.70902 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8335 -a 0 -x {9.0 10.0 4172 ------- null} + -t 4.70902 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8335 -a 0 -x {9.0 10.0 4172 ------- null} h -t 4.70902 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8335 -a 0 -x {9.0 10.0 4172 ------- null} r -t 4.70914 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8321 -a 0 -x {9.0 10.0 4165 ------- null} + -t 4.70914 -s 10 -d 7 -p ack -e 40 -c 0 -i 8340 -a 0 -x {10.0 9.0 4165 ------- null} - -t 4.70914 -s 10 -d 7 -p ack -e 40 -c 0 -i 8340 -a 0 -x {10.0 9.0 4165 ------- null} h -t 4.70914 -s 10 -d 7 -p ack -e 40 -c 0 -i 8340 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.70965 -s 0 -d 9 -p ack -e 40 -c 0 -i 8330 -a 0 -x {10.0 9.0 4160 ------- null} + -t 4.70965 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8341 -a 0 -x {9.0 10.0 4175 ------- null} - -t 4.70965 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8341 -a 0 -x {9.0 10.0 4175 ------- null} h -t 4.70965 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8341 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.7097 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8327 -a 0 -x {9.0 10.0 4168 ------- null} - -t 4.7097 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8327 -a 0 -x {9.0 10.0 4168 ------- null} h -t 4.7097 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8327 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.70998 -s 0 -d 9 -p ack -e 40 -c 0 -i 8334 -a 0 -x {10.0 9.0 4162 ------- null} - -t 4.70998 -s 0 -d 9 -p ack -e 40 -c 0 -i 8334 -a 0 -x {10.0 9.0 4162 ------- null} h -t 4.70998 -s 0 -d 9 -p ack -e 40 -c 0 -i 8334 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.71003 -s 10 -d 7 -p ack -e 40 -c 0 -i 8338 -a 0 -x {10.0 9.0 4164 ------- null} + -t 4.71003 -s 7 -d 0 -p ack -e 40 -c 0 -i 8338 -a 0 -x {10.0 9.0 4164 ------- null} h -t 4.71003 -s 7 -d 8 -p ack -e 40 -c 0 -i 8338 -a 0 -x {10.0 9.0 4164 ------- null} r -t 4.71022 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8323 -a 0 -x {9.0 10.0 4166 ------- null} + -t 4.71022 -s 10 -d 7 -p ack -e 40 -c 0 -i 8342 -a 0 -x {10.0 9.0 4166 ------- null} - -t 4.71022 -s 10 -d 7 -p ack -e 40 -c 0 -i 8342 -a 0 -x {10.0 9.0 4166 ------- null} h -t 4.71022 -s 10 -d 7 -p ack -e 40 -c 0 -i 8342 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.7103 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8337 -a 0 -x {9.0 10.0 4173 ------- null} + -t 4.7103 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8337 -a 0 -x {9.0 10.0 4173 ------- null} h -t 4.7103 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8337 -a 0 -x {9.0 10.0 4173 ------- null} r -t 4.71085 -s 0 -d 9 -p ack -e 40 -c 0 -i 8332 -a 0 -x {10.0 9.0 4161 ------- null} + -t 4.71085 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8343 -a 0 -x {9.0 10.0 4176 ------- null} - -t 4.71085 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8343 -a 0 -x {9.0 10.0 4176 ------- null} h -t 4.71085 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8343 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.71093 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8329 -a 0 -x {9.0 10.0 4169 ------- null} - -t 4.71093 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8329 -a 0 -x {9.0 10.0 4169 ------- null} h -t 4.71093 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8329 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.71107 -s 0 -d 9 -p ack -e 40 -c 0 -i 8336 -a 0 -x {10.0 9.0 4163 ------- null} - -t 4.71107 -s 0 -d 9 -p ack -e 40 -c 0 -i 8336 -a 0 -x {10.0 9.0 4163 ------- null} h -t 4.71107 -s 0 -d 9 -p ack -e 40 -c 0 -i 8336 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.71117 -s 10 -d 7 -p ack -e 40 -c 0 -i 8340 -a 0 -x {10.0 9.0 4165 ------- null} + -t 4.71117 -s 7 -d 0 -p ack -e 40 -c 0 -i 8340 -a 0 -x {10.0 9.0 4165 ------- null} h -t 4.71117 -s 7 -d 8 -p ack -e 40 -c 0 -i 8340 -a 0 -x {10.0 9.0 4165 ------- null} r -t 4.7113 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8339 -a 0 -x {9.0 10.0 4174 ------- null} + -t 4.7113 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8339 -a 0 -x {9.0 10.0 4174 ------- null} h -t 4.7113 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8339 -a 0 -x {9.0 10.0 4174 ------- null} r -t 4.71131 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8325 -a 0 -x {9.0 10.0 4167 ------- null} + -t 4.71131 -s 10 -d 7 -p ack -e 40 -c 0 -i 8344 -a 0 -x {10.0 9.0 4167 ------- null} - -t 4.71131 -s 10 -d 7 -p ack -e 40 -c 0 -i 8344 -a 0 -x {10.0 9.0 4167 ------- null} h -t 4.71131 -s 10 -d 7 -p ack -e 40 -c 0 -i 8344 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.71202 -s 0 -d 9 -p ack -e 40 -c 0 -i 8334 -a 0 -x {10.0 9.0 4162 ------- null} + -t 4.71202 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8345 -a 0 -x {9.0 10.0 4177 ------- null} - -t 4.71202 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8345 -a 0 -x {9.0 10.0 4177 ------- null} h -t 4.71202 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8345 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.71202 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8331 -a 0 -x {9.0 10.0 4170 ------- null} - -t 4.71202 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8331 -a 0 -x {9.0 10.0 4170 ------- null} h -t 4.71202 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8331 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.71221 -s 0 -d 9 -p ack -e 40 -c 0 -i 8338 -a 0 -x {10.0 9.0 4164 ------- null} - -t 4.71221 -s 0 -d 9 -p ack -e 40 -c 0 -i 8338 -a 0 -x {10.0 9.0 4164 ------- null} h -t 4.71221 -s 0 -d 9 -p ack -e 40 -c 0 -i 8338 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.71226 -s 10 -d 7 -p ack -e 40 -c 0 -i 8342 -a 0 -x {10.0 9.0 4166 ------- null} + -t 4.71226 -s 7 -d 0 -p ack -e 40 -c 0 -i 8342 -a 0 -x {10.0 9.0 4166 ------- null} h -t 4.71226 -s 7 -d 8 -p ack -e 40 -c 0 -i 8342 -a 0 -x {10.0 9.0 4166 ------- null} r -t 4.71245 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8341 -a 0 -x {9.0 10.0 4175 ------- null} + -t 4.71245 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8341 -a 0 -x {9.0 10.0 4175 ------- null} h -t 4.71245 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8341 -a 0 -x {9.0 10.0 4175 ------- null} r -t 4.7125 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8327 -a 0 -x {9.0 10.0 4168 ------- null} + -t 4.7125 -s 10 -d 7 -p ack -e 40 -c 0 -i 8346 -a 0 -x {10.0 9.0 4168 ------- null} - -t 4.7125 -s 10 -d 7 -p ack -e 40 -c 0 -i 8346 -a 0 -x {10.0 9.0 4168 ------- null} h -t 4.7125 -s 10 -d 7 -p ack -e 40 -c 0 -i 8346 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.7131 -s 0 -d 9 -p ack -e 40 -c 0 -i 8336 -a 0 -x {10.0 9.0 4163 ------- null} + -t 4.7131 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8347 -a 0 -x {9.0 10.0 4178 ------- null} - -t 4.7131 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8347 -a 0 -x {9.0 10.0 4178 ------- null} h -t 4.7131 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8347 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.7131 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8333 -a 0 -x {9.0 10.0 4171 ------- null} - -t 4.7131 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8333 -a 0 -x {9.0 10.0 4171 ------- null} h -t 4.7131 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8333 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.71317 -s 0 -d 9 -p ack -e 40 -c 0 -i 8340 -a 0 -x {10.0 9.0 4165 ------- null} - -t 4.71317 -s 0 -d 9 -p ack -e 40 -c 0 -i 8340 -a 0 -x {10.0 9.0 4165 ------- null} h -t 4.71317 -s 0 -d 9 -p ack -e 40 -c 0 -i 8340 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.71334 -s 10 -d 7 -p ack -e 40 -c 0 -i 8344 -a 0 -x {10.0 9.0 4167 ------- null} + -t 4.71334 -s 7 -d 0 -p ack -e 40 -c 0 -i 8344 -a 0 -x {10.0 9.0 4167 ------- null} h -t 4.71334 -s 7 -d 8 -p ack -e 40 -c 0 -i 8344 -a 0 -x {10.0 9.0 4167 ------- null} r -t 4.71365 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8343 -a 0 -x {9.0 10.0 4176 ------- null} + -t 4.71365 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8343 -a 0 -x {9.0 10.0 4176 ------- null} h -t 4.71365 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8343 -a 0 -x {9.0 10.0 4176 ------- null} r -t 4.71373 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8329 -a 0 -x {9.0 10.0 4169 ------- null} + -t 4.71373 -s 10 -d 7 -p ack -e 40 -c 0 -i 8348 -a 0 -x {10.0 9.0 4169 ------- null} - -t 4.71373 -s 10 -d 7 -p ack -e 40 -c 0 -i 8348 -a 0 -x {10.0 9.0 4169 ------- null} h -t 4.71373 -s 10 -d 7 -p ack -e 40 -c 0 -i 8348 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.71419 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8335 -a 0 -x {9.0 10.0 4172 ------- null} - -t 4.71419 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8335 -a 0 -x {9.0 10.0 4172 ------- null} h -t 4.71419 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8335 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.71424 -s 0 -d 9 -p ack -e 40 -c 0 -i 8338 -a 0 -x {10.0 9.0 4164 ------- null} + -t 4.71424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8349 -a 0 -x {9.0 10.0 4179 ------- null} - -t 4.71424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8349 -a 0 -x {9.0 10.0 4179 ------- null} h -t 4.71424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8349 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.7144 -s 0 -d 9 -p ack -e 40 -c 0 -i 8342 -a 0 -x {10.0 9.0 4166 ------- null} - -t 4.7144 -s 0 -d 9 -p ack -e 40 -c 0 -i 8342 -a 0 -x {10.0 9.0 4166 ------- null} h -t 4.7144 -s 0 -d 9 -p ack -e 40 -c 0 -i 8342 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.71453 -s 10 -d 7 -p ack -e 40 -c 0 -i 8346 -a 0 -x {10.0 9.0 4168 ------- null} + -t 4.71453 -s 7 -d 0 -p ack -e 40 -c 0 -i 8346 -a 0 -x {10.0 9.0 4168 ------- null} h -t 4.71453 -s 7 -d 8 -p ack -e 40 -c 0 -i 8346 -a 0 -x {10.0 9.0 4168 ------- null} r -t 4.71482 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8345 -a 0 -x {9.0 10.0 4177 ------- null} + -t 4.71482 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8345 -a 0 -x {9.0 10.0 4177 ------- null} h -t 4.71482 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8345 -a 0 -x {9.0 10.0 4177 ------- null} r -t 4.71482 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8331 -a 0 -x {9.0 10.0 4170 ------- null} + -t 4.71482 -s 10 -d 7 -p ack -e 40 -c 0 -i 8350 -a 0 -x {10.0 9.0 4170 ------- null} - -t 4.71482 -s 10 -d 7 -p ack -e 40 -c 0 -i 8350 -a 0 -x {10.0 9.0 4170 ------- null} h -t 4.71482 -s 10 -d 7 -p ack -e 40 -c 0 -i 8350 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.7152 -s 0 -d 9 -p ack -e 40 -c 0 -i 8340 -a 0 -x {10.0 9.0 4165 ------- null} + -t 4.7152 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8351 -a 0 -x {9.0 10.0 4180 ------- null} - -t 4.7152 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8351 -a 0 -x {9.0 10.0 4180 ------- null} h -t 4.7152 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8351 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.71528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8337 -a 0 -x {9.0 10.0 4173 ------- null} - -t 4.71528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8337 -a 0 -x {9.0 10.0 4173 ------- null} h -t 4.71528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8337 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.71536 -s 0 -d 9 -p ack -e 40 -c 0 -i 8344 -a 0 -x {10.0 9.0 4167 ------- null} - -t 4.71536 -s 0 -d 9 -p ack -e 40 -c 0 -i 8344 -a 0 -x {10.0 9.0 4167 ------- null} h -t 4.71536 -s 0 -d 9 -p ack -e 40 -c 0 -i 8344 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.71576 -s 10 -d 7 -p ack -e 40 -c 0 -i 8348 -a 0 -x {10.0 9.0 4169 ------- null} + -t 4.71576 -s 7 -d 0 -p ack -e 40 -c 0 -i 8348 -a 0 -x {10.0 9.0 4169 ------- null} h -t 4.71576 -s 7 -d 8 -p ack -e 40 -c 0 -i 8348 -a 0 -x {10.0 9.0 4169 ------- null} r -t 4.7159 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8347 -a 0 -x {9.0 10.0 4178 ------- null} + -t 4.7159 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8347 -a 0 -x {9.0 10.0 4178 ------- null} h -t 4.7159 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8347 -a 0 -x {9.0 10.0 4178 ------- null} r -t 4.7159 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8333 -a 0 -x {9.0 10.0 4171 ------- null} + -t 4.7159 -s 10 -d 7 -p ack -e 40 -c 0 -i 8352 -a 0 -x {10.0 9.0 4171 ------- null} - -t 4.7159 -s 10 -d 7 -p ack -e 40 -c 0 -i 8352 -a 0 -x {10.0 9.0 4171 ------- null} h -t 4.7159 -s 10 -d 7 -p ack -e 40 -c 0 -i 8352 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.71637 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8339 -a 0 -x {9.0 10.0 4174 ------- null} - -t 4.71637 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8339 -a 0 -x {9.0 10.0 4174 ------- null} h -t 4.71637 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8339 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.71643 -s 0 -d 9 -p ack -e 40 -c 0 -i 8342 -a 0 -x {10.0 9.0 4166 ------- null} + -t 4.71643 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8353 -a 0 -x {9.0 10.0 4181 ------- null} - -t 4.71643 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8353 -a 0 -x {9.0 10.0 4181 ------- null} h -t 4.71643 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8353 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.71654 -s 0 -d 9 -p ack -e 40 -c 0 -i 8346 -a 0 -x {10.0 9.0 4168 ------- null} - -t 4.71654 -s 0 -d 9 -p ack -e 40 -c 0 -i 8346 -a 0 -x {10.0 9.0 4168 ------- null} h -t 4.71654 -s 0 -d 9 -p ack -e 40 -c 0 -i 8346 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.71685 -s 10 -d 7 -p ack -e 40 -c 0 -i 8350 -a 0 -x {10.0 9.0 4170 ------- null} + -t 4.71685 -s 7 -d 0 -p ack -e 40 -c 0 -i 8350 -a 0 -x {10.0 9.0 4170 ------- null} h -t 4.71685 -s 7 -d 8 -p ack -e 40 -c 0 -i 8350 -a 0 -x {10.0 9.0 4170 ------- null} r -t 4.71699 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8335 -a 0 -x {9.0 10.0 4172 ------- null} + -t 4.71699 -s 10 -d 7 -p ack -e 40 -c 0 -i 8354 -a 0 -x {10.0 9.0 4172 ------- null} - -t 4.71699 -s 10 -d 7 -p ack -e 40 -c 0 -i 8354 -a 0 -x {10.0 9.0 4172 ------- null} h -t 4.71699 -s 10 -d 7 -p ack -e 40 -c 0 -i 8354 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.71704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8349 -a 0 -x {9.0 10.0 4179 ------- null} + -t 4.71704 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8349 -a 0 -x {9.0 10.0 4179 ------- null} h -t 4.71704 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8349 -a 0 -x {9.0 10.0 4179 ------- null} r -t 4.71739 -s 0 -d 9 -p ack -e 40 -c 0 -i 8344 -a 0 -x {10.0 9.0 4167 ------- null} + -t 4.71739 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8355 -a 0 -x {9.0 10.0 4182 ------- null} - -t 4.71739 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8355 -a 0 -x {9.0 10.0 4182 ------- null} h -t 4.71739 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8355 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.71746 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8341 -a 0 -x {9.0 10.0 4175 ------- null} - -t 4.71746 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8341 -a 0 -x {9.0 10.0 4175 ------- null} h -t 4.71746 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8341 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.71752 -s 0 -d 9 -p ack -e 40 -c 0 -i 8348 -a 0 -x {10.0 9.0 4169 ------- null} - -t 4.71752 -s 0 -d 9 -p ack -e 40 -c 0 -i 8348 -a 0 -x {10.0 9.0 4169 ------- null} h -t 4.71752 -s 0 -d 9 -p ack -e 40 -c 0 -i 8348 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.71794 -s 10 -d 7 -p ack -e 40 -c 0 -i 8352 -a 0 -x {10.0 9.0 4171 ------- null} + -t 4.71794 -s 7 -d 0 -p ack -e 40 -c 0 -i 8352 -a 0 -x {10.0 9.0 4171 ------- null} h -t 4.71794 -s 7 -d 8 -p ack -e 40 -c 0 -i 8352 -a 0 -x {10.0 9.0 4171 ------- null} r -t 4.718 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8351 -a 0 -x {9.0 10.0 4180 ------- null} + -t 4.718 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8351 -a 0 -x {9.0 10.0 4180 ------- null} h -t 4.718 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8351 -a 0 -x {9.0 10.0 4180 ------- null} r -t 4.71808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8337 -a 0 -x {9.0 10.0 4173 ------- null} + -t 4.71808 -s 10 -d 7 -p ack -e 40 -c 0 -i 8356 -a 0 -x {10.0 9.0 4173 ------- null} - -t 4.71808 -s 10 -d 7 -p ack -e 40 -c 0 -i 8356 -a 0 -x {10.0 9.0 4173 ------- null} h -t 4.71808 -s 10 -d 7 -p ack -e 40 -c 0 -i 8356 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.71854 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8343 -a 0 -x {9.0 10.0 4176 ------- null} - -t 4.71854 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8343 -a 0 -x {9.0 10.0 4176 ------- null} h -t 4.71854 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8343 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.71858 -s 0 -d 9 -p ack -e 40 -c 0 -i 8346 -a 0 -x {10.0 9.0 4168 ------- null} + -t 4.71858 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8357 -a 0 -x {9.0 10.0 4183 ------- null} - -t 4.71858 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8357 -a 0 -x {9.0 10.0 4183 ------- null} h -t 4.71858 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8357 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.71875 -s 0 -d 9 -p ack -e 40 -c 0 -i 8350 -a 0 -x {10.0 9.0 4170 ------- null} - -t 4.71875 -s 0 -d 9 -p ack -e 40 -c 0 -i 8350 -a 0 -x {10.0 9.0 4170 ------- null} h -t 4.71875 -s 0 -d 9 -p ack -e 40 -c 0 -i 8350 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.71902 -s 10 -d 7 -p ack -e 40 -c 0 -i 8354 -a 0 -x {10.0 9.0 4172 ------- null} + -t 4.71902 -s 7 -d 0 -p ack -e 40 -c 0 -i 8354 -a 0 -x {10.0 9.0 4172 ------- null} h -t 4.71902 -s 7 -d 8 -p ack -e 40 -c 0 -i 8354 -a 0 -x {10.0 9.0 4172 ------- null} r -t 4.71917 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8339 -a 0 -x {9.0 10.0 4174 ------- null} + -t 4.71917 -s 10 -d 7 -p ack -e 40 -c 0 -i 8358 -a 0 -x {10.0 9.0 4174 ------- null} - -t 4.71917 -s 10 -d 7 -p ack -e 40 -c 0 -i 8358 -a 0 -x {10.0 9.0 4174 ------- null} h -t 4.71917 -s 10 -d 7 -p ack -e 40 -c 0 -i 8358 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.71923 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8353 -a 0 -x {9.0 10.0 4181 ------- null} + -t 4.71923 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8353 -a 0 -x {9.0 10.0 4181 ------- null} h -t 4.71923 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8353 -a 0 -x {9.0 10.0 4181 ------- null} r -t 4.71955 -s 0 -d 9 -p ack -e 40 -c 0 -i 8348 -a 0 -x {10.0 9.0 4169 ------- null} + -t 4.71955 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8359 -a 0 -x {9.0 10.0 4184 ------- null} - -t 4.71955 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8359 -a 0 -x {9.0 10.0 4184 ------- null} h -t 4.71955 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8359 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.71963 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8345 -a 0 -x {9.0 10.0 4177 ------- null} - -t 4.71963 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8345 -a 0 -x {9.0 10.0 4177 ------- null} h -t 4.71963 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8345 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.71974 -s 0 -d 9 -p ack -e 40 -c 0 -i 8352 -a 0 -x {10.0 9.0 4171 ------- null} - -t 4.71974 -s 0 -d 9 -p ack -e 40 -c 0 -i 8352 -a 0 -x {10.0 9.0 4171 ------- null} h -t 4.71974 -s 0 -d 9 -p ack -e 40 -c 0 -i 8352 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.72011 -s 10 -d 7 -p ack -e 40 -c 0 -i 8356 -a 0 -x {10.0 9.0 4173 ------- null} + -t 4.72011 -s 7 -d 0 -p ack -e 40 -c 0 -i 8356 -a 0 -x {10.0 9.0 4173 ------- null} h -t 4.72011 -s 7 -d 8 -p ack -e 40 -c 0 -i 8356 -a 0 -x {10.0 9.0 4173 ------- null} r -t 4.72019 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8355 -a 0 -x {9.0 10.0 4182 ------- null} + -t 4.72019 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8355 -a 0 -x {9.0 10.0 4182 ------- null} h -t 4.72019 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8355 -a 0 -x {9.0 10.0 4182 ------- null} r -t 4.72026 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8341 -a 0 -x {9.0 10.0 4175 ------- null} + -t 4.72026 -s 10 -d 7 -p ack -e 40 -c 0 -i 8360 -a 0 -x {10.0 9.0 4175 ------- null} - -t 4.72026 -s 10 -d 7 -p ack -e 40 -c 0 -i 8360 -a 0 -x {10.0 9.0 4175 ------- null} h -t 4.72026 -s 10 -d 7 -p ack -e 40 -c 0 -i 8360 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.72072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8347 -a 0 -x {9.0 10.0 4178 ------- null} - -t 4.72072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8347 -a 0 -x {9.0 10.0 4178 ------- null} h -t 4.72072 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8347 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.72078 -s 0 -d 9 -p ack -e 40 -c 0 -i 8350 -a 0 -x {10.0 9.0 4170 ------- null} + -t 4.72078 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8361 -a 0 -x {9.0 10.0 4185 ------- null} - -t 4.72078 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8361 -a 0 -x {9.0 10.0 4185 ------- null} h -t 4.72078 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8361 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.7209 -s 0 -d 9 -p ack -e 40 -c 0 -i 8354 -a 0 -x {10.0 9.0 4172 ------- null} - -t 4.7209 -s 0 -d 9 -p ack -e 40 -c 0 -i 8354 -a 0 -x {10.0 9.0 4172 ------- null} h -t 4.7209 -s 0 -d 9 -p ack -e 40 -c 0 -i 8354 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.7212 -s 10 -d 7 -p ack -e 40 -c 0 -i 8358 -a 0 -x {10.0 9.0 4174 ------- null} + -t 4.7212 -s 7 -d 0 -p ack -e 40 -c 0 -i 8358 -a 0 -x {10.0 9.0 4174 ------- null} h -t 4.7212 -s 7 -d 8 -p ack -e 40 -c 0 -i 8358 -a 0 -x {10.0 9.0 4174 ------- null} r -t 4.72134 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8343 -a 0 -x {9.0 10.0 4176 ------- null} + -t 4.72134 -s 10 -d 7 -p ack -e 40 -c 0 -i 8362 -a 0 -x {10.0 9.0 4176 ------- null} - -t 4.72134 -s 10 -d 7 -p ack -e 40 -c 0 -i 8362 -a 0 -x {10.0 9.0 4176 ------- null} h -t 4.72134 -s 10 -d 7 -p ack -e 40 -c 0 -i 8362 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.72138 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8357 -a 0 -x {9.0 10.0 4183 ------- null} + -t 4.72138 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8357 -a 0 -x {9.0 10.0 4183 ------- null} h -t 4.72138 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8357 -a 0 -x {9.0 10.0 4183 ------- null} r -t 4.72178 -s 0 -d 9 -p ack -e 40 -c 0 -i 8352 -a 0 -x {10.0 9.0 4171 ------- null} + -t 4.72178 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8363 -a 0 -x {9.0 10.0 4186 ------- null} - -t 4.72178 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8363 -a 0 -x {9.0 10.0 4186 ------- null} h -t 4.72178 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8363 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.72181 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8349 -a 0 -x {9.0 10.0 4179 ------- null} - -t 4.72181 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8349 -a 0 -x {9.0 10.0 4179 ------- null} h -t 4.72181 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8349 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.72187 -s 0 -d 9 -p ack -e 40 -c 0 -i 8356 -a 0 -x {10.0 9.0 4173 ------- null} - -t 4.72187 -s 0 -d 9 -p ack -e 40 -c 0 -i 8356 -a 0 -x {10.0 9.0 4173 ------- null} h -t 4.72187 -s 0 -d 9 -p ack -e 40 -c 0 -i 8356 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.72229 -s 10 -d 7 -p ack -e 40 -c 0 -i 8360 -a 0 -x {10.0 9.0 4175 ------- null} + -t 4.72229 -s 7 -d 0 -p ack -e 40 -c 0 -i 8360 -a 0 -x {10.0 9.0 4175 ------- null} h -t 4.72229 -s 7 -d 8 -p ack -e 40 -c 0 -i 8360 -a 0 -x {10.0 9.0 4175 ------- null} r -t 4.72235 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8359 -a 0 -x {9.0 10.0 4184 ------- null} + -t 4.72235 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8359 -a 0 -x {9.0 10.0 4184 ------- null} h -t 4.72235 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8359 -a 0 -x {9.0 10.0 4184 ------- null} r -t 4.72243 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8345 -a 0 -x {9.0 10.0 4177 ------- null} + -t 4.72243 -s 10 -d 7 -p ack -e 40 -c 0 -i 8364 -a 0 -x {10.0 9.0 4177 ------- null} - -t 4.72243 -s 10 -d 7 -p ack -e 40 -c 0 -i 8364 -a 0 -x {10.0 9.0 4177 ------- null} h -t 4.72243 -s 10 -d 7 -p ack -e 40 -c 0 -i 8364 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.7229 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8351 -a 0 -x {9.0 10.0 4180 ------- null} - -t 4.7229 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8351 -a 0 -x {9.0 10.0 4180 ------- null} h -t 4.7229 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8351 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.72293 -s 0 -d 9 -p ack -e 40 -c 0 -i 8354 -a 0 -x {10.0 9.0 4172 ------- null} + -t 4.72293 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8365 -a 0 -x {9.0 10.0 4187 ------- null} - -t 4.72293 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8365 -a 0 -x {9.0 10.0 4187 ------- null} h -t 4.72293 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8365 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.72307 -s 0 -d 9 -p ack -e 40 -c 0 -i 8358 -a 0 -x {10.0 9.0 4174 ------- null} - -t 4.72307 -s 0 -d 9 -p ack -e 40 -c 0 -i 8358 -a 0 -x {10.0 9.0 4174 ------- null} h -t 4.72307 -s 0 -d 9 -p ack -e 40 -c 0 -i 8358 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.72338 -s 10 -d 7 -p ack -e 40 -c 0 -i 8362 -a 0 -x {10.0 9.0 4176 ------- null} + -t 4.72338 -s 7 -d 0 -p ack -e 40 -c 0 -i 8362 -a 0 -x {10.0 9.0 4176 ------- null} h -t 4.72338 -s 7 -d 8 -p ack -e 40 -c 0 -i 8362 -a 0 -x {10.0 9.0 4176 ------- null} r -t 4.72352 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8347 -a 0 -x {9.0 10.0 4178 ------- null} + -t 4.72352 -s 10 -d 7 -p ack -e 40 -c 0 -i 8366 -a 0 -x {10.0 9.0 4178 ------- null} - -t 4.72352 -s 10 -d 7 -p ack -e 40 -c 0 -i 8366 -a 0 -x {10.0 9.0 4178 ------- null} h -t 4.72352 -s 10 -d 7 -p ack -e 40 -c 0 -i 8366 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.72358 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8361 -a 0 -x {9.0 10.0 4185 ------- null} + -t 4.72358 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8361 -a 0 -x {9.0 10.0 4185 ------- null} h -t 4.72358 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8361 -a 0 -x {9.0 10.0 4185 ------- null} r -t 4.7239 -s 0 -d 9 -p ack -e 40 -c 0 -i 8356 -a 0 -x {10.0 9.0 4173 ------- null} + -t 4.7239 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8367 -a 0 -x {9.0 10.0 4188 ------- null} - -t 4.7239 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8367 -a 0 -x {9.0 10.0 4188 ------- null} h -t 4.7239 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8367 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.72398 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8353 -a 0 -x {9.0 10.0 4181 ------- null} - -t 4.72398 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8353 -a 0 -x {9.0 10.0 4181 ------- null} h -t 4.72398 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8353 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.72408 -s 0 -d 9 -p ack -e 40 -c 0 -i 8360 -a 0 -x {10.0 9.0 4175 ------- null} - -t 4.72408 -s 0 -d 9 -p ack -e 40 -c 0 -i 8360 -a 0 -x {10.0 9.0 4175 ------- null} h -t 4.72408 -s 0 -d 9 -p ack -e 40 -c 0 -i 8360 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.72446 -s 10 -d 7 -p ack -e 40 -c 0 -i 8364 -a 0 -x {10.0 9.0 4177 ------- null} + -t 4.72446 -s 7 -d 0 -p ack -e 40 -c 0 -i 8364 -a 0 -x {10.0 9.0 4177 ------- null} h -t 4.72446 -s 7 -d 8 -p ack -e 40 -c 0 -i 8364 -a 0 -x {10.0 9.0 4177 ------- null} r -t 4.72458 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8363 -a 0 -x {9.0 10.0 4186 ------- null} + -t 4.72458 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8363 -a 0 -x {9.0 10.0 4186 ------- null} h -t 4.72458 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8363 -a 0 -x {9.0 10.0 4186 ------- null} r -t 4.72461 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8349 -a 0 -x {9.0 10.0 4179 ------- null} + -t 4.72461 -s 10 -d 7 -p ack -e 40 -c 0 -i 8368 -a 0 -x {10.0 9.0 4179 ------- null} - -t 4.72461 -s 10 -d 7 -p ack -e 40 -c 0 -i 8368 -a 0 -x {10.0 9.0 4179 ------- null} h -t 4.72461 -s 10 -d 7 -p ack -e 40 -c 0 -i 8368 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.72507 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8355 -a 0 -x {9.0 10.0 4182 ------- null} - -t 4.72507 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8355 -a 0 -x {9.0 10.0 4182 ------- null} h -t 4.72507 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8355 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.7251 -s 0 -d 9 -p ack -e 40 -c 0 -i 8358 -a 0 -x {10.0 9.0 4174 ------- null} + -t 4.7251 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8369 -a 0 -x {9.0 10.0 4189 ------- null} - -t 4.7251 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8369 -a 0 -x {9.0 10.0 4189 ------- null} h -t 4.7251 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8369 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.72538 -s 0 -d 9 -p ack -e 40 -c 0 -i 8362 -a 0 -x {10.0 9.0 4176 ------- null} - -t 4.72538 -s 0 -d 9 -p ack -e 40 -c 0 -i 8362 -a 0 -x {10.0 9.0 4176 ------- null} h -t 4.72538 -s 0 -d 9 -p ack -e 40 -c 0 -i 8362 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.72555 -s 10 -d 7 -p ack -e 40 -c 0 -i 8366 -a 0 -x {10.0 9.0 4178 ------- null} + -t 4.72555 -s 7 -d 0 -p ack -e 40 -c 0 -i 8366 -a 0 -x {10.0 9.0 4178 ------- null} h -t 4.72555 -s 7 -d 8 -p ack -e 40 -c 0 -i 8366 -a 0 -x {10.0 9.0 4178 ------- null} r -t 4.7257 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8351 -a 0 -x {9.0 10.0 4180 ------- null} + -t 4.7257 -s 10 -d 7 -p ack -e 40 -c 0 -i 8370 -a 0 -x {10.0 9.0 4180 ------- null} - -t 4.7257 -s 10 -d 7 -p ack -e 40 -c 0 -i 8370 -a 0 -x {10.0 9.0 4180 ------- null} h -t 4.7257 -s 10 -d 7 -p ack -e 40 -c 0 -i 8370 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.72573 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8365 -a 0 -x {9.0 10.0 4187 ------- null} + -t 4.72573 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8365 -a 0 -x {9.0 10.0 4187 ------- null} h -t 4.72573 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8365 -a 0 -x {9.0 10.0 4187 ------- null} r -t 4.72611 -s 0 -d 9 -p ack -e 40 -c 0 -i 8360 -a 0 -x {10.0 9.0 4175 ------- null} + -t 4.72611 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8371 -a 0 -x {9.0 10.0 4190 ------- null} - -t 4.72611 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8371 -a 0 -x {9.0 10.0 4190 ------- null} h -t 4.72611 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8371 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.72643 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8357 -a 0 -x {9.0 10.0 4183 ------- null} - -t 4.72643 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8357 -a 0 -x {9.0 10.0 4183 ------- null} h -t 4.72643 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8357 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.7265 -s 0 -d 9 -p ack -e 40 -c 0 -i 8364 -a 0 -x {10.0 9.0 4177 ------- null} - -t 4.7265 -s 0 -d 9 -p ack -e 40 -c 0 -i 8364 -a 0 -x {10.0 9.0 4177 ------- null} h -t 4.7265 -s 0 -d 9 -p ack -e 40 -c 0 -i 8364 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.72664 -s 10 -d 7 -p ack -e 40 -c 0 -i 8368 -a 0 -x {10.0 9.0 4179 ------- null} + -t 4.72664 -s 7 -d 0 -p ack -e 40 -c 0 -i 8368 -a 0 -x {10.0 9.0 4179 ------- null} h -t 4.72664 -s 7 -d 8 -p ack -e 40 -c 0 -i 8368 -a 0 -x {10.0 9.0 4179 ------- null} r -t 4.7267 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8367 -a 0 -x {9.0 10.0 4188 ------- null} + -t 4.7267 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8367 -a 0 -x {9.0 10.0 4188 ------- null} h -t 4.7267 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8367 -a 0 -x {9.0 10.0 4188 ------- null} r -t 4.72678 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8353 -a 0 -x {9.0 10.0 4181 ------- null} + -t 4.72678 -s 10 -d 7 -p ack -e 40 -c 0 -i 8372 -a 0 -x {10.0 9.0 4181 ------- null} - -t 4.72678 -s 10 -d 7 -p ack -e 40 -c 0 -i 8372 -a 0 -x {10.0 9.0 4181 ------- null} h -t 4.72678 -s 10 -d 7 -p ack -e 40 -c 0 -i 8372 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.72741 -s 0 -d 9 -p ack -e 40 -c 0 -i 8362 -a 0 -x {10.0 9.0 4176 ------- null} + -t 4.72741 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8373 -a 0 -x {9.0 10.0 4191 ------- null} - -t 4.72741 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8373 -a 0 -x {9.0 10.0 4191 ------- null} h -t 4.72741 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8373 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.72752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8359 -a 0 -x {9.0 10.0 4184 ------- null} - -t 4.72752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8359 -a 0 -x {9.0 10.0 4184 ------- null} h -t 4.72752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8359 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.72765 -s 0 -d 9 -p ack -e 40 -c 0 -i 8366 -a 0 -x {10.0 9.0 4178 ------- null} - -t 4.72765 -s 0 -d 9 -p ack -e 40 -c 0 -i 8366 -a 0 -x {10.0 9.0 4178 ------- null} h -t 4.72765 -s 0 -d 9 -p ack -e 40 -c 0 -i 8366 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.72773 -s 10 -d 7 -p ack -e 40 -c 0 -i 8370 -a 0 -x {10.0 9.0 4180 ------- null} + -t 4.72773 -s 7 -d 0 -p ack -e 40 -c 0 -i 8370 -a 0 -x {10.0 9.0 4180 ------- null} h -t 4.72773 -s 7 -d 8 -p ack -e 40 -c 0 -i 8370 -a 0 -x {10.0 9.0 4180 ------- null} r -t 4.72787 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8355 -a 0 -x {9.0 10.0 4182 ------- null} + -t 4.72787 -s 10 -d 7 -p ack -e 40 -c 0 -i 8374 -a 0 -x {10.0 9.0 4182 ------- null} - -t 4.72787 -s 10 -d 7 -p ack -e 40 -c 0 -i 8374 -a 0 -x {10.0 9.0 4182 ------- null} h -t 4.72787 -s 10 -d 7 -p ack -e 40 -c 0 -i 8374 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.7279 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8369 -a 0 -x {9.0 10.0 4189 ------- null} + -t 4.7279 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8369 -a 0 -x {9.0 10.0 4189 ------- null} h -t 4.7279 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8369 -a 0 -x {9.0 10.0 4189 ------- null} r -t 4.72853 -s 0 -d 9 -p ack -e 40 -c 0 -i 8364 -a 0 -x {10.0 9.0 4177 ------- null} + -t 4.72853 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8375 -a 0 -x {9.0 10.0 4192 ------- null} - -t 4.72853 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8375 -a 0 -x {9.0 10.0 4192 ------- null} h -t 4.72853 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8375 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.72861 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8361 -a 0 -x {9.0 10.0 4185 ------- null} - -t 4.72861 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8361 -a 0 -x {9.0 10.0 4185 ------- null} h -t 4.72861 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8361 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.72875 -s 0 -d 9 -p ack -e 40 -c 0 -i 8368 -a 0 -x {10.0 9.0 4179 ------- null} - -t 4.72875 -s 0 -d 9 -p ack -e 40 -c 0 -i 8368 -a 0 -x {10.0 9.0 4179 ------- null} h -t 4.72875 -s 0 -d 9 -p ack -e 40 -c 0 -i 8368 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.72882 -s 10 -d 7 -p ack -e 40 -c 0 -i 8372 -a 0 -x {10.0 9.0 4181 ------- null} + -t 4.72882 -s 7 -d 0 -p ack -e 40 -c 0 -i 8372 -a 0 -x {10.0 9.0 4181 ------- null} h -t 4.72882 -s 7 -d 8 -p ack -e 40 -c 0 -i 8372 -a 0 -x {10.0 9.0 4181 ------- null} r -t 4.72891 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8371 -a 0 -x {9.0 10.0 4190 ------- null} + -t 4.72891 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8371 -a 0 -x {9.0 10.0 4190 ------- null} h -t 4.72891 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8371 -a 0 -x {9.0 10.0 4190 ------- null} r -t 4.72923 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8357 -a 0 -x {9.0 10.0 4183 ------- null} + -t 4.72923 -s 10 -d 7 -p ack -e 40 -c 0 -i 8376 -a 0 -x {10.0 9.0 4183 ------- null} - -t 4.72923 -s 10 -d 7 -p ack -e 40 -c 0 -i 8376 -a 0 -x {10.0 9.0 4183 ------- null} h -t 4.72923 -s 10 -d 7 -p ack -e 40 -c 0 -i 8376 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.72968 -s 0 -d 9 -p ack -e 40 -c 0 -i 8366 -a 0 -x {10.0 9.0 4178 ------- null} + -t 4.72968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8377 -a 0 -x {9.0 10.0 4193 ------- null} - -t 4.72968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8377 -a 0 -x {9.0 10.0 4193 ------- null} h -t 4.72968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8377 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.7297 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8363 -a 0 -x {9.0 10.0 4186 ------- null} - -t 4.7297 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8363 -a 0 -x {9.0 10.0 4186 ------- null} h -t 4.7297 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8363 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.7299 -s 10 -d 7 -p ack -e 40 -c 0 -i 8374 -a 0 -x {10.0 9.0 4182 ------- null} + -t 4.7299 -s 7 -d 0 -p ack -e 40 -c 0 -i 8374 -a 0 -x {10.0 9.0 4182 ------- null} h -t 4.7299 -s 7 -d 8 -p ack -e 40 -c 0 -i 8374 -a 0 -x {10.0 9.0 4182 ------- null} + -t 4.72992 -s 0 -d 9 -p ack -e 40 -c 0 -i 8370 -a 0 -x {10.0 9.0 4180 ------- null} - -t 4.72992 -s 0 -d 9 -p ack -e 40 -c 0 -i 8370 -a 0 -x {10.0 9.0 4180 ------- null} h -t 4.72992 -s 0 -d 9 -p ack -e 40 -c 0 -i 8370 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.73021 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8373 -a 0 -x {9.0 10.0 4191 ------- null} + -t 4.73021 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8373 -a 0 -x {9.0 10.0 4191 ------- null} h -t 4.73021 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8373 -a 0 -x {9.0 10.0 4191 ------- null} r -t 4.73032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8359 -a 0 -x {9.0 10.0 4184 ------- null} + -t 4.73032 -s 10 -d 7 -p ack -e 40 -c 0 -i 8378 -a 0 -x {10.0 9.0 4184 ------- null} - -t 4.73032 -s 10 -d 7 -p ack -e 40 -c 0 -i 8378 -a 0 -x {10.0 9.0 4184 ------- null} h -t 4.73032 -s 10 -d 7 -p ack -e 40 -c 0 -i 8378 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.73078 -s 0 -d 9 -p ack -e 40 -c 0 -i 8368 -a 0 -x {10.0 9.0 4179 ------- null} + -t 4.73078 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8379 -a 0 -x {9.0 10.0 4194 ------- null} - -t 4.73078 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8379 -a 0 -x {9.0 10.0 4194 ------- null} h -t 4.73078 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8379 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.73078 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8365 -a 0 -x {9.0 10.0 4187 ------- null} - -t 4.73078 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8365 -a 0 -x {9.0 10.0 4187 ------- null} h -t 4.73078 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8365 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.73098 -s 0 -d 9 -p ack -e 40 -c 0 -i 8372 -a 0 -x {10.0 9.0 4181 ------- null} - -t 4.73098 -s 0 -d 9 -p ack -e 40 -c 0 -i 8372 -a 0 -x {10.0 9.0 4181 ------- null} h -t 4.73098 -s 0 -d 9 -p ack -e 40 -c 0 -i 8372 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.73126 -s 10 -d 7 -p ack -e 40 -c 0 -i 8376 -a 0 -x {10.0 9.0 4183 ------- null} + -t 4.73126 -s 7 -d 0 -p ack -e 40 -c 0 -i 8376 -a 0 -x {10.0 9.0 4183 ------- null} h -t 4.73126 -s 7 -d 8 -p ack -e 40 -c 0 -i 8376 -a 0 -x {10.0 9.0 4183 ------- null} r -t 4.73133 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8375 -a 0 -x {9.0 10.0 4192 ------- null} + -t 4.73133 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8375 -a 0 -x {9.0 10.0 4192 ------- null} h -t 4.73133 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8375 -a 0 -x {9.0 10.0 4192 ------- null} r -t 4.73141 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8361 -a 0 -x {9.0 10.0 4185 ------- null} + -t 4.73141 -s 10 -d 7 -p ack -e 40 -c 0 -i 8380 -a 0 -x {10.0 9.0 4185 ------- null} - -t 4.73141 -s 10 -d 7 -p ack -e 40 -c 0 -i 8380 -a 0 -x {10.0 9.0 4185 ------- null} h -t 4.73141 -s 10 -d 7 -p ack -e 40 -c 0 -i 8380 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.73187 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8367 -a 0 -x {9.0 10.0 4188 ------- null} - -t 4.73187 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8367 -a 0 -x {9.0 10.0 4188 ------- null} h -t 4.73187 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8367 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.73195 -s 0 -d 9 -p ack -e 40 -c 0 -i 8370 -a 0 -x {10.0 9.0 4180 ------- null} + -t 4.73195 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8381 -a 0 -x {9.0 10.0 4195 ------- null} - -t 4.73195 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8381 -a 0 -x {9.0 10.0 4195 ------- null} h -t 4.73195 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8381 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.73218 -s 0 -d 9 -p ack -e 40 -c 0 -i 8374 -a 0 -x {10.0 9.0 4182 ------- null} - -t 4.73218 -s 0 -d 9 -p ack -e 40 -c 0 -i 8374 -a 0 -x {10.0 9.0 4182 ------- null} h -t 4.73218 -s 0 -d 9 -p ack -e 40 -c 0 -i 8374 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.73235 -s 10 -d 7 -p ack -e 40 -c 0 -i 8378 -a 0 -x {10.0 9.0 4184 ------- null} + -t 4.73235 -s 7 -d 0 -p ack -e 40 -c 0 -i 8378 -a 0 -x {10.0 9.0 4184 ------- null} h -t 4.73235 -s 7 -d 8 -p ack -e 40 -c 0 -i 8378 -a 0 -x {10.0 9.0 4184 ------- null} r -t 4.73248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8377 -a 0 -x {9.0 10.0 4193 ------- null} + -t 4.73248 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8377 -a 0 -x {9.0 10.0 4193 ------- null} h -t 4.73248 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8377 -a 0 -x {9.0 10.0 4193 ------- null} r -t 4.7325 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8363 -a 0 -x {9.0 10.0 4186 ------- null} + -t 4.7325 -s 10 -d 7 -p ack -e 40 -c 0 -i 8382 -a 0 -x {10.0 9.0 4186 ------- null} - -t 4.7325 -s 10 -d 7 -p ack -e 40 -c 0 -i 8382 -a 0 -x {10.0 9.0 4186 ------- null} h -t 4.7325 -s 10 -d 7 -p ack -e 40 -c 0 -i 8382 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.73301 -s 0 -d 9 -p ack -e 40 -c 0 -i 8372 -a 0 -x {10.0 9.0 4181 ------- null} + -t 4.73301 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8383 -a 0 -x {9.0 10.0 4196 ------- null} - -t 4.73301 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8383 -a 0 -x {9.0 10.0 4196 ------- null} h -t 4.73301 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8383 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.73323 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8369 -a 0 -x {9.0 10.0 4189 ------- null} - -t 4.73323 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8369 -a 0 -x {9.0 10.0 4189 ------- null} h -t 4.73323 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8369 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.73344 -s 10 -d 7 -p ack -e 40 -c 0 -i 8380 -a 0 -x {10.0 9.0 4185 ------- null} + -t 4.73344 -s 7 -d 0 -p ack -e 40 -c 0 -i 8380 -a 0 -x {10.0 9.0 4185 ------- null} h -t 4.73344 -s 7 -d 8 -p ack -e 40 -c 0 -i 8380 -a 0 -x {10.0 9.0 4185 ------- null} + -t 4.73347 -s 0 -d 9 -p ack -e 40 -c 0 -i 8376 -a 0 -x {10.0 9.0 4183 ------- null} - -t 4.73347 -s 0 -d 9 -p ack -e 40 -c 0 -i 8376 -a 0 -x {10.0 9.0 4183 ------- null} h -t 4.73347 -s 0 -d 9 -p ack -e 40 -c 0 -i 8376 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.73358 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8379 -a 0 -x {9.0 10.0 4194 ------- null} + -t 4.73358 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8379 -a 0 -x {9.0 10.0 4194 ------- null} h -t 4.73358 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8379 -a 0 -x {9.0 10.0 4194 ------- null} r -t 4.73358 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8365 -a 0 -x {9.0 10.0 4187 ------- null} + -t 4.73358 -s 10 -d 7 -p ack -e 40 -c 0 -i 8384 -a 0 -x {10.0 9.0 4187 ------- null} - -t 4.73358 -s 10 -d 7 -p ack -e 40 -c 0 -i 8384 -a 0 -x {10.0 9.0 4187 ------- null} h -t 4.73358 -s 10 -d 7 -p ack -e 40 -c 0 -i 8384 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.73421 -s 0 -d 9 -p ack -e 40 -c 0 -i 8374 -a 0 -x {10.0 9.0 4182 ------- null} + -t 4.73421 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8385 -a 0 -x {9.0 10.0 4197 ------- null} - -t 4.73421 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8385 -a 0 -x {9.0 10.0 4197 ------- null} h -t 4.73421 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8385 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.73432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8371 -a 0 -x {9.0 10.0 4190 ------- null} - -t 4.73432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8371 -a 0 -x {9.0 10.0 4190 ------- null} h -t 4.73432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8371 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.7345 -s 0 -d 9 -p ack -e 40 -c 0 -i 8378 -a 0 -x {10.0 9.0 4184 ------- null} - -t 4.7345 -s 0 -d 9 -p ack -e 40 -c 0 -i 8378 -a 0 -x {10.0 9.0 4184 ------- null} h -t 4.7345 -s 0 -d 9 -p ack -e 40 -c 0 -i 8378 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.73453 -s 10 -d 7 -p ack -e 40 -c 0 -i 8382 -a 0 -x {10.0 9.0 4186 ------- null} + -t 4.73453 -s 7 -d 0 -p ack -e 40 -c 0 -i 8382 -a 0 -x {10.0 9.0 4186 ------- null} h -t 4.73453 -s 7 -d 8 -p ack -e 40 -c 0 -i 8382 -a 0 -x {10.0 9.0 4186 ------- null} r -t 4.73467 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8367 -a 0 -x {9.0 10.0 4188 ------- null} + -t 4.73467 -s 10 -d 7 -p ack -e 40 -c 0 -i 8386 -a 0 -x {10.0 9.0 4188 ------- null} - -t 4.73467 -s 10 -d 7 -p ack -e 40 -c 0 -i 8386 -a 0 -x {10.0 9.0 4188 ------- null} h -t 4.73467 -s 10 -d 7 -p ack -e 40 -c 0 -i 8386 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.73475 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8381 -a 0 -x {9.0 10.0 4195 ------- null} + -t 4.73475 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8381 -a 0 -x {9.0 10.0 4195 ------- null} h -t 4.73475 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8381 -a 0 -x {9.0 10.0 4195 ------- null} + -t 4.73541 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8373 -a 0 -x {9.0 10.0 4191 ------- null} - -t 4.73541 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8373 -a 0 -x {9.0 10.0 4191 ------- null} h -t 4.73541 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8373 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.7355 -s 0 -d 9 -p ack -e 40 -c 0 -i 8376 -a 0 -x {10.0 9.0 4183 ------- null} + -t 4.7355 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8387 -a 0 -x {9.0 10.0 4198 ------- null} - -t 4.7355 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8387 -a 0 -x {9.0 10.0 4198 ------- null} h -t 4.7355 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8387 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.73562 -s 10 -d 7 -p ack -e 40 -c 0 -i 8384 -a 0 -x {10.0 9.0 4187 ------- null} + -t 4.73562 -s 7 -d 0 -p ack -e 40 -c 0 -i 8384 -a 0 -x {10.0 9.0 4187 ------- null} h -t 4.73562 -s 7 -d 8 -p ack -e 40 -c 0 -i 8384 -a 0 -x {10.0 9.0 4187 ------- null} + -t 4.73565 -s 0 -d 9 -p ack -e 40 -c 0 -i 8380 -a 0 -x {10.0 9.0 4185 ------- null} - -t 4.73565 -s 0 -d 9 -p ack -e 40 -c 0 -i 8380 -a 0 -x {10.0 9.0 4185 ------- null} h -t 4.73565 -s 0 -d 9 -p ack -e 40 -c 0 -i 8380 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.73581 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8383 -a 0 -x {9.0 10.0 4196 ------- null} + -t 4.73581 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8383 -a 0 -x {9.0 10.0 4196 ------- null} h -t 4.73581 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8383 -a 0 -x {9.0 10.0 4196 ------- null} r -t 4.73603 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8369 -a 0 -x {9.0 10.0 4189 ------- null} + -t 4.73603 -s 10 -d 7 -p ack -e 40 -c 0 -i 8388 -a 0 -x {10.0 9.0 4189 ------- null} - -t 4.73603 -s 10 -d 7 -p ack -e 40 -c 0 -i 8388 -a 0 -x {10.0 9.0 4189 ------- null} h -t 4.73603 -s 10 -d 7 -p ack -e 40 -c 0 -i 8388 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.7365 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8375 -a 0 -x {9.0 10.0 4192 ------- null} - -t 4.7365 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8375 -a 0 -x {9.0 10.0 4192 ------- null} h -t 4.7365 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8375 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.73653 -s 0 -d 9 -p ack -e 40 -c 0 -i 8378 -a 0 -x {10.0 9.0 4184 ------- null} + -t 4.73653 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8389 -a 0 -x {9.0 10.0 4199 ------- null} - -t 4.73653 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8389 -a 0 -x {9.0 10.0 4199 ------- null} h -t 4.73653 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8389 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.73661 -s 0 -d 9 -p ack -e 40 -c 0 -i 8382 -a 0 -x {10.0 9.0 4186 ------- null} - -t 4.73661 -s 0 -d 9 -p ack -e 40 -c 0 -i 8382 -a 0 -x {10.0 9.0 4186 ------- null} h -t 4.73661 -s 0 -d 9 -p ack -e 40 -c 0 -i 8382 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.7367 -s 10 -d 7 -p ack -e 40 -c 0 -i 8386 -a 0 -x {10.0 9.0 4188 ------- null} + -t 4.7367 -s 7 -d 0 -p ack -e 40 -c 0 -i 8386 -a 0 -x {10.0 9.0 4188 ------- null} h -t 4.7367 -s 7 -d 8 -p ack -e 40 -c 0 -i 8386 -a 0 -x {10.0 9.0 4188 ------- null} r -t 4.73701 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8385 -a 0 -x {9.0 10.0 4197 ------- null} + -t 4.73701 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8385 -a 0 -x {9.0 10.0 4197 ------- null} h -t 4.73701 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8385 -a 0 -x {9.0 10.0 4197 ------- null} r -t 4.73712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8371 -a 0 -x {9.0 10.0 4190 ------- null} + -t 4.73712 -s 10 -d 7 -p ack -e 40 -c 0 -i 8390 -a 0 -x {10.0 9.0 4190 ------- null} - -t 4.73712 -s 10 -d 7 -p ack -e 40 -c 0 -i 8390 -a 0 -x {10.0 9.0 4190 ------- null} h -t 4.73712 -s 10 -d 7 -p ack -e 40 -c 0 -i 8390 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.73758 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8377 -a 0 -x {9.0 10.0 4193 ------- null} - -t 4.73758 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8377 -a 0 -x {9.0 10.0 4193 ------- null} h -t 4.73758 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8377 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.73768 -s 0 -d 9 -p ack -e 40 -c 0 -i 8380 -a 0 -x {10.0 9.0 4185 ------- null} + -t 4.73768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8391 -a 0 -x {9.0 10.0 4200 ------- null} - -t 4.73768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8391 -a 0 -x {9.0 10.0 4200 ------- null} h -t 4.73768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8391 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.73781 -s 0 -d 9 -p ack -e 40 -c 0 -i 8384 -a 0 -x {10.0 9.0 4187 ------- null} - -t 4.73781 -s 0 -d 9 -p ack -e 40 -c 0 -i 8384 -a 0 -x {10.0 9.0 4187 ------- null} h -t 4.73781 -s 0 -d 9 -p ack -e 40 -c 0 -i 8384 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.73806 -s 10 -d 7 -p ack -e 40 -c 0 -i 8388 -a 0 -x {10.0 9.0 4189 ------- null} + -t 4.73806 -s 7 -d 0 -p ack -e 40 -c 0 -i 8388 -a 0 -x {10.0 9.0 4189 ------- null} h -t 4.73806 -s 7 -d 8 -p ack -e 40 -c 0 -i 8388 -a 0 -x {10.0 9.0 4189 ------- null} r -t 4.73821 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8373 -a 0 -x {9.0 10.0 4191 ------- null} + -t 4.73821 -s 10 -d 7 -p ack -e 40 -c 0 -i 8392 -a 0 -x {10.0 9.0 4191 ------- null} - -t 4.73821 -s 10 -d 7 -p ack -e 40 -c 0 -i 8392 -a 0 -x {10.0 9.0 4191 ------- null} h -t 4.73821 -s 10 -d 7 -p ack -e 40 -c 0 -i 8392 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.7383 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8387 -a 0 -x {9.0 10.0 4198 ------- null} + -t 4.7383 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8387 -a 0 -x {9.0 10.0 4198 ------- null} h -t 4.7383 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8387 -a 0 -x {9.0 10.0 4198 ------- null} r -t 4.73864 -s 0 -d 9 -p ack -e 40 -c 0 -i 8382 -a 0 -x {10.0 9.0 4186 ------- null} + -t 4.73864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8393 -a 0 -x {9.0 10.0 4201 ------- null} - -t 4.73864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8393 -a 0 -x {9.0 10.0 4201 ------- null} h -t 4.73864 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8393 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.73867 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8379 -a 0 -x {9.0 10.0 4194 ------- null} - -t 4.73867 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8379 -a 0 -x {9.0 10.0 4194 ------- null} h -t 4.73867 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8379 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.73894 -s 0 -d 9 -p ack -e 40 -c 0 -i 8386 -a 0 -x {10.0 9.0 4188 ------- null} - -t 4.73894 -s 0 -d 9 -p ack -e 40 -c 0 -i 8386 -a 0 -x {10.0 9.0 4188 ------- null} h -t 4.73894 -s 0 -d 9 -p ack -e 40 -c 0 -i 8386 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.73915 -s 10 -d 7 -p ack -e 40 -c 0 -i 8390 -a 0 -x {10.0 9.0 4190 ------- null} + -t 4.73915 -s 7 -d 0 -p ack -e 40 -c 0 -i 8390 -a 0 -x {10.0 9.0 4190 ------- null} h -t 4.73915 -s 7 -d 8 -p ack -e 40 -c 0 -i 8390 -a 0 -x {10.0 9.0 4190 ------- null} r -t 4.7393 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8375 -a 0 -x {9.0 10.0 4192 ------- null} + -t 4.7393 -s 10 -d 7 -p ack -e 40 -c 0 -i 8394 -a 0 -x {10.0 9.0 4192 ------- null} - -t 4.7393 -s 10 -d 7 -p ack -e 40 -c 0 -i 8394 -a 0 -x {10.0 9.0 4192 ------- null} h -t 4.7393 -s 10 -d 7 -p ack -e 40 -c 0 -i 8394 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.73933 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8389 -a 0 -x {9.0 10.0 4199 ------- null} + -t 4.73933 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8389 -a 0 -x {9.0 10.0 4199 ------- null} h -t 4.73933 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8389 -a 0 -x {9.0 10.0 4199 ------- null} r -t 4.73984 -s 0 -d 9 -p ack -e 40 -c 0 -i 8384 -a 0 -x {10.0 9.0 4187 ------- null} + -t 4.73984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8395 -a 0 -x {9.0 10.0 4202 ------- null} - -t 4.73984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8395 -a 0 -x {9.0 10.0 4202 ------- null} h -t 4.73984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8395 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.73998 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8381 -a 0 -x {9.0 10.0 4195 ------- null} - -t 4.73998 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8381 -a 0 -x {9.0 10.0 4195 ------- null} h -t 4.73998 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8381 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.74016 -s 0 -d 9 -p ack -e 40 -c 0 -i 8388 -a 0 -x {10.0 9.0 4189 ------- null} - -t 4.74016 -s 0 -d 9 -p ack -e 40 -c 0 -i 8388 -a 0 -x {10.0 9.0 4189 ------- null} h -t 4.74016 -s 0 -d 9 -p ack -e 40 -c 0 -i 8388 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.74024 -s 10 -d 7 -p ack -e 40 -c 0 -i 8392 -a 0 -x {10.0 9.0 4191 ------- null} + -t 4.74024 -s 7 -d 0 -p ack -e 40 -c 0 -i 8392 -a 0 -x {10.0 9.0 4191 ------- null} h -t 4.74024 -s 7 -d 8 -p ack -e 40 -c 0 -i 8392 -a 0 -x {10.0 9.0 4191 ------- null} r -t 4.74038 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8377 -a 0 -x {9.0 10.0 4193 ------- null} + -t 4.74038 -s 10 -d 7 -p ack -e 40 -c 0 -i 8396 -a 0 -x {10.0 9.0 4193 ------- null} - -t 4.74038 -s 10 -d 7 -p ack -e 40 -c 0 -i 8396 -a 0 -x {10.0 9.0 4193 ------- null} h -t 4.74038 -s 10 -d 7 -p ack -e 40 -c 0 -i 8396 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.74048 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8391 -a 0 -x {9.0 10.0 4200 ------- null} + -t 4.74048 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8391 -a 0 -x {9.0 10.0 4200 ------- null} h -t 4.74048 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8391 -a 0 -x {9.0 10.0 4200 ------- null} r -t 4.74098 -s 0 -d 9 -p ack -e 40 -c 0 -i 8386 -a 0 -x {10.0 9.0 4188 ------- null} + -t 4.74098 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8397 -a 0 -x {9.0 10.0 4203 ------- null} - -t 4.74098 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8397 -a 0 -x {9.0 10.0 4203 ------- null} h -t 4.74098 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8397 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.74107 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8383 -a 0 -x {9.0 10.0 4196 ------- null} - -t 4.74107 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8383 -a 0 -x {9.0 10.0 4196 ------- null} h -t 4.74107 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8383 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.74114 -s 0 -d 9 -p ack -e 40 -c 0 -i 8390 -a 0 -x {10.0 9.0 4190 ------- null} - -t 4.74114 -s 0 -d 9 -p ack -e 40 -c 0 -i 8390 -a 0 -x {10.0 9.0 4190 ------- null} h -t 4.74114 -s 0 -d 9 -p ack -e 40 -c 0 -i 8390 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.74133 -s 10 -d 7 -p ack -e 40 -c 0 -i 8394 -a 0 -x {10.0 9.0 4192 ------- null} + -t 4.74133 -s 7 -d 0 -p ack -e 40 -c 0 -i 8394 -a 0 -x {10.0 9.0 4192 ------- null} h -t 4.74133 -s 7 -d 8 -p ack -e 40 -c 0 -i 8394 -a 0 -x {10.0 9.0 4192 ------- null} r -t 4.74144 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8393 -a 0 -x {9.0 10.0 4201 ------- null} + -t 4.74144 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8393 -a 0 -x {9.0 10.0 4201 ------- null} h -t 4.74144 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8393 -a 0 -x {9.0 10.0 4201 ------- null} r -t 4.74147 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8379 -a 0 -x {9.0 10.0 4194 ------- null} + -t 4.74147 -s 10 -d 7 -p ack -e 40 -c 0 -i 8398 -a 0 -x {10.0 9.0 4194 ------- null} - -t 4.74147 -s 10 -d 7 -p ack -e 40 -c 0 -i 8398 -a 0 -x {10.0 9.0 4194 ------- null} h -t 4.74147 -s 10 -d 7 -p ack -e 40 -c 0 -i 8398 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.74216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8385 -a 0 -x {9.0 10.0 4197 ------- null} - -t 4.74216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8385 -a 0 -x {9.0 10.0 4197 ------- null} h -t 4.74216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8385 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.74219 -s 0 -d 9 -p ack -e 40 -c 0 -i 8388 -a 0 -x {10.0 9.0 4189 ------- null} + -t 4.74219 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8399 -a 0 -x {9.0 10.0 4204 ------- null} - -t 4.74219 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8399 -a 0 -x {9.0 10.0 4204 ------- null} h -t 4.74219 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8399 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.74232 -s 0 -d 9 -p ack -e 40 -c 0 -i 8392 -a 0 -x {10.0 9.0 4191 ------- null} - -t 4.74232 -s 0 -d 9 -p ack -e 40 -c 0 -i 8392 -a 0 -x {10.0 9.0 4191 ------- null} h -t 4.74232 -s 0 -d 9 -p ack -e 40 -c 0 -i 8392 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.74242 -s 10 -d 7 -p ack -e 40 -c 0 -i 8396 -a 0 -x {10.0 9.0 4193 ------- null} + -t 4.74242 -s 7 -d 0 -p ack -e 40 -c 0 -i 8396 -a 0 -x {10.0 9.0 4193 ------- null} h -t 4.74242 -s 7 -d 8 -p ack -e 40 -c 0 -i 8396 -a 0 -x {10.0 9.0 4193 ------- null} r -t 4.74264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8395 -a 0 -x {9.0 10.0 4202 ------- null} + -t 4.74264 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8395 -a 0 -x {9.0 10.0 4202 ------- null} h -t 4.74264 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8395 -a 0 -x {9.0 10.0 4202 ------- null} r -t 4.74278 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8381 -a 0 -x {9.0 10.0 4195 ------- null} + -t 4.74278 -s 10 -d 7 -p ack -e 40 -c 0 -i 8400 -a 0 -x {10.0 9.0 4195 ------- null} - -t 4.74278 -s 10 -d 7 -p ack -e 40 -c 0 -i 8400 -a 0 -x {10.0 9.0 4195 ------- null} h -t 4.74278 -s 10 -d 7 -p ack -e 40 -c 0 -i 8400 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.74317 -s 0 -d 9 -p ack -e 40 -c 0 -i 8390 -a 0 -x {10.0 9.0 4190 ------- null} + -t 4.74317 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8401 -a 0 -x {9.0 10.0 4205 ------- null} - -t 4.74317 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8401 -a 0 -x {9.0 10.0 4205 ------- null} h -t 4.74317 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8401 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.74325 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8387 -a 0 -x {9.0 10.0 4198 ------- null} - -t 4.74325 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8387 -a 0 -x {9.0 10.0 4198 ------- null} h -t 4.74325 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8387 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.74346 -s 0 -d 9 -p ack -e 40 -c 0 -i 8394 -a 0 -x {10.0 9.0 4192 ------- null} - -t 4.74346 -s 0 -d 9 -p ack -e 40 -c 0 -i 8394 -a 0 -x {10.0 9.0 4192 ------- null} h -t 4.74346 -s 0 -d 9 -p ack -e 40 -c 0 -i 8394 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.7435 -s 10 -d 7 -p ack -e 40 -c 0 -i 8398 -a 0 -x {10.0 9.0 4194 ------- null} + -t 4.7435 -s 7 -d 0 -p ack -e 40 -c 0 -i 8398 -a 0 -x {10.0 9.0 4194 ------- null} h -t 4.7435 -s 7 -d 8 -p ack -e 40 -c 0 -i 8398 -a 0 -x {10.0 9.0 4194 ------- null} r -t 4.74378 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8397 -a 0 -x {9.0 10.0 4203 ------- null} + -t 4.74378 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8397 -a 0 -x {9.0 10.0 4203 ------- null} h -t 4.74378 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8397 -a 0 -x {9.0 10.0 4203 ------- null} r -t 4.74387 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8383 -a 0 -x {9.0 10.0 4196 ------- null} + -t 4.74387 -s 10 -d 7 -p ack -e 40 -c 0 -i 8402 -a 0 -x {10.0 9.0 4196 ------- null} - -t 4.74387 -s 10 -d 7 -p ack -e 40 -c 0 -i 8402 -a 0 -x {10.0 9.0 4196 ------- null} h -t 4.74387 -s 10 -d 7 -p ack -e 40 -c 0 -i 8402 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.74434 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8389 -a 0 -x {9.0 10.0 4199 ------- null} - -t 4.74434 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8389 -a 0 -x {9.0 10.0 4199 ------- null} h -t 4.74434 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8389 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.74435 -s 0 -d 9 -p ack -e 40 -c 0 -i 8392 -a 0 -x {10.0 9.0 4191 ------- null} + -t 4.74435 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8403 -a 0 -x {9.0 10.0 4206 ------- null} - -t 4.74435 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8403 -a 0 -x {9.0 10.0 4206 ------- null} h -t 4.74435 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8403 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.74454 -s 0 -d 9 -p ack -e 40 -c 0 -i 8396 -a 0 -x {10.0 9.0 4193 ------- null} - -t 4.74454 -s 0 -d 9 -p ack -e 40 -c 0 -i 8396 -a 0 -x {10.0 9.0 4193 ------- null} h -t 4.74454 -s 0 -d 9 -p ack -e 40 -c 0 -i 8396 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.74482 -s 10 -d 7 -p ack -e 40 -c 0 -i 8400 -a 0 -x {10.0 9.0 4195 ------- null} + -t 4.74482 -s 7 -d 0 -p ack -e 40 -c 0 -i 8400 -a 0 -x {10.0 9.0 4195 ------- null} h -t 4.74482 -s 7 -d 8 -p ack -e 40 -c 0 -i 8400 -a 0 -x {10.0 9.0 4195 ------- null} r -t 4.74496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8385 -a 0 -x {9.0 10.0 4197 ------- null} + -t 4.74496 -s 10 -d 7 -p ack -e 40 -c 0 -i 8404 -a 0 -x {10.0 9.0 4197 ------- null} - -t 4.74496 -s 10 -d 7 -p ack -e 40 -c 0 -i 8404 -a 0 -x {10.0 9.0 4197 ------- null} h -t 4.74496 -s 10 -d 7 -p ack -e 40 -c 0 -i 8404 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.74499 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8399 -a 0 -x {9.0 10.0 4204 ------- null} + -t 4.74499 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8399 -a 0 -x {9.0 10.0 4204 ------- null} h -t 4.74499 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8399 -a 0 -x {9.0 10.0 4204 ------- null} + -t 4.74542 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8391 -a 0 -x {9.0 10.0 4200 ------- null} - -t 4.74542 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8391 -a 0 -x {9.0 10.0 4200 ------- null} h -t 4.74542 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8391 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.74549 -s 0 -d 9 -p ack -e 40 -c 0 -i 8394 -a 0 -x {10.0 9.0 4192 ------- null} + -t 4.74549 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8405 -a 0 -x {9.0 10.0 4207 ------- null} - -t 4.74549 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8405 -a 0 -x {9.0 10.0 4207 ------- null} h -t 4.74549 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8405 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.74552 -s 0 -d 9 -p ack -e 40 -c 0 -i 8398 -a 0 -x {10.0 9.0 4194 ------- null} - -t 4.74552 -s 0 -d 9 -p ack -e 40 -c 0 -i 8398 -a 0 -x {10.0 9.0 4194 ------- null} h -t 4.74552 -s 0 -d 9 -p ack -e 40 -c 0 -i 8398 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.7459 -s 10 -d 7 -p ack -e 40 -c 0 -i 8402 -a 0 -x {10.0 9.0 4196 ------- null} + -t 4.7459 -s 7 -d 0 -p ack -e 40 -c 0 -i 8402 -a 0 -x {10.0 9.0 4196 ------- null} h -t 4.7459 -s 7 -d 8 -p ack -e 40 -c 0 -i 8402 -a 0 -x {10.0 9.0 4196 ------- null} r -t 4.74597 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8401 -a 0 -x {9.0 10.0 4205 ------- null} + -t 4.74597 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8401 -a 0 -x {9.0 10.0 4205 ------- null} h -t 4.74597 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8401 -a 0 -x {9.0 10.0 4205 ------- null} r -t 4.74605 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8387 -a 0 -x {9.0 10.0 4198 ------- null} + -t 4.74605 -s 10 -d 7 -p ack -e 40 -c 0 -i 8406 -a 0 -x {10.0 9.0 4198 ------- null} - -t 4.74605 -s 10 -d 7 -p ack -e 40 -c 0 -i 8406 -a 0 -x {10.0 9.0 4198 ------- null} h -t 4.74605 -s 10 -d 7 -p ack -e 40 -c 0 -i 8406 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.74651 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8393 -a 0 -x {9.0 10.0 4201 ------- null} - -t 4.74651 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8393 -a 0 -x {9.0 10.0 4201 ------- null} h -t 4.74651 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8393 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.74658 -s 0 -d 9 -p ack -e 40 -c 0 -i 8396 -a 0 -x {10.0 9.0 4193 ------- null} + -t 4.74658 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8407 -a 0 -x {9.0 10.0 4208 ------- null} - -t 4.74658 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8407 -a 0 -x {9.0 10.0 4208 ------- null} h -t 4.74658 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8407 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.74659 -s 0 -d 9 -p ack -e 40 -c 0 -i 8400 -a 0 -x {10.0 9.0 4195 ------- null} - -t 4.74659 -s 0 -d 9 -p ack -e 40 -c 0 -i 8400 -a 0 -x {10.0 9.0 4195 ------- null} h -t 4.74659 -s 0 -d 9 -p ack -e 40 -c 0 -i 8400 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.74699 -s 10 -d 7 -p ack -e 40 -c 0 -i 8404 -a 0 -x {10.0 9.0 4197 ------- null} + -t 4.74699 -s 7 -d 0 -p ack -e 40 -c 0 -i 8404 -a 0 -x {10.0 9.0 4197 ------- null} h -t 4.74699 -s 7 -d 8 -p ack -e 40 -c 0 -i 8404 -a 0 -x {10.0 9.0 4197 ------- null} r -t 4.74714 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8389 -a 0 -x {9.0 10.0 4199 ------- null} + -t 4.74714 -s 10 -d 7 -p ack -e 40 -c 0 -i 8408 -a 0 -x {10.0 9.0 4199 ------- null} - -t 4.74714 -s 10 -d 7 -p ack -e 40 -c 0 -i 8408 -a 0 -x {10.0 9.0 4199 ------- null} h -t 4.74714 -s 10 -d 7 -p ack -e 40 -c 0 -i 8408 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.74715 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8403 -a 0 -x {9.0 10.0 4206 ------- null} + -t 4.74715 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8403 -a 0 -x {9.0 10.0 4206 ------- null} h -t 4.74715 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8403 -a 0 -x {9.0 10.0 4206 ------- null} r -t 4.74755 -s 0 -d 9 -p ack -e 40 -c 0 -i 8398 -a 0 -x {10.0 9.0 4194 ------- null} + -t 4.74755 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8409 -a 0 -x {9.0 10.0 4209 ------- null} - -t 4.74755 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8409 -a 0 -x {9.0 10.0 4209 ------- null} h -t 4.74755 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8409 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.7476 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8395 -a 0 -x {9.0 10.0 4202 ------- null} - -t 4.7476 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8395 -a 0 -x {9.0 10.0 4202 ------- null} h -t 4.7476 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8395 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.74768 -s 0 -d 9 -p ack -e 40 -c 0 -i 8402 -a 0 -x {10.0 9.0 4196 ------- null} - -t 4.74768 -s 0 -d 9 -p ack -e 40 -c 0 -i 8402 -a 0 -x {10.0 9.0 4196 ------- null} h -t 4.74768 -s 0 -d 9 -p ack -e 40 -c 0 -i 8402 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.74808 -s 10 -d 7 -p ack -e 40 -c 0 -i 8406 -a 0 -x {10.0 9.0 4198 ------- null} + -t 4.74808 -s 7 -d 0 -p ack -e 40 -c 0 -i 8406 -a 0 -x {10.0 9.0 4198 ------- null} h -t 4.74808 -s 7 -d 8 -p ack -e 40 -c 0 -i 8406 -a 0 -x {10.0 9.0 4198 ------- null} r -t 4.74822 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8391 -a 0 -x {9.0 10.0 4200 ------- null} + -t 4.74822 -s 10 -d 7 -p ack -e 40 -c 0 -i 8410 -a 0 -x {10.0 9.0 4200 ------- null} - -t 4.74822 -s 10 -d 7 -p ack -e 40 -c 0 -i 8410 -a 0 -x {10.0 9.0 4200 ------- null} h -t 4.74822 -s 10 -d 7 -p ack -e 40 -c 0 -i 8410 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.74829 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8405 -a 0 -x {9.0 10.0 4207 ------- null} + -t 4.74829 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8405 -a 0 -x {9.0 10.0 4207 ------- null} h -t 4.74829 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8405 -a 0 -x {9.0 10.0 4207 ------- null} r -t 4.74862 -s 0 -d 9 -p ack -e 40 -c 0 -i 8400 -a 0 -x {10.0 9.0 4195 ------- null} + -t 4.74862 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8411 -a 0 -x {9.0 10.0 4210 ------- null} - -t 4.74862 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8411 -a 0 -x {9.0 10.0 4210 ------- null} h -t 4.74862 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8411 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.74869 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8397 -a 0 -x {9.0 10.0 4203 ------- null} - -t 4.74869 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8397 -a 0 -x {9.0 10.0 4203 ------- null} h -t 4.74869 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8397 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.74896 -s 0 -d 9 -p ack -e 40 -c 0 -i 8404 -a 0 -x {10.0 9.0 4197 ------- null} - -t 4.74896 -s 0 -d 9 -p ack -e 40 -c 0 -i 8404 -a 0 -x {10.0 9.0 4197 ------- null} h -t 4.74896 -s 0 -d 9 -p ack -e 40 -c 0 -i 8404 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.74917 -s 10 -d 7 -p ack -e 40 -c 0 -i 8408 -a 0 -x {10.0 9.0 4199 ------- null} + -t 4.74917 -s 7 -d 0 -p ack -e 40 -c 0 -i 8408 -a 0 -x {10.0 9.0 4199 ------- null} h -t 4.74917 -s 7 -d 8 -p ack -e 40 -c 0 -i 8408 -a 0 -x {10.0 9.0 4199 ------- null} r -t 4.74931 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8393 -a 0 -x {9.0 10.0 4201 ------- null} + -t 4.74931 -s 10 -d 7 -p ack -e 40 -c 0 -i 8412 -a 0 -x {10.0 9.0 4201 ------- null} - -t 4.74931 -s 10 -d 7 -p ack -e 40 -c 0 -i 8412 -a 0 -x {10.0 9.0 4201 ------- null} h -t 4.74931 -s 10 -d 7 -p ack -e 40 -c 0 -i 8412 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.74938 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8407 -a 0 -x {9.0 10.0 4208 ------- null} + -t 4.74938 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8407 -a 0 -x {9.0 10.0 4208 ------- null} h -t 4.74938 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8407 -a 0 -x {9.0 10.0 4208 ------- null} r -t 4.74971 -s 0 -d 9 -p ack -e 40 -c 0 -i 8402 -a 0 -x {10.0 9.0 4196 ------- null} + -t 4.74971 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8413 -a 0 -x {9.0 10.0 4211 ------- null} - -t 4.74971 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8413 -a 0 -x {9.0 10.0 4211 ------- null} h -t 4.74971 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8413 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.74989 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8399 -a 0 -x {9.0 10.0 4204 ------- null} - -t 4.74989 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8399 -a 0 -x {9.0 10.0 4204 ------- null} h -t 4.74989 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8399 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.75008 -s 0 -d 9 -p ack -e 40 -c 0 -i 8406 -a 0 -x {10.0 9.0 4198 ------- null} - -t 4.75008 -s 0 -d 9 -p ack -e 40 -c 0 -i 8406 -a 0 -x {10.0 9.0 4198 ------- null} h -t 4.75008 -s 0 -d 9 -p ack -e 40 -c 0 -i 8406 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.75026 -s 10 -d 7 -p ack -e 40 -c 0 -i 8410 -a 0 -x {10.0 9.0 4200 ------- null} + -t 4.75026 -s 7 -d 0 -p ack -e 40 -c 0 -i 8410 -a 0 -x {10.0 9.0 4200 ------- null} h -t 4.75026 -s 7 -d 8 -p ack -e 40 -c 0 -i 8410 -a 0 -x {10.0 9.0 4200 ------- null} r -t 4.75035 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8409 -a 0 -x {9.0 10.0 4209 ------- null} + -t 4.75035 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8409 -a 0 -x {9.0 10.0 4209 ------- null} h -t 4.75035 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8409 -a 0 -x {9.0 10.0 4209 ------- null} r -t 4.7504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8395 -a 0 -x {9.0 10.0 4202 ------- null} + -t 4.7504 -s 10 -d 7 -p ack -e 40 -c 0 -i 8414 -a 0 -x {10.0 9.0 4202 ------- null} - -t 4.7504 -s 10 -d 7 -p ack -e 40 -c 0 -i 8414 -a 0 -x {10.0 9.0 4202 ------- null} h -t 4.7504 -s 10 -d 7 -p ack -e 40 -c 0 -i 8414 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.75098 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8401 -a 0 -x {9.0 10.0 4205 ------- null} - -t 4.75098 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8401 -a 0 -x {9.0 10.0 4205 ------- null} h -t 4.75098 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8401 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.75099 -s 0 -d 9 -p ack -e 40 -c 0 -i 8404 -a 0 -x {10.0 9.0 4197 ------- null} + -t 4.75099 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8415 -a 0 -x {9.0 10.0 4212 ------- null} - -t 4.75099 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8415 -a 0 -x {9.0 10.0 4212 ------- null} h -t 4.75099 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8415 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.75118 -s 0 -d 9 -p ack -e 40 -c 0 -i 8408 -a 0 -x {10.0 9.0 4199 ------- null} - -t 4.75118 -s 0 -d 9 -p ack -e 40 -c 0 -i 8408 -a 0 -x {10.0 9.0 4199 ------- null} h -t 4.75118 -s 0 -d 9 -p ack -e 40 -c 0 -i 8408 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.75134 -s 10 -d 7 -p ack -e 40 -c 0 -i 8412 -a 0 -x {10.0 9.0 4201 ------- null} + -t 4.75134 -s 7 -d 0 -p ack -e 40 -c 0 -i 8412 -a 0 -x {10.0 9.0 4201 ------- null} h -t 4.75134 -s 7 -d 8 -p ack -e 40 -c 0 -i 8412 -a 0 -x {10.0 9.0 4201 ------- null} r -t 4.75142 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8411 -a 0 -x {9.0 10.0 4210 ------- null} + -t 4.75142 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8411 -a 0 -x {9.0 10.0 4210 ------- null} h -t 4.75142 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8411 -a 0 -x {9.0 10.0 4210 ------- null} r -t 4.75149 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8397 -a 0 -x {9.0 10.0 4203 ------- null} + -t 4.75149 -s 10 -d 7 -p ack -e 40 -c 0 -i 8416 -a 0 -x {10.0 9.0 4203 ------- null} - -t 4.75149 -s 10 -d 7 -p ack -e 40 -c 0 -i 8416 -a 0 -x {10.0 9.0 4203 ------- null} h -t 4.75149 -s 10 -d 7 -p ack -e 40 -c 0 -i 8416 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.75206 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8403 -a 0 -x {9.0 10.0 4206 ------- null} - -t 4.75206 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8403 -a 0 -x {9.0 10.0 4206 ------- null} h -t 4.75206 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8403 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.75211 -s 0 -d 9 -p ack -e 40 -c 0 -i 8406 -a 0 -x {10.0 9.0 4198 ------- null} + -t 4.75211 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8417 -a 0 -x {9.0 10.0 4213 ------- null} - -t 4.75211 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8417 -a 0 -x {9.0 10.0 4213 ------- null} h -t 4.75211 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8417 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.75229 -s 0 -d 9 -p ack -e 40 -c 0 -i 8410 -a 0 -x {10.0 9.0 4200 ------- null} - -t 4.75229 -s 0 -d 9 -p ack -e 40 -c 0 -i 8410 -a 0 -x {10.0 9.0 4200 ------- null} h -t 4.75229 -s 0 -d 9 -p ack -e 40 -c 0 -i 8410 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.75243 -s 10 -d 7 -p ack -e 40 -c 0 -i 8414 -a 0 -x {10.0 9.0 4202 ------- null} + -t 4.75243 -s 7 -d 0 -p ack -e 40 -c 0 -i 8414 -a 0 -x {10.0 9.0 4202 ------- null} h -t 4.75243 -s 7 -d 8 -p ack -e 40 -c 0 -i 8414 -a 0 -x {10.0 9.0 4202 ------- null} r -t 4.75251 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8413 -a 0 -x {9.0 10.0 4211 ------- null} + -t 4.75251 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8413 -a 0 -x {9.0 10.0 4211 ------- null} h -t 4.75251 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8413 -a 0 -x {9.0 10.0 4211 ------- null} r -t 4.75269 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8399 -a 0 -x {9.0 10.0 4204 ------- null} + -t 4.75269 -s 10 -d 7 -p ack -e 40 -c 0 -i 8418 -a 0 -x {10.0 9.0 4204 ------- null} - -t 4.75269 -s 10 -d 7 -p ack -e 40 -c 0 -i 8418 -a 0 -x {10.0 9.0 4204 ------- null} h -t 4.75269 -s 10 -d 7 -p ack -e 40 -c 0 -i 8418 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.75315 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8405 -a 0 -x {9.0 10.0 4207 ------- null} - -t 4.75315 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8405 -a 0 -x {9.0 10.0 4207 ------- null} h -t 4.75315 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8405 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.75322 -s 0 -d 9 -p ack -e 40 -c 0 -i 8408 -a 0 -x {10.0 9.0 4199 ------- null} + -t 4.75322 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8419 -a 0 -x {9.0 10.0 4214 ------- null} - -t 4.75322 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8419 -a 0 -x {9.0 10.0 4214 ------- null} h -t 4.75322 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8419 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.75338 -s 0 -d 9 -p ack -e 40 -c 0 -i 8412 -a 0 -x {10.0 9.0 4201 ------- null} - -t 4.75338 -s 0 -d 9 -p ack -e 40 -c 0 -i 8412 -a 0 -x {10.0 9.0 4201 ------- null} h -t 4.75338 -s 0 -d 9 -p ack -e 40 -c 0 -i 8412 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.75352 -s 10 -d 7 -p ack -e 40 -c 0 -i 8416 -a 0 -x {10.0 9.0 4203 ------- null} + -t 4.75352 -s 7 -d 0 -p ack -e 40 -c 0 -i 8416 -a 0 -x {10.0 9.0 4203 ------- null} h -t 4.75352 -s 7 -d 8 -p ack -e 40 -c 0 -i 8416 -a 0 -x {10.0 9.0 4203 ------- null} r -t 4.75378 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8401 -a 0 -x {9.0 10.0 4205 ------- null} + -t 4.75378 -s 10 -d 7 -p ack -e 40 -c 0 -i 8420 -a 0 -x {10.0 9.0 4205 ------- null} - -t 4.75378 -s 10 -d 7 -p ack -e 40 -c 0 -i 8420 -a 0 -x {10.0 9.0 4205 ------- null} h -t 4.75378 -s 10 -d 7 -p ack -e 40 -c 0 -i 8420 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.75379 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8415 -a 0 -x {9.0 10.0 4212 ------- null} + -t 4.75379 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8415 -a 0 -x {9.0 10.0 4212 ------- null} h -t 4.75379 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8415 -a 0 -x {9.0 10.0 4212 ------- null} + -t 4.75424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8407 -a 0 -x {9.0 10.0 4208 ------- null} - -t 4.75424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8407 -a 0 -x {9.0 10.0 4208 ------- null} h -t 4.75424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8407 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.75432 -s 0 -d 9 -p ack -e 40 -c 0 -i 8410 -a 0 -x {10.0 9.0 4200 ------- null} + -t 4.75432 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8421 -a 0 -x {9.0 10.0 4215 ------- null} - -t 4.75432 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8421 -a 0 -x {9.0 10.0 4215 ------- null} h -t 4.75432 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8421 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.75442 -s 0 -d 9 -p ack -e 40 -c 0 -i 8414 -a 0 -x {10.0 9.0 4202 ------- null} - -t 4.75442 -s 0 -d 9 -p ack -e 40 -c 0 -i 8414 -a 0 -x {10.0 9.0 4202 ------- null} h -t 4.75442 -s 0 -d 9 -p ack -e 40 -c 0 -i 8414 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.75472 -s 10 -d 7 -p ack -e 40 -c 0 -i 8418 -a 0 -x {10.0 9.0 4204 ------- null} + -t 4.75472 -s 7 -d 0 -p ack -e 40 -c 0 -i 8418 -a 0 -x {10.0 9.0 4204 ------- null} h -t 4.75472 -s 7 -d 8 -p ack -e 40 -c 0 -i 8418 -a 0 -x {10.0 9.0 4204 ------- null} r -t 4.75486 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8403 -a 0 -x {9.0 10.0 4206 ------- null} + -t 4.75486 -s 10 -d 7 -p ack -e 40 -c 0 -i 8422 -a 0 -x {10.0 9.0 4206 ------- null} - -t 4.75486 -s 10 -d 7 -p ack -e 40 -c 0 -i 8422 -a 0 -x {10.0 9.0 4206 ------- null} h -t 4.75486 -s 10 -d 7 -p ack -e 40 -c 0 -i 8422 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.75491 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8417 -a 0 -x {9.0 10.0 4213 ------- null} + -t 4.75491 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8417 -a 0 -x {9.0 10.0 4213 ------- null} h -t 4.75491 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8417 -a 0 -x {9.0 10.0 4213 ------- null} + -t 4.75533 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8409 -a 0 -x {9.0 10.0 4209 ------- null} - -t 4.75533 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8409 -a 0 -x {9.0 10.0 4209 ------- null} h -t 4.75533 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8409 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.75541 -s 0 -d 9 -p ack -e 40 -c 0 -i 8412 -a 0 -x {10.0 9.0 4201 ------- null} + -t 4.75541 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8423 -a 0 -x {9.0 10.0 4216 ------- null} - -t 4.75541 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8423 -a 0 -x {9.0 10.0 4216 ------- null} h -t 4.75541 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8423 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.75541 -s 0 -d 9 -p ack -e 40 -c 0 -i 8416 -a 0 -x {10.0 9.0 4203 ------- null} - -t 4.75541 -s 0 -d 9 -p ack -e 40 -c 0 -i 8416 -a 0 -x {10.0 9.0 4203 ------- null} h -t 4.75541 -s 0 -d 9 -p ack -e 40 -c 0 -i 8416 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.75581 -s 10 -d 7 -p ack -e 40 -c 0 -i 8420 -a 0 -x {10.0 9.0 4205 ------- null} + -t 4.75581 -s 7 -d 0 -p ack -e 40 -c 0 -i 8420 -a 0 -x {10.0 9.0 4205 ------- null} h -t 4.75581 -s 7 -d 8 -p ack -e 40 -c 0 -i 8420 -a 0 -x {10.0 9.0 4205 ------- null} r -t 4.75595 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8405 -a 0 -x {9.0 10.0 4207 ------- null} + -t 4.75595 -s 10 -d 7 -p ack -e 40 -c 0 -i 8424 -a 0 -x {10.0 9.0 4207 ------- null} - -t 4.75595 -s 10 -d 7 -p ack -e 40 -c 0 -i 8424 -a 0 -x {10.0 9.0 4207 ------- null} h -t 4.75595 -s 10 -d 7 -p ack -e 40 -c 0 -i 8424 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.75602 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8419 -a 0 -x {9.0 10.0 4214 ------- null} + -t 4.75602 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8419 -a 0 -x {9.0 10.0 4214 ------- null} h -t 4.75602 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8419 -a 0 -x {9.0 10.0 4214 ------- null} + -t 4.75642 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8411 -a 0 -x {9.0 10.0 4210 ------- null} - -t 4.75642 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8411 -a 0 -x {9.0 10.0 4210 ------- null} h -t 4.75642 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8411 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.75645 -s 0 -d 9 -p ack -e 40 -c 0 -i 8414 -a 0 -x {10.0 9.0 4202 ------- null} + -t 4.75645 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8425 -a 0 -x {9.0 10.0 4217 ------- null} - -t 4.75645 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8425 -a 0 -x {9.0 10.0 4217 ------- null} h -t 4.75645 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8425 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.75666 -s 0 -d 9 -p ack -e 40 -c 0 -i 8418 -a 0 -x {10.0 9.0 4204 ------- null} - -t 4.75666 -s 0 -d 9 -p ack -e 40 -c 0 -i 8418 -a 0 -x {10.0 9.0 4204 ------- null} h -t 4.75666 -s 0 -d 9 -p ack -e 40 -c 0 -i 8418 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.7569 -s 10 -d 7 -p ack -e 40 -c 0 -i 8422 -a 0 -x {10.0 9.0 4206 ------- null} + -t 4.7569 -s 7 -d 0 -p ack -e 40 -c 0 -i 8422 -a 0 -x {10.0 9.0 4206 ------- null} h -t 4.7569 -s 7 -d 8 -p ack -e 40 -c 0 -i 8422 -a 0 -x {10.0 9.0 4206 ------- null} r -t 4.75704 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8407 -a 0 -x {9.0 10.0 4208 ------- null} + -t 4.75704 -s 10 -d 7 -p ack -e 40 -c 0 -i 8426 -a 0 -x {10.0 9.0 4208 ------- null} - -t 4.75704 -s 10 -d 7 -p ack -e 40 -c 0 -i 8426 -a 0 -x {10.0 9.0 4208 ------- null} h -t 4.75704 -s 10 -d 7 -p ack -e 40 -c 0 -i 8426 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.75712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8421 -a 0 -x {9.0 10.0 4215 ------- null} + -t 4.75712 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8421 -a 0 -x {9.0 10.0 4215 ------- null} h -t 4.75712 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8421 -a 0 -x {9.0 10.0 4215 ------- null} r -t 4.75744 -s 0 -d 9 -p ack -e 40 -c 0 -i 8416 -a 0 -x {10.0 9.0 4203 ------- null} + -t 4.75744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8427 -a 0 -x {9.0 10.0 4218 ------- null} - -t 4.75744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8427 -a 0 -x {9.0 10.0 4218 ------- null} h -t 4.75744 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8427 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.7575 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8413 -a 0 -x {9.0 10.0 4211 ------- null} - -t 4.7575 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8413 -a 0 -x {9.0 10.0 4211 ------- null} h -t 4.7575 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8413 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.75757 -s 0 -d 9 -p ack -e 40 -c 0 -i 8420 -a 0 -x {10.0 9.0 4205 ------- null} - -t 4.75757 -s 0 -d 9 -p ack -e 40 -c 0 -i 8420 -a 0 -x {10.0 9.0 4205 ------- null} h -t 4.75757 -s 0 -d 9 -p ack -e 40 -c 0 -i 8420 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.75798 -s 10 -d 7 -p ack -e 40 -c 0 -i 8424 -a 0 -x {10.0 9.0 4207 ------- null} + -t 4.75798 -s 7 -d 0 -p ack -e 40 -c 0 -i 8424 -a 0 -x {10.0 9.0 4207 ------- null} h -t 4.75798 -s 7 -d 8 -p ack -e 40 -c 0 -i 8424 -a 0 -x {10.0 9.0 4207 ------- null} r -t 4.75813 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8409 -a 0 -x {9.0 10.0 4209 ------- null} + -t 4.75813 -s 10 -d 7 -p ack -e 40 -c 0 -i 8428 -a 0 -x {10.0 9.0 4209 ------- null} - -t 4.75813 -s 10 -d 7 -p ack -e 40 -c 0 -i 8428 -a 0 -x {10.0 9.0 4209 ------- null} h -t 4.75813 -s 10 -d 7 -p ack -e 40 -c 0 -i 8428 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.75821 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8423 -a 0 -x {9.0 10.0 4216 ------- null} + -t 4.75821 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8423 -a 0 -x {9.0 10.0 4216 ------- null} h -t 4.75821 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8423 -a 0 -x {9.0 10.0 4216 ------- null} + -t 4.75859 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8415 -a 0 -x {9.0 10.0 4212 ------- null} - -t 4.75859 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8415 -a 0 -x {9.0 10.0 4212 ------- null} h -t 4.75859 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8415 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.75869 -s 0 -d 9 -p ack -e 40 -c 0 -i 8418 -a 0 -x {10.0 9.0 4204 ------- null} + -t 4.75869 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8429 -a 0 -x {9.0 10.0 4219 ------- null} - -t 4.75869 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8429 -a 0 -x {9.0 10.0 4219 ------- null} h -t 4.75869 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8429 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.75885 -s 0 -d 9 -p ack -e 40 -c 0 -i 8422 -a 0 -x {10.0 9.0 4206 ------- null} - -t 4.75885 -s 0 -d 9 -p ack -e 40 -c 0 -i 8422 -a 0 -x {10.0 9.0 4206 ------- null} h -t 4.75885 -s 0 -d 9 -p ack -e 40 -c 0 -i 8422 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.75907 -s 10 -d 7 -p ack -e 40 -c 0 -i 8426 -a 0 -x {10.0 9.0 4208 ------- null} + -t 4.75907 -s 7 -d 0 -p ack -e 40 -c 0 -i 8426 -a 0 -x {10.0 9.0 4208 ------- null} h -t 4.75907 -s 7 -d 8 -p ack -e 40 -c 0 -i 8426 -a 0 -x {10.0 9.0 4208 ------- null} r -t 4.75922 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8411 -a 0 -x {9.0 10.0 4210 ------- null} + -t 4.75922 -s 10 -d 7 -p ack -e 40 -c 0 -i 8430 -a 0 -x {10.0 9.0 4210 ------- null} - -t 4.75922 -s 10 -d 7 -p ack -e 40 -c 0 -i 8430 -a 0 -x {10.0 9.0 4210 ------- null} h -t 4.75922 -s 10 -d 7 -p ack -e 40 -c 0 -i 8430 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.75925 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8425 -a 0 -x {9.0 10.0 4217 ------- null} + -t 4.75925 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8425 -a 0 -x {9.0 10.0 4217 ------- null} h -t 4.75925 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8425 -a 0 -x {9.0 10.0 4217 ------- null} r -t 4.7596 -s 0 -d 9 -p ack -e 40 -c 0 -i 8420 -a 0 -x {10.0 9.0 4205 ------- null} + -t 4.7596 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8431 -a 0 -x {9.0 10.0 4220 ------- null} - -t 4.7596 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8431 -a 0 -x {9.0 10.0 4220 ------- null} h -t 4.7596 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8431 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.75968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8417 -a 0 -x {9.0 10.0 4213 ------- null} - -t 4.75968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8417 -a 0 -x {9.0 10.0 4213 ------- null} h -t 4.75968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8417 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.75981 -s 0 -d 9 -p ack -e 40 -c 0 -i 8424 -a 0 -x {10.0 9.0 4207 ------- null} - -t 4.75981 -s 0 -d 9 -p ack -e 40 -c 0 -i 8424 -a 0 -x {10.0 9.0 4207 ------- null} h -t 4.75981 -s 0 -d 9 -p ack -e 40 -c 0 -i 8424 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.76016 -s 10 -d 7 -p ack -e 40 -c 0 -i 8428 -a 0 -x {10.0 9.0 4209 ------- null} + -t 4.76016 -s 7 -d 0 -p ack -e 40 -c 0 -i 8428 -a 0 -x {10.0 9.0 4209 ------- null} h -t 4.76016 -s 7 -d 8 -p ack -e 40 -c 0 -i 8428 -a 0 -x {10.0 9.0 4209 ------- null} r -t 4.76024 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8427 -a 0 -x {9.0 10.0 4218 ------- null} + -t 4.76024 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8427 -a 0 -x {9.0 10.0 4218 ------- null} h -t 4.76024 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8427 -a 0 -x {9.0 10.0 4218 ------- null} r -t 4.7603 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8413 -a 0 -x {9.0 10.0 4211 ------- null} + -t 4.7603 -s 10 -d 7 -p ack -e 40 -c 0 -i 8432 -a 0 -x {10.0 9.0 4211 ------- null} - -t 4.7603 -s 10 -d 7 -p ack -e 40 -c 0 -i 8432 -a 0 -x {10.0 9.0 4211 ------- null} h -t 4.7603 -s 10 -d 7 -p ack -e 40 -c 0 -i 8432 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.76077 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8419 -a 0 -x {9.0 10.0 4214 ------- null} - -t 4.76077 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8419 -a 0 -x {9.0 10.0 4214 ------- null} h -t 4.76077 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8419 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.76085 -s 0 -d 9 -p ack -e 40 -c 0 -i 8426 -a 0 -x {10.0 9.0 4208 ------- null} - -t 4.76085 -s 0 -d 9 -p ack -e 40 -c 0 -i 8426 -a 0 -x {10.0 9.0 4208 ------- null} h -t 4.76085 -s 0 -d 9 -p ack -e 40 -c 0 -i 8426 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.76088 -s 0 -d 9 -p ack -e 40 -c 0 -i 8422 -a 0 -x {10.0 9.0 4206 ------- null} + -t 4.76088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8433 -a 0 -x {9.0 10.0 4221 ------- null} - -t 4.76088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8433 -a 0 -x {9.0 10.0 4221 ------- null} h -t 4.76088 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8433 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.76125 -s 10 -d 7 -p ack -e 40 -c 0 -i 8430 -a 0 -x {10.0 9.0 4210 ------- null} + -t 4.76125 -s 7 -d 0 -p ack -e 40 -c 0 -i 8430 -a 0 -x {10.0 9.0 4210 ------- null} h -t 4.76125 -s 7 -d 8 -p ack -e 40 -c 0 -i 8430 -a 0 -x {10.0 9.0 4210 ------- null} r -t 4.76139 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8415 -a 0 -x {9.0 10.0 4212 ------- null} + -t 4.76139 -s 10 -d 7 -p ack -e 40 -c 0 -i 8434 -a 0 -x {10.0 9.0 4212 ------- null} - -t 4.76139 -s 10 -d 7 -p ack -e 40 -c 0 -i 8434 -a 0 -x {10.0 9.0 4212 ------- null} h -t 4.76139 -s 10 -d 7 -p ack -e 40 -c 0 -i 8434 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.76149 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8429 -a 0 -x {9.0 10.0 4219 ------- null} + -t 4.76149 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8429 -a 0 -x {9.0 10.0 4219 ------- null} h -t 4.76149 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8429 -a 0 -x {9.0 10.0 4219 ------- null} r -t 4.76184 -s 0 -d 9 -p ack -e 40 -c 0 -i 8424 -a 0 -x {10.0 9.0 4207 ------- null} + -t 4.76184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8435 -a 0 -x {9.0 10.0 4222 ------- null} - -t 4.76184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8435 -a 0 -x {9.0 10.0 4222 ------- null} h -t 4.76184 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8435 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.76186 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8421 -a 0 -x {9.0 10.0 4215 ------- null} - -t 4.76186 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8421 -a 0 -x {9.0 10.0 4215 ------- null} h -t 4.76186 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8421 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.762 -s 0 -d 9 -p ack -e 40 -c 0 -i 8428 -a 0 -x {10.0 9.0 4209 ------- null} - -t 4.762 -s 0 -d 9 -p ack -e 40 -c 0 -i 8428 -a 0 -x {10.0 9.0 4209 ------- null} h -t 4.762 -s 0 -d 9 -p ack -e 40 -c 0 -i 8428 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.76234 -s 10 -d 7 -p ack -e 40 -c 0 -i 8432 -a 0 -x {10.0 9.0 4211 ------- null} + -t 4.76234 -s 7 -d 0 -p ack -e 40 -c 0 -i 8432 -a 0 -x {10.0 9.0 4211 ------- null} h -t 4.76234 -s 7 -d 8 -p ack -e 40 -c 0 -i 8432 -a 0 -x {10.0 9.0 4211 ------- null} r -t 4.7624 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8431 -a 0 -x {9.0 10.0 4220 ------- null} + -t 4.7624 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8431 -a 0 -x {9.0 10.0 4220 ------- null} h -t 4.7624 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8431 -a 0 -x {9.0 10.0 4220 ------- null} r -t 4.76248 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8417 -a 0 -x {9.0 10.0 4213 ------- null} + -t 4.76248 -s 10 -d 7 -p ack -e 40 -c 0 -i 8436 -a 0 -x {10.0 9.0 4213 ------- null} - -t 4.76248 -s 10 -d 7 -p ack -e 40 -c 0 -i 8436 -a 0 -x {10.0 9.0 4213 ------- null} h -t 4.76248 -s 10 -d 7 -p ack -e 40 -c 0 -i 8436 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.76288 -s 0 -d 9 -p ack -e 40 -c 0 -i 8426 -a 0 -x {10.0 9.0 4208 ------- null} + -t 4.76288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8437 -a 0 -x {9.0 10.0 4223 ------- null} - -t 4.76288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8437 -a 0 -x {9.0 10.0 4223 ------- null} h -t 4.76288 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8437 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.76294 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8423 -a 0 -x {9.0 10.0 4216 ------- null} - -t 4.76294 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8423 -a 0 -x {9.0 10.0 4216 ------- null} h -t 4.76294 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8423 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.76304 -s 0 -d 9 -p ack -e 40 -c 0 -i 8430 -a 0 -x {10.0 9.0 4210 ------- null} - -t 4.76304 -s 0 -d 9 -p ack -e 40 -c 0 -i 8430 -a 0 -x {10.0 9.0 4210 ------- null} h -t 4.76304 -s 0 -d 9 -p ack -e 40 -c 0 -i 8430 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.76342 -s 10 -d 7 -p ack -e 40 -c 0 -i 8434 -a 0 -x {10.0 9.0 4212 ------- null} + -t 4.76342 -s 7 -d 0 -p ack -e 40 -c 0 -i 8434 -a 0 -x {10.0 9.0 4212 ------- null} h -t 4.76342 -s 7 -d 8 -p ack -e 40 -c 0 -i 8434 -a 0 -x {10.0 9.0 4212 ------- null} r -t 4.76357 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8419 -a 0 -x {9.0 10.0 4214 ------- null} + -t 4.76357 -s 10 -d 7 -p ack -e 40 -c 0 -i 8438 -a 0 -x {10.0 9.0 4214 ------- null} - -t 4.76357 -s 10 -d 7 -p ack -e 40 -c 0 -i 8438 -a 0 -x {10.0 9.0 4214 ------- null} h -t 4.76357 -s 10 -d 7 -p ack -e 40 -c 0 -i 8438 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.76368 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8433 -a 0 -x {9.0 10.0 4221 ------- null} + -t 4.76368 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8433 -a 0 -x {9.0 10.0 4221 ------- null} h -t 4.76368 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8433 -a 0 -x {9.0 10.0 4221 ------- null} r -t 4.76403 -s 0 -d 9 -p ack -e 40 -c 0 -i 8428 -a 0 -x {10.0 9.0 4209 ------- null} + -t 4.76403 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8439 -a 0 -x {9.0 10.0 4224 ------- null} - -t 4.76403 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8439 -a 0 -x {9.0 10.0 4224 ------- null} h -t 4.76403 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8439 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.76403 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8425 -a 0 -x {9.0 10.0 4217 ------- null} - -t 4.76403 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8425 -a 0 -x {9.0 10.0 4217 ------- null} h -t 4.76403 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8425 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.76424 -s 0 -d 9 -p ack -e 40 -c 0 -i 8432 -a 0 -x {10.0 9.0 4211 ------- null} - -t 4.76424 -s 0 -d 9 -p ack -e 40 -c 0 -i 8432 -a 0 -x {10.0 9.0 4211 ------- null} h -t 4.76424 -s 0 -d 9 -p ack -e 40 -c 0 -i 8432 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.76451 -s 10 -d 7 -p ack -e 40 -c 0 -i 8436 -a 0 -x {10.0 9.0 4213 ------- null} + -t 4.76451 -s 7 -d 0 -p ack -e 40 -c 0 -i 8436 -a 0 -x {10.0 9.0 4213 ------- null} h -t 4.76451 -s 7 -d 8 -p ack -e 40 -c 0 -i 8436 -a 0 -x {10.0 9.0 4213 ------- null} r -t 4.76464 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8435 -a 0 -x {9.0 10.0 4222 ------- null} + -t 4.76464 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8435 -a 0 -x {9.0 10.0 4222 ------- null} h -t 4.76464 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8435 -a 0 -x {9.0 10.0 4222 ------- null} r -t 4.76466 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8421 -a 0 -x {9.0 10.0 4215 ------- null} + -t 4.76466 -s 10 -d 7 -p ack -e 40 -c 0 -i 8440 -a 0 -x {10.0 9.0 4215 ------- null} - -t 4.76466 -s 10 -d 7 -p ack -e 40 -c 0 -i 8440 -a 0 -x {10.0 9.0 4215 ------- null} h -t 4.76466 -s 10 -d 7 -p ack -e 40 -c 0 -i 8440 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.76507 -s 0 -d 9 -p ack -e 40 -c 0 -i 8430 -a 0 -x {10.0 9.0 4210 ------- null} + -t 4.76507 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8441 -a 0 -x {9.0 10.0 4225 ------- null} - -t 4.76507 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8441 -a 0 -x {9.0 10.0 4225 ------- null} h -t 4.76507 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8441 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.76512 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8427 -a 0 -x {9.0 10.0 4218 ------- null} - -t 4.76512 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8427 -a 0 -x {9.0 10.0 4218 ------- null} h -t 4.76512 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8427 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.76531 -s 0 -d 9 -p ack -e 40 -c 0 -i 8434 -a 0 -x {10.0 9.0 4212 ------- null} - -t 4.76531 -s 0 -d 9 -p ack -e 40 -c 0 -i 8434 -a 0 -x {10.0 9.0 4212 ------- null} h -t 4.76531 -s 0 -d 9 -p ack -e 40 -c 0 -i 8434 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.7656 -s 10 -d 7 -p ack -e 40 -c 0 -i 8438 -a 0 -x {10.0 9.0 4214 ------- null} + -t 4.7656 -s 7 -d 0 -p ack -e 40 -c 0 -i 8438 -a 0 -x {10.0 9.0 4214 ------- null} h -t 4.7656 -s 7 -d 8 -p ack -e 40 -c 0 -i 8438 -a 0 -x {10.0 9.0 4214 ------- null} r -t 4.76568 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8437 -a 0 -x {9.0 10.0 4223 ------- null} + -t 4.76568 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8437 -a 0 -x {9.0 10.0 4223 ------- null} h -t 4.76568 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8437 -a 0 -x {9.0 10.0 4223 ------- null} r -t 4.76574 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8423 -a 0 -x {9.0 10.0 4216 ------- null} + -t 4.76574 -s 10 -d 7 -p ack -e 40 -c 0 -i 8442 -a 0 -x {10.0 9.0 4216 ------- null} - -t 4.76574 -s 10 -d 7 -p ack -e 40 -c 0 -i 8442 -a 0 -x {10.0 9.0 4216 ------- null} h -t 4.76574 -s 10 -d 7 -p ack -e 40 -c 0 -i 8442 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.76621 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8429 -a 0 -x {9.0 10.0 4219 ------- null} - -t 4.76621 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8429 -a 0 -x {9.0 10.0 4219 ------- null} h -t 4.76621 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8429 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.76627 -s 0 -d 9 -p ack -e 40 -c 0 -i 8432 -a 0 -x {10.0 9.0 4211 ------- null} + -t 4.76627 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8443 -a 0 -x {9.0 10.0 4226 ------- null} - -t 4.76627 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8443 -a 0 -x {9.0 10.0 4226 ------- null} h -t 4.76627 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8443 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.76627 -s 0 -d 9 -p ack -e 40 -c 0 -i 8436 -a 0 -x {10.0 9.0 4213 ------- null} - -t 4.76627 -s 0 -d 9 -p ack -e 40 -c 0 -i 8436 -a 0 -x {10.0 9.0 4213 ------- null} h -t 4.76627 -s 0 -d 9 -p ack -e 40 -c 0 -i 8436 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.76669 -s 10 -d 7 -p ack -e 40 -c 0 -i 8440 -a 0 -x {10.0 9.0 4215 ------- null} + -t 4.76669 -s 7 -d 0 -p ack -e 40 -c 0 -i 8440 -a 0 -x {10.0 9.0 4215 ------- null} h -t 4.76669 -s 7 -d 8 -p ack -e 40 -c 0 -i 8440 -a 0 -x {10.0 9.0 4215 ------- null} r -t 4.76683 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8439 -a 0 -x {9.0 10.0 4224 ------- null} + -t 4.76683 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8439 -a 0 -x {9.0 10.0 4224 ------- null} h -t 4.76683 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8439 -a 0 -x {9.0 10.0 4224 ------- null} r -t 4.76683 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8425 -a 0 -x {9.0 10.0 4217 ------- null} + -t 4.76683 -s 10 -d 7 -p ack -e 40 -c 0 -i 8444 -a 0 -x {10.0 9.0 4217 ------- null} - -t 4.76683 -s 10 -d 7 -p ack -e 40 -c 0 -i 8444 -a 0 -x {10.0 9.0 4217 ------- null} h -t 4.76683 -s 10 -d 7 -p ack -e 40 -c 0 -i 8444 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.7673 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8431 -a 0 -x {9.0 10.0 4220 ------- null} - -t 4.7673 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8431 -a 0 -x {9.0 10.0 4220 ------- null} h -t 4.7673 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8431 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.76734 -s 0 -d 9 -p ack -e 40 -c 0 -i 8434 -a 0 -x {10.0 9.0 4212 ------- null} + -t 4.76734 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8445 -a 0 -x {9.0 10.0 4227 ------- null} - -t 4.76734 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8445 -a 0 -x {9.0 10.0 4227 ------- null} h -t 4.76734 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8445 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.76746 -s 0 -d 9 -p ack -e 40 -c 0 -i 8438 -a 0 -x {10.0 9.0 4214 ------- null} - -t 4.76746 -s 0 -d 9 -p ack -e 40 -c 0 -i 8438 -a 0 -x {10.0 9.0 4214 ------- null} h -t 4.76746 -s 0 -d 9 -p ack -e 40 -c 0 -i 8438 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.76778 -s 10 -d 7 -p ack -e 40 -c 0 -i 8442 -a 0 -x {10.0 9.0 4216 ------- null} + -t 4.76778 -s 7 -d 0 -p ack -e 40 -c 0 -i 8442 -a 0 -x {10.0 9.0 4216 ------- null} h -t 4.76778 -s 7 -d 8 -p ack -e 40 -c 0 -i 8442 -a 0 -x {10.0 9.0 4216 ------- null} r -t 4.76787 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8441 -a 0 -x {9.0 10.0 4225 ------- null} + -t 4.76787 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8441 -a 0 -x {9.0 10.0 4225 ------- null} h -t 4.76787 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8441 -a 0 -x {9.0 10.0 4225 ------- null} r -t 4.76792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8427 -a 0 -x {9.0 10.0 4218 ------- null} + -t 4.76792 -s 10 -d 7 -p ack -e 40 -c 0 -i 8446 -a 0 -x {10.0 9.0 4218 ------- null} - -t 4.76792 -s 10 -d 7 -p ack -e 40 -c 0 -i 8446 -a 0 -x {10.0 9.0 4218 ------- null} h -t 4.76792 -s 10 -d 7 -p ack -e 40 -c 0 -i 8446 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.7683 -s 0 -d 9 -p ack -e 40 -c 0 -i 8436 -a 0 -x {10.0 9.0 4213 ------- null} + -t 4.7683 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8447 -a 0 -x {9.0 10.0 4228 ------- null} - -t 4.7683 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8447 -a 0 -x {9.0 10.0 4228 ------- null} h -t 4.7683 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8447 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.76838 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8433 -a 0 -x {9.0 10.0 4221 ------- null} - -t 4.76838 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8433 -a 0 -x {9.0 10.0 4221 ------- null} h -t 4.76838 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8433 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.76862 -s 0 -d 9 -p ack -e 40 -c 0 -i 8440 -a 0 -x {10.0 9.0 4215 ------- null} - -t 4.76862 -s 0 -d 9 -p ack -e 40 -c 0 -i 8440 -a 0 -x {10.0 9.0 4215 ------- null} h -t 4.76862 -s 0 -d 9 -p ack -e 40 -c 0 -i 8440 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.76886 -s 10 -d 7 -p ack -e 40 -c 0 -i 8444 -a 0 -x {10.0 9.0 4217 ------- null} + -t 4.76886 -s 7 -d 0 -p ack -e 40 -c 0 -i 8444 -a 0 -x {10.0 9.0 4217 ------- null} h -t 4.76886 -s 7 -d 8 -p ack -e 40 -c 0 -i 8444 -a 0 -x {10.0 9.0 4217 ------- null} r -t 4.76901 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8429 -a 0 -x {9.0 10.0 4219 ------- null} + -t 4.76901 -s 10 -d 7 -p ack -e 40 -c 0 -i 8448 -a 0 -x {10.0 9.0 4219 ------- null} - -t 4.76901 -s 10 -d 7 -p ack -e 40 -c 0 -i 8448 -a 0 -x {10.0 9.0 4219 ------- null} h -t 4.76901 -s 10 -d 7 -p ack -e 40 -c 0 -i 8448 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.76907 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8443 -a 0 -x {9.0 10.0 4226 ------- null} + -t 4.76907 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8443 -a 0 -x {9.0 10.0 4226 ------- null} h -t 4.76907 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8443 -a 0 -x {9.0 10.0 4226 ------- null} + -t 4.76947 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8435 -a 0 -x {9.0 10.0 4222 ------- null} - -t 4.76947 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8435 -a 0 -x {9.0 10.0 4222 ------- null} h -t 4.76947 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8435 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.76949 -s 0 -d 9 -p ack -e 40 -c 0 -i 8438 -a 0 -x {10.0 9.0 4214 ------- null} + -t 4.76949 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8449 -a 0 -x {9.0 10.0 4229 ------- null} - -t 4.76949 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8449 -a 0 -x {9.0 10.0 4229 ------- null} h -t 4.76949 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8449 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.76976 -s 0 -d 9 -p ack -e 40 -c 0 -i 8442 -a 0 -x {10.0 9.0 4216 ------- null} - -t 4.76976 -s 0 -d 9 -p ack -e 40 -c 0 -i 8442 -a 0 -x {10.0 9.0 4216 ------- null} h -t 4.76976 -s 0 -d 9 -p ack -e 40 -c 0 -i 8442 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.76995 -s 10 -d 7 -p ack -e 40 -c 0 -i 8446 -a 0 -x {10.0 9.0 4218 ------- null} + -t 4.76995 -s 7 -d 0 -p ack -e 40 -c 0 -i 8446 -a 0 -x {10.0 9.0 4218 ------- null} h -t 4.76995 -s 7 -d 8 -p ack -e 40 -c 0 -i 8446 -a 0 -x {10.0 9.0 4218 ------- null} r -t 4.7701 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8431 -a 0 -x {9.0 10.0 4220 ------- null} + -t 4.7701 -s 10 -d 7 -p ack -e 40 -c 0 -i 8450 -a 0 -x {10.0 9.0 4220 ------- null} - -t 4.7701 -s 10 -d 7 -p ack -e 40 -c 0 -i 8450 -a 0 -x {10.0 9.0 4220 ------- null} h -t 4.7701 -s 10 -d 7 -p ack -e 40 -c 0 -i 8450 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.77014 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8445 -a 0 -x {9.0 10.0 4227 ------- null} + -t 4.77014 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8445 -a 0 -x {9.0 10.0 4227 ------- null} h -t 4.77014 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8445 -a 0 -x {9.0 10.0 4227 ------- null} r -t 4.77066 -s 0 -d 9 -p ack -e 40 -c 0 -i 8440 -a 0 -x {10.0 9.0 4215 ------- null} + -t 4.77066 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8451 -a 0 -x {9.0 10.0 4230 ------- null} - -t 4.77066 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8451 -a 0 -x {9.0 10.0 4230 ------- null} h -t 4.77066 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8451 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.77083 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8437 -a 0 -x {9.0 10.0 4223 ------- null} - -t 4.77083 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8437 -a 0 -x {9.0 10.0 4223 ------- null} h -t 4.77083 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8437 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.77104 -s 10 -d 7 -p ack -e 40 -c 0 -i 8448 -a 0 -x {10.0 9.0 4219 ------- null} + -t 4.77104 -s 7 -d 0 -p ack -e 40 -c 0 -i 8448 -a 0 -x {10.0 9.0 4219 ------- null} h -t 4.77104 -s 7 -d 8 -p ack -e 40 -c 0 -i 8448 -a 0 -x {10.0 9.0 4219 ------- null} + -t 4.77109 -s 0 -d 9 -p ack -e 40 -c 0 -i 8444 -a 0 -x {10.0 9.0 4217 ------- null} - -t 4.77109 -s 0 -d 9 -p ack -e 40 -c 0 -i 8444 -a 0 -x {10.0 9.0 4217 ------- null} h -t 4.77109 -s 0 -d 9 -p ack -e 40 -c 0 -i 8444 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.7711 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8447 -a 0 -x {9.0 10.0 4228 ------- null} + -t 4.7711 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8447 -a 0 -x {9.0 10.0 4228 ------- null} h -t 4.7711 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8447 -a 0 -x {9.0 10.0 4228 ------- null} r -t 4.77118 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8433 -a 0 -x {9.0 10.0 4221 ------- null} + -t 4.77118 -s 10 -d 7 -p ack -e 40 -c 0 -i 8452 -a 0 -x {10.0 9.0 4221 ------- null} - -t 4.77118 -s 10 -d 7 -p ack -e 40 -c 0 -i 8452 -a 0 -x {10.0 9.0 4221 ------- null} h -t 4.77118 -s 10 -d 7 -p ack -e 40 -c 0 -i 8452 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.77179 -s 0 -d 9 -p ack -e 40 -c 0 -i 8442 -a 0 -x {10.0 9.0 4216 ------- null} + -t 4.77179 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8453 -a 0 -x {9.0 10.0 4231 ------- null} - -t 4.77179 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8453 -a 0 -x {9.0 10.0 4231 ------- null} h -t 4.77179 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8453 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.77192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8439 -a 0 -x {9.0 10.0 4224 ------- null} - -t 4.77192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8439 -a 0 -x {9.0 10.0 4224 ------- null} h -t 4.77192 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8439 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.77208 -s 0 -d 9 -p ack -e 40 -c 0 -i 8446 -a 0 -x {10.0 9.0 4218 ------- null} - -t 4.77208 -s 0 -d 9 -p ack -e 40 -c 0 -i 8446 -a 0 -x {10.0 9.0 4218 ------- null} h -t 4.77208 -s 0 -d 9 -p ack -e 40 -c 0 -i 8446 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.77213 -s 10 -d 7 -p ack -e 40 -c 0 -i 8450 -a 0 -x {10.0 9.0 4220 ------- null} + -t 4.77213 -s 7 -d 0 -p ack -e 40 -c 0 -i 8450 -a 0 -x {10.0 9.0 4220 ------- null} h -t 4.77213 -s 7 -d 8 -p ack -e 40 -c 0 -i 8450 -a 0 -x {10.0 9.0 4220 ------- null} r -t 4.77227 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8435 -a 0 -x {9.0 10.0 4222 ------- null} + -t 4.77227 -s 10 -d 7 -p ack -e 40 -c 0 -i 8454 -a 0 -x {10.0 9.0 4222 ------- null} - -t 4.77227 -s 10 -d 7 -p ack -e 40 -c 0 -i 8454 -a 0 -x {10.0 9.0 4222 ------- null} h -t 4.77227 -s 10 -d 7 -p ack -e 40 -c 0 -i 8454 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.77229 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8449 -a 0 -x {9.0 10.0 4229 ------- null} + -t 4.77229 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8449 -a 0 -x {9.0 10.0 4229 ------- null} h -t 4.77229 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8449 -a 0 -x {9.0 10.0 4229 ------- null} + -t 4.77301 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8441 -a 0 -x {9.0 10.0 4225 ------- null} - -t 4.77301 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8441 -a 0 -x {9.0 10.0 4225 ------- null} h -t 4.77301 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8441 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.77312 -s 0 -d 9 -p ack -e 40 -c 0 -i 8444 -a 0 -x {10.0 9.0 4217 ------- null} + -t 4.77312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8455 -a 0 -x {9.0 10.0 4232 ------- null} - -t 4.77312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8455 -a 0 -x {9.0 10.0 4232 ------- null} h -t 4.77312 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8455 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.77312 -s 0 -d 9 -p ack -e 40 -c 0 -i 8448 -a 0 -x {10.0 9.0 4219 ------- null} - -t 4.77312 -s 0 -d 9 -p ack -e 40 -c 0 -i 8448 -a 0 -x {10.0 9.0 4219 ------- null} h -t 4.77312 -s 0 -d 9 -p ack -e 40 -c 0 -i 8448 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.77322 -s 10 -d 7 -p ack -e 40 -c 0 -i 8452 -a 0 -x {10.0 9.0 4221 ------- null} + -t 4.77322 -s 7 -d 0 -p ack -e 40 -c 0 -i 8452 -a 0 -x {10.0 9.0 4221 ------- null} h -t 4.77322 -s 7 -d 8 -p ack -e 40 -c 0 -i 8452 -a 0 -x {10.0 9.0 4221 ------- null} r -t 4.77346 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8451 -a 0 -x {9.0 10.0 4230 ------- null} + -t 4.77346 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8451 -a 0 -x {9.0 10.0 4230 ------- null} h -t 4.77346 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8451 -a 0 -x {9.0 10.0 4230 ------- null} r -t 4.77363 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8437 -a 0 -x {9.0 10.0 4223 ------- null} + -t 4.77363 -s 10 -d 7 -p ack -e 40 -c 0 -i 8456 -a 0 -x {10.0 9.0 4223 ------- null} - -t 4.77363 -s 10 -d 7 -p ack -e 40 -c 0 -i 8456 -a 0 -x {10.0 9.0 4223 ------- null} h -t 4.77363 -s 10 -d 7 -p ack -e 40 -c 0 -i 8456 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.7741 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8443 -a 0 -x {9.0 10.0 4226 ------- null} - -t 4.7741 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8443 -a 0 -x {9.0 10.0 4226 ------- null} h -t 4.7741 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8443 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.77411 -s 0 -d 9 -p ack -e 40 -c 0 -i 8446 -a 0 -x {10.0 9.0 4218 ------- null} + -t 4.77411 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8457 -a 0 -x {9.0 10.0 4233 ------- null} - -t 4.77411 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8457 -a 0 -x {9.0 10.0 4233 ------- null} h -t 4.77411 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8457 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.7743 -s 10 -d 7 -p ack -e 40 -c 0 -i 8454 -a 0 -x {10.0 9.0 4222 ------- null} + -t 4.7743 -s 7 -d 0 -p ack -e 40 -c 0 -i 8454 -a 0 -x {10.0 9.0 4222 ------- null} h -t 4.7743 -s 7 -d 8 -p ack -e 40 -c 0 -i 8454 -a 0 -x {10.0 9.0 4222 ------- null} + -t 4.77435 -s 0 -d 9 -p ack -e 40 -c 0 -i 8450 -a 0 -x {10.0 9.0 4220 ------- null} - -t 4.77435 -s 0 -d 9 -p ack -e 40 -c 0 -i 8450 -a 0 -x {10.0 9.0 4220 ------- null} h -t 4.77435 -s 0 -d 9 -p ack -e 40 -c 0 -i 8450 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.77459 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8453 -a 0 -x {9.0 10.0 4231 ------- null} + -t 4.77459 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8453 -a 0 -x {9.0 10.0 4231 ------- null} h -t 4.77459 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8453 -a 0 -x {9.0 10.0 4231 ------- null} r -t 4.77472 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8439 -a 0 -x {9.0 10.0 4224 ------- null} + -t 4.77472 -s 10 -d 7 -p ack -e 40 -c 0 -i 8458 -a 0 -x {10.0 9.0 4224 ------- null} - -t 4.77472 -s 10 -d 7 -p ack -e 40 -c 0 -i 8458 -a 0 -x {10.0 9.0 4224 ------- null} h -t 4.77472 -s 10 -d 7 -p ack -e 40 -c 0 -i 8458 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.77515 -s 0 -d 9 -p ack -e 40 -c 0 -i 8448 -a 0 -x {10.0 9.0 4219 ------- null} + -t 4.77515 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8459 -a 0 -x {9.0 10.0 4234 ------- null} - -t 4.77515 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8459 -a 0 -x {9.0 10.0 4234 ------- null} h -t 4.77515 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8459 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.77518 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8445 -a 0 -x {9.0 10.0 4227 ------- null} - -t 4.77518 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8445 -a 0 -x {9.0 10.0 4227 ------- null} h -t 4.77518 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8445 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.77549 -s 0 -d 9 -p ack -e 40 -c 0 -i 8452 -a 0 -x {10.0 9.0 4221 ------- null} - -t 4.77549 -s 0 -d 9 -p ack -e 40 -c 0 -i 8452 -a 0 -x {10.0 9.0 4221 ------- null} h -t 4.77549 -s 0 -d 9 -p ack -e 40 -c 0 -i 8452 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.77566 -s 10 -d 7 -p ack -e 40 -c 0 -i 8456 -a 0 -x {10.0 9.0 4223 ------- null} + -t 4.77566 -s 7 -d 0 -p ack -e 40 -c 0 -i 8456 -a 0 -x {10.0 9.0 4223 ------- null} h -t 4.77566 -s 7 -d 8 -p ack -e 40 -c 0 -i 8456 -a 0 -x {10.0 9.0 4223 ------- null} r -t 4.77581 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8441 -a 0 -x {9.0 10.0 4225 ------- null} + -t 4.77581 -s 10 -d 7 -p ack -e 40 -c 0 -i 8460 -a 0 -x {10.0 9.0 4225 ------- null} - -t 4.77581 -s 10 -d 7 -p ack -e 40 -c 0 -i 8460 -a 0 -x {10.0 9.0 4225 ------- null} h -t 4.77581 -s 10 -d 7 -p ack -e 40 -c 0 -i 8460 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.77592 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8455 -a 0 -x {9.0 10.0 4232 ------- null} + -t 4.77592 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8455 -a 0 -x {9.0 10.0 4232 ------- null} h -t 4.77592 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8455 -a 0 -x {9.0 10.0 4232 ------- null} r -t 4.77638 -s 0 -d 9 -p ack -e 40 -c 0 -i 8450 -a 0 -x {10.0 9.0 4220 ------- null} + -t 4.77638 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8461 -a 0 -x {9.0 10.0 4235 ------- null} - -t 4.77638 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8461 -a 0 -x {9.0 10.0 4235 ------- null} h -t 4.77638 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8461 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.77656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8447 -a 0 -x {9.0 10.0 4228 ------- null} - -t 4.77656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8447 -a 0 -x {9.0 10.0 4228 ------- null} h -t 4.77656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8447 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.77675 -s 10 -d 7 -p ack -e 40 -c 0 -i 8458 -a 0 -x {10.0 9.0 4224 ------- null} + -t 4.77675 -s 7 -d 0 -p ack -e 40 -c 0 -i 8458 -a 0 -x {10.0 9.0 4224 ------- null} h -t 4.77675 -s 7 -d 8 -p ack -e 40 -c 0 -i 8458 -a 0 -x {10.0 9.0 4224 ------- null} + -t 4.77686 -s 0 -d 9 -p ack -e 40 -c 0 -i 8454 -a 0 -x {10.0 9.0 4222 ------- null} - -t 4.77686 -s 0 -d 9 -p ack -e 40 -c 0 -i 8454 -a 0 -x {10.0 9.0 4222 ------- null} h -t 4.77686 -s 0 -d 9 -p ack -e 40 -c 0 -i 8454 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.7769 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8443 -a 0 -x {9.0 10.0 4226 ------- null} + -t 4.7769 -s 10 -d 7 -p ack -e 40 -c 0 -i 8462 -a 0 -x {10.0 9.0 4226 ------- null} - -t 4.7769 -s 10 -d 7 -p ack -e 40 -c 0 -i 8462 -a 0 -x {10.0 9.0 4226 ------- null} h -t 4.7769 -s 10 -d 7 -p ack -e 40 -c 0 -i 8462 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.77691 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8457 -a 0 -x {9.0 10.0 4233 ------- null} + -t 4.77691 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8457 -a 0 -x {9.0 10.0 4233 ------- null} h -t 4.77691 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8457 -a 0 -x {9.0 10.0 4233 ------- null} r -t 4.77752 -s 0 -d 9 -p ack -e 40 -c 0 -i 8452 -a 0 -x {10.0 9.0 4221 ------- null} + -t 4.77752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8463 -a 0 -x {9.0 10.0 4236 ------- null} - -t 4.77752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8463 -a 0 -x {9.0 10.0 4236 ------- null} h -t 4.77752 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8463 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.77771 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8449 -a 0 -x {9.0 10.0 4229 ------- null} - -t 4.77771 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8449 -a 0 -x {9.0 10.0 4229 ------- null} h -t 4.77771 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8449 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.77779 -s 0 -d 9 -p ack -e 40 -c 0 -i 8456 -a 0 -x {10.0 9.0 4223 ------- null} - -t 4.77779 -s 0 -d 9 -p ack -e 40 -c 0 -i 8456 -a 0 -x {10.0 9.0 4223 ------- null} h -t 4.77779 -s 0 -d 9 -p ack -e 40 -c 0 -i 8456 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.77784 -s 10 -d 7 -p ack -e 40 -c 0 -i 8460 -a 0 -x {10.0 9.0 4225 ------- null} + -t 4.77784 -s 7 -d 0 -p ack -e 40 -c 0 -i 8460 -a 0 -x {10.0 9.0 4225 ------- null} h -t 4.77784 -s 7 -d 8 -p ack -e 40 -c 0 -i 8460 -a 0 -x {10.0 9.0 4225 ------- null} r -t 4.77795 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8459 -a 0 -x {9.0 10.0 4234 ------- null} + -t 4.77795 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8459 -a 0 -x {9.0 10.0 4234 ------- null} h -t 4.77795 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8459 -a 0 -x {9.0 10.0 4234 ------- null} r -t 4.77798 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8445 -a 0 -x {9.0 10.0 4227 ------- null} + -t 4.77798 -s 10 -d 7 -p ack -e 40 -c 0 -i 8464 -a 0 -x {10.0 9.0 4227 ------- null} - -t 4.77798 -s 10 -d 7 -p ack -e 40 -c 0 -i 8464 -a 0 -x {10.0 9.0 4227 ------- null} h -t 4.77798 -s 10 -d 7 -p ack -e 40 -c 0 -i 8464 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.7788 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8451 -a 0 -x {9.0 10.0 4230 ------- null} - -t 4.7788 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8451 -a 0 -x {9.0 10.0 4230 ------- null} h -t 4.7788 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8451 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.7789 -s 0 -d 9 -p ack -e 40 -c 0 -i 8454 -a 0 -x {10.0 9.0 4222 ------- null} + -t 4.7789 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8465 -a 0 -x {9.0 10.0 4237 ------- null} - -t 4.7789 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8465 -a 0 -x {9.0 10.0 4237 ------- null} h -t 4.7789 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8465 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.77893 -s 10 -d 7 -p ack -e 40 -c 0 -i 8462 -a 0 -x {10.0 9.0 4226 ------- null} + -t 4.77893 -s 7 -d 0 -p ack -e 40 -c 0 -i 8462 -a 0 -x {10.0 9.0 4226 ------- null} h -t 4.77893 -s 7 -d 8 -p ack -e 40 -c 0 -i 8462 -a 0 -x {10.0 9.0 4226 ------- null} + -t 4.77901 -s 0 -d 9 -p ack -e 40 -c 0 -i 8458 -a 0 -x {10.0 9.0 4224 ------- null} - -t 4.77901 -s 0 -d 9 -p ack -e 40 -c 0 -i 8458 -a 0 -x {10.0 9.0 4224 ------- null} h -t 4.77901 -s 0 -d 9 -p ack -e 40 -c 0 -i 8458 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.77918 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8461 -a 0 -x {9.0 10.0 4235 ------- null} + -t 4.77918 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8461 -a 0 -x {9.0 10.0 4235 ------- null} h -t 4.77918 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8461 -a 0 -x {9.0 10.0 4235 ------- null} r -t 4.77936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8447 -a 0 -x {9.0 10.0 4228 ------- null} + -t 4.77936 -s 10 -d 7 -p ack -e 40 -c 0 -i 8466 -a 0 -x {10.0 9.0 4228 ------- null} - -t 4.77936 -s 10 -d 7 -p ack -e 40 -c 0 -i 8466 -a 0 -x {10.0 9.0 4228 ------- null} h -t 4.77936 -s 10 -d 7 -p ack -e 40 -c 0 -i 8466 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.77982 -s 0 -d 9 -p ack -e 40 -c 0 -i 8456 -a 0 -x {10.0 9.0 4223 ------- null} + -t 4.77982 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8467 -a 0 -x {9.0 10.0 4238 ------- null} - -t 4.77982 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8467 -a 0 -x {9.0 10.0 4238 ------- null} h -t 4.77982 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8467 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.77989 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8453 -a 0 -x {9.0 10.0 4231 ------- null} - -t 4.77989 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8453 -a 0 -x {9.0 10.0 4231 ------- null} h -t 4.77989 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8453 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.77995 -s 0 -d 9 -p ack -e 40 -c 0 -i 8460 -a 0 -x {10.0 9.0 4225 ------- null} - -t 4.77995 -s 0 -d 9 -p ack -e 40 -c 0 -i 8460 -a 0 -x {10.0 9.0 4225 ------- null} h -t 4.77995 -s 0 -d 9 -p ack -e 40 -c 0 -i 8460 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.78002 -s 10 -d 7 -p ack -e 40 -c 0 -i 8464 -a 0 -x {10.0 9.0 4227 ------- null} + -t 4.78002 -s 7 -d 0 -p ack -e 40 -c 0 -i 8464 -a 0 -x {10.0 9.0 4227 ------- null} h -t 4.78002 -s 7 -d 8 -p ack -e 40 -c 0 -i 8464 -a 0 -x {10.0 9.0 4227 ------- null} r -t 4.78032 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8463 -a 0 -x {9.0 10.0 4236 ------- null} + -t 4.78032 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8463 -a 0 -x {9.0 10.0 4236 ------- null} h -t 4.78032 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8463 -a 0 -x {9.0 10.0 4236 ------- null} r -t 4.78051 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8449 -a 0 -x {9.0 10.0 4229 ------- null} + -t 4.78051 -s 10 -d 7 -p ack -e 40 -c 0 -i 8468 -a 0 -x {10.0 9.0 4229 ------- null} - -t 4.78051 -s 10 -d 7 -p ack -e 40 -c 0 -i 8468 -a 0 -x {10.0 9.0 4229 ------- null} h -t 4.78051 -s 10 -d 7 -p ack -e 40 -c 0 -i 8468 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.78098 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8455 -a 0 -x {9.0 10.0 4232 ------- null} - -t 4.78098 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8455 -a 0 -x {9.0 10.0 4232 ------- null} h -t 4.78098 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8455 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.78104 -s 0 -d 9 -p ack -e 40 -c 0 -i 8458 -a 0 -x {10.0 9.0 4224 ------- null} + -t 4.78104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8469 -a 0 -x {9.0 10.0 4239 ------- null} - -t 4.78104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8469 -a 0 -x {9.0 10.0 4239 ------- null} h -t 4.78104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8469 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.78106 -s 0 -d 9 -p ack -e 40 -c 0 -i 8462 -a 0 -x {10.0 9.0 4226 ------- null} - -t 4.78106 -s 0 -d 9 -p ack -e 40 -c 0 -i 8462 -a 0 -x {10.0 9.0 4226 ------- null} h -t 4.78106 -s 0 -d 9 -p ack -e 40 -c 0 -i 8462 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.78139 -s 10 -d 7 -p ack -e 40 -c 0 -i 8466 -a 0 -x {10.0 9.0 4228 ------- null} + -t 4.78139 -s 7 -d 0 -p ack -e 40 -c 0 -i 8466 -a 0 -x {10.0 9.0 4228 ------- null} h -t 4.78139 -s 7 -d 8 -p ack -e 40 -c 0 -i 8466 -a 0 -x {10.0 9.0 4228 ------- null} r -t 4.7816 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8451 -a 0 -x {9.0 10.0 4230 ------- null} + -t 4.7816 -s 10 -d 7 -p ack -e 40 -c 0 -i 8470 -a 0 -x {10.0 9.0 4230 ------- null} - -t 4.7816 -s 10 -d 7 -p ack -e 40 -c 0 -i 8470 -a 0 -x {10.0 9.0 4230 ------- null} h -t 4.7816 -s 10 -d 7 -p ack -e 40 -c 0 -i 8470 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.7817 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8465 -a 0 -x {9.0 10.0 4237 ------- null} + -t 4.7817 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8465 -a 0 -x {9.0 10.0 4237 ------- null} h -t 4.7817 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8465 -a 0 -x {9.0 10.0 4237 ------- null} r -t 4.78198 -s 0 -d 9 -p ack -e 40 -c 0 -i 8460 -a 0 -x {10.0 9.0 4225 ------- null} + -t 4.78198 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8471 -a 0 -x {9.0 10.0 4240 ------- null} - -t 4.78198 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8471 -a 0 -x {9.0 10.0 4240 ------- null} h -t 4.78198 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8471 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.78206 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8457 -a 0 -x {9.0 10.0 4233 ------- null} - -t 4.78206 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8457 -a 0 -x {9.0 10.0 4233 ------- null} h -t 4.78206 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8457 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.78221 -s 0 -d 9 -p ack -e 40 -c 0 -i 8464 -a 0 -x {10.0 9.0 4227 ------- null} - -t 4.78221 -s 0 -d 9 -p ack -e 40 -c 0 -i 8464 -a 0 -x {10.0 9.0 4227 ------- null} h -t 4.78221 -s 0 -d 9 -p ack -e 40 -c 0 -i 8464 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.78254 -s 10 -d 7 -p ack -e 40 -c 0 -i 8468 -a 0 -x {10.0 9.0 4229 ------- null} + -t 4.78254 -s 7 -d 0 -p ack -e 40 -c 0 -i 8468 -a 0 -x {10.0 9.0 4229 ------- null} h -t 4.78254 -s 7 -d 8 -p ack -e 40 -c 0 -i 8468 -a 0 -x {10.0 9.0 4229 ------- null} r -t 4.78262 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8467 -a 0 -x {9.0 10.0 4238 ------- null} + -t 4.78262 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8467 -a 0 -x {9.0 10.0 4238 ------- null} h -t 4.78262 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8467 -a 0 -x {9.0 10.0 4238 ------- null} r -t 4.78269 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8453 -a 0 -x {9.0 10.0 4231 ------- null} + -t 4.78269 -s 10 -d 7 -p ack -e 40 -c 0 -i 8472 -a 0 -x {10.0 9.0 4231 ------- null} - -t 4.78269 -s 10 -d 7 -p ack -e 40 -c 0 -i 8472 -a 0 -x {10.0 9.0 4231 ------- null} h -t 4.78269 -s 10 -d 7 -p ack -e 40 -c 0 -i 8472 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.78309 -s 0 -d 9 -p ack -e 40 -c 0 -i 8462 -a 0 -x {10.0 9.0 4226 ------- null} + -t 4.78309 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8473 -a 0 -x {9.0 10.0 4241 ------- null} - -t 4.78309 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8473 -a 0 -x {9.0 10.0 4241 ------- null} h -t 4.78309 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8473 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.78315 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8459 -a 0 -x {9.0 10.0 4234 ------- null} - -t 4.78315 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8459 -a 0 -x {9.0 10.0 4234 ------- null} h -t 4.78315 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8459 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.78326 -s 0 -d 9 -p ack -e 40 -c 0 -i 8466 -a 0 -x {10.0 9.0 4228 ------- null} - -t 4.78326 -s 0 -d 9 -p ack -e 40 -c 0 -i 8466 -a 0 -x {10.0 9.0 4228 ------- null} h -t 4.78326 -s 0 -d 9 -p ack -e 40 -c 0 -i 8466 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.78363 -s 10 -d 7 -p ack -e 40 -c 0 -i 8470 -a 0 -x {10.0 9.0 4230 ------- null} + -t 4.78363 -s 7 -d 0 -p ack -e 40 -c 0 -i 8470 -a 0 -x {10.0 9.0 4230 ------- null} h -t 4.78363 -s 7 -d 8 -p ack -e 40 -c 0 -i 8470 -a 0 -x {10.0 9.0 4230 ------- null} r -t 4.78378 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8455 -a 0 -x {9.0 10.0 4232 ------- null} + -t 4.78378 -s 10 -d 7 -p ack -e 40 -c 0 -i 8474 -a 0 -x {10.0 9.0 4232 ------- null} - -t 4.78378 -s 10 -d 7 -p ack -e 40 -c 0 -i 8474 -a 0 -x {10.0 9.0 4232 ------- null} h -t 4.78378 -s 10 -d 7 -p ack -e 40 -c 0 -i 8474 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.78384 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8469 -a 0 -x {9.0 10.0 4239 ------- null} + -t 4.78384 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8469 -a 0 -x {9.0 10.0 4239 ------- null} h -t 4.78384 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8469 -a 0 -x {9.0 10.0 4239 ------- null} r -t 4.78424 -s 0 -d 9 -p ack -e 40 -c 0 -i 8464 -a 0 -x {10.0 9.0 4227 ------- null} + -t 4.78424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8475 -a 0 -x {9.0 10.0 4242 ------- null} - -t 4.78424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8475 -a 0 -x {9.0 10.0 4242 ------- null} h -t 4.78424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8475 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.78424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8461 -a 0 -x {9.0 10.0 4235 ------- null} - -t 4.78424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8461 -a 0 -x {9.0 10.0 4235 ------- null} h -t 4.78424 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8461 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.7843 -s 0 -d 9 -p ack -e 40 -c 0 -i 8468 -a 0 -x {10.0 9.0 4229 ------- null} - -t 4.7843 -s 0 -d 9 -p ack -e 40 -c 0 -i 8468 -a 0 -x {10.0 9.0 4229 ------- null} h -t 4.7843 -s 0 -d 9 -p ack -e 40 -c 0 -i 8468 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.78472 -s 10 -d 7 -p ack -e 40 -c 0 -i 8472 -a 0 -x {10.0 9.0 4231 ------- null} + -t 4.78472 -s 7 -d 0 -p ack -e 40 -c 0 -i 8472 -a 0 -x {10.0 9.0 4231 ------- null} h -t 4.78472 -s 7 -d 8 -p ack -e 40 -c 0 -i 8472 -a 0 -x {10.0 9.0 4231 ------- null} r -t 4.78478 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8471 -a 0 -x {9.0 10.0 4240 ------- null} + -t 4.78478 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8471 -a 0 -x {9.0 10.0 4240 ------- null} h -t 4.78478 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8471 -a 0 -x {9.0 10.0 4240 ------- null} r -t 4.78486 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8457 -a 0 -x {9.0 10.0 4233 ------- null} + -t 4.78486 -s 10 -d 7 -p ack -e 40 -c 0 -i 8476 -a 0 -x {10.0 9.0 4233 ------- null} - -t 4.78486 -s 10 -d 7 -p ack -e 40 -c 0 -i 8476 -a 0 -x {10.0 9.0 4233 ------- null} h -t 4.78486 -s 10 -d 7 -p ack -e 40 -c 0 -i 8476 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.7853 -s 0 -d 9 -p ack -e 40 -c 0 -i 8466 -a 0 -x {10.0 9.0 4228 ------- null} + -t 4.7853 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8477 -a 0 -x {9.0 10.0 4243 ------- null} - -t 4.7853 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8477 -a 0 -x {9.0 10.0 4243 ------- null} h -t 4.7853 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8477 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.78533 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8463 -a 0 -x {9.0 10.0 4236 ------- null} - -t 4.78533 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8463 -a 0 -x {9.0 10.0 4236 ------- null} h -t 4.78533 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8463 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.78554 -s 0 -d 9 -p ack -e 40 -c 0 -i 8470 -a 0 -x {10.0 9.0 4230 ------- null} - -t 4.78554 -s 0 -d 9 -p ack -e 40 -c 0 -i 8470 -a 0 -x {10.0 9.0 4230 ------- null} h -t 4.78554 -s 0 -d 9 -p ack -e 40 -c 0 -i 8470 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.78581 -s 10 -d 7 -p ack -e 40 -c 0 -i 8474 -a 0 -x {10.0 9.0 4232 ------- null} + -t 4.78581 -s 7 -d 0 -p ack -e 40 -c 0 -i 8474 -a 0 -x {10.0 9.0 4232 ------- null} h -t 4.78581 -s 7 -d 8 -p ack -e 40 -c 0 -i 8474 -a 0 -x {10.0 9.0 4232 ------- null} r -t 4.78589 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8473 -a 0 -x {9.0 10.0 4241 ------- null} + -t 4.78589 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8473 -a 0 -x {9.0 10.0 4241 ------- null} h -t 4.78589 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8473 -a 0 -x {9.0 10.0 4241 ------- null} r -t 4.78595 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8459 -a 0 -x {9.0 10.0 4234 ------- null} + -t 4.78595 -s 10 -d 7 -p ack -e 40 -c 0 -i 8478 -a 0 -x {10.0 9.0 4234 ------- null} - -t 4.78595 -s 10 -d 7 -p ack -e 40 -c 0 -i 8478 -a 0 -x {10.0 9.0 4234 ------- null} h -t 4.78595 -s 10 -d 7 -p ack -e 40 -c 0 -i 8478 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.78634 -s 0 -d 9 -p ack -e 40 -c 0 -i 8468 -a 0 -x {10.0 9.0 4229 ------- null} + -t 4.78634 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8479 -a 0 -x {9.0 10.0 4244 ------- null} - -t 4.78634 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8479 -a 0 -x {9.0 10.0 4244 ------- null} h -t 4.78634 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8479 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.78642 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8465 -a 0 -x {9.0 10.0 4237 ------- null} - -t 4.78642 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8465 -a 0 -x {9.0 10.0 4237 ------- null} h -t 4.78642 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8465 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.7865 -s 0 -d 9 -p ack -e 40 -c 0 -i 8472 -a 0 -x {10.0 9.0 4231 ------- null} - -t 4.7865 -s 0 -d 9 -p ack -e 40 -c 0 -i 8472 -a 0 -x {10.0 9.0 4231 ------- null} h -t 4.7865 -s 0 -d 9 -p ack -e 40 -c 0 -i 8472 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.7869 -s 10 -d 7 -p ack -e 40 -c 0 -i 8476 -a 0 -x {10.0 9.0 4233 ------- null} + -t 4.7869 -s 7 -d 0 -p ack -e 40 -c 0 -i 8476 -a 0 -x {10.0 9.0 4233 ------- null} h -t 4.7869 -s 7 -d 8 -p ack -e 40 -c 0 -i 8476 -a 0 -x {10.0 9.0 4233 ------- null} r -t 4.78704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8475 -a 0 -x {9.0 10.0 4242 ------- null} + -t 4.78704 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8475 -a 0 -x {9.0 10.0 4242 ------- null} h -t 4.78704 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8475 -a 0 -x {9.0 10.0 4242 ------- null} r -t 4.78704 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8461 -a 0 -x {9.0 10.0 4235 ------- null} + -t 4.78704 -s 10 -d 7 -p ack -e 40 -c 0 -i 8480 -a 0 -x {10.0 9.0 4235 ------- null} - -t 4.78704 -s 10 -d 7 -p ack -e 40 -c 0 -i 8480 -a 0 -x {10.0 9.0 4235 ------- null} h -t 4.78704 -s 10 -d 7 -p ack -e 40 -c 0 -i 8480 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.7875 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8467 -a 0 -x {9.0 10.0 4238 ------- null} - -t 4.7875 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8467 -a 0 -x {9.0 10.0 4238 ------- null} h -t 4.7875 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8467 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.78757 -s 0 -d 9 -p ack -e 40 -c 0 -i 8470 -a 0 -x {10.0 9.0 4230 ------- null} + -t 4.78757 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8481 -a 0 -x {9.0 10.0 4245 ------- null} - -t 4.78757 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8481 -a 0 -x {9.0 10.0 4245 ------- null} h -t 4.78757 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8481 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.78763 -s 0 -d 9 -p ack -e 40 -c 0 -i 8474 -a 0 -x {10.0 9.0 4232 ------- null} - -t 4.78763 -s 0 -d 9 -p ack -e 40 -c 0 -i 8474 -a 0 -x {10.0 9.0 4232 ------- null} h -t 4.78763 -s 0 -d 9 -p ack -e 40 -c 0 -i 8474 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.78798 -s 10 -d 7 -p ack -e 40 -c 0 -i 8478 -a 0 -x {10.0 9.0 4234 ------- null} + -t 4.78798 -s 7 -d 0 -p ack -e 40 -c 0 -i 8478 -a 0 -x {10.0 9.0 4234 ------- null} h -t 4.78798 -s 7 -d 8 -p ack -e 40 -c 0 -i 8478 -a 0 -x {10.0 9.0 4234 ------- null} r -t 4.7881 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8477 -a 0 -x {9.0 10.0 4243 ------- null} + -t 4.7881 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8477 -a 0 -x {9.0 10.0 4243 ------- null} h -t 4.7881 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8477 -a 0 -x {9.0 10.0 4243 ------- null} r -t 4.78813 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8463 -a 0 -x {9.0 10.0 4236 ------- null} + -t 4.78813 -s 10 -d 7 -p ack -e 40 -c 0 -i 8482 -a 0 -x {10.0 9.0 4236 ------- null} - -t 4.78813 -s 10 -d 7 -p ack -e 40 -c 0 -i 8482 -a 0 -x {10.0 9.0 4236 ------- null} h -t 4.78813 -s 10 -d 7 -p ack -e 40 -c 0 -i 8482 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.78853 -s 0 -d 9 -p ack -e 40 -c 0 -i 8472 -a 0 -x {10.0 9.0 4231 ------- null} + -t 4.78853 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8483 -a 0 -x {9.0 10.0 4246 ------- null} - -t 4.78853 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8483 -a 0 -x {9.0 10.0 4246 ------- null} h -t 4.78853 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8483 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.78859 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8469 -a 0 -x {9.0 10.0 4239 ------- null} - -t 4.78859 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8469 -a 0 -x {9.0 10.0 4239 ------- null} h -t 4.78859 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8469 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.78869 -s 0 -d 9 -p ack -e 40 -c 0 -i 8476 -a 0 -x {10.0 9.0 4233 ------- null} - -t 4.78869 -s 0 -d 9 -p ack -e 40 -c 0 -i 8476 -a 0 -x {10.0 9.0 4233 ------- null} h -t 4.78869 -s 0 -d 9 -p ack -e 40 -c 0 -i 8476 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.78907 -s 10 -d 7 -p ack -e 40 -c 0 -i 8480 -a 0 -x {10.0 9.0 4235 ------- null} + -t 4.78907 -s 7 -d 0 -p ack -e 40 -c 0 -i 8480 -a 0 -x {10.0 9.0 4235 ------- null} h -t 4.78907 -s 7 -d 8 -p ack -e 40 -c 0 -i 8480 -a 0 -x {10.0 9.0 4235 ------- null} r -t 4.78914 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8479 -a 0 -x {9.0 10.0 4244 ------- null} + -t 4.78914 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8479 -a 0 -x {9.0 10.0 4244 ------- null} h -t 4.78914 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8479 -a 0 -x {9.0 10.0 4244 ------- null} r -t 4.78922 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8465 -a 0 -x {9.0 10.0 4237 ------- null} + -t 4.78922 -s 10 -d 7 -p ack -e 40 -c 0 -i 8484 -a 0 -x {10.0 9.0 4237 ------- null} - -t 4.78922 -s 10 -d 7 -p ack -e 40 -c 0 -i 8484 -a 0 -x {10.0 9.0 4237 ------- null} h -t 4.78922 -s 10 -d 7 -p ack -e 40 -c 0 -i 8484 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.78966 -s 0 -d 9 -p ack -e 40 -c 0 -i 8474 -a 0 -x {10.0 9.0 4232 ------- null} + -t 4.78966 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8485 -a 0 -x {9.0 10.0 4247 ------- null} - -t 4.78966 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8485 -a 0 -x {9.0 10.0 4247 ------- null} h -t 4.78966 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8485 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.78968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8471 -a 0 -x {9.0 10.0 4240 ------- null} - -t 4.78968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8471 -a 0 -x {9.0 10.0 4240 ------- null} h -t 4.78968 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8471 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.78979 -s 0 -d 9 -p ack -e 40 -c 0 -i 8478 -a 0 -x {10.0 9.0 4234 ------- null} - -t 4.78979 -s 0 -d 9 -p ack -e 40 -c 0 -i 8478 -a 0 -x {10.0 9.0 4234 ------- null} h -t 4.78979 -s 0 -d 9 -p ack -e 40 -c 0 -i 8478 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.79016 -s 10 -d 7 -p ack -e 40 -c 0 -i 8482 -a 0 -x {10.0 9.0 4236 ------- null} + -t 4.79016 -s 7 -d 0 -p ack -e 40 -c 0 -i 8482 -a 0 -x {10.0 9.0 4236 ------- null} h -t 4.79016 -s 7 -d 8 -p ack -e 40 -c 0 -i 8482 -a 0 -x {10.0 9.0 4236 ------- null} r -t 4.7903 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8467 -a 0 -x {9.0 10.0 4238 ------- null} + -t 4.7903 -s 10 -d 7 -p ack -e 40 -c 0 -i 8486 -a 0 -x {10.0 9.0 4238 ------- null} - -t 4.7903 -s 10 -d 7 -p ack -e 40 -c 0 -i 8486 -a 0 -x {10.0 9.0 4238 ------- null} h -t 4.7903 -s 10 -d 7 -p ack -e 40 -c 0 -i 8486 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.79037 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8481 -a 0 -x {9.0 10.0 4245 ------- null} + -t 4.79037 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8481 -a 0 -x {9.0 10.0 4245 ------- null} h -t 4.79037 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8481 -a 0 -x {9.0 10.0 4245 ------- null} r -t 4.79072 -s 0 -d 9 -p ack -e 40 -c 0 -i 8476 -a 0 -x {10.0 9.0 4233 ------- null} + -t 4.79072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8487 -a 0 -x {9.0 10.0 4248 ------- null} - -t 4.79072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8487 -a 0 -x {9.0 10.0 4248 ------- null} h -t 4.79072 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8487 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.79077 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8473 -a 0 -x {9.0 10.0 4241 ------- null} - -t 4.79077 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8473 -a 0 -x {9.0 10.0 4241 ------- null} h -t 4.79077 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8473 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.79083 -s 0 -d 9 -p ack -e 40 -c 0 -i 8480 -a 0 -x {10.0 9.0 4235 ------- null} - -t 4.79083 -s 0 -d 9 -p ack -e 40 -c 0 -i 8480 -a 0 -x {10.0 9.0 4235 ------- null} h -t 4.79083 -s 0 -d 9 -p ack -e 40 -c 0 -i 8480 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.79125 -s 10 -d 7 -p ack -e 40 -c 0 -i 8484 -a 0 -x {10.0 9.0 4237 ------- null} + -t 4.79125 -s 7 -d 0 -p ack -e 40 -c 0 -i 8484 -a 0 -x {10.0 9.0 4237 ------- null} h -t 4.79125 -s 7 -d 8 -p ack -e 40 -c 0 -i 8484 -a 0 -x {10.0 9.0 4237 ------- null} r -t 4.79133 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8483 -a 0 -x {9.0 10.0 4246 ------- null} + -t 4.79133 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8483 -a 0 -x {9.0 10.0 4246 ------- null} h -t 4.79133 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8483 -a 0 -x {9.0 10.0 4246 ------- null} r -t 4.79139 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8469 -a 0 -x {9.0 10.0 4239 ------- null} + -t 4.79139 -s 10 -d 7 -p ack -e 40 -c 0 -i 8488 -a 0 -x {10.0 9.0 4239 ------- null} - -t 4.79139 -s 10 -d 7 -p ack -e 40 -c 0 -i 8488 -a 0 -x {10.0 9.0 4239 ------- null} h -t 4.79139 -s 10 -d 7 -p ack -e 40 -c 0 -i 8488 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.79182 -s 0 -d 9 -p ack -e 40 -c 0 -i 8478 -a 0 -x {10.0 9.0 4234 ------- null} + -t 4.79182 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8489 -a 0 -x {9.0 10.0 4249 ------- null} - -t 4.79182 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8489 -a 0 -x {9.0 10.0 4249 ------- null} h -t 4.79182 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8489 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.79186 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8475 -a 0 -x {9.0 10.0 4242 ------- null} - -t 4.79186 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8475 -a 0 -x {9.0 10.0 4242 ------- null} h -t 4.79186 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8475 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.79208 -s 0 -d 9 -p ack -e 40 -c 0 -i 8482 -a 0 -x {10.0 9.0 4236 ------- null} - -t 4.79208 -s 0 -d 9 -p ack -e 40 -c 0 -i 8482 -a 0 -x {10.0 9.0 4236 ------- null} h -t 4.79208 -s 0 -d 9 -p ack -e 40 -c 0 -i 8482 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.79234 -s 10 -d 7 -p ack -e 40 -c 0 -i 8486 -a 0 -x {10.0 9.0 4238 ------- null} + -t 4.79234 -s 7 -d 0 -p ack -e 40 -c 0 -i 8486 -a 0 -x {10.0 9.0 4238 ------- null} h -t 4.79234 -s 7 -d 8 -p ack -e 40 -c 0 -i 8486 -a 0 -x {10.0 9.0 4238 ------- null} r -t 4.79246 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8485 -a 0 -x {9.0 10.0 4247 ------- null} + -t 4.79246 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8485 -a 0 -x {9.0 10.0 4247 ------- null} h -t 4.79246 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8485 -a 0 -x {9.0 10.0 4247 ------- null} r -t 4.79248 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8471 -a 0 -x {9.0 10.0 4240 ------- null} + -t 4.79248 -s 10 -d 7 -p ack -e 40 -c 0 -i 8490 -a 0 -x {10.0 9.0 4240 ------- null} - -t 4.79248 -s 10 -d 7 -p ack -e 40 -c 0 -i 8490 -a 0 -x {10.0 9.0 4240 ------- null} h -t 4.79248 -s 10 -d 7 -p ack -e 40 -c 0 -i 8490 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.79286 -s 0 -d 9 -p ack -e 40 -c 0 -i 8480 -a 0 -x {10.0 9.0 4235 ------- null} + -t 4.79286 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8491 -a 0 -x {9.0 10.0 4250 ------- null} - -t 4.79286 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8491 -a 0 -x {9.0 10.0 4250 ------- null} h -t 4.79286 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8491 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.79294 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8477 -a 0 -x {9.0 10.0 4243 ------- null} - -t 4.79294 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8477 -a 0 -x {9.0 10.0 4243 ------- null} h -t 4.79294 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8477 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.79317 -s 0 -d 9 -p ack -e 40 -c 0 -i 8484 -a 0 -x {10.0 9.0 4237 ------- null} - -t 4.79317 -s 0 -d 9 -p ack -e 40 -c 0 -i 8484 -a 0 -x {10.0 9.0 4237 ------- null} h -t 4.79317 -s 0 -d 9 -p ack -e 40 -c 0 -i 8484 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.79342 -s 10 -d 7 -p ack -e 40 -c 0 -i 8488 -a 0 -x {10.0 9.0 4239 ------- null} + -t 4.79342 -s 7 -d 0 -p ack -e 40 -c 0 -i 8488 -a 0 -x {10.0 9.0 4239 ------- null} h -t 4.79342 -s 7 -d 8 -p ack -e 40 -c 0 -i 8488 -a 0 -x {10.0 9.0 4239 ------- null} r -t 4.79352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8487 -a 0 -x {9.0 10.0 4248 ------- null} + -t 4.79352 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8487 -a 0 -x {9.0 10.0 4248 ------- null} h -t 4.79352 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8487 -a 0 -x {9.0 10.0 4248 ------- null} r -t 4.79357 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8473 -a 0 -x {9.0 10.0 4241 ------- null} + -t 4.79357 -s 10 -d 7 -p ack -e 40 -c 0 -i 8492 -a 0 -x {10.0 9.0 4241 ------- null} - -t 4.79357 -s 10 -d 7 -p ack -e 40 -c 0 -i 8492 -a 0 -x {10.0 9.0 4241 ------- null} h -t 4.79357 -s 10 -d 7 -p ack -e 40 -c 0 -i 8492 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.79403 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8479 -a 0 -x {9.0 10.0 4244 ------- null} - -t 4.79403 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8479 -a 0 -x {9.0 10.0 4244 ------- null} h -t 4.79403 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8479 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.79411 -s 0 -d 9 -p ack -e 40 -c 0 -i 8482 -a 0 -x {10.0 9.0 4236 ------- null} + -t 4.79411 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8493 -a 0 -x {9.0 10.0 4251 ------- null} - -t 4.79411 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8493 -a 0 -x {9.0 10.0 4251 ------- null} h -t 4.79411 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8493 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.79418 -s 0 -d 9 -p ack -e 40 -c 0 -i 8486 -a 0 -x {10.0 9.0 4238 ------- null} - -t 4.79418 -s 0 -d 9 -p ack -e 40 -c 0 -i 8486 -a 0 -x {10.0 9.0 4238 ------- null} h -t 4.79418 -s 0 -d 9 -p ack -e 40 -c 0 -i 8486 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.79451 -s 10 -d 7 -p ack -e 40 -c 0 -i 8490 -a 0 -x {10.0 9.0 4240 ------- null} + -t 4.79451 -s 7 -d 0 -p ack -e 40 -c 0 -i 8490 -a 0 -x {10.0 9.0 4240 ------- null} h -t 4.79451 -s 7 -d 8 -p ack -e 40 -c 0 -i 8490 -a 0 -x {10.0 9.0 4240 ------- null} r -t 4.79462 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8489 -a 0 -x {9.0 10.0 4249 ------- null} + -t 4.79462 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8489 -a 0 -x {9.0 10.0 4249 ------- null} h -t 4.79462 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8489 -a 0 -x {9.0 10.0 4249 ------- null} r -t 4.79466 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8475 -a 0 -x {9.0 10.0 4242 ------- null} + -t 4.79466 -s 10 -d 7 -p ack -e 40 -c 0 -i 8494 -a 0 -x {10.0 9.0 4242 ------- null} - -t 4.79466 -s 10 -d 7 -p ack -e 40 -c 0 -i 8494 -a 0 -x {10.0 9.0 4242 ------- null} h -t 4.79466 -s 10 -d 7 -p ack -e 40 -c 0 -i 8494 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.79512 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8481 -a 0 -x {9.0 10.0 4245 ------- null} - -t 4.79512 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8481 -a 0 -x {9.0 10.0 4245 ------- null} h -t 4.79512 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8481 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.7952 -s 0 -d 9 -p ack -e 40 -c 0 -i 8484 -a 0 -x {10.0 9.0 4237 ------- null} + -t 4.7952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8495 -a 0 -x {9.0 10.0 4252 ------- null} - -t 4.7952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8495 -a 0 -x {9.0 10.0 4252 ------- null} h -t 4.7952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8495 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.79538 -s 0 -d 9 -p ack -e 40 -c 0 -i 8488 -a 0 -x {10.0 9.0 4239 ------- null} - -t 4.79538 -s 0 -d 9 -p ack -e 40 -c 0 -i 8488 -a 0 -x {10.0 9.0 4239 ------- null} h -t 4.79538 -s 0 -d 9 -p ack -e 40 -c 0 -i 8488 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.7956 -s 10 -d 7 -p ack -e 40 -c 0 -i 8492 -a 0 -x {10.0 9.0 4241 ------- null} + -t 4.7956 -s 7 -d 0 -p ack -e 40 -c 0 -i 8492 -a 0 -x {10.0 9.0 4241 ------- null} h -t 4.7956 -s 7 -d 8 -p ack -e 40 -c 0 -i 8492 -a 0 -x {10.0 9.0 4241 ------- null} r -t 4.79566 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8491 -a 0 -x {9.0 10.0 4250 ------- null} + -t 4.79566 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8491 -a 0 -x {9.0 10.0 4250 ------- null} h -t 4.79566 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8491 -a 0 -x {9.0 10.0 4250 ------- null} r -t 4.79574 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8477 -a 0 -x {9.0 10.0 4243 ------- null} + -t 4.79574 -s 10 -d 7 -p ack -e 40 -c 0 -i 8496 -a 0 -x {10.0 9.0 4243 ------- null} - -t 4.79574 -s 10 -d 7 -p ack -e 40 -c 0 -i 8496 -a 0 -x {10.0 9.0 4243 ------- null} h -t 4.79574 -s 10 -d 7 -p ack -e 40 -c 0 -i 8496 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.79621 -s 0 -d 9 -p ack -e 40 -c 0 -i 8486 -a 0 -x {10.0 9.0 4238 ------- null} + -t 4.79621 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8497 -a 0 -x {9.0 10.0 4253 ------- null} - -t 4.79621 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8497 -a 0 -x {9.0 10.0 4253 ------- null} h -t 4.79621 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8497 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.79621 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8483 -a 0 -x {9.0 10.0 4246 ------- null} - -t 4.79621 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8483 -a 0 -x {9.0 10.0 4246 ------- null} h -t 4.79621 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8483 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.79648 -s 0 -d 9 -p ack -e 40 -c 0 -i 8490 -a 0 -x {10.0 9.0 4240 ------- null} - -t 4.79648 -s 0 -d 9 -p ack -e 40 -c 0 -i 8490 -a 0 -x {10.0 9.0 4240 ------- null} h -t 4.79648 -s 0 -d 9 -p ack -e 40 -c 0 -i 8490 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.79669 -s 10 -d 7 -p ack -e 40 -c 0 -i 8494 -a 0 -x {10.0 9.0 4242 ------- null} + -t 4.79669 -s 7 -d 0 -p ack -e 40 -c 0 -i 8494 -a 0 -x {10.0 9.0 4242 ------- null} h -t 4.79669 -s 7 -d 8 -p ack -e 40 -c 0 -i 8494 -a 0 -x {10.0 9.0 4242 ------- null} r -t 4.79683 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8479 -a 0 -x {9.0 10.0 4244 ------- null} + -t 4.79683 -s 10 -d 7 -p ack -e 40 -c 0 -i 8498 -a 0 -x {10.0 9.0 4244 ------- null} - -t 4.79683 -s 10 -d 7 -p ack -e 40 -c 0 -i 8498 -a 0 -x {10.0 9.0 4244 ------- null} h -t 4.79683 -s 10 -d 7 -p ack -e 40 -c 0 -i 8498 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.79691 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8493 -a 0 -x {9.0 10.0 4251 ------- null} + -t 4.79691 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8493 -a 0 -x {9.0 10.0 4251 ------- null} h -t 4.79691 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8493 -a 0 -x {9.0 10.0 4251 ------- null} r -t 4.79741 -s 0 -d 9 -p ack -e 40 -c 0 -i 8488 -a 0 -x {10.0 9.0 4239 ------- null} + -t 4.79741 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8499 -a 0 -x {9.0 10.0 4254 ------- null} - -t 4.79741 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8499 -a 0 -x {9.0 10.0 4254 ------- null} h -t 4.79741 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8499 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.79755 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8485 -a 0 -x {9.0 10.0 4247 ------- null} - -t 4.79755 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8485 -a 0 -x {9.0 10.0 4247 ------- null} h -t 4.79755 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8485 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.79766 -s 0 -d 9 -p ack -e 40 -c 0 -i 8492 -a 0 -x {10.0 9.0 4241 ------- null} - -t 4.79766 -s 0 -d 9 -p ack -e 40 -c 0 -i 8492 -a 0 -x {10.0 9.0 4241 ------- null} h -t 4.79766 -s 0 -d 9 -p ack -e 40 -c 0 -i 8492 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.79778 -s 10 -d 7 -p ack -e 40 -c 0 -i 8496 -a 0 -x {10.0 9.0 4243 ------- null} + -t 4.79778 -s 7 -d 0 -p ack -e 40 -c 0 -i 8496 -a 0 -x {10.0 9.0 4243 ------- null} h -t 4.79778 -s 7 -d 8 -p ack -e 40 -c 0 -i 8496 -a 0 -x {10.0 9.0 4243 ------- null} r -t 4.79792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8481 -a 0 -x {9.0 10.0 4245 ------- null} + -t 4.79792 -s 10 -d 7 -p ack -e 40 -c 0 -i 8500 -a 0 -x {10.0 9.0 4245 ------- null} - -t 4.79792 -s 10 -d 7 -p ack -e 40 -c 0 -i 8500 -a 0 -x {10.0 9.0 4245 ------- null} h -t 4.79792 -s 10 -d 7 -p ack -e 40 -c 0 -i 8500 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.798 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8495 -a 0 -x {9.0 10.0 4252 ------- null} + -t 4.798 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8495 -a 0 -x {9.0 10.0 4252 ------- null} h -t 4.798 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8495 -a 0 -x {9.0 10.0 4252 ------- null} r -t 4.79851 -s 0 -d 9 -p ack -e 40 -c 0 -i 8490 -a 0 -x {10.0 9.0 4240 ------- null} + -t 4.79851 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8501 -a 0 -x {9.0 10.0 4255 ------- null} - -t 4.79851 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8501 -a 0 -x {9.0 10.0 4255 ------- null} h -t 4.79851 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8501 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.79864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8487 -a 0 -x {9.0 10.0 4248 ------- null} - -t 4.79864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8487 -a 0 -x {9.0 10.0 4248 ------- null} h -t 4.79864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8487 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.79886 -s 10 -d 7 -p ack -e 40 -c 0 -i 8498 -a 0 -x {10.0 9.0 4244 ------- null} + -t 4.79886 -s 7 -d 0 -p ack -e 40 -c 0 -i 8498 -a 0 -x {10.0 9.0 4244 ------- null} h -t 4.79886 -s 7 -d 8 -p ack -e 40 -c 0 -i 8498 -a 0 -x {10.0 9.0 4244 ------- null} + -t 4.79893 -s 0 -d 9 -p ack -e 40 -c 0 -i 8494 -a 0 -x {10.0 9.0 4242 ------- null} - -t 4.79893 -s 0 -d 9 -p ack -e 40 -c 0 -i 8494 -a 0 -x {10.0 9.0 4242 ------- null} h -t 4.79893 -s 0 -d 9 -p ack -e 40 -c 0 -i 8494 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.79901 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8497 -a 0 -x {9.0 10.0 4253 ------- null} + -t 4.79901 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8497 -a 0 -x {9.0 10.0 4253 ------- null} h -t 4.79901 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8497 -a 0 -x {9.0 10.0 4253 ------- null} r -t 4.79901 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8483 -a 0 -x {9.0 10.0 4246 ------- null} + -t 4.79901 -s 10 -d 7 -p ack -e 40 -c 0 -i 8502 -a 0 -x {10.0 9.0 4246 ------- null} - -t 4.79901 -s 10 -d 7 -p ack -e 40 -c 0 -i 8502 -a 0 -x {10.0 9.0 4246 ------- null} h -t 4.79901 -s 10 -d 7 -p ack -e 40 -c 0 -i 8502 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.7997 -s 0 -d 9 -p ack -e 40 -c 0 -i 8492 -a 0 -x {10.0 9.0 4241 ------- null} + -t 4.7997 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8503 -a 0 -x {9.0 10.0 4256 ------- null} - -t 4.7997 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8503 -a 0 -x {9.0 10.0 4256 ------- null} h -t 4.7997 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8503 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.79984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8489 -a 0 -x {9.0 10.0 4249 ------- null} - -t 4.79984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8489 -a 0 -x {9.0 10.0 4249 ------- null} h -t 4.79984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8489 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.79994 -s 0 -d 9 -p ack -e 40 -c 0 -i 8496 -a 0 -x {10.0 9.0 4243 ------- null} - -t 4.79994 -s 0 -d 9 -p ack -e 40 -c 0 -i 8496 -a 0 -x {10.0 9.0 4243 ------- null} h -t 4.79994 -s 0 -d 9 -p ack -e 40 -c 0 -i 8496 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.79995 -s 10 -d 7 -p ack -e 40 -c 0 -i 8500 -a 0 -x {10.0 9.0 4245 ------- null} + -t 4.79995 -s 7 -d 0 -p ack -e 40 -c 0 -i 8500 -a 0 -x {10.0 9.0 4245 ------- null} h -t 4.79995 -s 7 -d 8 -p ack -e 40 -c 0 -i 8500 -a 0 -x {10.0 9.0 4245 ------- null} r -t 4.80021 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8499 -a 0 -x {9.0 10.0 4254 ------- null} + -t 4.80021 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8499 -a 0 -x {9.0 10.0 4254 ------- null} h -t 4.80021 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8499 -a 0 -x {9.0 10.0 4254 ------- null} r -t 4.80035 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8485 -a 0 -x {9.0 10.0 4247 ------- null} + -t 4.80035 -s 10 -d 7 -p ack -e 40 -c 0 -i 8504 -a 0 -x {10.0 9.0 4247 ------- null} - -t 4.80035 -s 10 -d 7 -p ack -e 40 -c 0 -i 8504 -a 0 -x {10.0 9.0 4247 ------- null} h -t 4.80035 -s 10 -d 7 -p ack -e 40 -c 0 -i 8504 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.80093 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8491 -a 0 -x {9.0 10.0 4250 ------- null} - -t 4.80093 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8491 -a 0 -x {9.0 10.0 4250 ------- null} h -t 4.80093 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8491 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.80096 -s 0 -d 9 -p ack -e 40 -c 0 -i 8494 -a 0 -x {10.0 9.0 4242 ------- null} + -t 4.80096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8505 -a 0 -x {9.0 10.0 4257 ------- null} - -t 4.80096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8505 -a 0 -x {9.0 10.0 4257 ------- null} h -t 4.80096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8505 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.80104 -s 10 -d 7 -p ack -e 40 -c 0 -i 8502 -a 0 -x {10.0 9.0 4246 ------- null} + -t 4.80104 -s 7 -d 0 -p ack -e 40 -c 0 -i 8502 -a 0 -x {10.0 9.0 4246 ------- null} h -t 4.80104 -s 7 -d 8 -p ack -e 40 -c 0 -i 8502 -a 0 -x {10.0 9.0 4246 ------- null} + -t 4.80106 -s 0 -d 9 -p ack -e 40 -c 0 -i 8498 -a 0 -x {10.0 9.0 4244 ------- null} - -t 4.80106 -s 0 -d 9 -p ack -e 40 -c 0 -i 8498 -a 0 -x {10.0 9.0 4244 ------- null} h -t 4.80106 -s 0 -d 9 -p ack -e 40 -c 0 -i 8498 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.80131 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8501 -a 0 -x {9.0 10.0 4255 ------- null} + -t 4.80131 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8501 -a 0 -x {9.0 10.0 4255 ------- null} h -t 4.80131 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8501 -a 0 -x {9.0 10.0 4255 ------- null} r -t 4.80144 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8487 -a 0 -x {9.0 10.0 4248 ------- null} + -t 4.80144 -s 10 -d 7 -p ack -e 40 -c 0 -i 8506 -a 0 -x {10.0 9.0 4248 ------- null} - -t 4.80144 -s 10 -d 7 -p ack -e 40 -c 0 -i 8506 -a 0 -x {10.0 9.0 4248 ------- null} h -t 4.80144 -s 10 -d 7 -p ack -e 40 -c 0 -i 8506 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.80197 -s 0 -d 9 -p ack -e 40 -c 0 -i 8496 -a 0 -x {10.0 9.0 4243 ------- null} + -t 4.80197 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8507 -a 0 -x {9.0 10.0 4258 ------- null} - -t 4.80197 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8507 -a 0 -x {9.0 10.0 4258 ------- null} h -t 4.80197 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8507 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.80202 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8493 -a 0 -x {9.0 10.0 4251 ------- null} - -t 4.80202 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8493 -a 0 -x {9.0 10.0 4251 ------- null} h -t 4.80202 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8493 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.80219 -s 0 -d 9 -p ack -e 40 -c 0 -i 8500 -a 0 -x {10.0 9.0 4245 ------- null} - -t 4.80219 -s 0 -d 9 -p ack -e 40 -c 0 -i 8500 -a 0 -x {10.0 9.0 4245 ------- null} h -t 4.80219 -s 0 -d 9 -p ack -e 40 -c 0 -i 8500 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.80238 -s 10 -d 7 -p ack -e 40 -c 0 -i 8504 -a 0 -x {10.0 9.0 4247 ------- null} + -t 4.80238 -s 7 -d 0 -p ack -e 40 -c 0 -i 8504 -a 0 -x {10.0 9.0 4247 ------- null} h -t 4.80238 -s 7 -d 8 -p ack -e 40 -c 0 -i 8504 -a 0 -x {10.0 9.0 4247 ------- null} r -t 4.8025 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8503 -a 0 -x {9.0 10.0 4256 ------- null} + -t 4.8025 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8503 -a 0 -x {9.0 10.0 4256 ------- null} h -t 4.8025 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8503 -a 0 -x {9.0 10.0 4256 ------- null} r -t 4.80264 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8489 -a 0 -x {9.0 10.0 4249 ------- null} + -t 4.80264 -s 10 -d 7 -p ack -e 40 -c 0 -i 8508 -a 0 -x {10.0 9.0 4249 ------- null} - -t 4.80264 -s 10 -d 7 -p ack -e 40 -c 0 -i 8508 -a 0 -x {10.0 9.0 4249 ------- null} h -t 4.80264 -s 10 -d 7 -p ack -e 40 -c 0 -i 8508 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.80309 -s 0 -d 9 -p ack -e 40 -c 0 -i 8498 -a 0 -x {10.0 9.0 4244 ------- null} + -t 4.80309 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8509 -a 0 -x {9.0 10.0 4259 ------- null} - -t 4.80309 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8509 -a 0 -x {9.0 10.0 4259 ------- null} h -t 4.80309 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8509 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.8031 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8495 -a 0 -x {9.0 10.0 4252 ------- null} - -t 4.8031 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8495 -a 0 -x {9.0 10.0 4252 ------- null} h -t 4.8031 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8495 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.80325 -s 0 -d 9 -p ack -e 40 -c 0 -i 8502 -a 0 -x {10.0 9.0 4246 ------- null} - -t 4.80325 -s 0 -d 9 -p ack -e 40 -c 0 -i 8502 -a 0 -x {10.0 9.0 4246 ------- null} h -t 4.80325 -s 0 -d 9 -p ack -e 40 -c 0 -i 8502 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.80347 -s 10 -d 7 -p ack -e 40 -c 0 -i 8506 -a 0 -x {10.0 9.0 4248 ------- null} + -t 4.80347 -s 7 -d 0 -p ack -e 40 -c 0 -i 8506 -a 0 -x {10.0 9.0 4248 ------- null} h -t 4.80347 -s 7 -d 8 -p ack -e 40 -c 0 -i 8506 -a 0 -x {10.0 9.0 4248 ------- null} r -t 4.80373 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8491 -a 0 -x {9.0 10.0 4250 ------- null} + -t 4.80373 -s 10 -d 7 -p ack -e 40 -c 0 -i 8510 -a 0 -x {10.0 9.0 4250 ------- null} - -t 4.80373 -s 10 -d 7 -p ack -e 40 -c 0 -i 8510 -a 0 -x {10.0 9.0 4250 ------- null} h -t 4.80373 -s 10 -d 7 -p ack -e 40 -c 0 -i 8510 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.80376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8505 -a 0 -x {9.0 10.0 4257 ------- null} + -t 4.80376 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8505 -a 0 -x {9.0 10.0 4257 ------- null} h -t 4.80376 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8505 -a 0 -x {9.0 10.0 4257 ------- null} + -t 4.80419 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8497 -a 0 -x {9.0 10.0 4253 ------- null} - -t 4.80419 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8497 -a 0 -x {9.0 10.0 4253 ------- null} h -t 4.80419 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8497 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.80422 -s 0 -d 9 -p ack -e 40 -c 0 -i 8500 -a 0 -x {10.0 9.0 4245 ------- null} + -t 4.80422 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8511 -a 0 -x {9.0 10.0 4260 ------- null} - -t 4.80422 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8511 -a 0 -x {9.0 10.0 4260 ------- null} h -t 4.80422 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8511 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.80437 -s 0 -d 9 -p ack -e 40 -c 0 -i 8504 -a 0 -x {10.0 9.0 4247 ------- null} - -t 4.80437 -s 0 -d 9 -p ack -e 40 -c 0 -i 8504 -a 0 -x {10.0 9.0 4247 ------- null} h -t 4.80437 -s 0 -d 9 -p ack -e 40 -c 0 -i 8504 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.80467 -s 10 -d 7 -p ack -e 40 -c 0 -i 8508 -a 0 -x {10.0 9.0 4249 ------- null} + -t 4.80467 -s 7 -d 0 -p ack -e 40 -c 0 -i 8508 -a 0 -x {10.0 9.0 4249 ------- null} h -t 4.80467 -s 7 -d 8 -p ack -e 40 -c 0 -i 8508 -a 0 -x {10.0 9.0 4249 ------- null} r -t 4.80477 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8507 -a 0 -x {9.0 10.0 4258 ------- null} + -t 4.80477 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8507 -a 0 -x {9.0 10.0 4258 ------- null} h -t 4.80477 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8507 -a 0 -x {9.0 10.0 4258 ------- null} r -t 4.80482 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8493 -a 0 -x {9.0 10.0 4251 ------- null} + -t 4.80482 -s 10 -d 7 -p ack -e 40 -c 0 -i 8512 -a 0 -x {10.0 9.0 4251 ------- null} - -t 4.80482 -s 10 -d 7 -p ack -e 40 -c 0 -i 8512 -a 0 -x {10.0 9.0 4251 ------- null} h -t 4.80482 -s 10 -d 7 -p ack -e 40 -c 0 -i 8512 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.80528 -s 0 -d 9 -p ack -e 40 -c 0 -i 8502 -a 0 -x {10.0 9.0 4246 ------- null} + -t 4.80528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8513 -a 0 -x {9.0 10.0 4261 ------- null} - -t 4.80528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8513 -a 0 -x {9.0 10.0 4261 ------- null} h -t 4.80528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8513 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.80528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8499 -a 0 -x {9.0 10.0 4254 ------- null} - -t 4.80528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8499 -a 0 -x {9.0 10.0 4254 ------- null} h -t 4.80528 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8499 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.80557 -s 0 -d 9 -p ack -e 40 -c 0 -i 8506 -a 0 -x {10.0 9.0 4248 ------- null} - -t 4.80557 -s 0 -d 9 -p ack -e 40 -c 0 -i 8506 -a 0 -x {10.0 9.0 4248 ------- null} h -t 4.80557 -s 0 -d 9 -p ack -e 40 -c 0 -i 8506 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.80576 -s 10 -d 7 -p ack -e 40 -c 0 -i 8510 -a 0 -x {10.0 9.0 4250 ------- null} + -t 4.80576 -s 7 -d 0 -p ack -e 40 -c 0 -i 8510 -a 0 -x {10.0 9.0 4250 ------- null} h -t 4.80576 -s 7 -d 8 -p ack -e 40 -c 0 -i 8510 -a 0 -x {10.0 9.0 4250 ------- null} r -t 4.80589 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8509 -a 0 -x {9.0 10.0 4259 ------- null} + -t 4.80589 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8509 -a 0 -x {9.0 10.0 4259 ------- null} h -t 4.80589 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8509 -a 0 -x {9.0 10.0 4259 ------- null} r -t 4.8059 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8495 -a 0 -x {9.0 10.0 4252 ------- null} + -t 4.8059 -s 10 -d 7 -p ack -e 40 -c 0 -i 8514 -a 0 -x {10.0 9.0 4252 ------- null} - -t 4.8059 -s 10 -d 7 -p ack -e 40 -c 0 -i 8514 -a 0 -x {10.0 9.0 4252 ------- null} h -t 4.8059 -s 10 -d 7 -p ack -e 40 -c 0 -i 8514 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.8064 -s 0 -d 9 -p ack -e 40 -c 0 -i 8504 -a 0 -x {10.0 9.0 4247 ------- null} + -t 4.8064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8515 -a 0 -x {9.0 10.0 4262 ------- null} - -t 4.8064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8515 -a 0 -x {9.0 10.0 4262 ------- null} h -t 4.8064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8515 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.8065 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8501 -a 0 -x {9.0 10.0 4255 ------- null} - -t 4.8065 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8501 -a 0 -x {9.0 10.0 4255 ------- null} h -t 4.8065 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8501 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.80667 -s 0 -d 9 -p ack -e 40 -c 0 -i 8508 -a 0 -x {10.0 9.0 4249 ------- null} - -t 4.80667 -s 0 -d 9 -p ack -e 40 -c 0 -i 8508 -a 0 -x {10.0 9.0 4249 ------- null} h -t 4.80667 -s 0 -d 9 -p ack -e 40 -c 0 -i 8508 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.80685 -s 10 -d 7 -p ack -e 40 -c 0 -i 8512 -a 0 -x {10.0 9.0 4251 ------- null} + -t 4.80685 -s 7 -d 0 -p ack -e 40 -c 0 -i 8512 -a 0 -x {10.0 9.0 4251 ------- null} h -t 4.80685 -s 7 -d 8 -p ack -e 40 -c 0 -i 8512 -a 0 -x {10.0 9.0 4251 ------- null} r -t 4.80699 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8497 -a 0 -x {9.0 10.0 4253 ------- null} + -t 4.80699 -s 10 -d 7 -p ack -e 40 -c 0 -i 8516 -a 0 -x {10.0 9.0 4253 ------- null} - -t 4.80699 -s 10 -d 7 -p ack -e 40 -c 0 -i 8516 -a 0 -x {10.0 9.0 4253 ------- null} h -t 4.80699 -s 10 -d 7 -p ack -e 40 -c 0 -i 8516 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.80702 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8511 -a 0 -x {9.0 10.0 4260 ------- null} + -t 4.80702 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8511 -a 0 -x {9.0 10.0 4260 ------- null} h -t 4.80702 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8511 -a 0 -x {9.0 10.0 4260 ------- null} + -t 4.80758 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8503 -a 0 -x {9.0 10.0 4256 ------- null} - -t 4.80758 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8503 -a 0 -x {9.0 10.0 4256 ------- null} h -t 4.80758 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8503 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.8076 -s 0 -d 9 -p ack -e 40 -c 0 -i 8506 -a 0 -x {10.0 9.0 4248 ------- null} + -t 4.8076 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8517 -a 0 -x {9.0 10.0 4263 ------- null} - -t 4.8076 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8517 -a 0 -x {9.0 10.0 4263 ------- null} h -t 4.8076 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8517 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.80765 -s 0 -d 9 -p ack -e 40 -c 0 -i 8510 -a 0 -x {10.0 9.0 4250 ------- null} - -t 4.80765 -s 0 -d 9 -p ack -e 40 -c 0 -i 8510 -a 0 -x {10.0 9.0 4250 ------- null} h -t 4.80765 -s 0 -d 9 -p ack -e 40 -c 0 -i 8510 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.80794 -s 10 -d 7 -p ack -e 40 -c 0 -i 8514 -a 0 -x {10.0 9.0 4252 ------- null} + -t 4.80794 -s 7 -d 0 -p ack -e 40 -c 0 -i 8514 -a 0 -x {10.0 9.0 4252 ------- null} h -t 4.80794 -s 7 -d 8 -p ack -e 40 -c 0 -i 8514 -a 0 -x {10.0 9.0 4252 ------- null} r -t 4.80808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8513 -a 0 -x {9.0 10.0 4261 ------- null} + -t 4.80808 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8513 -a 0 -x {9.0 10.0 4261 ------- null} h -t 4.80808 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8513 -a 0 -x {9.0 10.0 4261 ------- null} r -t 4.80808 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8499 -a 0 -x {9.0 10.0 4254 ------- null} + -t 4.80808 -s 10 -d 7 -p ack -e 40 -c 0 -i 8518 -a 0 -x {10.0 9.0 4254 ------- null} - -t 4.80808 -s 10 -d 7 -p ack -e 40 -c 0 -i 8518 -a 0 -x {10.0 9.0 4254 ------- null} h -t 4.80808 -s 10 -d 7 -p ack -e 40 -c 0 -i 8518 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.80867 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8505 -a 0 -x {9.0 10.0 4257 ------- null} - -t 4.80867 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8505 -a 0 -x {9.0 10.0 4257 ------- null} h -t 4.80867 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8505 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.8087 -s 0 -d 9 -p ack -e 40 -c 0 -i 8508 -a 0 -x {10.0 9.0 4249 ------- null} + -t 4.8087 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8519 -a 0 -x {9.0 10.0 4264 ------- null} - -t 4.8087 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8519 -a 0 -x {9.0 10.0 4264 ------- null} h -t 4.8087 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8519 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.80896 -s 0 -d 9 -p ack -e 40 -c 0 -i 8512 -a 0 -x {10.0 9.0 4251 ------- null} - -t 4.80896 -s 0 -d 9 -p ack -e 40 -c 0 -i 8512 -a 0 -x {10.0 9.0 4251 ------- null} h -t 4.80896 -s 0 -d 9 -p ack -e 40 -c 0 -i 8512 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.80902 -s 10 -d 7 -p ack -e 40 -c 0 -i 8516 -a 0 -x {10.0 9.0 4253 ------- null} + -t 4.80902 -s 7 -d 0 -p ack -e 40 -c 0 -i 8516 -a 0 -x {10.0 9.0 4253 ------- null} h -t 4.80902 -s 7 -d 8 -p ack -e 40 -c 0 -i 8516 -a 0 -x {10.0 9.0 4253 ------- null} r -t 4.8092 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8515 -a 0 -x {9.0 10.0 4262 ------- null} + -t 4.8092 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8515 -a 0 -x {9.0 10.0 4262 ------- null} h -t 4.8092 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8515 -a 0 -x {9.0 10.0 4262 ------- null} r -t 4.8093 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8501 -a 0 -x {9.0 10.0 4255 ------- null} + -t 4.8093 -s 10 -d 7 -p ack -e 40 -c 0 -i 8520 -a 0 -x {10.0 9.0 4255 ------- null} - -t 4.8093 -s 10 -d 7 -p ack -e 40 -c 0 -i 8520 -a 0 -x {10.0 9.0 4255 ------- null} h -t 4.8093 -s 10 -d 7 -p ack -e 40 -c 0 -i 8520 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.80968 -s 0 -d 9 -p ack -e 40 -c 0 -i 8510 -a 0 -x {10.0 9.0 4250 ------- null} + -t 4.80968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8521 -a 0 -x {9.0 10.0 4265 ------- null} - -t 4.80968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8521 -a 0 -x {9.0 10.0 4265 ------- null} h -t 4.80968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8521 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.80997 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8507 -a 0 -x {9.0 10.0 4258 ------- null} - -t 4.80997 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8507 -a 0 -x {9.0 10.0 4258 ------- null} h -t 4.80997 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8507 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.81011 -s 10 -d 7 -p ack -e 40 -c 0 -i 8518 -a 0 -x {10.0 9.0 4254 ------- null} + -t 4.81011 -s 7 -d 0 -p ack -e 40 -c 0 -i 8518 -a 0 -x {10.0 9.0 4254 ------- null} h -t 4.81011 -s 7 -d 8 -p ack -e 40 -c 0 -i 8518 -a 0 -x {10.0 9.0 4254 ------- null} + -t 4.81021 -s 0 -d 9 -p ack -e 40 -c 0 -i 8514 -a 0 -x {10.0 9.0 4252 ------- null} - -t 4.81021 -s 0 -d 9 -p ack -e 40 -c 0 -i 8514 -a 0 -x {10.0 9.0 4252 ------- null} h -t 4.81021 -s 0 -d 9 -p ack -e 40 -c 0 -i 8514 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.81038 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8503 -a 0 -x {9.0 10.0 4256 ------- null} + -t 4.81038 -s 10 -d 7 -p ack -e 40 -c 0 -i 8522 -a 0 -x {10.0 9.0 4256 ------- null} - -t 4.81038 -s 10 -d 7 -p ack -e 40 -c 0 -i 8522 -a 0 -x {10.0 9.0 4256 ------- null} h -t 4.81038 -s 10 -d 7 -p ack -e 40 -c 0 -i 8522 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.8104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8517 -a 0 -x {9.0 10.0 4263 ------- null} + -t 4.8104 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8517 -a 0 -x {9.0 10.0 4263 ------- null} h -t 4.8104 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8517 -a 0 -x {9.0 10.0 4263 ------- null} r -t 4.81099 -s 0 -d 9 -p ack -e 40 -c 0 -i 8512 -a 0 -x {10.0 9.0 4251 ------- null} + -t 4.81099 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8523 -a 0 -x {9.0 10.0 4266 ------- null} - -t 4.81099 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8523 -a 0 -x {9.0 10.0 4266 ------- null} h -t 4.81099 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8523 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.81106 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8509 -a 0 -x {9.0 10.0 4259 ------- null} - -t 4.81106 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8509 -a 0 -x {9.0 10.0 4259 ------- null} h -t 4.81106 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8509 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.81114 -s 0 -d 9 -p ack -e 40 -c 0 -i 8516 -a 0 -x {10.0 9.0 4253 ------- null} - -t 4.81114 -s 0 -d 9 -p ack -e 40 -c 0 -i 8516 -a 0 -x {10.0 9.0 4253 ------- null} h -t 4.81114 -s 0 -d 9 -p ack -e 40 -c 0 -i 8516 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.81133 -s 10 -d 7 -p ack -e 40 -c 0 -i 8520 -a 0 -x {10.0 9.0 4255 ------- null} + -t 4.81133 -s 7 -d 0 -p ack -e 40 -c 0 -i 8520 -a 0 -x {10.0 9.0 4255 ------- null} h -t 4.81133 -s 7 -d 8 -p ack -e 40 -c 0 -i 8520 -a 0 -x {10.0 9.0 4255 ------- null} r -t 4.81147 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8505 -a 0 -x {9.0 10.0 4257 ------- null} + -t 4.81147 -s 10 -d 7 -p ack -e 40 -c 0 -i 8524 -a 0 -x {10.0 9.0 4257 ------- null} - -t 4.81147 -s 10 -d 7 -p ack -e 40 -c 0 -i 8524 -a 0 -x {10.0 9.0 4257 ------- null} h -t 4.81147 -s 10 -d 7 -p ack -e 40 -c 0 -i 8524 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.8115 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8519 -a 0 -x {9.0 10.0 4264 ------- null} + -t 4.8115 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8519 -a 0 -x {9.0 10.0 4264 ------- null} h -t 4.8115 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8519 -a 0 -x {9.0 10.0 4264 ------- null} + -t 4.81214 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8511 -a 0 -x {9.0 10.0 4260 ------- null} - -t 4.81214 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8511 -a 0 -x {9.0 10.0 4260 ------- null} h -t 4.81214 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8511 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.81221 -s 0 -d 9 -p ack -e 40 -c 0 -i 8518 -a 0 -x {10.0 9.0 4254 ------- null} - -t 4.81221 -s 0 -d 9 -p ack -e 40 -c 0 -i 8518 -a 0 -x {10.0 9.0 4254 ------- null} h -t 4.81221 -s 0 -d 9 -p ack -e 40 -c 0 -i 8518 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.81224 -s 0 -d 9 -p ack -e 40 -c 0 -i 8514 -a 0 -x {10.0 9.0 4252 ------- null} + -t 4.81224 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8525 -a 0 -x {9.0 10.0 4267 ------- null} - -t 4.81224 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8525 -a 0 -x {9.0 10.0 4267 ------- null} h -t 4.81224 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8525 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.81242 -s 10 -d 7 -p ack -e 40 -c 0 -i 8522 -a 0 -x {10.0 9.0 4256 ------- null} + -t 4.81242 -s 7 -d 0 -p ack -e 40 -c 0 -i 8522 -a 0 -x {10.0 9.0 4256 ------- null} h -t 4.81242 -s 7 -d 8 -p ack -e 40 -c 0 -i 8522 -a 0 -x {10.0 9.0 4256 ------- null} r -t 4.81248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8521 -a 0 -x {9.0 10.0 4265 ------- null} + -t 4.81248 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8521 -a 0 -x {9.0 10.0 4265 ------- null} h -t 4.81248 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8521 -a 0 -x {9.0 10.0 4265 ------- null} r -t 4.81277 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8507 -a 0 -x {9.0 10.0 4258 ------- null} + -t 4.81277 -s 10 -d 7 -p ack -e 40 -c 0 -i 8526 -a 0 -x {10.0 9.0 4258 ------- null} - -t 4.81277 -s 10 -d 7 -p ack -e 40 -c 0 -i 8526 -a 0 -x {10.0 9.0 4258 ------- null} h -t 4.81277 -s 10 -d 7 -p ack -e 40 -c 0 -i 8526 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.81317 -s 0 -d 9 -p ack -e 40 -c 0 -i 8516 -a 0 -x {10.0 9.0 4253 ------- null} + -t 4.81317 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8527 -a 0 -x {9.0 10.0 4268 ------- null} - -t 4.81317 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8527 -a 0 -x {9.0 10.0 4268 ------- null} h -t 4.81317 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8527 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.81323 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8513 -a 0 -x {9.0 10.0 4261 ------- null} - -t 4.81323 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8513 -a 0 -x {9.0 10.0 4261 ------- null} h -t 4.81323 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8513 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.81344 -s 0 -d 9 -p ack -e 40 -c 0 -i 8520 -a 0 -x {10.0 9.0 4255 ------- null} - -t 4.81344 -s 0 -d 9 -p ack -e 40 -c 0 -i 8520 -a 0 -x {10.0 9.0 4255 ------- null} h -t 4.81344 -s 0 -d 9 -p ack -e 40 -c 0 -i 8520 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.8135 -s 10 -d 7 -p ack -e 40 -c 0 -i 8524 -a 0 -x {10.0 9.0 4257 ------- null} + -t 4.8135 -s 7 -d 0 -p ack -e 40 -c 0 -i 8524 -a 0 -x {10.0 9.0 4257 ------- null} h -t 4.8135 -s 7 -d 8 -p ack -e 40 -c 0 -i 8524 -a 0 -x {10.0 9.0 4257 ------- null} r -t 4.81379 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8523 -a 0 -x {9.0 10.0 4266 ------- null} + -t 4.81379 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8523 -a 0 -x {9.0 10.0 4266 ------- null} h -t 4.81379 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8523 -a 0 -x {9.0 10.0 4266 ------- null} r -t 4.81386 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8509 -a 0 -x {9.0 10.0 4259 ------- null} + -t 4.81386 -s 10 -d 7 -p ack -e 40 -c 0 -i 8528 -a 0 -x {10.0 9.0 4259 ------- null} - -t 4.81386 -s 10 -d 7 -p ack -e 40 -c 0 -i 8528 -a 0 -x {10.0 9.0 4259 ------- null} h -t 4.81386 -s 10 -d 7 -p ack -e 40 -c 0 -i 8528 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.81424 -s 0 -d 9 -p ack -e 40 -c 0 -i 8518 -a 0 -x {10.0 9.0 4254 ------- null} + -t 4.81424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8529 -a 0 -x {9.0 10.0 4269 ------- null} - -t 4.81424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8529 -a 0 -x {9.0 10.0 4269 ------- null} h -t 4.81424 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8529 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.81432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8515 -a 0 -x {9.0 10.0 4262 ------- null} - -t 4.81432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8515 -a 0 -x {9.0 10.0 4262 ------- null} h -t 4.81432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8515 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.81438 -s 0 -d 9 -p ack -e 40 -c 0 -i 8522 -a 0 -x {10.0 9.0 4256 ------- null} - -t 4.81438 -s 0 -d 9 -p ack -e 40 -c 0 -i 8522 -a 0 -x {10.0 9.0 4256 ------- null} h -t 4.81438 -s 0 -d 9 -p ack -e 40 -c 0 -i 8522 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.8148 -s 10 -d 7 -p ack -e 40 -c 0 -i 8526 -a 0 -x {10.0 9.0 4258 ------- null} + -t 4.8148 -s 7 -d 0 -p ack -e 40 -c 0 -i 8526 -a 0 -x {10.0 9.0 4258 ------- null} h -t 4.8148 -s 7 -d 8 -p ack -e 40 -c 0 -i 8526 -a 0 -x {10.0 9.0 4258 ------- null} r -t 4.81494 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8511 -a 0 -x {9.0 10.0 4260 ------- null} + -t 4.81494 -s 10 -d 7 -p ack -e 40 -c 0 -i 8530 -a 0 -x {10.0 9.0 4260 ------- null} - -t 4.81494 -s 10 -d 7 -p ack -e 40 -c 0 -i 8530 -a 0 -x {10.0 9.0 4260 ------- null} h -t 4.81494 -s 10 -d 7 -p ack -e 40 -c 0 -i 8530 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.81504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8525 -a 0 -x {9.0 10.0 4267 ------- null} + -t 4.81504 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8525 -a 0 -x {9.0 10.0 4267 ------- null} h -t 4.81504 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8525 -a 0 -x {9.0 10.0 4267 ------- null} + -t 4.81541 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8517 -a 0 -x {9.0 10.0 4263 ------- null} - -t 4.81541 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8517 -a 0 -x {9.0 10.0 4263 ------- null} h -t 4.81541 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8517 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.81547 -s 0 -d 9 -p ack -e 40 -c 0 -i 8520 -a 0 -x {10.0 9.0 4255 ------- null} + -t 4.81547 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8531 -a 0 -x {9.0 10.0 4270 ------- null} - -t 4.81547 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8531 -a 0 -x {9.0 10.0 4270 ------- null} h -t 4.81547 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8531 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.81565 -s 0 -d 9 -p ack -e 40 -c 0 -i 8524 -a 0 -x {10.0 9.0 4257 ------- null} - -t 4.81565 -s 0 -d 9 -p ack -e 40 -c 0 -i 8524 -a 0 -x {10.0 9.0 4257 ------- null} h -t 4.81565 -s 0 -d 9 -p ack -e 40 -c 0 -i 8524 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.81589 -s 10 -d 7 -p ack -e 40 -c 0 -i 8528 -a 0 -x {10.0 9.0 4259 ------- null} + -t 4.81589 -s 7 -d 0 -p ack -e 40 -c 0 -i 8528 -a 0 -x {10.0 9.0 4259 ------- null} h -t 4.81589 -s 7 -d 8 -p ack -e 40 -c 0 -i 8528 -a 0 -x {10.0 9.0 4259 ------- null} r -t 4.81597 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8527 -a 0 -x {9.0 10.0 4268 ------- null} + -t 4.81597 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8527 -a 0 -x {9.0 10.0 4268 ------- null} h -t 4.81597 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8527 -a 0 -x {9.0 10.0 4268 ------- null} r -t 4.81603 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8513 -a 0 -x {9.0 10.0 4261 ------- null} + -t 4.81603 -s 10 -d 7 -p ack -e 40 -c 0 -i 8532 -a 0 -x {10.0 9.0 4261 ------- null} - -t 4.81603 -s 10 -d 7 -p ack -e 40 -c 0 -i 8532 -a 0 -x {10.0 9.0 4261 ------- null} h -t 4.81603 -s 10 -d 7 -p ack -e 40 -c 0 -i 8532 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.81642 -s 0 -d 9 -p ack -e 40 -c 0 -i 8522 -a 0 -x {10.0 9.0 4256 ------- null} + -t 4.81642 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8533 -a 0 -x {9.0 10.0 4271 ------- null} - -t 4.81642 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8533 -a 0 -x {9.0 10.0 4271 ------- null} h -t 4.81642 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8533 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.8165 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8519 -a 0 -x {9.0 10.0 4264 ------- null} - -t 4.8165 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8519 -a 0 -x {9.0 10.0 4264 ------- null} h -t 4.8165 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8519 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.8167 -s 0 -d 9 -p ack -e 40 -c 0 -i 8526 -a 0 -x {10.0 9.0 4258 ------- null} - -t 4.8167 -s 0 -d 9 -p ack -e 40 -c 0 -i 8526 -a 0 -x {10.0 9.0 4258 ------- null} h -t 4.8167 -s 0 -d 9 -p ack -e 40 -c 0 -i 8526 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.81698 -s 10 -d 7 -p ack -e 40 -c 0 -i 8530 -a 0 -x {10.0 9.0 4260 ------- null} + -t 4.81698 -s 7 -d 0 -p ack -e 40 -c 0 -i 8530 -a 0 -x {10.0 9.0 4260 ------- null} h -t 4.81698 -s 7 -d 8 -p ack -e 40 -c 0 -i 8530 -a 0 -x {10.0 9.0 4260 ------- null} r -t 4.81704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8529 -a 0 -x {9.0 10.0 4269 ------- null} + -t 4.81704 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8529 -a 0 -x {9.0 10.0 4269 ------- null} h -t 4.81704 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8529 -a 0 -x {9.0 10.0 4269 ------- null} r -t 4.81712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8515 -a 0 -x {9.0 10.0 4262 ------- null} + -t 4.81712 -s 10 -d 7 -p ack -e 40 -c 0 -i 8534 -a 0 -x {10.0 9.0 4262 ------- null} - -t 4.81712 -s 10 -d 7 -p ack -e 40 -c 0 -i 8534 -a 0 -x {10.0 9.0 4262 ------- null} h -t 4.81712 -s 10 -d 7 -p ack -e 40 -c 0 -i 8534 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.81758 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8521 -a 0 -x {9.0 10.0 4265 ------- null} - -t 4.81758 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8521 -a 0 -x {9.0 10.0 4265 ------- null} h -t 4.81758 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8521 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.81768 -s 0 -d 9 -p ack -e 40 -c 0 -i 8524 -a 0 -x {10.0 9.0 4257 ------- null} + -t 4.81768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8535 -a 0 -x {9.0 10.0 4272 ------- null} - -t 4.81768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8535 -a 0 -x {9.0 10.0 4272 ------- null} h -t 4.81768 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8535 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.81778 -s 0 -d 9 -p ack -e 40 -c 0 -i 8528 -a 0 -x {10.0 9.0 4259 ------- null} - -t 4.81778 -s 0 -d 9 -p ack -e 40 -c 0 -i 8528 -a 0 -x {10.0 9.0 4259 ------- null} h -t 4.81778 -s 0 -d 9 -p ack -e 40 -c 0 -i 8528 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.81806 -s 10 -d 7 -p ack -e 40 -c 0 -i 8532 -a 0 -x {10.0 9.0 4261 ------- null} + -t 4.81806 -s 7 -d 0 -p ack -e 40 -c 0 -i 8532 -a 0 -x {10.0 9.0 4261 ------- null} h -t 4.81806 -s 7 -d 8 -p ack -e 40 -c 0 -i 8532 -a 0 -x {10.0 9.0 4261 ------- null} r -t 4.81821 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8517 -a 0 -x {9.0 10.0 4263 ------- null} + -t 4.81821 -s 10 -d 7 -p ack -e 40 -c 0 -i 8536 -a 0 -x {10.0 9.0 4263 ------- null} - -t 4.81821 -s 10 -d 7 -p ack -e 40 -c 0 -i 8536 -a 0 -x {10.0 9.0 4263 ------- null} h -t 4.81821 -s 10 -d 7 -p ack -e 40 -c 0 -i 8536 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.81827 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8531 -a 0 -x {9.0 10.0 4270 ------- null} + -t 4.81827 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8531 -a 0 -x {9.0 10.0 4270 ------- null} h -t 4.81827 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8531 -a 0 -x {9.0 10.0 4270 ------- null} + -t 4.81867 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8523 -a 0 -x {9.0 10.0 4266 ------- null} - -t 4.81867 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8523 -a 0 -x {9.0 10.0 4266 ------- null} h -t 4.81867 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8523 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.81874 -s 0 -d 9 -p ack -e 40 -c 0 -i 8526 -a 0 -x {10.0 9.0 4258 ------- null} + -t 4.81874 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8537 -a 0 -x {9.0 10.0 4273 ------- null} - -t 4.81874 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8537 -a 0 -x {9.0 10.0 4273 ------- null} h -t 4.81874 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8537 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.81893 -s 0 -d 9 -p ack -e 40 -c 0 -i 8530 -a 0 -x {10.0 9.0 4260 ------- null} - -t 4.81893 -s 0 -d 9 -p ack -e 40 -c 0 -i 8530 -a 0 -x {10.0 9.0 4260 ------- null} h -t 4.81893 -s 0 -d 9 -p ack -e 40 -c 0 -i 8530 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.81915 -s 10 -d 7 -p ack -e 40 -c 0 -i 8534 -a 0 -x {10.0 9.0 4262 ------- null} + -t 4.81915 -s 7 -d 0 -p ack -e 40 -c 0 -i 8534 -a 0 -x {10.0 9.0 4262 ------- null} h -t 4.81915 -s 7 -d 8 -p ack -e 40 -c 0 -i 8534 -a 0 -x {10.0 9.0 4262 ------- null} r -t 4.81922 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8533 -a 0 -x {9.0 10.0 4271 ------- null} + -t 4.81922 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8533 -a 0 -x {9.0 10.0 4271 ------- null} h -t 4.81922 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8533 -a 0 -x {9.0 10.0 4271 ------- null} r -t 4.8193 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8519 -a 0 -x {9.0 10.0 4264 ------- null} + -t 4.8193 -s 10 -d 7 -p ack -e 40 -c 0 -i 8538 -a 0 -x {10.0 9.0 4264 ------- null} - -t 4.8193 -s 10 -d 7 -p ack -e 40 -c 0 -i 8538 -a 0 -x {10.0 9.0 4264 ------- null} h -t 4.8193 -s 10 -d 7 -p ack -e 40 -c 0 -i 8538 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.81976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8525 -a 0 -x {9.0 10.0 4267 ------- null} - -t 4.81976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8525 -a 0 -x {9.0 10.0 4267 ------- null} h -t 4.81976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8525 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.81981 -s 0 -d 9 -p ack -e 40 -c 0 -i 8528 -a 0 -x {10.0 9.0 4259 ------- null} + -t 4.81981 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8539 -a 0 -x {9.0 10.0 4274 ------- null} - -t 4.81981 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8539 -a 0 -x {9.0 10.0 4274 ------- null} h -t 4.81981 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8539 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.82005 -s 0 -d 9 -p ack -e 40 -c 0 -i 8532 -a 0 -x {10.0 9.0 4261 ------- null} - -t 4.82005 -s 0 -d 9 -p ack -e 40 -c 0 -i 8532 -a 0 -x {10.0 9.0 4261 ------- null} h -t 4.82005 -s 0 -d 9 -p ack -e 40 -c 0 -i 8532 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.82024 -s 10 -d 7 -p ack -e 40 -c 0 -i 8536 -a 0 -x {10.0 9.0 4263 ------- null} + -t 4.82024 -s 7 -d 0 -p ack -e 40 -c 0 -i 8536 -a 0 -x {10.0 9.0 4263 ------- null} h -t 4.82024 -s 7 -d 8 -p ack -e 40 -c 0 -i 8536 -a 0 -x {10.0 9.0 4263 ------- null} r -t 4.82038 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8521 -a 0 -x {9.0 10.0 4265 ------- null} + -t 4.82038 -s 10 -d 7 -p ack -e 40 -c 0 -i 8540 -a 0 -x {10.0 9.0 4265 ------- null} - -t 4.82038 -s 10 -d 7 -p ack -e 40 -c 0 -i 8540 -a 0 -x {10.0 9.0 4265 ------- null} h -t 4.82038 -s 10 -d 7 -p ack -e 40 -c 0 -i 8540 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.82048 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8535 -a 0 -x {9.0 10.0 4272 ------- null} + -t 4.82048 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8535 -a 0 -x {9.0 10.0 4272 ------- null} h -t 4.82048 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8535 -a 0 -x {9.0 10.0 4272 ------- null} + -t 4.82094 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8527 -a 0 -x {9.0 10.0 4268 ------- null} - -t 4.82094 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8527 -a 0 -x {9.0 10.0 4268 ------- null} h -t 4.82094 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8527 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.82096 -s 0 -d 9 -p ack -e 40 -c 0 -i 8530 -a 0 -x {10.0 9.0 4260 ------- null} + -t 4.82096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8541 -a 0 -x {9.0 10.0 4275 ------- null} - -t 4.82096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8541 -a 0 -x {9.0 10.0 4275 ------- null} h -t 4.82096 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8541 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.82114 -s 0 -d 9 -p ack -e 40 -c 0 -i 8534 -a 0 -x {10.0 9.0 4262 ------- null} - -t 4.82114 -s 0 -d 9 -p ack -e 40 -c 0 -i 8534 -a 0 -x {10.0 9.0 4262 ------- null} h -t 4.82114 -s 0 -d 9 -p ack -e 40 -c 0 -i 8534 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.82133 -s 10 -d 7 -p ack -e 40 -c 0 -i 8538 -a 0 -x {10.0 9.0 4264 ------- null} + -t 4.82133 -s 7 -d 0 -p ack -e 40 -c 0 -i 8538 -a 0 -x {10.0 9.0 4264 ------- null} h -t 4.82133 -s 7 -d 8 -p ack -e 40 -c 0 -i 8538 -a 0 -x {10.0 9.0 4264 ------- null} r -t 4.82147 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8523 -a 0 -x {9.0 10.0 4266 ------- null} + -t 4.82147 -s 10 -d 7 -p ack -e 40 -c 0 -i 8542 -a 0 -x {10.0 9.0 4266 ------- null} - -t 4.82147 -s 10 -d 7 -p ack -e 40 -c 0 -i 8542 -a 0 -x {10.0 9.0 4266 ------- null} h -t 4.82147 -s 10 -d 7 -p ack -e 40 -c 0 -i 8542 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.82154 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8537 -a 0 -x {9.0 10.0 4273 ------- null} + -t 4.82154 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8537 -a 0 -x {9.0 10.0 4273 ------- null} h -t 4.82154 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8537 -a 0 -x {9.0 10.0 4273 ------- null} + -t 4.82203 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8529 -a 0 -x {9.0 10.0 4269 ------- null} - -t 4.82203 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8529 -a 0 -x {9.0 10.0 4269 ------- null} h -t 4.82203 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8529 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.82208 -s 0 -d 9 -p ack -e 40 -c 0 -i 8532 -a 0 -x {10.0 9.0 4261 ------- null} + -t 4.82208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8543 -a 0 -x {9.0 10.0 4276 ------- null} - -t 4.82208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8543 -a 0 -x {9.0 10.0 4276 ------- null} h -t 4.82208 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8543 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.82213 -s 0 -d 9 -p ack -e 40 -c 0 -i 8536 -a 0 -x {10.0 9.0 4263 ------- null} - -t 4.82213 -s 0 -d 9 -p ack -e 40 -c 0 -i 8536 -a 0 -x {10.0 9.0 4263 ------- null} h -t 4.82213 -s 0 -d 9 -p ack -e 40 -c 0 -i 8536 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.82242 -s 10 -d 7 -p ack -e 40 -c 0 -i 8540 -a 0 -x {10.0 9.0 4265 ------- null} + -t 4.82242 -s 7 -d 0 -p ack -e 40 -c 0 -i 8540 -a 0 -x {10.0 9.0 4265 ------- null} h -t 4.82242 -s 7 -d 8 -p ack -e 40 -c 0 -i 8540 -a 0 -x {10.0 9.0 4265 ------- null} r -t 4.82256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8525 -a 0 -x {9.0 10.0 4267 ------- null} + -t 4.82256 -s 10 -d 7 -p ack -e 40 -c 0 -i 8544 -a 0 -x {10.0 9.0 4267 ------- null} - -t 4.82256 -s 10 -d 7 -p ack -e 40 -c 0 -i 8544 -a 0 -x {10.0 9.0 4267 ------- null} h -t 4.82256 -s 10 -d 7 -p ack -e 40 -c 0 -i 8544 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.82261 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8539 -a 0 -x {9.0 10.0 4274 ------- null} + -t 4.82261 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8539 -a 0 -x {9.0 10.0 4274 ------- null} h -t 4.82261 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8539 -a 0 -x {9.0 10.0 4274 ------- null} + -t 4.82312 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8531 -a 0 -x {9.0 10.0 4270 ------- null} - -t 4.82312 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8531 -a 0 -x {9.0 10.0 4270 ------- null} h -t 4.82312 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8531 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.82317 -s 0 -d 9 -p ack -e 40 -c 0 -i 8534 -a 0 -x {10.0 9.0 4262 ------- null} + -t 4.82317 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8545 -a 0 -x {9.0 10.0 4277 ------- null} - -t 4.82317 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8545 -a 0 -x {9.0 10.0 4277 ------- null} h -t 4.82317 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8545 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.82338 -s 0 -d 9 -p ack -e 40 -c 0 -i 8538 -a 0 -x {10.0 9.0 4264 ------- null} - -t 4.82338 -s 0 -d 9 -p ack -e 40 -c 0 -i 8538 -a 0 -x {10.0 9.0 4264 ------- null} h -t 4.82338 -s 0 -d 9 -p ack -e 40 -c 0 -i 8538 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.8235 -s 10 -d 7 -p ack -e 40 -c 0 -i 8542 -a 0 -x {10.0 9.0 4266 ------- null} + -t 4.8235 -s 7 -d 0 -p ack -e 40 -c 0 -i 8542 -a 0 -x {10.0 9.0 4266 ------- null} h -t 4.8235 -s 7 -d 8 -p ack -e 40 -c 0 -i 8542 -a 0 -x {10.0 9.0 4266 ------- null} r -t 4.82374 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8527 -a 0 -x {9.0 10.0 4268 ------- null} + -t 4.82374 -s 10 -d 7 -p ack -e 40 -c 0 -i 8546 -a 0 -x {10.0 9.0 4268 ------- null} - -t 4.82374 -s 10 -d 7 -p ack -e 40 -c 0 -i 8546 -a 0 -x {10.0 9.0 4268 ------- null} h -t 4.82374 -s 10 -d 7 -p ack -e 40 -c 0 -i 8546 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.82376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8541 -a 0 -x {9.0 10.0 4275 ------- null} + -t 4.82376 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8541 -a 0 -x {9.0 10.0 4275 ------- null} h -t 4.82376 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8541 -a 0 -x {9.0 10.0 4275 ------- null} r -t 4.82416 -s 0 -d 9 -p ack -e 40 -c 0 -i 8536 -a 0 -x {10.0 9.0 4263 ------- null} + -t 4.82416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8547 -a 0 -x {9.0 10.0 4278 ------- null} - -t 4.82416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8547 -a 0 -x {9.0 10.0 4278 ------- null} h -t 4.82416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8547 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.82421 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8533 -a 0 -x {9.0 10.0 4271 ------- null} - -t 4.82421 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8533 -a 0 -x {9.0 10.0 4271 ------- null} h -t 4.82421 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8533 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.82435 -s 0 -d 9 -p ack -e 40 -c 0 -i 8540 -a 0 -x {10.0 9.0 4265 ------- null} - -t 4.82435 -s 0 -d 9 -p ack -e 40 -c 0 -i 8540 -a 0 -x {10.0 9.0 4265 ------- null} h -t 4.82435 -s 0 -d 9 -p ack -e 40 -c 0 -i 8540 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.82459 -s 10 -d 7 -p ack -e 40 -c 0 -i 8544 -a 0 -x {10.0 9.0 4267 ------- null} + -t 4.82459 -s 7 -d 0 -p ack -e 40 -c 0 -i 8544 -a 0 -x {10.0 9.0 4267 ------- null} h -t 4.82459 -s 7 -d 8 -p ack -e 40 -c 0 -i 8544 -a 0 -x {10.0 9.0 4267 ------- null} r -t 4.82483 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8529 -a 0 -x {9.0 10.0 4269 ------- null} + -t 4.82483 -s 10 -d 7 -p ack -e 40 -c 0 -i 8548 -a 0 -x {10.0 9.0 4269 ------- null} - -t 4.82483 -s 10 -d 7 -p ack -e 40 -c 0 -i 8548 -a 0 -x {10.0 9.0 4269 ------- null} h -t 4.82483 -s 10 -d 7 -p ack -e 40 -c 0 -i 8548 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.82488 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8543 -a 0 -x {9.0 10.0 4276 ------- null} + -t 4.82488 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8543 -a 0 -x {9.0 10.0 4276 ------- null} h -t 4.82488 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8543 -a 0 -x {9.0 10.0 4276 ------- null} + -t 4.8253 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8535 -a 0 -x {9.0 10.0 4272 ------- null} - -t 4.8253 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8535 -a 0 -x {9.0 10.0 4272 ------- null} h -t 4.8253 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8535 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.82541 -s 0 -d 9 -p ack -e 40 -c 0 -i 8538 -a 0 -x {10.0 9.0 4264 ------- null} + -t 4.82541 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8549 -a 0 -x {9.0 10.0 4279 ------- null} - -t 4.82541 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8549 -a 0 -x {9.0 10.0 4279 ------- null} h -t 4.82541 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8549 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.8256 -s 0 -d 9 -p ack -e 40 -c 0 -i 8542 -a 0 -x {10.0 9.0 4266 ------- null} - -t 4.8256 -s 0 -d 9 -p ack -e 40 -c 0 -i 8542 -a 0 -x {10.0 9.0 4266 ------- null} h -t 4.8256 -s 0 -d 9 -p ack -e 40 -c 0 -i 8542 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.82578 -s 10 -d 7 -p ack -e 40 -c 0 -i 8546 -a 0 -x {10.0 9.0 4268 ------- null} + -t 4.82578 -s 7 -d 0 -p ack -e 40 -c 0 -i 8546 -a 0 -x {10.0 9.0 4268 ------- null} h -t 4.82578 -s 7 -d 8 -p ack -e 40 -c 0 -i 8546 -a 0 -x {10.0 9.0 4268 ------- null} r -t 4.82592 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8531 -a 0 -x {9.0 10.0 4270 ------- null} + -t 4.82592 -s 10 -d 7 -p ack -e 40 -c 0 -i 8550 -a 0 -x {10.0 9.0 4270 ------- null} - -t 4.82592 -s 10 -d 7 -p ack -e 40 -c 0 -i 8550 -a 0 -x {10.0 9.0 4270 ------- null} h -t 4.82592 -s 10 -d 7 -p ack -e 40 -c 0 -i 8550 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.82597 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8545 -a 0 -x {9.0 10.0 4277 ------- null} + -t 4.82597 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8545 -a 0 -x {9.0 10.0 4277 ------- null} h -t 4.82597 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8545 -a 0 -x {9.0 10.0 4277 ------- null} r -t 4.82638 -s 0 -d 9 -p ack -e 40 -c 0 -i 8540 -a 0 -x {10.0 9.0 4265 ------- null} + -t 4.82638 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8551 -a 0 -x {9.0 10.0 4280 ------- null} - -t 4.82638 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8551 -a 0 -x {9.0 10.0 4280 ------- null} h -t 4.82638 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8551 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.82666 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8537 -a 0 -x {9.0 10.0 4273 ------- null} - -t 4.82666 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8537 -a 0 -x {9.0 10.0 4273 ------- null} h -t 4.82666 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8537 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.82686 -s 10 -d 7 -p ack -e 40 -c 0 -i 8548 -a 0 -x {10.0 9.0 4269 ------- null} + -t 4.82686 -s 7 -d 0 -p ack -e 40 -c 0 -i 8548 -a 0 -x {10.0 9.0 4269 ------- null} h -t 4.82686 -s 7 -d 8 -p ack -e 40 -c 0 -i 8548 -a 0 -x {10.0 9.0 4269 ------- null} + -t 4.82694 -s 0 -d 9 -p ack -e 40 -c 0 -i 8544 -a 0 -x {10.0 9.0 4267 ------- null} - -t 4.82694 -s 0 -d 9 -p ack -e 40 -c 0 -i 8544 -a 0 -x {10.0 9.0 4267 ------- null} h -t 4.82694 -s 0 -d 9 -p ack -e 40 -c 0 -i 8544 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.82696 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8547 -a 0 -x {9.0 10.0 4278 ------- null} + -t 4.82696 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8547 -a 0 -x {9.0 10.0 4278 ------- null} h -t 4.82696 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8547 -a 0 -x {9.0 10.0 4278 ------- null} r -t 4.82701 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8533 -a 0 -x {9.0 10.0 4271 ------- null} + -t 4.82701 -s 10 -d 7 -p ack -e 40 -c 0 -i 8552 -a 0 -x {10.0 9.0 4271 ------- null} - -t 4.82701 -s 10 -d 7 -p ack -e 40 -c 0 -i 8552 -a 0 -x {10.0 9.0 4271 ------- null} h -t 4.82701 -s 10 -d 7 -p ack -e 40 -c 0 -i 8552 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.82763 -s 0 -d 9 -p ack -e 40 -c 0 -i 8542 -a 0 -x {10.0 9.0 4266 ------- null} + -t 4.82763 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8553 -a 0 -x {9.0 10.0 4281 ------- null} - -t 4.82763 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8553 -a 0 -x {9.0 10.0 4281 ------- null} h -t 4.82763 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8553 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.82795 -s 10 -d 7 -p ack -e 40 -c 0 -i 8550 -a 0 -x {10.0 9.0 4270 ------- null} + -t 4.82795 -s 7 -d 0 -p ack -e 40 -c 0 -i 8550 -a 0 -x {10.0 9.0 4270 ------- null} h -t 4.82795 -s 7 -d 8 -p ack -e 40 -c 0 -i 8550 -a 0 -x {10.0 9.0 4270 ------- null} + -t 4.82802 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8539 -a 0 -x {9.0 10.0 4274 ------- null} - -t 4.82802 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8539 -a 0 -x {9.0 10.0 4274 ------- null} h -t 4.82802 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8539 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.82808 -s 0 -d 9 -p ack -e 40 -c 0 -i 8546 -a 0 -x {10.0 9.0 4268 ------- null} - -t 4.82808 -s 0 -d 9 -p ack -e 40 -c 0 -i 8546 -a 0 -x {10.0 9.0 4268 ------- null} h -t 4.82808 -s 0 -d 9 -p ack -e 40 -c 0 -i 8546 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.8281 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8535 -a 0 -x {9.0 10.0 4272 ------- null} + -t 4.8281 -s 10 -d 7 -p ack -e 40 -c 0 -i 8554 -a 0 -x {10.0 9.0 4272 ------- null} - -t 4.8281 -s 10 -d 7 -p ack -e 40 -c 0 -i 8554 -a 0 -x {10.0 9.0 4272 ------- null} h -t 4.8281 -s 10 -d 7 -p ack -e 40 -c 0 -i 8554 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.82821 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8549 -a 0 -x {9.0 10.0 4279 ------- null} + -t 4.82821 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8549 -a 0 -x {9.0 10.0 4279 ------- null} h -t 4.82821 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8549 -a 0 -x {9.0 10.0 4279 ------- null} r -t 4.82898 -s 0 -d 9 -p ack -e 40 -c 0 -i 8544 -a 0 -x {10.0 9.0 4267 ------- null} + -t 4.82898 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8555 -a 0 -x {9.0 10.0 4282 ------- null} - -t 4.82898 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8555 -a 0 -x {9.0 10.0 4282 ------- null} h -t 4.82898 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8555 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.82904 -s 10 -d 7 -p ack -e 40 -c 0 -i 8552 -a 0 -x {10.0 9.0 4271 ------- null} + -t 4.82904 -s 7 -d 0 -p ack -e 40 -c 0 -i 8552 -a 0 -x {10.0 9.0 4271 ------- null} h -t 4.82904 -s 7 -d 8 -p ack -e 40 -c 0 -i 8552 -a 0 -x {10.0 9.0 4271 ------- null} + -t 4.8291 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8541 -a 0 -x {9.0 10.0 4275 ------- null} - -t 4.8291 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8541 -a 0 -x {9.0 10.0 4275 ------- null} h -t 4.8291 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8541 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.82918 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8551 -a 0 -x {9.0 10.0 4280 ------- null} + -t 4.82918 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8551 -a 0 -x {9.0 10.0 4280 ------- null} h -t 4.82918 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8551 -a 0 -x {9.0 10.0 4280 ------- null} + -t 4.82933 -s 0 -d 9 -p ack -e 40 -c 0 -i 8548 -a 0 -x {10.0 9.0 4269 ------- null} - -t 4.82933 -s 0 -d 9 -p ack -e 40 -c 0 -i 8548 -a 0 -x {10.0 9.0 4269 ------- null} h -t 4.82933 -s 0 -d 9 -p ack -e 40 -c 0 -i 8548 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.82946 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8537 -a 0 -x {9.0 10.0 4273 ------- null} + -t 4.82946 -s 10 -d 7 -p ack -e 40 -c 0 -i 8556 -a 0 -x {10.0 9.0 4273 ------- null} - -t 4.82946 -s 10 -d 7 -p ack -e 40 -c 0 -i 8556 -a 0 -x {10.0 9.0 4273 ------- null} h -t 4.82946 -s 10 -d 7 -p ack -e 40 -c 0 -i 8556 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.83011 -s 0 -d 9 -p ack -e 40 -c 0 -i 8546 -a 0 -x {10.0 9.0 4268 ------- null} + -t 4.83011 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8557 -a 0 -x {9.0 10.0 4283 ------- null} - -t 4.83011 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8557 -a 0 -x {9.0 10.0 4283 ------- null} h -t 4.83011 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8557 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.83013 -s 10 -d 7 -p ack -e 40 -c 0 -i 8554 -a 0 -x {10.0 9.0 4272 ------- null} + -t 4.83013 -s 7 -d 0 -p ack -e 40 -c 0 -i 8554 -a 0 -x {10.0 9.0 4272 ------- null} h -t 4.83013 -s 7 -d 8 -p ack -e 40 -c 0 -i 8554 -a 0 -x {10.0 9.0 4272 ------- null} + -t 4.83019 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8543 -a 0 -x {9.0 10.0 4276 ------- null} - -t 4.83019 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8543 -a 0 -x {9.0 10.0 4276 ------- null} h -t 4.83019 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8543 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.83027 -s 0 -d 9 -p ack -e 40 -c 0 -i 8550 -a 0 -x {10.0 9.0 4270 ------- null} - -t 4.83027 -s 0 -d 9 -p ack -e 40 -c 0 -i 8550 -a 0 -x {10.0 9.0 4270 ------- null} h -t 4.83027 -s 0 -d 9 -p ack -e 40 -c 0 -i 8550 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.83043 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8553 -a 0 -x {9.0 10.0 4281 ------- null} + -t 4.83043 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8553 -a 0 -x {9.0 10.0 4281 ------- null} h -t 4.83043 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8553 -a 0 -x {9.0 10.0 4281 ------- null} r -t 4.83082 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8539 -a 0 -x {9.0 10.0 4274 ------- null} + -t 4.83082 -s 10 -d 7 -p ack -e 40 -c 0 -i 8558 -a 0 -x {10.0 9.0 4274 ------- null} - -t 4.83082 -s 10 -d 7 -p ack -e 40 -c 0 -i 8558 -a 0 -x {10.0 9.0 4274 ------- null} h -t 4.83082 -s 10 -d 7 -p ack -e 40 -c 0 -i 8558 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.83128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8545 -a 0 -x {9.0 10.0 4277 ------- null} - -t 4.83128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8545 -a 0 -x {9.0 10.0 4277 ------- null} h -t 4.83128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8545 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.83136 -s 0 -d 9 -p ack -e 40 -c 0 -i 8548 -a 0 -x {10.0 9.0 4269 ------- null} + -t 4.83136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8559 -a 0 -x {9.0 10.0 4284 ------- null} - -t 4.83136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8559 -a 0 -x {9.0 10.0 4284 ------- null} h -t 4.83136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8559 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.83149 -s 10 -d 7 -p ack -e 40 -c 0 -i 8556 -a 0 -x {10.0 9.0 4273 ------- null} + -t 4.83149 -s 7 -d 0 -p ack -e 40 -c 0 -i 8556 -a 0 -x {10.0 9.0 4273 ------- null} h -t 4.83149 -s 7 -d 8 -p ack -e 40 -c 0 -i 8556 -a 0 -x {10.0 9.0 4273 ------- null} + -t 4.83154 -s 0 -d 9 -p ack -e 40 -c 0 -i 8552 -a 0 -x {10.0 9.0 4271 ------- null} - -t 4.83154 -s 0 -d 9 -p ack -e 40 -c 0 -i 8552 -a 0 -x {10.0 9.0 4271 ------- null} h -t 4.83154 -s 0 -d 9 -p ack -e 40 -c 0 -i 8552 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.83178 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8555 -a 0 -x {9.0 10.0 4282 ------- null} + -t 4.83178 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8555 -a 0 -x {9.0 10.0 4282 ------- null} h -t 4.83178 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8555 -a 0 -x {9.0 10.0 4282 ------- null} r -t 4.8319 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8541 -a 0 -x {9.0 10.0 4275 ------- null} + -t 4.8319 -s 10 -d 7 -p ack -e 40 -c 0 -i 8560 -a 0 -x {10.0 9.0 4275 ------- null} - -t 4.8319 -s 10 -d 7 -p ack -e 40 -c 0 -i 8560 -a 0 -x {10.0 9.0 4275 ------- null} h -t 4.8319 -s 10 -d 7 -p ack -e 40 -c 0 -i 8560 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.8323 -s 0 -d 9 -p ack -e 40 -c 0 -i 8550 -a 0 -x {10.0 9.0 4270 ------- null} + -t 4.8323 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8561 -a 0 -x {9.0 10.0 4285 ------- null} - -t 4.8323 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8561 -a 0 -x {9.0 10.0 4285 ------- null} h -t 4.8323 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8561 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.83237 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8547 -a 0 -x {9.0 10.0 4278 ------- null} - -t 4.83237 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8547 -a 0 -x {9.0 10.0 4278 ------- null} h -t 4.83237 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8547 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.83266 -s 0 -d 9 -p ack -e 40 -c 0 -i 8554 -a 0 -x {10.0 9.0 4272 ------- null} - -t 4.83266 -s 0 -d 9 -p ack -e 40 -c 0 -i 8554 -a 0 -x {10.0 9.0 4272 ------- null} h -t 4.83266 -s 0 -d 9 -p ack -e 40 -c 0 -i 8554 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.83285 -s 10 -d 7 -p ack -e 40 -c 0 -i 8558 -a 0 -x {10.0 9.0 4274 ------- null} + -t 4.83285 -s 7 -d 0 -p ack -e 40 -c 0 -i 8558 -a 0 -x {10.0 9.0 4274 ------- null} h -t 4.83285 -s 7 -d 8 -p ack -e 40 -c 0 -i 8558 -a 0 -x {10.0 9.0 4274 ------- null} r -t 4.83291 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8557 -a 0 -x {9.0 10.0 4283 ------- null} + -t 4.83291 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8557 -a 0 -x {9.0 10.0 4283 ------- null} h -t 4.83291 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8557 -a 0 -x {9.0 10.0 4283 ------- null} r -t 4.83299 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8543 -a 0 -x {9.0 10.0 4276 ------- null} + -t 4.83299 -s 10 -d 7 -p ack -e 40 -c 0 -i 8562 -a 0 -x {10.0 9.0 4276 ------- null} - -t 4.83299 -s 10 -d 7 -p ack -e 40 -c 0 -i 8562 -a 0 -x {10.0 9.0 4276 ------- null} h -t 4.83299 -s 10 -d 7 -p ack -e 40 -c 0 -i 8562 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.83357 -s 0 -d 9 -p ack -e 40 -c 0 -i 8552 -a 0 -x {10.0 9.0 4271 ------- null} + -t 4.83357 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8563 -a 0 -x {9.0 10.0 4286 ------- null} - -t 4.83357 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8563 -a 0 -x {9.0 10.0 4286 ------- null} h -t 4.83357 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8563 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.83373 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8549 -a 0 -x {9.0 10.0 4279 ------- null} - -t 4.83373 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8549 -a 0 -x {9.0 10.0 4279 ------- null} h -t 4.83373 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8549 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.83394 -s 10 -d 7 -p ack -e 40 -c 0 -i 8560 -a 0 -x {10.0 9.0 4275 ------- null} + -t 4.83394 -s 7 -d 0 -p ack -e 40 -c 0 -i 8560 -a 0 -x {10.0 9.0 4275 ------- null} h -t 4.83394 -s 7 -d 8 -p ack -e 40 -c 0 -i 8560 -a 0 -x {10.0 9.0 4275 ------- null} + -t 4.83402 -s 0 -d 9 -p ack -e 40 -c 0 -i 8556 -a 0 -x {10.0 9.0 4273 ------- null} - -t 4.83402 -s 0 -d 9 -p ack -e 40 -c 0 -i 8556 -a 0 -x {10.0 9.0 4273 ------- null} h -t 4.83402 -s 0 -d 9 -p ack -e 40 -c 0 -i 8556 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.83408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8545 -a 0 -x {9.0 10.0 4277 ------- null} + -t 4.83408 -s 10 -d 7 -p ack -e 40 -c 0 -i 8564 -a 0 -x {10.0 9.0 4277 ------- null} - -t 4.83408 -s 10 -d 7 -p ack -e 40 -c 0 -i 8564 -a 0 -x {10.0 9.0 4277 ------- null} h -t 4.83408 -s 10 -d 7 -p ack -e 40 -c 0 -i 8564 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.83416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8559 -a 0 -x {9.0 10.0 4284 ------- null} + -t 4.83416 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8559 -a 0 -x {9.0 10.0 4284 ------- null} h -t 4.83416 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8559 -a 0 -x {9.0 10.0 4284 ------- null} r -t 4.83469 -s 0 -d 9 -p ack -e 40 -c 0 -i 8554 -a 0 -x {10.0 9.0 4272 ------- null} + -t 4.83469 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8565 -a 0 -x {9.0 10.0 4287 ------- null} - -t 4.83469 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8565 -a 0 -x {9.0 10.0 4287 ------- null} h -t 4.83469 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8565 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.83496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8551 -a 0 -x {9.0 10.0 4280 ------- null} - -t 4.83496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8551 -a 0 -x {9.0 10.0 4280 ------- null} h -t 4.83496 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8551 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.83502 -s 10 -d 7 -p ack -e 40 -c 0 -i 8562 -a 0 -x {10.0 9.0 4276 ------- null} + -t 4.83502 -s 7 -d 0 -p ack -e 40 -c 0 -i 8562 -a 0 -x {10.0 9.0 4276 ------- null} h -t 4.83502 -s 7 -d 8 -p ack -e 40 -c 0 -i 8562 -a 0 -x {10.0 9.0 4276 ------- null} + -t 4.83506 -s 0 -d 9 -p ack -e 40 -c 0 -i 8558 -a 0 -x {10.0 9.0 4274 ------- null} - -t 4.83506 -s 0 -d 9 -p ack -e 40 -c 0 -i 8558 -a 0 -x {10.0 9.0 4274 ------- null} h -t 4.83506 -s 0 -d 9 -p ack -e 40 -c 0 -i 8558 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.8351 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8561 -a 0 -x {9.0 10.0 4285 ------- null} + -t 4.8351 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8561 -a 0 -x {9.0 10.0 4285 ------- null} h -t 4.8351 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8561 -a 0 -x {9.0 10.0 4285 ------- null} r -t 4.83517 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8547 -a 0 -x {9.0 10.0 4278 ------- null} + -t 4.83517 -s 10 -d 7 -p ack -e 40 -c 0 -i 8566 -a 0 -x {10.0 9.0 4278 ------- null} - -t 4.83517 -s 10 -d 7 -p ack -e 40 -c 0 -i 8566 -a 0 -x {10.0 9.0 4278 ------- null} h -t 4.83517 -s 10 -d 7 -p ack -e 40 -c 0 -i 8566 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.83605 -s 0 -d 9 -p ack -e 40 -c 0 -i 8556 -a 0 -x {10.0 9.0 4273 ------- null} + -t 4.83605 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8567 -a 0 -x {9.0 10.0 4288 ------- null} - -t 4.83605 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8567 -a 0 -x {9.0 10.0 4288 ------- null} h -t 4.83605 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8567 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.83605 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8553 -a 0 -x {9.0 10.0 4281 ------- null} - -t 4.83605 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8553 -a 0 -x {9.0 10.0 4281 ------- null} h -t 4.83605 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8553 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.83611 -s 10 -d 7 -p ack -e 40 -c 0 -i 8564 -a 0 -x {10.0 9.0 4277 ------- null} + -t 4.83611 -s 7 -d 0 -p ack -e 40 -c 0 -i 8564 -a 0 -x {10.0 9.0 4277 ------- null} h -t 4.83611 -s 7 -d 8 -p ack -e 40 -c 0 -i 8564 -a 0 -x {10.0 9.0 4277 ------- null} + -t 4.83616 -s 0 -d 9 -p ack -e 40 -c 0 -i 8560 -a 0 -x {10.0 9.0 4275 ------- null} - -t 4.83616 -s 0 -d 9 -p ack -e 40 -c 0 -i 8560 -a 0 -x {10.0 9.0 4275 ------- null} h -t 4.83616 -s 0 -d 9 -p ack -e 40 -c 0 -i 8560 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.83637 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8563 -a 0 -x {9.0 10.0 4286 ------- null} + -t 4.83637 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8563 -a 0 -x {9.0 10.0 4286 ------- null} h -t 4.83637 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8563 -a 0 -x {9.0 10.0 4286 ------- null} r -t 4.83653 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8549 -a 0 -x {9.0 10.0 4279 ------- null} + -t 4.83653 -s 10 -d 7 -p ack -e 40 -c 0 -i 8568 -a 0 -x {10.0 9.0 4279 ------- null} - -t 4.83653 -s 10 -d 7 -p ack -e 40 -c 0 -i 8568 -a 0 -x {10.0 9.0 4279 ------- null} h -t 4.83653 -s 10 -d 7 -p ack -e 40 -c 0 -i 8568 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.83709 -s 0 -d 9 -p ack -e 40 -c 0 -i 8558 -a 0 -x {10.0 9.0 4274 ------- null} + -t 4.83709 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8569 -a 0 -x {9.0 10.0 4289 ------- null} - -t 4.83709 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8569 -a 0 -x {9.0 10.0 4289 ------- null} h -t 4.83709 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8569 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.83714 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8555 -a 0 -x {9.0 10.0 4282 ------- null} - -t 4.83714 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8555 -a 0 -x {9.0 10.0 4282 ------- null} h -t 4.83714 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8555 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.8372 -s 10 -d 7 -p ack -e 40 -c 0 -i 8566 -a 0 -x {10.0 9.0 4278 ------- null} + -t 4.8372 -s 7 -d 0 -p ack -e 40 -c 0 -i 8566 -a 0 -x {10.0 9.0 4278 ------- null} h -t 4.8372 -s 7 -d 8 -p ack -e 40 -c 0 -i 8566 -a 0 -x {10.0 9.0 4278 ------- null} + -t 4.83723 -s 0 -d 9 -p ack -e 40 -c 0 -i 8562 -a 0 -x {10.0 9.0 4276 ------- null} - -t 4.83723 -s 0 -d 9 -p ack -e 40 -c 0 -i 8562 -a 0 -x {10.0 9.0 4276 ------- null} h -t 4.83723 -s 0 -d 9 -p ack -e 40 -c 0 -i 8562 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.83749 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8565 -a 0 -x {9.0 10.0 4287 ------- null} + -t 4.83749 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8565 -a 0 -x {9.0 10.0 4287 ------- null} h -t 4.83749 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8565 -a 0 -x {9.0 10.0 4287 ------- null} r -t 4.83776 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8551 -a 0 -x {9.0 10.0 4280 ------- null} + -t 4.83776 -s 10 -d 7 -p ack -e 40 -c 0 -i 8570 -a 0 -x {10.0 9.0 4280 ------- null} - -t 4.83776 -s 10 -d 7 -p ack -e 40 -c 0 -i 8570 -a 0 -x {10.0 9.0 4280 ------- null} h -t 4.83776 -s 10 -d 7 -p ack -e 40 -c 0 -i 8570 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.83819 -s 0 -d 9 -p ack -e 40 -c 0 -i 8560 -a 0 -x {10.0 9.0 4275 ------- null} + -t 4.83819 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8571 -a 0 -x {9.0 10.0 4290 ------- null} - -t 4.83819 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8571 -a 0 -x {9.0 10.0 4290 ------- null} h -t 4.83819 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8571 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.83822 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8557 -a 0 -x {9.0 10.0 4283 ------- null} - -t 4.83822 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8557 -a 0 -x {9.0 10.0 4283 ------- null} h -t 4.83822 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8557 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.83846 -s 0 -d 9 -p ack -e 40 -c 0 -i 8564 -a 0 -x {10.0 9.0 4277 ------- null} - -t 4.83846 -s 0 -d 9 -p ack -e 40 -c 0 -i 8564 -a 0 -x {10.0 9.0 4277 ------- null} h -t 4.83846 -s 0 -d 9 -p ack -e 40 -c 0 -i 8564 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.83856 -s 10 -d 7 -p ack -e 40 -c 0 -i 8568 -a 0 -x {10.0 9.0 4279 ------- null} + -t 4.83856 -s 7 -d 0 -p ack -e 40 -c 0 -i 8568 -a 0 -x {10.0 9.0 4279 ------- null} h -t 4.83856 -s 7 -d 8 -p ack -e 40 -c 0 -i 8568 -a 0 -x {10.0 9.0 4279 ------- null} r -t 4.83885 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8567 -a 0 -x {9.0 10.0 4288 ------- null} + -t 4.83885 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8567 -a 0 -x {9.0 10.0 4288 ------- null} h -t 4.83885 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8567 -a 0 -x {9.0 10.0 4288 ------- null} r -t 4.83885 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8553 -a 0 -x {9.0 10.0 4281 ------- null} + -t 4.83885 -s 10 -d 7 -p ack -e 40 -c 0 -i 8572 -a 0 -x {10.0 9.0 4281 ------- null} - -t 4.83885 -s 10 -d 7 -p ack -e 40 -c 0 -i 8572 -a 0 -x {10.0 9.0 4281 ------- null} h -t 4.83885 -s 10 -d 7 -p ack -e 40 -c 0 -i 8572 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.83926 -s 0 -d 9 -p ack -e 40 -c 0 -i 8562 -a 0 -x {10.0 9.0 4276 ------- null} + -t 4.83926 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8573 -a 0 -x {9.0 10.0 4291 ------- null} - -t 4.83926 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8573 -a 0 -x {9.0 10.0 4291 ------- null} h -t 4.83926 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8573 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.83931 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8559 -a 0 -x {9.0 10.0 4284 ------- null} - -t 4.83931 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8559 -a 0 -x {9.0 10.0 4284 ------- null} h -t 4.83931 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8559 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.8395 -s 0 -d 9 -p ack -e 40 -c 0 -i 8566 -a 0 -x {10.0 9.0 4278 ------- null} - -t 4.8395 -s 0 -d 9 -p ack -e 40 -c 0 -i 8566 -a 0 -x {10.0 9.0 4278 ------- null} h -t 4.8395 -s 0 -d 9 -p ack -e 40 -c 0 -i 8566 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.83979 -s 10 -d 7 -p ack -e 40 -c 0 -i 8570 -a 0 -x {10.0 9.0 4280 ------- null} + -t 4.83979 -s 7 -d 0 -p ack -e 40 -c 0 -i 8570 -a 0 -x {10.0 9.0 4280 ------- null} h -t 4.83979 -s 7 -d 8 -p ack -e 40 -c 0 -i 8570 -a 0 -x {10.0 9.0 4280 ------- null} r -t 4.83989 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8569 -a 0 -x {9.0 10.0 4289 ------- null} + -t 4.83989 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8569 -a 0 -x {9.0 10.0 4289 ------- null} h -t 4.83989 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8569 -a 0 -x {9.0 10.0 4289 ------- null} r -t 4.83994 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8555 -a 0 -x {9.0 10.0 4282 ------- null} + -t 4.83994 -s 10 -d 7 -p ack -e 40 -c 0 -i 8574 -a 0 -x {10.0 9.0 4282 ------- null} - -t 4.83994 -s 10 -d 7 -p ack -e 40 -c 0 -i 8574 -a 0 -x {10.0 9.0 4282 ------- null} h -t 4.83994 -s 10 -d 7 -p ack -e 40 -c 0 -i 8574 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.8404 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8561 -a 0 -x {9.0 10.0 4285 ------- null} - -t 4.8404 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8561 -a 0 -x {9.0 10.0 4285 ------- null} h -t 4.8404 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8561 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.8405 -s 0 -d 9 -p ack -e 40 -c 0 -i 8564 -a 0 -x {10.0 9.0 4277 ------- null} + -t 4.8405 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8575 -a 0 -x {9.0 10.0 4292 ------- null} - -t 4.8405 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8575 -a 0 -x {9.0 10.0 4292 ------- null} h -t 4.8405 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8575 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.84062 -s 0 -d 9 -p ack -e 40 -c 0 -i 8568 -a 0 -x {10.0 9.0 4279 ------- null} - -t 4.84062 -s 0 -d 9 -p ack -e 40 -c 0 -i 8568 -a 0 -x {10.0 9.0 4279 ------- null} h -t 4.84062 -s 0 -d 9 -p ack -e 40 -c 0 -i 8568 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.84088 -s 10 -d 7 -p ack -e 40 -c 0 -i 8572 -a 0 -x {10.0 9.0 4281 ------- null} + -t 4.84088 -s 7 -d 0 -p ack -e 40 -c 0 -i 8572 -a 0 -x {10.0 9.0 4281 ------- null} h -t 4.84088 -s 7 -d 8 -p ack -e 40 -c 0 -i 8572 -a 0 -x {10.0 9.0 4281 ------- null} r -t 4.84099 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8571 -a 0 -x {9.0 10.0 4290 ------- null} + -t 4.84099 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8571 -a 0 -x {9.0 10.0 4290 ------- null} h -t 4.84099 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8571 -a 0 -x {9.0 10.0 4290 ------- null} r -t 4.84102 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8557 -a 0 -x {9.0 10.0 4283 ------- null} + -t 4.84102 -s 10 -d 7 -p ack -e 40 -c 0 -i 8576 -a 0 -x {10.0 9.0 4283 ------- null} - -t 4.84102 -s 10 -d 7 -p ack -e 40 -c 0 -i 8576 -a 0 -x {10.0 9.0 4283 ------- null} h -t 4.84102 -s 10 -d 7 -p ack -e 40 -c 0 -i 8576 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.84149 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8563 -a 0 -x {9.0 10.0 4286 ------- null} - -t 4.84149 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8563 -a 0 -x {9.0 10.0 4286 ------- null} h -t 4.84149 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8563 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.84154 -s 0 -d 9 -p ack -e 40 -c 0 -i 8566 -a 0 -x {10.0 9.0 4278 ------- null} + -t 4.84154 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8577 -a 0 -x {9.0 10.0 4293 ------- null} - -t 4.84154 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8577 -a 0 -x {9.0 10.0 4293 ------- null} h -t 4.84154 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8577 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.84174 -s 0 -d 9 -p ack -e 40 -c 0 -i 8570 -a 0 -x {10.0 9.0 4280 ------- null} - -t 4.84174 -s 0 -d 9 -p ack -e 40 -c 0 -i 8570 -a 0 -x {10.0 9.0 4280 ------- null} h -t 4.84174 -s 0 -d 9 -p ack -e 40 -c 0 -i 8570 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.84197 -s 10 -d 7 -p ack -e 40 -c 0 -i 8574 -a 0 -x {10.0 9.0 4282 ------- null} + -t 4.84197 -s 7 -d 0 -p ack -e 40 -c 0 -i 8574 -a 0 -x {10.0 9.0 4282 ------- null} h -t 4.84197 -s 7 -d 8 -p ack -e 40 -c 0 -i 8574 -a 0 -x {10.0 9.0 4282 ------- null} r -t 4.84206 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8573 -a 0 -x {9.0 10.0 4291 ------- null} + -t 4.84206 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8573 -a 0 -x {9.0 10.0 4291 ------- null} h -t 4.84206 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8573 -a 0 -x {9.0 10.0 4291 ------- null} r -t 4.84211 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8559 -a 0 -x {9.0 10.0 4284 ------- null} + -t 4.84211 -s 10 -d 7 -p ack -e 40 -c 0 -i 8578 -a 0 -x {10.0 9.0 4284 ------- null} - -t 4.84211 -s 10 -d 7 -p ack -e 40 -c 0 -i 8578 -a 0 -x {10.0 9.0 4284 ------- null} h -t 4.84211 -s 10 -d 7 -p ack -e 40 -c 0 -i 8578 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.84258 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8565 -a 0 -x {9.0 10.0 4287 ------- null} - -t 4.84258 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8565 -a 0 -x {9.0 10.0 4287 ------- null} h -t 4.84258 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8565 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.84266 -s 0 -d 9 -p ack -e 40 -c 0 -i 8568 -a 0 -x {10.0 9.0 4279 ------- null} + -t 4.84266 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8579 -a 0 -x {9.0 10.0 4294 ------- null} - -t 4.84266 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8579 -a 0 -x {9.0 10.0 4294 ------- null} h -t 4.84266 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8579 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.84286 -s 0 -d 9 -p ack -e 40 -c 0 -i 8572 -a 0 -x {10.0 9.0 4281 ------- null} - -t 4.84286 -s 0 -d 9 -p ack -e 40 -c 0 -i 8572 -a 0 -x {10.0 9.0 4281 ------- null} h -t 4.84286 -s 0 -d 9 -p ack -e 40 -c 0 -i 8572 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.84306 -s 10 -d 7 -p ack -e 40 -c 0 -i 8576 -a 0 -x {10.0 9.0 4283 ------- null} + -t 4.84306 -s 7 -d 0 -p ack -e 40 -c 0 -i 8576 -a 0 -x {10.0 9.0 4283 ------- null} h -t 4.84306 -s 7 -d 8 -p ack -e 40 -c 0 -i 8576 -a 0 -x {10.0 9.0 4283 ------- null} r -t 4.8432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8561 -a 0 -x {9.0 10.0 4285 ------- null} + -t 4.8432 -s 10 -d 7 -p ack -e 40 -c 0 -i 8580 -a 0 -x {10.0 9.0 4285 ------- null} - -t 4.8432 -s 10 -d 7 -p ack -e 40 -c 0 -i 8580 -a 0 -x {10.0 9.0 4285 ------- null} h -t 4.8432 -s 10 -d 7 -p ack -e 40 -c 0 -i 8580 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.8433 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8575 -a 0 -x {9.0 10.0 4292 ------- null} + -t 4.8433 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8575 -a 0 -x {9.0 10.0 4292 ------- null} h -t 4.8433 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8575 -a 0 -x {9.0 10.0 4292 ------- null} r -t 4.84378 -s 0 -d 9 -p ack -e 40 -c 0 -i 8570 -a 0 -x {10.0 9.0 4280 ------- null} + -t 4.84378 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8581 -a 0 -x {9.0 10.0 4295 ------- null} - -t 4.84378 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8581 -a 0 -x {9.0 10.0 4295 ------- null} h -t 4.84378 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8581 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.84386 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8567 -a 0 -x {9.0 10.0 4288 ------- null} - -t 4.84386 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8567 -a 0 -x {9.0 10.0 4288 ------- null} h -t 4.84386 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8567 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.84411 -s 0 -d 9 -p ack -e 40 -c 0 -i 8574 -a 0 -x {10.0 9.0 4282 ------- null} - -t 4.84411 -s 0 -d 9 -p ack -e 40 -c 0 -i 8574 -a 0 -x {10.0 9.0 4282 ------- null} h -t 4.84411 -s 0 -d 9 -p ack -e 40 -c 0 -i 8574 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.84414 -s 10 -d 7 -p ack -e 40 -c 0 -i 8578 -a 0 -x {10.0 9.0 4284 ------- null} + -t 4.84414 -s 7 -d 0 -p ack -e 40 -c 0 -i 8578 -a 0 -x {10.0 9.0 4284 ------- null} h -t 4.84414 -s 7 -d 8 -p ack -e 40 -c 0 -i 8578 -a 0 -x {10.0 9.0 4284 ------- null} r -t 4.84429 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8563 -a 0 -x {9.0 10.0 4286 ------- null} + -t 4.84429 -s 10 -d 7 -p ack -e 40 -c 0 -i 8582 -a 0 -x {10.0 9.0 4286 ------- null} - -t 4.84429 -s 10 -d 7 -p ack -e 40 -c 0 -i 8582 -a 0 -x {10.0 9.0 4286 ------- null} h -t 4.84429 -s 10 -d 7 -p ack -e 40 -c 0 -i 8582 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.84434 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8577 -a 0 -x {9.0 10.0 4293 ------- null} + -t 4.84434 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8577 -a 0 -x {9.0 10.0 4293 ------- null} h -t 4.84434 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8577 -a 0 -x {9.0 10.0 4293 ------- null} r -t 4.8449 -s 0 -d 9 -p ack -e 40 -c 0 -i 8572 -a 0 -x {10.0 9.0 4281 ------- null} + -t 4.8449 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8583 -a 0 -x {9.0 10.0 4296 ------- null} - -t 4.8449 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8583 -a 0 -x {9.0 10.0 4296 ------- null} h -t 4.8449 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8583 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.84494 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8569 -a 0 -x {9.0 10.0 4289 ------- null} - -t 4.84494 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8569 -a 0 -x {9.0 10.0 4289 ------- null} h -t 4.84494 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8569 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.84509 -s 0 -d 9 -p ack -e 40 -c 0 -i 8576 -a 0 -x {10.0 9.0 4283 ------- null} - -t 4.84509 -s 0 -d 9 -p ack -e 40 -c 0 -i 8576 -a 0 -x {10.0 9.0 4283 ------- null} h -t 4.84509 -s 0 -d 9 -p ack -e 40 -c 0 -i 8576 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.84523 -s 10 -d 7 -p ack -e 40 -c 0 -i 8580 -a 0 -x {10.0 9.0 4285 ------- null} + -t 4.84523 -s 7 -d 0 -p ack -e 40 -c 0 -i 8580 -a 0 -x {10.0 9.0 4285 ------- null} h -t 4.84523 -s 7 -d 8 -p ack -e 40 -c 0 -i 8580 -a 0 -x {10.0 9.0 4285 ------- null} r -t 4.84538 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8565 -a 0 -x {9.0 10.0 4287 ------- null} + -t 4.84538 -s 10 -d 7 -p ack -e 40 -c 0 -i 8584 -a 0 -x {10.0 9.0 4287 ------- null} - -t 4.84538 -s 10 -d 7 -p ack -e 40 -c 0 -i 8584 -a 0 -x {10.0 9.0 4287 ------- null} h -t 4.84538 -s 10 -d 7 -p ack -e 40 -c 0 -i 8584 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.84546 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8579 -a 0 -x {9.0 10.0 4294 ------- null} + -t 4.84546 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8579 -a 0 -x {9.0 10.0 4294 ------- null} h -t 4.84546 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8579 -a 0 -x {9.0 10.0 4294 ------- null} + -t 4.84603 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8571 -a 0 -x {9.0 10.0 4290 ------- null} - -t 4.84603 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8571 -a 0 -x {9.0 10.0 4290 ------- null} h -t 4.84603 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8571 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.84614 -s 0 -d 9 -p ack -e 40 -c 0 -i 8574 -a 0 -x {10.0 9.0 4282 ------- null} + -t 4.84614 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8585 -a 0 -x {9.0 10.0 4297 ------- null} - -t 4.84614 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8585 -a 0 -x {9.0 10.0 4297 ------- null} h -t 4.84614 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8585 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.84629 -s 0 -d 9 -p ack -e 40 -c 0 -i 8578 -a 0 -x {10.0 9.0 4284 ------- null} - -t 4.84629 -s 0 -d 9 -p ack -e 40 -c 0 -i 8578 -a 0 -x {10.0 9.0 4284 ------- null} h -t 4.84629 -s 0 -d 9 -p ack -e 40 -c 0 -i 8578 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.84632 -s 10 -d 7 -p ack -e 40 -c 0 -i 8582 -a 0 -x {10.0 9.0 4286 ------- null} + -t 4.84632 -s 7 -d 0 -p ack -e 40 -c 0 -i 8582 -a 0 -x {10.0 9.0 4286 ------- null} h -t 4.84632 -s 7 -d 8 -p ack -e 40 -c 0 -i 8582 -a 0 -x {10.0 9.0 4286 ------- null} r -t 4.84658 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8581 -a 0 -x {9.0 10.0 4295 ------- null} + -t 4.84658 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8581 -a 0 -x {9.0 10.0 4295 ------- null} h -t 4.84658 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8581 -a 0 -x {9.0 10.0 4295 ------- null} r -t 4.84666 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8567 -a 0 -x {9.0 10.0 4288 ------- null} + -t 4.84666 -s 10 -d 7 -p ack -e 40 -c 0 -i 8586 -a 0 -x {10.0 9.0 4288 ------- null} - -t 4.84666 -s 10 -d 7 -p ack -e 40 -c 0 -i 8586 -a 0 -x {10.0 9.0 4288 ------- null} h -t 4.84666 -s 10 -d 7 -p ack -e 40 -c 0 -i 8586 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.84712 -s 0 -d 9 -p ack -e 40 -c 0 -i 8576 -a 0 -x {10.0 9.0 4283 ------- null} + -t 4.84712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8587 -a 0 -x {9.0 10.0 4298 ------- null} - -t 4.84712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8587 -a 0 -x {9.0 10.0 4298 ------- null} h -t 4.84712 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8587 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.84712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8573 -a 0 -x {9.0 10.0 4291 ------- null} - -t 4.84712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8573 -a 0 -x {9.0 10.0 4291 ------- null} h -t 4.84712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8573 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.84726 -s 0 -d 9 -p ack -e 40 -c 0 -i 8580 -a 0 -x {10.0 9.0 4285 ------- null} - -t 4.84726 -s 0 -d 9 -p ack -e 40 -c 0 -i 8580 -a 0 -x {10.0 9.0 4285 ------- null} h -t 4.84726 -s 0 -d 9 -p ack -e 40 -c 0 -i 8580 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.84741 -s 10 -d 7 -p ack -e 40 -c 0 -i 8584 -a 0 -x {10.0 9.0 4287 ------- null} + -t 4.84741 -s 7 -d 0 -p ack -e 40 -c 0 -i 8584 -a 0 -x {10.0 9.0 4287 ------- null} h -t 4.84741 -s 7 -d 8 -p ack -e 40 -c 0 -i 8584 -a 0 -x {10.0 9.0 4287 ------- null} r -t 4.8477 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8583 -a 0 -x {9.0 10.0 4296 ------- null} + -t 4.8477 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8583 -a 0 -x {9.0 10.0 4296 ------- null} h -t 4.8477 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8583 -a 0 -x {9.0 10.0 4296 ------- null} r -t 4.84774 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8569 -a 0 -x {9.0 10.0 4289 ------- null} + -t 4.84774 -s 10 -d 7 -p ack -e 40 -c 0 -i 8588 -a 0 -x {10.0 9.0 4289 ------- null} - -t 4.84774 -s 10 -d 7 -p ack -e 40 -c 0 -i 8588 -a 0 -x {10.0 9.0 4289 ------- null} h -t 4.84774 -s 10 -d 7 -p ack -e 40 -c 0 -i 8588 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.84821 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8575 -a 0 -x {9.0 10.0 4292 ------- null} - -t 4.84821 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8575 -a 0 -x {9.0 10.0 4292 ------- null} h -t 4.84821 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8575 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.84832 -s 0 -d 9 -p ack -e 40 -c 0 -i 8578 -a 0 -x {10.0 9.0 4284 ------- null} + -t 4.84832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8589 -a 0 -x {9.0 10.0 4299 ------- null} - -t 4.84832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8589 -a 0 -x {9.0 10.0 4299 ------- null} h -t 4.84832 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8589 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.84848 -s 0 -d 9 -p ack -e 40 -c 0 -i 8582 -a 0 -x {10.0 9.0 4286 ------- null} - -t 4.84848 -s 0 -d 9 -p ack -e 40 -c 0 -i 8582 -a 0 -x {10.0 9.0 4286 ------- null} h -t 4.84848 -s 0 -d 9 -p ack -e 40 -c 0 -i 8582 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.84869 -s 10 -d 7 -p ack -e 40 -c 0 -i 8586 -a 0 -x {10.0 9.0 4288 ------- null} + -t 4.84869 -s 7 -d 0 -p ack -e 40 -c 0 -i 8586 -a 0 -x {10.0 9.0 4288 ------- null} h -t 4.84869 -s 7 -d 8 -p ack -e 40 -c 0 -i 8586 -a 0 -x {10.0 9.0 4288 ------- null} r -t 4.84883 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8571 -a 0 -x {9.0 10.0 4290 ------- null} + -t 4.84883 -s 10 -d 7 -p ack -e 40 -c 0 -i 8590 -a 0 -x {10.0 9.0 4290 ------- null} - -t 4.84883 -s 10 -d 7 -p ack -e 40 -c 0 -i 8590 -a 0 -x {10.0 9.0 4290 ------- null} h -t 4.84883 -s 10 -d 7 -p ack -e 40 -c 0 -i 8590 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.84894 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8585 -a 0 -x {9.0 10.0 4297 ------- null} + -t 4.84894 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8585 -a 0 -x {9.0 10.0 4297 ------- null} h -t 4.84894 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8585 -a 0 -x {9.0 10.0 4297 ------- null} r -t 4.8493 -s 0 -d 9 -p ack -e 40 -c 0 -i 8580 -a 0 -x {10.0 9.0 4285 ------- null} + -t 4.8493 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8591 -a 0 -x {9.0 10.0 4300 ------- null} - -t 4.8493 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8591 -a 0 -x {9.0 10.0 4300 ------- null} h -t 4.8493 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8591 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.84954 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8577 -a 0 -x {9.0 10.0 4293 ------- null} - -t 4.84954 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8577 -a 0 -x {9.0 10.0 4293 ------- null} h -t 4.84954 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8577 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.84968 -s 0 -d 9 -p ack -e 40 -c 0 -i 8584 -a 0 -x {10.0 9.0 4287 ------- null} - -t 4.84968 -s 0 -d 9 -p ack -e 40 -c 0 -i 8584 -a 0 -x {10.0 9.0 4287 ------- null} h -t 4.84968 -s 0 -d 9 -p ack -e 40 -c 0 -i 8584 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.84978 -s 10 -d 7 -p ack -e 40 -c 0 -i 8588 -a 0 -x {10.0 9.0 4289 ------- null} + -t 4.84978 -s 7 -d 0 -p ack -e 40 -c 0 -i 8588 -a 0 -x {10.0 9.0 4289 ------- null} h -t 4.84978 -s 7 -d 8 -p ack -e 40 -c 0 -i 8588 -a 0 -x {10.0 9.0 4289 ------- null} r -t 4.84992 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8587 -a 0 -x {9.0 10.0 4298 ------- null} + -t 4.84992 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8587 -a 0 -x {9.0 10.0 4298 ------- null} h -t 4.84992 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8587 -a 0 -x {9.0 10.0 4298 ------- null} r -t 4.84992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8573 -a 0 -x {9.0 10.0 4291 ------- null} + -t 4.84992 -s 10 -d 7 -p ack -e 40 -c 0 -i 8592 -a 0 -x {10.0 9.0 4291 ------- null} - -t 4.84992 -s 10 -d 7 -p ack -e 40 -c 0 -i 8592 -a 0 -x {10.0 9.0 4291 ------- null} h -t 4.84992 -s 10 -d 7 -p ack -e 40 -c 0 -i 8592 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.85051 -s 0 -d 9 -p ack -e 40 -c 0 -i 8582 -a 0 -x {10.0 9.0 4286 ------- null} + -t 4.85051 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8593 -a 0 -x {9.0 10.0 4301 ------- null} - -t 4.85051 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8593 -a 0 -x {9.0 10.0 4301 ------- null} h -t 4.85051 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8593 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.85062 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8579 -a 0 -x {9.0 10.0 4294 ------- null} - -t 4.85062 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8579 -a 0 -x {9.0 10.0 4294 ------- null} h -t 4.85062 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8579 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.85086 -s 10 -d 7 -p ack -e 40 -c 0 -i 8590 -a 0 -x {10.0 9.0 4290 ------- null} + -t 4.85086 -s 7 -d 0 -p ack -e 40 -c 0 -i 8590 -a 0 -x {10.0 9.0 4290 ------- null} h -t 4.85086 -s 7 -d 8 -p ack -e 40 -c 0 -i 8590 -a 0 -x {10.0 9.0 4290 ------- null} + -t 4.85093 -s 0 -d 9 -p ack -e 40 -c 0 -i 8586 -a 0 -x {10.0 9.0 4288 ------- null} - -t 4.85093 -s 0 -d 9 -p ack -e 40 -c 0 -i 8586 -a 0 -x {10.0 9.0 4288 ------- null} h -t 4.85093 -s 0 -d 9 -p ack -e 40 -c 0 -i 8586 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.85101 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8575 -a 0 -x {9.0 10.0 4292 ------- null} + -t 4.85101 -s 10 -d 7 -p ack -e 40 -c 0 -i 8594 -a 0 -x {10.0 9.0 4292 ------- null} - -t 4.85101 -s 10 -d 7 -p ack -e 40 -c 0 -i 8594 -a 0 -x {10.0 9.0 4292 ------- null} h -t 4.85101 -s 10 -d 7 -p ack -e 40 -c 0 -i 8594 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.85112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8589 -a 0 -x {9.0 10.0 4299 ------- null} + -t 4.85112 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8589 -a 0 -x {9.0 10.0 4299 ------- null} h -t 4.85112 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8589 -a 0 -x {9.0 10.0 4299 ------- null} r -t 4.85171 -s 0 -d 9 -p ack -e 40 -c 0 -i 8584 -a 0 -x {10.0 9.0 4287 ------- null} + -t 4.85171 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8595 -a 0 -x {9.0 10.0 4302 ------- null} - -t 4.85171 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8595 -a 0 -x {9.0 10.0 4302 ------- null} h -t 4.85171 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8595 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.85187 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8581 -a 0 -x {9.0 10.0 4295 ------- null} - -t 4.85187 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8581 -a 0 -x {9.0 10.0 4295 ------- null} h -t 4.85187 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8581 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.85195 -s 10 -d 7 -p ack -e 40 -c 0 -i 8592 -a 0 -x {10.0 9.0 4291 ------- null} + -t 4.85195 -s 7 -d 0 -p ack -e 40 -c 0 -i 8592 -a 0 -x {10.0 9.0 4291 ------- null} h -t 4.85195 -s 7 -d 8 -p ack -e 40 -c 0 -i 8592 -a 0 -x {10.0 9.0 4291 ------- null} + -t 4.85205 -s 0 -d 9 -p ack -e 40 -c 0 -i 8588 -a 0 -x {10.0 9.0 4289 ------- null} - -t 4.85205 -s 0 -d 9 -p ack -e 40 -c 0 -i 8588 -a 0 -x {10.0 9.0 4289 ------- null} h -t 4.85205 -s 0 -d 9 -p ack -e 40 -c 0 -i 8588 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.8521 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8591 -a 0 -x {9.0 10.0 4300 ------- null} + -t 4.8521 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8591 -a 0 -x {9.0 10.0 4300 ------- null} h -t 4.8521 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8591 -a 0 -x {9.0 10.0 4300 ------- null} r -t 4.85234 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8577 -a 0 -x {9.0 10.0 4293 ------- null} + -t 4.85234 -s 10 -d 7 -p ack -e 40 -c 0 -i 8596 -a 0 -x {10.0 9.0 4293 ------- null} - -t 4.85234 -s 10 -d 7 -p ack -e 40 -c 0 -i 8596 -a 0 -x {10.0 9.0 4293 ------- null} h -t 4.85234 -s 10 -d 7 -p ack -e 40 -c 0 -i 8596 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.85296 -s 0 -d 9 -p ack -e 40 -c 0 -i 8586 -a 0 -x {10.0 9.0 4288 ------- null} + -t 4.85296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8597 -a 0 -x {9.0 10.0 4303 ------- null} - -t 4.85296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8597 -a 0 -x {9.0 10.0 4303 ------- null} h -t 4.85296 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8597 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.85296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8583 -a 0 -x {9.0 10.0 4296 ------- null} - -t 4.85296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8583 -a 0 -x {9.0 10.0 4296 ------- null} h -t 4.85296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8583 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.85302 -s 0 -d 9 -p ack -e 40 -c 0 -i 8590 -a 0 -x {10.0 9.0 4290 ------- null} - -t 4.85302 -s 0 -d 9 -p ack -e 40 -c 0 -i 8590 -a 0 -x {10.0 9.0 4290 ------- null} h -t 4.85302 -s 0 -d 9 -p ack -e 40 -c 0 -i 8590 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.85304 -s 10 -d 7 -p ack -e 40 -c 0 -i 8594 -a 0 -x {10.0 9.0 4292 ------- null} + -t 4.85304 -s 7 -d 0 -p ack -e 40 -c 0 -i 8594 -a 0 -x {10.0 9.0 4292 ------- null} h -t 4.85304 -s 7 -d 8 -p ack -e 40 -c 0 -i 8594 -a 0 -x {10.0 9.0 4292 ------- null} r -t 4.85331 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8593 -a 0 -x {9.0 10.0 4301 ------- null} + -t 4.85331 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8593 -a 0 -x {9.0 10.0 4301 ------- null} h -t 4.85331 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8593 -a 0 -x {9.0 10.0 4301 ------- null} r -t 4.85342 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8579 -a 0 -x {9.0 10.0 4294 ------- null} + -t 4.85342 -s 10 -d 7 -p ack -e 40 -c 0 -i 8598 -a 0 -x {10.0 9.0 4294 ------- null} - -t 4.85342 -s 10 -d 7 -p ack -e 40 -c 0 -i 8598 -a 0 -x {10.0 9.0 4294 ------- null} h -t 4.85342 -s 10 -d 7 -p ack -e 40 -c 0 -i 8598 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.85405 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8585 -a 0 -x {9.0 10.0 4297 ------- null} - -t 4.85405 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8585 -a 0 -x {9.0 10.0 4297 ------- null} h -t 4.85405 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8585 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.85408 -s 0 -d 9 -p ack -e 40 -c 0 -i 8588 -a 0 -x {10.0 9.0 4289 ------- null} + -t 4.85408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8599 -a 0 -x {9.0 10.0 4304 ------- null} - -t 4.85408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8599 -a 0 -x {9.0 10.0 4304 ------- null} h -t 4.85408 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8599 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.85413 -s 0 -d 9 -p ack -e 40 -c 0 -i 8592 -a 0 -x {10.0 9.0 4291 ------- null} - -t 4.85413 -s 0 -d 9 -p ack -e 40 -c 0 -i 8592 -a 0 -x {10.0 9.0 4291 ------- null} h -t 4.85413 -s 0 -d 9 -p ack -e 40 -c 0 -i 8592 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.85437 -s 10 -d 7 -p ack -e 40 -c 0 -i 8596 -a 0 -x {10.0 9.0 4293 ------- null} + -t 4.85437 -s 7 -d 0 -p ack -e 40 -c 0 -i 8596 -a 0 -x {10.0 9.0 4293 ------- null} h -t 4.85437 -s 7 -d 8 -p ack -e 40 -c 0 -i 8596 -a 0 -x {10.0 9.0 4293 ------- null} r -t 4.85451 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8595 -a 0 -x {9.0 10.0 4302 ------- null} + -t 4.85451 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8595 -a 0 -x {9.0 10.0 4302 ------- null} h -t 4.85451 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8595 -a 0 -x {9.0 10.0 4302 ------- null} r -t 4.85467 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8581 -a 0 -x {9.0 10.0 4295 ------- null} + -t 4.85467 -s 10 -d 7 -p ack -e 40 -c 0 -i 8600 -a 0 -x {10.0 9.0 4295 ------- null} - -t 4.85467 -s 10 -d 7 -p ack -e 40 -c 0 -i 8600 -a 0 -x {10.0 9.0 4295 ------- null} h -t 4.85467 -s 10 -d 7 -p ack -e 40 -c 0 -i 8600 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.85506 -s 0 -d 9 -p ack -e 40 -c 0 -i 8590 -a 0 -x {10.0 9.0 4290 ------- null} + -t 4.85506 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8601 -a 0 -x {9.0 10.0 4305 ------- null} - -t 4.85506 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8601 -a 0 -x {9.0 10.0 4305 ------- null} h -t 4.85506 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8601 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.85514 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8587 -a 0 -x {9.0 10.0 4298 ------- null} - -t 4.85514 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8587 -a 0 -x {9.0 10.0 4298 ------- null} h -t 4.85514 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8587 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.85536 -s 0 -d 9 -p ack -e 40 -c 0 -i 8594 -a 0 -x {10.0 9.0 4292 ------- null} - -t 4.85536 -s 0 -d 9 -p ack -e 40 -c 0 -i 8594 -a 0 -x {10.0 9.0 4292 ------- null} h -t 4.85536 -s 0 -d 9 -p ack -e 40 -c 0 -i 8594 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.85546 -s 10 -d 7 -p ack -e 40 -c 0 -i 8598 -a 0 -x {10.0 9.0 4294 ------- null} + -t 4.85546 -s 7 -d 0 -p ack -e 40 -c 0 -i 8598 -a 0 -x {10.0 9.0 4294 ------- null} h -t 4.85546 -s 7 -d 8 -p ack -e 40 -c 0 -i 8598 -a 0 -x {10.0 9.0 4294 ------- null} r -t 4.85576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8597 -a 0 -x {9.0 10.0 4303 ------- null} + -t 4.85576 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8597 -a 0 -x {9.0 10.0 4303 ------- null} h -t 4.85576 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8597 -a 0 -x {9.0 10.0 4303 ------- null} r -t 4.85576 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8583 -a 0 -x {9.0 10.0 4296 ------- null} + -t 4.85576 -s 10 -d 7 -p ack -e 40 -c 0 -i 8602 -a 0 -x {10.0 9.0 4296 ------- null} - -t 4.85576 -s 10 -d 7 -p ack -e 40 -c 0 -i 8602 -a 0 -x {10.0 9.0 4296 ------- null} h -t 4.85576 -s 10 -d 7 -p ack -e 40 -c 0 -i 8602 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.85616 -s 0 -d 9 -p ack -e 40 -c 0 -i 8592 -a 0 -x {10.0 9.0 4291 ------- null} + -t 4.85616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8603 -a 0 -x {9.0 10.0 4306 ------- null} - -t 4.85616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8603 -a 0 -x {9.0 10.0 4306 ------- null} h -t 4.85616 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8603 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.85622 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8589 -a 0 -x {9.0 10.0 4299 ------- null} - -t 4.85622 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8589 -a 0 -x {9.0 10.0 4299 ------- null} h -t 4.85622 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8589 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.85638 -s 0 -d 9 -p ack -e 40 -c 0 -i 8596 -a 0 -x {10.0 9.0 4293 ------- null} - -t 4.85638 -s 0 -d 9 -p ack -e 40 -c 0 -i 8596 -a 0 -x {10.0 9.0 4293 ------- null} h -t 4.85638 -s 0 -d 9 -p ack -e 40 -c 0 -i 8596 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.8567 -s 10 -d 7 -p ack -e 40 -c 0 -i 8600 -a 0 -x {10.0 9.0 4295 ------- null} + -t 4.8567 -s 7 -d 0 -p ack -e 40 -c 0 -i 8600 -a 0 -x {10.0 9.0 4295 ------- null} h -t 4.8567 -s 7 -d 8 -p ack -e 40 -c 0 -i 8600 -a 0 -x {10.0 9.0 4295 ------- null} r -t 4.85685 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8585 -a 0 -x {9.0 10.0 4297 ------- null} + -t 4.85685 -s 10 -d 7 -p ack -e 40 -c 0 -i 8604 -a 0 -x {10.0 9.0 4297 ------- null} - -t 4.85685 -s 10 -d 7 -p ack -e 40 -c 0 -i 8604 -a 0 -x {10.0 9.0 4297 ------- null} h -t 4.85685 -s 10 -d 7 -p ack -e 40 -c 0 -i 8604 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.85688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8599 -a 0 -x {9.0 10.0 4304 ------- null} + -t 4.85688 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8599 -a 0 -x {9.0 10.0 4304 ------- null} h -t 4.85688 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8599 -a 0 -x {9.0 10.0 4304 ------- null} + -t 4.85731 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8591 -a 0 -x {9.0 10.0 4300 ------- null} - -t 4.85731 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8591 -a 0 -x {9.0 10.0 4300 ------- null} h -t 4.85731 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8591 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.85739 -s 0 -d 9 -p ack -e 40 -c 0 -i 8594 -a 0 -x {10.0 9.0 4292 ------- null} + -t 4.85739 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8605 -a 0 -x {9.0 10.0 4307 ------- null} - -t 4.85739 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8605 -a 0 -x {9.0 10.0 4307 ------- null} h -t 4.85739 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8605 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.85747 -s 0 -d 9 -p ack -e 40 -c 0 -i 8598 -a 0 -x {10.0 9.0 4294 ------- null} - -t 4.85747 -s 0 -d 9 -p ack -e 40 -c 0 -i 8598 -a 0 -x {10.0 9.0 4294 ------- null} h -t 4.85747 -s 0 -d 9 -p ack -e 40 -c 0 -i 8598 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.85779 -s 10 -d 7 -p ack -e 40 -c 0 -i 8602 -a 0 -x {10.0 9.0 4296 ------- null} + -t 4.85779 -s 7 -d 0 -p ack -e 40 -c 0 -i 8602 -a 0 -x {10.0 9.0 4296 ------- null} h -t 4.85779 -s 7 -d 8 -p ack -e 40 -c 0 -i 8602 -a 0 -x {10.0 9.0 4296 ------- null} r -t 4.85786 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8601 -a 0 -x {9.0 10.0 4305 ------- null} + -t 4.85786 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8601 -a 0 -x {9.0 10.0 4305 ------- null} h -t 4.85786 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8601 -a 0 -x {9.0 10.0 4305 ------- null} r -t 4.85794 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8587 -a 0 -x {9.0 10.0 4298 ------- null} + -t 4.85794 -s 10 -d 7 -p ack -e 40 -c 0 -i 8606 -a 0 -x {10.0 9.0 4298 ------- null} - -t 4.85794 -s 10 -d 7 -p ack -e 40 -c 0 -i 8606 -a 0 -x {10.0 9.0 4298 ------- null} h -t 4.85794 -s 10 -d 7 -p ack -e 40 -c 0 -i 8606 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.8584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8593 -a 0 -x {9.0 10.0 4301 ------- null} - -t 4.8584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8593 -a 0 -x {9.0 10.0 4301 ------- null} h -t 4.8584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8593 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.85842 -s 0 -d 9 -p ack -e 40 -c 0 -i 8596 -a 0 -x {10.0 9.0 4293 ------- null} + -t 4.85842 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8607 -a 0 -x {9.0 10.0 4308 ------- null} - -t 4.85842 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8607 -a 0 -x {9.0 10.0 4308 ------- null} h -t 4.85842 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8607 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.85867 -s 0 -d 9 -p ack -e 40 -c 0 -i 8600 -a 0 -x {10.0 9.0 4295 ------- null} - -t 4.85867 -s 0 -d 9 -p ack -e 40 -c 0 -i 8600 -a 0 -x {10.0 9.0 4295 ------- null} h -t 4.85867 -s 0 -d 9 -p ack -e 40 -c 0 -i 8600 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.85888 -s 10 -d 7 -p ack -e 40 -c 0 -i 8604 -a 0 -x {10.0 9.0 4297 ------- null} + -t 4.85888 -s 7 -d 0 -p ack -e 40 -c 0 -i 8604 -a 0 -x {10.0 9.0 4297 ------- null} h -t 4.85888 -s 7 -d 8 -p ack -e 40 -c 0 -i 8604 -a 0 -x {10.0 9.0 4297 ------- null} r -t 4.85896 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8603 -a 0 -x {9.0 10.0 4306 ------- null} + -t 4.85896 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8603 -a 0 -x {9.0 10.0 4306 ------- null} h -t 4.85896 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8603 -a 0 -x {9.0 10.0 4306 ------- null} r -t 4.85902 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8589 -a 0 -x {9.0 10.0 4299 ------- null} + -t 4.85902 -s 10 -d 7 -p ack -e 40 -c 0 -i 8608 -a 0 -x {10.0 9.0 4299 ------- null} - -t 4.85902 -s 10 -d 7 -p ack -e 40 -c 0 -i 8608 -a 0 -x {10.0 9.0 4299 ------- null} h -t 4.85902 -s 10 -d 7 -p ack -e 40 -c 0 -i 8608 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.8595 -s 0 -d 9 -p ack -e 40 -c 0 -i 8598 -a 0 -x {10.0 9.0 4294 ------- null} + -t 4.8595 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8609 -a 0 -x {9.0 10.0 4309 ------- null} - -t 4.8595 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8609 -a 0 -x {9.0 10.0 4309 ------- null} h -t 4.8595 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8609 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.8596 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8595 -a 0 -x {9.0 10.0 4302 ------- null} - -t 4.8596 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8595 -a 0 -x {9.0 10.0 4302 ------- null} h -t 4.8596 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8595 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.85978 -s 0 -d 9 -p ack -e 40 -c 0 -i 8602 -a 0 -x {10.0 9.0 4296 ------- null} - -t 4.85978 -s 0 -d 9 -p ack -e 40 -c 0 -i 8602 -a 0 -x {10.0 9.0 4296 ------- null} h -t 4.85978 -s 0 -d 9 -p ack -e 40 -c 0 -i 8602 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.85997 -s 10 -d 7 -p ack -e 40 -c 0 -i 8606 -a 0 -x {10.0 9.0 4298 ------- null} + -t 4.85997 -s 7 -d 0 -p ack -e 40 -c 0 -i 8606 -a 0 -x {10.0 9.0 4298 ------- null} h -t 4.85997 -s 7 -d 8 -p ack -e 40 -c 0 -i 8606 -a 0 -x {10.0 9.0 4298 ------- null} r -t 4.86011 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8591 -a 0 -x {9.0 10.0 4300 ------- null} + -t 4.86011 -s 10 -d 7 -p ack -e 40 -c 0 -i 8610 -a 0 -x {10.0 9.0 4300 ------- null} - -t 4.86011 -s 10 -d 7 -p ack -e 40 -c 0 -i 8610 -a 0 -x {10.0 9.0 4300 ------- null} h -t 4.86011 -s 10 -d 7 -p ack -e 40 -c 0 -i 8610 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.86019 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8605 -a 0 -x {9.0 10.0 4307 ------- null} + -t 4.86019 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8605 -a 0 -x {9.0 10.0 4307 ------- null} h -t 4.86019 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8605 -a 0 -x {9.0 10.0 4307 ------- null} + -t 4.86069 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8597 -a 0 -x {9.0 10.0 4303 ------- null} - -t 4.86069 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8597 -a 0 -x {9.0 10.0 4303 ------- null} h -t 4.86069 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8597 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.8607 -s 0 -d 9 -p ack -e 40 -c 0 -i 8600 -a 0 -x {10.0 9.0 4295 ------- null} + -t 4.8607 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8611 -a 0 -x {9.0 10.0 4310 ------- null} - -t 4.8607 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8611 -a 0 -x {9.0 10.0 4310 ------- null} h -t 4.8607 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8611 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.8608 -s 0 -d 9 -p ack -e 40 -c 0 -i 8604 -a 0 -x {10.0 9.0 4297 ------- null} - -t 4.8608 -s 0 -d 9 -p ack -e 40 -c 0 -i 8604 -a 0 -x {10.0 9.0 4297 ------- null} h -t 4.8608 -s 0 -d 9 -p ack -e 40 -c 0 -i 8604 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.86106 -s 10 -d 7 -p ack -e 40 -c 0 -i 8608 -a 0 -x {10.0 9.0 4299 ------- null} + -t 4.86106 -s 7 -d 0 -p ack -e 40 -c 0 -i 8608 -a 0 -x {10.0 9.0 4299 ------- null} h -t 4.86106 -s 7 -d 8 -p ack -e 40 -c 0 -i 8608 -a 0 -x {10.0 9.0 4299 ------- null} r -t 4.8612 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8593 -a 0 -x {9.0 10.0 4301 ------- null} + -t 4.8612 -s 10 -d 7 -p ack -e 40 -c 0 -i 8612 -a 0 -x {10.0 9.0 4301 ------- null} - -t 4.8612 -s 10 -d 7 -p ack -e 40 -c 0 -i 8612 -a 0 -x {10.0 9.0 4301 ------- null} h -t 4.8612 -s 10 -d 7 -p ack -e 40 -c 0 -i 8612 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.86122 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8607 -a 0 -x {9.0 10.0 4308 ------- null} + -t 4.86122 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8607 -a 0 -x {9.0 10.0 4308 ------- null} h -t 4.86122 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8607 -a 0 -x {9.0 10.0 4308 ------- null} + -t 4.86178 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8599 -a 0 -x {9.0 10.0 4304 ------- null} - -t 4.86178 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8599 -a 0 -x {9.0 10.0 4304 ------- null} h -t 4.86178 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8599 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.86181 -s 0 -d 9 -p ack -e 40 -c 0 -i 8602 -a 0 -x {10.0 9.0 4296 ------- null} + -t 4.86181 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8613 -a 0 -x {9.0 10.0 4311 ------- null} - -t 4.86181 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8613 -a 0 -x {9.0 10.0 4311 ------- null} h -t 4.86181 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8613 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.86206 -s 0 -d 9 -p ack -e 40 -c 0 -i 8606 -a 0 -x {10.0 9.0 4298 ------- null} - -t 4.86206 -s 0 -d 9 -p ack -e 40 -c 0 -i 8606 -a 0 -x {10.0 9.0 4298 ------- null} h -t 4.86206 -s 0 -d 9 -p ack -e 40 -c 0 -i 8606 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.86214 -s 10 -d 7 -p ack -e 40 -c 0 -i 8610 -a 0 -x {10.0 9.0 4300 ------- null} + -t 4.86214 -s 7 -d 0 -p ack -e 40 -c 0 -i 8610 -a 0 -x {10.0 9.0 4300 ------- null} h -t 4.86214 -s 7 -d 8 -p ack -e 40 -c 0 -i 8610 -a 0 -x {10.0 9.0 4300 ------- null} r -t 4.8623 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8609 -a 0 -x {9.0 10.0 4309 ------- null} + -t 4.8623 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8609 -a 0 -x {9.0 10.0 4309 ------- null} h -t 4.8623 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8609 -a 0 -x {9.0 10.0 4309 ------- null} r -t 4.8624 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8595 -a 0 -x {9.0 10.0 4302 ------- null} + -t 4.8624 -s 10 -d 7 -p ack -e 40 -c 0 -i 8614 -a 0 -x {10.0 9.0 4302 ------- null} - -t 4.8624 -s 10 -d 7 -p ack -e 40 -c 0 -i 8614 -a 0 -x {10.0 9.0 4302 ------- null} h -t 4.8624 -s 10 -d 7 -p ack -e 40 -c 0 -i 8614 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.86283 -s 0 -d 9 -p ack -e 40 -c 0 -i 8604 -a 0 -x {10.0 9.0 4297 ------- null} + -t 4.86283 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8615 -a 0 -x {9.0 10.0 4312 ------- null} - -t 4.86283 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8615 -a 0 -x {9.0 10.0 4312 ------- null} h -t 4.86283 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8615 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.86304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8601 -a 0 -x {9.0 10.0 4305 ------- null} - -t 4.86304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8601 -a 0 -x {9.0 10.0 4305 ------- null} h -t 4.86304 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8601 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.86314 -s 0 -d 9 -p ack -e 40 -c 0 -i 8608 -a 0 -x {10.0 9.0 4299 ------- null} - -t 4.86314 -s 0 -d 9 -p ack -e 40 -c 0 -i 8608 -a 0 -x {10.0 9.0 4299 ------- null} h -t 4.86314 -s 0 -d 9 -p ack -e 40 -c 0 -i 8608 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.86323 -s 10 -d 7 -p ack -e 40 -c 0 -i 8612 -a 0 -x {10.0 9.0 4301 ------- null} + -t 4.86323 -s 7 -d 0 -p ack -e 40 -c 0 -i 8612 -a 0 -x {10.0 9.0 4301 ------- null} h -t 4.86323 -s 7 -d 8 -p ack -e 40 -c 0 -i 8612 -a 0 -x {10.0 9.0 4301 ------- null} r -t 4.86349 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8597 -a 0 -x {9.0 10.0 4303 ------- null} + -t 4.86349 -s 10 -d 7 -p ack -e 40 -c 0 -i 8616 -a 0 -x {10.0 9.0 4303 ------- null} - -t 4.86349 -s 10 -d 7 -p ack -e 40 -c 0 -i 8616 -a 0 -x {10.0 9.0 4303 ------- null} h -t 4.86349 -s 10 -d 7 -p ack -e 40 -c 0 -i 8616 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.8635 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8611 -a 0 -x {9.0 10.0 4310 ------- null} + -t 4.8635 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8611 -a 0 -x {9.0 10.0 4310 ------- null} h -t 4.8635 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8611 -a 0 -x {9.0 10.0 4310 ------- null} r -t 4.8641 -s 0 -d 9 -p ack -e 40 -c 0 -i 8606 -a 0 -x {10.0 9.0 4298 ------- null} + -t 4.8641 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8617 -a 0 -x {9.0 10.0 4313 ------- null} - -t 4.8641 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8617 -a 0 -x {9.0 10.0 4313 ------- null} h -t 4.8641 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8617 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.86413 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8603 -a 0 -x {9.0 10.0 4306 ------- null} - -t 4.86413 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8603 -a 0 -x {9.0 10.0 4306 ------- null} h -t 4.86413 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8603 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.8643 -s 0 -d 9 -p ack -e 40 -c 0 -i 8610 -a 0 -x {10.0 9.0 4300 ------- null} - -t 4.8643 -s 0 -d 9 -p ack -e 40 -c 0 -i 8610 -a 0 -x {10.0 9.0 4300 ------- null} h -t 4.8643 -s 0 -d 9 -p ack -e 40 -c 0 -i 8610 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.86443 -s 10 -d 7 -p ack -e 40 -c 0 -i 8614 -a 0 -x {10.0 9.0 4302 ------- null} + -t 4.86443 -s 7 -d 0 -p ack -e 40 -c 0 -i 8614 -a 0 -x {10.0 9.0 4302 ------- null} h -t 4.86443 -s 7 -d 8 -p ack -e 40 -c 0 -i 8614 -a 0 -x {10.0 9.0 4302 ------- null} r -t 4.86458 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8599 -a 0 -x {9.0 10.0 4304 ------- null} + -t 4.86458 -s 10 -d 7 -p ack -e 40 -c 0 -i 8618 -a 0 -x {10.0 9.0 4304 ------- null} - -t 4.86458 -s 10 -d 7 -p ack -e 40 -c 0 -i 8618 -a 0 -x {10.0 9.0 4304 ------- null} h -t 4.86458 -s 10 -d 7 -p ack -e 40 -c 0 -i 8618 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.86461 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8613 -a 0 -x {9.0 10.0 4311 ------- null} + -t 4.86461 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8613 -a 0 -x {9.0 10.0 4311 ------- null} h -t 4.86461 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8613 -a 0 -x {9.0 10.0 4311 ------- null} r -t 4.86517 -s 0 -d 9 -p ack -e 40 -c 0 -i 8608 -a 0 -x {10.0 9.0 4299 ------- null} + -t 4.86517 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8619 -a 0 -x {9.0 10.0 4314 ------- null} - -t 4.86517 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8619 -a 0 -x {9.0 10.0 4314 ------- null} h -t 4.86517 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8619 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.86522 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8605 -a 0 -x {9.0 10.0 4307 ------- null} - -t 4.86522 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8605 -a 0 -x {9.0 10.0 4307 ------- null} h -t 4.86522 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8605 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.8655 -s 0 -d 9 -p ack -e 40 -c 0 -i 8612 -a 0 -x {10.0 9.0 4301 ------- null} - -t 4.8655 -s 0 -d 9 -p ack -e 40 -c 0 -i 8612 -a 0 -x {10.0 9.0 4301 ------- null} h -t 4.8655 -s 0 -d 9 -p ack -e 40 -c 0 -i 8612 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.86552 -s 10 -d 7 -p ack -e 40 -c 0 -i 8616 -a 0 -x {10.0 9.0 4303 ------- null} + -t 4.86552 -s 7 -d 0 -p ack -e 40 -c 0 -i 8616 -a 0 -x {10.0 9.0 4303 ------- null} h -t 4.86552 -s 7 -d 8 -p ack -e 40 -c 0 -i 8616 -a 0 -x {10.0 9.0 4303 ------- null} r -t 4.86563 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8615 -a 0 -x {9.0 10.0 4312 ------- null} + -t 4.86563 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8615 -a 0 -x {9.0 10.0 4312 ------- null} h -t 4.86563 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8615 -a 0 -x {9.0 10.0 4312 ------- null} r -t 4.86584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8601 -a 0 -x {9.0 10.0 4305 ------- null} + -t 4.86584 -s 10 -d 7 -p ack -e 40 -c 0 -i 8620 -a 0 -x {10.0 9.0 4305 ------- null} - -t 4.86584 -s 10 -d 7 -p ack -e 40 -c 0 -i 8620 -a 0 -x {10.0 9.0 4305 ------- null} h -t 4.86584 -s 10 -d 7 -p ack -e 40 -c 0 -i 8620 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.86634 -s 0 -d 9 -p ack -e 40 -c 0 -i 8610 -a 0 -x {10.0 9.0 4300 ------- null} + -t 4.86634 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8621 -a 0 -x {9.0 10.0 4315 ------- null} - -t 4.86634 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8621 -a 0 -x {9.0 10.0 4315 ------- null} h -t 4.86634 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8621 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.86635 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8607 -a 0 -x {9.0 10.0 4308 ------- null} - -t 4.86635 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8607 -a 0 -x {9.0 10.0 4308 ------- null} h -t 4.86635 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8607 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.86642 -s 0 -d 9 -p ack -e 40 -c 0 -i 8614 -a 0 -x {10.0 9.0 4302 ------- null} - -t 4.86642 -s 0 -d 9 -p ack -e 40 -c 0 -i 8614 -a 0 -x {10.0 9.0 4302 ------- null} h -t 4.86642 -s 0 -d 9 -p ack -e 40 -c 0 -i 8614 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.86661 -s 10 -d 7 -p ack -e 40 -c 0 -i 8618 -a 0 -x {10.0 9.0 4304 ------- null} + -t 4.86661 -s 7 -d 0 -p ack -e 40 -c 0 -i 8618 -a 0 -x {10.0 9.0 4304 ------- null} h -t 4.86661 -s 7 -d 8 -p ack -e 40 -c 0 -i 8618 -a 0 -x {10.0 9.0 4304 ------- null} r -t 4.8669 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8617 -a 0 -x {9.0 10.0 4313 ------- null} + -t 4.8669 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8617 -a 0 -x {9.0 10.0 4313 ------- null} h -t 4.8669 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8617 -a 0 -x {9.0 10.0 4313 ------- null} r -t 4.86693 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8603 -a 0 -x {9.0 10.0 4306 ------- null} + -t 4.86693 -s 10 -d 7 -p ack -e 40 -c 0 -i 8622 -a 0 -x {10.0 9.0 4306 ------- null} - -t 4.86693 -s 10 -d 7 -p ack -e 40 -c 0 -i 8622 -a 0 -x {10.0 9.0 4306 ------- null} h -t 4.86693 -s 10 -d 7 -p ack -e 40 -c 0 -i 8622 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.86744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8609 -a 0 -x {9.0 10.0 4309 ------- null} - -t 4.86744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8609 -a 0 -x {9.0 10.0 4309 ------- null} h -t 4.86744 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8609 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.86754 -s 0 -d 9 -p ack -e 40 -c 0 -i 8612 -a 0 -x {10.0 9.0 4301 ------- null} + -t 4.86754 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8623 -a 0 -x {9.0 10.0 4316 ------- null} - -t 4.86754 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8623 -a 0 -x {9.0 10.0 4316 ------- null} h -t 4.86754 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8623 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.8676 -s 0 -d 9 -p ack -e 40 -c 0 -i 8616 -a 0 -x {10.0 9.0 4303 ------- null} - -t 4.8676 -s 0 -d 9 -p ack -e 40 -c 0 -i 8616 -a 0 -x {10.0 9.0 4303 ------- null} h -t 4.8676 -s 0 -d 9 -p ack -e 40 -c 0 -i 8616 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.86787 -s 10 -d 7 -p ack -e 40 -c 0 -i 8620 -a 0 -x {10.0 9.0 4305 ------- null} + -t 4.86787 -s 7 -d 0 -p ack -e 40 -c 0 -i 8620 -a 0 -x {10.0 9.0 4305 ------- null} h -t 4.86787 -s 7 -d 8 -p ack -e 40 -c 0 -i 8620 -a 0 -x {10.0 9.0 4305 ------- null} r -t 4.86797 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8619 -a 0 -x {9.0 10.0 4314 ------- null} + -t 4.86797 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8619 -a 0 -x {9.0 10.0 4314 ------- null} h -t 4.86797 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8619 -a 0 -x {9.0 10.0 4314 ------- null} r -t 4.86802 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8605 -a 0 -x {9.0 10.0 4307 ------- null} + -t 4.86802 -s 10 -d 7 -p ack -e 40 -c 0 -i 8624 -a 0 -x {10.0 9.0 4307 ------- null} - -t 4.86802 -s 10 -d 7 -p ack -e 40 -c 0 -i 8624 -a 0 -x {10.0 9.0 4307 ------- null} h -t 4.86802 -s 10 -d 7 -p ack -e 40 -c 0 -i 8624 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.86845 -s 0 -d 9 -p ack -e 40 -c 0 -i 8614 -a 0 -x {10.0 9.0 4302 ------- null} + -t 4.86845 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8625 -a 0 -x {9.0 10.0 4317 ------- null} - -t 4.86845 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8625 -a 0 -x {9.0 10.0 4317 ------- null} h -t 4.86845 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8625 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.86853 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8611 -a 0 -x {9.0 10.0 4310 ------- null} - -t 4.86853 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8611 -a 0 -x {9.0 10.0 4310 ------- null} h -t 4.86853 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8611 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.86883 -s 0 -d 9 -p ack -e 40 -c 0 -i 8618 -a 0 -x {10.0 9.0 4304 ------- null} - -t 4.86883 -s 0 -d 9 -p ack -e 40 -c 0 -i 8618 -a 0 -x {10.0 9.0 4304 ------- null} h -t 4.86883 -s 0 -d 9 -p ack -e 40 -c 0 -i 8618 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.86896 -s 10 -d 7 -p ack -e 40 -c 0 -i 8622 -a 0 -x {10.0 9.0 4306 ------- null} + -t 4.86896 -s 7 -d 0 -p ack -e 40 -c 0 -i 8622 -a 0 -x {10.0 9.0 4306 ------- null} h -t 4.86896 -s 7 -d 8 -p ack -e 40 -c 0 -i 8622 -a 0 -x {10.0 9.0 4306 ------- null} r -t 4.86914 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8621 -a 0 -x {9.0 10.0 4315 ------- null} + -t 4.86914 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8621 -a 0 -x {9.0 10.0 4315 ------- null} h -t 4.86914 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8621 -a 0 -x {9.0 10.0 4315 ------- null} r -t 4.86915 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8607 -a 0 -x {9.0 10.0 4308 ------- null} + -t 4.86915 -s 10 -d 7 -p ack -e 40 -c 0 -i 8626 -a 0 -x {10.0 9.0 4308 ------- null} - -t 4.86915 -s 10 -d 7 -p ack -e 40 -c 0 -i 8626 -a 0 -x {10.0 9.0 4308 ------- null} h -t 4.86915 -s 10 -d 7 -p ack -e 40 -c 0 -i 8626 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.86963 -s 0 -d 9 -p ack -e 40 -c 0 -i 8616 -a 0 -x {10.0 9.0 4303 ------- null} + -t 4.86963 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8627 -a 0 -x {9.0 10.0 4318 ------- null} - -t 4.86963 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8627 -a 0 -x {9.0 10.0 4318 ------- null} h -t 4.86963 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8627 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.86976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8613 -a 0 -x {9.0 10.0 4311 ------- null} - -t 4.86976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8613 -a 0 -x {9.0 10.0 4311 ------- null} h -t 4.86976 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8613 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.86982 -s 0 -d 9 -p ack -e 40 -c 0 -i 8620 -a 0 -x {10.0 9.0 4305 ------- null} - -t 4.86982 -s 0 -d 9 -p ack -e 40 -c 0 -i 8620 -a 0 -x {10.0 9.0 4305 ------- null} h -t 4.86982 -s 0 -d 9 -p ack -e 40 -c 0 -i 8620 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.87005 -s 10 -d 7 -p ack -e 40 -c 0 -i 8624 -a 0 -x {10.0 9.0 4307 ------- null} + -t 4.87005 -s 7 -d 0 -p ack -e 40 -c 0 -i 8624 -a 0 -x {10.0 9.0 4307 ------- null} h -t 4.87005 -s 7 -d 8 -p ack -e 40 -c 0 -i 8624 -a 0 -x {10.0 9.0 4307 ------- null} r -t 4.87024 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8609 -a 0 -x {9.0 10.0 4309 ------- null} + -t 4.87024 -s 10 -d 7 -p ack -e 40 -c 0 -i 8628 -a 0 -x {10.0 9.0 4309 ------- null} - -t 4.87024 -s 10 -d 7 -p ack -e 40 -c 0 -i 8628 -a 0 -x {10.0 9.0 4309 ------- null} h -t 4.87024 -s 10 -d 7 -p ack -e 40 -c 0 -i 8628 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.87034 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8623 -a 0 -x {9.0 10.0 4316 ------- null} + -t 4.87034 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8623 -a 0 -x {9.0 10.0 4316 ------- null} h -t 4.87034 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8623 -a 0 -x {9.0 10.0 4316 ------- null} + -t 4.87085 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8615 -a 0 -x {9.0 10.0 4312 ------- null} - -t 4.87085 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8615 -a 0 -x {9.0 10.0 4312 ------- null} h -t 4.87085 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8615 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.87086 -s 0 -d 9 -p ack -e 40 -c 0 -i 8618 -a 0 -x {10.0 9.0 4304 ------- null} + -t 4.87086 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8629 -a 0 -x {9.0 10.0 4319 ------- null} - -t 4.87086 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8629 -a 0 -x {9.0 10.0 4319 ------- null} h -t 4.87086 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8629 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.87094 -s 0 -d 9 -p ack -e 40 -c 0 -i 8622 -a 0 -x {10.0 9.0 4306 ------- null} - -t 4.87094 -s 0 -d 9 -p ack -e 40 -c 0 -i 8622 -a 0 -x {10.0 9.0 4306 ------- null} h -t 4.87094 -s 0 -d 9 -p ack -e 40 -c 0 -i 8622 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.87118 -s 10 -d 7 -p ack -e 40 -c 0 -i 8626 -a 0 -x {10.0 9.0 4308 ------- null} + -t 4.87118 -s 7 -d 0 -p ack -e 40 -c 0 -i 8626 -a 0 -x {10.0 9.0 4308 ------- null} h -t 4.87118 -s 7 -d 8 -p ack -e 40 -c 0 -i 8626 -a 0 -x {10.0 9.0 4308 ------- null} r -t 4.87125 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8625 -a 0 -x {9.0 10.0 4317 ------- null} + -t 4.87125 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8625 -a 0 -x {9.0 10.0 4317 ------- null} h -t 4.87125 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8625 -a 0 -x {9.0 10.0 4317 ------- null} r -t 4.87133 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8611 -a 0 -x {9.0 10.0 4310 ------- null} + -t 4.87133 -s 10 -d 7 -p ack -e 40 -c 0 -i 8630 -a 0 -x {10.0 9.0 4310 ------- null} - -t 4.87133 -s 10 -d 7 -p ack -e 40 -c 0 -i 8630 -a 0 -x {10.0 9.0 4310 ------- null} h -t 4.87133 -s 10 -d 7 -p ack -e 40 -c 0 -i 8630 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.87186 -s 0 -d 9 -p ack -e 40 -c 0 -i 8620 -a 0 -x {10.0 9.0 4305 ------- null} + -t 4.87186 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8631 -a 0 -x {9.0 10.0 4320 ------- null} - -t 4.87186 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8631 -a 0 -x {9.0 10.0 4320 ------- null} h -t 4.87186 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8631 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.87194 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8617 -a 0 -x {9.0 10.0 4313 ------- null} - -t 4.87194 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8617 -a 0 -x {9.0 10.0 4313 ------- null} h -t 4.87194 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8617 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.87203 -s 0 -d 9 -p ack -e 40 -c 0 -i 8624 -a 0 -x {10.0 9.0 4307 ------- null} - -t 4.87203 -s 0 -d 9 -p ack -e 40 -c 0 -i 8624 -a 0 -x {10.0 9.0 4307 ------- null} h -t 4.87203 -s 0 -d 9 -p ack -e 40 -c 0 -i 8624 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.87227 -s 10 -d 7 -p ack -e 40 -c 0 -i 8628 -a 0 -x {10.0 9.0 4309 ------- null} + -t 4.87227 -s 7 -d 0 -p ack -e 40 -c 0 -i 8628 -a 0 -x {10.0 9.0 4309 ------- null} h -t 4.87227 -s 7 -d 8 -p ack -e 40 -c 0 -i 8628 -a 0 -x {10.0 9.0 4309 ------- null} r -t 4.87243 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8627 -a 0 -x {9.0 10.0 4318 ------- null} + -t 4.87243 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8627 -a 0 -x {9.0 10.0 4318 ------- null} h -t 4.87243 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8627 -a 0 -x {9.0 10.0 4318 ------- null} r -t 4.87256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8613 -a 0 -x {9.0 10.0 4311 ------- null} + -t 4.87256 -s 10 -d 7 -p ack -e 40 -c 0 -i 8632 -a 0 -x {10.0 9.0 4311 ------- null} - -t 4.87256 -s 10 -d 7 -p ack -e 40 -c 0 -i 8632 -a 0 -x {10.0 9.0 4311 ------- null} h -t 4.87256 -s 10 -d 7 -p ack -e 40 -c 0 -i 8632 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.87298 -s 0 -d 9 -p ack -e 40 -c 0 -i 8622 -a 0 -x {10.0 9.0 4306 ------- null} + -t 4.87298 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8633 -a 0 -x {9.0 10.0 4321 ------- null} - -t 4.87298 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8633 -a 0 -x {9.0 10.0 4321 ------- null} h -t 4.87298 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8633 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.87302 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8619 -a 0 -x {9.0 10.0 4314 ------- null} - -t 4.87302 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8619 -a 0 -x {9.0 10.0 4314 ------- null} h -t 4.87302 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8619 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.8733 -s 0 -d 9 -p ack -e 40 -c 0 -i 8626 -a 0 -x {10.0 9.0 4308 ------- null} - -t 4.8733 -s 0 -d 9 -p ack -e 40 -c 0 -i 8626 -a 0 -x {10.0 9.0 4308 ------- null} h -t 4.8733 -s 0 -d 9 -p ack -e 40 -c 0 -i 8626 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.87336 -s 10 -d 7 -p ack -e 40 -c 0 -i 8630 -a 0 -x {10.0 9.0 4310 ------- null} + -t 4.87336 -s 7 -d 0 -p ack -e 40 -c 0 -i 8630 -a 0 -x {10.0 9.0 4310 ------- null} h -t 4.87336 -s 7 -d 8 -p ack -e 40 -c 0 -i 8630 -a 0 -x {10.0 9.0 4310 ------- null} r -t 4.87365 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8615 -a 0 -x {9.0 10.0 4312 ------- null} + -t 4.87365 -s 10 -d 7 -p ack -e 40 -c 0 -i 8634 -a 0 -x {10.0 9.0 4312 ------- null} - -t 4.87365 -s 10 -d 7 -p ack -e 40 -c 0 -i 8634 -a 0 -x {10.0 9.0 4312 ------- null} h -t 4.87365 -s 10 -d 7 -p ack -e 40 -c 0 -i 8634 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.87366 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8629 -a 0 -x {9.0 10.0 4319 ------- null} + -t 4.87366 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8629 -a 0 -x {9.0 10.0 4319 ------- null} h -t 4.87366 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8629 -a 0 -x {9.0 10.0 4319 ------- null} r -t 4.87406 -s 0 -d 9 -p ack -e 40 -c 0 -i 8624 -a 0 -x {10.0 9.0 4307 ------- null} + -t 4.87406 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8635 -a 0 -x {9.0 10.0 4322 ------- null} - -t 4.87406 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8635 -a 0 -x {9.0 10.0 4322 ------- null} h -t 4.87406 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8635 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.87426 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8621 -a 0 -x {9.0 10.0 4315 ------- null} - -t 4.87426 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8621 -a 0 -x {9.0 10.0 4315 ------- null} h -t 4.87426 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8621 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.87446 -s 0 -d 9 -p ack -e 40 -c 0 -i 8628 -a 0 -x {10.0 9.0 4309 ------- null} - -t 4.87446 -s 0 -d 9 -p ack -e 40 -c 0 -i 8628 -a 0 -x {10.0 9.0 4309 ------- null} h -t 4.87446 -s 0 -d 9 -p ack -e 40 -c 0 -i 8628 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.87459 -s 10 -d 7 -p ack -e 40 -c 0 -i 8632 -a 0 -x {10.0 9.0 4311 ------- null} + -t 4.87459 -s 7 -d 0 -p ack -e 40 -c 0 -i 8632 -a 0 -x {10.0 9.0 4311 ------- null} h -t 4.87459 -s 7 -d 8 -p ack -e 40 -c 0 -i 8632 -a 0 -x {10.0 9.0 4311 ------- null} r -t 4.87466 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8631 -a 0 -x {9.0 10.0 4320 ------- null} + -t 4.87466 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8631 -a 0 -x {9.0 10.0 4320 ------- null} h -t 4.87466 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8631 -a 0 -x {9.0 10.0 4320 ------- null} r -t 4.87474 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8617 -a 0 -x {9.0 10.0 4313 ------- null} + -t 4.87474 -s 10 -d 7 -p ack -e 40 -c 0 -i 8636 -a 0 -x {10.0 9.0 4313 ------- null} - -t 4.87474 -s 10 -d 7 -p ack -e 40 -c 0 -i 8636 -a 0 -x {10.0 9.0 4313 ------- null} h -t 4.87474 -s 10 -d 7 -p ack -e 40 -c 0 -i 8636 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.87533 -s 0 -d 9 -p ack -e 40 -c 0 -i 8626 -a 0 -x {10.0 9.0 4308 ------- null} + -t 4.87533 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8637 -a 0 -x {9.0 10.0 4323 ------- null} - -t 4.87533 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8637 -a 0 -x {9.0 10.0 4323 ------- null} h -t 4.87533 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8637 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.87534 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8623 -a 0 -x {9.0 10.0 4316 ------- null} - -t 4.87534 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8623 -a 0 -x {9.0 10.0 4316 ------- null} h -t 4.87534 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8623 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.87546 -s 0 -d 9 -p ack -e 40 -c 0 -i 8630 -a 0 -x {10.0 9.0 4310 ------- null} - -t 4.87546 -s 0 -d 9 -p ack -e 40 -c 0 -i 8630 -a 0 -x {10.0 9.0 4310 ------- null} h -t 4.87546 -s 0 -d 9 -p ack -e 40 -c 0 -i 8630 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.87568 -s 10 -d 7 -p ack -e 40 -c 0 -i 8634 -a 0 -x {10.0 9.0 4312 ------- null} + -t 4.87568 -s 7 -d 0 -p ack -e 40 -c 0 -i 8634 -a 0 -x {10.0 9.0 4312 ------- null} h -t 4.87568 -s 7 -d 8 -p ack -e 40 -c 0 -i 8634 -a 0 -x {10.0 9.0 4312 ------- null} r -t 4.87578 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8633 -a 0 -x {9.0 10.0 4321 ------- null} + -t 4.87578 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8633 -a 0 -x {9.0 10.0 4321 ------- null} h -t 4.87578 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8633 -a 0 -x {9.0 10.0 4321 ------- null} r -t 4.87582 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8619 -a 0 -x {9.0 10.0 4314 ------- null} + -t 4.87582 -s 10 -d 7 -p ack -e 40 -c 0 -i 8638 -a 0 -x {10.0 9.0 4314 ------- null} - -t 4.87582 -s 10 -d 7 -p ack -e 40 -c 0 -i 8638 -a 0 -x {10.0 9.0 4314 ------- null} h -t 4.87582 -s 10 -d 7 -p ack -e 40 -c 0 -i 8638 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.87643 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8625 -a 0 -x {9.0 10.0 4317 ------- null} - -t 4.87643 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8625 -a 0 -x {9.0 10.0 4317 ------- null} h -t 4.87643 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8625 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.8765 -s 0 -d 9 -p ack -e 40 -c 0 -i 8628 -a 0 -x {10.0 9.0 4309 ------- null} + -t 4.8765 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8639 -a 0 -x {9.0 10.0 4324 ------- null} - -t 4.8765 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8639 -a 0 -x {9.0 10.0 4324 ------- null} h -t 4.8765 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8639 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.87659 -s 0 -d 9 -p ack -e 40 -c 0 -i 8632 -a 0 -x {10.0 9.0 4311 ------- null} - -t 4.87659 -s 0 -d 9 -p ack -e 40 -c 0 -i 8632 -a 0 -x {10.0 9.0 4311 ------- null} h -t 4.87659 -s 0 -d 9 -p ack -e 40 -c 0 -i 8632 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.87677 -s 10 -d 7 -p ack -e 40 -c 0 -i 8636 -a 0 -x {10.0 9.0 4313 ------- null} + -t 4.87677 -s 7 -d 0 -p ack -e 40 -c 0 -i 8636 -a 0 -x {10.0 9.0 4313 ------- null} h -t 4.87677 -s 7 -d 8 -p ack -e 40 -c 0 -i 8636 -a 0 -x {10.0 9.0 4313 ------- null} r -t 4.87686 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8635 -a 0 -x {9.0 10.0 4322 ------- null} + -t 4.87686 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8635 -a 0 -x {9.0 10.0 4322 ------- null} h -t 4.87686 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8635 -a 0 -x {9.0 10.0 4322 ------- null} r -t 4.87706 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8621 -a 0 -x {9.0 10.0 4315 ------- null} + -t 4.87706 -s 10 -d 7 -p ack -e 40 -c 0 -i 8640 -a 0 -x {10.0 9.0 4315 ------- null} - -t 4.87706 -s 10 -d 7 -p ack -e 40 -c 0 -i 8640 -a 0 -x {10.0 9.0 4315 ------- null} h -t 4.87706 -s 10 -d 7 -p ack -e 40 -c 0 -i 8640 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.87749 -s 0 -d 9 -p ack -e 40 -c 0 -i 8630 -a 0 -x {10.0 9.0 4310 ------- null} + -t 4.87749 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8641 -a 0 -x {9.0 10.0 4325 ------- null} - -t 4.87749 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8641 -a 0 -x {9.0 10.0 4325 ------- null} h -t 4.87749 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8641 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.87752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8627 -a 0 -x {9.0 10.0 4318 ------- null} - -t 4.87752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8627 -a 0 -x {9.0 10.0 4318 ------- null} h -t 4.87752 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8627 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.87773 -s 0 -d 9 -p ack -e 40 -c 0 -i 8634 -a 0 -x {10.0 9.0 4312 ------- null} - -t 4.87773 -s 0 -d 9 -p ack -e 40 -c 0 -i 8634 -a 0 -x {10.0 9.0 4312 ------- null} h -t 4.87773 -s 0 -d 9 -p ack -e 40 -c 0 -i 8634 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.87786 -s 10 -d 7 -p ack -e 40 -c 0 -i 8638 -a 0 -x {10.0 9.0 4314 ------- null} + -t 4.87786 -s 7 -d 0 -p ack -e 40 -c 0 -i 8638 -a 0 -x {10.0 9.0 4314 ------- null} h -t 4.87786 -s 7 -d 8 -p ack -e 40 -c 0 -i 8638 -a 0 -x {10.0 9.0 4314 ------- null} r -t 4.87813 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8637 -a 0 -x {9.0 10.0 4323 ------- null} + -t 4.87813 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8637 -a 0 -x {9.0 10.0 4323 ------- null} h -t 4.87813 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8637 -a 0 -x {9.0 10.0 4323 ------- null} r -t 4.87814 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8623 -a 0 -x {9.0 10.0 4316 ------- null} + -t 4.87814 -s 10 -d 7 -p ack -e 40 -c 0 -i 8642 -a 0 -x {10.0 9.0 4316 ------- null} - -t 4.87814 -s 10 -d 7 -p ack -e 40 -c 0 -i 8642 -a 0 -x {10.0 9.0 4316 ------- null} h -t 4.87814 -s 10 -d 7 -p ack -e 40 -c 0 -i 8642 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.87861 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8629 -a 0 -x {9.0 10.0 4319 ------- null} - -t 4.87861 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8629 -a 0 -x {9.0 10.0 4319 ------- null} h -t 4.87861 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8629 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.87862 -s 0 -d 9 -p ack -e 40 -c 0 -i 8632 -a 0 -x {10.0 9.0 4311 ------- null} + -t 4.87862 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8643 -a 0 -x {9.0 10.0 4326 ------- null} - -t 4.87862 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8643 -a 0 -x {9.0 10.0 4326 ------- null} h -t 4.87862 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8643 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.87874 -s 0 -d 9 -p ack -e 40 -c 0 -i 8636 -a 0 -x {10.0 9.0 4313 ------- null} - -t 4.87874 -s 0 -d 9 -p ack -e 40 -c 0 -i 8636 -a 0 -x {10.0 9.0 4313 ------- null} h -t 4.87874 -s 0 -d 9 -p ack -e 40 -c 0 -i 8636 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.87909 -s 10 -d 7 -p ack -e 40 -c 0 -i 8640 -a 0 -x {10.0 9.0 4315 ------- null} + -t 4.87909 -s 7 -d 0 -p ack -e 40 -c 0 -i 8640 -a 0 -x {10.0 9.0 4315 ------- null} h -t 4.87909 -s 7 -d 8 -p ack -e 40 -c 0 -i 8640 -a 0 -x {10.0 9.0 4315 ------- null} r -t 4.87923 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8625 -a 0 -x {9.0 10.0 4317 ------- null} + -t 4.87923 -s 10 -d 7 -p ack -e 40 -c 0 -i 8644 -a 0 -x {10.0 9.0 4317 ------- null} - -t 4.87923 -s 10 -d 7 -p ack -e 40 -c 0 -i 8644 -a 0 -x {10.0 9.0 4317 ------- null} h -t 4.87923 -s 10 -d 7 -p ack -e 40 -c 0 -i 8644 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.8793 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8639 -a 0 -x {9.0 10.0 4324 ------- null} + -t 4.8793 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8639 -a 0 -x {9.0 10.0 4324 ------- null} h -t 4.8793 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8639 -a 0 -x {9.0 10.0 4324 ------- null} + -t 4.8797 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8631 -a 0 -x {9.0 10.0 4320 ------- null} - -t 4.8797 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8631 -a 0 -x {9.0 10.0 4320 ------- null} h -t 4.8797 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8631 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.87976 -s 0 -d 9 -p ack -e 40 -c 0 -i 8634 -a 0 -x {10.0 9.0 4312 ------- null} + -t 4.87976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8645 -a 0 -x {9.0 10.0 4327 ------- null} - -t 4.87976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8645 -a 0 -x {9.0 10.0 4327 ------- null} h -t 4.87976 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8645 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.87978 -s 0 -d 9 -p ack -e 40 -c 0 -i 8638 -a 0 -x {10.0 9.0 4314 ------- null} - -t 4.87978 -s 0 -d 9 -p ack -e 40 -c 0 -i 8638 -a 0 -x {10.0 9.0 4314 ------- null} h -t 4.87978 -s 0 -d 9 -p ack -e 40 -c 0 -i 8638 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.88018 -s 10 -d 7 -p ack -e 40 -c 0 -i 8642 -a 0 -x {10.0 9.0 4316 ------- null} + -t 4.88018 -s 7 -d 0 -p ack -e 40 -c 0 -i 8642 -a 0 -x {10.0 9.0 4316 ------- null} h -t 4.88018 -s 7 -d 8 -p ack -e 40 -c 0 -i 8642 -a 0 -x {10.0 9.0 4316 ------- null} r -t 4.88029 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8641 -a 0 -x {9.0 10.0 4325 ------- null} + -t 4.88029 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8641 -a 0 -x {9.0 10.0 4325 ------- null} h -t 4.88029 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8641 -a 0 -x {9.0 10.0 4325 ------- null} r -t 4.88032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8627 -a 0 -x {9.0 10.0 4318 ------- null} + -t 4.88032 -s 10 -d 7 -p ack -e 40 -c 0 -i 8646 -a 0 -x {10.0 9.0 4318 ------- null} - -t 4.88032 -s 10 -d 7 -p ack -e 40 -c 0 -i 8646 -a 0 -x {10.0 9.0 4318 ------- null} h -t 4.88032 -s 10 -d 7 -p ack -e 40 -c 0 -i 8646 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.88077 -s 0 -d 9 -p ack -e 40 -c 0 -i 8636 -a 0 -x {10.0 9.0 4313 ------- null} + -t 4.88077 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8647 -a 0 -x {9.0 10.0 4328 ------- null} - -t 4.88077 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8647 -a 0 -x {9.0 10.0 4328 ------- null} h -t 4.88077 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8647 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.88078 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8633 -a 0 -x {9.0 10.0 4321 ------- null} - -t 4.88078 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8633 -a 0 -x {9.0 10.0 4321 ------- null} h -t 4.88078 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8633 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.88091 -s 0 -d 9 -p ack -e 40 -c 0 -i 8640 -a 0 -x {10.0 9.0 4315 ------- null} - -t 4.88091 -s 0 -d 9 -p ack -e 40 -c 0 -i 8640 -a 0 -x {10.0 9.0 4315 ------- null} h -t 4.88091 -s 0 -d 9 -p ack -e 40 -c 0 -i 8640 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.88126 -s 10 -d 7 -p ack -e 40 -c 0 -i 8644 -a 0 -x {10.0 9.0 4317 ------- null} + -t 4.88126 -s 7 -d 0 -p ack -e 40 -c 0 -i 8644 -a 0 -x {10.0 9.0 4317 ------- null} h -t 4.88126 -s 7 -d 8 -p ack -e 40 -c 0 -i 8644 -a 0 -x {10.0 9.0 4317 ------- null} r -t 4.88141 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8629 -a 0 -x {9.0 10.0 4319 ------- null} + -t 4.88141 -s 10 -d 7 -p ack -e 40 -c 0 -i 8648 -a 0 -x {10.0 9.0 4319 ------- null} - -t 4.88141 -s 10 -d 7 -p ack -e 40 -c 0 -i 8648 -a 0 -x {10.0 9.0 4319 ------- null} h -t 4.88141 -s 10 -d 7 -p ack -e 40 -c 0 -i 8648 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.88142 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8643 -a 0 -x {9.0 10.0 4326 ------- null} + -t 4.88142 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8643 -a 0 -x {9.0 10.0 4326 ------- null} h -t 4.88142 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8643 -a 0 -x {9.0 10.0 4326 ------- null} r -t 4.88181 -s 0 -d 9 -p ack -e 40 -c 0 -i 8638 -a 0 -x {10.0 9.0 4314 ------- null} + -t 4.88181 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8649 -a 0 -x {9.0 10.0 4329 ------- null} - -t 4.88181 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8649 -a 0 -x {9.0 10.0 4329 ------- null} h -t 4.88181 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8649 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.88187 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8635 -a 0 -x {9.0 10.0 4322 ------- null} - -t 4.88187 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8635 -a 0 -x {9.0 10.0 4322 ------- null} h -t 4.88187 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8635 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.88202 -s 0 -d 9 -p ack -e 40 -c 0 -i 8642 -a 0 -x {10.0 9.0 4316 ------- null} - -t 4.88202 -s 0 -d 9 -p ack -e 40 -c 0 -i 8642 -a 0 -x {10.0 9.0 4316 ------- null} h -t 4.88202 -s 0 -d 9 -p ack -e 40 -c 0 -i 8642 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.88235 -s 10 -d 7 -p ack -e 40 -c 0 -i 8646 -a 0 -x {10.0 9.0 4318 ------- null} + -t 4.88235 -s 7 -d 0 -p ack -e 40 -c 0 -i 8646 -a 0 -x {10.0 9.0 4318 ------- null} h -t 4.88235 -s 7 -d 8 -p ack -e 40 -c 0 -i 8646 -a 0 -x {10.0 9.0 4318 ------- null} r -t 4.8825 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8631 -a 0 -x {9.0 10.0 4320 ------- null} + -t 4.8825 -s 10 -d 7 -p ack -e 40 -c 0 -i 8650 -a 0 -x {10.0 9.0 4320 ------- null} - -t 4.8825 -s 10 -d 7 -p ack -e 40 -c 0 -i 8650 -a 0 -x {10.0 9.0 4320 ------- null} h -t 4.8825 -s 10 -d 7 -p ack -e 40 -c 0 -i 8650 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.88256 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8645 -a 0 -x {9.0 10.0 4327 ------- null} + -t 4.88256 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8645 -a 0 -x {9.0 10.0 4327 ------- null} h -t 4.88256 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8645 -a 0 -x {9.0 10.0 4327 ------- null} r -t 4.88294 -s 0 -d 9 -p ack -e 40 -c 0 -i 8640 -a 0 -x {10.0 9.0 4315 ------- null} + -t 4.88294 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8651 -a 0 -x {9.0 10.0 4330 ------- null} - -t 4.88294 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8651 -a 0 -x {9.0 10.0 4330 ------- null} h -t 4.88294 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8651 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.88296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8637 -a 0 -x {9.0 10.0 4323 ------- null} - -t 4.88296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8637 -a 0 -x {9.0 10.0 4323 ------- null} h -t 4.88296 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8637 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.88302 -s 0 -d 9 -p ack -e 40 -c 0 -i 8644 -a 0 -x {10.0 9.0 4317 ------- null} - -t 4.88302 -s 0 -d 9 -p ack -e 40 -c 0 -i 8644 -a 0 -x {10.0 9.0 4317 ------- null} h -t 4.88302 -s 0 -d 9 -p ack -e 40 -c 0 -i 8644 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.88344 -s 10 -d 7 -p ack -e 40 -c 0 -i 8648 -a 0 -x {10.0 9.0 4319 ------- null} + -t 4.88344 -s 7 -d 0 -p ack -e 40 -c 0 -i 8648 -a 0 -x {10.0 9.0 4319 ------- null} h -t 4.88344 -s 7 -d 8 -p ack -e 40 -c 0 -i 8648 -a 0 -x {10.0 9.0 4319 ------- null} r -t 4.88357 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8647 -a 0 -x {9.0 10.0 4328 ------- null} + -t 4.88357 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8647 -a 0 -x {9.0 10.0 4328 ------- null} h -t 4.88357 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8647 -a 0 -x {9.0 10.0 4328 ------- null} r -t 4.88358 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8633 -a 0 -x {9.0 10.0 4321 ------- null} + -t 4.88358 -s 10 -d 7 -p ack -e 40 -c 0 -i 8652 -a 0 -x {10.0 9.0 4321 ------- null} - -t 4.88358 -s 10 -d 7 -p ack -e 40 -c 0 -i 8652 -a 0 -x {10.0 9.0 4321 ------- null} h -t 4.88358 -s 10 -d 7 -p ack -e 40 -c 0 -i 8652 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.88405 -s 0 -d 9 -p ack -e 40 -c 0 -i 8642 -a 0 -x {10.0 9.0 4316 ------- null} + -t 4.88405 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8653 -a 0 -x {9.0 10.0 4331 ------- null} - -t 4.88405 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8653 -a 0 -x {9.0 10.0 4331 ------- null} h -t 4.88405 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8653 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.88405 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8639 -a 0 -x {9.0 10.0 4324 ------- null} - -t 4.88405 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8639 -a 0 -x {9.0 10.0 4324 ------- null} h -t 4.88405 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8639 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.88429 -s 0 -d 9 -p ack -e 40 -c 0 -i 8646 -a 0 -x {10.0 9.0 4318 ------- null} - -t 4.88429 -s 0 -d 9 -p ack -e 40 -c 0 -i 8646 -a 0 -x {10.0 9.0 4318 ------- null} h -t 4.88429 -s 0 -d 9 -p ack -e 40 -c 0 -i 8646 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.88453 -s 10 -d 7 -p ack -e 40 -c 0 -i 8650 -a 0 -x {10.0 9.0 4320 ------- null} + -t 4.88453 -s 7 -d 0 -p ack -e 40 -c 0 -i 8650 -a 0 -x {10.0 9.0 4320 ------- null} h -t 4.88453 -s 7 -d 8 -p ack -e 40 -c 0 -i 8650 -a 0 -x {10.0 9.0 4320 ------- null} r -t 4.88461 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8649 -a 0 -x {9.0 10.0 4329 ------- null} + -t 4.88461 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8649 -a 0 -x {9.0 10.0 4329 ------- null} h -t 4.88461 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8649 -a 0 -x {9.0 10.0 4329 ------- null} r -t 4.88467 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8635 -a 0 -x {9.0 10.0 4322 ------- null} + -t 4.88467 -s 10 -d 7 -p ack -e 40 -c 0 -i 8654 -a 0 -x {10.0 9.0 4322 ------- null} - -t 4.88467 -s 10 -d 7 -p ack -e 40 -c 0 -i 8654 -a 0 -x {10.0 9.0 4322 ------- null} h -t 4.88467 -s 10 -d 7 -p ack -e 40 -c 0 -i 8654 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.88506 -s 0 -d 9 -p ack -e 40 -c 0 -i 8644 -a 0 -x {10.0 9.0 4317 ------- null} + -t 4.88506 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8655 -a 0 -x {9.0 10.0 4332 ------- null} - -t 4.88506 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8655 -a 0 -x {9.0 10.0 4332 ------- null} h -t 4.88506 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8655 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.88514 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8641 -a 0 -x {9.0 10.0 4325 ------- null} - -t 4.88514 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8641 -a 0 -x {9.0 10.0 4325 ------- null} h -t 4.88514 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8641 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.88538 -s 0 -d 9 -p ack -e 40 -c 0 -i 8648 -a 0 -x {10.0 9.0 4319 ------- null} - -t 4.88538 -s 0 -d 9 -p ack -e 40 -c 0 -i 8648 -a 0 -x {10.0 9.0 4319 ------- null} h -t 4.88538 -s 0 -d 9 -p ack -e 40 -c 0 -i 8648 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.88562 -s 10 -d 7 -p ack -e 40 -c 0 -i 8652 -a 0 -x {10.0 9.0 4321 ------- null} + -t 4.88562 -s 7 -d 0 -p ack -e 40 -c 0 -i 8652 -a 0 -x {10.0 9.0 4321 ------- null} h -t 4.88562 -s 7 -d 8 -p ack -e 40 -c 0 -i 8652 -a 0 -x {10.0 9.0 4321 ------- null} r -t 4.88574 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8651 -a 0 -x {9.0 10.0 4330 ------- null} + -t 4.88574 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8651 -a 0 -x {9.0 10.0 4330 ------- null} h -t 4.88574 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8651 -a 0 -x {9.0 10.0 4330 ------- null} r -t 4.88576 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8637 -a 0 -x {9.0 10.0 4323 ------- null} + -t 4.88576 -s 10 -d 7 -p ack -e 40 -c 0 -i 8656 -a 0 -x {10.0 9.0 4323 ------- null} - -t 4.88576 -s 10 -d 7 -p ack -e 40 -c 0 -i 8656 -a 0 -x {10.0 9.0 4323 ------- null} h -t 4.88576 -s 10 -d 7 -p ack -e 40 -c 0 -i 8656 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.88622 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8643 -a 0 -x {9.0 10.0 4326 ------- null} - -t 4.88622 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8643 -a 0 -x {9.0 10.0 4326 ------- null} h -t 4.88622 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8643 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.88632 -s 0 -d 9 -p ack -e 40 -c 0 -i 8646 -a 0 -x {10.0 9.0 4318 ------- null} + -t 4.88632 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8657 -a 0 -x {9.0 10.0 4333 ------- null} - -t 4.88632 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8657 -a 0 -x {9.0 10.0 4333 ------- null} h -t 4.88632 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8657 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.88648 -s 0 -d 9 -p ack -e 40 -c 0 -i 8650 -a 0 -x {10.0 9.0 4320 ------- null} - -t 4.88648 -s 0 -d 9 -p ack -e 40 -c 0 -i 8650 -a 0 -x {10.0 9.0 4320 ------- null} h -t 4.88648 -s 0 -d 9 -p ack -e 40 -c 0 -i 8650 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.8867 -s 10 -d 7 -p ack -e 40 -c 0 -i 8654 -a 0 -x {10.0 9.0 4322 ------- null} + -t 4.8867 -s 7 -d 0 -p ack -e 40 -c 0 -i 8654 -a 0 -x {10.0 9.0 4322 ------- null} h -t 4.8867 -s 7 -d 8 -p ack -e 40 -c 0 -i 8654 -a 0 -x {10.0 9.0 4322 ------- null} r -t 4.88685 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8653 -a 0 -x {9.0 10.0 4331 ------- null} + -t 4.88685 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8653 -a 0 -x {9.0 10.0 4331 ------- null} h -t 4.88685 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8653 -a 0 -x {9.0 10.0 4331 ------- null} r -t 4.88685 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8639 -a 0 -x {9.0 10.0 4324 ------- null} + -t 4.88685 -s 10 -d 7 -p ack -e 40 -c 0 -i 8658 -a 0 -x {10.0 9.0 4324 ------- null} - -t 4.88685 -s 10 -d 7 -p ack -e 40 -c 0 -i 8658 -a 0 -x {10.0 9.0 4324 ------- null} h -t 4.88685 -s 10 -d 7 -p ack -e 40 -c 0 -i 8658 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.88731 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8645 -a 0 -x {9.0 10.0 4327 ------- null} - -t 4.88731 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8645 -a 0 -x {9.0 10.0 4327 ------- null} h -t 4.88731 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8645 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.88741 -s 0 -d 9 -p ack -e 40 -c 0 -i 8648 -a 0 -x {10.0 9.0 4319 ------- null} + -t 4.88741 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8659 -a 0 -x {9.0 10.0 4334 ------- null} - -t 4.88741 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8659 -a 0 -x {9.0 10.0 4334 ------- null} h -t 4.88741 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8659 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.88746 -s 0 -d 9 -p ack -e 40 -c 0 -i 8652 -a 0 -x {10.0 9.0 4321 ------- null} - -t 4.88746 -s 0 -d 9 -p ack -e 40 -c 0 -i 8652 -a 0 -x {10.0 9.0 4321 ------- null} h -t 4.88746 -s 0 -d 9 -p ack -e 40 -c 0 -i 8652 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.88779 -s 10 -d 7 -p ack -e 40 -c 0 -i 8656 -a 0 -x {10.0 9.0 4323 ------- null} + -t 4.88779 -s 7 -d 0 -p ack -e 40 -c 0 -i 8656 -a 0 -x {10.0 9.0 4323 ------- null} h -t 4.88779 -s 7 -d 8 -p ack -e 40 -c 0 -i 8656 -a 0 -x {10.0 9.0 4323 ------- null} r -t 4.88786 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8655 -a 0 -x {9.0 10.0 4332 ------- null} + -t 4.88786 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8655 -a 0 -x {9.0 10.0 4332 ------- null} h -t 4.88786 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8655 -a 0 -x {9.0 10.0 4332 ------- null} r -t 4.88794 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8641 -a 0 -x {9.0 10.0 4325 ------- null} + -t 4.88794 -s 10 -d 7 -p ack -e 40 -c 0 -i 8660 -a 0 -x {10.0 9.0 4325 ------- null} - -t 4.88794 -s 10 -d 7 -p ack -e 40 -c 0 -i 8660 -a 0 -x {10.0 9.0 4325 ------- null} h -t 4.88794 -s 10 -d 7 -p ack -e 40 -c 0 -i 8660 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.8884 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8647 -a 0 -x {9.0 10.0 4328 ------- null} - -t 4.8884 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8647 -a 0 -x {9.0 10.0 4328 ------- null} h -t 4.8884 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8647 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.88851 -s 0 -d 9 -p ack -e 40 -c 0 -i 8650 -a 0 -x {10.0 9.0 4320 ------- null} + -t 4.88851 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8661 -a 0 -x {9.0 10.0 4335 ------- null} - -t 4.88851 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8661 -a 0 -x {9.0 10.0 4335 ------- null} h -t 4.88851 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8661 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.88867 -s 0 -d 9 -p ack -e 40 -c 0 -i 8654 -a 0 -x {10.0 9.0 4322 ------- null} - -t 4.88867 -s 0 -d 9 -p ack -e 40 -c 0 -i 8654 -a 0 -x {10.0 9.0 4322 ------- null} h -t 4.88867 -s 0 -d 9 -p ack -e 40 -c 0 -i 8654 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.88888 -s 10 -d 7 -p ack -e 40 -c 0 -i 8658 -a 0 -x {10.0 9.0 4324 ------- null} + -t 4.88888 -s 7 -d 0 -p ack -e 40 -c 0 -i 8658 -a 0 -x {10.0 9.0 4324 ------- null} h -t 4.88888 -s 7 -d 8 -p ack -e 40 -c 0 -i 8658 -a 0 -x {10.0 9.0 4324 ------- null} r -t 4.88902 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8643 -a 0 -x {9.0 10.0 4326 ------- null} + -t 4.88902 -s 10 -d 7 -p ack -e 40 -c 0 -i 8662 -a 0 -x {10.0 9.0 4326 ------- null} - -t 4.88902 -s 10 -d 7 -p ack -e 40 -c 0 -i 8662 -a 0 -x {10.0 9.0 4326 ------- null} h -t 4.88902 -s 10 -d 7 -p ack -e 40 -c 0 -i 8662 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.88912 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8657 -a 0 -x {9.0 10.0 4333 ------- null} + -t 4.88912 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8657 -a 0 -x {9.0 10.0 4333 ------- null} h -t 4.88912 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8657 -a 0 -x {9.0 10.0 4333 ------- null} r -t 4.88949 -s 0 -d 9 -p ack -e 40 -c 0 -i 8652 -a 0 -x {10.0 9.0 4321 ------- null} + -t 4.88949 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8663 -a 0 -x {9.0 10.0 4336 ------- null} - -t 4.88949 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8663 -a 0 -x {9.0 10.0 4336 ------- null} h -t 4.88949 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8663 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.8895 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8649 -a 0 -x {9.0 10.0 4329 ------- null} - -t 4.8895 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8649 -a 0 -x {9.0 10.0 4329 ------- null} h -t 4.8895 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8649 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.88971 -s 0 -d 9 -p ack -e 40 -c 0 -i 8656 -a 0 -x {10.0 9.0 4323 ------- null} - -t 4.88971 -s 0 -d 9 -p ack -e 40 -c 0 -i 8656 -a 0 -x {10.0 9.0 4323 ------- null} h -t 4.88971 -s 0 -d 9 -p ack -e 40 -c 0 -i 8656 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.88997 -s 10 -d 7 -p ack -e 40 -c 0 -i 8660 -a 0 -x {10.0 9.0 4325 ------- null} + -t 4.88997 -s 7 -d 0 -p ack -e 40 -c 0 -i 8660 -a 0 -x {10.0 9.0 4325 ------- null} h -t 4.88997 -s 7 -d 8 -p ack -e 40 -c 0 -i 8660 -a 0 -x {10.0 9.0 4325 ------- null} r -t 4.89011 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8645 -a 0 -x {9.0 10.0 4327 ------- null} + -t 4.89011 -s 10 -d 7 -p ack -e 40 -c 0 -i 8664 -a 0 -x {10.0 9.0 4327 ------- null} - -t 4.89011 -s 10 -d 7 -p ack -e 40 -c 0 -i 8664 -a 0 -x {10.0 9.0 4327 ------- null} h -t 4.89011 -s 10 -d 7 -p ack -e 40 -c 0 -i 8664 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.89021 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8659 -a 0 -x {9.0 10.0 4334 ------- null} + -t 4.89021 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8659 -a 0 -x {9.0 10.0 4334 ------- null} h -t 4.89021 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8659 -a 0 -x {9.0 10.0 4334 ------- null} + -t 4.89059 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8651 -a 0 -x {9.0 10.0 4330 ------- null} - -t 4.89059 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8651 -a 0 -x {9.0 10.0 4330 ------- null} h -t 4.89059 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8651 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.8907 -s 0 -d 9 -p ack -e 40 -c 0 -i 8654 -a 0 -x {10.0 9.0 4322 ------- null} + -t 4.8907 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8665 -a 0 -x {9.0 10.0 4337 ------- null} - -t 4.8907 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8665 -a 0 -x {9.0 10.0 4337 ------- null} h -t 4.8907 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8665 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.89086 -s 0 -d 9 -p ack -e 40 -c 0 -i 8658 -a 0 -x {10.0 9.0 4324 ------- null} - -t 4.89086 -s 0 -d 9 -p ack -e 40 -c 0 -i 8658 -a 0 -x {10.0 9.0 4324 ------- null} h -t 4.89086 -s 0 -d 9 -p ack -e 40 -c 0 -i 8658 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.89106 -s 10 -d 7 -p ack -e 40 -c 0 -i 8662 -a 0 -x {10.0 9.0 4326 ------- null} + -t 4.89106 -s 7 -d 0 -p ack -e 40 -c 0 -i 8662 -a 0 -x {10.0 9.0 4326 ------- null} h -t 4.89106 -s 7 -d 8 -p ack -e 40 -c 0 -i 8662 -a 0 -x {10.0 9.0 4326 ------- null} r -t 4.8912 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8647 -a 0 -x {9.0 10.0 4328 ------- null} + -t 4.8912 -s 10 -d 7 -p ack -e 40 -c 0 -i 8666 -a 0 -x {10.0 9.0 4328 ------- null} - -t 4.8912 -s 10 -d 7 -p ack -e 40 -c 0 -i 8666 -a 0 -x {10.0 9.0 4328 ------- null} h -t 4.8912 -s 10 -d 7 -p ack -e 40 -c 0 -i 8666 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.89131 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8661 -a 0 -x {9.0 10.0 4335 ------- null} + -t 4.89131 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8661 -a 0 -x {9.0 10.0 4335 ------- null} h -t 4.89131 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8661 -a 0 -x {9.0 10.0 4335 ------- null} r -t 4.89174 -s 0 -d 9 -p ack -e 40 -c 0 -i 8656 -a 0 -x {10.0 9.0 4323 ------- null} + -t 4.89174 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8667 -a 0 -x {9.0 10.0 4338 ------- null} - -t 4.89174 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8667 -a 0 -x {9.0 10.0 4338 ------- null} h -t 4.89174 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8667 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.89184 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8653 -a 0 -x {9.0 10.0 4331 ------- null} - -t 4.89184 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8653 -a 0 -x {9.0 10.0 4331 ------- null} h -t 4.89184 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8653 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.892 -s 0 -d 9 -p ack -e 40 -c 0 -i 8660 -a 0 -x {10.0 9.0 4325 ------- null} - -t 4.892 -s 0 -d 9 -p ack -e 40 -c 0 -i 8660 -a 0 -x {10.0 9.0 4325 ------- null} h -t 4.892 -s 0 -d 9 -p ack -e 40 -c 0 -i 8660 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.89214 -s 10 -d 7 -p ack -e 40 -c 0 -i 8664 -a 0 -x {10.0 9.0 4327 ------- null} + -t 4.89214 -s 7 -d 0 -p ack -e 40 -c 0 -i 8664 -a 0 -x {10.0 9.0 4327 ------- null} h -t 4.89214 -s 7 -d 8 -p ack -e 40 -c 0 -i 8664 -a 0 -x {10.0 9.0 4327 ------- null} r -t 4.89229 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8663 -a 0 -x {9.0 10.0 4336 ------- null} + -t 4.89229 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8663 -a 0 -x {9.0 10.0 4336 ------- null} h -t 4.89229 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8663 -a 0 -x {9.0 10.0 4336 ------- null} r -t 4.8923 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8649 -a 0 -x {9.0 10.0 4329 ------- null} + -t 4.8923 -s 10 -d 7 -p ack -e 40 -c 0 -i 8668 -a 0 -x {10.0 9.0 4329 ------- null} - -t 4.8923 -s 10 -d 7 -p ack -e 40 -c 0 -i 8668 -a 0 -x {10.0 9.0 4329 ------- null} h -t 4.8923 -s 10 -d 7 -p ack -e 40 -c 0 -i 8668 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.8929 -s 0 -d 9 -p ack -e 40 -c 0 -i 8658 -a 0 -x {10.0 9.0 4324 ------- null} + -t 4.8929 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8669 -a 0 -x {9.0 10.0 4339 ------- null} - -t 4.8929 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8669 -a 0 -x {9.0 10.0 4339 ------- null} h -t 4.8929 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8669 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.89293 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8655 -a 0 -x {9.0 10.0 4332 ------- null} - -t 4.89293 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8655 -a 0 -x {9.0 10.0 4332 ------- null} h -t 4.89293 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8655 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.89306 -s 0 -d 9 -p ack -e 40 -c 0 -i 8662 -a 0 -x {10.0 9.0 4326 ------- null} - -t 4.89306 -s 0 -d 9 -p ack -e 40 -c 0 -i 8662 -a 0 -x {10.0 9.0 4326 ------- null} h -t 4.89306 -s 0 -d 9 -p ack -e 40 -c 0 -i 8662 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.89323 -s 10 -d 7 -p ack -e 40 -c 0 -i 8666 -a 0 -x {10.0 9.0 4328 ------- null} + -t 4.89323 -s 7 -d 0 -p ack -e 40 -c 0 -i 8666 -a 0 -x {10.0 9.0 4328 ------- null} h -t 4.89323 -s 7 -d 8 -p ack -e 40 -c 0 -i 8666 -a 0 -x {10.0 9.0 4328 ------- null} r -t 4.89339 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8651 -a 0 -x {9.0 10.0 4330 ------- null} + -t 4.89339 -s 10 -d 7 -p ack -e 40 -c 0 -i 8670 -a 0 -x {10.0 9.0 4330 ------- null} - -t 4.89339 -s 10 -d 7 -p ack -e 40 -c 0 -i 8670 -a 0 -x {10.0 9.0 4330 ------- null} h -t 4.89339 -s 10 -d 7 -p ack -e 40 -c 0 -i 8670 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.8935 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8665 -a 0 -x {9.0 10.0 4337 ------- null} + -t 4.8935 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8665 -a 0 -x {9.0 10.0 4337 ------- null} h -t 4.8935 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8665 -a 0 -x {9.0 10.0 4337 ------- null} + -t 4.89402 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8657 -a 0 -x {9.0 10.0 4333 ------- null} - -t 4.89402 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8657 -a 0 -x {9.0 10.0 4333 ------- null} h -t 4.89402 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8657 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.89403 -s 0 -d 9 -p ack -e 40 -c 0 -i 8660 -a 0 -x {10.0 9.0 4325 ------- null} + -t 4.89403 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8671 -a 0 -x {9.0 10.0 4340 ------- null} - -t 4.89403 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8671 -a 0 -x {9.0 10.0 4340 ------- null} h -t 4.89403 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8671 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.89427 -s 0 -d 9 -p ack -e 40 -c 0 -i 8664 -a 0 -x {10.0 9.0 4327 ------- null} - -t 4.89427 -s 0 -d 9 -p ack -e 40 -c 0 -i 8664 -a 0 -x {10.0 9.0 4327 ------- null} h -t 4.89427 -s 0 -d 9 -p ack -e 40 -c 0 -i 8664 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.89434 -s 10 -d 7 -p ack -e 40 -c 0 -i 8668 -a 0 -x {10.0 9.0 4329 ------- null} + -t 4.89434 -s 7 -d 0 -p ack -e 40 -c 0 -i 8668 -a 0 -x {10.0 9.0 4329 ------- null} h -t 4.89434 -s 7 -d 8 -p ack -e 40 -c 0 -i 8668 -a 0 -x {10.0 9.0 4329 ------- null} r -t 4.89454 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8667 -a 0 -x {9.0 10.0 4338 ------- null} + -t 4.89454 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8667 -a 0 -x {9.0 10.0 4338 ------- null} h -t 4.89454 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8667 -a 0 -x {9.0 10.0 4338 ------- null} r -t 4.89464 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8653 -a 0 -x {9.0 10.0 4331 ------- null} + -t 4.89464 -s 10 -d 7 -p ack -e 40 -c 0 -i 8672 -a 0 -x {10.0 9.0 4331 ------- null} - -t 4.89464 -s 10 -d 7 -p ack -e 40 -c 0 -i 8672 -a 0 -x {10.0 9.0 4331 ------- null} h -t 4.89464 -s 10 -d 7 -p ack -e 40 -c 0 -i 8672 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.89509 -s 0 -d 9 -p ack -e 40 -c 0 -i 8662 -a 0 -x {10.0 9.0 4326 ------- null} + -t 4.89509 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8673 -a 0 -x {9.0 10.0 4341 ------- null} - -t 4.89509 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8673 -a 0 -x {9.0 10.0 4341 ------- null} h -t 4.89509 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8673 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.8951 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8659 -a 0 -x {9.0 10.0 4334 ------- null} - -t 4.8951 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8659 -a 0 -x {9.0 10.0 4334 ------- null} h -t 4.8951 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8659 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.89522 -s 0 -d 9 -p ack -e 40 -c 0 -i 8666 -a 0 -x {10.0 9.0 4328 ------- null} - -t 4.89522 -s 0 -d 9 -p ack -e 40 -c 0 -i 8666 -a 0 -x {10.0 9.0 4328 ------- null} h -t 4.89522 -s 0 -d 9 -p ack -e 40 -c 0 -i 8666 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.89542 -s 10 -d 7 -p ack -e 40 -c 0 -i 8670 -a 0 -x {10.0 9.0 4330 ------- null} + -t 4.89542 -s 7 -d 0 -p ack -e 40 -c 0 -i 8670 -a 0 -x {10.0 9.0 4330 ------- null} h -t 4.89542 -s 7 -d 8 -p ack -e 40 -c 0 -i 8670 -a 0 -x {10.0 9.0 4330 ------- null} r -t 4.8957 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8669 -a 0 -x {9.0 10.0 4339 ------- null} + -t 4.8957 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8669 -a 0 -x {9.0 10.0 4339 ------- null} h -t 4.8957 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8669 -a 0 -x {9.0 10.0 4339 ------- null} r -t 4.89573 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8655 -a 0 -x {9.0 10.0 4332 ------- null} + -t 4.89573 -s 10 -d 7 -p ack -e 40 -c 0 -i 8674 -a 0 -x {10.0 9.0 4332 ------- null} - -t 4.89573 -s 10 -d 7 -p ack -e 40 -c 0 -i 8674 -a 0 -x {10.0 9.0 4332 ------- null} h -t 4.89573 -s 10 -d 7 -p ack -e 40 -c 0 -i 8674 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.89619 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8661 -a 0 -x {9.0 10.0 4335 ------- null} - -t 4.89619 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8661 -a 0 -x {9.0 10.0 4335 ------- null} h -t 4.89619 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8661 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.8963 -s 0 -d 9 -p ack -e 40 -c 0 -i 8664 -a 0 -x {10.0 9.0 4327 ------- null} + -t 4.8963 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8675 -a 0 -x {9.0 10.0 4342 ------- null} - -t 4.8963 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8675 -a 0 -x {9.0 10.0 4342 ------- null} h -t 4.8963 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8675 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.89646 -s 0 -d 9 -p ack -e 40 -c 0 -i 8668 -a 0 -x {10.0 9.0 4329 ------- null} - -t 4.89646 -s 0 -d 9 -p ack -e 40 -c 0 -i 8668 -a 0 -x {10.0 9.0 4329 ------- null} h -t 4.89646 -s 0 -d 9 -p ack -e 40 -c 0 -i 8668 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.89667 -s 10 -d 7 -p ack -e 40 -c 0 -i 8672 -a 0 -x {10.0 9.0 4331 ------- null} + -t 4.89667 -s 7 -d 0 -p ack -e 40 -c 0 -i 8672 -a 0 -x {10.0 9.0 4331 ------- null} h -t 4.89667 -s 7 -d 8 -p ack -e 40 -c 0 -i 8672 -a 0 -x {10.0 9.0 4331 ------- null} r -t 4.89682 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8657 -a 0 -x {9.0 10.0 4333 ------- null} + -t 4.89682 -s 10 -d 7 -p ack -e 40 -c 0 -i 8676 -a 0 -x {10.0 9.0 4333 ------- null} - -t 4.89682 -s 10 -d 7 -p ack -e 40 -c 0 -i 8676 -a 0 -x {10.0 9.0 4333 ------- null} h -t 4.89682 -s 10 -d 7 -p ack -e 40 -c 0 -i 8676 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.89683 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8671 -a 0 -x {9.0 10.0 4340 ------- null} + -t 4.89683 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8671 -a 0 -x {9.0 10.0 4340 ------- null} h -t 4.89683 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8671 -a 0 -x {9.0 10.0 4340 ------- null} r -t 4.89725 -s 0 -d 9 -p ack -e 40 -c 0 -i 8666 -a 0 -x {10.0 9.0 4328 ------- null} + -t 4.89725 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8677 -a 0 -x {9.0 10.0 4343 ------- null} - -t 4.89725 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8677 -a 0 -x {9.0 10.0 4343 ------- null} h -t 4.89725 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8677 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.8973 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8663 -a 0 -x {9.0 10.0 4336 ------- null} - -t 4.8973 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8663 -a 0 -x {9.0 10.0 4336 ------- null} h -t 4.8973 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8663 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.89746 -s 0 -d 9 -p ack -e 40 -c 0 -i 8670 -a 0 -x {10.0 9.0 4330 ------- null} - -t 4.89746 -s 0 -d 9 -p ack -e 40 -c 0 -i 8670 -a 0 -x {10.0 9.0 4330 ------- null} h -t 4.89746 -s 0 -d 9 -p ack -e 40 -c 0 -i 8670 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.89776 -s 10 -d 7 -p ack -e 40 -c 0 -i 8674 -a 0 -x {10.0 9.0 4332 ------- null} + -t 4.89776 -s 7 -d 0 -p ack -e 40 -c 0 -i 8674 -a 0 -x {10.0 9.0 4332 ------- null} h -t 4.89776 -s 7 -d 8 -p ack -e 40 -c 0 -i 8674 -a 0 -x {10.0 9.0 4332 ------- null} r -t 4.89789 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8673 -a 0 -x {9.0 10.0 4341 ------- null} + -t 4.89789 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8673 -a 0 -x {9.0 10.0 4341 ------- null} h -t 4.89789 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8673 -a 0 -x {9.0 10.0 4341 ------- null} r -t 4.8979 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8659 -a 0 -x {9.0 10.0 4334 ------- null} + -t 4.8979 -s 10 -d 7 -p ack -e 40 -c 0 -i 8678 -a 0 -x {10.0 9.0 4334 ------- null} - -t 4.8979 -s 10 -d 7 -p ack -e 40 -c 0 -i 8678 -a 0 -x {10.0 9.0 4334 ------- null} h -t 4.8979 -s 10 -d 7 -p ack -e 40 -c 0 -i 8678 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.89838 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8665 -a 0 -x {9.0 10.0 4337 ------- null} - -t 4.89838 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8665 -a 0 -x {9.0 10.0 4337 ------- null} h -t 4.89838 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8665 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.8985 -s 0 -d 9 -p ack -e 40 -c 0 -i 8668 -a 0 -x {10.0 9.0 4329 ------- null} + -t 4.8985 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8679 -a 0 -x {9.0 10.0 4344 ------- null} - -t 4.8985 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8679 -a 0 -x {9.0 10.0 4344 ------- null} h -t 4.8985 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8679 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.89862 -s 0 -d 9 -p ack -e 40 -c 0 -i 8672 -a 0 -x {10.0 9.0 4331 ------- null} - -t 4.89862 -s 0 -d 9 -p ack -e 40 -c 0 -i 8672 -a 0 -x {10.0 9.0 4331 ------- null} h -t 4.89862 -s 0 -d 9 -p ack -e 40 -c 0 -i 8672 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.89885 -s 10 -d 7 -p ack -e 40 -c 0 -i 8676 -a 0 -x {10.0 9.0 4333 ------- null} + -t 4.89885 -s 7 -d 0 -p ack -e 40 -c 0 -i 8676 -a 0 -x {10.0 9.0 4333 ------- null} h -t 4.89885 -s 7 -d 8 -p ack -e 40 -c 0 -i 8676 -a 0 -x {10.0 9.0 4333 ------- null} r -t 4.89899 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8661 -a 0 -x {9.0 10.0 4335 ------- null} + -t 4.89899 -s 10 -d 7 -p ack -e 40 -c 0 -i 8680 -a 0 -x {10.0 9.0 4335 ------- null} - -t 4.89899 -s 10 -d 7 -p ack -e 40 -c 0 -i 8680 -a 0 -x {10.0 9.0 4335 ------- null} h -t 4.89899 -s 10 -d 7 -p ack -e 40 -c 0 -i 8680 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.8991 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8675 -a 0 -x {9.0 10.0 4342 ------- null} + -t 4.8991 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8675 -a 0 -x {9.0 10.0 4342 ------- null} h -t 4.8991 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8675 -a 0 -x {9.0 10.0 4342 ------- null} + -t 4.89947 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8667 -a 0 -x {9.0 10.0 4338 ------- null} - -t 4.89947 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8667 -a 0 -x {9.0 10.0 4338 ------- null} h -t 4.89947 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8667 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.89949 -s 0 -d 9 -p ack -e 40 -c 0 -i 8670 -a 0 -x {10.0 9.0 4330 ------- null} + -t 4.89949 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8681 -a 0 -x {9.0 10.0 4345 ------- null} - -t 4.89949 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8681 -a 0 -x {9.0 10.0 4345 ------- null} h -t 4.89949 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8681 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.8996 -s 0 -d 9 -p ack -e 40 -c 0 -i 8674 -a 0 -x {10.0 9.0 4332 ------- null} - -t 4.8996 -s 0 -d 9 -p ack -e 40 -c 0 -i 8674 -a 0 -x {10.0 9.0 4332 ------- null} h -t 4.8996 -s 0 -d 9 -p ack -e 40 -c 0 -i 8674 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.89994 -s 10 -d 7 -p ack -e 40 -c 0 -i 8678 -a 0 -x {10.0 9.0 4334 ------- null} + -t 4.89994 -s 7 -d 0 -p ack -e 40 -c 0 -i 8678 -a 0 -x {10.0 9.0 4334 ------- null} h -t 4.89994 -s 7 -d 8 -p ack -e 40 -c 0 -i 8678 -a 0 -x {10.0 9.0 4334 ------- null} r -t 4.90005 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8677 -a 0 -x {9.0 10.0 4343 ------- null} + -t 4.90005 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8677 -a 0 -x {9.0 10.0 4343 ------- null} h -t 4.90005 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8677 -a 0 -x {9.0 10.0 4343 ------- null} r -t 4.9001 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8663 -a 0 -x {9.0 10.0 4336 ------- null} + -t 4.9001 -s 10 -d 7 -p ack -e 40 -c 0 -i 8682 -a 0 -x {10.0 9.0 4336 ------- null} - -t 4.9001 -s 10 -d 7 -p ack -e 40 -c 0 -i 8682 -a 0 -x {10.0 9.0 4336 ------- null} h -t 4.9001 -s 10 -d 7 -p ack -e 40 -c 0 -i 8682 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.90056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8669 -a 0 -x {9.0 10.0 4339 ------- null} - -t 4.90056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8669 -a 0 -x {9.0 10.0 4339 ------- null} h -t 4.90056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8669 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.90062 -s 0 -d 9 -p ack -e 40 -c 0 -i 8676 -a 0 -x {10.0 9.0 4333 ------- null} - -t 4.90062 -s 0 -d 9 -p ack -e 40 -c 0 -i 8676 -a 0 -x {10.0 9.0 4333 ------- null} h -t 4.90062 -s 0 -d 9 -p ack -e 40 -c 0 -i 8676 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.90066 -s 0 -d 9 -p ack -e 40 -c 0 -i 8672 -a 0 -x {10.0 9.0 4331 ------- null} + -t 4.90066 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8683 -a 0 -x {9.0 10.0 4346 ------- null} - -t 4.90066 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8683 -a 0 -x {9.0 10.0 4346 ------- null} h -t 4.90066 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8683 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.90102 -s 10 -d 7 -p ack -e 40 -c 0 -i 8680 -a 0 -x {10.0 9.0 4335 ------- null} + -t 4.90102 -s 7 -d 0 -p ack -e 40 -c 0 -i 8680 -a 0 -x {10.0 9.0 4335 ------- null} h -t 4.90102 -s 7 -d 8 -p ack -e 40 -c 0 -i 8680 -a 0 -x {10.0 9.0 4335 ------- null} r -t 4.90118 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8665 -a 0 -x {9.0 10.0 4337 ------- null} + -t 4.90118 -s 10 -d 7 -p ack -e 40 -c 0 -i 8684 -a 0 -x {10.0 9.0 4337 ------- null} - -t 4.90118 -s 10 -d 7 -p ack -e 40 -c 0 -i 8684 -a 0 -x {10.0 9.0 4337 ------- null} h -t 4.90118 -s 10 -d 7 -p ack -e 40 -c 0 -i 8684 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.9013 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8679 -a 0 -x {9.0 10.0 4344 ------- null} + -t 4.9013 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8679 -a 0 -x {9.0 10.0 4344 ------- null} h -t 4.9013 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8679 -a 0 -x {9.0 10.0 4344 ------- null} r -t 4.90163 -s 0 -d 9 -p ack -e 40 -c 0 -i 8674 -a 0 -x {10.0 9.0 4332 ------- null} + -t 4.90163 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8685 -a 0 -x {9.0 10.0 4347 ------- null} - -t 4.90163 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8685 -a 0 -x {9.0 10.0 4347 ------- null} h -t 4.90163 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8685 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.90165 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8671 -a 0 -x {9.0 10.0 4340 ------- null} - -t 4.90165 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8671 -a 0 -x {9.0 10.0 4340 ------- null} h -t 4.90165 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8671 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.90174 -s 0 -d 9 -p ack -e 40 -c 0 -i 8678 -a 0 -x {10.0 9.0 4334 ------- null} - -t 4.90174 -s 0 -d 9 -p ack -e 40 -c 0 -i 8678 -a 0 -x {10.0 9.0 4334 ------- null} h -t 4.90174 -s 0 -d 9 -p ack -e 40 -c 0 -i 8678 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.90213 -s 10 -d 7 -p ack -e 40 -c 0 -i 8682 -a 0 -x {10.0 9.0 4336 ------- null} + -t 4.90213 -s 7 -d 0 -p ack -e 40 -c 0 -i 8682 -a 0 -x {10.0 9.0 4336 ------- null} h -t 4.90213 -s 7 -d 8 -p ack -e 40 -c 0 -i 8682 -a 0 -x {10.0 9.0 4336 ------- null} r -t 4.90227 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8667 -a 0 -x {9.0 10.0 4338 ------- null} + -t 4.90227 -s 10 -d 7 -p ack -e 40 -c 0 -i 8686 -a 0 -x {10.0 9.0 4338 ------- null} - -t 4.90227 -s 10 -d 7 -p ack -e 40 -c 0 -i 8686 -a 0 -x {10.0 9.0 4338 ------- null} h -t 4.90227 -s 10 -d 7 -p ack -e 40 -c 0 -i 8686 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.90229 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8681 -a 0 -x {9.0 10.0 4345 ------- null} + -t 4.90229 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8681 -a 0 -x {9.0 10.0 4345 ------- null} h -t 4.90229 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8681 -a 0 -x {9.0 10.0 4345 ------- null} r -t 4.90266 -s 0 -d 9 -p ack -e 40 -c 0 -i 8676 -a 0 -x {10.0 9.0 4333 ------- null} + -t 4.90266 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8687 -a 0 -x {9.0 10.0 4348 ------- null} - -t 4.90266 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8687 -a 0 -x {9.0 10.0 4348 ------- null} h -t 4.90266 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8687 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.90274 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8673 -a 0 -x {9.0 10.0 4341 ------- null} - -t 4.90274 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8673 -a 0 -x {9.0 10.0 4341 ------- null} h -t 4.90274 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8673 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.9029 -s 0 -d 9 -p ack -e 40 -c 0 -i 8680 -a 0 -x {10.0 9.0 4335 ------- null} - -t 4.9029 -s 0 -d 9 -p ack -e 40 -c 0 -i 8680 -a 0 -x {10.0 9.0 4335 ------- null} h -t 4.9029 -s 0 -d 9 -p ack -e 40 -c 0 -i 8680 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.90322 -s 10 -d 7 -p ack -e 40 -c 0 -i 8684 -a 0 -x {10.0 9.0 4337 ------- null} + -t 4.90322 -s 7 -d 0 -p ack -e 40 -c 0 -i 8684 -a 0 -x {10.0 9.0 4337 ------- null} h -t 4.90322 -s 7 -d 8 -p ack -e 40 -c 0 -i 8684 -a 0 -x {10.0 9.0 4337 ------- null} r -t 4.90336 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8669 -a 0 -x {9.0 10.0 4339 ------- null} + -t 4.90336 -s 10 -d 7 -p ack -e 40 -c 0 -i 8688 -a 0 -x {10.0 9.0 4339 ------- null} - -t 4.90336 -s 10 -d 7 -p ack -e 40 -c 0 -i 8688 -a 0 -x {10.0 9.0 4339 ------- null} h -t 4.90336 -s 10 -d 7 -p ack -e 40 -c 0 -i 8688 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.90346 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8683 -a 0 -x {9.0 10.0 4346 ------- null} + -t 4.90346 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8683 -a 0 -x {9.0 10.0 4346 ------- null} h -t 4.90346 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8683 -a 0 -x {9.0 10.0 4346 ------- null} r -t 4.90378 -s 0 -d 9 -p ack -e 40 -c 0 -i 8678 -a 0 -x {10.0 9.0 4334 ------- null} + -t 4.90378 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8689 -a 0 -x {9.0 10.0 4349 ------- null} - -t 4.90378 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8689 -a 0 -x {9.0 10.0 4349 ------- null} h -t 4.90378 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8689 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.90382 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8675 -a 0 -x {9.0 10.0 4342 ------- null} - -t 4.90382 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8675 -a 0 -x {9.0 10.0 4342 ------- null} h -t 4.90382 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8675 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.9039 -s 0 -d 9 -p ack -e 40 -c 0 -i 8682 -a 0 -x {10.0 9.0 4336 ------- null} - -t 4.9039 -s 0 -d 9 -p ack -e 40 -c 0 -i 8682 -a 0 -x {10.0 9.0 4336 ------- null} h -t 4.9039 -s 0 -d 9 -p ack -e 40 -c 0 -i 8682 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.9043 -s 10 -d 7 -p ack -e 40 -c 0 -i 8686 -a 0 -x {10.0 9.0 4338 ------- null} + -t 4.9043 -s 7 -d 0 -p ack -e 40 -c 0 -i 8686 -a 0 -x {10.0 9.0 4338 ------- null} h -t 4.9043 -s 7 -d 8 -p ack -e 40 -c 0 -i 8686 -a 0 -x {10.0 9.0 4338 ------- null} r -t 4.90443 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8685 -a 0 -x {9.0 10.0 4347 ------- null} + -t 4.90443 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8685 -a 0 -x {9.0 10.0 4347 ------- null} h -t 4.90443 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8685 -a 0 -x {9.0 10.0 4347 ------- null} r -t 4.90445 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8671 -a 0 -x {9.0 10.0 4340 ------- null} + -t 4.90445 -s 10 -d 7 -p ack -e 40 -c 0 -i 8690 -a 0 -x {10.0 9.0 4340 ------- null} - -t 4.90445 -s 10 -d 7 -p ack -e 40 -c 0 -i 8690 -a 0 -x {10.0 9.0 4340 ------- null} h -t 4.90445 -s 10 -d 7 -p ack -e 40 -c 0 -i 8690 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.90491 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8677 -a 0 -x {9.0 10.0 4343 ------- null} - -t 4.90491 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8677 -a 0 -x {9.0 10.0 4343 ------- null} h -t 4.90491 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8677 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.90493 -s 0 -d 9 -p ack -e 40 -c 0 -i 8680 -a 0 -x {10.0 9.0 4335 ------- null} + -t 4.90493 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8691 -a 0 -x {9.0 10.0 4350 ------- null} - -t 4.90493 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8691 -a 0 -x {9.0 10.0 4350 ------- null} h -t 4.90493 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8691 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.90506 -s 0 -d 9 -p ack -e 40 -c 0 -i 8684 -a 0 -x {10.0 9.0 4337 ------- null} - -t 4.90506 -s 0 -d 9 -p ack -e 40 -c 0 -i 8684 -a 0 -x {10.0 9.0 4337 ------- null} h -t 4.90506 -s 0 -d 9 -p ack -e 40 -c 0 -i 8684 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.90539 -s 10 -d 7 -p ack -e 40 -c 0 -i 8688 -a 0 -x {10.0 9.0 4339 ------- null} + -t 4.90539 -s 7 -d 0 -p ack -e 40 -c 0 -i 8688 -a 0 -x {10.0 9.0 4339 ------- null} h -t 4.90539 -s 7 -d 8 -p ack -e 40 -c 0 -i 8688 -a 0 -x {10.0 9.0 4339 ------- null} r -t 4.90546 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8687 -a 0 -x {9.0 10.0 4348 ------- null} + -t 4.90546 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8687 -a 0 -x {9.0 10.0 4348 ------- null} h -t 4.90546 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8687 -a 0 -x {9.0 10.0 4348 ------- null} r -t 4.90554 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8673 -a 0 -x {9.0 10.0 4341 ------- null} + -t 4.90554 -s 10 -d 7 -p ack -e 40 -c 0 -i 8692 -a 0 -x {10.0 9.0 4341 ------- null} - -t 4.90554 -s 10 -d 7 -p ack -e 40 -c 0 -i 8692 -a 0 -x {10.0 9.0 4341 ------- null} h -t 4.90554 -s 10 -d 7 -p ack -e 40 -c 0 -i 8692 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.90594 -s 0 -d 9 -p ack -e 40 -c 0 -i 8682 -a 0 -x {10.0 9.0 4336 ------- null} + -t 4.90594 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8693 -a 0 -x {9.0 10.0 4351 ------- null} - -t 4.90594 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8693 -a 0 -x {9.0 10.0 4351 ------- null} h -t 4.90594 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8693 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.906 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8679 -a 0 -x {9.0 10.0 4344 ------- null} - -t 4.906 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8679 -a 0 -x {9.0 10.0 4344 ------- null} h -t 4.906 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8679 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.90618 -s 0 -d 9 -p ack -e 40 -c 0 -i 8686 -a 0 -x {10.0 9.0 4338 ------- null} - -t 4.90618 -s 0 -d 9 -p ack -e 40 -c 0 -i 8686 -a 0 -x {10.0 9.0 4338 ------- null} h -t 4.90618 -s 0 -d 9 -p ack -e 40 -c 0 -i 8686 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.90648 -s 10 -d 7 -p ack -e 40 -c 0 -i 8690 -a 0 -x {10.0 9.0 4340 ------- null} + -t 4.90648 -s 7 -d 0 -p ack -e 40 -c 0 -i 8690 -a 0 -x {10.0 9.0 4340 ------- null} h -t 4.90648 -s 7 -d 8 -p ack -e 40 -c 0 -i 8690 -a 0 -x {10.0 9.0 4340 ------- null} r -t 4.90658 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8689 -a 0 -x {9.0 10.0 4349 ------- null} + -t 4.90658 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8689 -a 0 -x {9.0 10.0 4349 ------- null} h -t 4.90658 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8689 -a 0 -x {9.0 10.0 4349 ------- null} r -t 4.90662 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8675 -a 0 -x {9.0 10.0 4342 ------- null} + -t 4.90662 -s 10 -d 7 -p ack -e 40 -c 0 -i 8694 -a 0 -x {10.0 9.0 4342 ------- null} - -t 4.90662 -s 10 -d 7 -p ack -e 40 -c 0 -i 8694 -a 0 -x {10.0 9.0 4342 ------- null} h -t 4.90662 -s 10 -d 7 -p ack -e 40 -c 0 -i 8694 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.90709 -s 0 -d 9 -p ack -e 40 -c 0 -i 8684 -a 0 -x {10.0 9.0 4337 ------- null} + -t 4.90709 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8695 -a 0 -x {9.0 10.0 4352 ------- null} - -t 4.90709 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8695 -a 0 -x {9.0 10.0 4352 ------- null} h -t 4.90709 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8695 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.90709 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8681 -a 0 -x {9.0 10.0 4345 ------- null} - -t 4.90709 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8681 -a 0 -x {9.0 10.0 4345 ------- null} h -t 4.90709 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8681 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.90731 -s 0 -d 9 -p ack -e 40 -c 0 -i 8688 -a 0 -x {10.0 9.0 4339 ------- null} - -t 4.90731 -s 0 -d 9 -p ack -e 40 -c 0 -i 8688 -a 0 -x {10.0 9.0 4339 ------- null} h -t 4.90731 -s 0 -d 9 -p ack -e 40 -c 0 -i 8688 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.90757 -s 10 -d 7 -p ack -e 40 -c 0 -i 8692 -a 0 -x {10.0 9.0 4341 ------- null} + -t 4.90757 -s 7 -d 0 -p ack -e 40 -c 0 -i 8692 -a 0 -x {10.0 9.0 4341 ------- null} h -t 4.90757 -s 7 -d 8 -p ack -e 40 -c 0 -i 8692 -a 0 -x {10.0 9.0 4341 ------- null} r -t 4.90771 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8677 -a 0 -x {9.0 10.0 4343 ------- null} + -t 4.90771 -s 10 -d 7 -p ack -e 40 -c 0 -i 8696 -a 0 -x {10.0 9.0 4343 ------- null} - -t 4.90771 -s 10 -d 7 -p ack -e 40 -c 0 -i 8696 -a 0 -x {10.0 9.0 4343 ------- null} h -t 4.90771 -s 10 -d 7 -p ack -e 40 -c 0 -i 8696 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.90773 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8691 -a 0 -x {9.0 10.0 4350 ------- null} + -t 4.90773 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8691 -a 0 -x {9.0 10.0 4350 ------- null} h -t 4.90773 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8691 -a 0 -x {9.0 10.0 4350 ------- null} + -t 4.90818 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8683 -a 0 -x {9.0 10.0 4346 ------- null} - -t 4.90818 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8683 -a 0 -x {9.0 10.0 4346 ------- null} h -t 4.90818 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8683 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.90821 -s 0 -d 9 -p ack -e 40 -c 0 -i 8686 -a 0 -x {10.0 9.0 4338 ------- null} + -t 4.90821 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8697 -a 0 -x {9.0 10.0 4353 ------- null} - -t 4.90821 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8697 -a 0 -x {9.0 10.0 4353 ------- null} h -t 4.90821 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8697 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.90846 -s 0 -d 9 -p ack -e 40 -c 0 -i 8690 -a 0 -x {10.0 9.0 4340 ------- null} - -t 4.90846 -s 0 -d 9 -p ack -e 40 -c 0 -i 8690 -a 0 -x {10.0 9.0 4340 ------- null} h -t 4.90846 -s 0 -d 9 -p ack -e 40 -c 0 -i 8690 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.90866 -s 10 -d 7 -p ack -e 40 -c 0 -i 8694 -a 0 -x {10.0 9.0 4342 ------- null} + -t 4.90866 -s 7 -d 0 -p ack -e 40 -c 0 -i 8694 -a 0 -x {10.0 9.0 4342 ------- null} h -t 4.90866 -s 7 -d 8 -p ack -e 40 -c 0 -i 8694 -a 0 -x {10.0 9.0 4342 ------- null} r -t 4.90874 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8693 -a 0 -x {9.0 10.0 4351 ------- null} + -t 4.90874 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8693 -a 0 -x {9.0 10.0 4351 ------- null} h -t 4.90874 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8693 -a 0 -x {9.0 10.0 4351 ------- null} r -t 4.9088 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8679 -a 0 -x {9.0 10.0 4344 ------- null} + -t 4.9088 -s 10 -d 7 -p ack -e 40 -c 0 -i 8698 -a 0 -x {10.0 9.0 4344 ------- null} - -t 4.9088 -s 10 -d 7 -p ack -e 40 -c 0 -i 8698 -a 0 -x {10.0 9.0 4344 ------- null} h -t 4.9088 -s 10 -d 7 -p ack -e 40 -c 0 -i 8698 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.90934 -s 0 -d 9 -p ack -e 40 -c 0 -i 8688 -a 0 -x {10.0 9.0 4339 ------- null} + -t 4.90934 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8699 -a 0 -x {9.0 10.0 4354 ------- null} - -t 4.90934 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8699 -a 0 -x {9.0 10.0 4354 ------- null} h -t 4.90934 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8699 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.90938 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8685 -a 0 -x {9.0 10.0 4347 ------- null} - -t 4.90938 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8685 -a 0 -x {9.0 10.0 4347 ------- null} h -t 4.90938 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8685 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.9096 -s 0 -d 9 -p ack -e 40 -c 0 -i 8692 -a 0 -x {10.0 9.0 4341 ------- null} - -t 4.9096 -s 0 -d 9 -p ack -e 40 -c 0 -i 8692 -a 0 -x {10.0 9.0 4341 ------- null} h -t 4.9096 -s 0 -d 9 -p ack -e 40 -c 0 -i 8692 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.90974 -s 10 -d 7 -p ack -e 40 -c 0 -i 8696 -a 0 -x {10.0 9.0 4343 ------- null} + -t 4.90974 -s 7 -d 0 -p ack -e 40 -c 0 -i 8696 -a 0 -x {10.0 9.0 4343 ------- null} h -t 4.90974 -s 7 -d 8 -p ack -e 40 -c 0 -i 8696 -a 0 -x {10.0 9.0 4343 ------- null} r -t 4.90989 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8695 -a 0 -x {9.0 10.0 4352 ------- null} + -t 4.90989 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8695 -a 0 -x {9.0 10.0 4352 ------- null} h -t 4.90989 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8695 -a 0 -x {9.0 10.0 4352 ------- null} r -t 4.90989 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8681 -a 0 -x {9.0 10.0 4345 ------- null} + -t 4.90989 -s 10 -d 7 -p ack -e 40 -c 0 -i 8700 -a 0 -x {10.0 9.0 4345 ------- null} - -t 4.90989 -s 10 -d 7 -p ack -e 40 -c 0 -i 8700 -a 0 -x {10.0 9.0 4345 ------- null} h -t 4.90989 -s 10 -d 7 -p ack -e 40 -c 0 -i 8700 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.91046 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8687 -a 0 -x {9.0 10.0 4348 ------- null} - -t 4.91046 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8687 -a 0 -x {9.0 10.0 4348 ------- null} h -t 4.91046 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8687 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.9105 -s 0 -d 9 -p ack -e 40 -c 0 -i 8690 -a 0 -x {10.0 9.0 4340 ------- null} + -t 4.9105 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8701 -a 0 -x {9.0 10.0 4355 ------- null} - -t 4.9105 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8701 -a 0 -x {9.0 10.0 4355 ------- null} h -t 4.9105 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8701 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.91074 -s 0 -d 9 -p ack -e 40 -c 0 -i 8694 -a 0 -x {10.0 9.0 4342 ------- null} - -t 4.91074 -s 0 -d 9 -p ack -e 40 -c 0 -i 8694 -a 0 -x {10.0 9.0 4342 ------- null} h -t 4.91074 -s 0 -d 9 -p ack -e 40 -c 0 -i 8694 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.91083 -s 10 -d 7 -p ack -e 40 -c 0 -i 8698 -a 0 -x {10.0 9.0 4344 ------- null} + -t 4.91083 -s 7 -d 0 -p ack -e 40 -c 0 -i 8698 -a 0 -x {10.0 9.0 4344 ------- null} h -t 4.91083 -s 7 -d 8 -p ack -e 40 -c 0 -i 8698 -a 0 -x {10.0 9.0 4344 ------- null} r -t 4.91098 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8683 -a 0 -x {9.0 10.0 4346 ------- null} + -t 4.91098 -s 10 -d 7 -p ack -e 40 -c 0 -i 8702 -a 0 -x {10.0 9.0 4346 ------- null} - -t 4.91098 -s 10 -d 7 -p ack -e 40 -c 0 -i 8702 -a 0 -x {10.0 9.0 4346 ------- null} h -t 4.91098 -s 10 -d 7 -p ack -e 40 -c 0 -i 8702 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.91101 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8697 -a 0 -x {9.0 10.0 4353 ------- null} + -t 4.91101 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8697 -a 0 -x {9.0 10.0 4353 ------- null} h -t 4.91101 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8697 -a 0 -x {9.0 10.0 4353 ------- null} r -t 4.91163 -s 0 -d 9 -p ack -e 40 -c 0 -i 8692 -a 0 -x {10.0 9.0 4341 ------- null} + -t 4.91163 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8703 -a 0 -x {9.0 10.0 4356 ------- null} - -t 4.91163 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8703 -a 0 -x {9.0 10.0 4356 ------- null} h -t 4.91163 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8703 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.91178 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8689 -a 0 -x {9.0 10.0 4349 ------- null} - -t 4.91178 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8689 -a 0 -x {9.0 10.0 4349 ------- null} h -t 4.91178 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8689 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.91189 -s 0 -d 9 -p ack -e 40 -c 0 -i 8696 -a 0 -x {10.0 9.0 4343 ------- null} - -t 4.91189 -s 0 -d 9 -p ack -e 40 -c 0 -i 8696 -a 0 -x {10.0 9.0 4343 ------- null} h -t 4.91189 -s 0 -d 9 -p ack -e 40 -c 0 -i 8696 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.91192 -s 10 -d 7 -p ack -e 40 -c 0 -i 8700 -a 0 -x {10.0 9.0 4345 ------- null} + -t 4.91192 -s 7 -d 0 -p ack -e 40 -c 0 -i 8700 -a 0 -x {10.0 9.0 4345 ------- null} h -t 4.91192 -s 7 -d 8 -p ack -e 40 -c 0 -i 8700 -a 0 -x {10.0 9.0 4345 ------- null} r -t 4.91214 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8699 -a 0 -x {9.0 10.0 4354 ------- null} + -t 4.91214 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8699 -a 0 -x {9.0 10.0 4354 ------- null} h -t 4.91214 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8699 -a 0 -x {9.0 10.0 4354 ------- null} r -t 4.91218 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8685 -a 0 -x {9.0 10.0 4347 ------- null} + -t 4.91218 -s 10 -d 7 -p ack -e 40 -c 0 -i 8704 -a 0 -x {10.0 9.0 4347 ------- null} - -t 4.91218 -s 10 -d 7 -p ack -e 40 -c 0 -i 8704 -a 0 -x {10.0 9.0 4347 ------- null} h -t 4.91218 -s 10 -d 7 -p ack -e 40 -c 0 -i 8704 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.91277 -s 0 -d 9 -p ack -e 40 -c 0 -i 8694 -a 0 -x {10.0 9.0 4342 ------- null} + -t 4.91277 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8705 -a 0 -x {9.0 10.0 4357 ------- null} - -t 4.91277 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8705 -a 0 -x {9.0 10.0 4357 ------- null} h -t 4.91277 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8705 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.91286 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8691 -a 0 -x {9.0 10.0 4350 ------- null} - -t 4.91286 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8691 -a 0 -x {9.0 10.0 4350 ------- null} h -t 4.91286 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8691 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.91301 -s 10 -d 7 -p ack -e 40 -c 0 -i 8702 -a 0 -x {10.0 9.0 4346 ------- null} + -t 4.91301 -s 7 -d 0 -p ack -e 40 -c 0 -i 8702 -a 0 -x {10.0 9.0 4346 ------- null} h -t 4.91301 -s 7 -d 8 -p ack -e 40 -c 0 -i 8702 -a 0 -x {10.0 9.0 4346 ------- null} + -t 4.91302 -s 0 -d 9 -p ack -e 40 -c 0 -i 8698 -a 0 -x {10.0 9.0 4344 ------- null} - -t 4.91302 -s 0 -d 9 -p ack -e 40 -c 0 -i 8698 -a 0 -x {10.0 9.0 4344 ------- null} h -t 4.91302 -s 0 -d 9 -p ack -e 40 -c 0 -i 8698 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.91326 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8687 -a 0 -x {9.0 10.0 4348 ------- null} + -t 4.91326 -s 10 -d 7 -p ack -e 40 -c 0 -i 8706 -a 0 -x {10.0 9.0 4348 ------- null} - -t 4.91326 -s 10 -d 7 -p ack -e 40 -c 0 -i 8706 -a 0 -x {10.0 9.0 4348 ------- null} h -t 4.91326 -s 10 -d 7 -p ack -e 40 -c 0 -i 8706 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.9133 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8701 -a 0 -x {9.0 10.0 4355 ------- null} + -t 4.9133 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8701 -a 0 -x {9.0 10.0 4355 ------- null} h -t 4.9133 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8701 -a 0 -x {9.0 10.0 4355 ------- null} r -t 4.91392 -s 0 -d 9 -p ack -e 40 -c 0 -i 8696 -a 0 -x {10.0 9.0 4343 ------- null} + -t 4.91392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8707 -a 0 -x {9.0 10.0 4358 ------- null} - -t 4.91392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8707 -a 0 -x {9.0 10.0 4358 ------- null} h -t 4.91392 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8707 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.91395 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8693 -a 0 -x {9.0 10.0 4351 ------- null} - -t 4.91395 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8693 -a 0 -x {9.0 10.0 4351 ------- null} h -t 4.91395 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8693 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.9141 -s 0 -d 9 -p ack -e 40 -c 0 -i 8700 -a 0 -x {10.0 9.0 4345 ------- null} - -t 4.9141 -s 0 -d 9 -p ack -e 40 -c 0 -i 8700 -a 0 -x {10.0 9.0 4345 ------- null} h -t 4.9141 -s 0 -d 9 -p ack -e 40 -c 0 -i 8700 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.91421 -s 10 -d 7 -p ack -e 40 -c 0 -i 8704 -a 0 -x {10.0 9.0 4347 ------- null} + -t 4.91421 -s 7 -d 0 -p ack -e 40 -c 0 -i 8704 -a 0 -x {10.0 9.0 4347 ------- null} h -t 4.91421 -s 7 -d 8 -p ack -e 40 -c 0 -i 8704 -a 0 -x {10.0 9.0 4347 ------- null} r -t 4.91443 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8703 -a 0 -x {9.0 10.0 4356 ------- null} + -t 4.91443 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8703 -a 0 -x {9.0 10.0 4356 ------- null} h -t 4.91443 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8703 -a 0 -x {9.0 10.0 4356 ------- null} r -t 4.91458 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8689 -a 0 -x {9.0 10.0 4349 ------- null} + -t 4.91458 -s 10 -d 7 -p ack -e 40 -c 0 -i 8708 -a 0 -x {10.0 9.0 4349 ------- null} - -t 4.91458 -s 10 -d 7 -p ack -e 40 -c 0 -i 8708 -a 0 -x {10.0 9.0 4349 ------- null} h -t 4.91458 -s 10 -d 7 -p ack -e 40 -c 0 -i 8708 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.91504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8695 -a 0 -x {9.0 10.0 4352 ------- null} - -t 4.91504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8695 -a 0 -x {9.0 10.0 4352 ------- null} h -t 4.91504 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8695 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.91506 -s 0 -d 9 -p ack -e 40 -c 0 -i 8698 -a 0 -x {10.0 9.0 4344 ------- null} + -t 4.91506 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8709 -a 0 -x {9.0 10.0 4359 ------- null} - -t 4.91506 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8709 -a 0 -x {9.0 10.0 4359 ------- null} h -t 4.91506 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8709 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.91518 -s 0 -d 9 -p ack -e 40 -c 0 -i 8702 -a 0 -x {10.0 9.0 4346 ------- null} - -t 4.91518 -s 0 -d 9 -p ack -e 40 -c 0 -i 8702 -a 0 -x {10.0 9.0 4346 ------- null} h -t 4.91518 -s 0 -d 9 -p ack -e 40 -c 0 -i 8702 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.9153 -s 10 -d 7 -p ack -e 40 -c 0 -i 8706 -a 0 -x {10.0 9.0 4348 ------- null} + -t 4.9153 -s 7 -d 0 -p ack -e 40 -c 0 -i 8706 -a 0 -x {10.0 9.0 4348 ------- null} h -t 4.9153 -s 7 -d 8 -p ack -e 40 -c 0 -i 8706 -a 0 -x {10.0 9.0 4348 ------- null} r -t 4.91557 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8705 -a 0 -x {9.0 10.0 4357 ------- null} + -t 4.91557 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8705 -a 0 -x {9.0 10.0 4357 ------- null} h -t 4.91557 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8705 -a 0 -x {9.0 10.0 4357 ------- null} r -t 4.91566 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8691 -a 0 -x {9.0 10.0 4350 ------- null} + -t 4.91566 -s 10 -d 7 -p ack -e 40 -c 0 -i 8710 -a 0 -x {10.0 9.0 4350 ------- null} - -t 4.91566 -s 10 -d 7 -p ack -e 40 -c 0 -i 8710 -a 0 -x {10.0 9.0 4350 ------- null} h -t 4.91566 -s 10 -d 7 -p ack -e 40 -c 0 -i 8710 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.91613 -s 0 -d 9 -p ack -e 40 -c 0 -i 8700 -a 0 -x {10.0 9.0 4345 ------- null} + -t 4.91613 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8711 -a 0 -x {9.0 10.0 4360 ------- null} - -t 4.91613 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8711 -a 0 -x {9.0 10.0 4360 ------- null} h -t 4.91613 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8711 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.91613 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8697 -a 0 -x {9.0 10.0 4353 ------- null} - -t 4.91613 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8697 -a 0 -x {9.0 10.0 4353 ------- null} h -t 4.91613 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8697 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.91619 -s 0 -d 9 -p ack -e 40 -c 0 -i 8704 -a 0 -x {10.0 9.0 4347 ------- null} - -t 4.91619 -s 0 -d 9 -p ack -e 40 -c 0 -i 8704 -a 0 -x {10.0 9.0 4347 ------- null} h -t 4.91619 -s 0 -d 9 -p ack -e 40 -c 0 -i 8704 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.91661 -s 10 -d 7 -p ack -e 40 -c 0 -i 8708 -a 0 -x {10.0 9.0 4349 ------- null} + -t 4.91661 -s 7 -d 0 -p ack -e 40 -c 0 -i 8708 -a 0 -x {10.0 9.0 4349 ------- null} h -t 4.91661 -s 7 -d 8 -p ack -e 40 -c 0 -i 8708 -a 0 -x {10.0 9.0 4349 ------- null} r -t 4.91672 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8707 -a 0 -x {9.0 10.0 4358 ------- null} + -t 4.91672 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8707 -a 0 -x {9.0 10.0 4358 ------- null} h -t 4.91672 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8707 -a 0 -x {9.0 10.0 4358 ------- null} r -t 4.91675 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8693 -a 0 -x {9.0 10.0 4351 ------- null} + -t 4.91675 -s 10 -d 7 -p ack -e 40 -c 0 -i 8712 -a 0 -x {10.0 9.0 4351 ------- null} - -t 4.91675 -s 10 -d 7 -p ack -e 40 -c 0 -i 8712 -a 0 -x {10.0 9.0 4351 ------- null} h -t 4.91675 -s 10 -d 7 -p ack -e 40 -c 0 -i 8712 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.91722 -s 0 -d 9 -p ack -e 40 -c 0 -i 8702 -a 0 -x {10.0 9.0 4346 ------- null} + -t 4.91722 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8713 -a 0 -x {9.0 10.0 4361 ------- null} - -t 4.91722 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8713 -a 0 -x {9.0 10.0 4361 ------- null} h -t 4.91722 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8713 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.91722 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8699 -a 0 -x {9.0 10.0 4354 ------- null} - -t 4.91722 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8699 -a 0 -x {9.0 10.0 4354 ------- null} h -t 4.91722 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8699 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.91741 -s 0 -d 9 -p ack -e 40 -c 0 -i 8706 -a 0 -x {10.0 9.0 4348 ------- null} - -t 4.91741 -s 0 -d 9 -p ack -e 40 -c 0 -i 8706 -a 0 -x {10.0 9.0 4348 ------- null} h -t 4.91741 -s 0 -d 9 -p ack -e 40 -c 0 -i 8706 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.9177 -s 10 -d 7 -p ack -e 40 -c 0 -i 8710 -a 0 -x {10.0 9.0 4350 ------- null} + -t 4.9177 -s 7 -d 0 -p ack -e 40 -c 0 -i 8710 -a 0 -x {10.0 9.0 4350 ------- null} h -t 4.9177 -s 7 -d 8 -p ack -e 40 -c 0 -i 8710 -a 0 -x {10.0 9.0 4350 ------- null} r -t 4.91784 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8695 -a 0 -x {9.0 10.0 4352 ------- null} + -t 4.91784 -s 10 -d 7 -p ack -e 40 -c 0 -i 8714 -a 0 -x {10.0 9.0 4352 ------- null} - -t 4.91784 -s 10 -d 7 -p ack -e 40 -c 0 -i 8714 -a 0 -x {10.0 9.0 4352 ------- null} h -t 4.91784 -s 10 -d 7 -p ack -e 40 -c 0 -i 8714 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.91786 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8709 -a 0 -x {9.0 10.0 4359 ------- null} + -t 4.91786 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8709 -a 0 -x {9.0 10.0 4359 ------- null} h -t 4.91786 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8709 -a 0 -x {9.0 10.0 4359 ------- null} r -t 4.91822 -s 0 -d 9 -p ack -e 40 -c 0 -i 8704 -a 0 -x {10.0 9.0 4347 ------- null} + -t 4.91822 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8715 -a 0 -x {9.0 10.0 4362 ------- null} - -t 4.91822 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8715 -a 0 -x {9.0 10.0 4362 ------- null} h -t 4.91822 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8715 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.9183 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8701 -a 0 -x {9.0 10.0 4355 ------- null} - -t 4.9183 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8701 -a 0 -x {9.0 10.0 4355 ------- null} h -t 4.9183 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8701 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.91837 -s 0 -d 9 -p ack -e 40 -c 0 -i 8708 -a 0 -x {10.0 9.0 4349 ------- null} - -t 4.91837 -s 0 -d 9 -p ack -e 40 -c 0 -i 8708 -a 0 -x {10.0 9.0 4349 ------- null} h -t 4.91837 -s 0 -d 9 -p ack -e 40 -c 0 -i 8708 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.91878 -s 10 -d 7 -p ack -e 40 -c 0 -i 8712 -a 0 -x {10.0 9.0 4351 ------- null} + -t 4.91878 -s 7 -d 0 -p ack -e 40 -c 0 -i 8712 -a 0 -x {10.0 9.0 4351 ------- null} h -t 4.91878 -s 7 -d 8 -p ack -e 40 -c 0 -i 8712 -a 0 -x {10.0 9.0 4351 ------- null} r -t 4.91893 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8711 -a 0 -x {9.0 10.0 4360 ------- null} + -t 4.91893 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8711 -a 0 -x {9.0 10.0 4360 ------- null} h -t 4.91893 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8711 -a 0 -x {9.0 10.0 4360 ------- null} r -t 4.91893 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8697 -a 0 -x {9.0 10.0 4353 ------- null} + -t 4.91893 -s 10 -d 7 -p ack -e 40 -c 0 -i 8716 -a 0 -x {10.0 9.0 4353 ------- null} - -t 4.91893 -s 10 -d 7 -p ack -e 40 -c 0 -i 8716 -a 0 -x {10.0 9.0 4353 ------- null} h -t 4.91893 -s 10 -d 7 -p ack -e 40 -c 0 -i 8716 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.91939 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8703 -a 0 -x {9.0 10.0 4356 ------- null} - -t 4.91939 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8703 -a 0 -x {9.0 10.0 4356 ------- null} h -t 4.91939 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8703 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.91944 -s 0 -d 9 -p ack -e 40 -c 0 -i 8706 -a 0 -x {10.0 9.0 4348 ------- null} + -t 4.91944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8717 -a 0 -x {9.0 10.0 4363 ------- null} - -t 4.91944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8717 -a 0 -x {9.0 10.0 4363 ------- null} h -t 4.91944 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8717 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.91947 -s 0 -d 9 -p ack -e 40 -c 0 -i 8710 -a 0 -x {10.0 9.0 4350 ------- null} - -t 4.91947 -s 0 -d 9 -p ack -e 40 -c 0 -i 8710 -a 0 -x {10.0 9.0 4350 ------- null} h -t 4.91947 -s 0 -d 9 -p ack -e 40 -c 0 -i 8710 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.91987 -s 10 -d 7 -p ack -e 40 -c 0 -i 8714 -a 0 -x {10.0 9.0 4352 ------- null} + -t 4.91987 -s 7 -d 0 -p ack -e 40 -c 0 -i 8714 -a 0 -x {10.0 9.0 4352 ------- null} h -t 4.91987 -s 7 -d 8 -p ack -e 40 -c 0 -i 8714 -a 0 -x {10.0 9.0 4352 ------- null} r -t 4.92002 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8713 -a 0 -x {9.0 10.0 4361 ------- null} + -t 4.92002 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8713 -a 0 -x {9.0 10.0 4361 ------- null} h -t 4.92002 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8713 -a 0 -x {9.0 10.0 4361 ------- null} r -t 4.92002 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8699 -a 0 -x {9.0 10.0 4354 ------- null} + -t 4.92002 -s 10 -d 7 -p ack -e 40 -c 0 -i 8718 -a 0 -x {10.0 9.0 4354 ------- null} - -t 4.92002 -s 10 -d 7 -p ack -e 40 -c 0 -i 8718 -a 0 -x {10.0 9.0 4354 ------- null} h -t 4.92002 -s 10 -d 7 -p ack -e 40 -c 0 -i 8718 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.9204 -s 0 -d 9 -p ack -e 40 -c 0 -i 8708 -a 0 -x {10.0 9.0 4349 ------- null} + -t 4.9204 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8719 -a 0 -x {9.0 10.0 4364 ------- null} - -t 4.9204 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8719 -a 0 -x {9.0 10.0 4364 ------- null} h -t 4.9204 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8719 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.92048 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8705 -a 0 -x {9.0 10.0 4357 ------- null} - -t 4.92048 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8705 -a 0 -x {9.0 10.0 4357 ------- null} h -t 4.92048 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8705 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.92061 -s 0 -d 9 -p ack -e 40 -c 0 -i 8712 -a 0 -x {10.0 9.0 4351 ------- null} - -t 4.92061 -s 0 -d 9 -p ack -e 40 -c 0 -i 8712 -a 0 -x {10.0 9.0 4351 ------- null} h -t 4.92061 -s 0 -d 9 -p ack -e 40 -c 0 -i 8712 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.92096 -s 10 -d 7 -p ack -e 40 -c 0 -i 8716 -a 0 -x {10.0 9.0 4353 ------- null} + -t 4.92096 -s 7 -d 0 -p ack -e 40 -c 0 -i 8716 -a 0 -x {10.0 9.0 4353 ------- null} h -t 4.92096 -s 7 -d 8 -p ack -e 40 -c 0 -i 8716 -a 0 -x {10.0 9.0 4353 ------- null} r -t 4.92102 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8715 -a 0 -x {9.0 10.0 4362 ------- null} + -t 4.92102 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8715 -a 0 -x {9.0 10.0 4362 ------- null} h -t 4.92102 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8715 -a 0 -x {9.0 10.0 4362 ------- null} r -t 4.9211 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8701 -a 0 -x {9.0 10.0 4355 ------- null} + -t 4.9211 -s 10 -d 7 -p ack -e 40 -c 0 -i 8720 -a 0 -x {10.0 9.0 4355 ------- null} - -t 4.9211 -s 10 -d 7 -p ack -e 40 -c 0 -i 8720 -a 0 -x {10.0 9.0 4355 ------- null} h -t 4.9211 -s 10 -d 7 -p ack -e 40 -c 0 -i 8720 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.9215 -s 0 -d 9 -p ack -e 40 -c 0 -i 8710 -a 0 -x {10.0 9.0 4350 ------- null} + -t 4.9215 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8721 -a 0 -x {9.0 10.0 4365 ------- null} - -t 4.9215 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8721 -a 0 -x {9.0 10.0 4365 ------- null} h -t 4.9215 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8721 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.92157 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8707 -a 0 -x {9.0 10.0 4358 ------- null} - -t 4.92157 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8707 -a 0 -x {9.0 10.0 4358 ------- null} h -t 4.92157 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8707 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.92187 -s 0 -d 9 -p ack -e 40 -c 0 -i 8714 -a 0 -x {10.0 9.0 4352 ------- null} - -t 4.92187 -s 0 -d 9 -p ack -e 40 -c 0 -i 8714 -a 0 -x {10.0 9.0 4352 ------- null} h -t 4.92187 -s 0 -d 9 -p ack -e 40 -c 0 -i 8714 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.92205 -s 10 -d 7 -p ack -e 40 -c 0 -i 8718 -a 0 -x {10.0 9.0 4354 ------- null} + -t 4.92205 -s 7 -d 0 -p ack -e 40 -c 0 -i 8718 -a 0 -x {10.0 9.0 4354 ------- null} h -t 4.92205 -s 7 -d 8 -p ack -e 40 -c 0 -i 8718 -a 0 -x {10.0 9.0 4354 ------- null} r -t 4.92219 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8703 -a 0 -x {9.0 10.0 4356 ------- null} + -t 4.92219 -s 10 -d 7 -p ack -e 40 -c 0 -i 8722 -a 0 -x {10.0 9.0 4356 ------- null} - -t 4.92219 -s 10 -d 7 -p ack -e 40 -c 0 -i 8722 -a 0 -x {10.0 9.0 4356 ------- null} h -t 4.92219 -s 10 -d 7 -p ack -e 40 -c 0 -i 8722 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.92224 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8717 -a 0 -x {9.0 10.0 4363 ------- null} + -t 4.92224 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8717 -a 0 -x {9.0 10.0 4363 ------- null} h -t 4.92224 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8717 -a 0 -x {9.0 10.0 4363 ------- null} r -t 4.92264 -s 0 -d 9 -p ack -e 40 -c 0 -i 8712 -a 0 -x {10.0 9.0 4351 ------- null} + -t 4.92264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8723 -a 0 -x {9.0 10.0 4366 ------- null} - -t 4.92264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8723 -a 0 -x {9.0 10.0 4366 ------- null} h -t 4.92264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8723 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.92288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8709 -a 0 -x {9.0 10.0 4359 ------- null} - -t 4.92288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8709 -a 0 -x {9.0 10.0 4359 ------- null} h -t 4.92288 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8709 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.92301 -s 0 -d 9 -p ack -e 40 -c 0 -i 8716 -a 0 -x {10.0 9.0 4353 ------- null} - -t 4.92301 -s 0 -d 9 -p ack -e 40 -c 0 -i 8716 -a 0 -x {10.0 9.0 4353 ------- null} h -t 4.92301 -s 0 -d 9 -p ack -e 40 -c 0 -i 8716 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.92314 -s 10 -d 7 -p ack -e 40 -c 0 -i 8720 -a 0 -x {10.0 9.0 4355 ------- null} + -t 4.92314 -s 7 -d 0 -p ack -e 40 -c 0 -i 8720 -a 0 -x {10.0 9.0 4355 ------- null} h -t 4.92314 -s 7 -d 8 -p ack -e 40 -c 0 -i 8720 -a 0 -x {10.0 9.0 4355 ------- null} r -t 4.9232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8719 -a 0 -x {9.0 10.0 4364 ------- null} + -t 4.9232 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8719 -a 0 -x {9.0 10.0 4364 ------- null} h -t 4.9232 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8719 -a 0 -x {9.0 10.0 4364 ------- null} r -t 4.92328 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8705 -a 0 -x {9.0 10.0 4357 ------- null} + -t 4.92328 -s 10 -d 7 -p ack -e 40 -c 0 -i 8724 -a 0 -x {10.0 9.0 4357 ------- null} - -t 4.92328 -s 10 -d 7 -p ack -e 40 -c 0 -i 8724 -a 0 -x {10.0 9.0 4357 ------- null} h -t 4.92328 -s 10 -d 7 -p ack -e 40 -c 0 -i 8724 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.9239 -s 0 -d 9 -p ack -e 40 -c 0 -i 8714 -a 0 -x {10.0 9.0 4352 ------- null} + -t 4.9239 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8725 -a 0 -x {9.0 10.0 4367 ------- null} - -t 4.9239 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8725 -a 0 -x {9.0 10.0 4367 ------- null} h -t 4.9239 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8725 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.92397 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8711 -a 0 -x {9.0 10.0 4360 ------- null} - -t 4.92397 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8711 -a 0 -x {9.0 10.0 4360 ------- null} h -t 4.92397 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8711 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.92422 -s 10 -d 7 -p ack -e 40 -c 0 -i 8722 -a 0 -x {10.0 9.0 4356 ------- null} + -t 4.92422 -s 7 -d 0 -p ack -e 40 -c 0 -i 8722 -a 0 -x {10.0 9.0 4356 ------- null} h -t 4.92422 -s 7 -d 8 -p ack -e 40 -c 0 -i 8722 -a 0 -x {10.0 9.0 4356 ------- null} + -t 4.92424 -s 0 -d 9 -p ack -e 40 -c 0 -i 8718 -a 0 -x {10.0 9.0 4354 ------- null} - -t 4.92424 -s 0 -d 9 -p ack -e 40 -c 0 -i 8718 -a 0 -x {10.0 9.0 4354 ------- null} h -t 4.92424 -s 0 -d 9 -p ack -e 40 -c 0 -i 8718 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.9243 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8721 -a 0 -x {9.0 10.0 4365 ------- null} + -t 4.9243 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8721 -a 0 -x {9.0 10.0 4365 ------- null} h -t 4.9243 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8721 -a 0 -x {9.0 10.0 4365 ------- null} r -t 4.92437 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8707 -a 0 -x {9.0 10.0 4358 ------- null} + -t 4.92437 -s 10 -d 7 -p ack -e 40 -c 0 -i 8726 -a 0 -x {10.0 9.0 4358 ------- null} - -t 4.92437 -s 10 -d 7 -p ack -e 40 -c 0 -i 8726 -a 0 -x {10.0 9.0 4358 ------- null} h -t 4.92437 -s 10 -d 7 -p ack -e 40 -c 0 -i 8726 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.92504 -s 0 -d 9 -p ack -e 40 -c 0 -i 8716 -a 0 -x {10.0 9.0 4353 ------- null} + -t 4.92504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8727 -a 0 -x {9.0 10.0 4368 ------- null} - -t 4.92504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8727 -a 0 -x {9.0 10.0 4368 ------- null} h -t 4.92504 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8727 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.92512 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8713 -a 0 -x {9.0 10.0 4361 ------- null} - -t 4.92512 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8713 -a 0 -x {9.0 10.0 4361 ------- null} h -t 4.92512 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8713 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.92531 -s 10 -d 7 -p ack -e 40 -c 0 -i 8724 -a 0 -x {10.0 9.0 4357 ------- null} + -t 4.92531 -s 7 -d 0 -p ack -e 40 -c 0 -i 8724 -a 0 -x {10.0 9.0 4357 ------- null} h -t 4.92531 -s 7 -d 8 -p ack -e 40 -c 0 -i 8724 -a 0 -x {10.0 9.0 4357 ------- null} + -t 4.92533 -s 0 -d 9 -p ack -e 40 -c 0 -i 8720 -a 0 -x {10.0 9.0 4355 ------- null} - -t 4.92533 -s 0 -d 9 -p ack -e 40 -c 0 -i 8720 -a 0 -x {10.0 9.0 4355 ------- null} h -t 4.92533 -s 0 -d 9 -p ack -e 40 -c 0 -i 8720 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.92544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8723 -a 0 -x {9.0 10.0 4366 ------- null} + -t 4.92544 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8723 -a 0 -x {9.0 10.0 4366 ------- null} h -t 4.92544 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8723 -a 0 -x {9.0 10.0 4366 ------- null} r -t 4.92568 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8709 -a 0 -x {9.0 10.0 4359 ------- null} + -t 4.92568 -s 10 -d 7 -p ack -e 40 -c 0 -i 8728 -a 0 -x {10.0 9.0 4359 ------- null} - -t 4.92568 -s 10 -d 7 -p ack -e 40 -c 0 -i 8728 -a 0 -x {10.0 9.0 4359 ------- null} h -t 4.92568 -s 10 -d 7 -p ack -e 40 -c 0 -i 8728 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.92621 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8715 -a 0 -x {9.0 10.0 4362 ------- null} - -t 4.92621 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8715 -a 0 -x {9.0 10.0 4362 ------- null} h -t 4.92621 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8715 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.92627 -s 0 -d 9 -p ack -e 40 -c 0 -i 8718 -a 0 -x {10.0 9.0 4354 ------- null} + -t 4.92627 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8729 -a 0 -x {9.0 10.0 4369 ------- null} - -t 4.92627 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8729 -a 0 -x {9.0 10.0 4369 ------- null} h -t 4.92627 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8729 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.9264 -s 10 -d 7 -p ack -e 40 -c 0 -i 8726 -a 0 -x {10.0 9.0 4358 ------- null} + -t 4.9264 -s 7 -d 0 -p ack -e 40 -c 0 -i 8726 -a 0 -x {10.0 9.0 4358 ------- null} h -t 4.9264 -s 7 -d 8 -p ack -e 40 -c 0 -i 8726 -a 0 -x {10.0 9.0 4358 ------- null} + -t 4.92642 -s 0 -d 9 -p ack -e 40 -c 0 -i 8722 -a 0 -x {10.0 9.0 4356 ------- null} - -t 4.92642 -s 0 -d 9 -p ack -e 40 -c 0 -i 8722 -a 0 -x {10.0 9.0 4356 ------- null} h -t 4.92642 -s 0 -d 9 -p ack -e 40 -c 0 -i 8722 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.9267 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8725 -a 0 -x {9.0 10.0 4367 ------- null} + -t 4.9267 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8725 -a 0 -x {9.0 10.0 4367 ------- null} h -t 4.9267 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8725 -a 0 -x {9.0 10.0 4367 ------- null} r -t 4.92677 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8711 -a 0 -x {9.0 10.0 4360 ------- null} + -t 4.92677 -s 10 -d 7 -p ack -e 40 -c 0 -i 8730 -a 0 -x {10.0 9.0 4360 ------- null} - -t 4.92677 -s 10 -d 7 -p ack -e 40 -c 0 -i 8730 -a 0 -x {10.0 9.0 4360 ------- null} h -t 4.92677 -s 10 -d 7 -p ack -e 40 -c 0 -i 8730 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.9273 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8717 -a 0 -x {9.0 10.0 4363 ------- null} - -t 4.9273 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8717 -a 0 -x {9.0 10.0 4363 ------- null} h -t 4.9273 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8717 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.92736 -s 0 -d 9 -p ack -e 40 -c 0 -i 8720 -a 0 -x {10.0 9.0 4355 ------- null} + -t 4.92736 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8731 -a 0 -x {9.0 10.0 4370 ------- null} - -t 4.92736 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8731 -a 0 -x {9.0 10.0 4370 ------- null} h -t 4.92736 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8731 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.92749 -s 0 -d 9 -p ack -e 40 -c 0 -i 8724 -a 0 -x {10.0 9.0 4357 ------- null} - -t 4.92749 -s 0 -d 9 -p ack -e 40 -c 0 -i 8724 -a 0 -x {10.0 9.0 4357 ------- null} h -t 4.92749 -s 0 -d 9 -p ack -e 40 -c 0 -i 8724 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.92771 -s 10 -d 7 -p ack -e 40 -c 0 -i 8728 -a 0 -x {10.0 9.0 4359 ------- null} + -t 4.92771 -s 7 -d 0 -p ack -e 40 -c 0 -i 8728 -a 0 -x {10.0 9.0 4359 ------- null} h -t 4.92771 -s 7 -d 8 -p ack -e 40 -c 0 -i 8728 -a 0 -x {10.0 9.0 4359 ------- null} r -t 4.92784 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8727 -a 0 -x {9.0 10.0 4368 ------- null} + -t 4.92784 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8727 -a 0 -x {9.0 10.0 4368 ------- null} h -t 4.92784 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8727 -a 0 -x {9.0 10.0 4368 ------- null} r -t 4.92792 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8713 -a 0 -x {9.0 10.0 4361 ------- null} + -t 4.92792 -s 10 -d 7 -p ack -e 40 -c 0 -i 8732 -a 0 -x {10.0 9.0 4361 ------- null} - -t 4.92792 -s 10 -d 7 -p ack -e 40 -c 0 -i 8732 -a 0 -x {10.0 9.0 4361 ------- null} h -t 4.92792 -s 10 -d 7 -p ack -e 40 -c 0 -i 8732 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.92838 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8719 -a 0 -x {9.0 10.0 4364 ------- null} - -t 4.92838 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8719 -a 0 -x {9.0 10.0 4364 ------- null} h -t 4.92838 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8719 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.92845 -s 0 -d 9 -p ack -e 40 -c 0 -i 8722 -a 0 -x {10.0 9.0 4356 ------- null} + -t 4.92845 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8733 -a 0 -x {9.0 10.0 4371 ------- null} - -t 4.92845 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8733 -a 0 -x {9.0 10.0 4371 ------- null} h -t 4.92845 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8733 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.92854 -s 0 -d 9 -p ack -e 40 -c 0 -i 8726 -a 0 -x {10.0 9.0 4358 ------- null} - -t 4.92854 -s 0 -d 9 -p ack -e 40 -c 0 -i 8726 -a 0 -x {10.0 9.0 4358 ------- null} h -t 4.92854 -s 0 -d 9 -p ack -e 40 -c 0 -i 8726 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.9288 -s 10 -d 7 -p ack -e 40 -c 0 -i 8730 -a 0 -x {10.0 9.0 4360 ------- null} + -t 4.9288 -s 7 -d 0 -p ack -e 40 -c 0 -i 8730 -a 0 -x {10.0 9.0 4360 ------- null} h -t 4.9288 -s 7 -d 8 -p ack -e 40 -c 0 -i 8730 -a 0 -x {10.0 9.0 4360 ------- null} r -t 4.92901 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8715 -a 0 -x {9.0 10.0 4362 ------- null} + -t 4.92901 -s 10 -d 7 -p ack -e 40 -c 0 -i 8734 -a 0 -x {10.0 9.0 4362 ------- null} - -t 4.92901 -s 10 -d 7 -p ack -e 40 -c 0 -i 8734 -a 0 -x {10.0 9.0 4362 ------- null} h -t 4.92901 -s 10 -d 7 -p ack -e 40 -c 0 -i 8734 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.92907 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8729 -a 0 -x {9.0 10.0 4369 ------- null} + -t 4.92907 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8729 -a 0 -x {9.0 10.0 4369 ------- null} h -t 4.92907 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8729 -a 0 -x {9.0 10.0 4369 ------- null} + -t 4.92947 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8721 -a 0 -x {9.0 10.0 4365 ------- null} - -t 4.92947 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8721 -a 0 -x {9.0 10.0 4365 ------- null} h -t 4.92947 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8721 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.92952 -s 0 -d 9 -p ack -e 40 -c 0 -i 8724 -a 0 -x {10.0 9.0 4357 ------- null} + -t 4.92952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8735 -a 0 -x {9.0 10.0 4372 ------- null} - -t 4.92952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8735 -a 0 -x {9.0 10.0 4372 ------- null} h -t 4.92952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8735 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.92966 -s 0 -d 9 -p ack -e 40 -c 0 -i 8728 -a 0 -x {10.0 9.0 4359 ------- null} - -t 4.92966 -s 0 -d 9 -p ack -e 40 -c 0 -i 8728 -a 0 -x {10.0 9.0 4359 ------- null} h -t 4.92966 -s 0 -d 9 -p ack -e 40 -c 0 -i 8728 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.92995 -s 10 -d 7 -p ack -e 40 -c 0 -i 8732 -a 0 -x {10.0 9.0 4361 ------- null} + -t 4.92995 -s 7 -d 0 -p ack -e 40 -c 0 -i 8732 -a 0 -x {10.0 9.0 4361 ------- null} h -t 4.92995 -s 7 -d 8 -p ack -e 40 -c 0 -i 8732 -a 0 -x {10.0 9.0 4361 ------- null} r -t 4.9301 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8717 -a 0 -x {9.0 10.0 4363 ------- null} + -t 4.9301 -s 10 -d 7 -p ack -e 40 -c 0 -i 8736 -a 0 -x {10.0 9.0 4363 ------- null} - -t 4.9301 -s 10 -d 7 -p ack -e 40 -c 0 -i 8736 -a 0 -x {10.0 9.0 4363 ------- null} h -t 4.9301 -s 10 -d 7 -p ack -e 40 -c 0 -i 8736 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.93016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8731 -a 0 -x {9.0 10.0 4370 ------- null} + -t 4.93016 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8731 -a 0 -x {9.0 10.0 4370 ------- null} h -t 4.93016 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8731 -a 0 -x {9.0 10.0 4370 ------- null} + -t 4.93056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8723 -a 0 -x {9.0 10.0 4366 ------- null} - -t 4.93056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8723 -a 0 -x {9.0 10.0 4366 ------- null} h -t 4.93056 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8723 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.93058 -s 0 -d 9 -p ack -e 40 -c 0 -i 8726 -a 0 -x {10.0 9.0 4358 ------- null} + -t 4.93058 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8737 -a 0 -x {9.0 10.0 4373 ------- null} - -t 4.93058 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8737 -a 0 -x {9.0 10.0 4373 ------- null} h -t 4.93058 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8737 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.93069 -s 0 -d 9 -p ack -e 40 -c 0 -i 8730 -a 0 -x {10.0 9.0 4360 ------- null} - -t 4.93069 -s 0 -d 9 -p ack -e 40 -c 0 -i 8730 -a 0 -x {10.0 9.0 4360 ------- null} h -t 4.93069 -s 0 -d 9 -p ack -e 40 -c 0 -i 8730 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.93104 -s 10 -d 7 -p ack -e 40 -c 0 -i 8734 -a 0 -x {10.0 9.0 4362 ------- null} + -t 4.93104 -s 7 -d 0 -p ack -e 40 -c 0 -i 8734 -a 0 -x {10.0 9.0 4362 ------- null} h -t 4.93104 -s 7 -d 8 -p ack -e 40 -c 0 -i 8734 -a 0 -x {10.0 9.0 4362 ------- null} r -t 4.93118 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8719 -a 0 -x {9.0 10.0 4364 ------- null} + -t 4.93118 -s 10 -d 7 -p ack -e 40 -c 0 -i 8738 -a 0 -x {10.0 9.0 4364 ------- null} - -t 4.93118 -s 10 -d 7 -p ack -e 40 -c 0 -i 8738 -a 0 -x {10.0 9.0 4364 ------- null} h -t 4.93118 -s 10 -d 7 -p ack -e 40 -c 0 -i 8738 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.93125 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8733 -a 0 -x {9.0 10.0 4371 ------- null} + -t 4.93125 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8733 -a 0 -x {9.0 10.0 4371 ------- null} h -t 4.93125 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8733 -a 0 -x {9.0 10.0 4371 ------- null} + -t 4.93165 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8725 -a 0 -x {9.0 10.0 4367 ------- null} - -t 4.93165 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8725 -a 0 -x {9.0 10.0 4367 ------- null} h -t 4.93165 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8725 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.9317 -s 0 -d 9 -p ack -e 40 -c 0 -i 8728 -a 0 -x {10.0 9.0 4359 ------- null} + -t 4.9317 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8739 -a 0 -x {9.0 10.0 4374 ------- null} - -t 4.9317 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8739 -a 0 -x {9.0 10.0 4374 ------- null} h -t 4.9317 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8739 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.93179 -s 0 -d 9 -p ack -e 40 -c 0 -i 8732 -a 0 -x {10.0 9.0 4361 ------- null} - -t 4.93179 -s 0 -d 9 -p ack -e 40 -c 0 -i 8732 -a 0 -x {10.0 9.0 4361 ------- null} h -t 4.93179 -s 0 -d 9 -p ack -e 40 -c 0 -i 8732 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.93213 -s 10 -d 7 -p ack -e 40 -c 0 -i 8736 -a 0 -x {10.0 9.0 4363 ------- null} + -t 4.93213 -s 7 -d 0 -p ack -e 40 -c 0 -i 8736 -a 0 -x {10.0 9.0 4363 ------- null} h -t 4.93213 -s 7 -d 8 -p ack -e 40 -c 0 -i 8736 -a 0 -x {10.0 9.0 4363 ------- null} r -t 4.93227 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8721 -a 0 -x {9.0 10.0 4365 ------- null} + -t 4.93227 -s 10 -d 7 -p ack -e 40 -c 0 -i 8740 -a 0 -x {10.0 9.0 4365 ------- null} - -t 4.93227 -s 10 -d 7 -p ack -e 40 -c 0 -i 8740 -a 0 -x {10.0 9.0 4365 ------- null} h -t 4.93227 -s 10 -d 7 -p ack -e 40 -c 0 -i 8740 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.93232 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8735 -a 0 -x {9.0 10.0 4372 ------- null} + -t 4.93232 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8735 -a 0 -x {9.0 10.0 4372 ------- null} h -t 4.93232 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8735 -a 0 -x {9.0 10.0 4372 ------- null} r -t 4.93272 -s 0 -d 9 -p ack -e 40 -c 0 -i 8730 -a 0 -x {10.0 9.0 4360 ------- null} + -t 4.93272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8741 -a 0 -x {9.0 10.0 4375 ------- null} - -t 4.93272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8741 -a 0 -x {9.0 10.0 4375 ------- null} h -t 4.93272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8741 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.93274 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8727 -a 0 -x {9.0 10.0 4368 ------- null} - -t 4.93274 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8727 -a 0 -x {9.0 10.0 4368 ------- null} h -t 4.93274 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8727 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.93293 -s 0 -d 9 -p ack -e 40 -c 0 -i 8734 -a 0 -x {10.0 9.0 4362 ------- null} - -t 4.93293 -s 0 -d 9 -p ack -e 40 -c 0 -i 8734 -a 0 -x {10.0 9.0 4362 ------- null} h -t 4.93293 -s 0 -d 9 -p ack -e 40 -c 0 -i 8734 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.93322 -s 10 -d 7 -p ack -e 40 -c 0 -i 8738 -a 0 -x {10.0 9.0 4364 ------- null} + -t 4.93322 -s 7 -d 0 -p ack -e 40 -c 0 -i 8738 -a 0 -x {10.0 9.0 4364 ------- null} h -t 4.93322 -s 7 -d 8 -p ack -e 40 -c 0 -i 8738 -a 0 -x {10.0 9.0 4364 ------- null} r -t 4.93336 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8723 -a 0 -x {9.0 10.0 4366 ------- null} + -t 4.93336 -s 10 -d 7 -p ack -e 40 -c 0 -i 8742 -a 0 -x {10.0 9.0 4366 ------- null} - -t 4.93336 -s 10 -d 7 -p ack -e 40 -c 0 -i 8742 -a 0 -x {10.0 9.0 4366 ------- null} h -t 4.93336 -s 10 -d 7 -p ack -e 40 -c 0 -i 8742 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.93338 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8737 -a 0 -x {9.0 10.0 4373 ------- null} + -t 4.93338 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8737 -a 0 -x {9.0 10.0 4373 ------- null} h -t 4.93338 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8737 -a 0 -x {9.0 10.0 4373 ------- null} r -t 4.93382 -s 0 -d 9 -p ack -e 40 -c 0 -i 8732 -a 0 -x {10.0 9.0 4361 ------- null} + -t 4.93382 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8743 -a 0 -x {9.0 10.0 4376 ------- null} - -t 4.93382 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8743 -a 0 -x {9.0 10.0 4376 ------- null} h -t 4.93382 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8743 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.93382 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8729 -a 0 -x {9.0 10.0 4369 ------- null} - -t 4.93382 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8729 -a 0 -x {9.0 10.0 4369 ------- null} h -t 4.93382 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8729 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.93408 -s 0 -d 9 -p ack -e 40 -c 0 -i 8736 -a 0 -x {10.0 9.0 4363 ------- null} - -t 4.93408 -s 0 -d 9 -p ack -e 40 -c 0 -i 8736 -a 0 -x {10.0 9.0 4363 ------- null} h -t 4.93408 -s 0 -d 9 -p ack -e 40 -c 0 -i 8736 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.9343 -s 10 -d 7 -p ack -e 40 -c 0 -i 8740 -a 0 -x {10.0 9.0 4365 ------- null} + -t 4.9343 -s 7 -d 0 -p ack -e 40 -c 0 -i 8740 -a 0 -x {10.0 9.0 4365 ------- null} h -t 4.9343 -s 7 -d 8 -p ack -e 40 -c 0 -i 8740 -a 0 -x {10.0 9.0 4365 ------- null} r -t 4.93445 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8725 -a 0 -x {9.0 10.0 4367 ------- null} + -t 4.93445 -s 10 -d 7 -p ack -e 40 -c 0 -i 8744 -a 0 -x {10.0 9.0 4367 ------- null} - -t 4.93445 -s 10 -d 7 -p ack -e 40 -c 0 -i 8744 -a 0 -x {10.0 9.0 4367 ------- null} h -t 4.93445 -s 10 -d 7 -p ack -e 40 -c 0 -i 8744 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.9345 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8739 -a 0 -x {9.0 10.0 4374 ------- null} + -t 4.9345 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8739 -a 0 -x {9.0 10.0 4374 ------- null} h -t 4.9345 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8739 -a 0 -x {9.0 10.0 4374 ------- null} + -t 4.93491 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8731 -a 0 -x {9.0 10.0 4370 ------- null} - -t 4.93491 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8731 -a 0 -x {9.0 10.0 4370 ------- null} h -t 4.93491 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8731 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.93496 -s 0 -d 9 -p ack -e 40 -c 0 -i 8734 -a 0 -x {10.0 9.0 4362 ------- null} + -t 4.93496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8745 -a 0 -x {9.0 10.0 4377 ------- null} - -t 4.93496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8745 -a 0 -x {9.0 10.0 4377 ------- null} h -t 4.93496 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8745 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.93514 -s 0 -d 9 -p ack -e 40 -c 0 -i 8738 -a 0 -x {10.0 9.0 4364 ------- null} - -t 4.93514 -s 0 -d 9 -p ack -e 40 -c 0 -i 8738 -a 0 -x {10.0 9.0 4364 ------- null} h -t 4.93514 -s 0 -d 9 -p ack -e 40 -c 0 -i 8738 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.93539 -s 10 -d 7 -p ack -e 40 -c 0 -i 8742 -a 0 -x {10.0 9.0 4366 ------- null} + -t 4.93539 -s 7 -d 0 -p ack -e 40 -c 0 -i 8742 -a 0 -x {10.0 9.0 4366 ------- null} h -t 4.93539 -s 7 -d 8 -p ack -e 40 -c 0 -i 8742 -a 0 -x {10.0 9.0 4366 ------- null} r -t 4.93552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8741 -a 0 -x {9.0 10.0 4375 ------- null} + -t 4.93552 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8741 -a 0 -x {9.0 10.0 4375 ------- null} h -t 4.93552 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8741 -a 0 -x {9.0 10.0 4375 ------- null} r -t 4.93554 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8727 -a 0 -x {9.0 10.0 4368 ------- null} + -t 4.93554 -s 10 -d 7 -p ack -e 40 -c 0 -i 8746 -a 0 -x {10.0 9.0 4368 ------- null} - -t 4.93554 -s 10 -d 7 -p ack -e 40 -c 0 -i 8746 -a 0 -x {10.0 9.0 4368 ------- null} h -t 4.93554 -s 10 -d 7 -p ack -e 40 -c 0 -i 8746 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8733 -a 0 -x {9.0 10.0 4371 ------- null} - -t 4.936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8733 -a 0 -x {9.0 10.0 4371 ------- null} h -t 4.936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8733 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.93611 -s 0 -d 9 -p ack -e 40 -c 0 -i 8736 -a 0 -x {10.0 9.0 4363 ------- null} + -t 4.93611 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8747 -a 0 -x {9.0 10.0 4378 ------- null} - -t 4.93611 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8747 -a 0 -x {9.0 10.0 4378 ------- null} h -t 4.93611 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8747 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.93611 -s 0 -d 9 -p ack -e 40 -c 0 -i 8740 -a 0 -x {10.0 9.0 4365 ------- null} - -t 4.93611 -s 0 -d 9 -p ack -e 40 -c 0 -i 8740 -a 0 -x {10.0 9.0 4365 ------- null} h -t 4.93611 -s 0 -d 9 -p ack -e 40 -c 0 -i 8740 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.93648 -s 10 -d 7 -p ack -e 40 -c 0 -i 8744 -a 0 -x {10.0 9.0 4367 ------- null} + -t 4.93648 -s 7 -d 0 -p ack -e 40 -c 0 -i 8744 -a 0 -x {10.0 9.0 4367 ------- null} h -t 4.93648 -s 7 -d 8 -p ack -e 40 -c 0 -i 8744 -a 0 -x {10.0 9.0 4367 ------- null} r -t 4.93662 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8743 -a 0 -x {9.0 10.0 4376 ------- null} + -t 4.93662 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8743 -a 0 -x {9.0 10.0 4376 ------- null} h -t 4.93662 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8743 -a 0 -x {9.0 10.0 4376 ------- null} r -t 4.93662 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8729 -a 0 -x {9.0 10.0 4369 ------- null} + -t 4.93662 -s 10 -d 7 -p ack -e 40 -c 0 -i 8748 -a 0 -x {10.0 9.0 4369 ------- null} - -t 4.93662 -s 10 -d 7 -p ack -e 40 -c 0 -i 8748 -a 0 -x {10.0 9.0 4369 ------- null} h -t 4.93662 -s 10 -d 7 -p ack -e 40 -c 0 -i 8748 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.93709 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8735 -a 0 -x {9.0 10.0 4372 ------- null} - -t 4.93709 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8735 -a 0 -x {9.0 10.0 4372 ------- null} h -t 4.93709 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8735 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.93717 -s 0 -d 9 -p ack -e 40 -c 0 -i 8738 -a 0 -x {10.0 9.0 4364 ------- null} + -t 4.93717 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8749 -a 0 -x {9.0 10.0 4379 ------- null} - -t 4.93717 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8749 -a 0 -x {9.0 10.0 4379 ------- null} h -t 4.93717 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8749 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.93738 -s 0 -d 9 -p ack -e 40 -c 0 -i 8742 -a 0 -x {10.0 9.0 4366 ------- null} - -t 4.93738 -s 0 -d 9 -p ack -e 40 -c 0 -i 8742 -a 0 -x {10.0 9.0 4366 ------- null} h -t 4.93738 -s 0 -d 9 -p ack -e 40 -c 0 -i 8742 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.93757 -s 10 -d 7 -p ack -e 40 -c 0 -i 8746 -a 0 -x {10.0 9.0 4368 ------- null} + -t 4.93757 -s 7 -d 0 -p ack -e 40 -c 0 -i 8746 -a 0 -x {10.0 9.0 4368 ------- null} h -t 4.93757 -s 7 -d 8 -p ack -e 40 -c 0 -i 8746 -a 0 -x {10.0 9.0 4368 ------- null} r -t 4.93771 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8731 -a 0 -x {9.0 10.0 4370 ------- null} + -t 4.93771 -s 10 -d 7 -p ack -e 40 -c 0 -i 8750 -a 0 -x {10.0 9.0 4370 ------- null} - -t 4.93771 -s 10 -d 7 -p ack -e 40 -c 0 -i 8750 -a 0 -x {10.0 9.0 4370 ------- null} h -t 4.93771 -s 10 -d 7 -p ack -e 40 -c 0 -i 8750 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.93776 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8745 -a 0 -x {9.0 10.0 4377 ------- null} + -t 4.93776 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8745 -a 0 -x {9.0 10.0 4377 ------- null} h -t 4.93776 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8745 -a 0 -x {9.0 10.0 4377 ------- null} r -t 4.93814 -s 0 -d 9 -p ack -e 40 -c 0 -i 8740 -a 0 -x {10.0 9.0 4365 ------- null} + -t 4.93814 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8751 -a 0 -x {9.0 10.0 4380 ------- null} - -t 4.93814 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8751 -a 0 -x {9.0 10.0 4380 ------- null} h -t 4.93814 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8751 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.93822 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8737 -a 0 -x {9.0 10.0 4373 ------- null} - -t 4.93822 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8737 -a 0 -x {9.0 10.0 4373 ------- null} h -t 4.93822 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8737 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.93843 -s 0 -d 9 -p ack -e 40 -c 0 -i 8744 -a 0 -x {10.0 9.0 4367 ------- null} - -t 4.93843 -s 0 -d 9 -p ack -e 40 -c 0 -i 8744 -a 0 -x {10.0 9.0 4367 ------- null} h -t 4.93843 -s 0 -d 9 -p ack -e 40 -c 0 -i 8744 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.93866 -s 10 -d 7 -p ack -e 40 -c 0 -i 8748 -a 0 -x {10.0 9.0 4369 ------- null} + -t 4.93866 -s 7 -d 0 -p ack -e 40 -c 0 -i 8748 -a 0 -x {10.0 9.0 4369 ------- null} h -t 4.93866 -s 7 -d 8 -p ack -e 40 -c 0 -i 8748 -a 0 -x {10.0 9.0 4369 ------- null} r -t 4.9388 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8733 -a 0 -x {9.0 10.0 4371 ------- null} + -t 4.9388 -s 10 -d 7 -p ack -e 40 -c 0 -i 8752 -a 0 -x {10.0 9.0 4371 ------- null} - -t 4.9388 -s 10 -d 7 -p ack -e 40 -c 0 -i 8752 -a 0 -x {10.0 9.0 4371 ------- null} h -t 4.9388 -s 10 -d 7 -p ack -e 40 -c 0 -i 8752 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.93891 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8747 -a 0 -x {9.0 10.0 4378 ------- null} + -t 4.93891 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8747 -a 0 -x {9.0 10.0 4378 ------- null} h -t 4.93891 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8747 -a 0 -x {9.0 10.0 4378 ------- null} + -t 4.93931 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8739 -a 0 -x {9.0 10.0 4374 ------- null} - -t 4.93931 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8739 -a 0 -x {9.0 10.0 4374 ------- null} h -t 4.93931 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8739 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.93941 -s 0 -d 9 -p ack -e 40 -c 0 -i 8742 -a 0 -x {10.0 9.0 4366 ------- null} + -t 4.93941 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8753 -a 0 -x {9.0 10.0 4381 ------- null} - -t 4.93941 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8753 -a 0 -x {9.0 10.0 4381 ------- null} h -t 4.93941 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8753 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.93947 -s 0 -d 9 -p ack -e 40 -c 0 -i 8746 -a 0 -x {10.0 9.0 4368 ------- null} - -t 4.93947 -s 0 -d 9 -p ack -e 40 -c 0 -i 8746 -a 0 -x {10.0 9.0 4368 ------- null} h -t 4.93947 -s 0 -d 9 -p ack -e 40 -c 0 -i 8746 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.93974 -s 10 -d 7 -p ack -e 40 -c 0 -i 8750 -a 0 -x {10.0 9.0 4370 ------- null} + -t 4.93974 -s 7 -d 0 -p ack -e 40 -c 0 -i 8750 -a 0 -x {10.0 9.0 4370 ------- null} h -t 4.93974 -s 7 -d 8 -p ack -e 40 -c 0 -i 8750 -a 0 -x {10.0 9.0 4370 ------- null} r -t 4.93989 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8735 -a 0 -x {9.0 10.0 4372 ------- null} + -t 4.93989 -s 10 -d 7 -p ack -e 40 -c 0 -i 8754 -a 0 -x {10.0 9.0 4372 ------- null} - -t 4.93989 -s 10 -d 7 -p ack -e 40 -c 0 -i 8754 -a 0 -x {10.0 9.0 4372 ------- null} h -t 4.93989 -s 10 -d 7 -p ack -e 40 -c 0 -i 8754 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.93997 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8749 -a 0 -x {9.0 10.0 4379 ------- null} + -t 4.93997 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8749 -a 0 -x {9.0 10.0 4379 ------- null} h -t 4.93997 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8749 -a 0 -x {9.0 10.0 4379 ------- null} + -t 4.9404 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8741 -a 0 -x {9.0 10.0 4375 ------- null} - -t 4.9404 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8741 -a 0 -x {9.0 10.0 4375 ------- null} h -t 4.9404 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8741 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.94046 -s 0 -d 9 -p ack -e 40 -c 0 -i 8744 -a 0 -x {10.0 9.0 4367 ------- null} + -t 4.94046 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8755 -a 0 -x {9.0 10.0 4382 ------- null} - -t 4.94046 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8755 -a 0 -x {9.0 10.0 4382 ------- null} h -t 4.94046 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8755 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.9405 -s 0 -d 9 -p ack -e 40 -c 0 -i 8748 -a 0 -x {10.0 9.0 4369 ------- null} - -t 4.9405 -s 0 -d 9 -p ack -e 40 -c 0 -i 8748 -a 0 -x {10.0 9.0 4369 ------- null} h -t 4.9405 -s 0 -d 9 -p ack -e 40 -c 0 -i 8748 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.94083 -s 10 -d 7 -p ack -e 40 -c 0 -i 8752 -a 0 -x {10.0 9.0 4371 ------- null} + -t 4.94083 -s 7 -d 0 -p ack -e 40 -c 0 -i 8752 -a 0 -x {10.0 9.0 4371 ------- null} h -t 4.94083 -s 7 -d 8 -p ack -e 40 -c 0 -i 8752 -a 0 -x {10.0 9.0 4371 ------- null} r -t 4.94094 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8751 -a 0 -x {9.0 10.0 4380 ------- null} + -t 4.94094 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8751 -a 0 -x {9.0 10.0 4380 ------- null} h -t 4.94094 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8751 -a 0 -x {9.0 10.0 4380 ------- null} r -t 4.94102 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8737 -a 0 -x {9.0 10.0 4373 ------- null} + -t 4.94102 -s 10 -d 7 -p ack -e 40 -c 0 -i 8756 -a 0 -x {10.0 9.0 4373 ------- null} - -t 4.94102 -s 10 -d 7 -p ack -e 40 -c 0 -i 8756 -a 0 -x {10.0 9.0 4373 ------- null} h -t 4.94102 -s 10 -d 7 -p ack -e 40 -c 0 -i 8756 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.94149 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8743 -a 0 -x {9.0 10.0 4376 ------- null} - -t 4.94149 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8743 -a 0 -x {9.0 10.0 4376 ------- null} h -t 4.94149 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8743 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.9415 -s 0 -d 9 -p ack -e 40 -c 0 -i 8746 -a 0 -x {10.0 9.0 4368 ------- null} + -t 4.9415 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8757 -a 0 -x {9.0 10.0 4383 ------- null} - -t 4.9415 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8757 -a 0 -x {9.0 10.0 4383 ------- null} h -t 4.9415 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8757 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.94173 -s 0 -d 9 -p ack -e 40 -c 0 -i 8750 -a 0 -x {10.0 9.0 4370 ------- null} - -t 4.94173 -s 0 -d 9 -p ack -e 40 -c 0 -i 8750 -a 0 -x {10.0 9.0 4370 ------- null} h -t 4.94173 -s 0 -d 9 -p ack -e 40 -c 0 -i 8750 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.94192 -s 10 -d 7 -p ack -e 40 -c 0 -i 8754 -a 0 -x {10.0 9.0 4372 ------- null} + -t 4.94192 -s 7 -d 0 -p ack -e 40 -c 0 -i 8754 -a 0 -x {10.0 9.0 4372 ------- null} h -t 4.94192 -s 7 -d 8 -p ack -e 40 -c 0 -i 8754 -a 0 -x {10.0 9.0 4372 ------- null} r -t 4.94211 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8739 -a 0 -x {9.0 10.0 4374 ------- null} + -t 4.94211 -s 10 -d 7 -p ack -e 40 -c 0 -i 8758 -a 0 -x {10.0 9.0 4374 ------- null} - -t 4.94211 -s 10 -d 7 -p ack -e 40 -c 0 -i 8758 -a 0 -x {10.0 9.0 4374 ------- null} h -t 4.94211 -s 10 -d 7 -p ack -e 40 -c 0 -i 8758 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.94221 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8753 -a 0 -x {9.0 10.0 4381 ------- null} + -t 4.94221 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8753 -a 0 -x {9.0 10.0 4381 ------- null} h -t 4.94221 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8753 -a 0 -x {9.0 10.0 4381 ------- null} r -t 4.94253 -s 0 -d 9 -p ack -e 40 -c 0 -i 8748 -a 0 -x {10.0 9.0 4369 ------- null} + -t 4.94253 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8759 -a 0 -x {9.0 10.0 4384 ------- null} - -t 4.94253 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8759 -a 0 -x {9.0 10.0 4384 ------- null} h -t 4.94253 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8759 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.94258 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8745 -a 0 -x {9.0 10.0 4377 ------- null} - -t 4.94258 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8745 -a 0 -x {9.0 10.0 4377 ------- null} h -t 4.94258 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8745 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.94266 -s 0 -d 9 -p ack -e 40 -c 0 -i 8752 -a 0 -x {10.0 9.0 4371 ------- null} - -t 4.94266 -s 0 -d 9 -p ack -e 40 -c 0 -i 8752 -a 0 -x {10.0 9.0 4371 ------- null} h -t 4.94266 -s 0 -d 9 -p ack -e 40 -c 0 -i 8752 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.94306 -s 10 -d 7 -p ack -e 40 -c 0 -i 8756 -a 0 -x {10.0 9.0 4373 ------- null} + -t 4.94306 -s 7 -d 0 -p ack -e 40 -c 0 -i 8756 -a 0 -x {10.0 9.0 4373 ------- null} h -t 4.94306 -s 7 -d 8 -p ack -e 40 -c 0 -i 8756 -a 0 -x {10.0 9.0 4373 ------- null} r -t 4.9432 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8741 -a 0 -x {9.0 10.0 4375 ------- null} + -t 4.9432 -s 10 -d 7 -p ack -e 40 -c 0 -i 8760 -a 0 -x {10.0 9.0 4375 ------- null} - -t 4.9432 -s 10 -d 7 -p ack -e 40 -c 0 -i 8760 -a 0 -x {10.0 9.0 4375 ------- null} h -t 4.9432 -s 10 -d 7 -p ack -e 40 -c 0 -i 8760 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.94326 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8755 -a 0 -x {9.0 10.0 4382 ------- null} + -t 4.94326 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8755 -a 0 -x {9.0 10.0 4382 ------- null} h -t 4.94326 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8755 -a 0 -x {9.0 10.0 4382 ------- null} + -t 4.94366 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8747 -a 0 -x {9.0 10.0 4378 ------- null} - -t 4.94366 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8747 -a 0 -x {9.0 10.0 4378 ------- null} h -t 4.94366 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8747 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.94373 -s 0 -d 9 -p ack -e 40 -c 0 -i 8754 -a 0 -x {10.0 9.0 4372 ------- null} - -t 4.94373 -s 0 -d 9 -p ack -e 40 -c 0 -i 8754 -a 0 -x {10.0 9.0 4372 ------- null} h -t 4.94373 -s 0 -d 9 -p ack -e 40 -c 0 -i 8754 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.94376 -s 0 -d 9 -p ack -e 40 -c 0 -i 8750 -a 0 -x {10.0 9.0 4370 ------- null} + -t 4.94376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8761 -a 0 -x {9.0 10.0 4385 ------- null} - -t 4.94376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8761 -a 0 -x {9.0 10.0 4385 ------- null} h -t 4.94376 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8761 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.94414 -s 10 -d 7 -p ack -e 40 -c 0 -i 8758 -a 0 -x {10.0 9.0 4374 ------- null} + -t 4.94414 -s 7 -d 0 -p ack -e 40 -c 0 -i 8758 -a 0 -x {10.0 9.0 4374 ------- null} h -t 4.94414 -s 7 -d 8 -p ack -e 40 -c 0 -i 8758 -a 0 -x {10.0 9.0 4374 ------- null} r -t 4.94429 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8743 -a 0 -x {9.0 10.0 4376 ------- null} + -t 4.94429 -s 10 -d 7 -p ack -e 40 -c 0 -i 8762 -a 0 -x {10.0 9.0 4376 ------- null} - -t 4.94429 -s 10 -d 7 -p ack -e 40 -c 0 -i 8762 -a 0 -x {10.0 9.0 4376 ------- null} h -t 4.94429 -s 10 -d 7 -p ack -e 40 -c 0 -i 8762 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.9443 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8757 -a 0 -x {9.0 10.0 4383 ------- null} + -t 4.9443 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8757 -a 0 -x {9.0 10.0 4383 ------- null} h -t 4.9443 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8757 -a 0 -x {9.0 10.0 4383 ------- null} r -t 4.94469 -s 0 -d 9 -p ack -e 40 -c 0 -i 8752 -a 0 -x {10.0 9.0 4371 ------- null} + -t 4.94469 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8763 -a 0 -x {9.0 10.0 4386 ------- null} - -t 4.94469 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8763 -a 0 -x {9.0 10.0 4386 ------- null} h -t 4.94469 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8763 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.94475 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8749 -a 0 -x {9.0 10.0 4379 ------- null} - -t 4.94475 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8749 -a 0 -x {9.0 10.0 4379 ------- null} h -t 4.94475 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8749 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.94501 -s 0 -d 9 -p ack -e 40 -c 0 -i 8756 -a 0 -x {10.0 9.0 4373 ------- null} - -t 4.94501 -s 0 -d 9 -p ack -e 40 -c 0 -i 8756 -a 0 -x {10.0 9.0 4373 ------- null} h -t 4.94501 -s 0 -d 9 -p ack -e 40 -c 0 -i 8756 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.94523 -s 10 -d 7 -p ack -e 40 -c 0 -i 8760 -a 0 -x {10.0 9.0 4375 ------- null} + -t 4.94523 -s 7 -d 0 -p ack -e 40 -c 0 -i 8760 -a 0 -x {10.0 9.0 4375 ------- null} h -t 4.94523 -s 7 -d 8 -p ack -e 40 -c 0 -i 8760 -a 0 -x {10.0 9.0 4375 ------- null} r -t 4.94533 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8759 -a 0 -x {9.0 10.0 4384 ------- null} + -t 4.94533 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8759 -a 0 -x {9.0 10.0 4384 ------- null} h -t 4.94533 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8759 -a 0 -x {9.0 10.0 4384 ------- null} r -t 4.94538 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8745 -a 0 -x {9.0 10.0 4377 ------- null} + -t 4.94538 -s 10 -d 7 -p ack -e 40 -c 0 -i 8764 -a 0 -x {10.0 9.0 4377 ------- null} - -t 4.94538 -s 10 -d 7 -p ack -e 40 -c 0 -i 8764 -a 0 -x {10.0 9.0 4377 ------- null} h -t 4.94538 -s 10 -d 7 -p ack -e 40 -c 0 -i 8764 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.94576 -s 0 -d 9 -p ack -e 40 -c 0 -i 8754 -a 0 -x {10.0 9.0 4372 ------- null} + -t 4.94576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8765 -a 0 -x {9.0 10.0 4387 ------- null} - -t 4.94576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8765 -a 0 -x {9.0 10.0 4387 ------- null} h -t 4.94576 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8765 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.94584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8751 -a 0 -x {9.0 10.0 4380 ------- null} - -t 4.94584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8751 -a 0 -x {9.0 10.0 4380 ------- null} h -t 4.94584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8751 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.94611 -s 0 -d 9 -p ack -e 40 -c 0 -i 8758 -a 0 -x {10.0 9.0 4374 ------- null} - -t 4.94611 -s 0 -d 9 -p ack -e 40 -c 0 -i 8758 -a 0 -x {10.0 9.0 4374 ------- null} h -t 4.94611 -s 0 -d 9 -p ack -e 40 -c 0 -i 8758 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.94632 -s 10 -d 7 -p ack -e 40 -c 0 -i 8762 -a 0 -x {10.0 9.0 4376 ------- null} + -t 4.94632 -s 7 -d 0 -p ack -e 40 -c 0 -i 8762 -a 0 -x {10.0 9.0 4376 ------- null} h -t 4.94632 -s 7 -d 8 -p ack -e 40 -c 0 -i 8762 -a 0 -x {10.0 9.0 4376 ------- null} r -t 4.94646 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8747 -a 0 -x {9.0 10.0 4378 ------- null} + -t 4.94646 -s 10 -d 7 -p ack -e 40 -c 0 -i 8766 -a 0 -x {10.0 9.0 4378 ------- null} - -t 4.94646 -s 10 -d 7 -p ack -e 40 -c 0 -i 8766 -a 0 -x {10.0 9.0 4378 ------- null} h -t 4.94646 -s 10 -d 7 -p ack -e 40 -c 0 -i 8766 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.94656 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8761 -a 0 -x {9.0 10.0 4385 ------- null} + -t 4.94656 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8761 -a 0 -x {9.0 10.0 4385 ------- null} h -t 4.94656 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8761 -a 0 -x {9.0 10.0 4385 ------- null} r -t 4.94704 -s 0 -d 9 -p ack -e 40 -c 0 -i 8756 -a 0 -x {10.0 9.0 4373 ------- null} + -t 4.94704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8767 -a 0 -x {9.0 10.0 4388 ------- null} - -t 4.94704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8767 -a 0 -x {9.0 10.0 4388 ------- null} h -t 4.94704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8767 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.94718 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8753 -a 0 -x {9.0 10.0 4381 ------- null} - -t 4.94718 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8753 -a 0 -x {9.0 10.0 4381 ------- null} h -t 4.94718 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8753 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.94726 -s 0 -d 9 -p ack -e 40 -c 0 -i 8760 -a 0 -x {10.0 9.0 4375 ------- null} - -t 4.94726 -s 0 -d 9 -p ack -e 40 -c 0 -i 8760 -a 0 -x {10.0 9.0 4375 ------- null} h -t 4.94726 -s 0 -d 9 -p ack -e 40 -c 0 -i 8760 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.94741 -s 10 -d 7 -p ack -e 40 -c 0 -i 8764 -a 0 -x {10.0 9.0 4377 ------- null} + -t 4.94741 -s 7 -d 0 -p ack -e 40 -c 0 -i 8764 -a 0 -x {10.0 9.0 4377 ------- null} h -t 4.94741 -s 7 -d 8 -p ack -e 40 -c 0 -i 8764 -a 0 -x {10.0 9.0 4377 ------- null} r -t 4.94749 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8763 -a 0 -x {9.0 10.0 4386 ------- null} + -t 4.94749 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8763 -a 0 -x {9.0 10.0 4386 ------- null} h -t 4.94749 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8763 -a 0 -x {9.0 10.0 4386 ------- null} r -t 4.94755 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8749 -a 0 -x {9.0 10.0 4379 ------- null} + -t 4.94755 -s 10 -d 7 -p ack -e 40 -c 0 -i 8768 -a 0 -x {10.0 9.0 4379 ------- null} - -t 4.94755 -s 10 -d 7 -p ack -e 40 -c 0 -i 8768 -a 0 -x {10.0 9.0 4379 ------- null} h -t 4.94755 -s 10 -d 7 -p ack -e 40 -c 0 -i 8768 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.94814 -s 0 -d 9 -p ack -e 40 -c 0 -i 8758 -a 0 -x {10.0 9.0 4374 ------- null} + -t 4.94814 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8769 -a 0 -x {9.0 10.0 4389 ------- null} - -t 4.94814 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8769 -a 0 -x {9.0 10.0 4389 ------- null} h -t 4.94814 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8769 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.94827 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8755 -a 0 -x {9.0 10.0 4382 ------- null} - -t 4.94827 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8755 -a 0 -x {9.0 10.0 4382 ------- null} h -t 4.94827 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8755 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.94842 -s 0 -d 9 -p ack -e 40 -c 0 -i 8762 -a 0 -x {10.0 9.0 4376 ------- null} - -t 4.94842 -s 0 -d 9 -p ack -e 40 -c 0 -i 8762 -a 0 -x {10.0 9.0 4376 ------- null} h -t 4.94842 -s 0 -d 9 -p ack -e 40 -c 0 -i 8762 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.9485 -s 10 -d 7 -p ack -e 40 -c 0 -i 8766 -a 0 -x {10.0 9.0 4378 ------- null} + -t 4.9485 -s 7 -d 0 -p ack -e 40 -c 0 -i 8766 -a 0 -x {10.0 9.0 4378 ------- null} h -t 4.9485 -s 7 -d 8 -p ack -e 40 -c 0 -i 8766 -a 0 -x {10.0 9.0 4378 ------- null} r -t 4.94856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8765 -a 0 -x {9.0 10.0 4387 ------- null} + -t 4.94856 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8765 -a 0 -x {9.0 10.0 4387 ------- null} h -t 4.94856 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8765 -a 0 -x {9.0 10.0 4387 ------- null} r -t 4.94864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8751 -a 0 -x {9.0 10.0 4380 ------- null} + -t 4.94864 -s 10 -d 7 -p ack -e 40 -c 0 -i 8770 -a 0 -x {10.0 9.0 4380 ------- null} - -t 4.94864 -s 10 -d 7 -p ack -e 40 -c 0 -i 8770 -a 0 -x {10.0 9.0 4380 ------- null} h -t 4.94864 -s 10 -d 7 -p ack -e 40 -c 0 -i 8770 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.9493 -s 0 -d 9 -p ack -e 40 -c 0 -i 8760 -a 0 -x {10.0 9.0 4375 ------- null} + -t 4.9493 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8771 -a 0 -x {9.0 10.0 4390 ------- null} - -t 4.9493 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8771 -a 0 -x {9.0 10.0 4390 ------- null} h -t 4.9493 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8771 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.94936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8757 -a 0 -x {9.0 10.0 4383 ------- null} - -t 4.94936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8757 -a 0 -x {9.0 10.0 4383 ------- null} h -t 4.94936 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8757 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.94958 -s 10 -d 7 -p ack -e 40 -c 0 -i 8768 -a 0 -x {10.0 9.0 4379 ------- null} + -t 4.94958 -s 7 -d 0 -p ack -e 40 -c 0 -i 8768 -a 0 -x {10.0 9.0 4379 ------- null} h -t 4.94958 -s 7 -d 8 -p ack -e 40 -c 0 -i 8768 -a 0 -x {10.0 9.0 4379 ------- null} + -t 4.94966 -s 0 -d 9 -p ack -e 40 -c 0 -i 8764 -a 0 -x {10.0 9.0 4377 ------- null} - -t 4.94966 -s 0 -d 9 -p ack -e 40 -c 0 -i 8764 -a 0 -x {10.0 9.0 4377 ------- null} h -t 4.94966 -s 0 -d 9 -p ack -e 40 -c 0 -i 8764 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.94984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8767 -a 0 -x {9.0 10.0 4388 ------- null} + -t 4.94984 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8767 -a 0 -x {9.0 10.0 4388 ------- null} h -t 4.94984 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8767 -a 0 -x {9.0 10.0 4388 ------- null} r -t 4.94998 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8753 -a 0 -x {9.0 10.0 4381 ------- null} + -t 4.94998 -s 10 -d 7 -p ack -e 40 -c 0 -i 8772 -a 0 -x {10.0 9.0 4381 ------- null} - -t 4.94998 -s 10 -d 7 -p ack -e 40 -c 0 -i 8772 -a 0 -x {10.0 9.0 4381 ------- null} h -t 4.94998 -s 10 -d 7 -p ack -e 40 -c 0 -i 8772 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.95045 -s 0 -d 9 -p ack -e 40 -c 0 -i 8762 -a 0 -x {10.0 9.0 4376 ------- null} + -t 4.95045 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8773 -a 0 -x {9.0 10.0 4391 ------- null} - -t 4.95045 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8773 -a 0 -x {9.0 10.0 4391 ------- null} h -t 4.95045 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8773 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.9505 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8759 -a 0 -x {9.0 10.0 4384 ------- null} - -t 4.9505 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8759 -a 0 -x {9.0 10.0 4384 ------- null} h -t 4.9505 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8759 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.95067 -s 10 -d 7 -p ack -e 40 -c 0 -i 8770 -a 0 -x {10.0 9.0 4380 ------- null} + -t 4.95067 -s 7 -d 0 -p ack -e 40 -c 0 -i 8770 -a 0 -x {10.0 9.0 4380 ------- null} h -t 4.95067 -s 7 -d 8 -p ack -e 40 -c 0 -i 8770 -a 0 -x {10.0 9.0 4380 ------- null} + -t 4.95069 -s 0 -d 9 -p ack -e 40 -c 0 -i 8766 -a 0 -x {10.0 9.0 4378 ------- null} - -t 4.95069 -s 0 -d 9 -p ack -e 40 -c 0 -i 8766 -a 0 -x {10.0 9.0 4378 ------- null} h -t 4.95069 -s 0 -d 9 -p ack -e 40 -c 0 -i 8766 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.95094 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8769 -a 0 -x {9.0 10.0 4389 ------- null} + -t 4.95094 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8769 -a 0 -x {9.0 10.0 4389 ------- null} h -t 4.95094 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8769 -a 0 -x {9.0 10.0 4389 ------- null} r -t 4.95107 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8755 -a 0 -x {9.0 10.0 4382 ------- null} + -t 4.95107 -s 10 -d 7 -p ack -e 40 -c 0 -i 8774 -a 0 -x {10.0 9.0 4382 ------- null} - -t 4.95107 -s 10 -d 7 -p ack -e 40 -c 0 -i 8774 -a 0 -x {10.0 9.0 4382 ------- null} h -t 4.95107 -s 10 -d 7 -p ack -e 40 -c 0 -i 8774 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.95158 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8761 -a 0 -x {9.0 10.0 4385 ------- null} - -t 4.95158 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8761 -a 0 -x {9.0 10.0 4385 ------- null} h -t 4.95158 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8761 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.95168 -s 0 -d 9 -p ack -e 40 -c 0 -i 8768 -a 0 -x {10.0 9.0 4379 ------- null} - -t 4.95168 -s 0 -d 9 -p ack -e 40 -c 0 -i 8768 -a 0 -x {10.0 9.0 4379 ------- null} h -t 4.95168 -s 0 -d 9 -p ack -e 40 -c 0 -i 8768 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.9517 -s 0 -d 9 -p ack -e 40 -c 0 -i 8764 -a 0 -x {10.0 9.0 4377 ------- null} + -t 4.9517 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8775 -a 0 -x {9.0 10.0 4392 ------- null} - -t 4.9517 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8775 -a 0 -x {9.0 10.0 4392 ------- null} h -t 4.9517 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8775 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.95202 -s 10 -d 7 -p ack -e 40 -c 0 -i 8772 -a 0 -x {10.0 9.0 4381 ------- null} + -t 4.95202 -s 7 -d 0 -p ack -e 40 -c 0 -i 8772 -a 0 -x {10.0 9.0 4381 ------- null} h -t 4.95202 -s 7 -d 8 -p ack -e 40 -c 0 -i 8772 -a 0 -x {10.0 9.0 4381 ------- null} r -t 4.9521 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8771 -a 0 -x {9.0 10.0 4390 ------- null} + -t 4.9521 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8771 -a 0 -x {9.0 10.0 4390 ------- null} h -t 4.9521 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8771 -a 0 -x {9.0 10.0 4390 ------- null} r -t 4.95216 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8757 -a 0 -x {9.0 10.0 4383 ------- null} + -t 4.95216 -s 10 -d 7 -p ack -e 40 -c 0 -i 8776 -a 0 -x {10.0 9.0 4383 ------- null} - -t 4.95216 -s 10 -d 7 -p ack -e 40 -c 0 -i 8776 -a 0 -x {10.0 9.0 4383 ------- null} h -t 4.95216 -s 10 -d 7 -p ack -e 40 -c 0 -i 8776 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.95267 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8763 -a 0 -x {9.0 10.0 4386 ------- null} - -t 4.95267 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8763 -a 0 -x {9.0 10.0 4386 ------- null} h -t 4.95267 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8763 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.95272 -s 0 -d 9 -p ack -e 40 -c 0 -i 8766 -a 0 -x {10.0 9.0 4378 ------- null} + -t 4.95272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8777 -a 0 -x {9.0 10.0 4393 ------- null} - -t 4.95272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8777 -a 0 -x {9.0 10.0 4393 ------- null} h -t 4.95272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8777 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.9528 -s 0 -d 9 -p ack -e 40 -c 0 -i 8770 -a 0 -x {10.0 9.0 4380 ------- null} - -t 4.9528 -s 0 -d 9 -p ack -e 40 -c 0 -i 8770 -a 0 -x {10.0 9.0 4380 ------- null} h -t 4.9528 -s 0 -d 9 -p ack -e 40 -c 0 -i 8770 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.9531 -s 10 -d 7 -p ack -e 40 -c 0 -i 8774 -a 0 -x {10.0 9.0 4382 ------- null} + -t 4.9531 -s 7 -d 0 -p ack -e 40 -c 0 -i 8774 -a 0 -x {10.0 9.0 4382 ------- null} h -t 4.9531 -s 7 -d 8 -p ack -e 40 -c 0 -i 8774 -a 0 -x {10.0 9.0 4382 ------- null} r -t 4.95325 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8773 -a 0 -x {9.0 10.0 4391 ------- null} + -t 4.95325 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8773 -a 0 -x {9.0 10.0 4391 ------- null} h -t 4.95325 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8773 -a 0 -x {9.0 10.0 4391 ------- null} r -t 4.9533 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8759 -a 0 -x {9.0 10.0 4384 ------- null} + -t 4.9533 -s 10 -d 7 -p ack -e 40 -c 0 -i 8778 -a 0 -x {10.0 9.0 4384 ------- null} - -t 4.9533 -s 10 -d 7 -p ack -e 40 -c 0 -i 8778 -a 0 -x {10.0 9.0 4384 ------- null} h -t 4.9533 -s 10 -d 7 -p ack -e 40 -c 0 -i 8778 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.95371 -s 0 -d 9 -p ack -e 40 -c 0 -i 8768 -a 0 -x {10.0 9.0 4379 ------- null} + -t 4.95371 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8779 -a 0 -x {9.0 10.0 4394 ------- null} - -t 4.95371 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8779 -a 0 -x {9.0 10.0 4394 ------- null} h -t 4.95371 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8779 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.95376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8765 -a 0 -x {9.0 10.0 4387 ------- null} - -t 4.95376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8765 -a 0 -x {9.0 10.0 4387 ------- null} h -t 4.95376 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8765 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.95394 -s 0 -d 9 -p ack -e 40 -c 0 -i 8772 -a 0 -x {10.0 9.0 4381 ------- null} - -t 4.95394 -s 0 -d 9 -p ack -e 40 -c 0 -i 8772 -a 0 -x {10.0 9.0 4381 ------- null} h -t 4.95394 -s 0 -d 9 -p ack -e 40 -c 0 -i 8772 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.95419 -s 10 -d 7 -p ack -e 40 -c 0 -i 8776 -a 0 -x {10.0 9.0 4383 ------- null} + -t 4.95419 -s 7 -d 0 -p ack -e 40 -c 0 -i 8776 -a 0 -x {10.0 9.0 4383 ------- null} h -t 4.95419 -s 7 -d 8 -p ack -e 40 -c 0 -i 8776 -a 0 -x {10.0 9.0 4383 ------- null} r -t 4.95438 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8761 -a 0 -x {9.0 10.0 4385 ------- null} + -t 4.95438 -s 10 -d 7 -p ack -e 40 -c 0 -i 8780 -a 0 -x {10.0 9.0 4385 ------- null} - -t 4.95438 -s 10 -d 7 -p ack -e 40 -c 0 -i 8780 -a 0 -x {10.0 9.0 4385 ------- null} h -t 4.95438 -s 10 -d 7 -p ack -e 40 -c 0 -i 8780 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.9545 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8775 -a 0 -x {9.0 10.0 4392 ------- null} + -t 4.9545 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8775 -a 0 -x {9.0 10.0 4392 ------- null} h -t 4.9545 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8775 -a 0 -x {9.0 10.0 4392 ------- null} r -t 4.95483 -s 0 -d 9 -p ack -e 40 -c 0 -i 8770 -a 0 -x {10.0 9.0 4380 ------- null} + -t 4.95483 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8781 -a 0 -x {9.0 10.0 4395 ------- null} - -t 4.95483 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8781 -a 0 -x {9.0 10.0 4395 ------- null} h -t 4.95483 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8781 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.95485 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8767 -a 0 -x {9.0 10.0 4388 ------- null} - -t 4.95485 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8767 -a 0 -x {9.0 10.0 4388 ------- null} h -t 4.95485 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8767 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.95499 -s 0 -d 9 -p ack -e 40 -c 0 -i 8774 -a 0 -x {10.0 9.0 4382 ------- null} - -t 4.95499 -s 0 -d 9 -p ack -e 40 -c 0 -i 8774 -a 0 -x {10.0 9.0 4382 ------- null} h -t 4.95499 -s 0 -d 9 -p ack -e 40 -c 0 -i 8774 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.95533 -s 10 -d 7 -p ack -e 40 -c 0 -i 8778 -a 0 -x {10.0 9.0 4384 ------- null} + -t 4.95533 -s 7 -d 0 -p ack -e 40 -c 0 -i 8778 -a 0 -x {10.0 9.0 4384 ------- null} h -t 4.95533 -s 7 -d 8 -p ack -e 40 -c 0 -i 8778 -a 0 -x {10.0 9.0 4384 ------- null} r -t 4.95547 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8763 -a 0 -x {9.0 10.0 4386 ------- null} + -t 4.95547 -s 10 -d 7 -p ack -e 40 -c 0 -i 8782 -a 0 -x {10.0 9.0 4386 ------- null} - -t 4.95547 -s 10 -d 7 -p ack -e 40 -c 0 -i 8782 -a 0 -x {10.0 9.0 4386 ------- null} h -t 4.95547 -s 10 -d 7 -p ack -e 40 -c 0 -i 8782 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.95552 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8777 -a 0 -x {9.0 10.0 4393 ------- null} + -t 4.95552 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8777 -a 0 -x {9.0 10.0 4393 ------- null} h -t 4.95552 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8777 -a 0 -x {9.0 10.0 4393 ------- null} + -t 4.95594 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8769 -a 0 -x {9.0 10.0 4389 ------- null} - -t 4.95594 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8769 -a 0 -x {9.0 10.0 4389 ------- null} h -t 4.95594 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8769 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.95597 -s 0 -d 9 -p ack -e 40 -c 0 -i 8772 -a 0 -x {10.0 9.0 4381 ------- null} + -t 4.95597 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8783 -a 0 -x {9.0 10.0 4396 ------- null} - -t 4.95597 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8783 -a 0 -x {9.0 10.0 4396 ------- null} h -t 4.95597 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8783 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.95602 -s 0 -d 9 -p ack -e 40 -c 0 -i 8776 -a 0 -x {10.0 9.0 4383 ------- null} - -t 4.95602 -s 0 -d 9 -p ack -e 40 -c 0 -i 8776 -a 0 -x {10.0 9.0 4383 ------- null} h -t 4.95602 -s 0 -d 9 -p ack -e 40 -c 0 -i 8776 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.95642 -s 10 -d 7 -p ack -e 40 -c 0 -i 8780 -a 0 -x {10.0 9.0 4385 ------- null} + -t 4.95642 -s 7 -d 0 -p ack -e 40 -c 0 -i 8780 -a 0 -x {10.0 9.0 4385 ------- null} h -t 4.95642 -s 7 -d 8 -p ack -e 40 -c 0 -i 8780 -a 0 -x {10.0 9.0 4385 ------- null} r -t 4.95651 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8779 -a 0 -x {9.0 10.0 4394 ------- null} + -t 4.95651 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8779 -a 0 -x {9.0 10.0 4394 ------- null} h -t 4.95651 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8779 -a 0 -x {9.0 10.0 4394 ------- null} r -t 4.95656 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8765 -a 0 -x {9.0 10.0 4387 ------- null} + -t 4.95656 -s 10 -d 7 -p ack -e 40 -c 0 -i 8784 -a 0 -x {10.0 9.0 4387 ------- null} - -t 4.95656 -s 10 -d 7 -p ack -e 40 -c 0 -i 8784 -a 0 -x {10.0 9.0 4387 ------- null} h -t 4.95656 -s 10 -d 7 -p ack -e 40 -c 0 -i 8784 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.95702 -s 0 -d 9 -p ack -e 40 -c 0 -i 8774 -a 0 -x {10.0 9.0 4382 ------- null} + -t 4.95702 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8785 -a 0 -x {9.0 10.0 4397 ------- null} - -t 4.95702 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8785 -a 0 -x {9.0 10.0 4397 ------- null} h -t 4.95702 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8785 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.95702 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8771 -a 0 -x {9.0 10.0 4390 ------- null} - -t 4.95702 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8771 -a 0 -x {9.0 10.0 4390 ------- null} h -t 4.95702 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8771 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.9573 -s 0 -d 9 -p ack -e 40 -c 0 -i 8778 -a 0 -x {10.0 9.0 4384 ------- null} - -t 4.9573 -s 0 -d 9 -p ack -e 40 -c 0 -i 8778 -a 0 -x {10.0 9.0 4384 ------- null} h -t 4.9573 -s 0 -d 9 -p ack -e 40 -c 0 -i 8778 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.9575 -s 10 -d 7 -p ack -e 40 -c 0 -i 8782 -a 0 -x {10.0 9.0 4386 ------- null} + -t 4.9575 -s 7 -d 0 -p ack -e 40 -c 0 -i 8782 -a 0 -x {10.0 9.0 4386 ------- null} h -t 4.9575 -s 7 -d 8 -p ack -e 40 -c 0 -i 8782 -a 0 -x {10.0 9.0 4386 ------- null} r -t 4.95763 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8781 -a 0 -x {9.0 10.0 4395 ------- null} + -t 4.95763 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8781 -a 0 -x {9.0 10.0 4395 ------- null} h -t 4.95763 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8781 -a 0 -x {9.0 10.0 4395 ------- null} r -t 4.95765 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8767 -a 0 -x {9.0 10.0 4388 ------- null} + -t 4.95765 -s 10 -d 7 -p ack -e 40 -c 0 -i 8786 -a 0 -x {10.0 9.0 4388 ------- null} - -t 4.95765 -s 10 -d 7 -p ack -e 40 -c 0 -i 8786 -a 0 -x {10.0 9.0 4388 ------- null} h -t 4.95765 -s 10 -d 7 -p ack -e 40 -c 0 -i 8786 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.95805 -s 0 -d 9 -p ack -e 40 -c 0 -i 8776 -a 0 -x {10.0 9.0 4383 ------- null} + -t 4.95805 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8787 -a 0 -x {9.0 10.0 4398 ------- null} - -t 4.95805 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8787 -a 0 -x {9.0 10.0 4398 ------- null} h -t 4.95805 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8787 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.95814 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8773 -a 0 -x {9.0 10.0 4391 ------- null} - -t 4.95814 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8773 -a 0 -x {9.0 10.0 4391 ------- null} h -t 4.95814 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8773 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.95822 -s 0 -d 9 -p ack -e 40 -c 0 -i 8780 -a 0 -x {10.0 9.0 4385 ------- null} - -t 4.95822 -s 0 -d 9 -p ack -e 40 -c 0 -i 8780 -a 0 -x {10.0 9.0 4385 ------- null} h -t 4.95822 -s 0 -d 9 -p ack -e 40 -c 0 -i 8780 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.95859 -s 10 -d 7 -p ack -e 40 -c 0 -i 8784 -a 0 -x {10.0 9.0 4387 ------- null} + -t 4.95859 -s 7 -d 0 -p ack -e 40 -c 0 -i 8784 -a 0 -x {10.0 9.0 4387 ------- null} h -t 4.95859 -s 7 -d 8 -p ack -e 40 -c 0 -i 8784 -a 0 -x {10.0 9.0 4387 ------- null} r -t 4.95874 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8769 -a 0 -x {9.0 10.0 4389 ------- null} + -t 4.95874 -s 10 -d 7 -p ack -e 40 -c 0 -i 8788 -a 0 -x {10.0 9.0 4389 ------- null} - -t 4.95874 -s 10 -d 7 -p ack -e 40 -c 0 -i 8788 -a 0 -x {10.0 9.0 4389 ------- null} h -t 4.95874 -s 10 -d 7 -p ack -e 40 -c 0 -i 8788 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.95877 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8783 -a 0 -x {9.0 10.0 4396 ------- null} + -t 4.95877 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8783 -a 0 -x {9.0 10.0 4396 ------- null} h -t 4.95877 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8783 -a 0 -x {9.0 10.0 4396 ------- null} + -t 4.95923 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8775 -a 0 -x {9.0 10.0 4392 ------- null} - -t 4.95923 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8775 -a 0 -x {9.0 10.0 4392 ------- null} h -t 4.95923 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8775 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.95933 -s 0 -d 9 -p ack -e 40 -c 0 -i 8778 -a 0 -x {10.0 9.0 4384 ------- null} + -t 4.95933 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8789 -a 0 -x {9.0 10.0 4399 ------- null} - -t 4.95933 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8789 -a 0 -x {9.0 10.0 4399 ------- null} h -t 4.95933 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8789 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.95939 -s 0 -d 9 -p ack -e 40 -c 0 -i 8782 -a 0 -x {10.0 9.0 4386 ------- null} - -t 4.95939 -s 0 -d 9 -p ack -e 40 -c 0 -i 8782 -a 0 -x {10.0 9.0 4386 ------- null} h -t 4.95939 -s 0 -d 9 -p ack -e 40 -c 0 -i 8782 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.95968 -s 10 -d 7 -p ack -e 40 -c 0 -i 8786 -a 0 -x {10.0 9.0 4388 ------- null} + -t 4.95968 -s 7 -d 0 -p ack -e 40 -c 0 -i 8786 -a 0 -x {10.0 9.0 4388 ------- null} h -t 4.95968 -s 7 -d 8 -p ack -e 40 -c 0 -i 8786 -a 0 -x {10.0 9.0 4388 ------- null} r -t 4.95982 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8785 -a 0 -x {9.0 10.0 4397 ------- null} + -t 4.95982 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8785 -a 0 -x {9.0 10.0 4397 ------- null} h -t 4.95982 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8785 -a 0 -x {9.0 10.0 4397 ------- null} r -t 4.95982 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8771 -a 0 -x {9.0 10.0 4390 ------- null} + -t 4.95982 -s 10 -d 7 -p ack -e 40 -c 0 -i 8790 -a 0 -x {10.0 9.0 4390 ------- null} - -t 4.95982 -s 10 -d 7 -p ack -e 40 -c 0 -i 8790 -a 0 -x {10.0 9.0 4390 ------- null} h -t 4.95982 -s 10 -d 7 -p ack -e 40 -c 0 -i 8790 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.96026 -s 0 -d 9 -p ack -e 40 -c 0 -i 8780 -a 0 -x {10.0 9.0 4385 ------- null} + -t 4.96026 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8791 -a 0 -x {9.0 10.0 4400 ------- null} - -t 4.96026 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8791 -a 0 -x {9.0 10.0 4400 ------- null} h -t 4.96026 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8791 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.96032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8777 -a 0 -x {9.0 10.0 4393 ------- null} - -t 4.96032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8777 -a 0 -x {9.0 10.0 4393 ------- null} h -t 4.96032 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8777 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.96045 -s 0 -d 9 -p ack -e 40 -c 0 -i 8784 -a 0 -x {10.0 9.0 4387 ------- null} - -t 4.96045 -s 0 -d 9 -p ack -e 40 -c 0 -i 8784 -a 0 -x {10.0 9.0 4387 ------- null} h -t 4.96045 -s 0 -d 9 -p ack -e 40 -c 0 -i 8784 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.96077 -s 10 -d 7 -p ack -e 40 -c 0 -i 8788 -a 0 -x {10.0 9.0 4389 ------- null} + -t 4.96077 -s 7 -d 0 -p ack -e 40 -c 0 -i 8788 -a 0 -x {10.0 9.0 4389 ------- null} h -t 4.96077 -s 7 -d 8 -p ack -e 40 -c 0 -i 8788 -a 0 -x {10.0 9.0 4389 ------- null} r -t 4.96085 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8787 -a 0 -x {9.0 10.0 4398 ------- null} + -t 4.96085 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8787 -a 0 -x {9.0 10.0 4398 ------- null} h -t 4.96085 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8787 -a 0 -x {9.0 10.0 4398 ------- null} r -t 4.96094 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8773 -a 0 -x {9.0 10.0 4391 ------- null} + -t 4.96094 -s 10 -d 7 -p ack -e 40 -c 0 -i 8792 -a 0 -x {10.0 9.0 4391 ------- null} - -t 4.96094 -s 10 -d 7 -p ack -e 40 -c 0 -i 8792 -a 0 -x {10.0 9.0 4391 ------- null} h -t 4.96094 -s 10 -d 7 -p ack -e 40 -c 0 -i 8792 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.96141 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8779 -a 0 -x {9.0 10.0 4394 ------- null} - -t 4.96141 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8779 -a 0 -x {9.0 10.0 4394 ------- null} h -t 4.96141 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8779 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.96142 -s 0 -d 9 -p ack -e 40 -c 0 -i 8782 -a 0 -x {10.0 9.0 4386 ------- null} + -t 4.96142 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8793 -a 0 -x {9.0 10.0 4401 ------- null} - -t 4.96142 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8793 -a 0 -x {9.0 10.0 4401 ------- null} h -t 4.96142 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8793 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.96155 -s 0 -d 9 -p ack -e 40 -c 0 -i 8786 -a 0 -x {10.0 9.0 4388 ------- null} - -t 4.96155 -s 0 -d 9 -p ack -e 40 -c 0 -i 8786 -a 0 -x {10.0 9.0 4388 ------- null} h -t 4.96155 -s 0 -d 9 -p ack -e 40 -c 0 -i 8786 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.96186 -s 10 -d 7 -p ack -e 40 -c 0 -i 8790 -a 0 -x {10.0 9.0 4390 ------- null} + -t 4.96186 -s 7 -d 0 -p ack -e 40 -c 0 -i 8790 -a 0 -x {10.0 9.0 4390 ------- null} h -t 4.96186 -s 7 -d 8 -p ack -e 40 -c 0 -i 8790 -a 0 -x {10.0 9.0 4390 ------- null} r -t 4.96203 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8775 -a 0 -x {9.0 10.0 4392 ------- null} + -t 4.96203 -s 10 -d 7 -p ack -e 40 -c 0 -i 8794 -a 0 -x {10.0 9.0 4392 ------- null} - -t 4.96203 -s 10 -d 7 -p ack -e 40 -c 0 -i 8794 -a 0 -x {10.0 9.0 4392 ------- null} h -t 4.96203 -s 10 -d 7 -p ack -e 40 -c 0 -i 8794 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.96213 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8789 -a 0 -x {9.0 10.0 4399 ------- null} + -t 4.96213 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8789 -a 0 -x {9.0 10.0 4399 ------- null} h -t 4.96213 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8789 -a 0 -x {9.0 10.0 4399 ------- null} r -t 4.96248 -s 0 -d 9 -p ack -e 40 -c 0 -i 8784 -a 0 -x {10.0 9.0 4387 ------- null} + -t 4.96248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8795 -a 0 -x {9.0 10.0 4402 ------- null} - -t 4.96248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8795 -a 0 -x {9.0 10.0 4402 ------- null} h -t 4.96248 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8795 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.9625 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8781 -a 0 -x {9.0 10.0 4395 ------- null} - -t 4.9625 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8781 -a 0 -x {9.0 10.0 4395 ------- null} h -t 4.9625 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8781 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.96278 -s 0 -d 9 -p ack -e 40 -c 0 -i 8788 -a 0 -x {10.0 9.0 4389 ------- null} - -t 4.96278 -s 0 -d 9 -p ack -e 40 -c 0 -i 8788 -a 0 -x {10.0 9.0 4389 ------- null} h -t 4.96278 -s 0 -d 9 -p ack -e 40 -c 0 -i 8788 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.96298 -s 10 -d 7 -p ack -e 40 -c 0 -i 8792 -a 0 -x {10.0 9.0 4391 ------- null} + -t 4.96298 -s 7 -d 0 -p ack -e 40 -c 0 -i 8792 -a 0 -x {10.0 9.0 4391 ------- null} h -t 4.96298 -s 7 -d 8 -p ack -e 40 -c 0 -i 8792 -a 0 -x {10.0 9.0 4391 ------- null} r -t 4.96306 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8791 -a 0 -x {9.0 10.0 4400 ------- null} + -t 4.96306 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8791 -a 0 -x {9.0 10.0 4400 ------- null} h -t 4.96306 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8791 -a 0 -x {9.0 10.0 4400 ------- null} r -t 4.96312 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8777 -a 0 -x {9.0 10.0 4393 ------- null} + -t 4.96312 -s 10 -d 7 -p ack -e 40 -c 0 -i 8796 -a 0 -x {10.0 9.0 4393 ------- null} - -t 4.96312 -s 10 -d 7 -p ack -e 40 -c 0 -i 8796 -a 0 -x {10.0 9.0 4393 ------- null} h -t 4.96312 -s 10 -d 7 -p ack -e 40 -c 0 -i 8796 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.96358 -s 0 -d 9 -p ack -e 40 -c 0 -i 8786 -a 0 -x {10.0 9.0 4388 ------- null} + -t 4.96358 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8797 -a 0 -x {9.0 10.0 4403 ------- null} - -t 4.96358 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8797 -a 0 -x {9.0 10.0 4403 ------- null} h -t 4.96358 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8797 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.96366 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8783 -a 0 -x {9.0 10.0 4396 ------- null} - -t 4.96366 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8783 -a 0 -x {9.0 10.0 4396 ------- null} h -t 4.96366 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8783 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.96374 -s 0 -d 9 -p ack -e 40 -c 0 -i 8790 -a 0 -x {10.0 9.0 4390 ------- null} - -t 4.96374 -s 0 -d 9 -p ack -e 40 -c 0 -i 8790 -a 0 -x {10.0 9.0 4390 ------- null} h -t 4.96374 -s 0 -d 9 -p ack -e 40 -c 0 -i 8790 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.96406 -s 10 -d 7 -p ack -e 40 -c 0 -i 8794 -a 0 -x {10.0 9.0 4392 ------- null} + -t 4.96406 -s 7 -d 0 -p ack -e 40 -c 0 -i 8794 -a 0 -x {10.0 9.0 4392 ------- null} h -t 4.96406 -s 7 -d 8 -p ack -e 40 -c 0 -i 8794 -a 0 -x {10.0 9.0 4392 ------- null} r -t 4.96421 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8779 -a 0 -x {9.0 10.0 4394 ------- null} + -t 4.96421 -s 10 -d 7 -p ack -e 40 -c 0 -i 8798 -a 0 -x {10.0 9.0 4394 ------- null} - -t 4.96421 -s 10 -d 7 -p ack -e 40 -c 0 -i 8798 -a 0 -x {10.0 9.0 4394 ------- null} h -t 4.96421 -s 10 -d 7 -p ack -e 40 -c 0 -i 8798 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.96422 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8793 -a 0 -x {9.0 10.0 4401 ------- null} + -t 4.96422 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8793 -a 0 -x {9.0 10.0 4401 ------- null} h -t 4.96422 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8793 -a 0 -x {9.0 10.0 4401 ------- null} + -t 4.96475 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8785 -a 0 -x {9.0 10.0 4397 ------- null} - -t 4.96475 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8785 -a 0 -x {9.0 10.0 4397 ------- null} h -t 4.96475 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8785 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.96482 -s 0 -d 9 -p ack -e 40 -c 0 -i 8788 -a 0 -x {10.0 9.0 4389 ------- null} + -t 4.96482 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8799 -a 0 -x {9.0 10.0 4404 ------- null} - -t 4.96482 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8799 -a 0 -x {9.0 10.0 4404 ------- null} h -t 4.96482 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8799 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.96498 -s 0 -d 9 -p ack -e 40 -c 0 -i 8792 -a 0 -x {10.0 9.0 4391 ------- null} - -t 4.96498 -s 0 -d 9 -p ack -e 40 -c 0 -i 8792 -a 0 -x {10.0 9.0 4391 ------- null} h -t 4.96498 -s 0 -d 9 -p ack -e 40 -c 0 -i 8792 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.96515 -s 10 -d 7 -p ack -e 40 -c 0 -i 8796 -a 0 -x {10.0 9.0 4393 ------- null} + -t 4.96515 -s 7 -d 0 -p ack -e 40 -c 0 -i 8796 -a 0 -x {10.0 9.0 4393 ------- null} h -t 4.96515 -s 7 -d 8 -p ack -e 40 -c 0 -i 8796 -a 0 -x {10.0 9.0 4393 ------- null} r -t 4.96528 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8795 -a 0 -x {9.0 10.0 4402 ------- null} + -t 4.96528 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8795 -a 0 -x {9.0 10.0 4402 ------- null} h -t 4.96528 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8795 -a 0 -x {9.0 10.0 4402 ------- null} r -t 4.9653 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8781 -a 0 -x {9.0 10.0 4395 ------- null} + -t 4.9653 -s 10 -d 7 -p ack -e 40 -c 0 -i 8800 -a 0 -x {10.0 9.0 4395 ------- null} - -t 4.9653 -s 10 -d 7 -p ack -e 40 -c 0 -i 8800 -a 0 -x {10.0 9.0 4395 ------- null} h -t 4.9653 -s 10 -d 7 -p ack -e 40 -c 0 -i 8800 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.96578 -s 0 -d 9 -p ack -e 40 -c 0 -i 8790 -a 0 -x {10.0 9.0 4390 ------- null} + -t 4.96578 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8801 -a 0 -x {9.0 10.0 4405 ------- null} - -t 4.96578 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8801 -a 0 -x {9.0 10.0 4405 ------- null} h -t 4.96578 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8801 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.96584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8787 -a 0 -x {9.0 10.0 4398 ------- null} - -t 4.96584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8787 -a 0 -x {9.0 10.0 4398 ------- null} h -t 4.96584 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8787 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.96594 -s 0 -d 9 -p ack -e 40 -c 0 -i 8794 -a 0 -x {10.0 9.0 4392 ------- null} - -t 4.96594 -s 0 -d 9 -p ack -e 40 -c 0 -i 8794 -a 0 -x {10.0 9.0 4392 ------- null} h -t 4.96594 -s 0 -d 9 -p ack -e 40 -c 0 -i 8794 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.96624 -s 10 -d 7 -p ack -e 40 -c 0 -i 8798 -a 0 -x {10.0 9.0 4394 ------- null} + -t 4.96624 -s 7 -d 0 -p ack -e 40 -c 0 -i 8798 -a 0 -x {10.0 9.0 4394 ------- null} h -t 4.96624 -s 7 -d 8 -p ack -e 40 -c 0 -i 8798 -a 0 -x {10.0 9.0 4394 ------- null} r -t 4.96638 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8797 -a 0 -x {9.0 10.0 4403 ------- null} + -t 4.96638 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8797 -a 0 -x {9.0 10.0 4403 ------- null} h -t 4.96638 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8797 -a 0 -x {9.0 10.0 4403 ------- null} r -t 4.96646 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8783 -a 0 -x {9.0 10.0 4396 ------- null} + -t 4.96646 -s 10 -d 7 -p ack -e 40 -c 0 -i 8802 -a 0 -x {10.0 9.0 4396 ------- null} - -t 4.96646 -s 10 -d 7 -p ack -e 40 -c 0 -i 8802 -a 0 -x {10.0 9.0 4396 ------- null} h -t 4.96646 -s 10 -d 7 -p ack -e 40 -c 0 -i 8802 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.96693 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8789 -a 0 -x {9.0 10.0 4399 ------- null} - -t 4.96693 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8789 -a 0 -x {9.0 10.0 4399 ------- null} h -t 4.96693 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8789 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.96701 -s 0 -d 9 -p ack -e 40 -c 0 -i 8792 -a 0 -x {10.0 9.0 4391 ------- null} + -t 4.96701 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8803 -a 0 -x {9.0 10.0 4406 ------- null} - -t 4.96701 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8803 -a 0 -x {9.0 10.0 4406 ------- null} h -t 4.96701 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8803 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.96718 -s 0 -d 9 -p ack -e 40 -c 0 -i 8796 -a 0 -x {10.0 9.0 4393 ------- null} - -t 4.96718 -s 0 -d 9 -p ack -e 40 -c 0 -i 8796 -a 0 -x {10.0 9.0 4393 ------- null} h -t 4.96718 -s 0 -d 9 -p ack -e 40 -c 0 -i 8796 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.96733 -s 10 -d 7 -p ack -e 40 -c 0 -i 8800 -a 0 -x {10.0 9.0 4395 ------- null} + -t 4.96733 -s 7 -d 0 -p ack -e 40 -c 0 -i 8800 -a 0 -x {10.0 9.0 4395 ------- null} h -t 4.96733 -s 7 -d 8 -p ack -e 40 -c 0 -i 8800 -a 0 -x {10.0 9.0 4395 ------- null} r -t 4.96755 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8785 -a 0 -x {9.0 10.0 4397 ------- null} + -t 4.96755 -s 10 -d 7 -p ack -e 40 -c 0 -i 8804 -a 0 -x {10.0 9.0 4397 ------- null} - -t 4.96755 -s 10 -d 7 -p ack -e 40 -c 0 -i 8804 -a 0 -x {10.0 9.0 4397 ------- null} h -t 4.96755 -s 10 -d 7 -p ack -e 40 -c 0 -i 8804 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.96762 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8799 -a 0 -x {9.0 10.0 4404 ------- null} + -t 4.96762 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8799 -a 0 -x {9.0 10.0 4404 ------- null} h -t 4.96762 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8799 -a 0 -x {9.0 10.0 4404 ------- null} r -t 4.96797 -s 0 -d 9 -p ack -e 40 -c 0 -i 8794 -a 0 -x {10.0 9.0 4392 ------- null} + -t 4.96797 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8805 -a 0 -x {9.0 10.0 4407 ------- null} - -t 4.96797 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8805 -a 0 -x {9.0 10.0 4407 ------- null} h -t 4.96797 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8805 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.96802 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8791 -a 0 -x {9.0 10.0 4400 ------- null} - -t 4.96802 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8791 -a 0 -x {9.0 10.0 4400 ------- null} h -t 4.96802 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8791 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.96827 -s 0 -d 9 -p ack -e 40 -c 0 -i 8798 -a 0 -x {10.0 9.0 4394 ------- null} - -t 4.96827 -s 0 -d 9 -p ack -e 40 -c 0 -i 8798 -a 0 -x {10.0 9.0 4394 ------- null} h -t 4.96827 -s 0 -d 9 -p ack -e 40 -c 0 -i 8798 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.9685 -s 10 -d 7 -p ack -e 40 -c 0 -i 8802 -a 0 -x {10.0 9.0 4396 ------- null} + -t 4.9685 -s 7 -d 0 -p ack -e 40 -c 0 -i 8802 -a 0 -x {10.0 9.0 4396 ------- null} h -t 4.9685 -s 7 -d 8 -p ack -e 40 -c 0 -i 8802 -a 0 -x {10.0 9.0 4396 ------- null} r -t 4.96858 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8801 -a 0 -x {9.0 10.0 4405 ------- null} + -t 4.96858 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8801 -a 0 -x {9.0 10.0 4405 ------- null} h -t 4.96858 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8801 -a 0 -x {9.0 10.0 4405 ------- null} r -t 4.96864 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8787 -a 0 -x {9.0 10.0 4398 ------- null} + -t 4.96864 -s 10 -d 7 -p ack -e 40 -c 0 -i 8806 -a 0 -x {10.0 9.0 4398 ------- null} - -t 4.96864 -s 10 -d 7 -p ack -e 40 -c 0 -i 8806 -a 0 -x {10.0 9.0 4398 ------- null} h -t 4.96864 -s 10 -d 7 -p ack -e 40 -c 0 -i 8806 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.9691 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8793 -a 0 -x {9.0 10.0 4401 ------- null} - -t 4.9691 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8793 -a 0 -x {9.0 10.0 4401 ------- null} h -t 4.9691 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8793 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.96922 -s 0 -d 9 -p ack -e 40 -c 0 -i 8796 -a 0 -x {10.0 9.0 4393 ------- null} + -t 4.96922 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8807 -a 0 -x {9.0 10.0 4408 ------- null} - -t 4.96922 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8807 -a 0 -x {9.0 10.0 4408 ------- null} h -t 4.96922 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8807 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.96933 -s 0 -d 9 -p ack -e 40 -c 0 -i 8800 -a 0 -x {10.0 9.0 4395 ------- null} - -t 4.96933 -s 0 -d 9 -p ack -e 40 -c 0 -i 8800 -a 0 -x {10.0 9.0 4395 ------- null} h -t 4.96933 -s 0 -d 9 -p ack -e 40 -c 0 -i 8800 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.96958 -s 10 -d 7 -p ack -e 40 -c 0 -i 8804 -a 0 -x {10.0 9.0 4397 ------- null} + -t 4.96958 -s 7 -d 0 -p ack -e 40 -c 0 -i 8804 -a 0 -x {10.0 9.0 4397 ------- null} h -t 4.96958 -s 7 -d 8 -p ack -e 40 -c 0 -i 8804 -a 0 -x {10.0 9.0 4397 ------- null} r -t 4.96973 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8789 -a 0 -x {9.0 10.0 4399 ------- null} + -t 4.96973 -s 10 -d 7 -p ack -e 40 -c 0 -i 8808 -a 0 -x {10.0 9.0 4399 ------- null} - -t 4.96973 -s 10 -d 7 -p ack -e 40 -c 0 -i 8808 -a 0 -x {10.0 9.0 4399 ------- null} h -t 4.96973 -s 10 -d 7 -p ack -e 40 -c 0 -i 8808 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.96981 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8803 -a 0 -x {9.0 10.0 4406 ------- null} + -t 4.96981 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8803 -a 0 -x {9.0 10.0 4406 ------- null} h -t 4.96981 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8803 -a 0 -x {9.0 10.0 4406 ------- null} + -t 4.97019 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8795 -a 0 -x {9.0 10.0 4402 ------- null} - -t 4.97019 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8795 -a 0 -x {9.0 10.0 4402 ------- null} h -t 4.97019 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8795 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.9703 -s 0 -d 9 -p ack -e 40 -c 0 -i 8798 -a 0 -x {10.0 9.0 4394 ------- null} + -t 4.9703 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8809 -a 0 -x {9.0 10.0 4409 ------- null} - -t 4.9703 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8809 -a 0 -x {9.0 10.0 4409 ------- null} h -t 4.9703 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8809 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.9703 -s 0 -d 9 -p ack -e 40 -c 0 -i 8802 -a 0 -x {10.0 9.0 4396 ------- null} - -t 4.9703 -s 0 -d 9 -p ack -e 40 -c 0 -i 8802 -a 0 -x {10.0 9.0 4396 ------- null} h -t 4.9703 -s 0 -d 9 -p ack -e 40 -c 0 -i 8802 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.97067 -s 10 -d 7 -p ack -e 40 -c 0 -i 8806 -a 0 -x {10.0 9.0 4398 ------- null} + -t 4.97067 -s 7 -d 0 -p ack -e 40 -c 0 -i 8806 -a 0 -x {10.0 9.0 4398 ------- null} h -t 4.97067 -s 7 -d 8 -p ack -e 40 -c 0 -i 8806 -a 0 -x {10.0 9.0 4398 ------- null} r -t 4.97077 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8805 -a 0 -x {9.0 10.0 4407 ------- null} + -t 4.97077 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8805 -a 0 -x {9.0 10.0 4407 ------- null} h -t 4.97077 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8805 -a 0 -x {9.0 10.0 4407 ------- null} r -t 4.97082 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8791 -a 0 -x {9.0 10.0 4400 ------- null} + -t 4.97082 -s 10 -d 7 -p ack -e 40 -c 0 -i 8810 -a 0 -x {10.0 9.0 4400 ------- null} - -t 4.97082 -s 10 -d 7 -p ack -e 40 -c 0 -i 8810 -a 0 -x {10.0 9.0 4400 ------- null} h -t 4.97082 -s 10 -d 7 -p ack -e 40 -c 0 -i 8810 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.97128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8797 -a 0 -x {9.0 10.0 4403 ------- null} - -t 4.97128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8797 -a 0 -x {9.0 10.0 4403 ------- null} h -t 4.97128 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8797 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.97136 -s 0 -d 9 -p ack -e 40 -c 0 -i 8800 -a 0 -x {10.0 9.0 4395 ------- null} + -t 4.97136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8811 -a 0 -x {9.0 10.0 4410 ------- null} - -t 4.97136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8811 -a 0 -x {9.0 10.0 4410 ------- null} h -t 4.97136 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8811 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.97149 -s 0 -d 9 -p ack -e 40 -c 0 -i 8804 -a 0 -x {10.0 9.0 4397 ------- null} - -t 4.97149 -s 0 -d 9 -p ack -e 40 -c 0 -i 8804 -a 0 -x {10.0 9.0 4397 ------- null} h -t 4.97149 -s 0 -d 9 -p ack -e 40 -c 0 -i 8804 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.97176 -s 10 -d 7 -p ack -e 40 -c 0 -i 8808 -a 0 -x {10.0 9.0 4399 ------- null} + -t 4.97176 -s 7 -d 0 -p ack -e 40 -c 0 -i 8808 -a 0 -x {10.0 9.0 4399 ------- null} h -t 4.97176 -s 7 -d 8 -p ack -e 40 -c 0 -i 8808 -a 0 -x {10.0 9.0 4399 ------- null} r -t 4.9719 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8793 -a 0 -x {9.0 10.0 4401 ------- null} + -t 4.9719 -s 10 -d 7 -p ack -e 40 -c 0 -i 8812 -a 0 -x {10.0 9.0 4401 ------- null} - -t 4.9719 -s 10 -d 7 -p ack -e 40 -c 0 -i 8812 -a 0 -x {10.0 9.0 4401 ------- null} h -t 4.9719 -s 10 -d 7 -p ack -e 40 -c 0 -i 8812 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.97202 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8807 -a 0 -x {9.0 10.0 4408 ------- null} + -t 4.97202 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8807 -a 0 -x {9.0 10.0 4408 ------- null} h -t 4.97202 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8807 -a 0 -x {9.0 10.0 4408 ------- null} r -t 4.97234 -s 0 -d 9 -p ack -e 40 -c 0 -i 8802 -a 0 -x {10.0 9.0 4396 ------- null} + -t 4.97234 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8813 -a 0 -x {9.0 10.0 4411 ------- null} - -t 4.97234 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8813 -a 0 -x {9.0 10.0 4411 ------- null} h -t 4.97234 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8813 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.97237 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8799 -a 0 -x {9.0 10.0 4404 ------- null} - -t 4.97237 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8799 -a 0 -x {9.0 10.0 4404 ------- null} h -t 4.97237 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8799 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.97262 -s 0 -d 9 -p ack -e 40 -c 0 -i 8806 -a 0 -x {10.0 9.0 4398 ------- null} - -t 4.97262 -s 0 -d 9 -p ack -e 40 -c 0 -i 8806 -a 0 -x {10.0 9.0 4398 ------- null} h -t 4.97262 -s 0 -d 9 -p ack -e 40 -c 0 -i 8806 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.97285 -s 10 -d 7 -p ack -e 40 -c 0 -i 8810 -a 0 -x {10.0 9.0 4400 ------- null} + -t 4.97285 -s 7 -d 0 -p ack -e 40 -c 0 -i 8810 -a 0 -x {10.0 9.0 4400 ------- null} h -t 4.97285 -s 7 -d 8 -p ack -e 40 -c 0 -i 8810 -a 0 -x {10.0 9.0 4400 ------- null} r -t 4.97299 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8795 -a 0 -x {9.0 10.0 4402 ------- null} + -t 4.97299 -s 10 -d 7 -p ack -e 40 -c 0 -i 8814 -a 0 -x {10.0 9.0 4402 ------- null} - -t 4.97299 -s 10 -d 7 -p ack -e 40 -c 0 -i 8814 -a 0 -x {10.0 9.0 4402 ------- null} h -t 4.97299 -s 10 -d 7 -p ack -e 40 -c 0 -i 8814 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.9731 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8809 -a 0 -x {9.0 10.0 4409 ------- null} + -t 4.9731 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8809 -a 0 -x {9.0 10.0 4409 ------- null} h -t 4.9731 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8809 -a 0 -x {9.0 10.0 4409 ------- null} + -t 4.97346 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8801 -a 0 -x {9.0 10.0 4405 ------- null} - -t 4.97346 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8801 -a 0 -x {9.0 10.0 4405 ------- null} h -t 4.97346 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8801 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.97352 -s 0 -d 9 -p ack -e 40 -c 0 -i 8804 -a 0 -x {10.0 9.0 4397 ------- null} + -t 4.97352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8815 -a 0 -x {9.0 10.0 4412 ------- null} - -t 4.97352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8815 -a 0 -x {9.0 10.0 4412 ------- null} h -t 4.97352 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8815 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.97376 -s 0 -d 9 -p ack -e 40 -c 0 -i 8808 -a 0 -x {10.0 9.0 4399 ------- null} - -t 4.97376 -s 0 -d 9 -p ack -e 40 -c 0 -i 8808 -a 0 -x {10.0 9.0 4399 ------- null} h -t 4.97376 -s 0 -d 9 -p ack -e 40 -c 0 -i 8808 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.97394 -s 10 -d 7 -p ack -e 40 -c 0 -i 8812 -a 0 -x {10.0 9.0 4401 ------- null} + -t 4.97394 -s 7 -d 0 -p ack -e 40 -c 0 -i 8812 -a 0 -x {10.0 9.0 4401 ------- null} h -t 4.97394 -s 7 -d 8 -p ack -e 40 -c 0 -i 8812 -a 0 -x {10.0 9.0 4401 ------- null} r -t 4.97408 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8797 -a 0 -x {9.0 10.0 4403 ------- null} + -t 4.97408 -s 10 -d 7 -p ack -e 40 -c 0 -i 8816 -a 0 -x {10.0 9.0 4403 ------- null} - -t 4.97408 -s 10 -d 7 -p ack -e 40 -c 0 -i 8816 -a 0 -x {10.0 9.0 4403 ------- null} h -t 4.97408 -s 10 -d 7 -p ack -e 40 -c 0 -i 8816 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.97416 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8811 -a 0 -x {9.0 10.0 4410 ------- null} + -t 4.97416 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8811 -a 0 -x {9.0 10.0 4410 ------- null} h -t 4.97416 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8811 -a 0 -x {9.0 10.0 4410 ------- null} + -t 4.97461 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8803 -a 0 -x {9.0 10.0 4406 ------- null} - -t 4.97461 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8803 -a 0 -x {9.0 10.0 4406 ------- null} h -t 4.97461 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8803 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.97466 -s 0 -d 9 -p ack -e 40 -c 0 -i 8806 -a 0 -x {10.0 9.0 4398 ------- null} + -t 4.97466 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8817 -a 0 -x {9.0 10.0 4413 ------- null} - -t 4.97466 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8817 -a 0 -x {9.0 10.0 4413 ------- null} h -t 4.97466 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8817 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.9749 -s 0 -d 9 -p ack -e 40 -c 0 -i 8810 -a 0 -x {10.0 9.0 4400 ------- null} - -t 4.9749 -s 0 -d 9 -p ack -e 40 -c 0 -i 8810 -a 0 -x {10.0 9.0 4400 ------- null} h -t 4.9749 -s 0 -d 9 -p ack -e 40 -c 0 -i 8810 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.97502 -s 10 -d 7 -p ack -e 40 -c 0 -i 8814 -a 0 -x {10.0 9.0 4402 ------- null} + -t 4.97502 -s 7 -d 0 -p ack -e 40 -c 0 -i 8814 -a 0 -x {10.0 9.0 4402 ------- null} h -t 4.97502 -s 7 -d 8 -p ack -e 40 -c 0 -i 8814 -a 0 -x {10.0 9.0 4402 ------- null} r -t 4.97514 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8813 -a 0 -x {9.0 10.0 4411 ------- null} + -t 4.97514 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8813 -a 0 -x {9.0 10.0 4411 ------- null} h -t 4.97514 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8813 -a 0 -x {9.0 10.0 4411 ------- null} r -t 4.97517 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8799 -a 0 -x {9.0 10.0 4404 ------- null} + -t 4.97517 -s 10 -d 7 -p ack -e 40 -c 0 -i 8818 -a 0 -x {10.0 9.0 4404 ------- null} - -t 4.97517 -s 10 -d 7 -p ack -e 40 -c 0 -i 8818 -a 0 -x {10.0 9.0 4404 ------- null} h -t 4.97517 -s 10 -d 7 -p ack -e 40 -c 0 -i 8818 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.97579 -s 0 -d 9 -p ack -e 40 -c 0 -i 8808 -a 0 -x {10.0 9.0 4399 ------- null} + -t 4.97579 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8819 -a 0 -x {9.0 10.0 4414 ------- null} - -t 4.97579 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8819 -a 0 -x {9.0 10.0 4414 ------- null} h -t 4.97579 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8819 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.97595 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8805 -a 0 -x {9.0 10.0 4407 ------- null} - -t 4.97595 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8805 -a 0 -x {9.0 10.0 4407 ------- null} h -t 4.97595 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8805 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.97611 -s 10 -d 7 -p ack -e 40 -c 0 -i 8816 -a 0 -x {10.0 9.0 4403 ------- null} + -t 4.97611 -s 7 -d 0 -p ack -e 40 -c 0 -i 8816 -a 0 -x {10.0 9.0 4403 ------- null} h -t 4.97611 -s 7 -d 8 -p ack -e 40 -c 0 -i 8816 -a 0 -x {10.0 9.0 4403 ------- null} + -t 4.97621 -s 0 -d 9 -p ack -e 40 -c 0 -i 8812 -a 0 -x {10.0 9.0 4401 ------- null} - -t 4.97621 -s 0 -d 9 -p ack -e 40 -c 0 -i 8812 -a 0 -x {10.0 9.0 4401 ------- null} h -t 4.97621 -s 0 -d 9 -p ack -e 40 -c 0 -i 8812 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.97626 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8801 -a 0 -x {9.0 10.0 4405 ------- null} + -t 4.97626 -s 10 -d 7 -p ack -e 40 -c 0 -i 8820 -a 0 -x {10.0 9.0 4405 ------- null} - -t 4.97626 -s 10 -d 7 -p ack -e 40 -c 0 -i 8820 -a 0 -x {10.0 9.0 4405 ------- null} h -t 4.97626 -s 10 -d 7 -p ack -e 40 -c 0 -i 8820 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.97632 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8815 -a 0 -x {9.0 10.0 4412 ------- null} + -t 4.97632 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8815 -a 0 -x {9.0 10.0 4412 ------- null} h -t 4.97632 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8815 -a 0 -x {9.0 10.0 4412 ------- null} r -t 4.97693 -s 0 -d 9 -p ack -e 40 -c 0 -i 8810 -a 0 -x {10.0 9.0 4400 ------- null} + -t 4.97693 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8821 -a 0 -x {9.0 10.0 4415 ------- null} - -t 4.97693 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8821 -a 0 -x {9.0 10.0 4415 ------- null} h -t 4.97693 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8821 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.97704 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8807 -a 0 -x {9.0 10.0 4408 ------- null} - -t 4.97704 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8807 -a 0 -x {9.0 10.0 4408 ------- null} h -t 4.97704 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8807 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.9772 -s 10 -d 7 -p ack -e 40 -c 0 -i 8818 -a 0 -x {10.0 9.0 4404 ------- null} + -t 4.9772 -s 7 -d 0 -p ack -e 40 -c 0 -i 8818 -a 0 -x {10.0 9.0 4404 ------- null} h -t 4.9772 -s 7 -d 8 -p ack -e 40 -c 0 -i 8818 -a 0 -x {10.0 9.0 4404 ------- null} + -t 4.97726 -s 0 -d 9 -p ack -e 40 -c 0 -i 8814 -a 0 -x {10.0 9.0 4402 ------- null} - -t 4.97726 -s 0 -d 9 -p ack -e 40 -c 0 -i 8814 -a 0 -x {10.0 9.0 4402 ------- null} h -t 4.97726 -s 0 -d 9 -p ack -e 40 -c 0 -i 8814 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.97741 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8803 -a 0 -x {9.0 10.0 4406 ------- null} + -t 4.97741 -s 10 -d 7 -p ack -e 40 -c 0 -i 8822 -a 0 -x {10.0 9.0 4406 ------- null} - -t 4.97741 -s 10 -d 7 -p ack -e 40 -c 0 -i 8822 -a 0 -x {10.0 9.0 4406 ------- null} h -t 4.97741 -s 10 -d 7 -p ack -e 40 -c 0 -i 8822 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.97746 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8817 -a 0 -x {9.0 10.0 4413 ------- null} + -t 4.97746 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8817 -a 0 -x {9.0 10.0 4413 ------- null} h -t 4.97746 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8817 -a 0 -x {9.0 10.0 4413 ------- null} + -t 4.97813 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8809 -a 0 -x {9.0 10.0 4409 ------- null} - -t 4.97813 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8809 -a 0 -x {9.0 10.0 4409 ------- null} h -t 4.97813 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8809 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.97824 -s 0 -d 9 -p ack -e 40 -c 0 -i 8812 -a 0 -x {10.0 9.0 4401 ------- null} + -t 4.97824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8823 -a 0 -x {9.0 10.0 4416 ------- null} - -t 4.97824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8823 -a 0 -x {9.0 10.0 4416 ------- null} h -t 4.97824 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8823 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.97829 -s 10 -d 7 -p ack -e 40 -c 0 -i 8820 -a 0 -x {10.0 9.0 4405 ------- null} + -t 4.97829 -s 7 -d 0 -p ack -e 40 -c 0 -i 8820 -a 0 -x {10.0 9.0 4405 ------- null} h -t 4.97829 -s 7 -d 8 -p ack -e 40 -c 0 -i 8820 -a 0 -x {10.0 9.0 4405 ------- null} + -t 4.97838 -s 0 -d 9 -p ack -e 40 -c 0 -i 8816 -a 0 -x {10.0 9.0 4403 ------- null} - -t 4.97838 -s 0 -d 9 -p ack -e 40 -c 0 -i 8816 -a 0 -x {10.0 9.0 4403 ------- null} h -t 4.97838 -s 0 -d 9 -p ack -e 40 -c 0 -i 8816 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.97859 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8819 -a 0 -x {9.0 10.0 4414 ------- null} + -t 4.97859 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8819 -a 0 -x {9.0 10.0 4414 ------- null} h -t 4.97859 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8819 -a 0 -x {9.0 10.0 4414 ------- null} r -t 4.97875 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8805 -a 0 -x {9.0 10.0 4407 ------- null} + -t 4.97875 -s 10 -d 7 -p ack -e 40 -c 0 -i 8824 -a 0 -x {10.0 9.0 4407 ------- null} - -t 4.97875 -s 10 -d 7 -p ack -e 40 -c 0 -i 8824 -a 0 -x {10.0 9.0 4407 ------- null} h -t 4.97875 -s 10 -d 7 -p ack -e 40 -c 0 -i 8824 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.97922 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8811 -a 0 -x {9.0 10.0 4410 ------- null} - -t 4.97922 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8811 -a 0 -x {9.0 10.0 4410 ------- null} h -t 4.97922 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8811 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.9793 -s 0 -d 9 -p ack -e 40 -c 0 -i 8814 -a 0 -x {10.0 9.0 4402 ------- null} + -t 4.9793 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8825 -a 0 -x {9.0 10.0 4417 ------- null} - -t 4.9793 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8825 -a 0 -x {9.0 10.0 4417 ------- null} h -t 4.9793 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8825 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.97939 -s 0 -d 9 -p ack -e 40 -c 0 -i 8818 -a 0 -x {10.0 9.0 4404 ------- null} - -t 4.97939 -s 0 -d 9 -p ack -e 40 -c 0 -i 8818 -a 0 -x {10.0 9.0 4404 ------- null} h -t 4.97939 -s 0 -d 9 -p ack -e 40 -c 0 -i 8818 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.97944 -s 10 -d 7 -p ack -e 40 -c 0 -i 8822 -a 0 -x {10.0 9.0 4406 ------- null} + -t 4.97944 -s 7 -d 0 -p ack -e 40 -c 0 -i 8822 -a 0 -x {10.0 9.0 4406 ------- null} h -t 4.97944 -s 7 -d 8 -p ack -e 40 -c 0 -i 8822 -a 0 -x {10.0 9.0 4406 ------- null} r -t 4.97973 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8821 -a 0 -x {9.0 10.0 4415 ------- null} + -t 4.97973 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8821 -a 0 -x {9.0 10.0 4415 ------- null} h -t 4.97973 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8821 -a 0 -x {9.0 10.0 4415 ------- null} r -t 4.97984 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8807 -a 0 -x {9.0 10.0 4408 ------- null} + -t 4.97984 -s 10 -d 7 -p ack -e 40 -c 0 -i 8826 -a 0 -x {10.0 9.0 4408 ------- null} - -t 4.97984 -s 10 -d 7 -p ack -e 40 -c 0 -i 8826 -a 0 -x {10.0 9.0 4408 ------- null} h -t 4.97984 -s 10 -d 7 -p ack -e 40 -c 0 -i 8826 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.9803 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8813 -a 0 -x {9.0 10.0 4411 ------- null} - -t 4.9803 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8813 -a 0 -x {9.0 10.0 4411 ------- null} h -t 4.9803 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8813 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.98042 -s 0 -d 9 -p ack -e 40 -c 0 -i 8816 -a 0 -x {10.0 9.0 4403 ------- null} + -t 4.98042 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8827 -a 0 -x {9.0 10.0 4418 ------- null} - -t 4.98042 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8827 -a 0 -x {9.0 10.0 4418 ------- null} h -t 4.98042 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8827 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.98061 -s 0 -d 9 -p ack -e 40 -c 0 -i 8820 -a 0 -x {10.0 9.0 4405 ------- null} - -t 4.98061 -s 0 -d 9 -p ack -e 40 -c 0 -i 8820 -a 0 -x {10.0 9.0 4405 ------- null} h -t 4.98061 -s 0 -d 9 -p ack -e 40 -c 0 -i 8820 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.98078 -s 10 -d 7 -p ack -e 40 -c 0 -i 8824 -a 0 -x {10.0 9.0 4407 ------- null} + -t 4.98078 -s 7 -d 0 -p ack -e 40 -c 0 -i 8824 -a 0 -x {10.0 9.0 4407 ------- null} h -t 4.98078 -s 7 -d 8 -p ack -e 40 -c 0 -i 8824 -a 0 -x {10.0 9.0 4407 ------- null} r -t 4.98093 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8809 -a 0 -x {9.0 10.0 4409 ------- null} + -t 4.98093 -s 10 -d 7 -p ack -e 40 -c 0 -i 8828 -a 0 -x {10.0 9.0 4409 ------- null} - -t 4.98093 -s 10 -d 7 -p ack -e 40 -c 0 -i 8828 -a 0 -x {10.0 9.0 4409 ------- null} h -t 4.98093 -s 10 -d 7 -p ack -e 40 -c 0 -i 8828 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.98104 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8823 -a 0 -x {9.0 10.0 4416 ------- null} + -t 4.98104 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8823 -a 0 -x {9.0 10.0 4416 ------- null} h -t 4.98104 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8823 -a 0 -x {9.0 10.0 4416 ------- null} r -t 4.98142 -s 0 -d 9 -p ack -e 40 -c 0 -i 8818 -a 0 -x {10.0 9.0 4404 ------- null} + -t 4.98142 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8829 -a 0 -x {9.0 10.0 4419 ------- null} - -t 4.98142 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8829 -a 0 -x {9.0 10.0 4419 ------- null} h -t 4.98142 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8829 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.98154 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8815 -a 0 -x {9.0 10.0 4412 ------- null} - -t 4.98154 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8815 -a 0 -x {9.0 10.0 4412 ------- null} h -t 4.98154 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8815 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.98179 -s 0 -d 9 -p ack -e 40 -c 0 -i 8822 -a 0 -x {10.0 9.0 4406 ------- null} - -t 4.98179 -s 0 -d 9 -p ack -e 40 -c 0 -i 8822 -a 0 -x {10.0 9.0 4406 ------- null} h -t 4.98179 -s 0 -d 9 -p ack -e 40 -c 0 -i 8822 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.98187 -s 10 -d 7 -p ack -e 40 -c 0 -i 8826 -a 0 -x {10.0 9.0 4408 ------- null} + -t 4.98187 -s 7 -d 0 -p ack -e 40 -c 0 -i 8826 -a 0 -x {10.0 9.0 4408 ------- null} h -t 4.98187 -s 7 -d 8 -p ack -e 40 -c 0 -i 8826 -a 0 -x {10.0 9.0 4408 ------- null} r -t 4.98202 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8811 -a 0 -x {9.0 10.0 4410 ------- null} + -t 4.98202 -s 10 -d 7 -p ack -e 40 -c 0 -i 8830 -a 0 -x {10.0 9.0 4410 ------- null} - -t 4.98202 -s 10 -d 7 -p ack -e 40 -c 0 -i 8830 -a 0 -x {10.0 9.0 4410 ------- null} h -t 4.98202 -s 10 -d 7 -p ack -e 40 -c 0 -i 8830 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.9821 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8825 -a 0 -x {9.0 10.0 4417 ------- null} + -t 4.9821 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8825 -a 0 -x {9.0 10.0 4417 ------- null} h -t 4.9821 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8825 -a 0 -x {9.0 10.0 4417 ------- null} + -t 4.98262 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8817 -a 0 -x {9.0 10.0 4413 ------- null} - -t 4.98262 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8817 -a 0 -x {9.0 10.0 4413 ------- null} h -t 4.98262 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8817 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.98264 -s 0 -d 9 -p ack -e 40 -c 0 -i 8820 -a 0 -x {10.0 9.0 4405 ------- null} + -t 4.98264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8831 -a 0 -x {9.0 10.0 4420 ------- null} - -t 4.98264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8831 -a 0 -x {9.0 10.0 4420 ------- null} h -t 4.98264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8831 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.9829 -s 0 -d 9 -p ack -e 40 -c 0 -i 8824 -a 0 -x {10.0 9.0 4407 ------- null} - -t 4.9829 -s 0 -d 9 -p ack -e 40 -c 0 -i 8824 -a 0 -x {10.0 9.0 4407 ------- null} h -t 4.9829 -s 0 -d 9 -p ack -e 40 -c 0 -i 8824 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.98296 -s 10 -d 7 -p ack -e 40 -c 0 -i 8828 -a 0 -x {10.0 9.0 4409 ------- null} + -t 4.98296 -s 7 -d 0 -p ack -e 40 -c 0 -i 8828 -a 0 -x {10.0 9.0 4409 ------- null} h -t 4.98296 -s 7 -d 8 -p ack -e 40 -c 0 -i 8828 -a 0 -x {10.0 9.0 4409 ------- null} r -t 4.9831 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8813 -a 0 -x {9.0 10.0 4411 ------- null} + -t 4.9831 -s 10 -d 7 -p ack -e 40 -c 0 -i 8832 -a 0 -x {10.0 9.0 4411 ------- null} - -t 4.9831 -s 10 -d 7 -p ack -e 40 -c 0 -i 8832 -a 0 -x {10.0 9.0 4411 ------- null} h -t 4.9831 -s 10 -d 7 -p ack -e 40 -c 0 -i 8832 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.98322 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8827 -a 0 -x {9.0 10.0 4418 ------- null} + -t 4.98322 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8827 -a 0 -x {9.0 10.0 4418 ------- null} h -t 4.98322 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8827 -a 0 -x {9.0 10.0 4418 ------- null} r -t 4.98382 -s 0 -d 9 -p ack -e 40 -c 0 -i 8822 -a 0 -x {10.0 9.0 4406 ------- null} + -t 4.98382 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8833 -a 0 -x {9.0 10.0 4421 ------- null} - -t 4.98382 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8833 -a 0 -x {9.0 10.0 4421 ------- null} h -t 4.98382 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8833 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.98386 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8819 -a 0 -x {9.0 10.0 4414 ------- null} - -t 4.98386 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8819 -a 0 -x {9.0 10.0 4414 ------- null} h -t 4.98386 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8819 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.98398 -s 0 -d 9 -p ack -e 40 -c 0 -i 8826 -a 0 -x {10.0 9.0 4408 ------- null} - -t 4.98398 -s 0 -d 9 -p ack -e 40 -c 0 -i 8826 -a 0 -x {10.0 9.0 4408 ------- null} h -t 4.98398 -s 0 -d 9 -p ack -e 40 -c 0 -i 8826 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.98405 -s 10 -d 7 -p ack -e 40 -c 0 -i 8830 -a 0 -x {10.0 9.0 4410 ------- null} + -t 4.98405 -s 7 -d 0 -p ack -e 40 -c 0 -i 8830 -a 0 -x {10.0 9.0 4410 ------- null} h -t 4.98405 -s 7 -d 8 -p ack -e 40 -c 0 -i 8830 -a 0 -x {10.0 9.0 4410 ------- null} r -t 4.98422 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8829 -a 0 -x {9.0 10.0 4419 ------- null} + -t 4.98422 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8829 -a 0 -x {9.0 10.0 4419 ------- null} h -t 4.98422 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8829 -a 0 -x {9.0 10.0 4419 ------- null} r -t 4.98434 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8815 -a 0 -x {9.0 10.0 4412 ------- null} + -t 4.98434 -s 10 -d 7 -p ack -e 40 -c 0 -i 8834 -a 0 -x {10.0 9.0 4412 ------- null} - -t 4.98434 -s 10 -d 7 -p ack -e 40 -c 0 -i 8834 -a 0 -x {10.0 9.0 4412 ------- null} h -t 4.98434 -s 10 -d 7 -p ack -e 40 -c 0 -i 8834 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.98493 -s 0 -d 9 -p ack -e 40 -c 0 -i 8824 -a 0 -x {10.0 9.0 4407 ------- null} + -t 4.98493 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8835 -a 0 -x {9.0 10.0 4422 ------- null} - -t 4.98493 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8835 -a 0 -x {9.0 10.0 4422 ------- null} h -t 4.98493 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8835 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.98494 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8821 -a 0 -x {9.0 10.0 4415 ------- null} - -t 4.98494 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8821 -a 0 -x {9.0 10.0 4415 ------- null} h -t 4.98494 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8821 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.98501 -s 0 -d 9 -p ack -e 40 -c 0 -i 8828 -a 0 -x {10.0 9.0 4409 ------- null} - -t 4.98501 -s 0 -d 9 -p ack -e 40 -c 0 -i 8828 -a 0 -x {10.0 9.0 4409 ------- null} h -t 4.98501 -s 0 -d 9 -p ack -e 40 -c 0 -i 8828 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.98514 -s 10 -d 7 -p ack -e 40 -c 0 -i 8832 -a 0 -x {10.0 9.0 4411 ------- null} + -t 4.98514 -s 7 -d 0 -p ack -e 40 -c 0 -i 8832 -a 0 -x {10.0 9.0 4411 ------- null} h -t 4.98514 -s 7 -d 8 -p ack -e 40 -c 0 -i 8832 -a 0 -x {10.0 9.0 4411 ------- null} r -t 4.98542 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8817 -a 0 -x {9.0 10.0 4413 ------- null} + -t 4.98542 -s 10 -d 7 -p ack -e 40 -c 0 -i 8836 -a 0 -x {10.0 9.0 4413 ------- null} - -t 4.98542 -s 10 -d 7 -p ack -e 40 -c 0 -i 8836 -a 0 -x {10.0 9.0 4413 ------- null} h -t 4.98542 -s 10 -d 7 -p ack -e 40 -c 0 -i 8836 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.98544 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8831 -a 0 -x {9.0 10.0 4420 ------- null} + -t 4.98544 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8831 -a 0 -x {9.0 10.0 4420 ------- null} h -t 4.98544 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8831 -a 0 -x {9.0 10.0 4420 ------- null} r -t 4.98602 -s 0 -d 9 -p ack -e 40 -c 0 -i 8826 -a 0 -x {10.0 9.0 4408 ------- null} + -t 4.98602 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8837 -a 0 -x {9.0 10.0 4423 ------- null} - -t 4.98602 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8837 -a 0 -x {9.0 10.0 4423 ------- null} h -t 4.98602 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8837 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.98603 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8823 -a 0 -x {9.0 10.0 4416 ------- null} - -t 4.98603 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8823 -a 0 -x {9.0 10.0 4416 ------- null} h -t 4.98603 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8823 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.98626 -s 0 -d 9 -p ack -e 40 -c 0 -i 8830 -a 0 -x {10.0 9.0 4410 ------- null} - -t 4.98626 -s 0 -d 9 -p ack -e 40 -c 0 -i 8830 -a 0 -x {10.0 9.0 4410 ------- null} h -t 4.98626 -s 0 -d 9 -p ack -e 40 -c 0 -i 8830 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.98637 -s 10 -d 7 -p ack -e 40 -c 0 -i 8834 -a 0 -x {10.0 9.0 4412 ------- null} + -t 4.98637 -s 7 -d 0 -p ack -e 40 -c 0 -i 8834 -a 0 -x {10.0 9.0 4412 ------- null} h -t 4.98637 -s 7 -d 8 -p ack -e 40 -c 0 -i 8834 -a 0 -x {10.0 9.0 4412 ------- null} r -t 4.98662 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8833 -a 0 -x {9.0 10.0 4421 ------- null} + -t 4.98662 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8833 -a 0 -x {9.0 10.0 4421 ------- null} h -t 4.98662 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8833 -a 0 -x {9.0 10.0 4421 ------- null} r -t 4.98666 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8819 -a 0 -x {9.0 10.0 4414 ------- null} + -t 4.98666 -s 10 -d 7 -p ack -e 40 -c 0 -i 8838 -a 0 -x {10.0 9.0 4414 ------- null} - -t 4.98666 -s 10 -d 7 -p ack -e 40 -c 0 -i 8838 -a 0 -x {10.0 9.0 4414 ------- null} h -t 4.98666 -s 10 -d 7 -p ack -e 40 -c 0 -i 8838 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.98704 -s 0 -d 9 -p ack -e 40 -c 0 -i 8828 -a 0 -x {10.0 9.0 4409 ------- null} + -t 4.98704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8839 -a 0 -x {9.0 10.0 4424 ------- null} - -t 4.98704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8839 -a 0 -x {9.0 10.0 4424 ------- null} h -t 4.98704 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8839 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.98712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8825 -a 0 -x {9.0 10.0 4417 ------- null} - -t 4.98712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8825 -a 0 -x {9.0 10.0 4417 ------- null} h -t 4.98712 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8825 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.98736 -s 0 -d 9 -p ack -e 40 -c 0 -i 8832 -a 0 -x {10.0 9.0 4411 ------- null} - -t 4.98736 -s 0 -d 9 -p ack -e 40 -c 0 -i 8832 -a 0 -x {10.0 9.0 4411 ------- null} h -t 4.98736 -s 0 -d 9 -p ack -e 40 -c 0 -i 8832 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.98746 -s 10 -d 7 -p ack -e 40 -c 0 -i 8836 -a 0 -x {10.0 9.0 4413 ------- null} + -t 4.98746 -s 7 -d 0 -p ack -e 40 -c 0 -i 8836 -a 0 -x {10.0 9.0 4413 ------- null} h -t 4.98746 -s 7 -d 8 -p ack -e 40 -c 0 -i 8836 -a 0 -x {10.0 9.0 4413 ------- null} r -t 4.98773 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8835 -a 0 -x {9.0 10.0 4422 ------- null} + -t 4.98773 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8835 -a 0 -x {9.0 10.0 4422 ------- null} h -t 4.98773 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8835 -a 0 -x {9.0 10.0 4422 ------- null} r -t 4.98774 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8821 -a 0 -x {9.0 10.0 4415 ------- null} + -t 4.98774 -s 10 -d 7 -p ack -e 40 -c 0 -i 8840 -a 0 -x {10.0 9.0 4415 ------- null} - -t 4.98774 -s 10 -d 7 -p ack -e 40 -c 0 -i 8840 -a 0 -x {10.0 9.0 4415 ------- null} h -t 4.98774 -s 10 -d 7 -p ack -e 40 -c 0 -i 8840 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.98821 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8827 -a 0 -x {9.0 10.0 4418 ------- null} - -t 4.98821 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8827 -a 0 -x {9.0 10.0 4418 ------- null} h -t 4.98821 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8827 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.98829 -s 0 -d 9 -p ack -e 40 -c 0 -i 8830 -a 0 -x {10.0 9.0 4410 ------- null} + -t 4.98829 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8841 -a 0 -x {9.0 10.0 4425 ------- null} - -t 4.98829 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8841 -a 0 -x {9.0 10.0 4425 ------- null} h -t 4.98829 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8841 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.9884 -s 0 -d 9 -p ack -e 40 -c 0 -i 8834 -a 0 -x {10.0 9.0 4412 ------- null} - -t 4.9884 -s 0 -d 9 -p ack -e 40 -c 0 -i 8834 -a 0 -x {10.0 9.0 4412 ------- null} h -t 4.9884 -s 0 -d 9 -p ack -e 40 -c 0 -i 8834 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.98869 -s 10 -d 7 -p ack -e 40 -c 0 -i 8838 -a 0 -x {10.0 9.0 4414 ------- null} + -t 4.98869 -s 7 -d 0 -p ack -e 40 -c 0 -i 8838 -a 0 -x {10.0 9.0 4414 ------- null} h -t 4.98869 -s 7 -d 8 -p ack -e 40 -c 0 -i 8838 -a 0 -x {10.0 9.0 4414 ------- null} r -t 4.98882 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8837 -a 0 -x {9.0 10.0 4423 ------- null} + -t 4.98882 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8837 -a 0 -x {9.0 10.0 4423 ------- null} h -t 4.98882 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8837 -a 0 -x {9.0 10.0 4423 ------- null} r -t 4.98883 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8823 -a 0 -x {9.0 10.0 4416 ------- null} + -t 4.98883 -s 10 -d 7 -p ack -e 40 -c 0 -i 8842 -a 0 -x {10.0 9.0 4416 ------- null} - -t 4.98883 -s 10 -d 7 -p ack -e 40 -c 0 -i 8842 -a 0 -x {10.0 9.0 4416 ------- null} h -t 4.98883 -s 10 -d 7 -p ack -e 40 -c 0 -i 8842 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.9893 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8829 -a 0 -x {9.0 10.0 4419 ------- null} - -t 4.9893 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8829 -a 0 -x {9.0 10.0 4419 ------- null} h -t 4.9893 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8829 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.98939 -s 0 -d 9 -p ack -e 40 -c 0 -i 8832 -a 0 -x {10.0 9.0 4411 ------- null} + -t 4.98939 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8843 -a 0 -x {9.0 10.0 4426 ------- null} - -t 4.98939 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8843 -a 0 -x {9.0 10.0 4426 ------- null} h -t 4.98939 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8843 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.98946 -s 0 -d 9 -p ack -e 40 -c 0 -i 8836 -a 0 -x {10.0 9.0 4413 ------- null} - -t 4.98946 -s 0 -d 9 -p ack -e 40 -c 0 -i 8836 -a 0 -x {10.0 9.0 4413 ------- null} h -t 4.98946 -s 0 -d 9 -p ack -e 40 -c 0 -i 8836 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.98978 -s 10 -d 7 -p ack -e 40 -c 0 -i 8840 -a 0 -x {10.0 9.0 4415 ------- null} + -t 4.98978 -s 7 -d 0 -p ack -e 40 -c 0 -i 8840 -a 0 -x {10.0 9.0 4415 ------- null} h -t 4.98978 -s 7 -d 8 -p ack -e 40 -c 0 -i 8840 -a 0 -x {10.0 9.0 4415 ------- null} r -t 4.98984 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8839 -a 0 -x {9.0 10.0 4424 ------- null} + -t 4.98984 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8839 -a 0 -x {9.0 10.0 4424 ------- null} h -t 4.98984 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8839 -a 0 -x {9.0 10.0 4424 ------- null} r -t 4.98992 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8825 -a 0 -x {9.0 10.0 4417 ------- null} + -t 4.98992 -s 10 -d 7 -p ack -e 40 -c 0 -i 8844 -a 0 -x {10.0 9.0 4417 ------- null} - -t 4.98992 -s 10 -d 7 -p ack -e 40 -c 0 -i 8844 -a 0 -x {10.0 9.0 4417 ------- null} h -t 4.98992 -s 10 -d 7 -p ack -e 40 -c 0 -i 8844 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.99038 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8831 -a 0 -x {9.0 10.0 4420 ------- null} - -t 4.99038 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8831 -a 0 -x {9.0 10.0 4420 ------- null} h -t 4.99038 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8831 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.99043 -s 0 -d 9 -p ack -e 40 -c 0 -i 8834 -a 0 -x {10.0 9.0 4412 ------- null} + -t 4.99043 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8845 -a 0 -x {9.0 10.0 4427 ------- null} - -t 4.99043 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8845 -a 0 -x {9.0 10.0 4427 ------- null} h -t 4.99043 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8845 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.9905 -s 0 -d 9 -p ack -e 40 -c 0 -i 8838 -a 0 -x {10.0 9.0 4414 ------- null} - -t 4.9905 -s 0 -d 9 -p ack -e 40 -c 0 -i 8838 -a 0 -x {10.0 9.0 4414 ------- null} h -t 4.9905 -s 0 -d 9 -p ack -e 40 -c 0 -i 8838 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.99086 -s 10 -d 7 -p ack -e 40 -c 0 -i 8842 -a 0 -x {10.0 9.0 4416 ------- null} + -t 4.99086 -s 7 -d 0 -p ack -e 40 -c 0 -i 8842 -a 0 -x {10.0 9.0 4416 ------- null} h -t 4.99086 -s 7 -d 8 -p ack -e 40 -c 0 -i 8842 -a 0 -x {10.0 9.0 4416 ------- null} r -t 4.99101 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8827 -a 0 -x {9.0 10.0 4418 ------- null} + -t 4.99101 -s 10 -d 7 -p ack -e 40 -c 0 -i 8846 -a 0 -x {10.0 9.0 4418 ------- null} - -t 4.99101 -s 10 -d 7 -p ack -e 40 -c 0 -i 8846 -a 0 -x {10.0 9.0 4418 ------- null} h -t 4.99101 -s 10 -d 7 -p ack -e 40 -c 0 -i 8846 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.99109 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8841 -a 0 -x {9.0 10.0 4425 ------- null} + -t 4.99109 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8841 -a 0 -x {9.0 10.0 4425 ------- null} h -t 4.99109 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8841 -a 0 -x {9.0 10.0 4425 ------- null} + -t 4.99147 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8833 -a 0 -x {9.0 10.0 4421 ------- null} - -t 4.99147 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8833 -a 0 -x {9.0 10.0 4421 ------- null} h -t 4.99147 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8833 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.99149 -s 0 -d 9 -p ack -e 40 -c 0 -i 8836 -a 0 -x {10.0 9.0 4413 ------- null} + -t 4.99149 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8847 -a 0 -x {9.0 10.0 4428 ------- null} - -t 4.99149 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8847 -a 0 -x {9.0 10.0 4428 ------- null} h -t 4.99149 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8847 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.9917 -s 0 -d 9 -p ack -e 40 -c 0 -i 8840 -a 0 -x {10.0 9.0 4415 ------- null} - -t 4.9917 -s 0 -d 9 -p ack -e 40 -c 0 -i 8840 -a 0 -x {10.0 9.0 4415 ------- null} h -t 4.9917 -s 0 -d 9 -p ack -e 40 -c 0 -i 8840 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.99195 -s 10 -d 7 -p ack -e 40 -c 0 -i 8844 -a 0 -x {10.0 9.0 4417 ------- null} + -t 4.99195 -s 7 -d 0 -p ack -e 40 -c 0 -i 8844 -a 0 -x {10.0 9.0 4417 ------- null} h -t 4.99195 -s 7 -d 8 -p ack -e 40 -c 0 -i 8844 -a 0 -x {10.0 9.0 4417 ------- null} r -t 4.9921 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8829 -a 0 -x {9.0 10.0 4419 ------- null} + -t 4.9921 -s 10 -d 7 -p ack -e 40 -c 0 -i 8848 -a 0 -x {10.0 9.0 4419 ------- null} - -t 4.9921 -s 10 -d 7 -p ack -e 40 -c 0 -i 8848 -a 0 -x {10.0 9.0 4419 ------- null} h -t 4.9921 -s 10 -d 7 -p ack -e 40 -c 0 -i 8848 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.99219 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8843 -a 0 -x {9.0 10.0 4426 ------- null} + -t 4.99219 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8843 -a 0 -x {9.0 10.0 4426 ------- null} h -t 4.99219 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8843 -a 0 -x {9.0 10.0 4426 ------- null} r -t 4.99253 -s 0 -d 9 -p ack -e 40 -c 0 -i 8838 -a 0 -x {10.0 9.0 4414 ------- null} + -t 4.99253 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8849 -a 0 -x {9.0 10.0 4429 ------- null} - -t 4.99253 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8849 -a 0 -x {9.0 10.0 4429 ------- null} h -t 4.99253 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8849 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.99256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8835 -a 0 -x {9.0 10.0 4422 ------- null} - -t 4.99256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8835 -a 0 -x {9.0 10.0 4422 ------- null} h -t 4.99256 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8835 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.99274 -s 0 -d 9 -p ack -e 40 -c 0 -i 8842 -a 0 -x {10.0 9.0 4416 ------- null} - -t 4.99274 -s 0 -d 9 -p ack -e 40 -c 0 -i 8842 -a 0 -x {10.0 9.0 4416 ------- null} h -t 4.99274 -s 0 -d 9 -p ack -e 40 -c 0 -i 8842 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.99304 -s 10 -d 7 -p ack -e 40 -c 0 -i 8846 -a 0 -x {10.0 9.0 4418 ------- null} + -t 4.99304 -s 7 -d 0 -p ack -e 40 -c 0 -i 8846 -a 0 -x {10.0 9.0 4418 ------- null} h -t 4.99304 -s 7 -d 8 -p ack -e 40 -c 0 -i 8846 -a 0 -x {10.0 9.0 4418 ------- null} r -t 4.99318 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8831 -a 0 -x {9.0 10.0 4420 ------- null} + -t 4.99318 -s 10 -d 7 -p ack -e 40 -c 0 -i 8850 -a 0 -x {10.0 9.0 4420 ------- null} - -t 4.99318 -s 10 -d 7 -p ack -e 40 -c 0 -i 8850 -a 0 -x {10.0 9.0 4420 ------- null} h -t 4.99318 -s 10 -d 7 -p ack -e 40 -c 0 -i 8850 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.99323 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8845 -a 0 -x {9.0 10.0 4427 ------- null} + -t 4.99323 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8845 -a 0 -x {9.0 10.0 4427 ------- null} h -t 4.99323 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8845 -a 0 -x {9.0 10.0 4427 ------- null} + -t 4.99365 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8837 -a 0 -x {9.0 10.0 4423 ------- null} - -t 4.99365 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8837 -a 0 -x {9.0 10.0 4423 ------- null} h -t 4.99365 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8837 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.99373 -s 0 -d 9 -p ack -e 40 -c 0 -i 8840 -a 0 -x {10.0 9.0 4415 ------- null} + -t 4.99373 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8851 -a 0 -x {9.0 10.0 4430 ------- null} - -t 4.99373 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8851 -a 0 -x {9.0 10.0 4430 ------- null} h -t 4.99373 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8851 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.99378 -s 0 -d 9 -p ack -e 40 -c 0 -i 8844 -a 0 -x {10.0 9.0 4417 ------- null} - -t 4.99378 -s 0 -d 9 -p ack -e 40 -c 0 -i 8844 -a 0 -x {10.0 9.0 4417 ------- null} h -t 4.99378 -s 0 -d 9 -p ack -e 40 -c 0 -i 8844 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.99413 -s 10 -d 7 -p ack -e 40 -c 0 -i 8848 -a 0 -x {10.0 9.0 4419 ------- null} + -t 4.99413 -s 7 -d 0 -p ack -e 40 -c 0 -i 8848 -a 0 -x {10.0 9.0 4419 ------- null} h -t 4.99413 -s 7 -d 8 -p ack -e 40 -c 0 -i 8848 -a 0 -x {10.0 9.0 4419 ------- null} r -t 4.99427 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8833 -a 0 -x {9.0 10.0 4421 ------- null} + -t 4.99427 -s 10 -d 7 -p ack -e 40 -c 0 -i 8852 -a 0 -x {10.0 9.0 4421 ------- null} - -t 4.99427 -s 10 -d 7 -p ack -e 40 -c 0 -i 8852 -a 0 -x {10.0 9.0 4421 ------- null} h -t 4.99427 -s 10 -d 7 -p ack -e 40 -c 0 -i 8852 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.99429 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8847 -a 0 -x {9.0 10.0 4428 ------- null} + -t 4.99429 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8847 -a 0 -x {9.0 10.0 4428 ------- null} h -t 4.99429 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8847 -a 0 -x {9.0 10.0 4428 ------- null} + -t 4.99474 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8839 -a 0 -x {9.0 10.0 4424 ------- null} - -t 4.99474 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8839 -a 0 -x {9.0 10.0 4424 ------- null} h -t 4.99474 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8839 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.99477 -s 0 -d 9 -p ack -e 40 -c 0 -i 8842 -a 0 -x {10.0 9.0 4416 ------- null} + -t 4.99477 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8853 -a 0 -x {9.0 10.0 4431 ------- null} - -t 4.99477 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8853 -a 0 -x {9.0 10.0 4431 ------- null} h -t 4.99477 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8853 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.99485 -s 0 -d 9 -p ack -e 40 -c 0 -i 8846 -a 0 -x {10.0 9.0 4418 ------- null} - -t 4.99485 -s 0 -d 9 -p ack -e 40 -c 0 -i 8846 -a 0 -x {10.0 9.0 4418 ------- null} h -t 4.99485 -s 0 -d 9 -p ack -e 40 -c 0 -i 8846 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.99522 -s 10 -d 7 -p ack -e 40 -c 0 -i 8850 -a 0 -x {10.0 9.0 4420 ------- null} + -t 4.99522 -s 7 -d 0 -p ack -e 40 -c 0 -i 8850 -a 0 -x {10.0 9.0 4420 ------- null} h -t 4.99522 -s 7 -d 8 -p ack -e 40 -c 0 -i 8850 -a 0 -x {10.0 9.0 4420 ------- null} r -t 4.99533 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8849 -a 0 -x {9.0 10.0 4429 ------- null} + -t 4.99533 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8849 -a 0 -x {9.0 10.0 4429 ------- null} h -t 4.99533 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8849 -a 0 -x {9.0 10.0 4429 ------- null} r -t 4.99536 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8835 -a 0 -x {9.0 10.0 4422 ------- null} + -t 4.99536 -s 10 -d 7 -p ack -e 40 -c 0 -i 8854 -a 0 -x {10.0 9.0 4422 ------- null} - -t 4.99536 -s 10 -d 7 -p ack -e 40 -c 0 -i 8854 -a 0 -x {10.0 9.0 4422 ------- null} h -t 4.99536 -s 10 -d 7 -p ack -e 40 -c 0 -i 8854 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.99581 -s 0 -d 9 -p ack -e 40 -c 0 -i 8844 -a 0 -x {10.0 9.0 4417 ------- null} + -t 4.99581 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8855 -a 0 -x {9.0 10.0 4432 ------- null} - -t 4.99581 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8855 -a 0 -x {9.0 10.0 4432 ------- null} h -t 4.99581 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8855 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.99582 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8841 -a 0 -x {9.0 10.0 4425 ------- null} - -t 4.99582 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8841 -a 0 -x {9.0 10.0 4425 ------- null} h -t 4.99582 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8841 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.99608 -s 0 -d 9 -p ack -e 40 -c 0 -i 8848 -a 0 -x {10.0 9.0 4419 ------- null} - -t 4.99608 -s 0 -d 9 -p ack -e 40 -c 0 -i 8848 -a 0 -x {10.0 9.0 4419 ------- null} h -t 4.99608 -s 0 -d 9 -p ack -e 40 -c 0 -i 8848 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.9963 -s 10 -d 7 -p ack -e 40 -c 0 -i 8852 -a 0 -x {10.0 9.0 4421 ------- null} + -t 4.9963 -s 7 -d 0 -p ack -e 40 -c 0 -i 8852 -a 0 -x {10.0 9.0 4421 ------- null} h -t 4.9963 -s 7 -d 8 -p ack -e 40 -c 0 -i 8852 -a 0 -x {10.0 9.0 4421 ------- null} r -t 4.99645 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8837 -a 0 -x {9.0 10.0 4423 ------- null} + -t 4.99645 -s 10 -d 7 -p ack -e 40 -c 0 -i 8856 -a 0 -x {10.0 9.0 4423 ------- null} - -t 4.99645 -s 10 -d 7 -p ack -e 40 -c 0 -i 8856 -a 0 -x {10.0 9.0 4423 ------- null} h -t 4.99645 -s 10 -d 7 -p ack -e 40 -c 0 -i 8856 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.99653 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8851 -a 0 -x {9.0 10.0 4430 ------- null} + -t 4.99653 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8851 -a 0 -x {9.0 10.0 4430 ------- null} h -t 4.99653 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8851 -a 0 -x {9.0 10.0 4430 ------- null} r -t 4.99688 -s 0 -d 9 -p ack -e 40 -c 0 -i 8846 -a 0 -x {10.0 9.0 4418 ------- null} + -t 4.99688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8857 -a 0 -x {9.0 10.0 4433 ------- null} - -t 4.99688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8857 -a 0 -x {9.0 10.0 4433 ------- null} h -t 4.99688 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8857 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.99691 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8843 -a 0 -x {9.0 10.0 4426 ------- null} - -t 4.99691 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8843 -a 0 -x {9.0 10.0 4426 ------- null} h -t 4.99691 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8843 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.9972 -s 0 -d 9 -p ack -e 40 -c 0 -i 8850 -a 0 -x {10.0 9.0 4420 ------- null} - -t 4.9972 -s 0 -d 9 -p ack -e 40 -c 0 -i 8850 -a 0 -x {10.0 9.0 4420 ------- null} h -t 4.9972 -s 0 -d 9 -p ack -e 40 -c 0 -i 8850 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.99739 -s 10 -d 7 -p ack -e 40 -c 0 -i 8854 -a 0 -x {10.0 9.0 4422 ------- null} + -t 4.99739 -s 7 -d 0 -p ack -e 40 -c 0 -i 8854 -a 0 -x {10.0 9.0 4422 ------- null} h -t 4.99739 -s 7 -d 8 -p ack -e 40 -c 0 -i 8854 -a 0 -x {10.0 9.0 4422 ------- null} r -t 4.99754 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8839 -a 0 -x {9.0 10.0 4424 ------- null} + -t 4.99754 -s 10 -d 7 -p ack -e 40 -c 0 -i 8858 -a 0 -x {10.0 9.0 4424 ------- null} - -t 4.99754 -s 10 -d 7 -p ack -e 40 -c 0 -i 8858 -a 0 -x {10.0 9.0 4424 ------- null} h -t 4.99754 -s 10 -d 7 -p ack -e 40 -c 0 -i 8858 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.99757 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8853 -a 0 -x {9.0 10.0 4431 ------- null} + -t 4.99757 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8853 -a 0 -x {9.0 10.0 4431 ------- null} h -t 4.99757 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8853 -a 0 -x {9.0 10.0 4431 ------- null} + -t 4.99806 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8845 -a 0 -x {9.0 10.0 4427 ------- null} - -t 4.99806 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8845 -a 0 -x {9.0 10.0 4427 ------- null} h -t 4.99806 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8845 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.99811 -s 0 -d 9 -p ack -e 40 -c 0 -i 8848 -a 0 -x {10.0 9.0 4419 ------- null} + -t 4.99811 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8859 -a 0 -x {9.0 10.0 4434 ------- null} - -t 4.99811 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8859 -a 0 -x {9.0 10.0 4434 ------- null} h -t 4.99811 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8859 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.99826 -s 0 -d 9 -p ack -e 40 -c 0 -i 8852 -a 0 -x {10.0 9.0 4421 ------- null} - -t 4.99826 -s 0 -d 9 -p ack -e 40 -c 0 -i 8852 -a 0 -x {10.0 9.0 4421 ------- null} h -t 4.99826 -s 0 -d 9 -p ack -e 40 -c 0 -i 8852 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.99848 -s 10 -d 7 -p ack -e 40 -c 0 -i 8856 -a 0 -x {10.0 9.0 4423 ------- null} + -t 4.99848 -s 7 -d 0 -p ack -e 40 -c 0 -i 8856 -a 0 -x {10.0 9.0 4423 ------- null} h -t 4.99848 -s 7 -d 8 -p ack -e 40 -c 0 -i 8856 -a 0 -x {10.0 9.0 4423 ------- null} r -t 4.99861 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8855 -a 0 -x {9.0 10.0 4432 ------- null} + -t 4.99861 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8855 -a 0 -x {9.0 10.0 4432 ------- null} h -t 4.99861 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8855 -a 0 -x {9.0 10.0 4432 ------- null} r -t 4.99862 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8841 -a 0 -x {9.0 10.0 4425 ------- null} + -t 4.99862 -s 10 -d 7 -p ack -e 40 -c 0 -i 8860 -a 0 -x {10.0 9.0 4425 ------- null} - -t 4.99862 -s 10 -d 7 -p ack -e 40 -c 0 -i 8860 -a 0 -x {10.0 9.0 4425 ------- null} h -t 4.99862 -s 10 -d 7 -p ack -e 40 -c 0 -i 8860 -a 0 -x {10.0 9.0 -1 ------- null} + -t 4.99915 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8847 -a 0 -x {9.0 10.0 4428 ------- null} - -t 4.99915 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8847 -a 0 -x {9.0 10.0 4428 ------- null} h -t 4.99915 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8847 -a 0 -x {9.0 10.0 -1 ------- null} r -t 4.99923 -s 0 -d 9 -p ack -e 40 -c 0 -i 8850 -a 0 -x {10.0 9.0 4420 ------- null} + -t 4.99923 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8861 -a 0 -x {9.0 10.0 4435 ------- null} - -t 4.99923 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8861 -a 0 -x {9.0 10.0 4435 ------- null} h -t 4.99923 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8861 -a 0 -x {9.0 10.0 -1 ------- null} + -t 4.99944 -s 0 -d 9 -p ack -e 40 -c 0 -i 8854 -a 0 -x {10.0 9.0 4422 ------- null} - -t 4.99944 -s 0 -d 9 -p ack -e 40 -c 0 -i 8854 -a 0 -x {10.0 9.0 4422 ------- null} h -t 4.99944 -s 0 -d 9 -p ack -e 40 -c 0 -i 8854 -a 0 -x {10.0 9.0 -1 ------- null} r -t 4.99957 -s 10 -d 7 -p ack -e 40 -c 0 -i 8858 -a 0 -x {10.0 9.0 4424 ------- null} + -t 4.99957 -s 7 -d 0 -p ack -e 40 -c 0 -i 8858 -a 0 -x {10.0 9.0 4424 ------- null} h -t 4.99957 -s 7 -d 8 -p ack -e 40 -c 0 -i 8858 -a 0 -x {10.0 9.0 4424 ------- null} r -t 4.99968 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8857 -a 0 -x {9.0 10.0 4433 ------- null} + -t 4.99968 -s 0 -d 7 -p tcp -e 1000 -c 0 -i 8857 -a 0 -x {9.0 10.0 4433 ------- null} h -t 4.99968 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8857 -a 0 -x {9.0 10.0 4433 ------- null} r -t 4.99971 -s 7 -d 10 -p tcp -e 1000 -c 0 -i 8843 -a 0 -x {9.0 10.0 4426 ------- null} + -t 4.99971 -s 10 -d 7 -p ack -e 40 -c 0 -i 8862 -a 0 -x {10.0 9.0 4426 ------- null} - -t 4.99971 -s 10 -d 7 -p ack -e 40 -c 0 -i 8862 -a 0 -x {10.0 9.0 4426 ------- null} h -t 4.99971 -s 10 -d 7 -p ack -e 40 -c 0 -i 8862 -a 0 -x {10.0 9.0 -1 ------- null} nam-1.15/ex/losspatterns.nam0000664000076400007660000045071006610761037014763 0ustar tomhnsnamn -t * -s 69 -v circle -c grey -z 0.177110 n -t * -s 68 -v circle -c grey -z 0.177110 n -t * -s 67 -v circle -c grey -z 0.177110 n -t * -s 66 -v circle -c grey -z 0.177110 n -t * -s 65 -v circle -c grey -z 0.177110 n -t * -s 64 -v circle -c grey -z 0.177110 n -t * -s 63 -v circle -c grey -z 0.177110 n -t * -s 62 -v circle -c grey -z 0.177110 n -t * -s 60 -v circle -c grey -z 0.177110 n -t * -s 59 -v circle -c grey -z 0.177110 n -t * -s 58 -v circle -c grey -z 0.177110 n -t * -s 57 -v circle -c grey -z 0.177110 n -t * -s 56 -v circle -c grey -z 0.177110 n -t * -s 55 -v circle -c grey -z 0.177110 n -t * -s 54 -v circle -c grey -z 0.177110 n -t * -s 53 -v circle -c grey -z 0.177110 n -t * -s 52 -v circle -c grey -z 0.177110 n -t * -s 51 -v circle -c grey -z 0.177110 n -t * -s 50 -v circle -c grey -z 0.177110 n -t * -s 49 -v circle -c grey -z 0.177110 n -t * -s 48 -v circle -c grey -z 0.177110 n -t * -s 47 -v circle -c grey -z 0.177110 n -t * -s 46 -v circle -c grey -z 0.177110 n -t * -s 45 -v circle -c grey -z 0.177110 n -t * -s 44 -v circle -c grey -z 0.177110 n -t * -s 43 -v circle -c grey -z 0.177110 n -t * -s 42 -v circle -c grey -z 0.177110 n -t * -s 41 -v circle -c grey -z 0.177110 n -t * -s 40 -v circle -c grey -z 0.177110 n -t * -s 39 -v circle -c grey -z 0.177110 n -t * -s 38 -v circle -c grey -z 0.177110 n -t * -s 37 -v circle -c grey -z 0.177110 n -t * -s 36 -v circle -c grey -z 0.177110 n -t * -s 34 -v circle -c grey -z 0.177110 n -t * -s 33 -v circle -c grey -z 0.177110 n -t * -s 32 -v circle -c grey -z 0.177110 n -t * -s 31 -v circle -c grey -z 0.177110 n -t * -s 30 -v circle -c grey -z 0.177110 n -t * -s 29 -v circle -c grey -z 0.177110 n -t * -s 28 -v circle -c grey -z 0.177110 n -t * -s 27 -v circle -c grey -z 0.177110 n -t * -s 26 -v circle -c grey -z 0.177110 n -t * -s 25 -v circle -c grey -z 0.177110 n -t * -s 24 -v circle -c grey -z 0.177110 n -t * -s 23 -v circle -c grey -z 0.177110 n -t * -s 22 -v circle -c grey -z 0.177110 n -t * -s 21 -v circle -c grey -z 0.177110 n -t * -s 20 -v circle -c grey -z 0.177110 n -t * -s 19 -v circle -c grey -z 0.177110 n -t * -s 18 -v circle -c grey -z 0.177110 n -t * -s 17 -v circle -c grey -z 0.177110 n -t * -s 16 -v circle -c grey -z 0.177110 n -t * -s 15 -v circle -c grey -z 0.177110 n -t * -s 14 -v circle -c grey -z 0.177110 n -t * -s 13 -v circle -c grey -z 0.177110 n -t * -s 12 -v circle -c grey -z 0.177110 n -t * -s 11 -v circle -c grey -z 0.177110 n -t * -s 10 -v circle -c grey -z 0.177110 n -t * -s 9 -v circle -c grey -z 0.177110 n -t * -s 8 -v circle -c grey -z 0.177110 n -t * -s 7 -v circle -c grey -z 0.177110 n -t * -s 6 -v circle -c grey -z 0.177110 n -t * -s 5 -v circle -c grey -z 0.177110 n -t * -s 4 -v circle -c grey -z 0.177110 n -t * -s 3 -v circle -c grey -z 0.177110 n -t * -s 2 -v circle -c grey -z 0.177110 n -t * -s 1 -v circle -c grey -z 0.177110 n -t * -s 0 -v circle -c grey -z 0.177110 l -t * -s 66 -d 67 -r 512000.000000 -D 0.010000 -c grey -o 236.6deg -l 0.012432 l -t * -s 65 -d 66 -r 512000.000000 -D 0.010000 -c grey -o 237.3deg -l 0.047823 l -t * -s 64 -d 65 -r 512000.000000 -D 0.010000 -c grey -o 241.3deg -l 0.242590 l -t * -s 63 -d 64 -r 512000.000000 -D 0.010000 -c grey -o 243.8deg -l 0.350145 l -t * -s 62 -d 63 -r 512000.000000 -D 0.010000 -c grey -o 251.8deg -l 0.674888 l -t * -s 60 -d 68 -r 512000.000000 -D 0.010000 -c grey -o 278.0deg -l 0.039892 l -t * -s 58 -d 59 -r 512000.000000 -D 0.010000 -c grey -o 120.7deg -l 0.010773 l -t * -s 57 -d 58 -r 512000.000000 -D 0.010000 -c grey -o 115.6deg -l 0.059988 l -t * -s 56 -d 57 -r 512000.000000 -D 0.010000 -c grey -o 111.0deg -l 0.214523 l -t * -s 55 -d 60 -r 512000.000000 -D 0.010000 -c grey -o 207.4deg -l 0.009570 l -t * -s 53 -d 54 -r 512000.000000 -D 0.010000 -c grey -o 332.5deg -l 0.008932 l -t * -s 52 -d 53 -r 512000.000000 -D 0.010000 -c grey -o 330.3deg -l 0.027123 l -t * -s 50 -d 51 -r 512000.000000 -D 0.010000 -c grey -o 213.9deg -l 0.010770 l -t * -s 49 -d 50 -r 512000.000000 -D 0.010000 -c grey -o 213.4deg -l 0.089550 l -t * -s 48 -d 49 -r 512000.000000 -D 0.010000 -c grey -o 213.1deg -l 0.307003 l -t * -s 47 -d 48 -r 512000.000000 -D 0.010000 -c grey -o 213.2deg -l 0.406217 l -t * -s 45 -d 46 -r 512000.000000 -D 0.010000 -c grey -o 77.4deg -l 0.010975 l -t * -s 44 -d 45 -r 512000.000000 -D 0.010000 -c grey -o 81.5deg -l 0.107872 l -t * -s 43 -d 44 -r 512000.000000 -D 0.010000 -c grey -o 83.2deg -l 0.142910 l -t * -s 42 -d 43 -r 512000.000000 -D 0.010000 -c grey -o 91.6deg -l 0.392748 l -t * -s 41 -d 42 -r 512000.000000 -D 0.010000 -c grey -o 92.7deg -l 0.543889 l -t * -s 40 -d 41 -r 512000.000000 -D 0.010000 -c grey -o 91.4deg -l 0.782281 l -t * -s 38 -d 39 -r 512000.000000 -D 0.010000 -c grey -o 210.0deg -l 0.094510 l -t * -s 37 -d 38 -r 512000.000000 -D 0.010000 -c grey -o 201.6deg -l 0.191327 l -t * -s 36 -d 37 -r 512000.000000 -D 0.010000 -c grey -o 193.3deg -l 0.276765 l -t * -s 32 -d 33 -r 512000.000000 -D 0.010000 -c grey -o 176.5deg -l 0.015577 l -t * -s 31 -d 32 -r 512000.000000 -D 0.010000 -c grey -o 178.6deg -l 0.041803 l -t * -s 30 -d 31 -r 512000.000000 -D 0.010000 -c grey -o 188.7deg -l 0.140526 l -t * -s 28 -d 29 -r 512000.000000 -D 0.010000 -c grey -o 123.6deg -l 0.003157 l -t * -s 26 -d 28 -r 512000.000000 -D 0.010000 -c grey -o 125.2deg -l 0.022392 l -t * -s 25 -d 27 -r 512000.000000 -D 0.010000 -c grey -o 299.8deg -l 0.008223 l -t * -s 24 -d 26 -r 512000.000000 -D 0.010000 -c grey -o 134.3deg -l 0.141292 l -t * -s 23 -d 25 -r 512000.000000 -D 0.010000 -c grey -o 301.7deg -l 0.041823 l -t * -s 22 -d 30 -r 512000.000000 -D 0.010000 -c grey -o 196.3deg -l 0.258121 l -t * -s 22 -d 24 -r 512000.000000 -D 0.010000 -c grey -o 135.2deg -l 0.207179 l -t * -s 20 -d 23 -r 512000.000000 -D 0.010000 -c grey -o 310.3deg -l 0.246140 l -t * -s 19 -d 22 -r 512000.000000 -D 0.010000 -c grey -o 171.5deg -l 0.501466 l -t * -s 18 -d 21 -r 512000.000000 -D 0.010000 -c grey -o 36.1deg -l 0.001174 l -t * -s 17 -d 20 -r 512000.000000 -D 0.010000 -c grey -o 310.9deg -l 0.397924 l -t * -s 16 -d 19 -r 512000.000000 -D 0.010000 -c grey -o 169.1deg -l 0.570886 l -t * -s 15 -d 18 -r 512000.000000 -D 0.010000 -c grey -o 37.3deg -l 0.016167 l -t * -s 14 -d 60 -r 512000.000000 -D 0.010000 -c grey -o 273.0deg -l 0.219939 l -t * -s 14 -d 55 -r 512000.000000 -D 0.010000 -c grey -o 304.6deg -l 0.180333 l -t * -s 14 -d 34 -r 512000.000000 -D 0.010000 -c grey -o 347.1deg -l 0.002031 l -t * -s 14 -d 17 -r 512000.000000 -D 0.010000 -c grey -o 313.9deg -l 0.665056 l -t * -s 13 -d 16 -r 512000.000000 -D 0.010000 -c grey -o 164.3deg -l 0.739609 l -t * -s 12 -d 15 -r 512000.000000 -D 0.010000 -c grey -o 41.0deg -l 0.043921 l -t * -s 11 -d 14 -r 512000.000000 -D 0.010000 -c grey -o 298.6deg -l 0.821839 l -t * -s 10 -d 13 -r 512000.000000 -D 0.010000 -c grey -o 159.8deg -l 0.898903 l -t * -s 9 -d 12 -r 512000.000000 -D 0.010000 -c grey -o 58.0deg -l 0.484081 l -t * -s 8 -d 52 -r 512000.000000 -D 0.010000 -c grey -o 309.9deg -l 0.177975 l -t * -s 8 -d 11 -r 512000.000000 -D 0.010000 -c grey -o 297.0deg -l 0.924552 l -t * -s 7 -d 36 -r 512000.000000 -D 0.010000 -c grey -o 172.4deg -l 0.421910 l -t * -s 7 -d 10 -r 512000.000000 -D 0.010000 -c grey -o 158.1deg -l 0.936369 l -t * -s 6 -d 9 -r 512000.000000 -D 0.010000 -c grey -o 53.0deg -l 0.601206 l -t * -s 5 -d 62 -r 512000.000000 -D 0.010000 -c grey -o 255.7deg -l 0.739082 l -t * -s 5 -d 56 -r 512000.000000 -D 0.010000 -c grey -o 106.9deg -l 0.247873 l -t * -s 5 -d 47 -r 512000.000000 -D 0.010000 -c grey -o 214.7deg -l 0.446755 l -t * -s 5 -d 40 -r 512000.000000 -D 0.010000 -c grey -o 81.5deg -l 0.917764 l -t * -s 5 -d 8 -r 512000.000000 -D 0.010000 -c grey -o 303.0deg -l 1.124339 l -t * -s 5 -d 7 -r 512000.000000 -D 0.010000 -c grey -o 158.5deg -l 1.148381 l -t * -s 5 -d 6 -r 512000.000000 -D 0.010000 -c grey -o 46.8deg -l 0.658809 l -t * -s 4 -d 5 -r 512000.000000 -D 0.010000 -c grey -o 181.2deg -l 0.720193 l -t * -s 3 -d 69 -r 512000.000000 -D 0.010000 -c grey -o 9.3deg -l 0.010453 l -t * -s 3 -d 4 -r 512000.000000 -D 0.010000 -c grey -o 185.1deg -l 0.594933 l -t * -s 1 -d 3 -r 512000.000000 -D 0.010000 -c grey -o 187.1deg -l 0.446924 l -t * -s 0 -d 2 -r 512000.000000 -D 0.010000 -c grey -o 3.4deg -l 0.026328 l -t * -s 0 -d 1 -r 512000.000000 -D 0.010000 -c grey -o 186.4deg -l 0.229964 l -t 0.0 -s 0 -d 1 -S COLOR -c black l -t 0.0 -s 0 -d 2 -S COLOR -c black l -t 0.0 -s 1 -d 3 -S COLOR -c black l -t 0.0 -s 3 -d 4 -S COLOR -c black l -t 0.0 -s 4 -d 5 -S COLOR -c black l -t 0.0 -s 5 -d 6 -S COLOR -c brown l -t 0.0 -s 5 -d 7 -S COLOR -c red l -t 0.0 -s 5 -d 8 -S COLOR -c black l -t 0.0 -s 6 -d 9 -S COLOR -c red l -t 0.0 -s 7 -d 10 -S COLOR -c red l -t 0.0 -s 8 -d 11 -S COLOR -c black l -t 0.0 -s 9 -d 12 -S COLOR -c black l -t 0.0 -s 10 -d 13 -S COLOR -c orange l -t 0.0 -s 11 -d 14 -S COLOR -c brown l -t 0.0 -s 12 -d 15 -S COLOR -c black l -t 0.0 -s 13 -d 16 -S COLOR -c black l -t 0.0 -s 14 -d 17 -S COLOR -c blue l -t 0.0 -s 15 -d 18 -S COLOR -c black l -t 0.0 -s 16 -d 19 -S COLOR -c red l -t 0.0 -s 17 -d 20 -S COLOR -c black l -t 0.0 -s 18 -d 21 -S COLOR -c black l -t 0.0 -s 19 -d 22 -S COLOR -c black l -t 0.0 -s 20 -d 23 -S COLOR -c blue l -t 0.0 -s 22 -d 24 -S COLOR -c black l -t 0.0 -s 22 -d 30 -S COLOR -c brown l -t 0.0 -s 23 -d 25 -S COLOR -c black l -t 0.0 -s 24 -d 26 -S COLOR -c black l -t 0.0 -s 30 -d 31 -S COLOR -c black l -t 0.0 -s 25 -d 27 -S COLOR -c black l -t 0.0 -s 26 -d 28 -S COLOR -c black l -t 0.0 -s 31 -d 32 -S COLOR -c blue l -t 0.0 -s 28 -d 29 -S COLOR -c black l -t 0.0 -s 32 -d 33 -S COLOR -c black n -t 0.0 -s 0 -c black n -t 0.0 -s 1 -c black n -t 0.0 -s 2 -c black n -t 0.0 -s 3 -c black n -t 0.0 -s 4 -c black n -t 0.0 -s 5 -c black n -t 0.0 -s 6 -c black n -t 0.0 -s 7 -c black n -t 0.0 -s 8 -c black n -t 0.0 -s 9 -c black n -t 0.0 -s 10 -c black n -t 0.0 -s 11 -c black n -t 0.0 -s 12 -c black n -t 0.0 -s 13 -c black n -t 0.0 -s 14 -c black n -t 0.0 -s 15 -c black n -t 0.0 -s 16 -c black n -t 0.0 -s 17 -c black n -t 0.0 -s 18 -c black n -t 0.0 -s 19 -c black n -t 0.0 -s 20 -c black n -t 0.0 -s 21 -c black n -t 0.0 -s 22 -c black n -t 0.0 -s 23 -c black n -t 0.0 -s 24 -c black n -t 0.0 -s 25 -c black n -t 0.0 -s 26 -c black n -t 0.0 -s 27 -c black n -t 0.0 -s 28 -c black n -t 0.0 -s 29 -c black n -t 0.0 -s 30 -c black n -t 0.0 -s 31 -c black n -t 0.0 -s 32 -c black n -t 0.0 -s 33 -c black l -t 0.035 -s 0 -d 1 -S COLOR -c black l -t 0.035 -s 0 -d 2 -S COLOR -c black l -t 0.035 -s 1 -d 3 -S COLOR -c brown l -t 0.035 -s 3 -d 4 -S COLOR -c black l -t 0.035 -s 4 -d 5 -S COLOR -c blue l -t 0.035 -s 5 -d 6 -S COLOR -c black l -t 0.035 -s 5 -d 7 -S COLOR -c black l -t 0.035 -s 5 -d 8 -S COLOR -c brown l -t 0.035 -s 6 -d 9 -S COLOR -c red l -t 0.035 -s 7 -d 10 -S COLOR -c orange l -t 0.035 -s 8 -d 11 -S COLOR -c black l -t 0.035 -s 9 -d 12 -S COLOR -c black l -t 0.035 -s 10 -d 13 -S COLOR -c brown l -t 0.035 -s 11 -d 14 -S COLOR -c black l -t 0.035 -s 12 -d 15 -S COLOR -c black l -t 0.035 -s 13 -d 16 -S COLOR -c black l -t 0.035 -s 14 -d 17 -S COLOR -c black l -t 0.035 -s 15 -d 18 -S COLOR -c blue l -t 0.035 -s 16 -d 19 -S COLOR -c orange l -t 0.035 -s 17 -d 20 -S COLOR -c black l -t 0.035 -s 18 -d 21 -S COLOR -c black l -t 0.035 -s 19 -d 22 -S COLOR -c black l -t 0.035 -s 20 -d 23 -S COLOR -c brown l -t 0.035 -s 22 -d 24 -S COLOR -c black l -t 0.035 -s 23 -d 25 -S COLOR -c black l -t 0.035 -s 24 -d 26 -S COLOR -c black l -t 0.035 -s 25 -d 27 -S COLOR -c black l -t 0.035 -s 26 -d 28 -S COLOR -c black n -t 0.035 -s 29 -c grey n -t 0.035 -s 30 -c grey n -t 0.035 -s 31 -c grey n -t 0.035 -s 32 -c grey n -t 0.035 -s 33 -c grey l -t 0.035 -s 28 -d 29 -c grey l -t 0.035 -s 22 -d 30 -c grey l -t 0.035 -s 30 -d 31 -c grey l -t 0.035 -s 31 -d 32 -c grey l -t 0.035 -s 32 -d 33 -c grey l -t 0.0819444444444 -s 0 -d 1 -S COLOR -c brown l -t 0.0819444444444 -s 0 -d 2 -S COLOR -c black l -t 0.0819444444444 -s 1 -d 3 -S COLOR -c black l -t 0.0819444444444 -s 3 -d 4 -S COLOR -c black l -t 0.0819444444444 -s 4 -d 5 -S COLOR -c blue l -t 0.0819444444444 -s 5 -d 6 -S COLOR -c blue l -t 0.0819444444444 -s 5 -d 7 -S COLOR -c black l -t 0.0819444444444 -s 5 -d 8 -S COLOR -c brown l -t 0.0819444444444 -s 6 -d 9 -S COLOR -c red l -t 0.0819444444444 -s 7 -d 10 -S COLOR -c orange l -t 0.0819444444444 -s 8 -d 11 -S COLOR -c blue l -t 0.0819444444444 -s 9 -d 12 -S COLOR -c black l -t 0.0819444444444 -s 10 -d 13 -S COLOR -c orange l -t 0.0819444444444 -s 11 -d 14 -S COLOR -c black l -t 0.0819444444444 -s 12 -d 15 -S COLOR -c black l -t 0.0819444444444 -s 13 -d 16 -S COLOR -c black l -t 0.0819444444444 -s 14 -d 17 -S COLOR -c brown l -t 0.0819444444444 -s 15 -d 18 -S COLOR -c black l -t 0.0819444444444 -s 16 -d 19 -S COLOR -c red l -t 0.0819444444444 -s 17 -d 20 -S COLOR -c blue l -t 0.0819444444444 -s 18 -d 21 -S COLOR -c black l -t 0.0819444444444 -s 19 -d 22 -S COLOR -c blue l -t 0.0819444444444 -s 20 -d 23 -S COLOR -c brown l -t 0.0819444444444 -s 22 -d 24 -S COLOR -c black l -t 0.0819444444444 -s 23 -d 25 -S COLOR -c black l -t 0.0819444444444 -s 24 -d 26 -S COLOR -c black l -t 0.0819444444444 -s 25 -d 27 -S COLOR -c black l -t 0.0819444444444 -s 26 -d 28 -S COLOR -c black l -t 0.0819444444444 -s 28 -d 29 -S COLOR -c black n -t 0.0819444444444 -s 29 -c black l -t 0.108611111111 -s 0 -d 1 -S COLOR -c brown l -t 0.108611111111 -s 0 -d 2 -S COLOR -c black l -t 0.108611111111 -s 1 -d 3 -S COLOR -c black l -t 0.108611111111 -s 3 -d 4 -S COLOR -c black l -t 0.108611111111 -s 4 -d 5 -S COLOR -c brown l -t 0.108611111111 -s 5 -d 6 -S COLOR -c black l -t 0.108611111111 -s 5 -d 7 -S COLOR -c red l -t 0.108611111111 -s 5 -d 8 -S COLOR -c blue l -t 0.108611111111 -s 6 -d 9 -S COLOR -c red l -t 0.108611111111 -s 7 -d 10 -S COLOR -c orange l -t 0.108611111111 -s 8 -d 11 -S COLOR -c brown l -t 0.108611111111 -s 9 -d 12 -S COLOR -c black l -t 0.108611111111 -s 10 -d 13 -S COLOR -c orange l -t 0.108611111111 -s 11 -d 14 -S COLOR -c blue l -t 0.108611111111 -s 12 -d 15 -S COLOR -c blue l -t 0.108611111111 -s 13 -d 16 -S COLOR -c brown l -t 0.108611111111 -s 14 -d 17 -S COLOR -c brown l -t 0.108611111111 -s 15 -d 18 -S COLOR -c black l -t 0.108611111111 -s 16 -d 19 -S COLOR -c red l -t 0.108611111111 -s 17 -d 20 -S COLOR -c blue l -t 0.108611111111 -s 18 -d 21 -S COLOR -c black l -t 0.108611111111 -s 19 -d 22 -S COLOR -c black l -t 0.108611111111 -s 20 -d 23 -S COLOR -c brown l -t 0.108611111111 -s 22 -d 30 -S COLOR -c blue l -t 0.108611111111 -s 22 -d 24 -S COLOR -c black l -t 0.108611111111 -s 23 -d 25 -S COLOR -c black l -t 0.108611111111 -s 30 -d 31 -S COLOR -c brown l -t 0.108611111111 -s 24 -d 26 -S COLOR -c brown l -t 0.108611111111 -s 25 -d 27 -S COLOR -c black l -t 0.108611111111 -s 31 -d 32 -S COLOR -c black l -t 0.108611111111 -s 26 -d 28 -S COLOR -c black l -t 0.108611111111 -s 32 -d 33 -S COLOR -c black n -t 0.108611111111 -s 29 -c grey n -t 0.108611111111 -s 30 -c black n -t 0.108611111111 -s 31 -c black n -t 0.108611111111 -s 32 -c black n -t 0.108611111111 -s 33 -c black l -t 0.108611111111 -s 28 -d 29 -c grey l -t 0.162777777778 -s 0 -d 1 -S COLOR -c brown l -t 0.162777777778 -s 0 -d 2 -S COLOR -c black l -t 0.162777777778 -s 1 -d 3 -S COLOR -c black l -t 0.162777777778 -s 3 -d 4 -S COLOR -c black l -t 0.162777777778 -s 4 -d 5 -S COLOR -c brown l -t 0.162777777778 -s 5 -d 7 -S COLOR -c black l -t 0.162777777778 -s 5 -d 8 -S COLOR -c black l -t 0.162777777778 -s 7 -d 10 -S COLOR -c orange l -t 0.162777777778 -s 8 -d 11 -S COLOR -c red l -t 0.162777777778 -s 10 -d 13 -S COLOR -c orange l -t 0.162777777778 -s 11 -d 14 -S COLOR -c blue l -t 0.162777777778 -s 13 -d 16 -S COLOR -c brown l -t 0.162777777778 -s 14 -d 17 -S COLOR -c black l -t 0.162777777778 -s 16 -d 19 -S COLOR -c red l -t 0.162777777778 -s 17 -d 20 -S COLOR -c brown l -t 0.162777777778 -s 19 -d 22 -S COLOR -c black l -t 0.162777777778 -s 20 -d 23 -S COLOR -c black l -t 0.162777777778 -s 22 -d 30 -S COLOR -c brown l -t 0.162777777778 -s 22 -d 24 -S COLOR -c blue l -t 0.162777777778 -s 23 -d 25 -S COLOR -c black l -t 0.162777777778 -s 30 -d 31 -S COLOR -c black l -t 0.162777777778 -s 24 -d 26 -S COLOR -c black l -t 0.162777777778 -s 25 -d 27 -S COLOR -c black l -t 0.162777777778 -s 31 -d 32 -S COLOR -c black l -t 0.162777777778 -s 26 -d 28 -S COLOR -c black l -t 0.162777777778 -s 32 -d 33 -S COLOR -c black l -t 0.162777777778 -s 28 -d 29 -S COLOR -c black n -t 0.162777777778 -s 6 -c grey n -t 0.162777777778 -s 9 -c grey n -t 0.162777777778 -s 12 -c grey n -t 0.162777777778 -s 15 -c grey n -t 0.162777777778 -s 18 -c grey n -t 0.162777777778 -s 21 -c grey n -t 0.162777777778 -s 29 -c black l -t 0.162777777778 -s 5 -d 6 -c grey l -t 0.162777777778 -s 6 -d 9 -c grey l -t 0.162777777778 -s 9 -d 12 -c grey l -t 0.162777777778 -s 12 -d 15 -c grey l -t 0.162777777778 -s 15 -d 18 -c grey l -t 0.162777777778 -s 18 -d 21 -c grey l -t 0.216388888889 -s 0 -d 1 -S COLOR -c black l -t 0.216388888889 -s 0 -d 2 -S COLOR -c black l -t 0.216388888889 -s 1 -d 3 -S COLOR -c black l -t 0.216388888889 -s 3 -d 4 -S COLOR -c black l -t 0.216388888889 -s 4 -d 5 -S COLOR -c brown l -t 0.216388888889 -s 5 -d 6 -S COLOR -c black l -t 0.216388888889 -s 5 -d 7 -S COLOR -c black l -t 0.216388888889 -s 5 -d 8 -S COLOR -c black l -t 0.216388888889 -s 6 -d 9 -S COLOR -c red l -t 0.216388888889 -s 7 -d 10 -S COLOR -c red l -t 0.216388888889 -s 8 -d 11 -S COLOR -c black l -t 0.216388888889 -s 9 -d 12 -S COLOR -c black l -t 0.216388888889 -s 10 -d 13 -S COLOR -c orange l -t 0.216388888889 -s 11 -d 14 -S COLOR -c black l -t 0.216388888889 -s 12 -d 15 -S COLOR -c black l -t 0.216388888889 -s 13 -d 16 -S COLOR -c black l -t 0.216388888889 -s 14 -d 17 -S COLOR -c black l -t 0.216388888889 -s 15 -d 18 -S COLOR -c black l -t 0.216388888889 -s 16 -d 19 -S COLOR -c red l -t 0.216388888889 -s 17 -d 20 -S COLOR -c brown l -t 0.216388888889 -s 18 -d 21 -S COLOR -c black l -t 0.216388888889 -s 19 -d 22 -S COLOR -c brown l -t 0.216388888889 -s 20 -d 23 -S COLOR -c black l -t 0.216388888889 -s 22 -d 24 -S COLOR -c black l -t 0.216388888889 -s 22 -d 30 -S COLOR -c black l -t 0.216388888889 -s 23 -d 25 -S COLOR -c blue l -t 0.216388888889 -s 24 -d 26 -S COLOR -c black l -t 0.216388888889 -s 30 -d 31 -S COLOR -c black l -t 0.216388888889 -s 25 -d 27 -S COLOR -c black l -t 0.216388888889 -s 26 -d 28 -S COLOR -c black l -t 0.216388888889 -s 31 -d 32 -S COLOR -c black l -t 0.216388888889 -s 28 -d 29 -S COLOR -c black l -t 0.216388888889 -s 32 -d 33 -S COLOR -c black n -t 0.216388888889 -s 6 -c black n -t 0.216388888889 -s 9 -c black n -t 0.216388888889 -s 12 -c black n -t 0.216388888889 -s 15 -c black n -t 0.216388888889 -s 18 -c black n -t 0.216388888889 -s 21 -c black l -t 0.246111111111 -s 0 -d 1 -S COLOR -c black l -t 0.246111111111 -s 0 -d 2 -S COLOR -c black l -t 0.246111111111 -s 1 -d 3 -S COLOR -c black l -t 0.246111111111 -s 3 -d 4 -S COLOR -c brown l -t 0.246111111111 -s 4 -d 5 -S COLOR -c black l -t 0.246111111111 -s 5 -d 6 -S COLOR -c black l -t 0.246111111111 -s 5 -d 7 -S COLOR -c black l -t 0.246111111111 -s 5 -d 8 -S COLOR -c black l -t 0.246111111111 -s 6 -d 9 -S COLOR -c red l -t 0.246111111111 -s 7 -d 10 -S COLOR -c brown l -t 0.246111111111 -s 8 -d 11 -S COLOR -c brown l -t 0.246111111111 -s 9 -d 12 -S COLOR -c black l -t 0.246111111111 -s 10 -d 13 -S COLOR -c brown l -t 0.246111111111 -s 11 -d 14 -S COLOR -c black l -t 0.246111111111 -s 12 -d 15 -S COLOR -c black l -t 0.246111111111 -s 13 -d 16 -S COLOR -c blue l -t 0.246111111111 -s 14 -d 17 -S COLOR -c black l -t 0.246111111111 -s 15 -d 18 -S COLOR -c black l -t 0.246111111111 -s 16 -d 19 -S COLOR -c orange l -t 0.246111111111 -s 17 -d 20 -S COLOR -c blue l -t 0.246111111111 -s 18 -d 21 -S COLOR -c black l -t 0.246111111111 -s 19 -d 22 -S COLOR -c brown l -t 0.246111111111 -s 20 -d 23 -S COLOR -c black l -t 0.246111111111 -s 22 -d 30 -S COLOR -c black l -t 0.246111111111 -s 23 -d 25 -S COLOR -c black l -t 0.246111111111 -s 30 -d 31 -S COLOR -c brown l -t 0.246111111111 -s 25 -d 27 -S COLOR -c black l -t 0.246111111111 -s 31 -d 32 -S COLOR -c black l -t 0.246111111111 -s 32 -d 33 -S COLOR -c black n -t 0.246111111111 -s 24 -c grey n -t 0.246111111111 -s 26 -c grey n -t 0.246111111111 -s 28 -c grey n -t 0.246111111111 -s 29 -c grey l -t 0.246111111111 -s 22 -d 24 -c grey l -t 0.246111111111 -s 24 -d 26 -c grey l -t 0.246111111111 -s 26 -d 28 -c grey l -t 0.246111111111 -s 28 -d 29 -c grey l -t 0.287777777778 -s 0 -d 1 -S COLOR -c black l -t 0.287777777778 -s 0 -d 2 -S COLOR -c black l -t 0.287777777778 -s 1 -d 3 -S COLOR -c blue l -t 0.287777777778 -s 3 -d 4 -S COLOR -c black l -t 0.287777777778 -s 4 -d 5 -S COLOR -c brown l -t 0.287777777778 -s 5 -d 6 -S COLOR -c blue l -t 0.287777777778 -s 5 -d 7 -S COLOR -c black l -t 0.287777777778 -s 5 -d 8 -S COLOR -c brown l -t 0.287777777778 -s 6 -d 9 -S COLOR -c red l -t 0.287777777778 -s 7 -d 10 -S COLOR -c orange l -t 0.287777777778 -s 8 -d 11 -S COLOR -c blue l -t 0.287777777778 -s 9 -d 12 -S COLOR -c black l -t 0.287777777778 -s 10 -d 13 -S COLOR -c black l -t 0.287777777778 -s 11 -d 14 -S COLOR -c black l -t 0.287777777778 -s 12 -d 15 -S COLOR -c black l -t 0.287777777778 -s 13 -d 16 -S COLOR -c black l -t 0.287777777778 -s 14 -d 17 -S COLOR -c black l -t 0.287777777778 -s 15 -d 18 -S COLOR -c black l -t 0.287777777778 -s 16 -d 19 -S COLOR -c orange l -t 0.287777777778 -s 17 -d 20 -S COLOR -c black l -t 0.287777777778 -s 18 -d 21 -S COLOR -c black l -t 0.287777777778 -s 19 -d 22 -S COLOR -c black l -t 0.287777777778 -s 20 -d 23 -S COLOR -c brown l -t 0.287777777778 -s 22 -d 30 -S COLOR -c brown l -t 0.287777777778 -s 23 -d 25 -S COLOR -c blue l -t 0.287777777778 -s 30 -d 31 -S COLOR -c blue l -t 0.287777777778 -s 25 -d 27 -S COLOR -c black l -t 0.287777777778 -s 31 -d 32 -S COLOR -c black l -t 0.287777777778 -s 32 -d 33 -S COLOR -c black l -t 0.315555555556 -s 0 -d 1 -S COLOR -c black l -t 0.315555555556 -s 0 -d 2 -S COLOR -c black l -t 0.315555555556 -s 1 -d 3 -S COLOR -c black l -t 0.315555555556 -s 3 -d 4 -S COLOR -c blue l -t 0.315555555556 -s 4 -d 5 -S COLOR -c brown l -t 0.315555555556 -s 5 -d 7 -S COLOR -c black l -t 0.315555555556 -s 5 -d 8 -S COLOR -c blue l -t 0.315555555556 -s 7 -d 10 -S COLOR -c orange l -t 0.315555555556 -s 8 -d 11 -S COLOR -c black l -t 0.315555555556 -s 10 -d 13 -S COLOR -c brown l -t 0.315555555556 -s 11 -d 14 -S COLOR -c blue l -t 0.315555555556 -s 13 -d 16 -S COLOR -c blue l -t 0.315555555556 -s 14 -d 17 -S COLOR -c brown l -t 0.315555555556 -s 14 -d 34 -S COLOR -c black l -t 0.315555555556 -s 16 -d 19 -S COLOR -c red l -t 0.315555555556 -s 17 -d 20 -S COLOR -c blue l -t 0.315555555556 -s 19 -d 22 -S COLOR -c black l -t 0.315555555556 -s 20 -d 23 -S COLOR -c black l -t 0.315555555556 -s 22 -d 30 -S COLOR -c black l -t 0.315555555556 -s 22 -d 24 -S COLOR -c black l -t 0.315555555556 -s 23 -d 25 -S COLOR -c black l -t 0.315555555556 -s 30 -d 31 -S COLOR -c black l -t 0.315555555556 -s 24 -d 26 -S COLOR -c black l -t 0.315555555556 -s 25 -d 27 -S COLOR -c black l -t 0.315555555556 -s 31 -d 32 -S COLOR -c black l -t 0.315555555556 -s 26 -d 28 -S COLOR -c black l -t 0.315555555556 -s 32 -d 33 -S COLOR -c black l -t 0.315555555556 -s 28 -d 29 -S COLOR -c black n -t 0.315555555556 -s 6 -c grey n -t 0.315555555556 -s 9 -c grey n -t 0.315555555556 -s 12 -c grey n -t 0.315555555556 -s 15 -c grey n -t 0.315555555556 -s 18 -c grey n -t 0.315555555556 -s 21 -c grey n -t 0.315555555556 -s 24 -c black n -t 0.315555555556 -s 26 -c black n -t 0.315555555556 -s 28 -c black n -t 0.315555555556 -s 29 -c black n -t 0.315555555556 -s 34 -c black l -t 0.315555555556 -s 5 -d 6 -c grey l -t 0.315555555556 -s 6 -d 9 -c grey l -t 0.315555555556 -s 9 -d 12 -c grey l -t 0.315555555556 -s 12 -d 15 -c grey l -t 0.315555555556 -s 15 -d 18 -c grey l -t 0.315555555556 -s 18 -d 21 -c grey l -t 0.347777777778 -s 0 -d 1 -S COLOR -c black l -t 0.347777777778 -s 1 -d 3 -S COLOR -c black l -t 0.347777777778 -s 3 -d 4 -S COLOR -c black l -t 0.347777777778 -s 4 -d 5 -S COLOR -c blue l -t 0.347777777778 -s 5 -d 7 -S COLOR -c brown l -t 0.347777777778 -s 5 -d 8 -S COLOR -c brown l -t 0.347777777778 -s 7 -d 10 -S COLOR -c black l -t 0.347777777778 -s 8 -d 11 -S COLOR -c black l -t 0.347777777778 -s 10 -d 13 -S COLOR -c orange l -t 0.347777777778 -s 11 -d 14 -S COLOR -c black l -t 0.347777777778 -s 13 -d 16 -S COLOR -c blue l -t 0.347777777778 -s 14 -d 17 -S COLOR -c black l -t 0.347777777778 -s 14 -d 34 -S COLOR -c black l -t 0.347777777778 -s 16 -d 19 -S COLOR -c orange l -t 0.347777777778 -s 17 -d 20 -S COLOR -c brown l -t 0.347777777778 -s 19 -d 22 -S COLOR -c blue l -t 0.347777777778 -s 20 -d 23 -S COLOR -c black l -t 0.347777777778 -s 22 -d 30 -S COLOR -c brown l -t 0.347777777778 -s 23 -d 25 -S COLOR -c blue l -t 0.347777777778 -s 30 -d 31 -S COLOR -c black l -t 0.347777777778 -s 25 -d 27 -S COLOR -c black l -t 0.347777777778 -s 31 -d 32 -S COLOR -c black l -t 0.347777777778 -s 32 -d 33 -S COLOR -c black n -t 0.347777777778 -s 2 -c grey n -t 0.347777777778 -s 24 -c grey n -t 0.347777777778 -s 26 -c grey n -t 0.347777777778 -s 28 -c grey n -t 0.347777777778 -s 29 -c grey l -t 0.347777777778 -s 0 -d 2 -c grey l -t 0.347777777778 -s 22 -d 24 -c grey l -t 0.347777777778 -s 24 -d 26 -c grey l -t 0.347777777778 -s 26 -d 28 -c grey l -t 0.347777777778 -s 28 -d 29 -c grey l -t 0.407777777778 -s 0 -d 1 -S COLOR -c brown l -t 0.407777777778 -s 1 -d 3 -S COLOR -c black l -t 0.407777777778 -s 3 -d 4 -S COLOR -c black l -t 0.407777777778 -s 4 -d 5 -S COLOR -c blue l -t 0.407777777778 -s 5 -d 6 -S COLOR -c blue l -t 0.407777777778 -s 5 -d 7 -S COLOR -c black l -t 0.407777777778 -s 5 -d 8 -S COLOR -c brown l -t 0.407777777778 -s 6 -d 9 -S COLOR -c red l -t 0.407777777778 -s 7 -d 10 -S COLOR -c brown l -t 0.407777777778 -s 8 -d 11 -S COLOR -c black l -t 0.407777777778 -s 9 -d 12 -S COLOR -c black l -t 0.407777777778 -s 10 -d 13 -S COLOR -c brown l -t 0.407777777778 -s 11 -d 14 -S COLOR -c black l -t 0.407777777778 -s 12 -d 15 -S COLOR -c blue l -t 0.407777777778 -s 13 -d 16 -S COLOR -c blue l -t 0.407777777778 -s 14 -d 34 -S COLOR -c black l -t 0.407777777778 -s 14 -d 17 -S COLOR -c black l -t 0.407777777778 -s 15 -d 18 -S COLOR -c black l -t 0.407777777778 -s 16 -d 19 -S COLOR -c brown l -t 0.407777777778 -s 17 -d 20 -S COLOR -c black l -t 0.407777777778 -s 18 -d 21 -S COLOR -c black l -t 0.407777777778 -s 19 -d 22 -S COLOR -c black l -t 0.407777777778 -s 20 -d 23 -S COLOR -c brown l -t 0.407777777778 -s 22 -d 24 -S COLOR -c black l -t 0.407777777778 -s 22 -d 30 -S COLOR -c black l -t 0.407777777778 -s 23 -d 25 -S COLOR -c black l -t 0.407777777778 -s 24 -d 26 -S COLOR -c brown l -t 0.407777777778 -s 30 -d 31 -S COLOR -c brown l -t 0.407777777778 -s 25 -d 27 -S COLOR -c black l -t 0.407777777778 -s 26 -d 28 -S COLOR -c black l -t 0.407777777778 -s 31 -d 32 -S COLOR -c black l -t 0.407777777778 -s 28 -d 29 -S COLOR -c black l -t 0.407777777778 -s 32 -d 33 -S COLOR -c black n -t 0.407777777778 -s 6 -c black n -t 0.407777777778 -s 9 -c black n -t 0.407777777778 -s 12 -c black n -t 0.407777777778 -s 15 -c black n -t 0.407777777778 -s 18 -c black n -t 0.407777777778 -s 21 -c black n -t 0.407777777778 -s 24 -c black n -t 0.407777777778 -s 26 -c black n -t 0.407777777778 -s 28 -c black n -t 0.407777777778 -s 29 -c black l -t 0.471388888889 -s 0 -d 1 -S COLOR -c black l -t 0.471388888889 -s 0 -d 2 -S COLOR -c black l -t 0.471388888889 -s 1 -d 3 -S COLOR -c brown l -t 0.471388888889 -s 3 -d 4 -S COLOR -c black l -t 0.471388888889 -s 4 -d 5 -S COLOR -c black l -t 0.471388888889 -s 5 -d 6 -S COLOR -c brown l -t 0.471388888889 -s 5 -d 7 -S COLOR -c red l -t 0.471388888889 -s 5 -d 8 -S COLOR -c brown l -t 0.471388888889 -s 6 -d 9 -S COLOR -c red l -t 0.471388888889 -s 7 -d 10 -S COLOR -c orange l -t 0.471388888889 -s 8 -d 11 -S COLOR -c brown l -t 0.471388888889 -s 9 -d 12 -S COLOR -c black l -t 0.471388888889 -s 10 -d 13 -S COLOR -c blue l -t 0.471388888889 -s 11 -d 14 -S COLOR -c black l -t 0.471388888889 -s 12 -d 15 -S COLOR -c blue l -t 0.471388888889 -s 13 -d 16 -S COLOR -c brown l -t 0.471388888889 -s 14 -d 34 -S COLOR -c black l -t 0.471388888889 -s 14 -d 17 -S COLOR -c black l -t 0.471388888889 -s 15 -d 18 -S COLOR -c brown l -t 0.471388888889 -s 16 -d 19 -S COLOR -c red l -t 0.471388888889 -s 17 -d 20 -S COLOR -c black l -t 0.471388888889 -s 18 -d 21 -S COLOR -c black l -t 0.471388888889 -s 19 -d 22 -S COLOR -c black l -t 0.471388888889 -s 20 -d 23 -S COLOR -c blue l -t 0.471388888889 -s 22 -d 24 -S COLOR -c black l -t 0.471388888889 -s 22 -d 30 -S COLOR -c black l -t 0.471388888889 -s 23 -d 25 -S COLOR -c black l -t 0.471388888889 -s 24 -d 26 -S COLOR -c black l -t 0.471388888889 -s 30 -d 31 -S COLOR -c black l -t 0.471388888889 -s 25 -d 27 -S COLOR -c black l -t 0.471388888889 -s 26 -d 28 -S COLOR -c black l -t 0.471388888889 -s 31 -d 32 -S COLOR -c black l -t 0.471388888889 -s 28 -d 29 -S COLOR -c black l -t 0.471388888889 -s 32 -d 33 -S COLOR -c black n -t 0.471388888889 -s 2 -c black l -t 0.508888888889 -s 0 -d 1 -S COLOR -c black l -t 0.508888888889 -s 1 -d 3 -S COLOR -c black l -t 0.508888888889 -s 3 -d 4 -S COLOR -c black l -t 0.508888888889 -s 4 -d 5 -S COLOR -c blue l -t 0.508888888889 -s 5 -d 6 -S COLOR -c blue l -t 0.508888888889 -s 5 -d 7 -S COLOR -c brown l -t 0.508888888889 -s 5 -d 8 -S COLOR -c brown l -t 0.508888888889 -s 6 -d 9 -S COLOR -c red l -t 0.508888888889 -s 7 -d 10 -S COLOR -c blue l -t 0.508888888889 -s 8 -d 11 -S COLOR -c black l -t 0.508888888889 -s 9 -d 12 -S COLOR -c black l -t 0.508888888889 -s 10 -d 13 -S COLOR -c black l -t 0.508888888889 -s 11 -d 14 -S COLOR -c black l -t 0.508888888889 -s 12 -d 15 -S COLOR -c brown l -t 0.508888888889 -s 13 -d 16 -S COLOR -c black l -t 0.508888888889 -s 14 -d 34 -S COLOR -c black l -t 0.508888888889 -s 14 -d 17 -S COLOR -c black l -t 0.508888888889 -s 15 -d 18 -S COLOR -c black l -t 0.508888888889 -s 16 -d 19 -S COLOR -c orange l -t 0.508888888889 -s 17 -d 20 -S COLOR -c black l -t 0.508888888889 -s 18 -d 21 -S COLOR -c black l -t 0.508888888889 -s 19 -d 22 -S COLOR -c brown l -t 0.508888888889 -s 20 -d 23 -S COLOR -c black l -t 0.508888888889 -s 22 -d 24 -S COLOR -c black l -t 0.508888888889 -s 23 -d 25 -S COLOR -c black l -t 0.508888888889 -s 24 -d 26 -S COLOR -c black l -t 0.508888888889 -s 25 -d 27 -S COLOR -c black l -t 0.508888888889 -s 26 -d 28 -S COLOR -c black l -t 0.508888888889 -s 28 -d 29 -S COLOR -c black n -t 0.508888888889 -s 2 -c grey n -t 0.508888888889 -s 30 -c grey n -t 0.508888888889 -s 31 -c grey n -t 0.508888888889 -s 32 -c grey n -t 0.508888888889 -s 33 -c grey l -t 0.508888888889 -s 0 -d 2 -c grey l -t 0.508888888889 -s 22 -d 30 -c grey l -t 0.508888888889 -s 30 -d 31 -c grey l -t 0.508888888889 -s 31 -d 32 -c grey l -t 0.508888888889 -s 32 -d 33 -c grey l -t 0.560833333333 -s 0 -d 1 -S COLOR -c black l -t 0.560833333333 -s 0 -d 2 -S COLOR -c black l -t 0.560833333333 -s 1 -d 3 -S COLOR -c black l -t 0.560833333333 -s 3 -d 4 -S COLOR -c black l -t 0.560833333333 -s 4 -d 5 -S COLOR -c blue l -t 0.560833333333 -s 5 -d 7 -S COLOR -c black l -t 0.560833333333 -s 5 -d 8 -S COLOR -c black l -t 0.560833333333 -s 7 -d 10 -S COLOR -c blue l -t 0.560833333333 -s 8 -d 11 -S COLOR -c orange l -t 0.560833333333 -s 10 -d 13 -S COLOR -c blue l -t 0.560833333333 -s 11 -d 14 -S COLOR -c black l -t 0.560833333333 -s 13 -d 16 -S COLOR -c black l -t 0.560833333333 -s 14 -d 34 -S COLOR -c black l -t 0.560833333333 -s 16 -d 19 -S COLOR -c red l -t 0.560833333333 -s 19 -d 22 -S COLOR -c brown l -t 0.560833333333 -s 22 -d 30 -S COLOR -c black l -t 0.560833333333 -s 30 -d 31 -S COLOR -c black l -t 0.560833333333 -s 31 -d 32 -S COLOR -c blue l -t 0.560833333333 -s 32 -d 33 -S COLOR -c black n -t 0.560833333333 -s 2 -c black n -t 0.560833333333 -s 6 -c grey n -t 0.560833333333 -s 9 -c grey n -t 0.560833333333 -s 12 -c grey n -t 0.560833333333 -s 15 -c grey n -t 0.560833333333 -s 17 -c grey n -t 0.560833333333 -s 18 -c grey n -t 0.560833333333 -s 20 -c grey n -t 0.560833333333 -s 21 -c grey n -t 0.560833333333 -s 23 -c grey n -t 0.560833333333 -s 24 -c grey n -t 0.560833333333 -s 25 -c grey n -t 0.560833333333 -s 26 -c grey n -t 0.560833333333 -s 27 -c grey n -t 0.560833333333 -s 28 -c grey n -t 0.560833333333 -s 29 -c grey n -t 0.560833333333 -s 30 -c black n -t 0.560833333333 -s 31 -c black n -t 0.560833333333 -s 32 -c black n -t 0.560833333333 -s 33 -c black l -t 0.560833333333 -s 5 -d 6 -c grey l -t 0.560833333333 -s 6 -d 9 -c grey l -t 0.560833333333 -s 9 -d 12 -c grey l -t 0.560833333333 -s 12 -d 15 -c grey l -t 0.560833333333 -s 14 -d 17 -c grey l -t 0.560833333333 -s 15 -d 18 -c grey l -t 0.560833333333 -s 17 -d 20 -c grey l -t 0.560833333333 -s 18 -d 21 -c grey l -t 0.560833333333 -s 20 -d 23 -c grey l -t 0.560833333333 -s 22 -d 24 -c grey l -t 0.560833333333 -s 23 -d 25 -c grey l -t 0.560833333333 -s 24 -d 26 -c grey l -t 0.560833333333 -s 25 -d 27 -c grey l -t 0.560833333333 -s 26 -d 28 -c grey l -t 0.560833333333 -s 28 -d 29 -c grey l -t 0.625277777778 -s 0 -d 1 -S COLOR -c black l -t 0.625277777778 -s 1 -d 3 -S COLOR -c black l -t 0.625277777778 -s 3 -d 4 -S COLOR -c black l -t 0.625277777778 -s 4 -d 5 -S COLOR -c black l -t 0.625277777778 -s 5 -d 8 -S COLOR -c black l -t 0.625277777778 -s 5 -d 6 -S COLOR -c blue l -t 0.625277777778 -s 8 -d 11 -S COLOR -c red l -t 0.625277777778 -s 6 -d 9 -S COLOR -c red l -t 0.625277777778 -s 11 -d 14 -S COLOR -c black l -t 0.625277777778 -s 9 -d 12 -S COLOR -c black l -t 0.625277777778 -s 14 -d 17 -S COLOR -c brown l -t 0.625277777778 -s 12 -d 15 -S COLOR -c black l -t 0.625277777778 -s 17 -d 20 -S COLOR -c black l -t 0.625277777778 -s 15 -d 18 -S COLOR -c black l -t 0.625277777778 -s 20 -d 23 -S COLOR -c black l -t 0.625277777778 -s 18 -d 21 -S COLOR -c black l -t 0.625277777778 -s 23 -d 25 -S COLOR -c black l -t 0.625277777778 -s 25 -d 27 -S COLOR -c black n -t 0.625277777778 -s 2 -c grey n -t 0.625277777778 -s 6 -c black n -t 0.625277777778 -s 7 -c grey n -t 0.625277777778 -s 9 -c black n -t 0.625277777778 -s 10 -c grey n -t 0.625277777778 -s 12 -c black n -t 0.625277777778 -s 13 -c grey n -t 0.625277777778 -s 15 -c black n -t 0.625277777778 -s 16 -c grey n -t 0.625277777778 -s 17 -c black n -t 0.625277777778 -s 18 -c black n -t 0.625277777778 -s 19 -c grey n -t 0.625277777778 -s 20 -c black n -t 0.625277777778 -s 21 -c black n -t 0.625277777778 -s 22 -c grey n -t 0.625277777778 -s 23 -c black n -t 0.625277777778 -s 25 -c black n -t 0.625277777778 -s 27 -c black n -t 0.625277777778 -s 30 -c grey n -t 0.625277777778 -s 31 -c grey n -t 0.625277777778 -s 32 -c grey n -t 0.625277777778 -s 33 -c grey n -t 0.625277777778 -s 34 -c grey l -t 0.625277777778 -s 0 -d 2 -c grey l -t 0.625277777778 -s 5 -d 7 -c grey l -t 0.625277777778 -s 7 -d 10 -c grey l -t 0.625277777778 -s 10 -d 13 -c grey l -t 0.625277777778 -s 13 -d 16 -c grey l -t 0.625277777778 -s 16 -d 19 -c grey l -t 0.625277777778 -s 19 -d 22 -c grey l -t 0.625277777778 -s 22 -d 30 -c grey l -t 0.625277777778 -s 30 -d 31 -c grey l -t 0.625277777778 -s 31 -d 32 -c grey l -t 0.625277777778 -s 32 -d 33 -c grey l -t 0.625277777778 -s 14 -d 34 -c grey n -t 0.667222222222 -s 0 -c grey n -t 0.667222222222 -s 1 -c grey n -t 0.667222222222 -s 3 -c grey n -t 0.667222222222 -s 4 -c grey n -t 0.667222222222 -s 5 -c grey n -t 0.667222222222 -s 6 -c grey n -t 0.667222222222 -s 8 -c grey n -t 0.667222222222 -s 9 -c grey n -t 0.667222222222 -s 11 -c grey n -t 0.667222222222 -s 12 -c grey n -t 0.667222222222 -s 14 -c grey n -t 0.667222222222 -s 15 -c grey n -t 0.667222222222 -s 17 -c grey n -t 0.667222222222 -s 18 -c grey n -t 0.667222222222 -s 20 -c grey n -t 0.667222222222 -s 21 -c grey n -t 0.667222222222 -s 23 -c grey n -t 0.667222222222 -s 25 -c grey n -t 0.667222222222 -s 27 -c grey n -t 0.667222222222 -s 35 -c black l -t 0.667222222222 -s 0 -d 1 -c grey l -t 0.667222222222 -s 1 -d 3 -c grey l -t 0.667222222222 -s 3 -d 4 -c grey l -t 0.667222222222 -s 4 -d 5 -c grey l -t 0.667222222222 -s 5 -d 6 -c grey l -t 0.667222222222 -s 5 -d 8 -c grey l -t 0.667222222222 -s 6 -d 9 -c grey l -t 0.667222222222 -s 8 -d 11 -c grey l -t 0.667222222222 -s 9 -d 12 -c grey l -t 0.667222222222 -s 11 -d 14 -c grey l -t 0.667222222222 -s 12 -d 15 -c grey l -t 0.667222222222 -s 14 -d 17 -c grey l -t 0.667222222222 -s 15 -d 18 -c grey l -t 0.667222222222 -s 17 -d 20 -c grey l -t 0.667222222222 -s 18 -d 21 -c grey l -t 0.667222222222 -s 20 -d 23 -c grey l -t 0.667222222222 -s 23 -d 25 -c grey l -t 0.667222222222 -s 25 -d 27 -c grey l -t 0.703888888889 -s 0 -d 1 -S COLOR -c black l -t 0.703888888889 -s 0 -d 2 -S COLOR -c black l -t 0.703888888889 -s 1 -d 3 -S COLOR -c black l -t 0.703888888889 -s 3 -d 4 -S COLOR -c black l -t 0.703888888889 -s 4 -d 5 -S COLOR -c black l -t 0.703888888889 -s 5 -d 7 -S COLOR -c black l -t 0.703888888889 -s 5 -d 8 -S COLOR -c brown l -t 0.703888888889 -s 7 -d 36 -S COLOR -c blue l -t 0.703888888889 -s 7 -d 10 -S COLOR -c blue l -t 0.703888888889 -s 8 -d 11 -S COLOR -c red l -t 0.703888888889 -s 36 -d 37 -S COLOR -c black l -t 0.703888888889 -s 10 -d 13 -S COLOR -c brown l -t 0.703888888889 -s 11 -d 14 -S COLOR -c black l -t 0.703888888889 -s 37 -d 38 -S COLOR -c brown l -t 0.703888888889 -s 13 -d 16 -S COLOR -c black l -t 0.703888888889 -s 14 -d 17 -S COLOR -c black l -t 0.703888888889 -s 38 -d 39 -S COLOR -c black l -t 0.703888888889 -s 16 -d 19 -S COLOR -c red l -t 0.703888888889 -s 17 -d 20 -S COLOR -c brown l -t 0.703888888889 -s 19 -d 22 -S COLOR -c black l -t 0.703888888889 -s 20 -d 23 -S COLOR -c black l -t 0.703888888889 -s 22 -d 24 -S COLOR -c blue l -t 0.703888888889 -s 23 -d 25 -S COLOR -c black l -t 0.703888888889 -s 24 -d 26 -S COLOR -c black l -t 0.703888888889 -s 25 -d 27 -S COLOR -c black l -t 0.703888888889 -s 26 -d 28 -S COLOR -c black l -t 0.703888888889 -s 28 -d 29 -S COLOR -c black n -t 0.703888888889 -s 0 -c black n -t 0.703888888889 -s 1 -c black n -t 0.703888888889 -s 2 -c black n -t 0.703888888889 -s 3 -c black n -t 0.703888888889 -s 4 -c black n -t 0.703888888889 -s 5 -c black n -t 0.703888888889 -s 7 -c black n -t 0.703888888889 -s 8 -c black n -t 0.703888888889 -s 10 -c black n -t 0.703888888889 -s 11 -c black n -t 0.703888888889 -s 13 -c black n -t 0.703888888889 -s 14 -c black n -t 0.703888888889 -s 16 -c black n -t 0.703888888889 -s 17 -c black n -t 0.703888888889 -s 19 -c black n -t 0.703888888889 -s 20 -c black n -t 0.703888888889 -s 22 -c black n -t 0.703888888889 -s 23 -c black n -t 0.703888888889 -s 24 -c black n -t 0.703888888889 -s 25 -c black n -t 0.703888888889 -s 26 -c black n -t 0.703888888889 -s 27 -c black n -t 0.703888888889 -s 28 -c black n -t 0.703888888889 -s 29 -c black n -t 0.703888888889 -s 35 -c grey n -t 0.703888888889 -s 36 -c black n -t 0.703888888889 -s 37 -c black n -t 0.703888888889 -s 38 -c black n -t 0.703888888889 -s 39 -c black l -t 0.745 -s 0 -d 1 -S COLOR -c black l -t 0.745 -s 0 -d 2 -S COLOR -c black l -t 0.745 -s 1 -d 3 -S COLOR -c brown l -t 0.745 -s 3 -d 4 -S COLOR -c black l -t 0.745 -s 4 -d 5 -S COLOR -c black l -t 0.745 -s 5 -d 6 -S COLOR -c blue l -t 0.745 -s 5 -d 7 -S COLOR -c red l -t 0.745 -s 5 -d 8 -S COLOR -c black l -t 0.745 -s 6 -d 9 -S COLOR -c red l -t 0.745 -s 7 -d 10 -S COLOR -c orange l -t 0.745 -s 8 -d 11 -S COLOR -c red l -t 0.745 -s 9 -d 12 -S COLOR -c black l -t 0.745 -s 10 -d 13 -S COLOR -c black l -t 0.745 -s 11 -d 14 -S COLOR -c black l -t 0.745 -s 12 -d 15 -S COLOR -c black l -t 0.745 -s 13 -d 16 -S COLOR -c brown l -t 0.745 -s 14 -d 17 -S COLOR -c black l -t 0.745 -s 15 -d 18 -S COLOR -c black l -t 0.745 -s 16 -d 19 -S COLOR -c red l -t 0.745 -s 17 -d 20 -S COLOR -c brown l -t 0.745 -s 18 -d 21 -S COLOR -c black l -t 0.745 -s 19 -d 22 -S COLOR -c blue l -t 0.745 -s 20 -d 23 -S COLOR -c blue l -t 0.745 -s 22 -d 24 -S COLOR -c black l -t 0.745 -s 22 -d 30 -S COLOR -c black l -t 0.745 -s 23 -d 25 -S COLOR -c brown l -t 0.745 -s 24 -d 26 -S COLOR -c black l -t 0.745 -s 30 -d 31 -S COLOR -c black l -t 0.745 -s 25 -d 27 -S COLOR -c black l -t 0.745 -s 26 -d 28 -S COLOR -c black l -t 0.745 -s 31 -d 32 -S COLOR -c black l -t 0.745 -s 28 -d 29 -S COLOR -c black l -t 0.745 -s 32 -d 33 -S COLOR -c black n -t 0.745 -s 6 -c black n -t 0.745 -s 9 -c black n -t 0.745 -s 12 -c black n -t 0.745 -s 15 -c black n -t 0.745 -s 18 -c black n -t 0.745 -s 21 -c black n -t 0.745 -s 30 -c black n -t 0.745 -s 31 -c black n -t 0.745 -s 32 -c black n -t 0.745 -s 33 -c black n -t 0.745 -s 36 -c grey n -t 0.745 -s 37 -c grey n -t 0.745 -s 38 -c grey n -t 0.745 -s 39 -c grey l -t 0.745 -s 7 -d 36 -c grey l -t 0.745 -s 36 -d 37 -c grey l -t 0.745 -s 37 -d 38 -c grey l -t 0.745 -s 38 -d 39 -c grey l -t 0.772222222222 -s 0 -d 1 -S COLOR -c black l -t 0.772222222222 -s 0 -d 2 -S COLOR -c black l -t 0.772222222222 -s 1 -d 3 -S COLOR -c black l -t 0.772222222222 -s 3 -d 4 -S COLOR -c black l -t 0.772222222222 -s 4 -d 5 -S COLOR -c orange l -t 0.772222222222 -s 5 -d 6 -S COLOR -c brown l -t 0.772222222222 -s 5 -d 7 -S COLOR -c red l -t 0.772222222222 -s 5 -d 8 -S COLOR -c black l -t 0.772222222222 -s 6 -d 9 -S COLOR -c red l -t 0.772222222222 -s 7 -d 10 -S COLOR -c blue l -t 0.772222222222 -s 8 -d 11 -S COLOR -c blue l -t 0.772222222222 -s 9 -d 12 -S COLOR -c black l -t 0.772222222222 -s 10 -d 13 -S COLOR -c brown l -t 0.772222222222 -s 11 -d 14 -S COLOR -c brown l -t 0.772222222222 -s 12 -d 15 -S COLOR -c black l -t 0.772222222222 -s 13 -d 16 -S COLOR -c black l -t 0.772222222222 -s 14 -d 17 -S COLOR -c blue l -t 0.772222222222 -s 15 -d 18 -S COLOR -c blue l -t 0.772222222222 -s 16 -d 19 -S COLOR -c red l -t 0.772222222222 -s 17 -d 20 -S COLOR -c blue l -t 0.772222222222 -s 18 -d 21 -S COLOR -c black l -t 0.772222222222 -s 19 -d 22 -S COLOR -c blue l -t 0.772222222222 -s 20 -d 23 -S COLOR -c black l -t 0.772222222222 -s 22 -d 24 -S COLOR -c black l -t 0.772222222222 -s 22 -d 30 -S COLOR -c black l -t 0.772222222222 -s 23 -d 25 -S COLOR -c black l -t 0.772222222222 -s 24 -d 26 -S COLOR -c black l -t 0.772222222222 -s 30 -d 31 -S COLOR -c black l -t 0.772222222222 -s 25 -d 27 -S COLOR -c black l -t 0.772222222222 -s 26 -d 28 -S COLOR -c black l -t 0.772222222222 -s 31 -d 32 -S COLOR -c black l -t 0.772222222222 -s 28 -d 29 -S COLOR -c black l -t 0.772222222222 -s 32 -d 33 -S COLOR -c black l -t 0.801111111111 -s 0 -d 1 -S COLOR -c black l -t 0.801111111111 -s 1 -d 3 -S COLOR -c black l -t 0.801111111111 -s 3 -d 4 -S COLOR -c black l -t 0.801111111111 -s 4 -d 5 -S COLOR -c black l -t 0.801111111111 -s 5 -d 8 -S COLOR -c black l -t 0.801111111111 -s 8 -d 11 -S COLOR -c blue l -t 0.801111111111 -s 11 -d 14 -S COLOR -c black l -t 0.801111111111 -s 14 -d 17 -S COLOR -c brown l -t 0.801111111111 -s 17 -d 20 -S COLOR -c blue l -t 0.801111111111 -s 20 -d 23 -S COLOR -c brown l -t 0.801111111111 -s 23 -d 25 -S COLOR -c black l -t 0.801111111111 -s 25 -d 27 -S COLOR -c black n -t 0.801111111111 -s 2 -c grey n -t 0.801111111111 -s 6 -c grey n -t 0.801111111111 -s 7 -c grey n -t 0.801111111111 -s 9 -c grey n -t 0.801111111111 -s 10 -c grey n -t 0.801111111111 -s 12 -c grey n -t 0.801111111111 -s 13 -c grey n -t 0.801111111111 -s 15 -c grey n -t 0.801111111111 -s 16 -c grey n -t 0.801111111111 -s 18 -c grey n -t 0.801111111111 -s 19 -c grey n -t 0.801111111111 -s 21 -c grey n -t 0.801111111111 -s 22 -c grey n -t 0.801111111111 -s 24 -c grey n -t 0.801111111111 -s 26 -c grey n -t 0.801111111111 -s 28 -c grey n -t 0.801111111111 -s 29 -c grey n -t 0.801111111111 -s 30 -c grey n -t 0.801111111111 -s 31 -c grey n -t 0.801111111111 -s 32 -c grey n -t 0.801111111111 -s 33 -c grey l -t 0.801111111111 -s 0 -d 2 -c grey l -t 0.801111111111 -s 5 -d 6 -c grey l -t 0.801111111111 -s 5 -d 7 -c grey l -t 0.801111111111 -s 6 -d 9 -c grey l -t 0.801111111111 -s 7 -d 10 -c grey l -t 0.801111111111 -s 9 -d 12 -c grey l -t 0.801111111111 -s 10 -d 13 -c grey l -t 0.801111111111 -s 12 -d 15 -c grey l -t 0.801111111111 -s 13 -d 16 -c grey l -t 0.801111111111 -s 15 -d 18 -c grey l -t 0.801111111111 -s 16 -d 19 -c grey l -t 0.801111111111 -s 18 -d 21 -c grey l -t 0.801111111111 -s 19 -d 22 -c grey l -t 0.801111111111 -s 22 -d 24 -c grey l -t 0.801111111111 -s 24 -d 26 -c grey l -t 0.801111111111 -s 26 -d 28 -c grey l -t 0.801111111111 -s 28 -d 29 -c grey l -t 0.801111111111 -s 22 -d 30 -c grey l -t 0.801111111111 -s 30 -d 31 -c grey l -t 0.801111111111 -s 31 -d 32 -c grey l -t 0.801111111111 -s 32 -d 33 -c grey l -t 0.869722222222 -s 0 -d 1 -S COLOR -c black l -t 0.869722222222 -s 1 -d 3 -S COLOR -c black l -t 0.869722222222 -s 3 -d 4 -S COLOR -c black l -t 0.869722222222 -s 4 -d 5 -S COLOR -c brown l -t 0.869722222222 -s 5 -d 7 -S COLOR -c black l -t 0.869722222222 -s 5 -d 8 -S COLOR -c blue l -t 0.869722222222 -s 7 -d 10 -S COLOR -c blue l -t 0.869722222222 -s 8 -d 11 -S COLOR -c blue l -t 0.869722222222 -s 10 -d 13 -S COLOR -c blue l -t 0.869722222222 -s 11 -d 14 -S COLOR -c brown l -t 0.869722222222 -s 13 -d 16 -S COLOR -c brown l -t 0.869722222222 -s 14 -d 17 -S COLOR -c black l -t 0.869722222222 -s 16 -d 19 -S COLOR -c red l -t 0.869722222222 -s 17 -d 20 -S COLOR -c brown l -t 0.869722222222 -s 19 -d 22 -S COLOR -c blue l -t 0.869722222222 -s 20 -d 23 -S COLOR -c blue l -t 0.869722222222 -s 22 -d 30 -S COLOR -c black l -t 0.869722222222 -s 23 -d 25 -S COLOR -c black l -t 0.869722222222 -s 30 -d 31 -S COLOR -c orange l -t 0.869722222222 -s 25 -d 27 -S COLOR -c black l -t 0.869722222222 -s 31 -d 32 -S COLOR -c black l -t 0.869722222222 -s 32 -d 33 -S COLOR -c black n -t 0.869722222222 -s 7 -c black n -t 0.869722222222 -s 10 -c black n -t 0.869722222222 -s 13 -c black n -t 0.869722222222 -s 16 -c black n -t 0.869722222222 -s 19 -c black n -t 0.869722222222 -s 22 -c black n -t 0.869722222222 -s 30 -c black n -t 0.869722222222 -s 31 -c black n -t 0.869722222222 -s 32 -c black n -t 0.869722222222 -s 33 -c black l -t 0.915 -s 0 -d 1 -S COLOR -c black l -t 0.915 -s 0 -d 2 -S COLOR -c black l -t 0.915 -s 1 -d 3 -S COLOR -c black l -t 0.915 -s 3 -d 4 -S COLOR -c black l -t 0.915 -s 4 -d 5 -S COLOR -c black l -t 0.915 -s 5 -d 7 -S COLOR -c black l -t 0.915 -s 5 -d 8 -S COLOR -c black l -t 0.915 -s 7 -d 10 -S COLOR -c black l -t 0.915 -s 8 -d 11 -S COLOR -c blue l -t 0.915 -s 10 -d 13 -S COLOR -c blue l -t 0.915 -s 11 -d 14 -S COLOR -c black l -t 0.915 -s 13 -d 16 -S COLOR -c black l -t 0.915 -s 14 -d 17 -S COLOR -c brown l -t 0.915 -s 16 -d 19 -S COLOR -c red l -t 0.915 -s 17 -d 20 -S COLOR -c black l -t 0.915 -s 19 -d 22 -S COLOR -c blue l -t 0.915 -s 20 -d 23 -S COLOR -c black l -t 0.915 -s 22 -d 30 -S COLOR -c black l -t 0.915 -s 22 -d 24 -S COLOR -c blue l -t 0.915 -s 23 -d 25 -S COLOR -c black l -t 0.915 -s 30 -d 31 -S COLOR -c black l -t 0.915 -s 24 -d 26 -S COLOR -c orange l -t 0.915 -s 25 -d 27 -S COLOR -c black l -t 0.915 -s 31 -d 32 -S COLOR -c black l -t 0.915 -s 26 -d 28 -S COLOR -c black l -t 0.915 -s 32 -d 33 -S COLOR -c black l -t 0.915 -s 28 -d 29 -S COLOR -c black n -t 0.915 -s 2 -c black n -t 0.915 -s 24 -c black n -t 0.915 -s 26 -c black n -t 0.915 -s 28 -c black n -t 0.915 -s 29 -c black l -t 0.944722222222 -s 0 -d 1 -S COLOR -c black l -t 0.944722222222 -s 1 -d 3 -S COLOR -c black l -t 0.944722222222 -s 3 -d 4 -S COLOR -c black l -t 0.944722222222 -s 4 -d 5 -S COLOR -c blue l -t 0.944722222222 -s 5 -d 7 -S COLOR -c red l -t 0.944722222222 -s 5 -d 8 -S COLOR -c brown l -t 0.944722222222 -s 7 -d 10 -S COLOR -c red l -t 0.944722222222 -s 8 -d 11 -S COLOR -c blue l -t 0.944722222222 -s 10 -d 13 -S COLOR -c orange l -t 0.944722222222 -s 11 -d 14 -S COLOR -c black l -t 0.944722222222 -s 13 -d 16 -S COLOR -c black l -t 0.944722222222 -s 14 -d 17 -S COLOR -c black l -t 0.944722222222 -s 16 -d 19 -S COLOR -c red l -t 0.944722222222 -s 17 -d 20 -S COLOR -c brown l -t 0.944722222222 -s 19 -d 22 -S COLOR -c blue l -t 0.944722222222 -s 20 -d 23 -S COLOR -c black l -t 0.944722222222 -s 22 -d 30 -S COLOR -c black l -t 0.944722222222 -s 22 -d 24 -S COLOR -c black l -t 0.944722222222 -s 23 -d 25 -S COLOR -c black l -t 0.944722222222 -s 30 -d 31 -S COLOR -c black l -t 0.944722222222 -s 24 -d 26 -S COLOR -c black l -t 0.944722222222 -s 25 -d 27 -S COLOR -c black l -t 0.944722222222 -s 31 -d 32 -S COLOR -c black l -t 0.944722222222 -s 26 -d 28 -S COLOR -c black l -t 0.944722222222 -s 32 -d 33 -S COLOR -c black l -t 0.944722222222 -s 28 -d 29 -S COLOR -c black n -t 0.944722222222 -s 2 -c grey l -t 0.944722222222 -s 0 -d 2 -c grey l -t 0.994444444444 -s 0 -d 1 -S COLOR -c brown l -t 0.994444444444 -s 1 -d 3 -S COLOR -c black l -t 0.994444444444 -s 3 -d 4 -S COLOR -c blue l -t 0.994444444444 -s 4 -d 5 -S COLOR -c blue l -t 0.994444444444 -s 5 -d 7 -S COLOR -c black l -t 0.994444444444 -s 5 -d 6 -S COLOR -c black l -t 0.994444444444 -s 7 -d 10 -S COLOR -c black l -t 0.994444444444 -s 6 -d 9 -S COLOR -c brown l -t 0.994444444444 -s 10 -d 13 -S COLOR -c brown l -t 0.994444444444 -s 9 -d 12 -S COLOR -c black l -t 0.994444444444 -s 13 -d 16 -S COLOR -c brown l -t 0.994444444444 -s 12 -d 15 -S COLOR -c black l -t 0.994444444444 -s 16 -d 19 -S COLOR -c red l -t 0.994444444444 -s 15 -d 18 -S COLOR -c black l -t 0.994444444444 -s 19 -d 22 -S COLOR -c brown l -t 0.994444444444 -s 18 -d 21 -S COLOR -c black l -t 0.994444444444 -s 22 -d 30 -S COLOR -c black l -t 0.994444444444 -s 30 -d 31 -S COLOR -c black l -t 0.994444444444 -s 31 -d 32 -S COLOR -c brown l -t 0.994444444444 -s 32 -d 33 -S COLOR -c black n -t 0.994444444444 -s 6 -c black n -t 0.994444444444 -s 8 -c grey n -t 0.994444444444 -s 9 -c black n -t 0.994444444444 -s 11 -c grey n -t 0.994444444444 -s 12 -c black n -t 0.994444444444 -s 14 -c grey n -t 0.994444444444 -s 15 -c black n -t 0.994444444444 -s 17 -c grey n -t 0.994444444444 -s 18 -c black n -t 0.994444444444 -s 20 -c grey n -t 0.994444444444 -s 21 -c black n -t 0.994444444444 -s 23 -c grey n -t 0.994444444444 -s 24 -c grey n -t 0.994444444444 -s 25 -c grey n -t 0.994444444444 -s 26 -c grey n -t 0.994444444444 -s 27 -c grey n -t 0.994444444444 -s 28 -c grey n -t 0.994444444444 -s 29 -c grey l -t 0.994444444444 -s 5 -d 8 -c grey l -t 0.994444444444 -s 8 -d 11 -c grey l -t 0.994444444444 -s 11 -d 14 -c grey l -t 0.994444444444 -s 14 -d 17 -c grey l -t 0.994444444444 -s 17 -d 20 -c grey l -t 0.994444444444 -s 20 -d 23 -c grey l -t 0.994444444444 -s 22 -d 24 -c grey l -t 0.994444444444 -s 23 -d 25 -c grey l -t 0.994444444444 -s 24 -d 26 -c grey l -t 0.994444444444 -s 25 -d 27 -c grey l -t 0.994444444444 -s 26 -d 28 -c grey l -t 0.994444444444 -s 28 -d 29 -c grey n -t 1.06444444444 -s 0 -c grey n -t 1.06444444444 -s 1 -c grey n -t 1.06444444444 -s 3 -c grey n -t 1.06444444444 -s 4 -c grey n -t 1.06444444444 -s 5 -c grey n -t 1.06444444444 -s 6 -c grey n -t 1.06444444444 -s 7 -c grey n -t 1.06444444444 -s 9 -c grey n -t 1.06444444444 -s 10 -c grey n -t 1.06444444444 -s 12 -c grey n -t 1.06444444444 -s 13 -c grey n -t 1.06444444444 -s 15 -c grey n -t 1.06444444444 -s 16 -c grey n -t 1.06444444444 -s 18 -c grey n -t 1.06444444444 -s 19 -c grey n -t 1.06444444444 -s 21 -c grey n -t 1.06444444444 -s 22 -c grey n -t 1.06444444444 -s 30 -c grey n -t 1.06444444444 -s 31 -c grey n -t 1.06444444444 -s 32 -c grey n -t 1.06444444444 -s 33 -c grey n -t 1.06444444444 -s 35 -c black l -t 1.06444444444 -s 0 -d 1 -c grey l -t 1.06444444444 -s 1 -d 3 -c grey l -t 1.06444444444 -s 3 -d 4 -c grey l -t 1.06444444444 -s 4 -d 5 -c grey l -t 1.06444444444 -s 5 -d 6 -c grey l -t 1.06444444444 -s 5 -d 7 -c grey l -t 1.06444444444 -s 6 -d 9 -c grey l -t 1.06444444444 -s 7 -d 10 -c grey l -t 1.06444444444 -s 9 -d 12 -c grey l -t 1.06444444444 -s 10 -d 13 -c grey l -t 1.06444444444 -s 12 -d 15 -c grey l -t 1.06444444444 -s 13 -d 16 -c grey l -t 1.06444444444 -s 15 -d 18 -c grey l -t 1.06444444444 -s 16 -d 19 -c grey l -t 1.06444444444 -s 18 -d 21 -c grey l -t 1.06444444444 -s 19 -d 22 -c grey l -t 1.06444444444 -s 22 -d 30 -c grey l -t 1.06444444444 -s 30 -d 31 -c grey l -t 1.06444444444 -s 31 -d 32 -c grey l -t 1.06444444444 -s 32 -d 33 -c grey l -t 1.12166666667 -s 0 -d 1 -S COLOR -c brown l -t 1.12166666667 -s 0 -d 2 -S COLOR -c black l -t 1.12166666667 -s 1 -d 3 -S COLOR -c black l -t 1.12166666667 -s 3 -d 4 -S COLOR -c black l -t 1.12166666667 -s 4 -d 5 -S COLOR -c brown l -t 1.12166666667 -s 5 -d 6 -S COLOR -c black l -t 1.12166666667 -s 5 -d 7 -S COLOR -c brown l -t 1.12166666667 -s 5 -d 8 -S COLOR -c black l -t 1.12166666667 -s 6 -d 9 -S COLOR -c red l -t 1.12166666667 -s 7 -d 10 -S COLOR -c brown l -t 1.12166666667 -s 8 -d 11 -S COLOR -c blue l -t 1.12166666667 -s 9 -d 12 -S COLOR -c black l -t 1.12166666667 -s 10 -d 13 -S COLOR -c brown l -t 1.12166666667 -s 11 -d 14 -S COLOR -c black l -t 1.12166666667 -s 12 -d 15 -S COLOR -c blue l -t 1.12166666667 -s 13 -d 16 -S COLOR -c black l -t 1.12166666667 -s 14 -d 17 -S COLOR -c black l -t 1.12166666667 -s 15 -d 18 -S COLOR -c brown l -t 1.12166666667 -s 16 -d 19 -S COLOR -c red l -t 1.12166666667 -s 17 -d 20 -S COLOR -c black l -t 1.12166666667 -s 18 -d 21 -S COLOR -c black l -t 1.12166666667 -s 19 -d 22 -S COLOR -c brown l -t 1.12166666667 -s 20 -d 23 -S COLOR -c brown l -t 1.12166666667 -s 22 -d 24 -S COLOR -c black l -t 1.12166666667 -s 22 -d 30 -S COLOR -c black l -t 1.12166666667 -s 23 -d 25 -S COLOR -c black l -t 1.12166666667 -s 24 -d 26 -S COLOR -c black l -t 1.12166666667 -s 30 -d 31 -S COLOR -c brown l -t 1.12166666667 -s 25 -d 27 -S COLOR -c black l -t 1.12166666667 -s 26 -d 28 -S COLOR -c black l -t 1.12166666667 -s 31 -d 32 -S COLOR -c black l -t 1.12166666667 -s 28 -d 29 -S COLOR -c black l -t 1.12166666667 -s 32 -d 33 -S COLOR -c black n -t 1.12166666667 -s 0 -c black n -t 1.12166666667 -s 1 -c black n -t 1.12166666667 -s 2 -c black n -t 1.12166666667 -s 3 -c black n -t 1.12166666667 -s 4 -c black n -t 1.12166666667 -s 5 -c black n -t 1.12166666667 -s 6 -c black n -t 1.12166666667 -s 7 -c black n -t 1.12166666667 -s 8 -c black n -t 1.12166666667 -s 9 -c black n -t 1.12166666667 -s 10 -c black n -t 1.12166666667 -s 11 -c black n -t 1.12166666667 -s 12 -c black n -t 1.12166666667 -s 13 -c black n -t 1.12166666667 -s 14 -c black n -t 1.12166666667 -s 15 -c black n -t 1.12166666667 -s 16 -c black n -t 1.12166666667 -s 17 -c black n -t 1.12166666667 -s 18 -c black n -t 1.12166666667 -s 19 -c black n -t 1.12166666667 -s 20 -c black n -t 1.12166666667 -s 21 -c black n -t 1.12166666667 -s 22 -c black n -t 1.12166666667 -s 23 -c black n -t 1.12166666667 -s 24 -c black n -t 1.12166666667 -s 25 -c black n -t 1.12166666667 -s 26 -c black n -t 1.12166666667 -s 27 -c black n -t 1.12166666667 -s 28 -c black n -t 1.12166666667 -s 29 -c black n -t 1.12166666667 -s 30 -c black n -t 1.12166666667 -s 31 -c black n -t 1.12166666667 -s 32 -c black n -t 1.12166666667 -s 33 -c black n -t 1.12166666667 -s 35 -c grey n -t 1.15722222222 -s 0 -c grey n -t 1.15722222222 -s 1 -c grey n -t 1.15722222222 -s 2 -c grey n -t 1.15722222222 -s 3 -c grey n -t 1.15722222222 -s 4 -c grey n -t 1.15722222222 -s 5 -c grey n -t 1.15722222222 -s 6 -c grey n -t 1.15722222222 -s 7 -c grey n -t 1.15722222222 -s 8 -c grey n -t 1.15722222222 -s 9 -c grey n -t 1.15722222222 -s 10 -c grey n -t 1.15722222222 -s 11 -c grey n -t 1.15722222222 -s 12 -c grey n -t 1.15722222222 -s 13 -c grey n -t 1.15722222222 -s 14 -c grey n -t 1.15722222222 -s 15 -c grey n -t 1.15722222222 -s 16 -c grey n -t 1.15722222222 -s 17 -c grey n -t 1.15722222222 -s 18 -c grey n -t 1.15722222222 -s 19 -c grey n -t 1.15722222222 -s 20 -c grey n -t 1.15722222222 -s 21 -c grey n -t 1.15722222222 -s 22 -c grey n -t 1.15722222222 -s 23 -c grey n -t 1.15722222222 -s 24 -c grey n -t 1.15722222222 -s 25 -c grey n -t 1.15722222222 -s 26 -c grey n -t 1.15722222222 -s 27 -c grey n -t 1.15722222222 -s 28 -c grey n -t 1.15722222222 -s 29 -c grey n -t 1.15722222222 -s 30 -c grey n -t 1.15722222222 -s 31 -c grey n -t 1.15722222222 -s 32 -c grey n -t 1.15722222222 -s 33 -c grey n -t 1.15722222222 -s 35 -c black l -t 1.15722222222 -s 0 -d 1 -c grey l -t 1.15722222222 -s 0 -d 2 -c grey l -t 1.15722222222 -s 1 -d 3 -c grey l -t 1.15722222222 -s 3 -d 4 -c grey l -t 1.15722222222 -s 4 -d 5 -c grey l -t 1.15722222222 -s 5 -d 6 -c grey l -t 1.15722222222 -s 5 -d 7 -c grey l -t 1.15722222222 -s 5 -d 8 -c grey l -t 1.15722222222 -s 6 -d 9 -c grey l -t 1.15722222222 -s 7 -d 10 -c grey l -t 1.15722222222 -s 8 -d 11 -c grey l -t 1.15722222222 -s 9 -d 12 -c grey l -t 1.15722222222 -s 10 -d 13 -c grey l -t 1.15722222222 -s 11 -d 14 -c grey l -t 1.15722222222 -s 12 -d 15 -c grey l -t 1.15722222222 -s 13 -d 16 -c grey l -t 1.15722222222 -s 14 -d 17 -c grey l -t 1.15722222222 -s 15 -d 18 -c grey l -t 1.15722222222 -s 16 -d 19 -c grey l -t 1.15722222222 -s 17 -d 20 -c grey l -t 1.15722222222 -s 18 -d 21 -c grey l -t 1.15722222222 -s 19 -d 22 -c grey l -t 1.15722222222 -s 20 -d 23 -c grey l -t 1.15722222222 -s 22 -d 24 -c grey l -t 1.15722222222 -s 23 -d 25 -c grey l -t 1.15722222222 -s 24 -d 26 -c grey l -t 1.15722222222 -s 25 -d 27 -c grey l -t 1.15722222222 -s 26 -d 28 -c grey l -t 1.15722222222 -s 28 -d 29 -c grey l -t 1.15722222222 -s 22 -d 30 -c grey l -t 1.15722222222 -s 30 -d 31 -c grey l -t 1.15722222222 -s 31 -d 32 -c grey l -t 1.15722222222 -s 32 -d 33 -c grey l -t 1.20805555556 -s 0 -d 1 -S COLOR -c blue l -t 1.20805555556 -s 0 -d 2 -S COLOR -c black l -t 1.20805555556 -s 1 -d 3 -S COLOR -c black l -t 1.20805555556 -s 3 -d 4 -S COLOR -c black l -t 1.20805555556 -s 4 -d 5 -S COLOR -c brown l -t 1.20805555556 -s 5 -d 6 -S COLOR -c brown l -t 1.20805555556 -s 5 -d 7 -S COLOR -c black l -t 1.20805555556 -s 5 -d 8 -S COLOR -c blue l -t 1.20805555556 -s 6 -d 9 -S COLOR -c red l -t 1.20805555556 -s 7 -d 10 -S COLOR -c black l -t 1.20805555556 -s 8 -d 11 -S COLOR -c red l -t 1.20805555556 -s 9 -d 12 -S COLOR -c brown l -t 1.20805555556 -s 10 -d 13 -S COLOR -c black l -t 1.20805555556 -s 11 -d 14 -S COLOR -c brown l -t 1.20805555556 -s 12 -d 15 -S COLOR -c black l -t 1.20805555556 -s 13 -d 16 -S COLOR -c black l -t 1.20805555556 -s 14 -d 17 -S COLOR -c black l -t 1.20805555556 -s 15 -d 18 -S COLOR -c black l -t 1.20805555556 -s 16 -d 19 -S COLOR -c red l -t 1.20805555556 -s 17 -d 20 -S COLOR -c blue l -t 1.20805555556 -s 18 -d 21 -S COLOR -c black l -t 1.20805555556 -s 19 -d 22 -S COLOR -c brown l -t 1.20805555556 -s 20 -d 23 -S COLOR -c brown l -t 1.20805555556 -s 22 -d 24 -S COLOR -c black l -t 1.20805555556 -s 22 -d 30 -S COLOR -c black l -t 1.20805555556 -s 23 -d 25 -S COLOR -c black l -t 1.20805555556 -s 24 -d 26 -S COLOR -c black l -t 1.20805555556 -s 30 -d 31 -S COLOR -c black l -t 1.20805555556 -s 25 -d 27 -S COLOR -c black l -t 1.20805555556 -s 26 -d 28 -S COLOR -c black l -t 1.20805555556 -s 31 -d 32 -S COLOR -c black l -t 1.20805555556 -s 28 -d 29 -S COLOR -c black l -t 1.20805555556 -s 32 -d 33 -S COLOR -c black n -t 1.20805555556 -s 0 -c black n -t 1.20805555556 -s 1 -c black n -t 1.20805555556 -s 2 -c black n -t 1.20805555556 -s 3 -c black n -t 1.20805555556 -s 4 -c black n -t 1.20805555556 -s 5 -c black n -t 1.20805555556 -s 6 -c black n -t 1.20805555556 -s 7 -c black n -t 1.20805555556 -s 8 -c black n -t 1.20805555556 -s 9 -c black n -t 1.20805555556 -s 10 -c black n -t 1.20805555556 -s 11 -c black n -t 1.20805555556 -s 12 -c black n -t 1.20805555556 -s 13 -c black n -t 1.20805555556 -s 14 -c black n -t 1.20805555556 -s 15 -c black n -t 1.20805555556 -s 16 -c black n -t 1.20805555556 -s 17 -c black n -t 1.20805555556 -s 18 -c black n -t 1.20805555556 -s 19 -c black n -t 1.20805555556 -s 20 -c black n -t 1.20805555556 -s 21 -c black n -t 1.20805555556 -s 22 -c black n -t 1.20805555556 -s 23 -c black n -t 1.20805555556 -s 24 -c black n -t 1.20805555556 -s 25 -c black n -t 1.20805555556 -s 26 -c black n -t 1.20805555556 -s 27 -c black n -t 1.20805555556 -s 28 -c black n -t 1.20805555556 -s 29 -c black n -t 1.20805555556 -s 30 -c black n -t 1.20805555556 -s 31 -c black n -t 1.20805555556 -s 32 -c black n -t 1.20805555556 -s 33 -c black n -t 1.20805555556 -s 35 -c grey l -t 1.24111111111 -s 0 -d 1 -S COLOR -c black l -t 1.24111111111 -s 0 -d 2 -S COLOR -c black l -t 1.24111111111 -s 1 -d 3 -S COLOR -c black l -t 1.24111111111 -s 3 -d 4 -S COLOR -c black l -t 1.24111111111 -s 4 -d 5 -S COLOR -c black l -t 1.24111111111 -s 5 -d 6 -S COLOR -c blue l -t 1.24111111111 -s 5 -d 7 -S COLOR -c black l -t 1.24111111111 -s 5 -d 8 -S COLOR -c brown l -t 1.24111111111 -s 6 -d 9 -S COLOR -c red l -t 1.24111111111 -s 7 -d 10 -S COLOR -c blue l -t 1.24111111111 -s 8 -d 11 -S COLOR -c blue l -t 1.24111111111 -s 9 -d 12 -S COLOR -c black l -t 1.24111111111 -s 10 -d 13 -S COLOR -c brown l -t 1.24111111111 -s 11 -d 14 -S COLOR -c blue l -t 1.24111111111 -s 12 -d 15 -S COLOR -c black l -t 1.24111111111 -s 13 -d 16 -S COLOR -c brown l -t 1.24111111111 -s 14 -d 17 -S COLOR -c brown l -t 1.24111111111 -s 15 -d 18 -S COLOR -c black l -t 1.24111111111 -s 16 -d 19 -S COLOR -c red l -t 1.24111111111 -s 17 -d 20 -S COLOR -c blue l -t 1.24111111111 -s 18 -d 21 -S COLOR -c black l -t 1.24111111111 -s 19 -d 22 -S COLOR -c blue l -t 1.24111111111 -s 20 -d 23 -S COLOR -c brown l -t 1.24111111111 -s 22 -d 30 -S COLOR -c black l -t 1.24111111111 -s 23 -d 25 -S COLOR -c black l -t 1.24111111111 -s 30 -d 31 -S COLOR -c black l -t 1.24111111111 -s 25 -d 27 -S COLOR -c black l -t 1.24111111111 -s 31 -d 32 -S COLOR -c black l -t 1.24111111111 -s 32 -d 33 -S COLOR -c black n -t 1.24111111111 -s 24 -c grey n -t 1.24111111111 -s 26 -c grey n -t 1.24111111111 -s 28 -c grey n -t 1.24111111111 -s 29 -c grey l -t 1.24111111111 -s 22 -d 24 -c grey l -t 1.24111111111 -s 24 -d 26 -c grey l -t 1.24111111111 -s 26 -d 28 -c grey l -t 1.24111111111 -s 28 -d 29 -c grey l -t 1.29138888889 -s 0 -d 1 -S COLOR -c blue l -t 1.29138888889 -s 0 -d 2 -S COLOR -c black l -t 1.29138888889 -s 1 -d 3 -S COLOR -c brown l -t 1.29138888889 -s 3 -d 4 -S COLOR -c blue l -t 1.29138888889 -s 4 -d 5 -S COLOR -c brown l -t 1.29138888889 -s 5 -d 6 -S COLOR -c brown l -t 1.29138888889 -s 5 -d 7 -S COLOR -c red l -t 1.29138888889 -s 5 -d 8 -S COLOR -c blue l -t 1.29138888889 -s 6 -d 9 -S COLOR -c red l -t 1.29138888889 -s 7 -d 10 -S COLOR -c brown l -t 1.29138888889 -s 8 -d 11 -S COLOR -c brown l -t 1.29138888889 -s 9 -d 12 -S COLOR -c brown l -t 1.29138888889 -s 10 -d 13 -S COLOR -c orange l -t 1.29138888889 -s 11 -d 14 -S COLOR -c black l -t 1.29138888889 -s 12 -d 15 -S COLOR -c black l -t 1.29138888889 -s 13 -d 16 -S COLOR -c black l -t 1.29138888889 -s 14 -d 17 -S COLOR -c black l -t 1.29138888889 -s 15 -d 18 -S COLOR -c black l -t 1.29138888889 -s 16 -d 19 -S COLOR -c red l -t 1.29138888889 -s 17 -d 20 -S COLOR -c black l -t 1.29138888889 -s 18 -d 21 -S COLOR -c black l -t 1.29138888889 -s 19 -d 22 -S COLOR -c black l -t 1.29138888889 -s 20 -d 23 -S COLOR -c blue l -t 1.29138888889 -s 22 -d 24 -S COLOR -c black l -t 1.29138888889 -s 22 -d 30 -S COLOR -c black l -t 1.29138888889 -s 23 -d 25 -S COLOR -c black l -t 1.29138888889 -s 24 -d 26 -S COLOR -c brown l -t 1.29138888889 -s 30 -d 31 -S COLOR -c black l -t 1.29138888889 -s 25 -d 27 -S COLOR -c black l -t 1.29138888889 -s 26 -d 28 -S COLOR -c black l -t 1.29138888889 -s 31 -d 32 -S COLOR -c black l -t 1.29138888889 -s 28 -d 29 -S COLOR -c black l -t 1.29138888889 -s 32 -d 33 -S COLOR -c black n -t 1.29138888889 -s 24 -c black n -t 1.29138888889 -s 26 -c black n -t 1.29138888889 -s 28 -c black n -t 1.29138888889 -s 29 -c black l -t 1.34444444444 -s 0 -d 1 -S COLOR -c black l -t 1.34444444444 -s 1 -d 3 -S COLOR -c blue l -t 1.34444444444 -s 3 -d 4 -S COLOR -c brown l -t 1.34444444444 -s 4 -d 5 -S COLOR -c blue l -t 1.34444444444 -s 5 -d 40 -S COLOR -c red l -t 1.34444444444 -s 5 -d 7 -S COLOR -c red l -t 1.34444444444 -s 5 -d 8 -S COLOR -c black l -t 1.34444444444 -s 40 -d 41 -S COLOR -c brown l -t 1.34444444444 -s 7 -d 10 -S COLOR -c orange l -t 1.34444444444 -s 8 -d 11 -S COLOR -c black l -t 1.34444444444 -s 41 -d 42 -S COLOR -c black l -t 1.34444444444 -s 10 -d 13 -S COLOR -c brown l -t 1.34444444444 -s 11 -d 14 -S COLOR -c blue l -t 1.34444444444 -s 42 -d 43 -S COLOR -c black l -t 1.34444444444 -s 13 -d 16 -S COLOR -c black l -t 1.34444444444 -s 14 -d 17 -S COLOR -c brown l -t 1.34444444444 -s 43 -d 44 -S COLOR -c black l -t 1.34444444444 -s 16 -d 19 -S COLOR -c red l -t 1.34444444444 -s 17 -d 20 -S COLOR -c blue l -t 1.34444444444 -s 44 -d 45 -S COLOR -c blue l -t 1.34444444444 -s 19 -d 22 -S COLOR -c blue l -t 1.34444444444 -s 20 -d 23 -S COLOR -c brown l -t 1.34444444444 -s 45 -d 46 -S COLOR -c orange l -t 1.34444444444 -s 22 -d 24 -S COLOR -c brown l -t 1.34444444444 -s 22 -d 30 -S COLOR -c brown l -t 1.34444444444 -s 23 -d 25 -S COLOR -c black l -t 1.34444444444 -s 24 -d 26 -S COLOR -c brown l -t 1.34444444444 -s 30 -d 31 -S COLOR -c blue l -t 1.34444444444 -s 25 -d 27 -S COLOR -c black l -t 1.34444444444 -s 26 -d 28 -S COLOR -c black l -t 1.34444444444 -s 31 -d 32 -S COLOR -c black l -t 1.34444444444 -s 32 -d 33 -S COLOR -c black n -t 1.34444444444 -s 2 -c grey n -t 1.34444444444 -s 6 -c grey n -t 1.34444444444 -s 9 -c grey n -t 1.34444444444 -s 12 -c grey n -t 1.34444444444 -s 15 -c grey n -t 1.34444444444 -s 18 -c grey n -t 1.34444444444 -s 21 -c grey n -t 1.34444444444 -s 29 -c grey n -t 1.34444444444 -s 40 -c black n -t 1.34444444444 -s 41 -c black n -t 1.34444444444 -s 42 -c black n -t 1.34444444444 -s 43 -c black n -t 1.34444444444 -s 44 -c black n -t 1.34444444444 -s 45 -c black n -t 1.34444444444 -s 46 -c black l -t 1.34444444444 -s 0 -d 2 -c grey l -t 1.34444444444 -s 5 -d 6 -c grey l -t 1.34444444444 -s 6 -d 9 -c grey l -t 1.34444444444 -s 9 -d 12 -c grey l -t 1.34444444444 -s 12 -d 15 -c grey l -t 1.34444444444 -s 15 -d 18 -c grey l -t 1.34444444444 -s 18 -d 21 -c grey l -t 1.34444444444 -s 28 -d 29 -c grey l -t 1.395 -s 0 -d 1 -S COLOR -c brown l -t 1.395 -s 1 -d 3 -S COLOR -c black l -t 1.395 -s 3 -d 4 -S COLOR -c black l -t 1.395 -s 4 -d 5 -S COLOR -c orange l -t 1.395 -s 5 -d 8 -S COLOR -c black l -t 1.395 -s 5 -d 6 -S COLOR -c black l -t 1.395 -s 8 -d 11 -S COLOR -c brown l -t 1.395 -s 6 -d 9 -S COLOR -c red l -t 1.395 -s 11 -d 14 -S COLOR -c black l -t 1.395 -s 9 -d 12 -S COLOR -c black l -t 1.395 -s 14 -d 17 -S COLOR -c black l -t 1.395 -s 12 -d 15 -S COLOR -c blue l -t 1.395 -s 17 -d 20 -S COLOR -c blue l -t 1.395 -s 15 -d 18 -S COLOR -c black l -t 1.395 -s 20 -d 23 -S COLOR -c black l -t 1.395 -s 18 -d 21 -S COLOR -c black l -t 1.395 -s 23 -d 25 -S COLOR -c black l -t 1.395 -s 25 -d 27 -S COLOR -c black n -t 1.395 -s 6 -c black n -t 1.395 -s 7 -c grey n -t 1.395 -s 9 -c black n -t 1.395 -s 10 -c grey n -t 1.395 -s 12 -c black n -t 1.395 -s 13 -c grey n -t 1.395 -s 15 -c black n -t 1.395 -s 16 -c grey n -t 1.395 -s 18 -c black n -t 1.395 -s 19 -c grey n -t 1.395 -s 21 -c black n -t 1.395 -s 22 -c grey n -t 1.395 -s 24 -c grey n -t 1.395 -s 26 -c grey n -t 1.395 -s 28 -c grey n -t 1.395 -s 30 -c grey n -t 1.395 -s 31 -c grey n -t 1.395 -s 32 -c grey n -t 1.395 -s 33 -c grey n -t 1.395 -s 40 -c grey n -t 1.395 -s 41 -c grey n -t 1.395 -s 42 -c grey n -t 1.395 -s 43 -c grey n -t 1.395 -s 44 -c grey n -t 1.395 -s 45 -c grey n -t 1.395 -s 46 -c grey l -t 1.395 -s 5 -d 7 -c grey l -t 1.395 -s 7 -d 10 -c grey l -t 1.395 -s 10 -d 13 -c grey l -t 1.395 -s 13 -d 16 -c grey l -t 1.395 -s 16 -d 19 -c grey l -t 1.395 -s 19 -d 22 -c grey l -t 1.395 -s 22 -d 24 -c grey l -t 1.395 -s 24 -d 26 -c grey l -t 1.395 -s 26 -d 28 -c grey l -t 1.395 -s 22 -d 30 -c grey l -t 1.395 -s 30 -d 31 -c grey l -t 1.395 -s 31 -d 32 -c grey l -t 1.395 -s 32 -d 33 -c grey l -t 1.395 -s 5 -d 40 -c grey l -t 1.395 -s 40 -d 41 -c grey l -t 1.395 -s 41 -d 42 -c grey l -t 1.395 -s 42 -d 43 -c grey l -t 1.395 -s 43 -d 44 -c grey l -t 1.395 -s 44 -d 45 -c grey l -t 1.395 -s 45 -d 46 -c grey n -t 1.45388888889 -s 0 -c grey n -t 1.45388888889 -s 1 -c grey n -t 1.45388888889 -s 3 -c grey n -t 1.45388888889 -s 4 -c grey n -t 1.45388888889 -s 5 -c grey n -t 1.45388888889 -s 6 -c grey n -t 1.45388888889 -s 8 -c grey n -t 1.45388888889 -s 9 -c grey n -t 1.45388888889 -s 11 -c grey n -t 1.45388888889 -s 12 -c grey n -t 1.45388888889 -s 14 -c grey n -t 1.45388888889 -s 15 -c grey n -t 1.45388888889 -s 17 -c grey n -t 1.45388888889 -s 18 -c grey n -t 1.45388888889 -s 20 -c grey n -t 1.45388888889 -s 21 -c grey n -t 1.45388888889 -s 23 -c grey n -t 1.45388888889 -s 25 -c grey n -t 1.45388888889 -s 27 -c grey n -t 1.45388888889 -s 35 -c black l -t 1.45388888889 -s 0 -d 1 -c grey l -t 1.45388888889 -s 1 -d 3 -c grey l -t 1.45388888889 -s 3 -d 4 -c grey l -t 1.45388888889 -s 4 -d 5 -c grey l -t 1.45388888889 -s 5 -d 6 -c grey l -t 1.45388888889 -s 5 -d 8 -c grey l -t 1.45388888889 -s 6 -d 9 -c grey l -t 1.45388888889 -s 8 -d 11 -c grey l -t 1.45388888889 -s 9 -d 12 -c grey l -t 1.45388888889 -s 11 -d 14 -c grey l -t 1.45388888889 -s 12 -d 15 -c grey l -t 1.45388888889 -s 14 -d 17 -c grey l -t 1.45388888889 -s 15 -d 18 -c grey l -t 1.45388888889 -s 17 -d 20 -c grey l -t 1.45388888889 -s 18 -d 21 -c grey l -t 1.45388888889 -s 20 -d 23 -c grey l -t 1.45388888889 -s 23 -d 25 -c grey l -t 1.45388888889 -s 25 -d 27 -c grey l -t 1.51083333333 -s 0 -d 1 -S COLOR -c black l -t 1.51083333333 -s 0 -d 2 -S COLOR -c black l -t 1.51083333333 -s 1 -d 3 -S COLOR -c black l -t 1.51083333333 -s 3 -d 4 -S COLOR -c black l -t 1.51083333333 -s 4 -d 5 -S COLOR -c black l -t 1.51083333333 -s 5 -d 7 -S COLOR -c black l -t 1.51083333333 -s 5 -d 8 -S COLOR -c black l -t 1.51083333333 -s 7 -d 10 -S COLOR -c brown l -t 1.51083333333 -s 8 -d 11 -S COLOR -c red l -t 1.51083333333 -s 10 -d 13 -S COLOR -c brown l -t 1.51083333333 -s 11 -d 14 -S COLOR -c black l -t 1.51083333333 -s 13 -d 16 -S COLOR -c black l -t 1.51083333333 -s 14 -d 17 -S COLOR -c blue l -t 1.51083333333 -s 16 -d 19 -S COLOR -c red l -t 1.51083333333 -s 17 -d 20 -S COLOR -c black l -t 1.51083333333 -s 19 -d 22 -S COLOR -c black l -t 1.51083333333 -s 20 -d 23 -S COLOR -c blue l -t 1.51083333333 -s 22 -d 24 -S COLOR -c black l -t 1.51083333333 -s 23 -d 25 -S COLOR -c black l -t 1.51083333333 -s 24 -d 26 -S COLOR -c black l -t 1.51083333333 -s 25 -d 27 -S COLOR -c black l -t 1.51083333333 -s 26 -d 28 -S COLOR -c blue l -t 1.51083333333 -s 28 -d 29 -S COLOR -c black n -t 1.51083333333 -s 0 -c black n -t 1.51083333333 -s 1 -c black n -t 1.51083333333 -s 2 -c black n -t 1.51083333333 -s 3 -c black n -t 1.51083333333 -s 4 -c black n -t 1.51083333333 -s 5 -c black n -t 1.51083333333 -s 7 -c black n -t 1.51083333333 -s 8 -c black n -t 1.51083333333 -s 10 -c black n -t 1.51083333333 -s 11 -c black n -t 1.51083333333 -s 13 -c black n -t 1.51083333333 -s 14 -c black n -t 1.51083333333 -s 16 -c black n -t 1.51083333333 -s 17 -c black n -t 1.51083333333 -s 19 -c black n -t 1.51083333333 -s 20 -c black n -t 1.51083333333 -s 22 -c black n -t 1.51083333333 -s 23 -c black n -t 1.51083333333 -s 24 -c black n -t 1.51083333333 -s 25 -c black n -t 1.51083333333 -s 26 -c black n -t 1.51083333333 -s 27 -c black n -t 1.51083333333 -s 28 -c black n -t 1.51083333333 -s 29 -c black n -t 1.51083333333 -s 35 -c grey l -t 1.54361111111 -s 0 -d 1 -S COLOR -c black l -t 1.54361111111 -s 0 -d 2 -S COLOR -c black l -t 1.54361111111 -s 1 -d 3 -S COLOR -c black l -t 1.54361111111 -s 3 -d 4 -S COLOR -c blue l -t 1.54361111111 -s 4 -d 5 -S COLOR -c black l -t 1.54361111111 -s 5 -d 7 -S COLOR -c brown l -t 1.54361111111 -s 5 -d 8 -S COLOR -c black l -t 1.54361111111 -s 7 -d 10 -S COLOR -c orange l -t 1.54361111111 -s 8 -d 11 -S COLOR -c red l -t 1.54361111111 -s 10 -d 13 -S COLOR -c brown l -t 1.54361111111 -s 11 -d 14 -S COLOR -c blue l -t 1.54361111111 -s 13 -d 16 -S COLOR -c blue l -t 1.54361111111 -s 14 -d 17 -S COLOR -c black l -t 1.54361111111 -s 16 -d 19 -S COLOR -c red l -t 1.54361111111 -s 17 -d 20 -S COLOR -c brown l -t 1.54361111111 -s 19 -d 22 -S COLOR -c brown l -t 1.54361111111 -s 20 -d 23 -S COLOR -c blue l -t 1.54361111111 -s 22 -d 24 -S COLOR -c brown l -t 1.54361111111 -s 23 -d 25 -S COLOR -c black l -t 1.54361111111 -s 24 -d 26 -S COLOR -c black l -t 1.54361111111 -s 25 -d 27 -S COLOR -c black l -t 1.54361111111 -s 26 -d 28 -S COLOR -c black l -t 1.54361111111 -s 28 -d 29 -S COLOR -c black l -t 1.59333333333 -s 0 -d 1 -S COLOR -c black l -t 1.59333333333 -s 0 -d 2 -S COLOR -c black l -t 1.59333333333 -s 1 -d 3 -S COLOR -c black l -t 1.59333333333 -s 3 -d 4 -S COLOR -c black l -t 1.59333333333 -s 4 -d 5 -S COLOR -c brown l -t 1.59333333333 -s 5 -d 7 -S COLOR -c blue l -t 1.59333333333 -s 7 -d 10 -S COLOR -c orange l -t 1.59333333333 -s 10 -d 13 -S COLOR -c brown l -t 1.59333333333 -s 13 -d 16 -S COLOR -c black l -t 1.59333333333 -s 16 -d 19 -S COLOR -c red l -t 1.59333333333 -s 19 -d 22 -S COLOR -c blue l -t 1.59333333333 -s 22 -d 30 -S COLOR -c black l -t 1.59333333333 -s 30 -d 31 -S COLOR -c brown l -t 1.59333333333 -s 31 -d 32 -S COLOR -c black l -t 1.59333333333 -s 32 -d 33 -S COLOR -c black n -t 1.59333333333 -s 8 -c grey n -t 1.59333333333 -s 11 -c grey n -t 1.59333333333 -s 14 -c grey n -t 1.59333333333 -s 17 -c grey n -t 1.59333333333 -s 20 -c grey n -t 1.59333333333 -s 23 -c grey n -t 1.59333333333 -s 24 -c grey n -t 1.59333333333 -s 25 -c grey n -t 1.59333333333 -s 26 -c grey n -t 1.59333333333 -s 27 -c grey n -t 1.59333333333 -s 28 -c grey n -t 1.59333333333 -s 29 -c grey n -t 1.59333333333 -s 30 -c black n -t 1.59333333333 -s 31 -c black n -t 1.59333333333 -s 32 -c black n -t 1.59333333333 -s 33 -c black l -t 1.59333333333 -s 5 -d 8 -c grey l -t 1.59333333333 -s 8 -d 11 -c grey l -t 1.59333333333 -s 11 -d 14 -c grey l -t 1.59333333333 -s 14 -d 17 -c grey l -t 1.59333333333 -s 17 -d 20 -c grey l -t 1.59333333333 -s 20 -d 23 -c grey l -t 1.59333333333 -s 22 -d 24 -c grey l -t 1.59333333333 -s 23 -d 25 -c grey l -t 1.59333333333 -s 24 -d 26 -c grey l -t 1.59333333333 -s 25 -d 27 -c grey l -t 1.59333333333 -s 26 -d 28 -c grey l -t 1.59333333333 -s 28 -d 29 -c grey l -t 1.63694444444 -s 0 -d 1 -S COLOR -c brown l -t 1.63694444444 -s 0 -d 2 -S COLOR -c black l -t 1.63694444444 -s 1 -d 3 -S COLOR -c brown l -t 1.63694444444 -s 3 -d 4 -S COLOR -c black l -t 1.63694444444 -s 4 -d 5 -S COLOR -c red l -t 1.63694444444 -s 5 -d 6 -S COLOR -c black l -t 1.63694444444 -s 5 -d 7 -S COLOR -c blue l -t 1.63694444444 -s 5 -d 8 -S COLOR -c blue l -t 1.63694444444 -s 5 -d 47 -S COLOR -c red l -t 1.63694444444 -s 6 -d 9 -S COLOR -c red l -t 1.63694444444 -s 7 -d 10 -S COLOR -c orange l -t 1.63694444444 -s 8 -d 11 -S COLOR -c brown l -t 1.63694444444 -s 47 -d 48 -S COLOR -c black l -t 1.63694444444 -s 9 -d 12 -S COLOR -c brown l -t 1.63694444444 -s 10 -d 13 -S COLOR -c brown l -t 1.63694444444 -s 11 -d 14 -S COLOR -c blue l -t 1.63694444444 -s 48 -d 49 -S COLOR -c black l -t 1.63694444444 -s 12 -d 15 -S COLOR -c black l -t 1.63694444444 -s 13 -d 16 -S COLOR -c brown l -t 1.63694444444 -s 14 -d 17 -S COLOR -c black l -t 1.63694444444 -s 49 -d 50 -S COLOR -c black l -t 1.63694444444 -s 15 -d 18 -S COLOR -c black l -t 1.63694444444 -s 16 -d 19 -S COLOR -c red l -t 1.63694444444 -s 17 -d 20 -S COLOR -c black l -t 1.63694444444 -s 18 -d 21 -S COLOR -c black l -t 1.63694444444 -s 19 -d 22 -S COLOR -c blue l -t 1.63694444444 -s 20 -d 23 -S COLOR -c black l -t 1.63694444444 -s 22 -d 30 -S COLOR -c black l -t 1.63694444444 -s 22 -d 24 -S COLOR -c black l -t 1.63694444444 -s 23 -d 25 -S COLOR -c brown l -t 1.63694444444 -s 30 -d 31 -S COLOR -c brown l -t 1.63694444444 -s 24 -d 26 -S COLOR -c brown l -t 1.63694444444 -s 25 -d 27 -S COLOR -c black l -t 1.63694444444 -s 31 -d 32 -S COLOR -c black l -t 1.63694444444 -s 26 -d 28 -S COLOR -c black l -t 1.63694444444 -s 32 -d 33 -S COLOR -c black l -t 1.63694444444 -s 28 -d 29 -S COLOR -c black n -t 1.63694444444 -s 6 -c black n -t 1.63694444444 -s 8 -c black n -t 1.63694444444 -s 9 -c black n -t 1.63694444444 -s 11 -c black n -t 1.63694444444 -s 12 -c black n -t 1.63694444444 -s 14 -c black n -t 1.63694444444 -s 15 -c black n -t 1.63694444444 -s 17 -c black n -t 1.63694444444 -s 18 -c black n -t 1.63694444444 -s 20 -c black n -t 1.63694444444 -s 21 -c black n -t 1.63694444444 -s 23 -c black n -t 1.63694444444 -s 24 -c black n -t 1.63694444444 -s 25 -c black n -t 1.63694444444 -s 26 -c black n -t 1.63694444444 -s 27 -c black n -t 1.63694444444 -s 28 -c black n -t 1.63694444444 -s 29 -c black n -t 1.63694444444 -s 47 -c black n -t 1.63694444444 -s 48 -c black n -t 1.63694444444 -s 49 -c black n -t 1.63694444444 -s 50 -c black l -t 1.68138888889 -s 0 -d 1 -S COLOR -c black l -t 1.68138888889 -s 1 -d 3 -S COLOR -c black l -t 1.68138888889 -s 3 -d 4 -S COLOR -c black l -t 1.68138888889 -s 4 -d 5 -S COLOR -c orange l -t 1.68138888889 -s 5 -d 47 -S COLOR -c red l -t 1.68138888889 -s 5 -d 7 -S COLOR -c black l -t 1.68138888889 -s 5 -d 8 -S COLOR -c blue l -t 1.68138888889 -s 47 -d 48 -S COLOR -c black l -t 1.68138888889 -s 7 -d 10 -S COLOR -c orange l -t 1.68138888889 -s 8 -d 11 -S COLOR -c black l -t 1.68138888889 -s 48 -d 49 -S COLOR -c black l -t 1.68138888889 -s 10 -d 13 -S COLOR -c black l -t 1.68138888889 -s 11 -d 14 -S COLOR -c black l -t 1.68138888889 -s 49 -d 50 -S COLOR -c black l -t 1.68138888889 -s 13 -d 16 -S COLOR -c black l -t 1.68138888889 -s 14 -d 17 -S COLOR -c black l -t 1.68138888889 -s 50 -d 51 -S COLOR -c black l -t 1.68138888889 -s 16 -d 19 -S COLOR -c red l -t 1.68138888889 -s 17 -d 20 -S COLOR -c black l -t 1.68138888889 -s 19 -d 22 -S COLOR -c brown l -t 1.68138888889 -s 20 -d 23 -S COLOR -c black l -t 1.68138888889 -s 22 -d 24 -S COLOR -c black l -t 1.68138888889 -s 23 -d 25 -S COLOR -c black l -t 1.68138888889 -s 24 -d 26 -S COLOR -c black l -t 1.68138888889 -s 25 -d 27 -S COLOR -c black l -t 1.68138888889 -s 26 -d 28 -S COLOR -c black l -t 1.68138888889 -s 28 -d 29 -S COLOR -c black n -t 1.68138888889 -s 2 -c grey n -t 1.68138888889 -s 6 -c grey n -t 1.68138888889 -s 9 -c grey n -t 1.68138888889 -s 12 -c grey n -t 1.68138888889 -s 15 -c grey n -t 1.68138888889 -s 18 -c grey n -t 1.68138888889 -s 21 -c grey n -t 1.68138888889 -s 30 -c grey n -t 1.68138888889 -s 31 -c grey n -t 1.68138888889 -s 32 -c grey n -t 1.68138888889 -s 33 -c grey n -t 1.68138888889 -s 51 -c black l -t 1.68138888889 -s 0 -d 2 -c grey l -t 1.68138888889 -s 5 -d 6 -c grey l -t 1.68138888889 -s 6 -d 9 -c grey l -t 1.68138888889 -s 9 -d 12 -c grey l -t 1.68138888889 -s 12 -d 15 -c grey l -t 1.68138888889 -s 15 -d 18 -c grey l -t 1.68138888889 -s 18 -d 21 -c grey l -t 1.68138888889 -s 22 -d 30 -c grey l -t 1.68138888889 -s 30 -d 31 -c grey l -t 1.68138888889 -s 31 -d 32 -c grey l -t 1.68138888889 -s 32 -d 33 -c grey l -t 1.72638888889 -s 0 -d 1 -S COLOR -c black l -t 1.72638888889 -s 0 -d 2 -S COLOR -c black l -t 1.72638888889 -s 1 -d 3 -S COLOR -c black l -t 1.72638888889 -s 3 -d 4 -S COLOR -c blue l -t 1.72638888889 -s 4 -d 5 -S COLOR -c orange l -t 1.72638888889 -s 5 -d 6 -S COLOR -c blue l -t 1.72638888889 -s 5 -d 7 -S COLOR -c brown l -t 1.72638888889 -s 5 -d 8 -S COLOR -c black l -t 1.72638888889 -s 6 -d 9 -S COLOR -c red l -t 1.72638888889 -s 7 -d 10 -S COLOR -c brown l -t 1.72638888889 -s 8 -d 11 -S COLOR -c brown l -t 1.72638888889 -s 9 -d 12 -S COLOR -c black l -t 1.72638888889 -s 10 -d 13 -S COLOR -c orange l -t 1.72638888889 -s 11 -d 14 -S COLOR -c blue l -t 1.72638888889 -s 12 -d 15 -S COLOR -c black l -t 1.72638888889 -s 13 -d 16 -S COLOR -c blue l -t 1.72638888889 -s 14 -d 17 -S COLOR -c brown l -t 1.72638888889 -s 15 -d 18 -S COLOR -c black l -t 1.72638888889 -s 16 -d 19 -S COLOR -c orange l -t 1.72638888889 -s 17 -d 20 -S COLOR -c blue l -t 1.72638888889 -s 18 -d 21 -S COLOR -c black l -t 1.72638888889 -s 19 -d 22 -S COLOR -c black l -t 1.72638888889 -s 20 -d 23 -S COLOR -c brown l -t 1.72638888889 -s 22 -d 24 -S COLOR -c black l -t 1.72638888889 -s 22 -d 30 -S COLOR -c black l -t 1.72638888889 -s 23 -d 25 -S COLOR -c black l -t 1.72638888889 -s 24 -d 26 -S COLOR -c brown l -t 1.72638888889 -s 30 -d 31 -S COLOR -c blue l -t 1.72638888889 -s 25 -d 27 -S COLOR -c black l -t 1.72638888889 -s 26 -d 28 -S COLOR -c black l -t 1.72638888889 -s 31 -d 32 -S COLOR -c black l -t 1.72638888889 -s 28 -d 29 -S COLOR -c black l -t 1.72638888889 -s 32 -d 33 -S COLOR -c black n -t 1.72638888889 -s 2 -c black n -t 1.72638888889 -s 6 -c black n -t 1.72638888889 -s 9 -c black n -t 1.72638888889 -s 12 -c black n -t 1.72638888889 -s 15 -c black n -t 1.72638888889 -s 18 -c black n -t 1.72638888889 -s 21 -c black n -t 1.72638888889 -s 30 -c black n -t 1.72638888889 -s 31 -c black n -t 1.72638888889 -s 32 -c black n -t 1.72638888889 -s 33 -c black n -t 1.72638888889 -s 47 -c grey n -t 1.72638888889 -s 48 -c grey n -t 1.72638888889 -s 49 -c grey n -t 1.72638888889 -s 50 -c grey n -t 1.72638888889 -s 51 -c grey l -t 1.72638888889 -s 5 -d 47 -c grey l -t 1.72638888889 -s 47 -d 48 -c grey l -t 1.72638888889 -s 48 -d 49 -c grey l -t 1.72638888889 -s 49 -d 50 -c grey l -t 1.72638888889 -s 50 -d 51 -c grey l -t 1.76416666667 -s 0 -d 1 -S COLOR -c black l -t 1.76416666667 -s 0 -d 2 -S COLOR -c black l -t 1.76416666667 -s 1 -d 3 -S COLOR -c black l -t 1.76416666667 -s 3 -d 4 -S COLOR -c black l -t 1.76416666667 -s 4 -d 5 -S COLOR -c brown l -t 1.76416666667 -s 5 -d 6 -S COLOR -c black l -t 1.76416666667 -s 5 -d 7 -S COLOR -c black l -t 1.76416666667 -s 5 -d 8 -S COLOR -c black l -t 1.76416666667 -s 6 -d 9 -S COLOR -c red l -t 1.76416666667 -s 7 -d 10 -S COLOR -c brown l -t 1.76416666667 -s 8 -d 11 -S COLOR -c blue l -t 1.76416666667 -s 9 -d 12 -S COLOR -c black l -t 1.76416666667 -s 10 -d 13 -S COLOR -c black l -t 1.76416666667 -s 11 -d 14 -S COLOR -c black l -t 1.76416666667 -s 12 -d 15 -S COLOR -c black l -t 1.76416666667 -s 13 -d 16 -S COLOR -c black l -t 1.76416666667 -s 14 -d 17 -S COLOR -c black l -t 1.76416666667 -s 15 -d 18 -S COLOR -c black l -t 1.76416666667 -s 16 -d 19 -S COLOR -c red l -t 1.76416666667 -s 17 -d 20 -S COLOR -c brown l -t 1.76416666667 -s 18 -d 21 -S COLOR -c black l -t 1.76416666667 -s 19 -d 22 -S COLOR -c blue l -t 1.76416666667 -s 20 -d 23 -S COLOR -c blue l -t 1.76416666667 -s 22 -d 24 -S COLOR -c brown l -t 1.76416666667 -s 22 -d 30 -S COLOR -c black l -t 1.76416666667 -s 23 -d 25 -S COLOR -c black l -t 1.76416666667 -s 24 -d 26 -S COLOR -c black l -t 1.76416666667 -s 30 -d 31 -S COLOR -c brown l -t 1.76416666667 -s 25 -d 27 -S COLOR -c black l -t 1.76416666667 -s 26 -d 28 -S COLOR -c black l -t 1.76416666667 -s 31 -d 32 -S COLOR -c black l -t 1.76416666667 -s 28 -d 29 -S COLOR -c black l -t 1.76416666667 -s 32 -d 33 -S COLOR -c black l -t 1.81416666667 -s 0 -d 1 -S COLOR -c black l -t 1.81416666667 -s 0 -d 2 -S COLOR -c black l -t 1.81416666667 -s 1 -d 3 -S COLOR -c brown l -t 1.81416666667 -s 3 -d 4 -S COLOR -c black l -t 1.81416666667 -s 4 -d 5 -S COLOR -c orange l -t 1.81416666667 -s 5 -d 6 -S COLOR -c brown l -t 1.81416666667 -s 5 -d 7 -S COLOR -c black l -t 1.81416666667 -s 5 -d 8 -S COLOR -c brown l -t 1.81416666667 -s 6 -d 9 -S COLOR -c red l -t 1.81416666667 -s 7 -d 10 -S COLOR -c blue l -t 1.81416666667 -s 8 -d 52 -S COLOR -c black l -t 1.81416666667 -s 8 -d 11 -S COLOR -c brown l -t 1.81416666667 -s 9 -d 12 -S COLOR -c black l -t 1.81416666667 -s 10 -d 13 -S COLOR -c orange l -t 1.81416666667 -s 52 -d 53 -S COLOR -c blue l -t 1.81416666667 -s 11 -d 14 -S COLOR -c blue l -t 1.81416666667 -s 12 -d 15 -S COLOR -c blue l -t 1.81416666667 -s 13 -d 16 -S COLOR -c brown l -t 1.81416666667 -s 53 -d 54 -S COLOR -c black l -t 1.81416666667 -s 14 -d 34 -S COLOR -c black l -t 1.81416666667 -s 14 -d 17 -S COLOR -c black l -t 1.81416666667 -s 15 -d 18 -S COLOR -c black l -t 1.81416666667 -s 16 -d 19 -S COLOR -c orange l -t 1.81416666667 -s 17 -d 20 -S COLOR -c brown l -t 1.81416666667 -s 18 -d 21 -S COLOR -c black l -t 1.81416666667 -s 19 -d 22 -S COLOR -c black l -t 1.81416666667 -s 20 -d 23 -S COLOR -c blue l -t 1.81416666667 -s 22 -d 24 -S COLOR -c black l -t 1.81416666667 -s 22 -d 30 -S COLOR -c black l -t 1.81416666667 -s 23 -d 25 -S COLOR -c black l -t 1.81416666667 -s 24 -d 26 -S COLOR -c black l -t 1.81416666667 -s 30 -d 31 -S COLOR -c black l -t 1.81416666667 -s 25 -d 27 -S COLOR -c black l -t 1.81416666667 -s 26 -d 28 -S COLOR -c black l -t 1.81416666667 -s 31 -d 32 -S COLOR -c black l -t 1.81416666667 -s 28 -d 29 -S COLOR -c black l -t 1.81416666667 -s 32 -d 33 -S COLOR -c black n -t 1.81416666667 -s 34 -c black n -t 1.81416666667 -s 52 -c black n -t 1.81416666667 -s 53 -c black n -t 1.81416666667 -s 54 -c black l -t 1.85333333333 -s 0 -d 1 -S COLOR -c brown l -t 1.85333333333 -s 0 -d 2 -S COLOR -c black l -t 1.85333333333 -s 1 -d 3 -S COLOR -c blue l -t 1.85333333333 -s 3 -d 4 -S COLOR -c brown l -t 1.85333333333 -s 4 -d 5 -S COLOR -c brown l -t 1.85333333333 -s 5 -d 6 -S COLOR -c blue l -t 1.85333333333 -s 5 -d 7 -S COLOR -c black l -t 1.85333333333 -s 5 -d 8 -S COLOR -c blue l -t 1.85333333333 -s 5 -d 47 -S COLOR -c red l -t 1.85333333333 -s 6 -d 9 -S COLOR -c red l -t 1.85333333333 -s 7 -d 10 -S COLOR -c red l -t 1.85333333333 -s 8 -d 52 -S COLOR -c brown l -t 1.85333333333 -s 8 -d 11 -S COLOR -c orange l -t 1.85333333333 -s 47 -d 48 -S COLOR -c brown l -t 1.85333333333 -s 9 -d 12 -S COLOR -c black l -t 1.85333333333 -s 10 -d 13 -S COLOR -c brown l -t 1.85333333333 -s 52 -d 53 -S COLOR -c blue l -t 1.85333333333 -s 11 -d 14 -S COLOR -c blue l -t 1.85333333333 -s 48 -d 49 -S COLOR -c black l -t 1.85333333333 -s 12 -d 15 -S COLOR -c black l -t 1.85333333333 -s 13 -d 16 -S COLOR -c blue l -t 1.85333333333 -s 53 -d 54 -S COLOR -c black l -t 1.85333333333 -s 14 -d 34 -S COLOR -c black l -t 1.85333333333 -s 14 -d 17 -S COLOR -c black l -t 1.85333333333 -s 49 -d 50 -S COLOR -c black l -t 1.85333333333 -s 15 -d 18 -S COLOR -c black l -t 1.85333333333 -s 16 -d 19 -S COLOR -c blue l -t 1.85333333333 -s 17 -d 20 -S COLOR -c brown l -t 1.85333333333 -s 18 -d 21 -S COLOR -c black l -t 1.85333333333 -s 19 -d 22 -S COLOR -c black l -t 1.85333333333 -s 20 -d 23 -S COLOR -c black l -t 1.85333333333 -s 22 -d 30 -S COLOR -c black l -t 1.85333333333 -s 22 -d 24 -S COLOR -c black l -t 1.85333333333 -s 23 -d 25 -S COLOR -c black l -t 1.85333333333 -s 30 -d 31 -S COLOR -c black l -t 1.85333333333 -s 24 -d 26 -S COLOR -c brown l -t 1.85333333333 -s 25 -d 27 -S COLOR -c black l -t 1.85333333333 -s 31 -d 32 -S COLOR -c blue l -t 1.85333333333 -s 26 -d 28 -S COLOR -c black l -t 1.85333333333 -s 32 -d 33 -S COLOR -c black l -t 1.85333333333 -s 28 -d 29 -S COLOR -c black n -t 1.85333333333 -s 47 -c black n -t 1.85333333333 -s 48 -c black n -t 1.85333333333 -s 49 -c black n -t 1.85333333333 -s 50 -c black l -t 1.91027777778 -s 0 -d 1 -S COLOR -c black l -t 1.91027777778 -s 0 -d 2 -S COLOR -c black l -t 1.91027777778 -s 1 -d 3 -S COLOR -c brown l -t 1.91027777778 -s 3 -d 4 -S COLOR -c black l -t 1.91027777778 -s 4 -d 5 -S COLOR -c red l -t 1.91027777778 -s 5 -d 6 -S COLOR -c blue l -t 1.91027777778 -s 5 -d 7 -S COLOR -c red l -t 1.91027777778 -s 5 -d 8 -S COLOR -c black l -t 1.91027777778 -s 6 -d 9 -S COLOR -c red l -t 1.91027777778 -s 7 -d 10 -S COLOR -c blue l -t 1.91027777778 -s 8 -d 11 -S COLOR -c black l -t 1.91027777778 -s 9 -d 12 -S COLOR -c black l -t 1.91027777778 -s 10 -d 13 -S COLOR -c orange l -t 1.91027777778 -s 11 -d 14 -S COLOR -c black l -t 1.91027777778 -s 12 -d 15 -S COLOR -c black l -t 1.91027777778 -s 13 -d 16 -S COLOR -c blue l -t 1.91027777778 -s 14 -d 34 -S COLOR -c black l -t 1.91027777778 -s 14 -d 17 -S COLOR -c blue l -t 1.91027777778 -s 15 -d 18 -S COLOR -c blue l -t 1.91027777778 -s 16 -d 19 -S COLOR -c red l -t 1.91027777778 -s 17 -d 20 -S COLOR -c brown l -t 1.91027777778 -s 18 -d 21 -S COLOR -c black l -t 1.91027777778 -s 19 -d 22 -S COLOR -c brown l -t 1.91027777778 -s 20 -d 23 -S COLOR -c blue l -t 1.91027777778 -s 22 -d 24 -S COLOR -c black l -t 1.91027777778 -s 22 -d 30 -S COLOR -c black l -t 1.91027777778 -s 23 -d 25 -S COLOR -c black l -t 1.91027777778 -s 24 -d 26 -S COLOR -c black l -t 1.91027777778 -s 30 -d 31 -S COLOR -c black l -t 1.91027777778 -s 25 -d 27 -S COLOR -c black l -t 1.91027777778 -s 26 -d 28 -S COLOR -c black l -t 1.91027777778 -s 31 -d 32 -S COLOR -c blue l -t 1.91027777778 -s 28 -d 29 -S COLOR -c black l -t 1.91027777778 -s 32 -d 33 -S COLOR -c black n -t 1.91027777778 -s 47 -c grey n -t 1.91027777778 -s 48 -c grey n -t 1.91027777778 -s 49 -c grey n -t 1.91027777778 -s 50 -c grey n -t 1.91027777778 -s 52 -c grey n -t 1.91027777778 -s 53 -c grey n -t 1.91027777778 -s 54 -c grey l -t 1.91027777778 -s 5 -d 47 -c grey l -t 1.91027777778 -s 47 -d 48 -c grey l -t 1.91027777778 -s 48 -d 49 -c grey l -t 1.91027777778 -s 49 -d 50 -c grey l -t 1.91027777778 -s 8 -d 52 -c grey l -t 1.91027777778 -s 52 -d 53 -c grey l -t 1.91027777778 -s 53 -d 54 -c grey l -t 1.96861111111 -s 0 -d 1 -S COLOR -c black l -t 1.96861111111 -s 1 -d 3 -S COLOR -c black l -t 1.96861111111 -s 3 -d 4 -S COLOR -c black l -t 1.96861111111 -s 4 -d 5 -S COLOR -c black l -t 1.96861111111 -s 5 -d 47 -S COLOR -c red l -t 1.96861111111 -s 5 -d 8 -S COLOR -c blue l -t 1.96861111111 -s 5 -d 6 -S COLOR -c black l -t 1.96861111111 -s 47 -d 48 -S COLOR -c black l -t 1.96861111111 -s 8 -d 11 -S COLOR -c black l -t 1.96861111111 -s 6 -d 9 -S COLOR -c red l -t 1.96861111111 -s 48 -d 49 -S COLOR -c red l -t 1.96861111111 -s 11 -d 14 -S COLOR -c black l -t 1.96861111111 -s 9 -d 12 -S COLOR -c black l -t 1.96861111111 -s 49 -d 50 -S COLOR -c black l -t 1.96861111111 -s 14 -d 17 -S COLOR -c black l -t 1.96861111111 -s 12 -d 15 -S COLOR -c black l -t 1.96861111111 -s 17 -d 20 -S COLOR -c black l -t 1.96861111111 -s 15 -d 18 -S COLOR -c blue l -t 1.96861111111 -s 20 -d 23 -S COLOR -c black l -t 1.96861111111 -s 18 -d 21 -S COLOR -c black l -t 1.96861111111 -s 23 -d 25 -S COLOR -c black l -t 1.96861111111 -s 25 -d 27 -S COLOR -c black n -t 1.96861111111 -s 2 -c grey n -t 1.96861111111 -s 7 -c grey n -t 1.96861111111 -s 10 -c grey n -t 1.96861111111 -s 13 -c grey n -t 1.96861111111 -s 16 -c grey n -t 1.96861111111 -s 19 -c grey n -t 1.96861111111 -s 22 -c grey n -t 1.96861111111 -s 24 -c grey n -t 1.96861111111 -s 26 -c grey n -t 1.96861111111 -s 28 -c grey n -t 1.96861111111 -s 29 -c grey n -t 1.96861111111 -s 30 -c grey n -t 1.96861111111 -s 31 -c grey n -t 1.96861111111 -s 32 -c grey n -t 1.96861111111 -s 33 -c grey n -t 1.96861111111 -s 34 -c grey n -t 1.96861111111 -s 47 -c black n -t 1.96861111111 -s 48 -c black n -t 1.96861111111 -s 49 -c black n -t 1.96861111111 -s 50 -c black l -t 1.96861111111 -s 0 -d 2 -c grey l -t 1.96861111111 -s 5 -d 7 -c grey l -t 1.96861111111 -s 7 -d 10 -c grey l -t 1.96861111111 -s 10 -d 13 -c grey l -t 1.96861111111 -s 13 -d 16 -c grey l -t 1.96861111111 -s 16 -d 19 -c grey l -t 1.96861111111 -s 19 -d 22 -c grey l -t 1.96861111111 -s 22 -d 24 -c grey l -t 1.96861111111 -s 24 -d 26 -c grey l -t 1.96861111111 -s 26 -d 28 -c grey l -t 1.96861111111 -s 28 -d 29 -c grey l -t 1.96861111111 -s 22 -d 30 -c grey l -t 1.96861111111 -s 30 -d 31 -c grey l -t 1.96861111111 -s 31 -d 32 -c grey l -t 1.96861111111 -s 32 -d 33 -c grey l -t 1.96861111111 -s 14 -d 34 -c grey l -t 2.04277777778 -s 0 -d 1 -S COLOR -c brown l -t 2.04277777778 -s 0 -d 2 -S COLOR -c black l -t 2.04277777778 -s 1 -d 3 -S COLOR -c black l -t 2.04277777778 -s 3 -d 4 -S COLOR -c black l -t 2.04277777778 -s 4 -d 5 -S COLOR -c blue l -t 2.04277777778 -s 5 -d 6 -S COLOR -c black l -t 2.04277777778 -s 5 -d 7 -S COLOR -c black l -t 2.04277777778 -s 5 -d 8 -S COLOR -c brown l -t 2.04277777778 -s 6 -d 9 -S COLOR -c red l -t 2.04277777778 -s 7 -d 10 -S COLOR -c brown l -t 2.04277777778 -s 8 -d 11 -S COLOR -c black l -t 2.04277777778 -s 9 -d 12 -S COLOR -c black l -t 2.04277777778 -s 10 -d 13 -S COLOR -c black l -t 2.04277777778 -s 11 -d 14 -S COLOR -c black l -t 2.04277777778 -s 12 -d 15 -S COLOR -c black l -t 2.04277777778 -s 13 -d 16 -S COLOR -c black l -t 2.04277777778 -s 14 -d 34 -S COLOR -c black l -t 2.04277777778 -s 14 -d 17 -S COLOR -c black l -t 2.04277777778 -s 15 -d 18 -S COLOR -c black l -t 2.04277777778 -s 16 -d 19 -S COLOR -c red l -t 2.04277777778 -s 17 -d 20 -S COLOR -c brown l -t 2.04277777778 -s 18 -d 21 -S COLOR -c black l -t 2.04277777778 -s 19 -d 22 -S COLOR -c brown l -t 2.04277777778 -s 20 -d 23 -S COLOR -c blue l -t 2.04277777778 -s 22 -d 24 -S COLOR -c black l -t 2.04277777778 -s 23 -d 25 -S COLOR -c black l -t 2.04277777778 -s 24 -d 26 -S COLOR -c black l -t 2.04277777778 -s 25 -d 27 -S COLOR -c black l -t 2.04277777778 -s 26 -d 28 -S COLOR -c black n -t 2.04277777778 -s 2 -c black n -t 2.04277777778 -s 7 -c black n -t 2.04277777778 -s 10 -c black n -t 2.04277777778 -s 13 -c black n -t 2.04277777778 -s 16 -c black n -t 2.04277777778 -s 19 -c black n -t 2.04277777778 -s 22 -c black n -t 2.04277777778 -s 24 -c black n -t 2.04277777778 -s 26 -c black n -t 2.04277777778 -s 28 -c black n -t 2.04277777778 -s 34 -c black n -t 2.04277777778 -s 47 -c grey n -t 2.04277777778 -s 48 -c grey n -t 2.04277777778 -s 49 -c grey n -t 2.04277777778 -s 50 -c grey l -t 2.04277777778 -s 5 -d 47 -c grey l -t 2.04277777778 -s 47 -d 48 -c grey l -t 2.04277777778 -s 48 -d 49 -c grey l -t 2.04277777778 -s 49 -d 50 -c grey l -t 2.15166666667 -s 0 -d 1 -S COLOR -c black l -t 2.15166666667 -s 1 -d 3 -S COLOR -c black l -t 2.15166666667 -s 3 -d 4 -S COLOR -c brown l -t 2.15166666667 -s 4 -d 5 -S COLOR -c blue l -t 2.15166666667 -s 5 -d 6 -S COLOR -c brown l -t 2.15166666667 -s 5 -d 7 -S COLOR -c blue l -t 2.15166666667 -s 5 -d 8 -S COLOR -c blue l -t 2.15166666667 -s 5 -d 47 -S COLOR -c red l -t 2.15166666667 -s 6 -d 9 -S COLOR -c red l -t 2.15166666667 -s 7 -d 10 -S COLOR -c red l -t 2.15166666667 -s 8 -d 11 -S COLOR -c brown l -t 2.15166666667 -s 47 -d 48 -S COLOR -c black l -t 2.15166666667 -s 9 -d 12 -S COLOR -c black l -t 2.15166666667 -s 10 -d 13 -S COLOR -c brown l -t 2.15166666667 -s 11 -d 14 -S COLOR -c brown l -t 2.15166666667 -s 48 -d 49 -S COLOR -c black l -t 2.15166666667 -s 12 -d 15 -S COLOR -c black l -t 2.15166666667 -s 13 -d 16 -S COLOR -c black l -t 2.15166666667 -s 14 -d 34 -S COLOR -c black l -t 2.15166666667 -s 14 -d 17 -S COLOR -c black l -t 2.15166666667 -s 49 -d 50 -S COLOR -c black l -t 2.15166666667 -s 15 -d 18 -S COLOR -c black l -t 2.15166666667 -s 16 -d 19 -S COLOR -c red l -t 2.15166666667 -s 17 -d 20 -S COLOR -c blue l -t 2.15166666667 -s 18 -d 21 -S COLOR -c black l -t 2.15166666667 -s 19 -d 22 -S COLOR -c blue l -t 2.15166666667 -s 20 -d 23 -S COLOR -c brown l -t 2.15166666667 -s 22 -d 24 -S COLOR -c black l -t 2.15166666667 -s 22 -d 30 -S COLOR -c black l -t 2.15166666667 -s 23 -d 25 -S COLOR -c black l -t 2.15166666667 -s 24 -d 26 -S COLOR -c brown l -t 2.15166666667 -s 30 -d 31 -S COLOR -c brown l -t 2.15166666667 -s 25 -d 27 -S COLOR -c black l -t 2.15166666667 -s 26 -d 28 -S COLOR -c black l -t 2.15166666667 -s 31 -d 32 -S COLOR -c blue l -t 2.15166666667 -s 32 -d 33 -S COLOR -c black n -t 2.15166666667 -s 2 -c grey n -t 2.15166666667 -s 30 -c black n -t 2.15166666667 -s 31 -c black n -t 2.15166666667 -s 32 -c black n -t 2.15166666667 -s 33 -c black n -t 2.15166666667 -s 47 -c black n -t 2.15166666667 -s 48 -c black n -t 2.15166666667 -s 49 -c black n -t 2.15166666667 -s 50 -c black l -t 2.15166666667 -s 0 -d 2 -c grey l -t 2.24472222222 -s 0 -d 1 -S COLOR -c black l -t 2.24472222222 -s 0 -d 2 -S COLOR -c black l -t 2.24472222222 -s 1 -d 3 -S COLOR -c black l -t 2.24472222222 -s 3 -d 4 -S COLOR -c black l -t 2.24472222222 -s 4 -d 5 -S COLOR -c orange l -t 2.24472222222 -s 5 -d 47 -S COLOR -c red l -t 2.24472222222 -s 5 -d 7 -S COLOR -c brown l -t 2.24472222222 -s 5 -d 8 -S COLOR -c black l -t 2.24472222222 -s 47 -d 48 -S COLOR -c brown l -t 2.24472222222 -s 7 -d 10 -S COLOR -c blue l -t 2.24472222222 -s 8 -d 11 -S COLOR -c blue l -t 2.24472222222 -s 48 -d 49 -S COLOR -c black l -t 2.24472222222 -s 10 -d 13 -S COLOR -c orange l -t 2.24472222222 -s 11 -d 14 -S COLOR -c orange l -t 2.24472222222 -s 49 -d 50 -S COLOR -c black l -t 2.24472222222 -s 13 -d 16 -S COLOR -c black l -t 2.24472222222 -s 14 -d 55 -S COLOR -c black l -t 2.24472222222 -s 14 -d 17 -S COLOR -c black l -t 2.24472222222 -s 14 -d 34 -S COLOR -c black l -t 2.24472222222 -s 50 -d 51 -S COLOR -c black l -t 2.24472222222 -s 16 -d 19 -S COLOR -c red l -t 2.24472222222 -s 17 -d 20 -S COLOR -c black l -t 2.24472222222 -s 19 -d 22 -S COLOR -c black l -t 2.24472222222 -s 20 -d 23 -S COLOR -c black l -t 2.24472222222 -s 22 -d 30 -S COLOR -c black l -t 2.24472222222 -s 22 -d 24 -S COLOR -c black l -t 2.24472222222 -s 23 -d 25 -S COLOR -c blue l -t 2.24472222222 -s 30 -d 31 -S COLOR -c brown l -t 2.24472222222 -s 24 -d 26 -S COLOR -c brown l -t 2.24472222222 -s 25 -d 27 -S COLOR -c black l -t 2.24472222222 -s 31 -d 32 -S COLOR -c black l -t 2.24472222222 -s 26 -d 28 -S COLOR -c black l -t 2.24472222222 -s 32 -d 33 -S COLOR -c black l -t 2.24472222222 -s 28 -d 29 -S COLOR -c black n -t 2.24472222222 -s 2 -c black n -t 2.24472222222 -s 6 -c grey n -t 2.24472222222 -s 9 -c grey n -t 2.24472222222 -s 12 -c grey n -t 2.24472222222 -s 15 -c grey n -t 2.24472222222 -s 18 -c grey n -t 2.24472222222 -s 21 -c grey n -t 2.24472222222 -s 29 -c black n -t 2.24472222222 -s 51 -c black n -t 2.24472222222 -s 55 -c black l -t 2.24472222222 -s 5 -d 6 -c grey l -t 2.24472222222 -s 6 -d 9 -c grey l -t 2.24472222222 -s 9 -d 12 -c grey l -t 2.24472222222 -s 12 -d 15 -c grey l -t 2.24472222222 -s 15 -d 18 -c grey l -t 2.24472222222 -s 18 -d 21 -c grey l -t 2.30055555556 -s 0 -d 1 -S COLOR -c black l -t 2.30055555556 -s 0 -d 2 -S COLOR -c black l -t 2.30055555556 -s 1 -d 3 -S COLOR -c brown l -t 2.30055555556 -s 3 -d 4 -S COLOR -c black l -t 2.30055555556 -s 4 -d 5 -S COLOR -c brown l -t 2.30055555556 -s 5 -d 6 -S COLOR -c blue l -t 2.30055555556 -s 5 -d 7 -S COLOR -c brown l -t 2.30055555556 -s 5 -d 8 -S COLOR -c orange l -t 2.30055555556 -s 5 -d 56 -S COLOR -c blue l -t 2.30055555556 -s 6 -d 9 -S COLOR -c red l -t 2.30055555556 -s 7 -d 10 -S COLOR -c red l -t 2.30055555556 -s 8 -d 11 -S COLOR -c blue l -t 2.30055555556 -s 56 -d 57 -S COLOR -c orange l -t 2.30055555556 -s 9 -d 12 -S COLOR -c black l -t 2.30055555556 -s 10 -d 13 -S COLOR -c orange l -t 2.30055555556 -s 11 -d 14 -S COLOR -c blue l -t 2.30055555556 -s 57 -d 58 -S COLOR -c blue l -t 2.30055555556 -s 12 -d 15 -S COLOR -c black l -t 2.30055555556 -s 13 -d 16 -S COLOR -c brown l -t 2.30055555556 -s 14 -d 55 -S COLOR -c black l -t 2.30055555556 -s 14 -d 17 -S COLOR -c brown l -t 2.30055555556 -s 14 -d 34 -S COLOR -c black l -t 2.30055555556 -s 58 -d 59 -S COLOR -c black l -t 2.30055555556 -s 15 -d 18 -S COLOR -c black l -t 2.30055555556 -s 16 -d 19 -S COLOR -c orange l -t 2.30055555556 -s 17 -d 20 -S COLOR -c blue l -t 2.30055555556 -s 18 -d 21 -S COLOR -c black l -t 2.30055555556 -s 19 -d 22 -S COLOR -c black l -t 2.30055555556 -s 20 -d 23 -S COLOR -c black l -t 2.30055555556 -s 22 -d 30 -S COLOR -c black l -t 2.30055555556 -s 22 -d 24 -S COLOR -c brown l -t 2.30055555556 -s 23 -d 25 -S COLOR -c black l -t 2.30055555556 -s 30 -d 31 -S COLOR -c black l -t 2.30055555556 -s 24 -d 26 -S COLOR -c black l -t 2.30055555556 -s 25 -d 27 -S COLOR -c black l -t 2.30055555556 -s 31 -d 32 -S COLOR -c black l -t 2.30055555556 -s 26 -d 28 -S COLOR -c black l -t 2.30055555556 -s 32 -d 33 -S COLOR -c black l -t 2.30055555556 -s 28 -d 29 -S COLOR -c black n -t 2.30055555556 -s 6 -c black n -t 2.30055555556 -s 9 -c black n -t 2.30055555556 -s 12 -c black n -t 2.30055555556 -s 15 -c black n -t 2.30055555556 -s 18 -c black n -t 2.30055555556 -s 21 -c black n -t 2.30055555556 -s 47 -c grey n -t 2.30055555556 -s 48 -c grey n -t 2.30055555556 -s 49 -c grey n -t 2.30055555556 -s 50 -c grey n -t 2.30055555556 -s 51 -c grey n -t 2.30055555556 -s 56 -c black n -t 2.30055555556 -s 57 -c black n -t 2.30055555556 -s 58 -c black n -t 2.30055555556 -s 59 -c black l -t 2.30055555556 -s 5 -d 47 -c grey l -t 2.30055555556 -s 47 -d 48 -c grey l -t 2.30055555556 -s 48 -d 49 -c grey l -t 2.30055555556 -s 49 -d 50 -c grey l -t 2.30055555556 -s 50 -d 51 -c grey l -t 2.35777777778 -s 0 -d 1 -S COLOR -c blue l -t 2.35777777778 -s 0 -d 2 -S COLOR -c black l -t 2.35777777778 -s 1 -d 3 -S COLOR -c black l -t 2.35777777778 -s 3 -d 4 -S COLOR -c black l -t 2.35777777778 -s 4 -d 5 -S COLOR -c red l -t 2.35777777778 -s 5 -d 56 -S COLOR -c blue l -t 2.35777777778 -s 5 -d 6 -S COLOR -c blue l -t 2.35777777778 -s 5 -d 7 -S COLOR -c black l -t 2.35777777778 -s 5 -d 8 -S COLOR -c blue l -t 2.35777777778 -s 5 -d 47 -S COLOR -c red l -t 2.35777777778 -s 56 -d 57 -S COLOR -c brown l -t 2.35777777778 -s 6 -d 9 -S COLOR -c red l -t 2.35777777778 -s 7 -d 10 -S COLOR -c red l -t 2.35777777778 -s 8 -d 11 -S COLOR -c orange l -t 2.35777777778 -s 47 -d 48 -S COLOR -c black l -t 2.35777777778 -s 57 -d 58 -S COLOR -c blue l -t 2.35777777778 -s 9 -d 12 -S COLOR -c black l -t 2.35777777778 -s 10 -d 13 -S COLOR -c orange l -t 2.35777777778 -s 11 -d 14 -S COLOR -c orange l -t 2.35777777778 -s 48 -d 49 -S COLOR -c blue l -t 2.35777777778 -s 58 -d 59 -S COLOR -c black l -t 2.35777777778 -s 12 -d 15 -S COLOR -c black l -t 2.35777777778 -s 13 -d 16 -S COLOR -c black l -t 2.35777777778 -s 14 -d 34 -S COLOR -c black l -t 2.35777777778 -s 14 -d 17 -S COLOR -c black l -t 2.35777777778 -s 14 -d 60 -S COLOR -c black l -t 2.35777777778 -s 49 -d 50 -S COLOR -c blue l -t 2.35777777778 -s 15 -d 18 -S COLOR -c black l -t 2.35777777778 -s 16 -d 19 -S COLOR -c red l -t 2.35777777778 -s 17 -d 20 -S COLOR -c black l -t 2.35777777778 -s 60 -d 55 -S COLOR -c red l -t 2.35777777778 -s 18 -d 21 -S COLOR -c black l -t 2.35777777778 -s 19 -d 22 -S COLOR -c black l -t 2.35777777778 -s 20 -d 23 -S COLOR -c black l -t 2.35777777778 -s 22 -d 30 -S COLOR -c black l -t 2.35777777778 -s 22 -d 24 -S COLOR -c black l -t 2.35777777778 -s 23 -d 25 -S COLOR -c black l -t 2.35777777778 -s 30 -d 31 -S COLOR -c black l -t 2.35777777778 -s 24 -d 26 -S COLOR -c brown l -t 2.35777777778 -s 25 -d 27 -S COLOR -c black l -t 2.35777777778 -s 31 -d 32 -S COLOR -c brown l -t 2.35777777778 -s 26 -d 28 -S COLOR -c black l -t 2.35777777778 -s 32 -d 33 -S COLOR -c black l -t 2.35777777778 -s 28 -d 29 -S COLOR -c black n -t 2.35777777778 -s 47 -c black n -t 2.35777777778 -s 48 -c black n -t 2.35777777778 -s 49 -c black n -t 2.35777777778 -s 50 -c black n -t 2.35777777778 -s 60 -c black l -t 2.35777777778 -s 14 -d 55 -c grey n -t 2.41083333333 -s 0 -c grey n -t 2.41083333333 -s 1 -c grey n -t 2.41083333333 -s 2 -c grey n -t 2.41083333333 -s 3 -c grey n -t 2.41083333333 -s 4 -c grey n -t 2.41083333333 -s 5 -c grey n -t 2.41083333333 -s 6 -c grey n -t 2.41083333333 -s 7 -c grey n -t 2.41083333333 -s 8 -c grey n -t 2.41083333333 -s 9 -c grey n -t 2.41083333333 -s 10 -c grey n -t 2.41083333333 -s 11 -c grey n -t 2.41083333333 -s 12 -c grey n -t 2.41083333333 -s 13 -c grey n -t 2.41083333333 -s 14 -c grey n -t 2.41083333333 -s 15 -c grey n -t 2.41083333333 -s 16 -c grey n -t 2.41083333333 -s 17 -c grey n -t 2.41083333333 -s 18 -c grey n -t 2.41083333333 -s 19 -c grey n -t 2.41083333333 -s 20 -c grey n -t 2.41083333333 -s 21 -c grey n -t 2.41083333333 -s 22 -c grey n -t 2.41083333333 -s 23 -c grey n -t 2.41083333333 -s 24 -c grey n -t 2.41083333333 -s 25 -c grey n -t 2.41083333333 -s 26 -c grey n -t 2.41083333333 -s 27 -c grey n -t 2.41083333333 -s 28 -c grey n -t 2.41083333333 -s 29 -c grey n -t 2.41083333333 -s 30 -c grey n -t 2.41083333333 -s 31 -c grey n -t 2.41083333333 -s 32 -c grey n -t 2.41083333333 -s 33 -c grey n -t 2.41083333333 -s 34 -c grey n -t 2.41083333333 -s 47 -c grey n -t 2.41083333333 -s 48 -c grey n -t 2.41083333333 -s 49 -c grey n -t 2.41083333333 -s 50 -c grey n -t 2.41083333333 -s 55 -c grey n -t 2.41083333333 -s 56 -c grey n -t 2.41083333333 -s 57 -c grey n -t 2.41083333333 -s 58 -c grey n -t 2.41083333333 -s 59 -c grey n -t 2.41083333333 -s 60 -c grey n -t 2.41083333333 -s 61 -c black l -t 2.41083333333 -s 0 -d 1 -c grey l -t 2.41083333333 -s 0 -d 2 -c grey l -t 2.41083333333 -s 1 -d 3 -c grey l -t 2.41083333333 -s 3 -d 4 -c grey l -t 2.41083333333 -s 4 -d 5 -c grey l -t 2.41083333333 -s 5 -d 6 -c grey l -t 2.41083333333 -s 5 -d 7 -c grey l -t 2.41083333333 -s 5 -d 8 -c grey l -t 2.41083333333 -s 6 -d 9 -c grey l -t 2.41083333333 -s 7 -d 10 -c grey l -t 2.41083333333 -s 8 -d 11 -c grey l -t 2.41083333333 -s 9 -d 12 -c grey l -t 2.41083333333 -s 10 -d 13 -c grey l -t 2.41083333333 -s 11 -d 14 -c grey l -t 2.41083333333 -s 12 -d 15 -c grey l -t 2.41083333333 -s 13 -d 16 -c grey l -t 2.41083333333 -s 14 -d 17 -c grey l -t 2.41083333333 -s 15 -d 18 -c grey l -t 2.41083333333 -s 16 -d 19 -c grey l -t 2.41083333333 -s 17 -d 20 -c grey l -t 2.41083333333 -s 18 -d 21 -c grey l -t 2.41083333333 -s 19 -d 22 -c grey l -t 2.41083333333 -s 20 -d 23 -c grey l -t 2.41083333333 -s 22 -d 24 -c grey l -t 2.41083333333 -s 23 -d 25 -c grey l -t 2.41083333333 -s 24 -d 26 -c grey l -t 2.41083333333 -s 25 -d 27 -c grey l -t 2.41083333333 -s 26 -d 28 -c grey l -t 2.41083333333 -s 28 -d 29 -c grey l -t 2.41083333333 -s 22 -d 30 -c grey l -t 2.41083333333 -s 30 -d 31 -c grey l -t 2.41083333333 -s 31 -d 32 -c grey l -t 2.41083333333 -s 32 -d 33 -c grey l -t 2.41083333333 -s 14 -d 34 -c grey l -t 2.41083333333 -s 5 -d 47 -c grey l -t 2.41083333333 -s 47 -d 48 -c grey l -t 2.41083333333 -s 48 -d 49 -c grey l -t 2.41083333333 -s 49 -d 50 -c grey l -t 2.41083333333 -s 5 -d 56 -c grey l -t 2.41083333333 -s 56 -d 57 -c grey l -t 2.41083333333 -s 57 -d 58 -c grey l -t 2.41083333333 -s 58 -d 59 -c grey l -t 2.41083333333 -s 14 -d 60 -c grey l -t 2.41083333333 -s 60 -d 55 -c grey l -t 2.50138888889 -s 0 -d 1 -S COLOR -c black l -t 2.50138888889 -s 0 -d 2 -S COLOR -c black l -t 2.50138888889 -s 1 -d 3 -S COLOR -c brown l -t 2.50138888889 -s 3 -d 4 -S COLOR -c black l -t 2.50138888889 -s 4 -d 5 -S COLOR -c brown l -t 2.50138888889 -s 5 -d 47 -S COLOR -c red l -t 2.50138888889 -s 5 -d 7 -S COLOR -c black l -t 2.50138888889 -s 5 -d 8 -S COLOR -c brown l -t 2.50138888889 -s 47 -d 48 -S COLOR -c black l -t 2.50138888889 -s 7 -d 10 -S COLOR -c orange l -t 2.50138888889 -s 8 -d 11 -S COLOR -c blue l -t 2.50138888889 -s 48 -d 49 -S COLOR -c black l -t 2.50138888889 -s 10 -d 13 -S COLOR -c black l -t 2.50138888889 -s 11 -d 14 -S COLOR -c black l -t 2.50138888889 -s 49 -d 50 -S COLOR -c black l -t 2.50138888889 -s 13 -d 16 -S COLOR -c black l -t 2.50138888889 -s 14 -d 34 -S COLOR -c black l -t 2.50138888889 -s 14 -d 17 -S COLOR -c brown l -t 2.50138888889 -s 50 -d 51 -S COLOR -c black l -t 2.50138888889 -s 16 -d 19 -S COLOR -c red l -t 2.50138888889 -s 17 -d 20 -S COLOR -c blue l -t 2.50138888889 -s 19 -d 22 -S COLOR -c blue l -t 2.50138888889 -s 20 -d 23 -S COLOR -c brown l -t 2.50138888889 -s 22 -d 30 -S COLOR -c black l -t 2.50138888889 -s 23 -d 25 -S COLOR -c black l -t 2.50138888889 -s 30 -d 31 -S COLOR -c black l -t 2.50138888889 -s 25 -d 27 -S COLOR -c black l -t 2.50138888889 -s 31 -d 32 -S COLOR -c black l -t 2.50138888889 -s 32 -d 33 -S COLOR -c black n -t 2.50138888889 -s 0 -c black n -t 2.50138888889 -s 1 -c black n -t 2.50138888889 -s 2 -c black n -t 2.50138888889 -s 3 -c black n -t 2.50138888889 -s 4 -c black n -t 2.50138888889 -s 5 -c black n -t 2.50138888889 -s 7 -c black n -t 2.50138888889 -s 8 -c black n -t 2.50138888889 -s 10 -c black n -t 2.50138888889 -s 11 -c black n -t 2.50138888889 -s 13 -c black n -t 2.50138888889 -s 14 -c black n -t 2.50138888889 -s 16 -c black n -t 2.50138888889 -s 17 -c black n -t 2.50138888889 -s 19 -c black n -t 2.50138888889 -s 20 -c black n -t 2.50138888889 -s 22 -c black n -t 2.50138888889 -s 23 -c black n -t 2.50138888889 -s 25 -c black n -t 2.50138888889 -s 27 -c black n -t 2.50138888889 -s 30 -c black n -t 2.50138888889 -s 31 -c black n -t 2.50138888889 -s 32 -c black n -t 2.50138888889 -s 33 -c black n -t 2.50138888889 -s 34 -c black n -t 2.50138888889 -s 47 -c black n -t 2.50138888889 -s 48 -c black n -t 2.50138888889 -s 49 -c black n -t 2.50138888889 -s 50 -c black n -t 2.50138888889 -s 51 -c black n -t 2.50138888889 -s 61 -c grey l -t 2.59416666667 -s 0 -d 1 -S COLOR -c brown l -t 2.59416666667 -s 1 -d 3 -S COLOR -c black l -t 2.59416666667 -s 3 -d 4 -S COLOR -c black l -t 2.59416666667 -s 4 -d 5 -S COLOR -c blue l -t 2.59416666667 -s 5 -d 8 -S COLOR -c brown l -t 2.59416666667 -s 5 -d 47 -S COLOR -c red l -t 2.59416666667 -s 8 -d 11 -S COLOR -c black l -t 2.59416666667 -s 47 -d 48 -S COLOR -c brown l -t 2.59416666667 -s 11 -d 14 -S COLOR -c black l -t 2.59416666667 -s 48 -d 49 -S COLOR -c black l -t 2.59416666667 -s 14 -d 55 -S COLOR -c black l -t 2.59416666667 -s 14 -d 17 -S COLOR -c brown l -t 2.59416666667 -s 14 -d 34 -S COLOR -c black l -t 2.59416666667 -s 49 -d 50 -S COLOR -c black l -t 2.59416666667 -s 17 -d 20 -S COLOR -c black l -t 2.59416666667 -s 50 -d 51 -S COLOR -c black l -t 2.59416666667 -s 20 -d 23 -S COLOR -c blue l -t 2.59416666667 -s 23 -d 25 -S COLOR -c black l -t 2.59416666667 -s 25 -d 27 -S COLOR -c black n -t 2.59416666667 -s 2 -c grey n -t 2.59416666667 -s 7 -c grey n -t 2.59416666667 -s 10 -c grey n -t 2.59416666667 -s 13 -c grey n -t 2.59416666667 -s 16 -c grey n -t 2.59416666667 -s 19 -c grey n -t 2.59416666667 -s 22 -c grey n -t 2.59416666667 -s 30 -c grey n -t 2.59416666667 -s 31 -c grey n -t 2.59416666667 -s 32 -c grey n -t 2.59416666667 -s 33 -c grey n -t 2.59416666667 -s 55 -c black l -t 2.59416666667 -s 0 -d 2 -c grey l -t 2.59416666667 -s 5 -d 7 -c grey l -t 2.59416666667 -s 7 -d 10 -c grey l -t 2.59416666667 -s 10 -d 13 -c grey l -t 2.59416666667 -s 13 -d 16 -c grey l -t 2.59416666667 -s 16 -d 19 -c grey l -t 2.59416666667 -s 19 -d 22 -c grey l -t 2.59416666667 -s 22 -d 30 -c grey l -t 2.59416666667 -s 30 -d 31 -c grey l -t 2.59416666667 -s 31 -d 32 -c grey l -t 2.59416666667 -s 32 -d 33 -c grey n -t 2.69 -s 0 -c grey n -t 2.69 -s 1 -c grey n -t 2.69 -s 3 -c grey n -t 2.69 -s 4 -c grey n -t 2.69 -s 5 -c grey n -t 2.69 -s 8 -c grey n -t 2.69 -s 11 -c grey n -t 2.69 -s 14 -c grey n -t 2.69 -s 17 -c grey n -t 2.69 -s 20 -c grey n -t 2.69 -s 23 -c grey n -t 2.69 -s 25 -c grey n -t 2.69 -s 27 -c grey n -t 2.69 -s 34 -c grey n -t 2.69 -s 35 -c black n -t 2.69 -s 47 -c grey n -t 2.69 -s 48 -c grey n -t 2.69 -s 49 -c grey n -t 2.69 -s 50 -c grey n -t 2.69 -s 51 -c grey n -t 2.69 -s 55 -c grey l -t 2.69 -s 0 -d 1 -c grey l -t 2.69 -s 1 -d 3 -c grey l -t 2.69 -s 3 -d 4 -c grey l -t 2.69 -s 4 -d 5 -c grey l -t 2.69 -s 5 -d 8 -c grey l -t 2.69 -s 8 -d 11 -c grey l -t 2.69 -s 11 -d 14 -c grey l -t 2.69 -s 14 -d 17 -c grey l -t 2.69 -s 17 -d 20 -c grey l -t 2.69 -s 20 -d 23 -c grey l -t 2.69 -s 23 -d 25 -c grey l -t 2.69 -s 25 -d 27 -c grey l -t 2.69 -s 14 -d 34 -c grey l -t 2.69 -s 5 -d 47 -c grey l -t 2.69 -s 47 -d 48 -c grey l -t 2.69 -s 48 -d 49 -c grey l -t 2.69 -s 49 -d 50 -c grey l -t 2.69 -s 50 -d 51 -c grey l -t 2.69 -s 14 -d 55 -c grey l -t 2.91583333333 -s 0 -d 1 -S COLOR -c brown l -t 2.91583333333 -s 0 -d 2 -S COLOR -c black l -t 2.91583333333 -s 1 -d 3 -S COLOR -c black l -t 2.91583333333 -s 3 -d 4 -S COLOR -c brown l -t 2.91583333333 -s 4 -d 5 -S COLOR -c brown l -t 2.91583333333 -s 5 -d 6 -S COLOR -c black l -t 2.91583333333 -s 5 -d 7 -S COLOR -c red l -t 2.91583333333 -s 5 -d 8 -S COLOR -c brown l -t 2.91583333333 -s 5 -d 47 -S COLOR -c red l -t 2.91583333333 -s 6 -d 9 -S COLOR -c red l -t 2.91583333333 -s 7 -d 10 -S COLOR -c blue l -t 2.91583333333 -s 8 -d 11 -S COLOR -c brown l -t 2.91583333333 -s 47 -d 48 -S COLOR -c black l -t 2.91583333333 -s 9 -d 12 -S COLOR -c black l -t 2.91583333333 -s 10 -d 13 -S COLOR -c orange l -t 2.91583333333 -s 11 -d 14 -S COLOR -c brown l -t 2.91583333333 -s 48 -d 49 -S COLOR -c black l -t 2.91583333333 -s 12 -d 15 -S COLOR -c black l -t 2.91583333333 -s 13 -d 16 -S COLOR -c blue l -t 2.91583333333 -s 14 -d 55 -S COLOR -c black l -t 2.91583333333 -s 14 -d 17 -S COLOR -c black l -t 2.91583333333 -s 14 -d 34 -S COLOR -c black l -t 2.91583333333 -s 49 -d 50 -S COLOR -c black l -t 2.91583333333 -s 15 -d 18 -S COLOR -c black l -t 2.91583333333 -s 16 -d 19 -S COLOR -c red l -t 2.91583333333 -s 17 -d 20 -S COLOR -c blue l -t 2.91583333333 -s 50 -d 51 -S COLOR -c black l -t 2.91583333333 -s 18 -d 21 -S COLOR -c black l -t 2.91583333333 -s 19 -d 22 -S COLOR -c blue l -t 2.91583333333 -s 20 -d 23 -S COLOR -c black l -t 2.91583333333 -s 22 -d 30 -S COLOR -c black l -t 2.91583333333 -s 22 -d 24 -S COLOR -c brown l -t 2.91583333333 -s 23 -d 25 -S COLOR -c black l -t 2.91583333333 -s 30 -d 31 -S COLOR -c black l -t 2.91583333333 -s 24 -d 26 -S COLOR -c black l -t 2.91583333333 -s 25 -d 27 -S COLOR -c black l -t 2.91583333333 -s 31 -d 32 -S COLOR -c black l -t 2.91583333333 -s 26 -d 28 -S COLOR -c red l -t 2.91583333333 -s 32 -d 33 -S COLOR -c black n -t 2.91583333333 -s 0 -c black n -t 2.91583333333 -s 1 -c black n -t 2.91583333333 -s 2 -c black n -t 2.91583333333 -s 3 -c black n -t 2.91583333333 -s 4 -c black n -t 2.91583333333 -s 5 -c black n -t 2.91583333333 -s 6 -c black n -t 2.91583333333 -s 7 -c black n -t 2.91583333333 -s 8 -c black n -t 2.91583333333 -s 9 -c black n -t 2.91583333333 -s 10 -c black n -t 2.91583333333 -s 11 -c black n -t 2.91583333333 -s 12 -c black n -t 2.91583333333 -s 13 -c black n -t 2.91583333333 -s 14 -c black n -t 2.91583333333 -s 15 -c black n -t 2.91583333333 -s 16 -c black n -t 2.91583333333 -s 17 -c black n -t 2.91583333333 -s 18 -c black n -t 2.91583333333 -s 19 -c black n -t 2.91583333333 -s 20 -c black n -t 2.91583333333 -s 21 -c black n -t 2.91583333333 -s 22 -c black n -t 2.91583333333 -s 23 -c black n -t 2.91583333333 -s 24 -c black n -t 2.91583333333 -s 25 -c black n -t 2.91583333333 -s 26 -c black n -t 2.91583333333 -s 27 -c black n -t 2.91583333333 -s 28 -c black n -t 2.91583333333 -s 30 -c black n -t 2.91583333333 -s 31 -c black n -t 2.91583333333 -s 32 -c black n -t 2.91583333333 -s 33 -c black n -t 2.91583333333 -s 34 -c black n -t 2.91583333333 -s 35 -c grey n -t 2.91583333333 -s 47 -c black n -t 2.91583333333 -s 48 -c black n -t 2.91583333333 -s 49 -c black n -t 2.91583333333 -s 50 -c black n -t 2.91583333333 -s 51 -c black n -t 2.91583333333 -s 55 -c black l -t 2.95333333333 -s 0 -d 1 -S COLOR -c black l -t 2.95333333333 -s 0 -d 2 -S COLOR -c black l -t 2.95333333333 -s 1 -d 3 -S COLOR -c black l -t 2.95333333333 -s 3 -d 4 -S COLOR -c black l -t 2.95333333333 -s 4 -d 5 -S COLOR -c blue l -t 2.95333333333 -s 5 -d 6 -S COLOR -c black l -t 2.95333333333 -s 5 -d 7 -S COLOR -c black l -t 2.95333333333 -s 5 -d 8 -S COLOR -c black l -t 2.95333333333 -s 5 -d 47 -S COLOR -c red l -t 2.95333333333 -s 6 -d 9 -S COLOR -c red l -t 2.95333333333 -s 7 -d 10 -S COLOR -c orange l -t 2.95333333333 -s 8 -d 11 -S COLOR -c blue l -t 2.95333333333 -s 47 -d 48 -S COLOR -c black l -t 2.95333333333 -s 9 -d 12 -S COLOR -c black l -t 2.95333333333 -s 10 -d 13 -S COLOR -c black l -t 2.95333333333 -s 11 -d 14 -S COLOR -c blue l -t 2.95333333333 -s 48 -d 49 -S COLOR -c black l -t 2.95333333333 -s 12 -d 15 -S COLOR -c blue l -t 2.95333333333 -s 13 -d 16 -S COLOR -c black l -t 2.95333333333 -s 14 -d 55 -S COLOR -c black l -t 2.95333333333 -s 14 -d 17 -S COLOR -c black l -t 2.95333333333 -s 14 -d 34 -S COLOR -c black l -t 2.95333333333 -s 49 -d 50 -S COLOR -c black l -t 2.95333333333 -s 15 -d 18 -S COLOR -c black l -t 2.95333333333 -s 16 -d 19 -S COLOR -c orange l -t 2.95333333333 -s 17 -d 20 -S COLOR -c orange l -t 2.95333333333 -s 50 -d 51 -S COLOR -c black l -t 2.95333333333 -s 18 -d 21 -S COLOR -c black l -t 2.95333333333 -s 19 -d 22 -S COLOR -c black l -t 2.95333333333 -s 20 -d 23 -S COLOR -c black l -t 2.95333333333 -s 22 -d 30 -S COLOR -c black l -t 2.95333333333 -s 23 -d 25 -S COLOR -c blue l -t 2.95333333333 -s 30 -d 31 -S COLOR -c black l -t 2.95333333333 -s 25 -d 27 -S COLOR -c black l -t 2.95333333333 -s 31 -d 32 -S COLOR -c blue l -t 2.95333333333 -s 32 -d 33 -S COLOR -c black n -t 2.95333333333 -s 24 -c grey n -t 2.95333333333 -s 26 -c grey n -t 2.95333333333 -s 28 -c grey l -t 2.95333333333 -s 22 -d 24 -c grey l -t 2.95333333333 -s 24 -d 26 -c grey l -t 2.95333333333 -s 26 -d 28 -c grey l -t 2.9925 -s 0 -d 1 -S COLOR -c black l -t 2.9925 -s 0 -d 2 -S COLOR -c black l -t 2.9925 -s 1 -d 3 -S COLOR -c black l -t 2.9925 -s 3 -d 4 -S COLOR -c black l -t 2.9925 -s 4 -d 5 -S COLOR -c blue l -t 2.9925 -s 5 -d 47 -S COLOR -c red l -t 2.9925 -s 5 -d 7 -S COLOR -c blue l -t 2.9925 -s 5 -d 8 -S COLOR -c brown l -t 2.9925 -s 47 -d 48 -S COLOR -c black l -t 2.9925 -s 7 -d 10 -S COLOR -c orange l -t 2.9925 -s 8 -d 11 -S COLOR -c blue l -t 2.9925 -s 48 -d 49 -S COLOR -c black l -t 2.9925 -s 10 -d 13 -S COLOR -c black l -t 2.9925 -s 11 -d 14 -S COLOR -c brown l -t 2.9925 -s 49 -d 50 -S COLOR -c blue l -t 2.9925 -s 13 -d 16 -S COLOR -c blue l -t 2.9925 -s 14 -d 55 -S COLOR -c black l -t 2.9925 -s 14 -d 17 -S COLOR -c black l -t 2.9925 -s 14 -d 34 -S COLOR -c black l -t 2.9925 -s 50 -d 51 -S COLOR -c black l -t 2.9925 -s 16 -d 19 -S COLOR -c red l -t 2.9925 -s 17 -d 20 -S COLOR -c black l -t 2.9925 -s 19 -d 22 -S COLOR -c brown l -t 2.9925 -s 20 -d 23 -S COLOR -c black l -t 2.9925 -s 22 -d 30 -S COLOR -c black l -t 2.9925 -s 23 -d 25 -S COLOR -c black l -t 2.9925 -s 30 -d 31 -S COLOR -c black l -t 2.9925 -s 25 -d 27 -S COLOR -c black l -t 2.9925 -s 31 -d 32 -S COLOR -c black l -t 2.9925 -s 32 -d 33 -S COLOR -c black n -t 2.9925 -s 6 -c grey n -t 2.9925 -s 9 -c grey n -t 2.9925 -s 12 -c grey n -t 2.9925 -s 15 -c grey n -t 2.9925 -s 18 -c grey n -t 2.9925 -s 21 -c grey l -t 2.9925 -s 5 -d 6 -c grey l -t 2.9925 -s 6 -d 9 -c grey l -t 2.9925 -s 9 -d 12 -c grey l -t 2.9925 -s 12 -d 15 -c grey l -t 2.9925 -s 15 -d 18 -c grey l -t 2.9925 -s 18 -d 21 -c grey l -t 3.04555555556 -s 0 -d 1 -S COLOR -c brown l -t 3.04555555556 -s 1 -d 3 -S COLOR -c black l -t 3.04555555556 -s 3 -d 4 -S COLOR -c black l -t 3.04555555556 -s 4 -d 5 -S COLOR -c brown l -t 3.04555555556 -s 5 -d 47 -S COLOR -c red l -t 3.04555555556 -s 5 -d 8 -S COLOR -c brown l -t 3.04555555556 -s 5 -d 6 -S COLOR -c blue l -t 3.04555555556 -s 47 -d 48 -S COLOR -c black l -t 3.04555555556 -s 8 -d 11 -S COLOR -c brown l -t 3.04555555556 -s 6 -d 9 -S COLOR -c red l -t 3.04555555556 -s 48 -d 49 -S COLOR -c black l -t 3.04555555556 -s 11 -d 14 -S COLOR -c blue l -t 3.04555555556 -s 9 -d 12 -S COLOR -c black l -t 3.04555555556 -s 49 -d 50 -S COLOR -c black l -t 3.04555555556 -s 14 -d 17 -S COLOR -c black l -t 3.04555555556 -s 14 -d 34 -S COLOR -c black l -t 3.04555555556 -s 12 -d 15 -S COLOR -c black l -t 3.04555555556 -s 50 -d 51 -S COLOR -c black l -t 3.04555555556 -s 17 -d 20 -S COLOR -c brown l -t 3.04555555556 -s 15 -d 18 -S COLOR -c black l -t 3.04555555556 -s 20 -d 23 -S COLOR -c black l -t 3.04555555556 -s 18 -d 21 -S COLOR -c black l -t 3.04555555556 -s 23 -d 25 -S COLOR -c black l -t 3.04555555556 -s 25 -d 27 -S COLOR -c black n -t 3.04555555556 -s 2 -c grey n -t 3.04555555556 -s 6 -c black n -t 3.04555555556 -s 7 -c grey n -t 3.04555555556 -s 9 -c black n -t 3.04555555556 -s 10 -c grey n -t 3.04555555556 -s 12 -c black n -t 3.04555555556 -s 13 -c grey n -t 3.04555555556 -s 15 -c black n -t 3.04555555556 -s 16 -c grey n -t 3.04555555556 -s 18 -c black n -t 3.04555555556 -s 19 -c grey n -t 3.04555555556 -s 21 -c black n -t 3.04555555556 -s 22 -c grey n -t 3.04555555556 -s 30 -c grey n -t 3.04555555556 -s 31 -c grey n -t 3.04555555556 -s 32 -c grey n -t 3.04555555556 -s 33 -c grey n -t 3.04555555556 -s 55 -c grey l -t 3.04555555556 -s 0 -d 2 -c grey l -t 3.04555555556 -s 5 -d 7 -c grey l -t 3.04555555556 -s 7 -d 10 -c grey l -t 3.04555555556 -s 10 -d 13 -c grey l -t 3.04555555556 -s 13 -d 16 -c grey l -t 3.04555555556 -s 16 -d 19 -c grey l -t 3.04555555556 -s 19 -d 22 -c grey l -t 3.04555555556 -s 22 -d 30 -c grey l -t 3.04555555556 -s 30 -d 31 -c grey l -t 3.04555555556 -s 31 -d 32 -c grey l -t 3.04555555556 -s 32 -d 33 -c grey l -t 3.04555555556 -s 14 -d 55 -c grey l -t 3.09888888889 -s 0 -d 1 -S COLOR -c blue l -t 3.09888888889 -s 1 -d 3 -S COLOR -c black l -t 3.09888888889 -s 3 -d 4 -S COLOR -c black l -t 3.09888888889 -s 4 -d 5 -S COLOR -c black l -t 3.09888888889 -s 5 -d 47 -S COLOR -c red l -t 3.09888888889 -s 5 -d 8 -S COLOR -c blue l -t 3.09888888889 -s 5 -d 6 -S COLOR -c brown l -t 3.09888888889 -s 47 -d 48 -S COLOR -c black l -t 3.09888888889 -s 8 -d 11 -S COLOR -c brown l -t 3.09888888889 -s 6 -d 9 -S COLOR -c red l -t 3.09888888889 -s 48 -d 49 -S COLOR -c black l -t 3.09888888889 -s 11 -d 14 -S COLOR -c blue l -t 3.09888888889 -s 9 -d 12 -S COLOR -c black l -t 3.09888888889 -s 49 -d 50 -S COLOR -c brown l -t 3.09888888889 -s 14 -d 34 -S COLOR -c black l -t 3.09888888889 -s 14 -d 17 -S COLOR -c black l -t 3.09888888889 -s 14 -d 60 -S COLOR -c black l -t 3.09888888889 -s 12 -d 15 -S COLOR -c black l -t 3.09888888889 -s 17 -d 20 -S COLOR -c brown l -t 3.09888888889 -s 60 -d 55 -S COLOR -c red l -t 3.09888888889 -s 15 -d 18 -S COLOR -c black l -t 3.09888888889 -s 20 -d 23 -S COLOR -c blue l -t 3.09888888889 -s 18 -d 21 -S COLOR -c black l -t 3.09888888889 -s 23 -d 25 -S COLOR -c brown l -t 3.09888888889 -s 25 -d 27 -S COLOR -c black n -t 3.09888888889 -s 51 -c grey n -t 3.09888888889 -s 55 -c black n -t 3.09888888889 -s 60 -c black l -t 3.09888888889 -s 50 -d 51 -c grey l -t 3.175 -s 0 -d 1 -S COLOR -c black l -t 3.175 -s 0 -d 2 -S COLOR -c black l -t 3.175 -s 1 -d 3 -S COLOR -c black l -t 3.175 -s 3 -d 4 -S COLOR -c brown l -t 3.175 -s 4 -d 5 -S COLOR -c blue l -t 3.175 -s 5 -d 6 -S COLOR -c brown l -t 3.175 -s 5 -d 7 -S COLOR -c black l -t 3.175 -s 5 -d 8 -S COLOR -c blue l -t 3.175 -s 5 -d 47 -S COLOR -c red l -t 3.175 -s 6 -d 9 -S COLOR -c red l -t 3.175 -s 7 -d 10 -S COLOR -c blue l -t 3.175 -s 8 -d 11 -S COLOR -c brown l -t 3.175 -s 47 -d 48 -S COLOR -c black l -t 3.175 -s 9 -d 12 -S COLOR -c black l -t 3.175 -s 10 -d 13 -S COLOR -c black l -t 3.175 -s 11 -d 14 -S COLOR -c brown l -t 3.175 -s 48 -d 49 -S COLOR -c black l -t 3.175 -s 12 -d 15 -S COLOR -c black l -t 3.175 -s 13 -d 16 -S COLOR -c black l -t 3.175 -s 14 -d 60 -S COLOR -c black l -t 3.175 -s 14 -d 17 -S COLOR -c black l -t 3.175 -s 14 -d 34 -S COLOR -c black l -t 3.175 -s 49 -d 50 -S COLOR -c blue l -t 3.175 -s 15 -d 18 -S COLOR -c black l -t 3.175 -s 16 -d 19 -S COLOR -c blue l -t 3.175 -s 60 -d 55 -S COLOR -c red l -t 3.175 -s 17 -d 20 -S COLOR -c blue l -t 3.175 -s 18 -d 21 -S COLOR -c black l -t 3.175 -s 19 -d 22 -S COLOR -c black l -t 3.175 -s 20 -d 23 -S COLOR -c brown l -t 3.175 -s 22 -d 30 -S COLOR -c black l -t 3.175 -s 23 -d 25 -S COLOR -c black l -t 3.175 -s 30 -d 31 -S COLOR -c black l -t 3.175 -s 25 -d 27 -S COLOR -c black l -t 3.175 -s 31 -d 32 -S COLOR -c brown l -t 3.175 -s 32 -d 33 -S COLOR -c black n -t 3.175 -s 2 -c black n -t 3.175 -s 7 -c black n -t 3.175 -s 10 -c black n -t 3.175 -s 13 -c black n -t 3.175 -s 16 -c black n -t 3.175 -s 19 -c black n -t 3.175 -s 22 -c black n -t 3.175 -s 30 -c black n -t 3.175 -s 31 -c black n -t 3.175 -s 32 -c black n -t 3.175 -s 33 -c black l -t 3.25555555556 -s 0 -d 1 -S COLOR -c black l -t 3.25555555556 -s 0 -d 2 -S COLOR -c black l -t 3.25555555556 -s 1 -d 3 -S COLOR -c black l -t 3.25555555556 -s 3 -d 4 -S COLOR -c blue l -t 3.25555555556 -s 4 -d 5 -S COLOR -c orange l -t 3.25555555556 -s 5 -d 47 -S COLOR -c red l -t 3.25555555556 -s 5 -d 7 -S COLOR -c brown l -t 3.25555555556 -s 5 -d 8 -S COLOR -c blue l -t 3.25555555556 -s 5 -d 56 -S COLOR -c brown l -t 3.25555555556 -s 47 -d 48 -S COLOR -c black l -t 3.25555555556 -s 7 -d 10 -S COLOR -c blue l -t 3.25555555556 -s 8 -d 11 -S COLOR -c brown l -t 3.25555555556 -s 56 -d 57 -S COLOR -c blue l -t 3.25555555556 -s 48 -d 49 -S COLOR -c black l -t 3.25555555556 -s 10 -d 13 -S COLOR -c black l -t 3.25555555556 -s 11 -d 14 -S COLOR -c brown l -t 3.25555555556 -s 57 -d 58 -S COLOR -c blue l -t 3.25555555556 -s 49 -d 50 -S COLOR -c brown l -t 3.25555555556 -s 13 -d 16 -S COLOR -c black l -t 3.25555555556 -s 14 -d 60 -S COLOR -c black l -t 3.25555555556 -s 14 -d 17 -S COLOR -c black l -t 3.25555555556 -s 14 -d 34 -S COLOR -c black l -t 3.25555555556 -s 58 -d 59 -S COLOR -c black l -t 3.25555555556 -s 50 -d 51 -S COLOR -c black l -t 3.25555555556 -s 16 -d 19 -S COLOR -c orange l -t 3.25555555556 -s 60 -d 55 -S COLOR -c red l -t 3.25555555556 -s 17 -d 20 -S COLOR -c blue l -t 3.25555555556 -s 19 -d 22 -S COLOR -c black l -t 3.25555555556 -s 20 -d 23 -S COLOR -c brown l -t 3.25555555556 -s 22 -d 30 -S COLOR -c black l -t 3.25555555556 -s 23 -d 25 -S COLOR -c black l -t 3.25555555556 -s 30 -d 31 -S COLOR -c brown l -t 3.25555555556 -s 25 -d 27 -S COLOR -c black l -t 3.25555555556 -s 31 -d 32 -S COLOR -c black l -t 3.25555555556 -s 32 -d 33 -S COLOR -c black n -t 3.25555555556 -s 6 -c grey n -t 3.25555555556 -s 9 -c grey n -t 3.25555555556 -s 12 -c grey n -t 3.25555555556 -s 15 -c grey n -t 3.25555555556 -s 18 -c grey n -t 3.25555555556 -s 21 -c grey n -t 3.25555555556 -s 51 -c black n -t 3.25555555556 -s 56 -c black n -t 3.25555555556 -s 57 -c black n -t 3.25555555556 -s 58 -c black n -t 3.25555555556 -s 59 -c black l -t 3.25555555556 -s 5 -d 6 -c grey l -t 3.25555555556 -s 6 -d 9 -c grey l -t 3.25555555556 -s 9 -d 12 -c grey l -t 3.25555555556 -s 12 -d 15 -c grey l -t 3.25555555556 -s 15 -d 18 -c grey l -t 3.25555555556 -s 18 -d 21 -c grey l -t 3.30555555556 -s 0 -d 1 -S COLOR -c blue l -t 3.30555555556 -s 1 -d 3 -S COLOR -c black l -t 3.30555555556 -s 3 -d 4 -S COLOR -c blue l -t 3.30555555556 -s 4 -d 5 -S COLOR -c red l -t 3.30555555556 -s 5 -d 56 -S COLOR -c blue l -t 3.30555555556 -s 5 -d 6 -S COLOR -c black l -t 3.30555555556 -s 5 -d 7 -S COLOR -c brown l -t 3.30555555556 -s 5 -d 8 -S COLOR -c brown l -t 3.30555555556 -s 5 -d 47 -S COLOR -c red l -t 3.30555555556 -s 56 -d 57 -S COLOR -c brown l -t 3.30555555556 -s 6 -d 9 -S COLOR -c red l -t 3.30555555556 -s 7 -d 10 -S COLOR -c blue l -t 3.30555555556 -s 8 -d 11 -S COLOR -c orange l -t 3.30555555556 -s 47 -d 48 -S COLOR -c brown l -t 3.30555555556 -s 57 -d 58 -S COLOR -c blue l -t 3.30555555556 -s 9 -d 12 -S COLOR -c blue l -t 3.30555555556 -s 10 -d 13 -S COLOR -c blue l -t 3.30555555556 -s 11 -d 14 -S COLOR -c black l -t 3.30555555556 -s 48 -d 49 -S COLOR -c black l -t 3.30555555556 -s 58 -d 59 -S COLOR -c black l -t 3.30555555556 -s 12 -d 15 -S COLOR -c black l -t 3.30555555556 -s 13 -d 16 -S COLOR -c black l -t 3.30555555556 -s 14 -d 34 -S COLOR -c black l -t 3.30555555556 -s 14 -d 17 -S COLOR -c black l -t 3.30555555556 -s 14 -d 55 -S COLOR -c black l -t 3.30555555556 -s 49 -d 50 -S COLOR -c black l -t 3.30555555556 -s 15 -d 18 -S COLOR -c black l -t 3.30555555556 -s 16 -d 19 -S COLOR -c orange l -t 3.30555555556 -s 17 -d 20 -S COLOR -c brown l -t 3.30555555556 -s 18 -d 21 -S COLOR -c black l -t 3.30555555556 -s 19 -d 22 -S COLOR -c blue l -t 3.30555555556 -s 20 -d 23 -S COLOR -c blue l -t 3.30555555556 -s 22 -d 30 -S COLOR -c black l -t 3.30555555556 -s 23 -d 25 -S COLOR -c brown l -t 3.30555555556 -s 30 -d 31 -S COLOR -c black l -t 3.30555555556 -s 25 -d 27 -S COLOR -c black l -t 3.30555555556 -s 31 -d 32 -S COLOR -c red l -t 3.30555555556 -s 32 -d 33 -S COLOR -c black n -t 3.30555555556 -s 2 -c grey n -t 3.30555555556 -s 6 -c black n -t 3.30555555556 -s 9 -c black n -t 3.30555555556 -s 12 -c black n -t 3.30555555556 -s 15 -c black n -t 3.30555555556 -s 18 -c black n -t 3.30555555556 -s 21 -c black n -t 3.30555555556 -s 51 -c grey n -t 3.30555555556 -s 60 -c grey l -t 3.30555555556 -s 0 -d 2 -c grey l -t 3.30555555556 -s 50 -d 51 -c grey l -t 3.30555555556 -s 14 -d 60 -c grey l -t 3.30555555556 -s 60 -d 55 -c grey l -t 3.38555555556 -s 0 -d 1 -S COLOR -c blue l -t 3.38555555556 -s 0 -d 2 -S COLOR -c black l -t 3.38555555556 -s 1 -d 3 -S COLOR -c black l -t 3.38555555556 -s 3 -d 4 -S COLOR -c black l -t 3.38555555556 -s 4 -d 5 -S COLOR -c brown l -t 3.38555555556 -s 5 -d 47 -S COLOR -c red l -t 3.38555555556 -s 5 -d 7 -S COLOR -c black l -t 3.38555555556 -s 5 -d 8 -S COLOR -c blue l -t 3.38555555556 -s 5 -d 56 -S COLOR -c black l -t 3.38555555556 -s 47 -d 48 -S COLOR -c blue l -t 3.38555555556 -s 7 -d 10 -S COLOR -c black l -t 3.38555555556 -s 8 -d 11 -S COLOR -c brown l -t 3.38555555556 -s 56 -d 57 -S COLOR -c orange l -t 3.38555555556 -s 48 -d 49 -S COLOR -c black l -t 3.38555555556 -s 10 -d 13 -S COLOR -c black l -t 3.38555555556 -s 11 -d 14 -S COLOR -c orange l -t 3.38555555556 -s 57 -d 58 -S COLOR -c blue l -t 3.38555555556 -s 49 -d 50 -S COLOR -c black l -t 3.38555555556 -s 13 -d 16 -S COLOR -c black l -t 3.38555555556 -s 14 -d 55 -S COLOR -c black l -t 3.38555555556 -s 14 -d 17 -S COLOR -c blue l -t 3.38555555556 -s 14 -d 34 -S COLOR -c black l -t 3.38555555556 -s 58 -d 59 -S COLOR -c black l -t 3.38555555556 -s 50 -d 51 -S COLOR -c black l -t 3.38555555556 -s 16 -d 19 -S COLOR -c orange l -t 3.38555555556 -s 17 -d 20 -S COLOR -c black l -t 3.38555555556 -s 19 -d 22 -S COLOR -c blue l -t 3.38555555556 -s 20 -d 23 -S COLOR -c brown l -t 3.38555555556 -s 22 -d 30 -S COLOR -c black l -t 3.38555555556 -s 23 -d 25 -S COLOR -c black l -t 3.38555555556 -s 30 -d 31 -S COLOR -c black l -t 3.38555555556 -s 25 -d 27 -S COLOR -c black l -t 3.38555555556 -s 31 -d 32 -S COLOR -c black l -t 3.38555555556 -s 32 -d 33 -S COLOR -c black n -t 3.38555555556 -s 2 -c black n -t 3.38555555556 -s 6 -c grey n -t 3.38555555556 -s 9 -c grey n -t 3.38555555556 -s 12 -c grey n -t 3.38555555556 -s 15 -c grey n -t 3.38555555556 -s 18 -c grey n -t 3.38555555556 -s 21 -c grey n -t 3.38555555556 -s 51 -c black l -t 3.38555555556 -s 5 -d 6 -c grey l -t 3.38555555556 -s 6 -d 9 -c grey l -t 3.38555555556 -s 9 -d 12 -c grey l -t 3.38555555556 -s 12 -d 15 -c grey l -t 3.38555555556 -s 15 -d 18 -c grey l -t 3.38555555556 -s 18 -d 21 -c grey l -t 3.43861111111 -s 0 -d 1 -S COLOR -c black l -t 3.43861111111 -s 0 -d 2 -S COLOR -c black l -t 3.43861111111 -s 1 -d 3 -S COLOR -c black l -t 3.43861111111 -s 3 -d 4 -S COLOR -c black l -t 3.43861111111 -s 4 -d 5 -S COLOR -c brown l -t 3.43861111111 -s 5 -d 47 -S COLOR -c red l -t 3.43861111111 -s 5 -d 62 -S COLOR -c black l -t 3.43861111111 -s 5 -d 7 -S COLOR -c black l -t 3.43861111111 -s 5 -d 8 -S COLOR -c blue l -t 3.43861111111 -s 5 -d 6 -S COLOR -c black l -t 3.43861111111 -s 5 -d 56 -S COLOR -c brown l -t 3.43861111111 -s 47 -d 48 -S COLOR -c black l -t 3.43861111111 -s 62 -d 63 -S COLOR -c blue l -t 3.43861111111 -s 7 -d 10 -S COLOR -c brown l -t 3.43861111111 -s 8 -d 11 -S COLOR -c brown l -t 3.43861111111 -s 6 -d 9 -S COLOR -c red l -t 3.43861111111 -s 56 -d 57 -S COLOR -c brown l -t 3.43861111111 -s 48 -d 49 -S COLOR -c black l -t 3.43861111111 -s 63 -d 64 -S COLOR -c black l -t 3.43861111111 -s 10 -d 13 -S COLOR -c black l -t 3.43861111111 -s 11 -d 14 -S COLOR -c black l -t 3.43861111111 -s 9 -d 12 -S COLOR -c brown l -t 3.43861111111 -s 57 -d 58 -S COLOR -c blue l -t 3.43861111111 -s 49 -d 50 -S COLOR -c black l -t 3.43861111111 -s 64 -d 65 -S COLOR -c brown l -t 3.43861111111 -s 13 -d 16 -S COLOR -c blue l -t 3.43861111111 -s 14 -d 34 -S COLOR -c black l -t 3.43861111111 -s 14 -d 17 -S COLOR -c black l -t 3.43861111111 -s 14 -d 55 -S COLOR -c black l -t 3.43861111111 -s 12 -d 15 -S COLOR -c black l -t 3.43861111111 -s 58 -d 59 -S COLOR -c black l -t 3.43861111111 -s 50 -d 51 -S COLOR -c black l -t 3.43861111111 -s 65 -d 66 -S COLOR -c blue l -t 3.43861111111 -s 16 -d 19 -S COLOR -c orange l -t 3.43861111111 -s 17 -d 20 -S COLOR -c black l -t 3.43861111111 -s 15 -d 18 -S COLOR -c blue l -t 3.43861111111 -s 66 -d 67 -S COLOR -c black l -t 3.43861111111 -s 19 -d 22 -S COLOR -c black l -t 3.43861111111 -s 20 -d 23 -S COLOR -c blue l -t 3.43861111111 -s 18 -d 21 -S COLOR -c black l -t 3.43861111111 -s 22 -d 30 -S COLOR -c black l -t 3.43861111111 -s 23 -d 25 -S COLOR -c black l -t 3.43861111111 -s 30 -d 31 -S COLOR -c black l -t 3.43861111111 -s 25 -d 27 -S COLOR -c black l -t 3.43861111111 -s 31 -d 32 -S COLOR -c brown l -t 3.43861111111 -s 32 -d 33 -S COLOR -c black n -t 3.43861111111 -s 6 -c black n -t 3.43861111111 -s 9 -c black n -t 3.43861111111 -s 12 -c black n -t 3.43861111111 -s 15 -c black n -t 3.43861111111 -s 18 -c black n -t 3.43861111111 -s 21 -c black n -t 3.43861111111 -s 62 -c black n -t 3.43861111111 -s 63 -c black n -t 3.43861111111 -s 64 -c black n -t 3.43861111111 -s 65 -c black n -t 3.43861111111 -s 66 -c black n -t 3.43861111111 -s 67 -c black l -t 3.49194444444 -s 0 -d 1 -S COLOR -c blue l -t 3.49194444444 -s 0 -d 2 -S COLOR -c black l -t 3.49194444444 -s 1 -d 3 -S COLOR -c black l -t 3.49194444444 -s 3 -d 4 -S COLOR -c black l -t 3.49194444444 -s 4 -d 5 -S COLOR -c blue l -t 3.49194444444 -s 5 -d 47 -S COLOR -c red l -t 3.49194444444 -s 5 -d 7 -S COLOR -c black l -t 3.49194444444 -s 5 -d 8 -S COLOR -c blue l -t 3.49194444444 -s 5 -d 56 -S COLOR -c blue l -t 3.49194444444 -s 47 -d 48 -S COLOR -c black l -t 3.49194444444 -s 7 -d 10 -S COLOR -c orange l -t 3.49194444444 -s 8 -d 11 -S COLOR -c red l -t 3.49194444444 -s 56 -d 57 -S COLOR -c brown l -t 3.49194444444 -s 48 -d 49 -S COLOR -c black l -t 3.49194444444 -s 10 -d 13 -S COLOR -c brown l -t 3.49194444444 -s 11 -d 14 -S COLOR -c black l -t 3.49194444444 -s 57 -d 58 -S COLOR -c blue l -t 3.49194444444 -s 49 -d 50 -S COLOR -c black l -t 3.49194444444 -s 13 -d 16 -S COLOR -c brown l -t 3.49194444444 -s 14 -d 55 -S COLOR -c black l -t 3.49194444444 -s 14 -d 17 -S COLOR -c black l -t 3.49194444444 -s 14 -d 34 -S COLOR -c black l -t 3.49194444444 -s 58 -d 59 -S COLOR -c black l -t 3.49194444444 -s 16 -d 19 -S COLOR -c orange l -t 3.49194444444 -s 17 -d 20 -S COLOR -c brown l -t 3.49194444444 -s 19 -d 22 -S COLOR -c blue l -t 3.49194444444 -s 20 -d 23 -S COLOR -c black l -t 3.49194444444 -s 22 -d 30 -S COLOR -c black l -t 3.49194444444 -s 23 -d 25 -S COLOR -c blue l -t 3.49194444444 -s 30 -d 31 -S COLOR -c black l -t 3.49194444444 -s 25 -d 27 -S COLOR -c black l -t 3.49194444444 -s 31 -d 32 -S COLOR -c brown l -t 3.49194444444 -s 32 -d 33 -S COLOR -c black n -t 3.49194444444 -s 6 -c grey n -t 3.49194444444 -s 9 -c grey n -t 3.49194444444 -s 12 -c grey n -t 3.49194444444 -s 15 -c grey n -t 3.49194444444 -s 18 -c grey n -t 3.49194444444 -s 21 -c grey n -t 3.49194444444 -s 51 -c grey n -t 3.49194444444 -s 62 -c grey n -t 3.49194444444 -s 63 -c grey n -t 3.49194444444 -s 64 -c grey n -t 3.49194444444 -s 65 -c grey n -t 3.49194444444 -s 66 -c grey n -t 3.49194444444 -s 67 -c grey l -t 3.49194444444 -s 5 -d 6 -c grey l -t 3.49194444444 -s 6 -d 9 -c grey l -t 3.49194444444 -s 9 -d 12 -c grey l -t 3.49194444444 -s 12 -d 15 -c grey l -t 3.49194444444 -s 15 -d 18 -c grey l -t 3.49194444444 -s 18 -d 21 -c grey l -t 3.49194444444 -s 50 -d 51 -c grey l -t 3.49194444444 -s 5 -d 62 -c grey l -t 3.49194444444 -s 62 -d 63 -c grey l -t 3.49194444444 -s 63 -d 64 -c grey l -t 3.49194444444 -s 64 -d 65 -c grey l -t 3.49194444444 -s 65 -d 66 -c grey l -t 3.49194444444 -s 66 -d 67 -c grey l -t 3.58722222222 -s 68 -d 60 -S COLOR -c black l -t 3.58722222222 -s 60 -d 55 -S COLOR -c red n -t 3.58722222222 -s 0 -c grey n -t 3.58722222222 -s 1 -c grey n -t 3.58722222222 -s 2 -c grey n -t 3.58722222222 -s 3 -c grey n -t 3.58722222222 -s 4 -c grey n -t 3.58722222222 -s 5 -c grey n -t 3.58722222222 -s 7 -c grey n -t 3.58722222222 -s 8 -c grey n -t 3.58722222222 -s 10 -c grey n -t 3.58722222222 -s 11 -c grey n -t 3.58722222222 -s 13 -c grey n -t 3.58722222222 -s 14 -c grey n -t 3.58722222222 -s 16 -c grey n -t 3.58722222222 -s 17 -c grey n -t 3.58722222222 -s 19 -c grey n -t 3.58722222222 -s 20 -c grey n -t 3.58722222222 -s 22 -c grey n -t 3.58722222222 -s 23 -c grey n -t 3.58722222222 -s 25 -c grey n -t 3.58722222222 -s 27 -c grey n -t 3.58722222222 -s 30 -c grey n -t 3.58722222222 -s 31 -c grey n -t 3.58722222222 -s 32 -c grey n -t 3.58722222222 -s 33 -c grey n -t 3.58722222222 -s 34 -c grey n -t 3.58722222222 -s 47 -c grey n -t 3.58722222222 -s 48 -c grey n -t 3.58722222222 -s 49 -c grey n -t 3.58722222222 -s 50 -c grey n -t 3.58722222222 -s 56 -c grey n -t 3.58722222222 -s 57 -c grey n -t 3.58722222222 -s 58 -c grey n -t 3.58722222222 -s 59 -c grey n -t 3.58722222222 -s 60 -c black n -t 3.58722222222 -s 68 -c black l -t 3.58722222222 -s 0 -d 1 -c grey l -t 3.58722222222 -s 0 -d 2 -c grey l -t 3.58722222222 -s 1 -d 3 -c grey l -t 3.58722222222 -s 3 -d 4 -c grey l -t 3.58722222222 -s 4 -d 5 -c grey l -t 3.58722222222 -s 5 -d 7 -c grey l -t 3.58722222222 -s 5 -d 8 -c grey l -t 3.58722222222 -s 7 -d 10 -c grey l -t 3.58722222222 -s 8 -d 11 -c grey l -t 3.58722222222 -s 10 -d 13 -c grey l -t 3.58722222222 -s 11 -d 14 -c grey l -t 3.58722222222 -s 13 -d 16 -c grey l -t 3.58722222222 -s 14 -d 17 -c grey l -t 3.58722222222 -s 16 -d 19 -c grey l -t 3.58722222222 -s 17 -d 20 -c grey l -t 3.58722222222 -s 19 -d 22 -c grey l -t 3.58722222222 -s 20 -d 23 -c grey l -t 3.58722222222 -s 23 -d 25 -c grey l -t 3.58722222222 -s 25 -d 27 -c grey l -t 3.58722222222 -s 22 -d 30 -c grey l -t 3.58722222222 -s 30 -d 31 -c grey l -t 3.58722222222 -s 31 -d 32 -c grey l -t 3.58722222222 -s 32 -d 33 -c grey l -t 3.58722222222 -s 14 -d 34 -c grey l -t 3.58722222222 -s 5 -d 47 -c grey l -t 3.58722222222 -s 47 -d 48 -c grey l -t 3.58722222222 -s 48 -d 49 -c grey l -t 3.58722222222 -s 49 -d 50 -c grey l -t 3.58722222222 -s 14 -d 55 -c grey l -t 3.58722222222 -s 5 -d 56 -c grey l -t 3.58722222222 -s 56 -d 57 -c grey l -t 3.58722222222 -s 57 -d 58 -c grey l -t 3.58722222222 -s 58 -d 59 -c grey n -t 3.63722222222 -s 35 -c black n -t 3.63722222222 -s 55 -c grey n -t 3.63722222222 -s 60 -c grey n -t 3.63722222222 -s 68 -c grey l -t 3.63722222222 -s 60 -d 55 -c grey l -t 3.63722222222 -s 68 -d 60 -c grey l -t 3.66305555556 -s 0 -d 1 -S COLOR -c blue l -t 3.66305555556 -s 0 -d 2 -S COLOR -c black l -t 3.66305555556 -s 1 -d 3 -S COLOR -c black l -t 3.66305555556 -s 3 -d 4 -S COLOR -c black l -t 3.66305555556 -s 4 -d 5 -S COLOR -c brown l -t 3.66305555556 -s 5 -d 7 -S COLOR -c red l -t 3.66305555556 -s 5 -d 8 -S COLOR -c brown l -t 3.66305555556 -s 7 -d 10 -S COLOR -c blue l -t 3.66305555556 -s 8 -d 11 -S COLOR -c red l -t 3.66305555556 -s 10 -d 13 -S COLOR -c black l -t 3.66305555556 -s 11 -d 14 -S COLOR -c blue l -t 3.66305555556 -s 13 -d 16 -S COLOR -c brown l -t 3.66305555556 -s 14 -d 34 -S COLOR -c black l -t 3.66305555556 -s 14 -d 17 -S COLOR -c black l -t 3.66305555556 -s 14 -d 55 -S COLOR -c black l -t 3.66305555556 -s 16 -d 19 -S COLOR -c blue l -t 3.66305555556 -s 17 -d 20 -S COLOR -c black l -t 3.66305555556 -s 19 -d 22 -S COLOR -c black l -t 3.66305555556 -s 20 -d 23 -S COLOR -c black l -t 3.66305555556 -s 22 -d 30 -S COLOR -c black l -t 3.66305555556 -s 23 -d 25 -S COLOR -c black l -t 3.66305555556 -s 30 -d 31 -S COLOR -c black l -t 3.66305555556 -s 25 -d 27 -S COLOR -c black l -t 3.66305555556 -s 31 -d 32 -S COLOR -c blue l -t 3.66305555556 -s 32 -d 33 -S COLOR -c black n -t 3.66305555556 -s 0 -c black n -t 3.66305555556 -s 1 -c black n -t 3.66305555556 -s 2 -c black n -t 3.66305555556 -s 3 -c black n -t 3.66305555556 -s 4 -c black n -t 3.66305555556 -s 5 -c black n -t 3.66305555556 -s 7 -c black n -t 3.66305555556 -s 8 -c black n -t 3.66305555556 -s 10 -c black n -t 3.66305555556 -s 11 -c black n -t 3.66305555556 -s 13 -c black n -t 3.66305555556 -s 14 -c black n -t 3.66305555556 -s 16 -c black n -t 3.66305555556 -s 17 -c black n -t 3.66305555556 -s 19 -c black n -t 3.66305555556 -s 20 -c black n -t 3.66305555556 -s 22 -c black n -t 3.66305555556 -s 23 -c black n -t 3.66305555556 -s 25 -c black n -t 3.66305555556 -s 27 -c black n -t 3.66305555556 -s 30 -c black n -t 3.66305555556 -s 31 -c black n -t 3.66305555556 -s 32 -c black n -t 3.66305555556 -s 33 -c black n -t 3.66305555556 -s 34 -c black n -t 3.66305555556 -s 35 -c grey n -t 3.66305555556 -s 55 -c black l -t 3.70777777778 -s 0 -d 1 -S COLOR -c brown l -t 3.70777777778 -s 0 -d 2 -S COLOR -c black l -t 3.70777777778 -s 1 -d 3 -S COLOR -c black l -t 3.70777777778 -s 3 -d 4 -S COLOR -c brown l -t 3.70777777778 -s 4 -d 5 -S COLOR -c red l -t 3.70777777778 -s 5 -d 56 -S COLOR -c blue l -t 3.70777777778 -s 5 -d 62 -S COLOR -c black l -t 3.70777777778 -s 5 -d 7 -S COLOR -c red l -t 3.70777777778 -s 5 -d 8 -S COLOR -c blue l -t 3.70777777778 -s 5 -d 47 -S COLOR -c red l -t 3.70777777778 -s 56 -d 57 -S COLOR -c brown l -t 3.70777777778 -s 62 -d 63 -S COLOR -c black l -t 3.70777777778 -s 7 -d 10 -S COLOR -c orange l -t 3.70777777778 -s 8 -d 11 -S COLOR -c red l -t 3.70777777778 -s 47 -d 48 -S COLOR -c black l -t 3.70777777778 -s 57 -d 58 -S COLOR -c blue l -t 3.70777777778 -s 63 -d 64 -S COLOR -c black l -t 3.70777777778 -s 10 -d 13 -S COLOR -c brown l -t 3.70777777778 -s 11 -d 14 -S COLOR -c blue l -t 3.70777777778 -s 48 -d 49 -S COLOR -c black l -t 3.70777777778 -s 58 -d 59 -S COLOR -c black l -t 3.70777777778 -s 64 -d 65 -S COLOR -c black l -t 3.70777777778 -s 13 -d 16 -S COLOR -c black l -t 3.70777777778 -s 14 -d 34 -S COLOR -c black l -t 3.70777777778 -s 14 -d 17 -S COLOR -c black l -t 3.70777777778 -s 14 -d 55 -S COLOR -c black l -t 3.70777777778 -s 49 -d 50 -S COLOR -c black l -t 3.70777777778 -s 65 -d 66 -S COLOR -c brown l -t 3.70777777778 -s 16 -d 19 -S COLOR -c black l -t 3.70777777778 -s 17 -d 20 -S COLOR -c brown l -t 3.70777777778 -s 66 -d 67 -S COLOR -c black l -t 3.70777777778 -s 19 -d 22 -S COLOR -c blue l -t 3.70777777778 -s 20 -d 23 -S COLOR -c blue l -t 3.70777777778 -s 22 -d 30 -S COLOR -c black l -t 3.70777777778 -s 23 -d 25 -S COLOR -c black l -t 3.70777777778 -s 30 -d 31 -S COLOR -c brown l -t 3.70777777778 -s 25 -d 27 -S COLOR -c black l -t 3.70777777778 -s 31 -d 32 -S COLOR -c black l -t 3.70777777778 -s 32 -d 33 -S COLOR -c black n -t 3.70777777778 -s 47 -c black n -t 3.70777777778 -s 48 -c black n -t 3.70777777778 -s 49 -c black n -t 3.70777777778 -s 50 -c black n -t 3.70777777778 -s 56 -c black n -t 3.70777777778 -s 57 -c black n -t 3.70777777778 -s 58 -c black n -t 3.70777777778 -s 59 -c black n -t 3.70777777778 -s 62 -c black n -t 3.70777777778 -s 63 -c black n -t 3.70777777778 -s 64 -c black n -t 3.70777777778 -s 65 -c black n -t 3.70777777778 -s 66 -c black n -t 3.70777777778 -s 67 -c black l -t 3.77388888889 -s 0 -d 1 -S COLOR -c black l -t 3.77388888889 -s 0 -d 2 -S COLOR -c black l -t 3.77388888889 -s 1 -d 3 -S COLOR -c black l -t 3.77388888889 -s 3 -d 4 -S COLOR -c blue l -t 3.77388888889 -s 4 -d 5 -S COLOR -c black l -t 3.77388888889 -s 5 -d 47 -S COLOR -c red l -t 3.77388888889 -s 5 -d 62 -S COLOR -c black l -t 3.77388888889 -s 5 -d 7 -S COLOR -c black l -t 3.77388888889 -s 5 -d 8 -S COLOR -c brown l -t 3.77388888889 -s 5 -d 6 -S COLOR -c blue l -t 3.77388888889 -s 5 -d 56 -S COLOR -c brown l -t 3.77388888889 -s 47 -d 48 -S COLOR -c black l -t 3.77388888889 -s 62 -d 63 -S COLOR -c black l -t 3.77388888889 -s 7 -d 10 -S COLOR -c orange l -t 3.77388888889 -s 8 -d 11 -S COLOR -c black l -t 3.77388888889 -s 6 -d 9 -S COLOR -c red l -t 3.77388888889 -s 56 -d 57 -S COLOR -c black l -t 3.77388888889 -s 48 -d 49 -S COLOR -c black l -t 3.77388888889 -s 63 -d 64 -S COLOR -c black l -t 3.77388888889 -s 10 -d 13 -S COLOR -c black l -t 3.77388888889 -s 11 -d 14 -S COLOR -c brown l -t 3.77388888889 -s 9 -d 12 -S COLOR -c black l -t 3.77388888889 -s 57 -d 58 -S COLOR -c blue l -t 3.77388888889 -s 49 -d 50 -S COLOR -c brown l -t 3.77388888889 -s 64 -d 65 -S COLOR -c black l -t 3.77388888889 -s 13 -d 16 -S COLOR -c black l -t 3.77388888889 -s 14 -d 34 -S COLOR -c black l -t 3.77388888889 -s 14 -d 17 -S COLOR -c black l -t 3.77388888889 -s 14 -d 55 -S COLOR -c black l -t 3.77388888889 -s 12 -d 15 -S COLOR -c black l -t 3.77388888889 -s 58 -d 59 -S COLOR -c black l -t 3.77388888889 -s 50 -d 51 -S COLOR -c black l -t 3.77388888889 -s 65 -d 66 -S COLOR -c black l -t 3.77388888889 -s 16 -d 19 -S COLOR -c orange l -t 3.77388888889 -s 17 -d 20 -S COLOR -c brown l -t 3.77388888889 -s 15 -d 18 -S COLOR -c black l -t 3.77388888889 -s 66 -d 67 -S COLOR -c black l -t 3.77388888889 -s 19 -d 22 -S COLOR -c blue l -t 3.77388888889 -s 20 -d 23 -S COLOR -c black l -t 3.77388888889 -s 18 -d 21 -S COLOR -c black l -t 3.77388888889 -s 22 -d 30 -S COLOR -c black l -t 3.77388888889 -s 23 -d 25 -S COLOR -c black l -t 3.77388888889 -s 30 -d 31 -S COLOR -c brown l -t 3.77388888889 -s 25 -d 27 -S COLOR -c black l -t 3.77388888889 -s 31 -d 32 -S COLOR -c black l -t 3.77388888889 -s 32 -d 33 -S COLOR -c black n -t 3.77388888889 -s 6 -c black n -t 3.77388888889 -s 9 -c black n -t 3.77388888889 -s 12 -c black n -t 3.77388888889 -s 15 -c black n -t 3.77388888889 -s 18 -c black n -t 3.77388888889 -s 21 -c black n -t 3.77388888889 -s 51 -c black l -t 3.83583333333 -s 0 -d 1 -S COLOR -c brown l -t 3.83583333333 -s 0 -d 2 -S COLOR -c black l -t 3.83583333333 -s 1 -d 3 -S COLOR -c black l -t 3.83583333333 -s 3 -d 4 -S COLOR -c brown l -t 3.83583333333 -s 4 -d 5 -S COLOR -c blue l -t 3.83583333333 -s 5 -d 47 -S COLOR -c red l -t 3.83583333333 -s 5 -d 62 -S COLOR -c black l -t 3.83583333333 -s 5 -d 7 -S COLOR -c blue l -t 3.83583333333 -s 5 -d 8 -S COLOR -c black l -t 3.83583333333 -s 5 -d 6 -S COLOR -c black l -t 3.83583333333 -s 5 -d 56 -S COLOR -c black l -t 3.83583333333 -s 47 -d 48 -S COLOR -c blue l -t 3.83583333333 -s 62 -d 63 -S COLOR -c blue l -t 3.83583333333 -s 7 -d 10 -S COLOR -c orange l -t 3.83583333333 -s 8 -d 11 -S COLOR -c brown l -t 3.83583333333 -s 6 -d 9 -S COLOR -c red l -t 3.83583333333 -s 56 -d 57 -S COLOR -c brown l -t 3.83583333333 -s 48 -d 49 -S COLOR -c black l -t 3.83583333333 -s 63 -d 64 -S COLOR -c brown l -t 3.83583333333 -s 10 -d 13 -S COLOR -c black l -t 3.83583333333 -s 11 -d 14 -S COLOR -c black l -t 3.83583333333 -s 9 -d 12 -S COLOR -c black l -t 3.83583333333 -s 57 -d 58 -S COLOR -c blue l -t 3.83583333333 -s 49 -d 50 -S COLOR -c black l -t 3.83583333333 -s 64 -d 65 -S COLOR -c black l -t 3.83583333333 -s 13 -d 16 -S COLOR -c brown l -t 3.83583333333 -s 14 -d 34 -S COLOR -c black l -t 3.83583333333 -s 14 -d 17 -S COLOR -c black l -t 3.83583333333 -s 14 -d 55 -S COLOR -c black l -t 3.83583333333 -s 12 -d 15 -S COLOR -c black l -t 3.83583333333 -s 58 -d 59 -S COLOR -c black l -t 3.83583333333 -s 50 -d 51 -S COLOR -c black l -t 3.83583333333 -s 65 -d 66 -S COLOR -c black l -t 3.83583333333 -s 16 -d 19 -S COLOR -c black l -t 3.83583333333 -s 17 -d 20 -S COLOR -c blue l -t 3.83583333333 -s 15 -d 18 -S COLOR -c black l -t 3.83583333333 -s 66 -d 67 -S COLOR -c black l -t 3.83583333333 -s 19 -d 22 -S COLOR -c black l -t 3.83583333333 -s 20 -d 23 -S COLOR -c brown l -t 3.83583333333 -s 18 -d 21 -S COLOR -c black l -t 3.83583333333 -s 22 -d 30 -S COLOR -c black l -t 3.83583333333 -s 23 -d 25 -S COLOR -c black l -t 3.83583333333 -s 30 -d 31 -S COLOR -c black l -t 3.83583333333 -s 25 -d 27 -S COLOR -c black l -t 3.83583333333 -s 31 -d 32 -S COLOR -c black l -t 3.83583333333 -s 32 -d 33 -S COLOR -c black l -t 3.88444444444 -s 0 -d 1 -S COLOR -c black l -t 3.88444444444 -s 1 -d 3 -S COLOR -c orange l -t 3.88444444444 -s 3 -d 4 -S COLOR -c blue l -t 3.88444444444 -s 3 -d 69 -S COLOR -c black l -t 3.88444444444 -s 4 -d 5 -S COLOR -c black l -t 3.88444444444 -s 5 -d 8 -S COLOR -c black l -t 3.88444444444 -s 5 -d 6 -S COLOR -c black l -t 3.88444444444 -s 5 -d 47 -S COLOR -c red l -t 3.88444444444 -s 5 -d 56 -S COLOR -c blue l -t 3.88444444444 -s 8 -d 11 -S COLOR -c black l -t 3.88444444444 -s 6 -d 9 -S COLOR -c black l -t 3.88444444444 -s 47 -d 48 -S COLOR -c black l -t 3.88444444444 -s 56 -d 57 -S COLOR -c brown l -t 3.88444444444 -s 11 -d 14 -S COLOR -c black l -t 3.88444444444 -s 9 -d 12 -S COLOR -c black l -t 3.88444444444 -s 48 -d 49 -S COLOR -c black l -t 3.88444444444 -s 57 -d 58 -S COLOR -c blue l -t 3.88444444444 -s 14 -d 34 -S COLOR -c black l -t 3.88444444444 -s 14 -d 55 -S COLOR -c black l -t 3.88444444444 -s 12 -d 15 -S COLOR -c black l -t 3.88444444444 -s 49 -d 50 -S COLOR -c red l -t 3.88444444444 -s 58 -d 59 -S COLOR -c black l -t 3.88444444444 -s 15 -d 18 -S COLOR -c black l -t 3.88444444444 -s 18 -d 21 -S COLOR -c black n -t 3.88444444444 -s 2 -c grey n -t 3.88444444444 -s 7 -c grey n -t 3.88444444444 -s 10 -c grey n -t 3.88444444444 -s 13 -c grey n -t 3.88444444444 -s 16 -c grey n -t 3.88444444444 -s 17 -c grey n -t 3.88444444444 -s 19 -c grey n -t 3.88444444444 -s 20 -c grey n -t 3.88444444444 -s 22 -c grey n -t 3.88444444444 -s 23 -c grey n -t 3.88444444444 -s 25 -c grey n -t 3.88444444444 -s 27 -c grey n -t 3.88444444444 -s 30 -c grey n -t 3.88444444444 -s 31 -c grey n -t 3.88444444444 -s 32 -c grey n -t 3.88444444444 -s 33 -c grey n -t 3.88444444444 -s 51 -c grey n -t 3.88444444444 -s 62 -c grey n -t 3.88444444444 -s 63 -c grey n -t 3.88444444444 -s 64 -c grey n -t 3.88444444444 -s 65 -c grey n -t 3.88444444444 -s 66 -c grey n -t 3.88444444444 -s 67 -c grey n -t 3.88444444444 -s 69 -c black l -t 3.88444444444 -s 0 -d 2 -c grey l -t 3.88444444444 -s 5 -d 7 -c grey l -t 3.88444444444 -s 7 -d 10 -c grey l -t 3.88444444444 -s 10 -d 13 -c grey l -t 3.88444444444 -s 13 -d 16 -c grey l -t 3.88444444444 -s 14 -d 17 -c grey l -t 3.88444444444 -s 16 -d 19 -c grey l -t 3.88444444444 -s 17 -d 20 -c grey l -t 3.88444444444 -s 19 -d 22 -c grey l -t 3.88444444444 -s 20 -d 23 -c grey l -t 3.88444444444 -s 23 -d 25 -c grey l -t 3.88444444444 -s 25 -d 27 -c grey l -t 3.88444444444 -s 22 -d 30 -c grey l -t 3.88444444444 -s 30 -d 31 -c grey l -t 3.88444444444 -s 31 -d 32 -c grey l -t 3.88444444444 -s 32 -d 33 -c grey l -t 3.88444444444 -s 50 -d 51 -c grey l -t 3.88444444444 -s 5 -d 62 -c grey l -t 3.88444444444 -s 62 -d 63 -c grey l -t 3.88444444444 -s 63 -d 64 -c grey l -t 3.88444444444 -s 64 -d 65 -c grey l -t 3.88444444444 -s 65 -d 66 -c grey l -t 3.88444444444 -s 66 -d 67 -c grey l -t 3.99166666667 -s 0 -d 1 -S COLOR -c black l -t 3.99166666667 -s 0 -d 2 -S COLOR -c black l -t 3.99166666667 -s 1 -d 3 -S COLOR -c black l -t 3.99166666667 -s 3 -d 4 -S COLOR -c black l -t 3.99166666667 -s 4 -d 5 -S COLOR -c brown l -t 3.99166666667 -s 5 -d 6 -S COLOR -c blue l -t 3.99166666667 -s 5 -d 7 -S COLOR -c black l -t 3.99166666667 -s 5 -d 62 -S COLOR -c black l -t 3.99166666667 -s 5 -d 8 -S COLOR -c black l -t 3.99166666667 -s 6 -d 9 -S COLOR -c red l -t 3.99166666667 -s 7 -d 10 -S COLOR -c blue l -t 3.99166666667 -s 62 -d 63 -S COLOR -c black l -t 3.99166666667 -s 8 -d 11 -S COLOR -c blue l -t 3.99166666667 -s 9 -d 12 -S COLOR -c brown l -t 3.99166666667 -s 10 -d 13 -S COLOR -c brown l -t 3.99166666667 -s 63 -d 64 -S COLOR -c blue l -t 3.99166666667 -s 11 -d 14 -S COLOR -c black l -t 3.99166666667 -s 12 -d 15 -S COLOR -c black l -t 3.99166666667 -s 13 -d 16 -S COLOR -c black l -t 3.99166666667 -s 64 -d 65 -S COLOR -c black l -t 3.99166666667 -s 14 -d 60 -S COLOR -c black l -t 3.99166666667 -s 14 -d 34 -S COLOR -c black l -t 3.99166666667 -s 15 -d 18 -S COLOR -c blue l -t 3.99166666667 -s 16 -d 19 -S COLOR -c black l -t 3.99166666667 -s 65 -d 66 -S COLOR -c black l -t 3.99166666667 -s 60 -d 55 -S COLOR -c red l -t 3.99166666667 -s 18 -d 21 -S COLOR -c black l -t 3.99166666667 -s 19 -d 22 -S COLOR -c black l -t 3.99166666667 -s 66 -d 67 -S COLOR -c black l -t 3.99166666667 -s 22 -d 30 -S COLOR -c black l -t 3.99166666667 -s 30 -d 31 -S COLOR -c blue l -t 3.99166666667 -s 31 -d 32 -S COLOR -c black l -t 3.99166666667 -s 32 -d 33 -S COLOR -c black n -t 3.99166666667 -s 2 -c black n -t 3.99166666667 -s 7 -c black n -t 3.99166666667 -s 10 -c black n -t 3.99166666667 -s 13 -c black n -t 3.99166666667 -s 16 -c black n -t 3.99166666667 -s 19 -c black n -t 3.99166666667 -s 22 -c black n -t 3.99166666667 -s 30 -c black n -t 3.99166666667 -s 31 -c black n -t 3.99166666667 -s 32 -c black n -t 3.99166666667 -s 33 -c black n -t 3.99166666667 -s 47 -c grey n -t 3.99166666667 -s 48 -c grey n -t 3.99166666667 -s 49 -c grey n -t 3.99166666667 -s 50 -c grey n -t 3.99166666667 -s 56 -c grey n -t 3.99166666667 -s 57 -c grey n -t 3.99166666667 -s 58 -c grey n -t 3.99166666667 -s 59 -c grey n -t 3.99166666667 -s 60 -c black n -t 3.99166666667 -s 62 -c black n -t 3.99166666667 -s 63 -c black n -t 3.99166666667 -s 64 -c black n -t 3.99166666667 -s 65 -c black n -t 3.99166666667 -s 66 -c black n -t 3.99166666667 -s 67 -c black n -t 3.99166666667 -s 69 -c grey l -t 3.99166666667 -s 5 -d 47 -c grey l -t 3.99166666667 -s 47 -d 48 -c grey l -t 3.99166666667 -s 48 -d 49 -c grey l -t 3.99166666667 -s 49 -d 50 -c grey l -t 3.99166666667 -s 14 -d 55 -c grey l -t 3.99166666667 -s 5 -d 56 -c grey l -t 3.99166666667 -s 56 -d 57 -c grey l -t 3.99166666667 -s 57 -d 58 -c grey l -t 3.99166666667 -s 58 -d 59 -c grey l -t 3.99166666667 -s 3 -d 69 -c grey nam-1.15/ex/losspatterns.README0000664000076400007660000001014706610761036015140 0ustar tomhnsnamTracefile: losspatterns.nam This animation shows the loss distribution in an Mbone session over time. Color indicates the loss on a particular link as follows: red: loss > 10% orange: 2% < loss <= 10% brown: 0% < loss <= 2% black: no loss blue: possible duplication The data was gathered using mtrace by monitoring RTCP session messages, and periodically initiating an mtrace from every current receiver back to the data source. The data source in this case was node 0, which is sending audio to the Mbone session "KWAX Classical Radio" between 14:30 and 18:30 on Tuesday 17th Feb 1998. When one set of mtraces finish a new set are initiated, which results in us sampling the loss about every 3 to 4 minutes. Where multiple mtraces include the same link in the same interval, the number of received packets and number of lost packets are added, so towards the sender, results tend to be based on more data and longer averages than towards the receivers. Frequently links and nodes grey out - this indicates that either the receiver left the group (which was rare) or the mtrace failed. The reason for performing this monitoring was to get some kind of indication of how stable loss points are over time - whether the points of congestion move around or not. For those interested, the mapping from node number to IP address is given below. Mark Handley - 17th Feb 1998 ---------- 0 = 128.223.32.1 (cisco3-gw.uoregon.edu) 1 = 128.223.3.7 (cisco7-gw.uoregon.edu) 2 = 128.223.32.151 (pythia.uoregon.edu) 3 = 207.98.66.11 (eugene-hub.nero.net) 4 = 207.98.64.6 (eugene-isp.nero.net) 5 = 204.70.158.61 (dec3800-2-fddi-0.SanFrancisco.mci.net) 6 = 203.183.255.106 (sw01.TokyoNet.AD.JP) 7 = 192.42.110.249 (paloalto-mbone1.bbnplanet.net) 8 = 204.70.170.29 (dec3800-1-fddi-0.LosAngeles.mci.net) 9 = 203.178.136.234 (mbone.otemachi.wide.ad.jp) 10 = 199.94.207.2 (cambridge1-mbone1.bbnplanet.net) 11 = 204.140.133.12 (mbone.ln.net) 12 = 203.178.136.193 (sun1.tokyo.wide.ad.jp) 13 = 204.70.64.61 (dec3800-2-fddi-0.WestOrange.mci.net) 14 = 204.140.133.8 (mb204.isi.edu) 15 = 192.41.197.21 (mbone.nc.u-tokyo.ac.jp) 16 = 204.70.74.77 (dec3800-2-fddi-1.Washington.mci.net) 17 = 128.9.160.33 (slate.isi.edu) 18 = 157.82.76.11 (shiva.race.u-tokyo.ac.jp) 19 = 193.174.226.254 (mr-stuttgart1.win-ip.dfn.de) 20 = 140.173.4.9 (140.173.4.9) 21 = 157.82.76.3 (berkeley.race.u-tokyo.ac.jp) 22 = 193.174.226.34 (mr-nuernberg1.win-ip.dfn.de) 23 = 140.173.4.30 (140.173.4.30) 24 = 193.174.226.18 (mr-leipzig1.win-ip.dfn.de) 25 = 18.26.64.1 (video-room-mrouter.lcs.mit.edu) 26 = 134.109.2.250 (134.109.2.250) 27 = 18.26.0.4 (north.lcs.mit.edu) 28 = 134.109.2.244 (134.109.2.244) 29 = 134.109.192.17 (134.109.192.17) 30 = 131.188.6.3 (ds9.gate.uni-erlangen.de) 31 = 129.187.53.117 (sunemil.lrz-muenchen.de) 32 = 131.159.0.81 (tuminfo2.informatik.tu-muenchen.de) 33 = 131.159.1.8 (sunrbg5.informatik.tu-muenchen.de) 34 = 128.9.128.75 (liberty.isi.edu) 36 = 4.0.35.20 (atlanta1-mbone1.bbnplanet.net) 37 = 130.207.244.30 (feta-fddi.gatech.edu) 38 = 130.207.251.3 (130.207.251.3) 39 = 199.77.154.23 (199.77.154.23) 40 = 192.215.245.10 (192.215.245.10) 41 = 198.17.46.39 (mbone.sdsc.edu) 42 = 198.17.46.43 (cs-f-vbns.sdsc.edu) 43 = 204.147.129.94 (204.147.129.94) 44 = 205.189.33.233 (205.189.33.233) 45 = 205.189.32.157 (205.189.32.157) 46 = 132.214.6.112 (132.214.6.112) 47 = 205.158.0.60 (205.158.0.60) 48 = 207.126.96.172 (207.126.96.172) 49 = 207.126.96.234 (207.126.96.234) 50 = 206.251.5.98 (206.251.5.98) 51 = 204.71.197.209 (204.71.197.209) 52 = 128.125.247.32 (dmz-gw.usc.edu) 53 = 129.4.51.2 (achtung.sp.TRW.COM) 54 = 129.4.50.202 (129.4.50.202) 55 = 128.9.160.81 (ra2.isi.edu) 56 = 204.70.114.45 (204.70.114.45) 57 = 204.70.104.77 (204.70.104.77) 58 = 12.0.1.7 (12.0.1.7) 59 = 12.0.1.25 (12.0.1.25) 60 = 128.9.160.26 (bah.isi.edu) 61 = 128.9.128.8 (128.9.128.8) 62 = 204.70.164.29 (dec3800-1-fddi-0.Sacramento.mci.net) 63 = 140.142.116.1 (mcast.cac.washington.edu) 64 = 192.220.249.66 (seamr2-gw.nwnet.net) 65 = 192.220.238.129 (seamr1-gw.nwnet.net) 66 = 131.107.1.249 (pogo.microsoft.com) 67 = 131.107.1.201 (bernarda.microsoft.com) 68 = 128.9.160.8 (mb160.isi.edu) 69 = 166.48.14.6 (166.48.14.6) nam-1.15/ex/mbone96.layout.nam0000664000076400007660000077610006610761040015013 0ustar tomhnsnamn -t * -s 1971 -v circle -c black -z 0.075345 -S UP n -t * -s 1969 -v circle -c black -z 0.075345 -S UP n -t * -s 1968 -v circle -c black -z 0.075345 -S UP n -t * -s 1967 -v circle -c black -z 0.075345 -S UP n -t * -s 1964 -v circle -c black -z 0.075345 -S UP n -t * -s 1963 -v circle -c black -z 0.075345 -S UP n -t * -s 1962 -v circle -c black -z 0.075345 -S UP n -t * -s 1961 -v circle -c black -z 0.075345 -S UP n -t * -s 1959 -v circle -c black -z 0.075345 -S UP n -t * -s 1958 -v circle -c black -z 0.075345 -S UP n -t * -s 1956 -v circle -c black -z 0.075345 -S UP n -t * -s 1955 -v circle -c black -z 0.075345 -S UP n -t * -s 1954 -v circle -c black -z 0.075345 -S UP n -t * -s 1953 -v circle -c black -z 0.075345 -S UP n -t * -s 1952 -v circle -c black -z 0.075345 -S UP n -t * -s 1951 -v circle -c black -z 0.075345 -S UP n -t * -s 1950 -v circle -c black -z 0.075345 -S UP n -t * -s 1949 -v circle -c black -z 0.075345 -S UP n -t * -s 1948 -v circle -c black -z 0.075345 -S UP n -t * -s 1947 -v circle -c black -z 0.075345 -S UP n -t * -s 1946 -v circle -c black -z 0.075345 -S UP n -t * -s 1945 -v circle -c black -z 0.075345 -S UP n -t * -s 1944 -v circle -c black -z 0.075345 -S UP n -t * -s 1943 -v circle -c black -z 0.075345 -S UP n -t * -s 1942 -v circle -c black -z 0.075345 -S UP n -t * -s 1941 -v circle -c black -z 0.075345 -S UP n -t * -s 1940 -v circle -c black -z 0.075345 -S UP n -t * -s 1939 -v circle -c black -z 0.075345 -S UP n -t * -s 1938 -v circle -c black -z 0.075345 -S UP n -t * -s 1937 -v circle -c black -z 0.075345 -S UP n -t * -s 1936 -v circle -c black -z 0.075345 -S UP n -t * -s 1935 -v circle -c black -z 0.075345 -S UP n -t * -s 1934 -v circle -c black -z 0.075345 -S UP n -t * -s 1933 -v circle -c black -z 0.075345 -S UP n -t * -s 1932 -v circle -c black -z 0.075345 -S UP n -t * -s 1931 -v circle -c black -z 0.075345 -S UP n -t * -s 1930 -v circle -c black -z 0.075345 -S UP n -t * -s 1929 -v circle -c black -z 0.075345 -S UP n -t * -s 1928 -v circle -c black -z 0.075345 -S UP n -t * -s 1926 -v circle -c black -z 0.075345 -S UP n -t * -s 1919 -v circle -c black -z 0.075345 -S UP n -t * -s 1918 -v circle -c black -z 0.075345 -S UP n -t * -s 1917 -v circle -c black -z 0.075345 -S UP n -t * -s 1916 -v circle -c black -z 0.075345 -S UP n -t * -s 1915 -v circle -c black -z 0.075345 -S UP n -t * -s 1914 -v circle -c black -z 0.075345 -S UP n -t * -s 1913 -v circle -c black -z 0.075345 -S UP n -t * -s 1912 -v circle -c black -z 0.075345 -S UP n -t * -s 1911 -v circle -c black -z 0.075345 -S UP n -t * -s 1910 -v circle -c black -z 0.075345 -S UP n -t * -s 1909 -v circle -c black -z 0.075345 -S UP n -t * -s 1908 -v circle -c black -z 0.075345 -S UP n -t * -s 1907 -v circle -c black -z 0.075345 -S UP n -t * -s 1906 -v circle -c black -z 0.075345 -S UP n -t * -s 1905 -v circle -c black -z 0.075345 -S UP n -t * -s 1904 -v circle -c black -z 0.075345 -S UP n -t * -s 1903 -v circle -c black -z 0.075345 -S UP n -t * -s 1902 -v circle -c black -z 0.075345 -S UP n -t * -s 1901 -v circle -c black -z 0.075345 -S UP n -t * -s 1900 -v circle -c black -z 0.075345 -S UP n -t * -s 1899 -v circle -c black -z 0.075345 -S UP n -t * -s 1898 -v circle -c black -z 0.075345 -S UP n -t * -s 1897 -v circle -c black -z 0.075345 -S UP n -t * -s 1896 -v circle -c black -z 0.075345 -S UP n -t * -s 1895 -v circle -c black -z 0.075345 -S UP n -t * -s 1894 -v circle -c black -z 0.075345 -S UP n -t * -s 1893 -v circle -c black -z 0.075345 -S UP n -t * -s 1892 -v circle -c black -z 0.075345 -S UP n -t * -s 1891 -v circle -c black -z 0.075345 -S UP n -t * -s 1890 -v circle -c black -z 0.075345 -S UP n -t * -s 1888 -v circle -c black -z 0.075345 -S UP n -t * -s 1887 -v circle -c black -z 0.075345 -S UP n -t * -s 1886 -v circle -c black -z 0.075345 -S UP n -t * -s 1885 -v circle -c black -z 0.075345 -S UP n -t * -s 1884 -v circle -c black -z 0.075345 -S UP n -t * -s 1883 -v circle -c black -z 0.075345 -S UP n -t * -s 1882 -v circle -c black -z 0.075345 -S UP n -t * -s 1881 -v circle -c black -z 0.075345 -S UP n -t * -s 1880 -v circle -c black -z 0.075345 -S UP n -t * -s 1879 -v circle -c black -z 0.075345 -S UP n -t * -s 1878 -v circle -c black -z 0.075345 -S UP n -t * -s 1877 -v circle -c black -z 0.075345 -S UP n -t * -s 1876 -v circle -c black -z 0.075345 -S UP n -t * -s 1875 -v circle -c black -z 0.075345 -S UP n -t * -s 1874 -v circle -c black -z 0.075345 -S UP n -t * -s 1873 -v circle -c black -z 0.075345 -S UP n -t * -s 1872 -v circle -c black -z 0.075345 -S UP n -t * -s 1871 -v circle -c black -z 0.075345 -S UP n -t * -s 1870 -v circle -c black -z 0.075345 -S UP n -t * -s 1869 -v circle -c black -z 0.075345 -S UP n -t * -s 1868 -v circle -c black -z 0.075345 -S UP n -t * -s 1867 -v circle -c black -z 0.075345 -S UP n -t * -s 1866 -v circle -c black -z 0.075345 -S UP n -t * -s 1865 -v circle -c black -z 0.075345 -S UP n -t * -s 1864 -v circle -c black -z 0.075345 -S UP n -t * -s 1863 -v circle -c black -z 0.075345 -S UP n -t * -s 1862 -v circle -c black -z 0.075345 -S UP n -t * -s 1861 -v circle -c black -z 0.075345 -S UP n -t * -s 1860 -v circle -c black -z 0.075345 -S UP n -t * -s 1859 -v circle -c black -z 0.075345 -S UP n -t * -s 1858 -v circle -c black -z 0.075345 -S UP n -t * -s 1857 -v circle -c black -z 0.075345 -S UP n -t * -s 1856 -v circle -c black -z 0.075345 -S UP n -t * -s 1855 -v circle -c black -z 0.075345 -S UP n -t * -s 1854 -v circle -c black -z 0.075345 -S UP n -t * -s 1853 -v circle -c black -z 0.075345 -S UP n -t * -s 1852 -v circle -c black -z 0.075345 -S UP n -t * -s 1851 -v circle -c black -z 0.075345 -S UP n -t * -s 1849 -v circle -c black -z 0.075345 -S UP n -t * -s 1848 -v circle -c black -z 0.075345 -S UP n -t * -s 1847 -v circle -c black -z 0.075345 -S UP n -t * -s 1846 -v circle -c black -z 0.075345 -S UP n -t * -s 1845 -v circle -c black -z 0.075345 -S UP n -t * -s 1844 -v circle -c black -z 0.075345 -S UP n -t * -s 1843 -v circle -c black -z 0.075345 -S UP n -t * -s 1842 -v circle -c black -z 0.075345 -S UP n -t * -s 1840 -v circle -c black -z 0.075345 -S UP n -t * -s 1839 -v circle -c black -z 0.075345 -S UP n -t * -s 1838 -v circle -c black -z 0.075345 -S UP n -t * -s 1837 -v circle -c black -z 0.075345 -S UP n -t * -s 1836 -v circle -c black -z 0.075345 -S UP n -t * -s 1835 -v circle -c black -z 0.075345 -S UP n -t * -s 1834 -v circle -c black -z 0.075345 -S UP n -t * -s 1833 -v circle -c black -z 0.075345 -S UP n -t * -s 1832 -v circle -c black -z 0.075345 -S UP n -t * -s 1831 -v circle -c black -z 0.075345 -S UP n -t * -s 1830 -v circle -c black -z 0.075345 -S UP n -t * -s 1829 -v circle -c black -z 0.075345 -S UP n -t * -s 1828 -v circle -c black -z 0.075345 -S UP n -t * -s 1827 -v circle -c black -z 0.075345 -S UP n -t * -s 1826 -v circle -c black -z 0.075345 -S UP n -t * -s 1825 -v circle -c black -z 0.075345 -S UP n -t * -s 1824 -v circle -c black -z 0.075345 -S UP n -t * -s 1821 -v circle -c black -z 0.075345 -S UP n -t * -s 1820 -v circle -c black -z 0.075345 -S UP n -t * -s 1819 -v circle -c black -z 0.075345 -S UP n -t * -s 1818 -v circle -c black -z 0.075345 -S UP n -t * -s 1816 -v circle -c black -z 0.075345 -S UP n -t * -s 1815 -v circle -c black -z 0.075345 -S UP n -t * -s 1813 -v circle -c black -z 0.075345 -S UP n -t * -s 1812 -v circle -c black -z 0.075345 -S UP n -t * -s 1811 -v circle -c black -z 0.075345 -S UP n -t * -s 1810 -v circle -c black -z 0.075345 -S UP n -t * -s 1809 -v circle -c black -z 0.075345 -S UP n -t * -s 1808 -v circle -c black -z 0.075345 -S UP n -t * -s 1807 -v circle -c black -z 0.075345 -S UP n -t * -s 1806 -v circle -c black -z 0.075345 -S UP n -t * -s 1805 -v circle -c black -z 0.075345 -S UP n -t * -s 1804 -v circle -c black -z 0.075345 -S UP n -t * -s 1803 -v circle -c black -z 0.075345 -S UP n -t * -s 1802 -v circle -c black -z 0.075345 -S UP n -t * -s 1801 -v circle -c black -z 0.075345 -S UP n -t * -s 1800 -v circle -c black -z 0.075345 -S UP n -t * -s 1799 -v circle -c black -z 0.075345 -S UP n -t * -s 1798 -v circle -c black -z 0.075345 -S UP n -t * -s 1796 -v circle -c black -z 0.075345 -S UP n -t * -s 1795 -v circle -c black -z 0.075345 -S UP n -t * -s 1794 -v circle -c black -z 0.075345 -S UP n -t * -s 1793 -v circle -c black -z 0.075345 -S UP n -t * -s 1792 -v circle -c black -z 0.075345 -S UP n -t * -s 1791 -v circle -c black -z 0.075345 -S UP n -t * -s 1790 -v circle -c black -z 0.075345 -S UP n -t * -s 1788 -v circle -c black -z 0.075345 -S UP n -t * -s 1784 -v circle -c black -z 0.075345 -S UP n -t * -s 1783 -v circle -c black -z 0.075345 -S UP n -t * -s 1782 -v circle -c black -z 0.075345 -S UP n -t * -s 1781 -v circle -c black -z 0.075345 -S UP n -t * -s 1779 -v circle -c black -z 0.075345 -S UP n -t * -s 1778 -v circle -c black -z 0.075345 -S UP n -t * -s 1776 -v circle -c black -z 0.075345 -S UP n -t * -s 1775 -v circle -c black -z 0.075345 -S UP n -t * -s 1774 -v circle -c black -z 0.075345 -S UP n -t * -s 1773 -v circle -c black -z 0.075345 -S UP n -t * -s 1772 -v circle -c black -z 0.075345 -S UP n -t * -s 1771 -v circle -c black -z 0.075345 -S UP n -t * -s 1770 -v circle -c black -z 0.075345 -S UP n -t * -s 1769 -v circle -c black -z 0.075345 -S UP n -t * -s 1768 -v circle -c black -z 0.075345 -S UP n -t * -s 1767 -v circle -c black -z 0.075345 -S UP n -t * -s 1766 -v circle -c black -z 0.075345 -S UP n -t * -s 1765 -v circle -c black -z 0.075345 -S UP n -t * -s 1764 -v circle -c black -z 0.075345 -S UP n -t * -s 1763 -v circle -c black -z 0.075345 -S UP n -t * -s 1762 -v circle -c black -z 0.075345 -S UP n -t * -s 1761 -v circle -c black -z 0.075345 -S UP n -t * -s 1760 -v circle -c black -z 0.075345 -S UP n -t * -s 1759 -v circle -c black -z 0.075345 -S UP n -t * -s 1758 -v circle -c black -z 0.075345 -S UP n -t * -s 1757 -v circle -c black -z 0.075345 -S UP n -t * -s 1755 -v circle -c black -z 0.075345 -S UP n -t * -s 1754 -v circle -c black -z 0.075345 -S UP n -t * -s 1753 -v circle -c black -z 0.075345 -S UP n -t * -s 1752 -v circle -c black -z 0.075345 -S UP n -t * -s 1751 -v circle -c black -z 0.075345 -S UP n -t * -s 1750 -v circle -c black -z 0.075345 -S UP n -t * -s 1749 -v circle -c black -z 0.075345 -S UP n -t * -s 1748 -v circle -c black -z 0.075345 -S UP n -t * -s 1747 -v circle -c black -z 0.075345 -S UP n -t * -s 1746 -v circle -c black -z 0.075345 -S UP n -t * -s 1745 -v circle -c black -z 0.075345 -S UP n -t * -s 1744 -v circle -c black -z 0.075345 -S UP n -t * -s 1743 -v circle -c black -z 0.075345 -S UP n -t * -s 1742 -v circle -c black -z 0.075345 -S UP n -t * -s 1741 -v circle -c black -z 0.075345 -S UP n -t * -s 1740 -v circle -c black -z 0.075345 -S UP n -t * -s 1739 -v circle -c black -z 0.075345 -S UP n -t * -s 1738 -v circle -c black -z 0.075345 -S UP n -t * -s 1737 -v circle -c black -z 0.075345 -S UP n -t * -s 1736 -v circle -c black -z 0.075345 -S UP n -t * -s 1735 -v circle -c black -z 0.075345 -S UP n -t * -s 1734 -v circle -c black -z 0.075345 -S UP n -t * -s 1733 -v circle -c black -z 0.075345 -S UP n -t * -s 1732 -v circle -c black -z 0.075345 -S UP n -t * -s 1731 -v circle -c black -z 0.075345 -S UP n -t * -s 1730 -v circle -c black -z 0.075345 -S UP n -t * -s 1729 -v circle -c black -z 0.075345 -S UP n -t * -s 1728 -v circle -c black -z 0.075345 -S UP n -t * -s 1727 -v circle -c black -z 0.075345 -S UP n -t * -s 1726 -v circle -c black -z 0.075345 -S UP n -t * -s 1725 -v circle -c black -z 0.075345 -S UP n -t * -s 1724 -v circle -c black -z 0.075345 -S UP n -t * -s 1723 -v circle -c black -z 0.075345 -S UP n -t * -s 1722 -v circle -c black -z 0.075345 -S UP n -t * -s 1721 -v circle -c black -z 0.075345 -S UP n -t * -s 1720 -v circle -c black -z 0.075345 -S UP n -t * -s 1719 -v circle -c black -z 0.075345 -S UP n -t * -s 1718 -v circle -c black -z 0.075345 -S UP n -t * -s 1717 -v circle -c black -z 0.075345 -S UP n -t * -s 1716 -v circle -c black -z 0.075345 -S UP n -t * -s 1715 -v circle -c black -z 0.075345 -S UP n -t * -s 1714 -v circle -c black -z 0.075345 -S UP n -t * -s 1713 -v circle -c black -z 0.075345 -S UP n -t * -s 1712 -v circle -c black -z 0.075345 -S UP n -t * -s 1711 -v circle -c black -z 0.075345 -S UP n -t * -s 1710 -v circle -c black -z 0.075345 -S UP n -t * -s 1707 -v circle -c black -z 0.075345 -S UP n -t * -s 1705 -v circle -c black -z 0.075345 -S UP n -t * -s 1704 -v circle -c black -z 0.075345 -S UP n -t * -s 1703 -v circle -c black -z 0.075345 -S UP n -t * -s 1702 -v circle -c black -z 0.075345 -S UP n -t * -s 1696 -v circle -c black -z 0.075345 -S UP n -t * -s 1695 -v circle -c black -z 0.075345 -S UP n -t * -s 1694 -v circle -c black -z 0.075345 -S UP n -t * -s 1693 -v circle -c black -z 0.075345 -S UP n -t * -s 1692 -v circle -c black -z 0.075345 -S UP n -t * -s 1691 -v circle -c black -z 0.075345 -S UP n -t * -s 1690 -v circle -c black -z 0.075345 -S UP n -t * -s 1689 -v circle -c black -z 0.075345 -S UP n -t * -s 1688 -v circle -c black -z 0.075345 -S UP n -t * -s 1687 -v circle -c black -z 0.075345 -S UP n -t * -s 1686 -v circle -c black -z 0.075345 -S UP n -t * -s 1685 -v circle -c black -z 0.075345 -S UP n -t * -s 1684 -v circle -c black -z 0.075345 -S UP n -t * -s 1683 -v circle -c black -z 0.075345 -S UP n -t * -s 1682 -v circle -c black -z 0.075345 -S UP n -t * -s 1681 -v circle -c black -z 0.075345 -S UP n -t * -s 1680 -v circle -c black -z 0.075345 -S UP n -t * -s 1679 -v circle -c black -z 0.075345 -S UP n -t * -s 1678 -v circle -c black -z 0.075345 -S UP n -t * -s 1677 -v circle -c black -z 0.075345 -S UP n -t * -s 1676 -v circle -c black -z 0.075345 -S UP n -t * -s 1675 -v circle -c black -z 0.075345 -S UP n -t * -s 1674 -v circle -c black -z 0.075345 -S UP n -t * -s 1673 -v circle -c black -z 0.075345 -S UP n -t * -s 1672 -v circle -c black -z 0.075345 -S UP n -t * -s 1671 -v circle -c black -z 0.075345 -S UP n -t * -s 1670 -v circle -c black -z 0.075345 -S UP n -t * -s 1669 -v circle -c black -z 0.075345 -S UP n -t * -s 1668 -v circle -c black -z 0.075345 -S UP n -t * -s 1667 -v circle -c black -z 0.075345 -S UP n -t * -s 1666 -v circle -c black -z 0.075345 -S UP n -t * -s 1664 -v circle -c black -z 0.075345 -S UP n -t * -s 1663 -v circle -c black -z 0.075345 -S UP n -t * -s 1662 -v circle -c black -z 0.075345 -S UP n -t * -s 1661 -v circle -c black -z 0.075345 -S UP n -t * -s 1660 -v circle -c black -z 0.075345 -S UP n -t * -s 1659 -v circle -c black -z 0.075345 -S UP n -t * -s 1658 -v circle -c black -z 0.075345 -S UP n -t * -s 1657 -v circle -c black -z 0.075345 -S UP n -t * -s 1656 -v circle -c black -z 0.075345 -S UP n -t * -s 1655 -v circle -c black -z 0.075345 -S UP n -t * -s 1653 -v circle -c black -z 0.075345 -S UP n -t * -s 1652 -v circle -c black -z 0.075345 -S UP n -t * -s 1651 -v circle -c black -z 0.075345 -S UP n -t * -s 1650 -v circle -c black -z 0.075345 -S UP n -t * -s 1648 -v circle -c black -z 0.075345 -S UP n -t * -s 1647 -v circle -c black -z 0.075345 -S UP n -t * -s 1646 -v circle -c black -z 0.075345 -S UP n -t * -s 1645 -v circle -c black -z 0.075345 -S UP n -t * -s 1644 -v circle -c black -z 0.075345 -S UP n -t * -s 1641 -v circle -c black -z 0.075345 -S UP n -t * -s 1640 -v circle -c black -z 0.075345 -S UP n -t * -s 1638 -v circle -c black -z 0.075345 -S UP n -t * -s 1637 -v circle -c black -z 0.075345 -S UP n -t * -s 1635 -v circle -c black -z 0.075345 -S UP n -t * -s 1634 -v circle -c black -z 0.075345 -S UP n -t * -s 1633 -v circle -c black -z 0.075345 -S UP n -t * -s 1632 -v circle -c black -z 0.075345 -S UP n -t * -s 1631 -v circle -c black -z 0.075345 -S UP n -t * -s 1630 -v circle -c black -z 0.075345 -S UP n -t * -s 1629 -v circle -c black -z 0.075345 -S UP n -t * -s 1628 -v circle -c black -z 0.075345 -S UP n -t * -s 1626 -v circle -c black -z 0.075345 -S UP n -t * -s 1625 -v circle -c black -z 0.075345 -S UP n -t * -s 1624 -v circle -c black -z 0.075345 -S UP n -t * -s 1623 -v circle -c black -z 0.075345 -S UP n -t * -s 1622 -v circle -c black -z 0.075345 -S UP n -t * -s 1621 -v circle -c black -z 0.075345 -S UP n -t * -s 1620 -v circle -c black -z 0.075345 -S UP n -t * -s 1619 -v circle -c black -z 0.075345 -S UP n -t * -s 1618 -v circle -c black -z 0.075345 -S UP n -t * -s 1617 -v circle -c black -z 0.075345 -S UP n -t * -s 1616 -v circle -c black -z 0.075345 -S UP n -t * -s 1615 -v circle -c black -z 0.075345 -S UP n -t * -s 1614 -v circle -c black -z 0.075345 -S UP n -t * -s 1613 -v circle -c black -z 0.075345 -S UP n -t * -s 1612 -v circle -c black -z 0.075345 -S UP n -t * -s 1611 -v circle -c black -z 0.075345 -S UP n -t * -s 1610 -v circle -c black -z 0.075345 -S UP n -t * -s 1609 -v circle -c black -z 0.075345 -S UP n -t * -s 1608 -v circle -c black -z 0.075345 -S UP n -t * -s 1606 -v circle -c black -z 0.075345 -S UP n -t * -s 1605 -v circle -c black -z 0.075345 -S UP n -t * -s 1604 -v circle -c black -z 0.075345 -S UP n -t * -s 1603 -v circle -c black -z 0.075345 -S UP n -t * -s 1601 -v circle -c black -z 0.075345 -S UP n -t * -s 1600 -v circle -c black -z 0.075345 -S UP n -t * -s 1599 -v circle -c black -z 0.075345 -S UP n -t * -s 1598 -v circle -c black -z 0.075345 -S UP n -t * -s 1597 -v circle -c black -z 0.075345 -S UP n -t * -s 1596 -v circle -c black -z 0.075345 -S UP n -t * -s 1595 -v circle -c black -z 0.075345 -S UP n -t * -s 1594 -v circle -c black -z 0.075345 -S UP n -t * -s 1593 -v circle -c black -z 0.075345 -S UP n -t * -s 1592 -v circle -c black -z 0.075345 -S UP n -t * -s 1591 -v circle -c black -z 0.075345 -S UP n -t * -s 1590 -v circle -c black -z 0.075345 -S UP n -t * -s 1588 -v circle -c black -z 0.075345 -S UP n -t * -s 1587 -v circle -c black -z 0.075345 -S UP n -t * -s 1586 -v circle -c black -z 0.075345 -S UP n -t * -s 1585 -v circle -c black -z 0.075345 -S UP n -t * -s 1584 -v circle -c black -z 0.075345 -S UP n -t * -s 1583 -v circle -c black -z 0.075345 -S UP n -t * -s 1582 -v circle -c black -z 0.075345 -S UP n -t * -s 1581 -v circle -c black -z 0.075345 -S UP n -t * -s 1580 -v circle -c black -z 0.075345 -S UP n -t * -s 1579 -v circle -c black -z 0.075345 -S UP n -t * -s 1578 -v circle -c black -z 0.075345 -S UP n -t * -s 1577 -v circle -c black -z 0.075345 -S UP n -t * -s 1576 -v circle -c black -z 0.075345 -S UP n -t * -s 1575 -v circle -c black -z 0.075345 -S UP n -t * -s 1574 -v circle -c black -z 0.075345 -S UP n -t * -s 1573 -v circle -c black -z 0.075345 -S UP n -t * -s 1572 -v circle -c black -z 0.075345 -S UP n -t * -s 1570 -v circle -c black -z 0.075345 -S UP n -t * -s 1569 -v circle -c black -z 0.075345 -S UP n -t * -s 1568 -v circle -c black -z 0.075345 -S UP n -t * -s 1567 -v circle -c black -z 0.075345 -S UP n -t * -s 1566 -v circle -c black -z 0.075345 -S UP n -t * -s 1565 -v circle -c black -z 0.075345 -S UP n -t * -s 1564 -v circle -c black -z 0.075345 -S UP n -t * -s 1563 -v circle -c black -z 0.075345 -S UP n -t * -s 1562 -v circle -c black -z 0.075345 -S UP n -t * -s 1561 -v circle -c black -z 0.075345 -S UP n -t * -s 1560 -v circle -c black -z 0.075345 -S UP n -t * -s 1559 -v circle -c black -z 0.075345 -S UP n -t * -s 1558 -v circle -c black -z 0.075345 -S UP n -t * -s 1556 -v circle -c black -z 0.075345 -S UP n -t * -s 1555 -v circle -c black -z 0.075345 -S UP n -t * -s 1554 -v circle -c black -z 0.075345 -S UP n -t * -s 1553 -v circle -c black -z 0.075345 -S UP n -t * -s 1552 -v circle -c black -z 0.075345 -S UP n -t * -s 1551 -v circle -c black -z 0.075345 -S UP n -t * -s 1550 -v circle -c black -z 0.075345 -S UP n -t * -s 1549 -v circle -c black -z 0.075345 -S UP n -t * -s 1548 -v circle -c black -z 0.075345 -S UP n -t * -s 1547 -v circle -c black -z 0.075345 -S UP n -t * -s 1546 -v circle -c black -z 0.075345 -S UP n -t * -s 1545 -v circle -c black -z 0.075345 -S UP n -t * -s 1544 -v circle -c black -z 0.075345 -S UP n -t * -s 1543 -v circle -c black -z 0.075345 -S UP n -t * -s 1541 -v circle -c black -z 0.075345 -S UP n -t * -s 1540 -v circle -c black -z 0.075345 -S UP n -t * -s 1539 -v circle -c black -z 0.075345 -S UP n -t * -s 1538 -v circle -c black -z 0.075345 -S UP n -t * -s 1537 -v circle -c black -z 0.075345 -S UP n -t * -s 1536 -v circle -c black -z 0.075345 -S UP n -t * -s 1535 -v circle -c black -z 0.075345 -S UP n -t * -s 1534 -v circle -c black -z 0.075345 -S UP n -t * -s 1533 -v circle -c black -z 0.075345 -S UP n -t * -s 1532 -v circle -c black -z 0.075345 -S UP n -t * -s 1531 -v circle -c black -z 0.075345 -S UP n -t * -s 1530 -v circle -c black -z 0.075345 -S UP n -t * -s 1529 -v circle -c black -z 0.075345 -S UP n -t * -s 1528 -v circle -c black -z 0.075345 -S UP n -t * -s 1527 -v circle -c black -z 0.075345 -S UP n -t * -s 1526 -v circle -c black -z 0.075345 -S UP n -t * -s 1525 -v circle -c black -z 0.075345 -S UP n -t * -s 1524 -v circle -c black -z 0.075345 -S UP n -t * -s 1523 -v circle -c black -z 0.075345 -S UP n -t * -s 1522 -v circle -c black -z 0.075345 -S UP n -t * -s 1521 -v circle -c black -z 0.075345 -S UP n -t * -s 1520 -v circle -c black -z 0.075345 -S UP n -t * -s 1519 -v circle -c black -z 0.075345 -S UP n -t * -s 1518 -v circle -c black -z 0.075345 -S UP n -t * -s 1517 -v circle -c black -z 0.075345 -S UP n -t * -s 1516 -v circle -c black -z 0.075345 -S UP n -t * -s 1515 -v circle -c black -z 0.075345 -S UP n -t * -s 1514 -v circle -c black -z 0.075345 -S UP n -t * -s 1513 -v circle -c black -z 0.075345 -S UP n -t * -s 1512 -v circle -c black -z 0.075345 -S UP n -t * -s 1511 -v circle -c black -z 0.075345 -S UP n -t * -s 1510 -v circle -c black -z 0.075345 -S UP n -t * -s 1509 -v circle -c black -z 0.075345 -S UP n -t * -s 1507 -v circle -c black -z 0.075345 -S UP n -t * -s 1506 -v circle -c black -z 0.075345 -S UP n -t * -s 1505 -v circle -c black -z 0.075345 -S UP n -t * -s 1502 -v circle -c black -z 0.075345 -S UP n -t * -s 1501 -v circle -c black -z 0.075345 -S UP n -t * -s 1500 -v circle -c black -z 0.075345 -S UP n -t * -s 1499 -v circle -c black -z 0.075345 -S UP n -t * -s 1498 -v circle -c black -z 0.075345 -S UP n -t * -s 1497 -v circle -c black -z 0.075345 -S UP n -t * -s 1495 -v circle -c black -z 0.075345 -S UP n -t * -s 1494 -v circle -c black -z 0.075345 -S UP n -t * -s 1493 -v circle -c black -z 0.075345 -S UP n -t * -s 1492 -v circle -c black -z 0.075345 -S UP n -t * -s 1491 -v circle -c black -z 0.075345 -S UP n -t * -s 1490 -v circle -c black -z 0.075345 -S UP n -t * -s 1489 -v circle -c black -z 0.075345 -S UP n -t * -s 1488 -v circle -c black -z 0.075345 -S UP n -t * -s 1485 -v circle -c black -z 0.075345 -S UP n -t * -s 1484 -v circle -c black -z 0.075345 -S UP n -t * -s 1483 -v circle -c black -z 0.075345 -S UP n -t * -s 1482 -v circle -c black -z 0.075345 -S UP n -t * -s 1480 -v circle -c black -z 0.075345 -S UP n -t * -s 1479 -v circle -c black -z 0.075345 -S UP n -t * -s 1478 -v circle -c black -z 0.075345 -S UP n -t * -s 1477 -v circle -c black -z 0.075345 -S UP n -t * -s 1476 -v circle -c black -z 0.075345 -S UP n -t * -s 1475 -v circle -c black -z 0.075345 -S UP n -t * -s 1474 -v circle -c black -z 0.075345 -S UP n -t * -s 1473 -v circle -c black -z 0.075345 -S UP n -t * -s 1472 -v circle -c black -z 0.075345 -S UP n -t * -s 1471 -v circle -c black -z 0.075345 -S UP n -t * -s 1470 -v circle -c black -z 0.075345 -S UP n -t * -s 1469 -v circle -c black -z 0.075345 -S UP n -t * -s 1468 -v circle -c black -z 0.075345 -S UP n -t * -s 1465 -v circle -c black -z 0.075345 -S UP n -t * -s 1464 -v circle -c black -z 0.075345 -S UP n -t * -s 1463 -v circle -c black -z 0.075345 -S UP n -t * -s 1462 -v circle -c black -z 0.075345 -S UP n -t * -s 1461 -v circle -c black -z 0.075345 -S UP n -t * -s 1460 -v circle -c black -z 0.075345 -S UP n -t * -s 1459 -v circle -c black -z 0.075345 -S UP n -t * -s 1457 -v circle -c black -z 0.075345 -S UP n -t * -s 1456 -v circle -c black -z 0.075345 -S UP n -t * -s 1455 -v circle -c black -z 0.075345 -S UP n -t * -s 1454 -v circle -c black -z 0.075345 -S UP n -t * -s 1452 -v circle -c black -z 0.075345 -S UP n -t * -s 1451 -v circle -c black -z 0.075345 -S UP n -t * -s 1450 -v circle -c black -z 0.075345 -S UP n -t * -s 1449 -v circle -c black -z 0.075345 -S UP n -t * -s 1448 -v circle -c black -z 0.075345 -S UP n -t * -s 1447 -v circle -c black -z 0.075345 -S UP n -t * -s 1446 -v circle -c black -z 0.075345 -S UP n -t * -s 1445 -v circle -c black -z 0.075345 -S UP n -t * -s 1444 -v circle -c black -z 0.075345 -S UP n -t * -s 1443 -v circle -c black -z 0.075345 -S UP n -t * -s 1442 -v circle -c black -z 0.075345 -S UP n -t * -s 1441 -v circle -c black -z 0.075345 -S UP n -t * -s 1440 -v circle -c black -z 0.075345 -S UP n -t * -s 1439 -v circle -c black -z 0.075345 -S UP n -t * -s 1438 -v circle -c black -z 0.075345 -S UP n -t * -s 1437 -v circle -c black -z 0.075345 -S UP n -t * -s 1436 -v circle -c black -z 0.075345 -S UP n -t * -s 1435 -v circle -c black -z 0.075345 -S UP n -t * -s 1434 -v circle -c black -z 0.075345 -S UP n -t * -s 1433 -v circle -c black -z 0.075345 -S UP n -t * -s 1432 -v circle -c black -z 0.075345 -S UP n -t * -s 1431 -v circle -c black -z 0.075345 -S UP n -t * -s 1430 -v circle -c black -z 0.075345 -S UP n -t * -s 1429 -v circle -c black -z 0.075345 -S UP n -t * -s 1428 -v circle -c black -z 0.075345 -S UP n -t * -s 1427 -v circle -c black -z 0.075345 -S UP n -t * -s 1426 -v circle -c black -z 0.075345 -S UP n -t * -s 1425 -v circle -c black -z 0.075345 -S UP n -t * -s 1424 -v circle -c black -z 0.075345 -S UP n -t * -s 1423 -v circle -c black -z 0.075345 -S UP n -t * -s 1421 -v circle -c black -z 0.075345 -S UP n -t * -s 1420 -v circle -c black -z 0.075345 -S UP n -t * -s 1419 -v circle -c black -z 0.075345 -S UP n -t * -s 1418 -v circle -c black -z 0.075345 -S UP n -t * -s 1417 -v circle -c black -z 0.075345 -S UP n -t * -s 1416 -v circle -c black -z 0.075345 -S UP n -t * -s 1413 -v circle -c black -z 0.075345 -S UP n -t * -s 1412 -v circle -c black -z 0.075345 -S UP n -t * -s 1411 -v circle -c black -z 0.075345 -S UP n -t * -s 1410 -v circle -c black -z 0.075345 -S UP n -t * -s 1409 -v circle -c black -z 0.075345 -S UP n -t * -s 1407 -v circle -c black -z 0.075345 -S UP n -t * -s 1406 -v circle -c black -z 0.075345 -S UP n -t * -s 1405 -v circle -c black -z 0.075345 -S UP n -t * -s 1404 -v circle -c black -z 0.075345 -S UP n -t * -s 1403 -v circle -c black -z 0.075345 -S UP n -t * -s 1402 -v circle -c black -z 0.075345 -S UP n -t * -s 1401 -v circle -c black -z 0.075345 -S UP n -t * -s 1400 -v circle -c black -z 0.075345 -S UP n -t * -s 1398 -v circle -c black -z 0.075345 -S UP n -t * -s 1397 -v circle -c black -z 0.075345 -S UP n -t * -s 1396 -v circle -c black -z 0.075345 -S UP n -t * -s 1394 -v circle -c black -z 0.075345 -S UP n -t * -s 1393 -v circle -c black -z 0.075345 -S UP n -t * -s 1391 -v circle -c black -z 0.075345 -S UP n -t * -s 1390 -v circle -c black -z 0.075345 -S UP n -t * -s 1388 -v circle -c black -z 0.075345 -S UP n -t * -s 1387 -v circle -c black -z 0.075345 -S UP n -t * -s 1386 -v circle -c black -z 0.075345 -S UP n -t * -s 1385 -v circle -c black -z 0.075345 -S UP n -t * -s 1383 -v circle -c black -z 0.075345 -S UP n -t * -s 1381 -v circle -c black -z 0.075345 -S UP n -t * -s 1379 -v circle -c black -z 0.075345 -S UP n -t * -s 1378 -v circle -c black -z 0.075345 -S UP n -t * -s 1377 -v circle -c black -z 0.075345 -S UP n -t * -s 1374 -v circle -c black -z 0.075345 -S UP n -t * -s 1373 -v circle -c black -z 0.075345 -S UP n -t * -s 1372 -v circle -c black -z 0.075345 -S UP n -t * -s 1371 -v circle -c black -z 0.075345 -S UP n -t * -s 1370 -v circle -c black -z 0.075345 -S UP n -t * -s 1369 -v circle -c black -z 0.075345 -S UP n -t * -s 1368 -v circle -c black -z 0.075345 -S UP n -t * -s 1367 -v circle -c black -z 0.075345 -S UP n -t * -s 1366 -v circle -c black -z 0.075345 -S UP n -t * -s 1364 -v circle -c black -z 0.075345 -S UP n -t * -s 1361 -v circle -c black -z 0.075345 -S UP n -t * -s 1360 -v circle -c black -z 0.075345 -S UP n -t * -s 1359 -v circle -c black -z 0.075345 -S UP n -t * -s 1358 -v circle -c black -z 0.075345 -S UP n -t * -s 1357 -v circle -c black -z 0.075345 -S UP n -t * -s 1356 -v circle -c black -z 0.075345 -S UP n -t * -s 1355 -v circle -c black -z 0.075345 -S UP n -t * -s 1354 -v circle -c black -z 0.075345 -S UP n -t * -s 1353 -v circle -c black -z 0.075345 -S UP n -t * -s 1352 -v circle -c black -z 0.075345 -S UP n -t * -s 1351 -v circle -c black -z 0.075345 -S UP n -t * -s 1350 -v circle -c black -z 0.075345 -S UP n -t * -s 1349 -v circle -c black -z 0.075345 -S UP n -t * -s 1348 -v circle -c black -z 0.075345 -S UP n -t * -s 1345 -v circle -c black -z 0.075345 -S UP n -t * -s 1344 -v circle -c black -z 0.075345 -S UP n -t * -s 1343 -v circle -c black -z 0.075345 -S UP n -t * -s 1342 -v circle -c black -z 0.075345 -S UP n -t * -s 1341 -v circle -c black -z 0.075345 -S UP n -t * -s 1340 -v circle -c black -z 0.075345 -S UP n -t * -s 1339 -v circle -c black -z 0.075345 -S UP n -t * -s 1337 -v circle -c black -z 0.075345 -S UP n -t * -s 1336 -v circle -c black -z 0.075345 -S UP n -t * -s 1335 -v circle -c black -z 0.075345 -S UP n -t * -s 1334 -v circle -c black -z 0.075345 -S UP n -t * -s 1333 -v circle -c black -z 0.075345 -S UP n -t * -s 1332 -v circle -c black -z 0.075345 -S UP n -t * -s 1330 -v circle -c black -z 0.075345 -S UP n -t * -s 1329 -v circle -c black -z 0.075345 -S UP n -t * -s 1328 -v circle -c black -z 0.075345 -S UP n -t * -s 1327 -v circle -c black -z 0.075345 -S UP n -t * -s 1326 -v circle -c black -z 0.075345 -S UP n -t * -s 1325 -v circle -c black -z 0.075345 -S UP n -t * -s 1324 -v circle -c black -z 0.075345 -S UP n -t * -s 1323 -v circle -c black -z 0.075345 -S UP n -t * -s 1322 -v circle -c black -z 0.075345 -S UP n -t * -s 1321 -v circle -c black -z 0.075345 -S UP n -t * -s 1319 -v circle -c black -z 0.075345 -S UP n -t * -s 1316 -v circle -c black -z 0.075345 -S UP n -t * -s 1313 -v circle -c black -z 0.075345 -S UP n -t * -s 1312 -v circle -c black -z 0.075345 -S UP n -t * -s 1311 -v circle -c black -z 0.075345 -S UP n -t * -s 1310 -v circle -c black -z 0.075345 -S UP n -t * -s 1309 -v circle -c black -z 0.075345 -S UP n -t * -s 1308 -v circle -c black -z 0.075345 -S UP n -t * -s 1307 -v circle -c black -z 0.075345 -S UP n -t * -s 1305 -v circle -c black -z 0.075345 -S UP n -t * -s 1304 -v circle -c black -z 0.075345 -S UP n -t * -s 1303 -v circle -c black -z 0.075345 -S UP n -t * -s 1302 -v circle -c black -z 0.075345 -S UP n -t * -s 1301 -v circle -c black -z 0.075345 -S UP n -t * -s 1300 -v circle -c black -z 0.075345 -S UP n -t * -s 1299 -v circle -c black -z 0.075345 -S UP n -t * -s 1298 -v circle -c black -z 0.075345 -S UP n -t * -s 1297 -v circle -c black -z 0.075345 -S UP n -t * -s 1296 -v circle -c black -z 0.075345 -S UP n -t * -s 1295 -v circle -c black -z 0.075345 -S UP n -t * -s 1294 -v circle -c black -z 0.075345 -S UP n -t * -s 1293 -v circle -c black -z 0.075345 -S UP n -t * -s 1292 -v circle -c black -z 0.075345 -S UP n -t * -s 1291 -v circle -c black -z 0.075345 -S UP n -t * -s 1290 -v circle -c black -z 0.075345 -S UP n -t * -s 1288 -v circle -c black -z 0.075345 -S UP n -t * -s 1287 -v circle -c black -z 0.075345 -S UP n -t * -s 1286 -v circle -c black -z 0.075345 -S UP n -t * -s 1285 -v circle -c black -z 0.075345 -S UP n -t * -s 1284 -v circle -c black -z 0.075345 -S UP n -t * -s 1283 -v circle -c black -z 0.075345 -S UP n -t * -s 1282 -v circle -c black -z 0.075345 -S UP n -t * -s 1281 -v circle -c black -z 0.075345 -S UP n -t * -s 1280 -v circle -c black -z 0.075345 -S UP n -t * -s 1279 -v circle -c black -z 0.075345 -S UP n -t * -s 1278 -v circle -c black -z 0.075345 -S UP n -t * -s 1277 -v circle -c black -z 0.075345 -S UP n -t * -s 1276 -v circle -c black -z 0.075345 -S UP n -t * -s 1275 -v circle -c black -z 0.075345 -S UP n -t * -s 1274 -v circle -c black -z 0.075345 -S UP n -t * -s 1273 -v circle -c black -z 0.075345 -S UP n -t * -s 1272 -v circle -c black -z 0.075345 -S UP n -t * -s 1271 -v circle -c black -z 0.075345 -S UP n -t * -s 1270 -v circle -c black -z 0.075345 -S UP n -t * -s 1269 -v circle -c black -z 0.075345 -S UP n -t * -s 1268 -v circle -c black -z 0.075345 -S UP n -t * -s 1267 -v circle -c black -z 0.075345 -S UP n -t * -s 1266 -v circle -c black -z 0.075345 -S UP n -t * -s 1265 -v circle -c black -z 0.075345 -S UP n -t * -s 1264 -v circle -c black -z 0.075345 -S UP n -t * -s 1263 -v circle -c black -z 0.075345 -S UP n -t * -s 1262 -v circle -c black -z 0.075345 -S UP n -t * -s 1258 -v circle -c black -z 0.075345 -S UP n -t * -s 1256 -v circle -c black -z 0.075345 -S UP n -t * -s 1255 -v circle -c black -z 0.075345 -S UP n -t * -s 1254 -v circle -c black -z 0.075345 -S UP n -t * -s 1253 -v circle -c black -z 0.075345 -S UP n -t * -s 1252 -v circle -c black -z 0.075345 -S UP n -t * -s 1251 -v circle -c black -z 0.075345 -S UP n -t * -s 1250 -v circle -c black -z 0.075345 -S UP n -t * -s 1249 -v circle -c black -z 0.075345 -S UP n -t * -s 1248 -v circle -c black -z 0.075345 -S UP n -t * -s 1247 -v circle -c black -z 0.075345 -S UP n -t * -s 1245 -v circle -c black -z 0.075345 -S UP n -t * -s 1244 -v circle -c black -z 0.075345 -S UP n -t * -s 1243 -v circle -c black -z 0.075345 -S UP n -t * -s 1241 -v circle -c black -z 0.075345 -S UP n -t * -s 1240 -v circle -c black -z 0.075345 -S UP n -t * -s 1239 -v circle -c black -z 0.075345 -S UP n -t * -s 1238 -v circle -c black -z 0.075345 -S UP n -t * -s 1237 -v circle -c black -z 0.075345 -S UP n -t * -s 1236 -v circle -c black -z 0.075345 -S UP n -t * -s 1235 -v circle -c black -z 0.075345 -S UP n -t * -s 1234 -v circle -c black -z 0.075345 -S UP n -t * -s 1233 -v circle -c black -z 0.075345 -S UP n -t * -s 1232 -v circle -c black -z 0.075345 -S UP n -t * -s 1231 -v circle -c black -z 0.075345 -S UP n -t * -s 1230 -v circle -c black -z 0.075345 -S UP n -t * -s 1229 -v circle -c black -z 0.075345 -S UP n -t * -s 1228 -v circle -c black -z 0.075345 -S UP n -t * -s 1227 -v circle -c black -z 0.075345 -S UP n -t * -s 1226 -v circle -c black -z 0.075345 -S UP n -t * -s 1225 -v circle -c black -z 0.075345 -S UP n -t * -s 1224 -v circle -c black -z 0.075345 -S UP n -t * -s 1223 -v circle -c black -z 0.075345 -S UP n -t * -s 1222 -v circle -c black -z 0.075345 -S UP n -t * -s 1221 -v circle -c black -z 0.075345 -S UP n -t * -s 1220 -v circle -c black -z 0.075345 -S UP n -t * -s 1219 -v circle -c black -z 0.075345 -S UP n -t * -s 1218 -v circle -c black -z 0.075345 -S UP n -t * -s 1217 -v circle -c black -z 0.075345 -S UP n -t * -s 1216 -v circle -c black -z 0.075345 -S UP n -t * -s 1215 -v circle -c black -z 0.075345 -S UP n -t * -s 1214 -v circle -c black -z 0.075345 -S UP n -t * -s 1213 -v circle -c black -z 0.075345 -S UP n -t * -s 1212 -v circle -c black -z 0.075345 -S UP n -t * -s 1211 -v circle -c black -z 0.075345 -S UP n -t * -s 1210 -v circle -c black -z 0.075345 -S UP n -t * -s 1209 -v circle -c black -z 0.075345 -S UP n -t * -s 1207 -v circle -c black -z 0.075345 -S UP n -t * -s 1206 -v circle -c black -z 0.075345 -S UP n -t * -s 1205 -v circle -c black -z 0.075345 -S UP n -t * -s 1203 -v circle -c black -z 0.075345 -S UP n -t * -s 1201 -v circle -c black -z 0.075345 -S UP n -t * -s 1200 -v circle -c black -z 0.075345 -S UP n -t * -s 1199 -v circle -c black -z 0.075345 -S UP n -t * -s 1198 -v circle -c black -z 0.075345 -S UP n -t * -s 1197 -v circle -c black -z 0.075345 -S UP n -t * -s 1196 -v circle -c black -z 0.075345 -S UP n -t * -s 1195 -v circle -c black -z 0.075345 -S UP n -t * -s 1194 -v circle -c black -z 0.075345 -S UP n -t * -s 1193 -v circle -c black -z 0.075345 -S UP n -t * -s 1192 -v circle -c black -z 0.075345 -S UP n -t * -s 1191 -v circle -c black -z 0.075345 -S UP n -t * -s 1190 -v circle -c black -z 0.075345 -S UP n -t * -s 1189 -v circle -c black -z 0.075345 -S UP n -t * -s 1187 -v circle -c black -z 0.075345 -S UP n -t * -s 1186 -v circle -c black -z 0.075345 -S UP n -t * -s 1184 -v circle -c black -z 0.075345 -S UP n -t * -s 1183 -v circle -c black -z 0.075345 -S UP n -t * -s 1182 -v circle -c black -z 0.075345 -S UP n -t * -s 1181 -v circle -c black -z 0.075345 -S UP n -t * -s 1180 -v circle -c black -z 0.075345 -S UP n -t * -s 1178 -v circle -c black -z 0.075345 -S UP n -t * -s 1177 -v circle -c black -z 0.075345 -S UP n -t * -s 1176 -v circle -c black -z 0.075345 -S UP n -t * -s 1175 -v circle -c black -z 0.075345 -S UP n -t * -s 1174 -v circle -c black -z 0.075345 -S UP n -t * -s 1173 -v circle -c black -z 0.075345 -S UP n -t * -s 1172 -v circle -c black -z 0.075345 -S UP n -t * -s 1171 -v circle -c black -z 0.075345 -S UP n -t * -s 1170 -v circle -c black -z 0.075345 -S UP n -t * -s 1169 -v circle -c black -z 0.075345 -S UP n -t * -s 1168 -v circle -c black -z 0.075345 -S UP n -t * -s 1167 -v circle -c black -z 0.075345 -S UP n -t * -s 1165 -v circle -c black -z 0.075345 -S UP n -t * -s 1164 -v circle -c black -z 0.075345 -S UP n -t * -s 1163 -v circle -c black -z 0.075345 -S UP n -t * -s 1162 -v circle -c black -z 0.075345 -S UP n -t * -s 1161 -v circle -c black -z 0.075345 -S UP n -t * -s 1160 -v circle -c black -z 0.075345 -S UP n -t * -s 1159 -v circle -c black -z 0.075345 -S UP n -t * -s 1158 -v circle -c black -z 0.075345 -S UP n -t * -s 1157 -v circle -c black -z 0.075345 -S UP n -t * -s 1156 -v circle -c black -z 0.075345 -S UP n -t * -s 1155 -v circle -c black -z 0.075345 -S UP n -t * -s 1154 -v circle -c black -z 0.075345 -S UP n -t * -s 1153 -v circle -c black -z 0.075345 -S UP n -t * -s 1152 -v circle -c black -z 0.075345 -S UP n -t * -s 1150 -v circle -c black -z 0.075345 -S UP n -t * -s 1147 -v circle -c black -z 0.075345 -S UP n -t * -s 1146 -v circle -c black -z 0.075345 -S UP n -t * -s 1145 -v circle -c black -z 0.075345 -S UP n -t * -s 1144 -v circle -c black -z 0.075345 -S UP n -t * -s 1143 -v circle -c black -z 0.075345 -S UP n -t * -s 1142 -v circle -c black -z 0.075345 -S UP n -t * -s 1141 -v circle -c black -z 0.075345 -S UP n -t * -s 1140 -v circle -c black -z 0.075345 -S UP n -t * -s 1139 -v circle -c black -z 0.075345 -S UP n -t * -s 1137 -v circle -c black -z 0.075345 -S UP n -t * -s 1136 -v circle -c black -z 0.075345 -S UP n -t * -s 1134 -v circle -c black -z 0.075345 -S UP n -t * -s 1133 -v circle -c black -z 0.075345 -S UP n -t * -s 1132 -v circle -c black -z 0.075345 -S UP n -t * -s 1130 -v circle -c black -z 0.075345 -S UP n -t * -s 1129 -v circle -c black -z 0.075345 -S UP n -t * -s 1126 -v circle -c black -z 0.075345 -S UP n -t * -s 1125 -v circle -c black -z 0.075345 -S UP n -t * -s 1124 -v circle -c black -z 0.075345 -S UP n -t * -s 1123 -v circle -c black -z 0.075345 -S UP n -t * -s 1122 -v circle -c black -z 0.075345 -S UP n -t * -s 1120 -v circle -c black -z 0.075345 -S UP n -t * -s 1119 -v circle -c black -z 0.075345 -S UP n -t * -s 1118 -v circle -c black -z 0.075345 -S UP n -t * -s 1116 -v circle -c black -z 0.075345 -S UP n -t * -s 1115 -v circle -c black -z 0.075345 -S UP n -t * -s 1114 -v circle -c black -z 0.075345 -S UP n -t * -s 1113 -v circle -c black -z 0.075345 -S UP n -t * -s 1112 -v circle -c black -z 0.075345 -S UP n -t * -s 1111 -v circle -c black -z 0.075345 -S UP n -t * -s 1110 -v circle -c black -z 0.075345 -S UP n -t * -s 1109 -v circle -c black -z 0.075345 -S UP n -t * -s 1108 -v circle -c black -z 0.075345 -S UP n -t * -s 1107 -v circle -c black -z 0.075345 -S UP n -t * -s 1106 -v circle -c black -z 0.075345 -S UP n -t * -s 1105 -v circle -c black -z 0.075345 -S UP n -t * -s 1104 -v circle -c black -z 0.075345 -S UP n -t * -s 1103 -v circle -c black -z 0.075345 -S UP n -t * -s 1102 -v circle -c black -z 0.075345 -S UP n -t * -s 1101 -v circle -c black -z 0.075345 -S UP n -t * -s 1100 -v circle -c black -z 0.075345 -S UP n -t * -s 1099 -v circle -c black -z 0.075345 -S UP n -t * -s 1098 -v circle -c black -z 0.075345 -S UP n -t * -s 1097 -v circle -c black -z 0.075345 -S UP n -t * -s 1095 -v circle -c black -z 0.075345 -S UP n -t * -s 1094 -v circle -c black -z 0.075345 -S UP n -t * -s 1092 -v circle -c black -z 0.075345 -S UP n -t * -s 1091 -v circle -c black -z 0.075345 -S UP n -t * -s 1090 -v circle -c black -z 0.075345 -S UP n -t * -s 1089 -v circle -c black -z 0.075345 -S UP n -t * -s 1088 -v circle -c black -z 0.075345 -S UP n -t * -s 1087 -v circle -c black -z 0.075345 -S UP n -t * -s 1085 -v circle -c black -z 0.075345 -S UP n -t * -s 1084 -v circle -c black -z 0.075345 -S UP n -t * -s 1083 -v circle -c black -z 0.075345 -S UP n -t * -s 1082 -v circle -c black -z 0.075345 -S UP n -t * -s 1081 -v circle -c black -z 0.075345 -S UP n -t * -s 1080 -v circle -c black -z 0.075345 -S UP n -t * -s 1079 -v circle -c black -z 0.075345 -S UP n -t * -s 1077 -v circle -c black -z 0.075345 -S UP n -t * -s 1076 -v circle -c black -z 0.075345 -S UP n -t * -s 1074 -v circle -c black -z 0.075345 -S UP n -t * -s 1072 -v circle -c black -z 0.075345 -S UP n -t * -s 1071 -v circle -c black -z 0.075345 -S UP n -t * -s 1070 -v circle -c black -z 0.075345 -S UP n -t * -s 1069 -v circle -c black -z 0.075345 -S UP n -t * -s 1068 -v circle -c black -z 0.075345 -S UP n -t * -s 1067 -v circle -c black -z 0.075345 -S UP n -t * -s 1065 -v circle -c black -z 0.075345 -S UP n -t * -s 1064 -v circle -c black -z 0.075345 -S UP n -t * -s 1063 -v circle -c black -z 0.075345 -S UP n -t * -s 1062 -v circle -c black -z 0.075345 -S UP n -t * -s 1061 -v circle -c black -z 0.075345 -S UP n -t * -s 1058 -v circle -c black -z 0.075345 -S UP n -t * -s 1057 -v circle -c black -z 0.075345 -S UP n -t * -s 1056 -v circle -c black -z 0.075345 -S UP n -t * -s 1055 -v circle -c black -z 0.075345 -S UP n -t * -s 1054 -v circle -c black -z 0.075345 -S UP n -t * -s 1053 -v circle -c black -z 0.075345 -S UP n -t * -s 1052 -v circle -c black -z 0.075345 -S UP n -t * -s 1051 -v circle -c black -z 0.075345 -S UP n -t * -s 1050 -v circle -c black -z 0.075345 -S UP n -t * -s 1049 -v circle -c black -z 0.075345 -S UP n -t * -s 1048 -v circle -c black -z 0.075345 -S UP n -t * -s 1045 -v circle -c black -z 0.075345 -S UP n -t * -s 1044 -v circle -c black -z 0.075345 -S UP n -t * -s 1042 -v circle -c black -z 0.075345 -S UP n -t * -s 1041 -v circle -c black -z 0.075345 -S UP n -t * -s 1040 -v circle -c black -z 0.075345 -S UP n -t * -s 1039 -v circle -c black -z 0.075345 -S UP n -t * -s 1038 -v circle -c black -z 0.075345 -S UP n -t * -s 1037 -v circle -c black -z 0.075345 -S UP n -t * -s 1036 -v circle -c black -z 0.075345 -S UP n -t * -s 1035 -v circle -c black -z 0.075345 -S UP n -t * -s 1034 -v circle -c black -z 0.075345 -S UP n -t * -s 1033 -v circle -c black -z 0.075345 -S UP n -t * -s 1032 -v circle -c black -z 0.075345 -S UP n -t * -s 1031 -v circle -c black -z 0.075345 -S UP n -t * -s 1030 -v circle -c black -z 0.075345 -S UP n -t * -s 1029 -v circle -c black -z 0.075345 -S UP n -t * -s 1028 -v circle -c black -z 0.075345 -S UP n -t * -s 1027 -v circle -c black -z 0.075345 -S UP n -t * -s 1026 -v circle -c black -z 0.075345 -S UP n -t * -s 1024 -v circle -c black -z 0.075345 -S UP n -t * -s 1023 -v circle -c black -z 0.075345 -S UP n -t * -s 1022 -v circle -c black -z 0.075345 -S UP n -t * -s 1021 -v circle -c black -z 0.075345 -S UP n -t * -s 1020 -v circle -c black -z 0.075345 -S UP n -t * -s 1019 -v circle -c black -z 0.075345 -S UP n -t * -s 1018 -v circle -c black -z 0.075345 -S UP n -t * -s 1017 -v circle -c black -z 0.075345 -S UP n -t * -s 1016 -v circle -c black -z 0.075345 -S UP n -t * -s 1015 -v circle -c black -z 0.075345 -S UP n -t * -s 1014 -v circle -c black -z 0.075345 -S UP n -t * -s 1012 -v circle -c black -z 0.075345 -S UP n -t * -s 1011 -v circle -c black -z 0.075345 -S UP n -t * -s 1010 -v circle -c black -z 0.075345 -S UP n -t * -s 1009 -v circle -c black -z 0.075345 -S UP n -t * -s 1005 -v circle -c black -z 0.075345 -S UP n -t * -s 1001 -v circle -c black -z 0.075345 -S UP n -t * -s 1000 -v circle -c black -z 0.075345 -S UP n -t * -s 999 -v circle -c black -z 0.075345 -S UP n -t * -s 998 -v circle -c black -z 0.075345 -S UP n -t * -s 997 -v circle -c black -z 0.075345 -S UP n -t * -s 996 -v circle -c black -z 0.075345 -S UP n -t * -s 995 -v circle -c black -z 0.075345 -S UP n -t * -s 994 -v circle -c black -z 0.075345 -S UP n -t * -s 993 -v circle -c black -z 0.075345 -S UP n -t * -s 991 -v circle -c black -z 0.075345 -S UP n -t * -s 985 -v circle -c black -z 0.075345 -S UP n -t * -s 984 -v circle -c black -z 0.075345 -S UP n -t * -s 983 -v circle -c black -z 0.075345 -S UP n -t * -s 982 -v circle -c black -z 0.075345 -S UP n -t * -s 981 -v circle -c black -z 0.075345 -S UP n -t * -s 980 -v circle -c black -z 0.075345 -S UP n -t * -s 979 -v circle -c black -z 0.075345 -S UP n -t * -s 978 -v circle -c black -z 0.075345 -S UP n -t * -s 977 -v circle -c black -z 0.075345 -S UP n -t * -s 975 -v circle -c black -z 0.075345 -S UP n -t * -s 974 -v circle -c black -z 0.075345 -S UP n -t * -s 973 -v circle -c black -z 0.075345 -S UP n -t * -s 972 -v circle -c black -z 0.075345 -S UP n -t * -s 971 -v circle -c black -z 0.075345 -S UP n -t * -s 970 -v circle -c black -z 0.075345 -S UP n -t * -s 969 -v circle -c black -z 0.075345 -S UP n -t * -s 968 -v circle -c black -z 0.075345 -S UP n -t * -s 966 -v circle -c black -z 0.075345 -S UP n -t * -s 965 -v circle -c black -z 0.075345 -S UP n -t * -s 964 -v circle -c black -z 0.075345 -S UP n -t * -s 963 -v circle -c black -z 0.075345 -S UP n -t * -s 962 -v circle -c black -z 0.075345 -S UP n -t * -s 960 -v circle -c black -z 0.075345 -S UP n -t * -s 959 -v circle -c black -z 0.075345 -S UP n -t * -s 957 -v circle -c black -z 0.075345 -S UP n -t * -s 956 -v circle -c black -z 0.075345 -S UP n -t * -s 955 -v circle -c black -z 0.075345 -S UP n -t * -s 954 -v circle -c black -z 0.075345 -S UP n -t * -s 953 -v circle -c black -z 0.075345 -S UP n -t * -s 952 -v circle -c black -z 0.075345 -S UP n -t * -s 951 -v circle -c black -z 0.075345 -S UP n -t * -s 950 -v circle -c black -z 0.075345 -S UP n -t * -s 949 -v circle -c black -z 0.075345 -S UP n -t * -s 948 -v circle -c black -z 0.075345 -S UP n -t * -s 947 -v circle -c black -z 0.075345 -S UP n -t * -s 946 -v circle -c black -z 0.075345 -S UP n -t * -s 945 -v circle -c black -z 0.075345 -S UP n -t * -s 944 -v circle -c black -z 0.075345 -S UP n -t * -s 943 -v circle -c black -z 0.075345 -S UP n -t * -s 942 -v circle -c black -z 0.075345 -S UP n -t * -s 941 -v circle -c black -z 0.075345 -S UP n -t * -s 940 -v circle -c black -z 0.075345 -S UP n -t * -s 939 -v circle -c black -z 0.075345 -S UP n -t * -s 938 -v circle -c black -z 0.075345 -S UP n -t * -s 936 -v circle -c black -z 0.075345 -S UP n -t * -s 935 -v circle -c black -z 0.075345 -S UP n -t * -s 934 -v circle -c black -z 0.075345 -S UP n -t * -s 931 -v circle -c black -z 0.075345 -S UP n -t * -s 930 -v circle -c black -z 0.075345 -S UP n -t * -s 929 -v circle -c black -z 0.075345 -S UP n -t * -s 928 -v circle -c black -z 0.075345 -S UP n -t * -s 927 -v circle -c black -z 0.075345 -S UP n -t * -s 926 -v circle -c black -z 0.075345 -S UP n -t * -s 925 -v circle -c black -z 0.075345 -S UP n -t * -s 924 -v circle -c black -z 0.075345 -S UP n -t * -s 923 -v circle -c black -z 0.075345 -S UP n -t * -s 922 -v circle -c black -z 0.075345 -S UP n -t * -s 921 -v circle -c black -z 0.075345 -S UP n -t * -s 920 -v circle -c black -z 0.075345 -S UP n -t * -s 919 -v circle -c black -z 0.075345 -S UP n -t * -s 918 -v circle -c black -z 0.075345 -S UP n -t * -s 917 -v circle -c black -z 0.075345 -S UP n -t * -s 915 -v circle -c black -z 0.075345 -S UP n -t * -s 914 -v circle -c black -z 0.075345 -S UP n -t * -s 913 -v circle -c black -z 0.075345 -S UP n -t * -s 912 -v circle -c black -z 0.075345 -S UP n -t * -s 911 -v circle -c black -z 0.075345 -S UP n -t * -s 910 -v circle -c black -z 0.075345 -S UP n -t * -s 909 -v circle -c black -z 0.075345 -S UP n -t * -s 908 -v circle -c black -z 0.075345 -S UP n -t * -s 907 -v circle -c black -z 0.075345 -S UP n -t * -s 906 -v circle -c black -z 0.075345 -S UP n -t * -s 905 -v circle -c black -z 0.075345 -S UP n -t * -s 904 -v circle -c black -z 0.075345 -S UP n -t * -s 903 -v circle -c black -z 0.075345 -S UP n -t * -s 902 -v circle -c black -z 0.075345 -S UP n -t * -s 901 -v circle -c black -z 0.075345 -S UP n -t * -s 900 -v circle -c black -z 0.075345 -S UP n -t * -s 899 -v circle -c black -z 0.075345 -S UP n -t * -s 898 -v circle -c black -z 0.075345 -S UP n -t * -s 897 -v circle -c black -z 0.075345 -S UP n -t * -s 896 -v circle -c black -z 0.075345 -S UP n -t * -s 895 -v circle -c black -z 0.075345 -S UP n -t * -s 894 -v circle -c black -z 0.075345 -S UP n -t * -s 893 -v circle -c black -z 0.075345 -S UP n -t * -s 892 -v circle -c black -z 0.075345 -S UP n -t * -s 891 -v circle -c black -z 0.075345 -S UP n -t * -s 890 -v circle -c black -z 0.075345 -S UP n -t * -s 889 -v circle -c black -z 0.075345 -S UP n -t * -s 888 -v circle -c black -z 0.075345 -S UP n -t * -s 886 -v circle -c black -z 0.075345 -S UP n -t * -s 885 -v circle -c black -z 0.075345 -S UP n -t * -s 884 -v circle -c black -z 0.075345 -S UP n -t * -s 883 -v circle -c black -z 0.075345 -S UP n -t * -s 882 -v circle -c black -z 0.075345 -S UP n -t * -s 881 -v circle -c black -z 0.075345 -S UP n -t * -s 880 -v circle -c black -z 0.075345 -S UP n -t * -s 879 -v circle -c black -z 0.075345 -S UP n -t * -s 878 -v circle -c black -z 0.075345 -S UP n -t * -s 877 -v circle -c black -z 0.075345 -S UP n -t * -s 876 -v circle -c black -z 0.075345 -S UP n -t * -s 875 -v circle -c black -z 0.075345 -S UP n -t * -s 874 -v circle -c black -z 0.075345 -S UP n -t * -s 873 -v circle -c black -z 0.075345 -S UP n -t * -s 872 -v circle -c black -z 0.075345 -S UP n -t * -s 870 -v circle -c black -z 0.075345 -S UP n -t * -s 869 -v circle -c black -z 0.075345 -S UP n -t * -s 868 -v circle -c black -z 0.075345 -S UP n -t * -s 867 -v circle -c black -z 0.075345 -S UP n -t * -s 866 -v circle -c black -z 0.075345 -S UP n -t * -s 865 -v circle -c black -z 0.075345 -S UP n -t * -s 864 -v circle -c black -z 0.075345 -S UP n -t * -s 863 -v circle -c black -z 0.075345 -S UP n -t * -s 862 -v circle -c black -z 0.075345 -S UP n -t * -s 861 -v circle -c black -z 0.075345 -S UP n -t * -s 860 -v circle -c black -z 0.075345 -S UP n -t * -s 859 -v circle -c black -z 0.075345 -S UP n -t * -s 858 -v circle -c black -z 0.075345 -S UP n -t * -s 855 -v circle -c black -z 0.075345 -S UP n -t * -s 854 -v circle -c black -z 0.075345 -S UP n -t * -s 853 -v circle -c black -z 0.075345 -S UP n -t * -s 852 -v circle -c black -z 0.075345 -S UP n -t * -s 850 -v circle -c black -z 0.075345 -S UP n -t * -s 849 -v circle -c black -z 0.075345 -S UP n -t * -s 846 -v circle -c black -z 0.075345 -S UP n -t * -s 845 -v circle -c black -z 0.075345 -S UP n -t * -s 844 -v circle -c black -z 0.075345 -S UP n -t * -s 843 -v circle -c black -z 0.075345 -S UP n -t * -s 842 -v circle -c black -z 0.075345 -S UP n -t * -s 841 -v circle -c black -z 0.075345 -S UP n -t * -s 840 -v circle -c black -z 0.075345 -S UP n -t * -s 838 -v circle -c black -z 0.075345 -S UP n -t * -s 837 -v circle -c black -z 0.075345 -S UP n -t * -s 836 -v circle -c black -z 0.075345 -S UP n -t * -s 835 -v circle -c black -z 0.075345 -S UP n -t * -s 834 -v circle -c black -z 0.075345 -S UP n -t * -s 833 -v circle -c black -z 0.075345 -S UP n -t * -s 832 -v circle -c black -z 0.075345 -S UP n -t * -s 831 -v circle -c black -z 0.075345 -S UP n -t * -s 830 -v circle -c black -z 0.075345 -S UP n -t * -s 829 -v circle -c black -z 0.075345 -S UP n -t * -s 827 -v circle -c black -z 0.075345 -S UP n -t * -s 826 -v circle -c black -z 0.075345 -S UP n -t * -s 825 -v circle -c black -z 0.075345 -S UP n -t * -s 822 -v circle -c black -z 0.075345 -S UP n -t * -s 821 -v circle -c black -z 0.075345 -S UP n -t * -s 820 -v circle -c black -z 0.075345 -S UP n -t * -s 819 -v circle -c black -z 0.075345 -S UP n -t * -s 818 -v circle -c black -z 0.075345 -S UP n -t * -s 817 -v circle -c black -z 0.075345 -S UP n -t * -s 814 -v circle -c black -z 0.075345 -S UP n -t * -s 813 -v circle -c black -z 0.075345 -S UP n -t * -s 812 -v circle -c black -z 0.075345 -S UP n -t * -s 811 -v circle -c black -z 0.075345 -S UP n -t * -s 809 -v circle -c black -z 0.075345 -S UP n -t * -s 808 -v circle -c black -z 0.075345 -S UP n -t * -s 807 -v circle -c black -z 0.075345 -S UP n -t * -s 806 -v circle -c black -z 0.075345 -S UP n -t * -s 805 -v circle -c black -z 0.075345 -S UP n -t * -s 804 -v circle -c black -z 0.075345 -S UP n -t * -s 803 -v circle -c black -z 0.075345 -S UP n -t * -s 802 -v circle -c black -z 0.075345 -S UP n -t * -s 801 -v circle -c black -z 0.075345 -S UP n -t * -s 800 -v circle -c black -z 0.075345 -S UP n -t * -s 799 -v circle -c black -z 0.075345 -S UP n -t * -s 798 -v circle -c black -z 0.075345 -S UP n -t * -s 797 -v circle -c black -z 0.075345 -S UP n -t * -s 796 -v circle -c black -z 0.075345 -S UP n -t * -s 795 -v circle -c black -z 0.075345 -S UP n -t * -s 794 -v circle -c black -z 0.075345 -S UP n -t * -s 793 -v circle -c black -z 0.075345 -S UP n -t * -s 792 -v circle -c black -z 0.075345 -S UP n -t * -s 791 -v circle -c black -z 0.075345 -S UP n -t * -s 790 -v circle -c black -z 0.075345 -S UP n -t * -s 789 -v circle -c black -z 0.075345 -S UP n -t * -s 788 -v circle -c black -z 0.075345 -S UP n -t * -s 787 -v circle -c black -z 0.075345 -S UP n -t * -s 785 -v circle -c black -z 0.075345 -S UP n -t * -s 784 -v circle -c black -z 0.075345 -S UP n -t * -s 783 -v circle -c black -z 0.075345 -S UP n -t * -s 781 -v circle -c black -z 0.075345 -S UP n -t * -s 780 -v circle -c black -z 0.075345 -S UP n -t * -s 779 -v circle -c black -z 0.075345 -S UP n -t * -s 778 -v circle -c black -z 0.075345 -S UP n -t * -s 777 -v circle -c black -z 0.075345 -S UP n -t * -s 772 -v circle -c black -z 0.075345 -S UP n -t * -s 771 -v circle -c black -z 0.075345 -S UP n -t * -s 770 -v circle -c black -z 0.075345 -S UP n -t * -s 769 -v circle -c black -z 0.075345 -S UP n -t * -s 768 -v circle -c black -z 0.075345 -S UP n -t * -s 767 -v circle -c black -z 0.075345 -S UP n -t * -s 765 -v circle -c black -z 0.075345 -S UP n -t * -s 764 -v circle -c black -z 0.075345 -S UP n -t * -s 763 -v circle -c black -z 0.075345 -S UP n -t * -s 762 -v circle -c black -z 0.075345 -S UP n -t * -s 761 -v circle -c black -z 0.075345 -S UP n -t * -s 760 -v circle -c black -z 0.075345 -S UP n -t * -s 759 -v circle -c black -z 0.075345 -S UP n -t * -s 758 -v circle -c black -z 0.075345 -S UP n -t * -s 757 -v circle -c black -z 0.075345 -S UP n -t * -s 756 -v circle -c black -z 0.075345 -S UP n -t * -s 755 -v circle -c black -z 0.075345 -S UP n -t * -s 754 -v circle -c black -z 0.075345 -S UP n -t * -s 753 -v circle -c black -z 0.075345 -S UP n -t * -s 752 -v circle -c black -z 0.075345 -S UP n -t * -s 751 -v circle -c black -z 0.075345 -S UP n -t * -s 750 -v circle -c black -z 0.075345 -S UP n -t * -s 749 -v circle -c black -z 0.075345 -S UP n -t * -s 748 -v circle -c black -z 0.075345 -S UP n -t * -s 747 -v circle -c black -z 0.075345 -S UP n -t * -s 746 -v circle -c black -z 0.075345 -S UP n -t * -s 741 -v circle -c black -z 0.075345 -S UP n -t * -s 740 -v circle -c black -z 0.075345 -S UP n -t * -s 739 -v circle -c black -z 0.075345 -S UP n -t * -s 738 -v circle -c black -z 0.075345 -S UP n -t * -s 737 -v circle -c black -z 0.075345 -S UP n -t * -s 736 -v circle -c black -z 0.075345 -S UP n -t * -s 735 -v circle -c black -z 0.075345 -S UP n -t * -s 734 -v circle -c black -z 0.075345 -S UP n -t * -s 733 -v circle -c black -z 0.075345 -S UP n -t * -s 732 -v circle -c black -z 0.075345 -S UP n -t * -s 731 -v circle -c black -z 0.075345 -S UP n -t * -s 730 -v circle -c black -z 0.075345 -S UP n -t * -s 729 -v circle -c black -z 0.075345 -S UP n -t * -s 728 -v circle -c black -z 0.075345 -S UP n -t * -s 727 -v circle -c black -z 0.075345 -S UP n -t * -s 726 -v circle -c black -z 0.075345 -S UP n -t * -s 725 -v circle -c black -z 0.075345 -S UP n -t * -s 724 -v circle -c black -z 0.075345 -S UP n -t * -s 723 -v circle -c black -z 0.075345 -S UP n -t * -s 722 -v circle -c black -z 0.075345 -S UP n -t * -s 721 -v circle -c black -z 0.075345 -S UP n -t * -s 720 -v circle -c black -z 0.075345 -S UP n -t * -s 719 -v circle -c black -z 0.075345 -S UP n -t * -s 718 -v circle -c black -z 0.075345 -S UP n -t * -s 717 -v circle -c black -z 0.075345 -S UP n -t * -s 716 -v circle -c black -z 0.075345 -S UP n -t * -s 715 -v circle -c black -z 0.075345 -S UP n -t * -s 714 -v circle -c black -z 0.075345 -S UP n -t * -s 713 -v circle -c black -z 0.075345 -S UP n -t * -s 712 -v circle -c black -z 0.075345 -S UP n -t * -s 711 -v circle -c black -z 0.075345 -S UP n -t * -s 710 -v circle -c black -z 0.075345 -S UP n -t * -s 709 -v circle -c black -z 0.075345 -S UP n -t * -s 700 -v circle -c black -z 0.075345 -S UP n -t * -s 699 -v circle -c black -z 0.075345 -S UP n -t * -s 698 -v circle -c black -z 0.075345 -S UP n -t * -s 697 -v circle -c black -z 0.075345 -S UP n -t * -s 696 -v circle -c black -z 0.075345 -S UP n -t * -s 695 -v circle -c black -z 0.075345 -S UP n -t * -s 694 -v circle -c black -z 0.075345 -S UP n -t * -s 693 -v circle -c black -z 0.075345 -S UP n -t * -s 692 -v circle -c black -z 0.075345 -S UP n -t * -s 690 -v circle -c black -z 0.075345 -S UP n -t * -s 689 -v circle -c black -z 0.075345 -S UP n -t * -s 688 -v circle -c black -z 0.075345 -S UP n -t * -s 687 -v circle -c black -z 0.075345 -S UP n -t * -s 686 -v circle -c black -z 0.075345 -S UP n -t * -s 685 -v circle -c black -z 0.075345 -S UP n -t * -s 684 -v circle -c black -z 0.075345 -S UP n -t * -s 683 -v circle -c black -z 0.075345 -S UP n -t * -s 682 -v circle -c black -z 0.075345 -S UP n -t * -s 681 -v circle -c black -z 0.075345 -S UP n -t * -s 680 -v circle -c black -z 0.075345 -S UP n -t * -s 679 -v circle -c black -z 0.075345 -S UP n -t * -s 678 -v circle -c black -z 0.075345 -S UP n -t * -s 677 -v circle -c black -z 0.075345 -S UP n -t * -s 676 -v circle -c black -z 0.075345 -S UP n -t * -s 675 -v circle -c black -z 0.075345 -S UP n -t * -s 674 -v circle -c black -z 0.075345 -S UP n -t * -s 673 -v circle -c black -z 0.075345 -S UP n -t * -s 672 -v circle -c black -z 0.075345 -S UP n -t * -s 671 -v circle -c black -z 0.075345 -S UP n -t * -s 670 -v circle -c black -z 0.075345 -S UP n -t * -s 669 -v circle -c black -z 0.075345 -S UP n -t * -s 668 -v circle -c black -z 0.075345 -S UP n -t * -s 667 -v circle -c black -z 0.075345 -S UP n -t * -s 666 -v circle -c black -z 0.075345 -S UP n -t * -s 665 -v circle -c black -z 0.075345 -S UP n -t * -s 664 -v circle -c black -z 0.075345 -S UP n -t * -s 663 -v circle -c black -z 0.075345 -S UP n -t * -s 662 -v circle -c black -z 0.075345 -S UP n -t * -s 661 -v circle -c black -z 0.075345 -S UP n -t * -s 660 -v circle -c black -z 0.075345 -S UP n -t * -s 659 -v circle -c black -z 0.075345 -S UP n -t * -s 658 -v circle -c black -z 0.075345 -S UP n -t * -s 657 -v circle -c black -z 0.075345 -S UP n -t * -s 656 -v circle -c black -z 0.075345 -S UP n -t * -s 655 -v circle -c black -z 0.075345 -S UP n -t * -s 654 -v circle -c black -z 0.075345 -S UP n -t * -s 653 -v circle -c black -z 0.075345 -S UP n -t * -s 652 -v circle -c black -z 0.075345 -S UP n -t * -s 651 -v circle -c black -z 0.075345 -S UP n -t * -s 650 -v circle -c black -z 0.075345 -S UP n -t * -s 649 -v circle -c black -z 0.075345 -S UP n -t * -s 648 -v circle -c black -z 0.075345 -S UP n -t * -s 647 -v circle -c black -z 0.075345 -S UP n -t * -s 646 -v circle -c black -z 0.075345 -S UP n -t * -s 645 -v circle -c black -z 0.075345 -S UP n -t * -s 644 -v circle -c black -z 0.075345 -S UP n -t * -s 643 -v circle -c black -z 0.075345 -S UP n -t * -s 642 -v circle -c black -z 0.075345 -S UP n -t * -s 641 -v circle -c black -z 0.075345 -S UP n -t * -s 640 -v circle -c black -z 0.075345 -S UP n -t * -s 639 -v circle -c black -z 0.075345 -S UP n -t * -s 638 -v circle -c black -z 0.075345 -S UP n -t * -s 637 -v circle -c black -z 0.075345 -S UP n -t * -s 635 -v circle -c black -z 0.075345 -S UP n -t * -s 634 -v circle -c black -z 0.075345 -S UP n -t * -s 633 -v circle -c black -z 0.075345 -S UP n -t * -s 632 -v circle -c black -z 0.075345 -S UP n -t * -s 631 -v circle -c black -z 0.075345 -S UP n -t * -s 630 -v circle -c black -z 0.075345 -S UP n -t * -s 629 -v circle -c black -z 0.075345 -S UP n -t * -s 628 -v circle -c black -z 0.075345 -S UP n -t * -s 627 -v circle -c black -z 0.075345 -S UP n -t * -s 626 -v circle -c black -z 0.075345 -S UP n -t * -s 625 -v circle -c black -z 0.075345 -S UP n -t * -s 624 -v circle -c black -z 0.075345 -S UP n -t * -s 623 -v circle -c black -z 0.075345 -S UP n -t * -s 622 -v circle -c black -z 0.075345 -S UP n -t * -s 621 -v circle -c black -z 0.075345 -S UP n -t * -s 620 -v circle -c black -z 0.075345 -S UP n -t * -s 619 -v circle -c black -z 0.075345 -S UP n -t * -s 618 -v circle -c black -z 0.075345 -S UP n -t * -s 617 -v circle -c black -z 0.075345 -S UP n -t * -s 616 -v circle -c black -z 0.075345 -S UP n -t * -s 615 -v circle -c black -z 0.075345 -S UP n -t * -s 614 -v circle -c black -z 0.075345 -S UP n -t * -s 613 -v circle -c black -z 0.075345 -S UP n -t * -s 612 -v circle -c black -z 0.075345 -S UP n -t * -s 611 -v circle -c black -z 0.075345 -S UP n -t * -s 610 -v circle -c black -z 0.075345 -S UP n -t * -s 609 -v circle -c black -z 0.075345 -S UP n -t * -s 607 -v circle -c black -z 0.075345 -S UP n -t * -s 606 -v circle -c black -z 0.075345 -S UP n -t * -s 605 -v circle -c black -z 0.075345 -S UP n -t * -s 604 -v circle -c black -z 0.075345 -S UP n -t * -s 603 -v circle -c black -z 0.075345 -S UP n -t * -s 602 -v circle -c black -z 0.075345 -S UP n -t * -s 601 -v circle -c black -z 0.075345 -S UP n -t * -s 600 -v circle -c black -z 0.075345 -S UP n -t * -s 599 -v circle -c black -z 0.075345 -S UP n -t * -s 597 -v circle -c black -z 0.075345 -S UP n -t * -s 596 -v circle -c black -z 0.075345 -S UP n -t * -s 595 -v circle -c black -z 0.075345 -S UP n -t * -s 594 -v circle -c black -z 0.075345 -S UP n -t * -s 593 -v circle -c black -z 0.075345 -S UP n -t * -s 592 -v circle -c black -z 0.075345 -S UP n -t * -s 591 -v circle -c black -z 0.075345 -S UP n -t * -s 590 -v circle -c black -z 0.075345 -S UP n -t * -s 589 -v circle -c black -z 0.075345 -S UP n -t * -s 588 -v circle -c black -z 0.075345 -S UP n -t * -s 587 -v circle -c black -z 0.075345 -S UP n -t * -s 586 -v circle -c black -z 0.075345 -S UP n -t * -s 585 -v circle -c black -z 0.075345 -S UP n -t * -s 584 -v circle -c black -z 0.075345 -S UP n -t * -s 583 -v circle -c black -z 0.075345 -S UP n -t * -s 582 -v circle -c black -z 0.075345 -S UP n -t * -s 581 -v circle -c black -z 0.075345 -S UP n -t * -s 580 -v circle -c black -z 0.075345 -S UP n -t * -s 579 -v circle -c black -z 0.075345 -S UP n -t * -s 578 -v circle -c black -z 0.075345 -S UP n -t * -s 577 -v circle -c black -z 0.075345 -S UP n -t * -s 576 -v circle -c black -z 0.075345 -S UP n -t * -s 575 -v circle -c black -z 0.075345 -S UP n -t * -s 574 -v circle -c black -z 0.075345 -S UP n -t * -s 570 -v circle -c black -z 0.075345 -S UP n -t * -s 569 -v circle -c black -z 0.075345 -S UP n -t * -s 568 -v circle -c black -z 0.075345 -S UP n -t * -s 567 -v circle -c black -z 0.075345 -S UP n -t * -s 566 -v circle -c black -z 0.075345 -S UP n -t * -s 565 -v circle -c black -z 0.075345 -S UP n -t * -s 564 -v circle -c black -z 0.075345 -S UP n -t * -s 563 -v circle -c black -z 0.075345 -S UP n -t * -s 562 -v circle -c black -z 0.075345 -S UP n -t * -s 560 -v circle -c black -z 0.075345 -S UP n -t * -s 559 -v circle -c black -z 0.075345 -S UP n -t * -s 558 -v circle -c black -z 0.075345 -S UP n -t * -s 557 -v circle -c black -z 0.075345 -S UP n -t * -s 556 -v circle -c black -z 0.075345 -S UP n -t * -s 555 -v circle -c black -z 0.075345 -S UP n -t * -s 554 -v circle -c black -z 0.075345 -S UP n -t * -s 553 -v circle -c black -z 0.075345 -S UP n -t * -s 552 -v circle -c black -z 0.075345 -S UP n -t * -s 551 -v circle -c black -z 0.075345 -S UP n -t * -s 550 -v circle -c black -z 0.075345 -S UP n -t * -s 549 -v circle -c black -z 0.075345 -S UP n -t * -s 548 -v circle -c black -z 0.075345 -S UP n -t * -s 547 -v circle -c black -z 0.075345 -S UP n -t * -s 546 -v circle -c black -z 0.075345 -S UP n -t * -s 545 -v circle -c black -z 0.075345 -S UP n -t * -s 544 -v circle -c black -z 0.075345 -S UP n -t * -s 543 -v circle -c black -z 0.075345 -S UP n -t * -s 542 -v circle -c black -z 0.075345 -S UP n -t * -s 541 -v circle -c black -z 0.075345 -S UP n -t * -s 540 -v circle -c black -z 0.075345 -S UP n -t * -s 539 -v circle -c black -z 0.075345 -S UP n -t * -s 538 -v circle -c black -z 0.075345 -S UP n -t * -s 537 -v circle -c black -z 0.075345 -S UP n -t * -s 536 -v circle -c black -z 0.075345 -S UP n -t * -s 535 -v circle -c black -z 0.075345 -S UP n -t * -s 534 -v circle -c black -z 0.075345 -S UP n -t * -s 533 -v circle -c black -z 0.075345 -S UP n -t * -s 532 -v circle -c black -z 0.075345 -S UP n -t * -s 531 -v circle -c black -z 0.075345 -S UP n -t * -s 530 -v circle -c black -z 0.075345 -S UP n -t * -s 529 -v circle -c black -z 0.075345 -S UP n -t * -s 528 -v circle -c black -z 0.075345 -S UP n -t * -s 526 -v circle -c black -z 0.075345 -S UP n -t * -s 525 -v circle -c black -z 0.075345 -S UP n -t * -s 524 -v circle -c black -z 0.075345 -S UP n -t * -s 523 -v circle -c black -z 0.075345 -S UP n -t * -s 522 -v circle -c black -z 0.075345 -S UP n -t * -s 521 -v circle -c black -z 0.075345 -S UP n -t * -s 520 -v circle -c black -z 0.075345 -S UP n -t * -s 519 -v circle -c black -z 0.075345 -S UP n -t * -s 518 -v circle -c black -z 0.075345 -S UP n -t * -s 517 -v circle -c black -z 0.075345 -S UP n -t * -s 516 -v circle -c black -z 0.075345 -S UP n -t * -s 515 -v circle -c black -z 0.075345 -S UP n -t * -s 514 -v circle -c black -z 0.075345 -S UP n -t * -s 513 -v circle -c black -z 0.075345 -S UP n -t * -s 512 -v circle -c black -z 0.075345 -S UP n -t * -s 511 -v circle -c black -z 0.075345 -S UP n -t * -s 510 -v circle -c black -z 0.075345 -S UP n -t * -s 509 -v circle -c black -z 0.075345 -S UP n -t * -s 508 -v circle -c black -z 0.075345 -S UP n -t * -s 506 -v circle -c black -z 0.075345 -S UP n -t * -s 505 -v circle -c black -z 0.075345 -S UP n -t * -s 504 -v circle -c black -z 0.075345 -S UP n -t * -s 503 -v circle -c black -z 0.075345 -S UP n -t * -s 502 -v circle -c black -z 0.075345 -S UP n -t * -s 501 -v circle -c black -z 0.075345 -S UP n -t * -s 500 -v circle -c black -z 0.075345 -S UP n -t * -s 499 -v circle -c black -z 0.075345 -S UP n -t * -s 498 -v circle -c black -z 0.075345 -S UP n -t * -s 497 -v circle -c black -z 0.075345 -S UP n -t * -s 496 -v circle -c black -z 0.075345 -S UP n -t * -s 493 -v circle -c black -z 0.075345 -S UP n -t * -s 492 -v circle -c black -z 0.075345 -S UP n -t * -s 491 -v circle -c black -z 0.075345 -S UP n -t * -s 490 -v circle -c black -z 0.075345 -S UP n -t * -s 488 -v circle -c black -z 0.075345 -S UP n -t * -s 487 -v circle -c black -z 0.075345 -S UP n -t * -s 486 -v circle -c black -z 0.075345 -S UP n -t * -s 485 -v circle -c black -z 0.075345 -S UP n -t * -s 484 -v circle -c black -z 0.075345 -S UP n -t * -s 483 -v circle -c black -z 0.075345 -S UP n -t * -s 482 -v circle -c black -z 0.075345 -S UP n -t * -s 480 -v circle -c black -z 0.075345 -S UP n -t * -s 479 -v circle -c black -z 0.075345 -S UP n -t * -s 478 -v circle -c black -z 0.075345 -S UP n -t * -s 476 -v circle -c black -z 0.075345 -S UP n -t * -s 475 -v circle -c black -z 0.075345 -S UP n -t * -s 474 -v circle -c black -z 0.075345 -S UP n -t * -s 473 -v circle -c black -z 0.075345 -S UP n -t * -s 472 -v circle -c black -z 0.075345 -S UP n -t * -s 471 -v circle -c black -z 0.075345 -S UP n -t * -s 470 -v circle -c black -z 0.075345 -S UP n -t * -s 469 -v circle -c black -z 0.075345 -S UP n -t * -s 468 -v circle -c black -z 0.075345 -S UP n -t * -s 467 -v circle -c black -z 0.075345 -S UP n -t * -s 466 -v circle -c black -z 0.075345 -S UP n -t * -s 465 -v circle -c black -z 0.075345 -S UP n -t * -s 464 -v circle -c black -z 0.075345 -S UP n -t * -s 463 -v circle -c black -z 0.075345 -S UP n -t * -s 462 -v circle -c black -z 0.075345 -S UP n -t * -s 460 -v circle -c black -z 0.075345 -S UP n -t * -s 459 -v circle -c black -z 0.075345 -S UP n -t * -s 458 -v circle -c black -z 0.075345 -S UP n -t * -s 457 -v circle -c black -z 0.075345 -S UP n -t * -s 456 -v circle -c black -z 0.075345 -S UP n -t * -s 455 -v circle -c black -z 0.075345 -S UP n -t * -s 453 -v circle -c black -z 0.075345 -S UP n -t * -s 452 -v circle -c black -z 0.075345 -S UP n -t * -s 451 -v circle -c black -z 0.075345 -S UP n -t * -s 450 -v circle -c black -z 0.075345 -S UP n -t * -s 449 -v circle -c black -z 0.075345 -S UP n -t * -s 448 -v circle -c black -z 0.075345 -S UP n -t * -s 447 -v circle -c black -z 0.075345 -S UP n -t * -s 444 -v circle -c black -z 0.075345 -S UP n -t * -s 443 -v circle -c black -z 0.075345 -S UP n -t * -s 442 -v circle -c black -z 0.075345 -S UP n -t * -s 441 -v circle -c black -z 0.075345 -S UP n -t * -s 440 -v circle -c black -z 0.075345 -S UP n -t * -s 439 -v circle -c black -z 0.075345 -S UP n -t * -s 437 -v circle -c black -z 0.075345 -S UP n -t * -s 436 -v circle -c black -z 0.075345 -S UP n -t * -s 435 -v circle -c black -z 0.075345 -S UP n -t * -s 434 -v circle -c black -z 0.075345 -S UP n -t * -s 433 -v circle -c black -z 0.075345 -S UP n -t * -s 432 -v circle -c black -z 0.075345 -S UP n -t * -s 431 -v circle -c black -z 0.075345 -S UP n -t * -s 430 -v circle -c black -z 0.075345 -S UP n -t * -s 429 -v circle -c black -z 0.075345 -S UP n -t * -s 428 -v circle -c black -z 0.075345 -S UP n -t * -s 427 -v circle -c black -z 0.075345 -S UP n -t * -s 426 -v circle -c black -z 0.075345 -S UP n -t * -s 425 -v circle -c black -z 0.075345 -S UP n -t * -s 424 -v circle -c black -z 0.075345 -S UP n -t * -s 423 -v circle -c black -z 0.075345 -S UP n -t * -s 422 -v circle -c black -z 0.075345 -S UP n -t * -s 421 -v circle -c black -z 0.075345 -S UP n -t * -s 419 -v circle -c black -z 0.075345 -S UP n -t * -s 418 -v circle -c black -z 0.075345 -S UP n -t * -s 417 -v circle -c black -z 0.075345 -S UP n -t * -s 416 -v circle -c black -z 0.075345 -S UP n -t * -s 415 -v circle -c black -z 0.075345 -S UP n -t * -s 414 -v circle -c black -z 0.075345 -S UP n -t * -s 413 -v circle -c black -z 0.075345 -S UP n -t * -s 412 -v circle -c black -z 0.075345 -S UP n -t * -s 411 -v circle -c black -z 0.075345 -S UP n -t * -s 410 -v circle -c black -z 0.075345 -S UP n -t * -s 409 -v circle -c black -z 0.075345 -S UP n -t * -s 408 -v circle -c black -z 0.075345 -S UP n -t * -s 407 -v circle -c black -z 0.075345 -S UP n -t * -s 406 -v circle -c black -z 0.075345 -S UP n -t * -s 405 -v circle -c black -z 0.075345 -S UP n -t * -s 404 -v circle -c black -z 0.075345 -S UP n -t * -s 402 -v circle -c black -z 0.075345 -S UP n -t * -s 401 -v circle -c black -z 0.075345 -S UP n -t * -s 400 -v circle -c black -z 0.075345 -S UP n -t * -s 399 -v circle -c black -z 0.075345 -S UP n -t * -s 398 -v circle -c black -z 0.075345 -S UP n -t * -s 396 -v circle -c black -z 0.075345 -S UP n -t * -s 395 -v circle -c black -z 0.075345 -S UP n -t * -s 394 -v circle -c black -z 0.075345 -S UP n -t * -s 393 -v circle -c black -z 0.075345 -S UP n -t * -s 392 -v circle -c black -z 0.075345 -S UP n -t * -s 391 -v circle -c black -z 0.075345 -S UP n -t * -s 390 -v circle -c black -z 0.075345 -S UP n -t * -s 389 -v circle -c black -z 0.075345 -S UP n -t * -s 388 -v circle -c black -z 0.075345 -S UP n -t * -s 387 -v circle -c black -z 0.075345 -S UP n -t * -s 386 -v circle -c black -z 0.075345 -S UP n -t * -s 385 -v circle -c black -z 0.075345 -S UP n -t * -s 384 -v circle -c black -z 0.075345 -S UP n -t * -s 383 -v circle -c black -z 0.075345 -S UP n -t * -s 382 -v circle -c black -z 0.075345 -S UP n -t * -s 381 -v circle -c black -z 0.075345 -S UP n -t * -s 380 -v circle -c black -z 0.075345 -S UP n -t * -s 379 -v circle -c black -z 0.075345 -S UP n -t * -s 378 -v circle -c black -z 0.075345 -S UP n -t * -s 377 -v circle -c black -z 0.075345 -S UP n -t * -s 375 -v circle -c black -z 0.075345 -S UP n -t * -s 374 -v circle -c black -z 0.075345 -S UP n -t * -s 373 -v circle -c black -z 0.075345 -S UP n -t * -s 372 -v circle -c black -z 0.075345 -S UP n -t * -s 371 -v circle -c black -z 0.075345 -S UP n -t * -s 370 -v circle -c black -z 0.075345 -S UP n -t * -s 369 -v circle -c black -z 0.075345 -S UP n -t * -s 368 -v circle -c black -z 0.075345 -S UP n -t * -s 367 -v circle -c black -z 0.075345 -S UP n -t * -s 366 -v circle -c black -z 0.075345 -S UP n -t * -s 365 -v circle -c black -z 0.075345 -S UP n -t * -s 364 -v circle -c black -z 0.075345 -S UP n -t * -s 363 -v circle -c black -z 0.075345 -S UP n -t * -s 362 -v circle -c black -z 0.075345 -S UP n -t * -s 361 -v circle -c black -z 0.075345 -S UP n -t * -s 359 -v circle -c black -z 0.075345 -S UP n -t * -s 358 -v circle -c black -z 0.075345 -S UP n -t * -s 357 -v circle -c black -z 0.075345 -S UP n -t * -s 356 -v circle -c black -z 0.075345 -S UP n -t * -s 355 -v circle -c black -z 0.075345 -S UP n -t * -s 354 -v circle -c black -z 0.075345 -S UP n -t * -s 353 -v circle -c black -z 0.075345 -S UP n -t * -s 352 -v circle -c black -z 0.075345 -S UP n -t * -s 351 -v circle -c black -z 0.075345 -S UP n -t * -s 350 -v circle -c black -z 0.075345 -S UP n -t * -s 349 -v circle -c black -z 0.075345 -S UP n -t * -s 348 -v circle -c black -z 0.075345 -S UP n -t * -s 347 -v circle -c black -z 0.075345 -S UP n -t * -s 346 -v circle -c black -z 0.075345 -S UP n -t * -s 345 -v circle -c black -z 0.075345 -S UP n -t * -s 344 -v circle -c black -z 0.075345 -S UP n -t * -s 343 -v circle -c black -z 0.075345 -S UP n -t * -s 342 -v circle -c black -z 0.075345 -S UP n -t * -s 341 -v circle -c black -z 0.075345 -S UP n -t * -s 340 -v circle -c black -z 0.075345 -S UP n -t * -s 339 -v circle -c black -z 0.075345 -S UP n -t * -s 338 -v circle -c black -z 0.075345 -S UP n -t * -s 337 -v circle -c black -z 0.075345 -S UP n -t * -s 336 -v circle -c black -z 0.075345 -S UP n -t * -s 335 -v circle -c black -z 0.075345 -S UP n -t * -s 334 -v circle -c black -z 0.075345 -S UP n -t * -s 333 -v circle -c black -z 0.075345 -S UP n -t * -s 332 -v circle -c black -z 0.075345 -S UP n -t * -s 331 -v circle -c black -z 0.075345 -S UP n -t * -s 330 -v circle -c black -z 0.075345 -S UP n -t * -s 329 -v circle -c black -z 0.075345 -S UP n -t * -s 328 -v circle -c black -z 0.075345 -S UP n -t * -s 327 -v circle -c black -z 0.075345 -S UP n -t * -s 326 -v circle -c black -z 0.075345 -S UP n -t * -s 325 -v circle -c black -z 0.075345 -S UP n -t * -s 324 -v circle -c black -z 0.075345 -S UP n -t * -s 323 -v circle -c black -z 0.075345 -S UP n -t * -s 322 -v circle -c black -z 0.075345 -S UP n -t * -s 321 -v circle -c black -z 0.075345 -S UP n -t * -s 320 -v circle -c black -z 0.075345 -S UP n -t * -s 318 -v circle -c black -z 0.075345 -S UP n -t * -s 316 -v circle -c black -z 0.075345 -S UP n -t * -s 314 -v circle -c black -z 0.075345 -S UP n -t * -s 313 -v circle -c black -z 0.075345 -S UP n -t * -s 312 -v circle -c black -z 0.075345 -S UP n -t * -s 311 -v circle -c black -z 0.075345 -S UP n -t * -s 310 -v circle -c black -z 0.075345 -S UP n -t * -s 309 -v circle -c black -z 0.075345 -S UP n -t * -s 308 -v circle -c black -z 0.075345 -S UP n -t * -s 307 -v circle -c black -z 0.075345 -S UP n -t * -s 306 -v circle -c black -z 0.075345 -S UP n -t * -s 305 -v circle -c black -z 0.075345 -S UP n -t * -s 304 -v circle -c black -z 0.075345 -S UP n -t * -s 303 -v circle -c black -z 0.075345 -S UP n -t * -s 301 -v circle -c black -z 0.075345 -S UP n -t * -s 300 -v circle -c black -z 0.075345 -S UP n -t * -s 299 -v circle -c black -z 0.075345 -S UP n -t * -s 298 -v circle -c black -z 0.075345 -S UP n -t * -s 297 -v circle -c black -z 0.075345 -S UP n -t * -s 296 -v circle -c black -z 0.075345 -S UP n -t * -s 295 -v circle -c black -z 0.075345 -S UP n -t * -s 294 -v circle -c black -z 0.075345 -S UP n -t * -s 293 -v circle -c black -z 0.075345 -S UP n -t * -s 292 -v circle -c black -z 0.075345 -S UP n -t * -s 291 -v circle -c black -z 0.075345 -S UP n -t * -s 290 -v circle -c black -z 0.075345 -S UP n -t * -s 289 -v circle -c black -z 0.075345 -S UP n -t * -s 288 -v circle -c black -z 0.075345 -S UP n -t * -s 287 -v circle -c black -z 0.075345 -S UP n -t * -s 286 -v circle -c black -z 0.075345 -S UP n -t * -s 285 -v circle -c black -z 0.075345 -S UP n -t * -s 284 -v circle -c black -z 0.075345 -S UP n -t * -s 283 -v circle -c black -z 0.075345 -S UP n -t * -s 282 -v circle -c black -z 0.075345 -S UP n -t * -s 281 -v circle -c black -z 0.075345 -S UP n -t * -s 280 -v circle -c black -z 0.075345 -S UP n -t * -s 279 -v circle -c black -z 0.075345 -S UP n -t * -s 278 -v circle -c black -z 0.075345 -S UP n -t * -s 277 -v circle -c black -z 0.075345 -S UP n -t * -s 276 -v circle -c black -z 0.075345 -S UP n -t * -s 275 -v circle -c black -z 0.075345 -S UP n -t * -s 274 -v circle -c black -z 0.075345 -S UP n -t * -s 273 -v circle -c black -z 0.075345 -S UP n -t * -s 272 -v circle -c black -z 0.075345 -S UP n -t * -s 271 -v circle -c black -z 0.075345 -S UP n -t * -s 270 -v circle -c black -z 0.075345 -S UP n -t * -s 269 -v circle -c black -z 0.075345 -S UP n -t * -s 268 -v circle -c black -z 0.075345 -S UP n -t * -s 267 -v circle -c black -z 0.075345 -S UP n -t * -s 265 -v circle -c black -z 0.075345 -S UP n -t * -s 264 -v circle -c black -z 0.075345 -S UP n -t * -s 263 -v circle -c black -z 0.075345 -S UP n -t * -s 262 -v circle -c black -z 0.075345 -S UP n -t * -s 261 -v circle -c black -z 0.075345 -S UP n -t * -s 260 -v circle -c black -z 0.075345 -S UP n -t * -s 259 -v circle -c black -z 0.075345 -S UP n -t * -s 258 -v circle -c black -z 0.075345 -S UP n -t * -s 257 -v circle -c black -z 0.075345 -S UP n -t * -s 256 -v circle -c black -z 0.075345 -S UP n -t * -s 255 -v circle -c black -z 0.075345 -S UP n -t * -s 254 -v circle -c black -z 0.075345 -S UP n -t * -s 253 -v circle -c black -z 0.075345 -S UP n -t * -s 252 -v circle -c black -z 0.075345 -S UP n -t * -s 251 -v circle -c black -z 0.075345 -S UP n -t * -s 250 -v circle -c black -z 0.075345 -S UP n -t * -s 249 -v circle -c black -z 0.075345 -S UP n -t * -s 248 -v circle -c black -z 0.075345 -S UP n -t * -s 247 -v circle -c black -z 0.075345 -S UP n -t * -s 246 -v circle -c black -z 0.075345 -S UP n -t * -s 245 -v circle -c black -z 0.075345 -S UP n -t * -s 244 -v circle -c black -z 0.075345 -S UP n -t * -s 243 -v circle -c black -z 0.075345 -S UP n -t * -s 242 -v circle -c black -z 0.075345 -S UP n -t * -s 241 -v circle -c black -z 0.075345 -S UP n -t * -s 240 -v circle -c black -z 0.075345 -S UP n -t * -s 239 -v circle -c black -z 0.075345 -S UP n -t * -s 238 -v circle -c black -z 0.075345 -S UP n -t * -s 237 -v circle -c black -z 0.075345 -S UP n -t * -s 236 -v circle -c black -z 0.075345 -S UP n -t * -s 235 -v circle -c black -z 0.075345 -S UP n -t * -s 234 -v circle -c black -z 0.075345 -S UP n -t * -s 233 -v circle -c black -z 0.075345 -S UP n -t * -s 232 -v circle -c black -z 0.075345 -S UP n -t * -s 231 -v circle -c black -z 0.075345 -S UP n -t * -s 230 -v circle -c black -z 0.075345 -S UP n -t * -s 229 -v circle -c black -z 0.075345 -S UP n -t * -s 228 -v circle -c black -z 0.075345 -S UP n -t * -s 227 -v circle -c black -z 0.075345 -S UP n -t * -s 226 -v circle -c black -z 0.075345 -S UP n -t * -s 225 -v circle -c black -z 0.075345 -S UP n -t * -s 224 -v circle -c black -z 0.075345 -S UP n -t * -s 223 -v circle -c black -z 0.075345 -S UP n -t * -s 222 -v circle -c black -z 0.075345 -S UP n -t * -s 221 -v circle -c black -z 0.075345 -S UP n -t * -s 220 -v circle -c black -z 0.075345 -S UP n -t * -s 219 -v circle -c black -z 0.075345 -S UP n -t * -s 218 -v circle -c black -z 0.075345 -S UP n -t * -s 217 -v circle -c black -z 0.075345 -S UP n -t * -s 215 -v circle -c black -z 0.075345 -S UP n -t * -s 214 -v circle -c black -z 0.075345 -S UP n -t * -s 213 -v circle -c black -z 0.075345 -S UP n -t * -s 212 -v circle -c black -z 0.075345 -S UP n -t * -s 211 -v circle -c black -z 0.075345 -S UP n -t * -s 210 -v circle -c black -z 0.075345 -S UP n -t * -s 209 -v circle -c black -z 0.075345 -S UP n -t * -s 208 -v circle -c black -z 0.075345 -S UP n -t * -s 207 -v circle -c black -z 0.075345 -S UP n -t * -s 206 -v circle -c black -z 0.075345 -S UP n -t * -s 205 -v circle -c black -z 0.075345 -S UP n -t * -s 204 -v circle -c black -z 0.075345 -S UP n -t * -s 203 -v circle -c black -z 0.075345 -S UP n -t * -s 202 -v circle -c black -z 0.075345 -S UP n -t * -s 201 -v circle -c black -z 0.075345 -S UP n -t * -s 200 -v circle -c black -z 0.075345 -S UP n -t * -s 199 -v circle -c black -z 0.075345 -S UP n -t * -s 198 -v circle -c black -z 0.075345 -S UP n -t * -s 197 -v circle -c black -z 0.075345 -S UP n -t * -s 196 -v circle -c black -z 0.075345 -S UP n -t * -s 195 -v circle -c black -z 0.075345 -S UP n -t * -s 194 -v circle -c black -z 0.075345 -S UP n -t * -s 193 -v circle -c black -z 0.075345 -S UP n -t * -s 191 -v circle -c black -z 0.075345 -S UP n -t * -s 190 -v circle -c black -z 0.075345 -S UP n -t * -s 189 -v circle -c black -z 0.075345 -S UP n -t * -s 188 -v circle -c black -z 0.075345 -S UP n -t * -s 187 -v circle -c black -z 0.075345 -S UP n -t * -s 185 -v circle -c black -z 0.075345 -S UP n -t * -s 184 -v circle -c black -z 0.075345 -S UP n -t * -s 183 -v circle -c black -z 0.075345 -S UP n -t * -s 182 -v circle -c black -z 0.075345 -S UP n -t * -s 181 -v circle -c black -z 0.075345 -S UP n -t * -s 180 -v circle -c black -z 0.075345 -S UP n -t * -s 179 -v circle -c black -z 0.075345 -S UP n -t * -s 178 -v circle -c black -z 0.075345 -S UP n -t * -s 177 -v circle -c black -z 0.075345 -S UP n -t * -s 176 -v circle -c black -z 0.075345 -S UP n -t * -s 175 -v circle -c black -z 0.075345 -S UP n -t * -s 174 -v circle -c black -z 0.075345 -S UP n -t * -s 173 -v circle -c black -z 0.075345 -S UP n -t * -s 172 -v circle -c black -z 0.075345 -S UP n -t * -s 171 -v circle -c black -z 0.075345 -S UP n -t * -s 170 -v circle -c black -z 0.075345 -S UP n -t * -s 169 -v circle -c black -z 0.075345 -S UP n -t * -s 168 -v circle -c black -z 0.075345 -S UP n -t * -s 167 -v circle -c black -z 0.075345 -S UP n -t * -s 166 -v circle -c black -z 0.075345 -S UP n -t * -s 165 -v circle -c black -z 0.075345 -S UP n -t * -s 164 -v circle -c black -z 0.075345 -S UP n -t * -s 163 -v circle -c black -z 0.075345 -S UP n -t * -s 162 -v circle -c black -z 0.075345 -S UP n -t * -s 161 -v circle -c black -z 0.075345 -S UP n -t * -s 160 -v circle -c black -z 0.075345 -S UP n -t * -s 159 -v circle -c black -z 0.075345 -S UP n -t * -s 158 -v circle -c black -z 0.075345 -S UP n -t * -s 157 -v circle -c black -z 0.075345 -S UP n -t * -s 156 -v circle -c black -z 0.075345 -S UP n -t * -s 155 -v circle -c black -z 0.075345 -S UP n -t * -s 154 -v circle -c black -z 0.075345 -S UP n -t * -s 153 -v circle -c black -z 0.075345 -S UP n -t * -s 152 -v circle -c black -z 0.075345 -S UP n -t * -s 150 -v circle -c black -z 0.075345 -S UP n -t * -s 149 -v circle -c black -z 0.075345 -S UP n -t * -s 148 -v circle -c black -z 0.075345 -S UP n -t * -s 146 -v circle -c black -z 0.075345 -S UP n -t * -s 145 -v circle -c black -z 0.075345 -S UP n -t * -s 144 -v circle -c black -z 0.075345 -S UP n -t * -s 143 -v circle -c black -z 0.075345 -S UP n -t * -s 142 -v circle -c black -z 0.075345 -S UP n -t * -s 141 -v circle -c black -z 0.075345 -S UP n -t * -s 139 -v circle -c black -z 0.075345 -S UP n -t * -s 138 -v circle -c black -z 0.075345 -S UP n -t * -s 137 -v circle -c black -z 0.075345 -S UP n -t * -s 136 -v circle -c black -z 0.075345 -S UP n -t * -s 135 -v circle -c black -z 0.075345 -S UP n -t * -s 134 -v circle -c black -z 0.075345 -S UP n -t * -s 133 -v circle -c black -z 0.075345 -S UP n -t * -s 132 -v circle -c black -z 0.075345 -S UP n -t * -s 131 -v circle -c black -z 0.075345 -S UP n -t * -s 130 -v circle -c black -z 0.075345 -S UP n -t * -s 129 -v circle -c black -z 0.075345 -S UP n -t * -s 128 -v circle -c black -z 0.075345 -S UP n -t * -s 127 -v circle -c black -z 0.075345 -S UP n -t * -s 126 -v circle -c black -z 0.075345 -S UP n -t * -s 125 -v circle -c black -z 0.075345 -S UP n -t * -s 123 -v circle -c black -z 0.075345 -S UP n -t * -s 122 -v circle -c black -z 0.075345 -S UP n -t * -s 121 -v circle -c black -z 0.075345 -S UP n -t * -s 120 -v circle -c black -z 0.075345 -S UP n -t * -s 119 -v circle -c black -z 0.075345 -S UP n -t * -s 118 -v circle -c black -z 0.075345 -S UP n -t * -s 117 -v circle -c black -z 0.075345 -S UP n -t * -s 116 -v circle -c black -z 0.075345 -S UP n -t * -s 115 -v circle -c black -z 0.075345 -S UP n -t * -s 114 -v circle -c black -z 0.075345 -S UP n -t * -s 113 -v circle -c black -z 0.075345 -S UP n -t * -s 112 -v circle -c black -z 0.075345 -S UP n -t * -s 111 -v circle -c black -z 0.075345 -S UP n -t * -s 110 -v circle -c black -z 0.075345 -S UP n -t * -s 109 -v circle -c black -z 0.075345 -S UP n -t * -s 108 -v circle -c black -z 0.075345 -S UP n -t * -s 107 -v circle -c black -z 0.075345 -S UP n -t * -s 106 -v circle -c black -z 0.075345 -S UP n -t * -s 105 -v circle -c black -z 0.075345 -S UP n -t * -s 104 -v circle -c black -z 0.075345 -S UP n -t * -s 103 -v circle -c black -z 0.075345 -S UP n -t * -s 102 -v circle -c black -z 0.075345 -S UP n -t * -s 101 -v circle -c black -z 0.075345 -S UP n -t * -s 100 -v circle -c black -z 0.075345 -S UP n -t * -s 99 -v circle -c black -z 0.075345 -S UP n -t * -s 98 -v circle -c black -z 0.075345 -S UP n -t * -s 97 -v circle -c black -z 0.075345 -S UP n -t * -s 96 -v circle -c black -z 0.075345 -S UP n -t * -s 95 -v circle -c black -z 0.075345 -S UP n -t * -s 94 -v circle -c black -z 0.075345 -S UP n -t * -s 93 -v circle -c black -z 0.075345 -S UP n -t * -s 92 -v circle -c black -z 0.075345 -S UP n -t * -s 91 -v circle -c black -z 0.075345 -S UP n -t * -s 90 -v circle -c black -z 0.075345 -S UP n -t * -s 89 -v circle -c black -z 0.075345 -S UP n -t * -s 88 -v circle -c black -z 0.075345 -S UP n -t * -s 87 -v circle -c black -z 0.075345 -S UP n -t * -s 86 -v circle -c black -z 0.075345 -S UP n -t * -s 85 -v circle -c black -z 0.075345 -S UP n -t * -s 84 -v circle -c black -z 0.075345 -S UP n -t * -s 83 -v circle -c black -z 0.075345 -S UP n -t * -s 82 -v circle -c black -z 0.075345 -S UP n -t * -s 81 -v circle -c black -z 0.075345 -S UP n -t * -s 80 -v circle -c black -z 0.075345 -S UP n -t * -s 79 -v circle -c black -z 0.075345 -S UP n -t * -s 78 -v circle -c black -z 0.075345 -S UP n -t * -s 77 -v circle -c black -z 0.075345 -S UP n -t * -s 76 -v circle -c black -z 0.075345 -S UP n -t * -s 75 -v circle -c black -z 0.075345 -S UP n -t * -s 74 -v circle -c black -z 0.075345 -S UP n -t * -s 73 -v circle -c black -z 0.075345 -S UP n -t * -s 72 -v circle -c black -z 0.075345 -S UP n -t * -s 71 -v circle -c black -z 0.075345 -S UP n -t * -s 70 -v circle -c black -z 0.075345 -S UP n -t * -s 69 -v circle -c black -z 0.075345 -S UP n -t * -s 68 -v circle -c black -z 0.075345 -S UP n -t * -s 67 -v circle -c black -z 0.075345 -S UP n -t * -s 66 -v circle -c black -z 0.075345 -S UP n -t * -s 65 -v circle -c black -z 0.075345 -S UP n -t * -s 64 -v circle -c black -z 0.075345 -S UP n -t * -s 63 -v circle -c black -z 0.075345 -S UP n -t * -s 62 -v circle -c black -z 0.075345 -S UP n -t * -s 61 -v circle -c black -z 0.075345 -S UP n -t * -s 60 -v circle -c black -z 0.075345 -S UP n -t * -s 59 -v circle -c black -z 0.075345 -S UP n -t * -s 58 -v circle -c black -z 0.075345 -S UP n -t * -s 57 -v circle -c black -z 0.075345 -S UP n -t * -s 56 -v circle -c black -z 0.075345 -S UP n -t * -s 55 -v circle -c black -z 0.075345 -S UP n -t * -s 54 -v circle -c black -z 0.075345 -S UP n -t * -s 53 -v circle -c black -z 0.075345 -S UP n -t * -s 52 -v circle -c black -z 0.075345 -S UP n -t * -s 50 -v circle -c black -z 0.075345 -S UP n -t * -s 49 -v circle -c black -z 0.075345 -S UP n -t * -s 48 -v circle -c black -z 0.075345 -S UP n -t * -s 47 -v circle -c black -z 0.075345 -S UP n -t * -s 46 -v circle -c black -z 0.075345 -S UP n -t * -s 45 -v circle -c black -z 0.075345 -S UP n -t * -s 44 -v circle -c black -z 0.075345 -S UP n -t * -s 43 -v circle -c black -z 0.075345 -S UP n -t * -s 42 -v circle -c black -z 0.075345 -S UP n -t * -s 40 -v circle -c black -z 0.075345 -S UP n -t * -s 39 -v circle -c black -z 0.075345 -S UP n -t * -s 38 -v circle -c black -z 0.075345 -S UP n -t * -s 37 -v circle -c black -z 0.075345 -S UP n -t * -s 36 -v circle -c black -z 0.075345 -S UP n -t * -s 35 -v circle -c black -z 0.075345 -S UP n -t * -s 34 -v circle -c black -z 0.075345 -S UP n -t * -s 33 -v circle -c black -z 0.075345 -S UP n -t * -s 32 -v circle -c black -z 0.075345 -S UP n -t * -s 31 -v circle -c black -z 0.075345 -S UP n -t * -s 30 -v circle -c black -z 0.075345 -S UP n -t * -s 29 -v circle -c black -z 0.075345 -S UP n -t * -s 27 -v circle -c black -z 0.075345 -S UP n -t * -s 26 -v circle -c black -z 0.075345 -S UP n -t * -s 25 -v circle -c black -z 0.075345 -S UP n -t * -s 24 -v circle -c black -z 0.075345 -S UP n -t * -s 23 -v circle -c black -z 0.075345 -S UP n -t * -s 22 -v circle -c black -z 0.075345 -S UP n -t * -s 21 -v circle -c black -z 0.075345 -S UP n -t * -s 20 -v circle -c black -z 0.075345 -S UP n -t * -s 19 -v circle -c black -z 0.075345 -S UP n -t * -s 18 -v circle -c black -z 0.075345 -S UP n -t * -s 17 -v circle -c black -z 0.075345 -S UP n -t * -s 16 -v circle -c black -z 0.075345 -S UP n -t * -s 15 -v circle -c black -z 0.075345 -S UP n -t * -s 13 -v circle -c black -z 0.075345 -S UP n -t * -s 11 -v circle -c black -z 0.075345 -S UP n -t * -s 10 -v circle -c black -z 0.075345 -S UP n -t * -s 9 -v circle -c black -z 0.075345 -S UP n -t * -s 8 -v circle -c black -z 0.075345 -S UP n -t * -s 7 -v circle -c black -z 0.075345 -S UP n -t * -s 6 -v circle -c black -z 0.075345 -S UP n -t * -s 5 -v circle -c black -z 0.075345 -S UP n -t * -s 4 -v circle -c black -z 0.075345 -S UP n -t * -s 3 -v circle -c black -z 0.075345 -S UP n -t * -s 2 -v circle -c black -z 0.075345 -S UP n -t * -s 1 -v circle -c black -z 0.075345 -S UP l -t * -s 1821 -d 1933 -r 512000.000000 -D 0.005000 -o 92.1deg -l 0.006277 -S UP l -t * -s 1820 -d 1885 -r 512000.000000 -D 0.005000 -o 106.0deg -l 0.072503 -S UP l -t * -s 1798 -d 1821 -r 512000.000000 -D 0.005000 -o 142.6deg -l 0.164016 -S UP l -t * -s 1790 -d 1792 -r 512000.000000 -D 0.160000 -o 45.9deg -l 0.166902 -S UP l -t * -s 1788 -d 1971 -r 512000.000000 -D 0.320000 -o 333.1deg -l 0.287755 -S UP l -t * -s 1788 -d 1829 -r 512000.000000 -D 0.320000 -o 8.7deg -l 0.268149 -S UP l -t * -s 1781 -d 1783 -r 512000.000000 -D 0.005000 -o 15.4deg -l 0.095500 -S UP l -t * -s 1769 -d 1770 -r 512000.000000 -D 0.005000 -o 169.8deg -l 0.030345 -S UP l -t * -s 1762 -d 1763 -r 512000.000000 -D 0.320000 -o 11.6deg -l 0.311550 -S UP l -t * -s 1762 -d 1815 -r 512000.000000 -D 0.320000 -o 22.0deg -l 0.311270 -S UP l -t * -s 1762 -d 1809 -r 512000.000000 -D 0.320000 -o 356.2deg -l 0.304299 -S UP l -t * -s 1762 -d 1830 -r 512000.000000 -D 0.320000 -o 235.1deg -l 1.266393 -S UP l -t * -s 1762 -d 1774 -r 512000.000000 -D 0.320000 -o 33.7deg -l 0.305724 -S UP l -t * -s 1760 -d 1761 -r 512000.000000 -D 0.005000 -o 12.3deg -l 0.017038 -S UP l -t * -s 1755 -d 1969 -r 512000.000000 -D 0.005000 -o 216.2deg -l 0.010254 -S UP l -t * -s 1753 -d 1754 -r 512000.000000 -D 0.005000 -o 284.0deg -l 0.006663 -S UP l -t * -s 1751 -d 1770 -r 512000.000000 -D 0.005000 -o 354.8deg -l 0.420756 -S UP l -t * -s 1746 -d 1764 -r 512000.000000 -D 0.005000 -o 144.3deg -l 0.000051 -S UP l -t * -s 1741 -d 1793 -r 512000.000000 -D 0.005000 -o 359.5deg -l 0.001890 -S UP l -t * -s 1732 -d 1742 -r 512000.000000 -D 0.005000 -o 152.2deg -l 0.004284 -S UP l -t * -s 1725 -d 1740 -r 512000.000000 -D 0.005000 -o 151.7deg -l 0.007593 -S UP l -t * -s 1725 -d 1739 -r 512000.000000 -D 0.005000 -o 193.8deg -l 0.001456 -S UP l -t * -s 1725 -d 1738 -r 512000.000000 -D 0.005000 -o 168.0deg -l 0.014493 -S UP l -t * -s 1725 -d 1737 -r 512000.000000 -D 0.005000 -o 173.7deg -l 0.010503 -S UP l -t * -s 1725 -d 1968 -r 512000.000000 -D 0.005000 -o 185.0deg -l 0.009180 -S UP l -t * -s 1725 -d 1967 -r 512000.000000 -D 0.005000 -o 160.0deg -l 0.003073 -S UP l -t * -s 1725 -d 1793 -r 512000.000000 -D 0.005000 -o 179.6deg -l 0.030164 -S UP l -t * -s 1724 -d 1725 -r 512000.000000 -D 0.005000 -o 174.3deg -l 0.010444 -S UP l -t * -s 1719 -d 1825 -r 512000.000000 -D 0.080000 -o 60.7deg -l 0.079611 -S UP l -t * -s 1690 -d 1825 -r 512000.000000 -D 0.120000 -o 29.3deg -l 0.097564 -S UP l -t * -s 1688 -d 1781 -r 512000.000000 -D 0.005000 -o 325.6deg -l 0.061283 -S UP l -t * -s 1688 -d 1783 -r 512000.000000 -D 0.005000 -o 337.6deg -l 0.048570 -S UP l -t * -s 1687 -d 1779 -r 512000.000000 -D 0.040000 -o 255.1deg -l 0.046577 -S UP l -t * -s 1686 -d 1752 -r 512000.000000 -D 0.005000 -o 41.9deg -l 0.013762 -S UP l -t * -s 1685 -d 1783 -r 512000.000000 -D 0.005000 -o 108.6deg -l 0.009312 -S UP l -t * -s 1685 -d 1781 -r 512000.000000 -D 0.005000 -o 116.6deg -l 0.011508 -S UP l -t * -s 1682 -d 1752 -r 512000.000000 -D 0.005000 -o 336.6deg -l 0.042435 -S UP l -t * -s 1682 -d 1686 -r 512000.000000 -D 0.005000 -o 255.3deg -l 0.003508 -S UP l -t * -s 1676 -d 1677 -r 512000.000000 -D 0.005000 -o 273.2deg -l 0.089213 -S UP l -t * -s 1675 -d 1677 -r 512000.000000 -D 0.005000 -o 0.6deg -l 0.030717 -S UP l -t * -s 1675 -d 1676 -r 512000.000000 -D 0.005000 -o 16.9deg -l 0.028414 -S UP l -t * -s 1674 -d 1675 -r 512000.000000 -D 0.005000 -o 180.0deg -l 0.085284 -S UP l -t * -s 1674 -d 1677 -r 512000.000000 -D 0.005000 -o 0.9deg -l 0.058448 -S UP l -t * -s 1674 -d 1676 -r 512000.000000 -D 0.005000 -o 24.8deg -l 0.054386 -S UP l -t * -s 1673 -d 1674 -r 512000.000000 -D 0.005000 -o 131.4deg -l 0.066947 -S UP l -t * -s 1673 -d 1675 -r 512000.000000 -D 0.005000 -o 149.3deg -l 0.045330 -S UP l -t * -s 1673 -d 1677 -r 512000.000000 -D 0.005000 -o 55.8deg -l 0.070167 -S UP l -t * -s 1673 -d 1676 -r 512000.000000 -D 0.005000 -o 69.0deg -l 0.049602 -S UP l -t * -s 1672 -d 1675 -r 512000.000000 -D 0.005000 -o 215.4deg -l 0.028584 -S UP l -t * -s 1672 -d 1674 -r 512000.000000 -D 0.005000 -o 230.0deg -l 0.049128 -S UP l -t * -s 1672 -d 1677 -r 512000.000000 -D 0.005000 -o 285.7deg -l 0.063098 -S UP l -t * -s 1672 -d 1673 -r 512000.000000 -D 0.005000 -o 262.7deg -l 0.028850 -S UP l -t * -s 1672 -d 1676 -r 512000.000000 -D 0.005000 -o 296.5deg -l 0.085861 -S UP l -t * -s 1671 -d 1672 -r 512000.000000 -D 0.005000 -o 55.3deg -l 0.026153 -S UP l -t * -s 1671 -d 1675 -r 512000.000000 -D 0.005000 -o 130.7deg -l 0.083284 -S UP l -t * -s 1671 -d 1674 -r 512000.000000 -D 0.005000 -o 69.7deg -l 0.089013 -S UP l -t * -s 1671 -d 1677 -r 512000.000000 -D 0.005000 -o 20.4deg -l 0.045926 -S UP l -t * -s 1671 -d 1673 -r 512000.000000 -D 0.005000 -o 342.7deg -l 0.072407 -S UP l -t * -s 1671 -d 1676 -r 512000.000000 -D 0.005000 -o 37.4deg -l 0.035501 -S UP l -t * -s 1670 -d 1675 -r 512000.000000 -D 0.005000 -o 283.3deg -l 0.085867 -S UP l -t * -s 1670 -d 1672 -r 512000.000000 -D 0.005000 -o 16.7deg -l 0.034628 -S UP l -t * -s 1670 -d 1671 -r 512000.000000 -D 0.005000 -o 297.7deg -l 0.057748 -S UP l -t * -s 1670 -d 1674 -r 512000.000000 -D 0.005000 -o 322.1deg -l 0.069952 -S UP l -t * -s 1670 -d 1673 -r 512000.000000 -D 0.005000 -o 316.6deg -l 0.024274 -S UP l -t * -s 1670 -d 1676 -r 512000.000000 -D 0.005000 -o 358.8deg -l 0.025785 -S UP l -t * -s 1670 -d 1677 -r 512000.000000 -D 0.005000 -o 343.9deg -l 0.020834 -S UP l -t * -s 1668 -d 1714 -r 512000.000000 -D 0.315000 -o 14.2deg -l 0.277928 -S UP l -t * -s 1666 -d 1684 -r 512000.000000 -D 0.160000 -o 125.0deg -l 0.092258 -S UP l -t * -s 1661 -d 1663 -r 512000.000000 -D 0.040000 -o 261.6deg -l 0.002319 -S UP l -t * -s 1659 -d 1679 -r 512000.000000 -D 0.160000 -o 281.6deg -l 0.159225 -S UP l -t * -s 1658 -d 1666 -r 512000.000000 -D 0.005000 -o 156.1deg -l 0.014381 -S UP l -t * -s 1648 -d 1798 -r 512000.000000 -D 0.005000 -o 257.8deg -l 0.010958 -S UP l -t * -s 1645 -d 1646 -r 512000.000000 -D 0.005000 -o 275.7deg -l 0.007681 -S UP l -t * -s 1637 -d 1638 -r 512000.000000 -D 0.010000 -o 338.8deg -l 0.014493 -S UP l -t * -s 1629 -d 1630 -r 512000.000000 -D 0.005000 -o 188.0deg -l 0.042951 -S UP l -t * -s 1628 -d 1630 -r 512000.000000 -D 0.005000 -o 168.2deg -l 0.059184 -S UP l -t * -s 1628 -d 1629 -r 512000.000000 -D 0.005000 -o 51.2deg -l 0.086399 -S UP l -t * -s 1626 -d 1630 -r 512000.000000 -D 0.005000 -o 257.4deg -l 0.001793 -S UP l -t * -s 1626 -d 1628 -r 512000.000000 -D 0.005000 -o 282.7deg -l 0.013067 -S UP l -t * -s 1626 -d 1629 -r 512000.000000 -D 0.005000 -o 293.4deg -l 0.001554 -S UP l -t * -s 1626 -d 1645 -r 512000.000000 -D 0.005000 -o 96.8deg -l 0.047421 -S UP l -t * -s 1626 -d 1646 -r 512000.000000 -D 0.005000 -o 100.0deg -l 0.073195 -S UP l -t * -s 1625 -d 1626 -r 512000.000000 -D 0.005000 -o 88.2deg -l 0.014604 -S UP l -t * -s 1625 -d 1629 -r 512000.000000 -D 0.005000 -o 27.6deg -l 0.058470 -S UP l -t * -s 1625 -d 1630 -r 512000.000000 -D 0.005000 -o 143.6deg -l 0.086867 -S UP l -t * -s 1625 -d 1628 -r 512000.000000 -D 0.005000 -o 8.2deg -l 0.081041 -S UP l -t * -s 1622 -d 1753 -r 512000.000000 -D 0.005000 -o 252.2deg -l 0.072666 -S UP l -t * -s 1616 -d 1964 -r 512000.000000 -D 0.005000 -o 345.8deg -l 0.002832 -S UP l -t * -s 1615 -d 1813 -r 512000.000000 -D 0.005000 -o 143.2deg -l 0.010856 -S UP l -t * -s 1613 -d 1640 -r 512000.000000 -D 0.005000 -o 209.6deg -l 0.001378 -S UP l -t * -s 1609 -d 1940 -r 512000.000000 -D 0.005000 -o 185.4deg -l 0.084588 -S UP l -t * -s 1608 -d 1827 -r 512000.000000 -D 0.005000 -o 186.8deg -l 0.148596 -S UP l -t * -s 1608 -d 1826 -r 512000.000000 -D 0.005000 -o 86.7deg -l 0.025851 -S UP l -t * -s 1604 -d 1605 -r 512000.000000 -D 0.005000 -o 120.0deg -l 0.035673 -S UP l -t * -s 1603 -d 1840 -r 512000.000000 -D 0.005000 -o 340.7deg -l 0.012210 -S UP l -t * -s 1603 -d 1833 -r 512000.000000 -D 0.005000 -o 140.4deg -l 0.297717 -S UP l -t * -s 1601 -d 1798 -r 512000.000000 -D 0.005000 -o 112.6deg -l 0.242236 -S UP l -t * -s 1601 -d 1821 -r 512000.000000 -D 0.005000 -o 125.7deg -l 0.498076 -S UP l -t * -s 1601 -d 1604 -r 512000.000000 -D 0.005000 -o 122.7deg -l 0.226237 -S UP l -t * -s 1599 -d 1690 -r 512000.000000 -D 0.040000 -o 66.8deg -l 0.190793 -S UP l -t * -s 1599 -d 1757 -r 512000.000000 -D 0.120000 -o 226.0deg -l 0.069820 -S UP l -t * -s 1598 -d 1757 -r 512000.000000 -D 0.040000 -o 233.9deg -l 0.047385 -S UP l -t * -s 1598 -d 1690 -r 512000.000000 -D 0.120000 -o 61.5deg -l 0.206701 -S UP l -t * -s 1598 -d 1599 -r 512000.000000 -D 0.120000 -o 3.3deg -l 0.080386 -S UP l -t * -s 1596 -d 1687 -r 512000.000000 -D 0.160000 -o 250.4deg -l 0.192773 -S UP l -t * -s 1596 -d 1852 -r 512000.000000 -D 0.160000 -o 238.8deg -l 0.149544 -S UP l -t * -s 1595 -d 1596 -r 512000.000000 -D 0.160000 -o 93.4deg -l 0.190829 -S UP l -t * -s 1594 -d 1945 -r 512000.000000 -D 0.080000 -o 236.7deg -l 0.078593 -S UP l -t * -s 1594 -d 1596 -r 512000.000000 -D 0.005000 -o 209.5deg -l 0.342735 -S UP l -t * -s 1593 -d 1660 -r 512000.000000 -D 0.080000 -o 199.4deg -l 0.082706 -S UP l -t * -s 1593 -d 1597 -r 512000.000000 -D 0.080000 -o 225.9deg -l 0.082797 -S UP l -t * -s 1592 -d 1689 -r 512000.000000 -D 0.005000 -o 92.3deg -l 0.021749 -S UP l -t * -s 1590 -d 1597 -r 512000.000000 -D 0.005000 -o 49.6deg -l 0.058943 -S UP l -t * -s 1590 -d 1591 -r 512000.000000 -D 0.005000 -o 226.0deg -l 0.007894 -S UP l -t * -s 1583 -d 1662 -r 512000.000000 -D 0.005000 -o 310.3deg -l 0.011827 -S UP l -t * -s 1580 -d 1862 -r 512000.000000 -D 0.005000 -o 257.6deg -l 0.087258 -S UP l -t * -s 1579 -d 1592 -r 512000.000000 -D 0.005000 -o 24.5deg -l 0.014090 -S UP l -t * -s 1569 -d 1963 -r 512000.000000 -D 0.005000 -o 96.6deg -l 0.021511 -S UP l -t * -s 1565 -d 1862 -r 512000.000000 -D 0.005000 -o 223.6deg -l 0.033019 -S UP l -t * -s 1565 -d 1580 -r 512000.000000 -D 0.005000 -o 209.8deg -l 0.052624 -S UP l -t * -s 1565 -d 1600 -r 512000.000000 -D 0.005000 -o 342.1deg -l 0.000295 -S UP l -t * -s 1563 -d 1564 -r 512000.000000 -D 0.005000 -o 188.8deg -l 0.006153 -S UP l -t * -s 1562 -d 1563 -r 512000.000000 -D 0.005000 -o 188.1deg -l 0.055759 -S UP l -t * -s 1555 -d 1962 -r 512000.000000 -D 0.005000 -o 91.0deg -l 0.016265 -S UP l -t * -s 1548 -d 1554 -r 512000.000000 -D 0.005000 -o 101.2deg -l 0.002344 -S UP l -t * -s 1547 -d 1553 -r 512000.000000 -D 0.005000 -o 190.5deg -l 0.046099 -S UP l -t * -s 1546 -d 1565 -r 512000.000000 -D 0.005000 -o 340.9deg -l 0.030421 -S UP l -t * -s 1546 -d 1745 -r 512000.000000 -D 0.005000 -o 347.2deg -l 0.001556 -S UP l -t * -s 1545 -d 1807 -r 512000.000000 -D 0.160000 -o 84.7deg -l 0.290283 -S UP l -t * -s 1545 -d 1961 -r 512000.000000 -D 0.320000 -o 73.9deg -l 0.292341 -S UP l -t * -s 1544 -d 1683 -r 512000.000000 -D 0.005000 -o 194.8deg -l 0.398778 -S UP l -t * -s 1544 -d 1592 -r 512000.000000 -D 0.005000 -o 218.6deg -l 0.027005 -S UP l -t * -s 1544 -d 1689 -r 512000.000000 -D 0.005000 -o 178.1deg -l 0.000098 -S UP l -t * -s 1541 -d 1633 -r 512000.000000 -D 0.005000 -o 203.8deg -l 0.015077 -S UP l -t * -s 1537 -d 1538 -r 512000.000000 -D 0.005000 -o 250.3deg -l 0.013992 -S UP l -t * -s 1535 -d 1536 -r 512000.000000 -D 0.005000 -o 183.3deg -l 0.013415 -S UP l -t * -s 1529 -d 1533 -r 512000.000000 -D 0.005000 -o 223.7deg -l 0.008664 -S UP l -t * -s 1528 -d 1614 -r 512000.000000 -D 0.005000 -o 104.3deg -l 0.062883 -S UP l -t * -s 1526 -d 1818 -r 512000.000000 -D 0.005000 -o 158.6deg -l 0.435952 -S UP l -t * -s 1525 -d 1683 -r 512000.000000 -D 0.320000 -o 25.1deg -l 0.338073 -S UP l -t * -s 1525 -d 1926 -r 512000.000000 -D 0.320000 -o 309.8deg -l 0.419040 -S UP l -t * -s 1525 -d 1526 -r 512000.000000 -D 0.320000 -o 161.0deg -l 0.529615 -S UP l -t * -s 1524 -d 1544 -r 512000.000000 -D 0.005000 -o 4.6deg -l 0.066568 -S UP l -t * -s 1524 -d 1592 -r 512000.000000 -D 0.005000 -o 233.0deg -l 0.008206 -S UP l -t * -s 1524 -d 1689 -r 512000.000000 -D 0.005000 -o 173.6deg -l 0.045847 -S UP l -t * -s 1520 -d 1633 -r 512000.000000 -D 0.005000 -o 181.9deg -l 0.022281 -S UP l -t * -s 1517 -d 1599 -r 512000.000000 -D 0.040000 -o 80.2deg -l 0.043270 -S UP l -t * -s 1515 -d 1521 -r 512000.000000 -D 0.160000 -o 140.4deg -l 0.156267 -S UP l -t * -s 1514 -d 1615 -r 512000.000000 -D 0.005000 -o 182.5deg -l 0.063565 -S UP l -t * -s 1514 -d 1813 -r 512000.000000 -D 0.005000 -o 154.1deg -l 0.052130 -S UP l -t * -s 1511 -d 1512 -r 512000.000000 -D 0.005000 -o 114.1deg -l 0.008026 -S UP l -t * -s 1509 -d 1526 -r 512000.000000 -D 0.005000 -o 299.0deg -l 0.255982 -S UP l -t * -s 1509 -d 1818 -r 512000.000000 -D 0.005000 -o 200.3deg -l 0.241169 -S UP l -t * -s 1502 -d 1516 -r 512000.000000 -D 0.005000 -o 106.8deg -l 0.023460 -S UP l -t * -s 1494 -d 1546 -r 512000.000000 -D 0.005000 -o 193.6deg -l 0.003824 -S UP l -t * -s 1493 -d 1494 -r 512000.000000 -D 0.005000 -o 96.9deg -l 0.085936 -S UP l -t * -s 1493 -d 1745 -r 512000.000000 -D 0.005000 -o 252.2deg -l 0.086407 -S UP l -t * -s 1493 -d 1546 -r 512000.000000 -D 0.005000 -o 180.3deg -l 0.003791 -S UP l -t * -s 1490 -d 1491 -r 512000.000000 -D 0.005000 -o 225.8deg -l 0.089224 -S UP l -t * -s 1484 -d 1802 -r 512000.000000 -D 0.240000 -o 303.0deg -l 0.230311 -S UP l -t * -s 1484 -d 1573 -r 512000.000000 -D 0.240000 -o 313.5deg -l 0.234514 -S UP l -t * -s 1484 -d 1959 -r 512000.000000 -D 0.240000 -o 350.6deg -l 0.230734 -S UP l -t * -s 1484 -d 1958 -r 512000.000000 -D 0.240000 -o 342.1deg -l 0.234070 -S UP l -t * -s 1484 -d 1499 -r 512000.000000 -D 0.040000 -o 343.6deg -l 0.035517 -S UP l -t * -s 1484 -d 1813 -r 512000.000000 -D 0.005000 -o 327.8deg -l 0.166491 -S UP l -t * -s 1483 -d 1770 -r 512000.000000 -D 0.005000 -o 174.1deg -l 0.347565 -S UP l -t * -s 1479 -d 1680 -r 512000.000000 -D 0.320000 -o 162.5deg -l 0.278398 -S UP l -t * -s 1479 -d 1525 -r 512000.000000 -D 0.320000 -o 293.9deg -l 0.650279 -S UP l -t * -s 1465 -d 1661 -r 512000.000000 -D 0.005000 -o 91.3deg -l 0.011712 -S UP l -t * -s 1462 -d 1476 -r 512000.000000 -D 0.080000 -o 228.1deg -l 0.084148 -S UP l -t * -s 1462 -d 1477 -r 512000.000000 -D 0.080000 -o 209.3deg -l 0.080728 -S UP l -t * -s 1462 -d 1478 -r 512000.000000 -D 0.080000 -o 247.2deg -l 0.078057 -S UP l -t * -s 1462 -d 1475 -r 512000.000000 -D 0.080000 -o 240.1deg -l 0.081514 -S UP l -t * -s 1462 -d 1473 -r 512000.000000 -D 0.080000 -o 222.5deg -l 0.079327 -S UP l -t * -s 1462 -d 1474 -r 512000.000000 -D 0.080000 -o 216.1deg -l 0.076182 -S UP l -t * -s 1462 -d 1472 -r 512000.000000 -D 0.080000 -o 234.0deg -l 0.075764 -S UP l -t * -s 1461 -d 1614 -r 512000.000000 -D 0.005000 -o 223.6deg -l 0.082247 -S UP l -t * -s 1461 -d 1528 -r 512000.000000 -D 0.005000 -o 261.9deg -l 0.042514 -S UP l -t * -s 1460 -d 1614 -r 512000.000000 -D 0.005000 -o 136.5deg -l 0.083672 -S UP l -t * -s 1460 -d 1461 -r 512000.000000 -D 0.005000 -o 88.6deg -l 0.071580 -S UP l -t * -s 1460 -d 1528 -r 512000.000000 -D 0.005000 -o 252.6deg -l 0.083274 -S UP l -t * -s 1457 -d 1459 -r 512000.000000 -D 0.040000 -o 123.2deg -l 0.044522 -S UP l -t * -s 1456 -d 1457 -r 512000.000000 -D 0.160000 -o 125.7deg -l 0.153126 -S UP l -t * -s 1455 -d 1702 -r 512000.000000 -D 0.005000 -o 352.7deg -l 0.204379 -S UP l -t * -s 1455 -d 1483 -r 512000.000000 -D 0.005000 -o 173.1deg -l 0.224765 -S UP l -t * -s 1451 -d 1752 -r 512000.000000 -D 0.005000 -o 99.5deg -l 0.076126 -S UP l -t * -s 1451 -d 1686 -r 512000.000000 -D 0.005000 -o 205.7deg -l 0.001581 -S UP l -t * -s 1451 -d 1682 -r 512000.000000 -D 0.005000 -o 137.7deg -l 0.017258 -S UP l -t * -s 1450 -d 1451 -r 512000.000000 -D 0.005000 -o 152.2deg -l 0.000553 -S UP l -t * -s 1447 -d 1650 -r 512000.000000 -D 0.005000 -o 180.2deg -l 0.000243 -S UP l -t * -s 1447 -d 1449 -r 512000.000000 -D 0.005000 -o 305.2deg -l 0.041119 -S UP l -t * -s 1432 -d 1527 -r 512000.000000 -D 0.160000 -o 321.4deg -l 0.157033 -S UP l -t * -s 1430 -d 1956 -r 512000.000000 -D 0.120000 -o 240.9deg -l 0.108247 -S UP l -t * -s 1427 -d 1535 -r 512000.000000 -D 0.005000 -o 10.5deg -l 0.094899 -S UP l -t * -s 1427 -d 1490 -r 512000.000000 -D 0.005000 -o 192.5deg -l 0.001815 -S UP l -t * -s 1427 -d 1491 -r 512000.000000 -D 0.005000 -o 198.0deg -l 0.022329 -S UP l -t * -s 1425 -d 1490 -r 512000.000000 -D 0.005000 -o 304.1deg -l 0.087549 -S UP l -t * -s 1425 -d 1491 -r 512000.000000 -D 0.005000 -o 266.6deg -l 0.074808 -S UP l -t * -s 1425 -d 1427 -r 512000.000000 -D 0.005000 -o 1.7deg -l 0.013447 -S UP l -t * -s 1424 -d 1535 -r 512000.000000 -D 0.005000 -o 3.0deg -l 0.061274 -S UP l -t * -s 1424 -d 1427 -r 512000.000000 -D 0.005000 -o 223.4deg -l 0.071229 -S UP l -t * -s 1423 -d 1426 -r 512000.000000 -D 0.060000 -o 211.0deg -l 0.053097 -S UP l -t * -s 1423 -d 1606 -r 512000.000000 -D 0.040000 -o 30.9deg -l 0.081299 -S UP l -t * -s 1418 -d 1606 -r 512000.000000 -D 0.080000 -o 241.6deg -l 0.077367 -S UP l -t * -s 1416 -d 1669 -r 512000.000000 -D 0.080000 -o 42.2deg -l 0.085505 -S UP l -t * -s 1416 -d 1635 -r 512000.000000 -D 0.080000 -o 61.5deg -l 0.085058 -S UP l -t * -s 1416 -d 1716 -r 512000.000000 -D 0.080000 -o 27.1deg -l 0.079401 -S UP l -t * -s 1412 -d 1413 -r 512000.000000 -D 0.005000 -o 195.1deg -l 0.005591 -S UP l -t * -s 1410 -d 1429 -r 512000.000000 -D 0.005000 -o 271.0deg -l 0.009712 -S UP l -t * -s 1410 -d 1417 -r 512000.000000 -D 0.005000 -o 278.2deg -l 0.000955 -S UP l -t * -s 1403 -d 1404 -r 512000.000000 -D 0.005000 -o 172.7deg -l 0.028195 -S UP l -t * -s 1401 -d 1760 -r 512000.000000 -D 0.005000 -o 327.8deg -l 0.069762 -S UP l -t * -s 1400 -d 1558 -r 512000.000000 -D 0.005000 -o 88.5deg -l 0.026506 -S UP l -t * -s 1400 -d 1403 -r 512000.000000 -D 0.800000 -o 80.6deg -l 0.373254 -S UP l -t * -s 1398 -d 1559 -r 512000.000000 -D 0.005000 -o 283.8deg -l 0.012948 -S UP l -t * -s 1393 -d 1559 -r 512000.000000 -D 0.005000 -o 295.2deg -l 0.005127 -S UP l -t * -s 1391 -d 1559 -r 512000.000000 -D 0.005000 -o 270.9deg -l 0.007545 -S UP l -t * -s 1390 -d 1406 -r 512000.000000 -D 0.005000 -o 65.6deg -l 0.012993 -S UP l -t * -s 1386 -d 1387 -r 512000.000000 -D 0.200000 -o 311.4deg -l 0.190859 -S UP l -t * -s 1383 -d 1431 -r 512000.000000 -D 0.080000 -o 202.8deg -l 0.072216 -S UP l -t * -s 1383 -d 1385 -r 512000.000000 -D 0.005000 -o 197.1deg -l 0.012218 -S UP l -t * -s 1383 -d 1412 -r 512000.000000 -D 0.080000 -o 193.5deg -l 0.077505 -S UP l -t * -s 1372 -d 1498 -r 512000.000000 -D 0.010000 -o 199.9deg -l 0.002854 -S UP l -t * -s 1372 -d 1373 -r 512000.000000 -D 0.010000 -o 82.2deg -l 0.093417 -S UP l -t * -s 1370 -d 1799 -r 512000.000000 -D 0.005000 -o 78.9deg -l 0.005993 -S UP l -t * -s 1364 -d 1390 -r 512000.000000 -D 0.005000 -o 67.7deg -l 0.020204 -S UP l -t * -s 1364 -d 1381 -r 512000.000000 -D 0.005000 -o 21.0deg -l 0.002777 -S UP l -t * -s 1357 -d 1361 -r 512000.000000 -D 0.005000 -o 312.4deg -l 0.007608 -S UP l -t * -s 1356 -d 1791 -r 512000.000000 -D 0.005000 -o 146.4deg -l 0.002180 -S UP l -t * -s 1356 -d 1955 -r 512000.000000 -D 0.005000 -o 97.5deg -l 0.005285 -S UP l -t * -s 1356 -d 1523 -r 512000.000000 -D 0.005000 -o 111.6deg -l 0.007016 -S UP l -t * -s 1356 -d 1954 -r 512000.000000 -D 0.005000 -o 173.5deg -l 0.000562 -S UP l -t * -s 1356 -d 1953 -r 512000.000000 -D 0.005000 -o 158.2deg -l 0.002545 -S UP l -t * -s 1356 -d 1515 -r 512000.000000 -D 0.005000 -o 146.2deg -l 0.119857 -S UP l -t * -s 1356 -d 1952 -r 512000.000000 -D 0.005000 -o 134.7deg -l 0.006530 -S UP l -t * -s 1355 -d 1552 -r 512000.000000 -D 0.160000 -o 78.0deg -l 0.147229 -S UP l -t * -s 1354 -d 1552 -r 512000.000000 -D 0.005000 -o 33.8deg -l 0.010671 -S UP l -t * -s 1351 -d 1662 -r 512000.000000 -D 0.160000 -o 135.3deg -l 0.163818 -S UP l -t * -s 1348 -d 1951 -r 512000.000000 -D 0.005000 -o 134.8deg -l 0.003275 -S UP l -t * -s 1348 -d 1950 -r 512000.000000 -D 0.320000 -o 171.9deg -l 0.292046 -S UP l -t * -s 1341 -d 1501 -r 512000.000000 -D 0.005000 -o 43.0deg -l 0.007170 -S UP l -t * -s 1341 -d 1343 -r 512000.000000 -D 0.005000 -o 52.9deg -l 0.063480 -S UP l -t * -s 1337 -d 1594 -r 512000.000000 -D 0.005000 -o 66.3deg -l 0.088469 -S UP l -t * -s 1334 -d 1335 -r 512000.000000 -D 0.005000 -o 158.7deg -l 0.011006 -S UP l -t * -s 1332 -d 1401 -r 512000.000000 -D 0.005000 -o 24.9deg -l 0.014835 -S UP l -t * -s 1332 -d 1760 -r 512000.000000 -D 0.005000 -o 11.4deg -l 0.042634 -S UP l -t * -s 1332 -d 1405 -r 512000.000000 -D 0.005000 -o 195.4deg -l 0.153387 -S UP l -t * -s 1330 -d 1332 -r 512000.000000 -D 0.005000 -o 21.4deg -l 0.043514 -S UP l -t * -s 1330 -d 1405 -r 512000.000000 -D 0.005000 -o 193.3deg -l 0.084398 -S UP l -t * -s 1329 -d 1604 -r 512000.000000 -D 0.005000 -o 317.9deg -l 0.177037 -S UP l -t * -s 1329 -d 1601 -r 512000.000000 -D 0.005000 -o 309.7deg -l 0.510846 -S UP l -t * -s 1328 -d 1330 -r 512000.000000 -D 0.005000 -o 318.7deg -l 0.052179 -S UP l -t * -s 1328 -d 1332 -r 512000.000000 -D 0.005000 -o 352.4deg -l 0.001576 -S UP l -t * -s 1328 -d 1405 -r 512000.000000 -D 0.005000 -o 210.3deg -l 0.056503 -S UP l -t * -s 1324 -d 1534 -r 512000.000000 -D 0.080000 -o 242.5deg -l 0.084616 -S UP l -t * -s 1319 -d 1342 -r 512000.000000 -D 0.005000 -o 302.4deg -l 0.015006 -S UP l -t * -s 1311 -d 1469 -r 512000.000000 -D 0.005000 -o 82.3deg -l 0.000741 -S UP l -t * -s 1310 -d 1374 -r 512000.000000 -D 0.160000 -o 247.4deg -l 0.160364 -S UP l -t * -s 1308 -d 1488 -r 512000.000000 -D 0.005000 -o 303.0deg -l 0.002871 -S UP l -t * -s 1307 -d 1308 -r 512000.000000 -D 0.320000 -o 300.4deg -l 0.304995 -S UP l -t * -s 1305 -d 1949 -r 512000.000000 -D 0.050000 -o 204.1deg -l 0.041629 -S UP l -t * -s 1305 -d 1621 -r 512000.000000 -D 0.005000 -o 203.2deg -l 0.002503 -S UP l -t * -s 1305 -d 1610 -r 512000.000000 -D 0.060000 -o 22.5deg -l 0.147683 -S UP l -t * -s 1304 -d 1890 -r 512000.000000 -D 0.320000 -o 147.3deg -l 0.305706 -S UP l -t * -s 1302 -d 1813 -r 512000.000000 -D 0.010000 -o 145.7deg -l 0.110604 -S UP l -t * -s 1301 -d 1371 -r 512000.000000 -D 0.005000 -o 132.5deg -l 0.010780 -S UP l -t * -s 1297 -d 1561 -r 512000.000000 -D 0.015000 -o 236.5deg -l 0.026024 -S UP l -t * -s 1296 -d 1747 -r 512000.000000 -D 0.080000 -o 198.4deg -l 0.342448 -S UP l -t * -s 1296 -d 1948 -r 512000.000000 -D 0.080000 -o 22.3deg -l 0.080536 -S UP l -t * -s 1295 -d 1299 -r 512000.000000 -D 0.005000 -o 172.6deg -l 0.013338 -S UP l -t * -s 1291 -d 1401 -r 512000.000000 -D 0.005000 -o 108.6deg -l 0.074565 -S UP l -t * -s 1291 -d 1332 -r 512000.000000 -D 0.005000 -o 187.7deg -l 0.016408 -S UP l -t * -s 1291 -d 1760 -r 512000.000000 -D 0.005000 -o 28.8deg -l 0.085248 -S UP l -t * -s 1290 -d 1753 -r 512000.000000 -D 0.005000 -o 94.9deg -l 0.020347 -S UP l -t * -s 1290 -d 1754 -r 512000.000000 -D 0.005000 -o 43.7deg -l 0.088753 -S UP l -t * -s 1285 -d 1286 -r 512000.000000 -D 0.005000 -o 50.3deg -l 0.003837 -S UP l -t * -s 1284 -d 1285 -r 512000.000000 -D 0.005000 -o 52.0deg -l 0.027657 -S UP l -t * -s 1283 -d 1405 -r 512000.000000 -D 0.005000 -o 209.4deg -l 0.152747 -S UP l -t * -s 1283 -d 1332 -r 512000.000000 -D 0.005000 -o 293.0deg -l 0.047903 -S UP l -t * -s 1283 -d 1330 -r 512000.000000 -D 0.005000 -o 245.3deg -l 0.019108 -S UP l -t * -s 1283 -d 1328 -r 512000.000000 -D 0.005000 -o 208.0deg -l 0.016724 -S UP l -t * -s 1282 -d 1405 -r 512000.000000 -D 0.005000 -o 202.2deg -l 0.059130 -S UP l -t * -s 1282 -d 1332 -r 512000.000000 -D 0.005000 -o 3.2deg -l 0.015336 -S UP l -t * -s 1282 -d 1330 -r 512000.000000 -D 0.005000 -o 328.8deg -l 0.074682 -S UP l -t * -s 1282 -d 1328 -r 512000.000000 -D 0.005000 -o 122.5deg -l 0.088963 -S UP l -t * -s 1282 -d 1283 -r 512000.000000 -D 0.005000 -o 42.2deg -l 0.015631 -S UP l -t * -s 1280 -d 1484 -r 512000.000000 -D 0.240000 -o 152.4deg -l 0.228063 -S UP l -t * -s 1279 -d 1377 -r 512000.000000 -D 0.005000 -o 127.9deg -l 0.001191 -S UP l -t * -s 1278 -d 1283 -r 512000.000000 -D 0.005000 -o 219.2deg -l 0.033867 -S UP l -t * -s 1276 -d 1283 -r 512000.000000 -D 0.005000 -o 204.2deg -l 0.107940 -S UP l -t * -s 1275 -d 1332 -r 512000.000000 -D 0.005000 -o 170.4deg -l 0.034343 -S UP l -t * -s 1275 -d 1401 -r 512000.000000 -D 0.005000 -o 110.5deg -l 0.029354 -S UP l -t * -s 1275 -d 1760 -r 512000.000000 -D 0.005000 -o 82.5deg -l 0.057233 -S UP l -t * -s 1275 -d 1291 -r 512000.000000 -D 0.005000 -o 112.1deg -l 0.067768 -S UP l -t * -s 1272 -d 1771 -r 512000.000000 -D 0.300000 -o 68.4deg -l 0.265555 -S UP l -t * -s 1272 -d 1750 -r 512000.000000 -D 0.155000 -o 70.3deg -l 0.128693 -S UP l -t * -s 1272 -d 1440 -r 512000.000000 -D 0.155000 -o 34.1deg -l 0.141734 -S UP l -t * -s 1272 -d 1805 -r 512000.000000 -D 0.155000 -o 88.9deg -l 0.127164 -S UP l -t * -s 1271 -d 1304 -r 512000.000000 -D 0.320000 -o 315.8deg -l 0.300552 -S UP l -t * -s 1270 -d 1326 -r 512000.000000 -D 0.560000 -o 88.6deg -l 0.530225 -S UP l -t * -s 1269 -d 1332 -r 512000.000000 -D 0.005000 -o 218.5deg -l 0.012715 -S UP l -t * -s 1266 -d 1669 -r 512000.000000 -D 0.005000 -o 218.1deg -l 0.005956 -S UP l -t * -s 1264 -d 1316 -r 512000.000000 -D 0.010000 -o 68.1deg -l 0.016884 -S UP l -t * -s 1264 -d 1313 -r 512000.000000 -D 0.010000 -o 53.6deg -l 0.004416 -S UP l -t * -s 1251 -d 1703 -r 512000.000000 -D 0.160000 -o 171.2deg -l 0.150815 -S UP l -t * -s 1250 -d 1489 -r 512000.000000 -D 0.320000 -o 153.9deg -l 0.294061 -S UP l -t * -s 1249 -d 1442 -r 512000.000000 -D 0.080000 -o 212.0deg -l 0.071287 -S UP l -t * -s 1249 -d 1277 -r 512000.000000 -D 0.080000 -o 239.3deg -l 0.075347 -S UP l -t * -s 1249 -d 1723 -r 512000.000000 -D 0.080000 -o 202.8deg -l 0.079259 -S UP l -t * -s 1249 -d 1505 -r 512000.000000 -D 0.080000 -o 229.5deg -l 0.071906 -S UP l -t * -s 1247 -d 1267 -r 512000.000000 -D 0.005000 -o 90.3deg -l 0.003814 -S UP l -t * -s 1247 -d 1255 -r 512000.000000 -D 0.005000 -o 44.4deg -l 0.013772 -S UP l -t * -s 1247 -d 1254 -r 512000.000000 -D 0.005000 -o 59.7deg -l 0.011330 -S UP l -t * -s 1247 -d 1379 -r 512000.000000 -D 0.005000 -o 78.9deg -l 0.007005 -S UP l -t * -s 1247 -d 1253 -r 512000.000000 -D 0.005000 -o 69.2deg -l 0.000718 -S UP l -t * -s 1245 -d 1356 -r 512000.000000 -D 0.160000 -o 320.8deg -l 0.145369 -S UP l -t * -s 1243 -d 1947 -r 512000.000000 -D 0.010000 -o 201.9deg -l 0.021617 -S UP l -t * -s 1241 -d 1354 -r 512000.000000 -D 0.005000 -o 254.7deg -l 0.004119 -S UP l -t * -s 1237 -d 1279 -r 512000.000000 -D 0.005000 -o 128.3deg -l 0.009342 -S UP l -t * -s 1237 -d 1348 -r 512000.000000 -D 0.005000 -o 312.1deg -l 0.029076 -S UP l -t * -s 1229 -d 1611 -r 512000.000000 -D 0.005000 -o 161.1deg -l 0.012092 -S UP l -t * -s 1227 -d 1349 -r 512000.000000 -D 0.005000 -o 325.8deg -l 0.000425 -S UP l -t * -s 1227 -d 1353 -r 512000.000000 -D 0.005000 -o 313.7deg -l 0.004523 -S UP l -t * -s 1226 -d 1244 -r 512000.000000 -D 0.005000 -o 132.4deg -l 0.004971 -S UP l -t * -s 1221 -d 1333 -r 512000.000000 -D 0.005000 -o 349.3deg -l 0.205086 -S UP l -t * -s 1221 -d 1222 -r 512000.000000 -D 0.500000 -o 169.7deg -l 0.453993 -S UP l -t * -s 1221 -d 1946 -r 512000.000000 -D 0.005000 -o 169.3deg -l 0.015685 -S UP l -t * -s 1219 -d 1230 -r 512000.000000 -D 0.005000 -o 255.0deg -l 0.005307 -S UP l -t * -s 1215 -d 1609 -r 512000.000000 -D 0.005000 -o 104.8deg -l 0.007431 -S UP l -t * -s 1215 -d 1940 -r 512000.000000 -D 0.005000 -o 117.5deg -l 0.015188 -S UP l -t * -s 1215 -d 1821 -r 512000.000000 -D 0.005000 -o 294.4deg -l 0.088462 -S UP l -t * -s 1214 -d 1652 -r 512000.000000 -D 0.150000 -o 103.2deg -l 0.106845 -S UP l -t * -s 1214 -d 1256 -r 512000.000000 -D 0.005000 -o 68.1deg -l 0.024625 -S UP l -t * -s 1214 -d 1772 -r 512000.000000 -D 0.800000 -o 237.8deg -l 0.776025 -S UP l -t * -s 1213 -d 1334 -r 512000.000000 -D 0.005000 -o 175.5deg -l 0.056950 -S UP l -t * -s 1213 -d 1335 -r 512000.000000 -D 0.005000 -o 169.2deg -l 0.156206 -S UP l -t * -s 1213 -d 1818 -r 512000.000000 -D 0.005000 -o 350.2deg -l 0.451000 -S UP l -t * -s 1211 -d 1795 -r 512000.000000 -D 0.005000 -o 289.2deg -l 0.063261 -S UP l -t * -s 1210 -d 1931 -r 512000.000000 -D 0.005000 -o 313.8deg -l 0.094259 -S UP l -t * -s 1209 -d 1212 -r 512000.000000 -D 0.005000 -o 69.3deg -l 0.082199 -S UP l -t * -s 1205 -d 1219 -r 512000.000000 -D 0.005000 -o 141.1deg -l 0.057112 -S UP l -t * -s 1205 -d 1230 -r 512000.000000 -D 0.005000 -o 224.0deg -l 0.013773 -S UP l -t * -s 1203 -d 1693 -r 512000.000000 -D 0.005000 -o 358.6deg -l 0.015026 -S UP l -t * -s 1195 -d 1945 -r 512000.000000 -D 0.080000 -o 77.2deg -l 0.064931 -S UP l -t * -s 1195 -d 1337 -r 512000.000000 -D 0.005000 -o 67.0deg -l 0.049213 -S UP l -t * -s 1194 -d 1287 -r 512000.000000 -D 0.005000 -o 276.6deg -l 0.150288 -S UP l -t * -s 1189 -d 1702 -r 512000.000000 -D 0.005000 -o 185.6deg -l 0.009322 -S UP l -t * -s 1187 -d 1771 -r 512000.000000 -D 0.300000 -o 93.9deg -l 0.055719 -S UP l -t * -s 1187 -d 1750 -r 512000.000000 -D 0.155000 -o 147.6deg -l 0.031308 -S UP l -t * -s 1187 -d 1531 -r 512000.000000 -D 0.155000 -o 46.8deg -l 0.134323 -S UP l -t * -s 1187 -d 1440 -r 512000.000000 -D 0.155000 -o 325.9deg -l 0.039902 -S UP l -t * -s 1187 -d 1272 -r 512000.000000 -D 0.155000 -o 230.7deg -l 0.124465 -S UP l -t * -s 1186 -d 1193 -r 512000.000000 -D 0.005000 -o 187.9deg -l 0.003643 -S UP l -t * -s 1184 -d 1570 -r 512000.000000 -D 0.005000 -o 170.8deg -l 0.073716 -S UP l -t * -s 1183 -d 1944 -r 512000.000000 -D 0.005000 -o 126.2deg -l 0.001234 -S UP l -t * -s 1183 -d 1735 -r 512000.000000 -D 0.005000 -o 154.7deg -l 0.002688 -S UP l -t * -s 1183 -d 1734 -r 512000.000000 -D 0.005000 -o 162.4deg -l 0.003603 -S UP l -t * -s 1183 -d 1733 -r 512000.000000 -D 0.005000 -o 203.4deg -l 0.000659 -S UP l -t * -s 1183 -d 1732 -r 512000.000000 -D 0.005000 -o 155.4deg -l 0.023230 -S UP l -t * -s 1183 -d 1731 -r 512000.000000 -D 0.005000 -o 148.2deg -l 0.009345 -S UP l -t * -s 1183 -d 1744 -r 512000.000000 -D 0.005000 -o 134.4deg -l 0.004166 -S UP l -t * -s 1183 -d 1730 -r 512000.000000 -D 0.005000 -o 168.5deg -l 0.008593 -S UP l -t * -s 1183 -d 1943 -r 512000.000000 -D 0.005000 -o 213.5deg -l 0.017091 -S UP l -t * -s 1183 -d 1729 -r 512000.000000 -D 0.005000 -o 141.5deg -l 0.005676 -S UP l -t * -s 1183 -d 1768 -r 512000.000000 -D 0.005000 -o 192.9deg -l 0.003936 -S UP l -t * -s 1183 -d 1728 -r 512000.000000 -D 0.005000 -o 190.0deg -l 0.017977 -S UP l -t * -s 1183 -d 1727 -r 512000.000000 -D 0.005000 -o 175.6deg -l 0.014651 -S UP l -t * -s 1183 -d 1942 -r 512000.000000 -D 0.005000 -o 182.8deg -l 0.006623 -S UP l -t * -s 1183 -d 1726 -r 512000.000000 -D 0.005000 -o 203.4deg -l 0.016301 -S UP l -t * -s 1183 -d 1725 -r 512000.000000 -D 0.005000 -o 174.4deg -l 0.147674 -S UP l -t * -s 1183 -d 1724 -r 512000.000000 -D 0.005000 -o 174.4deg -l 0.024212 -S UP l -t * -s 1181 -d 1626 -r 512000.000000 -D 0.005000 -o 96.3deg -l 0.021980 -S UP l -t * -s 1181 -d 1630 -r 512000.000000 -D 0.005000 -o 150.9deg -l 0.067439 -S UP l -t * -s 1181 -d 1628 -r 512000.000000 -D 0.005000 -o 41.0deg -l 0.095981 -S UP l -t * -s 1181 -d 1629 -r 512000.000000 -D 0.005000 -o 47.2deg -l 0.069528 -S UP l -t * -s 1181 -d 1625 -r 512000.000000 -D 0.005000 -o 160.6deg -l 0.093095 -S UP l -t * -s 1175 -d 1312 -r 512000.000000 -D 0.320000 -o 167.2deg -l 0.278100 -S UP l -t * -s 1169 -d 1339 -r 512000.000000 -D 0.040000 -o 247.1deg -l 0.035039 -S UP l -t * -s 1165 -d 1378 -r 512000.000000 -D 0.005000 -o 148.0deg -l 0.003546 -S UP l -t * -s 1162 -d 1333 -r 512000.000000 -D 0.080000 -o 344.9deg -l 0.082393 -S UP l -t * -s 1160 -d 1183 -r 512000.000000 -D 0.005000 -o 172.8deg -l 0.273020 -S UP l -t * -s 1159 -d 1593 -r 512000.000000 -D 0.040000 -o 72.0deg -l 0.050355 -S UP l -t * -s 1158 -d 1941 -r 512000.000000 -D 0.160000 -o 293.7deg -l 0.155203 -S UP l -t * -s 1154 -d 1157 -r 512000.000000 -D 0.005000 -o 311.5deg -l 0.000887 -S UP l -t * -s 1153 -d 1762 -r 512000.000000 -D 0.005000 -o 184.5deg -l 0.011581 -S UP l -t * -s 1152 -d 1713 -r 512000.000000 -D 0.005000 -o 18.5deg -l 0.011636 -S UP l -t * -s 1147 -d 1284 -r 512000.000000 -D 0.040000 -o 55.2deg -l 0.049942 -S UP l -t * -s 1146 -d 1303 -r 512000.000000 -D 0.160000 -o 157.5deg -l 0.523188 -S UP l -t * -s 1145 -d 1810 -r 512000.000000 -D 0.005000 -o 154.0deg -l 0.001943 -S UP l -t * -s 1145 -d 1378 -r 512000.000000 -D 0.160000 -o 145.6deg -l 0.150614 -S UP l -t * -s 1145 -d 1165 -r 512000.000000 -D 0.005000 -o 143.7deg -l 0.034236 -S UP l -t * -s 1145 -d 1164 -r 512000.000000 -D 0.005000 -o 122.4deg -l 0.012100 -S UP l -t * -s 1145 -d 1163 -r 512000.000000 -D 0.005000 -o 135.8deg -l 0.003923 -S UP l -t * -s 1143 -d 1215 -r 512000.000000 -D 0.005000 -o 305.7deg -l 0.001719 -S UP l -t * -s 1143 -d 1609 -r 512000.000000 -D 0.005000 -o 37.4deg -l 0.070200 -S UP l -t * -s 1143 -d 1940 -r 512000.000000 -D 0.005000 -o 76.2deg -l 0.089018 -S UP l -t * -s 1142 -d 1539 -r 512000.000000 -D 0.005000 -o 318.3deg -l 0.024347 -S UP l -t * -s 1141 -d 1555 -r 512000.000000 -D 0.005000 -o 70.1deg -l 0.018718 -S UP l -t * -s 1140 -d 1448 -r 512000.000000 -D 0.080000 -o 117.4deg -l 0.082781 -S UP l -t * -s 1140 -d 1411 -r 512000.000000 -D 0.080000 -o 104.1deg -l 0.070500 -S UP l -t * -s 1140 -d 1428 -r 512000.000000 -D 0.005000 -o 114.2deg -l 0.013582 -S UP l -t * -s 1139 -d 1207 -r 512000.000000 -D 0.320000 -o 73.6deg -l 0.306031 -S UP l -t * -s 1136 -d 1939 -r 512000.000000 -D 0.320000 -o 88.9deg -l 0.270845 -S UP l -t * -s 1136 -d 1807 -r 512000.000000 -D 0.005000 -o 266.3deg -l 0.304894 -S UP l -t * -s 1134 -d 1755 -r 512000.000000 -D 0.005000 -o 216.8deg -l 0.079587 -S UP l -t * -s 1134 -d 1938 -r 512000.000000 -D 0.005000 -o 215.8deg -l 0.009403 -S UP l -t * -s 1132 -d 1133 -r 512000.000000 -D 0.005000 -o 285.6deg -l 0.074163 -S UP l -t * -s 1129 -d 1217 -r 512000.000000 -D 0.160000 -o 318.1deg -l 0.153985 -S UP l -t * -s 1129 -d 1722 -r 512000.000000 -D 0.160000 -o 310.8deg -l 0.150672 -S UP l -t * -s 1129 -d 1612 -r 512000.000000 -D 0.080000 -o 317.6deg -l 0.074023 -S UP l -t * -s 1129 -d 1262 -r 512000.000000 -D 0.160000 -o 326.2deg -l 0.154408 -S UP l -t * -s 1129 -d 1806 -r 512000.000000 -D 0.160000 -o 303.3deg -l 0.152918 -S UP l -t * -s 1125 -d 1356 -r 512000.000000 -D 0.320000 -o 295.1deg -l 0.292871 -S UP l -t * -s 1123 -d 1370 -r 512000.000000 -D 0.040000 -o 77.1deg -l 0.058401 -S UP l -t * -s 1123 -d 1147 -r 512000.000000 -D 0.040000 -o 60.3deg -l 0.090860 -S UP l -t * -s 1122 -d 1711 -r 512000.000000 -D 0.800000 -o 28.0deg -l 0.742451 -S UP l -t * -s 1122 -d 1704 -r 512000.000000 -D 0.640000 -o 18.2deg -l 0.589527 -S UP l -t * -s 1122 -d 1620 -r 512000.000000 -D 0.160000 -o 40.9deg -l 0.134302 -S UP l -t * -s 1122 -d 1522 -r 512000.000000 -D 0.160000 -o 52.8deg -l 0.143968 -S UP l -t * -s 1122 -d 1937 -r 512000.000000 -D 0.160000 -o 64.1deg -l 0.131514 -S UP l -t * -s 1122 -d 1772 -r 512000.000000 -D 0.160000 -o 215.7deg -l 0.434501 -S UP l -t * -s 1120 -d 1936 -r 512000.000000 -D 0.120000 -o 37.5deg -l 0.102521 -S UP l -t * -s 1113 -d 1637 -r 512000.000000 -D 0.160000 -o 340.7deg -l 0.144331 -S UP l -t * -s 1112 -d 1935 -r 512000.000000 -D 0.005000 -o 36.9deg -l 0.008892 -S UP l -t * -s 1112 -d 1934 -r 512000.000000 -D 0.160000 -o 25.9deg -l 0.146431 -S UP l -t * -s 1112 -d 1931 -r 512000.000000 -D 0.005000 -o 19.0deg -l 0.014467 -S UP l -t * -s 1112 -d 1210 -r 512000.000000 -D 0.005000 -o 27.1deg -l 0.007791 -S UP l -t * -s 1110 -d 1215 -r 512000.000000 -D 0.005000 -o 107.2deg -l 0.030011 -S UP l -t * -s 1110 -d 1933 -r 512000.000000 -D 0.005000 -o 15.5deg -l 0.056737 -S UP l -t * -s 1110 -d 1821 -r 512000.000000 -D 0.005000 -o 299.4deg -l 0.006557 -S UP l -t * -s 1109 -d 1215 -r 512000.000000 -D 0.005000 -o 199.9deg -l 0.045879 -S UP l -t * -s 1109 -d 1495 -r 512000.000000 -D 0.005000 -o 95.4deg -l 0.001352 -S UP l -t * -s 1109 -d 1821 -r 512000.000000 -D 0.005000 -o 275.6deg -l 0.094286 -S UP l -t * -s 1108 -d 1670 -r 512000.000000 -D 0.005000 -o 268.5deg -l 0.029967 -S UP l -t * -s 1108 -d 1608 -r 512000.000000 -D 0.160000 -o 95.2deg -l 0.150804 -S UP l -t * -s 1108 -d 1671 -r 512000.000000 -D 0.005000 -o 280.1deg -l 0.021036 -S UP l -t * -s 1108 -d 1674 -r 512000.000000 -D 0.005000 -o 286.2deg -l 0.000986 -S UP l -t * -s 1108 -d 1677 -r 512000.000000 -D 0.005000 -o 308.5deg -l 0.025788 -S UP l -t * -s 1108 -d 1675 -r 512000.000000 -D 0.005000 -o 272.2deg -l 0.003498 -S UP l -t * -s 1108 -d 1672 -r 512000.000000 -D 0.005000 -o 320.3deg -l 0.018204 -S UP l -t * -s 1108 -d 1673 -r 512000.000000 -D 0.005000 -o 293.4deg -l 0.043918 -S UP l -t * -s 1108 -d 1676 -r 512000.000000 -D 0.005000 -o 315.1deg -l 0.007141 -S UP l -t * -s 1107 -d 1209 -r 512000.000000 -D 0.005000 -o 330.3deg -l 0.017343 -S UP l -t * -s 1107 -d 1212 -r 512000.000000 -D 0.005000 -o 344.0deg -l 0.016157 -S UP l -t * -s 1104 -d 1319 -r 512000.000000 -D 0.005000 -o 300.3deg -l 0.042459 -S UP l -t * -s 1104 -d 1782 -r 512000.000000 -D 0.030000 -o 277.1deg -l 0.025477 -S UP l -t * -s 1104 -d 1360 -r 512000.000000 -D 0.030000 -o 283.5deg -l 0.067698 -S UP l -t * -s 1104 -d 1154 -r 512000.000000 -D 0.015000 -o 312.8deg -l 0.068512 -S UP l -t * -s 1104 -d 1932 -r 512000.000000 -D 0.030000 -o 319.5deg -l 0.035751 -S UP l -t * -s 1103 -d 1206 -r 512000.000000 -D 0.005000 -o 303.1deg -l 0.011901 -S UP l -t * -s 1101 -d 1112 -r 512000.000000 -D 0.005000 -o 189.5deg -l 0.004577 -S UP l -t * -s 1101 -d 1210 -r 512000.000000 -D 0.005000 -o 103.3deg -l 0.076518 -S UP l -t * -s 1101 -d 1931 -r 512000.000000 -D 0.005000 -o 78.2deg -l 0.090560 -S UP l -t * -s 1099 -d 1102 -r 512000.000000 -D 0.160000 -o 212.6deg -l 0.147913 -S UP l -t * -s 1094 -d 1888 -r 512000.000000 -D 0.005000 -o 359.5deg -l 0.021227 -S UP l -t * -s 1094 -d 1168 -r 512000.000000 -D 0.160000 -o 106.0deg -l 0.021241 -S UP l -t * -s 1089 -d 1584 -r 512000.000000 -D 0.040000 -o 10.1deg -l 0.044589 -S UP l -t * -s 1089 -d 1530 -r 512000.000000 -D 0.040000 -o 342.2deg -l 0.039428 -S UP l -t * -s 1089 -d 1513 -r 512000.000000 -D 0.040000 -o 327.0deg -l 0.053554 -S UP l -t * -s 1089 -d 1161 -r 512000.000000 -D 0.040000 -o 355.4deg -l 0.045502 -S UP l -t * -s 1083 -d 1930 -r 512000.000000 -D 0.005000 -o 176.1deg -l 0.009794 -S UP l -t * -s 1083 -d 1929 -r 512000.000000 -D 0.005000 -o 160.5deg -l 0.013788 -S UP l -t * -s 1082 -d 1928 -r 512000.000000 -D 0.005000 -o 274.9deg -l 0.034540 -S UP l -t * -s 1080 -d 1645 -r 512000.000000 -D 0.005000 -o 289.7deg -l 0.095016 -S UP l -t * -s 1080 -d 1626 -r 512000.000000 -D 0.005000 -o 278.1deg -l 0.065009 -S UP l -t * -s 1079 -d 1240 -r 512000.000000 -D 0.025000 -o 195.6deg -l 0.017570 -S UP l -t * -s 1079 -d 1081 -r 512000.000000 -D 0.320000 -o 176.8deg -l 0.294547 -S UP l -t * -s 1077 -d 1751 -r 512000.000000 -D 0.160000 -o 356.7deg -l 0.410256 -S UP l -t * -s 1076 -d 1559 -r 512000.000000 -D 0.005000 -o 308.3deg -l 0.004489 -S UP l -t * -s 1074 -d 1099 -r 512000.000000 -D 0.160000 -o 210.7deg -l 0.174154 -S UP l -t * -s 1074 -d 1092 -r 512000.000000 -D 0.160000 -o 184.3deg -l 0.156936 -S UP l -t * -s 1074 -d 1091 -r 512000.000000 -D 0.160000 -o 133.7deg -l 0.146772 -S UP l -t * -s 1074 -d 1082 -r 512000.000000 -D 0.320000 -o 237.7deg -l 0.315349 -S UP l -t * -s 1074 -d 1088 -r 512000.000000 -D 0.320000 -o 198.1deg -l 0.303416 -S UP l -t * -s 1074 -d 1790 -r 512000.000000 -D 0.320000 -o 47.7deg -l 1.125966 -S UP l -t * -s 1072 -d 1146 -r 512000.000000 -D 0.160000 -o 153.5deg -l 0.550475 -S UP l -t * -s 1072 -d 1484 -r 512000.000000 -D 0.240000 -o 336.5deg -l 0.781222 -S UP l -t * -s 1071 -d 1303 -r 512000.000000 -D 0.160000 -o 328.5deg -l 0.159801 -S UP l -t * -s 1069 -d 1103 -r 512000.000000 -D 0.005000 -o 301.2deg -l 0.034362 -S UP l -t * -s 1069 -d 1104 -r 512000.000000 -D 0.015000 -o 113.9deg -l 0.131167 -S UP l -t * -s 1068 -d 1759 -r 512000.000000 -D 0.005000 -o 136.2deg -l 0.002978 -S UP l -t * -s 1067 -d 1794 -r 512000.000000 -D 0.160000 -o 201.3deg -l 0.156592 -S UP l -t * -s 1067 -d 1644 -r 512000.000000 -D 0.160000 -o 151.9deg -l 0.159269 -S UP l -t * -s 1067 -d 1926 -r 512000.000000 -D 0.320000 -o 133.1deg -l 0.431953 -S UP l -t * -s 1067 -d 1439 -r 512000.000000 -D 0.160000 -o 220.6deg -l 0.152081 -S UP l -t * -s 1067 -d 1243 -r 512000.000000 -D 0.160000 -o 195.4deg -l 0.178814 -S UP l -t * -s 1067 -d 1436 -r 512000.000000 -D 0.160000 -o 210.3deg -l 0.148313 -S UP l -t * -s 1067 -d 1084 -r 512000.000000 -D 0.320000 -o 146.3deg -l 0.298514 -S UP l -t * -s 1067 -d 1083 -r 512000.000000 -D 0.320000 -o 168.0deg -l 0.325983 -S UP l -t * -s 1067 -d 1079 -r 512000.000000 -D 0.320000 -o 179.7deg -l 0.335654 -S UP l -t * -s 1067 -d 1090 -r 512000.000000 -D 0.320000 -o 155.2deg -l 0.304851 -S UP l -t * -s 1067 -d 1074 -r 512000.000000 -D 0.320000 -o 57.9deg -l 1.106866 -S UP l -t * -s 1067 -d 1525 -r 512000.000000 -D 0.320000 -o 131.5deg -l 0.963552 -S UP l -t * -s 1067 -d 1833 -r 512000.000000 -D 0.320000 -o 338.4deg -l 0.903454 -S UP l -t * -s 1063 -d 1074 -r 512000.000000 -D 0.160000 -o 335.3deg -l 0.154553 -S UP l -t * -s 1062 -d 1079 -r 512000.000000 -D 0.025000 -o 5.0deg -l 0.034934 -S UP l -t * -s 1062 -d 1784 -r 512000.000000 -D 0.005000 -o 183.8deg -l 0.016581 -S UP l -t * -s 1058 -d 1684 -r 512000.000000 -D 0.005000 -o 340.6deg -l 0.014843 -S UP l -t * -s 1058 -d 1666 -r 512000.000000 -D 0.005000 -o 335.9deg -l 0.032222 -S UP l -t * -s 1058 -d 1107 -r 512000.000000 -D 0.005000 -o 158.3deg -l 0.070933 -S UP l -t * -s 1057 -d 1085 -r 512000.000000 -D 0.005000 -o 89.2deg -l 0.081666 -S UP l -t * -s 1056 -d 1100 -r 512000.000000 -D 0.005000 -o 169.2deg -l 0.015682 -S UP l -t * -s 1053 -d 1302 -r 512000.000000 -D 0.005000 -o 146.9deg -l 0.059743 -S UP l -t * -s 1053 -d 1054 -r 512000.000000 -D 0.005000 -o 327.3deg -l 0.007333 -S UP l -t * -s 1052 -d 1808 -r 512000.000000 -D 0.005000 -o 314.0deg -l 0.014660 -S UP l -t * -s 1052 -d 1484 -r 512000.000000 -D 0.010000 -o 137.1deg -l 0.028558 -S UP l -t * -s 1051 -d 1055 -r 512000.000000 -D 0.005000 -o 265.9deg -l 0.071975 -S UP l -t * -s 1049 -d 1055 -r 512000.000000 -D 0.080000 -o 185.6deg -l 0.085266 -S UP l -t * -s 1049 -d 1050 -r 512000.000000 -D 0.080000 -o 155.7deg -l 0.081354 -S UP l -t * -s 1049 -d 1051 -r 512000.000000 -D 0.080000 -o 173.6deg -l 0.082580 -S UP l -t * -s 1049 -d 1067 -r 512000.000000 -D 0.160000 -o 348.2deg -l 0.172410 -S UP l -t * -s 1041 -d 1454 -r 512000.000000 -D 0.005000 -o 307.9deg -l 0.052112 -S UP l -t * -s 1039 -d 1919 -r 512000.000000 -D 0.160000 -o 169.8deg -l 0.159275 -S UP l -t * -s 1037 -d 1702 -r 512000.000000 -D 0.005000 -o 200.2deg -l 0.011150 -S UP l -t * -s 1036 -d 1483 -r 512000.000000 -D 0.005000 -o 181.2deg -l 0.010013 -S UP l -t * -s 1035 -d 1702 -r 512000.000000 -D 0.320000 -o 170.5deg -l 0.307467 -S UP l -t * -s 1033 -d 1770 -r 512000.000000 -D 0.005000 -o 194.6deg -l 0.018910 -S UP l -t * -s 1032 -d 1770 -r 512000.000000 -D 0.005000 -o 181.1deg -l 0.047721 -S UP l -t * -s 1032 -d 1034 -r 512000.000000 -D 0.005000 -o 14.4deg -l 0.011988 -S UP l -t * -s 1032 -d 1190 -r 512000.000000 -D 0.005000 -o 359.8deg -l 0.000994 -S UP l -t * -s 1032 -d 1402 -r 512000.000000 -D 0.005000 -o 345.2deg -l 0.011130 -S UP l -t * -s 1030 -d 1045 -r 512000.000000 -D 0.005000 -o 174.0deg -l 0.011778 -S UP l -t * -s 1030 -d 1482 -r 512000.000000 -D 0.005000 -o 190.8deg -l 0.013863 -S UP l -t * -s 1030 -d 1067 -r 512000.000000 -D 0.005000 -o 0.9deg -l 0.061115 -S UP l -t * -s 1027 -d 1175 -r 512000.000000 -D 0.080000 -o 166.2deg -l 0.073313 -S UP l -t * -s 1026 -d 1351 -r 512000.000000 -D 0.160000 -o 284.9deg -l 0.144407 -S UP l -t * -s 1022 -d 1918 -r 512000.000000 -D 0.160000 -o 11.7deg -l 0.147967 -S UP l -t * -s 1022 -d 1790 -r 512000.000000 -D 0.160000 -o 96.3deg -l 0.655581 -S UP l -t * -s 1021 -d 1265 -r 512000.000000 -D 0.010000 -o 79.5deg -l 0.020662 -S UP l -t * -s 1018 -d 1611 -r 512000.000000 -D 0.005000 -o 188.2deg -l 0.012709 -S UP l -t * -s 1017 -d 1611 -r 512000.000000 -D 0.005000 -o 216.5deg -l 0.033461 -S UP l -t * -s 1017 -d 1018 -r 512000.000000 -D 0.005000 -o 317.0deg -l 0.064736 -S UP l -t * -s 1016 -d 1018 -r 512000.000000 -D 0.005000 -o 311.7deg -l 0.044410 -S UP l -t * -s 1016 -d 1017 -r 512000.000000 -D 0.005000 -o 299.4deg -l 0.092008 -S UP l -t * -s 1016 -d 1611 -r 512000.000000 -D 0.005000 -o 230.7deg -l 0.028290 -S UP l -t * -s 1015 -d 1917 -r 512000.000000 -D 0.005000 -o 270.8deg -l 0.004131 -S UP l -t * -s 1010 -d 1718 -r 512000.000000 -D 0.005000 -o 290.3deg -l 0.000354 -S UP l -t * -s 1010 -d 1549 -r 512000.000000 -D 0.005000 -o 108.2deg -l 0.015929 -S UP l -t * -s 999 -d 1118 -r 512000.000000 -D 0.560000 -o 245.2deg -l 0.524894 -S UP l -t * -s 998 -d 1485 -r 512000.000000 -D 0.005000 -o 116.8deg -l 0.001013 -S UP l -t * -s 993 -d 1767 -r 512000.000000 -D 0.160000 -o 126.9deg -l 0.121378 -S UP l -t * -s 993 -d 1452 -r 512000.000000 -D 0.005000 -o 137.7deg -l 0.035064 -S UP l -t * -s 993 -d 1145 -r 512000.000000 -D 0.005000 -o 146.5deg -l 0.162498 -S UP l -t * -s 991 -d 1011 -r 512000.000000 -D 0.005000 -o 177.2deg -l 0.005991 -S UP l -t * -s 991 -d 1108 -r 512000.000000 -D 0.120000 -o 208.0deg -l 0.026958 -S UP l -t * -s 991 -d 1042 -r 512000.000000 -D 0.005000 -o 349.9deg -l 0.001078 -S UP l -t * -s 983 -d 1005 -r 512000.000000 -D 0.005000 -o 169.4deg -l 0.007479 -S UP l -t * -s 983 -d 1614 -r 512000.000000 -D 0.005000 -o 16.8deg -l 0.073574 -S UP l -t * -s 983 -d 1461 -r 512000.000000 -D 0.005000 -o 28.5deg -l 0.044681 -S UP l -t * -s 983 -d 1460 -r 512000.000000 -D 0.005000 -o 351.5deg -l 0.053330 -S UP l -t * -s 983 -d 1528 -r 512000.000000 -D 0.005000 -o 323.5deg -l 0.050616 -S UP l -t * -s 981 -d 1324 -r 512000.000000 -D 0.080000 -o 51.0deg -l 0.080976 -S UP l -t * -s 979 -d 1916 -r 512000.000000 -D 0.005000 -o 0.1deg -l 0.019808 -S UP l -t * -s 979 -d 999 -r 512000.000000 -D 0.320000 -o 198.3deg -l 0.297759 -S UP l -t * -s 978 -d 1702 -r 512000.000000 -D 0.005000 -o 147.5deg -l 0.009081 -S UP l -t * -s 977 -d 1702 -r 512000.000000 -D 0.005000 -o 216.5deg -l 0.002897 -S UP l -t * -s 975 -d 1702 -r 512000.000000 -D 0.005000 -o 353.0deg -l 0.185181 -S UP l -t * -s 975 -d 1483 -r 512000.000000 -D 0.005000 -o 172.9deg -l 0.243961 -S UP l -t * -s 974 -d 1702 -r 512000.000000 -D 0.005000 -o 167.5deg -l 0.009648 -S UP l -t * -s 973 -d 1041 -r 512000.000000 -D 0.005000 -o 297.6deg -l 0.000505 -S UP l -t * -s 972 -d 1041 -r 512000.000000 -D 0.005000 -o 318.3deg -l 0.004958 -S UP l -t * -s 972 -d 973 -r 512000.000000 -D 0.005000 -o 44.2deg -l 0.073077 -S UP l -t * -s 965 -d 1230 -r 512000.000000 -D 0.025000 -o 53.7deg -l 0.033734 -S UP l -t * -s 965 -d 1152 -r 512000.000000 -D 0.005000 -o 23.6deg -l 0.017366 -S UP l -t * -s 965 -d 966 -r 512000.000000 -D 0.005000 -o 70.6deg -l 0.013315 -S UP l -t * -s 965 -d 1018 -r 512000.000000 -D 0.005000 -o 256.3deg -l 0.022029 -S UP l -t * -s 965 -d 1017 -r 512000.000000 -D 0.005000 -o 224.3deg -l 0.033622 -S UP l -t * -s 965 -d 1611 -r 512000.000000 -D 0.005000 -o 220.4deg -l 0.045561 -S UP l -t * -s 965 -d 1016 -r 512000.000000 -D 0.005000 -o 209.0deg -l 0.036277 -S UP l -t * -s 964 -d 1017 -r 512000.000000 -D 0.005000 -o 319.3deg -l 0.070747 -S UP l -t * -s 964 -d 1018 -r 512000.000000 -D 0.005000 -o 318.1deg -l 0.022485 -S UP l -t * -s 964 -d 1611 -r 512000.000000 -D 0.005000 -o 246.9deg -l 0.031686 -S UP l -t * -s 964 -d 1016 -r 512000.000000 -D 0.005000 -o 337.0deg -l 0.089392 -S UP l -t * -s 964 -d 965 -r 512000.000000 -D 0.005000 -o 17.4deg -l 0.019848 -S UP l -t * -s 963 -d 1017 -r 512000.000000 -D 0.005000 -o 124.1deg -l 0.089152 -S UP l -t * -s 963 -d 964 -r 512000.000000 -D 0.005000 -o 133.9deg -l 0.047422 -S UP l -t * -s 963 -d 1018 -r 512000.000000 -D 0.005000 -o 329.0deg -l 0.087443 -S UP l -t * -s 963 -d 1611 -r 512000.000000 -D 0.005000 -o 199.6deg -l 0.030906 -S UP l -t * -s 963 -d 1016 -r 512000.000000 -D 0.005000 -o 121.9deg -l 0.068180 -S UP l -t * -s 963 -d 965 -r 512000.000000 -D 0.005000 -o 60.0deg -l 0.026155 -S UP l -t * -s 962 -d 1175 -r 512000.000000 -D 0.005000 -o 352.0deg -l 0.006556 -S UP l -t * -s 960 -d 1144 -r 512000.000000 -D 0.320000 -o 136.6deg -l 0.301780 -S UP l -t * -s 960 -d 1040 -r 512000.000000 -D 0.320000 -o 179.1deg -l 0.300356 -S UP l -t * -s 960 -d 1479 -r 512000.000000 -D 0.320000 -o 237.2deg -l 0.362561 -S UP l -t * -s 960 -d 1303 -r 512000.000000 -D 0.005000 -o 339.7deg -l 0.497007 -S UP l -t * -s 957 -d 1574 -r 512000.000000 -D 0.005000 -o 100.3deg -l 0.000434 -S UP l -t * -s 957 -d 982 -r 512000.000000 -D 0.160000 -o 100.8deg -l 0.155266 -S UP l -t * -s 957 -d 1039 -r 512000.000000 -D 0.160000 -o 160.8deg -l 0.139661 -S UP l -t * -s 957 -d 1915 -r 512000.000000 -D 0.160000 -o 108.1deg -l 0.160832 -S UP l -t * -s 957 -d 1038 -r 512000.000000 -D 0.040000 -o 88.4deg -l 0.033510 -S UP l -t * -s 957 -d 960 -r 512000.000000 -D 0.320000 -o 293.1deg -l 0.304857 -S UP l -t * -s 955 -d 1749 -r 512000.000000 -D 0.005000 -o 150.3deg -l 0.012791 -S UP l -t * -s 955 -d 956 -r 512000.000000 -D 0.005000 -o 331.2deg -l 0.017586 -S UP l -t * -s 954 -d 1776 -r 512000.000000 -D 0.005000 -o 138.1deg -l 0.000698 -S UP l -t * -s 954 -d 980 -r 512000.000000 -D 0.005000 -o 164.0deg -l 0.011146 -S UP l -t * -s 953 -d 954 -r 512000.000000 -D 0.005000 -o 150.6deg -l 0.045415 -S UP l -t * -s 953 -d 956 -r 512000.000000 -D 0.005000 -o 147.9deg -l 0.055806 -S UP l -t * -s 953 -d 959 -r 512000.000000 -D 0.005000 -o 47.4deg -l 0.207400 -S UP l -t * -s 950 -d 1746 -r 512000.000000 -D 0.160000 -o 309.5deg -l 0.155320 -S UP l -t * -s 936 -d 1109 -r 512000.000000 -D 0.005000 -o 287.6deg -l 0.002348 -S UP l -t * -s 935 -d 1109 -r 512000.000000 -D 0.005000 -o 265.5deg -l 0.012266 -S UP l -t * -s 934 -d 1027 -r 512000.000000 -D 0.320000 -o 162.7deg -l 0.290264 -S UP l -t * -s 934 -d 1479 -r 512000.000000 -D 0.640000 -o 276.7deg -l 0.567041 -S UP l -t * -s 931 -d 1345 -r 512000.000000 -D 0.005000 -o 166.9deg -l 0.318633 -S UP l -t * -s 930 -d 1345 -r 512000.000000 -D 0.005000 -o 346.1deg -l 0.010397 -S UP l -t * -s 929 -d 1345 -r 512000.000000 -D 0.005000 -o 347.1deg -l 0.243193 -S UP l -t * -s 928 -d 943 -r 512000.000000 -D 0.160000 -o 96.1deg -l 0.151624 -S UP l -t * -s 928 -d 942 -r 512000.000000 -D 0.040000 -o 274.0deg -l 0.171144 -S UP l -t * -s 927 -d 940 -r 512000.000000 -D 0.080000 -o 63.0deg -l 0.084489 -S UP l -t * -s 927 -d 939 -r 512000.000000 -D 0.080000 -o 78.7deg -l 0.084293 -S UP l -t * -s 926 -d 1451 -r 512000.000000 -D 0.005000 -o 15.8deg -l 0.034852 -S UP l -t * -s 926 -d 1682 -r 512000.000000 -D 0.005000 -o 55.7deg -l 0.013792 -S UP l -t * -s 924 -d 1329 -r 512000.000000 -D 0.005000 -o 312.3deg -l 0.178585 -S UP l -t * -s 923 -d 1616 -r 512000.000000 -D 0.040000 -o 338.7deg -l 0.033967 -S UP l -t * -s 923 -d 1211 -r 512000.000000 -D 0.040000 -o 19.5deg -l 0.039184 -S UP l -t * -s 923 -d 1044 -r 512000.000000 -D 0.040000 -o 345.9deg -l 0.039095 -S UP l -t * -s 923 -d 1795 -r 512000.000000 -D 0.040000 -o 1.4deg -l 0.046844 -S UP l -t * -s 923 -d 1177 -r 512000.000000 -D 0.040000 -o 354.0deg -l 0.047750 -S UP l -t * -s 923 -d 1048 -r 512000.000000 -D 0.040000 -o 8.9deg -l 0.043831 -S UP l -t * -s 923 -d 1107 -r 512000.000000 -D 0.320000 -o 344.1deg -l 0.323899 -S UP l -t * -s 923 -d 1203 -r 512000.000000 -D 0.320000 -o 165.2deg -l 0.396724 -S UP l -t * -s 921 -d 1451 -r 512000.000000 -D 0.005000 -o 83.0deg -l 0.018809 -S UP l -t * -s 921 -d 1450 -r 512000.000000 -D 0.005000 -o 20.3deg -l 0.005224 -S UP l -t * -s 920 -d 938 -r 512000.000000 -D 0.005000 -o 160.6deg -l 0.010892 -S UP l -t * -s 920 -d 934 -r 512000.000000 -D 0.005000 -o 334.4deg -l 0.012487 -S UP l -t * -s 919 -d 934 -r 512000.000000 -D 0.320000 -o 11.1deg -l 0.283548 -S UP l -t * -s 918 -d 934 -r 512000.000000 -D 0.320000 -o 334.4deg -l 0.291934 -S UP l -t * -s 915 -d 1792 -r 512000.000000 -D 0.005000 -o 213.3deg -l 0.001141 -S UP l -t * -s 914 -d 1887 -r 512000.000000 -D 0.005000 -o 111.5deg -l 0.301152 -S UP l -t * -s 913 -d 1031 -r 512000.000000 -D 0.080000 -o 104.5deg -l 0.085334 -S UP l -t * -s 913 -d 1567 -r 512000.000000 -D 0.080000 -o 115.8deg -l 0.082169 -S UP l -t * -s 913 -d 970 -r 512000.000000 -D 0.080000 -o 92.9deg -l 0.077491 -S UP l -t * -s 911 -d 924 -r 512000.000000 -D 0.005000 -o 321.8deg -l 0.113589 -S UP l -t * -s 911 -d 1329 -r 512000.000000 -D 0.005000 -o 316.4deg -l 0.403439 -S UP l -t * -s 910 -d 1429 -r 512000.000000 -D 0.005000 -o 100.6deg -l 0.034966 -S UP l -t * -s 910 -d 1417 -r 512000.000000 -D 0.005000 -o 95.5deg -l 0.023511 -S UP l -t * -s 910 -d 947 -r 512000.000000 -D 0.005000 -o 121.3deg -l 0.014165 -S UP l -t * -s 910 -d 946 -r 512000.000000 -D 0.005000 -o 108.5deg -l 0.008894 -S UP l -t * -s 908 -d 929 -r 512000.000000 -D 0.005000 -o 347.3deg -l 0.201511 -S UP l -t * -s 908 -d 983 -r 512000.000000 -D 0.005000 -o 170.1deg -l 0.061144 -S UP l -t * -s 908 -d 1614 -r 512000.000000 -D 0.005000 -o 162.8deg -l 0.027040 -S UP l -t * -s 908 -d 1460 -r 512000.000000 -D 0.005000 -o 169.4deg -l 0.001485 -S UP l -t * -s 908 -d 1461 -r 512000.000000 -D 0.005000 -o 150.7deg -l 0.014865 -S UP l -t * -s 908 -d 1528 -r 512000.000000 -D 0.005000 -o 183.4deg -l 0.008642 -S UP l -t * -s 907 -d 1640 -r 512000.000000 -D 0.005000 -o 189.6deg -l 0.009739 -S UP l -t * -s 907 -d 1613 -r 512000.000000 -D 0.005000 -o 120.9deg -l 0.071059 -S UP l -t * -s 906 -d 1821 -r 512000.000000 -D 0.080000 -o 318.0deg -l 0.453197 -S UP l -t * -s 906 -d 1028 -r 512000.000000 -D 0.225000 -o 138.8deg -l 0.268492 -S UP l -t * -s 905 -d 1215 -r 512000.000000 -D 0.005000 -o 134.6deg -l 0.054173 -S UP l -t * -s 905 -d 1109 -r 512000.000000 -D 0.005000 -o 71.4deg -l 0.044715 -S UP l -t * -s 905 -d 1821 -r 512000.000000 -D 0.005000 -o 286.5deg -l 0.034649 -S UP l -t * -s 904 -d 1329 -r 512000.000000 -D 0.005000 -o 132.7deg -l 0.145771 -S UP l -t * -s 904 -d 1604 -r 512000.000000 -D 0.005000 -o 353.7deg -l 0.073155 -S UP l -t * -s 904 -d 1601 -r 512000.000000 -D 0.005000 -o 307.6deg -l 0.252658 -S UP l -t * -s 903 -d 923 -r 512000.000000 -D 0.040000 -o 151.7deg -l 0.092021 -S UP l -t * -s 902 -d 1142 -r 512000.000000 -D 0.320000 -o 136.4deg -l 0.266219 -S UP l -t * -s 902 -d 1061 -r 512000.000000 -D 0.160000 -o 117.6deg -l 0.154112 -S UP l -t * -s 902 -d 995 -r 512000.000000 -D 0.160000 -o 109.1deg -l 0.159142 -S UP l -t * -s 902 -d 1539 -r 512000.000000 -D 0.160000 -o 135.9deg -l 0.177608 -S UP l -t * -s 902 -d 994 -r 512000.000000 -D 0.160000 -o 153.3deg -l 0.152664 -S UP l -t * -s 902 -d 993 -r 512000.000000 -D 0.320000 -o 142.2deg -l 0.324529 -S UP l -t * -s 902 -d 925 -r 512000.000000 -D 0.005000 -o 356.1deg -l 0.611898 -S UP l -t * -s 901 -d 1619 -r 512000.000000 -D 0.320000 -o 175.7deg -l 0.299098 -S UP l -t * -s 901 -d 1479 -r 512000.000000 -D 0.320000 -o 273.6deg -l 0.369809 -S UP l -t * -s 901 -d 984 -r 512000.000000 -D 0.320000 -o 180.9deg -l 0.307138 -S UP l -t * -s 901 -d 985 -r 512000.000000 -D 0.320000 -o 185.9deg -l 0.303780 -S UP l -t * -s 900 -d 923 -r 512000.000000 -D 0.040000 -o 143.7deg -l 0.045842 -S UP l -t * -s 899 -d 1174 -r 512000.000000 -D 0.005000 -o 83.0deg -l 0.009958 -S UP l -t * -s 899 -d 922 -r 512000.000000 -D 0.080000 -o 83.0deg -l 0.083592 -S UP l -t * -s 898 -d 1022 -r 512000.000000 -D 0.160000 -o 200.8deg -l 0.160845 -S UP l -t * -s 898 -d 1914 -r 512000.000000 -D 0.160000 -o 16.7deg -l 0.139618 -S UP l -t * -s 897 -d 1022 -r 512000.000000 -D 0.015000 -o 239.7deg -l 0.029521 -S UP l -t * -s 897 -d 917 -r 512000.000000 -D 0.005000 -o 60.2deg -l 0.011190 -S UP l -t * -s 896 -d 1022 -r 512000.000000 -D 0.160000 -o 155.8deg -l 0.135212 -S UP l -t * -s 895 -d 1281 -r 512000.000000 -D 0.160000 -o 140.3deg -l 0.152501 -S UP l -t * -s 895 -d 1098 -r 512000.000000 -D 0.160000 -o 124.5deg -l 0.145989 -S UP l -t * -s 895 -d 1913 -r 512000.000000 -D 0.160000 -o 112.5deg -l 0.154951 -S UP l -t * -s 895 -d 914 -r 512000.000000 -D 0.160000 -o 114.7deg -l 0.401474 -S UP l -t * -s 895 -d 1456 -r 512000.000000 -D 0.160000 -o 127.2deg -l 0.208975 -S UP l -t * -s 895 -d 913 -r 512000.000000 -D 0.160000 -o 105.5deg -l 0.184465 -S UP l -t * -s 895 -d 912 -r 512000.000000 -D 0.960000 -o 144.3deg -l 0.678167 -S UP l -t * -s 895 -d 1790 -r 512000.000000 -D 0.160000 -o 296.8deg -l 0.526884 -S UP l -t * -s 894 -d 1097 -r 512000.000000 -D 0.005000 -o 117.4deg -l 0.000755 -S UP l -t * -s 894 -d 902 -r 512000.000000 -D 0.160000 -o 307.1deg -l 0.164647 -S UP l -t * -s 893 -d 1029 -r 512000.000000 -D 0.005000 -o 151.4deg -l 0.005996 -S UP l -t * -s 892 -d 948 -r 512000.000000 -D 0.005000 -o 122.8deg -l 0.003437 -S UP l -t * -s 891 -d 951 -r 512000.000000 -D 0.160000 -o 143.1deg -l 0.160602 -S UP l -t * -s 891 -d 950 -r 512000.000000 -D 0.160000 -o 131.8deg -l 0.133014 -S UP l -t * -s 891 -d 949 -r 512000.000000 -D 0.005000 -o 128.4deg -l 0.008207 -S UP l -t * -s 890 -d 1028 -r 512000.000000 -D 0.225000 -o 326.5deg -l 0.239463 -S UP l -t * -s 889 -d 911 -r 512000.000000 -D 0.080000 -o 320.1deg -l 0.390868 -S UP l -t * -s 889 -d 910 -r 512000.000000 -D 0.080000 -o 105.2deg -l 0.122387 -S UP l -t * -s 889 -d 909 -r 512000.000000 -D 0.080000 -o 100.2deg -l 0.074417 -S UP l -t * -s 889 -d 906 -r 512000.000000 -D 0.225000 -o 323.3deg -l 0.362832 -S UP l -t * -s 886 -d 1141 -r 512000.000000 -D 0.320000 -o 57.4deg -l 0.309205 -S UP l -t * -s 885 -d 1681 -r 512000.000000 -D 0.005000 -o 100.5deg -l 0.002684 -S UP l -t * -s 883 -d 907 -r 512000.000000 -D 0.320000 -o 304.0deg -l 0.030653 -S UP l -t * -s 883 -d 1640 -r 512000.000000 -D 0.005000 -o 229.8deg -l 0.003232 -S UP l -t * -s 880 -d 1798 -r 512000.000000 -D 0.005000 -o 247.6deg -l 0.000946 -S UP l -t * -s 879 -d 1798 -r 512000.000000 -D 0.005000 -o 272.5deg -l 0.028612 -S UP l -t * -s 878 -d 1798 -r 512000.000000 -D 0.005000 -o 285.7deg -l 0.030041 -S UP l -t * -s 877 -d 1798 -r 512000.000000 -D 0.005000 -o 285.9deg -l 0.002238 -S UP l -t * -s 876 -d 1798 -r 512000.000000 -D 0.005000 -o 268.2deg -l 0.002152 -S UP l -t * -s 875 -d 1798 -r 512000.000000 -D 0.005000 -o 235.3deg -l 0.000449 -S UP l -t * -s 874 -d 1798 -r 512000.000000 -D 0.005000 -o 298.7deg -l 0.031376 -S UP l -t * -s 873 -d 957 -r 512000.000000 -D 0.160000 -o 278.5deg -l 0.170817 -S UP l -t * -s 872 -d 1107 -r 512000.000000 -D 0.020000 -o 176.2deg -l 0.027764 -S UP l -t * -s 869 -d 1247 -r 512000.000000 -D 0.005000 -o 68.0deg -l 0.126656 -S UP l -t * -s 869 -d 1497 -r 512000.000000 -D 0.005000 -o 251.9deg -l 0.193910 -S UP l -t * -s 868 -d 903 -r 512000.000000 -D 0.005000 -o 150.4deg -l 0.001294 -S UP l -t * -s 867 -d 903 -r 512000.000000 -D 0.005000 -o 137.5deg -l 0.005181 -S UP l -t * -s 866 -d 903 -r 512000.000000 -D 0.005000 -o 162.5deg -l 0.012972 -S UP l -t * -s 865 -d 1502 -r 512000.000000 -D 0.120000 -o 107.2deg -l 0.111944 -S UP l -t * -s 865 -d 1568 -r 512000.000000 -D 0.120000 -o 94.0deg -l 0.101787 -S UP l -t * -s 864 -d 1356 -r 512000.000000 -D 0.160000 -o 295.7deg -l 0.147946 -S UP l -t * -s 863 -d 902 -r 512000.000000 -D 0.160000 -o 323.7deg -l 0.150895 -S UP l -t * -s 862 -d 1120 -r 512000.000000 -D 0.140000 -o 46.2deg -l 0.124223 -S UP l -t * -s 861 -d 1176 -r 512000.000000 -D 0.040000 -o 35.5deg -l 0.012190 -S UP l -t * -s 860 -d 901 -r 512000.000000 -D 0.320000 -o 346.5deg -l 0.310049 -S UP l -t * -s 855 -d 899 -r 512000.000000 -D 0.080000 -o 285.1deg -l 0.083852 -S UP l -t * -s 854 -d 995 -r 512000.000000 -D 0.005000 -o 292.5deg -l 0.007702 -S UP l -t * -s 852 -d 894 -r 512000.000000 -D 0.040000 -o 310.3deg -l 0.037391 -S UP l -t * -s 850 -d 892 -r 512000.000000 -D 0.160000 -o 117.3deg -l 0.149631 -S UP l -t * -s 850 -d 891 -r 512000.000000 -D 0.225000 -o 131.6deg -l 0.238894 -S UP l -t * -s 850 -d 893 -r 512000.000000 -D 0.160000 -o 136.4deg -l 0.144002 -S UP l -t * -s 850 -d 870 -r 512000.000000 -D 0.160000 -o 106.1deg -l 0.155298 -S UP l -t * -s 850 -d 1746 -r 512000.000000 -D 0.225000 -o 133.4deg -l 0.216919 -S UP l -t * -s 850 -d 865 -r 512000.000000 -D 0.320000 -o 111.3deg -l 0.328064 -S UP l -t * -s 850 -d 859 -r 512000.000000 -D 0.160000 -o 89.8deg -l 0.162522 -S UP l -t * -s 850 -d 890 -r 512000.000000 -D 0.225000 -o 335.4deg -l 0.218736 -S UP l -t * -s 850 -d 889 -r 512000.000000 -D 0.225000 -o 329.2deg -l 0.470887 -S UP l -t * -s 849 -d 998 -r 512000.000000 -D 0.005000 -o 117.6deg -l 0.023030 -S UP l -t * -s 849 -d 1743 -r 512000.000000 -D 0.005000 -o 105.9deg -l 0.011275 -S UP l -t * -s 849 -d 996 -r 512000.000000 -D 0.080000 -o 129.9deg -l 0.082875 -S UP l -t * -s 849 -d 997 -r 512000.000000 -D 0.320000 -o 136.5deg -l 0.296137 -S UP l -t * -s 849 -d 925 -r 512000.000000 -D 0.320000 -o 288.8deg -l 0.626700 -S UP l -t * -s 845 -d 1249 -r 512000.000000 -D 0.005000 -o 38.9deg -l 0.012028 -S UP l -t * -s 844 -d 1249 -r 512000.000000 -D 0.080000 -o 40.5deg -l 0.080316 -S UP l -t * -s 843 -d 846 -r 512000.000000 -D 0.040000 -o 268.3deg -l 0.039845 -S UP l -t * -s 843 -d 1593 -r 512000.000000 -D 0.040000 -o 86.4deg -l 0.096604 -S UP l -t * -s 842 -d 1019 -r 512000.000000 -D 0.080000 -o 70.0deg -l 0.071828 -S UP l -t * -s 841 -d 1304 -r 512000.000000 -D 0.160000 -o 313.1deg -l 0.159743 -S UP l -t * -s 838 -d 888 -r 512000.000000 -D 0.160000 -o 333.4deg -l 0.152558 -S UP l -t * -s 838 -d 840 -r 512000.000000 -D 0.160000 -o 349.1deg -l 0.157277 -S UP l -t * -s 837 -d 1024 -r 512000.000000 -D 0.020000 -o 13.9deg -l 0.025302 -S UP l -t * -s 837 -d 1023 -r 512000.000000 -D 0.020000 -o 30.0deg -l 0.020271 -S UP l -t * -s 837 -d 1772 -r 512000.000000 -D 0.640000 -o 213.2deg -l 0.597230 -S UP l -t * -s 836 -d 1327 -r 512000.000000 -D 0.005000 -o 259.3deg -l 0.017180 -S UP l -t * -s 835 -d 1327 -r 512000.000000 -D 0.005000 -o 246.6deg -l 0.022277 -S UP l -t * -s 834 -d 1691 -r 512000.000000 -D 0.160000 -o 35.2deg -l 0.152845 -S UP l -t * -s 834 -d 1022 -r 512000.000000 -D 0.160000 -o 224.4deg -l 0.318705 -S UP l -t * -s 833 -d 881 -r 512000.000000 -D 0.320000 -o 332.6deg -l 0.307926 -S UP l -t * -s 832 -d 1766 -r 512000.000000 -D 0.040000 -o 31.6deg -l 0.042617 -S UP l -t * -s 832 -d 1667 -r 512000.000000 -D 0.005000 -o 49.2deg -l 0.000438 -S UP l -t * -s 832 -d 1022 -r 512000.000000 -D 0.005000 -o 167.0deg -l 0.290810 -S UP l -t * -s 831 -d 1106 -r 512000.000000 -D 0.020000 -o 49.4deg -l 0.047208 -S UP l -t * -s 830 -d 873 -r 512000.000000 -D 0.160000 -o 296.8deg -l 0.136954 -S UP l -t * -s 829 -d 870 -r 512000.000000 -D 0.005000 -o 289.2deg -l 0.012162 -S UP l -t * -s 826 -d 869 -r 512000.000000 -D 0.005000 -o 256.0deg -l 0.013959 -S UP l -t * -s 821 -d 1325 -r 512000.000000 -D 0.080000 -o 124.0deg -l 0.050833 -S UP l -t * -s 821 -d 865 -r 512000.000000 -D 0.120000 -o 306.9deg -l 0.106733 -S UP l -t * -s 820 -d 827 -r 512000.000000 -D 0.005000 -o 120.1deg -l 0.019452 -S UP l -t * -s 820 -d 865 -r 512000.000000 -D 0.005000 -o 300.4deg -l 0.014759 -S UP l -t * -s 819 -d 1276 -r 512000.000000 -D 0.005000 -o 194.9deg -l 0.009765 -S UP l -t * -s 818 -d 1268 -r 512000.000000 -D 0.160000 -o 356.8deg -l 0.144253 -S UP l -t * -s 818 -d 1065 -r 512000.000000 -D 0.160000 -o 350.8deg -l 0.157722 -S UP l -t * -s 818 -d 1236 -r 512000.000000 -D 0.160000 -o 343.4deg -l 0.156949 -S UP l -t * -s 817 -d 864 -r 512000.000000 -D 0.080000 -o 305.4deg -l 0.075313 -S UP l -t * -s 813 -d 1264 -r 512000.000000 -D 0.020000 -o 55.0deg -l 0.095651 -S UP l -t * -s 813 -d 1021 -r 512000.000000 -D 0.020000 -o 75.5deg -l 0.057782 -S UP l -t * -s 812 -d 1796 -r 512000.000000 -D 0.005000 -o 325.2deg -l 0.075932 -S UP l -t * -s 811 -d 1796 -r 512000.000000 -D 0.005000 -o 146.7deg -l 0.070344 -S UP l -t * -s 811 -d 812 -r 512000.000000 -D 0.005000 -o 146.0deg -l 0.033265 -S UP l -t * -s 809 -d 862 -r 512000.000000 -D 0.240000 -o 56.4deg -l 0.245404 -S UP l -t * -s 809 -d 842 -r 512000.000000 -D 0.160000 -o 72.9deg -l 0.169618 -S UP l -t * -s 809 -d 861 -r 512000.000000 -D 0.480000 -o 45.3deg -l 0.459188 -S UP l -t * -s 808 -d 1394 -r 512000.000000 -D 0.005000 -o 238.3deg -l 0.626882 -S UP l -t * -s 808 -d 1118 -r 512000.000000 -D 0.480000 -o 64.8deg -l 0.538431 -S UP l -t * -s 807 -d 860 -r 512000.000000 -D 0.160000 -o 327.9deg -l 0.128362 -S UP l -t * -s 805 -d 1560 -r 512000.000000 -D 0.005000 -o 71.6deg -l 0.020773 -S UP l -t * -s 805 -d 1705 -r 512000.000000 -D 0.005000 -o 43.1deg -l 0.021019 -S UP l -t * -s 805 -d 1581 -r 512000.000000 -D 0.005000 -o 117.8deg -l 0.019762 -S UP l -t * -s 805 -d 1311 -r 512000.000000 -D 0.005000 -o 83.0deg -l 0.018919 -S UP l -t * -s 804 -d 1492 -r 512000.000000 -D 0.040000 -o 98.8deg -l 0.045672 -S UP l -t * -s 803 -d 1556 -r 512000.000000 -D 0.005000 -o 87.9deg -l 0.005883 -S UP l -t * -s 803 -d 859 -r 512000.000000 -D 0.005000 -o 265.8deg -l 0.037898 -S UP l -t * -s 802 -d 859 -r 512000.000000 -D 0.005000 -o 289.0deg -l 0.000006 -S UP l -t * -s 801 -d 859 -r 512000.000000 -D 0.005000 -o 276.2deg -l 0.011968 -S UP l -t * -s 800 -d 859 -r 512000.000000 -D 0.005000 -o 256.5deg -l 0.037829 -S UP l -t * -s 798 -d 968 -r 512000.000000 -D 0.005000 -o 122.9deg -l 0.005955 -S UP l -t * -s 798 -d 858 -r 512000.000000 -D 0.160000 -o 122.0deg -l 0.158697 -S UP l -t * -s 797 -d 800 -r 512000.000000 -D 0.005000 -o 253.8deg -l 0.004698 -S UP l -t * -s 795 -d 838 -r 512000.000000 -D 0.160000 -o 339.6deg -l 0.205455 -S UP l -t * -s 794 -d 1301 -r 512000.000000 -D 0.005000 -o 295.2deg -l 0.009113 -S UP l -t * -s 790 -d 1026 -r 512000.000000 -D 0.020000 -o 286.4deg -l 0.028905 -S UP l -t * -s 789 -d 1912 -r 512000.000000 -D 0.005000 -o 322.1deg -l 0.003645 -S UP l -t * -s 789 -d 1911 -r 512000.000000 -D 0.005000 -o 67.7deg -l 0.011907 -S UP l -t * -s 789 -d 1910 -r 512000.000000 -D 0.005000 -o 48.3deg -l 0.004116 -S UP l -t * -s 789 -d 1909 -r 512000.000000 -D 0.005000 -o 15.2deg -l 0.012408 -S UP l -t * -s 789 -d 1908 -r 512000.000000 -D 0.005000 -o 7.8deg -l 0.001549 -S UP l -t * -s 789 -d 1907 -r 512000.000000 -D 0.005000 -o 39.7deg -l 0.000555 -S UP l -t * -s 789 -d 1906 -r 512000.000000 -D 0.005000 -o 2.9deg -l 0.011280 -S UP l -t * -s 789 -d 1905 -r 512000.000000 -D 0.005000 -o 62.3deg -l 0.017072 -S UP l -t * -s 789 -d 1904 -r 512000.000000 -D 0.005000 -o 20.9deg -l 0.008214 -S UP l -t * -s 789 -d 1903 -r 512000.000000 -D 0.005000 -o 332.0deg -l 0.008368 -S UP l -t * -s 789 -d 1902 -r 512000.000000 -D 0.005000 -o 55.3deg -l 0.008631 -S UP l -t * -s 789 -d 1901 -r 512000.000000 -D 0.005000 -o 354.7deg -l 0.010903 -S UP l -t * -s 789 -d 1900 -r 512000.000000 -D 0.005000 -o 39.8deg -l 0.014967 -S UP l -t * -s 789 -d 1899 -r 512000.000000 -D 0.005000 -o 33.1deg -l 0.013208 -S UP l -t * -s 789 -d 1898 -r 512000.000000 -D 0.005000 -o 312.1deg -l 0.008974 -S UP l -t * -s 789 -d 1897 -r 512000.000000 -D 0.005000 -o 76.6deg -l 0.014768 -S UP l -t * -s 789 -d 1896 -r 512000.000000 -D 0.005000 -o 340.3deg -l 0.006363 -S UP l -t * -s 789 -d 1895 -r 512000.000000 -D 0.005000 -o 26.6deg -l 0.005886 -S UP l -t * -s 789 -d 1894 -r 512000.000000 -D 0.005000 -o 348.3deg -l 0.002112 -S UP l -t * -s 784 -d 1113 -r 512000.000000 -D 0.320000 -o 347.8deg -l 0.315682 -S UP l -t * -s 784 -d 1801 -r 512000.000000 -D 0.160000 -o 0.3deg -l 0.158535 -S UP l -t * -s 784 -d 1653 -r 512000.000000 -D 0.320000 -o 359.9deg -l 0.306598 -S UP l -t * -s 784 -d 1203 -r 512000.000000 -D 0.320000 -o 347.1deg -l 0.430861 -S UP l -t * -s 783 -d 1106 -r 512000.000000 -D 0.020000 -o 225.9deg -l 0.028907 -S UP l -t * -s 781 -d 855 -r 512000.000000 -D 0.080000 -o 285.6deg -l 0.078938 -S UP l -t * -s 778 -d 1227 -r 512000.000000 -D 0.160000 -o 312.1deg -l 0.039651 -S UP l -t * -s 778 -d 1617 -r 512000.000000 -D 0.005000 -o 247.4deg -l 0.072625 -S UP l -t * -s 777 -d 1227 -r 512000.000000 -D 0.160000 -o 321.4deg -l 0.024269 -S UP l -t * -s 777 -d 1617 -r 512000.000000 -D 0.005000 -o 222.4deg -l 0.098667 -S UP l -t * -s 777 -d 778 -r 512000.000000 -D 0.005000 -o 79.9deg -l 0.084966 -S UP l -t * -s 772 -d 853 -r 512000.000000 -D 0.040000 -o 30.7deg -l 0.031432 -S UP l -t * -s 769 -d 1335 -r 512000.000000 -D 0.005000 -o 347.2deg -l 0.126548 -S UP l -t * -s 769 -d 1213 -r 512000.000000 -D 0.005000 -o 348.3deg -l 0.395689 -S UP l -t * -s 769 -d 931 -r 512000.000000 -D 0.005000 -o 167.2deg -l 0.370847 -S UP l -t * -s 769 -d 1893 -r 512000.000000 -D 0.005000 -o 168.9deg -l 0.015480 -S UP l -t * -s 768 -d 1335 -r 512000.000000 -D 0.005000 -o 351.7deg -l 0.000690 -S UP l -t * -s 763 -d 1278 -r 512000.000000 -D 0.005000 -o 218.3deg -l 0.009210 -S UP l -t * -s 762 -d 1276 -r 512000.000000 -D 0.005000 -o 216.8deg -l 0.015067 -S UP l -t * -s 761 -d 1276 -r 512000.000000 -D 0.005000 -o 206.3deg -l 0.007219 -S UP l -t * -s 760 -d 1454 -r 512000.000000 -D 0.020000 -o 128.4deg -l 0.083408 -S UP l -t * -s 760 -d 1344 -r 512000.000000 -D 0.040000 -o 148.1deg -l 0.033775 -S UP l -t * -s 760 -d 1228 -r 512000.000000 -D 0.120000 -o 90.5deg -l 0.110158 -S UP l -t * -s 760 -d 941 -r 512000.000000 -D 0.320000 -o 109.1deg -l 0.301848 -S UP l -t * -s 760 -d 850 -r 512000.000000 -D 0.320000 -o 50.7deg -l 0.390127 -S UP l -t * -s 760 -d 1348 -r 512000.000000 -D 0.160000 -o 153.0deg -l 0.270102 -S UP l -t * -s 760 -d 1511 -r 512000.000000 -D 0.120000 -o 108.2deg -l 0.139582 -S UP l -t * -s 760 -d 1748 -r 512000.000000 -D 0.120000 -o 120.1deg -l 0.122675 -S UP l -t * -s 760 -d 849 -r 512000.000000 -D 0.320000 -o 279.6deg -l 0.546518 -S UP l -t * -s 758 -d 1632 -r 512000.000000 -D 0.320000 -o 196.1deg -l 0.308446 -S UP l -t * -s 758 -d 1479 -r 512000.000000 -D 0.320000 -o 272.9deg -l 0.321441 -S UP l -t * -s 755 -d 757 -r 512000.000000 -D 0.005000 -o 151.8deg -l 0.084157 -S UP l -t * -s 753 -d 1543 -r 512000.000000 -D 0.800000 -o 289.1deg -l 0.753426 -S UP l -t * -s 753 -d 1892 -r 512000.000000 -D 0.005000 -o 121.4deg -l 0.017080 -S UP l -t * -s 752 -d 1543 -r 512000.000000 -D 0.020000 -o 237.9deg -l 0.016278 -S UP l -t * -s 751 -d 1543 -r 512000.000000 -D 0.005000 -o 263.6deg -l 0.002185 -S UP l -t * -s 750 -d 1891 -r 512000.000000 -D 0.005000 -o 336.8deg -l 0.014147 -S UP l -t * -s 748 -d 1000 -r 512000.000000 -D 0.160000 -o 344.5deg -l 0.160889 -S UP l -t * -s 740 -d 813 -r 512000.000000 -D 0.005000 -o 242.8deg -l 0.425584 -S UP l -t * -s 739 -d 842 -r 512000.000000 -D 0.960000 -o 277.8deg -l 0.914228 -S UP l -t * -s 736 -d 1409 -r 512000.000000 -D 0.480000 -o 353.1deg -l 0.417524 -S UP l -t * -s 736 -d 971 -r 512000.000000 -D 0.080000 -o 43.7deg -l 0.056429 -S UP l -t * -s 732 -d 1074 -r 512000.000000 -D 0.320000 -o 309.8deg -l 0.321553 -S UP l -t * -s 731 -d 1890 -r 512000.000000 -D 0.320000 -o 21.6deg -l 0.126659 -S UP l -t * -s 729 -d 1464 -r 512000.000000 -D 0.080000 -o 125.2deg -l 0.081784 -S UP l -t * -s 729 -d 1201 -r 512000.000000 -D 0.005000 -o 93.0deg -l 0.082387 -S UP l -t * -s 729 -d 1140 -r 512000.000000 -D 0.080000 -o 110.3deg -l 0.153409 -S UP l -t * -s 729 -d 1111 -r 512000.000000 -D 0.005000 -o 94.3deg -l 0.103102 -S UP l -t * -s 728 -d 1111 -r 512000.000000 -D 0.005000 -o 272.1deg -l 0.005633 -S UP l -t * -s 727 -d 1663 -r 512000.000000 -D 0.005000 -o 96.8deg -l 0.045384 -S UP l -t * -s 727 -d 1465 -r 512000.000000 -D 0.005000 -o 89.6deg -l 0.033687 -S UP l -t * -s 727 -d 1201 -r 512000.000000 -D 0.005000 -o 274.1deg -l 0.063560 -S UP l -t * -s 727 -d 1111 -r 512000.000000 -D 0.005000 -o 272.4deg -l 0.042878 -S UP l -t * -s 727 -d 728 -r 512000.000000 -D 0.005000 -o 273.3deg -l 0.075766 -S UP l -t * -s 726 -d 1570 -r 512000.000000 -D 0.005000 -o 4.7deg -l 0.000742 -S UP l -t * -s 725 -d 726 -r 512000.000000 -D 0.005000 -o 269.7deg -l 0.060337 -S UP l -t * -s 725 -d 1570 -r 512000.000000 -D 0.005000 -o 339.0deg -l 0.008122 -S UP l -t * -s 721 -d 1216 -r 512000.000000 -D 0.005000 -o 146.8deg -l 0.000780 -S UP l -t * -s 720 -d 835 -r 512000.000000 -D 0.005000 -o 246.5deg -l 0.010115 -S UP l -t * -s 719 -d 834 -r 512000.000000 -D 0.160000 -o 254.0deg -l 0.148302 -S UP l -t * -s 718 -d 834 -r 512000.000000 -D 0.160000 -o 196.8deg -l 0.135859 -S UP l -t * -s 718 -d 787 -r 512000.000000 -D 0.005000 -o 4.8deg -l 0.012104 -S UP l -t * -s 717 -d 834 -r 512000.000000 -D 0.160000 -o 232.6deg -l 0.171743 -S UP l -t * -s 717 -d 1397 -r 512000.000000 -D 0.005000 -o 50.4deg -l 0.011000 -S UP l -t * -s 716 -d 832 -r 512000.000000 -D 0.040000 -o 176.3deg -l 0.047669 -S UP l -t * -s 715 -d 785 -r 512000.000000 -D 0.005000 -o 313.6deg -l 0.001123 -S UP l -t * -s 715 -d 832 -r 512000.000000 -D 0.005000 -o 139.6deg -l 0.016087 -S UP l -t * -s 714 -d 832 -r 512000.000000 -D 0.040000 -o 151.5deg -l 0.062965 -S UP l -t * -s 714 -d 1421 -r 512000.000000 -D 0.005000 -o 321.3deg -l 0.012323 -S UP l -t * -s 713 -d 832 -r 512000.000000 -D 0.040000 -o 158.2deg -l 0.237734 -S UP l -t * -s 713 -d 833 -r 512000.000000 -D 0.005000 -o 335.9deg -l 0.178391 -S UP l -t * -s 712 -d 832 -r 512000.000000 -D 0.005000 -o 196.8deg -l 0.007059 -S UP l -t * -s 711 -d 832 -r 512000.000000 -D 0.040000 -o 190.0deg -l 0.043637 -S UP l -t * -s 710 -d 832 -r 512000.000000 -D 0.040000 -o 162.7deg -l 0.035174 -S UP l -t * -s 709 -d 822 -r 512000.000000 -D 0.015000 -o 78.7deg -l 0.011887 -S UP l -t * -s 700 -d 765 -r 512000.000000 -D 0.005000 -o 335.6deg -l 0.013053 -S UP l -t * -s 698 -d 767 -r 512000.000000 -D 0.005000 -o 20.0deg -l 0.006666 -S UP l -t * -s 696 -d 1888 -r 512000.000000 -D 0.005000 -o 80.6deg -l 0.075192 -S UP l -t * -s 696 -d 1094 -r 512000.000000 -D 0.005000 -o 156.0deg -l 0.019269 -S UP l -t * -s 695 -d 825 -r 512000.000000 -D 0.160000 -o 14.9deg -l 0.158041 -S UP l -t * -s 694 -d 818 -r 512000.000000 -D 0.160000 -o 193.6deg -l 0.145472 -S UP l -t * -s 694 -d 1291 -r 512000.000000 -D 0.005000 -o 91.0deg -l 0.000922 -S UP l -t * -s 693 -d 818 -r 512000.000000 -D 0.160000 -o 221.2deg -l 0.132542 -S UP l -t * -s 693 -d 1330 -r 512000.000000 -D 0.005000 -o 193.7deg -l 0.019398 -S UP l -t * -s 692 -d 818 -r 512000.000000 -D 0.160000 -o 183.7deg -l 0.146401 -S UP l -t * -s 692 -d 1275 -r 512000.000000 -D 0.005000 -o 86.3deg -l 0.001489 -S UP l -t * -s 690 -d 818 -r 512000.000000 -D 0.160000 -o 216.3deg -l 0.220746 -S UP l -t * -s 690 -d 819 -r 512000.000000 -D 0.160000 -o 43.7deg -l 0.089954 -S UP l -t * -s 690 -d 763 -r 512000.000000 -D 0.160000 -o 78.9deg -l 0.076898 -S UP l -t * -s 690 -d 762 -r 512000.000000 -D 0.160000 -o 54.8deg -l 0.113682 -S UP l -t * -s 690 -d 761 -r 512000.000000 -D 0.160000 -o 49.9deg -l 0.098271 -S UP l -t * -s 690 -d 1276 -r 512000.000000 -D 0.005000 -o 75.5deg -l 0.000906 -S UP l -t * -s 689 -d 818 -r 512000.000000 -D 0.160000 -o 187.3deg -l 0.163449 -S UP l -t * -s 689 -d 1275 -r 512000.000000 -D 0.005000 -o 94.8deg -l 0.016737 -S UP l -t * -s 688 -d 1559 -r 512000.000000 -D 0.005000 -o 204.7deg -l 0.971883 -S UP l -t * -s 687 -d 1343 -r 512000.000000 -D 0.005000 -o 236.9deg -l 0.015348 -S UP l -t * -s 686 -d 1139 -r 512000.000000 -D 0.160000 -o 245.5deg -l 0.154027 -S UP l -t * -s 685 -d 747 -r 512000.000000 -D 0.005000 -o 236.5deg -l 0.015526 -S UP l -t * -s 684 -d 755 -r 512000.000000 -D 0.005000 -o 75.9deg -l 0.008266 -S UP l -t * -s 684 -d 756 -r 512000.000000 -D 0.005000 -o 62.8deg -l 0.011162 -S UP l -t * -s 684 -d 757 -r 512000.000000 -D 0.005000 -o 88.2deg -l 0.018322 -S UP l -t * -s 680 -d 808 -r 512000.000000 -D 0.160000 -o 254.1deg -l 0.141259 -S UP l -t * -s 679 -d 814 -r 512000.000000 -D 0.320000 -o 67.5deg -l 0.303039 -S UP l -t * -s 679 -d 808 -r 512000.000000 -D 0.480000 -o 242.3deg -l 1.067147 -S UP l -t * -s 679 -d 1532 -r 512000.000000 -D 0.005000 -o 72.7deg -l 0.007419 -S UP l -t * -s 679 -d 813 -r 512000.000000 -D 0.005000 -o 62.5deg -l 0.451801 -S UP l -t * -s 679 -d 740 -r 512000.000000 -D 0.005000 -o 62.7deg -l 0.990399 -S UP l -t * -s 678 -d 809 -r 512000.000000 -D 0.320000 -o 228.2deg -l 0.277761 -S UP l -t * -s 677 -d 1352 -r 512000.000000 -D 0.005000 -o 84.4deg -l 0.021568 -S UP l -t * -s 677 -d 809 -r 512000.000000 -D 0.005000 -o 262.2deg -l 0.038812 -S UP l -t * -s 676 -d 747 -r 512000.000000 -D 0.320000 -o 58.4deg -l 0.300978 -S UP l -t * -s 676 -d 1139 -r 512000.000000 -D 0.160000 -o 71.6deg -l 0.359512 -S UP l -t * -s 676 -d 684 -r 512000.000000 -D 0.320000 -o 76.6deg -l 0.330438 -S UP l -t * -s 676 -d 746 -r 512000.000000 -D 0.320000 -o 85.4deg -l 0.305526 -S UP l -t * -s 676 -d 1270 -r 512000.000000 -D 0.005000 -o 74.0deg -l 0.153186 -S UP l -t * -s 676 -d 1772 -r 512000.000000 -D 0.160000 -o 57.2deg -l 1.606482 -S UP l -t * -s 675 -d 1796 -r 512000.000000 -D 0.005000 -o 54.6deg -l 0.000973 -S UP l -t * -s 675 -d 1288 -r 512000.000000 -D 0.100000 -o 56.5deg -l 0.097846 -S UP l -t * -s 675 -d 1533 -r 512000.000000 -D 0.005000 -o 42.8deg -l 0.048210 -S UP l -t * -s 675 -d 1772 -r 512000.000000 -D 0.160000 -o 234.3deg -l 0.163842 -S UP l -t * -s 675 -d 811 -r 512000.000000 -D 0.005000 -o 34.3deg -l 0.010127 -S UP l -t * -s 675 -d 812 -r 512000.000000 -D 0.005000 -o 72.7deg -l 0.006493 -S UP l -t * -s 674 -d 1119 -r 512000.000000 -D 0.320000 -o 68.2deg -l 0.307300 -S UP l -t * -s 674 -d 809 -r 512000.000000 -D 0.160000 -o 52.0deg -l 0.580847 -S UP l -t * -s 674 -d 1772 -r 512000.000000 -D 0.160000 -o 241.6deg -l 1.219444 -S UP l -t * -s 674 -d 808 -r 512000.000000 -D 0.320000 -o 62.9deg -l 1.103207 -S UP l -t * -s 673 -d 1772 -r 512000.000000 -D 0.640000 -o 199.6deg -l 0.596610 -S UP l -t * -s 672 -d 1015 -r 512000.000000 -D 0.320000 -o 288.8deg -l 0.296872 -S UP l -t * -s 672 -d 1009 -r 512000.000000 -D 0.320000 -o 309.9deg -l 0.280211 -S UP l -t * -s 672 -d 1010 -r 512000.000000 -D 0.320000 -o 208.0deg -l 0.092087 -S UP l -t * -s 672 -d 1588 -r 512000.000000 -D 0.080000 -o 83.3deg -l 0.079039 -S UP l -t * -s 671 -d 806 -r 512000.000000 -D 0.800000 -o 46.6deg -l 0.729634 -S UP l -t * -s 671 -d 1772 -r 512000.000000 -D 0.005000 -o 235.7deg -l 0.632391 -S UP l -t * -s 670 -d 1655 -r 512000.000000 -D 0.005000 -o 66.9deg -l 0.001106 -S UP l -t * -s 670 -d 1394 -r 512000.000000 -D 0.800000 -o 63.8deg -l 0.772304 -S UP l -t * -s 670 -d 1123 -r 512000.000000 -D 0.040000 -o 66.6deg -l 0.141414 -S UP l -t * -s 670 -d 1772 -r 512000.000000 -D 0.160000 -o 243.9deg -l 0.812778 -S UP l -t * -s 669 -d 1887 -r 512000.000000 -D 0.005000 -o 292.0deg -l 0.259194 -S UP l -t * -s 664 -d 1651 -r 512000.000000 -D 0.005000 -o 14.2deg -l 0.000524 -S UP l -t * -s 662 -d 1396 -r 512000.000000 -D 0.020000 -o 145.9deg -l 0.011862 -S UP l -t * -s 662 -d 1662 -r 512000.000000 -D 0.080000 -o 324.1deg -l 0.084885 -S UP l -t * -s 661 -d 1351 -r 512000.000000 -D 0.040000 -o 314.7deg -l 0.039854 -S UP l -t * -s 660 -d 1351 -r 512000.000000 -D 0.040000 -o 251.4deg -l 0.024939 -S UP l -t * -s 659 -d 1351 -r 512000.000000 -D 0.040000 -o 274.6deg -l 0.030552 -S UP l -t * -s 658 -d 1388 -r 512000.000000 -D 0.005000 -o 139.6deg -l 0.166402 -S UP l -t * -s 658 -d 1173 -r 512000.000000 -D 0.080000 -o 122.4deg -l 0.070224 -S UP l -t * -s 658 -d 799 -r 512000.000000 -D 0.160000 -o 110.9deg -l 0.149713 -S UP l -t * -s 658 -d 1351 -r 512000.000000 -D 0.080000 -o 304.3deg -l 0.333493 -S UP l -t * -s 658 -d 798 -r 512000.000000 -D 0.160000 -o 122.3deg -l 0.194181 -S UP l -t * -s 653 -d 687 -r 512000.000000 -D 0.005000 -o 139.2deg -l 0.087098 -S UP l -t * -s 653 -d 1343 -r 512000.000000 -D 0.005000 -o 225.3deg -l 0.014491 -S UP l -t * -s 652 -d 796 -r 512000.000000 -D 0.160000 -o 329.4deg -l 0.124341 -S UP l -t * -s 652 -d 795 -r 512000.000000 -D 0.160000 -o 339.1deg -l 0.223140 -S UP l -t * -s 648 -d 724 -r 512000.000000 -D 0.040000 -o 68.3deg -l 0.040899 -S UP l -t * -s 647 -d 1470 -r 512000.000000 -D 0.160000 -o 129.3deg -l 0.150426 -S UP l -t * -s 647 -d 734 -r 512000.000000 -D 0.160000 -o 117.5deg -l 0.159447 -S UP l -t * -s 647 -d 1301 -r 512000.000000 -D 0.160000 -o 106.6deg -l 0.152911 -S UP l -t * -s 647 -d 729 -r 512000.000000 -D 0.160000 -o 104.6deg -l 0.290998 -S UP l -t * -s 646 -d 793 -r 512000.000000 -D 0.320000 -o 59.7deg -l 0.308659 -S UP l -t * -s 646 -d 791 -r 512000.000000 -D 0.035000 -o 53.8deg -l 0.042770 -S UP l -t * -s 646 -d 1538 -r 512000.000000 -D 0.035000 -o 66.8deg -l 0.059519 -S UP l -t * -s 646 -d 792 -r 512000.000000 -D 0.035000 -o 76.3deg -l 0.034993 -S UP l -t * -s 646 -d 688 -r 512000.000000 -D 0.320000 -o 198.0deg -l 0.958513 -S UP l -t * -s 645 -d 788 -r 512000.000000 -D 0.160000 -o 24.2deg -l 0.158172 -S UP l -t * -s 645 -d 1747 -r 512000.000000 -D 0.160000 -o 17.1deg -l 0.391644 -S UP l -t * -s 645 -d 1886 -r 512000.000000 -D 0.160000 -o 12.2deg -l 0.149867 -S UP l -t * -s 645 -d 1820 -r 512000.000000 -D 0.005000 -o 351.2deg -l 0.010207 -S UP l -t * -s 645 -d 1885 -r 512000.000000 -D 0.005000 -o 10.3deg -l 0.000593 -S UP l -t * -s 644 -d 1364 -r 512000.000000 -D 0.160000 -o 51.1deg -l 0.168965 -S UP l -t * -s 644 -d 1884 -r 512000.000000 -D 0.160000 -o 20.0deg -l 0.155114 -S UP l -t * -s 644 -d 648 -r 512000.000000 -D 0.160000 -o 66.2deg -l 0.138378 -S UP l -t * -s 644 -d 1883 -r 512000.000000 -D 0.160000 -o 34.2deg -l 0.149695 -S UP l -t * -s 643 -d 1369 -r 512000.000000 -D 0.320000 -o 49.1deg -l 0.304503 -S UP l -t * -s 643 -d 883 -r 512000.000000 -D 0.320000 -o 38.1deg -l 0.185671 -S UP l -t * -s 643 -d 882 -r 512000.000000 -D 0.005000 -o 67.0deg -l 0.006642 -S UP l -t * -s 643 -d 1640 -r 512000.000000 -D 0.005000 -o 30.8deg -l 0.073348 -S UP l -t * -s 643 -d 1327 -r 512000.000000 -D 0.320000 -o 65.6deg -l 0.319558 -S UP l -t * -s 643 -d 885 -r 512000.000000 -D 0.320000 -o 102.5deg -l 0.291954 -S UP l -t * -s 643 -d 1882 -r 512000.000000 -D 0.160000 -o 62.0deg -l 0.149373 -S UP l -t * -s 643 -d 884 -r 512000.000000 -D 0.320000 -o 91.1deg -l 0.292337 -S UP l -t * -s 643 -d 886 -r 512000.000000 -D 0.320000 -o 54.3deg -l 0.351064 -S UP l -t * -s 643 -d 1790 -r 512000.000000 -D 0.320000 -o 228.9deg -l 1.165847 -S UP l -t * -s 641 -d 1773 -r 512000.000000 -D 0.005000 -o 336.5deg -l 0.004050 -S UP l -t * -s 639 -d 1125 -r 512000.000000 -D 0.005000 -o 295.6deg -l 0.000910 -S UP l -t * -s 635 -d 1543 -r 512000.000000 -D 0.020000 -o 93.0deg -l 0.265678 -S UP l -t * -s 635 -d 1468 -r 512000.000000 -D 0.020000 -o 317.2deg -l 0.007220 -S UP l -t * -s 634 -d 1696 -r 512000.000000 -D 0.005000 -o 85.1deg -l 0.009524 -S UP l -t * -s 634 -d 1497 -r 512000.000000 -D 0.005000 -o 72.4deg -l 0.209866 -S UP l -t * -s 634 -d 674 -r 512000.000000 -D 0.160000 -o 253.3deg -l 0.239347 -S UP l -t * -s 633 -d 673 -r 512000.000000 -D 0.080000 -o 211.0deg -l 0.084256 -S UP l -t * -s 632 -d 671 -r 512000.000000 -D 0.960000 -o 221.6deg -l 0.553547 -S UP l -t * -s 631 -d 1569 -r 512000.000000 -D 0.005000 -o 20.8deg -l 0.017437 -S UP l -t * -s 631 -d 671 -r 512000.000000 -D 0.800000 -o 211.5deg -l 0.723812 -S UP l -t * -s 630 -d 671 -r 512000.000000 -D 0.640000 -o 208.1deg -l 0.579415 -S UP l -t * -s 629 -d 671 -r 512000.000000 -D 0.640000 -o 226.4deg -l 0.575131 -S UP l -t * -s 628 -d 1264 -r 512000.000000 -D 0.005000 -o 218.2deg -l 0.008149 -S UP l -t * -s 627 -d 663 -r 512000.000000 -D 0.160000 -o 353.2deg -l 0.141725 -S UP l -t * -s 625 -d 1811 -r 512000.000000 -D 0.015000 -o 24.9deg -l 0.025656 -S UP l -t * -s 623 -d 1341 -r 512000.000000 -D 0.005000 -o 43.3deg -l 0.182642 -S UP l -t * -s 623 -d 1881 -r 512000.000000 -D 0.160000 -o 27.4deg -l 0.149456 -S UP l -t * -s 622 -d 699 -r 512000.000000 -D 0.005000 -o 355.3deg -l 0.011276 -S UP l -t * -s 622 -d 698 -r 512000.000000 -D 0.005000 -o 15.1deg -l 0.017597 -S UP l -t * -s 622 -d 780 -r 512000.000000 -D 0.005000 -o 8.6deg -l 0.002242 -S UP l -t * -s 622 -d 779 -r 512000.000000 -D 0.005000 -o 337.5deg -l 0.000486 -S UP l -t * -s 622 -d 700 -r 512000.000000 -D 0.005000 -o 331.8deg -l 0.020602 -S UP l -t * -s 622 -d 1880 -r 512000.000000 -D 0.320000 -o 357.2deg -l 0.303859 -S UP l -t * -s 622 -d 697 -r 512000.000000 -D 0.080000 -o 359.5deg -l 0.071814 -S UP l -t * -s 620 -d 1631 -r 512000.000000 -D 0.160000 -o 181.4deg -l 0.159066 -S UP l -t * -s 620 -d 1879 -r 512000.000000 -D 0.160000 -o 156.4deg -l 0.146669 -S UP l -t * -s 619 -d 1293 -r 512000.000000 -D 0.005000 -o 193.1deg -l 0.010226 -S UP l -t * -s 616 -d 1192 -r 512000.000000 -D 0.005000 -o 190.8deg -l 0.000755 -S UP l -t * -s 614 -d 1818 -r 512000.000000 -D 0.005000 -o 212.1deg -l 0.255430 -S UP l -t * -s 613 -d 1559 -r 512000.000000 -D 0.005000 -o 30.2deg -l 0.990626 -S UP l -t * -s 613 -d 1252 -r 512000.000000 -D 0.005000 -o 119.2deg -l 0.008350 -S UP l -t * -s 613 -d 758 -r 512000.000000 -D 0.320000 -o 210.2deg -l 0.483396 -S UP l -t * -s 613 -d 901 -r 512000.000000 -D 0.320000 -o 205.7deg -l 0.468342 -S UP l -t * -s 613 -d 934 -r 512000.000000 -D 0.320000 -o 185.9deg -l 0.462513 -S UP l -t * -s 613 -d 960 -r 512000.000000 -D 0.320000 -o 234.8deg -l 0.296132 -S UP l -t * -s 613 -d 959 -r 512000.000000 -D 0.320000 -o 183.8deg -l 0.302714 -S UP l -t * -s 612 -d 1878 -r 512000.000000 -D 0.320000 -o 25.0deg -l 0.308409 -S UP l -t * -s 612 -d 1877 -r 512000.000000 -D 0.320000 -o 12.4deg -l 0.300383 -S UP l -t * -s 612 -d 622 -r 512000.000000 -D 0.240000 -o 349.6deg -l 0.462134 -S UP l -t * -s 612 -d 1168 -r 512000.000000 -D 0.160000 -o 13.4deg -l 0.156472 -S UP l -t * -s 612 -d 1094 -r 512000.000000 -D 0.160000 -o 354.9deg -l 0.175630 -S UP l -t * -s 611 -d 1386 -r 512000.000000 -D 0.160000 -o 312.2deg -l 0.204484 -S UP l -t * -s 611 -d 1227 -r 512000.000000 -D 0.160000 -o 322.0deg -l 0.153598 -S UP l -t * -s 611 -d 1617 -r 512000.000000 -D 0.005000 -o 316.3deg -l 0.014565 -S UP l -t * -s 611 -d 777 -r 512000.000000 -D 0.005000 -o 322.6deg -l 0.016326 -S UP l -t * -s 611 -d 778 -r 512000.000000 -D 0.005000 -o 334.7deg -l 0.006104 -S UP l -t * -s 607 -d 665 -r 512000.000000 -D 0.005000 -o 17.0deg -l 0.015131 -S UP l -t * -s 607 -d 664 -r 512000.000000 -D 0.005000 -o 12.0deg -l 0.042765 -S UP l -t * -s 607 -d 623 -r 512000.000000 -D 0.160000 -o 193.2deg -l 0.162915 -S UP l -t * -s 606 -d 1862 -r 512000.000000 -D 0.005000 -o 336.0deg -l 0.013408 -S UP l -t * -s 606 -d 1580 -r 512000.000000 -D 0.005000 -o 347.8deg -l 0.010819 -S UP l -t * -s 605 -d 657 -r 512000.000000 -D 0.040000 -o 194.6deg -l 0.041226 -S UP l -t * -s 604 -d 772 -r 512000.000000 -D 0.040000 -o 29.8deg -l 0.084079 -S UP l -t * -s 604 -d 771 -r 512000.000000 -D 0.040000 -o 17.0deg -l 0.032279 -S UP l -t * -s 604 -d 657 -r 512000.000000 -D 0.040000 -o 15.3deg -l 0.059521 -S UP l -t * -s 604 -d 656 -r 512000.000000 -D 0.040000 -o 41.2deg -l 0.044126 -S UP l -t * -s 604 -d 770 -r 512000.000000 -D 0.040000 -o 30.4deg -l 0.031733 -S UP l -t * -s 604 -d 623 -r 512000.000000 -D 0.080000 -o 206.2deg -l 0.231388 -S UP l -t * -s 602 -d 1235 -r 512000.000000 -D 0.005000 -o 333.3deg -l 0.004299 -S UP l -t * -s 602 -d 1156 -r 512000.000000 -D 0.005000 -o 320.6deg -l 0.001995 -S UP l -t * -s 601 -d 655 -r 512000.000000 -D 0.005000 -o 34.7deg -l 0.002538 -S UP l -t * -s 601 -d 654 -r 512000.000000 -D 0.005000 -o 46.9deg -l 0.014821 -S UP l -t * -s 601 -d 653 -r 512000.000000 -D 0.005000 -o 62.1deg -l 0.010889 -S UP l -t * -s 601 -d 1341 -r 512000.000000 -D 0.005000 -o 221.5deg -l 0.071187 -S UP l -t * -s 597 -d 1444 -r 512000.000000 -D 0.005000 -o 137.5deg -l 0.014148 -S UP l -t * -s 597 -d 1433 -r 512000.000000 -D 0.040000 -o 136.3deg -l 0.036029 -S UP l -t * -s 597 -d 1388 -r 512000.000000 -D 0.080000 -o 321.5deg -l 0.132355 -S UP l -t * -s 597 -d 1057 -r 512000.000000 -D 0.005000 -o 167.8deg -l 0.002031 -S UP l -t * -s 597 -d 1085 -r 512000.000000 -D 0.005000 -o 153.6deg -l 0.012037 -S UP l -t * -s 597 -d 1435 -r 512000.000000 -D 0.005000 -o 117.9deg -l 0.000919 -S UP l -t * -s 596 -d 1155 -r 512000.000000 -D 0.160000 -o 0.4deg -l 0.159894 -S UP l -t * -s 596 -d 650 -r 512000.000000 -D 0.160000 -o 348.6deg -l 0.158933 -S UP l -t * -s 596 -d 649 -r 512000.000000 -D 0.160000 -o 326.9deg -l 0.158399 -S UP l -t * -s 596 -d 1876 -r 512000.000000 -D 0.080000 -o 347.0deg -l 0.083224 -S UP l -t * -s 596 -d 1484 -r 512000.000000 -D 0.240000 -o 228.1deg -l 0.797311 -S UP l -t * -s 596 -d 651 -r 512000.000000 -D 0.160000 -o 337.8deg -l 0.156069 -S UP l -t * -s 596 -d 652 -r 512000.000000 -D 0.160000 -o 336.9deg -l 0.317235 -S UP l -t * -s 596 -d 784 -r 512000.000000 -D 0.320000 -o 64.9deg -l 0.768876 -S UP l -t * -s 595 -d 672 -r 512000.000000 -D 0.005000 -o 157.9deg -l 0.050231 -S UP l -t * -s 594 -d 764 -r 512000.000000 -D 0.080000 -o 349.3deg -l 0.069390 -S UP l -t * -s 594 -d 784 -r 512000.000000 -D 0.320000 -o 56.6deg -l 1.442618 -S UP l -t * -s 594 -d 612 -r 512000.000000 -D 0.320000 -o 49.2deg -l 0.864705 -S UP l -t * -s 594 -d 1833 -r 512000.000000 -D 0.320000 -o 233.8deg -l 1.559379 -S UP l -t * -s 594 -d 672 -r 512000.000000 -D 0.005000 -o 170.8deg -l 0.452128 -S UP l -t * -s 593 -d 669 -r 512000.000000 -D 0.005000 -o 292.5deg -l 0.234424 -S UP l -t * -s 593 -d 760 -r 512000.000000 -D 0.320000 -o 116.9deg -l 0.267111 -S UP l -t * -s 592 -d 760 -r 512000.000000 -D 0.160000 -o 327.4deg -l 0.164048 -S UP l -t * -s 591 -d 760 -r 512000.000000 -D 0.040000 -o 307.0deg -l 0.038159 -S UP l -t * -s 590 -d 760 -r 512000.000000 -D 0.040000 -o 281.9deg -l 0.045436 -S UP l -t * -s 589 -d 1875 -r 512000.000000 -D 0.320000 -o 319.8deg -l 0.296830 -S UP l -t * -s 589 -d 1874 -r 512000.000000 -D 0.320000 -o 306.1deg -l 0.309651 -S UP l -t * -s 587 -d 1321 -r 512000.000000 -D 0.005000 -o 315.6deg -l 0.010402 -S UP l -t * -s 587 -d 1292 -r 512000.000000 -D 0.005000 -o 299.8deg -l 0.009414 -S UP l -t * -s 586 -d 641 -r 512000.000000 -D 0.080000 -o 333.3deg -l 0.077945 -S UP l -t * -s 586 -d 640 -r 512000.000000 -D 0.080000 -o 346.2deg -l 0.080967 -S UP l -t * -s 585 -d 620 -r 512000.000000 -D 0.160000 -o 349.2deg -l 0.156418 -S UP l -t * -s 584 -d 620 -r 512000.000000 -D 0.160000 -o 13.5deg -l 0.144542 -S UP l -t * -s 583 -d 1072 -r 512000.000000 -D 0.240000 -o 345.3deg -l 0.636597 -S UP l -t * -s 583 -d 620 -r 512000.000000 -D 0.160000 -o 170.0deg -l 0.593182 -S UP l -t * -s 582 -d 619 -r 512000.000000 -D 0.005000 -o 41.1deg -l 0.005407 -S UP l -t * -s 581 -d 619 -r 512000.000000 -D 0.005000 -o 31.3deg -l 0.007067 -S UP l -t * -s 580 -d 619 -r 512000.000000 -D 0.005000 -o 348.2deg -l 0.003932 -S UP l -t * -s 579 -d 619 -r 512000.000000 -D 0.005000 -o 334.4deg -l 0.006179 -S UP l -t * -s 578 -d 619 -r 512000.000000 -D 0.005000 -o 17.2deg -l 0.003715 -S UP l -t * -s 577 -d 619 -r 512000.000000 -D 0.005000 -o 0.5deg -l 0.009666 -S UP l -t * -s 576 -d 758 -r 512000.000000 -D 0.320000 -o 10.2deg -l 0.298358 -S UP l -t * -s 575 -d 758 -r 512000.000000 -D 0.320000 -o 5.4deg -l 0.298564 -S UP l -t * -s 574 -d 1509 -r 512000.000000 -D 0.320000 -o 358.8deg -l 0.299878 -S UP l -t * -s 574 -d 614 -r 512000.000000 -D 0.320000 -o 9.3deg -l 0.284788 -S UP l -t * -s 570 -d 754 -r 512000.000000 -D 0.005000 -o 234.9deg -l 0.028582 -S UP l -t * -s 569 -d 754 -r 512000.000000 -D 0.005000 -o 215.4deg -l 0.019240 -S UP l -t * -s 568 -d 754 -r 512000.000000 -D 0.005000 -o 253.2deg -l 0.021881 -S UP l -t * -s 567 -d 754 -r 512000.000000 -D 0.005000 -o 196.0deg -l 0.021580 -S UP l -t * -s 566 -d 1575 -r 512000.000000 -D 0.040000 -o 93.2deg -l 0.043556 -S UP l -t * -s 566 -d 1118 -r 512000.000000 -D 0.080000 -o 269.8deg -l 0.074056 -S UP l -t * -s 565 -d 1873 -r 512000.000000 -D 0.160000 -o 6.6deg -l 0.161037 -S UP l -t * -s 565 -d 750 -r 512000.000000 -D 0.160000 -o 344.5deg -l 0.172454 -S UP l -t * -s 565 -d 645 -r 512000.000000 -D 0.160000 -o 172.4deg -l 0.248973 -S UP l -t * -s 564 -d 645 -r 512000.000000 -D 0.160000 -o 179.2deg -l 0.154301 -S UP l -t * -s 563 -d 1872 -r 512000.000000 -D 0.160000 -o 355.1deg -l 0.147240 -S UP l -t * -s 563 -d 749 -r 512000.000000 -D 0.160000 -o 324.6deg -l 0.159230 -S UP l -t * -s 563 -d 1871 -r 512000.000000 -D 0.160000 -o 4.8deg -l 0.145781 -S UP l -t * -s 563 -d 748 -r 512000.000000 -D 0.160000 -o 342.2deg -l 0.157004 -S UP l -t * -s 563 -d 754 -r 512000.000000 -D 0.160000 -o 26.2deg -l 0.172416 -S UP l -t * -s 563 -d 789 -r 512000.000000 -D 0.320000 -o 12.6deg -l 0.303648 -S UP l -t * -s 563 -d 1870 -r 512000.000000 -D 0.160000 -o 332.9deg -l 0.158845 -S UP l -t * -s 563 -d 645 -r 512000.000000 -D 0.160000 -o 159.0deg -l 0.646326 -S UP l -t * -s 562 -d 563 -r 512000.000000 -D 0.160000 -o 167.7deg -l 0.154150 -S UP l -t * -s 560 -d 1116 -r 512000.000000 -D 0.005000 -o 133.7deg -l 0.083860 -S UP l -t * -s 559 -d 741 -r 512000.000000 -D 0.015000 -o 335.5deg -l 0.018569 -S UP l -t * -s 559 -d 563 -r 512000.000000 -D 0.320000 -o 158.5deg -l 0.328297 -S UP l -t * -s 558 -d 1167 -r 512000.000000 -D 0.005000 -o 320.0deg -l 0.011201 -S UP l -t * -s 558 -d 563 -r 512000.000000 -D 0.160000 -o 136.1deg -l 0.155131 -S UP l -t * -s 557 -d 1869 -r 512000.000000 -D 0.005000 -o 335.2deg -l 0.004666 -S UP l -t * -s 557 -d 1868 -r 512000.000000 -D 0.005000 -o 320.9deg -l 0.014822 -S UP l -t * -s 557 -d 563 -r 512000.000000 -D 0.320000 -o 149.3deg -l 0.305491 -S UP l -t * -s 556 -d 1867 -r 512000.000000 -D 0.005000 -o 318.8deg -l 0.012595 -S UP l -t * -s 556 -d 1866 -r 512000.000000 -D 0.005000 -o 294.7deg -l 0.002729 -S UP l -t * -s 556 -d 1865 -r 512000.000000 -D 0.005000 -o 306.6deg -l 0.008386 -S UP l -t * -s 556 -d 1864 -r 512000.000000 -D 0.005000 -o 332.8deg -l 0.005345 -S UP l -t * -s 556 -d 563 -r 512000.000000 -D 0.320000 -o 132.4deg -l 0.302913 -S UP l -t * -s 555 -d 1500 -r 512000.000000 -D 0.005000 -o 298.1deg -l 0.003218 -S UP l -t * -s 555 -d 563 -r 512000.000000 -D 0.160000 -o 124.5deg -l 0.161185 -S UP l -t * -s 554 -d 679 -r 512000.000000 -D 0.020000 -o 235.7deg -l 0.013742 -S UP l -t * -s 551 -d 738 -r 512000.000000 -D 0.640000 -o 102.3deg -l 0.589411 -S UP l -t * -s 551 -d 737 -r 512000.000000 -D 0.320000 -o 91.2deg -l 0.291519 -S UP l -t * -s 551 -d 736 -r 512000.000000 -D 0.320000 -o 31.3deg -l 0.311222 -S UP l -t * -s 551 -d 735 -r 512000.000000 -D 0.480000 -o 100.2deg -l 0.438705 -S UP l -t * -s 551 -d 1400 -r 512000.000000 -D 0.480000 -o 85.9deg -l 0.445274 -S UP l -t * -s 551 -d 1272 -r 512000.000000 -D 0.320000 -o 67.7deg -l 0.323480 -S UP l -t * -s 551 -d 709 -r 512000.000000 -D 0.320000 -o 53.0deg -l 0.312911 -S UP l -t * -s 551 -d 1611 -r 512000.000000 -D 0.800000 -o 41.9deg -l 0.761149 -S UP l -t * -s 551 -d 740 -r 512000.000000 -D 0.080000 -o 241.6deg -l 1.023226 -S UP l -t * -s 550 -d 1077 -r 512000.000000 -D 0.005000 -o 175.0deg -l 0.194626 -S UP l -t * -s 550 -d 627 -r 512000.000000 -D 0.005000 -o 353.4deg -l 0.135741 -S UP l -t * -s 549 -d 1296 -r 512000.000000 -D 0.005000 -o 197.7deg -l 0.294246 -S UP l -t * -s 549 -d 1077 -r 512000.000000 -D 0.005000 -o 17.8deg -l 0.262989 -S UP l -t * -s 549 -d 1863 -r 512000.000000 -D 0.080000 -o 14.5deg -l 0.085254 -S UP l -t * -s 548 -d 1077 -r 512000.000000 -D 0.320000 -o 173.4deg -l 0.302589 -S UP l -t * -s 547 -d 1200 -r 512000.000000 -D 0.160000 -o 28.6deg -l 0.158303 -S UP l -t * -s 547 -d 1778 -r 512000.000000 -D 0.160000 -o 18.7deg -l 0.160201 -S UP l -t * -s 547 -d 1077 -r 512000.000000 -D 0.240000 -o 358.8deg -l 0.559584 -S UP l -t * -s 547 -d 623 -r 512000.000000 -D 0.040000 -o 183.4deg -l 0.610876 -S UP l -t * -s 546 -d 1064 -r 512000.000000 -D 0.015000 -o 121.7deg -l 0.005240 -S UP l -t * -s 546 -d 731 -r 512000.000000 -D 0.160000 -o 135.9deg -l 0.130614 -S UP l -t * -s 546 -d 1191 -r 512000.000000 -D 0.320000 -o 169.1deg -l 0.269047 -S UP l -t * -s 546 -d 733 -r 512000.000000 -D 0.320000 -o 188.5deg -l 0.271550 -S UP l -t * -s 546 -d 732 -r 512000.000000 -D 0.320000 -o 309.6deg -l 0.329129 -S UP l -t * -s 546 -d 1304 -r 512000.000000 -D 0.160000 -o 4.6deg -l 0.288598 -S UP l -t * -s 545 -d 730 -r 512000.000000 -D 0.005000 -o 140.7deg -l 0.018183 -S UP l -t * -s 545 -d 1137 -r 512000.000000 -D 0.005000 -o 166.9deg -l 0.014029 -S UP l -t * -s 545 -d 1348 -r 512000.000000 -D 0.160000 -o 335.6deg -l 0.158725 -S UP l -t * -s 544 -d 729 -r 512000.000000 -D 0.005000 -o 283.7deg -l 0.014351 -S UP l -t * -s 543 -d 729 -r 512000.000000 -D 0.080000 -o 291.5deg -l 0.076334 -S UP l -t * -s 542 -d 1468 -r 512000.000000 -D 0.240000 -o 242.8deg -l 0.212115 -S UP l -t * -s 541 -d 600 -r 512000.000000 -D 0.010000 -o 203.3deg -l 0.011933 -S UP l -t * -s 541 -d 599 -r 512000.000000 -D 0.010000 -o 190.7deg -l 0.003572 -S UP l -t * -s 537 -d 538 -r 512000.000000 -D 0.040000 -o 232.3deg -l 0.091296 -S UP l -t * -s 529 -d 682 -r 512000.000000 -D 0.005000 -o 58.7deg -l 0.011115 -S UP l -t * -s 529 -d 683 -r 512000.000000 -D 0.005000 -o 40.8deg -l 0.011928 -S UP l -t * -s 524 -d 540 -r 512000.000000 -D 0.005000 -o 192.7deg -l 0.000001 -S UP l -t * -s 524 -d 541 -r 512000.000000 -D 0.320000 -o 202.6deg -l 0.316356 -S UP l -t * -s 524 -d 1295 -r 512000.000000 -D 0.320000 -o 173.1deg -l 0.302514 -S UP l -t * -s 524 -d 1525 -r 512000.000000 -D 0.320000 -o 8.3deg -l 0.461061 -S UP l -t * -s 523 -d 1720 -r 512000.000000 -D 0.160000 -o 346.8deg -l 0.147848 -S UP l -t * -s 523 -d 1758 -r 512000.000000 -D 0.040000 -o 333.4deg -l 0.038093 -S UP l -t * -s 523 -d 1765 -r 512000.000000 -D 0.080000 -o 337.1deg -l 0.084900 -S UP l -t * -s 522 -d 539 -r 512000.000000 -D 0.040000 -o 33.7deg -l 0.070801 -S UP l -t * -s 521 -d 522 -r 512000.000000 -D 0.040000 -o 229.6deg -l 0.089441 -S UP l -t * -s 521 -d 539 -r 512000.000000 -D 0.040000 -o 15.4deg -l 0.092431 -S UP l -t * -s 519 -d 538 -r 512000.000000 -D 0.040000 -o 239.9deg -l 0.066895 -S UP l -t * -s 519 -d 537 -r 512000.000000 -D 0.040000 -o 246.4deg -l 0.088267 -S UP l -t * -s 518 -d 1218 -r 512000.000000 -D 0.480000 -o 82.3deg -l 0.459320 -S UP l -t * -s 518 -d 536 -r 512000.000000 -D 0.005000 -o 75.5deg -l 0.013013 -S UP l -t * -s 518 -d 676 -r 512000.000000 -D 0.160000 -o 257.9deg -l 0.896179 -S UP l -t * -s 516 -d 1020 -r 512000.000000 -D 0.160000 -o 90.7deg -l 0.157737 -S UP l -t * -s 516 -d 1624 -r 512000.000000 -D 0.160000 -o 105.4deg -l 0.156871 -S UP l -t * -s 515 -d 1105 -r 512000.000000 -D 0.160000 -o 133.2deg -l 0.142614 -S UP l -t * -s 514 -d 1804 -r 512000.000000 -D 0.005000 -o 32.0deg -l 0.004534 -S UP l -t * -s 514 -d 1803 -r 512000.000000 -D 0.005000 -o 64.2deg -l 0.001468 -S UP l -t * -s 514 -d 1178 -r 512000.000000 -D 0.080000 -o 63.4deg -l 0.074822 -S UP l -t * -s 513 -d 534 -r 512000.000000 -D 0.005000 -o 122.0deg -l 0.005873 -S UP l -t * -s 513 -d 535 -r 512000.000000 -D 0.005000 -o 137.3deg -l 0.003621 -S UP l -t * -s 513 -d 1577 -r 512000.000000 -D 0.005000 -o 109.6deg -l 0.001141 -S UP l -t * -s 513 -d 533 -r 512000.000000 -D 0.800000 -o 117.8deg -l 0.688617 -S UP l -t * -s 513 -d 532 -r 512000.000000 -D 0.320000 -o 121.3deg -l 0.304146 -S UP l -t * -s 513 -d 531 -r 512000.000000 -D 0.005000 -o 93.5deg -l 0.002912 -S UP l -t * -s 512 -d 1012 -r 512000.000000 -D 0.870000 -o 107.1deg -l 0.595113 -S UP l -t * -s 512 -d 805 -r 512000.000000 -D 0.320000 -o 81.3deg -l 0.329011 -S UP l -t * -s 512 -d 804 -r 512000.000000 -D 0.080000 -o 92.1deg -l 0.073009 -S UP l -t * -s 511 -d 1420 -r 512000.000000 -D 0.040000 -o 108.3deg -l 0.038374 -S UP l -t * -s 511 -d 723 -r 512000.000000 -D 0.040000 -o 144.5deg -l 0.036743 -S UP l -t * -s 511 -d 722 -r 512000.000000 -D 0.040000 -o 159.3deg -l 0.038384 -S UP l -t * -s 511 -d 721 -r 512000.000000 -D 0.040000 -o 133.9deg -l 0.042995 -S UP l -t * -s 510 -d 530 -r 512000.000000 -D 0.160000 -o 94.7deg -l 0.147958 -S UP l -t * -s 510 -d 525 -r 512000.000000 -D 0.160000 -o 69.6deg -l 0.154556 -S UP l -t * -s 510 -d 1548 -r 512000.000000 -D 0.160000 -o 88.8deg -l 0.174629 -S UP l -t * -s 510 -d 529 -r 512000.000000 -D 0.040000 -o 49.0deg -l 0.061560 -S UP l -t * -s 510 -d 528 -r 512000.000000 -D 0.020000 -o 70.4deg -l 0.026821 -S UP l -t * -s 510 -d 1150 -r 512000.000000 -D 0.020000 -o 47.1deg -l 0.015535 -S UP l -t * -s 510 -d 526 -r 512000.000000 -D 0.005000 -o 82.7deg -l 0.001066 -S UP l -t * -s 510 -d 1772 -r 512000.000000 -D 0.160000 -o 284.6deg -l 0.448180 -S UP l -t * -s 510 -d 635 -r 512000.000000 -D 0.005000 -o 88.6deg -l 0.286716 -S UP l -t * -s 510 -d 1468 -r 512000.000000 -D 0.005000 -o 72.9deg -l 0.219525 -S UP l -t * -s 508 -d 1186 -r 512000.000000 -D 0.040000 -o 191.0deg -l 0.043569 -S UP l -t * -s 508 -d 524 -r 512000.000000 -D 0.160000 -o 9.1deg -l 0.179881 -S UP l -t * -s 505 -d 606 -r 512000.000000 -D 0.005000 -o 145.2deg -l 0.014402 -S UP l -t * -s 505 -d 1862 -r 512000.000000 -D 0.005000 -o 63.0deg -l 0.089045 -S UP l -t * -s 505 -d 1580 -r 512000.000000 -D 0.005000 -o 70.6deg -l 0.063692 -S UP l -t * -s 505 -d 1565 -r 512000.000000 -D 0.005000 -o 48.0deg -l 0.010094 -S UP l -t * -s 502 -d 1587 -r 512000.000000 -D 0.005000 -o 52.6deg -l 0.014001 -S UP l -t * -s 499 -d 523 -r 512000.000000 -D 0.160000 -o 157.4deg -l 0.146611 -S UP l -t * -s 498 -d 520 -r 512000.000000 -D 0.160000 -o 166.8deg -l 0.144243 -S UP l -t * -s 496 -d 1679 -r 512000.000000 -D 0.160000 -o 104.8deg -l 0.120833 -S UP l -t * -s 496 -d 518 -r 512000.000000 -D 0.160000 -o 257.6deg -l 0.817549 -S UP l -t * -s 496 -d 517 -r 512000.000000 -D 0.240000 -o 84.1deg -l 0.188984 -S UP l -t * -s 496 -d 1443 -r 512000.000000 -D 0.800000 -o 61.9deg -l 0.716896 -S UP l -t * -s 496 -d 1668 -r 512000.000000 -D 0.320000 -o 69.8deg -l 0.280725 -S UP l -t * -s 496 -d 516 -r 512000.000000 -D 0.320000 -o 95.1deg -l 0.272568 -S UP l -t * -s 496 -d 515 -r 512000.000000 -D 0.160000 -o 127.3deg -l 0.151829 -S UP l -t * -s 496 -d 514 -r 512000.000000 -D 0.160000 -o 64.9deg -l 0.120362 -S UP l -t * -s 496 -d 513 -r 512000.000000 -D 0.160000 -o 119.2deg -l 0.299910 -S UP l -t * -s 496 -d 512 -r 512000.000000 -D 0.160000 -o 82.4deg -l 0.285555 -S UP l -t * -s 496 -d 511 -r 512000.000000 -D 0.160000 -o 137.2deg -l 0.145483 -S UP l -t * -s 496 -d 510 -r 512000.000000 -D 0.160000 -o 13.9deg -l 0.274841 -S UP l -t * -s 496 -d 1438 -r 512000.000000 -D 0.080000 -o 83.5deg -l 0.045490 -S UP l -t * -s 493 -d 709 -r 512000.000000 -D 0.025000 -o 211.4deg -l 0.011195 -S UP l -t * -s 492 -d 508 -r 512000.000000 -D 0.010000 -o 353.9deg -l 0.011687 -S UP l -t * -s 491 -d 509 -r 512000.000000 -D 0.005000 -o 180.8deg -l 0.012052 -S UP l -t * -s 491 -d 508 -r 512000.000000 -D 0.040000 -o 1.1deg -l 0.047368 -S UP l -t * -s 490 -d 508 -r 512000.000000 -D 0.010000 -o 23.4deg -l 0.015183 -S UP l -t * -s 488 -d 506 -r 512000.000000 -D 0.020000 -o 144.8deg -l 0.019971 -S UP l -t * -s 483 -d 504 -r 512000.000000 -D 0.005000 -o 251.1deg -l 0.014085 -S UP l -t * -s 483 -d 503 -r 512000.000000 -D 0.005000 -o 241.2deg -l 0.010364 -S UP l -t * -s 476 -d 1800 -r 512000.000000 -D 0.080000 -o 68.2deg -l 0.048670 -S UP l -t * -s 474 -d 1220 -r 512000.000000 -D 0.160000 -o 244.7deg -l 0.152756 -S UP l -t * -s 474 -d 482 -r 512000.000000 -D 0.160000 -o 253.7deg -l 0.157836 -S UP l -t * -s 472 -d 1519 -r 512000.000000 -D 0.005000 -o 160.8deg -l 0.110351 -S UP l -t * -s 471 -d 1519 -r 512000.000000 -D 0.005000 -o 178.9deg -l 0.085690 -S UP l -t * -s 471 -d 472 -r 512000.000000 -D 0.005000 -o 180.8deg -l 0.088211 -S UP l -t * -s 465 -d 473 -r 512000.000000 -D 0.005000 -o 343.2deg -l 0.000759 -S UP l -t * -s 464 -d 497 -r 512000.000000 -D 0.160000 -o 321.8deg -l 0.152680 -S UP l -t * -s 452 -d 480 -r 512000.000000 -D 0.080000 -o 227.4deg -l 0.080979 -S UP l -t * -s 452 -d 479 -r 512000.000000 -D 0.005000 -o 226.3deg -l 0.003239 -S UP l -t * -s 451 -d 1712 -r 512000.000000 -D 0.080000 -o 227.7deg -l 0.069759 -S UP l -t * -s 451 -d 478 -r 512000.000000 -D 0.080000 -o 239.7deg -l 0.074255 -S UP l -t * -s 450 -d 475 -r 512000.000000 -D 0.120000 -o 243.3deg -l 0.109731 -S UP l -t * -s 450 -d 1324 -r 512000.000000 -D 0.120000 -o 236.3deg -l 0.154408 -S UP l -t * -s 450 -d 474 -r 512000.000000 -D 0.240000 -o 281.1deg -l 0.190284 -S UP l -t * -s 447 -d 1181 -r 512000.000000 -D 0.005000 -o 99.3deg -l 0.004799 -S UP l -t * -s 444 -d 622 -r 512000.000000 -D 0.320000 -o 161.8deg -l 0.309464 -S UP l -t * -s 444 -d 759 -r 512000.000000 -D 0.080000 -o 332.4deg -l 0.079187 -S UP l -t * -s 442 -d 1519 -r 512000.000000 -D 0.005000 -o 258.8deg -l 0.014342 -S UP l -t * -s 442 -d 471 -r 512000.000000 -D 0.005000 -o 271.2deg -l 0.012459 -S UP l -t * -s 442 -d 472 -r 512000.000000 -D 0.005000 -o 260.0deg -l 0.014740 -S UP l -t * -s 439 -d 1518 -r 512000.000000 -D 0.005000 -o 273.8deg -l 0.014998 -S UP l -t * -s 434 -d 642 -r 512000.000000 -D 0.005000 -o 67.3deg -l 0.182794 -S UP l -t * -s 434 -d 1416 -r 512000.000000 -D 0.080000 -o 236.4deg -l 0.249376 -S UP l -t * -s 432 -d 467 -r 512000.000000 -D 0.070000 -o 352.2deg -l 0.068212 -S UP l -t * -s 432 -d 466 -r 512000.000000 -D 0.070000 -o 290.5deg -l 0.063193 -S UP l -t * -s 432 -d 470 -r 512000.000000 -D 0.070000 -o 336.5deg -l 0.066014 -S UP l -t * -s 432 -d 469 -r 512000.000000 -D 0.070000 -o 10.6deg -l 0.061217 -S UP l -t * -s 432 -d 468 -r 512000.000000 -D 0.070000 -o 307.8deg -l 0.055502 -S UP l -t * -s 432 -d 1623 -r 512000.000000 -D 0.070000 -o 322.2deg -l 0.066800 -S UP l -t * -s 432 -d 465 -r 512000.000000 -D 0.160000 -o 343.6deg -l 0.170321 -S UP l -t * -s 431 -d 1736 -r 512000.000000 -D 0.005000 -o 340.6deg -l 0.010098 -S UP l -t * -s 430 -d 453 -r 512000.000000 -D 0.160000 -o 304.1deg -l 0.160961 -S UP l -t * -s 429 -d 464 -r 512000.000000 -D 0.160000 -o 322.1deg -l 0.173448 -S UP l -t * -s 429 -d 463 -r 512000.000000 -D 0.160000 -o 317.3deg -l 0.156625 -S UP l -t * -s 429 -d 462 -r 512000.000000 -D 0.160000 -o 306.6deg -l 0.148463 -S UP l -t * -s 428 -d 1360 -r 512000.000000 -D 0.015000 -o 97.9deg -l 0.025440 -S UP l -t * -s 427 -d 1360 -r 512000.000000 -D 0.015000 -o 111.6deg -l 0.010272 -S UP l -t * -s 426 -d 1550 -r 512000.000000 -D 0.005000 -o 256.4deg -l 0.016419 -S UP l -t * -s 423 -d 1136 -r 512000.000000 -D 0.005000 -o 265.9deg -l 0.022884 -S UP l -t * -s 421 -d 1104 -r 512000.000000 -D 0.160000 -o 250.2deg -l 0.382513 -S UP l -t * -s 419 -d 1593 -r 512000.000000 -D 0.080000 -o 58.8deg -l 0.080774 -S UP l -t * -s 418 -d 1647 -r 512000.000000 -D 0.320000 -o 166.0deg -l 0.272032 -S UP l -t * -s 418 -d 460 -r 512000.000000 -D 0.005000 -o 179.4deg -l 0.009477 -S UP l -t * -s 418 -d 459 -r 512000.000000 -D 0.040000 -o 247.3deg -l 0.034018 -S UP l -t * -s 418 -d 458 -r 512000.000000 -D 0.005000 -o 223.1deg -l 0.001290 -S UP l -t * -s 418 -d 1480 -r 512000.000000 -D 0.080000 -o 168.1deg -l 0.047029 -S UP l -t * -s 418 -d 1593 -r 512000.000000 -D 0.080000 -o 350.5deg -l 0.332254 -S UP l -t * -s 416 -d 1298 -r 512000.000000 -D 0.010000 -o 215.7deg -l 0.017289 -S UP l -t * -s 416 -d 448 -r 512000.000000 -D 0.010000 -o 198.2deg -l 0.019621 -S UP l -t * -s 416 -d 457 -r 512000.000000 -D 0.015000 -o 190.1deg -l 0.020097 -S UP l -t * -s 416 -d 1294 -r 512000.000000 -D 0.025000 -o 22.6deg -l 0.099234 -S UP l -t * -s 416 -d 456 -r 512000.000000 -D 0.005000 -o 205.9deg -l 0.009393 -S UP l -t * -s 413 -d 455 -r 512000.000000 -D 0.005000 -o 260.9deg -l 0.015584 -S UP l -t * -s 407 -d 1134 -r 512000.000000 -D 0.080000 -o 217.3deg -l 0.147356 -S UP l -t * -s 407 -d 452 -r 512000.000000 -D 0.080000 -o 227.2deg -l 0.107703 -S UP l -t * -s 407 -d 412 -r 512000.000000 -D 0.120000 -o 1.7deg -l 0.052739 -S UP l -t * -s 406 -d 451 -r 512000.000000 -D 0.080000 -o 234.3deg -l 0.148862 -S UP l -t * -s 406 -d 450 -r 512000.000000 -D 0.240000 -o 237.9deg -l 0.239930 -S UP l -t * -s 406 -d 449 -r 512000.000000 -D 0.005000 -o 236.3deg -l 0.014560 -S UP l -t * -s 404 -d 1080 -r 512000.000000 -D 0.005000 -o 278.0deg -l 0.041722 -S UP l -t * -s 402 -d 1239 -r 512000.000000 -D 0.320000 -o 31.9deg -l 0.275757 -S UP l -t * -s 396 -d 1610 -r 512000.000000 -D 0.080000 -o 356.3deg -l 0.084804 -S UP l -t * -s 395 -d 1610 -r 512000.000000 -D 0.080000 -o 345.5deg -l 0.097015 -S UP l -t * -s 394 -d 1610 -r 512000.000000 -D 0.080000 -o 21.5deg -l 0.075720 -S UP l -t * -s 393 -d 1610 -r 512000.000000 -D 0.080000 -o 341.3deg -l 0.076919 -S UP l -t * -s 392 -d 1182 -r 512000.000000 -D 0.040000 -o 192.6deg -l 0.064023 -S UP l -t * -s 392 -d 1610 -r 512000.000000 -D 0.080000 -o 4.8deg -l 0.094876 -S UP l -t * -s 390 -d 443 -r 512000.000000 -D 0.005000 -o 9.9deg -l 0.000740 -S UP l -t * -s 386 -d 442 -r 512000.000000 -D 0.020000 -o 264.7deg -l 0.078987 -S UP l -t * -s 386 -d 441 -r 512000.000000 -D 0.020000 -o 263.4deg -l 0.025739 -S UP l -t * -s 383 -d 1297 -r 512000.000000 -D 0.015000 -o 237.2deg -l 0.046157 -S UP l -t * -s 379 -d 440 -r 512000.000000 -D 0.005000 -o 276.0deg -l 0.016156 -S UP l -t * -s 377 -d 439 -r 512000.000000 -D 0.005000 -o 273.7deg -l 0.047779 -S UP l -t * -s 375 -d 1587 -r 512000.000000 -D 0.005000 -o 234.5deg -l 0.066886 -S UP l -t * -s 375 -d 501 -r 512000.000000 -D 0.005000 -o 229.4deg -l 0.026922 -S UP l -t * -s 375 -d 487 -r 512000.000000 -D 0.005000 -o 238.5deg -l 0.019418 -S UP l -t * -s 375 -d 486 -r 512000.000000 -D 0.005000 -o 247.3deg -l 0.017465 -S UP l -t * -s 375 -d 485 -r 512000.000000 -D 0.005000 -o 253.6deg -l 0.004939 -S UP l -t * -s 375 -d 483 -r 512000.000000 -D 0.005000 -o 246.8deg -l 0.066622 -S UP l -t * -s 375 -d 484 -r 512000.000000 -D 0.005000 -o 261.8deg -l 0.010770 -S UP l -t * -s 373 -d 374 -r 512000.000000 -D 0.040000 -o 55.4deg -l 0.077504 -S UP l -t * -s 373 -d 1610 -r 512000.000000 -D 0.060000 -o 265.4deg -l 0.026282 -S UP l -t * -s 372 -d 1114 -r 512000.000000 -D 0.005000 -o 221.2deg -l 0.010064 -S UP l -t * -s 372 -d 1593 -r 512000.000000 -D 0.040000 -o 27.8deg -l 0.112640 -S UP l -t * -s 371 -d 1447 -r 512000.000000 -D 0.080000 -o 174.3deg -l 0.074799 -S UP l -t * -s 371 -d 1449 -r 512000.000000 -D 0.040000 -o 195.5deg -l 0.037886 -S UP l -t * -s 371 -d 1593 -r 512000.000000 -D 0.040000 -o 6.3deg -l 0.147096 -S UP l -t * -s 370 -d 1070 -r 512000.000000 -D 0.020000 -o 257.8deg -l 0.024872 -S UP l -t * -s 370 -d 1593 -r 512000.000000 -D 0.040000 -o 69.8deg -l 0.167139 -S UP l -t * -s 369 -d 1368 -r 512000.000000 -D 0.020000 -o 150.7deg -l 0.006621 -S UP l -t * -s 369 -d 1124 -r 512000.000000 -D 0.040000 -o 131.2deg -l 0.026572 -S UP l -t * -s 369 -d 1593 -r 512000.000000 -D 0.080000 -o 328.0deg -l 0.104509 -S UP l -t * -s 368 -d 1540 -r 512000.000000 -D 0.005000 -o 110.9deg -l 0.011025 -S UP l -t * -s 368 -d 1172 -r 512000.000000 -D 0.320000 -o 127.4deg -l 0.292322 -S UP l -t * -s 368 -d 1544 -r 512000.000000 -D 0.005000 -o 188.3deg -l 0.423360 -S UP l -t * -s 368 -d 672 -r 512000.000000 -D 0.320000 -o 347.8deg -l 0.556481 -S UP l -t * -s 367 -d 1524 -r 512000.000000 -D 0.005000 -o 15.6deg -l 0.011385 -S UP l -t * -s 367 -d 1544 -r 512000.000000 -D 0.005000 -o 12.6deg -l 0.057210 -S UP l -t * -s 367 -d 1592 -r 512000.000000 -D 0.005000 -o 318.4deg -l 0.037231 -S UP l -t * -s 367 -d 1689 -r 512000.000000 -D 0.005000 -o 37.6deg -l 0.045988 -S UP l -t * -s 366 -d 1544 -r 512000.000000 -D 0.005000 -o 1.7deg -l 0.047430 -S UP l -t * -s 366 -d 1524 -r 512000.000000 -D 0.005000 -o 354.7deg -l 0.093678 -S UP l -t * -s 366 -d 1592 -r 512000.000000 -D 0.005000 -o 242.8deg -l 0.016958 -S UP l -t * -s 366 -d 367 -r 512000.000000 -D 0.005000 -o 199.3deg -l 0.006463 -S UP l -t * -s 366 -d 1689 -r 512000.000000 -D 0.005000 -o 173.1deg -l 0.065181 -S UP l -t * -s 366 -d 1578 -r 512000.000000 -D 0.005000 -o 171.2deg -l 0.019747 -S UP l -t * -s 365 -d 1544 -r 512000.000000 -D 0.005000 -o 14.7deg -l 0.007348 -S UP l -t * -s 365 -d 1524 -r 512000.000000 -D 0.005000 -o 20.9deg -l 0.037935 -S UP l -t * -s 365 -d 366 -r 512000.000000 -D 0.005000 -o 29.3deg -l 0.054657 -S UP l -t * -s 365 -d 1592 -r 512000.000000 -D 0.005000 -o 277.0deg -l 0.055716 -S UP l -t * -s 365 -d 367 -r 512000.000000 -D 0.005000 -o 187.6deg -l 0.062883 -S UP l -t * -s 365 -d 1689 -r 512000.000000 -D 0.005000 -o 84.4deg -l 0.078524 -S UP l -t * -s 364 -d 1367 -r 512000.000000 -D 0.005000 -o 6.2deg -l 0.008026 -S UP l -t * -s 364 -d 1489 -r 512000.000000 -D 0.320000 -o 15.5deg -l 0.302754 -S UP l -t * -s 364 -d 1077 -r 512000.000000 -D 0.005000 -o 195.5deg -l 0.324468 -S UP l -t * -s 363 -d 433 -r 512000.000000 -D 0.005000 -o 222.4deg -l 0.016826 -S UP l -t * -s 361 -d 1234 -r 512000.000000 -D 0.010000 -o 208.4deg -l 0.020113 -S UP l -t * -s 361 -d 1717 -r 512000.000000 -D 0.010000 -o 218.2deg -l 0.018669 -S UP l -t * -s 361 -d 437 -r 512000.000000 -D 0.010000 -o 204.2deg -l 0.003705 -S UP l -t * -s 361 -d 1576 -r 512000.000000 -D 0.005000 -o 193.9deg -l 0.011976 -S UP l -t * -s 358 -d 1715 -r 512000.000000 -D 0.010000 -o 128.6deg -l 0.093294 -S UP l -t * -s 356 -d 436 -r 512000.000000 -D 0.010000 -o 235.5deg -l 0.005162 -S UP l -t * -s 353 -d 1359 -r 512000.000000 -D 0.160000 -o 200.2deg -l 0.150840 -S UP l -t * -s 353 -d 1471 -r 512000.000000 -D 0.080000 -o 218.0deg -l 0.083670 -S UP l -t * -s 353 -d 1336 -r 512000.000000 -D 0.005000 -o 219.1deg -l 0.011482 -S UP l -t * -s 352 -d 1690 -r 512000.000000 -D 0.120000 -o 50.7deg -l 0.155790 -S UP l -t * -s 352 -d 1598 -r 512000.000000 -D 0.120000 -o 283.6deg -l 0.037978 -S UP l -t * -s 351 -d 1599 -r 512000.000000 -D 0.040000 -o 66.4deg -l 0.046850 -S UP l -t * -s 351 -d 1598 -r 512000.000000 -D 0.040000 -o 77.8deg -l 0.035009 -S UP l -t * -s 351 -d 1757 -r 512000.000000 -D 0.040000 -o 166.6deg -l 0.048169 -S UP l -t * -s 350 -d 435 -r 512000.000000 -D 0.080000 -o 252.0deg -l 0.083513 -S UP l -t * -s 350 -d 1599 -r 512000.000000 -D 0.040000 -o 66.4deg -l 0.081481 -S UP l -t * -s 350 -d 1598 -r 512000.000000 -D 0.040000 -o 75.5deg -l 0.069043 -S UP l -t * -s 350 -d 351 -r 512000.000000 -D 0.040000 -o 65.9deg -l 0.078385 -S UP l -t * -s 350 -d 1757 -r 512000.000000 -D 0.040000 -o 136.4deg -l 0.045400 -S UP l -t * -s 349 -d 1757 -r 512000.000000 -D 0.040000 -o 180.4deg -l 0.072465 -S UP l -t * -s 349 -d 1599 -r 512000.000000 -D 0.040000 -o 56.6deg -l 0.044160 -S UP l -t * -s 349 -d 351 -r 512000.000000 -D 0.040000 -o 325.9deg -l 0.085796 -S UP l -t * -s 349 -d 1598 -r 512000.000000 -D 0.040000 -o 67.4deg -l 0.027152 -S UP l -t * -s 349 -d 350 -r 512000.000000 -D 0.040000 -o 280.2deg -l 0.065377 -S UP l -t * -s 346 -d 1445 -r 512000.000000 -D 0.040000 -o 352.4deg -l 0.054812 -S UP l -t * -s 346 -d 1419 -r 512000.000000 -D 0.040000 -o 4.8deg -l 0.039120 -S UP l -t * -s 345 -d 1520 -r 512000.000000 -D 0.005000 -o 25.0deg -l 0.008477 -S UP l -t * -s 342 -d 644 -r 512000.000000 -D 0.160000 -o 256.4deg -l 0.207014 -S UP l -t * -s 342 -d 1861 -r 512000.000000 -D 0.005000 -o 75.6deg -l 0.008121 -S UP l -t * -s 339 -d 1572 -r 512000.000000 -D 0.040000 -o 321.2deg -l 0.029310 -S UP l -t * -s 337 -d 338 -r 512000.000000 -D 0.005000 -o 180.9deg -l 0.063012 -S UP l -t * -s 336 -d 1694 -r 512000.000000 -D 0.005000 -o 310.6deg -l 0.014259 -S UP l -t * -s 336 -d 337 -r 512000.000000 -D 0.005000 -o 131.2deg -l 0.076856 -S UP l -t * -s 336 -d 338 -r 512000.000000 -D 0.005000 -o 160.3deg -l 0.034636 -S UP l -t * -s 335 -d 338 -r 512000.000000 -D 0.005000 -o 175.9deg -l 0.082371 -S UP l -t * -s 335 -d 337 -r 512000.000000 -D 0.005000 -o 8.8deg -l 0.093355 -S UP l -t * -s 335 -d 336 -r 512000.000000 -D 0.005000 -o 330.7deg -l 0.063467 -S UP l -t * -s 335 -d 1366 -r 512000.000000 -D 0.005000 -o 301.2deg -l 0.012099 -S UP l -t * -s 333 -d 429 -r 512000.000000 -D 0.160000 -o 316.4deg -l 0.183413 -S UP l -t * -s 333 -d 430 -r 512000.000000 -D 0.160000 -o 300.8deg -l 0.149082 -S UP l -t * -s 333 -d 1860 -r 512000.000000 -D 0.160000 -o 317.9deg -l 0.136160 -S UP l -t * -s 333 -d 432 -r 512000.000000 -D 0.160000 -o 62.5deg -l 0.459804 -S UP l -t * -s 331 -d 1860 -r 512000.000000 -D 0.160000 -o 320.8deg -l 0.121611 -S UP l -t * -s 331 -d 432 -r 512000.000000 -D 0.160000 -o 63.6deg -l 0.474799 -S UP l -t * -s 331 -d 431 -r 512000.000000 -D 0.160000 -o 341.9deg -l 0.131277 -S UP l -t * -s 331 -d 430 -r 512000.000000 -D 0.160000 -o 302.4deg -l 0.131606 -S UP l -t * -s 331 -d 429 -r 512000.000000 -D 0.160000 -o 318.6deg -l 0.168494 -S UP l -t * -s 331 -d 1816 -r 512000.000000 -D 0.080000 -o 334.3deg -l 0.069514 -S UP l -t * -s 330 -d 1859 -r 512000.000000 -D 0.160000 -o 33.0deg -l 0.150755 -S UP l -t * -s 328 -d 1535 -r 512000.000000 -D 0.080000 -o 186.3deg -l 0.160635 -S UP l -t * -s 326 -d 1233 -r 512000.000000 -D 0.040000 -o 33.1deg -l 0.047544 -S UP l -t * -s 326 -d 644 -r 512000.000000 -D 0.160000 -o 212.1deg -l 0.224115 -S UP l -t * -s 325 -d 1606 -r 512000.000000 -D 0.080000 -o 211.6deg -l 0.105208 -S UP l -t * -s 325 -d 1418 -r 512000.000000 -D 0.080000 -o 206.1deg -l 0.075188 -S UP l -t * -s 324 -d 668 -r 512000.000000 -D 0.005000 -o 303.3deg -l 0.005567 -S UP l -t * -s 323 -d 539 -r 512000.000000 -D 0.040000 -o 308.5deg -l 0.042728 -S UP l -t * -s 323 -d 521 -r 512000.000000 -D 0.040000 -o 301.2deg -l 0.035834 -S UP l -t * -s 323 -d 522 -r 512000.000000 -D 0.040000 -o 293.1deg -l 0.044856 -S UP l -t * -s 323 -d 537 -r 512000.000000 -D 0.040000 -o 324.6deg -l 0.038577 -S UP l -t * -s 323 -d 538 -r 512000.000000 -D 0.040000 -o 316.4deg -l 0.039283 -S UP l -t * -s 323 -d 519 -r 512000.000000 -D 0.040000 -o 334.0deg -l 0.035478 -S UP l -t * -s 322 -d 1634 -r 512000.000000 -D 0.005000 -o 282.3deg -l 0.009179 -S UP l -t * -s 320 -d 1158 -r 512000.000000 -D 0.160000 -o 293.9deg -l 0.170289 -S UP l -t * -s 320 -d 667 -r 512000.000000 -D 0.160000 -o 297.4deg -l 0.160487 -S UP l -t * -s 316 -d 1603 -r 512000.000000 -D 0.005000 -o 156.8deg -l 0.201164 -S UP l -t * -s 316 -d 586 -r 512000.000000 -D 0.160000 -o 338.2deg -l 0.179037 -S UP l -t * -s 314 -d 611 -r 512000.000000 -D 0.160000 -o 317.9deg -l 0.293689 -S UP l -t * -s 314 -d 1703 -r 512000.000000 -D 0.160000 -o 350.9deg -l 0.168751 -S UP l -t * -s 314 -d 520 -r 512000.000000 -D 0.160000 -o 344.0deg -l 0.182355 -S UP l -t * -s 314 -d 523 -r 512000.000000 -D 0.160000 -o 339.9deg -l 0.264640 -S UP l -t * -s 314 -d 610 -r 512000.000000 -D 0.160000 -o 328.5deg -l 0.156640 -S UP l -t * -s 313 -d 609 -r 512000.000000 -D 0.005000 -o 329.6deg -l 0.009015 -S UP l -t * -s 311 -d 1238 -r 512000.000000 -D 0.160000 -o 59.8deg -l 0.134344 -S UP l -t * -s 309 -d 1364 -r 512000.000000 -D 0.160000 -o 211.8deg -l 0.007490 -S UP l -t * -s 309 -d 1858 -r 512000.000000 -D 0.160000 -o 39.0deg -l 0.145597 -S UP l -t * -s 309 -d 644 -r 512000.000000 -D 0.160000 -o 225.9deg -l 0.270154 -S UP l -t * -s 309 -d 666 -r 512000.000000 -D 0.080000 -o 43.2deg -l 0.068347 -S UP l -t * -s 308 -d 426 -r 512000.000000 -D 0.005000 -o 254.3deg -l 0.040416 -S UP l -t * -s 306 -d 1416 -r 512000.000000 -D 0.080000 -o 192.9deg -l 0.084559 -S UP l -t * -s 305 -d 1669 -r 512000.000000 -D 0.005000 -o 68.9deg -l 0.051826 -S UP l -t * -s 305 -d 1416 -r 512000.000000 -D 0.005000 -o 211.4deg -l 0.033430 -S UP l -t * -s 304 -d 1857 -r 512000.000000 -D 0.005000 -o 241.4deg -l 0.013945 -S UP l -t * -s 304 -d 1856 -r 512000.000000 -D 0.005000 -o 262.6deg -l 0.000626 -S UP l -t * -s 304 -d 1831 -r 512000.000000 -D 0.005000 -o 71.6deg -l 0.079588 -S UP l -t * -s 303 -d 1855 -r 512000.000000 -D 0.080000 -o 236.9deg -l 0.079461 -S UP l -t * -s 303 -d 476 -r 512000.000000 -D 0.080000 -o 249.5deg -l 0.073682 -S UP l -t * -s 301 -d 1351 -r 512000.000000 -D 0.005000 -o 296.3deg -l 0.013694 -S UP l -t * -s 298 -d 1812 -r 512000.000000 -D 0.160000 -o 110.3deg -l 0.153129 -S UP l -t * -s 298 -d 927 -r 512000.000000 -D 0.160000 -o 74.9deg -l 0.165492 -S UP l -t * -s 298 -d 921 -r 512000.000000 -D 0.005000 -o 13.8deg -l 0.157070 -S UP l -t * -s 298 -d 925 -r 512000.000000 -D 0.320000 -o 139.4deg -l 0.777560 -S UP l -t * -s 298 -d 643 -r 512000.000000 -D 0.320000 -o 26.9deg -l 0.915532 -S UP l -t * -s 298 -d 1686 -r 512000.000000 -D 0.005000 -o 32.3deg -l 0.091999 -S UP l -t * -s 298 -d 926 -r 512000.000000 -D 0.005000 -o 41.7deg -l 0.063268 -S UP l -t * -s 298 -d 899 -r 512000.000000 -D 0.080000 -o 100.0deg -l 0.181391 -S UP l -t * -s 298 -d 831 -r 512000.000000 -D 0.160000 -o 63.1deg -l 0.164023 -S UP l -t * -s 298 -d 1001 -r 512000.000000 -D 0.160000 -o 123.3deg -l 0.150287 -S UP l -t * -s 298 -d 942 -r 512000.000000 -D 0.160000 -o 93.9deg -l 0.184955 -S UP l -t * -s 296 -d 1618 -r 512000.000000 -D 0.080000 -o 191.8deg -l 0.070484 -S UP l -t * -s 296 -d 1586 -r 512000.000000 -D 0.160000 -o 202.5deg -l 0.145096 -S UP l -t * -s 296 -d 500 -r 512000.000000 -D 0.080000 -o 223.5deg -l 0.077976 -S UP l -t * -s 293 -d 1843 -r 512000.000000 -D 0.160000 -o 11.7deg -l 0.058335 -S UP l -t * -s 293 -d 1657 -r 512000.000000 -D 0.320000 -o 327.3deg -l 0.108592 -S UP l -t * -s 293 -d 294 -r 512000.000000 -D 0.160000 -o 152.8deg -l 0.133494 -S UP l -t * -s 292 -d 592 -r 512000.000000 -D 0.160000 -o 331.3deg -l 0.160940 -S UP l -t * -s 291 -d 1133 -r 512000.000000 -D 0.080000 -o 209.6deg -l 0.082377 -S UP l -t * -s 291 -d 1132 -r 512000.000000 -D 0.080000 -o 198.2deg -l 0.076715 -S UP l -t * -s 289 -d 1180 -r 512000.000000 -D 0.045000 -o 187.6deg -l 0.034951 -S UP l -t * -s 289 -d 290 -r 512000.000000 -D 0.045000 -o 235.0deg -l 0.057038 -S UP l -t * -s 287 -d 288 -r 512000.000000 -D 0.005000 -o 252.2deg -l 0.047560 -S UP l -t * -s 286 -d 287 -r 512000.000000 -D 0.005000 -o 62.1deg -l 0.074698 -S UP l -t * -s 286 -d 288 -r 512000.000000 -D 0.005000 -o 265.7deg -l 0.084501 -S UP l -t * -s 285 -d 287 -r 512000.000000 -D 0.005000 -o 150.9deg -l 0.007938 -S UP l -t * -s 285 -d 288 -r 512000.000000 -D 0.005000 -o 181.6deg -l 0.012769 -S UP l -t * -s 285 -d 286 -r 512000.000000 -D 0.005000 -o 168.6deg -l 0.013079 -S UP l -t * -s 284 -d 391 -r 512000.000000 -D 0.080000 -o 41.7deg -l 0.082938 -S UP l -t * -s 284 -d 1089 -r 512000.000000 -D 0.040000 -o 349.9deg -l 0.162285 -S UP l -t * -s 284 -d 390 -r 512000.000000 -D 0.040000 -o 14.1deg -l 0.063541 -S UP l -t * -s 282 -d 283 -r 512000.000000 -D 0.005000 -o 313.5deg -l 0.068150 -S UP l -t * -s 281 -d 1104 -r 512000.000000 -D 0.030000 -o 81.5deg -l 0.021869 -S UP l -t * -s 280 -d 427 -r 512000.000000 -D 0.015000 -o 285.9deg -l 0.019294 -S UP l -t * -s 280 -d 1104 -r 512000.000000 -D 0.030000 -o 107.5deg -l 0.057961 -S UP l -t * -s 279 -d 1342 -r 512000.000000 -D 0.005000 -o 300.1deg -l 0.013406 -S UP l -t * -s 279 -d 1104 -r 512000.000000 -D 0.005000 -o 121.8deg -l 0.070851 -S UP l -t * -s 278 -d 1104 -r 512000.000000 -D 0.005000 -o 89.6deg -l 0.003248 -S UP l -t * -s 277 -d 1104 -r 512000.000000 -D 0.005000 -o 133.0deg -l 0.002853 -S UP l -t * -s 276 -d 1319 -r 512000.000000 -D 0.005000 -o 331.9deg -l 0.080084 -S UP l -t * -s 276 -d 1104 -r 512000.000000 -D 0.005000 -o 112.6deg -l 0.015574 -S UP l -t * -s 274 -d 1551 -r 512000.000000 -D 0.005000 -o 306.8deg -l 0.016650 -S UP l -t * -s 273 -d 344 -r 512000.000000 -D 0.040000 -o 304.4deg -l 0.039927 -S UP l -t * -s 273 -d 343 -r 512000.000000 -D 0.040000 -o 292.8deg -l 0.041962 -S UP l -t * -s 270 -d 337 -r 512000.000000 -D 0.005000 -o 305.8deg -l 0.036744 -S UP l -t * -s 270 -d 336 -r 512000.000000 -D 0.005000 -o 306.8deg -l 0.072779 -S UP l -t * -s 270 -d 338 -r 512000.000000 -D 0.005000 -o 287.1deg -l 0.014907 -S UP l -t * -s 270 -d 335 -r 512000.000000 -D 0.005000 -o 298.7deg -l 0.028902 -S UP l -t * -s 269 -d 334 -r 512000.000000 -D 0.030000 -o 311.8deg -l 0.037166 -S UP l -t * -s 269 -d 1199 -r 512000.000000 -D 0.030000 -o 323.4deg -l 0.038879 -S UP l -t * -s 268 -d 1437 -r 512000.000000 -D 0.030000 -o 316.1deg -l 0.028832 -S UP l -t * -s 268 -d 341 -r 512000.000000 -D 0.030000 -o 307.9deg -l 0.040390 -S UP l -t * -s 267 -d 395 -r 512000.000000 -D 0.080000 -o 344.7deg -l 0.080951 -S UP l -t * -s 265 -d 1305 -r 512000.000000 -D 0.005000 -o 32.5deg -l 0.013507 -S UP l -t * -s 264 -d 1305 -r 512000.000000 -D 0.005000 -o 4.9deg -l 0.008447 -S UP l -t * -s 263 -d 1305 -r 512000.000000 -D 0.005000 -o 42.9deg -l 0.013241 -S UP l -t * -s 262 -d 1305 -r 512000.000000 -D 0.005000 -o 14.8deg -l 0.012297 -S UP l -t * -s 258 -d 425 -r 512000.000000 -D 0.080000 -o 158.6deg -l 0.071787 -S UP l -t * -s 257 -d 392 -r 512000.000000 -D 0.040000 -o 0.3deg -l 0.045881 -S UP l -t * -s 256 -d 1182 -r 512000.000000 -D 0.005000 -o 14.3deg -l 0.032991 -S UP l -t * -s 255 -d 1781 -r 512000.000000 -D 0.005000 -o 108.9deg -l 0.041372 -S UP l -t * -s 255 -d 1685 -r 512000.000000 -D 0.005000 -o 80.4deg -l 0.077760 -S UP l -t * -s 255 -d 1664 -r 512000.000000 -D 0.005000 -o 290.0deg -l 0.004331 -S UP l -t * -s 253 -d 1854 -r 512000.000000 -D 0.160000 -o 59.6deg -l 0.137303 -S UP l -t * -s 253 -d 1545 -r 512000.000000 -D 0.160000 -o 238.1deg -l 0.172417 -S UP l -t * -s 252 -d 1566 -r 512000.000000 -D 0.005000 -o 100.1deg -l 0.006755 -S UP l -t * -s 252 -d 1507 -r 512000.000000 -D 0.005000 -o 122.3deg -l 0.003319 -S UP l -t * -s 252 -d 1545 -r 512000.000000 -D 0.160000 -o 267.7deg -l 0.168519 -S UP l -t * -s 251 -d 424 -r 512000.000000 -D 0.040000 -o 115.1deg -l 0.032616 -S UP l -t * -s 251 -d 1545 -r 512000.000000 -D 0.080000 -o 288.0deg -l 0.072887 -S UP l -t * -s 250 -d 1130 -r 512000.000000 -D 0.080000 -o 122.0deg -l 0.062180 -S UP l -t * -s 250 -d 422 -r 512000.000000 -D 0.080000 -o 80.4deg -l 0.061252 -S UP l -t * -s 250 -d 1545 -r 512000.000000 -D 0.080000 -o 278.8deg -l 0.142321 -S UP l -t * -s 249 -d 642 -r 512000.000000 -D 0.005000 -o 267.5deg -l 0.135934 -S UP l -t * -s 249 -d 284 -r 512000.000000 -D 0.160000 -o 15.6deg -l 0.274464 -S UP l -t * -s 249 -d 647 -r 512000.000000 -D 0.640000 -o 100.7deg -l 0.606208 -S UP l -t * -s 249 -d 646 -r 512000.000000 -D 0.320000 -o 189.0deg -l 0.914086 -S UP l -t * -s 249 -d 676 -r 512000.000000 -D 0.320000 -o 61.5deg -l 1.776436 -S UP l -t * -s 249 -d 645 -r 512000.000000 -D 0.320000 -o 350.5deg -l 0.762584 -S UP l -t * -s 249 -d 784 -r 512000.000000 -D 0.320000 -o 246.0deg -l 1.491497 -S UP l -t * -s 249 -d 1545 -r 512000.000000 -D 0.160000 -o 78.7deg -l 0.609349 -S UP l -t * -s 249 -d 644 -r 512000.000000 -D 0.320000 -o 48.1deg -l 0.540549 -S UP l -t * -s 249 -d 623 -r 512000.000000 -D 0.320000 -o 17.6deg -l 1.071251 -S UP l -t * -s 249 -d 643 -r 512000.000000 -D 0.320000 -o 216.3deg -l 1.278820 -S UP l -t * -s 247 -d 1594 -r 512000.000000 -D 0.320000 -o 251.3deg -l 0.738600 -S UP l -t * -s 247 -d 293 -r 512000.000000 -D 0.240000 -o 73.7deg -l 0.238023 -S UP l -t * -s 247 -d 421 -r 512000.000000 -D 0.020000 -o 255.7deg -l 0.379704 -S UP l -t * -s 246 -d 1610 -r 512000.000000 -D 0.060000 -o 184.6deg -l 0.293549 -S UP l -t * -s 246 -d 1853 -r 512000.000000 -D 0.080000 -o 156.8deg -l 0.086833 -S UP l -t * -s 245 -d 1852 -r 512000.000000 -D 0.005000 -o 72.4deg -l 0.006019 -S UP l -t * -s 243 -d 1595 -r 512000.000000 -D 0.080000 -o 87.9deg -l 0.083238 -S UP l -t * -s 242 -d 1595 -r 512000.000000 -D 0.080000 -o 97.6deg -l 0.074992 -S UP l -t * -s 242 -d 417 -r 512000.000000 -D 0.005000 -o 274.5deg -l 0.003371 -S UP l -t * -s 240 -d 1358 -r 512000.000000 -D 0.005000 -o 132.3deg -l 0.041740 -S UP l -t * -s 239 -d 1553 -r 512000.000000 -D 0.050000 -o 275.3deg -l 0.054174 -S UP l -t * -s 239 -d 1547 -r 512000.000000 -D 0.050000 -o 297.7deg -l 0.061313 -S UP l -t * -s 239 -d 1441 -r 512000.000000 -D 0.050000 -o 241.6deg -l 0.048585 -S UP l -t * -s 239 -d 415 -r 512000.000000 -D 0.050000 -o 286.2deg -l 0.049524 -S UP l -t * -s 239 -d 414 -r 512000.000000 -D 0.050000 -o 265.0deg -l 0.055602 -S UP l -t * -s 239 -d 413 -r 512000.000000 -D 0.050000 -o 256.0deg -l 0.059456 -S UP l -t * -s 238 -d 410 -r 512000.000000 -D 0.120000 -o 241.8deg -l 0.119250 -S UP l -t * -s 238 -d 409 -r 512000.000000 -D 0.160000 -o 236.0deg -l 0.147928 -S UP l -t * -s 238 -d 408 -r 512000.000000 -D 0.120000 -o 261.9deg -l 0.115918 -S UP l -t * -s 238 -d 412 -r 512000.000000 -D 0.120000 -o 251.4deg -l 0.111460 -S UP l -t * -s 238 -d 411 -r 512000.000000 -D 0.120000 -o 225.7deg -l 0.114083 -S UP l -t * -s 238 -d 407 -r 512000.000000 -D 0.120000 -o 222.5deg -l 0.208980 -S UP l -t * -s 238 -d 406 -r 512000.000000 -D 0.120000 -o 237.1deg -l 0.302508 -S UP l -t * -s 237 -d 1249 -r 512000.000000 -D 0.320000 -o 219.8deg -l 0.314293 -S UP l -t * -s 237 -d 291 -r 512000.000000 -D 0.320000 -o 207.2deg -l 0.328259 -S UP l -t * -s 236 -d 1195 -r 512000.000000 -D 0.080000 -o 247.3deg -l 0.054740 -S UP l -t * -s 236 -d 1594 -r 512000.000000 -D 0.080000 -o 66.0deg -l 0.082958 -S UP l -t * -s 235 -d 1195 -r 512000.000000 -D 0.080000 -o 42.2deg -l 0.078825 -S UP l -t * -s 235 -d 1596 -r 512000.000000 -D 0.160000 -o 114.8deg -l 0.149509 -S UP l -t * -s 234 -d 1095 -r 512000.000000 -D 0.750000 -o 295.3deg -l 0.699821 -S UP l -t * -s 234 -d 404 -r 512000.000000 -D 0.005000 -o 279.3deg -l 0.010694 -S UP l -t * -s 234 -d 405 -r 512000.000000 -D 0.320000 -o 291.8deg -l 0.296209 -S UP l -t * -s 234 -d 1594 -r 512000.000000 -D 0.320000 -o 105.4deg -l 0.482864 -S UP l -t * -s 234 -d 1080 -r 512000.000000 -D 0.005000 -o 278.8deg -l 0.081977 -S UP l -t * -s 234 -d 1645 -r 512000.000000 -D 0.005000 -o 279.7deg -l 0.099681 -S UP l -t * -s 233 -d 1819 -r 512000.000000 -D 0.005000 -o 282.1deg -l 0.034308 -S UP l -t * -s 233 -d 1594 -r 512000.000000 -D 0.005000 -o 99.7deg -l 0.015208 -S UP l -t * -s 232 -d 1851 -r 512000.000000 -D 0.005000 -o 351.5deg -l 0.011024 -S UP l -t * -s 227 -d 228 -r 512000.000000 -D 0.320000 -o 198.5deg -l 0.275058 -S UP l -t * -s 227 -d 1239 -r 512000.000000 -D 0.320000 -o 190.4deg -l 0.266651 -S UP l -t * -s 227 -d 401 -r 512000.000000 -D 0.320000 -o 181.3deg -l 0.273009 -S UP l -t * -s 227 -d 291 -r 512000.000000 -D 0.320000 -o 357.6deg -l 0.132696 -S UP l -t * -s 227 -d 237 -r 512000.000000 -D 0.320000 -o 16.7deg -l 0.552967 -S UP l -t * -s 224 -d 1223 -r 512000.000000 -D 0.040000 -o 282.8deg -l 0.047467 -S UP l -t * -s 222 -d 400 -r 512000.000000 -D 0.120000 -o 306.4deg -l 0.111862 -S UP l -t * -s 221 -d 1510 -r 512000.000000 -D 0.080000 -o 301.7deg -l 0.079988 -S UP l -t * -s 221 -d 399 -r 512000.000000 -D 0.080000 -o 292.1deg -l 0.083065 -S UP l -t * -s 220 -d 398 -r 512000.000000 -D 0.005000 -o 99.9deg -l 0.308888 -S UP l -t * -s 218 -d 588 -r 512000.000000 -D 0.160000 -o 135.1deg -l 0.005027 -S UP l -t * -s 218 -d 1759 -r 512000.000000 -D 0.160000 -o 293.8deg -l 0.176171 -S UP l -t * -s 217 -d 1759 -r 512000.000000 -D 0.005000 -o 123.0deg -l 0.002607 -S UP l -t * -s 213 -d 271 -r 512000.000000 -D 0.080000 -o 175.6deg -l 0.073156 -S UP l -t * -s 213 -d 329 -r 512000.000000 -D 0.040000 -o 190.1deg -l 0.047620 -S UP l -t * -s 213 -d 1849 -r 512000.000000 -D 0.080000 -o 164.8deg -l 0.076872 -S UP l -t * -s 213 -d 327 -r 512000.000000 -D 0.040000 -o 171.2deg -l 0.046615 -S UP l -t * -s 213 -d 328 -r 512000.000000 -D 0.080000 -o 183.2deg -l 0.204961 -S UP l -t * -s 213 -d 1294 -r 512000.000000 -D 0.320000 -o 194.0deg -l 0.317444 -S UP l -t * -s 213 -d 246 -r 512000.000000 -D 0.080000 -o 7.5deg -l 0.433864 -S UP l -t * -s 212 -d 246 -r 512000.000000 -D 0.080000 -o 24.7deg -l 0.194660 -S UP l -t * -s 212 -d 325 -r 512000.000000 -D 0.080000 -o 208.7deg -l 0.164926 -S UP l -t * -s 211 -d 1848 -r 512000.000000 -D 0.080000 -o 253.1deg -l 0.049357 -S UP l -t * -s 210 -d 389 -r 512000.000000 -D 0.040000 -o 241.3deg -l 0.032169 -S UP l -t * -s 210 -d 388 -r 512000.000000 -D 0.040000 -o 232.2deg -l 0.044508 -S UP l -t * -s 210 -d 387 -r 512000.000000 -D 0.040000 -o 222.2deg -l 0.044754 -S UP l -t * -s 209 -d 1232 -r 512000.000000 -D 0.015000 -o 251.7deg -l 0.026443 -S UP l -t * -s 209 -d 383 -r 512000.000000 -D 0.015000 -o 242.6deg -l 0.136367 -S UP l -t * -s 209 -d 386 -r 512000.000000 -D 0.040000 -o 260.3deg -l 0.148488 -S UP l -t * -s 208 -d 384 -r 512000.000000 -D 0.015000 -o 228.0deg -l 0.007649 -S UP l -t * -s 208 -d 385 -r 512000.000000 -D 0.015000 -o 239.9deg -l 0.024507 -S UP l -t * -s 208 -d 209 -r 512000.000000 -D 0.005000 -o 57.5deg -l 0.094760 -S UP l -t * -s 207 -d 381 -r 512000.000000 -D 0.020000 -o 287.9deg -l 0.024954 -S UP l -t * -s 207 -d 382 -r 512000.000000 -D 0.020000 -o 279.2deg -l 0.012512 -S UP l -t * -s 207 -d 380 -r 512000.000000 -D 0.020000 -o 267.1deg -l 0.027325 -S UP l -t * -s 207 -d 379 -r 512000.000000 -D 0.020000 -o 274.8deg -l 0.059998 -S UP l -t * -s 206 -d 1695 -r 512000.000000 -D 0.120000 -o 270.5deg -l 0.120606 -S UP l -t * -s 206 -d 378 -r 512000.000000 -D 0.120000 -o 263.0deg -l 0.119421 -S UP l -t * -s 206 -d 377 -r 512000.000000 -D 0.120000 -o 273.3deg -l 0.137836 -S UP l -t * -s 206 -d 1171 -r 512000.000000 -D 0.120000 -o 255.6deg -l 0.119772 -S UP l -t * -s 206 -d 375 -r 512000.000000 -D 0.120000 -o 243.2deg -l 0.184108 -S UP l -t * -s 205 -d 373 -r 512000.000000 -D 0.005000 -o 168.5deg -l 0.046388 -S UP l -t * -s 205 -d 374 -r 512000.000000 -D 0.040000 -o 155.8deg -l 0.036108 -S UP l -t * -s 205 -d 246 -r 512000.000000 -D 0.080000 -o 342.6deg -l 0.136192 -S UP l -t * -s 199 -d 372 -r 512000.000000 -D 0.005000 -o 54.4deg -l 0.001954 -S UP l -t * -s 198 -d 372 -r 512000.000000 -D 0.005000 -o 29.4deg -l 0.023731 -S UP l -t * -s 198 -d 200 -r 512000.000000 -D 0.005000 -o 211.3deg -l 0.011699 -S UP l -t * -s 197 -d 372 -r 512000.000000 -D 0.005000 -o 17.1deg -l 0.004423 -S UP l -t * -s 196 -d 372 -r 512000.000000 -D 0.005000 -o 359.5deg -l 0.006089 -S UP l -t * -s 194 -d 371 -r 512000.000000 -D 0.040000 -o 43.4deg -l 0.043737 -S UP l -t * -s 191 -d 370 -r 512000.000000 -D 0.040000 -o 87.7deg -l 0.059036 -S UP l -t * -s 190 -d 1446 -r 512000.000000 -D 0.040000 -o 246.9deg -l 0.035398 -S UP l -t * -s 190 -d 370 -r 512000.000000 -D 0.040000 -o 67.9deg -l 0.064084 -S UP l -t * -s 189 -d 370 -r 512000.000000 -D 0.020000 -o 61.4deg -l 0.021887 -S UP l -t * -s 188 -d 370 -r 512000.000000 -D 0.005000 -o 49.3deg -l 0.000114 -S UP l -t * -s 187 -d 369 -r 512000.000000 -D 0.005000 -o 354.5deg -l 0.007102 -S UP l -t * -s 184 -d 304 -r 512000.000000 -D 0.005000 -o 72.2deg -l 0.000364 -S UP l -t * -s 183 -d 1241 -r 512000.000000 -D 0.160000 -o 233.1deg -l 0.169639 -S UP l -t * -s 183 -d 1552 -r 512000.000000 -D 0.160000 -o 249.9deg -l 0.166089 -S UP l -t * -s 182 -d 368 -r 512000.000000 -D 0.160000 -o 294.3deg -l 0.158371 -S UP l -t * -s 181 -d 368 -r 512000.000000 -D 0.005000 -o 8.9deg -l 0.298621 -S UP l -t * -s 181 -d 367 -r 512000.000000 -D 0.005000 -o 189.9deg -l 0.181614 -S UP l -t * -s 181 -d 1592 -r 512000.000000 -D 0.005000 -o 203.4deg -l 0.141407 -S UP l -t * -s 181 -d 365 -r 512000.000000 -D 0.005000 -o 190.4deg -l 0.131530 -S UP l -t * -s 181 -d 366 -r 512000.000000 -D 0.005000 -o 184.7deg -l 0.077273 -S UP l -t * -s 181 -d 1524 -r 512000.000000 -D 0.005000 -o 185.8deg -l 0.058259 -S UP l -t * -s 179 -d 1847 -r 512000.000000 -D 0.080000 -o 229.3deg -l 0.038330 -S UP l -t * -s 179 -d 1846 -r 512000.000000 -D 0.080000 -o 207.9deg -l 0.041853 -S UP l -t * -s 178 -d 364 -r 512000.000000 -D 0.005000 -o 204.9deg -l 0.014634 -S UP l -t * -s 175 -d 353 -r 512000.000000 -D 0.640000 -o 47.9deg -l 0.599667 -S UP l -t * -s 174 -d 1715 -r 512000.000000 -D 0.010000 -o 213.6deg -l 0.019196 -S UP l -t * -s 174 -d 1641 -r 512000.000000 -D 0.010000 -o 231.5deg -l 0.018656 -S UP l -t * -s 174 -d 1373 -r 512000.000000 -D 0.010000 -o 194.5deg -l 0.010665 -S UP l -t * -s 174 -d 1372 -r 512000.000000 -D 0.010000 -o 202.4deg -l 0.019349 -S UP l -t * -s 174 -d 363 -r 512000.000000 -D 0.160000 -o 222.1deg -l 0.163360 -S UP l -t * -s 174 -d 353 -r 512000.000000 -D 0.160000 -o 32.6deg -l 0.315997 -S UP l -t * -s 174 -d 362 -r 512000.000000 -D 0.160000 -o 215.5deg -l 0.160912 -S UP l -t * -s 174 -d 361 -r 512000.000000 -D 0.160000 -o 207.6deg -l 0.147383 -S UP l -t * -s 174 -d 359 -r 512000.000000 -D 0.160000 -o 229.1deg -l 0.146594 -S UP l -t * -s 174 -d 358 -r 512000.000000 -D 0.010000 -o 222.1deg -l 0.018947 -S UP l -t * -s 173 -d 353 -r 512000.000000 -D 0.005000 -o 15.7deg -l 0.011381 -S UP l -t * -s 172 -d 353 -r 512000.000000 -D 0.005000 -o 50.8deg -l 0.008601 -S UP l -t * -s 172 -d 1336 -r 512000.000000 -D 0.005000 -o 141.4deg -l 0.087758 -S UP l -t * -s 171 -d 353 -r 512000.000000 -D 0.005000 -o 28.0deg -l 0.013149 -S UP l -t * -s 171 -d 1336 -r 512000.000000 -D 0.005000 -o 307.5deg -l 0.088875 -S UP l -t * -s 171 -d 172 -r 512000.000000 -D 0.005000 -o 314.6deg -l 0.063980 -S UP l -t * -s 170 -d 353 -r 512000.000000 -D 0.160000 -o 55.7deg -l 0.227688 -S UP l -t * -s 170 -d 307 -r 512000.000000 -D 0.005000 -o 238.0deg -l 0.002093 -S UP l -t * -s 170 -d 308 -r 512000.000000 -D 0.005000 -o 250.9deg -l 0.059763 -S UP l -t * -s 169 -d 1471 -r 512000.000000 -D 0.080000 -o 65.7deg -l 0.028588 -S UP l -t * -s 169 -d 357 -r 512000.000000 -D 0.080000 -o 226.5deg -l 0.035616 -S UP l -t * -s 169 -d 356 -r 512000.000000 -D 0.160000 -o 232.0deg -l 0.144941 -S UP l -t * -s 169 -d 174 -r 512000.000000 -D 0.160000 -o 172.7deg -l 0.036288 -S UP l -t * -s 169 -d 353 -r 512000.000000 -D 0.080000 -o 49.6deg -l 0.215772 -S UP l -t * -s 168 -d 354 -r 512000.000000 -D 0.005000 -o 194.3deg -l 0.010607 -S UP l -t * -s 168 -d 355 -r 512000.000000 -D 0.005000 -o 206.8deg -l 0.000689 -S UP l -t * -s 168 -d 353 -r 512000.000000 -D 0.160000 -o 2.0deg -l 0.088138 -S UP l -t * -s 168 -d 1562 -r 512000.000000 -D 0.160000 -o 190.8deg -l 0.178231 -S UP l -t * -s 168 -d 1383 -r 512000.000000 -D 0.160000 -o 197.9deg -l 0.153983 -S UP l -t * -s 168 -d 174 -r 512000.000000 -D 0.160000 -o 234.5deg -l 0.162753 -S UP l -t * -s 168 -d 1690 -r 512000.000000 -D 0.160000 -o 26.4deg -l 0.315126 -S UP l -t * -s 167 -d 348 -r 512000.000000 -D 0.085000 -o 28.0deg -l 0.078187 -S UP l -t * -s 165 -d 345 -r 512000.000000 -D 0.160000 -o 12.2deg -l 0.187946 -S UP l -t * -s 165 -d 1633 -r 512000.000000 -D 0.160000 -o 22.4deg -l 0.177852 -S UP l -t * -s 165 -d 347 -r 512000.000000 -D 0.160000 -o 354.8deg -l 0.154761 -S UP l -t * -s 165 -d 346 -r 512000.000000 -D 0.160000 -o 3.8deg -l 0.151461 -S UP l -t * -s 164 -d 626 -r 512000.000000 -D 0.160000 -o 19.4deg -l 0.155673 -S UP l -t * -s 164 -d 625 -r 512000.000000 -D 0.160000 -o 25.5deg -l 0.193922 -S UP l -t * -s 164 -d 624 -r 512000.000000 -D 0.160000 -o 33.6deg -l 0.154787 -S UP l -t * -s 164 -d 623 -r 512000.000000 -D 0.040000 -o 200.6deg -l 0.909807 -S UP l -t * -s 163 -d 1845 -r 512000.000000 -D 0.160000 -o 77.0deg -l 0.159964 -S UP l -t * -s 163 -d 342 -r 512000.000000 -D 0.160000 -o 256.3deg -l 0.154121 -S UP l -t * -s 161 -d 1225 -r 512000.000000 -D 0.010000 -o 330.5deg -l 0.010036 -S UP l -t * -s 161 -d 332 -r 512000.000000 -D 0.160000 -o 157.0deg -l 0.138808 -S UP l -t * -s 159 -d 340 -r 512000.000000 -D 0.005000 -o 310.3deg -l 0.000157 -S UP l -t * -s 159 -d 339 -r 512000.000000 -D 0.160000 -o 327.8deg -l 0.149067 -S UP l -t * -s 159 -d 332 -r 512000.000000 -D 0.160000 -o 150.5deg -l 0.161388 -S UP l -t * -s 158 -d 332 -r 512000.000000 -D 0.160000 -o 118.5deg -l 0.148560 -S UP l -t * -s 156 -d 1657 -r 512000.000000 -D 0.320000 -o 289.9deg -l 0.297730 -S UP l -t * -s 156 -d 333 -r 512000.000000 -D 0.160000 -o 37.8deg -l 0.456144 -S UP l -t * -s 156 -d 1833 -r 512000.000000 -D 0.320000 -o 55.8deg -l 0.834461 -S UP l -t * -s 156 -d 294 -r 512000.000000 -D 0.160000 -o 210.1deg -l 0.194515 -S UP l -t * -s 156 -d 1844 -r 512000.000000 -D 0.160000 -o 183.2deg -l 0.186853 -S UP l -t * -s 156 -d 1585 -r 512000.000000 -D 0.160000 -o 156.0deg -l 0.168139 -S UP l -t * -s 156 -d 332 -r 512000.000000 -D 0.160000 -o 331.8deg -l 0.298939 -S UP l -t * -s 156 -d 331 -r 512000.000000 -D 0.160000 -o 36.1deg -l 0.447648 -S UP l -t * -s 156 -d 293 -r 512000.000000 -D 0.160000 -o 260.0deg -l 0.157777 -S UP l -t * -s 156 -d 1843 -r 512000.000000 -D 0.160000 -o 297.5deg -l 0.148661 -S UP l -t * -s 155 -d 330 -r 512000.000000 -D 0.160000 -o 33.8deg -l 0.173150 -S UP l -t * -s 155 -d 326 -r 512000.000000 -D 0.160000 -o 214.2deg -l 0.184664 -S UP l -t * -s 154 -d 326 -r 512000.000000 -D 0.040000 -o 199.8deg -l 0.047641 -S UP l -t * -s 153 -d 311 -r 512000.000000 -D 0.005000 -o 248.2deg -l 0.015606 -S UP l -t * -s 152 -d 1322 -r 512000.000000 -D 0.150000 -o 64.2deg -l 0.118464 -S UP l -t * -s 152 -d 681 -r 512000.000000 -D 0.150000 -o 83.1deg -l 0.116954 -S UP l -t * -s 149 -d 1656 -r 512000.000000 -D 0.005000 -o 158.1deg -l 0.004298 -S UP l -t * -s 149 -d 1509 -r 512000.000000 -D 0.320000 -o 209.7deg -l 0.394824 -S UP l -t * -s 149 -d 1198 -r 512000.000000 -D 0.005000 -o 175.3deg -l 0.009705 -S UP l -t * -s 149 -d 1160 -r 512000.000000 -D 0.160000 -o 173.5deg -l 0.295212 -S UP l -t * -s 149 -d 618 -r 512000.000000 -D 0.005000 -o 207.2deg -l 0.008154 -S UP l -t * -s 149 -d 616 -r 512000.000000 -D 0.005000 -o 190.8deg -l 0.015216 -S UP l -t * -s 149 -d 614 -r 512000.000000 -D 0.320000 -o 201.2deg -l 0.381599 -S UP l -t * -s 149 -d 613 -r 512000.000000 -D 0.320000 -o 50.8deg -l 0.723994 -S UP l -t * -s 149 -d 953 -r 512000.000000 -D 0.320000 -o 104.9deg -l 0.285511 -S UP l -t * -s 149 -d 1056 -r 512000.000000 -D 0.320000 -o 166.0deg -l 0.326702 -S UP l -t * -s 149 -d 1197 -r 512000.000000 -D 0.320000 -o 218.0deg -l 0.298761 -S UP l -t * -s 149 -d 621 -r 512000.000000 -D 0.320000 -o 207.4deg -l 0.311053 -S UP l -t * -s 149 -d 620 -r 512000.000000 -D 0.320000 -o 348.7deg -l 0.525938 -S UP l -t * -s 149 -d 619 -r 512000.000000 -D 0.320000 -o 184.3deg -l 0.322801 -S UP l -t * -s 149 -d 1842 -r 512000.000000 -D 0.320000 -o 200.8deg -l 0.298019 -S UP l -t * -s 149 -d 617 -r 512000.000000 -D 0.320000 -o 193.8deg -l 0.310448 -S UP l -t * -s 149 -d 1350 -r 512000.000000 -D 0.320000 -o 224.3deg -l 0.303094 -S UP l -t * -s 149 -d 1356 -r 512000.000000 -D 0.320000 -o 86.2deg -l 0.597568 -S UP l -t * -s 149 -d 615 -r 512000.000000 -D 0.320000 -o 213.1deg -l 0.310820 -S UP l -t * -s 149 -d 1525 -r 512000.000000 -D 0.320000 -o 293.8deg -l 0.743342 -S UP l -t * -s 146 -d 1307 -r 512000.000000 -D 0.160000 -o 301.7deg -l 0.320173 -S UP l -t * -s 146 -d 1231 -r 512000.000000 -D 0.320000 -o 333.6deg -l 0.299983 -S UP l -t * -s 146 -d 324 -r 512000.000000 -D 0.040000 -o 306.2deg -l 0.063734 -S UP l -t * -s 146 -d 323 -r 512000.000000 -D 0.040000 -o 312.8deg -l 0.181723 -S UP l -t * -s 146 -d 195 -r 512000.000000 -D 0.160000 -o 289.1deg -l 0.151733 -S UP l -t * -s 146 -d 322 -r 512000.000000 -D 0.160000 -o 283.6deg -l 0.175765 -S UP l -t * -s 146 -d 193 -r 512000.000000 -D 0.080000 -o 326.4deg -l 0.092036 -S UP l -t * -s 146 -d 321 -r 512000.000000 -D 0.040000 -o 334.8deg -l 0.034628 -S UP l -t * -s 146 -d 320 -r 512000.000000 -D 0.160000 -o 296.0deg -l 0.245066 -S UP l -t * -s 146 -d 318 -r 512000.000000 -D 0.005000 -o 315.3deg -l 0.010368 -S UP l -t * -s 145 -d 146 -r 512000.000000 -D 0.160000 -o 308.4deg -l 0.550394 -S UP l -t * -s 145 -d 314 -r 512000.000000 -D 0.160000 -o 332.4deg -l 0.477325 -S UP l -t * -s 145 -d 313 -r 512000.000000 -D 0.160000 -o 327.1deg -l 0.178722 -S UP l -t * -s 145 -d 1833 -r 512000.000000 -D 0.160000 -o 128.0deg -l 0.533539 -S UP l -t * -s 145 -d 1840 -r 512000.000000 -D 0.160000 -o 80.0deg -l 0.096100 -S UP l -t * -s 145 -d 1603 -r 512000.000000 -D 0.160000 -o 108.3deg -l 0.147563 -S UP l -t * -s 144 -d 1603 -r 512000.000000 -D 0.005000 -o 147.9deg -l 0.031737 -S UP l -t * -s 144 -d 145 -r 512000.000000 -D 0.160000 -o 256.6deg -l 0.062195 -S UP l -t * -s 144 -d 1087 -r 512000.000000 -D 0.005000 -o 323.6deg -l 0.001622 -S UP l -t * -s 143 -d 310 -r 512000.000000 -D 0.005000 -o 42.2deg -l 0.014554 -S UP l -t * -s 143 -d 312 -r 512000.000000 -D 0.080000 -o 57.1deg -l 0.069503 -S UP l -t * -s 143 -d 311 -r 512000.000000 -D 0.080000 -o 65.1deg -l 0.191304 -S UP l -t * -s 143 -d 309 -r 512000.000000 -D 0.160000 -o 244.4deg -l 0.171706 -S UP l -t * -s 143 -d 150 -r 512000.000000 -D 0.005000 -o 57.0deg -l 0.001244 -S UP l -t * -s 142 -d 143 -r 512000.000000 -D 0.005000 -o 252.3deg -l 0.001721 -S UP l -t * -s 142 -d 150 -r 512000.000000 -D 0.005000 -o 329.1deg -l 0.082680 -S UP l -t * -s 141 -d 1407 -r 512000.000000 -D 0.320000 -o 52.4deg -l 0.308740 -S UP l -t * -s 141 -d 1258 -r 512000.000000 -D 0.080000 -o 26.1deg -l 0.080618 -S UP l -t * -s 141 -d 248 -r 512000.000000 -D 0.320000 -o 24.4deg -l 0.306540 -S UP l -t * -s 141 -d 1762 -r 512000.000000 -D 0.320000 -o 240.6deg -l 1.240368 -S UP l -t * -s 141 -d 1601 -r 512000.000000 -D 0.320000 -o 121.9deg -l 0.744937 -S UP l -t * -s 141 -d 254 -r 512000.000000 -D 0.480000 -o 7.2deg -l 0.462212 -S UP l -t * -s 141 -d 612 -r 512000.000000 -D 0.320000 -o 254.3deg -l 0.786118 -S UP l -t * -s 141 -d 1839 -r 512000.000000 -D 0.320000 -o 351.9deg -l 0.301226 -S UP l -t * -s 141 -d 1838 -r 512000.000000 -D 0.160000 -o 353.0deg -l 0.153329 -S UP l -t * -s 141 -d 1416 -r 512000.000000 -D 0.160000 -o 47.8deg -l 0.338299 -S UP l -t * -s 141 -d 232 -r 512000.000000 -D 0.160000 -o 11.6deg -l 0.155390 -S UP l -t * -s 141 -d 249 -r 512000.000000 -D 0.005000 -o 61.5deg -l 1.204541 -S UP l -t * -s 139 -d 1196 -r 512000.000000 -D 0.320000 -o 76.2deg -l 0.308226 -S UP l -t * -s 139 -d 1351 -r 512000.000000 -D 0.320000 -o 121.2deg -l 0.413869 -S UP l -t * -s 139 -d 300 -r 512000.000000 -D 0.320000 -o 59.5deg -l 0.301189 -S UP l -t * -s 139 -d 299 -r 512000.000000 -D 0.320000 -o 92.6deg -l 0.308299 -S UP l -t * -s 139 -d 298 -r 512000.000000 -D 0.160000 -o 68.4deg -l 0.975466 -S UP l -t * -s 139 -d 1304 -r 512000.000000 -D 0.005000 -o 149.5deg -l 0.486836 -S UP l -t * -s 138 -d 1309 -r 512000.000000 -D 0.080000 -o 264.4deg -l 0.077878 -S UP l -t * -s 138 -d 297 -r 512000.000000 -D 0.160000 -o 239.6deg -l 0.158962 -S UP l -t * -s 138 -d 296 -r 512000.000000 -D 0.160000 -o 205.8deg -l 0.216996 -S UP l -t * -s 138 -d 295 -r 512000.000000 -D 0.160000 -o 298.2deg -l 0.169239 -S UP l -t * -s 138 -d 226 -r 512000.000000 -D 0.160000 -o 179.2deg -l 0.153407 -S UP l -t * -s 137 -d 969 -r 512000.000000 -D 0.010000 -o 329.2deg -l 0.014570 -S UP l -t * -s 137 -d 506 -r 512000.000000 -D 0.020000 -o 322.2deg -l 0.081131 -S UP l -t * -s 137 -d 432 -r 512000.000000 -D 0.160000 -o 253.9deg -l 0.636034 -S UP l -t * -s 137 -d 1022 -r 512000.000000 -D 0.320000 -o 73.2deg -l 0.688352 -S UP l -t * -s 136 -d 292 -r 512000.000000 -D 0.005000 -o 323.3deg -l 0.014510 -S UP l -t * -s 135 -d 289 -r 512000.000000 -D 0.045000 -o 23.6deg -l 0.051128 -S UP l -t * -s 134 -d 290 -r 512000.000000 -D 0.005000 -o 48.6deg -l 0.008449 -S UP l -t * -s 133 -d 290 -r 512000.000000 -D 0.005000 -o 63.6deg -l 0.014069 -S UP l -t * -s 132 -d 249 -r 512000.000000 -D 0.160000 -o 233.7deg -l 0.149918 -S UP l -t * -s 131 -d 289 -r 512000.000000 -D 0.045000 -o 15.7deg -l 0.047808 -S UP l -t * -s 130 -d 289 -r 512000.000000 -D 0.045000 -o 31.4deg -l 0.050827 -S UP l -t * -s 129 -d 289 -r 512000.000000 -D 0.045000 -o 51.3deg -l 0.052088 -S UP l -t * -s 128 -d 1582 -r 512000.000000 -D 0.005000 -o 212.8deg -l 0.013642 -S UP l -t * -s 128 -d 289 -r 512000.000000 -D 0.045000 -o 37.2deg -l 0.042386 -S UP l -t * -s 127 -d 289 -r 512000.000000 -D 0.005000 -o 36.4deg -l 0.015079 -S UP l -t * -s 126 -d 1287 -r 512000.000000 -D 0.020000 -o 76.4deg -l 0.022444 -S UP l -t * -s 125 -d 1287 -r 512000.000000 -D 0.020000 -o 89.0deg -l 0.030038 -S UP l -t * -s 123 -d 285 -r 512000.000000 -D 0.005000 -o 16.4deg -l 0.008654 -S UP l -t * -s 122 -d 285 -r 512000.000000 -D 0.005000 -o 334.4deg -l 0.036704 -S UP l -t * -s 121 -d 285 -r 512000.000000 -D 0.005000 -o 169.5deg -l 0.125971 -S UP l -t * -s 121 -d 156 -r 512000.000000 -D 0.320000 -o 1.3deg -l 0.382614 -S UP l -t * -s 120 -d 284 -r 512000.000000 -D 0.040000 -o 207.4deg -l 0.148187 -S UP l -t * -s 120 -d 282 -r 512000.000000 -D 0.005000 -o 41.9deg -l 0.001893 -S UP l -t * -s 120 -d 283 -r 512000.000000 -D 0.005000 -o 20.8deg -l 0.011574 -S UP l -t * -s 119 -d 1170 -r 512000.000000 -D 0.160000 -o 287.9deg -l 0.148174 -S UP l -t * -s 119 -d 275 -r 512000.000000 -D 0.040000 -o 290.0deg -l 0.046897 -S UP l -t * -s 119 -d 1463 -r 512000.000000 -D 0.080000 -o 286.9deg -l 0.079385 -S UP l -t * -s 119 -d 274 -r 512000.000000 -D 0.080000 -o 310.1deg -l 0.094697 -S UP l -t * -s 119 -d 273 -r 512000.000000 -D 0.040000 -o 298.1deg -l 0.098103 -S UP l -t * -s 119 -d 272 -r 512000.000000 -D 0.040000 -o 269.0deg -l 0.033551 -S UP l -t * -s 118 -d 270 -r 512000.000000 -D 0.030000 -o 296.8deg -l 0.175413 -S UP l -t * -s 118 -d 269 -r 512000.000000 -D 0.030000 -o 310.1deg -l 0.115695 -S UP l -t * -s 118 -d 268 -r 512000.000000 -D 0.030000 -o 303.6deg -l 0.154993 -S UP l -t * -s 118 -d 1104 -r 512000.000000 -D 0.030000 -o 256.2deg -l 0.406189 -S UP l -t * -s 116 -d 1692 -r 512000.000000 -D 0.005000 -o 165.7deg -l 0.008947 -S UP l -t * -s 116 -d 1837 -r 512000.000000 -D 0.160000 -o 149.5deg -l 0.155165 -S UP l -t * -s 116 -d 261 -r 512000.000000 -D 0.160000 -o 176.0deg -l 0.146410 -S UP l -t * -s 116 -d 260 -r 512000.000000 -D 0.160000 -o 138.6deg -l 0.143357 -S UP l -t * -s 116 -d 259 -r 512000.000000 -D 0.160000 -o 165.6deg -l 0.155453 -S UP l -t * -s 116 -d 258 -r 512000.000000 -D 0.160000 -o 157.5deg -l 0.181721 -S UP l -t * -s 116 -d 156 -r 512000.000000 -D 0.320000 -o 339.9deg -l 0.397104 -S UP l -t * -s 115 -d 254 -r 512000.000000 -D 0.005000 -o 191.6deg -l 0.071687 -S UP l -t * -s 115 -d 1836 -r 512000.000000 -D 0.005000 -o 21.3deg -l 0.008949 -S UP l -t * -s 115 -d 1835 -r 512000.000000 -D 0.005000 -o 2.5deg -l 0.001402 -S UP l -t * -s 114 -d 254 -r 512000.000000 -D 0.005000 -o 184.1deg -l 0.011738 -S UP l -t * -s 113 -d 1688 -r 512000.000000 -D 0.005000 -o 90.4deg -l 0.001250 -S UP l -t * -s 113 -d 1781 -r 512000.000000 -D 0.005000 -o 63.0deg -l 0.020398 -S UP l -t * -s 113 -d 1783 -r 512000.000000 -D 0.005000 -o 56.0deg -l 0.007794 -S UP l -t * -s 112 -d 248 -r 512000.000000 -D 0.160000 -o 193.7deg -l 0.149603 -S UP l -t * -s 111 -d 248 -r 512000.000000 -D 0.160000 -o 208.4deg -l 0.149343 -S UP l -t * -s 111 -d 1834 -r 512000.000000 -D 0.005000 -o 32.7deg -l 0.003937 -S UP l -t * -s 110 -d 1688 -r 512000.000000 -D 0.005000 -o 113.5deg -l 0.015780 -S UP l -t * -s 110 -d 113 -r 512000.000000 -D 0.005000 -o 210.7deg -l 0.068686 -S UP l -t * -s 110 -d 1781 -r 512000.000000 -D 0.005000 -o 86.3deg -l 0.052959 -S UP l -t * -s 110 -d 1783 -r 512000.000000 -D 0.005000 -o 72.2deg -l 0.045177 -S UP l -t * -s 110 -d 1622 -r 512000.000000 -D 0.005000 -o 287.4deg -l 0.030670 -S UP l -t * -s 110 -d 1753 -r 512000.000000 -D 0.005000 -o 279.9deg -l 0.065180 -S UP l -t * -s 109 -d 1290 -r 512000.000000 -D 0.005000 -o 233.7deg -l 0.049117 -S UP l -t * -s 109 -d 1622 -r 512000.000000 -D 0.005000 -o 107.1deg -l 0.012324 -S UP l -t * -s 109 -d 1754 -r 512000.000000 -D 0.005000 -o 239.8deg -l 0.072787 -S UP l -t * -s 109 -d 1753 -r 512000.000000 -D 0.005000 -o 121.2deg -l 0.017907 -S UP l -t * -s 108 -d 1416 -r 512000.000000 -D 0.005000 -o 234.0deg -l 0.024665 -S UP l -t * -s 108 -d 305 -r 512000.000000 -D 0.005000 -o 321.5deg -l 0.056658 -S UP l -t * -s 107 -d 247 -r 512000.000000 -D 0.080000 -o 311.9deg -l 0.127517 -S UP l -t * -s 107 -d 1596 -r 512000.000000 -D 0.240000 -o 247.2deg -l 1.199715 -S UP l -t * -s 107 -d 293 -r 512000.000000 -D 0.240000 -o 31.4deg -l 0.190272 -S UP l -t * -s 107 -d 156 -r 512000.000000 -D 0.240000 -o 54.2deg -l 0.410266 -S UP l -t * -s 107 -d 1129 -r 512000.000000 -D 0.200000 -o 310.3deg -l 0.321094 -S UP l -t * -s 107 -d 119 -r 512000.000000 -D 0.200000 -o 290.3deg -l 0.257715 -S UP l -t * -s 107 -d 118 -r 512000.000000 -D 0.200000 -o 269.5deg -l 0.505394 -S UP l -t * -s 107 -d 246 -r 512000.000000 -D 0.200000 -o 186.6deg -l 0.586800 -S UP l -t * -s 107 -d 1833 -r 512000.000000 -D 0.320000 -o 55.3deg -l 1.357614 -S UP l -t * -s 107 -d 1593 -r 512000.000000 -D 0.160000 -o 198.1deg -l 0.427323 -S UP l -t * -s 106 -d 245 -r 512000.000000 -D 0.160000 -o 217.8deg -l 0.022542 -S UP l -t * -s 106 -d 1596 -r 512000.000000 -D 0.160000 -o 75.8deg -l 0.150176 -S UP l -t * -s 105 -d 1596 -r 512000.000000 -D 0.160000 -o 67.6deg -l 0.153638 -S UP l -t * -s 104 -d 1596 -r 512000.000000 -D 0.160000 -o 99.8deg -l 0.146177 -S UP l -t * -s 103 -d 244 -r 512000.000000 -D 0.160000 -o 285.3deg -l 0.152147 -S UP l -t * -s 103 -d 1596 -r 512000.000000 -D 0.160000 -o 103.8deg -l 0.167129 -S UP l -t * -s 102 -d 1596 -r 512000.000000 -D 0.160000 -o 82.8deg -l 0.151557 -S UP l -t * -s 101 -d 1596 -r 512000.000000 -D 0.160000 -o 92.5deg -l 0.158236 -S UP l -t * -s 100 -d 241 -r 512000.000000 -D 0.080000 -o 240.1deg -l 0.082401 -S UP l -t * -s 100 -d 1596 -r 512000.000000 -D 0.080000 -o 61.2deg -l 0.093215 -S UP l -t * -s 99 -d 1358 -r 512000.000000 -D 0.040000 -o 246.4deg -l 0.052963 -S UP l -t * -s 99 -d 240 -r 512000.000000 -D 0.040000 -o 264.9deg -l 0.092667 -S UP l -t * -s 99 -d 239 -r 512000.000000 -D 0.080000 -o 267.4deg -l 0.228680 -S UP l -t * -s 99 -d 156 -r 512000.000000 -D 0.320000 -o 53.5deg -l 0.778895 -S UP l -t * -s 99 -d 238 -r 512000.000000 -D 0.240000 -o 236.9deg -l 0.470318 -S UP l -t * -s 99 -d 237 -r 512000.000000 -D 0.320000 -o 204.7deg -l 0.655183 -S UP l -t * -s 99 -d 1596 -r 512000.000000 -D 0.240000 -o 252.8deg -l 0.847800 -S UP l -t * -s 98 -d 1596 -r 512000.000000 -D 0.240000 -o 80.6deg -l 0.229447 -S UP l -t * -s 97 -d 1195 -r 512000.000000 -D 0.080000 -o 287.0deg -l 0.031931 -S UP l -t * -s 97 -d 1594 -r 512000.000000 -D 0.005000 -o 46.2deg -l 0.157295 -S UP l -t * -s 97 -d 1596 -r 512000.000000 -D 0.005000 -o 187.9deg -l 0.098738 -S UP l -t * -s 96 -d 232 -r 512000.000000 -D 0.005000 -o 204.9deg -l 0.002208 -S UP l -t * -s 95 -d 232 -r 512000.000000 -D 0.005000 -o 188.4deg -l 0.011021 -S UP l -t * -s 93 -d 231 -r 512000.000000 -D 0.120000 -o 258.0deg -l 0.119720 -S UP l -t * -s 91 -d 230 -r 512000.000000 -D 0.005000 -o 32.2deg -l 0.006654 -S UP l -t * -s 90 -d 230 -r 512000.000000 -D 0.005000 -o 213.3deg -l 0.012177 -S UP l -t * -s 90 -d 229 -r 512000.000000 -D 0.005000 -o 222.1deg -l 0.010783 -S UP l -t * -s 90 -d 227 -r 512000.000000 -D 0.320000 -o 33.3deg -l 0.266282 -S UP l -t * -s 89 -d 226 -r 512000.000000 -D 0.080000 -o 357.9deg -l 0.073063 -S UP l -t * -s 88 -d 225 -r 512000.000000 -D 0.120000 -o 262.2deg -l 0.118876 -S UP l -t * -s 85 -d 224 -r 512000.000000 -D 0.005000 -o 281.5deg -l 0.074555 -S UP l -t * -s 84 -d 223 -r 512000.000000 -D 0.120000 -o 275.9deg -l 0.119878 -S UP l -t * -s 84 -d 222 -r 512000.000000 -D 0.120000 -o 305.0deg -l 0.124328 -S UP l -t * -s 84 -d 221 -r 512000.000000 -D 0.120000 -o 296.8deg -l 0.156453 -S UP l -t * -s 84 -d 220 -r 512000.000000 -D 0.040000 -o 101.3deg -l 0.288057 -S UP l -t * -s 83 -d 219 -r 512000.000000 -D 0.005000 -o 312.7deg -l 0.002424 -S UP l -t * -s 83 -d 1068 -r 512000.000000 -D 0.005000 -o 292.9deg -l 0.001547 -S UP l -t * -s 83 -d 218 -r 512000.000000 -D 0.160000 -o 122.7deg -l 0.169886 -S UP l -t * -s 83 -d 217 -r 512000.000000 -D 0.005000 -o 281.4deg -l 0.008481 -S UP l -t * -s 82 -d 1506 -r 512000.000000 -D 0.180000 -o 279.0deg -l 0.177124 -S UP l -t * -s 82 -d 1274 -r 512000.000000 -D 0.005000 -o 286.1deg -l 0.013898 -S UP l -t * -s 81 -d 113 -r 512000.000000 -D 0.005000 -o 275.5deg -l 0.159007 -S UP l -t * -s 81 -d 1688 -r 512000.000000 -D 0.005000 -o 279.0deg -l 0.047993 -S UP l -t * -s 81 -d 1781 -r 512000.000000 -D 0.005000 -o 289.9deg -l 0.087103 -S UP l -t * -s 81 -d 110 -r 512000.000000 -D 0.005000 -o 284.5deg -l 0.143288 -S UP l -t * -s 81 -d 1783 -r 512000.000000 -D 0.005000 -o 294.8deg -l 0.089215 -S UP l -t * -s 80 -d 215 -r 512000.000000 -D 0.120000 -o 256.8deg -l 0.119433 -S UP l -t * -s 80 -d 1721 -r 512000.000000 -D 0.120000 -o 249.0deg -l 0.119867 -S UP l -t * -s 80 -d 214 -r 512000.000000 -D 0.120000 -o 264.4deg -l 0.117401 -S UP l -t * -s 80 -d 206 -r 512000.000000 -D 0.120000 -o 250.2deg -l 0.170929 -S UP l -t * -s 79 -d 211 -r 512000.000000 -D 0.120000 -o 252.7deg -l 0.139630 -S UP l -t * -s 79 -d 210 -r 512000.000000 -D 0.120000 -o 233.1deg -l 0.126811 -S UP l -t * -s 79 -d 209 -r 512000.000000 -D 0.120000 -o 249.6deg -l 0.262814 -S UP l -t * -s 79 -d 207 -r 512000.000000 -D 0.040000 -o 274.1deg -l 0.143053 -S UP l -t * -s 79 -d 206 -r 512000.000000 -D 0.120000 -o 260.8deg -l 0.305568 -S UP l -t * -s 78 -d 204 -r 512000.000000 -D 0.040000 -o 263.4deg -l 0.051065 -S UP l -t * -s 78 -d 203 -r 512000.000000 -D 0.040000 -o 282.4deg -l 0.044194 -S UP l -t * -s 78 -d 202 -r 512000.000000 -D 0.040000 -o 252.8deg -l 0.048094 -S UP l -t * -s 78 -d 201 -r 512000.000000 -D 0.040000 -o 272.3deg -l 0.039568 -S UP l -t * -s 77 -d 1832 -r 512000.000000 -D 0.080000 -o 278.9deg -l 0.073028 -S UP l -t * -s 77 -d 195 -r 512000.000000 -D 0.040000 -o 101.3deg -l 0.106340 -S UP l -t * -s 76 -d 80 -r 512000.000000 -D 0.120000 -o 51.2deg -l 0.159956 -S UP l -t * -s 75 -d 1484 -r 512000.000000 -D 0.160000 -o 161.2deg -l 0.160862 -S UP l -t * -s 74 -d 1357 -r 512000.000000 -D 0.080000 -o 307.6deg -l 0.084672 -S UP l -t * -s 74 -d 606 -r 512000.000000 -D 0.080000 -o 335.4deg -l 0.081764 -S UP l -t * -s 74 -d 145 -r 512000.000000 -D 0.320000 -o 245.0deg -l 0.753852 -S UP l -t * -s 74 -d 1484 -r 512000.000000 -D 0.240000 -o 83.6deg -l 0.786715 -S UP l -t * -s 74 -d 1775 -r 512000.000000 -D 0.080000 -o 327.2deg -l 0.134520 -S UP l -t * -s 74 -d 1546 -r 512000.000000 -D 0.005000 -o 352.0deg -l 0.104123 -S UP l -t * -s 73 -d 1484 -r 512000.000000 -D 0.040000 -o 107.2deg -l 0.042332 -S UP l -t * -s 72 -d 1484 -r 512000.000000 -D 0.040000 -o 124.3deg -l 0.045720 -S UP l -t * -s 71 -d 193 -r 512000.000000 -D 0.040000 -o 142.4deg -l 0.047982 -S UP l -t * -s 70 -d 193 -r 512000.000000 -D 0.020000 -o 155.5deg -l 0.020063 -S UP l -t * -s 69 -d 179 -r 512000.000000 -D 0.640000 -o 36.1deg -l 0.567832 -S UP l -t * -s 68 -d 1273 -r 512000.000000 -D 0.005000 -o 343.3deg -l 0.003643 -S UP l -t * -s 68 -d 1248 -r 512000.000000 -D 0.005000 -o 329.5deg -l 0.002022 -S UP l -t * -s 68 -d 603 -r 512000.000000 -D 0.005000 -o 315.8deg -l 0.014444 -S UP l -t * -s 68 -d 602 -r 512000.000000 -D 0.005000 -o 327.8deg -l 0.049981 -S UP l -t * -s 68 -d 1775 -r 512000.000000 -D 0.080000 -o 147.5deg -l 0.114106 -S UP l -t * -s 67 -d 1126 -r 512000.000000 -D 0.035000 -o 286.4deg -l 0.041099 -S UP l -t * -s 67 -d 158 -r 512000.000000 -D 0.160000 -o 116.1deg -l 0.151491 -S UP l -t * -s 65 -d 1169 -r 512000.000000 -D 0.040000 -o 246.6deg -l 0.051276 -S UP l -t * -s 65 -d 170 -r 512000.000000 -D 0.160000 -o 54.6deg -l 0.145792 -S UP l -t * -s 65 -d 185 -r 512000.000000 -D 0.160000 -o 46.5deg -l 0.557385 -S UP l -t * -s 65 -d 1831 -r 512000.000000 -D 0.080000 -o 248.0deg -l 0.132665 -S UP l -t * -s 65 -d 1462 -r 512000.000000 -D 0.080000 -o 229.5deg -l 0.258732 -S UP l -t * -s 65 -d 179 -r 512000.000000 -D 0.160000 -o 216.8deg -l 0.473435 -S UP l -t * -s 65 -d 183 -r 512000.000000 -D 0.005000 -o 245.9deg -l 0.256722 -S UP l -t * -s 64 -d 180 -r 512000.000000 -D 0.120000 -o 244.7deg -l 0.088358 -S UP l -t * -s 64 -d 179 -r 512000.000000 -D 0.120000 -o 67.6deg -l 0.107502 -S UP l -t * -s 63 -d 179 -r 512000.000000 -D 0.120000 -o 39.5deg -l 0.082476 -S UP l -t * -s 61 -d 176 -r 512000.000000 -D 0.005000 -o 5.4deg -l 0.013398 -S UP l -t * -s 61 -d 177 -r 512000.000000 -D 0.005000 -o 357.7deg -l 0.026921 -S UP l -t * -s 60 -d 818 -r 512000.000000 -D 0.160000 -o 8.2deg -l 0.432377 -S UP l -t * -s 60 -d 695 -r 512000.000000 -D 0.160000 -o 15.9deg -l 0.190476 -S UP l -t * -s 60 -d 1405 -r 512000.000000 -D 0.160000 -o 22.0deg -l 0.322456 -S UP l -t * -s 59 -d 167 -r 512000.000000 -D 0.160000 -o 27.5deg -l 0.187204 -S UP l -t * -s 59 -d 166 -r 512000.000000 -D 0.160000 -o 17.3deg -l 0.158288 -S UP l -t * -s 59 -d 165 -r 512000.000000 -D 0.040000 -o 10.4deg -l 0.357648 -S UP l -t * -s 59 -d 164 -r 512000.000000 -D 0.040000 -o 199.7deg -l 0.852398 -S UP l -t * -s 58 -d 162 -r 512000.000000 -D 0.005000 -o 301.4deg -l 0.001223 -S UP l -t * -s 58 -d 161 -r 512000.000000 -D 0.160000 -o 339.4deg -l 0.126881 -S UP l -t * -s 58 -d 160 -r 512000.000000 -D 0.160000 -o 348.9deg -l 0.142419 -S UP l -t * -s 58 -d 159 -r 512000.000000 -D 0.160000 -o 332.4deg -l 0.148343 -S UP l -t * -s 58 -d 158 -r 512000.000000 -D 0.160000 -o 298.6deg -l 0.132846 -S UP l -t * -s 58 -d 157 -r 512000.000000 -D 0.160000 -o 0.2deg -l 0.133586 -S UP l -t * -s 58 -d 156 -r 512000.000000 -D 0.160000 -o 150.6deg -l 0.312015 -S UP l -t * -s 57 -d 152 -r 512000.000000 -D 0.150000 -o 74.7deg -l 0.233070 -S UP l -t * -s 57 -d 1545 -r 512000.000000 -D 0.160000 -o 248.7deg -l 0.259944 -S UP l -t * -s 56 -d 247 -r 512000.000000 -D 0.320000 -o 252.7deg -l 0.834411 -S UP l -t * -s 56 -d 148 -r 512000.000000 -D 0.320000 -o 169.6deg -l 0.370955 -S UP l -t * -s 56 -d 1830 -r 512000.000000 -D 0.160000 -o 54.2deg -l 1.276502 -S UP l -t * -s 56 -d 107 -r 512000.000000 -D 0.320000 -o 238.6deg -l 0.736687 -S UP l -t * -s 56 -d 99 -r 512000.000000 -D 0.320000 -o 236.7deg -l 1.103913 -S UP l -t * -s 55 -d 141 -r 512000.000000 -D 0.160000 -o 219.4deg -l 0.153878 -S UP l -t * -s 54 -d 1788 -r 512000.000000 -D 0.320000 -o 223.4deg -l 0.190334 -S UP l -t * -s 54 -d 56 -r 512000.000000 -D 0.320000 -o 256.9deg -l 1.051874 -S UP l -t * -s 54 -d 139 -r 512000.000000 -D 0.320000 -o 80.6deg -l 1.061280 -S UP l -t * -s 54 -d 1184 -r 512000.000000 -D 0.320000 -o 177.5deg -l 0.289741 -S UP l -t * -s 54 -d 138 -r 512000.000000 -D 0.320000 -o 231.8deg -l 0.325226 -S UP l -t * -s 54 -d 137 -r 512000.000000 -D 0.320000 -o 15.2deg -l 0.426868 -S UP l -t * -s 54 -d 1829 -r 512000.000000 -D 0.005000 -o 316.0deg -l 0.104353 -S UP l -t * -s 53 -d 1678 -r 512000.000000 -D 0.225000 -o 322.2deg -l 0.216703 -S UP l -t * -s 53 -d 1432 -r 512000.000000 -D 0.160000 -o 319.5deg -l 0.184385 -S UP l -t * -s 53 -d 1340 -r 512000.000000 -D 0.320000 -o 325.9deg -l 0.300093 -S UP l -t * -s 53 -d 1323 -r 512000.000000 -D 0.160000 -o 309.4deg -l 0.159009 -S UP l -t * -s 53 -d 588 -r 512000.000000 -D 0.160000 -o 291.6deg -l 0.152603 -S UP l -t * -s 53 -d 145 -r 512000.000000 -D 0.160000 -o 36.2deg -l 0.778068 -S UP l -t * -s 53 -d 589 -r 512000.000000 -D 0.640000 -o 320.1deg -l 0.605527 -S UP l -t * -s 53 -d 1828 -r 512000.000000 -D 0.160000 -o 281.2deg -l 0.145444 -S UP l -t * -s 53 -d 218 -r 512000.000000 -D 0.160000 -o 298.8deg -l 0.263788 -S UP l -t * -s 53 -d 587 -r 512000.000000 -D 0.160000 -o 301.0deg -l 0.173441 -S UP l -t * -s 53 -d 1826 -r 512000.000000 -D 0.160000 -o 179.9deg -l 0.408932 -S UP l -t * -s 53 -d 1608 -r 512000.000000 -D 0.160000 -o 189.3deg -l 0.420978 -S UP l -t * -s 52 -d 132 -r 512000.000000 -D 0.005000 -o 233.3deg -l 0.008598 -S UP l -t * -s 50 -d 1194 -r 512000.000000 -D 0.005000 -o 272.5deg -l 0.027401 -S UP l -t * -s 49 -d 117 -r 512000.000000 -D 0.040000 -o 21.7deg -l 0.047313 -S UP l -t * -s 49 -d 120 -r 512000.000000 -D 0.040000 -o 202.7deg -l 0.082205 -S UP l -t * -s 48 -d 117 -r 512000.000000 -D 0.005000 -o 202.5deg -l 0.012361 -S UP l -t * -s 47 -d 1434 -r 512000.000000 -D 0.160000 -o 104.2deg -l 0.144057 -S UP l -t * -s 47 -d 1545 -r 512000.000000 -D 0.160000 -o 272.0deg -l 0.239783 -S UP l -t * -s 46 -d 113 -r 512000.000000 -D 0.005000 -o 84.6deg -l 0.022203 -S UP l -t * -s 45 -d 113 -r 512000.000000 -D 0.005000 -o 98.4deg -l 0.005612 -S UP l -t * -s 44 -d 45 -r 512000.000000 -D 0.005000 -o 107.7deg -l 0.081271 -S UP l -t * -s 44 -d 113 -r 512000.000000 -D 0.005000 -o 100.4deg -l 0.037033 -S UP l -t * -s 44 -d 1664 -r 512000.000000 -D 0.005000 -o 346.0deg -l 0.004812 -S UP l -t * -s 43 -d 113 -r 512000.000000 -D 0.005000 -o 89.0deg -l 0.048413 -S UP l -t * -s 43 -d 1710 -r 512000.000000 -D 0.005000 -o 269.4deg -l 0.008728 -S UP l -t * -s 42 -d 1545 -r 512000.000000 -D 0.080000 -o 238.0deg -l 0.082302 -S UP l -t * -s 40 -d 1287 -r 512000.000000 -D 0.040000 -o 94.2deg -l 0.449724 -S UP l -t * -s 40 -d 94 -r 512000.000000 -D 0.120000 -o 250.5deg -l 0.119948 -S UP l -t * -s 40 -d 93 -r 512000.000000 -D 0.120000 -o 258.4deg -l 0.140799 -S UP l -t * -s 40 -d 92 -r 512000.000000 -D 0.120000 -o 266.5deg -l 0.122556 -S UP l -t * -s 40 -d 84 -r 512000.000000 -D 0.120000 -o 6.6deg -l 0.101242 -S UP l -t * -s 40 -d 79 -r 512000.000000 -D 0.120000 -o 261.7deg -l 0.414285 -S UP l -t * -s 39 -d 88 -r 512000.000000 -D 0.120000 -o 262.9deg -l 0.135949 -S UP l -t * -s 39 -d 87 -r 512000.000000 -D 0.120000 -o 290.6deg -l 0.109675 -S UP l -t * -s 39 -d 86 -r 512000.000000 -D 0.120000 -o 274.9deg -l 0.116073 -S UP l -t * -s 39 -d 85 -r 512000.000000 -D 0.120000 -o 282.6deg -l 0.145289 -S UP l -t * -s 39 -d 84 -r 512000.000000 -D 0.120000 -o 263.0deg -l 0.073228 -S UP l -t * -s 38 -d 82 -r 512000.000000 -D 0.180000 -o 279.1deg -l 0.203771 -S UP l -t * -s 38 -d 81 -r 512000.000000 -D 0.120000 -o 285.2deg -l 0.354314 -S UP l -t * -s 38 -d 80 -r 512000.000000 -D 0.120000 -o 251.8deg -l 0.393083 -S UP l -t * -s 38 -d 79 -r 512000.000000 -D 0.120000 -o 240.7deg -l 0.270624 -S UP l -t * -s 38 -d 78 -r 512000.000000 -D 0.120000 -o 267.1deg -l 0.159989 -S UP l -t * -s 37 -d 76 -r 512000.000000 -D 0.005000 -o 54.1deg -l 0.001958 -S UP l -t * -s 36 -d 74 -r 512000.000000 -D 0.320000 -o 136.9deg -l 0.306469 -S UP l -t * -s 35 -d 74 -r 512000.000000 -D 0.080000 -o 141.0deg -l 0.076910 -S UP l -t * -s 34 -d 1280 -r 512000.000000 -D 0.240000 -o 149.8deg -l 0.118439 -S UP l -t * -s 34 -d 1514 -r 512000.000000 -D 0.005000 -o 155.6deg -l 0.015806 -S UP l -t * -s 33 -d 1116 -r 512000.000000 -D 0.005000 -o 57.6deg -l 0.003530 -S UP l -t * -s 33 -d 560 -r 512000.000000 -D 0.005000 -o 43.1deg -l 0.000089 -S UP l -t * -s 32 -d 1247 -r 512000.000000 -D 0.005000 -o 235.0deg -l 0.030578 -S UP l -t * -s 32 -d 66 -r 512000.000000 -D 0.005000 -o 54.9deg -l 0.009067 -S UP l -t * -s 31 -d 1356 -r 512000.000000 -D 0.160000 -o 311.2deg -l 0.155149 -S UP l -t * -s 30 -d 1356 -r 512000.000000 -D 0.005000 -o 303.6deg -l 0.003820 -S UP l -t * -s 29 -d 1356 -r 512000.000000 -D 0.160000 -o 331.9deg -l 0.300906 -S UP l -t * -s 27 -d 1356 -r 512000.000000 -D 0.160000 -o 302.7deg -l 0.143430 -S UP l -t * -s 26 -d 1356 -r 512000.000000 -D 0.005000 -o 228.9deg -l 0.514653 -S UP l -t * -s 26 -d 1226 -r 512000.000000 -D 0.080000 -o 127.9deg -l 0.087056 -S UP l -t * -s 26 -d 1224 -r 512000.000000 -D 0.320000 -o 138.4deg -l 0.292734 -S UP l -t * -s 26 -d 638 -r 512000.000000 -D 0.055000 -o 108.3deg -l 0.050560 -S UP l -t * -s 26 -d 637 -r 512000.000000 -D 0.080000 -o 140.0deg -l 0.053706 -S UP l -t * -s 26 -d 1014 -r 512000.000000 -D 0.040000 -o 124.8deg -l 0.028895 -S UP l -t * -s 26 -d 902 -r 512000.000000 -D 0.320000 -o 26.7deg -l 0.565010 -S UP l -t * -s 25 -d 62 -r 512000.000000 -D 0.160000 -o 29.0deg -l 0.148109 -S UP l -t * -s 25 -d 61 -r 512000.000000 -D 0.160000 -o 8.9deg -l 0.151194 -S UP l -t * -s 25 -d 1112 -r 512000.000000 -D 0.160000 -o 26.3deg -l 0.233949 -S UP l -t * -s 25 -d 60 -r 512000.000000 -D 0.040000 -o 13.9deg -l 0.576287 -S UP l -t * -s 25 -d 59 -r 512000.000000 -D 0.040000 -o 199.4deg -l 0.699464 -S UP l -t * -s 24 -d 1263 -r 512000.000000 -D 0.005000 -o 39.2deg -l 0.002052 -S UP l -t * -s 24 -d 553 -r 512000.000000 -D 0.005000 -o 18.6deg -l 0.009566 -S UP l -t * -s 24 -d 552 -r 512000.000000 -D 0.005000 -o 358.1deg -l 0.001771 -S UP l -t * -s 24 -d 551 -r 512000.000000 -D 0.320000 -o 198.8deg -l 0.293143 -S UP l -t * -s 23 -d 57 -r 512000.000000 -D 0.150000 -o 239.4deg -l 0.141076 -S UP l -t * -s 22 -d 1333 -r 512000.000000 -D 0.160000 -o 170.0deg -l 0.244566 -S UP l -t * -s 22 -d 1067 -r 512000.000000 -D 0.160000 -o 78.8deg -l 1.197788 -S UP l -t * -s 22 -d 1827 -r 512000.000000 -D 0.160000 -o 290.7deg -l 0.144126 -S UP l -t * -s 22 -d 1608 -r 512000.000000 -D 0.160000 -o 329.1deg -l 0.295613 -S UP l -t * -s 22 -d 1826 -r 512000.000000 -D 0.160000 -o 341.0deg -l 0.263328 -S UP l -t * -s 22 -d 53 -r 512000.000000 -D 0.160000 -o 352.0deg -l 0.773387 -S UP l -t * -s 20 -d 1287 -r 512000.000000 -D 0.005000 -o 270.3deg -l 0.489819 -S UP l -t * -s 20 -d 50 -r 512000.000000 -D 0.005000 -o 260.5deg -l 0.090777 -S UP l -t * -s 20 -d 1194 -r 512000.000000 -D 0.005000 -o 265.4deg -l 0.229369 -S UP l -t * -s 19 -d 1690 -r 512000.000000 -D 0.160000 -o 224.1deg -l 0.464963 -S UP l -t * -s 19 -d 1310 -r 512000.000000 -D 0.160000 -o 246.3deg -l 0.223994 -S UP l -t * -s 19 -d 303 -r 512000.000000 -D 0.160000 -o 238.5deg -l 0.160433 -S UP l -t * -s 19 -d 944 -r 512000.000000 -D 0.030000 -o 223.2deg -l 0.038974 -S UP l -t * -s 19 -d 945 -r 512000.000000 -D 0.160000 -o 249.9deg -l 0.149460 -S UP l -t * -s 19 -d 185 -r 512000.000000 -D 0.160000 -o 231.1deg -l 0.647653 -S UP l -t * -s 19 -d 1825 -r 512000.000000 -D 0.160000 -o 232.4deg -l 0.265353 -S UP l -t * -s 19 -d 1800 -r 512000.000000 -D 0.160000 -o 240.1deg -l 0.184430 -S UP l -t * -s 19 -d 289 -r 512000.000000 -D 0.160000 -o 212.0deg -l 0.213704 -S UP l -t * -s 19 -d 353 -r 512000.000000 -D 0.160000 -o 224.4deg -l 0.723609 -S UP l -t * -s 19 -d 1824 -r 512000.000000 -D 0.160000 -o 216.7deg -l 0.153846 -S UP l -t * -s 19 -d 474 -r 512000.000000 -D 0.240000 -o 2.9deg -l 0.260350 -S UP l -t * -s 19 -d 1596 -r 512000.000000 -D 0.240000 -o 35.1deg -l 0.818640 -S UP l -t * -s 18 -d 47 -r 512000.000000 -D 0.080000 -o 247.0deg -l 0.082285 -S UP l -t * -s 17 -d 47 -r 512000.000000 -D 0.080000 -o 263.2deg -l 0.081753 -S UP l -t * -s 16 -d 1300 -r 512000.000000 -D 0.040000 -o 100.0deg -l 0.034325 -S UP l -t * -s 16 -d 1707 -r 512000.000000 -D 0.040000 -o 84.5deg -l 0.039538 -S UP l -t * -s 16 -d 47 -r 512000.000000 -D 0.080000 -o 272.7deg -l 0.088421 -S UP l -t * -s 15 -d 42 -r 512000.000000 -D 0.040000 -o 235.3deg -l 0.019131 -S UP l -t * -s 13 -d 1596 -r 512000.000000 -D 0.240000 -o 83.6deg -l 0.805185 -S UP l -t * -s 13 -d 40 -r 512000.000000 -D 0.120000 -o 252.9deg -l 0.526946 -S UP l -t * -s 13 -d 39 -r 512000.000000 -D 0.120000 -o 276.7deg -l 0.291973 -S UP l -t * -s 13 -d 38 -r 512000.000000 -D 0.005000 -o 264.5deg -l 0.689390 -S UP l -t * -s 11 -d 33 -r 512000.000000 -D 0.160000 -o 50.3deg -l 0.154737 -S UP l -t * -s 10 -d 952 -r 512000.000000 -D 0.005000 -o 51.9deg -l 0.008523 -S UP l -t * -s 10 -d 143 -r 512000.000000 -D 0.080000 -o 57.9deg -l 0.154564 -S UP l -t * -s 10 -d 644 -r 512000.000000 -D 0.160000 -o 231.0deg -l 0.279983 -S UP l -t * -s 9 -d 29 -r 512000.000000 -D 0.320000 -o 329.2deg -l 0.269027 -S UP l -t * -s 8 -d 29 -r 512000.000000 -D 0.320000 -o 342.7deg -l 0.273750 -S UP l -t * -s 7 -d 1112 -r 512000.000000 -D 0.005000 -o 227.9deg -l 0.011993 -S UP l -t * -s 6 -d 1112 -r 512000.000000 -D 0.005000 -o 178.8deg -l 0.002475 -S UP l -t * -s 5 -d 24 -r 512000.000000 -D 0.005000 -o 161.7deg -l 0.005512 -S UP l -t * -s 4 -d 398 -r 512000.000000 -D 0.120000 -o 274.4deg -l 0.361681 -S UP l -t * -s 3 -d 1430 -r 512000.000000 -D 0.005000 -o 272.2deg -l 0.289284 -S UP l -t * -s 3 -d 21 -r 512000.000000 -D 0.640000 -o 228.7deg -l 0.599736 -S UP l -t * -s 3 -d 4 -r 512000.000000 -D 0.005000 -o 272.6deg -l 0.413405 -S UP l -t * -s 3 -d 20 -r 512000.000000 -D 0.120000 -o 266.1deg -l 0.557107 -S UP l -t * -s 3 -d 19 -r 512000.000000 -D 0.080000 -o 240.7deg -l 0.854189 -S UP l -t * -s 3 -d 22 -r 512000.000000 -D 0.320000 -o 69.9deg -l 1.162986 -S UP l -t * -s 2 -d 1430 -r 512000.000000 -D 0.005000 -o 142.7deg -l 0.210820 -S UP l -t * -s 2 -d 4 -r 512000.000000 -D 0.005000 -o 163.9deg -l 0.146833 -S UP l -t * -s 2 -d 13 -r 512000.000000 -D 0.120000 -o 262.1deg -l 0.515905 -S UP l -t * -s 2 -d 1115 -r 512000.000000 -D 0.160000 -o 264.2deg -l 0.145911 -S UP l -t * -s 2 -d 474 -r 512000.000000 -D 0.160000 -o 211.2deg -l 0.324007 -S UP l -t * -s 2 -d 1104 -r 512000.000000 -D 0.160000 -o 43.6deg -l 0.433526 -S UP l -t * -s 2 -d 1594 -r 512000.000000 -D 0.240000 -o 51.2deg -l 0.546074 -S UP l -t * -s 2 -d 3 -r 512000.000000 -D 0.005000 -o 114.6deg -l 0.544618 -S UP l -t * -s 1 -d 11 -r 512000.000000 -D 0.160000 -o 49.5deg -l 0.180636 -S UP l -t * -s 1 -d 10 -r 512000.000000 -D 0.160000 -o 229.1deg -l 0.209840 -S UP nam-1.15/ex/mbone96.nam0000664000076400007660000053216006610761042013475 0ustar tomhnsnamn -t * -s 1 -S UP -v circle -c black n -t * -s 2 -S UP -v circle -c black n -t * -s 3 -S UP -v circle -c black n -t * -s 4 -S UP -v circle -c black n -t * -s 5 -S UP -v circle -c black n -t * -s 6 -S UP -v circle -c black n -t * -s 7 -S UP -v circle -c black n -t * -s 8 -S UP -v circle -c black n -t * -s 9 -S UP -v circle -c black n -t * -s 10 -S UP -v circle -c black n -t * -s 11 -S UP -v circle -c black n -t * -s 13 -S UP -v circle -c black n -t * -s 15 -S UP -v circle -c black n -t * -s 16 -S UP -v circle -c black n -t * -s 17 -S UP -v circle -c black n -t * -s 18 -S UP -v circle -c black n -t * -s 19 -S UP -v circle -c black n -t * -s 20 -S UP -v circle -c black n -t * -s 21 -S UP -v circle -c black n -t * -s 22 -S UP -v circle -c black n -t * -s 23 -S UP -v circle -c black n -t * -s 24 -S UP -v circle -c black n -t * -s 25 -S UP -v circle -c black n -t * -s 26 -S UP -v circle -c black n -t * -s 27 -S UP -v circle -c black n -t * -s 29 -S UP -v circle -c black n -t * -s 30 -S UP -v circle -c black n -t * -s 31 -S UP -v circle -c black n -t * -s 32 -S UP -v circle -c black n -t * -s 33 -S UP -v circle -c black n -t * -s 34 -S UP -v circle -c black n -t * -s 35 -S UP -v circle -c black n -t * -s 36 -S UP -v circle -c black n -t * -s 37 -S UP -v circle -c black n -t * -s 38 -S UP -v circle -c black n -t * -s 39 -S UP -v circle -c black n -t * -s 40 -S UP -v circle -c black n -t * -s 42 -S UP -v circle -c black n -t * -s 43 -S UP -v circle -c black n -t * -s 44 -S UP -v circle -c black n -t * -s 45 -S UP -v circle -c black n -t * -s 46 -S UP -v circle -c black n -t * -s 47 -S UP -v circle -c black n -t * -s 48 -S UP -v circle -c black n -t * -s 49 -S UP -v circle -c black n -t * -s 50 -S UP -v circle -c black n -t * -s 52 -S UP -v circle -c black n -t * -s 53 -S UP -v circle -c black n -t * -s 54 -S UP -v circle -c black n -t * -s 55 -S UP -v circle -c black n -t * -s 56 -S UP -v circle -c black n -t * -s 57 -S UP -v circle -c black n -t * -s 58 -S UP -v circle -c black n -t * -s 59 -S UP -v circle -c black n -t * -s 60 -S UP -v circle -c black n -t * -s 61 -S UP -v circle -c black n -t * -s 62 -S UP -v circle -c black n -t * -s 63 -S UP -v circle -c black n -t * -s 64 -S UP -v circle -c black n -t * -s 65 -S UP -v circle -c black n -t * -s 66 -S UP -v circle -c black n -t * -s 67 -S UP -v circle -c black n -t * -s 68 -S UP -v circle -c black n -t * -s 69 -S UP -v circle -c black n -t * -s 70 -S UP -v circle -c black n -t * -s 71 -S UP -v circle -c black n -t * -s 72 -S UP -v circle -c black n -t * -s 73 -S UP -v circle -c black n -t * -s 74 -S UP -v circle -c black n -t * -s 75 -S UP -v circle -c black n -t * -s 76 -S UP -v circle -c black n -t * -s 77 -S UP -v circle -c black n -t * -s 78 -S UP -v circle -c black n -t * -s 79 -S UP -v circle -c black n -t * -s 80 -S UP -v circle -c black n -t * -s 81 -S UP -v circle -c black n -t * -s 82 -S UP -v circle -c black n -t * -s 83 -S UP -v circle -c black n -t * -s 84 -S UP -v circle -c black n -t * -s 85 -S UP -v circle -c black n -t * -s 86 -S UP -v circle -c black n -t * -s 87 -S UP -v circle -c black n -t * -s 88 -S UP -v circle -c black n -t * -s 89 -S UP -v circle -c black n -t * -s 90 -S UP -v circle -c black n -t * -s 91 -S UP -v circle -c black n -t * -s 92 -S UP -v circle -c black n -t * -s 93 -S UP -v circle -c black n -t * -s 94 -S UP -v circle -c black n -t * -s 95 -S UP -v circle -c black n -t * -s 96 -S UP -v circle -c black n -t * -s 97 -S UP -v circle -c black n -t * -s 98 -S UP -v circle -c black n -t * -s 99 -S UP -v circle -c black n -t * -s 100 -S UP -v circle -c black n -t * -s 101 -S UP -v circle -c black n -t * -s 102 -S UP -v circle -c black n -t * -s 103 -S UP -v circle -c black n -t * -s 104 -S UP -v circle -c black n -t * -s 105 -S UP -v circle -c black n -t * -s 106 -S UP -v circle -c black n -t * -s 107 -S UP -v circle -c black n -t * -s 108 -S UP -v circle -c black n -t * -s 109 -S UP -v circle -c black n -t * -s 110 -S UP -v circle -c black n -t * -s 111 -S UP -v circle -c black n -t * -s 112 -S UP -v circle -c black n -t * -s 113 -S UP -v circle -c black n -t * -s 114 -S UP -v circle -c black n -t * -s 115 -S UP -v circle -c black n -t * -s 116 -S UP -v circle -c black n -t * -s 117 -S UP -v circle -c black n -t * -s 118 -S UP -v circle -c black n -t * -s 119 -S UP -v circle -c black n -t * -s 120 -S UP -v circle -c black n -t * -s 121 -S UP -v circle -c black n -t * -s 122 -S UP -v circle -c black n -t * -s 123 -S UP -v circle -c black n -t * -s 125 -S UP -v circle -c black n -t * -s 126 -S UP -v circle -c black n -t * -s 127 -S UP -v circle -c black n -t * -s 128 -S UP -v circle -c black n -t * -s 129 -S UP -v circle -c black n -t * -s 130 -S UP -v circle -c black n -t * -s 131 -S UP -v circle -c black n -t * -s 132 -S UP -v circle -c black n -t * -s 133 -S UP -v circle -c black n -t * -s 134 -S UP -v circle -c black n -t * -s 135 -S UP -v circle -c black n -t * -s 136 -S UP -v circle -c black n -t * -s 137 -S UP -v circle -c black n -t * -s 138 -S UP -v circle -c black n -t * -s 139 -S UP -v circle -c black n -t * -s 141 -S UP -v circle -c black n -t * -s 142 -S UP -v circle -c black n -t * -s 143 -S UP -v circle -c black n -t * -s 144 -S UP -v circle -c black n -t * -s 145 -S UP -v circle -c black n -t * -s 146 -S UP -v circle -c black n -t * -s 148 -S UP -v circle -c black n -t * -s 149 -S UP -v circle -c black n -t * -s 150 -S UP -v circle -c black n -t * -s 152 -S UP -v circle -c black n -t * -s 153 -S UP -v circle -c black n -t * -s 154 -S UP -v circle -c black n -t * -s 155 -S UP -v circle -c black n -t * -s 156 -S UP -v circle -c black n -t * -s 157 -S UP -v circle -c black n -t * -s 158 -S UP -v circle -c black n -t * -s 159 -S UP -v circle -c black n -t * -s 160 -S UP -v circle -c black n -t * -s 161 -S UP -v circle -c black n -t * -s 162 -S UP -v circle -c black n -t * -s 163 -S UP -v circle -c black n -t * -s 164 -S UP -v circle -c black n -t * -s 165 -S UP -v circle -c black n -t * -s 166 -S UP -v circle -c black n -t * -s 167 -S UP -v circle -c black n -t * -s 168 -S UP -v circle -c black n -t * -s 169 -S UP -v circle -c black n -t * -s 170 -S UP -v circle -c black n -t * -s 171 -S UP -v circle -c black n -t * -s 172 -S UP -v circle -c black n -t * -s 173 -S UP -v circle -c black n -t * -s 174 -S UP -v circle -c black n -t * -s 175 -S UP -v circle -c black n -t * -s 176 -S UP -v circle -c black n -t * -s 177 -S UP -v circle -c black n -t * -s 178 -S UP -v circle -c black n -t * -s 179 -S UP -v circle -c black n -t * -s 180 -S UP -v circle -c black n -t * -s 181 -S UP -v circle -c black n -t * -s 182 -S UP -v circle -c black n -t * -s 183 -S UP -v circle -c black n -t * -s 184 -S UP -v circle -c black n -t * -s 185 -S UP -v circle -c black n -t * -s 187 -S UP -v circle -c black n -t * -s 188 -S UP -v circle -c black n -t * -s 189 -S UP -v circle -c black n -t * -s 190 -S UP -v circle -c black n -t * -s 191 -S UP -v circle -c black n -t * -s 193 -S UP -v circle -c black n -t * -s 194 -S UP -v circle -c black n -t * -s 195 -S UP -v circle -c black n -t * -s 196 -S UP -v circle -c black n -t * -s 197 -S UP -v circle -c black n -t * -s 198 -S UP -v circle -c black n -t * -s 199 -S UP -v circle -c black n -t * -s 200 -S UP -v circle -c black n -t * -s 201 -S UP -v circle -c black n -t * -s 202 -S UP -v circle -c black n -t * -s 203 -S UP -v circle -c black n -t * -s 204 -S UP -v circle -c black n -t * -s 205 -S UP -v circle -c black n -t * -s 206 -S UP -v circle -c black n -t * -s 207 -S UP -v circle -c black n -t * -s 208 -S UP -v circle -c black n -t * -s 209 -S UP -v circle -c black n -t * -s 210 -S UP -v circle -c black n -t * -s 211 -S UP -v circle -c black n -t * -s 212 -S UP -v circle -c black n -t * -s 213 -S UP -v circle -c black n -t * -s 214 -S UP -v circle -c black n -t * -s 215 -S UP -v circle -c black n -t * -s 217 -S UP -v circle -c black n -t * -s 218 -S UP -v circle -c black n -t * -s 219 -S UP -v circle -c black n -t * -s 220 -S UP -v circle -c black n -t * -s 221 -S UP -v circle -c black n -t * -s 222 -S UP -v circle -c black n -t * -s 223 -S UP -v circle -c black n -t * -s 224 -S UP -v circle -c black n -t * -s 225 -S UP -v circle -c black n -t * -s 226 -S UP -v circle -c black n -t * -s 227 -S UP -v circle -c black n -t * -s 228 -S UP -v circle -c black n -t * -s 229 -S UP -v circle -c black n -t * -s 230 -S UP -v circle -c black n -t * -s 231 -S UP -v circle -c black n -t * -s 232 -S UP -v circle -c black n -t * -s 233 -S UP -v circle -c black n -t * -s 234 -S UP -v circle -c black n -t * -s 235 -S UP -v circle -c black n -t * -s 236 -S UP -v circle -c black n -t * -s 237 -S UP -v circle -c black n -t * -s 238 -S UP -v circle -c black n -t * -s 239 -S UP -v circle -c black n -t * -s 240 -S UP -v circle -c black n -t * -s 241 -S UP -v circle -c black n -t * -s 242 -S UP -v circle -c black n -t * -s 243 -S UP -v circle -c black n -t * -s 244 -S UP -v circle -c black n -t * -s 245 -S UP -v circle -c black n -t * -s 246 -S UP -v circle -c black n -t * -s 247 -S UP -v circle -c black n -t * -s 248 -S UP -v circle -c black n -t * -s 249 -S UP -v circle -c black n -t * -s 250 -S UP -v circle -c black n -t * -s 251 -S UP -v circle -c black n -t * -s 252 -S UP -v circle -c black n -t * -s 253 -S UP -v circle -c black n -t * -s 254 -S UP -v circle -c black n -t * -s 255 -S UP -v circle -c black n -t * -s 256 -S UP -v circle -c black n -t * -s 257 -S UP -v circle -c black n -t * -s 258 -S UP -v circle -c black n -t * -s 259 -S UP -v circle -c black n -t * -s 260 -S UP -v circle -c black n -t * -s 261 -S UP -v circle -c black n -t * -s 262 -S UP -v circle -c black n -t * -s 263 -S UP -v circle -c black n -t * -s 264 -S UP -v circle -c black n -t * -s 265 -S UP -v circle -c black n -t * -s 267 -S UP -v circle -c black n -t * -s 268 -S UP -v circle -c black n -t * -s 269 -S UP -v circle -c black n -t * -s 270 -S UP -v circle -c black n -t * -s 271 -S UP -v circle -c black n -t * -s 272 -S UP -v circle -c black n -t * -s 273 -S UP -v circle -c black n -t * -s 274 -S UP -v circle -c black n -t * -s 275 -S UP -v circle -c black n -t * -s 276 -S UP -v circle -c black n -t * -s 277 -S UP -v circle -c black n -t * -s 278 -S UP -v circle -c black n -t * -s 279 -S UP -v circle -c black n -t * -s 280 -S UP -v circle -c black n -t * -s 281 -S UP -v circle -c black n -t * -s 282 -S UP -v circle -c black n -t * -s 283 -S UP -v circle -c black n -t * -s 284 -S UP -v circle -c black n -t * -s 285 -S UP -v circle -c black n -t * -s 286 -S UP -v circle -c black n -t * -s 287 -S UP -v circle -c black n -t * -s 288 -S UP -v circle -c black n -t * -s 289 -S UP -v circle -c black n -t * -s 290 -S UP -v circle -c black n -t * -s 291 -S UP -v circle -c black n -t * -s 292 -S UP -v circle -c black n -t * -s 293 -S UP -v circle -c black n -t * -s 294 -S UP -v circle -c black n -t * -s 295 -S UP -v circle -c black n -t * -s 296 -S UP -v circle -c black n -t * -s 297 -S UP -v circle -c black n -t * -s 298 -S UP -v circle -c black n -t * -s 299 -S UP -v circle -c black n -t * -s 300 -S UP -v circle -c black n -t * -s 301 -S UP -v circle -c black n -t * -s 303 -S UP -v circle -c black n -t * -s 304 -S UP -v circle -c black n -t * -s 305 -S UP -v circle -c black n -t * -s 306 -S UP -v circle -c black n -t * -s 307 -S UP -v circle -c black n -t * -s 308 -S UP -v circle -c black n -t * -s 309 -S UP -v circle -c black n -t * -s 310 -S UP -v circle -c black n -t * -s 311 -S UP -v circle -c black n -t * -s 312 -S UP -v circle -c black n -t * -s 313 -S UP -v circle -c black n -t * -s 314 -S UP -v circle -c black n -t * -s 316 -S UP -v circle -c black n -t * -s 318 -S UP -v circle -c black n -t * -s 320 -S UP -v circle -c black n -t * -s 321 -S UP -v circle -c black n -t * -s 322 -S UP -v circle -c black n -t * -s 323 -S UP -v circle -c black n -t * -s 324 -S UP -v circle -c black n -t * -s 325 -S UP -v circle -c black n -t * -s 326 -S UP -v circle -c black n -t * -s 327 -S UP -v circle -c black n -t * -s 328 -S UP -v circle -c black n -t * -s 329 -S UP -v circle -c black n -t * -s 330 -S UP -v circle -c black n -t * -s 331 -S UP -v circle -c black n -t * -s 332 -S UP -v circle -c black n -t * -s 333 -S UP -v circle -c black n -t * -s 334 -S UP -v circle -c black n -t * -s 335 -S UP -v circle -c black n -t * -s 336 -S UP -v circle -c black n -t * -s 337 -S UP -v circle -c black n -t * -s 338 -S UP -v circle -c black n -t * -s 339 -S UP -v circle -c black n -t * -s 340 -S UP -v circle -c black n -t * -s 341 -S UP -v circle -c black n -t * -s 342 -S UP -v circle -c black n -t * -s 343 -S UP -v circle -c black n -t * -s 344 -S UP -v circle -c black n -t * -s 345 -S UP -v circle -c black n -t * -s 346 -S UP -v circle -c black n -t * -s 347 -S UP -v circle -c black n -t * -s 348 -S UP -v circle -c black n -t * -s 349 -S UP -v circle -c black n -t * -s 350 -S UP -v circle -c black n -t * -s 351 -S UP -v circle -c black n -t * -s 352 -S UP -v circle -c black n -t * -s 353 -S UP -v circle -c black n -t * -s 354 -S UP -v circle -c black n -t * -s 355 -S UP -v circle -c black n -t * -s 356 -S UP -v circle -c black n -t * -s 357 -S UP -v circle -c black n -t * -s 358 -S UP -v circle -c black n -t * -s 359 -S UP -v circle -c black n -t * -s 361 -S UP -v circle -c black n -t * -s 362 -S UP -v circle -c black n -t * -s 363 -S UP -v circle -c black n -t * -s 364 -S UP -v circle -c black n -t * -s 365 -S UP -v circle -c black n -t * -s 366 -S UP -v circle -c black n -t * -s 367 -S UP -v circle -c black n -t * -s 368 -S UP -v circle -c black n -t * -s 369 -S UP -v circle -c black n -t * -s 370 -S UP -v circle -c black n -t * -s 371 -S UP -v circle -c black n -t * -s 372 -S UP -v circle -c black n -t * -s 373 -S UP -v circle -c black n -t * -s 374 -S UP -v circle -c black n -t * -s 375 -S UP -v circle -c black n -t * -s 377 -S UP -v circle -c black n -t * -s 378 -S UP -v circle -c black n -t * -s 379 -S UP -v circle -c black n -t * -s 380 -S UP -v circle -c black n -t * -s 381 -S UP -v circle -c black n -t * -s 382 -S UP -v circle -c black n -t * -s 383 -S UP -v circle -c black n -t * -s 384 -S UP -v circle -c black n -t * -s 385 -S UP -v circle -c black n -t * -s 386 -S UP -v circle -c black n -t * -s 387 -S UP -v circle -c black n -t * -s 388 -S UP -v circle -c black n -t * -s 389 -S UP -v circle -c black n -t * -s 390 -S UP -v circle -c black n -t * -s 391 -S UP -v circle -c black n -t * -s 392 -S UP -v circle -c black n -t * -s 393 -S UP -v circle -c black n -t * -s 394 -S UP -v circle -c black n -t * -s 395 -S UP -v circle -c black n -t * -s 396 -S UP -v circle -c black n -t * -s 398 -S UP -v circle -c black n -t * -s 399 -S UP -v circle -c black n -t * -s 400 -S UP -v circle -c black n -t * -s 401 -S UP -v circle -c black n -t * -s 402 -S UP -v circle -c black n -t * -s 404 -S UP -v circle -c black n -t * -s 405 -S UP -v circle -c black n -t * -s 406 -S UP -v circle -c black n -t * -s 407 -S UP -v circle -c black n -t * -s 408 -S UP -v circle -c black n -t * -s 409 -S UP -v circle -c black n -t * -s 410 -S UP -v circle -c black n -t * -s 411 -S UP -v circle -c black n -t * -s 412 -S UP -v circle -c black n -t * -s 413 -S UP -v circle -c black n -t * -s 414 -S UP -v circle -c black n -t * -s 415 -S UP -v circle -c black n -t * -s 416 -S UP -v circle -c black n -t * -s 417 -S UP -v circle -c black n -t * -s 418 -S UP -v circle -c black n -t * -s 419 -S UP -v circle -c black n -t * -s 421 -S UP -v circle -c black n -t * -s 422 -S UP -v circle -c black n -t * -s 423 -S UP -v circle -c black n -t * -s 424 -S UP -v circle -c black n -t * -s 425 -S UP -v circle -c black n -t * -s 426 -S UP -v circle -c black n -t * -s 427 -S UP -v circle -c black n -t * -s 428 -S UP -v circle -c black n -t * -s 429 -S UP -v circle -c black n -t * -s 430 -S UP -v circle -c black n -t * -s 431 -S UP -v circle -c black n -t * -s 432 -S UP -v circle -c black n -t * -s 433 -S UP -v circle -c black n -t * -s 434 -S UP -v circle -c black n -t * -s 435 -S UP -v circle -c black n -t * -s 436 -S UP -v circle -c black n -t * -s 437 -S UP -v circle -c black n -t * -s 439 -S UP -v circle -c black n -t * -s 440 -S UP -v circle -c black n -t * -s 441 -S UP -v circle -c black n -t * -s 442 -S UP -v circle -c black n -t * -s 443 -S UP -v circle -c black n -t * -s 444 -S UP -v circle -c black n -t * -s 447 -S UP -v circle -c black n -t * -s 448 -S UP -v circle -c black n -t * -s 449 -S UP -v circle -c black n -t * -s 450 -S UP -v circle -c black n -t * -s 451 -S UP -v circle -c black n -t * -s 452 -S UP -v circle -c black n -t * -s 453 -S UP -v circle -c black n -t * -s 455 -S UP -v circle -c black n -t * -s 456 -S UP -v circle -c black n -t * -s 457 -S UP -v circle -c black n -t * -s 458 -S UP -v circle -c black n -t * -s 459 -S UP -v circle -c black n -t * -s 460 -S UP -v circle -c black n -t * -s 462 -S UP -v circle -c black n -t * -s 463 -S UP -v circle -c black n -t * -s 464 -S UP -v circle -c black n -t * -s 465 -S UP -v circle -c black n -t * -s 466 -S UP -v circle -c black n -t * -s 467 -S UP -v circle -c black n -t * -s 468 -S UP -v circle -c black n -t * -s 469 -S UP -v circle -c black n -t * -s 470 -S UP -v circle -c black n -t * -s 471 -S UP -v circle -c black n -t * -s 472 -S UP -v circle -c black n -t * -s 473 -S UP -v circle -c black n -t * -s 474 -S UP -v circle -c black n -t * -s 475 -S UP -v circle -c black n -t * -s 476 -S UP -v circle -c black n -t * -s 478 -S UP -v circle -c black n -t * -s 479 -S UP -v circle -c black n -t * -s 480 -S UP -v circle -c black n -t * -s 482 -S UP -v circle -c black n -t * -s 483 -S UP -v circle -c black n -t * -s 484 -S UP -v circle -c black n -t * -s 485 -S UP -v circle -c black n -t * -s 486 -S UP -v circle -c black n -t * -s 487 -S UP -v circle -c black n -t * -s 488 -S UP -v circle -c black n -t * -s 490 -S UP -v circle -c black n -t * -s 491 -S UP -v circle -c black n -t * -s 492 -S UP -v circle -c black n -t * -s 493 -S UP -v circle -c black n -t * -s 496 -S UP -v circle -c black n -t * -s 497 -S UP -v circle -c black n -t * -s 498 -S UP -v circle -c black n -t * -s 499 -S UP -v circle -c black n -t * -s 500 -S UP -v circle -c black n -t * -s 501 -S UP -v circle -c black n -t * -s 502 -S UP -v circle -c black n -t * -s 503 -S UP -v circle -c black n -t * -s 504 -S UP -v circle -c black n -t * -s 505 -S UP -v circle -c black n -t * -s 506 -S UP -v circle -c black n -t * -s 508 -S UP -v circle -c black n -t * -s 509 -S UP -v circle -c black n -t * -s 510 -S UP -v circle -c black n -t * -s 511 -S UP -v circle -c black n -t * -s 512 -S UP -v circle -c black n -t * -s 513 -S UP -v circle -c black n -t * -s 514 -S UP -v circle -c black n -t * -s 515 -S UP -v circle -c black n -t * -s 516 -S UP -v circle -c black n -t * -s 517 -S UP -v circle -c black n -t * -s 518 -S UP -v circle -c black n -t * -s 519 -S UP -v circle -c black n -t * -s 520 -S UP -v circle -c black n -t * -s 521 -S UP -v circle -c black n -t * -s 522 -S UP -v circle -c black n -t * -s 523 -S UP -v circle -c black n -t * -s 524 -S UP -v circle -c black n -t * -s 525 -S UP -v circle -c black n -t * -s 526 -S UP -v circle -c black n -t * -s 528 -S UP -v circle -c black n -t * -s 529 -S UP -v circle -c black n -t * -s 530 -S UP -v circle -c black n -t * -s 531 -S UP -v circle -c black n -t * -s 532 -S UP -v circle -c black n -t * -s 533 -S UP -v circle -c black n -t * -s 534 -S UP -v circle -c black n -t * -s 535 -S UP -v circle -c black n -t * -s 536 -S UP -v circle -c black n -t * -s 537 -S UP -v circle -c black n -t * -s 538 -S UP -v circle -c black n -t * -s 539 -S UP -v circle -c black n -t * -s 540 -S UP -v circle -c black n -t * -s 541 -S UP -v circle -c black n -t * -s 542 -S UP -v circle -c black n -t * -s 543 -S UP -v circle -c black n -t * -s 544 -S UP -v circle -c black n -t * -s 545 -S UP -v circle -c black n -t * -s 546 -S UP -v circle -c black n -t * -s 547 -S UP -v circle -c black n -t * -s 548 -S UP -v circle -c black n -t * -s 549 -S UP -v circle -c black n -t * -s 550 -S UP -v circle -c black n -t * -s 551 -S UP -v circle -c black n -t * -s 552 -S UP -v circle -c black n -t * -s 553 -S UP -v circle -c black n -t * -s 554 -S UP -v circle -c black n -t * -s 555 -S UP -v circle -c black n -t * -s 556 -S UP -v circle -c black n -t * -s 557 -S UP -v circle -c black n -t * -s 558 -S UP -v circle -c black n -t * -s 559 -S UP -v circle -c black n -t * -s 560 -S UP -v circle -c black n -t * -s 562 -S UP -v circle -c black n -t * -s 563 -S UP -v circle -c black n -t * -s 564 -S UP -v circle -c black n -t * -s 565 -S UP -v circle -c black n -t * -s 566 -S UP -v circle -c black n -t * -s 567 -S UP -v circle -c black n -t * -s 568 -S UP -v circle -c black n -t * -s 569 -S UP -v circle -c black n -t * -s 570 -S UP -v circle -c black n -t * -s 574 -S UP -v circle -c black n -t * -s 575 -S UP -v circle -c black n -t * -s 576 -S UP -v circle -c black n -t * -s 577 -S UP -v circle -c black n -t * -s 578 -S UP -v circle -c black n -t * -s 579 -S UP -v circle -c black n -t * -s 580 -S UP -v circle -c black n -t * -s 581 -S UP -v circle -c black n -t * -s 582 -S UP -v circle -c black n -t * -s 583 -S UP -v circle -c black n -t * -s 584 -S UP -v circle -c black n -t * -s 585 -S UP -v circle -c black n -t * -s 586 -S UP -v circle -c black n -t * -s 587 -S UP -v circle -c black n -t * -s 588 -S UP -v circle -c black n -t * -s 589 -S UP -v circle -c black n -t * -s 590 -S UP -v circle -c black n -t * -s 591 -S UP -v circle -c black n -t * -s 592 -S UP -v circle -c black n -t * -s 593 -S UP -v circle -c black n -t * -s 594 -S UP -v circle -c black n -t * -s 595 -S UP -v circle -c black n -t * -s 596 -S UP -v circle -c black n -t * -s 597 -S UP -v circle -c black n -t * -s 599 -S UP -v circle -c black n -t * -s 600 -S UP -v circle -c black n -t * -s 601 -S UP -v circle -c black n -t * -s 602 -S UP -v circle -c black n -t * -s 603 -S UP -v circle -c black n -t * -s 604 -S UP -v circle -c black n -t * -s 605 -S UP -v circle -c black n -t * -s 606 -S UP -v circle -c black n -t * -s 607 -S UP -v circle -c black n -t * -s 609 -S UP -v circle -c black n -t * -s 610 -S UP -v circle -c black n -t * -s 611 -S UP -v circle -c black n -t * -s 612 -S UP -v circle -c black n -t * -s 613 -S UP -v circle -c black n -t * -s 614 -S UP -v circle -c black n -t * -s 615 -S UP -v circle -c black n -t * -s 616 -S UP -v circle -c black n -t * -s 617 -S UP -v circle -c black n -t * -s 618 -S UP -v circle -c black n -t * -s 619 -S UP -v circle -c black n -t * -s 620 -S UP -v circle -c black n -t * -s 621 -S UP -v circle -c black n -t * -s 622 -S UP -v circle -c black n -t * -s 623 -S UP -v circle -c black n -t * -s 624 -S UP -v circle -c black n -t * -s 625 -S UP -v circle -c black n -t * -s 626 -S UP -v circle -c black n -t * -s 627 -S UP -v circle -c black n -t * -s 628 -S UP -v circle -c black n -t * -s 629 -S UP -v circle -c black n -t * -s 630 -S UP -v circle -c black n -t * -s 631 -S UP -v circle -c black n -t * -s 632 -S UP -v circle -c black n -t * -s 633 -S UP -v circle -c black n -t * -s 634 -S UP -v circle -c black n -t * -s 635 -S UP -v circle -c black n -t * -s 637 -S UP -v circle -c black n -t * -s 638 -S UP -v circle -c black n -t * -s 639 -S UP -v circle -c black n -t * -s 640 -S UP -v circle -c black n -t * -s 641 -S UP -v circle -c black n -t * -s 642 -S UP -v circle -c black n -t * -s 643 -S UP -v circle -c black n -t * -s 644 -S UP -v circle -c black n -t * -s 645 -S UP -v circle -c black n -t * -s 646 -S UP -v circle -c black n -t * -s 647 -S UP -v circle -c black n -t * -s 648 -S UP -v circle -c black n -t * -s 649 -S UP -v circle -c black n -t * -s 650 -S UP -v circle -c black n -t * -s 651 -S UP -v circle -c black n -t * -s 652 -S UP -v circle -c black n -t * -s 653 -S UP -v circle -c black n -t * -s 654 -S UP -v circle -c black n -t * -s 655 -S UP -v circle -c black n -t * -s 656 -S UP -v circle -c black n -t * -s 657 -S UP -v circle -c black n -t * -s 658 -S UP -v circle -c black n -t * -s 659 -S UP -v circle -c black n -t * -s 660 -S UP -v circle -c black n -t * -s 661 -S UP -v circle -c black n -t * -s 662 -S UP -v circle -c black n -t * -s 663 -S UP -v circle -c black n -t * -s 664 -S UP -v circle -c black n -t * -s 665 -S UP -v circle -c black n -t * -s 666 -S UP -v circle -c black n -t * -s 667 -S UP -v circle -c black n -t * -s 668 -S UP -v circle -c black n -t * -s 669 -S UP -v circle -c black n -t * -s 670 -S UP -v circle -c black n -t * -s 671 -S UP -v circle -c black n -t * -s 672 -S UP -v circle -c black n -t * -s 673 -S UP -v circle -c black n -t * -s 674 -S UP -v circle -c black n -t * -s 675 -S UP -v circle -c black n -t * -s 676 -S UP -v circle -c black n -t * -s 677 -S UP -v circle -c black n -t * -s 678 -S UP -v circle -c black n -t * -s 679 -S UP -v circle -c black n -t * -s 680 -S UP -v circle -c black n -t * -s 681 -S UP -v circle -c black n -t * -s 682 -S UP -v circle -c black n -t * -s 683 -S UP -v circle -c black n -t * -s 684 -S UP -v circle -c black n -t * -s 685 -S UP -v circle -c black n -t * -s 686 -S UP -v circle -c black n -t * -s 687 -S UP -v circle -c black n -t * -s 688 -S UP -v circle -c black n -t * -s 689 -S UP -v circle -c black n -t * -s 690 -S UP -v circle -c black n -t * -s 692 -S UP -v circle -c black n -t * -s 693 -S UP -v circle -c black n -t * -s 694 -S UP -v circle -c black n -t * -s 695 -S UP -v circle -c black n -t * -s 696 -S UP -v circle -c black n -t * -s 697 -S UP -v circle -c black n -t * -s 698 -S UP -v circle -c black n -t * -s 699 -S UP -v circle -c black n -t * -s 700 -S UP -v circle -c black n -t * -s 709 -S UP -v circle -c black n -t * -s 710 -S UP -v circle -c black n -t * -s 711 -S UP -v circle -c black n -t * -s 712 -S UP -v circle -c black n -t * -s 713 -S UP -v circle -c black n -t * -s 714 -S UP -v circle -c black n -t * -s 715 -S UP -v circle -c black n -t * -s 716 -S UP -v circle -c black n -t * -s 717 -S UP -v circle -c black n -t * -s 718 -S UP -v circle -c black n -t * -s 719 -S UP -v circle -c black n -t * -s 720 -S UP -v circle -c black n -t * -s 721 -S UP -v circle -c black n -t * -s 722 -S UP -v circle -c black n -t * -s 723 -S UP -v circle -c black n -t * -s 724 -S UP -v circle -c black n -t * -s 725 -S UP -v circle -c black n -t * -s 726 -S UP -v circle -c black n -t * -s 727 -S UP -v circle -c black n -t * -s 728 -S UP -v circle -c black n -t * -s 729 -S UP -v circle -c black n -t * -s 730 -S UP -v circle -c black n -t * -s 731 -S UP -v circle -c black n -t * -s 732 -S UP -v circle -c black n -t * -s 733 -S UP -v circle -c black n -t * -s 734 -S UP -v circle -c black n -t * -s 735 -S UP -v circle -c black n -t * -s 736 -S UP -v circle -c black n -t * -s 737 -S UP -v circle -c black n -t * -s 738 -S UP -v circle -c black n -t * -s 739 -S UP -v circle -c black n -t * -s 740 -S UP -v circle -c black n -t * -s 741 -S UP -v circle -c black n -t * -s 746 -S UP -v circle -c black n -t * -s 747 -S UP -v circle -c black n -t * -s 748 -S UP -v circle -c black n -t * -s 749 -S UP -v circle -c black n -t * -s 750 -S UP -v circle -c black n -t * -s 751 -S UP -v circle -c black n -t * -s 752 -S UP -v circle -c black n -t * -s 753 -S UP -v circle -c black n -t * -s 754 -S UP -v circle -c black n -t * -s 755 -S UP -v circle -c black n -t * -s 756 -S UP -v circle -c black n -t * -s 757 -S UP -v circle -c black n -t * -s 758 -S UP -v circle -c black n -t * -s 759 -S UP -v circle -c black n -t * -s 760 -S UP -v circle -c black n -t * -s 761 -S UP -v circle -c black n -t * -s 762 -S UP -v circle -c black n -t * -s 763 -S UP -v circle -c black n -t * -s 764 -S UP -v circle -c black n -t * -s 765 -S UP -v circle -c black n -t * -s 767 -S UP -v circle -c black n -t * -s 768 -S UP -v circle -c black n -t * -s 769 -S UP -v circle -c black n -t * -s 770 -S UP -v circle -c black n -t * -s 771 -S UP -v circle -c black n -t * -s 772 -S UP -v circle -c black n -t * -s 777 -S UP -v circle -c black n -t * -s 778 -S UP -v circle -c black n -t * -s 779 -S UP -v circle -c black n -t * -s 780 -S UP -v circle -c black n -t * -s 781 -S UP -v circle -c black n -t * -s 783 -S UP -v circle -c black n -t * -s 784 -S UP -v circle -c black n -t * -s 785 -S UP -v circle -c black n -t * -s 787 -S UP -v circle -c black n -t * -s 788 -S UP -v circle -c black n -t * -s 789 -S UP -v circle -c black n -t * -s 790 -S UP -v circle -c black n -t * -s 791 -S UP -v circle -c black n -t * -s 792 -S UP -v circle -c black n -t * -s 793 -S UP -v circle -c black n -t * -s 794 -S UP -v circle -c black n -t * -s 795 -S UP -v circle -c black n -t * -s 796 -S UP -v circle -c black n -t * -s 797 -S UP -v circle -c black n -t * -s 798 -S UP -v circle -c black n -t * -s 799 -S UP -v circle -c black n -t * -s 800 -S UP -v circle -c black n -t * -s 801 -S UP -v circle -c black n -t * -s 802 -S UP -v circle -c black n -t * -s 803 -S UP -v circle -c black n -t * -s 804 -S UP -v circle -c black n -t * -s 805 -S UP -v circle -c black n -t * -s 806 -S UP -v circle -c black n -t * -s 807 -S UP -v circle -c black n -t * -s 808 -S UP -v circle -c black n -t * -s 809 -S UP -v circle -c black n -t * -s 811 -S UP -v circle -c black n -t * -s 812 -S UP -v circle -c black n -t * -s 813 -S UP -v circle -c black n -t * -s 814 -S UP -v circle -c black n -t * -s 817 -S UP -v circle -c black n -t * -s 818 -S UP -v circle -c black n -t * -s 819 -S UP -v circle -c black n -t * -s 820 -S UP -v circle -c black n -t * -s 821 -S UP -v circle -c black n -t * -s 822 -S UP -v circle -c black n -t * -s 825 -S UP -v circle -c black n -t * -s 826 -S UP -v circle -c black n -t * -s 827 -S UP -v circle -c black n -t * -s 829 -S UP -v circle -c black n -t * -s 830 -S UP -v circle -c black n -t * -s 831 -S UP -v circle -c black n -t * -s 832 -S UP -v circle -c black n -t * -s 833 -S UP -v circle -c black n -t * -s 834 -S UP -v circle -c black n -t * -s 835 -S UP -v circle -c black n -t * -s 836 -S UP -v circle -c black n -t * -s 837 -S UP -v circle -c black n -t * -s 838 -S UP -v circle -c black n -t * -s 840 -S UP -v circle -c black n -t * -s 841 -S UP -v circle -c black n -t * -s 842 -S UP -v circle -c black n -t * -s 843 -S UP -v circle -c black n -t * -s 844 -S UP -v circle -c black n -t * -s 845 -S UP -v circle -c black n -t * -s 846 -S UP -v circle -c black n -t * -s 849 -S UP -v circle -c black n -t * -s 850 -S UP -v circle -c black n -t * -s 852 -S UP -v circle -c black n -t * -s 853 -S UP -v circle -c black n -t * -s 854 -S UP -v circle -c black n -t * -s 855 -S UP -v circle -c black n -t * -s 858 -S UP -v circle -c black n -t * -s 859 -S UP -v circle -c black n -t * -s 860 -S UP -v circle -c black n -t * -s 861 -S UP -v circle -c black n -t * -s 862 -S UP -v circle -c black n -t * -s 863 -S UP -v circle -c black n -t * -s 864 -S UP -v circle -c black n -t * -s 865 -S UP -v circle -c black n -t * -s 866 -S UP -v circle -c black n -t * -s 867 -S UP -v circle -c black n -t * -s 868 -S UP -v circle -c black n -t * -s 869 -S UP -v circle -c black n -t * -s 870 -S UP -v circle -c black n -t * -s 872 -S UP -v circle -c black n -t * -s 873 -S UP -v circle -c black n -t * -s 874 -S UP -v circle -c black n -t * -s 875 -S UP -v circle -c black n -t * -s 876 -S UP -v circle -c black n -t * -s 877 -S UP -v circle -c black n -t * -s 878 -S UP -v circle -c black n -t * -s 879 -S UP -v circle -c black n -t * -s 880 -S UP -v circle -c black n -t * -s 881 -S UP -v circle -c black n -t * -s 882 -S UP -v circle -c black n -t * -s 883 -S UP -v circle -c black n -t * -s 884 -S UP -v circle -c black n -t * -s 885 -S UP -v circle -c black n -t * -s 886 -S UP -v circle -c black n -t * -s 888 -S UP -v circle -c black n -t * -s 889 -S UP -v circle -c black n -t * -s 890 -S UP -v circle -c black n -t * -s 891 -S UP -v circle -c black n -t * -s 892 -S UP -v circle -c black n -t * -s 893 -S UP -v circle -c black n -t * -s 894 -S UP -v circle -c black n -t * -s 895 -S UP -v circle -c black n -t * -s 896 -S UP -v circle -c black n -t * -s 897 -S UP -v circle -c black n -t * -s 898 -S UP -v circle -c black n -t * -s 899 -S UP -v circle -c black n -t * -s 900 -S UP -v circle -c black n -t * -s 901 -S UP -v circle -c black n -t * -s 902 -S UP -v circle -c black n -t * -s 903 -S UP -v circle -c black n -t * -s 904 -S UP -v circle -c black n -t * -s 905 -S UP -v circle -c black n -t * -s 906 -S UP -v circle -c black n -t * -s 907 -S UP -v circle -c black n -t * -s 908 -S UP -v circle -c black n -t * -s 909 -S UP -v circle -c black n -t * -s 910 -S UP -v circle -c black n -t * -s 911 -S UP -v circle -c black n -t * -s 912 -S UP -v circle -c black n -t * -s 913 -S UP -v circle -c black n -t * -s 914 -S UP -v circle -c black n -t * -s 915 -S UP -v circle -c black n -t * -s 917 -S UP -v circle -c black n -t * -s 918 -S UP -v circle -c black n -t * -s 919 -S UP -v circle -c black n -t * -s 920 -S UP -v circle -c black n -t * -s 921 -S UP -v circle -c black n -t * -s 922 -S UP -v circle -c black n -t * -s 923 -S UP -v circle -c black n -t * -s 924 -S UP -v circle -c black n -t * -s 925 -S UP -v circle -c black n -t * -s 926 -S UP -v circle -c black n -t * -s 927 -S UP -v circle -c black n -t * -s 928 -S UP -v circle -c black n -t * -s 929 -S UP -v circle -c black n -t * -s 930 -S UP -v circle -c black n -t * -s 931 -S UP -v circle -c black n -t * -s 934 -S UP -v circle -c black n -t * -s 935 -S UP -v circle -c black n -t * -s 936 -S UP -v circle -c black n -t * -s 938 -S UP -v circle -c black n -t * -s 939 -S UP -v circle -c black n -t * -s 940 -S UP -v circle -c black n -t * -s 941 -S UP -v circle -c black n -t * -s 942 -S UP -v circle -c black n -t * -s 943 -S UP -v circle -c black n -t * -s 944 -S UP -v circle -c black n -t * -s 945 -S UP -v circle -c black n -t * -s 946 -S UP -v circle -c black n -t * -s 947 -S UP -v circle -c black n -t * -s 948 -S UP -v circle -c black n -t * -s 949 -S UP -v circle -c black n -t * -s 950 -S UP -v circle -c black n -t * -s 951 -S UP -v circle -c black n -t * -s 952 -S UP -v circle -c black n -t * -s 953 -S UP -v circle -c black n -t * -s 954 -S UP -v circle -c black n -t * -s 955 -S UP -v circle -c black n -t * -s 956 -S UP -v circle -c black n -t * -s 957 -S UP -v circle -c black n -t * -s 959 -S UP -v circle -c black n -t * -s 960 -S UP -v circle -c black n -t * -s 962 -S UP -v circle -c black n -t * -s 963 -S UP -v circle -c black n -t * -s 964 -S UP -v circle -c black n -t * -s 965 -S UP -v circle -c black n -t * -s 966 -S UP -v circle -c black n -t * -s 968 -S UP -v circle -c black n -t * -s 969 -S UP -v circle -c black n -t * -s 970 -S UP -v circle -c black n -t * -s 971 -S UP -v circle -c black n -t * -s 972 -S UP -v circle -c black n -t * -s 973 -S UP -v circle -c black n -t * -s 974 -S UP -v circle -c black n -t * -s 975 -S UP -v circle -c black n -t * -s 977 -S UP -v circle -c black n -t * -s 978 -S UP -v circle -c black n -t * -s 979 -S UP -v circle -c black n -t * -s 980 -S UP -v circle -c black n -t * -s 981 -S UP -v circle -c black n -t * -s 982 -S UP -v circle -c black n -t * -s 983 -S UP -v circle -c black n -t * -s 984 -S UP -v circle -c black n -t * -s 985 -S UP -v circle -c black n -t * -s 991 -S UP -v circle -c black n -t * -s 993 -S UP -v circle -c black n -t * -s 994 -S UP -v circle -c black n -t * -s 995 -S UP -v circle -c black n -t * -s 996 -S UP -v circle -c black n -t * -s 997 -S UP -v circle -c black n -t * -s 998 -S UP -v circle -c black n -t * -s 999 -S UP -v circle -c black n -t * -s 1000 -S UP -v circle -c black n -t * -s 1001 -S UP -v circle -c black n -t * -s 1005 -S UP -v circle -c black n -t * -s 1009 -S UP -v circle -c black n -t * -s 1010 -S UP -v circle -c black n -t * -s 1011 -S UP -v circle -c black n -t * -s 1012 -S UP -v circle -c black n -t * -s 1014 -S UP -v circle -c black n -t * -s 1015 -S UP -v circle -c black n -t * -s 1016 -S UP -v circle -c black n -t * -s 1017 -S UP -v circle -c black n -t * -s 1018 -S UP -v circle -c black n -t * -s 1019 -S UP -v circle -c black n -t * -s 1020 -S UP -v circle -c black n -t * -s 1021 -S UP -v circle -c black n -t * -s 1022 -S UP -v circle -c black n -t * -s 1023 -S UP -v circle -c black n -t * -s 1024 -S UP -v circle -c black n -t * -s 1026 -S UP -v circle -c black n -t * -s 1027 -S UP -v circle -c black n -t * -s 1028 -S UP -v circle -c black n -t * -s 1029 -S UP -v circle -c black n -t * -s 1030 -S UP -v circle -c black n -t * -s 1031 -S UP -v circle -c black n -t * -s 1032 -S UP -v circle -c black n -t * -s 1033 -S UP -v circle -c black n -t * -s 1034 -S UP -v circle -c black n -t * -s 1035 -S UP -v circle -c black n -t * -s 1036 -S UP -v circle -c black n -t * -s 1037 -S UP -v circle -c black n -t * -s 1038 -S UP -v circle -c black n -t * -s 1039 -S UP -v circle -c black n -t * -s 1040 -S UP -v circle -c black n -t * -s 1041 -S UP -v circle -c black n -t * -s 1042 -S UP -v circle -c black n -t * -s 1044 -S UP -v circle -c black n -t * -s 1045 -S UP -v circle -c black n -t * -s 1048 -S UP -v circle -c black n -t * -s 1049 -S UP -v circle -c black n -t * -s 1050 -S UP -v circle -c black n -t * -s 1051 -S UP -v circle -c black n -t * -s 1052 -S UP -v circle -c black n -t * -s 1053 -S UP -v circle -c black n -t * -s 1054 -S UP -v circle -c black n -t * -s 1055 -S UP -v circle -c black n -t * -s 1056 -S UP -v circle -c black n -t * -s 1057 -S UP -v circle -c black n -t * -s 1058 -S UP -v circle -c black n -t * -s 1061 -S UP -v circle -c black n -t * -s 1062 -S UP -v circle -c black n -t * -s 1063 -S UP -v circle -c black n -t * -s 1064 -S UP -v circle -c black n -t * -s 1065 -S UP -v circle -c black n -t * -s 1067 -S UP -v circle -c black n -t * -s 1068 -S UP -v circle -c black n -t * -s 1069 -S UP -v circle -c black n -t * -s 1070 -S UP -v circle -c black n -t * -s 1071 -S UP -v circle -c black n -t * -s 1072 -S UP -v circle -c black n -t * -s 1074 -S UP -v circle -c black n -t * -s 1076 -S UP -v circle -c black n -t * -s 1077 -S UP -v circle -c black n -t * -s 1079 -S UP -v circle -c black n -t * -s 1080 -S UP -v circle -c black n -t * -s 1081 -S UP -v circle -c black n -t * -s 1082 -S UP -v circle -c black n -t * -s 1083 -S UP -v circle -c black n -t * -s 1084 -S UP -v circle -c black n -t * -s 1085 -S UP -v circle -c black n -t * -s 1087 -S UP -v circle -c black n -t * -s 1088 -S UP -v circle -c black n -t * -s 1089 -S UP -v circle -c black n -t * -s 1090 -S UP -v circle -c black n -t * -s 1091 -S UP -v circle -c black n -t * -s 1092 -S UP -v circle -c black n -t * -s 1094 -S UP -v circle -c black n -t * -s 1095 -S UP -v circle -c black n -t * -s 1097 -S UP -v circle -c black n -t * -s 1098 -S UP -v circle -c black n -t * -s 1099 -S UP -v circle -c black n -t * -s 1100 -S UP -v circle -c black n -t * -s 1101 -S UP -v circle -c black n -t * -s 1102 -S UP -v circle -c black n -t * -s 1103 -S UP -v circle -c black n -t * -s 1104 -S UP -v circle -c black n -t * -s 1105 -S UP -v circle -c black n -t * -s 1106 -S UP -v circle -c black n -t * -s 1107 -S UP -v circle -c black n -t * -s 1108 -S UP -v circle -c black n -t * -s 1109 -S UP -v circle -c black n -t * -s 1110 -S UP -v circle -c black n -t * -s 1111 -S UP -v circle -c black n -t * -s 1112 -S UP -v circle -c black n -t * -s 1113 -S UP -v circle -c black n -t * -s 1114 -S UP -v circle -c black n -t * -s 1115 -S UP -v circle -c black n -t * -s 1116 -S UP -v circle -c black n -t * -s 1118 -S UP -v circle -c black n -t * -s 1119 -S UP -v circle -c black n -t * -s 1120 -S UP -v circle -c black n -t * -s 1122 -S UP -v circle -c black n -t * -s 1123 -S UP -v circle -c black n -t * -s 1124 -S UP -v circle -c black n -t * -s 1125 -S UP -v circle -c black n -t * -s 1126 -S UP -v circle -c black n -t * -s 1129 -S UP -v circle -c black n -t * -s 1130 -S UP -v circle -c black n -t * -s 1132 -S UP -v circle -c black n -t * -s 1133 -S UP -v circle -c black n -t * -s 1134 -S UP -v circle -c black n -t * -s 1136 -S UP -v circle -c black n -t * -s 1137 -S UP -v circle -c black n -t * -s 1139 -S UP -v circle -c black n -t * -s 1140 -S UP -v circle -c black n -t * -s 1141 -S UP -v circle -c black n -t * -s 1142 -S UP -v circle -c black n -t * -s 1143 -S UP -v circle -c black n -t * -s 1144 -S UP -v circle -c black n -t * -s 1145 -S UP -v circle -c black n -t * -s 1146 -S UP -v circle -c black n -t * -s 1147 -S UP -v circle -c black n -t * -s 1150 -S UP -v circle -c black n -t * -s 1152 -S UP -v circle -c black n -t * -s 1153 -S UP -v circle -c black n -t * -s 1154 -S UP -v circle -c black n -t * -s 1155 -S UP -v circle -c black n -t * -s 1156 -S UP -v circle -c black n -t * -s 1157 -S UP -v circle -c black n -t * -s 1158 -S UP -v circle -c black n -t * -s 1159 -S UP -v circle -c black n -t * -s 1160 -S UP -v circle -c black n -t * -s 1161 -S UP -v circle -c black n -t * -s 1162 -S UP -v circle -c black n -t * -s 1163 -S UP -v circle -c black n -t * -s 1164 -S UP -v circle -c black n -t * -s 1165 -S UP -v circle -c black n -t * -s 1167 -S UP -v circle -c black n -t * -s 1168 -S UP -v circle -c black n -t * -s 1169 -S UP -v circle -c black n -t * -s 1170 -S UP -v circle -c black n -t * -s 1171 -S UP -v circle -c black n -t * -s 1172 -S UP -v circle -c black n -t * -s 1173 -S UP -v circle -c black n -t * -s 1174 -S UP -v circle -c black n -t * -s 1175 -S UP -v circle -c black n -t * -s 1176 -S UP -v circle -c black n -t * -s 1177 -S UP -v circle -c black n -t * -s 1178 -S UP -v circle -c black n -t * -s 1180 -S UP -v circle -c black n -t * -s 1181 -S UP -v circle -c black n -t * -s 1182 -S UP -v circle -c black n -t * -s 1183 -S UP -v circle -c black n -t * -s 1184 -S UP -v circle -c black n -t * -s 1186 -S UP -v circle -c black n -t * -s 1187 -S UP -v circle -c black n -t * -s 1189 -S UP -v circle -c black n -t * -s 1190 -S UP -v circle -c black n -t * -s 1191 -S UP -v circle -c black n -t * -s 1192 -S UP -v circle -c black n -t * -s 1193 -S UP -v circle -c black n -t * -s 1194 -S UP -v circle -c black n -t * -s 1195 -S UP -v circle -c black n -t * -s 1196 -S UP -v circle -c black n -t * -s 1197 -S UP -v circle -c black n -t * -s 1198 -S UP -v circle -c black n -t * -s 1199 -S UP -v circle -c black n -t * -s 1200 -S UP -v circle -c black n -t * -s 1201 -S UP -v circle -c black n -t * -s 1203 -S UP -v circle -c black n -t * -s 1205 -S UP -v circle -c black n -t * -s 1206 -S UP -v circle -c black n -t * -s 1207 -S UP -v circle -c black n -t * -s 1209 -S UP -v circle -c black n -t * -s 1210 -S UP -v circle -c black n -t * -s 1211 -S UP -v circle -c black n -t * -s 1212 -S UP -v circle -c black n -t * -s 1213 -S UP -v circle -c black n -t * -s 1214 -S UP -v circle -c black n -t * -s 1215 -S UP -v circle -c black n -t * -s 1216 -S UP -v circle -c black n -t * -s 1217 -S UP -v circle -c black n -t * -s 1218 -S UP -v circle -c black n -t * -s 1219 -S UP -v circle -c black n -t * -s 1220 -S UP -v circle -c black n -t * -s 1221 -S UP -v circle -c black n -t * -s 1222 -S UP -v circle -c black n -t * -s 1223 -S UP -v circle -c black n -t * -s 1224 -S UP -v circle -c black n -t * -s 1225 -S UP -v circle -c black n -t * -s 1226 -S UP -v circle -c black n -t * -s 1227 -S UP -v circle -c black n -t * -s 1228 -S UP -v circle -c black n -t * -s 1229 -S UP -v circle -c black n -t * -s 1230 -S UP -v circle -c black n -t * -s 1231 -S UP -v circle -c black n -t * -s 1232 -S UP -v circle -c black n -t * -s 1233 -S UP -v circle -c black n -t * -s 1234 -S UP -v circle -c black n -t * -s 1235 -S UP -v circle -c black n -t * -s 1236 -S UP -v circle -c black n -t * -s 1237 -S UP -v circle -c black n -t * -s 1238 -S UP -v circle -c black n -t * -s 1239 -S UP -v circle -c black n -t * -s 1240 -S UP -v circle -c black n -t * -s 1241 -S UP -v circle -c black n -t * -s 1243 -S UP -v circle -c black n -t * -s 1244 -S UP -v circle -c black n -t * -s 1245 -S UP -v circle -c black n -t * -s 1247 -S UP -v circle -c black n -t * -s 1248 -S UP -v circle -c black n -t * -s 1249 -S UP -v circle -c black n -t * -s 1250 -S UP -v circle -c black n -t * -s 1251 -S UP -v circle -c black n -t * -s 1252 -S UP -v circle -c black n -t * -s 1253 -S UP -v circle -c black n -t * -s 1254 -S UP -v circle -c black n -t * -s 1255 -S UP -v circle -c black n -t * -s 1256 -S UP -v circle -c black n -t * -s 1258 -S UP -v circle -c black n -t * -s 1262 -S UP -v circle -c black n -t * -s 1263 -S UP -v circle -c black n -t * -s 1264 -S UP -v circle -c black n -t * -s 1265 -S UP -v circle -c black n -t * -s 1266 -S UP -v circle -c black n -t * -s 1267 -S UP -v circle -c black n -t * -s 1268 -S UP -v circle -c black n -t * -s 1269 -S UP -v circle -c black n -t * -s 1270 -S UP -v circle -c black n -t * -s 1271 -S UP -v circle -c black n -t * -s 1272 -S UP -v circle -c black n -t * -s 1273 -S UP -v circle -c black n -t * -s 1274 -S UP -v circle -c black n -t * -s 1275 -S UP -v circle -c black n -t * -s 1276 -S UP -v circle -c black n -t * -s 1277 -S UP -v circle -c black n -t * -s 1278 -S UP -v circle -c black n -t * -s 1279 -S UP -v circle -c black n -t * -s 1280 -S UP -v circle -c black n -t * -s 1281 -S UP -v circle -c black n -t * -s 1282 -S UP -v circle -c black n -t * -s 1283 -S UP -v circle -c black n -t * -s 1284 -S UP -v circle -c black n -t * -s 1285 -S UP -v circle -c black n -t * -s 1286 -S UP -v circle -c black n -t * -s 1287 -S UP -v circle -c black n -t * -s 1288 -S UP -v circle -c black n -t * -s 1290 -S UP -v circle -c black n -t * -s 1291 -S UP -v circle -c black n -t * -s 1292 -S UP -v circle -c black n -t * -s 1293 -S UP -v circle -c black n -t * -s 1294 -S UP -v circle -c black n -t * -s 1295 -S UP -v circle -c black n -t * -s 1296 -S UP -v circle -c black n -t * -s 1297 -S UP -v circle -c black n -t * -s 1298 -S UP -v circle -c black n -t * -s 1299 -S UP -v circle -c black n -t * -s 1300 -S UP -v circle -c black n -t * -s 1301 -S UP -v circle -c black n -t * -s 1302 -S UP -v circle -c black n -t * -s 1303 -S UP -v circle -c black n -t * -s 1304 -S UP -v circle -c black n -t * -s 1305 -S UP -v circle -c black n -t * -s 1307 -S UP -v circle -c black n -t * -s 1308 -S UP -v circle -c black n -t * -s 1309 -S UP -v circle -c black n -t * -s 1310 -S UP -v circle -c black n -t * -s 1311 -S UP -v circle -c black n -t * -s 1312 -S UP -v circle -c black n -t * -s 1313 -S UP -v circle -c black n -t * -s 1316 -S UP -v circle -c black n -t * -s 1319 -S UP -v circle -c black n -t * -s 1321 -S UP -v circle -c black n -t * -s 1322 -S UP -v circle -c black n -t * -s 1323 -S UP -v circle -c black n -t * -s 1324 -S UP -v circle -c black n -t * -s 1325 -S UP -v circle -c black n -t * -s 1326 -S UP -v circle -c black n -t * -s 1327 -S UP -v circle -c black n -t * -s 1328 -S UP -v circle -c black n -t * -s 1329 -S UP -v circle -c black n -t * -s 1330 -S UP -v circle -c black n -t * -s 1332 -S UP -v circle -c black n -t * -s 1333 -S UP -v circle -c black n -t * -s 1334 -S UP -v circle -c black n -t * -s 1335 -S UP -v circle -c black n -t * -s 1336 -S UP -v circle -c black n -t * -s 1337 -S UP -v circle -c black n -t * -s 1339 -S UP -v circle -c black n -t * -s 1340 -S UP -v circle -c black n -t * -s 1341 -S UP -v circle -c black n -t * -s 1342 -S UP -v circle -c black n -t * -s 1343 -S UP -v circle -c black n -t * -s 1344 -S UP -v circle -c black n -t * -s 1345 -S UP -v circle -c black n -t * -s 1348 -S UP -v circle -c black n -t * -s 1349 -S UP -v circle -c black n -t * -s 1350 -S UP -v circle -c black n -t * -s 1351 -S UP -v circle -c black n -t * -s 1352 -S UP -v circle -c black n -t * -s 1353 -S UP -v circle -c black n -t * -s 1354 -S UP -v circle -c black n -t * -s 1355 -S UP -v circle -c black n -t * -s 1356 -S UP -v circle -c black n -t * -s 1357 -S UP -v circle -c black n -t * -s 1358 -S UP -v circle -c black n -t * -s 1359 -S UP -v circle -c black n -t * -s 1360 -S UP -v circle -c black n -t * -s 1361 -S UP -v circle -c black n -t * -s 1364 -S UP -v circle -c black n -t * -s 1366 -S UP -v circle -c black n -t * -s 1367 -S UP -v circle -c black n -t * -s 1368 -S UP -v circle -c black n -t * -s 1369 -S UP -v circle -c black n -t * -s 1370 -S UP -v circle -c black n -t * -s 1371 -S UP -v circle -c black n -t * -s 1372 -S UP -v circle -c black n -t * -s 1373 -S UP -v circle -c black n -t * -s 1374 -S UP -v circle -c black n -t * -s 1377 -S UP -v circle -c black n -t * -s 1378 -S UP -v circle -c black n -t * -s 1379 -S UP -v circle -c black n -t * -s 1381 -S UP -v circle -c black n -t * -s 1383 -S UP -v circle -c black n -t * -s 1385 -S UP -v circle -c black n -t * -s 1386 -S UP -v circle -c black n -t * -s 1387 -S UP -v circle -c black n -t * -s 1388 -S UP -v circle -c black n -t * -s 1390 -S UP -v circle -c black n -t * -s 1391 -S UP -v circle -c black n -t * -s 1393 -S UP -v circle -c black n -t * -s 1394 -S UP -v circle -c black n -t * -s 1396 -S UP -v circle -c black n -t * -s 1397 -S UP -v circle -c black n -t * -s 1398 -S UP -v circle -c black n -t * -s 1400 -S UP -v circle -c black n -t * -s 1401 -S UP -v circle -c black n -t * -s 1402 -S UP -v circle -c black n -t * -s 1403 -S UP -v circle -c black n -t * -s 1404 -S UP -v circle -c black n -t * -s 1405 -S UP -v circle -c black n -t * -s 1406 -S UP -v circle -c black n -t * -s 1407 -S UP -v circle -c black n -t * -s 1409 -S UP -v circle -c black n -t * -s 1410 -S UP -v circle -c black n -t * -s 1411 -S UP -v circle -c black n -t * -s 1412 -S UP -v circle -c black n -t * -s 1413 -S UP -v circle -c black n -t * -s 1416 -S UP -v circle -c black n -t * -s 1417 -S UP -v circle -c black n -t * -s 1418 -S UP -v circle -c black n -t * -s 1419 -S UP -v circle -c black n -t * -s 1420 -S UP -v circle -c black n -t * -s 1421 -S UP -v circle -c black n -t * -s 1423 -S UP -v circle -c black n -t * -s 1424 -S UP -v circle -c black n -t * -s 1425 -S UP -v circle -c black n -t * -s 1426 -S UP -v circle -c black n -t * -s 1427 -S UP -v circle -c black n -t * -s 1428 -S UP -v circle -c black n -t * -s 1429 -S UP -v circle -c black n -t * -s 1430 -S UP -v circle -c black n -t * -s 1431 -S UP -v circle -c black n -t * -s 1432 -S UP -v circle -c black n -t * -s 1433 -S UP -v circle -c black n -t * -s 1434 -S UP -v circle -c black n -t * -s 1435 -S UP -v circle -c black n -t * -s 1436 -S UP -v circle -c black n -t * -s 1437 -S UP -v circle -c black n -t * -s 1438 -S UP -v circle -c black n -t * -s 1439 -S UP -v circle -c black n -t * -s 1440 -S UP -v circle -c black n -t * -s 1441 -S UP -v circle -c black n -t * -s 1442 -S UP -v circle -c black n -t * -s 1443 -S UP -v circle -c black n -t * -s 1444 -S UP -v circle -c black n -t * -s 1445 -S UP -v circle -c black n -t * -s 1446 -S UP -v circle -c black n -t * -s 1447 -S UP -v circle -c black n -t * -s 1448 -S UP -v circle -c black n -t * -s 1449 -S UP -v circle -c black n -t * -s 1450 -S UP -v circle -c black n -t * -s 1451 -S UP -v circle -c black n -t * -s 1452 -S UP -v circle -c black n -t * -s 1454 -S UP -v circle -c black n -t * -s 1455 -S UP -v circle -c black n -t * -s 1456 -S UP -v circle -c black n -t * -s 1457 -S UP -v circle -c black n -t * -s 1459 -S UP -v circle -c black n -t * -s 1460 -S UP -v circle -c black n -t * -s 1461 -S UP -v circle -c black n -t * -s 1462 -S UP -v circle -c black n -t * -s 1463 -S UP -v circle -c black n -t * -s 1464 -S UP -v circle -c black n -t * -s 1465 -S UP -v circle -c black n -t * -s 1468 -S UP -v circle -c black n -t * -s 1469 -S UP -v circle -c black n -t * -s 1470 -S UP -v circle -c black n -t * -s 1471 -S UP -v circle -c black n -t * -s 1472 -S UP -v circle -c black n -t * -s 1473 -S UP -v circle -c black n -t * -s 1474 -S UP -v circle -c black n -t * -s 1475 -S UP -v circle -c black n -t * -s 1476 -S UP -v circle -c black n -t * -s 1477 -S UP -v circle -c black n -t * -s 1478 -S UP -v circle -c black n -t * -s 1479 -S UP -v circle -c black n -t * -s 1480 -S UP -v circle -c black n -t * -s 1482 -S UP -v circle -c black n -t * -s 1483 -S UP -v circle -c black n -t * -s 1484 -S UP -v circle -c black n -t * -s 1485 -S UP -v circle -c black n -t * -s 1488 -S UP -v circle -c black n -t * -s 1489 -S UP -v circle -c black n -t * -s 1490 -S UP -v circle -c black n -t * -s 1491 -S UP -v circle -c black n -t * -s 1492 -S UP -v circle -c black n -t * -s 1493 -S UP -v circle -c black n -t * -s 1494 -S UP -v circle -c black n -t * -s 1495 -S UP -v circle -c black n -t * -s 1497 -S UP -v circle -c black n -t * -s 1498 -S UP -v circle -c black n -t * -s 1499 -S UP -v circle -c black n -t * -s 1500 -S UP -v circle -c black n -t * -s 1501 -S UP -v circle -c black n -t * -s 1502 -S UP -v circle -c black n -t * -s 1505 -S UP -v circle -c black n -t * -s 1506 -S UP -v circle -c black n -t * -s 1507 -S UP -v circle -c black n -t * -s 1509 -S UP -v circle -c black n -t * -s 1510 -S UP -v circle -c black n -t * -s 1511 -S UP -v circle -c black n -t * -s 1512 -S UP -v circle -c black n -t * -s 1513 -S UP -v circle -c black n -t * -s 1514 -S UP -v circle -c black n -t * -s 1515 -S UP -v circle -c black n -t * -s 1516 -S UP -v circle -c black n -t * -s 1517 -S UP -v circle -c black n -t * -s 1518 -S UP -v circle -c black n -t * -s 1519 -S UP -v circle -c black n -t * -s 1520 -S UP -v circle -c black n -t * -s 1521 -S UP -v circle -c black n -t * -s 1522 -S UP -v circle -c black n -t * -s 1523 -S UP -v circle -c black n -t * -s 1524 -S UP -v circle -c black n -t * -s 1525 -S UP -v circle -c black n -t * -s 1526 -S UP -v circle -c black n -t * -s 1527 -S UP -v circle -c black n -t * -s 1528 -S UP -v circle -c black n -t * -s 1529 -S UP -v circle -c black n -t * -s 1530 -S UP -v circle -c black n -t * -s 1531 -S UP -v circle -c black n -t * -s 1532 -S UP -v circle -c black n -t * -s 1533 -S UP -v circle -c black n -t * -s 1534 -S UP -v circle -c black n -t * -s 1535 -S UP -v circle -c black n -t * -s 1536 -S UP -v circle -c black n -t * -s 1537 -S UP -v circle -c black n -t * -s 1538 -S UP -v circle -c black n -t * -s 1539 -S UP -v circle -c black n -t * -s 1540 -S UP -v circle -c black n -t * -s 1541 -S UP -v circle -c black n -t * -s 1543 -S UP -v circle -c black n -t * -s 1544 -S UP -v circle -c black n -t * -s 1545 -S UP -v circle -c black n -t * -s 1546 -S UP -v circle -c black n -t * -s 1547 -S UP -v circle -c black n -t * -s 1548 -S UP -v circle -c black n -t * -s 1549 -S UP -v circle -c black n -t * -s 1550 -S UP -v circle -c black n -t * -s 1551 -S UP -v circle -c black n -t * -s 1552 -S UP -v circle -c black n -t * -s 1553 -S UP -v circle -c black n -t * -s 1554 -S UP -v circle -c black n -t * -s 1555 -S UP -v circle -c black n -t * -s 1556 -S UP -v circle -c black n -t * -s 1558 -S UP -v circle -c black n -t * -s 1559 -S UP -v circle -c black n -t * -s 1560 -S UP -v circle -c black n -t * -s 1561 -S UP -v circle -c black n -t * -s 1562 -S UP -v circle -c black n -t * -s 1563 -S UP -v circle -c black n -t * -s 1564 -S UP -v circle -c black n -t * -s 1565 -S UP -v circle -c black n -t * -s 1566 -S UP -v circle -c black n -t * -s 1567 -S UP -v circle -c black n -t * -s 1568 -S UP -v circle -c black n -t * -s 1569 -S UP -v circle -c black n -t * -s 1570 -S UP -v circle -c black n -t * -s 1572 -S UP -v circle -c black n -t * -s 1573 -S UP -v circle -c black n -t * -s 1574 -S UP -v circle -c black n -t * -s 1575 -S UP -v circle -c black n -t * -s 1576 -S UP -v circle -c black n -t * -s 1577 -S UP -v circle -c black n -t * -s 1578 -S UP -v circle -c black n -t * -s 1579 -S UP -v circle -c black n -t * -s 1580 -S UP -v circle -c black n -t * -s 1581 -S UP -v circle -c black n -t * -s 1582 -S UP -v circle -c black n -t * -s 1583 -S UP -v circle -c black n -t * -s 1584 -S UP -v circle -c black n -t * -s 1585 -S UP -v circle -c black n -t * -s 1586 -S UP -v circle -c black n -t * -s 1587 -S UP -v circle -c black n -t * -s 1588 -S UP -v circle -c black n -t * -s 1590 -S UP -v circle -c black n -t * -s 1591 -S UP -v circle -c black n -t * -s 1592 -S UP -v circle -c black n -t * -s 1593 -S UP -v circle -c black n -t * -s 1594 -S UP -v circle -c black n -t * -s 1595 -S UP -v circle -c black n -t * -s 1596 -S UP -v circle -c black n -t * -s 1597 -S UP -v circle -c black n -t * -s 1598 -S UP -v circle -c black n -t * -s 1599 -S UP -v circle -c black n -t * -s 1600 -S UP -v circle -c black n -t * -s 1601 -S UP -v circle -c black n -t * -s 1603 -S UP -v circle -c black n -t * -s 1604 -S UP -v circle -c black n -t * -s 1605 -S UP -v circle -c black n -t * -s 1606 -S UP -v circle -c black n -t * -s 1608 -S UP -v circle -c black n -t * -s 1609 -S UP -v circle -c black n -t * -s 1610 -S UP -v circle -c black n -t * -s 1611 -S UP -v circle -c black n -t * -s 1612 -S UP -v circle -c black n -t * -s 1613 -S UP -v circle -c black n -t * -s 1614 -S UP -v circle -c black n -t * -s 1615 -S UP -v circle -c black n -t * -s 1616 -S UP -v circle -c black n -t * -s 1617 -S UP -v circle -c black n -t * -s 1618 -S UP -v circle -c black n -t * -s 1619 -S UP -v circle -c black n -t * -s 1620 -S UP -v circle -c black n -t * -s 1621 -S UP -v circle -c black n -t * -s 1622 -S UP -v circle -c black n -t * -s 1623 -S UP -v circle -c black n -t * -s 1624 -S UP -v circle -c black n -t * -s 1625 -S UP -v circle -c black n -t * -s 1626 -S UP -v circle -c black n -t * -s 1628 -S UP -v circle -c black n -t * -s 1629 -S UP -v circle -c black n -t * -s 1630 -S UP -v circle -c black n -t * -s 1631 -S UP -v circle -c black n -t * -s 1632 -S UP -v circle -c black n -t * -s 1633 -S UP -v circle -c black n -t * -s 1634 -S UP -v circle -c black n -t * -s 1635 -S UP -v circle -c black n -t * -s 1637 -S UP -v circle -c black n -t * -s 1638 -S UP -v circle -c black n -t * -s 1640 -S UP -v circle -c black n -t * -s 1641 -S UP -v circle -c black n -t * -s 1644 -S UP -v circle -c black n -t * -s 1645 -S UP -v circle -c black n -t * -s 1646 -S UP -v circle -c black n -t * -s 1647 -S UP -v circle -c black n -t * -s 1648 -S UP -v circle -c black n -t * -s 1650 -S UP -v circle -c black n -t * -s 1651 -S UP -v circle -c black n -t * -s 1652 -S UP -v circle -c black n -t * -s 1653 -S UP -v circle -c black n -t * -s 1655 -S UP -v circle -c black n -t * -s 1656 -S UP -v circle -c black n -t * -s 1657 -S UP -v circle -c black n -t * -s 1658 -S UP -v circle -c black n -t * -s 1659 -S UP -v circle -c black n -t * -s 1660 -S UP -v circle -c black n -t * -s 1661 -S UP -v circle -c black n -t * -s 1662 -S UP -v circle -c black n -t * -s 1663 -S UP -v circle -c black n -t * -s 1664 -S UP -v circle -c black n -t * -s 1666 -S UP -v circle -c black n -t * -s 1667 -S UP -v circle -c black n -t * -s 1668 -S UP -v circle -c black n -t * -s 1669 -S UP -v circle -c black n -t * -s 1670 -S UP -v circle -c black n -t * -s 1671 -S UP -v circle -c black n -t * -s 1672 -S UP -v circle -c black n -t * -s 1673 -S UP -v circle -c black n -t * -s 1674 -S UP -v circle -c black n -t * -s 1675 -S UP -v circle -c black n -t * -s 1676 -S UP -v circle -c black n -t * -s 1677 -S UP -v circle -c black n -t * -s 1678 -S UP -v circle -c black n -t * -s 1679 -S UP -v circle -c black n -t * -s 1680 -S UP -v circle -c black n -t * -s 1681 -S UP -v circle -c black n -t * -s 1682 -S UP -v circle -c black n -t * -s 1683 -S UP -v circle -c black n -t * -s 1684 -S UP -v circle -c black n -t * -s 1685 -S UP -v circle -c black n -t * -s 1686 -S UP -v circle -c black n -t * -s 1687 -S UP -v circle -c black n -t * -s 1688 -S UP -v circle -c black n -t * -s 1689 -S UP -v circle -c black n -t * -s 1690 -S UP -v circle -c black n -t * -s 1691 -S UP -v circle -c black n -t * -s 1692 -S UP -v circle -c black n -t * -s 1693 -S UP -v circle -c black n -t * -s 1694 -S UP -v circle -c black n -t * -s 1695 -S UP -v circle -c black n -t * -s 1696 -S UP -v circle -c black n -t * -s 1702 -S UP -v circle -c black n -t * -s 1703 -S UP -v circle -c black n -t * -s 1704 -S UP -v circle -c black n -t * -s 1705 -S UP -v circle -c black n -t * -s 1707 -S UP -v circle -c black n -t * -s 1710 -S UP -v circle -c black n -t * -s 1711 -S UP -v circle -c black n -t * -s 1712 -S UP -v circle -c black n -t * -s 1713 -S UP -v circle -c black n -t * -s 1714 -S UP -v circle -c black n -t * -s 1715 -S UP -v circle -c black n -t * -s 1716 -S UP -v circle -c black n -t * -s 1717 -S UP -v circle -c black n -t * -s 1718 -S UP -v circle -c black n -t * -s 1719 -S UP -v circle -c black n -t * -s 1720 -S UP -v circle -c black n -t * -s 1721 -S UP -v circle -c black n -t * -s 1722 -S UP -v circle -c black n -t * -s 1723 -S UP -v circle -c black n -t * -s 1724 -S UP -v circle -c black n -t * -s 1725 -S UP -v circle -c black n -t * -s 1726 -S UP -v circle -c black n -t * -s 1727 -S UP -v circle -c black n -t * -s 1728 -S UP -v circle -c black n -t * -s 1729 -S UP -v circle -c black n -t * -s 1730 -S UP -v circle -c black n -t * -s 1731 -S UP -v circle -c black n -t * -s 1732 -S UP -v circle -c black n -t * -s 1733 -S UP -v circle -c black n -t * -s 1734 -S UP -v circle -c black n -t * -s 1735 -S UP -v circle -c black n -t * -s 1736 -S UP -v circle -c black n -t * -s 1737 -S UP -v circle -c black n -t * -s 1738 -S UP -v circle -c black n -t * -s 1739 -S UP -v circle -c black n -t * -s 1740 -S UP -v circle -c black n -t * -s 1741 -S UP -v circle -c black n -t * -s 1742 -S UP -v circle -c black n -t * -s 1743 -S UP -v circle -c black n -t * -s 1744 -S UP -v circle -c black n -t * -s 1745 -S UP -v circle -c black n -t * -s 1746 -S UP -v circle -c black n -t * -s 1747 -S UP -v circle -c black n -t * -s 1748 -S UP -v circle -c black n -t * -s 1749 -S UP -v circle -c black n -t * -s 1750 -S UP -v circle -c black n -t * -s 1751 -S UP -v circle -c black n -t * -s 1752 -S UP -v circle -c black n -t * -s 1753 -S UP -v circle -c black n -t * -s 1754 -S UP -v circle -c black n -t * -s 1755 -S UP -v circle -c black n -t * -s 1757 -S UP -v circle -c black n -t * -s 1758 -S UP -v circle -c black n -t * -s 1759 -S UP -v circle -c black n -t * -s 1760 -S UP -v circle -c black n -t * -s 1761 -S UP -v circle -c black n -t * -s 1762 -S UP -v circle -c black n -t * -s 1763 -S UP -v circle -c black n -t * -s 1764 -S UP -v circle -c black n -t * -s 1765 -S UP -v circle -c black n -t * -s 1766 -S UP -v circle -c black n -t * -s 1767 -S UP -v circle -c black n -t * -s 1768 -S UP -v circle -c black n -t * -s 1769 -S UP -v circle -c black n -t * -s 1770 -S UP -v circle -c black n -t * -s 1771 -S UP -v circle -c black n -t * -s 1772 -S UP -v circle -c black n -t * -s 1773 -S UP -v circle -c black n -t * -s 1774 -S UP -v circle -c black n -t * -s 1775 -S UP -v circle -c black n -t * -s 1776 -S UP -v circle -c black n -t * -s 1778 -S UP -v circle -c black n -t * -s 1779 -S UP -v circle -c black n -t * -s 1781 -S UP -v circle -c black n -t * -s 1782 -S UP -v circle -c black n -t * -s 1783 -S UP -v circle -c black n -t * -s 1784 -S UP -v circle -c black n -t * -s 1788 -S UP -v circle -c black n -t * -s 1790 -S UP -v circle -c black n -t * -s 1791 -S UP -v circle -c black n -t * -s 1792 -S UP -v circle -c black n -t * -s 1793 -S UP -v circle -c black n -t * -s 1794 -S UP -v circle -c black n -t * -s 1795 -S UP -v circle -c black n -t * -s 1796 -S UP -v circle -c black n -t * -s 1798 -S UP -v circle -c black n -t * -s 1799 -S UP -v circle -c black n -t * -s 1800 -S UP -v circle -c black n -t * -s 1801 -S UP -v circle -c black n -t * -s 1802 -S UP -v circle -c black n -t * -s 1803 -S UP -v circle -c black n -t * -s 1804 -S UP -v circle -c black n -t * -s 1805 -S UP -v circle -c black n -t * -s 1806 -S UP -v circle -c black n -t * -s 1807 -S UP -v circle -c black n -t * -s 1808 -S UP -v circle -c black n -t * -s 1809 -S UP -v circle -c black n -t * -s 1810 -S UP -v circle -c black n -t * -s 1811 -S UP -v circle -c black n -t * -s 1812 -S UP -v circle -c black n -t * -s 1813 -S UP -v circle -c black n -t * -s 1815 -S UP -v circle -c black n -t * -s 1816 -S UP -v circle -c black n -t * -s 1818 -S UP -v circle -c black n -t * -s 1819 -S UP -v circle -c black n -t * -s 1820 -S UP -v circle -c black n -t * -s 1821 -S UP -v circle -c black n -t * -s 1824 -S UP -v circle -c black n -t * -s 1825 -S UP -v circle -c black n -t * -s 1826 -S UP -v circle -c black n -t * -s 1827 -S UP -v circle -c black n -t * -s 1828 -S UP -v circle -c black n -t * -s 1829 -S UP -v circle -c black n -t * -s 1830 -S UP -v circle -c black n -t * -s 1831 -S UP -v circle -c black n -t * -s 1832 -S UP -v circle -c black n -t * -s 1833 -S UP -v circle -c black n -t * -s 1834 -S UP -v circle -c black n -t * -s 1835 -S UP -v circle -c black n -t * -s 1836 -S UP -v circle -c black n -t * -s 1837 -S UP -v circle -c black n -t * -s 1838 -S UP -v circle -c black n -t * -s 1839 -S UP -v circle -c black n -t * -s 1840 -S UP -v circle -c black n -t * -s 1842 -S UP -v circle -c black n -t * -s 1843 -S UP -v circle -c black n -t * -s 1844 -S UP -v circle -c black n -t * -s 1845 -S UP -v circle -c black n -t * -s 1846 -S UP -v circle -c black n -t * -s 1847 -S UP -v circle -c black n -t * -s 1848 -S UP -v circle -c black n -t * -s 1849 -S UP -v circle -c black n -t * -s 1851 -S UP -v circle -c black n -t * -s 1852 -S UP -v circle -c black n -t * -s 1853 -S UP -v circle -c black n -t * -s 1854 -S UP -v circle -c black n -t * -s 1855 -S UP -v circle -c black n -t * -s 1856 -S UP -v circle -c black n -t * -s 1857 -S UP -v circle -c black n -t * -s 1858 -S UP -v circle -c black n -t * -s 1859 -S UP -v circle -c black n -t * -s 1860 -S UP -v circle -c black n -t * -s 1861 -S UP -v circle -c black n -t * -s 1862 -S UP -v circle -c black n -t * -s 1863 -S UP -v circle -c black n -t * -s 1864 -S UP -v circle -c black n -t * -s 1865 -S UP -v circle -c black n -t * -s 1866 -S UP -v circle -c black n -t * -s 1867 -S UP -v circle -c black n -t * -s 1868 -S UP -v circle -c black n -t * -s 1869 -S UP -v circle -c black n -t * -s 1870 -S UP -v circle -c black n -t * -s 1871 -S UP -v circle -c black n -t * -s 1872 -S UP -v circle -c black n -t * -s 1873 -S UP -v circle -c black n -t * -s 1874 -S UP -v circle -c black n -t * -s 1875 -S UP -v circle -c black n -t * -s 1876 -S UP -v circle -c black n -t * -s 1877 -S UP -v circle -c black n -t * -s 1878 -S UP -v circle -c black n -t * -s 1879 -S UP -v circle -c black n -t * -s 1880 -S UP -v circle -c black n -t * -s 1881 -S UP -v circle -c black n -t * -s 1882 -S UP -v circle -c black n -t * -s 1883 -S UP -v circle -c black n -t * -s 1884 -S UP -v circle -c black n -t * -s 1885 -S UP -v circle -c black n -t * -s 1886 -S UP -v circle -c black n -t * -s 1887 -S UP -v circle -c black n -t * -s 1888 -S UP -v circle -c black n -t * -s 1890 -S UP -v circle -c black n -t * -s 1891 -S UP -v circle -c black n -t * -s 1892 -S UP -v circle -c black n -t * -s 1893 -S UP -v circle -c black n -t * -s 1894 -S UP -v circle -c black n -t * -s 1895 -S UP -v circle -c black n -t * -s 1896 -S UP -v circle -c black n -t * -s 1897 -S UP -v circle -c black n -t * -s 1898 -S UP -v circle -c black n -t * -s 1899 -S UP -v circle -c black n -t * -s 1900 -S UP -v circle -c black n -t * -s 1901 -S UP -v circle -c black n -t * -s 1902 -S UP -v circle -c black n -t * -s 1903 -S UP -v circle -c black n -t * -s 1904 -S UP -v circle -c black n -t * -s 1905 -S UP -v circle -c black n -t * -s 1906 -S UP -v circle -c black n -t * -s 1907 -S UP -v circle -c black n -t * -s 1908 -S UP -v circle -c black n -t * -s 1909 -S UP -v circle -c black n -t * -s 1910 -S UP -v circle -c black n -t * -s 1911 -S UP -v circle -c black n -t * -s 1912 -S UP -v circle -c black n -t * -s 1913 -S UP -v circle -c black n -t * -s 1914 -S UP -v circle -c black n -t * -s 1915 -S UP -v circle -c black n -t * -s 1916 -S UP -v circle -c black n -t * -s 1917 -S UP -v circle -c black n -t * -s 1918 -S UP -v circle -c black n -t * -s 1919 -S UP -v circle -c black n -t * -s 1926 -S UP -v circle -c black n -t * -s 1928 -S UP -v circle -c black n -t * -s 1929 -S UP -v circle -c black n -t * -s 1930 -S UP -v circle -c black n -t * -s 1931 -S UP -v circle -c black n -t * -s 1932 -S UP -v circle -c black n -t * -s 1933 -S UP -v circle -c black n -t * -s 1934 -S UP -v circle -c black n -t * -s 1935 -S UP -v circle -c black n -t * -s 1936 -S UP -v circle -c black n -t * -s 1937 -S UP -v circle -c black n -t * -s 1938 -S UP -v circle -c black n -t * -s 1939 -S UP -v circle -c black n -t * -s 1940 -S UP -v circle -c black n -t * -s 1941 -S UP -v circle -c black n -t * -s 1942 -S UP -v circle -c black n -t * -s 1943 -S UP -v circle -c black n -t * -s 1944 -S UP -v circle -c black n -t * -s 1945 -S UP -v circle -c black n -t * -s 1946 -S UP -v circle -c black n -t * -s 1947 -S UP -v circle -c black n -t * -s 1948 -S UP -v circle -c black n -t * -s 1949 -S UP -v circle -c black n -t * -s 1950 -S UP -v circle -c black n -t * -s 1951 -S UP -v circle -c black n -t * -s 1952 -S UP -v circle -c black n -t * -s 1953 -S UP -v circle -c black n -t * -s 1954 -S UP -v circle -c black n -t * -s 1955 -S UP -v circle -c black n -t * -s 1956 -S UP -v circle -c black n -t * -s 1958 -S UP -v circle -c black n -t * -s 1959 -S UP -v circle -c black n -t * -s 1961 -S UP -v circle -c black n -t * -s 1962 -S UP -v circle -c black n -t * -s 1963 -S UP -v circle -c black n -t * -s 1964 -S UP -v circle -c black n -t * -s 1967 -S UP -v circle -c black n -t * -s 1968 -S UP -v circle -c black n -t * -s 1969 -S UP -v circle -c black n -t * -s 1971 -S UP -v circle -c black l -t * -s 1 -d 10 -S UP -r 512000 -D 0.03125 l -t * -s 1 -d 11 -S UP -r 512000 -D 0.03125 l -t * -s 2 -d 3 -S UP -r 512000 -D 0.0009765625 l -t * -s 2 -d 1594 -S UP -r 512000 -D 0.046875 l -t * -s 2 -d 1104 -S UP -r 512000 -D 0.03125 l -t * -s 2 -d 474 -S UP -r 512000 -D 0.03125 l -t * -s 2 -d 1115 -S UP -r 512000 -D 0.03125 l -t * -s 2 -d 13 -S UP -r 512000 -D 0.0234375 l -t * -s 2 -d 4 -S UP -r 512000 -D 0.0009765625 l -t * -s 2 -d 1430 -S UP -r 512000 -D 0.0009765625 l -t * -s 3 -d 22 -S UP -r 512000 -D 0.0625 l -t * -s 3 -d 19 -S UP -r 512000 -D 0.015625 l -t * -s 3 -d 20 -S UP -r 512000 -D 0.0234375 l -t * -s 3 -d 4 -S UP -r 512000 -D 0.0009765625 l -t * -s 3 -d 21 -S UP -r 512000 -D 0.125 l -t * -s 3 -d 1430 -S UP -r 512000 -D 0.0009765625 l -t * -s 4 -d 398 -S UP -r 512000 -D 0.0234375 l -t * -s 5 -d 24 -S UP -r 512000 -D 0.0009765625 l -t * -s 6 -d 1112 -S UP -r 512000 -D 0.0009765625 l -t * -s 7 -d 1112 -S UP -r 512000 -D 0.0009765625 l -t * -s 8 -d 29 -S UP -r 512000 -D 0.0625 l -t * -s 9 -d 29 -S UP -r 512000 -D 0.0625 l -t * -s 10 -d 644 -S UP -r 512000 -D 0.03125 l -t * -s 10 -d 143 -S UP -r 512000 -D 0.015625 l -t * -s 10 -d 952 -S UP -r 512000 -D 0.0009765625 l -t * -s 11 -d 33 -S UP -r 512000 -D 0.03125 l -t * -s 13 -d 38 -S UP -r 512000 -D 0.0009765625 l -t * -s 13 -d 39 -S UP -r 512000 -D 0.0234375 l -t * -s 13 -d 40 -S UP -r 512000 -D 0.0234375 l -t * -s 13 -d 1596 -S UP -r 512000 -D 0.046875 l -t * -s 15 -d 42 -S UP -r 512000 -D 0.0078125 l -t * -s 16 -d 47 -S UP -r 512000 -D 0.015625 l -t * -s 16 -d 1707 -S UP -r 512000 -D 0.0078125 l -t * -s 16 -d 1300 -S UP -r 512000 -D 0.0078125 l -t * -s 17 -d 47 -S UP -r 512000 -D 0.015625 l -t * -s 18 -d 47 -S UP -r 512000 -D 0.015625 l -t * -s 19 -d 1596 -S UP -r 512000 -D 0.046875 l -t * -s 19 -d 474 -S UP -r 512000 -D 0.046875 l -t * -s 19 -d 1824 -S UP -r 512000 -D 0.03125 l -t * -s 19 -d 353 -S UP -r 512000 -D 0.03125 l -t * -s 19 -d 289 -S UP -r 512000 -D 0.03125 l -t * -s 19 -d 1800 -S UP -r 512000 -D 0.03125 l -t * -s 19 -d 1825 -S UP -r 512000 -D 0.03125 l -t * -s 19 -d 185 -S UP -r 512000 -D 0.03125 l -t * -s 19 -d 945 -S UP -r 512000 -D 0.03125 l -t * -s 19 -d 944 -S UP -r 512000 -D 0.005859375 l -t * -s 19 -d 303 -S UP -r 512000 -D 0.03125 l -t * -s 19 -d 1310 -S UP -r 512000 -D 0.03125 l -t * -s 19 -d 1690 -S UP -r 512000 -D 0.03125 l -t * -s 20 -d 1194 -S UP -r 512000 -D 0.0009765625 l -t * -s 20 -d 50 -S UP -r 512000 -D 0.0009765625 l -t * -s 20 -d 1287 -S UP -r 512000 -D 0.0009765625 l -t * -s 22 -d 53 -S UP -r 512000 -D 0.03125 l -t * -s 22 -d 1826 -S UP -r 512000 -D 0.03125 l -t * -s 22 -d 1608 -S UP -r 512000 -D 0.03125 l -t * -s 22 -d 1827 -S UP -r 512000 -D 0.03125 l -t * -s 22 -d 1067 -S UP -r 512000 -D 0.03125 l -t * -s 22 -d 1333 -S UP -r 512000 -D 0.03125 l -t * -s 23 -d 57 -S UP -r 512000 -D 0.029296875 l -t * -s 24 -d 551 -S UP -r 512000 -D 0.0625 l -t * -s 24 -d 552 -S UP -r 512000 -D 0.0009765625 l -t * -s 24 -d 553 -S UP -r 512000 -D 0.0009765625 l -t * -s 24 -d 1263 -S UP -r 512000 -D 0.0009765625 l -t * -s 25 -d 59 -S UP -r 512000 -D 0.0078125 l -t * -s 25 -d 60 -S UP -r 512000 -D 0.0078125 l -t * -s 25 -d 1112 -S UP -r 512000 -D 0.03125 l -t * -s 25 -d 61 -S UP -r 512000 -D 0.03125 l -t * -s 25 -d 62 -S UP -r 512000 -D 0.03125 l -t * -s 26 -d 902 -S UP -r 512000 -D 0.0625 l -t * -s 26 -d 1014 -S UP -r 512000 -D 0.0078125 l -t * -s 26 -d 637 -S UP -r 512000 -D 0.015625 l -t * -s 26 -d 638 -S UP -r 512000 -D 0.0107421875 l -t * -s 26 -d 1224 -S UP -r 512000 -D 0.0625 l -t * -s 26 -d 1226 -S UP -r 512000 -D 0.015625 l -t * -s 26 -d 1356 -S UP -r 512000 -D 0.0009765625 l -t * -s 27 -d 1356 -S UP -r 512000 -D 0.03125 l -t * -s 29 -d 1356 -S UP -r 512000 -D 0.03125 l -t * -s 30 -d 1356 -S UP -r 512000 -D 0.0009765625 l -t * -s 31 -d 1356 -S UP -r 512000 -D 0.03125 l -t * -s 32 -d 66 -S UP -r 512000 -D 0.0009765625 l -t * -s 32 -d 1247 -S UP -r 512000 -D 0.0009765625 l -t * -s 33 -d 560 -S UP -r 512000 -D 0.0009765625 l -t * -s 33 -d 1116 -S UP -r 512000 -D 0.0009765625 l -t * -s 34 -d 1514 -S UP -r 512000 -D 0.0009765625 l -t * -s 34 -d 1280 -S UP -r 512000 -D 0.046875 l -t * -s 35 -d 74 -S UP -r 512000 -D 0.015625 l -t * -s 36 -d 74 -S UP -r 512000 -D 0.0625 l -t * -s 37 -d 76 -S UP -r 512000 -D 0.0009765625 l -t * -s 38 -d 78 -S UP -r 512000 -D 0.0234375 l -t * -s 38 -d 79 -S UP -r 512000 -D 0.0234375 l -t * -s 38 -d 80 -S UP -r 512000 -D 0.0234375 l -t * -s 38 -d 81 -S UP -r 512000 -D 0.0234375 l -t * -s 38 -d 82 -S UP -r 512000 -D 0.03515625 l -t * -s 39 -d 84 -S UP -r 512000 -D 0.0234375 l -t * -s 39 -d 85 -S UP -r 512000 -D 0.0234375 l -t * -s 39 -d 86 -S UP -r 512000 -D 0.0234375 l -t * -s 39 -d 87 -S UP -r 512000 -D 0.0234375 l -t * -s 39 -d 88 -S UP -r 512000 -D 0.0234375 l -t * -s 40 -d 79 -S UP -r 512000 -D 0.0234375 l -t * -s 40 -d 84 -S UP -r 512000 -D 0.0234375 l -t * -s 40 -d 92 -S UP -r 512000 -D 0.0234375 l -t * -s 40 -d 93 -S UP -r 512000 -D 0.0234375 l -t * -s 40 -d 94 -S UP -r 512000 -D 0.0234375 l -t * -s 40 -d 1287 -S UP -r 512000 -D 0.0078125 l -t * -s 42 -d 1545 -S UP -r 512000 -D 0.015625 l -t * -s 43 -d 1710 -S UP -r 512000 -D 0.0009765625 l -t * -s 43 -d 113 -S UP -r 512000 -D 0.0009765625 l -t * -s 44 -d 1664 -S UP -r 512000 -D 0.0009765625 l -t * -s 44 -d 113 -S UP -r 512000 -D 0.0009765625 l -t * -s 44 -d 45 -S UP -r 512000 -D 0.0009765625 l -t * -s 45 -d 113 -S UP -r 512000 -D 0.0009765625 l -t * -s 46 -d 113 -S UP -r 512000 -D 0.0009765625 l -t * -s 47 -d 1545 -S UP -r 512000 -D 0.03125 l -t * -s 47 -d 1434 -S UP -r 512000 -D 0.03125 l -t * -s 48 -d 117 -S UP -r 512000 -D 0.0009765625 l -t * -s 49 -d 120 -S UP -r 512000 -D 0.0078125 l -t * -s 49 -d 117 -S UP -r 512000 -D 0.0078125 l -t * -s 50 -d 1194 -S UP -r 512000 -D 0.0009765625 l -t * -s 52 -d 132 -S UP -r 512000 -D 0.0009765625 l -t * -s 53 -d 1608 -S UP -r 512000 -D 0.03125 l -t * -s 53 -d 1826 -S UP -r 512000 -D 0.03125 l -t * -s 53 -d 587 -S UP -r 512000 -D 0.03125 l -t * -s 53 -d 218 -S UP -r 512000 -D 0.03125 l -t * -s 53 -d 1828 -S UP -r 512000 -D 0.03125 l -t * -s 53 -d 589 -S UP -r 512000 -D 0.125 l -t * -s 53 -d 145 -S UP -r 512000 -D 0.03125 l -t * -s 53 -d 588 -S UP -r 512000 -D 0.03125 l -t * -s 53 -d 1323 -S UP -r 512000 -D 0.03125 l -t * -s 53 -d 1340 -S UP -r 512000 -D 0.0625 l -t * -s 53 -d 1432 -S UP -r 512000 -D 0.03125 l -t * -s 53 -d 1678 -S UP -r 512000 -D 0.0439453125 l -t * -s 54 -d 1829 -S UP -r 512000 -D 0.0009765625 l -t * -s 54 -d 137 -S UP -r 512000 -D 0.0625 l -t * -s 54 -d 138 -S UP -r 512000 -D 0.0625 l -t * -s 54 -d 1184 -S UP -r 512000 -D 0.0625 l -t * -s 54 -d 139 -S UP -r 512000 -D 0.0625 l -t * -s 54 -d 56 -S UP -r 512000 -D 0.0625 l -t * -s 54 -d 1788 -S UP -r 512000 -D 0.0625 l -t * -s 55 -d 141 -S UP -r 512000 -D 0.03125 l -t * -s 56 -d 99 -S UP -r 512000 -D 0.0625 l -t * -s 56 -d 107 -S UP -r 512000 -D 0.0625 l -t * -s 56 -d 1830 -S UP -r 512000 -D 0.03125 l -t * -s 56 -d 148 -S UP -r 512000 -D 0.0625 l -t * -s 56 -d 247 -S UP -r 512000 -D 0.0625 l -t * -s 57 -d 1545 -S UP -r 512000 -D 0.03125 l -t * -s 57 -d 152 -S UP -r 512000 -D 0.029296875 l -t * -s 58 -d 156 -S UP -r 512000 -D 0.03125 l -t * -s 58 -d 157 -S UP -r 512000 -D 0.03125 l -t * -s 58 -d 158 -S UP -r 512000 -D 0.03125 l -t * -s 58 -d 159 -S UP -r 512000 -D 0.03125 l -t * -s 58 -d 160 -S UP -r 512000 -D 0.03125 l -t * -s 58 -d 161 -S UP -r 512000 -D 0.03125 l -t * -s 58 -d 162 -S UP -r 512000 -D 0.0009765625 l -t * -s 59 -d 164 -S UP -r 512000 -D 0.0078125 l -t * -s 59 -d 165 -S UP -r 512000 -D 0.0078125 l -t * -s 59 -d 166 -S UP -r 512000 -D 0.03125 l -t * -s 59 -d 167 -S UP -r 512000 -D 0.03125 l -t * -s 60 -d 1405 -S UP -r 512000 -D 0.03125 l -t * -s 60 -d 695 -S UP -r 512000 -D 0.03125 l -t * -s 60 -d 818 -S UP -r 512000 -D 0.03125 l -t * -s 61 -d 177 -S UP -r 512000 -D 0.0009765625 l -t * -s 61 -d 176 -S UP -r 512000 -D 0.0009765625 l -t * -s 63 -d 179 -S UP -r 512000 -D 0.0234375 l -t * -s 64 -d 179 -S UP -r 512000 -D 0.0234375 l -t * -s 64 -d 180 -S UP -r 512000 -D 0.0234375 l -t * -s 65 -d 183 -S UP -r 512000 -D 0.0009765625 l -t * -s 65 -d 179 -S UP -r 512000 -D 0.03125 l -t * -s 65 -d 1462 -S UP -r 512000 -D 0.015625 l -t * -s 65 -d 1831 -S UP -r 512000 -D 0.015625 l -t * -s 65 -d 185 -S UP -r 512000 -D 0.03125 l -t * -s 65 -d 170 -S UP -r 512000 -D 0.03125 l -t * -s 65 -d 1169 -S UP -r 512000 -D 0.0078125 l -t * -s 67 -d 158 -S UP -r 512000 -D 0.03125 l -t * -s 67 -d 1126 -S UP -r 512000 -D 0.0068359375 l -t * -s 68 -d 1775 -S UP -r 512000 -D 0.015625 l -t * -s 68 -d 602 -S UP -r 512000 -D 0.0009765625 l -t * -s 68 -d 603 -S UP -r 512000 -D 0.0009765625 l -t * -s 68 -d 1248 -S UP -r 512000 -D 0.0009765625 l -t * -s 68 -d 1273 -S UP -r 512000 -D 0.0009765625 l -t * -s 69 -d 179 -S UP -r 512000 -D 0.125 l -t * -s 70 -d 193 -S UP -r 512000 -D 0.00390625 l -t * -s 71 -d 193 -S UP -r 512000 -D 0.0078125 l -t * -s 72 -d 1484 -S UP -r 512000 -D 0.0078125 l -t * -s 73 -d 1484 -S UP -r 512000 -D 0.0078125 l -t * -s 74 -d 1546 -S UP -r 512000 -D 0.0009765625 l -t * -s 74 -d 1775 -S UP -r 512000 -D 0.015625 l -t * -s 74 -d 1484 -S UP -r 512000 -D 0.046875 l -t * -s 74 -d 145 -S UP -r 512000 -D 0.0625 l -t * -s 74 -d 606 -S UP -r 512000 -D 0.015625 l -t * -s 74 -d 1357 -S UP -r 512000 -D 0.015625 l -t * -s 75 -d 1484 -S UP -r 512000 -D 0.03125 l -t * -s 76 -d 80 -S UP -r 512000 -D 0.0234375 l -t * -s 77 -d 195 -S UP -r 512000 -D 0.0078125 l -t * -s 77 -d 1832 -S UP -r 512000 -D 0.015625 l -t * -s 78 -d 201 -S UP -r 512000 -D 0.0078125 l -t * -s 78 -d 202 -S UP -r 512000 -D 0.0078125 l -t * -s 78 -d 203 -S UP -r 512000 -D 0.0078125 l -t * -s 78 -d 204 -S UP -r 512000 -D 0.0078125 l -t * -s 79 -d 206 -S UP -r 512000 -D 0.0234375 l -t * -s 79 -d 207 -S UP -r 512000 -D 0.0078125 l -t * -s 79 -d 209 -S UP -r 512000 -D 0.0234375 l -t * -s 79 -d 210 -S UP -r 512000 -D 0.0234375 l -t * -s 79 -d 211 -S UP -r 512000 -D 0.0234375 l -t * -s 80 -d 206 -S UP -r 512000 -D 0.0234375 l -t * -s 80 -d 214 -S UP -r 512000 -D 0.0234375 l -t * -s 80 -d 1721 -S UP -r 512000 -D 0.0234375 l -t * -s 80 -d 215 -S UP -r 512000 -D 0.0234375 l -t * -s 81 -d 1783 -S UP -r 512000 -D 0.0009765625 l -t * -s 81 -d 110 -S UP -r 512000 -D 0.0009765625 l -t * -s 81 -d 1781 -S UP -r 512000 -D 0.0009765625 l -t * -s 81 -d 1688 -S UP -r 512000 -D 0.0009765625 l -t * -s 81 -d 113 -S UP -r 512000 -D 0.0009765625 l -t * -s 82 -d 1274 -S UP -r 512000 -D 0.0009765625 l -t * -s 82 -d 1506 -S UP -r 512000 -D 0.03515625 l -t * -s 83 -d 217 -S UP -r 512000 -D 0.0009765625 l -t * -s 83 -d 218 -S UP -r 512000 -D 0.03125 l -t * -s 83 -d 1068 -S UP -r 512000 -D 0.0009765625 l -t * -s 83 -d 219 -S UP -r 512000 -D 0.0009765625 l -t * -s 84 -d 220 -S UP -r 512000 -D 0.0078125 l -t * -s 84 -d 221 -S UP -r 512000 -D 0.0234375 l -t * -s 84 -d 222 -S UP -r 512000 -D 0.0234375 l -t * -s 84 -d 223 -S UP -r 512000 -D 0.0234375 l -t * -s 85 -d 224 -S UP -r 512000 -D 0.0009765625 l -t * -s 88 -d 225 -S UP -r 512000 -D 0.0234375 l -t * -s 89 -d 226 -S UP -r 512000 -D 0.015625 l -t * -s 90 -d 227 -S UP -r 512000 -D 0.0625 l -t * -s 90 -d 229 -S UP -r 512000 -D 0.0009765625 l -t * -s 90 -d 230 -S UP -r 512000 -D 0.0009765625 l -t * -s 91 -d 230 -S UP -r 512000 -D 0.0009765625 l -t * -s 93 -d 231 -S UP -r 512000 -D 0.0234375 l -t * -s 95 -d 232 -S UP -r 512000 -D 0.0009765625 l -t * -s 96 -d 232 -S UP -r 512000 -D 0.0009765625 l -t * -s 97 -d 1596 -S UP -r 512000 -D 0.0009765625 l -t * -s 97 -d 1594 -S UP -r 512000 -D 0.0009765625 l -t * -s 97 -d 1195 -S UP -r 512000 -D 0.015625 l -t * -s 98 -d 1596 -S UP -r 512000 -D 0.046875 l -t * -s 99 -d 1596 -S UP -r 512000 -D 0.046875 l -t * -s 99 -d 237 -S UP -r 512000 -D 0.0625 l -t * -s 99 -d 238 -S UP -r 512000 -D 0.046875 l -t * -s 99 -d 156 -S UP -r 512000 -D 0.0625 l -t * -s 99 -d 239 -S UP -r 512000 -D 0.015625 l -t * -s 99 -d 240 -S UP -r 512000 -D 0.0078125 l -t * -s 99 -d 1358 -S UP -r 512000 -D 0.0078125 l -t * -s 100 -d 1596 -S UP -r 512000 -D 0.015625 l -t * -s 100 -d 241 -S UP -r 512000 -D 0.015625 l -t * -s 101 -d 1596 -S UP -r 512000 -D 0.03125 l -t * -s 102 -d 1596 -S UP -r 512000 -D 0.03125 l -t * -s 103 -d 1596 -S UP -r 512000 -D 0.03125 l -t * -s 103 -d 244 -S UP -r 512000 -D 0.03125 l -t * -s 104 -d 1596 -S UP -r 512000 -D 0.03125 l -t * -s 105 -d 1596 -S UP -r 512000 -D 0.03125 l -t * -s 106 -d 1596 -S UP -r 512000 -D 0.03125 l -t * -s 106 -d 245 -S UP -r 512000 -D 0.03125 l -t * -s 107 -d 1593 -S UP -r 512000 -D 0.03125 l -t * -s 107 -d 1833 -S UP -r 512000 -D 0.0625 l -t * -s 107 -d 246 -S UP -r 512000 -D 0.0390625 l -t * -s 107 -d 118 -S UP -r 512000 -D 0.0390625 l -t * -s 107 -d 119 -S UP -r 512000 -D 0.0390625 l -t * -s 107 -d 1129 -S UP -r 512000 -D 0.0390625 l -t * -s 107 -d 156 -S UP -r 512000 -D 0.046875 l -t * -s 107 -d 293 -S UP -r 512000 -D 0.046875 l -t * -s 107 -d 1596 -S UP -r 512000 -D 0.046875 l -t * -s 107 -d 247 -S UP -r 512000 -D 0.015625 l -t * -s 108 -d 305 -S UP -r 512000 -D 0.0009765625 l -t * -s 108 -d 1416 -S UP -r 512000 -D 0.0009765625 l -t * -s 109 -d 1753 -S UP -r 512000 -D 0.0009765625 l -t * -s 109 -d 1754 -S UP -r 512000 -D 0.0009765625 l -t * -s 109 -d 1622 -S UP -r 512000 -D 0.0009765625 l -t * -s 109 -d 1290 -S UP -r 512000 -D 0.0009765625 l -t * -s 110 -d 1753 -S UP -r 512000 -D 0.0009765625 l -t * -s 110 -d 1622 -S UP -r 512000 -D 0.0009765625 l -t * -s 110 -d 1783 -S UP -r 512000 -D 0.0009765625 l -t * -s 110 -d 1781 -S UP -r 512000 -D 0.0009765625 l -t * -s 110 -d 113 -S UP -r 512000 -D 0.0009765625 l -t * -s 110 -d 1688 -S UP -r 512000 -D 0.0009765625 l -t * -s 111 -d 1834 -S UP -r 512000 -D 0.0009765625 l -t * -s 111 -d 248 -S UP -r 512000 -D 0.03125 l -t * -s 112 -d 248 -S UP -r 512000 -D 0.03125 l -t * -s 113 -d 1783 -S UP -r 512000 -D 0.0009765625 l -t * -s 113 -d 1781 -S UP -r 512000 -D 0.0009765625 l -t * -s 113 -d 1688 -S UP -r 512000 -D 0.0009765625 l -t * -s 114 -d 254 -S UP -r 512000 -D 0.0009765625 l -t * -s 115 -d 1835 -S UP -r 512000 -D 0.0009765625 l -t * -s 115 -d 1836 -S UP -r 512000 -D 0.0009765625 l -t * -s 115 -d 254 -S UP -r 512000 -D 0.0009765625 l -t * -s 116 -d 156 -S UP -r 512000 -D 0.0625 l -t * -s 116 -d 258 -S UP -r 512000 -D 0.03125 l -t * -s 116 -d 259 -S UP -r 512000 -D 0.03125 l -t * -s 116 -d 260 -S UP -r 512000 -D 0.03125 l -t * -s 116 -d 261 -S UP -r 512000 -D 0.03125 l -t * -s 116 -d 1837 -S UP -r 512000 -D 0.03125 l -t * -s 116 -d 1692 -S UP -r 512000 -D 0.0009765625 l -t * -s 118 -d 1104 -S UP -r 512000 -D 0.005859375 l -t * -s 118 -d 268 -S UP -r 512000 -D 0.005859375 l -t * -s 118 -d 269 -S UP -r 512000 -D 0.005859375 l -t * -s 118 -d 270 -S UP -r 512000 -D 0.005859375 l -t * -s 119 -d 272 -S UP -r 512000 -D 0.0078125 l -t * -s 119 -d 273 -S UP -r 512000 -D 0.0078125 l -t * -s 119 -d 274 -S UP -r 512000 -D 0.015625 l -t * -s 119 -d 1463 -S UP -r 512000 -D 0.015625 l -t * -s 119 -d 275 -S UP -r 512000 -D 0.0078125 l -t * -s 119 -d 1170 -S UP -r 512000 -D 0.03125 l -t * -s 120 -d 283 -S UP -r 512000 -D 0.0009765625 l -t * -s 120 -d 282 -S UP -r 512000 -D 0.0009765625 l -t * -s 120 -d 284 -S UP -r 512000 -D 0.0078125 l -t * -s 121 -d 156 -S UP -r 512000 -D 0.0625 l -t * -s 121 -d 285 -S UP -r 512000 -D 0.0009765625 l -t * -s 122 -d 285 -S UP -r 512000 -D 0.0009765625 l -t * -s 123 -d 285 -S UP -r 512000 -D 0.0009765625 l -t * -s 125 -d 1287 -S UP -r 512000 -D 0.00390625 l -t * -s 126 -d 1287 -S UP -r 512000 -D 0.00390625 l -t * -s 127 -d 289 -S UP -r 512000 -D 0.0009765625 l -t * -s 128 -d 289 -S UP -r 512000 -D 0.0087890625 l -t * -s 128 -d 1582 -S UP -r 512000 -D 0.0009765625 l -t * -s 129 -d 289 -S UP -r 512000 -D 0.0087890625 l -t * -s 130 -d 289 -S UP -r 512000 -D 0.0087890625 l -t * -s 131 -d 289 -S UP -r 512000 -D 0.0087890625 l -t * -s 132 -d 249 -S UP -r 512000 -D 0.03125 l -t * -s 133 -d 290 -S UP -r 512000 -D 0.0009765625 l -t * -s 134 -d 290 -S UP -r 512000 -D 0.0009765625 l -t * -s 135 -d 289 -S UP -r 512000 -D 0.0087890625 l -t * -s 136 -d 292 -S UP -r 512000 -D 0.0009765625 l -t * -s 137 -d 1022 -S UP -r 512000 -D 0.0625 l -t * -s 137 -d 432 -S UP -r 512000 -D 0.03125 l -t * -s 137 -d 506 -S UP -r 512000 -D 0.00390625 l -t * -s 137 -d 969 -S UP -r 512000 -D 0.001953125 l -t * -s 138 -d 226 -S UP -r 512000 -D 0.03125 l -t * -s 138 -d 295 -S UP -r 512000 -D 0.03125 l -t * -s 138 -d 296 -S UP -r 512000 -D 0.03125 l -t * -s 138 -d 297 -S UP -r 512000 -D 0.03125 l -t * -s 138 -d 1309 -S UP -r 512000 -D 0.015625 l -t * -s 139 -d 1304 -S UP -r 512000 -D 0.0009765625 l -t * -s 139 -d 298 -S UP -r 512000 -D 0.03125 l -t * -s 139 -d 299 -S UP -r 512000 -D 0.0625 l -t * -s 139 -d 300 -S UP -r 512000 -D 0.0625 l -t * -s 139 -d 1351 -S UP -r 512000 -D 0.0625 l -t * -s 139 -d 1196 -S UP -r 512000 -D 0.0625 l -t * -s 141 -d 249 -S UP -r 512000 -D 0.0009765625 l -t * -s 141 -d 232 -S UP -r 512000 -D 0.03125 l -t * -s 141 -d 1416 -S UP -r 512000 -D 0.03125 l -t * -s 141 -d 1838 -S UP -r 512000 -D 0.03125 l -t * -s 141 -d 1839 -S UP -r 512000 -D 0.0625 l -t * -s 141 -d 612 -S UP -r 512000 -D 0.0625 l -t * -s 141 -d 254 -S UP -r 512000 -D 0.09375 l -t * -s 141 -d 1601 -S UP -r 512000 -D 0.0625 l -t * -s 141 -d 1762 -S UP -r 512000 -D 0.0625 l -t * -s 141 -d 248 -S UP -r 512000 -D 0.0625 l -t * -s 141 -d 1258 -S UP -r 512000 -D 0.015625 l -t * -s 141 -d 1407 -S UP -r 512000 -D 0.0625 l -t * -s 142 -d 150 -S UP -r 512000 -D 0.0009765625 l -t * -s 142 -d 143 -S UP -r 512000 -D 0.0009765625 l -t * -s 143 -d 150 -S UP -r 512000 -D 0.0009765625 l -t * -s 143 -d 309 -S UP -r 512000 -D 0.03125 l -t * -s 143 -d 311 -S UP -r 512000 -D 0.015625 l -t * -s 143 -d 312 -S UP -r 512000 -D 0.015625 l -t * -s 143 -d 310 -S UP -r 512000 -D 0.0009765625 l -t * -s 144 -d 1087 -S UP -r 512000 -D 0.0009765625 l -t * -s 144 -d 145 -S UP -r 512000 -D 0.03125 l -t * -s 144 -d 1603 -S UP -r 512000 -D 0.0009765625 l -t * -s 145 -d 1603 -S UP -r 512000 -D 0.03125 l -t * -s 145 -d 1840 -S UP -r 512000 -D 0.03125 l -t * -s 145 -d 1833 -S UP -r 512000 -D 0.03125 l -t * -s 145 -d 313 -S UP -r 512000 -D 0.03125 l -t * -s 145 -d 314 -S UP -r 512000 -D 0.03125 l -t * -s 145 -d 146 -S UP -r 512000 -D 0.03125 l -t * -s 146 -d 318 -S UP -r 512000 -D 0.0009765625 l -t * -s 146 -d 320 -S UP -r 512000 -D 0.03125 l -t * -s 146 -d 321 -S UP -r 512000 -D 0.0078125 l -t * -s 146 -d 193 -S UP -r 512000 -D 0.015625 l -t * -s 146 -d 322 -S UP -r 512000 -D 0.03125 l -t * -s 146 -d 195 -S UP -r 512000 -D 0.03125 l -t * -s 146 -d 323 -S UP -r 512000 -D 0.0078125 l -t * -s 146 -d 324 -S UP -r 512000 -D 0.0078125 l -t * -s 146 -d 1231 -S UP -r 512000 -D 0.0625 l -t * -s 146 -d 1307 -S UP -r 512000 -D 0.03125 l -t * -s 149 -d 1525 -S UP -r 512000 -D 0.0625 l -t * -s 149 -d 615 -S UP -r 512000 -D 0.0625 l -t * -s 149 -d 1356 -S UP -r 512000 -D 0.0625 l -t * -s 149 -d 1350 -S UP -r 512000 -D 0.0625 l -t * -s 149 -d 617 -S UP -r 512000 -D 0.0625 l -t * -s 149 -d 1842 -S UP -r 512000 -D 0.0625 l -t * -s 149 -d 619 -S UP -r 512000 -D 0.0625 l -t * -s 149 -d 620 -S UP -r 512000 -D 0.0625 l -t * -s 149 -d 621 -S UP -r 512000 -D 0.0625 l -t * -s 149 -d 1197 -S UP -r 512000 -D 0.0625 l -t * -s 149 -d 1056 -S UP -r 512000 -D 0.0625 l -t * -s 149 -d 953 -S UP -r 512000 -D 0.0625 l -t * -s 149 -d 613 -S UP -r 512000 -D 0.0625 l -t * -s 149 -d 614 -S UP -r 512000 -D 0.0625 l -t * -s 149 -d 616 -S UP -r 512000 -D 0.0009765625 l -t * -s 149 -d 618 -S UP -r 512000 -D 0.0009765625 l -t * -s 149 -d 1160 -S UP -r 512000 -D 0.03125 l -t * -s 149 -d 1198 -S UP -r 512000 -D 0.0009765625 l -t * -s 149 -d 1509 -S UP -r 512000 -D 0.0625 l -t * -s 149 -d 1656 -S UP -r 512000 -D 0.0009765625 l -t * -s 152 -d 681 -S UP -r 512000 -D 0.029296875 l -t * -s 152 -d 1322 -S UP -r 512000 -D 0.029296875 l -t * -s 153 -d 311 -S UP -r 512000 -D 0.0009765625 l -t * -s 154 -d 326 -S UP -r 512000 -D 0.0078125 l -t * -s 155 -d 326 -S UP -r 512000 -D 0.03125 l -t * -s 155 -d 330 -S UP -r 512000 -D 0.03125 l -t * -s 156 -d 1843 -S UP -r 512000 -D 0.03125 l -t * -s 156 -d 293 -S UP -r 512000 -D 0.03125 l -t * -s 156 -d 331 -S UP -r 512000 -D 0.03125 l -t * -s 156 -d 332 -S UP -r 512000 -D 0.03125 l -t * -s 156 -d 1585 -S UP -r 512000 -D 0.03125 l -t * -s 156 -d 1844 -S UP -r 512000 -D 0.03125 l -t * -s 156 -d 294 -S UP -r 512000 -D 0.03125 l -t * -s 156 -d 1833 -S UP -r 512000 -D 0.0625 l -t * -s 156 -d 333 -S UP -r 512000 -D 0.03125 l -t * -s 156 -d 1657 -S UP -r 512000 -D 0.0625 l -t * -s 158 -d 332 -S UP -r 512000 -D 0.03125 l -t * -s 159 -d 332 -S UP -r 512000 -D 0.03125 l -t * -s 159 -d 339 -S UP -r 512000 -D 0.03125 l -t * -s 159 -d 340 -S UP -r 512000 -D 0.0009765625 l -t * -s 161 -d 332 -S UP -r 512000 -D 0.03125 l -t * -s 161 -d 1225 -S UP -r 512000 -D 0.001953125 l -t * -s 163 -d 342 -S UP -r 512000 -D 0.03125 l -t * -s 163 -d 1845 -S UP -r 512000 -D 0.03125 l -t * -s 164 -d 623 -S UP -r 512000 -D 0.0078125 l -t * -s 164 -d 624 -S UP -r 512000 -D 0.03125 l -t * -s 164 -d 625 -S UP -r 512000 -D 0.03125 l -t * -s 164 -d 626 -S UP -r 512000 -D 0.03125 l -t * -s 165 -d 346 -S UP -r 512000 -D 0.03125 l -t * -s 165 -d 347 -S UP -r 512000 -D 0.03125 l -t * -s 165 -d 1633 -S UP -r 512000 -D 0.03125 l -t * -s 165 -d 345 -S UP -r 512000 -D 0.03125 l -t * -s 167 -d 348 -S UP -r 512000 -D 0.0166015625 l -t * -s 168 -d 1690 -S UP -r 512000 -D 0.03125 l -t * -s 168 -d 174 -S UP -r 512000 -D 0.03125 l -t * -s 168 -d 1383 -S UP -r 512000 -D 0.03125 l -t * -s 168 -d 1562 -S UP -r 512000 -D 0.03125 l -t * -s 168 -d 353 -S UP -r 512000 -D 0.03125 l -t * -s 168 -d 355 -S UP -r 512000 -D 0.0009765625 l -t * -s 168 -d 354 -S UP -r 512000 -D 0.0009765625 l -t * -s 169 -d 353 -S UP -r 512000 -D 0.015625 l -t * -s 169 -d 174 -S UP -r 512000 -D 0.03125 l -t * -s 169 -d 356 -S UP -r 512000 -D 0.03125 l -t * -s 169 -d 357 -S UP -r 512000 -D 0.015625 l -t * -s 169 -d 1471 -S UP -r 512000 -D 0.015625 l -t * -s 170 -d 308 -S UP -r 512000 -D 0.0009765625 l -t * -s 170 -d 307 -S UP -r 512000 -D 0.0009765625 l -t * -s 170 -d 353 -S UP -r 512000 -D 0.03125 l -t * -s 171 -d 172 -S UP -r 512000 -D 0.0009765625 l -t * -s 171 -d 1336 -S UP -r 512000 -D 0.0009765625 l -t * -s 171 -d 353 -S UP -r 512000 -D 0.0009765625 l -t * -s 172 -d 1336 -S UP -r 512000 -D 0.0009765625 l -t * -s 172 -d 353 -S UP -r 512000 -D 0.0009765625 l -t * -s 173 -d 353 -S UP -r 512000 -D 0.0009765625 l -t * -s 174 -d 358 -S UP -r 512000 -D 0.001953125 l -t * -s 174 -d 359 -S UP -r 512000 -D 0.03125 l -t * -s 174 -d 361 -S UP -r 512000 -D 0.03125 l -t * -s 174 -d 362 -S UP -r 512000 -D 0.03125 l -t * -s 174 -d 353 -S UP -r 512000 -D 0.03125 l -t * -s 174 -d 363 -S UP -r 512000 -D 0.03125 l -t * -s 174 -d 1372 -S UP -r 512000 -D 0.001953125 l -t * -s 174 -d 1373 -S UP -r 512000 -D 0.001953125 l -t * -s 174 -d 1641 -S UP -r 512000 -D 0.001953125 l -t * -s 174 -d 1715 -S UP -r 512000 -D 0.001953125 l -t * -s 175 -d 353 -S UP -r 512000 -D 0.125 l -t * -s 178 -d 364 -S UP -r 512000 -D 0.0009765625 l -t * -s 179 -d 1846 -S UP -r 512000 -D 0.015625 l -t * -s 179 -d 1847 -S UP -r 512000 -D 0.015625 l -t * -s 181 -d 1524 -S UP -r 512000 -D 0.0009765625 l -t * -s 181 -d 366 -S UP -r 512000 -D 0.0009765625 l -t * -s 181 -d 365 -S UP -r 512000 -D 0.0009765625 l -t * -s 181 -d 1592 -S UP -r 512000 -D 0.0009765625 l -t * -s 181 -d 367 -S UP -r 512000 -D 0.0009765625 l -t * -s 181 -d 368 -S UP -r 512000 -D 0.0009765625 l -t * -s 182 -d 368 -S UP -r 512000 -D 0.03125 l -t * -s 183 -d 1552 -S UP -r 512000 -D 0.03125 l -t * -s 183 -d 1241 -S UP -r 512000 -D 0.03125 l -t * -s 184 -d 304 -S UP -r 512000 -D 0.0009765625 l -t * -s 187 -d 369 -S UP -r 512000 -D 0.0009765625 l -t * -s 188 -d 370 -S UP -r 512000 -D 0.0009765625 l -t * -s 189 -d 370 -S UP -r 512000 -D 0.00390625 l -t * -s 190 -d 370 -S UP -r 512000 -D 0.0078125 l -t * -s 190 -d 1446 -S UP -r 512000 -D 0.0078125 l -t * -s 191 -d 370 -S UP -r 512000 -D 0.0078125 l -t * -s 194 -d 371 -S UP -r 512000 -D 0.0078125 l -t * -s 196 -d 372 -S UP -r 512000 -D 0.0009765625 l -t * -s 197 -d 372 -S UP -r 512000 -D 0.0009765625 l -t * -s 198 -d 200 -S UP -r 512000 -D 0.0009765625 l -t * -s 198 -d 372 -S UP -r 512000 -D 0.0009765625 l -t * -s 199 -d 372 -S UP -r 512000 -D 0.0009765625 l -t * -s 205 -d 246 -S UP -r 512000 -D 0.015625 l -t * -s 205 -d 374 -S UP -r 512000 -D 0.0078125 l -t * -s 205 -d 373 -S UP -r 512000 -D 0.0009765625 l -t * -s 206 -d 375 -S UP -r 512000 -D 0.0234375 l -t * -s 206 -d 1171 -S UP -r 512000 -D 0.0234375 l -t * -s 206 -d 377 -S UP -r 512000 -D 0.0234375 l -t * -s 206 -d 378 -S UP -r 512000 -D 0.0234375 l -t * -s 206 -d 1695 -S UP -r 512000 -D 0.0234375 l -t * -s 207 -d 379 -S UP -r 512000 -D 0.00390625 l -t * -s 207 -d 380 -S UP -r 512000 -D 0.00390625 l -t * -s 207 -d 382 -S UP -r 512000 -D 0.00390625 l -t * -s 207 -d 381 -S UP -r 512000 -D 0.00390625 l -t * -s 208 -d 209 -S UP -r 512000 -D 0.0009765625 l -t * -s 208 -d 385 -S UP -r 512000 -D 0.0029296875 l -t * -s 208 -d 384 -S UP -r 512000 -D 0.0029296875 l -t * -s 209 -d 386 -S UP -r 512000 -D 0.0078125 l -t * -s 209 -d 383 -S UP -r 512000 -D 0.0029296875 l -t * -s 209 -d 1232 -S UP -r 512000 -D 0.0029296875 l -t * -s 210 -d 387 -S UP -r 512000 -D 0.0078125 l -t * -s 210 -d 388 -S UP -r 512000 -D 0.0078125 l -t * -s 210 -d 389 -S UP -r 512000 -D 0.0078125 l -t * -s 211 -d 1848 -S UP -r 512000 -D 0.015625 l -t * -s 212 -d 325 -S UP -r 512000 -D 0.015625 l -t * -s 212 -d 246 -S UP -r 512000 -D 0.015625 l -t * -s 213 -d 246 -S UP -r 512000 -D 0.015625 l -t * -s 213 -d 1294 -S UP -r 512000 -D 0.0625 l -t * -s 213 -d 328 -S UP -r 512000 -D 0.015625 l -t * -s 213 -d 327 -S UP -r 512000 -D 0.0078125 l -t * -s 213 -d 1849 -S UP -r 512000 -D 0.015625 l -t * -s 213 -d 329 -S UP -r 512000 -D 0.0078125 l -t * -s 213 -d 271 -S UP -r 512000 -D 0.015625 l -t * -s 217 -d 1759 -S UP -r 512000 -D 0.0009765625 l -t * -s 218 -d 1759 -S UP -r 512000 -D 0.03125 l -t * -s 218 -d 588 -S UP -r 512000 -D 0.03125 l -t * -s 220 -d 398 -S UP -r 512000 -D 0.0009765625 l -t * -s 221 -d 399 -S UP -r 512000 -D 0.015625 l -t * -s 221 -d 1510 -S UP -r 512000 -D 0.015625 l -t * -s 222 -d 400 -S UP -r 512000 -D 0.0234375 l -t * -s 224 -d 1223 -S UP -r 512000 -D 0.0078125 l -t * -s 227 -d 237 -S UP -r 512000 -D 0.0625 l -t * -s 227 -d 291 -S UP -r 512000 -D 0.0625 l -t * -s 227 -d 401 -S UP -r 512000 -D 0.0625 l -t * -s 227 -d 1239 -S UP -r 512000 -D 0.0625 l -t * -s 227 -d 228 -S UP -r 512000 -D 0.0625 l -t * -s 232 -d 1851 -S UP -r 512000 -D 0.0009765625 l -t * -s 233 -d 1594 -S UP -r 512000 -D 0.0009765625 l -t * -s 233 -d 1819 -S UP -r 512000 -D 0.0009765625 l -t * -s 234 -d 1645 -S UP -r 512000 -D 0.0009765625 l -t * -s 234 -d 1080 -S UP -r 512000 -D 0.0009765625 l -t * -s 234 -d 1594 -S UP -r 512000 -D 0.0625 l -t * -s 234 -d 405 -S UP -r 512000 -D 0.0625 l -t * -s 234 -d 404 -S UP -r 512000 -D 0.0009765625 l -t * -s 234 -d 1095 -S UP -r 512000 -D 0.146484375 l -t * -s 235 -d 1596 -S UP -r 512000 -D 0.03125 l -t * -s 235 -d 1195 -S UP -r 512000 -D 0.015625 l -t * -s 236 -d 1594 -S UP -r 512000 -D 0.015625 l -t * -s 236 -d 1195 -S UP -r 512000 -D 0.015625 l -t * -s 237 -d 291 -S UP -r 512000 -D 0.0625 l -t * -s 237 -d 1249 -S UP -r 512000 -D 0.0625 l -t * -s 238 -d 406 -S UP -r 512000 -D 0.0234375 l -t * -s 238 -d 407 -S UP -r 512000 -D 0.0234375 l -t * -s 238 -d 411 -S UP -r 512000 -D 0.0234375 l -t * -s 238 -d 412 -S UP -r 512000 -D 0.0234375 l -t * -s 238 -d 408 -S UP -r 512000 -D 0.0234375 l -t * -s 238 -d 409 -S UP -r 512000 -D 0.03125 l -t * -s 238 -d 410 -S UP -r 512000 -D 0.0234375 l -t * -s 239 -d 413 -S UP -r 512000 -D 0.009765625 l -t * -s 239 -d 414 -S UP -r 512000 -D 0.009765625 l -t * -s 239 -d 415 -S UP -r 512000 -D 0.009765625 l -t * -s 239 -d 1441 -S UP -r 512000 -D 0.009765625 l -t * -s 239 -d 1547 -S UP -r 512000 -D 0.009765625 l -t * -s 239 -d 1553 -S UP -r 512000 -D 0.009765625 l -t * -s 240 -d 1358 -S UP -r 512000 -D 0.0009765625 l -t * -s 242 -d 417 -S UP -r 512000 -D 0.0009765625 l -t * -s 242 -d 1595 -S UP -r 512000 -D 0.015625 l -t * -s 243 -d 1595 -S UP -r 512000 -D 0.015625 l -t * -s 245 -d 1852 -S UP -r 512000 -D 0.0009765625 l -t * -s 246 -d 1853 -S UP -r 512000 -D 0.015625 l -t * -s 246 -d 1610 -S UP -r 512000 -D 0.01171875 l -t * -s 247 -d 421 -S UP -r 512000 -D 0.00390625 l -t * -s 247 -d 293 -S UP -r 512000 -D 0.046875 l -t * -s 247 -d 1594 -S UP -r 512000 -D 0.0625 l -t * -s 249 -d 643 -S UP -r 512000 -D 0.0625 l -t * -s 249 -d 623 -S UP -r 512000 -D 0.0625 l -t * -s 249 -d 644 -S UP -r 512000 -D 0.0625 l -t * -s 249 -d 1545 -S UP -r 512000 -D 0.03125 l -t * -s 249 -d 784 -S UP -r 512000 -D 0.0625 l -t * -s 249 -d 645 -S UP -r 512000 -D 0.0625 l -t * -s 249 -d 676 -S UP -r 512000 -D 0.0625 l -t * -s 249 -d 646 -S UP -r 512000 -D 0.0625 l -t * -s 249 -d 647 -S UP -r 512000 -D 0.125 l -t * -s 249 -d 284 -S UP -r 512000 -D 0.03125 l -t * -s 249 -d 642 -S UP -r 512000 -D 0.0009765625 l -t * -s 250 -d 1545 -S UP -r 512000 -D 0.015625 l -t * -s 250 -d 422 -S UP -r 512000 -D 0.015625 l -t * -s 250 -d 1130 -S UP -r 512000 -D 0.015625 l -t * -s 251 -d 1545 -S UP -r 512000 -D 0.015625 l -t * -s 251 -d 424 -S UP -r 512000 -D 0.0078125 l -t * -s 252 -d 1545 -S UP -r 512000 -D 0.03125 l -t * -s 252 -d 1507 -S UP -r 512000 -D 0.0009765625 l -t * -s 252 -d 1566 -S UP -r 512000 -D 0.0009765625 l -t * -s 253 -d 1545 -S UP -r 512000 -D 0.03125 l -t * -s 253 -d 1854 -S UP -r 512000 -D 0.03125 l -t * -s 255 -d 1664 -S UP -r 512000 -D 0.0009765625 l -t * -s 255 -d 1685 -S UP -r 512000 -D 0.0009765625 l -t * -s 255 -d 1781 -S UP -r 512000 -D 0.0009765625 l -t * -s 256 -d 1182 -S UP -r 512000 -D 0.0009765625 l -t * -s 257 -d 392 -S UP -r 512000 -D 0.0078125 l -t * -s 258 -d 425 -S UP -r 512000 -D 0.015625 l -t * -s 262 -d 1305 -S UP -r 512000 -D 0.0009765625 l -t * -s 263 -d 1305 -S UP -r 512000 -D 0.0009765625 l -t * -s 264 -d 1305 -S UP -r 512000 -D 0.0009765625 l -t * -s 265 -d 1305 -S UP -r 512000 -D 0.0009765625 l -t * -s 267 -d 395 -S UP -r 512000 -D 0.015625 l -t * -s 268 -d 341 -S UP -r 512000 -D 0.005859375 l -t * -s 268 -d 1437 -S UP -r 512000 -D 0.005859375 l -t * -s 269 -d 1199 -S UP -r 512000 -D 0.005859375 l -t * -s 269 -d 334 -S UP -r 512000 -D 0.005859375 l -t * -s 270 -d 335 -S UP -r 512000 -D 0.0009765625 l -t * -s 270 -d 338 -S UP -r 512000 -D 0.0009765625 l -t * -s 270 -d 336 -S UP -r 512000 -D 0.0009765625 l -t * -s 270 -d 337 -S UP -r 512000 -D 0.0009765625 l -t * -s 273 -d 343 -S UP -r 512000 -D 0.0078125 l -t * -s 273 -d 344 -S UP -r 512000 -D 0.0078125 l -t * -s 274 -d 1551 -S UP -r 512000 -D 0.0009765625 l -t * -s 276 -d 1104 -S UP -r 512000 -D 0.0009765625 l -t * -s 276 -d 1319 -S UP -r 512000 -D 0.0009765625 l -t * -s 277 -d 1104 -S UP -r 512000 -D 0.0009765625 l -t * -s 278 -d 1104 -S UP -r 512000 -D 0.0009765625 l -t * -s 279 -d 1104 -S UP -r 512000 -D 0.0009765625 l -t * -s 279 -d 1342 -S UP -r 512000 -D 0.0009765625 l -t * -s 280 -d 1104 -S UP -r 512000 -D 0.005859375 l -t * -s 280 -d 427 -S UP -r 512000 -D 0.0029296875 l -t * -s 281 -d 1104 -S UP -r 512000 -D 0.005859375 l -t * -s 282 -d 283 -S UP -r 512000 -D 0.0009765625 l -t * -s 284 -d 390 -S UP -r 512000 -D 0.0078125 l -t * -s 284 -d 1089 -S UP -r 512000 -D 0.0078125 l -t * -s 284 -d 391 -S UP -r 512000 -D 0.015625 l -t * -s 285 -d 286 -S UP -r 512000 -D 0.0009765625 l -t * -s 285 -d 288 -S UP -r 512000 -D 0.0009765625 l -t * -s 285 -d 287 -S UP -r 512000 -D 0.0009765625 l -t * -s 286 -d 288 -S UP -r 512000 -D 0.0009765625 l -t * -s 286 -d 287 -S UP -r 512000 -D 0.0009765625 l -t * -s 287 -d 288 -S UP -r 512000 -D 0.0009765625 l -t * -s 289 -d 290 -S UP -r 512000 -D 0.0087890625 l -t * -s 289 -d 1180 -S UP -r 512000 -D 0.0087890625 l -t * -s 291 -d 1132 -S UP -r 512000 -D 0.015625 l -t * -s 291 -d 1133 -S UP -r 512000 -D 0.015625 l -t * -s 292 -d 592 -S UP -r 512000 -D 0.03125 l -t * -s 293 -d 294 -S UP -r 512000 -D 0.03125 l -t * -s 293 -d 1657 -S UP -r 512000 -D 0.0625 l -t * -s 293 -d 1843 -S UP -r 512000 -D 0.03125 l -t * -s 296 -d 500 -S UP -r 512000 -D 0.015625 l -t * -s 296 -d 1586 -S UP -r 512000 -D 0.03125 l -t * -s 296 -d 1618 -S UP -r 512000 -D 0.015625 l -t * -s 298 -d 942 -S UP -r 512000 -D 0.03125 l -t * -s 298 -d 1001 -S UP -r 512000 -D 0.03125 l -t * -s 298 -d 831 -S UP -r 512000 -D 0.03125 l -t * -s 298 -d 899 -S UP -r 512000 -D 0.015625 l -t * -s 298 -d 926 -S UP -r 512000 -D 0.0009765625 l -t * -s 298 -d 1686 -S UP -r 512000 -D 0.0009765625 l -t * -s 298 -d 643 -S UP -r 512000 -D 0.0625 l -t * -s 298 -d 925 -S UP -r 512000 -D 0.0625 l -t * -s 298 -d 921 -S UP -r 512000 -D 0.0009765625 l -t * -s 298 -d 927 -S UP -r 512000 -D 0.03125 l -t * -s 298 -d 1812 -S UP -r 512000 -D 0.03125 l -t * -s 301 -d 1351 -S UP -r 512000 -D 0.0009765625 l -t * -s 303 -d 476 -S UP -r 512000 -D 0.015625 l -t * -s 303 -d 1855 -S UP -r 512000 -D 0.015625 l -t * -s 304 -d 1831 -S UP -r 512000 -D 0.0009765625 l -t * -s 304 -d 1856 -S UP -r 512000 -D 0.0009765625 l -t * -s 304 -d 1857 -S UP -r 512000 -D 0.0009765625 l -t * -s 305 -d 1416 -S UP -r 512000 -D 0.0009765625 l -t * -s 305 -d 1669 -S UP -r 512000 -D 0.0009765625 l -t * -s 306 -d 1416 -S UP -r 512000 -D 0.015625 l -t * -s 308 -d 426 -S UP -r 512000 -D 0.0009765625 l -t * -s 309 -d 666 -S UP -r 512000 -D 0.015625 l -t * -s 309 -d 644 -S UP -r 512000 -D 0.03125 l -t * -s 309 -d 1858 -S UP -r 512000 -D 0.03125 l -t * -s 309 -d 1364 -S UP -r 512000 -D 0.03125 l -t * -s 311 -d 1238 -S UP -r 512000 -D 0.03125 l -t * -s 313 -d 609 -S UP -r 512000 -D 0.0009765625 l -t * -s 314 -d 610 -S UP -r 512000 -D 0.03125 l -t * -s 314 -d 523 -S UP -r 512000 -D 0.03125 l -t * -s 314 -d 520 -S UP -r 512000 -D 0.03125 l -t * -s 314 -d 1703 -S UP -r 512000 -D 0.03125 l -t * -s 314 -d 611 -S UP -r 512000 -D 0.03125 l -t * -s 316 -d 586 -S UP -r 512000 -D 0.03125 l -t * -s 316 -d 1603 -S UP -r 512000 -D 0.0009765625 l -t * -s 320 -d 667 -S UP -r 512000 -D 0.03125 l -t * -s 320 -d 1158 -S UP -r 512000 -D 0.03125 l -t * -s 322 -d 1634 -S UP -r 512000 -D 0.0009765625 l -t * -s 323 -d 519 -S UP -r 512000 -D 0.0078125 l -t * -s 323 -d 538 -S UP -r 512000 -D 0.0078125 l -t * -s 323 -d 537 -S UP -r 512000 -D 0.0078125 l -t * -s 323 -d 522 -S UP -r 512000 -D 0.0078125 l -t * -s 323 -d 521 -S UP -r 512000 -D 0.0078125 l -t * -s 323 -d 539 -S UP -r 512000 -D 0.0078125 l -t * -s 324 -d 668 -S UP -r 512000 -D 0.0009765625 l -t * -s 325 -d 1418 -S UP -r 512000 -D 0.015625 l -t * -s 325 -d 1606 -S UP -r 512000 -D 0.015625 l -t * -s 326 -d 644 -S UP -r 512000 -D 0.03125 l -t * -s 326 -d 1233 -S UP -r 512000 -D 0.0078125 l -t * -s 328 -d 1535 -S UP -r 512000 -D 0.015625 l -t * -s 330 -d 1859 -S UP -r 512000 -D 0.03125 l -t * -s 331 -d 1816 -S UP -r 512000 -D 0.015625 l -t * -s 331 -d 429 -S UP -r 512000 -D 0.03125 l -t * -s 331 -d 430 -S UP -r 512000 -D 0.03125 l -t * -s 331 -d 431 -S UP -r 512000 -D 0.03125 l -t * -s 331 -d 432 -S UP -r 512000 -D 0.03125 l -t * -s 331 -d 1860 -S UP -r 512000 -D 0.03125 l -t * -s 333 -d 432 -S UP -r 512000 -D 0.03125 l -t * -s 333 -d 1860 -S UP -r 512000 -D 0.03125 l -t * -s 333 -d 430 -S UP -r 512000 -D 0.03125 l -t * -s 333 -d 429 -S UP -r 512000 -D 0.03125 l -t * -s 335 -d 1366 -S UP -r 512000 -D 0.0009765625 l -t * -s 335 -d 336 -S UP -r 512000 -D 0.0009765625 l -t * -s 335 -d 337 -S UP -r 512000 -D 0.0009765625 l -t * -s 335 -d 338 -S UP -r 512000 -D 0.0009765625 l -t * -s 336 -d 338 -S UP -r 512000 -D 0.0009765625 l -t * -s 336 -d 337 -S UP -r 512000 -D 0.0009765625 l -t * -s 336 -d 1694 -S UP -r 512000 -D 0.0009765625 l -t * -s 337 -d 338 -S UP -r 512000 -D 0.0009765625 l -t * -s 339 -d 1572 -S UP -r 512000 -D 0.0078125 l -t * -s 342 -d 1861 -S UP -r 512000 -D 0.0009765625 l -t * -s 342 -d 644 -S UP -r 512000 -D 0.03125 l -t * -s 345 -d 1520 -S UP -r 512000 -D 0.0009765625 l -t * -s 346 -d 1419 -S UP -r 512000 -D 0.0078125 l -t * -s 346 -d 1445 -S UP -r 512000 -D 0.0078125 l -t * -s 349 -d 350 -S UP -r 512000 -D 0.0078125 l -t * -s 349 -d 1598 -S UP -r 512000 -D 0.0078125 l -t * -s 349 -d 351 -S UP -r 512000 -D 0.0078125 l -t * -s 349 -d 1599 -S UP -r 512000 -D 0.0078125 l -t * -s 349 -d 1757 -S UP -r 512000 -D 0.0078125 l -t * -s 350 -d 1757 -S UP -r 512000 -D 0.0078125 l -t * -s 350 -d 351 -S UP -r 512000 -D 0.0078125 l -t * -s 350 -d 1598 -S UP -r 512000 -D 0.0078125 l -t * -s 350 -d 1599 -S UP -r 512000 -D 0.0078125 l -t * -s 350 -d 435 -S UP -r 512000 -D 0.015625 l -t * -s 351 -d 1757 -S UP -r 512000 -D 0.0078125 l -t * -s 351 -d 1598 -S UP -r 512000 -D 0.0078125 l -t * -s 351 -d 1599 -S UP -r 512000 -D 0.0078125 l -t * -s 352 -d 1598 -S UP -r 512000 -D 0.0234375 l -t * -s 352 -d 1690 -S UP -r 512000 -D 0.0234375 l -t * -s 353 -d 1336 -S UP -r 512000 -D 0.0009765625 l -t * -s 353 -d 1471 -S UP -r 512000 -D 0.015625 l -t * -s 353 -d 1359 -S UP -r 512000 -D 0.03125 l -t * -s 356 -d 436 -S UP -r 512000 -D 0.001953125 l -t * -s 358 -d 1715 -S UP -r 512000 -D 0.001953125 l -t * -s 361 -d 1576 -S UP -r 512000 -D 0.0009765625 l -t * -s 361 -d 437 -S UP -r 512000 -D 0.001953125 l -t * -s 361 -d 1717 -S UP -r 512000 -D 0.001953125 l -t * -s 361 -d 1234 -S UP -r 512000 -D 0.001953125 l -t * -s 363 -d 433 -S UP -r 512000 -D 0.0009765625 l -t * -s 364 -d 1077 -S UP -r 512000 -D 0.0009765625 l -t * -s 364 -d 1489 -S UP -r 512000 -D 0.0625 l -t * -s 364 -d 1367 -S UP -r 512000 -D 0.0009765625 l -t * -s 365 -d 1689 -S UP -r 512000 -D 0.0009765625 l -t * -s 365 -d 367 -S UP -r 512000 -D 0.0009765625 l -t * -s 365 -d 1592 -S UP -r 512000 -D 0.0009765625 l -t * -s 365 -d 366 -S UP -r 512000 -D 0.0009765625 l -t * -s 365 -d 1524 -S UP -r 512000 -D 0.0009765625 l -t * -s 365 -d 1544 -S UP -r 512000 -D 0.0009765625 l -t * -s 366 -d 1578 -S UP -r 512000 -D 0.0009765625 l -t * -s 366 -d 1689 -S UP -r 512000 -D 0.0009765625 l -t * -s 366 -d 367 -S UP -r 512000 -D 0.0009765625 l -t * -s 366 -d 1592 -S UP -r 512000 -D 0.0009765625 l -t * -s 366 -d 1524 -S UP -r 512000 -D 0.0009765625 l -t * -s 366 -d 1544 -S UP -r 512000 -D 0.0009765625 l -t * -s 367 -d 1689 -S UP -r 512000 -D 0.0009765625 l -t * -s 367 -d 1592 -S UP -r 512000 -D 0.0009765625 l -t * -s 367 -d 1544 -S UP -r 512000 -D 0.0009765625 l -t * -s 367 -d 1524 -S UP -r 512000 -D 0.0009765625 l -t * -s 368 -d 672 -S UP -r 512000 -D 0.0625 l -t * -s 368 -d 1544 -S UP -r 512000 -D 0.0009765625 l -t * -s 368 -d 1172 -S UP -r 512000 -D 0.0625 l -t * -s 368 -d 1540 -S UP -r 512000 -D 0.0009765625 l -t * -s 369 -d 1593 -S UP -r 512000 -D 0.015625 l -t * -s 369 -d 1124 -S UP -r 512000 -D 0.0078125 l -t * -s 369 -d 1368 -S UP -r 512000 -D 0.00390625 l -t * -s 370 -d 1593 -S UP -r 512000 -D 0.0078125 l -t * -s 370 -d 1070 -S UP -r 512000 -D 0.00390625 l -t * -s 371 -d 1593 -S UP -r 512000 -D 0.0078125 l -t * -s 371 -d 1449 -S UP -r 512000 -D 0.0078125 l -t * -s 371 -d 1447 -S UP -r 512000 -D 0.015625 l -t * -s 372 -d 1593 -S UP -r 512000 -D 0.0078125 l -t * -s 372 -d 1114 -S UP -r 512000 -D 0.0009765625 l -t * -s 373 -d 1610 -S UP -r 512000 -D 0.01171875 l -t * -s 373 -d 374 -S UP -r 512000 -D 0.0078125 l -t * -s 375 -d 484 -S UP -r 512000 -D 0.0009765625 l -t * -s 375 -d 483 -S UP -r 512000 -D 0.0009765625 l -t * -s 375 -d 485 -S UP -r 512000 -D 0.0009765625 l -t * -s 375 -d 486 -S UP -r 512000 -D 0.0009765625 l -t * -s 375 -d 487 -S UP -r 512000 -D 0.0009765625 l -t * -s 375 -d 501 -S UP -r 512000 -D 0.0009765625 l -t * -s 375 -d 1587 -S UP -r 512000 -D 0.0009765625 l -t * -s 377 -d 439 -S UP -r 512000 -D 0.0009765625 l -t * -s 379 -d 440 -S UP -r 512000 -D 0.0009765625 l -t * -s 383 -d 1297 -S UP -r 512000 -D 0.0029296875 l -t * -s 386 -d 441 -S UP -r 512000 -D 0.00390625 l -t * -s 386 -d 442 -S UP -r 512000 -D 0.00390625 l -t * -s 390 -d 443 -S UP -r 512000 -D 0.0009765625 l -t * -s 392 -d 1610 -S UP -r 512000 -D 0.015625 l -t * -s 392 -d 1182 -S UP -r 512000 -D 0.0078125 l -t * -s 393 -d 1610 -S UP -r 512000 -D 0.015625 l -t * -s 394 -d 1610 -S UP -r 512000 -D 0.015625 l -t * -s 395 -d 1610 -S UP -r 512000 -D 0.015625 l -t * -s 396 -d 1610 -S UP -r 512000 -D 0.015625 l -t * -s 402 -d 1239 -S UP -r 512000 -D 0.0625 l -t * -s 404 -d 1080 -S UP -r 512000 -D 0.0009765625 l -t * -s 406 -d 449 -S UP -r 512000 -D 0.0009765625 l -t * -s 406 -d 450 -S UP -r 512000 -D 0.046875 l -t * -s 406 -d 451 -S UP -r 512000 -D 0.015625 l -t * -s 407 -d 412 -S UP -r 512000 -D 0.0234375 l -t * -s 407 -d 452 -S UP -r 512000 -D 0.015625 l -t * -s 407 -d 1134 -S UP -r 512000 -D 0.015625 l -t * -s 413 -d 455 -S UP -r 512000 -D 0.0009765625 l -t * -s 416 -d 456 -S UP -r 512000 -D 0.0009765625 l -t * -s 416 -d 1294 -S UP -r 512000 -D 0.0048828125 l -t * -s 416 -d 457 -S UP -r 512000 -D 0.0029296875 l -t * -s 416 -d 448 -S UP -r 512000 -D 0.001953125 l -t * -s 416 -d 1298 -S UP -r 512000 -D 0.001953125 l -t * -s 418 -d 1593 -S UP -r 512000 -D 0.015625 l -t * -s 418 -d 1480 -S UP -r 512000 -D 0.015625 l -t * -s 418 -d 458 -S UP -r 512000 -D 0.0009765625 l -t * -s 418 -d 459 -S UP -r 512000 -D 0.0078125 l -t * -s 418 -d 460 -S UP -r 512000 -D 0.0009765625 l -t * -s 418 -d 1647 -S UP -r 512000 -D 0.0625 l -t * -s 419 -d 1593 -S UP -r 512000 -D 0.015625 l -t * -s 421 -d 1104 -S UP -r 512000 -D 0.03125 l -t * -s 423 -d 1136 -S UP -r 512000 -D 0.0009765625 l -t * -s 426 -d 1550 -S UP -r 512000 -D 0.0009765625 l -t * -s 427 -d 1360 -S UP -r 512000 -D 0.0029296875 l -t * -s 428 -d 1360 -S UP -r 512000 -D 0.0029296875 l -t * -s 429 -d 462 -S UP -r 512000 -D 0.03125 l -t * -s 429 -d 463 -S UP -r 512000 -D 0.03125 l -t * -s 429 -d 464 -S UP -r 512000 -D 0.03125 l -t * -s 430 -d 453 -S UP -r 512000 -D 0.03125 l -t * -s 431 -d 1736 -S UP -r 512000 -D 0.0009765625 l -t * -s 432 -d 465 -S UP -r 512000 -D 0.03125 l -t * -s 432 -d 1623 -S UP -r 512000 -D 0.013671875 l -t * -s 432 -d 468 -S UP -r 512000 -D 0.013671875 l -t * -s 432 -d 469 -S UP -r 512000 -D 0.013671875 l -t * -s 432 -d 470 -S UP -r 512000 -D 0.013671875 l -t * -s 432 -d 466 -S UP -r 512000 -D 0.013671875 l -t * -s 432 -d 467 -S UP -r 512000 -D 0.013671875 l -t * -s 434 -d 1416 -S UP -r 512000 -D 0.015625 l -t * -s 434 -d 642 -S UP -r 512000 -D 0.0009765625 l -t * -s 439 -d 1518 -S UP -r 512000 -D 0.0009765625 l -t * -s 442 -d 472 -S UP -r 512000 -D 0.0009765625 l -t * -s 442 -d 471 -S UP -r 512000 -D 0.0009765625 l -t * -s 442 -d 1519 -S UP -r 512000 -D 0.0009765625 l -t * -s 444 -d 759 -S UP -r 512000 -D 0.015625 l -t * -s 444 -d 622 -S UP -r 512000 -D 0.0625 l -t * -s 447 -d 1181 -S UP -r 512000 -D 0.0009765625 l -t * -s 450 -d 474 -S UP -r 512000 -D 0.046875 l -t * -s 450 -d 1324 -S UP -r 512000 -D 0.0234375 l -t * -s 450 -d 475 -S UP -r 512000 -D 0.0234375 l -t * -s 451 -d 478 -S UP -r 512000 -D 0.015625 l -t * -s 451 -d 1712 -S UP -r 512000 -D 0.015625 l -t * -s 452 -d 479 -S UP -r 512000 -D 0.0009765625 l -t * -s 452 -d 480 -S UP -r 512000 -D 0.015625 l -t * -s 464 -d 497 -S UP -r 512000 -D 0.03125 l -t * -s 465 -d 473 -S UP -r 512000 -D 0.0009765625 l -t * -s 471 -d 472 -S UP -r 512000 -D 0.0009765625 l -t * -s 471 -d 1519 -S UP -r 512000 -D 0.0009765625 l -t * -s 472 -d 1519 -S UP -r 512000 -D 0.0009765625 l -t * -s 474 -d 482 -S UP -r 512000 -D 0.03125 l -t * -s 474 -d 1220 -S UP -r 512000 -D 0.03125 l -t * -s 476 -d 1800 -S UP -r 512000 -D 0.015625 l -t * -s 483 -d 503 -S UP -r 512000 -D 0.0009765625 l -t * -s 483 -d 504 -S UP -r 512000 -D 0.0009765625 l -t * -s 488 -d 506 -S UP -r 512000 -D 0.00390625 l -t * -s 490 -d 508 -S UP -r 512000 -D 0.001953125 l -t * -s 491 -d 508 -S UP -r 512000 -D 0.0078125 l -t * -s 491 -d 509 -S UP -r 512000 -D 0.0009765625 l -t * -s 492 -d 508 -S UP -r 512000 -D 0.001953125 l -t * -s 493 -d 709 -S UP -r 512000 -D 0.0048828125 l -t * -s 496 -d 1438 -S UP -r 512000 -D 0.015625 l -t * -s 496 -d 510 -S UP -r 512000 -D 0.03125 l -t * -s 496 -d 511 -S UP -r 512000 -D 0.03125 l -t * -s 496 -d 512 -S UP -r 512000 -D 0.03125 l -t * -s 496 -d 513 -S UP -r 512000 -D 0.03125 l -t * -s 496 -d 514 -S UP -r 512000 -D 0.03125 l -t * -s 496 -d 515 -S UP -r 512000 -D 0.03125 l -t * -s 496 -d 516 -S UP -r 512000 -D 0.0625 l -t * -s 496 -d 1668 -S UP -r 512000 -D 0.0625 l -t * -s 496 -d 1443 -S UP -r 512000 -D 0.15625 l -t * -s 496 -d 517 -S UP -r 512000 -D 0.046875 l -t * -s 496 -d 518 -S UP -r 512000 -D 0.03125 l -t * -s 496 -d 1679 -S UP -r 512000 -D 0.03125 l -t * -s 498 -d 520 -S UP -r 512000 -D 0.03125 l -t * -s 499 -d 523 -S UP -r 512000 -D 0.03125 l -t * -s 502 -d 1587 -S UP -r 512000 -D 0.0009765625 l -t * -s 505 -d 1565 -S UP -r 512000 -D 0.0009765625 l -t * -s 505 -d 1580 -S UP -r 512000 -D 0.0009765625 l -t * -s 505 -d 1862 -S UP -r 512000 -D 0.0009765625 l -t * -s 505 -d 606 -S UP -r 512000 -D 0.0009765625 l -t * -s 508 -d 524 -S UP -r 512000 -D 0.03125 l -t * -s 508 -d 1186 -S UP -r 512000 -D 0.0078125 l -t * -s 510 -d 1468 -S UP -r 512000 -D 0.0009765625 l -t * -s 510 -d 635 -S UP -r 512000 -D 0.0009765625 l -t * -s 510 -d 1772 -S UP -r 512000 -D 0.03125 l -t * -s 510 -d 526 -S UP -r 512000 -D 0.0009765625 l -t * -s 510 -d 1150 -S UP -r 512000 -D 0.00390625 l -t * -s 510 -d 528 -S UP -r 512000 -D 0.00390625 l -t * -s 510 -d 529 -S UP -r 512000 -D 0.0078125 l -t * -s 510 -d 1548 -S UP -r 512000 -D 0.03125 l -t * -s 510 -d 525 -S UP -r 512000 -D 0.03125 l -t * -s 510 -d 530 -S UP -r 512000 -D 0.03125 l -t * -s 511 -d 721 -S UP -r 512000 -D 0.0078125 l -t * -s 511 -d 722 -S UP -r 512000 -D 0.0078125 l -t * -s 511 -d 723 -S UP -r 512000 -D 0.0078125 l -t * -s 511 -d 1420 -S UP -r 512000 -D 0.0078125 l -t * -s 512 -d 804 -S UP -r 512000 -D 0.015625 l -t * -s 512 -d 805 -S UP -r 512000 -D 0.0625 l -t * -s 512 -d 1012 -S UP -r 512000 -D 0.169921875 l -t * -s 513 -d 531 -S UP -r 512000 -D 0.0009765625 l -t * -s 513 -d 532 -S UP -r 512000 -D 0.0625 l -t * -s 513 -d 533 -S UP -r 512000 -D 0.15625 l -t * -s 513 -d 1577 -S UP -r 512000 -D 0.0009765625 l -t * -s 513 -d 535 -S UP -r 512000 -D 0.0009765625 l -t * -s 513 -d 534 -S UP -r 512000 -D 0.0009765625 l -t * -s 514 -d 1178 -S UP -r 512000 -D 0.015625 l -t * -s 514 -d 1803 -S UP -r 512000 -D 0.0009765625 l -t * -s 514 -d 1804 -S UP -r 512000 -D 0.0009765625 l -t * -s 515 -d 1105 -S UP -r 512000 -D 0.03125 l -t * -s 516 -d 1624 -S UP -r 512000 -D 0.03125 l -t * -s 516 -d 1020 -S UP -r 512000 -D 0.03125 l -t * -s 518 -d 676 -S UP -r 512000 -D 0.03125 l -t * -s 518 -d 536 -S UP -r 512000 -D 0.0009765625 l -t * -s 518 -d 1218 -S UP -r 512000 -D 0.09375 l -t * -s 519 -d 537 -S UP -r 512000 -D 0.0078125 l -t * -s 519 -d 538 -S UP -r 512000 -D 0.0078125 l -t * -s 521 -d 539 -S UP -r 512000 -D 0.0078125 l -t * -s 521 -d 522 -S UP -r 512000 -D 0.0078125 l -t * -s 522 -d 539 -S UP -r 512000 -D 0.0078125 l -t * -s 523 -d 1765 -S UP -r 512000 -D 0.015625 l -t * -s 523 -d 1758 -S UP -r 512000 -D 0.0078125 l -t * -s 523 -d 1720 -S UP -r 512000 -D 0.03125 l -t * -s 524 -d 1525 -S UP -r 512000 -D 0.0625 l -t * -s 524 -d 1295 -S UP -r 512000 -D 0.0625 l -t * -s 524 -d 541 -S UP -r 512000 -D 0.0625 l -t * -s 524 -d 540 -S UP -r 512000 -D 0.0009765625 l -t * -s 529 -d 683 -S UP -r 512000 -D 0.0009765625 l -t * -s 529 -d 682 -S UP -r 512000 -D 0.0009765625 l -t * -s 537 -d 538 -S UP -r 512000 -D 0.0078125 l -t * -s 541 -d 599 -S UP -r 512000 -D 0.001953125 l -t * -s 541 -d 600 -S UP -r 512000 -D 0.001953125 l -t * -s 542 -d 1468 -S UP -r 512000 -D 0.046875 l -t * -s 543 -d 729 -S UP -r 512000 -D 0.015625 l -t * -s 544 -d 729 -S UP -r 512000 -D 0.0009765625 l -t * -s 545 -d 1348 -S UP -r 512000 -D 0.03125 l -t * -s 545 -d 1137 -S UP -r 512000 -D 0.0009765625 l -t * -s 545 -d 730 -S UP -r 512000 -D 0.0009765625 l -t * -s 546 -d 1304 -S UP -r 512000 -D 0.03125 l -t * -s 546 -d 732 -S UP -r 512000 -D 0.0625 l -t * -s 546 -d 733 -S UP -r 512000 -D 0.0625 l -t * -s 546 -d 1191 -S UP -r 512000 -D 0.0625 l -t * -s 546 -d 731 -S UP -r 512000 -D 0.03125 l -t * -s 546 -d 1064 -S UP -r 512000 -D 0.0029296875 l -t * -s 547 -d 623 -S UP -r 512000 -D 0.0078125 l -t * -s 547 -d 1077 -S UP -r 512000 -D 0.046875 l -t * -s 547 -d 1778 -S UP -r 512000 -D 0.03125 l -t * -s 547 -d 1200 -S UP -r 512000 -D 0.03125 l -t * -s 548 -d 1077 -S UP -r 512000 -D 0.0625 l -t * -s 549 -d 1863 -S UP -r 512000 -D 0.015625 l -t * -s 549 -d 1077 -S UP -r 512000 -D 0.0009765625 l -t * -s 549 -d 1296 -S UP -r 512000 -D 0.0009765625 l -t * -s 550 -d 627 -S UP -r 512000 -D 0.0009765625 l -t * -s 550 -d 1077 -S UP -r 512000 -D 0.0009765625 l -t * -s 551 -d 740 -S UP -r 512000 -D 0.015625 l -t * -s 551 -d 1611 -S UP -r 512000 -D 0.15625 l -t * -s 551 -d 709 -S UP -r 512000 -D 0.0625 l -t * -s 551 -d 1272 -S UP -r 512000 -D 0.0625 l -t * -s 551 -d 1400 -S UP -r 512000 -D 0.09375 l -t * -s 551 -d 735 -S UP -r 512000 -D 0.09375 l -t * -s 551 -d 736 -S UP -r 512000 -D 0.0625 l -t * -s 551 -d 737 -S UP -r 512000 -D 0.0625 l -t * -s 551 -d 738 -S UP -r 512000 -D 0.125 l -t * -s 554 -d 679 -S UP -r 512000 -D 0.00390625 l -t * -s 555 -d 563 -S UP -r 512000 -D 0.03125 l -t * -s 555 -d 1500 -S UP -r 512000 -D 0.0009765625 l -t * -s 556 -d 563 -S UP -r 512000 -D 0.0625 l -t * -s 556 -d 1864 -S UP -r 512000 -D 0.0009765625 l -t * -s 556 -d 1865 -S UP -r 512000 -D 0.0009765625 l -t * -s 556 -d 1866 -S UP -r 512000 -D 0.0009765625 l -t * -s 556 -d 1867 -S UP -r 512000 -D 0.0009765625 l -t * -s 557 -d 563 -S UP -r 512000 -D 0.0625 l -t * -s 557 -d 1868 -S UP -r 512000 -D 0.0009765625 l -t * -s 557 -d 1869 -S UP -r 512000 -D 0.0009765625 l -t * -s 558 -d 563 -S UP -r 512000 -D 0.03125 l -t * -s 558 -d 1167 -S UP -r 512000 -D 0.0009765625 l -t * -s 559 -d 563 -S UP -r 512000 -D 0.0625 l -t * -s 559 -d 741 -S UP -r 512000 -D 0.0029296875 l -t * -s 560 -d 1116 -S UP -r 512000 -D 0.0009765625 l -t * -s 562 -d 563 -S UP -r 512000 -D 0.03125 l -t * -s 563 -d 645 -S UP -r 512000 -D 0.03125 l -t * -s 563 -d 1870 -S UP -r 512000 -D 0.03125 l -t * -s 563 -d 789 -S UP -r 512000 -D 0.0625 l -t * -s 563 -d 754 -S UP -r 512000 -D 0.03125 l -t * -s 563 -d 748 -S UP -r 512000 -D 0.03125 l -t * -s 563 -d 1871 -S UP -r 512000 -D 0.03125 l -t * -s 563 -d 749 -S UP -r 512000 -D 0.03125 l -t * -s 563 -d 1872 -S UP -r 512000 -D 0.03125 l -t * -s 564 -d 645 -S UP -r 512000 -D 0.03125 l -t * -s 565 -d 645 -S UP -r 512000 -D 0.03125 l -t * -s 565 -d 750 -S UP -r 512000 -D 0.03125 l -t * -s 565 -d 1873 -S UP -r 512000 -D 0.03125 l -t * -s 566 -d 1118 -S UP -r 512000 -D 0.015625 l -t * -s 566 -d 1575 -S UP -r 512000 -D 0.0078125 l -t * -s 567 -d 754 -S UP -r 512000 -D 0.0009765625 l -t * -s 568 -d 754 -S UP -r 512000 -D 0.0009765625 l -t * -s 569 -d 754 -S UP -r 512000 -D 0.0009765625 l -t * -s 570 -d 754 -S UP -r 512000 -D 0.0009765625 l -t * -s 574 -d 614 -S UP -r 512000 -D 0.0625 l -t * -s 574 -d 1509 -S UP -r 512000 -D 0.0625 l -t * -s 575 -d 758 -S UP -r 512000 -D 0.0625 l -t * -s 576 -d 758 -S UP -r 512000 -D 0.0625 l -t * -s 577 -d 619 -S UP -r 512000 -D 0.0009765625 l -t * -s 578 -d 619 -S UP -r 512000 -D 0.0009765625 l -t * -s 579 -d 619 -S UP -r 512000 -D 0.0009765625 l -t * -s 580 -d 619 -S UP -r 512000 -D 0.0009765625 l -t * -s 581 -d 619 -S UP -r 512000 -D 0.0009765625 l -t * -s 582 -d 619 -S UP -r 512000 -D 0.0009765625 l -t * -s 583 -d 620 -S UP -r 512000 -D 0.03125 l -t * -s 583 -d 1072 -S UP -r 512000 -D 0.046875 l -t * -s 584 -d 620 -S UP -r 512000 -D 0.03125 l -t * -s 585 -d 620 -S UP -r 512000 -D 0.03125 l -t * -s 586 -d 640 -S UP -r 512000 -D 0.015625 l -t * -s 586 -d 641 -S UP -r 512000 -D 0.015625 l -t * -s 587 -d 1292 -S UP -r 512000 -D 0.0009765625 l -t * -s 587 -d 1321 -S UP -r 512000 -D 0.0009765625 l -t * -s 589 -d 1874 -S UP -r 512000 -D 0.0625 l -t * -s 589 -d 1875 -S UP -r 512000 -D 0.0625 l -t * -s 590 -d 760 -S UP -r 512000 -D 0.0078125 l -t * -s 591 -d 760 -S UP -r 512000 -D 0.0078125 l -t * -s 592 -d 760 -S UP -r 512000 -D 0.03125 l -t * -s 593 -d 760 -S UP -r 512000 -D 0.0625 l -t * -s 593 -d 669 -S UP -r 512000 -D 0.0009765625 l -t * -s 594 -d 672 -S UP -r 512000 -D 0.0009765625 l -t * -s 594 -d 1833 -S UP -r 512000 -D 0.0625 l -t * -s 594 -d 612 -S UP -r 512000 -D 0.0625 l -t * -s 594 -d 784 -S UP -r 512000 -D 0.0625 l -t * -s 594 -d 764 -S UP -r 512000 -D 0.015625 l -t * -s 595 -d 672 -S UP -r 512000 -D 0.0009765625 l -t * -s 596 -d 784 -S UP -r 512000 -D 0.0625 l -t * -s 596 -d 652 -S UP -r 512000 -D 0.03125 l -t * -s 596 -d 651 -S UP -r 512000 -D 0.03125 l -t * -s 596 -d 1484 -S UP -r 512000 -D 0.046875 l -t * -s 596 -d 1876 -S UP -r 512000 -D 0.015625 l -t * -s 596 -d 649 -S UP -r 512000 -D 0.03125 l -t * -s 596 -d 650 -S UP -r 512000 -D 0.03125 l -t * -s 596 -d 1155 -S UP -r 512000 -D 0.03125 l -t * -s 597 -d 1435 -S UP -r 512000 -D 0.0009765625 l -t * -s 597 -d 1085 -S UP -r 512000 -D 0.0009765625 l -t * -s 597 -d 1057 -S UP -r 512000 -D 0.0009765625 l -t * -s 597 -d 1388 -S UP -r 512000 -D 0.015625 l -t * -s 597 -d 1433 -S UP -r 512000 -D 0.0078125 l -t * -s 597 -d 1444 -S UP -r 512000 -D 0.0009765625 l -t * -s 601 -d 1341 -S UP -r 512000 -D 0.0009765625 l -t * -s 601 -d 653 -S UP -r 512000 -D 0.0009765625 l -t * -s 601 -d 654 -S UP -r 512000 -D 0.0009765625 l -t * -s 601 -d 655 -S UP -r 512000 -D 0.0009765625 l -t * -s 602 -d 1156 -S UP -r 512000 -D 0.0009765625 l -t * -s 602 -d 1235 -S UP -r 512000 -D 0.0009765625 l -t * -s 604 -d 623 -S UP -r 512000 -D 0.015625 l -t * -s 604 -d 770 -S UP -r 512000 -D 0.0078125 l -t * -s 604 -d 656 -S UP -r 512000 -D 0.0078125 l -t * -s 604 -d 657 -S UP -r 512000 -D 0.0078125 l -t * -s 604 -d 771 -S UP -r 512000 -D 0.0078125 l -t * -s 604 -d 772 -S UP -r 512000 -D 0.0078125 l -t * -s 605 -d 657 -S UP -r 512000 -D 0.0078125 l -t * -s 606 -d 1580 -S UP -r 512000 -D 0.0009765625 l -t * -s 606 -d 1862 -S UP -r 512000 -D 0.0009765625 l -t * -s 607 -d 623 -S UP -r 512000 -D 0.03125 l -t * -s 607 -d 664 -S UP -r 512000 -D 0.0009765625 l -t * -s 607 -d 665 -S UP -r 512000 -D 0.0009765625 l -t * -s 611 -d 778 -S UP -r 512000 -D 0.0009765625 l -t * -s 611 -d 777 -S UP -r 512000 -D 0.0009765625 l -t * -s 611 -d 1617 -S UP -r 512000 -D 0.0009765625 l -t * -s 611 -d 1227 -S UP -r 512000 -D 0.03125 l -t * -s 611 -d 1386 -S UP -r 512000 -D 0.03125 l -t * -s 612 -d 1094 -S UP -r 512000 -D 0.03125 l -t * -s 612 -d 1168 -S UP -r 512000 -D 0.03125 l -t * -s 612 -d 622 -S UP -r 512000 -D 0.046875 l -t * -s 612 -d 1877 -S UP -r 512000 -D 0.0625 l -t * -s 612 -d 1878 -S UP -r 512000 -D 0.0625 l -t * -s 613 -d 959 -S UP -r 512000 -D 0.0625 l -t * -s 613 -d 960 -S UP -r 512000 -D 0.0625 l -t * -s 613 -d 934 -S UP -r 512000 -D 0.0625 l -t * -s 613 -d 901 -S UP -r 512000 -D 0.0625 l -t * -s 613 -d 758 -S UP -r 512000 -D 0.0625 l -t * -s 613 -d 1252 -S UP -r 512000 -D 0.0009765625 l -t * -s 613 -d 1559 -S UP -r 512000 -D 0.0009765625 l -t * -s 614 -d 1818 -S UP -r 512000 -D 0.0009765625 l -t * -s 616 -d 1192 -S UP -r 512000 -D 0.0009765625 l -t * -s 619 -d 1293 -S UP -r 512000 -D 0.0009765625 l -t * -s 620 -d 1879 -S UP -r 512000 -D 0.03125 l -t * -s 620 -d 1631 -S UP -r 512000 -D 0.03125 l -t * -s 622 -d 697 -S UP -r 512000 -D 0.015625 l -t * -s 622 -d 1880 -S UP -r 512000 -D 0.0625 l -t * -s 622 -d 700 -S UP -r 512000 -D 0.0009765625 l -t * -s 622 -d 779 -S UP -r 512000 -D 0.0009765625 l -t * -s 622 -d 780 -S UP -r 512000 -D 0.0009765625 l -t * -s 622 -d 698 -S UP -r 512000 -D 0.0009765625 l -t * -s 622 -d 699 -S UP -r 512000 -D 0.0009765625 l -t * -s 623 -d 1881 -S UP -r 512000 -D 0.03125 l -t * -s 623 -d 1341 -S UP -r 512000 -D 0.0009765625 l -t * -s 625 -d 1811 -S UP -r 512000 -D 0.0029296875 l -t * -s 627 -d 663 -S UP -r 512000 -D 0.03125 l -t * -s 628 -d 1264 -S UP -r 512000 -D 0.0009765625 l -t * -s 629 -d 671 -S UP -r 512000 -D 0.125 l -t * -s 630 -d 671 -S UP -r 512000 -D 0.125 l -t * -s 631 -d 671 -S UP -r 512000 -D 0.15625 l -t * -s 631 -d 1569 -S UP -r 512000 -D 0.0009765625 l -t * -s 632 -d 671 -S UP -r 512000 -D 0.1875 l -t * -s 633 -d 673 -S UP -r 512000 -D 0.015625 l -t * -s 634 -d 674 -S UP -r 512000 -D 0.03125 l -t * -s 634 -d 1497 -S UP -r 512000 -D 0.0009765625 l -t * -s 634 -d 1696 -S UP -r 512000 -D 0.0009765625 l -t * -s 635 -d 1468 -S UP -r 512000 -D 0.00390625 l -t * -s 635 -d 1543 -S UP -r 512000 -D 0.00390625 l -t * -s 639 -d 1125 -S UP -r 512000 -D 0.0009765625 l -t * -s 641 -d 1773 -S UP -r 512000 -D 0.0009765625 l -t * -s 643 -d 1790 -S UP -r 512000 -D 0.0625 l -t * -s 643 -d 886 -S UP -r 512000 -D 0.0625 l -t * -s 643 -d 884 -S UP -r 512000 -D 0.0625 l -t * -s 643 -d 1882 -S UP -r 512000 -D 0.03125 l -t * -s 643 -d 885 -S UP -r 512000 -D 0.0625 l -t * -s 643 -d 1327 -S UP -r 512000 -D 0.0625 l -t * -s 643 -d 1640 -S UP -r 512000 -D 0.0009765625 l -t * -s 643 -d 882 -S UP -r 512000 -D 0.0009765625 l -t * -s 643 -d 883 -S UP -r 512000 -D 0.0625 l -t * -s 643 -d 1369 -S UP -r 512000 -D 0.0625 l -t * -s 644 -d 1883 -S UP -r 512000 -D 0.03125 l -t * -s 644 -d 648 -S UP -r 512000 -D 0.03125 l -t * -s 644 -d 1884 -S UP -r 512000 -D 0.03125 l -t * -s 644 -d 1364 -S UP -r 512000 -D 0.03125 l -t * -s 645 -d 1885 -S UP -r 512000 -D 0.0009765625 l -t * -s 645 -d 1820 -S UP -r 512000 -D 0.0009765625 l -t * -s 645 -d 1886 -S UP -r 512000 -D 0.03125 l -t * -s 645 -d 1747 -S UP -r 512000 -D 0.03125 l -t * -s 645 -d 788 -S UP -r 512000 -D 0.03125 l -t * -s 646 -d 688 -S UP -r 512000 -D 0.0625 l -t * -s 646 -d 792 -S UP -r 512000 -D 0.0068359375 l -t * -s 646 -d 1538 -S UP -r 512000 -D 0.0068359375 l -t * -s 646 -d 791 -S UP -r 512000 -D 0.0068359375 l -t * -s 646 -d 793 -S UP -r 512000 -D 0.0625 l -t * -s 647 -d 729 -S UP -r 512000 -D 0.03125 l -t * -s 647 -d 1301 -S UP -r 512000 -D 0.03125 l -t * -s 647 -d 734 -S UP -r 512000 -D 0.03125 l -t * -s 647 -d 1470 -S UP -r 512000 -D 0.03125 l -t * -s 648 -d 724 -S UP -r 512000 -D 0.0078125 l -t * -s 652 -d 795 -S UP -r 512000 -D 0.03125 l -t * -s 652 -d 796 -S UP -r 512000 -D 0.03125 l -t * -s 653 -d 1343 -S UP -r 512000 -D 0.0009765625 l -t * -s 653 -d 687 -S UP -r 512000 -D 0.0009765625 l -t * -s 658 -d 798 -S UP -r 512000 -D 0.03125 l -t * -s 658 -d 1351 -S UP -r 512000 -D 0.015625 l -t * -s 658 -d 799 -S UP -r 512000 -D 0.03125 l -t * -s 658 -d 1173 -S UP -r 512000 -D 0.015625 l -t * -s 658 -d 1388 -S UP -r 512000 -D 0.0009765625 l -t * -s 659 -d 1351 -S UP -r 512000 -D 0.0078125 l -t * -s 660 -d 1351 -S UP -r 512000 -D 0.0078125 l -t * -s 661 -d 1351 -S UP -r 512000 -D 0.0078125 l -t * -s 662 -d 1662 -S UP -r 512000 -D 0.015625 l -t * -s 662 -d 1396 -S UP -r 512000 -D 0.00390625 l -t * -s 664 -d 1651 -S UP -r 512000 -D 0.0009765625 l -t * -s 669 -d 1887 -S UP -r 512000 -D 0.0009765625 l -t * -s 670 -d 1772 -S UP -r 512000 -D 0.03125 l -t * -s 670 -d 1123 -S UP -r 512000 -D 0.0078125 l -t * -s 670 -d 1394 -S UP -r 512000 -D 0.15625 l -t * -s 670 -d 1655 -S UP -r 512000 -D 0.0009765625 l -t * -s 671 -d 1772 -S UP -r 512000 -D 0.0009765625 l -t * -s 671 -d 806 -S UP -r 512000 -D 0.15625 l -t * -s 672 -d 1588 -S UP -r 512000 -D 0.015625 l -t * -s 672 -d 1010 -S UP -r 512000 -D 0.0625 l -t * -s 672 -d 1009 -S UP -r 512000 -D 0.0625 l -t * -s 672 -d 1015 -S UP -r 512000 -D 0.0625 l -t * -s 673 -d 1772 -S UP -r 512000 -D 0.125 l -t * -s 674 -d 808 -S UP -r 512000 -D 0.0625 l -t * -s 674 -d 1772 -S UP -r 512000 -D 0.03125 l -t * -s 674 -d 809 -S UP -r 512000 -D 0.03125 l -t * -s 674 -d 1119 -S UP -r 512000 -D 0.0625 l -t * -s 675 -d 812 -S UP -r 512000 -D 0.0009765625 l -t * -s 675 -d 811 -S UP -r 512000 -D 0.0009765625 l -t * -s 675 -d 1772 -S UP -r 512000 -D 0.03125 l -t * -s 675 -d 1533 -S UP -r 512000 -D 0.0009765625 l -t * -s 675 -d 1288 -S UP -r 512000 -D 0.01953125 l -t * -s 675 -d 1796 -S UP -r 512000 -D 0.0009765625 l -t * -s 676 -d 1772 -S UP -r 512000 -D 0.03125 l -t * -s 676 -d 1270 -S UP -r 512000 -D 0.0009765625 l -t * -s 676 -d 746 -S UP -r 512000 -D 0.0625 l -t * -s 676 -d 684 -S UP -r 512000 -D 0.0625 l -t * -s 676 -d 1139 -S UP -r 512000 -D 0.03125 l -t * -s 676 -d 747 -S UP -r 512000 -D 0.0625 l -t * -s 677 -d 809 -S UP -r 512000 -D 0.0009765625 l -t * -s 677 -d 1352 -S UP -r 512000 -D 0.0009765625 l -t * -s 678 -d 809 -S UP -r 512000 -D 0.0625 l -t * -s 679 -d 740 -S UP -r 512000 -D 0.0009765625 l -t * -s 679 -d 813 -S UP -r 512000 -D 0.0009765625 l -t * -s 679 -d 1532 -S UP -r 512000 -D 0.0009765625 l -t * -s 679 -d 808 -S UP -r 512000 -D 0.09375 l -t * -s 679 -d 814 -S UP -r 512000 -D 0.0625 l -t * -s 680 -d 808 -S UP -r 512000 -D 0.03125 l -t * -s 684 -d 757 -S UP -r 512000 -D 0.0009765625 l -t * -s 684 -d 756 -S UP -r 512000 -D 0.0009765625 l -t * -s 684 -d 755 -S UP -r 512000 -D 0.0009765625 l -t * -s 685 -d 747 -S UP -r 512000 -D 0.0009765625 l -t * -s 686 -d 1139 -S UP -r 512000 -D 0.03125 l -t * -s 687 -d 1343 -S UP -r 512000 -D 0.0009765625 l -t * -s 688 -d 1559 -S UP -r 512000 -D 0.0009765625 l -t * -s 689 -d 1275 -S UP -r 512000 -D 0.0009765625 l -t * -s 689 -d 818 -S UP -r 512000 -D 0.03125 l -t * -s 690 -d 1276 -S UP -r 512000 -D 0.0009765625 l -t * -s 690 -d 761 -S UP -r 512000 -D 0.03125 l -t * -s 690 -d 762 -S UP -r 512000 -D 0.03125 l -t * -s 690 -d 763 -S UP -r 512000 -D 0.03125 l -t * -s 690 -d 819 -S UP -r 512000 -D 0.03125 l -t * -s 690 -d 818 -S UP -r 512000 -D 0.03125 l -t * -s 692 -d 1275 -S UP -r 512000 -D 0.0009765625 l -t * -s 692 -d 818 -S UP -r 512000 -D 0.03125 l -t * -s 693 -d 1330 -S UP -r 512000 -D 0.0009765625 l -t * -s 693 -d 818 -S UP -r 512000 -D 0.03125 l -t * -s 694 -d 1291 -S UP -r 512000 -D 0.0009765625 l -t * -s 694 -d 818 -S UP -r 512000 -D 0.03125 l -t * -s 695 -d 825 -S UP -r 512000 -D 0.03125 l -t * -s 696 -d 1094 -S UP -r 512000 -D 0.0009765625 l -t * -s 696 -d 1888 -S UP -r 512000 -D 0.0009765625 l -t * -s 698 -d 767 -S UP -r 512000 -D 0.0009765625 l -t * -s 700 -d 765 -S UP -r 512000 -D 0.0009765625 l -t * -s 709 -d 822 -S UP -r 512000 -D 0.0029296875 l -t * -s 710 -d 832 -S UP -r 512000 -D 0.0078125 l -t * -s 711 -d 832 -S UP -r 512000 -D 0.0078125 l -t * -s 712 -d 832 -S UP -r 512000 -D 0.0009765625 l -t * -s 713 -d 833 -S UP -r 512000 -D 0.0009765625 l -t * -s 713 -d 832 -S UP -r 512000 -D 0.0078125 l -t * -s 714 -d 1421 -S UP -r 512000 -D 0.0009765625 l -t * -s 714 -d 832 -S UP -r 512000 -D 0.0078125 l -t * -s 715 -d 832 -S UP -r 512000 -D 0.0009765625 l -t * -s 715 -d 785 -S UP -r 512000 -D 0.0009765625 l -t * -s 716 -d 832 -S UP -r 512000 -D 0.0078125 l -t * -s 717 -d 1397 -S UP -r 512000 -D 0.0009765625 l -t * -s 717 -d 834 -S UP -r 512000 -D 0.03125 l -t * -s 718 -d 787 -S UP -r 512000 -D 0.0009765625 l -t * -s 718 -d 834 -S UP -r 512000 -D 0.03125 l -t * -s 719 -d 834 -S UP -r 512000 -D 0.03125 l -t * -s 720 -d 835 -S UP -r 512000 -D 0.0009765625 l -t * -s 721 -d 1216 -S UP -r 512000 -D 0.0009765625 l -t * -s 725 -d 1570 -S UP -r 512000 -D 0.0009765625 l -t * -s 725 -d 726 -S UP -r 512000 -D 0.0009765625 l -t * -s 726 -d 1570 -S UP -r 512000 -D 0.0009765625 l -t * -s 727 -d 728 -S UP -r 512000 -D 0.0009765625 l -t * -s 727 -d 1111 -S UP -r 512000 -D 0.0009765625 l -t * -s 727 -d 1201 -S UP -r 512000 -D 0.0009765625 l -t * -s 727 -d 1465 -S UP -r 512000 -D 0.0009765625 l -t * -s 727 -d 1663 -S UP -r 512000 -D 0.0009765625 l -t * -s 728 -d 1111 -S UP -r 512000 -D 0.0009765625 l -t * -s 729 -d 1111 -S UP -r 512000 -D 0.0009765625 l -t * -s 729 -d 1140 -S UP -r 512000 -D 0.015625 l -t * -s 729 -d 1201 -S UP -r 512000 -D 0.0009765625 l -t * -s 729 -d 1464 -S UP -r 512000 -D 0.015625 l -t * -s 731 -d 1890 -S UP -r 512000 -D 0.0625 l -t * -s 732 -d 1074 -S UP -r 512000 -D 0.0625 l -t * -s 736 -d 971 -S UP -r 512000 -D 0.015625 l -t * -s 736 -d 1409 -S UP -r 512000 -D 0.09375 l -t * -s 739 -d 842 -S UP -r 512000 -D 0.1875 l -t * -s 740 -d 813 -S UP -r 512000 -D 0.0009765625 l -t * -s 748 -d 1000 -S UP -r 512000 -D 0.03125 l -t * -s 750 -d 1891 -S UP -r 512000 -D 0.0009765625 l -t * -s 751 -d 1543 -S UP -r 512000 -D 0.0009765625 l -t * -s 752 -d 1543 -S UP -r 512000 -D 0.00390625 l -t * -s 753 -d 1892 -S UP -r 512000 -D 0.0009765625 l -t * -s 753 -d 1543 -S UP -r 512000 -D 0.15625 l -t * -s 755 -d 757 -S UP -r 512000 -D 0.0009765625 l -t * -s 758 -d 1479 -S UP -r 512000 -D 0.0625 l -t * -s 758 -d 1632 -S UP -r 512000 -D 0.0625 l -t * -s 760 -d 849 -S UP -r 512000 -D 0.0625 l -t * -s 760 -d 1748 -S UP -r 512000 -D 0.0234375 l -t * -s 760 -d 1511 -S UP -r 512000 -D 0.0234375 l -t * -s 760 -d 1348 -S UP -r 512000 -D 0.03125 l -t * -s 760 -d 850 -S UP -r 512000 -D 0.0625 l -t * -s 760 -d 941 -S UP -r 512000 -D 0.0625 l -t * -s 760 -d 1228 -S UP -r 512000 -D 0.0234375 l -t * -s 760 -d 1344 -S UP -r 512000 -D 0.0078125 l -t * -s 760 -d 1454 -S UP -r 512000 -D 0.00390625 l -t * -s 761 -d 1276 -S UP -r 512000 -D 0.0009765625 l -t * -s 762 -d 1276 -S UP -r 512000 -D 0.0009765625 l -t * -s 763 -d 1278 -S UP -r 512000 -D 0.0009765625 l -t * -s 768 -d 1335 -S UP -r 512000 -D 0.0009765625 l -t * -s 769 -d 1893 -S UP -r 512000 -D 0.0009765625 l -t * -s 769 -d 931 -S UP -r 512000 -D 0.0009765625 l -t * -s 769 -d 1213 -S UP -r 512000 -D 0.0009765625 l -t * -s 769 -d 1335 -S UP -r 512000 -D 0.0009765625 l -t * -s 772 -d 853 -S UP -r 512000 -D 0.0078125 l -t * -s 777 -d 778 -S UP -r 512000 -D 0.0009765625 l -t * -s 777 -d 1617 -S UP -r 512000 -D 0.0009765625 l -t * -s 777 -d 1227 -S UP -r 512000 -D 0.03125 l -t * -s 778 -d 1617 -S UP -r 512000 -D 0.0009765625 l -t * -s 778 -d 1227 -S UP -r 512000 -D 0.03125 l -t * -s 781 -d 855 -S UP -r 512000 -D 0.015625 l -t * -s 783 -d 1106 -S UP -r 512000 -D 0.00390625 l -t * -s 784 -d 1203 -S UP -r 512000 -D 0.0625 l -t * -s 784 -d 1653 -S UP -r 512000 -D 0.0625 l -t * -s 784 -d 1801 -S UP -r 512000 -D 0.03125 l -t * -s 784 -d 1113 -S UP -r 512000 -D 0.0625 l -t * -s 789 -d 1894 -S UP -r 512000 -D 0.0009765625 l -t * -s 789 -d 1895 -S UP -r 512000 -D 0.0009765625 l -t * -s 789 -d 1896 -S UP -r 512000 -D 0.0009765625 l -t * -s 789 -d 1897 -S UP -r 512000 -D 0.0009765625 l -t * -s 789 -d 1898 -S UP -r 512000 -D 0.0009765625 l -t * -s 789 -d 1899 -S UP -r 512000 -D 0.0009765625 l -t * -s 789 -d 1900 -S UP -r 512000 -D 0.0009765625 l -t * -s 789 -d 1901 -S UP -r 512000 -D 0.0009765625 l -t * -s 789 -d 1902 -S UP -r 512000 -D 0.0009765625 l -t * -s 789 -d 1903 -S UP -r 512000 -D 0.0009765625 l -t * -s 789 -d 1904 -S UP -r 512000 -D 0.0009765625 l -t * -s 789 -d 1905 -S UP -r 512000 -D 0.0009765625 l -t * -s 789 -d 1906 -S UP -r 512000 -D 0.0009765625 l -t * -s 789 -d 1907 -S UP -r 512000 -D 0.0009765625 l -t * -s 789 -d 1908 -S UP -r 512000 -D 0.0009765625 l -t * -s 789 -d 1909 -S UP -r 512000 -D 0.0009765625 l -t * -s 789 -d 1910 -S UP -r 512000 -D 0.0009765625 l -t * -s 789 -d 1911 -S UP -r 512000 -D 0.0009765625 l -t * -s 789 -d 1912 -S UP -r 512000 -D 0.0009765625 l -t * -s 790 -d 1026 -S UP -r 512000 -D 0.00390625 l -t * -s 794 -d 1301 -S UP -r 512000 -D 0.0009765625 l -t * -s 795 -d 838 -S UP -r 512000 -D 0.03125 l -t * -s 797 -d 800 -S UP -r 512000 -D 0.0009765625 l -t * -s 798 -d 858 -S UP -r 512000 -D 0.03125 l -t * -s 798 -d 968 -S UP -r 512000 -D 0.0009765625 l -t * -s 800 -d 859 -S UP -r 512000 -D 0.0009765625 l -t * -s 801 -d 859 -S UP -r 512000 -D 0.0009765625 l -t * -s 802 -d 859 -S UP -r 512000 -D 0.0009765625 l -t * -s 803 -d 859 -S UP -r 512000 -D 0.0009765625 l -t * -s 803 -d 1556 -S UP -r 512000 -D 0.0009765625 l -t * -s 804 -d 1492 -S UP -r 512000 -D 0.0078125 l -t * -s 805 -d 1311 -S UP -r 512000 -D 0.0009765625 l -t * -s 805 -d 1581 -S UP -r 512000 -D 0.0009765625 l -t * -s 805 -d 1705 -S UP -r 512000 -D 0.0009765625 l -t * -s 805 -d 1560 -S UP -r 512000 -D 0.0009765625 l -t * -s 807 -d 860 -S UP -r 512000 -D 0.03125 l -t * -s 808 -d 1118 -S UP -r 512000 -D 0.09375 l -t * -s 808 -d 1394 -S UP -r 512000 -D 0.0009765625 l -t * -s 809 -d 861 -S UP -r 512000 -D 0.09375 l -t * -s 809 -d 842 -S UP -r 512000 -D 0.03125 l -t * -s 809 -d 862 -S UP -r 512000 -D 0.046875 l -t * -s 811 -d 812 -S UP -r 512000 -D 0.0009765625 l -t * -s 811 -d 1796 -S UP -r 512000 -D 0.0009765625 l -t * -s 812 -d 1796 -S UP -r 512000 -D 0.0009765625 l -t * -s 813 -d 1021 -S UP -r 512000 -D 0.00390625 l -t * -s 813 -d 1264 -S UP -r 512000 -D 0.00390625 l -t * -s 817 -d 864 -S UP -r 512000 -D 0.015625 l -t * -s 818 -d 1236 -S UP -r 512000 -D 0.03125 l -t * -s 818 -d 1065 -S UP -r 512000 -D 0.03125 l -t * -s 818 -d 1268 -S UP -r 512000 -D 0.03125 l -t * -s 819 -d 1276 -S UP -r 512000 -D 0.0009765625 l -t * -s 820 -d 865 -S UP -r 512000 -D 0.0009765625 l -t * -s 820 -d 827 -S UP -r 512000 -D 0.0009765625 l -t * -s 821 -d 865 -S UP -r 512000 -D 0.0234375 l -t * -s 821 -d 1325 -S UP -r 512000 -D 0.015625 l -t * -s 826 -d 869 -S UP -r 512000 -D 0.0009765625 l -t * -s 829 -d 870 -S UP -r 512000 -D 0.0009765625 l -t * -s 830 -d 873 -S UP -r 512000 -D 0.03125 l -t * -s 831 -d 1106 -S UP -r 512000 -D 0.00390625 l -t * -s 832 -d 1022 -S UP -r 512000 -D 0.0009765625 l -t * -s 832 -d 1667 -S UP -r 512000 -D 0.0009765625 l -t * -s 832 -d 1766 -S UP -r 512000 -D 0.0078125 l -t * -s 833 -d 881 -S UP -r 512000 -D 0.0625 l -t * -s 834 -d 1022 -S UP -r 512000 -D 0.03125 l -t * -s 834 -d 1691 -S UP -r 512000 -D 0.03125 l -t * -s 835 -d 1327 -S UP -r 512000 -D 0.0009765625 l -t * -s 836 -d 1327 -S UP -r 512000 -D 0.0009765625 l -t * -s 837 -d 1772 -S UP -r 512000 -D 0.125 l -t * -s 837 -d 1023 -S UP -r 512000 -D 0.00390625 l -t * -s 837 -d 1024 -S UP -r 512000 -D 0.00390625 l -t * -s 838 -d 840 -S UP -r 512000 -D 0.03125 l -t * -s 838 -d 888 -S UP -r 512000 -D 0.03125 l -t * -s 841 -d 1304 -S UP -r 512000 -D 0.03125 l -t * -s 842 -d 1019 -S UP -r 512000 -D 0.015625 l -t * -s 843 -d 1593 -S UP -r 512000 -D 0.0078125 l -t * -s 843 -d 846 -S UP -r 512000 -D 0.0078125 l -t * -s 844 -d 1249 -S UP -r 512000 -D 0.015625 l -t * -s 845 -d 1249 -S UP -r 512000 -D 0.0009765625 l -t * -s 849 -d 925 -S UP -r 512000 -D 0.0625 l -t * -s 849 -d 997 -S UP -r 512000 -D 0.0625 l -t * -s 849 -d 996 -S UP -r 512000 -D 0.015625 l -t * -s 849 -d 1743 -S UP -r 512000 -D 0.0009765625 l -t * -s 849 -d 998 -S UP -r 512000 -D 0.0009765625 l -t * -s 850 -d 889 -S UP -r 512000 -D 0.0439453125 l -t * -s 850 -d 890 -S UP -r 512000 -D 0.0439453125 l -t * -s 850 -d 859 -S UP -r 512000 -D 0.03125 l -t * -s 850 -d 865 -S UP -r 512000 -D 0.0625 l -t * -s 850 -d 1746 -S UP -r 512000 -D 0.0439453125 l -t * -s 850 -d 870 -S UP -r 512000 -D 0.03125 l -t * -s 850 -d 893 -S UP -r 512000 -D 0.03125 l -t * -s 850 -d 891 -S UP -r 512000 -D 0.0439453125 l -t * -s 850 -d 892 -S UP -r 512000 -D 0.03125 l -t * -s 852 -d 894 -S UP -r 512000 -D 0.0078125 l -t * -s 854 -d 995 -S UP -r 512000 -D 0.0009765625 l -t * -s 855 -d 899 -S UP -r 512000 -D 0.015625 l -t * -s 860 -d 901 -S UP -r 512000 -D 0.0625 l -t * -s 861 -d 1176 -S UP -r 512000 -D 0.0078125 l -t * -s 862 -d 1120 -S UP -r 512000 -D 0.02734375 l -t * -s 863 -d 902 -S UP -r 512000 -D 0.03125 l -t * -s 864 -d 1356 -S UP -r 512000 -D 0.03125 l -t * -s 865 -d 1568 -S UP -r 512000 -D 0.0234375 l -t * -s 865 -d 1502 -S UP -r 512000 -D 0.0234375 l -t * -s 866 -d 903 -S UP -r 512000 -D 0.0009765625 l -t * -s 867 -d 903 -S UP -r 512000 -D 0.0009765625 l -t * -s 868 -d 903 -S UP -r 512000 -D 0.0009765625 l -t * -s 869 -d 1497 -S UP -r 512000 -D 0.0009765625 l -t * -s 869 -d 1247 -S UP -r 512000 -D 0.0009765625 l -t * -s 872 -d 1107 -S UP -r 512000 -D 0.00390625 l -t * -s 873 -d 957 -S UP -r 512000 -D 0.03125 l -t * -s 874 -d 1798 -S UP -r 512000 -D 0.0009765625 l -t * -s 875 -d 1798 -S UP -r 512000 -D 0.0009765625 l -t * -s 876 -d 1798 -S UP -r 512000 -D 0.0009765625 l -t * -s 877 -d 1798 -S UP -r 512000 -D 0.0009765625 l -t * -s 878 -d 1798 -S UP -r 512000 -D 0.0009765625 l -t * -s 879 -d 1798 -S UP -r 512000 -D 0.0009765625 l -t * -s 880 -d 1798 -S UP -r 512000 -D 0.0009765625 l -t * -s 883 -d 1640 -S UP -r 512000 -D 0.0009765625 l -t * -s 883 -d 907 -S UP -r 512000 -D 0.0625 l -t * -s 885 -d 1681 -S UP -r 512000 -D 0.0009765625 l -t * -s 886 -d 1141 -S UP -r 512000 -D 0.0625 l -t * -s 889 -d 906 -S UP -r 512000 -D 0.0439453125 l -t * -s 889 -d 909 -S UP -r 512000 -D 0.015625 l -t * -s 889 -d 910 -S UP -r 512000 -D 0.015625 l -t * -s 889 -d 911 -S UP -r 512000 -D 0.015625 l -t * -s 890 -d 1028 -S UP -r 512000 -D 0.0439453125 l -t * -s 891 -d 949 -S UP -r 512000 -D 0.0009765625 l -t * -s 891 -d 950 -S UP -r 512000 -D 0.03125 l -t * -s 891 -d 951 -S UP -r 512000 -D 0.03125 l -t * -s 892 -d 948 -S UP -r 512000 -D 0.0009765625 l -t * -s 893 -d 1029 -S UP -r 512000 -D 0.0009765625 l -t * -s 894 -d 902 -S UP -r 512000 -D 0.03125 l -t * -s 894 -d 1097 -S UP -r 512000 -D 0.0009765625 l -t * -s 895 -d 1790 -S UP -r 512000 -D 0.03125 l -t * -s 895 -d 912 -S UP -r 512000 -D 0.1875 l -t * -s 895 -d 913 -S UP -r 512000 -D 0.03125 l -t * -s 895 -d 1456 -S UP -r 512000 -D 0.03125 l -t * -s 895 -d 914 -S UP -r 512000 -D 0.03125 l -t * -s 895 -d 1913 -S UP -r 512000 -D 0.03125 l -t * -s 895 -d 1098 -S UP -r 512000 -D 0.03125 l -t * -s 895 -d 1281 -S UP -r 512000 -D 0.03125 l -t * -s 896 -d 1022 -S UP -r 512000 -D 0.03125 l -t * -s 897 -d 917 -S UP -r 512000 -D 0.0009765625 l -t * -s 897 -d 1022 -S UP -r 512000 -D 0.0029296875 l -t * -s 898 -d 1914 -S UP -r 512000 -D 0.03125 l -t * -s 898 -d 1022 -S UP -r 512000 -D 0.03125 l -t * -s 899 -d 922 -S UP -r 512000 -D 0.015625 l -t * -s 899 -d 1174 -S UP -r 512000 -D 0.0009765625 l -t * -s 900 -d 923 -S UP -r 512000 -D 0.0078125 l -t * -s 901 -d 985 -S UP -r 512000 -D 0.0625 l -t * -s 901 -d 984 -S UP -r 512000 -D 0.0625 l -t * -s 901 -d 1479 -S UP -r 512000 -D 0.0625 l -t * -s 901 -d 1619 -S UP -r 512000 -D 0.0625 l -t * -s 902 -d 925 -S UP -r 512000 -D 0.0009765625 l -t * -s 902 -d 993 -S UP -r 512000 -D 0.0625 l -t * -s 902 -d 994 -S UP -r 512000 -D 0.03125 l -t * -s 902 -d 1539 -S UP -r 512000 -D 0.03125 l -t * -s 902 -d 995 -S UP -r 512000 -D 0.03125 l -t * -s 902 -d 1061 -S UP -r 512000 -D 0.03125 l -t * -s 902 -d 1142 -S UP -r 512000 -D 0.0625 l -t * -s 903 -d 923 -S UP -r 512000 -D 0.0078125 l -t * -s 904 -d 1601 -S UP -r 512000 -D 0.0009765625 l -t * -s 904 -d 1604 -S UP -r 512000 -D 0.0009765625 l -t * -s 904 -d 1329 -S UP -r 512000 -D 0.0009765625 l -t * -s 905 -d 1821 -S UP -r 512000 -D 0.0009765625 l -t * -s 905 -d 1109 -S UP -r 512000 -D 0.0009765625 l -t * -s 905 -d 1215 -S UP -r 512000 -D 0.0009765625 l -t * -s 906 -d 1028 -S UP -r 512000 -D 0.0439453125 l -t * -s 906 -d 1821 -S UP -r 512000 -D 0.015625 l -t * -s 907 -d 1613 -S UP -r 512000 -D 0.0009765625 l -t * -s 907 -d 1640 -S UP -r 512000 -D 0.0009765625 l -t * -s 908 -d 1528 -S UP -r 512000 -D 0.0009765625 l -t * -s 908 -d 1461 -S UP -r 512000 -D 0.0009765625 l -t * -s 908 -d 1460 -S UP -r 512000 -D 0.0009765625 l -t * -s 908 -d 1614 -S UP -r 512000 -D 0.0009765625 l -t * -s 908 -d 983 -S UP -r 512000 -D 0.0009765625 l -t * -s 908 -d 929 -S UP -r 512000 -D 0.0009765625 l -t * -s 910 -d 946 -S UP -r 512000 -D 0.0009765625 l -t * -s 910 -d 947 -S UP -r 512000 -D 0.0009765625 l -t * -s 910 -d 1417 -S UP -r 512000 -D 0.0009765625 l -t * -s 910 -d 1429 -S UP -r 512000 -D 0.0009765625 l -t * -s 911 -d 1329 -S UP -r 512000 -D 0.0009765625 l -t * -s 911 -d 924 -S UP -r 512000 -D 0.0009765625 l -t * -s 913 -d 970 -S UP -r 512000 -D 0.015625 l -t * -s 913 -d 1567 -S UP -r 512000 -D 0.015625 l -t * -s 913 -d 1031 -S UP -r 512000 -D 0.015625 l -t * -s 914 -d 1887 -S UP -r 512000 -D 0.0009765625 l -t * -s 915 -d 1792 -S UP -r 512000 -D 0.0009765625 l -t * -s 918 -d 934 -S UP -r 512000 -D 0.0625 l -t * -s 919 -d 934 -S UP -r 512000 -D 0.0625 l -t * -s 920 -d 934 -S UP -r 512000 -D 0.0009765625 l -t * -s 920 -d 938 -S UP -r 512000 -D 0.0009765625 l -t * -s 921 -d 1450 -S UP -r 512000 -D 0.0009765625 l -t * -s 921 -d 1451 -S UP -r 512000 -D 0.0009765625 l -t * -s 923 -d 1203 -S UP -r 512000 -D 0.0625 l -t * -s 923 -d 1107 -S UP -r 512000 -D 0.0625 l -t * -s 923 -d 1048 -S UP -r 512000 -D 0.0078125 l -t * -s 923 -d 1177 -S UP -r 512000 -D 0.0078125 l -t * -s 923 -d 1795 -S UP -r 512000 -D 0.0078125 l -t * -s 923 -d 1044 -S UP -r 512000 -D 0.0078125 l -t * -s 923 -d 1211 -S UP -r 512000 -D 0.0078125 l -t * -s 923 -d 1616 -S UP -r 512000 -D 0.0078125 l -t * -s 924 -d 1329 -S UP -r 512000 -D 0.0009765625 l -t * -s 926 -d 1682 -S UP -r 512000 -D 0.0009765625 l -t * -s 926 -d 1451 -S UP -r 512000 -D 0.0009765625 l -t * -s 927 -d 939 -S UP -r 512000 -D 0.015625 l -t * -s 927 -d 940 -S UP -r 512000 -D 0.015625 l -t * -s 928 -d 942 -S UP -r 512000 -D 0.0078125 l -t * -s 928 -d 943 -S UP -r 512000 -D 0.03125 l -t * -s 929 -d 1345 -S UP -r 512000 -D 0.0009765625 l -t * -s 930 -d 1345 -S UP -r 512000 -D 0.0009765625 l -t * -s 931 -d 1345 -S UP -r 512000 -D 0.0009765625 l -t * -s 934 -d 1479 -S UP -r 512000 -D 0.125 l -t * -s 934 -d 1027 -S UP -r 512000 -D 0.0625 l -t * -s 935 -d 1109 -S UP -r 512000 -D 0.0009765625 l -t * -s 936 -d 1109 -S UP -r 512000 -D 0.0009765625 l -t * -s 950 -d 1746 -S UP -r 512000 -D 0.03125 l -t * -s 953 -d 959 -S UP -r 512000 -D 0.0009765625 l -t * -s 953 -d 956 -S UP -r 512000 -D 0.0009765625 l -t * -s 953 -d 954 -S UP -r 512000 -D 0.0009765625 l -t * -s 954 -d 980 -S UP -r 512000 -D 0.0009765625 l -t * -s 954 -d 1776 -S UP -r 512000 -D 0.0009765625 l -t * -s 955 -d 956 -S UP -r 512000 -D 0.0009765625 l -t * -s 955 -d 1749 -S UP -r 512000 -D 0.0009765625 l -t * -s 957 -d 960 -S UP -r 512000 -D 0.0625 l -t * -s 957 -d 1038 -S UP -r 512000 -D 0.0078125 l -t * -s 957 -d 1915 -S UP -r 512000 -D 0.03125 l -t * -s 957 -d 1039 -S UP -r 512000 -D 0.03125 l -t * -s 957 -d 982 -S UP -r 512000 -D 0.03125 l -t * -s 957 -d 1574 -S UP -r 512000 -D 0.0009765625 l -t * -s 960 -d 1303 -S UP -r 512000 -D 0.0009765625 l -t * -s 960 -d 1479 -S UP -r 512000 -D 0.0625 l -t * -s 960 -d 1040 -S UP -r 512000 -D 0.0625 l -t * -s 960 -d 1144 -S UP -r 512000 -D 0.0625 l -t * -s 962 -d 1175 -S UP -r 512000 -D 0.0009765625 l -t * -s 963 -d 965 -S UP -r 512000 -D 0.0009765625 l -t * -s 963 -d 1016 -S UP -r 512000 -D 0.0009765625 l -t * -s 963 -d 1611 -S UP -r 512000 -D 0.0009765625 l -t * -s 963 -d 1018 -S UP -r 512000 -D 0.0009765625 l -t * -s 963 -d 964 -S UP -r 512000 -D 0.0009765625 l -t * -s 963 -d 1017 -S UP -r 512000 -D 0.0009765625 l -t * -s 964 -d 965 -S UP -r 512000 -D 0.0009765625 l -t * -s 964 -d 1016 -S UP -r 512000 -D 0.0009765625 l -t * -s 964 -d 1611 -S UP -r 512000 -D 0.0009765625 l -t * -s 964 -d 1018 -S UP -r 512000 -D 0.0009765625 l -t * -s 964 -d 1017 -S UP -r 512000 -D 0.0009765625 l -t * -s 965 -d 1016 -S UP -r 512000 -D 0.0009765625 l -t * -s 965 -d 1611 -S UP -r 512000 -D 0.0009765625 l -t * -s 965 -d 1017 -S UP -r 512000 -D 0.0009765625 l -t * -s 965 -d 1018 -S UP -r 512000 -D 0.0009765625 l -t * -s 965 -d 966 -S UP -r 512000 -D 0.0009765625 l -t * -s 965 -d 1152 -S UP -r 512000 -D 0.0009765625 l -t * -s 965 -d 1230 -S UP -r 512000 -D 0.0048828125 l -t * -s 972 -d 973 -S UP -r 512000 -D 0.0009765625 l -t * -s 972 -d 1041 -S UP -r 512000 -D 0.0009765625 l -t * -s 973 -d 1041 -S UP -r 512000 -D 0.0009765625 l -t * -s 974 -d 1702 -S UP -r 512000 -D 0.0009765625 l -t * -s 975 -d 1483 -S UP -r 512000 -D 0.0009765625 l -t * -s 975 -d 1702 -S UP -r 512000 -D 0.0009765625 l -t * -s 977 -d 1702 -S UP -r 512000 -D 0.0009765625 l -t * -s 978 -d 1702 -S UP -r 512000 -D 0.0009765625 l -t * -s 979 -d 999 -S UP -r 512000 -D 0.0625 l -t * -s 979 -d 1916 -S UP -r 512000 -D 0.0009765625 l -t * -s 981 -d 1324 -S UP -r 512000 -D 0.015625 l -t * -s 983 -d 1528 -S UP -r 512000 -D 0.0009765625 l -t * -s 983 -d 1460 -S UP -r 512000 -D 0.0009765625 l -t * -s 983 -d 1461 -S UP -r 512000 -D 0.0009765625 l -t * -s 983 -d 1614 -S UP -r 512000 -D 0.0009765625 l -t * -s 983 -d 1005 -S UP -r 512000 -D 0.0009765625 l -t * -s 991 -d 1042 -S UP -r 512000 -D 0.0009765625 l -t * -s 991 -d 1108 -S UP -r 512000 -D 0.0234375 l -t * -s 991 -d 1011 -S UP -r 512000 -D 0.0009765625 l -t * -s 993 -d 1145 -S UP -r 512000 -D 0.0009765625 l -t * -s 993 -d 1452 -S UP -r 512000 -D 0.0009765625 l -t * -s 993 -d 1767 -S UP -r 512000 -D 0.03125 l -t * -s 998 -d 1485 -S UP -r 512000 -D 0.0009765625 l -t * -s 999 -d 1118 -S UP -r 512000 -D 0.109375 l -t * -s 1010 -d 1549 -S UP -r 512000 -D 0.0009765625 l -t * -s 1010 -d 1718 -S UP -r 512000 -D 0.0009765625 l -t * -s 1015 -d 1917 -S UP -r 512000 -D 0.0009765625 l -t * -s 1016 -d 1611 -S UP -r 512000 -D 0.0009765625 l -t * -s 1016 -d 1017 -S UP -r 512000 -D 0.0009765625 l -t * -s 1016 -d 1018 -S UP -r 512000 -D 0.0009765625 l -t * -s 1017 -d 1018 -S UP -r 512000 -D 0.0009765625 l -t * -s 1017 -d 1611 -S UP -r 512000 -D 0.0009765625 l -t * -s 1018 -d 1611 -S UP -r 512000 -D 0.0009765625 l -t * -s 1021 -d 1265 -S UP -r 512000 -D 0.001953125 l -t * -s 1022 -d 1790 -S UP -r 512000 -D 0.03125 l -t * -s 1022 -d 1918 -S UP -r 512000 -D 0.03125 l -t * -s 1026 -d 1351 -S UP -r 512000 -D 0.03125 l -t * -s 1027 -d 1175 -S UP -r 512000 -D 0.015625 l -t * -s 1030 -d 1067 -S UP -r 512000 -D 0.0009765625 l -t * -s 1030 -d 1482 -S UP -r 512000 -D 0.0009765625 l -t * -s 1030 -d 1045 -S UP -r 512000 -D 0.0009765625 l -t * -s 1032 -d 1402 -S UP -r 512000 -D 0.0009765625 l -t * -s 1032 -d 1190 -S UP -r 512000 -D 0.0009765625 l -t * -s 1032 -d 1034 -S UP -r 512000 -D 0.0009765625 l -t * -s 1032 -d 1770 -S UP -r 512000 -D 0.0009765625 l -t * -s 1033 -d 1770 -S UP -r 512000 -D 0.0009765625 l -t * -s 1035 -d 1702 -S UP -r 512000 -D 0.0625 l -t * -s 1036 -d 1483 -S UP -r 512000 -D 0.0009765625 l -t * -s 1037 -d 1702 -S UP -r 512000 -D 0.0009765625 l -t * -s 1039 -d 1919 -S UP -r 512000 -D 0.03125 l -t * -s 1041 -d 1454 -S UP -r 512000 -D 0.0009765625 l -t * -s 1049 -d 1067 -S UP -r 512000 -D 0.03125 l -t * -s 1049 -d 1051 -S UP -r 512000 -D 0.015625 l -t * -s 1049 -d 1050 -S UP -r 512000 -D 0.015625 l -t * -s 1049 -d 1055 -S UP -r 512000 -D 0.015625 l -t * -s 1051 -d 1055 -S UP -r 512000 -D 0.0009765625 l -t * -s 1052 -d 1484 -S UP -r 512000 -D 0.001953125 l -t * -s 1052 -d 1808 -S UP -r 512000 -D 0.0009765625 l -t * -s 1053 -d 1054 -S UP -r 512000 -D 0.0009765625 l -t * -s 1053 -d 1302 -S UP -r 512000 -D 0.0009765625 l -t * -s 1056 -d 1100 -S UP -r 512000 -D 0.0009765625 l -t * -s 1057 -d 1085 -S UP -r 512000 -D 0.0009765625 l -t * -s 1058 -d 1107 -S UP -r 512000 -D 0.0009765625 l -t * -s 1058 -d 1666 -S UP -r 512000 -D 0.0009765625 l -t * -s 1058 -d 1684 -S UP -r 512000 -D 0.0009765625 l -t * -s 1062 -d 1784 -S UP -r 512000 -D 0.0009765625 l -t * -s 1062 -d 1079 -S UP -r 512000 -D 0.0048828125 l -t * -s 1063 -d 1074 -S UP -r 512000 -D 0.03125 l -t * -s 1067 -d 1833 -S UP -r 512000 -D 0.0625 l -t * -s 1067 -d 1525 -S UP -r 512000 -D 0.0625 l -t * -s 1067 -d 1074 -S UP -r 512000 -D 0.0625 l -t * -s 1067 -d 1090 -S UP -r 512000 -D 0.0625 l -t * -s 1067 -d 1079 -S UP -r 512000 -D 0.0625 l -t * -s 1067 -d 1083 -S UP -r 512000 -D 0.0625 l -t * -s 1067 -d 1084 -S UP -r 512000 -D 0.0625 l -t * -s 1067 -d 1436 -S UP -r 512000 -D 0.03125 l -t * -s 1067 -d 1243 -S UP -r 512000 -D 0.03125 l -t * -s 1067 -d 1439 -S UP -r 512000 -D 0.03125 l -t * -s 1067 -d 1926 -S UP -r 512000 -D 0.0625 l -t * -s 1067 -d 1644 -S UP -r 512000 -D 0.03125 l -t * -s 1067 -d 1794 -S UP -r 512000 -D 0.03125 l -t * -s 1068 -d 1759 -S UP -r 512000 -D 0.0009765625 l -t * -s 1069 -d 1104 -S UP -r 512000 -D 0.0029296875 l -t * -s 1069 -d 1103 -S UP -r 512000 -D 0.0009765625 l -t * -s 1071 -d 1303 -S UP -r 512000 -D 0.03125 l -t * -s 1072 -d 1484 -S UP -r 512000 -D 0.046875 l -t * -s 1072 -d 1146 -S UP -r 512000 -D 0.03125 l -t * -s 1074 -d 1790 -S UP -r 512000 -D 0.0625 l -t * -s 1074 -d 1088 -S UP -r 512000 -D 0.0625 l -t * -s 1074 -d 1082 -S UP -r 512000 -D 0.0625 l -t * -s 1074 -d 1091 -S UP -r 512000 -D 0.03125 l -t * -s 1074 -d 1092 -S UP -r 512000 -D 0.03125 l -t * -s 1074 -d 1099 -S UP -r 512000 -D 0.03125 l -t * -s 1076 -d 1559 -S UP -r 512000 -D 0.0009765625 l -t * -s 1077 -d 1751 -S UP -r 512000 -D 0.03125 l -t * -s 1079 -d 1081 -S UP -r 512000 -D 0.0625 l -t * -s 1079 -d 1240 -S UP -r 512000 -D 0.0048828125 l -t * -s 1080 -d 1626 -S UP -r 512000 -D 0.0009765625 l -t * -s 1080 -d 1645 -S UP -r 512000 -D 0.0009765625 l -t * -s 1082 -d 1928 -S UP -r 512000 -D 0.0009765625 l -t * -s 1083 -d 1929 -S UP -r 512000 -D 0.0009765625 l -t * -s 1083 -d 1930 -S UP -r 512000 -D 0.0009765625 l -t * -s 1089 -d 1161 -S UP -r 512000 -D 0.0078125 l -t * -s 1089 -d 1513 -S UP -r 512000 -D 0.0078125 l -t * -s 1089 -d 1530 -S UP -r 512000 -D 0.0078125 l -t * -s 1089 -d 1584 -S UP -r 512000 -D 0.0078125 l -t * -s 1094 -d 1168 -S UP -r 512000 -D 0.03125 l -t * -s 1094 -d 1888 -S UP -r 512000 -D 0.0009765625 l -t * -s 1099 -d 1102 -S UP -r 512000 -D 0.03125 l -t * -s 1101 -d 1931 -S UP -r 512000 -D 0.0009765625 l -t * -s 1101 -d 1210 -S UP -r 512000 -D 0.0009765625 l -t * -s 1101 -d 1112 -S UP -r 512000 -D 0.0009765625 l -t * -s 1103 -d 1206 -S UP -r 512000 -D 0.0009765625 l -t * -s 1104 -d 1932 -S UP -r 512000 -D 0.005859375 l -t * -s 1104 -d 1154 -S UP -r 512000 -D 0.0029296875 l -t * -s 1104 -d 1360 -S UP -r 512000 -D 0.005859375 l -t * -s 1104 -d 1782 -S UP -r 512000 -D 0.005859375 l -t * -s 1104 -d 1319 -S UP -r 512000 -D 0.0009765625 l -t * -s 1107 -d 1212 -S UP -r 512000 -D 0.0009765625 l -t * -s 1107 -d 1209 -S UP -r 512000 -D 0.0009765625 l -t * -s 1108 -d 1676 -S UP -r 512000 -D 0.0009765625 l -t * -s 1108 -d 1673 -S UP -r 512000 -D 0.0009765625 l -t * -s 1108 -d 1672 -S UP -r 512000 -D 0.0009765625 l -t * -s 1108 -d 1675 -S UP -r 512000 -D 0.0009765625 l -t * -s 1108 -d 1677 -S UP -r 512000 -D 0.0009765625 l -t * -s 1108 -d 1674 -S UP -r 512000 -D 0.0009765625 l -t * -s 1108 -d 1671 -S UP -r 512000 -D 0.0009765625 l -t * -s 1108 -d 1608 -S UP -r 512000 -D 0.03125 l -t * -s 1108 -d 1670 -S UP -r 512000 -D 0.0009765625 l -t * -s 1109 -d 1821 -S UP -r 512000 -D 0.0009765625 l -t * -s 1109 -d 1495 -S UP -r 512000 -D 0.0009765625 l -t * -s 1109 -d 1215 -S UP -r 512000 -D 0.0009765625 l -t * -s 1110 -d 1821 -S UP -r 512000 -D 0.0009765625 l -t * -s 1110 -d 1933 -S UP -r 512000 -D 0.0009765625 l -t * -s 1110 -d 1215 -S UP -r 512000 -D 0.0009765625 l -t * -s 1112 -d 1210 -S UP -r 512000 -D 0.0009765625 l -t * -s 1112 -d 1931 -S UP -r 512000 -D 0.0009765625 l -t * -s 1112 -d 1934 -S UP -r 512000 -D 0.03125 l -t * -s 1112 -d 1935 -S UP -r 512000 -D 0.0009765625 l -t * -s 1113 -d 1637 -S UP -r 512000 -D 0.03125 l -t * -s 1120 -d 1936 -S UP -r 512000 -D 0.0234375 l -t * -s 1122 -d 1772 -S UP -r 512000 -D 0.03125 l -t * -s 1122 -d 1937 -S UP -r 512000 -D 0.03125 l -t * -s 1122 -d 1522 -S UP -r 512000 -D 0.03125 l -t * -s 1122 -d 1620 -S UP -r 512000 -D 0.03125 l -t * -s 1122 -d 1704 -S UP -r 512000 -D 0.125 l -t * -s 1122 -d 1711 -S UP -r 512000 -D 0.15625 l -t * -s 1123 -d 1147 -S UP -r 512000 -D 0.0078125 l -t * -s 1123 -d 1370 -S UP -r 512000 -D 0.0078125 l -t * -s 1125 -d 1356 -S UP -r 512000 -D 0.0625 l -t * -s 1129 -d 1806 -S UP -r 512000 -D 0.03125 l -t * -s 1129 -d 1262 -S UP -r 512000 -D 0.03125 l -t * -s 1129 -d 1612 -S UP -r 512000 -D 0.015625 l -t * -s 1129 -d 1722 -S UP -r 512000 -D 0.03125 l -t * -s 1129 -d 1217 -S UP -r 512000 -D 0.03125 l -t * -s 1132 -d 1133 -S UP -r 512000 -D 0.0009765625 l -t * -s 1134 -d 1938 -S UP -r 512000 -D 0.0009765625 l -t * -s 1134 -d 1755 -S UP -r 512000 -D 0.0009765625 l -t * -s 1136 -d 1807 -S UP -r 512000 -D 0.0009765625 l -t * -s 1136 -d 1939 -S UP -r 512000 -D 0.0625 l -t * -s 1139 -d 1207 -S UP -r 512000 -D 0.0625 l -t * -s 1140 -d 1428 -S UP -r 512000 -D 0.0009765625 l -t * -s 1140 -d 1411 -S UP -r 512000 -D 0.015625 l -t * -s 1140 -d 1448 -S UP -r 512000 -D 0.015625 l -t * -s 1141 -d 1555 -S UP -r 512000 -D 0.0009765625 l -t * -s 1142 -d 1539 -S UP -r 512000 -D 0.0009765625 l -t * -s 1143 -d 1940 -S UP -r 512000 -D 0.0009765625 l -t * -s 1143 -d 1609 -S UP -r 512000 -D 0.0009765625 l -t * -s 1143 -d 1215 -S UP -r 512000 -D 0.0009765625 l -t * -s 1145 -d 1163 -S UP -r 512000 -D 0.0009765625 l -t * -s 1145 -d 1164 -S UP -r 512000 -D 0.0009765625 l -t * -s 1145 -d 1165 -S UP -r 512000 -D 0.0009765625 l -t * -s 1145 -d 1378 -S UP -r 512000 -D 0.03125 l -t * -s 1145 -d 1810 -S UP -r 512000 -D 0.0009765625 l -t * -s 1146 -d 1303 -S UP -r 512000 -D 0.03125 l -t * -s 1147 -d 1284 -S UP -r 512000 -D 0.0078125 l -t * -s 1152 -d 1713 -S UP -r 512000 -D 0.0009765625 l -t * -s 1153 -d 1762 -S UP -r 512000 -D 0.0009765625 l -t * -s 1154 -d 1157 -S UP -r 512000 -D 0.0009765625 l -t * -s 1158 -d 1941 -S UP -r 512000 -D 0.03125 l -t * -s 1159 -d 1593 -S UP -r 512000 -D 0.0078125 l -t * -s 1160 -d 1183 -S UP -r 512000 -D 0.0009765625 l -t * -s 1162 -d 1333 -S UP -r 512000 -D 0.015625 l -t * -s 1165 -d 1378 -S UP -r 512000 -D 0.0009765625 l -t * -s 1169 -d 1339 -S UP -r 512000 -D 0.0078125 l -t * -s 1175 -d 1312 -S UP -r 512000 -D 0.0625 l -t * -s 1181 -d 1625 -S UP -r 512000 -D 0.0009765625 l -t * -s 1181 -d 1629 -S UP -r 512000 -D 0.0009765625 l -t * -s 1181 -d 1628 -S UP -r 512000 -D 0.0009765625 l -t * -s 1181 -d 1630 -S UP -r 512000 -D 0.0009765625 l -t * -s 1181 -d 1626 -S UP -r 512000 -D 0.0009765625 l -t * -s 1183 -d 1724 -S UP -r 512000 -D 0.0009765625 l -t * -s 1183 -d 1725 -S UP -r 512000 -D 0.0009765625 l -t * -s 1183 -d 1726 -S UP -r 512000 -D 0.0009765625 l -t * -s 1183 -d 1942 -S UP -r 512000 -D 0.0009765625 l -t * -s 1183 -d 1727 -S UP -r 512000 -D 0.0009765625 l -t * -s 1183 -d 1728 -S UP -r 512000 -D 0.0009765625 l -t * -s 1183 -d 1768 -S UP -r 512000 -D 0.0009765625 l -t * -s 1183 -d 1729 -S UP -r 512000 -D 0.0009765625 l -t * -s 1183 -d 1943 -S UP -r 512000 -D 0.0009765625 l -t * -s 1183 -d 1730 -S UP -r 512000 -D 0.0009765625 l -t * -s 1183 -d 1744 -S UP -r 512000 -D 0.0009765625 l -t * -s 1183 -d 1731 -S UP -r 512000 -D 0.0009765625 l -t * -s 1183 -d 1732 -S UP -r 512000 -D 0.0009765625 l -t * -s 1183 -d 1733 -S UP -r 512000 -D 0.0009765625 l -t * -s 1183 -d 1734 -S UP -r 512000 -D 0.0009765625 l -t * -s 1183 -d 1735 -S UP -r 512000 -D 0.0009765625 l -t * -s 1183 -d 1944 -S UP -r 512000 -D 0.0009765625 l -t * -s 1184 -d 1570 -S UP -r 512000 -D 0.0009765625 l -t * -s 1186 -d 1193 -S UP -r 512000 -D 0.0009765625 l -t * -s 1187 -d 1272 -S UP -r 512000 -D 0.0302734375 l -t * -s 1187 -d 1440 -S UP -r 512000 -D 0.0302734375 l -t * -s 1187 -d 1531 -S UP -r 512000 -D 0.0302734375 l -t * -s 1187 -d 1750 -S UP -r 512000 -D 0.0302734375 l -t * -s 1187 -d 1771 -S UP -r 512000 -D 0.05859375 l -t * -s 1189 -d 1702 -S UP -r 512000 -D 0.0009765625 l -t * -s 1194 -d 1287 -S UP -r 512000 -D 0.0009765625 l -t * -s 1195 -d 1337 -S UP -r 512000 -D 0.0009765625 l -t * -s 1195 -d 1945 -S UP -r 512000 -D 0.015625 l -t * -s 1203 -d 1693 -S UP -r 512000 -D 0.0009765625 l -t * -s 1205 -d 1230 -S UP -r 512000 -D 0.0009765625 l -t * -s 1205 -d 1219 -S UP -r 512000 -D 0.0009765625 l -t * -s 1209 -d 1212 -S UP -r 512000 -D 0.0009765625 l -t * -s 1210 -d 1931 -S UP -r 512000 -D 0.0009765625 l -t * -s 1211 -d 1795 -S UP -r 512000 -D 0.0009765625 l -t * -s 1213 -d 1818 -S UP -r 512000 -D 0.0009765625 l -t * -s 1213 -d 1335 -S UP -r 512000 -D 0.0009765625 l -t * -s 1213 -d 1334 -S UP -r 512000 -D 0.0009765625 l -t * -s 1214 -d 1772 -S UP -r 512000 -D 0.15625 l -t * -s 1214 -d 1256 -S UP -r 512000 -D 0.0009765625 l -t * -s 1214 -d 1652 -S UP -r 512000 -D 0.029296875 l -t * -s 1215 -d 1821 -S UP -r 512000 -D 0.0009765625 l -t * -s 1215 -d 1940 -S UP -r 512000 -D 0.0009765625 l -t * -s 1215 -d 1609 -S UP -r 512000 -D 0.0009765625 l -t * -s 1219 -d 1230 -S UP -r 512000 -D 0.0009765625 l -t * -s 1221 -d 1946 -S UP -r 512000 -D 0.0009765625 l -t * -s 1221 -d 1222 -S UP -r 512000 -D 0.09765625 l -t * -s 1221 -d 1333 -S UP -r 512000 -D 0.0009765625 l -t * -s 1226 -d 1244 -S UP -r 512000 -D 0.0009765625 l -t * -s 1227 -d 1353 -S UP -r 512000 -D 0.0009765625 l -t * -s 1227 -d 1349 -S UP -r 512000 -D 0.0009765625 l -t * -s 1229 -d 1611 -S UP -r 512000 -D 0.0009765625 l -t * -s 1237 -d 1348 -S UP -r 512000 -D 0.0009765625 l -t * -s 1237 -d 1279 -S UP -r 512000 -D 0.0009765625 l -t * -s 1241 -d 1354 -S UP -r 512000 -D 0.0009765625 l -t * -s 1243 -d 1947 -S UP -r 512000 -D 0.001953125 l -t * -s 1245 -d 1356 -S UP -r 512000 -D 0.03125 l -t * -s 1247 -d 1253 -S UP -r 512000 -D 0.0009765625 l -t * -s 1247 -d 1379 -S UP -r 512000 -D 0.0009765625 l -t * -s 1247 -d 1254 -S UP -r 512000 -D 0.0009765625 l -t * -s 1247 -d 1255 -S UP -r 512000 -D 0.0009765625 l -t * -s 1247 -d 1267 -S UP -r 512000 -D 0.0009765625 l -t * -s 1249 -d 1505 -S UP -r 512000 -D 0.015625 l -t * -s 1249 -d 1723 -S UP -r 512000 -D 0.015625 l -t * -s 1249 -d 1277 -S UP -r 512000 -D 0.015625 l -t * -s 1249 -d 1442 -S UP -r 512000 -D 0.015625 l -t * -s 1250 -d 1489 -S UP -r 512000 -D 0.0625 l -t * -s 1251 -d 1703 -S UP -r 512000 -D 0.03125 l -t * -s 1264 -d 1313 -S UP -r 512000 -D 0.001953125 l -t * -s 1264 -d 1316 -S UP -r 512000 -D 0.001953125 l -t * -s 1266 -d 1669 -S UP -r 512000 -D 0.0009765625 l -t * -s 1269 -d 1332 -S UP -r 512000 -D 0.0009765625 l -t * -s 1270 -d 1326 -S UP -r 512000 -D 0.109375 l -t * -s 1271 -d 1304 -S UP -r 512000 -D 0.0625 l -t * -s 1272 -d 1805 -S UP -r 512000 -D 0.0302734375 l -t * -s 1272 -d 1440 -S UP -r 512000 -D 0.0302734375 l -t * -s 1272 -d 1750 -S UP -r 512000 -D 0.0302734375 l -t * -s 1272 -d 1771 -S UP -r 512000 -D 0.05859375 l -t * -s 1275 -d 1291 -S UP -r 512000 -D 0.0009765625 l -t * -s 1275 -d 1760 -S UP -r 512000 -D 0.0009765625 l -t * -s 1275 -d 1401 -S UP -r 512000 -D 0.0009765625 l -t * -s 1275 -d 1332 -S UP -r 512000 -D 0.0009765625 l -t * -s 1276 -d 1283 -S UP -r 512000 -D 0.0009765625 l -t * -s 1278 -d 1283 -S UP -r 512000 -D 0.0009765625 l -t * -s 1279 -d 1377 -S UP -r 512000 -D 0.0009765625 l -t * -s 1280 -d 1484 -S UP -r 512000 -D 0.046875 l -t * -s 1282 -d 1283 -S UP -r 512000 -D 0.0009765625 l -t * -s 1282 -d 1328 -S UP -r 512000 -D 0.0009765625 l -t * -s 1282 -d 1330 -S UP -r 512000 -D 0.0009765625 l -t * -s 1282 -d 1332 -S UP -r 512000 -D 0.0009765625 l -t * -s 1282 -d 1405 -S UP -r 512000 -D 0.0009765625 l -t * -s 1283 -d 1328 -S UP -r 512000 -D 0.0009765625 l -t * -s 1283 -d 1330 -S UP -r 512000 -D 0.0009765625 l -t * -s 1283 -d 1332 -S UP -r 512000 -D 0.0009765625 l -t * -s 1283 -d 1405 -S UP -r 512000 -D 0.0009765625 l -t * -s 1284 -d 1285 -S UP -r 512000 -D 0.0009765625 l -t * -s 1285 -d 1286 -S UP -r 512000 -D 0.0009765625 l -t * -s 1290 -d 1754 -S UP -r 512000 -D 0.0009765625 l -t * -s 1290 -d 1753 -S UP -r 512000 -D 0.0009765625 l -t * -s 1291 -d 1760 -S UP -r 512000 -D 0.0009765625 l -t * -s 1291 -d 1332 -S UP -r 512000 -D 0.0009765625 l -t * -s 1291 -d 1401 -S UP -r 512000 -D 0.0009765625 l -t * -s 1295 -d 1299 -S UP -r 512000 -D 0.0009765625 l -t * -s 1296 -d 1948 -S UP -r 512000 -D 0.015625 l -t * -s 1296 -d 1747 -S UP -r 512000 -D 0.015625 l -t * -s 1297 -d 1561 -S UP -r 512000 -D 0.0029296875 l -t * -s 1301 -d 1371 -S UP -r 512000 -D 0.0009765625 l -t * -s 1302 -d 1813 -S UP -r 512000 -D 0.001953125 l -t * -s 1304 -d 1890 -S UP -r 512000 -D 0.0625 l -t * -s 1305 -d 1610 -S UP -r 512000 -D 0.01171875 l -t * -s 1305 -d 1621 -S UP -r 512000 -D 0.0009765625 l -t * -s 1305 -d 1949 -S UP -r 512000 -D 0.009765625 l -t * -s 1307 -d 1308 -S UP -r 512000 -D 0.0625 l -t * -s 1308 -d 1488 -S UP -r 512000 -D 0.0009765625 l -t * -s 1310 -d 1374 -S UP -r 512000 -D 0.03125 l -t * -s 1311 -d 1469 -S UP -r 512000 -D 0.0009765625 l -t * -s 1319 -d 1342 -S UP -r 512000 -D 0.0009765625 l -t * -s 1324 -d 1534 -S UP -r 512000 -D 0.015625 l -t * -s 1328 -d 1405 -S UP -r 512000 -D 0.0009765625 l -t * -s 1328 -d 1332 -S UP -r 512000 -D 0.0009765625 l -t * -s 1328 -d 1330 -S UP -r 512000 -D 0.0009765625 l -t * -s 1329 -d 1601 -S UP -r 512000 -D 0.0009765625 l -t * -s 1329 -d 1604 -S UP -r 512000 -D 0.0009765625 l -t * -s 1330 -d 1405 -S UP -r 512000 -D 0.0009765625 l -t * -s 1330 -d 1332 -S UP -r 512000 -D 0.0009765625 l -t * -s 1332 -d 1405 -S UP -r 512000 -D 0.0009765625 l -t * -s 1332 -d 1760 -S UP -r 512000 -D 0.0009765625 l -t * -s 1332 -d 1401 -S UP -r 512000 -D 0.0009765625 l -t * -s 1334 -d 1335 -S UP -r 512000 -D 0.0009765625 l -t * -s 1337 -d 1594 -S UP -r 512000 -D 0.0009765625 l -t * -s 1341 -d 1343 -S UP -r 512000 -D 0.0009765625 l -t * -s 1341 -d 1501 -S UP -r 512000 -D 0.0009765625 l -t * -s 1348 -d 1950 -S UP -r 512000 -D 0.0625 l -t * -s 1348 -d 1951 -S UP -r 512000 -D 0.0009765625 l -t * -s 1351 -d 1662 -S UP -r 512000 -D 0.03125 l -t * -s 1354 -d 1552 -S UP -r 512000 -D 0.0009765625 l -t * -s 1355 -d 1552 -S UP -r 512000 -D 0.03125 l -t * -s 1356 -d 1952 -S UP -r 512000 -D 0.0009765625 l -t * -s 1356 -d 1515 -S UP -r 512000 -D 0.0009765625 l -t * -s 1356 -d 1953 -S UP -r 512000 -D 0.0009765625 l -t * -s 1356 -d 1954 -S UP -r 512000 -D 0.0009765625 l -t * -s 1356 -d 1523 -S UP -r 512000 -D 0.0009765625 l -t * -s 1356 -d 1955 -S UP -r 512000 -D 0.0009765625 l -t * -s 1356 -d 1791 -S UP -r 512000 -D 0.0009765625 l -t * -s 1357 -d 1361 -S UP -r 512000 -D 0.0009765625 l -t * -s 1364 -d 1381 -S UP -r 512000 -D 0.0009765625 l -t * -s 1364 -d 1390 -S UP -r 512000 -D 0.0009765625 l -t * -s 1370 -d 1799 -S UP -r 512000 -D 0.0009765625 l -t * -s 1372 -d 1373 -S UP -r 512000 -D 0.001953125 l -t * -s 1372 -d 1498 -S UP -r 512000 -D 0.001953125 l -t * -s 1383 -d 1412 -S UP -r 512000 -D 0.015625 l -t * -s 1383 -d 1385 -S UP -r 512000 -D 0.0009765625 l -t * -s 1383 -d 1431 -S UP -r 512000 -D 0.015625 l -t * -s 1386 -d 1387 -S UP -r 512000 -D 0.0390625 l -t * -s 1390 -d 1406 -S UP -r 512000 -D 0.0009765625 l -t * -s 1391 -d 1559 -S UP -r 512000 -D 0.0009765625 l -t * -s 1393 -d 1559 -S UP -r 512000 -D 0.0009765625 l -t * -s 1398 -d 1559 -S UP -r 512000 -D 0.0009765625 l -t * -s 1400 -d 1403 -S UP -r 512000 -D 0.15625 l -t * -s 1400 -d 1558 -S UP -r 512000 -D 0.0009765625 l -t * -s 1401 -d 1760 -S UP -r 512000 -D 0.0009765625 l -t * -s 1403 -d 1404 -S UP -r 512000 -D 0.0009765625 l -t * -s 1410 -d 1417 -S UP -r 512000 -D 0.0009765625 l -t * -s 1410 -d 1429 -S UP -r 512000 -D 0.0009765625 l -t * -s 1412 -d 1413 -S UP -r 512000 -D 0.0009765625 l -t * -s 1416 -d 1716 -S UP -r 512000 -D 0.015625 l -t * -s 1416 -d 1635 -S UP -r 512000 -D 0.015625 l -t * -s 1416 -d 1669 -S UP -r 512000 -D 0.015625 l -t * -s 1418 -d 1606 -S UP -r 512000 -D 0.015625 l -t * -s 1423 -d 1606 -S UP -r 512000 -D 0.0078125 l -t * -s 1423 -d 1426 -S UP -r 512000 -D 0.01171875 l -t * -s 1424 -d 1427 -S UP -r 512000 -D 0.0009765625 l -t * -s 1424 -d 1535 -S UP -r 512000 -D 0.0009765625 l -t * -s 1425 -d 1427 -S UP -r 512000 -D 0.0009765625 l -t * -s 1425 -d 1491 -S UP -r 512000 -D 0.0009765625 l -t * -s 1425 -d 1490 -S UP -r 512000 -D 0.0009765625 l -t * -s 1427 -d 1491 -S UP -r 512000 -D 0.0009765625 l -t * -s 1427 -d 1490 -S UP -r 512000 -D 0.0009765625 l -t * -s 1427 -d 1535 -S UP -r 512000 -D 0.0009765625 l -t * -s 1430 -d 1956 -S UP -r 512000 -D 0.0234375 l -t * -s 1432 -d 1527 -S UP -r 512000 -D 0.03125 l -t * -s 1447 -d 1449 -S UP -r 512000 -D 0.0009765625 l -t * -s 1447 -d 1650 -S UP -r 512000 -D 0.0009765625 l -t * -s 1450 -d 1451 -S UP -r 512000 -D 0.0009765625 l -t * -s 1451 -d 1682 -S UP -r 512000 -D 0.0009765625 l -t * -s 1451 -d 1686 -S UP -r 512000 -D 0.0009765625 l -t * -s 1451 -d 1752 -S UP -r 512000 -D 0.0009765625 l -t * -s 1455 -d 1483 -S UP -r 512000 -D 0.0009765625 l -t * -s 1455 -d 1702 -S UP -r 512000 -D 0.0009765625 l -t * -s 1456 -d 1457 -S UP -r 512000 -D 0.03125 l -t * -s 1457 -d 1459 -S UP -r 512000 -D 0.0078125 l -t * -s 1460 -d 1528 -S UP -r 512000 -D 0.0009765625 l -t * -s 1460 -d 1461 -S UP -r 512000 -D 0.0009765625 l -t * -s 1460 -d 1614 -S UP -r 512000 -D 0.0009765625 l -t * -s 1461 -d 1528 -S UP -r 512000 -D 0.0009765625 l -t * -s 1461 -d 1614 -S UP -r 512000 -D 0.0009765625 l -t * -s 1462 -d 1472 -S UP -r 512000 -D 0.015625 l -t * -s 1462 -d 1474 -S UP -r 512000 -D 0.015625 l -t * -s 1462 -d 1473 -S UP -r 512000 -D 0.015625 l -t * -s 1462 -d 1475 -S UP -r 512000 -D 0.015625 l -t * -s 1462 -d 1478 -S UP -r 512000 -D 0.015625 l -t * -s 1462 -d 1477 -S UP -r 512000 -D 0.015625 l -t * -s 1462 -d 1476 -S UP -r 512000 -D 0.015625 l -t * -s 1465 -d 1661 -S UP -r 512000 -D 0.0009765625 l -t * -s 1479 -d 1525 -S UP -r 512000 -D 0.0625 l -t * -s 1479 -d 1680 -S UP -r 512000 -D 0.0625 l -t * -s 1483 -d 1770 -S UP -r 512000 -D 0.0009765625 l -t * -s 1484 -d 1813 -S UP -r 512000 -D 0.0009765625 l -t * -s 1484 -d 1499 -S UP -r 512000 -D 0.0078125 l -t * -s 1484 -d 1958 -S UP -r 512000 -D 0.046875 l -t * -s 1484 -d 1959 -S UP -r 512000 -D 0.046875 l -t * -s 1484 -d 1573 -S UP -r 512000 -D 0.046875 l -t * -s 1484 -d 1802 -S UP -r 512000 -D 0.046875 l -t * -s 1490 -d 1491 -S UP -r 512000 -D 0.0009765625 l -t * -s 1493 -d 1546 -S UP -r 512000 -D 0.0009765625 l -t * -s 1493 -d 1745 -S UP -r 512000 -D 0.0009765625 l -t * -s 1493 -d 1494 -S UP -r 512000 -D 0.0009765625 l -t * -s 1494 -d 1546 -S UP -r 512000 -D 0.0009765625 l -t * -s 1502 -d 1516 -S UP -r 512000 -D 0.0009765625 l -t * -s 1509 -d 1818 -S UP -r 512000 -D 0.0009765625 l -t * -s 1509 -d 1526 -S UP -r 512000 -D 0.0009765625 l -t * -s 1511 -d 1512 -S UP -r 512000 -D 0.0009765625 l -t * -s 1514 -d 1813 -S UP -r 512000 -D 0.0009765625 l -t * -s 1514 -d 1615 -S UP -r 512000 -D 0.0009765625 l -t * -s 1515 -d 1521 -S UP -r 512000 -D 0.03125 l -t * -s 1517 -d 1599 -S UP -r 512000 -D 0.0078125 l -t * -s 1520 -d 1633 -S UP -r 512000 -D 0.0009765625 l -t * -s 1524 -d 1689 -S UP -r 512000 -D 0.0009765625 l -t * -s 1524 -d 1592 -S UP -r 512000 -D 0.0009765625 l -t * -s 1524 -d 1544 -S UP -r 512000 -D 0.0009765625 l -t * -s 1525 -d 1526 -S UP -r 512000 -D 0.0625 l -t * -s 1525 -d 1926 -S UP -r 512000 -D 0.0625 l -t * -s 1525 -d 1683 -S UP -r 512000 -D 0.0625 l -t * -s 1526 -d 1818 -S UP -r 512000 -D 0.0009765625 l -t * -s 1528 -d 1614 -S UP -r 512000 -D 0.0009765625 l -t * -s 1529 -d 1533 -S UP -r 512000 -D 0.0009765625 l -t * -s 1535 -d 1536 -S UP -r 512000 -D 0.0009765625 l -t * -s 1537 -d 1538 -S UP -r 512000 -D 0.0009765625 l -t * -s 1541 -d 1633 -S UP -r 512000 -D 0.0009765625 l -t * -s 1544 -d 1689 -S UP -r 512000 -D 0.0009765625 l -t * -s 1544 -d 1592 -S UP -r 512000 -D 0.0009765625 l -t * -s 1544 -d 1683 -S UP -r 512000 -D 0.0009765625 l -t * -s 1545 -d 1961 -S UP -r 512000 -D 0.0625 l -t * -s 1545 -d 1807 -S UP -r 512000 -D 0.03125 l -t * -s 1546 -d 1745 -S UP -r 512000 -D 0.0009765625 l -t * -s 1546 -d 1565 -S UP -r 512000 -D 0.0009765625 l -t * -s 1547 -d 1553 -S UP -r 512000 -D 0.0009765625 l -t * -s 1548 -d 1554 -S UP -r 512000 -D 0.0009765625 l -t * -s 1555 -d 1962 -S UP -r 512000 -D 0.0009765625 l -t * -s 1562 -d 1563 -S UP -r 512000 -D 0.0009765625 l -t * -s 1563 -d 1564 -S UP -r 512000 -D 0.0009765625 l -t * -s 1565 -d 1600 -S UP -r 512000 -D 0.0009765625 l -t * -s 1565 -d 1580 -S UP -r 512000 -D 0.0009765625 l -t * -s 1565 -d 1862 -S UP -r 512000 -D 0.0009765625 l -t * -s 1569 -d 1963 -S UP -r 512000 -D 0.0009765625 l -t * -s 1579 -d 1592 -S UP -r 512000 -D 0.0009765625 l -t * -s 1580 -d 1862 -S UP -r 512000 -D 0.0009765625 l -t * -s 1583 -d 1662 -S UP -r 512000 -D 0.0009765625 l -t * -s 1590 -d 1591 -S UP -r 512000 -D 0.0009765625 l -t * -s 1590 -d 1597 -S UP -r 512000 -D 0.0009765625 l -t * -s 1592 -d 1689 -S UP -r 512000 -D 0.0009765625 l -t * -s 1593 -d 1597 -S UP -r 512000 -D 0.015625 l -t * -s 1593 -d 1660 -S UP -r 512000 -D 0.015625 l -t * -s 1594 -d 1596 -S UP -r 512000 -D 0.0009765625 l -t * -s 1594 -d 1945 -S UP -r 512000 -D 0.015625 l -t * -s 1595 -d 1596 -S UP -r 512000 -D 0.03125 l -t * -s 1596 -d 1852 -S UP -r 512000 -D 0.03125 l -t * -s 1596 -d 1687 -S UP -r 512000 -D 0.03125 l -t * -s 1598 -d 1599 -S UP -r 512000 -D 0.0234375 l -t * -s 1598 -d 1690 -S UP -r 512000 -D 0.0234375 l -t * -s 1598 -d 1757 -S UP -r 512000 -D 0.0078125 l -t * -s 1599 -d 1757 -S UP -r 512000 -D 0.0234375 l -t * -s 1599 -d 1690 -S UP -r 512000 -D 0.0078125 l -t * -s 1601 -d 1604 -S UP -r 512000 -D 0.0009765625 l -t * -s 1601 -d 1821 -S UP -r 512000 -D 0.0009765625 l -t * -s 1601 -d 1798 -S UP -r 512000 -D 0.0009765625 l -t * -s 1603 -d 1833 -S UP -r 512000 -D 0.0009765625 l -t * -s 1603 -d 1840 -S UP -r 512000 -D 0.0009765625 l -t * -s 1604 -d 1605 -S UP -r 512000 -D 0.0009765625 l -t * -s 1608 -d 1826 -S UP -r 512000 -D 0.0009765625 l -t * -s 1608 -d 1827 -S UP -r 512000 -D 0.0009765625 l -t * -s 1609 -d 1940 -S UP -r 512000 -D 0.0009765625 l -t * -s 1613 -d 1640 -S UP -r 512000 -D 0.0009765625 l -t * -s 1615 -d 1813 -S UP -r 512000 -D 0.0009765625 l -t * -s 1616 -d 1964 -S UP -r 512000 -D 0.0009765625 l -t * -s 1622 -d 1753 -S UP -r 512000 -D 0.0009765625 l -t * -s 1625 -d 1628 -S UP -r 512000 -D 0.0009765625 l -t * -s 1625 -d 1630 -S UP -r 512000 -D 0.0009765625 l -t * -s 1625 -d 1629 -S UP -r 512000 -D 0.0009765625 l -t * -s 1625 -d 1626 -S UP -r 512000 -D 0.0009765625 l -t * -s 1626 -d 1646 -S UP -r 512000 -D 0.0009765625 l -t * -s 1626 -d 1645 -S UP -r 512000 -D 0.0009765625 l -t * -s 1626 -d 1629 -S UP -r 512000 -D 0.0009765625 l -t * -s 1626 -d 1628 -S UP -r 512000 -D 0.0009765625 l -t * -s 1626 -d 1630 -S UP -r 512000 -D 0.0009765625 l -t * -s 1628 -d 1629 -S UP -r 512000 -D 0.0009765625 l -t * -s 1628 -d 1630 -S UP -r 512000 -D 0.0009765625 l -t * -s 1629 -d 1630 -S UP -r 512000 -D 0.0009765625 l -t * -s 1637 -d 1638 -S UP -r 512000 -D 0.001953125 l -t * -s 1645 -d 1646 -S UP -r 512000 -D 0.0009765625 l -t * -s 1648 -d 1798 -S UP -r 512000 -D 0.0009765625 l -t * -s 1658 -d 1666 -S UP -r 512000 -D 0.0009765625 l -t * -s 1659 -d 1679 -S UP -r 512000 -D 0.03125 l -t * -s 1661 -d 1663 -S UP -r 512000 -D 0.0078125 l -t * -s 1666 -d 1684 -S UP -r 512000 -D 0.03125 l -t * -s 1668 -d 1714 -S UP -r 512000 -D 0.0615234375 l -t * -s 1670 -d 1677 -S UP -r 512000 -D 0.0009765625 l -t * -s 1670 -d 1676 -S UP -r 512000 -D 0.0009765625 l -t * -s 1670 -d 1673 -S UP -r 512000 -D 0.0009765625 l -t * -s 1670 -d 1674 -S UP -r 512000 -D 0.0009765625 l -t * -s 1670 -d 1671 -S UP -r 512000 -D 0.0009765625 l -t * -s 1670 -d 1672 -S UP -r 512000 -D 0.0009765625 l -t * -s 1670 -d 1675 -S UP -r 512000 -D 0.0009765625 l -t * -s 1671 -d 1676 -S UP -r 512000 -D 0.0009765625 l -t * -s 1671 -d 1673 -S UP -r 512000 -D 0.0009765625 l -t * -s 1671 -d 1677 -S UP -r 512000 -D 0.0009765625 l -t * -s 1671 -d 1674 -S UP -r 512000 -D 0.0009765625 l -t * -s 1671 -d 1675 -S UP -r 512000 -D 0.0009765625 l -t * -s 1671 -d 1672 -S UP -r 512000 -D 0.0009765625 l -t * -s 1672 -d 1676 -S UP -r 512000 -D 0.0009765625 l -t * -s 1672 -d 1673 -S UP -r 512000 -D 0.0009765625 l -t * -s 1672 -d 1677 -S UP -r 512000 -D 0.0009765625 l -t * -s 1672 -d 1674 -S UP -r 512000 -D 0.0009765625 l -t * -s 1672 -d 1675 -S UP -r 512000 -D 0.0009765625 l -t * -s 1673 -d 1676 -S UP -r 512000 -D 0.0009765625 l -t * -s 1673 -d 1677 -S UP -r 512000 -D 0.0009765625 l -t * -s 1673 -d 1675 -S UP -r 512000 -D 0.0009765625 l -t * -s 1673 -d 1674 -S UP -r 512000 -D 0.0009765625 l -t * -s 1674 -d 1676 -S UP -r 512000 -D 0.0009765625 l -t * -s 1674 -d 1677 -S UP -r 512000 -D 0.0009765625 l -t * -s 1674 -d 1675 -S UP -r 512000 -D 0.0009765625 l -t * -s 1675 -d 1676 -S UP -r 512000 -D 0.0009765625 l -t * -s 1675 -d 1677 -S UP -r 512000 -D 0.0009765625 l -t * -s 1676 -d 1677 -S UP -r 512000 -D 0.0009765625 l -t * -s 1682 -d 1686 -S UP -r 512000 -D 0.0009765625 l -t * -s 1682 -d 1752 -S UP -r 512000 -D 0.0009765625 l -t * -s 1685 -d 1781 -S UP -r 512000 -D 0.0009765625 l -t * -s 1685 -d 1783 -S UP -r 512000 -D 0.0009765625 l -t * -s 1686 -d 1752 -S UP -r 512000 -D 0.0009765625 l -t * -s 1687 -d 1779 -S UP -r 512000 -D 0.0078125 l -t * -s 1688 -d 1783 -S UP -r 512000 -D 0.0009765625 l -t * -s 1688 -d 1781 -S UP -r 512000 -D 0.0009765625 l -t * -s 1690 -d 1825 -S UP -r 512000 -D 0.0234375 l -t * -s 1719 -d 1825 -S UP -r 512000 -D 0.015625 l -t * -s 1724 -d 1725 -S UP -r 512000 -D 0.0009765625 l -t * -s 1725 -d 1793 -S UP -r 512000 -D 0.0009765625 l -t * -s 1725 -d 1967 -S UP -r 512000 -D 0.0009765625 l -t * -s 1725 -d 1968 -S UP -r 512000 -D 0.0009765625 l -t * -s 1725 -d 1737 -S UP -r 512000 -D 0.0009765625 l -t * -s 1725 -d 1738 -S UP -r 512000 -D 0.0009765625 l -t * -s 1725 -d 1739 -S UP -r 512000 -D 0.0009765625 l -t * -s 1725 -d 1740 -S UP -r 512000 -D 0.0009765625 l -t * -s 1732 -d 1742 -S UP -r 512000 -D 0.0009765625 l -t * -s 1741 -d 1793 -S UP -r 512000 -D 0.0009765625 l -t * -s 1746 -d 1764 -S UP -r 512000 -D 0.0009765625 l -t * -s 1751 -d 1770 -S UP -r 512000 -D 0.0009765625 l -t * -s 1753 -d 1754 -S UP -r 512000 -D 0.0009765625 l -t * -s 1755 -d 1969 -S UP -r 512000 -D 0.0009765625 l -t * -s 1760 -d 1761 -S UP -r 512000 -D 0.0009765625 l -t * -s 1762 -d 1774 -S UP -r 512000 -D 0.0625 l -t * -s 1762 -d 1830 -S UP -r 512000 -D 0.0625 l -t * -s 1762 -d 1809 -S UP -r 512000 -D 0.0625 l -t * -s 1762 -d 1815 -S UP -r 512000 -D 0.0625 l -t * -s 1762 -d 1763 -S UP -r 512000 -D 0.0625 l -t * -s 1769 -d 1770 -S UP -r 512000 -D 0.0009765625 l -t * -s 1781 -d 1783 -S UP -r 512000 -D 0.0009765625 l -t * -s 1788 -d 1829 -S UP -r 512000 -D 0.0625 l -t * -s 1788 -d 1971 -S UP -r 512000 -D 0.0625 l -t * -s 1790 -d 1792 -S UP -r 512000 -D 0.03125 l -t * -s 1798 -d 1821 -S UP -r 512000 -D 0.0009765625 l -t * -s 1820 -d 1885 -S UP -r 512000 -D 0.0009765625 l -t * -s 1821 -d 1933 -S UP -r 512000 -D 0.0009765625 nam-1.15/ex/mcache.nam0000664000076400007660000054005207024243476013443 0ustar tomhnsnamv -t 0 set_rate -21.13509275 1 l -t 0 -s 2 -d 0 -S DLABEL -l "1.5Mb, 50ms" -L "" l -t 0 -s 2 -d 1 -S DLABEL -l "56Kb, 50ms" -L "" l -t 0 -s 3 -d 2 -S DLABEL -l "56Kb, 100ms" -L "" V -t * -v 1.0a5 -a 0 A -t * -n 1 -p 0 -o 0xffffffff -c 31 -a 1 A -t * -h 1 -m 2147483647 -s 0 c -t * -i 103 -n green c -t * -i 100 -n red c -t * -i 101 -n orange c -t * -i 102 -n yellow n -t * -a 4 -s 4 -S UP -v circle -c background -i background n -t * -a 0 -s 0 -S UP -v circle -c black -i black n -t * -a 1 -s 1 -S UP -v circle -c black -i black n -t * -a 2 -s 2 -S UP -v circle -c black -i black n -t * -a 3 -s 3 -S UP -v circle -c black -i black l -t * -s 0 -d 2 -S UP -r 1500000 -D 0.050000000000000003 -c black -o left l -t * -s 1 -d 2 -S UP -r 56000 -D 0.050000000000000003 -c black -o down l -t * -s 2 -d 3 -S UP -r 56000 -D 0.10000000000000001 -c black -o left l -t * -s 2 -d 4 -S UP -r 56000 -D 0.0010 -c background -o down q -t * -s 4 -d 2 -a 0.5 q -t * -s 2 -d 4 -a 0.5 q -t * -s 2 -d 0 -a 0.5 q -t * -s 0 -d 2 -a 0.5 q -t * -s 2 -d 1 -a 0.5 q -t * -s 1 -d 2 -a 0.5 q -t * -s 3 -d 2 -a 0.5 q -t * -s 2 -d 3 -a 0.5 n -t 10 -s 1 -S COLOR -c SteelBlue -o black -i SteelBlue -I black n -t 10 -s 1 -S DLABEL -l "client 1" -L "" n -t 10 -s 2 -S COLOR -c yellow -o black -i yellow -I black n -t 10 -s 2 -S DLABEL -l "cache 0" -L "" n -t 10 -s 0 -S COLOR -c SteelBlue -o black -i SteelBlue -I black n -t 10 -s 0 -S DLABEL -l "client 0" -L "" n -t 10 -s 3 -S COLOR -c HotPink -o black -i HotPink -I black n -t 10 -s 3 -S DLABEL -l "server 0" -L "" n -t 10 -s 4 -S COLOR -c background -o background -i background -I background + -t 20 -s 0 -d 2 -p tcp -e 40 -c 0 -i 0 -a 0 -x {0.0 2.0 0 ------- null} - -t 20 -s 0 -d 2 -p tcp -e 40 -c 0 -i 0 -a 0 -x {0.0 2.0 0 ------- null} h -t 20 -s 0 -d 2 -p tcp -e 40 -c 0 -i 0 -a 0 -x {0.0 2.0 -1 ------- null} m -t 20 -s 0 -n _o139:0:20 -c purple -h circle v -t 20 sim_annotation 20 1 request from client 0 r -t 20.0502133333333 -s 0 -d 2 -p tcp -e 40 -c 0 -i 0 -a 0 -x {0.0 2.0 0 ------- null} + -t 20.0502133333333 -s 2 -d 0 -p ack -e 40 -c 0 -i 1 -a 0 -x {2.0 0.0 0 ------- null} - -t 20.0502133333333 -s 2 -d 0 -p ack -e 40 -c 0 -i 1 -a 0 -x {2.0 0.0 0 ------- null} h -t 20.0502133333333 -s 2 -d 0 -p ack -e 40 -c 0 -i 1 -a 0 -x {2.0 0.0 -1 ------- null} r -t 20.1004266666667 -s 2 -d 0 -p ack -e 40 -c 0 -i 1 -a 0 -x {2.0 0.0 0 ------- null} + -t 20.1004266666667 -s 0 -d 2 -p tcp -e 40 -c 0 -i 2 -a 0 -x {0.0 2.0 1 ------- null} - -t 20.1004266666667 -s 0 -d 2 -p tcp -e 40 -c 0 -i 2 -a 0 -x {0.0 2.0 1 ------- null} h -t 20.1004266666667 -s 0 -d 2 -p tcp -e 40 -c 0 -i 2 -a 0 -x {0.0 2.0 -1 ------- null} + -t 20.1004266666667 -s 0 -d 2 -p tcp -e 83 -c 0 -i 3 -a 0 -x {0.0 2.0 1 ------- null} - -t 20.10064 -s 0 -d 2 -p tcp -e 83 -c 0 -i 3 -a 0 -x {0.0 2.0 1 ------- null} h -t 20.10064 -s 0 -d 2 -p tcp -e 83 -c 0 -i 3 -a 0 -x {0.0 2.0 -1 ------- null} r -t 20.15064 -s 0 -d 2 -p tcp -e 40 -c 0 -i 2 -a 0 -x {0.0 2.0 1 ------- null} r -t 20.1510826666667 -s 0 -d 2 -p tcp -e 83 -c 0 -i 3 -a 0 -x {0.0 2.0 1 ------- null} + -t 20.1510826666667 -s 2 -d 3 -p tcp -e 40 -c 2 -i 4 -a 2 -x {2.2 3.0 0 ------- null} - -t 20.1510826666667 -s 2 -d 3 -p tcp -e 40 -c 2 -i 4 -a 2 -x {2.2 3.0 0 ------- null} h -t 20.1510826666667 -s 2 -d 3 -p tcp -e 40 -c 2 -i 4 -a 2 -x {2.2 3.0 -1 ------- null} + -t 20.2 -s 2 -d 0 -p ack -e 40 -c 0 -i 5 -a 0 -x {2.0 0.0 1 ------- null} - -t 20.2 -s 2 -d 0 -p ack -e 40 -c 0 -i 5 -a 0 -x {2.0 0.0 1 ------- null} h -t 20.2 -s 2 -d 0 -p ack -e 40 -c 0 -i 5 -a 0 -x {2.0 0.0 -1 ------- null} r -t 20.2502133333333 -s 2 -d 0 -p ack -e 40 -c 0 -i 5 -a 0 -x {2.0 0.0 1 ------- null} r -t 20.2567969523809 -s 2 -d 3 -p tcp -e 40 -c 2 -i 4 -a 2 -x {2.2 3.0 0 ------- null} + -t 20.2567969523809 -s 3 -d 2 -p ack -e 40 -c 2 -i 6 -a 2 -x {3.0 2.2 0 ------- null} - -t 20.2567969523809 -s 3 -d 2 -p ack -e 40 -c 2 -i 6 -a 2 -x {3.0 2.2 0 ------- null} h -t 20.2567969523809 -s 3 -d 2 -p ack -e 40 -c 2 -i 6 -a 2 -x {3.0 2.2 -1 ------- null} r -t 20.3625112380952 -s 3 -d 2 -p ack -e 40 -c 2 -i 6 -a 2 -x {3.0 2.2 0 ------- null} + -t 20.3625112380952 -s 2 -d 3 -p tcp -e 40 -c 2 -i 7 -a 2 -x {2.2 3.0 1 ------- null} - -t 20.3625112380952 -s 2 -d 3 -p tcp -e 40 -c 2 -i 7 -a 2 -x {2.2 3.0 1 ------- null} h -t 20.3625112380952 -s 2 -d 3 -p tcp -e 40 -c 2 -i 7 -a 2 -x {2.2 3.0 -1 ------- null} + -t 20.3625112380952 -s 2 -d 3 -p tcp -e 83 -c 2 -i 8 -a 2 -x {2.2 3.0 1 ------- null} - -t 20.3682255238095 -s 2 -d 3 -p tcp -e 83 -c 2 -i 8 -a 2 -x {2.2 3.0 1 ------- null} h -t 20.3682255238095 -s 2 -d 3 -p tcp -e 83 -c 2 -i 8 -a 2 -x {2.2 3.0 -1 ------- null} r -t 20.4682255238095 -s 2 -d 3 -p tcp -e 40 -c 2 -i 7 -a 2 -x {2.2 3.0 1 ------- null} r -t 20.4800826666667 -s 2 -d 3 -p tcp -e 83 -c 2 -i 8 -a 2 -x {2.2 3.0 1 ------- null} + -t 20.4800826666667 -s 3 -d 2 -p ack -e 83 -c 2 -i 9 -a 2 -x {3.0 2.2 1 ------- null} - -t 20.4800826666667 -s 3 -d 2 -p ack -e 83 -c 2 -i 9 -a 2 -x {3.0 2.2 1 ------- null} h -t 20.4800826666667 -s 3 -d 2 -p ack -e 83 -c 2 -i 9 -a 2 -x {3.0 2.2 -1 ------- null} r -t 20.5919398095238 -s 3 -d 2 -p ack -e 83 -c 2 -i 9 -a 2 -x {3.0 2.2 1 ------- null} + -t 20.5919398095238 -s 2 -d 0 -p ack -e 83 -c 0 -i 10 -a 0 -x {2.0 0.0 1 ------- null} - -t 20.5919398095238 -s 2 -d 0 -p ack -e 83 -c 0 -i 10 -a 0 -x {2.0 0.0 1 ------- null} h -t 20.5919398095238 -s 2 -d 0 -p ack -e 83 -c 0 -i 10 -a 0 -x {2.0 0.0 -1 ------- null} n -t 20.591939809523808 -s 2 -S COLOR -c blue -o yellow -i blue -I yellow + -t 20.5919398095238 -s 3 -d 2 -p rap_data -e 1024 -c 100 -i 11 -a 100 -x {3.1 2.3 1 ------- null} - -t 20.5919398095238 -s 3 -d 2 -p rap_data -e 1024 -c 100 -i 11 -a 100 -x {3.1 2.3 1 ------- null} h -t 20.5919398095238 -s 3 -d 2 -p rap_data -e 1024 -c 100 -i 11 -a 100 -x {3.1 2.3 -1 ------- null} + -t 20.6 -s 2 -d 3 -p tcp -e 40 -c 2 -i 12 -a 2 -x {2.2 3.0 44 ------- null} - -t 20.6 -s 2 -d 3 -p tcp -e 40 -c 2 -i 12 -a 2 -x {2.2 3.0 44 ------- null} h -t 20.6 -s 2 -d 3 -p tcp -e 40 -c 2 -i 12 -a 2 -x {2.2 3.0 -1 ------- null} r -t 20.6423824761905 -s 2 -d 0 -p ack -e 83 -c 0 -i 10 -a 0 -x {2.0 0.0 1 ------- null} m -t 20.642382476190473 -s 0 -n _o139:0:20 -c purple -h circle -X + -t 20.7 -s 0 -d 2 -p tcp -e 40 -c 0 -i 13 -a 0 -x {0.0 2.0 44 ------- null} - -t 20.7 -s 0 -d 2 -p tcp -e 40 -c 0 -i 13 -a 0 -x {0.0 2.0 44 ------- null} h -t 20.7 -s 0 -d 2 -p tcp -e 40 -c 0 -i 13 -a 0 -x {0.0 2.0 -1 ------- null} r -t 20.7057142857143 -s 2 -d 3 -p tcp -e 40 -c 2 -i 12 -a 2 -x {2.2 3.0 44 ------- null} r -t 20.7502133333333 -s 0 -d 2 -p tcp -e 40 -c 0 -i 13 -a 0 -x {0.0 2.0 44 ------- null} r -t 20.8382255238095 -s 3 -d 2 -p rap_data -e 1024 -c 100 -i 11 -a 100 -x {3.1 2.3 1 ------- null} + -t 20.8382255238095 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 14 -a 0 -x {2.3 3.1 1 ------- null} - -t 20.8382255238095 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 14 -a 0 -x {2.3 3.1 1 ------- null} h -t 20.8382255238095 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 14 -a 0 -x {2.3 3.1 -1 ------- null} + -t 20.8382 -s 2 -d 4 -p dummy -e 1024 -c 100 -i 0 -a 100 r -t 20.9445112380952 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 14 -a 0 -x {2.3 3.1 1 ------- null} + -t 21.0919398095238 -s 3 -d 2 -p rap_data -e 1024 -c 100 -i 15 -a 100 -x {3.1 2.3 2 ------- null} - -t 21.0919398095238 -s 3 -d 2 -p rap_data -e 1024 -c 100 -i 15 -a 100 -x {3.1 2.3 2 ------- null} h -t 21.0919398095238 -s 3 -d 2 -p rap_data -e 1024 -c 100 -i 15 -a 100 -x {3.1 2.3 -1 ------- null} + -t 21.1423824761905 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 16 -a 100 -x {2.4 0.1 1 ------- null} - -t 21.1423824761905 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 16 -a 100 -x {2.4 0.1 1 ------- null} h -t 21.1423824761905 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 16 -a 100 -x {2.4 0.1 -1 ------- null} r -t 21.1978438095238 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 16 -a 100 -x {2.4 0.1 1 ------- null} + -t 21.1978438095238 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 17 -a 0 -x {0.1 2.4 1 ------- null} - -t 21.1978438095238 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 17 -a 0 -x {0.1 2.4 1 ------- null} h -t 21.1978438095238 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 17 -a 0 -x {0.1 2.4 -1 ------- null} r -t 21.2480784761905 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 17 -a 0 -x {0.1 2.4 1 ------- null} + -t 21.2682255238095 -s 3 -d 2 -p rap_data -e 1024 -c 100 -i 18 -a 100 -x {3.1 2.3 3 ------- null} - -t 21.2682255238095 -s 3 -d 2 -p rap_data -e 1024 -c 100 -i 18 -a 100 -x {3.1 2.3 3 ------- null} h -t 21.2682255238095 -s 3 -d 2 -p rap_data -e 1024 -c 100 -i 18 -a 100 -x {3.1 2.3 -1 ------- null} r -t 21.3382255238095 -s 3 -d 2 -p rap_data -e 1024 -c 100 -i 15 -a 100 -x {3.1 2.3 2 ------- null} + -t 21.3382255238095 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 19 -a 0 -x {2.3 3.1 2 ------- null} - -t 21.3382255238095 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 19 -a 0 -x {2.3 3.1 2 ------- null} h -t 21.3382255238095 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 19 -a 0 -x {2.3 3.1 -1 ------- null} + -t 21.3382 -s 2 -d 4 -p dummy -e 1024 -c 100 -i 0 -a 100 + -t 21.4445112380952 -s 3 -d 2 -p rap_data -e 1024 -c 100 -i 20 -a 100 -x {3.1 2.3 4 ------- null} - -t 21.4445112380952 -s 3 -d 2 -p rap_data -e 1024 -c 100 -i 20 -a 100 -x {3.1 2.3 4 ------- null} h -t 21.4445112380952 -s 3 -d 2 -p rap_data -e 1024 -c 100 -i 20 -a 100 -x {3.1 2.3 -1 ------- null} r -t 21.4445112380952 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 19 -a 0 -x {2.3 3.1 2 ------- null} r -t 21.5145112380952 -s 3 -d 2 -p rap_data -e 1024 -c 100 -i 18 -a 100 -x {3.1 2.3 3 ------- null} + -t 21.5145112380952 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 21 -a 0 -x {2.3 3.1 3 ------- null} - -t 21.5145112380952 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 21 -a 0 -x {2.3 3.1 3 ------- null} h -t 21.5145112380952 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 21 -a 0 -x {2.3 3.1 -1 ------- null} + -t 21.5145 -s 2 -d 4 -p dummy -e 1024 -c 100 -i 0 -a 100 + -t 21.562035047619 -s 3 -d 2 -p rap_data -e 1024 -c 101 -i 22 -a 101 -x {3.1 2.3 5 ------- null} - -t 21.590796952381 -s 3 -d 2 -p rap_data -e 1024 -c 101 -i 22 -a 101 -x {3.1 2.3 5 ------- null} h -t 21.590796952381 -s 3 -d 2 -p rap_data -e 1024 -c 101 -i 22 -a 101 -x {3.1 2.3 -1 ------- null} r -t 21.620796952381 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 21 -a 0 -x {2.3 3.1 3 ------- null} + -t 21.6423824761905 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 23 -a 100 -x {2.4 0.1 2 ------- null} - -t 21.6423824761905 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 23 -a 100 -x {2.4 0.1 2 ------- null} h -t 21.6423824761905 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 23 -a 100 -x {2.4 0.1 -1 ------- null} + -t 21.6795588571429 -s 3 -d 2 -p rap_data -e 1024 -c 101 -i 24 -a 101 -x {3.1 2.3 6 ------- null} r -t 21.690796952381 -s 3 -d 2 -p rap_data -e 1024 -c 100 -i 20 -a 100 -x {3.1 2.3 4 ------- null} + -t 21.690796952381 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 25 -a 0 -x {2.3 3.1 4 ------- null} - -t 21.690796952381 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 25 -a 0 -x {2.3 3.1 4 ------- null} h -t 21.690796952381 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 25 -a 0 -x {2.3 3.1 -1 ------- null} + -t 21.6908 -s 2 -d 4 -p dummy -e 1024 -c 100 -i 0 -a 100 r -t 21.6978438095238 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 23 -a 100 -x {2.4 0.1 2 ------- null} + -t 21.6978438095238 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 26 -a 0 -x {0.1 2.4 2 ------- null} - -t 21.6978438095238 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 26 -a 0 -x {0.1 2.4 2 ------- null} h -t 21.6978438095238 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 26 -a 0 -x {0.1 2.4 -1 ------- null} - -t 21.7370826666667 -s 3 -d 2 -p rap_data -e 1024 -c 101 -i 24 -a 101 -x {3.1 2.3 6 ------- null} h -t 21.7370826666667 -s 3 -d 2 -p rap_data -e 1024 -c 101 -i 24 -a 101 -x {3.1 2.3 -1 ------- null} r -t 21.7480784761905 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 26 -a 0 -x {0.1 2.4 2 ------- null} + -t 21.7938064761905 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 27 -a 100 -x {2.4 0.1 3 ------- null} - -t 21.7938064761905 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 27 -a 100 -x {2.4 0.1 3 ------- null} h -t 21.7938064761905 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 27 -a 100 -x {2.4 0.1 -1 ------- null} + -t 21.7970826666667 -s 3 -d 2 -p rap_data -e 1024 -c 100 -i 28 -a 100 -x {3.1 2.3 7 ------- null} r -t 21.7970826666667 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 25 -a 0 -x {2.3 3.1 4 ------- null} r -t 21.8370826666667 -s 3 -d 2 -p rap_data -e 1024 -c 101 -i 22 -a 101 -x {3.1 2.3 5 ------- null} + -t 21.8370826666667 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 29 -a 0 -x {2.3 3.1 5 ------- null} - -t 21.8370826666667 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 29 -a 0 -x {2.3 3.1 5 ------- null} h -t 21.8370826666667 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 29 -a 0 -x {2.3 3.1 -1 ------- null} + -t 21.8371 -s 2 -d 4 -p dummy -e 1024 -c 101 -i 0 -a 101 r -t 21.8492678095238 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 27 -a 100 -x {2.4 0.1 3 ------- null} + -t 21.8492678095238 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 30 -a 0 -x {0.1 2.4 3 ------- null} - -t 21.8492678095238 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 30 -a 0 -x {0.1 2.4 3 ------- null} h -t 21.8492678095238 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 30 -a 0 -x {0.1 2.4 -1 ------- null} - -t 21.8833683809524 -s 3 -d 2 -p rap_data -e 1024 -c 100 -i 28 -a 100 -x {3.1 2.3 7 ------- null} h -t 21.8833683809524 -s 3 -d 2 -p rap_data -e 1024 -c 100 -i 28 -a 100 -x {3.1 2.3 -1 ------- null} + -t 21.8852255238095 -s 3 -d 2 -p rap_data -e 1024 -c 101 -i 31 -a 101 -x {3.1 2.3 8 ------- null} r -t 21.8995024761905 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 30 -a 0 -x {0.1 2.4 3 ------- null} r -t 21.9433683809524 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 29 -a 0 -x {2.3 3.1 5 ------- null} + -t 21.9733683809524 -s 3 -d 2 -p rap_data -e 1024 -c 100 -i 32 -a 100 -x {3.1 2.3 9 ------- null} d -t 21.9733683809524 -s 3 -d 2 -p rap_data -e 1024 -c 100 -i 32 -a 100 -x {3.1 2.3 9 ------- null} r -t 21.9833683809524 -s 3 -d 2 -p rap_data -e 1024 -c 101 -i 24 -a 101 -x {3.1 2.3 6 ------- null} + -t 21.9833683809524 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 33 -a 0 -x {2.3 3.1 6 ------- null} - -t 21.9833683809524 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 33 -a 0 -x {2.3 3.1 6 ------- null} h -t 21.9833683809524 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 33 -a 0 -x {2.3 3.1 -1 ------- null} + -t 21.9834 -s 2 -d 4 -p dummy -e 1024 -c 101 -i 0 -a 101 + -t 22.0218221357294 -s 2 -d 0 -p rap_data -e 1024 -c 101 -i 34 -a 101 -x {2.4 0.1 4 ------- null} - -t 22.0218221357294 -s 2 -d 0 -p rap_data -e 1024 -c 101 -i 34 -a 101 -x {2.4 0.1 4 ------- null} h -t 22.0218221357294 -s 2 -d 0 -p rap_data -e 1024 -c 101 -i 34 -a 101 -x {2.4 0.1 -1 ------- null} - -t 22.0296540952381 -s 3 -d 2 -p rap_data -e 1024 -c 101 -i 31 -a 101 -x {3.1 2.3 8 ------- null} h -t 22.0296540952381 -s 3 -d 2 -p rap_data -e 1024 -c 101 -i 31 -a 101 -x {3.1 2.3 -1 ------- null} + -t 22.0615112380952 -s 3 -d 2 -p rap_data -e 1024 -c 101 -i 35 -a 101 -x {3.1 2.3 10 ------- null} r -t 22.0772834690627 -s 2 -d 0 -p rap_data -e 1024 -c 101 -i 34 -a 101 -x {2.4 0.1 4 ------- null} + -t 22.0772834690627 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 36 -a 0 -x {0.1 2.4 4 ------- null} - -t 22.0772834690627 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 36 -a 0 -x {0.1 2.4 4 ------- null} h -t 22.0772834690627 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 36 -a 0 -x {0.1 2.4 -1 ------- null} r -t 22.0896540952381 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 33 -a 0 -x {2.3 3.1 6 ------- null} + -t 22.0984137952683 -s 2 -d 0 -p rap_data -e 1024 -c 101 -i 37 -a 101 -x {2.4 0.1 5 ------- null} - -t 22.0984137952683 -s 2 -d 0 -p rap_data -e 1024 -c 101 -i 37 -a 101 -x {2.4 0.1 5 ------- null} h -t 22.0984137952683 -s 2 -d 0 -p rap_data -e 1024 -c 101 -i 37 -a 101 -x {2.4 0.1 -1 ------- null} r -t 22.1275181357294 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 36 -a 0 -x {0.1 2.4 4 ------- null} r -t 22.1296540952381 -s 3 -d 2 -p rap_data -e 1024 -c 100 -i 28 -a 100 -x {3.1 2.3 7 ------- null} + -t 22.1296540952381 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 38 -a 0 -x {2.3 3.1 7 ------- null} - -t 22.1296540952381 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 38 -a 0 -x {2.3 3.1 7 ------- null} h -t 22.1296540952381 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 38 -a 0 -x {2.3 3.1 -1 ------- null} + -t 22.1297 -s 2 -d 4 -p dummy -e 1024 -c 100 -i 0 -a 100 + -t 22.1496540952381 -s 3 -d 2 -p rap_data -e 1024 -c 101 -i 39 -a 101 -x {3.1 2.3 11 ------- null} d -t 22.1496540952381 -s 3 -d 2 -p rap_data -e 1024 -c 101 -i 39 -a 101 -x {3.1 2.3 11 ------- null} r -t 22.1538751286016 -s 2 -d 0 -p rap_data -e 1024 -c 101 -i 37 -a 101 -x {2.4 0.1 5 ------- null} + -t 22.1538751286016 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 40 -a 0 -x {0.1 2.4 5 ------- null} - -t 22.1538751286016 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 40 -a 0 -x {0.1 2.4 5 ------- null} h -t 22.1538751286016 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 40 -a 0 -x {0.1 2.4 -1 ------- null} - -t 22.1759398095238 -s 3 -d 2 -p rap_data -e 1024 -c 101 -i 35 -a 101 -x {3.1 2.3 10 ------- null} h -t 22.1759398095238 -s 3 -d 2 -p rap_data -e 1024 -c 101 -i 35 -a 101 -x {3.1 2.3 -1 ------- null} r -t 22.2041097952683 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 40 -a 0 -x {0.1 2.4 5 ------- null} r -t 22.2359398095238 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 38 -a 0 -x {2.3 3.1 7 ------- null} + -t 22.2377969523809 -s 3 -d 2 -p rap_data -e 1024 -c 100 -i 41 -a 100 -x {3.1 2.3 12 ------- null} r -t 22.2759398095238 -s 3 -d 2 -p rap_data -e 1024 -c 101 -i 31 -a 101 -x {3.1 2.3 8 ------- null} + -t 22.2759398095238 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 42 -a 0 -x {2.3 3.1 8 ------- null} - -t 22.2759398095238 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 42 -a 0 -x {2.3 3.1 8 ------- null} h -t 22.2759398095238 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 42 -a 0 -x {2.3 3.1 -1 ------- null} + -t 22.2759 -s 2 -d 4 -p dummy -e 1024 -c 101 -i 0 -a 101 + -t 22.3096408656106 -s 3 -d 2 -p rap_data -e 1024 -c 102 -i 43 -a 102 -x {3.1 2.3 13 ------- null} d -t 22.3096408656106 -s 3 -d 2 -p rap_data -e 1024 -c 102 -i 43 -a 102 -x {3.1 2.3 13 ------- null} - -t 22.3222255238095 -s 3 -d 2 -p rap_data -e 1024 -c 100 -i 41 -a 100 -x {3.1 2.3 12 ------- null} h -t 22.3222255238095 -s 3 -d 2 -p rap_data -e 1024 -c 100 -i 41 -a 100 -x {3.1 2.3 -1 ------- null} + -t 22.3814847788402 -s 3 -d 2 -p rap_data -e 1024 -c 102 -i 44 -a 102 -x {3.1 2.3 14 ------- null} r -t 22.3822255238095 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 42 -a 0 -x {2.3 3.1 8 ------- null} r -t 22.4222255238095 -s 3 -d 2 -p rap_data -e 1024 -c 101 -i 35 -a 101 -x {3.1 2.3 10 ------- null} + -t 22.4222255238095 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 45 -a 0 -x {2.3 3.1 10 ------- null} - -t 22.4222255238095 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 45 -a 0 -x {2.3 3.1 10 ------- null} h -t 22.4222255238095 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 45 -a 0 -x {2.3 3.1 -1 ------- null} + -t 22.4222 -s 2 -d 4 -p dummy -e 1024 -c 101 -i 0 -a 101 + -t 22.4533286920698 -s 3 -d 2 -p rap_data -e 1024 -c 102 -i 46 -a 102 -x {3.1 2.3 15 ------- null} d -t 22.4533286920698 -s 3 -d 2 -p rap_data -e 1024 -c 102 -i 46 -a 102 -x {3.1 2.3 15 ------- null} - -t 22.4685112380952 -s 3 -d 2 -p rap_data -e 1024 -c 102 -i 44 -a 102 -x {3.1 2.3 14 ------- null} h -t 22.4685112380952 -s 3 -d 2 -p rap_data -e 1024 -c 102 -i 44 -a 102 -x {3.1 2.3 -1 ------- null} + -t 22.5251726052995 -s 3 -d 2 -p rap_data -e 1024 -c 100 -i 47 -a 100 -x {3.1 2.3 16 ------- null} r -t 22.5285112380952 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 45 -a 0 -x {2.3 3.1 10 ------- null} + -t 22.533822838721 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 48 -a 100 -x {2.4 0.1 6 ------- null} - -t 22.533822838721 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 48 -a 100 -x {2.4 0.1 6 ------- null} h -t 22.533822838721 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 48 -a 100 -x {2.4 0.1 -1 ------- null} r -t 22.5685112380952 -s 3 -d 2 -p rap_data -e 1024 -c 100 -i 41 -a 100 -x {3.1 2.3 12 ------- null} + -t 22.5685112380952 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 49 -a 0 -x {2.3 3.1 12 ------- null} - -t 22.5685112380952 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 49 -a 0 -x {2.3 3.1 12 ------- null} h -t 22.5685112380952 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 49 -a 0 -x {2.3 3.1 -1 ------- null} + -t 22.5685 -s 2 -d 4 -p dummy -e 1024 -c 100 -i 0 -a 100 r -t 22.5892841720543 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 48 -a 100 -x {2.4 0.1 6 ------- null} + -t 22.5892841720543 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 50 -a 0 -x {0.1 2.4 6 ------- null} - -t 22.5892841720543 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 50 -a 0 -x {0.1 2.4 6 ------- null} h -t 22.5892841720543 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 50 -a 0 -x {0.1 2.4 -1 ------- null} + -t 22.5970165185291 -s 3 -d 2 -p ack -e 83 -c 2 -i 51 -a 2 -x {3.0 2.2 44 ---A--- null} d -t 22.5970165185291 -s 3 -d 2 -p ack -e 83 -c 2 -i 51 -a 2 -x {3.0 2.2 44 ---A--- null} - -t 22.6147969523809 -s 3 -d 2 -p rap_data -e 1024 -c 100 -i 47 -a 100 -x {3.1 2.3 16 ------- null} h -t 22.6147969523809 -s 3 -d 2 -p rap_data -e 1024 -c 100 -i 47 -a 100 -x {3.1 2.3 -1 ------- null} r -t 22.639518838721 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 50 -a 0 -x {0.1 2.4 6 ------- null} r -t 22.674796952381 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 49 -a 0 -x {2.3 3.1 12 ------- null} r -t 22.714796952381 -s 3 -d 2 -p rap_data -e 1024 -c 102 -i 44 -a 102 -x {3.1 2.3 14 ------- null} + -t 22.714796952381 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 52 -a 0 -x {2.3 3.1 14 ------- null} - -t 22.714796952381 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 52 -a 0 -x {2.3 3.1 14 ------- null} h -t 22.714796952381 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 52 -a 0 -x {2.3 3.1 -1 ------- null} + -t 22.7148 -s 2 -d 4 -p dummy -e 1024 -c 102 -i 0 -a 102 + -t 22.7901209700879 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 53 -a 100 -x {2.4 0.1 7 ------- null} - -t 22.7901209700879 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 53 -a 100 -x {2.4 0.1 7 ------- null} h -t 22.7901209700879 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 53 -a 100 -x {2.4 0.1 -1 ------- null} r -t 22.8210826666667 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 52 -a 0 -x {2.3 3.1 14 ------- null} r -t 22.8455823034213 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 53 -a 100 -x {2.4 0.1 7 ------- null} + -t 22.8455823034213 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 54 -a 0 -x {0.1 2.4 7 ------- null} - -t 22.8455823034213 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 54 -a 0 -x {0.1 2.4 7 ------- null} h -t 22.8455823034213 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 54 -a 0 -x {0.1 2.4 -1 ------- null} r -t 22.8610826666667 -s 3 -d 2 -p rap_data -e 1024 -c 100 -i 47 -a 100 -x {3.1 2.3 16 ------- null} + -t 22.8610826666667 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 55 -a 0 -x {2.3 3.1 16 ------- null} - -t 22.8610826666667 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 55 -a 0 -x {2.3 3.1 16 ------- null} h -t 22.8610826666667 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 55 -a 0 -x {2.3 3.1 -1 ------- null} + -t 22.8611 -s 2 -d 4 -p dummy -e 1024 -c 100 -i 0 -a 100 + -t 22.8926402226347 -s 2 -d 0 -p rap_data -e 1024 -c 101 -i 56 -a 101 -x {2.4 0.1 8 ------- null} - -t 22.8926402226347 -s 2 -d 0 -p rap_data -e 1024 -c 101 -i 56 -a 101 -x {2.4 0.1 8 ------- null} h -t 22.8926402226347 -s 2 -d 0 -p rap_data -e 1024 -c 101 -i 56 -a 101 -x {2.4 0.1 -1 ------- null} r -t 22.8958169700879 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 54 -a 0 -x {0.1 2.4 7 ------- null} r -t 22.948101555968 -s 2 -d 0 -p rap_data -e 1024 -c 101 -i 56 -a 101 -x {2.4 0.1 8 ------- null} + -t 22.948101555968 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 57 -a 0 -x {0.1 2.4 8 ------- null} - -t 22.948101555968 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 57 -a 0 -x {0.1 2.4 8 ------- null} h -t 22.948101555968 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 57 -a 0 -x {0.1 2.4 -1 ------- null} r -t 22.9673683809524 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 55 -a 0 -x {2.3 3.1 16 ------- null} r -t 22.9983362226347 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 57 -a 0 -x {0.1 2.4 8 ------- null} + -t 23.0970165185291 -s 3 -d 2 -p ack -e 83 -c 2 -i 58 -a 2 -x {3.0 2.2 44 ---A--- null} - -t 23.0970165185291 -s 3 -d 2 -p ack -e 83 -c 2 -i 58 -a 2 -x {3.0 2.2 44 ---A--- null} h -t 23.0970165185291 -s 3 -d 2 -p ack -e 83 -c 2 -i 58 -a 2 -x {3.0 2.2 -1 ---A--- null} r -t 23.2088736613862 -s 3 -d 2 -p ack -e 83 -c 2 -i 58 -a 2 -x {3.0 2.2 44 ---A--- null} + -t 23.2514576065485 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 59 -a 100 -x {2.4 0.1 9 ------- null} - -t 23.2514576065485 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 59 -a 100 -x {2.4 0.1 9 ------- null} h -t 23.2514576065485 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 59 -a 100 -x {2.4 0.1 -1 ------- null} + -t 23.3 -s 2 -d 3 -p tcp -e 40 -c 2 -i 60 -a 2 -x {2.2 3.0 44 ------- null} - -t 23.3 -s 2 -d 3 -p tcp -e 40 -c 2 -i 60 -a 2 -x {2.2 3.0 44 ------- null} h -t 23.3 -s 2 -d 3 -p tcp -e 40 -c 2 -i 60 -a 2 -x {2.2 3.0 -1 ------- null} + -t 23.3027172328219 -s 2 -d 0 -p rap_data -e 1024 -c 101 -i 61 -a 101 -x {2.4 0.1 10 ------- null} - -t 23.3027172328219 -s 2 -d 0 -p rap_data -e 1024 -c 101 -i 61 -a 101 -x {2.4 0.1 10 ------- null} h -t 23.3027172328219 -s 2 -d 0 -p rap_data -e 1024 -c 101 -i 61 -a 101 -x {2.4 0.1 -1 ------- null} r -t 23.3069189398818 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 59 -a 100 -x {2.4 0.1 9 ------- null} + -t 23.3069189398818 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 62 -a 0 -x {0.1 2.4 9 ------- null} - -t 23.3069189398818 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 62 -a 0 -x {0.1 2.4 9 ------- null} h -t 23.3069189398818 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 62 -a 0 -x {0.1 2.4 -1 ------- null} + -t 23.3539768590952 -s 2 -d 0 -p rap_data -e 1024 -c 102 -i 63 -a 102 -x {2.4 0.1 11 ------- null} - -t 23.3539768590952 -s 2 -d 0 -p rap_data -e 1024 -c 102 -i 63 -a 102 -x {2.4 0.1 11 ------- null} h -t 23.3539768590952 -s 2 -d 0 -p rap_data -e 1024 -c 102 -i 63 -a 102 -x {2.4 0.1 -1 ------- null} r -t 23.3571536065485 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 62 -a 0 -x {0.1 2.4 9 ------- null} r -t 23.3581785661552 -s 2 -d 0 -p rap_data -e 1024 -c 101 -i 61 -a 101 -x {2.4 0.1 10 ------- null} + -t 23.3581785661552 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 64 -a 0 -x {0.1 2.4 10 ------- null} - -t 23.3581785661552 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 64 -a 0 -x {0.1 2.4 10 ------- null} h -t 23.3581785661552 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 64 -a 0 -x {0.1 2.4 -1 ------- null} + -t 23.4052364853686 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 65 -a 100 -x {2.4 0.1 12 ------- null} - -t 23.4052364853686 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 65 -a 100 -x {2.4 0.1 12 ------- null} h -t 23.4052364853686 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 65 -a 100 -x {2.4 0.1 -1 ------- null} r -t 23.4057142857143 -s 2 -d 3 -p tcp -e 40 -c 2 -i 60 -a 2 -x {2.2 3.0 44 ------- null} r -t 23.4084132328219 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 64 -a 0 -x {0.1 2.4 10 ------- null} r -t 23.4094381924286 -s 2 -d 0 -p rap_data -e 1024 -c 102 -i 63 -a 102 -x {2.4 0.1 11 ------- null} + -t 23.4094381924286 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 66 -a 0 -x {0.1 2.4 11 ------- null} - -t 23.4094381924286 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 66 -a 0 -x {0.1 2.4 11 ------- null} h -t 23.4094381924286 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 66 -a 0 -x {0.1 2.4 -1 ------- null} + -t 23.4096737261905 -s 2 -d 3 -p tcp -e 83 -c 2 -i 67 -a 2 -x {2.2 3.0 44 ---A--- null} - -t 23.4096737261905 -s 2 -d 3 -p tcp -e 83 -c 2 -i 67 -a 2 -x {2.2 3.0 44 ---A--- null} h -t 23.4096737261905 -s 2 -d 3 -p tcp -e 83 -c 2 -i 67 -a 2 -x {2.2 3.0 -1 ---A--- null} + -t 23.4096737261905 -s 2 -d 3 -p tcp -e 83 -c 2 -i 68 -a 2 -x {2.2 3.0 87 ------- null} + -t 23.4096737261905 -s 2 -d 3 -p tcp -e 83 -c 2 -i 69 -a 2 -x {2.2 3.0 130 ------- null} d -t 23.4096737261905 -s 2 -d 3 -p tcp -e 83 -c 2 -i 69 -a 2 -x {2.2 3.0 130 ------- null} - -t 23.4215308690476 -s 2 -d 3 -p tcp -e 83 -c 2 -i 68 -a 2 -x {2.2 3.0 87 ------- null} h -t 23.4215308690476 -s 2 -d 3 -p tcp -e 83 -c 2 -i 68 -a 2 -x {2.2 3.0 -1 ------- null} r -t 23.4596728590952 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 66 -a 0 -x {0.1 2.4 11 ------- null} r -t 23.460697818702 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 65 -a 100 -x {2.4 0.1 12 ------- null} + -t 23.460697818702 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 70 -a 0 -x {0.1 2.4 12 ------- null} - -t 23.460697818702 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 70 -a 0 -x {0.1 2.4 12 ------- null} h -t 23.460697818702 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 70 -a 0 -x {0.1 2.4 -1 ------- null} r -t 23.5109324853686 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 70 -a 0 -x {0.1 2.4 12 ------- null} r -t 23.5215308690476 -s 2 -d 3 -p tcp -e 83 -c 2 -i 67 -a 2 -x {2.2 3.0 44 ---A--- null} + -t 23.5215308690476 -s 3 -d 2 -p rap_data -e 1024 -c 102 -i 71 -a 102 -x {3.1 2.3 1 ------- null} - -t 23.5215308690476 -s 3 -d 2 -p rap_data -e 1024 -c 102 -i 71 -a 102 -x {3.1 2.3 1 ------- null} h -t 23.5215308690476 -s 3 -d 2 -p rap_data -e 1024 -c 102 -i 71 -a 102 -x {3.1 2.3 -1 ------- null} r -t 23.5333880119048 -s 2 -d 3 -p tcp -e 83 -c 2 -i 68 -a 2 -x {2.2 3.0 87 ------- null} + -t 23.5365308690476 -s 3 -d 2 -p rap_data -e 1024 -c 101 -i 72 -a 101 -x {3.1 2.3 2 ------- null} + -t 23.6 -s 3 -d 2 -p ack -e 40 -c 2 -i 73 -a 2 -x {3.0 2.2 87 ------- null} d -t 23.6 -s 3 -d 2 -p ack -e 40 -c 2 -i 73 -a 2 -x {3.0 2.2 87 ------- null} - -t 23.6678165833334 -s 3 -d 2 -p rap_data -e 1024 -c 101 -i 72 -a 101 -x {3.1 2.3 2 ------- null} h -t 23.6678165833334 -s 3 -d 2 -p rap_data -e 1024 -c 101 -i 72 -a 101 -x {3.1 2.3 -1 ------- null} r -t 23.7678165833334 -s 3 -d 2 -p rap_data -e 1024 -c 102 -i 71 -a 102 -x {3.1 2.3 1 ------- null} + -t 23.7678165833334 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 74 -a 0 -x {2.3 3.1 1 ------- null} - -t 23.7678165833334 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 74 -a 0 -x {2.3 3.1 1 ------- null} h -t 23.7678165833334 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 74 -a 0 -x {2.3 3.1 -1 ------- null} + -t 23.7678 -s 2 -d 4 -p dummy -e 1024 -c 102 -i 0 -a 102 + -t 23.8331315855655 -s 2 -d 3 -p tcp -e 83 -c 2 -i 75 -a 2 -x {2.2 3.0 173 ------- null} - -t 23.8331315855655 -s 2 -d 3 -p tcp -e 83 -c 2 -i 75 -a 2 -x {2.2 3.0 173 ------- null} h -t 23.8331315855655 -s 2 -d 3 -p tcp -e 83 -c 2 -i 75 -a 2 -x {2.2 3.0 -1 ------- null} + -t 23.8331315855655 -s 2 -d 3 -p tcp -e 83 -c 2 -i 76 -a 2 -x {2.2 3.0 216 ------- null} - -t 23.8449887284227 -s 2 -d 3 -p tcp -e 83 -c 2 -i 76 -a 2 -x {2.2 3.0 216 ------- null} h -t 23.8449887284227 -s 2 -d 3 -p tcp -e 83 -c 2 -i 76 -a 2 -x {2.2 3.0 -1 ------- null} r -t 23.8741022976191 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 74 -a 0 -x {2.3 3.1 1 ------- null} r -t 23.9141022976191 -s 3 -d 2 -p rap_data -e 1024 -c 101 -i 72 -a 101 -x {3.1 2.3 2 ------- null} + -t 23.9141022976191 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 77 -a 0 -x {2.3 3.1 2 ------- null} - -t 23.9141022976191 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 77 -a 0 -x {2.3 3.1 2 ------- null} h -t 23.9141022976191 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 77 -a 0 -x {2.3 3.1 -1 ------- null} + -t 23.9141 -s 2 -d 4 -p dummy -e 1024 -c 101 -i 0 -a 101 + -t 23.9242462603308 -s 2 -d 0 -p rap_data -e 1024 -c 101 -i 78 -a 101 -x {2.4 0.1 13 ------- null} - -t 23.9242462603308 -s 2 -d 0 -p rap_data -e 1024 -c 101 -i 78 -a 101 -x {2.4 0.1 13 ------- null} h -t 23.9242462603308 -s 2 -d 0 -p rap_data -e 1024 -c 101 -i 78 -a 101 -x {2.4 0.1 -1 ------- null} r -t 23.9449887284227 -s 2 -d 3 -p tcp -e 83 -c 2 -i 75 -a 2 -x {2.2 3.0 173 ------- null} + -t 23.9449887284227 -s 3 -d 2 -p ack -e 40 -c 2 -i 79 -a 2 -x {3.0 2.2 87 ------- null} - -t 23.9449887284227 -s 3 -d 2 -p ack -e 40 -c 2 -i 79 -a 2 -x {3.0 2.2 87 ------- null} h -t 23.9449887284227 -s 3 -d 2 -p ack -e 40 -c 2 -i 79 -a 2 -x {3.0 2.2 -1 ------- null} r -t 23.9568458712798 -s 2 -d 3 -p tcp -e 83 -c 2 -i 76 -a 2 -x {2.2 3.0 216 ------- null} + -t 23.9568458712798 -s 3 -d 2 -p ack -e 40 -c 2 -i 80 -a 2 -x {3.0 2.2 87 ------- null} - -t 23.9568458712798 -s 3 -d 2 -p ack -e 40 -c 2 -i 80 -a 2 -x {3.0 2.2 87 ------- null} h -t 23.9568458712798 -s 3 -d 2 -p ack -e 40 -c 2 -i 80 -a 2 -x {3.0 2.2 -1 ------- null} + -t 23.958846911995 -s 2 -d 0 -p rap_data -e 1024 -c 102 -i 81 -a 102 -x {2.4 0.1 14 ------- null} - -t 23.958846911995 -s 2 -d 0 -p rap_data -e 1024 -c 102 -i 81 -a 102 -x {2.4 0.1 14 ------- null} h -t 23.958846911995 -s 2 -d 0 -p rap_data -e 1024 -c 102 -i 81 -a 102 -x {2.4 0.1 -1 ------- null} r -t 23.9797075936642 -s 2 -d 0 -p rap_data -e 1024 -c 101 -i 78 -a 101 -x {2.4 0.1 13 ------- null} + -t 23.9797075936642 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 82 -a 0 -x {0.1 2.4 13 ------- null} - -t 23.9797075936642 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 82 -a 0 -x {0.1 2.4 13 ------- null} h -t 23.9797075936642 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 82 -a 0 -x {0.1 2.4 -1 ------- null} r -t 24.0143082453283 -s 2 -d 0 -p rap_data -e 1024 -c 102 -i 81 -a 102 -x {2.4 0.1 14 ------- null} + -t 24.0143082453283 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 83 -a 0 -x {0.1 2.4 14 ------- null} - -t 24.0143082453283 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 83 -a 0 -x {0.1 2.4 14 ------- null} h -t 24.0143082453283 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 83 -a 0 -x {0.1 2.4 -1 ------- null} r -t 24.0203880119048 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 77 -a 0 -x {2.3 3.1 2 ------- null} r -t 24.0299422603308 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 82 -a 0 -x {0.1 2.4 13 ------- null} r -t 24.0507030141369 -s 3 -d 2 -p ack -e 40 -c 2 -i 79 -a 2 -x {3.0 2.2 87 ------- null} r -t 24.0625601569941 -s 3 -d 2 -p ack -e 40 -c 2 -i 80 -a 2 -x {3.0 2.2 87 ------- null} r -t 24.064542911995 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 83 -a 0 -x {0.1 2.4 14 ------- null} + -t 24.2627062922476 -s 2 -d 3 -p tcp -e 83 -c 2 -i 84 -a 2 -x {2.2 3.0 259 ------- null} - -t 24.2627062922476 -s 2 -d 3 -p tcp -e 83 -c 2 -i 84 -a 2 -x {2.2 3.0 259 ------- null} h -t 24.2627062922476 -s 2 -d 3 -p tcp -e 83 -c 2 -i 84 -a 2 -x {2.2 3.0 -1 ------- null} r -t 24.3745634351047 -s 2 -d 3 -p tcp -e 83 -c 2 -i 84 -a 2 -x {2.2 3.0 259 ------- null} + -t 24.3745634351047 -s 3 -d 2 -p ack -e 40 -c 2 -i 85 -a 2 -x {3.0 2.2 87 ------- null} - -t 24.3745634351047 -s 3 -d 2 -p ack -e 40 -c 2 -i 85 -a 2 -x {3.0 2.2 87 ------- null} h -t 24.3745634351047 -s 3 -d 2 -p ack -e 40 -c 2 -i 85 -a 2 -x {3.0 2.2 -1 ------- null} + -t 24.4712912495136 -s 2 -d 3 -p tcp -e 83 -c 2 -i 86 -a 2 -x {2.2 3.0 302 ------- null} - -t 24.4712912495136 -s 2 -d 3 -p tcp -e 83 -c 2 -i 86 -a 2 -x {2.2 3.0 302 ------- null} h -t 24.4712912495136 -s 2 -d 3 -p tcp -e 83 -c 2 -i 86 -a 2 -x {2.2 3.0 -1 ------- null} r -t 24.480277720819 -s 3 -d 2 -p ack -e 40 -c 2 -i 85 -a 2 -x {3.0 2.2 87 ------- null} + -t 24.573340515253 -s 2 -d 3 -p tcp -e 83 -c 2 -i 87 -a 2 -x {2.2 3.0 345 ------- null} - -t 24.573340515253 -s 2 -d 3 -p tcp -e 83 -c 2 -i 87 -a 2 -x {2.2 3.0 345 ------- null} h -t 24.573340515253 -s 2 -d 3 -p tcp -e 83 -c 2 -i 87 -a 2 -x {2.2 3.0 -1 ------- null} r -t 24.5831483923708 -s 2 -d 3 -p tcp -e 83 -c 2 -i 86 -a 2 -x {2.2 3.0 302 ------- null} + -t 24.5831483923708 -s 3 -d 2 -p ack -e 40 -c 2 -i 88 -a 2 -x {3.0 2.2 87 ------- null} - -t 24.5831483923708 -s 3 -d 2 -p ack -e 40 -c 2 -i 88 -a 2 -x {3.0 2.2 87 ------- null} h -t 24.5831483923708 -s 3 -d 2 -p ack -e 40 -c 2 -i 88 -a 2 -x {3.0 2.2 -1 ------- null} r -t 24.6851976581102 -s 2 -d 3 -p tcp -e 83 -c 2 -i 87 -a 2 -x {2.2 3.0 345 ------- null} + -t 24.6851976581102 -s 3 -d 2 -p ack -e 40 -c 2 -i 89 -a 2 -x {3.0 2.2 87 ------- null} - -t 24.6851976581102 -s 3 -d 2 -p ack -e 40 -c 2 -i 89 -a 2 -x {3.0 2.2 87 ------- null} h -t 24.6851976581102 -s 3 -d 2 -p ack -e 40 -c 2 -i 89 -a 2 -x {3.0 2.2 -1 ------- null} r -t 24.6888626780851 -s 3 -d 2 -p ack -e 40 -c 2 -i 88 -a 2 -x {3.0 2.2 87 ------- null} + -t 24.6888626780851 -s 2 -d 3 -p tcp -e 298 -c 2 -i 90 -a 2 -x {2.2 3.0 130 ---A--- null} - -t 24.6888626780851 -s 2 -d 3 -p tcp -e 298 -c 2 -i 90 -a 2 -x {2.2 3.0 130 ---A--- null} h -t 24.6888626780851 -s 2 -d 3 -p tcp -e 298 -c 2 -i 90 -a 2 -x {2.2 3.0 -1 ---A--- null} r -t 24.7909119438245 -s 3 -d 2 -p ack -e 40 -c 2 -i 89 -a 2 -x {3.0 2.2 87 ------- null} r -t 24.8314341066565 -s 2 -d 3 -p tcp -e 298 -c 2 -i 90 -a 2 -x {2.2 3.0 130 ---A--- null} + -t 24.914534283704 -s 2 -d 0 -p ack -e 83 -c 0 -i 91 -a 0 -x {2.0 0.0 44 ---A--- null} - -t 24.914534283704 -s 2 -d 0 -p ack -e 83 -c 0 -i 91 -a 0 -x {2.0 0.0 44 ---A--- null} h -t 24.914534283704 -s 2 -d 0 -p ack -e 83 -c 0 -i 91 -a 0 -x {2.0 0.0 -1 ---A--- null} r -t 24.9649769503707 -s 2 -d 0 -p ack -e 83 -c 0 -i 91 -a 0 -x {2.0 0.0 44 ---A--- null} + -t 24.9649769503707 -s 2 -d 3 -p tcp -e 83 -c 2 -i 92 -a 2 -x {2.2 3.0 388 ------- null} - -t 24.9649769503707 -s 2 -d 3 -p tcp -e 83 -c 2 -i 92 -a 2 -x {2.2 3.0 388 ------- null} h -t 24.9649769503707 -s 2 -d 3 -p tcp -e 83 -c 2 -i 92 -a 2 -x {2.2 3.0 -1 ------- null} + -t 25.0000000000001 -s 0 -d 2 -p tcp -e 40 -c 0 -i 93 -a 0 -x {0.0 2.0 44 ------- null} - -t 25.0000000000001 -s 0 -d 2 -p tcp -e 40 -c 0 -i 93 -a 0 -x {0.0 2.0 44 ------- null} h -t 25.0000000000001 -s 0 -d 2 -p tcp -e 40 -c 0 -i 93 -a 0 -x {0.0 2.0 -1 ------- null} r -t 25.0502133333334 -s 0 -d 2 -p tcp -e 40 -c 0 -i 93 -a 0 -x {0.0 2.0 44 ------- null} r -t 25.0768340932278 -s 2 -d 3 -p tcp -e 83 -c 2 -i 92 -a 2 -x {2.2 3.0 388 ------- null} + -t 25.1000000000001 -s 3 -d 2 -p ack -e 40 -c 2 -i 94 -a 2 -x {3.0 2.2 87 ------- null} - -t 25.1000000000001 -s 3 -d 2 -p ack -e 40 -c 2 -i 94 -a 2 -x {3.0 2.2 87 ------- null} h -t 25.1000000000001 -s 3 -d 2 -p ack -e 40 -c 2 -i 94 -a 2 -x {3.0 2.2 -1 ------- null} r -t 25.2057142857144 -s 3 -d 2 -p ack -e 40 -c 2 -i 94 -a 2 -x {3.0 2.2 87 ------- null} + -t 70 -s 1 -d 2 -p tcp -e 40 -c 1 -i 95 -a 1 -x {1.0 2.1 0 ------- null} - -t 70 -s 1 -d 2 -p tcp -e 40 -c 1 -i 95 -a 1 -x {1.0 2.1 0 ------- null} h -t 70 -s 1 -d 2 -p tcp -e 40 -c 1 -i 95 -a 1 -x {1.0 2.1 -1 ------- null} m -t 70 -s 1 -n _o139:0:70 -c purple -h circle v -t 70 sim_annotation 70 2 request from client 1 r -t 70.0557142857143 -s 1 -d 2 -p tcp -e 40 -c 1 -i 95 -a 1 -x {1.0 2.1 0 ------- null} + -t 70.0557142857143 -s 2 -d 1 -p ack -e 40 -c 1 -i 96 -a 1 -x {2.1 1.0 0 ------- null} - -t 70.0557142857143 -s 2 -d 1 -p ack -e 40 -c 1 -i 96 -a 1 -x {2.1 1.0 0 ------- null} h -t 70.0557142857143 -s 2 -d 1 -p ack -e 40 -c 1 -i 96 -a 1 -x {2.1 1.0 -1 ------- null} r -t 70.1114285714286 -s 2 -d 1 -p ack -e 40 -c 1 -i 96 -a 1 -x {2.1 1.0 0 ------- null} + -t 70.1114285714286 -s 1 -d 2 -p tcp -e 40 -c 1 -i 97 -a 1 -x {1.0 2.1 1 ------- null} - -t 70.1114285714286 -s 1 -d 2 -p tcp -e 40 -c 1 -i 97 -a 1 -x {1.0 2.1 1 ------- null} h -t 70.1114285714286 -s 1 -d 2 -p tcp -e 40 -c 1 -i 97 -a 1 -x {1.0 2.1 -1 ------- null} + -t 70.1114285714286 -s 1 -d 2 -p tcp -e 83 -c 1 -i 98 -a 1 -x {1.0 2.1 1 ------- null} - -t 70.1171428571429 -s 1 -d 2 -p tcp -e 83 -c 1 -i 98 -a 1 -x {1.0 2.1 1 ------- null} h -t 70.1171428571429 -s 1 -d 2 -p tcp -e 83 -c 1 -i 98 -a 1 -x {1.0 2.1 -1 ------- null} r -t 70.1671428571429 -s 1 -d 2 -p tcp -e 40 -c 1 -i 97 -a 1 -x {1.0 2.1 1 ------- null} r -t 70.179 -s 1 -d 2 -p tcp -e 83 -c 1 -i 98 -a 1 -x {1.0 2.1 1 ------- null} + -t 70.179 -s 2 -d 1 -p ack -e 83 -c 1 -i 99 -a 1 -x {2.1 1.0 1 ------- null} - -t 70.179 -s 2 -d 1 -p ack -e 83 -c 1 -i 99 -a 1 -x {2.1 1.0 1 ------- null} h -t 70.179 -s 2 -d 1 -p ack -e 83 -c 1 -i 99 -a 1 -x {2.1 1.0 -1 ------- null} r -t 70.2408571428572 -s 2 -d 1 -p ack -e 83 -c 1 -i 99 -a 1 -x {2.1 1.0 1 ------- null} m -t 70.240857142857166 -s 1 -n _o139:0:70 -c purple -h circle -X + -t 70.2408571428572 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 100 -a 100 -x {2.3 1.1 1 ------- null} - -t 70.2408571428572 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 100 -a 100 -x {2.3 1.1 1 ------- null} h -t 70.2408571428572 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 100 -a 100 -x {2.3 1.1 -1 ------- null} + -t 70.3 -s 1 -d 2 -p tcp -e 40 -c 1 -i 101 -a 1 -x {1.0 2.1 44 ------- null} - -t 70.3 -s 1 -d 2 -p tcp -e 40 -c 1 -i 101 -a 1 -x {1.0 2.1 44 ------- null} h -t 70.3 -s 1 -d 2 -p tcp -e 40 -c 1 -i 101 -a 1 -x {1.0 2.1 -1 ------- null} r -t 70.3557142857143 -s 1 -d 2 -p tcp -e 40 -c 1 -i 101 -a 1 -x {1.0 2.1 44 ------- null} r -t 70.4371428571429 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 100 -a 100 -x {2.3 1.1 1 ------- null} + -t 70.4371428571429 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 102 -a 0 -x {1.1 2.3 1 ------- null} - -t 70.4371428571429 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 102 -a 0 -x {1.1 2.3 1 ------- null} h -t 70.4371428571429 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 102 -a 0 -x {1.1 2.3 -1 ------- null} r -t 70.4934285714286 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 102 -a 0 -x {1.1 2.3 1 ------- null} + -t 70.7408571428572 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 103 -a 100 -x {2.3 1.1 2 ------- null} - -t 70.7408571428572 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 103 -a 100 -x {2.3 1.1 2 ------- null} h -t 70.7408571428572 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 103 -a 100 -x {2.3 1.1 -1 ------- null} + -t 70.929 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 104 -a 100 -x {2.3 1.1 3 ------- null} - -t 70.929 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 104 -a 100 -x {2.3 1.1 3 ------- null} h -t 70.929 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 104 -a 100 -x {2.3 1.1 -1 ------- null} r -t 70.9371428571429 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 103 -a 100 -x {2.3 1.1 2 ------- null} + -t 70.9371428571429 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 105 -a 0 -x {1.1 2.3 2 ------- null} - -t 70.9371428571429 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 105 -a 0 -x {1.1 2.3 2 ------- null} h -t 70.9371428571429 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 105 -a 0 -x {1.1 2.3 -1 ------- null} r -t 70.9934285714286 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 105 -a 0 -x {1.1 2.3 2 ------- null} + -t 71.1171428571429 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 106 -a 100 -x {2.3 1.1 4 ------- null} - -t 71.1171428571429 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 106 -a 100 -x {2.3 1.1 4 ------- null} h -t 71.1171428571429 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 106 -a 100 -x {2.3 1.1 -1 ------- null} r -t 71.1252857142857 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 104 -a 100 -x {2.3 1.1 3 ------- null} + -t 71.1252857142857 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 107 -a 0 -x {1.1 2.3 3 ------- null} - -t 71.1252857142857 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 107 -a 0 -x {1.1 2.3 3 ------- null} h -t 71.1252857142857 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 107 -a 0 -x {1.1 2.3 -1 ------- null} r -t 71.1815714285715 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 107 -a 0 -x {1.1 2.3 3 ------- null} + -t 71.234852472996 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 108 -a 101 -x {2.3 1.1 5 ------- null} - -t 71.2634285714286 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 108 -a 101 -x {2.3 1.1 5 ------- null} h -t 71.2634285714286 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 108 -a 101 -x {2.3 1.1 -1 ------- null} r -t 71.3134285714286 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 106 -a 100 -x {2.3 1.1 4 ------- null} + -t 71.3134285714286 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 109 -a 0 -x {1.1 2.3 4 ------- null} - -t 71.3134285714286 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 109 -a 0 -x {1.1 2.3 4 ------- null} h -t 71.3134285714286 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 109 -a 0 -x {1.1 2.3 -1 ------- null} + -t 71.3525620888492 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 110 -a 101 -x {2.3 1.1 6 ------- null} r -t 71.3697142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 109 -a 0 -x {1.1 2.3 4 ------- null} - -t 71.4097142857143 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 110 -a 101 -x {2.3 1.1 6 ------- null} h -t 71.4097142857143 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 110 -a 101 -x {2.3 1.1 -1 ------- null} r -t 71.4597142857143 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 108 -a 101 -x {2.3 1.1 5 ------- null} + -t 71.4597142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 111 -a 0 -x {1.1 2.3 5 ------- null} - -t 71.4597142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 111 -a 0 -x {1.1 2.3 5 ------- null} h -t 71.4597142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 111 -a 0 -x {1.1 2.3 -1 ------- null} + -t 71.4702717047024 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 112 -a 100 -x {2.3 1.1 7 ------- null} r -t 71.516 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 111 -a 0 -x {1.1 2.3 5 ------- null} + -t 71.5520624057126 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 113 -a 101 -x {2.3 1.1 8 ------- null} d -t 71.5520624057126 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 113 -a 101 -x {2.3 1.1 8 ------- null} - -t 71.556 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 112 -a 100 -x {2.3 1.1 7 ------- null} h -t 71.556 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 112 -a 100 -x {2.3 1.1 -1 ------- null} r -t 71.606 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 110 -a 101 -x {2.3 1.1 6 ------- null} + -t 71.606 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 114 -a 0 -x {1.1 2.3 6 ------- null} - -t 71.606 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 114 -a 0 -x {1.1 2.3 6 ------- null} h -t 71.606 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 114 -a 0 -x {1.1 2.3 -1 ------- null} r -t 71.6622857142857 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 114 -a 0 -x {1.1 2.3 6 ------- null} r -t 71.7522857142857 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 112 -a 100 -x {2.3 1.1 7 ------- null} + -t 71.7522857142857 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 115 -a 0 -x {1.1 2.3 7 ------- null} - -t 71.7522857142857 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 115 -a 0 -x {1.1 2.3 7 ------- null} h -t 71.7522857142857 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 115 -a 0 -x {1.1 2.3 -1 ------- null} + -t 71.779545088357 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 116 -a 100 -x {2.3 1.1 9 ------- null} - -t 71.779545088357 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 116 -a 100 -x {2.3 1.1 9 ------- null} h -t 71.779545088357 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 116 -a 100 -x {2.3 1.1 -1 ------- null} r -t 71.8085714285714 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 115 -a 0 -x {1.1 2.3 7 ------- null} r -t 71.9758308026427 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 116 -a 100 -x {2.3 1.1 9 ------- null} + -t 71.9758308026427 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 117 -a 0 -x {1.1 2.3 9 ------- null} - -t 71.9758308026427 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 117 -a 0 -x {1.1 2.3 9 ------- null} h -t 71.9758308026427 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 117 -a 0 -x {1.1 2.3 -1 ------- null} r -t 72.0321165169285 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 117 -a 0 -x {1.1 2.3 9 ------- null} + -t 72.0351502108524 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 118 -a 101 -x {2.3 1.1 10 ------- null} - -t 72.0351502108524 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 118 -a 101 -x {2.3 1.1 10 ------- null} h -t 72.0351502108524 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 118 -a 101 -x {2.3 1.1 -1 ------- null} + -t 72.0990514914762 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 119 -a 102 -x {2.3 1.1 11 ------- null} - -t 72.1814359251381 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 119 -a 102 -x {2.3 1.1 11 ------- null} h -t 72.1814359251381 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 119 -a 102 -x {2.3 1.1 -1 ------- null} r -t 72.2314359251381 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 118 -a 101 -x {2.3 1.1 10 ------- null} + -t 72.2314359251381 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 120 -a 0 -x {1.1 2.3 10 ------- null} - -t 72.2314359251381 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 120 -a 0 -x {1.1 2.3 10 ------- null} h -t 72.2314359251381 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 120 -a 0 -x {1.1 2.3 -1 ------- null} r -t 72.2877216394238 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 120 -a 0 -x {1.1 2.3 10 ------- null} + -t 72.2907553333477 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 121 -a 101 -x {2.3 1.1 12 ------- null} - -t 72.3277216394238 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 121 -a 101 -x {2.3 1.1 12 ------- null} h -t 72.3277216394238 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 121 -a 101 -x {2.3 1.1 -1 ------- null} r -t 72.3777216394238 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 119 -a 102 -x {2.3 1.1 11 ------- null} + -t 72.3777216394238 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 122 -a 0 -x {1.1 2.3 11 ------- null} - -t 72.3777216394238 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 122 -a 0 -x {1.1 2.3 11 ------- null} h -t 72.3777216394238 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 122 -a 0 -x {1.1 2.3 -1 ------- null} + -t 72.4185578945954 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 123 -a 102 -x {2.3 1.1 13 ------- null} r -t 72.4340073537095 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 122 -a 0 -x {1.1 2.3 11 ------- null} - -t 72.4740073537095 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 123 -a 102 -x {2.3 1.1 13 ------- null} h -t 72.4740073537095 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 123 -a 102 -x {2.3 1.1 -1 ------- null} r -t 72.5240073537095 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 121 -a 101 -x {2.3 1.1 12 ------- null} + -t 72.5240073537095 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 124 -a 0 -x {1.1 2.3 12 ------- null} - -t 72.5240073537095 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 124 -a 0 -x {1.1 2.3 12 ------- null} h -t 72.5240073537095 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 124 -a 0 -x {1.1 2.3 -1 ------- null} + -t 72.5463604558431 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 125 -a 100 -x {2.3 1.1 14 ------- null} + -t 72.575229179145 -s 2 -d 3 -p tcp -e 83 -c 2 -i 126 -a 2 -x {2.2 3.0 431 ---A--- null} - -t 72.575229179145 -s 2 -d 3 -p tcp -e 83 -c 2 -i 126 -a 2 -x {2.2 3.0 431 ---A--- null} h -t 72.575229179145 -s 2 -d 3 -p tcp -e 83 -c 2 -i 126 -a 2 -x {2.2 3.0 -1 ---A--- null} r -t 72.5802930679952 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 124 -a 0 -x {1.1 2.3 12 ------- null} - -t 72.6202930679952 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 125 -a 100 -x {2.3 1.1 14 ------- null} h -t 72.6202930679952 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 125 -a 100 -x {2.3 1.1 -1 ------- null} + -t 72.6361249245012 -s 2 -d 1 -p ack -e 83 -c 1 -i 127 -a 1 -x {2.1 1.0 44 ---A--- null} r -t 72.6702930679952 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 123 -a 102 -x {2.3 1.1 13 ------- null} + -t 72.6702930679952 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 128 -a 0 -x {1.1 2.3 13 ------- null} - -t 72.6702930679952 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 128 -a 0 -x {1.1 2.3 13 ------- null} h -t 72.6702930679952 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 128 -a 0 -x {1.1 2.3 -1 ------- null} r -t 72.6870863220022 -s 2 -d 3 -p tcp -e 83 -c 2 -i 126 -a 2 -x {2.2 3.0 431 ---A--- null} + -t 72.6870863220022 -s 3 -d 2 -p rap_data -e 1024 -c 100 -i 129 -a 100 -x {3.1 2.4 1 ------- null} - -t 72.6870863220022 -s 3 -d 2 -p rap_data -e 1024 -c 100 -i 129 -a 100 -x {3.1 2.4 1 ------- null} h -t 72.6870863220022 -s 3 -d 2 -p rap_data -e 1024 -c 100 -i 129 -a 100 -x {3.1 2.4 -1 ------- null} + -t 72.7000000000001 -s 3 -d 2 -p ack -e 40 -c 2 -i 130 -a 2 -x {3.0 2.2 87 ------- null} r -t 72.7265787822809 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 128 -a 0 -x {1.1 2.3 13 ------- null} - -t 72.7665787822809 -s 2 -d 1 -p ack -e 83 -c 1 -i 127 -a 1 -x {2.1 1.0 44 ---A--- null} h -t 72.7665787822809 -s 2 -d 1 -p ack -e 83 -c 1 -i 127 -a 1 -x {2.1 1.0 -1 ---A--- null} r -t 72.8165787822809 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 125 -a 100 -x {2.3 1.1 14 ------- null} + -t 72.8165787822809 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 131 -a 0 -x {1.1 2.3 14 ------- null} - -t 72.8165787822809 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 131 -a 0 -x {1.1 2.3 14 ------- null} h -t 72.8165787822809 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 131 -a 0 -x {1.1 2.3 -1 ------- null} r -t 72.8284359251381 -s 2 -d 1 -p ack -e 83 -c 1 -i 127 -a 1 -x {2.1 1.0 44 ---A--- null} + -t 72.8284359251381 -s 2 -d 3 -p tcp -e 83 -c 2 -i 132 -a 2 -x {2.2 3.0 474 ------- null} - -t 72.8284359251381 -s 2 -d 3 -p tcp -e 83 -c 2 -i 132 -a 2 -x {2.2 3.0 474 ------- null} h -t 72.8284359251381 -s 2 -d 3 -p tcp -e 83 -c 2 -i 132 -a 2 -x {2.2 3.0 -1 ------- null} - -t 72.8333720362879 -s 3 -d 2 -p ack -e 40 -c 2 -i 130 -a 2 -x {3.0 2.2 87 ------- null} h -t 72.8333720362879 -s 3 -d 2 -p ack -e 40 -c 2 -i 130 -a 2 -x {3.0 2.2 -1 ------- null} r -t 72.8728644965666 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 131 -a 0 -x {1.1 2.3 14 ------- null} + -t 72.8999999999998 -s 1 -d 2 -p tcp -e 40 -c 1 -i 133 -a 1 -x {1.0 2.1 44 ------- null} - -t 72.8999999999998 -s 1 -d 2 -p tcp -e 40 -c 1 -i 133 -a 1 -x {1.0 2.1 44 ------- null} h -t 72.8999999999998 -s 1 -d 2 -p tcp -e 40 -c 1 -i 133 -a 1 -x {1.0 2.1 -1 ------- null} r -t 72.9333720362879 -s 3 -d 2 -p rap_data -e 1024 -c 100 -i 129 -a 100 -x {3.1 2.4 1 ------- null} + -t 72.9333720362879 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 134 -a 0 -x {2.4 3.1 1 ------- null} - -t 72.9333720362879 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 134 -a 0 -x {2.4 3.1 1 ------- null} h -t 72.9333720362879 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 134 -a 0 -x {2.4 3.1 -1 ------- null} + -t 72.9334 -s 2 -d 4 -p dummy -e 1024 -c 100 -i 0 -a 100 r -t 72.9390863220022 -s 3 -d 2 -p ack -e 40 -c 2 -i 130 -a 2 -x {3.0 2.2 87 ------- null} r -t 72.9402930679952 -s 2 -d 3 -p tcp -e 83 -c 2 -i 132 -a 2 -x {2.2 3.0 474 ------- null} r -t 72.9557142857141 -s 1 -d 2 -p tcp -e 40 -c 1 -i 133 -a 1 -x {1.0 2.1 44 ------- null} + -t 73.0000000000001 -s 3 -d 2 -p ack -e 40 -c 2 -i 135 -a 2 -x {3.0 2.2 87 ------- null} - -t 73.0000000000001 -s 3 -d 2 -p ack -e 40 -c 2 -i 135 -a 2 -x {3.0 2.2 87 ------- null} h -t 73.0000000000001 -s 3 -d 2 -p ack -e 40 -c 2 -i 135 -a 2 -x {3.0 2.2 -1 ------- null} r -t 73.0396577505736 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 134 -a 0 -x {2.4 3.1 1 ------- null} r -t 73.1057142857144 -s 3 -d 2 -p ack -e 40 -c 2 -i 135 -a 2 -x {3.0 2.2 87 ------- null} + -t 120 -s 1 -d 2 -p tcp -e 83 -c 1 -i 136 -a 1 -x {1.0 2.1 44 ---A--- null} - -t 120 -s 1 -d 2 -p tcp -e 83 -c 1 -i 136 -a 1 -x {1.0 2.1 44 ---A--- null} h -t 120 -s 1 -d 2 -p tcp -e 83 -c 1 -i 136 -a 1 -x {1.0 2.1 -1 ---A--- null} m -t 120 -s 1 -n _o139:0:120 -c purple -h circle v -t 120 sim_annotation 120 3 request from client 1 r -t 120.061857142857 -s 1 -d 2 -p tcp -e 83 -c 1 -i 136 -a 1 -x {1.0 2.1 44 ---A--- null} + -t 120.061857142857 -s 2 -d 1 -p ack -e 83 -c 1 -i 137 -a 1 -x {2.1 1.0 87 ---A--- null} - -t 120.061857142857 -s 2 -d 1 -p ack -e 83 -c 1 -i 137 -a 1 -x {2.1 1.0 87 ---A--- null} h -t 120.061857142857 -s 2 -d 1 -p ack -e 83 -c 1 -i 137 -a 1 -x {2.1 1.0 -1 ---A--- null} r -t 120.123714285714 -s 2 -d 1 -p ack -e 83 -c 1 -i 137 -a 1 -x {2.1 1.0 87 ---A--- null} m -t 120.1237142857143 -s 1 -n _o139:0:120 -c purple -h circle -X + -t 120.123714285714 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 138 -a 100 -x {2.3 1.1 1 ------- null} - -t 120.123714285714 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 138 -a 100 -x {2.3 1.1 1 ------- null} h -t 120.123714285714 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 138 -a 100 -x {2.3 1.1 -1 ------- null} + -t 120.199999999997 -s 1 -d 2 -p tcp -e 40 -c 1 -i 139 -a 1 -x {1.0 2.1 87 ------- null} - -t 120.199999999997 -s 1 -d 2 -p tcp -e 40 -c 1 -i 139 -a 1 -x {1.0 2.1 87 ------- null} h -t 120.199999999997 -s 1 -d 2 -p tcp -e 40 -c 1 -i 139 -a 1 -x {1.0 2.1 -1 ------- null} r -t 120.255714285711 -s 1 -d 2 -p tcp -e 40 -c 1 -i 139 -a 1 -x {1.0 2.1 87 ------- null} r -t 120.32 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 138 -a 100 -x {2.3 1.1 1 ------- null} + -t 120.32 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 140 -a 0 -x {1.1 2.3 1 ------- null} - -t 120.32 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 140 -a 0 -x {1.1 2.3 1 ------- null} h -t 120.32 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 140 -a 0 -x {1.1 2.3 -1 ------- null} r -t 120.376285714286 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 140 -a 0 -x {1.1 2.3 1 ------- null} + -t 120.623714285714 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 141 -a 100 -x {2.3 1.1 2 ------- null} - -t 120.623714285714 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 141 -a 100 -x {2.3 1.1 2 ------- null} h -t 120.623714285714 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 141 -a 100 -x {2.3 1.1 -1 ------- null} + -t 120.811857142857 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 142 -a 100 -x {2.3 1.1 3 ------- null} - -t 120.811857142857 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 142 -a 100 -x {2.3 1.1 3 ------- null} h -t 120.811857142857 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 142 -a 100 -x {2.3 1.1 -1 ------- null} r -t 120.82 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 141 -a 100 -x {2.3 1.1 2 ------- null} + -t 120.82 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 143 -a 0 -x {1.1 2.3 2 ------- null} - -t 120.82 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 143 -a 0 -x {1.1 2.3 2 ------- null} h -t 120.82 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 143 -a 0 -x {1.1 2.3 -1 ------- null} r -t 120.876285714286 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 143 -a 0 -x {1.1 2.3 2 ------- null} + -t 121 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 144 -a 100 -x {2.3 1.1 4 ------- null} - -t 121 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 144 -a 100 -x {2.3 1.1 4 ------- null} h -t 121 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 144 -a 100 -x {2.3 1.1 -1 ------- null} r -t 121.008142857143 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 142 -a 100 -x {2.3 1.1 3 ------- null} + -t 121.008142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 145 -a 0 -x {1.1 2.3 3 ------- null} - -t 121.008142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 145 -a 0 -x {1.1 2.3 3 ------- null} h -t 121.008142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 145 -a 0 -x {1.1 2.3 -1 ------- null} r -t 121.064428571429 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 145 -a 0 -x {1.1 2.3 3 ------- null} + -t 121.188142857143 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 146 -a 101 -x {2.3 1.1 5 ------- null} - -t 121.188142857143 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 146 -a 101 -x {2.3 1.1 5 ------- null} h -t 121.188142857143 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 146 -a 101 -x {2.3 1.1 -1 ------- null} r -t 121.196285714286 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 144 -a 100 -x {2.3 1.1 4 ------- null} + -t 121.196285714286 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 147 -a 0 -x {1.1 2.3 4 ------- null} - -t 121.196285714286 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 147 -a 0 -x {1.1 2.3 4 ------- null} h -t 121.196285714286 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 147 -a 0 -x {1.1 2.3 -1 ------- null} r -t 121.252571428571 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 147 -a 0 -x {1.1 2.3 4 ------- null} + -t 121.305852472996 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 148 -a 101 -x {2.3 1.1 6 ------- null} - -t 121.334428571429 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 148 -a 101 -x {2.3 1.1 6 ------- null} h -t 121.334428571429 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 148 -a 101 -x {2.3 1.1 -1 ------- null} r -t 121.384428571429 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 146 -a 101 -x {2.3 1.1 5 ------- null} + -t 121.384428571429 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 149 -a 0 -x {1.1 2.3 5 ------- null} - -t 121.384428571429 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 149 -a 0 -x {1.1 2.3 5 ------- null} h -t 121.384428571429 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 149 -a 0 -x {1.1 2.3 -1 ------- null} + -t 121.423562088849 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 150 -a 100 -x {2.3 1.1 7 ------- null} r -t 121.440714285714 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 149 -a 0 -x {1.1 2.3 5 ------- null} - -t 121.480714285714 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 150 -a 100 -x {2.3 1.1 7 ------- null} h -t 121.480714285714 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 150 -a 100 -x {2.3 1.1 -1 ------- null} r -t 121.530714285714 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 148 -a 101 -x {2.3 1.1 6 ------- null} + -t 121.530714285714 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 151 -a 0 -x {1.1 2.3 6 ------- null} - -t 121.530714285714 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 151 -a 0 -x {1.1 2.3 6 ------- null} h -t 121.530714285714 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 151 -a 0 -x {1.1 2.3 -1 ------- null} r -t 121.587 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 151 -a 0 -x {1.1 2.3 6 ------- null} + -t 121.58714349087 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 152 -a 101 -x {2.3 1.1 8 ------- null} - -t 121.627 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 152 -a 101 -x {2.3 1.1 8 ------- null} h -t 121.627 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 152 -a 101 -x {2.3 1.1 -1 ------- null} + -t 121.66893419188 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 153 -a 100 -x {2.3 1.1 9 ------- null} r -t 121.677 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 150 -a 100 -x {2.3 1.1 7 ------- null} + -t 121.677 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 154 -a 0 -x {1.1 2.3 7 ------- null} - -t 121.677 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 154 -a 0 -x {1.1 2.3 7 ------- null} h -t 121.677 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 154 -a 0 -x {1.1 2.3 -1 ------- null} r -t 121.733285714286 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 154 -a 0 -x {1.1 2.3 7 ------- null} - -t 121.773285714286 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 153 -a 100 -x {2.3 1.1 9 ------- null} h -t 121.773285714286 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 153 -a 100 -x {2.3 1.1 -1 ------- null} r -t 121.823285714286 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 152 -a 101 -x {2.3 1.1 8 ------- null} + -t 121.823285714286 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 155 -a 0 -x {1.1 2.3 8 ------- null} - -t 121.823285714286 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 155 -a 0 -x {1.1 2.3 8 ------- null} h -t 121.823285714286 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 155 -a 0 -x {1.1 2.3 -1 ------- null} r -t 121.879571428571 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 155 -a 0 -x {1.1 2.3 8 ------- null} + -t 121.914306294911 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 156 -a 101 -x {2.3 1.1 10 ------- null} - -t 121.919571428571 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 156 -a 101 -x {2.3 1.1 10 ------- null} h -t 121.919571428571 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 156 -a 101 -x {2.3 1.1 -1 ------- null} r -t 121.969571428571 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 153 -a 100 -x {2.3 1.1 9 ------- null} + -t 121.969571428571 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 157 -a 0 -x {1.1 2.3 9 ------- null} - -t 121.969571428571 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 157 -a 0 -x {1.1 2.3 9 ------- null} h -t 121.969571428571 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 157 -a 0 -x {1.1 2.3 -1 ------- null} + -t 121.978114619977 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 158 -a 102 -x {2.3 1.1 11 ------- null} r -t 122.025857142857 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 157 -a 0 -x {1.1 2.3 9 ------- null} + -t 122.041922945044 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 159 -a 101 -x {2.3 1.1 12 ------- null} d -t 122.041922945044 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 159 -a 101 -x {2.3 1.1 12 ------- null} - -t 122.065857142857 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 158 -a 102 -x {2.3 1.1 11 ------- null} h -t 122.065857142857 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 158 -a 102 -x {2.3 1.1 -1 ------- null} + -t 122.10573127011 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 160 -a 102 -x {2.3 1.1 13 ------- null} r -t 122.115857142857 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 156 -a 101 -x {2.3 1.1 10 ------- null} + -t 122.115857142857 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 161 -a 0 -x {1.1 2.3 10 ------- null} - -t 122.115857142857 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 161 -a 0 -x {1.1 2.3 10 ------- null} h -t 122.115857142857 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 161 -a 0 -x {1.1 2.3 -1 ------- null} + -t 122.169539595176 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 162 -a 100 -x {2.3 1.1 14 ------- null} d -t 122.169539595176 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 162 -a 100 -x {2.3 1.1 14 ------- null} r -t 122.172142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 161 -a 0 -x {1.1 2.3 10 ------- null} - -t 122.212142857143 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 160 -a 102 -x {2.3 1.1 13 ------- null} h -t 122.212142857143 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 160 -a 102 -x {2.3 1.1 -1 ------- null} + -t 122.2228525433 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 163 -a 100 -x {2.3 1.1 15 ------- null} r -t 122.262142857143 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 158 -a 102 -x {2.3 1.1 11 ------- null} + -t 122.262142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 164 -a 0 -x {1.1 2.3 11 ------- null} - -t 122.262142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 164 -a 0 -x {1.1 2.3 11 ------- null} h -t 122.262142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 164 -a 0 -x {1.1 2.3 -1 ------- null} + -t 122.276165491424 -s 2 -d 1 -p ack -e 83 -c 1 -i 165 -a 1 -x {2.1 1.0 130 ---A--- null} d -t 122.276165491424 -s 2 -d 1 -p ack -e 83 -c 1 -i 165 -a 1 -x {2.1 1.0 130 ---A--- null} r -t 122.318428571429 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 164 -a 0 -x {1.1 2.3 11 ------- null} - -t 122.358428571429 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 163 -a 100 -x {2.3 1.1 15 ------- null} h -t 122.358428571429 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 163 -a 100 -x {2.3 1.1 -1 ------- null} r -t 122.408428571429 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 160 -a 102 -x {2.3 1.1 13 ------- null} + -t 122.408428571429 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 166 -a 0 -x {1.1 2.3 13 ------- null} - -t 122.408428571429 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 166 -a 0 -x {1.1 2.3 13 ------- null} h -t 122.408428571429 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 166 -a 0 -x {1.1 2.3 -1 ------- null} r -t 122.464714285714 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 166 -a 0 -x {1.1 2.3 13 ------- null} r -t 122.554714285714 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 163 -a 100 -x {2.3 1.1 15 ------- null} + -t 122.554714285714 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 167 -a 0 -x {1.1 2.3 15 ------- null} - -t 122.554714285714 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 167 -a 0 -x {1.1 2.3 15 ------- null} h -t 122.554714285714 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 167 -a 0 -x {1.1 2.3 -1 ------- null} r -t 122.611 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 167 -a 0 -x {1.1 2.3 15 ------- null} + -t 122.772764319185 -s 2 -d 3 -p tcp -e 83 -c 2 -i 168 -a 2 -x {2.2 3.0 517 ---A--- null} - -t 122.772764319185 -s 2 -d 3 -p tcp -e 83 -c 2 -i 168 -a 2 -x {2.2 3.0 517 ---A--- null} h -t 122.772764319185 -s 2 -d 3 -p tcp -e 83 -c 2 -i 168 -a 2 -x {2.2 3.0 -1 ---A--- null} + -t 122.772764319185 -s 2 -d 3 -p tcp -e 83 -c 2 -i 169 -a 2 -x {2.2 3.0 560 ------- null} - -t 122.784621462042 -s 2 -d 3 -p tcp -e 83 -c 2 -i 169 -a 2 -x {2.2 3.0 560 ------- null} h -t 122.784621462042 -s 2 -d 3 -p tcp -e 83 -c 2 -i 169 -a 2 -x {2.2 3.0 -1 ------- null} + -t 122.876165491424 -s 2 -d 1 -p ack -e 83 -c 1 -i 170 -a 1 -x {2.1 1.0 130 ---A--- null} - -t 122.876165491424 -s 2 -d 1 -p ack -e 83 -c 1 -i 170 -a 1 -x {2.1 1.0 130 ---A--- null} h -t 122.876165491424 -s 2 -d 1 -p ack -e 83 -c 1 -i 170 -a 1 -x {2.1 1.0 -1 ---A--- null} r -t 122.884621462042 -s 2 -d 3 -p tcp -e 83 -c 2 -i 168 -a 2 -x {2.2 3.0 517 ---A--- null} + -t 122.884621462042 -s 3 -d 2 -p rap_data -e 1024 -c 102 -i 171 -a 102 -x {3.1 2.4 1 ------- null} - -t 122.884621462042 -s 3 -d 2 -p rap_data -e 1024 -c 102 -i 171 -a 102 -x {3.1 2.4 1 ------- null} h -t 122.884621462042 -s 3 -d 2 -p rap_data -e 1024 -c 102 -i 171 -a 102 -x {3.1 2.4 -1 ------- null} r -t 122.896478604899 -s 2 -d 3 -p tcp -e 83 -c 2 -i 169 -a 2 -x {2.2 3.0 560 ------- null} + -t 122.899621462042 -s 3 -d 2 -p rap_data -e 1024 -c 101 -i 172 -a 101 -x {3.1 2.4 2 ------- null} + -t 122.899999999997 -s 3 -d 2 -p ack -e 40 -c 2 -i 173 -a 2 -x {3.0 2.2 87 ------- null} d -t 122.899999999997 -s 3 -d 2 -p ack -e 40 -c 2 -i 173 -a 2 -x {3.0 2.2 87 ------- null} r -t 122.938022634281 -s 2 -d 1 -p ack -e 83 -c 1 -i 170 -a 1 -x {2.1 1.0 130 ---A--- null} + -t 122.938022634281 -s 2 -d 3 -p tcp -e 83 -c 2 -i 174 -a 2 -x {2.2 3.0 603 ------- null} - -t 122.938022634281 -s 2 -d 3 -p tcp -e 83 -c 2 -i 174 -a 2 -x {2.2 3.0 603 ------- null} h -t 122.938022634281 -s 2 -d 3 -p tcp -e 83 -c 2 -i 174 -a 2 -x {2.2 3.0 -1 ------- null} + -t 122.999999999997 -s 1 -d 2 -p tcp -e 40 -c 1 -i 175 -a 1 -x {1.0 2.1 87 ------- null} - -t 122.999999999997 -s 1 -d 2 -p tcp -e 40 -c 1 -i 175 -a 1 -x {1.0 2.1 87 ------- null} h -t 122.999999999997 -s 1 -d 2 -p tcp -e 40 -c 1 -i 175 -a 1 -x {1.0 2.1 -1 ------- null} - -t 123.030907176328 -s 3 -d 2 -p rap_data -e 1024 -c 101 -i 172 -a 101 -x {3.1 2.4 2 ------- null} h -t 123.030907176328 -s 3 -d 2 -p rap_data -e 1024 -c 101 -i 172 -a 101 -x {3.1 2.4 -1 ------- null} r -t 123.049879777138 -s 2 -d 3 -p tcp -e 83 -c 2 -i 174 -a 2 -x {2.2 3.0 603 ------- null} r -t 123.055714285711 -s 1 -d 2 -p tcp -e 40 -c 1 -i 175 -a 1 -x {1.0 2.1 87 ------- null} + -t 123.099999999997 -s 3 -d 2 -p ack -e 40 -c 2 -i 176 -a 2 -x {3.0 2.2 87 ------- null} r -t 123.130907176328 -s 3 -d 2 -p rap_data -e 1024 -c 102 -i 171 -a 102 -x {3.1 2.4 1 ------- null} - -t 123.177192890613 -s 3 -d 2 -p ack -e 40 -c 2 -i 176 -a 2 -x {3.0 2.2 87 ------- null} h -t 123.177192890613 -s 3 -d 2 -p ack -e 40 -c 2 -i 176 -a 2 -x {3.0 2.2 -1 ------- null} r -t 123.277192890613 -s 3 -d 2 -p rap_data -e 1024 -c 101 -i 172 -a 101 -x {3.1 2.4 2 ------- null} r -t 123.282907176328 -s 3 -d 2 -p ack -e 40 -c 2 -i 176 -a 2 -x {3.0 2.2 87 ------- null} + -t 170 -s 1 -d 2 -p tcp -e 83 -c 1 -i 177 -a 1 -x {1.0 2.1 87 ---A--- null} - -t 170 -s 1 -d 2 -p tcp -e 83 -c 1 -i 177 -a 1 -x {1.0 2.1 87 ---A--- null} h -t 170 -s 1 -d 2 -p tcp -e 83 -c 1 -i 177 -a 1 -x {1.0 2.1 -1 ---A--- null} m -t 170 -s 1 -n _o139:0:170 -c purple -h circle v -t 170 sim_annotation 170 4 request from client 1 r -t 170.061857142857 -s 1 -d 2 -p tcp -e 83 -c 1 -i 177 -a 1 -x {1.0 2.1 87 ---A--- null} + -t 170.061857142857 -s 2 -d 1 -p ack -e 83 -c 1 -i 178 -a 1 -x {2.1 1.0 173 ---A--- null} - -t 170.061857142857 -s 2 -d 1 -p ack -e 83 -c 1 -i 178 -a 1 -x {2.1 1.0 173 ---A--- null} h -t 170.061857142857 -s 2 -d 1 -p ack -e 83 -c 1 -i 178 -a 1 -x {2.1 1.0 -1 ---A--- null} r -t 170.123714285714 -s 2 -d 1 -p ack -e 83 -c 1 -i 178 -a 1 -x {2.1 1.0 173 ---A--- null} m -t 170.1237142857143 -s 1 -n _o139:0:170 -c purple -h circle -X + -t 170.123714285714 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 179 -a 100 -x {2.3 1.1 1 ------- null} - -t 170.123714285714 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 179 -a 100 -x {2.3 1.1 1 ------- null} h -t 170.123714285714 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 179 -a 100 -x {2.3 1.1 -1 ------- null} + -t 170.199999999994 -s 1 -d 2 -p tcp -e 40 -c 1 -i 180 -a 1 -x {1.0 2.1 130 ------- null} - -t 170.199999999994 -s 1 -d 2 -p tcp -e 40 -c 1 -i 180 -a 1 -x {1.0 2.1 130 ------- null} h -t 170.199999999994 -s 1 -d 2 -p tcp -e 40 -c 1 -i 180 -a 1 -x {1.0 2.1 -1 ------- null} r -t 170.255714285709 -s 1 -d 2 -p tcp -e 40 -c 1 -i 180 -a 1 -x {1.0 2.1 130 ------- null} r -t 170.32 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 179 -a 100 -x {2.3 1.1 1 ------- null} + -t 170.32 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 181 -a 0 -x {1.1 2.3 1 ------- null} - -t 170.32 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 181 -a 0 -x {1.1 2.3 1 ------- null} h -t 170.32 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 181 -a 0 -x {1.1 2.3 -1 ------- null} r -t 170.376285714286 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 181 -a 0 -x {1.1 2.3 1 ------- null} + -t 170.623714285714 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 182 -a 100 -x {2.3 1.1 2 ------- null} - -t 170.623714285714 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 182 -a 100 -x {2.3 1.1 2 ------- null} h -t 170.623714285714 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 182 -a 100 -x {2.3 1.1 -1 ------- null} + -t 170.811857142857 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 183 -a 100 -x {2.3 1.1 3 ------- null} - -t 170.811857142857 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 183 -a 100 -x {2.3 1.1 3 ------- null} h -t 170.811857142857 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 183 -a 100 -x {2.3 1.1 -1 ------- null} r -t 170.82 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 182 -a 100 -x {2.3 1.1 2 ------- null} + -t 170.82 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 184 -a 0 -x {1.1 2.3 2 ------- null} - -t 170.82 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 184 -a 0 -x {1.1 2.3 2 ------- null} h -t 170.82 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 184 -a 0 -x {1.1 2.3 -1 ------- null} r -t 170.876285714286 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 184 -a 0 -x {1.1 2.3 2 ------- null} + -t 171 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 185 -a 100 -x {2.3 1.1 4 ------- null} - -t 171 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 185 -a 100 -x {2.3 1.1 4 ------- null} h -t 171 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 185 -a 100 -x {2.3 1.1 -1 ------- null} r -t 171.008142857143 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 183 -a 100 -x {2.3 1.1 3 ------- null} + -t 171.008142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 186 -a 0 -x {1.1 2.3 3 ------- null} - -t 171.008142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 186 -a 0 -x {1.1 2.3 3 ------- null} h -t 171.008142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 186 -a 0 -x {1.1 2.3 -1 ------- null} r -t 171.064428571429 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 186 -a 0 -x {1.1 2.3 3 ------- null} + -t 171.117709615853 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 187 -a 101 -x {2.3 1.1 5 ------- null} - -t 171.146285714286 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 187 -a 101 -x {2.3 1.1 5 ------- null} h -t 171.146285714286 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 187 -a 101 -x {2.3 1.1 -1 ------- null} r -t 171.196285714286 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 185 -a 100 -x {2.3 1.1 4 ------- null} + -t 171.196285714286 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 188 -a 0 -x {1.1 2.3 4 ------- null} - -t 171.196285714286 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 188 -a 0 -x {1.1 2.3 4 ------- null} h -t 171.196285714286 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 188 -a 0 -x {1.1 2.3 -1 ------- null} + -t 171.235419231706 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 189 -a 101 -x {2.3 1.1 6 ------- null} r -t 171.252571428571 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 188 -a 0 -x {1.1 2.3 4 ------- null} - -t 171.292571428571 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 189 -a 101 -x {2.3 1.1 6 ------- null} h -t 171.292571428571 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 189 -a 101 -x {2.3 1.1 -1 ------- null} r -t 171.342571428571 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 187 -a 101 -x {2.3 1.1 5 ------- null} + -t 171.342571428571 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 190 -a 0 -x {1.1 2.3 5 ------- null} - -t 171.342571428571 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 190 -a 0 -x {1.1 2.3 5 ------- null} h -t 171.342571428571 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 190 -a 0 -x {1.1 2.3 -1 ------- null} + -t 171.353128847559 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 191 -a 100 -x {2.3 1.1 7 ------- null} r -t 171.398857142857 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 190 -a 0 -x {1.1 2.3 5 ------- null} + -t 171.43491954857 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 192 -a 101 -x {2.3 1.1 8 ------- null} d -t 171.43491954857 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 192 -a 101 -x {2.3 1.1 8 ------- null} - -t 171.438857142857 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 191 -a 100 -x {2.3 1.1 7 ------- null} h -t 171.438857142857 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 191 -a 100 -x {2.3 1.1 -1 ------- null} r -t 171.488857142857 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 189 -a 101 -x {2.3 1.1 6 ------- null} + -t 171.488857142857 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 193 -a 0 -x {1.1 2.3 6 ------- null} - -t 171.488857142857 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 193 -a 0 -x {1.1 2.3 6 ------- null} h -t 171.488857142857 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 193 -a 0 -x {1.1 2.3 -1 ------- null} r -t 171.545142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 193 -a 0 -x {1.1 2.3 6 ------- null} + -t 171.59850095059 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 194 -a 100 -x {2.3 1.1 9 ------- null} - -t 171.59850095059 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 194 -a 100 -x {2.3 1.1 9 ------- null} h -t 171.59850095059 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 194 -a 100 -x {2.3 1.1 -1 ------- null} r -t 171.635142857143 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 191 -a 100 -x {2.3 1.1 7 ------- null} + -t 171.635142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 195 -a 0 -x {1.1 2.3 7 ------- null} - -t 171.635142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 195 -a 0 -x {1.1 2.3 7 ------- null} h -t 171.635142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 195 -a 0 -x {1.1 2.3 -1 ------- null} r -t 171.691428571429 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 195 -a 0 -x {1.1 2.3 7 ------- null} r -t 171.794786664876 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 194 -a 100 -x {2.3 1.1 9 ------- null} + -t 171.794786664876 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 196 -a 0 -x {1.1 2.3 9 ------- null} - -t 171.794786664876 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 196 -a 0 -x {1.1 2.3 9 ------- null} h -t 171.794786664876 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 196 -a 0 -x {1.1 2.3 -1 ------- null} r -t 171.851072379162 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 196 -a 0 -x {1.1 2.3 9 ------- null} + -t 171.918007353709 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 197 -a 101 -x {2.3 1.1 10 ------- null} - -t 171.918007353709 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 197 -a 101 -x {2.3 1.1 10 ------- null} h -t 171.918007353709 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 197 -a 101 -x {2.3 1.1 -1 ------- null} + -t 171.981908634333 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 198 -a 102 -x {2.3 1.1 11 ------- null} - -t 172.064293067995 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 198 -a 102 -x {2.3 1.1 11 ------- null} h -t 172.064293067995 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 198 -a 102 -x {2.3 1.1 -1 ------- null} r -t 172.114293067995 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 197 -a 101 -x {2.3 1.1 10 ------- null} + -t 172.114293067995 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 199 -a 0 -x {1.1 2.3 10 ------- null} - -t 172.114293067995 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 199 -a 0 -x {1.1 2.3 10 ------- null} h -t 172.114293067995 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 199 -a 0 -x {1.1 2.3 -1 ------- null} r -t 172.170578782281 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 199 -a 0 -x {1.1 2.3 10 ------- null} + -t 172.173612476205 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 200 -a 101 -x {2.3 1.1 12 ------- null} - -t 172.210578782281 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 200 -a 101 -x {2.3 1.1 12 ------- null} h -t 172.210578782281 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 200 -a 101 -x {2.3 1.1 -1 ------- null} r -t 172.260578782281 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 198 -a 102 -x {2.3 1.1 11 ------- null} + -t 172.260578782281 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 201 -a 0 -x {1.1 2.3 11 ------- null} - -t 172.260578782281 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 201 -a 0 -x {1.1 2.3 11 ------- null} h -t 172.260578782281 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 201 -a 0 -x {1.1 2.3 -1 ------- null} + -t 172.301415037453 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 202 -a 102 -x {2.3 1.1 13 ------- null} r -t 172.316864496567 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 201 -a 0 -x {1.1 2.3 11 ------- null} - -t 172.356864496567 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 202 -a 102 -x {2.3 1.1 13 ------- null} h -t 172.356864496567 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 202 -a 102 -x {2.3 1.1 -1 ------- null} r -t 172.406864496567 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 200 -a 101 -x {2.3 1.1 12 ------- null} + -t 172.406864496567 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 203 -a 0 -x {1.1 2.3 12 ------- null} - -t 172.406864496567 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 203 -a 0 -x {1.1 2.3 12 ------- null} h -t 172.406864496567 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 203 -a 0 -x {1.1 2.3 -1 ------- null} + -t 172.4292175987 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 204 -a 100 -x {2.3 1.1 14 ------- null} r -t 172.463150210852 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 203 -a 0 -x {1.1 2.3 12 ------- null} - -t 172.503150210852 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 204 -a 100 -x {2.3 1.1 14 ------- null} h -t 172.503150210852 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 204 -a 100 -x {2.3 1.1 -1 ------- null} + -t 172.518982067358 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 205 -a 100 -x {2.3 1.1 15 ------- null} r -t 172.553150210852 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 202 -a 102 -x {2.3 1.1 13 ------- null} + -t 172.553150210852 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 206 -a 0 -x {1.1 2.3 13 ------- null} - -t 172.553150210852 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 206 -a 0 -x {1.1 2.3 13 ------- null} h -t 172.553150210852 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 206 -a 0 -x {1.1 2.3 -1 ------- null} + -t 172.608746536016 -s 2 -d 1 -p ack -e 83 -c 1 -i 207 -a 1 -x {2.1 1.0 216 ---A--- null} d -t 172.608746536016 -s 2 -d 1 -p ack -e 83 -c 1 -i 207 -a 1 -x {2.1 1.0 216 ---A--- null} r -t 172.609435925138 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 206 -a 0 -x {1.1 2.3 13 ------- null} - -t 172.649435925138 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 205 -a 100 -x {2.3 1.1 15 ------- null} h -t 172.649435925138 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 205 -a 100 -x {2.3 1.1 -1 ------- null} r -t 172.699435925138 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 204 -a 100 -x {2.3 1.1 14 ------- null} + -t 172.699435925138 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 208 -a 0 -x {1.1 2.3 14 ------- null} - -t 172.699435925138 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 208 -a 0 -x {1.1 2.3 14 ------- null} h -t 172.699435925138 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 208 -a 0 -x {1.1 2.3 -1 ------- null} r -t 172.755721639424 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 208 -a 0 -x {1.1 2.3 14 ------- null} r -t 172.845721639424 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 205 -a 100 -x {2.3 1.1 15 ------- null} + -t 172.845721639424 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 209 -a 0 -x {1.1 2.3 15 ------- null} - -t 172.845721639424 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 209 -a 0 -x {1.1 2.3 15 ------- null} h -t 172.845721639424 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 209 -a 0 -x {1.1 2.3 -1 ------- null} r -t 172.902007353709 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 209 -a 0 -x {1.1 2.3 15 ------- null} + -t 173.045811639552 -s 2 -d 3 -p tcp -e 83 -c 2 -i 210 -a 2 -x {2.2 3.0 646 ---A--- null} - -t 173.045811639552 -s 2 -d 3 -p tcp -e 83 -c 2 -i 210 -a 2 -x {2.2 3.0 646 ---A--- null} h -t 173.045811639552 -s 2 -d 3 -p tcp -e 83 -c 2 -i 210 -a 2 -x {2.2 3.0 -1 ---A--- null} + -t 173.045811639552 -s 2 -d 3 -p tcp -e 83 -c 2 -i 211 -a 2 -x {2.2 3.0 689 ------- null} - -t 173.057668782409 -s 2 -d 3 -p tcp -e 83 -c 2 -i 211 -a 2 -x {2.2 3.0 689 ------- null} h -t 173.057668782409 -s 2 -d 3 -p tcp -e 83 -c 2 -i 211 -a 2 -x {2.2 3.0 -1 ------- null} r -t 173.157668782409 -s 2 -d 3 -p tcp -e 83 -c 2 -i 210 -a 2 -x {2.2 3.0 646 ---A--- null} + -t 173.157668782409 -s 3 -d 2 -p rap_data -e 1024 -c 102 -i 212 -a 102 -x {3.1 2.4 1 ------- null} - -t 173.157668782409 -s 3 -d 2 -p rap_data -e 1024 -c 102 -i 212 -a 102 -x {3.1 2.4 1 ------- null} h -t 173.157668782409 -s 3 -d 2 -p rap_data -e 1024 -c 102 -i 212 -a 102 -x {3.1 2.4 -1 ------- null} r -t 173.169525925266 -s 2 -d 3 -p tcp -e 83 -c 2 -i 211 -a 2 -x {2.2 3.0 689 ------- null} + -t 173.172668782409 -s 3 -d 2 -p rap_data -e 1024 -c 101 -i 213 -a 101 -x {3.1 2.4 2 ------- null} + -t 173.199999999994 -s 3 -d 2 -p ack -e 40 -c 2 -i 214 -a 2 -x {3.0 2.2 87 ------- null} d -t 173.199999999994 -s 3 -d 2 -p ack -e 40 -c 2 -i 214 -a 2 -x {3.0 2.2 87 ------- null} + -t 173.208746536016 -s 2 -d 1 -p ack -e 83 -c 1 -i 215 -a 1 -x {2.1 1.0 216 ---A--- null} - -t 173.208746536016 -s 2 -d 1 -p ack -e 83 -c 1 -i 215 -a 1 -x {2.1 1.0 216 ---A--- null} h -t 173.208746536016 -s 2 -d 1 -p ack -e 83 -c 1 -i 215 -a 1 -x {2.1 1.0 -1 ---A--- null} r -t 173.270603678874 -s 2 -d 1 -p ack -e 83 -c 1 -i 215 -a 1 -x {2.1 1.0 216 ---A--- null} + -t 173.270603678874 -s 2 -d 3 -p tcp -e 83 -c 2 -i 216 -a 2 -x {2.2 3.0 732 ------- null} - -t 173.270603678874 -s 2 -d 3 -p tcp -e 83 -c 2 -i 216 -a 2 -x {2.2 3.0 732 ------- null} h -t 173.270603678874 -s 2 -d 3 -p tcp -e 83 -c 2 -i 216 -a 2 -x {2.2 3.0 -1 ------- null} + -t 173.299999999994 -s 1 -d 2 -p tcp -e 40 -c 1 -i 217 -a 1 -x {1.0 2.1 130 ------- null} - -t 173.299999999994 -s 1 -d 2 -p tcp -e 40 -c 1 -i 217 -a 1 -x {1.0 2.1 130 ------- null} h -t 173.299999999994 -s 1 -d 2 -p tcp -e 40 -c 1 -i 217 -a 1 -x {1.0 2.1 -1 ------- null} - -t 173.303954496695 -s 3 -d 2 -p rap_data -e 1024 -c 101 -i 213 -a 101 -x {3.1 2.4 2 ------- null} h -t 173.303954496695 -s 3 -d 2 -p rap_data -e 1024 -c 101 -i 213 -a 101 -x {3.1 2.4 -1 ------- null} r -t 173.355714285708 -s 1 -d 2 -p tcp -e 40 -c 1 -i 217 -a 1 -x {1.0 2.1 130 ------- null} r -t 173.382460821731 -s 2 -d 3 -p tcp -e 83 -c 2 -i 216 -a 2 -x {2.2 3.0 732 ------- null} + -t 173.399999999994 -s 3 -d 2 -p ack -e 40 -c 2 -i 218 -a 2 -x {3.0 2.2 87 ------- null} r -t 173.403954496695 -s 3 -d 2 -p rap_data -e 1024 -c 102 -i 212 -a 102 -x {3.1 2.4 1 ------- null} - -t 173.45024021098 -s 3 -d 2 -p ack -e 40 -c 2 -i 218 -a 2 -x {3.0 2.2 87 ------- null} h -t 173.45024021098 -s 3 -d 2 -p ack -e 40 -c 2 -i 218 -a 2 -x {3.0 2.2 -1 ------- null} r -t 173.55024021098 -s 3 -d 2 -p rap_data -e 1024 -c 101 -i 213 -a 101 -x {3.1 2.4 2 ------- null} r -t 173.555954496695 -s 3 -d 2 -p ack -e 40 -c 2 -i 218 -a 2 -x {3.0 2.2 87 ------- null} + -t 220 -s 1 -d 2 -p tcp -e 83 -c 1 -i 219 -a 1 -x {1.0 2.1 130 ---A--- null} - -t 220 -s 1 -d 2 -p tcp -e 83 -c 1 -i 219 -a 1 -x {1.0 2.1 130 ---A--- null} h -t 220 -s 1 -d 2 -p tcp -e 83 -c 1 -i 219 -a 1 -x {1.0 2.1 -1 ---A--- null} m -t 220 -s 1 -n _o139:0:220 -c purple -h circle v -t 220 sim_annotation 220 5 request from client 1 r -t 220.061857142857 -s 1 -d 2 -p tcp -e 83 -c 1 -i 219 -a 1 -x {1.0 2.1 130 ---A--- null} + -t 220.061857142857 -s 2 -d 1 -p ack -e 83 -c 1 -i 220 -a 1 -x {2.1 1.0 259 ---A--- null} - -t 220.061857142857 -s 2 -d 1 -p ack -e 83 -c 1 -i 220 -a 1 -x {2.1 1.0 259 ---A--- null} h -t 220.061857142857 -s 2 -d 1 -p ack -e 83 -c 1 -i 220 -a 1 -x {2.1 1.0 -1 ---A--- null} r -t 220.123714285714 -s 2 -d 1 -p ack -e 83 -c 1 -i 220 -a 1 -x {2.1 1.0 259 ---A--- null} m -t 220.1237142857143 -s 1 -n _o139:0:220 -c purple -h circle -X + -t 220.123714285714 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 221 -a 100 -x {2.3 1.1 1 ------- null} - -t 220.123714285714 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 221 -a 100 -x {2.3 1.1 1 ------- null} h -t 220.123714285714 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 221 -a 100 -x {2.3 1.1 -1 ------- null} + -t 220.199999999991 -s 1 -d 2 -p tcp -e 40 -c 1 -i 222 -a 1 -x {1.0 2.1 173 ------- null} - -t 220.199999999991 -s 1 -d 2 -p tcp -e 40 -c 1 -i 222 -a 1 -x {1.0 2.1 173 ------- null} h -t 220.199999999991 -s 1 -d 2 -p tcp -e 40 -c 1 -i 222 -a 1 -x {1.0 2.1 -1 ------- null} r -t 220.255714285706 -s 1 -d 2 -p tcp -e 40 -c 1 -i 222 -a 1 -x {1.0 2.1 173 ------- null} r -t 220.32 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 221 -a 100 -x {2.3 1.1 1 ------- null} + -t 220.32 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 223 -a 0 -x {1.1 2.3 1 ------- null} - -t 220.32 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 223 -a 0 -x {1.1 2.3 1 ------- null} h -t 220.32 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 223 -a 0 -x {1.1 2.3 -1 ------- null} r -t 220.376285714286 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 223 -a 0 -x {1.1 2.3 1 ------- null} + -t 220.623714285714 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 224 -a 100 -x {2.3 1.1 2 ------- null} - -t 220.623714285714 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 224 -a 100 -x {2.3 1.1 2 ------- null} h -t 220.623714285714 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 224 -a 100 -x {2.3 1.1 -1 ------- null} + -t 220.811857142857 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 225 -a 100 -x {2.3 1.1 3 ------- null} - -t 220.811857142857 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 225 -a 100 -x {2.3 1.1 3 ------- null} h -t 220.811857142857 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 225 -a 100 -x {2.3 1.1 -1 ------- null} r -t 220.82 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 224 -a 100 -x {2.3 1.1 2 ------- null} + -t 220.82 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 226 -a 0 -x {1.1 2.3 2 ------- null} - -t 220.82 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 226 -a 0 -x {1.1 2.3 2 ------- null} h -t 220.82 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 226 -a 0 -x {1.1 2.3 -1 ------- null} r -t 220.876285714286 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 226 -a 0 -x {1.1 2.3 2 ------- null} + -t 221 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 227 -a 100 -x {2.3 1.1 4 ------- null} - -t 221 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 227 -a 100 -x {2.3 1.1 4 ------- null} h -t 221 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 227 -a 100 -x {2.3 1.1 -1 ------- null} r -t 221.008142857143 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 225 -a 100 -x {2.3 1.1 3 ------- null} + -t 221.008142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 228 -a 0 -x {1.1 2.3 3 ------- null} - -t 221.008142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 228 -a 0 -x {1.1 2.3 3 ------- null} h -t 221.008142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 228 -a 0 -x {1.1 2.3 -1 ------- null} r -t 221.064428571429 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 228 -a 0 -x {1.1 2.3 3 ------- null} + -t 221.117709615853 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 229 -a 101 -x {2.3 1.1 5 ------- null} - -t 221.146285714286 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 229 -a 101 -x {2.3 1.1 5 ------- null} h -t 221.146285714286 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 229 -a 101 -x {2.3 1.1 -1 ------- null} r -t 221.196285714286 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 227 -a 100 -x {2.3 1.1 4 ------- null} + -t 221.196285714286 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 230 -a 0 -x {1.1 2.3 4 ------- null} - -t 221.196285714286 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 230 -a 0 -x {1.1 2.3 4 ------- null} h -t 221.196285714286 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 230 -a 0 -x {1.1 2.3 -1 ------- null} + -t 221.235419231706 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 231 -a 101 -x {2.3 1.1 6 ------- null} r -t 221.252571428571 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 230 -a 0 -x {1.1 2.3 4 ------- null} - -t 221.292571428571 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 231 -a 101 -x {2.3 1.1 6 ------- null} h -t 221.292571428571 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 231 -a 101 -x {2.3 1.1 -1 ------- null} r -t 221.342571428571 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 229 -a 101 -x {2.3 1.1 5 ------- null} + -t 221.342571428571 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 232 -a 0 -x {1.1 2.3 5 ------- null} - -t 221.342571428571 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 232 -a 0 -x {1.1 2.3 5 ------- null} h -t 221.342571428571 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 232 -a 0 -x {1.1 2.3 -1 ------- null} + -t 221.353128847559 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 233 -a 100 -x {2.3 1.1 7 ------- null} r -t 221.398857142857 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 232 -a 0 -x {1.1 2.3 5 ------- null} + -t 221.43491954857 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 234 -a 101 -x {2.3 1.1 8 ------- null} d -t 221.43491954857 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 234 -a 101 -x {2.3 1.1 8 ------- null} - -t 221.438857142857 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 233 -a 100 -x {2.3 1.1 7 ------- null} h -t 221.438857142857 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 233 -a 100 -x {2.3 1.1 -1 ------- null} r -t 221.488857142857 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 231 -a 101 -x {2.3 1.1 6 ------- null} + -t 221.488857142857 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 235 -a 0 -x {1.1 2.3 6 ------- null} - -t 221.488857142857 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 235 -a 0 -x {1.1 2.3 6 ------- null} h -t 221.488857142857 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 235 -a 0 -x {1.1 2.3 -1 ------- null} r -t 221.545142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 235 -a 0 -x {1.1 2.3 6 ------- null} + -t 221.59850095059 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 236 -a 100 -x {2.3 1.1 9 ------- null} - -t 221.59850095059 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 236 -a 100 -x {2.3 1.1 9 ------- null} h -t 221.59850095059 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 236 -a 100 -x {2.3 1.1 -1 ------- null} r -t 221.635142857143 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 233 -a 100 -x {2.3 1.1 7 ------- null} + -t 221.635142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 237 -a 0 -x {1.1 2.3 7 ------- null} - -t 221.635142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 237 -a 0 -x {1.1 2.3 7 ------- null} h -t 221.635142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 237 -a 0 -x {1.1 2.3 -1 ------- null} r -t 221.691428571429 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 237 -a 0 -x {1.1 2.3 7 ------- null} r -t 221.794786664876 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 236 -a 100 -x {2.3 1.1 9 ------- null} + -t 221.794786664876 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 238 -a 0 -x {1.1 2.3 9 ------- null} - -t 221.794786664876 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 238 -a 0 -x {1.1 2.3 9 ------- null} h -t 221.794786664876 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 238 -a 0 -x {1.1 2.3 -1 ------- null} r -t 221.851072379162 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 238 -a 0 -x {1.1 2.3 9 ------- null} + -t 221.918007353709 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 239 -a 101 -x {2.3 1.1 10 ------- null} - -t 221.918007353709 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 239 -a 101 -x {2.3 1.1 10 ------- null} h -t 221.918007353709 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 239 -a 101 -x {2.3 1.1 -1 ------- null} + -t 221.981908634333 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 240 -a 102 -x {2.3 1.1 11 ------- null} - -t 222.064293067995 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 240 -a 102 -x {2.3 1.1 11 ------- null} h -t 222.064293067995 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 240 -a 102 -x {2.3 1.1 -1 ------- null} r -t 222.114293067995 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 239 -a 101 -x {2.3 1.1 10 ------- null} + -t 222.114293067995 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 241 -a 0 -x {1.1 2.3 10 ------- null} - -t 222.114293067995 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 241 -a 0 -x {1.1 2.3 10 ------- null} h -t 222.114293067995 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 241 -a 0 -x {1.1 2.3 -1 ------- null} r -t 222.170578782281 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 241 -a 0 -x {1.1 2.3 10 ------- null} + -t 222.173612476205 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 242 -a 101 -x {2.3 1.1 12 ------- null} - -t 222.210578782281 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 242 -a 101 -x {2.3 1.1 12 ------- null} h -t 222.210578782281 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 242 -a 101 -x {2.3 1.1 -1 ------- null} r -t 222.260578782281 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 240 -a 102 -x {2.3 1.1 11 ------- null} + -t 222.260578782281 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 243 -a 0 -x {1.1 2.3 11 ------- null} - -t 222.260578782281 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 243 -a 0 -x {1.1 2.3 11 ------- null} h -t 222.260578782281 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 243 -a 0 -x {1.1 2.3 -1 ------- null} + -t 222.301415037453 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 244 -a 102 -x {2.3 1.1 13 ------- null} r -t 222.316864496567 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 243 -a 0 -x {1.1 2.3 11 ------- null} - -t 222.356864496567 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 244 -a 102 -x {2.3 1.1 13 ------- null} h -t 222.356864496567 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 244 -a 102 -x {2.3 1.1 -1 ------- null} r -t 222.406864496567 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 242 -a 101 -x {2.3 1.1 12 ------- null} + -t 222.406864496567 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 245 -a 0 -x {1.1 2.3 12 ------- null} - -t 222.406864496567 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 245 -a 0 -x {1.1 2.3 12 ------- null} h -t 222.406864496567 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 245 -a 0 -x {1.1 2.3 -1 ------- null} + -t 222.4292175987 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 246 -a 100 -x {2.3 1.1 14 ------- null} r -t 222.463150210852 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 245 -a 0 -x {1.1 2.3 12 ------- null} - -t 222.503150210852 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 246 -a 100 -x {2.3 1.1 14 ------- null} h -t 222.503150210852 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 246 -a 100 -x {2.3 1.1 -1 ------- null} + -t 222.518982067358 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 247 -a 100 -x {2.3 1.1 15 ------- null} r -t 222.553150210852 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 244 -a 102 -x {2.3 1.1 13 ------- null} + -t 222.553150210852 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 248 -a 0 -x {1.1 2.3 13 ------- null} - -t 222.553150210852 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 248 -a 0 -x {1.1 2.3 13 ------- null} h -t 222.553150210852 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 248 -a 0 -x {1.1 2.3 -1 ------- null} + -t 222.608746536016 -s 2 -d 1 -p ack -e 83 -c 1 -i 249 -a 1 -x {2.1 1.0 302 ---A--- null} d -t 222.608746536016 -s 2 -d 1 -p ack -e 83 -c 1 -i 249 -a 1 -x {2.1 1.0 302 ---A--- null} r -t 222.609435925138 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 248 -a 0 -x {1.1 2.3 13 ------- null} - -t 222.649435925138 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 247 -a 100 -x {2.3 1.1 15 ------- null} h -t 222.649435925138 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 247 -a 100 -x {2.3 1.1 -1 ------- null} r -t 222.699435925138 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 246 -a 100 -x {2.3 1.1 14 ------- null} + -t 222.699435925138 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 250 -a 0 -x {1.1 2.3 14 ------- null} - -t 222.699435925138 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 250 -a 0 -x {1.1 2.3 14 ------- null} h -t 222.699435925138 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 250 -a 0 -x {1.1 2.3 -1 ------- null} r -t 222.755721639424 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 250 -a 0 -x {1.1 2.3 14 ------- null} r -t 222.845721639424 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 247 -a 100 -x {2.3 1.1 15 ------- null} + -t 222.845721639424 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 251 -a 0 -x {1.1 2.3 15 ------- null} - -t 222.845721639424 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 251 -a 0 -x {1.1 2.3 15 ------- null} h -t 222.845721639424 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 251 -a 0 -x {1.1 2.3 -1 ------- null} r -t 222.902007353709 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 251 -a 0 -x {1.1 2.3 15 ------- null} + -t 223.045811639552 -s 2 -d 3 -p tcp -e 83 -c 2 -i 252 -a 2 -x {2.2 3.0 775 ---A--- null} - -t 223.045811639552 -s 2 -d 3 -p tcp -e 83 -c 2 -i 252 -a 2 -x {2.2 3.0 775 ---A--- null} h -t 223.045811639552 -s 2 -d 3 -p tcp -e 83 -c 2 -i 252 -a 2 -x {2.2 3.0 -1 ---A--- null} + -t 223.045811639552 -s 2 -d 3 -p tcp -e 83 -c 2 -i 253 -a 2 -x {2.2 3.0 818 ------- null} - -t 223.057668782409 -s 2 -d 3 -p tcp -e 83 -c 2 -i 253 -a 2 -x {2.2 3.0 818 ------- null} h -t 223.057668782409 -s 2 -d 3 -p tcp -e 83 -c 2 -i 253 -a 2 -x {2.2 3.0 -1 ------- null} r -t 223.157668782409 -s 2 -d 3 -p tcp -e 83 -c 2 -i 252 -a 2 -x {2.2 3.0 775 ---A--- null} + -t 223.157668782409 -s 3 -d 2 -p rap_data -e 1024 -c 102 -i 254 -a 102 -x {3.1 2.4 1 ------- null} - -t 223.157668782409 -s 3 -d 2 -p rap_data -e 1024 -c 102 -i 254 -a 102 -x {3.1 2.4 1 ------- null} h -t 223.157668782409 -s 3 -d 2 -p rap_data -e 1024 -c 102 -i 254 -a 102 -x {3.1 2.4 -1 ------- null} r -t 223.169525925266 -s 2 -d 3 -p tcp -e 83 -c 2 -i 253 -a 2 -x {2.2 3.0 818 ------- null} + -t 223.172668782409 -s 3 -d 2 -p rap_data -e 1024 -c 101 -i 255 -a 101 -x {3.1 2.4 2 ------- null} + -t 223.199999999992 -s 3 -d 2 -p ack -e 40 -c 2 -i 256 -a 2 -x {3.0 2.2 87 ------- null} d -t 223.199999999992 -s 3 -d 2 -p ack -e 40 -c 2 -i 256 -a 2 -x {3.0 2.2 87 ------- null} + -t 223.208746536016 -s 2 -d 1 -p ack -e 83 -c 1 -i 257 -a 1 -x {2.1 1.0 302 ---A--- null} - -t 223.208746536016 -s 2 -d 1 -p ack -e 83 -c 1 -i 257 -a 1 -x {2.1 1.0 302 ---A--- null} h -t 223.208746536016 -s 2 -d 1 -p ack -e 83 -c 1 -i 257 -a 1 -x {2.1 1.0 -1 ---A--- null} r -t 223.270603678874 -s 2 -d 1 -p ack -e 83 -c 1 -i 257 -a 1 -x {2.1 1.0 302 ---A--- null} + -t 223.270603678874 -s 2 -d 3 -p tcp -e 83 -c 2 -i 258 -a 2 -x {2.2 3.0 861 ------- null} - -t 223.270603678874 -s 2 -d 3 -p tcp -e 83 -c 2 -i 258 -a 2 -x {2.2 3.0 861 ------- null} h -t 223.270603678874 -s 2 -d 3 -p tcp -e 83 -c 2 -i 258 -a 2 -x {2.2 3.0 -1 ------- null} + -t 223.299999999991 -s 1 -d 2 -p tcp -e 40 -c 1 -i 259 -a 1 -x {1.0 2.1 173 ------- null} - -t 223.299999999991 -s 1 -d 2 -p tcp -e 40 -c 1 -i 259 -a 1 -x {1.0 2.1 173 ------- null} h -t 223.299999999991 -s 1 -d 2 -p tcp -e 40 -c 1 -i 259 -a 1 -x {1.0 2.1 -1 ------- null} - -t 223.303954496695 -s 3 -d 2 -p rap_data -e 1024 -c 101 -i 255 -a 101 -x {3.1 2.4 2 ------- null} h -t 223.303954496695 -s 3 -d 2 -p rap_data -e 1024 -c 101 -i 255 -a 101 -x {3.1 2.4 -1 ------- null} r -t 223.355714285706 -s 1 -d 2 -p tcp -e 40 -c 1 -i 259 -a 1 -x {1.0 2.1 173 ------- null} r -t 223.382460821731 -s 2 -d 3 -p tcp -e 83 -c 2 -i 258 -a 2 -x {2.2 3.0 861 ------- null} + -t 223.399999999992 -s 3 -d 2 -p ack -e 40 -c 2 -i 260 -a 2 -x {3.0 2.2 87 ------- null} r -t 223.403954496695 -s 3 -d 2 -p rap_data -e 1024 -c 102 -i 254 -a 102 -x {3.1 2.4 1 ------- null} - -t 223.45024021098 -s 3 -d 2 -p ack -e 40 -c 2 -i 260 -a 2 -x {3.0 2.2 87 ------- null} h -t 223.45024021098 -s 3 -d 2 -p ack -e 40 -c 2 -i 260 -a 2 -x {3.0 2.2 -1 ------- null} r -t 223.55024021098 -s 3 -d 2 -p rap_data -e 1024 -c 101 -i 255 -a 101 -x {3.1 2.4 2 ------- null} r -t 223.555954496695 -s 3 -d 2 -p ack -e 40 -c 2 -i 260 -a 2 -x {3.0 2.2 87 ------- null} + -t 270 -s 1 -d 2 -p tcp -e 83 -c 1 -i 261 -a 1 -x {1.0 2.1 173 ---A--- null} - -t 270 -s 1 -d 2 -p tcp -e 83 -c 1 -i 261 -a 1 -x {1.0 2.1 173 ---A--- null} h -t 270 -s 1 -d 2 -p tcp -e 83 -c 1 -i 261 -a 1 -x {1.0 2.1 -1 ---A--- null} m -t 270 -s 1 -n _o139:0:270 -c purple -h circle v -t 270 sim_annotation 270 6 request from client 1 r -t 270.061857142857 -s 1 -d 2 -p tcp -e 83 -c 1 -i 261 -a 1 -x {1.0 2.1 173 ---A--- null} + -t 270.061857142857 -s 2 -d 1 -p ack -e 83 -c 1 -i 262 -a 1 -x {2.1 1.0 345 ---A--- null} - -t 270.061857142857 -s 2 -d 1 -p ack -e 83 -c 1 -i 262 -a 1 -x {2.1 1.0 345 ---A--- null} h -t 270.061857142857 -s 2 -d 1 -p ack -e 83 -c 1 -i 262 -a 1 -x {2.1 1.0 -1 ---A--- null} r -t 270.123714285714 -s 2 -d 1 -p ack -e 83 -c 1 -i 262 -a 1 -x {2.1 1.0 345 ---A--- null} m -t 270.1237142857143 -s 1 -n _o139:0:270 -c purple -h circle -X + -t 270.123714285714 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 263 -a 100 -x {2.3 1.1 1 ------- null} - -t 270.123714285714 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 263 -a 100 -x {2.3 1.1 1 ------- null} h -t 270.123714285714 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 263 -a 100 -x {2.3 1.1 -1 ------- null} + -t 270.199999999993 -s 1 -d 2 -p tcp -e 40 -c 1 -i 264 -a 1 -x {1.0 2.1 216 ------- null} - -t 270.199999999993 -s 1 -d 2 -p tcp -e 40 -c 1 -i 264 -a 1 -x {1.0 2.1 216 ------- null} h -t 270.199999999993 -s 1 -d 2 -p tcp -e 40 -c 1 -i 264 -a 1 -x {1.0 2.1 -1 ------- null} r -t 270.255714285707 -s 1 -d 2 -p tcp -e 40 -c 1 -i 264 -a 1 -x {1.0 2.1 216 ------- null} r -t 270.32 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 263 -a 100 -x {2.3 1.1 1 ------- null} + -t 270.32 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 265 -a 0 -x {1.1 2.3 1 ------- null} - -t 270.32 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 265 -a 0 -x {1.1 2.3 1 ------- null} h -t 270.32 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 265 -a 0 -x {1.1 2.3 -1 ------- null} r -t 270.376285714286 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 265 -a 0 -x {1.1 2.3 1 ------- null} + -t 270.623714285714 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 266 -a 100 -x {2.3 1.1 2 ------- null} - -t 270.623714285714 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 266 -a 100 -x {2.3 1.1 2 ------- null} h -t 270.623714285714 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 266 -a 100 -x {2.3 1.1 -1 ------- null} + -t 270.811857142857 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 267 -a 100 -x {2.3 1.1 3 ------- null} - -t 270.811857142857 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 267 -a 100 -x {2.3 1.1 3 ------- null} h -t 270.811857142857 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 267 -a 100 -x {2.3 1.1 -1 ------- null} r -t 270.82 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 266 -a 100 -x {2.3 1.1 2 ------- null} + -t 270.82 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 268 -a 0 -x {1.1 2.3 2 ------- null} - -t 270.82 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 268 -a 0 -x {1.1 2.3 2 ------- null} h -t 270.82 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 268 -a 0 -x {1.1 2.3 -1 ------- null} r -t 270.876285714286 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 268 -a 0 -x {1.1 2.3 2 ------- null} + -t 271 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 269 -a 100 -x {2.3 1.1 4 ------- null} - -t 271 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 269 -a 100 -x {2.3 1.1 4 ------- null} h -t 271 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 269 -a 100 -x {2.3 1.1 -1 ------- null} r -t 271.008142857143 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 267 -a 100 -x {2.3 1.1 3 ------- null} + -t 271.008142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 270 -a 0 -x {1.1 2.3 3 ------- null} - -t 271.008142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 270 -a 0 -x {1.1 2.3 3 ------- null} h -t 271.008142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 270 -a 0 -x {1.1 2.3 -1 ------- null} r -t 271.064428571429 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 270 -a 0 -x {1.1 2.3 3 ------- null} + -t 271.117709615853 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 271 -a 101 -x {2.3 1.1 5 ------- null} - -t 271.146285714286 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 271 -a 101 -x {2.3 1.1 5 ------- null} h -t 271.146285714286 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 271 -a 101 -x {2.3 1.1 -1 ------- null} r -t 271.196285714286 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 269 -a 100 -x {2.3 1.1 4 ------- null} + -t 271.196285714286 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 272 -a 0 -x {1.1 2.3 4 ------- null} - -t 271.196285714286 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 272 -a 0 -x {1.1 2.3 4 ------- null} h -t 271.196285714286 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 272 -a 0 -x {1.1 2.3 -1 ------- null} + -t 271.235419231706 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 273 -a 101 -x {2.3 1.1 6 ------- null} r -t 271.252571428571 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 272 -a 0 -x {1.1 2.3 4 ------- null} - -t 271.292571428571 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 273 -a 101 -x {2.3 1.1 6 ------- null} h -t 271.292571428571 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 273 -a 101 -x {2.3 1.1 -1 ------- null} r -t 271.342571428571 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 271 -a 101 -x {2.3 1.1 5 ------- null} + -t 271.342571428571 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 274 -a 0 -x {1.1 2.3 5 ------- null} - -t 271.342571428571 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 274 -a 0 -x {1.1 2.3 5 ------- null} h -t 271.342571428571 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 274 -a 0 -x {1.1 2.3 -1 ------- null} + -t 271.353128847559 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 275 -a 100 -x {2.3 1.1 7 ------- null} r -t 271.398857142857 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 274 -a 0 -x {1.1 2.3 5 ------- null} + -t 271.43491954857 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 276 -a 101 -x {2.3 1.1 8 ------- null} d -t 271.43491954857 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 276 -a 101 -x {2.3 1.1 8 ------- null} - -t 271.438857142857 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 275 -a 100 -x {2.3 1.1 7 ------- null} h -t 271.438857142857 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 275 -a 100 -x {2.3 1.1 -1 ------- null} r -t 271.488857142857 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 273 -a 101 -x {2.3 1.1 6 ------- null} + -t 271.488857142857 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 277 -a 0 -x {1.1 2.3 6 ------- null} - -t 271.488857142857 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 277 -a 0 -x {1.1 2.3 6 ------- null} h -t 271.488857142857 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 277 -a 0 -x {1.1 2.3 -1 ------- null} r -t 271.545142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 277 -a 0 -x {1.1 2.3 6 ------- null} + -t 271.59850095059 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 278 -a 100 -x {2.3 1.1 9 ------- null} - -t 271.59850095059 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 278 -a 100 -x {2.3 1.1 9 ------- null} h -t 271.59850095059 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 278 -a 100 -x {2.3 1.1 -1 ------- null} r -t 271.635142857143 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 275 -a 100 -x {2.3 1.1 7 ------- null} + -t 271.635142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 279 -a 0 -x {1.1 2.3 7 ------- null} - -t 271.635142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 279 -a 0 -x {1.1 2.3 7 ------- null} h -t 271.635142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 279 -a 0 -x {1.1 2.3 -1 ------- null} r -t 271.691428571429 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 279 -a 0 -x {1.1 2.3 7 ------- null} r -t 271.794786664876 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 278 -a 100 -x {2.3 1.1 9 ------- null} + -t 271.794786664876 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 280 -a 0 -x {1.1 2.3 9 ------- null} - -t 271.794786664876 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 280 -a 0 -x {1.1 2.3 9 ------- null} h -t 271.794786664876 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 280 -a 0 -x {1.1 2.3 -1 ------- null} r -t 271.851072379162 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 280 -a 0 -x {1.1 2.3 9 ------- null} + -t 271.918007353709 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 281 -a 101 -x {2.3 1.1 10 ------- null} - -t 271.918007353709 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 281 -a 101 -x {2.3 1.1 10 ------- null} h -t 271.918007353709 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 281 -a 101 -x {2.3 1.1 -1 ------- null} + -t 271.981908634333 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 282 -a 102 -x {2.3 1.1 11 ------- null} - -t 272.064293067995 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 282 -a 102 -x {2.3 1.1 11 ------- null} h -t 272.064293067995 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 282 -a 102 -x {2.3 1.1 -1 ------- null} r -t 272.114293067995 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 281 -a 101 -x {2.3 1.1 10 ------- null} + -t 272.114293067995 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 283 -a 0 -x {1.1 2.3 10 ------- null} - -t 272.114293067995 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 283 -a 0 -x {1.1 2.3 10 ------- null} h -t 272.114293067995 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 283 -a 0 -x {1.1 2.3 -1 ------- null} r -t 272.170578782281 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 283 -a 0 -x {1.1 2.3 10 ------- null} + -t 272.173612476205 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 284 -a 101 -x {2.3 1.1 12 ------- null} - -t 272.210578782281 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 284 -a 101 -x {2.3 1.1 12 ------- null} h -t 272.210578782281 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 284 -a 101 -x {2.3 1.1 -1 ------- null} r -t 272.260578782281 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 282 -a 102 -x {2.3 1.1 11 ------- null} + -t 272.260578782281 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 285 -a 0 -x {1.1 2.3 11 ------- null} - -t 272.260578782281 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 285 -a 0 -x {1.1 2.3 11 ------- null} h -t 272.260578782281 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 285 -a 0 -x {1.1 2.3 -1 ------- null} + -t 272.301415037452 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 286 -a 102 -x {2.3 1.1 13 ------- null} r -t 272.316864496567 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 285 -a 0 -x {1.1 2.3 11 ------- null} - -t 272.356864496567 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 286 -a 102 -x {2.3 1.1 13 ------- null} h -t 272.356864496567 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 286 -a 102 -x {2.3 1.1 -1 ------- null} r -t 272.406864496567 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 284 -a 101 -x {2.3 1.1 12 ------- null} + -t 272.406864496567 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 287 -a 0 -x {1.1 2.3 12 ------- null} - -t 272.406864496567 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 287 -a 0 -x {1.1 2.3 12 ------- null} h -t 272.406864496567 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 287 -a 0 -x {1.1 2.3 -1 ------- null} + -t 272.4292175987 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 288 -a 100 -x {2.3 1.1 14 ------- null} r -t 272.463150210852 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 287 -a 0 -x {1.1 2.3 12 ------- null} - -t 272.503150210852 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 288 -a 100 -x {2.3 1.1 14 ------- null} h -t 272.503150210852 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 288 -a 100 -x {2.3 1.1 -1 ------- null} + -t 272.518982067358 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 289 -a 100 -x {2.3 1.1 15 ------- null} r -t 272.553150210852 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 286 -a 102 -x {2.3 1.1 13 ------- null} + -t 272.553150210852 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 290 -a 0 -x {1.1 2.3 13 ------- null} - -t 272.553150210852 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 290 -a 0 -x {1.1 2.3 13 ------- null} h -t 272.553150210852 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 290 -a 0 -x {1.1 2.3 -1 ------- null} + -t 272.608746536016 -s 2 -d 1 -p ack -e 83 -c 1 -i 291 -a 1 -x {2.1 1.0 388 ---A--- null} d -t 272.608746536016 -s 2 -d 1 -p ack -e 83 -c 1 -i 291 -a 1 -x {2.1 1.0 388 ---A--- null} r -t 272.609435925138 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 290 -a 0 -x {1.1 2.3 13 ------- null} - -t 272.649435925138 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 289 -a 100 -x {2.3 1.1 15 ------- null} h -t 272.649435925138 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 289 -a 100 -x {2.3 1.1 -1 ------- null} r -t 272.699435925138 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 288 -a 100 -x {2.3 1.1 14 ------- null} + -t 272.699435925138 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 292 -a 0 -x {1.1 2.3 14 ------- null} - -t 272.699435925138 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 292 -a 0 -x {1.1 2.3 14 ------- null} h -t 272.699435925138 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 292 -a 0 -x {1.1 2.3 -1 ------- null} r -t 272.755721639424 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 292 -a 0 -x {1.1 2.3 14 ------- null} r -t 272.845721639424 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 289 -a 100 -x {2.3 1.1 15 ------- null} + -t 272.845721639424 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 293 -a 0 -x {1.1 2.3 15 ------- null} - -t 272.845721639424 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 293 -a 0 -x {1.1 2.3 15 ------- null} h -t 272.845721639424 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 293 -a 0 -x {1.1 2.3 -1 ------- null} r -t 272.90200735371 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 293 -a 0 -x {1.1 2.3 15 ------- null} + -t 273.045811639552 -s 2 -d 3 -p tcp -e 83 -c 2 -i 294 -a 2 -x {2.2 3.0 904 ---A--- null} - -t 273.045811639552 -s 2 -d 3 -p tcp -e 83 -c 2 -i 294 -a 2 -x {2.2 3.0 904 ---A--- null} h -t 273.045811639552 -s 2 -d 3 -p tcp -e 83 -c 2 -i 294 -a 2 -x {2.2 3.0 -1 ---A--- null} + -t 273.045811639552 -s 2 -d 3 -p tcp -e 83 -c 2 -i 295 -a 2 -x {2.2 3.0 947 ------- null} - -t 273.057668782409 -s 2 -d 3 -p tcp -e 83 -c 2 -i 295 -a 2 -x {2.2 3.0 947 ------- null} h -t 273.057668782409 -s 2 -d 3 -p tcp -e 83 -c 2 -i 295 -a 2 -x {2.2 3.0 -1 ------- null} r -t 273.157668782409 -s 2 -d 3 -p tcp -e 83 -c 2 -i 294 -a 2 -x {2.2 3.0 904 ---A--- null} + -t 273.157668782409 -s 3 -d 2 -p rap_data -e 1024 -c 102 -i 296 -a 102 -x {3.1 2.4 1 ------- null} - -t 273.157668782409 -s 3 -d 2 -p rap_data -e 1024 -c 102 -i 296 -a 102 -x {3.1 2.4 1 ------- null} h -t 273.157668782409 -s 3 -d 2 -p rap_data -e 1024 -c 102 -i 296 -a 102 -x {3.1 2.4 -1 ------- null} r -t 273.169525925266 -s 2 -d 3 -p tcp -e 83 -c 2 -i 295 -a 2 -x {2.2 3.0 947 ------- null} + -t 273.172668782409 -s 3 -d 2 -p rap_data -e 1024 -c 101 -i 297 -a 101 -x {3.1 2.4 2 ------- null} + -t 273.199999999994 -s 3 -d 2 -p ack -e 40 -c 2 -i 298 -a 2 -x {3.0 2.2 87 ------- null} d -t 273.199999999994 -s 3 -d 2 -p ack -e 40 -c 2 -i 298 -a 2 -x {3.0 2.2 87 ------- null} + -t 273.208746536016 -s 2 -d 1 -p ack -e 83 -c 1 -i 299 -a 1 -x {2.1 1.0 388 ---A--- null} - -t 273.208746536016 -s 2 -d 1 -p ack -e 83 -c 1 -i 299 -a 1 -x {2.1 1.0 388 ---A--- null} h -t 273.208746536016 -s 2 -d 1 -p ack -e 83 -c 1 -i 299 -a 1 -x {2.1 1.0 -1 ---A--- null} r -t 273.270603678874 -s 2 -d 1 -p ack -e 83 -c 1 -i 299 -a 1 -x {2.1 1.0 388 ---A--- null} + -t 273.270603678874 -s 2 -d 3 -p tcp -e 83 -c 2 -i 300 -a 2 -x {2.2 3.0 990 ------- null} - -t 273.270603678874 -s 2 -d 3 -p tcp -e 83 -c 2 -i 300 -a 2 -x {2.2 3.0 990 ------- null} h -t 273.270603678874 -s 2 -d 3 -p tcp -e 83 -c 2 -i 300 -a 2 -x {2.2 3.0 -1 ------- null} + -t 273.299999999993 -s 1 -d 2 -p tcp -e 40 -c 1 -i 301 -a 1 -x {1.0 2.1 216 ------- null} - -t 273.299999999993 -s 1 -d 2 -p tcp -e 40 -c 1 -i 301 -a 1 -x {1.0 2.1 216 ------- null} h -t 273.299999999993 -s 1 -d 2 -p tcp -e 40 -c 1 -i 301 -a 1 -x {1.0 2.1 -1 ------- null} - -t 273.303954496695 -s 3 -d 2 -p rap_data -e 1024 -c 101 -i 297 -a 101 -x {3.1 2.4 2 ------- null} h -t 273.303954496695 -s 3 -d 2 -p rap_data -e 1024 -c 101 -i 297 -a 101 -x {3.1 2.4 -1 ------- null} r -t 273.355714285708 -s 1 -d 2 -p tcp -e 40 -c 1 -i 301 -a 1 -x {1.0 2.1 216 ------- null} r -t 273.382460821731 -s 2 -d 3 -p tcp -e 83 -c 2 -i 300 -a 2 -x {2.2 3.0 990 ------- null} + -t 273.399999999994 -s 3 -d 2 -p ack -e 40 -c 2 -i 302 -a 2 -x {3.0 2.2 87 ------- null} r -t 273.403954496695 -s 3 -d 2 -p rap_data -e 1024 -c 102 -i 296 -a 102 -x {3.1 2.4 1 ------- null} - -t 273.450240210981 -s 3 -d 2 -p ack -e 40 -c 2 -i 302 -a 2 -x {3.0 2.2 87 ------- null} h -t 273.450240210981 -s 3 -d 2 -p ack -e 40 -c 2 -i 302 -a 2 -x {3.0 2.2 -1 ------- null} r -t 273.550240210981 -s 3 -d 2 -p rap_data -e 1024 -c 101 -i 297 -a 101 -x {3.1 2.4 2 ------- null} r -t 273.555954496695 -s 3 -d 2 -p ack -e 40 -c 2 -i 302 -a 2 -x {3.0 2.2 87 ------- null} + -t 320 -s 1 -d 2 -p tcp -e 83 -c 1 -i 303 -a 1 -x {1.0 2.1 216 ---A--- null} - -t 320 -s 1 -d 2 -p tcp -e 83 -c 1 -i 303 -a 1 -x {1.0 2.1 216 ---A--- null} h -t 320 -s 1 -d 2 -p tcp -e 83 -c 1 -i 303 -a 1 -x {1.0 2.1 -1 ---A--- null} m -t 320 -s 1 -n _o139:0:320 -c purple -h circle v -t 320 sim_annotation 320 7 request from client 1 r -t 320.061857142857 -s 1 -d 2 -p tcp -e 83 -c 1 -i 303 -a 1 -x {1.0 2.1 216 ---A--- null} + -t 320.061857142857 -s 2 -d 1 -p ack -e 83 -c 1 -i 304 -a 1 -x {2.1 1.0 431 ---A--- null} - -t 320.061857142857 -s 2 -d 1 -p ack -e 83 -c 1 -i 304 -a 1 -x {2.1 1.0 431 ---A--- null} h -t 320.061857142857 -s 2 -d 1 -p ack -e 83 -c 1 -i 304 -a 1 -x {2.1 1.0 -1 ---A--- null} r -t 320.123714285714 -s 2 -d 1 -p ack -e 83 -c 1 -i 304 -a 1 -x {2.1 1.0 431 ---A--- null} m -t 320.1237142857143 -s 1 -n _o139:0:320 -c purple -h circle -X + -t 320.123714285714 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 305 -a 100 -x {2.3 1.1 1 ------- null} - -t 320.123714285714 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 305 -a 100 -x {2.3 1.1 1 ------- null} h -t 320.123714285714 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 305 -a 100 -x {2.3 1.1 -1 ------- null} + -t 320.200000000004 -s 1 -d 2 -p tcp -e 40 -c 1 -i 306 -a 1 -x {1.0 2.1 259 ------- null} - -t 320.200000000004 -s 1 -d 2 -p tcp -e 40 -c 1 -i 306 -a 1 -x {1.0 2.1 259 ------- null} h -t 320.200000000004 -s 1 -d 2 -p tcp -e 40 -c 1 -i 306 -a 1 -x {1.0 2.1 -1 ------- null} r -t 320.255714285718 -s 1 -d 2 -p tcp -e 40 -c 1 -i 306 -a 1 -x {1.0 2.1 259 ------- null} r -t 320.32 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 305 -a 100 -x {2.3 1.1 1 ------- null} + -t 320.32 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 307 -a 0 -x {1.1 2.3 1 ------- null} - -t 320.32 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 307 -a 0 -x {1.1 2.3 1 ------- null} h -t 320.32 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 307 -a 0 -x {1.1 2.3 -1 ------- null} r -t 320.376285714286 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 307 -a 0 -x {1.1 2.3 1 ------- null} + -t 320.623714285714 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 308 -a 100 -x {2.3 1.1 2 ------- null} - -t 320.623714285714 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 308 -a 100 -x {2.3 1.1 2 ------- null} h -t 320.623714285714 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 308 -a 100 -x {2.3 1.1 -1 ------- null} + -t 320.811857142857 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 309 -a 100 -x {2.3 1.1 3 ------- null} - -t 320.811857142857 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 309 -a 100 -x {2.3 1.1 3 ------- null} h -t 320.811857142857 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 309 -a 100 -x {2.3 1.1 -1 ------- null} r -t 320.82 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 308 -a 100 -x {2.3 1.1 2 ------- null} + -t 320.82 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 310 -a 0 -x {1.1 2.3 2 ------- null} - -t 320.82 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 310 -a 0 -x {1.1 2.3 2 ------- null} h -t 320.82 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 310 -a 0 -x {1.1 2.3 -1 ------- null} r -t 320.876285714286 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 310 -a 0 -x {1.1 2.3 2 ------- null} + -t 321 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 311 -a 100 -x {2.3 1.1 4 ------- null} - -t 321 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 311 -a 100 -x {2.3 1.1 4 ------- null} h -t 321 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 311 -a 100 -x {2.3 1.1 -1 ------- null} r -t 321.008142857143 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 309 -a 100 -x {2.3 1.1 3 ------- null} + -t 321.008142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 312 -a 0 -x {1.1 2.3 3 ------- null} - -t 321.008142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 312 -a 0 -x {1.1 2.3 3 ------- null} h -t 321.008142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 312 -a 0 -x {1.1 2.3 -1 ------- null} r -t 321.064428571429 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 312 -a 0 -x {1.1 2.3 3 ------- null} + -t 321.117709615853 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 313 -a 101 -x {2.3 1.1 5 ------- null} - -t 321.146285714286 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 313 -a 101 -x {2.3 1.1 5 ------- null} h -t 321.146285714286 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 313 -a 101 -x {2.3 1.1 -1 ------- null} r -t 321.196285714286 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 311 -a 100 -x {2.3 1.1 4 ------- null} + -t 321.196285714286 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 314 -a 0 -x {1.1 2.3 4 ------- null} - -t 321.196285714286 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 314 -a 0 -x {1.1 2.3 4 ------- null} h -t 321.196285714286 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 314 -a 0 -x {1.1 2.3 -1 ------- null} + -t 321.235419231706 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 315 -a 101 -x {2.3 1.1 6 ------- null} r -t 321.252571428571 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 314 -a 0 -x {1.1 2.3 4 ------- null} - -t 321.292571428571 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 315 -a 101 -x {2.3 1.1 6 ------- null} h -t 321.292571428571 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 315 -a 101 -x {2.3 1.1 -1 ------- null} r -t 321.342571428571 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 313 -a 101 -x {2.3 1.1 5 ------- null} + -t 321.342571428571 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 316 -a 0 -x {1.1 2.3 5 ------- null} - -t 321.342571428571 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 316 -a 0 -x {1.1 2.3 5 ------- null} h -t 321.342571428571 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 316 -a 0 -x {1.1 2.3 -1 ------- null} + -t 321.353128847559 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 317 -a 100 -x {2.3 1.1 7 ------- null} r -t 321.398857142857 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 316 -a 0 -x {1.1 2.3 5 ------- null} + -t 321.43491954857 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 318 -a 101 -x {2.3 1.1 8 ------- null} d -t 321.43491954857 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 318 -a 101 -x {2.3 1.1 8 ------- null} - -t 321.438857142857 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 317 -a 100 -x {2.3 1.1 7 ------- null} h -t 321.438857142857 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 317 -a 100 -x {2.3 1.1 -1 ------- null} r -t 321.488857142857 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 315 -a 101 -x {2.3 1.1 6 ------- null} + -t 321.488857142857 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 319 -a 0 -x {1.1 2.3 6 ------- null} - -t 321.488857142857 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 319 -a 0 -x {1.1 2.3 6 ------- null} h -t 321.488857142857 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 319 -a 0 -x {1.1 2.3 -1 ------- null} r -t 321.545142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 319 -a 0 -x {1.1 2.3 6 ------- null} + -t 321.59850095059 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 320 -a 100 -x {2.3 1.1 9 ------- null} - -t 321.59850095059 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 320 -a 100 -x {2.3 1.1 9 ------- null} h -t 321.59850095059 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 320 -a 100 -x {2.3 1.1 -1 ------- null} r -t 321.635142857143 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 317 -a 100 -x {2.3 1.1 7 ------- null} + -t 321.635142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 321 -a 0 -x {1.1 2.3 7 ------- null} - -t 321.635142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 321 -a 0 -x {1.1 2.3 7 ------- null} h -t 321.635142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 321 -a 0 -x {1.1 2.3 -1 ------- null} r -t 321.691428571429 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 321 -a 0 -x {1.1 2.3 7 ------- null} r -t 321.794786664876 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 320 -a 100 -x {2.3 1.1 9 ------- null} + -t 321.794786664876 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 322 -a 0 -x {1.1 2.3 9 ------- null} - -t 321.794786664876 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 322 -a 0 -x {1.1 2.3 9 ------- null} h -t 321.794786664876 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 322 -a 0 -x {1.1 2.3 -1 ------- null} r -t 321.851072379162 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 322 -a 0 -x {1.1 2.3 9 ------- null} + -t 321.918007353709 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 323 -a 101 -x {2.3 1.1 10 ------- null} - -t 321.918007353709 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 323 -a 101 -x {2.3 1.1 10 ------- null} h -t 321.918007353709 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 323 -a 101 -x {2.3 1.1 -1 ------- null} + -t 321.981908634333 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 324 -a 102 -x {2.3 1.1 11 ------- null} - -t 322.064293067995 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 324 -a 102 -x {2.3 1.1 11 ------- null} h -t 322.064293067995 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 324 -a 102 -x {2.3 1.1 -1 ------- null} r -t 322.114293067995 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 323 -a 101 -x {2.3 1.1 10 ------- null} + -t 322.114293067995 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 325 -a 0 -x {1.1 2.3 10 ------- null} - -t 322.114293067995 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 325 -a 0 -x {1.1 2.3 10 ------- null} h -t 322.114293067995 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 325 -a 0 -x {1.1 2.3 -1 ------- null} r -t 322.170578782281 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 325 -a 0 -x {1.1 2.3 10 ------- null} + -t 322.173612476205 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 326 -a 101 -x {2.3 1.1 12 ------- null} - -t 322.210578782281 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 326 -a 101 -x {2.3 1.1 12 ------- null} h -t 322.210578782281 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 326 -a 101 -x {2.3 1.1 -1 ------- null} r -t 322.260578782281 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 324 -a 102 -x {2.3 1.1 11 ------- null} + -t 322.260578782281 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 327 -a 0 -x {1.1 2.3 11 ------- null} - -t 322.260578782281 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 327 -a 0 -x {1.1 2.3 11 ------- null} h -t 322.260578782281 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 327 -a 0 -x {1.1 2.3 -1 ------- null} + -t 322.301415037452 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 328 -a 102 -x {2.3 1.1 13 ------- null} r -t 322.316864496567 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 327 -a 0 -x {1.1 2.3 11 ------- null} - -t 322.356864496567 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 328 -a 102 -x {2.3 1.1 13 ------- null} h -t 322.356864496567 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 328 -a 102 -x {2.3 1.1 -1 ------- null} r -t 322.406864496567 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 326 -a 101 -x {2.3 1.1 12 ------- null} + -t 322.406864496567 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 329 -a 0 -x {1.1 2.3 12 ------- null} - -t 322.406864496567 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 329 -a 0 -x {1.1 2.3 12 ------- null} h -t 322.406864496567 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 329 -a 0 -x {1.1 2.3 -1 ------- null} + -t 322.4292175987 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 330 -a 100 -x {2.3 1.1 14 ------- null} r -t 322.463150210852 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 329 -a 0 -x {1.1 2.3 12 ------- null} - -t 322.503150210852 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 330 -a 100 -x {2.3 1.1 14 ------- null} h -t 322.503150210852 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 330 -a 100 -x {2.3 1.1 -1 ------- null} + -t 322.518982067358 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 331 -a 100 -x {2.3 1.1 15 ------- null} r -t 322.553150210852 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 328 -a 102 -x {2.3 1.1 13 ------- null} + -t 322.553150210852 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 332 -a 0 -x {1.1 2.3 13 ------- null} - -t 322.553150210852 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 332 -a 0 -x {1.1 2.3 13 ------- null} h -t 322.553150210852 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 332 -a 0 -x {1.1 2.3 -1 ------- null} + -t 322.608746536016 -s 2 -d 1 -p ack -e 83 -c 1 -i 333 -a 1 -x {2.1 1.0 474 ---A--- null} d -t 322.608746536016 -s 2 -d 1 -p ack -e 83 -c 1 -i 333 -a 1 -x {2.1 1.0 474 ---A--- null} r -t 322.609435925138 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 332 -a 0 -x {1.1 2.3 13 ------- null} - -t 322.649435925138 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 331 -a 100 -x {2.3 1.1 15 ------- null} h -t 322.649435925138 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 331 -a 100 -x {2.3 1.1 -1 ------- null} r -t 322.699435925138 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 330 -a 100 -x {2.3 1.1 14 ------- null} + -t 322.699435925138 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 334 -a 0 -x {1.1 2.3 14 ------- null} - -t 322.699435925138 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 334 -a 0 -x {1.1 2.3 14 ------- null} h -t 322.699435925138 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 334 -a 0 -x {1.1 2.3 -1 ------- null} r -t 322.755721639424 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 334 -a 0 -x {1.1 2.3 14 ------- null} r -t 322.845721639424 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 331 -a 100 -x {2.3 1.1 15 ------- null} + -t 322.845721639424 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 335 -a 0 -x {1.1 2.3 15 ------- null} - -t 322.845721639424 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 335 -a 0 -x {1.1 2.3 15 ------- null} h -t 322.845721639424 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 335 -a 0 -x {1.1 2.3 -1 ------- null} r -t 322.90200735371 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 335 -a 0 -x {1.1 2.3 15 ------- null} + -t 323.045811639552 -s 2 -d 3 -p tcp -e 83 -c 2 -i 336 -a 2 -x {2.2 3.0 1033 ---A--- null} - -t 323.045811639552 -s 2 -d 3 -p tcp -e 83 -c 2 -i 336 -a 2 -x {2.2 3.0 1033 ---A--- null} h -t 323.045811639552 -s 2 -d 3 -p tcp -e 83 -c 2 -i 336 -a 2 -x {2.2 3.0 -1 ---A--- null} + -t 323.045811639552 -s 2 -d 3 -p tcp -e 83 -c 2 -i 337 -a 2 -x {2.2 3.0 1076 ------- null} - -t 323.057668782409 -s 2 -d 3 -p tcp -e 83 -c 2 -i 337 -a 2 -x {2.2 3.0 1076 ------- null} h -t 323.057668782409 -s 2 -d 3 -p tcp -e 83 -c 2 -i 337 -a 2 -x {2.2 3.0 -1 ------- null} r -t 323.157668782409 -s 2 -d 3 -p tcp -e 83 -c 2 -i 336 -a 2 -x {2.2 3.0 1033 ---A--- null} + -t 323.157668782409 -s 3 -d 2 -p rap_data -e 1024 -c 102 -i 338 -a 102 -x {3.1 2.4 1 ------- null} - -t 323.157668782409 -s 3 -d 2 -p rap_data -e 1024 -c 102 -i 338 -a 102 -x {3.1 2.4 1 ------- null} h -t 323.157668782409 -s 3 -d 2 -p rap_data -e 1024 -c 102 -i 338 -a 102 -x {3.1 2.4 -1 ------- null} r -t 323.169525925266 -s 2 -d 3 -p tcp -e 83 -c 2 -i 337 -a 2 -x {2.2 3.0 1076 ------- null} + -t 323.172668782409 -s 3 -d 2 -p rap_data -e 1024 -c 101 -i 339 -a 101 -x {3.1 2.4 2 ------- null} + -t 323.200000000005 -s 3 -d 2 -p ack -e 40 -c 2 -i 340 -a 2 -x {3.0 2.2 87 ------- null} d -t 323.200000000005 -s 3 -d 2 -p ack -e 40 -c 2 -i 340 -a 2 -x {3.0 2.2 87 ------- null} - -t 323.303954496695 -s 3 -d 2 -p rap_data -e 1024 -c 101 -i 339 -a 101 -x {3.1 2.4 2 ------- null} h -t 323.303954496695 -s 3 -d 2 -p rap_data -e 1024 -c 101 -i 339 -a 101 -x {3.1 2.4 -1 ------- null} + -t 323.308746536016 -s 2 -d 1 -p ack -e 83 -c 1 -i 341 -a 1 -x {2.1 1.0 474 ---A--- null} - -t 323.308746536016 -s 2 -d 1 -p ack -e 83 -c 1 -i 341 -a 1 -x {2.1 1.0 474 ---A--- null} h -t 323.308746536016 -s 2 -d 1 -p ack -e 83 -c 1 -i 341 -a 1 -x {2.1 1.0 -1 ---A--- null} r -t 323.370603678874 -s 2 -d 1 -p ack -e 83 -c 1 -i 341 -a 1 -x {2.1 1.0 474 ---A--- null} + -t 323.370603678874 -s 2 -d 3 -p tcp -e 83 -c 2 -i 342 -a 2 -x {2.2 3.0 1119 ------- null} - -t 323.370603678874 -s 2 -d 3 -p tcp -e 83 -c 2 -i 342 -a 2 -x {2.2 3.0 1119 ------- null} h -t 323.370603678874 -s 2 -d 3 -p tcp -e 83 -c 2 -i 342 -a 2 -x {2.2 3.0 -1 ------- null} + -t 323.400000000005 -s 1 -d 2 -p tcp -e 40 -c 1 -i 343 -a 1 -x {1.0 2.1 259 ------- null} - -t 323.400000000005 -s 1 -d 2 -p tcp -e 40 -c 1 -i 343 -a 1 -x {1.0 2.1 259 ------- null} h -t 323.400000000005 -s 1 -d 2 -p tcp -e 40 -c 1 -i 343 -a 1 -x {1.0 2.1 -1 ------- null} r -t 323.403954496695 -s 3 -d 2 -p rap_data -e 1024 -c 102 -i 338 -a 102 -x {3.1 2.4 1 ------- null} + -t 323.403954496695 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 344 -a 0 -x {2.4 3.1 1 ------- null} - -t 323.403954496695 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 344 -a 0 -x {2.4 3.1 1 ------- null} h -t 323.403954496695 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 344 -a 0 -x {2.4 3.1 -1 ------- null} + -t 323.404 -s 2 -d 4 -p dummy -e 1024 -c 102 -i 0 -a 102 r -t 323.455714285719 -s 1 -d 2 -p tcp -e 40 -c 1 -i 343 -a 1 -x {1.0 2.1 259 ------- null} r -t 323.482460821731 -s 2 -d 3 -p tcp -e 83 -c 2 -i 342 -a 2 -x {2.2 3.0 1119 ------- null} + -t 323.500000000005 -s 3 -d 2 -p ack -e 40 -c 2 -i 345 -a 2 -x {3.0 2.2 87 ------- null} - -t 323.500000000005 -s 3 -d 2 -p ack -e 40 -c 2 -i 345 -a 2 -x {3.0 2.2 87 ------- null} h -t 323.500000000005 -s 3 -d 2 -p ack -e 40 -c 2 -i 345 -a 2 -x {3.0 2.2 -1 ------- null} r -t 323.510240210981 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 344 -a 0 -x {2.4 3.1 1 ------- null} r -t 323.550240210981 -s 3 -d 2 -p rap_data -e 1024 -c 101 -i 339 -a 101 -x {3.1 2.4 2 ------- null} r -t 323.605714285719 -s 3 -d 2 -p ack -e 40 -c 2 -i 345 -a 2 -x {3.0 2.2 87 ------- null} + -t 370 -s 0 -d 2 -p tcp -e 83 -c 0 -i 346 -a 0 -x {0.0 2.0 44 ---A--- null} - -t 370 -s 0 -d 2 -p tcp -e 83 -c 0 -i 346 -a 0 -x {0.0 2.0 44 ---A--- null} h -t 370 -s 0 -d 2 -p tcp -e 83 -c 0 -i 346 -a 0 -x {0.0 2.0 -1 ---A--- null} m -t 370 -s 0 -n _o139:0:370 -c purple -h circle v -t 370 sim_annotation 370 8 request from client 0 r -t 370.050442666667 -s 0 -d 2 -p tcp -e 83 -c 0 -i 346 -a 0 -x {0.0 2.0 44 ---A--- null} + -t 370.050442666667 -s 2 -d 0 -p ack -e 83 -c 0 -i 347 -a 0 -x {2.0 0.0 87 ---A--- null} - -t 370.050442666667 -s 2 -d 0 -p ack -e 83 -c 0 -i 347 -a 0 -x {2.0 0.0 87 ---A--- null} h -t 370.050442666667 -s 2 -d 0 -p ack -e 83 -c 0 -i 347 -a 0 -x {2.0 0.0 -1 ---A--- null} r -t 370.100885333333 -s 2 -d 0 -p ack -e 83 -c 0 -i 347 -a 0 -x {2.0 0.0 87 ---A--- null} m -t 370.10088533333328 -s 0 -n _o139:0:370 -c purple -h circle -X + -t 370.100885333333 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 348 -a 100 -x {2.3 0.1 1 ------- null} - -t 370.100885333333 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 348 -a 100 -x {2.3 0.1 1 ------- null} h -t 370.100885333333 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 348 -a 100 -x {2.3 0.1 -1 ------- null} r -t 370.156346666667 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 348 -a 100 -x {2.3 0.1 1 ------- null} + -t 370.156346666667 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 349 -a 0 -x {0.1 2.3 1 ------- null} - -t 370.156346666667 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 349 -a 0 -x {0.1 2.3 1 ------- null} h -t 370.156346666667 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 349 -a 0 -x {0.1 2.3 -1 ------- null} + -t 370.200000000016 -s 0 -d 2 -p tcp -e 40 -c 0 -i 350 -a 0 -x {0.0 2.0 87 ------- null} - -t 370.200000000016 -s 0 -d 2 -p tcp -e 40 -c 0 -i 350 -a 0 -x {0.0 2.0 87 ------- null} h -t 370.200000000016 -s 0 -d 2 -p tcp -e 40 -c 0 -i 350 -a 0 -x {0.0 2.0 -1 ------- null} r -t 370.206581333333 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 349 -a 0 -x {0.1 2.3 1 ------- null} r -t 370.250213333349 -s 0 -d 2 -p tcp -e 40 -c 0 -i 350 -a 0 -x {0.0 2.0 87 ------- null} + -t 370.600885333333 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 351 -a 100 -x {2.3 0.1 2 ------- null} - -t 370.600885333333 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 351 -a 100 -x {2.3 0.1 2 ------- null} h -t 370.600885333333 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 351 -a 100 -x {2.3 0.1 -1 ------- null} r -t 370.656346666667 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 351 -a 100 -x {2.3 0.1 2 ------- null} + -t 370.656346666667 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 352 -a 0 -x {0.1 2.3 2 ------- null} - -t 370.656346666667 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 352 -a 0 -x {0.1 2.3 2 ------- null} h -t 370.656346666667 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 352 -a 0 -x {0.1 2.3 -1 ------- null} r -t 370.706581333333 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 352 -a 0 -x {0.1 2.3 2 ------- null} + -t 370.752309333333 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 353 -a 100 -x {2.3 0.1 3 ------- null} - -t 370.752309333333 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 353 -a 100 -x {2.3 0.1 3 ------- null} h -t 370.752309333333 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 353 -a 100 -x {2.3 0.1 -1 ------- null} r -t 370.807770666667 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 353 -a 100 -x {2.3 0.1 3 ------- null} + -t 370.807770666667 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 354 -a 0 -x {0.1 2.3 3 ------- null} - -t 370.807770666667 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 354 -a 0 -x {0.1 2.3 3 ------- null} h -t 370.807770666667 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 354 -a 0 -x {0.1 2.3 -1 ------- null} r -t 370.858005333333 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 354 -a 0 -x {0.1 2.3 3 ------- null} + -t 370.980324992872 -s 2 -d 0 -p rap_data -e 1024 -c 101 -i 355 -a 101 -x {2.3 0.1 4 ------- null} - -t 370.980324992872 -s 2 -d 0 -p rap_data -e 1024 -c 101 -i 355 -a 101 -x {2.3 0.1 4 ------- null} h -t 370.980324992872 -s 2 -d 0 -p rap_data -e 1024 -c 101 -i 355 -a 101 -x {2.3 0.1 -1 ------- null} r -t 371.035786326206 -s 2 -d 0 -p rap_data -e 1024 -c 101 -i 355 -a 101 -x {2.3 0.1 4 ------- null} + -t 371.035786326206 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 356 -a 0 -x {0.1 2.3 4 ------- null} - -t 371.035786326206 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 356 -a 0 -x {0.1 2.3 4 ------- null} h -t 371.035786326206 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 356 -a 0 -x {0.1 2.3 -1 ------- null} + -t 371.056916652411 -s 2 -d 0 -p rap_data -e 1024 -c 101 -i 357 -a 101 -x {2.3 0.1 5 ------- null} - -t 371.056916652411 -s 2 -d 0 -p rap_data -e 1024 -c 101 -i 357 -a 101 -x {2.3 0.1 5 ------- null} h -t 371.056916652411 -s 2 -d 0 -p rap_data -e 1024 -c 101 -i 357 -a 101 -x {2.3 0.1 -1 ------- null} r -t 371.086020992872 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 356 -a 0 -x {0.1 2.3 4 ------- null} r -t 371.112377985744 -s 2 -d 0 -p rap_data -e 1024 -c 101 -i 357 -a 101 -x {2.3 0.1 5 ------- null} + -t 371.112377985744 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 358 -a 0 -x {0.1 2.3 5 ------- null} - -t 371.112377985744 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 358 -a 0 -x {0.1 2.3 5 ------- null} h -t 371.112377985744 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 358 -a 0 -x {0.1 2.3 -1 ------- null} + -t 371.13350831195 -s 2 -d 3 -p tcp -e 83 -c 2 -i 359 -a 2 -x {2.2 3.0 1162 ---A--- null} - -t 371.13350831195 -s 2 -d 3 -p tcp -e 83 -c 2 -i 359 -a 2 -x {2.2 3.0 1162 ---A--- null} h -t 371.13350831195 -s 2 -d 3 -p tcp -e 83 -c 2 -i 359 -a 2 -x {2.2 3.0 -1 ---A--- null} r -t 371.162612652411 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 358 -a 0 -x {0.1 2.3 5 ------- null} r -t 371.245365454807 -s 2 -d 3 -p tcp -e 83 -c 2 -i 359 -a 2 -x {2.2 3.0 1162 ---A--- null} + -t 371.245365454807 -s 3 -d 2 -p rap_data -e 1024 -c 102 -i 360 -a 102 -x {3.1 2.4 1 ------- null} - -t 371.245365454807 -s 3 -d 2 -p rap_data -e 1024 -c 102 -i 360 -a 102 -x {3.1 2.4 1 ------- null} h -t 371.245365454807 -s 3 -d 2 -p rap_data -e 1024 -c 102 -i 360 -a 102 -x {3.1 2.4 -1 ------- null} + -t 371.300000000016 -s 3 -d 2 -p ack -e 40 -c 2 -i 361 -a 2 -x {3.0 2.2 87 ------- null} - -t 371.391651169093 -s 3 -d 2 -p ack -e 40 -c 2 -i 361 -a 2 -x {3.0 2.2 87 ------- null} h -t 371.391651169093 -s 3 -d 2 -p ack -e 40 -c 2 -i 361 -a 2 -x {3.0 2.2 -1 ------- null} r -t 371.491651169093 -s 3 -d 2 -p rap_data -e 1024 -c 102 -i 360 -a 102 -x {3.1 2.4 1 ------- null} + -t 371.491651169093 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 362 -a 0 -x {2.4 3.1 1 ------- null} - -t 371.491651169093 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 362 -a 0 -x {2.4 3.1 1 ------- null} h -t 371.491651169093 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 362 -a 0 -x {2.4 3.1 -1 ------- null} + -t 371.492 -s 2 -d 4 -p dummy -e 1024 -c 102 -i 0 -a 102 + -t 371.492325695864 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 363 -a 100 -x {2.3 0.1 6 ------- null} - -t 371.492325695864 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 363 -a 100 -x {2.3 0.1 6 ------- null} h -t 371.492325695864 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 363 -a 100 -x {2.3 0.1 -1 ------- null} r -t 371.497365454807 -s 3 -d 2 -p ack -e 40 -c 2 -i 361 -a 2 -x {3.0 2.2 87 ------- null} r -t 371.547787029197 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 363 -a 100 -x {2.3 0.1 6 ------- null} + -t 371.547787029197 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 364 -a 0 -x {0.1 2.3 6 ------- null} - -t 371.547787029197 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 364 -a 0 -x {0.1 2.3 6 ------- null} h -t 371.547787029197 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 364 -a 0 -x {0.1 2.3 -1 ------- null} r -t 371.597936883379 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 362 -a 0 -x {2.4 3.1 1 ------- null} r -t 371.598021695864 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 364 -a 0 -x {0.1 2.3 6 ------- null} + -t 371.748623827231 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 365 -a 100 -x {2.3 0.1 7 ------- null} - -t 371.748623827231 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 365 -a 100 -x {2.3 0.1 7 ------- null} h -t 371.748623827231 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 365 -a 100 -x {2.3 0.1 -1 ------- null} r -t 371.804085160564 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 365 -a 100 -x {2.3 0.1 7 ------- null} + -t 371.804085160564 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 366 -a 0 -x {0.1 2.3 7 ------- null} - -t 371.804085160564 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 366 -a 0 -x {0.1 2.3 7 ------- null} h -t 371.804085160564 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 366 -a 0 -x {0.1 2.3 -1 ------- null} + -t 371.851143079778 -s 2 -d 0 -p rap_data -e 1024 -c 101 -i 367 -a 101 -x {2.3 0.1 8 ------- null} - -t 371.851143079778 -s 2 -d 0 -p rap_data -e 1024 -c 101 -i 367 -a 101 -x {2.3 0.1 8 ------- null} h -t 371.851143079778 -s 2 -d 0 -p rap_data -e 1024 -c 101 -i 367 -a 101 -x {2.3 0.1 -1 ------- null} r -t 371.854319827231 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 366 -a 0 -x {0.1 2.3 7 ------- null} + -t 371.902402706051 -s 2 -d 0 -p rap_data -e 1024 -c 102 -i 368 -a 102 -x {2.3 0.1 9 ------- null} - -t 371.902402706051 -s 2 -d 0 -p rap_data -e 1024 -c 102 -i 368 -a 102 -x {2.3 0.1 9 ------- null} h -t 371.902402706051 -s 2 -d 0 -p rap_data -e 1024 -c 102 -i 368 -a 102 -x {2.3 0.1 -1 ------- null} r -t 371.906604413111 -s 2 -d 0 -p rap_data -e 1024 -c 101 -i 367 -a 101 -x {2.3 0.1 8 ------- null} + -t 371.906604413111 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 369 -a 0 -x {0.1 2.3 8 ------- null} - -t 371.906604413111 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 369 -a 0 -x {0.1 2.3 8 ------- null} h -t 371.906604413111 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 369 -a 0 -x {0.1 2.3 -1 ------- null} + -t 371.953662332325 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 370 -a 100 -x {2.3 0.1 10 ------- null} - -t 371.953662332325 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 370 -a 100 -x {2.3 0.1 10 ------- null} h -t 371.953662332325 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 370 -a 100 -x {2.3 0.1 -1 ------- null} r -t 371.956839079778 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 369 -a 0 -x {0.1 2.3 8 ------- null} r -t 371.957864039384 -s 2 -d 0 -p rap_data -e 1024 -c 102 -i 368 -a 102 -x {2.3 0.1 9 ------- null} + -t 371.957864039384 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 371 -a 0 -x {0.1 2.3 9 ------- null} - -t 371.957864039384 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 371 -a 0 -x {0.1 2.3 9 ------- null} h -t 371.957864039384 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 371 -a 0 -x {0.1 2.3 -1 ------- null} + -t 371.988503482677 -s 2 -d 0 -p rap_data -e 1024 -c 101 -i 372 -a 101 -x {2.3 0.1 11 ------- null} - -t 371.988503482677 -s 2 -d 0 -p rap_data -e 1024 -c 101 -i 372 -a 101 -x {2.3 0.1 11 ------- null} h -t 371.988503482677 -s 2 -d 0 -p rap_data -e 1024 -c 101 -i 372 -a 101 -x {2.3 0.1 -1 ------- null} r -t 372.008098706051 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 371 -a 0 -x {0.1 2.3 9 ------- null} r -t 372.009123665658 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 370 -a 100 -x {2.3 0.1 10 ------- null} + -t 372.009123665658 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 373 -a 0 -x {0.1 2.3 10 ------- null} - -t 372.009123665658 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 373 -a 0 -x {0.1 2.3 10 ------- null} h -t 372.009123665658 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 373 -a 0 -x {0.1 2.3 -1 ------- null} + -t 372.02334463303 -s 2 -d 3 -p tcp -e 83 -c 2 -i 374 -a 2 -x {2.2 3.0 1205 ------- null} - -t 372.02334463303 -s 2 -d 3 -p tcp -e 83 -c 2 -i 374 -a 2 -x {2.2 3.0 1205 ------- null} h -t 372.02334463303 -s 2 -d 3 -p tcp -e 83 -c 2 -i 374 -a 2 -x {2.2 3.0 -1 ------- null} r -t 372.04396481601 -s 2 -d 0 -p rap_data -e 1024 -c 101 -i 372 -a 101 -x {2.3 0.1 11 ------- null} + -t 372.04396481601 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 375 -a 0 -x {0.1 2.3 11 ------- null} - -t 372.04396481601 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 375 -a 0 -x {0.1 2.3 11 ------- null} h -t 372.04396481601 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 375 -a 0 -x {0.1 2.3 -1 ------- null} r -t 372.059358332325 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 373 -a 0 -x {0.1 2.3 10 ------- null} r -t 372.094199482677 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 375 -a 0 -x {0.1 2.3 11 ------- null} r -t 372.135201775887 -s 2 -d 3 -p tcp -e 83 -c 2 -i 374 -a 2 -x {2.2 3.0 1205 ------- null} + -t 372.144222597664 -s 3 -d 2 -p rap_data -e 1024 -c 103 -i 376 -a 103 -x {3.1 2.4 2 ------- null} - -t 372.144222597664 -s 3 -d 2 -p rap_data -e 1024 -c 103 -i 376 -a 103 -x {3.1 2.4 2 ------- null} h -t 372.144222597664 -s 3 -d 2 -p rap_data -e 1024 -c 103 -i 376 -a 103 -x {3.1 2.4 -1 ------- null} + -t 372.200000000016 -s 3 -d 2 -p ack -e 40 -c 2 -i 377 -a 2 -x {3.0 2.2 87 ------- null} + -t 372.259600128961 -s 2 -d 0 -p rap_data -e 1024 -c 101 -i 378 -a 101 -x {2.3 0.1 12 ------- null} - -t 372.259600128961 -s 2 -d 0 -p rap_data -e 1024 -c 101 -i 378 -a 101 -x {2.3 0.1 12 ------- null} h -t 372.259600128961 -s 2 -d 0 -p rap_data -e 1024 -c 101 -i 378 -a 101 -x {2.3 0.1 -1 ------- null} + -t 372.28585073962 -s 2 -d 0 -p rap_data -e 1024 -c 102 -i 379 -a 102 -x {2.3 0.1 13 ------- null} - -t 372.28585073962 -s 2 -d 0 -p rap_data -e 1024 -c 102 -i 379 -a 102 -x {2.3 0.1 13 ------- null} h -t 372.28585073962 -s 2 -d 0 -p rap_data -e 1024 -c 102 -i 379 -a 102 -x {2.3 0.1 -1 ------- null} - -t 372.29050831195 -s 3 -d 2 -p ack -e 40 -c 2 -i 377 -a 2 -x {3.0 2.2 87 ------- null} h -t 372.29050831195 -s 3 -d 2 -p ack -e 40 -c 2 -i 377 -a 2 -x {3.0 2.2 -1 ------- null} + -t 372.312101350279 -s 2 -d 3 -p tcp -e 83 -c 2 -i 380 -a 2 -x {2.2 3.0 1248 ------- null} - -t 372.312101350279 -s 2 -d 3 -p tcp -e 83 -c 2 -i 380 -a 2 -x {2.2 3.0 1248 ------- null} h -t 372.312101350279 -s 2 -d 3 -p tcp -e 83 -c 2 -i 380 -a 2 -x {2.2 3.0 -1 ------- null} r -t 372.315061462295 -s 2 -d 0 -p rap_data -e 1024 -c 101 -i 378 -a 101 -x {2.3 0.1 12 ------- null} + -t 372.315061462295 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 381 -a 0 -x {0.1 2.3 12 ------- null} - -t 372.315061462295 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 381 -a 0 -x {0.1 2.3 12 ------- null} h -t 372.315061462295 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 381 -a 0 -x {0.1 2.3 -1 ------- null} r -t 372.341312072954 -s 2 -d 0 -p rap_data -e 1024 -c 102 -i 379 -a 102 -x {2.3 0.1 13 ------- null} + -t 372.341312072954 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 382 -a 0 -x {0.1 2.3 13 ------- null} - -t 372.341312072954 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 382 -a 0 -x {0.1 2.3 13 ------- null} h -t 372.341312072954 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 382 -a 0 -x {0.1 2.3 -1 ------- null} r -t 372.365296128961 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 381 -a 0 -x {0.1 2.3 12 ------- null} r -t 372.39050831195 -s 3 -d 2 -p rap_data -e 1024 -c 103 -i 376 -a 103 -x {3.1 2.4 2 ------- null} + -t 372.39050831195 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 383 -a 0 -x {2.4 3.1 2 ------- null} - -t 372.39050831195 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 383 -a 0 -x {2.4 3.1 2 ------- null} h -t 372.39050831195 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 383 -a 0 -x {2.4 3.1 -1 ------- null} + -t 372.391 -s 2 -d 4 -p dummy -e 1024 -c 103 -i 0 -a 103 + -t 372.390853182257 -s 2 -d 0 -p rap_data -e 1024 -c 103 -i 384 -a 103 -x {2.3 0.1 14 ------- null} - -t 372.390853182257 -s 2 -d 0 -p rap_data -e 1024 -c 103 -i 384 -a 103 -x {2.3 0.1 14 ------- null} h -t 372.390853182257 -s 2 -d 0 -p rap_data -e 1024 -c 103 -i 384 -a 103 -x {2.3 0.1 -1 ------- null} r -t 372.39154673962 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 382 -a 0 -x {0.1 2.3 13 ------- null} r -t 372.396222597664 -s 3 -d 2 -p ack -e 40 -c 2 -i 377 -a 2 -x {3.0 2.2 87 ------- null} + -t 372.417103792916 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 385 -a 100 -x {2.3 0.1 15 ------- null} - -t 372.417103792916 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 385 -a 100 -x {2.3 0.1 15 ------- null} h -t 372.417103792916 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 385 -a 100 -x {2.3 0.1 -1 ------- null} r -t 372.423958493137 -s 2 -d 3 -p tcp -e 83 -c 2 -i 380 -a 2 -x {2.2 3.0 1248 ------- null} + -t 372.443354403575 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 386 -a 100 -x {2.3 0.1 16 ------- null} - -t 372.443354403575 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 386 -a 100 -x {2.3 0.1 16 ------- null} h -t 372.443354403575 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 386 -a 100 -x {2.3 0.1 -1 ------- null} r -t 372.44631451559 -s 2 -d 0 -p rap_data -e 1024 -c 103 -i 384 -a 103 -x {2.3 0.1 14 ------- null} + -t 372.44631451559 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 387 -a 0 -x {0.1 2.3 14 ------- null} - -t 372.44631451559 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 387 -a 0 -x {0.1 2.3 14 ------- null} h -t 372.44631451559 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 387 -a 0 -x {0.1 2.3 -1 ------- null} r -t 372.472565126249 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 385 -a 100 -x {2.3 0.1 15 ------- null} + -t 372.472565126249 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 388 -a 0 -x {0.1 2.3 15 ------- null} - -t 372.472565126249 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 388 -a 0 -x {0.1 2.3 15 ------- null} h -t 372.472565126249 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 388 -a 0 -x {0.1 2.3 -1 ------- null} r -t 372.496549182257 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 387 -a 0 -x {0.1 2.3 14 ------- null} r -t 372.496794026235 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 383 -a 0 -x {2.4 3.1 2 ------- null} r -t 372.498815736908 -s 2 -d 0 -p rap_data -e 1024 -c 100 -i 386 -a 100 -x {2.3 0.1 16 ------- null} + -t 372.498815736908 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 389 -a 0 -x {0.1 2.3 16 ------- null} - -t 372.498815736908 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 389 -a 0 -x {0.1 2.3 16 ------- null} h -t 372.498815736908 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 389 -a 0 -x {0.1 2.3 -1 ------- null} + -t 372.500000000016 -s 3 -d 2 -p ack -e 40 -c 2 -i 390 -a 2 -x {3.0 2.2 87 ------- null} - -t 372.500000000016 -s 3 -d 2 -p ack -e 40 -c 2 -i 390 -a 2 -x {3.0 2.2 87 ------- null} h -t 372.500000000016 -s 3 -d 2 -p ack -e 40 -c 2 -i 390 -a 2 -x {3.0 2.2 -1 ------- null} + -t 372.506794026235 -s 3 -d 2 -p rap_data -e 1024 -c 103 -i 391 -a 103 -x {3.1 2.4 3 ------- null} - -t 372.506794026235 -s 3 -d 2 -p rap_data -e 1024 -c 103 -i 391 -a 103 -x {3.1 2.4 3 ------- null} h -t 372.506794026235 -s 3 -d 2 -p rap_data -e 1024 -c 103 -i 391 -a 103 -x {3.1 2.4 -1 ------- null} r -t 372.522799792916 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 388 -a 0 -x {0.1 2.3 15 ------- null} r -t 372.549050403575 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 389 -a 0 -x {0.1 2.3 16 ------- null} r -t 372.60571428573 -s 3 -d 2 -p ack -e 40 -c 2 -i 390 -a 2 -x {3.0 2.2 87 ------- null} r -t 372.753079740521 -s 3 -d 2 -p rap_data -e 1024 -c 103 -i 391 -a 103 -x {3.1 2.4 3 ------- null} + -t 372.753079740521 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 392 -a 0 -x {2.4 3.1 3 ------- null} - -t 372.753079740521 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 392 -a 0 -x {2.4 3.1 3 ------- null} h -t 372.753079740521 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 392 -a 0 -x {2.4 3.1 -1 ------- null} + -t 372.753 -s 2 -d 4 -p dummy -e 1024 -c 103 -i 0 -a 103 + -t 372.787747718098 -s 2 -d 3 -p tcp -e 83 -c 2 -i 393 -a 2 -x {2.2 3.0 1291 ------- null} - -t 372.787747718098 -s 2 -d 3 -p tcp -e 83 -c 2 -i 393 -a 2 -x {2.2 3.0 1291 ------- null} h -t 372.787747718098 -s 2 -d 3 -p tcp -e 83 -c 2 -i 393 -a 2 -x {2.2 3.0 -1 ------- null} + -t 372.787747718098 -s 2 -d 3 -p tcp -e 83 -c 2 -i 394 -a 2 -x {2.2 3.0 1334 ------- null} - -t 372.799604860955 -s 2 -d 3 -p tcp -e 83 -c 2 -i 394 -a 2 -x {2.2 3.0 1334 ------- null} h -t 372.799604860955 -s 2 -d 3 -p tcp -e 83 -c 2 -i 394 -a 2 -x {2.2 3.0 -1 ------- null} r -t 372.859365454807 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 392 -a 0 -x {2.4 3.1 3 ------- null} r -t 372.899604860955 -s 2 -d 3 -p tcp -e 83 -c 2 -i 393 -a 2 -x {2.2 3.0 1291 ------- null} + -t 372.900000000016 -s 3 -d 2 -p ack -e 40 -c 2 -i 395 -a 2 -x {3.0 2.2 87 ------- null} - -t 372.900000000016 -s 3 -d 2 -p ack -e 40 -c 2 -i 395 -a 2 -x {3.0 2.2 87 ------- null} h -t 372.900000000016 -s 3 -d 2 -p ack -e 40 -c 2 -i 395 -a 2 -x {3.0 2.2 -1 ------- null} r -t 372.911462003813 -s 2 -d 3 -p tcp -e 83 -c 2 -i 394 -a 2 -x {2.2 3.0 1334 ------- null} + -t 372.915865395438 -s 2 -d 0 -p rap_data -e 1024 -c 102 -i 396 -a 102 -x {2.3 0.1 17 ------- null} - -t 372.915865395438 -s 2 -d 0 -p rap_data -e 1024 -c 102 -i 396 -a 102 -x {2.3 0.1 17 ------- null} h -t 372.915865395438 -s 2 -d 0 -p rap_data -e 1024 -c 102 -i 396 -a 102 -x {2.3 0.1 -1 ------- null} + -t 372.942116006097 -s 2 -d 0 -p rap_data -e 1024 -c 103 -i 397 -a 103 -x {2.3 0.1 18 ------- null} - -t 372.942116006097 -s 2 -d 0 -p rap_data -e 1024 -c 103 -i 397 -a 103 -x {2.3 0.1 18 ------- null} h -t 372.942116006097 -s 2 -d 0 -p rap_data -e 1024 -c 103 -i 397 -a 103 -x {2.3 0.1 -1 ------- null} + -t 372.96000831195 -s 3 -d 2 -p rap_data -e 1024 -c 101 -i 398 -a 101 -x {3.1 2.4 4 ------- null} - -t 372.96000831195 -s 3 -d 2 -p rap_data -e 1024 -c 101 -i 398 -a 101 -x {3.1 2.4 4 ------- null} h -t 372.96000831195 -s 3 -d 2 -p rap_data -e 1024 -c 101 -i 398 -a 101 -x {3.1 2.4 -1 ------- null} r -t 372.971326728771 -s 2 -d 0 -p rap_data -e 1024 -c 102 -i 396 -a 102 -x {2.3 0.1 17 ------- null} + -t 372.971326728771 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 399 -a 0 -x {0.1 2.3 17 ------- null} - -t 372.971326728771 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 399 -a 0 -x {0.1 2.3 17 ------- null} h -t 372.971326728771 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 399 -a 0 -x {0.1 2.3 -1 ------- null} r -t 372.997577339431 -s 2 -d 0 -p rap_data -e 1024 -c 103 -i 397 -a 103 -x {2.3 0.1 18 ------- null} + -t 372.997577339431 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 400 -a 0 -x {0.1 2.3 18 ------- null} - -t 372.997577339431 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 400 -a 0 -x {0.1 2.3 18 ------- null} h -t 372.997577339431 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 400 -a 0 -x {0.1 2.3 -1 ------- null} + -t 373.000000000016 -s 3 -d 2 -p ack -e 40 -c 2 -i 401 -a 2 -x {3.0 2.2 87 ------- null} r -t 373.005714285731 -s 3 -d 2 -p ack -e 40 -c 2 -i 395 -a 2 -x {3.0 2.2 87 ------- null} r -t 373.021561395438 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 399 -a 0 -x {0.1 2.3 17 ------- null} r -t 373.047812006097 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 400 -a 0 -x {0.1 2.3 18 ------- null} + -t 373.050651169093 -s 3 -d 2 -p rap_data -e 1024 -c 103 -i 402 -a 103 -x {3.1 2.4 5 ------- null} d -t 373.050651169093 -s 3 -d 2 -p rap_data -e 1024 -c 103 -i 402 -a 103 -x {3.1 2.4 5 ------- null} - -t 373.106294026236 -s 3 -d 2 -p ack -e 40 -c 2 -i 401 -a 2 -x {3.0 2.2 87 ------- null} h -t 373.106294026236 -s 3 -d 2 -p ack -e 40 -c 2 -i 401 -a 2 -x {3.0 2.2 -1 ------- null} r -t 373.206294026236 -s 3 -d 2 -p rap_data -e 1024 -c 101 -i 398 -a 101 -x {3.1 2.4 4 ------- null} + -t 373.206294026236 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 403 -a 0 -x {2.4 3.1 4 ------- null} - -t 373.206294026236 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 403 -a 0 -x {2.4 3.1 4 ------- null} h -t 373.206294026236 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 403 -a 0 -x {2.4 3.1 -1 ------- null} + -t 373.206 -s 2 -d 4 -p dummy -e 1024 -c 101 -i 0 -a 101 r -t 373.21200831195 -s 3 -d 2 -p ack -e 40 -c 2 -i 401 -a 2 -x {3.0 2.2 87 ------- null} + -t 373.230872723347 -s 2 -d 0 -p rap_data -e 1024 -c 101 -i 404 -a 101 -x {2.3 0.1 19 ------- null} - -t 373.230872723347 -s 2 -d 0 -p rap_data -e 1024 -c 101 -i 404 -a 101 -x {2.3 0.1 19 ------- null} h -t 373.230872723347 -s 2 -d 0 -p rap_data -e 1024 -c 101 -i 404 -a 101 -x {2.3 0.1 -1 ------- null} + -t 373.257123334006 -s 2 -d 0 -p rap_data -e 1024 -c 102 -i 405 -a 102 -x {2.3 0.1 20 ------- null} - -t 373.257123334006 -s 2 -d 0 -p rap_data -e 1024 -c 102 -i 405 -a 102 -x {2.3 0.1 20 ------- null} h -t 373.257123334006 -s 2 -d 0 -p rap_data -e 1024 -c 102 -i 405 -a 102 -x {2.3 0.1 -1 ------- null} + -t 373.283373944665 -s 2 -d 0 -p ack -e 83 -c 0 -i 406 -a 0 -x {2.0 0.0 130 ---A--- null} - -t 373.283373944665 -s 2 -d 0 -p ack -e 83 -c 0 -i 406 -a 0 -x {2.0 0.0 130 ---A--- null} h -t 373.283373944665 -s 2 -d 0 -p ack -e 83 -c 0 -i 406 -a 0 -x {2.0 0.0 -1 ---A--- null} r -t 373.28633405668 -s 2 -d 0 -p rap_data -e 1024 -c 101 -i 404 -a 101 -x {2.3 0.1 19 ------- null} + -t 373.28633405668 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 407 -a 0 -x {0.1 2.3 19 ------- null} - -t 373.28633405668 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 407 -a 0 -x {0.1 2.3 19 ------- null} h -t 373.28633405668 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 407 -a 0 -x {0.1 2.3 -1 ------- null} r -t 373.312579740521 -s 2 -d 3 -p rap_ack -e 44 -c 0 -i 403 -a 0 -x {2.4 3.1 4 ------- null} r -t 373.312584667339 -s 2 -d 0 -p rap_data -e 1024 -c 102 -i 405 -a 102 -x {2.3 0.1 20 ------- null} + -t 373.312584667339 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 408 -a 0 -x {0.1 2.3 20 ------- null} - -t 373.312584667339 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 408 -a 0 -x {0.1 2.3 20 ------- null} h -t 373.312584667339 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 408 -a 0 -x {0.1 2.3 -1 ------- null} r -t 373.333816611332 -s 2 -d 0 -p ack -e 83 -c 0 -i 406 -a 0 -x {2.0 0.0 130 ---A--- null} + -t 373.333816611332 -s 2 -d 3 -p tcp -e 83 -c 2 -i 409 -a 2 -x {2.2 3.0 1377 ------- null} - -t 373.333816611332 -s 2 -d 3 -p tcp -e 83 -c 2 -i 409 -a 2 -x {2.2 3.0 1377 ------- null} h -t 373.333816611332 -s 2 -d 3 -p tcp -e 83 -c 2 -i 409 -a 2 -x {2.2 3.0 -1 ------- null} r -t 373.336568723347 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 407 -a 0 -x {0.1 2.3 19 ------- null} r -t 373.362819334006 -s 0 -d 2 -p rap_ack -e 44 -c 0 -i 408 -a 0 -x {0.1 2.3 20 ------- null} + -t 373.400000000016 -s 0 -d 2 -p tcp -e 40 -c 0 -i 410 -a 0 -x {0.0 2.0 87 ------- null} - -t 373.400000000016 -s 0 -d 2 -p tcp -e 40 -c 0 -i 410 -a 0 -x {0.0 2.0 87 ------- null} h -t 373.400000000016 -s 0 -d 2 -p tcp -e 40 -c 0 -i 410 -a 0 -x {0.0 2.0 -1 ------- null} r -t 373.445673754189 -s 2 -d 3 -p tcp -e 83 -c 2 -i 409 -a 2 -x {2.2 3.0 1377 ------- null} r -t 373.45021333335 -s 0 -d 2 -p tcp -e 40 -c 0 -i 410 -a 0 -x {0.0 2.0 87 ------- null} + -t 373.500000000016 -s 3 -d 2 -p ack -e 40 -c 2 -i 411 -a 2 -x {3.0 2.2 87 ------- null} - -t 373.500000000016 -s 3 -d 2 -p ack -e 40 -c 2 -i 411 -a 2 -x {3.0 2.2 87 ------- null} h -t 373.500000000016 -s 3 -d 2 -p ack -e 40 -c 2 -i 411 -a 2 -x {3.0 2.2 -1 ------- null} r -t 373.605714285731 -s 3 -d 2 -p ack -e 40 -c 2 -i 411 -a 2 -x {3.0 2.2 87 ------- null} + -t 420 -s 1 -d 2 -p tcp -e 83 -c 1 -i 412 -a 1 -x {1.0 2.1 259 ---A--- null} - -t 420 -s 1 -d 2 -p tcp -e 83 -c 1 -i 412 -a 1 -x {1.0 2.1 259 ---A--- null} h -t 420 -s 1 -d 2 -p tcp -e 83 -c 1 -i 412 -a 1 -x {1.0 2.1 -1 ---A--- null} m -t 420 -s 1 -n _o139:0:420 -c purple -h circle v -t 420 sim_annotation 420 9 request from client 1 r -t 420.061857142857 -s 1 -d 2 -p tcp -e 83 -c 1 -i 412 -a 1 -x {1.0 2.1 259 ---A--- null} + -t 420.061857142857 -s 2 -d 1 -p ack -e 83 -c 1 -i 413 -a 1 -x {2.1 1.0 517 ---A--- null} - -t 420.061857142857 -s 2 -d 1 -p ack -e 83 -c 1 -i 413 -a 1 -x {2.1 1.0 517 ---A--- null} h -t 420.061857142857 -s 2 -d 1 -p ack -e 83 -c 1 -i 413 -a 1 -x {2.1 1.0 -1 ---A--- null} r -t 420.123714285714 -s 2 -d 1 -p ack -e 83 -c 1 -i 413 -a 1 -x {2.1 1.0 517 ---A--- null} m -t 420.1237142857143 -s 1 -n _o139:0:420 -c purple -h circle -X + -t 420.123714285714 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 414 -a 100 -x {2.3 1.1 1 ------- null} - -t 420.123714285714 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 414 -a 100 -x {2.3 1.1 1 ------- null} h -t 420.123714285714 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 414 -a 100 -x {2.3 1.1 -1 ------- null} + -t 420.200000000027 -s 1 -d 2 -p tcp -e 40 -c 1 -i 415 -a 1 -x {1.0 2.1 302 ------- null} - -t 420.200000000027 -s 1 -d 2 -p tcp -e 40 -c 1 -i 415 -a 1 -x {1.0 2.1 302 ------- null} h -t 420.200000000027 -s 1 -d 2 -p tcp -e 40 -c 1 -i 415 -a 1 -x {1.0 2.1 -1 ------- null} r -t 420.255714285741 -s 1 -d 2 -p tcp -e 40 -c 1 -i 415 -a 1 -x {1.0 2.1 302 ------- null} r -t 420.32 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 414 -a 100 -x {2.3 1.1 1 ------- null} + -t 420.32 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 416 -a 0 -x {1.1 2.3 1 ------- null} - -t 420.32 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 416 -a 0 -x {1.1 2.3 1 ------- null} h -t 420.32 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 416 -a 0 -x {1.1 2.3 -1 ------- null} r -t 420.376285714286 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 416 -a 0 -x {1.1 2.3 1 ------- null} + -t 420.623714285714 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 417 -a 100 -x {2.3 1.1 2 ------- null} - -t 420.623714285714 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 417 -a 100 -x {2.3 1.1 2 ------- null} h -t 420.623714285714 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 417 -a 100 -x {2.3 1.1 -1 ------- null} + -t 420.811857142857 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 418 -a 100 -x {2.3 1.1 3 ------- null} - -t 420.811857142857 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 418 -a 100 -x {2.3 1.1 3 ------- null} h -t 420.811857142857 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 418 -a 100 -x {2.3 1.1 -1 ------- null} r -t 420.82 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 417 -a 100 -x {2.3 1.1 2 ------- null} + -t 420.82 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 419 -a 0 -x {1.1 2.3 2 ------- null} - -t 420.82 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 419 -a 0 -x {1.1 2.3 2 ------- null} h -t 420.82 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 419 -a 0 -x {1.1 2.3 -1 ------- null} r -t 420.876285714286 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 419 -a 0 -x {1.1 2.3 2 ------- null} + -t 421 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 420 -a 100 -x {2.3 1.1 4 ------- null} - -t 421 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 420 -a 100 -x {2.3 1.1 4 ------- null} h -t 421 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 420 -a 100 -x {2.3 1.1 -1 ------- null} r -t 421.008142857143 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 418 -a 100 -x {2.3 1.1 3 ------- null} + -t 421.008142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 421 -a 0 -x {1.1 2.3 3 ------- null} - -t 421.008142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 421 -a 0 -x {1.1 2.3 3 ------- null} h -t 421.008142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 421 -a 0 -x {1.1 2.3 -1 ------- null} r -t 421.064428571429 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 421 -a 0 -x {1.1 2.3 3 ------- null} + -t 421.117709615853 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 422 -a 101 -x {2.3 1.1 5 ------- null} - -t 421.146285714286 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 422 -a 101 -x {2.3 1.1 5 ------- null} h -t 421.146285714286 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 422 -a 101 -x {2.3 1.1 -1 ------- null} r -t 421.196285714286 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 420 -a 100 -x {2.3 1.1 4 ------- null} + -t 421.196285714286 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 423 -a 0 -x {1.1 2.3 4 ------- null} - -t 421.196285714286 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 423 -a 0 -x {1.1 2.3 4 ------- null} h -t 421.196285714286 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 423 -a 0 -x {1.1 2.3 -1 ------- null} + -t 421.235419231706 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 424 -a 101 -x {2.3 1.1 6 ------- null} r -t 421.252571428571 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 423 -a 0 -x {1.1 2.3 4 ------- null} - -t 421.292571428571 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 424 -a 101 -x {2.3 1.1 6 ------- null} h -t 421.292571428571 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 424 -a 101 -x {2.3 1.1 -1 ------- null} r -t 421.342571428571 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 422 -a 101 -x {2.3 1.1 5 ------- null} + -t 421.342571428571 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 425 -a 0 -x {1.1 2.3 5 ------- null} - -t 421.342571428571 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 425 -a 0 -x {1.1 2.3 5 ------- null} h -t 421.342571428571 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 425 -a 0 -x {1.1 2.3 -1 ------- null} + -t 421.353128847559 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 426 -a 100 -x {2.3 1.1 7 ------- null} r -t 421.398857142857 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 425 -a 0 -x {1.1 2.3 5 ------- null} + -t 421.43491954857 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 427 -a 101 -x {2.3 1.1 8 ------- null} d -t 421.43491954857 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 427 -a 101 -x {2.3 1.1 8 ------- null} - -t 421.438857142857 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 426 -a 100 -x {2.3 1.1 7 ------- null} h -t 421.438857142857 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 426 -a 100 -x {2.3 1.1 -1 ------- null} r -t 421.488857142857 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 424 -a 101 -x {2.3 1.1 6 ------- null} + -t 421.488857142857 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 428 -a 0 -x {1.1 2.3 6 ------- null} - -t 421.488857142857 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 428 -a 0 -x {1.1 2.3 6 ------- null} h -t 421.488857142857 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 428 -a 0 -x {1.1 2.3 -1 ------- null} r -t 421.545142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 428 -a 0 -x {1.1 2.3 6 ------- null} + -t 421.59850095059 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 429 -a 100 -x {2.3 1.1 9 ------- null} - -t 421.59850095059 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 429 -a 100 -x {2.3 1.1 9 ------- null} h -t 421.59850095059 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 429 -a 100 -x {2.3 1.1 -1 ------- null} r -t 421.635142857143 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 426 -a 100 -x {2.3 1.1 7 ------- null} + -t 421.635142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 430 -a 0 -x {1.1 2.3 7 ------- null} - -t 421.635142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 430 -a 0 -x {1.1 2.3 7 ------- null} h -t 421.635142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 430 -a 0 -x {1.1 2.3 -1 ------- null} + -t 421.662402231214 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 431 -a 102 -x {2.3 1.1 10 ------- null} r -t 421.691428571429 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 430 -a 0 -x {1.1 2.3 7 ------- null} + -t 421.726303511838 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 432 -a 101 -x {2.3 1.1 11 ------- null} d -t 421.726303511838 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 432 -a 101 -x {2.3 1.1 11 ------- null} - -t 421.744786664876 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 431 -a 102 -x {2.3 1.1 10 ------- null} h -t 421.744786664876 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 431 -a 102 -x {2.3 1.1 -1 ------- null} + -t 421.790204792462 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 433 -a 102 -x {2.3 1.1 12 ------- null} r -t 421.794786664876 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 429 -a 100 -x {2.3 1.1 9 ------- null} + -t 421.794786664876 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 434 -a 0 -x {1.1 2.3 9 ------- null} - -t 421.794786664876 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 434 -a 0 -x {1.1 2.3 9 ------- null} h -t 421.794786664876 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 434 -a 0 -x {1.1 2.3 -1 ------- null} r -t 421.851072379162 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 434 -a 0 -x {1.1 2.3 9 ------- null} + -t 421.854106073086 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 435 -a 100 -x {2.3 1.1 13 ------- null} d -t 421.854106073086 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 435 -a 100 -x {2.3 1.1 13 ------- null} - -t 421.891072379162 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 433 -a 102 -x {2.3 1.1 12 ------- null} h -t 421.891072379162 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 433 -a 102 -x {2.3 1.1 -1 ------- null} + -t 421.918007353709 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 436 -a 100 -x {2.3 1.1 14 ------- null} r -t 421.941072379162 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 431 -a 102 -x {2.3 1.1 10 ------- null} + -t 421.941072379162 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 437 -a 0 -x {1.1 2.3 10 ------- null} - -t 421.941072379162 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 437 -a 0 -x {1.1 2.3 10 ------- null} h -t 421.941072379162 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 437 -a 0 -x {1.1 2.3 -1 ------- null} + -t 421.970168099453 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 438 -a 101 -x {2.3 1.1 15 ------- null} d -t 421.970168099453 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 438 -a 101 -x {2.3 1.1 15 ------- null} r -t 421.997358093447 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 437 -a 0 -x {1.1 2.3 10 ------- null} - -t 422.037358093447 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 436 -a 100 -x {2.3 1.1 14 ------- null} h -t 422.037358093447 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 436 -a 100 -x {2.3 1.1 -1 ------- null} r -t 422.087358093447 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 433 -a 102 -x {2.3 1.1 12 ------- null} + -t 422.087358093447 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 439 -a 0 -x {1.1 2.3 12 ------- null} - -t 422.087358093447 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 439 -a 0 -x {1.1 2.3 12 ------- null} h -t 422.087358093447 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 439 -a 0 -x {1.1 2.3 -1 ------- null} + -t 422.126650336685 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 440 -a 102 -x {2.3 1.1 16 ------- null} r -t 422.143643807733 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 439 -a 0 -x {1.1 2.3 12 ------- null} - -t 422.183643807733 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 440 -a 102 -x {2.3 1.1 16 ------- null} h -t 422.183643807733 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 440 -a 102 -x {2.3 1.1 -1 ------- null} + -t 422.230971828173 -s 2 -d 1 -p ack -e 83 -c 1 -i 441 -a 1 -x {2.1 1.0 560 ---A--- null} r -t 422.233643807733 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 436 -a 100 -x {2.3 1.1 14 ------- null} + -t 422.233643807733 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 442 -a 0 -x {1.1 2.3 14 ------- null} - -t 422.233643807733 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 442 -a 0 -x {1.1 2.3 14 ------- null} h -t 422.233643807733 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 442 -a 0 -x {1.1 2.3 -1 ------- null} r -t 422.289929522019 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 442 -a 0 -x {1.1 2.3 14 ------- null} - -t 422.329929522019 -s 2 -d 1 -p ack -e 83 -c 1 -i 441 -a 1 -x {2.1 1.0 560 ---A--- null} h -t 422.329929522019 -s 2 -d 1 -p ack -e 83 -c 1 -i 441 -a 1 -x {2.1 1.0 -1 ---A--- null} r -t 422.379929522019 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 440 -a 102 -x {2.3 1.1 16 ------- null} + -t 422.379929522019 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 443 -a 0 -x {1.1 2.3 16 ------- null} - -t 422.379929522019 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 443 -a 0 -x {1.1 2.3 16 ------- null} h -t 422.379929522019 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 443 -a 0 -x {1.1 2.3 -1 ------- null} r -t 422.391786664876 -s 2 -d 1 -p ack -e 83 -c 1 -i 441 -a 1 -x {2.1 1.0 560 ---A--- null} + -t 422.400000000027 -s 1 -d 2 -p tcp -e 40 -c 1 -i 444 -a 1 -x {1.0 2.1 302 ------- null} - -t 422.400000000027 -s 1 -d 2 -p tcp -e 40 -c 1 -i 444 -a 1 -x {1.0 2.1 302 ------- null} h -t 422.400000000027 -s 1 -d 2 -p tcp -e 40 -c 1 -i 444 -a 1 -x {1.0 2.1 -1 ------- null} r -t 422.436215236305 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 443 -a 0 -x {1.1 2.3 16 ------- null} r -t 422.455714285742 -s 1 -d 2 -p tcp -e 40 -c 1 -i 444 -a 1 -x {1.0 2.1 302 ------- null} + -t 470 -s 1 -d 2 -p tcp -e 83 -c 1 -i 445 -a 1 -x {1.0 2.1 302 ---A--- null} - -t 470 -s 1 -d 2 -p tcp -e 83 -c 1 -i 445 -a 1 -x {1.0 2.1 302 ---A--- null} h -t 470 -s 1 -d 2 -p tcp -e 83 -c 1 -i 445 -a 1 -x {1.0 2.1 -1 ---A--- null} m -t 470 -s 1 -n _o139:0:470 -c purple -h circle v -t 470 sim_annotation 470 10 request from client 1 r -t 470.061857142857 -s 1 -d 2 -p tcp -e 83 -c 1 -i 445 -a 1 -x {1.0 2.1 302 ---A--- null} + -t 470.061857142857 -s 2 -d 1 -p ack -e 83 -c 1 -i 446 -a 1 -x {2.1 1.0 603 ---A--- null} - -t 470.061857142857 -s 2 -d 1 -p ack -e 83 -c 1 -i 446 -a 1 -x {2.1 1.0 603 ---A--- null} h -t 470.061857142857 -s 2 -d 1 -p ack -e 83 -c 1 -i 446 -a 1 -x {2.1 1.0 -1 ---A--- null} r -t 470.123714285714 -s 2 -d 1 -p ack -e 83 -c 1 -i 446 -a 1 -x {2.1 1.0 603 ---A--- null} m -t 470.1237142857143 -s 1 -n _o139:0:470 -c purple -h circle -X + -t 470.123714285714 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 447 -a 100 -x {2.3 1.1 1 ------- null} - -t 470.123714285714 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 447 -a 100 -x {2.3 1.1 1 ------- null} h -t 470.123714285714 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 447 -a 100 -x {2.3 1.1 -1 ------- null} + -t 470.200000000038 -s 1 -d 2 -p tcp -e 40 -c 1 -i 448 -a 1 -x {1.0 2.1 345 ------- null} - -t 470.200000000038 -s 1 -d 2 -p tcp -e 40 -c 1 -i 448 -a 1 -x {1.0 2.1 345 ------- null} h -t 470.200000000038 -s 1 -d 2 -p tcp -e 40 -c 1 -i 448 -a 1 -x {1.0 2.1 -1 ------- null} r -t 470.255714285752 -s 1 -d 2 -p tcp -e 40 -c 1 -i 448 -a 1 -x {1.0 2.1 345 ------- null} r -t 470.32 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 447 -a 100 -x {2.3 1.1 1 ------- null} + -t 470.32 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 449 -a 0 -x {1.1 2.3 1 ------- null} - -t 470.32 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 449 -a 0 -x {1.1 2.3 1 ------- null} h -t 470.32 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 449 -a 0 -x {1.1 2.3 -1 ------- null} r -t 470.376285714286 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 449 -a 0 -x {1.1 2.3 1 ------- null} + -t 470.623714285714 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 450 -a 100 -x {2.3 1.1 2 ------- null} - -t 470.623714285714 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 450 -a 100 -x {2.3 1.1 2 ------- null} h -t 470.623714285714 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 450 -a 100 -x {2.3 1.1 -1 ------- null} + -t 470.811857142857 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 451 -a 100 -x {2.3 1.1 3 ------- null} - -t 470.811857142857 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 451 -a 100 -x {2.3 1.1 3 ------- null} h -t 470.811857142857 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 451 -a 100 -x {2.3 1.1 -1 ------- null} r -t 470.82 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 450 -a 100 -x {2.3 1.1 2 ------- null} + -t 470.82 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 452 -a 0 -x {1.1 2.3 2 ------- null} - -t 470.82 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 452 -a 0 -x {1.1 2.3 2 ------- null} h -t 470.82 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 452 -a 0 -x {1.1 2.3 -1 ------- null} r -t 470.876285714286 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 452 -a 0 -x {1.1 2.3 2 ------- null} + -t 471 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 453 -a 100 -x {2.3 1.1 4 ------- null} - -t 471 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 453 -a 100 -x {2.3 1.1 4 ------- null} h -t 471 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 453 -a 100 -x {2.3 1.1 -1 ------- null} r -t 471.008142857143 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 451 -a 100 -x {2.3 1.1 3 ------- null} + -t 471.008142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 454 -a 0 -x {1.1 2.3 3 ------- null} - -t 471.008142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 454 -a 0 -x {1.1 2.3 3 ------- null} h -t 471.008142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 454 -a 0 -x {1.1 2.3 -1 ------- null} r -t 471.064428571429 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 454 -a 0 -x {1.1 2.3 3 ------- null} + -t 471.117709615853 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 455 -a 101 -x {2.3 1.1 5 ------- null} - -t 471.146285714286 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 455 -a 101 -x {2.3 1.1 5 ------- null} h -t 471.146285714286 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 455 -a 101 -x {2.3 1.1 -1 ------- null} r -t 471.196285714286 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 453 -a 100 -x {2.3 1.1 4 ------- null} + -t 471.196285714286 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 456 -a 0 -x {1.1 2.3 4 ------- null} - -t 471.196285714286 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 456 -a 0 -x {1.1 2.3 4 ------- null} h -t 471.196285714286 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 456 -a 0 -x {1.1 2.3 -1 ------- null} + -t 471.235419231706 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 457 -a 101 -x {2.3 1.1 6 ------- null} r -t 471.252571428571 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 456 -a 0 -x {1.1 2.3 4 ------- null} - -t 471.292571428571 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 457 -a 101 -x {2.3 1.1 6 ------- null} h -t 471.292571428571 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 457 -a 101 -x {2.3 1.1 -1 ------- null} r -t 471.342571428571 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 455 -a 101 -x {2.3 1.1 5 ------- null} + -t 471.342571428571 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 458 -a 0 -x {1.1 2.3 5 ------- null} - -t 471.342571428571 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 458 -a 0 -x {1.1 2.3 5 ------- null} h -t 471.342571428571 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 458 -a 0 -x {1.1 2.3 -1 ------- null} + -t 471.353128847559 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 459 -a 100 -x {2.3 1.1 7 ------- null} r -t 471.398857142857 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 458 -a 0 -x {1.1 2.3 5 ------- null} + -t 471.43491954857 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 460 -a 101 -x {2.3 1.1 8 ------- null} d -t 471.43491954857 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 460 -a 101 -x {2.3 1.1 8 ------- null} - -t 471.438857142857 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 459 -a 100 -x {2.3 1.1 7 ------- null} h -t 471.438857142857 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 459 -a 100 -x {2.3 1.1 -1 ------- null} r -t 471.488857142857 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 457 -a 101 -x {2.3 1.1 6 ------- null} + -t 471.488857142857 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 461 -a 0 -x {1.1 2.3 6 ------- null} - -t 471.488857142857 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 461 -a 0 -x {1.1 2.3 6 ------- null} h -t 471.488857142857 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 461 -a 0 -x {1.1 2.3 -1 ------- null} r -t 471.545142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 461 -a 0 -x {1.1 2.3 6 ------- null} + -t 471.59850095059 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 462 -a 100 -x {2.3 1.1 9 ------- null} - -t 471.59850095059 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 462 -a 100 -x {2.3 1.1 9 ------- null} h -t 471.59850095059 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 462 -a 100 -x {2.3 1.1 -1 ------- null} r -t 471.635142857143 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 459 -a 100 -x {2.3 1.1 7 ------- null} + -t 471.635142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 463 -a 0 -x {1.1 2.3 7 ------- null} - -t 471.635142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 463 -a 0 -x {1.1 2.3 7 ------- null} h -t 471.635142857143 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 463 -a 0 -x {1.1 2.3 -1 ------- null} + -t 471.662402231214 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 464 -a 102 -x {2.3 1.1 10 ------- null} r -t 471.691428571429 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 463 -a 0 -x {1.1 2.3 7 ------- null} + -t 471.726303511838 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 465 -a 101 -x {2.3 1.1 11 ------- null} d -t 471.726303511838 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 465 -a 101 -x {2.3 1.1 11 ------- null} - -t 471.744786664876 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 464 -a 102 -x {2.3 1.1 10 ------- null} h -t 471.744786664876 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 464 -a 102 -x {2.3 1.1 -1 ------- null} + -t 471.790204792462 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 466 -a 102 -x {2.3 1.1 12 ------- null} r -t 471.794786664876 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 462 -a 100 -x {2.3 1.1 9 ------- null} + -t 471.794786664876 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 467 -a 0 -x {1.1 2.3 9 ------- null} - -t 471.794786664876 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 467 -a 0 -x {1.1 2.3 9 ------- null} h -t 471.794786664876 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 467 -a 0 -x {1.1 2.3 -1 ------- null} r -t 471.851072379162 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 467 -a 0 -x {1.1 2.3 9 ------- null} + -t 471.854106073086 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 468 -a 100 -x {2.3 1.1 13 ------- null} d -t 471.854106073086 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 468 -a 100 -x {2.3 1.1 13 ------- null} - -t 471.891072379162 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 466 -a 102 -x {2.3 1.1 12 ------- null} h -t 471.891072379162 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 466 -a 102 -x {2.3 1.1 -1 ------- null} + -t 471.918007353709 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 469 -a 100 -x {2.3 1.1 14 ------- null} r -t 471.941072379162 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 464 -a 102 -x {2.3 1.1 10 ------- null} + -t 471.941072379162 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 470 -a 0 -x {1.1 2.3 10 ------- null} - -t 471.941072379162 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 470 -a 0 -x {1.1 2.3 10 ------- null} h -t 471.941072379162 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 470 -a 0 -x {1.1 2.3 -1 ------- null} + -t 471.970168099453 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 471 -a 101 -x {2.3 1.1 15 ------- null} d -t 471.970168099453 -s 2 -d 1 -p rap_data -e 1024 -c 101 -i 471 -a 101 -x {2.3 1.1 15 ------- null} r -t 471.997358093447 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 470 -a 0 -x {1.1 2.3 10 ------- null} - -t 472.037358093447 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 469 -a 100 -x {2.3 1.1 14 ------- null} h -t 472.037358093447 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 469 -a 100 -x {2.3 1.1 -1 ------- null} r -t 472.087358093447 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 466 -a 102 -x {2.3 1.1 12 ------- null} + -t 472.087358093447 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 472 -a 0 -x {1.1 2.3 12 ------- null} - -t 472.087358093447 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 472 -a 0 -x {1.1 2.3 12 ------- null} h -t 472.087358093447 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 472 -a 0 -x {1.1 2.3 -1 ------- null} + -t 472.126650336685 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 473 -a 102 -x {2.3 1.1 16 ------- null} r -t 472.143643807733 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 472 -a 0 -x {1.1 2.3 12 ------- null} - -t 472.183643807733 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 473 -a 102 -x {2.3 1.1 16 ------- null} h -t 472.183643807733 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 473 -a 102 -x {2.3 1.1 -1 ------- null} + -t 472.230971828173 -s 2 -d 1 -p ack -e 83 -c 1 -i 474 -a 1 -x {2.1 1.0 646 ---A--- null} r -t 472.233643807733 -s 2 -d 1 -p rap_data -e 1024 -c 100 -i 469 -a 100 -x {2.3 1.1 14 ------- null} + -t 472.233643807733 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 475 -a 0 -x {1.1 2.3 14 ------- null} - -t 472.233643807733 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 475 -a 0 -x {1.1 2.3 14 ------- null} h -t 472.233643807733 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 475 -a 0 -x {1.1 2.3 -1 ------- null} r -t 472.289929522019 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 475 -a 0 -x {1.1 2.3 14 ------- null} - -t 472.329929522019 -s 2 -d 1 -p ack -e 83 -c 1 -i 474 -a 1 -x {2.1 1.0 646 ---A--- null} h -t 472.329929522019 -s 2 -d 1 -p ack -e 83 -c 1 -i 474 -a 1 -x {2.1 1.0 -1 ---A--- null} r -t 472.379929522019 -s 2 -d 1 -p rap_data -e 1024 -c 102 -i 473 -a 102 -x {2.3 1.1 16 ------- null} + -t 472.379929522019 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 476 -a 0 -x {1.1 2.3 16 ------- null} - -t 472.379929522019 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 476 -a 0 -x {1.1 2.3 16 ------- null} h -t 472.379929522019 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 476 -a 0 -x {1.1 2.3 -1 ------- null} r -t 472.391786664876 -s 2 -d 1 -p ack -e 83 -c 1 -i 474 -a 1 -x {2.1 1.0 646 ---A--- null} + -t 472.400000000039 -s 1 -d 2 -p tcp -e 40 -c 1 -i 477 -a 1 -x {1.0 2.1 345 ------- null} - -t 472.400000000039 -s 1 -d 2 -p tcp -e 40 -c 1 -i 477 -a 1 -x {1.0 2.1 345 ------- null} h -t 472.400000000039 -s 1 -d 2 -p tcp -e 40 -c 1 -i 477 -a 1 -x {1.0 2.1 -1 ------- null} r -t 472.436215236305 -s 1 -d 2 -p rap_ack -e 44 -c 0 -i 476 -a 0 -x {1.1 2.3 16 ------- null} r -t 472.455714285753 -s 1 -d 2 -p tcp -e 40 -c 1 -i 477 -a 1 -x {1.0 2.1 345 ------- null} nam-1.15/ex/mobigen.nam0000664000076400007660000051006406610775007013643 0ustar tomhnsnamv -t 0 set_rate_ext 50ms 1 W -t * -x 4 -y 4 n -t * -s 0 -x 3.037846 -y 1.072501 -v circle -color black n -t * -s 1 -x 1.524222 -y 1.595152 -v circle -color black n -t * -s 2 -x 1.713164 -y 1.153432 -v circle -color black n -t * -s 3 -x 1.731484 -y 1.046555 -v circle -color black n -t * -s 4 -x 1.455174 -y 1.112263 -v circle -color black n -t * -s 5 -x 1.797106 -y 3.960331 -v circle -color black n -t * -s 6 -x 1.287662 -y 1.743625 -v circle -color black n -t * -s 7 -x 1.104326 -y 0.411512 -v circle -color black n -t * -s 8 -x 0.283228 -y 0.220960 -v circle -color black n -t * -s 9 -x 1.680240 -y 3.800387 -v circle -color black n -t * -s 10 -x 1.103004 -y 2.184623 -v circle -color black n -t * -s 11 -x 0.964902 -y 1.105926 -v circle -color black n -t * -s 12 -x 3.305578 -y 0.846136 -v circle -color black n -t * -s 13 -x 1.013832 -y 3.474574 -v circle -color black n -t * -s 14 -x 1.168996 -y 3.313350 -v circle -color black n -t * -s 15 -x 3.481106 -y 2.946065 -v circle -color black n -t * -s 16 -x 2.517159 -y 1.891615 -v circle -color black n -t * -s 17 -x 0.375098 -y 0.269824 -v circle -color black n -t * -s 18 -x 2.932034 -y 2.695286 -v circle -color black n -t * -s 19 -x 3.668319 -y 1.443471 -v circle -color black l -t * -s 2 -d 1 -S up -r 10Mb -D 2ms l -t * -s 3 -d 1 -S up -r 10Mb -D 2ms l -t * -s 3 -d 2 -S up -r 10Mb -D 2ms l -t * -s 4 -d 1 -S up -r 10Mb -D 2ms l -t * -s 4 -d 2 -S up -r 10Mb -D 2ms l -t * -s 4 -d 3 -S up -r 10Mb -D 2ms l -t * -s 6 -d 1 -S up -r 10Mb -D 2ms l -t * -s 6 -d 2 -S up -r 10Mb -D 2ms l -t * -s 6 -d 3 -S up -r 10Mb -D 2ms l -t * -s 6 -d 4 -S up -r 10Mb -D 2ms l -t * -s 7 -d 2 -S up -r 10Mb -D 2ms l -t * -s 7 -d 3 -S up -r 10Mb -D 2ms l -t * -s 7 -d 4 -S up -r 10Mb -D 2ms l -t * -s 8 -d 7 -S up -r 10Mb -D 2ms l -t * -s 9 -d 5 -S up -r 10Mb -D 2ms l -t * -s 10 -d 1 -S up -r 10Mb -D 2ms l -t * -s 10 -d 6 -S up -r 10Mb -D 2ms l -t * -s 11 -d 1 -S up -r 10Mb -D 2ms l -t * -s 11 -d 2 -S up -r 10Mb -D 2ms l -t * -s 11 -d 3 -S up -r 10Mb -D 2ms l -t * -s 11 -d 4 -S up -r 10Mb -D 2ms l -t * -s 11 -d 6 -S up -r 10Mb -D 2ms l -t * -s 11 -d 7 -S up -r 10Mb -D 2ms l -t * -s 12 -d 0 -S up -r 10Mb -D 2ms l -t * -s 13 -d 5 -S up -r 10Mb -D 2ms l -t * -s 13 -d 9 -S up -r 10Mb -D 2ms l -t * -s 14 -d 5 -S up -r 10Mb -D 2ms l -t * -s 14 -d 9 -S up -r 10Mb -D 2ms l -t * -s 14 -d 13 -S up -r 10Mb -D 2ms l -t * -s 16 -d 0 -S up -r 10Mb -D 2ms l -t * -s 17 -d 7 -S up -r 10Mb -D 2ms l -t * -s 17 -d 8 -S up -r 10Mb -D 2ms l -t * -s 18 -d 15 -S up -r 10Mb -D 2ms l -t * -s 18 -d 16 -S up -r 10Mb -D 2ms l -t * -s 19 -d 0 -S up -r 10Mb -D 2ms l -t * -s 19 -d 12 -S up -r 10Mb -D 2ms n -t 0.000000 -s 0 -x 3.037846 -y 1.072501 -u 0.311308 -v 0.396173 -T 0.534306 n -t 0.000000 -s 1 -x 1.524222 -y 1.595152 -u 0.231885 -v -0.436948 -T 3.586769 n -t 0.000000 -s 2 -x 1.713164 -y 1.153432 -u 0.350984 -v 0.328965 -T 4.299808 n -t 0.000000 -s 3 -x 1.731484 -y 1.046555 -u -0.188995 -v 0.466959 -T 3.912242 n -t 0.000000 -s 4 -x 1.455174 -y 1.112263 -u 0.355449 -v 0.328427 -T 5.045203 n -t 0.000000 -s 5 -x 1.797106 -y 3.960331 -u 0.487215 -v -0.094741 -T 3.725907 n -t 0.000000 -s 6 -x 1.287662 -y 1.743625 -u -0.395171 -v 0.328788 -T 3.258492 n -t 0.000000 -s 7 -x 1.104326 -y 0.411512 -u -0.215032 -v 0.474388 -T 3.596542 n -t 0.000000 -s 8 -x 0.283228 -y 0.220960 -u 0.268801 -v 0.411613 -T 3.185225 n -t 0.000000 -s 9 -x 1.680240 -y 3.800387 -u 0.397748 -v -0.287320 -T 3.960044 n -t 0.000000 -s 10 -x 1.103004 -y 2.184623 -u 0.138158 -v 0.481591 -T 0.599773 n -t 0.000000 -s 11 -x 0.964902 -y 1.105926 -u 0.119030 -v 0.490301 -T 4.829491 n -t 0.000000 -s 12 -x 3.305578 -y 0.846136 -u -0.102423 -v -0.491216 -T 0.954755 n -t 0.000000 -s 13 -x 1.013832 -y 3.474574 -u -0.442530 -v 0.225024 -T 2.290992 n -t 0.000000 -s 14 -x 1.168996 -y 3.313350 -u 0.204012 -v -0.472928 -T 3.384060 n -t 0.000000 -s 15 -x 3.481106 -y 2.946065 -u 0.209409 -v -0.453834 -T 0.708934 n -t 0.000000 -s 16 -x 2.517159 -y 1.891615 -u -0.492800 -v 0.052372 -T 0.750335 n -t 0.000000 -s 17 -x 0.375098 -y 0.269824 -u 0.324867 -v -0.400901 -T 0.673044 n -t 0.000000 -s 18 -x 2.932034 -y 2.695286 -u 0.395934 -v -0.290877 -T 2.061385 n -t 0.000000 -s 19 -x 3.668319 -y 1.443471 -u 0.489307 -v 0.111677 -T 0.677858 V -t * -v 1.0b6 -a 0 A -t * -n 1 -p 0 -o 255 -c 15 -a 1 A -t * -h 1 -m 127 -s 8 + -t 0 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.2 1.2 0 ------- (null)} l -t 0.067252 -s 16 -d 1 -S in -r 10Mb -D 2ms l -t 0.114216 -s 16 -d 2 -S in -r 10Mb -D 2ms l -t 0.119348 -s 13 -d 5 -S out -r 10Mb -D 2ms l -t 0.137817 -s 14 -d 10 -S in -r 10Mb -D 2ms l -t 0.149218 -s 16 -d 0 -S out -r 10Mb -D 2ms l -t 0.150296 -s 7 -d 2 -S out -r 10Mb -D 2ms l -t 0.209545 -s 14 -d 5 -S out -r 10Mb -D 2ms l -t 0.301729 -s 16 -d 3 -S in -r 10Mb -D 2ms l -t 0.329331 -s 10 -d 1 -S out -r 10Mb -D 2ms l -t 0.357015 -s 18 -d 16 -S out -r 10Mb -D 2ms l -t 0.363174 -s 19 -d 12 -S out -r 10Mb -D 2ms l -t 0.381210 -s 16 -d 4 -S in -r 10Mb -D 2ms l -t 0.387308 -s 13 -d 9 -S out -r 10Mb -D 2ms l -t 0.431701 -s 7 -d 1 -S in -r 10Mb -D 2ms l -t 0.511725 -s 6 -d 2 -S out -r 10Mb -D 2ms n -t 0.534306 -s 0 -x 3.204179 -y 1.284178 -u 0.423338 -v 0.272951 -T 1.879873 n -t 0.599773 -s 10 -x 1.185867 -y 2.473469 -u -0.478504 -v -0.065119 -T 2.478282 n -t 0.673044 -s 17 -x 0.593747 -y 0.000000 -u 0.324867 -v 0.400901 -T 3.278021 n -t 0.677858 -s 19 -x 4.000000 -y 1.519172 -u -0.489307 -v 0.111677 -T 2.443477 n -t 0.708934 -s 15 -x 3.629563 -y 2.624327 -u -0.478873 -v -0.181488 -T 5.007728 l -t 0.736229 -s 10 -d 11 -S in -r 10Mb -D 2ms l -t 0.738881 -s 6 -d 1 -S out -r 10Mb -D 2ms n -t 0.750335 -s 16 -x 2.147393 -y 1.930912 -u 0.084421 -v 0.500954 -T 4.130292 l -t 0.792413 -s 6 -d 14 -S in -r 10Mb -D 2ms l -t 0.809648 -s 6 -d 4 -S out -r 10Mb -D 2ms l -t 0.809737 -s 7 -d 4 -S out -r 10Mb -D 2ms l -t 0.815928 -s 14 -d 13 -S out -r 10Mb -D 2ms l -t 0.911139 -s 0 -d 12 -S out -r 10Mb -D 2ms n -t 0.954755 -s 12 -x 3.207789 -y 0.377146 -u -0.233678 -v 0.435078 -T 4.960788 l -t 0.991177 -s 19 -d 18 -S in -r 10Mb -D 2ms l -t 0.992547 -s 0 -d 18 -S in -r 10Mb -D 2ms l -t 1.015195 -s 16 -d 1 -S out -r 10Mb -D 2ms l -t 1.052893 -s 2 -d 11 -S out -r 10Mb -D 2ms l -t 1.095430 -s 9 -d 14 -S out -r 10Mb -D 2ms l -t 1.158474 -s 16 -d 14 -S in -r 10Mb -D 2ms l -t 1.270732 -s 15 -d 19 -S in -r 10Mb -D 2ms l -t 1.292288 -s 11 -d 1 -S out -r 10Mb -D 2ms l -t 1.298013 -s 7 -d 1 -S out -r 10Mb -D 2ms l -t 1.305940 -s 10 -d 3 -S in -r 10Mb -D 2ms l -t 1.306408 -s 14 -d 11 -S in -r 10Mb -D 2ms l -t 1.348380 -s 14 -d 3 -S in -r 10Mb -D 2ms l -t 1.509195 -s 15 -d 0 -S in -r 10Mb -D 2ms l -t 1.583395 -s 16 -d 15 -S in -r 10Mb -D 2ms l -t 1.585342 -s 16 -d 9 -S in -r 10Mb -D 2ms l -t 1.588484 -s 1 -d 3 -S out -r 10Mb -D 2ms l -t 1.681224 -s 15 -d 0 -S out -r 10Mb -D 2ms l -t 1.699223 -s 4 -d 14 -S in -r 10Mb -D 2ms l -t 1.723080 -s 16 -d 3 -S out -r 10Mb -D 2ms l -t 1.773274 -s 1 -d 2 -S out -r 10Mb -D 2ms l -t 1.804278 -s 12 -d 19 -S in -r 10Mb -D 2ms l -t 1.822843 -s 2 -d 15 -S in -r 10Mb -D 2ms l -t 1.862046 -s 6 -d 14 -S out -r 10Mb -D 2ms l -t 1.864770 -s 2 -d 3 -S out -r 10Mb -D 2ms l -t 1.910031 -s 10 -d 14 -S out -r 10Mb -D 2ms l -t 1.918885 -s 4 -d 1 -S out -r 10Mb -D 2ms l -t 1.932907 -s 17 -d 1 -S in -r 10Mb -D 2ms l -t 1.936347 -s 2 -d 19 -S in -r 10Mb -D 2ms l -t 1.948856 -s 11 -d 4 -S out -r 10Mb -D 2ms l -t 1.952649 -s 12 -d 1 -S in -r 10Mb -D 2ms l -t 1.986932 -s 9 -d 15 -S in -r 10Mb -D 2ms l -t 2.018500 -s 2 -d 14 -S in -r 10Mb -D 2ms l -t 2.050074 -s 15 -d 4 -S in -r 10Mb -D 2ms n -t 2.061385 -s 18 -x 3.748205 -y 2.095677 -u -0.398546 -v 0.283331 -T 5.129668 l -t 2.069992 -s 7 -d 10 -S in -r 10Mb -D 2ms l -t 2.235353 -s 4 -d 19 -S in -r 10Mb -D 2ms l -t 2.285488 -s 3 -d 4 -S out -r 10Mb -D 2ms n -t 2.290992 -s 13 -x 0.000000 -y 3.990103 -u 0.442530 -v 0.225024 -T 0.043981 l -t 2.320740 -s 17 -d 7 -S out -r 10Mb -D 2ms n -t 2.334973 -s 13 -x 0.019463 -y 4.000000 -u 0.442530 -v -0.225024 -T 2.133438 l -t 2.348341 -s 3 -d 6 -S out -r 10Mb -D 2ms l -t 2.360258 -s 12 -d 2 -S in -r 10Mb -D 2ms n -t 2.414178 -s 0 -x 4.000000 -y 1.797292 -u -0.423338 -v 0.272951 -T 3.003122 l -t 2.452191 -s 11 -d 7 -S out -r 10Mb -D 2ms l -t 2.517113 -s 18 -d 2 -S in -r 10Mb -D 2ms l -t 2.520003 -s 11 -d 6 -S out -r 10Mb -D 2ms l -t 2.523618 -s 11 -d 10 -S out -r 10Mb -D 2ms l -t 2.537584 -s 3 -d 10 -S out -r 10Mb -D 2ms l -t 2.544647 -s 12 -d 4 -S in -r 10Mb -D 2ms l -t 2.546589 -s 7 -d 6 -S in -r 10Mb -D 2ms l -t 2.626169 -s 16 -d 14 -S out -r 10Mb -D 2ms l -t 2.655277 -s 3 -d 8 -S in -r 10Mb -D 2ms l -t 2.671226 -s 15 -d 14 -S in -r 10Mb -D 2ms l -t 2.679326 -s 2 -d 9 -S in -r 10Mb -D 2ms l -t 2.700812 -s 8 -d 14 -S in -r 10Mb -D 2ms l -t 2.753749 -s 18 -d 9 -S in -r 10Mb -D 2ms l -t 2.765459 -s 1 -d 17 -S out -r 10Mb -D 2ms l -t 2.779432 -s 12 -d 1 -S out -r 10Mb -D 2ms l -t 2.841452 -s 9 -d 4 -S in -r 10Mb -D 2ms l -t 2.854013 -s 4 -d 18 -S in -r 10Mb -D 2ms l -t 2.931892 -s 12 -d 15 -S in -r 10Mb -D 2ms l -t 2.952179 -s 16 -d 2 -S out -r 10Mb -D 2ms l -t 2.952794 -s 14 -d 2 -S out -r 10Mb -D 2ms l -t 3.003659 -s 2 -d 0 -S in -r 10Mb -D 2ms l -t 3.063903 -s 14 -d 17 -S in -r 10Mb -D 2ms n -t 3.078055 -s 10 -x 0.000000 -y 2.312086 -u 0.478504 -v -0.065119 -T 2.497640 l -t 3.099210 -s 16 -d 4 -S out -r 10Mb -D 2ms l -t 3.120813 -s 14 -d 19 -S in -r 10Mb -D 2ms n -t 3.121335 -s 19 -x 2.804390 -y 1.792052 -u 0.305401 -v 0.379407 -T 3.914891 l -t 3.127117 -s 19 -d 14 -S out -r 10Mb -D 2ms l -t 3.150886 -s 8 -d 3 -S out -r 10Mb -D 2ms l -t 3.162983 -s 14 -d 12 -S in -r 10Mb -D 2ms l -t 3.183316 -s 14 -d 3 -S out -r 10Mb -D 2ms n -t 3.185225 -s 8 -x 1.139420 -y 1.532040 -u -0.459447 -v 0.209776 -T 2.479982 l -t 3.204475 -s 14 -d 11 -S out -r 10Mb -D 2ms l -t 3.216821 -s 16 -d 15 -S out -r 10Mb -D 2ms n -t 3.258492 -s 6 -x 0.000000 -y 2.814978 -u 0.395171 -v 0.328788 -T 0.591990 l -t 3.302125 -s 19 -d 9 -S in -r 10Mb -D 2ms l -t 3.312004 -s 0 -d 4 -S in -r 10Mb -D 2ms l -t 3.331742 -s 9 -d 0 -S in -r 10Mb -D 2ms n -t 3.384060 -s 14 -x 1.859383 -y 1.712932 -u -0.489964 -v 0.121415 -T 3.794937 l -t 3.390621 -s 10 -d 3 -S in -r 10Mb -D 2ms l -t 3.396865 -s 6 -d 13 -S in -r 10Mb -D 2ms l -t 3.444299 -s 9 -d 15 -S out -r 10Mb -D 2ms l -t 3.446994 -s 14 -d 4 -S out -r 10Mb -D 2ms l -t 3.496117 -s 6 -d 3 -S in -r 10Mb -D 2ms l -t 3.555193 -s 8 -d 10 -S in -r 10Mb -D 2ms n -t 3.586769 -s 1 -x 2.355939 -y 0.027921 -u -0.389663 -v -0.270400 -T 0.103257 n -t 3.596542 -s 7 -x 0.330954 -y 2.117670 -u -0.165948 -v 0.462223 -T 1.994328 l -t 3.638854 -s 18 -d 15 -S out -r 10Mb -D 2ms l -t 3.685958 -s 9 -d 16 -S out -r 10Mb -D 2ms n -t 3.690026 -s 1 -x 2.315704 -y 0.000000 -u -0.389663 -v 0.270400 -T 4.949686 l -t 3.706014 -s 13 -d 3 -S in -r 10Mb -D 2ms n -t 3.725907 -s 5 -x 3.612422 -y 3.607335 -u 0.491153 -v 0.126094 -T 0.789118 l -t 3.759431 -s 5 -d 9 -S out -r 10Mb -D 2ms l -t 3.771180 -s 17 -d 15 -S in -r 10Mb -D 2ms l -t 3.801713 -s 17 -d 12 -S in -r 10Mb -D 2ms l -t 3.836450 -s 13 -d 11 -S in -r 10Mb -D 2ms l -t 3.841911 -s 2 -d 15 -S out -r 10Mb -D 2ms n -t 3.850482 -s 6 -x 0.233938 -y 3.009617 -u 0.429789 -v 0.199919 -T 4.859842 n -t 3.912242 -s 3 -x 0.992089 -y 2.873411 -u 0.200527 -v 0.458782 -T 2.455609 l -t 3.942703 -s 0 -d 12 -S in -r 10Mb -D 2ms n -t 3.951064 -s 17 -x 1.658667 -y 1.314163 -u 0.169941 -v -0.473164 -T 2.777396 n -t 3.960044 -s 9 -x 3.255338 -y 2.662586 -u -0.480897 -v -0.086948 -T 4.928484 l -t 3.971231 -s 19 -d 15 -S out -r 10Mb -D 2ms l -t 4.009877 -s 17 -d 8 -S out -r 10Mb -D 2ms l -t 4.044593 -s 2 -d 12 -S out -r 10Mb -D 2ms l -t 4.087349 -s 4 -d 15 -S out -r 10Mb -D 2ms l -t 4.129425 -s 3 -d 7 -S out -r 10Mb -D 2ms l -t 4.217525 -s 14 -d 10 -S in -r 10Mb -D 2ms l -t 4.239409 -s 14 -d 12 -S out -r 10Mb -D 2ms l -t 4.276150 -s 18 -d 12 -S in -r 10Mb -D 2ms n -t 4.299808 -s 2 -x 3.222329 -y 2.567920 -u -0.439542 -v -0.286968 -T 4.999875 l -t 4.343963 -s 17 -d 12 -S out -r 10Mb -D 2ms l -t 4.353927 -s 17 -d 1 -S in -r 10Mb -D 2ms l -t 4.373630 -s 9 -d 12 -S in -r 10Mb -D 2ms l -t 4.432731 -s 2 -d 12 -S in -r 10Mb -D 2ms l -t 4.447217 -s 3 -d 10 -S out -r 10Mb -D 2ms n -t 4.468411 -s 13 -x 0.963573 -y 3.519925 -u 0.069498 -v 0.503587 -T 0.953311 l -t 4.509595 -s 11 -d 6 -S in -r 10Mb -D 2ms n -t 4.515025 -s 5 -x 4.000000 -y 3.706838 -u -0.491153 -v 0.126094 -T 2.324944 l -t 4.609621 -s 17 -d 14 -S out -r 10Mb -D 2ms l -t 4.634432 -s 4 -d 12 -S out -r 10Mb -D 2ms l -t 4.640407 -s 19 -d 12 -S out -r 10Mb -D 2ms l -t 4.689524 -s 15 -d 10 -S in -r 10Mb -D 2ms l -t 4.740958 -s 6 -d 10 -S out -r 10Mb -D 2ms n -t 4.829491 -s 11 -x 1.539756 -y 3.473830 -u -0.257206 -v 0.422190 -T 1.246289 l -t 4.855861 -s 17 -d 15 -S out -r 10Mb -D 2ms n -t 4.880628 -s 16 -x 2.496076 -y 4.000000 -u 0.084421 -v -0.500954 -T 0.885108 l -t 4.993519 -s 7 -d 10 -S out -r 10Mb -D 2ms l -t 5.017683 -s 16 -d 18 -S in -r 10Mb -D 2ms n -t 5.045203 -s 4 -x 3.248487 -y 2.769243 -u -0.107573 -v -0.480466 -T 5.188199 l -t 5.158812 -s 18 -d 19 -S out -r 10Mb -D 2ms l -t 5.396872 -s 10 -d 8 -S out -r 10Mb -D 2ms n -t 5.417300 -s 0 -x 2.728666 -y 2.616998 -u -0.485079 -v -0.174726 -T 4.937701 n -t 5.421722 -s 13 -x 1.029826 -y 4.000000 -u 0.069498 -v -0.503587 -T 3.996193 l -t 5.455357 -s 16 -d 5 -S in -r 10Mb -D 2ms l -t 5.465259 -s 9 -d 19 -S out -r 10Mb -D 2ms l -t 5.485300 -s 12 -d 15 -S out -r 10Mb -D 2ms l -t 5.511543 -s 10 -d 12 -S in -r 10Mb -D 2ms l -t 5.523809 -s 7 -d 6 -S out -r 10Mb -D 2ms l -t 5.541347 -s 2 -d 19 -S out -r 10Mb -D 2ms l -t 5.542361 -s 18 -d 4 -S out -r 10Mb -D 2ms n -t 5.575696 -s 10 -x 1.195130 -y 2.149443 -u -0.336731 -v -0.335458 -T 3.549215 l -t 5.576843 -s 7 -d 8 -S out -r 10Mb -D 2ms n -t 5.590870 -s 7 -x 0.000000 -y 3.039495 -u 0.165948 -v 0.462223 -T 2.078012 n -t 5.665206 -s 8 -x 0.000000 -y 2.052280 -u 0.459447 -v 0.209776 -T 2.594973 l -t 5.676522 -s 0 -d 19 -S out -r 10Mb -D 2ms l -t 5.683156 -s 18 -d 2 -S out -r 10Mb -D 2ms l -t 5.691783 -s 10 -d 12 -S out -r 10Mb -D 2ms n -t 5.716662 -s 15 -x 1.231496 -y 1.715485 -u 0.136163 -v -0.473375 -T 3.623947 n -t 5.765736 -s 16 -x 2.570797 -y 3.556601 -u 0.486761 -v -0.103460 -T 2.936148 l -t 5.873797 -s 8 -d 10 -S in -r 10Mb -D 2ms n -t 5.915543 -s 12 -x 2.048561 -y 2.535475 -u 0.369792 -v -0.326594 -T 4.842408 l -t 5.960555 -s 15 -d 1 -S in -r 10Mb -D 2ms l -t 5.962863 -s 18 -d 3 -S in -r 10Mb -D 2ms + -t 6 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 1 -a 0 -x {0.2 1.2 0 ---A--- (null)} l -t 6.055434 -s 6 -d 18 -S in -r 10Mb -D 2ms n -t 6.075780 -s 11 -x 1.219204 -y 4.000000 -u -0.257206 -v -0.422190 -T 3.795791 l -t 6.192953 -s 12 -d 4 -S in -r 10Mb -D 2ms l -t 6.205098 -s 14 -d 15 -S out -r 10Mb -D 2ms l -t 6.232379 -s 4 -d 19 -S out -r 10Mb -D 2ms l -t 6.244238 -s 4 -d 9 -S out -r 10Mb -D 2ms l -t 6.271431 -s 7 -d 13 -S in -r 10Mb -D 2ms l -t 6.304044 -s 13 -d 18 -S in -r 10Mb -D 2ms n -t 6.367852 -s 3 -x 1.484504 -y 4.000000 -u 0.200527 -v -0.458782 -T 2.513084 l -t 6.401266 -s 17 -d 1 -S out -r 10Mb -D 2ms l -t 6.438555 -s 12 -d 18 -S out -r 10Mb -D 2ms l -t 6.471795 -s 18 -d 11 -S in -r 10Mb -D 2ms l -t 6.486106 -s 19 -d 16 -S in -r 10Mb -D 2ms l -t 6.535701 -s 11 -d 7 -S in -r 10Mb -D 2ms l -t 6.551054 -s 18 -d 16 -S out -r 10Mb -D 2ms l -t 6.590773 -s 0 -d 4 -S out -r 10Mb -D 2ms l -t 6.611902 -s 18 -d 0 -S out -r 10Mb -D 2ms l -t 6.721022 -s 10 -d 1 -S in -r 10Mb -D 2ms n -t 6.728461 -s 17 -x 2.130662 -y 0.000000 -u 0.169941 -v 0.473164 -T 2.228511 l -t 6.737263 -s 9 -d 18 -S out -r 10Mb -D 2ms l -t 6.758357 -s 2 -d 15 -S in -r 10Mb -D 2ms n -t 6.839969 -s 5 -x 2.858096 -y 4.000000 -u -0.491153 -v -0.126094 -T 2.020114 l -t 6.918303 -s 7 -d 13 -S out -r 10Mb -D 2ms l -t 6.989506 -s 4 -d 2 -S out -r 10Mb -D 2ms l -t 7.023724 -s 8 -d 13 -S in -r 10Mb -D 2ms n -t 7.036227 -s 19 -x 4.000000 -y 3.277388 -u -0.305401 -v 0.379407 -T 1.103777 l -t 7.057702 -s 9 -d 13 -S in -r 10Mb -D 2ms n -t 7.178997 -s 14 -x 0.000000 -y 2.173693 -u 0.489964 -v 0.121415 -T 1.098750 n -t 7.191053 -s 18 -x 1.703798 -y 3.549068 -u 0.123439 -v -0.470901 -T 5.002308 l -t 7.191641 -s 9 -d 8 -S in -r 10Mb -D 2ms l -t 7.236883 -s 15 -d 10 -S out -r 10Mb -D 2ms l -t 7.245867 -s 5 -d 6 -S in -r 10Mb -D 2ms l -t 7.313033 -s 0 -d 13 -S in -r 10Mb -D 2ms l -t 7.343158 -s 18 -d 5 -S in -r 10Mb -D 2ms l -t 7.349762 -s 9 -d 12 -S out -r 10Mb -D 2ms l -t 7.356813 -s 5 -d 3 -S in -r 10Mb -D 2ms l -t 7.378097 -s 0 -d 8 -S in -r 10Mb -D 2ms l -t 7.378126 -s 15 -d 17 -S in -r 10Mb -D 2ms l -t 7.441273 -s 11 -d 8 -S in -r 10Mb -D 2ms l -t 7.459386 -s 5 -d 16 -S out -r 10Mb -D 2ms l -t 7.489740 -s 11 -d 6 -S out -r 10Mb -D 2ms l -t 7.492181 -s 13 -d 6 -S out -r 10Mb -D 2ms l -t 7.527418 -s 10 -d 8 -S out -r 10Mb -D 2ms l -t 7.562622 -s 12 -d 0 -S out -r 10Mb -D 2ms l -t 7.639692 -s 12 -d 2 -S out -r 10Mb -D 2ms n -t 7.668882 -s 7 -x 0.344841 -y 4.000000 -u 0.165948 -v -0.462223 -T 0.814781 l -t 7.791372 -s 18 -d 11 -S out -r 10Mb -D 2ms l -t 7.803339 -s 11 -d 3 -S out -r 10Mb -D 2ms l -t 7.834571 -s 18 -d 9 -S in -r 10Mb -D 2ms l -t 7.871178 -s 13 -d 14 -S in -r 10Mb -D 2ms l -t 7.909248 -s 14 -d 9 -S in -r 10Mb -D 2ms l -t 7.939228 -s 1 -d 15 -S out -r 10Mb -D 2ms l -t 7.944764 -s 4 -d 17 -S in -r 10Mb -D 2ms l -t 7.946334 -s 8 -d 18 -S in -r 10Mb -D 2ms l -t 7.959938 -s 14 -d 11 -S in -r 10Mb -D 2ms l -t 8.037445 -s 8 -d 3 -S in -r 10Mb -D 2ms l -t 8.082328 -s 1 -d 2 -S in -r 10Mb -D 2ms l -t 8.084541 -s 14 -d 0 -S in -r 10Mb -D 2ms l -t 8.120783 -s 14 -d 10 -S out -r 10Mb -D 2ms l -t 8.137536 -s 11 -d 9 -S in -r 10Mb -D 2ms n -t 8.140003 -s 19 -x 3.662906 -y 3.696168 -u -0.354126 -v 0.331213 -T 0.917332 n -t 8.260180 -s 8 -x 1.192252 -y 2.596642 -u -0.217929 -v 0.451200 -T 3.110278 n -t 8.277746 -s 14 -x 0.538348 -y 2.307098 -u -0.480983 -v -0.106564 -T 1.119266 l -t 8.290963 -s 18 -d 9 -S out -r 10Mb -D 2ms l -t 8.403072 -s 18 -d 6 -S out -r 10Mb -D 2ms l -t 8.454413 -s 14 -d 1 -S in -r 10Mb -D 2ms n -t 8.483663 -s 7 -x 0.480052 -y 3.623389 -u -0.247826 -v 0.422552 -T 0.891278 l -t 8.522728 -s 15 -d 2 -S out -r 10Mb -D 2ms l -t 8.540703 -s 6 -d 3 -S out -r 10Mb -D 2ms l -t 8.550598 -s 12 -d 17 -S in -r 10Mb -D 2ms l -t 8.630864 -s 15 -d 17 -S out -r 10Mb -D 2ms n -t 8.639711 -s 1 -x 0.386995 -y 1.338393 -u -0.447557 -v -0.213193 -T 0.864684 n -t 8.701885 -s 16 -x 4.000000 -y 3.252828 -u -0.486761 -v -0.103460 -T 2.027623 n -t 8.710324 -s 6 -x 2.322645 -y 3.981193 -u 0.192111 -v 0.464772 -T 0.040466 l -t 8.722073 -s 9 -d 2 -S out -r 10Mb -D 2ms n -t 8.750790 -s 6 -x 2.330419 -y 4.000000 -u 0.192111 -v -0.464772 -T 5.006636 l -t 8.804347 -s 11 -d 0 -S in -r 10Mb -D 2ms l -t 8.830725 -s 14 -d 8 -S out -r 10Mb -D 2ms l -t 8.840056 -s 14 -d 13 -S out -r 10Mb -D 2ms n -t 8.860083 -s 5 -x 1.865911 -y 3.745276 -u 0.162401 -v -0.476753 -T 5.125384 n -t 8.880935 -s 3 -x 1.988445 -y 2.847043 -u -0.065514 -v 0.490712 -T 2.349562 n -t 8.888527 -s 9 -x 0.885247 -y 2.234066 -u -0.162750 -v -0.455981 -T 4.899474 l -t 8.901883 -s 7 -d 11 -S out -r 10Mb -D 2ms l -t 8.917466 -s 13 -d 2 -S in -r 10Mb -D 2ms n -t 8.956972 -s 17 -x 2.509378 -y 1.054450 -u -0.177748 -v 0.472170 -T 5.057065 l -t 8.968190 -s 6 -d 19 -S in -r 10Mb -D 2ms l -t 9.005339 -s 3 -d 13 -S out -r 10Mb -D 2ms l -t 9.027356 -s 9 -d 2 -S in -r 10Mb -D 2ms l -t 9.031362 -s 11 -d 13 -S out -r 10Mb -D 2ms n -t 9.057335 -s 19 -x 3.338055 -y 4.000000 -u -0.354126 -v -0.331213 -T 4.134130 l -t 9.072760 -s 3 -d 6 -S in -r 10Mb -D 2ms l -t 9.093350 -s 0 -d 8 -S out -r 10Mb -D 2ms l -t 9.122918 -s 18 -d 8 -S out -r 10Mb -D 2ms n -t 9.124910 -s 10 -x 0.000000 -y 0.958831 -u 0.336731 -v -0.335458 -T 1.565111 l -t 9.227648 -s 8 -d 13 -S out -r 10Mb -D 2ms l -t 9.266309 -s 8 -d 9 -S out -r 10Mb -D 2ms l -t 9.285732 -s 1 -d 14 -S out -r 10Mb -D 2ms l -t 9.290953 -s 10 -d 2 -S in -r 10Mb -D 2ms n -t 9.299682 -s 2 -x 1.024673 -y 1.133117 -u -0.087794 -v 0.504738 -T 5.029840 l -t 9.330073 -s 3 -d 8 -S out -r 10Mb -D 2ms n -t 9.340609 -s 15 -x 1.724943 -y 0.000000 -u 0.136163 -v 0.473375 -T 1.227350 n -t 9.374941 -s 7 -x 0.259170 -y 4.000000 -u -0.247826 -v -0.422552 -T 1.045772 n -t 9.397012 -s 14 -x 0.000000 -y 2.187824 -u 0.480983 -v -0.106564 -T 3.962260 n -t 9.417915 -s 13 -x 1.307554 -y 1.987568 -u 0.511783 -v -0.072158 -T 4.797900 l -t 9.479924 -s 2 -d 1 -S out -r 10Mb -D 2ms n -t 9.504396 -s 1 -x 0.000000 -y 1.154049 -u 0.447557 -v -0.213193 -T 4.133455 l -t 9.525868 -s 1 -d 2 -S in -r 10Mb -D 2ms l -t 9.570840 -s 17 -d 12 -S out -r 10Mb -D 2ms l -t 9.584061 -s 7 -d 8 -S in -r 10Mb -D 2ms l -t 9.598143 -s 1 -d 0 -S in -r 10Mb -D 2ms l -t 9.611315 -s 4 -d 12 -S out -r 10Mb -D 2ms l -t 9.706921 -s 1 -d 9 -S in -r 10Mb -D 2ms l -t 9.729122 -s 18 -d 17 -S in -r 10Mb -D 2ms l -t 9.733197 -s 8 -d 11 -S out -r 10Mb -D 2ms l -t 9.757441 -s 17 -d 4 -S out -r 10Mb -D 2ms l -t 9.772955 -s 15 -d 4 -S in -r 10Mb -D 2ms l -t 9.794837 -s 13 -d 17 -S in -r 10Mb -D 2ms l -t 9.806946 -s 6 -d 16 -S in -r 10Mb -D 2ms l -t 9.811900 -s 2 -d 10 -S out -r 10Mb -D 2ms l -t 9.818052 -s 18 -d 3 -S out -r 10Mb -D 2ms n -t 9.871571 -s 11 -x 0.242905 -y 2.397456 -u -0.494614 -v 0.045631 -T 0.491100 l -t 9.892882 -s 13 -d 0 -S out -r 10Mb -D 2ms l -t 9.912120 -s 2 -d 14 -S in -r 10Mb -D 2ms l -t 10.097347 -s 13 -d 9 -S out -r 10Mb -D 2ms l -t 10.183097 -s 19 -d 5 -S in -r 10Mb -D 2ms n -t 10.233402 -s 4 -x 2.690375 -y 0.276489 -u 0.173039 -v 0.487074 -T 5.050753 l -t 10.240088 -s 11 -d 9 -S out -r 10Mb -D 2ms l -t 10.310968 -s 19 -d 3 -S in -r 10Mb -D 2ms n -t 10.355001 -s 0 -x 0.333491 -y 1.754252 -u -0.330493 -v -0.351695 -T 1.009070 n -t 10.362672 -s 11 -x 0.000000 -y 2.419866 -u 0.494614 -v 0.045631 -T 4.477407 n -t 10.420713 -s 7 -x 0.000000 -y 3.558107 -u 0.247826 -v -0.422552 -T 2.976196 l -t 10.496508 -s 5 -d 16 -S in -r 10Mb -D 2ms n -t 10.567959 -s 15 -x 1.892062 -y 0.580997 -u 0.312464 -v -0.384460 -T 1.511201 l -t 10.576154 -s 9 -d 10 -S in -r 10Mb -D 2ms l -t 10.584198 -s 2 -d 13 -S out -r 10Mb -D 2ms l -t 10.626880 -s 11 -d 2 -S in -r 10Mb -D 2ms l -t 10.627792 -s 3 -d 6 -S out -r 10Mb -D 2ms l -t 10.679354 -s 1 -d 2 -S out -r 10Mb -D 2ms l -t 10.686266 -s 5 -d 13 -S in -r 10Mb -D 2ms n -t 10.690022 -s 10 -x 0.527021 -y 0.433801 -u -0.242488 -v 0.447584 -T 2.173392 l -t 10.690888 -s 5 -d 17 -S in -r 10Mb -D 2ms l -t 10.721685 -s 7 -d 11 -S in -r 10Mb -D 2ms n -t 10.729507 -s 16 -x 3.013032 -y 3.043051 -u 0.129200 -v 0.491077 -T 1.948673 n -t 10.757951 -s 12 -x 3.839245 -y 0.953973 -u 0.393513 -v -0.310147 -T 0.408512 l -t 10.780521 -s 5 -d 3 -S out -r 10Mb -D 2ms l -t 11.014868 -s 10 -d 0 -S in -r 10Mb -D 2ms l -t 11.099178 -s 11 -d 0 -S out -r 10Mb -D 2ms l -t 11.109078 -s 16 -d 5 -S out -r 10Mb -D 2ms l -t 11.149118 -s 19 -d 3 -S out -r 10Mb -D 2ms l -t 11.166039 -s 2 -d 0 -S out -r 10Mb -D 2ms n -t 11.166462 -s 12 -x 4.000000 -y 0.827274 -u -0.393513 -v -0.310147 -T 2.667361 l -t 11.225289 -s 2 -d 9 -S out -r 10Mb -D 2ms l -t 11.230489 -s 14 -d 0 -S out -r 10Mb -D 2ms n -t 11.230497 -s 3 -x 1.834517 -y 4.000000 -u -0.065514 -v -0.490712 -T 2.884439 l -t 11.242637 -s 17 -d 6 -S in -r 10Mb -D 2ms l -t 11.264937 -s 0 -d 1 -S out -r 10Mb -D 2ms l -t 11.318717 -s 3 -d 19 -S in -r 10Mb -D 2ms n -t 11.364071 -s 0 -x 0.000000 -y 1.399367 -u 0.330493 -v -0.351695 -T 3.968331 n -t 11.370458 -s 8 -x 0.514433 -y 4.000000 -u -0.217929 -v -0.451200 -T 1.829073 l -t 11.377017 -s 18 -d 4 -S in -r 10Mb -D 2ms l -t 11.382878 -s 14 -d 9 -S out -r 10Mb -D 2ms l -t 11.441358 -s 12 -d 4 -S in -r 10Mb -D 2ms l -t 11.518725 -s 6 -d 13 -S in -r 10Mb -D 2ms l -t 11.523001 -s 15 -d 4 -S out -r 10Mb -D 2ms l -t 11.528249 -s 2 -d 7 -S in -r 10Mb -D 2ms l -t 11.529721 -s 17 -d 19 -S in -r 10Mb -D 2ms l -t 11.631108 -s 13 -d 4 -S in -r 10Mb -D 2ms l -t 11.701949 -s 14 -d 17 -S in -r 10Mb -D 2ms l -t 11.746402 -s 17 -d 18 -S out -r 10Mb -D 2ms l -t 11.785149 -s 6 -d 16 -S out -r 10Mb -D 2ms l -t 11.896180 -s 16 -d 19 -S out -r 10Mb -D 2ms l -t 12.009978 -s 10 -d 1 -S out -r 10Mb -D 2ms l -t 12.035811 -s 17 -d 6 -S out -r 10Mb -D 2ms l -t 12.051449 -s 17 -d 13 -S out -r 10Mb -D 2ms n -t 12.079160 -s 15 -x 2.364258 -y 0.000000 -u 0.312464 -v 0.384460 -T 3.427641 l -t 12.150837 -s 17 -d 3 -S in -r 10Mb -D 2ms n -t 12.193361 -s 18 -x 2.321278 -y 1.193478 -u -0.098745 -v -0.478363 -T 2.494919 l -t 12.243483 -s 17 -d 11 -S in -r 10Mb -D 2ms l -t 12.292562 -s 6 -d 19 -S out -r 10Mb -D 2ms l -t 12.303212 -s 14 -d 2 -S out -r 10Mb -D 2ms l -t 12.342206 -s 4 -d 5 -S in -r 10Mb -D 2ms l -t 12.344689 -s 8 -d 2 -S in -r 10Mb -D 2ms l -t 12.371379 -s 6 -d 4 -S in -r 10Mb -D 2ms l -t 12.380859 -s 18 -d 15 -S in -r 10Mb -D 2ms l -t 12.412214 -s 4 -d 12 -S out -r 10Mb -D 2ms l -t 12.422422 -s 1 -d 9 -S out -r 10Mb -D 2ms l -t 12.437650 -s 14 -d 5 -S in -r 10Mb -D 2ms l -t 12.513272 -s 15 -d 12 -S in -r 10Mb -D 2ms l -t 12.582616 -s 5 -d 17 -S out -r 10Mb -D 2ms l -t 12.596424 -s 18 -d 13 -S out -r 10Mb -D 2ms l -t 12.625259 -s 11 -d 19 -S in -r 10Mb -D 2ms l -t 12.636552 -s 11 -d 3 -S in -r 10Mb -D 2ms l -t 12.646459 -s 18 -d 1 -S in -r 10Mb -D 2ms l -t 12.651363 -s 17 -d 14 -S out -r 10Mb -D 2ms n -t 12.678180 -s 16 -x 3.264800 -y 4.000000 -u 0.129200 -v -0.491077 -T 2.875935 l -t 12.704642 -s 18 -d 4 -S out -r 10Mb -D 2ms l -t 12.745039 -s 5 -d 19 -S out -r 10Mb -D 2ms l -t 12.815325 -s 19 -d 14 -S in -r 10Mb -D 2ms l -t 12.848465 -s 10 -d 9 -S out -r 10Mb -D 2ms n -t 12.863413 -s 10 -x 0.000000 -y 1.406576 -u 0.242488 -v 0.447584 -T 2.804286 l -t 12.885690 -s 18 -d 5 -S out -r 10Mb -D 2ms n -t 13.191466 -s 19 -x 1.874050 -y 2.630722 -u 0.502198 -v 0.007632 -T 4.233288 n -t 13.199531 -s 8 -x 0.115825 -y 3.174722 -u -0.387712 -v -0.330298 -T 0.298739 l -t 13.236845 -s 10 -d 7 -S in -r 10Mb -D 2ms l -t 13.251434 -s 8 -d 7 -S out -r 10Mb -D 2ms l -t 13.255587 -s 10 -d 0 -S out -r 10Mb -D 2ms l -t 13.323519 -s 2 -d 11 -S out -r 10Mb -D 2ms n -t 13.359271 -s 14 -x 1.905781 -y 1.765589 -u 0.131108 -v -0.488262 -T 3.616068 n -t 13.396909 -s 7 -x 0.737580 -y 2.300511 -u 0.289583 -v -0.396581 -T 4.983143 n -t 13.498270 -s 8 -x 0.000000 -y 3.076049 -u 0.387712 -v -0.330298 -T 4.933789 l -t 13.500223 -s 7 -d 2 -S out -r 10Mb -D 2ms l -t 13.505895 -s 5 -d 15 -S in -r 10Mb -D 2ms l -t 13.510715 -s 18 -d 12 -S in -r 10Mb -D 2ms l -t 13.607451 -s 19 -d 14 -S out -r 10Mb -D 2ms n -t 13.637850 -s 1 -x 1.849955 -y 0.272826 -u 0.130834 -v -0.477139 -T 0.571796 l -t 13.654555 -s 14 -d 11 -S out -r 10Mb -D 2ms n -t 13.757426 -s 6 -x 3.292250 -y 1.673057 -u -0.404715 -v -0.297078 -T 5.062451 n -t 13.788001 -s 9 -x 0.087859 -y 0.000000 -u -0.162750 -v 0.455981 -T 0.042779 l -t 13.825213 -s 7 -d 3 -S in -r 10Mb -D 2ms n -t 13.830780 -s 9 -x 0.080897 -y 0.019506 -u -0.502844 -v 0.100809 -T 0.160879 n -t 13.833823 -s 12 -x 2.950358 -y 0.000000 -u -0.393513 -v 0.310147 -T 1.856547 l -t 13.875040 -s 6 -d 15 -S in -r 10Mb -D 2ms l -t 13.923895 -s 7 -d 11 -S out -r 10Mb -D 2ms l -t 13.948594 -s 19 -d 17 -S out -r 10Mb -D 2ms l -t 13.949444 -s 4 -d 5 -S out -r 10Mb -D 2ms l -t 13.960570 -s 13 -d 5 -S out -r 10Mb -D 2ms l -t 13.980314 -s 12 -d 1 -S in -r 10Mb -D 2ms n -t 13.985467 -s 5 -x 2.698279 -y 1.301734 -u 0.167281 -v -0.474626 -T 2.742651 n -t 13.991659 -s 9 -x 0.000000 -y 0.035725 -u 0.502844 -v 0.100809 -T 4.573776 l -t 13.997882 -s 8 -d 10 -S in -r 10Mb -D 2ms n -t 14.014036 -s 17 -x 1.610494 -y 3.442246 -u -0.031241 -v -0.489505 -T 5.095766 l -t 14.106509 -s 18 -d 15 -S out -r 10Mb -D 2ms n -t 14.114936 -s 3 -x 1.645547 -y 2.584572 -u -0.182718 -v 0.466563 -T 3.033730 n -t 14.209646 -s 1 -x 1.924766 -y 0.000000 -u 0.130834 -v 0.477139 -T 4.565165 n -t 14.215815 -s 13 -x 3.763035 -y 1.641362 -u -0.167937 -v 0.478868 -T 4.908016 l -t 14.248626 -s 4 -d 16 -S in -r 10Mb -D 2ms l -t 14.310090 -s 5 -d 12 -S in -r 10Mb -D 2ms n -t 14.329522 -s 2 -x 0.583084 -y 3.671870 -u 0.387598 -v -0.311034 -T 4.916266 l -t 14.343191 -s 1 -d 0 -S in -r 10Mb -D 2ms l -t 14.375749 -s 4 -d 19 -S in -r 10Mb -D 2ms l -t 14.418316 -s 7 -d 3 -S out -r 10Mb -D 2ms l -t 14.431640 -s 14 -d 6 -S in -r 10Mb -D 2ms l -t 14.497467 -s 6 -d 4 -S out -r 10Mb -D 2ms l -t 14.548625 -s 3 -d 19 -S out -r 10Mb -D 2ms l -t 14.577038 -s 1 -d 14 -S in -r 10Mb -D 2ms l -t 14.607658 -s 2 -d 17 -S in -r 10Mb -D 2ms l -t 14.636608 -s 19 -d 16 -S in -r 10Mb -D 2ms n -t 14.688280 -s 18 -x 2.074917 -y 0.000000 -u -0.098745 -v 0.478363 -T 2.611591 l -t 14.693177 -s 15 -d 13 -S in -r 10Mb -D 2ms l -t 14.693344 -s 18 -d 0 -S in -r 10Mb -D 2ms l -t 14.693819 -s 14 -d 12 -S in -r 10Mb -D 2ms l -t 14.776201 -s 2 -d 3 -S in -r 10Mb -D 2ms l -t 14.809556 -s 18 -d 14 -S in -r 10Mb -D 2ms l -t 14.826889 -s 15 -d 12 -S out -r 10Mb -D 2ms n -t 14.840078 -s 11 -x 2.214587 -y 2.624175 -u 0.479825 -v 0.126650 -T 3.720969 l -t 14.844628 -s 16 -d 13 -S in -r 10Mb -D 2ms l -t 14.845183 -s 6 -d 13 -S out -r 10Mb -D 2ms l -t 14.888636 -s 1 -d 5 -S in -r 10Mb -D 2ms l -t 14.967441 -s 3 -d 8 -S in -r 10Mb -D 2ms l -t 14.979755 -s 6 -d 12 -S in -r 10Mb -D 2ms l -t 15.035603 -s 7 -d 10 -S out -r 10Mb -D 2ms l -t 15.068194 -s 13 -d 19 -S in -r 10Mb -D 2ms l -t 15.150019 -s 17 -d 8 -S in -r 10Mb -D 2ms l -t 15.159657 -s 3 -d 11 -S out -r 10Mb -D 2ms l -t 15.200248 -s 18 -d 5 -S in -r 10Mb -D 2ms l -t 15.212601 -s 1 -d 6 -S in -r 10Mb -D 2ms l -t 15.219103 -s 2 -d 10 -S in -r 10Mb -D 2ms n -t 15.284155 -s 4 -x 3.564351 -y 2.736581 -u -0.487778 -v -0.110454 -T 5.023247 n -t 15.332402 -s 0 -x 1.311508 -y 0.003727 -u 0.329803 -v -0.359635 -T 0.010363 n -t 15.342765 -s 0 -x 1.314925 -y 0.000000 -u 0.329803 -v 0.359635 -T 5.023106 l -t 15.354844 -s 17 -d 10 -S in -r 10Mb -D 2ms l -t 15.410785 -s 3 -d 8 -S out -r 10Mb -D 2ms l -t 15.425681 -s 4 -d 11 -S in -r 10Mb -D 2ms l -t 15.461466 -s 18 -d 6 -S in -r 10Mb -D 2ms l -t 15.471188 -s 3 -d 10 -S in -r 10Mb -D 2ms n -t 15.506801 -s 15 -x 3.435274 -y 1.317791 -u -0.434734 -v -0.275649 -T 4.780685 l -t 15.553553 -s 0 -d 12 -S in -r 10Mb -D 2ms n -t 15.554115 -s 16 -x 3.636371 -y 2.587693 -u 0.394559 -v 0.289195 -T 0.921607 l -t 15.563258 -s 17 -d 11 -S out -r 10Mb -D 2ms l -t 15.572953 -s 15 -d 13 -S out -r 10Mb -D 2ms l -t 15.580927 -s 0 -d 14 -S in -r 10Mb -D 2ms l -t 15.652314 -s 13 -d 11 -S in -r 10Mb -D 2ms l -t 15.658582 -s 18 -d 5 -S out -r 10Mb -D 2ms n -t 15.667699 -s 10 -x 0.680006 -y 2.661729 -u -0.497343 -v 0.024625 -T 1.367277 l -t 15.677977 -s 1 -d 7 -S in -r 10Mb -D 2ms n -t 15.690370 -s 12 -x 2.219782 -y 0.575803 -u 0.492737 -v -0.068946 -T 3.612918 l -t 15.772135 -s 18 -d 7 -S in -r 10Mb -D 2ms l -t 15.779968 -s 10 -d 3 -S out -r 10Mb -D 2ms l -t 15.900258 -s 6 -d 7 -S in -r 10Mb -D 2ms l -t 15.903360 -s 10 -d 17 -S out -r 10Mb -D 2ms l -t 15.973635 -s 5 -d 1 -S out -r 10Mb -D 2ms l -t 15.974821 -s 3 -d 17 -S out -r 10Mb -D 2ms l -t 16.032789 -s 9 -d 18 -S in -r 10Mb -D 2ms l -t 16.043232 -s 0 -d 7 -S in -r 10Mb -D 2ms l -t 16.063976 -s 12 -d 15 -S in -r 10Mb -D 2ms l -t 16.135660 -s 6 -d 5 -S out -r 10Mb -D 2ms l -t 16.150461 -s 15 -d 1 -S in -r 10Mb -D 2ms l -t 16.151659 -s 6 -d 0 -S in -r 10Mb -D 2ms l -t 16.223041 -s 10 -d 2 -S out -r 10Mb -D 2ms l -t 16.253266 -s 9 -d 7 -S in -r 10Mb -D 2ms l -t 16.415780 -s 8 -d 10 -S out -r 10Mb -D 2ms l -t 16.426348 -s 16 -d 4 -S out -r 10Mb -D 2ms n -t 16.475723 -s 16 -x 4.000000 -y 2.854218 -u -0.394559 -v 0.289195 -T 3.961968 l -t 16.476701 -s 16 -d 11 -S in -r 10Mb -D 2ms l -t 16.584616 -s 6 -d 9 -S in -r 10Mb -D 2ms l -t 16.639758 -s 1 -d 14 -S out -r 10Mb -D 2ms l -t 16.689081 -s 15 -d 5 -S out -r 10Mb -D 2ms l -t 16.689656 -s 9 -d 14 -S in -r 10Mb -D 2ms n -t 16.728118 -s 5 -x 3.157072 -y 0.000000 -u 0.167281 -v 0.474626 -T 2.165459 l -t 16.751239 -s 5 -d 15 -S in -r 10Mb -D 2ms l -t 16.751454 -s 18 -d 14 -S out -r 10Mb -D 2ms l -t 16.755333 -s 12 -d 18 -S out -r 10Mb -D 2ms l -t 16.788918 -s 2 -d 3 -S out -r 10Mb -D 2ms l -t 16.827022 -s 18 -d 15 -S in -r 10Mb -D 2ms l -t 16.929996 -s 18 -d 17 -S in -r 10Mb -D 2ms l -t 16.934526 -s 4 -d 19 -S out -r 10Mb -D 2ms l -t 16.946201 -s 18 -d 8 -S in -r 10Mb -D 2ms l -t 16.952851 -s 12 -d 0 -S out -r 10Mb -D 2ms l -t 16.964973 -s 1 -d 12 -S out -r 10Mb -D 2ms l -t 16.973386 -s 15 -d 0 -S in -r 10Mb -D 2ms n -t 16.975339 -s 14 -x 2.379878 -y 0.000000 -u 0.131108 -v 0.488262 -T 1.236778 l -t 16.979320 -s 14 -d 15 -S in -r 10Mb -D 2ms l -t 17.007990 -s 7 -d 15 -S in -r 10Mb -D 2ms l -t 17.018688 -s 17 -d 1 -S in -r 10Mb -D 2ms n -t 17.034977 -s 10 -x 0.000000 -y 2.695398 -u 0.497343 -v 0.024625 -T 3.482362 l -t 17.060983 -s 14 -d 7 -S in -r 10Mb -D 2ms l -t 17.105411 -s 6 -d 12 -S out -r 10Mb -D 2ms n -t 17.148666 -s 3 -x 1.091231 -y 4.000000 -u -0.182718 -v -0.466563 -T 1.952513 l -t 17.163818 -s 8 -d 1 -S in -r 10Mb -D 2ms l -t 17.164458 -s 2 -d 4 -S in -r 10Mb -D 2ms n -t 17.299871 -s 18 -x 1.817036 -y 1.249289 -u 0.373552 -v -0.333546 -T 3.745481 l -t 17.326722 -s 6 -d 1 -S out -r 10Mb -D 2ms l -t 17.385866 -s 11 -d 4 -S out -r 10Mb -D 2ms l -t 17.390358 -s 15 -d 9 -S in -r 10Mb -D 2ms l -t 17.398409 -s 4 -d 1 -S in -r 10Mb -D 2ms n -t 17.424753 -s 19 -x 4.000000 -y 2.663032 -u -0.502198 -v 0.007632 -T 0.943402 l -t 17.460302 -s 13 -d 4 -S out -r 10Mb -D 2ms l -t 17.502297 -s 17 -d 2 -S out -r 10Mb -D 2ms l -t 17.508038 -s 7 -d 1 -S out -r 10Mb -D 2ms l -t 17.597777 -s 18 -d 14 -S in -r 10Mb -D 2ms l -t 17.636524 -s 0 -d 8 -S in -r 10Mb -D 2ms l -t 17.679369 -s 0 -d 17 -S in -r 10Mb -D 2ms l -t 17.760665 -s 15 -d 1 -S out -r 10Mb -D 2ms l -t 17.794255 -s 2 -d 1 -S in -r 10Mb -D 2ms l -t 17.931601 -s 8 -d 4 -S in -r 10Mb -D 2ms l -t 17.966430 -s 12 -d 15 -S out -r 10Mb -D 2ms l -t 17.967166 -s 5 -d 15 -S out -r 10Mb -D 2ms l -t 17.992301 -s 3 -d 10 -S in -r 10Mb -D 2ms + -t 18 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.2 1.2 0 ---A--- (null)} l -t 18.027116 -s 17 -d 1 -S out -r 10Mb -D 2ms l -t 18.090249 -s 14 -d 6 -S out -r 10Mb -D 2ms l -t 18.107453 -s 19 -d 13 -S out -r 10Mb -D 2ms l -t 18.181492 -s 0 -d 6 -S out -r 10Mb -D 2ms l -t 18.201415 -s 18 -d 1 -S out -r 10Mb -D 2ms n -t 18.212117 -s 14 -x 2.542029 -y 0.603872 -u -0.486331 -v -0.154365 -T 3.911980 l -t 18.273559 -s 14 -d 12 -S out -r 10Mb -D 2ms l -t 18.324850 -s 8 -d 15 -S in -r 10Mb -D 2ms l -t 18.354095 -s 11 -d 13 -S out -r 10Mb -D 2ms n -t 18.368156 -s 19 -x 3.526225 -y 2.670233 -u -0.401712 -v 0.305533 -T 4.352291 n -t 18.380051 -s 7 -x 2.180615 -y 0.324290 -u -0.073550 -v 0.492841 -T 5.277296 l -t 18.387008 -s 14 -d 5 -S out -r 10Mb -D 2ms l -t 18.391808 -s 18 -d 6 -S out -r 10Mb -D 2ms l -t 18.419297 -s 17 -d 6 -S in -r 10Mb -D 2ms n -t 18.432059 -s 8 -x 1.912891 -y 1.446429 -u -0.078806 -v -0.486346 -T 2.974075 l -t 18.472924 -s 8 -d 9 -S in -r 10Mb -D 2ms l -t 18.473147 -s 8 -d 14 -S in -r 10Mb -D 2ms l -t 18.484458 -s 8 -d 2 -S out -r 10Mb -D 2ms l -t 18.509844 -s 17 -d 15 -S in -r 10Mb -D 2ms n -t 18.561047 -s 11 -x 4.000000 -y 3.095437 -u -0.479825 -v 0.126650 -T 1.313272 n -t 18.565435 -s 9 -x 2.299898 -y 0.496804 -u 0.078929 -v 0.491979 -T 4.981441 l -t 18.567020 -s 8 -d 7 -S in -r 10Mb -D 2ms l -t 18.581121 -s 4 -d 8 -S out -r 10Mb -D 2ms l -t 18.585803 -s 9 -d 6 -S out -r 10Mb -D 2ms l -t 18.646750 -s 7 -d 17 -S in -r 10Mb -D 2ms l -t 18.662590 -s 8 -d 1 -S out -r 10Mb -D 2ms l -t 18.765851 -s 9 -d 17 -S in -r 10Mb -D 2ms n -t 18.774811 -s 1 -x 2.522046 -y 2.178218 -u 0.359112 -v -0.322563 -T 4.115577 l -t 18.778722 -s 14 -d 17 -S in -r 10Mb -D 2ms l -t 18.790522 -s 0 -d 17 -S out -r 10Mb -D 2ms n -t 18.819877 -s 6 -x 1.243401 -y 0.169117 -u 0.108076 -v 0.488142 -T 4.954814 l -t 18.855034 -s 4 -d 10 -S in -r 10Mb -D 2ms l -t 18.856352 -s 15 -d 0 -S out -r 10Mb -D 2ms l -t 18.857880 -s 18 -d 17 -S out -r 10Mb -D 2ms l -t 18.870440 -s 0 -d 2 -S in -r 10Mb -D 2ms n -t 18.893577 -s 5 -x 3.519312 -y 1.027783 -u 0.381510 -v -0.300711 -T 1.259959 l -t 18.897770 -s 6 -d 14 -S in -r 10Mb -D 2ms n -t 19.101178 -s 3 -x 0.734473 -y 3.089029 -u -0.450464 -v -0.232566 -T 1.630482 l -t 19.105254 -s 6 -d 8 -S in -r 10Mb -D 2ms n -t 19.109802 -s 17 -x 1.451295 -y 0.947844 -u 0.479232 -v -0.144867 -T 5.096371 l -t 19.112643 -s 14 -d 0 -S out -r 10Mb -D 2ms n -t 19.123831 -s 13 -x 2.938800 -y 3.991653 -u -0.465628 -v -0.193022 -T 4.941112 l -t 19.138383 -s 1 -d 4 -S out -r 10Mb -D 2ms n -t 19.245788 -s 2 -x 2.488619 -y 2.142742 -u -0.475594 -v -0.135763 -T 4.973518 n -t 19.303288 -s 12 -x 4.000000 -y 0.326706 -u -0.492737 -v -0.068946 -T 1.268249 l -t 19.398723 -s 13 -d 19 -S in -r 10Mb -D 2ms l -t 19.464689 -s 8 -d 0 -S out -r 10Mb -D 2ms l -t 19.499089 -s 15 -d 9 -S out -r 10Mb -D 2ms l -t 19.518784 -s 15 -d 18 -S out -r 10Mb -D 2ms l -t 19.527853 -s 0 -d 18 -S out -r 10Mb -D 2ms l -t 19.609895 -s 9 -d 1 -S in -r 10Mb -D 2ms l -t 19.755437 -s 13 -d 11 -S in -r 10Mb -D 2ms l -t 19.759555 -s 9 -d 2 -S in -r 10Mb -D 2ms l -t 19.761292 -s 8 -d 18 -S out -r 10Mb -D 2ms l -t 19.771421 -s 7 -d 15 -S out -r 10Mb -D 2ms l -t 19.813211 -s 12 -d 18 -S in -r 10Mb -D 2ms l -t 19.820263 -s 14 -d 18 -S out -r 10Mb -D 2ms l -t 19.829807 -s 9 -d 14 -S out -r 10Mb -D 2ms l -t 19.834349 -s 3 -d 10 -S out -r 10Mb -D 2ms n -t 19.874319 -s 11 -x 3.369860 -y 3.261763 -u -0.412705 -v -0.269323 -T 5.191489 l -t 19.879920 -s 7 -d 2 -S in -r 10Mb -D 2ms l -t 19.902433 -s 7 -d 18 -S out -r 10Mb -D 2ms l -t 19.962414 -s 2 -d 10 -S in -r 10Mb -D 2ms l -t 20.059257 -s 9 -d 18 -S out -r 10Mb -D 2ms l -t 20.111363 -s 11 -d 16 -S out -r 10Mb -D 2ms l -t 20.139520 -s 7 -d 0 -S out -r 10Mb -D 2ms l -t 20.150857 -s 7 -d 14 -S out -r 10Mb -D 2ms l -t 20.151248 -s 1 -d 2 -S out -r 10Mb -D 2ms l -t 20.152858 -s 11 -d 13 -S out -r 10Mb -D 2ms n -t 20.153536 -s 5 -x 4.000000 -y 0.648900 -u -0.381510 -v -0.300711 -T 2.157885 l -t 20.236687 -s 9 -d 8 -S out -r 10Mb -D 2ms l -t 20.260011 -s 17 -d 15 -S out -r 10Mb -D 2ms n -t 20.287486 -s 15 -x 1.356946 -y 0.000000 -u -0.434734 -v 0.275649 -T 0.358812 n -t 20.307402 -s 4 -x 1.114122 -y 2.181745 -u -0.361750 -v 0.336484 -T 3.079815 l -t 20.319508 -s 2 -d 0 -S out -r 10Mb -D 2ms n -t 20.365871 -s 0 -x 2.971561 -y 1.806482 -u 0.255941 -v -0.403043 -T 4.018262 l -t 20.396960 -s 5 -d 18 -S in -r 10Mb -D 2ms n -t 20.437691 -s 16 -x 2.436768 -y 4.000000 -u -0.394559 -v -0.289195 -T 0.093923 n -t 20.517339 -s 10 -x 1.731928 -y 2.781152 -u -0.426257 -v 0.252763 -T 4.063105 n -t 20.531614 -s 16 -x 2.399710 -y 3.972838 -u 0.119557 -v 0.485632 -T 0.055932 l -t 20.533770 -s 7 -d 8 -S out -r 10Mb -D 2ms n -t 20.571537 -s 12 -x 3.375087 -y 0.239265 -u -0.386256 -v 0.319520 -T 5.022687 n -t 20.587546 -s 16 -x 2.406397 -y 4.000000 -u 0.119557 -v -0.485632 -T 4.986700 l -t 20.609268 -s 6 -d 2 -S in -r 10Mb -D 2ms n -t 20.646298 -s 15 -x 1.200959 -y 0.098906 -u -0.026310 -v 0.491929 -T 5.116010 l -t 20.685691 -s 17 -d 14 -S out -r 10Mb -D 2ms n -t 20.731660 -s 3 -x 0.000000 -y 2.709834 -u 0.450464 -v -0.232566 -T 3.355753 l -t 20.754006 -s 10 -d 13 -S in -r 10Mb -D 2ms l -t 20.767988 -s 3 -d 4 -S in -r 10Mb -D 2ms l -t 20.870277 -s 6 -d 14 -S out -r 10Mb -D 2ms l -t 20.896843 -s 11 -d 16 -S in -r 10Mb -D 2ms l -t 20.900132 -s 12 -d 17 -S in -r 10Mb -D 2ms l -t 20.927278 -s 15 -d 6 -S out -r 10Mb -D 2ms l -t 20.932198 -s 6 -d 8 -S out -r 10Mb -D 2ms l -t 20.936705 -s 6 -d 17 -S out -r 10Mb -D 2ms l -t 20.948649 -s 17 -d 9 -S out -r 10Mb -D 2ms l -t 20.982182 -s 10 -d 2 -S out -r 10Mb -D 2ms l -t 20.985783 -s 7 -d 17 -S out -r 10Mb -D 2ms n -t 21.045352 -s 18 -x 3.216168 -y 0.000000 -u 0.373552 -v 0.333546 -T 1.213741 l -t 21.178612 -s 12 -d 1 -S in -r 10Mb -D 2ms l -t 21.235698 -s 18 -d 17 -S in -r 10Mb -D 2ms l -t 21.246554 -s 12 -d 0 -S in -r 10Mb -D 2ms l -t 21.249961 -s 1 -d 9 -S out -r 10Mb -D 2ms l -t 21.291985 -s 2 -d 9 -S out -r 10Mb -D 2ms l -t 21.301678 -s 17 -d 8 -S out -r 10Mb -D 2ms l -t 21.305866 -s 4 -d 2 -S out -r 10Mb -D 2ms l -t 21.380805 -s 11 -d 9 -S in -r 10Mb -D 2ms n -t 21.406134 -s 8 -x 1.678516 -y 0.000000 -u -0.078806 -v 0.486346 -T 2.242791 l -t 21.444722 -s 17 -d 5 -S in -r 10Mb -D 2ms l -t 21.502236 -s 0 -d 17 -S in -r 10Mb -D 2ms l -t 21.584469 -s 0 -d 9 -S out -r 10Mb -D 2ms l -t 21.674256 -s 11 -d 19 -S out -r 10Mb -D 2ms l -t 21.677434 -s 10 -d 3 -S in -r 10Mb -D 2ms l -t 21.734324 -s 18 -d 1 -S in -r 10Mb -D 2ms l -t 21.771559 -s 11 -d 7 -S in -r 10Mb -D 2ms l -t 21.785442 -s 18 -d 0 -S in -r 10Mb -D 2ms l -t 21.845575 -s 3 -d 2 -S in -r 10Mb -D 2ms l -t 22.006447 -s 15 -d 2 -S in -r 10Mb -D 2ms l -t 22.026970 -s 13 -d 16 -S out -r 10Mb -D 2ms l -t 22.051922 -s 8 -d 14 -S out -r 10Mb -D 2ms l -t 22.088240 -s 12 -d 1 -S out -r 10Mb -D 2ms n -t 22.124097 -s 14 -x 0.639512 -y 0.000000 -u -0.486331 -v 0.154365 -T 1.003225 l -t 22.130497 -s 9 -d 16 -S in -r 10Mb -D 2ms l -t 22.166723 -s 14 -d 15 -S out -r 10Mb -D 2ms l -t 22.201814 -s 17 -d 1 -S in -r 10Mb -D 2ms l -t 22.234257 -s 12 -d 18 -S out -r 10Mb -D 2ms n -t 22.259093 -s 18 -x 3.669564 -y 0.404838 -u -0.276291 -v -0.422810 -T 0.957495 l -t 22.291051 -s 7 -d 2 -S out -r 10Mb -D 2ms n -t 22.311421 -s 5 -x 3.176744 -y 0.000000 -u -0.381510 -v 0.300711 -T 1.660539 l -t 22.334937 -s 19 -d 16 -S out -r 10Mb -D 2ms l -t 22.347826 -s 3 -d 6 -S in -r 10Mb -D 2ms l -t 22.359287 -s 11 -d 6 -S in -r 10Mb -D 2ms l -t 22.450642 -s 0 -d 5 -S in -r 10Mb -D 2ms l -t 22.529248 -s 10 -d 3 -S out -r 10Mb -D 2ms l -t 22.584949 -s 7 -d 16 -S in -r 10Mb -D 2ms l -t 22.674125 -s 0 -d 12 -S out -r 10Mb -D 2ms l -t 22.691206 -s 7 -d 3 -S in -r 10Mb -D 2ms n -t 22.720446 -s 19 -x 1.777857 -y 4.000000 -u -0.401712 -v -0.305533 -T 0.654143 l -t 22.727899 -s 3 -d 4 -S out -r 10Mb -D 2ms l -t 22.754323 -s 12 -d 8 -S in -r 10Mb -D 2ms l -t 22.804356 -s 7 -d 13 -S in -r 10Mb -D 2ms l -t 22.818608 -s 6 -d 2 -S out -r 10Mb -D 2ms n -t 22.890387 -s 1 -x 4.000000 -y 0.850687 -u -0.359112 -v -0.322563 -T 1.055466 l -t 22.914549 -s 15 -d 3 -S in -r 10Mb -D 2ms l -t 22.916145 -s 17 -d 12 -S out -r 10Mb -D 2ms l -t 23.033245 -s 4 -d 13 -S in -r 10Mb -D 2ms l -t 23.099441 -s 3 -d 11 -S in -r 10Mb -D 2ms n -t 23.127322 -s 14 -x 0.151613 -y 0.154863 -u -0.500776 -v 0.062763 -T 0.302756 n -t 23.216588 -s 18 -x 3.405017 -y 0.000000 -u -0.276291 -v 0.422810 -T 4.012943 l -t 23.354202 -s 5 -d 0 -S out -r 10Mb -D 2ms n -t 23.374589 -s 19 -x 1.515079 -y 3.800138 -u 0.433168 -v 0.253138 -T 0.789538 n -t 23.387217 -s 4 -x 0.000000 -y 3.218054 -u 0.361750 -v 0.336484 -T 1.864114 n -t 23.430078 -s 14 -x 0.000000 -y 0.173865 -u 0.500776 -v 0.062763 -T 4.470297 l -t 23.457353 -s 11 -d 9 -S out -r 10Mb -D 2ms l -t 23.530542 -s 16 -d 7 -S out -r 10Mb -D 2ms l -t 23.534123 -s 19 -d 7 -S in -r 10Mb -D 2ms l -t 23.545363 -s 19 -d 13 -S out -r 10Mb -D 2ms n -t 23.546877 -s 9 -x 2.693080 -y 2.947569 -u -0.406450 -v 0.296292 -T 3.552001 l -t 23.596296 -s 3 -d 2 -S out -r 10Mb -D 2ms l -t 23.598616 -s 8 -d 3 -S in -r 10Mb -D 2ms l -t 23.601075 -s 11 -d 15 -S in -r 10Mb -D 2ms l -t 23.621739 -s 3 -d 7 -S out -r 10Mb -D 2ms l -t 23.639103 -s 9 -d 6 -S in -r 10Mb -D 2ms n -t 23.648926 -s 8 -x 1.501771 -y 1.090772 -u -0.374813 -v 0.346017 -T 4.006716 l -t 23.655367 -s 11 -d 16 -S out -r 10Mb -D 2ms n -t 23.657348 -s 7 -x 1.792469 -y 2.925158 -u -0.432060 -v 0.245697 -T 4.148653 l -t 23.685661 -s 5 -d 17 -S out -r 10Mb -D 2ms n -t 23.774691 -s 6 -x 1.778897 -y 2.587767 -u -0.147884 -v 0.475967 -T 2.967083 l -t 23.813849 -s 11 -d 12 -S in -r 10Mb -D 2ms l -t 23.841135 -s 3 -d 12 -S in -r 10Mb -D 2ms n -t 23.945854 -s 1 -x 3.620969 -y 0.510233 -u -0.463696 -v 0.164640 -T 4.806031 n -t 23.971960 -s 5 -x 2.543232 -y 0.499342 -u -0.045630 -v 0.510102 -T 4.848613 l -t 23.973679 -s 8 -d 11 -S in -r 10Mb -D 2ms n -t 24.064942 -s 13 -x 0.638080 -y 3.037912 -u 0.145283 -v 0.469833 -T 2.047724 n -t 24.087413 -s 3 -x 1.511645 -y 1.929399 -u -0.074017 -v 0.496607 -T 4.169498 l -t 24.099454 -s 12 -d 15 -S in -r 10Mb -D 2ms l -t 24.129023 -s 15 -d 2 -S out -r 10Mb -D 2ms l -t 24.130835 -s 5 -d 1 -S in -r 10Mb -D 2ms n -t 24.164128 -s 19 -x 1.857082 -y 4.000000 -u 0.433168 -v -0.253138 -T 4.219190 n -t 24.206173 -s 17 -x 3.893639 -y 0.209549 -u -0.459796 -v -0.174442 -T 1.201253 l -t 24.216027 -s 9 -d 16 -S out -r 10Mb -D 2ms l -t 24.216352 -s 19 -d 9 -S in -r 10Mb -D 2ms n -t 24.219307 -s 2 -x 0.123243 -y 1.467523 -u -0.479173 -v 0.187519 -T 0.257198 l -t 24.273551 -s 7 -d 11 -S out -r 10Mb -D 2ms n -t 24.384132 -s 0 -x 4.000000 -y 0.186951 -u -0.255941 -v -0.403043 -T 0.463848 n -t 24.476505 -s 2 -x 0.000000 -y 1.515753 -u 0.479173 -v 0.187519 -T 4.694991 l -t 24.488222 -s 0 -d 18 -S out -r 10Mb -D 2ms l -t 24.496956 -s 3 -d 7 -S in -r 10Mb -D 2ms l -t 24.565701 -s 13 -d 6 -S in -r 10Mb -D 2ms l -t 24.575131 -s 11 -d 6 -S out -r 10Mb -D 2ms l -t 24.575170 -s 19 -d 6 -S in -r 10Mb -D 2ms n -t 24.580444 -s 10 -x 0.000000 -y 3.808154 -u 0.426257 -v 0.252763 -T 0.758995 l -t 24.656238 -s 19 -d 7 -S out -r 10Mb -D 2ms l -t 24.677670 -s 12 -d 5 -S out -r 10Mb -D 2ms l -t 24.685179 -s 7 -d 4 -S in -r 10Mb -D 2ms l -t 24.706964 -s 2 -d 8 -S in -r 10Mb -D 2ms n -t 24.847981 -s 0 -x 3.881282 -y 0.000000 -u -0.255941 -v 0.403043 -T 0.491985 l -t 24.928286 -s 16 -d 5 -S in -r 10Mb -D 2ms l -t 25.039477 -s 11 -d 2 -S in -r 10Mb -D 2ms n -t 25.065808 -s 11 -x 1.227308 -y 1.863578 -u -0.230176 -v -0.440228 -T 4.233213 l -t 25.076867 -s 15 -d 7 -S in -r 10Mb -D 2ms l -t 25.116039 -s 16 -d 18 -S in -r 10Mb -D 2ms l -t 25.219367 -s 8 -d 3 -S out -r 10Mb -D 2ms l -t 25.226593 -s 18 -d 17 -S out -r 10Mb -D 2ms l -t 25.239371 -s 15 -d 2 -S in -r 10Mb -D 2ms n -t 25.251331 -s 4 -x 0.674342 -y 3.845300 -u 0.448143 -v -0.197507 -T 4.929941 l -t 25.267986 -s 16 -d 1 -S in -r 10Mb -D 2ms l -t 25.304155 -s 4 -d 6 -S in -r 10Mb -D 2ms l -t 25.330381 -s 10 -d 7 -S in -r 10Mb -D 2ms n -t 25.339439 -s 10 -x 0.323527 -y 4.000000 -u 0.426257 -v -0.252763 -T 0.270452 n -t 25.339965 -s 0 -x 3.755363 -y 0.198291 -u -0.264015 -v 0.427633 -T 5.025714 n -t 25.407426 -s 17 -x 3.341308 -y 0.000000 -u -0.459796 -v 0.174442 -T 3.780213 l -t 25.484351 -s 2 -d 12 -S in -r 10Mb -D 2ms l -t 25.501645 -s 11 -d 3 -S out -r 10Mb -D 2ms l -t 25.564904 -s 9 -d 3 -S in -r 10Mb -D 2ms n -t 25.574246 -s 16 -x 3.002590 -y 1.578300 -u -0.315295 -v 0.381191 -T 5.067165 n -t 25.594224 -s 12 -x 1.435042 -y 1.844116 -u 0.332922 -v 0.392362 -T 5.124400 n -t 25.609891 -s 10 -x 0.438809 -y 3.931640 -u -0.311873 -v -0.399228 -T 1.407015 l -t 25.629781 -s 6 -d 19 -S out -r 10Mb -D 2ms l -t 25.635640 -s 9 -d 13 -S in -r 10Mb -D 2ms l -t 25.654858 -s 9 -d 4 -S in -r 10Mb -D 2ms l -t 25.699283 -s 11 -d 15 -S out -r 10Mb -D 2ms n -t 25.762308 -s 15 -x 1.066355 -y 2.615618 -u 0.162586 -v 0.459490 -T 3.012866 l -t 25.844860 -s 15 -d 6 -S in -r 10Mb -D 2ms l -t 25.875037 -s 4 -d 3 -S in -r 10Mb -D 2ms l -t 25.966652 -s 15 -d 4 -S in -r 10Mb -D 2ms l -t 25.994590 -s 12 -d 5 -S in -r 10Mb -D 2ms l -t 26.024983 -s 15 -d 2 -S out -r 10Mb -D 2ms l -t 26.036808 -s 9 -d 19 -S out -r 10Mb -D 2ms l -t 26.063876 -s 12 -d 8 -S out -r 10Mb -D 2ms n -t 26.112666 -s 13 -x 0.935580 -y 4.000000 -u 0.145283 -v -0.469833 -T 2.943073 l -t 26.123638 -s 15 -d 8 -S out -r 10Mb -D 2ms l -t 26.167794 -s 0 -d 1 -S out -r 10Mb -D 2ms l -t 26.218099 -s 11 -d 12 -S out -r 10Mb -D 2ms l -t 26.263096 -s 3 -d 13 -S in -r 10Mb -D 2ms l -t 26.284263 -s 15 -d 9 -S in -r 10Mb -D 2ms l -t 26.349275 -s 16 -d 1 -S out -r 10Mb -D 2ms l -t 26.373124 -s 13 -d 15 -S in -r 10Mb -D 2ms l -t 26.404317 -s 4 -d 10 -S out -r 10Mb -D 2ms l -t 26.453256 -s 3 -d 12 -S out -r 10Mb -D 2ms l -t 26.516711 -s 12 -d 16 -S in -r 10Mb -D 2ms l -t 26.547207 -s 8 -d 11 -S out -r 10Mb -D 2ms l -t 26.582366 -s 14 -d 1 -S in -r 10Mb -D 2ms n -t 26.741774 -s 6 -x 1.340112 -y 4.000000 -u -0.147884 -v -0.475967 -T 1.958698 l -t 26.771256 -s 12 -d 18 -S in -r 10Mb -D 2ms l -t 26.790520 -s 15 -d 7 -S out -r 10Mb -D 2ms l -t 26.817187 -s 13 -d 10 -S out -r 10Mb -D 2ms l -t 26.824198 -s 17 -d 14 -S in -r 10Mb -D 2ms l -t 26.856171 -s 4 -d 7 -S out -r 10Mb -D 2ms l -t 26.878140 -s 1 -d 5 -S out -r 10Mb -D 2ms l -t 26.919395 -s 15 -d 12 -S out -r 10Mb -D 2ms l -t 26.922471 -s 2 -d 11 -S out -r 10Mb -D 2ms l -t 26.925315 -s 3 -d 7 -S out -r 10Mb -D 2ms l -t 27.002006 -s 2 -d 8 -S out -r 10Mb -D 2ms n -t 27.016906 -s 10 -x 0.000000 -y 3.369921 -u 0.311873 -v -0.399228 -T 3.793478 n -t 27.098877 -s 9 -x 1.249369 -y 4.000000 -u -0.406450 -v -0.296292 -T 1.177982 l -t 27.162676 -s 6 -d 7 -S out -r 10Mb -D 2ms l -t 27.165185 -s 17 -d 0 -S out -r 10Mb -D 2ms l -t 27.180449 -s 10 -d 8 -S in -r 10Mb -D 2ms n -t 27.229530 -s 18 -x 2.296278 -y 1.696712 -u 0.120863 -v -0.471257 -T 3.600397 l -t 27.324024 -s 12 -d 4 -S in -r 10Mb -D 2ms l -t 27.341169 -s 13 -d 7 -S out -r 10Mb -D 2ms l -t 27.406527 -s 2 -d 5 -S in -r 10Mb -D 2ms l -t 27.429352 -s 12 -d 18 -S out -r 10Mb -D 2ms l -t 27.455482 -s 18 -d 0 -S in -r 10Mb -D 2ms l -t 27.464461 -s 2 -d 16 -S in -r 10Mb -D 2ms l -t 27.506846 -s 10 -d 13 -S in -r 10Mb -D 2ms n -t 27.655642 -s 8 -x 0.000000 -y 2.477165 -u 0.374813 -v 0.346017 -T 1.096288 l -t 27.775354 -s 18 -d 5 -S out -r 10Mb -D 2ms l -t 27.792545 -s 14 -d 18 -S in -r 10Mb -D 2ms l -t 27.798933 -s 18 -d 16 -S out -r 10Mb -D 2ms n -t 27.806001 -s 7 -x 0.000000 -y 3.944470 -u 0.432060 -v 0.245697 -T 0.226009 l -t 27.832118 -s 18 -d 17 -S in -r 10Mb -D 2ms l -t 27.840950 -s 16 -d 4 -S in -r 10Mb -D 2ms l -t 27.850605 -s 9 -d 4 -S out -r 10Mb -D 2ms l -t 27.854801 -s 5 -d 4 -S in -r 10Mb -D 2ms l -t 27.869485 -s 9 -d 10 -S in -r 10Mb -D 2ms l -t 27.882347 -s 10 -d 6 -S in -r 10Mb -D 2ms n -t 27.900375 -s 14 -x 2.238618 -y 0.454435 -u 0.163354 -v 0.487320 -T 4.983085 l -t 27.935450 -s 7 -d 10 -S out -r 10Mb -D 2ms l -t 28.006594 -s 1 -d 2 -S in -r 10Mb -D 2ms n -t 28.032010 -s 7 -x 0.097649 -y 4.000000 -u 0.432060 -v -0.245697 -T 0.521803 l -t 28.053778 -s 1 -d 2 -S out -r 10Mb -D 2ms l -t 28.126436 -s 2 -d 13 -S in -r 10Mb -D 2ms l -t 28.129195 -s 3 -d 4 -S out -r 10Mb -D 2ms l -t 28.244295 -s 13 -d 16 -S in -r 10Mb -D 2ms l -t 28.248295 -s 13 -d 3 -S out -r 10Mb -D 2ms n -t 28.256911 -s 3 -x 1.203031 -y 4.000000 -u -0.074017 -v -0.496607 -T 0.717942 l -t 28.275662 -s 3 -d 7 -S in -r 10Mb -D 2ms n -t 28.276859 -s 9 -x 0.770577 -y 3.650973 -u -0.486601 -v -0.099805 -T 1.583594 l -t 28.336470 -s 8 -d 6 -S in -r 10Mb -D 2ms l -t 28.382753 -s 4 -d 2 -S in -r 10Mb -D 2ms n -t 28.383318 -s 19 -x 3.684700 -y 2.931962 -u 0.450753 -v -0.218751 -T 0.699496 l -t 28.402242 -s 9 -d 8 -S in -r 10Mb -D 2ms l -t 28.415680 -s 4 -d 6 -S out -r 10Mb -D 2ms l -t 28.418964 -s 13 -d 8 -S in -r 10Mb -D 2ms l -t 28.476652 -s 13 -d 15 -S out -r 10Mb -D 2ms l -t 28.477346 -s 0 -d 14 -S in -r 10Mb -D 2ms l -t 28.538274 -s 9 -d 13 -S out -r 10Mb -D 2ms n -t 28.553812 -s 7 -x 0.323100 -y 3.871795 -u 0.364927 -v 0.329821 -T 0.388713 l -t 28.565702 -s 1 -d 18 -S out -r 10Mb -D 2ms l -t 28.570087 -s 14 -d 1 -S out -r 10Mb -D 2ms l -t 28.629528 -s 4 -d 15 -S out -r 10Mb -D 2ms l -t 28.647118 -s 9 -d 15 -S out -r 10Mb -D 2ms l -t 28.675003 -s 6 -d 15 -S out -r 10Mb -D 2ms n -t 28.700472 -s 6 -x 1.050452 -y 3.067725 -u 0.337634 -v 0.385673 -T 2.417266 l -t 28.718595 -s 6 -d 16 -S in -r 10Mb -D 2ms l -t 28.740127 -s 13 -d 4 -S out -r 10Mb -D 2ms n -t 28.751884 -s 1 -x 1.392430 -y 1.301499 -u 0.361578 -v 0.349228 -T 4.926060 n -t 28.751931 -s 8 -x 0.410904 -y 2.856500 -u 0.385619 -v -0.350767 -T 4.888262 n -t 28.775174 -s 15 -x 1.556206 -y 4.000000 -u 0.162586 -v -0.459490 -T 2.042977 l -t 28.803338 -s 15 -d 6 -S in -r 10Mb -D 2ms l -t 28.809516 -s 2 -d 0 -S in -r 10Mb -D 2ms n -t 28.820573 -s 5 -x 2.321988 -y 2.972630 -u 0.235508 -v -0.443928 -T 5.150707 n -t 28.942525 -s 7 -x 0.464951 -y 4.000000 -u 0.364927 -v -0.329821 -T 4.542243 l -t 28.953552 -s 9 -d 10 -S out -r 10Mb -D 2ms n -t 28.974854 -s 3 -x 1.149891 -y 3.643465 -u 0.441952 -v -0.230609 -T 5.075523 n -t 29.055739 -s 13 -x 1.363160 -y 2.617247 -u 0.433103 -v 0.251910 -T 5.045720 l -t 29.068556 -s 15 -d 16 -S in -r 10Mb -D 2ms l -t 29.069671 -s 7 -d 6 -S in -r 10Mb -D 2ms l -t 29.072508 -s 14 -d 1 -S in -r 10Mb -D 2ms l -t 29.073593 -s 3 -d 16 -S in -r 10Mb -D 2ms l -t 29.074715 -s 18 -d 0 -S out -r 10Mb -D 2ms n -t 29.082814 -s 19 -x 4.000000 -y 2.778946 -u -0.450753 -v -0.218751 -T 4.286992 l -t 29.104174 -s 13 -d 3 -S in -r 10Mb -D 2ms n -t 29.171496 -s 2 -x 2.249712 -y 2.396155 -u -0.503295 -v -0.000406 -T 4.469965 n -t 29.187639 -s 17 -x 1.603181 -y 0.659427 -u 0.319625 -v -0.377162 -T 1.748392 l -t 29.190560 -s 13 -d 5 -S in -r 10Mb -D 2ms l -t 29.209098 -s 5 -d 0 -S in -r 10Mb -D 2ms l -t 29.268031 -s 2 -d 12 -S out -r 10Mb -D 2ms l -t 29.277246 -s 3 -d 9 -S out -r 10Mb -D 2ms l -t 29.282938 -s 6 -d 9 -S out -r 10Mb -D 2ms n -t 29.299020 -s 11 -x 0.252924 -y 0.000000 -u -0.230176 -v 0.440228 -T 0.698515 l -t 29.300780 -s 6 -d 10 -S out -r 10Mb -D 2ms l -t 29.364336 -s 17 -d 14 -S out -r 10Mb -D 2ms l -t 29.384820 -s 8 -d 9 -S out -r 10Mb -D 2ms l -t 29.407983 -s 2 -d 1 -S in -r 10Mb -D 2ms l -t 29.426093 -s 13 -d 15 -S in -r 10Mb -D 2ms l -t 29.469711 -s 17 -d 1 -S out -r 10Mb -D 2ms l -t 29.473643 -s 16 -d 12 -S out -r 10Mb -D 2ms l -t 29.502591 -s 8 -d 6 -S out -r 10Mb -D 2ms l -t 29.547828 -s 4 -d 0 -S in -r 10Mb -D 2ms l -t 29.592619 -s 7 -d 15 -S in -r 10Mb -D 2ms l -t 29.642658 -s 0 -d 1 -S in -r 10Mb -D 2ms l -t 29.695670 -s 16 -d 5 -S out -r 10Mb -D 2ms l -t 29.719012 -s 4 -d 16 -S out -r 10Mb -D 2ms l -t 29.803205 -s 5 -d 12 -S out -r 10Mb -D 2ms l -t 29.820371 -s 4 -d 19 -S in -r 10Mb -D 2ms l -t 29.836359 -s 13 -d 10 -S out -r 10Mb -D 2ms l -t 29.839006 -s 16 -d 7 -S in -r 10Mb -D 2ms n -t 29.860453 -s 9 -x 0.000000 -y 3.492922 -u 0.486601 -v -0.099805 -T 3.381717 l -t 29.866900 -s 2 -d 4 -S out -r 10Mb -D 2ms l -t 29.899572 -s 2 -d 10 -S in -r 10Mb -D 2ms l -t 29.908257 -s 14 -d 18 -S out -r 10Mb -D 2ms l -t 29.934304 -s 2 -d 8 -S in -r 10Mb -D 2ms l -t 29.969451 -s 14 -d 5 -S in -r 10Mb -D 2ms l -t 29.992715 -s 19 -d 5 -S in -r 10Mb -D 2ms n -t 29.997535 -s 11 -x 0.092142 -y 0.307506 -u -0.164151 -v -0.472726 -T 0.561328 l -t 30.006129 -s 0 -d 13 -S in -r 10Mb -D 2ms l -t 30.054245 -s 1 -d 10 -S in -r 10Mb -D 2ms l -t 30.055971 -s 13 -d 8 -S out -r 10Mb -D 2ms l -t 30.060972 -s 5 -d 1 -S in -r 10Mb -D 2ms l -t 30.090470 -s 2 -d 15 -S in -r 10Mb -D 2ms l -t 30.092849 -s 2 -d 3 -S in -r 10Mb -D 2ms n -t 30.181272 -s 4 -x 2.883661 -y 2.871604 -u 0.326191 -v -0.379555 -T 3.422351 l -t 30.304494 -s 2 -d 16 -S out -r 10Mb -D 2ms l -t 30.310506 -s 2 -d 5 -S out -r 10Mb -D 2ms l -t 30.354496 -s 13 -d 5 -S out -r 10Mb -D 2ms n -t 30.365679 -s 0 -x 2.428501 -y 2.347450 -u 0.323012 -v 0.391181 -T 4.224517 l -t 30.371095 -s 0 -d 19 -S in -r 10Mb -D 2ms l -t 30.472055 -s 12 -d 4 -S out -r 10Mb -D 2ms l -t 30.485444 -s 1 -d 8 -S in -r 10Mb -D 2ms l -t 30.524356 -s 19 -d 14 -S in -r 10Mb -D 2ms l -t 30.549013 -s 0 -d 15 -S in -r 10Mb -D 2ms n -t 30.558863 -s 11 -x 0.000000 -y 0.042151 -u 0.164151 -v -0.472726 -T 0.089166 l -t 30.603046 -s 4 -d 14 -S in -r 10Mb -D 2ms l -t 30.630289 -s 0 -d 2 -S out -r 10Mb -D 2ms n -t 30.641411 -s 16 -x 1.404940 -y 3.509858 -u -0.463489 -v 0.191633 -T 2.557707 n -t 30.648029 -s 11 -x 0.014637 -y 0.000000 -u 0.164151 -v 0.472726 -T 4.444564 l -t 30.673375 -s 16 -d 9 -S in -r 10Mb -D 2ms l -t 30.680632 -s 0 -d 3 -S in -r 10Mb -D 2ms n -t 30.718624 -s 12 -x 3.141066 -y 3.854738 -u -0.475945 -v -0.093353 -T 4.978186 n -t 30.810383 -s 10 -x 1.183082 -y 1.855460 -u -0.458837 -v 0.144656 -T 2.578434 n -t 30.818151 -s 15 -x 1.888366 -y 3.061272 -u -0.264985 -v 0.424367 -T 2.212066 n -t 30.829928 -s 18 -x 2.731434 -y 0.000000 -u 0.120863 -v 0.471257 -T 1.520668 l -t 30.848549 -s 10 -d 1 -S out -r 10Mb -D 2ms l -t 30.853097 -s 13 -d 2 -S out -r 10Mb -D 2ms l -t 30.858001 -s 2 -d 3 -S out -r 10Mb -D 2ms l -t 30.860303 -s 7 -d 2 -S in -r 10Mb -D 2ms l -t 30.902039 -s 16 -d 13 -S out -r 10Mb -D 2ms n -t 30.936032 -s 17 -x 2.162012 -y 0.000000 -u 0.319625 -v 0.377162 -T 3.321306 l -t 30.967830 -s 1 -d 19 -S in -r 10Mb -D 2ms l -t 31.076468 -s 15 -d 0 -S out -r 10Mb -D 2ms l -t 31.087297 -s 12 -d 13 -S in -r 10Mb -D 2ms l -t 31.099227 -s 3 -d 16 -S out -r 10Mb -D 2ms l -t 31.099243 -s 1 -d 2 -S out -r 10Mb -D 2ms n -t 31.117738 -s 6 -x 1.866603 -y 4.000000 -u 0.337634 -v -0.385673 -T 2.717462 l -t 31.173543 -s 3 -d 1 -S in -r 10Mb -D 2ms l -t 31.179142 -s 1 -d 4 -S in -r 10Mb -D 2ms l -t 31.202703 -s 15 -d 2 -S out -r 10Mb -D 2ms l -t 31.211006 -s 1 -d 13 -S in -r 10Mb -D 2ms l -t 31.235178 -s 6 -d 12 -S in -r 10Mb -D 2ms l -t 31.256951 -s 12 -d 3 -S in -r 10Mb -D 2ms l -t 31.381211 -s 15 -d 9 -S in -r 10Mb -D 2ms l -t 31.438670 -s 9 -d 2 -S in -r 10Mb -D 2ms l -t 31.474911 -s 5 -d 0 -S out -r 10Mb -D 2ms l -t 31.480750 -s 12 -d 0 -S in -r 10Mb -D 2ms l -t 31.493275 -s 6 -d 16 -S out -r 10Mb -D 2ms l -t 31.527140 -s 14 -d 3 -S in -r 10Mb -D 2ms l -t 31.552232 -s 8 -d 1 -S out -r 10Mb -D 2ms l -t 31.565405 -s 19 -d 3 -S in -r 10Mb -D 2ms l -t 31.823480 -s 14 -d 13 -S in -r 10Mb -D 2ms l -t 31.874121 -s 16 -d 7 -S out -r 10Mb -D 2ms l -t 31.885087 -s 15 -d 13 -S out -r 10Mb -D 2ms l -t 31.894042 -s 3 -d 15 -S out -r 10Mb -D 2ms l -t 31.907701 -s 12 -d 15 -S in -r 10Mb -D 2ms l -t 31.914902 -s 2 -d 8 -S out -r 10Mb -D 2ms l -t 31.924098 -s 10 -d 8 -S out -r 10Mb -D 2ms l -t 31.984890 -s 5 -d 1 -S out -r 10Mb -D 2ms l -t 32.033155 -s 5 -d 18 -S in -r 10Mb -D 2ms l -t 32.062626 -s 0 -d 4 -S out -r 10Mb -D 2ms l -t 32.076035 -s 7 -d 2 -S out -r 10Mb -D 2ms l -t 32.078346 -s 0 -d 6 -S in -r 10Mb -D 2ms l -t 32.101382 -s 5 -d 14 -S out -r 10Mb -D 2ms l -t 32.133272 -s 0 -d 19 -S out -r 10Mb -D 2ms l -t 32.149846 -s 19 -d 8 -S in -r 10Mb -D 2ms l -t 32.244964 -s 1 -d 4 -S out -r 10Mb -D 2ms l -t 32.267911 -s 19 -d 4 -S out -r 10Mb -D 2ms l -t 32.308975 -s 9 -d 2 -S out -r 10Mb -D 2ms n -t 32.350596 -s 18 -x 2.915226 -y 0.716625 -u 0.304992 -v 0.381286 -T 3.556730 l -t 32.384721 -s 5 -d 17 -S in -r 10Mb -D 2ms l -t 32.425891 -s 6 -d 1 -S in -r 10Mb -D 2ms l -t 32.492095 -s 5 -d 19 -S out -r 10Mb -D 2ms l -t 32.498901 -s 7 -d 15 -S out -r 10Mb -D 2ms l -t 32.516413 -s 6 -d 14 -S in -r 10Mb -D 2ms l -t 32.525432 -s 9 -d 16 -S out -r 10Mb -D 2ms l -t 32.553266 -s 7 -d 12 -S in -r 10Mb -D 2ms l -t 32.555080 -s 4 -d 14 -S out -r 10Mb -D 2ms l -t 32.558517 -s 7 -d 1 -S in -r 10Mb -D 2ms l -t 32.568153 -s 6 -d 15 -S out -r 10Mb -D 2ms l -t 32.571664 -s 0 -d 12 -S out -r 10Mb -D 2ms l -t 32.586016 -s 3 -d 12 -S out -r 10Mb -D 2ms l -t 32.594101 -s 7 -d 19 -S in -r 10Mb -D 2ms l -t 32.625485 -s 9 -d 12 -S in -r 10Mb -D 2ms l -t 32.660253 -s 19 -d 14 -S out -r 10Mb -D 2ms l -t 32.883323 -s 9 -d 6 -S in -r 10Mb -D 2ms n -t 32.883460 -s 14 -x 3.052627 -y 2.882791 -u 0.399120 -v 0.293298 -T 2.373653 l -t 32.886503 -s 19 -d 1 -S out -r 10Mb -D 2ms l -t 32.902531 -s 19 -d 3 -S out -r 10Mb -D 2ms l -t 32.942083 -s 8 -d 17 -S in -r 10Mb -D 2ms l -t 32.981439 -s 13 -d 12 -S out -r 10Mb -D 2ms l -t 33.006014 -s 16 -d 15 -S out -r 10Mb -D 2ms n -t 33.030218 -s 15 -x 1.302202 -y 4.000000 -u -0.264985 -v -0.424367 -T 2.676847 l -t 33.080906 -s 7 -d 12 -S out -r 10Mb -D 2ms l -t 33.092619 -s 7 -d 1 -S out -r 10Mb -D 2ms l -t 33.153294 -s 18 -d 4 -S in -r 10Mb -D 2ms l -t 33.184871 -s 3 -d 7 -S out -r 10Mb -D 2ms l -t 33.195667 -s 3 -d 13 -S out -r 10Mb -D 2ms n -t 33.199118 -s 16 -x 0.219471 -y 4.000000 -u -0.463489 -v -0.191633 -T 0.473520 n -t 33.242170 -s 9 -x 1.645545 -y 3.155410 -u 0.233058 -v -0.437113 -T 4.927448 n -t 33.369806 -s 19 -x 2.067624 -y 1.841161 -u -0.286602 -v 0.428149 -T 4.799497 n -t 33.388817 -s 10 -x 0.000000 -y 2.228446 -u 0.458837 -v 0.144656 -T 2.417746 l -t 33.471082 -s 3 -d 0 -S out -r 10Mb -D 2ms n -t 33.484768 -s 7 -x 2.122538 -y 2.501875 -u -0.419382 -v 0.263178 -T 5.052354 l -t 33.487970 -s 10 -d 11 -S in -r 10Mb -D 2ms l -t 33.504267 -s 12 -d 6 -S out -r 10Mb -D 2ms n -t 33.603623 -s 4 -x 4.000000 -y 1.572634 -u -0.326191 -v -0.379555 -T 1.654505 n -t 33.640193 -s 8 -x 2.295909 -y 1.141860 -u 0.484882 -v 0.136848 -T 3.514443 n -t 33.641461 -s 2 -x 0.000000 -y 2.394338 -u 0.503295 -v -0.000406 -T 0.500370 n -t 33.672638 -s 16 -x 0.000000 -y 3.909258 -u 0.463489 -v -0.191633 -T 1.852136 n -t 33.677944 -s 1 -x 3.173587 -y 3.021816 -u -0.454295 -v 0.194680 -T 5.019831 l -t 33.683918 -s 13 -d 6 -S out -r 10Mb -D 2ms l -t 33.691954 -s 0 -d 6 -S out -r 10Mb -D 2ms l -t 33.697377 -s 19 -d 9 -S in -r 10Mb -D 2ms l -t 33.732500 -s 8 -d 18 -S in -r 10Mb -D 2ms l -t 33.742564 -s 9 -d 15 -S out -r 10Mb -D 2ms l -t 33.750698 -s 4 -d 17 -S in -r 10Mb -D 2ms l -t 33.817405 -s 6 -d 9 -S out -r 10Mb -D 2ms l -t 33.819207 -s 2 -d 11 -S in -r 10Mb -D 2ms n -t 33.835200 -s 6 -x 2.784111 -y 2.951948 -u -0.310935 -v 0.391028 -T 2.680251 l -t 33.839050 -s 6 -d 9 -S in -r 10Mb -D 2ms l -t 33.860982 -s 19 -d 8 -S out -r 10Mb -D 2ms l -t 33.891521 -s 16 -d 15 -S in -r 10Mb -D 2ms l -t 33.899050 -s 7 -d 12 -S in -r 10Mb -D 2ms n -t 33.971279 -s 5 -x 3.535018 -y 0.686085 -u 0.305923 -v 0.400235 -T 1.519931 n -t 34.050377 -s 3 -x 3.393028 -y 2.473006 -u -0.305817 -v 0.398294 -T 3.833835 n -t 34.101459 -s 13 -x 3.548477 -y 3.888312 -u -0.244567 -v -0.429830 -T 4.947008 n -t 34.141832 -s 2 -x 0.251834 -y 2.394135 -u -0.385848 -v 0.309251 -T 0.652677 l -t 34.158493 -s 1 -d 0 -S out -r 10Mb -D 2ms n -t 34.257338 -s 17 -x 3.223585 -y 1.252669 -u 0.215546 -v 0.438439 -T 3.602081 l -t 34.311471 -s 6 -d 14 -S out -r 10Mb -D 2ms l -t 34.385118 -s 9 -d 12 -S out -r 10Mb -D 2ms l -t 34.484713 -s 15 -d 7 -S in -r 10Mb -D 2ms l -t 34.488966 -s 16 -d 12 -S in -r 10Mb -D 2ms l -t 34.493938 -s 8 -d 4 -S in -r 10Mb -D 2ms l -t 34.526337 -s 13 -d 6 -S in -r 10Mb -D 2ms l -t 34.583541 -s 15 -d 10 -S in -r 10Mb -D 2ms n -t 34.590195 -s 0 -x 3.793070 -y 4.000000 -u 0.323012 -v -0.391181 -T 0.640626 l -t 34.592477 -s 6 -d 7 -S out -r 10Mb -D 2ms l -t 34.599680 -s 1 -d 14 -S out -r 10Mb -D 2ms l -t 34.603238 -s 13 -d 3 -S in -r 10Mb -D 2ms l -t 34.689229 -s 5 -d 8 -S in -r 10Mb -D 2ms n -t 34.794509 -s 2 -x 0.000000 -y 2.595976 -u 0.385848 -v 0.309251 -T 4.330536 l -t 34.814133 -s 19 -d 10 -S in -r 10Mb -D 2ms l -t 34.816781 -s 7 -d 10 -S in -r 10Mb -D 2ms l -t 34.845889 -s 9 -d 6 -S out -r 10Mb -D 2ms l -t 34.857999 -s 2 -d 15 -S in -r 10Mb -D 2ms l -t 34.939994 -s 3 -d 14 -S out -r 10Mb -D 2ms l -t 34.989755 -s 11 -d 19 -S in -r 10Mb -D 2ms l -t 35.059812 -s 15 -d 19 -S in -r 10Mb -D 2ms n -t 35.092593 -s 11 -x 0.744215 -y 2.101061 -u 0.487352 -v 0.146175 -T 5.105713 l -t 35.114288 -s 10 -d 12 -S in -r 10Mb -D 2ms l -t 35.117639 -s 19 -d 12 -S in -r 10Mb -D 2ms l -t 35.134547 -s 11 -d 15 -S in -r 10Mb -D 2ms l -t 35.159047 -s 7 -d 16 -S in -r 10Mb -D 2ms n -t 35.230821 -s 0 -x 4.000000 -y 3.749399 -u -0.323012 -v -0.391181 -T 0.060315 l -t 35.245288 -s 9 -d 7 -S out -r 10Mb -D 2ms n -t 35.257113 -s 14 -x 4.000000 -y 3.578979 -u -0.399120 -v 0.293298 -T 1.435471 n -t 35.258128 -s 4 -x 3.460316 -y 0.944658 -u -0.307846 -v 0.399447 -T 4.870923 l -t 35.281023 -s 11 -d 7 -S in -r 10Mb -D 2ms n -t 35.291136 -s 0 -x 3.980517 -y 3.725805 -u -0.027903 -v -0.493177 -T 4.929202 l -t 35.322438 -s 12 -d 2 -S in -r 10Mb -D 2ms l -t 35.335874 -s 2 -d 16 -S in -r 10Mb -D 2ms l -t 35.486343 -s 4 -d 18 -S out -r 10Mb -D 2ms n -t 35.491211 -s 5 -x 4.000000 -y 1.294415 -u -0.305923 -v 0.400235 -T 3.424179 l -t 35.511404 -s 19 -d 16 -S in -r 10Mb -D 2ms n -t 35.524775 -s 16 -x 0.858444 -y 3.554326 -u -0.287698 -v 0.400477 -T 1.112858 l -t 35.525368 -s 13 -d 6 -S out -r 10Mb -D 2ms l -t 35.535863 -s 7 -d 2 -S in -r 10Mb -D 2ms l -t 35.580260 -s 9 -d 19 -S out -r 10Mb -D 2ms n -t 35.696810 -s 12 -x 0.771722 -y 3.390008 -u 0.239913 -v 0.440468 -T 1.384872 n -t 35.707064 -s 15 -x 0.592878 -y 2.864034 -u 0.011640 -v 0.515658 -T 2.202946 l -t 35.775548 -s 2 -d 19 -S in -r 10Mb -D 2ms n -t 35.806563 -s 10 -x 1.109352 -y 2.578189 -u 0.488545 -v 0.032585 -T 4.981901 l -t 35.816875 -s 1 -d 19 -S in -r 10Mb -D 2ms l -t 35.840610 -s 11 -d 2 -S out -r 10Mb -D 2ms l -t 35.891298 -s 13 -d 1 -S out -r 10Mb -D 2ms n -t 35.907325 -s 18 -x 4.000000 -y 2.072755 -u -0.304992 -v 0.381286 -T 1.227380 l -t 35.988323 -s 10 -d 12 -S out -r 10Mb -D 2ms l -t 36.035726 -s 15 -d 11 -S out -r 10Mb -D 2ms l -t 36.100254 -s 14 -d 13 -S out -r 10Mb -D 2ms l -t 36.195241 -s 9 -d 4 -S in -r 10Mb -D 2ms l -t 36.200945 -s 7 -d 11 -S out -r 10Mb -D 2ms l -t 36.309819 -s 18 -d 0 -S in -r 10Mb -D 2ms l -t 36.380454 -s 15 -d 10 -S out -r 10Mb -D 2ms l -t 36.383947 -s 13 -d 17 -S in -r 10Mb -D 2ms l -t 36.385666 -s 13 -d 0 -S out -r 10Mb -D 2ms l -t 36.411499 -s 1 -d 12 -S in -r 10Mb -D 2ms l -t 36.422417 -s 17 -d 0 -S in -r 10Mb -D 2ms l -t 36.441808 -s 3 -d 14 -S in -r 10Mb -D 2ms l -t 36.460567 -s 17 -d 4 -S out -r 10Mb -D 2ms n -t 36.515451 -s 6 -x 1.950729 -y 4.000000 -u -0.310935 -v -0.391028 -T 2.363260 l -t 36.534194 -s 6 -d 12 -S in -r 10Mb -D 2ms l -t 36.548190 -s 13 -d 18 -S in -r 10Mb -D 2ms l -t 36.584559 -s 0 -d 14 -S out -r 10Mb -D 2ms l -t 36.613468 -s 7 -d 10 -S out -r 10Mb -D 2ms n -t 36.637633 -s 16 -x 0.538278 -y 4.000000 -u -0.287698 -v -0.400477 -T 1.870983 l -t 36.666415 -s 19 -d 11 -S out -r 10Mb -D 2ms n -t 36.692584 -s 14 -x 3.427075 -y 4.000000 -u -0.399120 -v -0.293298 -T 1.205296 l -t 36.718225 -s 2 -d 10 -S out -r 10Mb -D 2ms l -t 36.741529 -s 6 -d 19 -S in -r 10Mb -D 2ms l -t 36.879540 -s 1 -d 2 -S in -r 10Mb -D 2ms l -t 36.919926 -s 13 -d 3 -S out -r 10Mb -D 2ms l -t 36.970262 -s 19 -d 10 -S out -r 10Mb -D 2ms l -t 36.997900 -s 4 -d 8 -S out -r 10Mb -D 2ms l -t 37.006669 -s 4 -d 13 -S in -r 10Mb -D 2ms l -t 37.023502 -s 13 -d 17 -S out -r 10Mb -D 2ms l -t 37.032440 -s 13 -d 5 -S in -r 10Mb -D 2ms n -t 37.081682 -s 12 -x 1.103970 -y 4.000000 -u 0.239913 -v -0.440468 -T 3.659658 l -t 37.085495 -s 0 -d 5 -S in -r 10Mb -D 2ms l -t 37.093209 -s 6 -d 2 -S in -r 10Mb -D 2ms l -t 37.131046 -s 1 -d 15 -S in -r 10Mb -D 2ms n -t 37.134705 -s 18 -x 3.625659 -y 2.540737 -u 0.169579 -v 0.467022 -T 2.207475 n -t 37.154635 -s 8 -x 4.000000 -y 1.622803 -u -0.484882 -v 0.136848 -T 1.429488 l -t 37.173696 -s 8 -d 18 -S out -r 10Mb -D 2ms l -t 37.204024 -s 13 -d 10 -S in -r 10Mb -D 2ms l -t 37.237382 -s 13 -d 11 -S in -r 10Mb -D 2ms l -t 37.449831 -s 8 -d 0 -S in -r 10Mb -D 2ms l -t 37.476692 -s 8 -d 17 -S out -r 10Mb -D 2ms l -t 37.483001 -s 18 -d 13 -S out -r 10Mb -D 2ms l -t 37.563241 -s 4 -d 11 -S in -r 10Mb -D 2ms l -t 37.639647 -s 12 -d 16 -S out -r 10Mb -D 2ms l -t 37.683108 -s 10 -d 4 -S in -r 10Mb -D 2ms l -t 37.838397 -s 12 -d 3 -S in -r 10Mb -D 2ms l -t 37.855328 -s 12 -d 7 -S out -r 10Mb -D 2ms n -t 37.859419 -s 17 -x 4.000000 -y 2.831962 -u -0.215546 -v 0.438439 -T 1.558401 l -t 37.864626 -s 2 -d 16 -S out -r 10Mb -D 2ms n -t 37.884212 -s 3 -x 2.220576 -y 4.000000 -u -0.305817 -v -0.398294 -T 1.093951 n -t 37.897880 -s 14 -x 2.946017 -y 3.646489 -u -0.254235 -v -0.433453 -T 4.944144 n -t 37.910010 -s 15 -x 0.618521 -y 4.000000 -u 0.011640 -v -0.515658 -T 2.853924 l -t 37.920533 -s 1 -d 7 -S in -r 10Mb -D 2ms l -t 37.983497 -s 2 -d 7 -S out -r 10Mb -D 2ms l -t 38.018616 -s 3 -d 2 -S in -r 10Mb -D 2ms l -t 38.028614 -s 4 -d 9 -S out -r 10Mb -D 2ms l -t 38.060266 -s 15 -d 6 -S in -r 10Mb -D 2ms l -t 38.114993 -s 11 -d 5 -S in -r 10Mb -D 2ms l -t 38.124953 -s 10 -d 5 -S in -r 10Mb -D 2ms l -t 38.167654 -s 3 -d 1 -S out -r 10Mb -D 2ms n -t 38.169303 -s 19 -x 0.692080 -y 3.896060 -u -0.413798 -v 0.282765 -T 0.367585 n -t 38.169618 -s 9 -x 2.793928 -y 1.001558 -u -0.339870 -v 0.362396 -T 4.902400 l -t 38.231678 -s 8 -d 13 -S in -r 10Mb -D 2ms l -t 38.241814 -s 4 -d 8 -S in -r 10Mb -D 2ms l -t 38.253284 -s 14 -d 10 -S in -r 10Mb -D 2ms l -t 38.327212 -s 19 -d 6 -S out -r 10Mb -D 2ms l -t 38.332193 -s 9 -d 8 -S in -r 10Mb -D 2ms l -t 38.356879 -s 14 -d 11 -S in -r 10Mb -D 2ms l -t 38.375141 -s 9 -d 13 -S in -r 10Mb -D 2ms l -t 38.414879 -s 19 -d 12 -S out -r 10Mb -D 2ms l -t 38.416177 -s 14 -d 5 -S in -r 10Mb -D 2ms l -t 38.417734 -s 18 -d 5 -S out -r 10Mb -D 2ms l -t 38.462570 -s 18 -d 0 -S out -r 10Mb -D 2ms n -t 38.508615 -s 16 -x 0.000000 -y 3.250715 -u 0.287698 -v -0.400477 -T 1.821125 l -t 38.532026 -s 17 -d 0 -S out -r 10Mb -D 2ms n -t 38.536888 -s 19 -x 0.539974 -y 4.000000 -u -0.413798 -v -0.282765 -T 1.304922 n -t 38.537122 -s 7 -x 0.003671 -y 3.831545 -u -0.494862 -v 0.066500 -T 0.007418 n -t 38.544541 -s 7 -x 0.000000 -y 3.832039 -u 0.494862 -v 0.066500 -T 2.525732 l -t 38.556445 -s 17 -d 5 -S out -r 10Mb -D 2ms n -t 38.584123 -s 8 -x 3.306867 -y 1.818426 -u 0.485130 -v -0.068254 -T 1.428758 l -t 38.603597 -s 8 -d 4 -S out -r 10Mb -D 2ms l -t 38.634393 -s 19 -d 2 -S out -r 10Mb -D 2ms l -t 38.673844 -s 5 -d 0 -S out -r 10Mb -D 2ms n -t 38.697775 -s 1 -x 0.893102 -y 3.999076 -u -0.011051 -v -0.492873 -T 5.129426 l -t 38.748398 -s 4 -d 14 -S in -r 10Mb -D 2ms l -t 38.775267 -s 8 -d 9 -S out -r 10Mb -D 2ms l -t 38.779649 -s 8 -d 13 -S out -r 10Mb -D 2ms l -t 38.860322 -s 15 -d 2 -S out -r 10Mb -D 2ms l -t 38.874590 -s 5 -d 13 -S out -r 10Mb -D 2ms n -t 38.878711 -s 6 -x 1.215910 -y 3.075900 -u 0.291711 -v -0.387193 -T 5.126290 l -t 38.902643 -s 5 -d 8 -S out -r 10Mb -D 2ms n -t 38.915389 -s 5 -x 2.952466 -y 2.664892 -u -0.133770 -v -0.483655 -T 4.665347 n -t 38.978163 -s 3 -x 1.886028 -y 3.564286 -u 0.364172 -v -0.332345 -T 4.912458 l -t 39.033296 -s 4 -d 12 -S in -r 10Mb -D 2ms n -t 39.048466 -s 13 -x 2.338603 -y 1.761942 -u -0.384774 -v 0.318347 -T 4.949080 l -t 39.082892 -s 6 -d 2 -S out -r 10Mb -D 2ms l -t 39.106706 -s 13 -d 5 -S in -r 10Mb -D 2ms n -t 39.125045 -s 2 -x 1.670927 -y 3.935197 -u 0.190878 -v -0.470352 -T 4.915722 l -t 39.126684 -s 15 -d 12 -S out -r 10Mb -D 2ms l -t 39.172360 -s 13 -d 10 -S out -r 10Mb -D 2ms l -t 39.176960 -s 13 -d 11 -S out -r 10Mb -D 2ms l -t 39.205882 -s 14 -d 12 -S in -r 10Mb -D 2ms l -t 39.212259 -s 3 -d 4 -S in -r 10Mb -D 2ms l -t 39.221278 -s 1 -d 12 -S out -r 10Mb -D 2ms l -t 39.236875 -s 6 -d 4 -S in -r 10Mb -D 2ms n -t 39.342180 -s 18 -x 4.000000 -y 3.571677 -u -0.169579 -v 0.467022 -T 0.917136 l -t 39.346174 -s 16 -d 1 -S in -r 10Mb -D 2ms l -t 39.376238 -s 2 -d 6 -S in -r 10Mb -D 2ms l -t 39.381632 -s 16 -d 7 -S out -r 10Mb -D 2ms n -t 39.417820 -s 17 -x 3.664093 -y 3.515225 -u 0.448619 -v -0.237364 -T 0.748759 l -t 39.572882 -s 5 -d 9 -S in -r 10Mb -D 2ms l -t 39.643373 -s 12 -d 13 -S in -r 10Mb -D 2ms l -t 39.670452 -s 14 -d 13 -S in -r 10Mb -D 2ms l -t 39.695947 -s 2 -d 4 -S in -r 10Mb -D 2ms l -t 39.711116 -s 6 -d 13 -S in -r 10Mb -D 2ms l -t 39.729402 -s 11 -d 3 -S in -r 10Mb -D 2ms l -t 39.769265 -s 14 -d 6 -S in -r 10Mb -D 2ms l -t 39.800628 -s 10 -d 4 -S out -r 10Mb -D 2ms l -t 39.829529 -s 11 -d 4 -S out -r 10Mb -D 2ms n -t 39.841810 -s 19 -x 0.000000 -y 3.631014 -u 0.413798 -v -0.282765 -T 3.387161 l -t 39.872711 -s 11 -d 17 -S in -r 10Mb -D 2ms l -t 39.903335 -s 5 -d 4 -S out -r 10Mb -D 2ms l -t 39.915581 -s 14 -d 2 -S in -r 10Mb -D 2ms l -t 39.981233 -s 19 -d 16 -S out -r 10Mb -D 2ms l -t 39.984550 -s 15 -d 7 -S out -r 10Mb -D 2ms n -t 40.012881 -s 8 -x 4.000000 -y 1.720907 -u -0.485130 -v -0.068254 -T 3.605746 l -t 40.065621 -s 10 -d 17 -S in -r 10Mb -D 2ms l -t 40.118813 -s 12 -d 9 -S in -r 10Mb -D 2ms l -t 40.128655 -s 14 -d 9 -S in -r 10Mb -D 2ms n -t 40.129052 -s 4 -x 1.960821 -y 2.890334 -u -0.148877 -v -0.483100 -T 4.992628 l -t 40.130391 -s 2 -d 1 -S out -r 10Mb -D 2ms n -t 40.166579 -s 17 -x 4.000000 -y 3.337497 -u -0.448619 -v -0.237364 -T 4.273633 l -t 40.166623 -s 6 -d 9 -S in -r 10Mb -D 2ms l -t 40.173946 -s 6 -d 1 -S out -r 10Mb -D 2ms n -t 40.198306 -s 11 -x 3.232493 -y 2.847387 -u -0.460663 -v -0.187488 -T 4.990766 n -t 40.220339 -s 0 -x 3.842976 -y 1.294838 -u -0.512751 -v 0.028082 -T 4.960354 l -t 40.243852 -s 15 -d 6 -S out -r 10Mb -D 2ms n -t 40.259316 -s 18 -x 3.844473 -y 4.000000 -u -0.169579 -v -0.467022 -T 1.876186 l -t 40.329387 -s 10 -d 14 -S out -r 10Mb -D 2ms n -t 40.329741 -s 16 -x 0.523934 -y 2.521397 -u 0.454024 -v 0.183210 -T 4.906767 l -t 40.349670 -s 4 -d 9 -S in -r 10Mb -D 2ms l -t 40.384840 -s 16 -d 19 -S in -r 10Mb -D 2ms l -t 40.419492 -s 5 -d 10 -S out -r 10Mb -D 2ms l -t 40.471186 -s 5 -d 13 -S out -r 10Mb -D 2ms l -t 40.539030 -s 5 -d 12 -S in -r 10Mb -D 2ms l -t 40.605895 -s 5 -d 8 -S in -r 10Mb -D 2ms l -t 40.612173 -s 13 -d 2 -S in -r 10Mb -D 2ms l -t 40.720315 -s 5 -d 0 -S in -r 10Mb -D 2ms l -t 40.726397 -s 1 -d 7 -S out -r 10Mb -D 2ms l -t 40.730864 -s 11 -d 5 -S out -r 10Mb -D 2ms n -t 40.741340 -s 12 -x 1.981968 -y 2.388038 -u -0.509826 -v -0.044282 -T 3.887538 n -t 40.763934 -s 15 -x 0.651741 -y 2.528352 -u -0.294022 -v 0.407686 -T 2.216639 l -t 40.765436 -s 16 -d 13 -S in -r 10Mb -D 2ms n -t 40.788464 -s 10 -x 3.543236 -y 2.740526 -u -0.470137 -v 0.183360 -T 4.977793 l -t 40.812641 -s 10 -d 3 -S in -r 10Mb -D 2ms l -t 40.828269 -s 1 -d 13 -S in -r 10Mb -D 2ms l -t 40.835887 -s 12 -d 5 -S out -r 10Mb -D 2ms l -t 40.848511 -s 10 -d 18 -S in -r 10Mb -D 2ms l -t 40.851812 -s 3 -d 6 -S out -r 10Mb -D 2ms l -t 40.869393 -s 2 -d 11 -S in -r 10Mb -D 2ms l -t 40.966431 -s 7 -d 19 -S out -r 10Mb -D 2ms l -t 41.038409 -s 16 -d 4 -S in -r 10Mb -D 2ms l -t 41.044218 -s 3 -d 17 -S in -r 10Mb -D 2ms l -t 41.063631 -s 9 -d 2 -S in -r 10Mb -D 2ms l -t 41.064891 -s 12 -d 16 -S in -r 10Mb -D 2ms n -t 41.070272 -s 7 -x 1.249888 -y 4.000000 -u 0.494862 -v -0.066500 -T 2.477856 l -t 41.105844 -s 5 -d 6 -S in -r 10Mb -D 2ms l -t 41.119318 -s 12 -d 3 -S out -r 10Mb -D 2ms l -t 41.142571 -s 9 -d 5 -S out -r 10Mb -D 2ms l -t 41.150465 -s 12 -d 1 -S in -r 10Mb -D 2ms l -t 41.196236 -s 3 -d 4 -S out -r 10Mb -D 2ms l -t 41.203238 -s 11 -d 6 -S in -r 10Mb -D 2ms l -t 41.233769 -s 9 -d 16 -S in -r 10Mb -D 2ms l -t 41.252663 -s 11 -d 4 -S in -r 10Mb -D 2ms l -t 41.314976 -s 1 -d 4 -S in -r 10Mb -D 2ms l -t 41.357032 -s 9 -d 1 -S in -r 10Mb -D 2ms l -t 41.441637 -s 13 -d 19 -S in -r 10Mb -D 2ms l -t 41.490525 -s 3 -d 14 -S out -r 10Mb -D 2ms l -t 41.527864 -s 15 -d 13 -S in -r 10Mb -D 2ms l -t 41.644249 -s 2 -d 10 -S in -r 10Mb -D 2ms l -t 41.659143 -s 9 -d 11 -S in -r 10Mb -D 2ms l -t 41.666858 -s 3 -d 18 -S in -r 10Mb -D 2ms l -t 41.749079 -s 6 -d 13 -S out -r 10Mb -D 2ms l -t 41.762176 -s 12 -d 19 -S in -r 10Mb -D 2ms l -t 41.781996 -s 16 -d 2 -S in -r 10Mb -D 2ms l -t 41.864058 -s 14 -d 13 -S out -r 10Mb -D 2ms l -t 41.868477 -s 9 -d 19 -S in -r 10Mb -D 2ms l -t 41.927639 -s 3 -d 8 -S in -r 10Mb -D 2ms l -t 41.942985 -s 6 -d 8 -S in -r 10Mb -D 2ms l -t 41.954398 -s 0 -d 6 -S in -r 10Mb -D 2ms l -t 41.963822 -s 2 -d 13 -S out -r 10Mb -D 2ms l -t 41.980904 -s 15 -d 16 -S out -r 10Mb -D 2ms + -t 42 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {0.2 1.2 0 ---A--- (null)} l -t 42.018139 -s 17 -d 2 -S in -r 10Mb -D 2ms l -t 42.100159 -s 6 -d 12 -S out -r 10Mb -D 2ms n -t 42.135502 -s 18 -x 3.526312 -y 3.123779 -u -0.334865 -v -0.372828 -T 4.995981 l -t 42.146393 -s 15 -d 1 -S out -r 10Mb -D 2ms l -t 42.146581 -s 2 -d 12 -S out -r 10Mb -D 2ms l -t 42.171083 -s 4 -d 16 -S out -r 10Mb -D 2ms l -t 42.173363 -s 4 -d 13 -S out -r 10Mb -D 2ms l -t 42.184401 -s 6 -d 9 -S out -r 10Mb -D 2ms l -t 42.222958 -s 16 -d 11 -S in -r 10Mb -D 2ms l -t 42.360772 -s 0 -d 14 -S in -r 10Mb -D 2ms l -t 42.398798 -s 8 -d 2 -S in -r 10Mb -D 2ms l -t 42.461699 -s 16 -d 1 -S out -r 10Mb -D 2ms l -t 42.466519 -s 14 -d 9 -S out -r 10Mb -D 2ms l -t 42.474473 -s 2 -d 9 -S out -r 10Mb -D 2ms l -t 42.474635 -s 19 -d 15 -S out -r 10Mb -D 2ms l -t 42.479679 -s 5 -d 14 -S out -r 10Mb -D 2ms l -t 42.504063 -s 3 -d 11 -S out -r 10Mb -D 2ms l -t 42.568200 -s 16 -d 2 -S out -r 10Mb -D 2ms l -t 42.574404 -s 0 -d 2 -S in -r 10Mb -D 2ms l -t 42.585845 -s 8 -d 14 -S in -r 10Mb -D 2ms l -t 42.600770 -s 14 -d 12 -S out -r 10Mb -D 2ms l -t 42.646203 -s 4 -d 9 -S out -r 10Mb -D 2ms l -t 42.660383 -s 14 -d 1 -S in -r 10Mb -D 2ms l -t 42.691518 -s 7 -d 10 -S in -r 10Mb -D 2ms l -t 42.701680 -s 19 -d 11 -S in -r 10Mb -D 2ms l -t 42.733353 -s 10 -d 3 -S out -r 10Mb -D 2ms l -t 42.758076 -s 10 -d 16 -S in -r 10Mb -D 2ms l -t 42.759182 -s 4 -d 2 -S out -r 10Mb -D 2ms l -t 42.768469 -s 4 -d 0 -S in -r 10Mb -D 2ms l -t 42.819426 -s 12 -d 16 -S out -r 10Mb -D 2ms l -t 42.824959 -s 1 -d 13 -S out -r 10Mb -D 2ms l -t 42.829446 -s 8 -d 3 -S out -r 10Mb -D 2ms n -t 42.842023 -s 14 -x 1.689045 -y 1.503434 -u 0.288579 -v -0.413044 -T 3.639890 l -t 42.901899 -s 7 -d 16 -S in -r 10Mb -D 2ms l -t 42.905795 -s 12 -d 4 -S out -r 10Mb -D 2ms l -t 42.934618 -s 10 -d 2 -S out -r 10Mb -D 2ms n -t 42.980573 -s 15 -x 0.000000 -y 3.432046 -u 0.294022 -v 0.407686 -T 1.393117 l -t 43.009441 -s 11 -d 10 -S out -r 10Mb -D 2ms l -t 43.025339 -s 14 -d 5 -S in -r 10Mb -D 2ms l -t 43.033393 -s 14 -d 1 -S out -r 10Mb -D 2ms l -t 43.053835 -s 8 -d 4 -S in -r 10Mb -D 2ms l -t 43.059059 -s 11 -d 6 -S out -r 10Mb -D 2ms l -t 43.063467 -s 1 -d 19 -S out -r 10Mb -D 2ms n -t 43.072019 -s 9 -x 1.127750 -y 2.778166 -u -0.259506 -v 0.423910 -T 2.882298 l -t 43.073298 -s 16 -d 17 -S in -r 10Mb -D 2ms l -t 43.086330 -s 11 -d 8 -S in -r 10Mb -D 2ms l -t 43.097293 -s 16 -d 13 -S out -r 10Mb -D 2ms l -t 43.100543 -s 9 -d 1 -S out -r 10Mb -D 2ms n -t 43.228971 -s 19 -x 1.401601 -y 2.673245 -u 0.497406 -v -0.034009 -T 4.992436 l -t 43.235712 -s 18 -d 2 -S in -r 10Mb -D 2ms l -t 43.261618 -s 4 -d 6 -S out -r 10Mb -D 2ms l -t 43.277433 -s 2 -d 3 -S out -r 10Mb -D 2ms l -t 43.286518 -s 11 -d 0 -S in -r 10Mb -D 2ms l -t 43.322325 -s 17 -d 3 -S out -r 10Mb -D 2ms l -t 43.393819 -s 19 -d 10 -S in -r 10Mb -D 2ms l -t 43.414844 -s 5 -d 8 -S out -r 10Mb -D 2ms l -t 43.450895 -s 19 -d 13 -S out -r 10Mb -D 2ms l -t 43.456944 -s 19 -d 12 -S out -r 10Mb -D 2ms l -t 43.467488 -s 18 -d 10 -S out -r 10Mb -D 2ms l -t 43.468544 -s 11 -d 14 -S out -r 10Mb -D 2ms l -t 43.470950 -s 9 -d 11 -S out -r 10Mb -D 2ms l -t 43.473019 -s 19 -d 17 -S in -r 10Mb -D 2ms l -t 43.504910 -s 11 -d 4 -S out -r 10Mb -D 2ms n -t 43.548129 -s 7 -x 2.476084 -y 3.835222 -u -0.486698 -v -0.088077 -T 5.087521 l -t 43.563396 -s 9 -d 16 -S out -r 10Mb -D 2ms l -t 43.576180 -s 5 -d 0 -S out -r 10Mb -D 2ms n -t 43.580736 -s 5 -x 2.328382 -y 0.408474 -u -0.499514 -v -0.100664 -T 4.057803 n -t 43.618627 -s 8 -x 2.250745 -y 1.474799 -u -0.259831 -v -0.420842 -T 3.504401 l -t 43.639053 -s 16 -d 11 -S out -r 10Mb -D 2ms l -t 43.685089 -s 2 -d 11 -S out -r 10Mb -D 2ms l -t 43.730738 -s 13 -d 12 -S out -r 10Mb -D 2ms l -t 43.736841 -s 9 -d 15 -S in -r 10Mb -D 2ms l -t 43.806847 -s 8 -d 11 -S out -r 10Mb -D 2ms n -t 43.827201 -s 1 -x 0.836415 -y 1.470922 -u -0.467310 -v 0.188596 -T 1.789850 l -t 43.835864 -s 9 -d 12 -S out -r 10Mb -D 2ms l -t 43.837750 -s 8 -d 5 -S in -r 10Mb -D 2ms l -t 43.845327 -s 1 -d 11 -S in -r 10Mb -D 2ms n -t 43.890621 -s 3 -x 3.675005 -y 1.931655 -u -0.211912 -v 0.458411 -T 4.511989 l -t 43.954639 -s 9 -d 19 -S out -r 10Mb -D 2ms l -t 43.967881 -s 5 -d 4 -S in -r 10Mb -D 2ms n -t 43.997546 -s 13 -x 0.434325 -y 3.337466 -u -0.489482 -v 0.128609 -T 0.887316 n -t 44.005000 -s 6 -x 2.711307 -y 1.091037 -u 0.429798 -v 0.267428 -T 2.998368 n -t 44.040767 -s 2 -x 2.609228 -y 1.623079 -u -0.331263 -v -0.397379 -T 4.084465 l -t 44.075266 -s 6 -d 5 -S out -r 10Mb -D 2ms l -t 44.157733 -s 10 -d 17 -S out -r 10Mb -D 2ms l -t 44.168005 -s 6 -d 0 -S out -r 10Mb -D 2ms l -t 44.189343 -s 18 -d 19 -S in -r 10Mb -D 2ms l -t 44.304614 -s 4 -d 1 -S out -r 10Mb -D 2ms n -t 44.373690 -s 15 -x 0.409608 -y 4.000000 -u 0.294022 -v -0.407686 -T 1.420392 l -t 44.418236 -s 0 -d 17 -S in -r 10Mb -D 2ms n -t 44.440212 -s 17 -x 2.082767 -y 2.323090 -u -0.111460 -v -0.503083 -T 4.617709 l -t 44.440429 -s 17 -d 16 -S out -r 10Mb -D 2ms l -t 44.523419 -s 19 -d 11 -S out -r 10Mb -D 2ms l -t 44.578940 -s 6 -d 18 -S in -r 10Mb -D 2ms l -t 44.613112 -s 8 -d 6 -S out -r 10Mb -D 2ms n -t 44.628878 -s 12 -x 0.000000 -y 2.215890 -u 0.509826 -v -0.044282 -T 1.102522 l -t 44.695467 -s 10 -d 9 -S in -r 10Mb -D 2ms l -t 44.740536 -s 14 -d 0 -S out -r 10Mb -D 2ms l -t 44.791353 -s 6 -d 14 -S out -r 10Mb -D 2ms l -t 44.793035 -s 19 -d 10 -S out -r 10Mb -D 2ms l -t 44.821493 -s 14 -d 4 -S out -r 10Mb -D 2ms l -t 44.854173 -s 11 -d 12 -S in -r 10Mb -D 2ms n -t 44.884862 -s 13 -x 0.000000 -y 3.451583 -u 0.489482 -v 0.128609 -T 4.144834 l -t 44.902231 -s 10 -d 16 -S out -r 10Mb -D 2ms l -t 44.986498 -s 11 -d 17 -S out -r 10Mb -D 2ms l -t 44.996404 -s 15 -d 10 -S in -r 10Mb -D 2ms l -t 45.081233 -s 7 -d 16 -S out -r 10Mb -D 2ms l -t 45.097982 -s 3 -d 18 -S out -r 10Mb -D 2ms n -t 45.121680 -s 4 -x 1.217536 -y 0.478396 -u 0.469720 -v -0.192771 -T 2.481680 l -t 45.166438 -s 6 -d 2 -S out -r 10Mb -D 2ms n -t 45.180692 -s 0 -x 1.299549 -y 1.434134 -u -0.165736 -v 0.491312 -T 5.064679 n -t 45.189072 -s 11 -x 0.933433 -y 1.911677 -u 0.096915 -v 0.482051 -T 4.332164 l -t 45.224625 -s 19 -d 3 -S in -r 10Mb -D 2ms l -t 45.225834 -s 7 -d 15 -S in -r 10Mb -D 2ms l -t 45.228345 -s 0 -d 4 -S out -r 10Mb -D 2ms n -t 45.236507 -s 16 -x 2.751721 -y 3.420366 -u -0.482892 -v -0.136874 -T 4.981110 l -t 45.354619 -s 5 -d 14 -S out -r 10Mb -D 2ms l -t 45.373864 -s 0 -d 2 -S out -r 10Mb -D 2ms l -t 45.440418 -s 0 -d 8 -S out -r 10Mb -D 2ms l -t 45.441280 -s 18 -d 6 -S out -r 10Mb -D 2ms l -t 45.459218 -s 4 -d 2 -S in -r 10Mb -D 2ms l -t 45.492878 -s 0 -d 12 -S in -r 10Mb -D 2ms l -t 45.520042 -s 17 -d 19 -S out -r 10Mb -D 2ms l -t 45.531180 -s 13 -d 10 -S in -r 10Mb -D 2ms l -t 45.531839 -s 16 -d 3 -S in -r 10Mb -D 2ms l -t 45.580554 -s 11 -d 1 -S out -r 10Mb -D 2ms n -t 45.617051 -s 1 -x 0.000000 -y 1.808481 -u 0.467310 -v 0.188596 -T 3.398839 l -t 45.705858 -s 1 -d 11 -S in -r 10Mb -D 2ms n -t 45.731401 -s 12 -x 0.562095 -y 2.167068 -u -0.181771 -v 0.480741 -T 3.092316 l -t 45.733948 -s 13 -d 7 -S in -r 10Mb -D 2ms n -t 45.766256 -s 10 -x 1.202992 -y 3.653255 -u 0.429486 -v 0.275726 -T 1.257571 n -t 45.794082 -s 15 -x 0.827235 -y 3.420926 -u -0.480896 -v -0.157754 -T 1.720196 l -t 45.852490 -s 4 -d 14 -S in -r 10Mb -D 2ms l -t 45.911588 -s 7 -d 9 -S in -r 10Mb -D 2ms l -t 45.929674 -s 18 -d 19 -S out -r 10Mb -D 2ms n -t 45.954316 -s 9 -x 0.379775 -y 4.000000 -u -0.259506 -v -0.423910 -T 1.463452 l -t 45.978026 -s 1 -d 0 -S in -r 10Mb -D 2ms l -t 45.988050 -s 8 -d 14 -S out -r 10Mb -D 2ms l -t 46.057136 -s 9 -d 10 -S out -r 10Mb -D 2ms l -t 46.166016 -s 15 -d 12 -S in -r 10Mb -D 2ms l -t 46.195254 -s 2 -d 14 -S out -r 10Mb -D 2ms l -t 46.232822 -s 10 -d 16 -S in -r 10Mb -D 2ms l -t 46.313335 -s 11 -d 15 -S in -r 10Mb -D 2ms l -t 46.319626 -s 16 -d 19 -S out -r 10Mb -D 2ms l -t 46.335102 -s 15 -d 10 -S out -r 10Mb -D 2ms l -t 46.348790 -s 0 -d 17 -S out -r 10Mb -D 2ms n -t 46.481914 -s 14 -x 2.739440 -y 0.000000 -u 0.288579 -v 0.413044 -T 1.394634 l -t 46.500404 -s 5 -d 4 -S out -r 10Mb -D 2ms l -t 46.558115 -s 11 -d 7 -S in -r 10Mb -D 2ms l -t 46.558908 -s 3 -d 16 -S out -r 10Mb -D 2ms l -t 46.780289 -s 9 -d 12 -S in -r 10Mb -D 2ms l -t 46.792716 -s 4 -d 17 -S in -r 10Mb -D 2ms l -t 46.822846 -s 7 -d 12 -S in -r 10Mb -D 2ms l -t 46.851985 -s 11 -d 13 -S in -r 10Mb -D 2ms l -t 46.855285 -s 16 -d 11 -S in -r 10Mb -D 2ms l -t 46.893458 -s 19 -d 6 -S in -r 10Mb -D 2ms l -t 46.954568 -s 7 -d 10 -S out -r 10Mb -D 2ms n -t 47.003368 -s 6 -x 4.000000 -y 1.892884 -u -0.429798 -v 0.267428 -T 1.999918 n -t 47.023828 -s 10 -x 1.743102 -y 4.000000 -u 0.429486 -v -0.275726 -T 3.684061 l -t 47.032755 -s 13 -d 16 -S in -r 10Mb -D 2ms l -t 47.069199 -s 13 -d 9 -S out -r 10Mb -D 2ms l -t 47.072168 -s 13 -d 15 -S out -r 10Mb -D 2ms l -t 47.114904 -s 11 -d 15 -S out -r 10Mb -D 2ms n -t 47.123027 -s 8 -x 1.340192 -y 0.000000 -u -0.259831 -v 0.420842 -T 1.657285 n -t 47.131483 -s 18 -x 1.853334 -y 1.261138 -u -0.490633 -v 0.019324 -T 3.777436 l -t 47.205747 -s 3 -d 19 -S out -r 10Mb -D 2ms l -t 47.213902 -s 8 -d 17 -S in -r 10Mb -D 2ms l -t 47.368831 -s 0 -d 16 -S in -r 10Mb -D 2ms l -t 47.370868 -s 8 -d 4 -S out -r 10Mb -D 2ms l -t 47.389961 -s 18 -d 2 -S out -r 10Mb -D 2ms l -t 47.392051 -s 1 -d 12 -S out -r 10Mb -D 2ms n -t 47.417768 -s 9 -x 0.000000 -y 3.379629 -u 0.259506 -v -0.423910 -T 0.685119 l -t 47.459548 -s 0 -d 7 -S in -r 10Mb -D 2ms l -t 47.503795 -s 3 -d 10 -S in -r 10Mb -D 2ms n -t 47.514278 -s 15 -x 0.000000 -y 3.149558 -u 0.480896 -v -0.157754 -T 3.270537 l -t 47.599158 -s 15 -d 0 -S in -r 10Mb -D 2ms n -t 47.603361 -s 4 -x 2.383231 -y 0.000000 -u 0.469720 -v 0.192771 -T 2.607324 n -t 47.638539 -s 5 -x 0.301454 -y 0.000000 -u -0.499514 -v 0.100664 -T 0.603495 l -t 47.638677 -s 4 -d 2 -S out -r 10Mb -D 2ms l -t 47.699972 -s 9 -d 0 -S in -r 10Mb -D 2ms l -t 47.715486 -s 13 -d 7 -S out -r 10Mb -D 2ms l -t 47.776949 -s 1 -d 16 -S in -r 10Mb -D 2ms l -t 47.798466 -s 12 -d 11 -S out -r 10Mb -D 2ms l -t 47.859411 -s 5 -d 8 -S out -r 10Mb -D 2ms n -t 47.876548 -s 14 -x 3.141901 -y 0.576045 -u -0.213364 -v -0.444910 -T 1.294743 l -t 47.916219 -s 18 -d 8 -S in -r 10Mb -D 2ms l -t 47.948904 -s 1 -d 11 -S out -r 10Mb -D 2ms l -t 47.966850 -s 15 -d 11 -S in -r 10Mb -D 2ms l -t 47.974247 -s 10 -d 16 -S out -r 10Mb -D 2ms l -t 48.027959 -s 4 -d 17 -S out -r 10Mb -D 2ms n -t 48.102888 -s 9 -x 0.177793 -y 3.089200 -u 0.489222 -v 0.064157 -T 4.942547 n -t 48.125232 -s 2 -x 1.256195 -y 0.000000 -u -0.331263 -v 0.397379 -T 0.628801 l -t 48.172107 -s 11 -d 7 -S out -r 10Mb -D 2ms l -t 48.190945 -s 15 -d 16 -S in -r 10Mb -D 2ms n -t 48.221407 -s 19 -x 3.884867 -y 2.503456 -u 0.194242 -v 0.459742 -T 0.592728 n -t 48.242035 -s 5 -x 0.000000 -y 0.060750 -u 0.499514 -v 0.100664 -T 0.296121 l -t 48.303418 -s 9 -d 16 -S in -r 10Mb -D 2ms l -t 48.337753 -s 18 -d 17 -S out -r 10Mb -D 2ms l -t 48.338011 -s 16 -d 13 -S out -r 10Mb -D 2ms l -t 48.338799 -s 9 -d 11 -S in -r 10Mb -D 2ms n -t 48.402610 -s 3 -x 2.718863 -y 4.000000 -u -0.211912 -v -0.458411 -T 0.484968 l -t 48.404732 -s 3 -d 13 -S in -r 10Mb -D 2ms l -t 48.471381 -s 8 -d 5 -S in -r 10Mb -D 2ms l -t 48.506314 -s 5 -d 2 -S in -r 10Mb -D 2ms n -t 48.538155 -s 5 -x 0.147916 -y 0.090559 -u -0.375249 -v 0.316983 -T 0.394182 l -t 48.608392 -s 0 -d 1 -S out -r 10Mb -D 2ms n -t 48.635649 -s 7 -x 0.000000 -y 3.387130 -u 0.486698 -v -0.088077 -T 0.084559 n -t 48.720208 -s 7 -x 0.041154 -y 3.379682 -u -0.045713 -v -0.504714 -T 0.900286 n -t 48.754032 -s 2 -x 1.047896 -y 0.249872 -u -0.437711 -v -0.226592 -T 1.102737 l -t 48.754676 -s 5 -d 8 -S out -r 10Mb -D 2ms n -t 48.780312 -s 8 -x 0.909577 -y 0.697455 -u 0.514675 -v 0.040211 -T 4.937394 n -t 48.814135 -s 19 -x 4.000000 -y 2.775958 -u -0.194242 -v 0.459742 -T 2.662452 n -t 48.823717 -s 12 -x 0.000000 -y 3.653672 -u 0.181771 -v 0.480741 -T 0.720404 n -t 48.887578 -s 3 -x 2.616093 -y 3.777685 -u -0.219260 -v 0.432317 -T 0.514239 l -t 48.898192 -s 12 -d 15 -S out -r 10Mb -D 2ms l -t 48.917162 -s 15 -d 1 -S in -r 10Mb -D 2ms l -t 48.928888 -s 15 -d 11 -S out -r 10Mb -D 2ms n -t 48.932337 -s 5 -x 0.000000 -y 0.215508 -u 0.375249 -v 0.316983 -T 4.385921 l -t 48.935622 -s 16 -d 7 -S in -r 10Mb -D 2ms n -t 49.003286 -s 6 -x 3.140439 -y 2.427717 -u -0.430068 -v -0.264234 -T 4.886896 n -t 49.015890 -s 1 -x 1.588311 -y 2.449488 -u -0.119922 -v -0.502303 -T 4.876511 n -t 49.029696 -s 13 -x 2.028822 -y 3.984645 -u 0.374008 -v -0.339292 -T 4.851376 n -t 49.057922 -s 17 -x 1.568075 -y 0.000000 -u -0.111460 -v 0.503083 -T 0.427948 l -t 49.099047 -s 16 -d 11 -S out -r 10Mb -D 2ms l -t 49.125900 -s 6 -d 19 -S out -r 10Mb -D 2ms n -t 49.171291 -s 14 -x 2.865650 -y 0.000000 -u -0.213364 -v 0.444910 -T 3.708150 l -t 49.327700 -s 12 -d 9 -S out -r 10Mb -D 2ms n -t 49.401817 -s 3 -x 2.503341 -y 4.000000 -u -0.219260 -v -0.432317 -T 4.475838 l -t 49.405465 -s 1 -d 16 -S out -r 10Mb -D 2ms n -t 49.485870 -s 17 -x 1.520376 -y 0.215293 -u 0.483697 -v -0.080886 -T 2.661705 l -t 49.500398 -s 7 -d 12 -S out -r 10Mb -D 2ms n -t 49.521236 -s 11 -x 1.353286 -y 4.000000 -u 0.096915 -v -0.482051 -T 0.712315 n -t 49.544120 -s 12 -x 0.130949 -y 4.000000 -u 0.181771 -v -0.480741 -T 1.201658 l -t 49.544608 -s 5 -d 18 -S in -r 10Mb -D 2ms l -t 49.582021 -s 7 -d 15 -S out -r 10Mb -D 2ms l -t 49.612957 -s 19 -d 10 -S in -r 10Mb -D 2ms n -t 49.620494 -s 7 -x 0.000000 -y 2.925295 -u 0.045713 -v -0.504714 -T 3.914462 l -t 49.672013 -s 8 -d 2 -S out -r 10Mb -D 2ms l -t 49.694198 -s 7 -d 9 -S out -r 10Mb -D 2ms l -t 49.696406 -s 17 -d 2 -S out -r 10Mb -D 2ms l -t 49.715490 -s 15 -d 0 -S out -r 10Mb -D 2ms l -t 49.727691 -s 8 -d 18 -S out -r 10Mb -D 2ms l -t 49.778805 -s 7 -d 0 -S out -r 10Mb -D 2ms n -t 49.856769 -s 2 -x 0.565216 -y 0.000000 -u -0.437711 -v 0.226592 -T 1.291299 l -t 49.899474 -s 17 -d 14 -S in -r 10Mb -D 2ms l -t 49.914643 -s 11 -d 3 -S in -r 10Mb -D 2ms l -t 49.945769 -s 16 -d 0 -S out -r 10Mb -D 2ms l -t 50.005625 -s 11 -d 13 -S out -r 10Mb -D 2ms l -t 50.082614 -s 15 -d 11 -S in -r 10Mb -D 2ms l -t 50.084548 -s 12 -d 16 -S in -r 10Mb -D 2ms l -t 50.200402 -s 9 -d 0 -S out -r 10Mb -D 2ms n -t 50.210685 -s 4 -x 3.607944 -y 0.502617 -u -0.236675 -v -0.448313 -T 1.121129 n -t 50.217618 -s 16 -x 0.346382 -y 2.738581 -u -0.489644 -v -0.086136 -T 0.707415 l -t 50.224969 -s 16 -d 9 -S out -r 10Mb -D 2ms n -t 50.233551 -s 11 -x 1.422320 -y 3.656628 -u 0.026875 -v -0.513811 -T 5.165539 l -t 50.245015 -s 11 -d 0 -S out -r 10Mb -D 2ms n -t 50.245371 -s 0 -x 0.460147 -y 3.922472 -u -0.031277 -v -0.463732 -T 4.997204 l -t 50.260106 -s 14 -d 8 -S in -r 10Mb -D 2ms l -t 50.265198 -s 16 -d 15 -S out -r 10Mb -D 2ms l -t 50.324150 -s 10 -d 3 -S out -r 10Mb -D 2ms l -t 50.445142 -s 9 -d 3 -S in -r 10Mb -D 2ms l -t 50.553760 -s 1 -d 8 -S in -r 10Mb -D 2ms l -t 50.567567 -s 1 -d 15 -S out -r 10Mb -D 2ms l -t 50.586651 -s 4 -d 14 -S out -r 10Mb -D 2ms n -t 50.707889 -s 10 -x 3.325356 -y 2.984208 -u -0.499993 -v -0.005690 -T 5.100994 l -t 50.715351 -s 19 -d 13 -S in -r 10Mb -D 2ms n -t 50.745778 -s 12 -x 0.349376 -y 3.422313 -u 0.217750 -v 0.442585 -T 1.305256 l -t 50.772653 -s 15 -d 3 -S in -r 10Mb -D 2ms n -t 50.784815 -s 15 -x 1.572787 -y 2.633618 -u 0.141231 -v 0.486876 -T 2.806425 l -t 50.796093 -s 7 -d 18 -S in -r 10Mb -D 2ms l -t 50.805223 -s 1 -d 5 -S in -r 10Mb -D 2ms n -t 50.908919 -s 18 -x 0.000000 -y 1.334135 -u 0.490633 -v 0.019324 -T 1.213309 n -t 50.925032 -s 16 -x 0.000000 -y 2.677648 -u 0.489644 -v -0.086136 -T 4.290112 l -t 50.974970 -s 16 -d 0 -S in -r 10Mb -D 2ms l -t 51.090395 -s 2 -d 5 -S out -r 10Mb -D 2ms n -t 51.148068 -s 2 -x 0.000000 -y 0.292599 -u 0.437711 -v 0.226592 -T 2.754423 l -t 51.154589 -s 16 -d 12 -S out -r 10Mb -D 2ms l -t 51.159212 -s 6 -d 14 -S in -r 10Mb -D 2ms l -t 51.196624 -s 10 -d 19 -S out -r 10Mb -D 2ms l -t 51.199377 -s 10 -d 3 -S in -r 10Mb -D 2ms l -t 51.201976 -s 6 -d 1 -S in -r 10Mb -D 2ms l -t 51.205650 -s 8 -d 1 -S out -r 10Mb -D 2ms l -t 51.234368 -s 17 -d 4 -S in -r 10Mb -D 2ms n -t 51.331813 -s 4 -x 3.342600 -y 0.000000 -u -0.236675 -v 0.448313 -T 3.780350 l -t 51.412553 -s 2 -d 18 -S in -r 10Mb -D 2ms l -t 51.417220 -s 8 -d 6 -S in -r 10Mb -D 2ms l -t 51.469274 -s 19 -d 13 -S out -r 10Mb -D 2ms n -t 51.476586 -s 19 -x 3.482840 -y 4.000000 -u -0.194242 -v -0.459742 -T 1.731277 l -t 51.483161 -s 19 -d 13 -S in -r 10Mb -D 2ms l -t 51.513547 -s 14 -d 17 -S out -r 10Mb -D 2ms l -t 51.520320 -s 18 -d 1 -S in -r 10Mb -D 2ms l -t 51.648806 -s 13 -d 3 -S out -r 10Mb -D 2ms l -t 51.650016 -s 10 -d 9 -S in -r 10Mb -D 2ms l -t 51.711450 -s 6 -d 8 -S out -r 10Mb -D 2ms l -t 51.776489 -s 4 -d 8 -S in -r 10Mb -D 2ms l -t 51.830117 -s 6 -d 5 -S in -r 10Mb -D 2ms l -t 51.920535 -s 11 -d 16 -S in -r 10Mb -D 2ms l -t 51.935513 -s 15 -d 10 -S in -r 10Mb -D 2ms l -t 51.970788 -s 1 -d 2 -S in -r 10Mb -D 2ms n -t 52.051034 -s 12 -x 0.633595 -y 4.000000 -u 0.217750 -v -0.442585 -T 3.783474 l -t 52.075723 -s 7 -d 16 -S out -r 10Mb -D 2ms n -t 52.122228 -s 18 -x 0.595289 -y 1.357581 -u -0.463711 -v -0.107396 -T 1.283749 n -t 52.147575 -s 17 -x 2.807834 -y 0.000000 -u 0.483697 -v 0.080886 -T 2.277715 l -t 52.196326 -s 5 -d 14 -S in -r 10Mb -D 2ms l -t 52.201324 -s 9 -d 11 -S out -r 10Mb -D 2ms l -t 52.458215 -s 9 -d 19 -S in -r 10Mb -D 2ms l -t 52.468050 -s 15 -d 11 -S out -r 10Mb -D 2ms l -t 52.472096 -s 7 -d 2 -S in -r 10Mb -D 2ms l -t 52.500527 -s 6 -d 11 -S in -r 10Mb -D 2ms l -t 52.554483 -s 18 -d 1 -S out -r 10Mb -D 2ms l -t 52.580389 -s 3 -d 16 -S in -r 10Mb -D 2ms l -t 52.594097 -s 18 -d 5 -S out -r 10Mb -D 2ms l -t 52.594616 -s 13 -d 10 -S out -r 10Mb -D 2ms l -t 52.597229 -s 14 -d 8 -S out -r 10Mb -D 2ms l -t 52.632238 -s 0 -d 12 -S out -r 10Mb -D 2ms l -t 52.656024 -s 9 -d 3 -S out -r 10Mb -D 2ms l -t 52.679428 -s 5 -d 11 -S in -r 10Mb -D 2ms l -t 52.706440 -s 3 -d 15 -S out -r 10Mb -D 2ms l -t 52.733145 -s 11 -d 14 -S in -r 10Mb -D 2ms l -t 52.769817 -s 3 -d 14 -S in -r 10Mb -D 2ms l -t 52.856111 -s 1 -d 5 -S out -r 10Mb -D 2ms n -t 52.879441 -s 14 -x 2.074464 -y 1.649794 -u -0.499532 -v 0.119744 -T 4.152815 l -t 52.894153 -s 6 -d 2 -S in -r 10Mb -D 2ms l -t 52.951147 -s 3 -d 5 -S in -r 10Mb -D 2ms n -t 53.045435 -s 9 -x 2.595796 -y 3.406297 -u 0.456411 -v 0.179750 -T 3.076624 l -t 53.184077 -s 1 -d 6 -S out -r 10Mb -D 2ms n -t 53.207864 -s 19 -x 3.146554 -y 3.204058 -u 0.439113 -v -0.239021 -T 1.943570 l -t 53.286428 -s 16 -d 5 -S in -r 10Mb -D 2ms l -t 53.298223 -s 16 -d 10 -S in -r 10Mb -D 2ms l -t 53.299728 -s 18 -d 2 -S out -r 10Mb -D 2ms n -t 53.318259 -s 5 -x 1.645813 -y 1.605772 -u -0.473503 -v -0.118752 -T 3.475823 l -t 53.327663 -s 16 -d 12 -S in -r 10Mb -D 2ms l -t 53.354220 -s 14 -d 16 -S in -r 10Mb -D 2ms l -t 53.402628 -s 4 -d 17 -S out -r 10Mb -D 2ms n -t 53.405977 -s 18 -x 0.000000 -y 1.219712 -u 0.463711 -v -0.107396 -T 3.909639 l -t 53.409161 -s 5 -d 2 -S in -r 10Mb -D 2ms l -t 53.481672 -s 10 -d 9 -S out -r 10Mb -D 2ms l -t 53.524047 -s 10 -d 15 -S out -r 10Mb -D 2ms n -t 53.534956 -s 7 -x 0.178940 -y 0.949610 -u -0.492776 -v -0.046454 -T 0.363127 l -t 53.566553 -s 10 -d 12 -S in -r 10Mb -D 2ms l -t 53.576504 -s 9 -d 15 -S out -r 10Mb -D 2ms n -t 53.591239 -s 15 -x 1.969142 -y 4.000000 -u 0.141231 -v -0.486876 -T 2.165312 l -t 53.675788 -s 16 -d 0 -S out -r 10Mb -D 2ms l -t 53.675905 -s 7 -d 2 -S out -r 10Mb -D 2ms l -t 53.679162 -s 15 -d 10 -S in -r 10Mb -D 2ms l -t 53.682311 -s 18 -d 6 -S in -r 10Mb -D 2ms n -t 53.717707 -s 8 -x 3.450730 -y 0.895991 -u -0.348638 -v 0.327822 -T 5.125657 l -t 53.759711 -s 2 -d 14 -S in -r 10Mb -D 2ms l -t 53.796308 -s 11 -d 2 -S in -r 10Mb -D 2ms n -t 53.877655 -s 3 -x 1.521969 -y 2.065017 -u 0.289005 -v 0.409424 -T 4.726108 n -t 53.881073 -s 13 -x 3.843277 -y 2.338612 -u 0.502071 -v 0.020330 -T 0.312153 n -t 53.890182 -s 6 -x 1.038739 -y 1.136432 -u -0.112012 -v -0.487318 -T 2.332013 n -t 53.892402 -s 1 -x 1.003510 -y 0.000000 -u -0.119922 -v 0.502303 -T 0.207537 n -t 53.898083 -s 7 -x 0.000000 -y 0.932742 -u 0.492776 -v -0.046454 -T 4.463566 n -t 53.902491 -s 2 -x 1.205642 -y 0.916730 -u 0.385271 -v -0.320490 -T 2.860406 l -t 53.982664 -s 7 -d 6 -S in -r 10Mb -D 2ms l -t 54.029829 -s 1 -d 6 -S in -r 10Mb -D 2ms l -t 54.072693 -s 18 -d 0 -S in -r 10Mb -D 2ms n -t 54.099939 -s 1 -x 0.978622 -y 0.104247 -u 0.481261 -v -0.095450 -T 1.092163 l -t 54.125390 -s 18 -d 5 -S in -r 10Mb -D 2ms l -t 54.154995 -s 8 -d 17 -S out -r 10Mb -D 2ms l -t 54.192432 -s 3 -d 12 -S in -r 10Mb -D 2ms n -t 54.193226 -s 13 -x 4.000000 -y 2.344958 -u -0.502071 -v 0.020330 -T 4.692758 l -t 54.224540 -s 2 -d 14 -S out -r 10Mb -D 2ms l -t 54.269808 -s 5 -d 16 -S out -r 10Mb -D 2ms l -t 54.321612 -s 5 -d 0 -S in -r 10Mb -D 2ms l -t 54.396867 -s 0 -d 14 -S in -r 10Mb -D 2ms l -t 54.397767 -s 6 -d 14 -S out -r 10Mb -D 2ms n -t 54.425290 -s 17 -x 3.909557 -y 0.184234 -u 0.497302 -v 0.064486 -T 0.181867 l -t 54.439124 -s 3 -d 5 -S out -r 10Mb -D 2ms l -t 54.462179 -s 7 -d 5 -S in -r 10Mb -D 2ms n -t 54.607156 -s 17 -x 4.000000 -y 0.195962 -u -0.497302 -v 0.064486 -T 4.875184 l -t 54.607899 -s 0 -d 7 -S in -r 10Mb -D 2ms l -t 54.623850 -s 18 -d 14 -S in -r 10Mb -D 2ms l -t 54.628564 -s 12 -d 14 -S in -r 10Mb -D 2ms l -t 54.631784 -s 11 -d 16 -S out -r 10Mb -D 2ms l -t 54.634764 -s 3 -d 11 -S out -r 10Mb -D 2ms l -t 54.668836 -s 11 -d 18 -S in -r 10Mb -D 2ms l -t 54.788575 -s 19 -d 9 -S out -r 10Mb -D 2ms l -t 54.792738 -s 5 -d 2 -S out -r 10Mb -D 2ms l -t 54.807147 -s 4 -d 16 -S in -r 10Mb -D 2ms l -t 54.834250 -s 3 -d 15 -S in -r 10Mb -D 2ms l -t 54.878412 -s 15 -d 10 -S out -r 10Mb -D 2ms l -t 54.916981 -s 14 -d 16 -S out -r 10Mb -D 2ms l -t 54.953451 -s 3 -d 14 -S out -r 10Mb -D 2ms l -t 54.960275 -s 10 -d 16 -S out -r 10Mb -D 2ms l -t 55.005433 -s 15 -d 16 -S in -r 10Mb -D 2ms l -t 55.101031 -s 7 -d 11 -S in -r 10Mb -D 2ms n -t 55.112163 -s 4 -x 2.447884 -y 1.694781 -u 0.025090 -v 0.504935 -T 4.565377 l -t 55.148054 -s 14 -d 11 -S out -r 10Mb -D 2ms n -t 55.151434 -s 19 -x 4.000000 -y 2.739504 -u -0.439113 -v -0.239021 -T 3.089936 n -t 55.192102 -s 1 -x 1.504237 -y 0.000000 -u 0.481261 -v 0.095450 -T 4.066373 n -t 55.215144 -s 16 -x 2.100630 -y 2.308115 -u -0.351010 -v 0.330060 -T 5.091813 n -t 55.242575 -s 0 -x 0.303850 -y 1.605108 -u 0.017838 -v -0.513344 -T 3.126768 l -t 55.312933 -s 4 -d 3 -S in -r 10Mb -D 2ms l -t 55.370875 -s 10 -d 3 -S out -r 10Mb -D 2ms l -t 55.371541 -s 1 -d 11 -S in -r 10Mb -D 2ms n -t 55.399090 -s 11 -x 1.561143 -y 1.002517 -u 0.502859 -v -0.018672 -T 4.849986 l -t 55.435126 -s 11 -d 5 -S out -r 10Mb -D 2ms l -t 55.444339 -s 5 -d 6 -S out -r 10Mb -D 2ms l -t 55.507462 -s 11 -d 6 -S out -r 10Mb -D 2ms l -t 55.512041 -s 4 -d 13 -S in -r 10Mb -D 2ms l -t 55.522388 -s 18 -d 14 -S out -r 10Mb -D 2ms l -t 55.554779 -s 10 -d 14 -S in -r 10Mb -D 2ms l -t 55.570811 -s 6 -d 2 -S out -r 10Mb -D 2ms l -t 55.584927 -s 8 -d 13 -S in -r 10Mb -D 2ms l -t 55.701008 -s 15 -d 4 -S in -r 10Mb -D 2ms n -t 55.756551 -s 15 -x 2.274952 -y 2.945761 -u 0.450056 -v -0.185672 -T 3.832958 n -t 55.808883 -s 10 -x 0.774894 -y 2.955181 -u 0.065386 -v -0.495798 -T 5.070224 l -t 55.833298 -s 1 -d 6 -S out -r 10Mb -D 2ms n -t 55.834508 -s 12 -x 1.457446 -y 2.325491 -u -0.475928 -v -0.144808 -T 3.062324 l -t 55.864585 -s 15 -d 13 -S in -r 10Mb -D 2ms l -t 56.014697 -s 12 -d 3 -S out -r 10Mb -D 2ms l -t 56.062986 -s 11 -d 8 -S in -r 10Mb -D 2ms l -t 56.119275 -s 18 -d 5 -S out -r 10Mb -D 2ms n -t 56.122058 -s 9 -x 4.000000 -y 3.959319 -u -0.456411 -v 0.179750 -T 0.226319 l -t 56.126501 -s 18 -d 6 -S out -r 10Mb -D 2ms l -t 56.131830 -s 10 -d 16 -S in -r 10Mb -D 2ms l -t 56.217199 -s 18 -d 0 -S out -r 10Mb -D 2ms n -t 56.222196 -s 6 -x 0.777525 -y 0.000000 -u -0.112012 -v 0.487318 -T 2.598775 l -t 56.248779 -s 13 -d 3 -S in -r 10Mb -D 2ms l -t 56.249466 -s 7 -d 5 -S out -r 10Mb -D 2ms l -t 56.303226 -s 14 -d 0 -S out -r 10Mb -D 2ms n -t 56.348378 -s 9 -x 3.896705 -y 4.000000 -u -0.456411 -v -0.179750 -T 1.641388 l -t 56.350365 -s 2 -d 17 -S in -r 10Mb -D 2ms l -t 56.356518 -s 4 -d 19 -S in -r 10Mb -D 2ms l -t 56.358907 -s 15 -d 19 -S in -r 10Mb -D 2ms l -t 56.421607 -s 0 -d 6 -S in -r 10Mb -D 2ms l -t 56.442972 -s 1 -d 17 -S in -r 10Mb -D 2ms l -t 56.519762 -s 15 -d 8 -S in -r 10Mb -D 2ms l -t 56.548446 -s 15 -d 16 -S out -r 10Mb -D 2ms l -t 56.580022 -s 0 -d 7 -S out -r 10Mb -D 2ms l -t 56.682890 -s 17 -d 11 -S in -r 10Mb -D 2ms l -t 56.755459 -s 1 -d 18 -S in -r 10Mb -D 2ms n -t 56.762897 -s 2 -x 2.307675 -y 0.000000 -u 0.385271 -v 0.320490 -T 2.136223 n -t 56.794081 -s 5 -x 0.000000 -y 1.193011 -u 0.473503 -v -0.118752 -T 1.539222 l -t 56.804077 -s 19 -d 8 -S in -r 10Mb -D 2ms l -t 56.839597 -s 4 -d 16 -S out -r 10Mb -D 2ms l -t 56.918645 -s 3 -d 16 -S out -r 10Mb -D 2ms l -t 56.984880 -s 5 -d 6 -S in -r 10Mb -D 2ms l -t 56.997071 -s 11 -d 8 -S out -r 10Mb -D 2ms n -t 57.032256 -s 14 -x 0.000000 -y 2.147069 -u 0.499532 -v 0.119744 -T 0.908719 l -t 57.080138 -s 14 -d 5 -S out -r 10Mb -D 2ms l -t 57.142203 -s 12 -d 16 -S out -r 10Mb -D 2ms l -t 57.147523 -s 13 -d 3 -S out -r 10Mb -D 2ms l -t 57.150541 -s 2 -d 18 -S in -r 10Mb -D 2ms l -t 57.185977 -s 6 -d 7 -S out -r 10Mb -D 2ms l -t 57.255198 -s 17 -d 18 -S in -r 10Mb -D 2ms n -t 57.315616 -s 18 -x 1.812944 -y 0.799832 -u 0.370334 -v 0.321339 -T 4.971463 l -t 57.320033 -s 9 -d 3 -S in -r 10Mb -D 2ms l -t 57.367571 -s 17 -d 7 -S in -r 10Mb -D 2ms l -t 57.390660 -s 15 -d 8 -S out -r 10Mb -D 2ms l -t 57.408323 -s 2 -d 7 -S in -r 10Mb -D 2ms l -t 57.419990 -s 15 -d 3 -S out -r 10Mb -D 2ms l -t 57.444706 -s 16 -d 10 -S out -r 10Mb -D 2ms l -t 57.515912 -s 1 -d 7 -S in -r 10Mb -D 2ms l -t 57.602650 -s 12 -d 5 -S in -r 10Mb -D 2ms l -t 57.616863 -s 18 -d 1 -S out -r 10Mb -D 2ms l -t 57.782085 -s 15 -d 13 -S out -r 10Mb -D 2ms l -t 57.784323 -s 10 -d 5 -S in -r 10Mb -D 2ms l -t 57.793197 -s 4 -d 9 -S in -r 10Mb -D 2ms l -t 57.802273 -s 4 -d 19 -S out -r 10Mb -D 2ms l -t 57.937745 -s 8 -d 4 -S out -r 10Mb -D 2ms n -t 57.940975 -s 14 -x 0.453934 -y 2.255883 -u 0.172428 -v 0.468106 -T 3.725903 n -t 57.989766 -s 9 -x 3.147558 -y 3.704961 -u -0.127350 -v -0.477152 -T 5.027482 l -t 58.017609 -s 4 -d 15 -S out -r 10Mb -D 2ms l -t 58.067522 -s 10 -d 6 -S in -r 10Mb -D 2ms l -t 58.149441 -s 12 -d 5 -S out -r 10Mb -D 2ms l -t 58.219440 -s 13 -d 4 -S out -r 10Mb -D 2ms l -t 58.221828 -s 5 -d 0 -S out -r 10Mb -D 2ms n -t 58.241370 -s 19 -x 2.643170 -y 2.000945 -u -0.494517 -v 0.072647 -T 4.956614 l -t 58.282262 -s 6 -d 12 -S in -r 10Mb -D 2ms l -t 58.284385 -s 19 -d 18 -S in -r 10Mb -D 2ms l -t 58.301356 -s 11 -d 17 -S out -r 10Mb -D 2ms l -t 58.305656 -s 6 -d 0 -S out -r 10Mb -D 2ms n -t 58.333303 -s 5 -x 0.728827 -y 1.010226 -u -0.314240 -v -0.379185 -T 2.319330 n -t 58.361649 -s 7 -x 2.199539 -y 0.725391 -u -0.078385 -v -0.497714 -T 1.457445 n -t 58.369343 -s 0 -x 0.359624 -y 0.000000 -u 0.017838 -v 0.513344 -T 1.706161 l -t 58.388458 -s 16 -d 14 -S in -r 10Mb -D 2ms l -t 58.396146 -s 19 -d 15 -S out -r 10Mb -D 2ms l -t 58.431167 -s 0 -d 5 -S in -r 10Mb -D 2ms l -t 58.458161 -s 1 -d 17 -S out -r 10Mb -D 2ms l -t 58.521422 -s 14 -d 10 -S out -r 10Mb -D 2ms l -t 58.535392 -s 7 -d 11 -S out -r 10Mb -D 2ms l -t 58.588762 -s 2 -d 17 -S out -r 10Mb -D 2ms l -t 58.589831 -s 7 -d 1 -S out -r 10Mb -D 2ms n -t 58.603763 -s 3 -x 2.887836 -y 4.000000 -u 0.289005 -v -0.409424 -T 0.178580 l -t 58.773464 -s 12 -d 10 -S out -r 10Mb -D 2ms n -t 58.782342 -s 3 -x 2.939446 -y 3.926885 -u 0.237577 -v -0.435241 -T 4.464047 n -t 58.820971 -s 6 -x 0.486430 -y 1.266430 -u 0.137752 -v -0.473435 -T 2.674983 n -t 58.843364 -s 8 -x 1.663733 -y 2.576292 -u 0.401155 -v -0.276076 -T 4.850546 l -t 58.863831 -s 6 -d 0 -S in -r 10Mb -D 2ms l -t 58.864672 -s 12 -d 14 -S out -r 10Mb -D 2ms n -t 58.885984 -s 13 -x 1.643904 -y 2.440362 -u 0.333731 -v 0.358943 -T 4.345088 n -t 58.896832 -s 12 -x 0.000000 -y 1.882043 -u 0.475928 -v -0.144808 -T 1.921010 n -t 58.899120 -s 2 -x 3.130700 -y 0.684637 -u 0.462997 -v -0.180658 -T 1.877548 l -t 58.900194 -s 2 -d 7 -S out -r 10Mb -D 2ms l -t 58.911050 -s 17 -d 18 -S out -r 10Mb -D 2ms l -t 58.923667 -s 11 -d 18 -S out -r 10Mb -D 2ms l -t 58.995336 -s 2 -d 18 -S out -r 10Mb -D 2ms l -t 59.025557 -s 7 -d 18 -S out -r 10Mb -D 2ms n -t 59.258475 -s 1 -x 3.461222 -y 0.388134 -u 0.324719 -v 0.375912 -T 1.659211 l -t 59.266506 -s 10 -d 0 -S in -r 10Mb -D 2ms l -t 59.278588 -s 10 -d 17 -S in -r 10Mb -D 2ms l -t 59.378306 -s 10 -d 12 -S in -r 10Mb -D 2ms n -t 59.482340 -s 17 -x 1.575561 -y 0.510342 -u -0.438229 -v -0.257027 -T 1.985561 l -t 59.490943 -s 9 -d 4 -S out -r 10Mb -D 2ms n -t 59.589509 -s 15 -x 4.000000 -y 2.234087 -u -0.450056 -v -0.185672 -T 1.289177 l -t 59.632003 -s 17 -d 6 -S in -r 10Mb -D 2ms n -t 59.677540 -s 4 -x 2.562430 -y 4.000000 -u 0.025090 -v -0.504935 -T 0.591573 l -t 59.745928 -s 9 -d 13 -S in -r 10Mb -D 2ms l -t 59.777584 -s 8 -d 18 -S in -r 10Mb -D 2ms l -t 59.794383 -s 19 -d 18 -S out -r 10Mb -D 2ms n -t 59.819094 -s 7 -x 2.085296 -y 0.000000 -u -0.078385 -v 0.497714 -T 3.469545 l -t 59.828104 -s 12 -d 0 -S in -r 10Mb -D 2ms l -t 59.832045 -s 8 -d 9 -S in -r 10Mb -D 2ms l -t 59.922831 -s 6 -d 12 -S out -r 10Mb -D 2ms l -t 60.062821 -s 10 -d 12 -S out -r 10Mb -D 2ms l -t 60.072640 -s 10 -d 5 -S out -r 10Mb -D 2ms n -t 60.075504 -s 0 -x 0.390057 -y 0.875848 -u 0.472883 -v -0.178024 -T 4.809740 l -t 60.105027 -s 9 -d 18 -S in -r 10Mb -D 2ms l -t 60.128576 -s 15 -d 18 -S in -r 10Mb -D 2ms l -t 60.156052 -s 13 -d 4 -S in -r 10Mb -D 2ms l -t 60.156814 -s 0 -d 17 -S in -r 10Mb -D 2ms l -t 60.221697 -s 15 -d 9 -S in -r 10Mb -D 2ms n -t 60.249076 -s 11 -x 4.000000 -y 0.911959 -u -0.502859 -v -0.018672 -T 0.182489 n -t 60.269112 -s 4 -x 2.577273 -y 3.701294 -u 0.515512 -v -0.061483 -T 2.759833 n -t 60.306958 -s 16 -x 0.313352 -y 3.988721 -u 0.375380 -v 0.336861 -T 0.033483 n -t 60.340441 -s 16 -x 0.325921 -y 4.000000 -u 0.375380 -v -0.336861 -T 5.102219 l -t 60.388772 -s 19 -d 12 -S in -r 10Mb -D 2ms l -t 60.392072 -s 13 -d 19 -S out -r 10Mb -D 2ms n -t 60.431565 -s 11 -x 3.908234 -y 0.908551 -u 0.417078 -v -0.264791 -T 0.220022 l -t 60.485453 -s 7 -d 10 -S in -r 10Mb -D 2ms l -t 60.637237 -s 13 -d 8 -S out -r 10Mb -D 2ms n -t 60.651587 -s 11 -x 4.000000 -y 0.850291 -u -0.417078 -v -0.264791 -T 3.211179 n -t 60.652634 -s 5 -x 0.000000 -y 0.130771 -u 0.314240 -v -0.379185 -T 0.344874 l -t 60.693045 -s 7 -d 17 -S out -r 10Mb -D 2ms l -t 60.712882 -s 8 -d 19 -S out -r 10Mb -D 2ms l -t 60.741311 -s 5 -d 17 -S in -r 10Mb -D 2ms n -t 60.776669 -s 2 -x 4.000000 -y 0.345443 -u -0.462997 -v -0.180658 -T 1.912141 l -t 60.808108 -s 8 -d 15 -S in -r 10Mb -D 2ms n -t 60.817842 -s 12 -x 0.914263 -y 1.603866 -u 0.214746 -v 0.450696 -T 4.991193 n -t 60.878687 -s 15 -x 3.419797 -y 1.994722 -u 0.061782 -v 0.498089 -T 4.025945 n -t 60.879107 -s 10 -x 1.106416 -y 0.441375 -u 0.435027 -v 0.222555 -T 4.922922 l -t 60.900092 -s 15 -d 3 -S in -r 10Mb -D 2ms n -t 60.917686 -s 1 -x 4.000000 -y 1.011852 -u -0.324719 -v 0.375912 -T 3.399797 l -t 60.955261 -s 5 -d 0 -S out -r 10Mb -D 2ms l -t 60.966785 -s 13 -d 9 -S out -r 10Mb -D 2ms n -t 60.997507 -s 5 -x 0.108373 -y 0.000000 -u 0.314240 -v 0.379185 -T 2.293591 l -t 61.025798 -s 3 -d 18 -S in -r 10Mb -D 2ms l -t 61.029005 -s 12 -d 0 -S out -r 10Mb -D 2ms l -t 61.036615 -s 5 -d 0 -S in -r 10Mb -D 2ms l -t 61.046343 -s 3 -d 9 -S out -r 10Mb -D 2ms l -t 61.306565 -s 7 -d 0 -S in -r 10Mb -D 2ms l -t 61.453737 -s 1 -d 2 -S out -r 10Mb -D 2ms n -t 61.467901 -s 17 -x 0.705431 -y 0.000000 -u -0.438229 -v 0.257027 -T 1.609731 n -t 61.495954 -s 6 -x 0.854914 -y 0.000000 -u 0.137752 -v 0.473435 -T 2.337164 l -t 61.551346 -s 18 -d 1 -S in -r 10Mb -D 2ms l -t 61.659610 -s 17 -d 10 -S out -r 10Mb -D 2ms n -t 61.666878 -s 14 -x 1.096386 -y 4.000000 -u 0.172428 -v -0.468106 -T 1.331992 l -t 61.670905 -s 4 -d 3 -S out -r 10Mb -D 2ms l -t 61.756189 -s 8 -d 1 -S in -r 10Mb -D 2ms l -t 61.810947 -s 9 -d 15 -S out -r 10Mb -D 2ms l -t 61.944249 -s 9 -d 18 -S out -r 10Mb -D 2ms l -t 61.964424 -s 8 -d 15 -S out -r 10Mb -D 2ms l -t 62.014268 -s 7 -d 9 -S in -r 10Mb -D 2ms l -t 62.074595 -s 4 -d 15 -S in -r 10Mb -D 2ms l -t 62.078722 -s 1 -d 11 -S out -r 10Mb -D 2ms l -t 62.122218 -s 17 -d 0 -S out -r 10Mb -D 2ms l -t 62.144341 -s 1 -d 3 -S in -r 10Mb -D 2ms l -t 62.181273 -s 9 -d 1 -S in -r 10Mb -D 2ms n -t 62.287079 -s 18 -x 3.654048 -y 2.397358 -u -0.361145 -v 0.352693 -T 4.544016 l -t 62.401673 -s 16 -d 12 -S in -r 10Mb -D 2ms l -t 62.452289 -s 18 -d 8 -S out -r 10Mb -D 2ms l -t 62.564343 -s 8 -d 3 -S in -r 10Mb -D 2ms l -t 62.577934 -s 9 -d 10 -S in -r 10Mb -D 2ms l -t 62.602556 -s 7 -d 0 -S out -r 10Mb -D 2ms l -t 62.642985 -s 0 -d 5 -S out -r 10Mb -D 2ms n -t 62.688810 -s 2 -x 3.114684 -y 0.000000 -u -0.462997 -v 0.180658 -T 1.196880 l -t 62.771118 -s 12 -d 14 -S in -r 10Mb -D 2ms l -t 62.845371 -s 12 -d 19 -S out -r 10Mb -D 2ms l -t 62.869256 -s 4 -d 13 -S out -r 10Mb -D 2ms l -t 62.875892 -s 6 -d 17 -S out -r 10Mb -D 2ms l -t 62.960702 -s 15 -d 3 -S out -r 10Mb -D 2ms n -t 62.998869 -s 14 -x 1.326059 -y 3.376487 -u -0.438227 -v 0.245604 -T 2.538688 n -t 63.017248 -s 9 -x 2.507306 -y 1.306087 -u 0.377819 -v 0.331901 -T 3.950818 n -t 63.028946 -s 4 -x 4.000000 -y 3.531611 -u -0.515512 -v -0.061483 -T 2.353249 l -t 63.050773 -s 10 -d 6 -S out -r 10Mb -D 2ms l -t 63.065934 -s 13 -d 15 -S in -r 10Mb -D 2ms n -t 63.077632 -s 17 -x 0.000000 -y 0.413744 -u 0.438229 -v 0.257027 -T 1.456413 l -t 63.112711 -s 4 -d 13 -S in -r 10Mb -D 2ms l -t 63.185772 -s 4 -d 18 -S in -r 10Mb -D 2ms n -t 63.197984 -s 19 -x 0.192042 -y 2.361029 -u -0.239337 -v 0.447891 -T 0.802394 l -t 63.224024 -s 3 -d 18 -S out -r 10Mb -D 2ms n -t 63.231072 -s 13 -x 3.093992 -y 4.000000 -u 0.333731 -v -0.358943 -T 0.682871 l -t 63.235978 -s 2 -d 0 -S in -r 10Mb -D 2ms n -t 63.246389 -s 3 -x 4.000000 -y 1.983950 -u -0.237577 -v -0.435241 -T 0.657555 n -t 63.288639 -s 7 -x 1.813335 -y 1.726842 -u -0.423275 -v -0.253947 -T 4.284056 n -t 63.291098 -s 5 -x 0.829112 -y 0.869695 -u 0.253295 -v 0.419542 -T 5.229158 l -t 63.291194 -s 11 -d 0 -S in -r 10Mb -D 2ms l -t 63.328574 -s 6 -d 0 -S out -r 10Mb -D 2ms l -t 63.430395 -s 7 -d 6 -S in -r 10Mb -D 2ms l -t 63.517162 -s 10 -d 2 -S in -r 10Mb -D 2ms l -t 63.518431 -s 7 -d 9 -S out -r 10Mb -D 2ms l -t 63.610408 -s 5 -d 7 -S in -r 10Mb -D 2ms l -t 63.611498 -s 13 -d 18 -S in -r 10Mb -D 2ms n -t 63.693910 -s 8 -x 3.609556 -y 1.237175 -u 0.501854 -v 0.037491 -T 0.778002 l -t 63.716202 -s 6 -d 17 -S in -r 10Mb -D 2ms l -t 63.742079 -s 8 -d 1 -S out -r 10Mb -D 2ms l -t 63.816774 -s 14 -d 16 -S out -r 10Mb -D 2ms n -t 63.833119 -s 6 -x 1.176864 -y 1.106494 -u -0.140444 -v 0.488260 -T 5.179224 n -t 63.862766 -s 11 -x 2.660688 -y 0.000000 -u -0.417078 -v 0.264791 -T 1.801412 n -t 63.885690 -s 2 -x 2.560532 -y 0.216226 -u 0.186638 -v -0.465768 -T 0.464235 n -t 63.903944 -s 3 -x 3.843780 -y 1.697756 -u -0.448686 -v 0.213057 -T 5.197807 l -t 63.911360 -s 3 -d 9 -S in -r 10Mb -D 2ms n -t 63.913943 -s 13 -x 3.321887 -y 3.754888 -u 0.043950 -v 0.511169 -T 0.479512 l -t 63.937133 -s 10 -d 7 -S out -r 10Mb -D 2ms n -t 64.000378 -s 19 -x 0.000000 -y 2.720414 -u 0.239337 -v 0.447891 -T 2.856913 l -t 64.030429 -s 2 -d 10 -S out -r 10Mb -D 2ms l -t 64.043730 -s 0 -d 10 -S out -r 10Mb -D 2ms l -t 64.152732 -s 8 -d 9 -S out -r 10Mb -D 2ms l -t 64.197429 -s 12 -d 14 -S out -r 10Mb -D 2ms n -t 64.317483 -s 1 -x 2.896020 -y 2.289877 -u 0.109270 -v -0.478917 -T 4.781364 n -t 64.349925 -s 2 -x 2.647176 -y 0.000000 -u 0.186638 -v 0.465768 -T 4.503654 n -t 64.393455 -s 13 -x 3.342962 -y 4.000000 -u 0.043950 -v -0.511169 -T 4.490356 l -t 64.430273 -s 7 -d 17 -S in -r 10Mb -D 2ms l -t 64.447505 -s 19 -d 14 -S in -r 10Mb -D 2ms n -t 64.471912 -s 8 -x 4.000000 -y 1.266344 -u -0.501854 -v 0.037491 -T 4.356184 l -t 64.478359 -s 1 -d 10 -S in -r 10Mb -D 2ms l -t 64.491536 -s 18 -d 15 -S out -r 10Mb -D 2ms l -t 64.526361 -s 1 -d 18 -S out -r 10Mb -D 2ms n -t 64.534045 -s 17 -x 0.638242 -y 0.788081 -u 0.486297 -v 0.080188 -T 4.888695 l -t 64.588005 -s 3 -d 10 -S in -r 10Mb -D 2ms l -t 64.603088 -s 8 -d 9 -S in -r 10Mb -D 2ms l -t 64.771195 -s 18 -d 12 -S in -r 10Mb -D 2ms l -t 64.825659 -s 8 -d 10 -S in -r 10Mb -D 2ms n -t 64.885244 -s 0 -x 2.664502 -y 0.019597 -u -0.309562 -v 0.386536 -T 5.132742 l -t 64.887323 -s 16 -d 12 -S out -r 10Mb -D 2ms n -t 64.904632 -s 15 -x 3.668528 -y 4.000000 -u 0.061782 -v -0.498089 -T 1.012655 l -t 65.026242 -s 1 -d 8 -S in -r 10Mb -D 2ms l -t 65.060530 -s 1 -d 16 -S in -r 10Mb -D 2ms l -t 65.266929 -s 4 -d 12 -S in -r 10Mb -D 2ms l -t 65.321099 -s 10 -d 2 -S in -r 10Mb -D 2ms l -t 65.358461 -s 17 -d 6 -S out -r 10Mb -D 2ms n -t 65.382195 -s 4 -x 2.786872 -y 3.386927 -u -0.506741 -v -0.006337 -T 5.087567 l -t 65.386907 -s 3 -d 16 -S in -r 10Mb -D 2ms l -t 65.424190 -s 4 -d 15 -S out -r 10Mb -D 2ms n -t 65.442660 -s 16 -x 2.241194 -y 2.281262 -u -0.192010 -v -0.470896 -T 4.844516 l -t 65.449144 -s 16 -d 5 -S in -r 10Mb -D 2ms l -t 65.467744 -s 11 -d 17 -S in -r 10Mb -D 2ms l -t 65.486139 -s 8 -d 2 -S in -r 10Mb -D 2ms n -t 65.537558 -s 14 -x 0.213536 -y 4.000000 -u -0.438227 -v -0.245604 -T 0.487273 l -t 65.605423 -s 17 -d 5 -S out -r 10Mb -D 2ms n -t 65.664177 -s 11 -x 1.909360 -y 0.476998 -u 0.114104 -v 0.482073 -T 4.959924 l -t 65.671405 -s 16 -d 1 -S out -r 10Mb -D 2ms l -t 65.675258 -s 13 -d 18 -S out -r 10Mb -D 2ms l -t 65.697570 -s 7 -d 5 -S out -r 10Mb -D 2ms l -t 65.710403 -s 1 -d 2 -S in -r 10Mb -D 2ms l -t 65.773954 -s 11 -d 2 -S out -r 10Mb -D 2ms n -t 65.802029 -s 10 -x 3.248022 -y 1.536997 -u -0.463745 -v 0.181188 -T 5.012890 n -t 65.809035 -s 12 -x 1.986103 -y 3.853379 -u -0.318426 -v -0.391051 -T 4.776523 l -t 65.813854 -s 6 -d 7 -S out -r 10Mb -D 2ms l -t 65.880426 -s 9 -d 13 -S in -r 10Mb -D 2ms l -t 65.911382 -s 9 -d 8 -S out -r 10Mb -D 2ms n -t 65.917286 -s 15 -x 3.731091 -y 3.495608 -u -0.358668 -v 0.344901 -T 1.462425 l -t 66.020475 -s 1 -d 9 -S out -r 10Mb -D 2ms n -t 66.024831 -s 14 -x 0.000000 -y 3.880324 -u 0.438227 -v -0.245604 -T 1.972826 l -t 66.058967 -s 4 -d 13 -S out -r 10Mb -D 2ms l -t 66.082218 -s 17 -d 0 -S in -r 10Mb -D 2ms l -t 66.211122 -s 10 -d 9 -S out -r 10Mb -D 2ms l -t 66.239199 -s 16 -d 10 -S in -r 10Mb -D 2ms l -t 66.304002 -s 3 -d 9 -S out -r 10Mb -D 2ms l -t 66.345661 -s 7 -d 17 -S out -r 10Mb -D 2ms l -t 66.378081 -s 3 -d 1 -S out -r 10Mb -D 2ms l -t 66.400813 -s 16 -d 11 -S in -r 10Mb -D 2ms l -t 66.435650 -s 16 -d 17 -S in -r 10Mb -D 2ms l -t 66.553195 -s 5 -d 3 -S in -r 10Mb -D 2ms l -t 66.585377 -s 8 -d 16 -S in -r 10Mb -D 2ms l -t 66.594925 -s 2 -d 0 -S out -r 10Mb -D 2ms l -t 66.609057 -s 8 -d 11 -S in -r 10Mb -D 2ms l -t 66.669458 -s 16 -d 0 -S in -r 10Mb -D 2ms l -t 66.703260 -s 8 -d 0 -S in -r 10Mb -D 2ms l -t 66.764480 -s 13 -d 15 -S out -r 10Mb -D 2ms l -t 66.779291 -s 8 -d 3 -S out -r 10Mb -D 2ms l -t 66.829614 -s 11 -d 10 -S in -r 10Mb -D 2ms n -t 66.831095 -s 18 -x 2.013001 -y 4.000000 -u -0.361145 -v -0.352693 -T 0.280806 l -t 66.847145 -s 5 -d 6 -S out -r 10Mb -D 2ms n -t 66.857290 -s 19 -x 0.683764 -y 4.000000 -u 0.239337 -v -0.447891 -T 1.374922 l -t 66.950989 -s 4 -d 5 -S in -r 10Mb -D 2ms l -t 66.965513 -s 5 -d 12 -S in -r 10Mb -D 2ms l -t 66.967117 -s 8 -d 17 -S in -r 10Mb -D 2ms n -t 66.968066 -s 9 -x 4.000000 -y 2.617367 -u -0.377819 -v 0.331901 -T 1.069299 l -t 67.039088 -s 14 -d 6 -S in -r 10Mb -D 2ms l -t 67.088689 -s 19 -d 12 -S in -r 10Mb -D 2ms l -t 67.091957 -s 16 -d 3 -S out -r 10Mb -D 2ms n -t 67.111900 -s 18 -x 1.911590 -y 3.900962 -u -0.156651 -v 0.493659 -T 0.200621 l -t 67.116865 -s 1 -d 10 -S out -r 10Mb -D 2ms l -t 67.129649 -s 16 -d 5 -S out -r 10Mb -D 2ms l -t 67.213165 -s 12 -d 6 -S in -r 10Mb -D 2ms l -t 67.260923 -s 17 -d 10 -S in -r 10Mb -D 2ms l -t 67.296608 -s 14 -d 12 -S in -r 10Mb -D 2ms l -t 67.308322 -s 19 -d 6 -S in -r 10Mb -D 2ms n -t 67.312521 -s 18 -x 1.880163 -y 4.000000 -u -0.156651 -v -0.493659 -T 4.827640 n -t 67.379711 -s 15 -x 3.206566 -y 4.000000 -u -0.358668 -v -0.344901 -T 3.652221 l -t 67.389554 -s 10 -d 5 -S in -r 10Mb -D 2ms l -t 67.429041 -s 4 -d 19 -S in -r 10Mb -D 2ms l -t 67.475474 -s 2 -d 13 -S in -r 10Mb -D 2ms l -t 67.525249 -s 1 -d 8 -S out -r 10Mb -D 2ms l -t 67.557663 -s 0 -d 10 -S in -r 10Mb -D 2ms n -t 67.572695 -s 7 -x 0.000000 -y 0.638916 -u 0.423275 -v -0.253947 -T 0.658694 l -t 67.579515 -s 4 -d 14 -S in -r 10Mb -D 2ms l -t 67.580158 -s 18 -d 19 -S in -r 10Mb -D 2ms l -t 67.638520 -s 12 -d 3 -S in -r 10Mb -D 2ms l -t 67.776488 -s 2 -d 10 -S out -r 10Mb -D 2ms l -t 67.790630 -s 4 -d 3 -S in -r 10Mb -D 2ms l -t 67.795061 -s 6 -d 4 -S in -r 10Mb -D 2ms l -t 67.814356 -s 18 -d 5 -S in -r 10Mb -D 2ms l -t 67.815859 -s 1 -d 2 -S out -r 10Mb -D 2ms l -t 67.819269 -s 2 -d 8 -S out -r 10Mb -D 2ms l -t 67.903901 -s 11 -d 3 -S in -r 10Mb -D 2ms l -t 67.914069 -s 18 -d 14 -S in -r 10Mb -D 2ms n -t 67.997657 -s 14 -x 0.864546 -y 3.395789 -u 0.308254 -v 0.406589 -T 1.486049 n -t 68.037364 -s 9 -x 3.595999 -y 2.972268 -u -0.509575 -v 0.070170 -T 4.911145 l -t 68.039185 -s 16 -d 10 -S out -r 10Mb -D 2ms l -t 68.075737 -s 9 -d 15 -S in -r 10Mb -D 2ms l -t 68.153036 -s 3 -d 18 -S in -r 10Mb -D 2ms n -t 68.231389 -s 7 -x 0.278809 -y 0.471643 -u -0.094629 -v -0.488016 -T 0.966450 n -t 68.232212 -s 19 -x 1.012833 -y 3.384185 -u -0.467603 -v -0.205446 -T 2.166010 l -t 68.317970 -s 13 -d 9 -S out -r 10Mb -D 2ms l -t 68.338338 -s 16 -d 11 -S out -r 10Mb -D 2ms l -t 68.348954 -s 17 -d 10 -S out -r 10Mb -D 2ms l -t 68.356609 -s 15 -d 5 -S in -r 10Mb -D 2ms l -t 68.370232 -s 5 -d 10 -S out -r 10Mb -D 2ms l -t 68.420529 -s 0 -d 17 -S out -r 10Mb -D 2ms l -t 68.431502 -s 5 -d 12 -S out -r 10Mb -D 2ms l -t 68.513666 -s 5 -d 4 -S out -r 10Mb -D 2ms n -t 68.520256 -s 5 -x 2.153632 -y 3.063547 -u 0.265228 -v 0.420831 -T 2.225248 l -t 68.561498 -s 16 -d 17 -S out -r 10Mb -D 2ms l -t 68.750643 -s 14 -d 12 -S out -r 10Mb -D 2ms l -t 68.754414 -s 2 -d 9 -S in -r 10Mb -D 2ms l -t 68.779455 -s 12 -d 6 -S out -r 10Mb -D 2ms l -t 68.788496 -s 5 -d 9 -S in -r 10Mb -D 2ms n -t 68.828096 -s 8 -x 1.813831 -y 1.429663 -u 0.464872 -v 0.162780 -T 4.702738 l -t 68.841687 -s 13 -d 17 -S in -r 10Mb -D 2ms l -t 68.847402 -s 10 -d 12 -S in -r 10Mb -D 2ms n -t 68.853579 -s 2 -x 3.487731 -y 2.097657 -u 0.131152 -v -0.477152 -T 3.905932 l -t 68.861874 -s 11 -d 17 -S out -r 10Mb -D 2ms l -t 68.879363 -s 2 -d 9 -S out -r 10Mb -D 2ms n -t 68.883812 -s 13 -x 3.540313 -y 1.704668 -u 0.495991 -v -0.042910 -T 0.926805 l -t 68.942174 -s 11 -d 3 -S out -r 10Mb -D 2ms l -t 68.959410 -s 11 -d 0 -S out -r 10Mb -D 2ms l -t 68.979383 -s 16 -d 0 -S out -r 10Mb -D 2ms n -t 69.012343 -s 6 -x 0.449474 -y 3.635303 -u 0.490548 -v -0.179978 -T 4.907316 l -t 69.037577 -s 19 -d 3 -S in -r 10Mb -D 2ms l -t 69.086079 -s 10 -d 18 -S in -r 10Mb -D 2ms n -t 69.098847 -s 1 -x 3.418479 -y 0.000000 -u 0.109270 -v 0.478917 -T 0.452697 l -t 69.101157 -s 8 -d 16 -S out -r 10Mb -D 2ms n -t 69.101751 -s 3 -x 1.511598 -y 2.805182 -u -0.486708 -v -0.024365 -T 3.105759 l -t 69.108888 -s 19 -d 18 -S out -r 10Mb -D 2ms l -t 69.114108 -s 12 -d 0 -S in -r 10Mb -D 2ms l -t 69.168298 -s 3 -d 5 -S out -r 10Mb -D 2ms l -t 69.188395 -s 2 -d 17 -S in -r 10Mb -D 2ms n -t 69.197839 -s 7 -x 0.187355 -y 0.000000 -u -0.094629 -v 0.488016 -T 1.979894 l -t 69.228751 -s 14 -d 19 -S out -r 10Mb -D 2ms l -t 69.307794 -s 15 -d 18 -S in -r 10Mb -D 2ms l -t 69.359673 -s 9 -d 11 -S in -r 10Mb -D 2ms l -t 69.361311 -s 18 -d 14 -S out -r 10Mb -D 2ms n -t 69.422740 -s 17 -x 3.015601 -y 1.180097 -u -0.315189 -v 0.390212 -T 4.947706 l -t 69.440378 -s 11 -d 15 -S in -r 10Mb -D 2ms l -t 69.455451 -s 18 -d 5 -S out -r 10Mb -D 2ms l -t 69.474025 -s 3 -d 6 -S in -r 10Mb -D 2ms n -t 69.483705 -s 14 -x 1.322627 -y 4.000000 -u 0.308254 -v -0.406589 -T 3.546429 l -t 69.489347 -s 3 -d 0 -S in -r 10Mb -D 2ms l -t 69.511557 -s 18 -d 11 -S in -r 10Mb -D 2ms l -t 69.549368 -s 17 -d 13 -S out -r 10Mb -D 2ms n -t 69.551544 -s 1 -x 3.467945 -y 0.216804 -u 0.211836 -v 0.445635 -T 2.511639 l -t 69.588520 -s 8 -d 0 -S out -r 10Mb -D 2ms l -t 69.599603 -s 18 -d 4 -S out -r 10Mb -D 2ms l -t 69.605641 -s 4 -d 12 -S out -r 10Mb -D 2ms l -t 69.659857 -s 8 -d 10 -S out -r 10Mb -D 2ms l -t 69.687652 -s 18 -d 6 -S in -r 10Mb -D 2ms l -t 69.696965 -s 18 -d 0 -S in -r 10Mb -D 2ms l -t 69.776923 -s 14 -d 4 -S out -r 10Mb -D 2ms l -t 69.785260 -s 11 -d 10 -S out -r 10Mb -D 2ms n -t 69.810617 -s 13 -x 4.000000 -y 1.664899 -u -0.495991 -v -0.042910 -T 4.038698 n -t 70.017987 -s 0 -x 1.075600 -y 2.003586 -u -0.356021 -v 0.374677 -T 3.021170 l -t 70.089305 -s 14 -d 15 -S in -r 10Mb -D 2ms l -t 70.147369 -s 1 -d 2 -S in -r 10Mb -D 2ms l -t 70.156530 -s 6 -d 19 -S out -r 10Mb -D 2ms l -t 70.166502 -s 8 -d 11 -S out -r 10Mb -D 2ms l -t 70.191385 -s 18 -d 11 -S out -r 10Mb -D 2ms n -t 70.287176 -s 16 -x 1.311001 -y 0.000000 -u -0.192010 -v 0.470896 -T 0.148583 l -t 70.292385 -s 19 -d 12 -S out -r 10Mb -D 2ms l -t 70.322578 -s 14 -d 9 -S in -r 10Mb -D 2ms l -t 70.358281 -s 15 -d 5 -S out -r 10Mb -D 2ms l -t 70.394361 -s 17 -d 2 -S out -r 10Mb -D 2ms n -t 70.398222 -s 19 -x 0.000000 -y 2.939186 -u 0.467603 -v -0.205446 -T 2.783648 l -t 70.414775 -s 13 -d 17 -S in -r 10Mb -D 2ms n -t 70.435759 -s 16 -x 1.282472 -y 0.069967 -u -0.478338 -v -0.148997 -T 0.469589 l -t 70.447808 -s 6 -d 10 -S in -r 10Mb -D 2ms n -t 70.469762 -s 4 -x 0.208795 -y 3.354688 -u 0.450344 -v 0.226276 -T 2.851874 l -t 70.491524 -s 13 -d 1 -S in -r 10Mb -D 2ms l -t 70.515672 -s 15 -d 6 -S in -r 10Mb -D 2ms l -t 70.518624 -s 19 -d 12 -S in -r 10Mb -D 2ms l -t 70.573218 -s 13 -d 8 -S in -r 10Mb -D 2ms n -t 70.585558 -s 12 -x 0.465133 -y 1.985516 -u -0.274268 -v 0.416609 -T 1.695908 n -t 70.624101 -s 11 -x 2.475306 -y 2.868042 -u 0.514661 -v 0.008513 -T 2.962519 l -t 70.627676 -s 19 -d 0 -S in -r 10Mb -D 2ms l -t 70.650444 -s 10 -d 19 -S in -r 10Mb -D 2ms l -t 70.675441 -s 6 -d 18 -S out -r 10Mb -D 2ms l -t 70.677809 -s 6 -d 9 -S in -r 10Mb -D 2ms n -t 70.745504 -s 5 -x 2.743830 -y 4.000000 -u 0.265228 -v -0.420831 -T 2.912366 n -t 70.814919 -s 10 -x 0.923319 -y 2.445272 -u 0.331940 -v 0.399030 -T 3.896270 l -t 70.901139 -s 5 -d 9 -S out -r 10Mb -D 2ms n -t 70.905348 -s 16 -x 1.057849 -y 0.000000 -u -0.478338 -v 0.148997 -T 2.211512 l -t 70.944269 -s 10 -d 15 -S in -r 10Mb -D 2ms l -t 71.020588 -s 3 -d 6 -S out -r 10Mb -D 2ms l -t 71.027776 -s 4 -d 6 -S out -r 10Mb -D 2ms n -t 71.031932 -s 15 -x 1.896630 -y 2.740345 -u -0.036356 -v -0.499494 -T 4.936164 l -t 71.068830 -s 5 -d 11 -S in -r 10Mb -D 2ms l -t 71.144365 -s 3 -d 18 -S out -r 10Mb -D 2ms l -t 71.160896 -s 15 -d 17 -S in -r 10Mb -D 2ms n -t 71.177733 -s 7 -x 0.000000 -y 0.966220 -u 0.094629 -v 0.488016 -T 2.145874 l -t 71.243724 -s 12 -d 18 -S out -r 10Mb -D 2ms l -t 71.320900 -s 9 -d 10 -S in -r 10Mb -D 2ms l -t 71.324192 -s 10 -d 14 -S in -r 10Mb -D 2ms l -t 71.339159 -s 15 -d 11 -S out -r 10Mb -D 2ms l -t 71.352746 -s 9 -d 11 -S out -r 10Mb -D 2ms l -t 71.461233 -s 10 -d 4 -S in -r 10Mb -D 2ms l -t 71.482320 -s 2 -d 13 -S out -r 10Mb -D 2ms l -t 71.499244 -s 10 -d 12 -S out -r 10Mb -D 2ms l -t 71.604719 -s 18 -d 0 -S out -r 10Mb -D 2ms l -t 71.620560 -s 8 -d 11 -S in -r 10Mb -D 2ms l -t 71.656066 -s 4 -d 3 -S out -r 10Mb -D 2ms l -t 71.733460 -s 10 -d 3 -S out -r 10Mb -D 2ms l -t 71.738873 -s 18 -d 10 -S out -r 10Mb -D 2ms l -t 71.758345 -s 9 -d 4 -S in -r 10Mb -D 2ms l -t 71.762309 -s 4 -d 19 -S out -r 10Mb -D 2ms l -t 71.775998 -s 14 -d 17 -S in -r 10Mb -D 2ms l -t 71.803278 -s 1 -d 13 -S out -r 10Mb -D 2ms l -t 71.856712 -s 8 -d 1 -S in -r 10Mb -D 2ms l -t 71.862735 -s 17 -d 8 -S out -r 10Mb -D 2ms l -t 71.945097 -s 17 -d 6 -S in -r 10Mb -D 2ms l -t 71.950411 -s 9 -d 15 -S out -r 10Mb -D 2ms l -t 72.055433 -s 10 -d 0 -S out -r 10Mb -D 2ms n -t 72.063183 -s 1 -x 4.000000 -y 1.336078 -u -0.211836 -v 0.445635 -T 2.610785 l -t 72.080410 -s 9 -d 19 -S in -r 10Mb -D 2ms n -t 72.140161 -s 18 -x 1.123908 -y 1.616794 -u -0.371072 -v -0.343303 -T 3.028816 n -t 72.207510 -s 3 -x 0.000000 -y 2.729509 -u 0.486708 -v -0.024365 -T 1.695948 l -t 72.223987 -s 18 -d 7 -S in -r 10Mb -D 2ms l -t 72.257995 -s 10 -d 15 -S out -r 10Mb -D 2ms n -t 72.281465 -s 12 -x 0.000000 -y 2.692047 -u 0.274268 -v 0.416609 -T 3.139523 l -t 72.312528 -s 1 -d 2 -S out -r 10Mb -D 2ms l -t 72.322594 -s 10 -d 17 -S in -r 10Mb -D 2ms l -t 72.334316 -s 13 -d 17 -S out -r 10Mb -D 2ms l -t 72.390967 -s 6 -d 15 -S out -r 10Mb -D 2ms l -t 72.406400 -s 13 -d 15 -S in -r 10Mb -D 2ms l -t 72.434555 -s 14 -d 9 -S out -r 10Mb -D 2ms l -t 72.483958 -s 15 -d 19 -S in -r 10Mb -D 2ms l -t 72.520857 -s 15 -d 18 -S out -r 10Mb -D 2ms l -t 72.522098 -s 8 -d 13 -S out -r 10Mb -D 2ms l -t 72.584070 -s 19 -d 17 -S in -r 10Mb -D 2ms l -t 72.597557 -s 19 -d 12 -S out -r 10Mb -D 2ms l -t 72.601543 -s 19 -d 0 -S out -r 10Mb -D 2ms l -t 72.613561 -s 6 -d 9 -S out -r 10Mb -D 2ms l -t 72.727476 -s 3 -d 7 -S in -r 10Mb -D 2ms n -t 72.759511 -s 2 -x 4.000000 -y 0.233933 -u -0.131152 -v -0.477152 -T 0.490269 l -t 72.792232 -s 6 -d 5 -S in -r 10Mb -D 2ms l -t 72.878523 -s 10 -d 14 -S out -r 10Mb -D 2ms l -t 72.880240 -s 3 -d 9 -S in -r 10Mb -D 2ms l -t 72.918500 -s 12 -d 9 -S in -r 10Mb -D 2ms n -t 72.948510 -s 9 -x 1.093402 -y 3.316884 -u 0.018643 -v -0.493735 -T 5.023568 l -t 72.980220 -s 19 -d 10 -S out -r 10Mb -D 2ms l -t 73.001680 -s 15 -d 14 -S out -r 10Mb -D 2ms n -t 73.030134 -s 14 -x 2.415828 -y 2.558060 -u 0.448288 -v 0.207508 -T 3.533827 n -t 73.039157 -s 0 -x 0.000000 -y 3.135548 -u 0.356021 -v 0.374677 -T 1.944655 l -t 73.063113 -s 8 -d 5 -S in -r 10Mb -D 2ms l -t 73.082445 -s 9 -d 17 -S in -r 10Mb -D 2ms n -t 73.116860 -s 16 -x 0.000000 -y 0.329508 -u 0.478338 -v 0.148997 -T 2.412036 l -t 73.145181 -s 5 -d 14 -S in -r 10Mb -D 2ms n -t 73.181870 -s 19 -x 1.301643 -y 2.367297 -u 0.433405 -v 0.221514 -T 5.113146 l -t 73.203778 -s 17 -d 15 -S out -r 10Mb -D 2ms n -t 73.249780 -s 2 -x 3.935700 -y 0.000000 -u -0.131152 -v 0.477152 -T 0.654367 n -t 73.321636 -s 4 -x 1.493119 -y 4.000000 -u 0.450344 -v -0.226276 -T 2.176474 n -t 73.323608 -s 7 -x 0.203061 -y 2.013440 -u 0.166666 -v -0.486726 -T 4.136705 l -t 73.325892 -s 6 -d 10 -S out -r 10Mb -D 2ms l -t 73.329382 -s 1 -d 11 -S in -r 10Mb -D 2ms l -t 73.346182 -s 0 -d 9 -S in -r 10Mb -D 2ms l -t 73.360383 -s 16 -d 18 -S in -r 10Mb -D 2ms l -t 73.387954 -s 5 -d 1 -S in -r 10Mb -D 2ms l -t 73.433960 -s 4 -d 9 -S out -r 10Mb -D 2ms l -t 73.499747 -s 19 -d 15 -S out -r 10Mb -D 2ms n -t 73.530834 -s 8 -x 4.000000 -y 2.195174 -u -0.464872 -v 0.162780 -T 0.367521 n -t 73.586620 -s 11 -x 4.000000 -y 2.893262 -u -0.514661 -v 0.008513 -T 2.135980 l -t 73.598802 -s 17 -d 6 -S out -r 10Mb -D 2ms l -t 73.623703 -s 14 -d 17 -S out -r 10Mb -D 2ms l -t 73.637050 -s 17 -d 3 -S in -r 10Mb -D 2ms n -t 73.657870 -s 5 -x 3.516270 -y 2.774387 -u 0.071596 -v -0.496054 -T 5.021650 l -t 73.686674 -s 9 -d 10 -S out -r 10Mb -D 2ms l -t 73.739120 -s 7 -d 3 -S out -r 10Mb -D 2ms l -t 73.811198 -s 4 -d 17 -S in -r 10Mb -D 2ms n -t 73.849315 -s 13 -x 1.996843 -y 1.491597 -u -0.105315 -v 0.491940 -T 4.955585 l -t 73.856758 -s 9 -d 0 -S out -r 10Mb -D 2ms l -t 73.870068 -s 1 -d 6 -S in -r 10Mb -D 2ms l -t 73.891969 -s 1 -d 14 -S in -r 10Mb -D 2ms n -t 73.898354 -s 8 -x 3.829150 -y 2.254999 -u 0.250846 -v 0.435261 -T 0.681095 l -t 73.901536 -s 11 -d 6 -S in -r 10Mb -D 2ms n -t 73.903458 -s 3 -x 0.825431 -y 2.688186 -u -0.177485 -v -0.463998 -T 4.650720 n -t 73.904146 -s 2 -x 3.849879 -y 0.312233 -u -0.263969 -v 0.402572 -T 4.873217 n -t 73.919659 -s 6 -x 2.856747 -y 2.752092 -u 0.212727 -v 0.481826 -T 2.589956 l -t 73.945684 -s 11 -d 14 -S in -r 10Mb -D 2ms l -t 74.057125 -s 3 -d 0 -S out -r 10Mb -D 2ms l -t 74.083852 -s 13 -d 19 -S in -r 10Mb -D 2ms l -t 74.220235 -s 9 -d 12 -S out -r 10Mb -D 2ms l -t 74.236870 -s 3 -d 12 -S out -r 10Mb -D 2ms l -t 74.244592 -s 3 -d 19 -S out -r 10Mb -D 2ms l -t 74.354772 -s 17 -d 12 -S in -r 10Mb -D 2ms n -t 74.370445 -s 17 -x 1.456138 -y 3.110749 -u 0.153809 -v 0.474358 -T 1.874640 l -t 74.384822 -s 14 -d 8 -S in -r 10Mb -D 2ms l -t 74.392814 -s 7 -d 16 -S in -r 10Mb -D 2ms l -t 74.418216 -s 17 -d 3 -S out -r 10Mb -D 2ms l -t 74.481210 -s 17 -d 10 -S out -r 10Mb -D 2ms n -t 74.579449 -s 8 -x 4.000000 -y 2.551454 -u -0.250846 -v 0.435261 -T 3.327993 l -t 74.628042 -s 13 -d 9 -S in -r 10Mb -D 2ms l -t 74.645751 -s 6 -d 5 -S out -r 10Mb -D 2ms n -t 74.673968 -s 1 -x 3.446942 -y 2.499535 -u -0.497309 -v 0.156428 -T 4.867719 l -t 74.687432 -s 15 -d 13 -S out -r 10Mb -D 2ms l -t 74.692121 -s 4 -d 19 -S in -r 10Mb -D 2ms n -t 74.711189 -s 10 -x 2.216645 -y 4.000000 -u 0.331940 -v -0.399030 -T 1.126293 l -t 74.742200 -s 10 -d 17 -S in -r 10Mb -D 2ms l -t 74.791379 -s 15 -d 16 -S in -r 10Mb -D 2ms l -t 74.807029 -s 17 -d 9 -S out -r 10Mb -D 2ms l -t 74.820679 -s 6 -d 4 -S in -r 10Mb -D 2ms l -t 74.823280 -s 3 -d 7 -S in -r 10Mb -D 2ms l -t 74.872056 -s 17 -d 0 -S in -r 10Mb -D 2ms l -t 74.903294 -s 19 -d 9 -S out -r 10Mb -D 2ms l -t 74.919529 -s 6 -d 8 -S in -r 10Mb -D 2ms l -t 74.979561 -s 10 -d 6 -S in -r 10Mb -D 2ms n -t 74.983812 -s 0 -x 0.692338 -y 3.864166 -u 0.373152 -v -0.329297 -T 4.895055 l -t 75.154443 -s 14 -d 5 -S out -r 10Mb -D 2ms n -t 75.168977 -s 18 -x 0.000000 -y 0.576993 -u 0.371072 -v -0.343303 -T 1.680713 l -t 75.189874 -s 5 -d 11 -S out -r 10Mb -D 2ms l -t 75.197569 -s 19 -d 11 -S in -r 10Mb -D 2ms l -t 75.217687 -s 19 -d 10 -S in -r 10Mb -D 2ms l -t 75.239822 -s 19 -d 1 -S in -r 10Mb -D 2ms l -t 75.273825 -s 4 -d 11 -S in -r 10Mb -D 2ms l -t 75.280548 -s 16 -d 18 -S out -r 10Mb -D 2ms l -t 75.388407 -s 5 -d 8 -S out -r 10Mb -D 2ms l -t 75.415852 -s 5 -d 2 -S in -r 10Mb -D 2ms n -t 75.420988 -s 12 -x 0.861070 -y 4.000000 -u 0.274268 -v -0.416609 -T 0.095640 l -t 75.431218 -s 10 -d 11 -S in -r 10Mb -D 2ms l -t 75.441901 -s 19 -d 17 -S out -r 10Mb -D 2ms n -t 75.498110 -s 4 -x 2.473280 -y 3.507515 -u 0.481224 -v -0.127759 -T 3.172574 n -t 75.516628 -s 12 -x 0.887301 -y 3.960156 -u 0.321636 -v -0.397884 -T 4.864741 l -t 75.520638 -s 5 -d 1 -S out -r 10Mb -D 2ms n -t 75.528897 -s 16 -x 1.153768 -y 0.688894 -u 0.504616 -v 0.059685 -T 5.171352 l -t 75.556884 -s 4 -d 1 -S in -r 10Mb -D 2ms l -t 75.659926 -s 7 -d 3 -S out -r 10Mb -D 2ms l -t 75.708086 -s 1 -d 6 -S out -r 10Mb -D 2ms n -t 75.722600 -s 11 -x 2.900693 -y 2.911446 -u 0.169608 -v 0.468730 -T 2.322349 l -t 75.728292 -s 1 -d 10 -S in -r 10Mb -D 2ms l -t 75.809203 -s 4 -d 17 -S out -r 10Mb -D 2ms n -t 75.837482 -s 10 -x 2.590507 -y 3.550576 -u 0.458510 -v -0.147442 -T 3.074071 l -t 75.922233 -s 1 -d 14 -S out -r 10Mb -D 2ms l -t 75.954512 -s 10 -d 17 -S out -r 10Mb -D 2ms l -t 75.963312 -s 8 -d 4 -S in -r 10Mb -D 2ms n -t 75.968096 -s 15 -x 1.717171 -y 0.274762 -u 0.145839 -v 0.464162 -T 4.929583 l -t 76.048238 -s 10 -d 8 -S in -r 10Mb -D 2ms l -t 76.050886 -s 9 -d 13 -S out -r 10Mb -D 2ms l -t 76.067060 -s 1 -d 13 -S in -r 10Mb -D 2ms l -t 76.076437 -s 8 -d 1 -S out -r 10Mb -D 2ms l -t 76.213365 -s 19 -d 8 -S in -r 10Mb -D 2ms l -t 76.215288 -s 0 -d 13 -S in -r 10Mb -D 2ms n -t 76.245086 -s 17 -x 1.744474 -y 4.000000 -u 0.153809 -v -0.474358 -T 3.107014 l -t 76.314792 -s 9 -d 16 -S in -r 10Mb -D 2ms l -t 76.342038 -s 19 -d 13 -S out -r 10Mb -D 2ms l -t 76.427005 -s 12 -d 13 -S in -r 10Mb -D 2ms n -t 76.509614 -s 6 -x 3.407702 -y 4.000000 -u 0.212727 -v -0.481826 -T 2.450701 n -t 76.563962 -s 14 -x 4.000000 -y 3.291358 -u -0.448288 -v 0.207508 -T 1.405326 l -t 76.581766 -s 14 -d 4 -S in -r 10Mb -D 2ms l -t 76.590567 -s 17 -d 13 -S in -r 10Mb -D 2ms l -t 76.595106 -s 16 -d 7 -S out -r 10Mb -D 2ms l -t 76.656098 -s 14 -d 10 -S in -r 10Mb -D 2ms l -t 76.675524 -s 6 -d 19 -S in -r 10Mb -D 2ms l -t 76.817807 -s 15 -d 9 -S in -r 10Mb -D 2ms l -t 76.844402 -s 14 -d 19 -S in -r 10Mb -D 2ms n -t 76.849690 -s 18 -x 0.623665 -y 0.000000 -u 0.371072 -v 0.343303 -T 0.244734 l -t 76.872812 -s 17 -d 1 -S in -r 10Mb -D 2ms l -t 76.909150 -s 0 -d 1 -S in -r 10Mb -D 2ms l -t 76.930202 -s 11 -d 1 -S out -r 10Mb -D 2ms l -t 76.983267 -s 4 -d 1 -S out -r 10Mb -D 2ms l -t 77.030157 -s 10 -d 1 -S out -r 10Mb -D 2ms l -t 77.056187 -s 12 -d 1 -S in -r 10Mb -D 2ms n -t 77.094424 -s 18 -x 0.714479 -y 0.084018 -u 0.434824 -v -0.282245 -T 0.297676 l -t 77.193502 -s 2 -d 5 -S out -r 10Mb -D 2ms l -t 77.283149 -s 19 -d 1 -S out -r 10Mb -D 2ms n -t 77.392100 -s 18 -x 0.843916 -y 0.000000 -u 0.434824 -v 0.282245 -T 4.684208 n -t 77.460313 -s 7 -x 0.892508 -y 0.000000 -u 0.166666 -v 0.486726 -T 0.818319 l -t 77.483759 -s 16 -d 9 -S out -r 10Mb -D 2ms l -t 77.538941 -s 9 -d 3 -S out -r 10Mb -D 2ms l -t 77.588111 -s 7 -d 9 -S in -r 10Mb -D 2ms l -t 77.591254 -s 18 -d 9 -S in -r 10Mb -D 2ms n -t 77.907442 -s 8 -x 3.165187 -y 4.000000 -u -0.250846 -v -0.435261 -T 0.929205 n -t 77.969287 -s 14 -x 3.370009 -y 3.582974 -u -0.483565 -v 0.109938 -T 3.793269 n -t 77.972078 -s 9 -x 1.187058 -y 0.836573 -u 0.318339 -v -0.387929 -T 2.156508 n -t 78.044949 -s 11 -x 3.294582 -y 4.000000 -u 0.169608 -v -0.468730 -T 2.544377 l -t 78.180553 -s 2 -d 15 -S in -r 10Mb -D 2ms l -t 78.251720 -s 8 -d 4 -S out -r 10Mb -D 2ms n -t 78.278632 -s 7 -x 1.028894 -y 0.398297 -u 0.494289 -v 0.029409 -T 5.212858 l -t 78.292715 -s 9 -d 15 -S out -r 10Mb -D 2ms n -t 78.295016 -s 19 -x 3.517706 -y 3.499930 -u 0.026902 -v 0.510965 -T 0.978677 l -t 78.300490 -s 8 -d 6 -S out -r 10Mb -D 2ms l -t 78.306661 -s 0 -d 13 -S out -r 10Mb -D 2ms l -t 78.327484 -s 2 -d 0 -S in -r 10Mb -D 2ms l -t 78.436521 -s 12 -d 13 -S out -r 10Mb -D 2ms l -t 78.439380 -s 17 -d 2 -S in -r 10Mb -D 2ms l -t 78.467403 -s 17 -d 13 -S out -r 10Mb -D 2ms l -t 78.498349 -s 2 -d 12 -S in -r 10Mb -D 2ms l -t 78.533570 -s 8 -d 10 -S out -r 10Mb -D 2ms l -t 78.546195 -s 14 -d 4 -S out -r 10Mb -D 2ms n -t 78.554177 -s 3 -x 0.000000 -y 0.530260 -u 0.177485 -v -0.463998 -T 0.368075 l -t 78.570358 -s 14 -d 6 -S out -r 10Mb -D 2ms l -t 78.662507 -s 14 -d 10 -S out -r 10Mb -D 2ms n -t 78.670684 -s 4 -x 4.000000 -y 3.102191 -u -0.481224 -v -0.127759 -T 1.875726 n -t 78.679520 -s 5 -x 3.875800 -y 0.283379 -u 0.164020 -v 0.478310 -T 0.757224 n -t 78.777364 -s 2 -x 2.563500 -y 2.274051 -u 0.337012 -v 0.387831 -T 4.262459 n -t 78.804900 -s 13 -x 1.474945 -y 3.929447 -u -0.119408 -v -0.477237 -T 4.932212 l -t 78.823085 -s 0 -d 15 -S in -r 10Mb -D 2ms n -t 78.836648 -s 8 -x 2.932099 -y 3.595553 -u 0.058994 -v 0.485608 -T 0.832867 l -t 78.845188 -s 15 -d 16 -S out -r 10Mb -D 2ms l -t 78.865634 -s 6 -d 19 -S out -r 10Mb -D 2ms l -t 78.891874 -s 12 -d 15 -S in -r 10Mb -D 2ms l -t 78.901569 -s 0 -d 1 -S out -r 10Mb -D 2ms n -t 78.911553 -s 10 -x 4.000000 -y 3.097327 -u -0.458510 -v -0.147442 -T 2.006350 n -t 78.922252 -s 3 -x 0.065328 -y 0.359474 -u -0.462797 -v 0.159441 -T 0.141158 n -t 78.960315 -s 6 -x 3.929033 -y 2.819189 -u -0.386950 -v 0.328886 -T 3.590339 l -t 79.002951 -s 17 -d 1 -S out -r 10Mb -D 2ms l -t 79.011899 -s 17 -d 15 -S in -r 10Mb -D 2ms n -t 79.063410 -s 3 -x 0.000000 -y 0.381981 -u 0.462797 -v 0.159441 -T 4.869703 l -t 79.068604 -s 12 -d 1 -S out -r 10Mb -D 2ms l -t 79.255836 -s 16 -d 5 -S in -r 10Mb -D 2ms n -t 79.273693 -s 19 -x 3.544035 -y 4.000000 -u 0.026902 -v -0.510965 -T 4.036245 n -t 79.352100 -s 17 -x 2.222360 -y 2.526163 -u 0.496539 -v -0.033491 -T 3.580060 l -t 79.393850 -s 19 -d 6 -S in -r 10Mb -D 2ms l -t 79.405358 -s 2 -d 4 -S in -r 10Mb -D 2ms n -t 79.436744 -s 5 -x 4.000000 -y 0.645567 -u -0.164020 -v 0.478310 -T 4.335001 l -t 79.488909 -s 14 -d 11 -S out -r 10Mb -D 2ms l -t 79.521692 -s 6 -d 2 -S in -r 10Mb -D 2ms l -t 79.531311 -s 10 -d 2 -S in -r 10Mb -D 2ms n -t 79.541687 -s 1 -x 1.026183 -y 3.260981 -u -0.504624 -v 0.054087 -T 2.033558 l -t 79.582077 -s 2 -d 11 -S in -r 10Mb -D 2ms l -t 79.654764 -s 19 -d 14 -S out -r 10Mb -D 2ms n -t 79.669515 -s 8 -x 2.981234 -y 4.000000 -u 0.058994 -v -0.485608 -T 4.207636 l -t 79.845869 -s 8 -d 6 -S in -r 10Mb -D 2ms n -t 79.878867 -s 0 -x 2.518940 -y 2.252236 -u 0.039664 -v -0.482795 -T 4.664992 l -t 79.914366 -s 4 -d 17 -S in -r 10Mb -D 2ms l -t 79.954786 -s 8 -d 4 -S in -r 10Mb -D 2ms l -t 80.054673 -s 10 -d 17 -S in -r 10Mb -D 2ms l -t 80.058799 -s 8 -d 10 -S in -r 10Mb -D 2ms l -t 80.064207 -s 19 -d 2 -S in -r 10Mb -D 2ms l -t 80.104522 -s 2 -d 8 -S in -r 10Mb -D 2ms n -t 80.128586 -s 9 -x 1.873559 -y 0.000000 -u 0.318339 -v 0.387929 -T 2.870744 l -t 80.239371 -s 2 -d 12 -S out -r 10Mb -D 2ms l -t 80.320299 -s 11 -d 8 -S out -r 10Mb -D 2ms l -t 80.323841 -s 2 -d 0 -S out -r 10Mb -D 2ms l -t 80.369497 -s 15 -d 4 -S in -r 10Mb -D 2ms n -t 80.381368 -s 12 -x 2.451978 -y 2.024551 -u -0.338916 -v -0.382977 -T 4.996419 l -t 80.472497 -s 11 -d 17 -S in -r 10Mb -D 2ms l -t 80.485041 -s 6 -d 17 -S in -r 10Mb -D 2ms l -t 80.520230 -s 15 -d 10 -S in -r 10Mb -D 2ms n -t 80.546410 -s 4 -x 3.097355 -y 2.862550 -u -0.215315 -v -0.447507 -T 4.905203 n -t 80.589326 -s 11 -x 3.726128 -y 2.807375 -u -0.264404 -v -0.426725 -T 4.973062 l -t 80.610424 -s 8 -d 14 -S out -r 10Mb -D 2ms l -t 80.652663 -s 11 -d 8 -S in -r 10Mb -D 2ms l -t 80.653484 -s 0 -d 18 -S in -r 10Mb -D 2ms l -t 80.659722 -s 12 -d 18 -S in -r 10Mb -D 2ms n -t 80.700249 -s 16 -x 3.763314 -y 0.997547 -u 0.018771 -v 0.501130 -T 5.007557 l -t 80.758371 -s 8 -d 17 -S in -r 10Mb -D 2ms l -t 80.774112 -s 17 -d 19 -S in -r 10Mb -D 2ms l -t 80.897195 -s 6 -d 17 -S out -r 10Mb -D 2ms n -t 80.897679 -s 15 -x 2.436095 -y 2.562888 -u 0.466570 -v 0.135897 -T 3.351917 n -t 80.917904 -s 10 -x 3.080068 -y 2.801507 -u -0.434325 -v 0.239071 -T 5.013134 l -t 80.940880 -s 17 -d 12 -S out -r 10Mb -D 2ms l -t 80.948215 -s 13 -d 1 -S out -r 10Mb -D 2ms l -t 80.955852 -s 15 -d 8 -S in -r 10Mb -D 2ms l -t 81.006581 -s 15 -d 2 -S out -r 10Mb -D 2ms l -t 81.025050 -s 11 -d 6 -S out -r 10Mb -D 2ms l -t 81.164080 -s 17 -d 0 -S out -r 10Mb -D 2ms l -t 81.184528 -s 15 -d 11 -S in -r 10Mb -D 2ms l -t 81.211428 -s 4 -d 6 -S out -r 10Mb -D 2ms l -t 81.216718 -s 15 -d 0 -S out -r 10Mb -D 2ms l -t 81.225373 -s 15 -d 12 -S out -r 10Mb -D 2ms l -t 81.277061 -s 11 -d 5 -S in -r 10Mb -D 2ms l -t 81.355476 -s 19 -d 15 -S in -r 10Mb -D 2ms l -t 81.369608 -s 17 -d 5 -S in -r 10Mb -D 2ms l -t 81.429362 -s 4 -d 2 -S out -r 10Mb -D 2ms l -t 81.454462 -s 0 -d 7 -S in -r 10Mb -D 2ms l -t 81.467627 -s 6 -d 19 -S out -r 10Mb -D 2ms l -t 81.474305 -s 9 -d 0 -S in -r 10Mb -D 2ms n -t 81.575246 -s 1 -x 0.000000 -y 3.370970 -u 0.504624 -v 0.054087 -T 2.943919 l -t 81.576802 -s 16 -d 11 -S in -r 10Mb -D 2ms l -t 81.606801 -s 2 -d 11 -S out -r 10Mb -D 2ms l -t 81.662344 -s 9 -d 12 -S in -r 10Mb -D 2ms l -t 81.690937 -s 4 -d 5 -S in -r 10Mb -D 2ms l -t 81.732573 -s 19 -d 5 -S in -r 10Mb -D 2ms l -t 81.740660 -s 17 -d 16 -S in -r 10Mb -D 2ms n -t 81.762556 -s 14 -x 1.535718 -y 4.000000 -u -0.483565 -v -0.109938 -T 1.124671 l -t 81.766023 -s 12 -d 3 -S in -r 10Mb -D 2ms l -t 81.768280 -s 17 -d 2 -S out -r 10Mb -D 2ms l -t 81.780259 -s 10 -d 11 -S out -r 10Mb -D 2ms l -t 81.810405 -s 18 -d 5 -S in -r 10Mb -D 2ms l -t 81.818656 -s 10 -d 2 -S out -r 10Mb -D 2ms l -t 81.852787 -s 10 -d 19 -S out -r 10Mb -D 2ms l -t 81.872950 -s 10 -d 17 -S out -r 10Mb -D 2ms l -t 81.878892 -s 4 -d 18 -S in -r 10Mb -D 2ms l -t 81.973037 -s 19 -d 16 -S in -r 10Mb -D 2ms l -t 81.979801 -s 8 -d 6 -S out -r 10Mb -D 2ms l -t 82.008364 -s 18 -d 16 -S in -r 10Mb -D 2ms l -t 82.038097 -s 18 -d 11 -S in -r 10Mb -D 2ms l -t 82.046038 -s 4 -d 0 -S in -r 10Mb -D 2ms l -t 82.070050 -s 12 -d 18 -S out -r 10Mb -D 2ms n -t 82.076308 -s 18 -x 2.880724 -y 1.322096 -u -0.222833 -v 0.455149 -T 4.851632 l -t 82.077691 -s 15 -d 5 -S in -r 10Mb -D 2ms l -t 82.083230 -s 6 -d 2 -S out -r 10Mb -D 2ms l -t 82.090395 -s 19 -d 2 -S out -r 10Mb -D 2ms l -t 82.101494 -s 8 -d 5 -S in -r 10Mb -D 2ms l -t 82.163212 -s 18 -d 16 -S out -r 10Mb -D 2ms l -t 82.181091 -s 8 -d 2 -S out -r 10Mb -D 2ms l -t 82.187032 -s 10 -d 4 -S out -r 10Mb -D 2ms l -t 82.265882 -s 4 -d 17 -S out -r 10Mb -D 2ms l -t 82.301349 -s 4 -d 0 -S out -r 10Mb -D 2ms l -t 82.357421 -s 14 -d 1 -S in -r 10Mb -D 2ms l -t 82.396941 -s 19 -d 4 -S out -r 10Mb -D 2ms l -t 82.426224 -s 7 -d 18 -S out -r 10Mb -D 2ms l -t 82.465867 -s 8 -d 16 -S in -r 10Mb -D 2ms n -t 82.550654 -s 6 -x 2.539751 -y 4.000000 -u -0.386950 -v -0.328886 -T 1.286807 l -t 82.568915 -s 4 -d 15 -S out -r 10Mb -D 2ms l -t 82.576132 -s 10 -d 8 -S out -r 10Mb -D 2ms l -t 82.576785 -s 0 -d 3 -S in -r 10Mb -D 2ms l -t 82.581841 -s 4 -d 9 -S in -r 10Mb -D 2ms l -t 82.632412 -s 12 -d 9 -S out -r 10Mb -D 2ms l -t 82.632985 -s 15 -d 16 -S in -r 10Mb -D 2ms l -t 82.633239 -s 15 -d 10 -S out -r 10Mb -D 2ms l -t 82.711134 -s 0 -d 12 -S out -r 10Mb -D 2ms l -t 82.717382 -s 18 -d 8 -S in -r 10Mb -D 2ms l -t 82.726418 -s 9 -d 11 -S in -r 10Mb -D 2ms l -t 82.772763 -s 9 -d 3 -S in -r 10Mb -D 2ms l -t 82.836578 -s 11 -d 15 -S out -r 10Mb -D 2ms l -t 82.843568 -s 11 -d 17 -S out -r 10Mb -D 2ms n -t 82.887227 -s 14 -x 0.991867 -y 3.876355 -u -0.290626 -v 0.412334 -T 0.299865 n -t 82.932160 -s 17 -x 4.000000 -y 2.406263 -u -0.496539 -v -0.033491 -T 1.283481 l -t 82.947408 -s 4 -d 5 -S out -r 10Mb -D 2ms n -t 82.999330 -s 9 -x 2.787430 -y 1.113646 -u -0.438650 -v 0.223462 -T 5.015654 l -t 83.002515 -s 0 -d 18 -S out -r 10Mb -D 2ms n -t 83.039823 -s 2 -x 4.000000 -y 3.927165 -u -0.337012 -v 0.387831 -T 0.187800 l -t 83.068464 -s 3 -d 4 -S in -r 10Mb -D 2ms n -t 83.187092 -s 14 -x 0.904718 -y 4.000000 -u -0.290626 -v -0.412334 -T 3.112994 l -t 83.224050 -s 9 -d 7 -S out -r 10Mb -D 2ms n -t 83.227623 -s 2 -x 3.936709 -y 4.000000 -u -0.337012 -v -0.387831 -T 0.603854 l -t 83.259034 -s 16 -d 11 -S out -r 10Mb -D 2ms n -t 83.309938 -s 19 -x 3.652620 -y 1.937619 -u -0.044547 -v -0.500251 -T 3.873292 l -t 83.381340 -s 19 -d 15 -S out -r 10Mb -D 2ms l -t 83.396814 -s 11 -d 5 -S out -r 10Mb -D 2ms l -t 83.415934 -s 12 -d 13 -S in -r 10Mb -D 2ms l -t 83.488316 -s 10 -d 1 -S in -r 10Mb -D 2ms n -t 83.491490 -s 7 -x 3.605551 -y 0.551602 -u -0.370370 -v 0.320140 -T 4.983372 l -t 83.495553 -s 2 -d 15 -S in -r 10Mb -D 2ms l -t 83.522943 -s 3 -d 11 -S in -r 10Mb -D 2ms l -t 83.642682 -s 15 -d 8 -S out -r 10Mb -D 2ms l -t 83.698825 -s 18 -d 5 -S out -r 10Mb -D 2ms l -t 83.700155 -s 19 -d 5 -S out -r 10Mb -D 2ms l -t 83.722974 -s 4 -d 8 -S out -r 10Mb -D 2ms l -t 83.734105 -s 1 -d 6 -S in -r 10Mb -D 2ms n -t 83.737112 -s 13 -x 0.885999 -y 1.575611 -u -0.409361 -v 0.311507 -T 2.164345 n -t 83.771745 -s 5 -x 3.288971 -y 2.719042 -u -0.226744 -v 0.448965 -T 2.853135 l -t 83.797209 -s 7 -d 11 -S in -r 10Mb -D 2ms l -t 83.807502 -s 3 -d 12 -S out -r 10Mb -D 2ms l -t 83.829435 -s 13 -d 12 -S out -r 10Mb -D 2ms n -t 83.831477 -s 2 -x 3.733203 -y 3.765807 -u -0.493687 -v 0.101886 -T 2.298577 n -t 83.837461 -s 6 -x 2.041820 -y 3.576788 -u 0.363094 -v 0.319823 -T 1.323269 l -t 83.845544 -s 9 -d 0 -S out -r 10Mb -D 2ms l -t 83.867299 -s 7 -d 19 -S in -r 10Mb -D 2ms n -t 83.877151 -s 8 -x 3.229460 -y 1.956738 -u -0.306069 -v -0.409728 -T 4.775695 l -t 83.921491 -s 19 -d 16 -S out -r 10Mb -D 2ms n -t 83.933113 -s 3 -x 2.253682 -y 1.158409 -u 0.247020 -v -0.438787 -T 2.640025 l -t 84.024652 -s 8 -d 16 -S out -r 10Mb -D 2ms l -t 84.075633 -s 8 -d 9 -S in -r 10Mb -D 2ms l -t 84.094212 -s 18 -d 17 -S in -r 10Mb -D 2ms l -t 84.095249 -s 18 -d 11 -S out -r 10Mb -D 2ms l -t 84.097210 -s 8 -d 5 -S out -r 10Mb -D 2ms l -t 84.109358 -s 2 -d 5 -S in -r 10Mb -D 2ms l -t 84.126993 -s 18 -d 4 -S out -r 10Mb -D 2ms n -t 84.215641 -s 17 -x 3.362701 -y 2.363278 -u 0.487814 -v 0.032097 -T 1.306437 n -t 84.249596 -s 15 -x 4.000000 -y 3.018405 -u -0.466570 -v 0.135897 -T 1.580033 l -t 84.272440 -s 17 -d 18 -S out -r 10Mb -D 2ms l -t 84.273285 -s 3 -d 7 -S in -r 10Mb -D 2ms l -t 84.292611 -s 8 -d 7 -S in -r 10Mb -D 2ms l -t 84.409684 -s 5 -d 18 -S in -r 10Mb -D 2ms l -t 84.425493 -s 17 -d 19 -S out -r 10Mb -D 2ms l -t 84.483649 -s 8 -d 4 -S in -r 10Mb -D 2ms l -t 84.490078 -s 8 -d 18 -S out -r 10Mb -D 2ms l -t 84.490526 -s 7 -d 0 -S out -r 10Mb -D 2ms l -t 84.504072 -s 18 -d 9 -S out -r 10Mb -D 2ms n -t 84.519165 -s 1 -x 1.485573 -y 3.530198 -u 0.488646 -v -0.062680 -T 4.926260 l -t 84.532089 -s 7 -d 4 -S in -r 10Mb -D 2ms n -t 84.543859 -s 0 -x 2.703971 -y 0.000000 -u 0.039664 -v 0.482795 -T 0.345663 l -t 84.554808 -s 1 -d 14 -S out -r 10Mb -D 2ms l -t 84.566804 -s 3 -d 8 -S in -r 10Mb -D 2ms l -t 84.617884 -s 0 -d 7 -S in -r 10Mb -D 2ms l -t 84.641089 -s 6 -d 2 -S in -r 10Mb -D 2ms l -t 84.677932 -s 0 -d 11 -S in -r 10Mb -D 2ms l -t 84.722358 -s 8 -d 17 -S out -r 10Mb -D 2ms l -t 84.736393 -s 5 -d 6 -S in -r 10Mb -D 2ms l -t 84.785763 -s 4 -d 0 -S in -r 10Mb -D 2ms l -t 84.788364 -s 6 -d 10 -S out -r 10Mb -D 2ms l -t 84.807746 -s 5 -d 17 -S out -r 10Mb -D 2ms l -t 84.848117 -s 11 -d 19 -S out -r 10Mb -D 2ms n -t 84.889523 -s 0 -x 2.717682 -y 0.166885 -u -0.028462 -v -0.502077 -T 0.332389 l -t 84.934273 -s 9 -d 3 -S out -r 10Mb -D 2ms l -t 84.985490 -s 1 -d 18 -S in -r 10Mb -D 2ms l -t 85.028492 -s 7 -d 0 -S out -r 10Mb -D 2ms l -t 85.112218 -s 9 -d 8 -S out -r 10Mb -D 2ms l -t 85.154538 -s 11 -d 9 -S out -r 10Mb -D 2ms n -t 85.160730 -s 6 -x 2.522292 -y 4.000000 -u 0.363094 -v -0.319823 -T 3.741983 n -t 85.221911 -s 0 -x 2.708221 -y 0.000000 -u -0.028462 -v 0.502077 -T 4.776235 n -t 85.377788 -s 12 -x 0.758613 -y 0.111038 -u 0.490231 -v -0.140162 -T 0.792213 l -t 85.384630 -s 9 -d 4 -S out -r 10Mb -D 2ms l -t 85.393750 -s 13 -d 14 -S in -r 10Mb -D 2ms l -t 85.405629 -s 5 -d 1 -S in -r 10Mb -D 2ms n -t 85.451613 -s 4 -x 2.041193 -y 0.667436 -u -0.051637 -v 0.508873 -T 5.079792 l -t 85.454952 -s 19 -d 3 -S in -r 10Mb -D 2ms l -t 85.485684 -s 16 -d 17 -S out -r 10Mb -D 2ms n -t 85.522078 -s 17 -x 4.000000 -y 2.405211 -u -0.487814 -v 0.032097 -T 3.776783 l -t 85.526941 -s 1 -d 10 -S out -r 10Mb -D 2ms l -t 85.547425 -s 6 -d 15 -S in -r 10Mb -D 2ms n -t 85.562388 -s 11 -x 2.411229 -y 0.685247 -u 0.467680 -v -0.218604 -T 3.134656 l -t 85.567565 -s 2 -d 1 -S in -r 10Mb -D 2ms l -t 85.663695 -s 5 -d 16 -S out -r 10Mb -D 2ms l -t 85.667015 -s 0 -d 8 -S in -r 10Mb -D 2ms l -t 85.678272 -s 0 -d 19 -S in -r 10Mb -D 2ms n -t 85.707805 -s 16 -x 3.857312 -y 3.506985 -u -0.474741 -v -0.112001 -T 5.003272 l -t 85.729668 -s 19 -d 8 -S out -r 10Mb -D 2ms l -t 85.732506 -s 17 -d 15 -S out -r 10Mb -D 2ms l -t 85.762793 -s 16 -d 5 -S in -r 10Mb -D 2ms l -t 85.810400 -s 19 -d 7 -S out -r 10Mb -D 2ms l -t 85.810592 -s 0 -d 7 -S in -r 10Mb -D 2ms n -t 85.829629 -s 15 -x 3.262803 -y 3.233127 -u -0.332685 -v -0.376716 -T 4.988794 l -t 85.839949 -s 11 -d 19 -S in -r 10Mb -D 2ms l -t 85.846100 -s 15 -d 17 -S in -r 10Mb -D 2ms l -t 85.864020 -s 7 -d 3 -S out -r 10Mb -D 2ms n -t 85.901457 -s 13 -x 0.000000 -y 2.249819 -u 0.409361 -v 0.311507 -T 2.810697 l -t 85.916491 -s 16 -d 6 -S in -r 10Mb -D 2ms n -t 85.931037 -s 10 -x 0.902739 -y 4.000000 -u -0.434325 -v -0.239071 -T 0.241374 l -t 85.934453 -s 4 -d 9 -S in -r 10Mb -D 2ms l -t 85.972633 -s 4 -d 3 -S out -r 10Mb -D 2ms l -t 86.037026 -s 15 -d 2 -S out -r 10Mb -D 2ms l -t 86.046012 -s 15 -d 1 -S in -r 10Mb -D 2ms n -t 86.130055 -s 2 -x 2.598425 -y 4.000000 -u -0.493687 -v -0.101886 -T 2.546747 n -t 86.170001 -s 12 -x 1.146980 -y 0.000000 -u 0.490231 -v 0.140162 -T 4.241572 n -t 86.172412 -s 10 -x 0.797905 -y 3.942294 -u 0.359323 -v 0.358501 -T 0.160964 l -t 86.194011 -s 2 -d 18 -S in -r 10Mb -D 2ms n -t 86.300086 -s 14 -x 0.000000 -y 2.716406 -u 0.290626 -v -0.412334 -T 1.561475 l -t 86.320209 -s 4 -d 9 -S out -r 10Mb -D 2ms n -t 86.333375 -s 10 -x 0.855743 -y 4.000000 -u 0.359323 -v -0.358501 -T 4.848494 l -t 86.355943 -s 4 -d 11 -S out -r 10Mb -D 2ms l -t 86.375215 -s 11 -d 7 -S out -r 10Mb -D 2ms l -t 86.379235 -s 16 -d 17 -S in -r 10Mb -D 2ms l -t 86.456484 -s 15 -d 5 -S out -r 10Mb -D 2ms l -t 86.528838 -s 16 -d 1 -S in -r 10Mb -D 2ms n -t 86.573138 -s 3 -x 2.905822 -y 0.000000 -u 0.247020 -v 0.438787 -T 2.281190 n -t 86.624880 -s 5 -x 2.642041 -y 4.000000 -u -0.226744 -v -0.448965 -T 2.278335 l -t 86.665883 -s 10 -d 18 -S in -r 10Mb -D 2ms l -t 86.709350 -s 13 -d 9 -S in -r 10Mb -D 2ms l -t 86.750299 -s 0 -d 19 -S out -r 10Mb -D 2ms l -t 86.841397 -s 6 -d 2 -S out -r 10Mb -D 2ms l -t 86.909454 -s 8 -d 12 -S in -r 10Mb -D 2ms l -t 86.919315 -s 6 -d 17 -S in -r 10Mb -D 2ms l -t 86.925010 -s 14 -d 9 -S in -r 10Mb -D 2ms n -t 86.927940 -s 18 -x 1.799619 -y 3.530310 -u 0.084206 -v -0.481339 -T 4.969681 l -t 87.002574 -s 8 -d 7 -S out -r 10Mb -D 2ms l -t 87.104930 -s 10 -d 2 -S in -r 10Mb -D 2ms l -t 87.163066 -s 1 -d 17 -S in -r 10Mb -D 2ms n -t 87.183230 -s 19 -x 3.480075 -y 0.000000 -u -0.044547 -v 0.500251 -T 0.972416 l -t 87.198257 -s 11 -d 8 -S out -r 10Mb -D 2ms l -t 87.203915 -s 4 -d 8 -S out -r 10Mb -D 2ms l -t 87.266588 -s 18 -d 1 -S out -r 10Mb -D 2ms l -t 87.328785 -s 2 -d 1 -S out -r 10Mb -D 2ms l -t 87.373945 -s 0 -d 11 -S out -r 10Mb -D 2ms l -t 87.438477 -s 15 -d 7 -S in -r 10Mb -D 2ms l -t 87.466360 -s 3 -d 8 -S out -r 10Mb -D 2ms l -t 87.512414 -s 5 -d 6 -S out -r 10Mb -D 2ms l -t 87.570235 -s 10 -d 13 -S in -r 10Mb -D 2ms l -t 87.630380 -s 15 -d 6 -S out -r 10Mb -D 2ms l -t 87.665694 -s 0 -d 8 -S out -r 10Mb -D 2ms l -t 87.698927 -s 18 -d 15 -S in -r 10Mb -D 2ms l -t 87.715622 -s 15 -d 4 -S in -r 10Mb -D 2ms l -t 87.787808 -s 10 -d 5 -S in -r 10Mb -D 2ms l -t 87.808516 -s 16 -d 18 -S in -r 10Mb -D 2ms l -t 87.853938 -s 1 -d 15 -S out -r 10Mb -D 2ms n -t 87.861561 -s 14 -x 0.453806 -y 2.072557 -u 0.286497 -v 0.402822 -T 4.784847 l -t 87.890452 -s 5 -d 15 -S in -r 10Mb -D 2ms l -t 87.942232 -s 7 -d 17 -S in -r 10Mb -D 2ms n -t 88.014984 -s 9 -x 0.587314 -y 2.234452 -u 0.260027 -v -0.424193 -T 4.998174 l -t 88.017001 -s 17 -d 5 -S in -r 10Mb -D 2ms l -t 88.024858 -s 7 -d 18 -S in -r 10Mb -D 2ms l -t 88.028943 -s 0 -d 15 -S in -r 10Mb -D 2ms l -t 88.029687 -s 0 -d 3 -S out -r 10Mb -D 2ms l -t 88.038581 -s 17 -d 4 -S in -r 10Mb -D 2ms l -t 88.050623 -s 18 -d 4 -S in -r 10Mb -D 2ms l -t 88.055335 -s 17 -d 6 -S out -r 10Mb -D 2ms l -t 88.060306 -s 18 -d 17 -S in -r 10Mb -D 2ms l -t 88.096612 -s 18 -d 13 -S in -r 10Mb -D 2ms n -t 88.155646 -s 19 -x 3.436757 -y 0.486452 -u 0.404560 -v 0.297282 -T 1.392237 l -t 88.196823 -s 17 -d 0 -S in -r 10Mb -D 2ms l -t 88.197890 -s 1 -d 17 -S out -r 10Mb -D 2ms l -t 88.200933 -s 1 -d 5 -S out -r 10Mb -D 2ms l -t 88.231955 -s 16 -d 6 -S out -r 10Mb -D 2ms l -t 88.245835 -s 2 -d 13 -S in -r 10Mb -D 2ms l -t 88.320139 -s 18 -d 2 -S out -r 10Mb -D 2ms l -t 88.379161 -s 16 -d 10 -S in -r 10Mb -D 2ms l -t 88.381084 -s 13 -d 9 -S out -r 10Mb -D 2ms n -t 88.474862 -s 7 -x 1.759861 -y 2.146981 -u 0.051014 -v -0.517211 -T 4.151072 l -t 88.496630 -s 4 -d 5 -S in -r 10Mb -D 2ms l -t 88.521214 -s 2 -d 5 -S out -r 10Mb -D 2ms l -t 88.537346 -s 4 -d 10 -S in -r 10Mb -D 2ms l -t 88.584143 -s 16 -d 15 -S out -r 10Mb -D 2ms l -t 88.600445 -s 1 -d 16 -S out -r 10Mb -D 2ms l -t 88.648349 -s 3 -d 11 -S out -r 10Mb -D 2ms n -t 88.652846 -s 8 -x 1.767766 -y 0.000000 -u -0.306069 -v 0.409728 -T 0.325427 n -t 88.676801 -s 2 -x 1.341128 -y 3.740522 -u 0.355480 -v 0.360118 -T 0.720537 l -t 88.682115 -s 17 -d 10 -S in -r 10Mb -D 2ms n -t 88.697044 -s 11 -x 3.877247 -y 0.000000 -u 0.467680 -v 0.218604 -T 0.262472 n -t 88.712154 -s 13 -x 1.150590 -y 3.125370 -u 0.462180 -v -0.174879 -T 5.014459 l -t 88.727826 -s 4 -d 16 -S in -r 10Mb -D 2ms l -t 88.742167 -s 13 -d 5 -S in -r 10Mb -D 2ms l -t 88.744589 -s 9 -d 7 -S in -r 10Mb -D 2ms l -t 88.802405 -s 13 -d 4 -S in -r 10Mb -D 2ms n -t 88.854328 -s 3 -x 3.469322 -y 1.000957 -u 0.411700 -v 0.309048 -T 1.288992 l -t 88.866803 -s 18 -d 0 -S in -r 10Mb -D 2ms n -t 88.902713 -s 6 -x 3.880985 -y 2.803227 -u 0.112923 -v -0.500755 -T 1.053944 n -t 88.903214 -s 5 -x 2.125443 -y 2.977107 -u -0.467492 -v -0.216298 -T 4.546483 n -t 88.959516 -s 11 -x 4.000000 -y 0.057377 -u -0.467680 -v 0.218604 -T 1.653707 n -t 88.978273 -s 8 -x 1.668162 -y 0.133337 -u 0.386955 -v -0.332196 -T 0.401380 l -t 89.013664 -s 13 -d 16 -S in -r 10Mb -D 2ms l -t 89.167840 -s 10 -d 2 -S out -r 10Mb -D 2ms l -t 89.175538 -s 13 -d 17 -S in -r 10Mb -D 2ms l -t 89.232329 -s 4 -d 14 -S in -r 10Mb -D 2ms n -t 89.298860 -s 17 -x 2.157631 -y 2.526435 -u 0.344975 -v -0.360372 -T 4.880673 l -t 89.343391 -s 9 -d 14 -S out -r 10Mb -D 2ms l -t 89.368230 -s 8 -d 12 -S out -r 10Mb -D 2ms n -t 89.379653 -s 8 -x 1.823478 -y 0.000000 -u 0.386955 -v 0.332196 -T 4.614407 l -t 89.391563 -s 7 -d 4 -S out -r 10Mb -D 2ms l -t 89.391695 -s 13 -d 2 -S out -r 10Mb -D 2ms n -t 89.397338 -s 2 -x 1.597265 -y 4.000000 -u 0.355480 -v -0.360118 -T 4.228183 l -t 89.409676 -s 5 -d 15 -S out -r 10Mb -D 2ms l -t 89.412101 -s 2 -d 13 -S in -r 10Mb -D 2ms l -t 89.416810 -s 5 -d 14 -S in -r 10Mb -D 2ms l -t 89.423567 -s 0 -d 10 -S in -r 10Mb -D 2ms n -t 89.445425 -s 1 -x 3.892772 -y 3.221422 -u 0.299148 -v -0.400322 -T 0.358445 l -t 89.461412 -s 2 -d 16 -S in -r 10Mb -D 2ms l -t 89.511326 -s 11 -d 12 -S in -r 10Mb -D 2ms n -t 89.547883 -s 19 -x 4.000000 -y 0.900340 -u -0.404560 -v 0.297282 -T 3.619915 l -t 89.610092 -s 0 -d 7 -S out -r 10Mb -D 2ms l -t 89.621241 -s 15 -d 4 -S out -r 10Mb -D 2ms l -t 89.651939 -s 0 -d 5 -S in -r 10Mb -D 2ms l -t 89.670517 -s 15 -d 9 -S in -r 10Mb -D 2ms l -t 89.713996 -s 16 -d 14 -S in -r 10Mb -D 2ms l -t 89.738318 -s 17 -d 7 -S out -r 10Mb -D 2ms l -t 89.775277 -s 2 -d 4 -S in -r 10Mb -D 2ms n -t 89.803870 -s 1 -x 4.000000 -y 3.077928 -u -0.299148 -v -0.400322 -T 4.775188 l -t 89.808233 -s 16 -d 0 -S in -r 10Mb -D 2ms l -t 89.850443 -s 0 -d 5 -S out -r 10Mb -D 2ms l -t 89.881065 -s 6 -d 3 -S in -r 10Mb -D 2ms l -t 89.907368 -s 19 -d 12 -S in -r 10Mb -D 2ms n -t 89.956657 -s 6 -x 4.000000 -y 2.275459 -u -0.112923 -v -0.500755 -T 3.894865 l -t 89.956674 -s 13 -d 0 -S in -r 10Mb -D 2ms l -t 89.983228 -s 15 -d 0 -S out -r 10Mb -D 2ms l -t 89.992978 -s 16 -d 18 -S out -r 10Mb -D 2ms n -t 89.998146 -s 0 -x 2.572278 -y 2.398037 -u 0.516271 -v -0.012407 -T 2.765449 + -t 90 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 4 -a 0 -x {0.2 1.2 0 ---A--- (null)} l -t 90.026805 -s 0 -d 16 -S out -r 10Mb -D 2ms l -t 90.036410 -s 4 -d 18 -S out -r 10Mb -D 2ms l -t 90.046977 -s 4 -d 0 -S out -r 10Mb -D 2ms l -t 90.070836 -s 16 -d 17 -S out -r 10Mb -D 2ms l -t 90.082475 -s 4 -d 17 -S out -r 10Mb -D 2ms l -t 90.110022 -s 17 -d 5 -S out -r 10Mb -D 2ms n -t 90.143320 -s 3 -x 4.000000 -y 1.399318 -u -0.411700 -v 0.309048 -T 3.597028 l -t 90.235082 -s 8 -d 7 -S in -r 10Mb -D 2ms l -t 90.266176 -s 14 -d 2 -S in -r 10Mb -D 2ms l -t 90.321611 -s 6 -d 19 -S in -r 10Mb -D 2ms l -t 90.333874 -s 18 -d 5 -S out -r 10Mb -D 2ms l -t 90.386702 -s 15 -d 17 -S out -r 10Mb -D 2ms n -t 90.411574 -s 12 -x 3.226329 -y 0.594506 -u -0.456969 -v -0.260423 -T 2.282851 l -t 90.447634 -s 12 -d 8 -S in -r 10Mb -D 2ms l -t 90.463253 -s 18 -d 13 -S out -r 10Mb -D 2ms l -t 90.521478 -s 10 -d 5 -S out -r 10Mb -D 2ms l -t 90.526587 -s 8 -d 11 -S in -r 10Mb -D 2ms n -t 90.531405 -s 4 -x 1.778888 -y 3.252402 -u 0.410012 -v 0.295935 -T 2.526221 l -t 90.547930 -s 1 -d 0 -S in -r 10Mb -D 2ms l -t 90.605215 -s 18 -d 0 -S out -r 10Mb -D 2ms n -t 90.613223 -s 11 -x 3.226594 -y 0.418884 -u -0.031954 -v 0.492897 -T 5.003616 l -t 90.617829 -s 4 -d 10 -S out -r 10Mb -D 2ms l -t 90.618944 -s 16 -d 10 -S out -r 10Mb -D 2ms n -t 90.711077 -s 16 -x 1.482056 -y 2.946615 -u 0.028723 -v 0.512012 -T 2.057342 l -t 90.795730 -s 4 -d 5 -S out -r 10Mb -D 2ms n -t 90.818423 -s 15 -x 1.603106 -y 1.353768 -u -0.271626 -v 0.428240 -T 5.083527 l -t 90.885265 -s 17 -d 19 -S in -r 10Mb -D 2ms l -t 90.891434 -s 13 -d 14 -S out -r 10Mb -D 2ms l -t 90.894878 -s 0 -d 3 -S in -r 10Mb -D 2ms l -t 90.908563 -s 3 -d 1 -S in -r 10Mb -D 2ms l -t 90.911178 -s 13 -d 5 -S out -r 10Mb -D 2ms l -t 90.911242 -s 18 -d 9 -S in -r 10Mb -D 2ms l -t 90.930682 -s 17 -d 3 -S in -r 10Mb -D 2ms l -t 90.999454 -s 12 -d 19 -S out -r 10Mb -D 2ms l -t 91.088119 -s 0 -d 6 -S in -r 10Mb -D 2ms l -t 91.113612 -s 18 -d 8 -S in -r 10Mb -D 2ms n -t 91.181870 -s 10 -x 2.597920 -y 2.261811 -u -0.225938 -v 0.442131 -T 3.931388 l -t 91.196117 -s 14 -d 5 -S out -r 10Mb -D 2ms l -t 91.203036 -s 0 -d 19 -S in -r 10Mb -D 2ms l -t 91.249269 -s 17 -d 1 -S in -r 10Mb -D 2ms l -t 91.249530 -s 12 -d 7 -S in -r 10Mb -D 2ms l -t 91.267038 -s 16 -d 13 -S out -r 10Mb -D 2ms l -t 91.277115 -s 10 -d 1 -S in -r 10Mb -D 2ms l -t 91.280605 -s 17 -d 13 -S out -r 10Mb -D 2ms l -t 91.325247 -s 15 -d 7 -S out -r 10Mb -D 2ms l -t 91.327038 -s 5 -d 15 -S in -r 10Mb -D 2ms l -t 91.334003 -s 10 -d 18 -S out -r 10Mb -D 2ms l -t 91.347300 -s 10 -d 2 -S in -r 10Mb -D 2ms l -t 91.349142 -s 17 -d 6 -S in -r 10Mb -D 2ms l -t 91.375448 -s 11 -d 6 -S in -r 10Mb -D 2ms l -t 91.378025 -s 5 -d 16 -S out -r 10Mb -D 2ms l -t 91.415118 -s 17 -d 11 -S in -r 10Mb -D 2ms l -t 91.423239 -s 19 -d 8 -S in -r 10Mb -D 2ms l -t 91.438454 -s 1 -d 19 -S in -r 10Mb -D 2ms l -t 91.473846 -s 11 -d 3 -S in -r 10Mb -D 2ms l -t 91.510319 -s 0 -d 6 -S out -r 10Mb -D 2ms l -t 91.594868 -s 17 -d 8 -S in -r 10Mb -D 2ms l -t 91.610991 -s 18 -d 19 -S in -r 10Mb -D 2ms l -t 91.617406 -s 13 -d 1 -S in -r 10Mb -D 2ms l -t 91.618315 -s 9 -d 15 -S out -r 10Mb -D 2ms l -t 91.631014 -s 4 -d 13 -S out -r 10Mb -D 2ms l -t 91.729100 -s 10 -d 17 -S out -r 10Mb -D 2ms l -t 91.729396 -s 10 -d 0 -S out -r 10Mb -D 2ms l -t 91.732680 -s 15 -d 18 -S out -r 10Mb -D 2ms l -t 91.766225 -s 2 -d 14 -S out -r 10Mb -D 2ms l -t 91.770899 -s 6 -d 1 -S out -r 10Mb -D 2ms l -t 91.784768 -s 11 -d 18 -S in -r 10Mb -D 2ms l -t 91.786874 -s 16 -d 2 -S out -r 10Mb -D 2ms l -t 91.801169 -s 13 -d 3 -S in -r 10Mb -D 2ms l -t 91.829284 -s 11 -d 12 -S out -r 10Mb -D 2ms l -t 91.864933 -s 12 -d 18 -S in -r 10Mb -D 2ms n -t 91.897621 -s 18 -x 2.218096 -y 1.138206 -u 0.488306 -v 0.036612 -T 3.649152 l -t 91.912462 -s 10 -d 1 -S out -r 10Mb -D 2ms l -t 91.928792 -s 7 -d 8 -S out -r 10Mb -D 2ms l -t 91.929958 -s 9 -d 12 -S in -r 10Mb -D 2ms l -t 91.974670 -s 13 -d 19 -S in -r 10Mb -D 2ms l -t 92.009010 -s 6 -d 8 -S in -r 10Mb -D 2ms l -t 92.079924 -s 17 -d 0 -S out -r 10Mb -D 2ms l -t 92.097802 -s 18 -d 12 -S out -r 10Mb -D 2ms l -t 92.117281 -s 11 -d 1 -S in -r 10Mb -D 2ms l -t 92.118661 -s 19 -d 0 -S out -r 10Mb -D 2ms l -t 92.123868 -s 3 -d 6 -S out -r 10Mb -D 2ms l -t 92.173952 -s 18 -d 7 -S out -r 10Mb -D 2ms l -t 92.229655 -s 19 -d 6 -S out -r 10Mb -D 2ms l -t 92.248892 -s 12 -d 8 -S out -r 10Mb -D 2ms l -t 92.249152 -s 18 -d 9 -S out -r 10Mb -D 2ms l -t 92.312180 -s 2 -d 3 -S in -r 10Mb -D 2ms l -t 92.362049 -s 4 -d 16 -S out -r 10Mb -D 2ms l -t 92.471079 -s 8 -d 1 -S in -r 10Mb -D 2ms l -t 92.544796 -s 1 -d 2 -S in -r 10Mb -D 2ms l -t 92.563333 -s 2 -d 4 -S out -r 10Mb -D 2ms l -t 92.596628 -s 1 -d 18 -S in -r 10Mb -D 2ms n -t 92.625934 -s 7 -x 1.971623 -y 0.000000 -u 0.051014 -v 0.517211 -T 0.953057 n -t 92.646408 -s 14 -x 1.824648 -y 4.000000 -u 0.286497 -v -0.402822 -T 0.230931 l -t 92.659482 -s 3 -d 0 -S out -r 10Mb -D 2ms l -t 92.659489 -s 2 -d 19 -S in -r 10Mb -D 2ms l -t 92.692611 -s 11 -d 13 -S in -r 10Mb -D 2ms n -t 92.694424 -s 12 -x 2.183137 -y 0.000000 -u -0.456969 -v 0.260423 -T 2.907720 l -t 92.734958 -s 3 -d 17 -S out -r 10Mb -D 2ms l -t 92.760592 -s 1 -d 0 -S out -r 10Mb -D 2ms n -t 92.763595 -s 0 -x 4.000000 -y 2.363726 -u -0.516271 -v -0.012407 -T 2.318342 n -t 92.768419 -s 16 -x 1.541149 -y 4.000000 -u 0.028723 -v -0.512012 -T 3.032112 l -t 92.814590 -s 13 -d 10 -S out -r 10Mb -D 2ms l -t 92.828223 -s 14 -d 10 -S in -r 10Mb -D 2ms n -t 92.877339 -s 14 -x 1.890809 -y 3.906976 -u -0.451575 -v 0.174400 -T 0.533394 l -t 92.890964 -s 19 -d 17 -S out -r 10Mb -D 2ms l -t 92.987783 -s 6 -d 18 -S in -r 10Mb -D 2ms n -t 93.013158 -s 9 -x 1.886974 -y 0.114260 -u -0.260323 -v -0.439011 -T 0.260268 l -t 93.019762 -s 6 -d 11 -S out -r 10Mb -D 2ms l -t 93.040269 -s 10 -d 16 -S in -r 10Mb -D 2ms l -t 93.049374 -s 14 -d 4 -S out -r 10Mb -D 2ms n -t 93.057625 -s 4 -x 2.814669 -y 4.000000 -u 0.410012 -v -0.295935 -T 2.349231 l -t 93.060621 -s 0 -d 2 -S in -r 10Mb -D 2ms l -t 93.080180 -s 0 -d 11 -S in -r 10Mb -D 2ms l -t 93.091247 -s 8 -d 19 -S out -r 10Mb -D 2ms l -t 93.152744 -s 2 -d 11 -S in -r 10Mb -D 2ms n -t 93.167798 -s 19 -x 2.535527 -y 1.976476 -u 0.292111 -v 0.421983 -T 4.795277 l -t 93.240996 -s 10 -d 2 -S out -r 10Mb -D 2ms n -t 93.273425 -s 9 -x 1.819220 -y 0.000000 -u -0.260323 -v 0.439011 -T 4.695728 l -t 93.345191 -s 13 -d 8 -S in -r 10Mb -D 2ms n -t 93.410733 -s 14 -x 1.649942 -y 4.000000 -u -0.451575 -v -0.174400 -T 3.653751 l -t 93.422429 -s 5 -d 15 -S out -r 10Mb -D 2ms n -t 93.449698 -s 5 -x 0.000000 -y 1.993713 -u 0.467492 -v -0.216298 -T 0.610905 l -t 93.490322 -s 5 -d 15 -S in -r 10Mb -D 2ms l -t 93.512233 -s 0 -d 8 -S in -r 10Mb -D 2ms l -t 93.517487 -s 19 -d 0 -S in -r 10Mb -D 2ms l -t 93.521673 -s 18 -d 19 -S out -r 10Mb -D 2ms l -t 93.549022 -s 17 -d 11 -S out -r 10Mb -D 2ms l -t 93.568950 -s 0 -d 3 -S in -r 10Mb -D 2ms n -t 93.578991 -s 7 -x 2.020242 -y 0.492932 -u 0.498885 -v -0.078303 -T 3.968363 n -t 93.625522 -s 2 -x 3.100299 -y 2.477355 -u -0.401705 -v 0.270459 -T 5.094944 l -t 93.652134 -s 6 -d 8 -S out -r 10Mb -D 2ms l -t 93.658949 -s 17 -d 1 -S out -r 10Mb -D 2ms l -t 93.665131 -s 1 -d 3 -S out -r 10Mb -D 2ms l -t 93.688388 -s 2 -d 1 -S out -r 10Mb -D 2ms n -t 93.726613 -s 13 -x 3.468172 -y 2.248448 -u -0.236159 -v 0.437859 -T 4.000270 n -t 93.740348 -s 3 -x 2.519104 -y 2.510973 -u 0.008750 -v 0.501154 -T 2.971199 l -t 93.755925 -s 13 -d 1 -S out -r 10Mb -D 2ms n -t 93.851522 -s 6 -x 3.560180 -y 0.325086 -u -0.407261 -v -0.284760 -T 1.141614 n -t 93.994060 -s 8 -x 3.609049 -y 1.532888 -u -0.425740 -v -0.265693 -T 4.966607 n -t 94.060603 -s 5 -x 0.285593 -y 1.861576 -u -0.437905 -v -0.216438 -T 0.652180 l -t 94.081595 -s 19 -d 1 -S out -r 10Mb -D 2ms l -t 94.086655 -s 5 -d 15 -S out -r 10Mb -D 2ms l -t 94.107618 -s 7 -d 1 -S in -r 10Mb -D 2ms n -t 94.179533 -s 17 -x 3.841342 -y 0.767578 -u 0.310781 -v -0.396100 -T 0.510515 l -t 94.201845 -s 6 -d 18 -S out -r 10Mb -D 2ms l -t 94.213007 -s 8 -d 13 -S out -r 10Mb -D 2ms l -t 94.215141 -s 11 -d 18 -S out -r 10Mb -D 2ms l -t 94.234751 -s 11 -d 1 -S out -r 10Mb -D 2ms l -t 94.289284 -s 15 -d 16 -S in -r 10Mb -D 2ms l -t 94.331119 -s 6 -d 7 -S in -r 10Mb -D 2ms l -t 94.372685 -s 7 -d 12 -S out -r 10Mb -D 2ms l -t 94.375022 -s 3 -d 16 -S in -r 10Mb -D 2ms l -t 94.454988 -s 15 -d 16 -S out -r 10Mb -D 2ms l -t 94.489899 -s 13 -d 4 -S in -r 10Mb -D 2ms l -t 94.516103 -s 7 -d 9 -S out -r 10Mb -D 2ms l -t 94.531872 -s 8 -d 11 -S out -r 10Mb -D 2ms l -t 94.547254 -s 8 -d 0 -S out -r 10Mb -D 2ms l -t 94.566299 -s 14 -d 15 -S in -r 10Mb -D 2ms n -t 94.579058 -s 1 -x 2.571514 -y 1.166316 -u 0.402824 -v 0.275236 -T 3.546180 l -t 94.617947 -s 17 -d 8 -S out -r 10Mb -D 2ms n -t 94.690049 -s 17 -x 4.000000 -y 0.565362 -u -0.310781 -v -0.396100 -T 1.427321 n -t 94.712783 -s 5 -x 0.000000 -y 1.720419 -u 0.437905 -v -0.216438 -T 4.371504 l -t 94.742844 -s 4 -d 19 -S in -r 10Mb -D 2ms l -t 94.827675 -s 16 -d 14 -S out -r 10Mb -D 2ms l -t 94.879618 -s 16 -d 2 -S in -r 10Mb -D 2ms l -t 94.889857 -s 16 -d 10 -S out -r 10Mb -D 2ms l -t 94.986028 -s 11 -d 4 -S in -r 10Mb -D 2ms l -t 94.987545 -s 8 -d 7 -S in -r 10Mb -D 2ms n -t 94.993137 -s 6 -x 3.095245 -y 0.000000 -u -0.407261 -v 0.284760 -T 3.941720 l -t 95.080096 -s 1 -d 18 -S out -r 10Mb -D 2ms n -t 95.081937 -s 0 -x 2.803106 -y 2.334962 -u -0.046565 -v -0.504059 -T 4.632317 l -t 95.098880 -s 16 -d 3 -S out -r 10Mb -D 2ms n -t 95.113257 -s 10 -x 1.709668 -y 4.000000 -u -0.225938 -v -0.442131 -T 1.055350 l -t 95.120822 -s 0 -d 1 -S in -r 10Mb -D 2ms l -t 95.196985 -s 0 -d 3 -S out -r 10Mb -D 2ms l -t 95.215569 -s 17 -d 7 -S in -r 10Mb -D 2ms l -t 95.281085 -s 1 -d 7 -S out -r 10Mb -D 2ms n -t 95.406856 -s 4 -x 3.777883 -y 3.304780 -u 0.212075 -v 0.460825 -T 1.047350 l -t 95.411773 -s 17 -d 18 -S out -r 10Mb -D 2ms l -t 95.480394 -s 8 -d 18 -S out -r 10Mb -D 2ms l -t 95.484724 -s 8 -d 6 -S in -r 10Mb -D 2ms l -t 95.489342 -s 12 -d 5 -S in -r 10Mb -D 2ms l -t 95.527940 -s 8 -d 0 -S in -r 10Mb -D 2ms l -t 95.541769 -s 0 -d 2 -S out -r 10Mb -D 2ms n -t 95.546773 -s 18 -x 4.000000 -y 1.271808 -u -0.488306 -v 0.036612 -T 1.437479 l -t 95.559378 -s 0 -d 19 -S out -r 10Mb -D 2ms l -t 95.566306 -s 9 -d 5 -S in -r 10Mb -D 2ms l -t 95.567676 -s 10 -d 3 -S in -r 10Mb -D 2ms l -t 95.571082 -s 13 -d 0 -S out -r 10Mb -D 2ms n -t 95.602144 -s 12 -x 0.854399 -y 0.757236 -u -0.115176 -v 0.488729 -T 5.027106 l -t 95.607553 -s 18 -d 1 -S in -r 10Mb -D 2ms n -t 95.616839 -s 11 -x 3.066707 -y 2.885149 -u 0.190010 -v -0.476611 -T 4.911806 l -t 95.675295 -s 2 -d 10 -S in -r 10Mb -D 2ms l -t 95.688105 -s 19 -d 2 -S out -r 10Mb -D 2ms l -t 95.760670 -s 11 -d 4 -S out -r 10Mb -D 2ms n -t 95.800532 -s 16 -x 1.628241 -y 2.447521 -u 0.474599 -v -0.183284 -T 4.913712 l -t 95.850070 -s 10 -d 3 -S out -r 10Mb -D 2ms l -t 95.851213 -s 10 -d 14 -S out -r 10Mb -D 2ms l -t 95.872646 -s 11 -d 3 -S out -r 10Mb -D 2ms n -t 95.901950 -s 15 -x 0.222285 -y 3.530737 -u 0.321038 -v 0.378470 -T 1.239895 l -t 95.906584 -s 11 -d 2 -S out -r 10Mb -D 2ms l -t 95.934488 -s 13 -d 4 -S out -r 10Mb -D 2ms n -t 96.117370 -s 17 -x 3.556416 -y 0.000000 -u -0.310781 -v 0.396100 -T 3.051359 n -t 96.168607 -s 10 -x 1.471224 -y 3.533397 -u -0.142789 -v -0.478750 -T 4.921220 l -t 96.176831 -s 19 -d 3 -S out -r 10Mb -D 2ms l -t 96.194412 -s 1 -d 11 -S in -r 10Mb -D 2ms l -t 96.269997 -s 0 -d 18 -S in -r 10Mb -D 2ms l -t 96.322993 -s 8 -d 7 -S out -r 10Mb -D 2ms l -t 96.340341 -s 8 -d 1 -S out -r 10Mb -D 2ms l -t 96.416865 -s 13 -d 11 -S out -r 10Mb -D 2ms n -t 96.454206 -s 4 -x 4.000000 -y 3.787425 -u -0.212075 -v 0.460825 -T 0.461292 l -t 96.490043 -s 7 -d 6 -S out -r 10Mb -D 2ms l -t 96.546591 -s 11 -d 19 -S out -r 10Mb -D 2ms l -t 96.573605 -s 17 -d 6 -S out -r 10Mb -D 2ms l -t 96.625147 -s 16 -d 2 -S out -r 10Mb -D 2ms l -t 96.638591 -s 0 -d 11 -S out -r 10Mb -D 2ms n -t 96.711547 -s 3 -x 2.545101 -y 4.000000 -u 0.008750 -v -0.501154 -T 2.049133 l -t 96.814276 -s 11 -d 18 -S in -r 10Mb -D 2ms l -t 96.835541 -s 0 -d 6 -S in -r 10Mb -D 2ms n -t 96.915498 -s 4 -x 3.902172 -y 4.000000 -u -0.212075 -v -0.460825 -T 3.413535 l -t 96.932154 -s 17 -d 18 -S in -r 10Mb -D 2ms n -t 96.984252 -s 18 -x 3.298070 -y 1.324437 -u 0.498852 -v 0.097016 -T 1.407090 l -t 97.028225 -s 2 -d 13 -S out -r 10Mb -D 2ms l -t 97.059483 -s 0 -d 1 -S out -r 10Mb -D 2ms n -t 97.064484 -s 14 -x 0.000000 -y 3.362784 -u 0.451575 -v -0.174400 -T 0.870971 l -t 97.068505 -s 13 -d 19 -S out -r 10Mb -D 2ms n -t 97.141845 -s 15 -x 0.620339 -y 4.000000 -u 0.321038 -v -0.378470 -T 3.675590 l -t 97.182642 -s 17 -d 0 -S in -r 10Mb -D 2ms l -t 97.366760 -s 15 -d 2 -S in -r 10Mb -D 2ms l -t 97.443001 -s 5 -d 6 -S in -r 10Mb -D 2ms l -t 97.466723 -s 3 -d 2 -S out -r 10Mb -D 2ms l -t 97.503311 -s 11 -d 16 -S in -r 10Mb -D 2ms l -t 97.546970 -s 5 -d 8 -S in -r 10Mb -D 2ms n -t 97.547354 -s 7 -x 4.000000 -y 0.182196 -u -0.498885 -v -0.078303 -T 1.209740 l -t 97.614600 -s 5 -d 9 -S out -r 10Mb -D 2ms l -t 97.637793 -s 18 -d 0 -S out -r 10Mb -D 2ms l -t 97.708065 -s 5 -d 12 -S out -r 10Mb -D 2ms n -t 97.726883 -s 13 -x 2.523472 -y 4.000000 -u -0.236159 -v -0.437859 -T 1.015409 l -t 97.755740 -s 10 -d 9 -S in -r 10Mb -D 2ms l -t 97.808824 -s 18 -d 17 -S out -r 10Mb -D 2ms l -t 97.871214 -s 10 -d 14 -S in -r 10Mb -D 2ms n -t 97.935454 -s 14 -x 0.393308 -y 3.210887 -u 0.277729 -v 0.411984 -T 1.915397 l -t 97.951618 -s 10 -d 12 -S in -r 10Mb -D 2ms n -t 97.963075 -s 19 -x 3.936280 -y 4.000000 -u 0.292111 -v -0.421983 -T 0.136417 n -t 97.969154 -s 9 -x 0.596815 -y 2.061477 -u 0.101588 -v -0.503621 -T 4.093311 l -t 97.982091 -s 10 -d 2 -S out -r 10Mb -D 2ms l -t 97.987378 -s 17 -d 7 -S out -r 10Mb -D 2ms l -t 98.034469 -s 14 -d 2 -S in -r 10Mb -D 2ms l -t 98.059444 -s 14 -d 10 -S out -r 10Mb -D 2ms n -t 98.099492 -s 19 -x 3.976129 -y 3.942434 -u 0.013446 -v -0.498961 -T 1.775310 n -t 98.125238 -s 1 -x 4.000000 -y 2.142351 -u -0.402824 -v 0.275236 -T 1.421953 l -t 98.373012 -s 17 -d 11 -S in -r 10Mb -D 2ms n -t 98.391342 -s 18 -x 4.000000 -y 1.460947 -u -0.498852 -v 0.097016 -T 3.632497 l -t 98.417127 -s 0 -d 6 -S out -r 10Mb -D 2ms l -t 98.477614 -s 16 -d 1 -S in -r 10Mb -D 2ms l -t 98.524881 -s 0 -d 7 -S in -r 10Mb -D 2ms l -t 98.525042 -s 8 -d 0 -S out -r 10Mb -D 2ms l -t 98.526889 -s 16 -d 17 -S in -r 10Mb -D 2ms l -t 98.571181 -s 5 -d 0 -S in -r 10Mb -D 2ms l -t 98.582432 -s 1 -d 4 -S in -r 10Mb -D 2ms l -t 98.590121 -s 4 -d 3 -S in -r 10Mb -D 2ms l -t 98.642791 -s 18 -d 16 -S in -r 10Mb -D 2ms n -t 98.720466 -s 2 -x 1.053633 -y 3.855329 -u -0.514657 -v 0.114374 -T 1.264895 l -t 98.733728 -s 17 -d 5 -S in -r 10Mb -D 2ms n -t 98.742291 -s 13 -x 2.283674 -y 3.555395 -u 0.251088 -v -0.444913 -T 5.062879 n -t 98.757093 -s 7 -x 3.396479 -y 0.087469 -u -0.127968 -v 0.488109 -T 5.004398 n -t 98.760681 -s 3 -x 2.563030 -y 2.973069 -u 0.188027 -v 0.478324 -T 2.146935 l -t 98.814871 -s 17 -d 11 -S out -r 10Mb -D 2ms l -t 98.833720 -s 6 -d 9 -S in -r 10Mb -D 2ms l -t 98.852705 -s 1 -d 11 -S out -r 10Mb -D 2ms n -t 98.934857 -s 6 -x 1.489936 -y 1.122444 -u -0.203550 -v -0.436773 -T 2.569857 n -t 98.960667 -s 8 -x 1.494565 -y 0.213297 -u 0.433448 -v -0.253076 -T 0.842815 n -t 99.084287 -s 5 -x 1.914304 -y 0.774258 -u -0.069223 -v 0.494903 -T 4.904972 l -t 99.091225 -s 12 -d 9 -S out -r 10Mb -D 2ms l -t 99.152318 -s 7 -d 11 -S in -r 10Mb -D 2ms n -t 99.168729 -s 17 -x 2.608113 -y 1.208644 -u 0.331773 -v 0.379108 -T 4.195298 l -t 99.232816 -s 17 -d 18 -S in -r 10Mb -D 2ms l -t 99.237039 -s 8 -d 0 -S in -r 10Mb -D 2ms l -t 99.243522 -s 17 -d 0 -S out -r 10Mb -D 2ms l -t 99.286872 -s 1 -d 19 -S in -r 10Mb -D 2ms l -t 99.333951 -s 5 -d 0 -S out -r 10Mb -D 2ms l -t 99.382621 -s 2 -d 15 -S out -r 10Mb -D 2ms l -t 99.429239 -s 4 -d 13 -S in -r 10Mb -D 2ms n -t 99.547191 -s 1 -x 3.427204 -y 2.533723 -u 0.486901 -v 0.033152 -T 1.176413 l -t 99.588250 -s 10 -d 12 -S out -r 10Mb -D 2ms l -t 99.606825 -s 15 -d 14 -S out -r 10Mb -D 2ms l -t 99.623357 -s 5 -d 8 -S out -r 10Mb -D 2ms l -t 99.676975 -s 17 -d 7 -S in -r 10Mb -D 2ms l -t 99.688457 -s 4 -d 16 -S in -r 10Mb -D 2ms n -t 99.714254 -s 0 -x 2.587402 -y 0.000000 -u -0.046565 -v 0.504059 -T 0.422136 l -t 99.785618 -s 5 -d 17 -S out -r 10Mb -D 2ms n -t 99.803482 -s 8 -x 1.859882 -y 0.000000 -u 0.433448 -v 0.253076 -T 4.278026 l -t 99.804147 -s 7 -d 18 -S in -r 10Mb -D 2ms n -t 99.850851 -s 14 -x 0.925269 -y 4.000000 -u 0.277729 -v -0.411984 -T 3.157804 l -t 99.867903 -s 4 -d 3 -S out -r 10Mb -D 2ms n -t 99.874802 -s 19 -x 4.000000 -y 3.056624 -u -0.013446 -v -0.498961 -T 3.276461 l -t 99.893544 -s 1 -d 18 -S out -r 10Mb -D 2ms l -t 99.909166 -s 11 -d 18 -S out -r 10Mb -D 2ms l -t 99.931974 -s 4 -d 18 -S in -r 10Mb -D 2ms n -t 99.985361 -s 2 -x 0.402645 -y 4.000000 -u -0.514657 -v -0.114374 -T 0.782356 nam-1.15/ex/pktdemo.nam.gz0000664000076400007660000131674707012452756014322 0ustar tomhnsnam‹wT*8pktdemo.nam¤ýKÏuI’‰Íù+b, ~¿ Ô¤'="$@3v©GèV©Ñj¤~½ÌÎÉúÞǾíûìŒÌ"X•ë]ÇÌÝ—›û63ÿ¿ÿñÿóÿËÿø¯Œ™þøÇóÿï?üÛ?ÿÃÿïéÿ¯Z)ÎlÿÍœuµµöö²¯ý§ýGµö9úšmÏ?þñÿ0Ä?þÇý—?þõÿõüëÿö?ÿñýãúßþÓ¿þ¯ø»ùýwûÌæ]fKyZÚîþwË:M^e¼{Êúß-ï¿k?l´œW.³”œ÷çﶺÿ¬µÎ’í§öþjýxaå?—m¿«÷9ó^þWk.®º{7¦5ëÐÿjûüÕÔþ¬½µ<íçÖ’ýoæÙ̳©×TwéÏóÿöÏ¿ù_þȦÿdÆþ§?Òø¿þó?ü7sö?þwÇÿþHÿõùç¿\³ÿ“ù×?ùòòÿýGÉm¶UG›ïðùÅåÏôþ×gRpN¬0ì·þç?þÑþLm¬Ñý'ý#ÿÙó03ÿøÇü£Î?“ylþjŽ3"΄÷_®¹ÇÈï¿Úþ4oÍRß5ý¹R)i\ÿj ó!Lƒòþ£éÏlžîÕÿhú³W›nÓÿfÿsï”˾þÉ'Cœþ7ëŸ5­<ß¿Óþw[ãý3Ýc=çQ¯³…©°â$øçï´õñþCïQí½ZÞtd¬ÿðò?Ú̆>S©³Úÿÿô_ü¿ÿñ¯ÿÓÿñÇ?þç?z.>öå=IþøÇÿësá/è0‹í·÷&B -¥ÕvS¡ý:³ K_YýÁÐQʨyu: +§f–Î)B÷ÿá_4hýâa“ˆ>L’’ÆjƒÿÃúzaÅàìj‹3·,ÚjÂð‹õzaý5®6ISm6>«ˆ¬åßY¡ÖÖÚfµEÖ ÖïÐ ëëH½Ô]Å9\X¿C/¬û‡Õ÷¶f¬ÚÚX ¿³úDüźVí;õ%²°~‡^Xóki¾)ÙœY×ëôÂZ~Xknez‹¬û‡õza­`íi—ÖWÕX[ëwè…µuçÒÒ˜¢˜¶ ÖïÐ +T¢Ù^¼s«¢65¨Äô •h«5[èEÔ¦•x€^X×k¯S¤¥®×•x€^X¡#š¶ÅN"+Tâú;kƒJŒžw®ïIb…J<@/¬6ÿíß¡;•º¼ãIûßÿlmìõŽ'ÍOŽíKò?[´÷ïñ×ÁÿþÿøþíùeÄÌk¯Ýº¸][ÈüˈèňÎìÓfXÍêò‡Ô=@/¬•j)=©\ƒÔ=@/¬ÕM°Ri¢­R÷½°Bt¶mõv¸ÌâBìºè…¢³[Y¶çVq6uHÝôŠÐÄN vnÈY”õ©{€^XIŸmì,°sgSÿ%uÐ ë«É•T[;X¿Cgíé‡Õ´¹Û±YMó‡õzaÍ?¬ÅüTì´*Êz_?¬Ð kë°Ã³~U[7X¿C/¬õ‡µfÛ‰ì„)Φ‘~X ÖÖÕ‡j§¸… ÖïÐ kÿaõ ‹llCÐXëëôÂ:X»í›s-u¬×è…*ÑkË)y\±^ V¨Du´=‹jëëwèï¬*1üVÆâdu6A% V¨Ä(³—“Ê •x€^X±^m§²}yNÕÃP‰è…ëuìÝ×ìK<„O¨ÄôŠõ:m¡O[î*+Tâza?¬«æ=k«¢‡gùa}€^X¡k¬mÿ£Žë„6=@/¬P ¤s*ö“AÛWVL ‹ÖR®SÌôòƒ!0»š¡fj0ÆÕ´¥ŽZ¶¸«O¨Äô÷<¡M{¾Êh]üÁ¿§Z´ÖÖJ©‹ÛÕüµÔ¡—œÁjâ´µ#Þ¬ÖïÐ kkï¦þ»ÍM‹?xW¿˜W¯ÖWÁþ½üàúÚ“mX3A¿ÿ`BKßÕ°ên??øzùÁ¬}Û\¬¸4ûþƒ;X¿C/¬ ¬»–\š<›X¿C/¬ó‡ÕÂ~ÿÚ4T[çëôÂ:À:ú^eQ`Öëwè…u“Õή;Muål²~…^X¡Me¯ºSOâ¸n¨ÄôwÖ•~X-0mÓÂpQýwþa}€^X3Yë*…‹:¼ Y¿B/¬PÄê¥ìŸH¢­¬ß¡VhSÝþ±yNqWßЦè…*ÑrÎÓ?e‹¶B› V(bkï-'‰dÚô½°B%š)ø´£³¸^7´éza…"¶Æl‹î;+´éza…6õ¼{oeˆ×rÚô½°B›z±¸ßþŸh«uAûû;í†Lô‘z6O‰ÛzNP§ì…šhÑe671„·p´ß±ZEßyõRÕà4'èÓöB UÕŽ:kæ¢Z zÀ^h!£Í][ê¢TXpÚïØ -tq,û¯‡|ý™$ê{¡ÿþ©§þ•O=~ÔØ£ ÿÔ3þ|o°Ù?õäügÊ!¯_¶XÐjû`âÞ„ï{±Â7ßÿTOó~'óCû{¡…òͶkZiŠ;ZN¾ì…ÒgqkµÞÄ;©œ!}Øßißúõ‹wöYÆ*bÀíßx~x¿c¯¼¿UŠ çLª›3Äï{å… Yëÿ.ªd¨ßöÊ Õ]½å^fWQ†ü=`¯¼¢e翱â^èßöʋջ-¸³©1Ô]&C°W^è½­„Ræªò¼‚X=`¯¼=Òª£«×[9C­°ÞŒõë×€=%j9C®°W{ o[J«—¹@¯°W{­ßöÞ´R]]<ªçòK¯±W{x=IºÖ­Î«RÀû{µ··Mj‹x\Ï¥‚÷;öÊ›Àû¾š^]¼%Ë¥÷;öÊÛxmrÛÖ]ÕìÕ\úïöÊ[É;,h(EÕÉ2Èû{åàíuíÔ·ª“e‚÷;öÊ;Àkë¯ÙV¦êUYàý޽òb•ì× KM2Ë?9ÆØ+ïþ÷ÈØ3ãÓüÄeéç?W¶Ø¸¼SõKÿÓw:¿ë¿O‚úÿÓÿøcFµ}Ùòvþ“´üˆ½˜Q°,ËÌc÷*G§ò÷€½òòÏŽ(견…¼_±WÞüÃ[«_aì¥n3ò÷€½òBv=ëy ›pª½¿ì•2TÇò¡Ên…ü=`¯¼ 0[ÚEMaÉò÷€½òvòúÝ %ûÁÞIÞ¯Ø+/d¨>휦~ÉÉò÷€½òBî۴ж¥YT{!Ø o…nôšûêIMŒÊ zõ€½Ú»ÉÛz<š~··eò~Å^í…nô¹ÇžU›ôê{å…NŽ4MGFQ÷…½zÀ^y¡£Ïq’[ zõ€½òB'‡/ýœ«zcÛ WØ+/tc&‹l·»^´zõ€½òB'§ý /ÍTÃĽzÀ^y¡s”1ýÐ¤Ú ½zÀ^y¡“s͵g“ zõ€½òB7–»*•¤êU‡^=`/¼ :¹zo#í¦®ß½zÀ^y¡Wk¶5F‡¿{¡WØ+/ôj{jaЃ½Ð«ì•zµKïkNùZ¾C¯°W^èÕ®³{±úÍ¥C¯°W^èÕ6i_;«••¹C¯°W^èÕÞ~ñ0ÕìœÜ¡WØ+ï/½ê¦ºªÅgrÜþ“‰ýˆ½ònðšÀæÙ†<¯6x¿c¯¼ ¼Û³@lAˆöþdc?b/¼? ïýÏœV_i¨Å8ù'û{åMàÉë=äë°QÀû{å­àµ£UCÍ]Ì?™àØ+oùá-¶T‹ UÝøÉÄ^y;x«W®·¡žË~²Á±WÞÞfë¯ô%Û;Àû{å…n”½l_Ü]æàý޽òbýÖÔ“¯UŸôê{åàµtÔ)Ÿ»ôê{å…NV“¹´,üý<¡WØ ï€n¼¿ µ%ŸË&ôê{åÍäí³÷ÒÔýhò~Å^y¡­—š-VõyB¯°WÞJÞ¶úœI½W™¼_±W^èF[³ìÑåu4¡WØ+/tÒ³Önòçä ½zÀ^y±~»ýkÛª®ß ½zÀ^yyoh’ûþëÿ~ÃkØÿãß±ï]p£l:`/¼“¼Ä&ÇÇþ§ý_ë¹|ºI[,–Ÿþè8A_'¨`íJ›ù“ûöUôTäöÙSž@úC;sjå“Söì©UÈ ¨bmý؆Ÿì‰>%áŽÿÁSÐæ€<ÕIkÑ’¹ý ½zŠŠA¨bíøØÉŸÜLæXUõà)ޱ‚§¸èçÈÞPeŠžâš'T±vÿ÷c=?òç'ïbî<ÕÈ ì³§6ýJž3÷ÉjzöÔæL&T±¶ü låO®«´™n°WOq.+xŠ‹~ù&”Ö`\i'ih¹è×2Ͻ[©IÄiA¨âäñ7°\ô;Û Ÿµdžâ"Vðýö)Å›Áï´›û±møÅÝþTUkKÂáâ{ Š‚—mÓõê9qbôð“ Ïƒ[RþXnõž(³óTç2e™P…¶þ ,Wý¶ÏNÙª>†‰¨BÛÿvüüä‘rê³Ö›º®èrÀ>®ƒ’&i[Î5´•´À ´‹´½%?ÃITÒ$+ Š“÷?6'bç´¤^때kìU16]µZ«e¨Á÷ƒ€}¡ŒU?²šCéÓ-‡ˆX¶’¶Ìœ[9Þ®c‘PepÛßÀvþd[Û%SòTÐå€Uj¿ùû<¸<ÏláÐ(UžSt3±m!mn¾mªsj’Papƒ“³í„£nqNÍLZ@ÚFÚn`¾Óš«“ƒ¹À Nî¤õö}#5Wk YU¬¥L•dçEv[þn-ïV°–2U¼£EÏâƒÉõC¨b-eªOo[b€>9´„*´›´½¯=ПàÁÉ\bŸ¼i×H+Ý¥=^i¹+ÐR¥Ê¶Y±Šxøbji€ Nfné¬Ùv‘¼Å±ežf€*´õo`)5vJ}ßú®ÄùH¬0@”šêç8O©«§¸øU¬¥ÔÔÕ½PX=¸±ú-`k)5Þb±V57`ªX‹øÜß¹µˆj‹õ§eáàö€½†&œSþ]Îr^kßöÙËLiõjè¼›œWÀ´€h©5ÍÓ½ŠšW°ƒ±€ ƒ»©5ÍIÄXè°‚µŒˆzMͺ‚X÷°-§TÙÂù[9ËÀV ¥LõmS1ßiÍ•–«X–2eáê´é(ª#³¤T™R”)¿ÅoÍ|·v^`kVçî7Kþj-'2¡ŠµÔóáÏWdµye"íöªŽœSïk„"_k±,`½\ejX45“z­µ+ Ï^®ÌÁvYmÉ×Z¬; XÁZÊÔôjE¾ÖbùWÀ ´”©9r·Y&Sw0PÅÉœRÓ{ÔÞÞÜ_­å2 V°–2åÁyº»¸¿ZKM&T±–2µüòâöæþbí¤`+XK™Z†\w÷Wk9£U¬åÁmyÉûñu¶2G3@ÚÌ`j­5½ºOu2õ‚Øg'gªÔÎË»é¨3yrN+ÐR¥¶ÍÎÖÄo„•™xª89`=_¤ªù5£ø{Ý‚¸pwߥ9ˆc‘jÀ ^¦Líí괕կ¯´”)bZX»Rj9U±¤©2/@•Á¤Í=¥Y5u¬L‰ P…v‘¶ ;©ªeI…®+8y“ÖŸŸ¬â·ÉÊô÷¬-‰´d$'kñÚ$`Ÿ­-)Îb“qŽÃ.Öfˆr€*Ö–€µ¸S~»¸4`kœ§­ƒs4uµ–‚N¨b-g£×6¾1ü}3è¸À^U‚¹Í‚å~wºz™ —Øg/3| ›þ¹æeæÜ¨àe¦ƒ¯aóÑvM1cŽK€*´”©áýõÚ]åÉÕÉÜ6‰œL™ò¤«^n O®ÖrªXK™š-ÛÏÄÀ³.±‚µ”)GÉáHO¬@K™Z©ä½î$WZ­Ä ´\·Ë¿dtN| exA¬@Ë“›…&iî!î- ¨0¥˜ nç.’BÍ©LËØgk™ î7èï}S´–{¡ŠµœÛÛ¢°ÛÎ÷½€€°×Û]zÙŸ>­UÍ©,© XÁË”©Ý¶€jÆH­ÁUÀ ´”)ï¶“zC?Ðr.+ÐŽÍ©0Wòû1ˆ9Ýkïlz!v„¨,+ Pe>»“'˜U$Z>üdœÜ°×¤{ÌÇ,rœCý@R™\°Ï#4­y§šn\YΠ‚—™Óí ÐìL2o°WkÃ+X[H;»-"1ݸ2“(@k+i×L½ÞT6\iiUh¡5¶üÞ2©‘pVpr'mÙv¢_b$Æj¦U¬¤vPCÄXu°‚µ“´¶ã¦&¶O«L× PÅZ„D»¤¶W¹k/yµ–^&V°v“ÖŸrMê÷¶(PÁZætïÒæêSý>›ûl-sº·÷cïw7bk™œ ŠµT©âÑkW·f•¬`-UÊÂu;ò©=+Ó;V ¥JU/•¹»»:™šL¨âdª”Mo ®[&‰¨BK=7è»`ãûî.܃?`¯€\Aþbž½Š»n°Xap)SÕ?MÞÝÄ]½<¨âeÊTófU·WqkYì°ÏÖ2Ü~ðóî&îbí ¬€ Ö2|·i!ÑíUÜÕZ걂µ”©fB»»»ZXU¬­K­é¹fïQ§zŠ»5±‚§¨5½5 ¥Ôö1•E}+Ð2"òçÓÝmÚu€¸ä UœÌðÂTj¬‰h÷û Š‰Ù†]6§²2Ñ2`OQ/úÞkÝÝÄ]=¬ôÙS-ˆò¨ix¤j-÷>b­mÌËÞ£™¾ßÑ_­e0E¨b-½ýÜnû—ø¦VK¸éyÀ^«"8¸cvùL •™à°‚—©5ž¾žo«÷¯´ÔbZj…aé¶xÿ2¸, Pep©5v”Ù»ªµ•õ+XËÓלcÎ)q™z°-ej¥=õÀÊb€h9“Wy—x‹;.3T[~Nõ›4O†s7»9?`¯—Ù<¬^‡üênâlbŸ½ÌÌ콆­VÔDQ&Tñr°v÷™½åªh-e™XÁZÊÔNÙï¥ZK•"T±–2µmš¬9T½`ÁYÀ ÖR¦v/muñ)žÊÊÉU¬¥L™“Ö¨òÑ:Ä»Ä ÖR¦ÌSž ­™ Šµ¿djüé·àËâÑú§$é7¨@ûsƒîX›­¨ ÁêO½ÙoØg'ÿ$f;´{ñ£zÄý)Iú ªX[H»ÊÎKMºG„þV°¶’Öb“<Ä®®õ'{ð7¨b-Ç'§±¼²H;S´ŸäjÇ–™wU7ëw„þ:aOqps¯¶ñ'±¾•_7=Økª2W_îÕLµ«+Bôß°‚¹‹´cY°\5­i?Ec¿A•‰ÁI•gß“í¾Ç&5ÑË_±×P“æ®d'£›TØ«¹a.*˜[)6yç¶Š¸[·Di%T¡¥Ø”RÚ¸-ǽÎ)®bŸçT¥Ø/ßojí¿aÚFÚÑý} íÞ¤%*+¡Š“©Se÷š·š8Õ~rà ÖÐzƒ,;kj·í§Œê7¨b-g2x A‘–kžP…–2UÛlvؼÁ^ÌD¬àdŠrµÃæªjâTËœSÄ>Ó6†DvJ°óæMŠ‹“3·B'7ª”ÅeÓâ8y&sp‰¬¥JÙ*nÝ¢GÑZj2¡ŠµT©6†ß «Öª±‚µT)ïm[‰Ö.±-Uª§Ýs¿‰ˆ®NæN@¨âdªT/Åë¾Äð"S¥Uh©RÝŸ§˜w¡ÉÕÉœSÄ N?Ùâ°Å›¸ïQMÛˆj¾c¯_ú¨}•¹²Z#1bŸÍ ´Þ-g´»ÐäB[<+ÐR¦FñBQ±?I+PaNõò7°Ôšá·Zã&ª¹þd†„*´Ôš1æôrOu€‚¹À D­sRìmO_„*ÖRküAìÖoÌ®´\¸„*´ÔšYJ-U-‹m•¡ ±‚“™B¥’o¢š‹µ•SŠPÅZFDÓv ½³¼æûlí Ô˜6–=¶¸æ+õœPÁÚA½˜«rÞ|¿ºb ý;öZPÁßì_&-xþ x©5ý¥ÙÔX­®ÀûƒFˆZã™i³ˆ°Zå¢'T!jÍòf²Iý€ÕG—XÁZjÍZÕ›ZŠŸ€[ãò#V ¥Ö¬=ýËŒ¨¬•û<¡Š“©5Þ¹Æf£l-—XÁZjÍ9o9í£5j ±Ï´“Zcs±ì,VT´Æs¡‚“'šü¾CßjeCˆMV°¶6Ï<†z5Õ+ Šµ•´mYx!_MõJ^`ki-îlwï\­mdT±¶“vg;@Þµ ¾Zx¬…JywÔnçEí³YkˆLT±v’¶V;2ªÒ·>È ¬`í"´y9 z!}ß4'N_Øëò¦¹£¬¹ÕZÂÖ'3°Ïæ®DÚ9ü• q/hÁS€ ƒ»2±Û«Ã!qßϸ«ÐË_±×<> FIþ¸…Ú§±uì}+x9Ж4¼Û¢æåžÈ ¨âeê”-¾á¥ˆ¢µ ZV°–:eÜY–ا±õÀ ¨b-uªÌæç Q•;uŠP…–:USo¶‰©{Ð /±‚“i½“Äßrk —PÅZ.‚Z½€§òïò¸©5Õ"¤Õ§ªè#üf`Ÿ=µÕáõ€]ôÔàâ#TðÔfHT·÷ì•ϓˀXÁZJMó®…[|f¢ Æ„*ÖRj<…ÝNªê]éd$F¬`-¥Æ6ÃRÕóÉÅG¬@K©iÞÅv‰u_m04!Tq2¥¦Û„ÜC­ûj“1±‚µ”š^Þ©*ªµPÅZFD½úãê™bP¥}¦í‰*ÕM´<B£” BZªTŸ^j#îѱcÛUê}ƒ^ï ó®´Ô bZªÔ(5Ù^ü4y^$Tq2UÊdfŽv“bk ]©¶–pðõÌ×sÅ™ï;öšÍù¸L—G–t¦†¬`.µf•éïX‰Û×â>B¨2¸ÔšUWEìÁÙã0BZ®Üe¿ÂŸ˜ðØóäà~Å^ô\¹kZ0•îr7®ƒK#V\†DkÕ]—ØÔ¡-†„*^¦µ;Ws»ZñÒ˜°ÏÖ2¹:o$©Þ´„½ZK"T°–ÉÕïÜ[om¢ÑnFD„*´ ‰¼ÞyËvu¦ ¬àd†D{Ùî¥>ÚÕ6.¡Šµ©âéÆS~<«3w7`k;iËû5ª3ôjm'+ Šµƒ´}¾Ó®Tky¬„Î>kÁ ê»:zVÁ¿hØ«:Nš»S«é®úÕÜàf`s!SÅû>•uS¶|\ì#* nM¤­ÞQoËÖ.òûl-Ó²Kn¦õ¦3×ÕÚÀ ¨bm!mïÞ—(I´™þªÐVÒÚÊ[ýîý‘«“7yœL™ò”uwÖ¼Z[É ¨b-eÊo…í°©Z›©ŽÄ ÖR¦ìäåß&Å»ÃÎDå€h)¶ôF+b\g¢€*N^¤]Ã],IïL¹P…Öfã¿ý;¶¦ù«»Ïý£ôüçÊͳoþñß|³úsŒå_3ÿñŸÿøGöFÙÿÜùãÕÛ -¤þã¥üY߆ýXãµÛ÷çÐëØÑ‹Ä>“Jm~l@Á÷ÓUËØb¾c¯)ÛT¿j§áПýÁÜ~óV0—êW‡¿ÏsÓêè2grð Âœaº·¸k.x±–i£+XKõkvüµ€Vµ–ZO¨b-Õ¯å±}r‹´ –Uh©~­M#YýJ0XÁÉÔ’fÔÞÄ4½Þ¤}Ç^k¤8§Úœf¿zóÛKp3°‚¹ Òš÷R¼Kͽ.ÃB…Áeºw±½y6õM†Îz‰Uh)SÄìÒ‡xçÕ™N°ÏNfJ•¡²?$&¦`zâþÏœú޽ùrKí6'Җϰ5¸XÁ\êTß~m•Õ•[ƒ«€h©S#ͼ“xÕÖ™ Êœ¢Nº¶7;R­ ¼À Ö2J6;ÇP·¾ÂØPÅZN©á%Ø·^­ ¼À ÖR¦¼+|+âÇÇxê&T°–©âe¦1šZéÔY   -ejV¿ËQ;õu¦]쳓£); Z¬"¾ØY‚ ŠµÜù¼LÃgêÎWƒ—¬¥Jù›’~Q'ZËý–PÅÚþ7°”š•¼A x«ß™  -WÐ*Ù¶TÀ}?T †Dß±× ®¾eSÙX½Éab|À ƒZ³ìp9ÇM’ìÕËÁS€ ^žÁÚÕ,ŠS›ÿtfØì³µL2*Û_µK[ýd3‘ƒù€½Ö rÿ2l®SMë¬XÁ\ŠgÖ.֜dz5¡ÊàRl¼›¢§#‹ÖöÀ ¬`-C¢wóº|Srµ–¡ŠµÔ)(«Ý:3ãT¡Å”ª)ysܻě«“± Vpò"mKÙ_žViih7i»7#;;…3n€ Nfªx5?%;ª2ŔӀ}¶v…ñÙ¥åÝÕ‹-¦Š?`¯µ?ÁË{z¬óâ»zy‡ŸüU¼ ™ªÙ~s¿[óZ6T¡m¤­ÛS¹Ô[Kfɬ0¸´,çv×DäJˉA¬@;H»ZÎEl(ÐYH Š“)S%û÷µÿÈ;V~°‚µ”©bK~6ù/ƒÖ€h¹€Šg Ý%F]XœÌ,ójÇ>‰Äu4ªÐfÒ.‹K¶úƒ…%ªÐ–€m»5ô™øÄm\0=`¯A®-zÛÏÔ|ïÎè€}žSL3¯6D©7±:¿zŠPÅËÁZ;@ÚReŠ“ŠXÁZÊ”'Å×$>qÚ™Ë Šµ”©–,¶_²^0:`k#´RÇb LJ©ŒÊ»ìµ´¤Ð\‹ÅöíkæWséfbÍÌ3¯Íó¢¶Ø°¨3½=@Ÿw0ϼ¶^ýšU¼üà1@ÚàäUÇLwïE]L½ Vp2£)ïc:ÖMÇÕZn¸„*ÖR¦¼ ´ 5ỳP#`k¹mvœÄί¡òðøÿ¢a¯)ÐÜÞriML]ë3üd@/Oõä%¨b_БÍýн '•­ŠåÝÄÑejoÀ £Ëxʇ'yt&Òr2ûLË$õê1vª7Ÿƒ®ƒKE'T\æT[És8Uk©ÊÄ Ör*Ù–?1§Òr>+ÐrJMoÕ²Ôö?}sJ+ÐR§<ƶÍP•GîA„*cËpj–÷å½ׄÛBZ†SÞy¿è©*;ð+8™áÔÜ>Õ‡>bxO¬@ËSŸa5ÝõIº:™¢L¨âdªÔª%Ù®)[x}¶–¹uÙInÏ¥n}éOØk ®wg·¨êëV0—ób-çtбò(<ö}Ç^«HÃèî:z»kMó;v0[<`s©SÛÓ˜n3?®´t±-uÊ{ó㛸„³*,!&©×Ýz³?DZ*´Ô©m»Y+êgQÖÀ¨BKÚc·6ÄFŒÕYªÐr&ï½Wiª*x}žRü²ÙR.½”|^Wk1¥T°–_éÿ2¶ð'[´]ìŽôªÐVÒö^R½ëçv I^`…j¤]Í&sV¥&/+ÐBjZöRš¤Æƒß+ÐrNå’zéU,LñDÃ_ûÈöZŒÆe‹­ÅÊ×Á«UæÔ"mÝþ¼£&èƒUªÐnb‡wDÄOþœ´D/Å^¿–gš;¶7-—çr˜À>OªH»ü³ÁMÿÇ«—ÃTTð2SÂ[É=•®–‚f¢¬`-uª“Kµno¤À ¨b-uªXøè+A£e|€*´Ô) XSjj‚Ú`mÀ N¤]ÞmVìí4˜ Šµ‰ZÍu¬¤ÖÛf¬`-eª–í}¼Å)Å· T±v“ÖNc½ßu;ºZËžØgk™ÞêìÍþº_ V¨`-ó>,L^v,PÓýGG^Áözb䜲àÄæ†Úº0µ4`/S¦l„JnêíaŒ‰h9Bö“×â0^îðòwì5gŸK¨µµs3ZŸÜPeRQ§šPò¸IÇ»ÒrªÐ†9e'ú}[Gz\ê#±ÂàÒÉ6+Llîž0»ÒR¨ˆh©SÝc„.Þl…k¢œÌ”ðÖýÚr·m^­åàûl-S›Ÿü™{q&ó–(@k‰µ Û/³Õ˜uà†é{ý\Î9e¹m[¶*!Î&Vð2Ã) -X›ÜÖ`¨âe†S¦ÑÃßø­ma„€¬¥L™í3e±Ý` I€*ÖR¦ÆþìaÑhY”  m˜Rkö´ÄýQÃØªÐR¦üEe_êØ’—Øç±e6¹?S•l„ÔÄlò€h)SÓâСvë5°*8™Ç½›bm]½L† XÁZFSËÎ1kkÉñÊ…PÅZª”÷"-I>Ð3)5`k©R«íÝ’4kù:B€*ÖR¥,økþè¼hmˆî‰¬¥JYô硘öur°ö$@k"ìd« â‚é{¤ÌÆãØë%Õqû+~ù®CÓÕËœËÄ>{™Ùämw/o¸ÛG®´\¸Ä ´”©m1ýõsØyÜ`, Âà2C¦í9vb»£Ñ¼T¡å|ÜÛ961;txÅ¿hØkº?ä±§4]ZÕ›f“¬0¸´‰Õ"æKŽXU¼Pjùñ`²rÀ>Z;™Þ«®åîž!z X–RcÛ@nw÷'³+@Ÿ<™ÞëZ~«¬Z»8“‰¬¥ÔÔmAë]߀«µœÈ„*ÖÛüF¹!gøk$æ«ågûú޽f“Óˆݥȃ;âOþUÌ¥L™¾µ¢>U:XA  -ã‹Vk^Õ//zù+öšÉÇI埿ÊÝ ìWssøÉ?PÅ\ê”­ùœ¦úÔv8ìóbFxos®ÔåÁ ¬€ Ö2#¼Ûm$Ë#ÓñV°–+¨{iQRW‹T±–SÊTqÈ{“•V°–!Q_s´¢¾U?؆8`ZžÜú^»î)žÜX/ Š“)SþŸ­{1d!G€*´üÉ£ÔlaÑÏÉíëYffÊÔwì5-.˜Ûê(ùîKÅup9—‰—2e‡¯l x5Ìtÿ¼Ì®åÝÎiõáÏÁ\Ë€}¶–]Ë»W{7±Wã`Þ}€*ÖR¦L´,DøÕÐô‰–Ó‘P…–2åo“Ì®¾%1Ø‘>`'S¦¦)ú¬b{“ÁéU¬¥LM‹æÛ0Åû BZ®ÛéÏ,ªuÀƒ$ªÐòзÒö§…D¹˜ÌºXalyè[þâaÂÂT±–*µü õ­æñ±#@Z&„Û6ÝÖ(b—„ÁìêUh©RköÒ’úq2žeˆ}[æ’÷µF­jgøÉ¼ßU¬¥J피_©¶ÏOV­¨BK•Ú5µ¼ÕX“ µVp2UjêݹĻÃx‚"V ¥Jíé÷K7mR¯NfäH¨âäð‹WÞ…­…¾Ÿù*ƒ©ïØk0E™ÚË)âTfn€*æB¦Fz¿m¢6Þ˜Ì7ØçÁm‰´ÕN‹[åÉܬe*ù0/yJ¸ÕL憨B[HÛ{ZC<óMc¨B[I;†éMÕöù™ÃЪÐ6ÒzWJ¹ßÇdÉKÀ S 25röœR1bl¥ ŠµƒX??eµíál(yyÀ^p³IœÕ—YÝ+xy‘¶7cX”)&¶¨âåýßeBøÈÃo»yhçú“iUh©5yTŠÚ©qæ0©€} vmó†·m~bÕÉáØk.9Í-9w;njG¨É”áU¼L±)~­<Õ<ôpo°‚—)6ŦöÊw!ú…–IÃ+Ð"&5O˜T=³wV ¤5Áw†^Ç–û¡ÊØRkj3¥JwIšWk)qÄ ÖRYýìåÔDk¹n ¬e>ø»ƒ»?©Z¼ ì³µüæ6궤-z1Þ¨[yÀ^“«9§ì4R÷–£V~¬`.c"ïö±äÖ®“%X+ÐR¦lñ6f≑݂T™S”©¶ý™¹»Ç¯ÖrË%V°–2Õ“'Ô‰o^O¦ ¨b-ǧ—Ú+!¾o}l/þ€½¦ÂråÚÝk½¡‹—™ˆ°‚—9@}xðˆr™ï+w&šû{Ý鹄ú0UêëÆ“¥_ûl.3Â->7ájê&ÄœÇ&¿x/ñ׺Tk¹ +XK'ì}UÔ#cˆ U¬¥Nù|óîݵ«µŒï‰¬¥Ny`2ºøßdo×U¬¥NÝs+wßú®ÖRlˆ¬åÖ÷~Ñ#‰-Ð&3¤T±–á”gV·*6d™ÌP…–á”-E;m«o¤NV`쳓™>ÌvﮆS¬2X–*5-,IE¬µž= ¨àd¦•Že§Å%¿[=Yø°‚µT©ea¶ÙŸ‹µ!î$T±–*µ,Lè·}`®ÖR“‰¬¥J-3¾×›;ô«µPÅZªÔNÞ&Uí¥>Yø°‚µT) ÿZYêGŽXU¬¥Jm/CêàxG¬`-Uj¯–×VÊÆË)bŸiÙ¸fìÝךj¤<‚±€ Nf:øôW‘GWû®M–6¬`m!m]v€~Án€*ÖVb{ëþtƒxÄÝ([yÀ^ëŠzàݶ{ãZùûyd÷Àû {Ma¯tó̽¥»gÙ®£›ù›Fwö½‘¨cg`T]èÔÌ~Ïsû>ÚÕZUÀ Ö.ÒÚ"ÈwÙïWk9 U¬Ý¤­óýªHËéHè3íb.ù̶_ïÛ‹ð«“y}tòb.¹…¶õ£(óøT±–:å_qwWo™Ç  -ç…Eº«ó5à¯:µuê;öªS4·”²çmpr\–׬0¸´µ™ÚÜ$Ñ^½L½ Tñ2eª´e Al€1W @ZÊT±xÃvMÙÉ\¹Ä N¦LùãAµËG\Þ§¬@K™ªÞ‹¬Šýr&³Tp2Sɧפç¬~M–3ì³µL%ŸuÌ÷WzÑÚàc@kÃ/^Þ‰l‰å +ãSßöšýÞhîÞvŒ’¿l²z+`/“¶eðü&ðêeF„*^¦L5 $«u±“Õ[+XK™jÚ{è©ÒrÇ%V ¥Lù…K+â‹8“ãTq2eªûãu·ù&Wk9¸Ä ÖF¨u[bæü*¸BÀ^S•©SþphÔË)«ì³¹üF?{ßYîÓ3w`TÜòw°<Ëô™ì8‚OŒß2¡ -µf¤´W¹K2»%ŽXa€¨5¶ñí1ÔÏ'k’V ¥ÖøC-ÙœLPÅÉÔšÑGSìz³˜F  -µÆç§ZµØO6@Z†DÞ·-µ»Ý\ÁËÀ>-Â-Ʊh9ßu ¸Ð²ð+`ZJÍôä‹}Ó2ûêdK¨àd&„Û0e¿ÂP­etO¬`-UÊ_Ow¹5Wk¹ªXK•²ø(›nÉcËÀ“XÁZªÔj½{z¨JKs‰h©RË}TñÅåÅ´ÒUœL•ZÞ/gÞ¤°_i¹ªÐr, Ñ-|üqÔ÷ྡྷÓöšÔMu\6)æÝàÕ\î@„ æ2‡ÂÂõb'îó+‡™ ¨Bˉ±Óð›V1{w5d?=`¯ý¸l/»”?Š.V®ìóbFø4Uݵ«É ‹%X+ÐR§¶m›µˆ›1B'T\êÔ¶×qó¥âB[¼T¡…NY ’j¶¨:{PÀ Nž¤mÉ„»†9WÚAZ`ÚEZOÝmâ©|1k1@'oÒÚákÞ¾›|µv’Øgk™Kn[wY&èbìX‚¬e.ùÊÉ_1¸ÉT¾Ð2Á,@Ú°ËŽ›¸èù~>?Sù»¹#ÓܯØkôȹ\F¯K-?^5Ì)@…Ñå›Ëv¾OÅk—EZÊ2¡ -Â)[‹ÙŽêã„áR,`…Á¥NUÛ­ÛT/Kë"V åØÖ™l!ÜõU¾Ò6Ò+ÐR§ª¹ª,1ëjµ`, ÊØR§Zîà«Q V°–zÑl2¦*¾¸˜ë Šµ §šelC“­¥Lûl-›‹/,¦£za}BÀ ´ §Þq§k­FËbµ€h©R½ÚÚS_¾[ì- ÂØ2•ÜvýâÉÖrN+XK•êÓ_›˜-æë¨bmØf‹Oý¤3ñhùöšå¼¼li7Ùïs™Q Š¹”©‘-+²L1…=`…Á¥L /…²8A¥åè+ÐR¦Æ0=¯76¯NæL&Tp2sÉ—'´ŽÛ~kY¾°ÏÖ2—|ùžÙ—ø’Õbêa€*ÖR¦É±˜þ€½Ö'ÌÀ;ÇZ]ÍÛ#ð~Ã^ó9ºþtɼ-V»¸™yè+¸™b³»¹jÞ¼LsËPe.Slö˜ÙdYÜ6™z  m˜`ôŠ+À¯ñîN‰ƒû{Ü`îžÝ‚eu»÷ÊÄ>îfFø~?7n#¸zË/@Ÿ½¼™¾ýö¢4ù5›+X[IëOÌ»#ý•v‘X¶‘Ö߸½+ñ¹:9°ª81ÑÎþ8µýhÑZ>|°‚µƒ´Å{ZÞœq¯Ön²ªX;IÛ=¹ZÞ„XN°‚µ‹´3•Û—u/Ö2ë>@kqr³CÍŒªörYÌCØgk™¾Knµ&±)Øb_€ Ö2ßd{¬‰Ü\|ÝqwFZÁöš ÌmÝFûî2ûêå~óVð2eª Åú?O2k1@/S¦Šm K®[Y¬Á XÁZÊ”©¹­ 5U…)fªXK™ª6ûR;ׄK±€¬¥LÕf‘ØŸ¯ ñn€*ÖR¦ê;MLýLÈ̶Uh)SÕÛÂÊùƒk^`ŸÌÞâÞÍÈb{1ë~36@k™n1ö»DÛÍD•UhLù{çž!:™õu+8™*ÕzϹí\°Ù¢8@k©RퟹÊ"-Å‘P…–*Õ<_«Ýýä«“L+89üdÛºr‚J}?Ž´Ã|À^óJin/}Ï)IbY_À æR¦ÌOivñŠv3Í9@•Áå^Ý›O <4ñ=¾¨8ô=`¯^æ\îÃ"ö"§¶±®/`Ÿ½ÌdrÓró”Ú0g3(@/óSßî»ÙÁ j^®ôòWì5?^9ÛÂ3sXO°‚—­¿”¤ž 6ʨâe®\Ó¸æ=Uk¹†ˆ¬e85–C¾€çoÀ ´ §f²°‰/Ml&]¨âdê”éêö·ÇEZÎ(BZ†S³U‹ÅÔçË öÙÉL&ßÓ"ÀQÄŽ¿»V@kùÊöÛ83*—¿ï}L&À^3!‚¹Ë›‚Éé ;üf`/3žZ)ÙÜ¿nf!¨âeÊÔÊ¥ø'!‘–Á ¡ -eÊ{üÜ¿<~u27b'S¦ìÔj‰œ±ÏÚ¼€h)Së“^£}†Ú%°ª89`÷»a°˜¶¸²4°×:<‘øWŽ9Õæ á>`Ÿ½ÌlòmŽëS-ÛÌü PÁËÌ&÷ÆQóª_Ú7«@V°68y½ÛIˆÁãfáeÀ ´¿djþ™R²A>öýd?ýUœÜHë¯Ë$5TÞ? ¿ak;i[Ÿi‰7öO&ìoPÅÚAZ?Étõm§ýSùV°v’Öü¶ªXоkð1 Šµ ´¹x.„št…«áß°‚µ›´þ¢ü;×ìŸ,¤ß ‚µãï`3ò»µ&Ï–k¢ ÿä*ÿU¼L­ÉË©‡ŠÆEO¨BK­)Ùû ¨EŒ;“—Xap©5¥ØvVĬݸè U¬¥ÖïþÕpÿTrü†¬¥Ö;ŸÌª€;SY‰h©555›bÅÙîÔ B'ÿ|Àrlîk¶u¼ÒrͪÐR¦j[­Ë=~v¡ ûì䟄p‡Î÷$^ôìÌV ¥Jµ´ü-+ñ#Ç.ebZª”7I5?‰ÛW§8ªŒ-Uªuï«~%Ü?ª¿ak©R¦m}«éï»V@k©RmZ¼ÚÄ7¿v§8ªÐ®€µß<‘ û}Ãîwìõ£5n·Ûf-~åÀ%úoØçÁ])@×ò·ƒÄ›ž•aîwì5§‡+×tÆdúæáëèkFwQ§z›½Éù’¸Dÿ +x9Xk»fkjt@Bk©Sž[ӦإxF5„*´Ô©a*WºÚÌeW*±‚“ù“G™sò­–ï+wMLåïØkŒQ½ Píá¾+Õ†XÁ\†Sû§*~JPepƒµÓ‹åۀʕKì³µ›áÔðj¦\Õ©X¬ÝTåé¹M½ž\¸„*´”©™-S_#Ø“¡ -ej–V·ÚUoOFS„*´”©érå´ð¥â7¬0¥(SsÙNRÔþü»sh)S+y lAßejS¦¾c¯·»4wåéïB©[_£*+˜K™ZeûÍ£x¢ŸÁS€*sŠ2µº…WIí¥Ž»ûß°Öæ”¨SkzXts«|17„b„>›k¼*[mÝf^ìí\CÄ*öR©¶7_»+«½ÚK¥"T²—ReË±Ž¤vnÛ‹—XÅ^jÕövs·/T_y9Ÿ‰Ux¹zmö×ÖU?Z@%?ãðçÖÏÖo®.¯¼XF*ñNòZ`TÊýˆUü°ÃÖó?¾ž‡ ŒóßøšsíO yä½vÀ çDÞÝËÚjMý™¼À*¼¬lQ¾ wíЮ¼XÀ«ðòÚ>æÙÿÚ„Þt3¡Ê„æ…zÎÃbý)o¿£“XÅÞFÞí=Ôr…=&yUx!X¹Ø•uÓ;øêgšK¨äçAp6Ýj‰`ö6f? ø;øz£±ip]#éˆ&g±Š£©Xx›æàÆ÷É`*ÖwðõNž+©L¿È¼ ù¯S9ˆ .T¬²,\™bÕBˆ½T™Y…Šež£©%¾{rJ«Ø[ˆõGvØñaK*øø¾~Φ£k™ï®)¢£WøÍ?PÉÑ”,“Ù\oÛ&_MÉ"Vq4%«.²Cm‚®VáåÖïùµE-Ûûœ7^'¬ähY­Ö¼§|ç¼8+‰U ^äžF¦&)펟X…—í­ï¼ùÊËL¬À[¹üIæ&?^½n¯Vá¥bÙ™Ý~²˜mþ9ؽNXebUn }ÌUŠlðæÖ@¬b0ƒ¬î¯«éõŸ“Ýë„• ¦dõíÝ¥nšfˆ9³ˆ•ˆ©Y£äa®zîßbbOS³, -žL­L­$V2˜?šP-Wwú°~_?²Q,‡?‚=tOWþh`OS´ÆœuêS+sw Vñ43­¼Fº¦²û‡À²áÛàøzSɹ5Óêý/Ìé~ôVðt£jùG‘¦¾û9ξNXÉÓ”-§ µgáÞ܈U ¦jM6a«ûáçÆñu+ÄT-ÿ³‹x|®þ^'°BÌ©µJ÷Keí ÇçæàuÂJCLõðþƒcª±åçîu+3ÖZ~³›?/(HÄ[‚bê–÷dië¦]ÜÁÕ\ÅÄ*®îŒ¶L¶{jÉçšæu w†[!®RÅRƒÏuÉë„•,¦pÙy'—!ö úíú€X‰˜Âeßj¿AŽñ¯V"nw&¯X±x‘xxI—únàçáu+Ä›ÄÛ;{ªÝ¾>gê× ,(Wñ õ6ļÂÏåÅë„UƘÉgÅ«ÉzºÑùñ 1°1gfö†{ ‰×Ñ<óÛÀ×o¼…›³ÊT¡~Ž·¯XãFâaç½.æ|îM^'¬äêNâéýá›zËÄÀ•ˆ©\&yþ¼øåãs°~ÀŠ«©\žÞkMçk"/°’ÅT®Ò¼§ã]#ɃÅ\È+S¹Š?åÔÔ‹µx²`˜Ùî~_“G¾) 8¸š{±Š«ù!¡Tÿ!L<f€|_„®öR¢ºõ(“GëV\]IÜß’++ksX!¦rÕQKÞ7Kñ0ÆXiŒ©\~…a.“‰¹;+S¹êZ­Œ›#I¬DÌ¥ØR]u.ùêeâ’ë| o¹Ž[^#Ý–ž&WøÕ+“‹Ë©µåýÉÄ¬Ó `x‹Ç{gS•«1 VãŘ«m;wµ­ÑçÄ÷:‹út¿ªêj‰ÐçÄ÷:b*—4ý-õ&“ —+¹:‚רg܇(sá´ø¾~¼áÛO¶I"Ö°|îÈ^'¬d1•«ÏêéÇrÒƒ»VƘ1×°0ÊvhùìĺVˆsìo[‰mö>·‚¯Vr5•k¿Ü‹,>—s¯V!fJ¼o.ÛŸjS]ÍÔ­\ͤø2fºïP{°˜Û"±’ÅT®±ÌYw‡ú+q+S¹fnÙ–¢|„ g\‚W3æšå‹|^Š‹9«‰•,¦úL‹_òªrÕO«õGð5ç,¸Ú~t]zx;¯Xq5•kNÛéúVµš§+¹šÊµRÞ¹ê×M¬Ó `Åb*×r`’•‹Ex+Xœ™XTL¼ÁÐ3×5`%b*×êv²–+þœê_'ð³«3ÓäË»®-ö5øÜ½NXÉb.§ò㮟ÝÕâp¸&X±˜¿z{ÄÊga¾ HNŒ¹¾ƒ¯™XœÕ»ÚÔÜjåÇç¨ù:‹síf‡)>Ýø¹ªz°ÒS¹ö­45•úsÆ}ÀŠÅT.Oâ(åæ=€ƒÅb%‹1Æ%&STæÚ¬Bœ#8çóúý$‘3r"À‡O±Ád; x y'6À 3Í×ãáàÕiÍbÄ€•|]IlÚ3§~†Y™Ì+7/¯wKÖ>—d¯V²¸¼ûœŸa43ή¯àë9uÒâmÿ÷ºyGü`ñ?ú+YLâl:ÐÇ]BöaŒék‚•1^$î{Õ­¾/ð9]¿N`…˜ëØvªÚDûsWõ:aW3m¾ Q-pÒ-æ ,X̼ùZjÞU%fÍM+Ä…Øá­t’,ÖLœ>Sºìxíµºò´Þñgÿ€“)]ÅVâTûàî_'¬4»pG_«Åêw­Õs› X±x¸ø ¥Øgés!ù:a%‹)]µ§QÓÝ7уÅTz‚‹)]uYÜTÕî“ŸÃæëVˆ)]Í´{ßVÏ\ˆ3 X æW‰Ú,^Ûê‹´Ÿ É× «Œ1èk«cï)>ºó¹|°1ƒ®Öüqù2‚ ô+S¹šMs©½[>Çë× ¬Œ1•ˤւŻ^kb.d‚b*W/&>[¾Td¶qÀJ®fÑm‚¬‚,’‡h¯¢Rñ|ÈC£tõžì§¨VŸÓæëV|Mé²hmÕ*¶ûÜϽNXÉ×”.ogT§øÜçšìuÂ*ÄÒ5RÛ¹ý…iMf‚W³1Š·5!À­âÃìjHŒx_Ò9¹F6`Q×SfÑQÀJ®¦t ob!— þv°'Xq5¥kôw²²x®ÉV²˜Ò5f2õ)â·ëÌœò€•ˆt•Ç®MÜž2«V"æäšvŠ›I.ÈÌí`eŒ©\³ $²>¹í¬S¹æÌÓXdbj&Á1Óèë´#nmêW¾ÌR‰€UƘiôþ×¶ƒœìjf•°b1ƒ.¿ÝýîÙé1ǘ`…˜ÊåUþŽŸêj ±’«©\¶ʾë;p æ:&V"Þšv8šwÞt}²¹wJÉð˃ÌõD°2È”®í/¹r 3G2€â`±?^x—×ydF ÄJƒLéÚs›zìÃë,f}Ý6NEþÚ–Kð4°ŠÅÌ£o©¤‘ÆÝ C‹±=°bq!q-5UñÕûxM°’ŕ쥕ÕÌñÀŠÅÄÞ®ÓŸ­-näV²AWóO}¨hÎ!¯X±x¬·É–“BóÀyñ|Hìä´¶-¶ÙS3KøÕÀJ¾^$î^!¦>Íþ9z½N`Åכģû j€Ë*€U,žáG¯U-|IêÆ83ù+øÞÀ•œ·7 ¼Ëè8øšÚE°àköŽoÅo Õ‘Ÿ+É× +ùš/7My®Ä¬ X‰˜ÚUl~¬[Å=¸º“`ÅÕÔ®bÇMÏÜQ-¦h+Yäv“÷Lûö$r0™¡5ÁÏ&&Ó·•æÞõ¦QßavqŒ‰fWa2}[¶¹ï»2±1ã[b%bJ×j;M¹ìo‚WSºVßö£å=ð+YLéòªÚÙov˜+1+5V"æÄÜÉÂö÷ZO¼ìú>!Òd‹Œíˆ­ßá2í8€•AæB¶³Àn[íþ’Yc°’¯um[eÞ]¢,¦h,XÌÞóÍDÈz ]fJj+Ä”.b[¯ÙÌ# ¬âj&Ó{Ÿ{õùˆOú:‹+‰{îãöRò@\I °BÜH<ünÞ|:¸zXÉÕÄÛß$Ò?#3±+€‹uuÏ[jéæ\°“:`%‹'‰ëîy%y{bzU+/Ï4S–?‰æü°B¼I¼ìg/µAGžXÅÕL¦ï6[¦Ç©ÄÄÀJÄ9€×»ü@¼)i]àC. 4³[`°R»yÜü`2'±’É”.o‹¸ŠÓf†°0»˜LoJkRßåH °«s+Ä”®²¼„ü¦ßçÕÕ¬ XÉÕܲm¶MÔ=D]Q×ø—NѬù]¢¦Þu…`1€_S»jk­Ü6ú:S® Vˆ©]Õû§› µÃ S»ˆU™Ùô½®iAŒÜ¶äÀ °`1³é»ÉíÜw½cs+Y̨ëSºdµæ½sÀJÄ”®Öì4ä¬Á’3ÀŠ«)]m¶ÖwÕǘjM°B~´ße°ØëAA*®éÀ‡{r÷ÖSEÎÞ+L `Åd†]W$ÔÙEW+Í.J—ÍoÓ3 X±˜ÒÕMÒm'ì1W2Á1³éý+°E­úB^äVq53`úÈ^Ö«>îôÛ®J°b1gõðo8EÎQ`!PÀJSº†·ØrÃòÂìˆV,¦t鉴}>j¼NXÉbF]c-;oª‡dÖó¬DÌØgìíÏ­¨§˜æ°1•kúë}é.,?Œ1}M°2ÆT.Oˆ/KížYÁ°’ÅT. OkÍ7: f°G¬BÌlún;›÷Ð]MÉ$Xp5³éûÊÝ„þ.±â@L_¬S¹–Dl†ˆZ]XH°’«©\v¦÷ïò¶Ø3ÀŠÅT®5– ŸZùTX°’ÅTŸµóȼ'{¸`6ýø|½·©ž|­X˜4ÀН)]ÛV¢÷ß”‰é/‚bJ×nÞCW-ö*,} Xi)?{T¿‡U;²•/ŒàÃÍ÷§=› ÕÝÃÔ_sƒ"Xð5ÓéGJc¬¿Ò3“-€âBb‹×¦¿V­ 2+ Vd&áz?Yû÷È…O¬DÜHÜ·w¼÷'惰âêNbO4Kì úV²x°¾&×ÓzÂ]×øPÖK“½YHíw½l¯¾f L+¾^$ÎÕb85Â-¬3 XÉכĭ•´ï .s” ,f_zÛØfMó&—ä`1'±ŠÅ“Ò•mC_Mþ´öóV,¦t;ÔÛ1HŽ~¸Ç°BLéò |4µ¶¿°–0`%Wsf–:=•DmóS&: >€Ƀ&[€Üþ— f °âë@ìu½[}iªä0ÆÀJ¾FØ5”åqZ·j‡¯,ç+Fý!X1™aWkszé¸:ÈÜ%ˆ•™1H›ËŸ`Ws ?ç°b1¥«íº¼°Wµ˜Û±’ÅcHy'ýk.óºX±˜ÒÕk÷÷)ä…L!V²˜ÒÕÇð×ßå…Ìï^,XÌlúÑçØ£Ü4S¹Z\ƒ§U,f6½?øæIrœÉo1¬XLé²µyr–z˜Ø”®ïàCÁã=¿4²9£2§ÁŠÉ”.[þò¼<È”Lb¥A¦t•÷žwÌÕb~ `ÅⰞΊ#ÐC ¹ybü>äs^O¿÷¶«ªÉ\É+&S»æ;ææôa/°Ò S»¦÷‚Ê7ψ¹‰ˆ+{ÓÛégξäêÉÂOüìêšÂÛqÀËjT‹/°’ÅTå)SU}nûã®× ¬XÌã2#jRóAJ ¼ÀJSºü°iGõ¢žo>¬DLéò[þ¬÷3¨)0¬¸šQ—¿(˜–ü1†}+Y̨k{Šv—ßÙ¬ü(ÀŠÅT®mdUõå”ÂR€•,¦rm;ô­»´+1k‘V!f6½…M±Õ»ÆöWS¬ \ÍÌбí80î6˜ƒÅœÔÄJC¹ÞiÃv"¸§ƒÅØ%X±¸’¸TÛëÔö …eß+YÜHÜýE~Œ¹2[1€‹;‰W¯»Ëé •ŸDX!†rM¯µëî«Æ³+€âIâæ7¡w Äd‚âEâ>[ß7]t“‹“šXirq~äñ¾BùYß1µà ãøP]|=³)ŸZŒ\Xß°ŠÉÌ‚3ð,™YNO&šü|é±ML ›ü´)kW)‚…éÅOöÓïøëT{þ6XÉ×Ô®RælIéYß°1µ«øÿ)¿ÞgÁŠ«©]eúÓ‚jamÀJs=Y•w‘S¼+/X±˜ÚUýÓÕîç‰y°˜ ™XÉb.§j®²3¶úýºò&5€‹™M?-„hmo9¤g?ÉVˆ3‰wݦ·êrbS€U\ÍlúÙŠ™ÕþÂr¢r¬X\‰õ/Ð ï|¿©~åô/øPkÊ…ÜêH%«õ¢…uf+ùš3³µéy;EÝŸ˜Nÿ>”¶PB,€™{˗ǵ›VF9ÛÑk¹è7¬S»zNv¹y…ä0ÈœšÄJƒLíê¶­®"Íe‡€Uˆ™N?ß_úMcµ1ÕšX‰˜ÚÕÇûýYBxÙÀÂó¶|vîî¶iñ•˜wN¬3êòs½ÈÉÄŒAVˆu ;y•»çcLO+1£.¥â ¢Eb1¬DL±£šC‡uñtÀJÄT®±{O[þS™“ÀÊs-¾kÕ'ö»DC¯Áða— ‚Ø«d±fjh &3 ΰ}xN¼ ôLþ>TóPB¦¿Ù ¿‡XØ,#`•éÕñ˜^à"_H06€_S»æJe49)u…1V²˜Úµ<­¥ÈI*oX±˜Úe!„EÈr(À:³€•,¦vy³À<ä>t5Ü,¬XLí²£WÉM}ʵ°/IÀJ3êZ+UÏ:T‰Ã+ssÛiø­æÿVæÓ?€U5äSÙáÅWÝXdæÓÏ],’ò“èkN.b_3ŸÞ"cÿd&gïÕpÁG°b1¥k `†úPpøÜ°’Å”®m‘“Íù£jœš+Cº–¿üÖòM~øÁbx:`%‹Áu—¶á®‡™ùôàCÖò ÉÍV–ß ¨¼Y `Å׋ÄÝŸÇPS4+KÜVòõ&ñÝß2R‰+‰Uˆ™O¿ÒcëïõVæÿ°àjfÀ,QißeÒ,æÌ$V²¸¸yβœ×ÁŠÅ•ÄÝþÖT/+ ÍV²¸‘xÙ´ìòCÁ•ϬXLéʦ{^—'ZÌâ§€•,¦€‹"òÖÅšw©¬XXÜÉ ¬b1S‡WµàÏvV5«½.|b|Nªœ]ÞEwNµýoeñSÀJ&s†Xü¶kÎBÕhòWð!3bñîì]ߟf°`ezb?Úß6¾žäVò5µËþ¯ì TbnÄJÄavíÙúºYŒWâ&°1µ«•ÕìL$&x¥ÀÊS»š…е¨ð*{À¬b1óéW›þDºÜÊ2êÁ‚Å̧_=Õ´«þ-&¨Á 1£®žÛÞ©‹§˜Ê*‘€•\ͨË|»ª7?•]oV"fÔÕ-nšI.]¨¼e `ÅÕT®îgk‹U‹9·ˆ•,?zî²gRk&*ÓéÀ‡²0²€ `%‹)]coO‰W7ä†X‰˜Ò5ËÎvº—c¶x`ÅÕ”.ÏÌšúI•éô+YLéšÞÑ6©%µƒ•ˆtyC¦ng]ÙÕ<Ŭ¸šÊ5=p’k ¼ÀJS¹ììe‡¹©RTz‚‹©\k¤–oó .ÄÕ),3~­éχ«áƒlÀ*®f:ýZ¶­æ¡Þà†Ï¢+S¹¼Ô®ò;5Õ)¬¸škq·^Þ”içÅ–y^ü>lq=í¶»÷ ”MŽ?û¬˜Ì+…mÜwÄ[–Mþ >?œ×ÛÖĬ7J˜^Áb`¥é|íÙéc¨cîV"†v½»ö*Tm,Œ `e7‰³?ø¢ÖºWfò¬b1ÛÓo¥a¡¢ªÖ×å,X\2‰-†x?§/¬o´[þ"¬ö€•\¨kû·];¨··Ö¬XÜHl‡¾¡Æ4ưBÌ‘½|»¢HíAº ¤ë|PëàëáÍÕ”çÊv;+ ò$ñž³U¹wDãõ^+¾¦tyïq‹UaAÀJSºJó"jùÜÖx¯À‚żDñÏÀÓëÔÔX "±ë|È+å‚*ÝÛq«¯^Ö,Vñ5ê÷'»ó.Íòêëü°âk®';]OÛZÕ32ý¬d1]mq¢­Ç$o¼<`ÅâNâ‘vOrë½ÆjVˆ‰wžµþâMb€bJ—ÕSMj«åʬö€•ƘÒe"hC¥Sºˆ•ˆ)]­y’”œ^ÕX¹À‚«™N¿Û°fÞ´E:X̹E¬b1ÓéýET€V&¦r+o­ê} Õž´­¡íÍøÐ¹†ÒÕSñÆú ã&$€•A¦tù×…u÷ëÕ×LkXÉ×”®ÞìTþ´æ(¬XLéêÝŽØ[ž]ì"°’Å”®î‡¯ùƘšI°b1¥k¤´k»yå`1y‰•,¦t ï¦2ebv6 X…˜íéß·š~[Î,Ü€•ˆ)]£/¯•#LXã~µ T›Èby®Néú>”@2ÜÓ[ëÞ´a8øšë‰XÉ×”®iSÓ¿/Ⱦ¦¿V|MéšÕ/aõà cX!Û-:Fdýp˜èøÄø>¤ðr^OÓÐYÔ´öÊ4Ü€•™ÚegM;éGUV‰°âkj×J}Uï ®S5 ˆy¡¹—É|îr«åÆ óVˆ9ÆËcŻχ1«Œ1Óé÷þT˜zÙÕ˜w°1£®µýÁùÁ˜Ö3ÀŠ«)]»;!lYAXÀ 1¥Ëöò1åv¥-^`%W3êòÀ|Þ›ˆ¹Œ‰•ˆu™ø£djŽBc­F+®þ¥\ëÏ”ÒèuÈiüí'ÿ7°B¼IlaSÖß·h?÷Š¿âŸlzÇŽå™Yò·ŸÜòßÀ q&Ößή]¾d›¿rRÁ‡üðI“çÚžª­Nëõ/¬2­Òé œýiå!?Að^¯Xñu ØlÊ—äëòŸöôàÃ…æ É%ÙnòY¯¾þiÙõVòu î-õ,ç+¶ÉE°âë0N½œå\k¤áë¯àCPÏ¥œWKµÉwÚäR&X1™â•÷ðWÉįªøîþVäE‹-@ÍiÉi¸mqz,XüÓŸÞ±Í3Ôt#|vÿ +Y\H Á 1µk —9Ï©'®d‚bj×ðî®ã&*?Œ1w b¥1¦vÙÖfúÝS{‹9Æ+3êòG}fºyþí`1^ÄJ3êšÅ‹ Õ°[ã+Sº¦ì?Ñ'™`ÅÕŒºæN¶§ºœz ¾X!¦rÙY Ü>Û}p5籊«ÃÂ*ö?0ßïœzÎëïàCá×Óªe¤%7ýûíg,ø:—€}·îS÷§ž+Mþ >˜LÑ\Í"š~szeNkb¥QSdxÁ-*cžLæm×wð¡È„KÙßXz~Äo?`e”)^k­<·š£Ù7Fb%_Óâ’ýhµ¾Ÿ¿ÃJį]óèû.h;¸šâE°âjŠ×n}vù9×Öv«X®÷¶…©ã.õï@ÌõD¬D̰kÛ̬·-ήæì"Xpu‚ä”r¯MmÆÒ:NŒ+Y\IìùY¾Wì%‘`ÅâFb6[ªÅ#ð+YÜI<ç^CÎsê¼f `ÅâAb“ßßT‹/°’Å“Ä{Û–CëÑH ¬D åòG¬÷¨wïc\³j+®Þ$e·!cì¼í `¸&Oï%'ßÀŒÀ ¬âê åÊź%É£½`“`Åb*—¹²MU¶x‘XÉb*Wñ\ü¤>ôÙ%“X‰˜ÊUìèµ—œNßK0`ÅÕT®b§ÍÝo¾Õ]-ž”Lb%‹©\Åæ%§eðãwÀJÄT.Û^æ¼ Ž¯®®d&Xq5•«¶Rû’[±tÞ²°B¼ÖE¯Èç¶–~"ú𡌈ÓÚN¸µeù›j¯Ü&Ln”®ê½kV³aÃçþ€UfW£tUÏÀËjryøö°1¥ËßmM_Èœ ÄJÄãV÷(Y®Tí¼e `eŒ)]^\›—ZÝ×1±’Å”®¶Š ä·\;oÙX±8`·÷‡[ê— OŠüYÈßÁ‡ú¥`ò®Þ®GýîµjøÕ?XÉ׌º,|é3É­,{Ã9€_wF]&òeLùþeqœˆU,î9€-Žèõ0È™]àƒZsû˜«59“¿7Ž2ÁН©]ݦeËjn[ ~ˆ•|MíêkÖÔ†m‡qV"¦vY¤èO É¢ÉKÜV\Í1Õ/d䌲Í!&V²˜a—Wnï!7Üé¼Ð `Åb†]cçå×í21wF‚bJ×,¥ùP©ÄAˆù9›òÔ¾o¼uc‰UÆx0êšmûÑjÔµ©™ÄJÄŒº¦×çoýŽ­s9¬¸šÊ5ײ€æ¦áÅÅâžÂ+YLåšÛŸ8V·§ž¸-+S¹VÚ»•›çÂÄb%bjÀªùÝ€SݺÓ?‚¥-dïÁ·Ül°óÒ:€•ÙŽmyO¦²=™¼iòWð¡ ˜<½kŸ~ÙÕ¹” LfB}ö§Ê÷]ýÒazW«L¯IíòN.sÈoóôp•J°b1µËÖb›^s+ZÌ B¬d1ÇØ{Põ,×ôuVk°b1µkñ>©sC&V²˜Úµ÷̥˅1=ÜZ¬XŒ¨«xùA)jÍDø°’Å“ÄþÞï]«Óñ 1°±ÍÌû®ýóEÃàÿõQ›¿!žÜMÿí6<¹xdÿvùŸÿH^ú“<Òù/øßÿãÿÿý/°£{3>¹3fç%x+#·éÀUÊêr1fزX f~½agñ°ÔK»…d‹ð¡î>Óä=ú*jŸýÎ\õ€Uæ SJ.ÃbÏ%o:¼`ÅוÄ6æMoÙYíÀ q#v ?®Ëé% ¹àCÁÊ¢ÉÃcÀ›¦x×Afz~ÀJƒL)ÌþnN¹)Ä:w+S ‹·?ÚråkŸ”‚•A¦«ý$gZ§nw… B¬d1£awáѳkãÞÿ|˜]&wyõO¼`Á×ÌÏ÷opÝ XeâEb€bjWµcäHrrmgeQ+ÄÔ.’ÀJyvq‚«Ì.æç[äéé“j)Dga@ÀJÄœ\u–]oŸ>?¸š Š`ÅÕ”.ovTÛMöÀÁâ0ÄÀJSºêö´:µ–ª3W=`%bJ—­Âü> «®æ:&Xq5îVwò7¿T‹¹Œ‰,ÌÎ/v ®ï–"1—±q`ogŽä¶ïñÞH¸öÎúœ]mÕ´ó]Þ÷aƒÍ?ò`z~ñ°|6=¶f%D+Ä”®n20óPÜãD¬4È”.r}6õ)ïÞ¸‰•ˆ)]þr°îäÛ˜V\ÍÉe;ìnë&,?XL!V²˜Òå—Ø=«VzçöD¬DLé—ÛDƒ«i2Á‚«3¥kÔâ™îbêAï<Ä«Xœ¹$F«i¬¦ÖìLéú>T%_ÒÓm–ƒ¯¹O¬ø:øËŽõ‹¯”=™ÜhòWðÁd®ä±ëXz×`1U+&S»¦yËN›êw´¸»¬ÓâÙ›ÉÏ]†ý˜ÚE°BLíòvõmmYBg+-(jלÓõG B:g5±1ד÷îò÷ðΔñ€Uˆ™_Vñw©äÞ.ƒU\,Œ1³ó˪ÕÎ}jªigÊxÀJóÀèA%=e|ðÞ?€‹u-›!©u›`«¤€•,fÔµÓ*+ɉ—ƒ÷þ¬XÜ#vV’?„ÖÝàÃ=O}Û¾3–Iæ¯àCáGÙÁsÞ4²8ŒòúíWÿ;Vej×®uÝÔ•˜ Å+S»ö0¥¿ýÕ×éB‚…éÅüüb¾ªA4ãV±8\ÔoÛ_nô˜Ç'b%büjX¶v¤y˜ÖU‘àôFRSI©Þúë0È‹?`e‰kÛ·{ÌÁ׃¼ÀJ¾ntH,ÞdX±xxÛI?ËÏv Vq°BŒ°«fûÕë.V<¸š+¹z‘8¯f?ZýJËÏu+o×2½Ë¶J\I ¬B܉MBçmòäaŒ© cÌü|ï·èÙÉñ?°BŒ°«–ÔÓ_¸à׺€•\]I\ýcð]yÐÁb*ÁŠÅT®â‰ßÿìH£Xx•,¦ry¼fçkY¹øi"€‹©\¶Ûêò—¾Á ŸVˆ©\µ•1–Ü‹"nª+ÄT®Úë]íßÓw0XiŒw7ooù3ABëŽOŒàC$@©c»»Ô8sW«˜ÜñÞ¥Ý6 < r'3À wJW«ÞPì®àÿ@Ì•L°BÌ-¦µÝ6Õç!Üë¸ìz2 9PmdS\¤É?1w2¿¹¢šm99ß=A~pö?û¬8›âå½§5T¹Þa €•æ5Å«ÛÁ~yP#ZÌ>¬XLWw¿“\zLϲ“VˆvÙˆ»d aLO¬âj&è×>’éOW?oÎ-b%bjWŸžÇrÓZêBÆM‚…1f‚~µ=6[Œ,_³…Ý`…˜a—™Êºy–ààjšÄJ®fØåOªT¹u°-UÀJÄT.ïÆW[ïA{4¬DLåþ$B¾++¸Ž1 mXc*×LÛßŵ:|A XÉb*×,þ iŒƒ ”V!fz¾·iËïg£EbJ&±1•ËBÔ±óÝ9Œ1§5ÁÂ3=¿NÔm©õ.#^`%‹©\s{ÁaR'[ʬDÜØ—£~]Îv÷àCÐÅÙµJö7ä+\~ `e)]«æ=ºÚ%{°§LÀJ¾¦t­ÖLRÔvXá³FÀJÄ”®5-F½íÝqp5§ÁŠ«¹§®åïšlµ½ÜX<1~²ñ)šþ:uYòžƒõ.,˜Ìfuç5Bk†'“‘ñ>˜ÌéåÕ«¥«MVs4V™^̨¯»§™ŠœT\“ýÃÆ”cɦE,˜Ì|ú¶¶ç ©eöc†¬2¯™Oß|MxF«JÌ1&V"¦«w5hò61ùðM+®¦vmÛqú”[€M¦Ó°BLí²-Õâcµ'Jøœ°’«©]{—ÙÙ ÷8xX‰ÆžÞí¶<ÆüžÀŠ«'‰ëôDZõ0Áü߀•,^$¶-'-9ÿwò«j+oÏõÎü-æÃ¡«XÌï×Ý_TIóf˜Ä…ÄÀJÄP.û¯“w­—×1¿#°àj~\è¹y+—¤6åœ •@àC‚8§µ?¢3¦Ü„}2É;€“‰‡ßÉ·å;¸Xi;‰-N´Ýî¼Ms¾¹&;Œ1'5±Ê3¾“žÜnȈÒ+S¹†¿÷5n Å®Äl*°q&z"!_è!¤ŸÈëzªÉlÑŒ'ÿ©:MæÓ?€uM;çÏ]åVt“W°2¯©]‘¸šÉjÍdVˆ©]¶¼’ÅpjHÏ~+M¯Àu—‚sîÃ)fòÄø|djÈ\Õœ¯>u8ÙI!`“‰W®_KƒL!Xd&JvÞ¾êOIMÖ.°BLñZ}§ZÕ¼Œðí*`%W3ìZÓj‡ð)`%b*ÈN^©_,òCr+®fص½÷Äm}í˜aÁ 1¥k·Zýûèj–L¬äjJ—EÇkwµ7ì [ ±1î=Lè—ú†ø¬aˆ•ˆvù‹*³ßU›^ǘY¸,Œ1Q¼óxšEíQ6Y2°ŠÅL§)[hÜÕžé“MV".$6é™®¢1ïøV"®$µÙ‰S^Ç30¬Œq Øæ}Æ~ÖñCÔµu=€ypÁ×v€ìw§Íƒ¯Ã¯Vò5¤kd _Ê’ûÞ„ø8€_OgÓoS YÌ^Ë+Y¼H쑪_À0d `ÅâMâQ-ZT‹s'ß XÁâÅtú‘·Ÿ®å¢«¹‚¯~¶x%J—¿)4›ü-†õ×+YÌåT-±ŸL† X‰˜Òåe½Þ5F:¸šË‰`ÅÕÄ+¯:ä†(“I ¬wo‹«Z?0Y~°’«©\Õ[®§»Îj‹9»V,¦rÙ/6ÍU[þM–¬d1•«¶•sjjÐÅ\Ø€•ˆ©\vð¦&òw«3›~X„ºwº{læ0Æ\È cÌ+~;ÞÖ”*4¿ÍÛÓ?€•-\O-õ²î›9øçÅ€•|ÍҲת# î{ð³Øžþ|¸&ûÓçúËO“¬Œr kµq÷Êü•˜‰ü¬S»Þi¥rK”ÉÄ〕™ÚÕ¶?Ò¥¾š>Gð4°1µ«Û‚hwOÚ^‰Y§°1µËß×)ãNøcL¹&Xc¦ÓÞÚ*Uí´<™’°ŠÅL§·µeF õu¯ÉJ€•ˆuõµ,4–ûƒL–§°âjF]v°ƒ—|ÁÌЀ•,fÔ5jêÓ¯ÎT‹9È+S¹LpÛljîɗãV²˜Ê5zñKo™˜¡±1•k,Ì(ÉU¦²°âj*—I|ëYþìµÂ+YL½õ±-|QÓøWE×›𡊈Óz:v%5Or± '€_3›~Ø´ô'¢ÕÙµ/°Š¯™M?ü¨ée‹¹ V,¦tÙ±ÄHí¶¯«ˆ•,àݼ˻Zê¾*ﺾƒ¥-ôõò“¾þ)f1m0€_S»l®µYå‘…u+ùšÚµüNROÐ\Ì¡ `ÅbjײEÑôópV²˜Q×Nþ=EÎŽX,÷ `Áb¦ÓmšWòͦz±x1ý7`‹™N?¶t«ú¹m±¢/`%b.§íï5¤»ËЃ«9È+®æRÜÓ‹ »úùz5¿ƒÕavm;UùeÂÅ|ÅVLFØe:6Ûr‡pÀ`…x¸î:ªšN¿˜v°Òìš$6«üÊJ%ž$V"^$¶x¦Õ»OWWf€Woo‹ÓMürµ˜×F«X̤Œ™Óô÷oÕ1fò^ÀJÄ™ÄÕŽD[.‹Y¬è `ÁÕì3ýñ_ÛSöҤ£è|øÞ|=³AåêþÅd¶VLn$¶äÞj‹çÅì½€•™Òe[›C~êj±–0€‹)]¾“÷}w| æ !X!¦t•Þw¿ ¯®fÚ`ÀJ®¦t‹ËkÕ\¦W°b1¥«z¢z—s÷“X f6½^8‰§˜ÅªÍ€U\ÍlúY[޹ߔɈ©™ÄJÄ…Äö»w‘‹ûßw¯Xqu%ñúäí¨S«‰•,¦rY|švQ;h.ÖN¬DÌqj~/R†|2ðãøpXóÎv´WŸbôNhdþ>D¸Ô®Vö·-GÓ‹ûÁÊô¢vµV½‹±<Ê\ÉÄJ£LíòZÀ¦_¯ `ÁbæÓÏî¹J]~£8Ü¢°BLíê¹ Vu5ÅšXÅÕ̧Ÿ½5;êÿ‹©]+S»º¿9t‹©]ÄJS»üECS?Ýb.'‚‹uT½—j1ËÛV²˜Q×ÈÕ~´¼Mð`°ñ àQ,†S[…ùãe?šù|è-BÍ­—žäç—+ëXdJטï|G5ég1S2€âpŠñ÷Èê]†Ãa¹«« 2³é½ê¡T=Þca]ÀJÄ”®YÓH[pYYÀŠ«)]Þ2›´ÒƒÅb%‹)]6J%mµGY<_+Sºæè5õËÄbºbÀJÄ”®étû.óï0ÆÜ&VƘ²Ò´óÏÍwœƒÅœÕÄJ3èòòéQ妡‹É°¬XLå²ó@é¦/ÀÁb®&b‹™M?—ÿj=%u±l3€‹wÀî–JA¯Á‡ÃÄFb×ø:L_Ûi å-wÀ[,¬ `ÅdJ—EÆ+Ýö:=s=¬SºÞÕù[mʶXë°Òì¢tmo s[¢vµ˜Å^¬X XÉÕ¶à©Î‡àgãÀø>ÔPcWò´Ë-gµ/f¥°bò"q5åj*ÛbþoÀJƒ¼I<Ê®5Ý̃ÅÌ?[¼™NïJ_ʾIü;X\É ¬`ñf:ýÊ6/Ó¸ûLx° ÀŠÅ…ÄÕDaYA˜6À 1gµ÷ÇžEnr¸X À q Ø]ßžü¾Mì„ìˆðáãBðµ áÅDÉÅÔЀ•f®Ur+mè§>ºÀН'‰Kï­ª †SCV²˜ÒUº…Ëé.J=XL©'X±x¬§8 ø÷mbgdv=€ÛEÓ¶—n«M&Oþl€“Ùž~™Öæ½oz|;rÀ*ƒÖSÍ9ß0bª5±1µËËçm÷ñ««W0`ÅÕÄ}xñ‡zp›Ü%ˆ•,î$öçO–ZÒ·Ø 7`%bJW]y›êª1ëÛV"¦tµœ·WéËcÌý‰`eŒ©ô­VßÞ†º?e´ŽxnCý´ÖgËú— š°`r Ä}Œz÷Vça¹‰U™ùô«Ùa=ß>jx°˜ Š`ÅbJWOÅoQÔP€n+YLéòk£µå.¼‹9ϬXLéê­[#g±(`%‹)]ÞOT9»|±Ð,€‹)]}MûÑj>}¸ËXÉbJ—9krSóy ær"V"¦·F±i™²ÚÚh³;ýøpÃA¶1ÊuëjÍôò9hæï¯ßrhÍþ¿¬SºÆ¬ã½sˆƒL­&VdæÓÛ±Äþ‰¬vD‰—(ÄJÄ”®é -ý–)Ϭ¸šÒ5k²é¡VÖ-–§¬d1gõô‚â"'Ãn¦<°b1¥kζH×¢t}¾_SAfNyTùÁ˜ÍÌãVLÄ%—aaª:»(]ÄJ³‹Ò5«‹w-õIJã…]ûÏ”ŠÇ/úõÞO’÷oàG‹Kúɧwlõ÷³oŠoò+Y~´º*IÌÞ3ð¯¾7àC†C¡É¦=}Ü}¼:øºòg¬øº‘xµl0UB~*r~ÃJ¾î ιíšä„ý“äýX±x¸µžo÷˜ñ$1À ñ$q÷ç¤Õ¦{pˆ‰•\½H<úÌò3Hû§<å7¬D¼Iì]e»šñ¼Gð4° q¦tù§áw[pø§tá7¬DLé*%‹Ôå]bR»&W¦€X`¼üé9•xÑd‚âJb› ³UurM ±’«©\e®6‡Zë¾'g5±q¯G × ¬3êš}çœåsÛæ¤&VruðÖðÎÔ˜Õ;rKëïàÃLðõö”µ1þçÔ÷:_7J×*ÙWmòü9½N`…˜Òµ,(ïò=Èog ‚bJ×¥Þ>œp˜]b•ÙÕ(]k¶eõ&usf+Sº<_ºÜVÕ\M“ V\MéÚï–bÞÏ-ìë„•,ærÚÍÎò{òŸ#ÐëV,¦tùÿ”ÄØçsú:a%‹tíéS¼Žø\I¾NX…¸#èÊ&έ¾®þ Ë_'°àêžIü~òeÈ“k’XÉâBâ¶s¿Í–¾Z\™V,®$ö÷I“øXÞç‚îuÂJ7ïj§]«k&3ÀŠÅ=bgçcôrÇ]×øëˆ…œsò3oÊk¾ÆI5`%_sjf’µaC~80vÀ‡[M“«m«Y-ïÿœD^'°2ʸ{áƒØ9ës5ø:a_j—?g0岫ÏIäu j—'ùæÒÁâM^`%‹©]ůž— Tª5ÁŠÅÔ®Rýë·Xžò¹|°’Ŧ2ìôÉï×2:ÖÓwð¡Þ‚ÓÚDo†¶O¾æ(¬øzØŽ›ï¤qÑ×\ÇÄJ¾ž$¶H¢d1 7Þ†¬DLµ®i®ÒĤŸÏäë„•ˆ9ÆÕ;α~2^ ¬B<)]±e;®Ë“«qM,L®I骶Áø1H&¾X!¦tU[]ÞzKu5W±’«)]Ítu±öésOö:a%b†]­Ž1 Zº=¹š³‹`ÅÕĆl]í¡ù9‰¼N`…˜ÊÕæò§9ÔH rn+¹šÊÕ½7‘ÜäszÀŠÅT®^rË],Îý\нNXÉb*WïÙk1å«ãÎ]‚`ÁâEåò÷“ÖK&>7ƒ¯V±xQ¹ü¥'•¸1!V"¦ruS€Ýd‹[ð4°1•køó1Y¿UìÜ$VƘÊåoX%¶LÿÜϽNXÉb*—iO6ñÑg5×ÁŠÅT®1{ù ÊÕW+YÌ=m¾6á}ˆoÏ‹ßÁ‡¬R.ä™|9ê7?#…ŸýV|MéšÕ[¬ªí?' × ,ï`ñèÞb^¾V ‚bJ×Üݶs=èa†¬Sº'‘× üLœ™NïŽïS}ñsñü:aWg¦Ó{ŠXîò;Ÿ#ÐëV,¦ví½ídR´tß.ž‰•,†vùÍè*C}·åsyÀŠÅÄ(ú;ªÅ›¼ÀJwOïž2:X˜V,$öÓÀ˜ê¥ëV²Æ’Ëû³™|uÌ\ØV,^$®¥Mý#ÓøV²x“¸Uo]võ 1° 1³Kö¤°.>rþ¹­z°q&±÷f,jEßçÐ÷:…1f6})y®ÚôË=æI°BLå*Õ¢°|31®¦ÁÄJ®¦r•‘zZw3ó`q'3ÀŠÅT®²ëÚå«ÄÔj‚b*WM­¯)fƒ|îç^'¬äj*×{%ªù/Ÿû¹× +S¹jÛmÌ»NÜWW3,`ÅÕT®:ÌõUìÄò¹Ÿ{°ŠÅÌ$1p+{võlžKþ ¬À‡Z®§ºm}%µ½â'8~À‚¯™M_Z*vü’ï3Y°’¯)]Íâ¦ÜÔ6tŸõu+ÓÕÍß7ÎòfqV+YLé²#®·þT£=Ö¦¬DLé²…¸å0Ÿ»›× +Sºš¿cTå …œ¸/¬Œñ Xï͈Þï—ù§9ý#øPmÁÄ/Ú—§¸j¾fULÀ*¾®¼fe5àƒvUj×w𡊈 ªûG¡>Fô9‰¼N`a”™M_ºWçW9£lSAˆ•|Míê£Í1n¦æ˜a±qpõîÕvõÜ–™DÀŠ«©]þL„•LL !X!¦vêEÜ\ÿ\M!Vr5µË&åÜû®øÕbfÓ°b1î±½7µúþõçô:b†]3{,%öâ•dÀ*®n<0ÎV†­Gõ0‘™ÓÀ‚ÅL¦·“¦í«E|§æs1ø:a%‹©\Ó߯XwçëƒÅ\Ç+S¹–Ç÷åbîª+ÄT®UöJê³OŸ«Ð× +¹šÊµZ² BÝ$2«êV"¦r½Ÿ?©âŸ‹Á× +S¹ü¥ªµå¤x"Xc*×ò÷2‡š%™™Ó°’ÅT®ªýh5ù7³Æ,`b&Ó—mÇÍ1Ô·>' × ,¸šÉôe·ÙÆ]‰ëÕb¦–¬d1•k÷½GW3÷r+S¹öô³ˆøòäçÒèuÂJÄP®šüÝ„¦öøœù^'°2ÆÄ¶=·¬Þç<È ¬dñ qk3ëÅm¹f€‹'± ¦‚˽‡3 séÀ‡cÛ¤ÉÝ…Ok&x¬äëm,¾°õ`òH4ù+øP(Fy';Ú«=¤>'û× ,Œ2“éý=Coã"O/sX!.$öÏ)YŽA˜g°Ê ó;Nµm2ý…Fay sÄøPO\i²¼ /r ?`Å×/~¶5±QØç†îuÂJ¾æ´ö¯+ö©·Ö™5"¬XL ñvLy5yv-ò+Y¼HÜkÝ·ÛêÁb.d‚‹7‰‡·‘S³3ëV±˜ÉôÕ"‰5–Ú{æsÚ|À‚ÅL¦¯5¿;œ©cÌ|瀕,¦tUße—ú(³ (`%bj@­­x&œº%OJ×wð¡Ö”qWív&êê[®ŸöëV™ÒUGñÄtõÄ瀕|M骳¦>oñ¹¼y°1¥«¥ÙÞIª«9¯ V\Mé2Wå<Õ/}™)Þ+YLéjÕ‹ÈÅW&>w(¯V!f6½íkmz]žJÌ݉X‰8¸ËO¹Òõ°=9â_4ð¡À$˜lócoýÅ\ëfÓé«w¾ÚwÏ|Í…L¬äkJ—N™U¿Ðd!P+Sºzõ7W W‹™Ÿ°’Å”.ŸÔn;$,¦v¬XLéê»âïf‰Ä, `…˜Ò5¼;‘ü (3[1`%WSº¼ë„_ªÄœ[Ä*Ä̦¯ÃÎvÈ–g5+Xp5¿©Öaê“ô8“Iƒ+Y̨ËÂÄ1—þ¹I¸¬XLåšþùÿ/\Ó³(€b*׬ùýÚŒêj1±’«©\Ó¢µ‘Ôú̦Ã+sƒ™ÝŽõÓþÈdúð¡|)0U—^¹7o»¾ƒ¡5µkÎ^ÌkòŽ6ÀÊô¢vùÛÙùöí¦1· ‚Ÿ‰ ³éÍUkç»G»Ó‹¢I¬0½ 3• ¼³7–î’v}*L¸¢–—¹V¹A¼±"Xñ5ÅkÙ3»ÚÔús}ó:bŠ—¿~Û—v±ø)€bºÚÇèw§ÍÃìâ¬&Vš] »¶…}Þ´¾º3Õ:`%b†]{øëMrI_f=N+®¦tí¹,P•#\¦á¬d1¤«¥ìÞå’‰Ì\ë,f:}K¥, e‹yU,f:}K¦ó+ß½Vu°¸’`ÅâBâ1씫æüäx•,®$öWç’ìj&µ¬D åj9ÍnkQw5$3€Ww{:ÞÝRLnŸ>XÌA&X°˜ùôÍ{4ÛÁWŒºJžV²˜ÒåTv“ÛH…àV,¦tZ›?<§†ÖÒõ|ˆº¨ £N¯½TëS­d+&âîÍNÕO…‰¸+ 2¥k,ïÆ-)) 2ÀŠÅ”®±ëlC|7÷sè{°’Å”.;þ´¶Õš…MxV"¦tÍ‘5êÀ‡u”. Øj+ryaM_+¾¦tíºz¹M>sA,³½bÛm—wò8È܉U™ùô6=ü²]mÇ_j0X‰˜Ss¯a1D–¯œÞ¿~²–ƒÉ;å”äV–ñ:”`e¡]þzÜ7¦¾³† €âNâêÉŽjÁWanhÀJƒ}¯ÝĶÈÝ2 «5X°˜ß ;Ó;R ­™Oÿ>|åB®Ã¦È¾yöàkJ±’¯)]u|¡É¬Á€•ˆiqó×O–œÊVXïÀÊ SºšÇ$]¾ëbºbÀJSºZ­Ó-Eâ V"¦tµaª×ä|úª«V\Méj»Wo{.sv¬Sºz²ƒHUÛ•öˆXÅÕ̧ï67¼©¬<Æ\ÇÄJÄ º}ŸU]MÍ$Xp5óé- ¯-mùû“V²˜ÊÕ=¿ßss!¬XLå²è4­r,æC¬d1•kTï*Н³.&€‹©\ãý5VNÊ(¬™`…˜ÊeGëY—Ú ·0?3`%WS¹fnžà [L!X±x¬M‘Ñ&æ÷¤&äu=€ÉÒ”®i§í,7Î*3X ¬àëÊW}Ú1·Ž­~o«L§LæJž#Ùªø óš¡5ÁÏ£\™NßýÓÂêú¼æ6A¬äë`ñò„Ï›nÉâ`0°1µkîÚvÒ·‰°&€•ˆ©]Ë{P }›`¥Y+cLíZÕ&æÝW‹ÃA„XÉbj×j{Üö :sr+3êZ£øe¨u16`b¦ÓwD ½ÿ!qŒ¹O,Œ1Óé»?Ìîï¨sV+Y̨kûó‘·‡‹Y¬XLåÚmúÞ¦N.&Þ¬d1•kÏ5vÑoý3ÁŠÅT.ïl:¯^u114`%‹Ã0í™Â=ÙC(Àtúð!{Ò5’wí]×LÌëV|½H\ý8µ]aÊOÀJ¾Þ$n­Ž»¼ôñ$1° qI$ö7}òî]]Í‚œ\Í4É‘l^Öu#{‹Ã+Y Ùvò‘Pëþ0­ ¾0>€ÉÍ‘½ÛH“˽ +rXñu Øí;ÕÏ^µtšü|XÉ\P¹–³Z‚]™j°Ò( J–ÜX °Ä-€_S»òû ¹<¥°X#€bºÚ¯¯z‘s¼ KÜX!¦vÙá³Ô~÷NÖ˜S“`˜éô£Œ^kQ+*óºV™\L°PqÙHÿ´ÉtúV,¦‚Xع,lã½Ê,§€•,æü°Ÿ±&;>ˆ&ÓéÀ‡Ì ®§Ú²üÊÍ@|ÍQ&Xñu'q/ž 'žkîVò5¥«¾§ˆzT­L† X‰8¸zûG$]AX@ÀŠ«)]Þî«·¡îL† XÉb¼ØïVXÕ†Û®ð!½“QH«žß°å-¹e2¾÷S5½º¥fýÃëXe&Ôf2_Vnµ^`•QfƒúÑV«©ÉÕ…Õ„¬XŒ3ãèyºòéÄ\Ê+ÄÔ.óÖ^U½f‹Á"±’«©]ÝÛ_ý…”g¾9ÀŠÅÔ®nK±97ܰBLíÉäv«õý•YN+¹ša—o«¨ªaWem] 3Ÿ~ØbÜú#•éU«XÌ|ú1¦­ˆ-_—Wš°b1•ËBò1‹œ¡YY%À 1•kÚÁ¾7¹©Re…[+Ä-`—÷E’¿‰tž¿ƒ_F©™³™Ìgõ^ 2•-`¥ÙEéšsîûv_f€_SºÞ&í¦üàj1sèV²˜ÒµRõgªt±„ `%bJײ¢lµù^eZ{À*ÄüÆ8–-‡Ôå˜ÊúÉƘùôcyßu÷«ÄÁ×+Ä”®µüUx}Œ) ÄJ®fÜ´Möü­5´fúð!À¥‚ìlðÛGh¾¦ð¬øšQ×~÷¿IUºúšiN+ùšÒµG™¨ß&Â5+3€ÙÓ;OµÑae>ýøfy7ï’¨†Ö•Õ¬˜ íòn¶#Wõ}õÊfË« 2óégÊþ ­ú”}evyÀJÄ™Äm–]ä/Ø•o?°àjæÓÏd±âÚòµ“¼V²¸’ØTÀBU9ìâ÷…V,Ƭž9yM Ú¸2‰.`%‹;‰Mò†ü¾zefWÀJăÄÍËòäϪ•µª¬¸z’x®\ôc*kUX!^$¶iù~ESt5ç±’«©\%ùq³ªQ“èV!f>½~Féjc8ˆ¬DÌaò^#~‰¢Æ ̧>BSAlr´tû1ø0»‚³f× Ä½¥½ÕÆY•e+ùšÒUV³ËßD*KFX±˜ÒeñÛèëîKΘ&¬Sºü½™ÞÔ ìÊÄ®€•\Mé2lIÜ\µˆ© ÄJÄ”.¯V¯U~)ܵ°âê€õ©‚ ùá:bãžþ|XÈÁdÛËs×ïY¸À‚ÉL¨Ÿ¶s.7—¡‡Af¸G¬2ÈL¨ŸÞ«0·¥F]<¬DLéj^xû½ÿàj*ÁŠ«)]m´²–úFNe¶QÀJSºš?oœnjÅ®ÄL/X‰˜ÒÕÓšcÊ­–+kXq5¥«—Ô†{_´˜¡±’Å+€ÇZYîZᇴù>äiæÚûNC B3êÀ‡KIÆ]½g;‡È©(•5£ü<ÊÞê Ä«ŒRî>!ˆ¹’ Vˆ©]þ}ÞrºÓËV˜^ õs”á)ò9Ì‚‹©]ãSI¤1W2Á 1µkÌTçÝéWƒ•\MíòJ9Õ7+ÓœV"¦vùÝàÜjÍye^{ÀJÄŒA¦·Ów̓¯cÌÊÍVƘ'F‹“?á¤ZÌeL¬b1êç5ýMpóÀ‚ÅL¨Ÿs·–ù0êq0`…˜Êµ’?¡O..cb%WS¹–zMäÉÅÊV,æv¾l®õîyûbÆ'ÆðáÚ(˜l»ù˜CkVP°b2¥Ë»_»k£ë ïÀ ¬4È”®µKòS5u‡qV"¦tmÏŠ_òç'浬DLéÚÕŸ/Ð÷Eæµ°0ÆL¯2 ð73ÕWUóPV±˜ õÓóþòÒƒ.õ°b1¥koOB¼)¸8XÌS ±’ÅXÇ+iOnìX™OÀŠÅÄ}xÖ¡îêMb€âNâ1óÌ79aW7ò+¹zxÎ5ïÞn:w+O¯5gWûƒ´< ¬D åZæ©ÝËÝ÷uŒ™ÇÀÊóWûÅÍ*rçòVq^|²¥ M¶p­í›¦ÅW_3»<`_×¶ÓTBËôï×{­šü|8"“GO~*røÙ £\©]Ù¯PÊMÞÁ×…¼ÀJ¾¦vys×½å'°+«5X±˜Úå7+ëGd&ò°BLí*=m‹ÍÅ$©+¹šÚe«Ë‚¹ýLeAr+S»Êî©gõB³1$`%‹u­Z¦É·Ü®²<7€‹ÙžÞ;øz˜*ŸSV±˜íéWíå]¤¯ƒ•ˆ©\ÕSx·š…Û˜â°1•ËkRŸrÔÅlúVƘÊå•©¨ï/56² XÉb*—×ZÌ}—Yq°80¬XLåjÍ"˜>ÕM"„ÄJSnÛ,34¦~ˆAòºÀ‡ \ÈÍŽöýv ¾ágÿ€_SºÚÚ»ÝÓÕ×ü`°Š¯™N¿ºw)¸¨ƒÅÜ%,f:ýêõÝHW]OÌ XÉbê^ïÃ[»üXü0»:*°À‡Ä?îÈvØ[_ÉõȬøšÚÕç²Áî|ÍYM¬äkjW÷¢SmäÝj˜\ÀJÄÔ®á=ôgúk&Xq5ÇØ ˜úí®z ¦ð¬¯€µ¿U’Z3Ñ:>1>€šä±J®û.-ì`røÙ &3Ÿ~ÍœwÑcúÆ|úVˆ©]Ó+"§ú¹µÀ ¬2­™Oﵤ¬.d¦ÿ¬D̰kŽ–ö‹Ÿë‘Xq5¥Ë¤_›nK¨&s— V2™Òerkç\ù•óð]#€Ÿ¹3›ÞŸSz±Fc²QÀ wf…mx®LÄôßcÎþôàÃ7hjW·È|5)µ1Í)`%“©]Ÿ7…äÞFõȬ 2µ«_Œú ¿k°BÌõÔW6;Õõ´ÂVr5µkä’Þá¶j1E“`ÅbF]ý—o…?Xx•,fÔåRï”q‘˜B¬DLéc¥”ä|ÅÆ²˜\Ítú=æ{ÈšÌC XÅb¦Óï™sšU3YªÀŠÅT®éþ’Úk°±“eÀJ×¶ac{¢±Î<0~nÙ8­gµ½Nî]Þvp5°’É”®ÙzM-Èi;¸ X‰˜ÒåM·îÛ}fW`X™]”®wNü¼9^,æ:&V²˜‹Ñ~²·‡V㽞7g×Wð!Ñ€âåïÏꯩš ¾.ØÆ< 9‘¿±:7€bj—ýäº,6W‰Y%À 1µkm[Ø]íÓñR_'¬2»˜O¿·ËÊrÿ߯ ‚V,fÔµkß~a¥ZÌñ’Å”.ÛU{õaW-æ¬&X±˜Òe‹±Õ¼Ä¤§ài`%‹ÿ]ºzú3¥œWZw‘ÓÁâ—ŸßÁŠÅ‹ÄÞ5¨«moú¯¬Œß±’Å›`;çÛïV¿{õ_ùôÏàCfE¢É½¯•åäòö«„àw°àë_ýéߨ1ë\êk®=^`_ÿêOÿO¯SSûÓ÷_Yí¿c%â âœí40å6R?Ÿ~+®n$nÞÂW¿;þU#û;X!î$îÞSM<î™ë‰XÉÕƒÄ69²¿ß©ZÌÅH°b1¥«x…I“{K·_å“¿ƒbJ—çãÍ1e‹•OþVˆ7‰g-}Ýe*ˆ;‰ˆE ,ÌRîëØu§âÌ`òòõ–­—ø«°Ê´nb§¯Í{؇кUšü|ø‚DÑ´Óf®á öæR&XejWmÞÿêNêÄ\É+Äœšuf› S-ýöÏÕ?¾þ>$IQ5ë´ò'‚Ÿ‹ØßÁŠÉ/? ø,u^^`¥yMñj%y¿/U¼ú¯”çßÁŠÅ\É6É׸ëjr°˜‹‘XÅâΰ« ;!”»«ƒÅÜ’ ,î »Úôî®7•½‹¹M+YLiÛâÔ¬V?õ V"fØeú;ò’ûHõÄÓÁŠ«)]ÝuOnkÝKàV²˜ÒGM;ÿ¡f¬X̰«ûµ‘·v‰3„`…˜ÊåoƒÙ¢!?ס¿ƒb*—¿Þt[D}ãJƒ‰•ƘÊå¯Íô&Ÿb*×1± ñ r¾½^]=·Uî©ÄJÄT®áUù¤çÀ °0ƃÊå©o{õ,fèC¬d1•kæ²kV z¥€+S¹¼Æ5é »z¦X¬¸šÊåou¦®>ºÐ+…‹XÉb*׫§©6.b%b*×Ü;­z÷ÂñÁÕaV\MìJ}κäkú±ß~¾r ¼÷CfćÈzò²ë;øpŠ¡v­ò~¹[ÞŸJ ?û,8{R»VË{”›½í0½¨ÖÄ*ÓkR»¼¨î,Ç™…¢I°b1µk­•ü­=ÕâÀ ¬d1µk¿ûžËz¡\¬XLíÚm÷}[qq æš X!¦ví‘ÛÎjfWoÁ``%WG°ßÿbV?-ä……ü|È‘bص·È·Öï à× ¬øa—?­Üšþ¼W¯PˆW"q^lª!m“XeW&ñýݳUµx`ÅâBâéʧöIí=“XÉbHWö”OþS-æ]+7;Ôµ»÷F^`%‹;‰íð9v•Èm‘`Åbμü¦‰ âyNÿ¢AHdo ùÎÈ=…ŸýVL^$vÉ]I½èÁ]ÀJƒLé*èÅî½sZ,X¼)].¡iÈU"½S3 Vˆ)]eÍ÷û`2q'1À 1¥«lÿÜßÔcLŸäVãÍY]Ëž£Ü,æ6A°b1¥«zËœ%ß t ±’Å”®j‡À‘n’X®Äƒ“šX‰xx|Þõ ººzP@V\cn¹úÁ^Þ7F‚b*WóÒæ®¶é胫‰XÉÕœ˜­û¹Š»ÄH80>€Ÿ‚9­›jv¹{ºòàkJÁϾ‰ÒÕÆK~}2œìVðõH”®¶w]Î(ëƒAÁŠÅ”®žýªLí×'g5±’Åã^,LmU&æ+÷îuÉ%GÂÆðaZ_÷äÍ©åw0!Xdj—‰‚éÞÍÝàÁ×Á]ÀJ¾¦vuÏ£mrnÜ’ V,fÔå}tmŽÈ³‹ž&V±83êžÆRä ˜IÁ%V"¦t ›žâ©ºzrK&Xpu¦táÇš›—Œ®3“-`%‹kO‹¤P±õ°?ýʧ’¹½’Ù~¹ Lª5ÁНvMÿšþ¥÷F¬3ìòÄ?UdN.b¥A¦tM/æ©7µ-bzšX‰˜Ò5Wöbf5¥¬/îŒ+®¦t½ŸŠ¸{$ô`1¥‹XÅâBéZÅß —s¼ûâb$X°¸PºVÍ?ª3ê"V²˜Òµüú7ß4Ò½oJ±1dY,äÜ*1ç±1£®5³tåíis+÷.c/TN=D]…Q×wð! Ùߊ˜Eß6ÁÊ´¦tí<ý¸<»(]ÄJ¾—eºÚ¬½3i0`%bJ—¯ˆ6åçÕ;óXp5¿0æ=skM>·m*±ŠÅL&1_ÕN?‚ûƒüjOÿ >|„ÆJ.É“iÓÝ3¡Wð†Z°âëJb;÷ÙšwäÁ4É€•|mÿÛ/pퟔlõÿ×?ì¿ûs¦•ü×þ·?ìðýgòÐÁ&îþãëO £³ßmý—?þQÿLÛß±ÿãÿÑ‹dš´È°Çb"ïj!;²Ó €Gl÷VŒI­>’ø>$›¡'‹tù=˜¾6ÀŠÉDŸºõÛ¶±bD+Ä‹ÄþhSOÀƒ™®+MÚMâj‡«¡†ƒµM«·Db[ µÊŸÓF*dXpuË$ÞëHÔï#5¬sVÛÌÌ^…¦ºšs‹XÉÕTÄbÁ`®j¯¦ÁÒ¦€•ˆ¹”jáIWŸ¯LÍ X‰¸“x¼›‹«×•á.€•1$¶Îlw%âEb€b*—?M`SD<£ ¦æ¬äjþh¤U >ì càÃf.äZ{mú[xƒµ‚,øšYúþbu/[þr9˜ÏÀ q°Ø~ð;²™ B¬2ÈÌÒ÷vmÅk”d‹¹?¬XLéjuïÕä–Iƒµ‚¬SºšÅr+«‰ÔƒE/+¹šêó~'Zo9:£®ïàCÄÎP ­äןº¯)+¾¦vµ]=€Q#öÆXÉ׌ºü Ššï:{^-fÉ^+ÓÕ½[ôò‚V°@Ì4}ÿ$XÒžçaºººƒU\Í4}?ÓÎ5äBƒ9¶¬XLéò>O«ÈQ3óV²˜Ò5ü1õ¦V9Ç£±1¥Ë„¬Ž|—×wp5\‚W3êcùH ÷X°’ÅŒºÆÜs¤›|Â1…‹X‰˜Ê5½Í“Þá%\9°âê°vªo¸B{ˆº˜¦ÿ>änRA¦EjMêa¢qc$Vñõ Ä7¥-?I7JðÀ‚¯™¥_æ˜5 µñë`ÞgÀJSºæ\®?ªX7ÆôÄJÄ”®õΔÕ\欰âjJ—?–¸ä×ÿsÖV²˜kq5;a¹阌º¾ƒ§˜àëÞý™$õ;^¸Þ `Å×Ԯ埘å½3]Vò5£®\äÛ½Á"ÅV,fÔµ=zªù—ƒ©ã«XÌ,};×ç–ªœX3XÀÀ‚ÅÌÒ/»Û¸%µ¬{0Å6`%‹)]{ø£…j/ŒÑÃ+s9í=ëÜw[ÌÕÕ,Ù `ÅÕ-bÛä“ï;²Æû |È›Àìª~¶z/ÁÑ0ʬ˜Ü(!­åœ¶œë:˜;ÀН±‰Ï}fß•xrƒ"X!æìêÉŽ@õ.f;S¼Vˆ©]&ô{Ê/—¬4»¨]Ý»–›Xñ@Ì™I¬BÌ4}/›³Ý4¦9sn+g{Þyº»ä?Œ1· ‚…1fš~µýÅŸ—Qç,LXÉbJWß^/ç‹­0¹€•ˆuY´6ÿÂëéáÂ*€W3ê67‹\S޹+YLåþ ùºûžr°˜ÛÁŠÅT.›.ž„­.'欬d1•Ë—É‘œ¼7X}ÀŠÅT®ic4–Úl0g=`‹™¥_m+·ç¦îÿ@ÌuL¬DLåšÃKÑå²îÁ\Í,}SÛeÓÍèjq8å+YLåò«ªÖoÚÒˆ¹Ž‰•ˆ#¸{Ý¡Zy; ƒ®ïàCŠg—g´©VeæÂ¬d2¥kùó²U¿´fñI+³‹Òe£d'lµÃË`*lÀJSºÖœ{=õf1!X±˜*°ÖÞï¤)íæg²ëýø0»Â ï4vmç_}ðu°XÅ×ìzïÔ“¿®úš•>,øš œëö$8ž€,æ8+YLíÚïrtõ[L<_+3êÚsú+ðòÍëXq5£®íÅ÷Y·8ð+YÌYí¯ÛIWÜ‘'{ ¬D éj©¦â%Y²«„°âêEâVjºÅ“¼ÀJo‚Ç()£‹ÏÃÆØ ]àÃG `òû¦]öõL‰?`Á×ÌÂmÙ_7iD+Ä…Ä^¸+?Â7™i°Ê ó“™­C¯j]rôÓP×ý>| &[øÒn“¤¾Þágÿ€_wûÓ_úJžLµ`…xxy“KyYº°Ò S»L{J*ò61™ãÀŠÅœšžÿ¾e£æÓ?€‰;ôµ§/}gœLò`ÁdæÓ·²²îåèç}‹ò:bjWÙž1­F?“õ)«Ì.æÓ·Zš?Rd‹±'°bq%q>;Õn“9Þ¬7["Kí0™Ç°’«)]~ì+I=1NÖL¬DÌåä›Ûw•SWW3¹<€WSºZñ¨U½˜Ì-XÉbÆ vÚ´•(ßÀLM°bñ&ñj«g¹€)¹øgx<%þZEæ¯àCýGÙ€£ß&I]G™i¸¬Œ2µkôºÛ¾É ;Œ2cb•QfÚ`æzûgÔ•Ì¢‰€•ˆ©]Ãû‰ê]º'KrXp5óé›M{¨Ü&X!¦vÙnea“Ücw²Yv+ÄœÕæ¨µÖMvçuŒY¬°ÒS»æÊy§›w)ÄÔ.b%bF]ËÓ*†Üâe²)€W3êZvUmà<™°’Å+€=Ó_&4sòÀø|Hï¤t­>V½ímuð5ƒ‚_3Ÿ¾­a§š¡¦”MƬâk~ïwðXüdÿ°3®B_¾~‡y½×_yº4ÞX¬øšÚåÝãw“_]ž¬É `…˜‚»›AõÓüfBýøpÍF_ïnVŒ»O9W“™‡ÀŠÉxz÷¡›üóš2@¬4¯)^þÌý”kU'kV"æ‘qïš½1JÌÅH¬D íêéÝâ®ÂaŒ¡×,Œ1ê{ª-Ù`©§s–ä¬b1ÛÞ÷4üp/?÷<˜°bq!ñî#­¢»z‘`…ÒÕs² ½Ý„lWC}Vru#±LqeW3»<€‹;‰gñ AÙÕLò`…xx•Ý÷Mätpõ$/°’«'‰ýUÛ¬öæœ,Œ X‰ÊååÄuÔ›=õJÌ*‘€•ˆ©\¥î\ÿ·íøyŒW ¿ÚNØ£â²ëû†ìiû¿6äð![:˜ÜÓªw{êÁ×…¿XÁ׋èº'‡×%_¥²‚ `%bJWñŒÃ&WÏ `eù«kjeë¯ð-æÓ?€)CÔ®š,*Ïjs£É:‘€•|MíªÕNºó¯©Ö+¾¦v™¬Õ䫟Aí"V²˜ÚUÍ㶃üÁâàk€‹¹ýÙÀ>³zHfAÀ*3Ÿ¾[ôâC%÷bÃý,f>½÷e̹Ë9áhÀ 1¥«áíkTÍdÀJ®¦t5S²|W¯~ ¦ú+G°×éá+Ð÷ù÷kþ‘®ïàC®}mQêÚI?0òN!€•A¦tÙÔl³È…›“9š¬SºúôªÏ»O9bNk‚âˆÝïÛ 5ɸízòg¸?uS“|p›ÁÕÀ*óšõ½ûë9EmÆ>YB°1µkøGÂ}W:udnP ƒÌŒú><½¡«Mi's­V²˜Ú5fòf…òzb.+óÄh'¾º—|ŒáEYÀJsV‹×Rºy³ð@Ì}‘X‰˜Ò剴SO/Ÿ¬^`ÅÕ”®i;ùÔÓ#˜j°’ÅŒºì$6ÿÂ#±“éå¬XÌ¥hGõ±&~õƒf2¡þ|ÐL.d³ÁŽ"úWUf°`2ê»…ïòê 3Ð$Vd¦höÕ’/ ÝbÁŠÅ”.l>ÉÏ=O¦µ¬dq à™*Ÿ‚x»*îïàÃ'$nŒkxg¤¤Š&‹V2™Úµ¦uÕ&“59+S»¶ÅMKoí¸Ø4=€•ÙEíÚÕ.éó^ƒFÌ%A¬DLéÚkŽºä¨k±^#€W3¡þªTïÞß:XÌí‰XÉbH×HÅ_ÒKúäÂ.ÀŠÅÄ­5¯?P-ÞäV²¸“xöló\½Þ[̧`ÅâAⵆ-N1øYÌjXÉâIb› K®9_LäX‰Ê5rMvüšº«¡\¬¸z“¸µÕ»ú$ÝbŠwÀ*óƒìÈvòîŒê¹ãžþ|øÜŸh²#³|Ë®oXð5óéGIþJ…œ‰²˜kÀ 1¥ËÓá}zªƒ<É ¬4ÈôVñÇ ¸Å4±˜Õ°Š«™O?º¼r–›Ò.¦<°b1•k¼ÛNܽu%f¯åVˆ©\Ãóþ¶ú`ÌbéBÀJ®¦rÙœ4E‘ß\L¨`Åb*×ûgµ Ìb¦uÀJS¹Æ.».9e1ï8€‹©\Ô’ôsêX!¦rÍêSsKVr5•kŽ9ýªL¶˜ë˜`Áb¦ÓÒ$T~>e±›vÀ*óÓ÷˜¦'ïÊ"1¾e:ýøpˆáB^væzŠ÷bªu+¾¦tÙq(ýÃÒ…€•|Íò£÷mñV€éôàCÎ!”Õg½m’xõu¸Ì Xñ5µËb°aq„zwÜ(šÄJ¾¦v­=Z.ú!&œì V,¦«·—÷Ô-Û˜‡À ñX‹Y‰øp±ñ‰ñ|˜]ôõîÓþ½äx/° Lf>ýض§~£É"‘€Uf³ÞÕµmé§&y°b1´k&ÛSkêòìb:l+ÄÄÍ07(ÖL¬äêNâé¸ôm‚I©¬XÌ.n+³‹Ú埾mAª¢Éš‰€U|Í„ç9-†˜waù˜ÓšX‰˜Q×l=y¦ìjN/‚W3Þ~ðÌ=©íÃdÀJSº¦íîï§³T‹¹&V,¦t­lsdݽ~{%fŠf+Ä\NË"Ôt×Á÷êêx•\MéZž›•åsÛf†f+3ê2ê¨r’Ófºb+Ä\‹Û}µ±§>hfåñ;ø ™\ÈÎt[ŽêuÄfÂb &35tz’öûµ•˜+™`…8X<ê*õæ Úôæä"V™ÖL§ŸÛ&ÛÞwJµ8D©+ãW¯”ü‹J’/»ØŸþ|H&Á xŽ=Ôx‹%}+ùº“¸z{Æ»fÜ_w2¬øz¸Ùh©ý«+V²xlKb/Ô^>cÚâ ò´ƒ¯W­­ËwN»›V|½I¼M{òMŠÃÁ׋¼À*¾fú•KOyÞ%j,æ@,XÌþô¶¯ùƪ^Ôo?¬dq!ñÌiëÉ7ï(õu+W/›˜3‹ñÞûÆûuÂJ#ìZ%›úTùyäÍLÉV,ær*ÞÊf«·Íj¯€•,¦t•nÊ7Šh2a1€‹¹"ü¦ÐsµywJ×wðás?Ä·œ¼î^>˜œ °b2‰íxmÑ£Ze¾.¬2ÈL§÷Ëßá/ý©3›-€‹™Nÿn¹5‹Üky3}/€bJWµ¸Ó£T™˜S“`…˜ÒÕüYŽ!—Èn¦9°BLéjuxv–ª™9ð+M.J—?`»¹xbܬé X‰˜ÒÕúòzªfòÝ–€•ˆ'‰w23¦>ÆÁd€•1Æ=ýòGwmÈˉe¬S¹zµ3nRo6«Vq5ÓéWo-yFšJLÉ$V"¦rõnqD»ITº³Ú+`%â¶CH)¨Ý~ØýóÓ¿hàCHyY€šî¾]fWe€…ÙÅ|ú5RKcÞÜÞ|Í„XÉ×”®Q«é~½Çt£V,¦tf¢—n†s+YLésö|ûZçÁbŠ&ÁŠÅ”. !J.j]ÌfµWÀJsVÏäoü©]¤6k®V!懜5K-ufùl¾ð‰ñ|¸€á´žÕ„/Éõ)›V, 2¿m®ÙFö? úšÓšXÉ׌ºæHcݵ;sV+Sº¦MÍÑå’óÍ<§V\Í_m'ûì}·Ôã“~ú |Èéà ¯w)³á2&€“©]«Z¬x'¸‡A¦«‰•™Äêyv¾RüäëM_ŽªŒBl“ÙåVë¾æ}Á‚¯ÙŸ~Yt½ýæçmÅ\+S»ì8,rR¯÷X>°’ÅT\ÛqRùçZÌ¿fæ0÷·6åÖŸ›©;¬¸‹¡ÓöÖÒUmç¿Y{°’» ?¦ÕÝ—“,õL, `ÅâEbûÑyTñÆ;| XÉâMboíøι øÑbO$±y~Þ^ ˆƒÉ+ÄPŸsnó.ÍéàjNûìj#.$¶QjS¿†eBk+W÷ÒmI¨›*«ãV²¸‘x|2"1ß| X‰¸“Ø6«¢w£ ¡@+®†rí’-ìZjoÆÍú¥€•,¦rÙ/¶“þ–‰;‰•ˆ©\þôþ ˜ÂÀŠ«©\Å¿ÃyVóÃDÀ*ó&u{ñרjcjãÐ÷>„åœÖþß[Ⱦ¦‚,øš)ñŸ’य'&´°BLéª}ŒZô]‚ ­¬Sºª',.y—èXivq1ÖejëÞ—® ŒCßøpáìj¦¡©«ŸÍíu+¾¦„´\Z’?÷o–ǬäkJH³uNµ3õgs{À‚Ålô¾Ûl¹ûJ%æ !X!fðÓ–ÅC¾”aˆU\ÍûrÏëj¥"æA4 ®¼À‡M®dÛbR-j»Ï¶ú:_âšæ»ÌOô5cb%_s!÷‘³­Fñ`ÿÙÏ_'°b1£Ÿî=`†Z¡ÿÛ¶J°BÌègxóΪ¾p¼Y®°’«)]#ÛOn7Äô4±1¥k´5†œJûÛC°àjfþí1JíS>›³0`‹™™n)ïÚÔzÀÒ¿N`Åb?½ûÔu̺ހ•,fð3ó´à)Ÿ…þ@Ì“*±1•k¶éÙ â•äoJO°âj*—m¨þ!HA˜ÝÀ 1•kÚüXwïA\ÍuL¬äj*×*5¢Ö[|Ôçu+S¹V¯Ý21—Á 1•Ë\Õš\8õþøô:aW31}¯Ùw+SÕj~Š X‰˜ÊµÖ\­©Mì6«kV"¦»¶¦J‡€<]A×wð!èâ Û’ø …ˆ¥ÀÂìb»¯½{±ƒ‰šöÜ× ¬Sº,V{É‘› Xi)]{ú™ONŸÙÁÓÀJÄ¿¤+ÿ阘ä&}ŒmŒ¿W/bMfÁ'û§iýë[Ý#øâ½hrõN©w/`LžüÙ &ÿ$¦;¶­ÖûM Òa+yUùç뤃=<j¡üþ){ø +ÏÒúº9åˆÃV"® ÎþXL¿+O¹ŽñÏǺßÀÊsIäÜÛL]¬W÷÷ 0­¿ƒ•ßœ]9{?\1ËòóçuÂJ¾$nc¦©&g}¶Õ× ¬øšÚ•ç² Fp¶ÕßÀ 1$¯íO!iw]Ÿ/W¯VrõqIžPS0z ¦‚«N®Rkó.ⲫ)! ®”.ÓÛÝDÍü|Çy°’Å”.Ï^ÞÙ[µ˜»ÁŠÅ”.û?½ØK;©~>§¼NXÉâFâ¼ÚícWâÌÕD¬DÜIün;,¶ø|[x°1'HíÝÂå"öxB¬¿ƒÕ)\Èuä:šÚoý³¿N`evQº¼§ÒHâùéó9åuÂJ¾¯î Õi «OJWËæ®¿îuÎk‚WOS+ïâ”yfÁìú>D¸M;Õï’Ô÷ >¡ÓëVL¦vµ÷åÚÍÿG¼N`…˜ÚÕÖž{‰½ƒ?ßq^'¬4»¨]vØÜóöþ÷`1åš`ÅbF]½{b¿šóóÙÎ_'°B̨«^z«Æ?_®^'¬äjJWŸ½¨/6|>ã¼NX‰˜ÒÕ—·u”£®ÂIM¬B¼(]ãýáJ—®Aé"XãEÝàrŽå'ŽxÀ 1£®ñ~èæ2ôàj]ÄJ®¦ê½¿-,õÑÝêe–?bý|(b¤tÝ’÷Æ—}ÝÃÏþ+¾¦tÙùzyûr™˜óš`…˜Ò5í,0Ô…>_®^'¬4È”®9V¿o+p°˜bM°b1¥Ëö—n§ yŒg0`…˜Òµr±XTóùdö:aW‡Ûˆe‡¯’Åת>^'¬DLé²A{ª}\>»ùë\½)]þõÈ‚|yVs5+YÌ ËVaŸIm¬öÙT_'°b1•kû£ê÷¶Ï—«× +YLå2Ñ+í¶ÞÁb®c‚‹GÀ./Õo÷6ŒßÁ‡]‚ ²=pÚâó¤Ÿu¯Vòu ¶S½š‰Ä‘±1¥kï6òT×|"§× ü<È9Aºr*½ï¥¾öãˆVˆ3‰«§vŠýÖ?_®^'¬àêœ ‰ý1‘¬Ç}6Õ× ¬X\IìmI¦ønBü€°’Ř™Ù jfA«žïá^N¸¦ Lhrö×Ú]NÇÕ×;ñg¬øz¸t[ŒbGìÏ—«× +ùz’¸ÎÙJVo~z'`%âEb/ýgEŸäêLf€Wo¯”r»i©t°˜Ë‰XÅâLé*¹Œ¹?éá×J±C¦5%„àæàüÕâLé*¥åY?9ìÅâœéibŸËÛ \þ¸𶸠Å*qè{º0pj–þ>"/m ~·`e :‰Çlu”2Pa‚+ùzü0%Ä‹{ò?ß>ÜF`Å]§êÊ÷Ïã¦â.nPÄJï¿.”Ú<Êÿ¤†Jîâ@,¸‹Ϲö¶g®ç™yuïV²¸ü0·äúÎHk7Sóà.ê5ÁŠ»p€Ê-Yð8ûyfÜÅ‘XÉâþwÀ $ü–-§.n2¿Ík‚wQ¼XcOñUÕÏ'û× «l«Ì²í¸ÏYÕ§5>Çó× ,…„I€ß['™˜ƒL°@\© ÝÂûêgÂÁ…L¬âêJ±uìÏ(ÉG{¦ °b1Ï@¶—û (òÝàæ¬&X!æüèÞ|s±ýŒ„|jd9P#u‹¯‡|ª<}˜9¯‡¹oçª.¨œJøÙ?`ÅÙÔ®áý‰Ô‡ObÆë„•æ5µkÔê×êÊÁiM¬DLíòg*v¾ÉѼÏ0A€•ˆÃϱƔ¿Çó9ÁÂ7j×Xk*'ÐÌ0ÆÀ*7j×Lµ¶=Î{Ûa;gA¬²#3—í¯ƒýÌÚf)¹V¶s~;`a;ç‡/ïÃ2L9ÏæÕ]¼Y XÉâþwÀT-b­Ï3J’»Â@¬¸‹ bgM;Ç,5Xlav+Y¼þ˜*°ŠÅ?é®0ï üÙ *Àdë¼j÷w¶dÝãì"VQ&[ç5FòNϲÅô5ÁŠÅŒ`–wý»{sê`1}ÄJSA¶¿ÐÕCŸ+«× ¬XL±‰Ù·ZsþIcy°’żEÙ~á§¾RñÉ­x°1ÇÉ_UíC®šÈ À‡ºgྛüys•ø«a%“Àl f–Ë sáz"X™]”.Ϥ¶,T‹¹Å«XÌdë¼m=Œ-Br+^'¬D éòtmêßú<°q!±g›ø~R^'¬D\ .cÙÒþYŒ‡¯Ã×øPÌAŠº%3%`%‹vy[;rÊ%*™E9¬XÜHl««ª~.%_'¬dq'qõ÷7B +oê+wßËüþÀŠ«'‰w¯»ÈU²™¥1¬cfÖw¼¶ðòå÷°«d„]àC1"Ö“ƒÇZbWÉx7°Ê 3EÜÃô6n"|ÍyM°àk¦ˆû q°[ó£H+ÄtuqXz²ék‚bJ—)hµ€M^È›¼ÀJcLér ß‰ÞÔ°bqX‹Éù é!Î,¸¨ŠƒÉ}Ô­øbbFÀJ¾¦vùsß•‹ˆ‰•ˆ‰mWMIÍïÌ+Œ°ñ&±iOÊj‘[^a9«37ýýJñœrߊ”²¦5sÓkõ¦É÷LXÉbJWmfD¿ù} ¦‚+Sºj¯Ó~¶øÉ>³î!`%b®ãún4vSèz ær"V"fÔU½;c¯jd]˜ËÀÊäbÔÕì7w9—-³Ò#`%‹©\6)-4¾i!s æ¬&V"à:m£Ä甇]¢2êú>dYr›^ØMdn ƒÌÔôÚìèeÛŒ8Èá¢,`_35½¶Ùü Iñ¤ZXo°1¥«§QÒíÿƒ«)!+®¦tõìÏr¨ç¶pO°’Å”.3j¥¬¶Ñ,‰ ™X‰˜³ºÒmCWÈ%f€WˆõÞŸ?¿úáøÔ”ú>Ô]Q»úìcÖ%Þü¦Z¬äkF]#uÿF©~G.¬° `Å׌º†¿eÿÏ[X…˜Õ,3Ÿ¾ ØÊ¼ùfvp5cbW3ŸÞvóìýtÅ#ra¥|ÀJÄ”®±ýtשùàj!+®¦tÍä?Õ«ã­+YLéš¹{ƒ{uŒY°qàÝÒÆó t¿ƒåÁäfaê¾Sà ›V™Ò5ûlvúR÷§p_E¬äkJ—÷¬èåîö`q`X°˜iíu%‹ñ—šO_Ø `‹™Ö^—í¨ÝÛF‹ÄTb%b*Ȳ -ç›jž1cb%b*ˆí¨uéUÔ…)e¬Œ1—Ó²£æ’ÈñÖˆXÉb?;6’œæT˜ËÀŠÅ<·íj‡ë‚FÍOÄœ]+ÄÝf¯ë¦´åêj¦ñ¬äj ȶ¹‘›~zbžS+3öÙ;Ûo ‹s«X̬v;þæOŽøHN ó’am‚ð ôCdÍâàCfzüÕ»§†Ùõ°#Ϙ¿ÌÎöTÚª^h¦¬4ÊÄÍŽí&:>W+‹»Íqóéê@¾ý¹){ÀŠÅ›ÄmŒw£%Íb沬b1³Ú›…þZxEÀ‚ÅÌjoÞÛ~­-‹&k&X!.$.ÉШ—lLãXÉÕ•Ä~;:Ô·5 Ûþ¬DL岨3zwè;¸º`ÅÕT.ÐÒ÷M›Õ«ÅLñXÉbÊžý_ÙŸ8V·§…+§ð!CŠ bà=’šóSØ?`%“ñ^iµûUÁ]ÀJÄ”.w½ n¶˜Ãì¢É ³‹iíÍ“¹3~a“Vˆ©>uøñºÉ9©Lk .¸1Ö™zj“ÖÂÄã€U™ií^b’vù ƒÌm‚`Å×Ô®öN ¹k\|%fY+ÄÔ®6êûÑp™˜¢I°B̨«mSònœÄ\O+Äœ\þŠuÞúQ•Wt¬Sºz­;wõcanyÀJ³šÒåïç±Tâpö"V ®üX×lnX”ŠK¶ï·Ê¬öð!ŸëÉ› î*W1Ö{ðó Wfµ·¾ì_r׊ÂT¶€•|Mé2™÷œrôÃz¯V,¦«‡×ÞUó,æ´&V²˜Ò5Æ»1¶|…Ëâ§V,faGÍònÿ®mŒ51ìú>„]ͱMùo{àLfTO°b2µË½§¤_¥²ì*€bj׬þ Z}ñ¡0•-`•ÙŬö6›—«Ë·ÖÌ-X‰˜'Æi§ÍùçÌ.`ÁÕÌjo+-šLX À 1¥kåmB/¾ü9{½NXÉÕ”®eÚÝ›œ²ƒÁÀJÄ”®Õ¼dýæYø1g5±1dM x‹þÅžH¬Œ1£®|Ðå‰ ëqX!¦rí™o¾Vd–ïžïئÜY¾òÙh ¾f!˜>g·Ú¼¥æÀ ¬d1µk®¾ZWßW¾ù X‰˜Úµ^ Ì-÷àjêÁŠ«;‰Ûðòjê‡\ùÄ?€bÎê5ý¦œqTùì<€bJ—ß.¬tQŸÃs™ VcJ×N9¯¢–Н|y°1¥k?Wé¿‹êƒt-J×wð!ešëÓö¼5ÕX òõf ƒÌ|뾇9+É}r*Ÿ°BLéÚ³y˼ó> r0Xe™o=’¿Ì+r¼Wù;€‹‰k«[¯fYÙ7€âNâ¶^EýEW3µ=`%WÏ5Æuœ>-æµl+OïäsS¶8 1°’Å®‘ý®ð6LbhfÀJěĹäÑÕGØ•9õ«3ÝÚ¶ôåËcÌÙE°0Æ;“xšöüyÎ,Ðñs"X8¡ã­ýÈk´½–ذ³²SÀ*‡l»þ/`ªí‡²W “Ç BÀÊ8QŠm-FU_œVæY¬43'ÁÞC;áxïa·¹Ñå|Èl§ü/@³åFÅá`1€_sZ¿J³Õ¬>Að*0ù+ø°UåGQ¶-ï ™ O&‡‘øÙäÆ,‡áå¹ó¼´:L/~PÄ Ó«ñDsøñÄZU }§õëëïàC # üæ]–\–.`Å×ÔWƒÓ¤ÖW«|Ű’¯ÁTßÇ\O>-a V,¦xÙ\ëU~>U™[°’Å”æ OõSÉpÎÀŠÅŒ`ZóëÎËfâ`1ç±’ÅŒ`< x%¹ß^å+¦,fæòhË·É—/âÓbÖÕXÅbf.Ûb>ö”K›Ô†X‰˜bÝs*+ÉÇFL; X‰˜ÊÕ[þ’I÷9Æ|ZÀÊS¹z/µß.sn+YLåêËrVsáBrW?G©™Ë£o/i°Å\”v¹Ä fËóS}†Í­U†ÔWÖ' `Å]T[%¶í Šê.ʱŠÅa›ûŸÁT1vm+_ÒÙîbôC°à.&[ðR§ÕH`…aVùž˜@XÌ%™`ÅbJ×n£Ï*?ü¬Ìé`…˜ÒµûNc_öõ‡“2®ÄJ®¦tíéïЇºšó)`•™Y¼¶¨~‹¬f…µJéú>ÜmFfûSß' åù´«±.öøpjšøØ– ê!.T3€… „u±m}é»È.3¦VefL{µÔåGV²ÅÌ+W÷Ý×èâÑsc¶uÀJW{º‹h2¬X íš¹xŸQù-QH‹`…¸“¸v›˜[|¢ÒX¾&`%W¿Z$ÏËþé`q&3ÀŠÅ“Ħ|s yŒÃì"X!Æc+ùœ{5•¿5H×øp¯Á¹$ï ÷¾cT¹‡_ý‹U™YÞ³Ø>®n¹leÒa KrwW[õíxåËÏ€U–dfˆÏ2ºŸ©»‰ V"¦t•9W½eG|ŽqâçD¬DL¨i¤žp„û°"3Cü|ˆ8È5y?€Ûû̇ú¬Ì.j—w±EU¼ëk)¸ XÉ×Ô.Ï6Ï·þ¦bNkb%âEâ‘-^ÖÏéyCÀŠ«wÀîÝšiŽÄÙõ|Í0ÈÓ~tS ê6¦¬âë¦õ²ÏQÞ¹µf5°1µ«åiùú)ܰ0ÈLŸ~W××å.ø`1¿'b%‹v™ýãµd©se$X±˜aWÛ}xIK9©$XBX‘{ö4æÎUŽ÷ø«„ÌŸ=¿6_E%æçD¬DLéê=5ït!»šcL°âêMâ•m§»Õ‡Á•OX fEnß„t[XÅ·um^`W3A|Ú÷ŸS½½­;XÌA&X±˜Ê5|†üéž+s‰!X!¦ráÛV÷æ#ð+¹šÊ5L~þ97ˆY”)`%b*—mìW+·s£CVM‚WS¹fµobwõeIÊVˆ©\³ù«‰">„n3ð+¹šÊå­WÛêãÜEÀŠÅT.SyïG-O®À ¬b1ëqÏU¼&\•X–)€‹™>-:ÍeuV‡«àVˆ9AÖÊù•§*îžÒ«À‡ø–ƒlª}ŽYýž>°b2¥kíW+Yyvqy"Vš]\Ìwž~Lðf>ì%Þå=€K M¶EuÝÕy®ÎXñ5µË"Ål!¯NLµ&X!¦vÙ/n¶áVFf¢¬4ȘÖ+Ù®>ç©FÖá^#€‹y `ĉ%Ûf×F}µðaqë4¹æ¾ôÍÆ£ÔVL.$ö"2ùr«qäM^`•AfAî•ü ö­zÖ'ñ +7¯Q½•ìêJf€WsŒ³írË”ïb7¬—½Jjê‡ÌÅ-`%WO{ ¼šå™%BX±x‘ØÏ2¶Ú¥ñÉVÀá4‚ÕÕÜU¶á”SC/FøãWXÜS"±Eéuâ^ô‰˜2Á q&±×3¨òÁk¬àêÎzÜ«L‚t«Zq~¨ +S¹Êš~Þ­ž*²]ÀJS¹ìcðšƒjêMã³ñV,¦ry`àzdbJ&Á 1•Ë[ÉêýWSRVr5•«n Ë»ü†ºñ±i+S¹Úû“, |¤À 1•ËŠäry}p5籊«™Ôîå_êZò{œ€À‚ÅLj_ÞÆduµ mc2HÀJS¹,Ú]3 5áyb`…õ¸3©ÝSÂ,f+êá^ãÃ…~^;“ÚWwMèrŠ÷ ¼ÀJS¹úÛJ·x‘`Åb }Ÿ¶ÑÌõW«¿ ôŒNàÃj¦EÆ-å·î)¾+ùšÒåM.¼“Hv^ÄJÄûÊ?”ßM>…åÙ€•ˆ‚Œ<ËêXÛ¾o6½EÌï ù>de“kšcêÅ ?`á£ëÓë-P‘÷×½4šü|H<&²[»½]8˜LÍ%X1™ä õuêãb¥éE˜©{qØË§|°˜Ì+3tšþþºÔó¹âÁbª&±’ÅÔŸYs2#˜`0°ÊzÎcØe±ÀV()‚¡x,D0L‰_sæ9²Z÷¦ñ'`‹™¿<×ÈßçªÄaŒ•ˆ:ÍÝ÷hK|CòPV"fèä]PƸl‘·„”=b%b†N«Nï "gtðY+“‹ÊåmBKojšë•¬ò3%Þv‹Åt^M3èL% X‰˜Êµ¶w Ùjo›Ád€ÉdpÛ¿”1ó­Öû'1kÒ°BLåÚuäÑ.×Wó;&Vqu ?Úïa >D'íßÁ‡³.~È»1r—§¿+™LéÚs´ª™÷^, 23â·©+§¡fV4fð°BÜH\Rõþ>ª«;y•\ÀÍ“«ðÀíaóÕpKø>\`/šÜý W¿\à}+¾ž$ö.ÇK}oÑyˆ°’¯ƒÅö5ú…›lq#3ÀŠÅЮ“}œUíÌÑÙ `‹™¿í÷zUßsp| æçD¬DœI\V*S}ùÝyq°q!qŸ+¥[9ÿÃsv,Œ13âwÞi}+{s~‚É ÁO§t•d+Œž‰áÕ‡X%Üë\ýgï_‹ÆNéú>,ŒœÖſ͜å#o>œ `Å×”®ÒfªS-ú×Yþ7`%_SºÊÈ& jzxç{‹€•ˆ)]židÎ÷mExV!Á]ö5¦´Ôô™>2g×Wða›K_W¯~Íj?\ãœ-€…ÙÅŒx‹Ê‹§Ÿ÷×_óc$Vò5µËcG?U-æ(¬XLíòz£eªÍ:_˜¬dq'ñö*Í··ƒÅ V,ÆŽq·âׇ|Ã’n¬SºLm]Õ„1±’«ù9yŸôukØy f B¬DLéjÃ$ 6Uºxé° 1OpmkJßòó¥Öƒ¯ƘÞ»{ï•„ýÀƒfNœÓ?€‹*¹—¼ZÚrô3ÂÏX1™ÒÕ}c2eÍäµ{ÀJƒL°eÒCEy}š¾þ >äWq^ÛwsMò1ëö°âkjWßËvAzËþX!¦v [ÊmË)†¸Çå+ 2§õ¨~³z«ªØMP¼V,æ[P^Fê–'b‹yá¶ÇÈžo$sy"V"æŽqXÐv?\Ýù0€W3mp›”’Pôïá†9ñàƒhrm3PK¾-2“9Ê+&3ìš;å©VòîA@ˆ•™a×l¦>ëR+ì@ V"¦ty?’ªLÌ@“X‰˜Òå™üþŠ@c~P+cLéZ©ÚWÑÔ™ù3+YÌY½ü%øÒg5_°`1‹¦{¥0››j‡‹9«XÌ¢é{ÍeêÓu‹ù=¬XÌ ãÚyyë9ÕbnÛˆ•,fÔµK5áêºØyÀŠÅT®í —Zi£ó5OÀJ3ŒØÞ•¬Ë]Lúæa×wðáZƒÒµÇl«M5Üë¼U `Å×”.“S‚¥†Ö|T°’¯)]{籊šJÛg˜\ÀJÄÿJWù)û—Ü·¥ÿf–þ~võø=Ðtl¹·Kî§Å+ð+X<~Sâ<ÖöË+ÙâJf€‹ ‰W^e\®û7ò+Y\IìYp·ºŽâEb`%âbïp“®Q®¦É+®î$öåe_Þj|Zü›ìøV²xx¦î=”T‹oþ+O—äŠzÑ;™`…8`s²ï ee¿¯#ý[të|Ø^SAJ~ÕsR5s—ð«±Ê ç@\êìí²šˆ9«‰•ˆsÛ %Ü]}ß·\èë¯àÃ?¨âEˆÚ£ÿ^1þ…•L¦v[ÍmÓ'KÈoNÙ_`a^gjWY¦@K½c‰B¬d1]í $S“kÛã é/°b1µË»`Ú’.~O#ñ{"V²˜ÚåÇ"¶ã”WäÁ™`ÅâEâWp¬6°‰bM¬d1£®ºŠWÔ×§‘ø9«JWË^›åv­qp5M&XpuaÔÕloݺÚS5.1ÄJ3êjžƒ8Õ»˜‘)ÖÄJÄT.üTôgy}“V\Måj^1}«7Œã7mð/¬d1•«çäµ÷ôÉE­&X±˜ÊÕKi;ËÊ•éib%‹©\Ý›"õ±é(\̉•ˆ©\½ù;wµ@â(œÕÄJÄT.Ûó–a{]uŒ'W'‚…1®T.Û–˜©Ùô£pV«X\©\ÞljÌ*†>£Ò`b%b*—·fo×÷×Ws V\Í%uØÏž'(!}m3¿ƒçdÁdsŸwÌ“M^ágÿ‚“)](î’. $ƒÜ¬4È”®±¼¨£,Ö•ë1±1¥kf I–.Ö‹óš`ÅÕ&·;Ë61•Æïàñ"Wäi{š¹o÷¢“)× &·à.‹wg©jÚàøÍ§.d)^sÚP¥[kƒÉœ_+&óKžË5÷òpê0¯Ã V™×ƒ¼loß×¥ÁÅ'q'b%b†]«–ý*r ºš+ÁŠ«©]þö2w¹ðD_ÜM¬S»–—I½&“ˆï¬S»¶×I­j߹ѸS%Vc†]»®=v’×§M!X±˜a×ö2©]=Ÿ1±ŠÅa—·°ã™®sR+S¹öì:]®qÄœÔÄJÄP®œR7E‘»ÜôX €…1î•ÄÕô§ß–óq'1À q#q·u5gyrmò+¹º“xå¶§ƒìEf€‹‰mÿ³kV‰†XÉb(W¶í@µ•MŸ\ô5ÁŠÅ‹ÄÞU£«mFoäV²8ühM¼äªã·¾ü#ø°™à´ö[Ñ–ËE~>À#åð³Á‚¯G&ñJÞWL]žú /°Š¯¥«äRóµÍùÁbÎk‚‹)]Å›oµ7ûàåSÀJsŒm™«ß^˜,æ¼&X±˜ÒUÆ+_®Ì>-œ[ÄJSºj2Ÿr‘8»V,¦tY„êµÔhoäDb€bN/ÜF’#6ŒàOiüý:o¹Ih¸¬ `Áä™Hìkj¿¤‡f¿cb•Ù5i±?ò°FÝKŒLf‚‹)]Í~òšºÅŒ}ˆ•,¦tµ6üŒAþžr`X±˜ÒÕüô÷vz°x’XÉbJW{ÛÀ©¡@ø‰•ˆ©>m6û ªšv<æÄ‡ü|È8¤v5/V:o?û0ÈÁÙ+ƒÌ°«go¹ ûš§å+ùz“ØKw6ù†q«/JW÷ÇqýÒ)ø@Ì™X‰˜ÒÕ½©{–ûÌ(•`aŒ¥«Û.d_Ç铸„AX!¦tÙSÖÖ'?db%WSºÌ„¹“<¹˜»°q`Ûòm<Õx~ Ì?‚דœ]£¾¶^ªZ/®‹ÄJ&Sº¼±û¸.n‡Ùœ °2»(]c¾ñÕy…Ù¬d1¥k¦å}ût‹ék‚‹7¥Ë[A¿ŽU4‹™5°ŠÅ<¥ÏÓ«hf=Î,ü&V,¦tÍUM}ôÍDáºH°BLéš»¥µåís÷Vr5—˜e{ ‹Såç!Ù ò|ØLpã¶Šíźœ¡ùºïÿ9_bOÑÖ_ôÂ…‘`…˜ÒµlÌ›žR‰•™Òå=¨ËT{îö&°B)–Álú¼v3wu±–ç¡uÀ Ä“‡Ù«#öïï £ß»`Zr,Ôû}J+H.bFNêøpßÏ}ŒWùØ3©ázØ«ü\÷f2ŸÞDÏ븼߶(£Ìï‰Xi”wm hF–Þõ°W%X±8¸z•ÞõJtἜXÉbhWI¶ïóã2Ùbˆf+O—eÎR«£Mž¤¬dñ"ñHuç©[¼É °bñ&ñN·ÊŸ·1,3¾dO’JKüœ&³pVquÎ$®ÙÅþR0ð`q&3ÀŠÅ…įó›KK ƒÅ“¼ÀJWO µÿ$¦K2¬XÜH¼^% Î¥äsR+Y å*Å>ÄQÓå[¥Õi_¶ØŠqæBb`%bªOñ—ÞTI§Ê™I°0N̈/ÅWEßˉ7ò«XÌŒx&]åo±r V,¦úÔb¡Àm‘8XLO+YLõñI½Ýú¶Oü&V,¦úÔY½8¬:«ÃÊF¬d1Õ§¥fÓ\Q™©ÀŠÅTŸ–GÉY-=KàV²˜qSk³z‹Ùb®æ+S¹Úò ²ÜÛkT.æ§Ç]îdF¼¿˜m©oÆÇæçDìçþt53âKO­õty#r ¦~+Ó[&ò¯ !âʬØò=€Iƒ50{Õ¬*osk ÌßÀ‡Í&E³ûG2äzƒïäX˜^•ÚeÛGï«!JNÞ¬4ÊÔ®nK[©jý˜É·Û+S»º—€Ùï*ñ’«ùE¬¸šÚ5,XIÏp+2Á 1µkøQÐííàêÀ ¬äjj×ðjpsÉÄ Ž‰UˆÃj>z*¯¼:ñÔˆñàCgטÛkÃÊgíúC°0È̈/¶ÍßUOï<• `…˜a—¿RÍòiè,X%`F|±Ý@ÙJþI±§ÁB,ÀŒø2GÝ«Lñv†].±’Åœ\Ë&¦K®jqç7A°b1¥ke[Ú²áÒÓÄJSºV34¹øxï $V,¦tù; ϵ-q&±ŠÅ̈/Ëö½lõ(ƒgü+sÃh_CòPBv5C‚W3#¾ì¼¼g·l1Cb%‹©\»y‰x¹{ÁØ`Åb*מ¶³r{®pÀ 1•k»ÌË]Ýgb`%WC¹lrä\ó­“ôÁb¬¬X}ÍCþV|Í]ß»®}—}Í1&Vò5¥Ë[„ÚÏÖ-æ—Lð³Å+W{“›¢n°W žV°x±H|]ÅoÛºn1¿d‚‹[¯Ökæóþï ãJ<°úþœÖaG°º¿JÒ— ¾`Ådjײ uÌ[Jü˜óš`…˜úcñZþçdQØè®4èë¯àƒ„ðƒZÛO$–øüi¶0C€-÷ȇ_ÍAÞiõÞ/±ÄœÖÄJÄÔ®]ý äÖ(ë°sã üñ«ƒLWÛf`çr«éöIÔš`˜iíu›æy§P™˜¢I°B íjéu¯*wO¼D `…¸¸¥9Ó'×b’wÀ*“‹iíõ"·Æ>‹;™V,n$¶WÙ—[ÕƒÅÁÓÀ*ëÓÚ=v™)O5Í2\а ™Lko¯íÝ.B°¸‘XÉâIâêÅóÔŒÖ ô+/÷䯋HÌt逕ˆ7‰mÈû–Ÿ§ÌLXc¦Ä·¼{éY}¬±˜.°ŠÅÎ]|Ÿ°ŠX3'¾ùý¢í°Õxƒ”,ˆ5sâ[ÍÞwø})¢XÌ™I¬d1¥Ë{i×vë-x°˜ #ÁŠÅ”.¯aQ“Zº|ñ5OÀJ‡=æøçND‰¬+RÀŸîZaMrWáÏŽVÑ.–‰oö!¶5·®ÖôÁ‡Ì2ñÍææ­Ê‡]¼ë `…˜ÒÕl·Ù‡z ¹˜W°’«)]Íæ‡‡²Åk‚‹)]=ÙLí·CÉ1¥‹`…˜³ºçí5õÅ»àÅÇ+¹šÒÕ»‡åéÀ,æòD°b1¥Ë_Œr9i?XÌIM¬d1?E/8ŠÄ?À4J×wð!a1Ì®i곦*]l°ŠÉ¼m#ZÿÃÉïXd¦Ä·‘w*µª› >ôXÉbJ—íò-PºÅü V,¦tåõÿƒ«9¯ Vˆ9¹lâB/»šß1±’«)]ÓâÓ‘ÔT¥Å£®€•ˆ)]Ó»ÿV93}²ÐX+®¦tÍæ¥¸/QùÁb®‹ÄJïÿÌ£®6M­W±âCÈÖñ"çüéëG̹«? ”Š«*ÁÂ@1¯½Ù¦fϦ/n,øÀ 1-¶°Ó»Õ¨Ë9ß.¬4È”‹£ÌWCÌéX<„ X‰8üê¶¼µéPWÕŽ£öðav…AÓ»ÖÉ79,5ÀÊ S–­e^RÄ?}Na‰•|MýYÛo7/­Ÿ»>ê±EØõuXm/˜‘ä(#Jüñ«?]ÍÙ¶Mª×P‹Û/¾÷ XÅb海݆ɑÚcñÙUÀJÄœÕûU`Q#Ë àV\Íd/¯|ƒ6lËÄ@rèøpDLÞ¯Ò7bUýŶ¨+ù¡SO¥”Wõ0Õט^¬øz¸6¿ö’-®äV²x’ØëZµœÿŠ+/{²ÀÒßÈ26€Wo{[÷v¹aä–'æµÛ”ô´–K’Âayâä"VYž˜×îU{—³®ñ$1°q%q÷‹ó‹·>‰ÃÜ"V"n$^Ëêõ„ßÁÊS¹Jª9ÏËÛ–ƒÅˆØV²˜ÊUj+ûOyÉb~O+S¹Š<¾¾#ú ^ìùÀ 1•«øÅæ5—í“8_¬S¹l7°kW_Œ.I¬2ÆÌj÷×;M¹^àÊ`Ábž8ùK‹¨6\ ·„àÃ1}0Ù¤gUùYðâ[ VL¦tù=éì—Ú‡A¼ÀJƒLéª63g‘wª“ß1±1¥«Ûö5ùùäâS V\MéjÝ«ŒÉ¬Âv+Ä”®6†-¬YãðI+¹šÒÕælI.g»x$°q¦m’Ûp©ú°—Ø8j>d~O¦yû^ÆîsYþ*€…AÞk¡S)©Û§Míú>$y3Þë¶èë¦õ“h¬˜|ÝKéI>yæ“€U¦sâ-Pþa¨0½+P‘‹*-¦ð°BL1¡iÉ)‡‹jX!æ†qöVSR©­°{"VãÍ:ïÝ›ΚuWó;&X±˜Êå«K»®ªb~Ç+ÄT®UV÷—®ª«i0±’«©\«ù§x©uúA¼ùÐ#`%b*ךeäTÔ½y¸3 `ÅÕT.›jÞUUž\,|À 1çÇÎ~_ ÷Pòw–¿!Èwð!„Ózg?òVÅz‡½9±Ê 3#Þ ¦û£$ñFv3M;`%bJ×öº Y-R¶Sc`%bJ×ÓӺ䗗u,Ì®~õX£•ù–ßœïÜ9»¾‚7Ááƒò‚ØÞc^ôu°XÉ×Ô®mKN-¥?ssN¬D í©[Üô75Ìü àôxZ¾™?’ŸJæÛÙ¸“`…x“x؆s^ é~ºšç/ûù£?]Í”øa!DíEïIÆ”Ã,f•ø‘K›µ½_KÄúVˆ ‰ýéwÂfóÁÕXÉÕ•Ämì*w£ß< X‰¸‘Ø—Õr¹=+wۢὂÕ1f©VÆÊ5üŒß^©sR+Y< ¶m}Íó÷vò!)(ÿð>Ä œš¥¶f‘¹Zxx—Mæ¯àÃíBpvíöunY­yÀÀÂ(³Nü(mø£Y1;â…ý9a•QfJü(sÕž‡üô’UX±˜ÚUm«YÿC/¦þ°BLí²¥¼”¥¾€ÜÌÓXÉÕÔ®jÊVo¦K¬DLíª£öÔ§œÁS¶V\ÍÏÉþq­q+?~ ¦ ¬3êjiØ^wŠuñ7“–Vr5£®æîZzyzž²°b1£®6lEßúƒbæ(°@ܨ\mûÝ–ƒV¼`…˜ÊÕ³¨Þ0YcNjb•1fFüè-o[gUåšA¬ V,¦rõén¦ƒ„† ¬S¹†'Ó7yYœ|öÀ 1•˦eéZÇ)cLý Vc*×h~š!wq\¬wÀÂÞœñÃÆi¥™åC¶`1°ÊFµ­ÿ˜gos 9Vì8¯zQ‚¿Öòôr9§ƒEX(VÃ6&»·_ y8Dé…&‚TÊÀØ{Ø@qŠðè'`•QfJ¼çY§öR+ÂYÁН©?ÓbÜ|-y| ¦É+ÄÔŸij+…z6ÈË…€•\MýY¶m[í–—q°˜ ÁŠÅüžVnÓï&D‹Ã'A¬d1#'¯‹ä¹üªÅaƒM°b1#§×YyRð6ÏøV±˜™Jí¦”«ü´e…­Á‚Å,kí%­÷ÌH~PëAéú>Ü_Ód¹°¶~ù6}+&SºlçiÇê‡Ü/°Ò sœöëÍxUk…íÑéë¯àÃcðµ—ÿ­CVëÅh€`Å×Ô._bJi—Àë-R»¢E¦ÄÏdÑ^^EÝõ±ÙUÀ*Ñ"Sâgòƒ6ߊęÄÀJÄ›Äm¯Ýoo&®ÞdXp5Sâgš~u«7K½?€™’ÁäZl¿ÚÔ+>’ XÉäNâÑJMU=EY¼® `e‰m…Τ^!Îa Vˆ)]%楈ÝÁÕXŸVr5¥«xÕÑ*ß]­˜V,¦úx{Ób±„º0.lÀ‡í9Ù$ •¬¾œÚlÚ°Š¯µ«X<³¯·›_f€_³L¼§8å¹ÐÏõ‰˜E°B\IÜl…ÑÛ„®ˆVˆ‰G^½Ë”l°ÒSº¼‹]ò‡ÌL+sV{'j¿žP]ÍA+®¦t5/ä2/7ç‹ y•,¦tµbÑË–oF¹EX‰˜QW3·àI^žF0`ÁÕ¬?›}ÿ)É×|G°ŠÅ¬?{rÿÝØ,æ*A°b1•Ë>Ã6‹úx;®0ÄJs1ï¶¾¤™å=òfÔõ|p¥«ÛHµëNäžágÿ‚_‡q²õ¥\/<™Ìk ²oùòHC^'ø¤8€…AfRüJþÒ7ë+#s†X!·=þéË, 2‹¦¬2ÈLŠ·EÕ2 Xe™¿^ÚÐöOoõù9a%bJ—?cÌ©©Çl›%ÎXq5¥«XTžFQ£n&V²˜ÒUööò,r ›ÑV,¦tÕœ<÷¯¨ó;&V²˜ÒU[NýÀ,æºH°b1¥ËËR{ \™˜ß1Á 1Äï“jº4o:¸:ð+¹z“ø•ëxy#{Húá*AìsÒ·Æ à¹|§«†{ ušÀŸãĽêje6ßú©‡]|ÀÂa“âWó²e{‰U 6/úVò5¥«õ²ô²[!.`%bJ—} £]K\Í™`ÅÕ»óòŽhꎱaÇø>Ì.ŠfÛm¾âGÑ×5üê_¬äkj—m6³Ò”}M !Xñ5µ«{R]SëQnVY XÉbj—W°J. ñûàùç„Uˆ;¤¯4f¹%ñ\Í/™`ÁÕ¼ZÝná>-{ b%‹)]£Ø3äF¯ú3?'°b1¥kô>s‘ÅúUåçVˆ)]¶Y©‰E>þRb%WS@f²½Ø[¸mý°b1½5‹·žÃAÙÊÜщúüù«Ã÷4kš½È6[š°b2¥k¶ÜZOÚÂø–½ŸVdJל­ûQ¬h®`1ÀB 9‚«—W »¼Ÿü´˜ïòV 4Yb~y>kÚâÈ{ëõsÂJÄ”®•l¤Ô„÷èç„•ˆ)]Ë+hfñ½ú{#òsÂJÄ”®Õ³Å¨òÛ½‚É+“‹Òµü\m²Åüœˆ•,æ†Ñ«Ïôë ÝÁbêÁŠÅ ºlãåhäå)sE&XP.¦ÓÛ¦Ä&H“c¾A XE¹˜NïÙðË“³Tb~ÇÄ*ÄL§·Q²Oqȱß ¬DLåÚžV†öøé¯5•X‰Êåñiõœ4yrÁ×,L.V˜ß)ûs© {°x‘XÉâFââ÷ý—âŸÄ#+w‚ýéØÂ)ýÃ~qb¿ø>Ä>…Ì}¶Z–|2'™¿‚‡Ö›Îîs{þ°<½FüÙÿ‚•éµH­yUf×oJ¼ƒ½J‡Ú‚‰º÷V"Î$^\Ôç@\H ¬D\H¼ûÈI'ž$V"® ÎÞi¸èëÓoË_`arý¦Ä;Ö ÿ´Ëj~°˜“‹XÉâNâf«[ºÄ/b~MÄJăÄ}û;Ù$ÿ>Qû +S¹lwÝêTs³Þ—1?'°2ÆT.[Ëm¬ôÈzÑd‚b*W©Ów@ê^¢rr«¸ºQ¹J[Ë «Äœ\ÄJÄT®2m+RoWŒWSA\ݨ\ÅæÇè—&¡Ÿ7J&±’Åœ˜ÞÕÇ‚§¤žF´éÁŸî KLͳ¤”Ô«‰Ü:™¿‚?™3E³–>¼]¹<ÊœØ+£Líªuxcõ`ñ÷=à_Xi”©]uØÚ–—ül®O+S»êþîJ]‘[ð4°’Åûwê_=y_Ù](‚wuêO+éUZ_tWç0+YLýi½­²oÇÖ‹)|+×€=T¢{Ø`wêÏwðAø1z7è’/9ñ_‡_ ¬äk†NͶç»ê*›ÁНiq·=óê—L¸ƒÅœÕÄJS~z+³Oµ\ûûÆíçV,¦üô>VÛ—‹éib%‹:õµVÉC=̉1Á‚ŃÒ5üõìªÒçÄý5Á 1¥ËV§²¶zCbWÀ{‡zpqĨPïàÃÅW0y˜äfõõÓûjâçV|Ýv¶Õÿd2C§ïàCÐÆyí im^Ê3òRÃ(û"N£Lí˳,uâ0­•ˆ©]¶QmmëÄ\‰•ˆ©]³&¦_ÎàÃé1Å‹à_}˜]c¦åŸ¤LLµ&X žÔ®9- +bÖ÷þ9aWO~Ès ÛKÈÄ“³šX‰˜aײß1—þú)Äå+®æÕjc÷ýˆý¬sïeÞjÝþ¨®¼ÀJ®fÔµ¦E0£7•˜zK¬DLåÚ¾A/·’WSAV\MåÚÙëC_jæ,¼ÀJS¹^·Un/¸C¸G°bqÀÚ¢Zÿä((ëâo™øGðá;øzú…®Z÷æ]íôçL^”.“ýµÒ¥Váaƒ»€UyAºòë2&_Úc|óÄ;`%âJâjöTÛ˜¼«þœÀŠ«[ÀÖÞÛs•¢®ð!Ð4y¼R»Äù]gõçVLÄ;×,?'|—;ý9b|OÞ í5KdbÌëVˆ‰mœ¼‘€:­éib¥i½I܆IÐ¥F☞&V!Þ‰Ä}öýG÷âIb`%âLâe›Íz+×s8½¡„,Œñ¦tùÉ}‹ò¬ÎØn°BLé*mº ȳ:w¬7[xœÇ­ÂÙx‘`…8üèe“3¿Ëš$aEþ-ÿ>\ÙSAŠŸ¡€¦u°XiZ“¸–ÜmY½‹_SºV|MéªÕ~÷-rú´xsV+YLéªÍ«ª…2÷+—DéªÞL.÷®Àùs?»º$JW]^fU-¢™7W b%‹)]^æ½fµ¹ò»çÏ ¬XLéjÕ+7_ÊQ,¼ÀJSºÚè5UµAà»çÏ ¬XÜI;\ˆ4KbÐÕÓZý?á†å‰àçcÅ’¨\½”ì•·T‹9«‰•,¦Þö^½Ï_W‰ò›ÿ>\.pvÙRîmwõ#Ü`3À‚¯s"vzÀ†‹&çL“¿‚&óKö‡1{õ2&gFš+&S»FîcÖ[Óð1F‚bZ<Š ®\ܨ$*±Ê¼f¢Mþb]vuXŸV,¦vy³ò²ÔDƒ83‰•,¦v ÙJS f” ]ÄJÄÔ. QýGÍ™`ÅÕŒº^íÐJ¿Hý˜+#Á 1¿oíÓfRSÓKÁa×øZsç,«­[ÙœO“+§Á‚É…a×J¥”¦KWåšL°BLéòÃ*“ qe,™ß1±Ê´.”®ÕFñâ[²Åü V,¦t­¾ö”ß•°S%V²˜Òeʳ»žª”kð5ÀŠÅœÕkïÕª.] `ˆ•,¦tmKØå'ŹÒ×+Sºöëa]׿cF+ÄÜ0ZÑV½T48¸š²G¬âj¦ÄÛ~Ùs÷.]á?‰ õƒX‰Êe»G `r–W‰Š$€W3%Þ6qÉþ²,^_gæìçÖë`q%ñH3—ÛÑàç C­`a߯”x ßJò«BÍâ’/°’ÅP®âÕÖMäcEju+[±Ò;‘_±¸’XÉâIb[È{WËÓ¿«ùÿœÀŠÅ‹Ä#Û¡6»*Lr XÉâMâmŸ×Ìb£šw5ÿŸX°˜)ñþÈÕ[l3Q‚§‰U,nü$,F_ýOµ/%ÌôÔôÿÓÀ‡l4Ê^ñZþµÿN͇-r«dþ >„åü ìóò—fòq9 °2Êa¤ü}òÆî“É&œÍ‰]†í7·Ú0ï]ÒöçVL¾ž~ü{¹žÐXÅb楗¹kµõ+ [‰‰ ÆðÁ]œÖsÛ>7ÉuûÂ{ä|Ílz/©ï…oÎG’_3 Vò5¥ËÖq‹ÕŠ£ï·¹?'°b1¥kÍj³ÈÇŠ!ø!X!æ!ÊZ˸ýN‡S‰¼®ðaoÎ…q§:¼•€jrˆ~VL¦víÜk—»…Ã~‘˱Òì¢ví—ô©mJ3‰•ˆ9A¶-ªÉ35ÄÓ¦Ó?€S“óz÷í+䕱g, ò ³kÚ72«*×#¸ XÅ×L§÷À8oÛö‰Ä!ø!V"†vÕdj4š\ò"wÈ@+®n$6#ºÜ[£ðANÀJw÷iël—s~ú$3ÀŠÅƒÄÓïš:¹fð4°’ÅáG{‚ÛÑ?}Èë÷C~¶@ôuNyìr»4;øT+¾Þ$¶f,}™à![ ÄL§¯Þ ­«½MßKÌÏ « 2Ÿþwp᯶]rïrè´1°1åçÕæÜK‰ÄTb%âžžº‡¾ÌÌÆQûø0­)|þÈÞÏqÅ©Yø¨&€•©Iý)ÞH­«Å Ÿ˜¬äëIb/5äòÒ!94€‹‰»…™KlêüVŸV²˜òc‹{êI` óJøÙâÊ”øZsöu9/Ìî `…8“Øü•‹|UbËó¹QeJüëMÌúSé|87â²Jðǯ>XLéªcŒUÕÊ%,mÄJS@¼eEÿ“‰"YÆ`Åb®æ¾¹x½JR‰ù¬S¹š7ëéK=ÿåådÀJ®¦rùK÷œåkѼF¬XLåj+ycur…ð…XÉb*WÛ~œdb ± q¦rY‘þi²õL\™Å°1•ËfG_mȳzf€…1fÂóëAð̈"¾‡å5#Áá|øÕÁ×&>ãZIá¦v¬˜Léꦵ#««DeâNÀJƒLðHÅBƒ­žeÔŒ«ða3Áeb¤eþ’áòNágÿ‚_S»F6á+—;‘ƒ¯¹J+ùšÚ5,>õ”JÌU‚X‰˜Úå+›é½xÝ?Fbâ†i ‹!!ß7µdή¯àÃÇÈ%yÌÞó5ï0»¸4,Ì.¦Ä×iêN·7çb|+ÄüžfõäP9‹%³ºH+ÄÔ®Ùö³‰O k鉕fÇx®\_Ÿfqaq‘V,fØe[MoézöÖÁâ0ÄÀJSº–i@Ýïjƒ1¯dV"¦t-Ûä^ÕKè’3ÀŠ«)]kô±‡Ó–ø`˜)ñuÙÙY­;QùD-`W3Ç»úË”Ý1N+rEbéø°ÍeÀçÊ3®…è>Á|bÀН)]Û« ®Ûâv fC°BLéò­e5ìâ…ÀJƒ~tï6êHkd†]ßÁ¥§víURþS”Vò5Å‹`Å×Ð./²Rº½v?c} `…x‘¸ô¶G7É•É+ ò&q·•-o5 ùå,X̤xïlä·@b"\-ÁÓÀ*³ò§·Þ«/U-Æä `ÅâBbûÌò¬fAíVˆ+‰[ó´vÕÕ|ò°’«‰»íù¼¡“H\I ¬DÜI¼¦òwÌ;èV\ åò‡ÍeÎ"‡{¬LÀ 1•«ôTÿ¹ÕÎŽ9« ÎŽ™ïÇW¥zî¤vLÏrÀ Çô•ñžÆcgUïXç=`â~õöÌС>Þ®Æðç8jfM~U‘åAfÀÀ 3%Þ·s'¹&_"¬äkJ—‰QñY#®Ü=¬DÜî­§åé!øé¸b|6œ×~bÕ×-å0È?`e©]ÕÔÇbU_3 Vò5µË#˜’—|ïÅ2A¬XLíòªñ¹^B>- 2±’Åc[TçêU¾T K2Á‚Å̉oÍÞD&æ ¬3êjkÛ8©C5,ÈÄ*®fN¼}ˆÅNÍ—®lœ°1¥ËF¨—”åkd–=`ÅÕŒºz³%&_»sV+Y̨«Ïa¢Ü*¢ð‰I+‡qò–á 'Þb=&Äú;ø–sGZöeWYºøÆ$€“)]”{cCU¬YÌ?`¥A¦t¶S)rØÀ‚Ŭ0ïI]ž"%Ï.–`…˜Ò5vYö³ÅüªÊ ì€U\Íœx¯.ä€Õ¼Â+ûV,欞}Øþç]JA"ææœ`…˜Ò5ÇÊåöE\͈XÉÕ”®¹m˜²üƤ0W €‹t- Qç˜ò‚Ì ìVˆt-Ï-YMÌuŒzK¬äj*×êÀ4]¹8©‰•ˆw/?T+V¦Ä?€«g×2_Ù:«2C‚…Afz§_ÔÙÆ ã“É…&T€¢éµœüñ•8Êa• VeæÄÛÓW©—Èé@Lw+S»¶…»É C–w+ƒÌÙµ»ŠIM°ª,/°E8ec^iÛ#çÕ‹Z^¤.†]ßÁ‡Š+ã^ö)ý2†øÃ__C¼Ì[WL¹NPáv"€âMâÒü\>ÃäVdæÄ÷T{­.¤"ñ"1°q&ñ˜þ¸®È®Ì ®f>}Oó•ëf¢ðeoÀJCº<$÷gçòƒúV,n$6 ùöÌþ@\I °BÜIÜKm*ý(bxUÄš7Œ=¯â|ÃԛĚéô½än2¿ä˜ž•ÞX!¦rÛn¯"Ÿ¤òÉVÀJ®¦r®w½ðga‰ù~¶¸1¾ûS¯{×Ýq0`…˜ÊUs·HBî-X˜^À 1•Ëï4öÌêy&sËVãÆtú^û´ û0¯+€‹©\¿™ ^6›‹ƒ§•,œÖÞ»þip!øºòÝx+¾¦tyOÒ[o‡K³Vˆ)]Íþì-Ós°Ò Sº¼Æ¡íEdbNbâÆxŒ²ÓT‰ƒ€+Sº,8Þ¶RCʺ~ŽSx»ïCf*jÉ‹Æ|úðá{âìêi¯^/ψá^üÕ¿X!ÜķïÝS•6Ê>ùšëÁНuu‹Ù,‚Q÷¬ñ°’ÅŒºú(þ–JM.g±€•ˆ)]Ýö¹kßbŃt“¤‹éôÝÖ—½²|vÌ‹ó€•>dJ×ȯ¶-¢‚4^œ¬B\þ'0ågÔTgQ_7^A¬DÌÈiø ·¹Åè¸Ù#V"æä½ú)®šgÐ<½óÿ4ðç´㘥ÔkôÃ7Aù!Xø&˜£`Ø>C»ßïÇF­0tú>J“W÷<:ñz¡Á%VeêÏÌúTùÚ½ò…m+¾¦þLû(v² ^`%‹©?sä9þ$ÑI3J%X°˜Ù†uUô'}ø *²³À‡Š› 9Ëð›dÕ×Ôzb_³N¼áª…|·BvŸ¿šNXñ5-6WÔõ­H87"X!fè´ü&ylu`¿‡€•\ÍÐiõ±÷­éË'qÐ=b%bJ×ògW+‹D+Áb`%bJ×N¹ô?éôÒÓd‚•1¦tm[®ªž#UYÏ)€bJ×öóàyÑÛOWõ!Vq5SâÍQ6CÖ-öÓb’ `Áb¦Ä{!]ÛÄTU¹˜§°’ÅP®á5F‘+ýTÖ`ÅâJâZ[¯jÖrãYÀJ7{ÿÈ~s×ÁâEf€‹;‰ç¬ù?ÌêÀ ¬dñ ±¿4“žŸÔ¬D åòLÅœtÉäË–€•ˆé.¯ÄÒ’Üv¡5´D|ŽR9ȶ7/óOivÑÙ ³‹UâGyõ^å—i,¬gÏWŒ*öºj-ð« 2“R]xze‰ù‡8³ãÀêüé.†{5¯!‹&ën°âkjWÉ«äTTÑlkb%_°—wêEm­Ñú ¯¿‚¾¦x•¶óºæÃ~‚ùÊ$€_S¼Ê\³O9Û±òF%€b„]Ã+÷UH¡7Ör `…x“Ø;ü5µTjãíBÀ*³‹9ñà :yIõTr’Ø"œJ2'~¶®1Ô·—5f€?~õ§«™?êî^Ñ@'æä"X!fØåYîí?\/°¹i+Ä”.Om{¥òhcÌŽò+1Wä6¼À«ÜæüUÝèçV,¦rµ¹sîI­xÁ*A+YLåêi—­¿¡¥~X±˜ãÔó¶iNa×`Øõüù«yl=zÉÓÖTõ^ƒ9«øš9ñ£{‚D^j剚ƒ¿|=ƒÅ¦?¶Â¨9RL­XÉbJ—í°Kõ«0ÕbÎk‚‹)]믡fYnÎjb%‹)]¦–rKe;œuqr+SºLRêIÍu U•Xq5¥ËþìW Ñâàj`%‹)]¶˜ö5ÊŸS Ì+3èš9µ\Õžˆ¸+YÌ k–¼sSkº5à¬BÌ,–1{kË• *ß|°àjV‰÷§“Þ<;ÉÄ”L‚b*×ܦ|C­ Ùø¶%`%WS¹Vµå)/È|óÀŠÅüÕ«ÚªÚõ»Í…7ÔàÃ¥ku/õ.×H uoX1™[¾5«×¤ý¨'“'Mþ >œxS»ÖêÙ«gÉ&sa$X1™Úµ³w…Ïò—ÎÙVˆ©]Û6Döaˆû¶ÆL«|PL‰{¤Ù»¾‹a‡À,fJ¼_å:nÙåbNk‚bh—-å&)Y ~BX°’«+‰sï^÷F$ækž€•ˆ‰Ë´Í½¬ÖÌLX‰¸“¸¯•ÖTŸ¶„9¬Œñ ñØ=µªÆ 3ð+Y å²ø%¯É‚ü³„L+/çºí[<¯æ‹9«‰•,Þ—ùªÆ".Œ=á%âø0AMöÙ–oUž¾æEð³¯;sâ§}‹Ã$XéWàVðugNüÌcXÌviÖy .$V"¦tå½<ÓZ4ùî!€W·€Ý»Îùû=}?ñ×J˜]_Á‡°‹ƒl{Í™ªi6–Y `ÅdjWiÉ·x¢Ô€•™ÚUüb´ÉÚÕØ²!€‹©]5yïù츱ÞW+Ä›Ä9zÁe•˜åX fNü¬þ}•KÁãÃÓÓÄ*cÌœøY»æE}Ùxv°1¥«zU%´mL½ `ÅÕ”.¯»ö­l蘓‹`…˜Q— [Méyh°’«uùM§ííU Ë"±1•«ùYF–k€7>”`ÅÕT.“ýòêò¡sa$X!¦rÙ?ù+hÙÕXÉÕœ ¶”{²ßýÀCÔUu}¢.~È6?ìƒë­7>¾ `Á×¼˜˜þh"­ËÒÁ×ÔLb_—`±I}Ú—R–bj&±qàÝ»œ\Þ™Oÿ> 2?¨‘êX~È©2Õš`e©]ÙÑåæÛ X!¦vyt܆\ ¡1Û(€âàê9²—iÕfWç3‘€•fµkì”^ {Db~ÇÄJÄŒºü0ãUÕA$æ‡L¬BÌ„VOü+cB}D“éôàC. g×ôòáëVµâ¼þúÙÿ‚…ÙÅüªidìëÙà˜úC°B̰Ë~õÞýÒ à0ÈMb¥AfØ5_/»Í1¿cb%bJ×Ê^¾J—®pôC°âjN®eT/rð6ç+Ä”®e«U>Âm¼9`…˜ÒµÓlùZ‹å@Ìå‰`…˜ÒµKšIÞ›w¦ü¬2¹˜N?wõòUj^×kôsÂJÄŒº¶'àu¹)Yãóí\Ítú¹wówSúóC&X!†r­”fù§Ø âjLꀕ\ÝHì5C‹ºaì< X‰¸“¸ÙNdÉ…Þ;_Œ°âêñÖB‰ß0â!Àm¸a|N†{¯ šz%¨Î\£€•|½H¼m”®¥IaD'3ÀÏ)©%æ—߉.[ߎØCJ*âÌ€RR;ÓéWΆmY&æ÷D¬DœI\†’ü¾ïTV".lÛú,wêL§C+™{ßy ¦bndþ >|P/oqÑÿ$Kóz‡Ÿý æ5Ó#V^ÃKîpܸ&°BL Éç•ÔØ,é°ÒôBصJÙ¶èj:}cn+S»J+Å>IõŸA¬d1µ«LÓÁrk}°80,XÌtúU“%Hê»ÍP="€bjWÍÝt¾‹ÏS:ë"¬âj¦Ó/¯­˜›ú©óiKÀJÄ »jß~z£¾ºzÕÚø9WS¹üraä%+›ü°BܵwÎìRü Ö/ÀŸ¿ºrvÙ<ÞåB6™k ÁŠÉ”.o‘XÖûhP™] ‰•f× à1_[*qad>ýøÓ]a™ð[C¿_PM¿XÅdæÓ//"þOkBiÿ, ò ³kÏRý¹‹f1+¬d1µ«OÐ’6öa `Åbj——G³=§,!•B°BLíêkšßz?ˆ©?+ÄŒº†m8ÛP›(u^œ¬4ÆüœüyœÁåe¢RBV,¦tQó®òsäÆªÅ¬3êsŒÕ‹Xö¦3×:`%WïÿÌä¬5lr­t)ªtøÕœ˜ÄJÄavY$JV¬w–‰rØa{m£^²ü1²Ør 3„Iñ¶1ŸÞ²JÖ=–ý `…˜ò3çê©,ù›`òp+Ä”Ÿ¹L2›Z[­3§#`¥ÙEùYžÇßõ`1w¬XLùYÝBë,yn|ÙÀ 1ågÙö¸Ú]ͬ倕\MùYÛØ!ÛFŠÃø²ñ{Z»-¿Þ”}½ÂÏþ ¾fN¼ýèá™ürÈNVˆ9Ù¼¬½myv…mÁ 1]½½õÊP;·t¦¦¬2»˜¿SÊ3W9á³4@§ç3o^?¶X §¯O»¾ð!™mÓd¯¸ÞÕóÐÎÄ€•|=Iì—øS?EᎠ€•ÙµHlëÚ«£¶FÜ{ X!®^#×zYÛ®XÁÕ#…½ýb ‹ßEs¤ÌÙõ|HÀ’ììgêÿÁ×X(øÙ׃Iñ;›ÞZ´¨.Éá¨>€bª@¶xmûù»¶@„ÃöðÁ×ü ò«ƒ\j¬ój#€“à {9ÿy9g;ÌëÀ ¬4¯wí’r{5 ‰±"¬DLW—j‘“oØUWo2¬¸šÚU\Žº|TÆÄ€•,¦vYàd*pÛö}ZÌÜ,X̤ø]S/½ÈÑOçîVˆ3‰óì¯)ÑÕ\‰U\ͤøíõênòs™ V"®$61Ê×>ÖWó{"Xq5îêH†|ýÝ™"À 1•«%ÛÎKKÖƒ«©\ÄJ®¦ry׿¶³Z$±37=€‹©\žÌ×Òå@ó`1‡˜XÉâ¶¹¶+2ùÖÅŒ³öð!.§‚¸ëkߪÉ|ù°ŠÉ%{ŽÕ¼}Œ‡AdXd&ÅûKÕµ—hòBÀJSºzö$+ùZƒ9‡+Sººw2Ú—zpbÎLb%b*ý+;¢fµ÷(xŠøþœ avØ×huÿNqX™]Ô®>³÷Sýx•|Míꫤ6/×OÄ#…i ¬D̨Ëe½Z:‰ÄaZ+3ê²IÞskê™Sg†x c\9¹F/öMÜÎèÄM‚bJ—çgêíDáVq5sâ½àßš£Ë“‹ B¬DLé¼Ì|© þIœÃ+3êæ°1/MÄaˆ•ˆuͲR]]-9ÚùÐ5€•ɰÕKµ¿3Ëó)›÷gøëïàC L®Ëö?²‚0}8`%_SºlkÝJ¿äeˆù=+Sºæ*Ó> }¹L, 2“âý§ø¥Šj1czb‹™¿WêÓ[>ˆÄLU X‰˜ÒõJtj· õÓÕ|qÀŠ«)]~ƒ]“¾oã3€VˆÃ^9m[ÑÕÍDcÔõüù«Ãú´LúR—WäxK°b2£®–—sw1¯ˆíç„•f£®]’AÕvãƒoëV"¦tY`žFª‚ŒLXq5¥kÛÄì=ÉóC&V±8\.üg0gæögúr‹‹¸0+S~öjû•Ì£·`1°ñ¿òÓþ_òòWy&ý[üW~þ ä÷‚c‹_ž£ åCÑÿ•ŸGðaÓ×h²OÕ"<ß„ú¿ÀŠÉƒÄ}õU§º¸ýv!ø + ò$ñ,uì->ðï¿«ê_Øòq{ ^ Ωä×3õ.˜³‹à_}põ&ñ«?†nq'/°ŠÅ¿yíö~ƒC·8Ó× ÿæµ;vŽ5—®ô¿€ÿ ³ú7¯Ý°¶FØVB>ñ™Óš`…˜ÒUüéö­!Èás¢ú«|NƒRÚžyÈûñ[Îé/°bq'ñ()-9ŒhXÉb*W™-§ÚÔÀ©Q1‰•ˆ©Å;W²ŸëCê×)ÿ§7Œœ]5ynúÒyág¬ òØeÿ³Õ6&c&˜ü|0™óºVûÉI~i6~ßäüLžÔ®ÚlÓ˜/™’ŸÓ+ÄÄ*ÓkR»¼¬I½}Œb~PÄJÄavíÔî_ãÁÕTk‚WsŒ[)¾I¾ߘjM°BLíj6AfSó Æ ÁÄJ®¦vµW 9çW‹uµée¨ÔîqcO+YÌ¨Ë‚Ššöí©ÇÁb*.ÁŠÅŒºz)¶È¨I,c0ê"V±x1êê½Ì©7`…bM°`ñ¢ru9å;èQ¨ô+ÄT®¾½ûžÚ//®0ÄJ®¦rÙ÷±Ò¾5Fý´¸òC&X±˜Êe[š¼º|P6*¿'‚b*—9oÍqI€ùtõdDO¬äj*×L¥¿ «{ ºš`a/±¨þ5”:‹m<ìÍ£®ïàÏ_ݨ™³–ì9V²É”‚“)]ÓVºÔqüDÌP€`xSºæl)ÝzvªØÏý9N›Òµ’÷ÏÎjU%TIü ¬X\vÙúìC€»+f×wð!¿Šƒ¼ò,¶ùjª¯ùM+ùšÚµÚZmÊ¥R{÷V|MíZ+ÙL®ßC¸G°B̩鵠ҟFÃEä‰Aþ> 2Us§=Ìg²j†X€`Åd†]»\î×ÃÂH¬4»8­w5hý-«"±’ÅÛ0ÏÚoo ó;&X±8bg|2ñîmœx?€?d‹Áºgý¨Ç°\ˆ-Â1,ÓËzåÓ/õvalÎ.‚?~õ‡¯ÓmRó?U:‹ù=+X¼˜Ák ›·4›êû¥±)]+SºÖðçÈY||0£=b%‹)]Ë”lÔË>‡!V"¦tÙìÈuß~õ燜(!+®¦tí’Jm—«˜ƒÅüœˆ•,àZJWÅÄôðᬋ§7î¾RMÞñWÿ‹•LÄ^Œ¼Ë³‹ÏV"¦tí>|nªƒœƒÅÀ*ÄLL÷Ûëž3J$>MknÎ ¦5ÓkÊÞûö«Ä­X!.$öƹó’ yȬHäVru%ñ°¦Ê¼3u2¬XÜHl‘£×sR-žV²ÒUsj­¶¤1ÆV,»sËõwV?YÒõ>\¸“«·èêê#€™9½VL^$òf5iy²T+Ä›ÄÓ¦fº<ƒ>µOò«Ì.&¦×’º?~Ò] $€‹™˜^KÕ«Û‹3_(`%‹)]ůÿ=?Vµ˜_2ÁŠÅ”®b;æ<«îêFb€bJWY^zÊ®æ¤&Vr5¿c¯ä¿–œÄ2ƒü¬X±#ÍžÔ$ËU(]ßÁ‡ýÙþ¤UÕ‡“™+ùšÒU‡÷˜Or §@¬øšÒUm)ïMÝ©.†ô«XÌÄôZw*½_Ö¶1•‹X‰˜ÒÕRò^ÁbŠÔ !±1¥«ÙâV¯U‡lü’ Ƙ‰éÕ‹½úƒB™˜¾&X!¦tù­rò$3ÍÕa=&Vr5¥«­>]Tâ`0°ñ ñ#ùœ‰¹H+ã°¼ö´,vT_ׯP‘X‰˜ÊÕëë?¸¬TÀÊä¢rÙ–¯ŒÖå½ÿX f^zí6F}«/¨Ë¬âjæ¥[Д²»Lµ˜G]¬XLå-ÙF«õâ9€b*×°œÿìCWƒ•\Ý"xç‘Ô9ë·Tû#ø‚ðCÞ_=«5MVX$ˆ•L¦t=ÖúÓîNd?+ƒL‹m˜-†S¥+ì͉•,¦tÙ »ÖŸÛ…˜„X‰˜Òe£÷QϬW Ì ®[/ÛkŽºú¯X? ôŒiý|¸s¾¶È n¹ÚW8† `Ådj×Ü~‡&/Œa#B¬2ÈLL¯6-kNé>XÌu‚`ÅbF]¶LŽÔ›Yó.7`%‹uÙ\Ë©Ëá3âV"¦tyÙ¬RI$W“V\MéZ»ä9ÔÃòŻ܀•,æç´‹gÜžÅ|ZÎØV,¦tyõªWö£h1=M¬b1óÒëöÒÉ+‰Ç «ƒ•ˆuy¶¶Ô3Å\逕ˆ©\{­RZ’£®pÔE°0Æ,óÞ¼8}Ò#ëÅ; Vˆ±­z¾ó¯ê=D]Q×øpÒ>i²ßþ÷Û ù4™W"¬˜‰ùÊ,`%bNå˜=ó}Ǹ™Mÿ>\÷óK^þÔ4ëG©-8`ezQ»lÑX³L9Üë ~Žº6³éÝyuÔ­¾ÌeÍ­€¢®Ílzû§m›ûK#Æ1?Fb%bj×îiÔ”ägfaC°àjfÓ·½òHMn…6Yì+€b*ˆmù¼@YR]͹E¬äj¨@÷&²3£MÖƒhfœÓ?€|OneLýôˆ?û¬øz¸Zp¼š<­'y•|=I<–—.²ÅÌ+ÓÕ9YXÞníÄ4™`…x“Ø3–»Zœh±`NÀ*®f6½­§-q+“z°x“`ÁbfÓۦ˶|yÊ 2‰Vˆ ‰×Xž$®ºz‘XÉÕ•Ä¿”y©ÔþI¼1°16Œ½¤•Ê­öØCL¬DÜI\rγ‹Îw ÄÀJÄT®bðµæEé“+“`er̀ݻ7äÂ>¬ϯÀ‡\GJWY~ÆÐåU"HÁŠÉ”®²{ïmªƒœ/°Ê 3›Þ ²U äZ,‹À‚Å<ðîµ¶\‡| ´ýÐúÿ4ðáWÓ׵ΔgWäÍ숀•|Míªî‹TUâAb`%bjWÉþ£6ØL<X‰˜ÚUg©)ñœ~3 7`%bjWK¦ôåVÿ0A¨?+ÓšQW{¥*݊ijaC+Ä”®Öü_¨M»w ¼ÀJ®æçäÏÿC—áÉR,XÌtúî—Q&}jº"ë’lŽ#˜No0_Ù–|’Ê×^üñ«3êêü‡tE °BLåêà ‹LÙÕÁ``%WS¹,BµÀóvÔ~°˜šI°bqðÖžÝÔ~©ËSCÅ¿ð!Ž 2’/1MMd LÀJ¾ÄÍOaoo>¾æ2A°âë€õh±ËÅ2vCvÄø ô\&ÆØ¯=j2O`X0™uÞm£éMsåÜPž²¬2Ȭóî÷V«Uù-ábAÉV,¦vÍâë†ü"‡Ç{+YLíš}ÔÜn/=Ó×+S»æxUßTËYË)`%‹uÔwöI ‚ÁÀ*¡Óéû²ÝæèE>Ž`¯™B¦Ów›•«ÖÛr~cÊÁÊ3êZ®?K¾b §{ÄJc̨Ëcˆ²«( ›Ï¯V!f:}÷ŠŸ© Y@‘Á‚«™Nßmèˆäà'ìT Vˆ©\Û{©$õMðæÆ€•\Må²(¢ô¾d‹Ã^‚`Åb*—×&²'[L!V²Ã4’ŸxóäCÔ5u=€ñKÌÁD¸1Șùø< í¶Ç­eÜê¸F¹ðg¬Œò"±×~˜·,Ëq)€âMbaJE3\»¬2½˜O?lÛµç¼mE>-Þa†,XÌ|zòàÅ d‹±<¬dq!±íBÚŸœxÉâFf€‹+‰ÇxËÄœ\+ÄÄ^³]êÇ|ºš¯®Vr5¢®áuköÖ¿cV² `ÅâAâ:í› ),¾î`…˜ÊUzÚ^Iu5¿cb%WS¹Š©=É!ýf)–V,¦r/þ0.s^`‹™M?¼iÜ«{žH̹E¬DLå2hkr%–Íç)+S¹ª—“)rU0ÀÂó¼jÔ1ê.zŽÂBb×øð xæe?D¸ÑÏêùøóK¶À)Y£j×fÂb+ΦvÕ5Ç–çn¾ XizÑâfš·oíäÄ\‰•ˆ©]-ײ]ƒEb~ÉÄJÄÔ®Öj™í¶ë;Œq0`aŒ™N?<¥îŸ§-Ò©¿ ‚…S¦ÓÏ;(ó’›u8 ¼À*ç L§=[¬øç¡‡bqˆ3 V,fÔÕ=_¼ÜšÜˆ9Æ+ÄŒººÅÆÿåÚ‹‡]¬3ê²ý^-Eî𷘤À 1•k”\ríb>Èf±Œ€•&•ËVò¹šÜù`±¯F+S¹†G©ý’/ôiq žV²˜Ê5fµ}Ü¥WÕ˜ß1±ÏÄþl`[×vãÉÏ×P {ý» Î$9­gjµe¹ÅVx`ÀƒÜóéÇÌ+Õ"ߨó‘HÀJ¾¦tÍâ)ËMÍ€iaœ€•ˆ)]6Aü·øÌl3û7`%â0ÆÃ/5Š<Æ+Œ1ÀÊSº¦ ÊXIí´vð5À 1¥keïé£öÝaY$Vr5¥k5Û¥Û8}Æ>¬zÀŠÅ”®ÕG5±Ó7o½V±˜Ùôc­îm™/‰J‹ƒ¯,ŽXþÂ÷m_71F^×ø°éãìÚ¹{ž>È ~VL¦tm/ñ–—ƒlÖà `…˜Òµûv P53D{ÄJ³‹Òµ§}ó’Ýy æ9±1¤ËÖTÛ ¬©J×f¹V\=‰-~쌙ù dä¤>€¯ˆ:M~—K–§5˰bòØÝMtÅjÚþ<ƒ&·I“‡—¯)ú(7þl€“™O?Óôó›zÞ{æõ /°Ê¼f>½¿&.9U5‰n³¶Q+Wg ³vñÐ:`%‹‰{ò^ƒ8XL_¬X¼5×kЉÇÆãøóW×0Ȧö³ÕÛf-–VLæ÷”my¯^ÚEä÷†àç„•q×,ö1Öziz æ+oWÛp¶¤ÆÖ›%%Xp5óé=Si¯ÛEÎç÷Äôª€-Ç{FLé*Óâò&_¸mV) à_}°˜³ºìÄ*®f6½WážyÈÉF“ŠI¬DLoÙ¾«ô‰¼ã‡ÙCÿÓÀ‡S6*ˆWÜڹ˚É4ÜV9×áåäûk¾9`…˜Ò5=Ë}U¬™L°Ò Sº¼‹ô˜C ÷x?°1¥kn ÿœ *®æÓºV\MéZ¾õªò·ÍŒçVˆ)]«Îœo½1Ç 4˜XÅÕ!ŠX^ù³à@ááC¸b|žù-z㋜ĢJÆ\Èü|Ømr^¯÷í•>ÊT>‚…QfBý\sÙ»h£üÞæþœ°Ò(S»Ö¶%u_j3ˆý+S»¶-©£Ý*D\Í¥‘`ÅÕã]½!È¥¦ÛÁbÎLb%‹©]ÛaõBÞ›BX±˜Úµ-tü§àºDÌ`€`…Úå]HšWgT] ƒVq5ÓéWʶË¢h¾÷|?'¬DœIìï5±ôoW¿Ê~N`ÁÕL§_&'¶ÌÈŒ瀕,®$vÉ›ê1Èû ìçV,†r­œ¼6·Xâù½çû9a%‹;‰ëXeÝ*,dX±xØkVñýõ{Ï÷sÂJOÏí,¸ïS£ŸX±x‘x—l›¾¢Zx•,¦r•TÓnbé÷žïç„UˆWoF/â!êZˆºÀ‡›+úºÔbâ£>AzŸÐýœÀ 3nZ¥ ûÑhDòî­J“¿‚‡(ü Êhå•¢š~6ÀŠÉÔ.‹Œsëb¯ñ÷nóç„•¦µËFi´>µ#Ü÷nóç„•ˆéêšý4C-—ñ>ü9WS»jñÕ\| ôÞôýœ°’Åüž,T,Ym¤öÞôýœ°1µ«zMQo¿%N`ÁÕL§_~kB¯®O<Á XÅb¦Ó[ ØË(j+‘÷¡äÏ ¬X̨«•UûÜg 8XLO+Y̨«U/+{yFt +S¹šmúÚÙñ{;ðsÂJÄT.¯Eã»/uŒy§ÀÊS¹z®9·[‰1 ‚b*W÷~ mʳš†X!æé½fÛ™ü?Ä UoÀ‡óJWŸÕbm}AfÊs?›œYž~y© Ï §õ c ¬0­3ËÓ¯¾»÷íS¿'Þ>¬DLéòÒy¶º©Û'^¬DLéÅŠ®gÞpˆ‰2o2» ¯ñê…Aß§uNxÄø>Ä™ü’½xLIN”¬ágüœó“™Oïè÷¾>ÿüžxÀÊ÷,ÞÂ’ËÙavQ~ˆ•f£®i«ÆÚbrÄ_b%bJ×ôºŸr˜÷)ìÏ ,¸šùôkz±Ó$Ÿ ¬À ¬b1«Ó¯éA[×7Œ¼¿`ÅbJ×ô÷ùI|¨úÞüœ°’Å”./oV³¼—à]LÀJÄ' ŽýßTqEάNÿ>ÿ2Þ[Í‹ÛßnëƒLg¬ òØW'õµFΓ&Lf¤¹zõ|sõì‡ðVej—-2%©ùUï(õç„•ˆ©]Ë«­_»Xò `aYž~m‹–§~†Ë"e«XÌtúµónýOéO%á6†X%a:½¯k£Ì[5ÿC(@Ñ$X˜NoëZ¶¯Q~ӷé5Á 1doÖ¢µŽO¶Vr5¾ã’?XÛ¶¼Nýœ°ñ qõbëK÷6™V\=IÜfkûòŒè`q#/°’Å‹ÄËü5Ô^Wï;³ŸX(×¶lí‰Ýæ1™`˜ÙôÛäÄ&§¼aäþ:`åb6ýÎ½ÚæBíÄø¾ºú9‹ ±«šð¡ŽîC RqLÿþüÕ)˜l‘b[j9¸÷ÝÕÏ ¬˜ÜHlìVÕS¶Ìú+ 2¥Ër Ún-Ò Ïë„Õé}VÚ yJ* BO«(«Óo[ÊǨKÌÐ|ßÖýœÀÊSºŠo1ý÷½Ëý9a¥1¦tÕ¤wRA–w¼K<Ð|û9_âæÅ’ÅÖqï{ÑŸVò5¥kMr¡vŸ|×ûú9‹©·k§5ÿTÏSbú™8È_Á‡…‘ëÓÚµî!—ç ÖÄ*¾f>ýöãÐñç­BÌ™X‰˜ÚeûÍV»Z‰î]âìç™ùô{·‘KßZ™Ã÷ùïÏ +YLíÚ}Z4t)ÈôIÌû€•ˆyØeßDþ'd“\M!Xqõ¿³ºÿ¿”²ísû­)üø_“ÿ+Ä“ÄÞÎ ÝÂã÷XH °B¼ˆíÕf*òà–‰ùof×#øœUiò𬰪ªõoa’¿°Êìú­OïàY½ó®våÆX‰8ƒ8§æÅ7ÄÍÄ»ÕÏ , òo}zÇÖÞfV ,¾ë"ýœÀ 1ÇØkùÛ~@ÜÅäx•\ÝH<½#H¾€o2¬XÜAìéhiÞÚg#í/°BLé*ÕÛídUArP‚bJWÞÊòvù} î$X!^$ÞÃÓJÕÏ)~È+ÄĵtÛnÞšXˆ9­ ˆ7•«Vâ:TåúÍÝû «|N›ÊU=C^~K˜Ã×DlÙ6•«®´ÌYò%ÐæçDðǯ>¸šÊÕlºÔ¹ôóLÎj‚b*—_Ú²¡+æßnb*WëÍ–Ôª¤VN.b¥1æ§ØF]£ 9¯kO„ ßÁ‡l4ή¶šm5Õ*RïtéŸXñ5¥Ë뺬ªf9áÖý/¬äk~ŒÝ7úkñ÷p¯¤_|M ñP±oµÒÏ;Cüç~öuI¸Uÿ_1y/W*±‚¯Kâìê½öÞľ¹ï;èŸV"¦vÙ‚j¿úRÕ䓸ñK&V"¦vÙF3UOPÇ8˜ °2ÆÔ®WsŒ®>ÎÍs‹XÉbF]~šàe‹ù1¬X̨Ëßì®fµçFÁ%V²˜Ò5Võ£guaÌ™ëÁŠÅŒºÆžÓ!ÏêI^`‹3£®Y¶­è]žÕ™³‹`Áâà­ÙR»¨ùUå·<ý#øpLÍœ¶Å-yÉb)š+&SºüQž— rd~NÄJƒLéòê"»¨§ÞiÚ?'°b1¥kåfŸâ%Yú°E¦X+Y<Ø›6 3ØÓìbØõ|ù%/“[?òVMfôC¬d2µkyMýuYb>‰7?db%â`ñèæ.µµé;ÿçfW¡vy‰f‹¨êÁ 1Ä‚5 R/E쮦€«¸º0êÚç–Õ ˜\i1ÁŠÅ”®í¥Övßjä°a$V²˜Òå÷ýi_•ˆ©\ÄJÄáWOQƒXñûÆ­üV§Ö§àë]ój·G5‡A?`evåôêé|Ù`øºps°’¯‰ë¾)-ÞdX±x“Ø_œ¤.ή’:yU,®‰ÄË‚§k±ÓO‹[ð5À‚ÅÒ•=ŠHãÖ«ó@ í `…¸¸TŸEuõ$/°’«+Á5¿:‘¨¡@m¿òø°¶uš\m‡‡ïnŸV297R ÖéqyÀJăÄ}Îä‹´HÆ X‰˜Ò寗攳Ës[dX™Ö”. …R—;Ù¿³,N`…˜ÒeŸõîEAJ¦t«¸ºQºJkà S?ä’H ¬DLé*ý¥óêçT‚§•ˆ)]e û_¹\Þ…Ì cÜ*‰··«RϺJáçD¬d1¢.“Ú•÷ÖãLy°b1•«öeû&G<ÿ `…8üèá§9M-Dç½jW‰ïàÃAY0yxnºZ’¶”~õ/VdJWK6è[>)¼ `Å×”®–{µUF|‘Sxá°ŠÅÒÕÊ\­«·@…»§€•ˆ¸·ÔFVSÙJÇa×øƒpalýUEF÷ o&XdfÀä6Íj+€w¬øsÂJ¾¦vyþÐÎI]‘ “X±˜²Ëš¿Ô…‘W"+YÌ¨Ë º­!/Œa÷D¬DÌÉÕû²‰)—ì*‰ŠK°âjJWŸ©÷!?¼ XÉbJ×H™¹ná%P J—©Lõ‚ 4†{Ä*ój3›/e^êˆ9ÄÄJÄŒº<`KE~ßV2M‚WS¹ÆXÛ‚'ÙÕüœˆ•,¦r O—®·d’ƒÅT.‚‹9Afò×êr{õ2pÖõ>Þðcô—+£ŽË3îïàæÓË|Õj{<+yN•qÁÏyNeP»f«¶Ûœ¿_züœ°BžSÔ®Ù‡æz‚g± ñ¤v͵êþSvKquÌ ®žÔ.ûÉfÆ’sÙ:ǘ`…˜²jò{ 5^`%WSB–M×£‘˜ÚE¬DÌàgÙÔ,iÉ©¡=0¬¸šÁÏZ³ä|I+ý´xòs"V²˜Á϶ÿx=nÕâÁ ÁŠÅ]S3’-æŠL¬d1d{7Ö&?Ƀ1=Á‚Å‹«ùö­×jS]%~«Ä?‚¿š³ko/­ð™Ë*ÁŠÉXžŠ}‡;mµŒTžP€U™·O¶ÜÕK®ËAÈ 3ÀB¬vÛg¦4³áòÉDÀ*a³ÚmWRêÌ—\Çq'1°qðÖ©Vtp{8X~À‡à'˜¼Š¿(VBøt!`%“¡]ůrÒLêÁba&J+³k“¸4/馞²1»<`‹™Ö^,š™sªm/ß©?'°`1ÓÚÍu½ö©oÎùf"€bJWñâãsËçŠ| À 1¥«Ø\«UÍ€)Œ¬VcJ—í˜ÇîCŽ3g5ÁÂ*Á´öbQg÷R˜ê*xUV‰=H¼š—xM"ñâÜ"V"ž$öâ=«ïEWc`%b*WMË›U©¯½W b%b*W­Ëä§^ÆésrÍLf€Ÿ'WMT®:“¿S“]M2Á 1•«.¿mòsM%VpuMáG¯íÉhê%—Œú]¿ƒ; Îf1[+h÷ðÄŒ$…ðáP’£Ür]sÜ^"F™jM°2ÊÔ®VÆS-’#\b¥Q¦v5Û\×k5„ƒÅa V,¦v5ÏoX]ݸ-ª5±’ÅÔ./ݳw•`¸ù `Åbj—¿KÜéR@æ`1cb‹™Ö^¼ÈHK,#õ~Êüs gjWŸ^ÐV·¹ø9¬3ê¾!¸–®9ÜœÓb‚bF]Ã"¶”ÔbNysn+1£®aßþ-1‡pŸ±15`4Ûâró}ßV3ŽËÀõá´}ÕÑ›úÖ½ð|/€•A¦t™Øúƒuñк„„XÉ×a üõD¦‡…1oúú+øàëà®m›nc˜K"óWða×GgOS=ûTñ*“ŸÁÂ(3¯Ý†Í·@ó,õ‡QfpM¬2ÊÌk/Óû–$F|…Gš+S¼fouý¹'”\M¹&Xq5Åk®¶û¼íEÄ ‚b†]s›Ãæ–ǘ#±’«v-ÛOY¬®.P%i¬XÌÏiµ4Ó¾Ü }Z‚b%‹v-Ï~¬j}ú6ÉÄJÄ »Ö²ýW»Õ':¸šºG°àj¦µ/Õ3ºz5QøL$`‹™Öîïgß]Œjâ+S¹vuÜ"˜OW‡ ‚WS¹ö°(¢ Y@˜¢À 1•k›³v¿” :¸š¡±’«©\Û¾ÿµ/ÅEÄœ\ÄJÄT®m¿yÝ®®Ä.b%b(—Môªæ/1˜XãEb߆ì¬îb Ÿ]°B¼I<[Ëûr|põ&/°Š«™Õn»G[ØÒÐ]Mf‚‹™Õn»GoשnŸ*ßj¬dq!q[«_㦋ÃIY+W/ #¿â•jÀ–çcúÊçKÕS:ÆÂ ãCDÿ[$þ|ˆèƒ¯ýÑx‘+ý„—ˆüᯃ¯!]¶)5Ý: Bº‹XÉ×”.ÛÑØô¸ô¨8ós"V"¦ú£YP´âasÞ°a|Q‚Émz[gù¦¯„Ÿ °0ÈLk·hwïQoÍÐ>‰YÝ(€bNkSùa«›X9«ðÈ)`•Afr¹…`uØ}‘ƒÅˆºX±˜ß„·åðž¿ê¡@§„|~u£Éݶ¹×ÊH0%„`ÅdJH#§’:È\&ˆ•™ßSõŒÖ,ghVf—°°@1»ÜÖç”F¹0‡%™«,É̃ó7¯'ê5päôþœ A®\‹œ)Y™×À‚¯™^^]öÒ”kYVfy°BLíòâr%ËI©•ÉÖ¬S»zóÚrIÉpôÀ 1Ä”gzcguZS3‰U¦õè$~%“ü‡1æä"X±˜ÒÕ÷jMn‰X3·OÄJós²ÀiäëmݧÅ̽ `ÅbJ×ðÆ>»ˆ©•odV²˜·1Û˜†Ksv,XÌ+û‡évê•He¡ÔVˆ©\þöÀ««®¦~«¸zR¹¦í‚ê.êwöÄJÄT®iÓÒ ŒÈ®æwL°âj*×ܾÓ-r$À£¬S¹Vñ[Ñ[6É'1_Œ°BLåZÕeyrQ¹ˆ•Ƙʵ†…l×C”ƒÅT.‚‹©\kϹ›|äTC|K°BLåÚi5ûí…Í±Š«YªÝ>C/ªŸÄF55ìaˆ•ˆ91·WmîúýõÂkäða—Ëi½ý­®•<È#üì_°0ÈÌj¯{´æ¯¨U_S¬‰•|ÀkyqFyø¸aü>\÷óKÞ{¦œoý@¾¦†¬øƒÜRöÿ\¶_c•XÉדĭúz.¯O¬ ÀŠÅ‹Ä6/G½äí,ÞäV²x“xù{Ê[ÚƒÅ…Ì 3«ýUVÍÛ7‰³|UÀ*3«ýU|Ü„@Vî¯X±¸ØææJ—V‡cJ^`‹p òx´þ§}Ad#5ô|P~Èþ´×«3ÊGNƒ?à|°Ë‚µìG2:1¤+€bZ\²ï¾Ô~›•ÝVdJW)ÝïvÄsúÊB©+SºJ÷›«[ðéQ`Xq5¥«Œ5RVÏŽ+뤬`qc³É|ñ;$5ý·òþ)€Ÿ¤1­Ý›ÌÞÔ´öÊ¢+hfc­öf[@ŸK¶ƒ«¹ +W{÷¢æU¾ X‰¸‘Ø¢rÛd«?|¨°1•Ëö4~uuYÍ“‹ÊE°2¹¨\-§¾ŠÜ²234€b*—é^™eª±]¬äj*WóµÊ'N|žÀŠÅT®¶²wQ’ƒ®LX fR{{…kYŸ\Ì  `…8ì*ùÏ3ò‚4Öj2¤s{e<Ëû¾Um¹’ù+ø“™w›Þô¥Ž‘äCk¦ °âlj—Éž§-«jÍ2«|P,Wê/[ú«w¹HÌà‡X‰˜ÚÕw÷•rLgÀŠ«©]6+ý6E–îìX!æªú*L]Þ·…˜¾1«ý|¸«ã’« {+ßz¬D¼Iìe\²ü¹±o c̬öžÆ(£tuVó‘YÀ*3«½{¿*[ÜÔ»M>è X‰Êåm÷f™UÍ®j¬þÀŠ«9L¹æ‘úG>D ÇôàC†?ä\ýLAn¯Þø0&€“;‰Çô]ªX7& °B,6¨ÍNyv^`¥ÙEé*9{Œ*Ï.æî°bñ Øå¥MÔ xYíàÆ±Ñäb*0Õº7•O Vñ5³Úý8&ïuKc9øšB°àëNí*æªYä‚;­†AX!¦v•=òµ¥ó!Ü+äV ÷˜Nï9b^RÞ"³¶} .·¹ž0UvËjÂsc:ýø š\’k_{W¹°cãc+ƒLí2X«ÉY?|/°Ò÷Díª«±/]n³‹Ÿ±ÒìbØÕ²-v íŸfgÁÊìâ{• ÛøŠ[䯬Á€U,f±vÿ#yurQê &³é{[Û/ä@³“Vˆ)]¾#z¼Ç’]«ÌjfÓwo7ҥ؞&V"æºèZ½=šèjžg°âjF]½UÊånáp Â}±’ÅT.½eôU" 2ÀÂwÌL6£´Wݪr1 7`¥ï˜Êå•zÆ”_LðéSÀJ®¦r “¼λ¥É˜&³éûèÓûˆ·\ ¬b1³ém^zÓ(ý„°X±˜ÞšÙ6^<Î|Ø·MÜ0>€ùwä™÷«Ø©j2X1™Ò5Ûšÿtlˆék‚bJ—­.Éf¦˜5Øø /`¥ÙEéòîÙµ¨ š-ƒ•ˆ)]+µœŠ|eߘÀŠ«)]¶÷ñU¼Ìm,¤°’ÅœÕË0Z’'ï¯X°˜éô} /ƒ©¦¤6>$ XÅbö“ïk¾Úv«®ffEÀJÄ º–?>¸ÕŸ:O+3èòÞÙ¶Ó«ßÕ¬DLåÚ¶õL×…Ã䢂¬L.nëwójùw;ð°Q](ù÷><_â´Þ6G¦nrÔEg,D]¼`|5„÷FY21%„`…˜Òµm)ïiªÇ a»H¬î1›~¤šFé·º‡di|É,XÌlú‘Z±A߲ś¼À*ïð£MoKC)„‡i½‘Øõ>?&û2ç"šÌ<É€•L®$^Ã{‘\À‡A.dXäFâ=mƒ­–½i+X ¬d1]mvì|i"p Æ9`%âAâfκt1`ÅÕ“ÄÝÂÔ[}ÄÃú,VYŸvÏì}~º6ÇôàÃ¥{¡É63³i½¼2RC~^;Óéý½çJërà}8dKäVðug:ýðFs-ùÚ‹÷ȬXLWU³Õ·„ï6V²˜Òå—£ªõÃ1¬DLéòŽ ^ONý:ðó‡Ü™N?Š'wöª.Œ<ë XAº:Óé½ ’…NC¾èãv+“‹Òõ*\³déªXiŒ‰g*¾µ—-æúD°b1£.Ó±]÷{~óRÀ*3~´\fÒŸº7^m°`1kÄæý„’Úµ%¤¬d1•«Usý­´ë˜Ÿ1±1•«Yع–¼7绺€•ˆ©\žcÙ·\z¦1µ<€•1¦ry JäYÍ(‚XÉb*—w;6¸|ÛÆ«˜´šÉôÃ3˜sFZúƒVsu"VÑêLåò3ÙœÇùGˆ)\ÄJÄT®>’mC¦XwæÝ¬Bâ¦þʪ˜¿71ß·mÞ0ö7Ìü>¼ æ´î;Í5–Ò‡ÍÁÂìb2ý0wyZ±ãwç‘SÀJ¾¦tYÐT›¿+R„ûE‚a aRoÑ1º™= 2r#À‡ç€\‡Q›z™Û˜ °Šv±<È+µÔoÕ‰¾æÊH°âkjרÙÂÅKÊòÁâ0ÆÀJS»fªumµVFã•jÀJÄÔ®Yýî[~=Ùøô)€W³dΘ}æÒJËó¹Wj×wð!'Œ_òôÊÁM¿±;{‚“©]szÁ‹Ky³ÃY¿'b•Af6ýð∾ -î¼Î `Åb†]¦¶X¨ý1›~,ïŠZv’‰ù=¬SºÖ®ÿvšÆ\ ¬²02›~Øbžr–oYF!`¥1¦tí:ºMõ¨«3›>€…YÍlú±MgiêwÌ«XÌlú±çöòDúwÌÉE°b1”Ë{ Y!wüîÌð`…¸’¸Ø ™ò†‘+¹º‘¸§2—\†®ó9€‹;‰ýtn]ÚÀ,näV²xØV˜QähoDV"†r͜ƪõÖìàj2ÁŠ«‰³QUÛ\5>XÉâÁµÔ%‡ôõÀ‡§qœ!¹ø#W¹¿hï™Ì_Á‡‹ ÎëlÁËÖë³v–`a”™Mo¢7¿½¼Ï?\{ñC&VefÓ{aÛç.uaäayÀJÄa·÷×™êcäÎlúðgtÌýÓ,©¦7íLE `e)^°¯ª¬‹-xÚSÞ?õˆVˆ)^e¯úªâwá `…a×ôÚÐ#«åA:[l¬2­yaÛ®”j‘+µwæñ°`1³égížø·Å%¹óenÀJSºê(%ËùUéŠ+Sºê,¶²^šGˆƒ§•ˆvµÔÊÊ·ðøsŒy©ÀÊsyòB=¯UZ%¦Z¬S¹ÚµÔ[fÅ!{†’I°°ad6ýls¶¼ºz’ÊÆ€ýüч1¦rÙté»vuo^™âÀŠÅT®^¼]•Ú©×À ¬b1³é§o·G}×7“,¦V,XÌlúù*Ç´Ôº>‚ÅÀJSöún¶ ê¿§q&³éÀ‡Ó½0ȶ Ö*ßL¼ú ýœÀН)]#íUÖ{mS|MÍ$Vò5ÕgxàTŠúr¡Oä¤>€ï-(?£ZL^’¼›˜“Ì_Á‡QæÊè÷ß;ËUÙz ÞXkæÓO¿¢\Y}Ý™ä°ÊÊÈ|úé7*³_êRˆÃ V!f>ýó•§­—0A€•ˆ)^~xcQ[Qǘ/ëXcæÐMÛµšÔôˆÎ¦ +Y̰k¶ýª|.[L_¬XLíšÓ›¢ÊÕà:3X!fصҚmÉíbzˆVˆv­b[¾­á WW+1îÕ_iÚòN5¬XÌ8bù…#§±^ÈI}žŠ…Aöîoérgvðu ¿ú«øšùôÓ=ì¦&Xu&J¬DLéZ¯?—ýõ'q ³ X‰˜ÒõJ‘2¸:»BôC°0»˜N?wÙž`/æ¤v>T XÉbJ×n¶’WµonoÁ``%bÎêm[‚z+t æ‚L¬D<Øsx‹Z ·oF]ßÁ‡dÇ0È+ï4å’éñT’`ev1êÚ»^mgÖÃþ‰XÉ׈ºV²HÑ‹Žª|Éülñ`:ýòj_íZû@\H °BœI¼¼¬Ôí*ç@\I °B éZÙ€; ÝÕ˜\¬W—YW¾ÜÖ}N.&ý¬0¹ÓéW¶!oSNR¨|ÒÀÏ[ÕÁ¤CÃÚ·LµŠÔHØ1>€;F~Oyf›™—´Ÿ¾æ[€ýt×áW#ìZ%µœ¯½¤·fœÖ+¾^$ζ«ùs¬XÌYM¬d1]]šWV»=¤•RAÚô6· •ƒ¯{øÙ¿`Á×%¯[íbié×8ýœ°’¯)]=ïš×ûÕ¸d1¥‹`ÅbJW¯)åªÞ &J¬d1¥ËŸ¶ä:Å ‚>'b%bJWŸ¶¸ëí-:¸°Y3dõ5Öj‡âάö€U"k¦Ó/SÁQÿÃ&†I?¬XLé^‘ É=:ß™°@ÌÚôæªWËL5U l%ˆU\]Þ~ê¼ÔÛ§QQ:â|ÐÌàëm ½Þqç+‘V|Méš^:¯ß²–Ät6Á 1¥kz­‘ÿ^ŬöVˆ)]sxKxõ]Lg縀•fU`¾ë"©…aGÅY×ø0Lž=¥ª¦ÃvÖb XÉdj×J&·zìÎB.¬ 2õÊþÛ|*Еú>¼#âåìÑÔ‚}‹U|Í„úµ¼v–÷O×@,!L¨÷~[Ðo{ 1£‚bj×Ú3%_³´ ¤^`• „ õk{1„kéšÃ Õš`Åb~È»%µ¥nU[àV²˜³zÛúâuõe‹©š+3ìòƒŒ6šhòf"`%‹!];e‹¤þlú$éÂì `Aºx¬¸ýaï¾Ý\¤“XE@Xœ~' ŽwQ“Ë;ëЬDœ ¯§ãjŽ÷è»À‡ì™L“Çö(Nqùþ €…Af>½ ´WVÍ×|®°’¯ù£½Z`êøžFæÓ?€wfœ^97o8#§9±“Z+¾$6ñ±Ù©GšœØ+Ä“Ä}yñ+uÃWö+ 2µ+/¿ü–[]u¶ `ÅbjWIi{iÕbÎLb‹™O¿Kõ—½ò^u¤À °`1óéw±8ÊߪsR+Y\H쥡ê¥Úט“šX‰˜ÒU¼k»Õ'út5»Xqu#±Å£©5iCÂPÀJ#êÚÕ—r¹ÒOçu[ÀJÄT®j»Ÿ²åºÃá0#€WS¹ª-“y«ï ;¯bV²˜ÊU—9lßÞŠ,æ´&X±˜ÊÕ²ªêÌ`{‹ˆ™O¿[ñ½¦Z?|ð(`W3Ÿ~·>½i¨l1SRX±˜ÊÕÖëÍ–ú{ô`2À 1•ËVrû%r)–¤¬S¹º-0ÞxNãÀ ¬4Æ\a|ë9 Ã>D{L§Žœ8»üHÅû¢ªF&°°aduúms–VÔK &áìç>¸‹Òe N)M>˜X‰˜Ò5ò¶?U>øaŸÏ\ÍlúíŠwS«ÿ^L¬b1/ l¿»¢ûÒÆqqÃø|ØÄ0°ˆÄÖ ¹mncÙV|Mí{”¶o§7‡Û…à/€â°³­,·u÷RhðõWðá¶Ž&Ï´¼P¤ú%óJ$`¥éŰË6¶¶]ΫÄt±1µkÖšÊâÕÄàãÜ€UÖ –§ß^ j/¹&J¬sa\Õü5.åócÌYM¬2ÆLËØË lõôàK €•ˆù¯¹l"×3Lÿ `ÅÕ »vÎeú‹J•˜¾&X!æ*±‹­1­Ë®æ"A¬äj*×öÒÜíöBÿ`1ƒE‚‹©\{ôRºZ1}ðî)`%‹©¦>m%ùÁè`uúðayânÓ¢&¯®¾Aš)‘ù+øpíNÑܾÊt}¯:âÏþ?òüͧÿÏ;¤ÿ‡xã· Á_Xa”ço>½ƒ½®ìV»Æïã§¿°q%±¿ÑO·W/2¬¸º‘x%Û`ß¶öŸÄ¿Ùåâ°»¥™ó§iýï–ñ|ˆ­Ãìò#«¦ö 5üj`¥Až Î¥fÿe_“™`Å׋ÄÕS:.kÌÁâM^`%‹7‰Í†–W’wü’ ~ÞMÌß|zÇZœXÇ¥eæ‡Åó7»ü/¬ZÏÌÉUri^çL¶˜cL°b1¥Ë—¶ô,.äV²˜ÒUüü¿X<È °b1¥« ﹫[L±&V²¸ƒØZ»nqO´˜`ÅâAb¯&7._ÄÁâÀ ¬d1•«¶:Šþ÷Ìå‰`Åb*Wµ¤ÿBLé"X!X?5ªMMkŸ%ayú>\]QAZj{eù…ªÛÿLŽÄöEÌ¡¾™aŒ‰UfW¡tyª9¦xljX‰˜ÒÕ†‹7ðÁÕ\žV\Méj¶ë«y^ŽÉ$Á×+Ä”. Gì§« £=b%WSºÌ(ó×­gÃá¥*-&X±xÛêëa¯gú5òÿiàÃÆ¢éßµMNõ(µO~È+&3êê»æ‘§zxŒ*TâʨË[ƒ™¨/rzp Vˆ)]¤§:.õ¾Óš¡±Ê´®ôÖhپƤ¦”ÍZ1»¾ƒé3œ]¶ô¶j2? ‚_S»Lå-¢™jRÂ+ùšÚõª[œå¦ª#q X±˜Ú5½ñ\ªZLÕ$X!æOÛÆµ|{:u æÔ$X!fØ5ý¡ëPÛEÁ%VcJ×ÊÕ{ © 22Wd‚‹¥kï™~yw°˜s‹XÅâFéZžu™Çå“8XÌï‰`ÅbF]km ÛäúUcqE&X8hŒº¶¿,j˜Ñèjb•ÓˆFåÚ5yæ²|j½ù9¬XLåÚöezov™˜³š`…˜Êµ-ÞC­Ö>zàVr5•kû[ÄtÉÛ9s§J¬DLåòcç~«z~ ¦r+C¹r*s—ë}ÊaŒar c܉‡ÅlE~r>¸o `A@xŽš“mz×lg¹ý”ÌšÈ ¬"™½p¯U/”:;‚®ð!ÓÚ‚5û$Êí¥ÇacO› V|݈ÍÉbÅ!Ç™¿éôàƒÉ…&×ZZ‘_ä î‘X1yØ~G)r&Ê` À qäÝZ*ò««Qø%¬C»rñ‹œy)µqø f¬ôAQ»Jö*¾j.ÛäµWÀ*ăÚUÊÛ·c"1=M¬DLí*ÞO±ÈìG &,Œñ vÙR^WŬ~ЮAíú>ì€ø=‹ØzÉò‡Ü‚³VLFØ•«ß!MµÒϬX’VäNâ쫎Z_qôMb`•X`Ð[µš³6*v= òÄ R•‚Émô”nÙY‡(„ÁÁB2¨]Õ7rr÷ƒ1¨]ÄJ¾¦vUÛŠx„,Z<¿F‚‹'µ«%³%'ß *±ŠÅ“ÚÕ ÛºÚô{ ~OÄJÄ ,4^6Pênbð{"V"®$ö÷z ‡™ƒ¬Œ1¥«UöªÅ<Á XÉb~Çm¿ª«Ùâ0È+s•è9{Âç{°˜_±’ÅŒºz±¦ª c^.~NX‰˜ÊÕ=MO†üމ•ˆ©\þŠ<Ï­&ÃNžg°0Æ‹Êeÿh2¨v]˜¼| XeA^úáý¹6"ëâo>ý#ø¿Ðä‘lœæÒƒŸ~ö/X~¥k´<ì_©w1cb€bJ×èÅX©›‰Fé"Vdn½ÆXxâéiù+øp(IÑ4Áµµ\¾U“ÁН©]c÷VÊåÎìàkŠ&±’¯©]3-Û]n5>‰;?Fb%bj—‰BÛsÈ›ó  ®ÞœšÞ|egùIÎܳë;øZ3ú±°Ó;JËg?k„Ÿý VL&ñJ)½ÎFTbÆ+ÄÔ®•mA/xUó0»¸2«Ì®MíZ­Üªz51Ãîœ`aeÜTå…f› , ±J,°vÙÊV¦žP?[c€‹)]Û™vm{ æúD°B°uÔ´qMø°Lü&Ô?‚J?óÞ)á´ë;óJ)0‚6F!» Óú[³9¿~vöbB}Þ.„e¨WnAq‰æõbB}ÞÃËAÉ{ÕÍe‚X‰ÚU^²7äë˜p~ÀŠ«‰³9k,u³y•,î$¶½}õddÕâMf€‹‰»GNUMf<¬dñ$ñ¨¯âŸ*ñ$1°ñ"ñî{gý<‚&Xq5®âGÏ£ËÍ®&·ç,3Ÿ¾øIÙ«k—äê™h0±Š«™OïíX[¹¶a;X\É °bq!±÷Nè—Ö+‹ù+YLå*&kÜ*Ë,æ÷D°bq ØÕlo?Ôu1ãŽñüù« gWiÍÛ &1ÂL° àçw1¡¾ø6·­KïÊC„ËE‚X!Â]L¨·}—‡Rr®5ÓV"¦t•ië˺dYˆ‰•ˆ)]eíÝäF²áÒ,`â0¹jJö«/9Rb~ÄJÄœ˜ÕÓ´²Ë¾§‚Ó®ð!Îä´®µ¤R»º;ŸÌ¢ `á{bB}±°Ü°¦³M&³°B̨«¾ÚÁʹ(+ ¬4ÈŒºZò³h9=bf~É+sŒ[í^LW=Ž˜…Á 1¥Ë¶×½­¢~ȋ߱’«)]Í»7­¬jæ žV"Þ\[ªh)ôýÌÉ›¥ü~ÈßÁ‡Ó!míaR žO&ß°0ÈL¨/–§T“z”:™À 1-¶¿»í•Ô» îTVäJéêÍD³˜8Þ2¬ï1Ÿ¾øÞ³gý°kr^,Ä{̧÷,–Þ²z¹9Cb%‹)]#²±zçlœÔÄJÄ”®‘m´.EVÄcb%bJ×hÞ‚6˧¼ `eŒ)]ö|~¬Æ Òõ|`ò,Íþ¾U ?`Ád&Ô—aUíê1™æ°Ê ó&ÇÀcÍ!—<öˆ¾þ þtW§vYe«ùí£ø3÷8€_S»f›yÊi ‹É7¬S»fßÕ³µÅAî\&ˆ•9xkÌ^6î¿b†Ô®ð!;‹¨iÄNòP¬d2¿d¯\3²ÜS~1û&€•A¦Å+ÛÎ>ñ(u2û&`‹™RïågÉ·f勹P,XÌ”ú²}]mÖ²Õ'n‹Y?+Sºl¢ú³u}Z,¹ÀŠ«)]ëµêbQ”bb%‹9«w)þ¤IpCÒa+Sº¶¯©»©fˆˆ•,¦tí±Rkr.Ûb©ŸV,æ†q¯´Ýe¢Å;xXÅbæÓÛäð“²Ëá͘Ÿ±1”Ëk%ïq,»ƒÀ‚«™Oß¼Æjú“?£X<È ¬dq%ñ°™ZåØ!õ/€‹¡\-›¯F½–=ÜÅ Â `…¸“8—üº¬]=É ¬äêAââe>º8«7_‰¬D~uKùuš¬mŸ¼ûó¿!Èø£nšìe"“ÜësÕð³~¾pÛ99l×'¦ ¬èk`…{¯Í|ú–çr¬x›»ø0&`%âð«W«Gíß÷m›ùôàà “¹$ÛU9³kìÀ‡û~:»¤m»±¤fv-Öê`az1¡¾•’ýðY̽Ylq°Ò(S¼ŠÅäÞ']UMžï° šL¨oþ¬¦tµðf*[À*âÅ„úV¼ùÜ”_†¤ÃVÆa—ÅL©ÌÙÄ<ÜÅú3+1µ«ZðÔæ-{ø`1gÁ‚Å,Pߪw(ÍY-¹³øÚ=€b†]uy©wõôb?¢€U\Í|úÖüõåŸC~ÅbfJ°b1Ã.ûþçÌj3ûÅÒå+YLå2õWÁFñ;¦~«|Ç̧omX—åž½!Ó €åb>}ë)uÛTb>G`…˜ÊåÀ4Ô]Ìfî^ÀJ®^lŸfÁ8=,ÈÅ#À‡ ¿§îAD¾½19øšóš`Á׬É䨵¦Üib·L“¿‚aEÓ;ԋ¯Åɬ˜|½üi¯Ú¬f‡õ‰Xez±B½÷k°®Üða16€‹©]£Ø¦¹«©];ˆ&±’ÅÔ®1RN©É§lL‡ `Åbj×°¸i÷*[Ìݱ’ÅÔ®™Š'±ÈgÇ‹¾&X±˜Q×ô[è$'ý,¾U `…˜Q×lsµ®>­Û|›°Š«C1}  ^?¨u§t}ŽÚ9­§ýê¼å‹5»Xð5óéÛJÓ;àêß—F‚bJ×òÜ¿v©­ö9ÈÌs Xi)]¾TÓuvÕ@ ¬DÌ1^£õûÉóÁÕ\&V\Méò÷Z¶ÍÓ#v8ù!V²8€}ÿ³«ú¨owžv}¶@ ¶w÷Ùr ñpïÀН©]žÄRÛåIñ§¯CäD¬âë,®eÔª[ï°7'V"æŽÑ"’^«Úq³^ÀJÄ”.û¬m­žï°7'V"¦tía?º^2ÄÄÜ+Sºööû(¹†Ãâ•f5ê»Ec­"')ðñB+ăÄ^Þ%ÝâMb€âIâ1m¶m5ÜkXiŒ‰mA­óvùýañæ#ÆV,†rõìç‘óÖòî@Œ9€bÖ§ï¹Ù^³tU@˜â°Š«™Nßs¯3µËfÓ©€•ˆ ‰½Áñ”·lZ°âj(W/þ¬æÚ¥â@Ìï˜`…˜ó£”iß*2= L”ìz"~ÈÅvmÊç ›'š¬˜Lé2Õ«6;ÕU‚%»Vš]Áâ±Úµ?é˜ÒE¬DLéª)—<äÂÛï6Xq5¥«æb™¼ ó&&`‹™No6Ù0ÝCÄcb%bJWõŽ(Cn ´ù`4€W3 ·×±½‚ÌYèOò+YLéj){ƒcý~€ËÁÂýÓé{³µ­µNj¨T°ÊýÓé-B´ÝVƘ³‹`eŒ©\Íó[V·æL.XiŒ©\þDÍv|j$À: +S¹lc?w]ç/â@̯‰X‰8¸k{£½þû9=ì™Nÿ>¬‹üž,d«céáÓXX˜]ÌQèö1Ö²û/ñ“ÉÈŽx®®8Ê69m´äÇO»“VL¾öÇ.õÒPñ0½(!Ä*Ó‹éôÝß_ä%¿AÚ|ÀŠÅÔ®QRÞ+Ëë/ÍX!¦v ïV5oo/?‰Y³+€bj×XÞL~>¹Y³+€bÎê—îéí6+ò°B̨k–bã%ƒ÷0«¹<û<«Gb®‘·YÿáÉy8ãàG‹˜Q×´aZS>UÜl4À 1£.ÛþdÛz©9 á3&ö91b*×*Þç°Èy(aLðcÔåu/I\g*·t¡ƒÅ\T‰•,¦r­±]“l1}M°b1•ËXÖ¼”cú´˜OìV²˜ÊeÛŸõjŠ¢ZL­&X±8b_-ï~uþk$àÍñ |®¾©™»ôܦÚfbñÌ:`_‡…Ýý 뾞ƒ ¿@…É_Á“)š¶N¯ôúÖ,Œ2óéýxÓë?¨_rX‰•|MíÚ¾×” ¥®p„K¬DLí²àÏo Õ/™Í®V"†vyKÃ=šž®8 Ö¬Œñ ±—inj9¸Åu1`%‹'‰‡×ÞO6]°bñ"±íãö’4C‚x+Ĉº†lk-µïåâ±bÀ*®f:ýÈ¥x-õ;æEpÀJÄ™Äuøkf9ÎÜ$V‰3Y|ܦQ-fkŒÄlúðáæ*øzøùïí}í!ÐìýìÀB Élú‘÷¨ÿt›‘ˆÃ(¬SºJZ¦e»ˆƒÌ$§€•™ÒåïýÂ_µ˜5`X±˜ÒUü°½õì˜?+YLé*¥·)¿Ú|ÄÀ‚t1›Þ¾‡æ%stb~É ÄL µYÙ[¾õ ?HWàV‘.fÓê—QS®N¿Yn'€…ÉÅlzS¼•üÖ]&æ÷D°BÌ(¢ymÆTÅ:7hæwðáz’ƒÜ,@­ãÖ&ô`røÙ+&SºšïÎ$Ÿˆý¬Sºš×IÊrJ*OaVQ¦ÓfQ„mä#'–x`ÅbJWO¯‡y²Åbb%‹)]öß{&‰šÖÅÄ›€Uˆ™È6ü"§wùmîæ“‰\ÍêôŽË=©U6ŸA¬d1¥ËëØ½ËæÃ…V,Æ~qXü2S—“œ6+¢°BÌ ËÖ6?áTÜx•\Í™9| 8QèA¬:`?€H1Š}$ë÷c|8auúð!´£<ªWwÕG9þì_°2ÊÔ®1[[ΓÜXi”©]Ó¾¯Öäú¿›O&X°˜Õéýй×-_0w/`‹YÞ¼e‹]“k*mVŸ `Åbj×\þÖô¶Á>\{Q»"\fÓ¹kû¯ Ã&†X% §7+µ7=HHGb×ø°! É+ÍWç(iv½/r~NXiv1ìZ¦z¥.9úỘVfîճbêfØL+ 2¥k-¯;qk#p˜Öa†¬LkJ×Îy·y«{~p5W7‚bfÓ¿Ú±–t{5þ7ñûÒìçVˆ)]þL,§&ž¤nÖë XeŒÃ¦oû~»¡œÁÊ,Œ”‚……‘ùô³Zð2åžuïDƒŸX!Æöi¶œgkUÌúy'üœÀ 1£.oQ›šÙõ*‹ôsÂJcLéòâ"©UÝÕ”‚‹)]mt×uV³÷AÀJSºš7£oj“­÷}ÿÏ ¬XLéêeúF÷ò«Ä4™`…˜ë¢GäÞ7Su5?cbWóÆ~ú“š=oy;Ÿ‡A&X°xìlkMT }Ø·1þ|Ȧfzžé𗦆‡ l*±’¯9Pæ1Õ†1fØõ|ˆœ8Ê#{ÊCo°ãQY+£LíöM´Ùµ„Åw*íÏ +ùšÚ5ê~uœQ‰‰•ˆ©]cz³ˆ['؃« ¬¸šÚ5lC’Øo3f´¬d1µkl¯ŸœTbÖT X8óæ|zEÈÑ’ ðÜ(€Ÿ]™O?§÷ÇhI\|à°’ÅŒºfó¾ÝU&æ+Sº¼™bëSlŸâ§y®ïàChÍimà•§Úzû}nôs+ƒL隯æ·E[&ÞÉŽ?'¬äkJ×*É[‚ÈñoX±˜Òµl«Ùÿì¯%b†Ö+Äc‹×r»<öÈt5±’«xšîuä+~Bü ðï´þ>ÜÈrv­éE™dµ» b“YŸ~Ú.עŤá¾oë~NX‰˜Úµmëµ§¾c G© ³‹ùôs—m³äÒÒù`1'±’Å `vO^¬§ˆñž§íÿήïà×äí©µcË7;…Ÿý V|MíÚ»”"7y§´þœÀéñÐ)3¡~¥TwVïìcî_À~þèÃ8-{U¤?]ÉâEf€‹7‰‡‘\¹]Í;û€U¾'&ÔûÓ×ú$[ŒÉÀŠÅ…ÄÅÓ;/_ÄÁâL^`%‹+‰=i¹nÝâIf€‹‰‡IÀí–ð`q#/°’ÅÄs~»ü>w+C¹–×ò/ó¶9¸ËD+®¦r™æÕ|[Úsˆ‰•,¦rï×.Áñ'1Ÿ.¬D¼ÕGñÐIº*¢®ðá4” R,X\r3‘÷vóç¹âí›/5{ï¶üs «êWMˆJl+öNÿ9a•u‘åé=@µ íV-ù`1gÁŠÅ”®:-šú‚ÌR–¬Sºê*y—Kù‡ƒ«¹:+¹šÒUwM;/5£Œ5+V"¦t5µ/U>‰ùô;`%bJW«3Ñ.î:Œ1µ‹`eŒtµ¶Ëk-fÌE¬b1óéW³ÍWéò-,æ‡L°`1OËm[ŸJîê;³w ïÏ ¬—€-mQ}vO ‰]àÃi95³?…íj^_Ù¬4È”®îQzV;`¿“‡N`Å×”.‹šla X½óÃNXÉbêžµkc«i¸™ùôàÃC_û™JúsÔ.ùš?›`Å×Ô.s¯K úšE`Vò5µk”n{ûK‚ø˜#± 1óéרÛk_iOrÞ¹Ã?'¬DLíÃs:ÔׄïD¸ŸXãè®9òå7yˆp;µë;ø ¸\’ÇÞÉë«©&Ïð³VLæ÷4-4hí²ª¶1”b¥A¦v2çk›ÐƒÅ\“ V,fØeñ©/Òê÷Ī+YÌ1ž6E¼k¦l1?(‚‹)]Ë_l©•ËßY–?'¬d1¥Ë¶"åUPµ˜2Á‚Å̧_«y¶´ï±3OÀ*‡c#[ΗWƒR£ŸôˆðáL’7Oo(ë65?÷ȼd `Åר‰yòÀ 1”kûÿN—«Wc𒫉-ÐÞ©ˆÊ•yº°q'q›cô$–²|osN`ÅՃĞ·/ýÂós"V²˜½Â|U+=À‡ÍfðµmD^‹4“yʰ’É”®’,2húòÄ} ƒÌÇÛ×5KýýÕÛ§…jƒàæ_r©iå¦ömyo°N`ÅdjWñû”uÙm™jM¬2È+XìϪڊñ½³ÿ9‹©]ey‘‚KSÃÅÔ.b%‹ù=•mÑñº´=sy"V"¦vUÛ‰yj˜HÌ…€•ˆ'‰m‰éE~x®ÀÊÓ]µ_Íõƒh.TJ}ÎA‚¯»­9S»˜ð°Š¯™j½ë²½X¹-«_s^,øz3쪻[¼|YUS¬‰•,¦tµ2Úηeõ`1—U‚‹)]ÞLz õ8"3Ó:`%‹)]mæüZhU‹¹J¬XLé2±MýÏÑ `1SoV²˜ŸS·ýAM[Vže°b1¥«›µEñû@áç„•,^¼zÏØå>Hצt}r© ½S>Yº˜ð°‚É%â±ý%¹ 0ë'€Ÿ¹0Ÿ~÷•ƾmS@ˆ•,¦ty}[û Õ„÷+Sºü>i7yŒyJ°1¥ËŒ­/OL° `eŒ)]^ýª­­O.~Œ+Ä”.¯?UÖCzžÓ°BLéšÙ «É.ï%VcžuM‹ ÜjðCžÛö?S­Þù>7ú9_Sºü©X›jÍ÷¹ÑÏ ¬ÓâÕjõ~áê S3‰•™ÒµlAmY­Ó‘ù`4`%b~Œk”mÛÀ_ð÷s’‘ñ>$´­4󖟪–ÌÓ®ïàsåå…e›¼N„C:‚•éEñZ6VùV~ü0Ê\ŸˆUF™ùôÛÛ8æt¾Ob¾¢X‰˜a—m‚æ’k´¾N`ÁÕ̧ßÛpÿ¿R,æÊH¬d1µkÛüè]pW`X±øßY=ÿ_òl¡žä÷·ï_XÉâNâì)CS&ž$V"$nþ˜G­ôó>¢û9WO{;´]Dµ.¿õÿÂJ/‚W5£Iñƒf–wŒàCfz˜]®õM-×þ>•ü9_ÿ¨7lN¯Î¢f–Ä1&Vñõo>½ƒ=¿óÖÕð@Lƒ‰•ˆ ‰Kíצðb~OÄJĕĊÓЧ1Ì+cÌÉeëéèS=)¿¥÷þÂJSºli¯}^óq%1°1¥Ë65µµ‹Éûü÷çV\Mé²ÅÊ´ì2L‹y•,^$îÕëÉò+þV,Þ$Þ ¶«ò›ñV±¸Q¹ÊœÞ=BýŽK0X‰˜ÊõÊ2Èúw¼9È ®nüÕ¶©_‹±ÏÃfâ7Ÿþ|H £¯ýsòn)Áb`%_Sºª“»æV|Íe‚`Å×”®ºÚ*IÎIÅÉó_`…˜ÒU÷¬¹©{äR¸H+¹šÒÕÊë+~X\5“`ÅbJW«~}t ?-®XÉbJ—ßã¼Jù©óc$X°¸ósê)תŸ¤–Ä…‘`…˜ÒÕ½+|UOÙJåwL¬âêΠ«·áÅøÔÛ§’3ÀŠÅ ºzŸö³‹¸{*•Ÿ±’ÅáG{5ˆ²Ôw1å·<ý#ø Ö”®>ÓJe«+råŠL¬d2¥Ë‹SΩ6vyÿœÀÊ Sº¼¼Á,ê9}\T‰•,¦t ¯ïZÔÒ°¥q÷D¬DLéÞùvÜ’I®æ ,¸zPp½Ãß«e ƒŒŒiý|È+¥hŽ5³Œ²Zg ¬˜Lí^Õ$Wy‚« ò vM¿rrŽwÉœ^+3êšþ„번i2Á 1¥ËkqO9 ·4 ±’«)]óÕðNMË(Ÿ±1¥kn´¦f –ÎIM¬DLw­<ý²_m1êéc¿òwð!É’ÓÚël´vk!ù9» M°0»&dY°X½š¹èkF]Ä*¾ž »V·­HIjýªˆêt”IéZþd=ËÕgrˆp ~®–Qfã=§×íS-fäD¬d1¥kûÖ>ËuRs­ V,¦tyLÓþKqÆ15“`…8`§¿ËËjßË2'>äïàÇLíÚ¶”ÿ‡Òå9!+&#ìÊÉžç¥õÊavÁ]+Í®MâúÞ¨3 `Áâ•Hì5ÀmÇ©Z¼È ¬bñÊ$ž­ò ‚R‚Å b½ ‰W_63ÅÇO¥Oò«ˆõª$¶é‘ôÓrFÇ+Cºr.¶–ù¾íu/ús+®î$n±Í˵èÁâB^`%‹‰»CCÞ©ŽFb`%âIâÑL{.}}ÄÄÀJÄT®¼‡'Óʇl%0¬Œ1•Ë;•·ÛvàÓâÉYM¬bñ¦r•¼vëj‚fYœ\ÄJÄŸWóȆs²‡uñ·<ý#øXÁA~=zø“‹/­Áf€…UbSºlû¸öXj]ÇµÉ ¬²JlJ—ýÓ°?ðÁb~É+Sºj𽦵ô`ÿ‚¿°’Å”.? 5%¼©Ÿ‡u‘`Åb®mµù²ÚÔÒ{e/Lëïàóή:öÞªBJÚŰ‹`A»6µ«¥dëj¾bÈéàg⚨]-[˜¾äÃc&À¬ ]51êj¥§îù|â´ÄÀ Óº&F]­ûfóÖÊè0­ƒü<­kâäj«÷}íz &¬SºLäÛª—=ßÁÕan+¹š?º§ä‰¿«ê÷õ©¦ù;ø‹ÏAîÕÜWo}¾æ‡L°âk†]½•ܪz’™Ø°’¯¹"÷Ùê?ï$‹9Ê+SºúêÍÓT‹ÃV±˜7öÙÓv¿l¯Ä\bˆ•ˆ)]¾?ð¢n²«„,¸:sVSúžÔe%?Ä*b)]cl?Š–—§ÊiM°°<…ÀiL ²Ü8·f\1>€Ùha—…R»« ã¾Vò5îi{ûÝô+ûÊК`Å×”®YüÒý]§ùÙâÊ䈀•,¦tYŒÚGÕÓ2*Wd‚‹)]Ó£—Û­û§Åaf«X\(]s¯á x²ÅM‚‹ gõÊ~¬öu¯™šI¬d1¥kù“­©GTæÐ¬DL鲯–˜[Qȃ« ¬¸šQײ ßžªX×°{"V²˜ÆåÍ1Æ+3ÙV"¦ríì3o-®fB°âjÎÌ]ëh³«Ï ká†ñ;øGÙ¶êY.ÅRE“`Åä@lSë—Eõ0ÈÁ]À*ƒÌ…¼ÍY­7q]¬!ö!V"¦tm[ËKºU59¸šÁ‚«¹¦–TlXñ6÷avUä¤>€1ÙÀ^íôÖhø`r ?û¬˜ÜHì÷ÀM ~þr°Ò wÏâ7Hê}[™`!´f:}I«úæ^ÞÅ,ò«l&˜N_<ÅÒvœI¶˜cL°bñ"±/©ýr {¨ùWÉ ¬d1gu®/xX…˜éô¶¹¶å-ËÄLÊX‰8“Ø 45˜“šX‰¸x[c.“'×&3ÀÂäbL1õ™­vñ˜>3 XÉâ¶.h¬ñ°alØ0>€Iaü‹ý]¹Êý ËÊüÙ+¾¦t•ÑÆróɲƒ¿Vˆ'±^$qãìøaal‹¾þ >øšÚe6¬¾‹zØUøf"€“©]iûkõè§2Û(€bæÓ[ Ñg)—Î`‡ŠãD¬òA1ŸÞöC½xcCÙâNf€‹©]uú[fµ@e"À*1/,pL£g¹lh ßÁBÔÕu5”&?AªÌÅXÉbSëuVžW=|ÈçôàÇÌA¶°)¥këÊÃìZágÿ‚•ÙEµö÷¶Ñ-â÷ÄÍ€•¾'JWÛ»¿nâÕÙÅ%™`evQºº_›ÍKZéav‘—Xev JWomÕ¢çWuj&Á‚ŃÒeŸÃØyª cå«à&oŸJ_˶×jCù2Z«L.¦ÓïU:›Ú£¸Lб1¥Ë÷€:©feÖ`+®æ†Ñ˼ÛöB¼Û i¥+Y̨køv Þ®®>-泫V,¦rù¬Ü¾•-¦b+YLåš&?¯Dµ˜ B°b1•kÖiqĵº,~ÆÄ*Ïnu¶!çWÕ‰—@àƒìñcœ7Y”¯¦ÀÔYÈü|Xbj`öžáM}4á¯%Éü |Hc Ã<½Ã-mùs~µ0T ó‹ õö‰ÌìyâüÚÁ]ÀJó‹âeQêj+‹ýÕË3X‰˜âµÊN¶¶ÉaÏRXq5Åkµ´ÓŸ«ÅbŠ&±’ů5S›³^Æé`1ƒ‚‹9«}”†ÜL¤Žài`•°‹ùô¶ïò órëíxŒB°`1oÎ-<Ý-—Ë1ìᙟ±Ê3Ÿ¾xµ¯Ô§ Ô V"fصmnÌÞä=2Ÿ¸°âj*×ö²}=‹‹•)0+YLõÙ6L“dV‰ÅãwðáT R“G0mÉ'0ñO+¾Äeùóæ3öàëM^`%_/{‰yù)PeªuÀJěij™ô5‰®ŽJf€W3¡Þtg¼v_¢Å¼²XÅâ éòΤ8É/Ü*Ÿk°bq!qñæ·—”ÃŜÔÄJWÛ1Õê+CÅ€•ˆ‰»—ÏËâ6¦òÉyÀJÄĦ{;/y]`eŒ‰w+w1Ú Gí+YLpIÕ…@é™Oÿþkîܼé\ëY>§¯|¾ÀНqï^CÞKpÛÀÏÄùô¶”§šë%8> 2W b…Aņ·A2¨]žÖ<û `ÅbJ—ý)}èÛ6Á°BLéò+³6²êj4XÉÕ”.ÛÒäÜuáL+‡aò*˜ì(ôýT 1Ÿþ|ø9»š-«kÉÉ•oÜX1™Q—ÉmŸK=Ѭ=ð+ 2£®f‘Äôî{"1—X‰˜ÒÕ¼¸\Ö÷m,¥À‚«™OoZ”½|(À A+Äœ\=Yø÷§A—àj>Î XÅÕ¼}ªÝt`þy¼-YÌ™`ÅbJW­ØPéÄ\&Vˆ)]}¶]ûVÃ=¾ XÉÕŒºFÓ;û¨óc+3êò }®®ós"X!¦Œf“­Lõð¸eF]ßÁ‡NëÑ^Ñ¢º0Žø«±Ò Sº¼ÊÈêã§:8«‰Uˆ™OoS1Íò÷Ę™ùôuzùMß"¨Äü Vˆ9Ƴú!UϺ˜5°’«)]³Í¹n{Äœ\ÄJÄáWO¶”Ô]L+Èìzò (!ö£kïúiyØ|¬ r ö’9]>rbö^ÀJ¾fÔµJIùz«ñaqã3ÆV,fÔµüùv“·O+ð+YLéZ£¯Ùn9¼‹95 ,f>}]sö×·-ZxU,f>½ÅÞwîr#{ æ¤&V"¦tíâ e±nÌù `ÅÕ”.¯,²·\¡…#\‚bF]Û—ö%MûÓÕ,Õ°’«um Ù–~ÈÆŠé+S¹¼¥Ð”“Ë+ó3V"†r™M‹¦z‚ÛxZÀÊ/—k«ê&†ïEV²8€k™¥¢Èêá€_›ÿŸ>Ä™Áä¾gjI^%X¼3€_3Ÿ¾¥Yú–7Œ/UVñ5óém}){\#§ƒÅ(‚‹+‰«ÉÏÏ3ß.°BÜHÜfów®ª«ù9+¹º“Øûô¦]e:X±xx{qµ,[x•,¦tïO±Ôïp2°1¿ãRKmSNe ay+®Þ$n=Ù.HŒö¯¯V±˜Ùô6+½J¡zoÞ˜°1•˯D÷–ÏQ[ &,¸šÙôì.‹Ú.Y‹3y•,æ'Q½˜ÜF=þ‡m›gµÿŸþÜyq/aAçÊ}Ë©OUXñ5¥«ö•k¾å•~3¹<€bJWõ@±É Ïï6X!žasMêÙÖù+øWÊ…Ñb¶½}‘ç5§&±Ò¼¦vÙÖb¾nXT_S® |Ítz[ž½¸Zö¦±hEÀ*óȰÛÔ^N¡kLË`ÅbjWÛ¢–-ƒ´x•,æä²&¥~Ü1? b%bF]^}jö[ݾƒ«3ÀŠ«91{óò*¨ãò°™¸a|P4»7Yrª@ܬ˜Ì°Ë[¤—|«üIÌÌÐVˆ¹>y5*/s Vˆ)]£›ô }™`&J ĬNï50sêjcI”€U¾'V§·_Õ@%æ+SºfN-¯%‡Öl÷ÀŠ«)]¶«·è¥©[dÖ¿ XÉbJ×ì=ÙNDÞ·1-#€‹) sÍiBð{”‘¾‡VFü 4ËwbF]ÓbrÛæ#öÓÕ3¸ØÏ}p5•ke£"/O¬ø°ÒS¹–©ï.·Àé0Æü VƘʵº÷&MêwÌ>j«XÌdú¶ÖH=ëGÇa D°`1“éÛÚž-]Ôj ¼ÀJSövö¾+ù÷Æì!Xxô>¼=à‡¼½j_’+Y6¾T `Å×”®í]þÔêQˆùV#€â`ñÌþ @ éùÔ=`¥A†tõ”,„(ró”Æ ïV,ž$®ÃÛCëb=H ° ÖÌÚéÉ×óUå㈅ž@àô^4Ù<`2Äeâ¯_ý‹U– Þ ÙŠê/QÓíÁäiòWðá¹E˜^+§¹oÅí£lXefÀô´{ê[Í€i5ð«|PL§·ÿz¤¢çI6> `áƒb:}÷”Ò}­xqpõ&1ÀŠ«;‰gò*Íâû¶Æ+Æ€•¦5'WIþ‚zÈe:‚v¬XLí²ýÞz¼Ç”Ÿ€•,¦‚XÐôoÇÉbŠ&ÁŠÅ›ÄÓãE½:=3Êø™¸3›¾—Õm~d±"JÛXÁÕÙô½l‹Ù–ZC³ñ67`%b*WµŸ½jÕǘÒE°âj*Wí¯Ò"òÏLb€b*W©ôÙÅ’´—¹+¹šÊUWÙÿ$±(ÄÔb%b*Wõ.C­ÄÒ™j°1?‰fL.Y­“ÚŽéÀ‡W90w‹†P-ùûn¢§˜¿Ìü Z©Ë¯ÔyÍtúæ5Óé»íKNKq™ÙÀ 1µ«±SW«Zw^n¬2½rpõÞi¥[»ßƒÅ\ŸV,¦vuÏFkS¶˜3“XÉbjWo…í[AÛƒÅü V,¦võWU“-à » ‚bj—':é+ºš_±’«uõ½zñJù"1£.b%bF]ž ¼§Þû ì½V\ͨ˦¶Üò»óÚ+`‹™Moa±mùþÔ Tˆü+S¹¼EÖ?½›„m«’¬°më<ãïcùû ô°~Xž »À‡´R~O¯Þÿ!‡.¬ª?o;ËÓ÷™ö¬µ«[d>üXÉ×”.oo[y¹,+ÓÕÓ3xû­kÔÁÕœ!+®ž»òD¼‡°‹åéÀ‡à‡ ã\ŧ§|¢9ƒ³VL¦v­\kËrE”Æ'²,3¾/ÛçÖ,'ѱ¬@À*³‹éôÞÉh¤t{¡ÿi1«”°b1£®åÕ(SVïDøâ<`%‹9¹–íù<‰W¶˜ßÁŠÅ”®æ´EFÍá›à€•,¦tÙÂæ©µçÛþ1cb%bJ×îÞlï?L.Nk‚W3êÚžü˜åɎ鉕,fÔµw+3éÊÅg›¬X å^Qv$µ JHƒ XÅbV°¶÷Éu,µšvo8¦šü*Ó,Z‡Ð)€_3~$“€Tn•ÞÄÄ+Ä•Ä{ŽÙå’éé¬Cºüë~Ý•j³‹·Vš]ÄÍÕ[åÏO‹™“ÀŠÅœ\Ù‹©ÈZ÷¬d1?Æ<ý]M‘czV§òvM^ãUfLöuåÏXñ5µ+ï½V½ì¾æçD¬âkæÓÛ %ÿ:Õõ©36€‹™Oï½é-J•»§t椰BLé²m~7ÕS7WŒ¬Sºª îšê›àÆ«˜€•ƘÒe `«œ'7‚‹)]Õ6½m¨ FoDV²˜ó£Ú÷Šò›+²Çÿ§ÆM^©æky¢ƒ¯ù=¬øšÄ¯ÔKN‰ŠK°BLéj%{­5ìb鈀U™éôþàÄSk‹|¼Ç…‘àô|¼ÇtzÏ=ò$^õƾ¦@ °BLéòT´ô§¥³BÌ3ÜVˆ)]'¶½ä#\¦Wìç>Œ1¥«{»—r;ã?XL X±˜ÒÕ×òÃÂ$S»Vˆuùi‚}$ê1}ˆºˆ•\=IœK±oB&æÜ"V"¦rùÓƒÖu‹©˜ÄJÄT.Ïyjý’v æÜ"V!f6ý¾»vt><Žã‚L°0¹˜M?Æ9·¡^·ñÈ:`%‹93gJµNÈíÂÌÚôàÃÛmή™¦WaPW‰ZâÏþ+¾¦tMïZùç‡âëF^`%_SºfmÙæ§º ³€fÀ* 2Óém‚x™1¹Àsï`!a:½m»ìïZr ˜Þƒ¯Vˆ9¹Všþ%õ­ÛŬäjJ×j)½^ª³:0,Ìj¦Ó5öj×›à1Õš`…˜òão\SNj;ÐWã|Hîä´Þ¶×lãvz˜]\'f‹Ó]Š]̡뼗XEA˜N?v/þîAŽºÂ!ÁÊ Sº¶·Þjoä8Aˆ•,c<[Þû±ˆ9«‰•ˆ¹óÚ~Æ¿qcÿ°0.žu}Þ[`mQõÛI¹Y哜Vy“8ï1VWFVÐ XÅ×;üè–mÔ‘×õàk¦Ó?€5 :M¶o¢]ÓX¾ÎüÙ ¾f:ýtõ)ENµ®<Þ `…Úå•’[*úÅgW¬sZç2Û—ÇŸ³‹Yí+Í.ޱ§íÌ,çÿ†>ެXd‚Ÿ#ÜÁºY½ Û­¶ÈaÿDÉ$VØ? §·ˆ-Ûê¶ä+>ý`ÅbJWkÅöšMÞ#³2l+ÄÛë6)PÍ‘Qlð|˜ÖM ;³'L«ƒõ/Vd¦ÓOûºfnr-–Á,øšéô³ç±Ö¼mí?‰™ÖÀ 1Ä“Ãm=W/ÜVàVr5£®îy,ãöDÿ`1WF‚‹)]Ý›Vvµao[XÉbJ×ð*AMî¹0x3ÀŠÅ”.oŒæÁ„¼0b€……‘'©ÓϯÆLçLJå‰ß1±ÊòÄtú9¦íøòPŸL´°0,XÌtzoFÖ긄–Ð XÅb¦ÓÏé…¸Ó­}äç*ÁÆV,¦r™ ¼ºrÈÄ4™`…¸¬¯lEÍ´…Q×wðá„ÓÚ˹­ÛóÚà ‡_ ¬4È”.CçÕÔë§ÁÆ€•ˆ)]8•U/o>?‰yû°1×Ô•=¹S>ìL§¦&y™·l’¨O:K´°2¯©]¶ ɽfÙ×üžˆU|Ítú¹šíJÕ:~ŒÄJÄÔ.ûk/é|jt æ2A¬DLíZËÓÃå³®×ËÞŸXc¦ÓÏgNªÄü&VˆumOßMóŒýt5³Vr5¥k÷]g¿Cø´˜µÚX±˜ÒµmoÝÿ”:•ˆï¬#ê2WU تú9±ÐOÀJ®^$®¶ë«ò{ÑÎR–¬X¼‰íž= â‡sV§>‰M“ý¹E•K u®Œ,˜Ìêô+yÿÙuÉÍ: ò /°Ê 3~yª=±¿~ c ¬D éZ9o‹å“ÔÎXàÿSvnéŽÝ¶žÑùx¿¼g0{þ#8€ÔöþÑ"µÊvò`'Õ%€\EÀV\ÝH\Ó°¿ÔÐ:ÌLb%‹;‰ý*eduyb¥jÀJăij얦<«K`Xq5¥ËÖÓ\R¹LÃ鵋`…˜ÒU²g¨Åý£^`%WS@Jͯ'ŽUb~NÄ*Ä̦_eø“Îrçˆ>3À‚«™M¿Ê¬^Ȭî%ج4`%‹©\Å;æ”Ëfó“˜ý$V"¦rÙ—˜úlòºÈäòV\MåªÞT¼'åÄ©“XåÄ©pó‡`)>ìž::µž/Â÷i1“¼X±˜Q—é¾÷ ’— f-°2¹(]ÝvØiª%c^`¥ÉEé²5u[¼(ƒðR5€‹)]¦l½‚É-í½äÞ!½3€“ƒ»zê5¡ çaEž“&T ˜,L.¦W­¼…Ý­óç˜2Á 1£®íqù¼\A\ÍhXÉÕŒºv›©–ÛYÆ!†“‹`ÅbF]¶ãÛe,5`ç΀•,ô²w·ÿµøA3™Nÿ>,”®½½'vS¯D¯ìXñ5¤Ë&¦íôn¥ƒW›,Sè ;üÝî©®OL§VÕE“k÷w²ÎKÌaz5þj`•éÅtúíUò³-5îbô°q%ñÜž§Æ]ƒXdh×Îi{RU­O­X!î$.¶Æ,õêж/`•™éô;W/l¹\ÈƘž&VãIboÁ»:¹Â·H¬DÌÏ)φ~=XÓÀÊSºJÎ¥õÛ¯>ó{"ø™x2~—R-2ÏêúÄs€\=)ô»øsŠ}«iN3¡Šñ|(Däì*âç6Õè'$î°âkJ—­å¾¢«ùU ÷Vò5¥«,[T×åGˆù!+Sº,*i© 2u¬DL骥åUn£ŸcÌ’¾VƘ“«V Êóåí¦ƒXÓÕÄ b=™×µëð7woM!?-f2l?oŸ&svõÚ¸¤¶6êÑÓÀ*³9ý®Ûß„Ïç.câBb`%bJWKsxÑ–îÍLéú>Ä/ô—9+½^%ÐÎ~f®dþ >\|qzù+ÞKWœ^¯¹ùs Ó‹ùô¬Í<ó–§(b¥Q¦v5û&Z¾5€ø´8ÀŠÅÔ.[ÚRMSì6Ø™°’ÅÔ.o;QªÚ6´3%`%bN.ïd+\‘]ͯ‘`ÅÕÔ®Þëz5øW‰¹$,3ŸÞ×þ§é–àj¾×°Š«™OoASå¦Ësv¬XÌ £'8äzé8z°!+Y̨Ë$o¯2dåb]+S¹¼…ñ”úìLú XÉb*×ë^ãÏŠbqØ©¬XLåòzOSõì˜ËV²˜Êõzí7eyŒ™ãÀŠÅT®Y§·—ǘ’I¬dq·>þyWY‰*rRÀ‡#'~È^Ïc¿[Ÿ]ÔL‚_3~ÏeëË’„ V«ø:‹Óvºý â½Ê¨ë;øpÖLö¶&iª»‰õ/V2™ÚeÑš4Y~™`e9Alœ,`ÃeÌ“¯‘Úõ>ììù)û“d« 9Ÿ#ÁŠÉ¯µ,vJI>XdK”öªL¨ß;û%’\?9ÂGA°B̰k¿nëÔìòÉB³€ýüÑŸ„]­·í¾j‘“C'ËSV"懼{ËÉ“\Å9X ¬ò!3ŸÞŸf/³ËåÈQøfõo>ýú?[PÛjóVR| þ7üù ¬7à!ŸÀüfhþ…•\ÝIìoxù˜hñoPÿX±xØ65»«Ï õߺ¿°’Å“à=VŸè_õ Ö¿íéÁ‡Ô?šœýúÚ áàkŽ2ÁН7±Ù äV<˜ÜLþ>¬Oœ×¹æ]çûºN2™#E°`òoF½c[ñçpå*¸ XezýfÔ;xÚ6äTÉÙùA¬XLíò¥mõ¦Z<ƒ§•,c¼÷žSmÒ'¿db%b~¥dÛŠ IâÃvâ7£þ|¸w§É¥Øú6o9C‡Anágÿ‚•Až$n¶ ÿy…VðõofÆ_XÉ׋Ä´¦.÷Ëøk V,Þ ®©eÛÝ«ÉÖ3, Ä¿ýé›mm›—÷uyU\=(]µ-?ñ–—‰ßví‹)]>He\^@9X< ¬d1¥«Îb[{UAÐé/¬DÌ︥Ö×u‡}p5¿'‚W3ìjyxÅéYèÍ#¸H+Y̤ÓÛ¤¶<9 ¬DLåò6ïuëç{ƒ’I°âj*W›5—:Õ}[å¬&¶Û§Á™iÁZyuø£®É¨ë;øPqA±ÝOÚfæçÏ>ì‘)ÖøëÓ×3{¢9ôÍ9M°BLéêÍÂò¢Ö]ÍÊq"VäIéò73Ûµçè§ÅaÿD°b1¥«û‰Âí…ôO‹' b%‹)]à—Üõ„ÅF !X±˜Òå÷+~q&sV¬Sº¼Bgí)¦ÀÌÉ!&Vr5¥kì½¼w°l1c‚‹tù!Y«z¶QØm,/]¶ÛËž_¡ºš‹±Š«•˾jû¿ÈIÆïã‹KÄú“òȪX%¾ƒã~õò|´¦¾{9W#óWð'sø æF¼{*£<¯þÅJ£LíZþ^U¾%ñF™#E°2ÊÔ.[OËj­ê ›sb%‹éj÷VO·vS­ V,¦v­Ùrë—£öƒÅTb%‹©]kùÓ`j’÷\ü$ˆUˆ7µË³xóµOÐ!d#3Á‚«7µËó;ó­›ÿÁbNjb%‹u½Sðädñ;&V"fÔµ=NŸz öm+®fÔµç«\½,f|K¬d1”Ëßsn}ÜD,s+—š{–oŸv&/°’Å“ÄBt?•¸‘X‰8x«%ϦU_Ÿœžyü? |(\4¹ÍÞ“Ú&~î~õ/V0y¥DâWªÁmŸ{XÍ™~ž]+…²l;ð¤Ðw_¯ß„úGð!{8ÓäíÕÌE,ðÿëW+ùÚ•s)ÞAOÎòæÎ-€_7×^ÖR£®öç„•,¦ve—þ¢G]³’`ÅbjW±ðÅ·›ò™?(‚ŸÏœV¢vÜzø*§l¼À §l+QAŠ75i—µí0ÆÁ``¥1Þ$î=-?Ÿ2ï°0Æ™ÒeSc¶%÷eŒ~X!¦€TûÉeÝÚ»ˆ9È+Ä…ÄÅ_êgj5±Êóü7×ÖSØØ?ˆuƆñ|Èh &oV˜åÙµ&6ÀН)]ÕkÇíÁªÃÃÙE°BLéjžŸ/)R‡Aæ"A¬4È”®V‹w6‘—§ÍB°b1¥«2ʵ±É˜cL°BLõ±ý^÷|iñfœÓ?€ºÇÙe?¸ýÓAZŸ‚É ëS¡võb¿{Ü*l?ˆ¯úX!æ‡Üë0!¨bêñÈ4˜Xea,Œºz«ÎK¯C³°@ ¬D̨«Û~;ÍwúŒâêÂï‰`ÅÕœ\ýOý¶h1ïÛV²˜Ò5Šwâ–«®V!3ÁŠÅ”®QkíÅb?ÄJSºü­49çg•À °b1£.Ïi±•õ§u¦r+MkJ×òœŽ}©e>S@ˆ•ˆ)]Ë"'[ÎuWSBV\MéZ^êÑå÷kg8€!Xøžxíå¹B5ó¦‡p¯e|OßÁ‡] c[TÓî·v“9½VLæ‡ìÍ6ÖV;,®pA¬ò!·`qmmíËK°bNkb%âà­VmgËïÑlƒü|¨ „l,ªüŒÉLÁÙ+ƒˆýz©KWæúD¬äkj×^ËÛŠ¹7qïE¬D í*){ñÔ­ªæàjL¯V\½I\›}js£I‹VQëžHÜzNµŠçг$+g[3õzäU'™– ¦ÓóTi]ß>1£,€âJâj[æ)wRXL `…¸‘¸moÉ¤Æ ¥XiŒ;‰=G[ÎÂܶ¬DDTšÖø§ud25“`Åä@ìÕqEí>3Ò¬4È”®ZSk]þ™v°q×â—‡˜~ è|dÎk¡Ëæ¦Zsg°JðÃ|úR{Ûe]ºqs °1µ«.ï,«G]‘`!êÔ®º½©ïå:å`1Fb‹'Ǹû-~’-æE°`1ÓéK«ß.S3‰•,fÔeAÓ~5m‰à+SºÚÊ6aäºPpÀŠ«)]=7‹Óoï)~3G!€bF]þPg6] &Vr5£®^½TW÷‹LC X‰˜ÊÕ›ªoN-æx¬DLåê}Õ\.5b®0ÄJÄT®n¿c 9½jFf€…ÉÅ|Ö2lÓ7½Wµx ²pÖõ>È}=JÚ­Wùœ~„Ÿ °ü,J×x½†vIÛ9Ä ºˆUb–×–ÑöüÇ]J Âtúð¡Ê•_²W#˜ìÙ×ü¢V|MíÛgˆ~ïb6‚bZ<½Øô6A>™%H+ 2µkfïË{9Ê8ÓÓÄJÄüž,ê´¸B‚ «hÓé‹ QÎC~XÞÀ‚v1Þ÷|cwùužÉËÍVˆu­bÎ&·áLì `…˜Òe»o5¦.Œ›cL¬2ÆL§/Ë묷W*S4 V,fÔekì¨KÞ=1¹<`%‹Ã0­âý¡·º0nn¿ƒî¢ ìÔónÈÀ{bž`þ>,ü ¶¿‹ºÞþÒ(3Ô$Xej×ë[,—òƒÃ(sãF¬4ÊÔ®m{¾2o•SŸ‡/Šàg‹w ®žž›.ïŸv˜ À ïDíò6v%«uЋI +S»ö®¥$õ8b§ài`%bhWõ—HvOEcÌ®VƸ‘Ø×DEtõæenÀJwwÓ¾¬vΚ<X!ÙL§¯iõÒÒ­«Ég¸Çð8€ŸÃ½Ítúê1D®IÍã_\ŸX!^$.ž£¾+šn¬äênsÙnDMRØ9©àƒÐó{ÊÝ÷ú]äÅŸ °àkæÓÛÖË{Lu7osX!.$Þ<™ú‰ƒÌK €U™ù µä”ü G%æçD¬DLé*~ì<ÕÀ“+SºŠç[§÷Ãó› XcJ—íøìGoÙâÀ ¬d1¥«lïã'7kß9 2ÀŠÅ”.ßóÕ¦fZOž¿¬dñ&qÞ´É÷׃ë1± q ¿ºx$žûYï‚îða››hr÷^rò¸™7À 3¾ÖÑëº%8|ÝÉ ¬äkJW5Ì)ç+²9`%bJ—‡Í¨®¦É+®¦tµ–¼M¢z›»YºÀ 1¥Ë §yé>~(é ¼ÀJ®à骇ÍùÓ÷„F©àC… §u[¶–×[ÓœCLOÑ$Xˆé™O_›÷³]—G3?cúÂe‚X%¦ç5rµ-îð÷oe‹9­ ,f>}í-ç:Õ ãf®@ÀJsŒ»m­-4×÷朚+Sºº/K9àÁbÎ-b%‹)]#“y=3”›óV,¦t¶lË·Õ“ÔÅÍy+Ä”.ïšÚ›Ú;b3$`%W3êòÜ’^/u½bn%ˆ•ˆÃ0ùcô[®%ܽ#À‡Ú–0NsõÕ§ý Ö-æoàÃÔ¤hÎÔ²Ÿ{ËÓ‹_ÁÂôjÔ.¨f׉9¿Vˆ©]¶Ñ·K}ç|3$`•éÅ|újaúLrӿ͘€•ˆ©]s{¹=Ú 7‚WS»ü(´÷Û[åŸÄaÿD°BLíZ½&ÛéÄ\ŸVˆ©]ËŸDYjÿªÍ.‡+1wŒk¯™ê­ÇÇ!Õ:0¬XL±mþÞº%+S­‰U,æHÝþ /rˆ9ÄÄJÄT®ý>†UÜÅ ì\ÍtúºWóÆHr(À ìVˆÃÞÙ–UÜA?,OÙàÃÌ„tù[¿£¦[mËÁdŒr+&w—VKê•Vš]ƒ` _zÃèÉ׸b|t/øºOSܬfyïlXØ$3¡¾%ßøÊ§]«dò«l’™PßrJ©Õ¦öÅ'V,XÌ„zÛzÙŽ¯¨/Ø.–‰¬b1›K[¸ÖKiêS5«t+÷özÏHvu%3ÀŠ«v¼‚E5³kh×ø ?Á׈n”LnüÙ+&S»Jž¹ê¯.„ƒ£Vˆ‰‹ º?i ήÀ ¬4»&‰G¶]î”yEÀŠÅ”®2»éÕâÀ ¬d1¥«¦Q,:–Åše5,XÌãòV³­0Ò–‹+¥‹XÅbæÓ·j?8W¹iÀ °b1¥Ëƒ¿®S-æjN¬dq%±Å3ßža;XÌï‰`ÅbF¾ªŽtI+=XÌYM¬d1•«ySMª€°ÃsÀJÄT®ö.`’‰¹Â+S¹ìs°i©6Y|‹(`%b*W›e&ÛqÊ“+ 2ÀÊä Ø•¼0O¾™X8ëzä0»–…}ˆ !‹¬âkö§oÍŸä˜KLRXau"V"¦tÙf³õ©G]¬ `a™ˆÒz˳ËvàPx•,¦tyCìÜ«|ÓÇR V,æäê«§½ßÙ3†1H±EØ02¾u‹föR¸û€•ˆ)]Ã'Û‰¨×^¯ö?'ðǯ>¸:`k¶+NoBú…súð¡ì¾öGÙz¹¥þÀ\‘ Lf>}Ó6›Þ5QdîÛˆU™ùô†³@*#µâÉâ0P+ó›ðž¥ÕßÓЇebãiðáWS4gõ­½ü~Êb?íVL¦vÍæùÒj˜øM+ 2µË›Éù³/"ñ+ó{škôW¢êê0CV\MíšþZÕ;Æ83•,fØe[ÀT§Ü@|…õ‰`ÅbnWó£PùÈ)œ¡û¼"›ÜPºlÐæºv <¬ÈÔ.‚Wd#¦t™¯r¿>Oz æÆ`…˜²«ý•ò%.?s• X!fÔå'(©ÝÕT‚b*—…Q~̯FÖlã°Òä‚rù;ôÞÍV÷XgÀŠÅƒÄÙâέ¾¹Xf°’Å“Ä={6š<«éëV,^ÄzEäF²Ñ×ÙÀˆºÀ‡ÄôL“Wé;Ýš3LnüÙ &³=½åÍjÔS>‘°Ê 3¾¿Z¬–,fhn¦ ¬D\H\{o׎L»ú­ô?'°âêJâáM š¸S}«ÀÏ ¬7ϹR¹t‚:¸šŸ±’«)]ÞœÑOõþšefû‚ÌÄtú^R-«w5G¹{+°OŠûëÉÈI}*ý^ª§¤ÝòvQ¿d‚£®™˜Oß˨£^›9,J—_¥Ô?-¨”AÞäVdv§÷ –R‹¸S}{ëç„•ˆ)]Å£ˆ"öby{ëç„•ˆ)]®Õ4äws£®VƘÒU[¶nhcüÆþœ°’ÅÔÛjŠ›sýÝó}=€10 °À‡P ˜<ý?·Þ5_sz¬øš bÊ3æM¾æwL¬äklmAõD¹uùbáw+SºZ±­Èm{}°8ð«XÌtúÞü>v«Í;ßáñÏ ,„L§ïmúonj(Àg[V ˜Nß=<öóê³d"€…1f:}÷†m]Ú?|Žq ¼ÀJcÌï¸wÏÀS+ëÞÑñÏ ¬Œ1£®nQÓ^EÌ5Úl‹°Ò3Šè3—Ü‘cùüTäu=€„ñž'’ì¤öÛÙ9þê_¬d2¥k$¿Ëº}‡A¦³ V™ÒeqÓòrf™˜‹Áq£tùÓéO;…¸‹Vˆ)]þî.—–Ã3!VcfÓwïw1þ¼«,YÌÙE°b1¥kú† ©EÁ›)t+YLéš¶í+éÝvB²˜¾&X±˜Ò5mf¦}9gµ<ÅÀ8§ê)]}¥æÏ ª³‹}X™]”.ÛTkv°BÌ bÁâ¨=ÿ†¾Þ(z|Íym![Ï}j90ïñç„U>(æÓÑËÚéÖ„êàkJÁ‚¯ÙŸ~ ïøçy ÅâÀ ¬d1µk¼^û•so6ÙX±˜c<˘Uom´Ù6€bj×l63Ë%F=¸šŸ±’«uÍY–ŸgÈSøV,ž»g/jE޹cü>T"rWòöÁò³Ì;h=ÁŠÉ »V®k%ùêœ+ rf>½'t¤Þ³ü=±Ÿv?[œ™O?^o6üyYY!惬Sºl˜r½µ˜?3¨'X!¦tY¬Üw¹u“;sr¬sVoï‡å¦›ÝX!ÞÚ¹¤¢V]™]àï¾¶0½gua|§´þœÀŠÉ»<™ÏbTõô8¦´°B¼HìÉ»‹§ï4ËŸX!Þ$öW£šœËÆÌã€U¤‹·ª~Fà9êq¿ã€•ˆ3‰×ö®LçÕü@†X‰ÒåÒí¥Sê™§å+WWÛ™È/?½SiN`ar1Ÿ~æV÷+qA²8ó˜>`%‹;‰gí­ÝÚç,®dX±xØÕkšöÁâài`%‹©\%{¢öW‰˜ÃÀŠÅ‹Ø×Q(–¶‡U"ã˜þ|ˆ_¨ þLèþó|¶drüÙ¿`Áäˆû^^Œ¨2'±Ê óæÜmøy·gf¾T°1¥«øCY] pC°1¥«šçGº5g<$XaÃÀÊSºª?aPÅ·MßQÄÏ +YÜØ«ãû<|O̧âÆ õu½p+$:øšÓ‹`Å×Ô®:gó‚SÕ×üމ•|,^s¬¥fö X‰˜Q—·tóvPª«yáÀ‚«Ã'Ñšë :-ߜ犧5Àµ&7Ϥ½õ59˜<ÂÏþ+&S»Ú0Øò óI€U™ õ³Í²ÿɳTˆƒÁÀJÄÔ®¶Zñ”•˜ß±1îžë^×ñsŒÙb(€•1fØeñZ½Œb~O+ÄT/¯-I¯]à‘S?߉dæÞ̾óJM|û¿üœ°Ê3­}Žòºt`Þ—ß?'°àj¦µÏÑKïs™˜®&X!¦€Œá/V©É¹ƒ•\M³÷ž/²bÆ ÄJÄ¿ ÷éeWSAV\MñZõâ嘚Åai#V²˜óÃ׳âÕ›¾ÜpÓ÷>©ñC~é^ºt1!Xñ5¥k.‹ªÚ}æ}íþs+ÄÁbûÅC}+ø½˜ÿœ°Ê 3­ÝK[æë¡x‘˜„X‰˜ÞZµ¶Áçkf—g<ÿO®ÝùA­º-^T`z_øÿœÀ 3¯}®Þ’¿u£úš B¬äkj×Z¦=éÖ•àÓâ `Åâàê={j[¼éË-ð+YÌàg[T‘ZVCVä¬DÌ}ÛöNïK}¶å}üs+®¦tíž—ÈêÂÈ—5V²˜Òå'´©ïÛx À‚ÅLkŸ{Û츽“u°˜Ÿ±ŠÅLk_©x¨úlËûzòçV,.$néõ’£jñ&/°’Å•Ä^ Ÿ¿n5~N`ÅâFbÛvÍ})Þþ´˜Í;V²¸l$ÄŠËÓÀ‘Óø°¯Ç‡¼²-Ð~–!û¢ÀН'‰›·#—#ÜÌräVˆƒÅ¶À”)G¸lÞ°Ò ó›È•¿ÞÃO~&ò«À‡£öA“×ô²jYBøòS ¾fVû*)ÕÝÕö3™5H«øšYí«˜(x²’HÌ¢¾€•ˆ©]¥•õj뫺šÓ‹`ÅÕÔ®ÒÛ«?‘j1?'b%‹;‰‡·F’ÙX‘°1gu±Ïaùˆ%+ðò»ºúY?¨õD~ÕøpÆOѬþnÂï3³#X™]›ÄÙ ˜.wÐ_óC&Vñ5¯Wmk¥®v<~ßÖýœÀ‚ÅLk_Õï­¶ø’Ú[ö~NXÉbJWu×/µ)ót/`%bJ—…lsÖ*O.&)°âjJW«¥÷¢k&sX!¦tµæ·dÍäÁOÀJ®¦t5?wÎòE_¸Ÿ `Åb H[Û–œKƒ³O‹yâ°’ÅŒººgÏÜÂò1g5±1•«×Z×VóŽßד?'°àj6‰_½õæJ ZÌ!&V±˜Ií«÷Qm“ǘk±1•«{ð2oÓÁÕüžV\Må6QmM•ǘ³X!n»ý#ù§‡~£…ÃøÐãƒßÓ0ð‡Ød“ÃÏX1™Ò5úni_^®üœ]ìN°Òì¢ty•ï’Û²½ïEN`ÅbŠ€ï˜Sr>ÈF~Õøp^•³·ù@ òÙŸB&ó7ðáX€ªéVŒª–1¾/(Nàgg¦µ¯Ù=`SŸs}_×ýœÀ 1ÅkZ¤X²š]þ¾®û9bŠ—yNõƒ +|P…iíÞ’`ï¤ÖOÆëºV,fØeËê|µ:‰YƒÀ 1µË³ïFKg©?¸šCL¬äjj—?ÕþÜÈ*õ“”b…úɬöµÓYïôS˜ÙÀÏÙ…—ª4íkû¼O‹YݰŠÅÌj_ÛŸR,·—+?-‡Ç 3«}Ùœœ#Ë­Ë™°’ÅT®í—fõÒîë@ÌYM¬D åÚ)§TJU;Ñá°âêFb?lr?¸ÂóÌVˆ;‰»§f©Ïm†—öVrõ Ø“.yÑ÷ ddG<€7Hƒ&¯âÏ)ªmCÿúÙ+¾^$öaÊ—gQï/…1Vò5¤Ë6¹)ýÓ÷\!Fœ° 1³Ú·EQ-å¥OkN/‚W3«}çžý-myz¿ëósÂJ¯l{õù”·»~N`ÅbJ—…Q³­¡uh}?(ôsÂJSºìŸrž]ÖL²°b1¥«T/Ñ'ð*ós"V²˜RÚ¶HñRÉ|º¨Ä*A“Úwñ§ÁäV,1a(€…0“§F»x‹Ä6Ã̱.Ø0>€ùB4¹¦][Uûf½óv~N`Ád¦þíZm§™åJÕ¬öðá܈Óë}@w{ã`ò?û¬˜Ì±úÊVpÖþýì§ÔJ“¿‚›sŠ×ë͆yIê8|Qœ›Ä*_ÓÚw]¹ï¬¾~ðÎUú9_S¼l-߯v6*1WF‚bήVZm‹âUÂÊH¬äj~ɯà­–÷¿S†~N`Åb†]muoC%oÎÙ*5€b†]Í"©|Ëé8¸šß"±Š«™OïÏ”›ŠÊµî!s'€‹™O¿ûHmŒÿ0ÆœÕ+Ä »ú¬s$õ¨„X€XÉÕT®a›¯Ú“|ÓÇMr+smæùT¦Ú¢µ4Ô?€g¸üž†¿ÝÔôÙÅ®¬˜Lécøó•òìbó½VˆgÀ.S ¬æZö‰”žózÌÕ×Ôçu°Xi^S»üG¯¡kcbb&ÔïWfV—×§¦+S»fµ~’óp3kX˜]aŒg+¶È\²X>-Q*±’ÅÔ®Ù{îUM‰±"±1£®ißb/[Ì./¼÷ X‰˜Q—m,8Ö³˜$ÀÊSº–W¬=é‡Í,X!fÔµ¼0O~Ðì¸ós+Ä\%–w†Új>}aaLÀJcLåÚ¶ZÙ§>ÎSX[ÀÂyóé÷.É7k§ÖïŽNXå<"Ç»êìÔÝù@)Ðø€|ÝÓöÂÙ×e‚_Sºöð¢bñõƒ÷ÓÊ?'¬äkJ—¡Gþs­X `Åâ¥kÿ_ò <%ñú‰O+ÿ…•,$.¶ù,âû)ïŽNX‰x’¸WÛ6ùÞë7÷/°âêEâe?ùO _‰x`…x“Ø3xË¥xûàêJ^`Wÿ6‰7p6Ïï|{Lú`ñ3Á‚Å¿éôŽ­«Í½ÔY9ÄÄJ{;·Ëïæü/°âkJW©¶ šE½~ª›¼ÀJ¾¦ÒÛš1wMjÙU™›¾þ >œÞp™(Þ¢éO]žäkŠÁ‚¯µ«¬ì ŠÔ°«ñ{"Vñõ ³kw [§ª]B¬DÌ™é¯GúK¡j¼·*ù;ø#Åyí'l ä•1èÁÊ S¼jµݺ*ד‹XÉ× »üÇ¥ö‰?¨øsÂJÄüžlom{ì"šAV\Í1nÙFjÊïO–ÅyM°B̰˻Œµ”ä[ø&VˆvùÛ‚öoäÉÅà‡XeŒ7¥«yQºÜ÷ˆ¹L+SººEkËO–ÅiM°àêͰËþìò_búÅК`…˜aWo¶»NE~:'5±’«©\}ÚÌÜYþœ6×'‚‹©\} S­.O’I¬d1‡iä’ÓBúïÃò´'–§ïàà däÙçXr¼·søÙ¿`ÅרÂòÑÇ9.?ø:¸ XÉ×”.£¶[šåÁbn ~¶¸&ÎÌáOW.tGûÔ{T‰Aþ > 2EóÕþaÜž ?˜œ °b2µË–5 /‹êa¹L+ rMÔ.¯ ð‘xpœˆ•ˆ©]³yÇ/ùqÓ²¹@¬¸šÚ5ýÅß&Oay"V²˜Q×ô+’ÑDâ6nÄJÄa‚,¯çF·žï¢YÓÂ÷ôüù= Y¶ý4õW%¤&.+ƒˆ³m7ÛååîÃ#}M¬âëLYe¬ÕÅtØwNüÏ +3ìZ#•Þ– ÔDµ&Xpu¦t-ïAZÕäÐŽÙˆ•,¦t­Ul$fò¿SÓNX‰˜ÒeA“¿ ©³ÕÄU‚`ÅÕ”®]ZÚU=Ã-™Û6b%‹)]»¶¹šº‹)…³šX‰˜Æ=Æô&ÙÕÔ=‚W3êÚûÕ‚SV®p5A°B åÊÉ÷Ÿ7WC1VquI$ny¯z;,È&Oo¸xÙ_LŽ¿ú+™LbÛxy†§þ=‘™`ev {ÝxU7çepv+Y}ÉöeŽ|ˉ?¸;‚\Í|zÛu-[ÎÕlز8¹ˆ•,.$«Øo.²Å`ÅâJb“Ÿ‹Z>YË"1À 1•ËfHZI¾šà[ÀJ®¦rù[zÙUáÁOÀJÄT.¤¥[3ÀŠ«©\eŒQvQ%“§+YLå*þ!.9>\!°b1•«Ú–ol=„u ÄL§/Õ«¼©¯H–'‚b*—…Ù¥¦Ë§xczšXeŒÃ©ÞjèYƒ•@àCÀÆÙU÷^»/=öÉágÿ‚…؇ùôÞ¸Æv¹êË„á¼*`•؇i¥µl;צ[ÌQ&X±x;,*ŸùwœN#˜Oÿ>”Q4›wŒ®òûê¥3!X1™³«-[(§Ú™¤ò”-`¥A¦v5oP4–x R™n°qã͹ߺïœå¦J%Ìk‚Ÿ]ݵ«÷m‚+—{ÕÉ…‘àgÑlL§/ÝÑœSLµ~Õ¶üœ°‚h6æ,¿|ez¤>vÕÒ#À‡&Æ{#g¯@Cë°› Xñ5µË6|ž0­Æ{›ñ±’¯© £çmQŒ¼ocM_+3ì£zûqqIµ-+YLé³ÙF$‹®®) ¬DLéš©•Ù—îj~P ®f&mñ“äÂxßSÆY×ø°>“}Mz0ó2X1™Ú5ý°jÔó†à0ÈÁÕÀ*ƒÌ|z[ž} ÔÒ…Êš‰€•ˆvYÜ4÷˜òV5l V\MéZ¥xUÞÅ]ŸÄ!>&X!¦t­ê¯¨íœj¼ÀJ®¦t­1‡­3ªÅqq#X±˜ÒµLå½Qµ˜³šXÉbÎ̵= ¿GÇß#ÜVä;øP~ÀègÛšºª<»ËDXðu Ä%ïW½‹èk~NÄ*¾fB½m>mŽT5ó¸†q"V"¦tíÖwï—”ÃObÖ§¬DLéÚsäÒnÏTÆ8ø`eŒ)]ÛÛ¸¨Ï.¼SâNXÉbJ×¶&µ¡?•«9±1¤Ë¾-›šãR8u ƬD¼Hl:ºÜˆ®qa `eŒ7‰ýÑôq«6ý$fÍD Ä̧¯iÕQô·ò«¸:ŽÓî3mœ(<„{ÉàƒXss®^ô©F¸µ ¬øº’Ø ô»\·ÙXBÀ q#ñôâ¸[ß­1§5Á q'ñ²Ði¨µî!?`¥Ù5Hì·ÀóR5~ ^$V"¦t(ÎQu5ÓéXq5gµ­.u¾$‹Ùç'`%‹)]¥eâ#V.Töù X…˜éôD¬j: »ššI°àê–I¼w/MÖÌx•,FÐUm‰m»fõf¢*ÁŠÅ5`gß³Ëg] g]àCûÊží€Zg•ÈCLÿÛŸþ|¸­£h¾žöir‹ÖƸ+€gS»Llw¯j“²ºÂ +M/jWKöÿ(rÃÒÆ ìV,¦vùùþ¾ætˆ)^+ÄÔ®æIa]¾² Á1ÓvªMÔ×R ÍZÇa×øp3ÊÙÕöõz¦p0™Óš`ÅdŠWOk—ÛÙàaZsr«Lk&ÔÛ×PFžj3–Êd€•ˆ© 67êr™}«Ád€W3ìê&=ö£ÕнÂV²˜“˶׫U¹,¸Õàk€‹)]#MÏÖR'ËSV²˜Ò5² RÝâäj<§X‰˜Òå(í?/t)®fúo ®f:}+Ù¹‹â`2À 1í¶zLßXýÀ 1•Ë;Ùù@³ñ˜>`•1f6}õQjCƒ–‚ÁÀJÄT.²4ÕÍp°1•ËKyæØ>1;"€•1¦rù[Ò£«W1Çô+YLåZÙŸ„—{¦7&G°b1•kõì£ü³Ð,€b*×uì›\ÍωXÅÕlùg!E÷·HÄe±å`0°1W˜µm—[ôhoò¬ë;ø3Ú «ÄN½÷ë1ìaY, 2[qv§šªÚ\ºM.¿‰ ÏćãäŽñ;ø“9lϽ!AóHq~_+Í/Š×¶õÊ››È£Ì°‹`e”)^Eì$çZ7^Ƭd1ÅË &*r¡6ÂÜX±TKþëº<Ü}°â°ŠÅ̧oÉ>ì2n]¨72,XÌ|ú–š¿‡¦>ÜÒ˜ñ°’Å…Ä}Ï4/]‹?‰yý°q%±}Œó?œÓ0È+®FØÕ¼·Úhý¼œ,ƤXÉâNâêÙÃIOä üRëòÝâAâ¶wiUMÃeymÀ~þèƒÅ“ÄÓßFI´¸rûÀŠÅ‹X ó„«Æ…ìð!‹…ÓºäWo¤"›ÌéE°`2ê[)m¿ºoˆƒxU™ õ­xmR«|€)`%bJ—W\Ø·¨~O•ï=°âê0ÆÛÛçeµOGmÁd€bJ—_ŒæÕÔ¢`¾ü°’«)]6MË.SŸÕ`ÅbJWµuÍ_-æ£@+YLézm‚rQ‹û++dX±x‘xïf;õsâ~ `%‹tÙÌeË~*ÚøÙâÎtúÖÌUiMùsbû™Vˆ©\Í·®UngÀrVpug:}ë©[ˆ/—_WG°b1•Ë{ž÷Qåï˜;ÕVˆÃnÞò£ýþèï rOØ/>€¿š Ò-³?NUõ/Vä@¼òð~ºr€KÍ$ø9Àí)`mídˆ{óÎöôàO_0¯mÿcá¢Z_+„ÖùôÞÐmëq觯Ùÿ!€_³=½ŸHŽú¶È<± `…˜Ú5V÷"“$3!X!æÛóùÛ¨êS4‰UƘéô6f{z³w•˜ÒE¬D̨ˋ°úõíʃ«3ÀŠ«uÍn¹)h1{À¬d1¥k®ºòõYÃO‹YûÀŠÅ”®i>Û­ou™È”®ïàCuýµ^Ï`I~bæŽñ;øúÇ/Ù”¾®%—`7–]°àl6¨·?È/šÓ‹‘&±Êô*ÁbÓú¦??ÙV`X±8xkÕ:º9=¬Œ¥r¿‚ÇÜN¬Ržú ¾X1™âµM~’œåÝÂV•Xi)^&·{Oõ1€ÆvN+S¼¶¿¼²Õ,…6nÄJÄãýŠå¼öž3ÀÊs˸—?g$wѬáÔš`!ªgB½í¦<ÌÿĘÕ,3¡ÞvS¶ž¯*õƒ¼À*A=û+ÚNmOx‘X‰¸x¦1óÐ]˜V\°ËÂÝl[Îÿ@ŒYÀ q#q¶ B[¢«_…ò?'¬äêNâÖû?9*s3ÀŠÅƒÄ³¯½þq#1À ñ$ñZ¶õªb'…ÆÒÜ€•\ å²°Àv"C?-ç.&€‹©\ÅÔ·±ñ˜ X f>½-UöZ ªºšŸ1±Š«™Oß=`³PQ<ìjLW X‰˜Êõ*˜jCÉÆ†;+S¹¼¾$—[ðÃS¹VƘÊU-,ß9©Mx°BLåª#ÙÖ^½èk<ë XÉÕT.ÛKÕÕ.Gƒb~ÆÄJÄT®æ ‡««ažXq5•ËÖûå]½hL† `…˜ÊÕšmKòåÀûàj ±Š«ÙÞWéò-,.dX°˜ÝéÍüd "=|MÄJóGÛeÁKS3Ê<ãßíâø¥MÍ´aJ¯Ì~Õ×\žV|Mé2Èc©m‡{ºˆ•|~t³mÉx÷BHН}ý|Ü`òèž×’d_SBV|°þbW©ÑÃiD_4ù+øPÍÃO¹ïî É TX VL¦xÙÓò(â:ÑÙ-#`•éÅ|ú>¼<.Ýn¿{sêÁ‚Å̧·Õ»nÝ‹8si$X!¦„Ì”,”[àuV]°B̰kfoÂ0ÄÍD¸& XiŒù!û…Rx©üÉbŽ1ÁŠÅ »üsÎb„Û™¼°’Å »æð²€Ëžï“˜É{+3ìš¶Ó\z?þÎ[ V\Ͱkå4æêbôÓ™¼°’ÅT®ÕZéEî¡ÙyýÀ‚Å̧·ø´û}¥º"óN5`‹'•kùû~·í@Lá"V"¦ry“ ’ŠšˆÒyïÀŠ«©\;g?¿So:+ V²˜Êµ[.kM5´î¬ö `Åb~Š»¿Þdý‡d2êú>”ŠQ3=ßpL9£¬óö)€“!]ÃÛË·?}\$bÌëVˆ‰½^½ßÖ¶ñ$1À ñ&ñ¨%yªºHÌÄ®ˆ™M?’'ª/µAkgjÀ*ß³é‡'„í©žuõ V"†tl›ëY䓟°Ý `ÅÕ•ÄÞj\®…#ïàC"-5Ó„lü£·’¯¹L¬øšÒ5lfŽÛmÿÁ×\‰•|Méò×@L€äÐzf€‹)]c¦š×”w1ì6À1³é‡É|É·Û”ƒ«)™Ä*®f®Íf¿ùv·p°˜“‹`ÅbJ×,s­|y"ô`1¥‹XÉbFŠž=´§üDñÈhñ>|ÈÁdÛ˜ô>ä…‘­÷Xñ5dÚÌôtGÑ×,ƒXÉ׌ºV*½4=aîM+SºVöçè/¥b‹9«‰•,¦t­æÏÈ÷׃÷ȬXLéZÞYm\Có“ V±˜WªcùÛ·i«÷|#f€‹™L?vÞÉ›mÈÄ\Î Vˆùï²wmòåÓ¼ÀJ®fÔµmk]류.±q `ß]cM}ÐÌ‚"ÆðA3ïyCýÜÔ~ü-œu+ìÛ“éÇ^¦zUnzÓKe€Ÿ÷mƒÉô3å¶{“ßìl À ñ"qógRåj¯Îþ¬¬o›îçv©<Œq&/°Ê3™~&›"©«m¼W‰€•ˆ!]3'¶»©ef9t,¸šéUÓO¼›Þ{¦3Q2€âJb·rÊÈv&J°BÜHìYJ]>cXiŒ;‰W›¶Û”‰‰•ˆ¡\þæŠ'g©]R;ÓºXquÀz#]&þ=l‘+ŽéÀ‡t!JWimÿ‡®Ã#h&ÁŠÉ”.“<[ì.}Þƒ¼É ¬2ȼ¬›e§b2 ^‰Œ–éë¯àCîp0ÙŸÉjrïQÿúÙÿ‚_3~šú¤U.MÏ?}Íþ +ùšÚUk=WÝbª5ÁŠÅÔ®ÚVý'HU,æÇH¬d1µ«Î5Óº½ °¸“`ÅbjWµ¸|¹ß1Ÿù XÉbF]­”:ºüHß`ÒO+Sº,(½]ªze1œ[ÄJó;¶(±{ƒ•˜‘± 1Óé½#ÃÎzKÚ¨{ ®æù¯gÕæZ“šv<:ú¤>€Ñ1Ä—¶ÕåÜs~X19Û'ñjí" rè¦°Ò SºzMctµYig‹ç€•ˆ)]¶å«}\zˆÃV"¦tõnQÛÊ¢Xw¶xX‰˜ÒÕM~m˜Délx°1¥«ïšÓ’¯6G Ì+³zG¬-1HW|~Fâ‡ü|49»† µ1Ihñ°Š¯™MïºcMµ¹ô«ÝÅÏ +3êeUêß»N¬DLé²@{ø.[%æúD¬DLé²Õ*’Ä…±óµ˜€•ˆÃä²=ŸIŸ¾0†Ù°ð=1›~Î\êžC?¥ɧç“TfÓOï캳œ®Èzó€ýüÑWSº¼¹wâV‰¹+3êò¾_B«Ä”LbbfÓOû+zk8ú9Æaa$XcfÓO[ÖüøWM—u¬S¹VÉÝûÖ¨®æ×D¬äêð£ëËa¿®~XžØœþ|HÍâìZ½äœ‹zq>˜×ÀН95—ýäRä"ÆÁtúðÁd~Ék™ ¤¬^ª¶Å`Ådj×Ú­^‹yÓ+ð+M/Z¼“wd’Ӝ™X‰˜³kg!´¨ÚÅÞh«3~Z€êÙÄIãý,Œ1ÓémI]¦ö·ÖbÊÁ 1µkÛ )ûr|puàVr5¢®•ò^©ÊÕ)áš0€‹‰«·âV›iw¶ XÉâNâfëù¸ä ˆ‰•ˆ‰gÍþn”êjÞ°âj(—­©}·­ßØóÔ:€âEâ¼Jkr¹(kVrõ&±}­Ê¥„; ¬BÌdzïe›ó”›iF¸,¸šÉô+o[Ù†Ü">0¬C¹VI­ï¤.‹ƒ=+Vr5t)s—…úLJd#êzŠyø!—úzCd~È+¾¦î•æLòp ¹Mþ >˜Ì/¹ on/— !¬˜Lí*~J0/ip‡éUÈ ¬4½‚ÅÞs¨Ý´‹ûV"¦v•mÁbobá÷ànÀ Ä“éôË_t6P“aã½~ãÉtúU[ñç¹Ä4§Án’+YLíªÞ ª¨§#ƒ•ˆuy}ZÊj±×àÙqÀJÄ-€—é^þÍÉîôàƒ‚“}Â$5¹|ðÔ:`%“©Ö-yÂøºøë0­¹È¬LkJ—mùüPA> !.Á 1¥«5/¼¼ä:\M!Vr5¥Ë›%§9äKUÖ§ðóæd:ýò„Ž=ÔÆÎ†]+áN¦Ó¯^ü…cÝbVO°b1¥ËÔÇþ›Õû9+YÌïØÛ·[Æá˜“šX‰˜Æ>—wK–sXžÀŠ«ùÛ‚SV»=}{ ¦É+ÄüŽýba–KËóƒ«f+¹šß±×嬧üð-×,fnù²ýŸx‹ßñ`FjÀ*3·|å]0“èêQ‚«•ˆùOß{¦]t5ÁÂ"Á…5kJ^z©.”jb•E‚}Ú×liíÝÕhõ±+óSô$Ó5²šÔ> wOßÁ‡Z~O>æ¯W•ÔAÎXdJ×\5?7ÁН¹.+ùšÒåIC>d, X‰˜ÞZÉ?FÜ>}ß"ÏŠTð¡‘qæJ<­,KHüÕ¿XEB˜\¾VÞ»n5±k°\ÀJÄÔ. <½S_&8Ê Ëû›­õêv!?a2+~¾ƒ_2çµmìí›ø+# ‚“yj½s]=uµJd°h"€bNë]Ú¬ûRÚr˜]'b¥ÙEíÚ£zÝx’-æ¼&X±˜c¼½ÏX®:q0`…ËÄN©—ôçiAÅÕpVq5[µïdÍ¹Š¼‹`Áb¶j÷ÛÉ6ÆûI±x’XÉâBâ¾s_—´Òñ&1°q%ñLÉvœçùñIÌþw+#ìÚÙPæT«½«XãNâ\-8¾ÌƒÅœ[ÄJ¯u¹diˆ‰•ˆ93³iÞÈrÞñl¨‹yr³‚É}æ1dÍœLú `eùMøã\¹Èϙ͞hòWðá:L/Ûöõ&G?l°Ê(³Yû.öM”rK—>øËD ¾îÔ®Rs¶ù"|b~Q+ÄÔ®âÍ”!&‡\ü€•\Mí*ž•›år¯ÉÍj+srÕd?ºÜ:A}s³À 1?äZýRö–™~ æ:A°BùzÓ×_Á‡,ËL“½J-«]+æ¿™]c_¯³Ëœ‹Å»Ë±À ¿~öõJ´8<ÓÐ;´þÛ“öoðk^—ïÄÄ%å]ªüDÎouËß`…˜ÚU|ã•õz¯05 Vˆ[ÀöTòœ¾¯ëßìògðáWSBJku÷ÔüøÕŸg©ÿ¶§ÿûé®Ã¯ÄÞœ;é_ÿ–šý V|Míª©g[ÏÕi=§5Á ñ"qæ°Ë»sWsa$Vrõ&qY³µšð·^ýo¬Bœ)]µ¯=aKuu0`ÁÕ™ÒU§÷íS{¦;ü•,¦t5¯li·$SºV,¦tµÜ“—Q‹/~ÇÄJ3ìjͶ²T±žA÷V,î$®z—ÂރŜ[ÄJS¹Ú«ißRëÌV0X‰˜ÊÕ=LMòóê31!Xq5•«›ìí%7Ÿ‰ZM°BLåê#ï×I£H\èk‚âBåêÞâ-«EöcQ@ˆUƸð[¶À”"·†]¥ ø>Ü Ñäa·‘Ôù7Eüo°âkJ—EŠÙ¤O Aƒ.b%_s‚Œº÷nKͽY…Q×wð!~¡ho’تü%—`3ÀН©]ßC[rìSXÉ×Ô®a›û)j‡ßÜô¿ÁŠÅÔ.›§^¤¦®È+ˆ&Á 1µkV ÓûåG\Íõ‰XÅÕáCöÿz»·ˆù+3êòåª,yŒWX&\]ƒ»–MŠF>d¿ÜüŸ>œÀðCž»zK5¦ß\'ˆ•|Mb#›šr—²•¹‹!Xñ5îU-&Ï¥ÿ<ITb%‹)]ktûO–?äÌB°b1¥Ëæ‡m¾ä°ke®1+Ä”®ííÇË-X<SºVˆ)]»Y !‡Ö3qV«Œq£tmÛ ä~Ùˆ¹,+Sºö²/âÏû‘’«ƒÉ ®nÜ0î=l‡pi¬vHá~‘XÉbD]9Su{ÒùÓbF©¬XÜHlÛÍþ'»S±x’XÉâNâ^ŠýÄɵx°ñ ±·­IY´xñL `%âà®1Fâ#çëâ¿ùôÏàCÄLö>³k˾nüÕÀJ&Cº²TóTmyZ“™`aZ÷DââGÏI¾‹á8«ÜôLâšMì/‰éâMb`%âBâÖË«²8ÆÁb`•1î”®ìdË»§$„`eŒÃü˜{Ì<~õÃ÷Ô±a|Q¨]Ùßξu‚:øzñW+ùšrÉ}ç9.õéëŠ83€_OÛ Ù£©Ç«r}"X!¦»J#w”Ê?œÀt\1>€éh‹&{Sª.—¯Ê¹I°`ò vU×ùkËÀ1ÍVˆ©]þ l[ê•ÈÊcb•iÍDƒ\mjÚÂZÔ•q`Çø>dg_/1“køÕ¿XÉdÆ]µ¹ê^î'ÄÄÀJÄÔ®:‹)½|»%„`evQ»ªIYnjÞ•©ÄJS»ê¶©ZÕ=òÊ\’‰•ˆ© Í6º¦÷âñÞ*ô4±1îVmë:ôýSã—L°0Æ“ŸÓëú(eÕÕÜ?¬bñ ?Ú¾]ùÌiâ þ|8¨ç‡l¢×,NÕ¿§`3ÀНwy\[Mýž W b%_Óâ^†ï¿äõ©Q»V,¦tyʲm¾Ôî«Ñd‚bJW»nÛø©®¦t+¹šÒÕ=Órëg¸a¿I°b1¥kxF«\t>'5±Ê6fRºÆ+£õöþÛ!¿ŠjM°_µ(]ÃÛaMùáÜÉ„Vˆuå5'U|0f1±Š«wŒcïâV‰ÄAo‰•ˆ©\³¦Rÿ\ÖI®æ¬¸šÊ5=¯´ª=æä¬&V²˜Êec´|aU‰¹• V"¦rùëUéOp¬S1‰•ˆ©\~´±ÇP`˜ó°1•Ë¥{MõáÜ9©ÕÄJÄT®Wyíµçç¬f L ³zS¹VÙþ”´jñb˜I¬bñ¦rÙÞ Õ>ÔÉÅ,§€•ˆ©\«Ûæk\^û=ós"V"¦ryï‡Ýo©Ã‡1¦‚¬ŒqøÕ¶³(5ËgÇ›g]ßÁ‡5• â=¨V½<‹zð5¿'b%_“xû(åÛÛ·_3Ì$Xñ5d×ÕZR»ðÎÅÕ‰XÉâ¶M}Nùw+ñý¬k§„Aþ>,ª\Ÿë+ä-ægL¬b1“Ú‹·©å’;s8àòDlN#˜Ô^üBz$5U~NÄJÄT.2¯l‰[p5°1eo¥jߦ~(и_ü>ä³RºVñmÈ”“GøÙøë0­)]~{dŸ„z§ºxNÀÊ÷DéZÞr«]Ùv +}O”. *¼Gü!S2‰•ˆ)]Û_ÆX]÷xAÀ‚«;C6[3ÖfC”‡iÝyÖõ|~‚É­úÓÊòúvª+&S»v¯{OµÙàfnyÀ*ƒÌ¬öâý7×V_ÖØ%Œ1°1¿‰=m¯¹‹| ĬöðaÓGíòt¡>«Ô³F6€•A†vUû[Y· ‡1ÍVˆ'‰›·rQ[à…HÀJƒ¼Hüꑸe ÙƒÌ+oÛFdVY4kð4°ŠÅLj¯9÷Ù²üðS¸ `Áb&µûÍd*[=ؼ} XÉâBpmm <%ý ÖLjîE9»²MM¿FRMžüÕÀJ&7Ïäo+_Öó_½y\ÀÊ Cºì×1’ܬ}³9€bJWÉ).yÿÄ >`%Wsœ¼0n²þúiv¡˜ð|¨0©4¹u¾ÛûàkjÁН©]¥o9J-OᎠ`•í/¼“\›­«}oû+°Ô3ËÒ°¹æªà‡X€YíàÃ>q—l¶á\곪‹ajÀJ¾æìªÙOÊ.gíŸT ÄÀ*³Úkõ™¹ný’ÓšK2Á´fîmøšéžÜ¬}³Ø=€bjWKÍtO~Žh³"'€b†]¶”×¶.· ‡1¦ÁÄJcÌ…±yK“}¹ƒþ$³šX‰˜ÒÕFNiÞž±þtu Ì ®^Û,>–»áú3-¿ ò|Ð=~ÈþøÊëà_5™ËÁŠÉ”®îù${©ÇÖ›³X!¦ÅÝ”¯®Ë·x˜]ŒAˆUfÓÚ=vyf˜l1?d‚‹)]ݶS¯îï"1Ë‘X!¦tbJ¿nwÁbÆ+Ä”®Q‡¿~[Ô1æ"A¬4Æ”®ÑlÂL5åy³¡AÀJÄ”®1rÉK}Íu³¡AÀ*ÄLk¯Ã4à?äì| °0Æ<¯ª3™Ža4s3êú>ìsù=Í’wÿ1êX1™zû*ÝÞr+…½Mþ >\“-p*[~Km·0R+&÷€µU6ë±5ûÄ?€&ó‹òW‚òTÌÛ#X ¬ôEQ¼ü‡t;*;w+S¼<™x{¬.óK&V"®ÞþØ^Såz„ï Øgâ•Ø&¾®´¼õ˜znÍ&Ï+ó¸Ë†h·-'âîÆX€àÇïi%&Ô{^Eªž!+ZÌ1&V²˜a——Õ¤Qäx%¬X̰Ë|U¶\wµYâ°’ÅÔÌ]šçWÈÑ3ùX±˜a×î­Õªocx±À 1•Ë‚0?½‘F¶ `…˜Ê寯Xت HØ{+1&fKÞ(hªÝpWʨzvöPOY^ãOs5Å×#ñg,ø:wÛO•"‡¼ù9a_3£¾ $Z¿eÂ|ÍP€`Á×̨oÀ륪æ`1¿cb%‹)]£m‹ž–v'ò>Cù9a%bJ×ð3ÿ*÷ŸÙ¬q `ÅÕÁ];o?õVMfÔ?€×ôµmøæhúX1™Ú5ë굫÷OïóߟX!¦vùC?i¨OQ¿ÏN`…˜;Foék“SËËxŸÐýœ°Ò´æŽqe¯îU¯sßç¿?'°`1ÛÿzûÍå «j1?'b‹Ù&¾­:ªíîUW³ÕrÀJÄüœl?”Ó5¥õàj.É+®¦t­=m¤–ŒþuJ°B̨knlñ÷}2øsÂJ®æ‚¼ýB6/õ¡ Þólöm̧÷Ûþ\®Ïv@`a߯|ú¶W1Íò†19¬S¹lw`kÝTO~xÁ°’«11{*Þtý‰½cúðᘳËÀ­Ïë{U_Ïð³Á‚¯™Pß“çþIá|=yU|= ‰›ßI_d=W+W÷eaÛ告q'1°q#ñØ}Ô$[Üjp‚xK]ú©õÌdþ >\s^{GÊYo}Ï£Ì/Š`a”y®Ø½TMUÞL°h"€…è‡ùô½xúð/cÞwf?'¬ý0Ÿ¾—ÑüZ·˜ÁŠÅT\ïRšê’<‘Øõ>Ì.®ŒÅû¥*Š×NñWÿb•O™ õÝdÞ~wÕÅ‹±ÁÊ´¦xÕ⥗êëq›û§€•,Þ$îuä"¿#»Ù[ €‹Ù&¾W>—‹äˆù!¬srÕ=Öº½(tp5¥žXÅÕ̧ï^н.Rµ˜2ÁŠÅ”®V½'“úÀÅæk+Y~t¥WìÖ§…îðá>%øúõ<†ú~J( XÉdÆ]mÙ"3nì~5£z‚•A¦t5›åOñå£Åï«àŸV²˜ÒÕ“'L‹×¹ï«àŸV"¦t™øx%„[‡} Á‚«™Pßûð³.¿úsEf³ŸVˆ)]}eÛ^\®‚®æ*A¬âjöìê#çR·ú,sÌ­`ÅbJ—íøR^êAÈû¾ÿçVˆu “¯Z]ÍL”€•\ÍÈÚûöå?IË 1ǘX‰˜ÊåyŽ9e-;â}”ñsÂJÄT®±¶ÙÚòôÞæþœ°1•kÚ^s•- È;§ãçV&×ضGÚM\3ûÓ?€÷8äYm¬f’}ÍÙE¬àëÌë”>ûH£õ:7§B“¿‚×îÍé-¢sÏ÷Þ'À?'ðó(gæÓ÷9ßB úšï ¬äk.çÞz,¥­ž¥ú ½ðõWðá@"|Q~KXå*œ:+™Ìyí÷+­t-qð½ù9a%bŠ×zéqóס7ÁÊ좫Wk-§![Ì‘XÉb†]Ë6"«©=ùßGÏ?'°`qfØe»íÑòí¥›ÃA#M‚ŸB2óém§¹jÙâKHïäáŸV8úȨ́ïÛ”~Oµ»Ñ;_úçV,¦tíQöº½¢t°˜“šXÉb†]{¶dkŒzË:耕ˆvíeZ?·LÌIM¬DLåz=ÐåMnEb =±1”k$ïÉ4õì¶R`er-{òL¿ôw=XÜÉ ¬dñ&±?¹;’LltƒÉ³úÄT7«; 2°’¯©]Û"š²oÙŽ_“™`Å×Ô.SÛ\ê%í`1WUb%‹© »¬añ¢˜ç”™P°1»v_Þ£IÌ”|§…ýœÀŠ«)]ÛÿNê=rfnhÀJSºöë§¥óUÄ€•ˆ!]3åì”ʇN¬ï`ÁÕlPo;Ü\ÿyC"Þ$X!Î$î«%9ïsØŸVq5 ¦'à­¦‡§]àCL^=¥}{þ¼ÃÏXñ5¤kÚÚnSS×L6S`…¸“¸øeŽª™™éF+ 2gH®iö…ùaaœØ2>€ƒ}À*[U&ÔÛOöüy<ƒÁÀJÄ”®V–7¢*²«¹J,¸š÷¹žç¡“zzœ™ÙÀ 1Ç©Ùw°>å!Þcƒúð!|ÁÙkw[gÔR³ÜâÏþ+Ó‹ÚUó^sÞm8#ì `…˜ÚU«-æK­9Ϭø X%à]̪½ì4ÕV?™‰(«3¡þÕ/9õKÉ'1¯6V"¦vÕÙ¼¥­vñj3`%bjW]½¥ziHy æ*A¬DÌÏ©n¿¯¼æ}^m¬DŒÃ®e;¾5»Ü%d“°h25tµæµSìÁb~ÆÄJ3êjÓÖóú,æ÷D°b1•«™¿ª\vURàV²˜ÊåýNó8`ŸŽV,æ'a„÷;­êòÄ|úðAèéëÞü´JîÓ‘™”À‚Ȩ́_}Î:öí=´1 ‚bJW_¯ &ñ ·¤0NÀ*³‹ùô~쑹n1— ‚‹)]Þ"(·KWýC¼Çï‰X%Þc>ýÍ›œ!§ãaÌ|úð!ê¢vÙ(ÙTÝrÔÅʘ‚æÓ¯±‡wÿT+Í2óÚX!¦vÍW#—©—³à+`¥AfÔ5³ßì4u«tX…˜ÉåkVX¹$‘˜9+Sºæ(ù?”]åLXc6¨·ˆ¼¦¹/ۃŌ¬‰•,Žà×ó+j½W<ìú>œÞpvyŸ¤v}þÌìV|ͰË)½àTõ5uXÉ×”.SžfóMUkvX X‰˜Òµ†ß~«Oš½3†~N`ÅÕ”.ûËëÄO´˜ÒE¬dq˜\«UÛØ«÷^ÌjX…˜—ªkÛ°µ,?ýTXBÀ‚«™\¾vÙ*"×ñ{ðú€U‚Ÿ°ÚþõÀnó!`>ýø ¸üž¶í»öºýìCØÅéE°v1ŸÞm”9oÍ?ßSp6À 1¤k§’Zï·“1¾Vˆ‰«Å3[-Œ)9ð+Í®IâÖ†íüÄãˆÂ›‰€•ˆ#¸oÏ+U7noÀ‡»«B“{ïíÖ¼æÓdæ ¬b2óéwZ½—,·Ü))0,Ì.æÓoÛ ¤½å ‚ÂàVˆéjÛ¹níƒÄ•Ä+Ä•ÄsÚû–v n$X!ØUýFEͧ/̧Ôš³Ëä×6câ‹DïKèŸVšÖÔ®â )»œ°Ò³Xñ5µ«”ía«zÚÅÛÜ€•,^$n¹Ú$QÕš÷+o»ŒªZÜ‚§Uˆ™O¿mžš·ªz¢Yr`XcæÓ{oÆýÏ31"ÍVˆ)]µuûo‰;ŸÄ¼H`…˜ÒUû¶/Bí7˜wàV ­Ù,ìÕÇe_wöWó{"X­™No›Ÿ”F•œ kUX!¦rµj›Í¬¶h e+¹šÊ寤·2Ä{ä ̀•ˆ©\mÚN3ɇl…哬¸šÊÕÖL[®*ìÒ°‚Å•9?ÛÆ¨X¡O. ÁÏW¦Óï^-rj—‡²« b%‹©\}äZ|{!ZÌbÂV,¦rõi1Äí±™Ãê< ¬°:U¦ÓニEpK½èëÁ``%b*—gÑÎu{4óàjšLðó"Q™N¿G›½Oõ‘­÷¥ûÏ ¬S¹Fwÿ55áÑqÀJ®¦r±gOY\¼X‰8 “çÎü94*Ïç/þŠûoDÿ|¸å÷4SšåZTsdÎk‚…Af:ýöžy]‚òO_³.&`_3~O ÒýýJ•˜šI¬D\xÔÎ& ß·m•éôàÃ9YøÙ-‹Õ ìš¹aü>L/~ʳ{.œœk]˜_ÀÊô¢xù•ÙjêC…Ù+r°x7—UÞÅ´0EV,¦xùAPîEíËVØ5=€…%™ùô{Õ]“Ü5½°AHÀ*Aóé÷²fÿÉbˆÙÂ!`%bj×òÉ–å.Bše ®f>ýö Pûsu%Ìj&ò¬2«Ùxx[ˆºóµ à0«i1Á¬fƒú½GÊsÈï=„ ‡V\Ͱk{óšvÁ&…‹XirQ¹ų̈ÿQ…˜Ÿ±1•koÛÙÏ¢&ï­`1°ÒäúW¹òÿ¥Tlûs}¹û0¹þë¿ÀÊäÚ$nÉî>Õŕ¼À*ÿ¦Ó;¸g“½¥^üžþþ…•ˆ3‰ýVy.õº­ü&¢ü\ýûI¼°šgT{=„ ¿ýéÁ‡Óß0» ;³Zù]~óºþÂJ¾æ@ålBÏ‹‰'“;Lþ>”5˜œËÌ­O9éœØ+£9½V,¦v +ÉÙ°¸ý ,7jWi}Œ&çxo1±Š«µË¶b«ÚQ-þ­ý ¬X\@\ÓZ¶¬ª5Hå7£ì/°ƒü¦Ó;Ö_ë¬ì!à«„b‹Æ²}Ÿz®Ø9©‰•ˆ;‰‡-v%«†ÊସšÊU-€±eF¾7_ŒAV&•Ë“gRÙj ²)ÕÄJŸ'ˆí4{«Y-‘õ©ô»<}’X8»šéžï65“k¢«‰ULî”.ûÅ•‹ï«¿%NX‰˜ÒÕFòs]ºÂ@,Ì®NéjÛ„¯LyyZ”.‚bJW/ÂåÛ¢úI¼ù!¬srus€4çý9Æ™‘±ÒSºlße¿[­ª™³šX‰˜ÒåÏîî)KWM R V\Méz=ò7nM!ÄÄ+Ä ºFÞÙ«®æ×D¬äj]ãÕÄ%«“«ÐÓÄ*ăÊå¯c´*Ó×LXpõ rÙ†oÖ©æ¿ÔBý V²˜Êe¸žsÒg5™ V,æ¢êc”„_ý°mûͦNù!{;Jßéª&g†Ö+&SºLÊXEk\küVˆ©{þ`ølåwœž|=éë¯àƒ¯)?sµaú-߸Eæ¯àÃ}?¨e![·gþÎfB°âlŠ——yxù¶ø)‡ãb•OyR¼,(÷.vjôS §Á‚œ⵼Yòº¤•,æÔ$V²˜âµ–ßCËaW-”k‚‹v­í«êåÊì`q˜[ÀJsV{ ïì—óbª5±1µk·œ-PU3Cke I°âjªõž&ÀSÿŽ+#M‚b†]Û/ÈòwÜ‚ÁÀJ®FØeû®6w—Ãih+o¿^jr,ÀƒˆW"qi¬Ë‘äÁÕ…¼À*®^™Ä¦<íúp§Å-“`Åb(WÎyŽ’ä¶áH!€âJâ6üIŽAz"1À q#±}†seY@:]M°B åÊÅטq»\8#~ `…xØÖòž. ÌaVOò+ÍêIb/!jr6Èk›ûs+S¹Ê°¹¹.Áñ§Åß1±’ÅT.‹]<<–%“GÇ,XÌ#¯Û6_á€î!²ö‘ÿiàÃ75ÓÀ³í÷q•t„›ãÏþ,ánJW­½ý³ÝT­©\Ä*‡Ö<†5ð°çþýö»Ñ×_Á_óK6ù³©0ƒóšXÉdj—MÔ‘—Z\¥‹X‰8X¼¶}Œrta Vfµ«ùsUãÖ´ø@Lí"X!¦vµúúÅŠó28­‰•\Mí²=îÈå-¸’Å\'~¶¸%jWóã^‹~×®–¨]ßÁ‡_ÍX y†x’k&f¿ú+øº%jW[~.©6ý+›ß±1î¶Çzuy‰Ã¬V"¦«{ñ›à)çÐ ®Œ+³‹ÒÕ«?{£¶b);ð+YLé2˜¶)P“”Éo‚`ÅbJWßÞŒ[îZ6÷m+Ä”®QÖhcÉ¡À¦‚¬Sº†)™Çic\¿cb•1Î ~F÷ݦÚä°2ñ&`…@³en‡¡s—:‡˜X‰˜Ê5v÷fþrLÏû~Žp[¦ryFüXrJj ÁÁ 1•köᫌL¾c‚b*×\Ã+lå ã ¬S¹æÞÅKÕÉÅϘXirQ¹ü%\ïÖ£3ö!V"Ž`[4jV/üÁ’ßä;ø ô”®Õl©+r¥{ü’ ¹Pº¼WÏLr1rŒAVˆ)]ËCüö~‘Lä°_$VäBéÚÙöqK~7·2….€‹©ôÞªzتm[á†ñ;ø0»(š»¾{’ó«v0`aE.Ô®ÝgyÅ­âŠÜ¬²"j—Ũ{Ö~#¹ ÷ˆ•ˆ©]{¯ÝrS£®¶@+®Æ0ÙV3 ]µw+Юð!aƒìà™KR÷È5•ø³ÿ &3Ÿ¾¤‘Ê+ Q$.‰Ä+Ä™Ä;^å|ÅZ2‰Vˆ¡]Å·öç™aaZzšXeZ×JbÛŠx“JÜI ¬DÜHìý˜öíc<¸z`Å՜նjk^¾ÅÃqy%/°’ŃĦ½ËÝk™dX±8`w.;©ÑOErÄøß@_ÛÏöüiYA¢ŸVLÞ$nÞLîÖëô@ÌyM°@ÌÙRüÙÝÊ©‡X á°ë|ð5E³øs3SWkžy°b2µ«ìb;έ.É,÷ Xåƒb>}©¥Zx;°:XÌA&X±˜ÚU_Õ¦·×fÄ4™`…˜ßSõK´zs×x“`…˜Úå¨ìëTWäB‚âIâb“­Tñ¨îÀ ¬4¹‰»}ŠéVÊ|°˜ŸÁŠÅ”®6FûçZ±˜JO¬b1oúLõleI­‹iL<`Áb¦Ó—îù3Uí [¹‰ XÉb*—w7+MÝL„[€•ˆ©\½ÛÂVä—·k&Xq5•«Û\¤*Þ4¦x¬dqïêgüj òÛþ|H¢föÙýqñð¸±J$`%“)]Ýv›]~û d-lB˜O_FÉ<Þª·?ݵ¸‹!øãWf¥kTÛ™äKúÌÁbNb‹™O_üÝoÝzs ,f>}³¥µ“z”Ê[䀕,¦tÍÔÓ(r½he%P+Sº¼~ھǤZx•,¦tù+½«m‡+/sV"¦€Ì‘[Ùò«—-f€Ws‚˜ôÌ‘Øõ ™L§öÁ×ï‡ÁÔ8³e®Œ ëÓ t­Ôë¬êmnc]LÀ*bÍlúâ‘ÞIµ8G,XÌlúâÿhD ~ëbV±8|«ïîSSÝ©úõÓÿ4ða|=g·¨MÞL„ƒ‚_S»ÖÚcu5Í©…Ã.b%_ó{òV¶cÊyü“¡±Šv1¾lÛn·<ÔTëÆ¤´kò“ضq-mý*îƒvMj×wðá.8øÚBíÚ/79_Ç_ý‹•|MíòÌáݺzæÔje€•iÍïÉ{A½ZF‹Óš¢I¬2­™O_SªýŸ·:bÖj¬DœI\½|{©—1¥ ,¸šùô5Yæï“ªgò+Y\IܧE©Eݸ±Ú+`%âFâeÿbfõX±±ê*€WCºª_k̦ž 4–¬dñ ±Ïo$ZÌ‚V,ž$nž~é}uP®I^`åb>½7—¯÷f‡U"0,¬̧¯yyD¹ynò«X¼©\žÃ2æVsoB6I o*W©^°ÕC6½ XÉb*Wiy$oŸ„X‰˜ÊUÌ]ß"³+[ÀJÄT®â¥§E®}j%˜ °2ÆT.\'_›š|3Ï)€b*WõŒŽ$'5&ï°BLåª^\Û.ip‡1ærL¬4ÆÁ[cì \›˜äˆð!̤fÖ5WŸrûªÆ|Å~öuOaœ,,/}©ù éôàÃI*¿äöz’ã&“9Ì+&S»l§ikÌ%½ó0½ +L¯ž‚Ŷ!*KnÃ.R+S»lòêÖ£ó› V"¦vY 6S–Ÿ_j#ø`eŒ©]¦d{÷K•ëሟ±’ÅÔ.ïDYåöUÍ2V"¦‚tÛª§®»šš¬¸šQ— nZU~˜(À1Sª­/sN5øy¥iÿœ°Š«™N_G²€íOF‡BLO+SèGεÑÕbÑ'õ|¸í&×^LÌd±B°2È”®Ñ¦I@ź±qVÀJ¾¦t‘R+jÍDcÒ`ÀJÄ”.o•‡ÜŸµí"Xq5¥k¦¾sR»â7f+¬d1çÇkÇ—ÑÃîiZ3ìú>„]ÁäWWH¹h¢1!$€_3Ÿ¾N›"£Þú}ˆ¹N¬óCöͶ¬ªÚU/°Ê 3ŸÞöž¶¦ê-iëÌX±˜Q×z¥V,uZ³È>`%‹)]®¿{É-âV„`ÅbJ×òNÂSn;Ü™lÀ 1¥ËÅÇk¶dbŽ1Á 1¿c?¬j·R±Ï1f•HÀJc̨k÷á]öÕÛÜΘV,fÔµ×Z©ÜêÄ?—ª¬gûšú4OcLÀ*cÌlzohZ¯–m†K÷€•ˆÃ¯ÉïÕ;UïMúïºø>„{&Ïæ¯ «bÝ™¤ÀÊ Cºümô\ºþ=1<`…x¸Ú&°é߃úVˆ'‰›íCVVg/Vš]‹ÄsöYn'Þ‹3ÀŠÅ›ÄË›ØmuAf®QÀ*3›¾eš5Ø™Mÿ>œñ“·§ʧ| `%“©]¥zÝÞõ9 2Õš`a™MßJß3ù¸¼ó¸<€bJ—?PáMÎTWó;&Vr5¥«xÛ±[nÖ˜Ÿ±1¥Ëvk]³;®FÔÀŠ«)]¶®õ9ÕÆÆÜò€•,¦tU {–;¦wæ(°b1¿cÛçzš»XrNÚV±˜Ùô­ú]Õ4”΂‰€•ˆ©>¤zš»ú4OïÈëzÓï5ÞxÞëüd&)°0ÈL§oö5¶|k0ð5?db%_SºlïYW—;-Ç`‘`ÅbJ—EÆÍÓ;U‹¹"+YLé²ýPêUAØ»3€‹)]~ÔÞÆå@áÓbf¤¬dqøÑÍ_kÈònÇY×ø=CÑ4 õCèD°àk¦Ó·>×ÚzÆsg£ÔVˆ© }§ºå’‰Î ‚€U™éôm$›"ùò°ò˜ #±1¥kø-t—[Kwª°âjJ×hÓ;÷©ó´<`%‹)]cúµò­ƒÌÁbª5ÁŠÅ”®±k*órev°˜‹*±’Å”.Ó[[(«š„ÛÙ„7€‹Ö„¯ ´Sy8Ž”®ïàCú g×´Ú6ºòf‚íX0™éô¶ÛöœïËuÊa¹ « 2›ÓÛŠºme• Ž1ÁŠÅ”®•½¾äòòÊÁb ±’Å”.N²Ý†Äüމ•ˆ9¹ü ñ³vÙÕ\&V\ÜeËdg{è‡P`¢ˆñ|øž¸YëÕ É&g¬˜LíZûÕ¸ïŒ= 2Fb¥Afð³ÓÌ«]R¤ÄŒp‰•ˆéj Ês_òó1X$Xp5³é½ý¦©~ ÄŒ²Vˆ)]{ùådQF¦ñ¬âjfÓ÷”Só÷oe‹¡Ö¬X\I\÷|ÕŸªÄÄ+ÄX›˜‹êƒ‚,<"û>䕚<«}Žr_üÎö¿¬˜ˆ=Il¨9Þ%+Í®IâíÕC. +t¦ÓÛÿ¼FjMnÁx/€Ÿ :ÏÚíc¥ÅÜÆR[<‡Ž¬¸šòS¶}Ï8>,»À‡^ŠfÙ{xÙ§êë~õ/Vò5®nßCIÿ¡% »Òð³¯GJ$n¶ Jï{ ÅbŽ1±‚ŃÇå½Ú϶èI­uç9HÀJÄ”®êöŸnÉŠ«ÙÃ!€WSº|«™ÿ<¦³^=€bJ—­k%KOȃ«9·ˆ•\Mé²lÎVeaûßV,¦tÙWm‘¢úä÷«ÕÏ +YLi›\>‰CÞ1— ‚‹uY°¸³ü@ãùKÀJS¹zɶ¤&±aWãiDÀ*ÄL§ïö=ÌÙõH`“\ÍtúnkêõòzÁ!¿Šñ-±’ÅT.‹„üþ[^$XLÀŠÅT.““÷å©™CÎ'5±’ÅT®‘gJ»«“‹#V"¦r ›.sÊÝJ[Øæ¬¸šÊeš×›eb®‹+ÄT®i»\o3/wVL°BLåš%ûÑ <ÆÔjb¥1Ž`sXJEÜ/ŽÂýâwðaiã‡ìÍÍæU>}Ílú|ÍlúîëKkI]ž:³X!æFdú[s¾‡ô£Túú+øàkÎkã&7¹[igžS+&S»¼ãÇ+¤Q‰97 Vˆ©]žhÓSUkÖº¬òA1Þ¾Cïå/ŸF ¾TÀŠÅaŒ÷ô¾êŠÌ Ù€•,¦ví´L÷šìjFÖÄJÄŒºvÝå%ફ9È ®f:½?™gÝbdèˆU,f:½mò“í7oAêÁb2ÁŠÅk›¥©æ’ÔP`°r!€âJl©{µªÞ· ¦Ó?€e™&—Vv¿\§­{øÕ¿Øò|h=˜NoƒözóEN½á9€?~õÁ׃Ä^Ü3õ<þ `…x’x÷i{{ñQæÎþB+¹Òe;‹áÍ6ä{îÍX±x“¸z?}rñs"V±¸% $ê˜\‹Ì ózÀÂ]o £vñî̦XE3™Mo±Ÿí¼–ü Ç`¢d ÒÅlz‹ýÊë&Xµ¸XÉâFâ^ú«#žh1%X±˜ÊUìwÌ\Åë¶ÎjÑ€•,¦r•9¶­åbk´pаqoß}Õ¢nŸNéÀ‡ZS*ˆ…ÆÝ¶"rœÉ¢«V9—ìá±ü ¦Ó¬âk¦Ó[\àï9«'¸ƒ²+Sºªý=û{œ$Ws^,¸šÍém‘´µN¾`)ð+YLéªk¿ÙP‰¹ +Sºlv¸æª‡ƒ}¬¸šÒe[Íí­¸U‹¹,+YLw5OhÏúàvtI}*Å8Èm”4‡|ÎXñ5£®fâh—û£O_³N5`%_Sºz²mßõVãÓbæ+°`1³é‡—µä­†ƒ †V±˜Ùô6Ç-Š˜C~XtÀŠÅ”®nΛ] ÷FžV²˜³Ú©U¹Yé`Ö`+SºL~»¯«ªÅ #ˆ•,¦t op¶ºúhË`zU+3ê³öœŠ, ÌÊ`…˜ûEOÒÞsËŸ'5±’«xwïü›÷÷ Ö̦ÄšÒ5ýmö~ë|ð5c‚_3›~̲S¯——Ð>}Í’‰€U|ÍlzS€í¯ÈӚɬXLéš³øe°¸™Gü+YLéZ©™ÜÞ2¤SBV,¦tùMÝhê¾m°9`%‹)]^_lkª¼<1g0€‹)]~¼™·ú"Ð`ÅDÀJSºlnÌ5u±fŽB+3èÚ>?nûƒÅœ[ÄJS¹vöLé¡3µ<`âÀÍ_$C»®‡½ùBçˆð¡È•ß“í¬«×¨Éƒ\ÃÏþ ƒÌlú±m³Y²š‡2X}°’¯)]{×îý‰d‹)!+ÃÕ3?ü•oìÃÞ+€âNâÚmɹ<ypu%/°’«‰Ûð'nT∕ˆ'‰m_Ÿšœ ;Ø”-€W/¯¹÷í9çƒÅ¼ÀJCºfNþŽô%Aê@Lƒ‰UˆÙ›~æœæ¬Y]ž˜Ñ°q&¸d?þ½yp7:G<€E®™&·üz M]#ül€…ÙÅdú™»¿Éqy¹éàkÎ.b%_SºòšsýX‘¥O¬XLé*>5[ROpYݰ’Å”.‹È=›U•.ö¦X‰˜Òå:ßÊ-¿áàj2ÁŠ«)]eÖšK•OœFð5À 1¥Ë”'Ù_êi Vpõä¿)O)J©íø'{Ó?€j4¹zÝ9åtÞ›ð³¯'“égí)×kö̘2Á 1¥«Ž´JŸê2Áfü+ 2¥«î˜Lé"X1ÒµRòóêçƒ%W+ ò"q­¶Ùªt… v+onò#§ Lf”°@Ìlú•¦m‰Šš×5Y€°Š«[øÑÛvõÞæZ ÎéÀ‡iÍAÎÉ~y’Ÿ8ŸÌe `ÅוÄÍ$÷Ï3$q'1À q#ñôǪäy2—-€âNbï͸Ԭö™‚§•f× ñÎÞÁWÜ#Ï< ¬DLé²ýOîzJjØn°âjÎêR{iòÍÄdúoÀJSºŠ«OIjd=Ù„7€‹™M¿ŠŸe”ۑ˜ÚE°BŒ¨kÕdëËV·È“å8«¸š£ËHoKδžå×àCg~ÈþPùHê¹âd=NÀJ&7‚›}‰ ¿=D?½Óä¯àC&-§Wí6TsÉ_ ?`ezQ»,Š°å¼Ÿ¿‰ƒ¯Ã Vò5µ«ú7QåãòÉTëV,¦vµb›û*oÎ'3¬X!¦vµê5~jyÊdYLÀ*®f:½wîñ›Q1_q²p!`%bjW[%í?:K®æì"Xp5ÓéýeÅùO¡‡`1³pV²˜QW/HýyŽU²˜AÁŠÅŒºzóì,9)XÉb0½wï†PÔÐz`Çø>äâ“=ihËůöÏ ¬øšÒ5ló5·œÙ5ù¢G+Ä”®‘{Þ)W™‘5±Ò SºFé¦Þêa×d6lÀ*ÄL§÷ü¡Yº.Öa×G°àj¦ÓûÝØ]¾ ˜-ø`…˜ÒeòÛF¿%;ˆék‚bJ—-tÙ–6u•`!PÀJcÌïØvÛÅ_މY°qànÿŸ¤F¸lNÿ>„{Á×¶ÊYn6[p6ÀÊ Sºl¯Yö¾ôc:ø:¸ XÉ×”.Ûa·á)¢Åa+B°b1¥Ë6A½ë[U¶ŽXÅb6§_®¸^ø [Ìå‰`Áb6§_G¥­6¤ì³°’Å”®åu/•˜íŽV"æç´³­uó&?Ws V\MéÚÍ7¾ÉÏ'1S4X!æÙvš#Í[ õ˜¢I°BÌý¢Gä»wuoÎtú€•ÆʵSJõõ¸ˆHŒ¯)`%âEâ\}#'w+oo¨¯6¤ì‰° 1oûw²YiÛk9'u#'õ|¨Ê ¾îÍ;Ê2s¼X˜Öl ³Ó«‚Ü7kîJ“¿‚Y˛̶Nî?¯(AÈndþ >Ô˜„/ÊS:êÖf6Àг;‰·JÊ»óæ&°ÒĆxí\lK°åfƒ3 ÁŠÅtu6ñ)[NžL `…˜TžÉ{Ø©§Ç,Ÿ XÉÕ¯’’m7É=XL½&øÙâÅæô»Ô\{»5 <sV¬g7GZí;”óPBÊì­¥[ïÁ×ü” V|榿…û'ËR‰4û¦É_Á‡TZ®Åû,µÑáJ9üê_¬2ʃâåipëöjÔç‘fü-‘æ xÕâOÞ¥ ø/ÍA&øãWòà—\›Éýxk½bqàV²˜aWµÿC·8U%¦\+3ìªþå*gXa+òXøžµ«ú9¿¼Z‰“‹XiVósji­ÕÎÃ+Q¬‰•ˆvµº‡7 W]Ýw¬¸ššÙfneë'0¾&X!fØÕ–í†ú"âJœÕÄ*®žT®f;¯4/o ~gJ&±1•«[³§Ú‰×a%b*—m€JŸ²r †Ä*29?ºÅ¦ jýäš »¾ƒ­ÔLÛa\~öa•Xñgÿ V‰Iéê}›â6Ùל]ÄJ¾¦tuÛÕ—?îRˆ)]ÄJÄ”®‘²w¯¹€ÙŽœ^+®¦tœMp›l1ƒTb%‹)]£5¯£n¢Å+qr,X¼(]c¶Öþ¼´§g2Á 1¥kxç Å¢«ƒÁÀ*®^”®× _*ñ s X‰˜2kòâ¸.»šáÁŠ«tÍ‘=qY>ùic‚…yQ¹æÌ»æKrççòT¨\Ä*ËÓ¢r-×–|Ñ·?d‚‹©\«V›ú~±qZ¬S¹Vë³µ‚`®©ÄJ®¦ry†Gþs «|NŒ2‰U>§MåZ^ùö|øœÂ,|N›3óÕ a,ùè·=ý#ø‚ð{² n/]î6¸:µ‹`avmJ×®ž·syóå0»( Ä*³kSºvó<Ú‹úˆ9ÆÄJÄÔÛ=lã5Ðuë!Î܃ü|È?{Vï(,nv}rñ©šÛ–Ô©·Ã]½„Ÿý V¦ÄË›—v}Zù@ õ `…x“Ø¢ˆœä¬Ÿp*ÀÏÄ;%·•¶œk½Ê"/°Â¼Þ)“xNF–îÜX±aWÎö=Ö.§-ÆÖ¬W—¼K½LÌOWWL¬äêFân‚t+¾Ä>TÃÚs)e>DáW«D•Ä3ÙlÓû+†s£bŸJéš^å:Ô7rV ¼ÀJSºf¯»µÛô‡Å›9?¬XLéò–9éW"!!Xùž(]6?,0W/úFe\M¬ô=QºV™c®"G{“Ì+Sºl‡Ûú¸N‡­w@ ÄÒåµmµ`t…™`…˜A—¶²é!ÈfœI°B̠ˤ{§©† #(±ÊäbòÌëÂ,±¸ÿaoÞñ>ä‡wµaßERËýi<0˜ù%ïaûë~ë1Ð.Æ] ÚÅ|ú¼§wF’Ï¥‹XE­™O_R­$ù™óÍ\V,^$®ÝÓ,ÕCpˆÀ ñ&qó< µfbµM^`W3ŸÞUZßE¶x`ÁbæÓÛ…XPr¹[ø´¸gò+Y í²àØ‹«D6+X±¸’¸—1³\ë¾™„À q#ñ¨½ëùÎ=ð+¹º“ØT° ¹6wSAX±ÊUJšÍË[T‹©ÄJS¹üaÁ•oŸóþ:€‹©\¥ù6÷ÒªçÓâÁ1&V²˜ÊUF©}©eÐkW«3™¾”Ù³78¸ììëg5ÁÂúÄlú2R±9²/«ê'17ö¬3êr¡_MnÓׂ•YMå²iÙ§\c¿X°Êäb6}ÝÛËgÖ›CL¬DLåÞ¼\^ ý Þ) 1°1ã—±sJ½ü²=„ ¹àCú]˜ÖÛävË-i÷ 6,Ì.¦Ó—™Mæk÷Ö »ˆU„éôŦ¥ç¦«¡5SV"¦tÍ^ûì·+胂“„éôez騾-1‡1Ä+cL隦ÝûöŒãá{ ¼ÀJߥkÙæk4}‹$àñC¶¹aêsK„;,ÈŒ­ d¦Ó›ð H@ 4y–°’¯i±W|öyiãrXž+p5¬cŠá^ÁŽñ|äàkÿ&rJê ×àl€…Af>}íÓÙ¦–Ⱦ—óŸXЮJí9Ù¢³å…1Œ2Á 1µËÓ ’|ó–úŸX!¦v™üxµîµ`0°ŠZ3¾Žá‹L=Ç/b ±1£®1G¿¾CòIÌä½€•ˆù9 ¾¨ ù7Û(¬DŒÓ›êZ†X=s207ŒßÁá´žy®²Õôß÷zþs+Óša×,Þ»æÒúàk ±Š¯™Oo»ûFšúfÝû›ø9‹™O_§Ÿm´Û½Æ˜û'‚bޱ÷—o%«2›t¬äjJ×ʽÚä<(|³UÀ*+2»Ó×Õzš£É§ì5ÀºÈ2¢ês£-µùÌöî'¿òwðáW‡AîÕ@ö5µ‹XÉ× »ÖðìÎ.–Öí+sÇèåÚùóð=…y °ò=Qºvöºñ®& 0ÿ7`•ï‰éôÕ_d=ËcÌ%†XÅÕL§·µÕv}2ójÍÙE°ð=1½³î•Û¨ULÜþàï÷ô|È &/ﱪ>úý×zN°0»˜O_ý%’™Šï±ð;`¥Ù…°«Ù¾Ä¦È-_úÓböŽ`ÅâAb[T“¿Ì¦W¬OÛ’3§š6øþN`…ÒÕ²‰Ñèê£u!“6`¥1Þ$öÃÁ¢&þ'ÈÏ ,XÌ|zÓ¼ÖKzo6‹7yU,fÛ ?‚ͳɛóôˆðAA*Mž®zj^û{ ~N`Åר }oÛÜO_Ïà.`%_Cº,N4­/j»¿Š`ÅbJW©Þõ|©+2;8¬d1¥Ë¶|yÏ[—ÕƒÅÌ+SºÊ¬eµ©žá² :`%‹)]eõ=o; Oâ V"¦tÕÜ}'"ïTÙ/€W3¾½ûo¾¯û…¨‹ ðV‰º˜NßêHi¯-á†Ï‰`!êb:½-ä»üéü©XÌå‰XÉb*—…sŒ[k€ƒÅˆX±¸ì©¾Ï«”8sâœþ|ˆŽ©™Í›×$µµÑf'…€•|Méj¶Õ´à¸¨¾f/–V|MéjÞSÿOÄ&XÂLb%‹Á6ÕT‡P`nòWðaj_»¤d=-ƒµ@,øš õ7Ù0õ*—³€2€ÑdB}óW†K™êQê ¼À*ËÛÓ·ÞÆ\µª·@l°Êìb{úÖ½µýLr’7Û9°2ÆT‘lÛ—ô›ó[¬Œ1£®áG M½ÎÝ| '`%Wós݆jÞꈹüœV\MéòÛÉ&'mvƒ XÉbF]6/MúÕG6ûü¬D懟ØuÜ~?h¦çÄÿOFή™vε‹ßÓ;9ëçyl]¶R"rz2™;ÆïàCªµË>Ûz©•fX19`‡MÌ­Vç¸Ñä¯àÃÊȉ=½ 0©ýœbvE+&‡éåãT÷ù”ÿðEq"Vù¢xgߦE0¾¼‰Ä,’ X‰˜âµ^/Áv-ª¹´+sŒWî½%ywÎ>R«ÄlOo1ê»/¤JL V ÎL¨o«¾—ZóŽ`~Nàç%93¡¾yùXI>µfe+Ä”.Ï}ì]¾ êC¬äj†]ö¾ «!|97`%b†]»‹Ù./íˆ) ÄJÄT.šÝ¶ºêäÊLJ `eŒ©\~·°“xeÿ®ôø9a%‹©\{ÙISÛ#¿ÓNXA¹r ãäYa'0ßCœ¸cü>l0­{²Éf±“¸c|gÂýœÀÏëbf>}OÍÛØÝž;/¬gO¥¬&,¾/üN`…¸Ø´vþIÎfKrV™]9Œ±_™Õ¬.ȬÕX‰ÒeÿsÛm¨G?ïûþŸXqu'q·•Mn½÷VúŸX.æÓ÷<üÜùòëAA/°Št1Ÿ¾ç¹WYSc¬4Æü‹í\Ç¿3ó{HŸ3¤ë|ØÅ êê%»tYAZøÙ ³‹ õÞƒ¡ÔÑôÙE!X˜]ÌUògÁRÈ­xX&J¡¯¿‚‡‹&÷a?{©óš%V™×̨ïž0B%î$V"¦v•íEÆò5PN`e©]µ¬ÞåÇyÞÌÏ ¬S»jµÐ`‰èç„•\~ôØs¡/øc“¿Óú;ø0­©š69,jSߟ|KîÏ ¬øšÚeŸCÛjSÚwéÔÏ «øš õÞ¼ú Ç*ñ&1°1î–F™U|Ií]HôsÂJÄ »ü9¡&¿÷–ŸŸXc&ÔÛ~ooÛ©c\ƒÅÀJSºÚòœäd̳®V,¦tÙ~Ó&§Xtþ®{ø9a%‹)]¶!°¡*Ú![L¥ X%úaÓ¿n{kû ¶øRÍ;Ûñçbö§ï¶½^9Ístüi1“V²˜ÊÕý0´ÝÞtþ´x‹,敬÷ïõ|éß_ý°J4ì6iòHGøƒƒê÷Dµ&XøžxyåqÓØµMualÈJ}Læ—<êêK?XÌa?A°b2µkxšöJjñBªI°B,ž»µ[ƒ×ƒvq• VÑ.ö§ïÞ%(¤~É3L`•/™ õ}–Üçžâ» ï šŸXù’WÀ¾Âò_â‡-cã–ñ;ø/MÕœ¾¹_·'v&3Æ%X0™õ¦{½Ù>[»Œ‰9C« 23ê»·$(¦}²Åa V,fصÊ,}ßJ2ç5Á‡Ìõ}5sß/cÞÅb?'¬ò!3¡ÞßH÷V ºÅd‚‹)]Ë»Pe±_Æ»Xìç„•,æáùiuV±©¤Ñùæ|H'áìòå},µ©ä;Zü9_SAl ´ëÒO[ X!f²ûLe\šA™Ÿ±Ê 3£¾ûõ‚}ŠêU_fe ³CýH){Ã{u7Áºà€•,.$¶fÞÞt>ÄÖÄÀJÄ•Äe¸ œõö°JL«¬L¨ÉB˜Ôó%Ž8Ü#W2,¬L¨·àxÙ¾F}Ã-ÊO+“ Q×Èþ‚ÓºJ~³“w+Ä“ÄÕ;aÊ—›Á`b¥ÉµHüJã½4¿ú$^Á``¥ÉµIì/‘$õÁ‡w ÞÏ ,L.&Ô›àu›æ·æ‡1†f°0ÆL¨·òç äCk¾°Ê3¡~x÷‡¼å´ŒÌÄÁV,¦r/ìM«Öx©ýœ°’ÅT.OÅ7ùÑrCß ­?'¬2«ÙŸ~˜xB¾¼•`æq+³šÊUën³©¯.¼EàçVƘ3ÓO«6ﯢ½‰cúðá²nfïz±Õ´ÁÌ„úðሎóºŽ=Zk²„pwÀ‚³™P?ª×=äK¨ø9¯ÃòD¬òA1¡~Ô]ü!k5ø B¬DLíj¥ÌW‡nÕÕü” V\Í1nÕ•àr#{°¸“XÉbjWk޼ȮæÇH¬DLíjsÍZåzäÌi¬¸šÚÕ|ÌõžO¬d1£®^,R\rÅhf¢d+3êò“ÙÅúÉwmËÏ +Y̨«7?8º(ý˜³šX…˜ êW}/¢®ÈœÕÄ*+òî=×ÖÕn¸™ùôàCBk0ÙíºV>bnU b6¨¶Ï¶½Öz¢Äòƒ€•|M½¹Ïšq ô°"oÔ1>€g’Ô®Q‹íDn×u‡b A°âkj—mwë‡pà/€ a>ý«Öz{¸ûcs ƒ ¬ô%S»fö²âÛƒ3‹©!+S»fyõ—‰Ì¦´+X\˜O?¦/çë²¶ˆ9·ˆ•ˆuͱü ZyãT“àgWæÓi»ÍZÅ®ïdÇŸV²˜Ò5wñ–bvDȃ X‰˜Q×*¥où¾÷ªús+®¦rÙ§¸æÜbœ™ÙŸ>`%‹©\þlBë·„¡O‹YÀŠÅT.o§—»~ÁÚ…Vˆ©\~Bé:«®æ¬&Vr5çǶWͨÿƒ”Œ2Æð!óš¹ýǽ.çFàÂj|Í|zÃÖsýCîVñ5óéý÷ærmqv°˜B°b1¥ko‹QóR—'¦ ¬d1¤k&ÓÛ¤>còÎÍú9a%âNb›•¯‹e˜—O+ûhÝòàc\É °2Æ“Ä#Ù»hufï–ŸV²x‘Ø'j•÷J Ì+ïˆõBDõ“R ]àCHéš¶¸ïUoO9L†\°`2ÔÏÜK·?ÿòMˆé/‚âBâÑRKâÓïD¥ŸV™]Ìg¯êÚ‰ ö÷}[)(À~¶^Ô.ÛLµt`>}Í‚V|Mí²È í.ö9|ç’üœ°’¯©]¥ù¥ûÐ-æ—L°b1µ«Œ=ü™˜Ó‹`…˜ÚUS²Ý…þ=q7À 1¤fû![þžØm0`•1f:ý4OíyKT:/+Sºj½]ßè:¸:0,¸šéôÓèªMÍãÏl6°’Åü«m®×|¿6£¬O•Òõ|.šìŸbÊúú—`Å×”®–«¿_©!ì˰’¯)]­Xð´ÅÞ±ÇGÀ–çsÅÂ|úÙ¼‹ï¼¼Ÿ} æ‡L¬DLéj=¥ÖßwfÏęŹ+SºÚ²më šl,À¿úsrµð«—…¨}«w óéÀ‡”x~O¾éÛÿ¡­X19·â1ŒZ1jôX!®$îe?(³‹2±Êìb:½mêjUmtø®ÿ9‹)]#Wó×­=ã˜ÁÁ 1¥kتê ª®f˜I¬äjJ—_õ÷,6X|׫ÿœ°1¥kÌÖìߨŸS(ß`ÅÕ”®±l7à½k󥚀U,f6ý´HÚE¾ÊlÀ‚Å̦Ÿ^ ?“\rž™\À 1•Ë„gz’ƒèj¾3°’«©\æ.O3PguXaˆ•ˆ©\+™„õ-ûwiËÏ ¬¸ºl­{.y‹Üñ´Æøð-ò{ZÕ³:ä‡ú ­Xˆ3ÙŸÞbcÛ‡Œ¦æ²eV1°âkJ×2´ßª³‹ÓšXivÑÕ~/œªÜ}&³Ÿv 3›Þ_V^{^Dà°}â÷D¬bqØØÕ¾òï0=„{ìOÿ>„{äÝKšYn½—Ù74€_×€í»ô6z2™;ÆïàƒþpØ«eÛÉ;Ɔ`áKf>ýJž¦ÝnLbL‘Vˆ‰‹ß‹/M¼sñNXe«Ê|zÜe¡“Z¬‘™D°ñ"ñ°qÚ·nWW2¬¸z“x{y­ü&b©Á× Ä̧5èK?s ¾&X!Î$§¯Û•ìx‘`…¸xzqœØ]ú]ðsÂ*“‹ùô+/‹xû»‰¯B̹E¬DŒ°k Óg¹}Ÿ®Ì+®¦rÙ¾Õ‚Tý´œé¿¬S¹,úëe‹¯˜Ä”ø€•\À«¤´¦|Ã|úð!d£f–ÕÛž· ʃ¯ãÏþ+¾Þ»jïMMä/+“¿+2E³l_WÕÙÌê§€UF™ùô«f‹Q{R7ÉlÔ°JÀ·¸îšÿ¼~«| Í#À_S¼ ìjòö|öø³ÿ ê—?ÚË-Õàs^3Û:€…yÍ„úU—m¶Ú-³|2`¥ÙEñj¾ÊL¹KYam]+SBZÍõÕ£R›Ö,šXiZ3ìjžÞ¹ª˜òœYB°1¤½N3ôÃc&[°0«™]¾z²I*òIµX!¦tu@Rm]þ®Rû9aWóÂÍï0ÔóˆÂó½V,¦rõ¹’ÅÇê©uá9[+ÄT.OS²-§ºJðÂ-`%WS¹FöÑòQjá‰f+S¹†-nm\Þ:XÌÉE¬d1燿ÿº×ÅͰë;ø°´QºÆ¨­$4¡zð5“ÊXñ5¥kLÛµš5_‡k€|]™O¿ÆZþ.™(Ö…yƒ+SomrÌ\Ðyøû ×T8È_ÁÁ¥vMû8ןä?i97 ~äÊ„úåíÍ?{Å×”b%_sfú eßH[þÔׄZ ðáƒâ¼ö »^o¯E|M¹&Xñ5Åkîf$ã°B̰koÝwÛˆ9Ê+ÄÔ. {ª—ŠõÃìb¼G¬4»8ÆI ‹‘Õ «à+„Ö• ê—iýœµ«yí¬ïX‰˜a—ÍÌ4ê¥càae¤€+SºüÙКäN?•I0ü¼™¨L¨_~rfK¥šPÏÇDV²˜a—Çs]ž¼;ÌjN.b•YÍ„úµGJ½$Y¹Øc(€…ï8‡_=¼á×R¼ÈêW¬¿ƒI‡üž¶_ u¹ãNeL+³ ÒµSj{Ö,ðV¬4»6Á¹ÙÔijd #3êÀ‡ ¤Ód?(KrpÍÁf€_3£Þ›ì·2ÕÀ…MÓVñ5sʼ†ÍUµ‰CaÓô€•ˆ+‰}f6ùR¤2Ñ)€WC»¼ìÕŸ}oÜ sÙV²˜“+×:ë–Ë ã7A°bñ që£ 5Ë»P@V²x’xöi¹z)òš™?'°b1¥Ë›Øy¡šjq%/°’ňº|‹ëŸ£, Ly`Áb&Ôû´å²€°1~À*3¡ÞSl¸åYÍòÜV,¦rŸlåöXù8˜ °BLå²-MîûÒ>ïàj~ÆÄJ®¦êÙ0õÁ³ã‡¤bÃø>$Iqv™ødó—þ!›V|Méªm®ÜÔÊÂj÷€•|Méò¶¾ûR#Ü`0°J„Ë„zS¼½Ûz×›Jn`XˆpkÀî1-PUïkcÔõ|˜]\‘-h2YP+ÍJX%ˆU™éF»Õ¶^ £â´fÖO Óš õÞõÜïFÕ¨+h&±’ÅÔ.[Í-lê215“X‰8Œñðl-}ÿžzð4°Ê÷Ä„úݶ'õ($ÿ°ð=1¡ÞKôמê…[ávÀJSºz){÷ËÛÊbN.b%bJ—IÚPÉ×O+˜ °âjF]}ÙÒVän¸qU%XøŽ™P¿íK\¯gžÅω{ b•ω õ{ozûóC&X±˜Ê夗™åm›¦°BLåÃ÷€ê;%D ÄJ®¦r _Ró­ ð`1Cz‚‹ù-ZÔ4^/I‰GNL¨Žø9»¦O,wלּp `ÅdJ×ôÜáœåi– ‚bJ×t_¥[÷«q°`…˜Òµ’‡©—§W>§5_{XeZ3¡~¯êý‰ä&Ï•RX°˜íé=#,×¢6X,lư’Å”.O4x]’ˆë"ÅšXe]d>ý^Ã&jËj‡Ê|úð!Ñ æÝü½5¦=0v"Œ~ÖZm ¹ÍsYÁÛ ±ê··9imË7}lSÀ 1µËß|)×?‰7?e‚bj×ÙïëÔ@3|ÈÄJóšÚejÉrŠf¨1 X…ø7¡¾þ_Jžø·æ%åàê5ä/°àêß„zÇZ eÁ„<«ïÿ+Ä…Ä£úQ†:«ëo—²¿À q%ñôgÉ.—îŸcüÛ¼ó/¬4ÆÄ^m1/¯F}ï`0°q±m½zNó²Û<¸:ƒ™`ÅՃĶ˜Û/21}M°B„ôëß—5Á‡#IÎ.úvêumd‚_‡EµYÀfÛúßuña/±3Mþ >DåÍf?{&9Ûhs]$VåMíjs¤²nïr´+0,hצvµeKj_êú4¸ «h׳k{¯BµÜ«Ì0A€•ˆ©]5‘Ä´ö²©ÖÄJcLíê-gû7ê¶­6Æ+ßµ«O[R«ü´F Óš`er1êÉ"í*?SÃî‰`…x¬…Šâ—ô,š-%(ÈwðA4ù!ûClö£ÕÃãÉ%™XaZ·Ä°k4sÁlê¹b › ‚Ÿ}ÝR°¸[ˆÚÔxe2ê"V²˜Ò5Ö=Ëw1-qM&X±˜Ò5SöEGÍ€™œÕÄJG°ßÉVõœÞ_•øÖßÁ‡’b~ɳ–î³DöuøÙ+¾¦vM•ÌÏÝD_S­‰•|,îÃÛÛ‹¥u%ȱÂ2ÑwŒs w¾|*Ð-ü¼L´ÌàgÚªZr-®ás"V±8SºLl †LÌ1&V"¦t-ûÇW®—èêA“ V\MéZ&=Þ2Pµ˜‘±’Å”.+bÝèÄœ[ÄJÄŒº–ß~ÿyUr5¿'‚W3êÚɾE¯áÒ,Μ\ÄJS¹<+#ˇ—`Åb*—7dÊ[}É©Ya%‹x Ûp'µÌ¬F]ßÁ‡£Aή½ê|%>©¾f„K°àëBéÚûÕ2Põu ³ XÅ×Ò•SòלÔþ¿µaœV"®gOZF»¯‡ä·?ý#ø°9¯4¹z¾Ð­ò0È?`e;‰í£ðœ!Ñ×<ß XÉ׃ÄË}Ùâ,X±x’x7ëG¶x’XÉbhW¶_=òRïbêÀú°ñ&±¿^ådØpFÀ‚«k"q/cu5y¯rðŠÅ5“xŒfÛ\9²¦‚«DÖ•Ò•=ÓñšZqØKW,ì%*Ä>‡ñ?h[ÕVˆ‰»}è”ɵ1ÀÊä¢r•iCåjâä ¼ÀJ“‹ÊUV[ãö(ü˜+ ±1•Ë{Øõ5Ôu‘ûÅ€•ˆ©\6)½ÈFAx®ÀÊS¹jóg+§z‚Öb•︥ö†>D ÇôàC¸G©¦{C~ü N.OÄ*ƒÜøMT“½Ôäîh­Ušü|(má2QW)­ÈWö7ç,L¯Fíªž;äàgR¬‰•|Mí²P¨çTÔ¹e®Œ+€õÀGíOózb¿ƒy;Ô“2o[¬Æ+üj`%_âæiaêH]ü ˆ•ˆ)^m”–Òå.ø“˜×„«w~OÍó«Ü’¿eÊÁÂìê »zeÌ.^1Væu¬d1E³ç±G¿©Ä-ÓÕÄJÄ »z[Ó”@~ZndXq5¥«Û©e‹AHË Bˆ•,¦tùbž†ÜFª1="€‹vÙ~=K¦F¸a='Xˆp;Ã.O.S®™B¬„t*×½ì6Ô»ÍÖ¹>¬XLå{î‘oI‡1&,Œñ rMÛæövÉ*=Ìj.Ä*³zP¹¼e¿EbzšX‰˜Ê5ëëíQ2[a @¬DLåšÃV¶&gÀ„ÓÐVƘÊ5÷´•m«ùU­pu"X!¦ø¬”¼BŽénÀ‡¬0*ÈJ󵯍ƒõ/Vä@\¼™m¥«†U‚XEº¥kÙNÄ£6UºÂaÁ‚t J×ÞŠûr¢pp5•‹XÅÕ̦ÏkÛÑû¤Æƒg‚…iÍlú¼=˲ª÷Zå²H¬d1¥Ëÿ,‹Ød)Tk‚‹)]»OÛ}ª½gjkb•YÍlú¼×´­X–O÷xÀ¬'ü†¾ÇV÷æ“Òõ|¸tÇ´.É_ôd qváW¬4»&ÁÅ[€ca|PëßþôàC*m§Éµx~§šËÖÊâÏX™×›ÄžfÐõ}[Ù$X ^ag[õöãa/°Ê ¯L°`¥%/É«p¿‚Õ¦ØM”ìþªrµF«üÙ+¾®$6Ñ5åScÖÈ ¬äëFâšZj—©ñ 1°1¿§<ÒœëÖ áàêÀ °âê0Ƴ¥Y.·„Ÿ÷0ÄÀJ#ì*ÅØé·óªƒÅ>‚‹‰óœ&¹ê©@çä"V²˜ÒUÊòˆM\CL¬B¼)]Ås‡»ZY×F"1°q&q7­oj+–6‚«•ˆ ‰Wñ=®\\ž&ÓémI-þ|“zcnX!¦rÙ6wŽºå™Å¬S¹j·ïp^Ž«cx•ƘÊU‡??Å»ÍÆ‹ó€•ˆ©\{éÇåW\ÍÉE°âjb}yÙ¬Nyˆ6JÀ‡<Î. £fšrïÆt£~6¹'JWó6§·Çƒ\É ¬0ÈñÅ&ªýp¹3lOŒº¾ƒ¾æÕ¼à¢é c§\¬øšÚe1ذeU]gc`%_svõìîºÑ,¦h¬XLW÷2«ß䈳D6`%‹©]¦{ÓBsõMÖ9¯ V,¦võµÓº>Pz ¦\¬3ê~§q½A:vñc$X!fÔ5¼å®òÓÓÄ*cÌtú2FžµÈKÎX°˜éôeøóôYNä:ò{šöEÌö>dîÛVf¥k®eR¯Ÿü0Ÿ>€bJ×Ü{ÙÞD 4Y=°Ò ÓÕËŤÈLß `Áb&Ù^Ó»_É2Ë6V±˜éôeõ>rÞçùq æ‡L¬DLéZË·"úºŽa V\]vµ¾QÚòð!3þ|H ƒ¼½]ÚûJV¸!à­jÀ 7éô¦µ¥–ÒÄAîl0°Ò 3êòc³=’ü=…cX‚•A¦t¹æ•=.ý¡?ˆ;/7øùN¤3¾l› ùÏa¨2Æ”.b¥1†tyÝ<ÿtâVÆŸDÀ*cÌtúš:fîM+Ĉº¼…‹목7W1,Ìj¦Ó×\û°•UV®A^`•YÍ[¯š-,ßýÖ¬çÓbÞô°bñ ñœcµûoåm[ÀJO¯ÝgVŸW¯¼8X‰˜¿Ú_fß¹$ç/g]àC.~ÌÛ+™›º"·˜¿דœ×%ï\×mn¦¿d‚…éÕ¨]¶¦.Û¨ËëbVåFí*þ-Ö¢[¦ÀŠÅÔ®2}fªu›í VYŸx=i LÚ©÷ßeâivuή¯àC¼G 1­¯mËíéÛ¢\,¬-7[W纬çŸÄLò`…˜âåílõ†Uö+ ò"ñ*u_[Ž,¦þ¬X̰«zÉþºdV,æçD¬b1Óé}”ú—a:sn+Sºš·:M·q:¸šÚE°àj¦ÓWùùê)#JW Ä ÒÅtúÚæë–#uk†ÖÄ*bÍtz„¤Ïô>¼Qˆv+SpíSL…©±@Ça×ø°"sZ÷ìÈÏŠu& °2È”.‹´½ @ýYû°Ò÷Dé²Õjå%È,‹ X‰˜ÒÕg߯WiÕ™Ó‹`áCaŒ×,k¨Ù{yü«XÌ|új?¹®¦¦Þt¦h¬DLé²ÍfîS~¹±)€WSºÆHkËoÖE Xøœx]Ǭi®®îŸ‚V«H×?Úß;ÎEÞL0Ÿþ|¸u§‚Ìä•raLüÙ+¾Ä{Ÿ qZF{ÄJÓšß„_}OïÑ$†Öƒ[Æïàƒ¯ù%Oäo¨ ¬ÂpÀ*&3¡þUò™Ò­˜ùs™âÀ—<ƒÅÓ+Ö—xñÕYB°’ÅÔ®•LùçíBå`1Wd‚‹©]Ë#‰.§”uv) `…˜Úµ†y NußÖY¸À 1O»Ö-컮 Ìþ XiŒ¹a\Ëo;»ƒ„ãb%bJ—ŸÝ,[ÞdWóC&Xq5£.¬t•K­ØÁâÀ ¬d1£.¡ËÖhuûÔY›À‚ÅL§¯{öÕ¶Ú¯3Ó:`‹Ùž¾¥ä‡¡r¦u¸v`ÅâBââoX_^9X<É ¬dq àêáÐP×Å…+ÆðáºÐd£ž«’|½ù³V|ÝIlJ?Ö–Åš—›¬‹½„¢ÈÒÕ‚ÁÀJƒ éj¹Ô\‡.]¬ `ÅâE¬­ª¯¾«âæœýéÀ‡¨«ÒdÓAï·!›<ø³Lf>}Ë«,Ûmªû§Î[‘Vˆ©]^c2Ó­Îõpæµ`…˜Úe[ëÔ–üRMgÊs+Äãbû’f³Süž˜°Ê÷Ä|úVÆô”iuEfÍDÀJÄ”®²lZ&µ-[íXe«Ê|úVsžk6µp³ó&€… #óéýUå6[Ûi×0ÆÄJ/×iK›ú6OenÀJÄTújÂÞ`û¾"¶§R•‚ÉÃv¹Yn×™aÀσ<Øž¾Uoü¹ê9‹åàkF]Ä ¾ìÖ¼~iu¹sy(‚‹)]^BÝÛV“~^¿úçVˆ)]­ÛÌ,—‡®f I¬äjJW[½¤UWÞª°b1Õ§yƒƒŒàçé{BÇ®ðá^”³«»ìéyƒ=È5ÁÏ ã`>}ë^éQoÇFbF¸+ěĶ2¸zÖÅäò€ÆÁ|úf‘ã,zfWg§Ÿ,f>}óc²Þt,f¡YÀJSFY¶˜Ï¢.ÝÀ‡C~òð‹«u»×8øš¢I°âk©þ¸Nmhú÷}7á{˜ü|XþŒaÍUí# 3ÀŠÉxŽe‘z.À·€•¦ã.oUëíŒî`1ç&ÁŠÅÔ®™ýÈ[íËÖÙ!$`%‹9­=z)]m$ÕÙ^$`bÞ#[ˆÚz©r:,›h¬DLí² µØÆO=fc…[ÀJÄ\çêsë#‡›œ&WaØ5÷Xk©}¤ú “XÉb†]¶¯7Ñ•Îí¬O `Åb†]ËÛ¬ö©®OL<XÉb*×ö-êUŒõ)¬XLåZ«zgjusÎB³€•,æÄô“›<’¼q+<ìú>œWqvYd\÷Iu6¶`Á×á¼j—²^ݪŹ¢ËóøpiF ñž³É ‹59¬˜ˆgób±$3ú!X!†võ”lyOrۿΕVˆ‰óX¥½K•j‘XåƒbR|O¶ ê‘>¨ŠüˆðázaÐäf1Û’‹ë•J+¾ž$ž³Îq[ÏÄ“Ä+Ä‹ÄÛßWVÛÀt¦á¬4È»ìNËsyZ³‚2€‹Ù˜­›ìõ:/e5‹ù9«XÌ„›i)¦!Ÿ—³‚2€‹ ‰·íÖ­+Áç “X!¦tÙ(Y,uyÁààj„+¹šÒå6z—ã‡v+wOo.{ë{~ æwL°BLå*«®2‡üS¸ˆ•\Må*þìî|ë­r°ÈU‚Xå`‘ùôæLs×õ”ÿÓÕ¼~ `á`‘ùôÝÃ&Û­«…1< XÅbæÓwÓžÜÿ´aˆy°1•˧G^òÁàf ®f>}¯®Ý½¨—13¸XÉb*—?á9R²Åô5ÁŠÅ\ÙZ©vô‘zˆ¬;κÀ‡;hNëæ]ò’¯&xóÀŠÉ”®æÓc-õª/Ä·ÄJƒLéêÞfµo})Ö+Sº,B­s©­,+rVkæÓ÷îÁq¹½ vXžøA,,O̧÷Ó„^ÓíÑÌOb&°BLé3Y$¡žg&ý°BLé2ßµt;¼9Œ1=M¬2ƼOé¶Ùn¶gþ¦‡ÝÓ@f×øÓÁA¶%vÏë¹ÑÁ׌ºV|ÍàØœÕRR“ÙêÀ“ïÙ,OãöÉç(ç0»€•F™Ú5–ùò©À`‡V|Míš%ÛG¢G¸L° `…˜Ú5-(÷ç}TWÓ`bW3ŸÞæä°%F~p3°`1óéûÜ»ŒqÛ}‡C‚bj×Ê^+¯vÜ|M$`%W3ìZÅB§¥ö†¬~ X‰˜ÆÕK©y\~õÁÕ”k‚WS@ÖòÓ_9‰îu¢ðs+ÄŒº–Ç$]~ œt«D]̧·µy ¾_dU¢.žà°uñά{¯ÆÙõCë‰súðáò›¾ö”©¬7‡LÑ `a™Poá©gÏ$õCf RÀ*ßêí'[|,¿Î3ØÛ(`%bH×HÞË¿Éo fÔ°âêJâÖòÐïX!n$îsõQÅ‹óQ‚ÁÀJ®î$^¶°í-‡{ŒRX±xxïŸ,æÍUÀJCº,|kÍ"™ñmÀJÄ‹ÄÍöêýÖµøàj2ÁŠ«7‰çª³ÞšÄš¾&X f:½-í^6"‡ ,~ XÅÕL§þIó¼Âžb$1±ÊºÈo·º:^½|ØÄl$v=€™üž<Ÿ£z'š¼ø«•L¦tù´¥wõ$•Y¸+SºJõ®ü´Æ X‰8¸Ú·ÞEU‚Ÿ8C‚æÓ›ì›Ðï$²5VȬd1¥Ë;”­Þ"¿n NXéC¦tÕRfªò[Œƒ9tü,]“=4=®¾$X´˜ZM¬`ñd:½ùÎó–åcEöÍ X‰˜AWµé±‹Zø=øÀhÀJÄ ºª¿•Ô¤ÁÁ+sfÖí_"j ¿‹õL8¦Ä:Lë=ÇhrÎϘñgÿ‚•i½šíKø~í÷íÓd>ýøß@“_E+‹w›¯+èŸVej—l¦|êCԃϧ¬D,®6HMíO?Z'`bæÓÛŸÔr™·Ðésvñ2&€…ÙÅ|úñJ,Íê;ƒ¥u+YLíjkμ/ÕÛâ`0°1µ«gáäâÜÁ¤ÔV\ͨ«×œ×P¸#ð+Y̨«Û³:S?ós"V"fÔÕg+¶±×gu`Xq5£®¾¦°«+2óV²˜Êå¯zR[Y¾ÚNX‰˜Êåç‘me1ïx°.&`bfÓWz|Nc†] cÌlz ÖrÙ×,¸1™`…˜ÊeÁߘS¿b&[+ÄT.Ó±n_öù‹8Œ1„XiŒ¾¼žLX`¢®Â¨ë;øPˆÈÙå¹BMoÞ9ÂV•`Å×”®9=•D. ˜) 2À 1¥k®×QϺX°Ò SºæÞ975#u0§=`%bJ—?ޱôUb†S‚W³=ýXÃff^ê›ßƒ©°ü|(0ÙžÞ4°´´ÞŸ„r(@É$V8˜L¦7 ´}ýRóºZ8Ý#V"¦tyÇÑ5‡xÔÕÂi±1ƒ®]†·ï¹¸ë0ÆüžVƘA×®^a2χF‡F9ÆÄJS¹|¥KK~ `°uD+C¹fríé·-ßá;Æì `å;^$ε¹Ñò`]]À*ÊÅ hS¢i³ wOë"»Ó?€[óF“›×ÞŠ·¾nüÙ ¾f2ýL¯TGy•XaŒU|Ídú™lb¦-ÈN&ï°b1¤k¾jÊ’ïÍyLÀÂ÷Ä hÃZdÐeð4»u=€‡ÁäZüõ[u™à•jÀ*ÚÅ3Û/¯eaùïôÃYW›4ù+ø`r§É~{5ä!“wŒ¬Œ2Å+ï:ü~A&æE°BŒ°ËbòÞ½ï–8Èܪ¬2ÈL§·ÈØëˆªÚ™d2`Áb¦Ó[àdqSMò:xU´‹éôö%n`Ô#§™‚¯´‹éôu¦SV£ŸÉ6ñ¬¸šëSmÉ6M B¢ ¬ó;®¤Ž?oü ³šÛ§€•fõ ñð~=¥?4áå*A¬D̰«zÝ|¹ î§«Y$ÀŠ«©\þbTÚê.¦‡Ï˜XÉb*W3µõ,K•˜s‹X…˜Ùô¶ÂZó´ºf€W3›Þ>:º?è¤YÌdÅ€•,¦rµmbzg³JO2¬XLåêiì4«¸}ê¼{ XÉb*WÏs¾òi4∕ˆ©\½yƒ¦)G !ê"Xq5'f_©ô¡Ç™ƒA×wð!I›²ý™2y•àíS+&Sºú.63Õ¬Œf5±Ò ÓbߥÝÔi=¨™Ä*ÄÌ ³+Í×E¼¸Uèñ>ár}µ–ù§i±4È%üì_°0È̦U´.ÖÍèl€bj×𺩲κwdÎ.b¥A¦ve›Í?õKñÄÀJÄÔ®™W];«5Á“WŒ¬¸šQ×¬ÉæÇ¥ÈõPíÅ…‘XÉbÎj`Fïb¸7ÂY±1¥Ëv­7µjs„ƒb%bJ×\¥ù»†òs}"Xc&Óû’ZÓí1ŃÅ\ÛˆU,f2ý|U,5Îì°1•˾‹Ùм.¥'Xq5•kµzQï»ÿ¬d1gæòdÖŠ,퇃ŸÅ³®ïàCQd~YºfüÙ¿`Å×”®l¤ÖAÂV•`…˜ÒµKNóÏû'Ê Ó`b¥Aæ6w×ö!fo¨Æ I©àÃÌ ³Ë•ïÚ‚êæ:A°0­y†»†·‹®M÷ؘ$`_3Ÿ~yŽå[NJeÖO+Sº¦7¿JU>µf»Œ>dæÓ¯9“mk.=V?]̈́րU>dæÓ›ÔòªÔ‰ƒ§•ˆ)]uZ q;<¸š&¬¸šÒe±âëwËÄ”‚â°& íÎA*ÎéÀ‡:y†]~€b" ^MLÞ¸¬2Èl¡¹Öz}‹Eöu`Xð5óé×NyÚ>7‰³ßqÀJSºvµM®m‚D‹sRX±˜Òµ-z)õÒÜõ Öœ™Ä*bÍæôËoW^›U¬ƒÅ bÍf¥k{^zº<r˜ÕaŒ•,†tÙüx5-ªÅ,n `ÅâIbVôí„°B¼HÜw«]-uŸL XÉ՛Ķš×ºÔ-rÄÀ*Ä̦·¼Ø.÷vxsH¤« \Mõñ…»güê‡U¢cÃø>dÄsvùk þ0¼*]Œ­X.¦Óo<²ÌKuÜayUÄú/ðÊ£VysÎîôàƒ¯;Mî3/¹¯@¸O Xi^S»ò4—¾âAb`%bή’Ré{ªÅ‹9e¬|PÔ.ûGr'ËÅÔ®Vˆ©]¥Õl‹Û§Årä€U\Í|ú]ú«¶ ¬ V"Î$¶nÒ»x/>ŽÀ‚«™O¿k^ÃûØ©ÒÅ˘¤‹ùô»ZÄf«Û§xU¤‹9 Û~pÙ©¨©7‹Õ¬XL媶ÈÎYÔk/&¢¬d1•«¥nbˤý´˜mÙX±x¬mù4àa•ð”øÿiàCÈF_{Ýš/ï…úšÍœVò5¥«Ûü¹ºRˆv«Ï0NmØò†vüÑóéÀ_s}j}ú»`jJÙ ±5ÁÂôb>ýn3×ÙÔ’œPc°’¯©]Ý¢Ô–oLŸ‡Ð‰`ÅbjWÏu9x²TÀJó{ê­îZ+`1ÀŠÅÔ®>ý¶¿Ë #oUXX™Oïw8¹ßzõBN.b•P€ùôÞoèÕ]M%¦à+SºFö£v9²æPÀ*Ä̧÷F¶É­Ú3`XcæÓ{–éÈKmë¸Øœ>`%‹©\cØDE\LÞ X‰˜Ê5<gë!}&¬¸šÊ5“?’*‡ôl*°’Åüѳ*ä(<¬‹ O=€ CÙïÜú?D?k’ù+ø°"óƒš-ç>nç7‡Q^ágÿ‚•Q¦v™ÞöÚ¶zö³˜¥À qÀî\ŠÝ‹‘æNôõWð¡ˆë„m· ~{1üpöÃo™`Ád&Ôû?Í„/Š=iVù¢˜PïÇW*^VÕ1(b%bŠ×êö‡-9Ïi1?"€WS¼,Òž3«7‹W}+Y̰k§ìíÙb†]+3ì²YÙêºôøø´8œÃ+YÌÏÉ6AÍb õ ~ñ;€‹)]ÞÖÅû%Ë.>‚…—ùôÛïßl£«f¢°‰fÀ 1ýþM,mÿ—Rš¹Õ©®O;ý»c|*=þ•.ÛVÄK­4[¿•›Ÿ}½ûÓ;Öd~ËnóàëJ^`%_WWoí¢–¸Íß^–a%âFbo®Vº¼9Ÿa†¬¸º“Ø¢Ôžl,^XÉâà®å¿i¸OÓzrZ®ÝƒÉÛ"¶5ÕÙµÂìV2y8§6-ˆQwn¿'‹aµÞ¿ õ®cö¢ïÜ ?d‚ŸÕzÿ&Ô;Ö6_5MyaüíŽöX!¦tåÝ=S[ŽA~óþ+ÄüÑ%ù“™]}´nçŠiý|¸^ vylÜJ–¯‚j,HH¦v•fð}yãïð=QˆU¾§Ì¹x+¨~«7=XÜÉ °bñqõqêòÝD\Ï Vˆ'‰mË×ÿDNŠ«'y•\MéªÍ³,åɵ'ÁŠÅ”.¿QY~¹£óC&X .”®–†?ddbNk‚bJW3½-C ‚bF]ÍØ·EŸÄ™ŸÁ 1•Ë6|žN¬Æ ›_±Ê¬.œmÕÙüFJëßþôàÃÚÆiÝl²Íri¶q09óW+™LéêÞ»&wõâksV+Sº¼ígY·.T‡ÙÅiM°2»(]½ ÛaË™Ç;ð+YÌ1îÝfHW;ò¯Î ‹X%Ü«”®nòÛ¶Üäyµ0È ÁO¥tùƒ¬­Lõf0p"V²˜Ò5jùO†ƒd1}M°b1—¶Ñwózê.Æsâÿ§ǰÁäQën·ÓöÃå&U“`ÅdF]&ôeÍ¥îb&cb¥A¦tÍ´|G Ÿ9uNk‚‹ù«§·óïïÕ¼(ƒ¼0ÈßÁ‡» JˆW2ï&÷vŒ«Á‚h†õiöÔWVBVp‰UD³Q»æ°‰YÔå×âÂH¬2»µëÕä,%õ¸|O+óC^¶®æ*?¸:§&Á´n »–ÅåÄÉßÓà ¬søFë,ÊÄd‚bJ—íé— }Qǘ¡±ÒSº¶+î¸=&}Ø©’™`ÅbF]Û»}ý?egš$[n#ë=ã<üïÅÄþWð€ˆ”òÙǣJj³R—_HÐ ð`Ø[Í)Û…œI°@ ^—÷ü¨zgÇ]hÕ+‚É\ž[RÆ%Ø<0WXi`æê`®œr懩¯å›l,hÜ3ûÈ(¹øiåD¹ÀJ îÍÌ\žƒ´[ °¢q XÑ…‚ч ¹ÃëzCƒÊvkUߎSÀJkÝ)xzíTJ¢àÚ(XI0¨+g㟵åÒïM?3€•Mžì¦9Ôn¸‹[ÀJ/ ¶û´Î¬F1‹ç˜Xå–èÜš—¹þ^ÈÏ#Á¬ÿÜšu>µaÊñÓ ?`á~ä®ì·Kÿ@°‚u¬¦Æ¥x6Éíáù`ÖˆUX0ëQ)¸åñŸFcŠY/ÊV1ëÑ(xfóSåÂÍÝ;%¬hLê*ÆF^Â$jÜ2å+iL­¹V Mäà|àãøð¼G_ ú[ƾŽÖ:þì_°²Öä®ZFÏ£‹Y «ñV%VZëMÁ},ï%kL»&XÐx†¥ž~±ÊUù’° [3;ÂÓ´çh—,–ƒ`ÞÈÄJ‚É>Ÿ! 볞•fý'øpMð$7»WëÔ¿#/þl‚¶žä.Ooðª@Y0íš`EpÐxÖµë÷I“`E0Ý®¶f^SÎyæ;}ÀJÖE·«çÕG’ç2¯Í=&Xј$ÐËjï°Yô~æ†Yÿ >80<ɽ§ìT*w e‚îZä®>}úÊ­Öã ˜»L°"8h¼½gV|«\‹n×(yå™téh¬hL·kÔjáµìv jL¬¤1©ËGtíšÅìˆ5H ÄJ‚I]£Û¡(UÌø‰XI0©k4ÿV*îq¸%Vö˜Ô5¼?—:\ªÄJÓëšÉÏ„Zá¶&ùƒXI0½®ÙÌ.‹žˆ²‚d€…¥Þd®i×ËÈú×Üp/¬&sÍwµ©Ú&~1C3`•¥Þd®ååµziÝfšS+“¹Vf!ùŒ=xdLb%iæ‘›Ó6~݈?s#;â|pœxW_>ŠM~sâC}+kM겟1êºö9‹ °"˜ݪbܶ©‹Xi“I]û=­SΡÛÁÝ#XјԵ[©s©³‚w"û¬qN)‘»vo½nݵ¦qûìZ»dÆ›{Øyüiø•O”£ ŽÔßèÃg³ðÃÇþïsû³wí¢kýúpšy¨¼¶(—/" ú^?Fþ³é{ù›_å þ_ _FˆÕvÎWywsù¢̆y°¤ó äêsŠX´s¦``5'%[Üi{%K.” ¬&yQ²wƾå,ý¯ätV“¼)Ù­èyæ{R4ÀÊ>3µ¾x-dIS-Ý WUK’3%׺sS«¢C¾TÀJ«Íœ§bþ„Û‰¬sM °¤s¥äÙæÊºÎ<ÎÄj:ƒÃŠÙÛT³46K(XÒ™¿»ä>Fëb±®£Çï•ñ€>œ ·Ok¯å ¥7À’Ò$±2ºÝºd~­`I2I¬LsänÝß&F&!V31’XMö§Í/t¦‰¬èÌ${ï°2r–ù†ø$€½O—Ì­ª½Ì¾ÐÔóɸ \±ô|ÉŸufŸ~,ÇÎt@XRš,V—÷.RCÉÃj+ùÜ…,Ö,®í–‚ð¯Î?ûë„–”¦+ÖÚ2gVm«õóÃ_'´$š¾˜Ñ_òƒ©®7YŒXm½Icî4÷¤vÈÛü°™0ÝÞŸ†Íèn“dB¥ –È„4Öýæüf£I¡D+Íï½ÅîXÏ¿_w‚•6š)÷¥O;”Im@ýƒ~Ð’ÒôƺySïÙ€¢Òt@‰Õ”¦…voîQиé)˜eÚýúP‰B 5·9ytâ¿?œhi½Id£æÕó¥{Áÿ®w!ƒ«­7yl´Ör^ªkÂbÚ€•ؤ’ÇÆl}u9ç?äS°Â&•<6SÛ¡ûíƒäÉsE°$™?{Ö‘æOÚ­äw7ä= ® —{¾çãU9Àâ'”V”fú½EÁf¢»ªôfYIK’Ic>c<µže7†HÄJÆÍü²²½k99E´1¢%¥é-ïß½—úVÓ¸ÚÄjJ“ÅV­Þ_}“Ae`5Éd1_,‹ Å…?/z¯ZZnž+½dž¤øä¼Y°šÒ¤±µ¦ÅkjcûÍO“«I¦;f^ÎÖkò~_'´²ÜLÅ/f¯ößOïNM4C,¢%Ñä1»Þ¾ºÞ41b¥õfRj1«Émßõ~rŠ:^øЇêži¯ù6ðê´Þ¼ïˆ–Ö6êÍÌFñpütYv|¥|@Þ™p´ªw®¨ûö®wК/Þ-i=(ºz‡ëË[æÁÊ«YÙ¤ä1VjmñÏcæë„–”ëíC]ÚíÁIô¦h %ÑಚÓjsª¥Ü!¯-`¥õ‰’³“Ä%‡ð_É?ß¿^'°&:mŒ0Xèût´žÈЇ£Õ¨u7»Ù·A §P>¬8ÐÊV3?ßâ$ NKS·"¥× ­x#h½½Ï’šÛ²KØ,`¥)úÕ(ÐSrÄ,€ôë„–”&•Ÿ7Vå7²B%VSšTVÆk߯`”ž” ´¤4©¬¬äO/ê{Q© ¬¦4™Ì½›:“æŸü|[~ÀŸ0S¿zÄ|û~:Y\o¢•CÍ ßZ»·A\â“ûÏš½Nhe«g¡h#Áš†úJˆŒXi«'™¬NÏ+Ú>/¿N`m«ÉdÍbÓÑns²ëÍ耖¶šTÖÊ;ì콟´&‹¬iM*kæVõ¾µg²Ÿ/̯X=zš“õ»z¢GÅú•MµèôM ú^óî ZÚk’YÛÆFlÁô(šlF´"𵇵{ÐøÓ¸®(ÑÖB[ÖôaÁÉ£~Ù®ÞôwŒFN!ZÒšdÖí﹂ödáÜj‚% gOµ³aDŒÂ' _ þ'úðŽL6ëceoð¡/8o¢¥'›õé-ÁÅç?¹ ¯X[p²Ùȹ孾ÿóÐ’Ö¤ã„aîl‘¯kö² håºf*¿!Í‹þá#áºæÃ}ÀJ×5sùíTÎä_?è× ­(Ít£Á<ÖºL&;Y …`ÉÊX‚YgÉýÝÁY½¸6ƒÌ¿Ñ§‡'²Ù4§ruæÏKÈë„V,œIýuŽ2ÚõûÉ!ååC´$šlæ£剣? ;¯XÛl²ÙJÍnÜ/>x„÷¢%­ÉfËleõ/ÿÙa; %Ñd³eËôNUê‚ó\¬-8ÙÌ€>ÑI73¾ÿ´¤5éÌÁ|xñ‰òçãëëV´ÎLð¯æX™ƒsÉŸ>‰æ‚¬‰f ¹ [ÖŸë˜>Àšh²ÙnË ÝK ¯ÂD {Ùzºî¹¼DìCìB´$lÖ<"˜9ë”B§2 %Ñ¢ ÛV§~ü¸W¯ZÀ­÷ÅNw·ff÷üôá[{¥Öcî2³nf¼îZÒzQ´÷þ½Îk;‰î ´$lÖÞuNëÒgït®á °t®™èßrõ<‹¤›óEZÑšÏ!-›G;ëƒÜœáœ= fÜeº½Äü¯Ö™ £-iM ÷ªÉV/O§½n” °¶×d3Ÿ<Ð~*c%Ñ“¢ÖD“ÍŠÑSÝwö š}¾X=(º¾³hd/%3& ¥½æšY\ÞÇH¿ þD¤ïfèÓÉ v/ÞcRýÀWœ€UBÍÌ„ÿVüdÎ-KÞ” ¬$™ ÿÍÇÅ´vëwØêd-¹™}õý}Õë¢ø´$š€EL>®XNRÈ©èC½u­»¿ƒm«{?û«m5¹¬Ú^/>?DÑK„R‚Ò«”úÅ燜Ân­ Sþ›°¯ƒì£d~u hIô¤h[µnüÍ‹‹hI4=3ÿ,豋.šžÑ’hrBó’ì¤×TûHçß³õ7úô´K6ëæI·¡?‘fVx´¢6óþÍ<»Ý¸bç?IS,.æýÛžö¿Ô"k]¸ÙDKZ3^ë#•Pôúä2ñÿ}z-¤[ØíÖÛùVcwP›•˜-©M>Þ#¦©Íõ~ˆøuB+WSÿÛxOîùl—rp·ˆ•î¦þ7/×}?ˆ’éÖ«I&› 3Òµ/ vÈÖ :«I¦cæ“Ö¼©—¼Ñ5h ´²ÑËÆ³Õ¬æá0(`%¥ùìÕ†™ùù^#yGQæßèSª¹lxáqmZòÿOæë–h”ÙÿÍ{O¾uQEÓÿ'XM×l–¼Þɬªh^¸k¢Ief¢ËßÒeefH@+,Êü‹,vI·§ô“h²(Ñ’hrÙ2R-Km\ð³f¯ZM2[Åb—"ö@ùI†|ÀÚ^ÓR–¿†ô&7È®ÙßèÓÇ"lïC¹åŽ¡ÿóËVVœ%ÍÈÐNˆØö'SíuK+ÞƒÖsyóOy³g03€5Ѥ3ÿ¼úåe÷$:¬7ÀšhÍíÏ ùO^!kЧ´DRé.Þ  ë'›Y-Ùùl×–zIòf3)€µ'Ÿ™Ï3Jÿ"À~!Ñ’Öä³=‡=Én…õXÓšÞ™·Ìcë ÎÓE°$š9_Þc6蠟 …ÐÊ‚³EOÕ?šéù:ÀšÖ…¢Í©\Y,›ûI±xÀšèJÑ½Ž¹Å:®Ÿ‹× ¬‰n½ìh^»pö:¬8ÐÒ^Ã;ëÙìf&¶çý‰›^'´° g¯Õî]Ÿó8½NhIô¤è>{+rÝÅ:+…>¬èÆE5í[àtòR2e-) 23î/swujÐf:LÀJJ³ —j7ÀOK?Ié°àD+JÓ»ê¥ÍÚRgŸ<Ò‰Pó}ÊãÙ*ctg$Yí¸ä@Kj“ÌŠ—©ÿw {½‚``µ½&—y qš—YÉa³€Õ$s¹«?ÌQÀú,8ëº×¾¾å·Y6 `Mt@—½ÊZzÈÅ:€ô)‡dV=á÷úøto‘Á‰Vî-f ôêÏOSíñã\½NhE4{øw»m-Tüâ5œÅý-‰¦gæý•׺´^;Ù×›`ÉÎX`WÞJªªžYæ<øÖD“Ì,TË« UëÌŠØÖD“ÍÚÌ5´}{Üë 6ÐÒ^“ÎÚ2Ÿ.5=#³wEkZ“Κç•pLñ“h2)Ášhzf= ï`©kMO`M4ÙÌ\øQÒÖ{N hi¯w{C`uœ¡7ÞÍÐ'/…§«9œt/%¨ ´â¥°µ·ß\[’³R˜È°’¯À>æÝb‡lÄï^?Ýš»rÁÿDŸò@É)>àãC šx°€%g%@ż»¦7úñr^'´bâLKéÃþNS*ùãÛ½NhÉÌHgcøÀS9#&áz,ñ ›ñîŽ]ÒŸ¤ {*´Â'ÌÇ7÷¢µÔ²®5ù›`MkRÙ0蜷ïs'­¹ÙDKZÓ¾•%{r†¼= OI[)ÈžÉkVd'¥Í û/ô©(Š»=Ì…ÿϨ6é`3ó* ¥ƒM6Ó»Ëß²O»MN!ZÙm¦¦›[ç­èÄÑ·?‰ ¯X²q¦¦iÐ=o_ÞO7O6Ñ’ÖÜëéðrÖµæ!XÓšAÓsùØ9´gjúúôxVÜ.€Ñôо”øËÑÒŠÓM™Ë[õ^ºŽVœÅ¬­8ݯšõ¯M1n"ZÒš{y#ì&wÇÌ̳ `Mkú)Ë»/½¹„G;¢­™š>ÖòÞz±^Έ–D“Î|”loE÷Ø–' %Ñ<\þÎØæå­ñ´×\o‚¥½fjúØ}Ö’¿ˆ¯YÇÐ’ÖtTöšiï[ÕÈAt ´$1×ô¡!»è?X|ÀÚ‚Š®ÅŸ9åÞá hIëIÑÞËôÖFõ¤õ¦d€5­EOŸr›þsÒzR6Ð’Ö›¢W·B@vØk€%­™œ>sží=ÌMÖš+N´¢5›ÔÏ\üSð¥Ýÿj]Øñ*€5­ E·ww}ÕÌ 0°&ºmúXè„úä!M|Þ{@ŸFµg1~Cñ´Ù#ür ¥Í&•TS+z³–7#½NhI4é¬Ô¶JÒ“¥ ë/ZM:ó Š\åV¨…iìÙYøÝ#õ’ñÿlN¼ˆ? O¹í$Ÿ¸¦^ÑUXúÐÊŠ¯ zy=ÇP¯Í¼á–VœŸ§QÌ%§,Î `M4ùÌì¤ÏÑÕˆ¯0©2€5Ñ´ÒZëÇùÅÎØ§þ}* j·ºÛÖs– çw´dgä³j+f¦Gá ZM>«kyʈ¼Ù9HXÛlòY3lÞ—£yMF"XM÷Ì«[wù¤¢j d--8Hk­¯Ñ“|e3?ý}¢RÚYóNé‹§R^­¨Íüt‹ØÌ×ø9›Êf— `i³™B;»ýæ:¿ÈW`k@KZWж7w½ª+²!Ñ’hºg½Ùí³äg¥Ék N3ë+ÏõEãôÂÀ–´&uèriUawµÖ´&b>å¾}Å8iMN!ZÒšt6jÛÍ–D­ù!!€5­m‹!òøâQƒI~-h]CÔ6FïH¢³P¦= O‰õä”aSÚMMP/5h °²â5´ñ¿mÚ¯èGµ+Õþ}R;Ú» øevÆIm¾å¬©M>³°-­tëHq24m¢%C#ŸÍÚól—i³­Ùu+€5­ÉgîJ·ù…£Â/Ù-iM>›>ʹ£7Ü£hº9DK¢if+õ‘·î,ð£lk N>[æÏîÕåìêL¬’8P™ >WÏÛÔª•Ù@-|T­™ÎÙZmÔÜe+‹„D´²ÕüÎ6·W2|Q÷^™VÐ’h:g=|1ÑʘùÀ’•±UýÜÕ%Nõ¶°Tk¢IfÛ]œ–eç¬2Á0 ¥'™íi–2åš—Òƒd€5­É„{×Ò ú0=]šlUÿ€>%à‚R–WV7/ì–W¤ÐÒŠÑæàÖv9š§_” °´âlV¿RmæõÈ# ›J°&:Sôhž)û¤•½¼ZYpæÆ»[—×uÒIt§h %Ñ …•“…N;ÉÙµàíì}2qnv.Ý´é&ÎÃÐ’Ú¢«Å©]žÉ\˜•Àš Šî%÷*wÉ)l^ÀšèIÑ>¶cècL+ç1´´àpΖ¿»¥¦ÈV>å´$štæ¸=ÕC=(hE4“ãWñÁ]nœRØÐ"€¥½frü*c‹"t '¥¬‰&»vg–ó ‡¼°&štf‘L]ɬO76»Õ? OtÏpUÿ}M':Ùõ&Z²3Ò™qz©ë2§ñ´âôÖVœtfÿdÿ‘ ›Ã°&štV=wlß¾•¼Ù@K N:«¿¼cUkž.‚5­Iguû›”œèWØA$€%ÑÌ_­ø¸J}øwåV@+ ÎùÕ,pò9ÚºhÒÑ’hÒY¥·.÷ü*ì¥ÀÚ‚“RÚl¥UýS2ÓXÍÛ§í¼ÇÂýñĤ i´èSÂ5ÝÕSóyr:“²î% ¥Í&us¤w×GÿUŽƒhI4é¬û¯u9§Í&§¬m6é¬o8©ß+¬7ÀšhÒYŸþ»õï¹ü,À’h戬ákøE~|e¥Q@+{ͪ€5¼‰í-%ô 5KdXÓštæO̩Ճ€FR!ZÒº°‘ÂØ¿$þlvzg£Oiæá‡w/®ryneYÀú$›6î39G»û¼”°ÛKïÃ, XèبaË¢Ã~¬‰&Ÿy5C]Ekwì¢Égk¢ÉgF ¶][.œ¬|4 håUœeköéÛå6k•9¼­ˆfY€E.Ù,åóõDZð 4ÀÒ‚³,`Íe›•.ÙD'>£™,ñYxñéÆý‹f5uàËæú”ÙÏÓµrõÚ0Ý[àG¾€V¸”u~×·2Ûe¿NvÆWZ¢%;c´é¶²¦èI¢ÃëÑ’è°àËH©^jÈOsæy¬™8élí߱Βh)ÁšhÒÙöŽkÊ%è5¼¨--8éÌíÓ"™ÄÙ1&€%­Y°¶·ïmU¾ºÂãÁšhÒÙ^ÍNçg8޶à<\D+ Î3”w â|Òš$N°¦5¢Íí¢ÿ™Â*i͜逖´nÝÇüÏ\7Mt¦h %Ñ¢gj©ÊXìÀÒÕÅ×CçÜk×s‘&ª±Ч«kRíUºÝ»rܵÃXS{Qô¶è3_>XD/ŠX :ÛÙÇ w½wcx håÂfY€Wr/onª‹¦ÚDK¢3EáݳÔ¬0ÀÒ‚³,`çíåY;éZoÊZÒštVÌŸóÖÛôä!Qm¢%Ѥ³Ò| Ê¥Îõ´à’ÖœtVfÚ­ ýCëEZÒÎÙ®Þ…¸|ñ²@?> %Ñ“àb~b«¿ï)OLº©ñ€>%ö“Sj-»÷[ätº»*9ÐÊݵ‚hoRªì“ÒM `ÉY`ÃKGÛ…?å"Bj±â¢O5Ÿ´q»À“OX–W<þr •gY€ÏL\ÿS©¬ø &°¶â䳺íÖíò¾šÂX"–ìæ#‰ö- ÷dâôˆVN6Ëv³=J“»ÆT>-´´×ä3Ÿ=Õ~ƒ*{ÍÔüÖöšÞ™9•æ_]BˆÓœ8ÁšhzgÝßÚ-†8-8íŒhiÁIg>jgq ¸·b@°¢ucÛz£à=úÊ—xñ¤57›hAëÆ¶õ»ïäŸÅe6kÁ=#Z]x”âCŠÄ¤±*à}ª]!§ oc\/ãÕN›ÍN°¶ÙAt®m6¹ö¾²od+LÚX°ÍÍH틲²:ƒl &mÌÂÝÞÑ©oäõ?n6£Í¿Ñ§|TÞ]ÃûCt½YNe{¢€–Ô&ŸÕr^òXÑšƒ¬m6ùlæ¶vù4#”´f a@+Z³.`Ooêz«¤8iÍ[“`IkÖìÙ‡³’ðCv@KZÓ;›Óûß\š4œ´æù XÓšî‰Ï¥/=¼ïHDKZ“ΖÅæXÊÏÃ-Ñ@+ë¶q´[ôrj(Î'X"ñ°]Ëg,³Jö‰Î2éìoô‰Îhâë=üª«¯â™ŸÐXS›tæÓÏ뀴ÙqÑ€–6›tæ­)ÖmÔ©©_ °¤5ëö¶ËÞŸýäƒÍëƒ`é`³.`ïÖ|“œ%ÒÂcÑÊÁf]ÀöX1·-_]ÁE"XÓšt¶×lkéë[ +´¤õé¬ÿ¿äÕ£c}Á‡výƒ–Dw‚Ëœ=£üä‰SÊ[³>¢Oõ ‹²}kÉòB¯…ì?ѧ'¬°äÍ{DèUèí×]ø--ù¦è÷ð«¢_^qÑ€Vøì7;ßÁ/ŽºåËë÷«ê?`‰Ï~³ó m!{ê?½Ú$Ñ¢ ÖDŠ~w‡¸|>5 åé"X])ÚlÖëÒä½þÍàú-í5-Ü;‡Íy{ì<ˆ®Am %Ñ¢=ͽ}jv¤çÙ"X[ðAÑ»^ô{¥ÖDOˆ.izŒ®~VEUÚ?`éîúMÎwt«»öÛÚ“™Qm¢6«d³2{KºÒ~³DþA+fÖÈf5 «-?”¶Ê'ZM63wË®ð¬Í{ùú:%3kd³ê™æ?-4­ƒl %­Éf­Û^ÝjñNfhÅÌÙ¬yïÉvVyÒš—&Ñ’h²™i±íîÑ}RúWK纑ÍüÛûû*TµnÜk¢%­ÉfmøÐ­|Þ­“Öa½Ö´&›µ=«‘‚nf-ÈZÒšlÖÓ#o5K½z)KZw²Y7S1bøâ\Ó9#Z9×læCÎÒÈê¥Y2-œ`‰Í:/€îÝfj•‚<ÿ7ø}ªg §ôõ΢Òc€žÂ/ÿE+vÖƒè=Í—žrt_ƒd€5;#ê%Ë^µÈu%ØÁÒf°fÆÂ¹è¦Û Ÿý>õ’â 2›7¸Œ‚=©Í „`MmòÙ´8uÍ)LnW6Ñ’¡q³—·áÿæx…ý"ZM>[Ù.uêcþÌ{ÀÚ‚“Ï–É)—g Së/žM‚5Ñä³åp×'EQ[ðFÙ@K N>ó"©•/wîé °tL®µ-Fn·K÷dá<]D+׿¤{¶sß| h î Ö´f°ij1wO×zÒΈ–´f°¹{õ×|]kk‚5­Éf{¼“BÏ6z:\43‚¥Ã5ÉfÛ;¦ÝÒQOZÓO!XÓlæVKYz‹Ò6±â-íõ¤è–íþ×Çl6>L´B)sQt/~0U_¡òÓKk{½‰­Õµä†ždö__á}Ê=®TÛ;D\­ô´â‹¿heÅW¦è½JúéÔ¦¬xk°´â t–sñÎ|Ÿv7’Öža@KZsÁsݤW5µ²Ò™`MëF´¡Yž\„ÞV‡ý>5ùiT»§Üj‘7{„XS›|æÝ»ÒÖë’ãá$ZÚlòYɵÌõ…;¼H¥DK¢Ég¹ì¡—/Ö1(`mÁ7E×it(çæW~â `Iôæ)-{°úû8ðD¥ÑæúTAÒ©¶…%Ýæàž6›‡“he³7ù¬lûÕ3qeÑ@+Wö&ŸÕwµ—<ý¤6ÞØKŽÊ&§˜«gþ>*­MÚ8Ñ’ÖÜëÚë07UÖºÓ[ XÓštV=Éã‹©Åms¯‰–´&Õ½ì{¡Ê?`MkÒYów·¬—€0Ö `M4éÌ‚—mî†ìŠ/ÁŠèžEw‹)jÑÏ5¿/´°×=Ñ;³«hŒ|ûtsMÇhI4Ù¬ùWè&wQ¬‹‡‹`mÁÉf=ùì-¹T]´p‚5ÑíôÚMŽz¢wö7ú”zÌÓåÀK×Ûð¶Í+›hi³Ig}X¬ºôÙØmÑĉnÍžHg}™[Ù/­@›â\‚?¥'žáÍ¥šÂ>¸âÞs÷w³ÿFŸü^›>·>—ô…ŸÂÍ&ZYñL>-­•¾È×ÎÑ’hòÙè5Ùå¸+xHK›ÉgcµZ›žè÷©-iM>»{ƒ¡ón´fØE°¦5ÍlÚN-½Ñ[ Þ0Á•fzg³¥Ý¯ØO N3#Z¡³L:›Þ1à6\î¤5ÙŒ`MkÒÙôÏUYÏђִѹ½»òjžî®L:û}ʸ¦Ú+Ûfý”°K§+“ƉVNW!™“SÝXÔÓˆ”`étÒÙês¦Ùå—…žy¼ˆ–´&y3©9Úå‡D3É0 %Ñ4Òµ}lK“[ößžýèS)íl§ÔGMjS¦ºifk›M>ó>VÞ¡[_qÒ8ÑÒŠ“Ïvë3ý›ÓbxO°Äg%,xŸžð]TÑ;( °&šþð^£¯ªOÙ‰ž<Ñ •²* ïý™w&jB×À’ÖÌ'*æÐ.O>–Ҋdzô© |V|d¨¦É+Îܳ€VVœeÅI«r6R£wÀÚŠWж€½åË`‰ƒè¶ `Mt£h¯+Þr6kã­ÀšèNÑÆ ¹ ùcrÏ“²–ötfŽ]¹×Ç“R4Ñ’èIÑÕ«å”ÒÆ ;€µ_=†á«î3‰7 %­7E¯ä¿lf…fF°¤5ËÌ›õ—¤ûà ‰V´fY@)¶{ï²èJÑ@K¢Éf¥[¼Þ«lf…fF°¶àd³2zßzáK(@ `M4ÙÌŸòÇèòV¯Am ¥'›U'Ã}Ù­“ÖXÓšlV-b4O^¾¹j °&šlVýFÖ³‡;s+ZZpòQµEÈENOA@C°ù€>›4ñ:Þã3Õ÷áÖhfK+κ€Rwš{nù[@¯aÑ€VVœu¥•Ôg¿õ9ˆf–a@K¢IgÞGwl9þhfF°¶àÜë6|Ša—Ëz#‰-iM:k›×~Ù­“ÖôRÖ´kfwnã@¥§ÓÕQþ€>U†‘ÏzòÁD·£§çñ"ZZñÀ{æ¼ôا/¨ý7ú¤6¹´çµÞã¡ÔÝ&¬í6Ý3ãÆ>Çm ßiÅe­¬ø ŸõQÖÐG‚¿ëf^'°¤õ Ÿù‘1/íçO¢ƒÒk¢ÉgÃ]¤¨îáh--8iøe¶“þx6ðxö€>u+ ‰…zÖ¿c°ôxƺó+Í“¯·:òÊ3õ, •Ç3Ö”1Ú{¨Éù•_UXÓ:,¸·aE¤Á΀–´f´9Ó2R’G?6¶Y`ít‘Îf]m½Ótg%_@+§‹uïYcÊÍ%Þ_'°´×¬ (sÔjV«æV¢â?`MtDï:*Ò[ž®Í‰2§ô)ù˜þÙœvÿwyJB /†kjóú1GÚ›‡ýÞØOT:;Õþ}R›»½Þ·"ă‡óE´r²YPÞÓh›Üd®±ŸGK'›__б‚Ïw¸Üº§“d-lòÙZÕ¼Ú[ÇÍÓ‚ó„--8ùlÙ‚­y©æ>™8/‚%_ä3Ï«éÞÑKÖš„hEk”íÃÒP“Zx·#XÓšîÙî>@þ|ß&oM‚% ga@±èÜv«è/*!l#Z±ð…póݾ—[¶ÅI4ì, %Ñ¢›ÔçÍtfW´dfƒ¢{6n”š7>°ff“¢Gó\Aù\óñ,€5Ñ+ ×¨=JŸ®®…׳ô©ú±Rö´¢a¨Å“ì(ûOô)o-qÉ·bóÖlçdh…¿hÅÐøm³Z‘s²Æ×³–v›…Þ)z¬t NZOÊZÒºR´-—·Ñ’IedŠZ!ÔwnÍÖY|ÓH –Xœ…æÕÕæe;ºÖ43¢%­ÉgÅÚ}Í™;‰&‹-‰&Ÿ•îýéô·¦j°¶à‹¢‡Ý|EËÙ4p‚5Ñ›¢÷ʽë]™ú ²|0G±ÚÑLïTh1î ©è“ÒÄ«]¹µ~ñ Iò-©M:ó´ç2.S‘þw³;ƒìV6{ðËO­ÓÖ,}‘]lœhIkÒYóöªë‹ƒÍRŒ€–Ds¯ýKôÌr)FçÓBk N:óaL­émÅ;_ÏZÒšG³ù÷ö8pÒš²‰V´fa€Q‘_ùKýúÒs °¦5é¬7óÍ“Üä!ä\°&štæßmz»åGœ©g--8éÌŒ¤ÙªÉ¹ƒ©g-‰&¼nìÔÀJÄ7XP}˜ùE¦3v… `ÉΘ®g>Nó.ðºSZð1à}ÚlÞ]Ó;±o}VÁ4N´bãlmQÍ»*eêÉâƒé¬-‰¦‰¯w·½/Â{%´dâä3 ›v[ý¢Û˜Àš‰“ÏVíÉóaUÑ,¾`M4£Í5lÅŠ¾à£Ù@K N ÷ê^O2ÑEÓ̈VDs\@ÝɳBå ùΆ‚,q ÇTŸiþ¬î,F"Z9\¬ ¨Û¢™’ä—…ÎìÊÖ´¦wæqsNù±r0a; ¥½&›íÝêhŸÚbép­–ëZJ~éÊÉ•·fk >ˆ.Þ8Ûõä§TŒ y@ŸòëÕ6Ë;¶É&^ƒÞ@K&¾(zXÔöóÅJ²3~ˆhÉÎ6EÛµ—om÷vÆ>X,ÙY èÝJÚù×Tžü”–¹Ù¢Oy¸à3óì,lkzñ}üåD++ÎÊ€–Ë,3 ù3ó X[ñJÑ}y_§ ú¤u¥l %­yºò,>vA-JèlÀ©´°f{˜#ðþ‰TRiЧ*)¯’J¶Ãù©pʼnVH…¥­ds®×P«¢;°fgä3¿j¿õl>ÙÙ¢l %; n>eÉ—'­7%,iÍÊ”=¬PEÏ 4ÀšhÒYõÙPó3©SZp&Ü´²à¬ hÕŸ%ê¥;ÞAkv `MkÒY-vÐË¥!úI4ÏÁšhÒYõô–ŸæÅ’èIÑk¢éž½§iÌ[ÂÓ^‡ZÚëAÑ>Aqèð£‡ZM6kžoñ3I4‘€–D“ÍšñB-ò(ôÆ÷«ÖöšlÖ¦EŒKo¦>˜ŒЊ֬ 𜵾z‘Ÿ4XÒš©•­Ùž-©±OçG£ÖDó‡÷äs‰ÐÕïÉWༀô©ª€›Ý‹÷©¾ešŸ6›wÑÒf“ÎefÒÎ̽õÌ5ù[@ð† –6›Ì©Ï+é%V=ø k¢éyÅçJ·’Ãf 6ÐÒf“ΦóûbbÙ`ªx@K¢Ig³e½+Ó`º]@+$β‹'æIÌo>¢%ѼtçöÍïrýɘÈÔx@ŸN× ²›Y)>À?žìdÿ…>eëCÛ»´ŸF?Ê Âq²,Ý L¤µ_í3Läà§óA>€5ÑôÏV)ÆHò´´Þƒh€%Raa@[½:5è—k_Z9Ù, hËü­Qô¬€¬iM3[{ø§ýÞ\aÅ–´&Ÿm¯Ü¯·§·“hªM´$š|¶ëNiÊÇB!yk N÷ìýî瓬¦u ´¤5Ý3¨1딓‘ƒ<ÁšÖpÏzÊÕ'é9ol¤Њ֜•Ö½tÞ‚6ù›+ªXÒš™~Ý+ór½åŽ´æŒê€–´.Ûr¦·PÑæú”X¶kŽúv T‡x· û/ô)çºsÉ×2"þâ»*¿´â©ìÞ9±ד§²Õþ}R7ˆEÍïñ¨êÛtè¹ÀÒ•ÍÊ ]sÞ[7ø5  ¥_ÝŠ]MwT‚d€5­IhÙ[Ðý£#ÆVXerd@Ïï©cMö‘ø1 €5Ñ$´’’O²4YÒСM˜ÅzQÉøB4¹”hI4W¹—/ßvZhÁÂ' üñ«äžå÷Êp¶V,|2¹²WÏcºÖ?ž®lî5Ñ’Öƒ¢Ý±[EÍè ïXÓšlVÍϨmé÷?:´¤5Ù¬öKnòK)gݰ¦5Ù¬š#¿æ-[ïä¨Ð‰V´f]€ç˜÷ù“Õ#iMOƒ`IkÖôæ35j=ß=Ña« ÖD“ͼr¥ì¥§Kì 6ÐÒ‚“ÍZ_3¹ã@gÿúÖ´&›Ùé(ïQtp‡ ÖDÓ9³CY[½=ø¤3Ó9û}*^áÁî)ù u™SÞ<ü:¡¥Í&™Uúº4¿?­8ýB‚µ_½ç*znÌdaÀú”÷LRñaùöÎz²ñưä"• º/³[ýAeòá. ?……^j:V/ºÖÁÌÖ´&Ÿõ•̱ÃWŒÑ;,8Àšè`¥k•ÙðîɉèÓÉ+¾KZI¯,cÓ³ÖÔ¦{6ÞEŸCÍ›`M4ݳáUŸãRÐð¿¢C]sk¢Ég£ùS§>›{òm: ¥ÓE¶bf+— ÿÄâaÅVXœ…v4ó].Û)( °´à, èÆ0æÈë•eñl­,8iýSt1×å‹k“>ÑÊ‚³0À\ëšÍÓT¯Í8œ`éÚda€»wjƒÍɬ…€–´n-Ñ’hÒ™Ålæ*^@žLœWÁš‰óhn‹‘Ãŧ»¡IÐúT9CFÚ>ü«éYX“•èS‚ w{—QVÕÛÌEšhe·YÐ}XŽùµº×°h@K¢Ih{zᔜã8J0€%Cce€9e¿»½ÊZCv@KZwŠÎ­î"§½ v¸ `MëAÑ^Wªú5yp²QKÞ †»Çþ"£{ ²V¼xò˜ÑðešÇIë `MkÜ]ÃÇoîrÓsÒ\ЊÖ, ¹6Ô£[8û©´bá, 0?Þ»I]¾Üœ,S{éj“ÍÖÔ&•äœtëŒq2q.9Ñ’‰“ÎJ-žå®‹TJ´$štfžô²®~ätÅX[pÒY±Ã¶æ­éÿé`‡ZÒštV–1k–û˜ ºÃ,iÍÊ œöèíÓ’CÓš&N´¢5+FíÉ-EÎP‰´@´$štV‡÷Wíj^Î`ÀÚ‚‡ßí=“&‰<¹Ãœð€>}­TÛüÛR/ùÞ'µ8ÀšÚ¤³ºì ÈùÌ 'Ÿ”&N°&štÖroûúþdgÜm¢%;#µ6¶·À×ú)D+Î+†]÷Þd¨ÈÎÏ5Á’³ÀÊ€Ñ,R5¯VtYÀ’hN =å5vÖÃ{¦³´²àìoà]·gð©o9ž§þúä§ÐÄ{n»ÿøñÒŠót¬­89Å¢To(¥OŽp¬‰f°Ùͽªõ²]Ñq¯ÖD“Îz[Ã.9Øä´›ÖD‡½v?þVvM7…`M4éìý 5õv9s„ÍZ:]¤³á½ö¥Åééþ ‡,Ý0¼T©š—¥ß¼6‰VîÖŒa×ý¸6V:ˆfÒ[@+ κÇöþÓÆW2³ 4À’™±.`Û¿#'ç¶õ `i¯YH>ü)¦4<Æ<›‹ÞÙßèSAM|zÇÍŽÉ-OvÆlñ€–ìŒt6½~dg9ÎåÄÖVœtf^K¶kàâÛ´æ~-iM:³cÞZ¿ô³=]]dR‚5­Ãš­Ò={Lv81à}²3žì¹}¬¢Ü!u'XR›Y"Ãû‚ûyϸÙD+|ÆÊ€±j÷BvùÚ ‡‹`‰Ï80`xÃÿþE¢É±/-iMïlíÕJ¹õä8‰æ½I´$šÞÙ¶Kϸø‹½¦D´$št¶½?÷’{¼Ëç_'°¶×áw{o¼ñ¨O{£éÙút°é¨ìaûÕô¬éɲπ–Vœw—÷ݯ?“”{ °¶âÐÚ[í¬ýSô)iÍzº€´^¬ ð¦²Í¹Ë¢w ´$:Sô4G£'95Xi@K¢AgÓ§Ý¥zk–p $ %Ñ•¢mÅv’ó‡C]s+f¶ø™nfÿl“«Üˆw%¤j< OÙǃj—™z’ëOB³„VnìÅ6ð†Þ%ÿôïR••fPû/ôIíFµ»_ùz1ßdeY@ ®áb±E©Þ¥®ëoÓ#,Ð’hò™ùñ­¶&_ÙÑL‰VŽ+f1þϧåx±/€¥ãÅÊç#såõd¥–Lœ•³Ì¶zû"aAD@+{ÍÊ€YÖšm^’OZ‡XÓš‡«¦÷fùA…ark¢;EW3”ukysº±ƒl ¥'“Ö‘óþ)7ÕDó\-‰ž½ß•3zÎÆ€–D“ÍÞ m§è2M=€µ½&›™›±|8ª¬õæÝE´¢5ëfkcÖÛ’´æV,iͦä†6/³áúxº5 ¾< O·&9Å\øVK•sŃ™¬©D¯5ÞMUÄÍŽ®ÑÒf“ÎzÞ{U=kz1›5 %Ѥ3‹],ž¹°ÂéÖ¤…¬-8é¬7oÙ¬›xˆ?ÖD“κ—^êf6S °&štf6Rg’“‘&§9°&štÖmÕ¾`ÒX`I4ëf_ÜŽÇI4Ï5Ášh:gÃl´~qa/&¨´r¸X`‘¹!³^¶¹˜Њ7̺sé‹ÏÙSk''İä s`À´8ÈèMïð°jXp %­ÉfÓ“ó‡ ­gˆ>Ö´&›™•¸s-¿ä,63 hIk²ÙôÆJúWì..‚5­i)³§lQò/!==,T| x@ŸÒigv6siã|ïÔæ”„–8¥‘ÎæÎiO}ÉbV@+œÂ¬NÜÍ;_G´f ÇÖ´&™É)ÝÊOZ3Ö$ZÒšt¶ÆÚ{~ñ®¬”håt1Ãd®Yvÿi¥›w¸ñíìoô©ˆƒ7¶×ú@Zu³ÙL=€µÍ&Ÿí\ÍÑÑ;¤Æ‚hi³Ég»ùtT}þÉbÉN@K¢é™•Ì´>u—šhr)Ñ’hîõ^^g+7™›=HXÚk–L‹쀬óï>‰æË4ÁšhÐÙJ593±×ÐÊ‚3‰Ê?L#ß]=ÏЧìÈDµ‡· ¸>©½øË–Ôn½K)kèþ0+¬Z ÷låT-¨ØjnÌd[ñÖìlPtž;åËȘ“Äõ&Xò‘X`ÁúÚvBÔŒÒɖ欉?¼6OËý5³§»«Ã={@Ÿî®°âvíy ½|e“UZ¹²Y°²ÅÈ­lµÑÛd;õ–Vœu+¯â¯"úf¥ÖDÃ=³ ¸ùù/œ¦B´´à•¢‹émÈ (…`MkÒY©žf~ù}Šx¬‰&•±íø"¼g‡í€–|l1²Ýfò]gì߃ý7úT#Ô¶ý¾SdµÃ’-© ÷lÕšòœzcñÅ䘀–DoŠnž {™s²³ `ÉÎXàù[³¹ÓÛäËBk¢Iguùlí[-ÅiÁ;e­,8XÔë¾t×C>&´$štÖìÒM®AŸoÀÚ‚“μе]§o´&§-iÍsÝ,h3÷NÎ×^üŒÐ’hú ^·»<ºk2º`mÁéõÜÚúâñŒõ>¬‰&›yc>sãå\¤ÅŒ €–œlæýnòÖóÎÖ +´"šeæuØŽý O‘œÎÁÒ‚³,`yÀá#Äø#Ü×KñËÌ]ò& ·÷ÆÓÙŒh%êâ¸süc¾ÞB~Õ 6Ð’h²ÙðætI¿¸V ´dfd³™z¯·ÞÜ'3ãÅE°ff# §×RüÆMO ‹ÎÙßèSÅWÜ.ÿžê­ÕÎiÅÃ/ZZqÒÙlÛBU}Å9á'€µ'Í•jßhÍ„hEkVx¢wkEך͇XÒšUË'„z5·¬5¤´¤5éÌûÞï®k¼‚5­y¬îƒ#¿HOḀôéÙ.¬¸±á(߬xøå@K+N>3+­^Æ!¯8íŒ`mÅé™ÝXð¢ÇÄ ÖDÓÉñ*Š]Q€ø¸Ùçô€>%GÒÆwÉ%Õ[¥ëi³I¥DK›M>ÛµúL?yÅÃÁ&XYñͲ;->q¬« A3÷+>ÒfYÀòŽûméY9#X Àšè°×†/Y°8…= i³,ÀV?//bWµfßüÖ´n][ö¯„ºÖ…²–´îm–²nYæ'­;%¬i=(º/ï=©/ø¤h€5Ñ“¢×»ÿ£<Ãj±¥F@K ¾(Úg¼õ­æ ,~ `Mk°™',Ÿ/kÍÏØ­hÍ¢»{|ŽË-^ù)<]^ÄQ÷mÖi³ÃŠ-m6éÌ;‡•.7Q\ÍÖLœt6¼>ªuÕYXÑÌÖD‡_µ¥Ûl‡“húÃK¢™Ô¹g®Û;‘è{M>#ZÙk>Lïùž7&J[Ì1 `MkÒÙì¶}?¯šÖŒ»ˆ–´&ͱæ;µæ”‚Ö´&Ím¾C¿õ"•¹2е«¾!ʧ+ð0ÁÚŠ“Ζ9Óeéù@;ô²ä=Ig£OQ@Øl³øšõñpÿþò_´âžMÒY}—k]Þ N&Î'X2ñI:«-û÷ýñ¬ðÎ&Z±³I:«½zí¾|mvR ÁšÖ¤³º¼’[o:†/ ÿ %­éÛ5÷™jÑoì9aâ£OŸé¸Ù¶[»æÛTï“Ú$¢%µÉg­ Ûäjìµè#¬m6ù¬Õ¹K‘G ­ÅÓE°$ú·,ÀÑm{»ú¹k§ 5ÀšèLÑÝûìÈ•÷;Ñ ÖD“Κ­˜…ÊzÈWƒl 3[´po«ºšÜCq'zgkZ“μVŸ[gÒÎÍ&ZÒšKÖ»ÙJ+U¾6×§ü>åo‘Jû0.ìC÷‘-©Í»{Ýã’³¿væ…M°¶Ù¤³ñ~߿͓Ö44¢%­Ig£_D5IdgÞ>KZoÒÙ¨uo}ZÙ.\p‚5Ѥ³ñÛ¢ç²Æ0™heÁ7élx#B»tÑŒ@ˆ–D“Îfq+½½‰œDóî"ZÀu–šP±óÄ)»ƒSþFŸúqpÅg]Ã"F5ÆÞe†þ ÖìŒÑ¦¿ïæ[Ÿ“hžk‚5Ѥ3»{¼¶[wJ™”hi³IgÓÇm¹aæ®ÁRÖ´&-wÍ—ÜÖb…sM°mæ”Hg¶bÙ\;õAþƒ~ÐÏŸIgæ—{{lµ6x ú kZóp™k]½o™®5éŒhIkÒÙÚ=öi/$iÍ«‹`MkzgÛ[uË¢y® ÖDÓCÚõÝÍ6é ÎÓE´´àd³=S^]oé·™”ègJ1Ñd3 |º†L)áMƒ`RrJ`³ìDzù"åmât´¤õ¦èw–‡ü)`÷AÉKZçDѽî¼õÞv{vÊZÑ:gŠvßù%g÷IÉkZ¢g»Ê½: ]Ý”ô)/sRmÐÓ¿xEš›¿hiÅAgùýx¹åùÔ›÷Gk+Þ)º”:Ç”ã’xk¢E÷2ûµSôaÁW¢l ¥ŸÜ|Fèo|þ·;lè;û}ê8C;ËÞqÞz^žÔÎüå@KjÓHónc,˜ø“ÚòýŸ†>½V’K³]ø%Ë_“7¯ì– ­ÐŠ·÷HUwT¸fKÞcŸ\êž>ÝA÷HãD+ÞB©ÝK1 ²4IÄkZ“ÏÊ(³åK=ÃI4ùŒ`M4ù¬l‹T×­4ì°à%¨ ´´àä³Z¼}°\ŒýY³× -‰&§Tõëýb¤'Ñ43¢%ÑtÏìWû˜gùûbðSÖöšG³š__rú}Ezò*éìoôé›lP{¿§7êÑfüå@++^IgÍ' 7=Úä«–V¼’ÎZ]½ç[¹ÐAk&a´¤5鬙s—g½ø§k3ˆZ¹6+éÌÂÔéƒ\ä«‹[M°tuñó‰¡=³è§»â[ÀúTZÔÞ-½³ºDµ'éŒ`Mmò™Elså©¿”ò+_@K›ÍƒÝ}Sÿ Á•´æé"XÓš.Roö«õ:Ù=é",‰n 7½5÷LMMFÚü ÀšhÒ™÷lß|½_Am •½n¤³‘Z­S»ø™.€5­Ig#{!ÇTó öbøB°&šçz´ÑÞÙ2ê‚oÆ]DK Nïl ¯H¬º™‘I Ö´¦w6vñNѺ™m†]DKZ“ͼUÛ¸ Ó8h½ys¬iM6›yzÓÙÌ6Ï5Ášhn×,°¤,<]]ÞÙßèÓÕÔn³}3Pio²8ÑÊfwÒÙœ½Œ¡û)›'›hI4élîì³j’ì†íXr ™‹”}j‹…Œ²¯À“,ÙYèiQÆ‹>EŸ6Чâ’Ê2«íKžÇIm^]kjÑex=·H¥Ÿçü× ¬‰&Ÿ­>º'è&NC#Z2ql‹ÙZnêwˆÏsþëÖ´¦w¶ìFXó–;vzÊ › ´¢õ w¶ýKKt ?Ïù¯XÒzÎÌ¿èËZ3-' %­Ig»¿™Xä”Ï“úëÖ´&íÑÍq¹džDóp¬‰¦w¶ç¬­¨mþyà%X ï¬$ox:äoNñÛM@K{=(ºYȽn3D¢™nÐÊÃßã‹ýQž,?§ð+DK·&ËŠÏKY®!ü _'´¤õ¦hOµhIüîóyyÀ’™M°YÉeæ®7{þ|°zЊ™ÍLÑuzsnÑþ¼ ¼N`MëBÑÝCôË ÔAtãÙ"X])zÔÕ†úéå²½N`M4-%{kÕ\õ/NÎÙú”áNNÉÞÓiË/†Ÿ¯“¯Z²3Š6Fš¹¨/†Ÿpñuk+N:+1¾wDÑ=S4ÀšhÒY)«¾?«¢iâk¢Ig¥Ù¯îjÍÍÇ©|À’hV”bgÓ›s«¢™òÀšhÒY±bŽ[ŠÉé#DØl  gU@)»xB‘¼à#ì5ÀšÖ¤3o§Ïˆþ8¯XÝ(ºz¬*×WÅÇü€–œÎ™;8õV;Ðzr« Ö´&›Ub8çåhž´&-iM6«FéÆHòÕ5Ã^¬iM6k^²³.¿û šß›X½z,sÍE?ÝšOgèSÁ7»UŸ{[´Óf‡_´²Ù¬ (­>ú¥îiÅy¸–VœU¥äÃjô ˆX XàƒÄ?¿F øFÐJÀ/|ÅâTã…,»ÃüÀÚ‚÷€ÞîÕþ2éÓ«ÝÆ‡Íô)–lØý­¹ ßÀãñš”ý'úT,DG¥W !ô²€Ïgº× -/Zm· ;‰‹´$:hm‘SêçÅ-¼N`ÅÐ2ËÊx—ŠÝ:¿œ´æñ"ZÐ:³, Œg)_Ù|`Mkò™—¯Ïy5pÒšQÑ’ÖaÉæ\>óX½¼rj8]£OY¸aÅ—Wíßí¤6ý¢%µéŸÍ\k-ߨw›hI4¯lowS†Zü9š¯X³3úg³Ï¾÷7vd-iM:›vûÌyûá§'Cš8Ñ’èð»·9wu——WÎôÏþFŸLœ+¾’?§©H>Œô:¥Ífa€Å‹y¹ýZ XM>[¼´,Ïgø|+{ÐÊfgúg>¶¾6µB÷à ¯XÓšþ™—«Evˆs J¬‰&-;—©wý‘–U --8élçÒ÷’ãûÌïl¬iÍß½‹O@Þjß1û uèÓwQ®øöt¢káÓŠ“’ˆ–VœîÙîïïtª£É`iŠݳ=ÚöÑ‘ªèLN!XM:óöª>çYÍÓE°&tæŽwÛÑýÆ/­ì5˪ù”^§û),6 hIt£èžý¿òýÁO›¬-x§h³ÐTä/èï%{ÀšèAÑf¢óúå´à²–¾Bõ—êqû†qÒš’ Ö´^]¼á¦:éæó»_'°&zSt÷VÆ_|_då}@+ ^E[ÔV«ü}1×DÉKZ×ÐÞ/ é>©§æÿŸ†>}+#§ä9šm¿\jÄ ÞV^Ïr ¢}Úr–Ç®V`M4éÌçK©½Ï•¤B´ðpç_A!Úï½ñùN§‰æÉ&ZM:+ÆG¥èUÿLf `mÁIgÞ;Øþ'ù‘–ެ‰&Ù`a˜<)íóÃ_'´´à¤³Z’] z£û–´fU@­öoÔ$÷Íÿ¬Ùë„V´æsc­«¶’˯›òä‰7ÒÙßèӇѠ¶ç¶è)¼Ÿô–× ­\ |o¬u×Y ’#ÕnTûOô©”‚'»ºîKÚóáòúç‡ÿ‚¥Ë‹u¶YÛ(é–™yZq² ÑÒŠSëæ­¹ùµìIëAÉkZ“ÏZûWùl3­3€µ“M>k«Tò…ˆ'›Ÿ!Z:Ù䳞Wž?Eišh’ ÑŠè΃Ýk*}Ê ò›ù,-8Ël§Ì½«z…nf^N@KZ3ØìÓ~úOž¹¤5}‚5­éõ5ë^]^ðv¬‰¦w6RjË,E\q‚5Ñt5F^÷¾<¹âß6Чð4ñáÑjmúéb"m@KvF:37¾×-×%ïଭ8éÌ‚EûåUwÏø-  %­éa xÌ¡O7öHÜì?Ñ§ÍæÝ5Së³Tý-‡Z¹6ÃÔôªf¶CT›þÙßèS¸ÉÝžµíî}µdµ¹ÛDKj“Ðf›¥UýëK\3€%o…õSvû”pÒš!Ñ’ÖtϦÇÉ{Éžax2$XÓš&þÓ9L>‘ •&X"X QÌÉjrMB¼ˆVH……uâŸÿ/WßI4}$¢%ÑtÏ,`ß»Èó?kö:¡Ñ, ¨Û/]½yä#ÁÒ^3q n»ÊƼ8X'Ñ´p‚5Ñô+·&šInñ'zž= O¬Àƒ½›7`¹yw‡ÍžaÉ–6›t¶‡GÝòè®Í¢„ÖVÃÄ›¿Œ~{÷;©Í%'ZR»Pt±Ÿ’‡|°;׌`i³ÙˆÄB Ñ;\»'*]x={@ŸV3N_:Ë÷æ ¢ÖD“Ïüt¬ÜE­?›_'°&š|–-PmùÒ ää“Ä –üaÎ h¥ìžÛ'ß[‹ÈgD+Qç¼Ç¶ì2ôÙSˆ–DgŠžÕL~ɲù•/€¥ge@«©z“¡KBÑAëp-i]):·f,,'-0k:€5­E’õT Ö$°&šlV»…Éõ‹²ÍÔZZp²Y]3÷ŸvÃE­p8Çxfý,í ?…µ-‰&›µ²–'uÉDʽ&X"RÖ4ƒ×™å”Ì6=¬˜Ya]€ÝxeÛ¡?"…ûšhÁÌ ëZ[uÔyéO÷¿Z—ps¬iM63ö_ïBYk<´¤5ÙìݯYoÝR‚™¬iM6ë}•9oŸéNZÓΈ–´&›õ™ì?jíøukZ‡ß½ScÉñGI(sz@ŸÊÒȤÃX¢5ybò§ôòuBK+N:Õâõ,÷Œ¥—-‰&™+=|2«¼ÙAi€¥Íf§6ú6&r¾„úÝì¿Ñ§ÍæÝ5lÅÖ’Çg}J/_'´²â9€·éÏCP’Ô®TûOôé‡ó™É®û.7™‹-©MB›Ù‹ Êùú9Mœ`ÍÐHh³õUK—£€Ì1;-iMR™žjÑÕž™ÿX ÁšÖ4ñi4œÚ¥Ìöä#‘ˆ V|¤Â¯]mÙ6ó­ýÉ3$«-x†…uvÙ[ Q»€f°´àÌÁj«õQ®£%NfÆÍ&Z13Ö´åS‡SRëO ëXÓšîÙÚ)ݧê´f@´¤5Ý3ǮۃÖl%ÀšÖd³í}HúT>c^'°t¸XÐ̉ߵdý”Ù•­.Ö´=[M?í¤ÑoVxÐ’h²™íÕ\3ÉOg…N°¶àd³½§¹ò.CM'XÝê)½ÇoÉ) …ãЧ£ ÷†¾èt 4´²Ù`aSše]²½O+¾(`iÅ9. ¿¯½6åGe-i])zÙyñ "QkÖR°¦u#z—:Öúõžâ®Úig¢vƱaÝg=e?…9X¬© >ë^Gc‘²øÝçÓ„ñuk¢'EבK»}5:ÙyhÉÎEÛ’™g)ß]#HXÓzSôšþ /ןãhEkô¼íØUü–üé:ó:%­9. {ó°ÙoFzÒš²‰–´&ÙòïqK{>Uw‘à ִæÑ,Þ2` uìéîb]ÀúÄ)4ñb®FY]ÎYxÓÂë„–V¼Sôê-·ËP¤ÓŠÉk+N:+Ûì¤ÉÕ¥„íXò‡YÐkõt‹¢G, h% `]@¯Ã^ÌŒ±ZM2¬Þ\µëM5 ç< O¥J<Ù>-³¯/.¦´bâ, xW·žÔk3³ÝZK&΀Þjmï "Yë hIkºgvÝÎéSTÑÌõ hI4]qïy9†šxËÒX[pÒY[³Úÿó >u3¯XM:ë^·ßÔIVxÀ±.ÀG~Ÿê'‹¦Ök¢Ig½ù̱%¿Lg¾`´BglôÖûô bè·f¸ï‰V,œãººIý.ÌŒX,™ÇôQÒš×*Û“Ö¼±‰–´&›y Ñ‚|¸˜ÀšÖd³ÑºÏÊ‘ HX²pVô1GÙùÖ*ádátJ‰V,œ‰L}&s€õ'Ÿt Ìé}*äfÏdîš_ì~ù/ZR;€Ír*™Õ^TûOôIm2Ò,ÞDŸxY<Üü? }ª*à 2½_Zþ" Œhåh³0 Û¥ÛfºÕqœD;ZMB3?£Û•#L`‰Uf°ñ퉙—ý$š¬B°&š„¶ü¹±mùc@à‚%Bc]@_ÕXaé¥àïvR¯Z9Ù¬ è« Oá’?ßZ XÓš‡ËGÇÕe†XM÷líÔ[Ñ¡2¿ü´´àtÏvÊ­ËZÓ)%XÓšîÙ®e¥%ϰúôïzЊÖÐ÷h©e½¾°—a@+lÆÞls½G©¢Y¿Ð’h°ÙHi¬=ºìžqÔMKlÆ^LºEmª™1ƒ7€%3ãÀ€‘ºù-û–{|2³NÙ@KfÖ)zÔ]ê¥#àIë `MëAÑÛÿs#rÒzP6Ð’Ö`³á/ìf*òÇ{¦Ñ°¦5Ô/„·“«:g ÎÙú”æ‘©vµ+é»ò—­l¦A »ór­Y?Ø›’–öZ›7[²Ú@åSmú:5Ѥ³ìU€ëöü°à¬| hiÁIg¥OÓïVý´$ºðò¼Ã߃ýûl|Ú|@ŸJ‹igÅ þ´¨“Ô^Am %µÉgv,×»wjgaÍÖìŒ|f^‹ÏÏ”O °&š|fk0zÆüÅÇÍ&Ÿý>m6WM;Ù¥«¿³ö% …Í®, µx§9)³ÍB++^Y0 êUy e›èSM|-/coEV›¹~-©M:[ö£ýL>]d3‚¥ÓÅÂsâ÷ðê}U4ûð°&št¶}xJÕ+~¢cI´´àÜk/œY%ëaÓDZM:ó¾vHÔÏØ¥¥Öœt¶·ýìuCu`Òv,1)ëf*³¥¼t:£‰´Bg¬ ˜Éûèö¤f.WrxKZ³.`¦nŽâmŒáAt ¢ÖDgŠ^eŽ®w¶x·bÐÊ‚3i¾3Lë­£Óé©.i@K¢+Es¦‡Ü©ÒM `mÁE×¾k“çÞWæ7°&ºSôXækè_Ð+KtZa3–˜C¹Û\rºvéa«–ØŒe³x-KÑ{jd¾hÉÌÈfÞ¶x¶›/}Zp.¢¥'›•nñb–‹nÞ™°¯XZðÑ3ïZî§0·Ã9{@Ÿê{Ige ¿äçáÊü”€VVœeæÞ,Ÿä"vÎÿdá¾N`mÅI x»Mù“Síx<{@ŸVœTj®uó†ÑúŠóÆ&ZZqò™q£WÊ>)¿c°¶âä3ðPôܘʺ€–Xœu³®Uöµ1øéù‹ÞÑ Ÿ±.`¶üné¤WXñC[@K¢ÉgÍ̤÷¬gñ|@+¢ùÝ(x'ï‘­[8/¢ gê˜?ˆXà‹OÿOq.Ç< OsAmïdÕŠÌg3üp€¥ÓÅ€é]GѰØÊ0€5ÑtÏÌ™nžÛ/o6ŸÅZÚlÒ™_º»Q“ÀÆH-™8éÌÇÕ¬u™iq 3öÍ`‰Î8.`ÚU¿fnr°ÉtíÖD“Άw¿oŸªfeÁ {2´´à¤³Ñ½-†\&[ƒ{F°¤5«<­ÿ“,kM'ZÑšUsøÐãÖÔÜÊì…†´èÓÇ.œ®•¼êÉûÂËjã hIíEÑÅ–¡g™J™·ÀÚfoŠîž4§B/|hEë|Ìí#Íe­Ãz,iͲ€å9Ï©-¹eéAk %­q>VN-›“#×€øwãÿšøúTÅÁÍö´«è]® ƒŸ€–ÔnÝüAdÊßH ¬mv§hÏ«M§Ò 4ÀšèAÑkl»ï¿±iãD+!6Ë–]ƒ^¦?å°aM@K¢IgÅSagÓ?%N!ZM /}÷^ÕÙóŸÄ× ¬<§4V¬²üÚÍú·{~IhAëÆª€Uó^ÿiέ‰æB´$ºPtõ'^¹“HáܕּR´Ý=ž©kMN!ZÒšlfAØ0JÒµë °¦5ÙÌèÉjù9>.8À ›5V¬–—^êî0¿b´p}4& ®æS: ØÖFû€>ýð v-¥·rvíN+NN!X[qÒYkµw¯)QE‡XͲ€Õfÿo9œ´Ù3ÈZÙl~Ù\mù”K—êÿÕúKXÓštæÃãw¾eœ´&§-iM:ëeûõª™5¶ô `MkÒYï^mšô‡¾å´¤5é¬)1ëñG†´$:ì–Ï­xß}┌`ó}âºH#y.Ù¥âi³y¬mvíߌ†œ•ÓøˆÀšhÒÙðÒÇvyQ?‰æv,‰æ´‹ÛØóö¤~ª &­Ø‹ÖXÝŸ–õäá6hÅOaQ€Å¶c£©µÁ¡”;€%?…EËô*ë ­)›hIkÒ™·-þO·IkšÁšÖ¤³ip»ue­¿³´¤5Ýc`ûð5Vû´$š±¦EÉi§ªÓÕ 4ÁÚ‚3>7oz{Fõ9¥| x@ŸXtæ3Dú“ƒKnZYñðX¹<9²&}Åé“,­8§¬µ}ÃôjŸV‚-iM:Û©ÔÝÕÕŸšæ× ¬iM:ó î½_¦~®.¶À `éêbQÀÚmw3<ÝE ogD+W‹Öž»¦kúÖI4Ï&Ñ’hÐÙN>g¢9ج,U hIô¤h¶<¶ü°Ð˜çÐ’…/ж½JU®=©ÛÀš…oŠöúÃZe笥–,œ…xÛ ÁGÂÊÑ}CíúT¶ß©öž³þLXìŒ5›­Ø«¶7é{;çªè°hDK¢+E[À¶ó’ve뀖D7Šë]³#ÛÙ d€5;ã^—”v_E~Ó¨l­Ð’Ö¤³RóôŠ]4Ñ’hÒ™|'Öª¢ù±+ %Ѥ³2KICÓ¨A2ÀÚ^ï€îk•ñ+ú‰S8,à}âR©´YIO©ìÐÊŠsXÀ®f8}}³ÙE1 %Ñ…`ŸÁÛ¾pÅ;¾l> O$$•Ú†?7ʆÖâÿK†Öƒh3•òÓ0@Zqææ´´âä3 (FÊz~Je‹¹€–D“ϼ±Qmúdˆµ´â#±*`·1G*z’zcx@K¢Ãï^ÕË×å¶­#Ú|@Ÿ\ÚDµ÷Ìó‹Ï]éÚ­¨Í² Ì“ßzïÈÆªÍ€–D“Ïzµ¸m\(žZp¯ –bv˜ÛÝ~øºuU:q ×›`‰SX`nF›}ëY9uÙ@+›U»ïnL<ä0 ¸HkZÓË16ò´ƒ&_Ùð€>] ôTFñv· §§ÞDK+N>}öÖ÷åpºXNÐÒé Zí›~ºx® ÖN}¤±|¶ éòA%€%Ñ, Øc›"UnŸÒ8$€%gYÀö9Ï;ÉCv3cXM:³8u–¿p¨6ÑŠ…³,`Ï1 {óäO¢yé-‰&ͽÖl·Þª§ÃE'Z9\, Ø«¬æÃdÑÁ1$ZMïlyê±Þð¬ò‰6€µÃE6ó"¥ÝoŦ'­iâDKZ“ÍÖ{(«<£27€5­ÉfÛ/„u+ó¬gà¨kMçŽhIëÿòÙü)y¯î~)@<]›ÿ½?þK׿ï¸G·–Òº]ºKùM)ý­Ü]¿eî¶_årç´þmDõXÓzSôò'°ª¿”þîõ?hEëß²{ÅT÷–²è ÑDK¢3E›k×ôB><ý–üwZ€£-jõ2Ið$šëM°&ºRto»éCÚoí?`Mt£èÑGÝráKûÍù¬‰k6{y×”¨O9û¿Áæ#út;óŒC.“m¿ÏÃÿ€5µIgyíUÛetÊAôïÃÂ?`M4é¬$Ù.ïÚ'ÑÜl‚5Ѥ³R“ÑB‘Ó:ë&•-pJO¤³2R[EŸïSƒ•-‰¦™•] ¯—ûÔÍ“M´$štV“1T•‹ƒÛâ…M°²×=‘Îjö–ûU>\¿ òÿ€5Ѥ³jœ^Z—÷º%.8ÑÒ‚wŠžË› É{ÝoM¢%ÑtÎêöAg—o§çÙ"X[p²Y{!¼c:h¹ÙDKZ“Íš…##Ë}õz ’Ö´&›µQ»](rEtËôSˆV´ŽK6ú»ï¾u¹œß[óoôɵ ›=g÷”k9ô!‘¬„>=“ÎŒŸò^SmT+Ï5ÁšhÒ™¯÷%NöÄÓE°dg™w®-˜7Ð’‹nzîØì¿Ñ§G?Úx÷–¾ãBœÔ.á‡ÿ‚5µ¹_æÙV’üªÑëѧð4´ÞÊ*ûöåt´Ã†-mZ·¿J¹$õœVœÇ‹`mÅÃf¿ 9ô¾•ï‚†× ­h]èžu¹/‰‚'­ƒ¥,i]èž½ )ŠÞ»¥e^ÙDKZÓÌFõ&qS ùzâz¬iM>óQæÐÊé­ðþ!ZÒšîÙXyúl;Uëpó¬iM÷lf£„~ó+O_Ðy®‰–´¦{æÍU=å[Öš{M°¦5oìi$<| ¥ªuãŠ-iM6›f(½ËÁfVF°¦5Oæ\m×–å<¨^î¿Ñ§ §k½ËfôÞ-­‘ʼnVV¼’Ζ¿‡å&;*…76ÁÒŠWÒ™w¥ÈûRmzÍÃE°&:,xõNÑ:“Þk¢IgkøËÀLÚh¥DK{M:[{µ1õ2ÙÖÊ-‰&íìikòÛY/¤3‚µ'ù¨ZocëOß’ùxF´¤5éÌ‹ý3¸úí¥‡háÛK¯pÎrJÃ{UÈ_Ð{†Ö­ˆn‰¢³iþ¼7*aW” °vµLÑmå5?$­[¦l %­ E¼Ç¾Œv8Xx ’–,¼UŠžeŒ)?åt†Ø¬‰›eamé‹§œAÙD+‡«uŠÎÝN¦ÜÜ®3º`Mëˆ^vëb¯ŸBì†Xó}Š &Õn}{F‘¼â“†F´´â‹¢çH«Ý.¾“èBÑ@K¢IgÅ#§rëqúŠ/­ˆî¤3s3fï—éW';[” °dgüì=úòœzÿ”Þ ììoôéq™›]jñÁ-òñ¢KÀšÚ¼}ŠÙh«èâþäŠÿN xDŸBÕ`hn)CÏámüŽÐ’¡‘Ð|RO–W<ÀÚŠÃ=óÙ~c—/B¾Í“M´¤5ù¬Ú YCùè°¦5M¼öì]Pä$‘¶i¥DKZÓ̪‰Ý}rØÕ%,i=Èguš’š³Ð™³Àšhºg-CU½’¯m ­,8Ÿh½ðÕ~÷þ©6Ñ’hºgÍœž}+:-8¯.‚µKfÄœ¨å~º@¾< Oñ"í¬#yëºZñ 7ÐÒŠÓ?kË?Ë¢®ùQmúg£O:m¼'Û/O;‘Õ&-©M>óĺô+»“J Ö |Ö=JîS~˼?–DOÚ™±Û¶¿/7ßiÁƒÚ@+ >Ã^Ïêàåg$¾,°¦5ùl¤Ñ§‡¢Ö=Q6Ñ’Öä³ás?'%­y4 Ö´f¸9Œ…Ûµ9ÞIk²!Ñ’ÖôÎÆðÓ!ˆ«ÁO!XzÕ˜ôÎ,<7^¸Ô3œ&ðp¬‰¦w6¼žºË1ú ™¬í5ÙÌ"ï‘-iO¼?ˆ–öšl6ͿͣÈA@gZN@+¢ÙlZœšnà ¢{‚¥_]ûÎèÒðv-F›£OÎ9ÅÛî¯2e)-­8E{SòÙ/¾ÝiÅI¤k+N:[%¥Y/ÇN¢é“¬‰&y;Ž6nÙz§'‹--8éÌX¡Í/ZQõD­<Ò2)OêÔE“Sˆ–D“Îv©Þ‘<Ë$ν&X"q–ä]ퟛþ¡m’Í–ÌŒ™™vÙWφ•{ùQú唿Ñ'N j{=uÖ?ò­øÃÁšÚôÎÞý…Ú­×çét…%Z9]ü–œ·ýê–òÙHOs¤x,Ùë|z‰óB‘OßÎZ9]»S´»è=æø"€5­E7Ÿ–ù…™UŠX3³IÑ$—þ…™•LÙ@Kf:+9y?©.÷µè|Ê hi¯7E·<ËØú§M&È´ z°, x&À{œ¼hf|Ò`ÅÌ“B‹;ò£m9¿q$xgèÓ³v¡lŸ”›üŒä/²ý'úôÇ+ûT‹­W&ÿ³j@K»M>Ë{ø^™Jù’ÀÚn“ÏJÚÞšB~¤]4q‚R, (6ÙyÓ?0öBB#Z •ÁÂoá»jÖ?ßf³´´×ä³²êÎ?íÐ¥½æÕE°¶×ä³²m–<4¬ï°ÞK{ÍôHÍJ1Qéé`³0à}zy£Õ2‹‰øâòâf­Ø ŠgêµÖÎàÓŠó`¬­x¥èY|¬žþnWx…-iM:kÉóQõÏ]!?2 %Ѥ³V}¿¾x·«¼~ˆ–DÓÌl«òrãÊÁW¤Ööštf¾7X•Eç 4ÀšhÒY³0¹^‡7žœ¤B´´à¤³îwn»<>‰¦gH´"še¥÷TÚÔgc¾Û´r°, ôá“¶/ÑËiú ½‚¥ûƒeæÂ{#Ë[ørК9¼-iM6¥y=·þF[yºˆ–öšl6|fä’Ó¿ X:\, (£™K9ä‰à#óâ"XM×nX€¼ú†IvÁ—ÍôéY"¨=Wõ5òf7r ÑÒf“Îf²_=õÄÞ¸ÛDK¢Ig³ØÕ—äùÁwÒ–6»¦€Þ¶[h¡õ´Ù•ÞÙßèSÈÇíòW ûärˆQnþ>ïMÿ29ëZXs •Ýfa€gQyµÒ|Úm^ k»MB›Û"ô/&&‡TÁ€–´æÉ^ÉçyÈÏe›,]^, («”žêežÆI46ÁšhšÙ2O~ÿÔ|*¢ÃµI°&š|æMùúºe¹®l&/´re³0À'Vî2–î#…+›hE4 Š!Çîå ÑŒ»ˆ–DÓ=Ûue·Ry¯ifK{Í€²ÍD[Ö½Ö´°D), °»>íwoD™Rx­PJ¸s½t¾UÙ>Ý] ™gèÓ+¾KISnò0âf¬­8è¬&oÑuouN¬‰ž]›ùX_ÜšìÐÒf/Š}õqë®zÔZ½)z.[±._Ø|Ó`iÁ™àXsr[ùbÁNv@+Z³Uõ9’½ßúb˜´ŠZaR®êo3¶©¥áKKLÊ$‘šíÒMSoà8Hg-i ç¬zBϬúèùÎϪ-íu§hóíÆLr Ë—œÖ,œlVêjžç!‹î °&šlæýœF‘;<„Ë'€5Ñd³²ÞCõ·³d-í5ÙÌX¡{9….štF´"šeþü”vÒGôI6#ZM6«½Ï¥Wò ¾°´×, ¨ÕþqåËnD‡õXÍ£YwË«aÄÛ“‡4Påô€>EØaÅ÷,ýz6O›]Â/ÿEK›M:kž;õÍf”ÀÚŠ“ΚHÈ_œ.ö2 hIëÀ«N~4zzN ›ý7úôÌÊ“íM1òmªÞiÅÉâk+N>³èÁË]uÑ<^K¢#5oP7Q8ót¼fæŠÿ‰>1//;—cõo ŒF´bh¬ ¨=§<—¾ÙÁ'%X[qºgݧ~ñrN¢y² ÖDÓ=3o¶µ}ûNwÊ< ²–œ|Ö—ç(~ñ d‘Tˆ–D“Ïún;ï/œ›`mÁiávñ5ªkMÙDKZÓ=3?ÑâÔ/œ ©-‰&¹ÍQ/¢O Î+€`iÁYPgJ>ƒLÿ‚Π݀V´^tfÍŸÆ ²hªM´$:üîn>SG¹éÓµ¹xö€>=KS¼]·vUÕl2Ð’Úd…9W7þQï®Õ©öŸèÓ~…Ý~¿³ê#•BBQ@Kj“ÏV²eû™p­¯à”¬/òÙ2§¶ú·mYkºòDKZ“Ïü5?W}¨ë;ÇäuBK¢Égkö–¦\{?XÀÒ‚s^@µë6{ù£®5]$¢­ƒ…Ûµ·{¿Tœ^°¸ÞK/X¬ ¨»ûH¬!§.ÀâD+/X¬ ¨{Ô‘æ%ïù4Ô•Çš`Mk2©ß{v‘žwëdf$R‚53ƒwÖR2G1gÝ̘dÐ’™ Š62œõ‹´fÈ´´×“¢Ûn#}ÆiH{](`m¯Ñvß:'É7öÞ¿W×úäVª=ÒnKÏÁªá‡¬¨=YÐ’ñBþin¤mv ´°Ù“ÉcnŸ±iÿƒ³0Yð€>åZÐв§ Ö[½Ðÿ¢'û©´¤v¥è:üÈœÁ§ù'“’Ö6»Qt[©Ï)'ðkWk¢Égž·Ò’\;9™/ÐÒ‚“ÏŠ[iÑgòM&ç´$šfVüÖ[S¾»ø¨ÀÚ‚/Šöžÿ3«=ä5X½)zÔ÷ho}ÁigD+ žÃšÍæŸP’€LÖ< O¾]¦Ú³§¼?Œ$­xÐ`iÅYÐÊê;­,ÛœÁÂÖD“ÎÊ6'gè *ô‘XM:«Å—².è“á•6 %;#U ÛÚ–‹¢ßIXÓštVÛö1îòýÁêàÖD“Ϊy´ÞÜUö‡ƒÖ+þðd]@3Nðç/=ºççû€üáɺ€Ö|à-R=iM+#XÒšu­yÛ²©§ i¸­hͺ€fô´í€ÈQÀdH@+‡‹u­íµ½Å.ºR4Ð’h²Y/ÛBô&»Ã“Ùù-‰&›ù£ÄþÉ«‘Îu °t®YÐz/kå‹{uͳE°&šlÖWmê=5f²–œlÖíò©õò*qêÊsM°¦5ÙÌB¶âóhUJáWŸÖ(…l6Šù¹$Y45Á’h~Ïm£'ÏŽ”³: ¬Za3N hcx Õå\Öp¸Ö´&›™½{—›Ûp¸ÖD“Í,H]½ÈÜÇâ°&:¬Ù)u ê|xN™_ЧOaÅ÷ð¶q²›Ân¬©Íý2§ÅÛÏËuɳ¢Ìé}rrÈgF1¹øähõx±Ì) ¥ãE[1³Ë•³SÕæãÙßèSÎ/¯ÙwMß¼”¶°a@+j³.À¼úåº\ùòÎ{~Ð’hÚÊ+}“¹<؈7 %Ñ<^«lop+§ŠscKÇ‹umõe®¢^É7˜*Ð’ÖtÏÖNž­ÿ…£Â½&ZqT80Àçtú‹ãå5æ :| ZM÷l›“~êቕXò‘ÂínîÊWõM£3S<€5ÑtÏ,LFE_pšÑÒ‚Ó=ÛFý§a³¢5ǰ¤5ËzJ^ÇQÔ×áNo!€5Ñ™¢ß¾¹îгÇuk¢ E7o¾¿8\Am •½fY€Ýô9R/o~Ѽ>ZÝ(zUãäÃÅ®1¬-x§èíß“jáƒ_^X 6³ÿÿ˜ßôRüöÐÊõÁ²€îÉö>kMM3#Z½(Ú"U ›å؇]ÇXº¯™ ÛÝ­ßùrO~áÀlºô) ¨”½Êœ 1egÊþ}ríz½zã¼€§èg” û/ô)N&¡åmè¦Wü ¶4hÅÒ80 ;ž>­S´´É"ô–,mÐ|“¹ñzðÃ’†€–´&¡ Ûì—Aã<ÚD+4ÎÂs(-xJùìjœ¸´Q2À—2U¼Wo³ôÍK)€–´&¡Õ2÷*réýàçÅÖ´ÞÝ—OÎÑ£V´¢5Çt£áV} £¨u ’–´æ¸€næé!„úes°±^k¢ÉfÍ¿“î­»âì!ÐÒ‚“Íšùðžæ®‹æ@´$šlÖú´¦«òƒOÓ¬-8Ù¬M‚uñhO…e<Ök¢Éf>©fÿ &Òœž ÑÒ‚Ó·³£±VÆè”§ {¢Ìé}º|HgF†ž:¨›ø¿hImÒ™ÙJoû’ã~¸°§,]ØüÝ}~ÉN]®"œ‹îÙßè“‹D>ëfò÷ññ§ý †´â,ð Šýî>zKru×daÀúðÃ4¶ÑÕÞá—ÿ¢%µIh#Ͻ«<"nrÈhk†FB5y=žþ„‡íÖD“І'®-ùûË \J°&šîÙ0Ÿv˪“è°àk¢ÉgcÙí³?I=’™Í 6Ð’™‘Ï,võ^²™µp4–´f]@ŸeíÒoíWNZÓI"ZÑšuþir§ª×ý–´$šî™¹¨uýiA2ÀÚ‚Ó=³ aív©]9ˆo9k¢Éfv×ûèaHƒ¯A´´àd3;¥5}(ø—.Ñ’hÞ{Ë<¬^Q ñtum|Û|@Ÿ.Ÿ°âÆÄ_Lˆ›áõŒ`m³Ig˘Ð;cè+6hiÅIgÛ=ŵu?…£-ˆ^¬ èžb²Ê¥-ßaÁÃs ÁÊ‚{pˆny™å©ß'«ƒXM:Û³”^ôîÃ#|ˆ ZZpÒÙ^ÅËWd_!x•kZãp”[Í_Œ“,i hIëNÑÞ“¯È Í'órXÓzPt÷¢æ›Wyúð“(hIëIÑæÖå•åÑ“Žx@ ßbY€‡M55y$ß _ÀJx¿˜p=rÉ«=â[ЧdolCï6ÓÔK8ž. •gYÀ°ãÑÌ­”¯®Ö `ÉÄsÐÚ{¯ô-_]³Ù@+&Î,ÜQRO3áêzxPYM‚Ч;Tjè±ìÒ×ß‘XÐÒf“ÏŠgm—6£§¾1A2ÀÒñb.ì(Å¢ýÚäï]îaÅÿDŸV<¨m>Nj—±zgJPk6NB+Ã'꣤&SäZ²ñMѳՙóù8i6`IkŒš¼õ‹>ès²R6 ­Y`mSž?é"°¦5ùÌ¢Ô‘¿(™l)Ð’Öä”÷—èºdG…‘SkZÓ=«;Û  Ï‰‰¸-iÍsݼOõ3¬& ËZaRŒæ³í~ú*ILJ¥ –˜”‰´£^Œ¿¸?¸ÙDKZ“Í<)´­ËwÑS® œ`Mk²YÛ¹¥¥¿2%(€% ga€Ý‚ï{T~O 9×­X8? ÿv“›^]Z¢•½,Üß•3È×~r‘*>< O¡*7Ûó‰’1±lg“?`ÉÎ8.`N£Ý)ešz@K›M:³Ðiõy™ÿ¿Z/¦ž°fâ¤3‹[M·¢Ó·MÚÑ’Ö¤³1v³‹W&ñèV-™8élØ%Ú¶m†þ¬™-|ìž-‚P_‘sÇXÚk–Œ™ÌY[õû °&št6½Ò5eÝCb à€VÌŒŸO†–7¼á§ø£‘ÎþFŸ®nö´?ß«Hä'¬­8élš‹êJåçƒ|@K+NSY©ÕÌV+>°â£O¯~4´•Ëò¬9]íðË–Ô&Ÿ™‹Zßµ³âf‡w ‚µÍ&Ÿ-»t÷_Ð'‹ùZÒš&îJÙ:‹³ûW@+,΀±¶QÒ.:‹‡XbqŒí©c[þx¿˜QÀÒ^³0À®= ÑíÐ÷š N´²×, ð6 ^" +¼Û-í5èÌüºÖ-zÒýa›-‰îí5<[Nz›l[Àš™ Š.fvó²d'Ñ“¢ÖDOŠî+ÙE*çÑ.æú´´à‹àiÎt¯úmGÕæútcwʶ  íÓÝÅÊ€ôÉÍI\ró3zérC¨Å$Þ€V–œfNvÿ¬¥ÖÓ…æF,'Lï¶YæÅTN¢¹]k¢+Eû‘y)²=°8Ó Xbq&LŸ41’^';YÕÐ ‹³.`æå©ÇKÎ_Lg hÉÌÈgÅ@î,›'ݶ×ä³bNeë·v„'­É¥DKZ/Šn^G.×L¦©°¦õ¦èi–2õ*Â5Š­hͺ€éÝWÖO*“¤5/l‚%­™P:kJ½µK¼x:×\p‚¥sͺ‹×Œ‡ç-h;œk¦Æ´r®Y0ëðN£Kÿö²ƒÚ@K¢ÉfÕlvéV‹…à¬-8Ù¬®j~Î9œ¼¬‰&›5»|úšzˆÍ†´--8Ù¬5£ÿ¡'M¶G hI4Ù¬õ1Í£•+ƒ{E°¶àd³¶¶E®M5™ýÐ ›ñAÄâ–áÍqž|R–< O~!9¥ç]{»ùW'µyu-©ÍÀ;‡í×ü'w˜eè“+N·¡ü§Y´t­–.–LÙÊnrÈÇç¯ÖD“Ïúlcw=#h1+ ¥Í&Ÿu‹ V‘»\O6¬ `Më°×Û¶/É-äg J¬‰&©¼3Æ­ð°àLÁ heÁ™›ïÓKr)rSÉñ‹,iÍÜ|Ÿ¬]ìxÈogüŒÀšhÒÙ%í[ÆS-ÍŒ`M4]¤a‘ËèŸâÒ^¯ 6ÐÒ^“R,–)õç¡&šœB´$:€«0Ñ»¬÷øô)R¥Ùõãù°ú3_+ZR›œâ'Äÿ’íŒ.ÁšÑG2xŸS}XiÀšhÒ™íToõÖI÷´à¤R¢…ßÌÍ·ŸvõÉ]Å'+XÑz37.ƒšÙªÉ¬‹3ØXqJ7SxÍ¥ÌÝço©®øâÇä€\ñÍÜ|ûÑ5ïoÞ4v ´´×¤3û§±~ú¯H{M"%XÛkzHÛÓís—¿ ókpk{Mi{þÖÏ”$š4L°&šlfwž¹9µèfÔZ23²ÙÞÍ.ýaa¥°Ù@K¢Áf¦DÛåšÜr g! Ñ|Õ^és:¦zkn¶ì@ŸôIµëh%ÉeÉ‹ ¸X²3vÈöðïjÄ·s¥Ú¢On¦ÚÞ3me9A…Q@kj7Š9½§òŠ¢éŠ°&ºS´r/½BwÅýZ²qðÙÊ©¼ÓzT­YÒÀšÖ4qï¬Ú»> n±¸+ %­¸-/!ù= o9;ãûâú”…»¨ö¨FÃSçRVw´¢6sóÝÁÊ׺™ÃfÓ= `i³™›¿üc~©—TØ“èFÑk¢áž­’›Å‹zkÖÅoN--x¥èfŽüµ˜û$šj-‰& "’×XËžaÐhÅ3dnþ*ë=‹Vxw,y†ÌÍ_Õjߺ«ž´¦‰-iM:«ÅgˆŒó’´æÕE°¦5)¥6£…*÷Â]l;ÀšèðÃ{êž((; ÙèÓËOW¹¤ôE‚Êz­l6“óWKÍ›ïËùk»Z9Øì¢¸Zm¥U}XóbIB@K¢¹àÞºØçËÉ$΃M°DâÌß²8ÊŸà=Úºö? O®FØ®‘Ì“ßò—Ÿ]eÿ‰>É&73yï&ïv ¿hi·IhmyK[ÝçL¥Öv›„fŽü´ýR½…ͼÎÖD3Þ´¡îUÔw¤¸”`I4³ó½µªíÑß‘XÐÊ^3;yÍÎhr¸¹YkÀšÖä3 ÷(²™Å`M4ù¬ïYkÿâE…M‚ZZpžëaS¹õM>iM'XÓšîÙh³´y«ï=iM'ZÒšîÙð¯7í‹»‹Uè-‰&›Í4F*E¿±YÐ’h²ÙÌRB¨J°¶×<š³Ì2Š>ìfwºg£O®O×,kz¿Uíç,©Íä|‹½ãPS“ó7Ó¿XM:›Ó;8ë•à‹-Z±3&ç/ßÞ®3°N¢ù˜C´$štæU®µ]Š N ÎÃE°¶à¤3sc³&: %­#x®RÓïn=9¥-Ð'›=íˆô¤¿j„x“hImò™ýUç’Ëœ6k‹XÛlzgÛ?lç&›øæ7€V´fn¾#ëª[ÏÍgz@+ÑfxßË[d< EôæÆ€–DƒÎìOÆ ú„ŸÍ’Ñ€–DWжÛ'K‹ìS…U¦d€¥W ææû'‹‘—°›GKÎÜü¦7#Üò¹ÞüÞÐ’…ðòÑõhçñDgtö€>ŹpÏÌ«÷¯:‹o:´¤ö¢è\,Þ—»úí$¬mö¦hŸ¸\—œÄ>Ô´¢5“ó}¹VþbJÂæ$©€V6“ó·¿²¦"ÏTZ¬÷ `é`39û/1k‘9%* °&š´PÌËi¬zrÅ'úŽ= O‘í¬”é_'傟ÍQR-m6ùÌ‹©[½4-;­x °¶âƒ¢§QñÖ?„—퀖´&)x}–Ú#(´_ `MkÒ™E‹©÷-{g|D `‰Î˜oŽžg>ë/ ›3ªZ¡³E:3&ô I9iA2À’ÖLpôGíõŸ,*MkòÑ’Ö¤³÷ccÙ—Ç“hÞ]DK¢éµì^N–£{¦Š°¶àôΚ9Xÿ™è'iͪ̀–´&›5á-Mý‚¾™–ÀšÖd³6Z¯éÒ.í$šDJ°&šlÖÌ1¿?柜tF´´àüá£z½b/dj< O~äooZ’z¤ûƒO†­Ü;ˆ®»•|™Çtº?š,ÝL 5.òæŸCÿÚµ WüOô)ù˜TÚ»¹9骞r°8ÀšÚä³>JßKwJ{Øk€5Ñä³n¾Æhú$©Í'À–ìŒ|6JɵÞê8N¢éÒ-‰&ŸyŸ8ÐEó!ZM>à ÷—¾×¼° Ööšgs˜ÏÓ:F<ñÙ&Ÿý>=†7oÍΧœ³güå¿èç/‰…f6ÉËñt; ”D´$šœâÏùÉSÙÔͦÒ ›í %mwîžr"Ô»!ÇëÖD“Îæ²Ð©ê‰P›‰P--8éÌó#íºÿb¯I¥DK¢IgËh8OýÉ0<¬-8×êæÈ·¬‡Øˆ–´&-££^ºz|ŒôuBK¢ln¯2H·v¶'Ñ43¢%Ñ 6Í…·Ó!/w°´×™l¶[êÆ…rtÏâ®ÖD“Íüg,û¤#}ÐÊ‚³gÿövim^>a´^Ak€5­ƒ¡lûµcŸ¿o͒سÿ}úrÃmèY‡î“²z>€5µÿKgëÿÙ9-=éí >Vú:¡¥Í]›—?Ê·æo;ÁÀšÖ“¢Ûô {9Ðý-Äø\ž]½(Ú;îg}B5rÿA?º&zSôN#÷Ï㲤u °¤õoY€¡³­.]~;ëÜk‚5Ñ™¢«ñÿµnæ´à‹²Vü÷YâÞï— Í7ôËœѧ8·RíQ†±Âv¶ùË–Ônm.m—VŸ§Í °¶Ù¤3»lÕºþZÙHgDKZ“ÎJ¸ëýåÿukZ“Î|~ÉûREót¬‰æv‹WO¿¥?åzÃÄÿFŸ—ÉgF ËèQ?Ù‡“he³+ù¬ oóÓåì¯Ö `iÅ+ùÌÛÝx^¨®5//¢%­ Dך«’€|üÊ× ­8 •tV[kó6˜èà,lž.‚%g¡’Ϊzr‹‡µym¬‰&ÕÕ»/›¾àÜk¢¥'U³ÙüÓ^ÒºS2ÀšÖ¤³–fMSNùÏðXMïÌkšÇÔ“Ô'ÍŒ`í\“ÍZO£ýÌYÓÎ5Wœhå\7²Y[e½û(Ë¢é+-‰&›yÓ²|+)8,ø °´àlÖÍÅYך‚ƒÖlF´¤5ÙÌG¸ÿgLŽ&š7Ñ’h²Ys{+vyÁƒd€µ'›õ¹Z¿ÍŽ?‰&™¬‰&›œüíMOyë<\DK N6#¿ÓT­ƒd€5­Éf£ö’‡Ü°ŸEÿk¢Éf£uûÙ—j†ÿý T_'°$º“ÍŒ‚-<×{×ïd­ìu'›yž÷ûÂ|_s³‰Vîë@ 3›‡š1Hð)ÖìŒ5ÿFŸqÒÙô8jdõÙn§~ø/Xº°Ã³ÄôÉ)[n bèNµÿDŸÔ»ÝvEîŒôyƒzÐÒn“Ϧ1Ô?%ïÖ `mÅÉgÓÇ[·­û¤á‹hIkòÙ2c±¿TO|ž.‚5­ÉgÞ bï~>›'ÑÜj‚%у|¶ÚêÞ¬M_ð 6ÐÊ‚ZøÉXFÎeÝ•ÁšÖôΖOdMUý²G °&št¶VÝþ´­Þ]áÍ`éîôÎ,x|y“Eól¬‰¦wf§¥ú|ùÚ43¢•k3 E÷Ò×-ö¤u¡d€5­+EZ¼q™*º…X݈^>;E²OÞÙ„wö€>ìNµwk½ý=e…_´´Ù8 îf¼;¦É¾øŸ= Ojóx'¬š³þ–³Â/ZR{Qt½4uˆîç!èuk†¶)Úi]›EŸ|¤IÙ@+>Òâ‚û£kÛ·¾J'ш²ZM>+^ÓÜåJ{T–|¤E>+eÎÝÕö)Ÿç¯× ,í5¿lº‰fŸé§[8÷šhÅÂW£h:<äÚàϧÿ× -‰&UO0]òX¼&´dfƒ¢«]¹ý2÷dfÜk‚53›ÝZ+]ùòyê|Àš™‘ͪ…M¥¨Ÿø>~¯XM6«Ë:ÉŸø>¹¯Z1³M6k¹·©§ |r-^'´$:€ý:Yr,¬‰[óoôéÕ/¨]†Xé¬Çþ –6{ó€´¾fåƒã“³°Õþ}R›ÇËâÅRjý‚Tføå¿h…T6ù¬n=…÷óó:¡%Ñ䳞¼oœœÂ»'7›`‰Ï6¼Wïðt{ìë³µ½¦ü–3;%¬,xN<ØæàÌ5“|wM8Ášhzg›w”£r ŸDXᔜè²÷;—Yfq®8Ñ‹çDïl ÿZ)Oºù<½½NhÁÌr¢w6<ö§Kµ²×Ì `m¯ÉfÃ?NÎ"SÊë °&š–2v-eá5æáþȉÁæßèÓóélxnËO‰dâ+üð_°f⤳wã°ë;ëÉÄy²‰–Lœt6«WΨÍÖ>/o¯XÒ:“Îæô.·6Õ'­¹âD+ZókW^©î¾o-¢™9ÐÊÁΤ³åE®ó–Ntͽ&ZM:[mY |!¤ÓÁæÑ$X:Ø™tfnüœUíßøyo|Àš™‘ÎÖ.vûÈæ>НZ23:gÛb¸º/ÝçOZsÁ Ö´&›ùTÔzŒzͳE°&šl¶Û²ƒÞô°‹ÙÚ--8Ùl¦ª¦¼}D^'°¤5«¼ÊØçiÈ_!˜Àšh°™W‰ÙŠúíå“:ö:¡•/…¢ÍѰ›ðrÝD3¿1 6+•¢Ûª»Ê=cv” °Äfü8é->Çv=D÷¹àSÀúô©¬Qí¹ìò©rè“™ ÐÒŠƒÎüÍ^<¯‹“´$zðð’_:{r ÝWø? }zeÝT»øÃ¶êŠ*¹_'°fhAtm ©®ø§’ûuK¢ùí¥äác‰äôO ñ:¡•ÍfU@ÉsÌÞ.e—'­y6 Ö´&ŸyÙV“øâSNý:5Ñä3÷·RAÙåòƒ™,] Ld*þ¥s´/®J>û}*妉ÏÕIwϘ*ÐÊåÅt‰R†yŠU.°ú¤á¾NhIô¤èé-àõON|\`m³E¯Z[SÛÑ~^D^'°&š{]휛kù…£¯4 •gY@©¶`mËMcâ»D@+tƲ€RûZUÎ(ý4+xÀ§°, Ôi‘T»L'=‰ë °&ºôþáH¾±>< O'é#µä\8uG%“ ‰–6»S´]Ž¡?j°ü$ %'µQvm· âô‚7Ñ’hÒY›u”©m~ž ^'°Ä)¬ °¸ÉB¶$N~r_'´¤5é¬-ø†Éf‚¢3ã7¾âŸ&ß#ÔƒÍ'X:ج (}-÷ö…ÖA6Ð’Ö¤3ïÝ5ó=ñÌ8—`Mkzg#yùa—oMV‹°dál6êê>ÿW·pzHD+ÞxÔöÎÓQÃ>@â£O¼aŇEÉEÏðÉÌ|Ð’Ú¤³1ßí±õͦ¯@°¶Ù¤³ùnEy›¦qÒš†F´¤5éÌ.ûäÃíd­y® –´fY@™½/»QtO|ÒÕ ZÑz„%›Û¢Å.gjäLô)ö!ŸùYãâ ¨”ùíP)ëÊÜÓÇ1Én0q‚%* wîJ{ö¡'‰äÁhóoôÉË¡{fèeqºXuó©ÛÀšÚtÏüóI¾ P<‰æŠ¬‰&Ÿ­^Ö_\ÙÌØhÉÎÈg˶)·YÈqÅ–D“϶Ž2ʢó8ÑŠhÖÿh´=…[Üë$,í5ëŠ×¤õ}Éz>°x ¢–Xœueåã–õ„ùõ­°8뼈wŸWä?ׯZ ÷¬&‹f¼‰ºà<׬-x§èæã™¾ˆøX…Ð’Öƒ¢gÛéZwy:\A4ÐÒáš½ºÝº—ÒâÓá °v¸Eos®j¿ *>_'°&lfL”V«—T'3Ã+RKfƪ€š›9ñã‹ôÖÞ´bf¬ ¨vÊ-^œúÍÅdÖ€VÌŒUÕYÙX]¿¹ØX/ %Ñ•¢«·’jº_Hÿ* %Ñd³ÒF›yÈ7}é–,œUÕœéVçíSÙIkl¢%­Éfv6[·Oe'Ñ<]DK¢ØnàœÐÈðÉ^ø²ù€>Ý{\ñúžù¥6fýÔ ½N`m³IgÕ{m®©;gŒsZYq–TóëšO«ÑE“Έ–Dów7»îgÞú‡6–< O¡IÅÑ»ßêÈOjï~ùÐ’ÚAti>¤G¾±WX3€%;Ûä³Ö ?o•a­™—Ð’Ö<]mµa¿[¿@VXp %Ñ$Ãæi#Ë óž´³?ѧw;žì¶§¹´—^ §ÍŽ?ü¬m6Ý3 TÛøÆ)e{»€–VœZ›¡x{<ÙÄ™4ÀŠÖ…evÛWÿp$;¥ÁRÖDÓ=ëÃÓ»|l2)ÁšhºgÞ|Ï¥_ Q6ÐÂ^–ÔaAÄjz’Èæ¹&XÓšt6 ÙS‘}¤Âd¤€–´&îoRj×ÊO9ÃëÖ´¦{6üû`»4¾?½LŠXÍ`sÌn¡“:íò“tð:‹vVÔ±ú^·!ê'Ñ<×k¢Éf3ÏÞ¯ß0NMœh!â+¬ ¨ÞJjÍÛ#ëÉÂé,­X8«ê©Ì¦ŽHø$׿N`ÉÌXPç,£V¹¾*³@7€¥½fU@õŽiÊ“±cÅg@K{M6[æÕÑœ(3W"€5­y宿Üü=šžxÉø²ù€>…]ä”ÕÓðï'êŠçD>#ZZñ zä9†\‡¾°¶â¤³µs¯ûö…ð¤5/l¢%­Ig»xÙL–CŸœh…SXÀ^½—Ôû÷w?Ù™göÿŸ†>M¯í•ûëòtúÀƒM°Äg¬ ¨þ:¯"Kf-vKvƼ3’´½ÐVMR!X|{1÷’?cçLhÅÄ9, YÐôñ>d‡{Ð’‰Š6g#MùÉ0³ÿVkf6z§Ñ»ç–< O‰5“jûœ®Î÷‰õ ¬©½)z%o”cŸ’Â’­l6ËüÈ;nÊg…Ù¬-‰ÎíßÀÇåcðé H¦d€¥gY@óö+ó–—y=‚h€%NaYÀ{>hÛ7F:qJ§l Ná°€–=»¥\é 5“rXÓšt–[ºäzŸD“ÍÖD“Îü´äŠ¡‘ N 'ZZpRŠíüLãÒ¨í¤55ÁšÖ‹¢í²Ÿôhµ^” ´¤5ÙÌ“¨fÙç%;hÍ×á–´fU@«ÙÈhܺ*rYqa´¢5«Z5^­zžFÉA2ÀšÖd³jÁbêİOÌö:5Ñd³Ú†ýW~Ó(ál¬‰&›™ßkVg}"ˆ× ¬‰& ×ùn8ó»×OA@C°ù€>)v]+{ʵnâ<^DK&N:ky{¹þ”Ãw»€V|V´ÖÖN}êîp ¢–D“Ό̓¿äõŸ5¸ÞKn «ÌÍèµg¹ãra§œ–LœU­§îžÆ…Ny~$¢3c¾\뵦¹÷¯‡ôtº8-à}z– ‰wãzÛü¾­ØËZ7§²Uµmþ§LéukvFïÌb¦ê]UÑ,4 `M4½³¾sÙ?oÚ‚“Ɖ–œ{=ìÊ]íRÓ|ÒšFJ°¦5ý+2¼‹çvL¦{@Ÿ^‘è- ÿœôº¥½VVœevÝoóÍ·ü݇í·XZqN hcØî—o'Ña»ÖD‡ŸæâV9["³%Sk¢éžå}H.-N6ÁšhÒÙ|·ÔÒ» –@*DKfF:3Nõç][M*%ZM:›3û[~¸˜ÌÐ’hÒÙ\^V®öOùäà¾N`m¯éÍݲOQE³ûVk¢é­÷´˜KæØI4)…`I4‹Úªcýç3¶×䢕½fQ€—„Í÷\*Uk:gkZs»V-mT/>yg“ÞÙßè“[Ƀ½æËüyÅûÑÒŠ“ÎÖö¦NC7qžk‚µ§ÖÛ«M‹ü¯Oœ`) `U€OÚë:+ó´à4¢¥'mûÛ Ãä'¬-8élŸS¤Î}ü¼ù½N`mÁIg,zB‘þʼn ûZ »Xลù,y¯A¥­ì5«zò'‘yiÖ|Øk¶Ê `i¯YГYJîC¾5™þÀšè°d=QôŽe¡£ÆúT°Ó¨vßÛ"ùÙñ‡ÿ‚5µ;EO‹ÏË¥eÙIt§h€5Ñ ³žÍJûºÕ¹žLTÐ’‰OŠvÏ®M}Á%¬i½ºÏ6qç>› ÁæúôÞÈͶª^Ô «½ùÖÔfY@ÏuŽ]¶š²Pj °Äâ›|–Íר©É¢ùdÀšhòYžæXÖ.7ëÌQm • „UÝû¶|ë™|b$Z)Ñ’hÒ™­`Ÿµá§Ñ@+›UÝû¾ô½T?¥°ýVkN:³ë¤•‘ô›/ -iM:«æ˜ïöEz _Z½(ÚVÌS€uÑ…¢–DoŠî>€W~¿*ì&ÀÊ^WøCo­~»/L( `…R*sp{]FG©É©•5¡Èé}*»¤‰·d›Ÿ—þ›“…Zà”ʪ€Þª?mëó”2Ãû€–D“ÎZ3fðÏâfóe:€µÍ&µ9ýQJÿ¼È! -iͽîi­¾ôúªÂQ-ìÊÏ>ÝSQ˸µÆ;‰æ^-‰&uó5r¹t§;}ÆæÑ$XãÒ™·]Iú‹aH„ `I4«zŸFÃINE*+ˆX²pVô‘†ç<è”î¢ gU€HY´Øõ«kÑ@+fƪïÞ;½QM?…hI4YxL³x&=ÝýÐ'B"õNµQŸí sYX3qÒÙ4gÖVí‹Í&-­øŒà]½…¦zcg¤Ñ> O•x´ñÙ¼ZHo*^øRÐ’Úä³Ùß=PäÍf÷­–6›Óú\ÍÛbè/Ó!B'ZÑš)=vç%Ÿ6VÔð¾ºg£OÇ‹›½rßß4¢*áåŽhImÚ²ko¹wd©aÍÖ6›îÙªö˽¾(:Ĺk¢Ég«ûÞ%çÛ…w;‚¥{“e}®ŠÄšÇ{“|F´roºgžå‘Ç­5ÅÉÌÈ)DKfF÷l¿Û_RÇN{Í›`m¯Igž–9Š<»°ø=€¥½fU€¹WÓÇ„y¯ƒF´²×¬ è{¥Q~züZ×ðžB°¦5¬á}¢ë¨E¾6+äЧìHœ.Ÿg‘|z£ºâ…Õt-­x§èÒÊîIµ³ÊJ£ÖV±2ëŸ!*sYXÝ(zûœƒ.?#…b̌tæ_íFÖk@ +_ZM:+uÖÞ²ZåTé“°¶àÜ®ÒÆN Œô4„|èSÈG*-æWÖoNWøák§kSôÚvéî‹K{J&­l6“óß½MÇÖ“‘j¸»ˆVèŒÉùàɢd5s¹ð6€¥gËþaneygA¨Zç hIkîVݹ–‚Úǧk³Ó=û}²”°â{åô4õÊþÚ-©M>kï~è·¶JÑ|¦ hI4ùÌ_%Z[I¶3’8Áš‘SÚ´9ëMý*gq´¤5]$ófëÜzc½Ê²›€–D“κ…3ÿI¶ÐD“SˆVDZè>³~ý+ß@c‹ô)–ŽJ5}S¢[Âf­°8_°†ÅèÆ I¿@ØÏ< %ÑÔz8K,}^ò»¢úuBK¢éž »þ‡>¢FÉKŽ _äÇ0b0+ÕÝ3ö×hIkÒÙ˜«ú”Ykú)kZ“ÎfZ3%ý£S #Ñ’Ö¤³Y—ýö[ðA4[ž´$š„4›'öë“!ªg‰üŸ†>ýpnö{çë;ëJ9-  *ev¾­Wò"vµb´°ïqK×&[öû¬š²z×=Cš8ÁšhÒÙòû?ë +ŸJZZpÒÙ꥕Ÿ/V’h&L´$º°OÉÁ駸k¢ü}ºøx²×h= ¹ì¦°årk›M>[Ó¨xdµ2¹N!X¢Rfç[ ºÍ¡Ö§c—p°‰VøŒM“-RLµ¦/|¤E>û}J2áñÚ>¼¦\ŠN+N+%XZq¦ç]½ìVžd[Ù¸2€5Ñä3Û¬–jÒ=CŽ¥he³WXðm×}úÂ=ktJ‰–DƒÏì®okVÝ=cédk Þ):Ï>óåMý š?¬‰]Ö0ZÒEWŠX=)º[¨šõ¦L¡H@K{½(zø“ú’™”% ¬i½)zY¬Z.'O¢E,‰frþLÛçH®ó’D/ŠX 6›^UÊ–3ä G´²×Ì™Ù<&Ï\“µÞ” °¦u¥è6×¾M·>ˆžA4Àšh²Y9ï[fÿA43ÏXM63¨˜[_¥Ó•K'ZÚk²™Ý¸©ÿLó“´æ¹&XÓšlæ$Q¿¡[Âf-iM6óá¿ï‡WUkžk‚5­Éf¶wk¡Ÿk–ò´ uã·IÏÞ ²Ô‚€–ðvö€>RP{M;œSæ”Í ›`eÅéΚ“’Þ¨§%”‚? OßOH¥Õç(z¢²ã/ÿEK»ÍÃY½@ké~|8Ôþ}Ê$—š«·w×ûU~k h!ÒmLÏŸX¬ªa¯3¬8Ð’hšlmo=Ð Û°è6¦çÏæõóë2”õ$šëM°&š'»UOIÕ[³Vöë heÁ™ž?Û{œŸl2ß.€%Raz¾?úÁéßB­R@+›éùÓNG2J’#¾Êú®€–DÓ=óárþC^pÞ›k NJéÕÓaå°+Þ|k¢éžõÑíÓîÊâ—€–œlÖ·y9õöÌz:\<ØDK‡‹lf>¼Ý?—C§Ú*M°D)ìÙo•ü„¨®x¼÷ÖöšnåøôåûŸnÍ‚·³ôÉR‚Ú=§^ªT–´bgL0¯Ò‡ïËð¿¢ó:Z±3ö쟞^2½}´jg´p‚%;crþœÞctË­õ {<°&št6³qð.jÒ˜oÀ’‰39ÎæÏ~UŽ@* PZ23Ò™¹ñ^g '4&#´df¤³i×^Îr‹‡wùëÖöšçzyþ©gj4¦ú´¤5³eìÿŸ/7’ÖA2À’ÖLΟ«y%‡ÜÔ¯°§Fk¢Éfþå&ÑÔ¯1Ý. •gËþù.#O—·üÓ¹’–Î5[ö›zâå-ÿ$š·Ášh²Ù6 þ"7¿±2,€5Ñd³m~ù°¨Mg32)Ñ ›±,À¿ÛvÝÚwÌŒ~ Ñ’™‘¶±BªYΣmy´èSpONÙ«®5–zkÖø/X;ØAôöêb¹¡` ^ Á’h~ 6´Áûú}Àzr ÏþFŸCØø²ð¡Œz)©>%çƒTXS»Pt^½çKIõIt£h€5Ñ•¢›Ì¥OB_º¯Z9^¬ XéÓƒQw‡é"´$:ìõN>XOu‡CEuk >[9å1’s«ëb)'§™,™8ËÖHv'ä® N´bgÌ[öJ¡œš<œ® `Mkzg£Í1ç­ßÍAkÖ/´¤5½³1×;Ý[·p:†DKN:ËßDäÊ $¬Y8él&÷°ªú;ÁÚ^´ɽb·žî®I:û}J«¡Ms=ʾµü?ÙmœhÅÎØ´M;ï!2âŠ3E$€¥gU€yv{–”äm,› `M4CÿjÔ÷Ò¿%¯ÊÍþ}Ú® öNcó‰÷i³£™-m6ílyßtËì?ˆfæ@@K¢Ég;Íÿ¤o)›Í~P¬m6ùl oYpËq?iMS!ZÒš|¶æJeoùÆfokZ3Ú\Ë+Hô·6 `M4]ñísì“ÞB¾ÙD+ β€µí Ø?c %­I¤KZ³,`íQó·Tּؓ7‰–´¦w¶w«{ßÒÎ;M´â,°,À˜Ð'ÛÝRÇNZcÅZÒºQ´·.·1ê'Ñ›¢–DwŠ6øJIw‡Ù¶2 %Ñ`3sëm> O9ÅYµy‹ÚN+N'ZZñ z+¤ªf.wC°¶â¤³iNe®zz¨ hIkÒÙôÏ¢I¯ nlàÐ’hÒÙœvŸ,½½vc;Á€VD³,`{v¤çšËWÛA´ru±,àÝÝtM¹ph<ÀÒýÁ¹vôS ½kÖ=qf°tº˜xfNƘ©é_!‡‚´dgAkó¤}š¹ªu Û°¦5c¶µ¼óäú 7{r³ÿDŸ6›——‘Ýmªß6{ › °¦6ùl—äoËò÷ÅÆv-m6ùÌ\ÚÖ:†Z<‰f+ª€VDs\À¶?×u¹N NK!XZpŽ ØÛâ—œo#OZÓÆ‰–´þ¯{¶ÿ_Je ëïWí·)Ó?hIt¥èº¼~Ev~ÿk Þ(z,sæo)×§»«P6Ð’Ö¢×ûû°nf›’Ö´m±jëëìiDÿÖBüÖDOˆ¶¶Pï›ß~[jüƒ–|QtïÞƒQþІ<Ð’èMÑæÄ¯}yc=-x§d€¥ïÜ®<«ù8Eέìý¿UNèS:Q¦ÚþUôì¯ö›7ðZYñN:ó†(Þ¤A̓M´$štæ_hëÏ»„´Ù<Øk›M:+c D¥kM'ZÒšVZ¦EmO"On°³¿Ñ'‰vV“Ï×[{·Å“M´¤6ù¬¾³àä.нñl¬mvøÝÕ+i@¥'{cÅÿFŸbÕDµ[õo¥rªF[4r¢•Aô¬f.zÒ[Û$¢%ÑÁΖ?ˆÈMæz#§,mö Ÿµ<Ò®úxìöûÝç´¤5ù¬•w/v5#¨ÿf©ÿÖ´&ŸµæmÈŠû42ÁšhºgÍ.Ý>oY¡§çÙ$ZZpºg=;"7ëEãü?hI4éì3Öûâ`œJ¬-8Ý3Û¼œ¾ˆÑï.¢%­éžõÙ“ªòµÙSPhEô$›õ5ò¼¥¸Ÿœ½æ“Ðöû[έÔõ¤6Ý3¢%µIh»y›†[ÆÜI4Ý3¢Ñ›„¶g±ë§è>R#­-‰&¡íw–à¥ûã‰UÂz,±Ê&¡íÝÍRôGA#%X ÷Ìhxxo<Æá°&ºQt]«'ýa¡·FÙ@K{Ý)zÚõS¾Èy›“¢V>¡ïAÑ+mÓsŸæ3dJXú„¾'Eï:Ë’'T¿§× ¬í5Ø,¿«³-NÖ÷§+ ¥½Þmv3™âþ(š{M´ z¤DÑ£{3©3ø´à…’V|ð‰6çm±P¿T´æGŒ€–´›å’Ì“NãÜ ädá<Ö+>ÙÌ”¯¡-îyQ6й‰læ‘fͺ֒Ö´&›ó+ëÖ;õL'ZÒšlf,¸ÞW¡¦uãRkZ“ÍjZ{uý¾ N°v¸ÈfµÚ¥ûŤÍ÷G£× -.²YiÖ®Ÿ0ZÉfuù€·${)“{M°´à™lf³–qÉ´8‰¦¬‰&›Yp^¼õ¤¼àƒ$N´´àd³æýé~Zi¢ifDK¢ØÑÂ"Ÿ‘ûoäó€>|4ñ¶æèM/K_þ‹–Ô¦•¶]íJ@ûCœ;ò¤Ú¢Oé¸Û]kê-æùZañL>ëÕB§ziCrbqzHK,ž¹Ù½U#Ä$¿V2c!€¥“ÍWÖl¬Ü ý{@ž6» Sã} !‚ÚÓ‡²êi}ƉVl¼ÐÆûYû6Éã :D DK¢iâvØæó >m66ÁÚfÓ=Ík.¿xÓ˜•²–´¦{æM~ÊüâM#8ÄDK¢éžM;šé‹ì=ĹDK¢éžù·÷=—~°ƒd€µ½æñ˜mx•ÜÚÛÛ5þì¿Ñ§“4ñÙßÃξXñðËVV¼Ò?›«úÍ«›ø"-‰¦æóÛ[ÖëE™ÀÒfWÒÙò;¡}AgL< hIkîµw½ônѪ֛ëM°¦5éÌ[&^UÑäp‚5Ѥ³µük°žó> ´´à¤³e–2ó%'ô¤5ï‚5­IgÛŸÛ) ›fF´¤õ àaGDï©1*éìoô)¯†~Š¿•¼õ7ÚÍÍ&ZQ»‘Îöð¯“zÑÍ&§,m6óhKJvóåOv¤äŠ3ù+ Wœe%™…öÛè”Ó’DÉK®8ËJrÏctµcfËAi€5Ñ¢}xâóÎF Z¬íu§è±Š=¾ß²–,|PôÞÉûTë¢E-‰•\½PïDõ~f}Ð’…/ж»~ö.?–BÉkf¶‰6—§°3Å“öôˤè“cȃ§·a_ò#íH¿heÅ;é¬x yÊr“ëÁø> %ÑÔºXü²oƒ%[T¼Õ÷¸N9¬8_äZZñ ºûX½Ë$ÁÓŠÉk+N>+Ë“kn£Z·°_@KZ“Ï|Îóª·i™'Ñdq¢%ÑäáZýæËrnÌ`YÀúôêÇ+»¶÷x ¹ûp¤C¢µYà½A,„¹<8žfÆ –ìŒeþ™ÎBÕ®_^ˆ–´&Ÿµä?7Ÿä¨Pk‚%G…e^ê5S½5"9±x¦l oe^öj«&—ÓD+#XÓštf>¥y—/VÑÁ&XM:k{xù¼ü”3˜¥ÐÒ‚“κ¹W¶êãÙÈ4p‚5­éžõ–ó&KZ3i: %­7EÏâIò’ÑE­œk–ø#…ç`™Íè§,±ËDKZÓ;[Ë'_é¤5Yœ`MkÒ™Ù‰ªÓ9…u­hͪ€â=|çmôÖIkr Á’Ö¬ ðÅÕºžŒ4ØJ$ %­Ig^ÍP×™”XÓštfÑy«#Ë~ »,°&ÞYMþ¸¼‹\å4芴´à¢ým‘ëÊsÔXÓzPtÝ\ZÙÂ[P`Mt@7[/Ž‹yº?6¼³ôÉ;ËTÛ6`}äË`¹O@K›½)z¯Ý“Þðl°×A@ ¢'ËjΩµ[ÏËÃf3­3€•Íž, ¨¹äÜÒ¥î$š–B°&ºPt÷·19‡gÙf@K ^)Únà4/í…NZoJXÓšt–§yWMs™¥ÀšhÒYI#™K«[8óhZZpÒY©žy|kõyÍsM´ð’3YP½;ÇU«Ú±&XyN™, ¨e¥üÕWŸ´ZÒšlf„äy¸ú÷–´"šeµúÜ´Yô÷«EÉK β€Z<äVƒe,.–ÔêÍšÛ¥œú šyˬ‰&zÞ䈶‡ {f|Ø|@ŸÒ·F=לò(»Ù¡OÎB°ñ¹=5é|ù/Zá³À«®=ñ=¼`MÖ< OKNViÞ*!Ý^—ÿ=ù" ¥£D—²Ç(r2[‰°v´¹Ù͇evy"ßVJ°t¾Øk­ú ¨½õV†c„Z±³BBkÛ.Ý¡w1ÌRhI4 ­›7mŸÁ§§Òk N÷¬×Õ[Ñ' &È´¤5ݳ޶‹Üi0…7€5­éžuO3¯r{íÁ„ÒÖDÓ=óf>ÑOÍsM°&šîÙHÕ[±×<ØDK{M6ó>Ÿ+ßšID3ø!ZM_ÂGc¨®ß‰gèÓ+Ú™sp_·ý: YЊÚ, ¨Íx‰µngaÍ–ìŒeu˜“Ó¶Üvl¦ 4ÀšhÒ™]þ»”/JY‘ÐÒ‚“ÎfÛ¹·%×N~¼hÅW`Y€?A­–/i‚'_çš`ÉW`Y€G‹µìKúÖI4Ï5ÁšèˆöÞ z á¬|<û}ú|ÂÓ5—Ò¼¤o†°‡½XS›ÞÙ´‹oê_ï'³‡X:], ¨Ë‡xóOU4íŒ`M4ÜSÖÚOÖšv°©6ÑÊÁfY€¹8ÉSkd: Ñ ÁšÖ¤³µrö:v]kzgDKZ“ζýóBœèŒÑ ±, šú›c‘Eó›S@K¢IgÛaÕ¦k‰hI4½³½z{ê”B'X¢–TOè1V}…Éþ¬Y8 Å?ï²Ðgá‰ÄYð€>E÷0ñ–Ü×+ú€¸Á:Ù€VN?¾´Ômó¯sëO¢Ã¢-‰.=}Òœx6™ÀÒf3ý×ÐÓÇJè76ËЧ¯“›j¯ì)¡ê£ádVNkjƒÏŒþKjõÖMêðÃY1ÐÒfŠöágãÒLê¤õ¢d€5­'EWçB96m¬‰^mn½÷´ÕœVJ´´à4³ll¸šÞûk°¤- Ñlgkà½=¥Htzj< Oþ0Õ.9Ùñ¼Ä6›A,m6ËZ± ë×/£§” ´´â•¢Íó(K¯_ ÿZÍ»Ë;‡•¬_ÙL `mÁIge›G»äïØ““!XM:«eõõks²# ¥'yë®òSF®y†ä3¢ÏeÍywsä/º“ŸùZ~·®_C®Ÿ“îÙßèSQ9ż»4w’ŸØ23€%‡˜u­ÕäßþåjˆÉ¯É­¬8ëZó*Ž|™'~ÒšlF°¦5é¬u»åONáÖ$XM:óäúô3ãMÝY ÀšhÒY³ØÅâOý`Ï 6ÐÒ^“ÎzòÏFò4òžñ- €5­IgÝÜø’ôW$V¾°DâÐzóDs=7f²/ gÞ§ƒú0Z¹…¼OÞø¥³¿Ñ§oaÅûšk\¾•V¼çðÃÁÒŠ³.À»É¦Õ²òõ°àk¢Ig}Õ¾²üisòi:€5Ѥ³á šþió<ö:¡; / Ëœõ™/ïâukZ“ÎFK¹õKàAt!ÖD“ÎÞ!òªrØ5Ùf! ¥çášï™•72<‘8÷šh…Ä™#b&b´0/ï'§…,‘8Ëš]<%ÕúÅÕÅ'ZÑšeÍ«…Ö¾dÌ´fäC°¤5Ëìh¬Ñ»ÞhzÎ hIk²Ùô¹Ã%«…÷=„¹kZ“ÍV¶09Ës &Ÿ‡X:×áUbeOP¿çúéaa#ñì} Ȥ«¹¥÷ô›, h…SXÐÖìËœÚ ŸD‡%ZM:[kËEÿs„íXÛlÒÙÚ>êÒ7ì$š‡‹`M4él·$w®ÁŠèŲ€w!E½Ío?ˆæw¶ÖD“Î<ý×'<ÈfÆ*Ù€Ìl±,Àâ»öZ’³ðýƒ`MkÒ™3Â7ýµ'k¢ZÒºE°·Ý—sxW"ý>½ùá1¦§Ôgþé\\$Ùæô€>Q)l¼§²fÚ·ÇÃ’ó›S@ ÷æba@·sY·wïM>Ѱro.ôdnå(zc¤É/-i >ë9%ï­;*|P hE4 zÎÕ;x©ŽÊà `iÁYг/5]ò‰þWëŜ逖´.wu Y~cÿŸ†>å(ÒÎòôÌç[ôƒÚLÿ hIíFÑËû4ȃ@ÓrXÛlD›ÝìdùùÔµFÐ’Öƒ¢ý´%y˜Óนִ&™[·Ú^rFP 3‚¥{“eÝ?Ñzr¿~o†Z¹7Y`ŽF-)é3'ÛK´"še½ÖwýÊZOŠZM:«Ã.Ÿ~«->}÷!#-‰.=ÍÁZ—âdfAi€%3cY€1á¶Bî ¿RP`M4ÙÌ¿"äë°³Ó‚óÖ$ZZp²Y«µå"ûÃÁ­ `Mk²Yk­§-·YX̶ `M4٬͑|”¼àì8ÐÒ‚“Í,JÞ³5ìZ%HXÓšlÖ‹­ØÒÇ÷N–¿´¢5‡ÔòŸ†²’ÖA2À’Ö¬ ð/)·[»›“Ö<\DKZ“Œ|Àõ¯è§Ð§Ò9û}J˜ãÁîÛòô®!G1 %µIg#™¡v¹1Òbº]k›M­Gí>ÇåÂH­™¬Ð’Ö¤³1†7Õ5X¾Ð’hÒÙØÓó årìŧé€V\R6~ñ¾{püû£‰£íúôÞH;óÑ%Nƪ;̬œ–Üa–xóÇÖªüd´°fk¢ÉgÓ<ù´oM›î.¢•ÍfY@ŸvŸÌ9凅.¢%ÑôÎæ¶#Ò䎙£Ék N/Ç"ÏìérˆÝðxö€>™8Oöò¾$©|±Ùá—-­8ùÌÎyÍCnœ?ø=€µZ›?õù +|Këú>‹k¨™~‹Ù쉦{¶ö»€DwJYXÐÊÞIwéÞ›]øØ’< %Ѥ³]§·äP¿€,¶2 `iÁY`·mª;ÝFô´æ¬Í€–´®\½m–¯M–< Oñ"M|//kêgÕèÒ¬­8ݳm7ÏJ[˜ÂÀšhÐÙðº•Þð!áq³A*-mö¤hs,×O£Ä'E­8¦çòñ¿rÂièÓÝÕ©öðNˆSý2zXp€¥ „Ó,<;=Èf5]KvÆi#ç±ÖÖëß'ÛÆ´bg, xÏ(¥èŸ!˜Њ±,`d;!iÉܯ®ÖöºQôô9êr§éUƒh€µ½¦…û¬š–õZÕÉé‹-í5鬼ç+\ôƒÖ[M°¦5鬴µ’¿’¨Z³U@KZ/ŠžæX6½ðe²×A@K¢á™í)¸zÇÉjì€VDsZÀ¨å=Óý|ùœöšëM°´×¬ µ{]óñÓrZ¡V sq¼ÆW?x¶–(…U®M¿Ôºäx”`M4Ù¬¥ažâí+ÝaÁ™šÐÒ‚“ÍZž¶h—‚“Ö<[kZ“ÍZ1¿ò'Hͺ—ÖD“ÍÚÈ}7½ò~16 ¥'›µÙÛÚQ„¾X‡Ð’èBpÏݳU÷l³,à}ºtÊ”ݱ” mð‡,3‚f² å?í»´²–VîÙÌ/¦žd;Û,IhIô èZ¶m ì²—zk >)zÔÞç#‚l %­EÏ‘Z½T5ŸRÅy® Ö´†{6K²@9eùU<°a@+Z³,`–ìï/ý6OZ“–´fY€….Û‡XÊÙ_›kZÒºPô(ž„«>È/¾”°¦u¥èíýöôvÒ:ÈZÒšlVSKv©7ö VF°¦5Ù¬æé3õäw»D,¹â, 0Ç8©}ñ¡mÙ@+®8Ëfík½sýE­ù"€5­ÉfÕ >¥&ǹ+Ù@KZ“Í|8é#tK¢XÒšï¤,Z¸˜/i5ÑŒºXM6k­ÍÑôîÚ‹}õZYp ˜µë%u])hI4Ù¬{×É–¾àp.¢6cUÀìÙÎyª2‡óHKlƪ€i\Ûšª«*lX="z–ŠZº§»b”ÓúÄ…Aí‘«Ý|º›Âª›€–6›tÖíò_µêÞ0{´$štf·ýèù 7…ÙíˆfU€y²mÖ¥»)ÁA"X²3VÌ1¼˜âÖð u Z-iM:{»”eèfÑ’èÀFþéM}XhH£}@Ÿx˜§k¦ÙûÚêWÕÅ&X¬mvý®ø”;Ìíà+,]›¬ ˜v¸‹{¹tO¥F¼²‰Vî.VÌ9²wŠVýv¸5 Ö´&ÍYü ¼¼à¬Å`M4él.ïú#åÞì)À’è,Å»Ò~¿B<®ŽLôétÑÎŒk/óCÐá!Z±3–ØšõÔº€µ§{¶j7‚“‡´í”XM÷l ¯ØÑ;.N hiÁ{›‰Ö-gjìŽLô‰‘Š{IA½ñÂImÒ8Ñ’Úä³í¦3>×to²š. •{“Óæö&ðEY`ÉgKw[\›‡Úº¢ú}qó3vK&Ϊ€¹×È틾+Ð8ÑÊ^°[kïQ–ÜTÜ»NýšøßèÃñöJ¥%÷˜Û,ä `mÅqºVJËßEäÍ&-°&ºQ´ýê´nÕB§ÍÞ” ´´Ù¢›…Yž¶™.ÀšÖƒ¢GN[kŒ4€5Ñ“¢·íWÑç%¯d--8èÌâõÚS¿…N'&¥­0)Ëì2yg¹‹ûb zKLÊ/›>Ÿ§vÿ¨®jÍ–Ë­hͲågá¢ÜÜn1h `MëBÑ;{áŒL)#l5À’…3»~•wz¬'Ÿˆ6ЧóA&->¤s Îß´rºX°ÊϼeyÅ%¬­8éÌçñ¶¢§å¬d-iM:óÏ)µËíQ÷ ë °¦5é¬z½§[ÊZó`-iM:«Í_Õ›þxÆO ­pÊ `Ï=h‚õ°.à}Z3šxÞMJÏÚLŽ hImòY]^‚˜å7C¦°D¥¬ XÞSi”[®ÅAk&³´¤5½3‹SÝXÔòÅÍ$õ–N#­Ö<~é²wÆœéÖD“ÎÚôa·ç˜ƒ‘Òhå`³,À›bloÚ¬‹&Ÿ-‰&õÜÇêò0ÙÍ-8é¬{ÎH¹Ü{'Ѽ>–D3ÃdY¤úî®*G|›tö7ú´]<]þé¦÷Û¥{B“TˆV6›ãVߥ֚õo›!!ZM:¥ôœô¦~+¸†DK¢¹à£6ó+å~›Y9¬ÙélŒ¾½ AךNjhIkÒ™ùu^Á.g©/Ž hI4éÌsõÚÔ_‘Øf:€µ'Íì3å,õÍÔüÖDóö™-{áåï¹þ›SjJÈ£}@ŸXT:{Éy~ñ Ï’¶€~ÞìšX°<Ó"'ýAžI,¬¸‰&ÍÙwZúƒ<ûѰ&šVº’íQ7›ÑæßèÓvqÅ í…i:‹½‰–6›|¶|¢^»4MþŸÿXÊëÖVœ|f¡S›YíüùݯX–Ì“ÇzQƒC/nöŸèÓfµGN­}nN"ZÚl’Êòì–¥æ}À¯XZqŽ ð’Ç%½åTÓF×`!î2Ñ<]»$ŸÝ¨Vü|Яú9î20ùlW¯)¹Ìn<åu’‘Ö´¦{¶í ØSµ¹BˆM°&šî™€i䛇uÊ× ´báì÷¿aJ_)ËWvÆ·ÍôéhbÅM ¯›ÑS7[š´¤ö¤hŸË:nÓãOIXƒ¢–D/ŠöÙ[NqüXéë„–N×&ؼ«:‘—ó´Ù%q³ÿDŸr3ÁgöÞÖ©©OXŸò:¡µY°Ý³KužÁ§“ÍB°t²Y°ßƒÖŠþzÆ\¬‰æéÊ#ʯgŸþ:¡¥omîtkó >elÉkZÃ=³Ë§Ûutk¥{Òš§‹hIëAѹ›Ÿ)wPY|Ì `MkÒYñ÷â¡Nˆûç XòSX°ÿKMé & j­0) v±ƒihñÃÏçxÀ’Ö, Ønð{Ü&ðžrJñöЊÖ, Ø5÷½¶Zúò¹|^'°¦5Ù¬Ú;Šž ²ù = %­ÉfÕ~wïj’ÈÇP^'°¦5ÙÌŒ÷w Uk~ hIk²Y+Åkñ’Îf<ØD+lÆq»Uo?Éß:•¾Ã –ØŒãlýzÏUîŸòáÂ× -iM6kÓû*é‰|< `Mk²YO}Ûv©iêŸ5{Њ֬ Ø=Ïa—®®5­Œ`IkÖXÜä3Båý!XM63hyç#«¢Ãz¬‰®ÝýKüœÂº€ô)n"§ø¼ÊÝoé‘';#•-ÙYmÀÊúfó]!€µ'ì­U¿8]Lf hIkÒÙhÕ£Å/D“J‰–Dóº÷–€öw‘£û†öÚèSÀÇ{˜7»ôê®NÑŠÚlÀµ‡ÑÂÌúÉÎaÁ–ìŒã¼~}ö}):‰&•¬‰æ7‡ÖnÝ­?ÈwôÔx@Ÿ¼úHÓÛð÷o6›>ÑÒfÑ^G~kâ{Zñ `mÅÉgsæ>×'›ZÒš|¶ÌÕk×Þ“hš Ñ’hòÙÊÍ|ó/œŒD°¶àtÏ,Põ¶—ºgÈ,‘€–´¦{¶úh¶Yª?¼9/€%­Y°½;]ë—çÆCì¢.‚¥Ø‡]°Þ‰ýùÇFµØ'l6ÐJìÃi{{jÓ¸ o<‰¦ŸB´$šW×öÇÆÚäÄP–Ð’h²™Nã2âí´×¼4 Ööú?l6ÓÿKɬ®þMëÿÈþ-i=(ºÎwÏ]t£h %Ñ“¢ÛÚ9]RÇN Þ)`mÁEÏV½ w8hýß>îÿ¢%­7DçœÌõ¸=²žˆtA4Ñ ‘þ·,à .Åb'yRÚþï³ô¿`‰Hÿ[ðFwŸ¦!¡høuBKZŠÝüÊK+©“Ö4p‚5­+E[ á3õd­ÿ›õ/ZÒš?¼ØŸeÿG­œ4ô8>£OÏ<Ø%'ßõ«Ï®á‡¬­8éÌëgíú·®I&%ZZñ õ´û$oýëâ»Ûý‹–D“Îü3BùI'’œ”B°¶à¤3/¹ýOsUIô¦h€%Ñ‹tfË{p¤¾à”M´²à‹tfÛî¹êy‹tF´$štf~ƪSs[ °¶à5 —HP«œ ÝÀ)£OžFXñ•¼Ÿ­übðî"Xr½³–³û8òøÞ=¸hD+ÎÂ"+4wwWgèzbÅÿFŸ~8 ­Ù/oÞ¿SV›4N´¤6ù¬Í´CÖÚ£è°h@K¢Égmµ’W=ÿî“…½X²³ÍÃÙýæ«KÏôûo]À3út¼xozMÁÎߨø ¿ü­¬ø¦õÖ͹ûÂΕM´$šþYïcY˜,ü|âÅ× ¬mv£èmdzm=Ð ÞÑ’Öä3‹ÍkY—ý¤5%¬iM3¹—Ò/úI4­Œ`Mt@ûc~ÝúåµN×ßèÓvq³Gëþü²h'44¢¥Í&ŸÙûì_ØÙb”M´ :'úg3¶êCtw¸úˆ–DÓ[˜uøû®x?‡hÁ?ˉt6Û¶ðE~‚ÿ,'ÒÙœ»ÔÕå$§ 5Ð’Ö´ðé7n[rÒ‚d€5­Ig«4ÿ^)‡9щ–´&™/]½ã¿ªuxÊ!XÓšÑæ³¶z›‚{ÒšdH´¤5½³5ר?OoŠÖƒaÁšÖ½k­%ÿ¾Ç?xþ︀gô69å…;Ú%Oð´âüåD++žƒè’Æ*S~ ÏHK+žIg…yÖ³ü ’3ùŒhIkÒÙ}Ö.7¯ß!Æ&XÓšt¶ÍhSF:iMÏhIkЙ]¡FSn¹Ö;€5­E7sj›<Òõƒ~Ð’Ö“¢ ÙÒåáIëFÉkZ/Šö.£[}ÿTͼN`Mô¦èÝý[Žì¦ä¼(heÁ œ3ÿŽæíËÍÉ™°â‰ç’)º$/(+'ã‹Hk¢¹]oŠYz1].õ÷þx@ŸÚ ö§ P~ÁZ+þðÿ‚5µE2ZÛzí » ´â‰—Nð*=7y`õ©çXñ?Ñ?>7çzÎÛôøÓñ j-/òYñçŸ. ©P2Á©òY©£¾kxT­ hIkòYéÉ9ªÉ&´X2ñšˆž²•OÆœäV<ž= OvÆãU–¿üé ÷¿håxU¸gïgŠQôÞ¬{óp-‰®]Ê´ _ÎÙ$b‚µÍæ‚×îÅ,úHŒ½iâDKZÓ=«£•’»ü‚µ+%¬iM÷¬ÎîW€üZ·`M4é¬îdí{̓M°&š»ÕRñOVK¾²ëÆÁþ}:ؤRÿ »ö7vF½‰Vì¬ñîj=õqzúá<^DK¢é¨4Ÿ ÿÓ¯@¹»J¦d€¥»«‘Κù³i}ñ–Ó‚Ö@+w¡ <½Aᯕ>] ­ÑÎþDŸjly²»ýêÝÔw¤OÉçëÖVœ|ÖóZ«¨³Ò>u—¯X´nÆmyFõ燿Nhi³ÉgÞÈÊ“®U­kÐ`MkrJŸuížU)'ú KTÚèždÓ*ªŸ‚®3ÿ¢N餳Q½ùýP¿è~Ú¯¼NhI4ix«Y‡|ô‚ƒý7ú”^OGeXàT,xÖÕžüå@KjÓ=vó¤ÔÔüáO”× -‰¦Ö3ͤ û|ºyÀ’‰wÒÙÌ;ï$ûH1V%XM:óAê£%õKÛ§˜ûuBK N:›+Õ–e?åSQý:¡%Ѥ³•ÍSlrƒíÏð:¡盧ÕÑËëÖVœtf$¼ìÒUÝÜÃf¬‰f¸¸‡÷ €cø´Ù3q³ÿDŸnò™Í’gùâaB´²Ù¬ È3Ïœª|¼‚oG°´â¬ (ÉÙëmªÅ©(²ZÒºRt«sŽ‹uÒºR2ÀšÖ¢ÍϘõòÞxÝ(`Mt§è1·á•EOŠX=(zÏÝ®ýO{Ý)hi¯Ag%çìm¬d:c–HkZ/ŠöžäéöàxÒ:ÈZÒzSô,sýôå“D3ñ, Ñ, ðܶr’ÍŒY†,-8?ò[³Õ[ÖÍŒŸZÒšlVŠw~¹T¥´f’HkZ×€¶Ð©®ß½~ººXð€>Y éÌûX¥–ô¤…@âD+Q JÛûE5 ha¯–¢€E:ó¡Óséo´|: `M4é¬l‹á¦Z„þéÈñ:5Ñ+ g]mþž®§§œµig¢OõBÜl/îî·ÊË“ÚüáKjoò™Wí—¢÷­Ì̘hÅÄ™ôVj+­Ë¼åƒÖô‡XÓš|Vû$š~ Ášhzguln”½3V$°D¥¬ (u™ÙÕ%{g“§‹`M4-Ü.žZÆ­ átwqʼnVî.Ö”fœ”÷%Ïü¤õ¦d€5­IgÍÂTo ¨kÍÃE´¤5½3»ì‡Ý»ú×®ÅÍ&Z:×ôÎÚžî’äÔX9\…Y9¥Û ÎÛsãa¯™ÖÀÊ^¾-{–ùHQ׃Ÿâåî¿÷ÇßèSå>9¥7ï]ü…+Îê•€쬤 zz_ÝÏ%,Ð’hÒ™¹W3wÝg6kk›M:뻎\šüPÎ5ÁšhÒÙx× Ê©~™é)¬‰&êÿåT¿˜ÐÒ^“ÎF[s9¥´ðëbkZ“ÎÆ\»my†Õ'=òuB+ZgÒÙô–û×Î/ÑüöÐ’h:gÓ¬.ïK“ŸÓ‚Si‚¥gY@™>Œi^ºŸDÓ ÖD“Í|rãNrïúOêØë„–œl6·Ï˜zjeˆ^ˆ.ì²i¿Z‘ðéö:¥ ›Ù)>ã{›[y¹îZ‡7 ¢%­Éf«ùlmµw˧oØëÖ´&›­eÁùu®ÄIk)Ñ’Öá‡ï^7óIÂÜRð%à}r4xÛûp‡ÚQÂþä"äÑ> O²¹äÛ‡LSaÅäÊ€V–¼Ïviͼ 9!hÒÄ – ­ÏvïËË>U­K ²–´&ŸÙùXÞô_Í‚Ÿ€–D“Ïö^9Uýkòt¬-8øÌ/lÿô†´…U7-i= î+›ù_)(B@ŸJ'ÕîkÔu£ÃƒÚ¥Æ_þ_´¤ö¦h£C[4¹]Na–a@+¢+Ü3ÏŸ[»^XádgpX²³š):·Ô‹œ‹T˜€À’IJϲHÈÁff‚c@+>Ëüó•¿!ž=Ú“Ö™’Ö´n½Ì‘/rW¿OŽûë„–´¹Û2Æ–‡°Ç÷€–D“Îü]Û¶Ks KUX[p.Yé­üÊÎ,K²[G¶3z‹}ó_ƒñùàîqÇ\ºõ¡\e iH4£ õÉQ©¤³¿Ñ§ ë¬Œ=ŸÖ“¯XMï¬{‡ºŸ­)ˆÎ)ˆXMïÌhxy×Mý[‹-}k²Yß¶Ï·üЖyGÀšÖÜš#¥±ùžûäuzg£O-9eØm[îñP˜ÂÀ‰÷ ÚðÅW½Lâ49Ñ ‰³,À»«¦Þõ\¤Â´Î€VÖ˼cÙl^Ѩ®3ú)KëŒeu¦íí@¾`RœhIkÒÙ,íä./3Ú›`i™±, În¬|ñîÄҀ––YoÆÞõ[$–< O]1¸Äçè³÷.ûÃ,÷ `ÍâôÎæÜÝ=y‰ÓY X[âôÎVÚækl¹Ô¨„°‹hi‰“ÎVɱ©Ó?Ã^'°¤5çTó¯ÌhúsW<~ˆV´fU€ß4ŽºÕ.XŸÆa¯XÓšt¶v·HoÊTBèC´¤5él›ã1›ÞÔ¯0]; %Ѥ³mVY—üéYö:5ƒÓ;ÛmÛÿ.Ó˜N¢¹ÊÖD“ö©ÿ4ü—\¤‰þÚèÓµ×Ù^ɬ¸õÝÅ7§€–>6élooá[äÝU‚d€5‹ƒÎZJÝ›‡©m™Ï',‰fY@K®OŸ¥ŠÞ °&:mGOIù×'}:±ÏЧ«ÎFµ½ ®üð©- •u¶*E¶ÊS'cCŽÖ,´¶u²×­“îIëNÙ@KZƒÏš7b_­Ë»‹ ò¬i=(:w/S’ïh™¤À’wÆçEÃùð-½¹DA6Њ?ÌqÍÇàî¦7—u—-‰&ù œY¾xh ›‹hE4«Z©£[”¬?ði3 %Ñ™¢›&ºɇeÆaN,-3V4ãÕ”»<*íS€ø:¡%­Éf~}“)žéj´$šlV›Ykúu6ËÚ˜ÞΩȡOà‚5Ѥ³™ó´_}Ø™5 %ƒ“Îf± s›.wÒš+œ`MkÒ™»8kÊÝ JXek¢g@OózÐeáÉYÈxÙ|@ŸÂÅ ¶JKøvøå@K›{N;êÖwWXfKgƒ 6×è]ïÜRXÑÀšhzg+ÏYZKªÁCÉg@+gU@[e5¿RµŽGÁšÖ¤³eáCnr aåTŠÖD“ÎÖÌkMydاìòuBK'í”—÷ ÓE3ö!ZÍ}mË}55ج| `ÍàôÎv™©÷ )œDÓE"XMïlw œÖN'›-œl¶íÐ-YN¯,T `Ikô”’y9·Põäãì hÅf¬ÙSÎæbµŽ¯p™°°( §RGirÚr-A4ÀšÁ+E÷Z÷Ô[KÎÎ he™±( §5òì·™¬§jŸBÑ@K¢Áf=gY©·P,|ÅhIô h¶.·P¬,¸ `í[O¢kK›qÓ“sÆ¢€ô馓;Wsäk9®“Ú;üð_°¦ö¦è±ß“räÍ~™­|ì´^ÙŒV壋Ñ,iÍ¢€n¡L^z ’ÃJX¢3ø,ØÙÛm®Ý‰Ä¹Æ‰VHœEæH÷]ê-õ¿¢ÃUg@K¢IgvÚ9^º¾œ ÎN°fpÒYMÙ‡ÁʯlðÐ’Ö¤³OIšÜs¬ÐW`Mk.ROBk%é79tö7úTùÈ]½®xéc+³‡Z²8é¬Îw»Mùý¼2hEtZ¯9–ÿ‘ú±ƒÒK›E½¥äå êx .ÁšhÒYËùÝúEÍEJ°&štÖZ.e¬/6v ´ô­Igmæºû­šá :œšDK¢ÃçZ>‡>铟ґEû€>]Ѷ »´Ê²gýúäM‡…¶êZyèk|‡þ ÖÚ¢è=VËriW­á{,9*¬ 轌–›^ÚU‚“D´âž±*ÀžS·ñÖ‡5ΡF­¬qV˜£‘ìØ½MÁ=‰¦Å‰–Ds™ ƒ¦<՗ͶH,-3VØÎÈ^ð)·ˆ>Ñ’Öä³Ñêô,*Uk%°¦5Ý3s4zI·–—­YäÐ’ÖtÏÆÚÃS™T­;8ÁšÖ¸;ë^|8ëmÓIkÊ&ZÒšl6k*]/í*,J`Mk²Ùôá%«Êþ0{°$:„Ø^¹RêÂ$Ñ ÖD“Íæj#ÕÛøé[Ù@+ßšEݼÙfë´ÈZs_¬iÍß½|‚ûÆ=Г¯0Ñ\û} @egŸ²†'ÙGÙ²ÿDŸdókûû‰A:‹÷ðË–¾67ç»z=ë•“•eè“«AVY#§Òn®üAí°Áˆ–Ô¢…sºT‘9;Ȱ¶ÈIhkÙ_àc’TÏ0|.€%Ïe}¿_nôÜÊÐ% ÏÓ<íØÂÕÛôøÓ·¦{F´ò­9- ï>ç(ú (‰`é[³*À6åÜåZF~Ò:hIk¸gÃûÞ~!<Ð’èNÑ>¬Ê­ ³µX3ø èáuÅéâk´f¥Q@KZOŠÞæÚ­&W´UrJ@K¢ÁfF„Í'k«­ S¦X3ø¦èjž|Ö'›†? ­Y0²ž~¬‹æ 'Z)zÛÂY_h½‚Ö@K¢Áf£Xø8Çm¾ÂI4΀–DWŠ®}zȨ.³ 4ÁÒ2cU€÷íòK(ÝU`ne@KZ“Íl·$?ùd­;%¬iM6ó¹«ý[3ñ, %­ÉfÕ»°O½¹váÄ—€V\VxEöâ0ÕAŠ’–$V ø·cTÍýª#ˆXÝ8+`1nóëÕ6"•iˬ‰&›ÙÇ2wö‹ÌÞÚ´ð­ohGË#¥/2c˜lÀšÖ$¤Vì¸O˜³ùðµ„`ó}ª_çÆöù³ëµt¡[Z@K'#5ÏOL¨*{T{Pí?ѧdÏ^ÛÌ¿j?›-MÊþ}êÑ@Vis-;úôÛ3IhK[ ¢×^»%ù~˜Õ¬œ u£§òOݾ°¿;Q°´¿Ø>et›zùbáÕt@+kœÓ†—NM/_,¬î hI4 ÍKÈW¾¥Gžx;›hI4Ý3 ^,”’mFZ XûÖtφ_.gyÐfcç–ÖDÓ=³Ušíwëy´ ±Z28YÜ~¹ø²£Ò˜nÀšÖtÏÆ6 ëS@Ê Z-iM6óÜä†Pµæ¡K°¦5ÙlÖ±æ¼M·>hÍA­hÍü”1ýÕ¨ žDóø ZÍý1—§„fù½tÔx@Ÿ2ȤsÏT¿(ú/, hImÒÙJ«—~™zZg48ÁÒ:cYÀXÞÇje™S*sxZÒšt¶l¥Ì~›Us¶Ñ’hÒÙÚ¶H«Þz¸²½v@K¢IgÛLº^´Ù‚Á‰Vœ3–Œíô<¨<$‚%çŒecÏbD|K =h]‚Ö@+Z³,`ìÕ,ZjneñIKZ³,Àó2s/C&ñÊÐÊ2cYÀü4œj´Ù8 #€%Ja/ô™šÏ/Aîñ‰WD›èÓqÔ6§ÕËqP›=°XS»´ýìŒaO_Aí¿Ð§n“jX¾Â …—--´ z”öÅÕ8Y×2B’7vXfk¢ƒÁ×¶/&W‚7öe `M4½3od[¾`UùîÐÊ·fYÀ^Ñäv‚Ï‹¬iM:ã·&sJcÁh@KZ“ÎÆÜiåËuãIkzâkZ“ÎÆN{.=`7ÚÖDÓ;›^çšõ  ±iL@Kç=ýaºÉS¹K@XÓšl6í$k%ɔ‘F,‰ž=rÚ˜“öä"M4<{@Ÿ¾ð±-DÎvêê›|F´ò±ÙÁwÚþði¥òŒ6¯8‡Ú¢OÇ&Úr?Ã[8«j³=Q@Kj“Ï–'(v½ÂªqZY@+—´œ0WGèúÕ4I…`é’v’ÏÖ(3%9e¡F¥ÖDs‰ûÚ1>ç½dpÖ3´dp.3ïUP›^öß8. %Ñä³]çÊ£ËHÚ–øŒUÓOòŽ!K‹XMïÌŽ½±f’ÝÆ'§€Vö5/ÅW2öL*]4ÔhIt¥è’½AD‘ >(`ÍࢻÅ.é6–è¤õ¤l %­;EûÝW½¼Ÿ´’Ö´½ÍÏórÞŸ´Þ” ´¤5ØlyíÚ—£'­)™`MëEt6ÿª&¹´Ë»èýs`? Ow‹j×mÁЭÁééi³ñ—­Xœe+Ïwö–îóÞ. %Ñ™¢—·*²?<‚d€¥Í²Ÿ~5½ÿ¼®5éŒhIkÒY)ÞÀùòzrÒ:HXÓštf”à‘“ZÚUݰ䦰,`•±vkzwí¶ƒÚ@+¾ËVñÁ,ÏI«ŒîXÓštVß|çZ“ʼn–´&¥x-ýjrõIå8¾Ö´Þ]»é% •qn+¢;ËVcÖä´å¶ƒl ƒwæ~yS*]nðPb°¦5Ù¬î÷”U9òá˜ÍÖD“ÍZÉiýTØ*_ hÉàd3ãdós.‰Ç'"åiO°B¤é¿ë=V¢ës6;«ЧJ¼ v>ÞM¾¬ä­Dkj“Î,ÞžïÎ$ò©L´pjv,óP}´ƒ|YÉ"ÙÖ´&™?÷—3÷ 5+¬ZÑ:°º>”J¼Dêð€>ÝñØì>ç.9Äæ@ð–,ž#º&o^¬ºâ=Wªý'ú´½¸ÆûÈm4ý»µðË–¾6wvßž\åë§ h…KY°†Åª«ê ޼Ô`éaYÀòé‰v’Ê•÷w´-iÍo=|XÍm$Ò©~1S2ÀšÖä³1Ì·—»åÓî J¬í.ò™'/\Ž¾Ó §kH´²ÂY°fñéí_<¾°È) %ÑtϦ÷ÅÛúã ë’X28‡,½[§þø²‚Òk¢éžÙÙ“súâ„‘Z28ÙÌ_[¹5<ìk&.´²¯Y°,LNe'9Îåœæ–ö5«ÖêÆGC¯¯jÁ'Z28Ù̇+¼].U4˱ZM6[{/¯‡SWø’ÖV8Ų̀ÈÓ[dÇÓ}Xͪ€å“ö¼Uâ d­œU^=RfGZÍ£h.q¢%ÑlD\±ÂŸœ³JçìoôéEK|§Ô}þ®î!±$! Ná´€Œ%æÐûÕt&³´$ºS´…B}]ŽÜÓ¯” °¶ÄE¯4jÎ_pJ£l ¥u¾õ~·NP9¥§ð©Ö´íœlƒä¡rJˆÙX½)ÚE·ù§p™­œE;›weG¾ðu>.°¤5‹vöN¶é–p}ÒzR6Ð’Ö…`û`mv9=¥7ÐÙúDg䔼-ªò(§^Â:X³8E—4JÏ—ñ%'Ñ8ºXM:+ux›jÝ'e«µ€–>6÷GÞ¯Á5Ч‹… öØÞ'N÷ ™EÐ’Úä³²’×|ªW†¯‹¬}lòYÙ|–"S)ë0XͲ€íOïk5Äî,Ã`M4ùÌɯ™d*e>Pk¢ E7ÚJÑ©”)Ó­,3VX˜êЭÊItPhI4éÌxpý¯ÑŽdpkÇÝ€7›ñ‘cº?ÌièÓ•:Ý3ÏÊLõ¶JOçÎ&Z²8ݳֽøñ¶JO¢IÄDK¢Ig>º±¯/Ò™çÐ’hÒ™ýlû#½¶«±¥F@+¢Y°»ßK¬K“¸Ó'“,-qVìîL®e'­¹Ìˆ–´&uïÇq}°:Ýso-‰fäÔ÷y"QãÉY¨A@ŸRz¨öð±‘cÉTÚ9x% %µé§øtë¶/‹ô°ÎøÚÀÚ:#™•ÛmàñI47ÁšhÒ™ýjïÁx^¤'Ñd3‚5Ѥ31mžLgÝ<ZúÖ¤³i„ä>–,šÏt­ˆæ´€=K^kéŽ!K@X28§ìé½îºîòN<€5ÑÜ×s;|ôÁ©•-œÞÙ´Oå•J²è¾5Ð’hzgö¥¦ÛQM‹-‰&›-‹ vÒ³v6 hI4Ùla~†œŸÒùÀÚ2#›™C;m»é”Â:ð€–´&›msì¼Kœ¬5.‚5­w@Ϲ–›Æt}þOCŸ®rø±„—çfêçB´bqVls°f:“rFKgš‡¡½® çåÙßèÓ[©Ô¶ˆy´z¯ƒ^ƒÞ@K'Ÿm;úV¹Œ?Y<¬R€5‹ÿÃgùÿYÀ¶’Wr¨¢ßøþÖD¢³ñrB:ÑS »þ¹<{DŸ>ö¢ÚBxJªþ±79ÐÒÇ¢‡¹–é¶C¢˱ÿ…–DoŠ^y—ªûÿ|ÿKû·,ÀÐ9{¸x[¥'­d­hý[ààÖÒ¬_øÃ¿…ÉÿBK¢ E[Ü;nÓÉà•’Ö ^)zÚZi:‹ 4ÀšèFÑÛ¿ÕLÚ¸¹ˆ– N:3J°/ö…?ÜÉgDK¢E{›¶[àt28•&X3ø¤èÙ‰¿`³NJ!ZÒšlVS÷¾/:›ur Ñ’h²YÍ>n@g³ÉOM°bð‘Èf>˜¶¦O/))!ˆdF°’4ÙÌÓçÖ×)“”B°¦uøZÓ»9¡ĩw6RÅý7út3MN©Óóë÷묇_þ‹ÖÙHAôšÓç„Ê`Íâ¤3sãwÙú¥xÜØDKZ“ÎZ±@¹\^nNZÓÞkZO¢½1÷îråäH ëìoôé6Ÿ¤Òš-Ñ-wìï“-ÁšÚAô¬ö½ôŽý}Ù@+;“ϼŠü›¬ß VÿKZç°H×4ÿ]ÇžH%~ì?ѧGpriÛ³¬ª?«®ðÃÖÔ¦{ÖË,}èϪ}p‡-}lò™O[®×¹'ÑüÚDK¢Ég†mcd9‡w$Zœh!émdò™ežC'·Ô›‹`éÈÎtÏF-;ï$O“™ßšhIkºg>µÅ\y}…óì"X[ᤳ1ç˜õ W|ò[­,³B:»83èî8ÁÒ·.¤”Yü­L¯>…Z­|ëÂ`sz›¥|éÃ~ÐzÒ·#XÓšl6-h²E>? N°´Ì ÙÌ‚¦ñží!/³ 6ÐÒ2#›­l.Ö­¿úä¾&ZMBz¿CW8òO§fáÝÙßèөɽZÚk齇q©þ/´¤6éÌ=¥·ë+HX[g¤3¯Ïšz›…¾¹¯ –DWÒÙÚvŠ–[ƒºƒÁ—8ÑŠÁ+éÌS®½ ¼¬5%¬iM:ÛuY£âè‹Ñ’Ö\á»—÷@?™I¹5 –˜4Ĺþ:9R’{`Âøžhåü¨¤³m‘‹›ÊZ“Ä Ö´†sæ5a¹þtÆSDs°&zRt^fÃ!WªÒC `Mô¢hÏGýIG•DwŠX½)Úû|®!WŸ¼éë„V–YK=Ó?֓’–´n™¢WY½^†ŸD/ŠX](z{zQ•]Ò(`M4Ø,{åcM[Ž|xr°&ºQ´7D™U÷†ë l ¥eÖ)ú]±t­I)kZ‡ß=[ò~iòýUƒsö€>¥ô„=íL7Z8Y|†_þ‹–,N:3ïª×qi/t²x¥d€5‹“Îüͨô"èn2)Á’èN:+ÙkÖ.šö&XºY¬ˆ–~OA@ÇÕÙú”&È»”¼R‘[µD*%XS›KÜ¿ÕXz›ÐQƒl •%ÞÉge•YgÿBô¦h %Ñä³²}bÜ“©• 4ÀšÁù­kj5Ùn•gÁšhzg5{#ö¬ú¤¯¬‰¦Íjñ~ÿ¨,~Ü]»ëoô‰Åé¨xÄ=æ¸ø‡uÆ‘€VÖÙ Ÿù`oI·x°À’ÅGÐzø2ºhn.‚5ÑtÏ껲¸È¢7Ï{‚5Ѥ3¿ÚóvßxúÖôTˆ–¾5é¬5ó¦Çͯ<‰æ‘M´$štÖzñW Ýà\fk'µá9U—ɧBpî-‚5Ѥ³6GM·ÊâÓu éŒà¢\§ zgÍâµ½ôò÷°Â ÖDÓ;óçÁy-ï=ÝäP6Ñÿùá‡e6Éf½-ûñzù{qÑ’h²YŸ»–ñÅÅtð‡‰–D“Íú6ïn_ú$œ¾57ÁÒ·æåpÉðCn‹Ô79œ`M4ÙlÔw‰­ž"²y§A´dp²™ÅÓœ;õrø_ò:5­Éfcnó2ç%T=qx ´Âá“l6¼)ƳµX"ÒI6›Åþ‚òƒDJ!ZÒšl6»¹è1³Z½Èfsø°ÊK«SG Kg¶Cö,¦5û/ ?y˱æßèSF(9eî^sûTqHgRg@K§è•æJI~Sí|¹`Íâ¤3ï€8æYán€hIkÒÙòic?=šh]DK¢¹5m•#™èéîŒEèSZøØË8¡ä3-œ±8¼o‚hÑâ/›Ìe hIíNÑþ&šoÏt'Ñ…¢–DŠžÀdõbäAÉkë,|Ù 0»š”óNÿ}À’Sʪ€’Ý•Oz‹ëÎ[ñ€V\qVóq,F¾]Æœ¾57Ñ·ž¬ (y•m“þ¨ÊÀ–DƒÎ<×z{Ûd]4 N´$ºP´w*Ø·ƒï š7†-‰®=½¹éÔCº´-‰n½æôqò¾J¬ìë™:Ñ;¥\0góÄçï°€Gô)û·Ù9uvnypϼíeÿ…>qJkžþ¥ïl¦j´ôµÉgµ&¯_Q}¤Qx~¬}mò™W7¤zK=>iÍ•F´¢5«JïÕ¢Æ÷ƒ>RKZó¤´TÌÅíúÎæ½]@KZ“Ïš‹Už½8Z °¦5ù¬5ïqK¢:iÍuF´¤5ù¬y¸¸nzN¢y€-‰¦wæ5£É]óËsX38)ÅâuóiuŸ41Ñ’ÖôκùÒ¹ õ)`d.3‚ïl²(ÀS-ÞrfåHA6Ђw6YPÞ%õ³P4Ñ\áD+¢YPFÊÝ+ªeƒóô X28‹Šq„=–xGXfDKZ“͆·c~±Ì‚d€5­Éfc4¿ŠS_œFá*#XM63vòWÙ/V8ÙŒhÉà´™…õ7ê’‡Tèý>=•Í Û¢‚>öä²*à}’Ííe“˜Sû Œí¬}m:9ÆnfE½kÌ,›jÿ‰>©ÍE>ëjéÇ•×VÚæ/ZYi5X¼§µgQk»BIKgY@™+Y \åÊ—PòÐ’Ö$´¹ýü2Wâ¤uX)kZó[{Ÿè÷û™¬5¯ˆ–´&¡-)6P´®´7ÁšÖtÏV›¶?.s%N¢ƒÒk¢éž-‹^ÌjEͬ‰¦{¶¦¿^oDƒ¬‰¦{¶“7¿Ÿúá•I)DKËŒîÙ®N†EwÏ $¢Ñ, ({äÒ¶~e8JÐhI4Ùlo¯ÓÛÑ&8´$lVSj»¤Kk¼Ó2ƒ;ÀÒ2ã«jMÞw§êè£Ù@KZ7ŠöãÒžî¤u§d€5­#ÚÛîcù“{Öàž= O§ý¢ÚÞ&ºÊMÅscXS{mNêÎíw‰?¹HmQí?Ñ'µÃB[ÛÛCÈ-3˱ZZh೚K*µéýS›2´"šuÕ‡à–)÷O™9HXúØ=Stk¥4¹‡ÉdàÀšhòYî3æK£“hr Ášh.3;{’n”¿5;#´ô­Égö£w¹¦Öœ®‘ø±‰V®‘XPKÏްȢ鉴$zP´9h·Wð“hœhI4¼³j«tÕ/.Å'ŸUZM÷n‡®Zø2ÉŒ`é¶²“Í<;u._ÏÎeF´¢5;}V¿ˆÛ%Ëi9sdœ£O)sácÏ⑯|?Ü8À’Åùôï£|óZzË~¿+ƒÚ¢OŽ<©´¾'ð^Æ[Ÿ¨”nÁ•².Ào ìƒÉ=æf K`M4ù¬ùí@Ñûkv[ h…ÅYàÃ*×Öû¼Íà¬iÍ%Þfjã‹>oƒZÒš|Ö–ÙKïó6k°7ÀšÖä³n‘jýbZÀ`žz@+Z³.Às÷VѧLÖñ°¤5ë¼oô.z¯µÉ÷ÅÖD“RúØmQ 1s08Ð’Áéõ•ç¾Í;iM7…`Mk²YßÅö¦\ 1Y_Àšh²Ù(­r«›9œÝ Z28IaøØ¯†·›§£kâ-à}º!Þ×öQEª£]¢G……žØäs[ä×{¶ `ÉY`a@}Wq$ÝO Á’h>¾xúƒ1±î+°$€¥%¾HgÓsLŠÞMp²aM@+K|‘Î,þësë¾Âäme@K¢IgÓ‹vªî+°$€5ƒ‡ßmŸÞþï—IŸ6¶§öÿŸ†>%‹ïf”¤û)á. %‹Ó;[©Û)¬û)¬ `Í⤳åtXt?eòõ% %­Ig«M/u•¯rBìC°¦5él™Ûb‹>éZsc­hͺ€j¾ìô9"ºh²8Ñ’hҙϢõÁêÁ™ÂÀ’ÁYPw÷§`}hñ¬A6Ð’Ö¤3sâwnòàành Ö´¦w¶í‡¯©wœlXÐ’ÖðÎ|ˆ‡'­×èAk>/°¦õ èlÓ’» NÞU°&zRtóTo½›àdû”€– ¾(ÚsûÝrÆd‡‡€VüB>Ÿ´ü΃]òÖJé÷Ô|@Ÿ’piqC·n£¬öJñ—ÿƒÔ^¬ hÞܨþŒ%’|ÒFÉ+>éb]@{\ò zˆ^XYâ‹/N-; gý}²¯E@ K|±. å=rjM~ XLp hé[“Î 6×›owÍ5N´$štæ³ÆÜÑ‘×Ý‚µuF:ëÛóõ.É‘'Ñ<° ÖD“ÎFñÑE¿'e;€– N: %9ƒw²Œ/€5­IgÃâ5;wõ87Ä>DKZ“ΆïLo–§jͽE°¤5‹ÚÌÉ‹õÐ'DD+Z³( yêo*—¹Ú'­¹ÊÖ´&›½ïò»ž<Pk¢ÉgÞït6½cÍdk NNñ Í6¨~µÀÆù-‰ææjÉôèrÇšÅ| Ö N:k^¸R.=gN¢¹·ÖDoŠöŠê½ÕtíÅ‹é–D3§§7û\»T¹³ž'Ãÿ2éß蓵‡±a½5¼9­32)ÑÊ:cY@oÞv25™ÄßɯZM:³£ÞÜé.G | `íc“κ×zS¦Åbˆ€–´&ykÕµË.w6ÑJ Ëq½¯ì±j’]~j‚¥@—ãzßÕ€K¿æ“hzâk¢IgÃG²~Ñçm1K$ %ƒs_“]~¼ÇÁ’Ö¬ èÃJKú2cgÖ€V´fU€-ÑmÔ*÷ÍŸì0ÀšÖd³™ŒæmDèAk&‰´¤5Ùl¶ÒR__ˆ&-‰&›Ms¯ìðQ/+'‡°fðÐ=í>õÔÊ…–èÓû;éÌ1<^•Ïú…Kç³:»? ØÙ'»H!J&XM:[ɢǹ‹Z9ºXн—ÔÞ7?þ$šK…hEô¿ÛJG~ü“w¶éý>­³`q!~Æihjók-©M>Û©äýó’ ‰&‹-‰&Ÿm÷póÒ]$‚´$š|æ-[ër/õHID+Tʲ€¾½ÑN–Ç€Lfð°D¥, )7¿ôÓ_è-´¤õ¤èÒËjY}™ŒXÓzQt¶;õ ˆ‹Ù-i½)ÚÇPMyûäcr+ZoN ðît>?Q¾ïAi€•ócó¼æãä=->0éNH<{@ŸÞþÁ)Ãö†ÏE•ïSÛ,´À);ÑÍ7«>xeÓ+ ham– omä "äuÆM°¶Î:Ñ£ÚJ)²{¶9.à}úØ™j›ËÔûmÐóÉâá—-Yœ|æñZ¹m§þ[üÖk'Ÿ•š-nÒûôì𵉖´&ŸÙú,»Ëãf&ÓµXÒšÓÞ#Ô×-ãú$šTJ°&šËÌΞÚÓ-~9<~l ƒ³,`ø0ñ÷ôUk.p‚5­Ig5ÍZúeŠáI4î4XÍÏå·!Æ…¿×¬OHF úúô&Ë]}üÖ­SÛáÜä©–ÎMÖŒê‰K/_5 håìÊAëQrÏzÎ;j°¦5éÌ µ%·\¨ÀšhÒY3çÎ~ºüî³XЊÁY0¼–¢7½±Þfc½€V8…ãFk»Ú ; =( °´±Ù‚q´ù¾–H²³PÐðì}zH_ÉüøvaÓŹЈ–,N÷Ì~uÞu«ùv“w9¬YœßËŠé>Q)ç< Oàˆt}¾BYå2©ó¤ö ?ü¬©M>ëyŒV.W"'R¡Å –H……ÃBUû£Ë•ÈItÐ`M4ùÌ;eóut> ²VøŒ…Al‹!¶~gØ‚h %Ñ䳑Š'¼È¹1Ìy `Éà, µ1|XAMJ!XM÷̘8õúŽó#Z28éløt‡q»Ž91)ý¢&eaÀkÙ†Ñ/ä™nÀšÁé ïÄÞõ yæ°&šlfÑ£¿ÀË9 ¼×`M4Ùlš—Qûò=ÈZZfd³ÙY/Ù‘'­¹¯ –´æ´€1ý>}^zÄN.î-‚¥“‹ÓÆô±)×ÌþÃæ ÑÊæbYÀX9›K›ää/>Þ°fp²Ùòwèz™^rMF!XM6[½˜Ós_rZáAm •β€áÝ{û.òƒnt툖¾5Ùlm œúTûZ„vͬ­pöÞ@˶›\æ´9,à}òqHgfÁ•KýÂâá—-Yœtf6óŽNúÆfÒ€VD³,`lïà;õ«&j°ô±Y0Sò!Y¿¬äR hIëBѹYx.wÚ|r `‰Sz@·ÚjíúVÇ ôô)u,X¼½o¶õK Æ÷­ðëfòÆÅYî³°søÖk½½Ï§Þg!临¤uøáÛû/Ò:w_üØ¢Oïï\ã¹ø<¾5½èfÇhew±.ÀbóZrÕËO6ËOZMB²…Ò2¿6Ý3;{Vîú̗ͪ̀– N÷l•žýJÖšKœ`Mk.ãÕ<ú.ò¹¹ÑTã}Šœè.!-Û"rËšÍE-Yœ|f{ÍguùáƒW@+ ,vI7Wµb1)€…ÝÕ󠌋’Åûò\ÕúuB?km`úHÛˆÞ¾à†kZ“ζqa«ŸNV’hî‚5Ѥ³íOðeÈ'ö Z,llM:³šæõãôÜE:#úysùÈ’_ÑËÖ¨÷W•#v¯`MëAÑ5ç%G »Ù@KZOŠžæ]éueŸEú:¡¥Íµ¸ûÅ_¯òoo>'ø@Ÿî%2Õ^µŒ|y§;ì.6a `iw±.ÀŽÜ6Êœ—ôÈ“ÅA¥­Xœ/m+7¿¹ÝDÓG hIt¡hŸYyKö>ì.†É,í®L6³§oýÆ>Oë,ãmó}*Æ _Ó+Ht>cuW@+;›óÖ»f§É}a7ïrX³8ù¬ØÑ“§Þ›u³5R@KZ“ÏŠýêü3OCÑš9X¬i½(z‹!ôÛ›ý‰ZÒzSôÚsê ¶7[‰°¤5_'WMï'«ß“ïïhÓЈ6Ч{ ®³ZJn_4÷ÞLhÅâ|Ƕ/Õ-j“›{o–è°fñJÑmìzÔùÑ/çuk¢EOŸÒs‹ÚNj-œtæÍAÒ¸N'­Ã§XÓšËÌœ+ïI¯»gÁ[ ZÒštÖÚš}ÜVÊI4™”hI4é¬Í=kýâfCtZM:³ø¼”©Þ,|Î½× ,}k–¬žZµc@|Ðý>¯XM_¡×–öÔó:CW@+gYÀêcŒùE2ÒfÁO@K¢ÉfÝ ¿HÚ¬_ hI4ÙlX á£[äoͨ‹`í[“Íü…°Ý¦D3g:€5Ñd3¯2‡Zß׬_ hÉàd3O9HkËûšÙìiM6»·•oOZ“͈–´&›Í2|`î¥0Q# Ñ, pö÷9ú¾æ„€–Dð(­f9£ÔÐxÚ|@Ÿ.Y¹»Þýš÷¥ÓÎiÍðÃÁÒ: Gîœþz‚ñ'j3Øü}r‡Éâþ’P¦š ò9î_'°¦6-¾rò‹ ÝEbaY@K |¶Jy—øÊZsw¬iÍ¥bŽü¨i¨…†F"íútëÇssyÔ\–Z¢»‚wF°tƒÅwìµz^%ËÙù‹‰P,‰faÀZÞ×5599†CtXM÷lížæü ¸–.ÏZXh@+—g, °CÏœÊ.'|lö:¡%Ñ\fÛ§Ÿ•Ë‘“Á©4ÁšÁéží¶ZùâŽ6\¬‰&m ØÖ¼ep d-t¶“·å· à“hl쀖DOŠ.>ý÷2žôdðJÉk_ÝÛ?ÙõšÖ²–´Þ=æ2W&Òì °¤5Ÿ’·OQ7>”ŸwP`M4Ølçl+%Ë=æ>ŸëuB+gYÀÎ-W¾%‹fZN@K¢+E÷’Ò”ÛA-ö`ÍࢇwpÞºèMÑk¢¹Ròô1ßH¢zrSXð€>ÝqcçÙújSU{³¡`kj“ÎJ®öÿ3ô·f.´â“²,ÀNÜšvÒÛ£nö\hI4é¬Ló)çXÌf hEô ¿{{QÌ|Š}8.à}r‡ylV;ÊR’+“?lø:¡Ra]ÀöÛü±ålÖ/¼NhI4Ý:º4j `C#Ú|@ŸnýHhuŒòž<-«ÝÃ/ÿEKjwŠÞ~ϪÎiûÜu¾Nàÿn“͸Î|É—ry’=‰æç"XM>kžØ¿Õ¾cŸ»Î× ¬‰&Ÿµ6“í·¤“ O/¢%R!Ÿ'ìÕÕd¤Ï…ãë–´faÀnÆI}}‘ŒÄ4Ü€V´æ¼ {ëY-ý\8¾N`MkÒ™Åçµmu0÷çÂñuk¢éžõæ²ú`îÍ®-œlÖÍŸn®êlÆuF´Âfì:¶‡­Ùšªvm¾l°ä"1]ÛNÛžòÎj™Ó»·êëÖD“͆?û÷©öYøüð× -œNŽ={Õª_M/$ž= O\ÈÝåS ûOƒ¦vøÚ@+joÒÙX{µœÕ«œÍ^¸,}l¦Am¯æöR%YkΓ hIk|ÖæäS³ÉKtƲ‹'zYCíýõ¹Ö~ÀšèÐc¤6õ¬œ2§ôéÅŠ¤2§§„êÃ6Cj@+,ÀËÜUpv=ílÖ< Oþ0}¤e»­NyÉ'ñùuBKjÑ%y^ì-°’/€µ…F÷lÕœÊÔ]q¾m°":³.ÀùÈ'fžWÊAtˆU ÖD“Ï–QÒ^òØâOº÷넾uæ#Ÿ…ëÝ©YL<û8Ó¯XÓš|¶¶w$2ŸñB>€5ÑtÏÌééë‹ì¯pIK°&šî™?bt=û+&´ô­É¤{Ú_¦g}²p_'´$šî™­ÏRxó`ð@Ãk'›í]j™jW¿¾N`Mô?lVþ_J¥y /5Uã“ü:¡ƒÿ–8¸Z¬úó~"hë0þ–´þ- pôð®¢f‰0ø_hIëBÑÛöF•ïh?™°¯Z]!:{}ïP{j|væëÖ Þ(ºx«„ËÜ“èIÑk¢;EW/(ëøÞØ_'°äߪG6VJrõIÎÁâ@ A@þ­ pðœÕ[:ÉZ7JXÓzQôNæhlõþ*gî-‚µoM63ÇÎö‹œß˜3)…`It!›•êeÅ·LØÓ¾¦Å‰VöuX¤Å'¨wš¡O.ÿ$ž=¢OÁ ™´ ÷¤õWˆÎ¢•%^HgÅ“ë:µ)Küw2Ä¿ÀÒ/¤³b~¯òÅB ë `M4éÌ VG“3ÅsæñA°¶ÄIg¶F½#ºê¦ÄEJ°&šG@­Å|ÚOyoÂÜ\–øßèÓ'•ÖÖKmrÍͧ”âuBK;›|V§SîXóY¥¯ZÙ]•DìÓs/µmŒ¡3-þ'úteÈ5î u|BUMmnm¢%µéžµl±j¹$Öœv6¿5ÁÒήä³V“».jö×þͶûXM>k#õ¹ä¾cŸþ:¡%ƒ‡oíw· §f9\¤kZ“ÏÚòŠ’Ë´Ì“h²8ÁšhrJ7&,é‹]¹±‰– N÷¬—w§Q9?e‡ Ö´&ù½À¼öœ9iÍÝE´¢uãJy3çðä#5ÒÙßèÓ@©)Œ¤¿9Í 5À’ÅéÌ« ý"W~m¢%‹“ÎFîÝ–­¼Î)…`MkÒ™{e¥$çVæJ*%ZÒšt6º'z ™Ä÷5ÁšÖ¤3ï\¯-PZ¯”hIkÒÙ,¹Ûš× Þ¨6Ñ’hÒÙìv覭3i8±‰–D“Îæ(³Ï¡¯ð `é[wF›sv;v›|tm.p‚5Ñd³•†7#Ô)%œØD+gî² ÀbU¹Ô(÷ ÿ}zÂàÇ^yµ½/ À§jì~ø/X³8÷Çò®JKžµièNµÿDŸnxI¥«ì¼VÏ.ö»ùXS›|ö.8í_8¥=˜hi¡‘ÏÜ÷*vUë$¬iM>[Þþ1«¦?ñâë.JݹÄw6/§É¦?uä¯ú??ü`ðA>ÛÅ ä÷Ü<‚d€%­ùÌ™·Ÿ|"Mk~l¢%­K7oU-WÓåA>û}*Ïâ:36êµ¢›Ô“ÅÃX³88%§Ô«yYjÛ˜O!ùë„–,Þ)Ú"ˆ­g”æ$¬i=(ºÍ:õŒÒO ûë„–´žÝíØíò3vfÈÀšÖ‹¢wÎ¥È ãÉÐ ‰ÀsŒ‚6¼OǦ§KüŸ†>í..ñœ,@ß—!o§»+€¥dfŠ®uš_ùűÉuF´bñY(zŒÞÚ–SJs_ ´$ºRôò¸9ÉîYX3xøÖFÄ£-1äûT›¾N`M4éÌkç{²Ÿ>5ÁšhÒY1Ï®•KbæI49…`M4é¬Ô”½‰–,š¬@°&štVüÈýISDóÔ `Mô¦è9ú·!Ó‡Í53e­l®•(zùó‰þ­W8Á’Ö‹lfLØÞÍ`d­y~-iM6«Õ¢Ï¡ïëÉoM°¦5Ù¬ SûÂ'%‘­ø ‹læ}`J-r!xžt‘ˆ– N°·0sêîð8°ÿFŸêHg^—‘ö>Ÿ{§]Ãÿk›tÖÜáú¢þ=ó~8 %‹“ÎZ÷fG— ù¤uø\kZ“ÎüÔ³ð\öâJX½Igæcx£Q=-gòì"Z1øÎ¼[CµÐ“Oº —øŸè“OJ>{·ãèjÕ +HþÖ,N>³oUÆOʃ€ðV<€¥d“Ϻ·¨›ò D67úZ¡ÒMïÌ'ÑúE]4×8Ñ’hÒYߥûÍŸjð$¬œtfAÓXùÖVé¤5wÑ’Ö¤³QGŸírsÒšDJ°¦5él s®æíFä u q¢­K" ïe›."'­¹¯ V´.‰ÞÙðôú¹Ôk»’E¬‰&›M;Nr’›u~*‹_'´dp²Ùl»¬uK<‰¦Å‰–D“ çØŸÌÑE* OèSQiÁhp®*’j~>CöŸè“ѸмWÛèòÄäOYóë„–LN>›;ûÄ3õò¬$žkkœ|¶’¹9Cno— ÁšhòÙª½”kàÉàŒ~ˆV κóêÇå–ñprϸ½ˆܳºï>¿ÛZâ‹î§Úôu+.Ra]€y¨ÛÖJ“«ƒóä­Ñ’Öä³]Œ˜‹Ú”éSmú:5­éÙÉ#Ë͇ ëXZᬠ0/±§oö5ÓÔXMïlû¼³¼õæÆ´´¹ÀfÞÏÉkvõ›… Ñ-‰^m´ŠüâTò¤d€5ƒoŠ®¶]öR3— “ÔXͺ; ^n^ÎÉà²V μ3#toXpîp½)hI4ØÌ6ËlM/Ä(L`Íà•¢m­¼ÏUt¡h€5ÑüZ¹Zˆ¼QVöä!xg蓇Ԩv·£¬ÊM®?•ůZú؃¢Gó2ç"[|P2ÀšÅIg>žgîÛÈÊ“Öa¡-iM:3WmÍzéYvÒšœB°¦5é¬xG­q+å>iM'ZÑšYöíŠÅÈèñó´ÄYð€>1?vñ9kU[ü)¨~Ð’Úä³êóü¾ˆ6sBäÐ’hòY­º~mf¦`´$šœRG^9‘µ¸»ˆV|R–”:ÛÚS~|ÉÁY XòI™jQ| •GŒrŒ]'–øßèSí ×™?LÖõG>z†-Yœ|fÓVKÓ“óMN´$š|ÖÚè^}©~ì”XúØîY{÷IØêƒn¨‘ `M4ݳ6“à••(`éáS@é)õw®¿Ì)ô ‰V8…e¥—í½¢õ›¹•-‰æ Ð[ë£ÂYx:»ݳ¿Ñ§ K¼/%¿5?í®`q •Ýź€Ò§…0KÎYÈ•1ÁÚç‰ÝW™vîê¢yj¬‰&õÝSþi"‰æ©I°&šßz;ùŠÞK=ó) •oͺ€2¼Ê`_hø u ’–´f]@ñ!"vä믪áfhIkÒÙtÿªë} ÓíZM:³Ÿ=vV+Á?%R¯X38½³ÙÊè«ÊËì}óö:¡%­éùÈáÖ/-|OZs_¬iM6›kÕœõÇûèÛ-iM6[)÷½ÔN"Ÿ©× ¬iM6[æG¯©sx#›¬‰&›­âçÉ%óøä¦po,¹)¬ («×•÷-õøä+p…­ø ¬ (>öËë…d­¹¯ Ö´&›­9Ì•û"•”XM6[6ý<JËŒN ÁÒ2cQ@Ùv˜›#¿”pt­ìk”ÝK)Y¿¢Í™tF´´ÌÈG{4o¹)ç¨û˜ù_—ôoô©Î•K|/‹Âög’ ¦6¿6Ñ’Ú¤3Ž]ôëápj¬-qÐYõò‘µõëaF,‰ž‰¢k󣆾¬®e­œé¿5e´o|ºÓ˜È;{@Ÿjl3Õn³õ~y¯:X|„°fñJÑ#Õ^«üÆÇ½ÀšèFÑÛ;À7}w• hécƒÏ¼Å¨'ÁÉY9ÎBkZŠ®­îëœç“Ö“²–´žmá¹'<¨Z‡ýA°¦õ¢è¹jû¢È©´ håìbU@µØq”ý‚«œØ¬{ `éÄfU€w ÙkéLÊäᖠΪ€Z|Ðrþ‚IYÐÊ2cj‹w[3cÀèÓ‰½P³ù€>í®³÷]gÛr¶SÞX³8éÌÈíÝC¶x`q¢%‹“Îì¿¶¿ «ZÇϰ¦5i¸ì¶,dÔݳ5ù±ÿDŸV)Ï®š=)ô6:ådqz*DKç:«ž]?ôž…‘n@+|Æ{R;n=™HíŸò)ÛÀŸ±, Öé]Á»ü°Ø4€5Ñ䳺Jöikªh–°&ºPôö.£r1]fáKk¢¹Âݹnó–:vZftTˆV–«ªÏ1Ï#É57…‘n@K¢IgmøCôerÊ©‚AÁšÁéµ½œä×ÅÂŽ-iMï¬û‘o.+YÐ’h²Y÷gÑ.Wåp~¬œ ¥÷ìm/åó£&” ? O)¡¤³>sÛYŸïSXЂÅ+ójj_vâf¼?ªÍhóoôéØäöê«í¹ÔÎH±1€•¯]YP½ƒï˜êäàO)ÞëÖDsƒŒœGçøÅ‡ø¾².à}r5¨öðîóíöXvZhÔ›hi¡‘ÐF_%Õ/~B@´$š„æT¸ö”/–°ö±Ihc[<Ú}Ð:x†DKZÓ=›Ùct9S£ðñ>€%­YP§w ÿ¹{“´'ÑŠÖ, ¨ÓgË 9È.ì¹ÀšÖtÏæ¨»ßJWNÁéŒ`%ø©, ¨s{øùEFi¸=#Z@*ËêJÃ3¸å+ÃÀ¤kZóüXž´vKqÿ¯èÊ'§ÖD“Í–P,_\†‹;¢%ƒ“Í–y³«7õB¾2Ý.€5­Éfk'oÄ®_î`q %­ÉfÛøÉÇkË”ÂD€V(…e޾̥Îåþ$G¾N`‰RXà³Ë,dûâ¶2]DKZ“Íöœ>´å >iÍN°¦5Ùlïd§½Ü‘©°%lk¢ÁfÞ ¸¯ùÅÓ& ¬Z2x§èžý]ô‹^)hIô è5Óú¢È)ïIÑ@+ûºð~Oo”‡DWN x@Ÿ~8–¸Ïpiý‹«Ì€1 %µ7E7s¥Ç”oÅ ƒ¶€VD×DÑæeof¬žAi€¥óƒÏØ~ OTE‡•B°&š[Ó¾¼Iï+ÞЧÏÅíUnŽ$š|F°&šg—ÏÚs˱}¤ÖDWŠ^£ÎœôeÆQi-}kºgæXZÄ(OÚ¬L< `MkºgÞ¾yxßjU4—Ášh²YóT™ŸÁÚšÁù±‰– N6kÓh¡èoÉ…yP-‰&›y#t;dg›¬œlÖöš«ÉÓ…s X @Xк7¼\·±_'ƒ3 Z18«Z÷üÔ|™z28ÏL‚%ƒ³* Y©)»XM6ëÞ‚$w9£4”‘´dp²Y·•b‘ªÌá=HXÓšl6||ûœ_,3î.¢%­ÉfÞÜ´÷[ÚóI4ÙŒhI4ÙlLŸ¯ ·Z«|f `ÍàÜc·ÝKÓã\þø? }²?öL¥—|kºzAgüA´bq–ø£¿OÔ—8—Á’ÅYàɨ¶Eô+ÚÂA-iM:›>.¦-}‰`p %Ѥ³¹–7J—xT`Íळ•÷»·ª®5.¢%­¹ÂWµ½%5y¸{¬iM:[þõ²~•XM:[½VoŽ'‹fÌE°&šÎÙZ=í¼u—”X-}k:gk÷ix™R¢d€%­'÷ÇN¹…L½'Ÿè¨ñ€>•ÃÑËñZj#f¹, ²,à}ºàöÚ¥{ª‡ñE«­|m–ر7óΟB»ç™M´r+β€¶Ç\ÿór”( ¥–¢€ î©-×â¤59Ñ’ÖೞҶ("«™1…Yê¬i=)ºäUäዟêÞ× ¬‰^mòÜò¼ä:ƒh€5RÙmŽe½Nüï·®)ÈZùÖ, èi¥]ê%¿ädðNÉKgY€óÿÈENÀ*t X ï¬{o¡”/ЧšjM°&ºRt-c,} _È hé[GpM}¡-ÒÓÙµðð€>…j[Àh'éK|ñ—-©M:˳ûJ‘—8[u°ö±Ig%™»‘ôA•m+ZÒštV<`ÜêáN69…håÀfU@÷n~äëZó!ZÑšUÝs˜jšrÀ¾-,‘8«º×g¥zkvcQ@7*ô‹ Õ' …¬‰&õ9ÓN·A´'ƒs-œtÖwª~å(k=(`MkÒ™­CžX\ÙR<€5ÑÜ\£¾s|äl»ÊÎõ-œt6š;–‹œ*³4XÓ: ‡‘ãDÚÙÃ%’§<ýÒÙßèÓV°øô.ìzQ@e‡Ò€V,΢;óÆôyâªÅs °dqô±}Œº.šï笉&ÍšRÙ·^R'ƒÓ'Z28élŽÔ÷µáI4ý¢%Ñ<|–Eç½ëm-côÉúT¹B‹¯äõëߨ=Ã/ÿEKjsw­:ò¬_ä p¨Q@ HcU@_mëyL™àÿþîÓçb°¹üÚmëc»J`q¢­YÐ×Î& ¨7†-ÉKZ³*ÀÎÜRÊ­[ÚAtà‚5Ѥ³mž]º¶K;íR)Ñ’Á¹¹vó‰Ãr“B‚5­Igvꥱô&%ܼ-iMïl¯ÙG–óüÞà× ¬i ïÌü«Ùkÿ‚RØ# %­'E7oG®U­,ã hIô"ØvÈLèwöt~$j< O6 jÛOO]NƒjLÊ `éc³*À¸zz½\\y¡ÐÊÑŪ€‘S÷q™ç+¨“‹„ó#€%‰³¼˜zÔõ…wÖ)`Mt¥è2»ýOŽØs,€5ÑüZÙ[b,¤Ž=E, x@ŸÎÜ`ñ¾½oqÑ×Y09ÐÒ:#Ÿåé•xzx?ƒÍÖ,ÎWÛ-]†¬66‰`mcÃ;óô’ž«>í²Ò›h…JY0Jó'Œ[±ÐI4×8ÑŠhXÐä£4äÔ˜Æôø– ΢€QÆ6¯GÿÖÌQ`M4ɰ,ï· ?åéìj(rz@Ÿ^鸱kÊþŽðÅ:ã'ZúØ¢íïªù‹uÆÄš€–DwŠö÷«¦¯3V°ö±Igµ[À^¾XgÜ×k¢Ig®/ë©•¡/ %ƒ“μ_¶ÝúE)óZ9?X0ü•4ë7ÓuÉK竼ÐÔ|Ú¥?ð# ­Y0ÚL~Ü«ýã+[y°¦5)ų­û²wƨ+€5ÑôÎÚ®¹ÝÒjN¢Ã·XM6ë©×¤÷àm,Ã`i_³*`)´¹õjŸÊ†ý­ìkVxNE®öi=HXÓšSžƒ ŸNÍŽôôé]”tÖGÏöo’×YøØkëŒtf¤0}z‰Ê)yg­p «Æð¡õ_Ü“6¦A´$št6Ì·ë_Ü“Vöµhe‰³*À!¹Ô{ÒÆ$õ––8«†· È;ËX•]ZÒš_kæZëLrº—4ýÑ'Ÿ”^Î4ßμZ¹§_ƒ²ÿDŸdsÏwfžê×ø®ÐÒ§{6ßÝé.çýéBžG6Á©°.À_é’ʲÄ&¬‰&ŸÍé)=ŸâI4Ï‚%Ñ3|ëåÃ<²Zò¯ °´³'ùl½½Ô¢ß”†€‘heg‡«œeáº&pV8-N´²ÂY0VßcÔ!|¥Ö N÷líäe8_œKœhÉàt϶­Ñ¢ÆnLÊ `Mkºg;·÷˜ysñÔ$XÛ\d3ï[vgYÀôd¹ôsá(hÝSXfkZóÜkyÚŽÙ¿¢œZû»ÎþFŸœRòY³0u¶®{†ì®Ð’ÅÉg­;ÿõ^kï¯ZM>kÃ~J—{­uÞѰö±Ég…}&š¨¢yt¬‰¦wf¿¹ç®·ƒªlìÐ’ÁéÙ—*iÉi=ÉkZóäë5­Ù±7ŸvëЧ´g®3Ú›úáÅæ­Xœužiþ:“áÁ⬠`É⬠˜Ýð½É*-,q‚•@·³.`Ž4GÉ·’ÓÕ=¢…«…κC&óhå›é–8ÁšÖ\f£æºõëá¾5ÁšhÒÙ®úôÆt‰€– N:s£Ç3ø¤5Iœ`MkÒÙ´…’§^aÕ8—; %­éMÏcº^DSm¢Ñ, °“~{¦‡š8jWX28Ëæ\É?ôûx¶£ hIk²™7/ã’ÿ{Ò:HXÓš Å[{–= Ý3ûÿOCŸ¸{ k××+tZ²8éÌ+vVÒ/J™òÀšÅIg«í4¶Üµ1I$€5Ѥ3ÿTuèÍ%Z¸;#Z28élûH¢®'.·pwF´$štæmvv¹ŒOÀÚÇ&UoE’ŠîЇ£‹hIkÒY]Ë‚tý޶±3R@+œÂº€ÕRòŠSõUµ3™5€%Na]ÀòtGo§k=(hIkÒY9÷¿5[´ò­Y°Ú,¹ç žV8éŒ`i…³.`5[*~ÊQ_XMçÌÎ[,—'ÙÃ2cI[kËŒlÖÓ^@/‹¦Á ÖD“ÍL £e}F[cäÐÒ çÖì^HþE³çÎièÓçÇî³xS'9ôé¼hew±.`ùLïärì6ƒd€¥%ö¦·äØì÷ÿä,ŒB‹ÿ‰>å(µ·ßAÉuNm†¥°¦6ùl¤íE%ò#/°XÚ^°œrþ"ö ‡ÑÊö⸀5zÉ©_æ´æùA°¦5ùl¬Úæ­Ô[ 4¢%­ÉgcwŸë-; ‘Ö´¦w6“ùÓK}Ør9€5ÑôÎf~ûWjZNÇ&Á’h–¬Ù<6Ë/›¡˜; •o=¹Pæl¶9PøDgœð€>]A…½r÷ä5ý _håa]€_ð¶ëÅÛ)ý‹tF°Ä¤¬ X+Yˆ¼.‰æ§·dk¢Igžš¦îž…•B°¶ÄIg~¿®½)NKœQÑÒ'ÙÉgÿ’ÉtÒš›`Mk®ðå—êã–ÊtÒ:ÈZÒšt¶ýèÙ—i~'­æ,iÍi¶3V2VHú¾æ·&ZÙל°vOyÕ©o.Ú›`is±,`ù»MO·§'­yl-i 6Û)ms+‡|§ÑyOÐ’èFÑæãx”,|S2ÀšÁ;EWoè$w{îìnÀšèA´­º²ôö¨ÞÐúŸSó}ºe j–û.:§0_; NaYÀNÓ–h)2§0K=€5Nmó¤G¹¦Âž´ÆÎhEk–l/ ÉKùÒY%À’Ö|3Ú¹¿‹û=5Ÿ¼³ ïì}ºþTÛŽ€Ù§Îg̶h…TXàC[Æ(—ª´ÓÎ.” °´³Y`D˜KÙú„ÎÛÊ€–´æÖ,¹ÍÿMmIÒÇF™ÓútÍÊíUüáféÏZR{Rtµ°Ë³…z 6XûØä3Ÿ’Ó}N«ª5/îZÒ:|Zœ¼åsÞXÑzði×\¼õËåè;hÍDz€´¬ Øþt³ËTß}:'º°¦u¡èÞfÿ¢N¶³]N@KZ“Îêòfm·oÑ=hI4é¬n“åæ‘©•¬œ[³åé£<ºzvD:û}ò¦¹Ä[™ž5§ß,‰hÉâ¤3×£­/îr8ç3 Ge°.`7£$oh+k͋퀖´&yǘ—¤ÐÓ:ã 'XZgá[›[gÝÒ¿u08ÑŠÖ, ØF ¥ä¡ï.ú kZ“Î̵škÝB§ƒÖ3XhIkÒ™9¸kvy,^oÁÞkZ“ÎF±íQŠNâìlÐ’Ö »FOöñ«î+ð-9 %ÑôÄǨe¯¬öÊé¼: `Íàd3ïwcK'‰±Ï`F+±ÏàÈ6l ¸bì‘ñ´ù€>Å>ÜØ3­UÓmÜò)I$‡_þ‹VHœuÛ~tµéa«ÐZYg%hí%ié’{|ZgŒ–ÖëöÞ¼ë’yXgá.‡`i…Hu®f~üîÁº€ôé¸çΞæR®2ôG¾ÀâDKëŒ|¶,ˆÈý 8\€-­3j½Ì¥MEÎþêLS`m‘ϼˆcl½Ö¨³< %­éí”f]ú¨æÎÖH-‰Þì7"SNpU›èS”LRñ°Ò/6;=&so,}ì(Ú›œŽÛ}þø;L~ЊÅ9/`ïá}«å¡/#\j,ñ˶ýðáW:§pc­pÊoY@ý)¥•WÓ½…ß(à_`MëNÑÍŽŸùʼný;Qé_hIëAÑ@ØZQ_UÇoð/°¦õ¤èås ‡lþÞMÿ -i½ :¿Û˜Ý’BO¢3D-‰Þ]ìHh—6£'ƒ/JX2øoY€£ûôAêú3Äï «¡­Ë¼Ì×hã ƒwŠZ](z/…«¾ûŒß! ÿk¯@—œg©HþzŠÚ?ÞÙ#úd3.ñ’‹·Å8sáAí–Ãÿkj“Ίç=¯[ç°Ó'©-}lÒ™OŒi¹ÊŽáH\âD+§f#•e1z‘'w$¬œ´Pöö$“__úÉEj›ëìOôÁEú½6t-ÉŽÝ[zäécs­|ìN>«µÍkײÓçB´$š|Výnù‹¬éÖÑ’hòYÝÞ‚ñR€xZgÜ\Kë¬ó[Û›ò¸õÝ?iMÙDKZÓ;ó‡[:_¸Ã<@ˆV6v'µÕVÞYç”ÌeF´$štÖüî­ë7Ó#HXŠ?:鬧íÙ-²ŸÒ)š`m™‘ÎzÝöÛÑÀñéØì¤³¿Ñ§×`®³Þ¼# ÞÕ¯'ºâD+K|Î,z´hQu3:Ol‚%‹ÒY_Õ;ïÁ¤$q¢%­Igè°Î&bŒL&%ZÙ]ƒtæ³üJÓ£ûIߎ`iw .3d_K~A_üÖk¢É…æéy£Qý>åw\À#úôeϔƎʘAö_èÓ]NXhΤ"ןô¾6ÀšÉé‹wRègh¥¶Æy·@´´ÆnÎ\Gí_ðYØ^D+;{’Ïl[ZÀz«K;}.’ Ñ’hòÙì> hªE £¥–¨tr™M3‚¹µòåYç§&XM>›{Í9¾ð‡CB´dpòÙò\Ø­_žG…`Mkºg«˜Ù†î*M°&šîÙêµÖý…?Žl¢%ƒÓ=[>÷§u±Äf\fKl6Éf;yƒS½ÑÛÈt‘ˆVØl’¶í<³Ü‡×›¥üž£OŸ‹LºkÍyßæ¶Ô.%üò_´¢v8ð-BöA¡Y>²W¡Ú¢Oyä³=ŠÏóŸtG _hImòÙžµÏ¾å{óÄ&XZã‹|¶W³Ó>ŸÆ“hz9k¢Ág9e ”KÒ…Š¥Ð’ÁEûœÎµe‡xOJXÓzRt#-yìdç-Rk¢Ñ£úLñ߸ëqw!Ü|@Ÿ2¸ ÕöÊ}¿¸U?v&ZùØ;QôÞ»5}°Ñ¢–DÃ=ËÙ­vë®zJÌá 'Xú؛ϥúöP7öH•¢ÖDWŠ®-y-¹,šö&XÝ(Úgú ½­_ˆZúÖ¤³ìI&µ¨œ2xŸÀšÖ¤³¼KîENμÔ`Mtøá{­ÚQHþä¨ü xDŸÒ[H¥^Ð÷o ƒlH´ô±7E÷ž¼ÞU=ƒh Ñ3‘ÎìÄݳ˭BG&§¬|ì™Hg~4Ú¥üñ$šœB°&štV–'¤^*•N¢¹¯ ÖD“Îj2&,[&ñŒ·€ÖD“ΪÁÍË’³‘£Ÿ€––鬚 çN_ˆ¦Å‰–D“ÎZÊÞêó‹h“'Zˆ6g"¥ø÷Uô©a=¸)DK¢Ezö&'¨ÌDÉÿ÷wŸ–ÙÌ[¹Ì"O^“”B°$:“ÍüfÇÒÊ¢¹À ÖD“ÍÚž>MNËéÁ/$ZùÖ™lÖËî%Ý&`Ds…-‰& w/6-z03R5ЧôHnìÞ×ÚKo/ÑÃM´¤6鬻í,—É}M°¶Î‚ÖËν)Ó Ž!ÁšhÒ™…ëy y~ÖLÁÞk¢Ig£tûÚ…NßšN)ÑÒ·&ùp¹^ä¹F“/,i]Hg@ØöÐçÍôÀâD+ZÒ™¹˜ö†úŽY`Më`3 ‘—ÅÉêµÝ,œò7úÄ)¤R;NÖÎS÷™¤R¢%‹·ÎÍëØÕØÇs Õþ}º]æ÷Þ“«É3øÃk_›|ægîÒ‡mÎÌM°&š|6=/³×/¶ héc“Ïæ¶XõgÒšæ“ƉVüáB›­äîÝÖìŠÇ€ôé^›ˆ÷ñõ;]mZœhEíJB[­öw'~1î*ôJ –â.>¡çÕ=]_®€…œB°&šÑæZâ¶¡ßV2w9 %ƒ‡o½§­ÚË““ÖáS¬iM÷ÌgÆôöÅ} Ÿ@ZÒštö~5úbœÓØ<ˆ–D“ζÍ~»¾¹˜?Ð’hÐYy¯’½ôÍB `í[oŠÎeŽ­_Š×BÑK¢YàWÚîbÉ+¼MŠX)º÷Tº^®YZùÖ, °PÑ>@Ó®Égˆ€–DWŠÞž¡x©¨>%‰tJX38ØÌ‹ jéYŽ}x|°ä¦°. ä¶Ê^·ª‚Óµv¢l 7…uîØí«z•ÚÖ´æÍ£YĘ]»'w¸á)à}ØñcûPñuñãOj/þp€5µIgy•¹F‘-Î4õ–D³. ”ì“ôú“¾ÈâD+ëŒu¥“/¾ôAk&°¦5éÌ|x¿‚’ 1ú²–´&•a.êº ÿ=i])`Mk®ð²í¬Ï·‰°§p‘KœhIkòpM¹î•~ÁOñGG"íú´±¹HÍb>öw‰?Êž”ý'úTLA.­>Èpëͽѱà_hÉätÏêH5ý ÔÐŽl:ID+G6Ó¿l[ÚBÍUvÅg Z­ˆfa@i¥¬–ô`s2s  %Ñä3 ͳ”g >9°ä¨05¦x¦¦9XrjÌ 1Ñ’Öä³6-*È—Z§”R~j‚5­ÉgÍÜ$g©^°&šî™¹ÒÅ=,™ÅI†K,>H)¾NÊ”{³N– °&zRt+žs-?mŽÊM´Âf, (ÝB¡Z¿@¢h ¥Εò#2ô;Ú‰»³ô)kLÚ×X%Uy‰ÏøÃÁÒg]@éæÇ§['ăhfá°&št6ì虣ë$^¹½ˆV>6ëÊ0§§}Ñ w²# %Ѥ3÷íj¹Ü ÎN°fpÒÙ»¿i–³‡ÇâÑE°&št6ß²zªøl t‰– N:›ÞrÝážDs‰-‰&™ÙÞõ¢ÁwP`Íà¤#·]›Üük„Ї`It¸–ðAêï·j°2˜ôoô)W/|ì½§÷Ñ?6C¢•½HgF¹•%_#1e!€¥›eÅŸÜ1ÍüñÄ&“­œØ, (kø|‡ËÃÖÌ; `Mëð»mŸöz\gŒ6ÿFŸlÆdíZWÁ%Ô£ÅyF´dq.ñ¼÷¾<Îiòy1€5‹“Ïv]«­›_yŠÐÉ DKZóÌõ=myDÃÜtÏþFŸ'ù±÷,ÉK]í~ù/ZQ›u?xï0T¢Í–>6ó%ªRÚù Ra]s@KZWŠöÙ»~±ÎE-‰n={{;]ªhÞÜ´$ºSôZ½î‹ÉßšGvkßîYÍyå\õQ¶¡;E@KZOж}§¦G›ƒj-‰^m$1¦ž>ü.k~Ð’èMÑFÃ#'ý[s•¬|ëŲ€êž†'õÈ¢qb°&:StÍ£æÛÅöÉàT›hÁà‹eµ ÛÚ¸<CE´à.–X¼æ¯]-䬜 `Å_, ¨æåø uùµ+ŠXûÖD×d!ÄÀÎ|ðÎV‚wö€>ØÜ]vê¥uíétZgá—-­3ÒYõ¾û×—Ñ“èAÑ@K¢Ig~™ßõv“y¬}ì`ð™–çË¢y|,‰f]ÀÛ‘n[Çf™lk¢Igu·òN×D/>½°&štfØ’÷Íf§ªM´²Ì˜\}@l*û×~ÚØ¬ x@ŸŽ{ú)^ZÑ‹Þól²# g]€íÌV-’ƒ€Éžg-YœZwŸu6ô×ûÉJ¾€–D“ÎzïÙ6¨Ì¤“5m-‰&õ1RÑ»˜,VC°¶»Hg}y¡«œ¸¼X À’è’z›g?þ!Î]—gèSî->²+Ý΀ÓǦɉV>v!Ÿ ;zfû‚Ϙ´Ð’hºgcx#÷á!XrϘ3]Çöjȩߊ³= :+¤³Y|’ämæØA4KùZMV˜Æ†)¡âÓR©ñ€>y†\gï‡è"OkžìÀÚÇæîšö±þwÙ©YœîÑ’ÅÉgæôøeµ¾Î‚?L´"š¥f±TÇO¿4Éà”L°dp–xùaéMÎÔ˜lÍÀšh.³UûlUNšU¬‰&-ϳ©—«ƒhöÊ `M4élM;u“Þv†Ø‡hi™‘ÎÖNcMù¥mrTAkZ‡ß½½aj’o¦W%ý>Ø,°¸BžCžÝ5Ã'XS›t¶íÜ]NË™| `M4élûKY¹ {>­3n/¢•uƺ€êcÞò–ïr&g°¤5ëª÷Ðr£ÉZóQ6 %­Ig{Û¢­—\‹Sæ2O.‚5­AgÍÖh¶¯¥¾v…P5€%Wœ¯Á†önÑŸ.£IñSª6Ð'¶Qí’íÍrðð+€5µEW;úæe ÕIô¤h€5Ñ“¢[kå'åA½(`Mô¢èéå¦z2ÒJa©-í®MÑ^R°ûùà;í®°Ä–vëZÎ;סg”.V´¢5Sû[ökÖ‘~#¾§ÝÕÑÁñ}:6I* ÏΔ£M†è­D›=ˆ6{í._W.–ϰ´ÄYðÁ»‹~]É$õÖDÃO± É|&ïÉ%œj-œtVìØõH}‰“Tˆ––8éÌØÈþDη{g׿N`mc“ÎÊJ¶aô‚ÑÅ0  %­Ig†Ëvè« Ž“XÒše­–ZÓг äZÑše­ö>æÐ«63—Z](z˜_o|(œŸš`Íàd³:ßá‹ì 4Àšh²YK{ä­V] ùZ28ÙÌGZ¤!¼ yæ¬iM6k¾=n©ÇÑ|@`M4ÙÌŽrëVp28}R¢%ƒ“ÍÚöNÕzÇåŰ+ %Ñd³^òN_9-fŠ´"šM~|¾øLíS“&ÅOèSŠ{Ý“9´xíz”MïìoôAv86ûû§OJ™°Ð’ÉÉgÝk‹çùŒMæXÚ^¬ ðÙæã]P¯ŠfØE°&ºmn}jŸ2Ž¢Ü`ÍÁý'ú”rÍ­=Roùg™j›ŒF´ô±¹ÎF¶`(mýc“TÖ,´n{yc YkÎ’ hIkÚÞðF 5]$‚%­™Gë Q²¢~‚ô`q ­ݳY¼ÄAYÁ+%ZM÷ÌᆭÞJd±J6€5ƒ“Φ»™Sîe¸z ðc¶“hÒÙìöSÚ¥õäI4‚5ÑtÏæNvÚï úlÙ@ÿ營¾5Ý3 ×½«“ž.ÁÑ-‰&›ÙÇ2Žéò!‹»X38Ùlù@“!'³®”XM6³_]Û•÷“Iê­œÓÜ«ôæ+zˆ‚¢JaU€OÞ2/õ>Ý“Ri‚%JaU€y8iÔñÖt‘ˆ–´&›™½RêúÈb/Ü€–DãwÛIŸJÍ].^OèÓ{ÖY·ø!OŸô-«=ùË–Ôm£¬úÇžÁh@K¢'E÷–j–§R¼“[^'°¶ÄEaQÛ¥~ä šU›,Ñ˼DiŽªw¬ }•Z ³Í²oP[Bbæ£hº-‰Î<Ú@õÉC°¹‚Íôé]”K<÷™óÒ»Ozâ-©])zú@ó®>ì$¬¬³Íº€n޹³é‹ÍíE´°±w àl,Ñ—Ü#h³.à}ú\üØïÛ˜!g…´µVHe³. —bgŸ>Œc1#(€5Ñä3O/ÙI¨¢yÀšhò™±B6÷îb³Ó:[” ´²ÎXЋyÒïu«j)À’Ö¬ èe¯”¦ûD2$XÚØ¬ èÕÜJ[)j°l°&štVý-a}ûpÄh@+LÊl‰î™™ý‹ú÷É£-‰F°iކ-–/¦Ÿ,få´´ÂÉf-Ï>‡Üuµ `m…“ÍZÙ»þtU–§÷°¶ÌÈf­åT‹Ü½~3ö `M4Ṳ̀~{?¥kóü ZYfÐ=×e¯ËøAë¾5À’ÖÐ{vŠÞÒO+œœB´²ÂYл·0óᛪh¶¸hI4ÙÌ˔̳”]…$,m.Vx«›:÷m¬¦ hIkî‘ÖÌ»ÉCÚv¡sö7ú°?xŸÒ‡×ûi&ª½YðÐ’Ú¤3¯CžmºBèC°ö±ù¹Fó6ˆK}ʦÅÿD–J86‡Ï6ïrâYÈß `Ií>¶=¶ô¾øØÁh@+›e}¬1ç–§¬–ÀšÖä3ß>úK?@(›håaY@7Wº×qIZ; LO `éaY€¹vêîÛx S€d-iMïl:ùd‡ €`Mkzg+:{ÿBkÊ&ZÒštfÀJKŸ ±YÐÒæ¢wö~í—×÷Óæ ’Ö6½³e Ô\ý[so,}ëàL¯å ÉÑóò‰Ä25Ч•B:[Þrÿ‹&&“sWZYgÁÍñðy9IćõBí?ѧÄL®ñ†¹©IþÚᇬ}mò™­xÿ‚ºÅƒWJ´dqòÙûŸÆ®ÒÎf%x@+;› è}l'ª®aC™Óúô±±ÆGJ%íq+:©½Ð’Ú‹¢}mò½“+X"4Ö ßÊ’ï‡ù´ÀÒg]ÀH~¯Ýo£:OK|P6ÐÊïá[Oÿ\òcòîÁàkZÃ=ó–JÓžìž-ÞÈ´¤u¥èÜýBL׺R2ÀšÖ¢›ßuêîÙâue@KZs‘æžç`k¼§„óЧ>¨vž;& ÿúá¿`Íⓢͻ2»}añ hÉâ8Os]¦nv„›èS·×{rKÁŒ…Gµwøå¿hEm˜—1<L~W]lÞÐ’hòY™Þ9lË×â‹Gv@K¢ip¯f(?™4ÑpTZM>«Õ;dßf¸Nl–´rb³0`Ô¶·§›Ë'vP`éÄfaÀ;µÅùó+ø‰S¸5 –8……Ãûb˜»!; Ìo `M4鬥wÃÙYXœóÐÒ2[Ü|xŠ\{¿éìoô)·?¨›O—ìà,Yœ)A£5ûé©ë›Ï­Xœó†wçõ‰³¤: %Ѥ3¿wÍùÒ5ùdpnl‚5ƒ“ÎzcµÛ9iM˜hIkÒY÷F¯S~ ×Ë­0)ç˜oåM•ô‡ˆÍÌ€–D“Î,zx‘IœÁ‰³,`ŒRfKë ­¹Îˆ–´f°9zõþ]_ˆ&“-‰f°iÿì=«np®2‚%ƒ³,`Œ9ýZ½È¢ƒÒk¢Éf3ù}ÈæËO@+gY€?Ût[(²Ö, `Mk²™})s5ôôa°&šlf'}_[ÏOA4À‡³,`Lò0§èh¬‰&›ù䯾õ;ÚŴ΀VŽÀæ9”=ôt»…Y›èÓ÷[¿ªßѲÅ\k'yÿ“òó(«Yœ_›hÅâ|Ƕ“>›‡[ä €mÞXÒšMà}¢EúÝ O{#‘ö}JÖ#Ÿ­™ç.·Íyº cH´dqò‚Ï2Ïå¦OQÀnTûOôImnímá˸Ny;©MO…hImn/s<ö»lWÍÙ+-‰Z·w!G›3HX[ãtÏÌOL¹ÞŸOZƒ-i ÷l¦4ûNzaÙâS[@K¢7EçåÜpþZƒó `Áà^¯BÑ=Wï<#ûHôÅúÙG2Ñ™¢Wõ§QýÝgµ–DƒÎ¦ñ¿¹Šß,3x†ýü­Mt¥ènîÆúb™í hIt£è|ü–܆w³ V@K¢¹PJž­§¬öƒ24ÞЧÎ]Š7ŠÓk_6/JZR{RtõÎÕIvˆYlÀÚÆ&‹Úmö¨u¥l %­Ige.OÎTç„ã>€%­Y0‹íT Üd÷l‡E °&štV“÷$×ùø¨Àšh®ðêåpYäÛl­ÐÊ·f]€1B1¿²_.¢™!Ð ‰3ÁqÖ]V«ú¸€Íé¦-‰æJi9Í䱿}Ò7wýÒÙßèÓÇp¶b”T«~«Á„»€–Ô&µêm•.sNKœËŒ`m‰“Κ—$–ªï.žšk¢Ig^S8úí9ø´»‚l •ÝÅ€ٓ¹õEÏÔxçö¿NhIt{õã˜êœOŸ‡%þ7úv‘J»¹u¨c'?Öë–>v hÏvhqú¨v£Ú¢Oß‹ ­÷2ÓÖ3T6›ž´ôµI*}x6l/s>~åëÖ,>(z9{ÕÝ3v hIkòÙ(Ëœ&½-ìfŒÐ •r^ÀÍŸty+;œÇÁšÁ¹ÌìÄõQk:©06 ƒ³0`Îd'nêrð³ù¾Ð’hrŠ…NŇQÉg°I°dpLópZ·l½ƒÖ¬BhIkºgÞ2ÀÏ]4c¢%ÑtÏ,v™#ëõt›W†-‰&›­êÅx—gºÓ¿5Áˆ‰&›™O™þ×ÄWM_`M4ÙlM['å3¢G`³ÏÐ ›±0`®ÕgÛr§ÐÝ`‘Tö¨e–KKŽ“Úñ‡ÿ‚5µƒhóií´C¾ÏEÐë–ŽMÎ ˜ÛYýT(¢ÃÁšèÐv&üDÉE‰ïÛæÇþ}Š`qó)ý.H} øŒ¯XR›…+½Ûsë‰P›Õ“­Ù, XÆEïc¬ÀšÖ…¢{ÝËï¥TÑ¢ÖDWŠ}¬yq°N¢ƒ½ÖD7Šö$ª¦Î øøñ¯X ÷le;úºWª©ËŒZZfÜ\9ïÑoÏt'­¹ÌÖ´žÝs*×wº“ÖüØDKZ/Š^¥õŸ×`Í[Ø ´â-p^Àò6ì­}á#…O °tt±,`•â³Ro5ì­ç´¢5ËV©cï5t­ù© Ö´&›•n^|iòÍRð–Vøè‘Í—¯ú•áÀÝÙúä‹;q÷¥ÍÏIí~ø/XS›tf^娷Ѩ'ѯXM:kÙ¢™¢kþ¬Ñ× ¬‰¦sÖªù•{ʾÂZ¬‰n=×Þh÷ĤÁæúäÆs‰·‘¼Pߨì5ÐÒ'ù#ݽ½êI4ý¢%Ѥ3äuˆ”`íc“ÎŒòJ[ìHû1ÙëÖDó[{­Þ’~=Ì+¬€V ¾‚ͼÑèÀÓæSˆ½ÐUã}rÂÇîk´©–Ó}VÊë–,΀՗·ª¾…ª'‹Ù@K'Ÿâ¯U·îF'˜›hÅfaÀf¯+ÐE“ ‰–DÓ;¢ïòMÀíE´$št6¶Ï¸Ì¢=µë¤¯@°p^ÀšÅâ—qkìzК£-i½¸Ï1ºÚ.Çи;{@ŸÎ.ZÜ<œ^ëRÛÂî´X²8 ÖÞÃYò‰Ú^'´bq XÞ²l¦¦&Ò~–Êë„–D“ÎüêZË}287ÁšÁIgËν÷XwQ4‡N°&štf‘“ývu~ï¿>‚¥óƒÙ_Ë|Zóq†Þ3ù+€5ÑÜ\kºï1ÕŒÒO¢ùë„VŽ®pî­éÞ]×ïã7êœЧ›7úH;½/ýÔ®LZxÐÒî ¢³n3ŸOŸÓçÇ&XYâ™u7ÙáóªjZÙ@ ZgÖ¬í =Uî ûÙ›¯Z Z𜚱F“ß6½ËØ?ëì}òí@¥†ž¶9u‹gn¯€–ÔnWß©ªoè¡«lkë¬S´÷pžò ÏúuBKZй´ÖÕ¤…ÍÇ—Ö´ž=[J?­ÃßA4À ‹gÖl¿ð›ãö`ubq8w-°xf]ÀÎy–±/ù¨ÿÕ:ó-9€%­Y°ß—Í×zÓƒÖô ZÑšuFýèí<>U¯ZMJ)ö¹¼ŒCM2$Z])º•<ûíJä$šËŒhI4Ù¬ton4äeìM°¶ÌÈfeu[¥ßp876Ñ ›Ñ™ÞÅ\oú¯†]9£ƒãútóFN){z‰vÕ`q€%&e]À®f´•šìå°Îˆ–,N:«­$Ÿë-k$,iͺ°°ûÌjBPèõÀšhÒY]Å·§~`3?% ƒs`Àöa°»Ný[3I$ %Ѥ³VÚ\iËßšÙD¬œtÖêôYϲsÆ‘|¬‰&5;éë¼eÌ d-œ‹´y—ê†wÑ':+¤³¿Ñ''‡Ža{é¹EN'µé“-©M:ó»4_/êÇæä®Ö>6é¬ç=W½tt:‰æç"XͲ€m6-³ÊCt7çH°&štÖ=Ã=5ýÄæè®€V¾5›I7oÚ¬Žãè^¢ù»ÄÿFŸ‚M’JßÍç[Ëo™é_-©MÑüÙ=“þ±ip‚µM>æT®!7ÜÌ`M49e´i+õ6sìdpž]DKg°9l´tzJá ’Ö´&ÙÙ“ý!\ °&štæ9T[ïQúY)¯Z18SÇö,žj^ßEŸÎ. x@ήà#ÍêÓ¾8»XÐ’ÚAtóññEŒ>ÅܯXúج ØÓ˹³^ú’ƒ/N´¤5éÌ|œµÓ–_Ú2s+ZM:[DŒÔä'§·Í^'´$št¶Úô6"“ÆêùÖ¾5éÌ"¶QgÖ—Cl‚5Ѥ³5=X®’Íá:…à¢Ü,p\€ÅÛŇšYtøÔK¢Y€¸ßNå¨ú¥x'ý>Ñw×6÷ØÛ«ê×HÜ]DÿÇh‡%ÎâGsoj«ykOîY§{ö7úôù½¼Kµ¢~]É—Ÿ€–ÔŸ^\!·<ûs¿NhIô?|Öþ_JÉû6ȹ1Ÿ²æ× -‰ûÚzÖtþ=»þֶפh‡î]Vý "þ…–´^=§ùW·C§Ü˜IÑ@K¢7Dç4ý^û Ñ ¢‰VDÿÖ88ïjnZùVøXúÖ¿uŽîÅé–zÐú—ˆÿ…–´.máyI·×'gßšhÅYøàà=FúɘSNì>5ÀÒ‰ý;.ÀÐ¥Ì<›Ü,çsÞ¿NhIk²YñÙõvëw=È)DK¢Éfö³KÍI|ÙüÔr¿N`Íàd³êëæÇŸ´æ2#ZÒšlVß—S~÷é´7ÁÚ¾&›UŸâQnæNûšœB´²¯'Ù¬v¬½ÅfkŸ÷uKZO²YöÓëeª÷Iô h€5Ñd³fDœGW›K|Ê._'´dp²YóÙ-7É›‹`Mk.R³—§`ÿ¢Ÿ\Òß²€GôéÈå÷I‚«|á†íE´dq.o€ÒÖÙS2'Õþ}R›,Þf™#ÉãO>•®¯ZR›|æe˜uÊmc>妯ZÍí{µ¦KSòÓ§#N°´Æù̈pzg>Uô ‡D°&š|Öû®)á“’ ÑŠÁùÌëkÍóhÙ‘ã_`éÄ^ä³¾z«·vè'ƒÑk'+ cö¾xä[䳿ѧMµ‡­œ´o}FO»‡_þ‹–>6ݳѼ†ä‹DÚA6$ZM÷lL ._,qîl¢%Ѥ³±l±ÌKyÖaMnl‚µuF:›Ùëñ¾HFúUð/´¢õ&M¯Óg|öæë„VüáM:›Ã'¸_j NU›üÔKœ²Igžƒ›“:æóã`½N`é[oîko™¼ê-½þô­ÉgDKßšÁæ²CÔì&_,'‡`Mkº)Ë/÷¿ 6wÐhi™‘Í|~Iù)¨V–ÙàÞ"X[fd³5=Ç$ë§+N°fp²ÙNmô*gø”¿Nhi™‘ͶÅÌm¨£é>žÝëV´.‰l¶½IF»=¿Ÿ–]R¢…eVÙlRv¾Ì¿:¾ÐÑ XYf%‘Íöl}%µªìSø:5Ñd³½Þ)ä;ÅmM°ö­a3cà>ßyb°Yœ³ô©& ;§<¶¿ýë»+ür …ÝUÒ è6ÆNý Ñ‹¢–DO‚ûïfÆ¢;\Ò¢ÅÿDŸ~x§Ús£Ã/ÔÞüå@KjƒÏ²¡-<ÿÂâ\䭈Ή¢ëJå›u¶;E-‰Î[Üj—óµ}öøïÇþ}òãÕË—/,¾9Ð’Ú•¢ç^»ùºrÉK„–ƒÖÛmÖ½…ŽI°&š»ËŽ2ŸD¥‹&§¬‰&ŸÙº1#êZïDÑk¢'E7o-"7þ*½Nhi™-ж¹ÝGÚ6ЊÁ OlsfýÌÿB4™”hIt¡èæ²r1Ýû¸ÀšÁÉfuÖõNoýá’xt­øÃ…lfÐދܵ2zkZ“ÍÚ;å]xùÉdzÐÒ·&›ù\m7’Eó= %Ñd3sãç—L‹“ÁƒÒk'úû z–]ñ²á+ü>ödRï6‡ÚÀñÓåuKÁO%yŒºåQiŸ¼š× ­|ìJ:ëuyQÜ_»¤JÑ@+»’Îlcö‘.-gNçJ!X38鬯ÒËœôAëÊÝE´¤5é¬Ûõþ ªÖ›¾4ÁšÖ¤³Q676ÁÚÇ&ŸÙþxꔵžÁà@KZ“Ï–}¬œ—N¥ôI –¨´‘ÏVµó~ë}ÞJ£·@´ÂgÌPtððak²Ôxyö7úTÅÁu¶š?%49ÉdC‚µuƽº¿Ê ÍKá2#XÝéž-;æÏItXgk¢éžyÓ2Ÿ™)‹Ë `M4ély«ÛkðItX¤k¢¹ÌvÊ}ÜrDW~k‚5Ѥ³íc<®“«©øýñe# hI4ùÌB6¿z“Oì’HhDK¢Áö’õt –< O_H*Õ,¶¹TÕná—ÿ¢%µéžÕ]ß‚dÑ9ˆZM>k¯§ªÏ‘*¼Ôh%¼gY€ù·và·KÖóéð"Ÿ,^LF*­­ä¥€ªh&.°&šî™Q‚OlƬ‰&µe~¥>zþ“ðð:¡•e¶HgþXé³hõeÆ3€hi™‘ÎzoÙ ]u­ÉHDKZÓ=ëÃuª3tÙ¸ø_`éØdU€ù·ö­ÚÏL hÉàd³Qó_¤æ—LÑDK'›ažÝÝQK&§­ˆfU€Ï[»vÕ;Ëáô XúÖ¬ 0všFÃz#ªÂ—¶€V¾5«ì4XÞ™ï|œ´æÞ"XÓšl6ý¥¬A)Á'ZÒšl6GZyÈõ¢e’G –8œUvxWŸ#?½”£‹hi…“ÍVjv”mýÐä·&XÓšlæ•ßÜÆ37€5Ñ]’ø(>yŠ?6^6ЧëÆd{ŽÉç!: î°ß€Sö_èSNIey¬¿B0y8€“×DÔÞíŽä5ÎM´°Æ+ëÞµ¦i µ»]¾Á ŸU>cÛibk¾.¹£2?% >«‰|¶s3Žªj½h —•kßš|¶‹?,,ù¶’¹H¬‰hn]Q.ú¸»lþ>Ý,p‰o;róO¶ž´Î¸»ÖÖݳ=Z3ßRæÒpwF°fqºgûý@¨'¨0q9€%Ñ, 0VNå]€ªŠ+`M4¾µLyW5ët†3  :Ë…¢kõb1õÈ® @XÓºRôèc_‡²ž´^” ´¤u£è÷(ó¢ÒYÍAk€5­Ag¶æÞ/ÑúM³¨ZÒzPtµ¶%§V†L¦€–DOŠöÄÌu¦q2x£d€5ƒ/Š^^Lq+g8id-i½)z{ü"ϱ­ôXÒšUÕg'ŽykOwÒ$Њ֬ ¨¥¶<’üÐVܰ¦5Ù¬Œwò±N)ÌhIk²™GmeÈnJÍÁÞkZ“Íìôîû›ËáŽè> %­Éf~™Þ»œ·œ™À’—ÂŒžZëû†]9Y œ³ô)ì"UO +·Î÷'Oœ$N´â‰—ž»dLj~T{Sí?ѧwQzÞôÅ¿_ôC¤ë÷þý'úô|VšÏà]·ô–Ó"K he‘³.Ài·’—\×)ÑÊ×f]@m¾tæù [ž´¤5 ­ j!OB¯L2 `‰ÐXPÛžöGz­QaÛ±€–´æ2ó†šõWÕÂþv-‰¦{Ö=Aq}ñªÊ&s-‰&Ÿ™+í#ÜeG…×)¬}kºg­³ß¼éƒÖLRhIkºg#×5–Üœ¨†¨‹`IëF÷l _úÅ™>ˆ®Ai€5Ñd3ÇÖ­OÅ+lxЊÁYPÇX¥¹,¹Ö `Mk²ÙLÉÜJ½¥_acÖ€–´&›Íl”´äŽ™•å>¬iM6›ÅgˆèÑ}%™¬‰&›ÍÞæØ7V8<¨ ´dp²™xc=º¯ @Ö´&›Mû§o9c¡VFk¢#Ú¼ø–åZˆÚéœý>]ÆIç²%:‹Ì¤L×`ImÞ“ÖU²Ézma_½€VÖ«¼Ž{˜óÅÑÅ…F´$št¶V6×üV§tz¼çB´$ºð®^Q-Ç]-‚Ч÷÷`ñ×\CöSÂUÁÚ:#Ÿmï›<òy¥œDó[¬‰&Ÿ™Ål«ë]+ {å´ô±Ég»M¿ê” ‚.‚5­É){äUJ•Ó%‚OJ°tµÀ”뺧w©Ö[”Ö¢Íô)Î ŸÍ¼œK£“ŃÚKg]@5?cå-'çGZ XM>Û>œtÈiê5„>k¢ážµdÑãÚS÷‡Ù¬3 •Ýź€–̽[žW%jM)€5­E=ûø"jÙ@KZOŠ^5矞ÉÒÆ” °¶±±¹Z6oÚÝ ù&‡´ÐÊMËZ¶#x$¹Ô¨ÒW`é[Ïð»ûœ!zy¢³ :{@Ÿ^2ÕîÛó½õݵƒÞ@+ëŒãZž>ìLç&”°fqÐY+ö­ö¾ÍÞ:i > hIkÒYy{\rËÌ\‚d€¥ÝŲŸxìOÓú­ø²Vv×$•¾-f“«d+s¦XûÖ¤³bížzïáÊÒ—€–¾5鬖÷,&9…·2w, %ƒ“Îüý$Ï%§Aq~UKËŒUí=Âp^ÊI4¿5Ášh²™¹<3 ¹ÿVe–aKËŒUÍâÅ2¿¨4z'Q½Nhe™±*À³KŸz°’¨ZM6ó\"¿ÓEoŠZM6kvîÙ±+§,·`í[“ÍšEÉ)ßêGZ³OO@KZóÄõ‘ÑmÂàO¾ÂBÑæú”ÜBNééÝ|E&q&°fñ :·²óeœDss,‰fÖZó1^ië-—ë¦wö7úäñéÍG\Üj‹O gÑÊBc]@ë}ì¾.…®'‹s•¬Yœ|Ö½Ev®_l/nm¢%­Ég#/Ÿë­»Hl³Ðʉͺ€6¼_ݵ?ÄIk®q¢%­ÉgcØ4äÑt™ò,ج hÃ_ºî§´`o€5Ñ<ïýYt7tŠ~¢RÖ< O—ËÜØ3mó+õô¯ÊîD-|ìÆqm–Zv× ~øÀŠÅËì[Ùj¹ÞúvéŒhaw5–ئìûC[:ÛAk€:k, hsŽ5²~³À¶Ç¬‰&-ógkûb™±Ö( ¥eF:[yzÙ”Ý3];€5­Ig«lo©ú)-¥ÖD“Ζ?-}”SeÂ]@K'¥¬YÒÎòS@ ñÁšÖôÎÖ*ÓŽdÑ$3‚%Ѭ hö£ë(I÷ wÑŠÁYÐv­ÞäG¥”|3‚5­ÉfތÜù‹uÐ:ÄØDKZ“Í,‚X^:#A2ÀÒñÁª€îãKò¾Œª9‰Æ `Mt§è:ÓºöL>œ×¤­œ\¬ ð‰ŸsÖÏm£¤õ d€5­'EÔ<@WE3)€5Ñ‹¢}k¦[ËË“Áe-·Þ©hÞ=ø…­ Qã}ê“@‹ç’Óÿ::)j7^V´¢6ËüÎŽ-û…|ì `éc³,Àÿ®Ô{‘ïIËOZÒºRônvÜßÚ“è 6Ð’hÒ™;>Õ[}˜ÀšÁù»KÞþÿë+<.ñ%þ7úté—(»$Ãb‚îÃ}Jc]Àú´½øµ‹ç<ì!‡÷µ/-}mZñþ·z¸“·@.%Xò˜ýå¹’ÓŒ¦Î±Í|ö `i¡qZ€³[éú”¶Ì¾¬‰&ŸÕ´S^Y§R†Ø­|kV¸W?’d‰±OkZs…Wß/EAo @ZÒš|Vǘ#]LvšÅÁoM°¦5Ý3££iñ¢ì-D6$ZÒšî™Qcó^;²hŽghI4ù¨Ùª³Ÿ.¿´Š·€ô‰Å騴n^Îu¼õIm~m¢%µéŸùE¹Ÿ‡§zAí?ѧ§R©G«u,ýaŠ|@+j3S£{Kß4†¾³™§Ð’hò™ÓïºåÍ;€¥Íº€Þû^Ã_§U­Ùs9 %­Ég/Ú»÷§ÎÞdR‚5­ÉgƄՇ™ëZó[-iM>ïë˪žØ…7 ¬iMNöŸóg’‡¦5ÙhIkzgãÝG7©¾xa!FkZ“RÆò Ǫû)¬*hEk è3Y \ä«…N‚%­YÕlèùnà%G “6Ч[?®3/46ÔÏ®øË–,N:›v‚Ÿ¾àŠÅà 'X³8élúªYT§´ðe3€5Ѥ³¹Ú*MOÏ%É-€ß?üuBKç·ÎsøU§~t1;? %у¢í໨$^Ù‘6€5ƒ“ÎòÞÙvçùFä$:|k€5Ѥ³R,rí‹ÍE:#Z28é¬xÿùq³ÙI4ùŒhE4ëF™9/¯! Ί¶– κ€QÒÎÏZÒšlæÝñêº\ArcÈfkZ“ͪÏ;^Y½ÊiloÀšh²Yɼœ/Žfç´dðÀïl¦&‡> o›èÓ©É%^§\¾ôð=YœœB°fqÒYµyy¶P+a…¬‰&ÙN£\ •N¢Ã·XM:kÅcî[ÞÁiñè"ZYg¬ ÍûÑ<$Uĵ‡·ÎçïuZhác,-4+”5ÇÖ×8M‚5Ñtϼ´5=kºñV# ¥M÷ÌßÎrËú›[M´$š|Ögí«nýfñ}@K¢Ég¶=ÆÌòH ÁÚ·&Ÿõ=úÈYõ‘Z J¬ˆî¬ æbù¤î#ÿŒhÁàuc4 ’ûV]ñÆ×—Ö´¦{6|îVýâ}‘3ùZÒšîÙðC7M™ÍøúÀšÖd³Yª¹•úûbgW@KZ“ͦ·ªø"A¥‡˜hIôàm›UiGW縀ô©x…œ2G36”ÝñÀÚÇ¢çðÉÚê}Ê;ëàuk¢Ig^A²¦j›|F´ò±Y0VÞþp$s ËœXÒš¹ý¾5½¨@îôæô»ÎþFŸ2ŸI¥Ë~Ê{ª»lq: DK'Ÿ­á’òãKká[¬Yœ|fË$YÈ(_Mw–¡´¤5ùl§m®Çåþ¤5‰`Mkzg»¥5~jH$­Ã*%ZÒšÞÙö[¾'[¼N`MkÒ™¸ÞMJç&‹´¤5èl¦ìÙ[zHçJ@+¢9/`¦2½Cv Ù8?€%ƒ³0`¦÷ëäÍ­€5‹o¢ßÉÇhÙü´Ð8/à}²8 -{+Ý®¿tÞ´bqVøÐJX#³Ê›`É⬠˜¥äQÓ-ê¤5e-iMB+Õ'`éîËXÓºQô°“¯§/´²–´îm¾ÝûFLÍ B´$îÙôAT­\òûò:D}Rtï•ëìOô©ƒ9·Òô±à•%?-©M>¥Ö¬ŠŽ6#XûØä3?s}ùÈ¢¹¹ÖDsc/ú¬_ | hecs`ÀÓν$7=kL= `mcóÄžiùüýù%øHDKZ“Îf]^Å.'-t¾´":\LØ©ëW­¿g×ÓÂèSj??öô®.·So+üp€¥Í€9W­ïAȪÅy%Ð’ÅéžMï—ôkqŽÄ`MkÒÙ*¶T¦ž,ÞÃ])Ñ’Ö¤3‹ÚüÉRÔHœG6Ñ ‰³0`®1í¦:Ū‡ðž`‰IY0—mË6äQè!]/€µoM:ó™1vèÊ.ÒŸ`M4él§RËÓYCUK¢'}…]KÛí‹ûÖ´²Â™‚eGOI£ÞÊÒ¢Ãu%Ñ’h²ÙÞžM6#Z 6[)Õ\òåÜ;}kl®Ö¾u£hOÍ—$ª“èIÑk¢;E·‘”ô÷EÞ`´dðAÑÓcÕö…èMÑ@K¢Áf+{ó•¥×cwV¾´$zQt^-uýbš=ÏXûÖ›¢{Ú³~á²$ ­W0Ùô$ øyrΜ³ô)+Sm3[«·»Î“Ú¿hIíBÑÆÃõÖ¬íp`³]NK›…>yËku&eÐ’Ö¤³RGYý’ÓsÒºR2ÀšÖ¤³âƒ üŠ^ÍOM°&šG@±p¤.Ü-?.q Oñ×Y±¿}Q;ÙW09ÐÒÇ&%ÙDzSÃ…žîSÖ¦Ú¢Oj“Ðì̵ÿÝJNjós­¨½EÛ:õœTy¡q©,-´ÀgÕÀ[ÏõëLÀšh®3¯ï_TŒÆB´dpòY³¶¶eƒ³·^kZ“ÏZš¾Vôäv¸ hIkòY«{ÏõÍ›÷&ÑJ°Éº€Õ|VªîƒÍàüßß}28Ý3‹}nLÖµæÙE´¤5Ý3së½UmøÜƒ{F°¦5ÙÌ«…vÿÂg´ÐÂ2¬ ðW›µªü ÛÙ 5€•Í5X`ÁCj~èZÓ)%ZÒšlf?$•¤ïëÜ3¢%Ñd3/áHSÎ\îìQÀšÁÉf£åwн®5 N´¤5ÙÌÛ´üŨ› ´°¯ç,[';¯q!¤“hÒÑ’h²ÙÌ£Xà–DJÁU X¡”Á\ïåÝÐËÏÝ€â“úˆ—_çìoô©Žœ{ú‘]ÕI¶o›½N`ImÖ¬ikv•/Æìô håc3ãzÍéÏÐUtëЧ÷ðÃ×ô„9Ù¹RöŸèS`Ø_ÛX8%ýV¼óÈ&Z29 my.Óübkóº2 %Ñ$4=ñé¨2Si‚%gaÀò:¥]ºê¨ÄUJ°¶½Hh«½“<•o09?€5ÑtÏÖ{\3kNßšaÑÒ·¦{¶}íO§jM4Õ&ZÍ<Úµ«­Ñöñ°$ƒÓ=#X28 Öö–33apž^DKZÓ=ÛÞÜh,uºÐ›‹`Mk¸g¶>³GÉú·æýp@KZ7ŠnÉÛdë±{´$ºlüä1Œì-pbÀútI,îWË=ëóMÙ.' %µ'E[œ\W•鬄o °¶ÎE[x^ûR³r¹°&t¶½e€­RÝà|½hÅàl¹³±‚–#–X´°,ÀX¸xN–ú‚>˜šÀ’ÁY°-V¬ö7\xødpjM´dpn®’[É?¡ª¤5Y`MkÒÙû ü6àúà!…ÍE°ä!±,`{MwD——Y j--³AÑÓ}½¦/3’ÁšÁÉfłե„rwù€ë¶û™†Oïá‡ÿ‚5‹“Κ_´½;ÑhA6ВŽØO®ïznÙï(Ú|@Ÿêá¸ÐzöA†··²“Úd¢µYà]_<WvØ#(€¥Í÷m×4NòÝËЧòyr©7„íÒ4àTˆÁM°¦6 ­›KY³^:ù/£-}ì°Î,XÌ[.¾ïqƒ¬iM÷Ì[é®q:vÒšaÑ’ÖtÏüSõqËì?‰æ'ZM>^,Ôä.¥—⬜îÙðÛ¬ç§ Þ´¢5ÇìYjŸsünÍô·èÊövý—ö$:ðÎ>ZB>7ÞЧÄ~rʬ­øÕ?`ÉgY€W¤yEœœô¾5ÁÒ:cYÀžsµ¼n´pXg¼£ hi‘ÎæÎž¬'gž±v%€5­Ig«Ô4¯™NZ“Sˆ–´&-h‘ôwl^ǰ¦5élÙ*];ëÏ>¬ hic“Î,zi>ÛNMµ‰VD³,`ÛOö¤9ÆfÎtKûšºÛBäZ«~)ÞRÐhIk²™ÅŠÆ S¦N¥`i™±,`ï™.UÍ;¿ÙÚÿk¢'Ew/æ¾à=|P6Ð’ÁEÛ µ/§Æ´ß—ÿ¡%Ñ¢sêµÍrv¯›kfH&XÚ\¿ãíôùF4—ÁšèLÑ5íòèJÑk¢ E›—‘õ)m}r•¬‰®m^åjzÆôø-÷ùZqÙ,¯Ö¼»‘¬58ÁšÖd3‹R½W´ì*´ßÖ‘ÿB+›kñsyü`Lü{Ø?Å¿UèS @N)½ÖüS¿.©ý›)þ/´¤ö àËÏÀ˜¢\§üV<¢OXdñ²†7ÝÔ©4“UˆVÔÞä3Û>bNÎy›ÁfKg×&ŸÕ²§‘”¾Æ ×8Ñ’Öä³Ú÷®mËë¬7ÙDK¢ÉgÞ賬KâØÉàAi€5ƒ“ÏüÕ¿ô!ë@ k¢ƒÉ¶Ñ[Œ=°»þFŸê.¹Î|€¢ù´ò:ëz-}lnìVFéM¯¦ »‹`éÙ¤Òæ…}%éIÓÁ] Z977ݳfW©rû”ÈÃ+ël&ÒY›k•,w›çÁšè°ÌÖ®vÈ{“à ÖD“ÎÚÞ+"oì>5ÀšhÒY7¿rí¦o®N_œhasÍD:³€-­2ôoM÷Œ`MkºgÞ/h¥K¤ú_Ñ3„¹k¢lv¯*¨·Põdpò0Ñ’ÁÉf^_ÛFWsDføÖ´&›šFÞSÎïN´¤5Ùl´UØr­\Ò·’‚ÓÇÎá—ÿ¢¥M:[ň°^^EOçM°fqÒÙªÝHIî¡ØÏ‚5Ñ; W^ Ÿq®ßácÿ‰>ñ0·×=ÕÜŠþ±ƒÉV>v ëlû™«mŽE‰hI4ùl§YÖº ò8}lºÃK»ðw{*lkú¬fçÍßý7ú´³¹½ví}![œœD´dqºg»­ú¿´gÅâ! X³8ݳÝ÷hzÞ™IgKÞB¸EÚ¶Ñ[Zê È —Hk¢Ág9½«.õs5ŸÿB+çfÙ}.QQk!fn” °¤uMÝ,`OB’´æme@+Z×LÑî]×K–ÇAk^°¦u¡èåÅxS¾¬yR6Ð’Ö8?,4O¥´[íI4—Ñ’èFÑvæ¦ë3ÝAtÉ ´$ºSôÈmwùNcÖ `í[Š6N°“ð²RNZWÊZÒlf«yÞšL¤•’ Ö´&›•lgÑ­Tè$š”B°&šlf›…NE'ÒÂN´bðF6+ÆFië­žGà¢%Ñd³²ÞÀrˆ];%,¼•¡KE)ö“‡Ôꯇô€>R½·á›üä4[£ì?Ñ'ïŒ ­–¼æ(úήüåDK_›|Vkõ+H5!hVžk_›|VG÷Lý [›hIkòYÝ>µ2ë‰~›;›hÅæ«jnÕï¡¶|e8‚ʼn–´æ2k­Ì=§î‰“Å –<ñN>kn…ù™!"‰&©¬‰&Ÿ™ƒã©™jÄ7ýB‚5ÑôÎÚÜÅþÕà#q[¬‰¦wÖ-X­]oµ.¡ZYáÞY·C¯Ž-ŸØ'X¢”N6óî7½éÝÌgðI‰–´&›ù}–ñ‘ºÂGâæ"XûÖ3 [ý_·Í¤›}áèú} É)¶f«ÅŒrH¸ÿ hÉâA´±ážC-÷‰+œ`Éâƒt6Êôr!5i„(€`M4élô5Þ+ªÁC@´bðA:kÛ"ÕÅg ´$št6ÍŸ-Cn‚5 N°Ä)ƒŽ†p׉ñWOŽáèØ]£ONiP»ZÜ´o“SNÎùŒhÅYä3óoË;‹N]âüÖkKœÞÙô I]~ ñc¬‰¦w6½0¬ê—â³óð"ZZâ¤3oØlG~Ñ¿5™”hå[OþîÕrÊ%OÈÌXâ£O±*×™™l¾’TµG ¿ü-©M>[«ôn%Ÿ§Í…F´ò±'7öò†S~†ŒD°´ÄYà½ý•VMƒLÀ `M4Ý3[¢ÞQ?@:b¢%ƒs™í¶|¬·|«ÁÖ–X´¶VNzÓ±Á ù€–V8O€í…Jý76òhЧRn¨]R6.ü¢»öìØØ­|lÖ”ä¾Wשt6ŠZ±8ŸÐ‹÷Ïêz•,êöÿ–vëŠ÷tµd§”lÀšhÐYÉÙ€#¾5â—€–¾u£èRÓÞ]-œÌÀ `MëNÑÕûgÉ]cFT`Mô èö¹™E/ŠXÍ}í£I=ÏDß\ƒ²–6×¢èíaÁNªÖ#Q2ÀšÖðΊýhïT-o®ÁeF°$šU¥÷§³.šËŒ`M4Ù¬ÔÒÌŸ•ÙŒ©1¬‰&›•V¶áåèžÉ_¬‰&›Ÿæ—õV3¬3¢6cU@)žÛŸ¨~áÌ<3 Ö´&›ù ó±/ñN¢Ã2XMR¨5Þà_=…ØUNèSw~lè?s‰4:›á—ÿ¢:cU@ñÊǵå̘ÉWìÖ,N:ó¶¶ÕÕSs–BÑ+¢¯ÔKõ¦äMtãW“øØ¢O›TZ½nß½=ygçøËÿA ;{±, ý{_ðóÁw @¸Ìþï"=ÙŒK܈0™¿¡ ›Z-,ñŲ€ÒF±5¯ÓÍ„hI4ù¬ÙÇÚ%ËXÁ'X38½³¶šùvS~$C‚5ÑôÎÚ¶`uV¹,€÷@¬‰&õ²ÛH·b¡Ó·¦D´ô­IgFÿ#ËÝò‰Î‚d€%:cY@ñ¬ÁU÷”ÂM´B)ÌP,Ý‚ÔÙÒï"}bÒßaèÓÅéÌÛí÷vuR›Ñ’Ú¤³‘«y´C>»Z °ö±Igö‡×I©K|†“he‰gÒÙÙ[ª®øì$R‚5­Igcú[p‘wË}XM:›Þ·xé­Öf¸É!ZZf¤³i~Ýú9|4Ñ$¢%Ѥ3‹ ær¥êì<º– ^HgÓþ{ ùes:†k¢lzèâ‚dƒ¯ hÅàÁ£õV[¦¿G×C² ÏЧäz~ìUúçZJV›1Ñ’Ú¤³åCÀÆÐ—8«ZM:û Ó¸åôœD“Tˆ–D“ÎvÊæUÙ1dט–\$VÉ:s““¿fâyO´r~0Õ¼«ì5ˆ¿nü“³Pðð€>-ñ v«¶5å^á #€%‹³, ˜›a%WcÏ °&š|¶Çç!A´XMïloûƒ/J'g khe±,À[ÿqœ66üá€V66Ëjªæ2éo/“/É,], 0c¥ñú&~kæ“°ö­E{Ýʸŋ§oÔZúÖákÙýß‹¬tlV$ž= OéDØØ5góâÓ™ NR@KëlSt©Õ“ûåu$,­³´®cøÅŸ¸Î{°´ÎXàãRIM¾Ê™Ì· heµBÑsgûñꉽ¢d€5­Igy§f“.:|k€5Ѥ3oùâ}ËtƒÃE hÉà¤3oË=§|`/&°¦uøÝuxÃÿ"_j4¼< OwP¤Ò2êêi}A¥¤q¢%‹/Šöôí6«æ še²­ÐË줟yõË-ëácÓ­ `écó>Þ˜0å¾õùÔ“E›­œeµvûÝE.|Y,i `MkÒYïÄL]4Ï\‚5Ѥ³:[iSû¸XžÀšhÒ™yñæÒÊ÷ñ‹X¬‰&ºÙÑ“ šð>qJGOôÉO¡Ú-U ››|yÆÎ_,9 }Rt6þïò|ŸÉDÖD“ÎZó 2zÛ˜É'§€VèŒ÷_>iï¤çk¯‘ø±ÿD~x8²›×Ÿ6¹íØâÕtKkœuÕ€æÏʽVXM>kF¥Èc&»å°´ÎX`<<ì$¼=EŸÖ he ~ë^vòwpYkºâkZ“Ï|8ì¬ù7rzâ³A>û}:té#uo‹Ñ¿ˆ»XEÐ’ÅÉgïN UÏ—ØÁâk'ŸdAzú⦔o›-iM÷ld;VUoä¯rXÒzÒ=~ô/Þ6™ÕЊ֓t6yb&ë“'¾ÐRã}Ê0!§lOyH[¾OY™GÑ’Å!º%;êÛ˜_¬3œØ-­³AÑ5¯òÍîbÕf@K¢'Eâ]•ô»3–ª´$zQ´÷}ù¢¬l1u9 ¥o Òü¡,è>yâÁæúlÂYhïC×J׃Ú%ñ—­¨Íº€–ko»^úCœ® ¹Â –HeGôôwº$ßåìJ‹ÿ‰>*q¡åf‡Y‘ó:× X:7YÐò\æÖ~³½Â2ZÙ^, hy[ø²å©‹Oè¬iM>+Åüø¢÷×í¤ZÒš|Vª|]¿)e~JkZs™•‘͑כúÍd-i½)z[¢·‹íÓþè ´ zsZ@ógðú“l!q \¤V8esZ@«u·Ýõ $¡AD@KZŠîÅïµå8—™Ë¬iÍóÃÉÜû^êZsw-iM6[åÝÛH§”pmG´$šl¶ª¹ñ?WÊ g#ÜÖV8Ia¹—Sa²'¿eè“gǽFóôc=a§Ð€V8…eÍ[E÷të¾rÍÞ--‰¦ÖËìºäZÕ.r–>6Ë̳Ûïd&}‰“J‰V–8ËÚž9Õ®WÞ/v¬ hÉळmAsò|¸ƒd€%:cY€‘p­9aVæ“ÁÙÊ0 %ƒŠn^%õÅ·n•¢–DOŠžvô¡ŸšìnÐ’èEѯõÛ€Ð÷æ•xkßzSôž«&Ÿš%Ø`I4©°g;{RGƒÓ'oh©ñ€>=Ÿ€SüèYAè'6/+Zùؼßõ µ÷ªgúmŽ x@Ÿ|»Jµý4ºÖRœø,|0 %µE¯¹W»ÝAD£-‰&Ÿ•¼S^·®ÉÑ,± h…Å9-ÀÜh3ØO«hi{‘SÖ¶ù¬ŒœöuÔÉàAk %ƒ“ÏʬFJŸÆ/гÀ&&,9 , èÕÎoÚ¬kD|­|k–t華fÖ_6Ù\" %Ñ™¢Gû<#©¢Ù@% %ÑdÒºç»gš¾Ì¸Ä‰V–Ëz+ïí¡“8Ÿ}ZM6ku§ýÓ DÚ×<>–ö5§ô6Só‹}ÍnP-i~øúŒ[–îŽ*§ôéˆKÜ×\äV†!»>€%Názï%ù9µr±ö> ¥ÝE:ëÝ›Eëí<;‰´"šÓ|Èj±Ÿ.'©/b´$šßÚÝÌ4·|w6‚ÒKßšU>á"ïu)â8‰F„ÀšhÒÙȽì)¿³íD,q «|ךú ›ÅÚàÖ´& s22 ÁŸ8…Uè“OiŒåCº;̾1­Pé¢÷Êyëýhßù¨¯ZMOÃçx´ôgì˳ôé6†Tj'-Ô/²¿˜šÐ ©°,ÀûÎR³~—D“ÏÞ]~–žµXÐÊÇfY€?!ÍÖä9R‹]ÜXÚÙ, ð/_s¹uWý¯Ö;Ù@K'ŸA•Uô(`ó; %ÑtÏÖ*y¦!û)3HX38ƒÍµkIn4½Øú+€5Ѥ3 \½‘ïå 8œ¹•-œ”²}ÆOÙSµæ±I°¦5½3;‹ÆjIv‘Â#F@+Z³,ÀÍ¿-ž)ª³ÀB𖜖ô½S[?T(‰¦_H°&l6’Elï¡=2‘Bv@+DÊa#™_«Þv±YN@K¢E¯ìIײ¯°SÐhIt'ØoÝ&.ÅŸ¼³ïì}ò¯@g#gÃoý;¤Ž´¤v¥©Ï¦Û ygèÓí¦Ú¾X !ßÈ×øÃÁÚö ¢z×oÅ7ëÊZ±8ÇŒì3D]¨ócO;tÇ5OðtE‹-­3ÒÙ|_J|BiwÑY XÚ]¬ °`±¦w»UQ4ŸsXM:›vþXŒ,“8Ÿ?XM:ó'º^«LâìüÀšèðÃר­'µß€¡—øŸèÓÍo%æ^Þ\Uí o²éžý>¥˜UV2³ ½¬l³ü$ •íU‚è¼mgÊEÿñÖ`íkÓ=[=µ]ô›ÒÍ\ñ€–´¦{f+Å£õ-`³68€%×vkW¿‡Ò>ü´rx±,`ìä‰rc¤xÕI°ô­Y0Ì¿-^ª¬Š[“`M4ùl7#¥­§Š‡äã€V–Ë|d¤ËTóSv ’––ˆÏýMkÈév»… ´¤5ܳiñŸgÂÊ9o|?`í[ŠÎÓ/ò’&úsó:5Ñ“èVæÿFzKî§< OoÁâ§¾«dNüå@Kœ²)zT;t›¾Ä3%,-qN ˜iûÈ-B?ÝÑvÊZYâœ0sÙæm躛™g-‰æÉ5çÿ]æK>ËЧu¶¨¶o·Ÿ1ê’Úl–Ð’Ú¢w®­$ýc¯`4 %ÑÜ]Å¢‚ÚÕ! ñÖ/€%RaY€{Þjgë|Æ}M°&zRt«ža¢û¤¼¸ hÉà\fe%oè¿û0U# :cYÀ;q,=¾¯á[,ÑËfýtÑUß}6+XM:«Õó¢nc#Oç·&Z18 v¦ñÙÃEˆaW'ý>…|•j»ÍÊ¥Æöt]Io`Í⤳jcM·éñ‹3Ó/ %‹“μ¨ Ï-¯3¶R`MkÒY+¹¬>åºäÍÖ--iM:kÕà/“OZs‘¬iM:k­c%ñBås›ÿ:%gYÀ4çªÏ¤>ò}nx_'°$šON³­Ví·ëÑ=/ˆZ9?X0½ñ½7vÕEÓâDK¢ E—]Ì›Ö $¬œlæw˹¨…àŸk × ¬‰&›ùp¦Õe¿ðóý:¡%ƒ“ͼKø¼Eª'­%¬iM6ÙÆk¨zÒšœB´¤5ÙlX¸¸úPó–?Z!R^©Ï1’÷ŠV« ª€ôéZ‚KÜ6æìCËýy6zЊڬ ˜cÕå£:åóƒ›`éü`U€Eæ-å,7ŽÏF-iM:³ã'¯Ÿ¸I]¨6Ñ’h~ëÙ»-%{âƒÎÁšÁIgs-/ŸOúÆ®” ´²±Y0½/^ÎòÆ'ëàuBK¢y,‹ïΞ<ñ‰¢Íôé…~Êòî¦óR5súØ9üð_°ö±é­æ¹¨—6$‡„ ò, 3hÝg1°ì,ðÕ'€%Ñl×l‡^NuvµšÎ“Ãù±ÿDŸXœ|¶Ö,Uo.ñÉ1yÐÊg]À\>”5uÙoa¬Yœ|f“9êãË¿.ýÖD“ÏÌüvÈm?™5¯Z28ùÌ⨶ۧbGÒšÁšÖtÏìk™Ót›1}Òš;›hIk¸g+eÛ YN×þ<ݼNhåØdÝ•Š' ÅýÉ=[pÏЧ{íMµ½ˆcÞÊ…NÞBâ/Z±8ËVòx&©ÏØŸ Þ× ,­3–,shW­[Íù$z¼NhIkÐÙÊ©{£Wù*‡Ý<X:6ywf.Î.ý:wø¤u¡l %­EO[òó6aá ºµVvËÌ™µÀ§ì©¢yeÐ’èAÑõ}ð©¥1³& %ƒ“ÎÊØ5å/Â{vhI4¼³UÍÁûæåœ˜”›‹hI4ÙÌŠ›/G|3HXÙ\™e«¶fT|K{>-³ ha™e–¬êC¾Óånà¤5O.‚5­Éf¶DÇ{r§¬u ´¤5Ù¬#$}²Ð'ÃäuB Ë,'²™÷ú÷ÄùäâiO°rre¦ ¬ÖÝ ðc÷÷•S>ѯZQ›e«w‹šç%‡ê´Î¸¹–Öƒ ’ëÌ£ü~®‡87{fÿÿièS†IX*sýÓœ»H²kýúäŠsyKŽœänkŸ·ÿ× -}mš³úšrÇÏ‹Õë„–Ds{¥ëÊ—¬ƒÓBc@°¶ÐhðQýRý2—è$šö&XMB£•þ3Á]28¯JZ28ݳa«ÎV‹~!ÏŠŸ€VŽlÖ,xlÿ&ÙQá·&XrTXàBíPøâ>…µF­œu¸Ô^“~ŸµXZf¬ °åÙvªrÅÏáë„–´¦{6·§\jçOZs•¬iM63‡¶ívXyÍ´³ÖD“Í<^´SWÖš©ù¬‰&›­êY5—yÚ\ôrÖ6ÙlÍ÷såekž(%ÈZ¡Vxš··ùÑÚBÈG´$šl¶}¢ÞÒorx™À’ÁkDϽVû=ìŸÜ”Ч€ô)M0X¼õTÆ­%àÉâ䢋³,`m/ŽX—w„ÓîâM°´»X°ö|{=rܵÃçX :ÛÉ ø ™ÄA¥­8ËŒý-v·v§o½)hIô èæ“<Ô.¼ŸKÖ× ¬|Rt7çnNÙ%ež_k¢EŸ¼8'Ñ“¢ÖD‡¯åídGúýáOnÃààôéå&¨½ýüæåÐäÒ€VÖ_6·Åëv¨•àŸ«Î× ,Y¼Šn%ùã¿®u¥l %­+E›[9—:îsËú:5­IgÙ=ßî¿NZs{-i kŸÉúÓP:6:ž= OWê¤ÒbS¼ÆZV›,N´¤6ù¬´6½DKʹ΀–Dsc—>SJj;Ï5ëëÖÖWiyø$ù*§“ÏþFŸ|$^ÅK…ê­¹Ñ-þ¾ã}ЊÅY°‹NÅSðD¯t“S–¼RŽ ð‘mÿôŸ×—~¯ZM:k>]cËîYfTkß½–…Mº‹”™QЊÖ, Ø=Y Zä°+³"!€%­ùbµ{ž½å™dx x@ŸNlnló¤÷¸vÒ=Xœé-YœtæQS«zÈ—K09Ð’è õJÞ›Oæ¦k°ö±IgNiëù)™kZÒšt6¼7wÙç¯uÒšLJ°¦5éÌ8xÍ‘å;ÚÌ"€–´?ÜgŠt4~ ùXð€>=Ê’J‡¹Wc_RLgVKg]ÀöŽ7cÊW ™Y9¬‰¦wfÀÕ’\æô¹„zÐÊÇf]€ª«×ÚÕ@73s9€5­Ig³-¯’ÝÌÜÊ€–´&M¿+HIך›‹`MkÒÙÜu›Ÿt­yb-iM:3.¶Gdw˜9Ó¬iM:óÜŸë-‹æ'XM:[¥øÌur°¡Ig£O\â~ýUgÓY¼†_´ò±9.À"ϼjšºÅ¹± –,Îq{í–RÝò¥F¼q$ZÒšt¶S÷pñ¼?NZss¬iÍo½«šÝŠlZ³.  %­IgæNÛ2ýx•RtÏoM°ݯ€öîF ·HO»‹ãЧä–`ñ•²EnI¾Y·D+7 ¬ Ø{ç²~âÉâ<@Ö,þ‹4þ_JÅ»üÈ£…>÷¬¯ZZg›¢ëÜéVxÒzQ2À’Ö¿eŽkŒ­çkç߆PÿB+ßú·,ÀÁ+{—ÑóB9U‚JXÓºPô.ǧȢE¬‰®mEÎ%é~Êï5ë¿ÐÊ2û- pp]Þ[D÷S¸Ì–Hü— ÝFñÚ9öÙÿÐÙ#úô&ËÝe±KK/VÍ›hÉâ“à9˪E÷‘ö¢Ú¢O7¼j[,¹49Y<'î/¢¥M‹—š}¬·:%á“<ö:¡Ñ%‘ÏJ«i5uJÂç6ÿu+k¼$òY飮¢?„`MtøZ«¶‚¡uVRÅ:û}z, j¯áƒÔõp³“L‰¶WI$´šG­zÔÏïë„–DwŠ.>þW 褂µ=(ÚGòî/×8Ñ’Öä”ú¾y“s5rç B°¦5Ý3Ûæ¹È¹~yRÖD“Ϊ_«/ýë7™õ_`It&µÒÖÐõ|®x_'´ò­3÷uë½ÔõÅKÛà'ZM÷̯ ò§g}._'´$šîYÛ{&ï´¤~kú kßšlæÚÌ­Ô/ä'÷5Ñ’Ö\(½¾'Gþz†OçG¦{ö7úôXÆÝ›Åûû2ßúÔãßš`Å/™tÖgiifµ«ß'÷uB+~J^¼k¯xž|´ø¦ÅÿDŸ,Î5îMµ|ô—¬v09ÑŠÚ…|6|ˆÈ*ºgØéæ-‰æNŽ ¼BR ,þ7úä#ñczŸÎ¥³†_þ‹V¶v {Ϻ³^Õ–'‰hI4 Í¢—æYEòÇ^M´ô±éžÍ–z®êìàOÇæ× ,‘J¡{6{N©]²ÜOåªA4Àšhò™wA±xQ¿*ä3¢¥o½¸·ÖѬí‰Ï ùìoô‰‘詬”—·åÏl Kgv%Ÿ­l.mUGIñAø_`Mtкõ±¿ÈÇëÍ¿ÐÊÇ®<²×ì¶In}~N›DL´$št¶³wÆø"Wc‘I‰–D“Îì[•ÕQÈñð­'.‚µoM:Ûækø0uYëpùF´¤5éÌIÏ—g£“Ötˆ Ö´&íe\¸‡mNîk‚5ÑŒ6÷.»ÍË{ðAô¢‡D°&¾BNöéKº=þÿ÷[—„ÍÐÊ·n‰¢ ›ë§\HÒºP2À’Ö-S´º&zœ´²–´.í„×Ä“èAÑ@K¢Áf9Ûiß—\÷Ÿ6WkoÝü¢µ|±Ìe-iÝ î^æœôا!Ú|@ŸBˆDÙcx{UùF¾´IÙ¢O7ƒ&÷ûu+L;™|ó—-™|QôÊþ­óY °¶ÐÈgy±”]¤Ö8À’èN>³nΪ÷ -™K…hÅà|V|‚{º±áI4Õ&ZM2,Þ6n¡ÖS Ûñð€>=ñc—ÑFkúU)_ËXûØ$´2{mY.J()`M4ܳ\ýf¢Ë´>1Äë„–>69¥gyôJI$b‚5­'Eû¯î²gX¿5ÁšhÒYÅNü[æÚÉàô‘ˆ– Î^m¥Ìré¬tÐ:ÉKZÒY]ö­’Ü µ0a"€5Ѥ³fn«zƒ»R¹ÎˆV >èžµ²g—Ló“Ö•’Ö´¦{ÖšE/³È·H† –®rÙ¬õ¶¼&NÖ:Ø`Mk²Y[ÞöR¿1,•›hé[“Í,`k«&5â+%|k€5­Éf½,cÖ"‡Ø¥Ò&ZÒšlÖëžmËùÃ¥ðä"XÓšlÖ»ýmS~Æw~,‰žd³÷ýÓé_L—`isñ­ÌÛmo;ïõ§€‰§€ô)jïÝzŸ—t½ÓV09ÐÊ¥ø$™›‘ŒàôÇ—M7…hI4Wéhi‡ &Oa×ì°øßèÓU'×ø£íkørÚÙ ~ˆVvö$Ÿ ‹]Æ5|9ˆn\¦DK¢ÉgÓþ52–ŸU™ ÀÚö"ŸM]ÿ3‘I[g<7‰–Ö¿õœ³õúEÒÛæ B´"zqcÏí=|«lp>°dpÞ¨›wUvŸCOÿZ䳿ѧDºgË<Ü´oÙ°§@— hÉâä3oN±g{p}ÆÕ¼N`Íâtϼ‹Ö»Œ¼±É†D+›ï¢v¬œìØ•¯ÅÛ³¿Ñ§Ííe«Ôüý±ðq3 %µÉgÛ÷G–kFK%§,y*¬ ÈväæÔõ7§n‰–´ï£ï%§+•tF°¤5+²=ÕÏ]k.q¢­YPR6×î‹á]¥àF> Nae@ñÅ]/àNœR(`‰SXPRK}µ/è¬R4ÀšèFÑ~3Pô´œÂD¨€– Þ)zoÃ.¹¥`aÆ]@K¢áùÃíÃrôhi…OŠv?ã ïŒA@kßzQô3—Ûä¯ƒÖ Z2ø&Ø›¦ ´“zðSjJ¿G×úäÛµ·Wëáæîñ‡ÿV,^YPŠŸzM/@)ôÅZXg5‘Ί¯”ëÔÊ“h.4¢%Ѥ³2ÌÁúé[&œN°fpÒ™­ºñ¾êVµf²x@KZ“ÎjÍF2ú<À¬œ€vWe]@©Þ‹òç®SÍ" %Ѥ3;ê{oò©™S °ö­¹¯›º?½v4­y~-i½)º¶±ë-ùø šÁf@+¢Y`á„m\ÄŠÑÏ,× ,œuÅÀv$\†§œš·ð XM6kk—ºoßÉàá[-œlÖ“çš_J)NŽ8%¬8â5G´w¨C®§S3ãîì}ºo$[è²[òMieaÀútb“Ïz¶¿o_úîŸLø/X39ù¬·jä‹Ç–X´r€dòYï³§.7Ž)GÁšÖä³nÞì\zFia¡S@+Z³. xjSz÷¯Â:§€–D“ÏÜ3o{ª£¥1â#X2x!Ÿ–Z›MM{¬‰&Ÿ>†wßWYœ?,±8Ëʘݖüå ã$šÁšhzgÓG7Ž©Ç>ì´Ðʲ?õæü¹xS´æýUkZ“ͼÉèèU½Xx÷ú|Àšh²ÙôÑõv¯ý_ƒ×à-œl6gÉE¿Ï‹AÁ’Ö¬ (Ë›îï[ôrÒšç=ÑŠÖ¬ 0Ÿ¾Í9«¼¹6íM°¦5Ùl½G„5?>ä„°Äf¬ («úÓMÕEs[¬‰&›­±wãëÉãÉÅuF´rr±* ì”rù¢òþýôÿ:¡%Ñd³m{,¹î¥°ÍBk§Évé^‘ø+úÉ®è©ñ€>=WµÍ‹ß×ô§èžÞÑ’ÅÃçêeÖ‰’'O¼ñîìoôé‚—;{w/^‘§†…tÔ–¾v keÖUªÐŸ¾v+TûOô)㚬â9}ݺœ®H+D+_»Ñ ÷Ÿ ×’Åû¬Y„æaWÛUηcOÖDwŠÎΆröp…¢ÖDŠöQIŸoZ˜ÐÒ·ž½òØK¿­ ·-‰^í7"_Üj°r2€5ƒÃ=«vìÑÐÏöQk­hͲ€j›c·¢· ­¼Â hIt¦hÃz×Wø¢d€%ƒ÷BѳÏZõLqVÓ°&lf¡þ¬éÚãô`ðÂM´dp²Yñþ[.i+¬ˆ`Mk²™_8Îz«wÒºR6Ð’Öd3‹!lÉ/]t ¢–D“ÍìôIãÖpó`pæ¶°fp²™ýðe¾âås´&‘-iM63·Ã›:MvҚˌ`IkVXHÐRiSM2#XM63çªï©÷ß Ž|@+gÚ™ùÆsì,÷2,ŒsXÓšlÖŠ„íò5iphZÒšlÖl¥ôyiÎ}Òšö&XÓšlÖfÉ5ë-L*3ÞZÒš‡_°öº~£û§` fó} }¸±{*9­ÛïImòÑ’Ú¤3Ól¥"{ÕѬ}ì u©ÞËJÍãƒ`I4˼ …ª_xÃK…hÅà“tfÑÚèiÊÑ}evc@K¢Ig>½µ¤^`ÕVÀšÁIg>M¾å)‹f«ÖD“Î<ýºnÙW¨lÀšhÚÌS;>qÊÄÃæút‹ÄÝ5šß€Ý!ÖïSZZgôΆÏXrÃÊZ¬Y<,•¹Êhø^OXsÓâ¢O‰Laï’çÖßs+Ÿ@Z±8ˌܼ|HŽø* 'X²8;³¾ç··¾t*íA6Ð’Öä3ó¯¼É¢¹Tˆ–Dó[ÏåÓ·äÖ_™Š,½€°*ÀVìî}_J¤NÑä3‚5ÑtÏÌ—.¥Þ΀ƒÁ™òÐ’Ál®iËî:>þ$š¤B´$štf«ç$Oˆ«L `msÑ;Ûy•Uõ¥•É-iÍóc·ÝÞókdÑÜ×D+¢YP·'ƶËï>œ›‹`Éà, ðù<>@QÝ‚½ÖDƒÍ|nŠ—÷êlƇ¶€– ^)ÚÎûTo?ü š/N-‰nÝVÚú{nm“’Ö Þ‰6¾eôwxò8.à}z¥ {¥ô¿™šÅ+9Ð’Å'Eï¼ß>—jñEÉk™¹jv×R×á}@KZoŠö¿­›©ìDÐB¶D㴀慮m65o9´ð `åÀnÌmiÙ ØëŸ±[ÂÃæúTˆÇuV¼yWïºÅÙÄ$ %‹“ÏJõª[îñIt¡h %Ñä³bñùl—‘ǧ^dR‚µÝ)ús9 ;†%Ø`Mô hÏzþIx Îî-œË¬¦\k“ûZT–M°Bg-°BÍi¶¶~ŸÇÝ…`ó}Ú]´¸-ÙVË¥7ÞIí~ø/XR›e†4*Þ—+õ“h~k‚5Ñ™¢«W^šŒžDŠXÍÛ,8’^iT ] ‚¥ÝŲ€V=óoêþ0+»XÓštf“çàêNé j-œØÞ’úW´í5'CÙ3dŠHkZssÙÉ·¦Þ޶2E$€5Ѥ³ÖSiýöÃO'#-œÞYóþë’à~Òšûš`Mkzgm·¢ü­ùrÀ’h˜Åj²%ªß“² - ƒ‡3·—Ô6{I= ÃЧÄ1.q/ºôëeýÄæÆ&Z9±YÐºß ä¡æL—ú,1)«ì¤_væëG3cX[g¤³¾½éþ-¹å´Î‚l ¥uÆoí®ÞÊ_¼ ó; %Ѥ3¿éûöôM*%ZM:þ€U.Ãßz¥Ö¾5élìæyƒ_œ›‹hEkV:/è“+‹OZMçlvïÁ¯÷òˆÎ4Ñ’h:gæßxÃÿóï>}k®2‚¥oͪ€6÷mé¯>íZÒšlf®ÕlYίL; `Mk®ÑUÛ\­è •wg£OwgdÒå“SÚ’™´…‹¢%‹“Ζ©æ¹°ªÅÙ±?€5‹“ΖwÊër‡ëʶù¬‰&-spÆ£šk hÅW`­iÛžZeþ´Î< êÿ4ôÉE"©ìbþUÏr«ƒÊòÅ€–Ô¢û)ßuž–8¿6ÑÊgQ@Û;YL1峫1Q< %Ñà3£àb&S'TÇæ,9†, èÉû5÷K?À“èMÑk¢G@÷¹÷Ö£ x@Ÿ®:Õ¶h1ÿt»QÔ&Ÿ°¦ö¢èÚ½»”Z/Z8b'€5Ñ›¢Ç˜Ó yc× 6ÐÊÆfU@OvEkºÃ,iͪ€ž³qÒÔÆyä­llVØy;÷ÿ^ƒ5ƒSm¢%ƒWŠž^R O_¬ìÜÐ’hÒYÉ)SrÓX|Ð’ÁIg¥¤±³\ªZÃæ"XrXЋñÂh·‘H'­I¥DKZOŠvGqnµ‚°² IkZ“Í [úíùý$:|j€5Ñd3TËÒ¯hŸœZ18«zÍ}—¢_Û±* €%­Yึr.ÝM¢wP`M4ù¨6ïØåLq_οößèÓCt°xŸõýœ´ÝùË–>6é¬z—è!÷Œ©ìCÀšÅIguåâÅ'Ñäp‚5Ѥ3û»Ò*z.+‹!XM:ó@un=gš9†¬‰&5 ÐûuÊÁi™Ù@KËŒtfαM²‡ÄN°ä!±* ·i0¿ˆsW ´â+°* ·µêè]Ž?ØÇ0€5­éœyää3-ÄeÖ8$€¥eƪûɦH‘)¥13&€5Ñd…î=¢kÖ/8+à}ŠºHg>†¶v½ÁCcád@+»‹³¼u—¹v·[¿“èðµ–D“Îú²Í1ä ¬ðTÀÚÇ&ù¨RÁ«kÍ…F´¤5éÌS]¦çЩZsc,iÍ¢€>|ˆËÐGì4æÑ´¢5ŸEû˜Ë,VŠ|§ÁYèS‰TP{—V¾h„Ûz09Ð’Úä³™ZÍóRÓ|úØtÖ>6½³iÛrg=?¾±" %­IgÓ–-SµWgèÖÀÒÙÅWì>ç¹7¹‡{ÈŽ håÄfU@÷ayÈH+ÁÞkßšt¶J^;}q“ÃÔ˜€–¾5éìýrSåB£nΖ´fU€xžÏõų+@ZÑšUÝûâõ”u­ƒd€5­éÙ¶œv¢È”nÎÖD“Ívɽd}¤QŒ’‰– N6ÛµºÙÔ{éÊaÉ,Q GôÝŒ†ÜË£±½Ck?|X”<¾xTÝ| ø}ºd%§ì¹Ì™Ï—_~úØt ‰–>6Ép/¯‡Ã:{T{Sí?Ñ'gÛË[4ÿ#õkóÄ&XùÚ¥x#¥ÔÃU΃äÃ[ÿQû}ÊTjËCobÒ˜pÐÂ×î0Rõ‚8¹árc…Uk¯mÛ-Myxocs‰ÖD7Šž»®üÅ[8´dpÚ0·Î¼œ,çæ7–ý´à#u–ŒÜÌíÉI»˜oÐ’Ö“¢Í§ìKݘeÐ’hP©OuðjH=¼çÅD@K¢¹¯KÞyß&ÕœÎM®2‚•s³³*À§põ‘ö®8)…he™±*À£»Ã¦¾TN¼`Mk²Ù»áåjò ›,°D)¬ ðz)c‰$¿l6Î,hÉàd3/âèýsæ*gÊ[k'›Õ:ÌbI^áQi€5Ñd³jÁ~[ÖšW9¬‰&›Õéô¯|i¬¯ hé[“Íþ?ioš$WŽ3íîè5ÎÃÿ^LìˆPU>P‘y<¾«®j3©ä‰t‚$O6ýöáѬMÐ’h²Yób²cÊ®C\M@+¢ù,êZ;¢Ë©]½Ð9û}rÎhg¾.󼕇8©Í]“hImÒ™Ïm .´Ntæ`‰Î˜à÷ )ý‚IN¬‰&Ùä™èý\K2´4ळ^«Mþ’œ5XÓšfÖG·3ÛÇ{f´â¦0+`ø!¹ÕË%ëIk²ÁšÖ¤³‘–mø·út­òÐ’Ö¤3s°ê¬ŸC²´ÐÊ–ö¾ÛŽQÿtµ+ÊY³’Î~GŸr hgÞÇ£~soǬ€VFœicŒ=ë÷v#Œ8À’1-ÀÀ {{º9iÍÕE´¤5‡læ\Úžö®Š§Íô© W¶XY|ºyR›q9-©M;ó>}mýØÅØÊ€–D­göÚF²±êqkvF>›ËNl_\§0$€5Ñ䳕Û*õVšû4àôʼnVœo|cÙ©-K˜àIk.l‚%­›«/ó6¶œ ®xZÒšt¶Ì³[U.GždXÓšt¶VõŒ!ÙOYaªÖD“Îvš{&øvOtÖHg¿£O×4q¯<ß›^Ä=Þð-M6él|¾4m98]q‚µ'í>rIzq¢Îʬ-iM:Ûc–ÜŠ¼°QÀšÖa®í”œ³þ Ë$Ù–D3+Àvûìéx2‰ï°>ÖDƒÎf*¥¯/"ý:»H´2×Ì ˜ÉC3çí"èôŒ)håØÅ¬€™<òOoVVk °äŠ÷0dó]\êgºž\ñ:{@Ÿ.‚ˆO°vɱ=ÙÙ þÖìlPô2.rÞÎ:Ó¬‰Í\rš]¯¸ÜygÐ’‰/ŠîÞF½Ë§Í^‚h %Ñ›¢ÍÁ²ó¢®5¯ ZÍ´€™w¥ÉA"N,Í5ÓÜB½—¹Ê¤ ¬‰æâ*ÕóøõÄ—ÎûဖœtV†W »% ž®rE­0)³üÄ–v×_’;ã ZÒºS´÷èô‚ªh†Ñ´$zpKv^ü™­'Ÿ”ÍÐ'Ÿ´Ù˘tö({Ù¿¡Ow\^Õ«¾ŒKzïiy…ÉX[^ä³jÎõ¥ÅIô¦h€%ÑÌ ˜uRç’|½µV m†ßc×,èŒ( `MkòYó>9í›åÅ'ZÒš|ÖZ1_Z7³$¬iM>kf+ó‹8Úξ+-iM>󬿶ôJê¡1-‰¦wfŽF±a“wlF°6àôÎlCðn(êƒnã ;€%WœiÓ,ÖŽèK=´Æ`M4Ù̸­­òÅãý #´²c3-`ŽT<£Z_×¼ hÅÌØ+`z—¢õE2vc†n@KZ“ÍÆ,k×[7ñÓµR¢%Ñd³±lÀ¾p‡ko€¥Åµ"zu}–›‹‡ÍßÑ'_ {ìñ®ë*«æ`MmÒ™×|yû©²‰sÛ$Z2qjígZÕÛ¹v¾%´$štfƒ¶ë-,ó4àAi€µß=m³Ohóüä“nô ~@Ÿ•8Ù+e ÕÏ]¬Ðʈ3/`®ê•¤ô¾]=Ü`-‰&Ÿ-sÌýÊQì”XšlæÌ5=.WÖš+›hIkzgFHï$[YkîškZÓ;ó[ÖòEI¦Î•€–´¦…ÛÎ3s“t†A°¦5él4ÌFu:cÒM@KZ“Îö|Ç­ÉtÆ(¨Ö´¦wæy×*VÑŒê `Eô`‡åaL^ûEpÈhaÀÓáÜ@=ÎãGô‰6 x@Ÿ<ÚNµÛJkÜ÷Ow´‰_´àž f¬4—Ÿ|å(ÞÈ-‰n½Ó4÷Av‘˜³ÀšqÀsIµ=!¡36& %;]K)]§³$¬i=)Ús!×tƋҀ–´^mkcÎF °¦õ¦èeÿlÎØD*€%ÑÌ °ãÚÞã‹öÔçÜ€VœY«˜¥Ø†¯x§d€5­ÃwÛ6˜;. Ž]#£BÐútJ.TÛ·„ká—Óˆ7~9ÐÒˆ“Ίyò¥^œœÓˆJXqÒYY«”$Gw{`M4鬿]·WE‘Ža@KN:«Õý«Ë%ëIk.l‚5­W@û¾Wå‘‘´ù€>%†qÇ®ö)ž'8ïDZqv Xu¶ä-™ä+à `åÊpòYK¶ÿw½:Qg¡ž€VüÆ ¬ö®Â?Ô«ÆWÕÖ´æ\·¶k·ýþ4×$¢¥¹&µ¹m ¿Xؼ hI4鬿#¨¶7ÀÐÊ€–D“ÎìÌœfú€ó¢4 %Ñ3€{ñc„|)xÙ|@Ÿnxé#u/ÒÐô4§Îê¨-­.ŠöÛšÛ“ÍA#Zqv ð—ɺþÔœQ6ÃSXZØŒ¢2ô˜«Â¥}ò‘*O›¿£Oak¤RªêãÖìì4ÙaÄV&›ykx6ÅŸFʈóÞ.€µçö3¦‡Ûg¹nå`^Àú´¼è© /¤Û‹Úó¥ñâ.€5µIhc™{wkçwJ, #°&:h½m˜EÞ7{X^k¢yÜœ9Ùùó“J!‰¦¥¬‰&ŸyÉ™z­zyâ3î›D+|Ƽ€åÏ“k]rñNyd$‚%­³æÌ{ÞZ„ž"—I)k¢éžyÇLU­–Ó™yÀšhÒÙÜÞi[®ýÕsp€5ÑtÏœþ=Ì]5³ÁÈ€–ÌŒî™ZúÂ=Œp hI4Ùlíj[®îžà‹-‰&›íòn%ûÃ!X-‰&›ÙgÏÜäº=)X3³ðÝv8Ï[/Ó3:ž6Ч ªd{.e–S_FÏAöoèSh&ùÌ“)ÖŸ»7ÉGbÂi@+>Ö6f(s¨>RK³ÍÄ€’!ÖÐù ¦ÀšèFÑæÄçuy‰>]ætŠø¿kó$ºSt«kg½ÿûàëK@++›y;Í:ÆÎòcr¸h hIô¤hë]u CˆÖæ|¶sy×ÛÑéô˜ B hiqmŠnîÉë±âiÿ­ˆf^ÀÎ}¥î5‡ÔçT, 8óvÛN—¨ƒÓâ °´¸˜à/ÿéZ)á šY›¬‰&›•wÿ«Û+Æiq‘SˆVól·ŸÙÝòíà}J@K¢ÉfÅÎæi\* œÌ,( °ffá»g«áâiÃf^Àú´åµ}ëk·€ÔÓÂæÞE´´°Igµ”Ôú’ƒ+k{´$štVýW»…ž“+%,M6ÓvµCs¹•Æ;=w‘à ÖD“Îêô É1 £µVœiæÐ&¿nÖ ôÎZYØ|±2pË›døäŠûÓæÿ4ôiÏåêjÍÃ[ôÇ€ÁÒH-©D÷ºkjjî}çÍBKóv[6aU¯¢8Ð’ÖôÎÚÆÅòµ]gžÖVéÌÜŒ\š~50Ð’Ö¤aokg<¬ßÑ.œ6Ч Žø§ÑÁívù 6Ϫ­ vŸµ´!·ÅëlnÀÒd3^ÂC·Y©nâÁ5$Z™lÖÅpÝÞgA>Þ/òÙïèS¤9Ie|Z`ɱ,OÀ©¬ º®™¿âe¡…ÖD“Ï<¯Ü‹OÊ¢igk¢¹º†‡ ~‘Ý5XÐ# %;#Ÿ]ŠÇRÉZÓQ!XÓšîÙ4ß®_Çì¤5WÑŠÖì°§9XkOÝ)åcY@+tƼ€=ýE$_ºzŸ<( °4àÌ °/^ó]‰_pz DKÎÓæJ{Ù¡B¦V—`Mkž6—œêuÌNZsÓ%ZÒšlöŽ;¸u¬ü¯Ö!ä:€5­Éfkµ±¿ÈäΈ–´&›ÙÒðÄ@ùŒö=‚¥ ›y{'µKÿÝÓ€S4Ášh²Ùö¨ƒ¹UŸt0ú+€Ñ“y{{`Ͷ?E‡»3‚5Ñ4ÒÝ߯ù²O:™ð€>½µ{Í6ªc8˜ ÀšÚ¤³½j®«êgl&0´°ÌŸ¼€ù)åšÓÖ ÒŽŸT¾¿Ð’èNÑ¥-C'™Î%¬ÐÙüÉ ptïÞ¨SÐýñSþB t6ò¼üÄx‹¯?‰j-‰^mth®^ŠŸ"&5 ß@çÔçd…Ó‡û”™ÿ=l>¢Oá‘´³\ë^×î¿ÿEÏ`hD+#þvàà¶æòö‚â±kæBµEŸÎØœíw†ÜŸÒ/ÚÊ^ür ••ýÓ/ÀÁsÔô§U§bh?Im%CËä³bv:k¾l}'­i¦DKZÓÎJ³þL—$ºÑTˆ–D“TJÏ&àsz‘<( °6à FZúÊÞ’é¼éöÿjýÿÿ‚þ üAÿ¼ü¿ j[8z¬fÛ€zð‰«‹`i÷úiVàhÏûì·â“BËaºV­Pkó4r^r‰Ø`IëŸ(GÛÆåíÿ$š[6ÁšèBÑ}v¯ (x j- 8©ÔÛˆ¬šÔ¬‘鞬iM*­ïTr9Ñiü-üÖD“J«Gõ¬ËåÀIt˜k€5Ñt ‚miê'ÝY¸y-Í5Y¼Õâ(j¡…ñóšüXÓšÎBóW¦ -h ´²w²Y›~[ HƒfF°´wU²™w3_U?ßr8Ášh²Y7Ció §4˜8ÑŠ™U²™mm­t½ŠÉ vF´$šlÖ=û±è|³Ð'ZM6¹¯:oÍ·NÎÓÑŠ…W²Ù(^ ýò~23n×kfÆ!ó”v/ì*_¨TzH¿£ÿë!ÍD;ókWˆÕG¼…/ÿAK#N:»Ö¾o„OvÆ•M´dg¤3;=Î<äP1I¤K“ÝH†fŸiVtEzšì–1Ù¿£O1לlsmôó«Ñi,í]a÷±M4×¶õ»…V©ö¯èS ͘µçZuµéž¬©MB›æp-ç ÕÆã ­Øx#¡Í]Ê»5•,š+›hI4Ý3/—°—Ίû¿Ð ©4ºg«v–o5k+›|¶šý~\ÊsŸnîH kfF>[^ÌÊŽŒú\‡Z™ëN÷l-¿W/²Ö –´îtÏÌD{7F:hÝ9ÙDKZ“Iwíñd­é¬iM6³sÓÞׯ-'­é#-iM6Ûþr4»î,DÑ@+뺃Ͳ'H™‰ê¯÷lÐ’èAÑ^M*eµ\Îhƒ’ÖæzR´ØÌµÓO}R6ÐÒ\/ŠÞv|a߯'­ƒd€5­Áf9—’í ñ…Ö`³€V´‰¢k[óOÙKeûØ™’–¶‘)ºõ>þÔDÏD'X](º¯4¦Üeg´EÑKs=*E{ÐÚí¤zºçâ"XÆl{~BxŸ\Òkíôé ƒ#^üUvéQÓs€IZ2qÒY©)ÿs|ÑDsЈ–D“ÎÊ(½§®?¾tÑ ‰ó¡-—Y[]K½Eš©S2ÀÚê"ó®òºÜLœLJ°dâ“tVK+uÞ’¤N‘Ëä3¢•Ÿ\½À)2]ŸÎ¹¯ªèSB'»zÙ™õÅ#ß «-©M>«>ùãâäì,s],ÙÙäÒ¬6„ˆ+_#MòÙïè-T®ìæ™—évJ> 'Ž­Ê$Ÿy¶én_x†Q4ÐÒd­ý½ªß^ÁO¢¹Bˆ–DÓÄ{²c„ÂÉ¢I¥DK¢Ég=Ûâôªôª‰“J –Lœï¹¹¿ÓW>¯t’Ö«P6Њ֋îY÷|”Uå „o|¬iMg¡ÛoÍÓQƒ+g¡;L°&štf;}.û¤x „¢™- x£èêõ@–zGû¾ÍÀšÖí÷°³’Rï¸^Ym y@KjOŠö7ì½åý~-JX›ìEÑÍ8xMyëš)Q6ÐÂÖµÒ¦èÙßç{]t¦h ÑtVrj{ä\tÑœk¢%Ñ43¯ü5Šž‚¸9ÞKs E7³Y/à)[x£l  g”GÉ}ײõ(Æ`MëFÑ;ÍTôH¦Å8ó€–´†sf~xö¶J²›²Á…¬i=(ÚmN9/\°ä+0•¢øMåM>/îIÑkZs¶<Äv¾ŸÍçiÿ`V@)ÝkÐëgŸ• e­X ³JY{¬vë6p"¤MÑ@+„Ĭ3š«ÕHgât,Mc½‹g]nÒÙÃñ~Ä= O·¬¤…ZÝÊo‘ý§É&-MvíÅ£‡^]båAÑ@K¢ÉHÞ¾ÄËꢹ¼ˆ–D“‘Ú'ÚBÝøf a‚5;##5o#’«¾ñ+%ZÒšþUó-aß‚¨N¢¹¼ˆ–D“ÎÚÜ©9Ó(ä]°4à ˜+~ÔwPO<\Gû€>=$puõ´Íæ·¾°Ã—­Œ8Š X²=H¾çeLK›.󼺩͘^Õo:#ZÙ@jð5ò(zñá8…hI4élxµÏZå·äæšhI4élÔl¹ÆÃäHksM:ó„{"ùIk®l¢%­Ig~#•†þîÇÍÖ´& ¿YØrîýäeLK¢½³Yì0o~pnØD+ÞèMÛqç¾l>§çE8Á‰7²ÙìæŒO9xx²Ášh²Ù4¿£§ÛîsàpFæ´Âጭ/sç½3Ú‘?ù¤ ïèÒμaæú“I!ÙãµZ²3Ò™y¨Þ¸E~Údh~k«‹tfäæiœº‰“I Ö쌌dk­%V|òSRïÐ'gš|¶f2ÿN/Rº˜NЊ÷`gæ(Ö-WÖ{'?¾N`iÄÃ-ëζá–Û[ÀIkÎÑ’Öä³mæ·g²Öo‚5­Ég»®œZRãµg%#¬‰èw5ÛO·šÿ:Ó'4ùìwô‰Ïˆ»OÛ/¾Ý‰T‡,‘ óŠyñiÖ[IŽ•;Z¡Ræx nkí‹+uÆu´$zQt©f¶rêää…ck¾)º{“­¿õ 5ÐÊÂf^€·FMû¡xZ]›’–VójN©:/dxҤВօ¢³Ûæ%ÂäŒÄ¹&XÓºR´—ðm[Þ?˜tÀšèFѽ{‰S}ÿ ´4à¢ýÂ7Ë¡³'JXÓlV‹Êþ¢àÀ ”B´¤5Ù¬d£„õÙ$­ %¬iM6ó&T#OýÀ<Œ€–´&›Ùù¥!]>ü$šfF´"šiæÃû­Ò¥ÊiÀƒd€¥ç»O­iå̤ÿ§³ÓЧ-—œR=ggTýÚŽi-xÝVýçùD½(hI4é¬ömG'9éö `m²Ig¶ïlCWE³jLk¢IgÕ¼é<ä‚´‹],¹)Ì ¨­›­[¹“sF>#ZqΘP[ϳ{=/Y4Õ&ZÁ5¥¬w*X q´èÓ™TjÎj­«±ù+ÓΖ&›iµmoY™ôgÊN@+#δ€Ú½ÄiÓØÍ–V£¿jÏÞ³Öãd#Žö}bqޏiËEwÅÇ þÖÔ&Ÿuï¤g‚ÏF`M4ù¬{iÝ­×þš‹6N´dgä³>g·»ÎÓ‰û=ÁšÖ䳑¶má_<´_ƒheÛ\ä”QJ«óÒÉã¤5×Á’Ö›îÙè=å¤YŒ=hEk¦T0´µ©Ï5ÁšÖ¤³±}ÕÛÉ®°ºˆ–´¦w6Ëò’iúÅB C¢%ÑôÎf7­ùb)'Ñœk¢%Ñd3Ûü{r©wÜòëÖæšlfìÔl…¨!‚7€5Ñd3/Hî‘gú€Ó̈–œl¶ü­ìOPM4]q¢%ÑôÎì´Þ<ËVõμ9Àφý;úôáÿЛiuyð׾ţd3š5 …AÛL ¨ëÝ2ù’?r²R’!ÁŠ•î°¼¶ÛÙhröüN[{@ŸœRñ.)ÕñE(Ó_´4âdÃÝý W~YÌ÷ hI4ÙpÒ“žˆ±˜¸ÀÚd“ ÷nËûÝèZÓЈ–´z,këK¯õ¬4 %Ñ‹¢íèÓ‹Üw1<€µßmg×½å ÐÍFèÓ!»SíùN”÷ŸÍF­Œ8óš™+S.é´èÀÒˆó™ÎN{ÃŒåò qÝ(`M4œ;;îu›®üÅ€ÓTˆ–¼Q´ßaý‰·“´¦‰¬iÐÞ8ºè×1›¡ýí}[Ðõz‚›aê-Éë´yoT]t¥h %Ñd¤bãíýtÑq¢%Ñ›¢íËsÛ²CÌʬ,YJXØ¥—½;â'K)¤}@ŸR_hge?Lé“¿heÄÙ. •e[W¾“O#¾(`mÄÉHÕ&ËéòcÀfØ[@KZ“‘¼²j[M}`\,%ÀšÖÜøüŽ×=bU4#‚X=zæ>¬ú´ßØ~@Ÿ²ƒ՞͖ú»6¢¥É&ŸU¯FøgФkñLÉ+×⛉ͼR¿œ÷{ÆG°4ÙìÐŒ {¯]6q¾¡°&šV³É*C¿®ŒVJ´2×Ì hm¥nçlý‚•‘Z¸ÞÌ xvûSÎV13ö] `É̘кg‡­[TèIk2)Ñ’Ö¤³Þ§qá­YÍa®™ÐÒ\s×ìÓƒõ.Õ»NLÊÅE°6àôΆ°Ó¾eœœlF´4à+‚»÷;“I¼"ö}J’¢‰Ö«‹ ›hEm&4ÛxÒ›fÔɰ4Ù|ik•[ç7ZOÊZÒš„äK]ú}%Û< OŽ<—×L«¦ª§ØÌ} hee³]@ó þ6*O6ÍŒ`m²ÉgÞç o¹‘Ôêaº–¶Í|ÔZ¯UàÞ‚Ú@KN>›s”2.aT­¡ÀšÖôÎì$”÷ÖK%l†´¤5ùe4¼rù9€<­®Îû¯ßѧìG’ÊÊÓýùN„Á1,x¢kžænÈ&Κg¬‰¦{¶ÌH¿iþºÐÊd31 ­é—´I7q’8ÁšÖ¤³¼Z›þ’°©-iM:3·¥¤­·îÚŒq hI4éÌÖÚLzù•Ŭ֜t¶ÿ“þ¤ËR¸¬‰&íµ÷´C£>à´3¢¥Ça³§TÒ» ™ª5,iͼ€nmýòÝ(`Mt&º&ûx,®'x ’ö} ¸ëT»ÙâðàZy²¿he²™ÐÓÜïKGY4·ì€–D7Šö&"y«½…V J,yg|5²ÿž½¦¬SÊЀV\q&t;7•¥|ϼ™ÖDsÈÌÕh•u+ŸvM÷ ÿ§¡O™®aÄ»ÙÒ÷¦$´´ºHg}tw5ä`½&`‰ÎøžÛûö˜=msï 5ÐŠÖ Î7þ_¶õ¹vËby‰€VVƒóûhæ1Ýž0NŽa¡d€%gp¾§®Lï#Ï5WÁÚ\“Î<~.U”Úyœk: DKsÍÅ5½î¼Tü¯Ö›…‹XÓšt6³O˜ÜÛt³„ok¢g@ÏÞ×Öï46éìwô)ƒ„&îEaß•úäɦwF´4Ù¤³Ù·ç‘ë#NïŒ`aÄgbx½]¶ùñ_DGÆùúYkM:[Åçe«/èŸÐ’èÀ»½]{í°ih2Òª¥¥qy¼?M‡Œ`mºÈH«ù¡«Y47>‚5Ñd¤Õ‡ß•ªwË›ÑD¬‰&#­åçG¹•ùgÌ^'´d)<³í<)`iÀ?’R‘/Þ6ë›°&ºRtËs¤ ‡ŸD‡ñXÝ(º—Ö§\‡d³frk¢;E–{—Ã6X=(z×]ô§É¥¼NhÉÂÁfÃcíFÕ놽‹Â¾NèçÄL ®Ù_°oY²§§…¬ ø¦èæoH—B†ÑŒ<`I4‹îûÂlMÁ]a¼ÎM3±èþÈÛ¨°æ/̬R6Њ™…¥YrÏvØüÙ>žÜ+Ý@Ÿ²MÉ)ÞÝÁ“¯Õr»8i½)hIk0ÒÌÉ/Õ«`Âx¹€–DwŠÎe}ãVŽ `‰Sà>s5ßáO£i®E¬Í5-<{õÕÕ†c›-‘X½(zæµf–SçW” ´4×›¢wi)ËI—›ù:,Í5Üg)%ÏþÅípXØD+L:3E×ZÞ–T­;%¬iM6ó6Nc\Ž>'Ñd‚5Ñd³âé¹û 7ž)i- 8Ù¬Ú&š¯EùN¢±c´$šÓUmÛkŒ%zò¯<Òûú´kriÖRæbݧ{NÊþ}J~§­Ôê ¨üõ¨7)©Öþ.m¤OX ²ÐÒ„‘’j›^±S^!+˜ ÀÒ a|ü¬sæQnålZ3Œ6 ­ï_mÞ‚a²Â\¬iMJjÅöM¯» kÍ'ZÒš”ä“W¿t¢=iÍ•M°´éòqr¶fžb—k×ofû°6àt°Ú´³ë’;Ý|ЯZp:XÍÊV¦|hÛaªÖœV7>ZóÒ`á?¢?! ¯XM6³µ‘W™r/SnX›k²Y÷ÒÑIÎ@ß ™`I4Ããg÷'ì&÷¼ÿ|øë„VÌŒáñ¶Wç‘Ó×õçýuKsÍðx¯âA IM3#XÍmoT£ÆöiËÝhÅñ€>%rs²GŸsŒ/BL˜ ÐÒd“μêtJúÍôf%ÀVŽ/Œ÷„˲öåœ{˜lÖm `m²IgvÜœëÖDý šÅSXM:ó¸OÐ’œoÉ- 8éÌ(É“WÄö>Ÿ;× ¬ho:{Ù—K¤“hr ÁšhÒÙÜsÙ¸êsM'XM:ó.½L1öÖÿ:•ý#óÅi.o 4n]rþK)oôë„(%3NÜÀ£í‰3À“f†Ç{Ÿäm‹ÕéböHkÓEBZÜñ¢öOŒ©¬MoÞ–gŸ¤©&ì ;èSi Z©‡˜×ª‡Ûm>ý´ÀH™ññs·ì×ò~,‚¥Éf,’¿"ì¶¾ñ±2E@+Z3>~îU½Ÿ¯ÊH9­Ö´Æ\¯”kk«|¡5ˆ8 %­+E{¿²¢Šþ¤¼N`iu1>Þ¼ðÞ럆|Ù@+dÈøø•<è¹é¥™a´-‰ùþQÒ­<ÐiÀá_°6à2Hx—éœAgèSBô¢Úuï•–œiô×—-ø¦èYRîM~÷ÙtsZY] _^×çPl¶n `i²yQº²ù£¹ ù<³~ü*¹µä²HÉ&Z™.V£]¥xòÉe®Oc$¬©ÔÝ=ˆKÝ¢h€¥-€!î~bçf¹¸öçÃ_'´4àd$[ÖþЦÞ"efR°¦5N|^u²÷/žd7--M’wzn5wÍƒÖ à `Mëðݽ¬l¾¡ìVV(}@ŸršƒÚ}Û¦9/îÙ©hLÐheÄYÕØ,y~°œžµYÎ< %Ѥ3[mʵí>–ò:¥ÉfˆûjöÛQ/UÁ¢™ÀšhÒY33m·$ò“rË%XbRÆÇÛa³§¬wYû _'´BgŒ_mv¿Ü»bnWkZ“ÎÚ2c™j_ˆO~ÕëÖDs]{JAê—쓃èhfk¢é_õ²ÛÜrá¯Ï˜½Nhe®¿zK}Ê-¨>É'¯XÒšññËL¿#ÏUÑœk‚5Ñ4ÒîIwPO®ËÇ? O©+¤3I(YZ{WÐzÐ ‰3@ÞvÜžÖ”Èë„–ìŒt6ÜPÚåp"qNÁ‰³|üÞ|yè~J ã °&štö~·iFÒæ·~-Í5élV¹¾Ý"D“Sˆ–D“Φ§D7µÞÙç»_'°4àìÏãAæ³4¿zZØ q_sîQ<]X^tJ‰VÖCÜ×ò»«ŸròIIÄD+ÓÅ÷e>i]Yí ò™ë× ¬MW èig´ xòã=Jýú”ïF¼Ù¶y‹„=¨ÝÀ¬©MFZ¶]·|»ë#XñA>ó¶Ã«~qœ$¢%­¹ºöî+¯¤ÞK|j¼NhÅÄ ¿S²Ãϸ”!9-ll|,-lÈïdÆ%-ù4×™¢ÖæºSt[{ê}ãÚ hi®Eäµ@äób«” °¦õ¤è½ò‹¾®Gq %­á`í\²?oÝ.O¢q@hIô¦hc#ó åX½Ìlˆ€VD3@~gc„jÛ‚¾®ƒh •uÍù÷Îy©? º¯X23ÈoóÃýÝ(ÉÎPñ€–œlVšGL«m*|À›1@~{ïªú§š¹"šUïXM6+Û Ê×ÚŸ (¯Z23²™ß‰çvéN}23J&X33²Y5CÉåÒî šGŸÖD“Í|]îvÙqOs=(`m®Ã˜ ¯À(wv0ŸŸ„TgëãÚ’¥„}hÅR˜ä´íàc»fÖ_!JÎ< O©F$Ãê×1Š`)óõׇÿ€¥ùb|üö¸vÒ7>f´B†ŒßvøHi©}!> ì¯XZ Œ÷ Šu½^Mfù€–´&#ÙY³yåÝĹ¼ˆ–Lœ³ÕmÓÌ·ùkèSÂÕö4ÕUv‘Gœ -8¬>²3¹~@».Ñʈ3@~{áâz‹–8-ì0]K ›ò»o¯‘Ï–rÍhíÖDÓÁ²£¦7+ú€Sm¢¥' /¶6›ú¨úI“}Ð’hÒ™—øéÂQ¥§•¬ 8éÌ[÷>ÄÒªŸ¢¯XbRÆÇoo×Óo=N¢¹¬ ÖDÓÁšÍÙ—cî)fšN°&šÖôbwM¯ÑÐ ›1>~ÏUüYVöhƒO°¢ua|üžæ–¶[mí“èFÑk¢Éf¶ÝÚysËy“™•ëZðÂøø½ªçûê7Pl Àʺ.Œß«í>»Úë2¦%°6àd³5m‰¬[£Ó€“H‰–<|¸¡WÑ…ññðœí¸*/ÍÂF-}8ÍÌ6M/ƒ%”ÆÇ? OùUœ/;xÓGùî¬0# %µÉHÛý¯'Ñ\!D+¢s˜®¹V©ígÌm%gŽø¯è“Gûïö³þÏÎç«6¯£¬.Îýø¿ÀÒâü wt‡ÉW†å§¨ø_hiÄ+Eûn¹…á'ýukZ7жã}j[Ž„ý‰—û ¬‰î“­Í¥Ço•Ÿù¿ÐÒ€Š®bz‹£=åØÑ@ mÉ´ð<¼Üö­^óIô¤h %Ñ‹¢çÚk\Z÷žæzP2ÀÚ\oŠÞÉCýd ß´p‚%Ñ?ññ†öÐúUÔÚõŸ$Ù× ¬‰ÎýŽ–;}ÖÇë„V,¼RJkæ«\BÞN™F4p‚5­I)e­ZjU}»’iàK¾]!¥Ôì¯àŸC€¶¸d­,®BJ©Õ[¶¨]Q?¹B¯XpRJyŽ©'9•Ì]“hÉÌH)u6›®­Ïuo€µ¹&¥Ôe.e½¼žœlF°4à•”â7´{ÜÊÕü'°ÿ/´2à•\ØJo%­"}r‡+}œf&¾“ÚŸç“ãô:µ1#!}j`ɽ.?Lú:¡¥1#!ysÐÖoON'Ñ$C¢%Ñ$$?}x^™.šdH´$š&Þ§/7¼v=¹ñõß*VèSâ$i¡›í±Ô€ÒRâ‡ÿ€%Z¨=²]Ó-Äý0â•k“hiÄÉHÆ(~¥Þ¾SÒ^'°´ºiøÕ×”û¯Öæë„V´n\šÃæ»Ò…z@ovö;ú”³&{ ¿ýÔWv “ ´¤6ùÌ‹*î-ŸÙr0q‚µÉ&ŸÍ2=Ü[?©6òÑ’Öä³i;WúSµò¿ÛÏ)µ‹ÛÏJ~RÍ—`‹Óm ØD+îY£{¶²„Òݳ@¥kÓ5ÚƒaÑjùqÐÄWñ·ù-  'XûpòÙj¶ÛÏ®ÆêåF—–`It¾}È¿¸ƒê¤ò;ú¥N.ÝÉSng¾Óòâl­,¯Îb_Îué¡›4N´²@:ùlOÛ|ö>m£oH´¤5ùl¯žf½„ÛÂQÉ kvF>ÛÛW¶Z×õ·ü:5Ñ`¤ìw5}zÕhs 3 hi®'E÷R‘k|êX½NhIô¢èmÖºuÏ:˜i! %3ƒæœ›­L×ôÃ)èS¤8VWÎ^®`Ü®°Njw~9ЊÚ#St÷äb½Nh郢–DŠ£¯œÄÆvŸûuKÇ€Ük‡ÝÂÖ¢{¥h€5Ѣתž (‹æº&XÝ)zoÖSsÐKçº&XM:+%ùû‡|á8@â,1é •ZR­r}¡D+Z/²™×SÎHÈ|T `Mk²Yo½~éípÍ©&XM6³½ºÕu3›œl¢¥'›õ5w-joÒO ßëÖ´¦Þ÷!/ßJ¬ÄïèSþ!™t˜Sê×Óúˆóˉ–Fœt6üurwÕÄKââ"XqÒ™˜Ù¨^ ½,R)Ñ’Ö¤³áç:9OZ‡ñXÒz‡ï^žq­Ÿü«Û¯ôÉΨ¶·®{ë—Ë‹³M´2â;‚GO Y€j“’¦9òþŠ®8Ý¢¥'%y`æHzòcd¢%Ѥ/Ž·Û-öäåpĉV¼œMk5¯–&³-“¾4Á’—³ÉH^Ŷl}ûaœG@KNFòq¥7‘ÂÊ&ZÍ¥¹ë#ùùä]ãúuB s]¬ÝVõr›ê\ï `e®k¢ƒe{‡Ë%uå¿¢k8欉¦ƒµ=÷~ÃÕxŠN¤”í—âuÁ謦 ÿ}Êí‚• ïw&'¡çŒQ hÉTE»gßšn¥Œ£ hI4Ȱd?Fü9¾H¢ x8 %у¢[·ÓÐ-×è$zR4Ð’èIÑþ6¹’¾@%¬-š™W éù³uI¢Ãx¬‰ÞD{Ñ€Üüá_¼fÜæ? O« ¼PÌTrÞ·•ÓdóˉV&;gŠ.Õøl¨›nåÀÒˆç uõ‡¹ÊhM´p‚5Ñ•h/.ÄK¨'*Í “ý;ú”KA÷ºÇf)—rzL_´4Ùä3ówÒKÔœ)`mÄÉgƽþ‰z“Dse¬‰&Ÿy?ðÔnåžONB#Zpε¹)u×®k½(`MëMÑ#­ý'©à?žáé¸ÉÕEðÒƒhFÈ—êyî,ª¢Éfk¢i¤Õ>;'\©?-ìBFj^?¥Ý:¡ÿ×R*ãpZðÅ+ãëK«Í\´Zd×a¡¥ IÐËÅA#Zúpºgm®·S¬Nvp Ö&;h½çÞC®š\Â@°&štÖ“÷l¹t_<‰æ¶I°&štÖëÃ}ú\“J‰–æštÖ½4î(òµx-Am %Ѥ3;æÖºå7ÙÂXØ–œñ[e˜»•«ðPƒ+N´¢u¥w6ÌVÒŸƒKáþA°¦5¹pÔ±=L^ͬ‚ÖD“ Çð6ÄI~U­ ¹hiÀÉfÞK¾½.x­›«xyeGSXÍØ~s¯ZÇt©¢Ã\¬‰æ€/ÛvÛøfe“ƉV–W0q¯!o.šÎâ•^)Ñ’hò™ÇLû;†,š1×-‰&ŸyÑz5Ks”X›kzg;›c_å>! $€5ÑôμŸß·> §²–œÞÙîÍ|O,åĸ`éÄÇÈ~O+Ë»Ü&ŸH<ÈZ!qFö×”Ûí‹ëaFá´"º'Š.cqyû?™Y¥d€%3뙢« ôü¬Â|†ÖD¢‡WŸ‡?9 ŒÍ¯É«KÍ[ÔÂi}„/ZY½¼Léõy@‘¶ûŸúóèSZLÜÜ„é]Ç~†üqÐàa= O‘P4Óœ[KS¿ge6DK¼Àèüšýäuëô|Ö&ÁšèEѽÛi³]íÄ ´¢%^ %å5lÃ.z8+ÃÔZçzÏÞ¼‚§È ae,ñƒókIˈE¿ ãM°&ºPtÝ)×[A©pÀ‰VH…ÁùÕº^P&b¦q°¦u£èÑKjr˜z™¢ÖDwжei”¤»•=ÈZp8X¾õ¬wÉmUkZ8ÁšÖ$qÛmÜ’\¸œЧä®.ûY­®ª3)íŒ`‰Io§ï´vK¦8 çÊ&Z¡³I:k9¥=²¬5sÚXÒš¡ýæwÔùÎæEÏ `M4éÌŽš©þ!$iÀ‘ÐÒ€“Îzš½”,û Œ¯`MkÒY¯+í|«){Òšž!Ñ’ÖÜ—çÖ]ZF盫6Û([ßîYé- ¥§ÕW·-D®¸Yât,‘!£ó`vJ_œ±'·\‚5Ñ$¤‘³íØr¹œÆ›`I4£ómÎ6_·2q§ÛÑÊÆÇè|Û€ß<._Û±²^kZ—ˆîÞ›H>½,„= Oa†Aí1ü%AÞÀšÚd¤±Ç¨_ä‘×àa-M6,/Wë'dNÒš~ ÁšÖ¤3ûí67Iw¦ƒ‡E´¤5éÌΙiµ¥¿%OƒhI4él®œç’ËI& °6ळ•m7Ê·|¡“ÖÜ»ˆV´Þ¤³eî±ù*2§0Æ=€%­Ãº^}ù}Š~„®8Ñ’ÖáÃÍBçÆÆ÷äÇoÒÙïèSÀ6W×N¥ìÑå{Ó ÖF< «§~qµyÿõ;ú0_‰~å¶íg¦/^_æ _þƒ–f;Œx}ÜÊÙžFœ«‹`mÄÉg»>˵ØËJ¬‰&Ÿm¿:Û—ŠÍ'Ñä3‚5Ñà³–R²íGOtªôÏZ˜ëÆØþ–Šwþú⹋9V-‰Î½Ûìß„jÐà hI4΋-—–=«Z ZhIt¥èÚ[ircelL+f߲֜9Ò¥ÈÏØµ¥ÖDwŠvþ·êܧ” ´4àƒ¢w6:«Ù+áœÀʽ18¿¯_¦zÁ[ÀÚ€´— µÃ”z@o‰„Tü€?pyœ.ÑÊteR¤'WV‹hI4 ©xíÉ[÷Ót¥–¦‹áõ­&ovöÖ\›DKZ“ªo #éáDL há2¦±þ|«=÷t+=yzçT¬ 8¶×–Iwí¼ Ò¿®Ýú0]QmIè—–'µÃ\¬©MFªʺõDòʺc-ÙÙ à5ßuÄ3„¯bŒø¯èÓˆ“T¼väûaCqš ÁÒˆ— :Ï>“ÀU‚5Ñä³Vübá Ñ\Øk¢ÉgÍVG+zUòJG> ;cp~ódÓ’¾M'ZÍ…m+3ï…ÇÑÙx-‰¦ƒe?}ì,W ­-HX›k:XÝiôo´æê"ZÒštæi[ýF4ÍŒhI4Ž‹f¢ï¢ýú€“H ÖœÞÙhË E~ã›A4À’GËðú6†'sËIi][XzxñI9[¨1B¾y!\CëO²Á­$Zñr!ß¼Pk›[}!l £ `mÌHHNnyl¹ßLæ­_@KZ“f/ËÆìœŠwÒš¤@°¦5 i®òn–¦kd-iMB²eÝF]êÒl y `MkÒ²S—¹g2!1š(€%BbºKË%ëÇÅÆ¬ÿ€Vh˜Aê6O#å¦k=¸¸Ö´&¥¬å9Òúéž•'X>|šGý¹z↔èô)ºž_îuíðã?ùñ —âè“lÚ¸wuõ7”ópH¼dÑåæíéöúšÂ …=Zá¹ws¥×Ú·gÕÓ %´´B&E﵆q….zR4Ð’hLWÏvJný ÑLÑ hIô¦h;1Öµå»N¾ý°´8äÞýÌ–=~\Ö:ÈZÑš1ov‚ÅsùtÑ â€–DŠÎ«¯zIÄ8 8 œ`mÀ+Ñæ2Õ…Å'Fê`Ãô)@¥Sí¶mÂôvY¶-x=òèéÒ è4â\×k#¾Û+ÞUDQ=í?Œqwô¶MH¾geý®Ö>œŒTSó®qº§Â;Þ€–¦‹ŒäõìŒ-{*,À’ÖŒq·™šž»/_‰´d­hÍwêÌc¢ÖΣh2Ñ’h2’Ù×Ü”o—w °6à8òy—¶á½¹u­ÉgDKZ7Šî©yˆ,š$-‰&!µ•öNzÝÈâDK¢G—:vþð'Bèwö€>môíÚ.ÞðFæá>`ÍÎHg=yz±\7¦±<^k¢Ig6,ý›ö¦q!Z™lƸηl½!yc§ƒ€–D“Îú\6jr‹êƲâ, 8 UÛ`UóÄ«ƒÕ&b°Чà1ÚÙHÛŸùt>cZA@K#N>¶>ö­ÉiÄØ¬8ùlx™Ÿ"§Œ6XMNñG¾šäDÙÆJo¬‰¦g8–MU*ºo7íìWôimÒ3«˜¡Þ.dNv†hÉÎÈgþ~¾®‰N'Ñ$¢Ñ ‘÷Šÿ¹o½OBcÙþ€–D“Ϧ×䘷¤¶ƒè@IDK¢éž-¯[Ö¶l)‰Ž}õœúšúû=ìЧøzwÞ¢ÏtI~9•â%«ø HùæÍŠI- y `ÛúrFŸ¶…«»ôéa•ƒ¶«s’yИþÐ’Ú$ÓmÛÀ¤{÷(š|H´$š„æ­>ß½’DgÁµ–xœñùvXìÙÎbº7Îcv@KZoŠÎ³§*g6&°ô Âø|ÊIïÒZê/ ®´rÇËøüáýI{½ôŠ>Íu¦d€¥¹Þ…¢Wµùº4':‰® °&ëzØ¢¥ßRgfÆcv@+fÆÊû#—j߽ϤpÒšN°¦u§è^½ÆN)ìÕÐ’Öƒ¢—õøâŽ—¯›-‰ž½Ç(S®Úø†ÀÚº&›•2ê?‰Úº†ÐÒºŽ`gal®FO(6ý€>m>´ÒbGvÛxöÜGÙ™²EŸvlÚx^|aõË3#Àí¤3s²z÷«[yÿ ÞD+û3 †íºÅ3ŽÔg”Ik#N:ÝŸeåœìÆ4«ÖVYaŒ5ÓÆùåi² }ÃßÑ'Fúÿ…f^ÂðFq»ßœ'^z­ðó†y)ÞJæ²y¬”ë‹hÅJƒWê—¾©ÜKO¢¹ý-‰¦4×´Õ^ˆO~eA”Êúô¢Lk%C¯2USɼŸËÜœ6åJZAE,-í>¼¦T÷¥#ÔI4Gœ`M4¹tµ’½~€Ê*,KÀ«0­á]q-—[6ùie“L‰–Ö&¹t­²Ò­lóIë `Mkº†;wcã.‡m—pR&ZY›Lk»¬lÄ"_ݵ `Ikv û]1áý|M&XM2ÜÞ³nݺŸÌ,ÈZ13¦5x/Ïn–¤J2ü}"Cø†öÙÉ«Jé;ÓPZR»S´wÿJ—CÄa²{ °6Ù# §7f’Óg:ó¦y¤¶ïmy `“‡–x˜1ß3ÕÙw¾DCƬP4ÀÚ˜mŠnw-÷>~‡g¾N`I4S*fš^ KÏbì5¨ ´b¤L©˜9íÒ¾(ŽíŒhI4¿;7¯/>{ò‘îÞЧØÒB6—ÉV«>RáE’·v¯¶é>-«ZÙ¼Ÿó°VÖÃ:û´4_ä³b~¯)‹f`i@K¢9àÅïÀ†\»¿3á5€%FbF…`_܈+%Zp&TÌÝ’gZë7"ay-‰&ížWýâœåtXp.®=ÌÍléLH‡ÓK q‚¥Ó [̽÷˜ó–~ð`âDKky ùoúwVÎ hIôàñ‘¬ë}bÒ ö¨Æ I2©9¨ ´²w1§aÙÊ,£ù–µæ0h@K¢AgÞ4`?½t5Ѹà hE4sVnž~¯‡ÖÐO `iu1§aåá7Ór“‡nÀ§0§aåm§û¦÷éL,heu1>;”Rô¨ë×Éô)ª‡#^¼׺Ô98-œ`mŰ‹Ç, =—EX=(º¶âͪeÑ›¢ÖDOŠöˆÖ¥'¦uæS´dg¤³²{j#ëA;L6Ð’hÒYµ/ívƒuÍÉ&Z=Xw`y¡¯õ¨:Âú¨¾}Ì‹‹t ›nAôX±”Á¼‚UgÞ'H³ÁKñ€–ƬR´zÓ¼‚¡¬i kÙiÏv®~Þ°»ÓXÙ}V³Mt÷yñ O{.ihaÏ|Ïõðß>æ¾é)}…–Ò\‘™ÔØþèŒ`mÌHgÆÊv|2“†uM°f)¤3;BøC̤ƒQ×-­ÒYoîSê±ýƒ/7­ˆfZÁ²EnµÊ5Vk ¢VŒ”I£.üZ9Uiø-Òÿ4ôÉO!#™Ÿ˜Ì—–_ƒYÎ*€%g^Áòk·\W‘×fñÑl^HùyÚ~2»ßѧ°i²ŠøÖI?Dt®N¢%[!—Úªîï¯Ñæk0ï&€µù Zï[û75­Ã|-iÍ!›ÙÝ e '›„æÚÓú‡óJ> ¥'¡ÍQê.K}޼@°4]Ì 0ë.{÷/Þþy›ЊÖÌ X~Z]MÎL¼ `MknÙ¶ã§^qÍúD*3|øjyô¥/lÞ.´4fdÃý.’{»>;‰æ®K´$š®án^HmÉŸÆl‡·C÷þó°*M66ÁÚd“ =vyçËuÌI4×5Ášhá»–ylr*F¥•nïô6JUÏïŒÓ× ,ywLJØ^£d½is‹²–ìlQ´°Xtï®Ñ@+Þ“¶—ßo½Ê–ÂZ¾,Y “ü5ØcæÔk¿ÁÜ—ÖDgŠÎvvÝSæafd°&º]¦q+z!>íØ!ÀèS,l£ÚÍ/hna¡g˜{@+&Ew?¡ËÁ•ƒ9Œ¬x§è±çºUñ:en¥–8…Áâ;¯¼JÑ R:9Ù¿¢Où+ñ’R·sE’I%|9Ñ ©0¥a—Zç·Íëdgd¢%;#Ÿ•^Ò\r➃d€¥ÉfJƒGŒžõøÁ`ñ€Vœ) »xkØ~ɇ8iM*%XÓš;v-Óöä2\ƒ -i])Ú¹”óã)y’sM°¦5÷€ÚlOÈí’LqB“‘êLyuýý/Ù@KcF÷Ì|á5w•É0ð0ÁÚ˜ÑO©¾y´ª_L4Þ|@ŸR1H -Ûý±-~9Ñ҈ѥí6.5ðO©e\›K#δ[ÕöW’^ýe°Vv@+Z3­À>zx7_õ£³=RkZ“Sšmu#âiÓíô°~GŸìŒ”dèî—2úˆÿõåÿ¢¥ç~ßmm¶VÕwŒÁ®›,yXÌ+ؽ•Uú”ó Z” ´²ß3¯Àß?òþâv /‡hI4Œ8½f‘NLK `mÀé`õ=¦É««‹¹û¬­.Ò™«·Ô-œj­X8ó öðz9Uî«R/XÒšyÛKcä?EÕ53ã¾I´bfÌ+0*êmõuIl>Ý.s™µÖ¶·\­g ’áïèS´צW<²QOò—GôHÛ»«Ë‹C,-/ÉÛ‰/­ÕnöNh²áÜií½dµCkrg£¹ö%}ò¤6‚5µ9â«6¹”/yß¼Z2rr©7#©©É1wýtZM.]{äTn×9§g hI4çz§1wÞò›sgXškfDlG®VäË·A3#XM.Ý5Ïù'’JÍñ&XÆÌœÊšÑ¦îÉ5d‰ô)ý…&n¾¼ïºò ßÚXS›®á^FäåÖ ë°g3É7 •=û§ÇÄþ¿d;€Ín&/,'ÑÞ§èú rzþ—ÆÿB+kógûqðhÓ*[éO9÷¿ÀÚt­íÀémZu­;e-i½ :Û†ýO{pMô‚h¢%Ñ›¢m¶ì„¯o›?I޶SÜÖ³~Þe^'°äþdc8zw[é·B(‡Õõ¡ÿZY]?Ù.åÓrGž®Bµ‰V¦kqÀK›iù¨ÎõA°6à•¢ûö„%YôCüXÝ(z§Þ»ž1V ´4×dÒj£Öö¥uÙIë ÉkZ“ ýPê­±ÓIkÒ0Ñ’Ö“`û¸we{Õ_¤³êM¶o1Wý/X"ñE:««ŽºôR¥½p­,ÍMB2.«eÊ­ÉÇ –°¤õ&!5ÛùÊŸ GEôOŽÖ_`M4 É 3›?®®ç/°´>6 ©ÕÖm‘]»Í €`MkR-ͤ?éöJ'Z23nÞK$o½ÆÝØÿf»>¢OúAm¿¯·Èé––¤B´¤6½³îÍ+Û¥RÃÉθ¬ÙéÌ&oæ¥wÙ‹œB´ÂÛtÖ›t‹þ®:h)+ZÏD:ëf8¶BtÑ´p‚5Ѥ³î‰èKÎñEÉ‚¿ÀšhÒÙÈ5—<õwÕM;#Z˜ë™ØŽMÉ=ñ”ìñ(? ûwô)k”«k´æÃ¨óY'—-,ì™è` o9ôâ@†+,>,óôJ(àòxÏÊbüTK—‹ÁM.$Xûp¢½ø×;¢LtÏf"ŸÚv³¥ûH½GÙÿ¢¥É&Ÿy ßÜéË‹¬B´²¼2§kš‡U·ž7MœhI4ùÌæð—ÑRfâx,YJ¦s·Š™|C‹Õ'Kɤò;ú0]™ÞÂj½å¹äÐÎÞiãD+vEûAìO2 $:ˆ–D“Ï<ìzçu¶”SZuP`ióÊä³µwõeÑ\\k¢¹ìšö¨z/ø™x ZZ]¤3Gî?ÁLÒ\ï hi®Ig{›¯×n=TNZsm­h]@g9%Oh¹´¸;åBé–æºdŠÎkuZQEŠX](ú݃XÙžyP6ÐÒ€7Š6C1oA~ü_’ִw.“Ã[fž” ´¤5(%çÒký¢¢ÔàÞÐÊâ*“¢ûðpsy]ºH-‰^l4¬7kóNÿîšèÓ®I÷¢ÿ»ÉI¾3m~8À’³PÉ)vV,Ýü ÙÎ I…hÅÎ*9Å‹-Ô/ÚÊÎBR!ZÍ/£s{ä—è‘+E­ØY­íáßé¡r˜k¾³°6פ3¯ ²Újú€sa- 8éÌË<´’Õëᙃd€5­IgÕ³»¼–¿*š‹‹`M4éÌÜŒ’[‘ŸÊx‰ÀÒþÁûÆ\—Ç.çKrØ ½ùáë‹¡ï¹ÉþA+–ÒpêÊÍŽè)ãëéÃ[ÿŽ>¥bpm¶ôî¶#çÄñ"(€¥ùjd¤V½ËÖɰ‘ ‰–F¹•ÁÎæÚµvy²[ þÖÔ&Ÿ™[Xæuã -M6ùlÛ\õ‚¶°O|æÙÿÓЧ4B.¯=v©È™ƒ®¡w hvæ”caoZ¹ƒ¢íØWõX¿Ñ‚d€5S™m‡ˆ4õÄÍÉp‹€–LeQ´Ø×Hú1`LŠZ½)zyÕæ!o?mS2ÀÒ€ó1¹ä¼v¯·¼èƒÖ~N@+ZÏLÑ¥ø'r@Ñš^NkZŠ6ä·øúS– 5ÐÊâš•¢?“zTheK7AÝRÒ.¥q§Î»Î€–´î›§ÒzÓœ_LvÏmÊWÓ¼S`mÌHH¥Õ¹›\¿xЛ`ÍHIHeº‡¥×cŸ3LÐÒÒ$!•Õ‹m(g6;%¯py,iÍùRmuíŠp‰'KY¸z{@ŸR_¸6ë;'^ï+ŽD@G÷4óÐSe'ŸÁZ™/Fç—º<ä‹k8ä@K¢Ã˜ye¾,7®œ•6ÁÒÚdt~i¥±ý…O ­ðÙ àšóþÅ[O~!ö}Jªæˆ7¿”/rñä1ã‡ÿ€µÅI6l~¥2šîÉ3¸? %;#¶¹K¯Kz›ƒN)Áš‘ ß§û)M›“&N°$š±ýöÑy¤¡÷áL+hÅÄÛo[}»oµÀDÜï Ö´&½«bÌ[ÈÓI—tF´¤5—Çä´q‰2ÄIk:ÄDKZsëò:$ë‹P&Ô¸û -‰¦o7f2ô¥ ðaÀwP`mÀÉfÃû˜¤¦¶f|i `M4Ùlì¼FÑwM°&šl6=&¨Ë…cæ&£¬ˆ^ íw—taáT›hÁÌßOÊl$šÔhïÅ0ÁÖ´&›ù‰bÕ[ íi·Z-iM6sÇÎøH]\‹¯F¬iÝÚÆp Ì܃‡äG•éwôaÌÂ{™#_×-:ÿ4âôĉ–Fœt¶Zm•Õ@œ3†G°âœ-Fž™']{1oZ=9­´8â¿¢OòAíi&Zo÷âÿEÿõå@ Žábh¿?üÏ4åTðvl‚¥ghñGÕÔåv„!Õ5€5Ñä3;8¹w-Ÿøß'Zp†ö—]V–Ëå¬Ìµ¹Gª}lÝR2WÑÒ‡ÓÁÚ;‹o9í&$×”òª©ª—P+aß `‰KÚoÀb{ø§HÄg| h…ÏÚ_=¶e–,çìŒÔZ=)Ú{GÖË+ß)ÏiS2ÀÚêâ\çÔW›zæåb]Œ€–ŒtS´­.ïd"8/äZp†ö×ìç—%_M/¾8°dá í¯n%cÊo!1€¥¹fh-É+4ùÝgñV< •¹.•¢ýMµãMöB:¤¦}=üœ,%óÖ,¥Q´Lù ±˜Àš¥ ?…‘äúâËMk¢É…e{£‹ªžW! ¬‰&zª^äŠÏ“»}këc´7ÀÝò“#Ïœ„ôÉÄigµÙQêOÏ3mm†/ZY›ÌI°•¹sÞ—þv§çâ"Xqæ$xW¿µËÖ©Ù@KZ“ ›™IY_ÜAñÍ) Naܳ|¼ïåR Þ̰å¬ 8ͬµfß-!fà‚5Ѥ³ÖG*É%Ñä‚5ÑܱÛèÍö/¹ ÇúéVðˆ>内É^^I/w°jÐhÉĹm¶ím/>éÅù`À‹3£¡öšÝ3](€%V`œ`ËŸnôâFƒ™û-± ÉH¹å 'ç‰ÄÙfäÑçíþ4f< ,sªWûžE/\9V ´2fÌI¨~?oËS¾SgØZkZ“Φ·‰KŸÛ/Iëd-i]xWsä"A«£HÐú”ôI;[i&O —GœN°6âtÏlÿ^Æër Öb´x@+,ÎŒ;"·2Š^Ùb1/ %Ñ$ÃFóªèºQ4Ñ’‘ ½ã]_nX›kš™šÖزŸ¶‚¥Ý‡9 u’¼K¶>×ÜùˆVæzÎölÝü;yÏe^@kZCYïšÍ?.Ò“³ðÓ¬à}JåƒÚ-¥¶ËÔP+ ´4â¢óJåvexñNÉk#Þ)ún‡®°O¢ƒÒk¢Ñ^ÇjퟃîãdO~x·ÅUõ^ì‹©-M×¢hoöyM©>‰. ´$ŒÔrÉÝ«pé<Œób@+<̼€æeLf¹u9iM+%ZÑšy-;^óéN¢igDK¢á`µâ5²Çí™ît[IÑDK^)ºz5(¹Ûͤ3ÀÒÒd^@+=õñÅT§¬‰&!•Ñj[Yê\|ì `i»gR¼|¤FòdXÓšLj'6s3‘'ûäLODj< O‰J4q“-ù ·’wP-­.ÒY­æ· ½ÑA¨=ÐÊêbÑ~óÁSnãì}²³JÉKvÆ¢ýÍN ½l÷O~  ^SÖؒãÖØÀÚ‡se7OcOzëâµàž= OVJµmµµ·¾ß3ú8 +eVAk}¶ñEw‰–D­×Ú©ê Z¡äf@K „lèYÿžŒ!Û7>‚5;£o×½¨S)rÄÃd´w@KZÓ·ë£ø+¡h>ù Ð’h’aß^½É·~³†ZÍÈþfgE;3^*œžægì–æš‘ýmäUö¸Ô+8mºTš`iÓeÀ¶¸}zÊ—»Îš¬0Úö‹$ý"(ÊZa†{;8{Ù[`áýô)e‡´0úöh Ù+íÁTÖæ‹´`‡™TªÞeô]õìuBK „´0íxŸë¥ïiÐ'X[ í•+{•e½ûßÏdÿŽ>M6yÁFp¾Žeçˆ-ØøNAtvˆÑÕy±Àʈo†ç7¿ÛUÏ"œÁ!&Z°³Íðü¶¼(m¹Dfž´æê"XÓš|¶ÌBûŸ²ešÖœk¢%­éå,ó ÍFeN W9+œ²ß–¬L=Ew‡ó=Ñ’…“ÎŒ$ÊjKm³áÀÚ\“ÎvÙÞcûb)'V …-Í5élû¡m¢:Þ1¾ÞÛˆxvðd­|8ãëÛ¶]sç§D³ÉO@K¢AHæL;™õÈ·Yù8€%KaXNO5ïžô­É‡Ÿ€–´nmåþ'>Rb…FÉK¬ÀðzûäÞʸEpX!‡Za†×÷d®^Þr¡…Éf7¬i Bê9¥”¿¹f³›ÖD/Š.Ûg_N^ÙŒhiÀ7E·¶wc‘÷{¶ `içc|½G©Woä.[8¯YZ±pF…ö‘ ½Ò’zaÙ~C·Vº\úxòý$€µ1#!ùûâÞzOŒÍ므–ÆŒ„4ú» ˆ÷IknºkZÓÎÆè­·$'í†ë¯ôiu‘ ‡ùvvp–ï%x-À’ÚŒFêcî±öåÕè”[Æ `M4É&«¯YÔgð Àšh2Ò,Å«…ë·1ÁTˆVLœ!ò}zxö*xòSÂ1ÙCL½:‰Îâ¤$¢gYØ>=gsËuà;·°6]$ÃU–»út16 ¥é"®¾öÌzGòÍXØ€–D“ ½‰®m¹úú ¬ 8 i­Ú½„½*:~–D3¾¾ÛùºÖëSÛiÀ)›heÀ"ßß%›žB²"ßÍdë,zRôb¢S@+K“uùú^ÙüÂ[¯œÓ˜Ñ@KcÆ…½ÍàsBß§m³£ØÎú0fT:Röb977ç¤6VH@KjŠn=Û(ê¢Ù" %Ñ“¢»­°UÔ˜¹Uƒd€µµ¹(Ú6|¯3'‹. °&zS´Y©MÙ¾(heÀùðãíw‡í›r4Ò¨ û€>eãq²sÚ©×K¹œÓˆ¯ðá?`iÄ®ç}Ô§_òª¢É쉮]=EK ]l‹ÀšhrŠ·©Ó¥ºgtTüA¶å¬‡Ö,ÖØhe`ÜÚ(¥æÕ>y›’hº´-‰¦ÖÅK‰ ýÅj±µQ@K¢¹>¼–ˆ—¼Q-…Q=¬YJøîÑsÏI.,¾`?úgì ›hÉRÈ…½O33½ âæÓh@+¢?ü|þvíeK!!­X cÞÆð(ª,÷ÀZ|`i®Y´ Îo·’Ó€sm- 8¹Ð³ù1NÔ:L5ÁšÖá»{*ž'UŽªèSp>W×ðH›r«crq:*DK#N2œÉŸé‹S2›C´$zþžMï¨áõÑ~Füwô‰Jihžئ\v9°ËÄû1ýö틨·Å²Ë­ ÿ†wƒ´åYÎÛÏáÞoN*yéÛKp°´8žïE½ ‰ì”Î0]k¢ƒ¥øUL“V ‚5ÑtÏVifóUjã3_@+k“…÷‡98fezâäR¢%Ñd¤å©ªMo¯½wÐhI4¬ý>ßlÁdŠ€–Ds Øï6 C¾Ô`µèÖÌŒ„´Gòv‚r"`H@^¼ø%Ó×&ÑÏt¶ËöÏ”¼ÝYW“t7K!°@â&:Stµ©žIáŽÐ’Ö%€gï;öï$nh¤?> Nÿl¦æMô Gæ °`¥+11Àç\ôÒÇ›QŠý¼6½‚À9åVKVc5 >3ô¬í‹ÇÅÒû-™Ê¤hï†;/™—§B;#X[ ‹¢Û*i|A +ÈZÒzSt7§Ôë>hFºSo€%#ebÀÌ;×/ŒtS6Њ‘>+9Û‡7õübhôð}@Ÿöšx)Ù ý¨GôÏÊ~Ð’Úd¤ÒÓ¸“ÊA4+´$šŒäåk¹\8žìlR2ÀšuŠÞݾüð}Òš|F´¤5çºÚ˜í„Ëå‡ $dÎÌj®øû®[e$ Á#1¯Àûàæ¶o('Fâ|­0Ãpgõž×Þ*\Ý@˜`èê’;Ìm†f°4f%L—?~A¥¬¼À’‰35`¶d«cÈeP6ã[XÍݧe³òÔÔ†5ËC~¨ôwô)—#þ.ꑺz%ÿ´× ­¬lÏŸvl2íéq²3š8ÁÚˆ“ÏZ_>eê½ß;Xüuk¢Égž?‡:ð·©- 8©'wrä§¶@ÀšÖtÏìàEо0³ hIkÒY6[y¨×ËŸézЊhÆöw¯G˜ä½‹A×Ó³ Ò”37£-Xš.fLWze¹åòg²_'´4f…¢{¶SÀ¥YÁAkF[°¦u%z¤•æ¾D[œÐ¤³á]Ë<ŽA3Ö÷hiÌHgv~1OŽRüKm¢%Ñ4ROÄø§¬¬4]trÖ¦‹t6ûoãQ,^Ü´â`13Àó}w_ìš5¨ ´4ळå„Ò.%N[•&XòÎX;ßÛ× û™XÀÒ\31ÀßÄçñôë„Vœ‰1f¾œ’Z÷ `Mk®ÌeK³¤ü3fOgì†ÄÍô)ŸŽt¶¶wô¸•RÓ+¢Ÿ6ÜohÛ@š¡Ââù¬Y)Ékõõų*£-Z3ZŠßöü©·&i$¬iMFZ%å–êeºNñ_\Ù¶×§R.ït‡gteK¾Ég«yù¶*¿ýoZ Ášè µ÷ jrÐõgÄ_'´b)L+X^©ìÏ…£@¥Ÿà× ­P)Ó –}³—¶Pˆ?Ñ•¯ZM:³O.©%ÙEbÍÍÖæšÞ™íƒŸ’Ýê\3}% ¥¹&Új©õOÕ3eÿà HKûÇl§2[i(¤øDâ‰Nè“¥ÀÎvª%ïýEh&+Ø´4â›`¯nч|äËlð€>½¾tª=Œ†{RÏ]ŸPÁ× -,¯ÌÔßêwir÷áÍ®°¬ZfË€íq´»U5èúì÷:¡%­ig¾í4Ôá/¼NhÁÎ23vî­þ“Z¦ ø’Öœf–Çh9gùº’÷_¬‰=§ C’£B œ`M4|;Ûë½Ù­ÃÃé}‘fF´df‹¢³gYU9o“Ý!XÓzStu>’[µmXͨé]Fj¥oõ*çótó:¡•g¿]fž^ÏPv%¬8 ™ý¶ ÙNùô_­3ÓWZ¡fìê¯U·ºÉÿÑ:¦ °¦5Ù¬¶a~Ž\ ;&í:‡‡Hª—Ÿ—¶× -YJP{áÅàÕ£jÎáÃͧmãRbèdg)ˆþk«‹tÖl»_{‹œòÉA|ÀšhÒYË6Ùrw»˜ÀšhÒY+Þœpê¢I)K¢™U°›—GÝú½]fH@+ ›Y»Íf¾ù¥4øIk:´kZ“ΚwdJ—ÅuÍ ’ÖD“Κۉ¼k~b+_'°&štÖÍ9žCmó‰ÀzÀšh:g½{• ùíåóý:¡.dÔÚî£æ2ÕgìOÐÁëÖ´&›yŸÏ2?íh•­‹I„,m]L*Ø}Ù_jµèO"ßëÖD“ÍÆ;òO.ðùð× ­P “ öðµéZ“Ì–´fZÀ¶óÃ2_^ yû$ò½N`M4ÙlÌ’F—[å|¦ëuBKNK»·PÕïÉÑ`ZÀž©¶¶›î_1±l›;[ÌUÔï4*ª= O/ ä³Y½vKý‚Ï8jD+|Ƭ‚íé]¶‡Ë,>˜,ñƒó·7˜}g‡‹—g¹òòìwôéF„ûæôžÉùææœSøò´4â$4¯a3sŸÐ?Oÿ¯Xq†Kø«hoùÖ¾þ¤5D+Z3­Àì½¼{·È¬Â•€VX…i{­fÇäÛ®{z† -iM3Û¹—ü'PPn—‰–D“ íÜä}”å›…N DK¢Ig¶÷ya’-œãM°fᤳ½=Ää–™|2³ 5Ð’™ýãž­ô\Ÿÿ)Á¥ ø?‹ëo´4à‹¢«ÓÛo ñôÿ7XðMÑͼ;¹³÷ç©ìuK¢ÿ q£gßï¨wÕ[ø7²ÿƒöˆ‰.ï¹ù߯¬£•éú7²ßÁžðO@4f ’ ÖÆ¬R´)F/â[Ùçýãuk¢Ã‡{í醞—ÓõƒõŒ>ÝLª]šr”=ù>`ÉîAt葉[ØÁÁÎ:íŒh…‘:é“×ŧÿO ûëÖ´&#½ý-9äú“Gþ:5Ñd¤wÍ™?ˆ6à ²‰VüßÈþ7Ø^-ÝiOœÂ'Zá”A:+ÞD¤¦‹cxÍ'ZM:«ÆÁïx}yÀ)šhiÀIg^7&_»TŸî¹-iÝ(zd³œKÞÓÍ[ °dáÿFö¿Ñ^ªg¨™àŸ¬ÿ× ¬‰&›5Ó£&¹qñçÃ_'´4×\­,5TFz: …ýãwôér€&Þª?Ö­ûIm’8Ñ’Ú¤³æµïË-Nð”Ͻ«Í±óFJõÓ¦;ÉgmNϼca?¥^'°dh“|Ö“g…èÙyÒS!ZñÉÉîy{'E}yq® Ö´&Ÿuƒ×®ÇVæIwšhIkòYvÊ-ŸûÉ3 ’–<ÃI>ëþÂXäž°ŸG¾× ­°ø$ŸÙºœ­©M•>"^'°6×ôÎFõ ·ý……Sk¢¥¹¦w6Ú.9Ù;kÜ@Ö´&¾wÚ—ï>‰&¥,‰^d³1KKr•ëOúûëÖD“ÍÆªÕ¾^6³ÎÅE°&šlæE€ýœ-‹æöA°&šl6KßsÝ>üdáq¢ _-€=%aÿG>í{‹‡Íßѧûx.ìÙlï+jS$¡ÿ ÖFœt6§M×Ð#®ó¢WJ´4â$$KOÌ‹îÙïèÓñž{—'•ö…{¶è,-©M>[Õc¦‹šö¢oô;Òã3âҦˣ*ÁÒ¦»É†ïfSÉ9ÈZÙt7Ùp­ºû”ï‡sæl¬iM6Ü~¡2‹~LΤ$¢%­É†ÞºËÝ3ÝH¹ë­éæúØ^*¯/Dsÿ!ZMßnïœËV+¹#ðìo°6×X\9%Ï›éêC[.ðãX=)ºvoɤßK”DÙ@Kf¶6}Çú«'¾½ùá£÷Ñëeu>¼P6Ї—”(zíN­.ºR4Ð’hRÎ5¹§©»â‹¦B´°>J*=“÷Qk|b°^'´¤5Él.Íþ''ZµÐ’èFÑ5ÕšåN9Ÿ@¨× -‰îÝJ«U͇ûÔOyÀŠwV É©¹æKûß“hZÁšhRY³Ú©¢©^R ´dá‹¢÷ò ^ùì3ÈfkZc¿~0©[o¨QrúñIЧ¸®®ZvE[+| heÄ3é¬63¡–jûxÀÒˆó¢ÔkÂÚ>:哟ˆ ¿ÑÊÂÎaÀŒ<­YÖ:X ÀšÖ¤áfû­±‚|ö)§Íô)*‡“Ýr÷ºÉrâe\!DKvF>óXñÝwRGœ‡ÍÖFœ|Öì°Û¥3ÞI4·.‚5Ñä³fŽÆ˜rÃÌÏyÐÒ€Ó;ëþœ ÿÈHœ®^³½Ô×fã|­¬ÍBß®{žk›rدÔXqÅKáúè³z£pÝoA6Ð’Ö$CsÆ_)w>‚%#-$þ½q›þô¿i£k¢éÛyá—Uô0õÍñ&XMßnÔe£¦‹Ž,N´²4 ×èÆ¥írô9Y8Y˜`ÍÂg@ûa×vO^N! SºêEË>á_¯ZZ¤³i>OÚ]?ñ1ü+ Ñ•„4ë»ÇŸ<]§‚¥éª$¤9²UåsŸ®× -iMBšÞ¬y]NZÉkZ“<±¬¡6ùÐ’Ö$¤õÎëÐßs7 œ`‰øn¿Ýݶ&}r ë€cø;úÓC7´Ù¥‚ãén¹Åÿ¬©MFZmÕ”Q¸ò‰‘ê¢Ú¿¢OAÓä³5R¹÷Œ9íáËVö€J>[ÛÌ4Í/¶nøD+¢'Ûv€ìµ¨dÑáòŒhI4ùl×ÚüÊQµ³$,ÙY#ŸíáÏïz ”.ψ–´&ŸíidØ.÷'* ’–¨4¢÷H£ë騥ÁGò<îîi2OZ@+DÌ(Üâaom$9A+ç€ÃÉ·Tðz'~8ÐÒ‡OŠžî‰_ çŸ^2%¬™8è¬d;ºî/®¦ /iZ2ñMѶBÖRÛq|r'_'°¤uOÝÍrÊíÚï u Z­hͼ€’Gë½Ë‘Ë? Œƒ5­ E›7ûÏs—¦õ¤l %­ùáöåyl=¸Ò_ÆþݱЧ[?2’™¬ç¾\šðžÐèêÍ…¾ðäi)KDÜÇ·]ö¸Ôj;‰^ °&šdXæNcÈ•ó?¯à¯Z!CføQÓNé̤­{ °¦5ɰÚb¢¿Þón! %­w—ÔØF÷iÓxJx@ŸL<¨Ýmë*YçÆë´Â L+0ÇÜ&k~‘E¸IID+#δs2½èŒ^©„]—hIt¥èw÷"VSÿdb¼N`ÉÄ™V`Wõ þ/´æ€-iM:ó>Ÿ{l9^bÐÊÖ´&õ4“ÇÉZWŽ8Ñ’Ö¤³þ¾Ø¸<&Ÿ´n” °¦5×u/»x¼„êj„eM°äj0«Àö1sÎÒ-ÌðD)Ü»ˆV(eÒ3´.÷ˆ¹Ã‡ó¹Ë¶";î¯KÇØMîKÓ5È›'2z?>ùH³b ø}J!¡©Ø©iõr 5?̯JZš/2Ò¨£ÔÔõ‡ì°á-‰&#áAzU Î8Ñ -01 x®º›ì`…#z@K¢ÉH¶w”\ôÚÅ…Ä-‰¦™ÍfTZärRy“† ÖViN¯Žª{´…y²­hÍÄo‰×gU»ˆ|Òþ_'°ÄÃŒ=.^½,”M~"C ýŸ†>]ªsuùËBû"Ū :ÄD+ ›Á1ö›²½1«lg\×Kv¶Hg« /-.ûv ® `M4—æêæˆWì÷“MFZsŒ>‡ü|_zør ¥BFZ;Ù\7uÌJâæC°6fd¤·¯¼„³žLœÞÂ~W¾œk“`íÃÉg{; éá¬%8–D+ÓÅÐ~[µÎkIÁ“hR)Ñ’h ¸9…5·zëx # hIt¡èÚí«õëÊ>)`‰ÅÚ_=×µÕ¡†8æ‘(`Mt£è‘½6’ná•¢–,œ¡ýÞô>y7BYë `MëAÑ«U;h«Im!‘<€5Ñàš=ëòºû,œgˆ€–,|QtMiK¬“Ö›’Ö´ÞmV2ÒWPôrZð*ß±k6Kñ*ç²…7JX±ðʼ¿0li%9Þ.dÏ×RÛ'^_¶ÎÑ‚¥ÔTاNéÃQµ&UЧtZ©mdµ·/NNLÜ hIm’¡[kra¥Â \¬™ ÉЃ%ÚŸú]ÊÚ ¬@°²6+Ó Ìö m9¹8Ï0Þk¢I†6hÃxýòᇹ¦#Ð-Ð̪ŸºÚmÛ<‰¦ÚDK¢¹4ëœF*K¾Áª™´P—_žéýÂ" •õÁÄ#³4KÒ×C5XZL 02ó CMÍ,Lˆ `M4½³VjõÆàòú KJ°´>RZ[ë=m¤ÝέöñI4ý3¢%Ñd¤žGNž(¯.Î6ÑÒê"#Ù'ï1¿x¾g a@KZÓ=ë£ÎÒ/%€O«‹»ÁÒêbhõLŠÝo•ÜO´Zp†ö×á…ùÖ­îiÀɤDK¢Igþ|¦,»âÁÇ!Xâ†öWïèÚ*ŠS<˜Ye*_@+fÆÐþ:æ,¾ùÉZsY¬ifk›'žê÷äÑDÒ> O‘™dÒ™l¶²^½2•/ ¥'ÍwX¨îV†ÅE°6âäÂin¡m?“ý´w1¶ßÐÆfK¯n÷M¢•1clþÞôÄÊ[¿€Vh±ýuz¿³v¹e=ñp˜.€%fl¿7´Hq'8#€Zð®ÝÜÏÊ~²”Šà±ôimr²W£Í,»‘Uˆ–Ô&-¬ñ.?¬ÆKÆG°6Ùt°ÖÞÛ»£ê&´Z2q2’—äíEuÒš®ÁšÖt°üñ¤¯/œ”B°&štæ­[ÊübÀsPheÀÚ_·q¸yI²YœhÅÂÚo'>³r ': 8S'Xp†ö·”Ûò8uããé>€¥¡ýÎÁɶ>}À™&ÐÒ€7ŠžsŒ?E43 ¢–̬Sôúi¡( x§d€µ›ùé~›³rñSNN;#ZðIѽš~‘’À[ñ–ËÊ­JÃé¾±ð»ÖÆlQôœÞqF})¬Àšè õò–ernqaù®–D3/ ù£è®zØZeØZ@+–§äfÛ·{Ãò€gÚ(ÁšÖäÂb~BñDUô¦h€5ÑäÂâ]’:"û<ÈZp’¸[=ªóòòúpÒYM»ÏÚ䄸ʀ¹€–>œtV‹öþT‰S¦‹uÇX›®It«k6½IíH¼|@ŸÂí‚Ú6Ñ-ë¥Á+ãZqÚ™Ÿm#•Û°Wç? Oj“ˆ«ß µ} ê9lô»˜•«¶RƒÚK¶ÂÐþæ/›åÏ DÍj ¬‰&¡¹í¥×#¬ÌU hÅTÚßÚ°³ÏÔËåÄõE´$šÎ]ÛÛ8JÏV­L+hI4Ù°çl?@.zVXî €µ¹&-ôV¼›‡~@gZA@KZÓ¹ëÝü±T—¶?ž`Mk®ë¾ZOîÔ%V¾x·Ýgw9¹¸0 5€¥sš7*XKn£[Âò XÍx‰6ìŒnã&?ŒV¾´røaVA=Ûž oÙÁË!X²¾ý·áµëÔó´w±a€¡[êK.)øNu}ÀÚ‡“ÎüNÝCEô…M?‡hea3 ½y°w&#=¹9èS -Õžfece¹IåX@KVJ>›f´}]rØO“M+%X[›ä³Ùl]¯Kk‰“hR)Á𑑿ܣf½§xeHi@+vÆÄ€6½c×½³°a,iÍŽÍ3®öŸf¶’ÖTˆ–´¦wæ;®E>n2»+€5­Igkì<ægÆ2´¤5×õN^ùEÏt­¬QÐʺf¤†ùVvLnC3 qmo!ÿ͘‘ˆ–ÆŒ¾ÝžÞÌ~Ë„\;‚%BbJB³€ý¬æÞ°&\ØÓ»ƒfÖß*) %KÙ]SŸås¡"iÝ)`IkPéiØ!`6=¤Ôóþ§¡O&^©¶y*vŒÓß6}Њ‰3«À{Óy±¼ñ‘X"C†GvoWfòÏÆ÷än<«> O™ØùíQ†Iñ¿¾ü_´4â¢[N«Ü:íDÇAZ=(ºÛqÈ¥ª ÒÖ&{Rô¥Ž&gÀWÞ´B*L+èyO••ƒ˜LÀ©ÏJËv  %®—±ƒ´ ucZ·U{ey®ƒ¬ÌucZA/>œ¿ˆàbxd@ ÞØn ù3¸üÞR»W¶(û‹(-M·€ÚÜIÒÏ>Ìû`ÅHsHº(¶m E=¡7&tsQm×Ë}VºÓ-YPÛ£à Òƒ¶ìæqkÿÓЧ“0_ËèhËu kа6_ô°l7/’ªî›Íƒûÿ§¡O+„ë«•Ü[Õ{á6Æž´²´ Õ[7žØY{›aЀV y½÷ÙK¾¯Œ’–&;‡ß¶ó}³¼“Ð’Ö4qûé½—/6/†š´$š”Ô½ÐS“ëÓ˜‘’º;¥š×KDKÎÄc‘F¹ÜÒžvÝ `ÍRèa™k6më“4 ÁšhzXã]:_ß¼Âx¬‰¦‡5Úð2úµ“Z™ë>¼ÛÚ^?~Ú~ OŒ¿£O¯´3ïM·ËÍ-=ñ0—Ñ’Úd¤±Óz—`S'›;ÁÒd3Š×Ð^×Õ‹Ÿv>F÷÷Y¼o“M%îºDKcFFšæ”¶žÆŒÇ‚µ1£¥L1ù‚Å[²–´&#-ïâÛõ@õÆRÕ-‰&#yê´9“œSM°6àd$÷õÌÌÕÆØÀ’hft¿¾$Ñ$‚5Ñt‘Vóæ‘ò€WͰ&š„ä÷»†V7+«·ðÚ“hºHkŽT—\H±æ`fkZ“ÍÌ«ë©ÜúXSZñÄ™Ð½Úæ¾å5ŸœZ¬ 8Ùl×Rv“‹þ‡¼æÖD“Íöèé '^-„¬è¾m¼ÿi¾¢qa4 .äüHÉ–uÁSÛ“ŸRq^|@ŸŠÀÃÃߌJÑ7_Z±R†pÔ¼ %<9 -Sí_ѧÙîTÛglMù"©1¤5 •ÙfbÁH¾_¯Kçâà aUÙ–(‰‰Ƥvr2V“µ¦sÐ’Ö¢s3ÏR®zV™ ÀšÖœëÜÌGZS>¡7ÆÃ´¤õ è>÷»¿ºÈ†9HXbC&Œ¼Öî×"C§…=)hia“SJr#•S*½ÊÖ´æÊ,yöZÊå%û€ft¿ó¨¯ëcÖ—­Œ£û‡×ƒ² W_jà#‚¥1ctÿ(³úlËÙÅ8Ð’Öd…²œÇ/µBZ³êrK¬Àø|spJÏyʯ|Ñâ-iMV¨u–±/§“Ö´2‚5­É µ-;¤ëfÆ~5¬™Y¡‹¶Ú¿púHDKŽßðÞvÆ¥K9í´p¢•€ïØÃÜÎfj†Ve5õ–œñ_Ìζÿª»•¥]ЧÛ|š¸ÿêýVµæ0â}ùZ™lØ6‹7EQ˵Õà“,­.ØÛù£´ôE#‘쬧=òFãÓÞ5P«ç}z¿_î5¥þ›K+„¹ä-­šJ7JëI¯R×Â&@´$šlاw’ HÖ¨4ÀÚâ$Ž´Þ=õB6$ZZ dC£•Òò§®†6àÜùˆVœöÃ,%×|98Öf§d€¥µÉ(EsâÈóTó¹C‰–æzÒÁšiuã3 JÐÊ\3pmLÛAv¿<螴怬iMJ™¢Rõ› ¦ü°&š¾—Çó‹«7Í´4àd³éåŽôTÙÚ‚d€5­Éf¶q;ÈQ=Ñc-iM6óeîq=ºhº9DK¢ÉfØŸ¦\6 †#ÁÒ€3:xÑÌÔ/‡€ƒhæ¾°&šl¶mÀæþ‚RøŽÐÊ€¯À¶ßŽ[AôÓ‡“¶îgm2!1#;€µ1#!íÖÌÍԛׇ|n;÷¬nç{}u18 ¥‡h¯Þe¼0ôÕÅbo-‰]ZzŸ„wRÛë–6lØO¯ÞâoŒ²èIÑk¢Ew[œåó¢ˆfÔÖDoŠ^ÞEñöÈwrÎÂ\­8g¬Ú?³­®½äŽ•¥ÞXÒšUûýR»î¬ßó58€5Ñ…èºSKÈA|:%oTª~@Ÿ¢[‚ÚæÖ¼ô7'&´4٢dzœ9Óø&ÀÚˆsxCñEZAÛƒ#þ+úÌ/÷–|eoý~˜1ò†^}¬/NN<¿´4_¤$oqÚo/§ù¢¥¬Í)É ÷u9lž¶ìAÑ+[vgŒü,­—®W2 E9X͵Yüñ?ë€{X!D ›ngŒü,k͵å/Ä\°2×QÓÓ3Uûö­¿Z°ðÎÚù³¾ûqlù¼È„ºÖæšV¥Ô?%7µ¹¦›C´4×t°ê.-×["ÇItp %Ñd3;~Ø·\jœžœžÁÚ€“ÍZc¥uqäOZsÃ'ZÒšlæTìxÙ»NN¿’hÅÂ3I¡ÍÖÍùzFÀÃúäjpu™¿•S‘ÿÿXâFÈOc˜å]xe;£…,Ù#äg7)å¢s çš`M4H77#µ$¿¾tVÞ@ŸBa¹²{›ÉGN^^¬âÐÊòb|ýôùZåàÊ%¬ÙYÐÚ¶½T¿Ø»¡-­lò™¿¼l÷Õ«^ÒÎas?Ö-æút{ÆÅI´ôádÃ1jóÖ¬òtqÈ–¦‹uûçð¶ºL ¼­ `im–0dk6oz¦ž:ãë§²sýh®­.ÑÊêbéý9óò"òí2oýX3n ³ù!ðVAò uq¢%­éžÙ¯=—ÞÍ£—0à@K¢IgÓº¶!é냮8ÁÚúàöã}©Vêòsp/(¥ø€>m ¤…w‡Ÿ}«Ôpºq _´ÂH%ˆöZ¥éRz2q^æ,™8£óç2W~^ÃvÆ÷à€VìŒÑùn)æb ýý©|­ 8£ó§ù³-äì< 8ÁÚ€“Îv³mwè•:eZpÒÙÙΗʰ'­¹° Ö´&íÙë\—F;§ËNZ8ÁšhÐÙJiæ^nï]§ǦÐÒ€OŠî^Ìpè$Î@ó€–D/ŠÕC5Õx»DÀ‰³lÿJÓûX5ç³1ì9€%Ñ,ÛodóÏn'ÑaªÖDƒÍV뤬—²j|Jh…ÍX’cy—6÷4äcWÃuþú(Ô6=æŸx Imf^´¤v£hÏž—2¥'Nád,q Ãë==·õôy v ²V6Ãë½™°YªÜ™µÑ¿ `ÍÄIg%·šŠÜØ»±'Fk¢Ig¥õwGÝ̸@ˆ–ÌŒtVŒ„ÿ)Ø©h]ƒÖKZ36ߛՕòMÆN0q¢­›ï‰bÛÛ¨ZB"XÓºPô» ï%§à´®¹i,­kVÞ÷Ñž§Üµ²¥ 5Àšh²YÝvlZ_<‚³f@@KsM6k¥ùkÌ_øxn¢™y¼Ãl8Ÿ?Ù˜àAëõŸÂ“²Èi@+Lʼߊ†'œê¢E-‰^<§¿%ÈçÜŽìÇôéI–+Û¼ÙZÓ–SÃ:ŸUZ14&¸k]ªÞº¥ñ%!€¥å5‚ÖÓ|œ\.íƒO^ç°Ãýl·p‹Óõ‰hiÌȆ޷²-ÝÁêÌ, hI4Ùpx á$;X-œÖ¦+ x·[raH² `M4Ùpìm‡®._Kôpt"Zp’á¬%µšt3 ÎÑ’h’álm7¿aQœtF°6àôíæœvÖmºÖ¬ÂÐ’ÖôíÜÞó–:yzå\ûÑ©4t<{:wMt@y@Ÿ¢Þ——äÏeò|17€¥ùbVg€Ø»4Å8‰æ¶I°&šdh¬’gÖËß÷ÔZÙ²ù`µ¼0ÆÐ›Â6F°¦5ÉÐËÕ?•ù4­9âDKZ“ ·½~¤¬5—&ÁšÖ#¢›¹´º_ÉÄ;”ìåÃô1ãæE´4fä³=ZIi$uÌÔÀÚ˜‘Ì1ô…­&´¦ `I4_Úü!¹µŠLŒ§éZôx@ŸÞ±a¥†žk½prgbY@+“ÍÚ“;ÕÙ¼‰,šïØ-‰®Ýmßër Ç;Iêuk“Ý(Úû5ï/F™ÝÐ’Öa®=üë6['­%¬i ÷lçâDne™NZƒ‡ZÒzRt­ÃÜÙg±ÏÖ´^mWo·ç®“Öq¢%­7EïáùÂúºf—…€VD31`¯ºôÀšÎH@+N)#äÍD›Û‘ý« 4ÁÒ\ó¢t{ÍK¯…%ï¹›„T¦Ò½Ðc6¢¥é"!Õäakz¿æÎÝ€–D“jæ+ȯª!±,€µé"!ÕnNJërVHKÛ^»~Žª¦ò5fü°öᤳ:½iÃ’Mœ/Ѭ‰&µ´“×>Ö-…²‰–,…tf'¸VæqÏ xhAô`R˜k™gž,…Õïw3&í ÎÂÃAw$úv¿£O¾,¿CzŸ+d"¦ƒE´@Ä#ÑvB¿ÞÛîDÈ)+o ƒ9 ^‡ªµ?Á•šÖœ/¢%­I¥vì-ùÚOð$šVJ´$šTj‡äòÎÙRHؼˆ–©Ô¨Ìœ_ 8o‚ZÒšdè%sÎúS ‰`ÍÌH†^hzå[é—“ÖaÀ–´&Ûug¾\”žŽªa¼–´fÙË=ӧͨ¸ût¾ò°²û fl;÷ä9šüð32ê= O,NŸuy÷G¹òñàÃO@+“Íœ¿ŽŸ¥t9‰]+X›lÒÙ´°”K*øi²ƒh€µÉ&MÏ ³ªÓY ´BgLIØ«ä9Û-Ué$šûÑ’è6_ºæ%'ŒŒÞôÉÄigžÕÑkÓ=,&U´¤6^kôVHåie31`/op¾?“­­Íðá@+k“\{çÞz׫áFB#Z3fl;óy‰¾6igKk“Y{×åG15 µ³fsk¢ÉH¶{Ù0è͹ߤò:¡¥'#Ù¯’’m1X 7 %ÑÿÒYþ¿dDÚ{ÞúÎWþí‹ôˆ>½‚ÿkâŽÎ©ìÖäÉÎáÃÖ&{Q´×½ Òní ‚ªÜã§ýäòý–öÍŸœG{2eýÂ[ø Öø ­0ÒON‚ƒwó wçÛ³ÓX °¤u¥¥xÞTõjÑã'Ïé/´¤5ç:×Ù½ê¿j¤?Kó/°d¤?9 Ž~W{¾™ø‰‚Ö@+´PØ[byÌŠê-ÔZø}¢…Nµ÷,}êQ¼ã' õ/´¤ö€èR¦'—ˮ᨜m¢%Ñ“¢«í_é’Br²³NÉkvF2,Ýû5Ë•x{Ø@ÖD“ÎÊh½èU5úOÁÍ¿À’èF:+»ç”o iOsM3#Z™ëF:«6hß”L?¡5¡%Ѥ³ÚÇèëcrÝÈâDK¢Igu¬ÜoEÉOsMB"X›ëFÑÓ£ÞäIJ^¹a¬‰&›ÕmnÊÚ²“¬Œ`M4Ù¬•šË54ó4×q¢¥¹žl»èFRô“[ÙößÑ'ïŒtæµ)lÏÿÂÄI¥DKj“ÎÌÓë»Ëíz#“,MvçÒlvÙ^X=èv2’ŸØÆÖƒ®Gür •1ëd¤^¶ùÄz×ÊQH†D+¾]'#™'>v¿¸ÃvsÀ –<ÚÎÕÕ=ý„w†OV§ƒõ;úôÔž)®÷¼a×%ZqRÒ°#£‘š~| ƒF´$š–fŒÑô·¶?¼eû;K¦ñN6$X[Ùä³1½|×ÔÒÀ DKk“|6¼nÃíjá¤57/‚%­Ý3¯‘úEÌ\ŸôÄ ÖD“ ½n¦3š,šûÁšh’á¬þŒñÅ‘/Œ8ÑÊ\²Â4ËM=hfDK¢éžÙ€í²¾Ðzˆ–DÓ=óÞ¶ææÈ (gutKåŸÖxÒB6#XÚ@ ÉO€v’—椡¬iÐz›ï[°øiº e-MWøðmk+å?åÉËÛæïèÓ@2ܹælž©¼w úHD+{×$n¯rÝšìW.8ÁÒdO’¡¹áy­[!ø“ÖÜùˆV&{’ ÷ÚÓ¦_=I DK¢A†ù”–.»æiÀ±û°6ࢳ6ëåÕèÄ)‹¢–8evŠ.¾{ yã[¢Ö´m†â Óô¹n” ´4ד¢Çö¶~jÀv_“’Ö´†kç¡_ý]tH֔В֛¢kÞ^Uf3z9­°ÙJÝZ-UŽïkS2ÀÒ€¯Lѳ¥}­/qÒš«‹heÀW¡èe®a/jMóžhàKëz‘ÍJñÙC¿ê\ Ò€–´æ‡oYÖ’þ°pÎ}@Ÿ¼³dÛ}wýJd‘‘ŠùÒ½O¹rÌ{ÑÒ!#•9ZÕSùúZ¬-2RMs•~«J~ Õ ¡U³Ó«5´·Ú36Á’èM>«#{eXýu2ÑŠ¥l®Mox¹=±Põ‡wÁòú}Š|&—Öíq9zlæfJ´¤6íÌNN¥µË˜&›N°6Ùtϼ*lnzîà™/ %­éž5;H­´å0ª±hãD+4¾I†mîa3&x °6à$ÃnǦ´ÛNÿŒhiÀI†½”mxùŒ¦š`‰‡7é¬×á‘ËjfYßôÎVDÏD:ëÞeºÞ.NÎÉ&Z0³™H)}z?.ýæ-JXÓšî™mdÉ+‚¨^ E¬XøLd³á-‚šN„*s5Ñ4RïRí?QuÏf¢{ö;úÉÉ-µõgPìl&îDKvF:³¤QšüD8Sr %Ñ$$óôvèEø°cÏDF2ÃIûZ¸ìôátJ‰Èp&2Ò¬µÍReކF´":“‘f÷2qrœzoA2ÀÒaŒböô²–|é73Ý3¢%­ÉHs/§• GXKd˜ÉHæ',Û½ÔTŒ‘x-A°&šþ•Ž33ÕY!Ó‰V–&ÏÞáE#y hÜ}ÖÌŒ„äq6ýO£Et§•¬‰&!9í†p»'BÊÕx@Ÿ"3iâ˃û·^8f2®3 ¥É&ÙêðÆ|E_Ø´q¢•…]Hg»yߘªÞæ(`iuÒÙö޲Yo9 heÀK àmtˆ´›'W£TØÙïè“qÛÜ»t;ˆÉÇ—Noš`iyðYI9µ¶‡z—3¸6X›ìNÑÍ<´ªß©OÆ”´4Ùƒ¢ ó”Cûè¬i=)z˜óŠ|ÄgìÖæzQô¶OùS%Hã”0Ù@Kœ:+vÐl£€Sžx˜ŒT¼ÿo/C3,ì–Æ¬ÑÓó“>f rhe̘UPò*%ß²!NZWJXÓºPô®9ÍK_Š“èAÑk¢áÛ[Ø#ÍK€ãai’ÄXZš â5ôláJäÉÕ`VÁúdâ¤[þH¨»…k“h… ™UPJ›³î&ŸïG °6ÙAkõRÕ“¹-­.’a5gxެ;òÁTˆ–œdXíÀ7Óåp2qî{K&ÎùRíðaÜ —ê™L 0+›ÞAX³(he̘Pê;ƒ~écFF"X32RK~Szë?ÒšDL´¤5½³–»¹rUH’ `Mkzg­ôÊ{?‰æ€¬‰&!µî%PnåNÎB´4à$¤6ÖöÖDzÖäB‚5­IHm¯Ýº^¶l¶0â@KZ“zöÀåK›ÐƒÖ §®–´îô¯zË+W½“Ôl܈V´fRAéÝý”KàÀIkzkZ“Í<.Ɔd­3Ð’Öd3¯1»N4™¬iM6Ù«ü|áÐòÔE°äht²™=vþS¢NÍWìÖD“ÍF¯m½Põ¬œk¢‡9eŒžg¹ÜïžîIiákZ¯ˆÞcèM]gG$ìú”&û} •娱YƒÞ@+#δ; oÛ€.aO«‹ûÁÒêbœy1¿®Žq+ëwB“‘ÌÛJùšÊwb$ŽÑ #1²¿L;Ëx§]4½¢%Ñd$ Þ·ÚÞ§é"#¬Mtåf‹[­Œ“M´¤5Éûî´ä ª‹Wüú±ÞBN¤ÂÙ"X"Fö—egÍÕä–É#Ñ/$XMïlçfs­™›ƒ²‰–¦‹Þ™g¤¹äûø°2 –Œ”!Še×éá?¾Ý§Ì ÿ}ÊÚ #Þ¼šºÜUit®M‚5µI†æÅ¯•ðáO“ he²Ù_öªs69øx„K?‚5­A†5e÷5~ò¨5 - %­;E·‘ËÐcz&ÃëZ=(ºO –·€$¬ ø¤èá„YvH)¬‰^m¶m§ø¤l ¥ùÍ™?lëcÜZÍÈ~ŸiÎ/ÃJÑ@+Ž!£QkñnNåS|EÍ'Z](:4Û¥NõÉÌ8ÞKfÆÈþê×F rHèdz@KsM6ó£y¥òÕY 3‚5­¹4íÐTrÖ“ ¦öÿOCŸ¼32©mø;ÿ ×F<|9ÐÒˆ“Îl¾j/_»øŒÐ’‰“μtW»µê<9†\\KŽ!û«×~|P¨¢7E,‰fŒz­æà¶¹äâ‘s“‘ª_úÔKdÏ>(heº6ÉKS´)'C ÆP°6fd¤–¼±á:¿Þpê `M4©Õmþ‘^\"\¨´4àd…Ö“'TUk^A°¦5ý«6ZKE.Ú?X(!€%fh¾WRß)_ žD“ÖD“š?ùíK6ÃI4Y`M4 ©›³`']Ý—fBB@ ;Àbh¾±YncÊYƒyà¬h½­]ûÈÉû´éZsq-iM6ë³æÚ‡ìÆ31€5­Éf#µ^ZºÜùRn¸4½FOnMM‡¼& `…V"ŽÖÝ·““³&ƒZà•ȅÃßõD×ÑIHkZ‡Ÿe÷~)Î}½¹ã¬YJ2ÛMÒÔ+žy½Ÿôwô©Êiz‘ÝŠ¾6ɆDKk3ˆÎ½•ZÕÝçîó:¥gV€÷h›2§j½¢l ­™Pm¦ÚÎYåáÉøøÖ´&šYF×ËV.f€´¤5ÉÐp÷-¿½„¼—Ö´&‹¯bŽxêr¹´•9ö€>±8ùÌ‹ k3dìÔÕŒMw=¯®Ã ežÙÖlè m^ŠÀŸD“ÖDÓ3\èŸ×VlhÉJÀïUÖŸ"?ÒöõI°´ý0§ î´·74—ESi‚%ÑŒà­Û{™·vùðÓ~O÷Œhe¿gNAGñ4'y®™õÐÊ\³»–—f½=¾œDÃà hIt%ØH¡²ÉÓ~ϬOAOIϧ|ÿ`ÍR:EÛÉ+UýoÑk¢E·áÝjdB*a¶–‰á¿æÂÏ:ç­ÕóÉRe-YÊ"Ø|+oý%ï]‘èÓîÃÉÎöå½ë%€sZQ›ý-ÛÆY›Þ‚w1" %љලöäÏd?­ÍŠªèSþ;))w¯)ø…‡X²qFö{¾ŽywK½™5ˆXM>Ë{·¶ŠžÌ(­l? FjÅÏ.密§Ã hI4ùÌ#Å÷Hú!{s!ZM>+Óv¯ÑÕœ‚Á¢e,±8û[5°'ÄéZ“J‰–´Þmºf•ïµeÀ’ÖlàEdž±’ìÛ…©&X)ºûƒÕI¼ÖheÀ™`ܽz’)…Ëš`‰R˜ЪwY+é’Iq \æ˜5ïe^ô«7ÖO `mºÈ…ÍNÙ£|R¢•éZ à hiºÈ…^B¾ŽÛûÉI4-…hI4¹°yØ@š2.ž6ZM.ì95o-Ï5½3‚µ¹Žhû쎌„'O£Ñ·û}Ê%÷f3Ðõª~‹m­8XL*h†+¥nõ 1ù&ÀÒˆ3:²õwœŸçñ>&¿NhÅΘTÐF2/¥-YkžsXÓšd8ò¨ëvowÍTŠ–x˜Im4¯ƒ¬G2-Æô´df¤³Ñ·_M«¡c“u_XÓš\8<§l£öðÓ¡­£/Þú”v&{{ÜÙþÂÄ{üòÑ’‰“Sf*f¨—ÞÁ'§¬™8iaæ>[GŽÔ•2/Àüº1Ƶ ÕÉJi+D+VÊvmÓzÞ^1¢™ñÐ’h2’¹ £t=©`õ 5Ð’hé²Ãbjz†U\^DK¢ÉH~:÷öñ2-pß#X¢&4ç…ÎN¢iák¢é`ùcŒm¤ú5+£YZp:XkWcR9¯l†-—`‰˜ÐvÙvjžº…³RB@KZó°éï{rq®Y“)€¥¹f½ÿ¶{ýÔ/PE“QÖD“ͼ>ÜH·÷À‡«i¢•gV€­ŽÑíØ'§Í„+;+®T›\ãg²DiKFÊ(ªîÍEG>9 ]ÿ? } [ÛT»n/­'?ÊŽøá?`ÍT:EÛ)9-=©`±?C@K¦2(z5oj$3R ’Ö&dhÿ}𣩗_,œÐ’Ö‹¢ ˜Šœ6ÙK0€5­¹@r·ƒrAÙ±'ïÌŸþ§¡OÁù´³Ü‡¹*—×ÉÎðá?`Imfô<ÖÚl£®®FÑK«‹Y=ïåå t·’Á~­Ø³ zÉù&k=7€5­E—ÚF•+ON¦°°&šfVlPë¼%üœœ“M´4ळâ®aÿÂËaRA@K¢gæ¹Nò±‹yæØÍž¶î#…m“`mº¸ñÕä1tºh˜`I4 þÛ„”ž†\+g²kKk¢IHµ×÷—ë–ÂB´b)|Ù4hµe­G.>´´$š„T·zÕ<( °6à$$Û5‹±©,šá¬‰&!ùˆÏ¿pz9DKNBj½ÔÕäR¸s­–¶\È÷6š¹)UõÛ¤}@Ÿ¢ƒÚÛv¯öEH)Ÿ6ZqÒ™m ¶Üô¬‚Å«€DoÖŠî^ȶ–qyiûïˆo&tïrS¶ž•¶ñÐÂmåfb@7×nå=d+e[£V¬t31À£b¦ß¨È¢éœ¬‰¦™äÓ5háqº û€>es²G1GãO”ˆ4ÙáB´4Ù\›£V›±)_½ïŒ`…ˆwâ‘ÏÝÙ©lžÁÁ"XMkL¿Ð+%ìd-ÑÉŽ¶4·|ôþð× ­ˆfh¿qÂ*kéÛÏ ’–VCû»'¬RÕÀšwÞåëÖD“ÎfßÛüñ"/.V heq1´ß)y‹Ð|ÞN!&³•½ZÁ%]è4fܺÖÆŒîÙjy¦/Ú.–Ö hiÌèžy—#kµ^)h °¦5¹ÐâFir¦ëâËh@KZ϶ +¨ƒø´û0f¡o?§ŽÛ=ëéù²‰–>œt¶ËheÈ9Ñ‹‰É,MƒóíØctxË5:Y ×5ÁÒþÁàün|d;¾œ²X¡.€5Ѥ3ï@2·œ¿ãˆ­ì|A©xkÔ&¿oFš´$ºQtõög—sîiÀ7%¬ x§èQ͹ֻilÆ ´¤õ hsK’ӻ䰦5œ³aÛGÚí ‰aP-i½Îe”œè'.ddÿú¬es4ÔópLÞ5Ù¿¡OÑz4´\ò^úÕÛby‰–f›5ûGî©^ä›ÒÍ—Ÿ€Vf›5û‡·—Ý«ëŽ=ˆZÙ»Ù?Jj¥59Þî ÿ:¥½‹‘ýã¹ì­Žd­9ÙDKZÓÌʰww=š•ñD-‰&©”éÁãrÿ’Ån²¬Yø¢èí¹——¡§¹ °6×p‘Fõbê=ésÍ$€Vœáõv>·sÛŸ2 ’Ö$q‚%­*>êèíÝ/HÕš-iMJñ´Ks7t ŸAm %ÑüîæŠŒ­|Ú»ãîOF½ ýÁjó( fùùÑüŠwë%3½sÓÏÆ÷;útÅùjÃK‰|±@øÐÒ|‘‘Ú´óyçÉ>- `m‘<„·ÍK/óƒh°&šŒÔ¼*_žò¡-Z À’h=¥<Ž/OVGiÖôéVœj÷²Z.·˜¹Ó+] ¢;cû›Íë¶Ž¡?«îàå­ðƒÜÇð>"¬úÄHá¸9j³ÉÎ2-°§Ek „g>ã³Ü²†’¢X›.’á°S„§ï«¢Yn-€5Ñ$Cóì¼j™~«Á뀖,…¬0S©éOb²¤5I`Ik†×Û)µ–4†<×I ÖDÓ=3§®t+àupúHD+ÎÒ1çØ~õ§‹¦‰-‰&Ú7{G%9Êpó> %Ñ´Q¿÷B5ð¾ø€>ÝðÒÄÍw(æ%é¾8CZÙø_?ìÜä×ò¹«ÉKLÊøúáƒPþ„á*ZoÖt hIkÒ™[¼”eNaIÙÖ6çz—™r×|CÂϰLsëîÂz@+c6ƒèiÇÏ$‡á.ö `ÉRøþ>ö6"ýâr ÁšháLv¸ïk¨ñõ›/ ¬‰®]‹WN–É›×Ë-Íu#ØöÒq[ùt ˜ ÃôékRm;ÁØn&GïÔZÙ¤8ß%ÉŠÊ>í3|¸¹Ç³}ñÁ(Þ€–>|6sZ½ê™6àX³ÒMÑ%Ê—´›·â,‰fÝý™›W¯”ã#W0‚%g„ü´Ý¾øÅ†<×+ÈZ™kFÈOoÔÝR•/iÙµ8€5­ÉH%O¿áÕccXw? %­E×l‡¹ÀÐA2ÀšÖ¢G©và—c7ÃÔZÒzPôl»¥‹“sZ\A2ÀÚâ"›•mdÔ/•ØO¢'E¬‰&›Uo/º?Áz’hò(Ášh²YÍËy™Í˜õÀ’h†×%xþ©©±ùÚÀšèлz y»ß¨ö€>]ÓÕ¨Õ|³Šš™O{®‡ÈÿOCŸ® ÷\Ǻ0Ò‰T‡,‘ ìg5:lå‹÷ûd­ ìßçÔ:äVè‹5²XÓš|Ö²7Ðúâj5ZÒš|ÖŠ~ôv5+8gkZ“ÏZi®/^ïYª' %­ÉgÍÎ uÈÛ›Œ,ÊN¬Ú?ÛʵêE;å°0à&šÞ™ß Ô.ç/®p XMï¬'ïñ£{gìBÀšhzg½ŽžÖ­lòÌì3f¯úÙÌ L6ëmŽTt" ~!ÁšÖd³>ý'7¼üL×ë„–´&›dÄÚäæŸézÐ’h²Ù(žp*'oÆL°¶®ÉfÃü«yízÒšŽ Ñ’Ö¤á1߉͗xíÇ3¼~O…¹&hîSh)D?ß§˜h’éNMšÞ|K`iº^?Í+-³÷ËdŸ´¦£A´¤5 i¶ºýÿdV ,±äÍÄÌ/ÌrÖæý:¡#e˜à\©÷wŽ<àT›hiÀIHvüï»8uÀ¹Û¬ x@×¼›3ÖŽ†FþâúôBFZmúâ¼%?º¯î‹[^›$q‚µµIïÌg n½ªßf‰¡€VL…ÁùÓI½&¹”Èæ»OKZ38šÁïœäîØ‹¹F,Y)ƒó=ôëM¦²hÎ5Ášè€öNk¬hþ´wTËy@ŸÞ}HIÛ)¥ÞºœØ0Ì6Ð – Ú»êM¹{Ê >‚µ'îi'À/NlÀšh¸gËvsín5Îx¢€–|Qt˹,¹._´Ò€–DoŠöD¼"§C„tì–¼Fôî£ôrÞNèÌ_­ïq;wÆlP6Ðʘ1¶rål›WÒ[­…,ôå¹+Ë¥B7½éÖF¼Rô0Ǿ˅ù> äuBKcÖ(Úê¶®5+Ò°¦5èl[›¥ÞJ[´VJ´¤õ èjûϼ~N~%iÁçÚ&[w5X)4 WƒY«¼»ˆÈ¯÷›,¹Ì*°]«ÙâÖ÷¤5Ñ’Ö$ÚG«_¼$°šTKZ3«`y·šÔº®5³ƒZÑšY«š?œFS/‚vØ|––&³ Ö»ÆOº¡OK3ÈZYš,Ú¿Z^¥ï[låI4®DZÍ•Ùʰ-¤© ·ÇàüëV> Ošx{÷®×Ÿ™7Àš‰“ [+3çu6Òƒh–ë `M4éÌkÈçri2ñ0]k&N:k«×5²¾ûð) %; s½}}\À'­IgKZ³ìþ»YÙ\r«ç¬ÀšhÒY¯;÷kxýiÀƒl •_—ñÅ­øÓ…JÇ»èú´ñ…·3×;‡TÞ@‚Ú@+SV7'ig9ã«ú:µÉ¦o7rI£ËÏt+}ÐÒd“Îìè2J²³Àô–èŒávkx]¦Ö¾˜kºHDKsM:óêó¾@5­?Wê¯XÓšt6Ìßš=Ëé'!pÍl+»l1(ôs+þ:¥gðše¯!,‹&¬‰&úuÈœz¬XЊ¥0lÍ‹?Ï–å. ;0âî䌡ûHWoè“©peÏáEÿ»xÏú¹¤}ÀÚ|‘ÏæÜ}¬K-ªÓ/R‚%*eVË©­È5?»îë„V¨”Y^Á¦Õqiïp:mRk‚5­Ég¶ë޽ôÆx›Í!ZZ ä3Ϲõä2}ÀƒÚ@+μwpÇÛÓTµfmØœ/Ïg0ÇPö¯êÀš•’ KO~ÜÔý«°Bˆ–F<‚KÊ­<žœifl[mo9ƒäƯZúpò™9”}W92s³vqkÓE>«ÞÁ½È)ì›E|Xͬ¬1ß^“*šsM°&šë£z§Í6/~šk.¢•¹fÑþ]ç°½ï‹ð/Ö¯hIt¥hï õ§ø½âñí%€%ïŒ9»eó+ËÓÈ7K:´²0§`·š«—eRÍŒµpX33zgmØ\­/¸pÙ@Ks=¸{ïè'.dÑþôéàF|×]æÑÞl‰Ð’Ú¤³žºy*zœG3‚•ÉÎL*° xÔ’t˜1=¬‰&Ùñ¼l½ʇ‡_'´0à™I»{ˆc¹…fžD“Tˆ–D“κ{×cŠï>Ÿ´€× ¬ 8él/3u·’±c-iÍÅå플Ä û“ð:5­IgÃÙ°v]4Ášh:g¶áš¯qicxÍÅE°&šÎ™–y¤òa33v, ¥¹&›½òhK¾Dbe£V6ì̌ۛ‘nhßb>ƒ—AÜK.ùy{yÀÚ‡“Rf7MóµvB—€öî'èñöphËO›蓗Õ=»YËP#€?¡ý¯X²qæ$Øùo—‘n'C´bãÌI°³L)Uïý!â× -‰&Ÿ­ZÍϸððé„N°6àä³5¦÷x“]¤hœhIkòÙ²Ó}JjQ¿OïëÖ´&Ÿí\¼£|ƒ•ÃB´¢5“ öö†J ]ž´æB°¤5“ ¶™Š±ã-WõÄ A6ÐÂÙ'ÿ$”ÿKæg¬TàK?±øO챣ͼõ¼äOôðëÖÆ¬RtõlÈ-^³~‚p_'°&: [®6ò½].ÿ†­=¢O Õa¾º·?¹´à=©=øákjôXÙïÏÔcö éÿiè“Úa¶½ IŸ—õuâ…Å/Zâ…Ѷ›r_T²ú¹Žù --ÎMÑÍ+ct=há''î/´"ú'ŠÊÁ½õwMHÑÎ~ËþKvH%¯îmåP¦œ¹8‰Væºru[-áÉg8Ñ’hZ¸Yh³Ãø:É@Ú¿ÀÚ€wŠîË lË÷Úù§fÍ_hIëAÑï„8õ6æÖù:5­'E¯VRQßéàøXMJ©¹UO¡—ü§ÍÎ_hiÀI)æú-­xõ‰ô{À’Ö”R»±Ñº¥9^'¹>ª—Ð,_p-îD+\ØHHæÏîÚð¶ù0fƒ¤@°6f$$/»Ÿ®À'K!­XJ‹àÒfFÌÂÓv©ÕQóì? äMéwô)?«qÐLo[¡2•NnØkóE>kæfÌ!7`ü˱$Zš/òY[+y!FYkR)ÁšÖä³þnW·¿à3² Ñ’Öä³nvR·z§þ ZxÀ’Ö=tÏ»#`ûéðÓmà}º> #ÞÚªS-–À¸ƒ¿ÀšÚ¤$ï=\G“O +Ì5Àšhî¶{Ôœº¾ºj˜m ;ë䔑‡?wé·‹kó«:Ô´›ÏÛÿëÖÆŒÎÝðÎÅ©\öŸÓ˜uÊZ3’áXs¶¥ÒæÊ“hItðí=MôÛMçŽ`mÀ¹4§÷[¾$ÀŸDsi¬‰&‹ÏšZÞxV}ÚtG#ýŽ>å Ñμú°÷úÔ'›6N´2ÙƒþÙœ+å?5×0 Њk8h*móz}vqòÙ²AðÐNyÌ÷¢¥1#Ÿ-;¡÷©‡½åÔZMKñl ÷ïtÑÜAˆ–D“‘<öÏ6qÝn4R¢%Ñd¤]÷Þõöœ|| ¢%Ñd$w3¼ÆÌH¤a‚%FtÏüùeä/,<œ²‰V´žQ"¯XÒz‚üRâ](N&¤¹h…f¡h<»õ¬…]_'´df›¢çòS›>×43‚%­Ø,§¤„¢É΂Ý[µQ׃ŽªèS~i¡ø~]nN§- †/ÿA+[À"záã>.a¸‡ùÊ´R‚µù ZÛ¹©÷KCò“èAÑk¢I†e¿jÐB΋¢ÖD“ «÷Œ)jþâçþuk¢I†µºê%rçd-™Ù$ØÖÇ,Hû:,ò™™wO]4ÏóE´ôáä³:Ý­”ã#s ’–¦k“Ïš_-Ô¥yÐ hEëMïÌû‹Ž)_g-°¦u@Û–žÌú<¢O(¤Ûö†-lýìœ$¢¥¢§ç†ëó¤gH´$šŒÔü‡µËÅÂi²¹ù¬M6ÉNåÝNXÖš{Ñ’Ötϼú’Û²~Þd_'°¦5é̶ÌÞÇ-ê¤5©”hIkÒY÷à³ÚÕj ŸÒà¯Zð K"ZÛH_¼èNŠ&Zк$ÒÙ°_õ›'BƧ´$šþ•wƳӾ®ù Ð’h‚g6¯0é{nI$¤Ylóú¢ff^²–>œ„4»¿Dߺ†Þ}¸-) é]xX³è"-i=ØkçãÝçáRÒÂÆ÷;úôøÂÉ^ÞisÜ}žFœÑÒˆ“‘ìÄ×þq+•{‰°ï¬ÜK”LF2?!½¯ÓäÉæ@´2Ù™Œä<ºúeaŸvŸ0Þ+»OÉd$ï¸ä&1â!€5Ñ<ñy°1ƒüB˜ÔÖjóv uŠx ©­i¢G¯u%9‡drÌÖŒ”dèVf¢Š^äB‚5Ñ$Ãí á‹.‘éŒ`ÍRày ºè ¼hii.Š®¶ýgýÞŽñv¬iÐÍ,>#ÜûiÇ.xœ|@Ÿòé‚ÚÃf gÝGâ©- •/™¢=j ËoŸÀ¯ZYØ…ßí±Ç^1Gö‘`o¼Z§—ç“?œ“-}x£èÚÚœ9©´°;%,ÑBé=æny|a)ƒ²–,ePôò-_­vð‰OyÀÒÚ,d¤â¯{êŽü¦‘-iÍ¥i3¿Ç’·€,œ`m®7E÷m»½ÎÃ%Ù@+Z3¼¾x7Žœõ×à’+E-‰&!UóÞWô²hì|-‰æÙp•Ì£êÓ) âúë}z!Ú°j‘‡O$Óë–VW%Õf\X«üÐÀ¬‰&ÙÂëUôÈ °&štf©ÚôÀ³è--Ùé¬no1ºÔ:£¹ÉKœ6ì–ê. dzÚs_¼¶÷êSÛdhL@+{nذ[/)-<Ó=}xÃáúÌùjïòªÈyB3Šª´5vÏ·ð§Aãú"Z´BÑ{%uÕQÉ5Œ8À’¡5jÝ“7<½ôw8yò\Ùk¢ÉgvØ´ — ýÔl~ÐÒ€“ÏÌPÚ*·•“h.m¢%Ñä³î1AóV³ùôúÂÉ&ZÍõ1jÏ3÷/Ds²‰–DÓ=mŒY»|LtJ –6†ö÷¥Ûº£RhfD+H§{6l©¶¬»âƒ‚%­;ݳ™Zk©É'ôÁ€`M4ÙÌxäv›®Ã€3§: ¥'›ÍagÅ?Åï5 爭X8#û‹7tíõâiœœVF°6àd³•V÷;C}À©5ÑÒ€“ÍV]9 ½ Táa@K¢Éf«yL–œ‚˜ý+‚µ'›-ó(·^ã!33,€5Ñd3oc<‹ŸRÂÕÑÊ€²™O^Ïz•Ò¹}-‰&›yûE[#úºžò/´$šlÖlßœårE{:€ÐM!XrJ›o§óºêübÓŒ²–ÌŒlÖv-yÜN¢I)DK¢ÉfvBn½è—ÙÑ--Í5Ù¬wÛøfKºhÒÑ’h²™ùuÙjuÕÆ›`ÉÌØ_½a.—nË'Ѥ‚5Ñd³î·xS~J.L `M4Ùl¤ÞÒJêöQ…`‰HY¯oUò}Z\43¢•Å6û1<'ëúéü±Qäç}Jád1íœ|+^|z^LáËÐÊêb`¿gçz’ôy8Mö d€5;# üK—;¿“hr8Áš‘Φß~µ›/}²3®l¢%; `;9Ù†ÿ³u=œkBèØúôºHK™Í¾»Ü ¿œdÓJgO^¬@?B¬ haÐ*ƒó륗üñ‡%+ #°b¥5‘’æ»Yæ­þãIkš)Ñ’Öt°–fF/º3Íò+-‰¦ƒeGÜÞšžRDÐ’h2Òòˆ¬¤_³fº´@†5‘‘<îofÙ£-,ÖÀ𙑑<Ò²—z6”“…sª VȰ2°¿îþΈ–-¼†ÕE´2× ì¯Û,%'´i{ ³ùÒ’WüoC~@/LLhÅR˜Ðlçñš~ªSbYX²¦4ž·îñ'Ké °d)Œ;sû6.Óßø*#ýZ²”0×kï‘. ýNZOJXÓ\زm~RÖµæˆ-i=(ºš±,¹náá>€5­'E7;-Î ‡ŸD/ŠX½(ºw¯Ä+‹.Ak€5Ñ›¢ýrwëÕ+JZ™ë.l6‚uÕ[ÒSˆ—féÍ×FÊù"ZúpraYÝ»¥éváú Z¡aVüov ðWì"[ 7‚%K n«|Ôr‰D:‰†¯ÀÒÑ¥õöçØU„£jeÍþô鱋“][_éO”6Ù›_´4Ùœ¯:rórìòé…q™v\Ûm¦ÛÎwZ áÖW—ûH­£HÜã‡oÎׯèS>Í´™{Õ–ªQYt9 µ™ÐZi#Í)_a1„7€¥¼€æÛÏZ(eøÄ œ.‚%^`Ù}û3TjÐ`Mt˜k/öÙå4À⬉¦{Ö–_‰È!•"€5ÑtÏzNÓ·Ùƒl¢% §{æÅ…꺷ÀŠ-‰&™¡x¨fÒEs!ZM÷¬¯>²^%®°nksM÷ldï ¨Ç-‡|†€VvVüo£yô'}rÏ⇛_h>–š—\X¡4€%.dÅ;áÚLwý¼ÈZ,MS |Ç´ý_¿ÀªŒ hÅH™RÐfnÆgIM›yGæ¿N`mÀÉ…Ó_±÷FÊÄý€–Œ”\8g›ÆòkpaŸƒ€–D“ WZ-%ýJ½²RB@KsM.ôsÓÜ·:oÑau-‰&®^Ƭúµë°¶¸H)æ¢$³–‹›rÒ: 8ЊÖL)hžpÓè‰?iM7ž`Ik>•5%¶Ã“üQÿÐ’Öd3ûîd«S÷g©5Á¥0¥ÀÁηjͧç–K°6àd³m»¦9¥²gǧÖD“Ͷ§àÌ/Î.Ì"hi®ÁfÞUµ·ÛSòIkXYkZOŠ6 ÎÍ4µî” ´¤õ¢h;ùä$w°*L `MëMt¯^+Gÿ­,÷ÿ€>½#,Êö ‘„ì÷§ó9Óº̯Ô#+k£´2_L °³Ë0;ÓËZ¼#û_'´²ÝG°­—ÎVPcÖ0_¿£O·H‰j×¹<>RvÅg@Û¾›êG¶Dãœ.‚%g·€þ®·ymR}zKæÒ&Zš/š—(Ÿ·&º­Y½+€¥¥Í¤{·íçv³pZ $¢¥BBóz²å‹Z 50Ñ’èMÑ£-;Ê;cõXð`áevO •¯ X«3€5Ñ$ÃâÝfr—›3Œ7Àšh’a1-éò}ÍîY¬‰†{Ö͇o»éõé*sñZ13¦t;ËTïŒ*k͹&XÓšlfŽGYSÎî-L `M4Ù¬úÑ)ßn‘NÎÉ&Zp²Y³- y» Y4›-‰&›™›`gô/¶{ÖZ heû`JAoD•õF…Y3­ˆfJ¹ Ó¼é­ßäе#XÚ¯ùØe&šWš·ÂÓ\“ĉVæš)Ý~ºÛdg,kK‹‹)½j£¦÷¹©  hIëðáË,žYûO§€…—ÍôéŠ6¨½û2Kýb²I¥DKj“ÎFšÙodäɦƒD°6Ù¤³á•õüš\\]—WúÜúÍô´¤5½³ineêò5Ò;ü÷ukZÓ;³rIU~ ®  `M4él5;³]{"<ÈZpÚèêÝÏçrÞ~ݨÍý€>=Ÿpu­éY²·ž/'µ¹-©M÷Ìèÿý’-Ov °2ÙÝúÚcú]«*š©+¬‰æ€{*dizÝ—Æ$©€¼1!Áv{oä¡w†hL’ hI4él·yù- 2H=€µz¤TZ+ˆ˜{pÏ|tÿ]]èÓm%LÜѶùéñ[ÿùòÑÒˆŠÎ­Œ~iÓyñAÉk#>)ºØÙ©ÉÍ–+›P°&z]«¿Ê^NKaºÌv¼>]“²V¦‹I#î+[^ `i̘0ÒîÞÎIÞùþq %­ÁH#{Á´úyÐÕüa8Ñ‚?ܘ0rõ*qM>¡³:Q+gˆÆ´€‘Çò‡Öt6ÒSx#WW6?ÇÛôÈNJ!Xûp¸g~rÚ~¯NWeÂO@KÓE:+¥Œ9/ï§;ZÚ(ÁšÖðR{Ÿ·¢•§+à4ÀšèEÑ=9 «I!‚7€5V 3ò^ô›!¡,‰æSÙ(Þòmè¡1$­R‰àÖV+ò]NóÈþÿièquÙñÑ0ê…JeAÀÖFœdXk«»5ÝOaœy@K#N2|×¶«zUŒ¼¢%ÑaÀ½ÇtùÂÎfÐ’hÒ™m™£ 9h¡25€µ¹h3“•1dO.R •VGjãQZ$4ÒÐ'o: Zóþíùå4_Ao •ùbZÀh½ôÜ.ÅlOóÆ `i¾˜àªi-ý9¸1B> %­éžõ\ßýõýžj­ì÷¼Ø¶+¥4/Ao‡g8jkNF2vÚÎYdÑ´2‚5Ñd$/P½’Þª¹1@> ¥¹æâ²3_ò x]4î¿ZMËœ¿ Vßd+ËXp:X£xâŒ\]»2Î<€5Ñt°lïÚF ²™±`fK¢[øpoæ—†·ÖØjà}:¾ÐÄÇ,iÖ[ÑýSJ[Ðh…SÙ?¼·Ühz_ùXräÙ?fî½ö[]¥Ó˜Q6Ñ’Ö¤³i'@;(ëZsu¬iÝz­¶–~Ãà|3²÷ý²¼ç2`;€µBFšsÚ·Ü*ëÈ0 Ð 28ÌmLj^äƒ.ùX›.2Ò*}yG?ÙHƒ§A´b¤ ΫšÏËUÎé1™sM°¤5ƒó½{•í×E­ŠQÃÁšh²Ùò€^?­ŽvLè“wFü}_™Î·1§ûá0×kj“‘¼îp^z?ØÚ‚l %;ãÍVº¶8q ×5Á§0:x¹»/Bx+«¯°6à3 ç~?òªû}ÇãúJ;ó÷á½.ÅÔOjse¬©M>óß÷É@|$‚%ÑQë™öh]¿)eN[@+&ÎÐ~Û¬½bZ•KrÔˆ~—e”R+¯ÅXZ L ˜©Úf¶åÒz•UxX]‰ö°:.Q='tã‡Ï쵬.¯§Xñ hi²;E¯bòT½…J÷,€5ŸÙÎS’§!ÊZ³Bv@KZOŠîž¦ç‘7¦m´âž18ÚΓˮºgHR hItøîåÏ›UñÀ¾Yü}:€J½!_·ó®\µ¬2P= •Éftþ,¥¿Sÿe” °dâŒÎŸv¶_euÝ!æÙ) %­+E›{ç½½U­¬iM:ó¾FY­# 8ÀšhÒYÍɤ÷miŒ hiÀIg¶ûo¿œÖE“Έ–D“Îê,¶0«œaÕX¿+ %Ѥ3càfG|ùÀ’²¬Í5)Åæ®ï©÷Ôk,þЊÖ,ë:½l™ƒî/Ü= O¬@·KïŠTÿúð°4â Ï÷PØÞ«^í ñf; •½‹áù^£Á>¯Ê‡Þj°¦5é¬'4¿YéIkR)Ñ’q®=W©¯Û‡ŸD“Sˆ–DöHÜ~9œÆŒŒÔM¶eZh9 ÀÚt‘‘úHÞ‰Jµ”–ƒÖk¢ÉHÝûvö&ßK4§heº_ï©FéÞéù š—­,MÆ×ÏQ½aÌ¥bÍi»§Òÿ÷»Îøú9Ìf=•\Í. ¬‰¦‘ŽnCÖvð´>6RÁЧ³iÌe¦SõàpÈ&Zšl2ÒÌÉÛ(Ê~|c%’€–L|° ñöÿ´éz¬ßÿ4ô)H1¨]ržúõrcɳ–H…Uû笵]3N6Î=—`ÍÆÉgÓÃcJùÂ΂Ú@ vÖy»< ]üˆ¯8‹°2àös®=s–k¿TF °2àö6SvøIS~MfÕýÖDÓÁZî m9¥:d0°&št¶J-Ɔr,SðSÖDs]/wsÆÒ³ñ¦kŽ]ùV®óD†a¾€Ȱ3:îܪó™.šóE´$š¾{™%ëWÓá)! %ÑäÂísúmekAi€5V îá]H.7o#e*xKFÊ|!ï¦aË ¡6¾žyÚü} z##y6ÞšzGñƄӀV¶Æöyȵþ|Oɬx¥è¼ÓJz´óÐXÝ(Ú‹r쮋ž °&ºS´wï­·¶÷§¹®” ´4׃¢½É”ÛVæ‚°¦õ¤èUýu@ÝR03€5Ñ ³•só®=rRt j- ø¦hãÆ½õ|ìÔ&ZÍèü•ûØïD5uÀieK΢ý+¯e»½^e®GÙ@KZ“ÍŠýA»¹>‰&§-‰&›yùÇ2Ò¢;E-‰&›ÏALåL §¹” °6×ỽ¦l.rìXg|ýòÇà÷³Ÿ:fܱZ3’ù³õ^ õ$šFJ´$š„T½æØ@ûÞw8d?.¿Ê©YÐm,yЊcX‚h/]“©Ñ†À’cX#Ú¡õä{iù×;{@Ÿ œ/ãF¯4./¯`¤KË‹¡ý«¹­Ì[Ç™“•’ψV¬”¡ý«µYß½ŽT­¹u¬iM>k~·0оmò‘/ %­éÙ€­TõÒ/5iZY] í÷ÂaÓªÕgF\kN2ìÕ‹ÀËñõaϬ‰æâòº,®Ï5]q¢¥¹&õí¾Þí>å$zQ4ЊhVü_#Û¢Ê%kZØs –œ¥DÖ°s¬[k¢ƒÖÁΈ–´.ìwXë‡ ŸŽØ ´èÓ»OP{z¦ë­ZÛiaÓI"ZYØ í_¶ñ˜K›ÕHÖÃd,m›,Ú¿ÆžÞ—]~!a®ÖD“ÎfòJ}rá±ÆˆÒÖLœt6íø8Æ7&Î'Z2q²Âì3å?O~JCâåút‹D>›cÖö…j³[M@+j31`Íí ¨Ø@?œ{À*~þü„úIk“u/ZY›L+ð¶DÙ û颹õ-‰¦oçélÌÕ‚™,­MÖü_Þ€d49Ú»±tqk¢I†Ë»†n¹·]cuÕÖD“ w2éÖ‰ðô¼H׎`‰‘˜U°ü=¾~‘¹ß™1ÐÒÒ$zÄIY—tÓ“Ö\[kZ“ }ü×Âw?‘!ó–\|ÀõS³ïZ3æ¬m³íòä1ãÞE°4fÜtw*ixHÙG(mñ€>]€‡½fÖ_¢;óéZñJÑv`÷@w‡;E­ð0ã(º O"ÕÏ]Œ2 hIô¤è9fš·ž|ÑŒ¢ hI4mÔ[Ƽ»ŽªîÙ€{ö€>­.š¸SMõŽ~KZQ›Uû·W8a9O¢%-‰ÎÝö*MîfÞXæ:€¥ýžyÞCÆÝ$58¿±èrk¢Ã\OŸKe×ÓÂÅE°´0/ÀÎMuú+†¬u °¦5鬖:ËŸ>Ÿ“2²& &e^€·÷kyêgl†°¦5鬎žÒD Ç'VháÃç´¹–#Z °f)Üݫž‚Òéüc2ÅæV¾Ÿ§Å$ØÁÒÂŒ†= ?†žÀؘÀÐ •2¸rÏܼcšì-+%XÒš Û“=<_M÷Œ`M4ùÌÝøT»ì²ÙMk¢Ég³—º—\¦4ç°&š|6ý¸X/)ìÿÝS °&šž¡‡©¿¯–D*e\gKTÊŽÛCæÆÒhE"&Z¡³MJ1ÿÆœé/nýÂd-‰&.³Ù–åbmm¥Öœl¶æN¹³Àx»€´Ìg0Ç8)É=1:‹ö°¢õ`Ýý½¼L«?—[—?0ýìØ¿£OwPT{'¿ ^êzgm¤Vö`Bƒ¿CÛléUÉã -M6éÌ6¾¹¿ÉBg¶j@ »æ`Bö_ÕëGÊ¢77l¢%ÑÿÒYý¿”r6JÚê®Ùj}þÖæzFtÉmDM<Ê6†*89=¸´#ý{õöˆ>øä y5Ýz+¸vŠÍÌür •ùúéààYlôÆzï|ˆ× -‰ÎSÉ«9äw¡%Ñ…¢³w`”_ùÞa†¯X²ÒŸ¬G{µýÖ¯ÿ¼ÝüÖD7ж »~‘³ÓÉÿBKÞ)zÏd”¢Ïu j-‰&#ù³OÒûO à_`iÓÍ\×¥¥åaÀòî“ÉgD+»ÏOVƒ=ßtߨôt›_)hiÀ7E¯êkDÞ~ò³þK^ÈfÅkëŽ )Dwò(Ášh²Yõ°å4ôÅÕ©6ÑÊ€²™‘¶O¢êN°¦5Ù¬ö¹J‘ýøž¹¬ –W!›y¯Í=ôÇÉQ€­,®B*ôV¶Î†²¯P|…ßѧ¸NÚY{'–ëíh{_þƒ–ìŒtÖjªE¿‚êƒN°fg¤³Ö¼ûJRcÜ{æ†M°fgÝk¯mÈåUGMœì_Ñ'Ç6Þf))ùü¯/Z±ñìÌøèý$Žx¡sF°4â•|æmƺñÂAëJB#ZÒš|öîŽ}kOwÒ:HXÓšsÝ»9ŠS/Þ2*—Ñ’ÖôÎúòbÓ·ÆÓûIPh…S*½³‘ÌÃr¹Î^覬 8élxc‰/ê?ŽJïŒhiÀIgÃ<éÖæy¶NZsª Ö´¦wæ5Íóºõ7=iMJ!ZѺÑ;›æSæ•/ñv§¸gz ÓØKï83él–é u:ã\,x#ÍîùÁzÙѸºˆ–Fœ dw$O>9*­aïú}:´‘J§í>kÉii½ð6†`mÄÉg+Ù1¹è‘æ#t‰–Fœ|¶rŸ}^ºmžŽ÷œ.‚5­i¥Ë©å.ç Ž¶0Ù¿£O·1\^«y“¸[ÍæÓˆ‡/ZqšÎÍ­½ÄužF<Ì5ÀÒˆwÚ{ãK—\ð“hR)Ášh¸væÖtïôψV¼“ϼâÐ?5Í5Ñ‚5Ñd$?»Ø FÞïW °&šŒdBÛn5´Ý'ÐÊî³ÉHÃãúËÅ1õ „ëš`…Ïfâѻפ¤=Ak¢%;£{æ§s#š¦B´$št¶÷œý‹j†csÛ$ZÍÈþâñ¬-~r°èÒ–ÔÒ0—Xö+/ÀÒÚd„cI3·ÔªÜÒ¯sºZYÌ (ÙLÜ>FÚä–ÐÒtUŠn^s }¡u§h %­E÷î%Udg:* °Ä Ì (yuïÎ-?wÍd- 8¸°ÚÖªþ‚>yÒ hIô¤h£ð¤Wlî{Q2ÀÚ€s];óÍ©w˜9ÈZÒzSô.+{0³há#UŠZ±pÆ£3’9¿¨W0 ŽªèÓ‡SíZjÝ×—Ÿš&N´¤v!¸Uû“.×+˜Œí7t«sÊí3•XÚÛožÝXsÉÑz#…ÉXZ …Œd‡³q9 uЭ `M4É<œUw–ï¿Fæ!Z²2R˵×$'Ä †ö°6×d$7ÛµËÙHOë# ç2&Öƒ+'9Zá³Â…Ýl]¶qÉÙ9Y °4f•¾]O9µ? æÑ‹¢ ÖDÓ;³™^¹ÞÎ]'#¥©­)óJoæbµ!û¤<½°¦5WŸ^B~þx9OLZHû€>Å\‡Éž^Gþ–Lq2ñ¾ü­˜8l»Ï) =‡}„]—hi²I†v€0çnê&¾)`m²I†¶,ûøÓVÓ:S6Ð’Ö¤³1ýfúsh´ž‰Û=ÁšÖ¤³±–—S«–à,m|L (Ók匋3}:l’ÎÖD“Φ·ÊI·dŠÃâbHi@+‹‹yeúÝôÔ/ýs_Z13Ææ—¹ìÔ´.mvNfFF!X2³F×n)ü“K¡iM;#ZÒšl¶Ú; UðNN!ZM6[FkÈ)º“oɬ 8ÙÌÏóª:F ´¤5Ùly=ú½Ô·ä\‚5­9[;Ùbk×~:ñuDj< OFÊÉÞ9Ù.wÑ}ç]¾N`‰Î˜à©Üþ-Ÿ^‚“C°&štfû­‡Ò&Y4Iœ`Mtøð¾Ì‹/rxäìôÎ~GŸrWhã Ê­îi ³ ´²0/ ì½íü²å”„Ùƒh %ÑØjz{UŽ—˜ í¯Þ¡tdýV|²bA@K¾(ÚN>½õ®sÔEÉkVº)ڌ̌M÷ãiã­hÍÐþš½îäê_X ¸4 %Ñ™¢óÈæ˜ª‡¶poÀÒÀˆ¹š[÷†ÀrXÎ`Th@+;ƒók^Ùƒ®õ»NF…´$ºQ´¿ÇŽ®œÂak¯Å&kT°øÓ¦;Pãÿ#í]“+»q¦Ý½Á;Èÿ=ÍØ’­e®Ú¹¿SnwD)œÂ &A—7èSíÖ|eþ¼•i#nür ¥'5ßþÇ…¬£‘ZM:k±ŸJdsëe°ŠZM25žƒå’)<µé"ŽOoåa²/»OZD+»óÜP|㜵ñndHR X"CæD9Ú=ÖS ¬Û\s Zšk@úŒ#cÿàÆ©a - 8¹p?ŸÇ¨fF¥ ÖÌl'ô9µU¹@„él.w‡Û>i– ´2f›>O\@¢w×»msãuò úfg¤ÒU—ÿÀGbpB+VÊÐþ¾ê°ZäN Æ*? ,­M†öw?÷Ú©S>&ój!%+eh_kFÆ–¾6Ó@´dgd¤e{­Råµ™N]kZ“‘VTM~ÊJ»‰&!¬‰&‹[©¥vD<¼£…@Ú7è›[I÷Ì¢ˆb×+l[Úˆ–&›|f³D…"9`ûAZ}È)q­à›öÃ}å-¨‡œB´Â)‡–E €úæt³3_–ìŒy}—ýÌå÷fŒ&°&št¶»Ÿ^X¨çÝ\3†7¡¥¹&íáëeÈA"Æ ‘–Hœy}ǽô‘_-]嬉&m«c—¥Ï5÷‚µ¹¦ƒµw«þ1²…[šj€5Ñd³ úW áMhÉÌÈfÑ-»ú¼£átyõÄh[N§K±â -ÒfRA?îÅ—ÑÕrÏ–Ž]+FºY¼GÇ€µŽœA²Kþ¿EßÃd*qC;åÊHËÒ€¬Xéf à(‘߆¼ßï‚Ç€7è›ÚØ~üøâÛèù`Óe(mB +d—IÑýt§¸"ø¦d€µ_mÕœÑôÛå“d-i 6Ñ香ž½’M…hIô¦è:FÄ]«Îd¼ÖüPôlQ_J'•IÑK¤ÂlîQÝej 6únu1´?Ð{ý1€· ¬}x£è(úÐôKZ«i¾€Vö†öÖæj7¥ï8…™ãU²æƒ+,–àJ`mÌÑ«ÎUŽ|1±+²¤Þ oqk4_—±•ÊTº£’ÐÊÊffÀhî“Úϯ²²™‰‘ÀÒÊff@4X(c¯ôMkx– -iM;‹pÔ=?p’X”6¡¥B>ë~º7{2¹˜8ßéX2qv ý´âL,û´›-ZðdᣌHk“/¡§š`ÉÌøÌ7bó©Çt)BÏþ§¡oî4•fú˜Fxñ?¾ü-ø è9_ÍpÅ7ºÓ ¬xÒzÏÑÆSµ›Ö$¢%­Igãø‰So€bÉE"XÓšt6k‰„õœlìÈ”ÀšhÒÙô£¯N9•oóé'¡¥'Móݾ>Õ½¼‰Nj­ˆfW¤1¸£Í_§ôÝÂflÿ˜{”ÇÌýÛt‘‘–¦‹±ý#®µ×ÉÐ’SJ°&šîÙŠ.V}ªŽ¼1ë&5Ñ$¤Õmw{j{|±¾$´d)$$?ÛG),Ý¿êIm %Ñ$¤µ£.ÆÃ…ãmÀéÙ¬ 8 ÉÖŽ.]k:9DKZ“|YGɵ;ø¦5ùˆ`Mk’Å1w?T¾‰æº&XÍÐþak5W {RheÀç1,ýš^Ïc÷¤6Ð’h®L?z¸/Ü×õ»ƒÓ õwô-Z#î»It­l÷-àæÇ“ }öf±‡Æ÷7Wœëƒ`Ég—û8­•-g^{Ý$°f¥$C±ð¸ä,ÂÍ`¦„–L…dxêþ39Â’³@´rìbfÀ8mE‡ ™‘±ÀÚ€§ïžÃ Eïü”n›oЗ1K›nÔU|E¾Ë“ôZ™ì´6O\`}PXéAZM6•õ»‰¦ÚDK¢7EÏã¶ÒBÏn;¶Qô³Ÿ¡ß©3­ vý V¨ñÀ˜ÐÊ´‚ÙJ¬Nýjš•xXâ¦øn¶ù?ºÖ•²–´&57ÑÖ§šÞe3i °´º˜V0£ùo{êïppN5ÁšhÒYs2:Kï¶yI›ÐÊêbÍÿÙ_=Š~J¦SšÐ’hÒY÷Ç•®"1V4O`mÀIgјuù}Ñ,) °&štÖgÛ|ùÚŽåXM6ë~&˜k?$–ÝÂpq pßhN¯?X²>ß /²“©ŒjóŸÂ|š•rÔˆV¬”iÓ'»T;²—Ãèã–æ‹is¬¸(}ònZ“ ‰–´&sßì§¼„¤5};‚5­I†~Üì{ʼl'#XÍ÷ÿÀ7‘-×tÚÌ ˜á©¬òÁ­8#×Zš.ò™yí¬~ÿN4#×ZM>›ñÑ]§RƸ'°6]ä³yÊ.f:+$'ZÑš¡ýþÝ}F{YkJ&XÒš æòñ²5ôS@2q¢%­IH!_»É ©ÎOB+ŽáN`_kƒÖ»¥¹yö};C‘Vô^;zÍã=kBKjÓ=³¶ÖO¥¬n¢É)DK¢IgîoEãÈVW ´dg¤3;ÍÏ3OÑH·¼./¢%­Ig;n%ÊC‰Ó›SJ¥ –Ž]Ì*˜»Zõ=[ÞsO °Ä)Ì*˜{ì¸Ò ¸Khe®Ö9ýèÙ"'ApK’–œYs;tþTA‘´N{Ñ’Öô¯ÜDû«&‹lᤢ gVAT”õcò’ÓçSí—„–D“Íbêÿ G•D³\NBK¢Éf~DÞýÈõí,9Hkf6[¥E¤¦žòþZÒzÙÎüÝ™íà)à ú–æT©öŒ”«n‘,© ´ öabÀ*§ÎÕô:XFW#¡%Ñ5ÃLõ#ÄaùúUËh~€ÑÉ·¬ ¬XéaÀ8,VÛøvŒÌLhiÌEG Téržë,$°¦õ¤h7ò5õbml.”ÀšèEÑÖÛ?;¶ z3‘/5Ñd¤ºGòUï–7£rX ÿjµ:zÛã3£‰-™Ù¡èf£•¢FöoFj$°¤5û¬6üïõ¡ÎÂm®¹¶V\»Ã´€åfÁÚêuÊf…ìÖD“ÍZ÷>è£~˜Ђu˜°¢åd­OFz‹õ¦h¢3cÅÿÕû¬¥?ØèeÀéÙ%°ff3¡×ò-ü×RÞm>5‚Þ o»&v½!Ô8¨ÍpÔÖì, š»Â}ë^NÆ¡ö_Ñ7S¡ww[þÙø4oéËÑ’“ÏF9ý?å¿®Æ-¼ž¼0"iÔž’tohî?D++„yk¬(‚Òäê-;ђ褵vùq++exdKVÚh)³ÌVæ‘÷ÖN`M4Ù0î–Ë”ƒ‘6k.'°&šl8‡Üyz§»­®l¢•õÁ´€÷¬Öå"Z›97 ¬iMß.nÞ¬Éñ¨›UÅXMßÎýÑ(n¡ÞÇoFú%°&š[€ûâчWŽô;Ì>Ihi®É…«Ù«1’ª5ã4XÒš%äãV{Ô¡gî–šNhEkæ¬(ÞòŠ‚Sw€„v¥ýØ,Çom†(&°6fäB‹fOwg7Ñ\k¢É…¾¸öë2NM&XM.t>™¯\JQ4«Ù&°&š\h>jö؆ýf¤$C¢%#MÓ—ñ´ðwN)“ |·­mE»muÌH)kcF:s°Ožz‹-éÌ7Ÿ?ùQu$`Ik&,7øÑÇC-Ü‹èI&%XMBÚÎgeëi3‡ie ­ 8û¬½Û\[n—¹WÒ`éÐÆ~N(£­þ½ÝK¢iák¢¹®Ï«Ÿ<‰Þ-Íô7èÛÁ‰dè®Coûi¹M6‰˜hi²éÅŽÛúC¨ÅÍÄÉÃk&N:;Ñ(Zï·¼3ÀšhÒYäñµ*WçÞ £M`M4éìėϧèÈË\'÷Œhe®™`ˆ”µ†•%°¤5-Å"Ä㟮zM¹–˜¨ô};$OªÝÝäGÿ`Ä¿hiÄ;E¯¸ÓÚúµ#®­Dµ¶#÷¨NA" ,±!Ã<¢¡øŽBq²èIÑk¢9]µ¹wµ>¹Œ'´r#¤«Ý½”ý=|Û~¨5ÁÚ1Šc•-QmÖqO`Mô¦èÿ2¹†ÖfÔAk¢iáÕ÷ìýXâô¶4iâD+K“9ÖJ5›úÙ‡¥‹XÒš9‘cÛ×г8Rhe\ˆ¬^Ÿ&û6f\DKcÖ(zû» õIv³ÊhK¬ÀŒóoî¾ëÊÙ'›ýZaf$˜¯ë³%Ñô+ZM.ìÖgíz¸Äf)Ý„–DÓÌüôÒÊ8ò)`ÓY X›krá+Óôlý­Œ·1 -Y8?|4sE·w§€… ‘7蛑ÒÄÇl‘¨¤?0 $¡•Éfí{+ 9ŸáX¥ÚEßHR{RŽ\‘c3 $%"fR•-žn—o†–lhÅÐÒ2¢ë[_{ÀíÃII3òß·\æz³ckcFJr§²GGÙJ™“Ð’•’’f$‚G90uº˜=ŸÐÒt‘’¦ÛìZé‹—gŒ{KlȤ‹0ÃÕš´‹”ÀšhºgËÏ/Óäˆ Íø”–D3©ÀœRÚü r€¡~ ¬‰¦{¶ÆmV9,g³ÊuB+Τ[«Ìºä?ŒƒJ`MkÒpÜçןéR(e'ÑK”ÂVfqRmzí–ÃÇ€„VÖ5s Ì=$ó“›îj0B%¡%Ñd3ß»œäÜ®ÍH¿ÖœlæbßÔ,‘Ð’Öd³]ü¸hSFbåâ„–ÙÌY¸ŽJã{'´¢5s lÇîÓõrPùòŒhI4ÙìD¡œräë”ò| ­ 8s ìÔ]f“K¤àá–ØŒ9vz‰ü`ùª“M)XZ\i· ¾ËI>B<$¼Aß|iš¸×㜭G˜Ì¤7Ð’‘Îâ­r}Ðôø0®3¡%;EcÓÝÛ ›Û -i½)z”(P$?N2f:5;;={iÄP±IB¿ÝJ¡§á&2ç²ù<CW~¸w)z½´Ã&¡ ývºBt£è3ûvíéÞQ­CŒd 4.óß o÷»\]ŽÞ6ä°Î™À’1§`»s¶Ç~ õ»8W6ÑÒˆ“ÎæZ;ÊÉÃ:÷´(Õ¦;¥y²–¼œ–¦ëÔõÏþ!‰&-¬‰&®y²ß…v¤-€97 ­lÌHØ«GÛã‡Òª7#¥¡¬)çz­Ù–=5¸þSë?Ï]DKFJ2\¶ª[QµfôpkZ§1ÛQ4Å»Þ9ÓåÒÞ oW†$â¸v"WŸÊÇXR›I{ERay¨ûr=Ó\¬‰&Z‹bÄjÁÿøë†VìŒQ9ÛÖ\Fúnûa^À6›ñn$@~¼é¯Zúp2Ò.ãU½EMµ‰–D“‘±l¦F{ÿø•_7´$šŒä6­ñVöM4}$¢%Ñd¤×ùuÈKs¦ñX[dß;–Í-»~\¯ZÑšIû´>­4™^ŸÀ’ÖL*اÇòS)ÎJJ¬‰Nèá‡Å®v‚ 4:¼Aßœ®®³|iö§×ÉÛdÓĉ–&›t¤ÞúSÂèM4÷M¢%Ñ ³ãîÖ(ò«êÏÞõuCK¢E»WºëS ûMt£h %ÑFÑË}•)'5§è¯ÖL<¡OôÁñå—Ã^oÐ7ßT;òQŠÚ^î‡ ¿nheÄ™Upjsc‘³š(é놖DWŠŽ&£]NˆKX ,M6c+`"]øˆñ[îüpkå¸.Y’ ´4f`$?=Fß–¥ŸU-¡ûó±óÊÍJá¨$´rjc^ÀicÍqbxoÞ¢d€¥³*óN›;²þå;C†(&°fgä³H²ç¡FéEôNã °&šœÒ" ç±YóÍHɆDKF ÷ìô:Z¼¡ÈZs® –´f^ÀéÑè¦M}ïJ´@´¢5óÜÁZ-Î}²Öo‚5­ÓwG¹ƒ¢6’ 4ܳ7èÛ‹n£ÚWŽr¾éaÕý–vFŸ(0db¸w 'Õþ+úPD>Î1åñJåfhd¢%C#ŸjˇQ64ÖúL`ÍÐÈg£Eµ<90ç0`"5Ñä³1âü"w§;ŒfM`M4ùl¸‰®ó”2z›k.m¢•¹æcrœ âb[ÍófBK¢Ég³Î9ÚN¥ –œ‘ýÇÉÕ ïwÛüëÒü#BÅÜnä]íŽý'—-=ÃÕÃ-Uëðþ¬®¯ZMßn9†‰^ÎOdÍ× ¬M¹pM›ã©ûM4O/k¢É…kí6¦ØÝáç ýëÖD§ÙÚ­í¢Öj 4jµ½AßùdâQ¤|p1‘ÊDKvF2´W“ž¦_ǰ®xB+¢™Up컹öòóó†þuK“ͬ‚c³Úiwê7Ño‚5Ñ´R‹×2æ¿ór˜ç’³n~ˆøë†–¦‹Œ›ýªÅÔoc– `mÌÈH~¸Îáú;c5ZÒšŒ´G´ÅŸþxüO`MkzgÛÊñcœ~Ä¢Ë -iMïìøbó&þ¤R¢%Ñ$¤Sg}ªÅÓþX:€$gÚÍdÔe¿^λ¥y«ñ}‹ÖKj³²Õ¤„>ûº¡•gf@d¸ím<µ%>#Zý/ÿ‹xÇè*®ÓÙïÊhIô è~¬Œ¡G½NÑ@+—g¿ÝìÇä]ôÜbÔFú-‰^ \Ç*Sß}~cûíû‡ýœs¥µ™D¬­ÍMÑǧڶ|/ñ›QýX}€®­F¤¡ü”±há-úvøáˆ×6wtÔMeŽôå¿hÁTêï¹+ÀÝ"}_ßù¸>Vv¾úåè±÷¨O 7Ñ›¢ÖD“‘µ‹2*:#e-0R-d¤zʬE¬Åž=þkZ“‘Z”ÐÚhÉ÷î„Þùá­w‹çym’VÖfýíUè(^Ÿj[ÜÖ7¢¥õÁ¥Ù¢Lì~ºùï˜Õß#úhÉRH†îTú â©úýM4M…hIô¡h'Ò>Ÿ®xo^N ´2࿉ö]/âûU3Ûo‚%3û ez¡{‹×y ¨ [ÀßÑ·ÕEµG‰Ë¸L|‘‘ˆ–Fœd8†3ÚÐÛ#-‰&§DòÊ,OžüM4·l¢%Ñ$ñGóä·Í$¬ÙélF é±µÎˆVv%Ín«T±òñO´Þ× ,í>•tM[léwPµÒ̈–´&ÍÝ–ýR£së"XÒºq]OwÝHïÎÙíBžtF°df®ÝjÑžá©!Ó-ƒÞ4ÑÊâj-m–®Öt t“þ}K+àÂ^}ŸöÔNö6Ù$R‚µÉ&­éß¾ŠSÜDÓ ÖDsm®½†m$:½Û»Úâˆÿ}‹;àòZ\õjmg×ôå¿hÉÐÈg+Þ¦?¸G:i²Ö–ù̺ûÓsèq9›>Ñ’ÖpÓi]¬cò ûuKvÖz9öT±œz II~\ôõ¥aÕ–d­ì§M7ï¨*tÓm ÁÚ˜ÑÁ²xA™q97Ñ\Øk¢ÉH»íµÊS­ÐÛ€Sm¢¥'ïeàõMwpÓ%XÓšÖ^¯ Gùb;S)Ñ’Ö$¤Wq4ºPE§ÕE´$š„tÜ·.ML.þ âýºµ'!Ökù9b+¢'•&X=è`ùY¿èýÈ–æ× ­ ø ›…wfE_œÜöÖ´&›¹¯ægŸ¦¹•í»ÆÃ× ,í{ƒl=Äf-÷ë&šNÁšh°Y-­ú\áeóÝÖìDG˜†éíÏ¥$´²aIÑk8¡ˆ•]Ûwúü× ¬Ù"ÚWvߨîßmØÃ~Ã7è[2Hõ } ²ÒÛµI½‰–Öæ¦è:ûyzº¹].sÌÖFü•rÃÞø,üð1ûZOMÜo/ =ÉþE+VJJr­cÛ…³ðî 1qÿõ}‹1áâ¬~U3oj'SZR;‰v'§ñbû'Dþë–Le’Ð^AÓ«ˆ…~ æü–´&%µWçú£Ý³þ¼m~ÝÀšÖ‹¢ý€¿ã o´´Z¡…i}Ü•.jÉ´ö»ÿuCKNFêÅÇì§‹•4àTš`mÀEûö~xLþ¯èZÈ K¢é¬ÏUëѳ¤j'•­ÌõâîÓ#8&:r©¢yLNhIt£h?쟶åÃ&ßsXò ‘ºtÌšv¯ýóÚõuksM6m6Û}ÚnZsª Ö´&›9×|ŒÖ»Íu£l ¥¹&›ØL¬vð“òukZ“͆Eïµ)ÇV2R#5Ñd³pâ[QÛNþé× - 8ÙÌO.æÛ¨|ûÅ ‘–´6²Ùì£ùœÉ! ƹ&XM6‹4¾Ú¼á›è4Þk¢Éf3öÛ­LûYš_7´2×F6[~:_öí}M:#ZM6[u7R}®ÉákN6[³ô¾Ô"Z?Kó놖´&+Dë±ñÆ÷î `<.þ}‹(Mn=š*þnïN¿ÁùoÑ·7ŒdhvœL·ñÄ*DKCN>3?éžùÔÒï&š¬B´"š|¾Ìk›öÔÁ÷2â›”dÍwlµÈOJÂ× ,­MJ²ÞÝÎâQ/¢³Ök¢i)¶bÓ~êåq›.ºDKÓEJŠrÑ£©õÖ~Xå놖D“’v[+*~ÊWoiÌâfÀW«ì”VNÁ’SºéžíYFíÝén¢¹o¬‰¦{æD8÷Oî¤vØät­67ݳí‡EûÙù$­¹y¬iM:;5½MKAüI?ùº¥¥yèž1Û9 7ÑÜùÖD“ ÏØ~€™E^šŒ[Kheižöï¶Úô-û Øâ úŒ”FÜl÷úÁ¶ÉGð„–Ô&Fe÷ˆQ‘'›®ÁÚd“ #Ø®M1™û'õåëÖDƒÎ^ñ¾:e§¥$°&Ú(z´öªG©Îõ)” ´4×›¢g·Ó—|ŸÂ—›Ö´> =£î™ÊÔ˜ð}»ŸTûFûpuS{ðÃVÔnÌ h5ˆÛÖ½œ§4¡…ÉnÌ h5¾»U9°òj:¡%Ñ¢#«~peÈKÚ„–DŠŽžÇ,•ðÎRÒÚl!Øä\ŠÊדÖ,…FÚúöcÄSŽîmÌŒ²–ÆŒnÊÓæ'>ùþŠ‘ý ¬iMBŠnË~à“ýZÚ´&!ùÆåþ–ؽñ'¸þëÖ´&!™{âÿ܈HZ§ÕE´¤5 ɺïë·\^“&°Ä…Œwt”QÔ{‡3õ{xù;úvDN±Yœ’ä «š?`i²w½kÄê鯪L†è~BŽ‚òóbªÐÊÂèú¾[Ä“5º¾ñí%5S!î>[Ô“REO²Ášèôá~HžuèÏØÏÞ oÓEJÚkìÈ#”'› ¾ -Mv巎ܪ î$`m ÷‰b£ÏŸ’¯XÍõqª/L† ¾›læ8:Š4}óJîÑ 3à!RWÊf¨Æ›1c¼vKcvÈgî ïÕž¸nZÓ] ZÒšŒt¬Ú\r”z=i¼Ö´#È¢éUïÒ˜‚˜Ð’Ö“¢ÝHjyªwÍ„–D/Š^}ìóÁËÿNZ-‰6ж9£[³<×I2ÀÚ\oŠÞ;2‹ÕS@+i¼ÖDŠŽ2Èý!íò&ºS4ÀŠèΜ›¸Ò˜Óž÷os &Mha®;a£°Ñq;•÷Üh¤ýïžû}K_äd×AÏ[§3RiBKjwŠö…Ù«|BoŒ®O`m²Ig¯²$ó­)›hIëIð+ê¬Ê1zƒõ}›l’J«Ãâ©>$¤Ç—VüÊ^’è6þmb%‰Nc°&šlØæ¯^¢—ÓÙ?Ú*~Ð]zØAbb¢Sad¼“ͲŠ|̬„–DÃÁ=žrÊCµƒÛÚ„““ÀÒÚdhåè½›M]ëÝÐ’Öd¤¾–/0“«ÄÕ™ÔZ8€tFöð Ë@’íOI7Ã÷¾ðäÕ8ÆA ,­.æ ç÷ä çß,…˃`ÍRèžùd¯³¾k\+¢+·.‚5ÑiÀWÔoÔ+÷´y-)wìhÝ8?ð‡{VhI4¹p–qüÿÔcWc–SKμ€1« ÿSdÑ\™k¢É…¯Ú+[ÏhëY6ÐÊ€7ráô#òÙú±«3Ö;¡%ÑäÂyZ9M>l6ö•H`mÀÉ…«t‹_ Šf•ÑÖD“Í"ÑôÄs¾*šãM°&šl‡×OÈ›4׌µHhi®Ó‡¿bów»o>·'!-[æƒÞô]“»ÑÊ®ÉÐüaµNû ®3H$¡•1cQñÁ¤{ `îݘu\ç¿Aß¶{’¡°×ó³êJ_´2âŒÍ~Æ=¯ÖꢧÁZ ,y,ø?lm?Ñ‘šÖÜs‰–´&#EöÈzjÇtÑÚÒx¬iÍmsW÷QÙæóÝy±ó¼øwô-›#¾ÛŽã½´ÀÒ/ -8¬;×~ˆx¸Œ8+ $°6âä3ÿjëåáfúöFÈÉ&XÚÙÝOÝS?$+õ_;C¯ŒTÙ1¡•éb^À8mùäë $KXš.æ„C»w“cÜ;3ñXM2<ëÕIJoIw†DKÎ¥ b{}Š­¼eÒJ‰–DÃÌâ5x­—jë ™KheÓedÜgœ>õ(ªÆºc -i½(Ú×GmzØsczBK¢Á…³ºoV†\|¸3N05 ß]ÝB‹\^»3v,5ч¢ÇlÖ¦ìV66ÑMheÀØ?Ý-ôãÃïmØ” °´0°:ELg%ùQµ³º]B+‹‹A"³µZ˜›.»}BK¢;Eû±·õ‡“ê-Ö‚fF°6àd³æ'§óø|Ñš; -iM6{•û·ª8]Zf뼊úõ—¡ÈÏô-׈ks9¡ùAY®E•J‰$´dâ$Ã(øÎÃ3öÍÎÒˆ¬ÙÉp­SÏ–#ÏXÍ·ÖO„¸ÈŒÄxÔi±ýT¶¦‹Y› -M©ÔÖŽzŸòÃ(˺&°4f;i퇀3«£Ø™;™Ð -ìšÁ±¼ôÀ&Ì]Ý[8úë=«'°6fä³=Üqz ogJBKcFßÎOÈN zë•Î> -‰¦owüï;*²ÈëƒDL´²>øààsNÅ3Ä[Káqóïè[Ú&GütÓoÅ[:e-©M>‹n´~|ÕŸ'-M6éìpÅåZ9XÚ²Éë”((÷Åë¤áÖDWŠ®¯4õ¢ÓÂXÝ(zÌq¢‚<×›²VæšÏt«¸ÎÖõ_” °¦õ è½·;wú­øL²VóV-áÒ>„×ßö¸â ,íÌ X±ùDÃLY4•&Xm ]ýñÔ¬ù†ÞüðÈÛ>0ª¥$Ñk–r(:îrúÓ¾YJ’ ´`)ƒá«Z¾÷òû ³þXÑz°àÿzù¨M_nZ“ˆ–´n×½ýÃíìÍÉi40yƒ¾¥C$µ{k»?5ºå5s ZR›ŒäK«ø.¢o÷ŒIhI4ÉÇ ²Áå݇Q" ¬Ù©»g¶ËSEó›Ö8$´¤µQ´ÿ.kMM*è̇K`MkÒ™ûfe=U̼‰NJ¬‰&õµ—OnfL©NheÀ™°ü»{o[Þîwp€%­™°Fm½üÄðjZsq-iMÿjŒèÝõÁéžy² -‰¦å>øšö”ùr öæÖE´$šl6öpÔä­‹ ˆ ¬Í5ÙÌ‘m¬‡äù‹èä_¬‰&›Mwã »>àT›hiÀÉfÓÉ­–®rø`òIkZ“Íæ¬Î K%Ò¼Û¬‰&›ù‰Ï W×îŒìOheÀ¸¼Ü>þ3ùj`4ÄѾAßXvFÑPVV›¼ -©M:[ÑcË5ƒù# ,M6#û×2ߣpoZs²‰–´Nn3åÓËà zD©×ùScN³ôÝkc–,åø†}ŠZq¤€`M4ÑÖWãûØ%ùñ u]ß oTJµÍY½=¸3*¡%S!%™¹kXŸêV^D³B]B+¢YuíxTµ§:?7Ñdb¢%Ñt°v´ï=ršì`TgKvÆÈ~w…·ï^ûƒç\-iMFŠÖ@kÈÍœFMã °¦5¬S[ÙcÈ…t;ccZÒštvF0©ž7Ó™K‘Ð’h®ëccõÊ*¥7Ù„–DÃÁ²R¦{×]ß}Ø0&¡%Ñ›àh•Yô–®£#úë úÆ…‹j÷Ù÷ù`ÓåaB+j4fs·yô^›‘–µÿоm j¯¸^þ`ay‰„–ÔN¢}˜[®Î=*žÀ©08ßÊŽ+á‹ °&šèZ£Ì44¼lP’ÕHÛ\O;Èmº’l ¥é⩳Ûë’^}(hI4)©®žŠìÜ1É6µéÚõSlÈDœNm ,iÍøzkÝV¯O—P7­e­hÍøzkãÌ6äÒzƒ}#XÓš„GÕãÞ¸®57/¢%­IH½œuHtÑ\\DK¢Ew7“}䨃Á> -‰&›9F“7™†yTM`m®Éf}»}èÎ •„–´&›9µ2]oZ§©XÓš6:‚ŸŽéON ¯ƒ¾E\“Μ#ê« ˜¨6³6XR›áõ•_lèO›ƒ"Z™l{[”;(öæ$ùv«qÄÿо¹´¤Ò±,nóe—vÔd+@Kj“φEǘ-ï]=ÀÚd“ÏÆ‰¦=U>«òÊ05Ñä³%¸ê“gxp.m¢¥'ŸÍÞç+h^ÕštF°¦5ùÌ}áQA²h..‚5ÑôÎâôñü:yp¦ &´4ळ¹÷ZzüÖ`ÈuKZ3¼>ºFFâ|•ÎØk¢I)ÎÂ>frÏ—|Î%XMï,^'ÛyŠó¸Í5íŒhe®^oË"±ì)ÿý&š“M´$šl¶¶›Ý–‹\Þt&°6àd³È?Ci¼ÖD“Í,J(>>–]œiÍ - ¸ep­È1ÓƒòfѳxÙ£I4ÀÚ˜‘ìUpS/80˜$•Ðʘ1ÄÝlØBôèú¤5À/§¼ÑšL¶£BЮzQ&†y$ô>ü¦5 i»‹òj} iJÊ&°¦5 iÏh„þÔÔâ¦5÷=¢%­i({õU: ¾[ù>oз#=¨ÉgUÎ+ë%i °6âd¤(Bbµ©Á¬©¤lk¢¹@ö‰R Ȩ~whÛ›#þWôí%{À©½ûRO²e$mBK†F>;£Ÿ6Ÿí&šƒF´"šòv¬÷— Š̺IhIt›õç!AÚ~ãîž´Ÿ›v•Ë¥Jº;"V^WbêÂÄ€„VvFÈﲎí¢?C¤;õ„–DŠ>Çw.ø¬šÐ’hð®mûÚ4¹ÈÃ8(ö}ÛÀ¥¾é·Ó§ â‹Ú ºNhIí$zE‰Þƒwp÷JhiymŠ>«îR‡.zQ4Ð’h®.?húákÊ{vÚZ=_¿ã¥ì|9د&¡…¹žŒ¯ßÍZ$‡É[6ã%XÙ7'Ÿ6Ãê~Ø•·lÞk'°&štÖÎ,gﻡÜDÓÀ ÖD“Îz[Ûú÷-’bf“QŠ -™Ù¤è q[ΰšôÏZ½(zãgÝÌÈákN6Q·º=Õ@¹iÍ­‹hIk²™Ÿƒï³uÓúP2ÀšÖd³ÑÜoYEͰê|¦K`Itb…Ñ÷<ÓõÆŽV[¿»æßÑ·—6.ìhnzSÁo“M'Z™lÆ×GuÔÓ¶þô?˜É—Ð ‰×¤õ9Ë™Y¦3Þ²&°6Ù¤3Ÿ¼ð¦eçÍ[k¢IgÓw€×‚“çšË‹hi®Igs:½Íïc²t”$¬\#ÍšÆ,rÈû–}Òˆ¬ø]]GßnJé,Ìøg6ýøÂ[än>42¼}9 mº‹3ž¼œË3 =¥!géü1òõ|mÁ7Ý„VVvñå\xVÓÏ],TÐ’hòÙ²bg/ye÷$`ie3À~G$’uýú,ï?D++›¥óݹêu6ýja2ô,¡%Ñä3c ëwð-·˜GU‚µ'Ÿ™sÒXr ÅžÎk¢éžÙŽº®OonžÔZpºgvl<æ´Ý(…Û&Á¥Í¶ŠO˜î§¤-›hEkço_›µM½8Þä;]BK¢Éfû¸GÛŸŠEߨŒ‹‹h…Íœ¿£CÏ\r’í`íÈ–æšÁùûŒ:šoAºÖ´p¢%­ÉfÇ­®—#sx²p‚¥uÍàü}VÄÆè'¾™”XM6;gî×ÑW¶p:XDK6;¥ÄãÒµÆÚJ`MëMÑ~`´j2M†˜$´¤õ¡hÿëÚú»”–´fÝü'ˆÚõZê“Ñ- ­hͺùÇ)8xáwq½ó†uªù»ë¥ï W&´Â ;ˆ Ôó»°ßÐ [¼Aߎ´Òƒ§žLZH`‰‡Yvÿ´1Yú¥7ŸÖ¬”ÞêŒgì_+}wôxHxƒ¾½€ÐL[îëSQÙÛ Ùür ¥B6l~|Œ²Ëòˆ§1XqÚYó…î{ÊÝO¹‰æê"XM6Œ Ž>ôM—ÕUXͼ€p¯åLùMv2þ+¡•¹æû8‹®užîn÷ìô6Ý¿{ºq¼}8M…héÃIÄÝÍnÿW*Óµ“ÖkÓEFŠÆBîíé!AL`Lhe`hÿé;ºÜôe°˜TK<ÌÐ~wh;öz’Á2? -iÍ}[Ô”w¾‰Ë³7è[iaøïw&Õo‘X33¡%µÁ ‘ðnm†ƒö? }³R®l?$¯jzeŒÁz ­¨ÍÒùgÖ1Žúq“ŦZM­ý¼¾?hç”rXZ^ɱœ¯>†U‡`=©„–´&ŸEe×T—=âÆì˜u²ocÆ}“`mÌȆ~¶·:õšgƒ…°Z3øšå;ÄÛµIkùRõÙ’wô–ÐÒ‡ÓÊZ$ç'TPÚ7éN,훌í?ëX{μy Ü7‰V¼Æö»•…áÉõë;‹h%°¤5cûO$Yu{:‚Ü´¦‘-iÍ¥iq©ÝôËœ$¬iM:37•jú%mZ\K¬ÀØþcfq·¬‹NZ¬‰&!í²ÌMT&¤Éäâ„VÖuÚvõ³¦¡øý;B2”š~ƒ¾EQ%µÝ•^M/ 8™{™Ð’Ú¤³(õ6§^B%ÚÖ&›t¶ç6ßäÕu’h€¥ÕÅÌ€ãǦÚkÕÏ]3ÙÐ §03 ú+´Ç C·çþA°4àÉÓ8½ìÕõ¢Ë“9ˆ ­˜3Ž; m²È;‰á‘|ìžx•OmÌœI`mÌþ%Ãù¥w |<#€ÿ@Kc6)ºÏY ¼ ZHèWÔZÓ'û÷Nþ´ôá‹¢ÍwŸ*Düæ¾üÖ¦Ë(zïbK_]¿œòX½)úìWõ0Yt2€5Ñ¢k¼zÁ‚ßhï?À’èßœ„@²G]ûýÅÌGœhÅÌ~sUÇÔïóÏ¿9ìoÑ·è–4âiézW×¹Ò-©Ý!:®äËé2•¢RO ëp7EnY6~³Wþk¦B÷`ÙìúuÌ™˜¯¿£/jRRcœöÔÓïvÒåÒvCÙë§½¶4Û–ôZšíôáÛŒå¡?ÝK%,9I‡\Ú"ü¸ ]tR`MôºÇ«áèoŒ74gï%áŠîÝñˉ¼»UH‡þÑß‘½Úòš…„F°²¼ÖoJC mt³<#%-éúMip°ó‘¯¯¥Gýÿ@KN6t#Ym艶Ó8âDK¢éF+ÂÝ£åOZ- 8YÜ—¹Í!{X³rÓ%X33Òw‡l½”ûLŒD´¤5 iFAÚ®7؉‘ˆ–Dïž³´’zãk¬r°wý}»àîãžy¤^Ê“ÝháK“]IgsÅãæC±›è4×k¢Ó‡·Ú®o«’‘|ü}¥£ã[Zà !Z¡…JFЦ®½ÊÛ³sÌÖÆŒŒ´¢qå2=*¼ˆ–´&#­eq+¢¾þM.$XqV%#-;ç”sß°o.mR`M4Éj«k~`fÉ&Zp²‚Îg›˜¹`ÍÌè_™ïdÑ_HךTJ´¢u#!ÙŠ¼º™¥#ÁÒ\7úW»¼R|eOcU^¨-iÝØ)f#yò¶ŽÝçïèÛcíl÷Úúyºh½©M'ZR›tæþшêHò¡íp Øæ#3å~´#)Áš© ÃÌJ)M³´e-ÉðDjò;ÊŽC&XÓšdxzLÖCTéíìC&XM# /~íýÁ€óìC´4à$ÃcÓÏÙì/Z.l‚%î$ÃóÊJ“ûÓÍ™”Xl4ZSLT;xÇHK³–½ÔŸ"¾oÓNIheºz§hßâK½)hIô hçÿ5Ìì¶>&%,­žÐ'†¡ËW¥«¯ß ä ú¶TªíK»=ççÏ/ÿEK#Fª1_}<\åÜF;vk#¾)ºÏ»ˆ®5íŒhIëCÑ~|t:+2-pq,ÑÂ(½â=XÎå›%) °4àƒfV}÷hãé®ó2à£R6ÐÊ€ÒY ïîÈõfÅÀšÖ¤³Ö ÇSS؛ֲ–´&5+­·§RŠ·Ã&íŒhå6†Q!â´!w2DTè`ÍÂá_Å»ÿ>? §šÖ4q¢%­ÉfN„ýüÔ¹–ÌŒlF°ffd3?>DÕLý•Çû„–´&›e«œn4+E¹à(µðÎO™ßßÑ·ÇšJD©û|7yÐx1‘ÐÊ M’¡÷ªO ûvo7(`ÉT&É0B-þ “Ds·'XM2œ~ÆÞûOcpm­á$ú·ÙîU×:IXÓšc6›sJ׃ûפo÷wôÍÄÓˆv¦é7Akrë#Zq²aTÉ>ó©*ímuÑÆ‰–VÙpE»š®'Ú®ÉM—hIk²¡{zl.g:eS!Z½èÛ¹½³ƒüïd3‚%_ôÎV«®ˆ>~Ç⋌´öôÅõtÅ{³,hi̸>–÷kÁ©c–$¬)ê¼^sTÑôÎÖDÓ=³ÖÇ+EBÍ›`M4÷\›íìÒ?˜k²ÑÒ\“ÌE‹¨Qëtþ XÓš„d‘‚òx†¸iMV ZÒšÓµKYgŽ.ï>Fëïè[¤ÕÞÍÖ6“³@£-ZÙŒÖ^¥Ï¡WY‹Î8Ñʈél[ñéz(¹y³3.l‚%;3Ò™»Guœ‡p‰Û¹+7ÀšhÒÙ©s¶núÆ·èa- 8éì ß® —~ïNÉŽBTûê4l›oÑàÒ¨Å%ºå¤ÑÅ›»„–Vö¦è§t=nzÕBÑ@K¢EŸQý õX ZHhÅÆ7¦Ë«x ü`À«‘ЊÖ;û8æ+Tvîv㇯¨‡ÛäÐÌUe-}x§h¯8ue …`ie3+¡½*7”O,…Z-Yʤèî¿õ¢Í‹÷1 - ø¢h÷ìqÌnZ“ˆ–´&!õRKíßt&iÍÓOBKZ“zíóuá,^vòô’ÀÒe'/îÜîq5ݹ;pîÞ o't.ì‚[O Oï“ ­Œø©=W·úÐFñ6â’–Fdö\[i1¾%K1¦´9Gs劼ó1ò9¡…ÏxLnq7pÎ|oÖ¦13ÀÑ~îj\'^ ZúpòÙŠýöôœ|M#%ZM÷l5«ÅŠê®B?ž`ÍR&ÑóD;Ü¡RiÄâÿRéßÑ7F¢kèè½ëSõãÿ¢-­¢¥'#­¨Y›lg Ð’h2’OÕœQŠï&›N°6Ùd$ë패U.n )FÞ×UŸ~j”Ÿ²_žÊ× -P©1¯ ™áç¾ûÝÛmïâÒ$XÙ»ŒáHîZ¯¥ÉZ¼GJ`Mtð³¿NŽ/k¢I†»lû ï«FÄ× ¬‰&î7­OùÅ733ÊZ23Òv÷)»o|—¥É4©––&“ÚÞ%äºú)D+„Ĥ„ö*ïÚžÞ.¢(’Ð’hráñó}OVÍlsÀ ÖÌŒ\èeÄ.«™«r Xšk&%8³#Wðš;‰XÒš±âͶ«^ÓÖràß o׬iÄ͇­5ùùÅjþò_´²°謗êÿ;zqWkð4Z1qFÇôÒë˜Ýt˜™QÜ;x]¾g5Æ &´4f+ƒíT=‰$ºþk*oз¸é4_¶Gzz#'´¤ö¦è}ܳ{¸¹-Î4fk‹óPôñ=»ËµRu‹–D35 WgñöÓbHÍñ&X])ÚOº­É«nŠX"bæôÚÏ·÷¡j͹&XÓšî—î4.GHß!Z±pæôêþÙnUÞù¬ 8é¬Õ²îå0Ù5¡î‹¢G}=˜¸‰ž ´$Ú(Úlý§ —4àIi€µ'›µeÛùP½¤]ië"XM6kñ ¢âêC[¥Ûd“Ζ&›¯ˆkÿò&‹N°&štæ¾MeåK´ŒZý×uùyÒø<™Ð 3+¡ÖzÔt¼UH K»CÍ»{¤Q³@¾ÊI‡ˆ„–´&Æmþ^OµFo¢Ó€-‰&FVí‡gÕÛ€s Xp’aøáwCªhÜi$°$z’ gÜJüwU–f§kG°´4™VàçµídvtÑÜ}ÖDs}ø¦9Öèú½öD üô-l:øÜgÖõà”^L|¤!ZÙ~˜WÐ{öyJ¾í|tîˆVV×$EÂénò+xª—“Àš‰sïŠ~™§/ýŒÍÌG·¾G‘ýaF>'°f¥d¤W"y×/¡’ŸB°&šŒ´¢Oõ~*nq3R.N¢#e¬__Ë-¼ëÎø–´^d¤á[¦‡…CRZÒšž†³h}yš²hªM´$šÞ™Ès}À Ôšh…˜Và§Ôá~º+>I DKZ“¶Ÿ_Nûà´τ–DÓ¿ŠWˆýs7 Y8×Áš…“Íö¬s?UeºˆžI4Àšh²™;f¯’ϲh)Ášè4[ë8!Nýݱ‹ioзí>MöéÕ«¿Ÿ0â.¡;cZA?Qä)|øfgôh –ö\¦ôãŽÊé[¬±äW­pŠ%ðص5Äu¾Ûî#šõúÊååèu>±ñ“?ü_°dãÌ+ˆÒ“õL9ah-ºvk¢iâç´iå©ÐÏÍĹ´‰–L>J¥ì§ƒîÍOg˜Ð’mŠv—²Ô‡0õÛê2JX[]‡¢Ý»²ŸòFšÖ‡²V´fh„™ïh®'ß§Ð˵M÷תþ`5a¥ -}x%¸—ÞçÖO;}xDp§µy3ñMÙ@+&ÎÄ€QmD°¹Îâœk‚%;cb€Ûˆ5W—ï%fp€5Ñ“¢Ïþ·Ë$:7Àšh²B+¯½P¿¤ÝxÚ|ƒ¾m \^-âæûæL_´´@Èg-Â:·¾w±ô~K;8vŒðæeѤR‚%Ñ' øžÎ+Ks¢c™ÐÊÂfbÀè5baõìbc‰í„–D“Îz¤&›^sÀ<–Ð’hÒYw ßõ! ÷6×o‚µ¹&u›sëUesXM:‹¦—»ê1¼yªÖDÃ;±Ìù$Í5cÜZšk.M߬·ó¡œ‰agƒIÿ޾…úqÄÃPfy8¡_FœÅ‹XqÒÙ˜Çɹaï><¹ÃZô‘—M…ñ_ ¬|ø.Iííȶœ»š|ææ£vôËV(JhÁÐ6†{½>q¼­”`mÌÈg³m_›MM Oé ¬‰&Ÿù!9ž¢õ „é - 8ílÚl~xú—xã#m&¼AßV6·ìõž·Þ 5åŒõ?ËV‹Y³)X›/VW·HbÔïxÙY)¡¥ù¢sÍžýЩ’Š1­ 5­É†Ë†Eï1Y4×&Á’h&DS ? Þm wooз…M?ÇiÙwm½‰–1«-¡%µékì(WÐå©‹]cX9¬îš´n;yõí‡çd‚µÕE:ÛóøþñäkÜLœvF´d⤳u†œ%e¬"ŸÀšÖ¤³íƒ6~ÊH¢Ó€,‰ffÀØ'¶Ù3L‘æ ¬‰&ÞÖú„I“WJ´²¸éì¬Hýj0tM&%ZMßîØ¬}Ëm“óœXZ×ìV0NXé”ËVâp‚5Ñd³(ìÑ´ªètÍJ°&l6£se;E&Rfü$°&Ú(ºù0õð/ZYk¢7Ñã´JVxçL7´ƒzƒ¾…Ì5ªíßíÕÕµkÒheu1«`Æ:ÿg÷‘D“ÏZ])úDÕC§ÐÛd§éXšl†”ÎZ#3ð¡5ÞE4Ó8XÍR[¼Ý sÿwÆÄ€YGñCÀ–_~RªÒ¬>Ug} vúp€5µ“èíÎuÕƒLÒHB+~ c®guvê;_9 _7°´c3­`F”^õÛå̓nBKZoŠŽì÷Ǧ˷…=)hiaжvV{(‰~33.l‚%3cZAD¹§?EoØ'´¢5»D5sb–Ÿéˆ'°¦5鬿àò+¸±¾]k¢;E¯xbÔϹ›}_Zpra?uEå]4íŒhI4ÙÌæ]/_"m^å$´²®™0Ç*QwY·pæg%´¤5Ùlœè,þÔÑü&šlF´$z'ðrvÊeËö wöwô-Tƒ«+ªÆ”Ÿ^9Òê"‘,­.†©ÏðÊSãâÛÖÅÅE°´u1r`Æ…|j<ùÎO™È’zƒ¾ù)44_!ñ %‡…î’ôZY^l80í;JUO ¯ö¯X›lòÙ|½co9íf÷dh@+Ë‹‰sžëC¾Êa‰ºÖìŒ|ö*‡[Šüö¿YU#¡¥¹¦™­ÑýìÔÕ;åÞ'°6×ôÎÖìsX“9%m]k¢éù¡9Â%äü¢•gVÁ´jý4½µÑæ•aBK¢é™¯Ìþó¾(-®dâD+‹‹å#§¹™D‡ùÄÇÄ€i¶÷+9Cþð$héÃIHvJ*§2+pÿ Xb&Ìí?ØCÏBßÌùLhÉRHHq!mËdÑL¾OhI4 Ég¾Ïópà» 8XpÒi>[ýè›âZ23’»Â#JÈ¢šÐŠhFúÍ/»|eÌ~L`‰†™0Ï™Q…^?Ÿ§É&ZÒmÔ€÷3À«ß§\éßÑ·Èn&ó¨áõƘ…VÔ>L*XÓmñ°¡ÓBr Z8Œ_î]9é¥;q)ÑÂê:L*X«O÷§«þ´™lœhI4çzÅb?l÷·ÕE_`euB2\f­Ôù˜%•Ð’Ö¤³å~¢o÷ò¶™6>‚5 çb¥D}¢_ô››…SxØü;ú¶J-ÜÏSfÙmuÑI"ZZ]tÏlœ6 ¢_D3[(¡ÑL ðCj”…¯r}»Í`Ö„VìŒiË©1ÊhÉ{Wrr–VÓV´¢=uÉ÷)ŒÀJ`ÉÄÙ/`íÚ ».šëƒ`M4élînÎSñ¯Û§+ê$Ì¥ØÞÌLhÉRH†¾!œÞõÀ; Ñ’h’¡H¤ŸÈ¾€X3RRÔi].v` ÌL`M4}»3ÏÙ12!q Z"$r¡ÓI$´©ëc—$`i}0§`EÈôîòÒLY€ ¬‰ÆâŠf56÷S%«Û€CvB+Ψg{=”µ‡–É7­7%¬iÝ):j˜˜ÞÖ(ZÒzPt¸Hí¡LõEkv H`MëIÑî'´VuÑiÀÖDƒÍ¬Ö:Ïz:üwÀ3tZpK`‹‘_÷êk×àÚ½Aß¶®EÙm¬¸›Voc› Xµ:ÍÈe“S¨¸ÕˆšîE}°Ú58À‹3©À¹°ÏàYt§h€5Ñä³z†³õ£›ÁÇ ­ìØL*°V£Gµ©1=›q‚ ¬iM>kŽªËªh–¯O`M4ͬ ߃÷CÓ°›hÎ5ÁšhòY›¾÷-9Qi³nk¢Ég-Þ›L~¥ÛÌ)H`‰J™S`-êqØP ¨lÖìO`MtF¯5{Õ¯¿:¢pß o©ªð ­×柮ǎ¥ó}B+;“ ¬‡™>•Ú¹Œ8ËÛ%°4âL*ˆ´ûˆݳ“¨”hIkÒY—ͪÇA¶?IhI4é¬÷)×C§ÎˀϤ4ÀÚ€“ÎFü=:ª¢iek¢¹ ÷œŒ¶ûšŒ4F×hùñþ0l-¡¥é"#è~2bB/c¶’d€µ1##EìØzQÙü€7è[` ݳ±×ŽÞªúˆÓÃ"ZqæX4˜ÛO¯“·O’–Fœ Ì]Õ:zŠ¿sJÍjÓíl­¦>EoV¹N`iËžä³9‡­ýPÅ÷6fdq‚µ1KZG­è¶u*MNÑ’¥ÏÜÃiÝ–Ìg¬ê—ÀšÖtÏ¢ø£SÚŒD6$ZÒšd¸Æè¯kQkVÖK`Mk’ár.u'K¾Í?-ÉZÒš.’{öÜäíæ"qÀ‰VÎ>L*0‹r„?~$ÑéZƒhE4“ ÌÆª§<´¼Q ¯r–(%1©£ÝqYMÞ±Y‡7úŬm=znne °öá$$‹¥í©qËeºߘЊ‘2©Àüì•HtVH'¢%Ñ3£:\·Ó…zioз”„¤v Xëryî“f›hIm2Òö/woO„:luÐ’è4]Ûi¥5¹—íYtÏþ޾å$’¶ÓÄlC¾„ÊZ,-/ÆŠ[<‹¶ù” ucC./¢6dZ(ånre½Í’5 ,í|L+0ƒSš^>Ÿ~ˆVìÌÀg»”êvªçc§CDBK¢Eר»l²GK¥X3³„šþ¨ÛCû·oõóu ©Ž£½Z3£hó 0ý•ïð€ŸÐ’høH»Fø„­çî&š#N´$úPt¤¯úàkÜXFJ´Â ŒìßÕF·þÁúàµFB+Z3²GK,?âëÎò -‰n]O¯]ŽQÜLÙI`ii2²ÿµgîÕ嘅û鄖暄Ôvà3ÝÌxÆNhIô¤h§ô©·*H%Xp²Yôß6£ê¾Çp‰–ö=–.ÞÑ=¾RÞ99Œoзx;N¶ï»öN›ùË–Vé¬Ïá›ðWW"R‚¥ÉfàÙîVË`Šî»/baÿ§¡oÛ$•@Ï))¾r¾n`ÉÐNBï(ÎúÁq“±ý{DÚgyºœ¾˜J’M´b*Œí÷“«3Êx¸ÁºÙ d€µ1#%¹wÕÜ—_ËÒú XMJ'x>¸fhMBKN+*нHéf¬xkZÓÁš¥G©p}¿gÍå„–´&#Elÿl]¿šNëc®1ÚyÚðoû&R¢ßºgÓfÔë¼Ïõmº¸>¦ËEÓ=›Û·û*/Íè·ÖD“I§Ï^ê¢{}(`M4çz5ßPÖзMF‰$ô{#4Š^5ÞcÔSò÷t}ÝÐ’hrá²È}‘ËÄ¥*& ,ìØ.š\¸bqî‡!»Ì5kÎ$°6×–ÑVçxèTpC“ά.§”§Ç€ÛtqЈ–¦‹tf#ÚRõÞîÛÄ¿nhE4ƒówdž§.º·éâÒ$Xš.FžÚ·£©¦ý;uÇÞ oÞtšl‡š^éC#Zq2Ò.­-“e#¸Xq2Ò®ã,““+'°&šŒä^Nõ¨÷˜ ÑÒ€“‘œV_[f$Æ”&°¦5½³SÜQ)]®¿’¢Büca«7¼‡…¬XûðÑî ãäô÷“®£qÿ}{žäÚŒÈLÓÛ‚Ûø× ­˜ Ãó÷±ÝrÔ“Ó·ÝÐ’hºg~ÜóóâÃÃÏm²I K“Íð|÷ôzD›Ë‘´‡Å‘Zñ‡žëã£øá•$,9* Ï?eØXÖåHZvÆK`Mô¤hÛ#ŽÙú€OÊZðEѧÌÞšºÞ^ %¬i *=1}÷‡Ü°¬pjk³¬§8õÛ˜-ÊZ³CÑ}ö³îÍ{í–ÆŒñõ§ÚŠÎDºÖ3ÉZÑšñõ§•¹#[Í€‰„–Dó»[tÕÓ:ºÿî>oз݇#mí1Nä¦vç—-©MFjÑùËôBî'-N¢%Ñä”fÓvGÿ¬wû}_ñ¿¢onWv$X•"ß³ž‘`içc„ýéÑ}>ûÝö{ÑÊ~Ϫý§¿¦@²bêek¤B>sŸ´íÞäM—÷v ,‰f€ý‰R »<´¹Ýq® ÖD“Ïú®fEo¨‘‚®ýœÛËêòãÿaøÖ>œîÙˆ §~àÓTˆVŒ4­®ÑWºÖ·lFØ;ÚOªãáŠ÷¶°-‰þK ›eû}îv$«!ßñ× -Ht˜†ûÊ·c†~æoÐ77‡+{Fšî–c¾Ùð놖Ô&Ÿ¹f-E‹¿™l–vM`m²“Ö­wëMM"9¬¯šÀ’h†ç?uù”}°0((¡•gxþqÿ*B¸ô³êà†hI4iÕek}à#1˜)¡G…öÇœH×-<ÙÑ’Ö¤³u‡\ö0?8¥-€öÇšûÔ¡^ž%°&š_”ôØû¡ÎÏMtšj€5Ñä#sç|r 5nñ}ÛïÉ)æTè†*­9,„•Ð’‰'Ñm9äÇ›Ãq ,8#ìOXÊüé¾¥ˆN§6‚5Ѥ3÷ÍN¦ŸtwRheÀžv´«iE?w1D%¡%Ѥ³U†|µpXQ0µ'íÖ–Ÿ•Õû¯³’Òk¢IgÎÁg¹;Ýa¥·ÖD“Î"ØnýÔÕæúûqó놖æštæewðï;Ä;ÇeûmmÌ"?ÔÍôÝKNËöûhï9†i~XÏ6%ÑŒ¯â÷Q¸A¥áï+Þ¯Z™.Æ×Ÿ³¢?¶\äá°vXKFú_¿þ¯ø³^õg£•ÐuºÍ?TL»}ø¿CöXûðNÑc¬~Ššñ}-þuCKÓ5(z.÷¯JÔÝè,i °f¤é»mÕøünaÛ¿—goÑ·É^T{[­KÎÝÿ^Ù_7´âÿÆö;ØwŸ¸ýÔ ¿×• %Ñ›¢›™;¹2.NÁÚdŠî§¹Êoè¿[À`Iôol g”f’K‘ Aë°&ºRôòý¾ÈmØÏoÔ?ÀšhÒY=}EA]ÝÌÒd­˜Ù&¹Wg«È=1^éB_7°¦5é¬õUÇž7o·#6Y¡Í~Î0ýÃi¤k>)ÚÏë|pe$$¢¥éJZ»¶†\pí×ÁšÖä•ùâ8¤j½É…DKZ“ ûˆ²Nr­·“Æ›`MkraŸ-¼qYôo*Æ`IôICæ'ÞäVkŽ&9z¿öåéªYö¿heºé¬û¹èÅ'ÏoVÁ`mÌHg£­e[îúòÍÃ_7´¤5Épô±ÜV«·8zÂEú;úæ"ÑJG¸é.o›û¤ÿk#NFQ*´¢&Ç;Ïó冾ýäXûpòÙ¬½õ#çò}o^_7´d*ä³éGä8âËZsï"XÓú$ô¬/'WtäëoÑÿ·èÛd“’æõUN_qº9D #^K½çÞû©øËMtr %ÑdÃéÛÑîßå‹¥ÉNÓ°2Ùµpu-?ÌÝõ“Sâ¢%­éÜ­¾—K#R¿Ó ¾n`Mkºgî ×ÙÕ7Ùï´‚¯XM2t.Œ''=Ê=møDKN:s—ÒmTnì}ÒÚ"X¹©…tfÍ÷õ }»áâ"Z¸©…6j¾6zÃâzGg•§M›«õmúÕ[çt­|x%!YT¡¯à›‘&ÉKÓUIHÁ(Í(îØÌ!qôŽÐaâ#øwÈ× ,­®J:Û#ØñƒŒ†Ã#:ÑÊꪤ³=_¥dD?å;åëÖ´&ízM¼úÎÄøº5Ѥ³}¢Rµ\UãÛ3üº¡¥'¾šUÈK“vF´´4iáÇu)ßgei68ÁÚÒ¤4lýƒ·€A;#ZѺ #5ÏFý •NiB+sÝ*Eûñ¼=^ÞDŠZÝ(zͨƮ¾‹~ÇÛ}ÝÐÒ€wŠvçjþÔ’ÌlQ2À’™µ‘Б¾òÔÂä†!…·µÚ\ê3öw¨ß× -Ù¢èèdØ‹Úøþ;Ää놖DÓÂë°óêÌ.ïëoåý·èÛÓÿ¦Ú3<´"†K|‡öÝÀš©Š^½5y÷¡•,í>ŒT£±©ÙÜßiN_7°&šŒT÷ð“×èßiN_7°&šŒÔœQöD»ÍwÞYï3Ì\¯»!õxÿ›Vð} ÃM_>ûŒ  •Ækéür wôŠ~ªmqM^ ZM6ìu,ûàí¦®¢%ÑdC?øt+ºgØi)kVj=çS÷*½Ò„–´&ö½Nzšm­œk¢%Ñ$ÃQm–¡_`ÕĆD+¢Ép4ß=ŽúöÏ÷?ÀÒ\’áX¥Û˜²{VyJNhIë–ÀñZfú¦;HgGßè,Möq'k|°°;7¢%µIg~^t~kò¹«vÑ’hÒÙôµá–§¯®N'‰hI4élF{ C‘ w»O³Ó"¨HL±bBÃ`m W´2<÷v7Ñäa‚5Ñ ýÊ…™rÀ]4ñÕg±ñÁŽN?D+“=Égk,ßtÕRîßy_7°4f“|¶VqXí9óðuk¢é"E5¨1žÚÛÝœ«‹hiÀyÜô½>BsdozòÀH°¦5—¦õµ-ôm3™8Ñ’Ö¤³¨¼«ÊÞbÇèj˜YЂl)Œ1I`mÌH†Û·hn!YZ DKcF:Û/W-åþRýuK§ÍɹÞ#2•¦þ:9öû¿£ow†\ ΢çÕÎE¾[àB´r·°H†Û•RÚºÞFœŒD°4â‹d¸ÏZËô+ÞšØhÅÎÄ[O³2¬Ñbî©ïmÀ“Ú@KÎms”^¬ªa†ßá‘_7°¦57¾á>Ö¬]tÚx}ƒ¾eS$µ{ocÉuÉÿür ¥'ù¾ç†*/ìZ¸¸–Fœ‘‚¯DWÿW®eUý³¿£on=â©eëRÉ_´2âL,hcïõ áSGœTJ°6âä³Y£@ø‡UÆž%´¤5ùlöîŽÎCCÁÛÍ]’ °D¥‡|æN|í?7’hz†k¢¹°çÞ§ØQ&‹„F´²c33 ©ïHª™‘RÖÌŒ‹kõö ìÑÍŒ›Ñ’™‘ÎÜ¿9k#Qö §PÚ¶NŸÿt‹Ö¦‹k“haºZ¡hs~êG-°ú]ãëVŒ´1­ ™"Ü1¼÷M4—&Ášhr¡5÷öC‹¹‹‘VŽ7ÁŠ‘6¦4[ñÂøtÜüï\·’ÔZ0Ò–HÜ|³nL»yãj4f4sO:JØëFJ÷ŒhÉHIg»Œ9ŸânÓEN!X›®„nkŽÇÍ·cF÷ìïè[| ׿îQìÈÛæ_´d*ä37oßžB$o“Í«;¢•ÉNd¸mUõÃÏJJ,Ñó Z]®V‚ÿÄýº%;cü—SÊŽw'} 01ÑÒ€“‘Î(óUàPÕ:IXÓšÞÙ±Hb×7_cöuC+ÎÌ€^J]k#ÆäÝÒl Ýk´ƒÒ¯DXð ¡¥éZ§Ÿ£Ç³Z¥d€µõaý*"¯{´¼¶K`Mô¦èhýòT{òb¤=‰X3ÒC´•Ñ꘼9/¶†¬Ï7èÛMi²³hbÒõ”ìV“Þ@+ „‰n¢'Š_ÕÄ_im_7´bâL,è5:ß—£šxÊjK`ÉΘ‚Òëti ¥ì»ý¾ ~øªëìy×úæ¨pm¬}8-¥Z·Õ»ƒuf `M4©úž{žÊ”ÞÖæ¤h€¥µÙÈHñ¨{ìȧ;(`M4)혻:úÒ¤•--ÍCÑýœÞu3cpKsͼ‚îg>§S=ç§rÇNh…˜WÐÝ“?ç¨×¾†¾n`MkRô—[S/ßÒ˜ý’ÐÊ\3²¦û—Ï%W¿ÿ÷þº% gb€É޼ÝÂ[’ ´¤5Ù¬[‰&£ê3DeckZ“ÍÜ…ïí¨Ek¾#Í¿n`Mt2”sâAX¾™n‡Í7è›GËér?þÔñÝ£)_GôØô-ò™6>êˆÀ^ùV¼%ïŽhÅИÐGó=àèG>FØ'°4ÛL èãÕ÷ÅtÑIi€5Ñ䳈ý²¡‡#µ´o- 8çz–RæøÀ£M+„hI4ù,ªÈשèþΞüº¥ „™}Æ|íþÁ¶IB#ZÙ6™Ч?zéÑãÔZpzgó´H ”½³AÇ`ÍÂé-÷ŽÛüàš5-l¢%­é­¯eßW"’™ÑÀ –ÌŒ‰}-+ÑsS63f6'´bfŒšîQ³¿§RV·'!Y©Ö#nÓŽ‹heºÛß-2¼L­ÿ|üukÓEB2ç?®ÊÏt•¹É -M Éö²Ó†NH3 8Ð’h’¹Ÿrf•=Z&%°Ä ŒÎïÛ]qçÑ"_ú¥…í–W‘›­}‹ÝÐÒ˜‘Îöi¥ï)ßÇW^'´$šZŸ¶¦Ó‚îÝ×™ÐÊÒdhw.òÓ⺅^,%]²,-Í4[gN÷5YöŽÎVƒ;üwômu¥·~‘'›ÅõZ™lÆöw¯¶£nâ[vBK¢EûFX‹ÚÖâ;NðëÖ&;}·«Ü彋±ýñ2úÖëjTúIhiÌŒ¢w¼jè·1­¤AZ½):rH¶i^Yñ&µéÂÆ÷:í•.¼ïŽÉ† ù7èÛÀ±¯hfqóš%}ø/XÚ¼¬RtúªzÞMãËOB+DÌØþÙ»¨]à¿“'¿n`Më4àv†{âúyÑ’l %­ÉH¯hý¡oºAŠ ­¬.›Ý¢:ž©õ+Ü%°´º:ZÓ=rå˜Ê*A ¬Í5éÌÏÌeÉ¿3/¿n`M4é¬E?¦ñtŸr3³$hÉÌEŸâ—Œ´’•,iÍÈþÑ_wizÈucRAB+Z3²ôùJ.k²hVDOhI4ÙÌ÷öê&©8…`mÀÉf~hûîɨŠ °&šèQúêÍät¡¶Qbû úv!§Œ²Îz+Æ$Ä„–&;‰öï^C ýcЀ–D“Æ<¥›Þм±nÙp"Ã>)MN©ºÖšO­Øo¯“tˆVö.†öÇÙzªÄ{³qŽÁ’òÙ~ºoz¡Æðú„V&›9m¾ÑG-x9q&¥Œ&°¦5ù,BÅ-û¤Ì"L`M4ùlEúI{Ú~nÎÍ‹hiÀé­êÄ`%ioZÓÌÖ´ž …®õr†í óò úF¥´³åþìnóƒ'•-8Ý3_—î|<•o¹‰Nƒ´$šdhÅÌMõ!wò6fd$swO¥édH[!Z!ÓD/‹‚Æú‚q9 -ˆî Ž¢™NÌr)ÞÆÚz ¬œ!:CûÇn¾}Pj4Å`%´¤5É0ú÷®©Ÿ!’[I°B ½¤ïÅO}S¾3ìÿ? }»õãÙc5ÿr™ wþð_°¦6Ϫ{î¨!Yå!5Ñôrv4..zQó?æ h‘:[ŒS"dåIoZó‹`Mkεµ9Zžë´ç¬‰&wj_åßäç@´2àÌ gÚ(OÕ>oZÓ'XÒšy㸥ìòÔäç¦5MœhIkÐÙ|õúœgŸ›Ö0³Ö´îÑcå)Ëö¦õ¦l %­E~ÆS.Þmë” °¦õ¤hë§=&4Ü´N#´¤õ¢è½ö.GMˆkì“ÀÒ†ÍÈþ7 ó§\¶ac]'´²a3²F*Ÿ.µ“aÎJ›5Úk·§ýã2]<ç&´4]œëz¢¼á~¨rq¶ ptûäøÒJÝ>:¾tFöÏЛ^“¶³þpB+cÆÈþªé«éÑ_õ‡ZM:ós抺~ê€gÉkN:óóߎZ ²ÖL,KhIk®ÞÖ¨?MÅ5ѤR¢%Ѥ³Þ·»Lj_½ï쓯Xp#zDÉæóKâoèýÞ oº\]¯> ý»T‚Äâ\\K,μ€9¢OÏêú¥#ZaqæÌÑ·{*wÍ2ÜU9e©¡ý­¦ïX3f̱K‰ä}yÌX ;¡¥1k ì¿ìTùF¾³ßÀômßä®ëç›ÖÔçûÖÒ‡¬8'Û½Â5ϼÀ`‰˜VàÇž1­zÓ¯LŒ¯XM6œÍÚÔ+Y5&I%°&šÎÝœ¶úc«ÏÛ@.%ZÙ˜€âØÒúO»ú/•þíÑUðýç‡×=’'?­úÞ)mnLäH`iÄ™U973Ò>åO³M´2âÌ*˜«FŒäC ›Ö4q‚5­éÜEÏË=Òšo&Î Ÿ`‰S–3W”djr±éÆ\ŠÖ´&-óýÇžosÍÍ‹hi®iáé·í©EÐM46Ñ’hÒ™usOüé¸yÛ6¹­l›Ì*xÕæn[î/ÔFR`m®¹kºwWõ¹NœB´4àôíÜ»²¡'À¿R¾n`Ik†­ÍèhcÈá‘ænûôõ”Q}‹¦¥ì^»~§>‡û}³Rù^%Z =Dß’ÈâD+6Τ„¹ÍÏ€&WÑj ¸K`m¶É†ûøèT¹{Ÿ“#þWôíÀ}óÄÝ]ë:¡1k'¡•õŬ„pìªÅ–$‹æ -‰&¡½n+MnEÕ˜’ÀÚd“ÐNð0_1Þ-•ÆlïéJê†ÏLŽ–6|ÆÈÏs|¶×CË€Û¡¯A°$šY îEaW½Ðu#™&´B l8°Ê°¸ˆ’/ ™’À’¥°á@{nÊ«¯MÙ@+ëƒI +Ú¾µúrwœhIô èVOtÌ‘|P2ÀÚ€O¢{ÙVÏw¾… “7èÛÂæd×heX‡¯—v„–FÜ(zYßk¨=3_¡´_7°6⛢;*UoZÖ™—Ð’Ö ³èD5æS-Ý‹ÖL~I`Ik#ù pôúUzÑšñÇ ­hÍX¦Øz"ÿHöäw’ °¦5-¼mw»KÜ´æÚ$ZÒštÖŽõ³ºÌ)Œ—H`MkÒYoÛ¬>y†7­iáDKZOŠîgD†°¬µQ2ÀšÖ‹¢ýÄ7ÇÒï¦Y³¾#Ÿõ”¸–¸he»g>„Y÷ãS}Õ‰“ˆ–Ds®£íKdóÉ»áâî ú6â\]>UîNë¶;sÙ/߯7Ú eÙ¿heИӰFôM.K={ÝÀ’3§aÍâôù„¾¬lÆ'´²²™Óàå^íÇÍ‘\qŽ7Á’+ÎnË·€uZù@kî DKZ“ÏâÂrÛø6×d‚µ¹&ŸM &–ë­5¦^&°&šŒõž?MN!XMžgŇ«W"½$­ÖDÓ;‹&q«=¡ofÆÉ&Z13æ$¬å ÓŽjÞÙ¬à úvÿÅw[Ùã#µé©-©M:[î•>Ù5ÀÒd3¥a­í[ɽp; Ü%°&štælT?Ì `M4éÌÂOùD4§š`M4éÌÚ‰œ:9ìm&ÑKû3Vl¹mÈIì-øÖDsqÙô ¼=´Eº‰æ9—`M4éÌÜ×hE®xÓ˜ÿ˜ÀŠèÁœ„e»´ºõ°æ?&°&šþ•WDQQ=ÚQð’ð} åÂÞµœSŸjß|RÎ6Ñ‚O:Øo`íŸVTòˆsÛ$Xñ¤µ³Ân¦‹æê"XM:‹ ôq %xÚºˆ–œt¶} ð!S;j4fã%°¦5élŸvf•3ÉS8k+$>Oä›ÏŠZ"rAôžÖ&ÑÒ€“ÎÎtBZK~ÃHq¸ëØŒzÏ2#1#¥é¢Ÿb%zð²¶Þ;FbR‚£÷+"IöÎx{–Ђw6˜”àÛmù·´…&zQ4Ð’èNÑÓONGnõÙ[R`ÉÄ™”Ee·£ÕÛÊΜ¶ÖDOŠ>sÅ¥Š>àFÙ@K:³h]à§§"k :K`Mk£h?…õñAvûº&´¤õ¦èánå‘£-:iXÓú=£íZ­½c¶xƒ¾…quùá%’•ÕÇ—ë—À’ÚLJ°êÛOù©©Mv4 •ÉfR‚EgÖ=>È!aJuBK¢9àm:Ž®íx”Ð’hÒYd|úÚ”éŒeaX›kÒ™[ɉ*ºÖ$¢%­Ig½œÑô¢Ë!= ¬iM:‹BÕ¾ã?ÐÂMk’ Ñ’Ö\šÎç½bÚh¸Íƒ¾9Ó…jO?Í“oFÒ`iÄ{½"œÕd˜1s ¬‰&ùBµ½ËÃÆí-™hW£DÓ2ÕTS/Z1¶:0÷^ÃdѼ„JhI4™t¸[øOµiçëÈŸƒ¾xRÛZõ½K>µ1Ï6¥c“lìéŸÞÔ*§µÞXM6tGåœõ©qÍ«·ÖÙp5¹1kgm½Ö´¦sçKÃü”Ýä³*Ë$´rVeH©Í¸ÒhOýéngUÚÑŠhæ$ØŠÈÚ¢× í ÏOhI4élµ¹þ© "™Ç›`É̘“`~ìŠ"u²…ó®35ÑôíÖìQQ>ªò®35ѽzgÃÌwLÊ´[»ŸQi[$¢•-€i¶Î²r¬V`µœ–XifÑH7nãäõÁ'ZZ$$[¥•jŒDHDKNBŠö»<å9ÝD“ˆVD30ÓâJ}EÝ9Õ)xÚ|ƒ¾£¢í֢ߙî`199¡%µÉH»÷å‡tù ù–hY¶×rßP/Ã8ÒeÑ’ÖØ»Ø(á úæÛ‘Ϧ Ÿ~=>AZ²RòÙ*QfH/rš7|¢%ÑtÏVÝeï¦6fí‰Ä ÖÉpÍ^gÿàädI6Ð’Ö$CwhOUY4­”hE4û$ìu¡•Ó8FMJ,­.–Çómoµ2ª®5 t'´¤uKàs^wê ý ÞÚô-‚“íþ•íQå@LIDKjÓ=³õêÖÙäÉævO°6Ù¤3s7e~Pyl0#.¡%­Ig4í¨k—„Ö´&ù©m ½ÀÝ`Œbk¢Ig‘çÚÆSümÀé”- 8-|oߌƯFLKKhAôdVÁ>5®¦Ÿžƒo‘5M´à§Lv:اÙì¦ûvÌÐM`eëšìt¬½–©?è2/¡%­é9šíÎ>Y4ÐÒ\ v?GoÌ: ½³¿£o5ñ8¯“6¶ÍVödVVµÈºREŠXmݬXoêú`,lk¢7EO7“­?ÓÍ’d-ÙÙ¡h{…'©W9)Þ.%­™pÊŽîvúñ~òÐvjyu–yx2Q6¡•1c^À‰÷ø³‡|„˜ [KhIt§è¨ý²õ”„<âDK¢EÛˆŽjãâni¼–¶æ8™­þOTIto€5Ñ$¤áÞåèጘKhe÷a^ÀiÝúérXçàFkK“cÖ|;©¥ü:†oî¢Í׿»Ïôm̸°½O\±¨j÷üáÿ‚%µ™$uÚŽ{¥úÀH·^Zi ÑÇ|ˆÛÚä­¬Mfø ¹Ïçˆí‹èFZ ZM2ìÓÏ.CnD5÷œÀÚt‘ ûŠGBùb0î95Ñ$þ}­ÖÚTFb!«–‰YgÔUJåÄÁ@Ú„V‰YÑ×h>çcßDSm¢%Ñ$Ãh2êÛ—ú ;Ø+µ§w6Ìgk| šN°&šÞ™ÂV4Óœþ0ÑÊ€3©ą̀’Q«ºç6nI`Ik&_jmw¹…I ·K`i]3-àLg¤x/“EsÏ%XM6‹Nû©lòMtšj€5Ñd³¨÷¿»ÉDÊú ¬‰&›Eïà¹õWì™›D+;³Näb÷}>Ø49âDK¢Éfî‘F±7ùêŒ1 ¬ 8Ùl-?.½ÚÍLn%Ñ’Öd³È#^„ºhÎ5ÑŠhf+qõ¦_³øcKÎB÷«Ö|=Wª799Þ oñImßoíç=W!ñN;#X"q˜s‚2–ö~«6É|©ŽnrèØ`Æ„V6¾äÆ›ŸÝ9“ï–'äZ²Ò•À{ŸåþšzìŠ'ôÿi蛩pqFx¤5ÝTXò?5S!%íè¿5¿3]µÉæÕÑÒd'­W[Ñ{EîSˆVDO®Íñ¿Kî¬:VR`‰’˜weÁÃ!þ€ˆ¹ºˆVLœiÇ|e×§L×›húDK¢é`5â]hœhI4éÌÑÿ«oº3‰Zý/Ùÿ}·Fµ¢ï|ÿŽ÷`ÍÌEw;¯ö²Ö‹²–´6Šž%^!äÓËïTÿ–Øl¦13«þ+äR†sþ{wö}‹ßªT{—=–ÞÊcü.ì?Ð ý¶ pñ‘ šß¥€%;[ÔºÖ²ÛOâ¾$šJ¬‰n=ê*ãƒ;¿EC#Z1ñ߬ÍøŒ¸±”ýÊ5`gGß,ePö¬§¦;w‹”T£hMDɃF[!Z4RRu;³³Õ¬´ad$‚5S!%½üÌÇàã›ÖÙDKZoŠnÛ§l«O7cÏ–Øð78?Ð˽ÒD‰#N´ÂHFFŠïŽŒ:Uë´º–´62R;‘6³å󽥩X23##õ^ÚØxA·°–Ò—Õ× ªFšhœhÅH#û¹ENã¿1þkc6 zDç©'N#-iM.Œ¬Ë]|»‹Ö›ûÁšÖäÂÑý««\Ú{l®L‚5ÑäÂá»Ï®r÷Ʊ¹>ÖDÓÂG$s¯§ éÛ\'µ–æšFêsïïrÄõÜ;ößÑ·…MFŠ#Û|jåqñôáK#¾)z¶^^î¹¼pû!ZÙ6Épv?½ýéfÑ3$XÚ6élF‘öÁ Ö -iM:›Ç"†N?m¦í‡hÅÄ7élù7÷¢÷›™Æ¹&ZM:[ý•Â.ß§üf†ýÖ,œt¶ÜHÛ|¨AT7§™,‘ø!§ì3 Ç¿2Á¿nhIkrÊö“ÏVSµÞ<½¬iMNÙÖ×*l]›&N´¤59eï1çø®?/h= —&ÁŠÖ«”„ž}vÜu¾Yš«TxgGß,….Ò©¶ÚI¶ssÛ$ZXØ«ÐE:¾:Gé1=Y4ÐÂd¯B:;n&³Ém)f¡‰¬M6éìDiש¿²ÁÊŽ½ éìD°ÄÔ#®)…`M4éì¼b°ôÀšC&%X :{ÝiÏ)—\ž\𠬉ÞD×Sâ)[=vEG„öôm}LªÝ׉†êÂ^eòËVv-ínf›rQ&¤Ÿü–F¼VŠÞëD°®õ¢l %­AgµÖíÎÆS¡Ð[l>ö®„Vè¬vŠv‚Zû©<ê-þ—sM´$zP´Oýª²‹4«Q2À“VZxµxzh"rÝ8Õk¢ú¬=Ú”s¤V5,ì¿£oÉ]œìVâø¢Ç,ÌôåDK“½):Òµ¬ßô6âœl‚µ? ½¢ Õï¶ùnÄ© ÛÎgò½Ä*éËVh¡‘‘šo 3ÊG‹cÖ¹ý,Y##Ey³%gmÎFZ Z±”F#íÍ-mnùø2÷M¢%Ñd¤>ã>L¯5íŒhI4):*í%§Ì’$,m|mQôA¥òCBvTˆ–,œÖˆ„ê¦xíØ_7´$š„ôŠëwIö¢%ч¢÷Ø…íŸÉOg®sä3ö\™K¬ÐÉ…¾Ê›=öýºÅAqºˆVÖGóoÇ3ö;¸7l›GßFœóå^üð§»g£óË–Ô&ε㣾ÌAZ X›l’á=ŠöËVJ&X²RÆæ·QU¦\cÒµK`M4ùløÚ.}<¤RÜÐä³1Fñ“ªî”ò"(¡%'ŸùÆ·}mÊq‚‹ù -‰&Ÿ¨‡¾ªÌg“»&ÁÚt‘ÏfÜRÔž!Òd­h½ÉgnðãÔ§Š7Ñœk¢%Ñô΢äÌ^S^šÉ%%XpF×ûAuÇ›úÃt]´æÍBBKZ“œÛzkÍn~ ·.‚%?…ÑõmÕx[–S‹'ƒ¨XMïl¹›Ó¢,¼:×4p‚µ¹&›Å¥të³u`M4ÙÌÝÄz¶žµ˜¨”Ð’™íŽÎt¨«÷:ö}{{!™ŸU£Tœ®6‡œhEm†×7‹‡ŸýÐ0ævEK'XšìC:³±‡YÓ]¤t|±Uj\WÊNK!Xûp’aÜ‰Ï ÏðÝtñª3¡¥é"î(öùAõ•.cˆ–D“ ·»G½<Ô¹ 8WÁÚ€s®÷Xµ¹Nè4)Ášh’ážgôZdNŽÁšh’á«ÄÏÒS@V:¡-Í5]»SªùiH}¸Y ×N`iãcZ@;5Üù cÕ$`E´r¡OÖòó};uÑÁ"Z8uY!_•£ÉÅÐS²i+ff „mÑbz¬9ÕÏJÇÆ÷wôí-¸ÏVµ§æ¿7'‹-˜¸1- 9hráÜ\\k#t/‘໺|Ø4ÆL÷âG—É •·h¼¼Aß6] Z/ѦÓÖóeür ¥ùÚ½^çOYt2ò„–DŠ6? 7ýjz§éX2Föû¾åvÒÚäÜDŠX JêÕ—VßOcnN'ZpFö÷Hq3ÓkVM¢Vˆ˜‘ý>ZfQæTÍÉ&ZÍÅU÷iã<Ôð½í|ƒ’–v>Fö÷V÷9RïXNioÓ÷|Ó »ZÅmeBK–²(zG«*¿Ÿ¤÷„–¦Ë(úøžP‚Ôo—œ.‚µ¥ oº÷辊CåP¿•v‚¥gRAï³–ˆWE' 'XM2|y•?1o’è¤5ÀšèN´ÎÙówÏ}çj´A;û+úfgiÄÝŸŽX?•’RþI¨ƒýÓ¼Q↨$´Â ÌIˆ sëýVZÙK4Μ„ˆªñãýÖ0Ì}IhIk²á0wÆMî`²•Àš•Ò3ûL?Ék“IR ¬‰æ2ëˆX‹‡}ó‚fb€£Ïq6–Ÿò&@´B¥«kºÃà»ß‡oc–$,Y'ŸEM¥ÒŸÞï/Z'S!ZÒšŽÊŒgì-g&¯<×kZsÃ÷CÁNW¥ï¶ì>A¥Gß6G|ÅóâBýúwTÊ`qßAÌøMwÆ“ÞD+¤Â´‚î„dgêÅ‹-±8Ñ’©ÏÖvf(rõÈÅä•ÖL…|fQ[dêOºyÏ&ZÒšÎïdsUùR} N5Á’ÖÉÌüoqQ«žt×LJ¬‰&¾"5–Ik‰ ‰Vœa"ï}Y4)‰hI4ÉÐ|³¯§Ç›‹èÎÅE´$š']÷­úk±Ê¢igDK¢éí=W¼Ô©ÞYZ[KÞSúޮ塮ëÍÂy©A°fád³o/óû6Fâpæì$´ÂáLispwWþÎE<«þ};ß'µ—[J;úÂîéËVìŒ9 ýÄËæk%¬F 'X²³™¦Ë÷úRv$§”i£¸«0ìƒ3ÀZ1¦ŒâgÕ¶ÚVº)hIô èuvS?/2e4¡%Ñ“¢w4îòƒk$°f)`¤Qk-k!5ìMhJJHh!´ß'2jôà Ê;8BÍÿ§¡onT{ÄûûÑ·Fâ&´D ‡¢mÏúè#ÝDWŠZÍ´‚QO[î*Þ×ÇÅÎz’ °dgL+­ÄEÔ÷­†V-…`%­ÀXBþÿMFŠ à¾¾w]‰&ih…øÔæ>‹ï»òÒ;%¬M©¹ß~®Þ$Ñd$‚5Ñd$·²ÑëÃáE43FXò‘˜0Ú±]ÖÓUémi&+ZZš8ñîæþt‘y8™8Ñ 33`tß7ÛÏ­†²4¹œÀÒâbfÀèþËÎxzD¿ 8“Zp–ÈÑÍo·'›…sß#X²pK³uüøXšþøÏèü1â!aµŽb*ÀÚ‡“F´øy§“¸w ­p!+çÿÓÃóQµfñ–Ö´&!é.åàká&°DH íwÛŽ§rnñbyk¢IH³Ô}Žça,+žÐÒÒ$!ù·ÙÙ7­é¦,i½KBîû¦ñ$¿>éßÑ· Þ¤v÷ïžG7ñ4àK&Îèü@ïh$"ŸÐw§ÚEßNNÑÞC¾6Æf&´0h›ñùãø¢™ÉY +IXÙs7£‘Æqo¡T½Û¦±îeBKZ“‘ŽEýɇ \·k“`Mk0ÒŒ¢L냄ã[@BKZŠvɽ;y»gÛ—Vha³LÜôsj±&W§x%h}ÝÀšèEÑýœŠ}J¢E¬‰6¢#>r¢á›ÃÏ.`¤7è•&;›ÑJDß~X%5µEïèùG»“l Wc3¶–ÓûèCÕÚJšl€%­Û?£ÂvÔ£Òµ†«‘Ð’Ö¢£mKE¯‚7{—¥UÌÎO• McX"CftFýI™ g’ ´B†Ì ˜‘F>ÛP]qc©éÖ,…dØZm–“Á¶X͹ns8øÈ•cŒi¶ -©Qôš+ÎNªÖŒ¹N`MëMÑ~ìm°óOXM.ŒWÍó +0á4¡•oܱ{4_©U¾ƒ ÎýÝ}þ޾q '»G€|—ë2Yþp€¥gˆâŒ^¶åÔßmº­Sí¿¢o®xšm?1ŽRõÓÿZá3v ˜£F q‘¯ÞRØ´{³Ñ¬sÊGtãÝ[BKN«œÍ®ÇoÍ”„6¬ûÉkÈ]ÓKvB Ï|›áùÓOÊÝO êÑɘUÀÒ¾Éðü9ãÞõ±0ÓUhgDK¬BŸmŸQ¶êÉCXZÙÉHãJ~è‘´ÆçûÖDÓ¹‹1O5†n¢y XMçÎ7¾5ž ýÜDÓ[ XM÷lž¶_"ÑÌ6ÓUZ13ÖüŸ«t÷ô¹\ÖkZÓ=[ªÙô¹f˜zk¢Éfk˜{OÅoÎuM´4àd³ùM_× SO`Mk²YäHùrSߌOÑ ¬‰&›­ítÔõSë'°$šÁù3JÀ·õÁ¡!¥Ófï~^¼ þ÷Ã7´X‰1٠퟾yìUä-— „heËIëã‡d“S¬Œ¡c ¬M¹p—ýª@¬ŠfUk¢É…¾P÷jz™†| E´Â ퟑâTÚSÝ™Û\sm­ø… ퟧŒW8’®5'›hIkrቼgè7Ó ËIhIkráq/µÉë:í{këúüÿA38ÇG)y}ð>…`i}¤{ ¸¡»>¤5ßÐiÐÜJW39‹pOžÿ޾»¸¼Î>fG¯’½kÒhÅÆ¯'ÝMõÑXÙ -‰že€‹\”ÃX”#¥ƒØŽîq¡ÖÛ[SA¡Ÿ7èÛ‹Uñµ¢’–Nh5}9ÐÒˆoŠŽ®Hë©^ÛMô¦h %Ñð°Vm«Ó²7«‰$´"šÑù+.ò"zMvTí—Њ£Âèüרr0¬±£lK&΢ÿÑŠv {èwv»zãº&X i½r…ªm‘¢xZÙ7Ú¿Zß‘X6Õ}“÷W ,í| í_mœVëïèŠ'°6à‹¢÷k?’ÛZ+U'´4àFÑÑZû45XÏîÀšÖd³¨><{ý@kÊ&ZÒšlÖý¸7¢Ö’¨5³éXÒš¡ýNÁ'Šn>_.DÊ[ñ„Vˆ”¡ý¾ñ¼nXdJaykZ“ÍFÚcU?€0 7¡•¹f^@4°òåtSciðÖ´&›9Ç«¬5IœhIë >=^Ûdw8×ÿ4ôíRƒ {¬ˆì”¶m¦XqÒÙ,¯iòêb™Ÿ„–Vµöß^çúÀCâ•zBK¢IgsÍsÓnngì$hÅÎv2óLD³¾óÄ™ð}‹¢Jjûް\ט€’À’±èÜ ¸Ïô´ßßFœ\J´4âä3ç#ëõé¦ôfg¤R¢;c^ÀZÖÎ?^Ž&:i ´$š´°v9£Oýy‘ÁùŽž¥,ýñ…™3 ü_­o¢ÉHuËJ-÷¿y9œl7ÒH#Ô팯“ -ÙùÌœÞz•Cûu—X3.l;Çw|¹l™±æK¢Ú¿v;¥(GÖlfø&´bâ í_~˜™ã±+ßÍ3¤WJ´2× íw"| Ù¯›ó戽™{ŸÐÊ›¡ýë´²Nm‰²7Ñ´3¢%Ѥ³) ÇäKZF³&°tØdhÿŠŠè»É ŒÆÞÖ,œ\x挛 ù­ŒmXM.Œ’—ÓôºJ;6‰–ØÌŠC£–LÃŒì·/|?]¦%K§‘Àš¥$Ñ}¿ºGŠÓµY^5•é:L*°2¢J¶Üº~3Ô/5Ñ•èé¤Â®•o¶ûSПî úvîêT{¹‹ôtE{SÛøákjw¢ÝAšñ‘oNm§ ªýWôMíJµOT¿×‹XM.ìtÔô“£‡Z23²Yß¾^J“·®ž`iq±{,ŽØGÕP¦ÝÓ€¬‰&›öʳýÀ¹ºˆV,œ/ 6Fs·rÉq‡yoз{;ÚYÆ(S(Ú+© ´bgŒ:°›Ày¨»™læc'°´ºXµß^õÒLÜ KhÅWHnÊŒµù˜2z³3./¢%;#ÍåÇÍöÁKc™ZM3›¯ÖõOµ‘.¢yÿ•Ð’hÒÙª‘Æ9d_1¼ ,q ÓlEݲnº/ÍÄË„V´fZ€E9ô1žŽѼŽIhI43‹v3ã)-í&šÑ’h:gVŒÎRoY7ë*%°6×d3çÂ~ÆA¡ÉY ZÒšlf¶Ž}Сô$&%Zfk-,9jítD­½Aßn°È)»øAjp\dp¥£}KˆRãê¦Û‘ÿ};ªÒLwœØë¼ùÅLù~ŸÀš™’T¶5ý)?:fD„üê°Ï7`D+–ÆØ~7•7Žò_àX3ÆöÛö¹.Öå}3_€-iMK9e¬µå øÍ&X ,ùHŒí·WÙK“+o,H`M4 íDb*ôsprÑÒ€Ó=;«ÿ‰¬uMZ¬iM÷ì¸_¿öúæ”&­V\qÆö»ÙÄ·–|Sº“Òk¢ÉHQtßýÝ;ã$¡¥'#õasI©~ ófZñSÚ¿ûŒ{ UäÝgR2ÀÒîÃÐþÝ­Ô±º¼Ýï$`i®óù‘»O~Ç FFú;úvJ¦ƒ5J¯ÿ”r—쌧 ­ØcûãüpJÓ3ÎL¢–D“ÎÆeO=ª'E…n·ð³÷C·´[T·M‚5S!ŽýÊŸ—}$–õK`M4Ép8Ÿì-WI`M4|ÎxÏÕÛZœ´é-Y Épžr^ Þ¢¥¤8ë—Û2Ÿ±ØgK|Æ´‚i„sÈ¥- Ü%°6]¤ÒÈ›lç©jæmº’Ú@+ÓÅ´GÔ5”¾£R†2ù»ø¾ùTfîöáFÙ@KN2\§ùŠ‘;OMC°4]Œ[‹'ì¶‹é§ÍäN-iM:³nQ*C¥³ô¢›ÀšÖ¤3³Ògýà>Ÿ¯“ -iM:󳹯tùþ0c45­IHvº;*:‰3T<5Ñ$¤Ýâ9¹ÉI ‡7o - 8 iÏQK[º3Ü3¢ÑÌ ØÑ»ñ؃'~pºñKμ€½mýÛÈPͼ²ÖDsiî]Ü/¿„ôîŒ}lñ};€puí¨´?RÕÎþ ÖÔ&RÚ9rÕ²Ã4§ÖD“΢»=îØ7çY•hÉÄ9àÇGl=¨ç023¡%Ñ$ÃKä ý>…o›Ž>­O½'Æa"yBKFй‚S#J7ÉXp ýT(:™Ú'>^¨$ô{­ã¦Ž¢×)£?uʹˆfSŒ„–D7‚}+[¤Ò¿[Š£ÁHoз[?£Ú¾^ZrÏnjÏôå¿hIm0R$XµòXK÷&Ë+¡%Ñ“¢£WÛlj¼öf–mk&¾(:ê^n¹øýa.^ <ì¢9×#:úÓ…ãmÀ¹²‰–tv^UµšÞFd³üJB¿¿·sѤ3wÌzÉsM+#XškÆæŸ¨ó§ð6&¡•gl¾ûåÓW›ÜFd³ÑgkZã¸èûõðãþ·‹¤Í5WÑÊ\óyÑÝÄyÆFCÀ¿ûvŽF®Ñôí>…tÖû´ùÉ:µ%´¤6é¬?Ö.?ŒZ3€µÉ&õåŸRªZ0-ôH`M4鬟¨bÖ¬ôvQJN!ZpÒY8ùØ·…MÑDK ›t6¦ukzq¼Ãtˆ„VD38ÿ «½÷‡¦®·gˆBÉKsͧ€ˆèÙ½é/É9#XM:›uìRõnÍ›mú}¨¸‹îí[ÀÑ;sï´_¬iM6›«Ö5‹~-‘µZ23²Y$5¿ÊG߆ì?ZÙ× ,„ô´ÂØü3_Û[޶KËš`mÀÉf«•±›|Rýví¾nhiÀÉfNÿVbY5 §³@´dád³åÇQñÃh»–œ±ùgųÿú&$ÉÌ’ÒKfÆØü³öQ¹R>,ŠX:06ÿ˜Ϫª…–¼L`mÀ{Bû1uo5òØÑ$¤¨ð³YéóÝcã–E¥Ð©÷ù<,9Њ¯Ààücñw&8£ÖXqšÊv‹oªïÜaç¿AßB°¸wí-a·©qX?8¡¥çηݳÛŽo íPí¿¢on%—¶{Ñc¾Wç× ­Ðx²ñ=ÎX½È†–îí– m$­Í ©•ªî §&­VvÆæG^ØlåÈÞÂH’–hœ±ùî\Í]õ.;‡U~Xp²¡¯5gS9ø°¶QK;cóY]¼1M65ÑtÏœ„müdTK‹‹©| --.:XgG5C<%¿ã†×ŸãÛWëOåÖnN'Zúð=¬ý¥”³_/êtý+ù°4]¿u÷íKëE3¢èß,§?ÀšèJѳ/«WßþuC+þ›àµ"íIvî~ÓþkZwŠ¶È½ŸòÒüM ø¬‰]‹ûÃsëKó7µø´4à“¢»ûLGo/‡Àå@Oÿmí¡HéeÌ~Óßÿkc¶º­mÈ xçžýVü‹¾Eánª½£_¦œ…þmh_7´4_I´O@kß׬҈“ÖFœdØŠYëï¢7ÑÑK¢ÉÐ |Ÿý´¼nNµ‰V|‘ ›•0”ÈVJ´$š«+ò^|Ó•ü÷Ùç°6à$ÈþG¬ù¶”¯ZÒšd軵»zè˜qm¬iM2|rŸzh¥Ñ ÖD/ŠŽörÅÔKñïõñuCKž>Ü"´©¥õ½Á¤GßÞ}hâ=Z=½QôùíVóZ9è.ÒÙˆôÓåWÕS9hD+¢t6úëõ¤©v¶9×Kvf¤³uaí)êfg\^D+vfœëqÎpŸX¿„Úüðh1jgË¥vN¥kH´4]$Ã9â/è·/IX:ªÚHhŸü½õ““‘Ïܽ:QºLûðï§ÿ¯Xûpn|ó§¡“ìžݳ¿£o^i2•ˆq_G~L>¤B´d*tÏæ±ýÈ1Š›[6ÁÚÊ&Ÿ-ç„è3­¯ljM´²²7ùl­6çü€JmœheÀ-,{œ‡ˆ‡‹‰WÒÁ’‰oòÙwyU¹ï×÷†ÿuCKNFzÕŸzûÆ38×DKN÷ÌœÐþ‰Ì”¢Kœ¼Dpþÿ4ôíž«k‡©ìŽ÷Æë¢•…}x/³è³¤úâ§Qí¿¢o·ÉÐv¼Z=\ÜÝö®‘>ü,í]iÄOkQ_B÷J¶B´4âä³Ó»oSך$N°¦5ùì¬áNñÖµ>ܼˆ–´&ŸùÑÕ¿[®ä~ÒÚ$XÓfVK4s*󭱃$´¤õ¦èáÛn•CJ¿?ü놖DŠvoú¬.ß.ŸBÉ+^K¡èÝUýý¤–$hAëZ*EŸµ–ùã,JXÓº%´õ¶ü†Ik!UW»®èC¦~8 …`íÃE÷}F{*xs›.ªM´4]“¢ýØã§{ý%šï -¸µ,ŠŽ×ÍŸl!É·›d¢ß®Ró/6îÝjþëåÔB#%XñrjÙÿ¿Ðä”8²õ­;8‰ Ûìµ·‡.¡ç®sÀ V\ÚZÉHmwÅ©Ðסl •É®d¤î£¶§_ŒóE´$º%ð:ÅšZíÓÑý×·{ƒ¾}xRÛ”©g¯|SÒ× ­J%Ÿù‘+Z¿ÈW"‡sM°D¥•|Ö£(íQŸ'¿sÚ¾n`M4ùl”fm<Õ½ 8ÏÉ - 8ùÌÏ>Î*òåÀwá× -™89%î¯æV[&3òì°Æ)$ÃH+[Uu°˜DøXšëF:s­qÐçš;ÑÊ\7é8ÃΔó±óâôÅRÒÂgíÞêÄÝF|¤ÿk#N÷ÌؾýLѯüÎ_üº5ÑÔzÆU\ˆÎ¿‰¦‰¬‰&ÍÙKy,§~±³Æ…M´dg¤3_î ?tsºÝÑH Ö´¶„¶²&*¿Û6ižY>¹Y¨­S6ÐÒ˜‘‘V;³ÉcÆ`iÌ:iE €©æÉ~g*}ÝÀšhzkÆü•Þœ´@´2à½Q´»zÑïS*ß}ZMBZ§EÊ·ö³óukNB²E꞊Ý´æê"ZÒš„Ý4öO3tIt§-‰&!ÙÑ€ë'‡{.ÑŠ“Ã{ÒhTTÚPKí|§ }ÝÀÚ\ý]›A=ï¸ð78ÿ-ú6fäÂí“u¸ç¾“=ÈHŽ¥È-°¾Iåë†VLe‘öÜQH±ß?ü–UÀåµ÷>«É*ßIì_7´bhƒ|¶#êz©Ýé¾Ã[¾n`É›ä³Óûîå¨ (ßIì_7´¤õHàéž!ÊI½siãmóú6Ù\ÚÇ,J]ëVš¾hÉJIhÇÎZEmðPôuk“ ­ãQ¼ù_}¾ÿNbÿº¡¥ÉÞí§ÜöS5@ÒºS2ÀšÖ‡¢§E³ƒæzS6ÐÊ\3¶?Vê8E¤ýÎTúº¥„±ýíÕbaê)V•W¼ -i :‹Û°ÖL­@ÿXóuKsÍØþØv©Oíon” ´báŒí‰ÔûÝæ:IX›k¸gþ×å'¯§J$­yµÐ’Ö‹¢Ç™¯n²™MŠZ23²Y{¥^}»O„ÔN„Š«¹aßéB_7°6]Ý{uGü|°4¹@ˆ–ÆŒ\Ø£]ÙRK±çì|ÝÀ’Ö ]v´;¥¶â‡oèú»Ý¿Aß¶û¤v‘¯O•Ü/#ž¿heÄÛ]t—Uù⻬Æ× ­¬MÆö·1¶3ÚS¶êMô h %Ñ$ñüïCíúòªôukvF2Ö£V´|ƒ•Ášh’áØq«¡[|çŸ|ÝÀšh’áô£n{ìêz³pŽ8Ñ’…sÌf[Ç™¹ÈçEFç;Ú·€©²WK¢ÁÒ˜1:¿Mßîã"JÍåA°&šÞÙ´ínæüݱÿþÿ]€åë†Vàßæ)»ï‡,›ÖôSÖ´¦¿¢ìÏD¼Ý»Ÿ lGßR•¸@VD¬ ¹xñ÷Êþº¡•Âèü5~üñ`*7Ñr¢%Ñd¤µº9ï«¥\B˜Y–ÀRЂ¥?Û7¹;Ý÷Úüº¡%­é`YdÊõ%ú;{åëÖLœt½žyÿïü”d)fk;“ªÏßÅ‘¾nheÇfh‹ì“¾>pxśВhî|>ÑýØS‡Òˈ3:¿íá§ä®çTWK²VìŒÑù-F{ý0’rÐÍZ,tß¶¹#ÞÕÒàßi_7°dâŒÎo¾¼ªlëÎ=€hiÀIÃ~TôãçÒ7d£7èÛÚ$ŸQþ­/!mÙ¼ØNheËf„½ƒã-{ëEûPí¿¢oé+äÒc-ºÝè|Fl'´2Û”ÔKéÉû²è Ÿ6¡%Ñ•¢£âÍcOØÛdwŠZaÃÓ(z—ùê‹%‹^ ´$ºSôãuý©’JR`‰Tß«/޳ô´èzàŒ'´4ד¢ûP9æÍžÛÿ}#q2éØ#z} vr %µIg³Žººé¬XÐ’hÒYô!M.rú þuCK¢Ign$qê*¢‰×b” °f⤳¹×¨u>Ô]¾id-iM:›Ç¬Ì‡!»hÍ ÞÖ´&­f~¸GŸ„wŽ!NZp £ó}Ë;ÕæC'õÛÖ•$,m]tæî¬/Õ‡¢™73〬‰&¥¬]ʬrïÇï=÷ë†VvMçw«¥¹k©») ;HhIôHà…tO¼!vì úIË·8çN=î %œ:‡:‰„ë½Y )0¡¥B2ŒzvšúÐ,žÀ’—ÓH†;b›úy@ß´æâ$ZÒzg𬧀wû}ÃåÙô-凓½Ý%>?©Òˆs»'XqÞÈ÷hS½ê£xƒûûŽºé[v­I6ÐÊæÅàþ—Óö”}ãR: K\ÊàþhV`c 9¿«1V#¡Bcôqtºi£ÊgìZɆkZÓ=‹(Ãjz½è–î:‰–´&#åG¶öPsà¦5÷.‚5­ÉHçøâØOYŸ7­igDKZïv_#*ù«›ƒûß /Ks`²G´(Ý]-~œ“XqfŒRûöŒqWI† ¬‰®=ü|~ôR$/Sùº¡•Éflÿ(¶K´²’½fµræ8mªGô”‡žÀ’'ÏÌ€ýŠŒ8µl@e%¬ÖDŠî¾w­"?TfÔ%´²û¤õQ£ÒÎA©…wFš$¬é¢èµO]j3Âï\¥¯Xp£è(™9*-\DšÁšhZxÔÞ‰y®ù’ÐÒ\ŠŽBf?Iº’wF 'XòÎX­íÿM:ó¿iz¼we¬yB+cÆØþÑü <ëC}Õ›¥ JX²Æö;‰.'³-ïFJ°´4Û×O}NµŽïwÊè× ¬‰&!Å“UÓ 'ç¾|ÝÐÒ\¯^æÆò{!ÿîÁÊûoз´®Íî¾»×_vl¦Î$´²c3xôÕKgàÀ[µÓ‡ïå²îWòQ6¡•gñü›À?UN5Ñœm¢%Ñd¤ÑK©µªoèupÀ –höÃ?ÜOŸUe/¢Ù1 5Ñd¤a1fO©—·DòÑÊÚd€ý˜%ⵟb3oa9܈V.T`?â-`l¹%`c¤yKìÇlQ7¦Üéì6×4p‚µ¹¦‹4ã5à±Ö-‰vF´4×t‘掞3ܳ&'ZZ×d³åjXÑûm6&r$´"šÑùcETO“ >WÖ¯O`i®?ÖèÖJ!J¢9Þk¢[B¯>»^ç'N–¿{îßÑ7V §,s&^UŽ>N±L ­˜xíû^9ñõ7+™À’ƒe ·ÄƼÛîãMöúÛŸ íìYôÈšÚÓ€¬©M>³n«.“©”Ä ¬Ù8÷û¸˜žFz;â¤$‹þ¨KaL!\ ­ì|Œ‘vÌϹOo 7Ñôʼn–DÓR¶ûñcù¬š¦‹`iÓe€ýØÝvëO!Ž­ùœœÐ -0ÀþU´ÿƒjì)­ %#e€ýð@;ñ¶-kM‹hIk:Xû JSµ>Ü@Ö´¦ƒåŽ‚ï×úñž…ªXMB:=zµ‡}ó6à\\DKNëø–=û¸¿ªÞÍŒ`mq‘Íδ5ÛCLÏmÀI¤KΈҨ`â¾ Þ«Þm]é6ÿœÝãQXüðÆÂÖ>\8£åY±©ïÌ’Jh…†À5‹Ÿ^"’Vݰy¸O`iÃæêŠ’™½Ót_?‹oÙ—yúH ­8òŒ¯ŸÕÜ~þ)òtñ;¡¥éZí‡O?÷É ›LšÀÒÂfpþ¬ÝÝÂýMH’èEÑk¢7Ñk]îѼ/¾Aߺ‡j¯3j\U¨,Îëü„X¼—d)ÎÄqy¦:£óß oj§Ù>ñ,«W©k¼OhImR’ÿuZ<üɢɆDK¢;EûöaC{ã}c+lØ?Ûtßn51 òõ%5Ñä3÷Ö(úëdãegBKN>‹¤¶Ñåê“•å[XÓšÞk¬UýõeÒÊÖDoŠ/O³è{W’ ´°wuFçÏî;À®)Õ7/' 8ÀŠ—Ó?ÊU3o~(`iÀ?û™{ž§¾—OŽ ÑÊ€W²Ùˆzèå©öËEw&$´$šlÕú\òâb%’Öœl6⥬>ɾiMïŒhIk²™ÐGYÁ-7­IfkZ“Íf]w«-Ésᘕt÷‘ë(6FÌ%°¶4É…s.·pl¹ï<Ú´û-x´¡ýsúÙ¾óZâ­hž@ˆ–D“SV4~Om]/cÆè|G¯¹—/—ßÊZÙ5?WX:ÆÍô\ß/mÂÙ§3t,•³Ogéüiå´Ç–—7­é’¬iM: göåãÊ$N7…h…Ä^?Ϳڦ|ØÌëš`mÀwB¯nEäߺ^ÿ}»Qç¶WÉ´òyy[]i¶VÈ0]KØéQ:ÿwÇ~G†‡Í¿£ow\Ùvæé?û¦2Û|ø/Xšm†Qý? ùáñч\¶%^ XZœŒ¯Ÿî û/Xr6^c ®„Vˆ˜ñõ3z–þ=ÙŠÖiÀ Ö´&%í=#;X¾õë%8Ð %1¾~îce‡ò·ÊcÜ~–üÊNéÔ²ãKpöLN`mÀ锞¸ûrú|e~oKZóBÞO\ýôÇrÑ—¹æ3]B+sÍðúy¢pÙræ~O¾8Ñ’h:XÇ›å©ØÁmÀiàk6[%ŠÔEA0YkLvBKZ‚£ÃuG/Ûw»cÜínå8Ž·«ÎF´›üÔ¦3)ë­%´Â¤Œq3º«“ÍúD ¬M¶QtŸfý©ðe²™ñ“ÐÒdoŠ~™ù"ˆeXÓúP´íáôÛFá&´¢5KçGÁÍÒæ÷)YÍÉ&Z]):.NËC«œÛ›,•&Xp†×¯6Û8ë©îMk£l %­IgÍÙÈÖSüMô¡h %Ñp΢a›öT:ì"š÷Ú -‰&:tÕSï|tó¨4Á’¯ÀÒù¾ïø¨m½òK Lh…HY ×Ï\çœVe"e1©Ö,œli²§=”j»‰ž °&šÓ5Ê<ë§ïdSv͈®ÿŸ†¾EIG+ÎÄz5ÜΔ„„VLœA†Ëϸkl½ÝÀƒ´$šF:|çÛ÷Ãï.Vçˆÿ}q®ìá3V£–¥¸²gþð_°´²œï¾U>"ºƒÅÈ5[?qØÕy¦B´Â í_³[³Ùe6d|}kcF6œc[tky¡ñ$%^XiÀW3ÿòM)ýXÓšlè”â§{½KOçµDBKk“ŒäÛGYöÁ# B%´ryÆÐþµ†õ¬òoN , 8CûWtÏò§ÔY”<¥Û/Þ_1\ÇäX%ÏXÓº'ôŒÚ-úy‘ÁùËw½Vʹ?èÞ–&Y`ii² úZQŒ*bæUÑÉRÖD“¬eöÁ›,o°ZYšŒÍ_6|Ghò¤±•mkZ“,:,ô‡l¡›h)Ášh’í¹W}ê;y‹äÂöóGtù`ºh¥D+ÓÅ´€iëLý}‘©a ­lØ;i½ËqïL_L—DK¢Ig§–¨rª»)¬o—Ð’hUOTäjzìqº"XbR¦¬Ó_ðûwßD“ÖD“ Ïèå棊&¬‰&žiÖžú|^vMÆe&°&š\xN=Ûªþ„‘¼a¢¥u .´÷ó¦·™î,}ŸÐ’èCÑ?Ñzºs–D­8gL ˆ‡?¿|?D+o¿Xòx³©¢sýë ¿;.F¼öÿ4ômÿHcvJ¸ ,í÷Ì °ZO±zd/‡É ¬‰^=K6tg·P ­¬lžîÍIaû¯»‡¸ß¨´Q2À•²h¿E££úª™'Ñ’™‘Ï"¦*òWd­;%¬hå™!Ú¿dÕ‡·—›™mŠX1³Áø”ËŒÎaêËMcY¥ÖD7Šöcòjrfqª€’Àšhxg~赬úÞ{ãBòp´7*òêQu0-Àºo»=C÷e-웃i·_«ù”Ì£ ¬8éÌ]Ô056¿±ïdk¢IgÎFsµ‡>7Ñi®ÖD“ÎF}aó*'5Ѥ³1¢ÁìS™ÑÛþÁ½‹haÿL °aÑ"!îïVWrJÇžÑR\n 5*ÂÖÞ o²É ~Îí³ëO ƒU²Z4²áŒö注o7X ,m?5iýJ±:|vc$òÙ\îg”!xKC°öátîæ1_šGvˆGE‰í7蛩ÐVqBœG?þ0ÿ1¡¯I´Ou]E½ |‡H`åø3˜V`ËÙ±œoNRD3ž(5ÑäÒå»@muàoÙªIk€%.eÇ‹þ¦ÿTØDwÖÔH`I4sìµÙï§„ì#ÑA#Za$æ$ø±)ª{ëI„ùó -øâƒ9 ækcõ&gmvæ´%°6à$ø .¶å(ª‘ÎDK>Ø=kòSô`Ç€7è[ mšìµ¢FꟽÒÒ¾n`mÄIgfÑK™ëÌI`M4él—èü¥]i×%ZšlÒÙ^AÌß'tmuñ@´´ºHgûL§Ã§ëå‹èd¥D+¢;éì´ÝçÙr]ŒWæÌ× ­ìš|}±Óϫ͛ì§S–üö p©Ñ^í±0Ø–5¥]“ù þÉÍOŒzê}gIó„–æz$pBáêwÖÓ\ŸcQ2Möí:jž½Aß¼3,]jô¿©rÒNJ7JhÉJ¢ã:ç4ùƒïª ¬Yé¦è>¢àŽ|ÆéJ`Mtðÿížôy[ FÑK „9 »XðŸžnQÓ²Væš9 ‘®MâÔײÎÚ , 8sv団ª/(ƒE‚Xp0Ò®Ýme–Z¸-.NW¶ÛOó`ÅY`]¥–œ–üßÕ-mŸªï],±Ð’¥LŠ>Õ}»~ßî/ZϤ5Àš¥À;Û-²@Ê”½³´4 Öœ\km­òw–d­xgLhØ-ú™œ™ÜY@8µ'¶¨Àhux/¢Yé-%ÑLhðµ±ç ]äç¾G´2àLhØÝ­ÔFÿàæ gì„–D“ {„ºÞ~¤ó"ÑÒÒ$®W±Ï§›·›hZ8Ñ’hrár§²)8k%°6àäÂh‡Ñ'Þþ߉æžK°$ÚÒ‡'Â…X¿w7"†‡Ñ7èÛÒ$Yuw­èq†#»ˆV&›Y„éÔŠýã­Úd$ó3Üù *•><í›DKNF2G[ëúÚiÌ€–D“‘,ê™ZÓ“SJ°f¥d¤]Wý©•ÔEëäW-iMFro¡·Ÿ{ M4œhI4iÛ´8ß뢹ñ-‰&#báËË¡ýq ­ì¹é´yâq".çÝ)`#ö ú–XÆ…}ÜLjÿàr`%µVF|'Ñæ[WÿNtÒDs²‰–D“ŽSÒë¹SÝöäˆÿ}qøâ'`õòãxCãËZ2´EÑnÙål£>“d€%>cpø §ýa”t–ÀšèMÑï"¿‚3f.5ч¢£JYúA—žJB+&~’™ùÖgz?ÙW¬ø× ,9ò¬ÚÜËh6^ïo?%¥gÕþãç½5Õõ_” ´4à¢Wߧ·W£ÛºN¢VÖuš®jç”ó”…~³É?g~Rx0½+¡¥1#!E?ßVÊ^ÞŒ;@kFJBЏóÉ‹.S“Zš.R›q@—oŸÐXÓš„Ô¶öÔ«”v–tJhAëÉèüÓÎÜ«< ÙMë4×+ZOFå÷Pf”ôPE³Œbk¢IHî„—6\ðf0—/¡…Å5A´ýÕS¥a8Á Oç»_æ;¶Õ¿id-iM6stí‚—ÍwΓïÏuש·ˆ›òoз`qÎ×pWcNt2|÷0Êó}B £“±ýgøIuö‡¥·’Æ `m #¡ÍmòÃ(+þ'°f¥$ñKd¬ÊŽ!;­%°$š±ý'ª¸÷®7=ìW“ÐÊaÉÿ3Gµ:ôµ9Yw?¡%Ñ$C7ÏQŽþÒ–¸`mÀ¹¸¢úpÔ”E“ÖD“ §E]¾‡p»ÿŠž|~O`åis²ä¿ošçø!]õ¯F:ú,­kFןحOô–œéY ¬ 8Ùlõ⃦ßN>‚'´dád³å¶ÉÚÞov€‘WtolÈôæ"hVTØ~ƒ¾í>\›ë”Õëaê,;“ЊgÈ`¤ã>ÛÔwŸt^$X²RçÇ%’•2Эy”Ð’Öp‹è­þPGñ–Â݇`i08ÿXÔ>CÝøFM°&šdh>`eÊUgÓœXÍ[¤èÊšÊ4¼óí^¶÷.O.¤’æ‹h…T^v/ÑCß±™UÐ’hòÙösî|ªªq›..‚µé¢w¶çZct5vl¤kR‚%V`xýÙË}œ.‡­¥ÛüÖD“¶è0¹JÃ`ÈtKÎðús|ß{µ–ÍŒ#N´bf ¯?§_ØO g.Û&Ëîß}jœ}t'-­8› D7¿¾æS«‚›h^ú-‰þ÷»Ïÿ•ˆOU|ßÑÙodÿ[ô-ëßt;}Œ§K¨›ÚÆ/ZRÛ(zD•Ò‡ÊÇ·0ÃMÉk dS´•ñº¶•HÒhiŠÞ=n;UozüÆKü–´þ­íí舵+‡ŸwN騰³¿£ovV¡v­ãßòÒˆÿÆåüVFü7´?ÀÍJ¸ ò°(`ié»{±ÆÈ»•ý_ÿBï8?݉øf*-‰þk¦BZˆÜùõÔßá&šk“`Mô¢èè°°ôúõó×Sù-Y ©ºy÷Väµ¹ÒêXÓšŒ 0‹éï‹pˆÿ@KZ“‘¢öNÑ”ŽE.$XÒú7¾>Ð3Špõ}q,šÁšhRÛmÛyz¿ ø¡l •ÿ­Úïàè¬UieÑ ›hIôHàåfzä¹ð¦~·€¿£oÎvÔšOO —ɶ¤5ÀÚd'ÑñÄ÷Çä4_¯]×ôìÇÃ=›hå:’‘¢³¶wåò_ýp…­¸g“Œ4"&+úˆÛæ¡,m›“Œä‡ß…MMÆ›“ŒD°tϺÈHc,?é{®%­–ŒtÑP¢³öÜ]®ó3WÃÚü;úÊý~Ø:kšÎ†=ÙÐ %-®®±wdTËÆ`mÄé`M?’‘Ï"©ºZ×/TÒEÑÒˆ“϶ÎÙOͤn¢9_D+¢wÉàÓW“ã#ç&-¸[ègöª¾ÌÄÃKÓµy µEóè_ô›3ÄH7ŽD+gˆMF:Qwì1Éê2]É+%Zš.2ÒY=j¤6]4y˜hI4霾}ÖtÑÕ Z V¨%nÍô»Þ¨$´$Ú(ºû¢ŽB4âî³;%,í>{SôðùUM±BÇ`Mô!zÖíN“~±}Êïð} qlTÛÎ(穽Ýe²-é ´2Ùt xý¸©§òÍí'¡%ÑÔº¶ZÇ,wBº0i²3‚¥úéÝ}º†|/1[¡h€%?ƒ¢£eæìòEШiÀVHüLжn+kÝ(`MkÒYsCÙ¥èt–Ö&Ñ’™‘Îâ(ÔJ×ON¼)MhÅ?¤³ˆµ¬cÊwPgR2Àš…Š^¾8F“纓QVæz•BÑÇϹC/â;:6Ñ‚…¯B6ë‘QÒŸ>ü&š‹‹ha®W!›õ(¹¼älºqH)+[×*²Gµ7åC…Š·®¿£o[9¥Û«³‘ìýçËÿE {•$:êLÛCÕmÄ“d€µ'½.ÅÚÝhZãô’Ð’Ö¤³1ÂÃ2ýZ¢“I‰–Lœt6¬ŸWd•ú’vŸñª;óyc$’!Á#‘ ýCbïR+!®R)`…‡W%Îb¥þäÞKZÓ'XÒšáu¶h{oòI•ïï ¬‰æ®9§Ÿ±Ùâç#UzgÓ×¹ Tñ}·ð^;¡• ¤Ò;ó©Þ6âÖnœÂuM°Ä)•&îþm9 9Vo Ñiå—Åÿ޾E#qø±wÍŸ(^eðª3µB>sg-J#©/ 3ík#N>[-ΪO½@.,žæ‹h…ÅÓ€G¥žú˜Ã~ÍÅI´"º‘‘Ö:ÎŽG=cÏ’”XðFF²Ñ–úas51Ñ’ÖtÏ,²¹õ~g¯$©¯XÓštf>Ssm9£z1l-¡%­IgfckåÎâ7&%‹­8 | vßꞯzg3íkNïÌ¢4ž{x²h®-‚5Ñd³ÝlEóa}®¹-Í5?|÷9&ä°œ¸ÿÝ?þ޾eIqÄ÷Üñ´ð‰ÓÍ!ZQ»“ÎÜRF=[>è}‚%/§“Îö®¾.Ù£åÓfk¢Ig§úŸ2å̲™ÈѸéwP HMhÅÁê$Ã3ýøaò¥ßJwKžF'ú`ÇúÒ-%‰X›.’áññZ?]ÁÑ|ãK`MtšëÈsZòúX…v-FÂ&°&úP´»¨qÂ×÷ÜEÙ@+{î(mQapª'¾ÅsSKZpa«N¤f¢kk‰„–´nûr iïN£ÿn|o爇¤v{¯*—ïŒYHhIíAÑkìvl‰Äg§h gd«6Oô\VIœX ,‘8#û›oÙ­¯î¹X Àš‰“ÎZ+«ý„©kŽSrBKN2Œp•ȇïSœÿº kê·â‹–B´b¤ Î6ÆnjG_|AOhI4—f¯Ë}$y»_ƒ³E°d)³Qt³˜í"¯Î5ÁÒú`^@t©èûƒÄýÁ8ó„–<Ù ÿ ­¹ß)óÞ oÑä…¾ö²yTk%&X›ì$Úyû \–D§XMFrG¡Ï2uWãàØ•ÐÒdÓÁQ >”¿iMK!XÓšt6ü¬è>šœe;] ¢­ÙÉCVçÆ}Óš ›`IëE:§ô9޼ñ1¯,5Ѥ³Y∮ߧðpŸÀM¹Oa`$†þ؉ðr±¶.¢ÿóá·¹¦5‡^žhò2&5­é_Í9W/UoFIi€5Ñd³¹öéUîÊ:ùº˜Àšh²Ù<çÓ‹¯ä+-Í5ÙÌ7ûàYëäU¬iM6óÓH·­×(]‹ÇE¢­Ø=ïýßm¹éüá~Y‹gByÌÈ KcÆÐüfÅÝ–õPUü&šFJ°&š\hÝÚ©zoˆÅ¸Ì„–¦‹\mØ·=¤%ßÞsÉ kZs®£ËôÞrHhÊM`MôLh+§"FýÝéÞð,ú} £åÊ6?/ªýΣ5ò™î;J)º©$3Z2òÙ.«ÎóP]â2_i×$X›/òYÜÚmÓ}ÒÉ`‹„V¼³M>ÛñÿÁݳXr‘˜Ðö©Q¬U±¤5ÐÊ\3x¸×SÎSñ¯›hš8Ñ’h2Ò™ÑDD/Eµ·œÐ’h2Ò‰&õ©îØM4I…hI4¼³^â°}°c3=+¡%Ñ‹¢}¾ÜlÕ2 “¾BKëšez¢Úÿ|Õ“Ty8Åÿ§¡oîFµÇ˵¼o›7µ7?`MíCѾaÇÆF—É΃´2Ù íQ¨§=ùqÊÿ+ú–`E¯%º„àÈxí„–Ôn]Çhõ!·ë6ÙI2ÀÒd3-À.~žYOU|/Z3¤4¡%­EÏ5N{²Ûãä¤d€5­Ó\G—ž­'X­“d-iM>k¥ôÕåšË)i35­É)QOøÔ§ÞÚ7?¥Q6ЊŸÂÝhˆä>ÎÔÝJFö÷(Û5Ÿå1ãú X3cd´þg=ø¤·ŒÒÁšèJÑçDÝÊÜÊ4â@ ÓeŒìå.ÎöÔOã–»Âï£ìaßᨊSš,…`Å)µB:‹èúús9 Õnù¯ÖÆLð„V´fd÷ßî'“…ÍuM°¦5Éнºr†ÉdL|I`ia3- Ï¸ìÜrrðÜI4ÀšÖ¤³hiT»~¼7^j$´4פ³UÌ…‡Ò-·çÚ"XpÒÙêQ\bË©F³Ó‰VèŒY}™o[o”c5‰ZpÜõ(Ì­tÑÜ»ˆ–DÓ;s-j=¸OyãFlö/‰ÿ};c§3ÚÃcÀM6Éúj»è''cIB+ƒÆÈþnÃü\ _‹§:Á-0²¿›ùY¨é½Q‘ý -iMF²}¢œ”^Ï0Ö´&#íz¢%cÓµæöC´¤5ÉÃ(æ.»•,€’À2²ßé;.èõ7§ÃÅE°6à;¡ÍÏhtðηcdÿô-Õ(øv¿tèþør •Éfdn3£Lù"(y•K#ÎÈþ~šÙjúå@çò"ZÙùÙßÀ— ½&“eÑ@KN:s'ü¸—z_š·xm®k‚µçpv9ý ¨ß»Ý§#vì ú–ŽM*=ñ2ZêôÜÔ¶ôá¿`Mm¬®QªEeJ9h -M¶Qtû<öp u£…N´Â«?­HĬ©‘À3´”S¢”¡~ÈfòJBKk§Íñr°ÆRƒÞŒÁ1 ,iÍÐþQkkû|‡Q !¥Vh(+!¥6êÿ/tㇷn§õ„¾j3€¥Õ5h¤õÕ©S/ÏýZ›_7´²º3¢‡È8øHÉH‰–DOŠ>ѦZÎt]¬m”ÀÚ€“ÎZ凌§éºiÍ'ZÒšt %U/¿²XÛ(5­IHÍÜ·k]73†{'´¤5 ) Èï-_È/¶9H`IkFö^jÙú›lÊUM`Mt¥è^Ö욌öNheÀÙ?ü êëCïŽmŒöNhI4ÙÌϪQ9FÁZ=) °6à´÷4¿ú5³wÞß’=kGCy̲ì_´4f$$ñ9Mopý*!ÿuC+¾KÈû±§ö¾‹üzoòoз„êôá£Ç³Ñ/¿;0Γdÿ }‘6]wHçØ¨ þîË¡ Û>ßK}^+™ À’‘3¶?î*¿]6ÕLaŸÐŠ™2¶ß7Ü:} е&—¬iMB›³ECÙ´æÆI´¤5-%®äÞwrYo€5­éžMWãÄÁ@MïŒ`M4ÙpÕRRÈûõÁH¨±œ†ûA"Ç»'Ýd¤D+OºÌ k–Ù÷,êá'±!ÁÒágeôÚÆ︔Áýcíè9ôg 6+Hhe`pÿˆ2oQ'[=µ1^/¥sƒûG„¹'©ÓÅ0ª–¦‹á¬#ºcwa½›.V탾,älX¬†‡b¸·•½Ó‡ÿ‚¥•Íø|ß2­oÓCR-m^D+TÊøüØøâåáná¢B'Z1qVí»öv–^Èݘµ“Ð’Öd¤W[î k–$¬™8yx;±ú&Pdf¤`B+<ÌØþèK Âj­6KN°Æ)¤³õ+Cn×¼’•,-.ÆöûùÜÏ0…Ç.f–¶l¢3c׈ë|›r"àÚI2ÀšÖôÎNßÇÖ’ý†·$°&:}øÜµQëw$Îðüñ݈]¯og LhiºHH'ÞœöC"àmÌÈ kcFBr×Ê\nE¸¡’ÀšhÒ,-"€õ,ãÚLhiÀ7Ewg³Ÿ¾÷ŠÖ rO`MëCÑcY«ßñ‘’è¤4À’h½Íh½rì)’ö6à²VœÏ÷Ѳrvk~w¼?ð¯Þ o˜x´÷ AçaÚxBKjwŠ®q-‹/6L`m²E÷Rl<Ä(ÞD'¥ÖDOŠ^̬gbã[Zð4×Î ½~×ÁÒDŠZM:‹&áu zä»CCäg¤ß?§Ëîp2¢w˜%ÿ#Î#*'«ŒôŠfýº5KIZû_Ï>êÆg,qšÀŠèÍÄ€ÙËy •-%íD –²™0£ãËü‰êÑDs®‰–D7Šž=jÈËÑH íO`åü±Ú?ûî¾™=æ»Y8‰hÁÂ7Ã%樻®úèqp8X - 8¹p¸WO”ºh®.¢%ѲɪÖ䕨ä~÷Ü¿£otFwìî&W§°š`ma“ÎFD,ô'÷쿾äžÐÒˆ“Îf™‘»¯Æu«ø&°¤5Cûgf­¥ªÛ} âM`M4ç:¾ùæm³îeBK¢E»¶®‡ÌmFW&´$:}·Eÿ,„f¾Û~:âÖÞ o‰²›jo?ø“©”u/X3ñC´{ÃÓð’ðŽT1=ûŸgUéÃ9âKÎ ô~¾.ó¬§h¤‹©¤A#Z1†ö¯ºzë½ËÁH«&µVbFúoÑ D¾ëdqïÖœŒT÷Z}˜‡k,~ŸÀšh2R«Ë­åƒÝ'™8ÑÒ\“I[óÍ‹­»Þ®Ü½Aß21’Ú¸V?P›é+ -©MFŠkŸˆ¦¡-‰>}Jo&7ÞÌ I`éÌÇØþÕý˜Ük“y˜¥]X2qÆö/Gú°~ šN°&štÖGëÅ>ØtÓÊ&Z™kÆö¯hÊQA²#ϤτVùI:s/¥·ýÔ×û&gˆ„–Ds]:ý·éçÅ™$¬Í5¬1V+¦yØÌãHhi®¢£UgxrºiÍuM°¦5Ùlœï_:›åZÒšl6£èLCJÛ»`rqÅé%^ŽäÝg¡0ÆôM6-\…ùVOºÌ^I`é¤Ë¼€å~œÉå?«'Ù@+óÖôÍ£=Ýß´NÓ°¦5Épnç3½ý+ãçë–ó–{ý©þ¥ì¹L†H`iÏe^€»fñ´ð.q‹×&!¬iM2Œ²/§VýxŸFœh…Xó­(…Ûê<̃.Ñ’h®k+£ø°=,ÍÛ⢉­l|L XVç,O7o73£“C°´¸˜°lF[×§‚7—gzB+ΪýËväTÝ̘ ‘Ð’h.M;ѾwÈT¶¡EÜôíÊ“½_‰äõ;£ÚD+vÆ Ûk÷ˆ¿Ócx7#ûW¼ŸØÒûì¬t«A´ôád$÷˜†=Õ¼‘!}$‚%2ddÿÚ>„sêMÁ_è¯Z²R2Ò)¥T3ùN=Í5Á-œ„^Q-Iw°6¬¿£oÁùt5N<ƒï]ïVzË Iƒ6f±W£ó-À’©01`›eí¢7÷l¢SÙiÌœZWß²ÄÂÉ ¬iM÷ìœ=ÖSM§‹è¬4Àšh¸gVzܪëý6c®ZðIÑ+ú²[“”©Žö•¾áŸ½Û6š˜¼AßÎ/‡_M|gÿ`ÐÒ—- ¸Ôjíî0|×Õ VšÀ¡ñ%Ûj´þ¬:-0 $5+å€×iñ¡¿1l:¡•gR‚sp‰ÀN5_è•ÇñuKZ3HÑZñþÅv6SZÒºQtôØø’ÀšhúWûăn•ë(¦€Ts’ðùŽë²³[I°ò}˜”à'îM´š~rJ²VNN|jó_ÊEeR&%$°Ä¤= xd:U¹YÁfù–,…Í ììáßžxÚt‰V‰9 Q3 Ò+îà›Ö\škZƒ ݳÞ{n½Öôa¯µ„–´½Ê8ç gUB+ÎPX?‚U‹d%ÕÂIà ¬Yø¢èÝÝÁz(^|›ëMÑks ݵÌåÝ1dNÂô-jš_^}aú¨É/£§Êþ+ú&+ÛÑ=ºyÈÙ÷‡im ­Ø87wV·ºŒÃM`i¶GÒ:¨Ô&oº L`Mt£èe°žœÒÛ€s}- 8ù¬ú|¦»3-€5­GFGý¯ßÓË;gRÂnµû©K”=ÌÐJhiÌHI­9› 9Rp³ºwkcfÝg8hò1™õlX½)zX‹ÛeY4éŒ`Mô¡h?°ù‘D?û´¤6ÐÊ\3'aÇio¹ÿÖfEÚ–´fN‚Ÿ[ÛZ]O<ŒÎOhIkRï£ÎcêëKŠzK`MkR_³öùôvsÓšY£ï-{¬ÿ˜Àšè4׿+냲~‡à ­ð0sÜiYÕnò\³ `kZ“ ׉»ü‡ç“›èdfk¢¹>ܶµõäû³xØü;ú¶°iâ}‹íɾM6õ&Z™l&%8®ÍñsB—È~<Á2)Á¹-º„êÎ4Ã[XšlÆ=û\EABIO²€5Ñi®ýËçD4ëßE§HÖD“Îv™¥×©ßi¤£*Ñ’™‘ÎÜ)]NHrËËb²·ƒý4¤§C$+%ZñS˜±ã1×fÓÿ˜–Ð’hÚÙ)ýÿwÌn“MëD¬_ד)ßZ™l6 ØQZo²W˜Ë—Ðʘ1/ {O;S¾¤eØsKtƼ€SŠù–^ŠÑù -iÝ)úÕÆýÈQ¸Æ€ „–DŽ ¼$¼3Ò’ioз¼´Bµgs7}²7?`m²EG.x²‰C‚ZqøH‘ïÙËã‹îmaSm¢¥…½)zøßÛOÿ¼šNhIô¡è¨×õºâViâD+ÎÈþã'ˆV÷VSFOZ×Kfv2Ú=ùƒºïœR¶xƒ¾eCÐÄ[Y³µ‡f7G…sM°ä¨0´ÿ4÷Îú%KD$´bg í?Ñë.…uÑ´3¢%Ñ“¢Ýâ[éòbuQ4Ð’‰s®_U¦œ-t˜Ü•Àš‰“Î|y¸¡Ê}DNZ×kfF:ë=ʵ>Ôº‰þÿJ;£\IBŠþÏb^Ô²JYÉlaö¿‚®trMDï“þ?–Š(ø½æD£9»¬†âó‹ãE\" ô^Í®„©â Û1Ä%Ö[iHíßÐ3›2ÊîùjÞU¾™l\a]Vú±ñ‘Ò†G ½Ÿ *-RÍê@}÷Eð)Þ&TEE£Eª5뚘¯m'x#{ )UA‹T-I±ñË_,hJ4Z${(´yï×Ïò‰p~ Ì}p´HwÖ­ªþôËê 4Õk´H·U&¼ÚD³^ãP#Ìõ-Ò}ë7Lü\‚ǪÍô3ûuœz*|a£!p7ДhØ/Ú^³Js’‘fI=¨fS3û­ô¢.Μr3Ñ8·æD£5{jm­vþTµ ÝšúàhÍ»&uóuD‹ 4%­™eŠçN_÷¹‹Ö¬åf)]t©aÔ@3ž è÷»Z-N–Ǥ×ý5œš¡5kvÇörJÛÍDãP#̉Fkf~'»·gj†ƒ4£føæ¿X‚cM…}ðFi\_­éY Í™U“UgÆ;l¼£;ÐT·ÑœuÝé>—³¼šÍ.tS³ só-V,a›.c•tõ×UèâÚ"Ã`Ì5a·Útö‡¬hÜ€ ̉ÆeJ×…xj™ ._ “óÅbê÷oföÐp€©™ÉùÚa{ 1‘zö.ãÿÍ`=Óå–ÔRiјì=Àœh´gªßêÌ8ÒŒÁôzÝ2ëö¡Â!ß&5¦áIô@ïScTô×JúIß«fw‰À5ßøypKxÙìmÝ#íî=Gš--‘s-yƒ8§cõRÎE‡Ú}®ÝïîøÎç*önÏás-y7-Çp‰ô¹,•d§bÅhÊa=mEï|Žk)ÙÍkŽŽµÜ³FŒìOeÒs:/éMË?%ñ²½™MÉ.‘뮞s´7¹)úZjê®ßwDÏ?/\è¶<žU£d‡æwÍ1w±AÑî‚¡Åuží:fÄ>W‹Ïe¯õ|K/û½kù’š%ò%ŸŒ¢Ò µ\–^pM¿ÑÒsº¼à’ лöÆ´g× û Ðïe€ö´…£C-ÏÞãhO×8ÚoŽõÛÂh¿ôŸÿð@• ×*nam-1.15/ex/rbp_demo.nam0000664000076400007660000344431506610761045014017 0ustar tomhnsnamv -t 0 set_rate_ext 2.5ms 1 n -t * -s 100 -S UP -v circle -c red n -t * -s 101 -S UP -v circle -c orange n -t * -s 102 -S UP -v circle -c yellow n -t * -s 103 -S UP -v circle -c green n -t * -s 104 -S UP -v circle -c blue n -t * -s 105 -S UP -v circle -c magenta n -t * -s 106 -S UP -v circle -c violet n -t * -s 107 -S UP -v circle -c black n -t * -s 108 -S UP -v circle -c white n -t * -s 109 -S UP -v circle -c grey n -t * -s 110 -S UP -v square -c black n -t * -s 111 -S UP -v square -c black n -t * -s 112 -S UP -v circle -c black l -t * -s 111 -d 112 -S UP -r 8Mb -D 1ms -o right q -t * -s 111 -d 112 -a right l -t * -s 111 -d 110 -S UP -r 800kb -D 100ms -o left q -t * -s 111 -d 110 -a left l -t * -s 110 -d 100 -S UP -r 8Mb -D 1ms -o 65deg l -t * -s 110 -d 101 -S UP -r 8Mb -D 1ms -o 90deg l -t * -s 110 -d 102 -S UP -r 8Mb -D 1ms -o 115deg l -t * -s 110 -d 103 -S UP -r 8Mb -D 1ms -o 140deg l -t * -s 110 -d 104 -S UP -r 8Mb -D 1ms -o 165deg l -t * -s 110 -d 105 -S UP -r 8Mb -D 1ms -o 190deg l -t * -s 110 -d 106 -S UP -r 8Mb -D 1ms -o 215deg l -t * -s 110 -d 107 -S UP -r 8Mb -D 1ms -o 240deg l -t * -s 110 -d 108 -S UP -r 8Mb -D 1ms -o 265deg l -t * -s 110 -d 109 -S UP -r 8Mb -D 1ms -o 290deg c -t * -i 0 -n red c -t * -i 1 -n orange c -t * -i 2 -n yellow c -t * -i 3 -n green c -t * -i 4 -n blue c -t * -i 5 -n magenta c -t * -i 6 -n violet c -t * -i 7 -n black c -t * -i 8 -n white c -t * -i 9 -n grey n -t * -s 200 -S UP -v circle -c red n -t * -s 201 -S UP -v circle -c orange n -t * -s 202 -S UP -v circle -c yellow n -t * -s 203 -S UP -v circle -c green n -t * -s 204 -S UP -v circle -c blue n -t * -s 205 -S UP -v circle -c magenta n -t * -s 206 -S UP -v circle -c violet n -t * -s 207 -S UP -v circle -c black n -t * -s 208 -S UP -v circle -c white n -t * -s 209 -S UP -v circle -c grey n -t * -s 210 -S UP -v square -c black n -t * -s 211 -S UP -v square -c black n -t * -s 212 -S UP -v circle -c black l -t * -s 211 -d 212 -S UP -r 8Mb -D 1ms -o right q -t * -s 211 -d 212 -a right l -t * -s 211 -d 210 -S UP -r 800kb -D 100ms -o left q -t * -s 211 -d 210 -a left l -t * -s 210 -d 200 -S UP -r 8Mb -D 1ms -o 65deg l -t * -s 210 -d 201 -S UP -r 8Mb -D 1ms -o 90deg l -t * -s 210 -d 202 -S UP -r 8Mb -D 1ms -o 115deg l -t * -s 210 -d 203 -S UP -r 8Mb -D 1ms -o 140deg l -t * -s 210 -d 204 -S UP -r 8Mb -D 1ms -o 165deg l -t * -s 210 -d 205 -S UP -r 8Mb -D 1ms -o 190deg l -t * -s 210 -d 206 -S UP -r 8Mb -D 1ms -o 215deg l -t * -s 210 -d 207 -S UP -r 8Mb -D 1ms -o 240deg l -t * -s 210 -d 208 -S UP -r 8Mb -D 1ms -o 265deg l -t * -s 210 -d 209 -S UP -r 8Mb -D 1ms -o 290deg c -t * -i 0 -n red c -t * -i 1 -n orange c -t * -i 2 -n yellow c -t * -i 3 -n green c -t * -i 4 -n blue c -t * -i 5 -n magenta c -t * -i 6 -n violet c -t * -i 7 -n black c -t * -i 8 -n white c -t * -i 9 -n grey n -t * -s 300 -S UP -v circle -c red n -t * -s 301 -S UP -v circle -c orange n -t * -s 302 -S UP -v circle -c yellow n -t * -s 303 -S UP -v circle -c green n -t * -s 304 -S UP -v circle -c blue n -t * -s 305 -S UP -v circle -c magenta n -t * -s 306 -S UP -v circle -c violet n -t * -s 307 -S UP -v circle -c black n -t * -s 308 -S UP -v circle -c white n -t * -s 309 -S UP -v circle -c grey n -t * -s 310 -S UP -v square -c black n -t * -s 311 -S UP -v square -c black n -t * -s 312 -S UP -v circle -c black l -t * -s 311 -d 312 -S UP -r 8Mb -D 1ms -o right q -t * -s 311 -d 312 -a right l -t * -s 311 -d 310 -S UP -r 800kb -D 100ms -o left q -t * -s 311 -d 310 -a left l -t * -s 310 -d 300 -S UP -r 8Mb -D 1ms -o 65deg l -t * -s 310 -d 301 -S UP -r 8Mb -D 1ms -o 90deg l -t * -s 310 -d 302 -S UP -r 8Mb -D 1ms -o 115deg l -t * -s 310 -d 303 -S UP -r 8Mb -D 1ms -o 140deg l -t * -s 310 -d 304 -S UP -r 8Mb -D 1ms -o 165deg l -t * -s 310 -d 305 -S UP -r 8Mb -D 1ms -o 190deg l -t * -s 310 -d 306 -S UP -r 8Mb -D 1ms -o 215deg l -t * -s 310 -d 307 -S UP -r 8Mb -D 1ms -o 240deg l -t * -s 310 -d 308 -S UP -r 8Mb -D 1ms -o 265deg l -t * -s 310 -d 309 -S UP -r 8Mb -D 1ms -o 290deg c -t * -i 0 -n red c -t * -i 1 -n orange c -t * -i 2 -n yellow c -t * -i 3 -n green c -t * -i 4 -n blue c -t * -i 5 -n magenta c -t * -i 6 -n violet c -t * -i 7 -n black c -t * -i 8 -n white c -t * -i 9 -n grey l -t * -s 112 -d 212 -S UP -r 800kb -D 40ms -o down -c background l -t * -s 212 -d 312 -S UP -r 800kb -D 40ms -o down -c background v -t 9.08 sim_annotation 9.08 0 Phase one: all algs slow-start + -t 9.09409 -s 112 -d 111 -p tcp -e 1000 -i 0 -a 5 + -t 9.09409 -s 212 -d 211 -p tcp -e 1000 -i 0 -a 5 + -t 9.09409 -s 312 -d 311 -p tcp -e 1000 -i 0 -a 5 - -t 9.09409 -s 112 -d 111 -p tcp -e 1000 -i 0 -a 5 - -t 9.09409 -s 212 -d 211 -p tcp -e 1000 -i 0 -a 5 - -t 9.09409 -s 312 -d 311 -p tcp -e 1000 -i 0 -a 5 h -t 9.09409 -s 112 -d 111 -p tcp -e 1000 -i 0 -a 5 h -t 9.09409 -s 212 -d 211 -p tcp -e 1000 -i 0 -a 5 h -t 9.09409 -s 312 -d 311 -p tcp -e 1000 -i 0 -a 5 + -t 9.09589 -s 111 -d 110 -p tcp -e 1000 -i 0 -a 5 + -t 9.09589 -s 211 -d 210 -p tcp -e 1000 -i 0 -a 5 + -t 9.09589 -s 311 -d 310 -p tcp -e 1000 -i 0 -a 5 - -t 9.09589 -s 111 -d 110 -p tcp -e 1000 -i 0 -a 5 - -t 9.09589 -s 211 -d 210 -p tcp -e 1000 -i 0 -a 5 - -t 9.09589 -s 311 -d 310 -p tcp -e 1000 -i 0 -a 5 h -t 9.09589 -s 111 -d 110 -p tcp -e 1000 -i 0 -a 5 h -t 9.09589 -s 211 -d 210 -p tcp -e 1000 -i 0 -a 5 h -t 9.09589 -s 311 -d 310 -p tcp -e 1000 -i 0 -a 5 r -t 9.09609 -s 112 -d 111 -p tcp -e 1000 -i 0 -a 5 r -t 9.09609 -s 212 -d 211 -p tcp -e 1000 -i 0 -a 5 r -t 9.09609 -s 312 -d 311 -p tcp -e 1000 -i 0 -a 5 + -t 9.20589 -s 110 -d 105 -p tcp -e 1000 -i 0 -a 5 + -t 9.20589 -s 210 -d 205 -p tcp -e 1000 -i 0 -a 5 + -t 9.20589 -s 310 -d 305 -p tcp -e 1000 -i 0 -a 5 - -t 9.20589 -s 110 -d 105 -p tcp -e 1000 -i 0 -a 5 - -t 9.20589 -s 210 -d 205 -p tcp -e 1000 -i 0 -a 5 - -t 9.20589 -s 310 -d 305 -p tcp -e 1000 -i 0 -a 5 h -t 9.20589 -s 110 -d 105 -p tcp -e 1000 -i 0 -a 5 h -t 9.20589 -s 210 -d 205 -p tcp -e 1000 -i 0 -a 5 h -t 9.20589 -s 310 -d 305 -p tcp -e 1000 -i 0 -a 5 r -t 9.20589 -s 111 -d 110 -p tcp -e 1000 -i 0 -a 5 r -t 9.20589 -s 211 -d 210 -p tcp -e 1000 -i 0 -a 5 r -t 9.20589 -s 311 -d 310 -p tcp -e 1000 -i 0 -a 5 r -t 9.20789 -s 110 -d 105 -p tcp -e 1000 -i 0 -a 5 r -t 9.20789 -s 210 -d 205 -p tcp -e 1000 -i 0 -a 5 r -t 9.20789 -s 310 -d 305 -p tcp -e 1000 -i 0 -a 5 + -t 9.26308 -s 112 -d 111 -p tcp -e 1000 -i 1 -a 0 + -t 9.26308 -s 212 -d 211 -p tcp -e 1000 -i 1 -a 0 + -t 9.26308 -s 312 -d 311 -p tcp -e 1000 -i 1 -a 0 - -t 9.26308 -s 112 -d 111 -p tcp -e 1000 -i 1 -a 0 - -t 9.26308 -s 212 -d 211 -p tcp -e 1000 -i 1 -a 0 - -t 9.26308 -s 312 -d 311 -p tcp -e 1000 -i 1 -a 0 h -t 9.26308 -s 112 -d 111 -p tcp -e 1000 -i 1 -a 0 h -t 9.26308 -s 212 -d 211 -p tcp -e 1000 -i 1 -a 0 h -t 9.26308 -s 312 -d 311 -p tcp -e 1000 -i 1 -a 0 + -t 9.26488 -s 111 -d 110 -p tcp -e 1000 -i 1 -a 0 + -t 9.26488 -s 211 -d 210 -p tcp -e 1000 -i 1 -a 0 + -t 9.26488 -s 311 -d 310 -p tcp -e 1000 -i 1 -a 0 - -t 9.26488 -s 111 -d 110 -p tcp -e 1000 -i 1 -a 0 - -t 9.26488 -s 211 -d 210 -p tcp -e 1000 -i 1 -a 0 - -t 9.26488 -s 311 -d 310 -p tcp -e 1000 -i 1 -a 0 h -t 9.26488 -s 111 -d 110 -p tcp -e 1000 -i 1 -a 0 h -t 9.26488 -s 211 -d 210 -p tcp -e 1000 -i 1 -a 0 h -t 9.26488 -s 311 -d 310 -p tcp -e 1000 -i 1 -a 0 r -t 9.26508 -s 112 -d 111 -p tcp -e 1000 -i 1 -a 0 r -t 9.26508 -s 212 -d 211 -p tcp -e 1000 -i 1 -a 0 r -t 9.26508 -s 312 -d 311 -p tcp -e 1000 -i 1 -a 0 + -t 9.30769 -s 105 -d 110 -p ack -e 40 -i 2 -a 5 + -t 9.30769 -s 205 -d 210 -p ack -e 40 -i 2 -a 5 + -t 9.30769 -s 305 -d 310 -p ack -e 40 -i 2 -a 5 - -t 9.30769 -s 105 -d 110 -p ack -e 40 -i 2 -a 5 - -t 9.30769 -s 205 -d 210 -p ack -e 40 -i 2 -a 5 - -t 9.30769 -s 305 -d 310 -p ack -e 40 -i 2 -a 5 h -t 9.30769 -s 105 -d 110 -p ack -e 40 -i 2 -a 5 h -t 9.30769 -s 205 -d 210 -p ack -e 40 -i 2 -a 5 h -t 9.30769 -s 305 -d 310 -p ack -e 40 -i 2 -a 5 + -t 9.30872 -s 110 -d 111 -p ack -e 40 -i 2 -a 5 + -t 9.30872 -s 210 -d 211 -p ack -e 40 -i 2 -a 5 + -t 9.30872 -s 310 -d 311 -p ack -e 40 -i 2 -a 5 - -t 9.30872 -s 110 -d 111 -p ack -e 40 -i 2 -a 5 - -t 9.30872 -s 210 -d 211 -p ack -e 40 -i 2 -a 5 - -t 9.30872 -s 310 -d 311 -p ack -e 40 -i 2 -a 5 h -t 9.30872 -s 110 -d 111 -p ack -e 40 -i 2 -a 5 h -t 9.30872 -s 210 -d 211 -p ack -e 40 -i 2 -a 5 h -t 9.30872 -s 310 -d 311 -p ack -e 40 -i 2 -a 5 r -t 9.30873 -s 105 -d 110 -p ack -e 40 -i 2 -a 5 r -t 9.30873 -s 205 -d 210 -p ack -e 40 -i 2 -a 5 r -t 9.30873 -s 305 -d 310 -p ack -e 40 -i 2 -a 5 + -t 9.37488 -s 110 -d 100 -p tcp -e 1000 -i 1 -a 0 + -t 9.37488 -s 210 -d 200 -p tcp -e 1000 -i 1 -a 0 + -t 9.37488 -s 310 -d 300 -p tcp -e 1000 -i 1 -a 0 - -t 9.37488 -s 110 -d 100 -p tcp -e 1000 -i 1 -a 0 - -t 9.37488 -s 210 -d 200 -p tcp -e 1000 -i 1 -a 0 - -t 9.37488 -s 310 -d 300 -p tcp -e 1000 -i 1 -a 0 h -t 9.37488 -s 110 -d 100 -p tcp -e 1000 -i 1 -a 0 h -t 9.37488 -s 210 -d 200 -p tcp -e 1000 -i 1 -a 0 h -t 9.37488 -s 310 -d 300 -p tcp -e 1000 -i 1 -a 0 r -t 9.37488 -s 111 -d 110 -p tcp -e 1000 -i 1 -a 0 r -t 9.37488 -s 211 -d 210 -p tcp -e 1000 -i 1 -a 0 r -t 9.37488 -s 311 -d 310 -p tcp -e 1000 -i 1 -a 0 r -t 9.37688 -s 110 -d 100 -p tcp -e 1000 -i 1 -a 0 r -t 9.37688 -s 210 -d 200 -p tcp -e 1000 -i 1 -a 0 r -t 9.37688 -s 310 -d 300 -p tcp -e 1000 -i 1 -a 0 + -t 9.40912 -s 111 -d 112 -p ack -e 40 -i 2 -a 5 + -t 9.40912 -s 211 -d 212 -p ack -e 40 -i 2 -a 5 + -t 9.40912 -s 311 -d 312 -p ack -e 40 -i 2 -a 5 - -t 9.40912 -s 111 -d 112 -p ack -e 40 -i 2 -a 5 - -t 9.40912 -s 211 -d 212 -p ack -e 40 -i 2 -a 5 - -t 9.40912 -s 311 -d 312 -p ack -e 40 -i 2 -a 5 h -t 9.40912 -s 111 -d 112 -p ack -e 40 -i 2 -a 5 h -t 9.40912 -s 211 -d 212 -p ack -e 40 -i 2 -a 5 h -t 9.40912 -s 311 -d 312 -p ack -e 40 -i 2 -a 5 r -t 9.40912 -s 110 -d 111 -p ack -e 40 -i 2 -a 5 r -t 9.40912 -s 210 -d 211 -p ack -e 40 -i 2 -a 5 r -t 9.40912 -s 310 -d 311 -p ack -e 40 -i 2 -a 5 + -t 9.41015 -s 112 -d 111 -p tcp -e 1000 -i 3 -a 5 + -t 9.41015 -s 112 -d 111 -p tcp -e 1000 -i 4 -a 5 + -t 9.41015 -s 212 -d 211 -p tcp -e 1000 -i 3 -a 5 + -t 9.41015 -s 212 -d 211 -p tcp -e 1000 -i 4 -a 5 + -t 9.41015 -s 312 -d 311 -p tcp -e 1000 -i 3 -a 5 + -t 9.41015 -s 312 -d 311 -p tcp -e 1000 -i 4 -a 5 - -t 9.41015 -s 112 -d 111 -p tcp -e 1000 -i 3 -a 5 - -t 9.41015 -s 212 -d 211 -p tcp -e 1000 -i 3 -a 5 - -t 9.41015 -s 312 -d 311 -p tcp -e 1000 -i 3 -a 5 h -t 9.41015 -s 112 -d 111 -p tcp -e 1000 -i 3 -a 5 h -t 9.41015 -s 212 -d 211 -p tcp -e 1000 -i 3 -a 5 h -t 9.41015 -s 312 -d 311 -p tcp -e 1000 -i 3 -a 5 r -t 9.41016 -s 111 -d 112 -p ack -e 40 -i 2 -a 5 r -t 9.41016 -s 211 -d 212 -p ack -e 40 -i 2 -a 5 r -t 9.41016 -s 311 -d 312 -p ack -e 40 -i 2 -a 5 - -t 9.41095 -s 112 -d 111 -p tcp -e 1000 -i 4 -a 5 - -t 9.41095 -s 212 -d 211 -p tcp -e 1000 -i 4 -a 5 - -t 9.41095 -s 312 -d 311 -p tcp -e 1000 -i 4 -a 5 h -t 9.41095 -s 112 -d 111 -p tcp -e 1000 -i 4 -a 5 h -t 9.41095 -s 212 -d 211 -p tcp -e 1000 -i 4 -a 5 h -t 9.41095 -s 312 -d 311 -p tcp -e 1000 -i 4 -a 5 + -t 9.41195 -s 111 -d 110 -p tcp -e 1000 -i 3 -a 5 + -t 9.41195 -s 211 -d 210 -p tcp -e 1000 -i 3 -a 5 + -t 9.41195 -s 311 -d 310 -p tcp -e 1000 -i 3 -a 5 - -t 9.41195 -s 111 -d 110 -p tcp -e 1000 -i 3 -a 5 - -t 9.41195 -s 211 -d 210 -p tcp -e 1000 -i 3 -a 5 - -t 9.41195 -s 311 -d 310 -p tcp -e 1000 -i 3 -a 5 h -t 9.41195 -s 111 -d 110 -p tcp -e 1000 -i 3 -a 5 h -t 9.41195 -s 211 -d 210 -p tcp -e 1000 -i 3 -a 5 h -t 9.41195 -s 311 -d 310 -p tcp -e 1000 -i 3 -a 5 r -t 9.41215 -s 112 -d 111 -p tcp -e 1000 -i 3 -a 5 r -t 9.41215 -s 212 -d 211 -p tcp -e 1000 -i 3 -a 5 r -t 9.41215 -s 312 -d 311 -p tcp -e 1000 -i 3 -a 5 + -t 9.41275 -s 111 -d 110 -p tcp -e 1000 -i 4 -a 5 + -t 9.41275 -s 211 -d 210 -p tcp -e 1000 -i 4 -a 5 + -t 9.41275 -s 311 -d 310 -p tcp -e 1000 -i 4 -a 5 r -t 9.41295 -s 112 -d 111 -p tcp -e 1000 -i 4 -a 5 r -t 9.41295 -s 212 -d 211 -p tcp -e 1000 -i 4 -a 5 r -t 9.41295 -s 312 -d 311 -p tcp -e 1000 -i 4 -a 5 - -t 9.42195 -s 111 -d 110 -p tcp -e 1000 -i 4 -a 5 - -t 9.42195 -s 211 -d 210 -p tcp -e 1000 -i 4 -a 5 - -t 9.42195 -s 311 -d 310 -p tcp -e 1000 -i 4 -a 5 h -t 9.42195 -s 111 -d 110 -p tcp -e 1000 -i 4 -a 5 h -t 9.42195 -s 211 -d 210 -p tcp -e 1000 -i 4 -a 5 h -t 9.42195 -s 311 -d 310 -p tcp -e 1000 -i 4 -a 5 + -t 9.43792 -s 112 -d 111 -p tcp -e 1000 -i 5 -a 4 + -t 9.43792 -s 212 -d 211 -p tcp -e 1000 -i 5 -a 4 + -t 9.43792 -s 312 -d 311 -p tcp -e 1000 -i 5 -a 4 - -t 9.43792 -s 112 -d 111 -p tcp -e 1000 -i 5 -a 4 - -t 9.43792 -s 212 -d 211 -p tcp -e 1000 -i 5 -a 4 - -t 9.43792 -s 312 -d 311 -p tcp -e 1000 -i 5 -a 4 h -t 9.43792 -s 112 -d 111 -p tcp -e 1000 -i 5 -a 4 h -t 9.43792 -s 212 -d 211 -p tcp -e 1000 -i 5 -a 4 h -t 9.43792 -s 312 -d 311 -p tcp -e 1000 -i 5 -a 4 + -t 9.43972 -s 111 -d 110 -p tcp -e 1000 -i 5 -a 4 + -t 9.43972 -s 211 -d 210 -p tcp -e 1000 -i 5 -a 4 + -t 9.43972 -s 311 -d 310 -p tcp -e 1000 -i 5 -a 4 - -t 9.43972 -s 111 -d 110 -p tcp -e 1000 -i 5 -a 4 - -t 9.43972 -s 211 -d 210 -p tcp -e 1000 -i 5 -a 4 - -t 9.43972 -s 311 -d 310 -p tcp -e 1000 -i 5 -a 4 h -t 9.43972 -s 111 -d 110 -p tcp -e 1000 -i 5 -a 4 h -t 9.43972 -s 211 -d 210 -p tcp -e 1000 -i 5 -a 4 h -t 9.43972 -s 311 -d 310 -p tcp -e 1000 -i 5 -a 4 r -t 9.43992 -s 112 -d 111 -p tcp -e 1000 -i 5 -a 4 r -t 9.43992 -s 212 -d 211 -p tcp -e 1000 -i 5 -a 4 r -t 9.43992 -s 312 -d 311 -p tcp -e 1000 -i 5 -a 4 + -t 9.47668 -s 100 -d 110 -p ack -e 40 -i 6 -a 0 + -t 9.47668 -s 200 -d 210 -p ack -e 40 -i 6 -a 0 + -t 9.47668 -s 300 -d 310 -p ack -e 40 -i 6 -a 0 - -t 9.47668 -s 100 -d 110 -p ack -e 40 -i 6 -a 0 - -t 9.47668 -s 200 -d 210 -p ack -e 40 -i 6 -a 0 - -t 9.47668 -s 300 -d 310 -p ack -e 40 -i 6 -a 0 h -t 9.47668 -s 100 -d 110 -p ack -e 40 -i 6 -a 0 h -t 9.47668 -s 200 -d 210 -p ack -e 40 -i 6 -a 0 h -t 9.47668 -s 300 -d 310 -p ack -e 40 -i 6 -a 0 + -t 9.47771 -s 110 -d 111 -p ack -e 40 -i 6 -a 0 + -t 9.47771 -s 210 -d 211 -p ack -e 40 -i 6 -a 0 + -t 9.47771 -s 310 -d 311 -p ack -e 40 -i 6 -a 0 - -t 9.47771 -s 110 -d 111 -p ack -e 40 -i 6 -a 0 - -t 9.47771 -s 210 -d 211 -p ack -e 40 -i 6 -a 0 - -t 9.47771 -s 310 -d 311 -p ack -e 40 -i 6 -a 0 h -t 9.47771 -s 110 -d 111 -p ack -e 40 -i 6 -a 0 h -t 9.47771 -s 210 -d 211 -p ack -e 40 -i 6 -a 0 h -t 9.47771 -s 310 -d 311 -p ack -e 40 -i 6 -a 0 r -t 9.47772 -s 100 -d 110 -p ack -e 40 -i 6 -a 0 r -t 9.47772 -s 200 -d 210 -p ack -e 40 -i 6 -a 0 r -t 9.47772 -s 300 -d 310 -p ack -e 40 -i 6 -a 0 + -t 9.52195 -s 110 -d 105 -p tcp -e 1000 -i 3 -a 5 + -t 9.52195 -s 210 -d 205 -p tcp -e 1000 -i 3 -a 5 + -t 9.52195 -s 310 -d 305 -p tcp -e 1000 -i 3 -a 5 - -t 9.52195 -s 110 -d 105 -p tcp -e 1000 -i 3 -a 5 - -t 9.52195 -s 210 -d 205 -p tcp -e 1000 -i 3 -a 5 - -t 9.52195 -s 310 -d 305 -p tcp -e 1000 -i 3 -a 5 h -t 9.52195 -s 110 -d 105 -p tcp -e 1000 -i 3 -a 5 h -t 9.52195 -s 210 -d 205 -p tcp -e 1000 -i 3 -a 5 h -t 9.52195 -s 310 -d 305 -p tcp -e 1000 -i 3 -a 5 r -t 9.52195 -s 111 -d 110 -p tcp -e 1000 -i 3 -a 5 r -t 9.52195 -s 211 -d 210 -p tcp -e 1000 -i 3 -a 5 r -t 9.52195 -s 311 -d 310 -p tcp -e 1000 -i 3 -a 5 r -t 9.52395 -s 110 -d 105 -p tcp -e 1000 -i 3 -a 5 r -t 9.52395 -s 210 -d 205 -p tcp -e 1000 -i 3 -a 5 r -t 9.52395 -s 310 -d 305 -p tcp -e 1000 -i 3 -a 5 + -t 9.53195 -s 110 -d 105 -p tcp -e 1000 -i 4 -a 5 + -t 9.53195 -s 210 -d 205 -p tcp -e 1000 -i 4 -a 5 + -t 9.53195 -s 310 -d 305 -p tcp -e 1000 -i 4 -a 5 - -t 9.53195 -s 110 -d 105 -p tcp -e 1000 -i 4 -a 5 - -t 9.53195 -s 210 -d 205 -p tcp -e 1000 -i 4 -a 5 - -t 9.53195 -s 310 -d 305 -p tcp -e 1000 -i 4 -a 5 h -t 9.53195 -s 110 -d 105 -p tcp -e 1000 -i 4 -a 5 h -t 9.53195 -s 210 -d 205 -p tcp -e 1000 -i 4 -a 5 h -t 9.53195 -s 310 -d 305 -p tcp -e 1000 -i 4 -a 5 r -t 9.53195 -s 111 -d 110 -p tcp -e 1000 -i 4 -a 5 r -t 9.53195 -s 211 -d 210 -p tcp -e 1000 -i 4 -a 5 r -t 9.53195 -s 311 -d 310 -p tcp -e 1000 -i 4 -a 5 + -t 9.53375 -s 105 -d 110 -p ack -e 40 -i 7 -a 5 + -t 9.53375 -s 205 -d 210 -p ack -e 40 -i 7 -a 5 + -t 9.53375 -s 305 -d 310 -p ack -e 40 -i 7 -a 5 - -t 9.53375 -s 105 -d 110 -p ack -e 40 -i 7 -a 5 - -t 9.53375 -s 205 -d 210 -p ack -e 40 -i 7 -a 5 - -t 9.53375 -s 305 -d 310 -p ack -e 40 -i 7 -a 5 h -t 9.53375 -s 105 -d 110 -p ack -e 40 -i 7 -a 5 h -t 9.53375 -s 205 -d 210 -p ack -e 40 -i 7 -a 5 h -t 9.53375 -s 305 -d 310 -p ack -e 40 -i 7 -a 5 r -t 9.53395 -s 110 -d 105 -p tcp -e 1000 -i 4 -a 5 r -t 9.53395 -s 210 -d 205 -p tcp -e 1000 -i 4 -a 5 r -t 9.53395 -s 310 -d 305 -p tcp -e 1000 -i 4 -a 5 + -t 9.53479 -s 110 -d 111 -p ack -e 40 -i 7 -a 5 + -t 9.53479 -s 210 -d 211 -p ack -e 40 -i 7 -a 5 + -t 9.53479 -s 310 -d 311 -p ack -e 40 -i 7 -a 5 - -t 9.53479 -s 110 -d 111 -p ack -e 40 -i 7 -a 5 - -t 9.53479 -s 210 -d 211 -p ack -e 40 -i 7 -a 5 - -t 9.53479 -s 310 -d 311 -p ack -e 40 -i 7 -a 5 h -t 9.53479 -s 110 -d 111 -p ack -e 40 -i 7 -a 5 h -t 9.53479 -s 210 -d 211 -p ack -e 40 -i 7 -a 5 h -t 9.53479 -s 310 -d 311 -p ack -e 40 -i 7 -a 5 r -t 9.53479 -s 105 -d 110 -p ack -e 40 -i 7 -a 5 r -t 9.53479 -s 205 -d 210 -p ack -e 40 -i 7 -a 5 r -t 9.53479 -s 305 -d 310 -p ack -e 40 -i 7 -a 5 + -t 9.54972 -s 110 -d 104 -p tcp -e 1000 -i 5 -a 4 + -t 9.54972 -s 210 -d 204 -p tcp -e 1000 -i 5 -a 4 + -t 9.54972 -s 310 -d 304 -p tcp -e 1000 -i 5 -a 4 - -t 9.54972 -s 110 -d 104 -p tcp -e 1000 -i 5 -a 4 - -t 9.54972 -s 210 -d 204 -p tcp -e 1000 -i 5 -a 4 - -t 9.54972 -s 310 -d 304 -p tcp -e 1000 -i 5 -a 4 h -t 9.54972 -s 110 -d 104 -p tcp -e 1000 -i 5 -a 4 h -t 9.54972 -s 210 -d 204 -p tcp -e 1000 -i 5 -a 4 h -t 9.54972 -s 310 -d 304 -p tcp -e 1000 -i 5 -a 4 r -t 9.54972 -s 111 -d 110 -p tcp -e 1000 -i 5 -a 4 r -t 9.54972 -s 211 -d 210 -p tcp -e 1000 -i 5 -a 4 r -t 9.54972 -s 311 -d 310 -p tcp -e 1000 -i 5 -a 4 r -t 9.55172 -s 110 -d 104 -p tcp -e 1000 -i 5 -a 4 r -t 9.55172 -s 210 -d 204 -p tcp -e 1000 -i 5 -a 4 r -t 9.55172 -s 310 -d 304 -p tcp -e 1000 -i 5 -a 4 + -t 9.57811 -s 111 -d 112 -p ack -e 40 -i 6 -a 0 + -t 9.57811 -s 211 -d 212 -p ack -e 40 -i 6 -a 0 + -t 9.57811 -s 311 -d 312 -p ack -e 40 -i 6 -a 0 - -t 9.57811 -s 111 -d 112 -p ack -e 40 -i 6 -a 0 - -t 9.57811 -s 211 -d 212 -p ack -e 40 -i 6 -a 0 - -t 9.57811 -s 311 -d 312 -p ack -e 40 -i 6 -a 0 h -t 9.57811 -s 111 -d 112 -p ack -e 40 -i 6 -a 0 h -t 9.57811 -s 211 -d 212 -p ack -e 40 -i 6 -a 0 h -t 9.57811 -s 311 -d 312 -p ack -e 40 -i 6 -a 0 r -t 9.57811 -s 110 -d 111 -p ack -e 40 -i 6 -a 0 r -t 9.57811 -s 210 -d 211 -p ack -e 40 -i 6 -a 0 r -t 9.57811 -s 310 -d 311 -p ack -e 40 -i 6 -a 0 + -t 9.57914 -s 112 -d 111 -p tcp -e 1000 -i 8 -a 0 + -t 9.57914 -s 112 -d 111 -p tcp -e 1000 -i 9 -a 0 + -t 9.57914 -s 212 -d 211 -p tcp -e 1000 -i 8 -a 0 + -t 9.57914 -s 212 -d 211 -p tcp -e 1000 -i 9 -a 0 + -t 9.57914 -s 312 -d 311 -p tcp -e 1000 -i 8 -a 0 + -t 9.57914 -s 312 -d 311 -p tcp -e 1000 -i 9 -a 0 - -t 9.57914 -s 112 -d 111 -p tcp -e 1000 -i 8 -a 0 - -t 9.57914 -s 212 -d 211 -p tcp -e 1000 -i 8 -a 0 - -t 9.57914 -s 312 -d 311 -p tcp -e 1000 -i 8 -a 0 h -t 9.57914 -s 112 -d 111 -p tcp -e 1000 -i 8 -a 0 h -t 9.57914 -s 212 -d 211 -p tcp -e 1000 -i 8 -a 0 h -t 9.57914 -s 312 -d 311 -p tcp -e 1000 -i 8 -a 0 r -t 9.57915 -s 111 -d 112 -p ack -e 40 -i 6 -a 0 r -t 9.57915 -s 211 -d 212 -p ack -e 40 -i 6 -a 0 r -t 9.57915 -s 311 -d 312 -p ack -e 40 -i 6 -a 0 - -t 9.57994 -s 112 -d 111 -p tcp -e 1000 -i 9 -a 0 - -t 9.57994 -s 212 -d 211 -p tcp -e 1000 -i 9 -a 0 - -t 9.57994 -s 312 -d 311 -p tcp -e 1000 -i 9 -a 0 h -t 9.57994 -s 112 -d 111 -p tcp -e 1000 -i 9 -a 0 h -t 9.57994 -s 212 -d 211 -p tcp -e 1000 -i 9 -a 0 h -t 9.57994 -s 312 -d 311 -p tcp -e 1000 -i 9 -a 0 + -t 9.58094 -s 111 -d 110 -p tcp -e 1000 -i 8 -a 0 + -t 9.58094 -s 211 -d 210 -p tcp -e 1000 -i 8 -a 0 + -t 9.58094 -s 311 -d 310 -p tcp -e 1000 -i 8 -a 0 - -t 9.58094 -s 111 -d 110 -p tcp -e 1000 -i 8 -a 0 - -t 9.58094 -s 211 -d 210 -p tcp -e 1000 -i 8 -a 0 - -t 9.58094 -s 311 -d 310 -p tcp -e 1000 -i 8 -a 0 h -t 9.58094 -s 111 -d 110 -p tcp -e 1000 -i 8 -a 0 h -t 9.58094 -s 211 -d 210 -p tcp -e 1000 -i 8 -a 0 h -t 9.58094 -s 311 -d 310 -p tcp -e 1000 -i 8 -a 0 r -t 9.58114 -s 112 -d 111 -p tcp -e 1000 -i 8 -a 0 r -t 9.58114 -s 212 -d 211 -p tcp -e 1000 -i 8 -a 0 r -t 9.58114 -s 312 -d 311 -p tcp -e 1000 -i 8 -a 0 + -t 9.58174 -s 111 -d 110 -p tcp -e 1000 -i 9 -a 0 + -t 9.58174 -s 211 -d 210 -p tcp -e 1000 -i 9 -a 0 + -t 9.58174 -s 311 -d 310 -p tcp -e 1000 -i 9 -a 0 r -t 9.58194 -s 112 -d 111 -p tcp -e 1000 -i 9 -a 0 r -t 9.58194 -s 212 -d 211 -p tcp -e 1000 -i 9 -a 0 r -t 9.58194 -s 312 -d 311 -p tcp -e 1000 -i 9 -a 0 - -t 9.59094 -s 111 -d 110 -p tcp -e 1000 -i 9 -a 0 - -t 9.59094 -s 211 -d 210 -p tcp -e 1000 -i 9 -a 0 - -t 9.59094 -s 311 -d 310 -p tcp -e 1000 -i 9 -a 0 h -t 9.59094 -s 111 -d 110 -p tcp -e 1000 -i 9 -a 0 h -t 9.59094 -s 211 -d 210 -p tcp -e 1000 -i 9 -a 0 h -t 9.59094 -s 311 -d 310 -p tcp -e 1000 -i 9 -a 0 + -t 9.63519 -s 111 -d 112 -p ack -e 40 -i 7 -a 5 + -t 9.63519 -s 211 -d 212 -p ack -e 40 -i 7 -a 5 + -t 9.63519 -s 311 -d 312 -p ack -e 40 -i 7 -a 5 - -t 9.63519 -s 111 -d 112 -p ack -e 40 -i 7 -a 5 - -t 9.63519 -s 211 -d 212 -p ack -e 40 -i 7 -a 5 - -t 9.63519 -s 311 -d 312 -p ack -e 40 -i 7 -a 5 h -t 9.63519 -s 111 -d 112 -p ack -e 40 -i 7 -a 5 h -t 9.63519 -s 211 -d 212 -p ack -e 40 -i 7 -a 5 h -t 9.63519 -s 311 -d 312 -p ack -e 40 -i 7 -a 5 r -t 9.63519 -s 110 -d 111 -p ack -e 40 -i 7 -a 5 r -t 9.63519 -s 210 -d 211 -p ack -e 40 -i 7 -a 5 r -t 9.63519 -s 310 -d 311 -p ack -e 40 -i 7 -a 5 + -t 9.63622 -s 112 -d 111 -p tcp -e 1000 -i 10 -a 5 + -t 9.63622 -s 112 -d 111 -p tcp -e 1000 -i 11 -a 5 + -t 9.63622 -s 112 -d 111 -p tcp -e 1000 -i 12 -a 5 + -t 9.63622 -s 212 -d 211 -p tcp -e 1000 -i 10 -a 5 + -t 9.63622 -s 212 -d 211 -p tcp -e 1000 -i 11 -a 5 + -t 9.63622 -s 212 -d 211 -p tcp -e 1000 -i 12 -a 5 + -t 9.63622 -s 212 -d 211 -p tcp -e 1000 -i 13 -a 5 + -t 9.63622 -s 312 -d 311 -p tcp -e 1000 -i 10 -a 5 + -t 9.63622 -s 312 -d 311 -p tcp -e 1000 -i 11 -a 5 + -t 9.63622 -s 312 -d 311 -p tcp -e 1000 -i 12 -a 5 - -t 9.63622 -s 112 -d 111 -p tcp -e 1000 -i 10 -a 5 - -t 9.63622 -s 212 -d 211 -p tcp -e 1000 -i 10 -a 5 - -t 9.63622 -s 312 -d 311 -p tcp -e 1000 -i 10 -a 5 h -t 9.63622 -s 112 -d 111 -p tcp -e 1000 -i 10 -a 5 h -t 9.63622 -s 212 -d 211 -p tcp -e 1000 -i 10 -a 5 h -t 9.63622 -s 312 -d 311 -p tcp -e 1000 -i 10 -a 5 r -t 9.63623 -s 111 -d 112 -p ack -e 40 -i 7 -a 5 r -t 9.63623 -s 211 -d 212 -p ack -e 40 -i 7 -a 5 r -t 9.63623 -s 311 -d 312 -p ack -e 40 -i 7 -a 5 - -t 9.63702 -s 112 -d 111 -p tcp -e 1000 -i 11 -a 5 - -t 9.63702 -s 212 -d 211 -p tcp -e 1000 -i 11 -a 5 - -t 9.63702 -s 312 -d 311 -p tcp -e 1000 -i 11 -a 5 h -t 9.63702 -s 112 -d 111 -p tcp -e 1000 -i 11 -a 5 h -t 9.63702 -s 212 -d 211 -p tcp -e 1000 -i 11 -a 5 h -t 9.63702 -s 312 -d 311 -p tcp -e 1000 -i 11 -a 5 - -t 9.63782 -s 112 -d 111 -p tcp -e 1000 -i 12 -a 5 - -t 9.63782 -s 212 -d 211 -p tcp -e 1000 -i 12 -a 5 - -t 9.63782 -s 312 -d 311 -p tcp -e 1000 -i 12 -a 5 h -t 9.63782 -s 112 -d 111 -p tcp -e 1000 -i 12 -a 5 h -t 9.63782 -s 212 -d 211 -p tcp -e 1000 -i 12 -a 5 h -t 9.63782 -s 312 -d 311 -p tcp -e 1000 -i 12 -a 5 + -t 9.63802 -s 111 -d 110 -p tcp -e 1000 -i 10 -a 5 + -t 9.63802 -s 211 -d 210 -p tcp -e 1000 -i 10 -a 5 + -t 9.63802 -s 311 -d 310 -p tcp -e 1000 -i 10 -a 5 - -t 9.63802 -s 111 -d 110 -p tcp -e 1000 -i 10 -a 5 - -t 9.63802 -s 211 -d 210 -p tcp -e 1000 -i 10 -a 5 - -t 9.63802 -s 311 -d 310 -p tcp -e 1000 -i 10 -a 5 h -t 9.63802 -s 111 -d 110 -p tcp -e 1000 -i 10 -a 5 h -t 9.63802 -s 211 -d 210 -p tcp -e 1000 -i 10 -a 5 h -t 9.63802 -s 311 -d 310 -p tcp -e 1000 -i 10 -a 5 r -t 9.63822 -s 112 -d 111 -p tcp -e 1000 -i 10 -a 5 r -t 9.63822 -s 212 -d 211 -p tcp -e 1000 -i 10 -a 5 r -t 9.63822 -s 312 -d 311 -p tcp -e 1000 -i 10 -a 5 - -t 9.63862 -s 212 -d 211 -p tcp -e 1000 -i 13 -a 5 h -t 9.63862 -s 212 -d 211 -p tcp -e 1000 -i 13 -a 5 + -t 9.63882 -s 111 -d 110 -p tcp -e 1000 -i 11 -a 5 + -t 9.63882 -s 211 -d 210 -p tcp -e 1000 -i 11 -a 5 + -t 9.63882 -s 311 -d 310 -p tcp -e 1000 -i 11 -a 5 r -t 9.63902 -s 112 -d 111 -p tcp -e 1000 -i 11 -a 5 r -t 9.63902 -s 212 -d 211 -p tcp -e 1000 -i 11 -a 5 r -t 9.63902 -s 312 -d 311 -p tcp -e 1000 -i 11 -a 5 + -t 9.63962 -s 111 -d 110 -p tcp -e 1000 -i 12 -a 5 + -t 9.63962 -s 211 -d 210 -p tcp -e 1000 -i 12 -a 5 + -t 9.63962 -s 311 -d 310 -p tcp -e 1000 -i 12 -a 5 r -t 9.63982 -s 112 -d 111 -p tcp -e 1000 -i 12 -a 5 r -t 9.63982 -s 212 -d 211 -p tcp -e 1000 -i 12 -a 5 r -t 9.63982 -s 312 -d 311 -p tcp -e 1000 -i 12 -a 5 + -t 9.64042 -s 211 -d 210 -p tcp -e 1000 -i 13 -a 5 r -t 9.64062 -s 212 -d 211 -p tcp -e 1000 -i 13 -a 5 - -t 9.64802 -s 111 -d 110 -p tcp -e 1000 -i 11 -a 5 - -t 9.64802 -s 211 -d 210 -p tcp -e 1000 -i 11 -a 5 - -t 9.64802 -s 311 -d 310 -p tcp -e 1000 -i 11 -a 5 h -t 9.64802 -s 111 -d 110 -p tcp -e 1000 -i 11 -a 5 h -t 9.64802 -s 211 -d 210 -p tcp -e 1000 -i 11 -a 5 h -t 9.64802 -s 311 -d 310 -p tcp -e 1000 -i 11 -a 5 + -t 9.65152 -s 104 -d 110 -p ack -e 40 -i 13 -a 4 + -t 9.65152 -s 204 -d 210 -p ack -e 40 -i 14 -a 4 + -t 9.65152 -s 304 -d 310 -p ack -e 40 -i 13 -a 4 - -t 9.65152 -s 104 -d 110 -p ack -e 40 -i 13 -a 4 - -t 9.65152 -s 204 -d 210 -p ack -e 40 -i 14 -a 4 - -t 9.65152 -s 304 -d 310 -p ack -e 40 -i 13 -a 4 h -t 9.65152 -s 104 -d 110 -p ack -e 40 -i 13 -a 4 h -t 9.65152 -s 204 -d 210 -p ack -e 40 -i 14 -a 4 h -t 9.65152 -s 304 -d 310 -p ack -e 40 -i 13 -a 4 + -t 9.65255 -s 110 -d 111 -p ack -e 40 -i 13 -a 4 + -t 9.65255 -s 210 -d 211 -p ack -e 40 -i 14 -a 4 + -t 9.65255 -s 310 -d 311 -p ack -e 40 -i 13 -a 4 - -t 9.65255 -s 110 -d 111 -p ack -e 40 -i 13 -a 4 - -t 9.65255 -s 210 -d 211 -p ack -e 40 -i 14 -a 4 - -t 9.65255 -s 310 -d 311 -p ack -e 40 -i 13 -a 4 h -t 9.65255 -s 110 -d 111 -p ack -e 40 -i 13 -a 4 h -t 9.65255 -s 210 -d 211 -p ack -e 40 -i 14 -a 4 h -t 9.65255 -s 310 -d 311 -p ack -e 40 -i 13 -a 4 r -t 9.65256 -s 104 -d 110 -p ack -e 40 -i 13 -a 4 r -t 9.65256 -s 204 -d 210 -p ack -e 40 -i 14 -a 4 r -t 9.65256 -s 304 -d 310 -p ack -e 40 -i 13 -a 4 - -t 9.65802 -s 111 -d 110 -p tcp -e 1000 -i 12 -a 5 - -t 9.65802 -s 211 -d 210 -p tcp -e 1000 -i 12 -a 5 - -t 9.65802 -s 311 -d 310 -p tcp -e 1000 -i 12 -a 5 h -t 9.65802 -s 111 -d 110 -p tcp -e 1000 -i 12 -a 5 h -t 9.65802 -s 211 -d 210 -p tcp -e 1000 -i 12 -a 5 h -t 9.65802 -s 311 -d 310 -p tcp -e 1000 -i 12 -a 5 - -t 9.66802 -s 211 -d 210 -p tcp -e 1000 -i 13 -a 5 h -t 9.66802 -s 211 -d 210 -p tcp -e 1000 -i 13 -a 5 + -t 9.69094 -s 110 -d 100 -p tcp -e 1000 -i 8 -a 0 + -t 9.69094 -s 210 -d 200 -p tcp -e 1000 -i 8 -a 0 + -t 9.69094 -s 310 -d 300 -p tcp -e 1000 -i 8 -a 0 - -t 9.69094 -s 110 -d 100 -p tcp -e 1000 -i 8 -a 0 - -t 9.69094 -s 210 -d 200 -p tcp -e 1000 -i 8 -a 0 - -t 9.69094 -s 310 -d 300 -p tcp -e 1000 -i 8 -a 0 h -t 9.69094 -s 110 -d 100 -p tcp -e 1000 -i 8 -a 0 h -t 9.69094 -s 210 -d 200 -p tcp -e 1000 -i 8 -a 0 h -t 9.69094 -s 310 -d 300 -p tcp -e 1000 -i 8 -a 0 r -t 9.69094 -s 111 -d 110 -p tcp -e 1000 -i 8 -a 0 r -t 9.69094 -s 211 -d 210 -p tcp -e 1000 -i 8 -a 0 r -t 9.69094 -s 311 -d 310 -p tcp -e 1000 -i 8 -a 0 r -t 9.69294 -s 110 -d 100 -p tcp -e 1000 -i 8 -a 0 r -t 9.69294 -s 210 -d 200 -p tcp -e 1000 -i 8 -a 0 r -t 9.69294 -s 310 -d 300 -p tcp -e 1000 -i 8 -a 0 + -t 9.70094 -s 110 -d 100 -p tcp -e 1000 -i 9 -a 0 + -t 9.70094 -s 210 -d 200 -p tcp -e 1000 -i 9 -a 0 + -t 9.70094 -s 310 -d 300 -p tcp -e 1000 -i 9 -a 0 - -t 9.70094 -s 110 -d 100 -p tcp -e 1000 -i 9 -a 0 - -t 9.70094 -s 210 -d 200 -p tcp -e 1000 -i 9 -a 0 - -t 9.70094 -s 310 -d 300 -p tcp -e 1000 -i 9 -a 0 h -t 9.70094 -s 110 -d 100 -p tcp -e 1000 -i 9 -a 0 h -t 9.70094 -s 210 -d 200 -p tcp -e 1000 -i 9 -a 0 h -t 9.70094 -s 310 -d 300 -p tcp -e 1000 -i 9 -a 0 r -t 9.70094 -s 111 -d 110 -p tcp -e 1000 -i 9 -a 0 r -t 9.70094 -s 211 -d 210 -p tcp -e 1000 -i 9 -a 0 r -t 9.70094 -s 311 -d 310 -p tcp -e 1000 -i 9 -a 0 + -t 9.70274 -s 100 -d 110 -p ack -e 40 -i 14 -a 0 + -t 9.70274 -s 200 -d 210 -p ack -e 40 -i 15 -a 0 + -t 9.70274 -s 300 -d 310 -p ack -e 40 -i 14 -a 0 - -t 9.70274 -s 100 -d 110 -p ack -e 40 -i 14 -a 0 - -t 9.70274 -s 200 -d 210 -p ack -e 40 -i 15 -a 0 - -t 9.70274 -s 300 -d 310 -p ack -e 40 -i 14 -a 0 h -t 9.70274 -s 100 -d 110 -p ack -e 40 -i 14 -a 0 h -t 9.70274 -s 200 -d 210 -p ack -e 40 -i 15 -a 0 h -t 9.70274 -s 300 -d 310 -p ack -e 40 -i 14 -a 0 r -t 9.70294 -s 110 -d 100 -p tcp -e 1000 -i 9 -a 0 r -t 9.70294 -s 210 -d 200 -p tcp -e 1000 -i 9 -a 0 r -t 9.70294 -s 310 -d 300 -p tcp -e 1000 -i 9 -a 0 + -t 9.70378 -s 110 -d 111 -p ack -e 40 -i 14 -a 0 + -t 9.70378 -s 210 -d 211 -p ack -e 40 -i 15 -a 0 + -t 9.70378 -s 310 -d 311 -p ack -e 40 -i 14 -a 0 - -t 9.70378 -s 110 -d 111 -p ack -e 40 -i 14 -a 0 - -t 9.70378 -s 210 -d 211 -p ack -e 40 -i 15 -a 0 - -t 9.70378 -s 310 -d 311 -p ack -e 40 -i 14 -a 0 h -t 9.70378 -s 110 -d 111 -p ack -e 40 -i 14 -a 0 h -t 9.70378 -s 210 -d 211 -p ack -e 40 -i 15 -a 0 h -t 9.70378 -s 310 -d 311 -p ack -e 40 -i 14 -a 0 r -t 9.70378 -s 100 -d 110 -p ack -e 40 -i 14 -a 0 r -t 9.70378 -s 200 -d 210 -p ack -e 40 -i 15 -a 0 r -t 9.70378 -s 300 -d 310 -p ack -e 40 -i 14 -a 0 + -t 9.74802 -s 110 -d 105 -p tcp -e 1000 -i 10 -a 5 + -t 9.74802 -s 210 -d 205 -p tcp -e 1000 -i 10 -a 5 + -t 9.74802 -s 310 -d 305 -p tcp -e 1000 -i 10 -a 5 - -t 9.74802 -s 110 -d 105 -p tcp -e 1000 -i 10 -a 5 - -t 9.74802 -s 210 -d 205 -p tcp -e 1000 -i 10 -a 5 - -t 9.74802 -s 310 -d 305 -p tcp -e 1000 -i 10 -a 5 h -t 9.74802 -s 110 -d 105 -p tcp -e 1000 -i 10 -a 5 h -t 9.74802 -s 210 -d 205 -p tcp -e 1000 -i 10 -a 5 h -t 9.74802 -s 310 -d 305 -p tcp -e 1000 -i 10 -a 5 r -t 9.74802 -s 111 -d 110 -p tcp -e 1000 -i 10 -a 5 r -t 9.74802 -s 211 -d 210 -p tcp -e 1000 -i 10 -a 5 r -t 9.74802 -s 311 -d 310 -p tcp -e 1000 -i 10 -a 5 r -t 9.75002 -s 110 -d 105 -p tcp -e 1000 -i 10 -a 5 r -t 9.75002 -s 210 -d 205 -p tcp -e 1000 -i 10 -a 5 r -t 9.75002 -s 310 -d 305 -p tcp -e 1000 -i 10 -a 5 + -t 9.75295 -s 111 -d 112 -p ack -e 40 -i 13 -a 4 + -t 9.75295 -s 211 -d 212 -p ack -e 40 -i 14 -a 4 + -t 9.75295 -s 311 -d 312 -p ack -e 40 -i 13 -a 4 - -t 9.75295 -s 111 -d 112 -p ack -e 40 -i 13 -a 4 - -t 9.75295 -s 211 -d 212 -p ack -e 40 -i 14 -a 4 - -t 9.75295 -s 311 -d 312 -p ack -e 40 -i 13 -a 4 h -t 9.75295 -s 111 -d 112 -p ack -e 40 -i 13 -a 4 h -t 9.75295 -s 211 -d 212 -p ack -e 40 -i 14 -a 4 h -t 9.75295 -s 311 -d 312 -p ack -e 40 -i 13 -a 4 r -t 9.75295 -s 110 -d 111 -p ack -e 40 -i 13 -a 4 r -t 9.75295 -s 210 -d 211 -p ack -e 40 -i 14 -a 4 r -t 9.75295 -s 310 -d 311 -p ack -e 40 -i 13 -a 4 + -t 9.75398 -s 112 -d 111 -p tcp -e 1000 -i 15 -a 4 + -t 9.75398 -s 112 -d 111 -p tcp -e 1000 -i 16 -a 4 + -t 9.75398 -s 212 -d 211 -p tcp -e 1000 -i 16 -a 4 + -t 9.75398 -s 212 -d 211 -p tcp -e 1000 -i 17 -a 4 + -t 9.75398 -s 312 -d 311 -p tcp -e 1000 -i 15 -a 4 + -t 9.75398 -s 312 -d 311 -p tcp -e 1000 -i 16 -a 4 - -t 9.75398 -s 112 -d 111 -p tcp -e 1000 -i 15 -a 4 - -t 9.75398 -s 212 -d 211 -p tcp -e 1000 -i 16 -a 4 - -t 9.75398 -s 312 -d 311 -p tcp -e 1000 -i 15 -a 4 h -t 9.75398 -s 112 -d 111 -p tcp -e 1000 -i 15 -a 4 h -t 9.75398 -s 212 -d 211 -p tcp -e 1000 -i 16 -a 4 h -t 9.75398 -s 312 -d 311 -p tcp -e 1000 -i 15 -a 4 r -t 9.75399 -s 111 -d 112 -p ack -e 40 -i 13 -a 4 r -t 9.75399 -s 211 -d 212 -p ack -e 40 -i 14 -a 4 r -t 9.75399 -s 311 -d 312 -p ack -e 40 -i 13 -a 4 - -t 9.75478 -s 112 -d 111 -p tcp -e 1000 -i 16 -a 4 - -t 9.75478 -s 212 -d 211 -p tcp -e 1000 -i 17 -a 4 - -t 9.75478 -s 312 -d 311 -p tcp -e 1000 -i 16 -a 4 h -t 9.75478 -s 112 -d 111 -p tcp -e 1000 -i 16 -a 4 h -t 9.75478 -s 212 -d 211 -p tcp -e 1000 -i 17 -a 4 h -t 9.75478 -s 312 -d 311 -p tcp -e 1000 -i 16 -a 4 + -t 9.75578 -s 111 -d 110 -p tcp -e 1000 -i 15 -a 4 + -t 9.75578 -s 211 -d 210 -p tcp -e 1000 -i 16 -a 4 + -t 9.75578 -s 311 -d 310 -p tcp -e 1000 -i 15 -a 4 - -t 9.75578 -s 111 -d 110 -p tcp -e 1000 -i 15 -a 4 - -t 9.75578 -s 211 -d 210 -p tcp -e 1000 -i 16 -a 4 - -t 9.75578 -s 311 -d 310 -p tcp -e 1000 -i 15 -a 4 h -t 9.75578 -s 111 -d 110 -p tcp -e 1000 -i 15 -a 4 h -t 9.75578 -s 211 -d 210 -p tcp -e 1000 -i 16 -a 4 h -t 9.75578 -s 311 -d 310 -p tcp -e 1000 -i 15 -a 4 r -t 9.75598 -s 112 -d 111 -p tcp -e 1000 -i 15 -a 4 r -t 9.75598 -s 212 -d 211 -p tcp -e 1000 -i 16 -a 4 r -t 9.75598 -s 312 -d 311 -p tcp -e 1000 -i 15 -a 4 + -t 9.75658 -s 111 -d 110 -p tcp -e 1000 -i 16 -a 4 + -t 9.75658 -s 211 -d 210 -p tcp -e 1000 -i 17 -a 4 + -t 9.75658 -s 311 -d 310 -p tcp -e 1000 -i 16 -a 4 r -t 9.75678 -s 112 -d 111 -p tcp -e 1000 -i 16 -a 4 r -t 9.75678 -s 212 -d 211 -p tcp -e 1000 -i 17 -a 4 r -t 9.75678 -s 312 -d 311 -p tcp -e 1000 -i 16 -a 4 + -t 9.75802 -s 110 -d 105 -p tcp -e 1000 -i 11 -a 5 + -t 9.75802 -s 210 -d 205 -p tcp -e 1000 -i 11 -a 5 + -t 9.75802 -s 310 -d 305 -p tcp -e 1000 -i 11 -a 5 - -t 9.75802 -s 110 -d 105 -p tcp -e 1000 -i 11 -a 5 - -t 9.75802 -s 210 -d 205 -p tcp -e 1000 -i 11 -a 5 - -t 9.75802 -s 310 -d 305 -p tcp -e 1000 -i 11 -a 5 h -t 9.75802 -s 110 -d 105 -p tcp -e 1000 -i 11 -a 5 h -t 9.75802 -s 210 -d 205 -p tcp -e 1000 -i 11 -a 5 h -t 9.75802 -s 310 -d 305 -p tcp -e 1000 -i 11 -a 5 r -t 9.75802 -s 111 -d 110 -p tcp -e 1000 -i 11 -a 5 r -t 9.75802 -s 211 -d 210 -p tcp -e 1000 -i 11 -a 5 r -t 9.75802 -s 311 -d 310 -p tcp -e 1000 -i 11 -a 5 + -t 9.75982 -s 105 -d 110 -p ack -e 40 -i 17 -a 5 + -t 9.75982 -s 205 -d 210 -p ack -e 40 -i 18 -a 5 + -t 9.75982 -s 305 -d 310 -p ack -e 40 -i 17 -a 5 - -t 9.75982 -s 105 -d 110 -p ack -e 40 -i 17 -a 5 - -t 9.75982 -s 205 -d 210 -p ack -e 40 -i 18 -a 5 - -t 9.75982 -s 305 -d 310 -p ack -e 40 -i 17 -a 5 h -t 9.75982 -s 105 -d 110 -p ack -e 40 -i 17 -a 5 h -t 9.75982 -s 205 -d 210 -p ack -e 40 -i 18 -a 5 h -t 9.75982 -s 305 -d 310 -p ack -e 40 -i 17 -a 5 r -t 9.76002 -s 110 -d 105 -p tcp -e 1000 -i 11 -a 5 r -t 9.76002 -s 210 -d 205 -p tcp -e 1000 -i 11 -a 5 r -t 9.76002 -s 310 -d 305 -p tcp -e 1000 -i 11 -a 5 + -t 9.76085 -s 110 -d 111 -p ack -e 40 -i 17 -a 5 + -t 9.76085 -s 210 -d 211 -p ack -e 40 -i 18 -a 5 + -t 9.76085 -s 310 -d 311 -p ack -e 40 -i 17 -a 5 - -t 9.76085 -s 110 -d 111 -p ack -e 40 -i 17 -a 5 - -t 9.76085 -s 210 -d 211 -p ack -e 40 -i 18 -a 5 - -t 9.76085 -s 310 -d 311 -p ack -e 40 -i 17 -a 5 h -t 9.76085 -s 110 -d 111 -p ack -e 40 -i 17 -a 5 h -t 9.76085 -s 210 -d 211 -p ack -e 40 -i 18 -a 5 h -t 9.76085 -s 310 -d 311 -p ack -e 40 -i 17 -a 5 r -t 9.76086 -s 105 -d 110 -p ack -e 40 -i 17 -a 5 r -t 9.76086 -s 205 -d 210 -p ack -e 40 -i 18 -a 5 r -t 9.76086 -s 305 -d 310 -p ack -e 40 -i 17 -a 5 - -t 9.76578 -s 111 -d 110 -p tcp -e 1000 -i 16 -a 4 - -t 9.76578 -s 211 -d 210 -p tcp -e 1000 -i 17 -a 4 - -t 9.76578 -s 311 -d 310 -p tcp -e 1000 -i 16 -a 4 h -t 9.76578 -s 111 -d 110 -p tcp -e 1000 -i 16 -a 4 h -t 9.76578 -s 211 -d 210 -p tcp -e 1000 -i 17 -a 4 h -t 9.76578 -s 311 -d 310 -p tcp -e 1000 -i 16 -a 4 + -t 9.767 -s 112 -d 111 -p tcp -e 1000 -i 18 -a 9 + -t 9.767 -s 212 -d 211 -p tcp -e 1000 -i 19 -a 9 + -t 9.767 -s 312 -d 311 -p tcp -e 1000 -i 18 -a 9 - -t 9.767 -s 112 -d 111 -p tcp -e 1000 -i 18 -a 9 - -t 9.767 -s 212 -d 211 -p tcp -e 1000 -i 19 -a 9 - -t 9.767 -s 312 -d 311 -p tcp -e 1000 -i 18 -a 9 h -t 9.767 -s 112 -d 111 -p tcp -e 1000 -i 18 -a 9 h -t 9.767 -s 212 -d 211 -p tcp -e 1000 -i 19 -a 9 h -t 9.767 -s 312 -d 311 -p tcp -e 1000 -i 18 -a 9 + -t 9.76802 -s 110 -d 105 -p tcp -e 1000 -i 12 -a 5 + -t 9.76802 -s 210 -d 205 -p tcp -e 1000 -i 12 -a 5 + -t 9.76802 -s 310 -d 305 -p tcp -e 1000 -i 12 -a 5 - -t 9.76802 -s 110 -d 105 -p tcp -e 1000 -i 12 -a 5 - -t 9.76802 -s 210 -d 205 -p tcp -e 1000 -i 12 -a 5 - -t 9.76802 -s 310 -d 305 -p tcp -e 1000 -i 12 -a 5 h -t 9.76802 -s 110 -d 105 -p tcp -e 1000 -i 12 -a 5 h -t 9.76802 -s 210 -d 205 -p tcp -e 1000 -i 12 -a 5 h -t 9.76802 -s 310 -d 305 -p tcp -e 1000 -i 12 -a 5 r -t 9.76802 -s 111 -d 110 -p tcp -e 1000 -i 12 -a 5 r -t 9.76802 -s 211 -d 210 -p tcp -e 1000 -i 12 -a 5 r -t 9.76802 -s 311 -d 310 -p tcp -e 1000 -i 12 -a 5 + -t 9.7688 -s 111 -d 110 -p tcp -e 1000 -i 18 -a 9 + -t 9.7688 -s 211 -d 210 -p tcp -e 1000 -i 19 -a 9 + -t 9.7688 -s 311 -d 310 -p tcp -e 1000 -i 18 -a 9 r -t 9.769 -s 112 -d 111 -p tcp -e 1000 -i 18 -a 9 r -t 9.769 -s 212 -d 211 -p tcp -e 1000 -i 19 -a 9 r -t 9.769 -s 312 -d 311 -p tcp -e 1000 -i 18 -a 9 r -t 9.77002 -s 110 -d 105 -p tcp -e 1000 -i 12 -a 5 r -t 9.77002 -s 210 -d 205 -p tcp -e 1000 -i 12 -a 5 r -t 9.77002 -s 310 -d 305 -p tcp -e 1000 -i 12 -a 5 - -t 9.77578 -s 111 -d 110 -p tcp -e 1000 -i 18 -a 9 - -t 9.77578 -s 211 -d 210 -p tcp -e 1000 -i 19 -a 9 - -t 9.77578 -s 311 -d 310 -p tcp -e 1000 -i 18 -a 9 h -t 9.77578 -s 111 -d 110 -p tcp -e 1000 -i 18 -a 9 h -t 9.77578 -s 211 -d 210 -p tcp -e 1000 -i 19 -a 9 h -t 9.77578 -s 311 -d 310 -p tcp -e 1000 -i 18 -a 9 + -t 9.77802 -s 210 -d 205 -p tcp -e 1000 -i 13 -a 5 - -t 9.77802 -s 210 -d 205 -p tcp -e 1000 -i 13 -a 5 h -t 9.77802 -s 210 -d 205 -p tcp -e 1000 -i 13 -a 5 r -t 9.77802 -s 211 -d 210 -p tcp -e 1000 -i 13 -a 5 + -t 9.77982 -s 205 -d 210 -p ack -e 40 -i 20 -a 5 - -t 9.77982 -s 205 -d 210 -p ack -e 40 -i 20 -a 5 h -t 9.77982 -s 205 -d 210 -p ack -e 40 -i 20 -a 5 r -t 9.78002 -s 210 -d 205 -p tcp -e 1000 -i 13 -a 5 + -t 9.78085 -s 210 -d 211 -p ack -e 40 -i 20 -a 5 - -t 9.78085 -s 210 -d 211 -p ack -e 40 -i 20 -a 5 h -t 9.78085 -s 210 -d 211 -p ack -e 40 -i 20 -a 5 r -t 9.78086 -s 205 -d 210 -p ack -e 40 -i 20 -a 5 + -t 9.80418 -s 111 -d 112 -p ack -e 40 -i 14 -a 0 + -t 9.80418 -s 211 -d 212 -p ack -e 40 -i 15 -a 0 + -t 9.80418 -s 311 -d 312 -p ack -e 40 -i 14 -a 0 - -t 9.80418 -s 111 -d 112 -p ack -e 40 -i 14 -a 0 - -t 9.80418 -s 211 -d 212 -p ack -e 40 -i 15 -a 0 - -t 9.80418 -s 311 -d 312 -p ack -e 40 -i 14 -a 0 h -t 9.80418 -s 111 -d 112 -p ack -e 40 -i 14 -a 0 h -t 9.80418 -s 211 -d 212 -p ack -e 40 -i 15 -a 0 h -t 9.80418 -s 311 -d 312 -p ack -e 40 -i 14 -a 0 r -t 9.80418 -s 110 -d 111 -p ack -e 40 -i 14 -a 0 r -t 9.80418 -s 210 -d 211 -p ack -e 40 -i 15 -a 0 r -t 9.80418 -s 310 -d 311 -p ack -e 40 -i 14 -a 0 + -t 9.80521 -s 112 -d 111 -p tcp -e 1000 -i 19 -a 0 + -t 9.80521 -s 112 -d 111 -p tcp -e 1000 -i 20 -a 0 + -t 9.80521 -s 112 -d 111 -p tcp -e 1000 -i 21 -a 0 + -t 9.80521 -s 212 -d 211 -p tcp -e 1000 -i 21 -a 0 + -t 9.80521 -s 212 -d 211 -p tcp -e 1000 -i 22 -a 0 + -t 9.80521 -s 212 -d 211 -p tcp -e 1000 -i 23 -a 0 + -t 9.80521 -s 212 -d 211 -p tcp -e 1000 -i 24 -a 0 + -t 9.80521 -s 312 -d 311 -p tcp -e 1000 -i 19 -a 0 + -t 9.80521 -s 312 -d 311 -p tcp -e 1000 -i 20 -a 0 + -t 9.80521 -s 312 -d 311 -p tcp -e 1000 -i 21 -a 0 - -t 9.80521 -s 112 -d 111 -p tcp -e 1000 -i 19 -a 0 - -t 9.80521 -s 212 -d 211 -p tcp -e 1000 -i 21 -a 0 - -t 9.80521 -s 312 -d 311 -p tcp -e 1000 -i 19 -a 0 h -t 9.80521 -s 112 -d 111 -p tcp -e 1000 -i 19 -a 0 h -t 9.80521 -s 212 -d 211 -p tcp -e 1000 -i 21 -a 0 h -t 9.80521 -s 312 -d 311 -p tcp -e 1000 -i 19 -a 0 r -t 9.80522 -s 111 -d 112 -p ack -e 40 -i 14 -a 0 r -t 9.80522 -s 211 -d 212 -p ack -e 40 -i 15 -a 0 r -t 9.80522 -s 311 -d 312 -p ack -e 40 -i 14 -a 0 - -t 9.80601 -s 112 -d 111 -p tcp -e 1000 -i 20 -a 0 - -t 9.80601 -s 212 -d 211 -p tcp -e 1000 -i 22 -a 0 - -t 9.80601 -s 312 -d 311 -p tcp -e 1000 -i 20 -a 0 h -t 9.80601 -s 112 -d 111 -p tcp -e 1000 -i 20 -a 0 h -t 9.80601 -s 212 -d 211 -p tcp -e 1000 -i 22 -a 0 h -t 9.80601 -s 312 -d 311 -p tcp -e 1000 -i 20 -a 0 - -t 9.80681 -s 112 -d 111 -p tcp -e 1000 -i 21 -a 0 - -t 9.80681 -s 212 -d 211 -p tcp -e 1000 -i 23 -a 0 - -t 9.80681 -s 312 -d 311 -p tcp -e 1000 -i 21 -a 0 h -t 9.80681 -s 112 -d 111 -p tcp -e 1000 -i 21 -a 0 h -t 9.80681 -s 212 -d 211 -p tcp -e 1000 -i 23 -a 0 h -t 9.80681 -s 312 -d 311 -p tcp -e 1000 -i 21 -a 0 + -t 9.80701 -s 111 -d 110 -p tcp -e 1000 -i 19 -a 0 + -t 9.80701 -s 211 -d 210 -p tcp -e 1000 -i 21 -a 0 + -t 9.80701 -s 311 -d 310 -p tcp -e 1000 -i 19 -a 0 - -t 9.80701 -s 111 -d 110 -p tcp -e 1000 -i 19 -a 0 - -t 9.80701 -s 211 -d 210 -p tcp -e 1000 -i 21 -a 0 - -t 9.80701 -s 311 -d 310 -p tcp -e 1000 -i 19 -a 0 h -t 9.80701 -s 111 -d 110 -p tcp -e 1000 -i 19 -a 0 h -t 9.80701 -s 211 -d 210 -p tcp -e 1000 -i 21 -a 0 h -t 9.80701 -s 311 -d 310 -p tcp -e 1000 -i 19 -a 0 r -t 9.80721 -s 112 -d 111 -p tcp -e 1000 -i 19 -a 0 r -t 9.80721 -s 212 -d 211 -p tcp -e 1000 -i 21 -a 0 r -t 9.80721 -s 312 -d 311 -p tcp -e 1000 -i 19 -a 0 - -t 9.80761 -s 212 -d 211 -p tcp -e 1000 -i 24 -a 0 h -t 9.80761 -s 212 -d 211 -p tcp -e 1000 -i 24 -a 0 + -t 9.80781 -s 111 -d 110 -p tcp -e 1000 -i 20 -a 0 + -t 9.80781 -s 211 -d 210 -p tcp -e 1000 -i 22 -a 0 + -t 9.80781 -s 311 -d 310 -p tcp -e 1000 -i 20 -a 0 r -t 9.80801 -s 112 -d 111 -p tcp -e 1000 -i 20 -a 0 r -t 9.80801 -s 212 -d 211 -p tcp -e 1000 -i 22 -a 0 r -t 9.80801 -s 312 -d 311 -p tcp -e 1000 -i 20 -a 0 + -t 9.80861 -s 111 -d 110 -p tcp -e 1000 -i 21 -a 0 + -t 9.80861 -s 211 -d 210 -p tcp -e 1000 -i 23 -a 0 + -t 9.80861 -s 311 -d 310 -p tcp -e 1000 -i 21 -a 0 r -t 9.80881 -s 112 -d 111 -p tcp -e 1000 -i 21 -a 0 r -t 9.80881 -s 212 -d 211 -p tcp -e 1000 -i 23 -a 0 r -t 9.80881 -s 312 -d 311 -p tcp -e 1000 -i 21 -a 0 + -t 9.80941 -s 211 -d 210 -p tcp -e 1000 -i 24 -a 0 r -t 9.80961 -s 212 -d 211 -p tcp -e 1000 -i 24 -a 0 - -t 9.81701 -s 111 -d 110 -p tcp -e 1000 -i 20 -a 0 - -t 9.81701 -s 211 -d 210 -p tcp -e 1000 -i 22 -a 0 - -t 9.81701 -s 311 -d 310 -p tcp -e 1000 -i 20 -a 0 h -t 9.81701 -s 111 -d 110 -p tcp -e 1000 -i 20 -a 0 h -t 9.81701 -s 211 -d 210 -p tcp -e 1000 -i 22 -a 0 h -t 9.81701 -s 311 -d 310 -p tcp -e 1000 -i 20 -a 0 - -t 9.82701 -s 111 -d 110 -p tcp -e 1000 -i 21 -a 0 - -t 9.82701 -s 211 -d 210 -p tcp -e 1000 -i 23 -a 0 - -t 9.82701 -s 311 -d 310 -p tcp -e 1000 -i 21 -a 0 h -t 9.82701 -s 111 -d 110 -p tcp -e 1000 -i 21 -a 0 h -t 9.82701 -s 211 -d 210 -p tcp -e 1000 -i 23 -a 0 h -t 9.82701 -s 311 -d 310 -p tcp -e 1000 -i 21 -a 0 - -t 9.83701 -s 211 -d 210 -p tcp -e 1000 -i 24 -a 0 h -t 9.83701 -s 211 -d 210 -p tcp -e 1000 -i 24 -a 0 + -t 9.86125 -s 111 -d 112 -p ack -e 40 -i 17 -a 5 + -t 9.86125 -s 211 -d 212 -p ack -e 40 -i 18 -a 5 + -t 9.86125 -s 311 -d 312 -p ack -e 40 -i 17 -a 5 - -t 9.86125 -s 111 -d 112 -p ack -e 40 -i 17 -a 5 - -t 9.86125 -s 211 -d 212 -p ack -e 40 -i 18 -a 5 - -t 9.86125 -s 311 -d 312 -p ack -e 40 -i 17 -a 5 h -t 9.86125 -s 111 -d 112 -p ack -e 40 -i 17 -a 5 h -t 9.86125 -s 211 -d 212 -p ack -e 40 -i 18 -a 5 h -t 9.86125 -s 311 -d 312 -p ack -e 40 -i 17 -a 5 r -t 9.86125 -s 110 -d 111 -p ack -e 40 -i 17 -a 5 r -t 9.86125 -s 210 -d 211 -p ack -e 40 -i 18 -a 5 r -t 9.86125 -s 310 -d 311 -p ack -e 40 -i 17 -a 5 + -t 9.86228 -s 112 -d 111 -p tcp -e 1000 -i 22 -a 5 + -t 9.86228 -s 112 -d 111 -p tcp -e 1000 -i 23 -a 5 + -t 9.86228 -s 112 -d 111 -p tcp -e 1000 -i 24 -a 5 + -t 9.86228 -s 212 -d 211 -p tcp -e 1000 -i 25 -a 5 + -t 9.86228 -s 212 -d 211 -p tcp -e 1000 -i 26 -a 5 + -t 9.86228 -s 212 -d 211 -p tcp -e 1000 -i 27 -a 5 + -t 9.86228 -s 312 -d 311 -p tcp -e 1000 -i 22 -a 5 + -t 9.86228 -s 312 -d 311 -p tcp -e 1000 -i 23 -a 5 + -t 9.86228 -s 312 -d 311 -p tcp -e 1000 -i 24 -a 5 - -t 9.86228 -s 112 -d 111 -p tcp -e 1000 -i 22 -a 5 - -t 9.86228 -s 212 -d 211 -p tcp -e 1000 -i 25 -a 5 - -t 9.86228 -s 312 -d 311 -p tcp -e 1000 -i 22 -a 5 h -t 9.86228 -s 112 -d 111 -p tcp -e 1000 -i 22 -a 5 h -t 9.86228 -s 212 -d 211 -p tcp -e 1000 -i 25 -a 5 h -t 9.86228 -s 312 -d 311 -p tcp -e 1000 -i 22 -a 5 r -t 9.86229 -s 111 -d 112 -p ack -e 40 -i 17 -a 5 r -t 9.86229 -s 211 -d 212 -p ack -e 40 -i 18 -a 5 r -t 9.86229 -s 311 -d 312 -p ack -e 40 -i 17 -a 5 - -t 9.86308 -s 112 -d 111 -p tcp -e 1000 -i 23 -a 5 - -t 9.86308 -s 212 -d 211 -p tcp -e 1000 -i 26 -a 5 - -t 9.86308 -s 312 -d 311 -p tcp -e 1000 -i 23 -a 5 h -t 9.86308 -s 112 -d 111 -p tcp -e 1000 -i 23 -a 5 h -t 9.86308 -s 212 -d 211 -p tcp -e 1000 -i 26 -a 5 h -t 9.86308 -s 312 -d 311 -p tcp -e 1000 -i 23 -a 5 - -t 9.86388 -s 112 -d 111 -p tcp -e 1000 -i 24 -a 5 - -t 9.86388 -s 212 -d 211 -p tcp -e 1000 -i 27 -a 5 - -t 9.86388 -s 312 -d 311 -p tcp -e 1000 -i 24 -a 5 h -t 9.86388 -s 112 -d 111 -p tcp -e 1000 -i 24 -a 5 h -t 9.86388 -s 212 -d 211 -p tcp -e 1000 -i 27 -a 5 h -t 9.86388 -s 312 -d 311 -p tcp -e 1000 -i 24 -a 5 + -t 9.86408 -s 111 -d 110 -p tcp -e 1000 -i 22 -a 5 + -t 9.86408 -s 211 -d 210 -p tcp -e 1000 -i 25 -a 5 + -t 9.86408 -s 311 -d 310 -p tcp -e 1000 -i 22 -a 5 - -t 9.86408 -s 111 -d 110 -p tcp -e 1000 -i 22 -a 5 - -t 9.86408 -s 211 -d 210 -p tcp -e 1000 -i 25 -a 5 - -t 9.86408 -s 311 -d 310 -p tcp -e 1000 -i 22 -a 5 h -t 9.86408 -s 111 -d 110 -p tcp -e 1000 -i 22 -a 5 h -t 9.86408 -s 211 -d 210 -p tcp -e 1000 -i 25 -a 5 h -t 9.86408 -s 311 -d 310 -p tcp -e 1000 -i 22 -a 5 r -t 9.86428 -s 112 -d 111 -p tcp -e 1000 -i 22 -a 5 r -t 9.86428 -s 212 -d 211 -p tcp -e 1000 -i 25 -a 5 r -t 9.86428 -s 312 -d 311 -p tcp -e 1000 -i 22 -a 5 + -t 9.86488 -s 111 -d 110 -p tcp -e 1000 -i 23 -a 5 + -t 9.86488 -s 211 -d 210 -p tcp -e 1000 -i 26 -a 5 + -t 9.86488 -s 311 -d 310 -p tcp -e 1000 -i 23 -a 5 r -t 9.86508 -s 112 -d 111 -p tcp -e 1000 -i 23 -a 5 r -t 9.86508 -s 212 -d 211 -p tcp -e 1000 -i 26 -a 5 r -t 9.86508 -s 312 -d 311 -p tcp -e 1000 -i 23 -a 5 + -t 9.86568 -s 111 -d 110 -p tcp -e 1000 -i 24 -a 5 + -t 9.86568 -s 211 -d 210 -p tcp -e 1000 -i 27 -a 5 + -t 9.86568 -s 311 -d 310 -p tcp -e 1000 -i 24 -a 5 + -t 9.86578 -s 110 -d 104 -p tcp -e 1000 -i 15 -a 4 + -t 9.86578 -s 210 -d 204 -p tcp -e 1000 -i 16 -a 4 + -t 9.86578 -s 310 -d 304 -p tcp -e 1000 -i 15 -a 4 - -t 9.86578 -s 110 -d 104 -p tcp -e 1000 -i 15 -a 4 - -t 9.86578 -s 210 -d 204 -p tcp -e 1000 -i 16 -a 4 - -t 9.86578 -s 310 -d 304 -p tcp -e 1000 -i 15 -a 4 h -t 9.86578 -s 110 -d 104 -p tcp -e 1000 -i 15 -a 4 h -t 9.86578 -s 210 -d 204 -p tcp -e 1000 -i 16 -a 4 h -t 9.86578 -s 310 -d 304 -p tcp -e 1000 -i 15 -a 4 r -t 9.86578 -s 111 -d 110 -p tcp -e 1000 -i 15 -a 4 r -t 9.86578 -s 211 -d 210 -p tcp -e 1000 -i 16 -a 4 r -t 9.86578 -s 311 -d 310 -p tcp -e 1000 -i 15 -a 4 r -t 9.86588 -s 112 -d 111 -p tcp -e 1000 -i 24 -a 5 r -t 9.86588 -s 212 -d 211 -p tcp -e 1000 -i 27 -a 5 r -t 9.86588 -s 312 -d 311 -p tcp -e 1000 -i 24 -a 5 r -t 9.86778 -s 110 -d 104 -p tcp -e 1000 -i 15 -a 4 r -t 9.86778 -s 210 -d 204 -p tcp -e 1000 -i 16 -a 4 r -t 9.86778 -s 310 -d 304 -p tcp -e 1000 -i 15 -a 4 + -t 9.86982 -s 105 -d 110 -p ack -e 40 -i 25 -a 5 + -t 9.86982 -s 305 -d 310 -p ack -e 40 -i 25 -a 5 - -t 9.86982 -s 105 -d 110 -p ack -e 40 -i 25 -a 5 - -t 9.86982 -s 305 -d 310 -p ack -e 40 -i 25 -a 5 h -t 9.86982 -s 105 -d 110 -p ack -e 40 -i 25 -a 5 h -t 9.86982 -s 305 -d 310 -p ack -e 40 -i 25 -a 5 + -t 9.87085 -s 110 -d 111 -p ack -e 40 -i 25 -a 5 + -t 9.87085 -s 310 -d 311 -p ack -e 40 -i 25 -a 5 - -t 9.87085 -s 110 -d 111 -p ack -e 40 -i 25 -a 5 - -t 9.87085 -s 310 -d 311 -p ack -e 40 -i 25 -a 5 h -t 9.87085 -s 110 -d 111 -p ack -e 40 -i 25 -a 5 h -t 9.87085 -s 310 -d 311 -p ack -e 40 -i 25 -a 5 r -t 9.87086 -s 105 -d 110 -p ack -e 40 -i 25 -a 5 r -t 9.87086 -s 305 -d 310 -p ack -e 40 -i 25 -a 5 - -t 9.87408 -s 111 -d 110 -p tcp -e 1000 -i 23 -a 5 - -t 9.87408 -s 211 -d 210 -p tcp -e 1000 -i 26 -a 5 - -t 9.87408 -s 311 -d 310 -p tcp -e 1000 -i 23 -a 5 h -t 9.87408 -s 111 -d 110 -p tcp -e 1000 -i 23 -a 5 h -t 9.87408 -s 211 -d 210 -p tcp -e 1000 -i 26 -a 5 h -t 9.87408 -s 311 -d 310 -p tcp -e 1000 -i 23 -a 5 + -t 9.87578 -s 110 -d 104 -p tcp -e 1000 -i 16 -a 4 + -t 9.87578 -s 210 -d 204 -p tcp -e 1000 -i 17 -a 4 + -t 9.87578 -s 310 -d 304 -p tcp -e 1000 -i 16 -a 4 - -t 9.87578 -s 110 -d 104 -p tcp -e 1000 -i 16 -a 4 - -t 9.87578 -s 210 -d 204 -p tcp -e 1000 -i 17 -a 4 - -t 9.87578 -s 310 -d 304 -p tcp -e 1000 -i 16 -a 4 h -t 9.87578 -s 110 -d 104 -p tcp -e 1000 -i 16 -a 4 h -t 9.87578 -s 210 -d 204 -p tcp -e 1000 -i 17 -a 4 h -t 9.87578 -s 310 -d 304 -p tcp -e 1000 -i 16 -a 4 r -t 9.87578 -s 111 -d 110 -p tcp -e 1000 -i 16 -a 4 r -t 9.87578 -s 211 -d 210 -p tcp -e 1000 -i 17 -a 4 r -t 9.87578 -s 311 -d 310 -p tcp -e 1000 -i 16 -a 4 + -t 9.87758 -s 104 -d 110 -p ack -e 40 -i 26 -a 4 + -t 9.87758 -s 204 -d 210 -p ack -e 40 -i 28 -a 4 + -t 9.87758 -s 304 -d 310 -p ack -e 40 -i 26 -a 4 - -t 9.87758 -s 104 -d 110 -p ack -e 40 -i 26 -a 4 - -t 9.87758 -s 204 -d 210 -p ack -e 40 -i 28 -a 4 - -t 9.87758 -s 304 -d 310 -p ack -e 40 -i 26 -a 4 h -t 9.87758 -s 104 -d 110 -p ack -e 40 -i 26 -a 4 h -t 9.87758 -s 204 -d 210 -p ack -e 40 -i 28 -a 4 h -t 9.87758 -s 304 -d 310 -p ack -e 40 -i 26 -a 4 r -t 9.87778 -s 110 -d 104 -p tcp -e 1000 -i 16 -a 4 r -t 9.87778 -s 210 -d 204 -p tcp -e 1000 -i 17 -a 4 r -t 9.87778 -s 310 -d 304 -p tcp -e 1000 -i 16 -a 4 + -t 9.87862 -s 110 -d 111 -p ack -e 40 -i 26 -a 4 + -t 9.87862 -s 210 -d 211 -p ack -e 40 -i 28 -a 4 + -t 9.87862 -s 310 -d 311 -p ack -e 40 -i 26 -a 4 - -t 9.87862 -s 110 -d 111 -p ack -e 40 -i 26 -a 4 - -t 9.87862 -s 210 -d 211 -p ack -e 40 -i 28 -a 4 - -t 9.87862 -s 310 -d 311 -p ack -e 40 -i 26 -a 4 h -t 9.87862 -s 110 -d 111 -p ack -e 40 -i 26 -a 4 h -t 9.87862 -s 210 -d 211 -p ack -e 40 -i 28 -a 4 h -t 9.87862 -s 310 -d 311 -p ack -e 40 -i 26 -a 4 r -t 9.87862 -s 104 -d 110 -p ack -e 40 -i 26 -a 4 r -t 9.87862 -s 204 -d 210 -p ack -e 40 -i 28 -a 4 r -t 9.87862 -s 304 -d 310 -p ack -e 40 -i 26 -a 4 + -t 9.88125 -s 211 -d 212 -p ack -e 40 -i 20 -a 5 - -t 9.88125 -s 211 -d 212 -p ack -e 40 -i 20 -a 5 h -t 9.88125 -s 211 -d 212 -p ack -e 40 -i 20 -a 5 r -t 9.88125 -s 210 -d 211 -p ack -e 40 -i 20 -a 5 r -t 9.88229 -s 211 -d 212 -p ack -e 40 -i 20 -a 5 - -t 9.88408 -s 111 -d 110 -p tcp -e 1000 -i 24 -a 5 - -t 9.88408 -s 211 -d 210 -p tcp -e 1000 -i 27 -a 5 - -t 9.88408 -s 311 -d 310 -p tcp -e 1000 -i 24 -a 5 h -t 9.88408 -s 111 -d 110 -p tcp -e 1000 -i 24 -a 5 h -t 9.88408 -s 211 -d 210 -p tcp -e 1000 -i 27 -a 5 h -t 9.88408 -s 311 -d 310 -p tcp -e 1000 -i 24 -a 5 + -t 9.88578 -s 110 -d 109 -p tcp -e 1000 -i 18 -a 9 + -t 9.88578 -s 210 -d 209 -p tcp -e 1000 -i 19 -a 9 + -t 9.88578 -s 310 -d 309 -p tcp -e 1000 -i 18 -a 9 - -t 9.88578 -s 110 -d 109 -p tcp -e 1000 -i 18 -a 9 - -t 9.88578 -s 210 -d 209 -p tcp -e 1000 -i 19 -a 9 - -t 9.88578 -s 310 -d 309 -p tcp -e 1000 -i 18 -a 9 h -t 9.88578 -s 110 -d 109 -p tcp -e 1000 -i 18 -a 9 h -t 9.88578 -s 210 -d 209 -p tcp -e 1000 -i 19 -a 9 h -t 9.88578 -s 310 -d 309 -p tcp -e 1000 -i 18 -a 9 r -t 9.88578 -s 111 -d 110 -p tcp -e 1000 -i 18 -a 9 r -t 9.88578 -s 211 -d 210 -p tcp -e 1000 -i 19 -a 9 r -t 9.88578 -s 311 -d 310 -p tcp -e 1000 -i 18 -a 9 r -t 9.88778 -s 110 -d 109 -p tcp -e 1000 -i 18 -a 9 r -t 9.88778 -s 210 -d 209 -p tcp -e 1000 -i 19 -a 9 r -t 9.88778 -s 310 -d 309 -p tcp -e 1000 -i 18 -a 9 + -t 9.91701 -s 110 -d 100 -p tcp -e 1000 -i 19 -a 0 + -t 9.91701 -s 210 -d 200 -p tcp -e 1000 -i 21 -a 0 + -t 9.91701 -s 310 -d 300 -p tcp -e 1000 -i 19 -a 0 - -t 9.91701 -s 110 -d 100 -p tcp -e 1000 -i 19 -a 0 - -t 9.91701 -s 210 -d 200 -p tcp -e 1000 -i 21 -a 0 - -t 9.91701 -s 310 -d 300 -p tcp -e 1000 -i 19 -a 0 h -t 9.91701 -s 110 -d 100 -p tcp -e 1000 -i 19 -a 0 h -t 9.91701 -s 210 -d 200 -p tcp -e 1000 -i 21 -a 0 h -t 9.91701 -s 310 -d 300 -p tcp -e 1000 -i 19 -a 0 r -t 9.91701 -s 111 -d 110 -p tcp -e 1000 -i 19 -a 0 r -t 9.91701 -s 211 -d 210 -p tcp -e 1000 -i 21 -a 0 r -t 9.91701 -s 311 -d 310 -p tcp -e 1000 -i 19 -a 0 + -t 9.9173 -s 112 -d 111 -p tcp -e 1000 -i 27 -a 2 + -t 9.9173 -s 212 -d 211 -p tcp -e 1000 -i 29 -a 2 + -t 9.9173 -s 312 -d 311 -p tcp -e 1000 -i 27 -a 2 - -t 9.9173 -s 112 -d 111 -p tcp -e 1000 -i 27 -a 2 - -t 9.9173 -s 212 -d 211 -p tcp -e 1000 -i 29 -a 2 - -t 9.9173 -s 312 -d 311 -p tcp -e 1000 -i 27 -a 2 h -t 9.9173 -s 112 -d 111 -p tcp -e 1000 -i 27 -a 2 h -t 9.9173 -s 212 -d 211 -p tcp -e 1000 -i 29 -a 2 h -t 9.9173 -s 312 -d 311 -p tcp -e 1000 -i 27 -a 2 r -t 9.91901 -s 110 -d 100 -p tcp -e 1000 -i 19 -a 0 r -t 9.91901 -s 210 -d 200 -p tcp -e 1000 -i 21 -a 0 r -t 9.91901 -s 310 -d 300 -p tcp -e 1000 -i 19 -a 0 + -t 9.9191 -s 111 -d 110 -p tcp -e 1000 -i 27 -a 2 + -t 9.9191 -s 211 -d 210 -p tcp -e 1000 -i 29 -a 2 + -t 9.9191 -s 311 -d 310 -p tcp -e 1000 -i 27 -a 2 - -t 9.9191 -s 111 -d 110 -p tcp -e 1000 -i 27 -a 2 - -t 9.9191 -s 211 -d 210 -p tcp -e 1000 -i 29 -a 2 - -t 9.9191 -s 311 -d 310 -p tcp -e 1000 -i 27 -a 2 h -t 9.9191 -s 111 -d 110 -p tcp -e 1000 -i 27 -a 2 h -t 9.9191 -s 211 -d 210 -p tcp -e 1000 -i 29 -a 2 h -t 9.9191 -s 311 -d 310 -p tcp -e 1000 -i 27 -a 2 r -t 9.9193 -s 112 -d 111 -p tcp -e 1000 -i 27 -a 2 r -t 9.9193 -s 212 -d 211 -p tcp -e 1000 -i 29 -a 2 r -t 9.9193 -s 312 -d 311 -p tcp -e 1000 -i 27 -a 2 + -t 9.92701 -s 110 -d 100 -p tcp -e 1000 -i 20 -a 0 + -t 9.92701 -s 210 -d 200 -p tcp -e 1000 -i 22 -a 0 + -t 9.92701 -s 310 -d 300 -p tcp -e 1000 -i 20 -a 0 - -t 9.92701 -s 110 -d 100 -p tcp -e 1000 -i 20 -a 0 - -t 9.92701 -s 210 -d 200 -p tcp -e 1000 -i 22 -a 0 - -t 9.92701 -s 310 -d 300 -p tcp -e 1000 -i 20 -a 0 h -t 9.92701 -s 110 -d 100 -p tcp -e 1000 -i 20 -a 0 h -t 9.92701 -s 210 -d 200 -p tcp -e 1000 -i 22 -a 0 h -t 9.92701 -s 310 -d 300 -p tcp -e 1000 -i 20 -a 0 r -t 9.92701 -s 111 -d 110 -p tcp -e 1000 -i 20 -a 0 r -t 9.92701 -s 211 -d 210 -p tcp -e 1000 -i 22 -a 0 r -t 9.92701 -s 311 -d 310 -p tcp -e 1000 -i 20 -a 0 + -t 9.92881 -s 100 -d 110 -p ack -e 40 -i 28 -a 0 + -t 9.92881 -s 200 -d 210 -p ack -e 40 -i 30 -a 0 + -t 9.92881 -s 300 -d 310 -p ack -e 40 -i 28 -a 0 - -t 9.92881 -s 100 -d 110 -p ack -e 40 -i 28 -a 0 - -t 9.92881 -s 200 -d 210 -p ack -e 40 -i 30 -a 0 - -t 9.92881 -s 300 -d 310 -p ack -e 40 -i 28 -a 0 h -t 9.92881 -s 100 -d 110 -p ack -e 40 -i 28 -a 0 h -t 9.92881 -s 200 -d 210 -p ack -e 40 -i 30 -a 0 h -t 9.92881 -s 300 -d 310 -p ack -e 40 -i 28 -a 0 r -t 9.92901 -s 110 -d 100 -p tcp -e 1000 -i 20 -a 0 r -t 9.92901 -s 210 -d 200 -p tcp -e 1000 -i 22 -a 0 r -t 9.92901 -s 310 -d 300 -p tcp -e 1000 -i 20 -a 0 + -t 9.92984 -s 110 -d 111 -p ack -e 40 -i 28 -a 0 + -t 9.92984 -s 210 -d 211 -p ack -e 40 -i 30 -a 0 + -t 9.92984 -s 310 -d 311 -p ack -e 40 -i 28 -a 0 - -t 9.92984 -s 110 -d 111 -p ack -e 40 -i 28 -a 0 - -t 9.92984 -s 210 -d 211 -p ack -e 40 -i 30 -a 0 - -t 9.92984 -s 310 -d 311 -p ack -e 40 -i 28 -a 0 h -t 9.92984 -s 110 -d 111 -p ack -e 40 -i 28 -a 0 h -t 9.92984 -s 210 -d 211 -p ack -e 40 -i 30 -a 0 h -t 9.92984 -s 310 -d 311 -p ack -e 40 -i 28 -a 0 r -t 9.92985 -s 100 -d 110 -p ack -e 40 -i 28 -a 0 r -t 9.92985 -s 200 -d 210 -p ack -e 40 -i 30 -a 0 r -t 9.92985 -s 300 -d 310 -p ack -e 40 -i 28 -a 0 + -t 9.93701 -s 110 -d 100 -p tcp -e 1000 -i 21 -a 0 + -t 9.93701 -s 210 -d 200 -p tcp -e 1000 -i 23 -a 0 + -t 9.93701 -s 310 -d 300 -p tcp -e 1000 -i 21 -a 0 - -t 9.93701 -s 110 -d 100 -p tcp -e 1000 -i 21 -a 0 - -t 9.93701 -s 210 -d 200 -p tcp -e 1000 -i 23 -a 0 - -t 9.93701 -s 310 -d 300 -p tcp -e 1000 -i 21 -a 0 h -t 9.93701 -s 110 -d 100 -p tcp -e 1000 -i 21 -a 0 h -t 9.93701 -s 210 -d 200 -p tcp -e 1000 -i 23 -a 0 h -t 9.93701 -s 310 -d 300 -p tcp -e 1000 -i 21 -a 0 r -t 9.93701 -s 111 -d 110 -p tcp -e 1000 -i 21 -a 0 r -t 9.93701 -s 211 -d 210 -p tcp -e 1000 -i 23 -a 0 r -t 9.93701 -s 311 -d 310 -p tcp -e 1000 -i 21 -a 0 r -t 9.93901 -s 110 -d 100 -p tcp -e 1000 -i 21 -a 0 r -t 9.93901 -s 210 -d 200 -p tcp -e 1000 -i 23 -a 0 r -t 9.93901 -s 310 -d 300 -p tcp -e 1000 -i 21 -a 0 + -t 9.94701 -s 210 -d 200 -p tcp -e 1000 -i 24 -a 0 - -t 9.94701 -s 210 -d 200 -p tcp -e 1000 -i 24 -a 0 h -t 9.94701 -s 210 -d 200 -p tcp -e 1000 -i 24 -a 0 r -t 9.94701 -s 211 -d 210 -p tcp -e 1000 -i 24 -a 0 + -t 9.94881 -s 200 -d 210 -p ack -e 40 -i 31 -a 0 - -t 9.94881 -s 200 -d 210 -p ack -e 40 -i 31 -a 0 h -t 9.94881 -s 200 -d 210 -p ack -e 40 -i 31 -a 0 r -t 9.94901 -s 210 -d 200 -p tcp -e 1000 -i 24 -a 0 + -t 9.94984 -s 210 -d 211 -p ack -e 40 -i 31 -a 0 - -t 9.94984 -s 210 -d 211 -p ack -e 40 -i 31 -a 0 h -t 9.94984 -s 210 -d 211 -p ack -e 40 -i 31 -a 0 r -t 9.94985 -s 200 -d 210 -p ack -e 40 -i 31 -a 0 + -t 9.97125 -s 111 -d 112 -p ack -e 40 -i 25 -a 5 + -t 9.97125 -s 311 -d 312 -p ack -e 40 -i 25 -a 5 - -t 9.97125 -s 111 -d 112 -p ack -e 40 -i 25 -a 5 - -t 9.97125 -s 311 -d 312 -p ack -e 40 -i 25 -a 5 h -t 9.97125 -s 111 -d 112 -p ack -e 40 -i 25 -a 5 h -t 9.97125 -s 311 -d 312 -p ack -e 40 -i 25 -a 5 r -t 9.97125 -s 110 -d 111 -p ack -e 40 -i 25 -a 5 r -t 9.97125 -s 310 -d 311 -p ack -e 40 -i 25 -a 5 + -t 9.97228 -s 112 -d 111 -p tcp -e 1000 -i 29 -a 5 + -t 9.97228 -s 312 -d 311 -p tcp -e 1000 -i 29 -a 5 - -t 9.97228 -s 112 -d 111 -p tcp -e 1000 -i 29 -a 5 - -t 9.97228 -s 312 -d 311 -p tcp -e 1000 -i 29 -a 5 h -t 9.97228 -s 112 -d 111 -p tcp -e 1000 -i 29 -a 5 h -t 9.97228 -s 312 -d 311 -p tcp -e 1000 -i 29 -a 5 r -t 9.97229 -s 111 -d 112 -p ack -e 40 -i 25 -a 5 r -t 9.97229 -s 311 -d 312 -p ack -e 40 -i 25 -a 5 + -t 9.97408 -s 110 -d 105 -p tcp -e 1000 -i 22 -a 5 + -t 9.97408 -s 111 -d 110 -p tcp -e 1000 -i 29 -a 5 + -t 9.97408 -s 210 -d 205 -p tcp -e 1000 -i 25 -a 5 + -t 9.97408 -s 310 -d 305 -p tcp -e 1000 -i 22 -a 5 + -t 9.97408 -s 311 -d 310 -p tcp -e 1000 -i 29 -a 5 - -t 9.97408 -s 110 -d 105 -p tcp -e 1000 -i 22 -a 5 - -t 9.97408 -s 111 -d 110 -p tcp -e 1000 -i 29 -a 5 - -t 9.97408 -s 210 -d 205 -p tcp -e 1000 -i 25 -a 5 - -t 9.97408 -s 310 -d 305 -p tcp -e 1000 -i 22 -a 5 - -t 9.97408 -s 311 -d 310 -p tcp -e 1000 -i 29 -a 5 h -t 9.97408 -s 110 -d 105 -p tcp -e 1000 -i 22 -a 5 h -t 9.97408 -s 111 -d 110 -p tcp -e 1000 -i 29 -a 5 h -t 9.97408 -s 210 -d 205 -p tcp -e 1000 -i 25 -a 5 h -t 9.97408 -s 310 -d 305 -p tcp -e 1000 -i 22 -a 5 h -t 9.97408 -s 311 -d 310 -p tcp -e 1000 -i 29 -a 5 r -t 9.97408 -s 111 -d 110 -p tcp -e 1000 -i 22 -a 5 r -t 9.97408 -s 211 -d 210 -p tcp -e 1000 -i 25 -a 5 r -t 9.97408 -s 311 -d 310 -p tcp -e 1000 -i 22 -a 5 r -t 9.97428 -s 112 -d 111 -p tcp -e 1000 -i 29 -a 5 r -t 9.97428 -s 312 -d 311 -p tcp -e 1000 -i 29 -a 5 r -t 9.97608 -s 110 -d 105 -p tcp -e 1000 -i 22 -a 5 r -t 9.97608 -s 210 -d 205 -p tcp -e 1000 -i 25 -a 5 r -t 9.97608 -s 310 -d 305 -p tcp -e 1000 -i 22 -a 5 + -t 9.97902 -s 111 -d 112 -p ack -e 40 -i 26 -a 4 + -t 9.97902 -s 211 -d 212 -p ack -e 40 -i 28 -a 4 + -t 9.97902 -s 311 -d 312 -p ack -e 40 -i 26 -a 4 - -t 9.97902 -s 111 -d 112 -p ack -e 40 -i 26 -a 4 - -t 9.97902 -s 211 -d 212 -p ack -e 40 -i 28 -a 4 - -t 9.97902 -s 311 -d 312 -p ack -e 40 -i 26 -a 4 h -t 9.97902 -s 111 -d 112 -p ack -e 40 -i 26 -a 4 h -t 9.97902 -s 211 -d 212 -p ack -e 40 -i 28 -a 4 h -t 9.97902 -s 311 -d 312 -p ack -e 40 -i 26 -a 4 r -t 9.97902 -s 110 -d 111 -p ack -e 40 -i 26 -a 4 r -t 9.97902 -s 210 -d 211 -p ack -e 40 -i 28 -a 4 r -t 9.97902 -s 310 -d 311 -p ack -e 40 -i 26 -a 4 + -t 9.98005 -s 112 -d 111 -p tcp -e 1000 -i 30 -a 4 + -t 9.98005 -s 112 -d 111 -p tcp -e 1000 -i 31 -a 4 + -t 9.98005 -s 112 -d 111 -p tcp -e 1000 -i 32 -a 4 + -t 9.98005 -s 212 -d 211 -p tcp -e 1000 -i 32 -a 4 + -t 9.98005 -s 212 -d 211 -p tcp -e 1000 -i 33 -a 4 + -t 9.98005 -s 212 -d 211 -p tcp -e 1000 -i 34 -a 4 + -t 9.98005 -s 212 -d 211 -p tcp -e 1000 -i 35 -a 4 + -t 9.98005 -s 312 -d 311 -p tcp -e 1000 -i 30 -a 4 + -t 9.98005 -s 312 -d 311 -p tcp -e 1000 -i 31 -a 4 + -t 9.98005 -s 312 -d 311 -p tcp -e 1000 -i 32 -a 4 - -t 9.98005 -s 112 -d 111 -p tcp -e 1000 -i 30 -a 4 - -t 9.98005 -s 212 -d 211 -p tcp -e 1000 -i 32 -a 4 - -t 9.98005 -s 312 -d 311 -p tcp -e 1000 -i 30 -a 4 h -t 9.98005 -s 112 -d 111 -p tcp -e 1000 -i 30 -a 4 h -t 9.98005 -s 212 -d 211 -p tcp -e 1000 -i 32 -a 4 h -t 9.98005 -s 312 -d 311 -p tcp -e 1000 -i 30 -a 4 r -t 9.98006 -s 111 -d 112 -p ack -e 40 -i 26 -a 4 r -t 9.98006 -s 211 -d 212 -p ack -e 40 -i 28 -a 4 r -t 9.98006 -s 311 -d 312 -p ack -e 40 -i 26 -a 4 - -t 9.98085 -s 112 -d 111 -p tcp -e 1000 -i 31 -a 4 - -t 9.98085 -s 212 -d 211 -p tcp -e 1000 -i 33 -a 4 - -t 9.98085 -s 312 -d 311 -p tcp -e 1000 -i 31 -a 4 h -t 9.98085 -s 112 -d 111 -p tcp -e 1000 -i 31 -a 4 h -t 9.98085 -s 212 -d 211 -p tcp -e 1000 -i 33 -a 4 h -t 9.98085 -s 312 -d 311 -p tcp -e 1000 -i 31 -a 4 - -t 9.98165 -s 112 -d 111 -p tcp -e 1000 -i 32 -a 4 - -t 9.98165 -s 212 -d 211 -p tcp -e 1000 -i 34 -a 4 - -t 9.98165 -s 312 -d 311 -p tcp -e 1000 -i 32 -a 4 h -t 9.98165 -s 112 -d 111 -p tcp -e 1000 -i 32 -a 4 h -t 9.98165 -s 212 -d 211 -p tcp -e 1000 -i 34 -a 4 h -t 9.98165 -s 312 -d 311 -p tcp -e 1000 -i 32 -a 4 + -t 9.98185 -s 111 -d 110 -p tcp -e 1000 -i 30 -a 4 + -t 9.98185 -s 211 -d 210 -p tcp -e 1000 -i 32 -a 4 + -t 9.98185 -s 311 -d 310 -p tcp -e 1000 -i 30 -a 4 - -t 9.98185 -s 211 -d 210 -p tcp -e 1000 -i 32 -a 4 h -t 9.98185 -s 211 -d 210 -p tcp -e 1000 -i 32 -a 4 r -t 9.98205 -s 112 -d 111 -p tcp -e 1000 -i 30 -a 4 r -t 9.98205 -s 212 -d 211 -p tcp -e 1000 -i 32 -a 4 r -t 9.98205 -s 312 -d 311 -p tcp -e 1000 -i 30 -a 4 - -t 9.98245 -s 212 -d 211 -p tcp -e 1000 -i 35 -a 4 h -t 9.98245 -s 212 -d 211 -p tcp -e 1000 -i 35 -a 4 + -t 9.98265 -s 111 -d 110 -p tcp -e 1000 -i 31 -a 4 + -t 9.98265 -s 211 -d 210 -p tcp -e 1000 -i 33 -a 4 + -t 9.98265 -s 311 -d 310 -p tcp -e 1000 -i 31 -a 4 r -t 9.98285 -s 112 -d 111 -p tcp -e 1000 -i 31 -a 4 r -t 9.98285 -s 212 -d 211 -p tcp -e 1000 -i 33 -a 4 r -t 9.98285 -s 312 -d 311 -p tcp -e 1000 -i 31 -a 4 + -t 9.98345 -s 111 -d 110 -p tcp -e 1000 -i 32 -a 4 + -t 9.98345 -s 211 -d 210 -p tcp -e 1000 -i 34 -a 4 + -t 9.98345 -s 311 -d 310 -p tcp -e 1000 -i 32 -a 4 r -t 9.98365 -s 112 -d 111 -p tcp -e 1000 -i 32 -a 4 r -t 9.98365 -s 212 -d 211 -p tcp -e 1000 -i 34 -a 4 r -t 9.98365 -s 312 -d 311 -p tcp -e 1000 -i 32 -a 4 + -t 9.98408 -s 110 -d 105 -p tcp -e 1000 -i 23 -a 5 + -t 9.98408 -s 210 -d 205 -p tcp -e 1000 -i 26 -a 5 + -t 9.98408 -s 310 -d 305 -p tcp -e 1000 -i 23 -a 5 - -t 9.98408 -s 110 -d 105 -p tcp -e 1000 -i 23 -a 5 - -t 9.98408 -s 111 -d 110 -p tcp -e 1000 -i 30 -a 4 - -t 9.98408 -s 210 -d 205 -p tcp -e 1000 -i 26 -a 5 - -t 9.98408 -s 310 -d 305 -p tcp -e 1000 -i 23 -a 5 - -t 9.98408 -s 311 -d 310 -p tcp -e 1000 -i 30 -a 4 h -t 9.98408 -s 110 -d 105 -p tcp -e 1000 -i 23 -a 5 h -t 9.98408 -s 111 -d 110 -p tcp -e 1000 -i 30 -a 4 h -t 9.98408 -s 210 -d 205 -p tcp -e 1000 -i 26 -a 5 h -t 9.98408 -s 310 -d 305 -p tcp -e 1000 -i 23 -a 5 h -t 9.98408 -s 311 -d 310 -p tcp -e 1000 -i 30 -a 4 r -t 9.98408 -s 111 -d 110 -p tcp -e 1000 -i 23 -a 5 r -t 9.98408 -s 211 -d 210 -p tcp -e 1000 -i 26 -a 5 r -t 9.98408 -s 311 -d 310 -p tcp -e 1000 -i 23 -a 5 + -t 9.98425 -s 211 -d 210 -p tcp -e 1000 -i 35 -a 4 r -t 9.98445 -s 212 -d 211 -p tcp -e 1000 -i 35 -a 4 + -t 9.98588 -s 105 -d 110 -p ack -e 40 -i 33 -a 5 + -t 9.98588 -s 205 -d 210 -p ack -e 40 -i 36 -a 5 + -t 9.98588 -s 305 -d 310 -p ack -e 40 -i 33 -a 5 - -t 9.98588 -s 105 -d 110 -p ack -e 40 -i 33 -a 5 - -t 9.98588 -s 205 -d 210 -p ack -e 40 -i 36 -a 5 - -t 9.98588 -s 305 -d 310 -p ack -e 40 -i 33 -a 5 h -t 9.98588 -s 105 -d 110 -p ack -e 40 -i 33 -a 5 h -t 9.98588 -s 205 -d 210 -p ack -e 40 -i 36 -a 5 h -t 9.98588 -s 305 -d 310 -p ack -e 40 -i 33 -a 5 r -t 9.98608 -s 110 -d 105 -p tcp -e 1000 -i 23 -a 5 r -t 9.98608 -s 210 -d 205 -p tcp -e 1000 -i 26 -a 5 r -t 9.98608 -s 310 -d 305 -p tcp -e 1000 -i 23 -a 5 + -t 9.98691 -s 110 -d 111 -p ack -e 40 -i 33 -a 5 + -t 9.98691 -s 210 -d 211 -p ack -e 40 -i 36 -a 5 + -t 9.98691 -s 310 -d 311 -p ack -e 40 -i 33 -a 5 - -t 9.98691 -s 110 -d 111 -p ack -e 40 -i 33 -a 5 - -t 9.98691 -s 210 -d 211 -p ack -e 40 -i 36 -a 5 - -t 9.98691 -s 310 -d 311 -p ack -e 40 -i 33 -a 5 h -t 9.98691 -s 110 -d 111 -p ack -e 40 -i 33 -a 5 h -t 9.98691 -s 210 -d 211 -p ack -e 40 -i 36 -a 5 h -t 9.98691 -s 310 -d 311 -p ack -e 40 -i 33 -a 5 r -t 9.98692 -s 105 -d 110 -p ack -e 40 -i 33 -a 5 r -t 9.98692 -s 205 -d 210 -p ack -e 40 -i 36 -a 5 r -t 9.98692 -s 305 -d 310 -p ack -e 40 -i 33 -a 5 + -t 9.98758 -s 109 -d 110 -p ack -e 40 -i 34 -a 9 + -t 9.98758 -s 209 -d 210 -p ack -e 40 -i 37 -a 9 + -t 9.98758 -s 309 -d 310 -p ack -e 40 -i 34 -a 9 - -t 9.98758 -s 109 -d 110 -p ack -e 40 -i 34 -a 9 - -t 9.98758 -s 209 -d 210 -p ack -e 40 -i 37 -a 9 - -t 9.98758 -s 309 -d 310 -p ack -e 40 -i 34 -a 9 h -t 9.98758 -s 109 -d 110 -p ack -e 40 -i 34 -a 9 h -t 9.98758 -s 209 -d 210 -p ack -e 40 -i 37 -a 9 h -t 9.98758 -s 309 -d 310 -p ack -e 40 -i 34 -a 9 + -t 9.98862 -s 110 -d 111 -p ack -e 40 -i 34 -a 9 + -t 9.98862 -s 210 -d 211 -p ack -e 40 -i 37 -a 9 + -t 9.98862 -s 310 -d 311 -p ack -e 40 -i 34 -a 9 - -t 9.98862 -s 110 -d 111 -p ack -e 40 -i 34 -a 9 - -t 9.98862 -s 210 -d 211 -p ack -e 40 -i 37 -a 9 - -t 9.98862 -s 310 -d 311 -p ack -e 40 -i 34 -a 9 h -t 9.98862 -s 110 -d 111 -p ack -e 40 -i 34 -a 9 h -t 9.98862 -s 210 -d 211 -p ack -e 40 -i 37 -a 9 h -t 9.98862 -s 310 -d 311 -p ack -e 40 -i 34 -a 9 r -t 9.98862 -s 109 -d 110 -p ack -e 40 -i 34 -a 9 r -t 9.98862 -s 209 -d 210 -p ack -e 40 -i 37 -a 9 r -t 9.98862 -s 309 -d 310 -p ack -e 40 -i 34 -a 9 - -t 9.99185 -s 211 -d 210 -p tcp -e 1000 -i 33 -a 4 h -t 9.99185 -s 211 -d 210 -p tcp -e 1000 -i 33 -a 4 + -t 9.99408 -s 110 -d 105 -p tcp -e 1000 -i 24 -a 5 + -t 9.99408 -s 210 -d 205 -p tcp -e 1000 -i 27 -a 5 + -t 9.99408 -s 310 -d 305 -p tcp -e 1000 -i 24 -a 5 - -t 9.99408 -s 110 -d 105 -p tcp -e 1000 -i 24 -a 5 - -t 9.99408 -s 111 -d 110 -p tcp -e 1000 -i 31 -a 4 - -t 9.99408 -s 210 -d 205 -p tcp -e 1000 -i 27 -a 5 - -t 9.99408 -s 310 -d 305 -p tcp -e 1000 -i 24 -a 5 - -t 9.99408 -s 311 -d 310 -p tcp -e 1000 -i 31 -a 4 h -t 9.99408 -s 110 -d 105 -p tcp -e 1000 -i 24 -a 5 h -t 9.99408 -s 111 -d 110 -p tcp -e 1000 -i 31 -a 4 h -t 9.99408 -s 210 -d 205 -p tcp -e 1000 -i 27 -a 5 h -t 9.99408 -s 310 -d 305 -p tcp -e 1000 -i 24 -a 5 h -t 9.99408 -s 311 -d 310 -p tcp -e 1000 -i 31 -a 4 r -t 9.99408 -s 111 -d 110 -p tcp -e 1000 -i 24 -a 5 r -t 9.99408 -s 211 -d 210 -p tcp -e 1000 -i 27 -a 5 r -t 9.99408 -s 311 -d 310 -p tcp -e 1000 -i 24 -a 5 r -t 9.99608 -s 110 -d 105 -p tcp -e 1000 -i 24 -a 5 r -t 9.99608 -s 210 -d 205 -p tcp -e 1000 -i 27 -a 5 r -t 9.99608 -s 310 -d 305 -p tcp -e 1000 -i 24 -a 5 - -t 10.0018 -s 211 -d 210 -p tcp -e 1000 -i 34 -a 4 h -t 10.0018 -s 211 -d 210 -p tcp -e 1000 -i 34 -a 4 - -t 10.0041 -s 111 -d 110 -p tcp -e 1000 -i 32 -a 4 - -t 10.0041 -s 311 -d 310 -p tcp -e 1000 -i 32 -a 4 h -t 10.0041 -s 111 -d 110 -p tcp -e 1000 -i 32 -a 4 h -t 10.0041 -s 311 -d 310 -p tcp -e 1000 -i 32 -a 4 - -t 10.0118 -s 211 -d 210 -p tcp -e 1000 -i 35 -a 4 h -t 10.0118 -s 211 -d 210 -p tcp -e 1000 -i 35 -a 4 + -t 10.0291 -s 110 -d 102 -p tcp -e 1000 -i 27 -a 2 + -t 10.0291 -s 210 -d 202 -p tcp -e 1000 -i 29 -a 2 + -t 10.0291 -s 310 -d 302 -p tcp -e 1000 -i 27 -a 2 - -t 10.0291 -s 110 -d 102 -p tcp -e 1000 -i 27 -a 2 - -t 10.0291 -s 210 -d 202 -p tcp -e 1000 -i 29 -a 2 - -t 10.0291 -s 310 -d 302 -p tcp -e 1000 -i 27 -a 2 h -t 10.0291 -s 110 -d 102 -p tcp -e 1000 -i 27 -a 2 h -t 10.0291 -s 210 -d 202 -p tcp -e 1000 -i 29 -a 2 h -t 10.0291 -s 310 -d 302 -p tcp -e 1000 -i 27 -a 2 r -t 10.0291 -s 111 -d 110 -p tcp -e 1000 -i 27 -a 2 r -t 10.0291 -s 211 -d 210 -p tcp -e 1000 -i 29 -a 2 r -t 10.0291 -s 311 -d 310 -p tcp -e 1000 -i 27 -a 2 + -t 10.0302 -s 111 -d 112 -p ack -e 40 -i 28 -a 0 + -t 10.0302 -s 211 -d 212 -p ack -e 40 -i 30 -a 0 + -t 10.0302 -s 311 -d 312 -p ack -e 40 -i 28 -a 0 - -t 10.0302 -s 111 -d 112 -p ack -e 40 -i 28 -a 0 - -t 10.0302 -s 211 -d 212 -p ack -e 40 -i 30 -a 0 - -t 10.0302 -s 311 -d 312 -p ack -e 40 -i 28 -a 0 h -t 10.0302 -s 111 -d 112 -p ack -e 40 -i 28 -a 0 h -t 10.0302 -s 211 -d 212 -p ack -e 40 -i 30 -a 0 h -t 10.0302 -s 311 -d 312 -p ack -e 40 -i 28 -a 0 r -t 10.0302 -s 110 -d 111 -p ack -e 40 -i 28 -a 0 r -t 10.0302 -s 210 -d 211 -p ack -e 40 -i 30 -a 0 r -t 10.0302 -s 310 -d 311 -p ack -e 40 -i 28 -a 0 r -t 10.0311 -s 110 -d 102 -p tcp -e 1000 -i 27 -a 2 r -t 10.0311 -s 210 -d 202 -p tcp -e 1000 -i 29 -a 2 r -t 10.0311 -s 310 -d 302 -p tcp -e 1000 -i 27 -a 2 r -t 10.0312 -s 111 -d 112 -p ack -e 40 -i 28 -a 0 r -t 10.0312 -s 211 -d 212 -p ack -e 40 -i 30 -a 0 r -t 10.0312 -s 311 -d 312 -p ack -e 40 -i 28 -a 0 + -t 10.0313 -s 112 -d 111 -p tcp -e 1000 -i 35 -a 0 + -t 10.0313 -s 112 -d 111 -p tcp -e 1000 -i 36 -a 0 + -t 10.0313 -s 112 -d 111 -p tcp -e 1000 -i 37 -a 0 + -t 10.0313 -s 212 -d 211 -p tcp -e 1000 -i 38 -a 0 + -t 10.0313 -s 212 -d 211 -p tcp -e 1000 -i 39 -a 0 + -t 10.0313 -s 212 -d 211 -p tcp -e 1000 -i 40 -a 0 + -t 10.0313 -s 312 -d 311 -p tcp -e 1000 -i 35 -a 0 + -t 10.0313 -s 312 -d 311 -p tcp -e 1000 -i 36 -a 0 + -t 10.0313 -s 312 -d 311 -p tcp -e 1000 -i 37 -a 0 - -t 10.0313 -s 112 -d 111 -p tcp -e 1000 -i 35 -a 0 - -t 10.0313 -s 212 -d 211 -p tcp -e 1000 -i 38 -a 0 - -t 10.0313 -s 312 -d 311 -p tcp -e 1000 -i 35 -a 0 h -t 10.0313 -s 112 -d 111 -p tcp -e 1000 -i 35 -a 0 h -t 10.0313 -s 212 -d 211 -p tcp -e 1000 -i 38 -a 0 h -t 10.0313 -s 312 -d 311 -p tcp -e 1000 -i 35 -a 0 - -t 10.0321 -s 112 -d 111 -p tcp -e 1000 -i 36 -a 0 - -t 10.0321 -s 212 -d 211 -p tcp -e 1000 -i 39 -a 0 - -t 10.0321 -s 312 -d 311 -p tcp -e 1000 -i 36 -a 0 h -t 10.0321 -s 112 -d 111 -p tcp -e 1000 -i 36 -a 0 h -t 10.0321 -s 212 -d 211 -p tcp -e 1000 -i 39 -a 0 h -t 10.0321 -s 312 -d 311 -p tcp -e 1000 -i 36 -a 0 - -t 10.0329 -s 112 -d 111 -p tcp -e 1000 -i 37 -a 0 - -t 10.0329 -s 212 -d 211 -p tcp -e 1000 -i 40 -a 0 - -t 10.0329 -s 312 -d 311 -p tcp -e 1000 -i 37 -a 0 h -t 10.0329 -s 112 -d 111 -p tcp -e 1000 -i 37 -a 0 h -t 10.0329 -s 212 -d 211 -p tcp -e 1000 -i 40 -a 0 h -t 10.0329 -s 312 -d 311 -p tcp -e 1000 -i 37 -a 0 + -t 10.0331 -s 111 -d 110 -p tcp -e 1000 -i 35 -a 0 + -t 10.0331 -s 211 -d 210 -p tcp -e 1000 -i 38 -a 0 + -t 10.0331 -s 311 -d 310 -p tcp -e 1000 -i 35 -a 0 - -t 10.0331 -s 111 -d 110 -p tcp -e 1000 -i 35 -a 0 - -t 10.0331 -s 211 -d 210 -p tcp -e 1000 -i 38 -a 0 - -t 10.0331 -s 311 -d 310 -p tcp -e 1000 -i 35 -a 0 h -t 10.0331 -s 111 -d 110 -p tcp -e 1000 -i 35 -a 0 h -t 10.0331 -s 211 -d 210 -p tcp -e 1000 -i 38 -a 0 h -t 10.0331 -s 311 -d 310 -p tcp -e 1000 -i 35 -a 0 r -t 10.0333 -s 112 -d 111 -p tcp -e 1000 -i 35 -a 0 r -t 10.0333 -s 212 -d 211 -p tcp -e 1000 -i 38 -a 0 r -t 10.0333 -s 312 -d 311 -p tcp -e 1000 -i 35 -a 0 + -t 10.0339 -s 111 -d 110 -p tcp -e 1000 -i 36 -a 0 + -t 10.0339 -s 211 -d 210 -p tcp -e 1000 -i 39 -a 0 + -t 10.0339 -s 311 -d 310 -p tcp -e 1000 -i 36 -a 0 r -t 10.0341 -s 112 -d 111 -p tcp -e 1000 -i 36 -a 0 r -t 10.0341 -s 212 -d 211 -p tcp -e 1000 -i 39 -a 0 r -t 10.0341 -s 312 -d 311 -p tcp -e 1000 -i 36 -a 0 + -t 10.0347 -s 111 -d 110 -p tcp -e 1000 -i 37 -a 0 + -t 10.0347 -s 211 -d 210 -p tcp -e 1000 -i 40 -a 0 + -t 10.0347 -s 311 -d 310 -p tcp -e 1000 -i 37 -a 0 r -t 10.0349 -s 112 -d 111 -p tcp -e 1000 -i 37 -a 0 r -t 10.0349 -s 212 -d 211 -p tcp -e 1000 -i 40 -a 0 r -t 10.0349 -s 312 -d 311 -p tcp -e 1000 -i 37 -a 0 + -t 10.0388 -s 100 -d 110 -p ack -e 40 -i 38 -a 0 + -t 10.0388 -s 300 -d 310 -p ack -e 40 -i 38 -a 0 - -t 10.0388 -s 100 -d 110 -p ack -e 40 -i 38 -a 0 - -t 10.0388 -s 300 -d 310 -p ack -e 40 -i 38 -a 0 h -t 10.0388 -s 100 -d 110 -p ack -e 40 -i 38 -a 0 h -t 10.0388 -s 300 -d 310 -p ack -e 40 -i 38 -a 0 + -t 10.0398 -s 110 -d 111 -p ack -e 40 -i 38 -a 0 + -t 10.0398 -s 310 -d 311 -p ack -e 40 -i 38 -a 0 - -t 10.0398 -s 110 -d 111 -p ack -e 40 -i 38 -a 0 - -t 10.0398 -s 310 -d 311 -p ack -e 40 -i 38 -a 0 h -t 10.0398 -s 110 -d 111 -p ack -e 40 -i 38 -a 0 h -t 10.0398 -s 310 -d 311 -p ack -e 40 -i 38 -a 0 r -t 10.0398 -s 100 -d 110 -p ack -e 40 -i 38 -a 0 r -t 10.0398 -s 300 -d 310 -p ack -e 40 -i 38 -a 0 - -t 10.0431 -s 111 -d 110 -p tcp -e 1000 -i 36 -a 0 - -t 10.0431 -s 211 -d 210 -p tcp -e 1000 -i 39 -a 0 - -t 10.0431 -s 311 -d 310 -p tcp -e 1000 -i 36 -a 0 h -t 10.0431 -s 111 -d 110 -p tcp -e 1000 -i 36 -a 0 h -t 10.0431 -s 211 -d 210 -p tcp -e 1000 -i 39 -a 0 h -t 10.0431 -s 311 -d 310 -p tcp -e 1000 -i 36 -a 0 + -t 10.0502 -s 211 -d 212 -p ack -e 40 -i 31 -a 0 - -t 10.0502 -s 211 -d 212 -p ack -e 40 -i 31 -a 0 h -t 10.0502 -s 211 -d 212 -p ack -e 40 -i 31 -a 0 r -t 10.0502 -s 210 -d 211 -p ack -e 40 -i 31 -a 0 r -t 10.0512 -s 211 -d 212 -p ack -e 40 -i 31 -a 0 - -t 10.0531 -s 111 -d 110 -p tcp -e 1000 -i 37 -a 0 - -t 10.0531 -s 211 -d 210 -p tcp -e 1000 -i 40 -a 0 - -t 10.0531 -s 311 -d 310 -p tcp -e 1000 -i 37 -a 0 h -t 10.0531 -s 111 -d 110 -p tcp -e 1000 -i 37 -a 0 h -t 10.0531 -s 211 -d 210 -p tcp -e 1000 -i 40 -a 0 h -t 10.0531 -s 311 -d 310 -p tcp -e 1000 -i 37 -a 0 + -t 10.0655 -s 112 -d 111 -p tcp -e 1000 -i 39 -a 3 + -t 10.0655 -s 212 -d 211 -p tcp -e 1000 -i 41 -a 3 + -t 10.0655 -s 312 -d 311 -p tcp -e 1000 -i 39 -a 3 - -t 10.0655 -s 112 -d 111 -p tcp -e 1000 -i 39 -a 3 - -t 10.0655 -s 212 -d 211 -p tcp -e 1000 -i 41 -a 3 - -t 10.0655 -s 312 -d 311 -p tcp -e 1000 -i 39 -a 3 h -t 10.0655 -s 112 -d 111 -p tcp -e 1000 -i 39 -a 3 h -t 10.0655 -s 212 -d 211 -p tcp -e 1000 -i 41 -a 3 h -t 10.0655 -s 312 -d 311 -p tcp -e 1000 -i 39 -a 3 + -t 10.0673 -s 111 -d 110 -p tcp -e 1000 -i 39 -a 3 + -t 10.0673 -s 211 -d 210 -p tcp -e 1000 -i 41 -a 3 + -t 10.0673 -s 311 -d 310 -p tcp -e 1000 -i 39 -a 3 - -t 10.0673 -s 111 -d 110 -p tcp -e 1000 -i 39 -a 3 - -t 10.0673 -s 211 -d 210 -p tcp -e 1000 -i 41 -a 3 - -t 10.0673 -s 311 -d 310 -p tcp -e 1000 -i 39 -a 3 h -t 10.0673 -s 111 -d 110 -p tcp -e 1000 -i 39 -a 3 h -t 10.0673 -s 211 -d 210 -p tcp -e 1000 -i 41 -a 3 h -t 10.0673 -s 311 -d 310 -p tcp -e 1000 -i 39 -a 3 r -t 10.0675 -s 112 -d 111 -p tcp -e 1000 -i 39 -a 3 r -t 10.0675 -s 212 -d 211 -p tcp -e 1000 -i 41 -a 3 r -t 10.0675 -s 312 -d 311 -p tcp -e 1000 -i 39 -a 3 + -t 10.0841 -s 110 -d 105 -p tcp -e 1000 -i 29 -a 5 + -t 10.0841 -s 310 -d 305 -p tcp -e 1000 -i 29 -a 5 - -t 10.0841 -s 110 -d 105 -p tcp -e 1000 -i 29 -a 5 - -t 10.0841 -s 310 -d 305 -p tcp -e 1000 -i 29 -a 5 h -t 10.0841 -s 110 -d 105 -p tcp -e 1000 -i 29 -a 5 h -t 10.0841 -s 310 -d 305 -p tcp -e 1000 -i 29 -a 5 r -t 10.0841 -s 111 -d 110 -p tcp -e 1000 -i 29 -a 5 r -t 10.0841 -s 311 -d 310 -p tcp -e 1000 -i 29 -a 5 + -t 10.0859 -s 105 -d 110 -p ack -e 40 -i 40 -a 5 + -t 10.0859 -s 305 -d 310 -p ack -e 40 -i 40 -a 5 - -t 10.0859 -s 105 -d 110 -p ack -e 40 -i 40 -a 5 - -t 10.0859 -s 305 -d 310 -p ack -e 40 -i 40 -a 5 h -t 10.0859 -s 105 -d 110 -p ack -e 40 -i 40 -a 5 h -t 10.0859 -s 305 -d 310 -p ack -e 40 -i 40 -a 5 r -t 10.0861 -s 110 -d 105 -p tcp -e 1000 -i 29 -a 5 r -t 10.0861 -s 310 -d 305 -p tcp -e 1000 -i 29 -a 5 + -t 10.0869 -s 110 -d 111 -p ack -e 40 -i 40 -a 5 + -t 10.0869 -s 310 -d 311 -p ack -e 40 -i 40 -a 5 - -t 10.0869 -s 110 -d 111 -p ack -e 40 -i 40 -a 5 - -t 10.0869 -s 310 -d 311 -p ack -e 40 -i 40 -a 5 h -t 10.0869 -s 110 -d 111 -p ack -e 40 -i 40 -a 5 h -t 10.0869 -s 310 -d 311 -p ack -e 40 -i 40 -a 5 r -t 10.0869 -s 105 -d 110 -p ack -e 40 -i 40 -a 5 r -t 10.0869 -s 305 -d 310 -p ack -e 40 -i 40 -a 5 + -t 10.0873 -s 111 -d 112 -p ack -e 40 -i 33 -a 5 + -t 10.0873 -s 211 -d 212 -p ack -e 40 -i 36 -a 5 + -t 10.0873 -s 311 -d 312 -p ack -e 40 -i 33 -a 5 - -t 10.0873 -s 111 -d 112 -p ack -e 40 -i 33 -a 5 - -t 10.0873 -s 211 -d 212 -p ack -e 40 -i 36 -a 5 - -t 10.0873 -s 311 -d 312 -p ack -e 40 -i 33 -a 5 h -t 10.0873 -s 111 -d 112 -p ack -e 40 -i 33 -a 5 h -t 10.0873 -s 211 -d 212 -p ack -e 40 -i 36 -a 5 h -t 10.0873 -s 311 -d 312 -p ack -e 40 -i 33 -a 5 r -t 10.0873 -s 110 -d 111 -p ack -e 40 -i 33 -a 5 r -t 10.0873 -s 210 -d 211 -p ack -e 40 -i 36 -a 5 r -t 10.0873 -s 310 -d 311 -p ack -e 40 -i 33 -a 5 r -t 10.0883 -s 111 -d 112 -p ack -e 40 -i 33 -a 5 r -t 10.0883 -s 211 -d 212 -p ack -e 40 -i 36 -a 5 r -t 10.0883 -s 311 -d 312 -p ack -e 40 -i 33 -a 5 + -t 10.089 -s 111 -d 112 -p ack -e 40 -i 34 -a 9 + -t 10.089 -s 211 -d 212 -p ack -e 40 -i 37 -a 9 + -t 10.089 -s 311 -d 312 -p ack -e 40 -i 34 -a 9 - -t 10.089 -s 111 -d 112 -p ack -e 40 -i 34 -a 9 - -t 10.089 -s 211 -d 212 -p ack -e 40 -i 37 -a 9 - -t 10.089 -s 311 -d 312 -p ack -e 40 -i 34 -a 9 h -t 10.089 -s 111 -d 112 -p ack -e 40 -i 34 -a 9 h -t 10.089 -s 211 -d 212 -p ack -e 40 -i 37 -a 9 h -t 10.089 -s 311 -d 312 -p ack -e 40 -i 34 -a 9 r -t 10.089 -s 110 -d 111 -p ack -e 40 -i 34 -a 9 r -t 10.089 -s 210 -d 211 -p ack -e 40 -i 37 -a 9 r -t 10.089 -s 310 -d 311 -p ack -e 40 -i 34 -a 9 + -t 10.09 -s 112 -d 111 -p tcp -e 1000 -i 41 -a 9 + -t 10.09 -s 112 -d 111 -p tcp -e 1000 -i 42 -a 9 + -t 10.09 -s 212 -d 211 -p tcp -e 1000 -i 42 -a 9 + -t 10.09 -s 212 -d 211 -p tcp -e 1000 -i 43 -a 9 + -t 10.09 -s 312 -d 311 -p tcp -e 1000 -i 41 -a 9 + -t 10.09 -s 312 -d 311 -p tcp -e 1000 -i 42 -a 9 - -t 10.09 -s 112 -d 111 -p tcp -e 1000 -i 41 -a 9 - -t 10.09 -s 212 -d 211 -p tcp -e 1000 -i 42 -a 9 - -t 10.09 -s 312 -d 311 -p tcp -e 1000 -i 41 -a 9 h -t 10.09 -s 112 -d 111 -p tcp -e 1000 -i 41 -a 9 h -t 10.09 -s 212 -d 211 -p tcp -e 1000 -i 42 -a 9 h -t 10.09 -s 312 -d 311 -p tcp -e 1000 -i 41 -a 9 r -t 10.09 -s 111 -d 112 -p ack -e 40 -i 34 -a 9 r -t 10.09 -s 211 -d 212 -p ack -e 40 -i 37 -a 9 r -t 10.09 -s 311 -d 312 -p ack -e 40 -i 34 -a 9 - -t 10.0908 -s 112 -d 111 -p tcp -e 1000 -i 42 -a 9 - -t 10.0908 -s 212 -d 211 -p tcp -e 1000 -i 43 -a 9 - -t 10.0908 -s 312 -d 311 -p tcp -e 1000 -i 42 -a 9 h -t 10.0908 -s 112 -d 111 -p tcp -e 1000 -i 42 -a 9 h -t 10.0908 -s 212 -d 211 -p tcp -e 1000 -i 43 -a 9 h -t 10.0908 -s 312 -d 311 -p tcp -e 1000 -i 42 -a 9 + -t 10.0918 -s 111 -d 110 -p tcp -e 1000 -i 41 -a 9 + -t 10.0918 -s 210 -d 204 -p tcp -e 1000 -i 32 -a 4 + -t 10.0918 -s 211 -d 210 -p tcp -e 1000 -i 42 -a 9 + -t 10.0918 -s 311 -d 310 -p tcp -e 1000 -i 41 -a 9 - -t 10.0918 -s 111 -d 110 -p tcp -e 1000 -i 41 -a 9 - -t 10.0918 -s 210 -d 204 -p tcp -e 1000 -i 32 -a 4 - -t 10.0918 -s 211 -d 210 -p tcp -e 1000 -i 42 -a 9 - -t 10.0918 -s 311 -d 310 -p tcp -e 1000 -i 41 -a 9 h -t 10.0918 -s 111 -d 110 -p tcp -e 1000 -i 41 -a 9 h -t 10.0918 -s 210 -d 204 -p tcp -e 1000 -i 32 -a 4 h -t 10.0918 -s 211 -d 210 -p tcp -e 1000 -i 42 -a 9 h -t 10.0918 -s 311 -d 310 -p tcp -e 1000 -i 41 -a 9 r -t 10.0918 -s 211 -d 210 -p tcp -e 1000 -i 32 -a 4 r -t 10.092 -s 112 -d 111 -p tcp -e 1000 -i 41 -a 9 r -t 10.092 -s 212 -d 211 -p tcp -e 1000 -i 42 -a 9 r -t 10.092 -s 312 -d 311 -p tcp -e 1000 -i 41 -a 9 + -t 10.0926 -s 111 -d 110 -p tcp -e 1000 -i 42 -a 9 + -t 10.0926 -s 211 -d 210 -p tcp -e 1000 -i 43 -a 9 + -t 10.0926 -s 311 -d 310 -p tcp -e 1000 -i 42 -a 9 r -t 10.0928 -s 112 -d 111 -p tcp -e 1000 -i 42 -a 9 r -t 10.0928 -s 212 -d 211 -p tcp -e 1000 -i 43 -a 9 r -t 10.0928 -s 312 -d 311 -p tcp -e 1000 -i 42 -a 9 r -t 10.0938 -s 210 -d 204 -p tcp -e 1000 -i 32 -a 4 + -t 10.0941 -s 110 -d 104 -p tcp -e 1000 -i 30 -a 4 + -t 10.0941 -s 310 -d 304 -p tcp -e 1000 -i 30 -a 4 - -t 10.0941 -s 110 -d 104 -p tcp -e 1000 -i 30 -a 4 - -t 10.0941 -s 310 -d 304 -p tcp -e 1000 -i 30 -a 4 h -t 10.0941 -s 110 -d 104 -p tcp -e 1000 -i 30 -a 4 h -t 10.0941 -s 310 -d 304 -p tcp -e 1000 -i 30 -a 4 r -t 10.0941 -s 111 -d 110 -p tcp -e 1000 -i 30 -a 4 r -t 10.0941 -s 311 -d 310 -p tcp -e 1000 -i 30 -a 4 + -t 10.0959 -s 205 -d 210 -p ack -e 40 -i 44 -a 5 - -t 10.0959 -s 205 -d 210 -p ack -e 40 -i 44 -a 5 h -t 10.0959 -s 205 -d 210 -p ack -e 40 -i 44 -a 5 r -t 10.0961 -s 110 -d 104 -p tcp -e 1000 -i 30 -a 4 r -t 10.0961 -s 310 -d 304 -p tcp -e 1000 -i 30 -a 4 + -t 10.0969 -s 210 -d 211 -p ack -e 40 -i 44 -a 5 - -t 10.0969 -s 210 -d 211 -p ack -e 40 -i 44 -a 5 h -t 10.0969 -s 210 -d 211 -p ack -e 40 -i 44 -a 5 r -t 10.0969 -s 205 -d 210 -p ack -e 40 -i 44 -a 5 + -t 10.1018 -s 210 -d 204 -p tcp -e 1000 -i 33 -a 4 - -t 10.1018 -s 111 -d 110 -p tcp -e 1000 -i 42 -a 9 - -t 10.1018 -s 210 -d 204 -p tcp -e 1000 -i 33 -a 4 - -t 10.1018 -s 211 -d 210 -p tcp -e 1000 -i 43 -a 9 - -t 10.1018 -s 311 -d 310 -p tcp -e 1000 -i 42 -a 9 h -t 10.1018 -s 111 -d 110 -p tcp -e 1000 -i 42 -a 9 h -t 10.1018 -s 210 -d 204 -p tcp -e 1000 -i 33 -a 4 h -t 10.1018 -s 211 -d 210 -p tcp -e 1000 -i 43 -a 9 h -t 10.1018 -s 311 -d 310 -p tcp -e 1000 -i 42 -a 9 r -t 10.1018 -s 211 -d 210 -p tcp -e 1000 -i 33 -a 4 + -t 10.1036 -s 204 -d 210 -p ack -e 40 -i 45 -a 4 - -t 10.1036 -s 204 -d 210 -p ack -e 40 -i 45 -a 4 h -t 10.1036 -s 204 -d 210 -p ack -e 40 -i 45 -a 4 r -t 10.1038 -s 210 -d 204 -p tcp -e 1000 -i 33 -a 4 + -t 10.1041 -s 110 -d 104 -p tcp -e 1000 -i 31 -a 4 + -t 10.1041 -s 310 -d 304 -p tcp -e 1000 -i 31 -a 4 - -t 10.1041 -s 110 -d 104 -p tcp -e 1000 -i 31 -a 4 - -t 10.1041 -s 310 -d 304 -p tcp -e 1000 -i 31 -a 4 h -t 10.1041 -s 110 -d 104 -p tcp -e 1000 -i 31 -a 4 h -t 10.1041 -s 310 -d 304 -p tcp -e 1000 -i 31 -a 4 r -t 10.1041 -s 111 -d 110 -p tcp -e 1000 -i 31 -a 4 r -t 10.1041 -s 311 -d 310 -p tcp -e 1000 -i 31 -a 4 r -t 10.1046 -s 204 -d 210 -p ack -e 40 -i 45 -a 4 + -t 10.1047 -s 210 -d 211 -p ack -e 40 -i 45 -a 4 - -t 10.1047 -s 210 -d 211 -p ack -e 40 -i 45 -a 4 h -t 10.1047 -s 210 -d 211 -p ack -e 40 -i 45 -a 4 + -t 10.1059 -s 104 -d 110 -p ack -e 40 -i 43 -a 4 + -t 10.1059 -s 304 -d 310 -p ack -e 40 -i 43 -a 4 - -t 10.1059 -s 104 -d 110 -p ack -e 40 -i 43 -a 4 - -t 10.1059 -s 304 -d 310 -p ack -e 40 -i 43 -a 4 h -t 10.1059 -s 104 -d 110 -p ack -e 40 -i 43 -a 4 h -t 10.1059 -s 304 -d 310 -p ack -e 40 -i 43 -a 4 r -t 10.1061 -s 110 -d 104 -p tcp -e 1000 -i 31 -a 4 r -t 10.1061 -s 310 -d 304 -p tcp -e 1000 -i 31 -a 4 + -t 10.1069 -s 110 -d 111 -p ack -e 40 -i 43 -a 4 + -t 10.1069 -s 310 -d 311 -p ack -e 40 -i 43 -a 4 - -t 10.1069 -s 110 -d 111 -p ack -e 40 -i 43 -a 4 - -t 10.1069 -s 310 -d 311 -p ack -e 40 -i 43 -a 4 h -t 10.1069 -s 110 -d 111 -p ack -e 40 -i 43 -a 4 h -t 10.1069 -s 310 -d 311 -p ack -e 40 -i 43 -a 4 r -t 10.1069 -s 104 -d 110 -p ack -e 40 -i 43 -a 4 r -t 10.1069 -s 304 -d 310 -p ack -e 40 -i 43 -a 4 + -t 10.1118 -s 210 -d 204 -p tcp -e 1000 -i 34 -a 4 - -t 10.1118 -s 210 -d 204 -p tcp -e 1000 -i 34 -a 4 h -t 10.1118 -s 210 -d 204 -p tcp -e 1000 -i 34 -a 4 r -t 10.1118 -s 211 -d 210 -p tcp -e 1000 -i 34 -a 4 r -t 10.1138 -s 210 -d 204 -p tcp -e 1000 -i 34 -a 4 + -t 10.1141 -s 110 -d 104 -p tcp -e 1000 -i 32 -a 4 + -t 10.1141 -s 310 -d 304 -p tcp -e 1000 -i 32 -a 4 - -t 10.1141 -s 110 -d 104 -p tcp -e 1000 -i 32 -a 4 - -t 10.1141 -s 310 -d 304 -p tcp -e 1000 -i 32 -a 4 h -t 10.1141 -s 110 -d 104 -p tcp -e 1000 -i 32 -a 4 h -t 10.1141 -s 310 -d 304 -p tcp -e 1000 -i 32 -a 4 r -t 10.1141 -s 111 -d 110 -p tcp -e 1000 -i 32 -a 4 r -t 10.1141 -s 311 -d 310 -p tcp -e 1000 -i 32 -a 4 r -t 10.1161 -s 110 -d 104 -p tcp -e 1000 -i 32 -a 4 r -t 10.1161 -s 310 -d 304 -p tcp -e 1000 -i 32 -a 4 + -t 10.1218 -s 210 -d 204 -p tcp -e 1000 -i 35 -a 4 - -t 10.1218 -s 210 -d 204 -p tcp -e 1000 -i 35 -a 4 h -t 10.1218 -s 210 -d 204 -p tcp -e 1000 -i 35 -a 4 r -t 10.1218 -s 211 -d 210 -p tcp -e 1000 -i 35 -a 4 + -t 10.1236 -s 204 -d 210 -p ack -e 40 -i 46 -a 4 - -t 10.1236 -s 204 -d 210 -p ack -e 40 -i 46 -a 4 h -t 10.1236 -s 204 -d 210 -p ack -e 40 -i 46 -a 4 r -t 10.1238 -s 210 -d 204 -p tcp -e 1000 -i 35 -a 4 r -t 10.1246 -s 204 -d 210 -p ack -e 40 -i 46 -a 4 + -t 10.1247 -s 210 -d 211 -p ack -e 40 -i 46 -a 4 - -t 10.1247 -s 210 -d 211 -p ack -e 40 -i 46 -a 4 h -t 10.1247 -s 210 -d 211 -p ack -e 40 -i 46 -a 4 + -t 10.1309 -s 102 -d 110 -p ack -e 40 -i 44 -a 2 + -t 10.1309 -s 202 -d 210 -p ack -e 40 -i 47 -a 2 + -t 10.1309 -s 302 -d 310 -p ack -e 40 -i 44 -a 2 - -t 10.1309 -s 102 -d 110 -p ack -e 40 -i 44 -a 2 - -t 10.1309 -s 202 -d 210 -p ack -e 40 -i 47 -a 2 - -t 10.1309 -s 302 -d 310 -p ack -e 40 -i 44 -a 2 h -t 10.1309 -s 102 -d 110 -p ack -e 40 -i 44 -a 2 h -t 10.1309 -s 202 -d 210 -p ack -e 40 -i 47 -a 2 h -t 10.1309 -s 302 -d 310 -p ack -e 40 -i 44 -a 2 + -t 10.1319 -s 110 -d 111 -p ack -e 40 -i 44 -a 2 + -t 10.1319 -s 210 -d 211 -p ack -e 40 -i 47 -a 2 + -t 10.1319 -s 310 -d 311 -p ack -e 40 -i 44 -a 2 - -t 10.1319 -s 110 -d 111 -p ack -e 40 -i 44 -a 2 - -t 10.1319 -s 210 -d 211 -p ack -e 40 -i 47 -a 2 - -t 10.1319 -s 310 -d 311 -p ack -e 40 -i 44 -a 2 h -t 10.1319 -s 110 -d 111 -p ack -e 40 -i 44 -a 2 h -t 10.1319 -s 210 -d 211 -p ack -e 40 -i 47 -a 2 h -t 10.1319 -s 310 -d 311 -p ack -e 40 -i 44 -a 2 r -t 10.1319 -s 102 -d 110 -p ack -e 40 -i 44 -a 2 r -t 10.1319 -s 202 -d 210 -p ack -e 40 -i 47 -a 2 r -t 10.1319 -s 302 -d 310 -p ack -e 40 -i 44 -a 2 + -t 10.1402 -s 111 -d 112 -p ack -e 40 -i 38 -a 0 + -t 10.1402 -s 311 -d 312 -p ack -e 40 -i 38 -a 0 - -t 10.1402 -s 111 -d 112 -p ack -e 40 -i 38 -a 0 - -t 10.1402 -s 311 -d 312 -p ack -e 40 -i 38 -a 0 h -t 10.1402 -s 111 -d 112 -p ack -e 40 -i 38 -a 0 h -t 10.1402 -s 311 -d 312 -p ack -e 40 -i 38 -a 0 r -t 10.1402 -s 110 -d 111 -p ack -e 40 -i 38 -a 0 r -t 10.1402 -s 310 -d 311 -p ack -e 40 -i 38 -a 0 r -t 10.1412 -s 111 -d 112 -p ack -e 40 -i 38 -a 0 r -t 10.1412 -s 311 -d 312 -p ack -e 40 -i 38 -a 0 + -t 10.1413 -s 112 -d 111 -p tcp -e 1000 -i 45 -a 0 + -t 10.1413 -s 312 -d 311 -p tcp -e 1000 -i 45 -a 0 - -t 10.1413 -s 112 -d 111 -p tcp -e 1000 -i 45 -a 0 - -t 10.1413 -s 312 -d 311 -p tcp -e 1000 -i 45 -a 0 h -t 10.1413 -s 112 -d 111 -p tcp -e 1000 -i 45 -a 0 h -t 10.1413 -s 312 -d 311 -p tcp -e 1000 -i 45 -a 0 + -t 10.1431 -s 110 -d 100 -p tcp -e 1000 -i 35 -a 0 + -t 10.1431 -s 111 -d 110 -p tcp -e 1000 -i 45 -a 0 + -t 10.1431 -s 210 -d 200 -p tcp -e 1000 -i 38 -a 0 + -t 10.1431 -s 310 -d 300 -p tcp -e 1000 -i 35 -a 0 + -t 10.1431 -s 311 -d 310 -p tcp -e 1000 -i 45 -a 0 - -t 10.1431 -s 110 -d 100 -p tcp -e 1000 -i 35 -a 0 - -t 10.1431 -s 111 -d 110 -p tcp -e 1000 -i 45 -a 0 - -t 10.1431 -s 210 -d 200 -p tcp -e 1000 -i 38 -a 0 - -t 10.1431 -s 310 -d 300 -p tcp -e 1000 -i 35 -a 0 - -t 10.1431 -s 311 -d 310 -p tcp -e 1000 -i 45 -a 0 h -t 10.1431 -s 110 -d 100 -p tcp -e 1000 -i 35 -a 0 h -t 10.1431 -s 111 -d 110 -p tcp -e 1000 -i 45 -a 0 h -t 10.1431 -s 210 -d 200 -p tcp -e 1000 -i 38 -a 0 h -t 10.1431 -s 310 -d 300 -p tcp -e 1000 -i 35 -a 0 h -t 10.1431 -s 311 -d 310 -p tcp -e 1000 -i 45 -a 0 r -t 10.1431 -s 111 -d 110 -p tcp -e 1000 -i 35 -a 0 r -t 10.1431 -s 211 -d 210 -p tcp -e 1000 -i 38 -a 0 r -t 10.1431 -s 311 -d 310 -p tcp -e 1000 -i 35 -a 0 r -t 10.1433 -s 112 -d 111 -p tcp -e 1000 -i 45 -a 0 r -t 10.1433 -s 312 -d 311 -p tcp -e 1000 -i 45 -a 0 r -t 10.1451 -s 110 -d 100 -p tcp -e 1000 -i 35 -a 0 r -t 10.1451 -s 210 -d 200 -p tcp -e 1000 -i 38 -a 0 r -t 10.1451 -s 310 -d 300 -p tcp -e 1000 -i 35 -a 0 + -t 10.1531 -s 110 -d 100 -p tcp -e 1000 -i 36 -a 0 + -t 10.1531 -s 210 -d 200 -p tcp -e 1000 -i 39 -a 0 + -t 10.1531 -s 310 -d 300 -p tcp -e 1000 -i 36 -a 0 - -t 10.1531 -s 110 -d 100 -p tcp -e 1000 -i 36 -a 0 - -t 10.1531 -s 210 -d 200 -p tcp -e 1000 -i 39 -a 0 - -t 10.1531 -s 310 -d 300 -p tcp -e 1000 -i 36 -a 0 h -t 10.1531 -s 110 -d 100 -p tcp -e 1000 -i 36 -a 0 h -t 10.1531 -s 210 -d 200 -p tcp -e 1000 -i 39 -a 0 h -t 10.1531 -s 310 -d 300 -p tcp -e 1000 -i 36 -a 0 r -t 10.1531 -s 111 -d 110 -p tcp -e 1000 -i 36 -a 0 r -t 10.1531 -s 211 -d 210 -p tcp -e 1000 -i 39 -a 0 r -t 10.1531 -s 311 -d 310 -p tcp -e 1000 -i 36 -a 0 + -t 10.1549 -s 100 -d 110 -p ack -e 40 -i 46 -a 0 + -t 10.1549 -s 200 -d 210 -p ack -e 40 -i 48 -a 0 + -t 10.1549 -s 300 -d 310 -p ack -e 40 -i 46 -a 0 - -t 10.1549 -s 100 -d 110 -p ack -e 40 -i 46 -a 0 - -t 10.1549 -s 200 -d 210 -p ack -e 40 -i 48 -a 0 - -t 10.1549 -s 300 -d 310 -p ack -e 40 -i 46 -a 0 h -t 10.1549 -s 100 -d 110 -p ack -e 40 -i 46 -a 0 h -t 10.1549 -s 200 -d 210 -p ack -e 40 -i 48 -a 0 h -t 10.1549 -s 300 -d 310 -p ack -e 40 -i 46 -a 0 r -t 10.1551 -s 110 -d 100 -p tcp -e 1000 -i 36 -a 0 r -t 10.1551 -s 210 -d 200 -p tcp -e 1000 -i 39 -a 0 r -t 10.1551 -s 310 -d 300 -p tcp -e 1000 -i 36 -a 0 + -t 10.1559 -s 110 -d 111 -p ack -e 40 -i 46 -a 0 + -t 10.1559 -s 210 -d 211 -p ack -e 40 -i 48 -a 0 + -t 10.1559 -s 310 -d 311 -p ack -e 40 -i 46 -a 0 - -t 10.1559 -s 110 -d 111 -p ack -e 40 -i 46 -a 0 - -t 10.1559 -s 210 -d 211 -p ack -e 40 -i 48 -a 0 - -t 10.1559 -s 310 -d 311 -p ack -e 40 -i 46 -a 0 h -t 10.1559 -s 110 -d 111 -p ack -e 40 -i 46 -a 0 h -t 10.1559 -s 210 -d 211 -p ack -e 40 -i 48 -a 0 h -t 10.1559 -s 310 -d 311 -p ack -e 40 -i 46 -a 0 r -t 10.1559 -s 100 -d 110 -p ack -e 40 -i 46 -a 0 r -t 10.1559 -s 200 -d 210 -p ack -e 40 -i 48 -a 0 r -t 10.1559 -s 300 -d 310 -p ack -e 40 -i 46 -a 0 + -t 10.1631 -s 110 -d 100 -p tcp -e 1000 -i 37 -a 0 + -t 10.1631 -s 210 -d 200 -p tcp -e 1000 -i 40 -a 0 + -t 10.1631 -s 310 -d 300 -p tcp -e 1000 -i 37 -a 0 - -t 10.1631 -s 110 -d 100 -p tcp -e 1000 -i 37 -a 0 - -t 10.1631 -s 210 -d 200 -p tcp -e 1000 -i 40 -a 0 - -t 10.1631 -s 310 -d 300 -p tcp -e 1000 -i 37 -a 0 h -t 10.1631 -s 110 -d 100 -p tcp -e 1000 -i 37 -a 0 h -t 10.1631 -s 210 -d 200 -p tcp -e 1000 -i 40 -a 0 h -t 10.1631 -s 310 -d 300 -p tcp -e 1000 -i 37 -a 0 r -t 10.1631 -s 111 -d 110 -p tcp -e 1000 -i 37 -a 0 r -t 10.1631 -s 211 -d 210 -p tcp -e 1000 -i 40 -a 0 r -t 10.1631 -s 311 -d 310 -p tcp -e 1000 -i 37 -a 0 r -t 10.1651 -s 110 -d 100 -p tcp -e 1000 -i 37 -a 0 r -t 10.1651 -s 210 -d 200 -p tcp -e 1000 -i 40 -a 0 r -t 10.1651 -s 310 -d 300 -p tcp -e 1000 -i 37 -a 0 + -t 10.1773 -s 110 -d 103 -p tcp -e 1000 -i 39 -a 3 + -t 10.1773 -s 210 -d 203 -p tcp -e 1000 -i 41 -a 3 + -t 10.1773 -s 310 -d 303 -p tcp -e 1000 -i 39 -a 3 - -t 10.1773 -s 110 -d 103 -p tcp -e 1000 -i 39 -a 3 - -t 10.1773 -s 210 -d 203 -p tcp -e 1000 -i 41 -a 3 - -t 10.1773 -s 310 -d 303 -p tcp -e 1000 -i 39 -a 3 h -t 10.1773 -s 110 -d 103 -p tcp -e 1000 -i 39 -a 3 h -t 10.1773 -s 210 -d 203 -p tcp -e 1000 -i 41 -a 3 h -t 10.1773 -s 310 -d 303 -p tcp -e 1000 -i 39 -a 3 r -t 10.1773 -s 111 -d 110 -p tcp -e 1000 -i 39 -a 3 r -t 10.1773 -s 211 -d 210 -p tcp -e 1000 -i 41 -a 3 r -t 10.1773 -s 311 -d 310 -p tcp -e 1000 -i 39 -a 3 r -t 10.1793 -s 110 -d 103 -p tcp -e 1000 -i 39 -a 3 r -t 10.1793 -s 210 -d 203 -p tcp -e 1000 -i 41 -a 3 r -t 10.1793 -s 310 -d 303 -p tcp -e 1000 -i 39 -a 3 + -t 10.1873 -s 111 -d 112 -p ack -e 40 -i 40 -a 5 + -t 10.1873 -s 311 -d 312 -p ack -e 40 -i 40 -a 5 - -t 10.1873 -s 111 -d 112 -p ack -e 40 -i 40 -a 5 - -t 10.1873 -s 311 -d 312 -p ack -e 40 -i 40 -a 5 h -t 10.1873 -s 111 -d 112 -p ack -e 40 -i 40 -a 5 h -t 10.1873 -s 311 -d 312 -p ack -e 40 -i 40 -a 5 r -t 10.1873 -s 110 -d 111 -p ack -e 40 -i 40 -a 5 r -t 10.1873 -s 310 -d 311 -p ack -e 40 -i 40 -a 5 r -t 10.1883 -s 111 -d 112 -p ack -e 40 -i 40 -a 5 r -t 10.1883 -s 311 -d 312 -p ack -e 40 -i 40 -a 5 + -t 10.1973 -s 211 -d 212 -p ack -e 40 -i 44 -a 5 - -t 10.1973 -s 211 -d 212 -p ack -e 40 -i 44 -a 5 h -t 10.1973 -s 211 -d 212 -p ack -e 40 -i 44 -a 5 r -t 10.1973 -s 210 -d 211 -p ack -e 40 -i 44 -a 5 r -t 10.1983 -s 211 -d 212 -p ack -e 40 -i 44 -a 5 + -t 10.2018 -s 110 -d 109 -p tcp -e 1000 -i 41 -a 9 + -t 10.2018 -s 210 -d 209 -p tcp -e 1000 -i 42 -a 9 + -t 10.2018 -s 310 -d 309 -p tcp -e 1000 -i 41 -a 9 - -t 10.2018 -s 110 -d 109 -p tcp -e 1000 -i 41 -a 9 - -t 10.2018 -s 210 -d 209 -p tcp -e 1000 -i 42 -a 9 - -t 10.2018 -s 310 -d 309 -p tcp -e 1000 -i 41 -a 9 h -t 10.2018 -s 110 -d 109 -p tcp -e 1000 -i 41 -a 9 h -t 10.2018 -s 210 -d 209 -p tcp -e 1000 -i 42 -a 9 h -t 10.2018 -s 310 -d 309 -p tcp -e 1000 -i 41 -a 9 r -t 10.2018 -s 111 -d 110 -p tcp -e 1000 -i 41 -a 9 r -t 10.2018 -s 211 -d 210 -p tcp -e 1000 -i 42 -a 9 r -t 10.2018 -s 311 -d 310 -p tcp -e 1000 -i 41 -a 9 r -t 10.2038 -s 110 -d 109 -p tcp -e 1000 -i 41 -a 9 r -t 10.2038 -s 210 -d 209 -p tcp -e 1000 -i 42 -a 9 r -t 10.2038 -s 310 -d 309 -p tcp -e 1000 -i 41 -a 9 + -t 10.2051 -s 211 -d 212 -p ack -e 40 -i 45 -a 4 - -t 10.2051 -s 211 -d 212 -p ack -e 40 -i 45 -a 4 h -t 10.2051 -s 211 -d 212 -p ack -e 40 -i 45 -a 4 r -t 10.2051 -s 210 -d 211 -p ack -e 40 -i 45 -a 4 + -t 10.2061 -s 212 -d 211 -p tcp -e 1000 -i 49 -a 4 + -t 10.2061 -s 212 -d 211 -p tcp -e 1000 -i 50 -a 4 + -t 10.2061 -s 212 -d 211 -p tcp -e 1000 -i 51 -a 4 - -t 10.2061 -s 212 -d 211 -p tcp -e 1000 -i 49 -a 4 h -t 10.2061 -s 212 -d 211 -p tcp -e 1000 -i 49 -a 4 r -t 10.2061 -s 211 -d 212 -p ack -e 40 -i 45 -a 4 - -t 10.2069 -s 212 -d 211 -p tcp -e 1000 -i 50 -a 4 h -t 10.2069 -s 212 -d 211 -p tcp -e 1000 -i 50 -a 4 + -t 10.2073 -s 111 -d 112 -p ack -e 40 -i 43 -a 4 + -t 10.2073 -s 311 -d 312 -p ack -e 40 -i 43 -a 4 - -t 10.2073 -s 111 -d 112 -p ack -e 40 -i 43 -a 4 - -t 10.2073 -s 311 -d 312 -p ack -e 40 -i 43 -a 4 h -t 10.2073 -s 111 -d 112 -p ack -e 40 -i 43 -a 4 h -t 10.2073 -s 311 -d 312 -p ack -e 40 -i 43 -a 4 r -t 10.2073 -s 110 -d 111 -p ack -e 40 -i 43 -a 4 r -t 10.2073 -s 310 -d 311 -p ack -e 40 -i 43 -a 4 - -t 10.2077 -s 212 -d 211 -p tcp -e 1000 -i 51 -a 4 h -t 10.2077 -s 212 -d 211 -p tcp -e 1000 -i 51 -a 4 + -t 10.2079 -s 211 -d 210 -p tcp -e 1000 -i 49 -a 4 - -t 10.2079 -s 211 -d 210 -p tcp -e 1000 -i 49 -a 4 h -t 10.2079 -s 211 -d 210 -p tcp -e 1000 -i 49 -a 4 r -t 10.2081 -s 212 -d 211 -p tcp -e 1000 -i 49 -a 4 + -t 10.2083 -s 112 -d 111 -p tcp -e 1000 -i 47 -a 4 + -t 10.2083 -s 112 -d 111 -p tcp -e 1000 -i 48 -a 4 + -t 10.2083 -s 112 -d 111 -p tcp -e 1000 -i 49 -a 4 + -t 10.2083 -s 312 -d 311 -p tcp -e 1000 -i 47 -a 4 + -t 10.2083 -s 312 -d 311 -p tcp -e 1000 -i 48 -a 4 + -t 10.2083 -s 312 -d 311 -p tcp -e 1000 -i 49 -a 4 - -t 10.2083 -s 112 -d 111 -p tcp -e 1000 -i 47 -a 4 - -t 10.2083 -s 312 -d 311 -p tcp -e 1000 -i 47 -a 4 h -t 10.2083 -s 112 -d 111 -p tcp -e 1000 -i 47 -a 4 h -t 10.2083 -s 312 -d 311 -p tcp -e 1000 -i 47 -a 4 r -t 10.2083 -s 111 -d 112 -p ack -e 40 -i 43 -a 4 r -t 10.2083 -s 311 -d 312 -p ack -e 40 -i 43 -a 4 + -t 10.2087 -s 211 -d 210 -p tcp -e 1000 -i 50 -a 4 r -t 10.2089 -s 212 -d 211 -p tcp -e 1000 -i 50 -a 4 - -t 10.2091 -s 112 -d 111 -p tcp -e 1000 -i 48 -a 4 - -t 10.2091 -s 312 -d 311 -p tcp -e 1000 -i 48 -a 4 h -t 10.2091 -s 112 -d 111 -p tcp -e 1000 -i 48 -a 4 h -t 10.2091 -s 312 -d 311 -p tcp -e 1000 -i 48 -a 4 + -t 10.2095 -s 211 -d 210 -p tcp -e 1000 -i 51 -a 4 r -t 10.2097 -s 212 -d 211 -p tcp -e 1000 -i 51 -a 4 - -t 10.2099 -s 112 -d 111 -p tcp -e 1000 -i 49 -a 4 - -t 10.2099 -s 312 -d 311 -p tcp -e 1000 -i 49 -a 4 h -t 10.2099 -s 112 -d 111 -p tcp -e 1000 -i 49 -a 4 h -t 10.2099 -s 312 -d 311 -p tcp -e 1000 -i 49 -a 4 + -t 10.2101 -s 111 -d 110 -p tcp -e 1000 -i 47 -a 4 + -t 10.2101 -s 311 -d 310 -p tcp -e 1000 -i 47 -a 4 - -t 10.2101 -s 111 -d 110 -p tcp -e 1000 -i 47 -a 4 - -t 10.2101 -s 311 -d 310 -p tcp -e 1000 -i 47 -a 4 h -t 10.2101 -s 111 -d 110 -p tcp -e 1000 -i 47 -a 4 h -t 10.2101 -s 311 -d 310 -p tcp -e 1000 -i 47 -a 4 r -t 10.2103 -s 112 -d 111 -p tcp -e 1000 -i 47 -a 4 r -t 10.2103 -s 312 -d 311 -p tcp -e 1000 -i 47 -a 4 + -t 10.2109 -s 111 -d 110 -p tcp -e 1000 -i 48 -a 4 + -t 10.2109 -s 311 -d 310 -p tcp -e 1000 -i 48 -a 4 r -t 10.2111 -s 112 -d 111 -p tcp -e 1000 -i 48 -a 4 r -t 10.2111 -s 312 -d 311 -p tcp -e 1000 -i 48 -a 4 + -t 10.2117 -s 111 -d 110 -p tcp -e 1000 -i 49 -a 4 + -t 10.2117 -s 311 -d 310 -p tcp -e 1000 -i 49 -a 4 + -t 10.2118 -s 110 -d 109 -p tcp -e 1000 -i 42 -a 9 + -t 10.2118 -s 210 -d 209 -p tcp -e 1000 -i 43 -a 9 + -t 10.2118 -s 310 -d 309 -p tcp -e 1000 -i 42 -a 9 - -t 10.2118 -s 110 -d 109 -p tcp -e 1000 -i 42 -a 9 - -t 10.2118 -s 210 -d 209 -p tcp -e 1000 -i 43 -a 9 - -t 10.2118 -s 310 -d 309 -p tcp -e 1000 -i 42 -a 9 h -t 10.2118 -s 110 -d 109 -p tcp -e 1000 -i 42 -a 9 h -t 10.2118 -s 210 -d 209 -p tcp -e 1000 -i 43 -a 9 h -t 10.2118 -s 310 -d 309 -p tcp -e 1000 -i 42 -a 9 r -t 10.2118 -s 111 -d 110 -p tcp -e 1000 -i 42 -a 9 r -t 10.2118 -s 211 -d 210 -p tcp -e 1000 -i 43 -a 9 r -t 10.2118 -s 311 -d 310 -p tcp -e 1000 -i 42 -a 9 r -t 10.2119 -s 112 -d 111 -p tcp -e 1000 -i 49 -a 4 r -t 10.2119 -s 312 -d 311 -p tcp -e 1000 -i 49 -a 4 + -t 10.2136 -s 109 -d 110 -p ack -e 40 -i 50 -a 9 + -t 10.2136 -s 209 -d 210 -p ack -e 40 -i 52 -a 9 + -t 10.2136 -s 309 -d 310 -p ack -e 40 -i 50 -a 9 - -t 10.2136 -s 109 -d 110 -p ack -e 40 -i 50 -a 9 - -t 10.2136 -s 209 -d 210 -p ack -e 40 -i 52 -a 9 - -t 10.2136 -s 309 -d 310 -p ack -e 40 -i 50 -a 9 h -t 10.2136 -s 109 -d 110 -p ack -e 40 -i 50 -a 9 h -t 10.2136 -s 209 -d 210 -p ack -e 40 -i 52 -a 9 h -t 10.2136 -s 309 -d 310 -p ack -e 40 -i 50 -a 9 r -t 10.2138 -s 110 -d 109 -p tcp -e 1000 -i 42 -a 9 r -t 10.2138 -s 210 -d 209 -p tcp -e 1000 -i 43 -a 9 r -t 10.2138 -s 310 -d 309 -p tcp -e 1000 -i 42 -a 9 r -t 10.2146 -s 109 -d 110 -p ack -e 40 -i 50 -a 9 r -t 10.2146 -s 209 -d 210 -p ack -e 40 -i 52 -a 9 r -t 10.2146 -s 309 -d 310 -p ack -e 40 -i 50 -a 9 + -t 10.2147 -s 110 -d 111 -p ack -e 40 -i 50 -a 9 + -t 10.2147 -s 210 -d 211 -p ack -e 40 -i 52 -a 9 + -t 10.2147 -s 310 -d 311 -p ack -e 40 -i 50 -a 9 - -t 10.2147 -s 110 -d 111 -p ack -e 40 -i 50 -a 9 - -t 10.2147 -s 210 -d 211 -p ack -e 40 -i 52 -a 9 - -t 10.2147 -s 310 -d 311 -p ack -e 40 -i 50 -a 9 h -t 10.2147 -s 110 -d 111 -p ack -e 40 -i 50 -a 9 h -t 10.2147 -s 210 -d 211 -p ack -e 40 -i 52 -a 9 h -t 10.2147 -s 310 -d 311 -p ack -e 40 -i 50 -a 9 + -t 10.2159 -s 104 -d 110 -p ack -e 40 -i 51 -a 4 + -t 10.2159 -s 304 -d 310 -p ack -e 40 -i 51 -a 4 - -t 10.2159 -s 104 -d 110 -p ack -e 40 -i 51 -a 4 - -t 10.2159 -s 304 -d 310 -p ack -e 40 -i 51 -a 4 h -t 10.2159 -s 104 -d 110 -p ack -e 40 -i 51 -a 4 h -t 10.2159 -s 304 -d 310 -p ack -e 40 -i 51 -a 4 + -t 10.2169 -s 110 -d 111 -p ack -e 40 -i 51 -a 4 + -t 10.2169 -s 310 -d 311 -p ack -e 40 -i 51 -a 4 - -t 10.2169 -s 110 -d 111 -p ack -e 40 -i 51 -a 4 - -t 10.2169 -s 310 -d 311 -p ack -e 40 -i 51 -a 4 h -t 10.2169 -s 110 -d 111 -p ack -e 40 -i 51 -a 4 h -t 10.2169 -s 310 -d 311 -p ack -e 40 -i 51 -a 4 r -t 10.2169 -s 104 -d 110 -p ack -e 40 -i 51 -a 4 r -t 10.2169 -s 304 -d 310 -p ack -e 40 -i 51 -a 4 - -t 10.2179 -s 211 -d 210 -p tcp -e 1000 -i 50 -a 4 h -t 10.2179 -s 211 -d 210 -p tcp -e 1000 -i 50 -a 4 - -t 10.2201 -s 111 -d 110 -p tcp -e 1000 -i 48 -a 4 - -t 10.2201 -s 311 -d 310 -p tcp -e 1000 -i 48 -a 4 h -t 10.2201 -s 111 -d 110 -p tcp -e 1000 -i 48 -a 4 h -t 10.2201 -s 311 -d 310 -p tcp -e 1000 -i 48 -a 4 + -t 10.2251 -s 211 -d 212 -p ack -e 40 -i 46 -a 4 - -t 10.2251 -s 211 -d 212 -p ack -e 40 -i 46 -a 4 h -t 10.2251 -s 211 -d 212 -p ack -e 40 -i 46 -a 4 r -t 10.2251 -s 210 -d 211 -p ack -e 40 -i 46 -a 4 r -t 10.2261 -s 211 -d 212 -p ack -e 40 -i 46 -a 4 - -t 10.2279 -s 211 -d 210 -p tcp -e 1000 -i 51 -a 4 h -t 10.2279 -s 211 -d 210 -p tcp -e 1000 -i 51 -a 4 - -t 10.2301 -s 111 -d 110 -p tcp -e 1000 -i 49 -a 4 - -t 10.2301 -s 311 -d 310 -p tcp -e 1000 -i 49 -a 4 h -t 10.2301 -s 111 -d 110 -p tcp -e 1000 -i 49 -a 4 h -t 10.2301 -s 311 -d 310 -p tcp -e 1000 -i 49 -a 4 + -t 10.2323 -s 111 -d 112 -p ack -e 40 -i 44 -a 2 + -t 10.2323 -s 211 -d 212 -p ack -e 40 -i 47 -a 2 + -t 10.2323 -s 311 -d 312 -p ack -e 40 -i 44 -a 2 - -t 10.2323 -s 111 -d 112 -p ack -e 40 -i 44 -a 2 - -t 10.2323 -s 211 -d 212 -p ack -e 40 -i 47 -a 2 - -t 10.2323 -s 311 -d 312 -p ack -e 40 -i 44 -a 2 h -t 10.2323 -s 111 -d 112 -p ack -e 40 -i 44 -a 2 h -t 10.2323 -s 211 -d 212 -p ack -e 40 -i 47 -a 2 h -t 10.2323 -s 311 -d 312 -p ack -e 40 -i 44 -a 2 r -t 10.2323 -s 110 -d 111 -p ack -e 40 -i 44 -a 2 r -t 10.2323 -s 210 -d 211 -p ack -e 40 -i 47 -a 2 r -t 10.2323 -s 310 -d 311 -p ack -e 40 -i 44 -a 2 r -t 10.2333 -s 111 -d 112 -p ack -e 40 -i 44 -a 2 r -t 10.2333 -s 211 -d 212 -p ack -e 40 -i 47 -a 2 r -t 10.2333 -s 311 -d 312 -p ack -e 40 -i 44 -a 2 + -t 10.2334 -s 112 -d 111 -p tcp -e 1000 -i 52 -a 2 + -t 10.2334 -s 112 -d 111 -p tcp -e 1000 -i 53 -a 2 + -t 10.2334 -s 212 -d 211 -p tcp -e 1000 -i 53 -a 2 + -t 10.2334 -s 212 -d 211 -p tcp -e 1000 -i 54 -a 2 + -t 10.2334 -s 312 -d 311 -p tcp -e 1000 -i 52 -a 2 + -t 10.2334 -s 312 -d 311 -p tcp -e 1000 -i 53 -a 2 - -t 10.2334 -s 112 -d 111 -p tcp -e 1000 -i 52 -a 2 - -t 10.2334 -s 212 -d 211 -p tcp -e 1000 -i 53 -a 2 - -t 10.2334 -s 312 -d 311 -p tcp -e 1000 -i 52 -a 2 h -t 10.2334 -s 112 -d 111 -p tcp -e 1000 -i 52 -a 2 h -t 10.2334 -s 212 -d 211 -p tcp -e 1000 -i 53 -a 2 h -t 10.2334 -s 312 -d 311 -p tcp -e 1000 -i 52 -a 2 - -t 10.2342 -s 112 -d 111 -p tcp -e 1000 -i 53 -a 2 - -t 10.2342 -s 212 -d 211 -p tcp -e 1000 -i 54 -a 2 - -t 10.2342 -s 312 -d 311 -p tcp -e 1000 -i 53 -a 2 h -t 10.2342 -s 112 -d 111 -p tcp -e 1000 -i 53 -a 2 h -t 10.2342 -s 212 -d 211 -p tcp -e 1000 -i 54 -a 2 h -t 10.2342 -s 312 -d 311 -p tcp -e 1000 -i 53 -a 2 + -t 10.2352 -s 111 -d 110 -p tcp -e 1000 -i 52 -a 2 + -t 10.2352 -s 211 -d 210 -p tcp -e 1000 -i 53 -a 2 + -t 10.2352 -s 311 -d 310 -p tcp -e 1000 -i 52 -a 2 r -t 10.2354 -s 112 -d 111 -p tcp -e 1000 -i 52 -a 2 r -t 10.2354 -s 212 -d 211 -p tcp -e 1000 -i 53 -a 2 r -t 10.2354 -s 312 -d 311 -p tcp -e 1000 -i 52 -a 2 + -t 10.236 -s 111 -d 110 -p tcp -e 1000 -i 53 -a 2 + -t 10.236 -s 211 -d 210 -p tcp -e 1000 -i 54 -a 2 + -t 10.236 -s 311 -d 310 -p tcp -e 1000 -i 53 -a 2 r -t 10.2362 -s 112 -d 111 -p tcp -e 1000 -i 53 -a 2 r -t 10.2362 -s 212 -d 211 -p tcp -e 1000 -i 54 -a 2 r -t 10.2362 -s 312 -d 311 -p tcp -e 1000 -i 53 -a 2 - -t 10.2379 -s 211 -d 210 -p tcp -e 1000 -i 53 -a 2 h -t 10.2379 -s 211 -d 210 -p tcp -e 1000 -i 53 -a 2 - -t 10.2401 -s 111 -d 110 -p tcp -e 1000 -i 52 -a 2 - -t 10.2401 -s 311 -d 310 -p tcp -e 1000 -i 52 -a 2 h -t 10.2401 -s 111 -d 110 -p tcp -e 1000 -i 52 -a 2 h -t 10.2401 -s 311 -d 310 -p tcp -e 1000 -i 52 -a 2 - -t 10.2479 -s 211 -d 210 -p tcp -e 1000 -i 54 -a 2 h -t 10.2479 -s 211 -d 210 -p tcp -e 1000 -i 54 -a 2 - -t 10.2501 -s 111 -d 110 -p tcp -e 1000 -i 53 -a 2 - -t 10.2501 -s 311 -d 310 -p tcp -e 1000 -i 53 -a 2 h -t 10.2501 -s 111 -d 110 -p tcp -e 1000 -i 53 -a 2 h -t 10.2501 -s 311 -d 310 -p tcp -e 1000 -i 53 -a 2 + -t 10.2531 -s 110 -d 100 -p tcp -e 1000 -i 45 -a 0 + -t 10.2531 -s 310 -d 300 -p tcp -e 1000 -i 45 -a 0 - -t 10.2531 -s 110 -d 100 -p tcp -e 1000 -i 45 -a 0 - -t 10.2531 -s 310 -d 300 -p tcp -e 1000 -i 45 -a 0 h -t 10.2531 -s 110 -d 100 -p tcp -e 1000 -i 45 -a 0 h -t 10.2531 -s 310 -d 300 -p tcp -e 1000 -i 45 -a 0 r -t 10.2531 -s 111 -d 110 -p tcp -e 1000 -i 45 -a 0 r -t 10.2531 -s 311 -d 310 -p tcp -e 1000 -i 45 -a 0 + -t 10.2549 -s 100 -d 110 -p ack -e 40 -i 54 -a 0 + -t 10.2549 -s 300 -d 310 -p ack -e 40 -i 54 -a 0 - -t 10.2549 -s 100 -d 110 -p ack -e 40 -i 54 -a 0 - -t 10.2549 -s 300 -d 310 -p ack -e 40 -i 54 -a 0 h -t 10.2549 -s 100 -d 110 -p ack -e 40 -i 54 -a 0 h -t 10.2549 -s 300 -d 310 -p ack -e 40 -i 54 -a 0 r -t 10.2551 -s 110 -d 100 -p tcp -e 1000 -i 45 -a 0 r -t 10.2551 -s 310 -d 300 -p tcp -e 1000 -i 45 -a 0 + -t 10.2559 -s 110 -d 111 -p ack -e 40 -i 54 -a 0 + -t 10.2559 -s 310 -d 311 -p ack -e 40 -i 54 -a 0 - -t 10.2559 -s 110 -d 111 -p ack -e 40 -i 54 -a 0 - -t 10.2559 -s 310 -d 311 -p ack -e 40 -i 54 -a 0 h -t 10.2559 -s 110 -d 111 -p ack -e 40 -i 54 -a 0 h -t 10.2559 -s 310 -d 311 -p ack -e 40 -i 54 -a 0 r -t 10.2559 -s 100 -d 110 -p ack -e 40 -i 54 -a 0 r -t 10.2559 -s 300 -d 310 -p ack -e 40 -i 54 -a 0 + -t 10.2563 -s 111 -d 112 -p ack -e 40 -i 46 -a 0 + -t 10.2563 -s 211 -d 212 -p ack -e 40 -i 48 -a 0 + -t 10.2563 -s 311 -d 312 -p ack -e 40 -i 46 -a 0 - -t 10.2563 -s 111 -d 112 -p ack -e 40 -i 46 -a 0 - -t 10.2563 -s 211 -d 212 -p ack -e 40 -i 48 -a 0 - -t 10.2563 -s 311 -d 312 -p ack -e 40 -i 46 -a 0 h -t 10.2563 -s 111 -d 112 -p ack -e 40 -i 46 -a 0 h -t 10.2563 -s 211 -d 212 -p ack -e 40 -i 48 -a 0 h -t 10.2563 -s 311 -d 312 -p ack -e 40 -i 46 -a 0 r -t 10.2563 -s 110 -d 111 -p ack -e 40 -i 46 -a 0 r -t 10.2563 -s 210 -d 211 -p ack -e 40 -i 48 -a 0 r -t 10.2563 -s 310 -d 311 -p ack -e 40 -i 46 -a 0 r -t 10.2573 -s 111 -d 112 -p ack -e 40 -i 46 -a 0 r -t 10.2573 -s 211 -d 212 -p ack -e 40 -i 48 -a 0 r -t 10.2573 -s 311 -d 312 -p ack -e 40 -i 46 -a 0 + -t 10.2649 -s 200 -d 210 -p ack -e 40 -i 55 -a 0 - -t 10.2649 -s 200 -d 210 -p ack -e 40 -i 55 -a 0 h -t 10.2649 -s 200 -d 210 -p ack -e 40 -i 55 -a 0 + -t 10.2659 -s 210 -d 211 -p ack -e 40 -i 55 -a 0 - -t 10.2659 -s 210 -d 211 -p ack -e 40 -i 55 -a 0 h -t 10.2659 -s 210 -d 211 -p ack -e 40 -i 55 -a 0 r -t 10.2659 -s 200 -d 210 -p ack -e 40 -i 55 -a 0 + -t 10.2791 -s 103 -d 110 -p ack -e 40 -i 55 -a 3 + -t 10.2791 -s 203 -d 210 -p ack -e 40 -i 56 -a 3 + -t 10.2791 -s 303 -d 310 -p ack -e 40 -i 55 -a 3 - -t 10.2791 -s 103 -d 110 -p ack -e 40 -i 55 -a 3 - -t 10.2791 -s 203 -d 210 -p ack -e 40 -i 56 -a 3 - -t 10.2791 -s 303 -d 310 -p ack -e 40 -i 55 -a 3 h -t 10.2791 -s 103 -d 110 -p ack -e 40 -i 55 -a 3 h -t 10.2791 -s 203 -d 210 -p ack -e 40 -i 56 -a 3 h -t 10.2791 -s 303 -d 310 -p ack -e 40 -i 55 -a 3 + -t 10.2801 -s 110 -d 111 -p ack -e 40 -i 55 -a 3 + -t 10.2801 -s 210 -d 211 -p ack -e 40 -i 56 -a 3 + -t 10.2801 -s 310 -d 311 -p ack -e 40 -i 55 -a 3 - -t 10.2801 -s 110 -d 111 -p ack -e 40 -i 55 -a 3 - -t 10.2801 -s 210 -d 211 -p ack -e 40 -i 56 -a 3 - -t 10.2801 -s 310 -d 311 -p ack -e 40 -i 55 -a 3 h -t 10.2801 -s 110 -d 111 -p ack -e 40 -i 55 -a 3 h -t 10.2801 -s 210 -d 211 -p ack -e 40 -i 56 -a 3 h -t 10.2801 -s 310 -d 311 -p ack -e 40 -i 55 -a 3 r -t 10.2801 -s 103 -d 110 -p ack -e 40 -i 55 -a 3 r -t 10.2801 -s 203 -d 210 -p ack -e 40 -i 56 -a 3 r -t 10.2801 -s 303 -d 310 -p ack -e 40 -i 55 -a 3 + -t 10.3151 -s 111 -d 112 -p ack -e 40 -i 50 -a 9 + -t 10.3151 -s 211 -d 212 -p ack -e 40 -i 52 -a 9 + -t 10.3151 -s 311 -d 312 -p ack -e 40 -i 50 -a 9 - -t 10.3151 -s 111 -d 112 -p ack -e 40 -i 50 -a 9 - -t 10.3151 -s 211 -d 212 -p ack -e 40 -i 52 -a 9 - -t 10.3151 -s 311 -d 312 -p ack -e 40 -i 50 -a 9 h -t 10.3151 -s 111 -d 112 -p ack -e 40 -i 50 -a 9 h -t 10.3151 -s 211 -d 212 -p ack -e 40 -i 52 -a 9 h -t 10.3151 -s 311 -d 312 -p ack -e 40 -i 50 -a 9 r -t 10.3151 -s 110 -d 111 -p ack -e 40 -i 50 -a 9 r -t 10.3151 -s 210 -d 211 -p ack -e 40 -i 52 -a 9 r -t 10.3151 -s 310 -d 311 -p ack -e 40 -i 50 -a 9 + -t 10.3161 -s 112 -d 111 -p tcp -e 1000 -i 56 -a 9 + -t 10.3161 -s 112 -d 111 -p tcp -e 1000 -i 57 -a 9 + -t 10.3161 -s 112 -d 111 -p tcp -e 1000 -i 58 -a 9 + -t 10.3161 -s 212 -d 211 -p tcp -e 1000 -i 57 -a 9 + -t 10.3161 -s 212 -d 211 -p tcp -e 1000 -i 58 -a 9 + -t 10.3161 -s 212 -d 211 -p tcp -e 1000 -i 59 -a 9 + -t 10.3161 -s 212 -d 211 -p tcp -e 1000 -i 60 -a 9 + -t 10.3161 -s 312 -d 311 -p tcp -e 1000 -i 56 -a 9 + -t 10.3161 -s 312 -d 311 -p tcp -e 1000 -i 57 -a 9 + -t 10.3161 -s 312 -d 311 -p tcp -e 1000 -i 58 -a 9 - -t 10.3161 -s 112 -d 111 -p tcp -e 1000 -i 56 -a 9 - -t 10.3161 -s 212 -d 211 -p tcp -e 1000 -i 57 -a 9 - -t 10.3161 -s 312 -d 311 -p tcp -e 1000 -i 56 -a 9 h -t 10.3161 -s 112 -d 111 -p tcp -e 1000 -i 56 -a 9 h -t 10.3161 -s 212 -d 211 -p tcp -e 1000 -i 57 -a 9 h -t 10.3161 -s 312 -d 311 -p tcp -e 1000 -i 56 -a 9 r -t 10.3161 -s 111 -d 112 -p ack -e 40 -i 50 -a 9 r -t 10.3161 -s 211 -d 212 -p ack -e 40 -i 52 -a 9 r -t 10.3161 -s 311 -d 312 -p ack -e 40 -i 50 -a 9 - -t 10.3169 -s 112 -d 111 -p tcp -e 1000 -i 57 -a 9 - -t 10.3169 -s 212 -d 211 -p tcp -e 1000 -i 58 -a 9 - -t 10.3169 -s 312 -d 311 -p tcp -e 1000 -i 57 -a 9 h -t 10.3169 -s 112 -d 111 -p tcp -e 1000 -i 57 -a 9 h -t 10.3169 -s 212 -d 211 -p tcp -e 1000 -i 58 -a 9 h -t 10.3169 -s 312 -d 311 -p tcp -e 1000 -i 57 -a 9 + -t 10.3173 -s 111 -d 112 -p ack -e 40 -i 51 -a 4 + -t 10.3173 -s 311 -d 312 -p ack -e 40 -i 51 -a 4 - -t 10.3173 -s 111 -d 112 -p ack -e 40 -i 51 -a 4 - -t 10.3173 -s 311 -d 312 -p ack -e 40 -i 51 -a 4 h -t 10.3173 -s 111 -d 112 -p ack -e 40 -i 51 -a 4 h -t 10.3173 -s 311 -d 312 -p ack -e 40 -i 51 -a 4 r -t 10.3173 -s 110 -d 111 -p ack -e 40 -i 51 -a 4 r -t 10.3173 -s 310 -d 311 -p ack -e 40 -i 51 -a 4 - -t 10.3177 -s 112 -d 111 -p tcp -e 1000 -i 58 -a 9 - -t 10.3177 -s 212 -d 211 -p tcp -e 1000 -i 59 -a 9 - -t 10.3177 -s 312 -d 311 -p tcp -e 1000 -i 58 -a 9 h -t 10.3177 -s 112 -d 111 -p tcp -e 1000 -i 58 -a 9 h -t 10.3177 -s 212 -d 211 -p tcp -e 1000 -i 59 -a 9 h -t 10.3177 -s 312 -d 311 -p tcp -e 1000 -i 58 -a 9 + -t 10.3179 -s 111 -d 110 -p tcp -e 1000 -i 56 -a 9 + -t 10.3179 -s 210 -d 204 -p tcp -e 1000 -i 49 -a 4 + -t 10.3179 -s 211 -d 210 -p tcp -e 1000 -i 57 -a 9 + -t 10.3179 -s 311 -d 310 -p tcp -e 1000 -i 56 -a 9 - -t 10.3179 -s 111 -d 110 -p tcp -e 1000 -i 56 -a 9 - -t 10.3179 -s 210 -d 204 -p tcp -e 1000 -i 49 -a 4 - -t 10.3179 -s 211 -d 210 -p tcp -e 1000 -i 57 -a 9 - -t 10.3179 -s 311 -d 310 -p tcp -e 1000 -i 56 -a 9 h -t 10.3179 -s 111 -d 110 -p tcp -e 1000 -i 56 -a 9 h -t 10.3179 -s 210 -d 204 -p tcp -e 1000 -i 49 -a 4 h -t 10.3179 -s 211 -d 210 -p tcp -e 1000 -i 57 -a 9 h -t 10.3179 -s 311 -d 310 -p tcp -e 1000 -i 56 -a 9 r -t 10.3179 -s 211 -d 210 -p tcp -e 1000 -i 49 -a 4 r -t 10.3181 -s 112 -d 111 -p tcp -e 1000 -i 56 -a 9 r -t 10.3181 -s 212 -d 211 -p tcp -e 1000 -i 57 -a 9 r -t 10.3181 -s 312 -d 311 -p tcp -e 1000 -i 56 -a 9 + -t 10.3183 -s 112 -d 111 -p tcp -e 1000 -i 59 -a 4 + -t 10.3183 -s 312 -d 311 -p tcp -e 1000 -i 59 -a 4 r -t 10.3183 -s 111 -d 112 -p ack -e 40 -i 51 -a 4 r -t 10.3183 -s 311 -d 312 -p ack -e 40 -i 51 -a 4 - -t 10.3185 -s 112 -d 111 -p tcp -e 1000 -i 59 -a 4 - -t 10.3185 -s 212 -d 211 -p tcp -e 1000 -i 60 -a 9 - -t 10.3185 -s 312 -d 311 -p tcp -e 1000 -i 59 -a 4 h -t 10.3185 -s 112 -d 111 -p tcp -e 1000 -i 59 -a 4 h -t 10.3185 -s 212 -d 211 -p tcp -e 1000 -i 60 -a 9 h -t 10.3185 -s 312 -d 311 -p tcp -e 1000 -i 59 -a 4 + -t 10.3187 -s 111 -d 110 -p tcp -e 1000 -i 57 -a 9 + -t 10.3187 -s 211 -d 210 -p tcp -e 1000 -i 58 -a 9 + -t 10.3187 -s 311 -d 310 -p tcp -e 1000 -i 57 -a 9 r -t 10.3189 -s 112 -d 111 -p tcp -e 1000 -i 57 -a 9 r -t 10.3189 -s 212 -d 211 -p tcp -e 1000 -i 58 -a 9 r -t 10.3189 -s 312 -d 311 -p tcp -e 1000 -i 57 -a 9 + -t 10.3195 -s 111 -d 110 -p tcp -e 1000 -i 58 -a 9 + -t 10.3195 -s 211 -d 210 -p tcp -e 1000 -i 59 -a 9 + -t 10.3195 -s 311 -d 310 -p tcp -e 1000 -i 58 -a 9 r -t 10.3197 -s 112 -d 111 -p tcp -e 1000 -i 58 -a 9 r -t 10.3197 -s 212 -d 211 -p tcp -e 1000 -i 59 -a 9 r -t 10.3197 -s 312 -d 311 -p tcp -e 1000 -i 58 -a 9 r -t 10.3199 -s 210 -d 204 -p tcp -e 1000 -i 49 -a 4 + -t 10.3201 -s 110 -d 104 -p tcp -e 1000 -i 47 -a 4 + -t 10.3201 -s 310 -d 304 -p tcp -e 1000 -i 47 -a 4 - -t 10.3201 -s 110 -d 104 -p tcp -e 1000 -i 47 -a 4 - -t 10.3201 -s 310 -d 304 -p tcp -e 1000 -i 47 -a 4 h -t 10.3201 -s 110 -d 104 -p tcp -e 1000 -i 47 -a 4 h -t 10.3201 -s 310 -d 304 -p tcp -e 1000 -i 47 -a 4 r -t 10.3201 -s 111 -d 110 -p tcp -e 1000 -i 47 -a 4 r -t 10.3201 -s 311 -d 310 -p tcp -e 1000 -i 47 -a 4 + -t 10.3203 -s 111 -d 110 -p tcp -e 1000 -i 59 -a 4 + -t 10.3203 -s 211 -d 210 -p tcp -e 1000 -i 60 -a 9 + -t 10.3203 -s 311 -d 310 -p tcp -e 1000 -i 59 -a 4 r -t 10.3205 -s 112 -d 111 -p tcp -e 1000 -i 59 -a 4 r -t 10.3205 -s 212 -d 211 -p tcp -e 1000 -i 60 -a 9 r -t 10.3205 -s 312 -d 311 -p tcp -e 1000 -i 59 -a 4 r -t 10.3221 -s 110 -d 104 -p tcp -e 1000 -i 47 -a 4 r -t 10.3221 -s 310 -d 304 -p tcp -e 1000 -i 47 -a 4 + -t 10.3279 -s 210 -d 204 -p tcp -e 1000 -i 50 -a 4 - -t 10.3279 -s 111 -d 110 -p tcp -e 1000 -i 57 -a 9 - -t 10.3279 -s 210 -d 204 -p tcp -e 1000 -i 50 -a 4 - -t 10.3279 -s 211 -d 210 -p tcp -e 1000 -i 58 -a 9 - -t 10.3279 -s 311 -d 310 -p tcp -e 1000 -i 57 -a 9 h -t 10.3279 -s 111 -d 110 -p tcp -e 1000 -i 57 -a 9 h -t 10.3279 -s 210 -d 204 -p tcp -e 1000 -i 50 -a 4 h -t 10.3279 -s 211 -d 210 -p tcp -e 1000 -i 58 -a 9 h -t 10.3279 -s 311 -d 310 -p tcp -e 1000 -i 57 -a 9 r -t 10.3279 -s 211 -d 210 -p tcp -e 1000 -i 50 -a 4 + -t 10.3297 -s 204 -d 210 -p ack -e 40 -i 61 -a 4 - -t 10.3297 -s 204 -d 210 -p ack -e 40 -i 61 -a 4 h -t 10.3297 -s 204 -d 210 -p ack -e 40 -i 61 -a 4 r -t 10.3299 -s 210 -d 204 -p tcp -e 1000 -i 50 -a 4 + -t 10.3301 -s 110 -d 104 -p tcp -e 1000 -i 48 -a 4 + -t 10.3301 -s 310 -d 304 -p tcp -e 1000 -i 48 -a 4 - -t 10.3301 -s 110 -d 104 -p tcp -e 1000 -i 48 -a 4 - -t 10.3301 -s 310 -d 304 -p tcp -e 1000 -i 48 -a 4 h -t 10.3301 -s 110 -d 104 -p tcp -e 1000 -i 48 -a 4 h -t 10.3301 -s 310 -d 304 -p tcp -e 1000 -i 48 -a 4 r -t 10.3301 -s 111 -d 110 -p tcp -e 1000 -i 48 -a 4 r -t 10.3301 -s 311 -d 310 -p tcp -e 1000 -i 48 -a 4 + -t 10.3307 -s 210 -d 211 -p ack -e 40 -i 61 -a 4 - -t 10.3307 -s 210 -d 211 -p ack -e 40 -i 61 -a 4 h -t 10.3307 -s 210 -d 211 -p ack -e 40 -i 61 -a 4 r -t 10.3307 -s 204 -d 210 -p ack -e 40 -i 61 -a 4 + -t 10.3319 -s 104 -d 110 -p ack -e 40 -i 60 -a 4 + -t 10.3319 -s 304 -d 310 -p ack -e 40 -i 60 -a 4 - -t 10.3319 -s 104 -d 110 -p ack -e 40 -i 60 -a 4 - -t 10.3319 -s 304 -d 310 -p ack -e 40 -i 60 -a 4 h -t 10.3319 -s 104 -d 110 -p ack -e 40 -i 60 -a 4 h -t 10.3319 -s 304 -d 310 -p ack -e 40 -i 60 -a 4 r -t 10.3321 -s 110 -d 104 -p tcp -e 1000 -i 48 -a 4 r -t 10.3321 -s 310 -d 304 -p tcp -e 1000 -i 48 -a 4 r -t 10.3329 -s 104 -d 110 -p ack -e 40 -i 60 -a 4 r -t 10.3329 -s 304 -d 310 -p ack -e 40 -i 60 -a 4 + -t 10.333 -s 110 -d 111 -p ack -e 40 -i 60 -a 4 + -t 10.333 -s 310 -d 311 -p ack -e 40 -i 60 -a 4 - -t 10.333 -s 110 -d 111 -p ack -e 40 -i 60 -a 4 - -t 10.333 -s 310 -d 311 -p ack -e 40 -i 60 -a 4 h -t 10.333 -s 110 -d 111 -p ack -e 40 -i 60 -a 4 h -t 10.333 -s 310 -d 311 -p ack -e 40 -i 60 -a 4 + -t 10.3379 -s 210 -d 204 -p tcp -e 1000 -i 51 -a 4 - -t 10.3379 -s 111 -d 110 -p tcp -e 1000 -i 58 -a 9 - -t 10.3379 -s 210 -d 204 -p tcp -e 1000 -i 51 -a 4 - -t 10.3379 -s 211 -d 210 -p tcp -e 1000 -i 59 -a 9 - -t 10.3379 -s 311 -d 310 -p tcp -e 1000 -i 58 -a 9 h -t 10.3379 -s 111 -d 110 -p tcp -e 1000 -i 58 -a 9 h -t 10.3379 -s 210 -d 204 -p tcp -e 1000 -i 51 -a 4 h -t 10.3379 -s 211 -d 210 -p tcp -e 1000 -i 59 -a 9 h -t 10.3379 -s 311 -d 310 -p tcp -e 1000 -i 58 -a 9 r -t 10.3379 -s 211 -d 210 -p tcp -e 1000 -i 51 -a 4 r -t 10.3399 -s 210 -d 204 -p tcp -e 1000 -i 51 -a 4 + -t 10.3401 -s 110 -d 104 -p tcp -e 1000 -i 49 -a 4 + -t 10.3401 -s 310 -d 304 -p tcp -e 1000 -i 49 -a 4 - -t 10.3401 -s 110 -d 104 -p tcp -e 1000 -i 49 -a 4 - -t 10.3401 -s 310 -d 304 -p tcp -e 1000 -i 49 -a 4 h -t 10.3401 -s 110 -d 104 -p tcp -e 1000 -i 49 -a 4 h -t 10.3401 -s 310 -d 304 -p tcp -e 1000 -i 49 -a 4 r -t 10.3401 -s 111 -d 110 -p tcp -e 1000 -i 49 -a 4 r -t 10.3401 -s 311 -d 310 -p tcp -e 1000 -i 49 -a 4 r -t 10.3421 -s 110 -d 104 -p tcp -e 1000 -i 49 -a 4 r -t 10.3421 -s 310 -d 304 -p tcp -e 1000 -i 49 -a 4 + -t 10.3479 -s 210 -d 202 -p tcp -e 1000 -i 53 -a 2 - -t 10.3479 -s 111 -d 110 -p tcp -e 1000 -i 59 -a 4 - -t 10.3479 -s 210 -d 202 -p tcp -e 1000 -i 53 -a 2 - -t 10.3479 -s 211 -d 210 -p tcp -e 1000 -i 60 -a 9 - -t 10.3479 -s 311 -d 310 -p tcp -e 1000 -i 59 -a 4 h -t 10.3479 -s 111 -d 110 -p tcp -e 1000 -i 59 -a 4 h -t 10.3479 -s 210 -d 202 -p tcp -e 1000 -i 53 -a 2 h -t 10.3479 -s 211 -d 210 -p tcp -e 1000 -i 60 -a 9 h -t 10.3479 -s 311 -d 310 -p tcp -e 1000 -i 59 -a 4 r -t 10.3479 -s 211 -d 210 -p tcp -e 1000 -i 53 -a 2 r -t 10.3499 -s 210 -d 202 -p tcp -e 1000 -i 53 -a 2 + -t 10.3501 -s 110 -d 102 -p tcp -e 1000 -i 52 -a 2 + -t 10.3501 -s 310 -d 302 -p tcp -e 1000 -i 52 -a 2 - -t 10.3501 -s 110 -d 102 -p tcp -e 1000 -i 52 -a 2 - -t 10.3501 -s 310 -d 302 -p tcp -e 1000 -i 52 -a 2 h -t 10.3501 -s 110 -d 102 -p tcp -e 1000 -i 52 -a 2 h -t 10.3501 -s 310 -d 302 -p tcp -e 1000 -i 52 -a 2 r -t 10.3501 -s 111 -d 110 -p tcp -e 1000 -i 52 -a 2 r -t 10.3501 -s 311 -d 310 -p tcp -e 1000 -i 52 -a 2 r -t 10.3521 -s 110 -d 102 -p tcp -e 1000 -i 52 -a 2 r -t 10.3521 -s 310 -d 302 -p tcp -e 1000 -i 52 -a 2 + -t 10.3563 -s 111 -d 112 -p ack -e 40 -i 54 -a 0 + -t 10.3563 -s 311 -d 312 -p ack -e 40 -i 54 -a 0 - -t 10.3563 -s 111 -d 112 -p ack -e 40 -i 54 -a 0 - -t 10.3563 -s 311 -d 312 -p ack -e 40 -i 54 -a 0 h -t 10.3563 -s 111 -d 112 -p ack -e 40 -i 54 -a 0 h -t 10.3563 -s 311 -d 312 -p ack -e 40 -i 54 -a 0 r -t 10.3563 -s 110 -d 111 -p ack -e 40 -i 54 -a 0 r -t 10.3563 -s 310 -d 311 -p ack -e 40 -i 54 -a 0 r -t 10.3573 -s 111 -d 112 -p ack -e 40 -i 54 -a 0 r -t 10.3573 -s 311 -d 312 -p ack -e 40 -i 54 -a 0 + -t 10.3577 -s 112 -d 111 -p tcp -e 1000 -i 61 -a 6 + -t 10.3577 -s 212 -d 211 -p tcp -e 1000 -i 62 -a 6 + -t 10.3577 -s 312 -d 311 -p tcp -e 1000 -i 61 -a 6 - -t 10.3577 -s 112 -d 111 -p tcp -e 1000 -i 61 -a 6 - -t 10.3577 -s 212 -d 211 -p tcp -e 1000 -i 62 -a 6 - -t 10.3577 -s 312 -d 311 -p tcp -e 1000 -i 61 -a 6 h -t 10.3577 -s 112 -d 111 -p tcp -e 1000 -i 61 -a 6 h -t 10.3577 -s 212 -d 211 -p tcp -e 1000 -i 62 -a 6 h -t 10.3577 -s 312 -d 311 -p tcp -e 1000 -i 61 -a 6 + -t 10.3579 -s 210 -d 202 -p tcp -e 1000 -i 54 -a 2 - -t 10.3579 -s 210 -d 202 -p tcp -e 1000 -i 54 -a 2 h -t 10.3579 -s 210 -d 202 -p tcp -e 1000 -i 54 -a 2 r -t 10.3579 -s 211 -d 210 -p tcp -e 1000 -i 54 -a 2 + -t 10.3586 -s 112 -d 111 -p tcp -e 1000 -i 62 -a 7 + -t 10.3586 -s 212 -d 211 -p tcp -e 1000 -i 63 -a 7 + -t 10.3586 -s 312 -d 311 -p tcp -e 1000 -i 62 -a 7 - -t 10.3586 -s 112 -d 111 -p tcp -e 1000 -i 62 -a 7 - -t 10.3586 -s 212 -d 211 -p tcp -e 1000 -i 63 -a 7 - -t 10.3586 -s 312 -d 311 -p tcp -e 1000 -i 62 -a 7 h -t 10.3586 -s 112 -d 111 -p tcp -e 1000 -i 62 -a 7 h -t 10.3586 -s 212 -d 211 -p tcp -e 1000 -i 63 -a 7 h -t 10.3586 -s 312 -d 311 -p tcp -e 1000 -i 62 -a 7 + -t 10.3595 -s 111 -d 110 -p tcp -e 1000 -i 61 -a 6 + -t 10.3595 -s 211 -d 210 -p tcp -e 1000 -i 62 -a 6 + -t 10.3595 -s 311 -d 310 -p tcp -e 1000 -i 61 -a 6 - -t 10.3595 -s 111 -d 110 -p tcp -e 1000 -i 61 -a 6 - -t 10.3595 -s 211 -d 210 -p tcp -e 1000 -i 62 -a 6 - -t 10.3595 -s 311 -d 310 -p tcp -e 1000 -i 61 -a 6 h -t 10.3595 -s 111 -d 110 -p tcp -e 1000 -i 61 -a 6 h -t 10.3595 -s 211 -d 210 -p tcp -e 1000 -i 62 -a 6 h -t 10.3595 -s 311 -d 310 -p tcp -e 1000 -i 61 -a 6 + -t 10.3597 -s 202 -d 210 -p ack -e 40 -i 64 -a 2 - -t 10.3597 -s 202 -d 210 -p ack -e 40 -i 64 -a 2 h -t 10.3597 -s 202 -d 210 -p ack -e 40 -i 64 -a 2 r -t 10.3597 -s 112 -d 111 -p tcp -e 1000 -i 61 -a 6 r -t 10.3597 -s 212 -d 211 -p tcp -e 1000 -i 62 -a 6 r -t 10.3597 -s 312 -d 311 -p tcp -e 1000 -i 61 -a 6 r -t 10.3599 -s 210 -d 202 -p tcp -e 1000 -i 54 -a 2 + -t 10.3601 -s 110 -d 102 -p tcp -e 1000 -i 53 -a 2 + -t 10.3601 -s 310 -d 302 -p tcp -e 1000 -i 53 -a 2 - -t 10.3601 -s 110 -d 102 -p tcp -e 1000 -i 53 -a 2 - -t 10.3601 -s 310 -d 302 -p tcp -e 1000 -i 53 -a 2 h -t 10.3601 -s 110 -d 102 -p tcp -e 1000 -i 53 -a 2 h -t 10.3601 -s 310 -d 302 -p tcp -e 1000 -i 53 -a 2 r -t 10.3601 -s 111 -d 110 -p tcp -e 1000 -i 53 -a 2 r -t 10.3601 -s 311 -d 310 -p tcp -e 1000 -i 53 -a 2 + -t 10.3604 -s 111 -d 110 -p tcp -e 1000 -i 62 -a 7 + -t 10.3604 -s 211 -d 210 -p tcp -e 1000 -i 63 -a 7 + -t 10.3604 -s 311 -d 310 -p tcp -e 1000 -i 62 -a 7 r -t 10.3606 -s 112 -d 111 -p tcp -e 1000 -i 62 -a 7 r -t 10.3606 -s 212 -d 211 -p tcp -e 1000 -i 63 -a 7 r -t 10.3606 -s 312 -d 311 -p tcp -e 1000 -i 62 -a 7 + -t 10.3607 -s 210 -d 211 -p ack -e 40 -i 64 -a 2 - -t 10.3607 -s 210 -d 211 -p ack -e 40 -i 64 -a 2 h -t 10.3607 -s 210 -d 211 -p ack -e 40 -i 64 -a 2 r -t 10.3607 -s 202 -d 210 -p ack -e 40 -i 64 -a 2 + -t 10.3619 -s 102 -d 110 -p ack -e 40 -i 63 -a 2 + -t 10.3619 -s 302 -d 310 -p ack -e 40 -i 63 -a 2 - -t 10.3619 -s 102 -d 110 -p ack -e 40 -i 63 -a 2 - -t 10.3619 -s 302 -d 310 -p ack -e 40 -i 63 -a 2 h -t 10.3619 -s 102 -d 110 -p ack -e 40 -i 63 -a 2 h -t 10.3619 -s 302 -d 310 -p ack -e 40 -i 63 -a 2 r -t 10.3621 -s 110 -d 102 -p tcp -e 1000 -i 53 -a 2 r -t 10.3621 -s 310 -d 302 -p tcp -e 1000 -i 53 -a 2 r -t 10.3629 -s 102 -d 110 -p ack -e 40 -i 63 -a 2 r -t 10.3629 -s 302 -d 310 -p ack -e 40 -i 63 -a 2 + -t 10.363 -s 110 -d 111 -p ack -e 40 -i 63 -a 2 + -t 10.363 -s 310 -d 311 -p ack -e 40 -i 63 -a 2 - -t 10.363 -s 110 -d 111 -p ack -e 40 -i 63 -a 2 - -t 10.363 -s 310 -d 311 -p ack -e 40 -i 63 -a 2 h -t 10.363 -s 110 -d 111 -p ack -e 40 -i 63 -a 2 h -t 10.363 -s 310 -d 311 -p ack -e 40 -i 63 -a 2 + -t 10.3663 -s 211 -d 212 -p ack -e 40 -i 55 -a 0 - -t 10.3663 -s 211 -d 212 -p ack -e 40 -i 55 -a 0 h -t 10.3663 -s 211 -d 212 -p ack -e 40 -i 55 -a 0 r -t 10.3663 -s 210 -d 211 -p ack -e 40 -i 55 -a 0 r -t 10.3673 -s 211 -d 212 -p ack -e 40 -i 55 -a 0 - -t 10.3695 -s 111 -d 110 -p tcp -e 1000 -i 62 -a 7 - -t 10.3695 -s 211 -d 210 -p tcp -e 1000 -i 63 -a 7 - -t 10.3695 -s 311 -d 310 -p tcp -e 1000 -i 62 -a 7 h -t 10.3695 -s 111 -d 110 -p tcp -e 1000 -i 62 -a 7 h -t 10.3695 -s 211 -d 210 -p tcp -e 1000 -i 63 -a 7 h -t 10.3695 -s 311 -d 310 -p tcp -e 1000 -i 62 -a 7 + -t 10.3805 -s 111 -d 112 -p ack -e 40 -i 55 -a 3 + -t 10.3805 -s 211 -d 212 -p ack -e 40 -i 56 -a 3 + -t 10.3805 -s 311 -d 312 -p ack -e 40 -i 55 -a 3 - -t 10.3805 -s 111 -d 112 -p ack -e 40 -i 55 -a 3 - -t 10.3805 -s 211 -d 212 -p ack -e 40 -i 56 -a 3 - -t 10.3805 -s 311 -d 312 -p ack -e 40 -i 55 -a 3 h -t 10.3805 -s 111 -d 112 -p ack -e 40 -i 55 -a 3 h -t 10.3805 -s 211 -d 212 -p ack -e 40 -i 56 -a 3 h -t 10.3805 -s 311 -d 312 -p ack -e 40 -i 55 -a 3 r -t 10.3805 -s 110 -d 111 -p ack -e 40 -i 55 -a 3 r -t 10.3805 -s 210 -d 211 -p ack -e 40 -i 56 -a 3 r -t 10.3805 -s 310 -d 311 -p ack -e 40 -i 55 -a 3 r -t 10.3815 -s 111 -d 112 -p ack -e 40 -i 55 -a 3 r -t 10.3815 -s 211 -d 212 -p ack -e 40 -i 56 -a 3 r -t 10.3815 -s 311 -d 312 -p ack -e 40 -i 55 -a 3 + -t 10.3816 -s 112 -d 111 -p tcp -e 1000 -i 64 -a 3 + -t 10.3816 -s 112 -d 111 -p tcp -e 1000 -i 65 -a 3 + -t 10.3816 -s 212 -d 211 -p tcp -e 1000 -i 65 -a 3 + -t 10.3816 -s 212 -d 211 -p tcp -e 1000 -i 66 -a 3 + -t 10.3816 -s 312 -d 311 -p tcp -e 1000 -i 64 -a 3 + -t 10.3816 -s 312 -d 311 -p tcp -e 1000 -i 65 -a 3 - -t 10.3816 -s 112 -d 111 -p tcp -e 1000 -i 64 -a 3 - -t 10.3816 -s 212 -d 211 -p tcp -e 1000 -i 65 -a 3 - -t 10.3816 -s 312 -d 311 -p tcp -e 1000 -i 64 -a 3 h -t 10.3816 -s 112 -d 111 -p tcp -e 1000 -i 64 -a 3 h -t 10.3816 -s 212 -d 211 -p tcp -e 1000 -i 65 -a 3 h -t 10.3816 -s 312 -d 311 -p tcp -e 1000 -i 64 -a 3 - -t 10.3824 -s 112 -d 111 -p tcp -e 1000 -i 65 -a 3 - -t 10.3824 -s 212 -d 211 -p tcp -e 1000 -i 66 -a 3 - -t 10.3824 -s 312 -d 311 -p tcp -e 1000 -i 65 -a 3 h -t 10.3824 -s 112 -d 111 -p tcp -e 1000 -i 65 -a 3 h -t 10.3824 -s 212 -d 211 -p tcp -e 1000 -i 66 -a 3 h -t 10.3824 -s 312 -d 311 -p tcp -e 1000 -i 65 -a 3 + -t 10.3834 -s 111 -d 110 -p tcp -e 1000 -i 64 -a 3 + -t 10.3834 -s 211 -d 210 -p tcp -e 1000 -i 65 -a 3 + -t 10.3834 -s 311 -d 310 -p tcp -e 1000 -i 64 -a 3 - -t 10.3834 -s 111 -d 110 -p tcp -e 1000 -i 64 -a 3 - -t 10.3834 -s 211 -d 210 -p tcp -e 1000 -i 65 -a 3 - -t 10.3834 -s 311 -d 310 -p tcp -e 1000 -i 64 -a 3 h -t 10.3834 -s 111 -d 110 -p tcp -e 1000 -i 64 -a 3 h -t 10.3834 -s 211 -d 210 -p tcp -e 1000 -i 65 -a 3 h -t 10.3834 -s 311 -d 310 -p tcp -e 1000 -i 64 -a 3 r -t 10.3836 -s 112 -d 111 -p tcp -e 1000 -i 64 -a 3 r -t 10.3836 -s 212 -d 211 -p tcp -e 1000 -i 65 -a 3 r -t 10.3836 -s 312 -d 311 -p tcp -e 1000 -i 64 -a 3 + -t 10.3842 -s 111 -d 110 -p tcp -e 1000 -i 65 -a 3 + -t 10.3842 -s 211 -d 210 -p tcp -e 1000 -i 66 -a 3 + -t 10.3842 -s 311 -d 310 -p tcp -e 1000 -i 65 -a 3 r -t 10.3844 -s 112 -d 111 -p tcp -e 1000 -i 65 -a 3 r -t 10.3844 -s 212 -d 211 -p tcp -e 1000 -i 66 -a 3 r -t 10.3844 -s 312 -d 311 -p tcp -e 1000 -i 65 -a 3 - -t 10.3934 -s 111 -d 110 -p tcp -e 1000 -i 65 -a 3 - -t 10.3934 -s 211 -d 210 -p tcp -e 1000 -i 66 -a 3 - -t 10.3934 -s 311 -d 310 -p tcp -e 1000 -i 65 -a 3 h -t 10.3934 -s 111 -d 110 -p tcp -e 1000 -i 65 -a 3 h -t 10.3934 -s 211 -d 210 -p tcp -e 1000 -i 66 -a 3 h -t 10.3934 -s 311 -d 310 -p tcp -e 1000 -i 65 -a 3 + -t 10.4279 -s 110 -d 109 -p tcp -e 1000 -i 56 -a 9 + -t 10.4279 -s 210 -d 209 -p tcp -e 1000 -i 57 -a 9 + -t 10.4279 -s 310 -d 309 -p tcp -e 1000 -i 56 -a 9 - -t 10.4279 -s 110 -d 109 -p tcp -e 1000 -i 56 -a 9 - -t 10.4279 -s 210 -d 209 -p tcp -e 1000 -i 57 -a 9 - -t 10.4279 -s 310 -d 309 -p tcp -e 1000 -i 56 -a 9 h -t 10.4279 -s 110 -d 109 -p tcp -e 1000 -i 56 -a 9 h -t 10.4279 -s 210 -d 209 -p tcp -e 1000 -i 57 -a 9 h -t 10.4279 -s 310 -d 309 -p tcp -e 1000 -i 56 -a 9 r -t 10.4279 -s 111 -d 110 -p tcp -e 1000 -i 56 -a 9 r -t 10.4279 -s 211 -d 210 -p tcp -e 1000 -i 57 -a 9 r -t 10.4279 -s 311 -d 310 -p tcp -e 1000 -i 56 -a 9 r -t 10.4299 -s 110 -d 109 -p tcp -e 1000 -i 56 -a 9 r -t 10.4299 -s 210 -d 209 -p tcp -e 1000 -i 57 -a 9 r -t 10.4299 -s 310 -d 309 -p tcp -e 1000 -i 56 -a 9 + -t 10.4311 -s 211 -d 212 -p ack -e 40 -i 61 -a 4 - -t 10.4311 -s 211 -d 212 -p ack -e 40 -i 61 -a 4 h -t 10.4311 -s 211 -d 212 -p ack -e 40 -i 61 -a 4 r -t 10.4311 -s 210 -d 211 -p ack -e 40 -i 61 -a 4 r -t 10.4321 -s 211 -d 212 -p ack -e 40 -i 61 -a 4 + -t 10.4334 -s 111 -d 112 -p ack -e 40 -i 60 -a 4 + -t 10.4334 -s 311 -d 312 -p ack -e 40 -i 60 -a 4 - -t 10.4334 -s 111 -d 112 -p ack -e 40 -i 60 -a 4 - -t 10.4334 -s 311 -d 312 -p ack -e 40 -i 60 -a 4 h -t 10.4334 -s 111 -d 112 -p ack -e 40 -i 60 -a 4 h -t 10.4334 -s 311 -d 312 -p ack -e 40 -i 60 -a 4 r -t 10.4334 -s 110 -d 111 -p ack -e 40 -i 60 -a 4 r -t 10.4334 -s 310 -d 311 -p ack -e 40 -i 60 -a 4 r -t 10.4344 -s 111 -d 112 -p ack -e 40 -i 60 -a 4 r -t 10.4344 -s 311 -d 312 -p ack -e 40 -i 60 -a 4 + -t 10.4379 -s 110 -d 109 -p tcp -e 1000 -i 57 -a 9 + -t 10.4379 -s 210 -d 209 -p tcp -e 1000 -i 58 -a 9 + -t 10.4379 -s 310 -d 309 -p tcp -e 1000 -i 57 -a 9 - -t 10.4379 -s 110 -d 109 -p tcp -e 1000 -i 57 -a 9 - -t 10.4379 -s 210 -d 209 -p tcp -e 1000 -i 58 -a 9 - -t 10.4379 -s 310 -d 309 -p tcp -e 1000 -i 57 -a 9 h -t 10.4379 -s 110 -d 109 -p tcp -e 1000 -i 57 -a 9 h -t 10.4379 -s 210 -d 209 -p tcp -e 1000 -i 58 -a 9 h -t 10.4379 -s 310 -d 309 -p tcp -e 1000 -i 57 -a 9 r -t 10.4379 -s 111 -d 110 -p tcp -e 1000 -i 57 -a 9 r -t 10.4379 -s 211 -d 210 -p tcp -e 1000 -i 58 -a 9 r -t 10.4379 -s 311 -d 310 -p tcp -e 1000 -i 57 -a 9 + -t 10.4397 -s 109 -d 110 -p ack -e 40 -i 66 -a 9 + -t 10.4397 -s 204 -d 210 -p ack -e 40 -i 67 -a 4 + -t 10.4397 -s 209 -d 210 -p ack -e 40 -i 68 -a 9 + -t 10.4397 -s 309 -d 310 -p ack -e 40 -i 66 -a 9 - -t 10.4397 -s 109 -d 110 -p ack -e 40 -i 66 -a 9 - -t 10.4397 -s 204 -d 210 -p ack -e 40 -i 67 -a 4 - -t 10.4397 -s 209 -d 210 -p ack -e 40 -i 68 -a 9 - -t 10.4397 -s 309 -d 310 -p ack -e 40 -i 66 -a 9 h -t 10.4397 -s 109 -d 110 -p ack -e 40 -i 66 -a 9 h -t 10.4397 -s 204 -d 210 -p ack -e 40 -i 67 -a 4 h -t 10.4397 -s 209 -d 210 -p ack -e 40 -i 68 -a 9 h -t 10.4397 -s 309 -d 310 -p ack -e 40 -i 66 -a 9 r -t 10.4399 -s 110 -d 109 -p tcp -e 1000 -i 57 -a 9 r -t 10.4399 -s 210 -d 209 -p tcp -e 1000 -i 58 -a 9 r -t 10.4399 -s 310 -d 309 -p tcp -e 1000 -i 57 -a 9 + -t 10.4407 -s 110 -d 111 -p ack -e 40 -i 66 -a 9 + -t 10.4407 -s 210 -d 211 -p ack -e 40 -i 67 -a 4 + -t 10.4407 -s 210 -d 211 -p ack -e 40 -i 68 -a 9 + -t 10.4407 -s 310 -d 311 -p ack -e 40 -i 66 -a 9 - -t 10.4407 -s 110 -d 111 -p ack -e 40 -i 66 -a 9 - -t 10.4407 -s 210 -d 211 -p ack -e 40 -i 67 -a 4 - -t 10.4407 -s 310 -d 311 -p ack -e 40 -i 66 -a 9 h -t 10.4407 -s 110 -d 111 -p ack -e 40 -i 66 -a 9 h -t 10.4407 -s 210 -d 211 -p ack -e 40 -i 67 -a 4 h -t 10.4407 -s 310 -d 311 -p ack -e 40 -i 66 -a 9 r -t 10.4407 -s 109 -d 110 -p ack -e 40 -i 66 -a 9 r -t 10.4407 -s 204 -d 210 -p ack -e 40 -i 67 -a 4 r -t 10.4407 -s 209 -d 210 -p ack -e 40 -i 68 -a 9 r -t 10.4407 -s 309 -d 310 -p ack -e 40 -i 66 -a 9 - -t 10.4411 -s 210 -d 211 -p ack -e 40 -i 68 -a 9 h -t 10.4411 -s 210 -d 211 -p ack -e 40 -i 68 -a 9 + -t 10.4419 -s 104 -d 110 -p ack -e 40 -i 67 -a 4 + -t 10.4419 -s 304 -d 310 -p ack -e 40 -i 67 -a 4 - -t 10.4419 -s 104 -d 110 -p ack -e 40 -i 67 -a 4 - -t 10.4419 -s 304 -d 310 -p ack -e 40 -i 67 -a 4 h -t 10.4419 -s 104 -d 110 -p ack -e 40 -i 67 -a 4 h -t 10.4419 -s 304 -d 310 -p ack -e 40 -i 67 -a 4 r -t 10.4429 -s 104 -d 110 -p ack -e 40 -i 67 -a 4 r -t 10.4429 -s 304 -d 310 -p ack -e 40 -i 67 -a 4 + -t 10.443 -s 110 -d 111 -p ack -e 40 -i 67 -a 4 + -t 10.443 -s 310 -d 311 -p ack -e 40 -i 67 -a 4 - -t 10.443 -s 110 -d 111 -p ack -e 40 -i 67 -a 4 - -t 10.443 -s 310 -d 311 -p ack -e 40 -i 67 -a 4 h -t 10.443 -s 110 -d 111 -p ack -e 40 -i 67 -a 4 h -t 10.443 -s 310 -d 311 -p ack -e 40 -i 67 -a 4 + -t 10.4479 -s 110 -d 109 -p tcp -e 1000 -i 58 -a 9 + -t 10.4479 -s 210 -d 209 -p tcp -e 1000 -i 59 -a 9 + -t 10.4479 -s 310 -d 309 -p tcp -e 1000 -i 58 -a 9 - -t 10.4479 -s 110 -d 109 -p tcp -e 1000 -i 58 -a 9 - -t 10.4479 -s 210 -d 209 -p tcp -e 1000 -i 59 -a 9 - -t 10.4479 -s 310 -d 309 -p tcp -e 1000 -i 58 -a 9 h -t 10.4479 -s 110 -d 109 -p tcp -e 1000 -i 58 -a 9 h -t 10.4479 -s 210 -d 209 -p tcp -e 1000 -i 59 -a 9 h -t 10.4479 -s 310 -d 309 -p tcp -e 1000 -i 58 -a 9 r -t 10.4479 -s 111 -d 110 -p tcp -e 1000 -i 58 -a 9 r -t 10.4479 -s 211 -d 210 -p tcp -e 1000 -i 59 -a 9 r -t 10.4479 -s 311 -d 310 -p tcp -e 1000 -i 58 -a 9 r -t 10.4499 -s 110 -d 109 -p tcp -e 1000 -i 58 -a 9 r -t 10.4499 -s 210 -d 209 -p tcp -e 1000 -i 59 -a 9 r -t 10.4499 -s 310 -d 309 -p tcp -e 1000 -i 58 -a 9 + -t 10.4579 -s 110 -d 104 -p tcp -e 1000 -i 59 -a 4 + -t 10.4579 -s 210 -d 209 -p tcp -e 1000 -i 60 -a 9 + -t 10.4579 -s 310 -d 304 -p tcp -e 1000 -i 59 -a 4 - -t 10.4579 -s 110 -d 104 -p tcp -e 1000 -i 59 -a 4 - -t 10.4579 -s 210 -d 209 -p tcp -e 1000 -i 60 -a 9 - -t 10.4579 -s 310 -d 304 -p tcp -e 1000 -i 59 -a 4 h -t 10.4579 -s 110 -d 104 -p tcp -e 1000 -i 59 -a 4 h -t 10.4579 -s 210 -d 209 -p tcp -e 1000 -i 60 -a 9 h -t 10.4579 -s 310 -d 304 -p tcp -e 1000 -i 59 -a 4 r -t 10.4579 -s 111 -d 110 -p tcp -e 1000 -i 59 -a 4 r -t 10.4579 -s 211 -d 210 -p tcp -e 1000 -i 60 -a 9 r -t 10.4579 -s 311 -d 310 -p tcp -e 1000 -i 59 -a 4 + -t 10.4597 -s 209 -d 210 -p ack -e 40 -i 69 -a 9 - -t 10.4597 -s 209 -d 210 -p ack -e 40 -i 69 -a 9 h -t 10.4597 -s 209 -d 210 -p ack -e 40 -i 69 -a 9 r -t 10.4599 -s 110 -d 104 -p tcp -e 1000 -i 59 -a 4 r -t 10.4599 -s 210 -d 209 -p tcp -e 1000 -i 60 -a 9 r -t 10.4599 -s 310 -d 304 -p tcp -e 1000 -i 59 -a 4 + -t 10.4607 -s 210 -d 211 -p ack -e 40 -i 69 -a 9 - -t 10.4607 -s 210 -d 211 -p ack -e 40 -i 69 -a 9 h -t 10.4607 -s 210 -d 211 -p ack -e 40 -i 69 -a 9 r -t 10.4607 -s 209 -d 210 -p ack -e 40 -i 69 -a 9 + -t 10.4611 -s 211 -d 212 -p ack -e 40 -i 64 -a 2 - -t 10.4611 -s 211 -d 212 -p ack -e 40 -i 64 -a 2 h -t 10.4611 -s 211 -d 212 -p ack -e 40 -i 64 -a 2 r -t 10.4611 -s 210 -d 211 -p ack -e 40 -i 64 -a 2 r -t 10.4621 -s 211 -d 212 -p ack -e 40 -i 64 -a 2 + -t 10.4622 -s 212 -d 211 -p tcp -e 1000 -i 70 -a 2 + -t 10.4622 -s 212 -d 211 -p tcp -e 1000 -i 71 -a 2 + -t 10.4622 -s 212 -d 211 -p tcp -e 1000 -i 72 -a 2 + -t 10.4622 -s 212 -d 211 -p tcp -e 1000 -i 73 -a 2 - -t 10.4622 -s 212 -d 211 -p tcp -e 1000 -i 70 -a 2 h -t 10.4622 -s 212 -d 211 -p tcp -e 1000 -i 70 -a 2 - -t 10.463 -s 212 -d 211 -p tcp -e 1000 -i 71 -a 2 h -t 10.463 -s 212 -d 211 -p tcp -e 1000 -i 71 -a 2 + -t 10.4634 -s 111 -d 112 -p ack -e 40 -i 63 -a 2 + -t 10.4634 -s 311 -d 312 -p ack -e 40 -i 63 -a 2 - -t 10.4634 -s 111 -d 112 -p ack -e 40 -i 63 -a 2 - -t 10.4634 -s 311 -d 312 -p ack -e 40 -i 63 -a 2 h -t 10.4634 -s 111 -d 112 -p ack -e 40 -i 63 -a 2 h -t 10.4634 -s 311 -d 312 -p ack -e 40 -i 63 -a 2 r -t 10.4634 -s 110 -d 111 -p ack -e 40 -i 63 -a 2 r -t 10.4634 -s 310 -d 311 -p ack -e 40 -i 63 -a 2 - -t 10.4638 -s 212 -d 211 -p tcp -e 1000 -i 72 -a 2 h -t 10.4638 -s 212 -d 211 -p tcp -e 1000 -i 72 -a 2 + -t 10.464 -s 211 -d 210 -p tcp -e 1000 -i 70 -a 2 - -t 10.464 -s 211 -d 210 -p tcp -e 1000 -i 70 -a 2 h -t 10.464 -s 211 -d 210 -p tcp -e 1000 -i 70 -a 2 r -t 10.4642 -s 212 -d 211 -p tcp -e 1000 -i 70 -a 2 + -t 10.4644 -s 112 -d 111 -p tcp -e 1000 -i 68 -a 2 + -t 10.4644 -s 112 -d 111 -p tcp -e 1000 -i 69 -a 2 + -t 10.4644 -s 112 -d 111 -p tcp -e 1000 -i 70 -a 2 + -t 10.4644 -s 312 -d 311 -p tcp -e 1000 -i 68 -a 2 + -t 10.4644 -s 312 -d 311 -p tcp -e 1000 -i 69 -a 2 + -t 10.4644 -s 312 -d 311 -p tcp -e 1000 -i 70 -a 2 - -t 10.4644 -s 112 -d 111 -p tcp -e 1000 -i 68 -a 2 - -t 10.4644 -s 312 -d 311 -p tcp -e 1000 -i 68 -a 2 h -t 10.4644 -s 112 -d 111 -p tcp -e 1000 -i 68 -a 2 h -t 10.4644 -s 312 -d 311 -p tcp -e 1000 -i 68 -a 2 r -t 10.4644 -s 111 -d 112 -p ack -e 40 -i 63 -a 2 r -t 10.4644 -s 311 -d 312 -p ack -e 40 -i 63 -a 2 - -t 10.4646 -s 212 -d 211 -p tcp -e 1000 -i 73 -a 2 h -t 10.4646 -s 212 -d 211 -p tcp -e 1000 -i 73 -a 2 + -t 10.4648 -s 211 -d 210 -p tcp -e 1000 -i 71 -a 2 r -t 10.465 -s 212 -d 211 -p tcp -e 1000 -i 71 -a 2 - -t 10.4652 -s 112 -d 111 -p tcp -e 1000 -i 69 -a 2 - -t 10.4652 -s 312 -d 311 -p tcp -e 1000 -i 69 -a 2 h -t 10.4652 -s 112 -d 111 -p tcp -e 1000 -i 69 -a 2 h -t 10.4652 -s 312 -d 311 -p tcp -e 1000 -i 69 -a 2 + -t 10.4656 -s 211 -d 210 -p tcp -e 1000 -i 72 -a 2 r -t 10.4658 -s 212 -d 211 -p tcp -e 1000 -i 72 -a 2 - -t 10.466 -s 112 -d 111 -p tcp -e 1000 -i 70 -a 2 - -t 10.466 -s 312 -d 311 -p tcp -e 1000 -i 70 -a 2 h -t 10.466 -s 112 -d 111 -p tcp -e 1000 -i 70 -a 2 h -t 10.466 -s 312 -d 311 -p tcp -e 1000 -i 70 -a 2 + -t 10.4662 -s 111 -d 110 -p tcp -e 1000 -i 68 -a 2 + -t 10.4662 -s 311 -d 310 -p tcp -e 1000 -i 68 -a 2 - -t 10.4662 -s 111 -d 110 -p tcp -e 1000 -i 68 -a 2 - -t 10.4662 -s 311 -d 310 -p tcp -e 1000 -i 68 -a 2 h -t 10.4662 -s 111 -d 110 -p tcp -e 1000 -i 68 -a 2 h -t 10.4662 -s 311 -d 310 -p tcp -e 1000 -i 68 -a 2 + -t 10.4664 -s 211 -d 210 -p tcp -e 1000 -i 73 -a 2 r -t 10.4664 -s 112 -d 111 -p tcp -e 1000 -i 68 -a 2 r -t 10.4664 -s 312 -d 311 -p tcp -e 1000 -i 68 -a 2 r -t 10.4666 -s 212 -d 211 -p tcp -e 1000 -i 73 -a 2 + -t 10.467 -s 111 -d 110 -p tcp -e 1000 -i 69 -a 2 + -t 10.467 -s 311 -d 310 -p tcp -e 1000 -i 69 -a 2 r -t 10.4672 -s 112 -d 111 -p tcp -e 1000 -i 69 -a 2 r -t 10.4672 -s 312 -d 311 -p tcp -e 1000 -i 69 -a 2 + -t 10.4678 -s 111 -d 110 -p tcp -e 1000 -i 70 -a 2 + -t 10.4678 -s 311 -d 310 -p tcp -e 1000 -i 70 -a 2 r -t 10.468 -s 112 -d 111 -p tcp -e 1000 -i 70 -a 2 r -t 10.468 -s 312 -d 311 -p tcp -e 1000 -i 70 -a 2 + -t 10.4695 -s 110 -d 106 -p tcp -e 1000 -i 61 -a 6 + -t 10.4695 -s 210 -d 206 -p tcp -e 1000 -i 62 -a 6 + -t 10.4695 -s 310 -d 306 -p tcp -e 1000 -i 61 -a 6 - -t 10.4695 -s 110 -d 106 -p tcp -e 1000 -i 61 -a 6 - -t 10.4695 -s 210 -d 206 -p tcp -e 1000 -i 62 -a 6 - -t 10.4695 -s 310 -d 306 -p tcp -e 1000 -i 61 -a 6 h -t 10.4695 -s 110 -d 106 -p tcp -e 1000 -i 61 -a 6 h -t 10.4695 -s 210 -d 206 -p tcp -e 1000 -i 62 -a 6 h -t 10.4695 -s 310 -d 306 -p tcp -e 1000 -i 61 -a 6 r -t 10.4695 -s 111 -d 110 -p tcp -e 1000 -i 61 -a 6 r -t 10.4695 -s 211 -d 210 -p tcp -e 1000 -i 62 -a 6 r -t 10.4695 -s 311 -d 310 -p tcp -e 1000 -i 61 -a 6 r -t 10.4715 -s 110 -d 106 -p tcp -e 1000 -i 61 -a 6 r -t 10.4715 -s 210 -d 206 -p tcp -e 1000 -i 62 -a 6 r -t 10.4715 -s 310 -d 306 -p tcp -e 1000 -i 61 -a 6 - -t 10.474 -s 211 -d 210 -p tcp -e 1000 -i 71 -a 2 h -t 10.474 -s 211 -d 210 -p tcp -e 1000 -i 71 -a 2 - -t 10.4762 -s 111 -d 110 -p tcp -e 1000 -i 69 -a 2 - -t 10.4762 -s 311 -d 310 -p tcp -e 1000 -i 69 -a 2 h -t 10.4762 -s 111 -d 110 -p tcp -e 1000 -i 69 -a 2 h -t 10.4762 -s 311 -d 310 -p tcp -e 1000 -i 69 -a 2 + -t 10.4795 -s 110 -d 107 -p tcp -e 1000 -i 62 -a 7 + -t 10.4795 -s 210 -d 207 -p tcp -e 1000 -i 63 -a 7 + -t 10.4795 -s 310 -d 307 -p tcp -e 1000 -i 62 -a 7 - -t 10.4795 -s 110 -d 107 -p tcp -e 1000 -i 62 -a 7 - -t 10.4795 -s 210 -d 207 -p tcp -e 1000 -i 63 -a 7 - -t 10.4795 -s 310 -d 307 -p tcp -e 1000 -i 62 -a 7 h -t 10.4795 -s 110 -d 107 -p tcp -e 1000 -i 62 -a 7 h -t 10.4795 -s 210 -d 207 -p tcp -e 1000 -i 63 -a 7 h -t 10.4795 -s 310 -d 307 -p tcp -e 1000 -i 62 -a 7 r -t 10.4795 -s 111 -d 110 -p tcp -e 1000 -i 62 -a 7 r -t 10.4795 -s 211 -d 210 -p tcp -e 1000 -i 63 -a 7 r -t 10.4795 -s 311 -d 310 -p tcp -e 1000 -i 62 -a 7 r -t 10.4815 -s 110 -d 107 -p tcp -e 1000 -i 62 -a 7 r -t 10.4815 -s 210 -d 207 -p tcp -e 1000 -i 63 -a 7 r -t 10.4815 -s 310 -d 307 -p tcp -e 1000 -i 62 -a 7 - -t 10.484 -s 211 -d 210 -p tcp -e 1000 -i 72 -a 2 h -t 10.484 -s 211 -d 210 -p tcp -e 1000 -i 72 -a 2 - -t 10.4862 -s 111 -d 110 -p tcp -e 1000 -i 70 -a 2 - -t 10.4862 -s 311 -d 310 -p tcp -e 1000 -i 70 -a 2 h -t 10.4862 -s 111 -d 110 -p tcp -e 1000 -i 70 -a 2 h -t 10.4862 -s 311 -d 310 -p tcp -e 1000 -i 70 -a 2 + -t 10.4934 -s 110 -d 103 -p tcp -e 1000 -i 64 -a 3 + -t 10.4934 -s 210 -d 203 -p tcp -e 1000 -i 65 -a 3 + -t 10.4934 -s 310 -d 303 -p tcp -e 1000 -i 64 -a 3 - -t 10.4934 -s 110 -d 103 -p tcp -e 1000 -i 64 -a 3 - -t 10.4934 -s 210 -d 203 -p tcp -e 1000 -i 65 -a 3 - -t 10.4934 -s 310 -d 303 -p tcp -e 1000 -i 64 -a 3 h -t 10.4934 -s 110 -d 103 -p tcp -e 1000 -i 64 -a 3 h -t 10.4934 -s 210 -d 203 -p tcp -e 1000 -i 65 -a 3 h -t 10.4934 -s 310 -d 303 -p tcp -e 1000 -i 64 -a 3 r -t 10.4934 -s 111 -d 110 -p tcp -e 1000 -i 64 -a 3 r -t 10.4934 -s 211 -d 210 -p tcp -e 1000 -i 65 -a 3 r -t 10.4934 -s 311 -d 310 -p tcp -e 1000 -i 64 -a 3 - -t 10.494 -s 211 -d 210 -p tcp -e 1000 -i 73 -a 2 h -t 10.494 -s 211 -d 210 -p tcp -e 1000 -i 73 -a 2 r -t 10.4954 -s 110 -d 103 -p tcp -e 1000 -i 64 -a 3 r -t 10.4954 -s 210 -d 203 -p tcp -e 1000 -i 65 -a 3 r -t 10.4954 -s 310 -d 303 -p tcp -e 1000 -i 64 -a 3 + -t 10.5034 -s 110 -d 103 -p tcp -e 1000 -i 65 -a 3 + -t 10.5034 -s 210 -d 203 -p tcp -e 1000 -i 66 -a 3 + -t 10.5034 -s 310 -d 303 -p tcp -e 1000 -i 65 -a 3 - -t 10.5034 -s 110 -d 103 -p tcp -e 1000 -i 65 -a 3 - -t 10.5034 -s 210 -d 203 -p tcp -e 1000 -i 66 -a 3 - -t 10.5034 -s 310 -d 303 -p tcp -e 1000 -i 65 -a 3 h -t 10.5034 -s 110 -d 103 -p tcp -e 1000 -i 65 -a 3 h -t 10.5034 -s 210 -d 203 -p tcp -e 1000 -i 66 -a 3 h -t 10.5034 -s 310 -d 303 -p tcp -e 1000 -i 65 -a 3 r -t 10.5034 -s 111 -d 110 -p tcp -e 1000 -i 65 -a 3 r -t 10.5034 -s 211 -d 210 -p tcp -e 1000 -i 66 -a 3 r -t 10.5034 -s 311 -d 310 -p tcp -e 1000 -i 65 -a 3 + -t 10.5052 -s 103 -d 110 -p ack -e 40 -i 71 -a 3 + -t 10.5052 -s 203 -d 210 -p ack -e 40 -i 74 -a 3 + -t 10.5052 -s 303 -d 310 -p ack -e 40 -i 71 -a 3 - -t 10.5052 -s 103 -d 110 -p ack -e 40 -i 71 -a 3 - -t 10.5052 -s 203 -d 210 -p ack -e 40 -i 74 -a 3 - -t 10.5052 -s 303 -d 310 -p ack -e 40 -i 71 -a 3 h -t 10.5052 -s 103 -d 110 -p ack -e 40 -i 71 -a 3 h -t 10.5052 -s 203 -d 210 -p ack -e 40 -i 74 -a 3 h -t 10.5052 -s 303 -d 310 -p ack -e 40 -i 71 -a 3 r -t 10.5054 -s 110 -d 103 -p tcp -e 1000 -i 65 -a 3 r -t 10.5054 -s 210 -d 203 -p tcp -e 1000 -i 66 -a 3 r -t 10.5054 -s 310 -d 303 -p tcp -e 1000 -i 65 -a 3 + -t 10.5062 -s 110 -d 111 -p ack -e 40 -i 71 -a 3 + -t 10.5062 -s 210 -d 211 -p ack -e 40 -i 74 -a 3 + -t 10.5062 -s 310 -d 311 -p ack -e 40 -i 71 -a 3 - -t 10.5062 -s 110 -d 111 -p ack -e 40 -i 71 -a 3 - -t 10.5062 -s 210 -d 211 -p ack -e 40 -i 74 -a 3 - -t 10.5062 -s 310 -d 311 -p ack -e 40 -i 71 -a 3 h -t 10.5062 -s 110 -d 111 -p ack -e 40 -i 71 -a 3 h -t 10.5062 -s 210 -d 211 -p ack -e 40 -i 74 -a 3 h -t 10.5062 -s 310 -d 311 -p ack -e 40 -i 71 -a 3 r -t 10.5062 -s 103 -d 110 -p ack -e 40 -i 71 -a 3 r -t 10.5062 -s 203 -d 210 -p ack -e 40 -i 74 -a 3 r -t 10.5062 -s 303 -d 310 -p ack -e 40 -i 71 -a 3 + -t 10.5112 -s 112 -d 111 -p tcp -e 1000 -i 72 -a 1 + -t 10.5112 -s 212 -d 211 -p tcp -e 1000 -i 75 -a 1 + -t 10.5112 -s 312 -d 311 -p tcp -e 1000 -i 72 -a 1 - -t 10.5112 -s 112 -d 111 -p tcp -e 1000 -i 72 -a 1 - -t 10.5112 -s 212 -d 211 -p tcp -e 1000 -i 75 -a 1 - -t 10.5112 -s 312 -d 311 -p tcp -e 1000 -i 72 -a 1 h -t 10.5112 -s 112 -d 111 -p tcp -e 1000 -i 72 -a 1 h -t 10.5112 -s 212 -d 211 -p tcp -e 1000 -i 75 -a 1 h -t 10.5112 -s 312 -d 311 -p tcp -e 1000 -i 72 -a 1 + -t 10.513 -s 111 -d 110 -p tcp -e 1000 -i 72 -a 1 + -t 10.513 -s 211 -d 210 -p tcp -e 1000 -i 75 -a 1 + -t 10.513 -s 311 -d 310 -p tcp -e 1000 -i 72 -a 1 - -t 10.513 -s 111 -d 110 -p tcp -e 1000 -i 72 -a 1 - -t 10.513 -s 211 -d 210 -p tcp -e 1000 -i 75 -a 1 - -t 10.513 -s 311 -d 310 -p tcp -e 1000 -i 72 -a 1 h -t 10.513 -s 111 -d 110 -p tcp -e 1000 -i 72 -a 1 h -t 10.513 -s 211 -d 210 -p tcp -e 1000 -i 75 -a 1 h -t 10.513 -s 311 -d 310 -p tcp -e 1000 -i 72 -a 1 r -t 10.5132 -s 112 -d 111 -p tcp -e 1000 -i 72 -a 1 r -t 10.5132 -s 212 -d 211 -p tcp -e 1000 -i 75 -a 1 r -t 10.5132 -s 312 -d 311 -p tcp -e 1000 -i 72 -a 1 + -t 10.5411 -s 111 -d 112 -p ack -e 40 -i 66 -a 9 + -t 10.5411 -s 211 -d 212 -p ack -e 40 -i 67 -a 4 + -t 10.5411 -s 311 -d 312 -p ack -e 40 -i 66 -a 9 - -t 10.5411 -s 111 -d 112 -p ack -e 40 -i 66 -a 9 - -t 10.5411 -s 211 -d 212 -p ack -e 40 -i 67 -a 4 - -t 10.5411 -s 311 -d 312 -p ack -e 40 -i 66 -a 9 h -t 10.5411 -s 111 -d 112 -p ack -e 40 -i 66 -a 9 h -t 10.5411 -s 211 -d 212 -p ack -e 40 -i 67 -a 4 h -t 10.5411 -s 311 -d 312 -p ack -e 40 -i 66 -a 9 r -t 10.5411 -s 110 -d 111 -p ack -e 40 -i 66 -a 9 r -t 10.5411 -s 210 -d 211 -p ack -e 40 -i 67 -a 4 r -t 10.5411 -s 310 -d 311 -p ack -e 40 -i 66 -a 9 + -t 10.5415 -s 211 -d 212 -p ack -e 40 -i 68 -a 9 - -t 10.5415 -s 211 -d 212 -p ack -e 40 -i 68 -a 9 h -t 10.5415 -s 211 -d 212 -p ack -e 40 -i 68 -a 9 r -t 10.5415 -s 210 -d 211 -p ack -e 40 -i 68 -a 9 r -t 10.5421 -s 111 -d 112 -p ack -e 40 -i 66 -a 9 r -t 10.5421 -s 211 -d 212 -p ack -e 40 -i 67 -a 4 r -t 10.5421 -s 311 -d 312 -p ack -e 40 -i 66 -a 9 + -t 10.5422 -s 112 -d 111 -p tcp -e 1000 -i 73 -a 9 + -t 10.5422 -s 112 -d 111 -p tcp -e 1000 -i 74 -a 9 + -t 10.5422 -s 112 -d 111 -p tcp -e 1000 -i 75 -a 9 + -t 10.5422 -s 312 -d 311 -p tcp -e 1000 -i 73 -a 9 + -t 10.5422 -s 312 -d 311 -p tcp -e 1000 -i 74 -a 9 + -t 10.5422 -s 312 -d 311 -p tcp -e 1000 -i 75 -a 9 - -t 10.5422 -s 112 -d 111 -p tcp -e 1000 -i 73 -a 9 - -t 10.5422 -s 312 -d 311 -p tcp -e 1000 -i 73 -a 9 h -t 10.5422 -s 112 -d 111 -p tcp -e 1000 -i 73 -a 9 h -t 10.5422 -s 312 -d 311 -p tcp -e 1000 -i 73 -a 9 r -t 10.5425 -s 211 -d 212 -p ack -e 40 -i 68 -a 9 + -t 10.5426 -s 212 -d 211 -p tcp -e 1000 -i 76 -a 9 + -t 10.5426 -s 212 -d 211 -p tcp -e 1000 -i 77 -a 9 + -t 10.5426 -s 212 -d 211 -p tcp -e 1000 -i 78 -a 9 - -t 10.5426 -s 212 -d 211 -p tcp -e 1000 -i 76 -a 9 h -t 10.5426 -s 212 -d 211 -p tcp -e 1000 -i 76 -a 9 - -t 10.543 -s 112 -d 111 -p tcp -e 1000 -i 74 -a 9 - -t 10.543 -s 312 -d 311 -p tcp -e 1000 -i 74 -a 9 h -t 10.543 -s 112 -d 111 -p tcp -e 1000 -i 74 -a 9 h -t 10.543 -s 312 -d 311 -p tcp -e 1000 -i 74 -a 9 + -t 10.5434 -s 111 -d 112 -p ack -e 40 -i 67 -a 4 + -t 10.5434 -s 311 -d 312 -p ack -e 40 -i 67 -a 4 - -t 10.5434 -s 111 -d 112 -p ack -e 40 -i 67 -a 4 - -t 10.5434 -s 212 -d 211 -p tcp -e 1000 -i 77 -a 9 - -t 10.5434 -s 311 -d 312 -p ack -e 40 -i 67 -a 4 h -t 10.5434 -s 111 -d 112 -p ack -e 40 -i 67 -a 4 h -t 10.5434 -s 212 -d 211 -p tcp -e 1000 -i 77 -a 9 h -t 10.5434 -s 311 -d 312 -p ack -e 40 -i 67 -a 4 r -t 10.5434 -s 110 -d 111 -p ack -e 40 -i 67 -a 4 r -t 10.5434 -s 310 -d 311 -p ack -e 40 -i 67 -a 4 - -t 10.5438 -s 112 -d 111 -p tcp -e 1000 -i 75 -a 9 - -t 10.5438 -s 312 -d 311 -p tcp -e 1000 -i 75 -a 9 h -t 10.5438 -s 112 -d 111 -p tcp -e 1000 -i 75 -a 9 h -t 10.5438 -s 312 -d 311 -p tcp -e 1000 -i 75 -a 9 + -t 10.544 -s 111 -d 110 -p tcp -e 1000 -i 73 -a 9 + -t 10.544 -s 311 -d 310 -p tcp -e 1000 -i 73 -a 9 - -t 10.544 -s 111 -d 110 -p tcp -e 1000 -i 73 -a 9 - -t 10.544 -s 311 -d 310 -p tcp -e 1000 -i 73 -a 9 h -t 10.544 -s 111 -d 110 -p tcp -e 1000 -i 73 -a 9 h -t 10.544 -s 311 -d 310 -p tcp -e 1000 -i 73 -a 9 - -t 10.5442 -s 212 -d 211 -p tcp -e 1000 -i 78 -a 9 h -t 10.5442 -s 212 -d 211 -p tcp -e 1000 -i 78 -a 9 r -t 10.5442 -s 112 -d 111 -p tcp -e 1000 -i 73 -a 9 r -t 10.5442 -s 312 -d 311 -p tcp -e 1000 -i 73 -a 9 + -t 10.5444 -s 211 -d 210 -p tcp -e 1000 -i 76 -a 9 - -t 10.5444 -s 211 -d 210 -p tcp -e 1000 -i 76 -a 9 h -t 10.5444 -s 211 -d 210 -p tcp -e 1000 -i 76 -a 9 r -t 10.5444 -s 111 -d 112 -p ack -e 40 -i 67 -a 4 r -t 10.5444 -s 311 -d 312 -p ack -e 40 -i 67 -a 4 r -t 10.5446 -s 212 -d 211 -p tcp -e 1000 -i 76 -a 9 + -t 10.5448 -s 111 -d 110 -p tcp -e 1000 -i 74 -a 9 + -t 10.5448 -s 311 -d 310 -p tcp -e 1000 -i 74 -a 9 r -t 10.545 -s 112 -d 111 -p tcp -e 1000 -i 74 -a 9 r -t 10.545 -s 312 -d 311 -p tcp -e 1000 -i 74 -a 9 + -t 10.5452 -s 211 -d 210 -p tcp -e 1000 -i 77 -a 9 r -t 10.5454 -s 212 -d 211 -p tcp -e 1000 -i 77 -a 9 + -t 10.5456 -s 111 -d 110 -p tcp -e 1000 -i 75 -a 9 + -t 10.5456 -s 311 -d 310 -p tcp -e 1000 -i 75 -a 9 r -t 10.5458 -s 112 -d 111 -p tcp -e 1000 -i 75 -a 9 r -t 10.5458 -s 312 -d 311 -p tcp -e 1000 -i 75 -a 9 + -t 10.546 -s 211 -d 210 -p tcp -e 1000 -i 78 -a 9 r -t 10.5462 -s 212 -d 211 -p tcp -e 1000 -i 78 -a 9 + -t 10.5497 -s 109 -d 110 -p ack -e 40 -i 76 -a 9 + -t 10.5497 -s 309 -d 310 -p ack -e 40 -i 76 -a 9 - -t 10.5497 -s 109 -d 110 -p ack -e 40 -i 76 -a 9 - -t 10.5497 -s 309 -d 310 -p ack -e 40 -i 76 -a 9 h -t 10.5497 -s 109 -d 110 -p ack -e 40 -i 76 -a 9 h -t 10.5497 -s 309 -d 310 -p ack -e 40 -i 76 -a 9 + -t 10.5507 -s 110 -d 111 -p ack -e 40 -i 76 -a 9 + -t 10.5507 -s 310 -d 311 -p ack -e 40 -i 76 -a 9 - -t 10.5507 -s 110 -d 111 -p ack -e 40 -i 76 -a 9 - -t 10.5507 -s 310 -d 311 -p ack -e 40 -i 76 -a 9 h -t 10.5507 -s 110 -d 111 -p ack -e 40 -i 76 -a 9 h -t 10.5507 -s 310 -d 311 -p ack -e 40 -i 76 -a 9 r -t 10.5507 -s 109 -d 110 -p ack -e 40 -i 76 -a 9 r -t 10.5507 -s 309 -d 310 -p ack -e 40 -i 76 -a 9 - -t 10.554 -s 111 -d 110 -p tcp -e 1000 -i 74 -a 9 - -t 10.554 -s 311 -d 310 -p tcp -e 1000 -i 74 -a 9 h -t 10.554 -s 111 -d 110 -p tcp -e 1000 -i 74 -a 9 h -t 10.554 -s 311 -d 310 -p tcp -e 1000 -i 74 -a 9 - -t 10.5544 -s 211 -d 210 -p tcp -e 1000 -i 77 -a 9 h -t 10.5544 -s 211 -d 210 -p tcp -e 1000 -i 77 -a 9 + -t 10.5597 -s 104 -d 110 -p ack -e 40 -i 77 -a 4 + -t 10.5597 -s 304 -d 310 -p ack -e 40 -i 77 -a 4 - -t 10.5597 -s 104 -d 110 -p ack -e 40 -i 77 -a 4 - -t 10.5597 -s 304 -d 310 -p ack -e 40 -i 77 -a 4 h -t 10.5597 -s 104 -d 110 -p ack -e 40 -i 77 -a 4 h -t 10.5597 -s 304 -d 310 -p ack -e 40 -i 77 -a 4 + -t 10.5607 -s 110 -d 111 -p ack -e 40 -i 77 -a 4 + -t 10.5607 -s 310 -d 311 -p ack -e 40 -i 77 -a 4 - -t 10.5607 -s 110 -d 111 -p ack -e 40 -i 77 -a 4 - -t 10.5607 -s 310 -d 311 -p ack -e 40 -i 77 -a 4 h -t 10.5607 -s 110 -d 111 -p ack -e 40 -i 77 -a 4 h -t 10.5607 -s 310 -d 311 -p ack -e 40 -i 77 -a 4 r -t 10.5607 -s 104 -d 110 -p ack -e 40 -i 77 -a 4 r -t 10.5607 -s 304 -d 310 -p ack -e 40 -i 77 -a 4 + -t 10.5611 -s 211 -d 212 -p ack -e 40 -i 69 -a 9 - -t 10.5611 -s 211 -d 212 -p ack -e 40 -i 69 -a 9 h -t 10.5611 -s 211 -d 212 -p ack -e 40 -i 69 -a 9 r -t 10.5611 -s 210 -d 211 -p ack -e 40 -i 69 -a 9 r -t 10.5621 -s 211 -d 212 -p ack -e 40 -i 69 -a 9 - -t 10.564 -s 111 -d 110 -p tcp -e 1000 -i 75 -a 9 - -t 10.564 -s 311 -d 310 -p tcp -e 1000 -i 75 -a 9 h -t 10.564 -s 111 -d 110 -p tcp -e 1000 -i 75 -a 9 h -t 10.564 -s 311 -d 310 -p tcp -e 1000 -i 75 -a 9 - -t 10.5644 -s 211 -d 210 -p tcp -e 1000 -i 78 -a 9 h -t 10.5644 -s 211 -d 210 -p tcp -e 1000 -i 78 -a 9 + -t 10.5713 -s 106 -d 110 -p ack -e 40 -i 78 -a 6 + -t 10.5713 -s 206 -d 210 -p ack -e 40 -i 79 -a 6 + -t 10.5713 -s 306 -d 310 -p ack -e 40 -i 78 -a 6 - -t 10.5713 -s 106 -d 110 -p ack -e 40 -i 78 -a 6 - -t 10.5713 -s 206 -d 210 -p ack -e 40 -i 79 -a 6 - -t 10.5713 -s 306 -d 310 -p ack -e 40 -i 78 -a 6 h -t 10.5713 -s 106 -d 110 -p ack -e 40 -i 78 -a 6 h -t 10.5713 -s 206 -d 210 -p ack -e 40 -i 79 -a 6 h -t 10.5713 -s 306 -d 310 -p ack -e 40 -i 78 -a 6 + -t 10.5723 -s 110 -d 111 -p ack -e 40 -i 78 -a 6 + -t 10.5723 -s 210 -d 211 -p ack -e 40 -i 79 -a 6 + -t 10.5723 -s 310 -d 311 -p ack -e 40 -i 78 -a 6 - -t 10.5723 -s 110 -d 111 -p ack -e 40 -i 78 -a 6 - -t 10.5723 -s 210 -d 211 -p ack -e 40 -i 79 -a 6 - -t 10.5723 -s 310 -d 311 -p ack -e 40 -i 78 -a 6 h -t 10.5723 -s 110 -d 111 -p ack -e 40 -i 78 -a 6 h -t 10.5723 -s 210 -d 211 -p ack -e 40 -i 79 -a 6 h -t 10.5723 -s 310 -d 311 -p ack -e 40 -i 78 -a 6 r -t 10.5723 -s 106 -d 110 -p ack -e 40 -i 78 -a 6 r -t 10.5723 -s 206 -d 210 -p ack -e 40 -i 79 -a 6 r -t 10.5723 -s 306 -d 310 -p ack -e 40 -i 78 -a 6 + -t 10.574 -s 210 -d 202 -p tcp -e 1000 -i 70 -a 2 - -t 10.574 -s 210 -d 202 -p tcp -e 1000 -i 70 -a 2 h -t 10.574 -s 210 -d 202 -p tcp -e 1000 -i 70 -a 2 r -t 10.574 -s 211 -d 210 -p tcp -e 1000 -i 70 -a 2 r -t 10.576 -s 210 -d 202 -p tcp -e 1000 -i 70 -a 2 + -t 10.5762 -s 110 -d 102 -p tcp -e 1000 -i 68 -a 2 + -t 10.5762 -s 310 -d 302 -p tcp -e 1000 -i 68 -a 2 - -t 10.5762 -s 110 -d 102 -p tcp -e 1000 -i 68 -a 2 - -t 10.5762 -s 310 -d 302 -p tcp -e 1000 -i 68 -a 2 h -t 10.5762 -s 110 -d 102 -p tcp -e 1000 -i 68 -a 2 h -t 10.5762 -s 310 -d 302 -p tcp -e 1000 -i 68 -a 2 r -t 10.5762 -s 111 -d 110 -p tcp -e 1000 -i 68 -a 2 r -t 10.5762 -s 311 -d 310 -p tcp -e 1000 -i 68 -a 2 r -t 10.5782 -s 110 -d 102 -p tcp -e 1000 -i 68 -a 2 r -t 10.5782 -s 310 -d 302 -p tcp -e 1000 -i 68 -a 2 + -t 10.5813 -s 107 -d 110 -p ack -e 40 -i 79 -a 7 + -t 10.5813 -s 207 -d 210 -p ack -e 40 -i 80 -a 7 + -t 10.5813 -s 307 -d 310 -p ack -e 40 -i 79 -a 7 - -t 10.5813 -s 107 -d 110 -p ack -e 40 -i 79 -a 7 - -t 10.5813 -s 207 -d 210 -p ack -e 40 -i 80 -a 7 - -t 10.5813 -s 307 -d 310 -p ack -e 40 -i 79 -a 7 h -t 10.5813 -s 107 -d 110 -p ack -e 40 -i 79 -a 7 h -t 10.5813 -s 207 -d 210 -p ack -e 40 -i 80 -a 7 h -t 10.5813 -s 307 -d 310 -p ack -e 40 -i 79 -a 7 + -t 10.5823 -s 110 -d 111 -p ack -e 40 -i 79 -a 7 + -t 10.5823 -s 210 -d 211 -p ack -e 40 -i 80 -a 7 + -t 10.5823 -s 310 -d 311 -p ack -e 40 -i 79 -a 7 - -t 10.5823 -s 110 -d 111 -p ack -e 40 -i 79 -a 7 - -t 10.5823 -s 210 -d 211 -p ack -e 40 -i 80 -a 7 - -t 10.5823 -s 310 -d 311 -p ack -e 40 -i 79 -a 7 h -t 10.5823 -s 110 -d 111 -p ack -e 40 -i 79 -a 7 h -t 10.5823 -s 210 -d 211 -p ack -e 40 -i 80 -a 7 h -t 10.5823 -s 310 -d 311 -p ack -e 40 -i 79 -a 7 r -t 10.5823 -s 107 -d 110 -p ack -e 40 -i 79 -a 7 r -t 10.5823 -s 207 -d 210 -p ack -e 40 -i 80 -a 7 r -t 10.5823 -s 307 -d 310 -p ack -e 40 -i 79 -a 7 + -t 10.584 -s 210 -d 202 -p tcp -e 1000 -i 71 -a 2 - -t 10.584 -s 210 -d 202 -p tcp -e 1000 -i 71 -a 2 h -t 10.584 -s 210 -d 202 -p tcp -e 1000 -i 71 -a 2 r -t 10.584 -s 211 -d 210 -p tcp -e 1000 -i 71 -a 2 + -t 10.5858 -s 202 -d 210 -p ack -e 40 -i 81 -a 2 - -t 10.5858 -s 202 -d 210 -p ack -e 40 -i 81 -a 2 h -t 10.5858 -s 202 -d 210 -p ack -e 40 -i 81 -a 2 r -t 10.586 -s 210 -d 202 -p tcp -e 1000 -i 71 -a 2 + -t 10.5862 -s 110 -d 102 -p tcp -e 1000 -i 69 -a 2 + -t 10.5862 -s 310 -d 302 -p tcp -e 1000 -i 69 -a 2 - -t 10.5862 -s 110 -d 102 -p tcp -e 1000 -i 69 -a 2 - -t 10.5862 -s 310 -d 302 -p tcp -e 1000 -i 69 -a 2 h -t 10.5862 -s 110 -d 102 -p tcp -e 1000 -i 69 -a 2 h -t 10.5862 -s 310 -d 302 -p tcp -e 1000 -i 69 -a 2 r -t 10.5862 -s 111 -d 110 -p tcp -e 1000 -i 69 -a 2 r -t 10.5862 -s 311 -d 310 -p tcp -e 1000 -i 69 -a 2 + -t 10.5868 -s 210 -d 211 -p ack -e 40 -i 81 -a 2 - -t 10.5868 -s 210 -d 211 -p ack -e 40 -i 81 -a 2 h -t 10.5868 -s 210 -d 211 -p ack -e 40 -i 81 -a 2 r -t 10.5868 -s 202 -d 210 -p ack -e 40 -i 81 -a 2 + -t 10.588 -s 102 -d 110 -p ack -e 40 -i 80 -a 2 + -t 10.588 -s 302 -d 310 -p ack -e 40 -i 80 -a 2 - -t 10.588 -s 102 -d 110 -p ack -e 40 -i 80 -a 2 - -t 10.588 -s 302 -d 310 -p ack -e 40 -i 80 -a 2 h -t 10.588 -s 102 -d 110 -p ack -e 40 -i 80 -a 2 h -t 10.588 -s 302 -d 310 -p ack -e 40 -i 80 -a 2 r -t 10.5882 -s 110 -d 102 -p tcp -e 1000 -i 69 -a 2 r -t 10.5882 -s 310 -d 302 -p tcp -e 1000 -i 69 -a 2 + -t 10.589 -s 110 -d 111 -p ack -e 40 -i 80 -a 2 + -t 10.589 -s 310 -d 311 -p ack -e 40 -i 80 -a 2 - -t 10.589 -s 110 -d 111 -p ack -e 40 -i 80 -a 2 - -t 10.589 -s 310 -d 311 -p ack -e 40 -i 80 -a 2 h -t 10.589 -s 110 -d 111 -p ack -e 40 -i 80 -a 2 h -t 10.589 -s 310 -d 311 -p ack -e 40 -i 80 -a 2 r -t 10.589 -s 102 -d 110 -p ack -e 40 -i 80 -a 2 r -t 10.589 -s 302 -d 310 -p ack -e 40 -i 80 -a 2 + -t 10.594 -s 210 -d 202 -p tcp -e 1000 -i 72 -a 2 - -t 10.594 -s 210 -d 202 -p tcp -e 1000 -i 72 -a 2 h -t 10.594 -s 210 -d 202 -p tcp -e 1000 -i 72 -a 2 r -t 10.594 -s 211 -d 210 -p tcp -e 1000 -i 72 -a 2 r -t 10.596 -s 210 -d 202 -p tcp -e 1000 -i 72 -a 2 + -t 10.5962 -s 110 -d 102 -p tcp -e 1000 -i 70 -a 2 + -t 10.5962 -s 310 -d 302 -p tcp -e 1000 -i 70 -a 2 - -t 10.5962 -s 110 -d 102 -p tcp -e 1000 -i 70 -a 2 - -t 10.5962 -s 310 -d 302 -p tcp -e 1000 -i 70 -a 2 h -t 10.5962 -s 110 -d 102 -p tcp -e 1000 -i 70 -a 2 h -t 10.5962 -s 310 -d 302 -p tcp -e 1000 -i 70 -a 2 r -t 10.5962 -s 111 -d 110 -p tcp -e 1000 -i 70 -a 2 r -t 10.5962 -s 311 -d 310 -p tcp -e 1000 -i 70 -a 2 r -t 10.5982 -s 110 -d 102 -p tcp -e 1000 -i 70 -a 2 r -t 10.5982 -s 310 -d 302 -p tcp -e 1000 -i 70 -a 2 + -t 10.604 -s 210 -d 202 -p tcp -e 1000 -i 73 -a 2 - -t 10.604 -s 210 -d 202 -p tcp -e 1000 -i 73 -a 2 h -t 10.604 -s 210 -d 202 -p tcp -e 1000 -i 73 -a 2 r -t 10.604 -s 211 -d 210 -p tcp -e 1000 -i 73 -a 2 + -t 10.6058 -s 202 -d 210 -p ack -e 40 -i 82 -a 2 - -t 10.6058 -s 202 -d 210 -p ack -e 40 -i 82 -a 2 h -t 10.6058 -s 202 -d 210 -p ack -e 40 -i 82 -a 2 r -t 10.606 -s 210 -d 202 -p tcp -e 1000 -i 73 -a 2 + -t 10.6066 -s 111 -d 112 -p ack -e 40 -i 71 -a 3 + -t 10.6066 -s 211 -d 212 -p ack -e 40 -i 74 -a 3 + -t 10.6066 -s 311 -d 312 -p ack -e 40 -i 71 -a 3 - -t 10.6066 -s 111 -d 112 -p ack -e 40 -i 71 -a 3 - -t 10.6066 -s 211 -d 212 -p ack -e 40 -i 74 -a 3 - -t 10.6066 -s 311 -d 312 -p ack -e 40 -i 71 -a 3 h -t 10.6066 -s 111 -d 112 -p ack -e 40 -i 71 -a 3 h -t 10.6066 -s 211 -d 212 -p ack -e 40 -i 74 -a 3 h -t 10.6066 -s 311 -d 312 -p ack -e 40 -i 71 -a 3 r -t 10.6066 -s 110 -d 111 -p ack -e 40 -i 71 -a 3 r -t 10.6066 -s 210 -d 211 -p ack -e 40 -i 74 -a 3 r -t 10.6066 -s 310 -d 311 -p ack -e 40 -i 71 -a 3 + -t 10.6068 -s 210 -d 211 -p ack -e 40 -i 82 -a 2 - -t 10.6068 -s 210 -d 211 -p ack -e 40 -i 82 -a 2 h -t 10.6068 -s 210 -d 211 -p ack -e 40 -i 82 -a 2 r -t 10.6068 -s 202 -d 210 -p ack -e 40 -i 82 -a 2 + -t 10.6076 -s 112 -d 111 -p tcp -e 1000 -i 81 -a 3 + -t 10.6076 -s 112 -d 111 -p tcp -e 1000 -i 82 -a 3 + -t 10.6076 -s 112 -d 111 -p tcp -e 1000 -i 83 -a 3 + -t 10.6076 -s 212 -d 211 -p tcp -e 1000 -i 83 -a 3 + -t 10.6076 -s 212 -d 211 -p tcp -e 1000 -i 84 -a 3 + -t 10.6076 -s 212 -d 211 -p tcp -e 1000 -i 85 -a 3 + -t 10.6076 -s 212 -d 211 -p tcp -e 1000 -i 86 -a 3 + -t 10.6076 -s 312 -d 311 -p tcp -e 1000 -i 81 -a 3 + -t 10.6076 -s 312 -d 311 -p tcp -e 1000 -i 82 -a 3 + -t 10.6076 -s 312 -d 311 -p tcp -e 1000 -i 83 -a 3 - -t 10.6076 -s 112 -d 111 -p tcp -e 1000 -i 81 -a 3 - -t 10.6076 -s 212 -d 211 -p tcp -e 1000 -i 83 -a 3 - -t 10.6076 -s 312 -d 311 -p tcp -e 1000 -i 81 -a 3 h -t 10.6076 -s 112 -d 111 -p tcp -e 1000 -i 81 -a 3 h -t 10.6076 -s 212 -d 211 -p tcp -e 1000 -i 83 -a 3 h -t 10.6076 -s 312 -d 311 -p tcp -e 1000 -i 81 -a 3 r -t 10.6076 -s 111 -d 112 -p ack -e 40 -i 71 -a 3 r -t 10.6076 -s 211 -d 212 -p ack -e 40 -i 74 -a 3 r -t 10.6076 -s 311 -d 312 -p ack -e 40 -i 71 -a 3 - -t 10.6084 -s 112 -d 111 -p tcp -e 1000 -i 82 -a 3 - -t 10.6084 -s 212 -d 211 -p tcp -e 1000 -i 84 -a 3 - -t 10.6084 -s 312 -d 311 -p tcp -e 1000 -i 82 -a 3 h -t 10.6084 -s 112 -d 111 -p tcp -e 1000 -i 82 -a 3 h -t 10.6084 -s 212 -d 211 -p tcp -e 1000 -i 84 -a 3 h -t 10.6084 -s 312 -d 311 -p tcp -e 1000 -i 82 -a 3 - -t 10.6092 -s 112 -d 111 -p tcp -e 1000 -i 83 -a 3 - -t 10.6092 -s 212 -d 211 -p tcp -e 1000 -i 85 -a 3 - -t 10.6092 -s 312 -d 311 -p tcp -e 1000 -i 83 -a 3 h -t 10.6092 -s 112 -d 111 -p tcp -e 1000 -i 83 -a 3 h -t 10.6092 -s 212 -d 211 -p tcp -e 1000 -i 85 -a 3 h -t 10.6092 -s 312 -d 311 -p tcp -e 1000 -i 83 -a 3 + -t 10.6094 -s 111 -d 110 -p tcp -e 1000 -i 81 -a 3 + -t 10.6094 -s 211 -d 210 -p tcp -e 1000 -i 83 -a 3 + -t 10.6094 -s 311 -d 310 -p tcp -e 1000 -i 81 -a 3 - -t 10.6094 -s 111 -d 110 -p tcp -e 1000 -i 81 -a 3 - -t 10.6094 -s 211 -d 210 -p tcp -e 1000 -i 83 -a 3 - -t 10.6094 -s 311 -d 310 -p tcp -e 1000 -i 81 -a 3 h -t 10.6094 -s 111 -d 110 -p tcp -e 1000 -i 81 -a 3 h -t 10.6094 -s 211 -d 210 -p tcp -e 1000 -i 83 -a 3 h -t 10.6094 -s 311 -d 310 -p tcp -e 1000 -i 81 -a 3 r -t 10.6096 -s 112 -d 111 -p tcp -e 1000 -i 81 -a 3 r -t 10.6096 -s 212 -d 211 -p tcp -e 1000 -i 83 -a 3 r -t 10.6096 -s 312 -d 311 -p tcp -e 1000 -i 81 -a 3 - -t 10.61 -s 212 -d 211 -p tcp -e 1000 -i 86 -a 3 h -t 10.61 -s 212 -d 211 -p tcp -e 1000 -i 86 -a 3 + -t 10.6102 -s 111 -d 110 -p tcp -e 1000 -i 82 -a 3 + -t 10.6102 -s 211 -d 210 -p tcp -e 1000 -i 84 -a 3 + -t 10.6102 -s 311 -d 310 -p tcp -e 1000 -i 82 -a 3 r -t 10.6104 -s 112 -d 111 -p tcp -e 1000 -i 82 -a 3 r -t 10.6104 -s 212 -d 211 -p tcp -e 1000 -i 84 -a 3 r -t 10.6104 -s 312 -d 311 -p tcp -e 1000 -i 82 -a 3 + -t 10.611 -s 111 -d 110 -p tcp -e 1000 -i 83 -a 3 + -t 10.611 -s 211 -d 210 -p tcp -e 1000 -i 85 -a 3 + -t 10.611 -s 311 -d 310 -p tcp -e 1000 -i 83 -a 3 r -t 10.6112 -s 112 -d 111 -p tcp -e 1000 -i 83 -a 3 r -t 10.6112 -s 212 -d 211 -p tcp -e 1000 -i 85 -a 3 r -t 10.6112 -s 312 -d 311 -p tcp -e 1000 -i 83 -a 3 + -t 10.6118 -s 211 -d 210 -p tcp -e 1000 -i 86 -a 3 r -t 10.612 -s 212 -d 211 -p tcp -e 1000 -i 86 -a 3 - -t 10.6194 -s 111 -d 110 -p tcp -e 1000 -i 82 -a 3 - -t 10.6194 -s 211 -d 210 -p tcp -e 1000 -i 84 -a 3 - -t 10.6194 -s 311 -d 310 -p tcp -e 1000 -i 82 -a 3 h -t 10.6194 -s 111 -d 110 -p tcp -e 1000 -i 82 -a 3 h -t 10.6194 -s 211 -d 210 -p tcp -e 1000 -i 84 -a 3 h -t 10.6194 -s 311 -d 310 -p tcp -e 1000 -i 82 -a 3 + -t 10.623 -s 110 -d 101 -p tcp -e 1000 -i 72 -a 1 + -t 10.623 -s 210 -d 201 -p tcp -e 1000 -i 75 -a 1 + -t 10.623 -s 310 -d 301 -p tcp -e 1000 -i 72 -a 1 - -t 10.623 -s 110 -d 101 -p tcp -e 1000 -i 72 -a 1 - -t 10.623 -s 210 -d 201 -p tcp -e 1000 -i 75 -a 1 - -t 10.623 -s 310 -d 301 -p tcp -e 1000 -i 72 -a 1 h -t 10.623 -s 110 -d 101 -p tcp -e 1000 -i 72 -a 1 h -t 10.623 -s 210 -d 201 -p tcp -e 1000 -i 75 -a 1 h -t 10.623 -s 310 -d 301 -p tcp -e 1000 -i 72 -a 1 r -t 10.623 -s 111 -d 110 -p tcp -e 1000 -i 72 -a 1 r -t 10.623 -s 211 -d 210 -p tcp -e 1000 -i 75 -a 1 r -t 10.623 -s 311 -d 310 -p tcp -e 1000 -i 72 -a 1 r -t 10.625 -s 110 -d 101 -p tcp -e 1000 -i 72 -a 1 r -t 10.625 -s 210 -d 201 -p tcp -e 1000 -i 75 -a 1 r -t 10.625 -s 310 -d 301 -p tcp -e 1000 -i 72 -a 1 - -t 10.6294 -s 111 -d 110 -p tcp -e 1000 -i 83 -a 3 - -t 10.6294 -s 211 -d 210 -p tcp -e 1000 -i 85 -a 3 - -t 10.6294 -s 311 -d 310 -p tcp -e 1000 -i 83 -a 3 h -t 10.6294 -s 111 -d 110 -p tcp -e 1000 -i 83 -a 3 h -t 10.6294 -s 211 -d 210 -p tcp -e 1000 -i 85 -a 3 h -t 10.6294 -s 311 -d 310 -p tcp -e 1000 -i 83 -a 3 - -t 10.6394 -s 211 -d 210 -p tcp -e 1000 -i 86 -a 3 h -t 10.6394 -s 211 -d 210 -p tcp -e 1000 -i 86 -a 3 + -t 10.6511 -s 111 -d 112 -p ack -e 40 -i 76 -a 9 + -t 10.6511 -s 311 -d 312 -p ack -e 40 -i 76 -a 9 - -t 10.6511 -s 111 -d 112 -p ack -e 40 -i 76 -a 9 - -t 10.6511 -s 311 -d 312 -p ack -e 40 -i 76 -a 9 h -t 10.6511 -s 111 -d 112 -p ack -e 40 -i 76 -a 9 h -t 10.6511 -s 311 -d 312 -p ack -e 40 -i 76 -a 9 r -t 10.6511 -s 110 -d 111 -p ack -e 40 -i 76 -a 9 r -t 10.6511 -s 310 -d 311 -p ack -e 40 -i 76 -a 9 r -t 10.6521 -s 111 -d 112 -p ack -e 40 -i 76 -a 9 r -t 10.6521 -s 311 -d 312 -p ack -e 40 -i 76 -a 9 + -t 10.6522 -s 112 -d 111 -p tcp -e 1000 -i 84 -a 9 + -t 10.6522 -s 312 -d 311 -p tcp -e 1000 -i 84 -a 9 - -t 10.6522 -s 112 -d 111 -p tcp -e 1000 -i 84 -a 9 - -t 10.6522 -s 312 -d 311 -p tcp -e 1000 -i 84 -a 9 h -t 10.6522 -s 112 -d 111 -p tcp -e 1000 -i 84 -a 9 h -t 10.6522 -s 312 -d 311 -p tcp -e 1000 -i 84 -a 9 + -t 10.654 -s 110 -d 109 -p tcp -e 1000 -i 73 -a 9 + -t 10.654 -s 111 -d 110 -p tcp -e 1000 -i 84 -a 9 + -t 10.654 -s 310 -d 309 -p tcp -e 1000 -i 73 -a 9 + -t 10.654 -s 311 -d 310 -p tcp -e 1000 -i 84 -a 9 - -t 10.654 -s 110 -d 109 -p tcp -e 1000 -i 73 -a 9 - -t 10.654 -s 111 -d 110 -p tcp -e 1000 -i 84 -a 9 - -t 10.654 -s 310 -d 309 -p tcp -e 1000 -i 73 -a 9 - -t 10.654 -s 311 -d 310 -p tcp -e 1000 -i 84 -a 9 h -t 10.654 -s 110 -d 109 -p tcp -e 1000 -i 73 -a 9 h -t 10.654 -s 111 -d 110 -p tcp -e 1000 -i 84 -a 9 h -t 10.654 -s 310 -d 309 -p tcp -e 1000 -i 73 -a 9 h -t 10.654 -s 311 -d 310 -p tcp -e 1000 -i 84 -a 9 r -t 10.654 -s 111 -d 110 -p tcp -e 1000 -i 73 -a 9 r -t 10.654 -s 311 -d 310 -p tcp -e 1000 -i 73 -a 9 r -t 10.6542 -s 112 -d 111 -p tcp -e 1000 -i 84 -a 9 r -t 10.6542 -s 312 -d 311 -p tcp -e 1000 -i 84 -a 9 + -t 10.6544 -s 210 -d 209 -p tcp -e 1000 -i 76 -a 9 - -t 10.6544 -s 210 -d 209 -p tcp -e 1000 -i 76 -a 9 h -t 10.6544 -s 210 -d 209 -p tcp -e 1000 -i 76 -a 9 r -t 10.6544 -s 211 -d 210 -p tcp -e 1000 -i 76 -a 9 r -t 10.656 -s 110 -d 109 -p tcp -e 1000 -i 73 -a 9 r -t 10.656 -s 310 -d 309 -p tcp -e 1000 -i 73 -a 9 r -t 10.6564 -s 210 -d 209 -p tcp -e 1000 -i 76 -a 9 + -t 10.6611 -s 111 -d 112 -p ack -e 40 -i 77 -a 4 + -t 10.6611 -s 311 -d 312 -p ack -e 40 -i 77 -a 4 - -t 10.6611 -s 111 -d 112 -p ack -e 40 -i 77 -a 4 - -t 10.6611 -s 311 -d 312 -p ack -e 40 -i 77 -a 4 h -t 10.6611 -s 111 -d 112 -p ack -e 40 -i 77 -a 4 h -t 10.6611 -s 311 -d 312 -p ack -e 40 -i 77 -a 4 r -t 10.6611 -s 110 -d 111 -p ack -e 40 -i 77 -a 4 r -t 10.6611 -s 310 -d 311 -p ack -e 40 -i 77 -a 4 r -t 10.6621 -s 111 -d 112 -p ack -e 40 -i 77 -a 4 r -t 10.6621 -s 311 -d 312 -p ack -e 40 -i 77 -a 4 + -t 10.664 -s 110 -d 109 -p tcp -e 1000 -i 74 -a 9 + -t 10.664 -s 310 -d 309 -p tcp -e 1000 -i 74 -a 9 - -t 10.664 -s 110 -d 109 -p tcp -e 1000 -i 74 -a 9 - -t 10.664 -s 310 -d 309 -p tcp -e 1000 -i 74 -a 9 h -t 10.664 -s 110 -d 109 -p tcp -e 1000 -i 74 -a 9 h -t 10.664 -s 310 -d 309 -p tcp -e 1000 -i 74 -a 9 r -t 10.664 -s 111 -d 110 -p tcp -e 1000 -i 74 -a 9 r -t 10.664 -s 311 -d 310 -p tcp -e 1000 -i 74 -a 9 + -t 10.6644 -s 210 -d 209 -p tcp -e 1000 -i 77 -a 9 - -t 10.6644 -s 210 -d 209 -p tcp -e 1000 -i 77 -a 9 h -t 10.6644 -s 210 -d 209 -p tcp -e 1000 -i 77 -a 9 r -t 10.6644 -s 211 -d 210 -p tcp -e 1000 -i 77 -a 9 + -t 10.6658 -s 109 -d 110 -p ack -e 40 -i 85 -a 9 + -t 10.6658 -s 309 -d 310 -p ack -e 40 -i 85 -a 9 - -t 10.6658 -s 109 -d 110 -p ack -e 40 -i 85 -a 9 - -t 10.6658 -s 309 -d 310 -p ack -e 40 -i 85 -a 9 h -t 10.6658 -s 109 -d 110 -p ack -e 40 -i 85 -a 9 h -t 10.6658 -s 309 -d 310 -p ack -e 40 -i 85 -a 9 r -t 10.666 -s 110 -d 109 -p tcp -e 1000 -i 74 -a 9 r -t 10.666 -s 310 -d 309 -p tcp -e 1000 -i 74 -a 9 + -t 10.6662 -s 209 -d 210 -p ack -e 40 -i 87 -a 9 - -t 10.6662 -s 209 -d 210 -p ack -e 40 -i 87 -a 9 h -t 10.6662 -s 209 -d 210 -p ack -e 40 -i 87 -a 9 r -t 10.6664 -s 210 -d 209 -p tcp -e 1000 -i 77 -a 9 + -t 10.6668 -s 110 -d 111 -p ack -e 40 -i 85 -a 9 + -t 10.6668 -s 310 -d 311 -p ack -e 40 -i 85 -a 9 - -t 10.6668 -s 110 -d 111 -p ack -e 40 -i 85 -a 9 - -t 10.6668 -s 310 -d 311 -p ack -e 40 -i 85 -a 9 h -t 10.6668 -s 110 -d 111 -p ack -e 40 -i 85 -a 9 h -t 10.6668 -s 310 -d 311 -p ack -e 40 -i 85 -a 9 r -t 10.6668 -s 109 -d 110 -p ack -e 40 -i 85 -a 9 r -t 10.6668 -s 309 -d 310 -p ack -e 40 -i 85 -a 9 + -t 10.6672 -s 210 -d 211 -p ack -e 40 -i 87 -a 9 - -t 10.6672 -s 210 -d 211 -p ack -e 40 -i 87 -a 9 h -t 10.6672 -s 210 -d 211 -p ack -e 40 -i 87 -a 9 r -t 10.6672 -s 209 -d 210 -p ack -e 40 -i 87 -a 9 + -t 10.6727 -s 111 -d 112 -p ack -e 40 -i 78 -a 6 + -t 10.6727 -s 211 -d 212 -p ack -e 40 -i 79 -a 6 + -t 10.6727 -s 311 -d 312 -p ack -e 40 -i 78 -a 6 - -t 10.6727 -s 111 -d 112 -p ack -e 40 -i 78 -a 6 - -t 10.6727 -s 211 -d 212 -p ack -e 40 -i 79 -a 6 - -t 10.6727 -s 311 -d 312 -p ack -e 40 -i 78 -a 6 h -t 10.6727 -s 111 -d 112 -p ack -e 40 -i 78 -a 6 h -t 10.6727 -s 211 -d 212 -p ack -e 40 -i 79 -a 6 h -t 10.6727 -s 311 -d 312 -p ack -e 40 -i 78 -a 6 r -t 10.6727 -s 110 -d 111 -p ack -e 40 -i 78 -a 6 r -t 10.6727 -s 210 -d 211 -p ack -e 40 -i 79 -a 6 r -t 10.6727 -s 310 -d 311 -p ack -e 40 -i 78 -a 6 r -t 10.6737 -s 111 -d 112 -p ack -e 40 -i 78 -a 6 r -t 10.6737 -s 211 -d 212 -p ack -e 40 -i 79 -a 6 r -t 10.6737 -s 311 -d 312 -p ack -e 40 -i 78 -a 6 + -t 10.6738 -s 112 -d 111 -p tcp -e 1000 -i 86 -a 6 + -t 10.6738 -s 112 -d 111 -p tcp -e 1000 -i 87 -a 6 + -t 10.6738 -s 212 -d 211 -p tcp -e 1000 -i 88 -a 6 + -t 10.6738 -s 212 -d 211 -p tcp -e 1000 -i 89 -a 6 + -t 10.6738 -s 312 -d 311 -p tcp -e 1000 -i 86 -a 6 + -t 10.6738 -s 312 -d 311 -p tcp -e 1000 -i 87 -a 6 - -t 10.6738 -s 112 -d 111 -p tcp -e 1000 -i 86 -a 6 - -t 10.6738 -s 212 -d 211 -p tcp -e 1000 -i 88 -a 6 - -t 10.6738 -s 312 -d 311 -p tcp -e 1000 -i 86 -a 6 h -t 10.6738 -s 112 -d 111 -p tcp -e 1000 -i 86 -a 6 h -t 10.6738 -s 212 -d 211 -p tcp -e 1000 -i 88 -a 6 h -t 10.6738 -s 312 -d 311 -p tcp -e 1000 -i 86 -a 6 + -t 10.674 -s 110 -d 109 -p tcp -e 1000 -i 75 -a 9 + -t 10.674 -s 310 -d 309 -p tcp -e 1000 -i 75 -a 9 - -t 10.674 -s 110 -d 109 -p tcp -e 1000 -i 75 -a 9 - -t 10.674 -s 310 -d 309 -p tcp -e 1000 -i 75 -a 9 h -t 10.674 -s 110 -d 109 -p tcp -e 1000 -i 75 -a 9 h -t 10.674 -s 310 -d 309 -p tcp -e 1000 -i 75 -a 9 r -t 10.674 -s 111 -d 110 -p tcp -e 1000 -i 75 -a 9 r -t 10.674 -s 311 -d 310 -p tcp -e 1000 -i 75 -a 9 + -t 10.6744 -s 210 -d 209 -p tcp -e 1000 -i 78 -a 9 - -t 10.6744 -s 210 -d 209 -p tcp -e 1000 -i 78 -a 9 h -t 10.6744 -s 210 -d 209 -p tcp -e 1000 -i 78 -a 9 r -t 10.6744 -s 211 -d 210 -p tcp -e 1000 -i 78 -a 9 - -t 10.6746 -s 112 -d 111 -p tcp -e 1000 -i 87 -a 6 - -t 10.6746 -s 212 -d 211 -p tcp -e 1000 -i 89 -a 6 - -t 10.6746 -s 312 -d 311 -p tcp -e 1000 -i 87 -a 6 h -t 10.6746 -s 112 -d 111 -p tcp -e 1000 -i 87 -a 6 h -t 10.6746 -s 212 -d 211 -p tcp -e 1000 -i 89 -a 6 h -t 10.6746 -s 312 -d 311 -p tcp -e 1000 -i 87 -a 6 + -t 10.6756 -s 111 -d 110 -p tcp -e 1000 -i 86 -a 6 + -t 10.6756 -s 211 -d 210 -p tcp -e 1000 -i 88 -a 6 + -t 10.6756 -s 311 -d 310 -p tcp -e 1000 -i 86 -a 6 - -t 10.6756 -s 111 -d 110 -p tcp -e 1000 -i 86 -a 6 - -t 10.6756 -s 211 -d 210 -p tcp -e 1000 -i 88 -a 6 - -t 10.6756 -s 311 -d 310 -p tcp -e 1000 -i 86 -a 6 h -t 10.6756 -s 111 -d 110 -p tcp -e 1000 -i 86 -a 6 h -t 10.6756 -s 211 -d 210 -p tcp -e 1000 -i 88 -a 6 h -t 10.6756 -s 311 -d 310 -p tcp -e 1000 -i 86 -a 6 r -t 10.6758 -s 112 -d 111 -p tcp -e 1000 -i 86 -a 6 r -t 10.6758 -s 212 -d 211 -p tcp -e 1000 -i 88 -a 6 r -t 10.6758 -s 312 -d 311 -p tcp -e 1000 -i 86 -a 6 r -t 10.676 -s 110 -d 109 -p tcp -e 1000 -i 75 -a 9 r -t 10.676 -s 310 -d 309 -p tcp -e 1000 -i 75 -a 9 + -t 10.6764 -s 111 -d 110 -p tcp -e 1000 -i 87 -a 6 + -t 10.6764 -s 211 -d 210 -p tcp -e 1000 -i 89 -a 6 + -t 10.6764 -s 311 -d 310 -p tcp -e 1000 -i 87 -a 6 r -t 10.6764 -s 210 -d 209 -p tcp -e 1000 -i 78 -a 9 r -t 10.6766 -s 112 -d 111 -p tcp -e 1000 -i 87 -a 6 r -t 10.6766 -s 212 -d 211 -p tcp -e 1000 -i 89 -a 6 r -t 10.6766 -s 312 -d 311 -p tcp -e 1000 -i 87 -a 6 + -t 10.6827 -s 111 -d 112 -p ack -e 40 -i 79 -a 7 + -t 10.6827 -s 211 -d 212 -p ack -e 40 -i 80 -a 7 + -t 10.6827 -s 311 -d 312 -p ack -e 40 -i 79 -a 7 - -t 10.6827 -s 111 -d 112 -p ack -e 40 -i 79 -a 7 - -t 10.6827 -s 211 -d 212 -p ack -e 40 -i 80 -a 7 - -t 10.6827 -s 311 -d 312 -p ack -e 40 -i 79 -a 7 h -t 10.6827 -s 111 -d 112 -p ack -e 40 -i 79 -a 7 h -t 10.6827 -s 211 -d 212 -p ack -e 40 -i 80 -a 7 h -t 10.6827 -s 311 -d 312 -p ack -e 40 -i 79 -a 7 r -t 10.6827 -s 110 -d 111 -p ack -e 40 -i 79 -a 7 r -t 10.6827 -s 210 -d 211 -p ack -e 40 -i 80 -a 7 r -t 10.6827 -s 310 -d 311 -p ack -e 40 -i 79 -a 7 r -t 10.6837 -s 111 -d 112 -p ack -e 40 -i 79 -a 7 r -t 10.6837 -s 211 -d 212 -p ack -e 40 -i 80 -a 7 r -t 10.6837 -s 311 -d 312 -p ack -e 40 -i 79 -a 7 + -t 10.6838 -s 112 -d 111 -p tcp -e 1000 -i 88 -a 7 + -t 10.6838 -s 112 -d 111 -p tcp -e 1000 -i 89 -a 7 + -t 10.6838 -s 212 -d 211 -p tcp -e 1000 -i 90 -a 7 + -t 10.6838 -s 212 -d 211 -p tcp -e 1000 -i 91 -a 7 + -t 10.6838 -s 312 -d 311 -p tcp -e 1000 -i 88 -a 7 + -t 10.6838 -s 312 -d 311 -p tcp -e 1000 -i 89 -a 7 - -t 10.6838 -s 112 -d 111 -p tcp -e 1000 -i 88 -a 7 - -t 10.6838 -s 212 -d 211 -p tcp -e 1000 -i 90 -a 7 - -t 10.6838 -s 312 -d 311 -p tcp -e 1000 -i 88 -a 7 h -t 10.6838 -s 112 -d 111 -p tcp -e 1000 -i 88 -a 7 h -t 10.6838 -s 212 -d 211 -p tcp -e 1000 -i 90 -a 7 h -t 10.6838 -s 312 -d 311 -p tcp -e 1000 -i 88 -a 7 - -t 10.6846 -s 112 -d 111 -p tcp -e 1000 -i 89 -a 7 - -t 10.6846 -s 212 -d 211 -p tcp -e 1000 -i 91 -a 7 - -t 10.6846 -s 312 -d 311 -p tcp -e 1000 -i 89 -a 7 h -t 10.6846 -s 112 -d 111 -p tcp -e 1000 -i 89 -a 7 h -t 10.6846 -s 212 -d 211 -p tcp -e 1000 -i 91 -a 7 h -t 10.6846 -s 312 -d 311 -p tcp -e 1000 -i 89 -a 7 + -t 10.6856 -s 111 -d 110 -p tcp -e 1000 -i 88 -a 7 + -t 10.6856 -s 211 -d 210 -p tcp -e 1000 -i 90 -a 7 + -t 10.6856 -s 311 -d 310 -p tcp -e 1000 -i 88 -a 7 - -t 10.6856 -s 111 -d 110 -p tcp -e 1000 -i 87 -a 6 - -t 10.6856 -s 211 -d 210 -p tcp -e 1000 -i 89 -a 6 - -t 10.6856 -s 311 -d 310 -p tcp -e 1000 -i 87 -a 6 h -t 10.6856 -s 111 -d 110 -p tcp -e 1000 -i 87 -a 6 h -t 10.6856 -s 211 -d 210 -p tcp -e 1000 -i 89 -a 6 h -t 10.6856 -s 311 -d 310 -p tcp -e 1000 -i 87 -a 6 r -t 10.6858 -s 112 -d 111 -p tcp -e 1000 -i 88 -a 7 r -t 10.6858 -s 212 -d 211 -p tcp -e 1000 -i 90 -a 7 r -t 10.6858 -s 312 -d 311 -p tcp -e 1000 -i 88 -a 7 + -t 10.6864 -s 111 -d 110 -p tcp -e 1000 -i 89 -a 7 + -t 10.6864 -s 211 -d 210 -p tcp -e 1000 -i 91 -a 7 + -t 10.6864 -s 311 -d 310 -p tcp -e 1000 -i 89 -a 7 r -t 10.6866 -s 112 -d 111 -p tcp -e 1000 -i 89 -a 7 r -t 10.6866 -s 212 -d 211 -p tcp -e 1000 -i 91 -a 7 r -t 10.6866 -s 312 -d 311 -p tcp -e 1000 -i 89 -a 7 + -t 10.6872 -s 211 -d 212 -p ack -e 40 -i 81 -a 2 - -t 10.6872 -s 211 -d 212 -p ack -e 40 -i 81 -a 2 h -t 10.6872 -s 211 -d 212 -p ack -e 40 -i 81 -a 2 r -t 10.6872 -s 210 -d 211 -p ack -e 40 -i 81 -a 2 + -t 10.6882 -s 212 -d 211 -p tcp -e 1000 -i 92 -a 2 + -t 10.6882 -s 212 -d 211 -p tcp -e 1000 -i 93 -a 2 + -t 10.6882 -s 212 -d 211 -p tcp -e 1000 -i 94 -a 2 - -t 10.6882 -s 212 -d 211 -p tcp -e 1000 -i 92 -a 2 h -t 10.6882 -s 212 -d 211 -p tcp -e 1000 -i 92 -a 2 r -t 10.6882 -s 211 -d 212 -p ack -e 40 -i 81 -a 2 - -t 10.689 -s 212 -d 211 -p tcp -e 1000 -i 93 -a 2 h -t 10.689 -s 212 -d 211 -p tcp -e 1000 -i 93 -a 2 + -t 10.6894 -s 111 -d 112 -p ack -e 40 -i 80 -a 2 + -t 10.6894 -s 311 -d 312 -p ack -e 40 -i 80 -a 2 - -t 10.6894 -s 111 -d 112 -p ack -e 40 -i 80 -a 2 - -t 10.6894 -s 311 -d 312 -p ack -e 40 -i 80 -a 2 h -t 10.6894 -s 111 -d 112 -p ack -e 40 -i 80 -a 2 h -t 10.6894 -s 311 -d 312 -p ack -e 40 -i 80 -a 2 r -t 10.6894 -s 110 -d 111 -p ack -e 40 -i 80 -a 2 r -t 10.6894 -s 310 -d 311 -p ack -e 40 -i 80 -a 2 - -t 10.6898 -s 212 -d 211 -p tcp -e 1000 -i 94 -a 2 h -t 10.6898 -s 212 -d 211 -p tcp -e 1000 -i 94 -a 2 + -t 10.69 -s 211 -d 210 -p tcp -e 1000 -i 92 -a 2 r -t 10.6902 -s 212 -d 211 -p tcp -e 1000 -i 92 -a 2 r -t 10.6904 -s 111 -d 112 -p ack -e 40 -i 80 -a 2 r -t 10.6904 -s 311 -d 312 -p ack -e 40 -i 80 -a 2 + -t 10.6905 -s 112 -d 111 -p tcp -e 1000 -i 90 -a 2 + -t 10.6905 -s 112 -d 111 -p tcp -e 1000 -i 91 -a 2 + -t 10.6905 -s 112 -d 111 -p tcp -e 1000 -i 92 -a 2 + -t 10.6905 -s 312 -d 311 -p tcp -e 1000 -i 90 -a 2 + -t 10.6905 -s 312 -d 311 -p tcp -e 1000 -i 91 -a 2 + -t 10.6905 -s 312 -d 311 -p tcp -e 1000 -i 92 -a 2 - -t 10.6905 -s 112 -d 111 -p tcp -e 1000 -i 90 -a 2 - -t 10.6905 -s 312 -d 311 -p tcp -e 1000 -i 90 -a 2 h -t 10.6905 -s 112 -d 111 -p tcp -e 1000 -i 90 -a 2 h -t 10.6905 -s 312 -d 311 -p tcp -e 1000 -i 90 -a 2 + -t 10.6908 -s 211 -d 210 -p tcp -e 1000 -i 93 -a 2 r -t 10.691 -s 212 -d 211 -p tcp -e 1000 -i 93 -a 2 - -t 10.6913 -s 112 -d 111 -p tcp -e 1000 -i 91 -a 2 - -t 10.6913 -s 312 -d 311 -p tcp -e 1000 -i 91 -a 2 h -t 10.6913 -s 112 -d 111 -p tcp -e 1000 -i 91 -a 2 h -t 10.6913 -s 312 -d 311 -p tcp -e 1000 -i 91 -a 2 + -t 10.6916 -s 211 -d 210 -p tcp -e 1000 -i 94 -a 2 r -t 10.6918 -s 212 -d 211 -p tcp -e 1000 -i 94 -a 2 - -t 10.6921 -s 112 -d 111 -p tcp -e 1000 -i 92 -a 2 - -t 10.6921 -s 312 -d 311 -p tcp -e 1000 -i 92 -a 2 h -t 10.6921 -s 112 -d 111 -p tcp -e 1000 -i 92 -a 2 h -t 10.6921 -s 312 -d 311 -p tcp -e 1000 -i 92 -a 2 + -t 10.6923 -s 111 -d 110 -p tcp -e 1000 -i 90 -a 2 + -t 10.6923 -s 311 -d 310 -p tcp -e 1000 -i 90 -a 2 r -t 10.6925 -s 112 -d 111 -p tcp -e 1000 -i 90 -a 2 r -t 10.6925 -s 312 -d 311 -p tcp -e 1000 -i 90 -a 2 + -t 10.6931 -s 111 -d 110 -p tcp -e 1000 -i 91 -a 2 + -t 10.6931 -s 311 -d 310 -p tcp -e 1000 -i 91 -a 2 r -t 10.6933 -s 112 -d 111 -p tcp -e 1000 -i 91 -a 2 r -t 10.6933 -s 312 -d 311 -p tcp -e 1000 -i 91 -a 2 + -t 10.6939 -s 111 -d 110 -p tcp -e 1000 -i 92 -a 2 + -t 10.6939 -s 311 -d 310 -p tcp -e 1000 -i 92 -a 2 r -t 10.6941 -s 112 -d 111 -p tcp -e 1000 -i 92 -a 2 r -t 10.6941 -s 312 -d 311 -p tcp -e 1000 -i 92 -a 2 - -t 10.6956 -s 111 -d 110 -p tcp -e 1000 -i 88 -a 7 - -t 10.6956 -s 211 -d 210 -p tcp -e 1000 -i 90 -a 7 - -t 10.6956 -s 311 -d 310 -p tcp -e 1000 -i 88 -a 7 h -t 10.6956 -s 111 -d 110 -p tcp -e 1000 -i 88 -a 7 h -t 10.6956 -s 211 -d 210 -p tcp -e 1000 -i 90 -a 7 h -t 10.6956 -s 311 -d 310 -p tcp -e 1000 -i 88 -a 7 + -t 10.698 -s 102 -d 110 -p ack -e 40 -i 93 -a 2 + -t 10.698 -s 302 -d 310 -p ack -e 40 -i 93 -a 2 - -t 10.698 -s 102 -d 110 -p ack -e 40 -i 93 -a 2 - -t 10.698 -s 302 -d 310 -p ack -e 40 -i 93 -a 2 h -t 10.698 -s 102 -d 110 -p ack -e 40 -i 93 -a 2 h -t 10.698 -s 302 -d 310 -p ack -e 40 -i 93 -a 2 + -t 10.699 -s 110 -d 111 -p ack -e 40 -i 93 -a 2 + -t 10.699 -s 310 -d 311 -p ack -e 40 -i 93 -a 2 - -t 10.699 -s 110 -d 111 -p ack -e 40 -i 93 -a 2 - -t 10.699 -s 310 -d 311 -p ack -e 40 -i 93 -a 2 h -t 10.699 -s 110 -d 111 -p ack -e 40 -i 93 -a 2 h -t 10.699 -s 310 -d 311 -p ack -e 40 -i 93 -a 2 r -t 10.699 -s 102 -d 110 -p ack -e 40 -i 93 -a 2 r -t 10.699 -s 302 -d 310 -p ack -e 40 -i 93 -a 2 - -t 10.7056 -s 111 -d 110 -p tcp -e 1000 -i 89 -a 7 - -t 10.7056 -s 211 -d 210 -p tcp -e 1000 -i 91 -a 7 - -t 10.7056 -s 311 -d 310 -p tcp -e 1000 -i 89 -a 7 h -t 10.7056 -s 111 -d 110 -p tcp -e 1000 -i 89 -a 7 h -t 10.7056 -s 211 -d 210 -p tcp -e 1000 -i 91 -a 7 h -t 10.7056 -s 311 -d 310 -p tcp -e 1000 -i 89 -a 7 + -t 10.7072 -s 211 -d 212 -p ack -e 40 -i 82 -a 2 - -t 10.7072 -s 211 -d 212 -p ack -e 40 -i 82 -a 2 h -t 10.7072 -s 211 -d 212 -p ack -e 40 -i 82 -a 2 r -t 10.7072 -s 210 -d 211 -p ack -e 40 -i 82 -a 2 r -t 10.7082 -s 211 -d 212 -p ack -e 40 -i 82 -a 2 - -t 10.7156 -s 111 -d 110 -p tcp -e 1000 -i 90 -a 2 - -t 10.7156 -s 211 -d 210 -p tcp -e 1000 -i 92 -a 2 - -t 10.7156 -s 311 -d 310 -p tcp -e 1000 -i 90 -a 2 h -t 10.7156 -s 111 -d 110 -p tcp -e 1000 -i 90 -a 2 h -t 10.7156 -s 211 -d 210 -p tcp -e 1000 -i 92 -a 2 h -t 10.7156 -s 311 -d 310 -p tcp -e 1000 -i 90 -a 2 + -t 10.7194 -s 110 -d 103 -p tcp -e 1000 -i 81 -a 3 + -t 10.7194 -s 210 -d 203 -p tcp -e 1000 -i 83 -a 3 + -t 10.7194 -s 310 -d 303 -p tcp -e 1000 -i 81 -a 3 - -t 10.7194 -s 110 -d 103 -p tcp -e 1000 -i 81 -a 3 - -t 10.7194 -s 210 -d 203 -p tcp -e 1000 -i 83 -a 3 - -t 10.7194 -s 310 -d 303 -p tcp -e 1000 -i 81 -a 3 h -t 10.7194 -s 110 -d 103 -p tcp -e 1000 -i 81 -a 3 h -t 10.7194 -s 210 -d 203 -p tcp -e 1000 -i 83 -a 3 h -t 10.7194 -s 310 -d 303 -p tcp -e 1000 -i 81 -a 3 r -t 10.7194 -s 111 -d 110 -p tcp -e 1000 -i 81 -a 3 r -t 10.7194 -s 211 -d 210 -p tcp -e 1000 -i 83 -a 3 r -t 10.7194 -s 311 -d 310 -p tcp -e 1000 -i 81 -a 3 r -t 10.7214 -s 110 -d 103 -p tcp -e 1000 -i 81 -a 3 r -t 10.7214 -s 210 -d 203 -p tcp -e 1000 -i 83 -a 3 r -t 10.7214 -s 310 -d 303 -p tcp -e 1000 -i 81 -a 3 + -t 10.7248 -s 101 -d 110 -p ack -e 40 -i 94 -a 1 + -t 10.7248 -s 201 -d 210 -p ack -e 40 -i 95 -a 1 + -t 10.7248 -s 301 -d 310 -p ack -e 40 -i 94 -a 1 - -t 10.7248 -s 101 -d 110 -p ack -e 40 -i 94 -a 1 - -t 10.7248 -s 201 -d 210 -p ack -e 40 -i 95 -a 1 - -t 10.7248 -s 301 -d 310 -p ack -e 40 -i 94 -a 1 h -t 10.7248 -s 101 -d 110 -p ack -e 40 -i 94 -a 1 h -t 10.7248 -s 201 -d 210 -p ack -e 40 -i 95 -a 1 h -t 10.7248 -s 301 -d 310 -p ack -e 40 -i 94 -a 1 - -t 10.7256 -s 111 -d 110 -p tcp -e 1000 -i 91 -a 2 - -t 10.7256 -s 211 -d 210 -p tcp -e 1000 -i 93 -a 2 - -t 10.7256 -s 311 -d 310 -p tcp -e 1000 -i 91 -a 2 h -t 10.7256 -s 111 -d 110 -p tcp -e 1000 -i 91 -a 2 h -t 10.7256 -s 211 -d 210 -p tcp -e 1000 -i 93 -a 2 h -t 10.7256 -s 311 -d 310 -p tcp -e 1000 -i 91 -a 2 + -t 10.7258 -s 110 -d 111 -p ack -e 40 -i 94 -a 1 + -t 10.7258 -s 210 -d 211 -p ack -e 40 -i 95 -a 1 + -t 10.7258 -s 310 -d 311 -p ack -e 40 -i 94 -a 1 - -t 10.7258 -s 110 -d 111 -p ack -e 40 -i 94 -a 1 - -t 10.7258 -s 210 -d 211 -p ack -e 40 -i 95 -a 1 - -t 10.7258 -s 310 -d 311 -p ack -e 40 -i 94 -a 1 h -t 10.7258 -s 110 -d 111 -p ack -e 40 -i 94 -a 1 h -t 10.7258 -s 210 -d 211 -p ack -e 40 -i 95 -a 1 h -t 10.7258 -s 310 -d 311 -p ack -e 40 -i 94 -a 1 r -t 10.7258 -s 101 -d 110 -p ack -e 40 -i 94 -a 1 r -t 10.7258 -s 201 -d 210 -p ack -e 40 -i 95 -a 1 r -t 10.7258 -s 301 -d 310 -p ack -e 40 -i 94 -a 1 + -t 10.7294 -s 110 -d 103 -p tcp -e 1000 -i 82 -a 3 + -t 10.7294 -s 210 -d 203 -p tcp -e 1000 -i 84 -a 3 + -t 10.7294 -s 310 -d 303 -p tcp -e 1000 -i 82 -a 3 - -t 10.7294 -s 110 -d 103 -p tcp -e 1000 -i 82 -a 3 - -t 10.7294 -s 210 -d 203 -p tcp -e 1000 -i 84 -a 3 - -t 10.7294 -s 310 -d 303 -p tcp -e 1000 -i 82 -a 3 h -t 10.7294 -s 110 -d 103 -p tcp -e 1000 -i 82 -a 3 h -t 10.7294 -s 210 -d 203 -p tcp -e 1000 -i 84 -a 3 h -t 10.7294 -s 310 -d 303 -p tcp -e 1000 -i 82 -a 3 r -t 10.7294 -s 111 -d 110 -p tcp -e 1000 -i 82 -a 3 r -t 10.7294 -s 211 -d 210 -p tcp -e 1000 -i 84 -a 3 r -t 10.7294 -s 311 -d 310 -p tcp -e 1000 -i 82 -a 3 + -t 10.7312 -s 103 -d 110 -p ack -e 40 -i 95 -a 3 + -t 10.7312 -s 203 -d 210 -p ack -e 40 -i 96 -a 3 + -t 10.7312 -s 303 -d 310 -p ack -e 40 -i 95 -a 3 - -t 10.7312 -s 103 -d 110 -p ack -e 40 -i 95 -a 3 - -t 10.7312 -s 203 -d 210 -p ack -e 40 -i 96 -a 3 - -t 10.7312 -s 303 -d 310 -p ack -e 40 -i 95 -a 3 h -t 10.7312 -s 103 -d 110 -p ack -e 40 -i 95 -a 3 h -t 10.7312 -s 203 -d 210 -p ack -e 40 -i 96 -a 3 h -t 10.7312 -s 303 -d 310 -p ack -e 40 -i 95 -a 3 r -t 10.7314 -s 110 -d 103 -p tcp -e 1000 -i 82 -a 3 r -t 10.7314 -s 210 -d 203 -p tcp -e 1000 -i 84 -a 3 r -t 10.7314 -s 310 -d 303 -p tcp -e 1000 -i 82 -a 3 r -t 10.7322 -s 103 -d 110 -p ack -e 40 -i 95 -a 3 r -t 10.7322 -s 203 -d 210 -p ack -e 40 -i 96 -a 3 r -t 10.7322 -s 303 -d 310 -p ack -e 40 -i 95 -a 3 + -t 10.7323 -s 110 -d 111 -p ack -e 40 -i 95 -a 3 + -t 10.7323 -s 210 -d 211 -p ack -e 40 -i 96 -a 3 + -t 10.7323 -s 310 -d 311 -p ack -e 40 -i 95 -a 3 - -t 10.7323 -s 110 -d 111 -p ack -e 40 -i 95 -a 3 - -t 10.7323 -s 210 -d 211 -p ack -e 40 -i 96 -a 3 - -t 10.7323 -s 310 -d 311 -p ack -e 40 -i 95 -a 3 h -t 10.7323 -s 110 -d 111 -p ack -e 40 -i 95 -a 3 h -t 10.7323 -s 210 -d 211 -p ack -e 40 -i 96 -a 3 h -t 10.7323 -s 310 -d 311 -p ack -e 40 -i 95 -a 3 - -t 10.7356 -s 111 -d 110 -p tcp -e 1000 -i 92 -a 2 - -t 10.7356 -s 211 -d 210 -p tcp -e 1000 -i 94 -a 2 - -t 10.7356 -s 311 -d 310 -p tcp -e 1000 -i 92 -a 2 h -t 10.7356 -s 111 -d 110 -p tcp -e 1000 -i 92 -a 2 h -t 10.7356 -s 211 -d 210 -p tcp -e 1000 -i 94 -a 2 h -t 10.7356 -s 311 -d 310 -p tcp -e 1000 -i 92 -a 2 + -t 10.7394 -s 110 -d 103 -p tcp -e 1000 -i 83 -a 3 + -t 10.7394 -s 210 -d 203 -p tcp -e 1000 -i 85 -a 3 + -t 10.7394 -s 310 -d 303 -p tcp -e 1000 -i 83 -a 3 - -t 10.7394 -s 110 -d 103 -p tcp -e 1000 -i 83 -a 3 - -t 10.7394 -s 210 -d 203 -p tcp -e 1000 -i 85 -a 3 - -t 10.7394 -s 310 -d 303 -p tcp -e 1000 -i 83 -a 3 h -t 10.7394 -s 110 -d 103 -p tcp -e 1000 -i 83 -a 3 h -t 10.7394 -s 210 -d 203 -p tcp -e 1000 -i 85 -a 3 h -t 10.7394 -s 310 -d 303 -p tcp -e 1000 -i 83 -a 3 r -t 10.7394 -s 111 -d 110 -p tcp -e 1000 -i 83 -a 3 r -t 10.7394 -s 211 -d 210 -p tcp -e 1000 -i 85 -a 3 r -t 10.7394 -s 311 -d 310 -p tcp -e 1000 -i 83 -a 3 r -t 10.7414 -s 110 -d 103 -p tcp -e 1000 -i 83 -a 3 r -t 10.7414 -s 210 -d 203 -p tcp -e 1000 -i 85 -a 3 r -t 10.7414 -s 310 -d 303 -p tcp -e 1000 -i 83 -a 3 + -t 10.7494 -s 210 -d 203 -p tcp -e 1000 -i 86 -a 3 - -t 10.7494 -s 210 -d 203 -p tcp -e 1000 -i 86 -a 3 h -t 10.7494 -s 210 -d 203 -p tcp -e 1000 -i 86 -a 3 r -t 10.7494 -s 211 -d 210 -p tcp -e 1000 -i 86 -a 3 + -t 10.7512 -s 203 -d 210 -p ack -e 40 -i 97 -a 3 - -t 10.7512 -s 203 -d 210 -p ack -e 40 -i 97 -a 3 h -t 10.7512 -s 203 -d 210 -p ack -e 40 -i 97 -a 3 r -t 10.7514 -s 210 -d 203 -p tcp -e 1000 -i 86 -a 3 r -t 10.7522 -s 203 -d 210 -p ack -e 40 -i 97 -a 3 + -t 10.7523 -s 210 -d 211 -p ack -e 40 -i 97 -a 3 - -t 10.7523 -s 210 -d 211 -p ack -e 40 -i 97 -a 3 h -t 10.7523 -s 210 -d 211 -p ack -e 40 -i 97 -a 3 + -t 10.764 -s 110 -d 109 -p tcp -e 1000 -i 84 -a 9 + -t 10.764 -s 310 -d 309 -p tcp -e 1000 -i 84 -a 9 - -t 10.764 -s 110 -d 109 -p tcp -e 1000 -i 84 -a 9 - -t 10.764 -s 310 -d 309 -p tcp -e 1000 -i 84 -a 9 h -t 10.764 -s 110 -d 109 -p tcp -e 1000 -i 84 -a 9 h -t 10.764 -s 310 -d 309 -p tcp -e 1000 -i 84 -a 9 r -t 10.764 -s 111 -d 110 -p tcp -e 1000 -i 84 -a 9 r -t 10.764 -s 311 -d 310 -p tcp -e 1000 -i 84 -a 9 + -t 10.7658 -s 109 -d 110 -p ack -e 40 -i 96 -a 9 + -t 10.7658 -s 309 -d 310 -p ack -e 40 -i 96 -a 9 - -t 10.7658 -s 109 -d 110 -p ack -e 40 -i 96 -a 9 - -t 10.7658 -s 309 -d 310 -p ack -e 40 -i 96 -a 9 h -t 10.7658 -s 109 -d 110 -p ack -e 40 -i 96 -a 9 h -t 10.7658 -s 309 -d 310 -p ack -e 40 -i 96 -a 9 r -t 10.766 -s 110 -d 109 -p tcp -e 1000 -i 84 -a 9 r -t 10.766 -s 310 -d 309 -p tcp -e 1000 -i 84 -a 9 + -t 10.7668 -s 110 -d 111 -p ack -e 40 -i 96 -a 9 + -t 10.7668 -s 310 -d 311 -p ack -e 40 -i 96 -a 9 - -t 10.7668 -s 110 -d 111 -p ack -e 40 -i 96 -a 9 - -t 10.7668 -s 310 -d 311 -p ack -e 40 -i 96 -a 9 h -t 10.7668 -s 110 -d 111 -p ack -e 40 -i 96 -a 9 h -t 10.7668 -s 310 -d 311 -p ack -e 40 -i 96 -a 9 r -t 10.7668 -s 109 -d 110 -p ack -e 40 -i 96 -a 9 r -t 10.7668 -s 309 -d 310 -p ack -e 40 -i 96 -a 9 + -t 10.7672 -s 111 -d 112 -p ack -e 40 -i 85 -a 9 + -t 10.7672 -s 311 -d 312 -p ack -e 40 -i 85 -a 9 - -t 10.7672 -s 111 -d 112 -p ack -e 40 -i 85 -a 9 - -t 10.7672 -s 311 -d 312 -p ack -e 40 -i 85 -a 9 h -t 10.7672 -s 111 -d 112 -p ack -e 40 -i 85 -a 9 h -t 10.7672 -s 311 -d 312 -p ack -e 40 -i 85 -a 9 r -t 10.7672 -s 110 -d 111 -p ack -e 40 -i 85 -a 9 r -t 10.7672 -s 310 -d 311 -p ack -e 40 -i 85 -a 9 + -t 10.7676 -s 211 -d 212 -p ack -e 40 -i 87 -a 9 - -t 10.7676 -s 211 -d 212 -p ack -e 40 -i 87 -a 9 h -t 10.7676 -s 211 -d 212 -p ack -e 40 -i 87 -a 9 r -t 10.7676 -s 210 -d 211 -p ack -e 40 -i 87 -a 9 r -t 10.7682 -s 111 -d 112 -p ack -e 40 -i 85 -a 9 r -t 10.7682 -s 311 -d 312 -p ack -e 40 -i 85 -a 9 r -t 10.7686 -s 211 -d 212 -p ack -e 40 -i 87 -a 9 + -t 10.7762 -s 209 -d 210 -p ack -e 40 -i 98 -a 9 - -t 10.7762 -s 209 -d 210 -p ack -e 40 -i 98 -a 9 h -t 10.7762 -s 209 -d 210 -p ack -e 40 -i 98 -a 9 + -t 10.7772 -s 210 -d 211 -p ack -e 40 -i 98 -a 9 - -t 10.7772 -s 210 -d 211 -p ack -e 40 -i 98 -a 9 h -t 10.7772 -s 210 -d 211 -p ack -e 40 -i 98 -a 9 r -t 10.7772 -s 209 -d 210 -p ack -e 40 -i 98 -a 9 + -t 10.7856 -s 110 -d 106 -p tcp -e 1000 -i 86 -a 6 + -t 10.7856 -s 210 -d 206 -p tcp -e 1000 -i 88 -a 6 + -t 10.7856 -s 310 -d 306 -p tcp -e 1000 -i 86 -a 6 - -t 10.7856 -s 110 -d 106 -p tcp -e 1000 -i 86 -a 6 - -t 10.7856 -s 210 -d 206 -p tcp -e 1000 -i 88 -a 6 - -t 10.7856 -s 310 -d 306 -p tcp -e 1000 -i 86 -a 6 h -t 10.7856 -s 110 -d 106 -p tcp -e 1000 -i 86 -a 6 h -t 10.7856 -s 210 -d 206 -p tcp -e 1000 -i 88 -a 6 h -t 10.7856 -s 310 -d 306 -p tcp -e 1000 -i 86 -a 6 r -t 10.7856 -s 111 -d 110 -p tcp -e 1000 -i 86 -a 6 r -t 10.7856 -s 211 -d 210 -p tcp -e 1000 -i 88 -a 6 r -t 10.7856 -s 311 -d 310 -p tcp -e 1000 -i 86 -a 6 r -t 10.7876 -s 110 -d 106 -p tcp -e 1000 -i 86 -a 6 r -t 10.7876 -s 210 -d 206 -p tcp -e 1000 -i 88 -a 6 r -t 10.7876 -s 310 -d 306 -p tcp -e 1000 -i 86 -a 6 + -t 10.7956 -s 110 -d 106 -p tcp -e 1000 -i 87 -a 6 + -t 10.7956 -s 210 -d 206 -p tcp -e 1000 -i 89 -a 6 + -t 10.7956 -s 310 -d 306 -p tcp -e 1000 -i 87 -a 6 - -t 10.7956 -s 110 -d 106 -p tcp -e 1000 -i 87 -a 6 - -t 10.7956 -s 210 -d 206 -p tcp -e 1000 -i 89 -a 6 - -t 10.7956 -s 310 -d 306 -p tcp -e 1000 -i 87 -a 6 h -t 10.7956 -s 110 -d 106 -p tcp -e 1000 -i 87 -a 6 h -t 10.7956 -s 210 -d 206 -p tcp -e 1000 -i 89 -a 6 h -t 10.7956 -s 310 -d 306 -p tcp -e 1000 -i 87 -a 6 r -t 10.7956 -s 111 -d 110 -p tcp -e 1000 -i 87 -a 6 r -t 10.7956 -s 211 -d 210 -p tcp -e 1000 -i 89 -a 6 r -t 10.7956 -s 311 -d 310 -p tcp -e 1000 -i 87 -a 6 + -t 10.7974 -s 106 -d 110 -p ack -e 40 -i 97 -a 6 + -t 10.7974 -s 206 -d 210 -p ack -e 40 -i 99 -a 6 + -t 10.7974 -s 306 -d 310 -p ack -e 40 -i 97 -a 6 - -t 10.7974 -s 106 -d 110 -p ack -e 40 -i 97 -a 6 - -t 10.7974 -s 206 -d 210 -p ack -e 40 -i 99 -a 6 - -t 10.7974 -s 306 -d 310 -p ack -e 40 -i 97 -a 6 h -t 10.7974 -s 106 -d 110 -p ack -e 40 -i 97 -a 6 h -t 10.7974 -s 206 -d 210 -p ack -e 40 -i 99 -a 6 h -t 10.7974 -s 306 -d 310 -p ack -e 40 -i 97 -a 6 r -t 10.7976 -s 110 -d 106 -p tcp -e 1000 -i 87 -a 6 r -t 10.7976 -s 210 -d 206 -p tcp -e 1000 -i 89 -a 6 r -t 10.7976 -s 310 -d 306 -p tcp -e 1000 -i 87 -a 6 + -t 10.7984 -s 110 -d 111 -p ack -e 40 -i 97 -a 6 + -t 10.7984 -s 210 -d 211 -p ack -e 40 -i 99 -a 6 + -t 10.7984 -s 310 -d 311 -p ack -e 40 -i 97 -a 6 - -t 10.7984 -s 110 -d 111 -p ack -e 40 -i 97 -a 6 - -t 10.7984 -s 210 -d 211 -p ack -e 40 -i 99 -a 6 - -t 10.7984 -s 310 -d 311 -p ack -e 40 -i 97 -a 6 h -t 10.7984 -s 110 -d 111 -p ack -e 40 -i 97 -a 6 h -t 10.7984 -s 210 -d 211 -p ack -e 40 -i 99 -a 6 h -t 10.7984 -s 310 -d 311 -p ack -e 40 -i 97 -a 6 r -t 10.7984 -s 106 -d 110 -p ack -e 40 -i 97 -a 6 r -t 10.7984 -s 206 -d 210 -p ack -e 40 -i 99 -a 6 r -t 10.7984 -s 306 -d 310 -p ack -e 40 -i 97 -a 6 + -t 10.7994 -s 111 -d 112 -p ack -e 40 -i 93 -a 2 + -t 10.7994 -s 311 -d 312 -p ack -e 40 -i 93 -a 2 - -t 10.7994 -s 111 -d 112 -p ack -e 40 -i 93 -a 2 - -t 10.7994 -s 311 -d 312 -p ack -e 40 -i 93 -a 2 h -t 10.7994 -s 111 -d 112 -p ack -e 40 -i 93 -a 2 h -t 10.7994 -s 311 -d 312 -p ack -e 40 -i 93 -a 2 r -t 10.7994 -s 110 -d 111 -p ack -e 40 -i 93 -a 2 r -t 10.7994 -s 310 -d 311 -p ack -e 40 -i 93 -a 2 r -t 10.8004 -s 111 -d 112 -p ack -e 40 -i 93 -a 2 r -t 10.8004 -s 311 -d 312 -p ack -e 40 -i 93 -a 2 + -t 10.8005 -s 112 -d 111 -p tcp -e 1000 -i 98 -a 2 + -t 10.8005 -s 312 -d 311 -p tcp -e 1000 -i 98 -a 2 - -t 10.8005 -s 112 -d 111 -p tcp -e 1000 -i 98 -a 2 - -t 10.8005 -s 312 -d 311 -p tcp -e 1000 -i 98 -a 2 h -t 10.8005 -s 112 -d 111 -p tcp -e 1000 -i 98 -a 2 h -t 10.8005 -s 312 -d 311 -p tcp -e 1000 -i 98 -a 2 + -t 10.8023 -s 111 -d 110 -p tcp -e 1000 -i 98 -a 2 + -t 10.8023 -s 311 -d 310 -p tcp -e 1000 -i 98 -a 2 - -t 10.8023 -s 111 -d 110 -p tcp -e 1000 -i 98 -a 2 - -t 10.8023 -s 311 -d 310 -p tcp -e 1000 -i 98 -a 2 h -t 10.8023 -s 111 -d 110 -p tcp -e 1000 -i 98 -a 2 h -t 10.8023 -s 311 -d 310 -p tcp -e 1000 -i 98 -a 2 r -t 10.8025 -s 112 -d 111 -p tcp -e 1000 -i 98 -a 2 r -t 10.8025 -s 312 -d 311 -p tcp -e 1000 -i 98 -a 2 + -t 10.8056 -s 110 -d 107 -p tcp -e 1000 -i 88 -a 7 + -t 10.8056 -s 210 -d 207 -p tcp -e 1000 -i 90 -a 7 + -t 10.8056 -s 310 -d 307 -p tcp -e 1000 -i 88 -a 7 - -t 10.8056 -s 110 -d 107 -p tcp -e 1000 -i 88 -a 7 - -t 10.8056 -s 210 -d 207 -p tcp -e 1000 -i 90 -a 7 - -t 10.8056 -s 310 -d 307 -p tcp -e 1000 -i 88 -a 7 h -t 10.8056 -s 110 -d 107 -p tcp -e 1000 -i 88 -a 7 h -t 10.8056 -s 210 -d 207 -p tcp -e 1000 -i 90 -a 7 h -t 10.8056 -s 310 -d 307 -p tcp -e 1000 -i 88 -a 7 r -t 10.8056 -s 111 -d 110 -p tcp -e 1000 -i 88 -a 7 r -t 10.8056 -s 211 -d 210 -p tcp -e 1000 -i 90 -a 7 r -t 10.8056 -s 311 -d 310 -p tcp -e 1000 -i 88 -a 7 r -t 10.8076 -s 110 -d 107 -p tcp -e 1000 -i 88 -a 7 r -t 10.8076 -s 210 -d 207 -p tcp -e 1000 -i 90 -a 7 r -t 10.8076 -s 310 -d 307 -p tcp -e 1000 -i 88 -a 7 + -t 10.8156 -s 110 -d 107 -p tcp -e 1000 -i 89 -a 7 + -t 10.8156 -s 210 -d 207 -p tcp -e 1000 -i 91 -a 7 + -t 10.8156 -s 310 -d 307 -p tcp -e 1000 -i 89 -a 7 - -t 10.8156 -s 110 -d 107 -p tcp -e 1000 -i 89 -a 7 - -t 10.8156 -s 210 -d 207 -p tcp -e 1000 -i 91 -a 7 - -t 10.8156 -s 310 -d 307 -p tcp -e 1000 -i 89 -a 7 h -t 10.8156 -s 110 -d 107 -p tcp -e 1000 -i 89 -a 7 h -t 10.8156 -s 210 -d 207 -p tcp -e 1000 -i 91 -a 7 h -t 10.8156 -s 310 -d 307 -p tcp -e 1000 -i 89 -a 7 r -t 10.8156 -s 111 -d 110 -p tcp -e 1000 -i 89 -a 7 r -t 10.8156 -s 211 -d 210 -p tcp -e 1000 -i 91 -a 7 r -t 10.8156 -s 311 -d 310 -p tcp -e 1000 -i 89 -a 7 + -t 10.8174 -s 107 -d 110 -p ack -e 40 -i 99 -a 7 + -t 10.8174 -s 207 -d 210 -p ack -e 40 -i 100 -a 7 + -t 10.8174 -s 307 -d 310 -p ack -e 40 -i 99 -a 7 - -t 10.8174 -s 107 -d 110 -p ack -e 40 -i 99 -a 7 - -t 10.8174 -s 207 -d 210 -p ack -e 40 -i 100 -a 7 - -t 10.8174 -s 307 -d 310 -p ack -e 40 -i 99 -a 7 h -t 10.8174 -s 107 -d 110 -p ack -e 40 -i 99 -a 7 h -t 10.8174 -s 207 -d 210 -p ack -e 40 -i 100 -a 7 h -t 10.8174 -s 307 -d 310 -p ack -e 40 -i 99 -a 7 r -t 10.8176 -s 110 -d 107 -p tcp -e 1000 -i 89 -a 7 r -t 10.8176 -s 210 -d 207 -p tcp -e 1000 -i 91 -a 7 r -t 10.8176 -s 310 -d 307 -p tcp -e 1000 -i 89 -a 7 + -t 10.8184 -s 110 -d 111 -p ack -e 40 -i 99 -a 7 + -t 10.8184 -s 210 -d 211 -p ack -e 40 -i 100 -a 7 + -t 10.8184 -s 310 -d 311 -p ack -e 40 -i 99 -a 7 - -t 10.8184 -s 110 -d 111 -p ack -e 40 -i 99 -a 7 - -t 10.8184 -s 210 -d 211 -p ack -e 40 -i 100 -a 7 - -t 10.8184 -s 310 -d 311 -p ack -e 40 -i 99 -a 7 h -t 10.8184 -s 110 -d 111 -p ack -e 40 -i 99 -a 7 h -t 10.8184 -s 210 -d 211 -p ack -e 40 -i 100 -a 7 h -t 10.8184 -s 310 -d 311 -p ack -e 40 -i 99 -a 7 r -t 10.8184 -s 107 -d 110 -p ack -e 40 -i 99 -a 7 r -t 10.8184 -s 207 -d 210 -p ack -e 40 -i 100 -a 7 r -t 10.8184 -s 307 -d 310 -p ack -e 40 -i 99 -a 7 + -t 10.8256 -s 110 -d 102 -p tcp -e 1000 -i 90 -a 2 + -t 10.8256 -s 210 -d 202 -p tcp -e 1000 -i 92 -a 2 + -t 10.8256 -s 310 -d 302 -p tcp -e 1000 -i 90 -a 2 - -t 10.8256 -s 110 -d 102 -p tcp -e 1000 -i 90 -a 2 - -t 10.8256 -s 210 -d 202 -p tcp -e 1000 -i 92 -a 2 - -t 10.8256 -s 310 -d 302 -p tcp -e 1000 -i 90 -a 2 h -t 10.8256 -s 110 -d 102 -p tcp -e 1000 -i 90 -a 2 h -t 10.8256 -s 210 -d 202 -p tcp -e 1000 -i 92 -a 2 h -t 10.8256 -s 310 -d 302 -p tcp -e 1000 -i 90 -a 2 r -t 10.8256 -s 111 -d 110 -p tcp -e 1000 -i 90 -a 2 r -t 10.8256 -s 211 -d 210 -p tcp -e 1000 -i 92 -a 2 r -t 10.8256 -s 311 -d 310 -p tcp -e 1000 -i 90 -a 2 + -t 10.8262 -s 111 -d 112 -p ack -e 40 -i 94 -a 1 + -t 10.8262 -s 211 -d 212 -p ack -e 40 -i 95 -a 1 + -t 10.8262 -s 311 -d 312 -p ack -e 40 -i 94 -a 1 - -t 10.8262 -s 111 -d 112 -p ack -e 40 -i 94 -a 1 - -t 10.8262 -s 211 -d 212 -p ack -e 40 -i 95 -a 1 - -t 10.8262 -s 311 -d 312 -p ack -e 40 -i 94 -a 1 h -t 10.8262 -s 111 -d 112 -p ack -e 40 -i 94 -a 1 h -t 10.8262 -s 211 -d 212 -p ack -e 40 -i 95 -a 1 h -t 10.8262 -s 311 -d 312 -p ack -e 40 -i 94 -a 1 r -t 10.8262 -s 110 -d 111 -p ack -e 40 -i 94 -a 1 r -t 10.8262 -s 210 -d 211 -p ack -e 40 -i 95 -a 1 r -t 10.8262 -s 310 -d 311 -p ack -e 40 -i 94 -a 1 r -t 10.8272 -s 111 -d 112 -p ack -e 40 -i 94 -a 1 r -t 10.8272 -s 211 -d 212 -p ack -e 40 -i 95 -a 1 r -t 10.8272 -s 311 -d 312 -p ack -e 40 -i 94 -a 1 + -t 10.8273 -s 112 -d 111 -p tcp -e 1000 -i 100 -a 1 + -t 10.8273 -s 112 -d 111 -p tcp -e 1000 -i 101 -a 1 + -t 10.8273 -s 212 -d 211 -p tcp -e 1000 -i 101 -a 1 + -t 10.8273 -s 212 -d 211 -p tcp -e 1000 -i 102 -a 1 + -t 10.8273 -s 312 -d 311 -p tcp -e 1000 -i 100 -a 1 + -t 10.8273 -s 312 -d 311 -p tcp -e 1000 -i 101 -a 1 - -t 10.8273 -s 112 -d 111 -p tcp -e 1000 -i 100 -a 1 - -t 10.8273 -s 212 -d 211 -p tcp -e 1000 -i 101 -a 1 - -t 10.8273 -s 312 -d 311 -p tcp -e 1000 -i 100 -a 1 h -t 10.8273 -s 112 -d 111 -p tcp -e 1000 -i 100 -a 1 h -t 10.8273 -s 212 -d 211 -p tcp -e 1000 -i 101 -a 1 h -t 10.8273 -s 312 -d 311 -p tcp -e 1000 -i 100 -a 1 r -t 10.8276 -s 110 -d 102 -p tcp -e 1000 -i 90 -a 2 r -t 10.8276 -s 210 -d 202 -p tcp -e 1000 -i 92 -a 2 r -t 10.8276 -s 310 -d 302 -p tcp -e 1000 -i 90 -a 2 - -t 10.8281 -s 112 -d 111 -p tcp -e 1000 -i 101 -a 1 - -t 10.8281 -s 212 -d 211 -p tcp -e 1000 -i 102 -a 1 - -t 10.8281 -s 312 -d 311 -p tcp -e 1000 -i 101 -a 1 h -t 10.8281 -s 112 -d 111 -p tcp -e 1000 -i 101 -a 1 h -t 10.8281 -s 212 -d 211 -p tcp -e 1000 -i 102 -a 1 h -t 10.8281 -s 312 -d 311 -p tcp -e 1000 -i 101 -a 1 + -t 10.8291 -s 111 -d 110 -p tcp -e 1000 -i 100 -a 1 + -t 10.8291 -s 211 -d 210 -p tcp -e 1000 -i 101 -a 1 + -t 10.8291 -s 311 -d 310 -p tcp -e 1000 -i 100 -a 1 - -t 10.8291 -s 111 -d 110 -p tcp -e 1000 -i 100 -a 1 - -t 10.8291 -s 211 -d 210 -p tcp -e 1000 -i 101 -a 1 - -t 10.8291 -s 311 -d 310 -p tcp -e 1000 -i 100 -a 1 h -t 10.8291 -s 111 -d 110 -p tcp -e 1000 -i 100 -a 1 h -t 10.8291 -s 211 -d 210 -p tcp -e 1000 -i 101 -a 1 h -t 10.8291 -s 311 -d 310 -p tcp -e 1000 -i 100 -a 1 r -t 10.8293 -s 112 -d 111 -p tcp -e 1000 -i 100 -a 1 r -t 10.8293 -s 212 -d 211 -p tcp -e 1000 -i 101 -a 1 r -t 10.8293 -s 312 -d 311 -p tcp -e 1000 -i 100 -a 1 + -t 10.8299 -s 111 -d 110 -p tcp -e 1000 -i 101 -a 1 + -t 10.8299 -s 211 -d 210 -p tcp -e 1000 -i 102 -a 1 + -t 10.8299 -s 311 -d 310 -p tcp -e 1000 -i 101 -a 1 r -t 10.8301 -s 112 -d 111 -p tcp -e 1000 -i 101 -a 1 r -t 10.8301 -s 212 -d 211 -p tcp -e 1000 -i 102 -a 1 r -t 10.8301 -s 312 -d 311 -p tcp -e 1000 -i 101 -a 1 + -t 10.8327 -s 111 -d 112 -p ack -e 40 -i 95 -a 3 + -t 10.8327 -s 211 -d 212 -p ack -e 40 -i 96 -a 3 + -t 10.8327 -s 311 -d 312 -p ack -e 40 -i 95 -a 3 - -t 10.8327 -s 111 -d 112 -p ack -e 40 -i 95 -a 3 - -t 10.8327 -s 211 -d 212 -p ack -e 40 -i 96 -a 3 - -t 10.8327 -s 311 -d 312 -p ack -e 40 -i 95 -a 3 h -t 10.8327 -s 111 -d 112 -p ack -e 40 -i 95 -a 3 h -t 10.8327 -s 211 -d 212 -p ack -e 40 -i 96 -a 3 h -t 10.8327 -s 311 -d 312 -p ack -e 40 -i 95 -a 3 r -t 10.8327 -s 110 -d 111 -p ack -e 40 -i 95 -a 3 r -t 10.8327 -s 210 -d 211 -p ack -e 40 -i 96 -a 3 r -t 10.8327 -s 310 -d 311 -p ack -e 40 -i 95 -a 3 + -t 10.8337 -s 112 -d 111 -p tcp -e 1000 -i 102 -a 3 + -t 10.8337 -s 112 -d 111 -p tcp -e 1000 -i 103 -a 3 + -t 10.8337 -s 112 -d 111 -p tcp -e 1000 -i 104 -a 3 + -t 10.8337 -s 212 -d 211 -p tcp -e 1000 -i 103 -a 3 + -t 10.8337 -s 212 -d 211 -p tcp -e 1000 -i 104 -a 3 + -t 10.8337 -s 212 -d 211 -p tcp -e 1000 -i 105 -a 3 + -t 10.8337 -s 312 -d 311 -p tcp -e 1000 -i 102 -a 3 + -t 10.8337 -s 312 -d 311 -p tcp -e 1000 -i 103 -a 3 + -t 10.8337 -s 312 -d 311 -p tcp -e 1000 -i 104 -a 3 - -t 10.8337 -s 112 -d 111 -p tcp -e 1000 -i 102 -a 3 - -t 10.8337 -s 212 -d 211 -p tcp -e 1000 -i 103 -a 3 - -t 10.8337 -s 312 -d 311 -p tcp -e 1000 -i 102 -a 3 h -t 10.8337 -s 112 -d 111 -p tcp -e 1000 -i 102 -a 3 h -t 10.8337 -s 212 -d 211 -p tcp -e 1000 -i 103 -a 3 h -t 10.8337 -s 312 -d 311 -p tcp -e 1000 -i 102 -a 3 r -t 10.8337 -s 111 -d 112 -p ack -e 40 -i 95 -a 3 r -t 10.8337 -s 211 -d 212 -p ack -e 40 -i 96 -a 3 r -t 10.8337 -s 311 -d 312 -p ack -e 40 -i 95 -a 3 - -t 10.8345 -s 112 -d 111 -p tcp -e 1000 -i 103 -a 3 - -t 10.8345 -s 212 -d 211 -p tcp -e 1000 -i 104 -a 3 - -t 10.8345 -s 312 -d 311 -p tcp -e 1000 -i 103 -a 3 h -t 10.8345 -s 112 -d 111 -p tcp -e 1000 -i 103 -a 3 h -t 10.8345 -s 212 -d 211 -p tcp -e 1000 -i 104 -a 3 h -t 10.8345 -s 312 -d 311 -p tcp -e 1000 -i 103 -a 3 - -t 10.8353 -s 112 -d 111 -p tcp -e 1000 -i 104 -a 3 - -t 10.8353 -s 212 -d 211 -p tcp -e 1000 -i 105 -a 3 - -t 10.8353 -s 312 -d 311 -p tcp -e 1000 -i 104 -a 3 h -t 10.8353 -s 112 -d 111 -p tcp -e 1000 -i 104 -a 3 h -t 10.8353 -s 212 -d 211 -p tcp -e 1000 -i 105 -a 3 h -t 10.8353 -s 312 -d 311 -p tcp -e 1000 -i 104 -a 3 + -t 10.8355 -s 111 -d 110 -p tcp -e 1000 -i 102 -a 3 + -t 10.8355 -s 211 -d 210 -p tcp -e 1000 -i 103 -a 3 + -t 10.8355 -s 311 -d 310 -p tcp -e 1000 -i 102 -a 3 + -t 10.8356 -s 110 -d 102 -p tcp -e 1000 -i 91 -a 2 + -t 10.8356 -s 210 -d 202 -p tcp -e 1000 -i 93 -a 2 + -t 10.8356 -s 310 -d 302 -p tcp -e 1000 -i 91 -a 2 - -t 10.8356 -s 110 -d 102 -p tcp -e 1000 -i 91 -a 2 - -t 10.8356 -s 210 -d 202 -p tcp -e 1000 -i 93 -a 2 - -t 10.8356 -s 310 -d 302 -p tcp -e 1000 -i 91 -a 2 h -t 10.8356 -s 110 -d 102 -p tcp -e 1000 -i 91 -a 2 h -t 10.8356 -s 210 -d 202 -p tcp -e 1000 -i 93 -a 2 h -t 10.8356 -s 310 -d 302 -p tcp -e 1000 -i 91 -a 2 r -t 10.8356 -s 111 -d 110 -p tcp -e 1000 -i 91 -a 2 r -t 10.8356 -s 211 -d 210 -p tcp -e 1000 -i 93 -a 2 r -t 10.8356 -s 311 -d 310 -p tcp -e 1000 -i 91 -a 2 r -t 10.8357 -s 112 -d 111 -p tcp -e 1000 -i 102 -a 3 r -t 10.8357 -s 212 -d 211 -p tcp -e 1000 -i 103 -a 3 r -t 10.8357 -s 312 -d 311 -p tcp -e 1000 -i 102 -a 3 + -t 10.8363 -s 111 -d 110 -p tcp -e 1000 -i 103 -a 3 + -t 10.8363 -s 211 -d 210 -p tcp -e 1000 -i 104 -a 3 + -t 10.8363 -s 311 -d 310 -p tcp -e 1000 -i 103 -a 3 r -t 10.8365 -s 112 -d 111 -p tcp -e 1000 -i 103 -a 3 r -t 10.8365 -s 212 -d 211 -p tcp -e 1000 -i 104 -a 3 r -t 10.8365 -s 312 -d 311 -p tcp -e 1000 -i 103 -a 3 + -t 10.8371 -s 111 -d 110 -p tcp -e 1000 -i 104 -a 3 + -t 10.8371 -s 211 -d 210 -p tcp -e 1000 -i 105 -a 3 + -t 10.8371 -s 311 -d 310 -p tcp -e 1000 -i 104 -a 3 r -t 10.8373 -s 112 -d 111 -p tcp -e 1000 -i 104 -a 3 r -t 10.8373 -s 212 -d 211 -p tcp -e 1000 -i 105 -a 3 r -t 10.8373 -s 312 -d 311 -p tcp -e 1000 -i 104 -a 3 + -t 10.8374 -s 102 -d 110 -p ack -e 40 -i 105 -a 2 + -t 10.8374 -s 202 -d 210 -p ack -e 40 -i 106 -a 2 + -t 10.8374 -s 302 -d 310 -p ack -e 40 -i 105 -a 2 - -t 10.8374 -s 102 -d 110 -p ack -e 40 -i 105 -a 2 - -t 10.8374 -s 202 -d 210 -p ack -e 40 -i 106 -a 2 - -t 10.8374 -s 302 -d 310 -p ack -e 40 -i 105 -a 2 h -t 10.8374 -s 102 -d 110 -p ack -e 40 -i 105 -a 2 h -t 10.8374 -s 202 -d 210 -p ack -e 40 -i 106 -a 2 h -t 10.8374 -s 302 -d 310 -p ack -e 40 -i 105 -a 2 r -t 10.8376 -s 110 -d 102 -p tcp -e 1000 -i 91 -a 2 r -t 10.8376 -s 210 -d 202 -p tcp -e 1000 -i 93 -a 2 r -t 10.8376 -s 310 -d 302 -p tcp -e 1000 -i 91 -a 2 + -t 10.8384 -s 110 -d 111 -p ack -e 40 -i 105 -a 2 + -t 10.8384 -s 210 -d 211 -p ack -e 40 -i 106 -a 2 + -t 10.8384 -s 310 -d 311 -p ack -e 40 -i 105 -a 2 - -t 10.8384 -s 110 -d 111 -p ack -e 40 -i 105 -a 2 - -t 10.8384 -s 210 -d 211 -p ack -e 40 -i 106 -a 2 - -t 10.8384 -s 310 -d 311 -p ack -e 40 -i 105 -a 2 h -t 10.8384 -s 110 -d 111 -p ack -e 40 -i 105 -a 2 h -t 10.8384 -s 210 -d 211 -p ack -e 40 -i 106 -a 2 h -t 10.8384 -s 310 -d 311 -p ack -e 40 -i 105 -a 2 r -t 10.8384 -s 102 -d 110 -p ack -e 40 -i 105 -a 2 r -t 10.8384 -s 202 -d 210 -p ack -e 40 -i 106 -a 2 r -t 10.8384 -s 302 -d 310 -p ack -e 40 -i 105 -a 2 - -t 10.8391 -s 111 -d 110 -p tcp -e 1000 -i 101 -a 1 - -t 10.8391 -s 211 -d 210 -p tcp -e 1000 -i 102 -a 1 - -t 10.8391 -s 311 -d 310 -p tcp -e 1000 -i 101 -a 1 h -t 10.8391 -s 111 -d 110 -p tcp -e 1000 -i 101 -a 1 h -t 10.8391 -s 211 -d 210 -p tcp -e 1000 -i 102 -a 1 h -t 10.8391 -s 311 -d 310 -p tcp -e 1000 -i 101 -a 1 + -t 10.8412 -s 103 -d 110 -p ack -e 40 -i 106 -a 3 + -t 10.8412 -s 303 -d 310 -p ack -e 40 -i 106 -a 3 - -t 10.8412 -s 103 -d 110 -p ack -e 40 -i 106 -a 3 - -t 10.8412 -s 303 -d 310 -p ack -e 40 -i 106 -a 3 h -t 10.8412 -s 103 -d 110 -p ack -e 40 -i 106 -a 3 h -t 10.8412 -s 303 -d 310 -p ack -e 40 -i 106 -a 3 r -t 10.8422 -s 103 -d 110 -p ack -e 40 -i 106 -a 3 r -t 10.8422 -s 303 -d 310 -p ack -e 40 -i 106 -a 3 + -t 10.8423 -s 110 -d 111 -p ack -e 40 -i 106 -a 3 + -t 10.8423 -s 310 -d 311 -p ack -e 40 -i 106 -a 3 - -t 10.8423 -s 110 -d 111 -p ack -e 40 -i 106 -a 3 - -t 10.8423 -s 310 -d 311 -p ack -e 40 -i 106 -a 3 h -t 10.8423 -s 110 -d 111 -p ack -e 40 -i 106 -a 3 h -t 10.8423 -s 310 -d 311 -p ack -e 40 -i 106 -a 3 + -t 10.8456 -s 110 -d 102 -p tcp -e 1000 -i 92 -a 2 + -t 10.8456 -s 210 -d 202 -p tcp -e 1000 -i 94 -a 2 + -t 10.8456 -s 310 -d 302 -p tcp -e 1000 -i 92 -a 2 - -t 10.8456 -s 110 -d 102 -p tcp -e 1000 -i 92 -a 2 - -t 10.8456 -s 210 -d 202 -p tcp -e 1000 -i 94 -a 2 - -t 10.8456 -s 310 -d 302 -p tcp -e 1000 -i 92 -a 2 h -t 10.8456 -s 110 -d 102 -p tcp -e 1000 -i 92 -a 2 h -t 10.8456 -s 210 -d 202 -p tcp -e 1000 -i 94 -a 2 h -t 10.8456 -s 310 -d 302 -p tcp -e 1000 -i 92 -a 2 r -t 10.8456 -s 111 -d 110 -p tcp -e 1000 -i 92 -a 2 r -t 10.8456 -s 211 -d 210 -p tcp -e 1000 -i 94 -a 2 r -t 10.8456 -s 311 -d 310 -p tcp -e 1000 -i 92 -a 2 r -t 10.8476 -s 110 -d 102 -p tcp -e 1000 -i 92 -a 2 r -t 10.8476 -s 210 -d 202 -p tcp -e 1000 -i 94 -a 2 r -t 10.8476 -s 310 -d 302 -p tcp -e 1000 -i 92 -a 2 - -t 10.8491 -s 111 -d 110 -p tcp -e 1000 -i 102 -a 3 - -t 10.8491 -s 211 -d 210 -p tcp -e 1000 -i 103 -a 3 - -t 10.8491 -s 311 -d 310 -p tcp -e 1000 -i 102 -a 3 h -t 10.8491 -s 111 -d 110 -p tcp -e 1000 -i 102 -a 3 h -t 10.8491 -s 211 -d 210 -p tcp -e 1000 -i 103 -a 3 h -t 10.8491 -s 311 -d 310 -p tcp -e 1000 -i 102 -a 3 + -t 10.8527 -s 211 -d 212 -p ack -e 40 -i 97 -a 3 - -t 10.8527 -s 211 -d 212 -p ack -e 40 -i 97 -a 3 h -t 10.8527 -s 211 -d 212 -p ack -e 40 -i 97 -a 3 r -t 10.8527 -s 210 -d 211 -p ack -e 40 -i 97 -a 3 r -t 10.8537 -s 211 -d 212 -p ack -e 40 -i 97 -a 3 - -t 10.8591 -s 111 -d 110 -p tcp -e 1000 -i 103 -a 3 - -t 10.8591 -s 211 -d 210 -p tcp -e 1000 -i 104 -a 3 - -t 10.8591 -s 311 -d 310 -p tcp -e 1000 -i 103 -a 3 h -t 10.8591 -s 111 -d 110 -p tcp -e 1000 -i 103 -a 3 h -t 10.8591 -s 211 -d 210 -p tcp -e 1000 -i 104 -a 3 h -t 10.8591 -s 311 -d 310 -p tcp -e 1000 -i 103 -a 3 + -t 10.8672 -s 111 -d 112 -p ack -e 40 -i 96 -a 9 + -t 10.8672 -s 311 -d 312 -p ack -e 40 -i 96 -a 9 - -t 10.8672 -s 111 -d 112 -p ack -e 40 -i 96 -a 9 - -t 10.8672 -s 311 -d 312 -p ack -e 40 -i 96 -a 9 h -t 10.8672 -s 111 -d 112 -p ack -e 40 -i 96 -a 9 h -t 10.8672 -s 311 -d 312 -p ack -e 40 -i 96 -a 9 r -t 10.8672 -s 110 -d 111 -p ack -e 40 -i 96 -a 9 r -t 10.8672 -s 310 -d 311 -p ack -e 40 -i 96 -a 9 r -t 10.8682 -s 111 -d 112 -p ack -e 40 -i 96 -a 9 r -t 10.8682 -s 311 -d 312 -p ack -e 40 -i 96 -a 9 - -t 10.8691 -s 111 -d 110 -p tcp -e 1000 -i 104 -a 3 - -t 10.8691 -s 211 -d 210 -p tcp -e 1000 -i 105 -a 3 - -t 10.8691 -s 311 -d 310 -p tcp -e 1000 -i 104 -a 3 h -t 10.8691 -s 111 -d 110 -p tcp -e 1000 -i 104 -a 3 h -t 10.8691 -s 211 -d 210 -p tcp -e 1000 -i 105 -a 3 h -t 10.8691 -s 311 -d 310 -p tcp -e 1000 -i 104 -a 3 + -t 10.8694 -s 112 -d 111 -p tcp -e 1000 -i 107 -a 8 + -t 10.8694 -s 212 -d 211 -p tcp -e 1000 -i 107 -a 8 + -t 10.8694 -s 312 -d 311 -p tcp -e 1000 -i 107 -a 8 - -t 10.8694 -s 112 -d 111 -p tcp -e 1000 -i 107 -a 8 - -t 10.8694 -s 212 -d 211 -p tcp -e 1000 -i 107 -a 8 - -t 10.8694 -s 312 -d 311 -p tcp -e 1000 -i 107 -a 8 h -t 10.8694 -s 112 -d 111 -p tcp -e 1000 -i 107 -a 8 h -t 10.8694 -s 212 -d 211 -p tcp -e 1000 -i 107 -a 8 h -t 10.8694 -s 312 -d 311 -p tcp -e 1000 -i 107 -a 8 + -t 10.8712 -s 111 -d 110 -p tcp -e 1000 -i 107 -a 8 + -t 10.8712 -s 211 -d 210 -p tcp -e 1000 -i 107 -a 8 + -t 10.8712 -s 311 -d 310 -p tcp -e 1000 -i 107 -a 8 r -t 10.8714 -s 112 -d 111 -p tcp -e 1000 -i 107 -a 8 r -t 10.8714 -s 212 -d 211 -p tcp -e 1000 -i 107 -a 8 r -t 10.8714 -s 312 -d 311 -p tcp -e 1000 -i 107 -a 8 + -t 10.8776 -s 211 -d 212 -p ack -e 40 -i 98 -a 9 - -t 10.8776 -s 211 -d 212 -p ack -e 40 -i 98 -a 9 h -t 10.8776 -s 211 -d 212 -p ack -e 40 -i 98 -a 9 r -t 10.8776 -s 210 -d 211 -p ack -e 40 -i 98 -a 9 r -t 10.8786 -s 211 -d 212 -p ack -e 40 -i 98 -a 9 - -t 10.8791 -s 111 -d 110 -p tcp -e 1000 -i 107 -a 8 - -t 10.8791 -s 211 -d 210 -p tcp -e 1000 -i 107 -a 8 - -t 10.8791 -s 311 -d 310 -p tcp -e 1000 -i 107 -a 8 h -t 10.8791 -s 111 -d 110 -p tcp -e 1000 -i 107 -a 8 h -t 10.8791 -s 211 -d 210 -p tcp -e 1000 -i 107 -a 8 h -t 10.8791 -s 311 -d 310 -p tcp -e 1000 -i 107 -a 8 + -t 10.8988 -s 111 -d 112 -p ack -e 40 -i 97 -a 6 + -t 10.8988 -s 211 -d 212 -p ack -e 40 -i 99 -a 6 + -t 10.8988 -s 311 -d 312 -p ack -e 40 -i 97 -a 6 - -t 10.8988 -s 111 -d 112 -p ack -e 40 -i 97 -a 6 - -t 10.8988 -s 211 -d 212 -p ack -e 40 -i 99 -a 6 - -t 10.8988 -s 311 -d 312 -p ack -e 40 -i 97 -a 6 h -t 10.8988 -s 111 -d 112 -p ack -e 40 -i 97 -a 6 h -t 10.8988 -s 211 -d 212 -p ack -e 40 -i 99 -a 6 h -t 10.8988 -s 311 -d 312 -p ack -e 40 -i 97 -a 6 r -t 10.8988 -s 110 -d 111 -p ack -e 40 -i 97 -a 6 r -t 10.8988 -s 210 -d 211 -p ack -e 40 -i 99 -a 6 r -t 10.8988 -s 310 -d 311 -p ack -e 40 -i 97 -a 6 + -t 10.8998 -s 112 -d 111 -p tcp -e 1000 -i 108 -a 6 + -t 10.8998 -s 112 -d 111 -p tcp -e 1000 -i 109 -a 6 + -t 10.8998 -s 112 -d 111 -p tcp -e 1000 -i 110 -a 6 + -t 10.8998 -s 212 -d 211 -p tcp -e 1000 -i 108 -a 6 + -t 10.8998 -s 212 -d 211 -p tcp -e 1000 -i 109 -a 6 + -t 10.8998 -s 212 -d 211 -p tcp -e 1000 -i 110 -a 6 + -t 10.8998 -s 212 -d 211 -p tcp -e 1000 -i 111 -a 6 + -t 10.8998 -s 312 -d 311 -p tcp -e 1000 -i 108 -a 6 + -t 10.8998 -s 312 -d 311 -p tcp -e 1000 -i 109 -a 6 + -t 10.8998 -s 312 -d 311 -p tcp -e 1000 -i 110 -a 6 - -t 10.8998 -s 112 -d 111 -p tcp -e 1000 -i 108 -a 6 - -t 10.8998 -s 212 -d 211 -p tcp -e 1000 -i 108 -a 6 - -t 10.8998 -s 312 -d 311 -p tcp -e 1000 -i 108 -a 6 h -t 10.8998 -s 112 -d 111 -p tcp -e 1000 -i 108 -a 6 h -t 10.8998 -s 212 -d 211 -p tcp -e 1000 -i 108 -a 6 h -t 10.8998 -s 312 -d 311 -p tcp -e 1000 -i 108 -a 6 r -t 10.8998 -s 111 -d 112 -p ack -e 40 -i 97 -a 6 r -t 10.8998 -s 211 -d 212 -p ack -e 40 -i 99 -a 6 r -t 10.8998 -s 311 -d 312 -p ack -e 40 -i 97 -a 6 - -t 10.9006 -s 112 -d 111 -p tcp -e 1000 -i 109 -a 6 - -t 10.9006 -s 212 -d 211 -p tcp -e 1000 -i 109 -a 6 - -t 10.9006 -s 312 -d 311 -p tcp -e 1000 -i 109 -a 6 h -t 10.9006 -s 112 -d 111 -p tcp -e 1000 -i 109 -a 6 h -t 10.9006 -s 212 -d 211 -p tcp -e 1000 -i 109 -a 6 h -t 10.9006 -s 312 -d 311 -p tcp -e 1000 -i 109 -a 6 - -t 10.9014 -s 112 -d 111 -p tcp -e 1000 -i 110 -a 6 - -t 10.9014 -s 212 -d 211 -p tcp -e 1000 -i 110 -a 6 - -t 10.9014 -s 312 -d 311 -p tcp -e 1000 -i 110 -a 6 h -t 10.9014 -s 112 -d 111 -p tcp -e 1000 -i 110 -a 6 h -t 10.9014 -s 212 -d 211 -p tcp -e 1000 -i 110 -a 6 h -t 10.9014 -s 312 -d 311 -p tcp -e 1000 -i 110 -a 6 + -t 10.9016 -s 111 -d 110 -p tcp -e 1000 -i 108 -a 6 + -t 10.9016 -s 211 -d 210 -p tcp -e 1000 -i 108 -a 6 + -t 10.9016 -s 311 -d 310 -p tcp -e 1000 -i 108 -a 6 - -t 10.9016 -s 111 -d 110 -p tcp -e 1000 -i 108 -a 6 - -t 10.9016 -s 211 -d 210 -p tcp -e 1000 -i 108 -a 6 - -t 10.9016 -s 311 -d 310 -p tcp -e 1000 -i 108 -a 6 h -t 10.9016 -s 111 -d 110 -p tcp -e 1000 -i 108 -a 6 h -t 10.9016 -s 211 -d 210 -p tcp -e 1000 -i 108 -a 6 h -t 10.9016 -s 311 -d 310 -p tcp -e 1000 -i 108 -a 6 r -t 10.9018 -s 112 -d 111 -p tcp -e 1000 -i 108 -a 6 r -t 10.9018 -s 212 -d 211 -p tcp -e 1000 -i 108 -a 6 r -t 10.9018 -s 312 -d 311 -p tcp -e 1000 -i 108 -a 6 - -t 10.9022 -s 212 -d 211 -p tcp -e 1000 -i 111 -a 6 h -t 10.9022 -s 212 -d 211 -p tcp -e 1000 -i 111 -a 6 + -t 10.9024 -s 111 -d 110 -p tcp -e 1000 -i 109 -a 6 + -t 10.9024 -s 211 -d 210 -p tcp -e 1000 -i 109 -a 6 + -t 10.9024 -s 311 -d 310 -p tcp -e 1000 -i 109 -a 6 r -t 10.9026 -s 112 -d 111 -p tcp -e 1000 -i 109 -a 6 r -t 10.9026 -s 212 -d 211 -p tcp -e 1000 -i 109 -a 6 r -t 10.9026 -s 312 -d 311 -p tcp -e 1000 -i 109 -a 6 + -t 10.9032 -s 111 -d 110 -p tcp -e 1000 -i 110 -a 6 + -t 10.9032 -s 211 -d 210 -p tcp -e 1000 -i 110 -a 6 + -t 10.9032 -s 311 -d 310 -p tcp -e 1000 -i 110 -a 6 r -t 10.9034 -s 112 -d 111 -p tcp -e 1000 -i 110 -a 6 r -t 10.9034 -s 212 -d 211 -p tcp -e 1000 -i 110 -a 6 r -t 10.9034 -s 312 -d 311 -p tcp -e 1000 -i 110 -a 6 + -t 10.904 -s 211 -d 210 -p tcp -e 1000 -i 111 -a 6 r -t 10.9042 -s 212 -d 211 -p tcp -e 1000 -i 111 -a 6 - -t 10.9116 -s 111 -d 110 -p tcp -e 1000 -i 109 -a 6 - -t 10.9116 -s 211 -d 210 -p tcp -e 1000 -i 109 -a 6 - -t 10.9116 -s 311 -d 310 -p tcp -e 1000 -i 109 -a 6 h -t 10.9116 -s 111 -d 110 -p tcp -e 1000 -i 109 -a 6 h -t 10.9116 -s 211 -d 210 -p tcp -e 1000 -i 109 -a 6 h -t 10.9116 -s 311 -d 310 -p tcp -e 1000 -i 109 -a 6 + -t 10.9123 -s 110 -d 102 -p tcp -e 1000 -i 98 -a 2 + -t 10.9123 -s 310 -d 302 -p tcp -e 1000 -i 98 -a 2 - -t 10.9123 -s 110 -d 102 -p tcp -e 1000 -i 98 -a 2 - -t 10.9123 -s 310 -d 302 -p tcp -e 1000 -i 98 -a 2 h -t 10.9123 -s 110 -d 102 -p tcp -e 1000 -i 98 -a 2 h -t 10.9123 -s 310 -d 302 -p tcp -e 1000 -i 98 -a 2 r -t 10.9123 -s 111 -d 110 -p tcp -e 1000 -i 98 -a 2 r -t 10.9123 -s 311 -d 310 -p tcp -e 1000 -i 98 -a 2 + -t 10.9141 -s 102 -d 110 -p ack -e 40 -i 111 -a 2 + -t 10.9141 -s 302 -d 310 -p ack -e 40 -i 111 -a 2 - -t 10.9141 -s 102 -d 110 -p ack -e 40 -i 111 -a 2 - -t 10.9141 -s 302 -d 310 -p ack -e 40 -i 111 -a 2 h -t 10.9141 -s 102 -d 110 -p ack -e 40 -i 111 -a 2 h -t 10.9141 -s 302 -d 310 -p ack -e 40 -i 111 -a 2 r -t 10.9143 -s 110 -d 102 -p tcp -e 1000 -i 98 -a 2 r -t 10.9143 -s 310 -d 302 -p tcp -e 1000 -i 98 -a 2 + -t 10.9151 -s 110 -d 111 -p ack -e 40 -i 111 -a 2 + -t 10.9151 -s 310 -d 311 -p ack -e 40 -i 111 -a 2 - -t 10.9151 -s 110 -d 111 -p ack -e 40 -i 111 -a 2 - -t 10.9151 -s 310 -d 311 -p ack -e 40 -i 111 -a 2 h -t 10.9151 -s 110 -d 111 -p ack -e 40 -i 111 -a 2 h -t 10.9151 -s 310 -d 311 -p ack -e 40 -i 111 -a 2 r -t 10.9151 -s 102 -d 110 -p ack -e 40 -i 111 -a 2 r -t 10.9151 -s 302 -d 310 -p ack -e 40 -i 111 -a 2 + -t 10.9188 -s 111 -d 112 -p ack -e 40 -i 99 -a 7 + -t 10.9188 -s 211 -d 212 -p ack -e 40 -i 100 -a 7 + -t 10.9188 -s 311 -d 312 -p ack -e 40 -i 99 -a 7 - -t 10.9188 -s 111 -d 112 -p ack -e 40 -i 99 -a 7 - -t 10.9188 -s 211 -d 212 -p ack -e 40 -i 100 -a 7 - -t 10.9188 -s 311 -d 312 -p ack -e 40 -i 99 -a 7 h -t 10.9188 -s 111 -d 112 -p ack -e 40 -i 99 -a 7 h -t 10.9188 -s 211 -d 212 -p ack -e 40 -i 100 -a 7 h -t 10.9188 -s 311 -d 312 -p ack -e 40 -i 99 -a 7 r -t 10.9188 -s 110 -d 111 -p ack -e 40 -i 99 -a 7 r -t 10.9188 -s 210 -d 211 -p ack -e 40 -i 100 -a 7 r -t 10.9188 -s 310 -d 311 -p ack -e 40 -i 99 -a 7 + -t 10.9198 -s 112 -d 111 -p tcp -e 1000 -i 112 -a 7 + -t 10.9198 -s 112 -d 111 -p tcp -e 1000 -i 113 -a 7 + -t 10.9198 -s 112 -d 111 -p tcp -e 1000 -i 114 -a 7 + -t 10.9198 -s 212 -d 211 -p tcp -e 1000 -i 112 -a 7 + -t 10.9198 -s 212 -d 211 -p tcp -e 1000 -i 113 -a 7 + -t 10.9198 -s 212 -d 211 -p tcp -e 1000 -i 114 -a 7 + -t 10.9198 -s 212 -d 211 -p tcp -e 1000 -i 115 -a 7 + -t 10.9198 -s 312 -d 311 -p tcp -e 1000 -i 112 -a 7 + -t 10.9198 -s 312 -d 311 -p tcp -e 1000 -i 113 -a 7 + -t 10.9198 -s 312 -d 311 -p tcp -e 1000 -i 114 -a 7 - -t 10.9198 -s 112 -d 111 -p tcp -e 1000 -i 112 -a 7 - -t 10.9198 -s 212 -d 211 -p tcp -e 1000 -i 112 -a 7 - -t 10.9198 -s 312 -d 311 -p tcp -e 1000 -i 112 -a 7 h -t 10.9198 -s 112 -d 111 -p tcp -e 1000 -i 112 -a 7 h -t 10.9198 -s 212 -d 211 -p tcp -e 1000 -i 112 -a 7 h -t 10.9198 -s 312 -d 311 -p tcp -e 1000 -i 112 -a 7 r -t 10.9198 -s 111 -d 112 -p ack -e 40 -i 99 -a 7 r -t 10.9198 -s 211 -d 212 -p ack -e 40 -i 100 -a 7 r -t 10.9198 -s 311 -d 312 -p ack -e 40 -i 99 -a 7 - -t 10.9206 -s 112 -d 111 -p tcp -e 1000 -i 113 -a 7 - -t 10.9206 -s 212 -d 211 -p tcp -e 1000 -i 113 -a 7 - -t 10.9206 -s 312 -d 311 -p tcp -e 1000 -i 113 -a 7 h -t 10.9206 -s 112 -d 111 -p tcp -e 1000 -i 113 -a 7 h -t 10.9206 -s 212 -d 211 -p tcp -e 1000 -i 113 -a 7 h -t 10.9206 -s 312 -d 311 -p tcp -e 1000 -i 113 -a 7 - -t 10.9214 -s 112 -d 111 -p tcp -e 1000 -i 114 -a 7 - -t 10.9214 -s 212 -d 211 -p tcp -e 1000 -i 114 -a 7 - -t 10.9214 -s 312 -d 311 -p tcp -e 1000 -i 114 -a 7 h -t 10.9214 -s 112 -d 111 -p tcp -e 1000 -i 114 -a 7 h -t 10.9214 -s 212 -d 211 -p tcp -e 1000 -i 114 -a 7 h -t 10.9214 -s 312 -d 311 -p tcp -e 1000 -i 114 -a 7 + -t 10.9216 -s 111 -d 110 -p tcp -e 1000 -i 112 -a 7 + -t 10.9216 -s 211 -d 210 -p tcp -e 1000 -i 112 -a 7 + -t 10.9216 -s 311 -d 310 -p tcp -e 1000 -i 112 -a 7 - -t 10.9216 -s 111 -d 110 -p tcp -e 1000 -i 110 -a 6 - -t 10.9216 -s 211 -d 210 -p tcp -e 1000 -i 110 -a 6 - -t 10.9216 -s 311 -d 310 -p tcp -e 1000 -i 110 -a 6 h -t 10.9216 -s 111 -d 110 -p tcp -e 1000 -i 110 -a 6 h -t 10.9216 -s 211 -d 210 -p tcp -e 1000 -i 110 -a 6 h -t 10.9216 -s 311 -d 310 -p tcp -e 1000 -i 110 -a 6 r -t 10.9218 -s 112 -d 111 -p tcp -e 1000 -i 112 -a 7 r -t 10.9218 -s 212 -d 211 -p tcp -e 1000 -i 112 -a 7 r -t 10.9218 -s 312 -d 311 -p tcp -e 1000 -i 112 -a 7 - -t 10.9222 -s 212 -d 211 -p tcp -e 1000 -i 115 -a 7 h -t 10.9222 -s 212 -d 211 -p tcp -e 1000 -i 115 -a 7 + -t 10.9224 -s 111 -d 110 -p tcp -e 1000 -i 113 -a 7 + -t 10.9224 -s 211 -d 210 -p tcp -e 1000 -i 113 -a 7 + -t 10.9224 -s 311 -d 310 -p tcp -e 1000 -i 113 -a 7 r -t 10.9226 -s 112 -d 111 -p tcp -e 1000 -i 113 -a 7 r -t 10.9226 -s 212 -d 211 -p tcp -e 1000 -i 113 -a 7 r -t 10.9226 -s 312 -d 311 -p tcp -e 1000 -i 113 -a 7 + -t 10.9232 -s 111 -d 110 -p tcp -e 1000 -i 114 -a 7 + -t 10.9232 -s 211 -d 210 -p tcp -e 1000 -i 114 -a 7 + -t 10.9232 -s 311 -d 310 -p tcp -e 1000 -i 114 -a 7 r -t 10.9234 -s 112 -d 111 -p tcp -e 1000 -i 114 -a 7 r -t 10.9234 -s 212 -d 211 -p tcp -e 1000 -i 114 -a 7 r -t 10.9234 -s 312 -d 311 -p tcp -e 1000 -i 114 -a 7 + -t 10.924 -s 211 -d 210 -p tcp -e 1000 -i 115 -a 7 r -t 10.9242 -s 212 -d 211 -p tcp -e 1000 -i 115 -a 7 - -t 10.9316 -s 111 -d 110 -p tcp -e 1000 -i 112 -a 7 - -t 10.9316 -s 211 -d 210 -p tcp -e 1000 -i 111 -a 6 - -t 10.9316 -s 311 -d 310 -p tcp -e 1000 -i 112 -a 7 h -t 10.9316 -s 111 -d 110 -p tcp -e 1000 -i 112 -a 7 h -t 10.9316 -s 211 -d 210 -p tcp -e 1000 -i 111 -a 6 h -t 10.9316 -s 311 -d 310 -p tcp -e 1000 -i 112 -a 7 + -t 10.9388 -s 111 -d 112 -p ack -e 40 -i 105 -a 2 + -t 10.9388 -s 211 -d 212 -p ack -e 40 -i 106 -a 2 + -t 10.9388 -s 311 -d 312 -p ack -e 40 -i 105 -a 2 - -t 10.9388 -s 111 -d 112 -p ack -e 40 -i 105 -a 2 - -t 10.9388 -s 211 -d 212 -p ack -e 40 -i 106 -a 2 - -t 10.9388 -s 311 -d 312 -p ack -e 40 -i 105 -a 2 h -t 10.9388 -s 111 -d 112 -p ack -e 40 -i 105 -a 2 h -t 10.9388 -s 211 -d 212 -p ack -e 40 -i 106 -a 2 h -t 10.9388 -s 311 -d 312 -p ack -e 40 -i 105 -a 2 r -t 10.9388 -s 110 -d 111 -p ack -e 40 -i 105 -a 2 r -t 10.9388 -s 210 -d 211 -p ack -e 40 -i 106 -a 2 r -t 10.9388 -s 310 -d 311 -p ack -e 40 -i 105 -a 2 + -t 10.9391 -s 110 -d 101 -p tcp -e 1000 -i 100 -a 1 + -t 10.9391 -s 210 -d 201 -p tcp -e 1000 -i 101 -a 1 + -t 10.9391 -s 310 -d 301 -p tcp -e 1000 -i 100 -a 1 - -t 10.9391 -s 110 -d 101 -p tcp -e 1000 -i 100 -a 1 - -t 10.9391 -s 210 -d 201 -p tcp -e 1000 -i 101 -a 1 - -t 10.9391 -s 310 -d 301 -p tcp -e 1000 -i 100 -a 1 h -t 10.9391 -s 110 -d 101 -p tcp -e 1000 -i 100 -a 1 h -t 10.9391 -s 210 -d 201 -p tcp -e 1000 -i 101 -a 1 h -t 10.9391 -s 310 -d 301 -p tcp -e 1000 -i 100 -a 1 r -t 10.9391 -s 111 -d 110 -p tcp -e 1000 -i 100 -a 1 r -t 10.9391 -s 211 -d 210 -p tcp -e 1000 -i 101 -a 1 r -t 10.9391 -s 311 -d 310 -p tcp -e 1000 -i 100 -a 1 r -t 10.9398 -s 111 -d 112 -p ack -e 40 -i 105 -a 2 r -t 10.9398 -s 211 -d 212 -p ack -e 40 -i 106 -a 2 r -t 10.9398 -s 311 -d 312 -p ack -e 40 -i 105 -a 2 r -t 10.9411 -s 110 -d 101 -p tcp -e 1000 -i 100 -a 1 r -t 10.9411 -s 210 -d 201 -p tcp -e 1000 -i 101 -a 1 r -t 10.9411 -s 310 -d 301 -p tcp -e 1000 -i 100 -a 1 - -t 10.9416 -s 111 -d 110 -p tcp -e 1000 -i 113 -a 7 - -t 10.9416 -s 211 -d 210 -p tcp -e 1000 -i 112 -a 7 - -t 10.9416 -s 311 -d 310 -p tcp -e 1000 -i 113 -a 7 h -t 10.9416 -s 111 -d 110 -p tcp -e 1000 -i 113 -a 7 h -t 10.9416 -s 211 -d 210 -p tcp -e 1000 -i 112 -a 7 h -t 10.9416 -s 311 -d 310 -p tcp -e 1000 -i 113 -a 7 + -t 10.9427 -s 111 -d 112 -p ack -e 40 -i 106 -a 3 + -t 10.9427 -s 311 -d 312 -p ack -e 40 -i 106 -a 3 - -t 10.9427 -s 111 -d 112 -p ack -e 40 -i 106 -a 3 - -t 10.9427 -s 311 -d 312 -p ack -e 40 -i 106 -a 3 h -t 10.9427 -s 111 -d 112 -p ack -e 40 -i 106 -a 3 h -t 10.9427 -s 311 -d 312 -p ack -e 40 -i 106 -a 3 r -t 10.9427 -s 110 -d 111 -p ack -e 40 -i 106 -a 3 r -t 10.9427 -s 310 -d 311 -p ack -e 40 -i 106 -a 3 + -t 10.9437 -s 112 -d 111 -p tcp -e 1000 -i 115 -a 3 + -t 10.9437 -s 312 -d 311 -p tcp -e 1000 -i 115 -a 3 - -t 10.9437 -s 112 -d 111 -p tcp -e 1000 -i 115 -a 3 - -t 10.9437 -s 312 -d 311 -p tcp -e 1000 -i 115 -a 3 h -t 10.9437 -s 112 -d 111 -p tcp -e 1000 -i 115 -a 3 h -t 10.9437 -s 312 -d 311 -p tcp -e 1000 -i 115 -a 3 r -t 10.9437 -s 111 -d 112 -p ack -e 40 -i 106 -a 3 r -t 10.9437 -s 311 -d 312 -p ack -e 40 -i 106 -a 3 + -t 10.9455 -s 111 -d 110 -p tcp -e 1000 -i 115 -a 3 + -t 10.9455 -s 311 -d 310 -p tcp -e 1000 -i 115 -a 3 r -t 10.9457 -s 112 -d 111 -p tcp -e 1000 -i 115 -a 3 r -t 10.9457 -s 312 -d 311 -p tcp -e 1000 -i 115 -a 3 + -t 10.9474 -s 202 -d 210 -p ack -e 40 -i 116 -a 2 - -t 10.9474 -s 202 -d 210 -p ack -e 40 -i 116 -a 2 h -t 10.9474 -s 202 -d 210 -p ack -e 40 -i 116 -a 2 + -t 10.9484 -s 210 -d 211 -p ack -e 40 -i 116 -a 2 - -t 10.9484 -s 210 -d 211 -p ack -e 40 -i 116 -a 2 h -t 10.9484 -s 210 -d 211 -p ack -e 40 -i 116 -a 2 r -t 10.9484 -s 202 -d 210 -p ack -e 40 -i 116 -a 2 + -t 10.9491 -s 110 -d 101 -p tcp -e 1000 -i 101 -a 1 + -t 10.9491 -s 210 -d 201 -p tcp -e 1000 -i 102 -a 1 + -t 10.9491 -s 310 -d 301 -p tcp -e 1000 -i 101 -a 1 - -t 10.9491 -s 110 -d 101 -p tcp -e 1000 -i 101 -a 1 - -t 10.9491 -s 210 -d 201 -p tcp -e 1000 -i 102 -a 1 - -t 10.9491 -s 310 -d 301 -p tcp -e 1000 -i 101 -a 1 h -t 10.9491 -s 110 -d 101 -p tcp -e 1000 -i 101 -a 1 h -t 10.9491 -s 210 -d 201 -p tcp -e 1000 -i 102 -a 1 h -t 10.9491 -s 310 -d 301 -p tcp -e 1000 -i 101 -a 1 r -t 10.9491 -s 111 -d 110 -p tcp -e 1000 -i 101 -a 1 r -t 10.9491 -s 211 -d 210 -p tcp -e 1000 -i 102 -a 1 r -t 10.9491 -s 311 -d 310 -p tcp -e 1000 -i 101 -a 1 + -t 10.9509 -s 101 -d 110 -p ack -e 40 -i 116 -a 1 + -t 10.9509 -s 201 -d 210 -p ack -e 40 -i 117 -a 1 + -t 10.9509 -s 301 -d 310 -p ack -e 40 -i 116 -a 1 - -t 10.9509 -s 101 -d 110 -p ack -e 40 -i 116 -a 1 - -t 10.9509 -s 201 -d 210 -p ack -e 40 -i 117 -a 1 - -t 10.9509 -s 301 -d 310 -p ack -e 40 -i 116 -a 1 h -t 10.9509 -s 101 -d 110 -p ack -e 40 -i 116 -a 1 h -t 10.9509 -s 201 -d 210 -p ack -e 40 -i 117 -a 1 h -t 10.9509 -s 301 -d 310 -p ack -e 40 -i 116 -a 1 r -t 10.9511 -s 110 -d 101 -p tcp -e 1000 -i 101 -a 1 r -t 10.9511 -s 210 -d 201 -p tcp -e 1000 -i 102 -a 1 r -t 10.9511 -s 310 -d 301 -p tcp -e 1000 -i 101 -a 1 - -t 10.9516 -s 111 -d 110 -p tcp -e 1000 -i 114 -a 7 - -t 10.9516 -s 211 -d 210 -p tcp -e 1000 -i 113 -a 7 - -t 10.9516 -s 311 -d 310 -p tcp -e 1000 -i 114 -a 7 h -t 10.9516 -s 111 -d 110 -p tcp -e 1000 -i 114 -a 7 h -t 10.9516 -s 211 -d 210 -p tcp -e 1000 -i 113 -a 7 h -t 10.9516 -s 311 -d 310 -p tcp -e 1000 -i 114 -a 7 + -t 10.9519 -s 110 -d 111 -p ack -e 40 -i 116 -a 1 + -t 10.9519 -s 210 -d 211 -p ack -e 40 -i 117 -a 1 + -t 10.9519 -s 310 -d 311 -p ack -e 40 -i 116 -a 1 - -t 10.9519 -s 110 -d 111 -p ack -e 40 -i 116 -a 1 - -t 10.9519 -s 210 -d 211 -p ack -e 40 -i 117 -a 1 - -t 10.9519 -s 310 -d 311 -p ack -e 40 -i 116 -a 1 h -t 10.9519 -s 110 -d 111 -p ack -e 40 -i 116 -a 1 h -t 10.9519 -s 210 -d 211 -p ack -e 40 -i 117 -a 1 h -t 10.9519 -s 310 -d 311 -p ack -e 40 -i 116 -a 1 r -t 10.9519 -s 101 -d 110 -p ack -e 40 -i 116 -a 1 r -t 10.9519 -s 201 -d 210 -p ack -e 40 -i 117 -a 1 r -t 10.9519 -s 301 -d 310 -p ack -e 40 -i 116 -a 1 + -t 10.9591 -s 110 -d 103 -p tcp -e 1000 -i 102 -a 3 + -t 10.9591 -s 210 -d 203 -p tcp -e 1000 -i 103 -a 3 + -t 10.9591 -s 310 -d 303 -p tcp -e 1000 -i 102 -a 3 - -t 10.9591 -s 110 -d 103 -p tcp -e 1000 -i 102 -a 3 - -t 10.9591 -s 210 -d 203 -p tcp -e 1000 -i 103 -a 3 - -t 10.9591 -s 310 -d 303 -p tcp -e 1000 -i 102 -a 3 h -t 10.9591 -s 110 -d 103 -p tcp -e 1000 -i 102 -a 3 h -t 10.9591 -s 210 -d 203 -p tcp -e 1000 -i 103 -a 3 h -t 10.9591 -s 310 -d 303 -p tcp -e 1000 -i 102 -a 3 r -t 10.9591 -s 111 -d 110 -p tcp -e 1000 -i 102 -a 3 r -t 10.9591 -s 211 -d 210 -p tcp -e 1000 -i 103 -a 3 r -t 10.9591 -s 311 -d 310 -p tcp -e 1000 -i 102 -a 3 r -t 10.9611 -s 110 -d 103 -p tcp -e 1000 -i 102 -a 3 r -t 10.9611 -s 210 -d 203 -p tcp -e 1000 -i 103 -a 3 r -t 10.9611 -s 310 -d 303 -p tcp -e 1000 -i 102 -a 3 - -t 10.9616 -s 111 -d 110 -p tcp -e 1000 -i 115 -a 3 - -t 10.9616 -s 211 -d 210 -p tcp -e 1000 -i 114 -a 7 - -t 10.9616 -s 311 -d 310 -p tcp -e 1000 -i 115 -a 3 h -t 10.9616 -s 111 -d 110 -p tcp -e 1000 -i 115 -a 3 h -t 10.9616 -s 211 -d 210 -p tcp -e 1000 -i 114 -a 7 h -t 10.9616 -s 311 -d 310 -p tcp -e 1000 -i 115 -a 3 + -t 10.9691 -s 110 -d 103 -p tcp -e 1000 -i 103 -a 3 + -t 10.9691 -s 210 -d 203 -p tcp -e 1000 -i 104 -a 3 + -t 10.9691 -s 310 -d 303 -p tcp -e 1000 -i 103 -a 3 - -t 10.9691 -s 110 -d 103 -p tcp -e 1000 -i 103 -a 3 - -t 10.9691 -s 210 -d 203 -p tcp -e 1000 -i 104 -a 3 - -t 10.9691 -s 310 -d 303 -p tcp -e 1000 -i 103 -a 3 h -t 10.9691 -s 110 -d 103 -p tcp -e 1000 -i 103 -a 3 h -t 10.9691 -s 210 -d 203 -p tcp -e 1000 -i 104 -a 3 h -t 10.9691 -s 310 -d 303 -p tcp -e 1000 -i 103 -a 3 r -t 10.9691 -s 111 -d 110 -p tcp -e 1000 -i 103 -a 3 r -t 10.9691 -s 211 -d 210 -p tcp -e 1000 -i 104 -a 3 r -t 10.9691 -s 311 -d 310 -p tcp -e 1000 -i 103 -a 3 + -t 10.9709 -s 103 -d 110 -p ack -e 40 -i 117 -a 3 + -t 10.9709 -s 203 -d 210 -p ack -e 40 -i 118 -a 3 + -t 10.9709 -s 303 -d 310 -p ack -e 40 -i 117 -a 3 - -t 10.9709 -s 103 -d 110 -p ack -e 40 -i 117 -a 3 - -t 10.9709 -s 203 -d 210 -p ack -e 40 -i 118 -a 3 - -t 10.9709 -s 303 -d 310 -p ack -e 40 -i 117 -a 3 h -t 10.9709 -s 103 -d 110 -p ack -e 40 -i 117 -a 3 h -t 10.9709 -s 203 -d 210 -p ack -e 40 -i 118 -a 3 h -t 10.9709 -s 303 -d 310 -p ack -e 40 -i 117 -a 3 r -t 10.9711 -s 110 -d 103 -p tcp -e 1000 -i 103 -a 3 r -t 10.9711 -s 210 -d 203 -p tcp -e 1000 -i 104 -a 3 r -t 10.9711 -s 310 -d 303 -p tcp -e 1000 -i 103 -a 3 - -t 10.9716 -s 211 -d 210 -p tcp -e 1000 -i 115 -a 7 h -t 10.9716 -s 211 -d 210 -p tcp -e 1000 -i 115 -a 7 + -t 10.9719 -s 110 -d 111 -p ack -e 40 -i 117 -a 3 + -t 10.9719 -s 210 -d 211 -p ack -e 40 -i 118 -a 3 + -t 10.9719 -s 310 -d 311 -p ack -e 40 -i 117 -a 3 - -t 10.9719 -s 110 -d 111 -p ack -e 40 -i 117 -a 3 - -t 10.9719 -s 210 -d 211 -p ack -e 40 -i 118 -a 3 - -t 10.9719 -s 310 -d 311 -p ack -e 40 -i 117 -a 3 h -t 10.9719 -s 110 -d 111 -p ack -e 40 -i 117 -a 3 h -t 10.9719 -s 210 -d 211 -p ack -e 40 -i 118 -a 3 h -t 10.9719 -s 310 -d 311 -p ack -e 40 -i 117 -a 3 r -t 10.9719 -s 103 -d 110 -p ack -e 40 -i 117 -a 3 r -t 10.9719 -s 203 -d 210 -p ack -e 40 -i 118 -a 3 r -t 10.9719 -s 303 -d 310 -p ack -e 40 -i 117 -a 3 + -t 10.9791 -s 110 -d 103 -p tcp -e 1000 -i 104 -a 3 + -t 10.9791 -s 210 -d 203 -p tcp -e 1000 -i 105 -a 3 + -t 10.9791 -s 310 -d 303 -p tcp -e 1000 -i 104 -a 3 - -t 10.9791 -s 110 -d 103 -p tcp -e 1000 -i 104 -a 3 - -t 10.9791 -s 210 -d 203 -p tcp -e 1000 -i 105 -a 3 - -t 10.9791 -s 310 -d 303 -p tcp -e 1000 -i 104 -a 3 h -t 10.9791 -s 110 -d 103 -p tcp -e 1000 -i 104 -a 3 h -t 10.9791 -s 210 -d 203 -p tcp -e 1000 -i 105 -a 3 h -t 10.9791 -s 310 -d 303 -p tcp -e 1000 -i 104 -a 3 r -t 10.9791 -s 111 -d 110 -p tcp -e 1000 -i 104 -a 3 r -t 10.9791 -s 211 -d 210 -p tcp -e 1000 -i 105 -a 3 r -t 10.9791 -s 311 -d 310 -p tcp -e 1000 -i 104 -a 3 r -t 10.9811 -s 110 -d 103 -p tcp -e 1000 -i 104 -a 3 r -t 10.9811 -s 210 -d 203 -p tcp -e 1000 -i 105 -a 3 r -t 10.9811 -s 310 -d 303 -p tcp -e 1000 -i 104 -a 3 + -t 10.9891 -s 110 -d 108 -p tcp -e 1000 -i 107 -a 8 + -t 10.9891 -s 210 -d 208 -p tcp -e 1000 -i 107 -a 8 + -t 10.9891 -s 310 -d 308 -p tcp -e 1000 -i 107 -a 8 - -t 10.9891 -s 110 -d 108 -p tcp -e 1000 -i 107 -a 8 - -t 10.9891 -s 210 -d 208 -p tcp -e 1000 -i 107 -a 8 - -t 10.9891 -s 310 -d 308 -p tcp -e 1000 -i 107 -a 8 h -t 10.9891 -s 110 -d 108 -p tcp -e 1000 -i 107 -a 8 h -t 10.9891 -s 210 -d 208 -p tcp -e 1000 -i 107 -a 8 h -t 10.9891 -s 310 -d 308 -p tcp -e 1000 -i 107 -a 8 r -t 10.9891 -s 111 -d 110 -p tcp -e 1000 -i 107 -a 8 r -t 10.9891 -s 211 -d 210 -p tcp -e 1000 -i 107 -a 8 r -t 10.9891 -s 311 -d 310 -p tcp -e 1000 -i 107 -a 8 r -t 10.9911 -s 110 -d 108 -p tcp -e 1000 -i 107 -a 8 r -t 10.9911 -s 210 -d 208 -p tcp -e 1000 -i 107 -a 8 r -t 10.9911 -s 310 -d 308 -p tcp -e 1000 -i 107 -a 8 + -t 11.0116 -s 110 -d 106 -p tcp -e 1000 -i 108 -a 6 + -t 11.0116 -s 210 -d 206 -p tcp -e 1000 -i 108 -a 6 + -t 11.0116 -s 310 -d 306 -p tcp -e 1000 -i 108 -a 6 - -t 11.0116 -s 110 -d 106 -p tcp -e 1000 -i 108 -a 6 - -t 11.0116 -s 210 -d 206 -p tcp -e 1000 -i 108 -a 6 - -t 11.0116 -s 310 -d 306 -p tcp -e 1000 -i 108 -a 6 h -t 11.0116 -s 110 -d 106 -p tcp -e 1000 -i 108 -a 6 h -t 11.0116 -s 210 -d 206 -p tcp -e 1000 -i 108 -a 6 h -t 11.0116 -s 310 -d 306 -p tcp -e 1000 -i 108 -a 6 r -t 11.0116 -s 111 -d 110 -p tcp -e 1000 -i 108 -a 6 r -t 11.0116 -s 211 -d 210 -p tcp -e 1000 -i 108 -a 6 r -t 11.0116 -s 311 -d 310 -p tcp -e 1000 -i 108 -a 6 r -t 11.0136 -s 110 -d 106 -p tcp -e 1000 -i 108 -a 6 r -t 11.0136 -s 210 -d 206 -p tcp -e 1000 -i 108 -a 6 r -t 11.0136 -s 310 -d 306 -p tcp -e 1000 -i 108 -a 6 + -t 11.0155 -s 111 -d 112 -p ack -e 40 -i 111 -a 2 + -t 11.0155 -s 311 -d 312 -p ack -e 40 -i 111 -a 2 - -t 11.0155 -s 111 -d 112 -p ack -e 40 -i 111 -a 2 - -t 11.0155 -s 311 -d 312 -p ack -e 40 -i 111 -a 2 h -t 11.0155 -s 111 -d 112 -p ack -e 40 -i 111 -a 2 h -t 11.0155 -s 311 -d 312 -p ack -e 40 -i 111 -a 2 r -t 11.0155 -s 110 -d 111 -p ack -e 40 -i 111 -a 2 r -t 11.0155 -s 310 -d 311 -p ack -e 40 -i 111 -a 2 r -t 11.0165 -s 111 -d 112 -p ack -e 40 -i 111 -a 2 r -t 11.0165 -s 311 -d 312 -p ack -e 40 -i 111 -a 2 + -t 11.0216 -s 110 -d 106 -p tcp -e 1000 -i 109 -a 6 + -t 11.0216 -s 210 -d 206 -p tcp -e 1000 -i 109 -a 6 + -t 11.0216 -s 310 -d 306 -p tcp -e 1000 -i 109 -a 6 - -t 11.0216 -s 110 -d 106 -p tcp -e 1000 -i 109 -a 6 - -t 11.0216 -s 210 -d 206 -p tcp -e 1000 -i 109 -a 6 - -t 11.0216 -s 310 -d 306 -p tcp -e 1000 -i 109 -a 6 h -t 11.0216 -s 110 -d 106 -p tcp -e 1000 -i 109 -a 6 h -t 11.0216 -s 210 -d 206 -p tcp -e 1000 -i 109 -a 6 h -t 11.0216 -s 310 -d 306 -p tcp -e 1000 -i 109 -a 6 r -t 11.0216 -s 111 -d 110 -p tcp -e 1000 -i 109 -a 6 r -t 11.0216 -s 211 -d 210 -p tcp -e 1000 -i 109 -a 6 r -t 11.0216 -s 311 -d 310 -p tcp -e 1000 -i 109 -a 6 + -t 11.0234 -s 106 -d 110 -p ack -e 40 -i 118 -a 6 + -t 11.0234 -s 206 -d 210 -p ack -e 40 -i 119 -a 6 + -t 11.0234 -s 306 -d 310 -p ack -e 40 -i 118 -a 6 - -t 11.0234 -s 106 -d 110 -p ack -e 40 -i 118 -a 6 - -t 11.0234 -s 206 -d 210 -p ack -e 40 -i 119 -a 6 - -t 11.0234 -s 306 -d 310 -p ack -e 40 -i 118 -a 6 h -t 11.0234 -s 106 -d 110 -p ack -e 40 -i 118 -a 6 h -t 11.0234 -s 206 -d 210 -p ack -e 40 -i 119 -a 6 h -t 11.0234 -s 306 -d 310 -p ack -e 40 -i 118 -a 6 r -t 11.0236 -s 110 -d 106 -p tcp -e 1000 -i 109 -a 6 r -t 11.0236 -s 210 -d 206 -p tcp -e 1000 -i 109 -a 6 r -t 11.0236 -s 310 -d 306 -p tcp -e 1000 -i 109 -a 6 r -t 11.0244 -s 106 -d 110 -p ack -e 40 -i 118 -a 6 r -t 11.0244 -s 206 -d 210 -p ack -e 40 -i 119 -a 6 r -t 11.0244 -s 306 -d 310 -p ack -e 40 -i 118 -a 6 + -t 11.0245 -s 110 -d 111 -p ack -e 40 -i 118 -a 6 + -t 11.0245 -s 210 -d 211 -p ack -e 40 -i 119 -a 6 + -t 11.0245 -s 310 -d 311 -p ack -e 40 -i 118 -a 6 - -t 11.0245 -s 110 -d 111 -p ack -e 40 -i 118 -a 6 - -t 11.0245 -s 210 -d 211 -p ack -e 40 -i 119 -a 6 - -t 11.0245 -s 310 -d 311 -p ack -e 40 -i 118 -a 6 h -t 11.0245 -s 110 -d 111 -p ack -e 40 -i 118 -a 6 h -t 11.0245 -s 210 -d 211 -p ack -e 40 -i 119 -a 6 h -t 11.0245 -s 310 -d 311 -p ack -e 40 -i 118 -a 6 + -t 11.0316 -s 110 -d 106 -p tcp -e 1000 -i 110 -a 6 + -t 11.0316 -s 210 -d 206 -p tcp -e 1000 -i 110 -a 6 + -t 11.0316 -s 310 -d 306 -p tcp -e 1000 -i 110 -a 6 - -t 11.0316 -s 110 -d 106 -p tcp -e 1000 -i 110 -a 6 - -t 11.0316 -s 210 -d 206 -p tcp -e 1000 -i 110 -a 6 - -t 11.0316 -s 310 -d 306 -p tcp -e 1000 -i 110 -a 6 h -t 11.0316 -s 110 -d 106 -p tcp -e 1000 -i 110 -a 6 h -t 11.0316 -s 210 -d 206 -p tcp -e 1000 -i 110 -a 6 h -t 11.0316 -s 310 -d 306 -p tcp -e 1000 -i 110 -a 6 r -t 11.0316 -s 111 -d 110 -p tcp -e 1000 -i 110 -a 6 r -t 11.0316 -s 211 -d 210 -p tcp -e 1000 -i 110 -a 6 r -t 11.0316 -s 311 -d 310 -p tcp -e 1000 -i 110 -a 6 r -t 11.0336 -s 110 -d 106 -p tcp -e 1000 -i 110 -a 6 r -t 11.0336 -s 210 -d 206 -p tcp -e 1000 -i 110 -a 6 r -t 11.0336 -s 310 -d 306 -p tcp -e 1000 -i 110 -a 6 + -t 11.0416 -s 110 -d 107 -p tcp -e 1000 -i 112 -a 7 + -t 11.0416 -s 210 -d 206 -p tcp -e 1000 -i 111 -a 6 + -t 11.0416 -s 310 -d 307 -p tcp -e 1000 -i 112 -a 7 - -t 11.0416 -s 110 -d 107 -p tcp -e 1000 -i 112 -a 7 - -t 11.0416 -s 210 -d 206 -p tcp -e 1000 -i 111 -a 6 - -t 11.0416 -s 310 -d 307 -p tcp -e 1000 -i 112 -a 7 h -t 11.0416 -s 110 -d 107 -p tcp -e 1000 -i 112 -a 7 h -t 11.0416 -s 210 -d 206 -p tcp -e 1000 -i 111 -a 6 h -t 11.0416 -s 310 -d 307 -p tcp -e 1000 -i 112 -a 7 r -t 11.0416 -s 111 -d 110 -p tcp -e 1000 -i 112 -a 7 r -t 11.0416 -s 211 -d 210 -p tcp -e 1000 -i 111 -a 6 r -t 11.0416 -s 311 -d 310 -p tcp -e 1000 -i 112 -a 7 + -t 11.0434 -s 206 -d 210 -p ack -e 40 -i 120 -a 6 - -t 11.0434 -s 206 -d 210 -p ack -e 40 -i 120 -a 6 h -t 11.0434 -s 206 -d 210 -p ack -e 40 -i 120 -a 6 r -t 11.0436 -s 110 -d 107 -p tcp -e 1000 -i 112 -a 7 r -t 11.0436 -s 210 -d 206 -p tcp -e 1000 -i 111 -a 6 r -t 11.0436 -s 310 -d 307 -p tcp -e 1000 -i 112 -a 7 r -t 11.0444 -s 206 -d 210 -p ack -e 40 -i 120 -a 6 + -t 11.0445 -s 210 -d 211 -p ack -e 40 -i 120 -a 6 - -t 11.0445 -s 210 -d 211 -p ack -e 40 -i 120 -a 6 h -t 11.0445 -s 210 -d 211 -p ack -e 40 -i 120 -a 6 + -t 11.0488 -s 211 -d 212 -p ack -e 40 -i 116 -a 2 - -t 11.0488 -s 211 -d 212 -p ack -e 40 -i 116 -a 2 h -t 11.0488 -s 211 -d 212 -p ack -e 40 -i 116 -a 2 r -t 11.0488 -s 210 -d 211 -p ack -e 40 -i 116 -a 2 r -t 11.0498 -s 211 -d 212 -p ack -e 40 -i 116 -a 2 + -t 11.0516 -s 110 -d 107 -p tcp -e 1000 -i 113 -a 7 + -t 11.0516 -s 210 -d 207 -p tcp -e 1000 -i 112 -a 7 + -t 11.0516 -s 310 -d 307 -p tcp -e 1000 -i 113 -a 7 - -t 11.0516 -s 110 -d 107 -p tcp -e 1000 -i 113 -a 7 - -t 11.0516 -s 210 -d 207 -p tcp -e 1000 -i 112 -a 7 - -t 11.0516 -s 310 -d 307 -p tcp -e 1000 -i 113 -a 7 h -t 11.0516 -s 110 -d 107 -p tcp -e 1000 -i 113 -a 7 h -t 11.0516 -s 210 -d 207 -p tcp -e 1000 -i 112 -a 7 h -t 11.0516 -s 310 -d 307 -p tcp -e 1000 -i 113 -a 7 r -t 11.0516 -s 111 -d 110 -p tcp -e 1000 -i 113 -a 7 r -t 11.0516 -s 211 -d 210 -p tcp -e 1000 -i 112 -a 7 r -t 11.0516 -s 311 -d 310 -p tcp -e 1000 -i 113 -a 7 + -t 11.0523 -s 111 -d 112 -p ack -e 40 -i 116 -a 1 + -t 11.0523 -s 211 -d 212 -p ack -e 40 -i 117 -a 1 + -t 11.0523 -s 311 -d 312 -p ack -e 40 -i 116 -a 1 - -t 11.0523 -s 111 -d 112 -p ack -e 40 -i 116 -a 1 - -t 11.0523 -s 211 -d 212 -p ack -e 40 -i 117 -a 1 - -t 11.0523 -s 311 -d 312 -p ack -e 40 -i 116 -a 1 h -t 11.0523 -s 111 -d 112 -p ack -e 40 -i 116 -a 1 h -t 11.0523 -s 211 -d 212 -p ack -e 40 -i 117 -a 1 h -t 11.0523 -s 311 -d 312 -p ack -e 40 -i 116 -a 1 r -t 11.0523 -s 110 -d 111 -p ack -e 40 -i 116 -a 1 r -t 11.0523 -s 210 -d 211 -p ack -e 40 -i 117 -a 1 r -t 11.0523 -s 310 -d 311 -p ack -e 40 -i 116 -a 1 + -t 11.0533 -s 112 -d 111 -p tcp -e 1000 -i 119 -a 1 + -t 11.0533 -s 112 -d 111 -p tcp -e 1000 -i 120 -a 1 + -t 11.0533 -s 112 -d 111 -p tcp -e 1000 -i 121 -a 1 + -t 11.0533 -s 212 -d 211 -p tcp -e 1000 -i 121 -a 1 + -t 11.0533 -s 212 -d 211 -p tcp -e 1000 -i 122 -a 1 + -t 11.0533 -s 212 -d 211 -p tcp -e 1000 -i 123 -a 1 + -t 11.0533 -s 212 -d 211 -p tcp -e 1000 -i 124 -a 1 + -t 11.0533 -s 312 -d 311 -p tcp -e 1000 -i 119 -a 1 + -t 11.0533 -s 312 -d 311 -p tcp -e 1000 -i 120 -a 1 + -t 11.0533 -s 312 -d 311 -p tcp -e 1000 -i 121 -a 1 - -t 11.0533 -s 112 -d 111 -p tcp -e 1000 -i 119 -a 1 - -t 11.0533 -s 212 -d 211 -p tcp -e 1000 -i 121 -a 1 - -t 11.0533 -s 312 -d 311 -p tcp -e 1000 -i 119 -a 1 h -t 11.0533 -s 112 -d 111 -p tcp -e 1000 -i 119 -a 1 h -t 11.0533 -s 212 -d 211 -p tcp -e 1000 -i 121 -a 1 h -t 11.0533 -s 312 -d 311 -p tcp -e 1000 -i 119 -a 1 r -t 11.0533 -s 111 -d 112 -p ack -e 40 -i 116 -a 1 r -t 11.0533 -s 211 -d 212 -p ack -e 40 -i 117 -a 1 r -t 11.0533 -s 311 -d 312 -p ack -e 40 -i 116 -a 1 + -t 11.0534 -s 107 -d 110 -p ack -e 40 -i 122 -a 7 + -t 11.0534 -s 307 -d 310 -p ack -e 40 -i 122 -a 7 - -t 11.0534 -s 107 -d 110 -p ack -e 40 -i 122 -a 7 - -t 11.0534 -s 307 -d 310 -p ack -e 40 -i 122 -a 7 h -t 11.0534 -s 107 -d 110 -p ack -e 40 -i 122 -a 7 h -t 11.0534 -s 307 -d 310 -p ack -e 40 -i 122 -a 7 r -t 11.0536 -s 110 -d 107 -p tcp -e 1000 -i 113 -a 7 r -t 11.0536 -s 210 -d 207 -p tcp -e 1000 -i 112 -a 7 r -t 11.0536 -s 310 -d 307 -p tcp -e 1000 -i 113 -a 7 - -t 11.0541 -s 112 -d 111 -p tcp -e 1000 -i 120 -a 1 - -t 11.0541 -s 212 -d 211 -p tcp -e 1000 -i 122 -a 1 - -t 11.0541 -s 312 -d 311 -p tcp -e 1000 -i 120 -a 1 h -t 11.0541 -s 112 -d 111 -p tcp -e 1000 -i 120 -a 1 h -t 11.0541 -s 212 -d 211 -p tcp -e 1000 -i 122 -a 1 h -t 11.0541 -s 312 -d 311 -p tcp -e 1000 -i 120 -a 1 r -t 11.0544 -s 107 -d 110 -p ack -e 40 -i 122 -a 7 r -t 11.0544 -s 307 -d 310 -p ack -e 40 -i 122 -a 7 + -t 11.0545 -s 110 -d 111 -p ack -e 40 -i 122 -a 7 + -t 11.0545 -s 310 -d 311 -p ack -e 40 -i 122 -a 7 - -t 11.0545 -s 110 -d 111 -p ack -e 40 -i 122 -a 7 - -t 11.0545 -s 310 -d 311 -p ack -e 40 -i 122 -a 7 h -t 11.0545 -s 110 -d 111 -p ack -e 40 -i 122 -a 7 h -t 11.0545 -s 310 -d 311 -p ack -e 40 -i 122 -a 7 - -t 11.0549 -s 112 -d 111 -p tcp -e 1000 -i 121 -a 1 - -t 11.0549 -s 212 -d 211 -p tcp -e 1000 -i 123 -a 1 - -t 11.0549 -s 312 -d 311 -p tcp -e 1000 -i 121 -a 1 h -t 11.0549 -s 112 -d 111 -p tcp -e 1000 -i 121 -a 1 h -t 11.0549 -s 212 -d 211 -p tcp -e 1000 -i 123 -a 1 h -t 11.0549 -s 312 -d 311 -p tcp -e 1000 -i 121 -a 1 + -t 11.0551 -s 111 -d 110 -p tcp -e 1000 -i 119 -a 1 + -t 11.0551 -s 211 -d 210 -p tcp -e 1000 -i 121 -a 1 + -t 11.0551 -s 311 -d 310 -p tcp -e 1000 -i 119 -a 1 - -t 11.0551 -s 111 -d 110 -p tcp -e 1000 -i 119 -a 1 - -t 11.0551 -s 211 -d 210 -p tcp -e 1000 -i 121 -a 1 - -t 11.0551 -s 311 -d 310 -p tcp -e 1000 -i 119 -a 1 h -t 11.0551 -s 111 -d 110 -p tcp -e 1000 -i 119 -a 1 h -t 11.0551 -s 211 -d 210 -p tcp -e 1000 -i 121 -a 1 h -t 11.0551 -s 311 -d 310 -p tcp -e 1000 -i 119 -a 1 r -t 11.0553 -s 112 -d 111 -p tcp -e 1000 -i 119 -a 1 r -t 11.0553 -s 212 -d 211 -p tcp -e 1000 -i 121 -a 1 r -t 11.0553 -s 312 -d 311 -p tcp -e 1000 -i 119 -a 1 - -t 11.0557 -s 212 -d 211 -p tcp -e 1000 -i 124 -a 1 h -t 11.0557 -s 212 -d 211 -p tcp -e 1000 -i 124 -a 1 + -t 11.0559 -s 111 -d 110 -p tcp -e 1000 -i 120 -a 1 + -t 11.0559 -s 211 -d 210 -p tcp -e 1000 -i 122 -a 1 + -t 11.0559 -s 311 -d 310 -p tcp -e 1000 -i 120 -a 1 r -t 11.0561 -s 112 -d 111 -p tcp -e 1000 -i 120 -a 1 r -t 11.0561 -s 212 -d 211 -p tcp -e 1000 -i 122 -a 1 r -t 11.0561 -s 312 -d 311 -p tcp -e 1000 -i 120 -a 1 + -t 11.0567 -s 111 -d 110 -p tcp -e 1000 -i 121 -a 1 + -t 11.0567 -s 211 -d 210 -p tcp -e 1000 -i 123 -a 1 + -t 11.0567 -s 311 -d 310 -p tcp -e 1000 -i 121 -a 1 r -t 11.0569 -s 112 -d 111 -p tcp -e 1000 -i 121 -a 1 r -t 11.0569 -s 212 -d 211 -p tcp -e 1000 -i 123 -a 1 r -t 11.0569 -s 312 -d 311 -p tcp -e 1000 -i 121 -a 1 + -t 11.0575 -s 211 -d 210 -p tcp -e 1000 -i 124 -a 1 r -t 11.0577 -s 212 -d 211 -p tcp -e 1000 -i 124 -a 1 + -t 11.0616 -s 110 -d 107 -p tcp -e 1000 -i 114 -a 7 + -t 11.0616 -s 210 -d 207 -p tcp -e 1000 -i 113 -a 7 + -t 11.0616 -s 310 -d 307 -p tcp -e 1000 -i 114 -a 7 - -t 11.0616 -s 110 -d 107 -p tcp -e 1000 -i 114 -a 7 - -t 11.0616 -s 210 -d 207 -p tcp -e 1000 -i 113 -a 7 - -t 11.0616 -s 310 -d 307 -p tcp -e 1000 -i 114 -a 7 h -t 11.0616 -s 110 -d 107 -p tcp -e 1000 -i 114 -a 7 h -t 11.0616 -s 210 -d 207 -p tcp -e 1000 -i 113 -a 7 h -t 11.0616 -s 310 -d 307 -p tcp -e 1000 -i 114 -a 7 r -t 11.0616 -s 111 -d 110 -p tcp -e 1000 -i 114 -a 7 r -t 11.0616 -s 211 -d 210 -p tcp -e 1000 -i 113 -a 7 r -t 11.0616 -s 311 -d 310 -p tcp -e 1000 -i 114 -a 7 + -t 11.0634 -s 207 -d 210 -p ack -e 40 -i 125 -a 7 - -t 11.0634 -s 207 -d 210 -p ack -e 40 -i 125 -a 7 h -t 11.0634 -s 207 -d 210 -p ack -e 40 -i 125 -a 7 r -t 11.0636 -s 110 -d 107 -p tcp -e 1000 -i 114 -a 7 r -t 11.0636 -s 210 -d 207 -p tcp -e 1000 -i 113 -a 7 r -t 11.0636 -s 310 -d 307 -p tcp -e 1000 -i 114 -a 7 r -t 11.0644 -s 207 -d 210 -p ack -e 40 -i 125 -a 7 + -t 11.0645 -s 210 -d 211 -p ack -e 40 -i 125 -a 7 - -t 11.0645 -s 210 -d 211 -p ack -e 40 -i 125 -a 7 h -t 11.0645 -s 210 -d 211 -p ack -e 40 -i 125 -a 7 - -t 11.0651 -s 111 -d 110 -p tcp -e 1000 -i 120 -a 1 - -t 11.0651 -s 211 -d 210 -p tcp -e 1000 -i 122 -a 1 - -t 11.0651 -s 311 -d 310 -p tcp -e 1000 -i 120 -a 1 h -t 11.0651 -s 111 -d 110 -p tcp -e 1000 -i 120 -a 1 h -t 11.0651 -s 211 -d 210 -p tcp -e 1000 -i 122 -a 1 h -t 11.0651 -s 311 -d 310 -p tcp -e 1000 -i 120 -a 1 + -t 11.0716 -s 110 -d 103 -p tcp -e 1000 -i 115 -a 3 + -t 11.0716 -s 210 -d 207 -p tcp -e 1000 -i 114 -a 7 + -t 11.0716 -s 310 -d 303 -p tcp -e 1000 -i 115 -a 3 - -t 11.0716 -s 110 -d 103 -p tcp -e 1000 -i 115 -a 3 - -t 11.0716 -s 210 -d 207 -p tcp -e 1000 -i 114 -a 7 - -t 11.0716 -s 310 -d 303 -p tcp -e 1000 -i 115 -a 3 h -t 11.0716 -s 110 -d 103 -p tcp -e 1000 -i 115 -a 3 h -t 11.0716 -s 210 -d 207 -p tcp -e 1000 -i 114 -a 7 h -t 11.0716 -s 310 -d 303 -p tcp -e 1000 -i 115 -a 3 r -t 11.0716 -s 111 -d 110 -p tcp -e 1000 -i 115 -a 3 r -t 11.0716 -s 211 -d 210 -p tcp -e 1000 -i 114 -a 7 r -t 11.0716 -s 311 -d 310 -p tcp -e 1000 -i 115 -a 3 + -t 11.0723 -s 111 -d 112 -p ack -e 40 -i 117 -a 3 + -t 11.0723 -s 211 -d 212 -p ack -e 40 -i 118 -a 3 + -t 11.0723 -s 311 -d 312 -p ack -e 40 -i 117 -a 3 - -t 11.0723 -s 111 -d 112 -p ack -e 40 -i 117 -a 3 - -t 11.0723 -s 211 -d 212 -p ack -e 40 -i 118 -a 3 - -t 11.0723 -s 311 -d 312 -p ack -e 40 -i 117 -a 3 h -t 11.0723 -s 111 -d 112 -p ack -e 40 -i 117 -a 3 h -t 11.0723 -s 211 -d 212 -p ack -e 40 -i 118 -a 3 h -t 11.0723 -s 311 -d 312 -p ack -e 40 -i 117 -a 3 r -t 11.0723 -s 110 -d 111 -p ack -e 40 -i 117 -a 3 r -t 11.0723 -s 210 -d 211 -p ack -e 40 -i 118 -a 3 r -t 11.0723 -s 310 -d 311 -p ack -e 40 -i 117 -a 3 r -t 11.0733 -s 111 -d 112 -p ack -e 40 -i 117 -a 3 r -t 11.0733 -s 211 -d 212 -p ack -e 40 -i 118 -a 3 r -t 11.0733 -s 311 -d 312 -p ack -e 40 -i 117 -a 3 + -t 11.0734 -s 103 -d 110 -p ack -e 40 -i 123 -a 3 + -t 11.0734 -s 303 -d 310 -p ack -e 40 -i 123 -a 3 - -t 11.0734 -s 103 -d 110 -p ack -e 40 -i 123 -a 3 - -t 11.0734 -s 303 -d 310 -p ack -e 40 -i 123 -a 3 h -t 11.0734 -s 103 -d 110 -p ack -e 40 -i 123 -a 3 h -t 11.0734 -s 303 -d 310 -p ack -e 40 -i 123 -a 3 r -t 11.0736 -s 110 -d 103 -p tcp -e 1000 -i 115 -a 3 r -t 11.0736 -s 210 -d 207 -p tcp -e 1000 -i 114 -a 7 r -t 11.0736 -s 310 -d 303 -p tcp -e 1000 -i 115 -a 3 r -t 11.0744 -s 103 -d 110 -p ack -e 40 -i 123 -a 3 r -t 11.0744 -s 303 -d 310 -p ack -e 40 -i 123 -a 3 + -t 11.0745 -s 110 -d 111 -p ack -e 40 -i 123 -a 3 + -t 11.0745 -s 310 -d 311 -p ack -e 40 -i 123 -a 3 - -t 11.0745 -s 110 -d 111 -p ack -e 40 -i 123 -a 3 - -t 11.0745 -s 310 -d 311 -p ack -e 40 -i 123 -a 3 h -t 11.0745 -s 110 -d 111 -p ack -e 40 -i 123 -a 3 h -t 11.0745 -s 310 -d 311 -p ack -e 40 -i 123 -a 3 - -t 11.0751 -s 111 -d 110 -p tcp -e 1000 -i 121 -a 1 - -t 11.0751 -s 211 -d 210 -p tcp -e 1000 -i 123 -a 1 - -t 11.0751 -s 311 -d 310 -p tcp -e 1000 -i 121 -a 1 h -t 11.0751 -s 111 -d 110 -p tcp -e 1000 -i 121 -a 1 h -t 11.0751 -s 211 -d 210 -p tcp -e 1000 -i 123 -a 1 h -t 11.0751 -s 311 -d 310 -p tcp -e 1000 -i 121 -a 1 + -t 11.0809 -s 203 -d 210 -p ack -e 40 -i 126 -a 3 - -t 11.0809 -s 203 -d 210 -p ack -e 40 -i 126 -a 3 h -t 11.0809 -s 203 -d 210 -p ack -e 40 -i 126 -a 3 + -t 11.0816 -s 210 -d 207 -p tcp -e 1000 -i 115 -a 7 - -t 11.0816 -s 210 -d 207 -p tcp -e 1000 -i 115 -a 7 h -t 11.0816 -s 210 -d 207 -p tcp -e 1000 -i 115 -a 7 r -t 11.0816 -s 211 -d 210 -p tcp -e 1000 -i 115 -a 7 + -t 11.0819 -s 210 -d 211 -p ack -e 40 -i 126 -a 3 - -t 11.0819 -s 210 -d 211 -p ack -e 40 -i 126 -a 3 h -t 11.0819 -s 210 -d 211 -p ack -e 40 -i 126 -a 3 r -t 11.0819 -s 203 -d 210 -p ack -e 40 -i 126 -a 3 + -t 11.0834 -s 207 -d 210 -p ack -e 40 -i 127 -a 7 - -t 11.0834 -s 207 -d 210 -p ack -e 40 -i 127 -a 7 h -t 11.0834 -s 207 -d 210 -p ack -e 40 -i 127 -a 7 r -t 11.0836 -s 210 -d 207 -p tcp -e 1000 -i 115 -a 7 r -t 11.0844 -s 207 -d 210 -p ack -e 40 -i 127 -a 7 + -t 11.0845 -s 210 -d 211 -p ack -e 40 -i 127 -a 7 - -t 11.0845 -s 210 -d 211 -p ack -e 40 -i 127 -a 7 h -t 11.0845 -s 210 -d 211 -p ack -e 40 -i 127 -a 7 - -t 11.0851 -s 211 -d 210 -p tcp -e 1000 -i 124 -a 1 h -t 11.0851 -s 211 -d 210 -p tcp -e 1000 -i 124 -a 1 + -t 11.0909 -s 108 -d 110 -p ack -e 40 -i 124 -a 8 + -t 11.0909 -s 208 -d 210 -p ack -e 40 -i 128 -a 8 + -t 11.0909 -s 308 -d 310 -p ack -e 40 -i 124 -a 8 - -t 11.0909 -s 108 -d 110 -p ack -e 40 -i 124 -a 8 - -t 11.0909 -s 208 -d 210 -p ack -e 40 -i 128 -a 8 - -t 11.0909 -s 308 -d 310 -p ack -e 40 -i 124 -a 8 h -t 11.0909 -s 108 -d 110 -p ack -e 40 -i 124 -a 8 h -t 11.0909 -s 208 -d 210 -p ack -e 40 -i 128 -a 8 h -t 11.0909 -s 308 -d 310 -p ack -e 40 -i 124 -a 8 + -t 11.0919 -s 110 -d 111 -p ack -e 40 -i 124 -a 8 + -t 11.0919 -s 210 -d 211 -p ack -e 40 -i 128 -a 8 + -t 11.0919 -s 310 -d 311 -p ack -e 40 -i 124 -a 8 - -t 11.0919 -s 110 -d 111 -p ack -e 40 -i 124 -a 8 - -t 11.0919 -s 210 -d 211 -p ack -e 40 -i 128 -a 8 - -t 11.0919 -s 310 -d 311 -p ack -e 40 -i 124 -a 8 h -t 11.0919 -s 110 -d 111 -p ack -e 40 -i 124 -a 8 h -t 11.0919 -s 210 -d 211 -p ack -e 40 -i 128 -a 8 h -t 11.0919 -s 310 -d 311 -p ack -e 40 -i 124 -a 8 r -t 11.0919 -s 108 -d 110 -p ack -e 40 -i 124 -a 8 r -t 11.0919 -s 208 -d 210 -p ack -e 40 -i 128 -a 8 r -t 11.0919 -s 308 -d 310 -p ack -e 40 -i 124 -a 8 + -t 11.1249 -s 111 -d 112 -p ack -e 40 -i 118 -a 6 + -t 11.1249 -s 211 -d 212 -p ack -e 40 -i 119 -a 6 + -t 11.1249 -s 311 -d 312 -p ack -e 40 -i 118 -a 6 - -t 11.1249 -s 111 -d 112 -p ack -e 40 -i 118 -a 6 - -t 11.1249 -s 211 -d 212 -p ack -e 40 -i 119 -a 6 - -t 11.1249 -s 311 -d 312 -p ack -e 40 -i 118 -a 6 h -t 11.1249 -s 111 -d 112 -p ack -e 40 -i 118 -a 6 h -t 11.1249 -s 211 -d 212 -p ack -e 40 -i 119 -a 6 h -t 11.1249 -s 311 -d 312 -p ack -e 40 -i 118 -a 6 r -t 11.1249 -s 110 -d 111 -p ack -e 40 -i 118 -a 6 r -t 11.1249 -s 210 -d 211 -p ack -e 40 -i 119 -a 6 r -t 11.1249 -s 310 -d 311 -p ack -e 40 -i 118 -a 6 + -t 11.1259 -s 112 -d 111 -p tcp -e 1000 -i 125 -a 6 + -t 11.1259 -s 112 -d 111 -p tcp -e 1000 -i 126 -a 6 + -t 11.1259 -s 112 -d 111 -p tcp -e 1000 -i 127 -a 6 + -t 11.1259 -s 212 -d 211 -p tcp -e 1000 -i 129 -a 6 + -t 11.1259 -s 212 -d 211 -p tcp -e 1000 -i 130 -a 6 + -t 11.1259 -s 212 -d 211 -p tcp -e 1000 -i 131 -a 6 + -t 11.1259 -s 312 -d 311 -p tcp -e 1000 -i 125 -a 6 + -t 11.1259 -s 312 -d 311 -p tcp -e 1000 -i 126 -a 6 + -t 11.1259 -s 312 -d 311 -p tcp -e 1000 -i 127 -a 6 - -t 11.1259 -s 112 -d 111 -p tcp -e 1000 -i 125 -a 6 - -t 11.1259 -s 212 -d 211 -p tcp -e 1000 -i 129 -a 6 - -t 11.1259 -s 312 -d 311 -p tcp -e 1000 -i 125 -a 6 h -t 11.1259 -s 112 -d 111 -p tcp -e 1000 -i 125 -a 6 h -t 11.1259 -s 212 -d 211 -p tcp -e 1000 -i 129 -a 6 h -t 11.1259 -s 312 -d 311 -p tcp -e 1000 -i 125 -a 6 r -t 11.1259 -s 111 -d 112 -p ack -e 40 -i 118 -a 6 r -t 11.1259 -s 211 -d 212 -p ack -e 40 -i 119 -a 6 r -t 11.1259 -s 311 -d 312 -p ack -e 40 -i 118 -a 6 - -t 11.1267 -s 112 -d 111 -p tcp -e 1000 -i 126 -a 6 - -t 11.1267 -s 212 -d 211 -p tcp -e 1000 -i 130 -a 6 - -t 11.1267 -s 312 -d 311 -p tcp -e 1000 -i 126 -a 6 h -t 11.1267 -s 112 -d 111 -p tcp -e 1000 -i 126 -a 6 h -t 11.1267 -s 212 -d 211 -p tcp -e 1000 -i 130 -a 6 h -t 11.1267 -s 312 -d 311 -p tcp -e 1000 -i 126 -a 6 - -t 11.1275 -s 112 -d 111 -p tcp -e 1000 -i 127 -a 6 - -t 11.1275 -s 212 -d 211 -p tcp -e 1000 -i 131 -a 6 - -t 11.1275 -s 312 -d 311 -p tcp -e 1000 -i 127 -a 6 h -t 11.1275 -s 112 -d 111 -p tcp -e 1000 -i 127 -a 6 h -t 11.1275 -s 212 -d 211 -p tcp -e 1000 -i 131 -a 6 h -t 11.1275 -s 312 -d 311 -p tcp -e 1000 -i 127 -a 6 + -t 11.1277 -s 111 -d 110 -p tcp -e 1000 -i 125 -a 6 + -t 11.1277 -s 211 -d 210 -p tcp -e 1000 -i 129 -a 6 + -t 11.1277 -s 311 -d 310 -p tcp -e 1000 -i 125 -a 6 - -t 11.1277 -s 111 -d 110 -p tcp -e 1000 -i 125 -a 6 - -t 11.1277 -s 211 -d 210 -p tcp -e 1000 -i 129 -a 6 - -t 11.1277 -s 311 -d 310 -p tcp -e 1000 -i 125 -a 6 h -t 11.1277 -s 111 -d 110 -p tcp -e 1000 -i 125 -a 6 h -t 11.1277 -s 211 -d 210 -p tcp -e 1000 -i 129 -a 6 h -t 11.1277 -s 311 -d 310 -p tcp -e 1000 -i 125 -a 6 r -t 11.1279 -s 112 -d 111 -p tcp -e 1000 -i 125 -a 6 r -t 11.1279 -s 212 -d 211 -p tcp -e 1000 -i 129 -a 6 r -t 11.1279 -s 312 -d 311 -p tcp -e 1000 -i 125 -a 6 + -t 11.1285 -s 111 -d 110 -p tcp -e 1000 -i 126 -a 6 + -t 11.1285 -s 211 -d 210 -p tcp -e 1000 -i 130 -a 6 + -t 11.1285 -s 311 -d 310 -p tcp -e 1000 -i 126 -a 6 r -t 11.1287 -s 112 -d 111 -p tcp -e 1000 -i 126 -a 6 r -t 11.1287 -s 212 -d 211 -p tcp -e 1000 -i 130 -a 6 r -t 11.1287 -s 312 -d 311 -p tcp -e 1000 -i 126 -a 6 + -t 11.1293 -s 111 -d 110 -p tcp -e 1000 -i 127 -a 6 + -t 11.1293 -s 211 -d 210 -p tcp -e 1000 -i 131 -a 6 + -t 11.1293 -s 311 -d 310 -p tcp -e 1000 -i 127 -a 6 r -t 11.1295 -s 112 -d 111 -p tcp -e 1000 -i 127 -a 6 r -t 11.1295 -s 212 -d 211 -p tcp -e 1000 -i 131 -a 6 r -t 11.1295 -s 312 -d 311 -p tcp -e 1000 -i 127 -a 6 + -t 11.1334 -s 106 -d 110 -p ack -e 40 -i 128 -a 6 + -t 11.1334 -s 306 -d 310 -p ack -e 40 -i 128 -a 6 - -t 11.1334 -s 106 -d 110 -p ack -e 40 -i 128 -a 6 - -t 11.1334 -s 306 -d 310 -p ack -e 40 -i 128 -a 6 h -t 11.1334 -s 106 -d 110 -p ack -e 40 -i 128 -a 6 h -t 11.1334 -s 306 -d 310 -p ack -e 40 -i 128 -a 6 r -t 11.1344 -s 106 -d 110 -p ack -e 40 -i 128 -a 6 r -t 11.1344 -s 306 -d 310 -p ack -e 40 -i 128 -a 6 + -t 11.1345 -s 110 -d 111 -p ack -e 40 -i 128 -a 6 + -t 11.1345 -s 310 -d 311 -p ack -e 40 -i 128 -a 6 - -t 11.1345 -s 110 -d 111 -p ack -e 40 -i 128 -a 6 - -t 11.1345 -s 310 -d 311 -p ack -e 40 -i 128 -a 6 h -t 11.1345 -s 110 -d 111 -p ack -e 40 -i 128 -a 6 h -t 11.1345 -s 310 -d 311 -p ack -e 40 -i 128 -a 6 - -t 11.1377 -s 111 -d 110 -p tcp -e 1000 -i 126 -a 6 - -t 11.1377 -s 211 -d 210 -p tcp -e 1000 -i 130 -a 6 - -t 11.1377 -s 311 -d 310 -p tcp -e 1000 -i 126 -a 6 h -t 11.1377 -s 111 -d 110 -p tcp -e 1000 -i 126 -a 6 h -t 11.1377 -s 211 -d 210 -p tcp -e 1000 -i 130 -a 6 h -t 11.1377 -s 311 -d 310 -p tcp -e 1000 -i 126 -a 6 + -t 11.1449 -s 211 -d 212 -p ack -e 40 -i 120 -a 6 - -t 11.1449 -s 211 -d 212 -p ack -e 40 -i 120 -a 6 h -t 11.1449 -s 211 -d 212 -p ack -e 40 -i 120 -a 6 r -t 11.1449 -s 210 -d 211 -p ack -e 40 -i 120 -a 6 r -t 11.1459 -s 211 -d 212 -p ack -e 40 -i 120 -a 6 - -t 11.1477 -s 111 -d 110 -p tcp -e 1000 -i 127 -a 6 - -t 11.1477 -s 211 -d 210 -p tcp -e 1000 -i 131 -a 6 - -t 11.1477 -s 311 -d 310 -p tcp -e 1000 -i 127 -a 6 h -t 11.1477 -s 111 -d 110 -p tcp -e 1000 -i 127 -a 6 h -t 11.1477 -s 211 -d 210 -p tcp -e 1000 -i 131 -a 6 h -t 11.1477 -s 311 -d 310 -p tcp -e 1000 -i 127 -a 6 + -t 11.1549 -s 111 -d 112 -p ack -e 40 -i 122 -a 7 + -t 11.1549 -s 311 -d 312 -p ack -e 40 -i 122 -a 7 - -t 11.1549 -s 111 -d 112 -p ack -e 40 -i 122 -a 7 - -t 11.1549 -s 311 -d 312 -p ack -e 40 -i 122 -a 7 h -t 11.1549 -s 111 -d 112 -p ack -e 40 -i 122 -a 7 h -t 11.1549 -s 311 -d 312 -p ack -e 40 -i 122 -a 7 r -t 11.1549 -s 110 -d 111 -p ack -e 40 -i 122 -a 7 r -t 11.1549 -s 310 -d 311 -p ack -e 40 -i 122 -a 7 + -t 11.1559 -s 112 -d 111 -p tcp -e 1000 -i 129 -a 7 + -t 11.1559 -s 112 -d 111 -p tcp -e 1000 -i 130 -a 7 + -t 11.1559 -s 112 -d 111 -p tcp -e 1000 -i 131 -a 7 + -t 11.1559 -s 312 -d 311 -p tcp -e 1000 -i 129 -a 7 + -t 11.1559 -s 312 -d 311 -p tcp -e 1000 -i 130 -a 7 + -t 11.1559 -s 312 -d 311 -p tcp -e 1000 -i 131 -a 7 - -t 11.1559 -s 112 -d 111 -p tcp -e 1000 -i 129 -a 7 - -t 11.1559 -s 312 -d 311 -p tcp -e 1000 -i 129 -a 7 h -t 11.1559 -s 112 -d 111 -p tcp -e 1000 -i 129 -a 7 h -t 11.1559 -s 312 -d 311 -p tcp -e 1000 -i 129 -a 7 r -t 11.1559 -s 111 -d 112 -p ack -e 40 -i 122 -a 7 r -t 11.1559 -s 311 -d 312 -p ack -e 40 -i 122 -a 7 - -t 11.1567 -s 112 -d 111 -p tcp -e 1000 -i 130 -a 7 - -t 11.1567 -s 312 -d 311 -p tcp -e 1000 -i 130 -a 7 h -t 11.1567 -s 112 -d 111 -p tcp -e 1000 -i 130 -a 7 h -t 11.1567 -s 312 -d 311 -p tcp -e 1000 -i 130 -a 7 - -t 11.1575 -s 112 -d 111 -p tcp -e 1000 -i 131 -a 7 - -t 11.1575 -s 312 -d 311 -p tcp -e 1000 -i 131 -a 7 h -t 11.1575 -s 112 -d 111 -p tcp -e 1000 -i 131 -a 7 h -t 11.1575 -s 312 -d 311 -p tcp -e 1000 -i 131 -a 7 + -t 11.1577 -s 111 -d 110 -p tcp -e 1000 -i 129 -a 7 + -t 11.1577 -s 311 -d 310 -p tcp -e 1000 -i 129 -a 7 - -t 11.1577 -s 111 -d 110 -p tcp -e 1000 -i 129 -a 7 - -t 11.1577 -s 311 -d 310 -p tcp -e 1000 -i 129 -a 7 h -t 11.1577 -s 111 -d 110 -p tcp -e 1000 -i 129 -a 7 h -t 11.1577 -s 311 -d 310 -p tcp -e 1000 -i 129 -a 7 r -t 11.1579 -s 112 -d 111 -p tcp -e 1000 -i 129 -a 7 r -t 11.1579 -s 312 -d 311 -p tcp -e 1000 -i 129 -a 7 + -t 11.1585 -s 111 -d 110 -p tcp -e 1000 -i 130 -a 7 + -t 11.1585 -s 311 -d 310 -p tcp -e 1000 -i 130 -a 7 r -t 11.1587 -s 112 -d 111 -p tcp -e 1000 -i 130 -a 7 r -t 11.1587 -s 312 -d 311 -p tcp -e 1000 -i 130 -a 7 + -t 11.1593 -s 111 -d 110 -p tcp -e 1000 -i 131 -a 7 + -t 11.1593 -s 311 -d 310 -p tcp -e 1000 -i 131 -a 7 r -t 11.1595 -s 112 -d 111 -p tcp -e 1000 -i 131 -a 7 r -t 11.1595 -s 312 -d 311 -p tcp -e 1000 -i 131 -a 7 + -t 11.1634 -s 107 -d 110 -p ack -e 40 -i 132 -a 7 + -t 11.1634 -s 307 -d 310 -p ack -e 40 -i 132 -a 7 - -t 11.1634 -s 107 -d 110 -p ack -e 40 -i 132 -a 7 - -t 11.1634 -s 307 -d 310 -p ack -e 40 -i 132 -a 7 h -t 11.1634 -s 107 -d 110 -p ack -e 40 -i 132 -a 7 h -t 11.1634 -s 307 -d 310 -p ack -e 40 -i 132 -a 7 r -t 11.1644 -s 107 -d 110 -p ack -e 40 -i 132 -a 7 r -t 11.1644 -s 307 -d 310 -p ack -e 40 -i 132 -a 7 + -t 11.1645 -s 110 -d 111 -p ack -e 40 -i 132 -a 7 + -t 11.1645 -s 310 -d 311 -p ack -e 40 -i 132 -a 7 - -t 11.1645 -s 110 -d 111 -p ack -e 40 -i 132 -a 7 - -t 11.1645 -s 310 -d 311 -p ack -e 40 -i 132 -a 7 h -t 11.1645 -s 110 -d 111 -p ack -e 40 -i 132 -a 7 h -t 11.1645 -s 310 -d 311 -p ack -e 40 -i 132 -a 7 + -t 11.1649 -s 211 -d 212 -p ack -e 40 -i 125 -a 7 - -t 11.1649 -s 211 -d 212 -p ack -e 40 -i 125 -a 7 h -t 11.1649 -s 211 -d 212 -p ack -e 40 -i 125 -a 7 r -t 11.1649 -s 210 -d 211 -p ack -e 40 -i 125 -a 7 + -t 11.1651 -s 110 -d 101 -p tcp -e 1000 -i 119 -a 1 + -t 11.1651 -s 210 -d 201 -p tcp -e 1000 -i 121 -a 1 + -t 11.1651 -s 310 -d 301 -p tcp -e 1000 -i 119 -a 1 - -t 11.1651 -s 110 -d 101 -p tcp -e 1000 -i 119 -a 1 - -t 11.1651 -s 210 -d 201 -p tcp -e 1000 -i 121 -a 1 - -t 11.1651 -s 310 -d 301 -p tcp -e 1000 -i 119 -a 1 h -t 11.1651 -s 110 -d 101 -p tcp -e 1000 -i 119 -a 1 h -t 11.1651 -s 210 -d 201 -p tcp -e 1000 -i 121 -a 1 h -t 11.1651 -s 310 -d 301 -p tcp -e 1000 -i 119 -a 1 r -t 11.1651 -s 111 -d 110 -p tcp -e 1000 -i 119 -a 1 r -t 11.1651 -s 211 -d 210 -p tcp -e 1000 -i 121 -a 1 r -t 11.1651 -s 311 -d 310 -p tcp -e 1000 -i 119 -a 1 + -t 11.1659 -s 212 -d 211 -p tcp -e 1000 -i 132 -a 7 + -t 11.1659 -s 212 -d 211 -p tcp -e 1000 -i 133 -a 7 + -t 11.1659 -s 212 -d 211 -p tcp -e 1000 -i 134 -a 7 - -t 11.1659 -s 212 -d 211 -p tcp -e 1000 -i 132 -a 7 h -t 11.1659 -s 212 -d 211 -p tcp -e 1000 -i 132 -a 7 r -t 11.1659 -s 211 -d 212 -p ack -e 40 -i 125 -a 7 - -t 11.1667 -s 212 -d 211 -p tcp -e 1000 -i 133 -a 7 h -t 11.1667 -s 212 -d 211 -p tcp -e 1000 -i 133 -a 7 r -t 11.1671 -s 110 -d 101 -p tcp -e 1000 -i 119 -a 1 r -t 11.1671 -s 210 -d 201 -p tcp -e 1000 -i 121 -a 1 r -t 11.1671 -s 310 -d 301 -p tcp -e 1000 -i 119 -a 1 - -t 11.1675 -s 212 -d 211 -p tcp -e 1000 -i 134 -a 7 h -t 11.1675 -s 212 -d 211 -p tcp -e 1000 -i 134 -a 7 + -t 11.1677 -s 211 -d 210 -p tcp -e 1000 -i 132 -a 7 - -t 11.1677 -s 111 -d 110 -p tcp -e 1000 -i 130 -a 7 - -t 11.1677 -s 211 -d 210 -p tcp -e 1000 -i 132 -a 7 - -t 11.1677 -s 311 -d 310 -p tcp -e 1000 -i 130 -a 7 h -t 11.1677 -s 111 -d 110 -p tcp -e 1000 -i 130 -a 7 h -t 11.1677 -s 211 -d 210 -p tcp -e 1000 -i 132 -a 7 h -t 11.1677 -s 311 -d 310 -p tcp -e 1000 -i 130 -a 7 r -t 11.1679 -s 212 -d 211 -p tcp -e 1000 -i 132 -a 7 + -t 11.1685 -s 211 -d 210 -p tcp -e 1000 -i 133 -a 7 r -t 11.1687 -s 212 -d 211 -p tcp -e 1000 -i 133 -a 7 + -t 11.1693 -s 211 -d 210 -p tcp -e 1000 -i 134 -a 7 r -t 11.1695 -s 212 -d 211 -p tcp -e 1000 -i 134 -a 7 + -t 11.1749 -s 111 -d 112 -p ack -e 40 -i 123 -a 3 + -t 11.1749 -s 311 -d 312 -p ack -e 40 -i 123 -a 3 - -t 11.1749 -s 111 -d 112 -p ack -e 40 -i 123 -a 3 - -t 11.1749 -s 311 -d 312 -p ack -e 40 -i 123 -a 3 h -t 11.1749 -s 111 -d 112 -p ack -e 40 -i 123 -a 3 h -t 11.1749 -s 311 -d 312 -p ack -e 40 -i 123 -a 3 r -t 11.1749 -s 110 -d 111 -p ack -e 40 -i 123 -a 3 r -t 11.1749 -s 310 -d 311 -p ack -e 40 -i 123 -a 3 + -t 11.1751 -s 110 -d 101 -p tcp -e 1000 -i 120 -a 1 + -t 11.1751 -s 210 -d 201 -p tcp -e 1000 -i 122 -a 1 + -t 11.1751 -s 310 -d 301 -p tcp -e 1000 -i 120 -a 1 - -t 11.1751 -s 110 -d 101 -p tcp -e 1000 -i 120 -a 1 - -t 11.1751 -s 210 -d 201 -p tcp -e 1000 -i 122 -a 1 - -t 11.1751 -s 310 -d 301 -p tcp -e 1000 -i 120 -a 1 h -t 11.1751 -s 110 -d 101 -p tcp -e 1000 -i 120 -a 1 h -t 11.1751 -s 210 -d 201 -p tcp -e 1000 -i 122 -a 1 h -t 11.1751 -s 310 -d 301 -p tcp -e 1000 -i 120 -a 1 r -t 11.1751 -s 111 -d 110 -p tcp -e 1000 -i 120 -a 1 r -t 11.1751 -s 211 -d 210 -p tcp -e 1000 -i 122 -a 1 r -t 11.1751 -s 311 -d 310 -p tcp -e 1000 -i 120 -a 1 r -t 11.1759 -s 111 -d 112 -p ack -e 40 -i 123 -a 3 r -t 11.1759 -s 311 -d 312 -p ack -e 40 -i 123 -a 3 + -t 11.1769 -s 101 -d 110 -p ack -e 40 -i 133 -a 1 + -t 11.1769 -s 201 -d 210 -p ack -e 40 -i 135 -a 1 + -t 11.1769 -s 301 -d 310 -p ack -e 40 -i 133 -a 1 - -t 11.1769 -s 101 -d 110 -p ack -e 40 -i 133 -a 1 - -t 11.1769 -s 201 -d 210 -p ack -e 40 -i 135 -a 1 - -t 11.1769 -s 301 -d 310 -p ack -e 40 -i 133 -a 1 h -t 11.1769 -s 101 -d 110 -p ack -e 40 -i 133 -a 1 h -t 11.1769 -s 201 -d 210 -p ack -e 40 -i 135 -a 1 h -t 11.1769 -s 301 -d 310 -p ack -e 40 -i 133 -a 1 r -t 11.1771 -s 110 -d 101 -p tcp -e 1000 -i 120 -a 1 r -t 11.1771 -s 210 -d 201 -p tcp -e 1000 -i 122 -a 1 r -t 11.1771 -s 310 -d 301 -p tcp -e 1000 -i 120 -a 1 - -t 11.1777 -s 111 -d 110 -p tcp -e 1000 -i 131 -a 7 - -t 11.1777 -s 211 -d 210 -p tcp -e 1000 -i 133 -a 7 - -t 11.1777 -s 311 -d 310 -p tcp -e 1000 -i 131 -a 7 h -t 11.1777 -s 111 -d 110 -p tcp -e 1000 -i 131 -a 7 h -t 11.1777 -s 211 -d 210 -p tcp -e 1000 -i 133 -a 7 h -t 11.1777 -s 311 -d 310 -p tcp -e 1000 -i 131 -a 7 r -t 11.1779 -s 101 -d 110 -p ack -e 40 -i 133 -a 1 r -t 11.1779 -s 201 -d 210 -p ack -e 40 -i 135 -a 1 r -t 11.1779 -s 301 -d 310 -p ack -e 40 -i 133 -a 1 + -t 11.178 -s 110 -d 111 -p ack -e 40 -i 133 -a 1 + -t 11.178 -s 210 -d 211 -p ack -e 40 -i 135 -a 1 + -t 11.178 -s 310 -d 311 -p ack -e 40 -i 133 -a 1 - -t 11.178 -s 110 -d 111 -p ack -e 40 -i 133 -a 1 - -t 11.178 -s 210 -d 211 -p ack -e 40 -i 135 -a 1 - -t 11.178 -s 310 -d 311 -p ack -e 40 -i 133 -a 1 h -t 11.178 -s 110 -d 111 -p ack -e 40 -i 133 -a 1 h -t 11.178 -s 210 -d 211 -p ack -e 40 -i 135 -a 1 h -t 11.178 -s 310 -d 311 -p ack -e 40 -i 133 -a 1 + -t 11.1823 -s 211 -d 212 -p ack -e 40 -i 126 -a 3 - -t 11.1823 -s 211 -d 212 -p ack -e 40 -i 126 -a 3 h -t 11.1823 -s 211 -d 212 -p ack -e 40 -i 126 -a 3 r -t 11.1823 -s 210 -d 211 -p ack -e 40 -i 126 -a 3 r -t 11.1833 -s 211 -d 212 -p ack -e 40 -i 126 -a 3 + -t 11.1849 -s 211 -d 212 -p ack -e 40 -i 127 -a 7 - -t 11.1849 -s 211 -d 212 -p ack -e 40 -i 127 -a 7 h -t 11.1849 -s 211 -d 212 -p ack -e 40 -i 127 -a 7 r -t 11.1849 -s 210 -d 211 -p ack -e 40 -i 127 -a 7 + -t 11.1851 -s 110 -d 101 -p tcp -e 1000 -i 121 -a 1 + -t 11.1851 -s 210 -d 201 -p tcp -e 1000 -i 123 -a 1 + -t 11.1851 -s 310 -d 301 -p tcp -e 1000 -i 121 -a 1 - -t 11.1851 -s 110 -d 101 -p tcp -e 1000 -i 121 -a 1 - -t 11.1851 -s 210 -d 201 -p tcp -e 1000 -i 123 -a 1 - -t 11.1851 -s 310 -d 301 -p tcp -e 1000 -i 121 -a 1 h -t 11.1851 -s 110 -d 101 -p tcp -e 1000 -i 121 -a 1 h -t 11.1851 -s 210 -d 201 -p tcp -e 1000 -i 123 -a 1 h -t 11.1851 -s 310 -d 301 -p tcp -e 1000 -i 121 -a 1 r -t 11.1851 -s 111 -d 110 -p tcp -e 1000 -i 121 -a 1 r -t 11.1851 -s 211 -d 210 -p tcp -e 1000 -i 123 -a 1 r -t 11.1851 -s 311 -d 310 -p tcp -e 1000 -i 121 -a 1 r -t 11.1859 -s 211 -d 212 -p ack -e 40 -i 127 -a 7 r -t 11.1871 -s 110 -d 101 -p tcp -e 1000 -i 121 -a 1 r -t 11.1871 -s 210 -d 201 -p tcp -e 1000 -i 123 -a 1 r -t 11.1871 -s 310 -d 301 -p tcp -e 1000 -i 121 -a 1 - -t 11.1877 -s 211 -d 210 -p tcp -e 1000 -i 134 -a 7 h -t 11.1877 -s 211 -d 210 -p tcp -e 1000 -i 134 -a 7 + -t 11.1923 -s 111 -d 112 -p ack -e 40 -i 124 -a 8 + -t 11.1923 -s 211 -d 212 -p ack -e 40 -i 128 -a 8 + -t 11.1923 -s 311 -d 312 -p ack -e 40 -i 124 -a 8 - -t 11.1923 -s 111 -d 112 -p ack -e 40 -i 124 -a 8 - -t 11.1923 -s 211 -d 212 -p ack -e 40 -i 128 -a 8 - -t 11.1923 -s 311 -d 312 -p ack -e 40 -i 124 -a 8 h -t 11.1923 -s 111 -d 112 -p ack -e 40 -i 124 -a 8 h -t 11.1923 -s 211 -d 212 -p ack -e 40 -i 128 -a 8 h -t 11.1923 -s 311 -d 312 -p ack -e 40 -i 124 -a 8 r -t 11.1923 -s 110 -d 111 -p ack -e 40 -i 124 -a 8 r -t 11.1923 -s 210 -d 211 -p ack -e 40 -i 128 -a 8 r -t 11.1923 -s 310 -d 311 -p ack -e 40 -i 124 -a 8 + -t 11.1933 -s 112 -d 111 -p tcp -e 1000 -i 134 -a 8 + -t 11.1933 -s 112 -d 111 -p tcp -e 1000 -i 135 -a 8 + -t 11.1933 -s 212 -d 211 -p tcp -e 1000 -i 136 -a 8 + -t 11.1933 -s 212 -d 211 -p tcp -e 1000 -i 137 -a 8 + -t 11.1933 -s 312 -d 311 -p tcp -e 1000 -i 134 -a 8 + -t 11.1933 -s 312 -d 311 -p tcp -e 1000 -i 135 -a 8 - -t 11.1933 -s 112 -d 111 -p tcp -e 1000 -i 134 -a 8 - -t 11.1933 -s 212 -d 211 -p tcp -e 1000 -i 136 -a 8 - -t 11.1933 -s 312 -d 311 -p tcp -e 1000 -i 134 -a 8 h -t 11.1933 -s 112 -d 111 -p tcp -e 1000 -i 134 -a 8 h -t 11.1933 -s 212 -d 211 -p tcp -e 1000 -i 136 -a 8 h -t 11.1933 -s 312 -d 311 -p tcp -e 1000 -i 134 -a 8 r -t 11.1933 -s 111 -d 112 -p ack -e 40 -i 124 -a 8 r -t 11.1933 -s 211 -d 212 -p ack -e 40 -i 128 -a 8 r -t 11.1933 -s 311 -d 312 -p ack -e 40 -i 124 -a 8 - -t 11.1941 -s 112 -d 111 -p tcp -e 1000 -i 135 -a 8 - -t 11.1941 -s 212 -d 211 -p tcp -e 1000 -i 137 -a 8 - -t 11.1941 -s 312 -d 311 -p tcp -e 1000 -i 135 -a 8 h -t 11.1941 -s 112 -d 111 -p tcp -e 1000 -i 135 -a 8 h -t 11.1941 -s 212 -d 211 -p tcp -e 1000 -i 137 -a 8 h -t 11.1941 -s 312 -d 311 -p tcp -e 1000 -i 135 -a 8 + -t 11.1951 -s 111 -d 110 -p tcp -e 1000 -i 134 -a 8 + -t 11.1951 -s 210 -d 201 -p tcp -e 1000 -i 124 -a 1 + -t 11.1951 -s 211 -d 210 -p tcp -e 1000 -i 136 -a 8 + -t 11.1951 -s 311 -d 310 -p tcp -e 1000 -i 134 -a 8 - -t 11.1951 -s 111 -d 110 -p tcp -e 1000 -i 134 -a 8 - -t 11.1951 -s 210 -d 201 -p tcp -e 1000 -i 124 -a 1 - -t 11.1951 -s 311 -d 310 -p tcp -e 1000 -i 134 -a 8 h -t 11.1951 -s 111 -d 110 -p tcp -e 1000 -i 134 -a 8 h -t 11.1951 -s 210 -d 201 -p tcp -e 1000 -i 124 -a 1 h -t 11.1951 -s 311 -d 310 -p tcp -e 1000 -i 134 -a 8 r -t 11.1951 -s 211 -d 210 -p tcp -e 1000 -i 124 -a 1 r -t 11.1953 -s 112 -d 111 -p tcp -e 1000 -i 134 -a 8 r -t 11.1953 -s 212 -d 211 -p tcp -e 1000 -i 136 -a 8 r -t 11.1953 -s 312 -d 311 -p tcp -e 1000 -i 134 -a 8 + -t 11.1959 -s 111 -d 110 -p tcp -e 1000 -i 135 -a 8 + -t 11.1959 -s 211 -d 210 -p tcp -e 1000 -i 137 -a 8 + -t 11.1959 -s 311 -d 310 -p tcp -e 1000 -i 135 -a 8 r -t 11.1961 -s 112 -d 111 -p tcp -e 1000 -i 135 -a 8 r -t 11.1961 -s 212 -d 211 -p tcp -e 1000 -i 137 -a 8 r -t 11.1961 -s 312 -d 311 -p tcp -e 1000 -i 135 -a 8 + -t 11.1969 -s 201 -d 210 -p ack -e 40 -i 138 -a 1 - -t 11.1969 -s 201 -d 210 -p ack -e 40 -i 138 -a 1 h -t 11.1969 -s 201 -d 210 -p ack -e 40 -i 138 -a 1 r -t 11.1971 -s 210 -d 201 -p tcp -e 1000 -i 124 -a 1 - -t 11.1977 -s 211 -d 210 -p tcp -e 1000 -i 136 -a 8 h -t 11.1977 -s 211 -d 210 -p tcp -e 1000 -i 136 -a 8 r -t 11.1979 -s 201 -d 210 -p ack -e 40 -i 138 -a 1 + -t 11.198 -s 210 -d 211 -p ack -e 40 -i 138 -a 1 - -t 11.198 -s 210 -d 211 -p ack -e 40 -i 138 -a 1 h -t 11.198 -s 210 -d 211 -p ack -e 40 -i 138 -a 1 - -t 11.2051 -s 111 -d 110 -p tcp -e 1000 -i 135 -a 8 - -t 11.2051 -s 311 -d 310 -p tcp -e 1000 -i 135 -a 8 h -t 11.2051 -s 111 -d 110 -p tcp -e 1000 -i 135 -a 8 h -t 11.2051 -s 311 -d 310 -p tcp -e 1000 -i 135 -a 8 - -t 11.2077 -s 211 -d 210 -p tcp -e 1000 -i 137 -a 8 h -t 11.2077 -s 211 -d 210 -p tcp -e 1000 -i 137 -a 8 + -t 11.2349 -s 111 -d 112 -p ack -e 40 -i 128 -a 6 + -t 11.2349 -s 311 -d 312 -p ack -e 40 -i 128 -a 6 - -t 11.2349 -s 111 -d 112 -p ack -e 40 -i 128 -a 6 - -t 11.2349 -s 311 -d 312 -p ack -e 40 -i 128 -a 6 h -t 11.2349 -s 111 -d 112 -p ack -e 40 -i 128 -a 6 h -t 11.2349 -s 311 -d 312 -p ack -e 40 -i 128 -a 6 r -t 11.2349 -s 110 -d 111 -p ack -e 40 -i 128 -a 6 r -t 11.2349 -s 310 -d 311 -p ack -e 40 -i 128 -a 6 + -t 11.2359 -s 112 -d 111 -p tcp -e 1000 -i 136 -a 6 + -t 11.2359 -s 312 -d 311 -p tcp -e 1000 -i 136 -a 6 - -t 11.2359 -s 112 -d 111 -p tcp -e 1000 -i 136 -a 6 - -t 11.2359 -s 312 -d 311 -p tcp -e 1000 -i 136 -a 6 h -t 11.2359 -s 112 -d 111 -p tcp -e 1000 -i 136 -a 6 h -t 11.2359 -s 312 -d 311 -p tcp -e 1000 -i 136 -a 6 r -t 11.2359 -s 111 -d 112 -p ack -e 40 -i 128 -a 6 r -t 11.2359 -s 311 -d 312 -p ack -e 40 -i 128 -a 6 + -t 11.2377 -s 110 -d 106 -p tcp -e 1000 -i 125 -a 6 + -t 11.2377 -s 111 -d 110 -p tcp -e 1000 -i 136 -a 6 + -t 11.2377 -s 210 -d 206 -p tcp -e 1000 -i 129 -a 6 + -t 11.2377 -s 310 -d 306 -p tcp -e 1000 -i 125 -a 6 + -t 11.2377 -s 311 -d 310 -p tcp -e 1000 -i 136 -a 6 - -t 11.2377 -s 110 -d 106 -p tcp -e 1000 -i 125 -a 6 - -t 11.2377 -s 111 -d 110 -p tcp -e 1000 -i 136 -a 6 - -t 11.2377 -s 210 -d 206 -p tcp -e 1000 -i 129 -a 6 - -t 11.2377 -s 310 -d 306 -p tcp -e 1000 -i 125 -a 6 - -t 11.2377 -s 311 -d 310 -p tcp -e 1000 -i 136 -a 6 h -t 11.2377 -s 110 -d 106 -p tcp -e 1000 -i 125 -a 6 h -t 11.2377 -s 111 -d 110 -p tcp -e 1000 -i 136 -a 6 h -t 11.2377 -s 210 -d 206 -p tcp -e 1000 -i 129 -a 6 h -t 11.2377 -s 310 -d 306 -p tcp -e 1000 -i 125 -a 6 h -t 11.2377 -s 311 -d 310 -p tcp -e 1000 -i 136 -a 6 r -t 11.2377 -s 111 -d 110 -p tcp -e 1000 -i 125 -a 6 r -t 11.2377 -s 211 -d 210 -p tcp -e 1000 -i 129 -a 6 r -t 11.2377 -s 311 -d 310 -p tcp -e 1000 -i 125 -a 6 r -t 11.2379 -s 112 -d 111 -p tcp -e 1000 -i 136 -a 6 r -t 11.2379 -s 312 -d 311 -p tcp -e 1000 -i 136 -a 6 r -t 11.2397 -s 110 -d 106 -p tcp -e 1000 -i 125 -a 6 r -t 11.2397 -s 210 -d 206 -p tcp -e 1000 -i 129 -a 6 r -t 11.2397 -s 310 -d 306 -p tcp -e 1000 -i 125 -a 6 + -t 11.2477 -s 110 -d 106 -p tcp -e 1000 -i 126 -a 6 + -t 11.2477 -s 210 -d 206 -p tcp -e 1000 -i 130 -a 6 + -t 11.2477 -s 310 -d 306 -p tcp -e 1000 -i 126 -a 6 - -t 11.2477 -s 110 -d 106 -p tcp -e 1000 -i 126 -a 6 - -t 11.2477 -s 210 -d 206 -p tcp -e 1000 -i 130 -a 6 - -t 11.2477 -s 310 -d 306 -p tcp -e 1000 -i 126 -a 6 h -t 11.2477 -s 110 -d 106 -p tcp -e 1000 -i 126 -a 6 h -t 11.2477 -s 210 -d 206 -p tcp -e 1000 -i 130 -a 6 h -t 11.2477 -s 310 -d 306 -p tcp -e 1000 -i 126 -a 6 r -t 11.2477 -s 111 -d 110 -p tcp -e 1000 -i 126 -a 6 r -t 11.2477 -s 211 -d 210 -p tcp -e 1000 -i 130 -a 6 r -t 11.2477 -s 311 -d 310 -p tcp -e 1000 -i 126 -a 6 + -t 11.2495 -s 106 -d 110 -p ack -e 40 -i 137 -a 6 + -t 11.2495 -s 206 -d 210 -p ack -e 40 -i 139 -a 6 + -t 11.2495 -s 306 -d 310 -p ack -e 40 -i 137 -a 6 - -t 11.2495 -s 106 -d 110 -p ack -e 40 -i 137 -a 6 - -t 11.2495 -s 206 -d 210 -p ack -e 40 -i 139 -a 6 - -t 11.2495 -s 306 -d 310 -p ack -e 40 -i 137 -a 6 h -t 11.2495 -s 106 -d 110 -p ack -e 40 -i 137 -a 6 h -t 11.2495 -s 206 -d 210 -p ack -e 40 -i 139 -a 6 h -t 11.2495 -s 306 -d 310 -p ack -e 40 -i 137 -a 6 r -t 11.2497 -s 110 -d 106 -p tcp -e 1000 -i 126 -a 6 r -t 11.2497 -s 210 -d 206 -p tcp -e 1000 -i 130 -a 6 r -t 11.2497 -s 310 -d 306 -p tcp -e 1000 -i 126 -a 6 + -t 11.2505 -s 110 -d 111 -p ack -e 40 -i 137 -a 6 + -t 11.2505 -s 210 -d 211 -p ack -e 40 -i 139 -a 6 + -t 11.2505 -s 310 -d 311 -p ack -e 40 -i 137 -a 6 - -t 11.2505 -s 110 -d 111 -p ack -e 40 -i 137 -a 6 - -t 11.2505 -s 210 -d 211 -p ack -e 40 -i 139 -a 6 - -t 11.2505 -s 310 -d 311 -p ack -e 40 -i 137 -a 6 h -t 11.2505 -s 110 -d 111 -p ack -e 40 -i 137 -a 6 h -t 11.2505 -s 210 -d 211 -p ack -e 40 -i 139 -a 6 h -t 11.2505 -s 310 -d 311 -p ack -e 40 -i 137 -a 6 r -t 11.2505 -s 106 -d 110 -p ack -e 40 -i 137 -a 6 r -t 11.2505 -s 206 -d 210 -p ack -e 40 -i 139 -a 6 r -t 11.2505 -s 306 -d 310 -p ack -e 40 -i 137 -a 6 + -t 11.2577 -s 110 -d 106 -p tcp -e 1000 -i 127 -a 6 + -t 11.2577 -s 210 -d 206 -p tcp -e 1000 -i 131 -a 6 + -t 11.2577 -s 310 -d 306 -p tcp -e 1000 -i 127 -a 6 - -t 11.2577 -s 110 -d 106 -p tcp -e 1000 -i 127 -a 6 - -t 11.2577 -s 210 -d 206 -p tcp -e 1000 -i 131 -a 6 - -t 11.2577 -s 310 -d 306 -p tcp -e 1000 -i 127 -a 6 h -t 11.2577 -s 110 -d 106 -p tcp -e 1000 -i 127 -a 6 h -t 11.2577 -s 210 -d 206 -p tcp -e 1000 -i 131 -a 6 h -t 11.2577 -s 310 -d 306 -p tcp -e 1000 -i 127 -a 6 r -t 11.2577 -s 111 -d 110 -p tcp -e 1000 -i 127 -a 6 r -t 11.2577 -s 211 -d 210 -p tcp -e 1000 -i 131 -a 6 r -t 11.2577 -s 311 -d 310 -p tcp -e 1000 -i 127 -a 6 r -t 11.2597 -s 110 -d 106 -p tcp -e 1000 -i 127 -a 6 r -t 11.2597 -s 210 -d 206 -p tcp -e 1000 -i 131 -a 6 r -t 11.2597 -s 310 -d 306 -p tcp -e 1000 -i 127 -a 6 + -t 11.2649 -s 111 -d 112 -p ack -e 40 -i 132 -a 7 + -t 11.2649 -s 311 -d 312 -p ack -e 40 -i 132 -a 7 - -t 11.2649 -s 111 -d 112 -p ack -e 40 -i 132 -a 7 - -t 11.2649 -s 311 -d 312 -p ack -e 40 -i 132 -a 7 h -t 11.2649 -s 111 -d 112 -p ack -e 40 -i 132 -a 7 h -t 11.2649 -s 311 -d 312 -p ack -e 40 -i 132 -a 7 r -t 11.2649 -s 110 -d 111 -p ack -e 40 -i 132 -a 7 r -t 11.2649 -s 310 -d 311 -p ack -e 40 -i 132 -a 7 + -t 11.2659 -s 112 -d 111 -p tcp -e 1000 -i 138 -a 7 + -t 11.2659 -s 312 -d 311 -p tcp -e 1000 -i 138 -a 7 - -t 11.2659 -s 112 -d 111 -p tcp -e 1000 -i 138 -a 7 - -t 11.2659 -s 312 -d 311 -p tcp -e 1000 -i 138 -a 7 h -t 11.2659 -s 112 -d 111 -p tcp -e 1000 -i 138 -a 7 h -t 11.2659 -s 312 -d 311 -p tcp -e 1000 -i 138 -a 7 r -t 11.2659 -s 111 -d 112 -p ack -e 40 -i 132 -a 7 r -t 11.2659 -s 311 -d 312 -p ack -e 40 -i 132 -a 7 + -t 11.2677 -s 110 -d 107 -p tcp -e 1000 -i 129 -a 7 + -t 11.2677 -s 111 -d 110 -p tcp -e 1000 -i 138 -a 7 + -t 11.2677 -s 310 -d 307 -p tcp -e 1000 -i 129 -a 7 + -t 11.2677 -s 311 -d 310 -p tcp -e 1000 -i 138 -a 7 - -t 11.2677 -s 110 -d 107 -p tcp -e 1000 -i 129 -a 7 - -t 11.2677 -s 111 -d 110 -p tcp -e 1000 -i 138 -a 7 - -t 11.2677 -s 310 -d 307 -p tcp -e 1000 -i 129 -a 7 - -t 11.2677 -s 311 -d 310 -p tcp -e 1000 -i 138 -a 7 h -t 11.2677 -s 110 -d 107 -p tcp -e 1000 -i 129 -a 7 h -t 11.2677 -s 111 -d 110 -p tcp -e 1000 -i 138 -a 7 h -t 11.2677 -s 310 -d 307 -p tcp -e 1000 -i 129 -a 7 h -t 11.2677 -s 311 -d 310 -p tcp -e 1000 -i 138 -a 7 r -t 11.2677 -s 111 -d 110 -p tcp -e 1000 -i 129 -a 7 r -t 11.2677 -s 311 -d 310 -p tcp -e 1000 -i 129 -a 7 r -t 11.2679 -s 112 -d 111 -p tcp -e 1000 -i 138 -a 7 r -t 11.2679 -s 312 -d 311 -p tcp -e 1000 -i 138 -a 7 r -t 11.2697 -s 110 -d 107 -p tcp -e 1000 -i 129 -a 7 r -t 11.2697 -s 310 -d 307 -p tcp -e 1000 -i 129 -a 7 + -t 11.2777 -s 110 -d 107 -p tcp -e 1000 -i 130 -a 7 + -t 11.2777 -s 210 -d 207 -p tcp -e 1000 -i 132 -a 7 + -t 11.2777 -s 310 -d 307 -p tcp -e 1000 -i 130 -a 7 - -t 11.2777 -s 110 -d 107 -p tcp -e 1000 -i 130 -a 7 - -t 11.2777 -s 210 -d 207 -p tcp -e 1000 -i 132 -a 7 - -t 11.2777 -s 310 -d 307 -p tcp -e 1000 -i 130 -a 7 h -t 11.2777 -s 110 -d 107 -p tcp -e 1000 -i 130 -a 7 h -t 11.2777 -s 210 -d 207 -p tcp -e 1000 -i 132 -a 7 h -t 11.2777 -s 310 -d 307 -p tcp -e 1000 -i 130 -a 7 r -t 11.2777 -s 111 -d 110 -p tcp -e 1000 -i 130 -a 7 r -t 11.2777 -s 211 -d 210 -p tcp -e 1000 -i 132 -a 7 r -t 11.2777 -s 311 -d 310 -p tcp -e 1000 -i 130 -a 7 + -t 11.2784 -s 111 -d 112 -p ack -e 40 -i 133 -a 1 + -t 11.2784 -s 211 -d 212 -p ack -e 40 -i 135 -a 1 + -t 11.2784 -s 311 -d 312 -p ack -e 40 -i 133 -a 1 - -t 11.2784 -s 111 -d 112 -p ack -e 40 -i 133 -a 1 - -t 11.2784 -s 211 -d 212 -p ack -e 40 -i 135 -a 1 - -t 11.2784 -s 311 -d 312 -p ack -e 40 -i 133 -a 1 h -t 11.2784 -s 111 -d 112 -p ack -e 40 -i 133 -a 1 h -t 11.2784 -s 211 -d 212 -p ack -e 40 -i 135 -a 1 h -t 11.2784 -s 311 -d 312 -p ack -e 40 -i 133 -a 1 r -t 11.2784 -s 110 -d 111 -p ack -e 40 -i 133 -a 1 r -t 11.2784 -s 210 -d 211 -p ack -e 40 -i 135 -a 1 r -t 11.2784 -s 310 -d 311 -p ack -e 40 -i 133 -a 1 + -t 11.2794 -s 112 -d 111 -p tcp -e 1000 -i 139 -a 1 + -t 11.2794 -s 112 -d 111 -p tcp -e 1000 -i 140 -a 1 + -t 11.2794 -s 112 -d 111 -p tcp -e 1000 -i 141 -a 1 + -t 11.2794 -s 212 -d 211 -p tcp -e 1000 -i 140 -a 1 + -t 11.2794 -s 212 -d 211 -p tcp -e 1000 -i 141 -a 1 + -t 11.2794 -s 212 -d 211 -p tcp -e 1000 -i 142 -a 1 + -t 11.2794 -s 312 -d 311 -p tcp -e 1000 -i 139 -a 1 + -t 11.2794 -s 312 -d 311 -p tcp -e 1000 -i 140 -a 1 + -t 11.2794 -s 312 -d 311 -p tcp -e 1000 -i 141 -a 1 - -t 11.2794 -s 112 -d 111 -p tcp -e 1000 -i 139 -a 1 - -t 11.2794 -s 212 -d 211 -p tcp -e 1000 -i 140 -a 1 - -t 11.2794 -s 312 -d 311 -p tcp -e 1000 -i 139 -a 1 h -t 11.2794 -s 112 -d 111 -p tcp -e 1000 -i 139 -a 1 h -t 11.2794 -s 212 -d 211 -p tcp -e 1000 -i 140 -a 1 h -t 11.2794 -s 312 -d 311 -p tcp -e 1000 -i 139 -a 1 r -t 11.2794 -s 111 -d 112 -p ack -e 40 -i 133 -a 1 r -t 11.2794 -s 211 -d 212 -p ack -e 40 -i 135 -a 1 r -t 11.2794 -s 311 -d 312 -p ack -e 40 -i 133 -a 1 + -t 11.2795 -s 107 -d 110 -p ack -e 40 -i 142 -a 7 + -t 11.2795 -s 307 -d 310 -p ack -e 40 -i 142 -a 7 - -t 11.2795 -s 107 -d 110 -p ack -e 40 -i 142 -a 7 - -t 11.2795 -s 307 -d 310 -p ack -e 40 -i 142 -a 7 h -t 11.2795 -s 107 -d 110 -p ack -e 40 -i 142 -a 7 h -t 11.2795 -s 307 -d 310 -p ack -e 40 -i 142 -a 7 r -t 11.2797 -s 110 -d 107 -p tcp -e 1000 -i 130 -a 7 r -t 11.2797 -s 210 -d 207 -p tcp -e 1000 -i 132 -a 7 r -t 11.2797 -s 310 -d 307 -p tcp -e 1000 -i 130 -a 7 - -t 11.2802 -s 112 -d 111 -p tcp -e 1000 -i 140 -a 1 - -t 11.2802 -s 212 -d 211 -p tcp -e 1000 -i 141 -a 1 - -t 11.2802 -s 312 -d 311 -p tcp -e 1000 -i 140 -a 1 h -t 11.2802 -s 112 -d 111 -p tcp -e 1000 -i 140 -a 1 h -t 11.2802 -s 212 -d 211 -p tcp -e 1000 -i 141 -a 1 h -t 11.2802 -s 312 -d 311 -p tcp -e 1000 -i 140 -a 1 + -t 11.2805 -s 110 -d 111 -p ack -e 40 -i 142 -a 7 + -t 11.2805 -s 310 -d 311 -p ack -e 40 -i 142 -a 7 - -t 11.2805 -s 110 -d 111 -p ack -e 40 -i 142 -a 7 - -t 11.2805 -s 310 -d 311 -p ack -e 40 -i 142 -a 7 h -t 11.2805 -s 110 -d 111 -p ack -e 40 -i 142 -a 7 h -t 11.2805 -s 310 -d 311 -p ack -e 40 -i 142 -a 7 r -t 11.2805 -s 107 -d 110 -p ack -e 40 -i 142 -a 7 r -t 11.2805 -s 307 -d 310 -p ack -e 40 -i 142 -a 7 - -t 11.281 -s 112 -d 111 -p tcp -e 1000 -i 141 -a 1 - -t 11.281 -s 212 -d 211 -p tcp -e 1000 -i 142 -a 1 - -t 11.281 -s 312 -d 311 -p tcp -e 1000 -i 141 -a 1 h -t 11.281 -s 112 -d 111 -p tcp -e 1000 -i 141 -a 1 h -t 11.281 -s 212 -d 211 -p tcp -e 1000 -i 142 -a 1 h -t 11.281 -s 312 -d 311 -p tcp -e 1000 -i 141 -a 1 + -t 11.2812 -s 111 -d 110 -p tcp -e 1000 -i 139 -a 1 + -t 11.2812 -s 211 -d 210 -p tcp -e 1000 -i 140 -a 1 + -t 11.2812 -s 311 -d 310 -p tcp -e 1000 -i 139 -a 1 - -t 11.2812 -s 111 -d 110 -p tcp -e 1000 -i 139 -a 1 - -t 11.2812 -s 211 -d 210 -p tcp -e 1000 -i 140 -a 1 - -t 11.2812 -s 311 -d 310 -p tcp -e 1000 -i 139 -a 1 h -t 11.2812 -s 111 -d 110 -p tcp -e 1000 -i 139 -a 1 h -t 11.2812 -s 211 -d 210 -p tcp -e 1000 -i 140 -a 1 h -t 11.2812 -s 311 -d 310 -p tcp -e 1000 -i 139 -a 1 r -t 11.2814 -s 112 -d 111 -p tcp -e 1000 -i 139 -a 1 r -t 11.2814 -s 212 -d 211 -p tcp -e 1000 -i 140 -a 1 r -t 11.2814 -s 312 -d 311 -p tcp -e 1000 -i 139 -a 1 + -t 11.282 -s 111 -d 110 -p tcp -e 1000 -i 140 -a 1 + -t 11.282 -s 211 -d 210 -p tcp -e 1000 -i 141 -a 1 + -t 11.282 -s 311 -d 310 -p tcp -e 1000 -i 140 -a 1 r -t 11.2822 -s 112 -d 111 -p tcp -e 1000 -i 140 -a 1 r -t 11.2822 -s 212 -d 211 -p tcp -e 1000 -i 141 -a 1 r -t 11.2822 -s 312 -d 311 -p tcp -e 1000 -i 140 -a 1 + -t 11.2828 -s 111 -d 110 -p tcp -e 1000 -i 141 -a 1 + -t 11.2828 -s 211 -d 210 -p tcp -e 1000 -i 142 -a 1 + -t 11.2828 -s 311 -d 310 -p tcp -e 1000 -i 141 -a 1 r -t 11.283 -s 112 -d 111 -p tcp -e 1000 -i 141 -a 1 r -t 11.283 -s 212 -d 211 -p tcp -e 1000 -i 142 -a 1 r -t 11.283 -s 312 -d 311 -p tcp -e 1000 -i 141 -a 1 + -t 11.2869 -s 101 -d 110 -p ack -e 40 -i 143 -a 1 + -t 11.2869 -s 301 -d 310 -p ack -e 40 -i 143 -a 1 - -t 11.2869 -s 101 -d 110 -p ack -e 40 -i 143 -a 1 - -t 11.2869 -s 301 -d 310 -p ack -e 40 -i 143 -a 1 h -t 11.2869 -s 101 -d 110 -p ack -e 40 -i 143 -a 1 h -t 11.2869 -s 301 -d 310 -p ack -e 40 -i 143 -a 1 + -t 11.2877 -s 110 -d 107 -p tcp -e 1000 -i 131 -a 7 + -t 11.2877 -s 210 -d 207 -p tcp -e 1000 -i 133 -a 7 + -t 11.2877 -s 310 -d 307 -p tcp -e 1000 -i 131 -a 7 - -t 11.2877 -s 110 -d 107 -p tcp -e 1000 -i 131 -a 7 - -t 11.2877 -s 210 -d 207 -p tcp -e 1000 -i 133 -a 7 - -t 11.2877 -s 310 -d 307 -p tcp -e 1000 -i 131 -a 7 h -t 11.2877 -s 110 -d 107 -p tcp -e 1000 -i 131 -a 7 h -t 11.2877 -s 210 -d 207 -p tcp -e 1000 -i 133 -a 7 h -t 11.2877 -s 310 -d 307 -p tcp -e 1000 -i 131 -a 7 r -t 11.2877 -s 111 -d 110 -p tcp -e 1000 -i 131 -a 7 r -t 11.2877 -s 211 -d 210 -p tcp -e 1000 -i 133 -a 7 r -t 11.2877 -s 311 -d 310 -p tcp -e 1000 -i 131 -a 7 r -t 11.2879 -s 101 -d 110 -p ack -e 40 -i 143 -a 1 r -t 11.2879 -s 301 -d 310 -p ack -e 40 -i 143 -a 1 + -t 11.288 -s 110 -d 111 -p ack -e 40 -i 143 -a 1 + -t 11.288 -s 310 -d 311 -p ack -e 40 -i 143 -a 1 - -t 11.288 -s 110 -d 111 -p ack -e 40 -i 143 -a 1 - -t 11.288 -s 310 -d 311 -p ack -e 40 -i 143 -a 1 h -t 11.288 -s 110 -d 111 -p ack -e 40 -i 143 -a 1 h -t 11.288 -s 310 -d 311 -p ack -e 40 -i 143 -a 1 + -t 11.2895 -s 207 -d 210 -p ack -e 40 -i 143 -a 7 - -t 11.2895 -s 207 -d 210 -p ack -e 40 -i 143 -a 7 h -t 11.2895 -s 207 -d 210 -p ack -e 40 -i 143 -a 7 r -t 11.2897 -s 110 -d 107 -p tcp -e 1000 -i 131 -a 7 r -t 11.2897 -s 210 -d 207 -p tcp -e 1000 -i 133 -a 7 r -t 11.2897 -s 310 -d 307 -p tcp -e 1000 -i 131 -a 7 + -t 11.2905 -s 210 -d 211 -p ack -e 40 -i 143 -a 7 - -t 11.2905 -s 210 -d 211 -p ack -e 40 -i 143 -a 7 h -t 11.2905 -s 210 -d 211 -p ack -e 40 -i 143 -a 7 r -t 11.2905 -s 207 -d 210 -p ack -e 40 -i 143 -a 7 - -t 11.2912 -s 111 -d 110 -p tcp -e 1000 -i 140 -a 1 - -t 11.2912 -s 211 -d 210 -p tcp -e 1000 -i 141 -a 1 - -t 11.2912 -s 311 -d 310 -p tcp -e 1000 -i 140 -a 1 h -t 11.2912 -s 111 -d 110 -p tcp -e 1000 -i 140 -a 1 h -t 11.2912 -s 211 -d 210 -p tcp -e 1000 -i 141 -a 1 h -t 11.2912 -s 311 -d 310 -p tcp -e 1000 -i 140 -a 1 + -t 11.2977 -s 210 -d 207 -p tcp -e 1000 -i 134 -a 7 - -t 11.2977 -s 210 -d 207 -p tcp -e 1000 -i 134 -a 7 h -t 11.2977 -s 210 -d 207 -p tcp -e 1000 -i 134 -a 7 r -t 11.2977 -s 211 -d 210 -p tcp -e 1000 -i 134 -a 7 + -t 11.2984 -s 211 -d 212 -p ack -e 40 -i 138 -a 1 - -t 11.2984 -s 211 -d 212 -p ack -e 40 -i 138 -a 1 h -t 11.2984 -s 211 -d 212 -p ack -e 40 -i 138 -a 1 r -t 11.2984 -s 210 -d 211 -p ack -e 40 -i 138 -a 1 r -t 11.2994 -s 211 -d 212 -p ack -e 40 -i 138 -a 1 r -t 11.2997 -s 210 -d 207 -p tcp -e 1000 -i 134 -a 7 - -t 11.3012 -s 111 -d 110 -p tcp -e 1000 -i 141 -a 1 - -t 11.3012 -s 211 -d 210 -p tcp -e 1000 -i 142 -a 1 - -t 11.3012 -s 311 -d 310 -p tcp -e 1000 -i 141 -a 1 h -t 11.3012 -s 111 -d 110 -p tcp -e 1000 -i 141 -a 1 h -t 11.3012 -s 211 -d 210 -p tcp -e 1000 -i 142 -a 1 h -t 11.3012 -s 311 -d 310 -p tcp -e 1000 -i 141 -a 1 + -t 11.3051 -s 110 -d 108 -p tcp -e 1000 -i 134 -a 8 + -t 11.3051 -s 310 -d 308 -p tcp -e 1000 -i 134 -a 8 - -t 11.3051 -s 110 -d 108 -p tcp -e 1000 -i 134 -a 8 - -t 11.3051 -s 310 -d 308 -p tcp -e 1000 -i 134 -a 8 h -t 11.3051 -s 110 -d 108 -p tcp -e 1000 -i 134 -a 8 h -t 11.3051 -s 310 -d 308 -p tcp -e 1000 -i 134 -a 8 r -t 11.3051 -s 111 -d 110 -p tcp -e 1000 -i 134 -a 8 r -t 11.3051 -s 311 -d 310 -p tcp -e 1000 -i 134 -a 8 r -t 11.3071 -s 110 -d 108 -p tcp -e 1000 -i 134 -a 8 r -t 11.3071 -s 310 -d 308 -p tcp -e 1000 -i 134 -a 8 + -t 11.3077 -s 210 -d 208 -p tcp -e 1000 -i 136 -a 8 - -t 11.3077 -s 210 -d 208 -p tcp -e 1000 -i 136 -a 8 h -t 11.3077 -s 210 -d 208 -p tcp -e 1000 -i 136 -a 8 r -t 11.3077 -s 211 -d 210 -p tcp -e 1000 -i 136 -a 8 r -t 11.3097 -s 210 -d 208 -p tcp -e 1000 -i 136 -a 8 + -t 11.3151 -s 110 -d 108 -p tcp -e 1000 -i 135 -a 8 + -t 11.3151 -s 310 -d 308 -p tcp -e 1000 -i 135 -a 8 - -t 11.3151 -s 110 -d 108 -p tcp -e 1000 -i 135 -a 8 - -t 11.3151 -s 310 -d 308 -p tcp -e 1000 -i 135 -a 8 h -t 11.3151 -s 110 -d 108 -p tcp -e 1000 -i 135 -a 8 h -t 11.3151 -s 310 -d 308 -p tcp -e 1000 -i 135 -a 8 r -t 11.3151 -s 111 -d 110 -p tcp -e 1000 -i 135 -a 8 r -t 11.3151 -s 311 -d 310 -p tcp -e 1000 -i 135 -a 8 + -t 11.3169 -s 108 -d 110 -p ack -e 40 -i 144 -a 8 + -t 11.3169 -s 308 -d 310 -p ack -e 40 -i 144 -a 8 - -t 11.3169 -s 108 -d 110 -p ack -e 40 -i 144 -a 8 - -t 11.3169 -s 308 -d 310 -p ack -e 40 -i 144 -a 8 h -t 11.3169 -s 108 -d 110 -p ack -e 40 -i 144 -a 8 h -t 11.3169 -s 308 -d 310 -p ack -e 40 -i 144 -a 8 r -t 11.3171 -s 110 -d 108 -p tcp -e 1000 -i 135 -a 8 r -t 11.3171 -s 310 -d 308 -p tcp -e 1000 -i 135 -a 8 + -t 11.3177 -s 210 -d 208 -p tcp -e 1000 -i 137 -a 8 - -t 11.3177 -s 210 -d 208 -p tcp -e 1000 -i 137 -a 8 h -t 11.3177 -s 210 -d 208 -p tcp -e 1000 -i 137 -a 8 r -t 11.3177 -s 211 -d 210 -p tcp -e 1000 -i 137 -a 8 r -t 11.3179 -s 108 -d 110 -p ack -e 40 -i 144 -a 8 r -t 11.3179 -s 308 -d 310 -p ack -e 40 -i 144 -a 8 + -t 11.318 -s 110 -d 111 -p ack -e 40 -i 144 -a 8 + -t 11.318 -s 310 -d 311 -p ack -e 40 -i 144 -a 8 - -t 11.318 -s 110 -d 111 -p ack -e 40 -i 144 -a 8 - -t 11.318 -s 310 -d 311 -p ack -e 40 -i 144 -a 8 h -t 11.318 -s 110 -d 111 -p ack -e 40 -i 144 -a 8 h -t 11.318 -s 310 -d 311 -p ack -e 40 -i 144 -a 8 + -t 11.3195 -s 208 -d 210 -p ack -e 40 -i 144 -a 8 - -t 11.3195 -s 208 -d 210 -p ack -e 40 -i 144 -a 8 h -t 11.3195 -s 208 -d 210 -p ack -e 40 -i 144 -a 8 r -t 11.3197 -s 210 -d 208 -p tcp -e 1000 -i 137 -a 8 + -t 11.3205 -s 210 -d 211 -p ack -e 40 -i 144 -a 8 - -t 11.3205 -s 210 -d 211 -p ack -e 40 -i 144 -a 8 h -t 11.3205 -s 210 -d 211 -p ack -e 40 -i 144 -a 8 r -t 11.3205 -s 208 -d 210 -p ack -e 40 -i 144 -a 8 + -t 11.3477 -s 110 -d 106 -p tcp -e 1000 -i 136 -a 6 + -t 11.3477 -s 310 -d 306 -p tcp -e 1000 -i 136 -a 6 - -t 11.3477 -s 110 -d 106 -p tcp -e 1000 -i 136 -a 6 - -t 11.3477 -s 310 -d 306 -p tcp -e 1000 -i 136 -a 6 h -t 11.3477 -s 110 -d 106 -p tcp -e 1000 -i 136 -a 6 h -t 11.3477 -s 310 -d 306 -p tcp -e 1000 -i 136 -a 6 r -t 11.3477 -s 111 -d 110 -p tcp -e 1000 -i 136 -a 6 r -t 11.3477 -s 311 -d 310 -p tcp -e 1000 -i 136 -a 6 + -t 11.3495 -s 106 -d 110 -p ack -e 40 -i 145 -a 6 + -t 11.3495 -s 306 -d 310 -p ack -e 40 -i 145 -a 6 - -t 11.3495 -s 106 -d 110 -p ack -e 40 -i 145 -a 6 - -t 11.3495 -s 306 -d 310 -p ack -e 40 -i 145 -a 6 h -t 11.3495 -s 106 -d 110 -p ack -e 40 -i 145 -a 6 h -t 11.3495 -s 306 -d 310 -p ack -e 40 -i 145 -a 6 r -t 11.3497 -s 110 -d 106 -p tcp -e 1000 -i 136 -a 6 r -t 11.3497 -s 310 -d 306 -p tcp -e 1000 -i 136 -a 6 + -t 11.3505 -s 110 -d 111 -p ack -e 40 -i 145 -a 6 + -t 11.3505 -s 310 -d 311 -p ack -e 40 -i 145 -a 6 - -t 11.3505 -s 110 -d 111 -p ack -e 40 -i 145 -a 6 - -t 11.3505 -s 310 -d 311 -p ack -e 40 -i 145 -a 6 h -t 11.3505 -s 110 -d 111 -p ack -e 40 -i 145 -a 6 h -t 11.3505 -s 310 -d 311 -p ack -e 40 -i 145 -a 6 r -t 11.3505 -s 106 -d 110 -p ack -e 40 -i 145 -a 6 r -t 11.3505 -s 306 -d 310 -p ack -e 40 -i 145 -a 6 + -t 11.3509 -s 111 -d 112 -p ack -e 40 -i 137 -a 6 + -t 11.3509 -s 211 -d 212 -p ack -e 40 -i 139 -a 6 + -t 11.3509 -s 311 -d 312 -p ack -e 40 -i 137 -a 6 - -t 11.3509 -s 111 -d 112 -p ack -e 40 -i 137 -a 6 - -t 11.3509 -s 211 -d 212 -p ack -e 40 -i 139 -a 6 - -t 11.3509 -s 311 -d 312 -p ack -e 40 -i 137 -a 6 h -t 11.3509 -s 111 -d 112 -p ack -e 40 -i 137 -a 6 h -t 11.3509 -s 211 -d 212 -p ack -e 40 -i 139 -a 6 h -t 11.3509 -s 311 -d 312 -p ack -e 40 -i 137 -a 6 r -t 11.3509 -s 110 -d 111 -p ack -e 40 -i 137 -a 6 r -t 11.3509 -s 210 -d 211 -p ack -e 40 -i 139 -a 6 r -t 11.3509 -s 310 -d 311 -p ack -e 40 -i 137 -a 6 r -t 11.3519 -s 111 -d 112 -p ack -e 40 -i 137 -a 6 r -t 11.3519 -s 211 -d 212 -p ack -e 40 -i 139 -a 6 r -t 11.3519 -s 311 -d 312 -p ack -e 40 -i 137 -a 6 + -t 11.3595 -s 206 -d 210 -p ack -e 40 -i 145 -a 6 - -t 11.3595 -s 206 -d 210 -p ack -e 40 -i 145 -a 6 h -t 11.3595 -s 206 -d 210 -p ack -e 40 -i 145 -a 6 + -t 11.3605 -s 210 -d 211 -p ack -e 40 -i 145 -a 6 - -t 11.3605 -s 210 -d 211 -p ack -e 40 -i 145 -a 6 h -t 11.3605 -s 210 -d 211 -p ack -e 40 -i 145 -a 6 r -t 11.3605 -s 206 -d 210 -p ack -e 40 -i 145 -a 6 + -t 11.3777 -s 110 -d 107 -p tcp -e 1000 -i 138 -a 7 + -t 11.3777 -s 310 -d 307 -p tcp -e 1000 -i 138 -a 7 - -t 11.3777 -s 110 -d 107 -p tcp -e 1000 -i 138 -a 7 - -t 11.3777 -s 310 -d 307 -p tcp -e 1000 -i 138 -a 7 h -t 11.3777 -s 110 -d 107 -p tcp -e 1000 -i 138 -a 7 h -t 11.3777 -s 310 -d 307 -p tcp -e 1000 -i 138 -a 7 r -t 11.3777 -s 111 -d 110 -p tcp -e 1000 -i 138 -a 7 r -t 11.3777 -s 311 -d 310 -p tcp -e 1000 -i 138 -a 7 + -t 11.3795 -s 107 -d 110 -p ack -e 40 -i 146 -a 7 + -t 11.3795 -s 307 -d 310 -p ack -e 40 -i 146 -a 7 - -t 11.3795 -s 107 -d 110 -p ack -e 40 -i 146 -a 7 - -t 11.3795 -s 307 -d 310 -p ack -e 40 -i 146 -a 7 h -t 11.3795 -s 107 -d 110 -p ack -e 40 -i 146 -a 7 h -t 11.3795 -s 307 -d 310 -p ack -e 40 -i 146 -a 7 r -t 11.3797 -s 110 -d 107 -p tcp -e 1000 -i 138 -a 7 r -t 11.3797 -s 310 -d 307 -p tcp -e 1000 -i 138 -a 7 + -t 11.3805 -s 110 -d 111 -p ack -e 40 -i 146 -a 7 + -t 11.3805 -s 310 -d 311 -p ack -e 40 -i 146 -a 7 - -t 11.3805 -s 110 -d 111 -p ack -e 40 -i 146 -a 7 - -t 11.3805 -s 310 -d 311 -p ack -e 40 -i 146 -a 7 h -t 11.3805 -s 110 -d 111 -p ack -e 40 -i 146 -a 7 h -t 11.3805 -s 310 -d 311 -p ack -e 40 -i 146 -a 7 r -t 11.3805 -s 107 -d 110 -p ack -e 40 -i 146 -a 7 r -t 11.3805 -s 307 -d 310 -p ack -e 40 -i 146 -a 7 + -t 11.3809 -s 111 -d 112 -p ack -e 40 -i 142 -a 7 + -t 11.3809 -s 311 -d 312 -p ack -e 40 -i 142 -a 7 - -t 11.3809 -s 111 -d 112 -p ack -e 40 -i 142 -a 7 - -t 11.3809 -s 311 -d 312 -p ack -e 40 -i 142 -a 7 h -t 11.3809 -s 111 -d 112 -p ack -e 40 -i 142 -a 7 h -t 11.3809 -s 311 -d 312 -p ack -e 40 -i 142 -a 7 r -t 11.3809 -s 110 -d 111 -p ack -e 40 -i 142 -a 7 r -t 11.3809 -s 310 -d 311 -p ack -e 40 -i 142 -a 7 r -t 11.3819 -s 111 -d 112 -p ack -e 40 -i 142 -a 7 r -t 11.3819 -s 311 -d 312 -p ack -e 40 -i 142 -a 7 + -t 11.3884 -s 111 -d 112 -p ack -e 40 -i 143 -a 1 + -t 11.3884 -s 311 -d 312 -p ack -e 40 -i 143 -a 1 - -t 11.3884 -s 111 -d 112 -p ack -e 40 -i 143 -a 1 - -t 11.3884 -s 311 -d 312 -p ack -e 40 -i 143 -a 1 h -t 11.3884 -s 111 -d 112 -p ack -e 40 -i 143 -a 1 h -t 11.3884 -s 311 -d 312 -p ack -e 40 -i 143 -a 1 r -t 11.3884 -s 110 -d 111 -p ack -e 40 -i 143 -a 1 r -t 11.3884 -s 310 -d 311 -p ack -e 40 -i 143 -a 1 + -t 11.3894 -s 112 -d 111 -p tcp -e 1000 -i 147 -a 1 + -t 11.3894 -s 312 -d 311 -p tcp -e 1000 -i 147 -a 1 - -t 11.3894 -s 112 -d 111 -p tcp -e 1000 -i 147 -a 1 - -t 11.3894 -s 312 -d 311 -p tcp -e 1000 -i 147 -a 1 h -t 11.3894 -s 112 -d 111 -p tcp -e 1000 -i 147 -a 1 h -t 11.3894 -s 312 -d 311 -p tcp -e 1000 -i 147 -a 1 r -t 11.3894 -s 111 -d 112 -p ack -e 40 -i 143 -a 1 r -t 11.3894 -s 311 -d 312 -p ack -e 40 -i 143 -a 1 + -t 11.3909 -s 211 -d 212 -p ack -e 40 -i 143 -a 7 - -t 11.3909 -s 211 -d 212 -p ack -e 40 -i 143 -a 7 h -t 11.3909 -s 211 -d 212 -p ack -e 40 -i 143 -a 7 r -t 11.3909 -s 210 -d 211 -p ack -e 40 -i 143 -a 7 + -t 11.3912 -s 110 -d 101 -p tcp -e 1000 -i 139 -a 1 + -t 11.3912 -s 111 -d 110 -p tcp -e 1000 -i 147 -a 1 + -t 11.3912 -s 210 -d 201 -p tcp -e 1000 -i 140 -a 1 + -t 11.3912 -s 310 -d 301 -p tcp -e 1000 -i 139 -a 1 + -t 11.3912 -s 311 -d 310 -p tcp -e 1000 -i 147 -a 1 - -t 11.3912 -s 110 -d 101 -p tcp -e 1000 -i 139 -a 1 - -t 11.3912 -s 111 -d 110 -p tcp -e 1000 -i 147 -a 1 - -t 11.3912 -s 210 -d 201 -p tcp -e 1000 -i 140 -a 1 - -t 11.3912 -s 310 -d 301 -p tcp -e 1000 -i 139 -a 1 - -t 11.3912 -s 311 -d 310 -p tcp -e 1000 -i 147 -a 1 h -t 11.3912 -s 110 -d 101 -p tcp -e 1000 -i 139 -a 1 h -t 11.3912 -s 111 -d 110 -p tcp -e 1000 -i 147 -a 1 h -t 11.3912 -s 210 -d 201 -p tcp -e 1000 -i 140 -a 1 h -t 11.3912 -s 310 -d 301 -p tcp -e 1000 -i 139 -a 1 h -t 11.3912 -s 311 -d 310 -p tcp -e 1000 -i 147 -a 1 r -t 11.3912 -s 111 -d 110 -p tcp -e 1000 -i 139 -a 1 r -t 11.3912 -s 211 -d 210 -p tcp -e 1000 -i 140 -a 1 r -t 11.3912 -s 311 -d 310 -p tcp -e 1000 -i 139 -a 1 r -t 11.3914 -s 112 -d 111 -p tcp -e 1000 -i 147 -a 1 r -t 11.3914 -s 312 -d 311 -p tcp -e 1000 -i 147 -a 1 r -t 11.3919 -s 211 -d 212 -p ack -e 40 -i 143 -a 7 r -t 11.3932 -s 110 -d 101 -p tcp -e 1000 -i 139 -a 1 r -t 11.3932 -s 210 -d 201 -p tcp -e 1000 -i 140 -a 1 r -t 11.3932 -s 310 -d 301 -p tcp -e 1000 -i 139 -a 1 + -t 11.3995 -s 207 -d 210 -p ack -e 40 -i 146 -a 7 - -t 11.3995 -s 207 -d 210 -p ack -e 40 -i 146 -a 7 h -t 11.3995 -s 207 -d 210 -p ack -e 40 -i 146 -a 7 + -t 11.4005 -s 210 -d 211 -p ack -e 40 -i 146 -a 7 - -t 11.4005 -s 210 -d 211 -p ack -e 40 -i 146 -a 7 h -t 11.4005 -s 210 -d 211 -p ack -e 40 -i 146 -a 7 r -t 11.4005 -s 207 -d 210 -p ack -e 40 -i 146 -a 7 + -t 11.4012 -s 110 -d 101 -p tcp -e 1000 -i 140 -a 1 + -t 11.4012 -s 210 -d 201 -p tcp -e 1000 -i 141 -a 1 + -t 11.4012 -s 310 -d 301 -p tcp -e 1000 -i 140 -a 1 - -t 11.4012 -s 110 -d 101 -p tcp -e 1000 -i 140 -a 1 - -t 11.4012 -s 210 -d 201 -p tcp -e 1000 -i 141 -a 1 - -t 11.4012 -s 310 -d 301 -p tcp -e 1000 -i 140 -a 1 h -t 11.4012 -s 110 -d 101 -p tcp -e 1000 -i 140 -a 1 h -t 11.4012 -s 210 -d 201 -p tcp -e 1000 -i 141 -a 1 h -t 11.4012 -s 310 -d 301 -p tcp -e 1000 -i 140 -a 1 r -t 11.4012 -s 111 -d 110 -p tcp -e 1000 -i 140 -a 1 r -t 11.4012 -s 211 -d 210 -p tcp -e 1000 -i 141 -a 1 r -t 11.4012 -s 311 -d 310 -p tcp -e 1000 -i 140 -a 1 + -t 11.403 -s 101 -d 110 -p ack -e 40 -i 148 -a 1 + -t 11.403 -s 201 -d 210 -p ack -e 40 -i 147 -a 1 + -t 11.403 -s 301 -d 310 -p ack -e 40 -i 148 -a 1 - -t 11.403 -s 101 -d 110 -p ack -e 40 -i 148 -a 1 - -t 11.403 -s 201 -d 210 -p ack -e 40 -i 147 -a 1 - -t 11.403 -s 301 -d 310 -p ack -e 40 -i 148 -a 1 h -t 11.403 -s 101 -d 110 -p ack -e 40 -i 148 -a 1 h -t 11.403 -s 201 -d 210 -p ack -e 40 -i 147 -a 1 h -t 11.403 -s 301 -d 310 -p ack -e 40 -i 148 -a 1 r -t 11.4032 -s 110 -d 101 -p tcp -e 1000 -i 140 -a 1 r -t 11.4032 -s 210 -d 201 -p tcp -e 1000 -i 141 -a 1 r -t 11.4032 -s 310 -d 301 -p tcp -e 1000 -i 140 -a 1 + -t 11.404 -s 110 -d 111 -p ack -e 40 -i 148 -a 1 + -t 11.404 -s 210 -d 211 -p ack -e 40 -i 147 -a 1 + -t 11.404 -s 310 -d 311 -p ack -e 40 -i 148 -a 1 - -t 11.404 -s 110 -d 111 -p ack -e 40 -i 148 -a 1 - -t 11.404 -s 210 -d 211 -p ack -e 40 -i 147 -a 1 - -t 11.404 -s 310 -d 311 -p ack -e 40 -i 148 -a 1 h -t 11.404 -s 110 -d 111 -p ack -e 40 -i 148 -a 1 h -t 11.404 -s 210 -d 211 -p ack -e 40 -i 147 -a 1 h -t 11.404 -s 310 -d 311 -p ack -e 40 -i 148 -a 1 r -t 11.404 -s 101 -d 110 -p ack -e 40 -i 148 -a 1 r -t 11.404 -s 201 -d 210 -p ack -e 40 -i 147 -a 1 r -t 11.404 -s 301 -d 310 -p ack -e 40 -i 148 -a 1 + -t 11.4112 -s 110 -d 101 -p tcp -e 1000 -i 141 -a 1 + -t 11.4112 -s 210 -d 201 -p tcp -e 1000 -i 142 -a 1 + -t 11.4112 -s 310 -d 301 -p tcp -e 1000 -i 141 -a 1 - -t 11.4112 -s 110 -d 101 -p tcp -e 1000 -i 141 -a 1 - -t 11.4112 -s 210 -d 201 -p tcp -e 1000 -i 142 -a 1 - -t 11.4112 -s 310 -d 301 -p tcp -e 1000 -i 141 -a 1 h -t 11.4112 -s 110 -d 101 -p tcp -e 1000 -i 141 -a 1 h -t 11.4112 -s 210 -d 201 -p tcp -e 1000 -i 142 -a 1 h -t 11.4112 -s 310 -d 301 -p tcp -e 1000 -i 141 -a 1 r -t 11.4112 -s 111 -d 110 -p tcp -e 1000 -i 141 -a 1 r -t 11.4112 -s 211 -d 210 -p tcp -e 1000 -i 142 -a 1 r -t 11.4112 -s 311 -d 310 -p tcp -e 1000 -i 141 -a 1 r -t 11.4132 -s 110 -d 101 -p tcp -e 1000 -i 141 -a 1 r -t 11.4132 -s 210 -d 201 -p tcp -e 1000 -i 142 -a 1 r -t 11.4132 -s 310 -d 301 -p tcp -e 1000 -i 141 -a 1 + -t 11.4184 -s 111 -d 112 -p ack -e 40 -i 144 -a 8 + -t 11.4184 -s 311 -d 312 -p ack -e 40 -i 144 -a 8 - -t 11.4184 -s 111 -d 112 -p ack -e 40 -i 144 -a 8 - -t 11.4184 -s 311 -d 312 -p ack -e 40 -i 144 -a 8 h -t 11.4184 -s 111 -d 112 -p ack -e 40 -i 144 -a 8 h -t 11.4184 -s 311 -d 312 -p ack -e 40 -i 144 -a 8 r -t 11.4184 -s 110 -d 111 -p ack -e 40 -i 144 -a 8 r -t 11.4184 -s 310 -d 311 -p ack -e 40 -i 144 -a 8 + -t 11.4194 -s 112 -d 111 -p tcp -e 1000 -i 149 -a 8 + -t 11.4194 -s 112 -d 111 -p tcp -e 1000 -i 150 -a 8 + -t 11.4194 -s 112 -d 111 -p tcp -e 1000 -i 151 -a 8 + -t 11.4194 -s 312 -d 311 -p tcp -e 1000 -i 149 -a 8 + -t 11.4194 -s 312 -d 311 -p tcp -e 1000 -i 150 -a 8 + -t 11.4194 -s 312 -d 311 -p tcp -e 1000 -i 151 -a 8 - -t 11.4194 -s 112 -d 111 -p tcp -e 1000 -i 149 -a 8 - -t 11.4194 -s 312 -d 311 -p tcp -e 1000 -i 149 -a 8 h -t 11.4194 -s 112 -d 111 -p tcp -e 1000 -i 149 -a 8 h -t 11.4194 -s 312 -d 311 -p tcp -e 1000 -i 149 -a 8 r -t 11.4194 -s 111 -d 112 -p ack -e 40 -i 144 -a 8 r -t 11.4194 -s 311 -d 312 -p ack -e 40 -i 144 -a 8 - -t 11.4202 -s 112 -d 111 -p tcp -e 1000 -i 150 -a 8 - -t 11.4202 -s 312 -d 311 -p tcp -e 1000 -i 150 -a 8 h -t 11.4202 -s 112 -d 111 -p tcp -e 1000 -i 150 -a 8 h -t 11.4202 -s 312 -d 311 -p tcp -e 1000 -i 150 -a 8 + -t 11.4209 -s 211 -d 212 -p ack -e 40 -i 144 -a 8 - -t 11.4209 -s 211 -d 212 -p ack -e 40 -i 144 -a 8 h -t 11.4209 -s 211 -d 212 -p ack -e 40 -i 144 -a 8 r -t 11.4209 -s 210 -d 211 -p ack -e 40 -i 144 -a 8 - -t 11.421 -s 112 -d 111 -p tcp -e 1000 -i 151 -a 8 - -t 11.421 -s 312 -d 311 -p tcp -e 1000 -i 151 -a 8 h -t 11.421 -s 112 -d 111 -p tcp -e 1000 -i 151 -a 8 h -t 11.421 -s 312 -d 311 -p tcp -e 1000 -i 151 -a 8 + -t 11.4212 -s 111 -d 110 -p tcp -e 1000 -i 149 -a 8 + -t 11.4212 -s 311 -d 310 -p tcp -e 1000 -i 149 -a 8 - -t 11.4212 -s 111 -d 110 -p tcp -e 1000 -i 149 -a 8 - -t 11.4212 -s 311 -d 310 -p tcp -e 1000 -i 149 -a 8 h -t 11.4212 -s 111 -d 110 -p tcp -e 1000 -i 149 -a 8 h -t 11.4212 -s 311 -d 310 -p tcp -e 1000 -i 149 -a 8 r -t 11.4214 -s 112 -d 111 -p tcp -e 1000 -i 149 -a 8 r -t 11.4214 -s 312 -d 311 -p tcp -e 1000 -i 149 -a 8 r -t 11.4219 -s 211 -d 212 -p ack -e 40 -i 144 -a 8 + -t 11.422 -s 111 -d 110 -p tcp -e 1000 -i 150 -a 8 + -t 11.422 -s 212 -d 211 -p tcp -e 1000 -i 148 -a 8 + -t 11.422 -s 212 -d 211 -p tcp -e 1000 -i 149 -a 8 + -t 11.422 -s 212 -d 211 -p tcp -e 1000 -i 150 -a 8 + -t 11.422 -s 212 -d 211 -p tcp -e 1000 -i 151 -a 8 + -t 11.422 -s 311 -d 310 -p tcp -e 1000 -i 150 -a 8 - -t 11.422 -s 212 -d 211 -p tcp -e 1000 -i 148 -a 8 h -t 11.422 -s 212 -d 211 -p tcp -e 1000 -i 148 -a 8 r -t 11.4222 -s 112 -d 111 -p tcp -e 1000 -i 150 -a 8 r -t 11.4222 -s 312 -d 311 -p tcp -e 1000 -i 150 -a 8 + -t 11.4228 -s 111 -d 110 -p tcp -e 1000 -i 151 -a 8 + -t 11.4228 -s 311 -d 310 -p tcp -e 1000 -i 151 -a 8 - -t 11.4228 -s 212 -d 211 -p tcp -e 1000 -i 149 -a 8 h -t 11.4228 -s 212 -d 211 -p tcp -e 1000 -i 149 -a 8 r -t 11.423 -s 112 -d 111 -p tcp -e 1000 -i 151 -a 8 r -t 11.423 -s 312 -d 311 -p tcp -e 1000 -i 151 -a 8 - -t 11.4236 -s 212 -d 211 -p tcp -e 1000 -i 150 -a 8 h -t 11.4236 -s 212 -d 211 -p tcp -e 1000 -i 150 -a 8 + -t 11.4238 -s 211 -d 210 -p tcp -e 1000 -i 148 -a 8 - -t 11.4238 -s 211 -d 210 -p tcp -e 1000 -i 148 -a 8 h -t 11.4238 -s 211 -d 210 -p tcp -e 1000 -i 148 -a 8 r -t 11.424 -s 212 -d 211 -p tcp -e 1000 -i 148 -a 8 - -t 11.4244 -s 212 -d 211 -p tcp -e 1000 -i 151 -a 8 h -t 11.4244 -s 212 -d 211 -p tcp -e 1000 -i 151 -a 8 + -t 11.4246 -s 211 -d 210 -p tcp -e 1000 -i 149 -a 8 r -t 11.4248 -s 212 -d 211 -p tcp -e 1000 -i 149 -a 8 + -t 11.4254 -s 211 -d 210 -p tcp -e 1000 -i 150 -a 8 r -t 11.4256 -s 212 -d 211 -p tcp -e 1000 -i 150 -a 8 + -t 11.4262 -s 211 -d 210 -p tcp -e 1000 -i 151 -a 8 r -t 11.4264 -s 212 -d 211 -p tcp -e 1000 -i 151 -a 8 - -t 11.4312 -s 111 -d 110 -p tcp -e 1000 -i 150 -a 8 - -t 11.4312 -s 311 -d 310 -p tcp -e 1000 -i 150 -a 8 h -t 11.4312 -s 111 -d 110 -p tcp -e 1000 -i 150 -a 8 h -t 11.4312 -s 311 -d 310 -p tcp -e 1000 -i 150 -a 8 - -t 11.4338 -s 211 -d 210 -p tcp -e 1000 -i 149 -a 8 h -t 11.4338 -s 211 -d 210 -p tcp -e 1000 -i 149 -a 8 - -t 11.4412 -s 111 -d 110 -p tcp -e 1000 -i 151 -a 8 - -t 11.4412 -s 311 -d 310 -p tcp -e 1000 -i 151 -a 8 h -t 11.4412 -s 111 -d 110 -p tcp -e 1000 -i 151 -a 8 h -t 11.4412 -s 311 -d 310 -p tcp -e 1000 -i 151 -a 8 - -t 11.4438 -s 211 -d 210 -p tcp -e 1000 -i 150 -a 8 h -t 11.4438 -s 211 -d 210 -p tcp -e 1000 -i 150 -a 8 + -t 11.4509 -s 111 -d 112 -p ack -e 40 -i 145 -a 6 + -t 11.4509 -s 311 -d 312 -p ack -e 40 -i 145 -a 6 - -t 11.4509 -s 111 -d 112 -p ack -e 40 -i 145 -a 6 - -t 11.4509 -s 311 -d 312 -p ack -e 40 -i 145 -a 6 h -t 11.4509 -s 111 -d 112 -p ack -e 40 -i 145 -a 6 h -t 11.4509 -s 311 -d 312 -p ack -e 40 -i 145 -a 6 r -t 11.4509 -s 110 -d 111 -p ack -e 40 -i 145 -a 6 r -t 11.4509 -s 310 -d 311 -p ack -e 40 -i 145 -a 6 r -t 11.4519 -s 111 -d 112 -p ack -e 40 -i 145 -a 6 r -t 11.4519 -s 311 -d 312 -p ack -e 40 -i 145 -a 6 - -t 11.4538 -s 211 -d 210 -p tcp -e 1000 -i 151 -a 8 h -t 11.4538 -s 211 -d 210 -p tcp -e 1000 -i 151 -a 8 + -t 11.4609 -s 211 -d 212 -p ack -e 40 -i 145 -a 6 - -t 11.4609 -s 211 -d 212 -p ack -e 40 -i 145 -a 6 h -t 11.4609 -s 211 -d 212 -p ack -e 40 -i 145 -a 6 r -t 11.4609 -s 210 -d 211 -p ack -e 40 -i 145 -a 6 r -t 11.4619 -s 211 -d 212 -p ack -e 40 -i 145 -a 6 + -t 11.4809 -s 111 -d 112 -p ack -e 40 -i 146 -a 7 + -t 11.4809 -s 311 -d 312 -p ack -e 40 -i 146 -a 7 - -t 11.4809 -s 111 -d 112 -p ack -e 40 -i 146 -a 7 - -t 11.4809 -s 311 -d 312 -p ack -e 40 -i 146 -a 7 h -t 11.4809 -s 111 -d 112 -p ack -e 40 -i 146 -a 7 h -t 11.4809 -s 311 -d 312 -p ack -e 40 -i 146 -a 7 r -t 11.4809 -s 110 -d 111 -p ack -e 40 -i 146 -a 7 r -t 11.4809 -s 310 -d 311 -p ack -e 40 -i 146 -a 7 r -t 11.4819 -s 111 -d 112 -p ack -e 40 -i 146 -a 7 r -t 11.4819 -s 311 -d 312 -p ack -e 40 -i 146 -a 7 + -t 11.5009 -s 211 -d 212 -p ack -e 40 -i 146 -a 7 - -t 11.5009 -s 211 -d 212 -p ack -e 40 -i 146 -a 7 h -t 11.5009 -s 211 -d 212 -p ack -e 40 -i 146 -a 7 r -t 11.5009 -s 210 -d 211 -p ack -e 40 -i 146 -a 7 + -t 11.5012 -s 110 -d 101 -p tcp -e 1000 -i 147 -a 1 + -t 11.5012 -s 310 -d 301 -p tcp -e 1000 -i 147 -a 1 - -t 11.5012 -s 110 -d 101 -p tcp -e 1000 -i 147 -a 1 - -t 11.5012 -s 310 -d 301 -p tcp -e 1000 -i 147 -a 1 h -t 11.5012 -s 110 -d 101 -p tcp -e 1000 -i 147 -a 1 h -t 11.5012 -s 310 -d 301 -p tcp -e 1000 -i 147 -a 1 r -t 11.5012 -s 111 -d 110 -p tcp -e 1000 -i 147 -a 1 r -t 11.5012 -s 311 -d 310 -p tcp -e 1000 -i 147 -a 1 r -t 11.5019 -s 211 -d 212 -p ack -e 40 -i 146 -a 7 + -t 11.503 -s 101 -d 110 -p ack -e 40 -i 152 -a 1 + -t 11.503 -s 301 -d 310 -p ack -e 40 -i 152 -a 1 - -t 11.503 -s 101 -d 110 -p ack -e 40 -i 152 -a 1 - -t 11.503 -s 301 -d 310 -p ack -e 40 -i 152 -a 1 h -t 11.503 -s 101 -d 110 -p ack -e 40 -i 152 -a 1 h -t 11.503 -s 301 -d 310 -p ack -e 40 -i 152 -a 1 r -t 11.5032 -s 110 -d 101 -p tcp -e 1000 -i 147 -a 1 r -t 11.5032 -s 310 -d 301 -p tcp -e 1000 -i 147 -a 1 + -t 11.504 -s 110 -d 111 -p ack -e 40 -i 152 -a 1 + -t 11.504 -s 310 -d 311 -p ack -e 40 -i 152 -a 1 - -t 11.504 -s 110 -d 111 -p ack -e 40 -i 152 -a 1 - -t 11.504 -s 310 -d 311 -p ack -e 40 -i 152 -a 1 h -t 11.504 -s 110 -d 111 -p ack -e 40 -i 152 -a 1 h -t 11.504 -s 310 -d 311 -p ack -e 40 -i 152 -a 1 r -t 11.504 -s 101 -d 110 -p ack -e 40 -i 152 -a 1 r -t 11.504 -s 301 -d 310 -p ack -e 40 -i 152 -a 1 + -t 11.5044 -s 111 -d 112 -p ack -e 40 -i 148 -a 1 + -t 11.5044 -s 211 -d 212 -p ack -e 40 -i 147 -a 1 + -t 11.5044 -s 311 -d 312 -p ack -e 40 -i 148 -a 1 - -t 11.5044 -s 111 -d 112 -p ack -e 40 -i 148 -a 1 - -t 11.5044 -s 211 -d 212 -p ack -e 40 -i 147 -a 1 - -t 11.5044 -s 311 -d 312 -p ack -e 40 -i 148 -a 1 h -t 11.5044 -s 111 -d 112 -p ack -e 40 -i 148 -a 1 h -t 11.5044 -s 211 -d 212 -p ack -e 40 -i 147 -a 1 h -t 11.5044 -s 311 -d 312 -p ack -e 40 -i 148 -a 1 r -t 11.5044 -s 110 -d 111 -p ack -e 40 -i 148 -a 1 r -t 11.5044 -s 210 -d 211 -p ack -e 40 -i 147 -a 1 r -t 11.5044 -s 310 -d 311 -p ack -e 40 -i 148 -a 1 r -t 11.5054 -s 111 -d 112 -p ack -e 40 -i 148 -a 1 r -t 11.5054 -s 211 -d 212 -p ack -e 40 -i 147 -a 1 r -t 11.5054 -s 311 -d 312 -p ack -e 40 -i 148 -a 1 + -t 11.513 -s 201 -d 210 -p ack -e 40 -i 152 -a 1 - -t 11.513 -s 201 -d 210 -p ack -e 40 -i 152 -a 1 h -t 11.513 -s 201 -d 210 -p ack -e 40 -i 152 -a 1 + -t 11.514 -s 210 -d 211 -p ack -e 40 -i 152 -a 1 - -t 11.514 -s 210 -d 211 -p ack -e 40 -i 152 -a 1 h -t 11.514 -s 210 -d 211 -p ack -e 40 -i 152 -a 1 r -t 11.514 -s 201 -d 210 -p ack -e 40 -i 152 -a 1 + -t 11.5312 -s 110 -d 108 -p tcp -e 1000 -i 149 -a 8 + -t 11.5312 -s 310 -d 308 -p tcp -e 1000 -i 149 -a 8 - -t 11.5312 -s 110 -d 108 -p tcp -e 1000 -i 149 -a 8 - -t 11.5312 -s 310 -d 308 -p tcp -e 1000 -i 149 -a 8 h -t 11.5312 -s 110 -d 108 -p tcp -e 1000 -i 149 -a 8 h -t 11.5312 -s 310 -d 308 -p tcp -e 1000 -i 149 -a 8 r -t 11.5312 -s 111 -d 110 -p tcp -e 1000 -i 149 -a 8 r -t 11.5312 -s 311 -d 310 -p tcp -e 1000 -i 149 -a 8 r -t 11.5332 -s 110 -d 108 -p tcp -e 1000 -i 149 -a 8 r -t 11.5332 -s 310 -d 308 -p tcp -e 1000 -i 149 -a 8 + -t 11.5338 -s 210 -d 208 -p tcp -e 1000 -i 148 -a 8 - -t 11.5338 -s 210 -d 208 -p tcp -e 1000 -i 148 -a 8 h -t 11.5338 -s 210 -d 208 -p tcp -e 1000 -i 148 -a 8 r -t 11.5338 -s 211 -d 210 -p tcp -e 1000 -i 148 -a 8 r -t 11.5358 -s 210 -d 208 -p tcp -e 1000 -i 148 -a 8 + -t 11.5412 -s 110 -d 108 -p tcp -e 1000 -i 150 -a 8 + -t 11.5412 -s 310 -d 308 -p tcp -e 1000 -i 150 -a 8 - -t 11.5412 -s 110 -d 108 -p tcp -e 1000 -i 150 -a 8 - -t 11.5412 -s 310 -d 308 -p tcp -e 1000 -i 150 -a 8 h -t 11.5412 -s 110 -d 108 -p tcp -e 1000 -i 150 -a 8 h -t 11.5412 -s 310 -d 308 -p tcp -e 1000 -i 150 -a 8 r -t 11.5412 -s 111 -d 110 -p tcp -e 1000 -i 150 -a 8 r -t 11.5412 -s 311 -d 310 -p tcp -e 1000 -i 150 -a 8 + -t 11.543 -s 108 -d 110 -p ack -e 40 -i 153 -a 8 + -t 11.543 -s 308 -d 310 -p ack -e 40 -i 153 -a 8 - -t 11.543 -s 108 -d 110 -p ack -e 40 -i 153 -a 8 - -t 11.543 -s 308 -d 310 -p ack -e 40 -i 153 -a 8 h -t 11.543 -s 108 -d 110 -p ack -e 40 -i 153 -a 8 h -t 11.543 -s 308 -d 310 -p ack -e 40 -i 153 -a 8 r -t 11.5432 -s 110 -d 108 -p tcp -e 1000 -i 150 -a 8 r -t 11.5432 -s 310 -d 308 -p tcp -e 1000 -i 150 -a 8 + -t 11.5438 -s 210 -d 208 -p tcp -e 1000 -i 149 -a 8 - -t 11.5438 -s 210 -d 208 -p tcp -e 1000 -i 149 -a 8 h -t 11.5438 -s 210 -d 208 -p tcp -e 1000 -i 149 -a 8 r -t 11.5438 -s 211 -d 210 -p tcp -e 1000 -i 149 -a 8 + -t 11.544 -s 110 -d 111 -p ack -e 40 -i 153 -a 8 + -t 11.544 -s 310 -d 311 -p ack -e 40 -i 153 -a 8 - -t 11.544 -s 110 -d 111 -p ack -e 40 -i 153 -a 8 - -t 11.544 -s 310 -d 311 -p ack -e 40 -i 153 -a 8 h -t 11.544 -s 110 -d 111 -p ack -e 40 -i 153 -a 8 h -t 11.544 -s 310 -d 311 -p ack -e 40 -i 153 -a 8 r -t 11.544 -s 108 -d 110 -p ack -e 40 -i 153 -a 8 r -t 11.544 -s 308 -d 310 -p ack -e 40 -i 153 -a 8 + -t 11.5456 -s 208 -d 210 -p ack -e 40 -i 153 -a 8 - -t 11.5456 -s 208 -d 210 -p ack -e 40 -i 153 -a 8 h -t 11.5456 -s 208 -d 210 -p ack -e 40 -i 153 -a 8 r -t 11.5458 -s 210 -d 208 -p tcp -e 1000 -i 149 -a 8 + -t 11.5466 -s 210 -d 211 -p ack -e 40 -i 153 -a 8 - -t 11.5466 -s 210 -d 211 -p ack -e 40 -i 153 -a 8 h -t 11.5466 -s 210 -d 211 -p ack -e 40 -i 153 -a 8 r -t 11.5466 -s 208 -d 210 -p ack -e 40 -i 153 -a 8 + -t 11.5512 -s 110 -d 108 -p tcp -e 1000 -i 151 -a 8 + -t 11.5512 -s 310 -d 308 -p tcp -e 1000 -i 151 -a 8 - -t 11.5512 -s 110 -d 108 -p tcp -e 1000 -i 151 -a 8 - -t 11.5512 -s 310 -d 308 -p tcp -e 1000 -i 151 -a 8 h -t 11.5512 -s 110 -d 108 -p tcp -e 1000 -i 151 -a 8 h -t 11.5512 -s 310 -d 308 -p tcp -e 1000 -i 151 -a 8 r -t 11.5512 -s 111 -d 110 -p tcp -e 1000 -i 151 -a 8 r -t 11.5512 -s 311 -d 310 -p tcp -e 1000 -i 151 -a 8 r -t 11.5532 -s 110 -d 108 -p tcp -e 1000 -i 151 -a 8 r -t 11.5532 -s 310 -d 308 -p tcp -e 1000 -i 151 -a 8 + -t 11.5538 -s 210 -d 208 -p tcp -e 1000 -i 150 -a 8 - -t 11.5538 -s 210 -d 208 -p tcp -e 1000 -i 150 -a 8 h -t 11.5538 -s 210 -d 208 -p tcp -e 1000 -i 150 -a 8 r -t 11.5538 -s 211 -d 210 -p tcp -e 1000 -i 150 -a 8 r -t 11.5558 -s 210 -d 208 -p tcp -e 1000 -i 150 -a 8 + -t 11.5638 -s 210 -d 208 -p tcp -e 1000 -i 151 -a 8 - -t 11.5638 -s 210 -d 208 -p tcp -e 1000 -i 151 -a 8 h -t 11.5638 -s 210 -d 208 -p tcp -e 1000 -i 151 -a 8 r -t 11.5638 -s 211 -d 210 -p tcp -e 1000 -i 151 -a 8 + -t 11.5656 -s 208 -d 210 -p ack -e 40 -i 154 -a 8 - -t 11.5656 -s 208 -d 210 -p ack -e 40 -i 154 -a 8 h -t 11.5656 -s 208 -d 210 -p ack -e 40 -i 154 -a 8 r -t 11.5658 -s 210 -d 208 -p tcp -e 1000 -i 151 -a 8 + -t 11.5666 -s 210 -d 211 -p ack -e 40 -i 154 -a 8 - -t 11.5666 -s 210 -d 211 -p ack -e 40 -i 154 -a 8 h -t 11.5666 -s 210 -d 211 -p ack -e 40 -i 154 -a 8 r -t 11.5666 -s 208 -d 210 -p ack -e 40 -i 154 -a 8 + -t 11.6044 -s 111 -d 112 -p ack -e 40 -i 152 -a 1 + -t 11.6044 -s 311 -d 312 -p ack -e 40 -i 152 -a 1 - -t 11.6044 -s 111 -d 112 -p ack -e 40 -i 152 -a 1 - -t 11.6044 -s 311 -d 312 -p ack -e 40 -i 152 -a 1 h -t 11.6044 -s 111 -d 112 -p ack -e 40 -i 152 -a 1 h -t 11.6044 -s 311 -d 312 -p ack -e 40 -i 152 -a 1 r -t 11.6044 -s 110 -d 111 -p ack -e 40 -i 152 -a 1 r -t 11.6044 -s 310 -d 311 -p ack -e 40 -i 152 -a 1 r -t 11.6054 -s 111 -d 112 -p ack -e 40 -i 152 -a 1 r -t 11.6054 -s 311 -d 312 -p ack -e 40 -i 152 -a 1 + -t 11.6144 -s 211 -d 212 -p ack -e 40 -i 152 -a 1 - -t 11.6144 -s 211 -d 212 -p ack -e 40 -i 152 -a 1 h -t 11.6144 -s 211 -d 212 -p ack -e 40 -i 152 -a 1 r -t 11.6144 -s 210 -d 211 -p ack -e 40 -i 152 -a 1 r -t 11.6154 -s 211 -d 212 -p ack -e 40 -i 152 -a 1 + -t 11.6444 -s 111 -d 112 -p ack -e 40 -i 153 -a 8 + -t 11.6444 -s 311 -d 312 -p ack -e 40 -i 153 -a 8 - -t 11.6444 -s 111 -d 112 -p ack -e 40 -i 153 -a 8 - -t 11.6444 -s 311 -d 312 -p ack -e 40 -i 153 -a 8 h -t 11.6444 -s 111 -d 112 -p ack -e 40 -i 153 -a 8 h -t 11.6444 -s 311 -d 312 -p ack -e 40 -i 153 -a 8 r -t 11.6444 -s 110 -d 111 -p ack -e 40 -i 153 -a 8 r -t 11.6444 -s 310 -d 311 -p ack -e 40 -i 153 -a 8 r -t 11.6454 -s 111 -d 112 -p ack -e 40 -i 153 -a 8 r -t 11.6454 -s 311 -d 312 -p ack -e 40 -i 153 -a 8 + -t 11.6455 -s 112 -d 111 -p tcp -e 1000 -i 154 -a 8 + -t 11.6455 -s 112 -d 111 -p tcp -e 1000 -i 155 -a 8 + -t 11.6455 -s 112 -d 111 -p tcp -e 1000 -i 156 -a 8 + -t 11.6455 -s 312 -d 311 -p tcp -e 1000 -i 154 -a 8 + -t 11.6455 -s 312 -d 311 -p tcp -e 1000 -i 155 -a 8 + -t 11.6455 -s 312 -d 311 -p tcp -e 1000 -i 156 -a 8 - -t 11.6455 -s 112 -d 111 -p tcp -e 1000 -i 154 -a 8 - -t 11.6455 -s 312 -d 311 -p tcp -e 1000 -i 154 -a 8 h -t 11.6455 -s 112 -d 111 -p tcp -e 1000 -i 154 -a 8 h -t 11.6455 -s 312 -d 311 -p tcp -e 1000 -i 154 -a 8 - -t 11.6463 -s 112 -d 111 -p tcp -e 1000 -i 155 -a 8 - -t 11.6463 -s 312 -d 311 -p tcp -e 1000 -i 155 -a 8 h -t 11.6463 -s 112 -d 111 -p tcp -e 1000 -i 155 -a 8 h -t 11.6463 -s 312 -d 311 -p tcp -e 1000 -i 155 -a 8 + -t 11.647 -s 211 -d 212 -p ack -e 40 -i 153 -a 8 - -t 11.647 -s 211 -d 212 -p ack -e 40 -i 153 -a 8 h -t 11.647 -s 211 -d 212 -p ack -e 40 -i 153 -a 8 r -t 11.647 -s 210 -d 211 -p ack -e 40 -i 153 -a 8 - -t 11.6471 -s 112 -d 111 -p tcp -e 1000 -i 156 -a 8 - -t 11.6471 -s 312 -d 311 -p tcp -e 1000 -i 156 -a 8 h -t 11.6471 -s 112 -d 111 -p tcp -e 1000 -i 156 -a 8 h -t 11.6471 -s 312 -d 311 -p tcp -e 1000 -i 156 -a 8 + -t 11.6473 -s 111 -d 110 -p tcp -e 1000 -i 154 -a 8 + -t 11.6473 -s 311 -d 310 -p tcp -e 1000 -i 154 -a 8 - -t 11.6473 -s 111 -d 110 -p tcp -e 1000 -i 154 -a 8 - -t 11.6473 -s 311 -d 310 -p tcp -e 1000 -i 154 -a 8 h -t 11.6473 -s 111 -d 110 -p tcp -e 1000 -i 154 -a 8 h -t 11.6473 -s 311 -d 310 -p tcp -e 1000 -i 154 -a 8 r -t 11.6475 -s 112 -d 111 -p tcp -e 1000 -i 154 -a 8 r -t 11.6475 -s 312 -d 311 -p tcp -e 1000 -i 154 -a 8 + -t 11.648 -s 212 -d 211 -p tcp -e 1000 -i 155 -a 8 + -t 11.648 -s 212 -d 211 -p tcp -e 1000 -i 156 -a 8 + -t 11.648 -s 212 -d 211 -p tcp -e 1000 -i 157 -a 8 - -t 11.648 -s 212 -d 211 -p tcp -e 1000 -i 155 -a 8 h -t 11.648 -s 212 -d 211 -p tcp -e 1000 -i 155 -a 8 r -t 11.648 -s 211 -d 212 -p ack -e 40 -i 153 -a 8 + -t 11.6481 -s 111 -d 110 -p tcp -e 1000 -i 155 -a 8 + -t 11.6481 -s 311 -d 310 -p tcp -e 1000 -i 155 -a 8 r -t 11.6483 -s 112 -d 111 -p tcp -e 1000 -i 155 -a 8 r -t 11.6483 -s 312 -d 311 -p tcp -e 1000 -i 155 -a 8 - -t 11.6488 -s 212 -d 211 -p tcp -e 1000 -i 156 -a 8 h -t 11.6488 -s 212 -d 211 -p tcp -e 1000 -i 156 -a 8 + -t 11.6489 -s 111 -d 110 -p tcp -e 1000 -i 156 -a 8 + -t 11.6489 -s 311 -d 310 -p tcp -e 1000 -i 156 -a 8 r -t 11.6491 -s 112 -d 111 -p tcp -e 1000 -i 156 -a 8 r -t 11.6491 -s 312 -d 311 -p tcp -e 1000 -i 156 -a 8 - -t 11.6496 -s 212 -d 211 -p tcp -e 1000 -i 157 -a 8 h -t 11.6496 -s 212 -d 211 -p tcp -e 1000 -i 157 -a 8 + -t 11.6498 -s 211 -d 210 -p tcp -e 1000 -i 155 -a 8 - -t 11.6498 -s 211 -d 210 -p tcp -e 1000 -i 155 -a 8 h -t 11.6498 -s 211 -d 210 -p tcp -e 1000 -i 155 -a 8 r -t 11.65 -s 212 -d 211 -p tcp -e 1000 -i 155 -a 8 + -t 11.6506 -s 211 -d 210 -p tcp -e 1000 -i 156 -a 8 r -t 11.6508 -s 212 -d 211 -p tcp -e 1000 -i 156 -a 8 + -t 11.6514 -s 211 -d 210 -p tcp -e 1000 -i 157 -a 8 r -t 11.6516 -s 212 -d 211 -p tcp -e 1000 -i 157 -a 8 + -t 11.653 -s 108 -d 110 -p ack -e 40 -i 157 -a 8 + -t 11.653 -s 308 -d 310 -p ack -e 40 -i 157 -a 8 - -t 11.653 -s 108 -d 110 -p ack -e 40 -i 157 -a 8 - -t 11.653 -s 308 -d 310 -p ack -e 40 -i 157 -a 8 h -t 11.653 -s 108 -d 110 -p ack -e 40 -i 157 -a 8 h -t 11.653 -s 308 -d 310 -p ack -e 40 -i 157 -a 8 + -t 11.654 -s 110 -d 111 -p ack -e 40 -i 157 -a 8 + -t 11.654 -s 310 -d 311 -p ack -e 40 -i 157 -a 8 - -t 11.654 -s 110 -d 111 -p ack -e 40 -i 157 -a 8 - -t 11.654 -s 310 -d 311 -p ack -e 40 -i 157 -a 8 h -t 11.654 -s 110 -d 111 -p ack -e 40 -i 157 -a 8 h -t 11.654 -s 310 -d 311 -p ack -e 40 -i 157 -a 8 r -t 11.654 -s 108 -d 110 -p ack -e 40 -i 157 -a 8 r -t 11.654 -s 308 -d 310 -p ack -e 40 -i 157 -a 8 - -t 11.6573 -s 111 -d 110 -p tcp -e 1000 -i 155 -a 8 - -t 11.6573 -s 311 -d 310 -p tcp -e 1000 -i 155 -a 8 h -t 11.6573 -s 111 -d 110 -p tcp -e 1000 -i 155 -a 8 h -t 11.6573 -s 311 -d 310 -p tcp -e 1000 -i 155 -a 8 - -t 11.6598 -s 211 -d 210 -p tcp -e 1000 -i 156 -a 8 h -t 11.6598 -s 211 -d 210 -p tcp -e 1000 -i 156 -a 8 + -t 11.667 -s 211 -d 212 -p ack -e 40 -i 154 -a 8 - -t 11.667 -s 211 -d 212 -p ack -e 40 -i 154 -a 8 h -t 11.667 -s 211 -d 212 -p ack -e 40 -i 154 -a 8 r -t 11.667 -s 210 -d 211 -p ack -e 40 -i 154 -a 8 - -t 11.6673 -s 111 -d 110 -p tcp -e 1000 -i 156 -a 8 - -t 11.6673 -s 311 -d 310 -p tcp -e 1000 -i 156 -a 8 h -t 11.6673 -s 111 -d 110 -p tcp -e 1000 -i 156 -a 8 h -t 11.6673 -s 311 -d 310 -p tcp -e 1000 -i 156 -a 8 r -t 11.668 -s 211 -d 212 -p ack -e 40 -i 154 -a 8 - -t 11.6698 -s 211 -d 210 -p tcp -e 1000 -i 157 -a 8 h -t 11.6698 -s 211 -d 210 -p tcp -e 1000 -i 157 -a 8 + -t 11.7544 -s 111 -d 112 -p ack -e 40 -i 157 -a 8 + -t 11.7544 -s 311 -d 312 -p ack -e 40 -i 157 -a 8 - -t 11.7544 -s 111 -d 112 -p ack -e 40 -i 157 -a 8 - -t 11.7544 -s 311 -d 312 -p ack -e 40 -i 157 -a 8 h -t 11.7544 -s 111 -d 112 -p ack -e 40 -i 157 -a 8 h -t 11.7544 -s 311 -d 312 -p ack -e 40 -i 157 -a 8 r -t 11.7544 -s 110 -d 111 -p ack -e 40 -i 157 -a 8 r -t 11.7544 -s 310 -d 311 -p ack -e 40 -i 157 -a 8 r -t 11.7554 -s 111 -d 112 -p ack -e 40 -i 157 -a 8 r -t 11.7554 -s 311 -d 312 -p ack -e 40 -i 157 -a 8 + -t 11.7555 -s 112 -d 111 -p tcp -e 1000 -i 158 -a 8 + -t 11.7555 -s 312 -d 311 -p tcp -e 1000 -i 158 -a 8 - -t 11.7555 -s 112 -d 111 -p tcp -e 1000 -i 158 -a 8 - -t 11.7555 -s 312 -d 311 -p tcp -e 1000 -i 158 -a 8 h -t 11.7555 -s 112 -d 111 -p tcp -e 1000 -i 158 -a 8 h -t 11.7555 -s 312 -d 311 -p tcp -e 1000 -i 158 -a 8 + -t 11.7573 -s 110 -d 108 -p tcp -e 1000 -i 154 -a 8 + -t 11.7573 -s 111 -d 110 -p tcp -e 1000 -i 158 -a 8 + -t 11.7573 -s 310 -d 308 -p tcp -e 1000 -i 154 -a 8 + -t 11.7573 -s 311 -d 310 -p tcp -e 1000 -i 158 -a 8 - -t 11.7573 -s 110 -d 108 -p tcp -e 1000 -i 154 -a 8 - -t 11.7573 -s 111 -d 110 -p tcp -e 1000 -i 158 -a 8 - -t 11.7573 -s 310 -d 308 -p tcp -e 1000 -i 154 -a 8 - -t 11.7573 -s 311 -d 310 -p tcp -e 1000 -i 158 -a 8 h -t 11.7573 -s 110 -d 108 -p tcp -e 1000 -i 154 -a 8 h -t 11.7573 -s 111 -d 110 -p tcp -e 1000 -i 158 -a 8 h -t 11.7573 -s 310 -d 308 -p tcp -e 1000 -i 154 -a 8 h -t 11.7573 -s 311 -d 310 -p tcp -e 1000 -i 158 -a 8 r -t 11.7573 -s 111 -d 110 -p tcp -e 1000 -i 154 -a 8 r -t 11.7573 -s 311 -d 310 -p tcp -e 1000 -i 154 -a 8 r -t 11.7575 -s 112 -d 111 -p tcp -e 1000 -i 158 -a 8 r -t 11.7575 -s 312 -d 311 -p tcp -e 1000 -i 158 -a 8 r -t 11.7593 -s 110 -d 108 -p tcp -e 1000 -i 154 -a 8 r -t 11.7593 -s 310 -d 308 -p tcp -e 1000 -i 154 -a 8 + -t 11.7598 -s 210 -d 208 -p tcp -e 1000 -i 155 -a 8 - -t 11.7598 -s 210 -d 208 -p tcp -e 1000 -i 155 -a 8 h -t 11.7598 -s 210 -d 208 -p tcp -e 1000 -i 155 -a 8 r -t 11.7598 -s 211 -d 210 -p tcp -e 1000 -i 155 -a 8 r -t 11.7618 -s 210 -d 208 -p tcp -e 1000 -i 155 -a 8 + -t 11.7673 -s 110 -d 108 -p tcp -e 1000 -i 155 -a 8 + -t 11.7673 -s 310 -d 308 -p tcp -e 1000 -i 155 -a 8 - -t 11.7673 -s 110 -d 108 -p tcp -e 1000 -i 155 -a 8 - -t 11.7673 -s 310 -d 308 -p tcp -e 1000 -i 155 -a 8 h -t 11.7673 -s 110 -d 108 -p tcp -e 1000 -i 155 -a 8 h -t 11.7673 -s 310 -d 308 -p tcp -e 1000 -i 155 -a 8 r -t 11.7673 -s 111 -d 110 -p tcp -e 1000 -i 155 -a 8 r -t 11.7673 -s 311 -d 310 -p tcp -e 1000 -i 155 -a 8 + -t 11.7691 -s 108 -d 110 -p ack -e 40 -i 159 -a 8 + -t 11.7691 -s 308 -d 310 -p ack -e 40 -i 159 -a 8 - -t 11.7691 -s 108 -d 110 -p ack -e 40 -i 159 -a 8 - -t 11.7691 -s 308 -d 310 -p ack -e 40 -i 159 -a 8 h -t 11.7691 -s 108 -d 110 -p ack -e 40 -i 159 -a 8 h -t 11.7691 -s 308 -d 310 -p ack -e 40 -i 159 -a 8 r -t 11.7693 -s 110 -d 108 -p tcp -e 1000 -i 155 -a 8 r -t 11.7693 -s 310 -d 308 -p tcp -e 1000 -i 155 -a 8 + -t 11.7698 -s 210 -d 208 -p tcp -e 1000 -i 156 -a 8 - -t 11.7698 -s 210 -d 208 -p tcp -e 1000 -i 156 -a 8 h -t 11.7698 -s 210 -d 208 -p tcp -e 1000 -i 156 -a 8 r -t 11.7698 -s 211 -d 210 -p tcp -e 1000 -i 156 -a 8 + -t 11.7701 -s 110 -d 111 -p ack -e 40 -i 159 -a 8 + -t 11.7701 -s 310 -d 311 -p ack -e 40 -i 159 -a 8 - -t 11.7701 -s 110 -d 111 -p ack -e 40 -i 159 -a 8 - -t 11.7701 -s 310 -d 311 -p ack -e 40 -i 159 -a 8 h -t 11.7701 -s 110 -d 111 -p ack -e 40 -i 159 -a 8 h -t 11.7701 -s 310 -d 311 -p ack -e 40 -i 159 -a 8 r -t 11.7701 -s 108 -d 110 -p ack -e 40 -i 159 -a 8 r -t 11.7701 -s 308 -d 310 -p ack -e 40 -i 159 -a 8 + -t 11.7716 -s 208 -d 210 -p ack -e 40 -i 158 -a 8 - -t 11.7716 -s 208 -d 210 -p ack -e 40 -i 158 -a 8 h -t 11.7716 -s 208 -d 210 -p ack -e 40 -i 158 -a 8 r -t 11.7718 -s 210 -d 208 -p tcp -e 1000 -i 156 -a 8 r -t 11.7726 -s 208 -d 210 -p ack -e 40 -i 158 -a 8 + -t 11.7727 -s 210 -d 211 -p ack -e 40 -i 158 -a 8 - -t 11.7727 -s 210 -d 211 -p ack -e 40 -i 158 -a 8 h -t 11.7727 -s 210 -d 211 -p ack -e 40 -i 158 -a 8 + -t 11.7773 -s 110 -d 108 -p tcp -e 1000 -i 156 -a 8 + -t 11.7773 -s 310 -d 308 -p tcp -e 1000 -i 156 -a 8 - -t 11.7773 -s 110 -d 108 -p tcp -e 1000 -i 156 -a 8 - -t 11.7773 -s 310 -d 308 -p tcp -e 1000 -i 156 -a 8 h -t 11.7773 -s 110 -d 108 -p tcp -e 1000 -i 156 -a 8 h -t 11.7773 -s 310 -d 308 -p tcp -e 1000 -i 156 -a 8 r -t 11.7773 -s 111 -d 110 -p tcp -e 1000 -i 156 -a 8 r -t 11.7773 -s 311 -d 310 -p tcp -e 1000 -i 156 -a 8 r -t 11.7793 -s 110 -d 108 -p tcp -e 1000 -i 156 -a 8 r -t 11.7793 -s 310 -d 308 -p tcp -e 1000 -i 156 -a 8 + -t 11.7798 -s 210 -d 208 -p tcp -e 1000 -i 157 -a 8 - -t 11.7798 -s 210 -d 208 -p tcp -e 1000 -i 157 -a 8 h -t 11.7798 -s 210 -d 208 -p tcp -e 1000 -i 157 -a 8 r -t 11.7798 -s 211 -d 210 -p tcp -e 1000 -i 157 -a 8 r -t 11.7818 -s 210 -d 208 -p tcp -e 1000 -i 157 -a 8 + -t 11.8673 -s 110 -d 108 -p tcp -e 1000 -i 158 -a 8 + -t 11.8673 -s 310 -d 308 -p tcp -e 1000 -i 158 -a 8 - -t 11.8673 -s 110 -d 108 -p tcp -e 1000 -i 158 -a 8 - -t 11.8673 -s 310 -d 308 -p tcp -e 1000 -i 158 -a 8 h -t 11.8673 -s 110 -d 108 -p tcp -e 1000 -i 158 -a 8 h -t 11.8673 -s 310 -d 308 -p tcp -e 1000 -i 158 -a 8 r -t 11.8673 -s 111 -d 110 -p tcp -e 1000 -i 158 -a 8 r -t 11.8673 -s 311 -d 310 -p tcp -e 1000 -i 158 -a 8 + -t 11.8691 -s 108 -d 110 -p ack -e 40 -i 160 -a 8 + -t 11.8691 -s 308 -d 310 -p ack -e 40 -i 160 -a 8 - -t 11.8691 -s 108 -d 110 -p ack -e 40 -i 160 -a 8 - -t 11.8691 -s 308 -d 310 -p ack -e 40 -i 160 -a 8 h -t 11.8691 -s 108 -d 110 -p ack -e 40 -i 160 -a 8 h -t 11.8691 -s 308 -d 310 -p ack -e 40 -i 160 -a 8 r -t 11.8693 -s 110 -d 108 -p tcp -e 1000 -i 158 -a 8 r -t 11.8693 -s 310 -d 308 -p tcp -e 1000 -i 158 -a 8 + -t 11.8701 -s 110 -d 111 -p ack -e 40 -i 160 -a 8 + -t 11.8701 -s 310 -d 311 -p ack -e 40 -i 160 -a 8 - -t 11.8701 -s 110 -d 111 -p ack -e 40 -i 160 -a 8 - -t 11.8701 -s 310 -d 311 -p ack -e 40 -i 160 -a 8 h -t 11.8701 -s 110 -d 111 -p ack -e 40 -i 160 -a 8 h -t 11.8701 -s 310 -d 311 -p ack -e 40 -i 160 -a 8 r -t 11.8701 -s 108 -d 110 -p ack -e 40 -i 160 -a 8 r -t 11.8701 -s 308 -d 310 -p ack -e 40 -i 160 -a 8 + -t 11.8705 -s 111 -d 112 -p ack -e 40 -i 159 -a 8 + -t 11.8705 -s 311 -d 312 -p ack -e 40 -i 159 -a 8 - -t 11.8705 -s 111 -d 112 -p ack -e 40 -i 159 -a 8 - -t 11.8705 -s 311 -d 312 -p ack -e 40 -i 159 -a 8 h -t 11.8705 -s 111 -d 112 -p ack -e 40 -i 159 -a 8 h -t 11.8705 -s 311 -d 312 -p ack -e 40 -i 159 -a 8 r -t 11.8705 -s 110 -d 111 -p ack -e 40 -i 159 -a 8 r -t 11.8705 -s 310 -d 311 -p ack -e 40 -i 159 -a 8 r -t 11.8715 -s 111 -d 112 -p ack -e 40 -i 159 -a 8 r -t 11.8715 -s 311 -d 312 -p ack -e 40 -i 159 -a 8 + -t 11.8731 -s 211 -d 212 -p ack -e 40 -i 158 -a 8 - -t 11.8731 -s 211 -d 212 -p ack -e 40 -i 158 -a 8 h -t 11.8731 -s 211 -d 212 -p ack -e 40 -i 158 -a 8 r -t 11.8731 -s 210 -d 211 -p ack -e 40 -i 158 -a 8 r -t 11.8741 -s 211 -d 212 -p ack -e 40 -i 158 -a 8 + -t 11.8816 -s 208 -d 210 -p ack -e 40 -i 159 -a 8 - -t 11.8816 -s 208 -d 210 -p ack -e 40 -i 159 -a 8 h -t 11.8816 -s 208 -d 210 -p ack -e 40 -i 159 -a 8 r -t 11.8826 -s 208 -d 210 -p ack -e 40 -i 159 -a 8 + -t 11.8827 -s 210 -d 211 -p ack -e 40 -i 159 -a 8 - -t 11.8827 -s 210 -d 211 -p ack -e 40 -i 159 -a 8 h -t 11.8827 -s 210 -d 211 -p ack -e 40 -i 159 -a 8 + -t 11.9705 -s 111 -d 112 -p ack -e 40 -i 160 -a 8 + -t 11.9705 -s 311 -d 312 -p ack -e 40 -i 160 -a 8 - -t 11.9705 -s 111 -d 112 -p ack -e 40 -i 160 -a 8 - -t 11.9705 -s 311 -d 312 -p ack -e 40 -i 160 -a 8 h -t 11.9705 -s 111 -d 112 -p ack -e 40 -i 160 -a 8 h -t 11.9705 -s 311 -d 312 -p ack -e 40 -i 160 -a 8 r -t 11.9705 -s 110 -d 111 -p ack -e 40 -i 160 -a 8 r -t 11.9705 -s 310 -d 311 -p ack -e 40 -i 160 -a 8 r -t 11.9715 -s 111 -d 112 -p ack -e 40 -i 160 -a 8 r -t 11.9715 -s 311 -d 312 -p ack -e 40 -i 160 -a 8 + -t 11.9831 -s 211 -d 212 -p ack -e 40 -i 159 -a 8 - -t 11.9831 -s 211 -d 212 -p ack -e 40 -i 159 -a 8 h -t 11.9831 -s 211 -d 212 -p ack -e 40 -i 159 -a 8 r -t 11.9831 -s 210 -d 211 -p ack -e 40 -i 159 -a 8 r -t 11.9841 -s 211 -d 212 -p ack -e 40 -i 159 -a 8 v -t 12.00 sim_annotation 12.00 1 (idle period) v -t 29.01 sim_annotation 29.01 2 Phase two: after idle period + -t 29.0154 -s 112 -d 111 -p tcp -e 1000 -i 161 -a 6 + -t 29.0154 -s 112 -d 111 -p tcp -e 1000 -i 162 -a 6 + -t 29.0154 -s 112 -d 111 -p tcp -e 1000 -i 163 -a 6 + -t 29.0154 -s 112 -d 111 -p tcp -e 1000 -i 164 -a 6 + -t 29.0154 -s 112 -d 111 -p tcp -e 1000 -i 165 -a 6 + -t 29.0154 -s 112 -d 111 -p tcp -e 1000 -i 166 -a 6 + -t 29.0154 -s 112 -d 111 -p tcp -e 1000 -i 167 -a 6 + -t 29.0154 -s 212 -d 211 -p tcp -e 1000 -i 160 -a 6 + -t 29.0154 -s 312 -d 311 -p tcp -e 1000 -i 161 -a 6 - -t 29.0154 -s 112 -d 111 -p tcp -e 1000 -i 161 -a 6 - -t 29.0154 -s 212 -d 211 -p tcp -e 1000 -i 160 -a 6 - -t 29.0154 -s 312 -d 311 -p tcp -e 1000 -i 161 -a 6 h -t 29.0154 -s 112 -d 111 -p tcp -e 1000 -i 161 -a 6 h -t 29.0154 -s 212 -d 211 -p tcp -e 1000 -i 160 -a 6 h -t 29.0154 -s 312 -d 311 -p tcp -e 1000 -i 161 -a 6 - -t 29.0162 -s 112 -d 111 -p tcp -e 1000 -i 162 -a 6 h -t 29.0162 -s 112 -d 111 -p tcp -e 1000 -i 162 -a 6 - -t 29.017 -s 112 -d 111 -p tcp -e 1000 -i 163 -a 6 h -t 29.017 -s 112 -d 111 -p tcp -e 1000 -i 163 -a 6 + -t 29.0172 -s 111 -d 110 -p tcp -e 1000 -i 161 -a 6 + -t 29.0172 -s 211 -d 210 -p tcp -e 1000 -i 160 -a 6 + -t 29.0172 -s 311 -d 310 -p tcp -e 1000 -i 161 -a 6 - -t 29.0172 -s 111 -d 110 -p tcp -e 1000 -i 161 -a 6 - -t 29.0172 -s 211 -d 210 -p tcp -e 1000 -i 160 -a 6 - -t 29.0172 -s 311 -d 310 -p tcp -e 1000 -i 161 -a 6 h -t 29.0172 -s 111 -d 110 -p tcp -e 1000 -i 161 -a 6 h -t 29.0172 -s 211 -d 210 -p tcp -e 1000 -i 160 -a 6 h -t 29.0172 -s 311 -d 310 -p tcp -e 1000 -i 161 -a 6 r -t 29.0174 -s 112 -d 111 -p tcp -e 1000 -i 161 -a 6 r -t 29.0174 -s 212 -d 211 -p tcp -e 1000 -i 160 -a 6 r -t 29.0174 -s 312 -d 311 -p tcp -e 1000 -i 161 -a 6 - -t 29.0178 -s 112 -d 111 -p tcp -e 1000 -i 164 -a 6 h -t 29.0178 -s 112 -d 111 -p tcp -e 1000 -i 164 -a 6 + -t 29.018 -s 111 -d 110 -p tcp -e 1000 -i 162 -a 6 r -t 29.0182 -s 112 -d 111 -p tcp -e 1000 -i 162 -a 6 - -t 29.0186 -s 112 -d 111 -p tcp -e 1000 -i 165 -a 6 h -t 29.0186 -s 112 -d 111 -p tcp -e 1000 -i 165 -a 6 + -t 29.0188 -s 111 -d 110 -p tcp -e 1000 -i 163 -a 6 r -t 29.019 -s 112 -d 111 -p tcp -e 1000 -i 163 -a 6 - -t 29.0194 -s 112 -d 111 -p tcp -e 1000 -i 166 -a 6 h -t 29.0194 -s 112 -d 111 -p tcp -e 1000 -i 166 -a 6 + -t 29.0196 -s 111 -d 110 -p tcp -e 1000 -i 164 -a 6 r -t 29.0198 -s 112 -d 111 -p tcp -e 1000 -i 164 -a 6 - -t 29.0202 -s 112 -d 111 -p tcp -e 1000 -i 167 -a 6 h -t 29.0202 -s 112 -d 111 -p tcp -e 1000 -i 167 -a 6 + -t 29.0204 -s 111 -d 110 -p tcp -e 1000 -i 165 -a 6 r -t 29.0206 -s 112 -d 111 -p tcp -e 1000 -i 165 -a 6 + -t 29.0212 -s 111 -d 110 -p tcp -e 1000 -i 166 -a 6 r -t 29.0214 -s 112 -d 111 -p tcp -e 1000 -i 166 -a 6 + -t 29.022 -s 111 -d 110 -p tcp -e 1000 -i 167 -a 6 r -t 29.0222 -s 112 -d 111 -p tcp -e 1000 -i 167 -a 6 - -t 29.0272 -s 111 -d 110 -p tcp -e 1000 -i 162 -a 6 h -t 29.0272 -s 111 -d 110 -p tcp -e 1000 -i 162 -a 6 - -t 29.0372 -s 111 -d 110 -p tcp -e 1000 -i 163 -a 6 h -t 29.0372 -s 111 -d 110 -p tcp -e 1000 -i 163 -a 6 - -t 29.0472 -s 111 -d 110 -p tcp -e 1000 -i 164 -a 6 h -t 29.0472 -s 111 -d 110 -p tcp -e 1000 -i 164 -a 6 - -t 29.0572 -s 111 -d 110 -p tcp -e 1000 -i 165 -a 6 h -t 29.0572 -s 111 -d 110 -p tcp -e 1000 -i 165 -a 6 - -t 29.0672 -s 111 -d 110 -p tcp -e 1000 -i 166 -a 6 h -t 29.0672 -s 111 -d 110 -p tcp -e 1000 -i 166 -a 6 + -t 29.0691 -s 112 -d 111 -p tcp -e 1000 -i 168 -a 2 + -t 29.0691 -s 112 -d 111 -p tcp -e 1000 -i 169 -a 2 + -t 29.0691 -s 112 -d 111 -p tcp -e 1000 -i 170 -a 2 + -t 29.0691 -s 112 -d 111 -p tcp -e 1000 -i 171 -a 2 + -t 29.0691 -s 112 -d 111 -p tcp -e 1000 -i 172 -a 2 + -t 29.0691 -s 112 -d 111 -p tcp -e 1000 -i 173 -a 2 + -t 29.0691 -s 112 -d 111 -p tcp -e 1000 -i 174 -a 2 + -t 29.0691 -s 212 -d 211 -p tcp -e 1000 -i 161 -a 2 + -t 29.0691 -s 312 -d 311 -p tcp -e 1000 -i 162 -a 2 - -t 29.0691 -s 112 -d 111 -p tcp -e 1000 -i 168 -a 2 - -t 29.0691 -s 212 -d 211 -p tcp -e 1000 -i 161 -a 2 - -t 29.0691 -s 312 -d 311 -p tcp -e 1000 -i 162 -a 2 h -t 29.0691 -s 112 -d 111 -p tcp -e 1000 -i 168 -a 2 h -t 29.0691 -s 212 -d 211 -p tcp -e 1000 -i 161 -a 2 h -t 29.0691 -s 312 -d 311 -p tcp -e 1000 -i 162 -a 2 - -t 29.0699 -s 112 -d 111 -p tcp -e 1000 -i 169 -a 2 h -t 29.0699 -s 112 -d 111 -p tcp -e 1000 -i 169 -a 2 - -t 29.0707 -s 112 -d 111 -p tcp -e 1000 -i 170 -a 2 h -t 29.0707 -s 112 -d 111 -p tcp -e 1000 -i 170 -a 2 + -t 29.0709 -s 111 -d 110 -p tcp -e 1000 -i 168 -a 2 + -t 29.0709 -s 211 -d 210 -p tcp -e 1000 -i 161 -a 2 + -t 29.0709 -s 311 -d 310 -p tcp -e 1000 -i 162 -a 2 - -t 29.0709 -s 211 -d 210 -p tcp -e 1000 -i 161 -a 2 - -t 29.0709 -s 311 -d 310 -p tcp -e 1000 -i 162 -a 2 h -t 29.0709 -s 211 -d 210 -p tcp -e 1000 -i 161 -a 2 h -t 29.0709 -s 311 -d 310 -p tcp -e 1000 -i 162 -a 2 r -t 29.0711 -s 112 -d 111 -p tcp -e 1000 -i 168 -a 2 r -t 29.0711 -s 212 -d 211 -p tcp -e 1000 -i 161 -a 2 r -t 29.0711 -s 312 -d 311 -p tcp -e 1000 -i 162 -a 2 - -t 29.0715 -s 112 -d 111 -p tcp -e 1000 -i 171 -a 2 h -t 29.0715 -s 112 -d 111 -p tcp -e 1000 -i 171 -a 2 + -t 29.0717 -s 111 -d 110 -p tcp -e 1000 -i 169 -a 2 r -t 29.0719 -s 112 -d 111 -p tcp -e 1000 -i 169 -a 2 - -t 29.0723 -s 112 -d 111 -p tcp -e 1000 -i 172 -a 2 h -t 29.0723 -s 112 -d 111 -p tcp -e 1000 -i 172 -a 2 + -t 29.0725 -s 111 -d 110 -p tcp -e 1000 -i 170 -a 2 r -t 29.0727 -s 112 -d 111 -p tcp -e 1000 -i 170 -a 2 - -t 29.0731 -s 112 -d 111 -p tcp -e 1000 -i 173 -a 2 h -t 29.0731 -s 112 -d 111 -p tcp -e 1000 -i 173 -a 2 + -t 29.0733 -s 111 -d 110 -p tcp -e 1000 -i 171 -a 2 r -t 29.0735 -s 112 -d 111 -p tcp -e 1000 -i 171 -a 2 - -t 29.0739 -s 112 -d 111 -p tcp -e 1000 -i 174 -a 2 h -t 29.0739 -s 112 -d 111 -p tcp -e 1000 -i 174 -a 2 + -t 29.0741 -s 111 -d 110 -p tcp -e 1000 -i 172 -a 2 r -t 29.0743 -s 112 -d 111 -p tcp -e 1000 -i 172 -a 2 + -t 29.0749 -s 111 -d 110 -p tcp -e 1000 -i 173 -a 2 r -t 29.0751 -s 112 -d 111 -p tcp -e 1000 -i 173 -a 2 + -t 29.0757 -s 111 -d 110 -p tcp -e 1000 -i 174 -a 2 r -t 29.0759 -s 112 -d 111 -p tcp -e 1000 -i 174 -a 2 - -t 29.0772 -s 111 -d 110 -p tcp -e 1000 -i 167 -a 6 h -t 29.0772 -s 111 -d 110 -p tcp -e 1000 -i 167 -a 6 - -t 29.0872 -s 111 -d 110 -p tcp -e 1000 -i 168 -a 2 h -t 29.0872 -s 111 -d 110 -p tcp -e 1000 -i 168 -a 2 - -t 29.0972 -s 111 -d 110 -p tcp -e 1000 -i 169 -a 2 h -t 29.0972 -s 111 -d 110 -p tcp -e 1000 -i 169 -a 2 + -t 29.1069 -s 112 -d 111 -p tcp -e 1000 -i 175 -a 3 + -t 29.1069 -s 112 -d 111 -p tcp -e 1000 -i 176 -a 3 + -t 29.1069 -s 112 -d 111 -p tcp -e 1000 -i 177 -a 3 + -t 29.1069 -s 112 -d 111 -p tcp -e 1000 -i 178 -a 3 + -t 29.1069 -s 112 -d 111 -p tcp -e 1000 -i 179 -a 3 + -t 29.1069 -s 112 -d 111 -p tcp -e 1000 -i 180 -a 3 + -t 29.1069 -s 112 -d 111 -p tcp -e 1000 -i 181 -a 3 + -t 29.1069 -s 212 -d 211 -p tcp -e 1000 -i 162 -a 3 + -t 29.1069 -s 312 -d 311 -p tcp -e 1000 -i 163 -a 3 - -t 29.1069 -s 112 -d 111 -p tcp -e 1000 -i 175 -a 3 - -t 29.1069 -s 212 -d 211 -p tcp -e 1000 -i 162 -a 3 - -t 29.1069 -s 312 -d 311 -p tcp -e 1000 -i 163 -a 3 h -t 29.1069 -s 112 -d 111 -p tcp -e 1000 -i 175 -a 3 h -t 29.1069 -s 212 -d 211 -p tcp -e 1000 -i 162 -a 3 h -t 29.1069 -s 312 -d 311 -p tcp -e 1000 -i 163 -a 3 - -t 29.1072 -s 111 -d 110 -p tcp -e 1000 -i 170 -a 2 h -t 29.1072 -s 111 -d 110 -p tcp -e 1000 -i 170 -a 2 - -t 29.1077 -s 112 -d 111 -p tcp -e 1000 -i 176 -a 3 h -t 29.1077 -s 112 -d 111 -p tcp -e 1000 -i 176 -a 3 - -t 29.1085 -s 112 -d 111 -p tcp -e 1000 -i 177 -a 3 h -t 29.1085 -s 112 -d 111 -p tcp -e 1000 -i 177 -a 3 + -t 29.1087 -s 111 -d 110 -p tcp -e 1000 -i 175 -a 3 + -t 29.1087 -s 211 -d 210 -p tcp -e 1000 -i 162 -a 3 + -t 29.1087 -s 311 -d 310 -p tcp -e 1000 -i 163 -a 3 - -t 29.1087 -s 211 -d 210 -p tcp -e 1000 -i 162 -a 3 - -t 29.1087 -s 311 -d 310 -p tcp -e 1000 -i 163 -a 3 h -t 29.1087 -s 211 -d 210 -p tcp -e 1000 -i 162 -a 3 h -t 29.1087 -s 311 -d 310 -p tcp -e 1000 -i 163 -a 3 r -t 29.1089 -s 112 -d 111 -p tcp -e 1000 -i 175 -a 3 r -t 29.1089 -s 212 -d 211 -p tcp -e 1000 -i 162 -a 3 r -t 29.1089 -s 312 -d 311 -p tcp -e 1000 -i 163 -a 3 - -t 29.1093 -s 112 -d 111 -p tcp -e 1000 -i 178 -a 3 h -t 29.1093 -s 112 -d 111 -p tcp -e 1000 -i 178 -a 3 + -t 29.1095 -s 111 -d 110 -p tcp -e 1000 -i 176 -a 3 r -t 29.1097 -s 112 -d 111 -p tcp -e 1000 -i 176 -a 3 - -t 29.1101 -s 112 -d 111 -p tcp -e 1000 -i 179 -a 3 h -t 29.1101 -s 112 -d 111 -p tcp -e 1000 -i 179 -a 3 + -t 29.1103 -s 111 -d 110 -p tcp -e 1000 -i 177 -a 3 r -t 29.1105 -s 112 -d 111 -p tcp -e 1000 -i 177 -a 3 - -t 29.1109 -s 112 -d 111 -p tcp -e 1000 -i 180 -a 3 h -t 29.1109 -s 112 -d 111 -p tcp -e 1000 -i 180 -a 3 + -t 29.1111 -s 111 -d 110 -p tcp -e 1000 -i 178 -a 3 r -t 29.1113 -s 112 -d 111 -p tcp -e 1000 -i 178 -a 3 - -t 29.1117 -s 112 -d 111 -p tcp -e 1000 -i 181 -a 3 h -t 29.1117 -s 112 -d 111 -p tcp -e 1000 -i 181 -a 3 + -t 29.1119 -s 111 -d 110 -p tcp -e 1000 -i 179 -a 3 r -t 29.1121 -s 112 -d 111 -p tcp -e 1000 -i 179 -a 3 + -t 29.1127 -s 111 -d 110 -p tcp -e 1000 -i 180 -a 3 d -t 29.1127 -s 111 -d 110 -p tcp -e 1000 -i 180 -a 3 + -t 29.1135 -s 111 -d 110 -p tcp -e 1000 -i 181 -a 3 d -t 29.1135 -s 111 -d 110 -p tcp -e 1000 -i 181 -a 3 - -t 29.1172 -s 111 -d 110 -p tcp -e 1000 -i 171 -a 2 h -t 29.1172 -s 111 -d 110 -p tcp -e 1000 -i 171 -a 2 v -t 29.1226 sim_annotation 29.1226 3 ...NSSR drops due to queue overrun (at 29.1126) + -t 29.1272 -s 110 -d 106 -p tcp -e 1000 -i 161 -a 6 + -t 29.1272 -s 210 -d 206 -p tcp -e 1000 -i 160 -a 6 + -t 29.1272 -s 310 -d 306 -p tcp -e 1000 -i 161 -a 6 - -t 29.1272 -s 110 -d 106 -p tcp -e 1000 -i 161 -a 6 - -t 29.1272 -s 111 -d 110 -p tcp -e 1000 -i 172 -a 2 - -t 29.1272 -s 210 -d 206 -p tcp -e 1000 -i 160 -a 6 - -t 29.1272 -s 310 -d 306 -p tcp -e 1000 -i 161 -a 6 h -t 29.1272 -s 110 -d 106 -p tcp -e 1000 -i 161 -a 6 h -t 29.1272 -s 111 -d 110 -p tcp -e 1000 -i 172 -a 2 h -t 29.1272 -s 210 -d 206 -p tcp -e 1000 -i 160 -a 6 h -t 29.1272 -s 310 -d 306 -p tcp -e 1000 -i 161 -a 6 r -t 29.1272 -s 111 -d 110 -p tcp -e 1000 -i 161 -a 6 r -t 29.1272 -s 211 -d 210 -p tcp -e 1000 -i 160 -a 6 r -t 29.1272 -s 311 -d 310 -p tcp -e 1000 -i 161 -a 6 + -t 29.1274 -s 212 -d 211 -p tcp -e 1000 -i 163 -a 6 - -t 29.1274 -s 212 -d 211 -p tcp -e 1000 -i 163 -a 6 h -t 29.1274 -s 212 -d 211 -p tcp -e 1000 -i 163 -a 6 + -t 29.1292 -s 211 -d 210 -p tcp -e 1000 -i 163 -a 6 - -t 29.1292 -s 211 -d 210 -p tcp -e 1000 -i 163 -a 6 h -t 29.1292 -s 211 -d 210 -p tcp -e 1000 -i 163 -a 6 r -t 29.1292 -s 110 -d 106 -p tcp -e 1000 -i 161 -a 6 r -t 29.1292 -s 210 -d 206 -p tcp -e 1000 -i 160 -a 6 r -t 29.1292 -s 310 -d 306 -p tcp -e 1000 -i 161 -a 6 r -t 29.1294 -s 212 -d 211 -p tcp -e 1000 -i 163 -a 6 + -t 29.1337 -s 112 -d 111 -p tcp -e 1000 -i 182 -a 8 + -t 29.1337 -s 112 -d 111 -p tcp -e 1000 -i 183 -a 8 + -t 29.1337 -s 112 -d 111 -p tcp -e 1000 -i 184 -a 8 + -t 29.1337 -s 112 -d 111 -p tcp -e 1000 -i 185 -a 8 + -t 29.1337 -s 112 -d 111 -p tcp -e 1000 -i 186 -a 8 + -t 29.1337 -s 112 -d 111 -p tcp -e 1000 -i 187 -a 8 + -t 29.1337 -s 112 -d 111 -p tcp -e 1000 -i 188 -a 8 + -t 29.1337 -s 212 -d 211 -p tcp -e 1000 -i 164 -a 8 + -t 29.1337 -s 312 -d 311 -p tcp -e 1000 -i 164 -a 8 - -t 29.1337 -s 112 -d 111 -p tcp -e 1000 -i 182 -a 8 - -t 29.1337 -s 212 -d 211 -p tcp -e 1000 -i 164 -a 8 - -t 29.1337 -s 312 -d 311 -p tcp -e 1000 -i 164 -a 8 h -t 29.1337 -s 112 -d 111 -p tcp -e 1000 -i 182 -a 8 h -t 29.1337 -s 212 -d 211 -p tcp -e 1000 -i 164 -a 8 h -t 29.1337 -s 312 -d 311 -p tcp -e 1000 -i 164 -a 8 - -t 29.1345 -s 112 -d 111 -p tcp -e 1000 -i 183 -a 8 h -t 29.1345 -s 112 -d 111 -p tcp -e 1000 -i 183 -a 8 - -t 29.1353 -s 112 -d 111 -p tcp -e 1000 -i 184 -a 8 h -t 29.1353 -s 112 -d 111 -p tcp -e 1000 -i 184 -a 8 + -t 29.1355 -s 111 -d 110 -p tcp -e 1000 -i 182 -a 8 + -t 29.1355 -s 211 -d 210 -p tcp -e 1000 -i 164 -a 8 + -t 29.1355 -s 311 -d 310 -p tcp -e 1000 -i 164 -a 8 - -t 29.1355 -s 311 -d 310 -p tcp -e 1000 -i 164 -a 8 h -t 29.1355 -s 311 -d 310 -p tcp -e 1000 -i 164 -a 8 r -t 29.1357 -s 112 -d 111 -p tcp -e 1000 -i 182 -a 8 r -t 29.1357 -s 212 -d 211 -p tcp -e 1000 -i 164 -a 8 r -t 29.1357 -s 312 -d 311 -p tcp -e 1000 -i 164 -a 8 - -t 29.1361 -s 112 -d 111 -p tcp -e 1000 -i 185 -a 8 h -t 29.1361 -s 112 -d 111 -p tcp -e 1000 -i 185 -a 8 + -t 29.1363 -s 111 -d 110 -p tcp -e 1000 -i 183 -a 8 r -t 29.1365 -s 112 -d 111 -p tcp -e 1000 -i 183 -a 8 - -t 29.1369 -s 112 -d 111 -p tcp -e 1000 -i 186 -a 8 h -t 29.1369 -s 112 -d 111 -p tcp -e 1000 -i 186 -a 8 v -t 29.1371 sim_annotation 29.1371 4 ...RBP paces second magenta packet (at 29.1271) + -t 29.1371 -s 111 -d 110 -p tcp -e 1000 -i 184 -a 8 d -t 29.1371 -s 111 -d 110 -p tcp -e 1000 -i 184 -a 8 + -t 29.1372 -s 110 -d 106 -p tcp -e 1000 -i 162 -a 6 - -t 29.1372 -s 110 -d 106 -p tcp -e 1000 -i 162 -a 6 - -t 29.1372 -s 111 -d 110 -p tcp -e 1000 -i 173 -a 2 h -t 29.1372 -s 110 -d 106 -p tcp -e 1000 -i 162 -a 6 h -t 29.1372 -s 111 -d 110 -p tcp -e 1000 -i 173 -a 2 r -t 29.1372 -s 111 -d 110 -p tcp -e 1000 -i 162 -a 6 - -t 29.1377 -s 112 -d 111 -p tcp -e 1000 -i 187 -a 8 h -t 29.1377 -s 112 -d 111 -p tcp -e 1000 -i 187 -a 8 + -t 29.1379 -s 111 -d 110 -p tcp -e 1000 -i 185 -a 8 r -t 29.1381 -s 112 -d 111 -p tcp -e 1000 -i 185 -a 8 - -t 29.1385 -s 112 -d 111 -p tcp -e 1000 -i 188 -a 8 h -t 29.1385 -s 112 -d 111 -p tcp -e 1000 -i 188 -a 8 + -t 29.1387 -s 111 -d 110 -p tcp -e 1000 -i 186 -a 8 d -t 29.1387 -s 111 -d 110 -p tcp -e 1000 -i 186 -a 8 + -t 29.139 -s 106 -d 110 -p ack -e 40 -i 189 -a 6 - -t 29.139 -s 106 -d 110 -p ack -e 40 -i 189 -a 6 h -t 29.139 -s 106 -d 110 -p ack -e 40 -i 189 -a 6 - -t 29.1392 -s 211 -d 210 -p tcp -e 1000 -i 164 -a 8 h -t 29.1392 -s 211 -d 210 -p tcp -e 1000 -i 164 -a 8 r -t 29.1392 -s 110 -d 106 -p tcp -e 1000 -i 162 -a 6 + -t 29.1395 -s 111 -d 110 -p tcp -e 1000 -i 187 -a 8 d -t 29.1395 -s 111 -d 110 -p tcp -e 1000 -i 187 -a 8 + -t 29.14 -s 110 -d 111 -p ack -e 40 -i 189 -a 6 - -t 29.14 -s 110 -d 111 -p ack -e 40 -i 189 -a 6 h -t 29.14 -s 110 -d 111 -p ack -e 40 -i 189 -a 6 r -t 29.14 -s 106 -d 110 -p ack -e 40 -i 189 -a 6 + -t 29.1403 -s 111 -d 110 -p tcp -e 1000 -i 188 -a 8 d -t 29.1403 -s 111 -d 110 -p tcp -e 1000 -i 188 -a 8 + -t 29.1472 -s 110 -d 106 -p tcp -e 1000 -i 163 -a 6 - -t 29.1472 -s 110 -d 106 -p tcp -e 1000 -i 163 -a 6 - -t 29.1472 -s 111 -d 110 -p tcp -e 1000 -i 174 -a 2 h -t 29.1472 -s 110 -d 106 -p tcp -e 1000 -i 163 -a 6 h -t 29.1472 -s 111 -d 110 -p tcp -e 1000 -i 174 -a 2 r -t 29.1472 -s 111 -d 110 -p tcp -e 1000 -i 163 -a 6 r -t 29.1492 -s 110 -d 106 -p tcp -e 1000 -i 163 -a 6 + -t 29.1572 -s 110 -d 106 -p tcp -e 1000 -i 164 -a 6 - -t 29.1572 -s 110 -d 106 -p tcp -e 1000 -i 164 -a 6 - -t 29.1572 -s 111 -d 110 -p tcp -e 1000 -i 175 -a 3 h -t 29.1572 -s 110 -d 106 -p tcp -e 1000 -i 164 -a 6 h -t 29.1572 -s 111 -d 110 -p tcp -e 1000 -i 175 -a 3 r -t 29.1572 -s 111 -d 110 -p tcp -e 1000 -i 164 -a 6 + -t 29.159 -s 106 -d 110 -p ack -e 40 -i 190 -a 6 - -t 29.159 -s 106 -d 110 -p ack -e 40 -i 190 -a 6 h -t 29.159 -s 106 -d 110 -p ack -e 40 -i 190 -a 6 r -t 29.1592 -s 110 -d 106 -p tcp -e 1000 -i 164 -a 6 + -t 29.16 -s 110 -d 111 -p ack -e 40 -i 190 -a 6 - -t 29.16 -s 110 -d 111 -p ack -e 40 -i 190 -a 6 h -t 29.16 -s 110 -d 111 -p ack -e 40 -i 190 -a 6 r -t 29.16 -s 106 -d 110 -p ack -e 40 -i 190 -a 6 + -t 29.1672 -s 110 -d 106 -p tcp -e 1000 -i 165 -a 6 - -t 29.1672 -s 110 -d 106 -p tcp -e 1000 -i 165 -a 6 - -t 29.1672 -s 111 -d 110 -p tcp -e 1000 -i 176 -a 3 h -t 29.1672 -s 110 -d 106 -p tcp -e 1000 -i 165 -a 6 h -t 29.1672 -s 111 -d 110 -p tcp -e 1000 -i 176 -a 3 r -t 29.1672 -s 111 -d 110 -p tcp -e 1000 -i 165 -a 6 r -t 29.1692 -s 110 -d 106 -p tcp -e 1000 -i 165 -a 6 + -t 29.1772 -s 110 -d 106 -p tcp -e 1000 -i 166 -a 6 - -t 29.1772 -s 110 -d 106 -p tcp -e 1000 -i 166 -a 6 - -t 29.1772 -s 111 -d 110 -p tcp -e 1000 -i 177 -a 3 h -t 29.1772 -s 110 -d 106 -p tcp -e 1000 -i 166 -a 6 h -t 29.1772 -s 111 -d 110 -p tcp -e 1000 -i 177 -a 3 r -t 29.1772 -s 111 -d 110 -p tcp -e 1000 -i 166 -a 6 + -t 29.179 -s 106 -d 110 -p ack -e 40 -i 191 -a 6 - -t 29.179 -s 106 -d 110 -p ack -e 40 -i 191 -a 6 h -t 29.179 -s 106 -d 110 -p ack -e 40 -i 191 -a 6 r -t 29.1792 -s 110 -d 106 -p tcp -e 1000 -i 166 -a 6 + -t 29.18 -s 110 -d 111 -p ack -e 40 -i 191 -a 6 - -t 29.18 -s 110 -d 111 -p ack -e 40 -i 191 -a 6 h -t 29.18 -s 110 -d 111 -p ack -e 40 -i 191 -a 6 r -t 29.18 -s 106 -d 110 -p ack -e 40 -i 191 -a 6 + -t 29.1809 -s 210 -d 202 -p tcp -e 1000 -i 161 -a 2 + -t 29.1809 -s 310 -d 302 -p tcp -e 1000 -i 162 -a 2 - -t 29.1809 -s 210 -d 202 -p tcp -e 1000 -i 161 -a 2 - -t 29.1809 -s 310 -d 302 -p tcp -e 1000 -i 162 -a 2 h -t 29.1809 -s 210 -d 202 -p tcp -e 1000 -i 161 -a 2 h -t 29.1809 -s 310 -d 302 -p tcp -e 1000 -i 162 -a 2 r -t 29.1809 -s 211 -d 210 -p tcp -e 1000 -i 161 -a 2 r -t 29.1809 -s 311 -d 310 -p tcp -e 1000 -i 162 -a 2 r -t 29.1829 -s 210 -d 202 -p tcp -e 1000 -i 161 -a 2 r -t 29.1829 -s 310 -d 302 -p tcp -e 1000 -i 162 -a 2 + -t 29.1872 -s 110 -d 106 -p tcp -e 1000 -i 167 -a 6 - -t 29.1872 -s 110 -d 106 -p tcp -e 1000 -i 167 -a 6 - -t 29.1872 -s 111 -d 110 -p tcp -e 1000 -i 178 -a 3 h -t 29.1872 -s 110 -d 106 -p tcp -e 1000 -i 167 -a 6 h -t 29.1872 -s 111 -d 110 -p tcp -e 1000 -i 178 -a 3 r -t 29.1872 -s 111 -d 110 -p tcp -e 1000 -i 167 -a 6 r -t 29.1892 -s 110 -d 106 -p tcp -e 1000 -i 167 -a 6 + -t 29.1896 -s 212 -d 211 -p tcp -e 1000 -i 165 -a 2 - -t 29.1896 -s 212 -d 211 -p tcp -e 1000 -i 165 -a 2 h -t 29.1896 -s 212 -d 211 -p tcp -e 1000 -i 165 -a 2 + -t 29.1914 -s 211 -d 210 -p tcp -e 1000 -i 165 -a 2 - -t 29.1914 -s 211 -d 210 -p tcp -e 1000 -i 165 -a 2 h -t 29.1914 -s 211 -d 210 -p tcp -e 1000 -i 165 -a 2 r -t 29.1916 -s 212 -d 211 -p tcp -e 1000 -i 165 -a 2 + -t 29.1972 -s 110 -d 102 -p tcp -e 1000 -i 168 -a 2 - -t 29.1972 -s 110 -d 102 -p tcp -e 1000 -i 168 -a 2 - -t 29.1972 -s 111 -d 110 -p tcp -e 1000 -i 179 -a 3 h -t 29.1972 -s 110 -d 102 -p tcp -e 1000 -i 168 -a 2 h -t 29.1972 -s 111 -d 110 -p tcp -e 1000 -i 179 -a 3 r -t 29.1972 -s 111 -d 110 -p tcp -e 1000 -i 168 -a 2 r -t 29.1992 -s 110 -d 102 -p tcp -e 1000 -i 168 -a 2 + -t 29.2072 -s 110 -d 102 -p tcp -e 1000 -i 169 -a 2 - -t 29.2072 -s 110 -d 102 -p tcp -e 1000 -i 169 -a 2 - -t 29.2072 -s 111 -d 110 -p tcp -e 1000 -i 182 -a 8 h -t 29.2072 -s 110 -d 102 -p tcp -e 1000 -i 169 -a 2 h -t 29.2072 -s 111 -d 110 -p tcp -e 1000 -i 182 -a 8 r -t 29.2072 -s 111 -d 110 -p tcp -e 1000 -i 169 -a 2 + -t 29.209 -s 102 -d 110 -p ack -e 40 -i 192 -a 2 - -t 29.209 -s 102 -d 110 -p ack -e 40 -i 192 -a 2 h -t 29.209 -s 102 -d 110 -p ack -e 40 -i 192 -a 2 r -t 29.2092 -s 110 -d 102 -p tcp -e 1000 -i 169 -a 2 + -t 29.21 -s 110 -d 111 -p ack -e 40 -i 192 -a 2 - -t 29.21 -s 110 -d 111 -p ack -e 40 -i 192 -a 2 h -t 29.21 -s 110 -d 111 -p ack -e 40 -i 192 -a 2 r -t 29.21 -s 102 -d 110 -p ack -e 40 -i 192 -a 2 + -t 29.2172 -s 110 -d 102 -p tcp -e 1000 -i 170 -a 2 - -t 29.2172 -s 110 -d 102 -p tcp -e 1000 -i 170 -a 2 - -t 29.2172 -s 111 -d 110 -p tcp -e 1000 -i 183 -a 8 h -t 29.2172 -s 110 -d 102 -p tcp -e 1000 -i 170 -a 2 h -t 29.2172 -s 111 -d 110 -p tcp -e 1000 -i 183 -a 8 r -t 29.2172 -s 111 -d 110 -p tcp -e 1000 -i 170 -a 2 + -t 29.2187 -s 210 -d 203 -p tcp -e 1000 -i 162 -a 3 + -t 29.2187 -s 310 -d 303 -p tcp -e 1000 -i 163 -a 3 - -t 29.2187 -s 210 -d 203 -p tcp -e 1000 -i 162 -a 3 - -t 29.2187 -s 310 -d 303 -p tcp -e 1000 -i 163 -a 3 h -t 29.2187 -s 210 -d 203 -p tcp -e 1000 -i 162 -a 3 h -t 29.2187 -s 310 -d 303 -p tcp -e 1000 -i 163 -a 3 r -t 29.2187 -s 211 -d 210 -p tcp -e 1000 -i 162 -a 3 r -t 29.2187 -s 311 -d 310 -p tcp -e 1000 -i 163 -a 3 r -t 29.2192 -s 110 -d 102 -p tcp -e 1000 -i 170 -a 2 r -t 29.2207 -s 210 -d 203 -p tcp -e 1000 -i 162 -a 3 r -t 29.2207 -s 310 -d 303 -p tcp -e 1000 -i 163 -a 3 + -t 29.2234 -s 212 -d 211 -p tcp -e 1000 -i 166 -a 3 - -t 29.2234 -s 212 -d 211 -p tcp -e 1000 -i 166 -a 3 h -t 29.2234 -s 212 -d 211 -p tcp -e 1000 -i 166 -a 3 + -t 29.2252 -s 211 -d 210 -p tcp -e 1000 -i 166 -a 3 - -t 29.2252 -s 211 -d 210 -p tcp -e 1000 -i 166 -a 3 h -t 29.2252 -s 211 -d 210 -p tcp -e 1000 -i 166 -a 3 r -t 29.2254 -s 212 -d 211 -p tcp -e 1000 -i 166 -a 3 + -t 29.2272 -s 110 -d 102 -p tcp -e 1000 -i 171 -a 2 - -t 29.2272 -s 110 -d 102 -p tcp -e 1000 -i 171 -a 2 - -t 29.2272 -s 111 -d 110 -p tcp -e 1000 -i 185 -a 8 h -t 29.2272 -s 110 -d 102 -p tcp -e 1000 -i 171 -a 2 h -t 29.2272 -s 111 -d 110 -p tcp -e 1000 -i 185 -a 8 r -t 29.2272 -s 111 -d 110 -p tcp -e 1000 -i 171 -a 2 + -t 29.229 -s 102 -d 110 -p ack -e 40 -i 193 -a 2 + -t 29.229 -s 206 -d 210 -p ack -e 40 -i 167 -a 6 + -t 29.229 -s 306 -d 310 -p ack -e 40 -i 165 -a 6 - -t 29.229 -s 102 -d 110 -p ack -e 40 -i 193 -a 2 - -t 29.229 -s 206 -d 210 -p ack -e 40 -i 167 -a 6 - -t 29.229 -s 306 -d 310 -p ack -e 40 -i 165 -a 6 h -t 29.229 -s 102 -d 110 -p ack -e 40 -i 193 -a 2 h -t 29.229 -s 206 -d 210 -p ack -e 40 -i 167 -a 6 h -t 29.229 -s 306 -d 310 -p ack -e 40 -i 165 -a 6 r -t 29.2292 -s 110 -d 102 -p tcp -e 1000 -i 171 -a 2 + -t 29.23 -s 110 -d 111 -p ack -e 40 -i 193 -a 2 + -t 29.23 -s 210 -d 211 -p ack -e 40 -i 167 -a 6 + -t 29.23 -s 310 -d 311 -p ack -e 40 -i 165 -a 6 - -t 29.23 -s 110 -d 111 -p ack -e 40 -i 193 -a 2 - -t 29.23 -s 210 -d 211 -p ack -e 40 -i 167 -a 6 - -t 29.23 -s 310 -d 311 -p ack -e 40 -i 165 -a 6 h -t 29.23 -s 110 -d 111 -p ack -e 40 -i 193 -a 2 h -t 29.23 -s 210 -d 211 -p ack -e 40 -i 167 -a 6 h -t 29.23 -s 310 -d 311 -p ack -e 40 -i 165 -a 6 r -t 29.23 -s 102 -d 110 -p ack -e 40 -i 193 -a 2 r -t 29.23 -s 206 -d 210 -p ack -e 40 -i 167 -a 6 r -t 29.23 -s 306 -d 310 -p ack -e 40 -i 165 -a 6 + -t 29.2372 -s 110 -d 102 -p tcp -e 1000 -i 172 -a 2 - -t 29.2372 -s 110 -d 102 -p tcp -e 1000 -i 172 -a 2 h -t 29.2372 -s 110 -d 102 -p tcp -e 1000 -i 172 -a 2 r -t 29.2372 -s 111 -d 110 -p tcp -e 1000 -i 172 -a 2 + -t 29.2392 -s 210 -d 206 -p tcp -e 1000 -i 163 -a 6 - -t 29.2392 -s 210 -d 206 -p tcp -e 1000 -i 163 -a 6 h -t 29.2392 -s 210 -d 206 -p tcp -e 1000 -i 163 -a 6 r -t 29.2392 -s 110 -d 102 -p tcp -e 1000 -i 172 -a 2 r -t 29.2392 -s 211 -d 210 -p tcp -e 1000 -i 163 -a 6 + -t 29.2394 -s 212 -d 211 -p tcp -e 1000 -i 168 -a 6 - -t 29.2394 -s 212 -d 211 -p tcp -e 1000 -i 168 -a 6 h -t 29.2394 -s 212 -d 211 -p tcp -e 1000 -i 168 -a 6 + -t 29.2404 -s 111 -d 112 -p ack -e 40 -i 189 -a 6 - -t 29.2404 -s 111 -d 112 -p ack -e 40 -i 189 -a 6 h -t 29.2404 -s 111 -d 112 -p ack -e 40 -i 189 -a 6 r -t 29.2404 -s 110 -d 111 -p ack -e 40 -i 189 -a 6 + -t 29.2412 -s 211 -d 210 -p tcp -e 1000 -i 168 -a 6 - -t 29.2412 -s 211 -d 210 -p tcp -e 1000 -i 168 -a 6 h -t 29.2412 -s 211 -d 210 -p tcp -e 1000 -i 168 -a 6 r -t 29.2412 -s 210 -d 206 -p tcp -e 1000 -i 163 -a 6 r -t 29.2414 -s 111 -d 112 -p ack -e 40 -i 189 -a 6 r -t 29.2414 -s 212 -d 211 -p tcp -e 1000 -i 168 -a 6 + -t 29.2415 -s 112 -d 111 -p tcp -e 1000 -i 194 -a 6 + -t 29.2415 -s 112 -d 111 -p tcp -e 1000 -i 195 -a 6 + -t 29.2415 -s 112 -d 111 -p tcp -e 1000 -i 196 -a 6 - -t 29.2415 -s 112 -d 111 -p tcp -e 1000 -i 194 -a 6 h -t 29.2415 -s 112 -d 111 -p tcp -e 1000 -i 194 -a 6 - -t 29.2423 -s 112 -d 111 -p tcp -e 1000 -i 195 -a 6 h -t 29.2423 -s 112 -d 111 -p tcp -e 1000 -i 195 -a 6 - -t 29.2431 -s 112 -d 111 -p tcp -e 1000 -i 196 -a 6 h -t 29.2431 -s 112 -d 111 -p tcp -e 1000 -i 196 -a 6 + -t 29.2433 -s 111 -d 110 -p tcp -e 1000 -i 194 -a 6 - -t 29.2433 -s 111 -d 110 -p tcp -e 1000 -i 194 -a 6 h -t 29.2433 -s 111 -d 110 -p tcp -e 1000 -i 194 -a 6 r -t 29.2435 -s 112 -d 111 -p tcp -e 1000 -i 194 -a 6 + -t 29.2441 -s 111 -d 110 -p tcp -e 1000 -i 195 -a 6 r -t 29.2443 -s 112 -d 111 -p tcp -e 1000 -i 195 -a 6 + -t 29.2449 -s 111 -d 110 -p tcp -e 1000 -i 196 -a 6 r -t 29.2451 -s 112 -d 111 -p tcp -e 1000 -i 196 -a 6 + -t 29.2455 -s 310 -d 308 -p tcp -e 1000 -i 164 -a 8 - -t 29.2455 -s 310 -d 308 -p tcp -e 1000 -i 164 -a 8 h -t 29.2455 -s 310 -d 308 -p tcp -e 1000 -i 164 -a 8 r -t 29.2455 -s 311 -d 310 -p tcp -e 1000 -i 164 -a 8 + -t 29.2457 -s 212 -d 211 -p tcp -e 1000 -i 169 -a 8 - -t 29.2457 -s 212 -d 211 -p tcp -e 1000 -i 169 -a 8 h -t 29.2457 -s 212 -d 211 -p tcp -e 1000 -i 169 -a 8 + -t 29.2472 -s 110 -d 102 -p tcp -e 1000 -i 173 -a 2 - -t 29.2472 -s 110 -d 102 -p tcp -e 1000 -i 173 -a 2 h -t 29.2472 -s 110 -d 102 -p tcp -e 1000 -i 173 -a 2 r -t 29.2472 -s 111 -d 110 -p tcp -e 1000 -i 173 -a 2 + -t 29.2475 -s 211 -d 210 -p tcp -e 1000 -i 169 -a 8 r -t 29.2475 -s 310 -d 308 -p tcp -e 1000 -i 164 -a 8 r -t 29.2477 -s 212 -d 211 -p tcp -e 1000 -i 169 -a 8 + -t 29.249 -s 102 -d 110 -p ack -e 40 -i 197 -a 2 - -t 29.249 -s 102 -d 110 -p ack -e 40 -i 197 -a 2 h -t 29.249 -s 102 -d 110 -p ack -e 40 -i 197 -a 2 + -t 29.2492 -s 210 -d 208 -p tcp -e 1000 -i 164 -a 8 - -t 29.2492 -s 210 -d 208 -p tcp -e 1000 -i 164 -a 8 h -t 29.2492 -s 210 -d 208 -p tcp -e 1000 -i 164 -a 8 r -t 29.2492 -s 110 -d 102 -p tcp -e 1000 -i 173 -a 2 r -t 29.2492 -s 211 -d 210 -p tcp -e 1000 -i 164 -a 8 + -t 29.25 -s 110 -d 111 -p ack -e 40 -i 197 -a 2 - -t 29.25 -s 110 -d 111 -p ack -e 40 -i 197 -a 2 h -t 29.25 -s 110 -d 111 -p ack -e 40 -i 197 -a 2 r -t 29.25 -s 102 -d 110 -p ack -e 40 -i 197 -a 2 - -t 29.2512 -s 211 -d 210 -p tcp -e 1000 -i 169 -a 8 h -t 29.2512 -s 211 -d 210 -p tcp -e 1000 -i 169 -a 8 r -t 29.2512 -s 210 -d 208 -p tcp -e 1000 -i 164 -a 8 - -t 29.2533 -s 111 -d 110 -p tcp -e 1000 -i 195 -a 6 h -t 29.2533 -s 111 -d 110 -p tcp -e 1000 -i 195 -a 6 + -t 29.2572 -s 110 -d 102 -p tcp -e 1000 -i 174 -a 2 - -t 29.2572 -s 110 -d 102 -p tcp -e 1000 -i 174 -a 2 h -t 29.2572 -s 110 -d 102 -p tcp -e 1000 -i 174 -a 2 r -t 29.2572 -s 111 -d 110 -p tcp -e 1000 -i 174 -a 2 r -t 29.2592 -s 110 -d 102 -p tcp -e 1000 -i 174 -a 2 + -t 29.2604 -s 111 -d 112 -p ack -e 40 -i 190 -a 6 - -t 29.2604 -s 111 -d 112 -p ack -e 40 -i 190 -a 6 h -t 29.2604 -s 111 -d 112 -p ack -e 40 -i 190 -a 6 r -t 29.2604 -s 110 -d 111 -p ack -e 40 -i 190 -a 6 r -t 29.2614 -s 111 -d 112 -p ack -e 40 -i 190 -a 6 - -t 29.2633 -s 111 -d 110 -p tcp -e 1000 -i 196 -a 6 h -t 29.2633 -s 111 -d 110 -p tcp -e 1000 -i 196 -a 6 + -t 29.2672 -s 110 -d 103 -p tcp -e 1000 -i 175 -a 3 - -t 29.2672 -s 110 -d 103 -p tcp -e 1000 -i 175 -a 3 h -t 29.2672 -s 110 -d 103 -p tcp -e 1000 -i 175 -a 3 r -t 29.2672 -s 111 -d 110 -p tcp -e 1000 -i 175 -a 3 r -t 29.2692 -s 110 -d 103 -p tcp -e 1000 -i 175 -a 3 + -t 29.2772 -s 110 -d 103 -p tcp -e 1000 -i 176 -a 3 - -t 29.2772 -s 110 -d 103 -p tcp -e 1000 -i 176 -a 3 h -t 29.2772 -s 110 -d 103 -p tcp -e 1000 -i 176 -a 3 r -t 29.2772 -s 111 -d 110 -p tcp -e 1000 -i 176 -a 3 + -t 29.279 -s 103 -d 110 -p ack -e 40 -i 198 -a 3 - -t 29.279 -s 103 -d 110 -p ack -e 40 -i 198 -a 3 h -t 29.279 -s 103 -d 110 -p ack -e 40 -i 198 -a 3 r -t 29.2792 -s 110 -d 103 -p tcp -e 1000 -i 176 -a 3 + -t 29.28 -s 110 -d 111 -p ack -e 40 -i 198 -a 3 - -t 29.28 -s 110 -d 111 -p ack -e 40 -i 198 -a 3 h -t 29.28 -s 110 -d 111 -p ack -e 40 -i 198 -a 3 r -t 29.28 -s 103 -d 110 -p ack -e 40 -i 198 -a 3 + -t 29.2804 -s 111 -d 112 -p ack -e 40 -i 191 -a 6 - -t 29.2804 -s 111 -d 112 -p ack -e 40 -i 191 -a 6 h -t 29.2804 -s 111 -d 112 -p ack -e 40 -i 191 -a 6 r -t 29.2804 -s 110 -d 111 -p ack -e 40 -i 191 -a 6 r -t 29.2814 -s 111 -d 112 -p ack -e 40 -i 191 -a 6 + -t 29.2827 -s 202 -d 210 -p ack -e 40 -i 170 -a 2 + -t 29.2827 -s 302 -d 310 -p ack -e 40 -i 166 -a 2 - -t 29.2827 -s 202 -d 210 -p ack -e 40 -i 170 -a 2 - -t 29.2827 -s 302 -d 310 -p ack -e 40 -i 166 -a 2 h -t 29.2827 -s 202 -d 210 -p ack -e 40 -i 170 -a 2 h -t 29.2827 -s 302 -d 310 -p ack -e 40 -i 166 -a 2 + -t 29.2837 -s 210 -d 211 -p ack -e 40 -i 170 -a 2 + -t 29.2837 -s 310 -d 311 -p ack -e 40 -i 166 -a 2 - -t 29.2837 -s 210 -d 211 -p ack -e 40 -i 170 -a 2 - -t 29.2837 -s 310 -d 311 -p ack -e 40 -i 166 -a 2 h -t 29.2837 -s 210 -d 211 -p ack -e 40 -i 170 -a 2 h -t 29.2837 -s 310 -d 311 -p ack -e 40 -i 166 -a 2 r -t 29.2837 -s 202 -d 210 -p ack -e 40 -i 170 -a 2 r -t 29.2837 -s 302 -d 310 -p ack -e 40 -i 166 -a 2 + -t 29.2872 -s 110 -d 103 -p tcp -e 1000 -i 177 -a 3 - -t 29.2872 -s 110 -d 103 -p tcp -e 1000 -i 177 -a 3 h -t 29.2872 -s 110 -d 103 -p tcp -e 1000 -i 177 -a 3 r -t 29.2872 -s 111 -d 110 -p tcp -e 1000 -i 177 -a 3 + -t 29.289 -s 106 -d 110 -p ack -e 40 -i 199 -a 6 - -t 29.289 -s 106 -d 110 -p ack -e 40 -i 199 -a 6 h -t 29.289 -s 106 -d 110 -p ack -e 40 -i 199 -a 6 r -t 29.2892 -s 110 -d 103 -p tcp -e 1000 -i 177 -a 3 + -t 29.29 -s 110 -d 111 -p ack -e 40 -i 199 -a 6 - -t 29.29 -s 110 -d 111 -p ack -e 40 -i 199 -a 6 h -t 29.29 -s 110 -d 111 -p ack -e 40 -i 199 -a 6 r -t 29.29 -s 106 -d 110 -p ack -e 40 -i 199 -a 6 + -t 29.2972 -s 110 -d 103 -p tcp -e 1000 -i 178 -a 3 - -t 29.2972 -s 110 -d 103 -p tcp -e 1000 -i 178 -a 3 h -t 29.2972 -s 110 -d 103 -p tcp -e 1000 -i 178 -a 3 r -t 29.2972 -s 111 -d 110 -p tcp -e 1000 -i 178 -a 3 + -t 29.299 -s 103 -d 110 -p ack -e 40 -i 200 -a 3 - -t 29.299 -s 103 -d 110 -p ack -e 40 -i 200 -a 3 h -t 29.299 -s 103 -d 110 -p ack -e 40 -i 200 -a 3 r -t 29.2992 -s 110 -d 103 -p tcp -e 1000 -i 178 -a 3 + -t 29.3 -s 110 -d 111 -p ack -e 40 -i 200 -a 3 - -t 29.3 -s 110 -d 111 -p ack -e 40 -i 200 -a 3 h -t 29.3 -s 110 -d 111 -p ack -e 40 -i 200 -a 3 r -t 29.3 -s 103 -d 110 -p ack -e 40 -i 200 -a 3 + -t 29.3014 -s 210 -d 202 -p tcp -e 1000 -i 165 -a 2 - -t 29.3014 -s 210 -d 202 -p tcp -e 1000 -i 165 -a 2 h -t 29.3014 -s 210 -d 202 -p tcp -e 1000 -i 165 -a 2 r -t 29.3014 -s 211 -d 210 -p tcp -e 1000 -i 165 -a 2 r -t 29.3034 -s 210 -d 202 -p tcp -e 1000 -i 165 -a 2 + -t 29.3072 -s 110 -d 103 -p tcp -e 1000 -i 179 -a 3 - -t 29.3072 -s 110 -d 103 -p tcp -e 1000 -i 179 -a 3 h -t 29.3072 -s 110 -d 103 -p tcp -e 1000 -i 179 -a 3 r -t 29.3072 -s 111 -d 110 -p tcp -e 1000 -i 179 -a 3 r -t 29.3092 -s 110 -d 103 -p tcp -e 1000 -i 179 -a 3 + -t 29.3102 -s 212 -d 211 -p tcp -e 1000 -i 171 -a 2 - -t 29.3102 -s 212 -d 211 -p tcp -e 1000 -i 171 -a 2 h -t 29.3102 -s 212 -d 211 -p tcp -e 1000 -i 171 -a 2 + -t 29.3104 -s 111 -d 112 -p ack -e 40 -i 192 -a 2 - -t 29.3104 -s 111 -d 112 -p ack -e 40 -i 192 -a 2 h -t 29.3104 -s 111 -d 112 -p ack -e 40 -i 192 -a 2 r -t 29.3104 -s 110 -d 111 -p ack -e 40 -i 192 -a 2 r -t 29.3114 -s 111 -d 112 -p ack -e 40 -i 192 -a 2 + -t 29.3115 -s 112 -d 111 -p tcp -e 1000 -i 201 -a 2 + -t 29.3115 -s 112 -d 111 -p tcp -e 1000 -i 202 -a 2 + -t 29.3115 -s 112 -d 111 -p tcp -e 1000 -i 203 -a 2 - -t 29.3115 -s 112 -d 111 -p tcp -e 1000 -i 201 -a 2 h -t 29.3115 -s 112 -d 111 -p tcp -e 1000 -i 201 -a 2 + -t 29.312 -s 211 -d 210 -p tcp -e 1000 -i 171 -a 2 - -t 29.312 -s 211 -d 210 -p tcp -e 1000 -i 171 -a 2 h -t 29.312 -s 211 -d 210 -p tcp -e 1000 -i 171 -a 2 r -t 29.3122 -s 212 -d 211 -p tcp -e 1000 -i 171 -a 2 - -t 29.3123 -s 112 -d 111 -p tcp -e 1000 -i 202 -a 2 h -t 29.3123 -s 112 -d 111 -p tcp -e 1000 -i 202 -a 2 - -t 29.3131 -s 112 -d 111 -p tcp -e 1000 -i 203 -a 2 h -t 29.3131 -s 112 -d 111 -p tcp -e 1000 -i 203 -a 2 + -t 29.3133 -s 111 -d 110 -p tcp -e 1000 -i 201 -a 2 - -t 29.3133 -s 111 -d 110 -p tcp -e 1000 -i 201 -a 2 h -t 29.3133 -s 111 -d 110 -p tcp -e 1000 -i 201 -a 2 r -t 29.3135 -s 112 -d 111 -p tcp -e 1000 -i 201 -a 2 + -t 29.3141 -s 111 -d 110 -p tcp -e 1000 -i 202 -a 2 r -t 29.3143 -s 112 -d 111 -p tcp -e 1000 -i 202 -a 2 + -t 29.3149 -s 111 -d 110 -p tcp -e 1000 -i 203 -a 2 r -t 29.3151 -s 112 -d 111 -p tcp -e 1000 -i 203 -a 2 + -t 29.3172 -s 110 -d 108 -p tcp -e 1000 -i 182 -a 8 - -t 29.3172 -s 110 -d 108 -p tcp -e 1000 -i 182 -a 8 h -t 29.3172 -s 110 -d 108 -p tcp -e 1000 -i 182 -a 8 r -t 29.3172 -s 111 -d 110 -p tcp -e 1000 -i 182 -a 8 r -t 29.3192 -s 110 -d 108 -p tcp -e 1000 -i 182 -a 8 + -t 29.3205 -s 203 -d 210 -p ack -e 40 -i 172 -a 3 + -t 29.3205 -s 303 -d 310 -p ack -e 40 -i 167 -a 3 - -t 29.3205 -s 203 -d 210 -p ack -e 40 -i 172 -a 3 - -t 29.3205 -s 303 -d 310 -p ack -e 40 -i 167 -a 3 h -t 29.3205 -s 203 -d 210 -p ack -e 40 -i 172 -a 3 h -t 29.3205 -s 303 -d 310 -p ack -e 40 -i 167 -a 3 + -t 29.3215 -s 210 -d 211 -p ack -e 40 -i 172 -a 3 + -t 29.3215 -s 310 -d 311 -p ack -e 40 -i 167 -a 3 - -t 29.3215 -s 210 -d 211 -p ack -e 40 -i 172 -a 3 - -t 29.3215 -s 310 -d 311 -p ack -e 40 -i 167 -a 3 h -t 29.3215 -s 210 -d 211 -p ack -e 40 -i 172 -a 3 h -t 29.3215 -s 310 -d 311 -p ack -e 40 -i 167 -a 3 r -t 29.3215 -s 203 -d 210 -p ack -e 40 -i 172 -a 3 r -t 29.3215 -s 303 -d 310 -p ack -e 40 -i 167 -a 3 - -t 29.3233 -s 111 -d 110 -p tcp -e 1000 -i 202 -a 2 h -t 29.3233 -s 111 -d 110 -p tcp -e 1000 -i 202 -a 2 + -t 29.3272 -s 110 -d 108 -p tcp -e 1000 -i 183 -a 8 - -t 29.3272 -s 110 -d 108 -p tcp -e 1000 -i 183 -a 8 h -t 29.3272 -s 110 -d 108 -p tcp -e 1000 -i 183 -a 8 r -t 29.3272 -s 111 -d 110 -p tcp -e 1000 -i 183 -a 8 + -t 29.329 -s 108 -d 110 -p ack -e 40 -i 204 -a 8 - -t 29.329 -s 108 -d 110 -p ack -e 40 -i 204 -a 8 h -t 29.329 -s 108 -d 110 -p ack -e 40 -i 204 -a 8 r -t 29.3292 -s 110 -d 108 -p tcp -e 1000 -i 183 -a 8 + -t 29.33 -s 110 -d 111 -p ack -e 40 -i 204 -a 8 - -t 29.33 -s 110 -d 111 -p ack -e 40 -i 204 -a 8 h -t 29.33 -s 110 -d 111 -p ack -e 40 -i 204 -a 8 r -t 29.33 -s 108 -d 110 -p ack -e 40 -i 204 -a 8 + -t 29.3304 -s 111 -d 112 -p ack -e 40 -i 193 -a 2 + -t 29.3304 -s 211 -d 212 -p ack -e 40 -i 167 -a 6 + -t 29.3304 -s 311 -d 312 -p ack -e 40 -i 165 -a 6 - -t 29.3304 -s 111 -d 112 -p ack -e 40 -i 193 -a 2 - -t 29.3304 -s 211 -d 212 -p ack -e 40 -i 167 -a 6 - -t 29.3304 -s 311 -d 312 -p ack -e 40 -i 165 -a 6 h -t 29.3304 -s 111 -d 112 -p ack -e 40 -i 193 -a 2 h -t 29.3304 -s 211 -d 212 -p ack -e 40 -i 167 -a 6 h -t 29.3304 -s 311 -d 312 -p ack -e 40 -i 165 -a 6 r -t 29.3304 -s 110 -d 111 -p ack -e 40 -i 193 -a 2 r -t 29.3304 -s 210 -d 211 -p ack -e 40 -i 167 -a 6 r -t 29.3304 -s 310 -d 311 -p ack -e 40 -i 165 -a 6 r -t 29.3314 -s 111 -d 112 -p ack -e 40 -i 193 -a 2 r -t 29.3314 -s 211 -d 212 -p ack -e 40 -i 167 -a 6 r -t 29.3314 -s 311 -d 312 -p ack -e 40 -i 165 -a 6 + -t 29.3315 -s 212 -d 211 -p tcp -e 1000 -i 173 -a 6 + -t 29.3315 -s 212 -d 211 -p tcp -e 1000 -i 174 -a 6 + -t 29.3315 -s 312 -d 311 -p tcp -e 1000 -i 168 -a 6 + -t 29.3315 -s 312 -d 311 -p tcp -e 1000 -i 169 -a 6 - -t 29.3315 -s 212 -d 211 -p tcp -e 1000 -i 173 -a 6 - -t 29.3315 -s 312 -d 311 -p tcp -e 1000 -i 168 -a 6 h -t 29.3315 -s 212 -d 211 -p tcp -e 1000 -i 173 -a 6 h -t 29.3315 -s 312 -d 311 -p tcp -e 1000 -i 168 -a 6 - -t 29.3323 -s 212 -d 211 -p tcp -e 1000 -i 174 -a 6 - -t 29.3323 -s 312 -d 311 -p tcp -e 1000 -i 169 -a 6 h -t 29.3323 -s 212 -d 211 -p tcp -e 1000 -i 174 -a 6 h -t 29.3323 -s 312 -d 311 -p tcp -e 1000 -i 169 -a 6 + -t 29.3333 -s 211 -d 210 -p tcp -e 1000 -i 173 -a 6 + -t 29.3333 -s 311 -d 310 -p tcp -e 1000 -i 168 -a 6 - -t 29.3333 -s 111 -d 110 -p tcp -e 1000 -i 203 -a 2 - -t 29.3333 -s 211 -d 210 -p tcp -e 1000 -i 173 -a 6 - -t 29.3333 -s 311 -d 310 -p tcp -e 1000 -i 168 -a 6 h -t 29.3333 -s 111 -d 110 -p tcp -e 1000 -i 203 -a 2 h -t 29.3333 -s 211 -d 210 -p tcp -e 1000 -i 173 -a 6 h -t 29.3333 -s 311 -d 310 -p tcp -e 1000 -i 168 -a 6 r -t 29.3335 -s 212 -d 211 -p tcp -e 1000 -i 173 -a 6 r -t 29.3335 -s 312 -d 311 -p tcp -e 1000 -i 168 -a 6 + -t 29.3341 -s 211 -d 210 -p tcp -e 1000 -i 174 -a 6 + -t 29.3341 -s 311 -d 310 -p tcp -e 1000 -i 169 -a 6 r -t 29.3343 -s 212 -d 211 -p tcp -e 1000 -i 174 -a 6 r -t 29.3343 -s 312 -d 311 -p tcp -e 1000 -i 169 -a 6 + -t 29.3352 -s 210 -d 203 -p tcp -e 1000 -i 166 -a 3 - -t 29.3352 -s 210 -d 203 -p tcp -e 1000 -i 166 -a 3 h -t 29.3352 -s 210 -d 203 -p tcp -e 1000 -i 166 -a 3 r -t 29.3352 -s 211 -d 210 -p tcp -e 1000 -i 166 -a 3 + -t 29.3372 -s 110 -d 108 -p tcp -e 1000 -i 185 -a 8 - -t 29.3372 -s 110 -d 108 -p tcp -e 1000 -i 185 -a 8 h -t 29.3372 -s 110 -d 108 -p tcp -e 1000 -i 185 -a 8 r -t 29.3372 -s 111 -d 110 -p tcp -e 1000 -i 185 -a 8 r -t 29.3372 -s 210 -d 203 -p tcp -e 1000 -i 166 -a 3 + -t 29.339 -s 108 -d 110 -p ack -e 40 -i 205 -a 8 - -t 29.339 -s 108 -d 110 -p ack -e 40 -i 205 -a 8 h -t 29.339 -s 108 -d 110 -p ack -e 40 -i 205 -a 8 r -t 29.3392 -s 110 -d 108 -p tcp -e 1000 -i 185 -a 8 v -t 29.34 sim_annotation 29.34 5 ...RBP/SSR resume ACK clocking (at 29.33) + -t 29.34 -s 110 -d 111 -p ack -e 40 -i 205 -a 8 + -t 29.34 -s 212 -d 211 -p tcp -e 1000 -i 175 -a 3 - -t 29.34 -s 110 -d 111 -p ack -e 40 -i 205 -a 8 - -t 29.34 -s 212 -d 211 -p tcp -e 1000 -i 175 -a 3 h -t 29.34 -s 110 -d 111 -p ack -e 40 -i 205 -a 8 h -t 29.34 -s 212 -d 211 -p tcp -e 1000 -i 175 -a 3 r -t 29.34 -s 108 -d 110 -p ack -e 40 -i 205 -a 8 + -t 29.341 -s 206 -d 210 -p ack -e 40 -i 176 -a 6 - -t 29.341 -s 206 -d 210 -p ack -e 40 -i 176 -a 6 h -t 29.341 -s 206 -d 210 -p ack -e 40 -i 176 -a 6 + -t 29.3418 -s 211 -d 210 -p tcp -e 1000 -i 175 -a 3 r -t 29.342 -s 206 -d 210 -p ack -e 40 -i 176 -a 6 r -t 29.342 -s 212 -d 211 -p tcp -e 1000 -i 175 -a 3 + -t 29.3421 -s 210 -d 211 -p ack -e 40 -i 176 -a 6 - -t 29.3421 -s 210 -d 211 -p ack -e 40 -i 176 -a 6 h -t 29.3421 -s 210 -d 211 -p ack -e 40 -i 176 -a 6 - -t 29.3433 -s 211 -d 210 -p tcp -e 1000 -i 174 -a 6 - -t 29.3433 -s 311 -d 310 -p tcp -e 1000 -i 169 -a 6 h -t 29.3433 -s 211 -d 210 -p tcp -e 1000 -i 174 -a 6 h -t 29.3433 -s 311 -d 310 -p tcp -e 1000 -i 169 -a 6 + -t 29.3473 -s 308 -d 310 -p ack -e 40 -i 170 -a 8 - -t 29.3473 -s 308 -d 310 -p ack -e 40 -i 170 -a 8 h -t 29.3473 -s 308 -d 310 -p ack -e 40 -i 170 -a 8 + -t 29.3483 -s 310 -d 311 -p ack -e 40 -i 170 -a 8 - -t 29.3483 -s 310 -d 311 -p ack -e 40 -i 170 -a 8 h -t 29.3483 -s 310 -d 311 -p ack -e 40 -i 170 -a 8 r -t 29.3483 -s 308 -d 310 -p ack -e 40 -i 170 -a 8 + -t 29.3504 -s 111 -d 112 -p ack -e 40 -i 197 -a 2 - -t 29.3504 -s 111 -d 112 -p ack -e 40 -i 197 -a 2 h -t 29.3504 -s 111 -d 112 -p ack -e 40 -i 197 -a 2 r -t 29.3504 -s 110 -d 111 -p ack -e 40 -i 197 -a 2 + -t 29.351 -s 208 -d 210 -p ack -e 40 -i 177 -a 8 - -t 29.351 -s 208 -d 210 -p ack -e 40 -i 177 -a 8 h -t 29.351 -s 208 -d 210 -p ack -e 40 -i 177 -a 8 + -t 29.3512 -s 210 -d 206 -p tcp -e 1000 -i 168 -a 6 - -t 29.3512 -s 210 -d 206 -p tcp -e 1000 -i 168 -a 6 h -t 29.3512 -s 210 -d 206 -p tcp -e 1000 -i 168 -a 6 r -t 29.3512 -s 211 -d 210 -p tcp -e 1000 -i 168 -a 6 r -t 29.3514 -s 111 -d 112 -p ack -e 40 -i 197 -a 2 r -t 29.352 -s 208 -d 210 -p ack -e 40 -i 177 -a 8 + -t 29.3521 -s 210 -d 211 -p ack -e 40 -i 177 -a 8 - -t 29.3521 -s 210 -d 211 -p ack -e 40 -i 177 -a 8 h -t 29.3521 -s 210 -d 211 -p ack -e 40 -i 177 -a 8 r -t 29.3532 -s 210 -d 206 -p tcp -e 1000 -i 168 -a 6 + -t 29.3533 -s 110 -d 106 -p tcp -e 1000 -i 194 -a 6 - -t 29.3533 -s 110 -d 106 -p tcp -e 1000 -i 194 -a 6 - -t 29.3533 -s 211 -d 210 -p tcp -e 1000 -i 175 -a 3 h -t 29.3533 -s 110 -d 106 -p tcp -e 1000 -i 194 -a 6 h -t 29.3533 -s 211 -d 210 -p tcp -e 1000 -i 175 -a 3 r -t 29.3533 -s 111 -d 110 -p tcp -e 1000 -i 194 -a 6 r -t 29.3553 -s 110 -d 106 -p tcp -e 1000 -i 194 -a 6 + -t 29.3577 -s 212 -d 211 -p tcp -e 1000 -i 178 -a 8 - -t 29.3577 -s 212 -d 211 -p tcp -e 1000 -i 178 -a 8 h -t 29.3577 -s 212 -d 211 -p tcp -e 1000 -i 178 -a 8 + -t 29.359 -s 102 -d 110 -p ack -e 40 -i 206 -a 2 - -t 29.359 -s 102 -d 110 -p ack -e 40 -i 206 -a 2 h -t 29.359 -s 102 -d 110 -p ack -e 40 -i 206 -a 2 + -t 29.3595 -s 211 -d 210 -p tcp -e 1000 -i 178 -a 8 r -t 29.3597 -s 212 -d 211 -p tcp -e 1000 -i 178 -a 8 + -t 29.36 -s 110 -d 111 -p ack -e 40 -i 206 -a 2 - -t 29.36 -s 110 -d 111 -p ack -e 40 -i 206 -a 2 h -t 29.36 -s 110 -d 111 -p ack -e 40 -i 206 -a 2 r -t 29.36 -s 102 -d 110 -p ack -e 40 -i 206 -a 2 + -t 29.3612 -s 210 -d 208 -p tcp -e 1000 -i 169 -a 8 - -t 29.3612 -s 210 -d 208 -p tcp -e 1000 -i 169 -a 8 h -t 29.3612 -s 210 -d 208 -p tcp -e 1000 -i 169 -a 8 r -t 29.3612 -s 211 -d 210 -p tcp -e 1000 -i 169 -a 8 r -t 29.3632 -s 210 -d 208 -p tcp -e 1000 -i 169 -a 8 + -t 29.3633 -s 110 -d 106 -p tcp -e 1000 -i 195 -a 6 - -t 29.3633 -s 110 -d 106 -p tcp -e 1000 -i 195 -a 6 - -t 29.3633 -s 211 -d 210 -p tcp -e 1000 -i 178 -a 8 h -t 29.3633 -s 110 -d 106 -p tcp -e 1000 -i 195 -a 6 h -t 29.3633 -s 211 -d 210 -p tcp -e 1000 -i 178 -a 8 r -t 29.3633 -s 111 -d 110 -p tcp -e 1000 -i 195 -a 6 + -t 29.3651 -s 106 -d 110 -p ack -e 40 -i 207 -a 6 - -t 29.3651 -s 106 -d 110 -p ack -e 40 -i 207 -a 6 h -t 29.3651 -s 106 -d 110 -p ack -e 40 -i 207 -a 6 r -t 29.3653 -s 110 -d 106 -p tcp -e 1000 -i 195 -a 6 + -t 29.3661 -s 110 -d 111 -p ack -e 40 -i 207 -a 6 - -t 29.3661 -s 110 -d 111 -p ack -e 40 -i 207 -a 6 h -t 29.3661 -s 110 -d 111 -p ack -e 40 -i 207 -a 6 r -t 29.3661 -s 106 -d 110 -p ack -e 40 -i 207 -a 6 + -t 29.3733 -s 110 -d 106 -p tcp -e 1000 -i 196 -a 6 - -t 29.3733 -s 110 -d 106 -p tcp -e 1000 -i 196 -a 6 h -t 29.3733 -s 110 -d 106 -p tcp -e 1000 -i 196 -a 6 r -t 29.3733 -s 111 -d 110 -p tcp -e 1000 -i 196 -a 6 r -t 29.3753 -s 110 -d 106 -p tcp -e 1000 -i 196 -a 6 + -t 29.3804 -s 111 -d 112 -p ack -e 40 -i 198 -a 3 - -t 29.3804 -s 111 -d 112 -p ack -e 40 -i 198 -a 3 h -t 29.3804 -s 111 -d 112 -p ack -e 40 -i 198 -a 3 r -t 29.3804 -s 110 -d 111 -p ack -e 40 -i 198 -a 3 r -t 29.3814 -s 111 -d 112 -p ack -e 40 -i 198 -a 3 + -t 29.3815 -s 112 -d 111 -p tcp -e 1000 -i 208 -a 3 + -t 29.3815 -s 112 -d 111 -p tcp -e 1000 -i 209 -a 3 + -t 29.3815 -s 112 -d 111 -p tcp -e 1000 -i 210 -a 3 - -t 29.3815 -s 112 -d 111 -p tcp -e 1000 -i 208 -a 3 h -t 29.3815 -s 112 -d 111 -p tcp -e 1000 -i 208 -a 3 - -t 29.3823 -s 112 -d 111 -p tcp -e 1000 -i 209 -a 3 h -t 29.3823 -s 112 -d 111 -p tcp -e 1000 -i 209 -a 3 - -t 29.3831 -s 112 -d 111 -p tcp -e 1000 -i 210 -a 3 h -t 29.3831 -s 112 -d 111 -p tcp -e 1000 -i 210 -a 3 + -t 29.3833 -s 111 -d 110 -p tcp -e 1000 -i 208 -a 3 - -t 29.3833 -s 111 -d 110 -p tcp -e 1000 -i 208 -a 3 h -t 29.3833 -s 111 -d 110 -p tcp -e 1000 -i 208 -a 3 r -t 29.3835 -s 112 -d 111 -p tcp -e 1000 -i 208 -a 3 + -t 29.3841 -s 111 -d 110 -p tcp -e 1000 -i 209 -a 3 + -t 29.3841 -s 211 -d 212 -p ack -e 40 -i 170 -a 2 + -t 29.3841 -s 311 -d 312 -p ack -e 40 -i 166 -a 2 - -t 29.3841 -s 211 -d 212 -p ack -e 40 -i 170 -a 2 - -t 29.3841 -s 311 -d 312 -p ack -e 40 -i 166 -a 2 h -t 29.3841 -s 211 -d 212 -p ack -e 40 -i 170 -a 2 h -t 29.3841 -s 311 -d 312 -p ack -e 40 -i 166 -a 2 r -t 29.3841 -s 210 -d 211 -p ack -e 40 -i 170 -a 2 r -t 29.3841 -s 310 -d 311 -p ack -e 40 -i 166 -a 2 r -t 29.3843 -s 112 -d 111 -p tcp -e 1000 -i 209 -a 3 + -t 29.3849 -s 111 -d 110 -p tcp -e 1000 -i 210 -a 3 r -t 29.3851 -s 112 -d 111 -p tcp -e 1000 -i 210 -a 3 r -t 29.3851 -s 211 -d 212 -p ack -e 40 -i 170 -a 2 r -t 29.3851 -s 311 -d 312 -p ack -e 40 -i 166 -a 2 + -t 29.3852 -s 212 -d 211 -p tcp -e 1000 -i 179 -a 2 + -t 29.3852 -s 212 -d 211 -p tcp -e 1000 -i 180 -a 2 + -t 29.3852 -s 312 -d 311 -p tcp -e 1000 -i 171 -a 2 + -t 29.3852 -s 312 -d 311 -p tcp -e 1000 -i 172 -a 2 - -t 29.3852 -s 212 -d 211 -p tcp -e 1000 -i 179 -a 2 - -t 29.3852 -s 312 -d 311 -p tcp -e 1000 -i 171 -a 2 h -t 29.3852 -s 212 -d 211 -p tcp -e 1000 -i 179 -a 2 h -t 29.3852 -s 312 -d 311 -p tcp -e 1000 -i 171 -a 2 - -t 29.386 -s 212 -d 211 -p tcp -e 1000 -i 180 -a 2 - -t 29.386 -s 312 -d 311 -p tcp -e 1000 -i 172 -a 2 h -t 29.386 -s 212 -d 211 -p tcp -e 1000 -i 180 -a 2 h -t 29.386 -s 312 -d 311 -p tcp -e 1000 -i 172 -a 2 + -t 29.387 -s 211 -d 210 -p tcp -e 1000 -i 179 -a 2 + -t 29.387 -s 311 -d 310 -p tcp -e 1000 -i 171 -a 2 - -t 29.387 -s 211 -d 210 -p tcp -e 1000 -i 179 -a 2 - -t 29.387 -s 311 -d 310 -p tcp -e 1000 -i 171 -a 2 h -t 29.387 -s 211 -d 210 -p tcp -e 1000 -i 179 -a 2 h -t 29.387 -s 311 -d 310 -p tcp -e 1000 -i 171 -a 2 r -t 29.3872 -s 212 -d 211 -p tcp -e 1000 -i 179 -a 2 r -t 29.3872 -s 312 -d 311 -p tcp -e 1000 -i 171 -a 2 + -t 29.3878 -s 211 -d 210 -p tcp -e 1000 -i 180 -a 2 + -t 29.3878 -s 311 -d 310 -p tcp -e 1000 -i 172 -a 2 r -t 29.388 -s 212 -d 211 -p tcp -e 1000 -i 180 -a 2 r -t 29.388 -s 312 -d 311 -p tcp -e 1000 -i 172 -a 2 + -t 29.3904 -s 111 -d 112 -p ack -e 40 -i 199 -a 6 - -t 29.3904 -s 111 -d 112 -p ack -e 40 -i 199 -a 6 h -t 29.3904 -s 111 -d 112 -p ack -e 40 -i 199 -a 6 r -t 29.3904 -s 110 -d 111 -p ack -e 40 -i 199 -a 6 r -t 29.3914 -s 111 -d 112 -p ack -e 40 -i 199 -a 6 - -t 29.3933 -s 111 -d 110 -p tcp -e 1000 -i 209 -a 3 h -t 29.3933 -s 111 -d 110 -p tcp -e 1000 -i 209 -a 3 - -t 29.397 -s 211 -d 210 -p tcp -e 1000 -i 180 -a 2 - -t 29.397 -s 311 -d 310 -p tcp -e 1000 -i 172 -a 2 h -t 29.397 -s 211 -d 210 -p tcp -e 1000 -i 180 -a 2 h -t 29.397 -s 311 -d 310 -p tcp -e 1000 -i 172 -a 2 + -t 29.4004 -s 111 -d 112 -p ack -e 40 -i 200 -a 3 - -t 29.4004 -s 111 -d 112 -p ack -e 40 -i 200 -a 3 h -t 29.4004 -s 111 -d 112 -p ack -e 40 -i 200 -a 3 r -t 29.4004 -s 110 -d 111 -p ack -e 40 -i 200 -a 3 r -t 29.4014 -s 111 -d 112 -p ack -e 40 -i 200 -a 3 + -t 29.4032 -s 202 -d 210 -p ack -e 40 -i 181 -a 2 - -t 29.4032 -s 202 -d 210 -p ack -e 40 -i 181 -a 2 h -t 29.4032 -s 202 -d 210 -p ack -e 40 -i 181 -a 2 - -t 29.4033 -s 111 -d 110 -p tcp -e 1000 -i 210 -a 3 h -t 29.4033 -s 111 -d 110 -p tcp -e 1000 -i 210 -a 3 r -t 29.4042 -s 202 -d 210 -p ack -e 40 -i 181 -a 2 + -t 29.4043 -s 210 -d 211 -p ack -e 40 -i 181 -a 2 - -t 29.4043 -s 210 -d 211 -p ack -e 40 -i 181 -a 2 h -t 29.4043 -s 210 -d 211 -p ack -e 40 -i 181 -a 2 + -t 29.409 -s 103 -d 110 -p ack -e 40 -i 211 -a 3 - -t 29.409 -s 103 -d 110 -p ack -e 40 -i 211 -a 3 h -t 29.409 -s 103 -d 110 -p ack -e 40 -i 211 -a 3 + -t 29.41 -s 110 -d 111 -p ack -e 40 -i 211 -a 3 - -t 29.41 -s 110 -d 111 -p ack -e 40 -i 211 -a 3 h -t 29.41 -s 110 -d 111 -p ack -e 40 -i 211 -a 3 r -t 29.41 -s 103 -d 110 -p ack -e 40 -i 211 -a 3 + -t 29.4219 -s 211 -d 212 -p ack -e 40 -i 172 -a 3 + -t 29.4219 -s 311 -d 312 -p ack -e 40 -i 167 -a 3 - -t 29.4219 -s 211 -d 212 -p ack -e 40 -i 172 -a 3 - -t 29.4219 -s 311 -d 312 -p ack -e 40 -i 167 -a 3 h -t 29.4219 -s 211 -d 212 -p ack -e 40 -i 172 -a 3 h -t 29.4219 -s 311 -d 312 -p ack -e 40 -i 167 -a 3 r -t 29.4219 -s 210 -d 211 -p ack -e 40 -i 172 -a 3 r -t 29.4219 -s 310 -d 311 -p ack -e 40 -i 167 -a 3 + -t 29.422 -s 210 -d 202 -p tcp -e 1000 -i 171 -a 2 - -t 29.422 -s 210 -d 202 -p tcp -e 1000 -i 171 -a 2 h -t 29.422 -s 210 -d 202 -p tcp -e 1000 -i 171 -a 2 r -t 29.422 -s 211 -d 210 -p tcp -e 1000 -i 171 -a 2 r -t 29.4229 -s 211 -d 212 -p ack -e 40 -i 172 -a 3 r -t 29.4229 -s 311 -d 312 -p ack -e 40 -i 167 -a 3 + -t 29.423 -s 212 -d 211 -p tcp -e 1000 -i 182 -a 3 + -t 29.423 -s 212 -d 211 -p tcp -e 1000 -i 183 -a 3 + -t 29.423 -s 312 -d 311 -p tcp -e 1000 -i 173 -a 3 + -t 29.423 -s 312 -d 311 -p tcp -e 1000 -i 174 -a 3 - -t 29.423 -s 212 -d 211 -p tcp -e 1000 -i 182 -a 3 - -t 29.423 -s 312 -d 311 -p tcp -e 1000 -i 173 -a 3 h -t 29.423 -s 212 -d 211 -p tcp -e 1000 -i 182 -a 3 h -t 29.423 -s 312 -d 311 -p tcp -e 1000 -i 173 -a 3 + -t 29.4233 -s 110 -d 102 -p tcp -e 1000 -i 201 -a 2 - -t 29.4233 -s 110 -d 102 -p tcp -e 1000 -i 201 -a 2 h -t 29.4233 -s 110 -d 102 -p tcp -e 1000 -i 201 -a 2 r -t 29.4233 -s 111 -d 110 -p tcp -e 1000 -i 201 -a 2 - -t 29.4238 -s 212 -d 211 -p tcp -e 1000 -i 183 -a 3 - -t 29.4238 -s 312 -d 311 -p tcp -e 1000 -i 174 -a 3 h -t 29.4238 -s 212 -d 211 -p tcp -e 1000 -i 183 -a 3 h -t 29.4238 -s 312 -d 311 -p tcp -e 1000 -i 174 -a 3 r -t 29.424 -s 210 -d 202 -p tcp -e 1000 -i 171 -a 2 + -t 29.4248 -s 211 -d 210 -p tcp -e 1000 -i 182 -a 3 + -t 29.4248 -s 311 -d 310 -p tcp -e 1000 -i 173 -a 3 - -t 29.4248 -s 211 -d 210 -p tcp -e 1000 -i 182 -a 3 - -t 29.4248 -s 311 -d 310 -p tcp -e 1000 -i 173 -a 3 h -t 29.4248 -s 211 -d 210 -p tcp -e 1000 -i 182 -a 3 h -t 29.4248 -s 311 -d 310 -p tcp -e 1000 -i 173 -a 3 r -t 29.425 -s 212 -d 211 -p tcp -e 1000 -i 182 -a 3 r -t 29.425 -s 312 -d 311 -p tcp -e 1000 -i 173 -a 3 r -t 29.4253 -s 110 -d 102 -p tcp -e 1000 -i 201 -a 2 + -t 29.4256 -s 211 -d 210 -p tcp -e 1000 -i 183 -a 3 + -t 29.4256 -s 311 -d 310 -p tcp -e 1000 -i 174 -a 3 r -t 29.4258 -s 212 -d 211 -p tcp -e 1000 -i 183 -a 3 r -t 29.4258 -s 312 -d 311 -p tcp -e 1000 -i 174 -a 3 + -t 29.4304 -s 111 -d 112 -p ack -e 40 -i 204 -a 8 - -t 29.4304 -s 111 -d 112 -p ack -e 40 -i 204 -a 8 h -t 29.4304 -s 111 -d 112 -p ack -e 40 -i 204 -a 8 r -t 29.4304 -s 110 -d 111 -p ack -e 40 -i 204 -a 8 r -t 29.4314 -s 111 -d 112 -p ack -e 40 -i 204 -a 8 + -t 29.4315 -s 112 -d 111 -p tcp -e 1000 -i 212 -a 8 + -t 29.4315 -s 112 -d 111 -p tcp -e 1000 -i 213 -a 8 + -t 29.4315 -s 112 -d 111 -p tcp -e 1000 -i 214 -a 8 - -t 29.4315 -s 112 -d 111 -p tcp -e 1000 -i 212 -a 8 h -t 29.4315 -s 112 -d 111 -p tcp -e 1000 -i 212 -a 8 - -t 29.4323 -s 112 -d 111 -p tcp -e 1000 -i 213 -a 8 h -t 29.4323 -s 112 -d 111 -p tcp -e 1000 -i 213 -a 8 - -t 29.4331 -s 112 -d 111 -p tcp -e 1000 -i 214 -a 8 h -t 29.4331 -s 112 -d 111 -p tcp -e 1000 -i 214 -a 8 + -t 29.4333 -s 110 -d 102 -p tcp -e 1000 -i 202 -a 2 + -t 29.4333 -s 111 -d 110 -p tcp -e 1000 -i 212 -a 8 - -t 29.4333 -s 110 -d 102 -p tcp -e 1000 -i 202 -a 2 - -t 29.4333 -s 111 -d 110 -p tcp -e 1000 -i 212 -a 8 h -t 29.4333 -s 110 -d 102 -p tcp -e 1000 -i 202 -a 2 h -t 29.4333 -s 111 -d 110 -p tcp -e 1000 -i 212 -a 8 r -t 29.4333 -s 111 -d 110 -p tcp -e 1000 -i 202 -a 2 r -t 29.4335 -s 112 -d 111 -p tcp -e 1000 -i 212 -a 8 + -t 29.4341 -s 111 -d 110 -p tcp -e 1000 -i 213 -a 8 r -t 29.4343 -s 112 -d 111 -p tcp -e 1000 -i 213 -a 8 - -t 29.4348 -s 211 -d 210 -p tcp -e 1000 -i 183 -a 3 - -t 29.4348 -s 311 -d 310 -p tcp -e 1000 -i 174 -a 3 h -t 29.4348 -s 211 -d 210 -p tcp -e 1000 -i 183 -a 3 h -t 29.4348 -s 311 -d 310 -p tcp -e 1000 -i 174 -a 3 + -t 29.4349 -s 111 -d 110 -p tcp -e 1000 -i 214 -a 8 + -t 29.4351 -s 102 -d 110 -p ack -e 40 -i 215 -a 2 - -t 29.4351 -s 102 -d 110 -p ack -e 40 -i 215 -a 2 h -t 29.4351 -s 102 -d 110 -p ack -e 40 -i 215 -a 2 r -t 29.4351 -s 112 -d 111 -p tcp -e 1000 -i 214 -a 8 r -t 29.4353 -s 110 -d 102 -p tcp -e 1000 -i 202 -a 2 + -t 29.4361 -s 110 -d 111 -p ack -e 40 -i 215 -a 2 - -t 29.4361 -s 110 -d 111 -p ack -e 40 -i 215 -a 2 h -t 29.4361 -s 110 -d 111 -p ack -e 40 -i 215 -a 2 r -t 29.4361 -s 102 -d 110 -p ack -e 40 -i 215 -a 2 + -t 29.437 -s 203 -d 210 -p ack -e 40 -i 184 -a 3 - -t 29.437 -s 203 -d 210 -p ack -e 40 -i 184 -a 3 h -t 29.437 -s 203 -d 210 -p ack -e 40 -i 184 -a 3 r -t 29.438 -s 203 -d 210 -p ack -e 40 -i 184 -a 3 + -t 29.4381 -s 210 -d 211 -p ack -e 40 -i 184 -a 3 - -t 29.4381 -s 210 -d 211 -p ack -e 40 -i 184 -a 3 h -t 29.4381 -s 210 -d 211 -p ack -e 40 -i 184 -a 3 + -t 29.4404 -s 111 -d 112 -p ack -e 40 -i 205 -a 8 - -t 29.4404 -s 111 -d 112 -p ack -e 40 -i 205 -a 8 h -t 29.4404 -s 111 -d 112 -p ack -e 40 -i 205 -a 8 r -t 29.4404 -s 110 -d 111 -p ack -e 40 -i 205 -a 8 r -t 29.4414 -s 111 -d 112 -p ack -e 40 -i 205 -a 8 + -t 29.4425 -s 211 -d 212 -p ack -e 40 -i 176 -a 6 - -t 29.4425 -s 211 -d 212 -p ack -e 40 -i 176 -a 6 h -t 29.4425 -s 211 -d 212 -p ack -e 40 -i 176 -a 6 r -t 29.4425 -s 210 -d 211 -p ack -e 40 -i 176 -a 6 + -t 29.4433 -s 110 -d 102 -p tcp -e 1000 -i 203 -a 2 + -t 29.4433 -s 210 -d 206 -p tcp -e 1000 -i 173 -a 6 + -t 29.4433 -s 310 -d 306 -p tcp -e 1000 -i 168 -a 6 - -t 29.4433 -s 110 -d 102 -p tcp -e 1000 -i 203 -a 2 - -t 29.4433 -s 111 -d 110 -p tcp -e 1000 -i 213 -a 8 - -t 29.4433 -s 210 -d 206 -p tcp -e 1000 -i 173 -a 6 - -t 29.4433 -s 310 -d 306 -p tcp -e 1000 -i 168 -a 6 h -t 29.4433 -s 110 -d 102 -p tcp -e 1000 -i 203 -a 2 h -t 29.4433 -s 111 -d 110 -p tcp -e 1000 -i 213 -a 8 h -t 29.4433 -s 210 -d 206 -p tcp -e 1000 -i 173 -a 6 h -t 29.4433 -s 310 -d 306 -p tcp -e 1000 -i 168 -a 6 r -t 29.4433 -s 111 -d 110 -p tcp -e 1000 -i 203 -a 2 r -t 29.4433 -s 211 -d 210 -p tcp -e 1000 -i 173 -a 6 r -t 29.4433 -s 311 -d 310 -p tcp -e 1000 -i 168 -a 6 + -t 29.4435 -s 212 -d 211 -p tcp -e 1000 -i 185 -a 6 + -t 29.4435 -s 212 -d 211 -p tcp -e 1000 -i 186 -a 6 - -t 29.4435 -s 212 -d 211 -p tcp -e 1000 -i 185 -a 6 h -t 29.4435 -s 212 -d 211 -p tcp -e 1000 -i 185 -a 6 r -t 29.4435 -s 211 -d 212 -p ack -e 40 -i 176 -a 6 - -t 29.4443 -s 212 -d 211 -p tcp -e 1000 -i 186 -a 6 h -t 29.4443 -s 212 -d 211 -p tcp -e 1000 -i 186 -a 6 + -t 29.4451 -s 206 -d 210 -p ack -e 40 -i 187 -a 6 - -t 29.4451 -s 206 -d 210 -p ack -e 40 -i 187 -a 6 h -t 29.4451 -s 206 -d 210 -p ack -e 40 -i 187 -a 6 + -t 29.4453 -s 211 -d 210 -p tcp -e 1000 -i 185 -a 6 - -t 29.4453 -s 211 -d 210 -p tcp -e 1000 -i 185 -a 6 h -t 29.4453 -s 211 -d 210 -p tcp -e 1000 -i 185 -a 6 r -t 29.4453 -s 110 -d 102 -p tcp -e 1000 -i 203 -a 2 r -t 29.4453 -s 210 -d 206 -p tcp -e 1000 -i 173 -a 6 r -t 29.4453 -s 310 -d 306 -p tcp -e 1000 -i 168 -a 6 r -t 29.4455 -s 212 -d 211 -p tcp -e 1000 -i 185 -a 6 + -t 29.4461 -s 210 -d 211 -p ack -e 40 -i 187 -a 6 + -t 29.4461 -s 211 -d 210 -p tcp -e 1000 -i 186 -a 6 - -t 29.4461 -s 210 -d 211 -p ack -e 40 -i 187 -a 6 h -t 29.4461 -s 210 -d 211 -p ack -e 40 -i 187 -a 6 r -t 29.4461 -s 206 -d 210 -p ack -e 40 -i 187 -a 6 r -t 29.4463 -s 212 -d 211 -p tcp -e 1000 -i 186 -a 6 + -t 29.4487 -s 311 -d 312 -p ack -e 40 -i 170 -a 8 - -t 29.4487 -s 311 -d 312 -p ack -e 40 -i 170 -a 8 h -t 29.4487 -s 311 -d 312 -p ack -e 40 -i 170 -a 8 r -t 29.4487 -s 310 -d 311 -p ack -e 40 -i 170 -a 8 r -t 29.4497 -s 311 -d 312 -p ack -e 40 -i 170 -a 8 + -t 29.4498 -s 312 -d 311 -p tcp -e 1000 -i 175 -a 8 + -t 29.4498 -s 312 -d 311 -p tcp -e 1000 -i 176 -a 8 - -t 29.4498 -s 312 -d 311 -p tcp -e 1000 -i 175 -a 8 h -t 29.4498 -s 312 -d 311 -p tcp -e 1000 -i 175 -a 8 - -t 29.4506 -s 312 -d 311 -p tcp -e 1000 -i 176 -a 8 h -t 29.4506 -s 312 -d 311 -p tcp -e 1000 -i 176 -a 8 + -t 29.4516 -s 311 -d 310 -p tcp -e 1000 -i 175 -a 8 - -t 29.4516 -s 311 -d 310 -p tcp -e 1000 -i 175 -a 8 h -t 29.4516 -s 311 -d 310 -p tcp -e 1000 -i 175 -a 8 r -t 29.4518 -s 312 -d 311 -p tcp -e 1000 -i 175 -a 8 + -t 29.4524 -s 311 -d 310 -p tcp -e 1000 -i 176 -a 8 + -t 29.4525 -s 211 -d 212 -p ack -e 40 -i 177 -a 8 - -t 29.4525 -s 211 -d 212 -p ack -e 40 -i 177 -a 8 h -t 29.4525 -s 211 -d 212 -p ack -e 40 -i 177 -a 8 r -t 29.4525 -s 210 -d 211 -p ack -e 40 -i 177 -a 8 r -t 29.4526 -s 312 -d 311 -p tcp -e 1000 -i 176 -a 8 + -t 29.4533 -s 210 -d 206 -p tcp -e 1000 -i 174 -a 6 + -t 29.4533 -s 310 -d 306 -p tcp -e 1000 -i 169 -a 6 - -t 29.4533 -s 111 -d 110 -p tcp -e 1000 -i 214 -a 8 - -t 29.4533 -s 210 -d 206 -p tcp -e 1000 -i 174 -a 6 - -t 29.4533 -s 310 -d 306 -p tcp -e 1000 -i 169 -a 6 h -t 29.4533 -s 111 -d 110 -p tcp -e 1000 -i 214 -a 8 h -t 29.4533 -s 210 -d 206 -p tcp -e 1000 -i 174 -a 6 h -t 29.4533 -s 310 -d 306 -p tcp -e 1000 -i 169 -a 6 r -t 29.4533 -s 211 -d 210 -p tcp -e 1000 -i 174 -a 6 r -t 29.4533 -s 311 -d 310 -p tcp -e 1000 -i 169 -a 6 + -t 29.4535 -s 212 -d 211 -p tcp -e 1000 -i 188 -a 8 + -t 29.4535 -s 212 -d 211 -p tcp -e 1000 -i 189 -a 8 - -t 29.4535 -s 212 -d 211 -p tcp -e 1000 -i 188 -a 8 h -t 29.4535 -s 212 -d 211 -p tcp -e 1000 -i 188 -a 8 r -t 29.4535 -s 211 -d 212 -p ack -e 40 -i 177 -a 8 - -t 29.4543 -s 212 -d 211 -p tcp -e 1000 -i 189 -a 8 h -t 29.4543 -s 212 -d 211 -p tcp -e 1000 -i 189 -a 8 + -t 29.4551 -s 306 -d 310 -p ack -e 40 -i 177 -a 6 - -t 29.4551 -s 306 -d 310 -p ack -e 40 -i 177 -a 6 h -t 29.4551 -s 306 -d 310 -p ack -e 40 -i 177 -a 6 + -t 29.4553 -s 211 -d 210 -p tcp -e 1000 -i 188 -a 8 - -t 29.4553 -s 211 -d 210 -p tcp -e 1000 -i 186 -a 6 h -t 29.4553 -s 211 -d 210 -p tcp -e 1000 -i 186 -a 6 r -t 29.4553 -s 210 -d 206 -p tcp -e 1000 -i 174 -a 6 r -t 29.4553 -s 310 -d 306 -p tcp -e 1000 -i 169 -a 6 r -t 29.4555 -s 212 -d 211 -p tcp -e 1000 -i 188 -a 8 + -t 29.4561 -s 211 -d 210 -p tcp -e 1000 -i 189 -a 8 + -t 29.4561 -s 310 -d 311 -p ack -e 40 -i 177 -a 6 - -t 29.4561 -s 310 -d 311 -p ack -e 40 -i 177 -a 6 h -t 29.4561 -s 310 -d 311 -p ack -e 40 -i 177 -a 6 r -t 29.4561 -s 306 -d 310 -p ack -e 40 -i 177 -a 6 r -t 29.4563 -s 212 -d 211 -p tcp -e 1000 -i 189 -a 8 + -t 29.4604 -s 111 -d 112 -p ack -e 40 -i 206 -a 2 - -t 29.4604 -s 111 -d 112 -p ack -e 40 -i 206 -a 2 h -t 29.4604 -s 111 -d 112 -p ack -e 40 -i 206 -a 2 r -t 29.4604 -s 110 -d 111 -p ack -e 40 -i 206 -a 2 r -t 29.4614 -s 111 -d 112 -p ack -e 40 -i 206 -a 2 - -t 29.4616 -s 311 -d 310 -p tcp -e 1000 -i 176 -a 8 h -t 29.4616 -s 311 -d 310 -p tcp -e 1000 -i 176 -a 8 + -t 29.463 -s 208 -d 210 -p ack -e 40 -i 190 -a 8 - -t 29.463 -s 208 -d 210 -p ack -e 40 -i 190 -a 8 h -t 29.463 -s 208 -d 210 -p ack -e 40 -i 190 -a 8 + -t 29.4633 -s 210 -d 203 -p tcp -e 1000 -i 175 -a 3 - -t 29.4633 -s 210 -d 203 -p tcp -e 1000 -i 175 -a 3 h -t 29.4633 -s 210 -d 203 -p tcp -e 1000 -i 175 -a 3 r -t 29.4633 -s 211 -d 210 -p tcp -e 1000 -i 175 -a 3 r -t 29.464 -s 208 -d 210 -p ack -e 40 -i 190 -a 8 + -t 29.4641 -s 210 -d 211 -p ack -e 40 -i 190 -a 8 - -t 29.4641 -s 210 -d 211 -p ack -e 40 -i 190 -a 8 h -t 29.4641 -s 210 -d 211 -p ack -e 40 -i 190 -a 8 - -t 29.4653 -s 211 -d 210 -p tcp -e 1000 -i 188 -a 8 h -t 29.4653 -s 211 -d 210 -p tcp -e 1000 -i 188 -a 8 r -t 29.4653 -s 210 -d 203 -p tcp -e 1000 -i 175 -a 3 + -t 29.4665 -s 111 -d 112 -p ack -e 40 -i 207 -a 6 - -t 29.4665 -s 111 -d 112 -p ack -e 40 -i 207 -a 6 h -t 29.4665 -s 111 -d 112 -p ack -e 40 -i 207 -a 6 r -t 29.4665 -s 110 -d 111 -p ack -e 40 -i 207 -a 6 r -t 29.4675 -s 111 -d 112 -p ack -e 40 -i 207 -a 6 + -t 29.4733 -s 210 -d 208 -p tcp -e 1000 -i 178 -a 8 - -t 29.4733 -s 210 -d 208 -p tcp -e 1000 -i 178 -a 8 h -t 29.4733 -s 210 -d 208 -p tcp -e 1000 -i 178 -a 8 r -t 29.4733 -s 211 -d 210 -p tcp -e 1000 -i 178 -a 8 + -t 29.4751 -s 106 -d 110 -p ack -e 40 -i 216 -a 6 - -t 29.4751 -s 106 -d 110 -p ack -e 40 -i 216 -a 6 h -t 29.4751 -s 106 -d 110 -p ack -e 40 -i 216 -a 6 - -t 29.4753 -s 211 -d 210 -p tcp -e 1000 -i 189 -a 8 h -t 29.4753 -s 211 -d 210 -p tcp -e 1000 -i 189 -a 8 r -t 29.4753 -s 210 -d 208 -p tcp -e 1000 -i 178 -a 8 + -t 29.4761 -s 110 -d 111 -p ack -e 40 -i 216 -a 6 - -t 29.4761 -s 110 -d 111 -p ack -e 40 -i 216 -a 6 h -t 29.4761 -s 110 -d 111 -p ack -e 40 -i 216 -a 6 r -t 29.4761 -s 106 -d 110 -p ack -e 40 -i 216 -a 6 + -t 29.4933 -s 110 -d 103 -p tcp -e 1000 -i 208 -a 3 - -t 29.4933 -s 110 -d 103 -p tcp -e 1000 -i 208 -a 3 h -t 29.4933 -s 110 -d 103 -p tcp -e 1000 -i 208 -a 3 r -t 29.4933 -s 111 -d 110 -p tcp -e 1000 -i 208 -a 3 + -t 29.4951 -s 103 -d 110 -p ack -e 40 -i 217 -a 3 - -t 29.4951 -s 103 -d 110 -p ack -e 40 -i 217 -a 3 h -t 29.4951 -s 103 -d 110 -p ack -e 40 -i 217 -a 3 r -t 29.4953 -s 110 -d 103 -p tcp -e 1000 -i 208 -a 3 + -t 29.4961 -s 110 -d 111 -p ack -e 40 -i 217 -a 3 - -t 29.4961 -s 110 -d 111 -p ack -e 40 -i 217 -a 3 h -t 29.4961 -s 110 -d 111 -p ack -e 40 -i 217 -a 3 r -t 29.4961 -s 103 -d 110 -p ack -e 40 -i 217 -a 3 + -t 29.497 -s 210 -d 202 -p tcp -e 1000 -i 179 -a 2 + -t 29.497 -s 310 -d 302 -p tcp -e 1000 -i 171 -a 2 - -t 29.497 -s 210 -d 202 -p tcp -e 1000 -i 179 -a 2 - -t 29.497 -s 310 -d 302 -p tcp -e 1000 -i 171 -a 2 h -t 29.497 -s 210 -d 202 -p tcp -e 1000 -i 179 -a 2 h -t 29.497 -s 310 -d 302 -p tcp -e 1000 -i 171 -a 2 r -t 29.497 -s 211 -d 210 -p tcp -e 1000 -i 179 -a 2 r -t 29.497 -s 311 -d 310 -p tcp -e 1000 -i 171 -a 2 + -t 29.4988 -s 202 -d 210 -p ack -e 40 -i 191 -a 2 - -t 29.4988 -s 202 -d 210 -p ack -e 40 -i 191 -a 2 h -t 29.4988 -s 202 -d 210 -p ack -e 40 -i 191 -a 2 r -t 29.499 -s 210 -d 202 -p tcp -e 1000 -i 179 -a 2 r -t 29.499 -s 310 -d 302 -p tcp -e 1000 -i 171 -a 2 + -t 29.4998 -s 210 -d 211 -p ack -e 40 -i 191 -a 2 - -t 29.4998 -s 210 -d 211 -p ack -e 40 -i 191 -a 2 h -t 29.4998 -s 210 -d 211 -p ack -e 40 -i 191 -a 2 r -t 29.4998 -s 202 -d 210 -p ack -e 40 -i 191 -a 2 + -t 29.5033 -s 110 -d 103 -p tcp -e 1000 -i 209 -a 3 - -t 29.5033 -s 110 -d 103 -p tcp -e 1000 -i 209 -a 3 h -t 29.5033 -s 110 -d 103 -p tcp -e 1000 -i 209 -a 3 r -t 29.5033 -s 111 -d 110 -p tcp -e 1000 -i 209 -a 3 + -t 29.5047 -s 211 -d 212 -p ack -e 40 -i 181 -a 2 - -t 29.5047 -s 211 -d 212 -p ack -e 40 -i 181 -a 2 h -t 29.5047 -s 211 -d 212 -p ack -e 40 -i 181 -a 2 r -t 29.5047 -s 210 -d 211 -p ack -e 40 -i 181 -a 2 + -t 29.5051 -s 103 -d 110 -p ack -e 40 -i 218 -a 3 - -t 29.5051 -s 103 -d 110 -p ack -e 40 -i 218 -a 3 h -t 29.5051 -s 103 -d 110 -p ack -e 40 -i 218 -a 3 r -t 29.5053 -s 110 -d 103 -p tcp -e 1000 -i 209 -a 3 + -t 29.5057 -s 212 -d 211 -p tcp -e 1000 -i 192 -a 2 + -t 29.5057 -s 212 -d 211 -p tcp -e 1000 -i 193 -a 2 - -t 29.5057 -s 212 -d 211 -p tcp -e 1000 -i 192 -a 2 h -t 29.5057 -s 212 -d 211 -p tcp -e 1000 -i 192 -a 2 r -t 29.5057 -s 211 -d 212 -p ack -e 40 -i 181 -a 2 + -t 29.5061 -s 110 -d 111 -p ack -e 40 -i 218 -a 3 - -t 29.5061 -s 110 -d 111 -p ack -e 40 -i 218 -a 3 h -t 29.5061 -s 110 -d 111 -p ack -e 40 -i 218 -a 3 r -t 29.5061 -s 103 -d 110 -p ack -e 40 -i 218 -a 3 - -t 29.5065 -s 212 -d 211 -p tcp -e 1000 -i 193 -a 2 h -t 29.5065 -s 212 -d 211 -p tcp -e 1000 -i 193 -a 2 + -t 29.507 -s 210 -d 202 -p tcp -e 1000 -i 180 -a 2 + -t 29.507 -s 310 -d 302 -p tcp -e 1000 -i 172 -a 2 - -t 29.507 -s 210 -d 202 -p tcp -e 1000 -i 180 -a 2 - -t 29.507 -s 310 -d 302 -p tcp -e 1000 -i 172 -a 2 h -t 29.507 -s 210 -d 202 -p tcp -e 1000 -i 180 -a 2 h -t 29.507 -s 310 -d 302 -p tcp -e 1000 -i 172 -a 2 r -t 29.507 -s 211 -d 210 -p tcp -e 1000 -i 180 -a 2 r -t 29.507 -s 311 -d 310 -p tcp -e 1000 -i 172 -a 2 + -t 29.5075 -s 211 -d 210 -p tcp -e 1000 -i 192 -a 2 - -t 29.5075 -s 211 -d 210 -p tcp -e 1000 -i 192 -a 2 h -t 29.5075 -s 211 -d 210 -p tcp -e 1000 -i 192 -a 2 r -t 29.5077 -s 212 -d 211 -p tcp -e 1000 -i 192 -a 2 + -t 29.5083 -s 211 -d 210 -p tcp -e 1000 -i 193 -a 2 r -t 29.5085 -s 212 -d 211 -p tcp -e 1000 -i 193 -a 2 + -t 29.5088 -s 302 -d 310 -p ack -e 40 -i 178 -a 2 - -t 29.5088 -s 302 -d 310 -p ack -e 40 -i 178 -a 2 h -t 29.5088 -s 302 -d 310 -p ack -e 40 -i 178 -a 2 r -t 29.509 -s 210 -d 202 -p tcp -e 1000 -i 180 -a 2 r -t 29.509 -s 310 -d 302 -p tcp -e 1000 -i 172 -a 2 + -t 29.5098 -s 310 -d 311 -p ack -e 40 -i 178 -a 2 - -t 29.5098 -s 310 -d 311 -p ack -e 40 -i 178 -a 2 h -t 29.5098 -s 310 -d 311 -p ack -e 40 -i 178 -a 2 r -t 29.5098 -s 302 -d 310 -p ack -e 40 -i 178 -a 2 + -t 29.5104 -s 111 -d 112 -p ack -e 40 -i 211 -a 3 - -t 29.5104 -s 111 -d 112 -p ack -e 40 -i 211 -a 3 h -t 29.5104 -s 111 -d 112 -p ack -e 40 -i 211 -a 3 r -t 29.5104 -s 110 -d 111 -p ack -e 40 -i 211 -a 3 r -t 29.5114 -s 111 -d 112 -p ack -e 40 -i 211 -a 3 + -t 29.5133 -s 110 -d 103 -p tcp -e 1000 -i 210 -a 3 - -t 29.5133 -s 110 -d 103 -p tcp -e 1000 -i 210 -a 3 h -t 29.5133 -s 110 -d 103 -p tcp -e 1000 -i 210 -a 3 r -t 29.5133 -s 111 -d 110 -p tcp -e 1000 -i 210 -a 3 + -t 29.5151 -s 103 -d 110 -p ack -e 40 -i 219 -a 3 - -t 29.5151 -s 103 -d 110 -p ack -e 40 -i 219 -a 3 h -t 29.5151 -s 103 -d 110 -p ack -e 40 -i 219 -a 3 r -t 29.5153 -s 110 -d 103 -p tcp -e 1000 -i 210 -a 3 + -t 29.5161 -s 110 -d 111 -p ack -e 40 -i 219 -a 3 - -t 29.5161 -s 110 -d 111 -p ack -e 40 -i 219 -a 3 h -t 29.5161 -s 110 -d 111 -p ack -e 40 -i 219 -a 3 r -t 29.5161 -s 103 -d 110 -p ack -e 40 -i 219 -a 3 - -t 29.5175 -s 211 -d 210 -p tcp -e 1000 -i 193 -a 2 h -t 29.5175 -s 211 -d 210 -p tcp -e 1000 -i 193 -a 2 + -t 29.5348 -s 210 -d 203 -p tcp -e 1000 -i 182 -a 3 + -t 29.5348 -s 310 -d 303 -p tcp -e 1000 -i 173 -a 3 - -t 29.5348 -s 210 -d 203 -p tcp -e 1000 -i 182 -a 3 - -t 29.5348 -s 310 -d 303 -p tcp -e 1000 -i 173 -a 3 h -t 29.5348 -s 210 -d 203 -p tcp -e 1000 -i 182 -a 3 h -t 29.5348 -s 310 -d 303 -p tcp -e 1000 -i 173 -a 3 r -t 29.5348 -s 211 -d 210 -p tcp -e 1000 -i 182 -a 3 r -t 29.5348 -s 311 -d 310 -p tcp -e 1000 -i 173 -a 3 + -t 29.5365 -s 111 -d 112 -p ack -e 40 -i 215 -a 2 - -t 29.5365 -s 111 -d 112 -p ack -e 40 -i 215 -a 2 h -t 29.5365 -s 111 -d 112 -p ack -e 40 -i 215 -a 2 r -t 29.5365 -s 110 -d 111 -p ack -e 40 -i 215 -a 2 + -t 29.5366 -s 203 -d 210 -p ack -e 40 -i 194 -a 3 - -t 29.5366 -s 203 -d 210 -p ack -e 40 -i 194 -a 3 h -t 29.5366 -s 203 -d 210 -p ack -e 40 -i 194 -a 3 r -t 29.5368 -s 210 -d 203 -p tcp -e 1000 -i 182 -a 3 r -t 29.5368 -s 310 -d 303 -p tcp -e 1000 -i 173 -a 3 r -t 29.5375 -s 111 -d 112 -p ack -e 40 -i 215 -a 2 + -t 29.5376 -s 210 -d 211 -p ack -e 40 -i 194 -a 3 - -t 29.5376 -s 210 -d 211 -p ack -e 40 -i 194 -a 3 h -t 29.5376 -s 210 -d 211 -p ack -e 40 -i 194 -a 3 r -t 29.5376 -s 203 -d 210 -p ack -e 40 -i 194 -a 3 + -t 29.5385 -s 211 -d 212 -p ack -e 40 -i 184 -a 3 - -t 29.5385 -s 211 -d 212 -p ack -e 40 -i 184 -a 3 h -t 29.5385 -s 211 -d 212 -p ack -e 40 -i 184 -a 3 r -t 29.5385 -s 210 -d 211 -p ack -e 40 -i 184 -a 3 + -t 29.5395 -s 212 -d 211 -p tcp -e 1000 -i 195 -a 3 + -t 29.5395 -s 212 -d 211 -p tcp -e 1000 -i 196 -a 3 - -t 29.5395 -s 212 -d 211 -p tcp -e 1000 -i 195 -a 3 h -t 29.5395 -s 212 -d 211 -p tcp -e 1000 -i 195 -a 3 r -t 29.5395 -s 211 -d 212 -p ack -e 40 -i 184 -a 3 - -t 29.5403 -s 212 -d 211 -p tcp -e 1000 -i 196 -a 3 h -t 29.5403 -s 212 -d 211 -p tcp -e 1000 -i 196 -a 3 + -t 29.5413 -s 211 -d 210 -p tcp -e 1000 -i 195 -a 3 - -t 29.5413 -s 211 -d 210 -p tcp -e 1000 -i 195 -a 3 h -t 29.5413 -s 211 -d 210 -p tcp -e 1000 -i 195 -a 3 r -t 29.5415 -s 212 -d 211 -p tcp -e 1000 -i 195 -a 3 + -t 29.5421 -s 211 -d 210 -p tcp -e 1000 -i 196 -a 3 r -t 29.5423 -s 212 -d 211 -p tcp -e 1000 -i 196 -a 3 + -t 29.5433 -s 110 -d 108 -p tcp -e 1000 -i 212 -a 8 - -t 29.5433 -s 110 -d 108 -p tcp -e 1000 -i 212 -a 8 h -t 29.5433 -s 110 -d 108 -p tcp -e 1000 -i 212 -a 8 r -t 29.5433 -s 111 -d 110 -p tcp -e 1000 -i 212 -a 8 + -t 29.5448 -s 210 -d 203 -p tcp -e 1000 -i 183 -a 3 + -t 29.5448 -s 310 -d 303 -p tcp -e 1000 -i 174 -a 3 - -t 29.5448 -s 210 -d 203 -p tcp -e 1000 -i 183 -a 3 - -t 29.5448 -s 310 -d 303 -p tcp -e 1000 -i 174 -a 3 h -t 29.5448 -s 210 -d 203 -p tcp -e 1000 -i 183 -a 3 h -t 29.5448 -s 310 -d 303 -p tcp -e 1000 -i 174 -a 3 r -t 29.5448 -s 211 -d 210 -p tcp -e 1000 -i 183 -a 3 r -t 29.5448 -s 311 -d 310 -p tcp -e 1000 -i 174 -a 3 + -t 29.5451 -s 102 -d 110 -p ack -e 40 -i 220 -a 2 + -t 29.5451 -s 108 -d 110 -p ack -e 40 -i 221 -a 8 - -t 29.5451 -s 102 -d 110 -p ack -e 40 -i 220 -a 2 - -t 29.5451 -s 108 -d 110 -p ack -e 40 -i 221 -a 8 h -t 29.5451 -s 102 -d 110 -p ack -e 40 -i 220 -a 2 h -t 29.5451 -s 108 -d 110 -p ack -e 40 -i 221 -a 8 r -t 29.5453 -s 110 -d 108 -p tcp -e 1000 -i 212 -a 8 + -t 29.5461 -s 110 -d 111 -p ack -e 40 -i 220 -a 2 + -t 29.5461 -s 110 -d 111 -p ack -e 40 -i 221 -a 8 - -t 29.5461 -s 110 -d 111 -p ack -e 40 -i 220 -a 2 h -t 29.5461 -s 110 -d 111 -p ack -e 40 -i 220 -a 2 r -t 29.5461 -s 102 -d 110 -p ack -e 40 -i 220 -a 2 r -t 29.5461 -s 108 -d 110 -p ack -e 40 -i 221 -a 8 + -t 29.5465 -s 211 -d 212 -p ack -e 40 -i 187 -a 6 - -t 29.5465 -s 110 -d 111 -p ack -e 40 -i 221 -a 8 - -t 29.5465 -s 211 -d 212 -p ack -e 40 -i 187 -a 6 h -t 29.5465 -s 110 -d 111 -p ack -e 40 -i 221 -a 8 h -t 29.5465 -s 211 -d 212 -p ack -e 40 -i 187 -a 6 r -t 29.5465 -s 210 -d 211 -p ack -e 40 -i 187 -a 6 + -t 29.5466 -s 303 -d 310 -p ack -e 40 -i 179 -a 3 - -t 29.5466 -s 303 -d 310 -p ack -e 40 -i 179 -a 3 h -t 29.5466 -s 303 -d 310 -p ack -e 40 -i 179 -a 3 r -t 29.5468 -s 210 -d 203 -p tcp -e 1000 -i 183 -a 3 r -t 29.5468 -s 310 -d 303 -p tcp -e 1000 -i 174 -a 3 + -t 29.5475 -s 212 -d 211 -p tcp -e 1000 -i 197 -a 6 + -t 29.5475 -s 212 -d 211 -p tcp -e 1000 -i 198 -a 6 + -t 29.5475 -s 212 -d 211 -p tcp -e 1000 -i 199 -a 6 - -t 29.5475 -s 212 -d 211 -p tcp -e 1000 -i 197 -a 6 h -t 29.5475 -s 212 -d 211 -p tcp -e 1000 -i 197 -a 6 r -t 29.5475 -s 211 -d 212 -p ack -e 40 -i 187 -a 6 + -t 29.5476 -s 310 -d 311 -p ack -e 40 -i 179 -a 3 - -t 29.5476 -s 310 -d 311 -p ack -e 40 -i 179 -a 3 h -t 29.5476 -s 310 -d 311 -p ack -e 40 -i 179 -a 3 r -t 29.5476 -s 303 -d 310 -p ack -e 40 -i 179 -a 3 - -t 29.5483 -s 212 -d 211 -p tcp -e 1000 -i 198 -a 6 h -t 29.5483 -s 212 -d 211 -p tcp -e 1000 -i 198 -a 6 - -t 29.5491 -s 212 -d 211 -p tcp -e 1000 -i 199 -a 6 h -t 29.5491 -s 212 -d 211 -p tcp -e 1000 -i 199 -a 6 + -t 29.5493 -s 211 -d 210 -p tcp -e 1000 -i 197 -a 6 r -t 29.5495 -s 212 -d 211 -p tcp -e 1000 -i 197 -a 6 + -t 29.5501 -s 211 -d 210 -p tcp -e 1000 -i 198 -a 6 r -t 29.5503 -s 212 -d 211 -p tcp -e 1000 -i 198 -a 6 + -t 29.5509 -s 211 -d 210 -p tcp -e 1000 -i 199 -a 6 r -t 29.5511 -s 212 -d 211 -p tcp -e 1000 -i 199 -a 6 - -t 29.5513 -s 211 -d 210 -p tcp -e 1000 -i 196 -a 3 h -t 29.5513 -s 211 -d 210 -p tcp -e 1000 -i 196 -a 3 + -t 29.5533 -s 110 -d 108 -p tcp -e 1000 -i 213 -a 8 - -t 29.5533 -s 110 -d 108 -p tcp -e 1000 -i 213 -a 8 h -t 29.5533 -s 110 -d 108 -p tcp -e 1000 -i 213 -a 8 r -t 29.5533 -s 111 -d 110 -p tcp -e 1000 -i 213 -a 8 + -t 29.5551 -s 108 -d 110 -p ack -e 40 -i 222 -a 8 + -t 29.5551 -s 206 -d 210 -p ack -e 40 -i 200 -a 6 - -t 29.5551 -s 108 -d 110 -p ack -e 40 -i 222 -a 8 - -t 29.5551 -s 206 -d 210 -p ack -e 40 -i 200 -a 6 h -t 29.5551 -s 108 -d 110 -p ack -e 40 -i 222 -a 8 h -t 29.5551 -s 206 -d 210 -p ack -e 40 -i 200 -a 6 + -t 29.5553 -s 210 -d 206 -p tcp -e 1000 -i 185 -a 6 - -t 29.5553 -s 210 -d 206 -p tcp -e 1000 -i 185 -a 6 h -t 29.5553 -s 210 -d 206 -p tcp -e 1000 -i 185 -a 6 r -t 29.5553 -s 110 -d 108 -p tcp -e 1000 -i 213 -a 8 r -t 29.5553 -s 211 -d 210 -p tcp -e 1000 -i 185 -a 6 + -t 29.5561 -s 110 -d 111 -p ack -e 40 -i 222 -a 8 + -t 29.5561 -s 210 -d 211 -p ack -e 40 -i 200 -a 6 - -t 29.5561 -s 110 -d 111 -p ack -e 40 -i 222 -a 8 - -t 29.5561 -s 210 -d 211 -p ack -e 40 -i 200 -a 6 h -t 29.5561 -s 110 -d 111 -p ack -e 40 -i 222 -a 8 h -t 29.5561 -s 210 -d 211 -p ack -e 40 -i 200 -a 6 r -t 29.5561 -s 108 -d 110 -p ack -e 40 -i 222 -a 8 r -t 29.5561 -s 206 -d 210 -p ack -e 40 -i 200 -a 6 + -t 29.5565 -s 311 -d 312 -p ack -e 40 -i 177 -a 6 - -t 29.5565 -s 311 -d 312 -p ack -e 40 -i 177 -a 6 h -t 29.5565 -s 311 -d 312 -p ack -e 40 -i 177 -a 6 r -t 29.5565 -s 310 -d 311 -p ack -e 40 -i 177 -a 6 r -t 29.5573 -s 210 -d 206 -p tcp -e 1000 -i 185 -a 6 + -t 29.5575 -s 312 -d 311 -p tcp -e 1000 -i 180 -a 6 + -t 29.5575 -s 312 -d 311 -p tcp -e 1000 -i 181 -a 6 - -t 29.5575 -s 312 -d 311 -p tcp -e 1000 -i 180 -a 6 h -t 29.5575 -s 312 -d 311 -p tcp -e 1000 -i 180 -a 6 r -t 29.5575 -s 311 -d 312 -p ack -e 40 -i 177 -a 6 - -t 29.5583 -s 312 -d 311 -p tcp -e 1000 -i 181 -a 6 h -t 29.5583 -s 312 -d 311 -p tcp -e 1000 -i 181 -a 6 + -t 29.5593 -s 311 -d 310 -p tcp -e 1000 -i 180 -a 6 - -t 29.5593 -s 311 -d 310 -p tcp -e 1000 -i 180 -a 6 h -t 29.5593 -s 311 -d 310 -p tcp -e 1000 -i 180 -a 6 r -t 29.5595 -s 312 -d 311 -p tcp -e 1000 -i 180 -a 6 + -t 29.5601 -s 311 -d 310 -p tcp -e 1000 -i 181 -a 6 r -t 29.5603 -s 312 -d 311 -p tcp -e 1000 -i 181 -a 6 - -t 29.5613 -s 211 -d 210 -p tcp -e 1000 -i 197 -a 6 h -t 29.5613 -s 211 -d 210 -p tcp -e 1000 -i 197 -a 6 + -t 29.5616 -s 310 -d 308 -p tcp -e 1000 -i 175 -a 8 - -t 29.5616 -s 310 -d 308 -p tcp -e 1000 -i 175 -a 8 h -t 29.5616 -s 310 -d 308 -p tcp -e 1000 -i 175 -a 8 r -t 29.5616 -s 311 -d 310 -p tcp -e 1000 -i 175 -a 8 + -t 29.5633 -s 110 -d 108 -p tcp -e 1000 -i 214 -a 8 - -t 29.5633 -s 110 -d 108 -p tcp -e 1000 -i 214 -a 8 h -t 29.5633 -s 110 -d 108 -p tcp -e 1000 -i 214 -a 8 r -t 29.5633 -s 111 -d 110 -p tcp -e 1000 -i 214 -a 8 r -t 29.5636 -s 310 -d 308 -p tcp -e 1000 -i 175 -a 8 + -t 29.5645 -s 211 -d 212 -p ack -e 40 -i 190 -a 8 - -t 29.5645 -s 211 -d 212 -p ack -e 40 -i 190 -a 8 h -t 29.5645 -s 211 -d 212 -p ack -e 40 -i 190 -a 8 r -t 29.5645 -s 210 -d 211 -p ack -e 40 -i 190 -a 8 + -t 29.5651 -s 108 -d 110 -p ack -e 40 -i 223 -a 8 - -t 29.5651 -s 108 -d 110 -p ack -e 40 -i 223 -a 8 h -t 29.5651 -s 108 -d 110 -p ack -e 40 -i 223 -a 8 + -t 29.5653 -s 210 -d 206 -p tcp -e 1000 -i 186 -a 6 - -t 29.5653 -s 210 -d 206 -p tcp -e 1000 -i 186 -a 6 h -t 29.5653 -s 210 -d 206 -p tcp -e 1000 -i 186 -a 6 r -t 29.5653 -s 110 -d 108 -p tcp -e 1000 -i 214 -a 8 r -t 29.5653 -s 211 -d 210 -p tcp -e 1000 -i 186 -a 6 + -t 29.5655 -s 212 -d 211 -p tcp -e 1000 -i 201 -a 8 + -t 29.5655 -s 212 -d 211 -p tcp -e 1000 -i 202 -a 8 - -t 29.5655 -s 212 -d 211 -p tcp -e 1000 -i 201 -a 8 h -t 29.5655 -s 212 -d 211 -p tcp -e 1000 -i 201 -a 8 r -t 29.5655 -s 211 -d 212 -p ack -e 40 -i 190 -a 8 + -t 29.5661 -s 110 -d 111 -p ack -e 40 -i 223 -a 8 - -t 29.5661 -s 110 -d 111 -p ack -e 40 -i 223 -a 8 h -t 29.5661 -s 110 -d 111 -p ack -e 40 -i 223 -a 8 r -t 29.5661 -s 108 -d 110 -p ack -e 40 -i 223 -a 8 - -t 29.5663 -s 212 -d 211 -p tcp -e 1000 -i 202 -a 8 h -t 29.5663 -s 212 -d 211 -p tcp -e 1000 -i 202 -a 8 + -t 29.5671 -s 206 -d 210 -p ack -e 40 -i 203 -a 6 - -t 29.5671 -s 206 -d 210 -p ack -e 40 -i 203 -a 6 h -t 29.5671 -s 206 -d 210 -p ack -e 40 -i 203 -a 6 + -t 29.5673 -s 211 -d 210 -p tcp -e 1000 -i 201 -a 8 r -t 29.5673 -s 210 -d 206 -p tcp -e 1000 -i 186 -a 6 r -t 29.5675 -s 212 -d 211 -p tcp -e 1000 -i 201 -a 8 + -t 29.5681 -s 210 -d 211 -p ack -e 40 -i 203 -a 6 + -t 29.5681 -s 211 -d 210 -p tcp -e 1000 -i 202 -a 8 - -t 29.5681 -s 210 -d 211 -p ack -e 40 -i 203 -a 6 h -t 29.5681 -s 210 -d 211 -p ack -e 40 -i 203 -a 6 r -t 29.5681 -s 206 -d 210 -p ack -e 40 -i 203 -a 6 r -t 29.5683 -s 212 -d 211 -p tcp -e 1000 -i 202 -a 8 - -t 29.5693 -s 311 -d 310 -p tcp -e 1000 -i 181 -a 6 h -t 29.5693 -s 311 -d 310 -p tcp -e 1000 -i 181 -a 6 - -t 29.5713 -s 211 -d 210 -p tcp -e 1000 -i 198 -a 6 h -t 29.5713 -s 211 -d 210 -p tcp -e 1000 -i 198 -a 6 + -t 29.5716 -s 310 -d 308 -p tcp -e 1000 -i 176 -a 8 - -t 29.5716 -s 310 -d 308 -p tcp -e 1000 -i 176 -a 8 h -t 29.5716 -s 310 -d 308 -p tcp -e 1000 -i 176 -a 8 r -t 29.5716 -s 311 -d 310 -p tcp -e 1000 -i 176 -a 8 + -t 29.5734 -s 308 -d 310 -p ack -e 40 -i 182 -a 8 - -t 29.5734 -s 308 -d 310 -p ack -e 40 -i 182 -a 8 h -t 29.5734 -s 308 -d 310 -p ack -e 40 -i 182 -a 8 r -t 29.5736 -s 310 -d 308 -p tcp -e 1000 -i 176 -a 8 + -t 29.5744 -s 310 -d 311 -p ack -e 40 -i 182 -a 8 - -t 29.5744 -s 310 -d 311 -p ack -e 40 -i 182 -a 8 h -t 29.5744 -s 310 -d 311 -p ack -e 40 -i 182 -a 8 r -t 29.5744 -s 308 -d 310 -p ack -e 40 -i 182 -a 8 + -t 29.5751 -s 208 -d 210 -p ack -e 40 -i 204 -a 8 - -t 29.5751 -s 208 -d 210 -p ack -e 40 -i 204 -a 8 h -t 29.5751 -s 208 -d 210 -p ack -e 40 -i 204 -a 8 + -t 29.5753 -s 210 -d 208 -p tcp -e 1000 -i 188 -a 8 - -t 29.5753 -s 210 -d 208 -p tcp -e 1000 -i 188 -a 8 h -t 29.5753 -s 210 -d 208 -p tcp -e 1000 -i 188 -a 8 r -t 29.5753 -s 211 -d 210 -p tcp -e 1000 -i 188 -a 8 + -t 29.5761 -s 210 -d 211 -p ack -e 40 -i 204 -a 8 - -t 29.5761 -s 210 -d 211 -p ack -e 40 -i 204 -a 8 h -t 29.5761 -s 210 -d 211 -p ack -e 40 -i 204 -a 8 r -t 29.5761 -s 208 -d 210 -p ack -e 40 -i 204 -a 8 + -t 29.5765 -s 111 -d 112 -p ack -e 40 -i 216 -a 6 - -t 29.5765 -s 111 -d 112 -p ack -e 40 -i 216 -a 6 h -t 29.5765 -s 111 -d 112 -p ack -e 40 -i 216 -a 6 r -t 29.5765 -s 110 -d 111 -p ack -e 40 -i 216 -a 6 r -t 29.5773 -s 210 -d 208 -p tcp -e 1000 -i 188 -a 8 r -t 29.5775 -s 111 -d 112 -p ack -e 40 -i 216 -a 6 - -t 29.5813 -s 211 -d 210 -p tcp -e 1000 -i 199 -a 6 h -t 29.5813 -s 211 -d 210 -p tcp -e 1000 -i 199 -a 6 + -t 29.5853 -s 210 -d 208 -p tcp -e 1000 -i 189 -a 8 - -t 29.5853 -s 210 -d 208 -p tcp -e 1000 -i 189 -a 8 h -t 29.5853 -s 210 -d 208 -p tcp -e 1000 -i 189 -a 8 r -t 29.5853 -s 211 -d 210 -p tcp -e 1000 -i 189 -a 8 + -t 29.5871 -s 208 -d 210 -p ack -e 40 -i 205 -a 8 - -t 29.5871 -s 208 -d 210 -p ack -e 40 -i 205 -a 8 h -t 29.5871 -s 208 -d 210 -p ack -e 40 -i 205 -a 8 r -t 29.5873 -s 210 -d 208 -p tcp -e 1000 -i 189 -a 8 + -t 29.5881 -s 210 -d 211 -p ack -e 40 -i 205 -a 8 - -t 29.5881 -s 210 -d 211 -p ack -e 40 -i 205 -a 8 h -t 29.5881 -s 210 -d 211 -p ack -e 40 -i 205 -a 8 r -t 29.5881 -s 208 -d 210 -p ack -e 40 -i 205 -a 8 - -t 29.5913 -s 211 -d 210 -p tcp -e 1000 -i 201 -a 8 h -t 29.5913 -s 211 -d 210 -p tcp -e 1000 -i 201 -a 8 + -t 29.5965 -s 111 -d 112 -p ack -e 40 -i 217 -a 3 - -t 29.5965 -s 111 -d 112 -p ack -e 40 -i 217 -a 3 h -t 29.5965 -s 111 -d 112 -p ack -e 40 -i 217 -a 3 r -t 29.5965 -s 110 -d 111 -p ack -e 40 -i 217 -a 3 r -t 29.5975 -s 111 -d 112 -p ack -e 40 -i 217 -a 3 + -t 29.6002 -s 211 -d 212 -p ack -e 40 -i 191 -a 2 - -t 29.6002 -s 211 -d 212 -p ack -e 40 -i 191 -a 2 h -t 29.6002 -s 211 -d 212 -p ack -e 40 -i 191 -a 2 r -t 29.6002 -s 210 -d 211 -p ack -e 40 -i 191 -a 2 + -t 29.6012 -s 212 -d 211 -p tcp -e 1000 -i 206 -a 2 + -t 29.6012 -s 212 -d 211 -p tcp -e 1000 -i 207 -a 2 + -t 29.6012 -s 212 -d 211 -p tcp -e 1000 -i 208 -a 2 - -t 29.6012 -s 212 -d 211 -p tcp -e 1000 -i 206 -a 2 h -t 29.6012 -s 212 -d 211 -p tcp -e 1000 -i 206 -a 2 r -t 29.6012 -s 211 -d 212 -p ack -e 40 -i 191 -a 2 - -t 29.6013 -s 211 -d 210 -p tcp -e 1000 -i 202 -a 8 h -t 29.6013 -s 211 -d 210 -p tcp -e 1000 -i 202 -a 8 - -t 29.602 -s 212 -d 211 -p tcp -e 1000 -i 207 -a 2 h -t 29.602 -s 212 -d 211 -p tcp -e 1000 -i 207 -a 2 - -t 29.6028 -s 212 -d 211 -p tcp -e 1000 -i 208 -a 2 h -t 29.6028 -s 212 -d 211 -p tcp -e 1000 -i 208 -a 2 + -t 29.603 -s 211 -d 210 -p tcp -e 1000 -i 206 -a 2 r -t 29.6032 -s 212 -d 211 -p tcp -e 1000 -i 206 -a 2 + -t 29.6038 -s 211 -d 210 -p tcp -e 1000 -i 207 -a 2 r -t 29.604 -s 212 -d 211 -p tcp -e 1000 -i 207 -a 2 + -t 29.6046 -s 211 -d 210 -p tcp -e 1000 -i 208 -a 2 r -t 29.6048 -s 212 -d 211 -p tcp -e 1000 -i 208 -a 2 + -t 29.6065 -s 111 -d 112 -p ack -e 40 -i 218 -a 3 - -t 29.6065 -s 111 -d 112 -p ack -e 40 -i 218 -a 3 h -t 29.6065 -s 111 -d 112 -p ack -e 40 -i 218 -a 3 r -t 29.6065 -s 110 -d 111 -p ack -e 40 -i 218 -a 3 r -t 29.6075 -s 111 -d 112 -p ack -e 40 -i 218 -a 3 + -t 29.6088 -s 202 -d 210 -p ack -e 40 -i 209 -a 2 - -t 29.6088 -s 202 -d 210 -p ack -e 40 -i 209 -a 2 h -t 29.6088 -s 202 -d 210 -p ack -e 40 -i 209 -a 2 + -t 29.6098 -s 210 -d 211 -p ack -e 40 -i 209 -a 2 - -t 29.6098 -s 210 -d 211 -p ack -e 40 -i 209 -a 2 h -t 29.6098 -s 210 -d 211 -p ack -e 40 -i 209 -a 2 r -t 29.6098 -s 202 -d 210 -p ack -e 40 -i 209 -a 2 + -t 29.6102 -s 311 -d 312 -p ack -e 40 -i 178 -a 2 - -t 29.6102 -s 311 -d 312 -p ack -e 40 -i 178 -a 2 h -t 29.6102 -s 311 -d 312 -p ack -e 40 -i 178 -a 2 r -t 29.6102 -s 310 -d 311 -p ack -e 40 -i 178 -a 2 + -t 29.6112 -s 312 -d 311 -p tcp -e 1000 -i 183 -a 2 + -t 29.6112 -s 312 -d 311 -p tcp -e 1000 -i 184 -a 2 - -t 29.6112 -s 312 -d 311 -p tcp -e 1000 -i 183 -a 2 h -t 29.6112 -s 312 -d 311 -p tcp -e 1000 -i 183 -a 2 r -t 29.6112 -s 311 -d 312 -p ack -e 40 -i 178 -a 2 - -t 29.6113 -s 211 -d 210 -p tcp -e 1000 -i 206 -a 2 h -t 29.6113 -s 211 -d 210 -p tcp -e 1000 -i 206 -a 2 - -t 29.612 -s 312 -d 311 -p tcp -e 1000 -i 184 -a 2 h -t 29.612 -s 312 -d 311 -p tcp -e 1000 -i 184 -a 2 + -t 29.613 -s 311 -d 310 -p tcp -e 1000 -i 183 -a 2 - -t 29.613 -s 311 -d 310 -p tcp -e 1000 -i 183 -a 2 h -t 29.613 -s 311 -d 310 -p tcp -e 1000 -i 183 -a 2 r -t 29.6132 -s 312 -d 311 -p tcp -e 1000 -i 183 -a 2 + -t 29.6138 -s 311 -d 310 -p tcp -e 1000 -i 184 -a 2 r -t 29.614 -s 312 -d 311 -p tcp -e 1000 -i 184 -a 2 + -t 29.6165 -s 111 -d 112 -p ack -e 40 -i 219 -a 3 - -t 29.6165 -s 111 -d 112 -p ack -e 40 -i 219 -a 3 h -t 29.6165 -s 111 -d 112 -p ack -e 40 -i 219 -a 3 r -t 29.6165 -s 110 -d 111 -p ack -e 40 -i 219 -a 3 + -t 29.6175 -s 112 -d 111 -p tcp -e 1000 -i 224 -a 3 + -t 29.6175 -s 210 -d 202 -p tcp -e 1000 -i 192 -a 2 - -t 29.6175 -s 112 -d 111 -p tcp -e 1000 -i 224 -a 3 - -t 29.6175 -s 210 -d 202 -p tcp -e 1000 -i 192 -a 2 h -t 29.6175 -s 112 -d 111 -p tcp -e 1000 -i 224 -a 3 h -t 29.6175 -s 210 -d 202 -p tcp -e 1000 -i 192 -a 2 r -t 29.6175 -s 111 -d 112 -p ack -e 40 -i 219 -a 3 r -t 29.6175 -s 211 -d 210 -p tcp -e 1000 -i 192 -a 2 + -t 29.6193 -s 111 -d 110 -p tcp -e 1000 -i 224 -a 3 - -t 29.6193 -s 111 -d 110 -p tcp -e 1000 -i 224 -a 3 h -t 29.6193 -s 111 -d 110 -p tcp -e 1000 -i 224 -a 3 r -t 29.6195 -s 112 -d 111 -p tcp -e 1000 -i 224 -a 3 r -t 29.6195 -s 210 -d 202 -p tcp -e 1000 -i 192 -a 2 - -t 29.6213 -s 211 -d 210 -p tcp -e 1000 -i 207 -a 2 h -t 29.6213 -s 211 -d 210 -p tcp -e 1000 -i 207 -a 2 - -t 29.623 -s 311 -d 310 -p tcp -e 1000 -i 184 -a 2 h -t 29.623 -s 311 -d 310 -p tcp -e 1000 -i 184 -a 2 + -t 29.6275 -s 210 -d 202 -p tcp -e 1000 -i 193 -a 2 - -t 29.6275 -s 210 -d 202 -p tcp -e 1000 -i 193 -a 2 h -t 29.6275 -s 210 -d 202 -p tcp -e 1000 -i 193 -a 2 r -t 29.6275 -s 211 -d 210 -p tcp -e 1000 -i 193 -a 2 + -t 29.6293 -s 202 -d 210 -p ack -e 40 -i 210 -a 2 - -t 29.6293 -s 202 -d 210 -p ack -e 40 -i 210 -a 2 h -t 29.6293 -s 202 -d 210 -p ack -e 40 -i 210 -a 2 r -t 29.6295 -s 210 -d 202 -p tcp -e 1000 -i 193 -a 2 + -t 29.6303 -s 210 -d 211 -p ack -e 40 -i 210 -a 2 - -t 29.6303 -s 210 -d 211 -p ack -e 40 -i 210 -a 2 h -t 29.6303 -s 210 -d 211 -p ack -e 40 -i 210 -a 2 r -t 29.6303 -s 202 -d 210 -p ack -e 40 -i 210 -a 2 - -t 29.6313 -s 211 -d 210 -p tcp -e 1000 -i 208 -a 2 h -t 29.6313 -s 211 -d 210 -p tcp -e 1000 -i 208 -a 2 + -t 29.638 -s 211 -d 212 -p ack -e 40 -i 194 -a 3 - -t 29.638 -s 211 -d 212 -p ack -e 40 -i 194 -a 3 h -t 29.638 -s 211 -d 212 -p ack -e 40 -i 194 -a 3 r -t 29.638 -s 210 -d 211 -p ack -e 40 -i 194 -a 3 + -t 29.639 -s 212 -d 211 -p tcp -e 1000 -i 211 -a 3 + -t 29.639 -s 212 -d 211 -p tcp -e 1000 -i 212 -a 3 + -t 29.639 -s 212 -d 211 -p tcp -e 1000 -i 213 -a 3 - -t 29.639 -s 212 -d 211 -p tcp -e 1000 -i 211 -a 3 h -t 29.639 -s 212 -d 211 -p tcp -e 1000 -i 211 -a 3 r -t 29.639 -s 211 -d 212 -p ack -e 40 -i 194 -a 3 - -t 29.6398 -s 212 -d 211 -p tcp -e 1000 -i 212 -a 3 h -t 29.6398 -s 212 -d 211 -p tcp -e 1000 -i 212 -a 3 - -t 29.6406 -s 212 -d 211 -p tcp -e 1000 -i 213 -a 3 h -t 29.6406 -s 212 -d 211 -p tcp -e 1000 -i 213 -a 3 + -t 29.6408 -s 211 -d 210 -p tcp -e 1000 -i 211 -a 3 r -t 29.641 -s 212 -d 211 -p tcp -e 1000 -i 211 -a 3 - -t 29.6413 -s 211 -d 210 -p tcp -e 1000 -i 211 -a 3 h -t 29.6413 -s 211 -d 210 -p tcp -e 1000 -i 211 -a 3 + -t 29.6416 -s 211 -d 210 -p tcp -e 1000 -i 212 -a 3 r -t 29.6418 -s 212 -d 211 -p tcp -e 1000 -i 212 -a 3 + -t 29.6424 -s 211 -d 210 -p tcp -e 1000 -i 213 -a 3 r -t 29.6426 -s 212 -d 211 -p tcp -e 1000 -i 213 -a 3 + -t 29.6465 -s 111 -d 112 -p ack -e 40 -i 220 -a 2 - -t 29.6465 -s 111 -d 112 -p ack -e 40 -i 220 -a 2 h -t 29.6465 -s 111 -d 112 -p ack -e 40 -i 220 -a 2 r -t 29.6465 -s 110 -d 111 -p ack -e 40 -i 220 -a 2 + -t 29.6466 -s 203 -d 210 -p ack -e 40 -i 214 -a 3 - -t 29.6466 -s 203 -d 210 -p ack -e 40 -i 214 -a 3 h -t 29.6466 -s 203 -d 210 -p ack -e 40 -i 214 -a 3 + -t 29.6469 -s 111 -d 112 -p ack -e 40 -i 221 -a 8 - -t 29.6469 -s 111 -d 112 -p ack -e 40 -i 221 -a 8 h -t 29.6469 -s 111 -d 112 -p ack -e 40 -i 221 -a 8 r -t 29.6469 -s 110 -d 111 -p ack -e 40 -i 221 -a 8 r -t 29.6475 -s 111 -d 112 -p ack -e 40 -i 220 -a 2 + -t 29.6476 -s 210 -d 211 -p ack -e 40 -i 214 -a 3 - -t 29.6476 -s 210 -d 211 -p ack -e 40 -i 214 -a 3 h -t 29.6476 -s 210 -d 211 -p ack -e 40 -i 214 -a 3 r -t 29.6476 -s 203 -d 210 -p ack -e 40 -i 214 -a 3 r -t 29.6479 -s 111 -d 112 -p ack -e 40 -i 221 -a 8 + -t 29.648 -s 311 -d 312 -p ack -e 40 -i 179 -a 3 - -t 29.648 -s 311 -d 312 -p ack -e 40 -i 179 -a 3 h -t 29.648 -s 311 -d 312 -p ack -e 40 -i 179 -a 3 r -t 29.648 -s 310 -d 311 -p ack -e 40 -i 179 -a 3 + -t 29.649 -s 312 -d 311 -p tcp -e 1000 -i 185 -a 3 + -t 29.649 -s 312 -d 311 -p tcp -e 1000 -i 186 -a 3 - -t 29.649 -s 312 -d 311 -p tcp -e 1000 -i 185 -a 3 h -t 29.649 -s 312 -d 311 -p tcp -e 1000 -i 185 -a 3 r -t 29.649 -s 311 -d 312 -p ack -e 40 -i 179 -a 3 - -t 29.6498 -s 312 -d 311 -p tcp -e 1000 -i 186 -a 3 h -t 29.6498 -s 312 -d 311 -p tcp -e 1000 -i 186 -a 3 + -t 29.6508 -s 311 -d 310 -p tcp -e 1000 -i 185 -a 3 - -t 29.6508 -s 311 -d 310 -p tcp -e 1000 -i 185 -a 3 h -t 29.6508 -s 311 -d 310 -p tcp -e 1000 -i 185 -a 3 r -t 29.651 -s 312 -d 311 -p tcp -e 1000 -i 185 -a 3 + -t 29.6513 -s 210 -d 203 -p tcp -e 1000 -i 195 -a 3 - -t 29.6513 -s 210 -d 203 -p tcp -e 1000 -i 195 -a 3 - -t 29.6513 -s 211 -d 210 -p tcp -e 1000 -i 212 -a 3 h -t 29.6513 -s 210 -d 203 -p tcp -e 1000 -i 195 -a 3 h -t 29.6513 -s 211 -d 210 -p tcp -e 1000 -i 212 -a 3 r -t 29.6513 -s 211 -d 210 -p tcp -e 1000 -i 195 -a 3 + -t 29.6516 -s 311 -d 310 -p tcp -e 1000 -i 186 -a 3 r -t 29.6518 -s 312 -d 311 -p tcp -e 1000 -i 186 -a 3 r -t 29.6533 -s 210 -d 203 -p tcp -e 1000 -i 195 -a 3 + -t 29.6565 -s 111 -d 112 -p ack -e 40 -i 222 -a 8 + -t 29.6565 -s 211 -d 212 -p ack -e 40 -i 200 -a 6 - -t 29.6565 -s 111 -d 112 -p ack -e 40 -i 222 -a 8 - -t 29.6565 -s 211 -d 212 -p ack -e 40 -i 200 -a 6 h -t 29.6565 -s 111 -d 112 -p ack -e 40 -i 222 -a 8 h -t 29.6565 -s 211 -d 212 -p ack -e 40 -i 200 -a 6 r -t 29.6565 -s 110 -d 111 -p ack -e 40 -i 222 -a 8 r -t 29.6565 -s 210 -d 211 -p ack -e 40 -i 200 -a 6 + -t 29.6575 -s 112 -d 111 -p tcp -e 1000 -i 225 -a 8 - -t 29.6575 -s 112 -d 111 -p tcp -e 1000 -i 225 -a 8 h -t 29.6575 -s 112 -d 111 -p tcp -e 1000 -i 225 -a 8 r -t 29.6575 -s 111 -d 112 -p ack -e 40 -i 222 -a 8 r -t 29.6575 -s 211 -d 212 -p ack -e 40 -i 200 -a 6 + -t 29.6593 -s 111 -d 110 -p tcp -e 1000 -i 225 -a 8 - -t 29.6593 -s 111 -d 110 -p tcp -e 1000 -i 225 -a 8 h -t 29.6593 -s 111 -d 110 -p tcp -e 1000 -i 225 -a 8 r -t 29.6595 -s 112 -d 111 -p tcp -e 1000 -i 225 -a 8 - -t 29.6608 -s 311 -d 310 -p tcp -e 1000 -i 186 -a 3 h -t 29.6608 -s 311 -d 310 -p tcp -e 1000 -i 186 -a 3 + -t 29.6613 -s 210 -d 203 -p tcp -e 1000 -i 196 -a 3 - -t 29.6613 -s 210 -d 203 -p tcp -e 1000 -i 196 -a 3 - -t 29.6613 -s 211 -d 210 -p tcp -e 1000 -i 213 -a 3 h -t 29.6613 -s 210 -d 203 -p tcp -e 1000 -i 196 -a 3 h -t 29.6613 -s 211 -d 210 -p tcp -e 1000 -i 213 -a 3 r -t 29.6613 -s 211 -d 210 -p tcp -e 1000 -i 196 -a 3 + -t 29.6631 -s 203 -d 210 -p ack -e 40 -i 215 -a 3 - -t 29.6631 -s 203 -d 210 -p ack -e 40 -i 215 -a 3 h -t 29.6631 -s 203 -d 210 -p ack -e 40 -i 215 -a 3 r -t 29.6633 -s 210 -d 203 -p tcp -e 1000 -i 196 -a 3 + -t 29.6641 -s 210 -d 211 -p ack -e 40 -i 215 -a 3 - -t 29.6641 -s 210 -d 211 -p ack -e 40 -i 215 -a 3 h -t 29.6641 -s 210 -d 211 -p ack -e 40 -i 215 -a 3 r -t 29.6641 -s 203 -d 210 -p ack -e 40 -i 215 -a 3 + -t 29.6665 -s 111 -d 112 -p ack -e 40 -i 223 -a 8 - -t 29.6665 -s 111 -d 112 -p ack -e 40 -i 223 -a 8 h -t 29.6665 -s 111 -d 112 -p ack -e 40 -i 223 -a 8 r -t 29.6665 -s 110 -d 111 -p ack -e 40 -i 223 -a 8 r -t 29.6675 -s 111 -d 112 -p ack -e 40 -i 223 -a 8 + -t 29.6685 -s 211 -d 212 -p ack -e 40 -i 203 -a 6 - -t 29.6685 -s 211 -d 212 -p ack -e 40 -i 203 -a 6 h -t 29.6685 -s 211 -d 212 -p ack -e 40 -i 203 -a 6 r -t 29.6685 -s 210 -d 211 -p ack -e 40 -i 203 -a 6 + -t 29.6693 -s 310 -d 306 -p tcp -e 1000 -i 180 -a 6 - -t 29.6693 -s 310 -d 306 -p tcp -e 1000 -i 180 -a 6 h -t 29.6693 -s 310 -d 306 -p tcp -e 1000 -i 180 -a 6 r -t 29.6693 -s 311 -d 310 -p tcp -e 1000 -i 180 -a 6 r -t 29.6695 -s 211 -d 212 -p ack -e 40 -i 203 -a 6 + -t 29.6713 -s 210 -d 206 -p tcp -e 1000 -i 197 -a 6 - -t 29.6713 -s 210 -d 206 -p tcp -e 1000 -i 197 -a 6 h -t 29.6713 -s 210 -d 206 -p tcp -e 1000 -i 197 -a 6 r -t 29.6713 -s 211 -d 210 -p tcp -e 1000 -i 197 -a 6 r -t 29.6713 -s 310 -d 306 -p tcp -e 1000 -i 180 -a 6 r -t 29.6733 -s 210 -d 206 -p tcp -e 1000 -i 197 -a 6 + -t 29.6748 -s 311 -d 312 -p ack -e 40 -i 182 -a 8 - -t 29.6748 -s 311 -d 312 -p ack -e 40 -i 182 -a 8 h -t 29.6748 -s 311 -d 312 -p ack -e 40 -i 182 -a 8 r -t 29.6748 -s 310 -d 311 -p ack -e 40 -i 182 -a 8 + -t 29.6758 -s 312 -d 311 -p tcp -e 1000 -i 187 -a 8 + -t 29.6758 -s 312 -d 311 -p tcp -e 1000 -i 188 -a 8 - -t 29.6758 -s 312 -d 311 -p tcp -e 1000 -i 187 -a 8 h -t 29.6758 -s 312 -d 311 -p tcp -e 1000 -i 187 -a 8 r -t 29.6758 -s 311 -d 312 -p ack -e 40 -i 182 -a 8 + -t 29.6765 -s 211 -d 212 -p ack -e 40 -i 204 -a 8 - -t 29.6765 -s 211 -d 212 -p ack -e 40 -i 204 -a 8 h -t 29.6765 -s 211 -d 212 -p ack -e 40 -i 204 -a 8 r -t 29.6765 -s 210 -d 211 -p ack -e 40 -i 204 -a 8 - -t 29.6766 -s 312 -d 311 -p tcp -e 1000 -i 188 -a 8 h -t 29.6766 -s 312 -d 311 -p tcp -e 1000 -i 188 -a 8 + -t 29.6775 -s 212 -d 211 -p tcp -e 1000 -i 216 -a 8 + -t 29.6775 -s 212 -d 211 -p tcp -e 1000 -i 217 -a 8 - -t 29.6775 -s 212 -d 211 -p tcp -e 1000 -i 216 -a 8 h -t 29.6775 -s 212 -d 211 -p tcp -e 1000 -i 216 -a 8 r -t 29.6775 -s 211 -d 212 -p ack -e 40 -i 204 -a 8 + -t 29.6776 -s 311 -d 310 -p tcp -e 1000 -i 187 -a 8 - -t 29.6776 -s 311 -d 310 -p tcp -e 1000 -i 187 -a 8 h -t 29.6776 -s 311 -d 310 -p tcp -e 1000 -i 187 -a 8 r -t 29.6778 -s 312 -d 311 -p tcp -e 1000 -i 187 -a 8 - -t 29.6783 -s 212 -d 211 -p tcp -e 1000 -i 217 -a 8 h -t 29.6783 -s 212 -d 211 -p tcp -e 1000 -i 217 -a 8 + -t 29.6784 -s 311 -d 310 -p tcp -e 1000 -i 188 -a 8 r -t 29.6786 -s 312 -d 311 -p tcp -e 1000 -i 188 -a 8 + -t 29.6793 -s 211 -d 210 -p tcp -e 1000 -i 216 -a 8 + -t 29.6793 -s 310 -d 306 -p tcp -e 1000 -i 181 -a 6 - -t 29.6793 -s 211 -d 210 -p tcp -e 1000 -i 216 -a 8 - -t 29.6793 -s 310 -d 306 -p tcp -e 1000 -i 181 -a 6 h -t 29.6793 -s 211 -d 210 -p tcp -e 1000 -i 216 -a 8 h -t 29.6793 -s 310 -d 306 -p tcp -e 1000 -i 181 -a 6 r -t 29.6793 -s 311 -d 310 -p tcp -e 1000 -i 181 -a 6 r -t 29.6795 -s 212 -d 211 -p tcp -e 1000 -i 216 -a 8 + -t 29.6801 -s 211 -d 210 -p tcp -e 1000 -i 217 -a 8 r -t 29.6803 -s 212 -d 211 -p tcp -e 1000 -i 217 -a 8 + -t 29.6811 -s 306 -d 310 -p ack -e 40 -i 189 -a 6 - -t 29.6811 -s 306 -d 310 -p ack -e 40 -i 189 -a 6 h -t 29.6811 -s 306 -d 310 -p ack -e 40 -i 189 -a 6 + -t 29.6813 -s 210 -d 206 -p tcp -e 1000 -i 198 -a 6 - -t 29.6813 -s 210 -d 206 -p tcp -e 1000 -i 198 -a 6 h -t 29.6813 -s 210 -d 206 -p tcp -e 1000 -i 198 -a 6 r -t 29.6813 -s 211 -d 210 -p tcp -e 1000 -i 198 -a 6 r -t 29.6813 -s 310 -d 306 -p tcp -e 1000 -i 181 -a 6 r -t 29.6821 -s 306 -d 310 -p ack -e 40 -i 189 -a 6 + -t 29.6822 -s 310 -d 311 -p ack -e 40 -i 189 -a 6 - -t 29.6822 -s 310 -d 311 -p ack -e 40 -i 189 -a 6 h -t 29.6822 -s 310 -d 311 -p ack -e 40 -i 189 -a 6 + -t 29.6831 -s 206 -d 210 -p ack -e 40 -i 218 -a 6 - -t 29.6831 -s 206 -d 210 -p ack -e 40 -i 218 -a 6 h -t 29.6831 -s 206 -d 210 -p ack -e 40 -i 218 -a 6 r -t 29.6833 -s 210 -d 206 -p tcp -e 1000 -i 198 -a 6 + -t 29.6841 -s 210 -d 211 -p ack -e 40 -i 218 -a 6 - -t 29.6841 -s 210 -d 211 -p ack -e 40 -i 218 -a 6 h -t 29.6841 -s 210 -d 211 -p ack -e 40 -i 218 -a 6 r -t 29.6841 -s 206 -d 210 -p ack -e 40 -i 218 -a 6 - -t 29.6876 -s 311 -d 310 -p tcp -e 1000 -i 188 -a 8 h -t 29.6876 -s 311 -d 310 -p tcp -e 1000 -i 188 -a 8 + -t 29.6885 -s 211 -d 212 -p ack -e 40 -i 205 -a 8 - -t 29.6885 -s 211 -d 212 -p ack -e 40 -i 205 -a 8 h -t 29.6885 -s 211 -d 212 -p ack -e 40 -i 205 -a 8 r -t 29.6885 -s 210 -d 211 -p ack -e 40 -i 205 -a 8 - -t 29.6893 -s 211 -d 210 -p tcp -e 1000 -i 217 -a 8 h -t 29.6893 -s 211 -d 210 -p tcp -e 1000 -i 217 -a 8 + -t 29.6895 -s 212 -d 211 -p tcp -e 1000 -i 219 -a 8 - -t 29.6895 -s 212 -d 211 -p tcp -e 1000 -i 219 -a 8 h -t 29.6895 -s 212 -d 211 -p tcp -e 1000 -i 219 -a 8 r -t 29.6895 -s 211 -d 212 -p ack -e 40 -i 205 -a 8 + -t 29.6913 -s 210 -d 206 -p tcp -e 1000 -i 199 -a 6 + -t 29.6913 -s 211 -d 210 -p tcp -e 1000 -i 219 -a 8 - -t 29.6913 -s 210 -d 206 -p tcp -e 1000 -i 199 -a 6 h -t 29.6913 -s 210 -d 206 -p tcp -e 1000 -i 199 -a 6 r -t 29.6913 -s 211 -d 210 -p tcp -e 1000 -i 199 -a 6 r -t 29.6915 -s 212 -d 211 -p tcp -e 1000 -i 219 -a 8 r -t 29.6933 -s 210 -d 206 -p tcp -e 1000 -i 199 -a 6 - -t 29.6993 -s 211 -d 210 -p tcp -e 1000 -i 219 -a 8 h -t 29.6993 -s 211 -d 210 -p tcp -e 1000 -i 219 -a 8 + -t 29.7013 -s 210 -d 208 -p tcp -e 1000 -i 201 -a 8 - -t 29.7013 -s 210 -d 208 -p tcp -e 1000 -i 201 -a 8 h -t 29.7013 -s 210 -d 208 -p tcp -e 1000 -i 201 -a 8 r -t 29.7013 -s 211 -d 210 -p tcp -e 1000 -i 201 -a 8 r -t 29.7033 -s 210 -d 208 -p tcp -e 1000 -i 201 -a 8 + -t 29.7102 -s 211 -d 212 -p ack -e 40 -i 209 -a 2 - -t 29.7102 -s 211 -d 212 -p ack -e 40 -i 209 -a 2 h -t 29.7102 -s 211 -d 212 -p ack -e 40 -i 209 -a 2 r -t 29.7102 -s 210 -d 211 -p ack -e 40 -i 209 -a 2 r -t 29.7112 -s 211 -d 212 -p ack -e 40 -i 209 -a 2 + -t 29.7113 -s 210 -d 208 -p tcp -e 1000 -i 202 -a 8 - -t 29.7113 -s 210 -d 208 -p tcp -e 1000 -i 202 -a 8 h -t 29.7113 -s 210 -d 208 -p tcp -e 1000 -i 202 -a 8 r -t 29.7113 -s 211 -d 210 -p tcp -e 1000 -i 202 -a 8 + -t 29.7131 -s 208 -d 210 -p ack -e 40 -i 220 -a 8 - -t 29.7131 -s 208 -d 210 -p ack -e 40 -i 220 -a 8 h -t 29.7131 -s 208 -d 210 -p ack -e 40 -i 220 -a 8 r -t 29.7133 -s 210 -d 208 -p tcp -e 1000 -i 202 -a 8 + -t 29.7141 -s 210 -d 211 -p ack -e 40 -i 220 -a 8 - -t 29.7141 -s 210 -d 211 -p ack -e 40 -i 220 -a 8 h -t 29.7141 -s 210 -d 211 -p ack -e 40 -i 220 -a 8 r -t 29.7141 -s 208 -d 210 -p ack -e 40 -i 220 -a 8 + -t 29.7213 -s 210 -d 202 -p tcp -e 1000 -i 206 -a 2 - -t 29.7213 -s 210 -d 202 -p tcp -e 1000 -i 206 -a 2 h -t 29.7213 -s 210 -d 202 -p tcp -e 1000 -i 206 -a 2 r -t 29.7213 -s 211 -d 210 -p tcp -e 1000 -i 206 -a 2 + -t 29.723 -s 310 -d 302 -p tcp -e 1000 -i 183 -a 2 - -t 29.723 -s 310 -d 302 -p tcp -e 1000 -i 183 -a 2 h -t 29.723 -s 310 -d 302 -p tcp -e 1000 -i 183 -a 2 r -t 29.723 -s 311 -d 310 -p tcp -e 1000 -i 183 -a 2 r -t 29.7233 -s 210 -d 202 -p tcp -e 1000 -i 206 -a 2 r -t 29.725 -s 310 -d 302 -p tcp -e 1000 -i 183 -a 2 + -t 29.7293 -s 110 -d 103 -p tcp -e 1000 -i 224 -a 3 - -t 29.7293 -s 110 -d 103 -p tcp -e 1000 -i 224 -a 3 h -t 29.7293 -s 110 -d 103 -p tcp -e 1000 -i 224 -a 3 r -t 29.7293 -s 111 -d 110 -p tcp -e 1000 -i 224 -a 3 + -t 29.7307 -s 211 -d 212 -p ack -e 40 -i 210 -a 2 - -t 29.7307 -s 211 -d 212 -p ack -e 40 -i 210 -a 2 h -t 29.7307 -s 211 -d 212 -p ack -e 40 -i 210 -a 2 r -t 29.7307 -s 210 -d 211 -p ack -e 40 -i 210 -a 2 + -t 29.7313 -s 210 -d 202 -p tcp -e 1000 -i 207 -a 2 - -t 29.7313 -s 210 -d 202 -p tcp -e 1000 -i 207 -a 2 h -t 29.7313 -s 210 -d 202 -p tcp -e 1000 -i 207 -a 2 r -t 29.7313 -s 110 -d 103 -p tcp -e 1000 -i 224 -a 3 r -t 29.7313 -s 211 -d 210 -p tcp -e 1000 -i 207 -a 2 r -t 29.7317 -s 211 -d 212 -p ack -e 40 -i 210 -a 2 + -t 29.733 -s 310 -d 302 -p tcp -e 1000 -i 184 -a 2 - -t 29.733 -s 310 -d 302 -p tcp -e 1000 -i 184 -a 2 h -t 29.733 -s 310 -d 302 -p tcp -e 1000 -i 184 -a 2 r -t 29.733 -s 311 -d 310 -p tcp -e 1000 -i 184 -a 2 + -t 29.7331 -s 202 -d 210 -p ack -e 40 -i 221 -a 2 - -t 29.7331 -s 202 -d 210 -p ack -e 40 -i 221 -a 2 h -t 29.7331 -s 202 -d 210 -p ack -e 40 -i 221 -a 2 r -t 29.7333 -s 210 -d 202 -p tcp -e 1000 -i 207 -a 2 + -t 29.7341 -s 210 -d 211 -p ack -e 40 -i 221 -a 2 - -t 29.7341 -s 210 -d 211 -p ack -e 40 -i 221 -a 2 h -t 29.7341 -s 210 -d 211 -p ack -e 40 -i 221 -a 2 r -t 29.7341 -s 202 -d 210 -p ack -e 40 -i 221 -a 2 + -t 29.7348 -s 302 -d 310 -p ack -e 40 -i 190 -a 2 - -t 29.7348 -s 302 -d 310 -p ack -e 40 -i 190 -a 2 h -t 29.7348 -s 302 -d 310 -p ack -e 40 -i 190 -a 2 r -t 29.735 -s 310 -d 302 -p tcp -e 1000 -i 184 -a 2 r -t 29.7358 -s 302 -d 310 -p ack -e 40 -i 190 -a 2 + -t 29.7359 -s 310 -d 311 -p ack -e 40 -i 190 -a 2 - -t 29.7359 -s 310 -d 311 -p ack -e 40 -i 190 -a 2 h -t 29.7359 -s 310 -d 311 -p ack -e 40 -i 190 -a 2 + -t 29.7413 -s 210 -d 202 -p tcp -e 1000 -i 208 -a 2 - -t 29.7413 -s 210 -d 202 -p tcp -e 1000 -i 208 -a 2 h -t 29.7413 -s 210 -d 202 -p tcp -e 1000 -i 208 -a 2 r -t 29.7413 -s 211 -d 210 -p tcp -e 1000 -i 208 -a 2 r -t 29.7433 -s 210 -d 202 -p tcp -e 1000 -i 208 -a 2 + -t 29.748 -s 211 -d 212 -p ack -e 40 -i 214 -a 3 - -t 29.748 -s 211 -d 212 -p ack -e 40 -i 214 -a 3 h -t 29.748 -s 211 -d 212 -p ack -e 40 -i 214 -a 3 r -t 29.748 -s 210 -d 211 -p ack -e 40 -i 214 -a 3 r -t 29.749 -s 211 -d 212 -p ack -e 40 -i 214 -a 3 + -t 29.7513 -s 210 -d 203 -p tcp -e 1000 -i 211 -a 3 - -t 29.7513 -s 210 -d 203 -p tcp -e 1000 -i 211 -a 3 h -t 29.7513 -s 210 -d 203 -p tcp -e 1000 -i 211 -a 3 r -t 29.7513 -s 211 -d 210 -p tcp -e 1000 -i 211 -a 3 r -t 29.7533 -s 210 -d 203 -p tcp -e 1000 -i 211 -a 3 + -t 29.7608 -s 310 -d 303 -p tcp -e 1000 -i 185 -a 3 - -t 29.7608 -s 310 -d 303 -p tcp -e 1000 -i 185 -a 3 h -t 29.7608 -s 310 -d 303 -p tcp -e 1000 -i 185 -a 3 r -t 29.7608 -s 311 -d 310 -p tcp -e 1000 -i 185 -a 3 + -t 29.7613 -s 210 -d 203 -p tcp -e 1000 -i 212 -a 3 - -t 29.7613 -s 210 -d 203 -p tcp -e 1000 -i 212 -a 3 h -t 29.7613 -s 210 -d 203 -p tcp -e 1000 -i 212 -a 3 r -t 29.7613 -s 211 -d 210 -p tcp -e 1000 -i 212 -a 3 r -t 29.7628 -s 310 -d 303 -p tcp -e 1000 -i 185 -a 3 + -t 29.7631 -s 203 -d 210 -p ack -e 40 -i 222 -a 3 - -t 29.7631 -s 203 -d 210 -p ack -e 40 -i 222 -a 3 h -t 29.7631 -s 203 -d 210 -p ack -e 40 -i 222 -a 3 r -t 29.7633 -s 210 -d 203 -p tcp -e 1000 -i 212 -a 3 + -t 29.7641 -s 210 -d 211 -p ack -e 40 -i 222 -a 3 - -t 29.7641 -s 210 -d 211 -p ack -e 40 -i 222 -a 3 h -t 29.7641 -s 210 -d 211 -p ack -e 40 -i 222 -a 3 r -t 29.7641 -s 203 -d 210 -p ack -e 40 -i 222 -a 3 + -t 29.7645 -s 211 -d 212 -p ack -e 40 -i 215 -a 3 - -t 29.7645 -s 211 -d 212 -p ack -e 40 -i 215 -a 3 h -t 29.7645 -s 211 -d 212 -p ack -e 40 -i 215 -a 3 r -t 29.7645 -s 210 -d 211 -p ack -e 40 -i 215 -a 3 r -t 29.7655 -s 211 -d 212 -p ack -e 40 -i 215 -a 3 + -t 29.7668 -s 112 -d 111 -p tcp -e 1000 -i 226 -a 7 + -t 29.7668 -s 112 -d 111 -p tcp -e 1000 -i 227 -a 7 + -t 29.7668 -s 112 -d 111 -p tcp -e 1000 -i 228 -a 7 + -t 29.7668 -s 112 -d 111 -p tcp -e 1000 -i 229 -a 7 + -t 29.7668 -s 112 -d 111 -p tcp -e 1000 -i 230 -a 7 + -t 29.7668 -s 112 -d 111 -p tcp -e 1000 -i 231 -a 7 + -t 29.7668 -s 112 -d 111 -p tcp -e 1000 -i 232 -a 7 + -t 29.7668 -s 212 -d 211 -p tcp -e 1000 -i 223 -a 7 + -t 29.7668 -s 312 -d 311 -p tcp -e 1000 -i 191 -a 7 - -t 29.7668 -s 112 -d 111 -p tcp -e 1000 -i 226 -a 7 - -t 29.7668 -s 212 -d 211 -p tcp -e 1000 -i 223 -a 7 - -t 29.7668 -s 312 -d 311 -p tcp -e 1000 -i 191 -a 7 h -t 29.7668 -s 112 -d 111 -p tcp -e 1000 -i 226 -a 7 h -t 29.7668 -s 212 -d 211 -p tcp -e 1000 -i 223 -a 7 h -t 29.7668 -s 312 -d 311 -p tcp -e 1000 -i 191 -a 7 - -t 29.7676 -s 112 -d 111 -p tcp -e 1000 -i 227 -a 7 h -t 29.7676 -s 112 -d 111 -p tcp -e 1000 -i 227 -a 7 - -t 29.7684 -s 112 -d 111 -p tcp -e 1000 -i 228 -a 7 h -t 29.7684 -s 112 -d 111 -p tcp -e 1000 -i 228 -a 7 + -t 29.7686 -s 111 -d 110 -p tcp -e 1000 -i 226 -a 7 + -t 29.7686 -s 211 -d 210 -p tcp -e 1000 -i 223 -a 7 + -t 29.7686 -s 311 -d 310 -p tcp -e 1000 -i 191 -a 7 - -t 29.7686 -s 111 -d 110 -p tcp -e 1000 -i 226 -a 7 - -t 29.7686 -s 211 -d 210 -p tcp -e 1000 -i 223 -a 7 - -t 29.7686 -s 311 -d 310 -p tcp -e 1000 -i 191 -a 7 h -t 29.7686 -s 111 -d 110 -p tcp -e 1000 -i 226 -a 7 h -t 29.7686 -s 211 -d 210 -p tcp -e 1000 -i 223 -a 7 h -t 29.7686 -s 311 -d 310 -p tcp -e 1000 -i 191 -a 7 r -t 29.7688 -s 112 -d 111 -p tcp -e 1000 -i 226 -a 7 r -t 29.7688 -s 212 -d 211 -p tcp -e 1000 -i 223 -a 7 r -t 29.7688 -s 312 -d 311 -p tcp -e 1000 -i 191 -a 7 - -t 29.7692 -s 112 -d 111 -p tcp -e 1000 -i 229 -a 7 h -t 29.7692 -s 112 -d 111 -p tcp -e 1000 -i 229 -a 7 + -t 29.7693 -s 110 -d 108 -p tcp -e 1000 -i 225 -a 8 - -t 29.7693 -s 110 -d 108 -p tcp -e 1000 -i 225 -a 8 h -t 29.7693 -s 110 -d 108 -p tcp -e 1000 -i 225 -a 8 r -t 29.7693 -s 111 -d 110 -p tcp -e 1000 -i 225 -a 8 + -t 29.7694 -s 111 -d 110 -p tcp -e 1000 -i 227 -a 7 r -t 29.7696 -s 112 -d 111 -p tcp -e 1000 -i 227 -a 7 - -t 29.77 -s 112 -d 111 -p tcp -e 1000 -i 230 -a 7 h -t 29.77 -s 112 -d 111 -p tcp -e 1000 -i 230 -a 7 + -t 29.7702 -s 111 -d 110 -p tcp -e 1000 -i 228 -a 7 r -t 29.7704 -s 112 -d 111 -p tcp -e 1000 -i 228 -a 7 + -t 29.7708 -s 310 -d 303 -p tcp -e 1000 -i 186 -a 3 - -t 29.7708 -s 112 -d 111 -p tcp -e 1000 -i 231 -a 7 - -t 29.7708 -s 310 -d 303 -p tcp -e 1000 -i 186 -a 3 h -t 29.7708 -s 112 -d 111 -p tcp -e 1000 -i 231 -a 7 h -t 29.7708 -s 310 -d 303 -p tcp -e 1000 -i 186 -a 3 r -t 29.7708 -s 311 -d 310 -p tcp -e 1000 -i 186 -a 3 + -t 29.771 -s 111 -d 110 -p tcp -e 1000 -i 229 -a 7 + -t 29.7711 -s 108 -d 110 -p ack -e 40 -i 233 -a 8 - -t 29.7711 -s 108 -d 110 -p ack -e 40 -i 233 -a 8 h -t 29.7711 -s 108 -d 110 -p ack -e 40 -i 233 -a 8 r -t 29.7712 -s 112 -d 111 -p tcp -e 1000 -i 229 -a 7 + -t 29.7713 -s 210 -d 203 -p tcp -e 1000 -i 213 -a 3 - -t 29.7713 -s 210 -d 203 -p tcp -e 1000 -i 213 -a 3 h -t 29.7713 -s 210 -d 203 -p tcp -e 1000 -i 213 -a 3 r -t 29.7713 -s 110 -d 108 -p tcp -e 1000 -i 225 -a 8 r -t 29.7713 -s 211 -d 210 -p tcp -e 1000 -i 213 -a 3 - -t 29.7716 -s 112 -d 111 -p tcp -e 1000 -i 232 -a 7 h -t 29.7716 -s 112 -d 111 -p tcp -e 1000 -i 232 -a 7 + -t 29.7718 -s 111 -d 110 -p tcp -e 1000 -i 230 -a 7 r -t 29.772 -s 112 -d 111 -p tcp -e 1000 -i 230 -a 7 r -t 29.7721 -s 108 -d 110 -p ack -e 40 -i 233 -a 8 + -t 29.7722 -s 110 -d 111 -p ack -e 40 -i 233 -a 8 - -t 29.7722 -s 110 -d 111 -p ack -e 40 -i 233 -a 8 h -t 29.7722 -s 110 -d 111 -p ack -e 40 -i 233 -a 8 + -t 29.7726 -s 111 -d 110 -p tcp -e 1000 -i 231 -a 7 + -t 29.7726 -s 303 -d 310 -p ack -e 40 -i 192 -a 3 - -t 29.7726 -s 303 -d 310 -p ack -e 40 -i 192 -a 3 h -t 29.7726 -s 303 -d 310 -p ack -e 40 -i 192 -a 3 r -t 29.7728 -s 112 -d 111 -p tcp -e 1000 -i 231 -a 7 r -t 29.7728 -s 310 -d 303 -p tcp -e 1000 -i 186 -a 3 r -t 29.7733 -s 210 -d 203 -p tcp -e 1000 -i 213 -a 3 + -t 29.7734 -s 111 -d 110 -p tcp -e 1000 -i 232 -a 7 r -t 29.7736 -s 112 -d 111 -p tcp -e 1000 -i 232 -a 7 r -t 29.7736 -s 303 -d 310 -p ack -e 40 -i 192 -a 3 + -t 29.7737 -s 310 -d 311 -p ack -e 40 -i 192 -a 3 - -t 29.7737 -s 310 -d 311 -p ack -e 40 -i 192 -a 3 h -t 29.7737 -s 310 -d 311 -p ack -e 40 -i 192 -a 3 - -t 29.7786 -s 111 -d 110 -p tcp -e 1000 -i 227 -a 7 h -t 29.7786 -s 111 -d 110 -p tcp -e 1000 -i 227 -a 7 + -t 29.7826 -s 311 -d 312 -p ack -e 40 -i 189 -a 6 - -t 29.7826 -s 311 -d 312 -p ack -e 40 -i 189 -a 6 h -t 29.7826 -s 311 -d 312 -p ack -e 40 -i 189 -a 6 r -t 29.7826 -s 310 -d 311 -p ack -e 40 -i 189 -a 6 + -t 29.7836 -s 312 -d 311 -p tcp -e 1000 -i 193 -a 6 + -t 29.7836 -s 312 -d 311 -p tcp -e 1000 -i 194 -a 6 - -t 29.7836 -s 312 -d 311 -p tcp -e 1000 -i 193 -a 6 h -t 29.7836 -s 312 -d 311 -p tcp -e 1000 -i 193 -a 6 r -t 29.7836 -s 311 -d 312 -p ack -e 40 -i 189 -a 6 - -t 29.7844 -s 312 -d 311 -p tcp -e 1000 -i 194 -a 6 h -t 29.7844 -s 312 -d 311 -p tcp -e 1000 -i 194 -a 6 + -t 29.7845 -s 211 -d 212 -p ack -e 40 -i 218 -a 6 - -t 29.7845 -s 211 -d 212 -p ack -e 40 -i 218 -a 6 h -t 29.7845 -s 211 -d 212 -p ack -e 40 -i 218 -a 6 r -t 29.7845 -s 210 -d 211 -p ack -e 40 -i 218 -a 6 + -t 29.7854 -s 311 -d 310 -p tcp -e 1000 -i 193 -a 6 - -t 29.7854 -s 311 -d 310 -p tcp -e 1000 -i 193 -a 6 h -t 29.7854 -s 311 -d 310 -p tcp -e 1000 -i 193 -a 6 r -t 29.7855 -s 211 -d 212 -p ack -e 40 -i 218 -a 6 r -t 29.7856 -s 312 -d 311 -p tcp -e 1000 -i 193 -a 6 + -t 29.7862 -s 311 -d 310 -p tcp -e 1000 -i 194 -a 6 r -t 29.7864 -s 312 -d 311 -p tcp -e 1000 -i 194 -a 6 + -t 29.7876 -s 310 -d 308 -p tcp -e 1000 -i 187 -a 8 - -t 29.7876 -s 310 -d 308 -p tcp -e 1000 -i 187 -a 8 h -t 29.7876 -s 310 -d 308 -p tcp -e 1000 -i 187 -a 8 r -t 29.7876 -s 311 -d 310 -p tcp -e 1000 -i 187 -a 8 - -t 29.7886 -s 111 -d 110 -p tcp -e 1000 -i 228 -a 7 h -t 29.7886 -s 111 -d 110 -p tcp -e 1000 -i 228 -a 7 + -t 29.7893 -s 210 -d 208 -p tcp -e 1000 -i 216 -a 8 - -t 29.7893 -s 210 -d 208 -p tcp -e 1000 -i 216 -a 8 h -t 29.7893 -s 210 -d 208 -p tcp -e 1000 -i 216 -a 8 r -t 29.7893 -s 211 -d 210 -p tcp -e 1000 -i 216 -a 8 r -t 29.7896 -s 310 -d 308 -p tcp -e 1000 -i 187 -a 8 r -t 29.7913 -s 210 -d 208 -p tcp -e 1000 -i 216 -a 8 + -t 29.7931 -s 206 -d 210 -p ack -e 40 -i 224 -a 6 - -t 29.7931 -s 206 -d 210 -p ack -e 40 -i 224 -a 6 h -t 29.7931 -s 206 -d 210 -p ack -e 40 -i 224 -a 6 + -t 29.7941 -s 210 -d 211 -p ack -e 40 -i 224 -a 6 - -t 29.7941 -s 210 -d 211 -p ack -e 40 -i 224 -a 6 h -t 29.7941 -s 210 -d 211 -p ack -e 40 -i 224 -a 6 r -t 29.7941 -s 206 -d 210 -p ack -e 40 -i 224 -a 6 - -t 29.7954 -s 311 -d 310 -p tcp -e 1000 -i 194 -a 6 h -t 29.7954 -s 311 -d 310 -p tcp -e 1000 -i 194 -a 6 + -t 29.7976 -s 310 -d 308 -p tcp -e 1000 -i 188 -a 8 - -t 29.7976 -s 310 -d 308 -p tcp -e 1000 -i 188 -a 8 h -t 29.7976 -s 310 -d 308 -p tcp -e 1000 -i 188 -a 8 r -t 29.7976 -s 311 -d 310 -p tcp -e 1000 -i 188 -a 8 - -t 29.7986 -s 111 -d 110 -p tcp -e 1000 -i 229 -a 7 h -t 29.7986 -s 111 -d 110 -p tcp -e 1000 -i 229 -a 7 + -t 29.7993 -s 210 -d 208 -p tcp -e 1000 -i 217 -a 8 - -t 29.7993 -s 210 -d 208 -p tcp -e 1000 -i 217 -a 8 h -t 29.7993 -s 210 -d 208 -p tcp -e 1000 -i 217 -a 8 r -t 29.7993 -s 211 -d 210 -p tcp -e 1000 -i 217 -a 8 + -t 29.7994 -s 308 -d 310 -p ack -e 40 -i 195 -a 8 - -t 29.7994 -s 308 -d 310 -p ack -e 40 -i 195 -a 8 h -t 29.7994 -s 308 -d 310 -p ack -e 40 -i 195 -a 8 r -t 29.7996 -s 310 -d 308 -p tcp -e 1000 -i 188 -a 8 r -t 29.8004 -s 308 -d 310 -p ack -e 40 -i 195 -a 8 + -t 29.8005 -s 310 -d 311 -p ack -e 40 -i 195 -a 8 - -t 29.8005 -s 310 -d 311 -p ack -e 40 -i 195 -a 8 h -t 29.8005 -s 310 -d 311 -p ack -e 40 -i 195 -a 8 + -t 29.8011 -s 208 -d 210 -p ack -e 40 -i 225 -a 8 - -t 29.8011 -s 208 -d 210 -p ack -e 40 -i 225 -a 8 h -t 29.8011 -s 208 -d 210 -p ack -e 40 -i 225 -a 8 r -t 29.8013 -s 210 -d 208 -p tcp -e 1000 -i 217 -a 8 r -t 29.8021 -s 208 -d 210 -p ack -e 40 -i 225 -a 8 + -t 29.8022 -s 210 -d 211 -p ack -e 40 -i 225 -a 8 - -t 29.8022 -s 210 -d 211 -p ack -e 40 -i 225 -a 8 h -t 29.8022 -s 210 -d 211 -p ack -e 40 -i 225 -a 8 - -t 29.8086 -s 111 -d 110 -p tcp -e 1000 -i 230 -a 7 h -t 29.8086 -s 111 -d 110 -p tcp -e 1000 -i 230 -a 7 + -t 29.8093 -s 210 -d 208 -p tcp -e 1000 -i 219 -a 8 - -t 29.8093 -s 210 -d 208 -p tcp -e 1000 -i 219 -a 8 h -t 29.8093 -s 210 -d 208 -p tcp -e 1000 -i 219 -a 8 r -t 29.8093 -s 211 -d 210 -p tcp -e 1000 -i 219 -a 8 r -t 29.8113 -s 210 -d 208 -p tcp -e 1000 -i 219 -a 8 + -t 29.8145 -s 211 -d 212 -p ack -e 40 -i 220 -a 8 - -t 29.8145 -s 211 -d 212 -p ack -e 40 -i 220 -a 8 h -t 29.8145 -s 211 -d 212 -p ack -e 40 -i 220 -a 8 r -t 29.8145 -s 210 -d 211 -p ack -e 40 -i 220 -a 8 r -t 29.8155 -s 211 -d 212 -p ack -e 40 -i 220 -a 8 - -t 29.8186 -s 111 -d 110 -p tcp -e 1000 -i 231 -a 7 h -t 29.8186 -s 111 -d 110 -p tcp -e 1000 -i 231 -a 7 - -t 29.8286 -s 111 -d 110 -p tcp -e 1000 -i 232 -a 7 h -t 29.8286 -s 111 -d 110 -p tcp -e 1000 -i 232 -a 7 + -t 29.8311 -s 103 -d 110 -p ack -e 40 -i 234 -a 3 - -t 29.8311 -s 103 -d 110 -p ack -e 40 -i 234 -a 3 h -t 29.8311 -s 103 -d 110 -p ack -e 40 -i 234 -a 3 r -t 29.8321 -s 103 -d 110 -p ack -e 40 -i 234 -a 3 + -t 29.8322 -s 110 -d 111 -p ack -e 40 -i 234 -a 3 - -t 29.8322 -s 110 -d 111 -p ack -e 40 -i 234 -a 3 h -t 29.8322 -s 110 -d 111 -p ack -e 40 -i 234 -a 3 + -t 29.8345 -s 211 -d 212 -p ack -e 40 -i 221 -a 2 - -t 29.8345 -s 211 -d 212 -p ack -e 40 -i 221 -a 2 h -t 29.8345 -s 211 -d 212 -p ack -e 40 -i 221 -a 2 r -t 29.8345 -s 210 -d 211 -p ack -e 40 -i 221 -a 2 + -t 29.835 -s 112 -d 111 -p tcp -e 1000 -i 235 -a 9 + -t 29.835 -s 112 -d 111 -p tcp -e 1000 -i 236 -a 9 + -t 29.835 -s 112 -d 111 -p tcp -e 1000 -i 237 -a 9 + -t 29.835 -s 112 -d 111 -p tcp -e 1000 -i 238 -a 9 + -t 29.835 -s 112 -d 111 -p tcp -e 1000 -i 239 -a 9 + -t 29.835 -s 112 -d 111 -p tcp -e 1000 -i 240 -a 9 + -t 29.835 -s 112 -d 111 -p tcp -e 1000 -i 241 -a 9 + -t 29.835 -s 212 -d 211 -p tcp -e 1000 -i 226 -a 9 + -t 29.835 -s 312 -d 311 -p tcp -e 1000 -i 196 -a 9 - -t 29.835 -s 112 -d 111 -p tcp -e 1000 -i 235 -a 9 - -t 29.835 -s 212 -d 211 -p tcp -e 1000 -i 226 -a 9 - -t 29.835 -s 312 -d 311 -p tcp -e 1000 -i 196 -a 9 h -t 29.835 -s 112 -d 111 -p tcp -e 1000 -i 235 -a 9 h -t 29.835 -s 212 -d 211 -p tcp -e 1000 -i 226 -a 9 h -t 29.835 -s 312 -d 311 -p tcp -e 1000 -i 196 -a 9 r -t 29.8355 -s 211 -d 212 -p ack -e 40 -i 221 -a 2 - -t 29.8358 -s 112 -d 111 -p tcp -e 1000 -i 236 -a 9 h -t 29.8358 -s 112 -d 111 -p tcp -e 1000 -i 236 -a 9 + -t 29.8363 -s 311 -d 312 -p ack -e 40 -i 190 -a 2 - -t 29.8363 -s 311 -d 312 -p ack -e 40 -i 190 -a 2 h -t 29.8363 -s 311 -d 312 -p ack -e 40 -i 190 -a 2 r -t 29.8363 -s 310 -d 311 -p ack -e 40 -i 190 -a 2 - -t 29.8366 -s 112 -d 111 -p tcp -e 1000 -i 237 -a 9 h -t 29.8366 -s 112 -d 111 -p tcp -e 1000 -i 237 -a 9 + -t 29.8368 -s 111 -d 110 -p tcp -e 1000 -i 235 -a 9 + -t 29.8368 -s 211 -d 210 -p tcp -e 1000 -i 226 -a 9 + -t 29.8368 -s 311 -d 310 -p tcp -e 1000 -i 196 -a 9 - -t 29.8368 -s 211 -d 210 -p tcp -e 1000 -i 226 -a 9 - -t 29.8368 -s 311 -d 310 -p tcp -e 1000 -i 196 -a 9 h -t 29.8368 -s 211 -d 210 -p tcp -e 1000 -i 226 -a 9 h -t 29.8368 -s 311 -d 310 -p tcp -e 1000 -i 196 -a 9 r -t 29.837 -s 112 -d 111 -p tcp -e 1000 -i 235 -a 9 r -t 29.837 -s 212 -d 211 -p tcp -e 1000 -i 226 -a 9 r -t 29.837 -s 312 -d 311 -p tcp -e 1000 -i 196 -a 9 + -t 29.8373 -s 312 -d 311 -p tcp -e 1000 -i 197 -a 2 + -t 29.8373 -s 312 -d 311 -p tcp -e 1000 -i 198 -a 2 - -t 29.8373 -s 312 -d 311 -p tcp -e 1000 -i 197 -a 2 h -t 29.8373 -s 312 -d 311 -p tcp -e 1000 -i 197 -a 2 r -t 29.8373 -s 311 -d 312 -p ack -e 40 -i 190 -a 2 - -t 29.8374 -s 112 -d 111 -p tcp -e 1000 -i 238 -a 9 h -t 29.8374 -s 112 -d 111 -p tcp -e 1000 -i 238 -a 9 + -t 29.8376 -s 111 -d 110 -p tcp -e 1000 -i 236 -a 9 r -t 29.8378 -s 112 -d 111 -p tcp -e 1000 -i 236 -a 9 - -t 29.8381 -s 312 -d 311 -p tcp -e 1000 -i 198 -a 2 h -t 29.8381 -s 312 -d 311 -p tcp -e 1000 -i 198 -a 2 - -t 29.8382 -s 112 -d 111 -p tcp -e 1000 -i 239 -a 9 h -t 29.8382 -s 112 -d 111 -p tcp -e 1000 -i 239 -a 9 + -t 29.8384 -s 111 -d 110 -p tcp -e 1000 -i 237 -a 9 - -t 29.8386 -s 111 -d 110 -p tcp -e 1000 -i 235 -a 9 h -t 29.8386 -s 111 -d 110 -p tcp -e 1000 -i 235 -a 9 r -t 29.8386 -s 112 -d 111 -p tcp -e 1000 -i 237 -a 9 - -t 29.839 -s 112 -d 111 -p tcp -e 1000 -i 240 -a 9 h -t 29.839 -s 112 -d 111 -p tcp -e 1000 -i 240 -a 9 + -t 29.8391 -s 311 -d 310 -p tcp -e 1000 -i 197 -a 2 + -t 29.8392 -s 111 -d 110 -p tcp -e 1000 -i 238 -a 9 r -t 29.8393 -s 312 -d 311 -p tcp -e 1000 -i 197 -a 2 r -t 29.8394 -s 112 -d 111 -p tcp -e 1000 -i 238 -a 9 - -t 29.8398 -s 112 -d 111 -p tcp -e 1000 -i 241 -a 9 h -t 29.8398 -s 112 -d 111 -p tcp -e 1000 -i 241 -a 9 + -t 29.8399 -s 311 -d 310 -p tcp -e 1000 -i 198 -a 2 + -t 29.84 -s 111 -d 110 -p tcp -e 1000 -i 239 -a 9 r -t 29.8401 -s 312 -d 311 -p tcp -e 1000 -i 198 -a 2 r -t 29.8402 -s 112 -d 111 -p tcp -e 1000 -i 239 -a 9 + -t 29.8408 -s 111 -d 110 -p tcp -e 1000 -i 240 -a 9 r -t 29.841 -s 112 -d 111 -p tcp -e 1000 -i 240 -a 9 + -t 29.8416 -s 111 -d 110 -p tcp -e 1000 -i 241 -a 9 r -t 29.8418 -s 112 -d 111 -p tcp -e 1000 -i 241 -a 9 + -t 29.8431 -s 202 -d 210 -p ack -e 40 -i 227 -a 2 - -t 29.8431 -s 202 -d 210 -p ack -e 40 -i 227 -a 2 h -t 29.8431 -s 202 -d 210 -p ack -e 40 -i 227 -a 2 + -t 29.8441 -s 210 -d 211 -p ack -e 40 -i 227 -a 2 - -t 29.8441 -s 210 -d 211 -p ack -e 40 -i 227 -a 2 h -t 29.8441 -s 210 -d 211 -p ack -e 40 -i 227 -a 2 r -t 29.8441 -s 202 -d 210 -p ack -e 40 -i 227 -a 2 - -t 29.8468 -s 311 -d 310 -p tcp -e 1000 -i 197 -a 2 h -t 29.8468 -s 311 -d 310 -p tcp -e 1000 -i 197 -a 2 - -t 29.8486 -s 111 -d 110 -p tcp -e 1000 -i 236 -a 9 h -t 29.8486 -s 111 -d 110 -p tcp -e 1000 -i 236 -a 9 - -t 29.8568 -s 311 -d 310 -p tcp -e 1000 -i 198 -a 2 h -t 29.8568 -s 311 -d 310 -p tcp -e 1000 -i 198 -a 2 - -t 29.8586 -s 111 -d 110 -p tcp -e 1000 -i 237 -a 9 h -t 29.8586 -s 111 -d 110 -p tcp -e 1000 -i 237 -a 9 + -t 29.8645 -s 211 -d 212 -p ack -e 40 -i 222 -a 3 - -t 29.8645 -s 211 -d 212 -p ack -e 40 -i 222 -a 3 h -t 29.8645 -s 211 -d 212 -p ack -e 40 -i 222 -a 3 r -t 29.8645 -s 210 -d 211 -p ack -e 40 -i 222 -a 3 r -t 29.8655 -s 211 -d 212 -p ack -e 40 -i 222 -a 3 - -t 29.8686 -s 111 -d 110 -p tcp -e 1000 -i 238 -a 9 h -t 29.8686 -s 111 -d 110 -p tcp -e 1000 -i 238 -a 9 + -t 29.8726 -s 111 -d 112 -p ack -e 40 -i 233 -a 8 - -t 29.8726 -s 111 -d 112 -p ack -e 40 -i 233 -a 8 h -t 29.8726 -s 111 -d 112 -p ack -e 40 -i 233 -a 8 r -t 29.8726 -s 110 -d 111 -p ack -e 40 -i 233 -a 8 + -t 29.8731 -s 203 -d 210 -p ack -e 40 -i 228 -a 3 - -t 29.8731 -s 203 -d 210 -p ack -e 40 -i 228 -a 3 h -t 29.8731 -s 203 -d 210 -p ack -e 40 -i 228 -a 3 r -t 29.8736 -s 111 -d 112 -p ack -e 40 -i 233 -a 8 + -t 29.8741 -s 210 -d 211 -p ack -e 40 -i 228 -a 3 + -t 29.8741 -s 311 -d 312 -p ack -e 40 -i 192 -a 3 - -t 29.8741 -s 210 -d 211 -p ack -e 40 -i 228 -a 3 - -t 29.8741 -s 311 -d 312 -p ack -e 40 -i 192 -a 3 h -t 29.8741 -s 210 -d 211 -p ack -e 40 -i 228 -a 3 h -t 29.8741 -s 311 -d 312 -p ack -e 40 -i 192 -a 3 r -t 29.8741 -s 203 -d 210 -p ack -e 40 -i 228 -a 3 r -t 29.8741 -s 310 -d 311 -p ack -e 40 -i 192 -a 3 + -t 29.8751 -s 312 -d 311 -p tcp -e 1000 -i 199 -a 3 + -t 29.8751 -s 312 -d 311 -p tcp -e 1000 -i 200 -a 3 - -t 29.8751 -s 312 -d 311 -p tcp -e 1000 -i 199 -a 3 h -t 29.8751 -s 312 -d 311 -p tcp -e 1000 -i 199 -a 3 r -t 29.8751 -s 311 -d 312 -p ack -e 40 -i 192 -a 3 - -t 29.8759 -s 312 -d 311 -p tcp -e 1000 -i 200 -a 3 h -t 29.8759 -s 312 -d 311 -p tcp -e 1000 -i 200 -a 3 + -t 29.8769 -s 311 -d 310 -p tcp -e 1000 -i 199 -a 3 - -t 29.8769 -s 311 -d 310 -p tcp -e 1000 -i 199 -a 3 h -t 29.8769 -s 311 -d 310 -p tcp -e 1000 -i 199 -a 3 r -t 29.8771 -s 312 -d 311 -p tcp -e 1000 -i 199 -a 3 + -t 29.8777 -s 311 -d 310 -p tcp -e 1000 -i 200 -a 3 r -t 29.8779 -s 312 -d 311 -p tcp -e 1000 -i 200 -a 3 + -t 29.8786 -s 110 -d 107 -p tcp -e 1000 -i 226 -a 7 + -t 29.8786 -s 210 -d 207 -p tcp -e 1000 -i 223 -a 7 + -t 29.8786 -s 310 -d 307 -p tcp -e 1000 -i 191 -a 7 - -t 29.8786 -s 110 -d 107 -p tcp -e 1000 -i 226 -a 7 - -t 29.8786 -s 111 -d 110 -p tcp -e 1000 -i 239 -a 9 - -t 29.8786 -s 210 -d 207 -p tcp -e 1000 -i 223 -a 7 - -t 29.8786 -s 310 -d 307 -p tcp -e 1000 -i 191 -a 7 h -t 29.8786 -s 110 -d 107 -p tcp -e 1000 -i 226 -a 7 h -t 29.8786 -s 111 -d 110 -p tcp -e 1000 -i 239 -a 9 h -t 29.8786 -s 210 -d 207 -p tcp -e 1000 -i 223 -a 7 h -t 29.8786 -s 310 -d 307 -p tcp -e 1000 -i 191 -a 7 r -t 29.8786 -s 111 -d 110 -p tcp -e 1000 -i 226 -a 7 r -t 29.8786 -s 211 -d 210 -p tcp -e 1000 -i 223 -a 7 r -t 29.8786 -s 311 -d 310 -p tcp -e 1000 -i 191 -a 7 + -t 29.8788 -s 212 -d 211 -p tcp -e 1000 -i 229 -a 7 - -t 29.8788 -s 212 -d 211 -p tcp -e 1000 -i 229 -a 7 h -t 29.8788 -s 212 -d 211 -p tcp -e 1000 -i 229 -a 7 + -t 29.8806 -s 211 -d 210 -p tcp -e 1000 -i 229 -a 7 - -t 29.8806 -s 211 -d 210 -p tcp -e 1000 -i 229 -a 7 h -t 29.8806 -s 211 -d 210 -p tcp -e 1000 -i 229 -a 7 r -t 29.8806 -s 110 -d 107 -p tcp -e 1000 -i 226 -a 7 r -t 29.8806 -s 210 -d 207 -p tcp -e 1000 -i 223 -a 7 r -t 29.8806 -s 310 -d 307 -p tcp -e 1000 -i 191 -a 7 r -t 29.8808 -s 212 -d 211 -p tcp -e 1000 -i 229 -a 7 - -t 29.8869 -s 311 -d 310 -p tcp -e 1000 -i 200 -a 3 h -t 29.8869 -s 311 -d 310 -p tcp -e 1000 -i 200 -a 3 + -t 29.8886 -s 110 -d 107 -p tcp -e 1000 -i 227 -a 7 - -t 29.8886 -s 110 -d 107 -p tcp -e 1000 -i 227 -a 7 - -t 29.8886 -s 111 -d 110 -p tcp -e 1000 -i 240 -a 9 h -t 29.8886 -s 110 -d 107 -p tcp -e 1000 -i 227 -a 7 h -t 29.8886 -s 111 -d 110 -p tcp -e 1000 -i 240 -a 9 r -t 29.8886 -s 111 -d 110 -p tcp -e 1000 -i 227 -a 7 + -t 29.8904 -s 107 -d 110 -p ack -e 40 -i 242 -a 7 - -t 29.8904 -s 107 -d 110 -p ack -e 40 -i 242 -a 7 h -t 29.8904 -s 107 -d 110 -p ack -e 40 -i 242 -a 7 r -t 29.8906 -s 110 -d 107 -p tcp -e 1000 -i 227 -a 7 + -t 29.8914 -s 110 -d 111 -p ack -e 40 -i 242 -a 7 - -t 29.8914 -s 110 -d 111 -p ack -e 40 -i 242 -a 7 h -t 29.8914 -s 110 -d 111 -p ack -e 40 -i 242 -a 7 r -t 29.8914 -s 107 -d 110 -p ack -e 40 -i 242 -a 7 + -t 29.8945 -s 211 -d 212 -p ack -e 40 -i 224 -a 6 - -t 29.8945 -s 211 -d 212 -p ack -e 40 -i 224 -a 6 h -t 29.8945 -s 211 -d 212 -p ack -e 40 -i 224 -a 6 r -t 29.8945 -s 210 -d 211 -p ack -e 40 -i 224 -a 6 + -t 29.8954 -s 310 -d 306 -p tcp -e 1000 -i 193 -a 6 - -t 29.8954 -s 310 -d 306 -p tcp -e 1000 -i 193 -a 6 h -t 29.8954 -s 310 -d 306 -p tcp -e 1000 -i 193 -a 6 r -t 29.8954 -s 311 -d 310 -p tcp -e 1000 -i 193 -a 6 r -t 29.8955 -s 211 -d 212 -p ack -e 40 -i 224 -a 6 r -t 29.8974 -s 310 -d 306 -p tcp -e 1000 -i 193 -a 6 + -t 29.8986 -s 110 -d 107 -p tcp -e 1000 -i 228 -a 7 - -t 29.8986 -s 110 -d 107 -p tcp -e 1000 -i 228 -a 7 - -t 29.8986 -s 111 -d 110 -p tcp -e 1000 -i 241 -a 9 h -t 29.8986 -s 110 -d 107 -p tcp -e 1000 -i 228 -a 7 h -t 29.8986 -s 111 -d 110 -p tcp -e 1000 -i 241 -a 9 r -t 29.8986 -s 111 -d 110 -p tcp -e 1000 -i 228 -a 7 r -t 29.9006 -s 110 -d 107 -p tcp -e 1000 -i 228 -a 7 + -t 29.9009 -s 311 -d 312 -p ack -e 40 -i 195 -a 8 - -t 29.9009 -s 311 -d 312 -p ack -e 40 -i 195 -a 8 h -t 29.9009 -s 311 -d 312 -p ack -e 40 -i 195 -a 8 r -t 29.9009 -s 310 -d 311 -p ack -e 40 -i 195 -a 8 + -t 29.9019 -s 312 -d 311 -p tcp -e 1000 -i 201 -a 8 + -t 29.9019 -s 312 -d 311 -p tcp -e 1000 -i 202 -a 8 - -t 29.9019 -s 312 -d 311 -p tcp -e 1000 -i 201 -a 8 h -t 29.9019 -s 312 -d 311 -p tcp -e 1000 -i 201 -a 8 r -t 29.9019 -s 311 -d 312 -p ack -e 40 -i 195 -a 8 + -t 29.9026 -s 211 -d 212 -p ack -e 40 -i 225 -a 8 - -t 29.9026 -s 211 -d 212 -p ack -e 40 -i 225 -a 8 h -t 29.9026 -s 211 -d 212 -p ack -e 40 -i 225 -a 8 r -t 29.9026 -s 210 -d 211 -p ack -e 40 -i 225 -a 8 - -t 29.9027 -s 312 -d 311 -p tcp -e 1000 -i 202 -a 8 h -t 29.9027 -s 312 -d 311 -p tcp -e 1000 -i 202 -a 8 r -t 29.9036 -s 211 -d 212 -p ack -e 40 -i 225 -a 8 + -t 29.9037 -s 311 -d 310 -p tcp -e 1000 -i 201 -a 8 - -t 29.9037 -s 311 -d 310 -p tcp -e 1000 -i 201 -a 8 h -t 29.9037 -s 311 -d 310 -p tcp -e 1000 -i 201 -a 8 r -t 29.9039 -s 312 -d 311 -p tcp -e 1000 -i 201 -a 8 + -t 29.9045 -s 311 -d 310 -p tcp -e 1000 -i 202 -a 8 r -t 29.9047 -s 312 -d 311 -p tcp -e 1000 -i 202 -a 8 + -t 29.9054 -s 310 -d 306 -p tcp -e 1000 -i 194 -a 6 - -t 29.9054 -s 310 -d 306 -p tcp -e 1000 -i 194 -a 6 h -t 29.9054 -s 310 -d 306 -p tcp -e 1000 -i 194 -a 6 r -t 29.9054 -s 311 -d 310 -p tcp -e 1000 -i 194 -a 6 + -t 29.9072 -s 306 -d 310 -p ack -e 40 -i 203 -a 6 - -t 29.9072 -s 306 -d 310 -p ack -e 40 -i 203 -a 6 h -t 29.9072 -s 306 -d 310 -p ack -e 40 -i 203 -a 6 r -t 29.9074 -s 310 -d 306 -p tcp -e 1000 -i 194 -a 6 + -t 29.9082 -s 310 -d 311 -p ack -e 40 -i 203 -a 6 - -t 29.9082 -s 310 -d 311 -p ack -e 40 -i 203 -a 6 h -t 29.9082 -s 310 -d 311 -p ack -e 40 -i 203 -a 6 r -t 29.9082 -s 306 -d 310 -p ack -e 40 -i 203 -a 6 + -t 29.9086 -s 110 -d 107 -p tcp -e 1000 -i 229 -a 7 - -t 29.9086 -s 110 -d 107 -p tcp -e 1000 -i 229 -a 7 h -t 29.9086 -s 110 -d 107 -p tcp -e 1000 -i 229 -a 7 r -t 29.9086 -s 111 -d 110 -p tcp -e 1000 -i 229 -a 7 + -t 29.9104 -s 107 -d 110 -p ack -e 40 -i 243 -a 7 - -t 29.9104 -s 107 -d 110 -p ack -e 40 -i 243 -a 7 h -t 29.9104 -s 107 -d 110 -p ack -e 40 -i 243 -a 7 r -t 29.9106 -s 110 -d 107 -p tcp -e 1000 -i 229 -a 7 + -t 29.9111 -s 208 -d 210 -p ack -e 40 -i 230 -a 8 - -t 29.9111 -s 208 -d 210 -p ack -e 40 -i 230 -a 8 h -t 29.9111 -s 208 -d 210 -p ack -e 40 -i 230 -a 8 + -t 29.9114 -s 110 -d 111 -p ack -e 40 -i 243 -a 7 - -t 29.9114 -s 110 -d 111 -p ack -e 40 -i 243 -a 7 h -t 29.9114 -s 110 -d 111 -p ack -e 40 -i 243 -a 7 r -t 29.9114 -s 107 -d 110 -p ack -e 40 -i 243 -a 7 r -t 29.9121 -s 208 -d 210 -p ack -e 40 -i 230 -a 8 + -t 29.9122 -s 210 -d 211 -p ack -e 40 -i 230 -a 8 - -t 29.9122 -s 210 -d 211 -p ack -e 40 -i 230 -a 8 h -t 29.9122 -s 210 -d 211 -p ack -e 40 -i 230 -a 8 - -t 29.9137 -s 311 -d 310 -p tcp -e 1000 -i 202 -a 8 h -t 29.9137 -s 311 -d 310 -p tcp -e 1000 -i 202 -a 8 + -t 29.9186 -s 110 -d 107 -p tcp -e 1000 -i 230 -a 7 - -t 29.9186 -s 110 -d 107 -p tcp -e 1000 -i 230 -a 7 h -t 29.9186 -s 110 -d 107 -p tcp -e 1000 -i 230 -a 7 r -t 29.9186 -s 111 -d 110 -p tcp -e 1000 -i 230 -a 7 r -t 29.9206 -s 110 -d 107 -p tcp -e 1000 -i 230 -a 7 + -t 29.9286 -s 110 -d 107 -p tcp -e 1000 -i 231 -a 7 - -t 29.9286 -s 110 -d 107 -p tcp -e 1000 -i 231 -a 7 h -t 29.9286 -s 110 -d 107 -p tcp -e 1000 -i 231 -a 7 r -t 29.9286 -s 111 -d 110 -p tcp -e 1000 -i 231 -a 7 + -t 29.9304 -s 107 -d 110 -p ack -e 40 -i 244 -a 7 - -t 29.9304 -s 107 -d 110 -p ack -e 40 -i 244 -a 7 h -t 29.9304 -s 107 -d 110 -p ack -e 40 -i 244 -a 7 r -t 29.9306 -s 110 -d 107 -p tcp -e 1000 -i 231 -a 7 + -t 29.9314 -s 110 -d 111 -p ack -e 40 -i 244 -a 7 - -t 29.9314 -s 110 -d 111 -p ack -e 40 -i 244 -a 7 h -t 29.9314 -s 110 -d 111 -p ack -e 40 -i 244 -a 7 r -t 29.9314 -s 107 -d 110 -p ack -e 40 -i 244 -a 7 + -t 29.9326 -s 111 -d 112 -p ack -e 40 -i 234 -a 3 - -t 29.9326 -s 111 -d 112 -p ack -e 40 -i 234 -a 3 h -t 29.9326 -s 111 -d 112 -p ack -e 40 -i 234 -a 3 r -t 29.9326 -s 110 -d 111 -p ack -e 40 -i 234 -a 3 r -t 29.9336 -s 111 -d 112 -p ack -e 40 -i 234 -a 3 + -t 29.9386 -s 110 -d 107 -p tcp -e 1000 -i 232 -a 7 - -t 29.9386 -s 110 -d 107 -p tcp -e 1000 -i 232 -a 7 h -t 29.9386 -s 110 -d 107 -p tcp -e 1000 -i 232 -a 7 r -t 29.9386 -s 111 -d 110 -p tcp -e 1000 -i 232 -a 7 r -t 29.9406 -s 110 -d 107 -p tcp -e 1000 -i 232 -a 7 + -t 29.9445 -s 211 -d 212 -p ack -e 40 -i 227 -a 2 - -t 29.9445 -s 211 -d 212 -p ack -e 40 -i 227 -a 2 h -t 29.9445 -s 211 -d 212 -p ack -e 40 -i 227 -a 2 r -t 29.9445 -s 210 -d 211 -p ack -e 40 -i 227 -a 2 r -t 29.9455 -s 211 -d 212 -p ack -e 40 -i 227 -a 2 + -t 29.9468 -s 210 -d 209 -p tcp -e 1000 -i 226 -a 9 + -t 29.9468 -s 310 -d 309 -p tcp -e 1000 -i 196 -a 9 - -t 29.9468 -s 210 -d 209 -p tcp -e 1000 -i 226 -a 9 - -t 29.9468 -s 310 -d 309 -p tcp -e 1000 -i 196 -a 9 h -t 29.9468 -s 210 -d 209 -p tcp -e 1000 -i 226 -a 9 h -t 29.9468 -s 310 -d 309 -p tcp -e 1000 -i 196 -a 9 r -t 29.9468 -s 211 -d 210 -p tcp -e 1000 -i 226 -a 9 r -t 29.9468 -s 311 -d 310 -p tcp -e 1000 -i 196 -a 9 + -t 29.947 -s 212 -d 211 -p tcp -e 1000 -i 231 -a 9 - -t 29.947 -s 212 -d 211 -p tcp -e 1000 -i 231 -a 9 h -t 29.947 -s 212 -d 211 -p tcp -e 1000 -i 231 -a 9 + -t 29.9486 -s 110 -d 109 -p tcp -e 1000 -i 235 -a 9 - -t 29.9486 -s 110 -d 109 -p tcp -e 1000 -i 235 -a 9 h -t 29.9486 -s 110 -d 109 -p tcp -e 1000 -i 235 -a 9 r -t 29.9486 -s 111 -d 110 -p tcp -e 1000 -i 235 -a 9 + -t 29.9488 -s 211 -d 210 -p tcp -e 1000 -i 231 -a 9 - -t 29.9488 -s 211 -d 210 -p tcp -e 1000 -i 231 -a 9 h -t 29.9488 -s 211 -d 210 -p tcp -e 1000 -i 231 -a 9 r -t 29.9488 -s 210 -d 209 -p tcp -e 1000 -i 226 -a 9 r -t 29.9488 -s 310 -d 309 -p tcp -e 1000 -i 196 -a 9 r -t 29.949 -s 212 -d 211 -p tcp -e 1000 -i 231 -a 9 r -t 29.9506 -s 110 -d 109 -p tcp -e 1000 -i 235 -a 9 + -t 29.9568 -s 310 -d 302 -p tcp -e 1000 -i 197 -a 2 - -t 29.9568 -s 310 -d 302 -p tcp -e 1000 -i 197 -a 2 h -t 29.9568 -s 310 -d 302 -p tcp -e 1000 -i 197 -a 2 r -t 29.9568 -s 311 -d 310 -p tcp -e 1000 -i 197 -a 2 + -t 29.9586 -s 110 -d 109 -p tcp -e 1000 -i 236 -a 9 - -t 29.9586 -s 110 -d 109 -p tcp -e 1000 -i 236 -a 9 h -t 29.9586 -s 110 -d 109 -p tcp -e 1000 -i 236 -a 9 r -t 29.9586 -s 111 -d 110 -p tcp -e 1000 -i 236 -a 9 r -t 29.9588 -s 310 -d 302 -p tcp -e 1000 -i 197 -a 2 + -t 29.9604 -s 109 -d 110 -p ack -e 40 -i 245 -a 9 - -t 29.9604 -s 109 -d 110 -p ack -e 40 -i 245 -a 9 h -t 29.9604 -s 109 -d 110 -p ack -e 40 -i 245 -a 9 r -t 29.9606 -s 110 -d 109 -p tcp -e 1000 -i 236 -a 9 + -t 29.9614 -s 110 -d 111 -p ack -e 40 -i 245 -a 9 - -t 29.9614 -s 110 -d 111 -p ack -e 40 -i 245 -a 9 h -t 29.9614 -s 110 -d 111 -p ack -e 40 -i 245 -a 9 r -t 29.9614 -s 109 -d 110 -p ack -e 40 -i 245 -a 9 + -t 29.9668 -s 310 -d 302 -p tcp -e 1000 -i 198 -a 2 - -t 29.9668 -s 310 -d 302 -p tcp -e 1000 -i 198 -a 2 h -t 29.9668 -s 310 -d 302 -p tcp -e 1000 -i 198 -a 2 r -t 29.9668 -s 311 -d 310 -p tcp -e 1000 -i 198 -a 2 + -t 29.9686 -s 110 -d 109 -p tcp -e 1000 -i 237 -a 9 + -t 29.9686 -s 302 -d 310 -p ack -e 40 -i 204 -a 2 - -t 29.9686 -s 110 -d 109 -p tcp -e 1000 -i 237 -a 9 - -t 29.9686 -s 302 -d 310 -p ack -e 40 -i 204 -a 2 h -t 29.9686 -s 110 -d 109 -p tcp -e 1000 -i 237 -a 9 h -t 29.9686 -s 302 -d 310 -p ack -e 40 -i 204 -a 2 r -t 29.9686 -s 111 -d 110 -p tcp -e 1000 -i 237 -a 9 r -t 29.9688 -s 310 -d 302 -p tcp -e 1000 -i 198 -a 2 + -t 29.9696 -s 310 -d 311 -p ack -e 40 -i 204 -a 2 - -t 29.9696 -s 310 -d 311 -p ack -e 40 -i 204 -a 2 h -t 29.9696 -s 310 -d 311 -p ack -e 40 -i 204 -a 2 r -t 29.9696 -s 302 -d 310 -p ack -e 40 -i 204 -a 2 r -t 29.9706 -s 110 -d 109 -p tcp -e 1000 -i 237 -a 9 + -t 29.9745 -s 211 -d 212 -p ack -e 40 -i 228 -a 3 - -t 29.9745 -s 211 -d 212 -p ack -e 40 -i 228 -a 3 h -t 29.9745 -s 211 -d 212 -p ack -e 40 -i 228 -a 3 r -t 29.9745 -s 210 -d 211 -p ack -e 40 -i 228 -a 3 r -t 29.9755 -s 211 -d 212 -p ack -e 40 -i 228 -a 3 + -t 29.9786 -s 110 -d 109 -p tcp -e 1000 -i 238 -a 9 - -t 29.9786 -s 110 -d 109 -p tcp -e 1000 -i 238 -a 9 h -t 29.9786 -s 110 -d 109 -p tcp -e 1000 -i 238 -a 9 r -t 29.9786 -s 111 -d 110 -p tcp -e 1000 -i 238 -a 9 + -t 29.9804 -s 109 -d 110 -p ack -e 40 -i 246 -a 9 + -t 29.9804 -s 207 -d 210 -p ack -e 40 -i 232 -a 7 + -t 29.9804 -s 307 -d 310 -p ack -e 40 -i 205 -a 7 - -t 29.9804 -s 109 -d 110 -p ack -e 40 -i 246 -a 9 - -t 29.9804 -s 207 -d 210 -p ack -e 40 -i 232 -a 7 - -t 29.9804 -s 307 -d 310 -p ack -e 40 -i 205 -a 7 h -t 29.9804 -s 109 -d 110 -p ack -e 40 -i 246 -a 9 h -t 29.9804 -s 207 -d 210 -p ack -e 40 -i 232 -a 7 h -t 29.9804 -s 307 -d 310 -p ack -e 40 -i 205 -a 7 r -t 29.9806 -s 110 -d 109 -p tcp -e 1000 -i 238 -a 9 + -t 29.9814 -s 110 -d 111 -p ack -e 40 -i 246 -a 9 + -t 29.9814 -s 210 -d 211 -p ack -e 40 -i 232 -a 7 + -t 29.9814 -s 310 -d 311 -p ack -e 40 -i 205 -a 7 - -t 29.9814 -s 110 -d 111 -p ack -e 40 -i 246 -a 9 - -t 29.9814 -s 210 -d 211 -p ack -e 40 -i 232 -a 7 - -t 29.9814 -s 310 -d 311 -p ack -e 40 -i 205 -a 7 h -t 29.9814 -s 110 -d 111 -p ack -e 40 -i 246 -a 9 h -t 29.9814 -s 210 -d 211 -p ack -e 40 -i 232 -a 7 h -t 29.9814 -s 310 -d 311 -p ack -e 40 -i 205 -a 7 r -t 29.9814 -s 109 -d 110 -p ack -e 40 -i 246 -a 9 r -t 29.9814 -s 207 -d 210 -p ack -e 40 -i 232 -a 7 r -t 29.9814 -s 307 -d 310 -p ack -e 40 -i 205 -a 7 + -t 29.9869 -s 310 -d 303 -p tcp -e 1000 -i 199 -a 3 - -t 29.9869 -s 310 -d 303 -p tcp -e 1000 -i 199 -a 3 h -t 29.9869 -s 310 -d 303 -p tcp -e 1000 -i 199 -a 3 r -t 29.9869 -s 311 -d 310 -p tcp -e 1000 -i 199 -a 3 + -t 29.9886 -s 110 -d 109 -p tcp -e 1000 -i 239 -a 9 - -t 29.9886 -s 110 -d 109 -p tcp -e 1000 -i 239 -a 9 h -t 29.9886 -s 110 -d 109 -p tcp -e 1000 -i 239 -a 9 r -t 29.9886 -s 111 -d 110 -p tcp -e 1000 -i 239 -a 9 r -t 29.9889 -s 310 -d 303 -p tcp -e 1000 -i 199 -a 3 + -t 29.9906 -s 210 -d 207 -p tcp -e 1000 -i 229 -a 7 - -t 29.9906 -s 210 -d 207 -p tcp -e 1000 -i 229 -a 7 h -t 29.9906 -s 210 -d 207 -p tcp -e 1000 -i 229 -a 7 r -t 29.9906 -s 110 -d 109 -p tcp -e 1000 -i 239 -a 9 r -t 29.9906 -s 211 -d 210 -p tcp -e 1000 -i 229 -a 7 + -t 29.9908 -s 212 -d 211 -p tcp -e 1000 -i 233 -a 7 - -t 29.9908 -s 212 -d 211 -p tcp -e 1000 -i 233 -a 7 h -t 29.9908 -s 212 -d 211 -p tcp -e 1000 -i 233 -a 7 + -t 29.9918 -s 111 -d 112 -p ack -e 40 -i 242 -a 7 - -t 29.9918 -s 111 -d 112 -p ack -e 40 -i 242 -a 7 h -t 29.9918 -s 111 -d 112 -p ack -e 40 -i 242 -a 7 r -t 29.9918 -s 110 -d 111 -p ack -e 40 -i 242 -a 7 + -t 29.9926 -s 211 -d 210 -p tcp -e 1000 -i 233 -a 7 - -t 29.9926 -s 211 -d 210 -p tcp -e 1000 -i 233 -a 7 h -t 29.9926 -s 211 -d 210 -p tcp -e 1000 -i 233 -a 7 r -t 29.9926 -s 210 -d 207 -p tcp -e 1000 -i 229 -a 7 r -t 29.9928 -s 111 -d 112 -p ack -e 40 -i 242 -a 7 r -t 29.9928 -s 212 -d 211 -p tcp -e 1000 -i 233 -a 7 + -t 29.9929 -s 112 -d 111 -p tcp -e 1000 -i 247 -a 7 + -t 29.9929 -s 112 -d 111 -p tcp -e 1000 -i 248 -a 7 + -t 29.9929 -s 112 -d 111 -p tcp -e 1000 -i 249 -a 7 - -t 29.9929 -s 112 -d 111 -p tcp -e 1000 -i 247 -a 7 h -t 29.9929 -s 112 -d 111 -p tcp -e 1000 -i 247 -a 7 - -t 29.9937 -s 112 -d 111 -p tcp -e 1000 -i 248 -a 7 h -t 29.9937 -s 112 -d 111 -p tcp -e 1000 -i 248 -a 7 - -t 29.9945 -s 112 -d 111 -p tcp -e 1000 -i 249 -a 7 h -t 29.9945 -s 112 -d 111 -p tcp -e 1000 -i 249 -a 7 + -t 29.9947 -s 111 -d 110 -p tcp -e 1000 -i 247 -a 7 - -t 29.9947 -s 111 -d 110 -p tcp -e 1000 -i 247 -a 7 h -t 29.9947 -s 111 -d 110 -p tcp -e 1000 -i 247 -a 7 r -t 29.9949 -s 112 -d 111 -p tcp -e 1000 -i 247 -a 7 + -t 29.9955 -s 111 -d 110 -p tcp -e 1000 -i 248 -a 7 r -t 29.9957 -s 112 -d 111 -p tcp -e 1000 -i 248 -a 7 + -t 29.9963 -s 111 -d 110 -p tcp -e 1000 -i 249 -a 7 r -t 29.9965 -s 112 -d 111 -p tcp -e 1000 -i 249 -a 7 + -t 29.9969 -s 310 -d 303 -p tcp -e 1000 -i 200 -a 3 - -t 29.9969 -s 310 -d 303 -p tcp -e 1000 -i 200 -a 3 h -t 29.9969 -s 310 -d 303 -p tcp -e 1000 -i 200 -a 3 r -t 29.9969 -s 311 -d 310 -p tcp -e 1000 -i 200 -a 3 + -t 29.9986 -s 110 -d 109 -p tcp -e 1000 -i 240 -a 9 - -t 29.9986 -s 110 -d 109 -p tcp -e 1000 -i 240 -a 9 h -t 29.9986 -s 110 -d 109 -p tcp -e 1000 -i 240 -a 9 r -t 29.9986 -s 111 -d 110 -p tcp -e 1000 -i 240 -a 9 + -t 29.9987 -s 303 -d 310 -p ack -e 40 -i 206 -a 3 - -t 29.9987 -s 303 -d 310 -p ack -e 40 -i 206 -a 3 h -t 29.9987 -s 303 -d 310 -p ack -e 40 -i 206 -a 3 r -t 29.9989 -s 310 -d 303 -p tcp -e 1000 -i 200 -a 3 + -t 29.9997 -s 310 -d 311 -p ack -e 40 -i 206 -a 3 - -t 29.9997 -s 310 -d 311 -p ack -e 40 -i 206 -a 3 h -t 29.9997 -s 310 -d 311 -p ack -e 40 -i 206 -a 3 r -t 29.9997 -s 303 -d 310 -p ack -e 40 -i 206 -a 3 + -t 30.0004 -s 109 -d 110 -p ack -e 40 -i 250 -a 9 - -t 30.0004 -s 109 -d 110 -p ack -e 40 -i 250 -a 9 h -t 30.0004 -s 109 -d 110 -p ack -e 40 -i 250 -a 9 r -t 30.0006 -s 110 -d 109 -p tcp -e 1000 -i 240 -a 9 + -t 30.0014 -s 110 -d 111 -p ack -e 40 -i 250 -a 9 - -t 30.0014 -s 110 -d 111 -p ack -e 40 -i 250 -a 9 h -t 30.0014 -s 110 -d 111 -p ack -e 40 -i 250 -a 9 r -t 30.0014 -s 109 -d 110 -p ack -e 40 -i 250 -a 9 - -t 30.0047 -s 111 -d 110 -p tcp -e 1000 -i 248 -a 7 h -t 30.0047 -s 111 -d 110 -p tcp -e 1000 -i 248 -a 7 + -t 30.0086 -s 110 -d 109 -p tcp -e 1000 -i 241 -a 9 + -t 30.0086 -s 311 -d 312 -p ack -e 40 -i 203 -a 6 - -t 30.0086 -s 110 -d 109 -p tcp -e 1000 -i 241 -a 9 - -t 30.0086 -s 311 -d 312 -p ack -e 40 -i 203 -a 6 h -t 30.0086 -s 110 -d 109 -p tcp -e 1000 -i 241 -a 9 h -t 30.0086 -s 311 -d 312 -p ack -e 40 -i 203 -a 6 r -t 30.0086 -s 111 -d 110 -p tcp -e 1000 -i 241 -a 9 r -t 30.0086 -s 310 -d 311 -p ack -e 40 -i 203 -a 6 r -t 30.0096 -s 311 -d 312 -p ack -e 40 -i 203 -a 6 + -t 30.0097 -s 312 -d 311 -p tcp -e 1000 -i 207 -a 6 + -t 30.0097 -s 312 -d 311 -p tcp -e 1000 -i 208 -a 6 + -t 30.0097 -s 312 -d 311 -p tcp -e 1000 -i 209 -a 6 - -t 30.0097 -s 312 -d 311 -p tcp -e 1000 -i 207 -a 6 h -t 30.0097 -s 312 -d 311 -p tcp -e 1000 -i 207 -a 6 - -t 30.0105 -s 312 -d 311 -p tcp -e 1000 -i 208 -a 6 h -t 30.0105 -s 312 -d 311 -p tcp -e 1000 -i 208 -a 6 r -t 30.0106 -s 110 -d 109 -p tcp -e 1000 -i 241 -a 9 - -t 30.0113 -s 312 -d 311 -p tcp -e 1000 -i 209 -a 6 h -t 30.0113 -s 312 -d 311 -p tcp -e 1000 -i 209 -a 6 + -t 30.0115 -s 311 -d 310 -p tcp -e 1000 -i 207 -a 6 - -t 30.0115 -s 311 -d 310 -p tcp -e 1000 -i 207 -a 6 h -t 30.0115 -s 311 -d 310 -p tcp -e 1000 -i 207 -a 6 r -t 30.0117 -s 312 -d 311 -p tcp -e 1000 -i 207 -a 6 + -t 30.0118 -s 111 -d 112 -p ack -e 40 -i 243 -a 7 - -t 30.0118 -s 111 -d 112 -p ack -e 40 -i 243 -a 7 h -t 30.0118 -s 111 -d 112 -p ack -e 40 -i 243 -a 7 r -t 30.0118 -s 110 -d 111 -p ack -e 40 -i 243 -a 7 + -t 30.0123 -s 311 -d 310 -p tcp -e 1000 -i 208 -a 6 r -t 30.0125 -s 312 -d 311 -p tcp -e 1000 -i 208 -a 6 + -t 30.0126 -s 211 -d 212 -p ack -e 40 -i 230 -a 8 - -t 30.0126 -s 211 -d 212 -p ack -e 40 -i 230 -a 8 h -t 30.0126 -s 211 -d 212 -p ack -e 40 -i 230 -a 8 r -t 30.0126 -s 210 -d 211 -p ack -e 40 -i 230 -a 8 r -t 30.0128 -s 111 -d 112 -p ack -e 40 -i 243 -a 7 + -t 30.0131 -s 311 -d 310 -p tcp -e 1000 -i 209 -a 6 r -t 30.0133 -s 312 -d 311 -p tcp -e 1000 -i 209 -a 6 r -t 30.0136 -s 211 -d 212 -p ack -e 40 -i 230 -a 8 + -t 30.0137 -s 310 -d 308 -p tcp -e 1000 -i 201 -a 8 - -t 30.0137 -s 310 -d 308 -p tcp -e 1000 -i 201 -a 8 h -t 30.0137 -s 310 -d 308 -p tcp -e 1000 -i 201 -a 8 r -t 30.0137 -s 311 -d 310 -p tcp -e 1000 -i 201 -a 8 - -t 30.0147 -s 111 -d 110 -p tcp -e 1000 -i 249 -a 7 h -t 30.0147 -s 111 -d 110 -p tcp -e 1000 -i 249 -a 7 r -t 30.0157 -s 310 -d 308 -p tcp -e 1000 -i 201 -a 8 - -t 30.0215 -s 311 -d 310 -p tcp -e 1000 -i 208 -a 6 h -t 30.0215 -s 311 -d 310 -p tcp -e 1000 -i 208 -a 6 + -t 30.0237 -s 310 -d 308 -p tcp -e 1000 -i 202 -a 8 - -t 30.0237 -s 310 -d 308 -p tcp -e 1000 -i 202 -a 8 h -t 30.0237 -s 310 -d 308 -p tcp -e 1000 -i 202 -a 8 r -t 30.0237 -s 311 -d 310 -p tcp -e 1000 -i 202 -a 8 + -t 30.0255 -s 308 -d 310 -p ack -e 40 -i 210 -a 8 - -t 30.0255 -s 308 -d 310 -p ack -e 40 -i 210 -a 8 h -t 30.0255 -s 308 -d 310 -p ack -e 40 -i 210 -a 8 r -t 30.0257 -s 310 -d 308 -p tcp -e 1000 -i 202 -a 8 + -t 30.0265 -s 310 -d 311 -p ack -e 40 -i 210 -a 8 - -t 30.0265 -s 310 -d 311 -p ack -e 40 -i 210 -a 8 h -t 30.0265 -s 310 -d 311 -p ack -e 40 -i 210 -a 8 r -t 30.0265 -s 308 -d 310 -p ack -e 40 -i 210 -a 8 - -t 30.0315 -s 311 -d 310 -p tcp -e 1000 -i 209 -a 6 h -t 30.0315 -s 311 -d 310 -p tcp -e 1000 -i 209 -a 6 + -t 30.0318 -s 111 -d 112 -p ack -e 40 -i 244 -a 7 - -t 30.0318 -s 111 -d 112 -p ack -e 40 -i 244 -a 7 h -t 30.0318 -s 111 -d 112 -p ack -e 40 -i 244 -a 7 r -t 30.0318 -s 110 -d 111 -p ack -e 40 -i 244 -a 7 r -t 30.0328 -s 111 -d 112 -p ack -e 40 -i 244 -a 7 + -t 30.0388 -s 112 -d 111 -p tcp -e 1000 -i 251 -a 0 + -t 30.0388 -s 112 -d 111 -p tcp -e 1000 -i 252 -a 0 + -t 30.0388 -s 112 -d 111 -p tcp -e 1000 -i 253 -a 0 + -t 30.0388 -s 112 -d 111 -p tcp -e 1000 -i 254 -a 0 + -t 30.0388 -s 112 -d 111 -p tcp -e 1000 -i 255 -a 0 + -t 30.0388 -s 112 -d 111 -p tcp -e 1000 -i 256 -a 0 + -t 30.0388 -s 112 -d 111 -p tcp -e 1000 -i 257 -a 0 + -t 30.0388 -s 212 -d 211 -p tcp -e 1000 -i 234 -a 0 + -t 30.0388 -s 312 -d 311 -p tcp -e 1000 -i 211 -a 0 - -t 30.0388 -s 112 -d 111 -p tcp -e 1000 -i 251 -a 0 - -t 30.0388 -s 212 -d 211 -p tcp -e 1000 -i 234 -a 0 - -t 30.0388 -s 312 -d 311 -p tcp -e 1000 -i 211 -a 0 h -t 30.0388 -s 112 -d 111 -p tcp -e 1000 -i 251 -a 0 h -t 30.0388 -s 212 -d 211 -p tcp -e 1000 -i 234 -a 0 h -t 30.0388 -s 312 -d 311 -p tcp -e 1000 -i 211 -a 0 - -t 30.0396 -s 112 -d 111 -p tcp -e 1000 -i 252 -a 0 h -t 30.0396 -s 112 -d 111 -p tcp -e 1000 -i 252 -a 0 + -t 30.0404 -s 107 -d 110 -p ack -e 40 -i 258 -a 7 - -t 30.0404 -s 107 -d 110 -p ack -e 40 -i 258 -a 7 - -t 30.0404 -s 112 -d 111 -p tcp -e 1000 -i 253 -a 0 h -t 30.0404 -s 107 -d 110 -p ack -e 40 -i 258 -a 7 h -t 30.0404 -s 112 -d 111 -p tcp -e 1000 -i 253 -a 0 + -t 30.0406 -s 111 -d 110 -p tcp -e 1000 -i 251 -a 0 + -t 30.0406 -s 211 -d 210 -p tcp -e 1000 -i 234 -a 0 + -t 30.0406 -s 311 -d 310 -p tcp -e 1000 -i 211 -a 0 - -t 30.0406 -s 111 -d 110 -p tcp -e 1000 -i 251 -a 0 - -t 30.0406 -s 211 -d 210 -p tcp -e 1000 -i 234 -a 0 h -t 30.0406 -s 111 -d 110 -p tcp -e 1000 -i 251 -a 0 h -t 30.0406 -s 211 -d 210 -p tcp -e 1000 -i 234 -a 0 r -t 30.0408 -s 112 -d 111 -p tcp -e 1000 -i 251 -a 0 r -t 30.0408 -s 212 -d 211 -p tcp -e 1000 -i 234 -a 0 r -t 30.0408 -s 312 -d 311 -p tcp -e 1000 -i 211 -a 0 - -t 30.0412 -s 112 -d 111 -p tcp -e 1000 -i 254 -a 0 h -t 30.0412 -s 112 -d 111 -p tcp -e 1000 -i 254 -a 0 + -t 30.0414 -s 110 -d 111 -p ack -e 40 -i 258 -a 7 + -t 30.0414 -s 111 -d 110 -p tcp -e 1000 -i 252 -a 0 - -t 30.0414 -s 110 -d 111 -p ack -e 40 -i 258 -a 7 h -t 30.0414 -s 110 -d 111 -p ack -e 40 -i 258 -a 7 r -t 30.0414 -s 107 -d 110 -p ack -e 40 -i 258 -a 7 - -t 30.0415 -s 311 -d 310 -p tcp -e 1000 -i 211 -a 0 h -t 30.0415 -s 311 -d 310 -p tcp -e 1000 -i 211 -a 0 r -t 30.0416 -s 112 -d 111 -p tcp -e 1000 -i 252 -a 0 - -t 30.042 -s 112 -d 111 -p tcp -e 1000 -i 255 -a 0 h -t 30.042 -s 112 -d 111 -p tcp -e 1000 -i 255 -a 0 + -t 30.0422 -s 111 -d 110 -p tcp -e 1000 -i 253 -a 0 r -t 30.0424 -s 112 -d 111 -p tcp -e 1000 -i 253 -a 0 - -t 30.0428 -s 112 -d 111 -p tcp -e 1000 -i 256 -a 0 h -t 30.0428 -s 112 -d 111 -p tcp -e 1000 -i 256 -a 0 + -t 30.043 -s 111 -d 110 -p tcp -e 1000 -i 254 -a 0 r -t 30.0432 -s 112 -d 111 -p tcp -e 1000 -i 254 -a 0 - -t 30.0436 -s 112 -d 111 -p tcp -e 1000 -i 257 -a 0 h -t 30.0436 -s 112 -d 111 -p tcp -e 1000 -i 257 -a 0 + -t 30.0438 -s 111 -d 110 -p tcp -e 1000 -i 255 -a 0 r -t 30.044 -s 112 -d 111 -p tcp -e 1000 -i 255 -a 0 + -t 30.0446 -s 111 -d 110 -p tcp -e 1000 -i 256 -a 0 r -t 30.0448 -s 112 -d 111 -p tcp -e 1000 -i 256 -a 0 + -t 30.0454 -s 111 -d 110 -p tcp -e 1000 -i 257 -a 0 r -t 30.0456 -s 112 -d 111 -p tcp -e 1000 -i 257 -a 0 + -t 30.0486 -s 209 -d 210 -p ack -e 40 -i 235 -a 9 + -t 30.0486 -s 309 -d 310 -p ack -e 40 -i 212 -a 9 - -t 30.0486 -s 209 -d 210 -p ack -e 40 -i 235 -a 9 - -t 30.0486 -s 309 -d 310 -p ack -e 40 -i 212 -a 9 h -t 30.0486 -s 209 -d 210 -p ack -e 40 -i 235 -a 9 h -t 30.0486 -s 309 -d 310 -p ack -e 40 -i 212 -a 9 + -t 30.0496 -s 210 -d 211 -p ack -e 40 -i 235 -a 9 + -t 30.0496 -s 310 -d 311 -p ack -e 40 -i 212 -a 9 - -t 30.0496 -s 210 -d 211 -p ack -e 40 -i 235 -a 9 - -t 30.0496 -s 310 -d 311 -p ack -e 40 -i 212 -a 9 h -t 30.0496 -s 210 -d 211 -p ack -e 40 -i 235 -a 9 h -t 30.0496 -s 310 -d 311 -p ack -e 40 -i 212 -a 9 r -t 30.0496 -s 209 -d 210 -p ack -e 40 -i 235 -a 9 r -t 30.0496 -s 309 -d 310 -p ack -e 40 -i 212 -a 9 - -t 30.0506 -s 111 -d 110 -p tcp -e 1000 -i 252 -a 0 h -t 30.0506 -s 111 -d 110 -p tcp -e 1000 -i 252 -a 0 + -t 30.0588 -s 210 -d 209 -p tcp -e 1000 -i 231 -a 9 - -t 30.0588 -s 210 -d 209 -p tcp -e 1000 -i 231 -a 9 h -t 30.0588 -s 210 -d 209 -p tcp -e 1000 -i 231 -a 9 r -t 30.0588 -s 211 -d 210 -p tcp -e 1000 -i 231 -a 9 + -t 30.059 -s 212 -d 211 -p tcp -e 1000 -i 236 -a 9 - -t 30.059 -s 212 -d 211 -p tcp -e 1000 -i 236 -a 9 h -t 30.059 -s 212 -d 211 -p tcp -e 1000 -i 236 -a 9 + -t 30.0594 -s 112 -d 111 -p tcp -e 1000 -i 259 -a 4 + -t 30.0594 -s 112 -d 111 -p tcp -e 1000 -i 260 -a 4 + -t 30.0594 -s 112 -d 111 -p tcp -e 1000 -i 261 -a 4 + -t 30.0594 -s 112 -d 111 -p tcp -e 1000 -i 262 -a 4 + -t 30.0594 -s 112 -d 111 -p tcp -e 1000 -i 263 -a 4 + -t 30.0594 -s 112 -d 111 -p tcp -e 1000 -i 264 -a 4 + -t 30.0594 -s 112 -d 111 -p tcp -e 1000 -i 265 -a 4 + -t 30.0594 -s 112 -d 111 -p tcp -e 1000 -i 266 -a 4 + -t 30.0594 -s 212 -d 211 -p tcp -e 1000 -i 237 -a 4 + -t 30.0594 -s 312 -d 311 -p tcp -e 1000 -i 213 -a 4 - -t 30.0594 -s 112 -d 111 -p tcp -e 1000 -i 259 -a 4 - -t 30.0594 -s 312 -d 311 -p tcp -e 1000 -i 213 -a 4 h -t 30.0594 -s 112 -d 111 -p tcp -e 1000 -i 259 -a 4 h -t 30.0594 -s 312 -d 311 -p tcp -e 1000 -i 213 -a 4 - -t 30.0598 -s 212 -d 211 -p tcp -e 1000 -i 237 -a 4 h -t 30.0598 -s 212 -d 211 -p tcp -e 1000 -i 237 -a 4 - -t 30.0602 -s 112 -d 111 -p tcp -e 1000 -i 260 -a 4 h -t 30.0602 -s 112 -d 111 -p tcp -e 1000 -i 260 -a 4 - -t 30.0606 -s 111 -d 110 -p tcp -e 1000 -i 253 -a 0 h -t 30.0606 -s 111 -d 110 -p tcp -e 1000 -i 253 -a 0 + -t 30.0608 -s 211 -d 210 -p tcp -e 1000 -i 236 -a 9 - -t 30.0608 -s 211 -d 210 -p tcp -e 1000 -i 236 -a 9 h -t 30.0608 -s 211 -d 210 -p tcp -e 1000 -i 236 -a 9 r -t 30.0608 -s 210 -d 209 -p tcp -e 1000 -i 231 -a 9 - -t 30.061 -s 112 -d 111 -p tcp -e 1000 -i 261 -a 4 h -t 30.061 -s 112 -d 111 -p tcp -e 1000 -i 261 -a 4 r -t 30.061 -s 212 -d 211 -p tcp -e 1000 -i 236 -a 9 + -t 30.0612 -s 111 -d 110 -p tcp -e 1000 -i 259 -a 4 + -t 30.0612 -s 311 -d 310 -p tcp -e 1000 -i 213 -a 4 - -t 30.0612 -s 311 -d 310 -p tcp -e 1000 -i 213 -a 4 h -t 30.0612 -s 311 -d 310 -p tcp -e 1000 -i 213 -a 4 r -t 30.0614 -s 112 -d 111 -p tcp -e 1000 -i 259 -a 4 r -t 30.0614 -s 312 -d 311 -p tcp -e 1000 -i 213 -a 4 + -t 30.0616 -s 211 -d 210 -p tcp -e 1000 -i 237 -a 4 + -t 30.0618 -s 111 -d 112 -p ack -e 40 -i 245 -a 9 - -t 30.0618 -s 111 -d 112 -p ack -e 40 -i 245 -a 9 - -t 30.0618 -s 112 -d 111 -p tcp -e 1000 -i 262 -a 4 h -t 30.0618 -s 111 -d 112 -p ack -e 40 -i 245 -a 9 h -t 30.0618 -s 112 -d 111 -p tcp -e 1000 -i 262 -a 4 r -t 30.0618 -s 110 -d 111 -p ack -e 40 -i 245 -a 9 r -t 30.0618 -s 212 -d 211 -p tcp -e 1000 -i 237 -a 4 + -t 30.062 -s 111 -d 110 -p tcp -e 1000 -i 260 -a 4 r -t 30.0622 -s 112 -d 111 -p tcp -e 1000 -i 260 -a 4 - -t 30.0626 -s 112 -d 111 -p tcp -e 1000 -i 263 -a 4 h -t 30.0626 -s 112 -d 111 -p tcp -e 1000 -i 263 -a 4 + -t 30.0628 -s 111 -d 110 -p tcp -e 1000 -i 261 -a 4 r -t 30.0628 -s 111 -d 112 -p ack -e 40 -i 245 -a 9 + -t 30.0629 -s 112 -d 111 -p tcp -e 1000 -i 267 -a 9 + -t 30.0629 -s 112 -d 111 -p tcp -e 1000 -i 268 -a 9 + -t 30.0629 -s 112 -d 111 -p tcp -e 1000 -i 269 -a 9 r -t 30.063 -s 112 -d 111 -p tcp -e 1000 -i 261 -a 4 - -t 30.0634 -s 112 -d 111 -p tcp -e 1000 -i 264 -a 4 h -t 30.0634 -s 112 -d 111 -p tcp -e 1000 -i 264 -a 4 + -t 30.0636 -s 111 -d 110 -p tcp -e 1000 -i 262 -a 4 r -t 30.0638 -s 112 -d 111 -p tcp -e 1000 -i 262 -a 4 - -t 30.0642 -s 112 -d 111 -p tcp -e 1000 -i 265 -a 4 h -t 30.0642 -s 112 -d 111 -p tcp -e 1000 -i 265 -a 4 + -t 30.0644 -s 111 -d 110 -p tcp -e 1000 -i 263 -a 4 r -t 30.0646 -s 112 -d 111 -p tcp -e 1000 -i 263 -a 4 - -t 30.065 -s 112 -d 111 -p tcp -e 1000 -i 266 -a 4 h -t 30.065 -s 112 -d 111 -p tcp -e 1000 -i 266 -a 4 + -t 30.0652 -s 111 -d 110 -p tcp -e 1000 -i 264 -a 4 d -t 30.0652 -s 111 -d 110 -p tcp -e 1000 -i 264 -a 4 - -t 30.0658 -s 112 -d 111 -p tcp -e 1000 -i 267 -a 9 h -t 30.0658 -s 112 -d 111 -p tcp -e 1000 -i 267 -a 9 + -t 30.066 -s 111 -d 110 -p tcp -e 1000 -i 265 -a 4 d -t 30.066 -s 111 -d 110 -p tcp -e 1000 -i 265 -a 4 - -t 30.0666 -s 112 -d 111 -p tcp -e 1000 -i 268 -a 9 h -t 30.0666 -s 112 -d 111 -p tcp -e 1000 -i 268 -a 9 + -t 30.0668 -s 111 -d 110 -p tcp -e 1000 -i 266 -a 4 d -t 30.0668 -s 111 -d 110 -p tcp -e 1000 -i 266 -a 4 - -t 30.0674 -s 112 -d 111 -p tcp -e 1000 -i 269 -a 9 h -t 30.0674 -s 112 -d 111 -p tcp -e 1000 -i 269 -a 9 + -t 30.0676 -s 111 -d 110 -p tcp -e 1000 -i 267 -a 9 d -t 30.0676 -s 111 -d 110 -p tcp -e 1000 -i 267 -a 9 + -t 30.0684 -s 111 -d 110 -p tcp -e 1000 -i 268 -a 9 d -t 30.0684 -s 111 -d 110 -p tcp -e 1000 -i 268 -a 9 + -t 30.0692 -s 111 -d 110 -p tcp -e 1000 -i 269 -a 9 d -t 30.0692 -s 111 -d 110 -p tcp -e 1000 -i 269 -a 9 + -t 30.07 -s 311 -d 312 -p ack -e 40 -i 204 -a 2 - -t 30.07 -s 311 -d 312 -p ack -e 40 -i 204 -a 2 h -t 30.07 -s 311 -d 312 -p ack -e 40 -i 204 -a 2 r -t 30.07 -s 310 -d 311 -p ack -e 40 -i 204 -a 2 - -t 30.0706 -s 111 -d 110 -p tcp -e 1000 -i 254 -a 0 h -t 30.0706 -s 111 -d 110 -p tcp -e 1000 -i 254 -a 0 - -t 30.0708 -s 211 -d 210 -p tcp -e 1000 -i 237 -a 4 h -t 30.0708 -s 211 -d 210 -p tcp -e 1000 -i 237 -a 4 r -t 30.071 -s 311 -d 312 -p ack -e 40 -i 204 -a 2 + -t 30.0711 -s 312 -d 311 -p tcp -e 1000 -i 214 -a 2 + -t 30.0711 -s 312 -d 311 -p tcp -e 1000 -i 215 -a 2 + -t 30.0711 -s 312 -d 311 -p tcp -e 1000 -i 216 -a 2 - -t 30.0711 -s 312 -d 311 -p tcp -e 1000 -i 214 -a 2 h -t 30.0711 -s 312 -d 311 -p tcp -e 1000 -i 214 -a 2 - -t 30.0719 -s 312 -d 311 -p tcp -e 1000 -i 215 -a 2 h -t 30.0719 -s 312 -d 311 -p tcp -e 1000 -i 215 -a 2 - -t 30.0727 -s 312 -d 311 -p tcp -e 1000 -i 216 -a 2 h -t 30.0727 -s 312 -d 311 -p tcp -e 1000 -i 216 -a 2 + -t 30.0729 -s 311 -d 310 -p tcp -e 1000 -i 214 -a 2 - -t 30.0729 -s 311 -d 310 -p tcp -e 1000 -i 214 -a 2 h -t 30.0729 -s 311 -d 310 -p tcp -e 1000 -i 214 -a 2 r -t 30.0731 -s 312 -d 311 -p tcp -e 1000 -i 214 -a 2 + -t 30.0737 -s 311 -d 310 -p tcp -e 1000 -i 215 -a 2 r -t 30.0739 -s 312 -d 311 -p tcp -e 1000 -i 215 -a 2 + -t 30.0745 -s 311 -d 310 -p tcp -e 1000 -i 216 -a 2 r -t 30.0747 -s 312 -d 311 -p tcp -e 1000 -i 216 -a 2 - -t 30.0806 -s 111 -d 110 -p tcp -e 1000 -i 255 -a 0 h -t 30.0806 -s 111 -d 110 -p tcp -e 1000 -i 255 -a 0 + -t 30.0818 -s 111 -d 112 -p ack -e 40 -i 246 -a 9 + -t 30.0818 -s 211 -d 212 -p ack -e 40 -i 232 -a 7 + -t 30.0818 -s 311 -d 312 -p ack -e 40 -i 205 -a 7 - -t 30.0818 -s 111 -d 112 -p ack -e 40 -i 246 -a 9 - -t 30.0818 -s 211 -d 212 -p ack -e 40 -i 232 -a 7 - -t 30.0818 -s 311 -d 312 -p ack -e 40 -i 205 -a 7 h -t 30.0818 -s 111 -d 112 -p ack -e 40 -i 246 -a 9 h -t 30.0818 -s 211 -d 212 -p ack -e 40 -i 232 -a 7 h -t 30.0818 -s 311 -d 312 -p ack -e 40 -i 205 -a 7 r -t 30.0818 -s 110 -d 111 -p ack -e 40 -i 246 -a 9 r -t 30.0818 -s 210 -d 211 -p ack -e 40 -i 232 -a 7 r -t 30.0818 -s 310 -d 311 -p ack -e 40 -i 205 -a 7 r -t 30.0828 -s 111 -d 112 -p ack -e 40 -i 246 -a 9 r -t 30.0828 -s 211 -d 212 -p ack -e 40 -i 232 -a 7 r -t 30.0828 -s 311 -d 312 -p ack -e 40 -i 205 -a 7 + -t 30.0829 -s 212 -d 211 -p tcp -e 1000 -i 238 -a 7 + -t 30.0829 -s 212 -d 211 -p tcp -e 1000 -i 239 -a 7 + -t 30.0829 -s 312 -d 311 -p tcp -e 1000 -i 217 -a 7 + -t 30.0829 -s 312 -d 311 -p tcp -e 1000 -i 218 -a 7 - -t 30.0829 -s 212 -d 211 -p tcp -e 1000 -i 238 -a 7 - -t 30.0829 -s 311 -d 310 -p tcp -e 1000 -i 215 -a 2 - -t 30.0829 -s 312 -d 311 -p tcp -e 1000 -i 217 -a 7 h -t 30.0829 -s 212 -d 211 -p tcp -e 1000 -i 238 -a 7 h -t 30.0829 -s 311 -d 310 -p tcp -e 1000 -i 215 -a 2 h -t 30.0829 -s 312 -d 311 -p tcp -e 1000 -i 217 -a 7 - -t 30.0837 -s 212 -d 211 -p tcp -e 1000 -i 239 -a 7 - -t 30.0837 -s 312 -d 311 -p tcp -e 1000 -i 218 -a 7 h -t 30.0837 -s 212 -d 211 -p tcp -e 1000 -i 239 -a 7 h -t 30.0837 -s 312 -d 311 -p tcp -e 1000 -i 218 -a 7 + -t 30.0847 -s 211 -d 210 -p tcp -e 1000 -i 238 -a 7 + -t 30.0847 -s 311 -d 310 -p tcp -e 1000 -i 217 -a 7 - -t 30.0847 -s 211 -d 210 -p tcp -e 1000 -i 238 -a 7 h -t 30.0847 -s 211 -d 210 -p tcp -e 1000 -i 238 -a 7 r -t 30.0849 -s 212 -d 211 -p tcp -e 1000 -i 238 -a 7 r -t 30.0849 -s 312 -d 311 -p tcp -e 1000 -i 217 -a 7 + -t 30.0855 -s 211 -d 210 -p tcp -e 1000 -i 239 -a 7 + -t 30.0855 -s 311 -d 310 -p tcp -e 1000 -i 218 -a 7 r -t 30.0857 -s 212 -d 211 -p tcp -e 1000 -i 239 -a 7 r -t 30.0857 -s 312 -d 311 -p tcp -e 1000 -i 218 -a 7 - -t 30.0906 -s 111 -d 110 -p tcp -e 1000 -i 256 -a 0 h -t 30.0906 -s 111 -d 110 -p tcp -e 1000 -i 256 -a 0 + -t 30.0924 -s 207 -d 210 -p ack -e 40 -i 240 -a 7 - -t 30.0924 -s 207 -d 210 -p ack -e 40 -i 240 -a 7 h -t 30.0924 -s 207 -d 210 -p ack -e 40 -i 240 -a 7 - -t 30.0929 -s 311 -d 310 -p tcp -e 1000 -i 216 -a 2 h -t 30.0929 -s 311 -d 310 -p tcp -e 1000 -i 216 -a 2 r -t 30.0934 -s 207 -d 210 -p ack -e 40 -i 240 -a 7 + -t 30.0935 -s 210 -d 211 -p ack -e 40 -i 240 -a 7 - -t 30.0935 -s 210 -d 211 -p ack -e 40 -i 240 -a 7 h -t 30.0935 -s 210 -d 211 -p ack -e 40 -i 240 -a 7 - -t 30.0947 -s 211 -d 210 -p tcp -e 1000 -i 239 -a 7 h -t 30.0947 -s 211 -d 210 -p tcp -e 1000 -i 239 -a 7 + -t 30.1001 -s 311 -d 312 -p ack -e 40 -i 206 -a 3 - -t 30.1001 -s 311 -d 312 -p ack -e 40 -i 206 -a 3 h -t 30.1001 -s 311 -d 312 -p ack -e 40 -i 206 -a 3 r -t 30.1001 -s 310 -d 311 -p ack -e 40 -i 206 -a 3 - -t 30.1006 -s 111 -d 110 -p tcp -e 1000 -i 257 -a 0 h -t 30.1006 -s 111 -d 110 -p tcp -e 1000 -i 257 -a 0 r -t 30.1011 -s 311 -d 312 -p ack -e 40 -i 206 -a 3 + -t 30.1012 -s 312 -d 311 -p tcp -e 1000 -i 219 -a 3 + -t 30.1012 -s 312 -d 311 -p tcp -e 1000 -i 220 -a 3 + -t 30.1012 -s 312 -d 311 -p tcp -e 1000 -i 221 -a 3 - -t 30.1012 -s 312 -d 311 -p tcp -e 1000 -i 219 -a 3 h -t 30.1012 -s 312 -d 311 -p tcp -e 1000 -i 219 -a 3 + -t 30.1018 -s 111 -d 112 -p ack -e 40 -i 250 -a 9 - -t 30.1018 -s 111 -d 112 -p ack -e 40 -i 250 -a 9 h -t 30.1018 -s 111 -d 112 -p ack -e 40 -i 250 -a 9 r -t 30.1018 -s 110 -d 111 -p ack -e 40 -i 250 -a 9 - -t 30.102 -s 312 -d 311 -p tcp -e 1000 -i 220 -a 3 h -t 30.102 -s 312 -d 311 -p tcp -e 1000 -i 220 -a 3 + -t 30.1026 -s 210 -d 207 -p tcp -e 1000 -i 233 -a 7 - -t 30.1026 -s 210 -d 207 -p tcp -e 1000 -i 233 -a 7 h -t 30.1026 -s 210 -d 207 -p tcp -e 1000 -i 233 -a 7 r -t 30.1026 -s 211 -d 210 -p tcp -e 1000 -i 233 -a 7 - -t 30.1028 -s 312 -d 311 -p tcp -e 1000 -i 221 -a 3 h -t 30.1028 -s 312 -d 311 -p tcp -e 1000 -i 221 -a 3 r -t 30.1028 -s 111 -d 112 -p ack -e 40 -i 250 -a 9 - -t 30.1029 -s 311 -d 310 -p tcp -e 1000 -i 217 -a 7 h -t 30.1029 -s 311 -d 310 -p tcp -e 1000 -i 217 -a 7 + -t 30.103 -s 311 -d 310 -p tcp -e 1000 -i 219 -a 3 r -t 30.1032 -s 312 -d 311 -p tcp -e 1000 -i 219 -a 3 + -t 30.1038 -s 311 -d 310 -p tcp -e 1000 -i 220 -a 3 r -t 30.104 -s 312 -d 311 -p tcp -e 1000 -i 220 -a 3 + -t 30.1046 -s 311 -d 310 -p tcp -e 1000 -i 221 -a 3 r -t 30.1046 -s 210 -d 207 -p tcp -e 1000 -i 233 -a 7 + -t 30.1047 -s 110 -d 107 -p tcp -e 1000 -i 247 -a 7 - -t 30.1047 -s 110 -d 107 -p tcp -e 1000 -i 247 -a 7 h -t 30.1047 -s 110 -d 107 -p tcp -e 1000 -i 247 -a 7 r -t 30.1047 -s 111 -d 110 -p tcp -e 1000 -i 247 -a 7 r -t 30.1048 -s 312 -d 311 -p tcp -e 1000 -i 221 -a 3 r -t 30.1067 -s 110 -d 107 -p tcp -e 1000 -i 247 -a 7 + -t 30.1104 -s 109 -d 110 -p ack -e 40 -i 270 -a 9 - -t 30.1104 -s 109 -d 110 -p ack -e 40 -i 270 -a 9 h -t 30.1104 -s 109 -d 110 -p ack -e 40 -i 270 -a 9 - -t 30.1106 -s 111 -d 110 -p tcp -e 1000 -i 259 -a 4 h -t 30.1106 -s 111 -d 110 -p tcp -e 1000 -i 259 -a 4 + -t 30.1114 -s 110 -d 111 -p ack -e 40 -i 270 -a 9 - -t 30.1114 -s 110 -d 111 -p ack -e 40 -i 270 -a 9 h -t 30.1114 -s 110 -d 111 -p ack -e 40 -i 270 -a 9 r -t 30.1114 -s 109 -d 110 -p ack -e 40 -i 270 -a 9 - -t 30.1129 -s 311 -d 310 -p tcp -e 1000 -i 218 -a 7 h -t 30.1129 -s 311 -d 310 -p tcp -e 1000 -i 218 -a 7 + -t 30.1147 -s 110 -d 107 -p tcp -e 1000 -i 248 -a 7 - -t 30.1147 -s 110 -d 107 -p tcp -e 1000 -i 248 -a 7 h -t 30.1147 -s 110 -d 107 -p tcp -e 1000 -i 248 -a 7 r -t 30.1147 -s 111 -d 110 -p tcp -e 1000 -i 248 -a 7 + -t 30.1165 -s 107 -d 110 -p ack -e 40 -i 271 -a 7 - -t 30.1165 -s 107 -d 110 -p ack -e 40 -i 271 -a 7 h -t 30.1165 -s 107 -d 110 -p ack -e 40 -i 271 -a 7 r -t 30.1167 -s 110 -d 107 -p tcp -e 1000 -i 248 -a 7 + -t 30.1175 -s 110 -d 111 -p ack -e 40 -i 271 -a 7 - -t 30.1175 -s 110 -d 111 -p ack -e 40 -i 271 -a 7 h -t 30.1175 -s 110 -d 111 -p ack -e 40 -i 271 -a 7 r -t 30.1175 -s 107 -d 110 -p ack -e 40 -i 271 -a 7 - -t 30.1206 -s 111 -d 110 -p tcp -e 1000 -i 260 -a 4 h -t 30.1206 -s 111 -d 110 -p tcp -e 1000 -i 260 -a 4 + -t 30.1215 -s 310 -d 306 -p tcp -e 1000 -i 207 -a 6 - -t 30.1215 -s 310 -d 306 -p tcp -e 1000 -i 207 -a 6 h -t 30.1215 -s 310 -d 306 -p tcp -e 1000 -i 207 -a 6 r -t 30.1215 -s 311 -d 310 -p tcp -e 1000 -i 207 -a 6 - -t 30.1229 -s 311 -d 310 -p tcp -e 1000 -i 219 -a 3 h -t 30.1229 -s 311 -d 310 -p tcp -e 1000 -i 219 -a 3 r -t 30.1235 -s 310 -d 306 -p tcp -e 1000 -i 207 -a 6 + -t 30.1247 -s 110 -d 107 -p tcp -e 1000 -i 249 -a 7 - -t 30.1247 -s 110 -d 107 -p tcp -e 1000 -i 249 -a 7 h -t 30.1247 -s 110 -d 107 -p tcp -e 1000 -i 249 -a 7 r -t 30.1247 -s 111 -d 110 -p tcp -e 1000 -i 249 -a 7 r -t 30.1267 -s 110 -d 107 -p tcp -e 1000 -i 249 -a 7 + -t 30.1269 -s 311 -d 312 -p ack -e 40 -i 210 -a 8 - -t 30.1269 -s 311 -d 312 -p ack -e 40 -i 210 -a 8 h -t 30.1269 -s 311 -d 312 -p ack -e 40 -i 210 -a 8 r -t 30.1269 -s 310 -d 311 -p ack -e 40 -i 210 -a 8 r -t 30.1279 -s 311 -d 312 -p ack -e 40 -i 210 -a 8 + -t 30.128 -s 312 -d 311 -p tcp -e 1000 -i 222 -a 8 + -t 30.128 -s 312 -d 311 -p tcp -e 1000 -i 223 -a 8 + -t 30.128 -s 312 -d 311 -p tcp -e 1000 -i 224 -a 8 - -t 30.128 -s 312 -d 311 -p tcp -e 1000 -i 222 -a 8 h -t 30.128 -s 312 -d 311 -p tcp -e 1000 -i 222 -a 8 - -t 30.1288 -s 312 -d 311 -p tcp -e 1000 -i 223 -a 8 h -t 30.1288 -s 312 -d 311 -p tcp -e 1000 -i 223 -a 8 - -t 30.1296 -s 312 -d 311 -p tcp -e 1000 -i 224 -a 8 h -t 30.1296 -s 312 -d 311 -p tcp -e 1000 -i 224 -a 8 + -t 30.1298 -s 311 -d 310 -p tcp -e 1000 -i 222 -a 8 r -t 30.13 -s 312 -d 311 -p tcp -e 1000 -i 222 -a 8 + -t 30.1306 -s 311 -d 310 -p tcp -e 1000 -i 223 -a 8 - -t 30.1306 -s 111 -d 110 -p tcp -e 1000 -i 261 -a 4 h -t 30.1306 -s 111 -d 110 -p tcp -e 1000 -i 261 -a 4 r -t 30.1308 -s 312 -d 311 -p tcp -e 1000 -i 223 -a 8 + -t 30.1314 -s 311 -d 310 -p tcp -e 1000 -i 224 -a 8 + -t 30.1315 -s 310 -d 306 -p tcp -e 1000 -i 208 -a 6 - -t 30.1315 -s 310 -d 306 -p tcp -e 1000 -i 208 -a 6 h -t 30.1315 -s 310 -d 306 -p tcp -e 1000 -i 208 -a 6 r -t 30.1315 -s 311 -d 310 -p tcp -e 1000 -i 208 -a 6 r -t 30.1316 -s 312 -d 311 -p tcp -e 1000 -i 224 -a 8 - -t 30.1329 -s 311 -d 310 -p tcp -e 1000 -i 220 -a 3 h -t 30.1329 -s 311 -d 310 -p tcp -e 1000 -i 220 -a 3 + -t 30.1333 -s 306 -d 310 -p ack -e 40 -i 225 -a 6 - -t 30.1333 -s 306 -d 310 -p ack -e 40 -i 225 -a 6 h -t 30.1333 -s 306 -d 310 -p ack -e 40 -i 225 -a 6 r -t 30.1335 -s 310 -d 306 -p tcp -e 1000 -i 208 -a 6 + -t 30.1343 -s 310 -d 311 -p ack -e 40 -i 225 -a 6 - -t 30.1343 -s 310 -d 311 -p ack -e 40 -i 225 -a 6 h -t 30.1343 -s 310 -d 311 -p ack -e 40 -i 225 -a 6 r -t 30.1343 -s 306 -d 310 -p ack -e 40 -i 225 -a 6 - -t 30.1406 -s 111 -d 110 -p tcp -e 1000 -i 262 -a 4 h -t 30.1406 -s 111 -d 110 -p tcp -e 1000 -i 262 -a 4 + -t 30.1415 -s 310 -d 306 -p tcp -e 1000 -i 209 -a 6 - -t 30.1415 -s 310 -d 306 -p tcp -e 1000 -i 209 -a 6 h -t 30.1415 -s 310 -d 306 -p tcp -e 1000 -i 209 -a 6 r -t 30.1415 -s 311 -d 310 -p tcp -e 1000 -i 209 -a 6 + -t 30.1418 -s 111 -d 112 -p ack -e 40 -i 258 -a 7 - -t 30.1418 -s 111 -d 112 -p ack -e 40 -i 258 -a 7 h -t 30.1418 -s 111 -d 112 -p ack -e 40 -i 258 -a 7 r -t 30.1418 -s 110 -d 111 -p ack -e 40 -i 258 -a 7 r -t 30.1428 -s 111 -d 112 -p ack -e 40 -i 258 -a 7 - -t 30.1429 -s 311 -d 310 -p tcp -e 1000 -i 221 -a 3 h -t 30.1429 -s 311 -d 310 -p tcp -e 1000 -i 221 -a 3 r -t 30.1435 -s 310 -d 306 -p tcp -e 1000 -i 209 -a 6 + -t 30.15 -s 211 -d 212 -p ack -e 40 -i 235 -a 9 + -t 30.15 -s 311 -d 312 -p ack -e 40 -i 212 -a 9 - -t 30.15 -s 211 -d 212 -p ack -e 40 -i 235 -a 9 - -t 30.15 -s 311 -d 312 -p ack -e 40 -i 212 -a 9 h -t 30.15 -s 211 -d 212 -p ack -e 40 -i 235 -a 9 h -t 30.15 -s 311 -d 312 -p ack -e 40 -i 212 -a 9 r -t 30.15 -s 210 -d 211 -p ack -e 40 -i 235 -a 9 r -t 30.15 -s 310 -d 311 -p ack -e 40 -i 212 -a 9 + -t 30.1506 -s 110 -d 100 -p tcp -e 1000 -i 251 -a 0 + -t 30.1506 -s 210 -d 200 -p tcp -e 1000 -i 234 -a 0 - -t 30.1506 -s 110 -d 100 -p tcp -e 1000 -i 251 -a 0 - -t 30.1506 -s 111 -d 110 -p tcp -e 1000 -i 263 -a 4 - -t 30.1506 -s 210 -d 200 -p tcp -e 1000 -i 234 -a 0 h -t 30.1506 -s 110 -d 100 -p tcp -e 1000 -i 251 -a 0 h -t 30.1506 -s 111 -d 110 -p tcp -e 1000 -i 263 -a 4 h -t 30.1506 -s 210 -d 200 -p tcp -e 1000 -i 234 -a 0 r -t 30.1506 -s 111 -d 110 -p tcp -e 1000 -i 251 -a 0 r -t 30.1506 -s 211 -d 210 -p tcp -e 1000 -i 234 -a 0 + -t 30.1508 -s 212 -d 211 -p tcp -e 1000 -i 241 -a 0 - -t 30.1508 -s 212 -d 211 -p tcp -e 1000 -i 241 -a 0 h -t 30.1508 -s 212 -d 211 -p tcp -e 1000 -i 241 -a 0 r -t 30.151 -s 211 -d 212 -p ack -e 40 -i 235 -a 9 r -t 30.151 -s 311 -d 312 -p ack -e 40 -i 212 -a 9 + -t 30.1511 -s 212 -d 211 -p tcp -e 1000 -i 242 -a 9 + -t 30.1511 -s 212 -d 211 -p tcp -e 1000 -i 243 -a 9 + -t 30.1511 -s 312 -d 311 -p tcp -e 1000 -i 226 -a 9 + -t 30.1511 -s 312 -d 311 -p tcp -e 1000 -i 227 -a 9 - -t 30.1511 -s 312 -d 311 -p tcp -e 1000 -i 226 -a 9 h -t 30.1511 -s 312 -d 311 -p tcp -e 1000 -i 226 -a 9 + -t 30.1515 -s 310 -d 300 -p tcp -e 1000 -i 211 -a 0 - -t 30.1515 -s 310 -d 300 -p tcp -e 1000 -i 211 -a 0 h -t 30.1515 -s 310 -d 300 -p tcp -e 1000 -i 211 -a 0 r -t 30.1515 -s 311 -d 310 -p tcp -e 1000 -i 211 -a 0 - -t 30.1516 -s 212 -d 211 -p tcp -e 1000 -i 242 -a 9 h -t 30.1516 -s 212 -d 211 -p tcp -e 1000 -i 242 -a 9 - -t 30.1519 -s 312 -d 311 -p tcp -e 1000 -i 227 -a 9 h -t 30.1519 -s 312 -d 311 -p tcp -e 1000 -i 227 -a 9 - -t 30.1524 -s 212 -d 211 -p tcp -e 1000 -i 243 -a 9 h -t 30.1524 -s 212 -d 211 -p tcp -e 1000 -i 243 -a 9 + -t 30.1526 -s 211 -d 210 -p tcp -e 1000 -i 241 -a 0 - -t 30.1526 -s 211 -d 210 -p tcp -e 1000 -i 241 -a 0 h -t 30.1526 -s 211 -d 210 -p tcp -e 1000 -i 241 -a 0 r -t 30.1526 -s 110 -d 100 -p tcp -e 1000 -i 251 -a 0 r -t 30.1526 -s 210 -d 200 -p tcp -e 1000 -i 234 -a 0 r -t 30.1528 -s 212 -d 211 -p tcp -e 1000 -i 241 -a 0 + -t 30.1529 -s 311 -d 310 -p tcp -e 1000 -i 226 -a 9 - -t 30.1529 -s 311 -d 310 -p tcp -e 1000 -i 222 -a 8 h -t 30.1529 -s 311 -d 310 -p tcp -e 1000 -i 222 -a 8 r -t 30.1531 -s 312 -d 311 -p tcp -e 1000 -i 226 -a 9 + -t 30.1534 -s 211 -d 210 -p tcp -e 1000 -i 242 -a 9 r -t 30.1535 -s 310 -d 300 -p tcp -e 1000 -i 211 -a 0 r -t 30.1536 -s 212 -d 211 -p tcp -e 1000 -i 242 -a 9 + -t 30.1537 -s 311 -d 310 -p tcp -e 1000 -i 227 -a 9 r -t 30.1539 -s 312 -d 311 -p tcp -e 1000 -i 227 -a 9 + -t 30.1542 -s 211 -d 210 -p tcp -e 1000 -i 243 -a 9 r -t 30.1544 -s 212 -d 211 -p tcp -e 1000 -i 243 -a 9 + -t 30.1606 -s 110 -d 100 -p tcp -e 1000 -i 252 -a 0 + -t 30.1606 -s 209 -d 210 -p ack -e 40 -i 244 -a 9 - -t 30.1606 -s 110 -d 100 -p tcp -e 1000 -i 252 -a 0 - -t 30.1606 -s 209 -d 210 -p ack -e 40 -i 244 -a 9 h -t 30.1606 -s 110 -d 100 -p tcp -e 1000 -i 252 -a 0 h -t 30.1606 -s 209 -d 210 -p ack -e 40 -i 244 -a 9 r -t 30.1606 -s 111 -d 110 -p tcp -e 1000 -i 252 -a 0 r -t 30.1616 -s 209 -d 210 -p ack -e 40 -i 244 -a 9 + -t 30.1617 -s 210 -d 211 -p ack -e 40 -i 244 -a 9 - -t 30.1617 -s 210 -d 211 -p ack -e 40 -i 244 -a 9 h -t 30.1617 -s 210 -d 211 -p ack -e 40 -i 244 -a 9 + -t 30.1624 -s 100 -d 110 -p ack -e 40 -i 272 -a 0 - -t 30.1624 -s 100 -d 110 -p ack -e 40 -i 272 -a 0 h -t 30.1624 -s 100 -d 110 -p ack -e 40 -i 272 -a 0 - -t 30.1626 -s 211 -d 210 -p tcp -e 1000 -i 242 -a 9 h -t 30.1626 -s 211 -d 210 -p tcp -e 1000 -i 242 -a 9 r -t 30.1626 -s 110 -d 100 -p tcp -e 1000 -i 252 -a 0 - -t 30.1629 -s 311 -d 310 -p tcp -e 1000 -i 223 -a 8 h -t 30.1629 -s 311 -d 310 -p tcp -e 1000 -i 223 -a 8 + -t 30.1634 -s 110 -d 111 -p ack -e 40 -i 272 -a 0 - -t 30.1634 -s 110 -d 111 -p ack -e 40 -i 272 -a 0 h -t 30.1634 -s 110 -d 111 -p ack -e 40 -i 272 -a 0 r -t 30.1634 -s 100 -d 110 -p ack -e 40 -i 272 -a 0 + -t 30.1706 -s 110 -d 100 -p tcp -e 1000 -i 253 -a 0 - -t 30.1706 -s 110 -d 100 -p tcp -e 1000 -i 253 -a 0 h -t 30.1706 -s 110 -d 100 -p tcp -e 1000 -i 253 -a 0 r -t 30.1706 -s 111 -d 110 -p tcp -e 1000 -i 253 -a 0 + -t 30.1708 -s 210 -d 209 -p tcp -e 1000 -i 236 -a 9 - -t 30.1708 -s 210 -d 209 -p tcp -e 1000 -i 236 -a 9 h -t 30.1708 -s 210 -d 209 -p tcp -e 1000 -i 236 -a 9 r -t 30.1708 -s 211 -d 210 -p tcp -e 1000 -i 236 -a 9 + -t 30.1712 -s 310 -d 304 -p tcp -e 1000 -i 213 -a 4 - -t 30.1712 -s 310 -d 304 -p tcp -e 1000 -i 213 -a 4 h -t 30.1712 -s 310 -d 304 -p tcp -e 1000 -i 213 -a 4 r -t 30.1712 -s 311 -d 310 -p tcp -e 1000 -i 213 -a 4 + -t 30.1714 -s 212 -d 211 -p tcp -e 1000 -i 245 -a 4 - -t 30.1714 -s 212 -d 211 -p tcp -e 1000 -i 245 -a 4 h -t 30.1714 -s 212 -d 211 -p tcp -e 1000 -i 245 -a 4 - -t 30.1726 -s 211 -d 210 -p tcp -e 1000 -i 243 -a 9 h -t 30.1726 -s 211 -d 210 -p tcp -e 1000 -i 243 -a 9 r -t 30.1726 -s 110 -d 100 -p tcp -e 1000 -i 253 -a 0 r -t 30.1728 -s 210 -d 209 -p tcp -e 1000 -i 236 -a 9 - -t 30.1729 -s 311 -d 310 -p tcp -e 1000 -i 224 -a 8 h -t 30.1729 -s 311 -d 310 -p tcp -e 1000 -i 224 -a 8 + -t 30.1732 -s 211 -d 210 -p tcp -e 1000 -i 245 -a 4 r -t 30.1732 -s 310 -d 304 -p tcp -e 1000 -i 213 -a 4 r -t 30.1734 -s 212 -d 211 -p tcp -e 1000 -i 245 -a 4 + -t 30.1806 -s 110 -d 100 -p tcp -e 1000 -i 254 -a 0 - -t 30.1806 -s 110 -d 100 -p tcp -e 1000 -i 254 -a 0 h -t 30.1806 -s 110 -d 100 -p tcp -e 1000 -i 254 -a 0 r -t 30.1806 -s 111 -d 110 -p tcp -e 1000 -i 254 -a 0 + -t 30.1808 -s 210 -d 204 -p tcp -e 1000 -i 237 -a 4 - -t 30.1808 -s 210 -d 204 -p tcp -e 1000 -i 237 -a 4 h -t 30.1808 -s 210 -d 204 -p tcp -e 1000 -i 237 -a 4 r -t 30.1808 -s 211 -d 210 -p tcp -e 1000 -i 237 -a 4 + -t 30.1824 -s 100 -d 110 -p ack -e 40 -i 273 -a 0 - -t 30.1824 -s 100 -d 110 -p ack -e 40 -i 273 -a 0 h -t 30.1824 -s 100 -d 110 -p ack -e 40 -i 273 -a 0 - -t 30.1826 -s 211 -d 210 -p tcp -e 1000 -i 245 -a 4 h -t 30.1826 -s 211 -d 210 -p tcp -e 1000 -i 245 -a 4 r -t 30.1826 -s 110 -d 100 -p tcp -e 1000 -i 254 -a 0 r -t 30.1828 -s 210 -d 204 -p tcp -e 1000 -i 237 -a 4 + -t 30.1829 -s 310 -d 302 -p tcp -e 1000 -i 214 -a 2 - -t 30.1829 -s 310 -d 302 -p tcp -e 1000 -i 214 -a 2 - -t 30.1829 -s 311 -d 310 -p tcp -e 1000 -i 226 -a 9 h -t 30.1829 -s 310 -d 302 -p tcp -e 1000 -i 214 -a 2 h -t 30.1829 -s 311 -d 310 -p tcp -e 1000 -i 226 -a 9 r -t 30.1829 -s 311 -d 310 -p tcp -e 1000 -i 214 -a 2 + -t 30.1834 -s 110 -d 111 -p ack -e 40 -i 273 -a 0 - -t 30.1834 -s 110 -d 111 -p ack -e 40 -i 273 -a 0 h -t 30.1834 -s 110 -d 111 -p ack -e 40 -i 273 -a 0 r -t 30.1834 -s 100 -d 110 -p ack -e 40 -i 273 -a 0 r -t 30.1849 -s 310 -d 302 -p tcp -e 1000 -i 214 -a 2 + -t 30.1906 -s 110 -d 100 -p tcp -e 1000 -i 255 -a 0 - -t 30.1906 -s 110 -d 100 -p tcp -e 1000 -i 255 -a 0 h -t 30.1906 -s 110 -d 100 -p tcp -e 1000 -i 255 -a 0 r -t 30.1906 -s 111 -d 110 -p tcp -e 1000 -i 255 -a 0 r -t 30.1926 -s 110 -d 100 -p tcp -e 1000 -i 255 -a 0 + -t 30.1929 -s 310 -d 302 -p tcp -e 1000 -i 215 -a 2 - -t 30.1929 -s 310 -d 302 -p tcp -e 1000 -i 215 -a 2 - -t 30.1929 -s 311 -d 310 -p tcp -e 1000 -i 227 -a 9 h -t 30.1929 -s 310 -d 302 -p tcp -e 1000 -i 215 -a 2 h -t 30.1929 -s 311 -d 310 -p tcp -e 1000 -i 227 -a 9 r -t 30.1929 -s 311 -d 310 -p tcp -e 1000 -i 215 -a 2 + -t 30.1939 -s 211 -d 212 -p ack -e 40 -i 240 -a 7 - -t 30.1939 -s 211 -d 212 -p ack -e 40 -i 240 -a 7 h -t 30.1939 -s 211 -d 212 -p ack -e 40 -i 240 -a 7 r -t 30.1939 -s 210 -d 211 -p ack -e 40 -i 240 -a 7 + -t 30.1947 -s 210 -d 207 -p tcp -e 1000 -i 238 -a 7 + -t 30.1947 -s 302 -d 310 -p ack -e 40 -i 228 -a 2 - -t 30.1947 -s 210 -d 207 -p tcp -e 1000 -i 238 -a 7 - -t 30.1947 -s 302 -d 310 -p ack -e 40 -i 228 -a 2 h -t 30.1947 -s 210 -d 207 -p tcp -e 1000 -i 238 -a 7 h -t 30.1947 -s 302 -d 310 -p ack -e 40 -i 228 -a 2 r -t 30.1947 -s 211 -d 210 -p tcp -e 1000 -i 238 -a 7 + -t 30.1949 -s 212 -d 211 -p tcp -e 1000 -i 246 -a 7 + -t 30.1949 -s 212 -d 211 -p tcp -e 1000 -i 247 -a 7 - -t 30.1949 -s 212 -d 211 -p tcp -e 1000 -i 246 -a 7 h -t 30.1949 -s 212 -d 211 -p tcp -e 1000 -i 246 -a 7 r -t 30.1949 -s 211 -d 212 -p ack -e 40 -i 240 -a 7 r -t 30.1949 -s 310 -d 302 -p tcp -e 1000 -i 215 -a 2 + -t 30.1957 -s 310 -d 311 -p ack -e 40 -i 228 -a 2 - -t 30.1957 -s 212 -d 211 -p tcp -e 1000 -i 247 -a 7 - -t 30.1957 -s 310 -d 311 -p ack -e 40 -i 228 -a 2 h -t 30.1957 -s 212 -d 211 -p tcp -e 1000 -i 247 -a 7 h -t 30.1957 -s 310 -d 311 -p ack -e 40 -i 228 -a 2 r -t 30.1957 -s 302 -d 310 -p ack -e 40 -i 228 -a 2 + -t 30.1965 -s 207 -d 210 -p ack -e 40 -i 248 -a 7 - -t 30.1965 -s 207 -d 210 -p ack -e 40 -i 248 -a 7 h -t 30.1965 -s 207 -d 210 -p ack -e 40 -i 248 -a 7 + -t 30.1967 -s 211 -d 210 -p tcp -e 1000 -i 246 -a 7 - -t 30.1967 -s 211 -d 210 -p tcp -e 1000 -i 246 -a 7 h -t 30.1967 -s 211 -d 210 -p tcp -e 1000 -i 246 -a 7 r -t 30.1967 -s 210 -d 207 -p tcp -e 1000 -i 238 -a 7 r -t 30.1969 -s 212 -d 211 -p tcp -e 1000 -i 246 -a 7 + -t 30.1975 -s 210 -d 211 -p ack -e 40 -i 248 -a 7 + -t 30.1975 -s 211 -d 210 -p tcp -e 1000 -i 247 -a 7 - -t 30.1975 -s 210 -d 211 -p ack -e 40 -i 248 -a 7 h -t 30.1975 -s 210 -d 211 -p ack -e 40 -i 248 -a 7 r -t 30.1975 -s 207 -d 210 -p ack -e 40 -i 248 -a 7 r -t 30.1977 -s 212 -d 211 -p tcp -e 1000 -i 247 -a 7 + -t 30.2006 -s 110 -d 100 -p tcp -e 1000 -i 256 -a 0 - -t 30.2006 -s 110 -d 100 -p tcp -e 1000 -i 256 -a 0 h -t 30.2006 -s 110 -d 100 -p tcp -e 1000 -i 256 -a 0 r -t 30.2006 -s 111 -d 110 -p tcp -e 1000 -i 256 -a 0 + -t 30.2024 -s 100 -d 110 -p ack -e 40 -i 274 -a 0 - -t 30.2024 -s 100 -d 110 -p ack -e 40 -i 274 -a 0 h -t 30.2024 -s 100 -d 110 -p ack -e 40 -i 274 -a 0 r -t 30.2026 -s 110 -d 100 -p tcp -e 1000 -i 256 -a 0 + -t 30.2029 -s 310 -d 302 -p tcp -e 1000 -i 216 -a 2 - -t 30.2029 -s 310 -d 302 -p tcp -e 1000 -i 216 -a 2 h -t 30.2029 -s 310 -d 302 -p tcp -e 1000 -i 216 -a 2 r -t 30.2029 -s 311 -d 310 -p tcp -e 1000 -i 216 -a 2 + -t 30.2034 -s 110 -d 111 -p ack -e 40 -i 274 -a 0 - -t 30.2034 -s 110 -d 111 -p ack -e 40 -i 274 -a 0 h -t 30.2034 -s 110 -d 111 -p ack -e 40 -i 274 -a 0 r -t 30.2034 -s 100 -d 110 -p ack -e 40 -i 274 -a 0 + -t 30.2047 -s 210 -d 207 -p tcp -e 1000 -i 239 -a 7 - -t 30.2047 -s 210 -d 207 -p tcp -e 1000 -i 239 -a 7 h -t 30.2047 -s 210 -d 207 -p tcp -e 1000 -i 239 -a 7 r -t 30.2047 -s 211 -d 210 -p tcp -e 1000 -i 239 -a 7 r -t 30.2049 -s 310 -d 302 -p tcp -e 1000 -i 216 -a 2 - -t 30.2067 -s 211 -d 210 -p tcp -e 1000 -i 247 -a 7 h -t 30.2067 -s 211 -d 210 -p tcp -e 1000 -i 247 -a 7 r -t 30.2067 -s 210 -d 207 -p tcp -e 1000 -i 239 -a 7 + -t 30.2106 -s 110 -d 100 -p tcp -e 1000 -i 257 -a 0 - -t 30.2106 -s 110 -d 100 -p tcp -e 1000 -i 257 -a 0 h -t 30.2106 -s 110 -d 100 -p tcp -e 1000 -i 257 -a 0 r -t 30.2106 -s 111 -d 110 -p tcp -e 1000 -i 257 -a 0 + -t 30.2118 -s 111 -d 112 -p ack -e 40 -i 270 -a 9 - -t 30.2118 -s 111 -d 112 -p ack -e 40 -i 270 -a 9 h -t 30.2118 -s 111 -d 112 -p ack -e 40 -i 270 -a 9 r -t 30.2118 -s 110 -d 111 -p ack -e 40 -i 270 -a 9 r -t 30.2126 -s 110 -d 100 -p tcp -e 1000 -i 257 -a 0 r -t 30.2128 -s 111 -d 112 -p ack -e 40 -i 270 -a 9 + -t 30.2129 -s 310 -d 307 -p tcp -e 1000 -i 217 -a 7 - -t 30.2129 -s 310 -d 307 -p tcp -e 1000 -i 217 -a 7 h -t 30.2129 -s 310 -d 307 -p tcp -e 1000 -i 217 -a 7 r -t 30.2129 -s 311 -d 310 -p tcp -e 1000 -i 217 -a 7 r -t 30.2149 -s 310 -d 307 -p tcp -e 1000 -i 217 -a 7 + -t 30.2179 -s 111 -d 112 -p ack -e 40 -i 271 -a 7 - -t 30.2179 -s 111 -d 112 -p ack -e 40 -i 271 -a 7 h -t 30.2179 -s 111 -d 112 -p ack -e 40 -i 271 -a 7 r -t 30.2179 -s 110 -d 111 -p ack -e 40 -i 271 -a 7 r -t 30.2189 -s 111 -d 112 -p ack -e 40 -i 271 -a 7 + -t 30.2206 -s 110 -d 104 -p tcp -e 1000 -i 259 -a 4 - -t 30.2206 -s 110 -d 104 -p tcp -e 1000 -i 259 -a 4 h -t 30.2206 -s 110 -d 104 -p tcp -e 1000 -i 259 -a 4 r -t 30.2206 -s 111 -d 110 -p tcp -e 1000 -i 259 -a 4 r -t 30.2226 -s 110 -d 104 -p tcp -e 1000 -i 259 -a 4 + -t 30.2229 -s 310 -d 307 -p tcp -e 1000 -i 218 -a 7 - -t 30.2229 -s 310 -d 307 -p tcp -e 1000 -i 218 -a 7 h -t 30.2229 -s 310 -d 307 -p tcp -e 1000 -i 218 -a 7 r -t 30.2229 -s 311 -d 310 -p tcp -e 1000 -i 218 -a 7 + -t 30.2247 -s 307 -d 310 -p ack -e 40 -i 229 -a 7 - -t 30.2247 -s 307 -d 310 -p ack -e 40 -i 229 -a 7 h -t 30.2247 -s 307 -d 310 -p ack -e 40 -i 229 -a 7 r -t 30.2249 -s 310 -d 307 -p tcp -e 1000 -i 218 -a 7 + -t 30.2257 -s 310 -d 311 -p ack -e 40 -i 229 -a 7 - -t 30.2257 -s 310 -d 311 -p ack -e 40 -i 229 -a 7 h -t 30.2257 -s 310 -d 311 -p ack -e 40 -i 229 -a 7 r -t 30.2257 -s 307 -d 310 -p ack -e 40 -i 229 -a 7 + -t 30.2265 -s 107 -d 110 -p ack -e 40 -i 275 -a 7 - -t 30.2265 -s 107 -d 110 -p ack -e 40 -i 275 -a 7 h -t 30.2265 -s 107 -d 110 -p ack -e 40 -i 275 -a 7 + -t 30.2275 -s 110 -d 111 -p ack -e 40 -i 275 -a 7 - -t 30.2275 -s 110 -d 111 -p ack -e 40 -i 275 -a 7 h -t 30.2275 -s 110 -d 111 -p ack -e 40 -i 275 -a 7 r -t 30.2275 -s 107 -d 110 -p ack -e 40 -i 275 -a 7 + -t 30.2306 -s 110 -d 104 -p tcp -e 1000 -i 260 -a 4 - -t 30.2306 -s 110 -d 104 -p tcp -e 1000 -i 260 -a 4 h -t 30.2306 -s 110 -d 104 -p tcp -e 1000 -i 260 -a 4 r -t 30.2306 -s 111 -d 110 -p tcp -e 1000 -i 260 -a 4 + -t 30.2324 -s 104 -d 110 -p ack -e 40 -i 276 -a 4 - -t 30.2324 -s 104 -d 110 -p ack -e 40 -i 276 -a 4 h -t 30.2324 -s 104 -d 110 -p ack -e 40 -i 276 -a 4 r -t 30.2326 -s 110 -d 104 -p tcp -e 1000 -i 260 -a 4 + -t 30.2329 -s 310 -d 303 -p tcp -e 1000 -i 219 -a 3 - -t 30.2329 -s 310 -d 303 -p tcp -e 1000 -i 219 -a 3 h -t 30.2329 -s 310 -d 303 -p tcp -e 1000 -i 219 -a 3 r -t 30.2329 -s 311 -d 310 -p tcp -e 1000 -i 219 -a 3 + -t 30.2334 -s 110 -d 111 -p ack -e 40 -i 276 -a 4 - -t 30.2334 -s 110 -d 111 -p ack -e 40 -i 276 -a 4 h -t 30.2334 -s 110 -d 111 -p ack -e 40 -i 276 -a 4 r -t 30.2334 -s 104 -d 110 -p ack -e 40 -i 276 -a 4 + -t 30.2347 -s 311 -d 312 -p ack -e 40 -i 225 -a 6 - -t 30.2347 -s 311 -d 312 -p ack -e 40 -i 225 -a 6 h -t 30.2347 -s 311 -d 312 -p ack -e 40 -i 225 -a 6 r -t 30.2347 -s 310 -d 311 -p ack -e 40 -i 225 -a 6 r -t 30.2349 -s 310 -d 303 -p tcp -e 1000 -i 219 -a 3 r -t 30.2357 -s 311 -d 312 -p ack -e 40 -i 225 -a 6 + -t 30.2406 -s 110 -d 104 -p tcp -e 1000 -i 261 -a 4 - -t 30.2406 -s 110 -d 104 -p tcp -e 1000 -i 261 -a 4 h -t 30.2406 -s 110 -d 104 -p tcp -e 1000 -i 261 -a 4 r -t 30.2406 -s 111 -d 110 -p tcp -e 1000 -i 261 -a 4 r -t 30.2426 -s 110 -d 104 -p tcp -e 1000 -i 261 -a 4 + -t 30.2429 -s 310 -d 303 -p tcp -e 1000 -i 220 -a 3 - -t 30.2429 -s 310 -d 303 -p tcp -e 1000 -i 220 -a 3 h -t 30.2429 -s 310 -d 303 -p tcp -e 1000 -i 220 -a 3 r -t 30.2429 -s 311 -d 310 -p tcp -e 1000 -i 220 -a 3 + -t 30.2433 -s 306 -d 310 -p ack -e 40 -i 230 -a 6 - -t 30.2433 -s 306 -d 310 -p ack -e 40 -i 230 -a 6 h -t 30.2433 -s 306 -d 310 -p ack -e 40 -i 230 -a 6 + -t 30.2443 -s 310 -d 311 -p ack -e 40 -i 230 -a 6 - -t 30.2443 -s 310 -d 311 -p ack -e 40 -i 230 -a 6 h -t 30.2443 -s 310 -d 311 -p ack -e 40 -i 230 -a 6 r -t 30.2443 -s 306 -d 310 -p ack -e 40 -i 230 -a 6 + -t 30.2447 -s 303 -d 310 -p ack -e 40 -i 231 -a 3 - -t 30.2447 -s 303 -d 310 -p ack -e 40 -i 231 -a 3 h -t 30.2447 -s 303 -d 310 -p ack -e 40 -i 231 -a 3 r -t 30.2449 -s 310 -d 303 -p tcp -e 1000 -i 220 -a 3 + -t 30.2457 -s 310 -d 311 -p ack -e 40 -i 231 -a 3 - -t 30.2457 -s 310 -d 311 -p ack -e 40 -i 231 -a 3 h -t 30.2457 -s 310 -d 311 -p ack -e 40 -i 231 -a 3 r -t 30.2457 -s 303 -d 310 -p ack -e 40 -i 231 -a 3 + -t 30.2506 -s 110 -d 104 -p tcp -e 1000 -i 262 -a 4 - -t 30.2506 -s 110 -d 104 -p tcp -e 1000 -i 262 -a 4 h -t 30.2506 -s 110 -d 104 -p tcp -e 1000 -i 262 -a 4 r -t 30.2506 -s 111 -d 110 -p tcp -e 1000 -i 262 -a 4 + -t 30.2524 -s 104 -d 110 -p ack -e 40 -i 277 -a 4 + -t 30.2524 -s 200 -d 210 -p ack -e 40 -i 249 -a 0 - -t 30.2524 -s 104 -d 110 -p ack -e 40 -i 277 -a 4 - -t 30.2524 -s 200 -d 210 -p ack -e 40 -i 249 -a 0 h -t 30.2524 -s 104 -d 110 -p ack -e 40 -i 277 -a 4 h -t 30.2524 -s 200 -d 210 -p ack -e 40 -i 249 -a 0 r -t 30.2526 -s 110 -d 104 -p tcp -e 1000 -i 262 -a 4 + -t 30.2529 -s 310 -d 303 -p tcp -e 1000 -i 221 -a 3 - -t 30.2529 -s 310 -d 303 -p tcp -e 1000 -i 221 -a 3 h -t 30.2529 -s 310 -d 303 -p tcp -e 1000 -i 221 -a 3 r -t 30.2529 -s 311 -d 310 -p tcp -e 1000 -i 221 -a 3 + -t 30.2533 -s 300 -d 310 -p ack -e 40 -i 232 -a 0 - -t 30.2533 -s 300 -d 310 -p ack -e 40 -i 232 -a 0 h -t 30.2533 -s 300 -d 310 -p ack -e 40 -i 232 -a 0 + -t 30.2534 -s 110 -d 111 -p ack -e 40 -i 277 -a 4 + -t 30.2534 -s 210 -d 211 -p ack -e 40 -i 249 -a 0 - -t 30.2534 -s 110 -d 111 -p ack -e 40 -i 277 -a 4 - -t 30.2534 -s 210 -d 211 -p ack -e 40 -i 249 -a 0 h -t 30.2534 -s 110 -d 111 -p ack -e 40 -i 277 -a 4 h -t 30.2534 -s 210 -d 211 -p ack -e 40 -i 249 -a 0 r -t 30.2534 -s 104 -d 110 -p ack -e 40 -i 277 -a 4 r -t 30.2534 -s 200 -d 210 -p ack -e 40 -i 249 -a 0 + -t 30.2543 -s 310 -d 311 -p ack -e 40 -i 232 -a 0 - -t 30.2543 -s 310 -d 311 -p ack -e 40 -i 232 -a 0 h -t 30.2543 -s 310 -d 311 -p ack -e 40 -i 232 -a 0 r -t 30.2543 -s 300 -d 310 -p ack -e 40 -i 232 -a 0 r -t 30.2549 -s 310 -d 303 -p tcp -e 1000 -i 221 -a 3 + -t 30.2606 -s 110 -d 104 -p tcp -e 1000 -i 263 -a 4 - -t 30.2606 -s 110 -d 104 -p tcp -e 1000 -i 263 -a 4 h -t 30.2606 -s 110 -d 104 -p tcp -e 1000 -i 263 -a 4 r -t 30.2606 -s 111 -d 110 -p tcp -e 1000 -i 263 -a 4 + -t 30.2621 -s 211 -d 212 -p ack -e 40 -i 244 -a 9 - -t 30.2621 -s 211 -d 212 -p ack -e 40 -i 244 -a 9 h -t 30.2621 -s 211 -d 212 -p ack -e 40 -i 244 -a 9 r -t 30.2621 -s 210 -d 211 -p ack -e 40 -i 244 -a 9 + -t 30.2626 -s 210 -d 200 -p tcp -e 1000 -i 241 -a 0 - -t 30.2626 -s 210 -d 200 -p tcp -e 1000 -i 241 -a 0 h -t 30.2626 -s 210 -d 200 -p tcp -e 1000 -i 241 -a 0 r -t 30.2626 -s 110 -d 104 -p tcp -e 1000 -i 263 -a 4 r -t 30.2626 -s 211 -d 210 -p tcp -e 1000 -i 241 -a 0 + -t 30.2628 -s 212 -d 211 -p tcp -e 1000 -i 250 -a 0 - -t 30.2628 -s 212 -d 211 -p tcp -e 1000 -i 250 -a 0 h -t 30.2628 -s 212 -d 211 -p tcp -e 1000 -i 250 -a 0 + -t 30.2629 -s 310 -d 308 -p tcp -e 1000 -i 222 -a 8 - -t 30.2629 -s 310 -d 308 -p tcp -e 1000 -i 222 -a 8 h -t 30.2629 -s 310 -d 308 -p tcp -e 1000 -i 222 -a 8 r -t 30.2629 -s 311 -d 310 -p tcp -e 1000 -i 222 -a 8 + -t 30.2631 -s 212 -d 211 -p tcp -e 1000 -i 251 -a 9 + -t 30.2631 -s 212 -d 211 -p tcp -e 1000 -i 252 -a 9 r -t 30.2631 -s 211 -d 212 -p ack -e 40 -i 244 -a 9 - -t 30.2636 -s 212 -d 211 -p tcp -e 1000 -i 251 -a 9 h -t 30.2636 -s 212 -d 211 -p tcp -e 1000 -i 251 -a 9 + -t 30.2638 -s 111 -d 112 -p ack -e 40 -i 272 -a 0 - -t 30.2638 -s 111 -d 112 -p ack -e 40 -i 272 -a 0 h -t 30.2638 -s 111 -d 112 -p ack -e 40 -i 272 -a 0 r -t 30.2638 -s 110 -d 111 -p ack -e 40 -i 272 -a 0 - -t 30.2644 -s 212 -d 211 -p tcp -e 1000 -i 252 -a 9 h -t 30.2644 -s 212 -d 211 -p tcp -e 1000 -i 252 -a 9 + -t 30.2646 -s 211 -d 210 -p tcp -e 1000 -i 250 -a 0 - -t 30.2646 -s 211 -d 210 -p tcp -e 1000 -i 250 -a 0 h -t 30.2646 -s 211 -d 210 -p tcp -e 1000 -i 250 -a 0 r -t 30.2646 -s 210 -d 200 -p tcp -e 1000 -i 241 -a 0 r -t 30.2648 -s 111 -d 112 -p ack -e 40 -i 272 -a 0 r -t 30.2648 -s 212 -d 211 -p tcp -e 1000 -i 250 -a 0 + -t 30.2649 -s 112 -d 111 -p tcp -e 1000 -i 278 -a 0 + -t 30.2649 -s 112 -d 111 -p tcp -e 1000 -i 279 -a 0 + -t 30.2649 -s 112 -d 111 -p tcp -e 1000 -i 280 -a 0 - -t 30.2649 -s 112 -d 111 -p tcp -e 1000 -i 278 -a 0 h -t 30.2649 -s 112 -d 111 -p tcp -e 1000 -i 278 -a 0 r -t 30.2649 -s 310 -d 308 -p tcp -e 1000 -i 222 -a 8 + -t 30.2654 -s 211 -d 210 -p tcp -e 1000 -i 251 -a 9 r -t 30.2656 -s 212 -d 211 -p tcp -e 1000 -i 251 -a 9 - -t 30.2657 -s 112 -d 111 -p tcp -e 1000 -i 279 -a 0 h -t 30.2657 -s 112 -d 111 -p tcp -e 1000 -i 279 -a 0 + -t 30.2662 -s 211 -d 210 -p tcp -e 1000 -i 252 -a 9 r -t 30.2664 -s 212 -d 211 -p tcp -e 1000 -i 252 -a 9 - -t 30.2665 -s 112 -d 111 -p tcp -e 1000 -i 280 -a 0 h -t 30.2665 -s 112 -d 111 -p tcp -e 1000 -i 280 -a 0 + -t 30.2667 -s 111 -d 110 -p tcp -e 1000 -i 278 -a 0 - -t 30.2667 -s 111 -d 110 -p tcp -e 1000 -i 278 -a 0 h -t 30.2667 -s 111 -d 110 -p tcp -e 1000 -i 278 -a 0 r -t 30.2669 -s 112 -d 111 -p tcp -e 1000 -i 278 -a 0 + -t 30.2675 -s 111 -d 110 -p tcp -e 1000 -i 279 -a 0 r -t 30.2677 -s 112 -d 111 -p tcp -e 1000 -i 279 -a 0 + -t 30.2683 -s 111 -d 110 -p tcp -e 1000 -i 280 -a 0 r -t 30.2685 -s 112 -d 111 -p tcp -e 1000 -i 280 -a 0 + -t 30.2726 -s 209 -d 210 -p ack -e 40 -i 253 -a 9 + -t 30.2726 -s 210 -d 209 -p tcp -e 1000 -i 242 -a 9 - -t 30.2726 -s 209 -d 210 -p ack -e 40 -i 253 -a 9 - -t 30.2726 -s 210 -d 209 -p tcp -e 1000 -i 242 -a 9 h -t 30.2726 -s 209 -d 210 -p ack -e 40 -i 253 -a 9 h -t 30.2726 -s 210 -d 209 -p tcp -e 1000 -i 242 -a 9 r -t 30.2726 -s 211 -d 210 -p tcp -e 1000 -i 242 -a 9 + -t 30.2729 -s 310 -d 308 -p tcp -e 1000 -i 223 -a 8 - -t 30.2729 -s 310 -d 308 -p tcp -e 1000 -i 223 -a 8 h -t 30.2729 -s 310 -d 308 -p tcp -e 1000 -i 223 -a 8 r -t 30.2729 -s 311 -d 310 -p tcp -e 1000 -i 223 -a 8 + -t 30.273 -s 304 -d 310 -p ack -e 40 -i 233 -a 4 - -t 30.273 -s 304 -d 310 -p ack -e 40 -i 233 -a 4 h -t 30.273 -s 304 -d 310 -p ack -e 40 -i 233 -a 4 r -t 30.2736 -s 209 -d 210 -p ack -e 40 -i 253 -a 9 + -t 30.2737 -s 210 -d 211 -p ack -e 40 -i 253 -a 9 - -t 30.2737 -s 210 -d 211 -p ack -e 40 -i 253 -a 9 h -t 30.2737 -s 210 -d 211 -p ack -e 40 -i 253 -a 9 + -t 30.274 -s 310 -d 311 -p ack -e 40 -i 233 -a 4 - -t 30.274 -s 310 -d 311 -p ack -e 40 -i 233 -a 4 h -t 30.274 -s 310 -d 311 -p ack -e 40 -i 233 -a 4 r -t 30.274 -s 304 -d 310 -p ack -e 40 -i 233 -a 4 - -t 30.2746 -s 211 -d 210 -p tcp -e 1000 -i 251 -a 9 h -t 30.2746 -s 211 -d 210 -p tcp -e 1000 -i 251 -a 9 r -t 30.2746 -s 210 -d 209 -p tcp -e 1000 -i 242 -a 9 + -t 30.2747 -s 308 -d 310 -p ack -e 40 -i 234 -a 8 - -t 30.2747 -s 308 -d 310 -p ack -e 40 -i 234 -a 8 h -t 30.2747 -s 308 -d 310 -p ack -e 40 -i 234 -a 8 r -t 30.2749 -s 310 -d 308 -p tcp -e 1000 -i 223 -a 8 + -t 30.2757 -s 310 -d 311 -p ack -e 40 -i 234 -a 8 - -t 30.2757 -s 310 -d 311 -p ack -e 40 -i 234 -a 8 h -t 30.2757 -s 310 -d 311 -p ack -e 40 -i 234 -a 8 r -t 30.2757 -s 308 -d 310 -p ack -e 40 -i 234 -a 8 - -t 30.2767 -s 111 -d 110 -p tcp -e 1000 -i 279 -a 0 h -t 30.2767 -s 111 -d 110 -p tcp -e 1000 -i 279 -a 0 + -t 30.2826 -s 204 -d 210 -p ack -e 40 -i 254 -a 4 + -t 30.2826 -s 210 -d 209 -p tcp -e 1000 -i 243 -a 9 - -t 30.2826 -s 204 -d 210 -p ack -e 40 -i 254 -a 4 - -t 30.2826 -s 210 -d 209 -p tcp -e 1000 -i 243 -a 9 h -t 30.2826 -s 204 -d 210 -p ack -e 40 -i 254 -a 4 h -t 30.2826 -s 210 -d 209 -p tcp -e 1000 -i 243 -a 9 r -t 30.2826 -s 211 -d 210 -p tcp -e 1000 -i 243 -a 9 + -t 30.2829 -s 310 -d 308 -p tcp -e 1000 -i 224 -a 8 - -t 30.2829 -s 310 -d 308 -p tcp -e 1000 -i 224 -a 8 h -t 30.2829 -s 310 -d 308 -p tcp -e 1000 -i 224 -a 8 r -t 30.2829 -s 311 -d 310 -p tcp -e 1000 -i 224 -a 8 + -t 30.2834 -s 212 -d 211 -p tcp -e 1000 -i 255 -a 4 - -t 30.2834 -s 212 -d 211 -p tcp -e 1000 -i 255 -a 4 h -t 30.2834 -s 212 -d 211 -p tcp -e 1000 -i 255 -a 4 r -t 30.2836 -s 204 -d 210 -p ack -e 40 -i 254 -a 4 + -t 30.2837 -s 210 -d 211 -p ack -e 40 -i 254 -a 4 - -t 30.2837 -s 210 -d 211 -p ack -e 40 -i 254 -a 4 h -t 30.2837 -s 210 -d 211 -p ack -e 40 -i 254 -a 4 + -t 30.2838 -s 111 -d 112 -p ack -e 40 -i 273 -a 0 - -t 30.2838 -s 111 -d 112 -p ack -e 40 -i 273 -a 0 h -t 30.2838 -s 111 -d 112 -p ack -e 40 -i 273 -a 0 r -t 30.2838 -s 110 -d 111 -p ack -e 40 -i 273 -a 0 + -t 30.2844 -s 209 -d 210 -p ack -e 40 -i 256 -a 9 - -t 30.2844 -s 209 -d 210 -p ack -e 40 -i 256 -a 9 h -t 30.2844 -s 209 -d 210 -p ack -e 40 -i 256 -a 9 - -t 30.2846 -s 211 -d 210 -p tcp -e 1000 -i 252 -a 9 h -t 30.2846 -s 211 -d 210 -p tcp -e 1000 -i 252 -a 9 r -t 30.2846 -s 210 -d 209 -p tcp -e 1000 -i 243 -a 9 r -t 30.2848 -s 111 -d 112 -p ack -e 40 -i 273 -a 0 r -t 30.2849 -s 310 -d 308 -p tcp -e 1000 -i 224 -a 8 + -t 30.2852 -s 211 -d 210 -p tcp -e 1000 -i 255 -a 4 r -t 30.2854 -s 209 -d 210 -p ack -e 40 -i 256 -a 9 r -t 30.2854 -s 212 -d 211 -p tcp -e 1000 -i 255 -a 4 + -t 30.2855 -s 210 -d 211 -p ack -e 40 -i 256 -a 9 - -t 30.2855 -s 210 -d 211 -p ack -e 40 -i 256 -a 9 h -t 30.2855 -s 210 -d 211 -p ack -e 40 -i 256 -a 9 - -t 30.2867 -s 111 -d 110 -p tcp -e 1000 -i 280 -a 0 h -t 30.2867 -s 111 -d 110 -p tcp -e 1000 -i 280 -a 0 + -t 30.2926 -s 210 -d 204 -p tcp -e 1000 -i 245 -a 4 - -t 30.2926 -s 210 -d 204 -p tcp -e 1000 -i 245 -a 4 h -t 30.2926 -s 210 -d 204 -p tcp -e 1000 -i 245 -a 4 r -t 30.2926 -s 211 -d 210 -p tcp -e 1000 -i 245 -a 4 + -t 30.2929 -s 310 -d 309 -p tcp -e 1000 -i 226 -a 9 - -t 30.2929 -s 310 -d 309 -p tcp -e 1000 -i 226 -a 9 h -t 30.2929 -s 310 -d 309 -p tcp -e 1000 -i 226 -a 9 r -t 30.2929 -s 311 -d 310 -p tcp -e 1000 -i 226 -a 9 - -t 30.2946 -s 211 -d 210 -p tcp -e 1000 -i 255 -a 4 h -t 30.2946 -s 211 -d 210 -p tcp -e 1000 -i 255 -a 4 r -t 30.2946 -s 210 -d 204 -p tcp -e 1000 -i 245 -a 4 r -t 30.2949 -s 310 -d 309 -p tcp -e 1000 -i 226 -a 9 + -t 30.2961 -s 311 -d 312 -p ack -e 40 -i 228 -a 2 - -t 30.2961 -s 311 -d 312 -p ack -e 40 -i 228 -a 2 h -t 30.2961 -s 311 -d 312 -p ack -e 40 -i 228 -a 2 r -t 30.2961 -s 310 -d 311 -p ack -e 40 -i 228 -a 2 r -t 30.2971 -s 311 -d 312 -p ack -e 40 -i 228 -a 2 + -t 30.2979 -s 211 -d 212 -p ack -e 40 -i 248 -a 7 - -t 30.2979 -s 211 -d 212 -p ack -e 40 -i 248 -a 7 h -t 30.2979 -s 211 -d 212 -p ack -e 40 -i 248 -a 7 r -t 30.2979 -s 210 -d 211 -p ack -e 40 -i 248 -a 7 + -t 30.2989 -s 212 -d 211 -p tcp -e 1000 -i 257 -a 7 + -t 30.2989 -s 212 -d 211 -p tcp -e 1000 -i 258 -a 7 + -t 30.2989 -s 212 -d 211 -p tcp -e 1000 -i 259 -a 7 - -t 30.2989 -s 212 -d 211 -p tcp -e 1000 -i 257 -a 7 h -t 30.2989 -s 212 -d 211 -p tcp -e 1000 -i 257 -a 7 r -t 30.2989 -s 211 -d 212 -p ack -e 40 -i 248 -a 7 - -t 30.2997 -s 212 -d 211 -p tcp -e 1000 -i 258 -a 7 h -t 30.2997 -s 212 -d 211 -p tcp -e 1000 -i 258 -a 7 - -t 30.3005 -s 212 -d 211 -p tcp -e 1000 -i 259 -a 7 h -t 30.3005 -s 212 -d 211 -p tcp -e 1000 -i 259 -a 7 + -t 30.3007 -s 211 -d 210 -p tcp -e 1000 -i 257 -a 7 r -t 30.3009 -s 212 -d 211 -p tcp -e 1000 -i 257 -a 7 + -t 30.3015 -s 211 -d 210 -p tcp -e 1000 -i 258 -a 7 r -t 30.3017 -s 212 -d 211 -p tcp -e 1000 -i 258 -a 7 + -t 30.3023 -s 211 -d 210 -p tcp -e 1000 -i 259 -a 7 r -t 30.3025 -s 212 -d 211 -p tcp -e 1000 -i 259 -a 7 + -t 30.3029 -s 310 -d 309 -p tcp -e 1000 -i 227 -a 9 - -t 30.3029 -s 310 -d 309 -p tcp -e 1000 -i 227 -a 9 h -t 30.3029 -s 310 -d 309 -p tcp -e 1000 -i 227 -a 9 r -t 30.3029 -s 311 -d 310 -p tcp -e 1000 -i 227 -a 9 + -t 30.3038 -s 111 -d 112 -p ack -e 40 -i 274 -a 0 - -t 30.3038 -s 111 -d 112 -p ack -e 40 -i 274 -a 0 h -t 30.3038 -s 111 -d 112 -p ack -e 40 -i 274 -a 0 r -t 30.3038 -s 110 -d 111 -p ack -e 40 -i 274 -a 0 - -t 30.3046 -s 211 -d 210 -p tcp -e 1000 -i 257 -a 7 h -t 30.3046 -s 211 -d 210 -p tcp -e 1000 -i 257 -a 7 + -t 30.3047 -s 302 -d 310 -p ack -e 40 -i 235 -a 2 + -t 30.3047 -s 309 -d 310 -p ack -e 40 -i 236 -a 9 - -t 30.3047 -s 302 -d 310 -p ack -e 40 -i 235 -a 2 - -t 30.3047 -s 309 -d 310 -p ack -e 40 -i 236 -a 9 h -t 30.3047 -s 302 -d 310 -p ack -e 40 -i 235 -a 2 h -t 30.3047 -s 309 -d 310 -p ack -e 40 -i 236 -a 9 r -t 30.3048 -s 111 -d 112 -p ack -e 40 -i 274 -a 0 r -t 30.3049 -s 310 -d 309 -p tcp -e 1000 -i 227 -a 9 + -t 30.3057 -s 310 -d 311 -p ack -e 40 -i 235 -a 2 + -t 30.3057 -s 310 -d 311 -p ack -e 40 -i 236 -a 9 - -t 30.3057 -s 310 -d 311 -p ack -e 40 -i 235 -a 2 h -t 30.3057 -s 310 -d 311 -p ack -e 40 -i 235 -a 2 r -t 30.3057 -s 302 -d 310 -p ack -e 40 -i 235 -a 2 r -t 30.3057 -s 309 -d 310 -p ack -e 40 -i 236 -a 9 - -t 30.3061 -s 310 -d 311 -p ack -e 40 -i 236 -a 9 h -t 30.3061 -s 310 -d 311 -p ack -e 40 -i 236 -a 9 + -t 30.3065 -s 207 -d 210 -p ack -e 40 -i 260 -a 7 - -t 30.3065 -s 207 -d 210 -p ack -e 40 -i 260 -a 7 h -t 30.3065 -s 207 -d 210 -p ack -e 40 -i 260 -a 7 + -t 30.3067 -s 210 -d 207 -p tcp -e 1000 -i 246 -a 7 - -t 30.3067 -s 210 -d 207 -p tcp -e 1000 -i 246 -a 7 h -t 30.3067 -s 210 -d 207 -p tcp -e 1000 -i 246 -a 7 r -t 30.3067 -s 211 -d 210 -p tcp -e 1000 -i 246 -a 7 + -t 30.3075 -s 210 -d 211 -p ack -e 40 -i 260 -a 7 - -t 30.3075 -s 210 -d 211 -p ack -e 40 -i 260 -a 7 h -t 30.3075 -s 210 -d 211 -p ack -e 40 -i 260 -a 7 r -t 30.3075 -s 207 -d 210 -p ack -e 40 -i 260 -a 7 r -t 30.3087 -s 210 -d 207 -p tcp -e 1000 -i 246 -a 7 + -t 30.3124 -s 100 -d 110 -p ack -e 40 -i 281 -a 0 - -t 30.3124 -s 100 -d 110 -p ack -e 40 -i 281 -a 0 h -t 30.3124 -s 100 -d 110 -p ack -e 40 -i 281 -a 0 + -t 30.3134 -s 110 -d 111 -p ack -e 40 -i 281 -a 0 - -t 30.3134 -s 110 -d 111 -p ack -e 40 -i 281 -a 0 h -t 30.3134 -s 110 -d 111 -p ack -e 40 -i 281 -a 0 r -t 30.3134 -s 100 -d 110 -p ack -e 40 -i 281 -a 0 - -t 30.3146 -s 211 -d 210 -p tcp -e 1000 -i 258 -a 7 h -t 30.3146 -s 211 -d 210 -p tcp -e 1000 -i 258 -a 7 + -t 30.3167 -s 210 -d 207 -p tcp -e 1000 -i 247 -a 7 - -t 30.3167 -s 210 -d 207 -p tcp -e 1000 -i 247 -a 7 h -t 30.3167 -s 210 -d 207 -p tcp -e 1000 -i 247 -a 7 r -t 30.3167 -s 211 -d 210 -p tcp -e 1000 -i 247 -a 7 + -t 30.3185 -s 207 -d 210 -p ack -e 40 -i 261 -a 7 - -t 30.3185 -s 207 -d 210 -p ack -e 40 -i 261 -a 7 h -t 30.3185 -s 207 -d 210 -p ack -e 40 -i 261 -a 7 r -t 30.3187 -s 210 -d 207 -p tcp -e 1000 -i 247 -a 7 + -t 30.3195 -s 210 -d 211 -p ack -e 40 -i 261 -a 7 - -t 30.3195 -s 210 -d 211 -p ack -e 40 -i 261 -a 7 h -t 30.3195 -s 210 -d 211 -p ack -e 40 -i 261 -a 7 r -t 30.3195 -s 207 -d 210 -p ack -e 40 -i 261 -a 7 - -t 30.3246 -s 211 -d 210 -p tcp -e 1000 -i 259 -a 7 h -t 30.3246 -s 211 -d 210 -p tcp -e 1000 -i 259 -a 7 + -t 30.3261 -s 311 -d 312 -p ack -e 40 -i 229 -a 7 - -t 30.3261 -s 311 -d 312 -p ack -e 40 -i 229 -a 7 h -t 30.3261 -s 311 -d 312 -p ack -e 40 -i 229 -a 7 r -t 30.3261 -s 310 -d 311 -p ack -e 40 -i 229 -a 7 + -t 30.3271 -s 312 -d 311 -p tcp -e 1000 -i 237 -a 7 + -t 30.3271 -s 312 -d 311 -p tcp -e 1000 -i 238 -a 7 - -t 30.3271 -s 312 -d 311 -p tcp -e 1000 -i 237 -a 7 h -t 30.3271 -s 312 -d 311 -p tcp -e 1000 -i 237 -a 7 r -t 30.3271 -s 311 -d 312 -p ack -e 40 -i 229 -a 7 + -t 30.3279 -s 111 -d 112 -p ack -e 40 -i 275 -a 7 - -t 30.3279 -s 111 -d 112 -p ack -e 40 -i 275 -a 7 - -t 30.3279 -s 312 -d 311 -p tcp -e 1000 -i 238 -a 7 h -t 30.3279 -s 111 -d 112 -p ack -e 40 -i 275 -a 7 h -t 30.3279 -s 312 -d 311 -p tcp -e 1000 -i 238 -a 7 r -t 30.3279 -s 110 -d 111 -p ack -e 40 -i 275 -a 7 + -t 30.3289 -s 311 -d 310 -p tcp -e 1000 -i 237 -a 7 - -t 30.3289 -s 311 -d 310 -p tcp -e 1000 -i 237 -a 7 h -t 30.3289 -s 311 -d 310 -p tcp -e 1000 -i 237 -a 7 r -t 30.3289 -s 111 -d 112 -p ack -e 40 -i 275 -a 7 r -t 30.3291 -s 312 -d 311 -p tcp -e 1000 -i 237 -a 7 + -t 30.3297 -s 311 -d 310 -p tcp -e 1000 -i 238 -a 7 r -t 30.3299 -s 312 -d 311 -p tcp -e 1000 -i 238 -a 7 + -t 30.3338 -s 111 -d 112 -p ack -e 40 -i 276 -a 4 - -t 30.3338 -s 111 -d 112 -p ack -e 40 -i 276 -a 4 h -t 30.3338 -s 111 -d 112 -p ack -e 40 -i 276 -a 4 r -t 30.3338 -s 110 -d 111 -p ack -e 40 -i 276 -a 4 r -t 30.3348 -s 111 -d 112 -p ack -e 40 -i 276 -a 4 + -t 30.3349 -s 112 -d 111 -p tcp -e 1000 -i 282 -a 4 + -t 30.3349 -s 112 -d 111 -p tcp -e 1000 -i 283 -a 4 - -t 30.3349 -s 112 -d 111 -p tcp -e 1000 -i 282 -a 4 h -t 30.3349 -s 112 -d 111 -p tcp -e 1000 -i 282 -a 4 - -t 30.3357 -s 112 -d 111 -p tcp -e 1000 -i 283 -a 4 h -t 30.3357 -s 112 -d 111 -p tcp -e 1000 -i 283 -a 4 + -t 30.3367 -s 111 -d 110 -p tcp -e 1000 -i 282 -a 4 - -t 30.3367 -s 111 -d 110 -p tcp -e 1000 -i 282 -a 4 h -t 30.3367 -s 111 -d 110 -p tcp -e 1000 -i 282 -a 4 r -t 30.3369 -s 112 -d 111 -p tcp -e 1000 -i 282 -a 4 + -t 30.3375 -s 111 -d 110 -p tcp -e 1000 -i 283 -a 4 r -t 30.3377 -s 112 -d 111 -p tcp -e 1000 -i 283 -a 4 - -t 30.3389 -s 311 -d 310 -p tcp -e 1000 -i 238 -a 7 h -t 30.3389 -s 311 -d 310 -p tcp -e 1000 -i 238 -a 7 + -t 30.3423 -s 112 -d 111 -p tcp -e 1000 -i 284 -a 5 + -t 30.3423 -s 112 -d 111 -p tcp -e 1000 -i 285 -a 5 + -t 30.3423 -s 112 -d 111 -p tcp -e 1000 -i 286 -a 5 + -t 30.3423 -s 112 -d 111 -p tcp -e 1000 -i 287 -a 5 + -t 30.3423 -s 112 -d 111 -p tcp -e 1000 -i 288 -a 5 + -t 30.3423 -s 112 -d 111 -p tcp -e 1000 -i 289 -a 5 + -t 30.3423 -s 112 -d 111 -p tcp -e 1000 -i 290 -a 5 + -t 30.3423 -s 212 -d 211 -p tcp -e 1000 -i 262 -a 5 + -t 30.3423 -s 312 -d 311 -p tcp -e 1000 -i 239 -a 5 - -t 30.3423 -s 112 -d 111 -p tcp -e 1000 -i 284 -a 5 - -t 30.3423 -s 212 -d 211 -p tcp -e 1000 -i 262 -a 5 - -t 30.3423 -s 312 -d 311 -p tcp -e 1000 -i 239 -a 5 h -t 30.3423 -s 112 -d 111 -p tcp -e 1000 -i 284 -a 5 h -t 30.3423 -s 212 -d 211 -p tcp -e 1000 -i 262 -a 5 h -t 30.3423 -s 312 -d 311 -p tcp -e 1000 -i 239 -a 5 - -t 30.3431 -s 112 -d 111 -p tcp -e 1000 -i 285 -a 5 h -t 30.3431 -s 112 -d 111 -p tcp -e 1000 -i 285 -a 5 - -t 30.3439 -s 112 -d 111 -p tcp -e 1000 -i 286 -a 5 h -t 30.3439 -s 112 -d 111 -p tcp -e 1000 -i 286 -a 5 + -t 30.3441 -s 111 -d 110 -p tcp -e 1000 -i 284 -a 5 + -t 30.3441 -s 211 -d 210 -p tcp -e 1000 -i 262 -a 5 + -t 30.3441 -s 311 -d 310 -p tcp -e 1000 -i 239 -a 5 - -t 30.3441 -s 211 -d 210 -p tcp -e 1000 -i 262 -a 5 h -t 30.3441 -s 211 -d 210 -p tcp -e 1000 -i 262 -a 5 r -t 30.3443 -s 112 -d 111 -p tcp -e 1000 -i 284 -a 5 r -t 30.3443 -s 212 -d 211 -p tcp -e 1000 -i 262 -a 5 r -t 30.3443 -s 312 -d 311 -p tcp -e 1000 -i 239 -a 5 + -t 30.3447 -s 311 -d 312 -p ack -e 40 -i 230 -a 6 - -t 30.3447 -s 112 -d 111 -p tcp -e 1000 -i 287 -a 5 - -t 30.3447 -s 311 -d 312 -p ack -e 40 -i 230 -a 6 h -t 30.3447 -s 112 -d 111 -p tcp -e 1000 -i 287 -a 5 h -t 30.3447 -s 311 -d 312 -p ack -e 40 -i 230 -a 6 r -t 30.3447 -s 310 -d 311 -p ack -e 40 -i 230 -a 6 + -t 30.3449 -s 111 -d 110 -p tcp -e 1000 -i 285 -a 5 r -t 30.3451 -s 112 -d 111 -p tcp -e 1000 -i 285 -a 5 - -t 30.3455 -s 112 -d 111 -p tcp -e 1000 -i 288 -a 5 h -t 30.3455 -s 112 -d 111 -p tcp -e 1000 -i 288 -a 5 + -t 30.3457 -s 111 -d 110 -p tcp -e 1000 -i 286 -a 5 r -t 30.3457 -s 311 -d 312 -p ack -e 40 -i 230 -a 6 r -t 30.3459 -s 112 -d 111 -p tcp -e 1000 -i 286 -a 5 + -t 30.3461 -s 311 -d 312 -p ack -e 40 -i 231 -a 3 - -t 30.3461 -s 311 -d 312 -p ack -e 40 -i 231 -a 3 h -t 30.3461 -s 311 -d 312 -p ack -e 40 -i 231 -a 3 r -t 30.3461 -s 310 -d 311 -p ack -e 40 -i 231 -a 3 - -t 30.3463 -s 112 -d 111 -p tcp -e 1000 -i 289 -a 5 h -t 30.3463 -s 112 -d 111 -p tcp -e 1000 -i 289 -a 5 + -t 30.3465 -s 111 -d 110 -p tcp -e 1000 -i 287 -a 5 - -t 30.3467 -s 111 -d 110 -p tcp -e 1000 -i 283 -a 4 h -t 30.3467 -s 111 -d 110 -p tcp -e 1000 -i 283 -a 4 r -t 30.3467 -s 112 -d 111 -p tcp -e 1000 -i 287 -a 5 - -t 30.3471 -s 112 -d 111 -p tcp -e 1000 -i 290 -a 5 h -t 30.3471 -s 112 -d 111 -p tcp -e 1000 -i 290 -a 5 r -t 30.3471 -s 311 -d 312 -p ack -e 40 -i 231 -a 3 + -t 30.3473 -s 111 -d 110 -p tcp -e 1000 -i 288 -a 5 r -t 30.3475 -s 112 -d 111 -p tcp -e 1000 -i 288 -a 5 + -t 30.3481 -s 111 -d 110 -p tcp -e 1000 -i 289 -a 5 r -t 30.3483 -s 112 -d 111 -p tcp -e 1000 -i 289 -a 5 + -t 30.3489 -s 111 -d 110 -p tcp -e 1000 -i 290 -a 5 - -t 30.3489 -s 311 -d 310 -p tcp -e 1000 -i 239 -a 5 h -t 30.3489 -s 311 -d 310 -p tcp -e 1000 -i 239 -a 5 r -t 30.3491 -s 112 -d 111 -p tcp -e 1000 -i 290 -a 5 + -t 30.3538 -s 111 -d 112 -p ack -e 40 -i 277 -a 4 + -t 30.3538 -s 211 -d 212 -p ack -e 40 -i 249 -a 0 - -t 30.3538 -s 111 -d 112 -p ack -e 40 -i 277 -a 4 - -t 30.3538 -s 211 -d 212 -p ack -e 40 -i 249 -a 0 h -t 30.3538 -s 111 -d 112 -p ack -e 40 -i 277 -a 4 h -t 30.3538 -s 211 -d 212 -p ack -e 40 -i 249 -a 0 r -t 30.3538 -s 110 -d 111 -p ack -e 40 -i 277 -a 4 r -t 30.3538 -s 210 -d 211 -p ack -e 40 -i 249 -a 0 + -t 30.3547 -s 303 -d 310 -p ack -e 40 -i 240 -a 3 + -t 30.3547 -s 311 -d 312 -p ack -e 40 -i 232 -a 0 - -t 30.3547 -s 303 -d 310 -p ack -e 40 -i 240 -a 3 - -t 30.3547 -s 311 -d 312 -p ack -e 40 -i 232 -a 0 h -t 30.3547 -s 303 -d 310 -p ack -e 40 -i 240 -a 3 h -t 30.3547 -s 311 -d 312 -p ack -e 40 -i 232 -a 0 r -t 30.3547 -s 310 -d 311 -p ack -e 40 -i 232 -a 0 r -t 30.3548 -s 111 -d 112 -p ack -e 40 -i 277 -a 4 r -t 30.3548 -s 211 -d 212 -p ack -e 40 -i 249 -a 0 + -t 30.3549 -s 212 -d 211 -p tcp -e 1000 -i 263 -a 0 + -t 30.3549 -s 212 -d 211 -p tcp -e 1000 -i 264 -a 0 - -t 30.3549 -s 212 -d 211 -p tcp -e 1000 -i 263 -a 0 h -t 30.3549 -s 212 -d 211 -p tcp -e 1000 -i 263 -a 0 + -t 30.3557 -s 310 -d 311 -p ack -e 40 -i 240 -a 3 + -t 30.3557 -s 312 -d 311 -p tcp -e 1000 -i 241 -a 0 + -t 30.3557 -s 312 -d 311 -p tcp -e 1000 -i 242 -a 0 - -t 30.3557 -s 212 -d 211 -p tcp -e 1000 -i 264 -a 0 - -t 30.3557 -s 310 -d 311 -p ack -e 40 -i 240 -a 3 - -t 30.3557 -s 312 -d 311 -p tcp -e 1000 -i 241 -a 0 h -t 30.3557 -s 212 -d 211 -p tcp -e 1000 -i 264 -a 0 h -t 30.3557 -s 310 -d 311 -p ack -e 40 -i 240 -a 3 h -t 30.3557 -s 312 -d 311 -p tcp -e 1000 -i 241 -a 0 r -t 30.3557 -s 303 -d 310 -p ack -e 40 -i 240 -a 3 r -t 30.3557 -s 311 -d 312 -p ack -e 40 -i 232 -a 0 - -t 30.3565 -s 312 -d 311 -p tcp -e 1000 -i 242 -a 0 h -t 30.3565 -s 312 -d 311 -p tcp -e 1000 -i 242 -a 0 + -t 30.3567 -s 211 -d 210 -p tcp -e 1000 -i 263 -a 0 - -t 30.3567 -s 111 -d 110 -p tcp -e 1000 -i 284 -a 5 - -t 30.3567 -s 211 -d 210 -p tcp -e 1000 -i 263 -a 0 h -t 30.3567 -s 111 -d 110 -p tcp -e 1000 -i 284 -a 5 h -t 30.3567 -s 211 -d 210 -p tcp -e 1000 -i 263 -a 0 r -t 30.3569 -s 212 -d 211 -p tcp -e 1000 -i 263 -a 0 + -t 30.3575 -s 211 -d 210 -p tcp -e 1000 -i 264 -a 0 + -t 30.3575 -s 311 -d 310 -p tcp -e 1000 -i 241 -a 0 r -t 30.3577 -s 212 -d 211 -p tcp -e 1000 -i 264 -a 0 r -t 30.3577 -s 312 -d 311 -p tcp -e 1000 -i 241 -a 0 + -t 30.3583 -s 311 -d 310 -p tcp -e 1000 -i 242 -a 0 r -t 30.3585 -s 312 -d 311 -p tcp -e 1000 -i 242 -a 0 - -t 30.3589 -s 311 -d 310 -p tcp -e 1000 -i 241 -a 0 h -t 30.3589 -s 311 -d 310 -p tcp -e 1000 -i 241 -a 0 + -t 30.3624 -s 104 -d 110 -p ack -e 40 -i 291 -a 4 - -t 30.3624 -s 104 -d 110 -p ack -e 40 -i 291 -a 4 h -t 30.3624 -s 104 -d 110 -p ack -e 40 -i 291 -a 4 + -t 30.3634 -s 110 -d 111 -p ack -e 40 -i 291 -a 4 - -t 30.3634 -s 110 -d 111 -p ack -e 40 -i 291 -a 4 h -t 30.3634 -s 110 -d 111 -p ack -e 40 -i 291 -a 4 r -t 30.3634 -s 104 -d 110 -p ack -e 40 -i 291 -a 4 + -t 30.3644 -s 200 -d 210 -p ack -e 40 -i 265 -a 0 - -t 30.3644 -s 200 -d 210 -p ack -e 40 -i 265 -a 0 h -t 30.3644 -s 200 -d 210 -p ack -e 40 -i 265 -a 0 r -t 30.3654 -s 200 -d 210 -p ack -e 40 -i 265 -a 0 + -t 30.3655 -s 210 -d 211 -p ack -e 40 -i 265 -a 0 - -t 30.3655 -s 210 -d 211 -p ack -e 40 -i 265 -a 0 h -t 30.3655 -s 210 -d 211 -p ack -e 40 -i 265 -a 0 - -t 30.3667 -s 111 -d 110 -p tcp -e 1000 -i 285 -a 5 - -t 30.3667 -s 211 -d 210 -p tcp -e 1000 -i 264 -a 0 h -t 30.3667 -s 111 -d 110 -p tcp -e 1000 -i 285 -a 5 h -t 30.3667 -s 211 -d 210 -p tcp -e 1000 -i 264 -a 0 - -t 30.3689 -s 311 -d 310 -p tcp -e 1000 -i 242 -a 0 h -t 30.3689 -s 311 -d 310 -p tcp -e 1000 -i 242 -a 0 + -t 30.3741 -s 211 -d 212 -p ack -e 40 -i 253 -a 9 - -t 30.3741 -s 211 -d 212 -p ack -e 40 -i 253 -a 9 h -t 30.3741 -s 211 -d 212 -p ack -e 40 -i 253 -a 9 r -t 30.3741 -s 210 -d 211 -p ack -e 40 -i 253 -a 9 + -t 30.3744 -s 311 -d 312 -p ack -e 40 -i 233 -a 4 - -t 30.3744 -s 311 -d 312 -p ack -e 40 -i 233 -a 4 h -t 30.3744 -s 311 -d 312 -p ack -e 40 -i 233 -a 4 r -t 30.3744 -s 310 -d 311 -p ack -e 40 -i 233 -a 4 + -t 30.3746 -s 210 -d 200 -p tcp -e 1000 -i 250 -a 0 - -t 30.3746 -s 210 -d 200 -p tcp -e 1000 -i 250 -a 0 h -t 30.3746 -s 210 -d 200 -p tcp -e 1000 -i 250 -a 0 r -t 30.3746 -s 211 -d 210 -p tcp -e 1000 -i 250 -a 0 + -t 30.3751 -s 212 -d 211 -p tcp -e 1000 -i 266 -a 9 + -t 30.3751 -s 212 -d 211 -p tcp -e 1000 -i 267 -a 9 - -t 30.3751 -s 212 -d 211 -p tcp -e 1000 -i 266 -a 9 h -t 30.3751 -s 212 -d 211 -p tcp -e 1000 -i 266 -a 9 r -t 30.3751 -s 211 -d 212 -p ack -e 40 -i 253 -a 9 r -t 30.3754 -s 311 -d 312 -p ack -e 40 -i 233 -a 4 + -t 30.3755 -s 312 -d 311 -p tcp -e 1000 -i 243 -a 4 + -t 30.3755 -s 312 -d 311 -p tcp -e 1000 -i 244 -a 4 - -t 30.3755 -s 312 -d 311 -p tcp -e 1000 -i 243 -a 4 h -t 30.3755 -s 312 -d 311 -p tcp -e 1000 -i 243 -a 4 - -t 30.3759 -s 212 -d 211 -p tcp -e 1000 -i 267 -a 9 h -t 30.3759 -s 212 -d 211 -p tcp -e 1000 -i 267 -a 9 + -t 30.3761 -s 311 -d 312 -p ack -e 40 -i 234 -a 8 - -t 30.3761 -s 311 -d 312 -p ack -e 40 -i 234 -a 8 h -t 30.3761 -s 311 -d 312 -p ack -e 40 -i 234 -a 8 r -t 30.3761 -s 310 -d 311 -p ack -e 40 -i 234 -a 8 - -t 30.3763 -s 312 -d 311 -p tcp -e 1000 -i 244 -a 4 h -t 30.3763 -s 312 -d 311 -p tcp -e 1000 -i 244 -a 4 r -t 30.3766 -s 210 -d 200 -p tcp -e 1000 -i 250 -a 0 + -t 30.3767 -s 110 -d 100 -p tcp -e 1000 -i 278 -a 0 - -t 30.3767 -s 110 -d 100 -p tcp -e 1000 -i 278 -a 0 - -t 30.3767 -s 111 -d 110 -p tcp -e 1000 -i 286 -a 5 h -t 30.3767 -s 110 -d 100 -p tcp -e 1000 -i 278 -a 0 h -t 30.3767 -s 111 -d 110 -p tcp -e 1000 -i 286 -a 5 r -t 30.3767 -s 111 -d 110 -p tcp -e 1000 -i 278 -a 0 + -t 30.3769 -s 211 -d 210 -p tcp -e 1000 -i 266 -a 9 - -t 30.3769 -s 211 -d 210 -p tcp -e 1000 -i 266 -a 9 h -t 30.3769 -s 211 -d 210 -p tcp -e 1000 -i 266 -a 9 r -t 30.3771 -s 212 -d 211 -p tcp -e 1000 -i 266 -a 9 r -t 30.3771 -s 311 -d 312 -p ack -e 40 -i 234 -a 8 + -t 30.3773 -s 311 -d 310 -p tcp -e 1000 -i 243 -a 4 r -t 30.3775 -s 312 -d 311 -p tcp -e 1000 -i 243 -a 4 + -t 30.3777 -s 211 -d 210 -p tcp -e 1000 -i 267 -a 9 r -t 30.3779 -s 212 -d 211 -p tcp -e 1000 -i 267 -a 9 + -t 30.3781 -s 311 -d 310 -p tcp -e 1000 -i 244 -a 4 r -t 30.3783 -s 312 -d 311 -p tcp -e 1000 -i 244 -a 4 r -t 30.3787 -s 110 -d 100 -p tcp -e 1000 -i 278 -a 0 - -t 30.3789 -s 311 -d 310 -p tcp -e 1000 -i 243 -a 4 h -t 30.3789 -s 311 -d 310 -p tcp -e 1000 -i 243 -a 4 + -t 30.3841 -s 211 -d 212 -p ack -e 40 -i 254 -a 4 - -t 30.3841 -s 211 -d 212 -p ack -e 40 -i 254 -a 4 h -t 30.3841 -s 211 -d 212 -p ack -e 40 -i 254 -a 4 r -t 30.3841 -s 210 -d 211 -p ack -e 40 -i 254 -a 4 + -t 30.3846 -s 210 -d 209 -p tcp -e 1000 -i 251 -a 9 - -t 30.3846 -s 210 -d 209 -p tcp -e 1000 -i 251 -a 9 h -t 30.3846 -s 210 -d 209 -p tcp -e 1000 -i 251 -a 9 r -t 30.3846 -s 211 -d 210 -p tcp -e 1000 -i 251 -a 9 + -t 30.3847 -s 308 -d 310 -p ack -e 40 -i 245 -a 8 - -t 30.3847 -s 308 -d 310 -p ack -e 40 -i 245 -a 8 h -t 30.3847 -s 308 -d 310 -p ack -e 40 -i 245 -a 8 + -t 30.3851 -s 212 -d 211 -p tcp -e 1000 -i 268 -a 4 + -t 30.3851 -s 212 -d 211 -p tcp -e 1000 -i 269 -a 4 - -t 30.3851 -s 212 -d 211 -p tcp -e 1000 -i 268 -a 4 h -t 30.3851 -s 212 -d 211 -p tcp -e 1000 -i 268 -a 4 r -t 30.3851 -s 211 -d 212 -p ack -e 40 -i 254 -a 4 + -t 30.3857 -s 310 -d 311 -p ack -e 40 -i 245 -a 8 - -t 30.3857 -s 310 -d 311 -p ack -e 40 -i 245 -a 8 h -t 30.3857 -s 310 -d 311 -p ack -e 40 -i 245 -a 8 r -t 30.3857 -s 308 -d 310 -p ack -e 40 -i 245 -a 8 + -t 30.3859 -s 211 -d 212 -p ack -e 40 -i 256 -a 9 - -t 30.3859 -s 211 -d 212 -p ack -e 40 -i 256 -a 9 - -t 30.3859 -s 212 -d 211 -p tcp -e 1000 -i 269 -a 4 h -t 30.3859 -s 211 -d 212 -p ack -e 40 -i 256 -a 9 h -t 30.3859 -s 212 -d 211 -p tcp -e 1000 -i 269 -a 4 r -t 30.3859 -s 210 -d 211 -p ack -e 40 -i 256 -a 9 r -t 30.3866 -s 210 -d 209 -p tcp -e 1000 -i 251 -a 9 + -t 30.3867 -s 110 -d 100 -p tcp -e 1000 -i 279 -a 0 - -t 30.3867 -s 110 -d 100 -p tcp -e 1000 -i 279 -a 0 - -t 30.3867 -s 111 -d 110 -p tcp -e 1000 -i 287 -a 5 h -t 30.3867 -s 110 -d 100 -p tcp -e 1000 -i 279 -a 0 h -t 30.3867 -s 111 -d 110 -p tcp -e 1000 -i 287 -a 5 r -t 30.3867 -s 111 -d 110 -p tcp -e 1000 -i 279 -a 0 + -t 30.3869 -s 211 -d 210 -p tcp -e 1000 -i 268 -a 4 + -t 30.3869 -s 212 -d 211 -p tcp -e 1000 -i 270 -a 9 - -t 30.3869 -s 211 -d 210 -p tcp -e 1000 -i 267 -a 9 - -t 30.3869 -s 212 -d 211 -p tcp -e 1000 -i 270 -a 9 h -t 30.3869 -s 211 -d 210 -p tcp -e 1000 -i 267 -a 9 h -t 30.3869 -s 212 -d 211 -p tcp -e 1000 -i 270 -a 9 r -t 30.3869 -s 211 -d 212 -p ack -e 40 -i 256 -a 9 r -t 30.3871 -s 212 -d 211 -p tcp -e 1000 -i 268 -a 4 + -t 30.3877 -s 211 -d 210 -p tcp -e 1000 -i 269 -a 4 r -t 30.3879 -s 212 -d 211 -p tcp -e 1000 -i 269 -a 4 + -t 30.3885 -s 100 -d 110 -p ack -e 40 -i 292 -a 0 - -t 30.3885 -s 100 -d 110 -p ack -e 40 -i 292 -a 0 h -t 30.3885 -s 100 -d 110 -p ack -e 40 -i 292 -a 0 + -t 30.3887 -s 211 -d 210 -p tcp -e 1000 -i 270 -a 9 r -t 30.3887 -s 110 -d 100 -p tcp -e 1000 -i 279 -a 0 - -t 30.3889 -s 311 -d 310 -p tcp -e 1000 -i 244 -a 4 h -t 30.3889 -s 311 -d 310 -p tcp -e 1000 -i 244 -a 4 r -t 30.3889 -s 212 -d 211 -p tcp -e 1000 -i 270 -a 9 + -t 30.3895 -s 110 -d 111 -p ack -e 40 -i 292 -a 0 - -t 30.3895 -s 110 -d 111 -p ack -e 40 -i 292 -a 0 h -t 30.3895 -s 110 -d 111 -p ack -e 40 -i 292 -a 0 r -t 30.3895 -s 100 -d 110 -p ack -e 40 -i 292 -a 0 + -t 30.3944 -s 204 -d 210 -p ack -e 40 -i 271 -a 4 - -t 30.3944 -s 204 -d 210 -p ack -e 40 -i 271 -a 4 h -t 30.3944 -s 204 -d 210 -p ack -e 40 -i 271 -a 4 + -t 30.3946 -s 210 -d 209 -p tcp -e 1000 -i 252 -a 9 - -t 30.3946 -s 210 -d 209 -p tcp -e 1000 -i 252 -a 9 h -t 30.3946 -s 210 -d 209 -p tcp -e 1000 -i 252 -a 9 r -t 30.3946 -s 211 -d 210 -p tcp -e 1000 -i 252 -a 9 r -t 30.3954 -s 204 -d 210 -p ack -e 40 -i 271 -a 4 + -t 30.3955 -s 210 -d 211 -p ack -e 40 -i 271 -a 4 - -t 30.3955 -s 210 -d 211 -p ack -e 40 -i 271 -a 4 h -t 30.3955 -s 210 -d 211 -p ack -e 40 -i 271 -a 4 + -t 30.3964 -s 209 -d 210 -p ack -e 40 -i 272 -a 9 - -t 30.3964 -s 209 -d 210 -p ack -e 40 -i 272 -a 9 h -t 30.3964 -s 209 -d 210 -p ack -e 40 -i 272 -a 9 r -t 30.3966 -s 210 -d 209 -p tcp -e 1000 -i 252 -a 9 + -t 30.3967 -s 110 -d 100 -p tcp -e 1000 -i 280 -a 0 - -t 30.3967 -s 110 -d 100 -p tcp -e 1000 -i 280 -a 0 - -t 30.3967 -s 111 -d 110 -p tcp -e 1000 -i 288 -a 5 h -t 30.3967 -s 110 -d 100 -p tcp -e 1000 -i 280 -a 0 h -t 30.3967 -s 111 -d 110 -p tcp -e 1000 -i 288 -a 5 r -t 30.3967 -s 111 -d 110 -p tcp -e 1000 -i 280 -a 0 - -t 30.3969 -s 211 -d 210 -p tcp -e 1000 -i 268 -a 4 h -t 30.3969 -s 211 -d 210 -p tcp -e 1000 -i 268 -a 4 r -t 30.3974 -s 209 -d 210 -p ack -e 40 -i 272 -a 9 + -t 30.3975 -s 210 -d 211 -p ack -e 40 -i 272 -a 9 - -t 30.3975 -s 210 -d 211 -p ack -e 40 -i 272 -a 9 h -t 30.3975 -s 210 -d 211 -p ack -e 40 -i 272 -a 9 r -t 30.3987 -s 110 -d 100 -p tcp -e 1000 -i 280 -a 0 + -t 30.4046 -s 210 -d 204 -p tcp -e 1000 -i 255 -a 4 - -t 30.4046 -s 210 -d 204 -p tcp -e 1000 -i 255 -a 4 h -t 30.4046 -s 210 -d 204 -p tcp -e 1000 -i 255 -a 4 r -t 30.4046 -s 211 -d 210 -p tcp -e 1000 -i 255 -a 4 + -t 30.4061 -s 311 -d 312 -p ack -e 40 -i 235 -a 2 - -t 30.4061 -s 311 -d 312 -p ack -e 40 -i 235 -a 2 h -t 30.4061 -s 311 -d 312 -p ack -e 40 -i 235 -a 2 r -t 30.4061 -s 310 -d 311 -p ack -e 40 -i 235 -a 2 + -t 30.4065 -s 311 -d 312 -p ack -e 40 -i 236 -a 9 - -t 30.4065 -s 311 -d 312 -p ack -e 40 -i 236 -a 9 h -t 30.4065 -s 311 -d 312 -p ack -e 40 -i 236 -a 9 r -t 30.4065 -s 310 -d 311 -p ack -e 40 -i 236 -a 9 r -t 30.4066 -s 210 -d 204 -p tcp -e 1000 -i 255 -a 4 - -t 30.4067 -s 111 -d 110 -p tcp -e 1000 -i 289 -a 5 h -t 30.4067 -s 111 -d 110 -p tcp -e 1000 -i 289 -a 5 - -t 30.4069 -s 211 -d 210 -p tcp -e 1000 -i 269 -a 4 h -t 30.4069 -s 211 -d 210 -p tcp -e 1000 -i 269 -a 4 r -t 30.4071 -s 311 -d 312 -p ack -e 40 -i 235 -a 2 + -t 30.4075 -s 312 -d 311 -p tcp -e 1000 -i 246 -a 9 + -t 30.4075 -s 312 -d 311 -p tcp -e 1000 -i 247 -a 9 - -t 30.4075 -s 312 -d 311 -p tcp -e 1000 -i 246 -a 9 h -t 30.4075 -s 312 -d 311 -p tcp -e 1000 -i 246 -a 9 r -t 30.4075 -s 311 -d 312 -p ack -e 40 -i 236 -a 9 + -t 30.4079 -s 211 -d 212 -p ack -e 40 -i 260 -a 7 - -t 30.4079 -s 211 -d 212 -p ack -e 40 -i 260 -a 7 h -t 30.4079 -s 211 -d 212 -p ack -e 40 -i 260 -a 7 r -t 30.4079 -s 210 -d 211 -p ack -e 40 -i 260 -a 7 - -t 30.4083 -s 312 -d 311 -p tcp -e 1000 -i 247 -a 9 h -t 30.4083 -s 312 -d 311 -p tcp -e 1000 -i 247 -a 9 r -t 30.4089 -s 211 -d 212 -p ack -e 40 -i 260 -a 7 + -t 30.4093 -s 311 -d 310 -p tcp -e 1000 -i 246 -a 9 - -t 30.4093 -s 311 -d 310 -p tcp -e 1000 -i 246 -a 9 h -t 30.4093 -s 311 -d 310 -p tcp -e 1000 -i 246 -a 9 r -t 30.4095 -s 312 -d 311 -p tcp -e 1000 -i 246 -a 9 + -t 30.4101 -s 311 -d 310 -p tcp -e 1000 -i 247 -a 9 r -t 30.4103 -s 312 -d 311 -p tcp -e 1000 -i 247 -a 9 + -t 30.4138 -s 111 -d 112 -p ack -e 40 -i 281 -a 0 - -t 30.4138 -s 111 -d 112 -p ack -e 40 -i 281 -a 0 h -t 30.4138 -s 111 -d 112 -p ack -e 40 -i 281 -a 0 r -t 30.4138 -s 110 -d 111 -p ack -e 40 -i 281 -a 0 + -t 30.4146 -s 210 -d 207 -p tcp -e 1000 -i 257 -a 7 - -t 30.4146 -s 210 -d 207 -p tcp -e 1000 -i 257 -a 7 h -t 30.4146 -s 210 -d 207 -p tcp -e 1000 -i 257 -a 7 r -t 30.4146 -s 211 -d 210 -p tcp -e 1000 -i 257 -a 7 r -t 30.4148 -s 111 -d 112 -p ack -e 40 -i 281 -a 0 r -t 30.4166 -s 210 -d 207 -p tcp -e 1000 -i 257 -a 7 - -t 30.4167 -s 111 -d 110 -p tcp -e 1000 -i 290 -a 5 h -t 30.4167 -s 111 -d 110 -p tcp -e 1000 -i 290 -a 5 - -t 30.4169 -s 211 -d 210 -p tcp -e 1000 -i 270 -a 9 h -t 30.4169 -s 211 -d 210 -p tcp -e 1000 -i 270 -a 9 - -t 30.4193 -s 311 -d 310 -p tcp -e 1000 -i 247 -a 9 h -t 30.4193 -s 311 -d 310 -p tcp -e 1000 -i 247 -a 9 + -t 30.4199 -s 211 -d 212 -p ack -e 40 -i 261 -a 7 - -t 30.4199 -s 211 -d 212 -p ack -e 40 -i 261 -a 7 h -t 30.4199 -s 211 -d 212 -p ack -e 40 -i 261 -a 7 r -t 30.4199 -s 210 -d 211 -p ack -e 40 -i 261 -a 7 r -t 30.4209 -s 211 -d 212 -p ack -e 40 -i 261 -a 7 + -t 30.4246 -s 210 -d 207 -p tcp -e 1000 -i 258 -a 7 - -t 30.4246 -s 210 -d 207 -p tcp -e 1000 -i 258 -a 7 h -t 30.4246 -s 210 -d 207 -p tcp -e 1000 -i 258 -a 7 r -t 30.4246 -s 211 -d 210 -p tcp -e 1000 -i 258 -a 7 + -t 30.4264 -s 207 -d 210 -p ack -e 40 -i 273 -a 7 - -t 30.4264 -s 207 -d 210 -p ack -e 40 -i 273 -a 7 h -t 30.4264 -s 207 -d 210 -p ack -e 40 -i 273 -a 7 r -t 30.4266 -s 210 -d 207 -p tcp -e 1000 -i 258 -a 7 r -t 30.4274 -s 207 -d 210 -p ack -e 40 -i 273 -a 7 + -t 30.4275 -s 210 -d 211 -p ack -e 40 -i 273 -a 7 - -t 30.4275 -s 210 -d 211 -p ack -e 40 -i 273 -a 7 h -t 30.4275 -s 210 -d 211 -p ack -e 40 -i 273 -a 7 + -t 30.4346 -s 210 -d 207 -p tcp -e 1000 -i 259 -a 7 - -t 30.4346 -s 210 -d 207 -p tcp -e 1000 -i 259 -a 7 h -t 30.4346 -s 210 -d 207 -p tcp -e 1000 -i 259 -a 7 r -t 30.4346 -s 211 -d 210 -p tcp -e 1000 -i 259 -a 7 r -t 30.4366 -s 210 -d 207 -p tcp -e 1000 -i 259 -a 7 + -t 30.4389 -s 310 -d 307 -p tcp -e 1000 -i 237 -a 7 - -t 30.4389 -s 310 -d 307 -p tcp -e 1000 -i 237 -a 7 h -t 30.4389 -s 310 -d 307 -p tcp -e 1000 -i 237 -a 7 r -t 30.4389 -s 311 -d 310 -p tcp -e 1000 -i 237 -a 7 r -t 30.4409 -s 310 -d 307 -p tcp -e 1000 -i 237 -a 7 + -t 30.4467 -s 110 -d 104 -p tcp -e 1000 -i 282 -a 4 - -t 30.4467 -s 110 -d 104 -p tcp -e 1000 -i 282 -a 4 h -t 30.4467 -s 110 -d 104 -p tcp -e 1000 -i 282 -a 4 r -t 30.4467 -s 111 -d 110 -p tcp -e 1000 -i 282 -a 4 + -t 30.4485 -s 104 -d 110 -p ack -e 40 -i 293 -a 4 - -t 30.4485 -s 104 -d 110 -p ack -e 40 -i 293 -a 4 h -t 30.4485 -s 104 -d 110 -p ack -e 40 -i 293 -a 4 r -t 30.4487 -s 110 -d 104 -p tcp -e 1000 -i 282 -a 4 + -t 30.4489 -s 310 -d 307 -p tcp -e 1000 -i 238 -a 7 - -t 30.4489 -s 310 -d 307 -p tcp -e 1000 -i 238 -a 7 h -t 30.4489 -s 310 -d 307 -p tcp -e 1000 -i 238 -a 7 r -t 30.4489 -s 311 -d 310 -p tcp -e 1000 -i 238 -a 7 + -t 30.4495 -s 110 -d 111 -p ack -e 40 -i 293 -a 4 - -t 30.4495 -s 110 -d 111 -p ack -e 40 -i 293 -a 4 h -t 30.4495 -s 110 -d 111 -p ack -e 40 -i 293 -a 4 r -t 30.4495 -s 104 -d 110 -p ack -e 40 -i 293 -a 4 + -t 30.4507 -s 307 -d 310 -p ack -e 40 -i 248 -a 7 - -t 30.4507 -s 307 -d 310 -p ack -e 40 -i 248 -a 7 h -t 30.4507 -s 307 -d 310 -p ack -e 40 -i 248 -a 7 r -t 30.4509 -s 310 -d 307 -p tcp -e 1000 -i 238 -a 7 r -t 30.4517 -s 307 -d 310 -p ack -e 40 -i 248 -a 7 + -t 30.4518 -s 310 -d 311 -p ack -e 40 -i 248 -a 7 - -t 30.4518 -s 310 -d 311 -p ack -e 40 -i 248 -a 7 h -t 30.4518 -s 310 -d 311 -p ack -e 40 -i 248 -a 7 + -t 30.4541 -s 210 -d 205 -p tcp -e 1000 -i 262 -a 5 - -t 30.4541 -s 210 -d 205 -p tcp -e 1000 -i 262 -a 5 h -t 30.4541 -s 210 -d 205 -p tcp -e 1000 -i 262 -a 5 r -t 30.4541 -s 211 -d 210 -p tcp -e 1000 -i 262 -a 5 + -t 30.4543 -s 212 -d 211 -p tcp -e 1000 -i 274 -a 5 - -t 30.4543 -s 212 -d 211 -p tcp -e 1000 -i 274 -a 5 h -t 30.4543 -s 212 -d 211 -p tcp -e 1000 -i 274 -a 5 + -t 30.4561 -s 211 -d 210 -p tcp -e 1000 -i 274 -a 5 + -t 30.4561 -s 311 -d 312 -p ack -e 40 -i 240 -a 3 - -t 30.4561 -s 211 -d 210 -p tcp -e 1000 -i 274 -a 5 - -t 30.4561 -s 311 -d 312 -p ack -e 40 -i 240 -a 3 h -t 30.4561 -s 211 -d 210 -p tcp -e 1000 -i 274 -a 5 h -t 30.4561 -s 311 -d 312 -p ack -e 40 -i 240 -a 3 r -t 30.4561 -s 210 -d 205 -p tcp -e 1000 -i 262 -a 5 r -t 30.4561 -s 310 -d 311 -p ack -e 40 -i 240 -a 3 r -t 30.4563 -s 212 -d 211 -p tcp -e 1000 -i 274 -a 5 + -t 30.4567 -s 110 -d 104 -p tcp -e 1000 -i 283 -a 4 - -t 30.4567 -s 110 -d 104 -p tcp -e 1000 -i 283 -a 4 h -t 30.4567 -s 110 -d 104 -p tcp -e 1000 -i 283 -a 4 r -t 30.4567 -s 111 -d 110 -p tcp -e 1000 -i 283 -a 4 r -t 30.4571 -s 311 -d 312 -p ack -e 40 -i 240 -a 3 + -t 30.4585 -s 104 -d 110 -p ack -e 40 -i 294 -a 4 - -t 30.4585 -s 104 -d 110 -p ack -e 40 -i 294 -a 4 h -t 30.4585 -s 104 -d 110 -p ack -e 40 -i 294 -a 4 r -t 30.4587 -s 110 -d 104 -p tcp -e 1000 -i 283 -a 4 + -t 30.4589 -s 310 -d 305 -p tcp -e 1000 -i 239 -a 5 - -t 30.4589 -s 310 -d 305 -p tcp -e 1000 -i 239 -a 5 h -t 30.4589 -s 310 -d 305 -p tcp -e 1000 -i 239 -a 5 r -t 30.4589 -s 311 -d 310 -p tcp -e 1000 -i 239 -a 5 + -t 30.4595 -s 110 -d 111 -p ack -e 40 -i 294 -a 4 - -t 30.4595 -s 110 -d 111 -p ack -e 40 -i 294 -a 4 h -t 30.4595 -s 110 -d 111 -p ack -e 40 -i 294 -a 4 r -t 30.4595 -s 104 -d 110 -p ack -e 40 -i 294 -a 4 r -t 30.4609 -s 310 -d 305 -p tcp -e 1000 -i 239 -a 5 + -t 30.4638 -s 111 -d 112 -p ack -e 40 -i 291 -a 4 - -t 30.4638 -s 111 -d 112 -p ack -e 40 -i 291 -a 4 h -t 30.4638 -s 111 -d 112 -p ack -e 40 -i 291 -a 4 r -t 30.4638 -s 110 -d 111 -p ack -e 40 -i 291 -a 4 r -t 30.4648 -s 111 -d 112 -p ack -e 40 -i 291 -a 4 + -t 30.4659 -s 211 -d 212 -p ack -e 40 -i 265 -a 0 - -t 30.4659 -s 211 -d 212 -p ack -e 40 -i 265 -a 0 h -t 30.4659 -s 211 -d 212 -p ack -e 40 -i 265 -a 0 r -t 30.4659 -s 210 -d 211 -p ack -e 40 -i 265 -a 0 + -t 30.4667 -s 110 -d 105 -p tcp -e 1000 -i 284 -a 5 + -t 30.4667 -s 210 -d 200 -p tcp -e 1000 -i 263 -a 0 - -t 30.4667 -s 110 -d 105 -p tcp -e 1000 -i 284 -a 5 - -t 30.4667 -s 210 -d 200 -p tcp -e 1000 -i 263 -a 0 h -t 30.4667 -s 110 -d 105 -p tcp -e 1000 -i 284 -a 5 h -t 30.4667 -s 210 -d 200 -p tcp -e 1000 -i 263 -a 0 r -t 30.4667 -s 111 -d 110 -p tcp -e 1000 -i 284 -a 5 r -t 30.4667 -s 211 -d 210 -p tcp -e 1000 -i 263 -a 0 + -t 30.4669 -s 212 -d 211 -p tcp -e 1000 -i 275 -a 0 + -t 30.4669 -s 212 -d 211 -p tcp -e 1000 -i 276 -a 0 - -t 30.4669 -s 212 -d 211 -p tcp -e 1000 -i 275 -a 0 h -t 30.4669 -s 212 -d 211 -p tcp -e 1000 -i 275 -a 0 r -t 30.4669 -s 211 -d 212 -p ack -e 40 -i 265 -a 0 - -t 30.4677 -s 212 -d 211 -p tcp -e 1000 -i 276 -a 0 h -t 30.4677 -s 212 -d 211 -p tcp -e 1000 -i 276 -a 0 + -t 30.4685 -s 200 -d 210 -p ack -e 40 -i 277 -a 0 - -t 30.4685 -s 200 -d 210 -p ack -e 40 -i 277 -a 0 h -t 30.4685 -s 200 -d 210 -p ack -e 40 -i 277 -a 0 + -t 30.4687 -s 211 -d 210 -p tcp -e 1000 -i 275 -a 0 - -t 30.4687 -s 211 -d 210 -p tcp -e 1000 -i 275 -a 0 h -t 30.4687 -s 211 -d 210 -p tcp -e 1000 -i 275 -a 0 r -t 30.4687 -s 110 -d 105 -p tcp -e 1000 -i 284 -a 5 r -t 30.4687 -s 210 -d 200 -p tcp -e 1000 -i 263 -a 0 + -t 30.4689 -s 310 -d 300 -p tcp -e 1000 -i 241 -a 0 - -t 30.4689 -s 310 -d 300 -p tcp -e 1000 -i 241 -a 0 h -t 30.4689 -s 310 -d 300 -p tcp -e 1000 -i 241 -a 0 r -t 30.4689 -s 212 -d 211 -p tcp -e 1000 -i 275 -a 0 r -t 30.4689 -s 311 -d 310 -p tcp -e 1000 -i 241 -a 0 + -t 30.4695 -s 210 -d 211 -p ack -e 40 -i 277 -a 0 + -t 30.4695 -s 211 -d 210 -p tcp -e 1000 -i 276 -a 0 - -t 30.4695 -s 210 -d 211 -p ack -e 40 -i 277 -a 0 h -t 30.4695 -s 210 -d 211 -p ack -e 40 -i 277 -a 0 r -t 30.4695 -s 200 -d 210 -p ack -e 40 -i 277 -a 0 r -t 30.4697 -s 212 -d 211 -p tcp -e 1000 -i 276 -a 0 r -t 30.4709 -s 310 -d 300 -p tcp -e 1000 -i 241 -a 0 + -t 30.4767 -s 110 -d 105 -p tcp -e 1000 -i 285 -a 5 + -t 30.4767 -s 210 -d 200 -p tcp -e 1000 -i 264 -a 0 - -t 30.4767 -s 110 -d 105 -p tcp -e 1000 -i 285 -a 5 - -t 30.4767 -s 210 -d 200 -p tcp -e 1000 -i 264 -a 0 h -t 30.4767 -s 110 -d 105 -p tcp -e 1000 -i 285 -a 5 h -t 30.4767 -s 210 -d 200 -p tcp -e 1000 -i 264 -a 0 r -t 30.4767 -s 111 -d 110 -p tcp -e 1000 -i 285 -a 5 r -t 30.4767 -s 211 -d 210 -p tcp -e 1000 -i 264 -a 0 + -t 30.4785 -s 105 -d 110 -p ack -e 40 -i 295 -a 5 - -t 30.4785 -s 105 -d 110 -p ack -e 40 -i 295 -a 5 h -t 30.4785 -s 105 -d 110 -p ack -e 40 -i 295 -a 5 - -t 30.4787 -s 211 -d 210 -p tcp -e 1000 -i 276 -a 0 h -t 30.4787 -s 211 -d 210 -p tcp -e 1000 -i 276 -a 0 r -t 30.4787 -s 110 -d 105 -p tcp -e 1000 -i 285 -a 5 r -t 30.4787 -s 210 -d 200 -p tcp -e 1000 -i 264 -a 0 + -t 30.4789 -s 310 -d 300 -p tcp -e 1000 -i 242 -a 0 - -t 30.4789 -s 310 -d 300 -p tcp -e 1000 -i 242 -a 0 h -t 30.4789 -s 310 -d 300 -p tcp -e 1000 -i 242 -a 0 r -t 30.4789 -s 311 -d 310 -p tcp -e 1000 -i 242 -a 0 + -t 30.4795 -s 110 -d 111 -p ack -e 40 -i 295 -a 5 - -t 30.4795 -s 110 -d 111 -p ack -e 40 -i 295 -a 5 h -t 30.4795 -s 110 -d 111 -p ack -e 40 -i 295 -a 5 r -t 30.4795 -s 105 -d 110 -p ack -e 40 -i 295 -a 5 + -t 30.4807 -s 300 -d 310 -p ack -e 40 -i 249 -a 0 - -t 30.4807 -s 300 -d 310 -p ack -e 40 -i 249 -a 0 h -t 30.4807 -s 300 -d 310 -p ack -e 40 -i 249 -a 0 r -t 30.4809 -s 310 -d 300 -p tcp -e 1000 -i 242 -a 0 r -t 30.4817 -s 300 -d 310 -p ack -e 40 -i 249 -a 0 + -t 30.4818 -s 310 -d 311 -p ack -e 40 -i 249 -a 0 - -t 30.4818 -s 310 -d 311 -p ack -e 40 -i 249 -a 0 h -t 30.4818 -s 310 -d 311 -p ack -e 40 -i 249 -a 0 + -t 30.4861 -s 311 -d 312 -p ack -e 40 -i 245 -a 8 - -t 30.4861 -s 311 -d 312 -p ack -e 40 -i 245 -a 8 h -t 30.4861 -s 311 -d 312 -p ack -e 40 -i 245 -a 8 r -t 30.4861 -s 310 -d 311 -p ack -e 40 -i 245 -a 8 + -t 30.4867 -s 110 -d 105 -p tcp -e 1000 -i 286 -a 5 - -t 30.4867 -s 110 -d 105 -p tcp -e 1000 -i 286 -a 5 h -t 30.4867 -s 110 -d 105 -p tcp -e 1000 -i 286 -a 5 r -t 30.4867 -s 111 -d 110 -p tcp -e 1000 -i 286 -a 5 + -t 30.4869 -s 210 -d 209 -p tcp -e 1000 -i 266 -a 9 - -t 30.4869 -s 210 -d 209 -p tcp -e 1000 -i 266 -a 9 h -t 30.4869 -s 210 -d 209 -p tcp -e 1000 -i 266 -a 9 r -t 30.4869 -s 211 -d 210 -p tcp -e 1000 -i 266 -a 9 r -t 30.4871 -s 311 -d 312 -p ack -e 40 -i 245 -a 8 r -t 30.4887 -s 110 -d 105 -p tcp -e 1000 -i 286 -a 5 + -t 30.4889 -s 310 -d 304 -p tcp -e 1000 -i 243 -a 4 - -t 30.4889 -s 310 -d 304 -p tcp -e 1000 -i 243 -a 4 h -t 30.4889 -s 310 -d 304 -p tcp -e 1000 -i 243 -a 4 r -t 30.4889 -s 210 -d 209 -p tcp -e 1000 -i 266 -a 9 r -t 30.4889 -s 311 -d 310 -p tcp -e 1000 -i 243 -a 4 + -t 30.4899 -s 111 -d 112 -p ack -e 40 -i 292 -a 0 - -t 30.4899 -s 111 -d 112 -p ack -e 40 -i 292 -a 0 h -t 30.4899 -s 111 -d 112 -p ack -e 40 -i 292 -a 0 r -t 30.4899 -s 110 -d 111 -p ack -e 40 -i 292 -a 0 r -t 30.4909 -s 111 -d 112 -p ack -e 40 -i 292 -a 0 r -t 30.4909 -s 310 -d 304 -p tcp -e 1000 -i 243 -a 4 + -t 30.4959 -s 211 -d 212 -p ack -e 40 -i 271 -a 4 - -t 30.4959 -s 211 -d 212 -p ack -e 40 -i 271 -a 4 h -t 30.4959 -s 211 -d 212 -p ack -e 40 -i 271 -a 4 r -t 30.4959 -s 210 -d 211 -p ack -e 40 -i 271 -a 4 + -t 30.4967 -s 110 -d 105 -p tcp -e 1000 -i 287 -a 5 - -t 30.4967 -s 110 -d 105 -p tcp -e 1000 -i 287 -a 5 h -t 30.4967 -s 110 -d 105 -p tcp -e 1000 -i 287 -a 5 r -t 30.4967 -s 111 -d 110 -p tcp -e 1000 -i 287 -a 5 + -t 30.4969 -s 210 -d 209 -p tcp -e 1000 -i 267 -a 9 + -t 30.4969 -s 212 -d 211 -p tcp -e 1000 -i 278 -a 4 + -t 30.4969 -s 212 -d 211 -p tcp -e 1000 -i 279 -a 4 - -t 30.4969 -s 210 -d 209 -p tcp -e 1000 -i 267 -a 9 - -t 30.4969 -s 212 -d 211 -p tcp -e 1000 -i 278 -a 4 h -t 30.4969 -s 210 -d 209 -p tcp -e 1000 -i 267 -a 9 h -t 30.4969 -s 212 -d 211 -p tcp -e 1000 -i 278 -a 4 r -t 30.4969 -s 211 -d 210 -p tcp -e 1000 -i 267 -a 9 r -t 30.4969 -s 211 -d 212 -p ack -e 40 -i 271 -a 4 - -t 30.4977 -s 212 -d 211 -p tcp -e 1000 -i 279 -a 4 h -t 30.4977 -s 212 -d 211 -p tcp -e 1000 -i 279 -a 4 + -t 30.4979 -s 211 -d 212 -p ack -e 40 -i 272 -a 9 - -t 30.4979 -s 211 -d 212 -p ack -e 40 -i 272 -a 9 h -t 30.4979 -s 211 -d 212 -p ack -e 40 -i 272 -a 9 r -t 30.4979 -s 210 -d 211 -p ack -e 40 -i 272 -a 9 + -t 30.4985 -s 100 -d 110 -p ack -e 40 -i 296 -a 0 + -t 30.4985 -s 105 -d 110 -p ack -e 40 -i 297 -a 5 - -t 30.4985 -s 100 -d 110 -p ack -e 40 -i 296 -a 0 - -t 30.4985 -s 105 -d 110 -p ack -e 40 -i 297 -a 5 h -t 30.4985 -s 100 -d 110 -p ack -e 40 -i 296 -a 0 h -t 30.4985 -s 105 -d 110 -p ack -e 40 -i 297 -a 5 + -t 30.4987 -s 209 -d 210 -p ack -e 40 -i 280 -a 9 + -t 30.4987 -s 211 -d 210 -p tcp -e 1000 -i 278 -a 4 - -t 30.4987 -s 209 -d 210 -p ack -e 40 -i 280 -a 9 - -t 30.4987 -s 211 -d 210 -p tcp -e 1000 -i 278 -a 4 h -t 30.4987 -s 209 -d 210 -p ack -e 40 -i 280 -a 9 h -t 30.4987 -s 211 -d 210 -p tcp -e 1000 -i 278 -a 4 r -t 30.4987 -s 110 -d 105 -p tcp -e 1000 -i 287 -a 5 + -t 30.4989 -s 310 -d 304 -p tcp -e 1000 -i 244 -a 4 - -t 30.4989 -s 310 -d 304 -p tcp -e 1000 -i 244 -a 4 h -t 30.4989 -s 310 -d 304 -p tcp -e 1000 -i 244 -a 4 r -t 30.4989 -s 210 -d 209 -p tcp -e 1000 -i 267 -a 9 r -t 30.4989 -s 211 -d 212 -p ack -e 40 -i 272 -a 9 r -t 30.4989 -s 212 -d 211 -p tcp -e 1000 -i 278 -a 4 r -t 30.4989 -s 311 -d 310 -p tcp -e 1000 -i 244 -a 4 + -t 30.4995 -s 110 -d 111 -p ack -e 40 -i 296 -a 0 + -t 30.4995 -s 110 -d 111 -p ack -e 40 -i 297 -a 5 + -t 30.4995 -s 211 -d 210 -p tcp -e 1000 -i 279 -a 4 - -t 30.4995 -s 110 -d 111 -p ack -e 40 -i 296 -a 0 h -t 30.4995 -s 110 -d 111 -p ack -e 40 -i 296 -a 0 r -t 30.4995 -s 100 -d 110 -p ack -e 40 -i 296 -a 0 r -t 30.4995 -s 105 -d 110 -p ack -e 40 -i 297 -a 5 + -t 30.4997 -s 210 -d 211 -p ack -e 40 -i 280 -a 9 - -t 30.4997 -s 210 -d 211 -p ack -e 40 -i 280 -a 9 h -t 30.4997 -s 210 -d 211 -p ack -e 40 -i 280 -a 9 r -t 30.4997 -s 209 -d 210 -p ack -e 40 -i 280 -a 9 r -t 30.4997 -s 212 -d 211 -p tcp -e 1000 -i 279 -a 4 - -t 30.4999 -s 110 -d 111 -p ack -e 40 -i 297 -a 5 h -t 30.4999 -s 110 -d 111 -p ack -e 40 -i 297 -a 5 + -t 30.5007 -s 304 -d 310 -p ack -e 40 -i 250 -a 4 - -t 30.5007 -s 304 -d 310 -p ack -e 40 -i 250 -a 4 h -t 30.5007 -s 304 -d 310 -p ack -e 40 -i 250 -a 4 r -t 30.5009 -s 310 -d 304 -p tcp -e 1000 -i 244 -a 4 r -t 30.5017 -s 304 -d 310 -p ack -e 40 -i 250 -a 4 + -t 30.5018 -s 310 -d 311 -p ack -e 40 -i 250 -a 4 - -t 30.5018 -s 310 -d 311 -p ack -e 40 -i 250 -a 4 h -t 30.5018 -s 310 -d 311 -p ack -e 40 -i 250 -a 4 + -t 30.5064 -s 204 -d 210 -p ack -e 40 -i 281 -a 4 - -t 30.5064 -s 204 -d 210 -p ack -e 40 -i 281 -a 4 h -t 30.5064 -s 204 -d 210 -p ack -e 40 -i 281 -a 4 + -t 30.5067 -s 110 -d 105 -p tcp -e 1000 -i 288 -a 5 - -t 30.5067 -s 110 -d 105 -p tcp -e 1000 -i 288 -a 5 h -t 30.5067 -s 110 -d 105 -p tcp -e 1000 -i 288 -a 5 r -t 30.5067 -s 111 -d 110 -p tcp -e 1000 -i 288 -a 5 + -t 30.5069 -s 210 -d 204 -p tcp -e 1000 -i 268 -a 4 - -t 30.5069 -s 210 -d 204 -p tcp -e 1000 -i 268 -a 4 h -t 30.5069 -s 210 -d 204 -p tcp -e 1000 -i 268 -a 4 r -t 30.5069 -s 211 -d 210 -p tcp -e 1000 -i 268 -a 4 r -t 30.5074 -s 204 -d 210 -p ack -e 40 -i 281 -a 4 + -t 30.5075 -s 210 -d 211 -p ack -e 40 -i 281 -a 4 - -t 30.5075 -s 210 -d 211 -p ack -e 40 -i 281 -a 4 h -t 30.5075 -s 210 -d 211 -p ack -e 40 -i 281 -a 4 - -t 30.5087 -s 211 -d 210 -p tcp -e 1000 -i 279 -a 4 h -t 30.5087 -s 211 -d 210 -p tcp -e 1000 -i 279 -a 4 r -t 30.5087 -s 110 -d 105 -p tcp -e 1000 -i 288 -a 5 r -t 30.5089 -s 210 -d 204 -p tcp -e 1000 -i 268 -a 4 + -t 30.5167 -s 110 -d 105 -p tcp -e 1000 -i 289 -a 5 - -t 30.5167 -s 110 -d 105 -p tcp -e 1000 -i 289 -a 5 h -t 30.5167 -s 110 -d 105 -p tcp -e 1000 -i 289 -a 5 r -t 30.5167 -s 111 -d 110 -p tcp -e 1000 -i 289 -a 5 + -t 30.5169 -s 210 -d 204 -p tcp -e 1000 -i 269 -a 4 - -t 30.5169 -s 210 -d 204 -p tcp -e 1000 -i 269 -a 4 h -t 30.5169 -s 210 -d 204 -p tcp -e 1000 -i 269 -a 4 r -t 30.5169 -s 211 -d 210 -p tcp -e 1000 -i 269 -a 4 + -t 30.5185 -s 105 -d 110 -p ack -e 40 -i 298 -a 5 - -t 30.5185 -s 105 -d 110 -p ack -e 40 -i 298 -a 5 h -t 30.5185 -s 105 -d 110 -p ack -e 40 -i 298 -a 5 + -t 30.5187 -s 204 -d 210 -p ack -e 40 -i 282 -a 4 - -t 30.5187 -s 204 -d 210 -p ack -e 40 -i 282 -a 4 h -t 30.5187 -s 204 -d 210 -p ack -e 40 -i 282 -a 4 r -t 30.5187 -s 110 -d 105 -p tcp -e 1000 -i 289 -a 5 r -t 30.5189 -s 210 -d 204 -p tcp -e 1000 -i 269 -a 4 + -t 30.5193 -s 310 -d 309 -p tcp -e 1000 -i 246 -a 9 - -t 30.5193 -s 310 -d 309 -p tcp -e 1000 -i 246 -a 9 h -t 30.5193 -s 310 -d 309 -p tcp -e 1000 -i 246 -a 9 r -t 30.5193 -s 311 -d 310 -p tcp -e 1000 -i 246 -a 9 + -t 30.5195 -s 110 -d 111 -p ack -e 40 -i 298 -a 5 - -t 30.5195 -s 110 -d 111 -p ack -e 40 -i 298 -a 5 h -t 30.5195 -s 110 -d 111 -p ack -e 40 -i 298 -a 5 r -t 30.5195 -s 105 -d 110 -p ack -e 40 -i 298 -a 5 + -t 30.5197 -s 210 -d 211 -p ack -e 40 -i 282 -a 4 - -t 30.5197 -s 210 -d 211 -p ack -e 40 -i 282 -a 4 h -t 30.5197 -s 210 -d 211 -p ack -e 40 -i 282 -a 4 r -t 30.5197 -s 204 -d 210 -p ack -e 40 -i 282 -a 4 r -t 30.5213 -s 310 -d 309 -p tcp -e 1000 -i 246 -a 9 + -t 30.5267 -s 110 -d 105 -p tcp -e 1000 -i 290 -a 5 - -t 30.5267 -s 110 -d 105 -p tcp -e 1000 -i 290 -a 5 h -t 30.5267 -s 110 -d 105 -p tcp -e 1000 -i 290 -a 5 r -t 30.5267 -s 111 -d 110 -p tcp -e 1000 -i 290 -a 5 + -t 30.5269 -s 210 -d 209 -p tcp -e 1000 -i 270 -a 9 - -t 30.5269 -s 210 -d 209 -p tcp -e 1000 -i 270 -a 9 h -t 30.5269 -s 210 -d 209 -p tcp -e 1000 -i 270 -a 9 r -t 30.5269 -s 211 -d 210 -p tcp -e 1000 -i 270 -a 9 + -t 30.5279 -s 211 -d 212 -p ack -e 40 -i 273 -a 7 - -t 30.5279 -s 211 -d 212 -p ack -e 40 -i 273 -a 7 h -t 30.5279 -s 211 -d 212 -p ack -e 40 -i 273 -a 7 r -t 30.5279 -s 210 -d 211 -p ack -e 40 -i 273 -a 7 r -t 30.5287 -s 110 -d 105 -p tcp -e 1000 -i 290 -a 5 r -t 30.5289 -s 210 -d 209 -p tcp -e 1000 -i 270 -a 9 r -t 30.5289 -s 211 -d 212 -p ack -e 40 -i 273 -a 7 + -t 30.5293 -s 310 -d 309 -p tcp -e 1000 -i 247 -a 9 - -t 30.5293 -s 310 -d 309 -p tcp -e 1000 -i 247 -a 9 h -t 30.5293 -s 310 -d 309 -p tcp -e 1000 -i 247 -a 9 r -t 30.5293 -s 311 -d 310 -p tcp -e 1000 -i 247 -a 9 + -t 30.5311 -s 309 -d 310 -p ack -e 40 -i 251 -a 9 - -t 30.5311 -s 309 -d 310 -p ack -e 40 -i 251 -a 9 h -t 30.5311 -s 309 -d 310 -p ack -e 40 -i 251 -a 9 r -t 30.5313 -s 310 -d 309 -p tcp -e 1000 -i 247 -a 9 r -t 30.5321 -s 309 -d 310 -p ack -e 40 -i 251 -a 9 + -t 30.5322 -s 310 -d 311 -p ack -e 40 -i 251 -a 9 - -t 30.5322 -s 310 -d 311 -p ack -e 40 -i 251 -a 9 h -t 30.5322 -s 310 -d 311 -p ack -e 40 -i 251 -a 9 + -t 30.5364 -s 207 -d 210 -p ack -e 40 -i 283 -a 7 - -t 30.5364 -s 207 -d 210 -p ack -e 40 -i 283 -a 7 h -t 30.5364 -s 207 -d 210 -p ack -e 40 -i 283 -a 7 r -t 30.5374 -s 207 -d 210 -p ack -e 40 -i 283 -a 7 + -t 30.5375 -s 210 -d 211 -p ack -e 40 -i 283 -a 7 - -t 30.5375 -s 210 -d 211 -p ack -e 40 -i 283 -a 7 h -t 30.5375 -s 210 -d 211 -p ack -e 40 -i 283 -a 7 + -t 30.5499 -s 111 -d 112 -p ack -e 40 -i 293 -a 4 - -t 30.5499 -s 111 -d 112 -p ack -e 40 -i 293 -a 4 h -t 30.5499 -s 111 -d 112 -p ack -e 40 -i 293 -a 4 r -t 30.5499 -s 110 -d 111 -p ack -e 40 -i 293 -a 4 r -t 30.5509 -s 111 -d 112 -p ack -e 40 -i 293 -a 4 + -t 30.5522 -s 311 -d 312 -p ack -e 40 -i 248 -a 7 - -t 30.5522 -s 311 -d 312 -p ack -e 40 -i 248 -a 7 h -t 30.5522 -s 311 -d 312 -p ack -e 40 -i 248 -a 7 r -t 30.5522 -s 310 -d 311 -p ack -e 40 -i 248 -a 7 + -t 30.5532 -s 312 -d 311 -p tcp -e 1000 -i 252 -a 7 + -t 30.5532 -s 312 -d 311 -p tcp -e 1000 -i 253 -a 7 - -t 30.5532 -s 312 -d 311 -p tcp -e 1000 -i 252 -a 7 h -t 30.5532 -s 312 -d 311 -p tcp -e 1000 -i 252 -a 7 r -t 30.5532 -s 311 -d 312 -p ack -e 40 -i 248 -a 7 - -t 30.554 -s 312 -d 311 -p tcp -e 1000 -i 253 -a 7 h -t 30.554 -s 312 -d 311 -p tcp -e 1000 -i 253 -a 7 + -t 30.555 -s 311 -d 310 -p tcp -e 1000 -i 252 -a 7 - -t 30.555 -s 311 -d 310 -p tcp -e 1000 -i 252 -a 7 h -t 30.555 -s 311 -d 310 -p tcp -e 1000 -i 252 -a 7 r -t 30.5552 -s 312 -d 311 -p tcp -e 1000 -i 252 -a 7 + -t 30.5558 -s 311 -d 310 -p tcp -e 1000 -i 253 -a 7 + -t 30.5559 -s 205 -d 210 -p ack -e 40 -i 284 -a 5 - -t 30.5559 -s 205 -d 210 -p ack -e 40 -i 284 -a 5 h -t 30.5559 -s 205 -d 210 -p ack -e 40 -i 284 -a 5 r -t 30.556 -s 312 -d 311 -p tcp -e 1000 -i 253 -a 7 + -t 30.5569 -s 210 -d 211 -p ack -e 40 -i 284 -a 5 - -t 30.5569 -s 210 -d 211 -p ack -e 40 -i 284 -a 5 h -t 30.5569 -s 210 -d 211 -p ack -e 40 -i 284 -a 5 r -t 30.5569 -s 205 -d 210 -p ack -e 40 -i 284 -a 5 + -t 30.5599 -s 111 -d 112 -p ack -e 40 -i 294 -a 4 - -t 30.5599 -s 111 -d 112 -p ack -e 40 -i 294 -a 4 h -t 30.5599 -s 111 -d 112 -p ack -e 40 -i 294 -a 4 r -t 30.5599 -s 110 -d 111 -p ack -e 40 -i 294 -a 4 + -t 30.5607 -s 305 -d 310 -p ack -e 40 -i 254 -a 5 - -t 30.5607 -s 305 -d 310 -p ack -e 40 -i 254 -a 5 h -t 30.5607 -s 305 -d 310 -p ack -e 40 -i 254 -a 5 r -t 30.5609 -s 111 -d 112 -p ack -e 40 -i 294 -a 4 r -t 30.5617 -s 305 -d 310 -p ack -e 40 -i 254 -a 5 + -t 30.5618 -s 310 -d 311 -p ack -e 40 -i 254 -a 5 - -t 30.5618 -s 310 -d 311 -p ack -e 40 -i 254 -a 5 h -t 30.5618 -s 310 -d 311 -p ack -e 40 -i 254 -a 5 - -t 30.565 -s 311 -d 310 -p tcp -e 1000 -i 253 -a 7 h -t 30.565 -s 311 -d 310 -p tcp -e 1000 -i 253 -a 7 + -t 30.5661 -s 210 -d 205 -p tcp -e 1000 -i 274 -a 5 - -t 30.5661 -s 210 -d 205 -p tcp -e 1000 -i 274 -a 5 h -t 30.5661 -s 210 -d 205 -p tcp -e 1000 -i 274 -a 5 r -t 30.5661 -s 211 -d 210 -p tcp -e 1000 -i 274 -a 5 + -t 30.5663 -s 212 -d 211 -p tcp -e 1000 -i 285 -a 5 - -t 30.5663 -s 212 -d 211 -p tcp -e 1000 -i 285 -a 5 h -t 30.5663 -s 212 -d 211 -p tcp -e 1000 -i 285 -a 5 + -t 30.5681 -s 211 -d 210 -p tcp -e 1000 -i 285 -a 5 - -t 30.5681 -s 211 -d 210 -p tcp -e 1000 -i 285 -a 5 h -t 30.5681 -s 211 -d 210 -p tcp -e 1000 -i 285 -a 5 r -t 30.5681 -s 210 -d 205 -p tcp -e 1000 -i 274 -a 5 r -t 30.5683 -s 212 -d 211 -p tcp -e 1000 -i 285 -a 5 + -t 30.5699 -s 211 -d 212 -p ack -e 40 -i 277 -a 0 - -t 30.5699 -s 211 -d 212 -p ack -e 40 -i 277 -a 0 h -t 30.5699 -s 211 -d 212 -p ack -e 40 -i 277 -a 0 r -t 30.5699 -s 210 -d 211 -p ack -e 40 -i 277 -a 0 + -t 30.5709 -s 212 -d 211 -p tcp -e 1000 -i 286 -a 0 + -t 30.5709 -s 212 -d 211 -p tcp -e 1000 -i 287 -a 0 + -t 30.5709 -s 212 -d 211 -p tcp -e 1000 -i 288 -a 0 - -t 30.5709 -s 212 -d 211 -p tcp -e 1000 -i 286 -a 0 h -t 30.5709 -s 212 -d 211 -p tcp -e 1000 -i 286 -a 0 r -t 30.5709 -s 211 -d 212 -p ack -e 40 -i 277 -a 0 - -t 30.5717 -s 212 -d 211 -p tcp -e 1000 -i 287 -a 0 h -t 30.5717 -s 212 -d 211 -p tcp -e 1000 -i 287 -a 0 - -t 30.5725 -s 212 -d 211 -p tcp -e 1000 -i 288 -a 0 h -t 30.5725 -s 212 -d 211 -p tcp -e 1000 -i 288 -a 0 + -t 30.5727 -s 211 -d 210 -p tcp -e 1000 -i 286 -a 0 r -t 30.5729 -s 212 -d 211 -p tcp -e 1000 -i 286 -a 0 + -t 30.5735 -s 211 -d 210 -p tcp -e 1000 -i 287 -a 0 r -t 30.5737 -s 212 -d 211 -p tcp -e 1000 -i 287 -a 0 + -t 30.5743 -s 211 -d 210 -p tcp -e 1000 -i 288 -a 0 r -t 30.5745 -s 212 -d 211 -p tcp -e 1000 -i 288 -a 0 - -t 30.5781 -s 211 -d 210 -p tcp -e 1000 -i 286 -a 0 h -t 30.5781 -s 211 -d 210 -p tcp -e 1000 -i 286 -a 0 + -t 30.5785 -s 200 -d 210 -p ack -e 40 -i 289 -a 0 - -t 30.5785 -s 200 -d 210 -p ack -e 40 -i 289 -a 0 h -t 30.5785 -s 200 -d 210 -p ack -e 40 -i 289 -a 0 + -t 30.5787 -s 210 -d 200 -p tcp -e 1000 -i 275 -a 0 - -t 30.5787 -s 210 -d 200 -p tcp -e 1000 -i 275 -a 0 h -t 30.5787 -s 210 -d 200 -p tcp -e 1000 -i 275 -a 0 r -t 30.5787 -s 211 -d 210 -p tcp -e 1000 -i 275 -a 0 + -t 30.5795 -s 210 -d 211 -p ack -e 40 -i 289 -a 0 - -t 30.5795 -s 210 -d 211 -p ack -e 40 -i 289 -a 0 h -t 30.5795 -s 210 -d 211 -p ack -e 40 -i 289 -a 0 r -t 30.5795 -s 200 -d 210 -p ack -e 40 -i 289 -a 0 + -t 30.5799 -s 111 -d 112 -p ack -e 40 -i 295 -a 5 - -t 30.5799 -s 111 -d 112 -p ack -e 40 -i 295 -a 5 h -t 30.5799 -s 111 -d 112 -p ack -e 40 -i 295 -a 5 r -t 30.5799 -s 110 -d 111 -p ack -e 40 -i 295 -a 5 r -t 30.5807 -s 210 -d 200 -p tcp -e 1000 -i 275 -a 0 + -t 30.5809 -s 112 -d 111 -p tcp -e 1000 -i 299 -a 5 + -t 30.5809 -s 112 -d 111 -p tcp -e 1000 -i 300 -a 5 + -t 30.5809 -s 112 -d 111 -p tcp -e 1000 -i 301 -a 5 - -t 30.5809 -s 112 -d 111 -p tcp -e 1000 -i 299 -a 5 h -t 30.5809 -s 112 -d 111 -p tcp -e 1000 -i 299 -a 5 r -t 30.5809 -s 111 -d 112 -p ack -e 40 -i 295 -a 5 - -t 30.5817 -s 112 -d 111 -p tcp -e 1000 -i 300 -a 5 h -t 30.5817 -s 112 -d 111 -p tcp -e 1000 -i 300 -a 5 + -t 30.5822 -s 311 -d 312 -p ack -e 40 -i 249 -a 0 - -t 30.5822 -s 311 -d 312 -p ack -e 40 -i 249 -a 0 h -t 30.5822 -s 311 -d 312 -p ack -e 40 -i 249 -a 0 r -t 30.5822 -s 310 -d 311 -p ack -e 40 -i 249 -a 0 - -t 30.5825 -s 112 -d 111 -p tcp -e 1000 -i 301 -a 5 h -t 30.5825 -s 112 -d 111 -p tcp -e 1000 -i 301 -a 5 + -t 30.5827 -s 111 -d 110 -p tcp -e 1000 -i 299 -a 5 - -t 30.5827 -s 111 -d 110 -p tcp -e 1000 -i 299 -a 5 h -t 30.5827 -s 111 -d 110 -p tcp -e 1000 -i 299 -a 5 r -t 30.5829 -s 112 -d 111 -p tcp -e 1000 -i 299 -a 5 + -t 30.5832 -s 312 -d 311 -p tcp -e 1000 -i 255 -a 0 + -t 30.5832 -s 312 -d 311 -p tcp -e 1000 -i 256 -a 0 - -t 30.5832 -s 312 -d 311 -p tcp -e 1000 -i 255 -a 0 h -t 30.5832 -s 312 -d 311 -p tcp -e 1000 -i 255 -a 0 r -t 30.5832 -s 311 -d 312 -p ack -e 40 -i 249 -a 0 + -t 30.5835 -s 111 -d 110 -p tcp -e 1000 -i 300 -a 5 r -t 30.5837 -s 112 -d 111 -p tcp -e 1000 -i 300 -a 5 - -t 30.584 -s 312 -d 311 -p tcp -e 1000 -i 256 -a 0 h -t 30.584 -s 312 -d 311 -p tcp -e 1000 -i 256 -a 0 + -t 30.5843 -s 111 -d 110 -p tcp -e 1000 -i 301 -a 5 r -t 30.5845 -s 112 -d 111 -p tcp -e 1000 -i 301 -a 5 + -t 30.585 -s 311 -d 310 -p tcp -e 1000 -i 255 -a 0 - -t 30.585 -s 311 -d 310 -p tcp -e 1000 -i 255 -a 0 h -t 30.585 -s 311 -d 310 -p tcp -e 1000 -i 255 -a 0 r -t 30.5852 -s 312 -d 311 -p tcp -e 1000 -i 255 -a 0 + -t 30.5858 -s 311 -d 310 -p tcp -e 1000 -i 256 -a 0 r -t 30.586 -s 312 -d 311 -p tcp -e 1000 -i 256 -a 0 - -t 30.5881 -s 211 -d 210 -p tcp -e 1000 -i 287 -a 0 h -t 30.5881 -s 211 -d 210 -p tcp -e 1000 -i 287 -a 0 + -t 30.5887 -s 210 -d 200 -p tcp -e 1000 -i 276 -a 0 - -t 30.5887 -s 210 -d 200 -p tcp -e 1000 -i 276 -a 0 h -t 30.5887 -s 210 -d 200 -p tcp -e 1000 -i 276 -a 0 r -t 30.5887 -s 211 -d 210 -p tcp -e 1000 -i 276 -a 0 + -t 30.5905 -s 200 -d 210 -p ack -e 40 -i 290 -a 0 - -t 30.5905 -s 200 -d 210 -p ack -e 40 -i 290 -a 0 h -t 30.5905 -s 200 -d 210 -p ack -e 40 -i 290 -a 0 r -t 30.5907 -s 210 -d 200 -p tcp -e 1000 -i 276 -a 0 + -t 30.5915 -s 210 -d 211 -p ack -e 40 -i 290 -a 0 - -t 30.5915 -s 210 -d 211 -p ack -e 40 -i 290 -a 0 h -t 30.5915 -s 210 -d 211 -p ack -e 40 -i 290 -a 0 r -t 30.5915 -s 200 -d 210 -p ack -e 40 -i 290 -a 0 - -t 30.5927 -s 111 -d 110 -p tcp -e 1000 -i 300 -a 5 h -t 30.5927 -s 111 -d 110 -p tcp -e 1000 -i 300 -a 5 - -t 30.595 -s 311 -d 310 -p tcp -e 1000 -i 256 -a 0 h -t 30.595 -s 311 -d 310 -p tcp -e 1000 -i 256 -a 0 - -t 30.5981 -s 211 -d 210 -p tcp -e 1000 -i 288 -a 0 h -t 30.5981 -s 211 -d 210 -p tcp -e 1000 -i 288 -a 0 + -t 30.5999 -s 111 -d 112 -p ack -e 40 -i 296 -a 0 - -t 30.5999 -s 111 -d 112 -p ack -e 40 -i 296 -a 0 h -t 30.5999 -s 111 -d 112 -p ack -e 40 -i 296 -a 0 r -t 30.5999 -s 110 -d 111 -p ack -e 40 -i 296 -a 0 + -t 30.6001 -s 211 -d 212 -p ack -e 40 -i 280 -a 9 - -t 30.6001 -s 211 -d 212 -p ack -e 40 -i 280 -a 9 h -t 30.6001 -s 211 -d 212 -p ack -e 40 -i 280 -a 9 r -t 30.6001 -s 210 -d 211 -p ack -e 40 -i 280 -a 9 + -t 30.6003 -s 111 -d 112 -p ack -e 40 -i 297 -a 5 - -t 30.6003 -s 111 -d 112 -p ack -e 40 -i 297 -a 5 h -t 30.6003 -s 111 -d 112 -p ack -e 40 -i 297 -a 5 r -t 30.6003 -s 110 -d 111 -p ack -e 40 -i 297 -a 5 r -t 30.6009 -s 111 -d 112 -p ack -e 40 -i 296 -a 0 r -t 30.6011 -s 211 -d 212 -p ack -e 40 -i 280 -a 9 r -t 30.6013 -s 111 -d 112 -p ack -e 40 -i 297 -a 5 + -t 30.6022 -s 311 -d 312 -p ack -e 40 -i 250 -a 4 - -t 30.6022 -s 311 -d 312 -p ack -e 40 -i 250 -a 4 h -t 30.6022 -s 311 -d 312 -p ack -e 40 -i 250 -a 4 r -t 30.6022 -s 310 -d 311 -p ack -e 40 -i 250 -a 4 - -t 30.6027 -s 111 -d 110 -p tcp -e 1000 -i 301 -a 5 h -t 30.6027 -s 111 -d 110 -p tcp -e 1000 -i 301 -a 5 + -t 30.6032 -s 312 -d 311 -p tcp -e 1000 -i 257 -a 4 + -t 30.6032 -s 312 -d 311 -p tcp -e 1000 -i 258 -a 4 - -t 30.6032 -s 312 -d 311 -p tcp -e 1000 -i 257 -a 4 h -t 30.6032 -s 312 -d 311 -p tcp -e 1000 -i 257 -a 4 r -t 30.6032 -s 311 -d 312 -p ack -e 40 -i 250 -a 4 - -t 30.604 -s 312 -d 311 -p tcp -e 1000 -i 258 -a 4 h -t 30.604 -s 312 -d 311 -p tcp -e 1000 -i 258 -a 4 + -t 30.605 -s 311 -d 310 -p tcp -e 1000 -i 257 -a 4 - -t 30.605 -s 311 -d 310 -p tcp -e 1000 -i 257 -a 4 h -t 30.605 -s 311 -d 310 -p tcp -e 1000 -i 257 -a 4 r -t 30.6052 -s 312 -d 311 -p tcp -e 1000 -i 257 -a 4 + -t 30.6058 -s 311 -d 310 -p tcp -e 1000 -i 258 -a 4 r -t 30.606 -s 312 -d 311 -p tcp -e 1000 -i 258 -a 4 + -t 30.6079 -s 211 -d 212 -p ack -e 40 -i 281 -a 4 - -t 30.6079 -s 211 -d 212 -p ack -e 40 -i 281 -a 4 h -t 30.6079 -s 211 -d 212 -p ack -e 40 -i 281 -a 4 r -t 30.6079 -s 210 -d 211 -p ack -e 40 -i 281 -a 4 + -t 30.6087 -s 210 -d 204 -p tcp -e 1000 -i 278 -a 4 - -t 30.6087 -s 210 -d 204 -p tcp -e 1000 -i 278 -a 4 h -t 30.6087 -s 210 -d 204 -p tcp -e 1000 -i 278 -a 4 r -t 30.6087 -s 211 -d 210 -p tcp -e 1000 -i 278 -a 4 + -t 30.6089 -s 212 -d 211 -p tcp -e 1000 -i 291 -a 4 + -t 30.6089 -s 212 -d 211 -p tcp -e 1000 -i 292 -a 4 - -t 30.6089 -s 212 -d 211 -p tcp -e 1000 -i 291 -a 4 h -t 30.6089 -s 212 -d 211 -p tcp -e 1000 -i 291 -a 4 r -t 30.6089 -s 211 -d 212 -p ack -e 40 -i 281 -a 4 - -t 30.6097 -s 212 -d 211 -p tcp -e 1000 -i 292 -a 4 h -t 30.6097 -s 212 -d 211 -p tcp -e 1000 -i 292 -a 4 + -t 30.6107 -s 211 -d 210 -p tcp -e 1000 -i 291 -a 4 - -t 30.6107 -s 211 -d 210 -p tcp -e 1000 -i 291 -a 4 h -t 30.6107 -s 211 -d 210 -p tcp -e 1000 -i 291 -a 4 r -t 30.6107 -s 210 -d 204 -p tcp -e 1000 -i 278 -a 4 r -t 30.6109 -s 212 -d 211 -p tcp -e 1000 -i 291 -a 4 + -t 30.6115 -s 211 -d 210 -p tcp -e 1000 -i 292 -a 4 r -t 30.6117 -s 212 -d 211 -p tcp -e 1000 -i 292 -a 4 - -t 30.615 -s 311 -d 310 -p tcp -e 1000 -i 258 -a 4 h -t 30.615 -s 311 -d 310 -p tcp -e 1000 -i 258 -a 4 + -t 30.6187 -s 210 -d 204 -p tcp -e 1000 -i 279 -a 4 - -t 30.6187 -s 210 -d 204 -p tcp -e 1000 -i 279 -a 4 h -t 30.6187 -s 210 -d 204 -p tcp -e 1000 -i 279 -a 4 r -t 30.6187 -s 211 -d 210 -p tcp -e 1000 -i 279 -a 4 + -t 30.6199 -s 111 -d 112 -p ack -e 40 -i 298 -a 5 - -t 30.6199 -s 111 -d 112 -p ack -e 40 -i 298 -a 5 h -t 30.6199 -s 111 -d 112 -p ack -e 40 -i 298 -a 5 r -t 30.6199 -s 110 -d 111 -p ack -e 40 -i 298 -a 5 + -t 30.6201 -s 211 -d 212 -p ack -e 40 -i 282 -a 4 - -t 30.6201 -s 211 -d 212 -p ack -e 40 -i 282 -a 4 h -t 30.6201 -s 211 -d 212 -p ack -e 40 -i 282 -a 4 r -t 30.6201 -s 210 -d 211 -p ack -e 40 -i 282 -a 4 + -t 30.6205 -s 204 -d 210 -p ack -e 40 -i 293 -a 4 - -t 30.6205 -s 204 -d 210 -p ack -e 40 -i 293 -a 4 h -t 30.6205 -s 204 -d 210 -p ack -e 40 -i 293 -a 4 - -t 30.6207 -s 211 -d 210 -p tcp -e 1000 -i 292 -a 4 h -t 30.6207 -s 211 -d 210 -p tcp -e 1000 -i 292 -a 4 r -t 30.6207 -s 210 -d 204 -p tcp -e 1000 -i 279 -a 4 r -t 30.6209 -s 111 -d 112 -p ack -e 40 -i 298 -a 5 r -t 30.6211 -s 211 -d 212 -p ack -e 40 -i 282 -a 4 + -t 30.6212 -s 212 -d 211 -p tcp -e 1000 -i 294 -a 4 - -t 30.6212 -s 212 -d 211 -p tcp -e 1000 -i 294 -a 4 h -t 30.6212 -s 212 -d 211 -p tcp -e 1000 -i 294 -a 4 + -t 30.6215 -s 210 -d 211 -p ack -e 40 -i 293 -a 4 - -t 30.6215 -s 210 -d 211 -p ack -e 40 -i 293 -a 4 h -t 30.6215 -s 210 -d 211 -p ack -e 40 -i 293 -a 4 r -t 30.6215 -s 204 -d 210 -p ack -e 40 -i 293 -a 4 + -t 30.623 -s 211 -d 210 -p tcp -e 1000 -i 294 -a 4 r -t 30.6232 -s 212 -d 211 -p tcp -e 1000 -i 294 -a 4 + -t 30.6285 -s 105 -d 110 -p ack -e 40 -i 302 -a 5 - -t 30.6285 -s 105 -d 110 -p ack -e 40 -i 302 -a 5 h -t 30.6285 -s 105 -d 110 -p ack -e 40 -i 302 -a 5 + -t 30.6287 -s 209 -d 210 -p ack -e 40 -i 295 -a 9 - -t 30.6287 -s 209 -d 210 -p ack -e 40 -i 295 -a 9 h -t 30.6287 -s 209 -d 210 -p ack -e 40 -i 295 -a 9 + -t 30.6295 -s 110 -d 111 -p ack -e 40 -i 302 -a 5 - -t 30.6295 -s 110 -d 111 -p ack -e 40 -i 302 -a 5 h -t 30.6295 -s 110 -d 111 -p ack -e 40 -i 302 -a 5 r -t 30.6295 -s 105 -d 110 -p ack -e 40 -i 302 -a 5 + -t 30.6297 -s 210 -d 211 -p ack -e 40 -i 295 -a 9 - -t 30.6297 -s 210 -d 211 -p ack -e 40 -i 295 -a 9 h -t 30.6297 -s 210 -d 211 -p ack -e 40 -i 295 -a 9 r -t 30.6297 -s 209 -d 210 -p ack -e 40 -i 295 -a 9 - -t 30.6307 -s 211 -d 210 -p tcp -e 1000 -i 294 -a 4 h -t 30.6307 -s 211 -d 210 -p tcp -e 1000 -i 294 -a 4 + -t 30.6326 -s 311 -d 312 -p ack -e 40 -i 251 -a 9 - -t 30.6326 -s 311 -d 312 -p ack -e 40 -i 251 -a 9 h -t 30.6326 -s 311 -d 312 -p ack -e 40 -i 251 -a 9 r -t 30.6326 -s 310 -d 311 -p ack -e 40 -i 251 -a 9 + -t 30.6336 -s 312 -d 311 -p tcp -e 1000 -i 259 -a 9 + -t 30.6336 -s 312 -d 311 -p tcp -e 1000 -i 260 -a 9 - -t 30.6336 -s 312 -d 311 -p tcp -e 1000 -i 259 -a 9 h -t 30.6336 -s 312 -d 311 -p tcp -e 1000 -i 259 -a 9 r -t 30.6336 -s 311 -d 312 -p ack -e 40 -i 251 -a 9 - -t 30.6344 -s 312 -d 311 -p tcp -e 1000 -i 260 -a 9 h -t 30.6344 -s 312 -d 311 -p tcp -e 1000 -i 260 -a 9 + -t 30.6354 -s 311 -d 310 -p tcp -e 1000 -i 259 -a 9 - -t 30.6354 -s 311 -d 310 -p tcp -e 1000 -i 259 -a 9 h -t 30.6354 -s 311 -d 310 -p tcp -e 1000 -i 259 -a 9 r -t 30.6356 -s 312 -d 311 -p tcp -e 1000 -i 259 -a 9 + -t 30.6362 -s 311 -d 310 -p tcp -e 1000 -i 260 -a 9 r -t 30.6364 -s 312 -d 311 -p tcp -e 1000 -i 260 -a 9 + -t 30.6379 -s 211 -d 212 -p ack -e 40 -i 283 -a 7 - -t 30.6379 -s 211 -d 212 -p ack -e 40 -i 283 -a 7 h -t 30.6379 -s 211 -d 212 -p ack -e 40 -i 283 -a 7 r -t 30.6379 -s 210 -d 211 -p ack -e 40 -i 283 -a 7 r -t 30.6389 -s 211 -d 212 -p ack -e 40 -i 283 -a 7 - -t 30.6454 -s 311 -d 310 -p tcp -e 1000 -i 260 -a 9 h -t 30.6454 -s 311 -d 310 -p tcp -e 1000 -i 260 -a 9 + -t 30.6573 -s 211 -d 212 -p ack -e 40 -i 284 -a 5 - -t 30.6573 -s 211 -d 212 -p ack -e 40 -i 284 -a 5 h -t 30.6573 -s 211 -d 212 -p ack -e 40 -i 284 -a 5 r -t 30.6573 -s 210 -d 211 -p ack -e 40 -i 284 -a 5 r -t 30.6583 -s 211 -d 212 -p ack -e 40 -i 284 -a 5 + -t 30.6584 -s 212 -d 211 -p tcp -e 1000 -i 296 -a 5 + -t 30.6584 -s 212 -d 211 -p tcp -e 1000 -i 297 -a 5 - -t 30.6584 -s 212 -d 211 -p tcp -e 1000 -i 296 -a 5 h -t 30.6584 -s 212 -d 211 -p tcp -e 1000 -i 296 -a 5 - -t 30.6592 -s 212 -d 211 -p tcp -e 1000 -i 297 -a 5 h -t 30.6592 -s 212 -d 211 -p tcp -e 1000 -i 297 -a 5 + -t 30.6602 -s 211 -d 210 -p tcp -e 1000 -i 296 -a 5 - -t 30.6602 -s 211 -d 210 -p tcp -e 1000 -i 296 -a 5 h -t 30.6602 -s 211 -d 210 -p tcp -e 1000 -i 296 -a 5 r -t 30.6604 -s 212 -d 211 -p tcp -e 1000 -i 296 -a 5 + -t 30.661 -s 211 -d 210 -p tcp -e 1000 -i 297 -a 5 r -t 30.6612 -s 212 -d 211 -p tcp -e 1000 -i 297 -a 5 + -t 30.6619 -s 112 -d 111 -p tcp -e 1000 -i 303 -a 1 + -t 30.6619 -s 112 -d 111 -p tcp -e 1000 -i 304 -a 1 + -t 30.6619 -s 112 -d 111 -p tcp -e 1000 -i 305 -a 1 + -t 30.6619 -s 112 -d 111 -p tcp -e 1000 -i 306 -a 1 + -t 30.6619 -s 112 -d 111 -p tcp -e 1000 -i 307 -a 1 + -t 30.6619 -s 112 -d 111 -p tcp -e 1000 -i 308 -a 1 + -t 30.6619 -s 112 -d 111 -p tcp -e 1000 -i 309 -a 1 + -t 30.6619 -s 212 -d 211 -p tcp -e 1000 -i 298 -a 1 + -t 30.6619 -s 312 -d 311 -p tcp -e 1000 -i 261 -a 1 - -t 30.6619 -s 112 -d 111 -p tcp -e 1000 -i 303 -a 1 - -t 30.6619 -s 212 -d 211 -p tcp -e 1000 -i 298 -a 1 - -t 30.6619 -s 312 -d 311 -p tcp -e 1000 -i 261 -a 1 h -t 30.6619 -s 112 -d 111 -p tcp -e 1000 -i 303 -a 1 h -t 30.6619 -s 212 -d 211 -p tcp -e 1000 -i 298 -a 1 h -t 30.6619 -s 312 -d 311 -p tcp -e 1000 -i 261 -a 1 + -t 30.6622 -s 311 -d 312 -p ack -e 40 -i 254 -a 5 - -t 30.6622 -s 311 -d 312 -p ack -e 40 -i 254 -a 5 h -t 30.6622 -s 311 -d 312 -p ack -e 40 -i 254 -a 5 r -t 30.6622 -s 310 -d 311 -p ack -e 40 -i 254 -a 5 - -t 30.6627 -s 112 -d 111 -p tcp -e 1000 -i 304 -a 1 h -t 30.6627 -s 112 -d 111 -p tcp -e 1000 -i 304 -a 1 + -t 30.6632 -s 312 -d 311 -p tcp -e 1000 -i 262 -a 5 + -t 30.6632 -s 312 -d 311 -p tcp -e 1000 -i 263 -a 5 - -t 30.6632 -s 312 -d 311 -p tcp -e 1000 -i 262 -a 5 h -t 30.6632 -s 312 -d 311 -p tcp -e 1000 -i 262 -a 5 r -t 30.6632 -s 311 -d 312 -p ack -e 40 -i 254 -a 5 - -t 30.6635 -s 112 -d 111 -p tcp -e 1000 -i 305 -a 1 h -t 30.6635 -s 112 -d 111 -p tcp -e 1000 -i 305 -a 1 + -t 30.6637 -s 111 -d 110 -p tcp -e 1000 -i 303 -a 1 + -t 30.6637 -s 211 -d 210 -p tcp -e 1000 -i 298 -a 1 + -t 30.6637 -s 311 -d 310 -p tcp -e 1000 -i 261 -a 1 - -t 30.6637 -s 111 -d 110 -p tcp -e 1000 -i 303 -a 1 - -t 30.6637 -s 311 -d 310 -p tcp -e 1000 -i 261 -a 1 h -t 30.6637 -s 111 -d 110 -p tcp -e 1000 -i 303 -a 1 h -t 30.6637 -s 311 -d 310 -p tcp -e 1000 -i 261 -a 1 r -t 30.6639 -s 112 -d 111 -p tcp -e 1000 -i 303 -a 1 r -t 30.6639 -s 212 -d 211 -p tcp -e 1000 -i 298 -a 1 r -t 30.6639 -s 312 -d 311 -p tcp -e 1000 -i 261 -a 1 - -t 30.664 -s 312 -d 311 -p tcp -e 1000 -i 263 -a 5 h -t 30.664 -s 312 -d 311 -p tcp -e 1000 -i 263 -a 5 - -t 30.6643 -s 112 -d 111 -p tcp -e 1000 -i 306 -a 1 h -t 30.6643 -s 112 -d 111 -p tcp -e 1000 -i 306 -a 1 + -t 30.6645 -s 111 -d 110 -p tcp -e 1000 -i 304 -a 1 r -t 30.6647 -s 112 -d 111 -p tcp -e 1000 -i 304 -a 1 + -t 30.665 -s 310 -d 307 -p tcp -e 1000 -i 252 -a 7 + -t 30.665 -s 311 -d 310 -p tcp -e 1000 -i 262 -a 5 - -t 30.665 -s 310 -d 307 -p tcp -e 1000 -i 252 -a 7 h -t 30.665 -s 310 -d 307 -p tcp -e 1000 -i 252 -a 7 r -t 30.665 -s 311 -d 310 -p tcp -e 1000 -i 252 -a 7 - -t 30.6651 -s 112 -d 111 -p tcp -e 1000 -i 307 -a 1 h -t 30.6651 -s 112 -d 111 -p tcp -e 1000 -i 307 -a 1 r -t 30.6652 -s 312 -d 311 -p tcp -e 1000 -i 262 -a 5 + -t 30.6653 -s 111 -d 110 -p tcp -e 1000 -i 305 -a 1 r -t 30.6655 -s 112 -d 111 -p tcp -e 1000 -i 305 -a 1 + -t 30.6658 -s 311 -d 310 -p tcp -e 1000 -i 263 -a 5 - -t 30.6659 -s 112 -d 111 -p tcp -e 1000 -i 308 -a 1 h -t 30.6659 -s 112 -d 111 -p tcp -e 1000 -i 308 -a 1 r -t 30.666 -s 312 -d 311 -p tcp -e 1000 -i 263 -a 5 + -t 30.6661 -s 111 -d 110 -p tcp -e 1000 -i 306 -a 1 r -t 30.6663 -s 112 -d 111 -p tcp -e 1000 -i 306 -a 1 - -t 30.6667 -s 112 -d 111 -p tcp -e 1000 -i 309 -a 1 h -t 30.6667 -s 112 -d 111 -p tcp -e 1000 -i 309 -a 1 + -t 30.6669 -s 111 -d 110 -p tcp -e 1000 -i 307 -a 1 r -t 30.667 -s 310 -d 307 -p tcp -e 1000 -i 252 -a 7 r -t 30.6671 -s 112 -d 111 -p tcp -e 1000 -i 307 -a 1 + -t 30.6677 -s 111 -d 110 -p tcp -e 1000 -i 308 -a 1 + -t 30.6679 -s 205 -d 210 -p ack -e 40 -i 299 -a 5 - -t 30.6679 -s 205 -d 210 -p ack -e 40 -i 299 -a 5 h -t 30.6679 -s 205 -d 210 -p ack -e 40 -i 299 -a 5 r -t 30.6679 -s 112 -d 111 -p tcp -e 1000 -i 308 -a 1 + -t 30.6685 -s 111 -d 110 -p tcp -e 1000 -i 309 -a 1 r -t 30.6687 -s 112 -d 111 -p tcp -e 1000 -i 309 -a 1 r -t 30.6689 -s 205 -d 210 -p ack -e 40 -i 299 -a 5 + -t 30.669 -s 210 -d 211 -p ack -e 40 -i 299 -a 5 - -t 30.669 -s 210 -d 211 -p ack -e 40 -i 299 -a 5 h -t 30.669 -s 210 -d 211 -p ack -e 40 -i 299 -a 5 - -t 30.6702 -s 211 -d 210 -p tcp -e 1000 -i 297 -a 5 h -t 30.6702 -s 211 -d 210 -p tcp -e 1000 -i 297 -a 5 + -t 30.6736 -s 112 -d 111 -p tcp -e 1000 -i 310 -a 8 - -t 30.6736 -s 112 -d 111 -p tcp -e 1000 -i 310 -a 8 h -t 30.6736 -s 112 -d 111 -p tcp -e 1000 -i 310 -a 8 - -t 30.6737 -s 111 -d 110 -p tcp -e 1000 -i 304 -a 1 - -t 30.6737 -s 311 -d 310 -p tcp -e 1000 -i 262 -a 5 h -t 30.6737 -s 111 -d 110 -p tcp -e 1000 -i 304 -a 1 h -t 30.6737 -s 311 -d 310 -p tcp -e 1000 -i 262 -a 5 + -t 30.675 -s 310 -d 307 -p tcp -e 1000 -i 253 -a 7 - -t 30.675 -s 310 -d 307 -p tcp -e 1000 -i 253 -a 7 h -t 30.675 -s 310 -d 307 -p tcp -e 1000 -i 253 -a 7 r -t 30.675 -s 311 -d 310 -p tcp -e 1000 -i 253 -a 7 + -t 30.6754 -s 111 -d 110 -p tcp -e 1000 -i 310 -a 8 r -t 30.6756 -s 112 -d 111 -p tcp -e 1000 -i 310 -a 8 + -t 30.6768 -s 307 -d 310 -p ack -e 40 -i 264 -a 7 - -t 30.6768 -s 307 -d 310 -p ack -e 40 -i 264 -a 7 h -t 30.6768 -s 307 -d 310 -p ack -e 40 -i 264 -a 7 r -t 30.677 -s 310 -d 307 -p tcp -e 1000 -i 253 -a 7 + -t 30.6778 -s 310 -d 311 -p ack -e 40 -i 264 -a 7 - -t 30.6778 -s 310 -d 311 -p ack -e 40 -i 264 -a 7 h -t 30.6778 -s 310 -d 311 -p ack -e 40 -i 264 -a 7 r -t 30.6778 -s 307 -d 310 -p ack -e 40 -i 264 -a 7 + -t 30.6781 -s 210 -d 205 -p tcp -e 1000 -i 285 -a 5 - -t 30.6781 -s 210 -d 205 -p tcp -e 1000 -i 285 -a 5 h -t 30.6781 -s 210 -d 205 -p tcp -e 1000 -i 285 -a 5 r -t 30.6781 -s 211 -d 210 -p tcp -e 1000 -i 285 -a 5 + -t 30.6799 -s 211 -d 212 -p ack -e 40 -i 289 -a 0 - -t 30.6799 -s 211 -d 212 -p ack -e 40 -i 289 -a 0 h -t 30.6799 -s 211 -d 212 -p ack -e 40 -i 289 -a 0 r -t 30.6799 -s 210 -d 211 -p ack -e 40 -i 289 -a 0 r -t 30.6801 -s 210 -d 205 -p tcp -e 1000 -i 285 -a 5 - -t 30.6802 -s 211 -d 210 -p tcp -e 1000 -i 298 -a 1 h -t 30.6802 -s 211 -d 210 -p tcp -e 1000 -i 298 -a 1 r -t 30.6809 -s 211 -d 212 -p ack -e 40 -i 289 -a 0 - -t 30.6837 -s 111 -d 110 -p tcp -e 1000 -i 305 -a 1 - -t 30.6837 -s 311 -d 310 -p tcp -e 1000 -i 263 -a 5 h -t 30.6837 -s 111 -d 110 -p tcp -e 1000 -i 305 -a 1 h -t 30.6837 -s 311 -d 310 -p tcp -e 1000 -i 263 -a 5 + -t 30.6881 -s 210 -d 200 -p tcp -e 1000 -i 286 -a 0 - -t 30.6881 -s 210 -d 200 -p tcp -e 1000 -i 286 -a 0 h -t 30.6881 -s 210 -d 200 -p tcp -e 1000 -i 286 -a 0 r -t 30.6881 -s 211 -d 210 -p tcp -e 1000 -i 286 -a 0 r -t 30.6901 -s 210 -d 200 -p tcp -e 1000 -i 286 -a 0 + -t 30.6919 -s 211 -d 212 -p ack -e 40 -i 290 -a 0 - -t 30.6919 -s 211 -d 212 -p ack -e 40 -i 290 -a 0 h -t 30.6919 -s 211 -d 212 -p ack -e 40 -i 290 -a 0 r -t 30.6919 -s 210 -d 211 -p ack -e 40 -i 290 -a 0 + -t 30.6927 -s 110 -d 105 -p tcp -e 1000 -i 299 -a 5 - -t 30.6927 -s 110 -d 105 -p tcp -e 1000 -i 299 -a 5 h -t 30.6927 -s 110 -d 105 -p tcp -e 1000 -i 299 -a 5 r -t 30.6927 -s 111 -d 110 -p tcp -e 1000 -i 299 -a 5 r -t 30.6929 -s 211 -d 212 -p ack -e 40 -i 290 -a 0 - -t 30.6937 -s 111 -d 110 -p tcp -e 1000 -i 306 -a 1 h -t 30.6937 -s 111 -d 110 -p tcp -e 1000 -i 306 -a 1 r -t 30.6947 -s 110 -d 105 -p tcp -e 1000 -i 299 -a 5 + -t 30.695 -s 310 -d 300 -p tcp -e 1000 -i 255 -a 0 - -t 30.695 -s 310 -d 300 -p tcp -e 1000 -i 255 -a 0 h -t 30.695 -s 310 -d 300 -p tcp -e 1000 -i 255 -a 0 r -t 30.695 -s 311 -d 310 -p tcp -e 1000 -i 255 -a 0 r -t 30.697 -s 310 -d 300 -p tcp -e 1000 -i 255 -a 0 + -t 30.6981 -s 210 -d 200 -p tcp -e 1000 -i 287 -a 0 - -t 30.6981 -s 210 -d 200 -p tcp -e 1000 -i 287 -a 0 h -t 30.6981 -s 210 -d 200 -p tcp -e 1000 -i 287 -a 0 r -t 30.6981 -s 211 -d 210 -p tcp -e 1000 -i 287 -a 0 + -t 30.6999 -s 200 -d 210 -p ack -e 40 -i 300 -a 0 - -t 30.6999 -s 200 -d 210 -p ack -e 40 -i 300 -a 0 h -t 30.6999 -s 200 -d 210 -p ack -e 40 -i 300 -a 0 r -t 30.7001 -s 210 -d 200 -p tcp -e 1000 -i 287 -a 0 r -t 30.7009 -s 200 -d 210 -p ack -e 40 -i 300 -a 0 + -t 30.701 -s 210 -d 211 -p ack -e 40 -i 300 -a 0 - -t 30.701 -s 210 -d 211 -p ack -e 40 -i 300 -a 0 h -t 30.701 -s 210 -d 211 -p ack -e 40 -i 300 -a 0 + -t 30.7027 -s 110 -d 105 -p tcp -e 1000 -i 300 -a 5 - -t 30.7027 -s 110 -d 105 -p tcp -e 1000 -i 300 -a 5 h -t 30.7027 -s 110 -d 105 -p tcp -e 1000 -i 300 -a 5 r -t 30.7027 -s 111 -d 110 -p tcp -e 1000 -i 300 -a 5 - -t 30.7037 -s 111 -d 110 -p tcp -e 1000 -i 307 -a 1 h -t 30.7037 -s 111 -d 110 -p tcp -e 1000 -i 307 -a 1 + -t 30.7045 -s 105 -d 110 -p ack -e 40 -i 311 -a 5 - -t 30.7045 -s 105 -d 110 -p ack -e 40 -i 311 -a 5 h -t 30.7045 -s 105 -d 110 -p ack -e 40 -i 311 -a 5 r -t 30.7047 -s 110 -d 105 -p tcp -e 1000 -i 300 -a 5 + -t 30.705 -s 310 -d 300 -p tcp -e 1000 -i 256 -a 0 - -t 30.705 -s 310 -d 300 -p tcp -e 1000 -i 256 -a 0 h -t 30.705 -s 310 -d 300 -p tcp -e 1000 -i 256 -a 0 r -t 30.705 -s 311 -d 310 -p tcp -e 1000 -i 256 -a 0 r -t 30.7055 -s 105 -d 110 -p ack -e 40 -i 311 -a 5 + -t 30.7056 -s 110 -d 111 -p ack -e 40 -i 311 -a 5 - -t 30.7056 -s 110 -d 111 -p ack -e 40 -i 311 -a 5 h -t 30.7056 -s 110 -d 111 -p ack -e 40 -i 311 -a 5 + -t 30.7068 -s 300 -d 310 -p ack -e 40 -i 265 -a 0 - -t 30.7068 -s 300 -d 310 -p ack -e 40 -i 265 -a 0 h -t 30.7068 -s 300 -d 310 -p ack -e 40 -i 265 -a 0 r -t 30.707 -s 310 -d 300 -p tcp -e 1000 -i 256 -a 0 + -t 30.7078 -s 310 -d 311 -p ack -e 40 -i 265 -a 0 - -t 30.7078 -s 310 -d 311 -p ack -e 40 -i 265 -a 0 h -t 30.7078 -s 310 -d 311 -p ack -e 40 -i 265 -a 0 r -t 30.7078 -s 300 -d 310 -p ack -e 40 -i 265 -a 0 + -t 30.7081 -s 210 -d 200 -p tcp -e 1000 -i 288 -a 0 - -t 30.7081 -s 210 -d 200 -p tcp -e 1000 -i 288 -a 0 h -t 30.7081 -s 210 -d 200 -p tcp -e 1000 -i 288 -a 0 r -t 30.7081 -s 211 -d 210 -p tcp -e 1000 -i 288 -a 0 r -t 30.7101 -s 210 -d 200 -p tcp -e 1000 -i 288 -a 0 + -t 30.7127 -s 110 -d 105 -p tcp -e 1000 -i 301 -a 5 - -t 30.7127 -s 110 -d 105 -p tcp -e 1000 -i 301 -a 5 h -t 30.7127 -s 110 -d 105 -p tcp -e 1000 -i 301 -a 5 r -t 30.7127 -s 111 -d 110 -p tcp -e 1000 -i 301 -a 5 - -t 30.7137 -s 111 -d 110 -p tcp -e 1000 -i 308 -a 1 h -t 30.7137 -s 111 -d 110 -p tcp -e 1000 -i 308 -a 1 r -t 30.7147 -s 110 -d 105 -p tcp -e 1000 -i 301 -a 5 + -t 30.715 -s 310 -d 304 -p tcp -e 1000 -i 257 -a 4 - -t 30.715 -s 310 -d 304 -p tcp -e 1000 -i 257 -a 4 h -t 30.715 -s 310 -d 304 -p tcp -e 1000 -i 257 -a 4 r -t 30.715 -s 311 -d 310 -p tcp -e 1000 -i 257 -a 4 r -t 30.717 -s 310 -d 304 -p tcp -e 1000 -i 257 -a 4 + -t 30.7207 -s 210 -d 204 -p tcp -e 1000 -i 291 -a 4 - -t 30.7207 -s 210 -d 204 -p tcp -e 1000 -i 291 -a 4 h -t 30.7207 -s 210 -d 204 -p tcp -e 1000 -i 291 -a 4 r -t 30.7207 -s 211 -d 210 -p tcp -e 1000 -i 291 -a 4 + -t 30.7219 -s 211 -d 212 -p ack -e 40 -i 293 -a 4 - -t 30.7219 -s 211 -d 212 -p ack -e 40 -i 293 -a 4 h -t 30.7219 -s 211 -d 212 -p ack -e 40 -i 293 -a 4 r -t 30.7219 -s 210 -d 211 -p ack -e 40 -i 293 -a 4 r -t 30.7227 -s 210 -d 204 -p tcp -e 1000 -i 291 -a 4 r -t 30.7229 -s 211 -d 212 -p ack -e 40 -i 293 -a 4 - -t 30.7237 -s 111 -d 110 -p tcp -e 1000 -i 309 -a 1 h -t 30.7237 -s 111 -d 110 -p tcp -e 1000 -i 309 -a 1 + -t 30.725 -s 310 -d 304 -p tcp -e 1000 -i 258 -a 4 - -t 30.725 -s 310 -d 304 -p tcp -e 1000 -i 258 -a 4 h -t 30.725 -s 310 -d 304 -p tcp -e 1000 -i 258 -a 4 r -t 30.725 -s 311 -d 310 -p tcp -e 1000 -i 258 -a 4 + -t 30.7268 -s 304 -d 310 -p ack -e 40 -i 266 -a 4 - -t 30.7268 -s 304 -d 310 -p ack -e 40 -i 266 -a 4 h -t 30.7268 -s 304 -d 310 -p ack -e 40 -i 266 -a 4 r -t 30.727 -s 310 -d 304 -p tcp -e 1000 -i 258 -a 4 + -t 30.7278 -s 310 -d 311 -p ack -e 40 -i 266 -a 4 - -t 30.7278 -s 310 -d 311 -p ack -e 40 -i 266 -a 4 h -t 30.7278 -s 310 -d 311 -p ack -e 40 -i 266 -a 4 r -t 30.7278 -s 304 -d 310 -p ack -e 40 -i 266 -a 4 + -t 30.7299 -s 111 -d 112 -p ack -e 40 -i 302 -a 5 - -t 30.7299 -s 111 -d 112 -p ack -e 40 -i 302 -a 5 h -t 30.7299 -s 111 -d 112 -p ack -e 40 -i 302 -a 5 r -t 30.7299 -s 110 -d 111 -p ack -e 40 -i 302 -a 5 + -t 30.7301 -s 211 -d 212 -p ack -e 40 -i 295 -a 9 - -t 30.7301 -s 211 -d 212 -p ack -e 40 -i 295 -a 9 h -t 30.7301 -s 211 -d 212 -p ack -e 40 -i 295 -a 9 r -t 30.7301 -s 210 -d 211 -p ack -e 40 -i 295 -a 9 + -t 30.7307 -s 210 -d 204 -p tcp -e 1000 -i 292 -a 4 - -t 30.7307 -s 210 -d 204 -p tcp -e 1000 -i 292 -a 4 h -t 30.7307 -s 210 -d 204 -p tcp -e 1000 -i 292 -a 4 r -t 30.7307 -s 211 -d 210 -p tcp -e 1000 -i 292 -a 4 r -t 30.7309 -s 111 -d 112 -p ack -e 40 -i 302 -a 5 r -t 30.7311 -s 211 -d 212 -p ack -e 40 -i 295 -a 9 + -t 30.7325 -s 204 -d 210 -p ack -e 40 -i 301 -a 4 - -t 30.7325 -s 204 -d 210 -p ack -e 40 -i 301 -a 4 h -t 30.7325 -s 204 -d 210 -p ack -e 40 -i 301 -a 4 r -t 30.7327 -s 210 -d 204 -p tcp -e 1000 -i 292 -a 4 + -t 30.7335 -s 210 -d 211 -p ack -e 40 -i 301 -a 4 - -t 30.7335 -s 210 -d 211 -p ack -e 40 -i 301 -a 4 h -t 30.7335 -s 210 -d 211 -p ack -e 40 -i 301 -a 4 r -t 30.7335 -s 204 -d 210 -p ack -e 40 -i 301 -a 4 + -t 30.7336 -s 112 -d 111 -p tcp -e 1000 -i 312 -a 3 - -t 30.7336 -s 112 -d 111 -p tcp -e 1000 -i 312 -a 3 h -t 30.7336 -s 112 -d 111 -p tcp -e 1000 -i 312 -a 3 - -t 30.7337 -s 111 -d 110 -p tcp -e 1000 -i 310 -a 8 h -t 30.7337 -s 111 -d 110 -p tcp -e 1000 -i 310 -a 8 + -t 30.7354 -s 111 -d 110 -p tcp -e 1000 -i 312 -a 3 r -t 30.7356 -s 112 -d 111 -p tcp -e 1000 -i 312 -a 3 + -t 30.7407 -s 210 -d 204 -p tcp -e 1000 -i 294 -a 4 - -t 30.7407 -s 210 -d 204 -p tcp -e 1000 -i 294 -a 4 h -t 30.7407 -s 210 -d 204 -p tcp -e 1000 -i 294 -a 4 r -t 30.7407 -s 211 -d 210 -p tcp -e 1000 -i 294 -a 4 r -t 30.7427 -s 210 -d 204 -p tcp -e 1000 -i 294 -a 4 - -t 30.7437 -s 111 -d 110 -p tcp -e 1000 -i 312 -a 3 h -t 30.7437 -s 111 -d 110 -p tcp -e 1000 -i 312 -a 3 + -t 30.7454 -s 310 -d 309 -p tcp -e 1000 -i 259 -a 9 - -t 30.7454 -s 310 -d 309 -p tcp -e 1000 -i 259 -a 9 h -t 30.7454 -s 310 -d 309 -p tcp -e 1000 -i 259 -a 9 r -t 30.7454 -s 311 -d 310 -p tcp -e 1000 -i 259 -a 9 r -t 30.7474 -s 310 -d 309 -p tcp -e 1000 -i 259 -a 9 + -t 30.7554 -s 310 -d 309 -p tcp -e 1000 -i 260 -a 9 - -t 30.7554 -s 310 -d 309 -p tcp -e 1000 -i 260 -a 9 h -t 30.7554 -s 310 -d 309 -p tcp -e 1000 -i 260 -a 9 r -t 30.7554 -s 311 -d 310 -p tcp -e 1000 -i 260 -a 9 + -t 30.7572 -s 309 -d 310 -p ack -e 40 -i 267 -a 9 - -t 30.7572 -s 309 -d 310 -p ack -e 40 -i 267 -a 9 h -t 30.7572 -s 309 -d 310 -p ack -e 40 -i 267 -a 9 r -t 30.7574 -s 310 -d 309 -p tcp -e 1000 -i 260 -a 9 + -t 30.7582 -s 310 -d 311 -p ack -e 40 -i 267 -a 9 - -t 30.7582 -s 310 -d 311 -p ack -e 40 -i 267 -a 9 h -t 30.7582 -s 310 -d 311 -p ack -e 40 -i 267 -a 9 r -t 30.7582 -s 309 -d 310 -p ack -e 40 -i 267 -a 9 + -t 30.7694 -s 211 -d 212 -p ack -e 40 -i 299 -a 5 - -t 30.7694 -s 211 -d 212 -p ack -e 40 -i 299 -a 5 h -t 30.7694 -s 211 -d 212 -p ack -e 40 -i 299 -a 5 r -t 30.7694 -s 210 -d 211 -p ack -e 40 -i 299 -a 5 + -t 30.7702 -s 210 -d 205 -p tcp -e 1000 -i 296 -a 5 - -t 30.7702 -s 210 -d 205 -p tcp -e 1000 -i 296 -a 5 h -t 30.7702 -s 210 -d 205 -p tcp -e 1000 -i 296 -a 5 r -t 30.7702 -s 211 -d 210 -p tcp -e 1000 -i 296 -a 5 + -t 30.7704 -s 212 -d 211 -p tcp -e 1000 -i 302 -a 5 + -t 30.7704 -s 212 -d 211 -p tcp -e 1000 -i 303 -a 5 - -t 30.7704 -s 212 -d 211 -p tcp -e 1000 -i 302 -a 5 h -t 30.7704 -s 212 -d 211 -p tcp -e 1000 -i 302 -a 5 r -t 30.7704 -s 211 -d 212 -p ack -e 40 -i 299 -a 5 - -t 30.7712 -s 212 -d 211 -p tcp -e 1000 -i 303 -a 5 h -t 30.7712 -s 212 -d 211 -p tcp -e 1000 -i 303 -a 5 + -t 30.772 -s 205 -d 210 -p ack -e 40 -i 304 -a 5 - -t 30.772 -s 205 -d 210 -p ack -e 40 -i 304 -a 5 h -t 30.772 -s 205 -d 210 -p ack -e 40 -i 304 -a 5 + -t 30.7722 -s 211 -d 210 -p tcp -e 1000 -i 302 -a 5 - -t 30.7722 -s 211 -d 210 -p tcp -e 1000 -i 302 -a 5 h -t 30.7722 -s 211 -d 210 -p tcp -e 1000 -i 302 -a 5 r -t 30.7722 -s 210 -d 205 -p tcp -e 1000 -i 296 -a 5 r -t 30.7724 -s 212 -d 211 -p tcp -e 1000 -i 302 -a 5 + -t 30.773 -s 210 -d 211 -p ack -e 40 -i 304 -a 5 + -t 30.773 -s 211 -d 210 -p tcp -e 1000 -i 303 -a 5 - -t 30.773 -s 210 -d 211 -p ack -e 40 -i 304 -a 5 h -t 30.773 -s 210 -d 211 -p ack -e 40 -i 304 -a 5 r -t 30.773 -s 205 -d 210 -p ack -e 40 -i 304 -a 5 r -t 30.7732 -s 212 -d 211 -p tcp -e 1000 -i 303 -a 5 + -t 30.7737 -s 110 -d 101 -p tcp -e 1000 -i 303 -a 1 + -t 30.7737 -s 310 -d 301 -p tcp -e 1000 -i 261 -a 1 - -t 30.7737 -s 110 -d 101 -p tcp -e 1000 -i 303 -a 1 - -t 30.7737 -s 310 -d 301 -p tcp -e 1000 -i 261 -a 1 h -t 30.7737 -s 110 -d 101 -p tcp -e 1000 -i 303 -a 1 h -t 30.7737 -s 310 -d 301 -p tcp -e 1000 -i 261 -a 1 r -t 30.7737 -s 111 -d 110 -p tcp -e 1000 -i 303 -a 1 r -t 30.7737 -s 311 -d 310 -p tcp -e 1000 -i 261 -a 1 + -t 30.7739 -s 212 -d 211 -p tcp -e 1000 -i 305 -a 1 - -t 30.7739 -s 212 -d 211 -p tcp -e 1000 -i 305 -a 1 h -t 30.7739 -s 212 -d 211 -p tcp -e 1000 -i 305 -a 1 + -t 30.7757 -s 211 -d 210 -p tcp -e 1000 -i 305 -a 1 r -t 30.7757 -s 110 -d 101 -p tcp -e 1000 -i 303 -a 1 r -t 30.7757 -s 310 -d 301 -p tcp -e 1000 -i 261 -a 1 r -t 30.7759 -s 212 -d 211 -p tcp -e 1000 -i 305 -a 1 + -t 30.7782 -s 311 -d 312 -p ack -e 40 -i 264 -a 7 - -t 30.7782 -s 311 -d 312 -p ack -e 40 -i 264 -a 7 h -t 30.7782 -s 311 -d 312 -p ack -e 40 -i 264 -a 7 r -t 30.7782 -s 310 -d 311 -p ack -e 40 -i 264 -a 7 r -t 30.7792 -s 311 -d 312 -p ack -e 40 -i 264 -a 7 + -t 30.7793 -s 312 -d 311 -p tcp -e 1000 -i 268 -a 7 + -t 30.7793 -s 312 -d 311 -p tcp -e 1000 -i 269 -a 7 + -t 30.7793 -s 312 -d 311 -p tcp -e 1000 -i 270 -a 7 - -t 30.7793 -s 312 -d 311 -p tcp -e 1000 -i 268 -a 7 h -t 30.7793 -s 312 -d 311 -p tcp -e 1000 -i 268 -a 7 - -t 30.7801 -s 312 -d 311 -p tcp -e 1000 -i 269 -a 7 h -t 30.7801 -s 312 -d 311 -p tcp -e 1000 -i 269 -a 7 + -t 30.7802 -s 210 -d 205 -p tcp -e 1000 -i 297 -a 5 - -t 30.7802 -s 210 -d 205 -p tcp -e 1000 -i 297 -a 5 h -t 30.7802 -s 210 -d 205 -p tcp -e 1000 -i 297 -a 5 r -t 30.7802 -s 211 -d 210 -p tcp -e 1000 -i 297 -a 5 - -t 30.7809 -s 312 -d 311 -p tcp -e 1000 -i 270 -a 7 h -t 30.7809 -s 312 -d 311 -p tcp -e 1000 -i 270 -a 7 + -t 30.7811 -s 311 -d 310 -p tcp -e 1000 -i 268 -a 7 - -t 30.7811 -s 311 -d 310 -p tcp -e 1000 -i 268 -a 7 h -t 30.7811 -s 311 -d 310 -p tcp -e 1000 -i 268 -a 7 r -t 30.7813 -s 312 -d 311 -p tcp -e 1000 -i 268 -a 7 + -t 30.7819 -s 311 -d 310 -p tcp -e 1000 -i 269 -a 7 r -t 30.7821 -s 312 -d 311 -p tcp -e 1000 -i 269 -a 7 - -t 30.7822 -s 211 -d 210 -p tcp -e 1000 -i 303 -a 5 h -t 30.7822 -s 211 -d 210 -p tcp -e 1000 -i 303 -a 5 r -t 30.7822 -s 210 -d 205 -p tcp -e 1000 -i 297 -a 5 + -t 30.7827 -s 311 -d 310 -p tcp -e 1000 -i 270 -a 7 r -t 30.7829 -s 312 -d 311 -p tcp -e 1000 -i 270 -a 7 + -t 30.7837 -s 110 -d 101 -p tcp -e 1000 -i 304 -a 1 + -t 30.7837 -s 310 -d 305 -p tcp -e 1000 -i 262 -a 5 - -t 30.7837 -s 110 -d 101 -p tcp -e 1000 -i 304 -a 1 - -t 30.7837 -s 310 -d 305 -p tcp -e 1000 -i 262 -a 5 h -t 30.7837 -s 110 -d 101 -p tcp -e 1000 -i 304 -a 1 h -t 30.7837 -s 310 -d 305 -p tcp -e 1000 -i 262 -a 5 r -t 30.7837 -s 111 -d 110 -p tcp -e 1000 -i 304 -a 1 r -t 30.7837 -s 311 -d 310 -p tcp -e 1000 -i 262 -a 5 + -t 30.7855 -s 101 -d 110 -p ack -e 40 -i 313 -a 1 - -t 30.7855 -s 101 -d 110 -p ack -e 40 -i 313 -a 1 h -t 30.7855 -s 101 -d 110 -p ack -e 40 -i 313 -a 1 r -t 30.7857 -s 110 -d 101 -p tcp -e 1000 -i 304 -a 1 r -t 30.7857 -s 310 -d 305 -p tcp -e 1000 -i 262 -a 5 + -t 30.7865 -s 110 -d 111 -p ack -e 40 -i 313 -a 1 - -t 30.7865 -s 110 -d 111 -p ack -e 40 -i 313 -a 1 h -t 30.7865 -s 110 -d 111 -p ack -e 40 -i 313 -a 1 r -t 30.7865 -s 101 -d 110 -p ack -e 40 -i 313 -a 1 + -t 30.7902 -s 210 -d 201 -p tcp -e 1000 -i 298 -a 1 - -t 30.7902 -s 210 -d 201 -p tcp -e 1000 -i 298 -a 1 h -t 30.7902 -s 210 -d 201 -p tcp -e 1000 -i 298 -a 1 r -t 30.7902 -s 211 -d 210 -p tcp -e 1000 -i 298 -a 1 - -t 30.7911 -s 311 -d 310 -p tcp -e 1000 -i 269 -a 7 h -t 30.7911 -s 311 -d 310 -p tcp -e 1000 -i 269 -a 7 - -t 30.7922 -s 211 -d 210 -p tcp -e 1000 -i 305 -a 1 h -t 30.7922 -s 211 -d 210 -p tcp -e 1000 -i 305 -a 1 r -t 30.7922 -s 210 -d 201 -p tcp -e 1000 -i 298 -a 1 + -t 30.7937 -s 110 -d 101 -p tcp -e 1000 -i 305 -a 1 + -t 30.7937 -s 310 -d 305 -p tcp -e 1000 -i 263 -a 5 - -t 30.7937 -s 110 -d 101 -p tcp -e 1000 -i 305 -a 1 - -t 30.7937 -s 310 -d 305 -p tcp -e 1000 -i 263 -a 5 h -t 30.7937 -s 110 -d 101 -p tcp -e 1000 -i 305 -a 1 h -t 30.7937 -s 310 -d 305 -p tcp -e 1000 -i 263 -a 5 r -t 30.7937 -s 111 -d 110 -p tcp -e 1000 -i 305 -a 1 r -t 30.7937 -s 311 -d 310 -p tcp -e 1000 -i 263 -a 5 + -t 30.7955 -s 305 -d 310 -p ack -e 40 -i 271 -a 5 - -t 30.7955 -s 305 -d 310 -p ack -e 40 -i 271 -a 5 h -t 30.7955 -s 305 -d 310 -p ack -e 40 -i 271 -a 5 r -t 30.7957 -s 110 -d 101 -p tcp -e 1000 -i 305 -a 1 r -t 30.7957 -s 310 -d 305 -p tcp -e 1000 -i 263 -a 5 + -t 30.7965 -s 310 -d 311 -p ack -e 40 -i 271 -a 5 - -t 30.7965 -s 310 -d 311 -p ack -e 40 -i 271 -a 5 h -t 30.7965 -s 310 -d 311 -p ack -e 40 -i 271 -a 5 r -t 30.7965 -s 305 -d 310 -p ack -e 40 -i 271 -a 5 - -t 30.8011 -s 311 -d 310 -p tcp -e 1000 -i 270 -a 7 h -t 30.8011 -s 311 -d 310 -p tcp -e 1000 -i 270 -a 7 + -t 30.8014 -s 211 -d 212 -p ack -e 40 -i 300 -a 0 - -t 30.8014 -s 211 -d 212 -p ack -e 40 -i 300 -a 0 h -t 30.8014 -s 211 -d 212 -p ack -e 40 -i 300 -a 0 r -t 30.8014 -s 210 -d 211 -p ack -e 40 -i 300 -a 0 r -t 30.8024 -s 211 -d 212 -p ack -e 40 -i 300 -a 0 + -t 30.8037 -s 110 -d 101 -p tcp -e 1000 -i 306 -a 1 - -t 30.8037 -s 110 -d 101 -p tcp -e 1000 -i 306 -a 1 h -t 30.8037 -s 110 -d 101 -p tcp -e 1000 -i 306 -a 1 r -t 30.8037 -s 111 -d 110 -p tcp -e 1000 -i 306 -a 1 + -t 30.8055 -s 101 -d 110 -p ack -e 40 -i 314 -a 1 - -t 30.8055 -s 101 -d 110 -p ack -e 40 -i 314 -a 1 h -t 30.8055 -s 101 -d 110 -p ack -e 40 -i 314 -a 1 r -t 30.8057 -s 110 -d 101 -p tcp -e 1000 -i 306 -a 1 + -t 30.806 -s 111 -d 112 -p ack -e 40 -i 311 -a 5 - -t 30.806 -s 111 -d 112 -p ack -e 40 -i 311 -a 5 h -t 30.806 -s 111 -d 112 -p ack -e 40 -i 311 -a 5 r -t 30.806 -s 110 -d 111 -p ack -e 40 -i 311 -a 5 + -t 30.8065 -s 110 -d 111 -p ack -e 40 -i 314 -a 1 - -t 30.8065 -s 110 -d 111 -p ack -e 40 -i 314 -a 1 h -t 30.8065 -s 110 -d 111 -p ack -e 40 -i 314 -a 1 r -t 30.8065 -s 101 -d 110 -p ack -e 40 -i 314 -a 1 r -t 30.807 -s 111 -d 112 -p ack -e 40 -i 311 -a 5 + -t 30.8082 -s 311 -d 312 -p ack -e 40 -i 265 -a 0 - -t 30.8082 -s 311 -d 312 -p ack -e 40 -i 265 -a 0 h -t 30.8082 -s 311 -d 312 -p ack -e 40 -i 265 -a 0 r -t 30.8082 -s 310 -d 311 -p ack -e 40 -i 265 -a 0 r -t 30.8092 -s 311 -d 312 -p ack -e 40 -i 265 -a 0 + -t 30.8093 -s 312 -d 311 -p tcp -e 1000 -i 272 -a 0 + -t 30.8093 -s 312 -d 311 -p tcp -e 1000 -i 273 -a 0 - -t 30.8093 -s 312 -d 311 -p tcp -e 1000 -i 272 -a 0 h -t 30.8093 -s 312 -d 311 -p tcp -e 1000 -i 272 -a 0 + -t 30.8099 -s 200 -d 210 -p ack -e 40 -i 306 -a 0 - -t 30.8099 -s 200 -d 210 -p ack -e 40 -i 306 -a 0 h -t 30.8099 -s 200 -d 210 -p ack -e 40 -i 306 -a 0 - -t 30.8101 -s 312 -d 311 -p tcp -e 1000 -i 273 -a 0 h -t 30.8101 -s 312 -d 311 -p tcp -e 1000 -i 273 -a 0 r -t 30.8109 -s 200 -d 210 -p ack -e 40 -i 306 -a 0 + -t 30.811 -s 210 -d 211 -p ack -e 40 -i 306 -a 0 - -t 30.811 -s 210 -d 211 -p ack -e 40 -i 306 -a 0 h -t 30.811 -s 210 -d 211 -p ack -e 40 -i 306 -a 0 + -t 30.8111 -s 311 -d 310 -p tcp -e 1000 -i 272 -a 0 - -t 30.8111 -s 311 -d 310 -p tcp -e 1000 -i 272 -a 0 h -t 30.8111 -s 311 -d 310 -p tcp -e 1000 -i 272 -a 0 r -t 30.8113 -s 312 -d 311 -p tcp -e 1000 -i 272 -a 0 + -t 30.8119 -s 311 -d 310 -p tcp -e 1000 -i 273 -a 0 r -t 30.8121 -s 312 -d 311 -p tcp -e 1000 -i 273 -a 0 + -t 30.8137 -s 110 -d 101 -p tcp -e 1000 -i 307 -a 1 - -t 30.8137 -s 110 -d 101 -p tcp -e 1000 -i 307 -a 1 h -t 30.8137 -s 110 -d 101 -p tcp -e 1000 -i 307 -a 1 r -t 30.8137 -s 111 -d 110 -p tcp -e 1000 -i 307 -a 1 + -t 30.8145 -s 105 -d 110 -p ack -e 40 -i 315 -a 5 - -t 30.8145 -s 105 -d 110 -p ack -e 40 -i 315 -a 5 h -t 30.8145 -s 105 -d 110 -p ack -e 40 -i 315 -a 5 r -t 30.8155 -s 105 -d 110 -p ack -e 40 -i 315 -a 5 + -t 30.8156 -s 110 -d 111 -p ack -e 40 -i 315 -a 5 - -t 30.8156 -s 110 -d 111 -p ack -e 40 -i 315 -a 5 h -t 30.8156 -s 110 -d 111 -p ack -e 40 -i 315 -a 5 r -t 30.8157 -s 110 -d 101 -p tcp -e 1000 -i 307 -a 1 - -t 30.8211 -s 311 -d 310 -p tcp -e 1000 -i 273 -a 0 h -t 30.8211 -s 311 -d 310 -p tcp -e 1000 -i 273 -a 0 + -t 30.8237 -s 110 -d 101 -p tcp -e 1000 -i 308 -a 1 - -t 30.8237 -s 110 -d 101 -p tcp -e 1000 -i 308 -a 1 h -t 30.8237 -s 110 -d 101 -p tcp -e 1000 -i 308 -a 1 r -t 30.8237 -s 111 -d 110 -p tcp -e 1000 -i 308 -a 1 + -t 30.8255 -s 101 -d 110 -p ack -e 40 -i 316 -a 1 - -t 30.8255 -s 101 -d 110 -p ack -e 40 -i 316 -a 1 h -t 30.8255 -s 101 -d 110 -p ack -e 40 -i 316 -a 1 r -t 30.8257 -s 110 -d 101 -p tcp -e 1000 -i 308 -a 1 + -t 30.8265 -s 110 -d 111 -p ack -e 40 -i 316 -a 1 - -t 30.8265 -s 110 -d 111 -p ack -e 40 -i 316 -a 1 h -t 30.8265 -s 110 -d 111 -p ack -e 40 -i 316 -a 1 r -t 30.8265 -s 101 -d 110 -p ack -e 40 -i 316 -a 1 + -t 30.8282 -s 311 -d 312 -p ack -e 40 -i 266 -a 4 - -t 30.8282 -s 311 -d 312 -p ack -e 40 -i 266 -a 4 h -t 30.8282 -s 311 -d 312 -p ack -e 40 -i 266 -a 4 r -t 30.8282 -s 310 -d 311 -p ack -e 40 -i 266 -a 4 r -t 30.8292 -s 311 -d 312 -p ack -e 40 -i 266 -a 4 + -t 30.8293 -s 312 -d 311 -p tcp -e 1000 -i 274 -a 4 + -t 30.8293 -s 312 -d 311 -p tcp -e 1000 -i 275 -a 4 - -t 30.8293 -s 312 -d 311 -p tcp -e 1000 -i 274 -a 4 h -t 30.8293 -s 312 -d 311 -p tcp -e 1000 -i 274 -a 4 - -t 30.8301 -s 312 -d 311 -p tcp -e 1000 -i 275 -a 4 h -t 30.8301 -s 312 -d 311 -p tcp -e 1000 -i 275 -a 4 + -t 30.8311 -s 311 -d 310 -p tcp -e 1000 -i 274 -a 4 - -t 30.8311 -s 311 -d 310 -p tcp -e 1000 -i 274 -a 4 h -t 30.8311 -s 311 -d 310 -p tcp -e 1000 -i 274 -a 4 r -t 30.8313 -s 312 -d 311 -p tcp -e 1000 -i 274 -a 4 + -t 30.8319 -s 311 -d 310 -p tcp -e 1000 -i 275 -a 4 r -t 30.8321 -s 312 -d 311 -p tcp -e 1000 -i 275 -a 4 + -t 30.8337 -s 110 -d 101 -p tcp -e 1000 -i 309 -a 1 - -t 30.8337 -s 110 -d 101 -p tcp -e 1000 -i 309 -a 1 h -t 30.8337 -s 110 -d 101 -p tcp -e 1000 -i 309 -a 1 r -t 30.8337 -s 111 -d 110 -p tcp -e 1000 -i 309 -a 1 + -t 30.8339 -s 211 -d 212 -p ack -e 40 -i 301 -a 4 - -t 30.8339 -s 211 -d 212 -p ack -e 40 -i 301 -a 4 h -t 30.8339 -s 211 -d 212 -p ack -e 40 -i 301 -a 4 r -t 30.8339 -s 210 -d 211 -p ack -e 40 -i 301 -a 4 r -t 30.8349 -s 211 -d 212 -p ack -e 40 -i 301 -a 4 r -t 30.8357 -s 110 -d 101 -p tcp -e 1000 -i 309 -a 1 - -t 30.8411 -s 311 -d 310 -p tcp -e 1000 -i 275 -a 4 h -t 30.8411 -s 311 -d 310 -p tcp -e 1000 -i 275 -a 4 + -t 30.8425 -s 204 -d 210 -p ack -e 40 -i 307 -a 4 - -t 30.8425 -s 204 -d 210 -p ack -e 40 -i 307 -a 4 h -t 30.8425 -s 204 -d 210 -p ack -e 40 -i 307 -a 4 + -t 30.8435 -s 210 -d 211 -p ack -e 40 -i 307 -a 4 - -t 30.8435 -s 210 -d 211 -p ack -e 40 -i 307 -a 4 h -t 30.8435 -s 210 -d 211 -p ack -e 40 -i 307 -a 4 r -t 30.8435 -s 204 -d 210 -p ack -e 40 -i 307 -a 4 + -t 30.8437 -s 110 -d 108 -p tcp -e 1000 -i 310 -a 8 - -t 30.8437 -s 110 -d 108 -p tcp -e 1000 -i 310 -a 8 h -t 30.8437 -s 110 -d 108 -p tcp -e 1000 -i 310 -a 8 r -t 30.8437 -s 111 -d 110 -p tcp -e 1000 -i 310 -a 8 r -t 30.8457 -s 110 -d 108 -p tcp -e 1000 -i 310 -a 8 + -t 30.8537 -s 110 -d 103 -p tcp -e 1000 -i 312 -a 3 - -t 30.8537 -s 110 -d 103 -p tcp -e 1000 -i 312 -a 3 h -t 30.8537 -s 110 -d 103 -p tcp -e 1000 -i 312 -a 3 r -t 30.8537 -s 111 -d 110 -p tcp -e 1000 -i 312 -a 3 + -t 30.8555 -s 103 -d 110 -p ack -e 40 -i 317 -a 3 - -t 30.8555 -s 103 -d 110 -p ack -e 40 -i 317 -a 3 h -t 30.8555 -s 103 -d 110 -p ack -e 40 -i 317 -a 3 r -t 30.8557 -s 110 -d 103 -p tcp -e 1000 -i 312 -a 3 + -t 30.8565 -s 110 -d 111 -p ack -e 40 -i 317 -a 3 - -t 30.8565 -s 110 -d 111 -p ack -e 40 -i 317 -a 3 h -t 30.8565 -s 110 -d 111 -p ack -e 40 -i 317 -a 3 r -t 30.8565 -s 103 -d 110 -p ack -e 40 -i 317 -a 3 + -t 30.8586 -s 311 -d 312 -p ack -e 40 -i 267 -a 9 - -t 30.8586 -s 311 -d 312 -p ack -e 40 -i 267 -a 9 h -t 30.8586 -s 311 -d 312 -p ack -e 40 -i 267 -a 9 r -t 30.8586 -s 310 -d 311 -p ack -e 40 -i 267 -a 9 r -t 30.8596 -s 311 -d 312 -p ack -e 40 -i 267 -a 9 + -t 30.8597 -s 312 -d 311 -p tcp -e 1000 -i 276 -a 9 + -t 30.8597 -s 312 -d 311 -p tcp -e 1000 -i 277 -a 9 + -t 30.8597 -s 312 -d 311 -p tcp -e 1000 -i 278 -a 9 - -t 30.8597 -s 312 -d 311 -p tcp -e 1000 -i 276 -a 9 h -t 30.8597 -s 312 -d 311 -p tcp -e 1000 -i 276 -a 9 - -t 30.8605 -s 312 -d 311 -p tcp -e 1000 -i 277 -a 9 h -t 30.8605 -s 312 -d 311 -p tcp -e 1000 -i 277 -a 9 - -t 30.8613 -s 312 -d 311 -p tcp -e 1000 -i 278 -a 9 h -t 30.8613 -s 312 -d 311 -p tcp -e 1000 -i 278 -a 9 + -t 30.8615 -s 311 -d 310 -p tcp -e 1000 -i 276 -a 9 - -t 30.8615 -s 311 -d 310 -p tcp -e 1000 -i 276 -a 9 h -t 30.8615 -s 311 -d 310 -p tcp -e 1000 -i 276 -a 9 r -t 30.8617 -s 312 -d 311 -p tcp -e 1000 -i 276 -a 9 + -t 30.8623 -s 311 -d 310 -p tcp -e 1000 -i 277 -a 9 r -t 30.8625 -s 312 -d 311 -p tcp -e 1000 -i 277 -a 9 + -t 30.8631 -s 311 -d 310 -p tcp -e 1000 -i 278 -a 9 r -t 30.8633 -s 312 -d 311 -p tcp -e 1000 -i 278 -a 9 - -t 30.8715 -s 311 -d 310 -p tcp -e 1000 -i 277 -a 9 h -t 30.8715 -s 311 -d 310 -p tcp -e 1000 -i 277 -a 9 + -t 30.8734 -s 211 -d 212 -p ack -e 40 -i 304 -a 5 - -t 30.8734 -s 211 -d 212 -p ack -e 40 -i 304 -a 5 h -t 30.8734 -s 211 -d 212 -p ack -e 40 -i 304 -a 5 r -t 30.8734 -s 210 -d 211 -p ack -e 40 -i 304 -a 5 + -t 30.8744 -s 212 -d 211 -p tcp -e 1000 -i 308 -a 5 + -t 30.8744 -s 212 -d 211 -p tcp -e 1000 -i 309 -a 5 + -t 30.8744 -s 212 -d 211 -p tcp -e 1000 -i 310 -a 5 - -t 30.8744 -s 212 -d 211 -p tcp -e 1000 -i 308 -a 5 h -t 30.8744 -s 212 -d 211 -p tcp -e 1000 -i 308 -a 5 r -t 30.8744 -s 211 -d 212 -p ack -e 40 -i 304 -a 5 - -t 30.8752 -s 212 -d 211 -p tcp -e 1000 -i 309 -a 5 h -t 30.8752 -s 212 -d 211 -p tcp -e 1000 -i 309 -a 5 + -t 30.8755 -s 301 -d 310 -p ack -e 40 -i 279 -a 1 - -t 30.8755 -s 301 -d 310 -p ack -e 40 -i 279 -a 1 h -t 30.8755 -s 301 -d 310 -p ack -e 40 -i 279 -a 1 - -t 30.876 -s 212 -d 211 -p tcp -e 1000 -i 310 -a 5 h -t 30.876 -s 212 -d 211 -p tcp -e 1000 -i 310 -a 5 + -t 30.8762 -s 211 -d 210 -p tcp -e 1000 -i 308 -a 5 - -t 30.8762 -s 211 -d 210 -p tcp -e 1000 -i 308 -a 5 h -t 30.8762 -s 211 -d 210 -p tcp -e 1000 -i 308 -a 5 r -t 30.8764 -s 212 -d 211 -p tcp -e 1000 -i 308 -a 5 + -t 30.8765 -s 310 -d 311 -p ack -e 40 -i 279 -a 1 - -t 30.8765 -s 310 -d 311 -p ack -e 40 -i 279 -a 1 h -t 30.8765 -s 310 -d 311 -p ack -e 40 -i 279 -a 1 r -t 30.8765 -s 301 -d 310 -p ack -e 40 -i 279 -a 1 + -t 30.877 -s 211 -d 210 -p tcp -e 1000 -i 309 -a 5 r -t 30.8772 -s 212 -d 211 -p tcp -e 1000 -i 309 -a 5 + -t 30.8778 -s 211 -d 210 -p tcp -e 1000 -i 310 -a 5 r -t 30.878 -s 212 -d 211 -p tcp -e 1000 -i 310 -a 5 - -t 30.8815 -s 311 -d 310 -p tcp -e 1000 -i 278 -a 9 h -t 30.8815 -s 311 -d 310 -p tcp -e 1000 -i 278 -a 9 + -t 30.882 -s 205 -d 210 -p ack -e 40 -i 311 -a 5 - -t 30.882 -s 205 -d 210 -p ack -e 40 -i 311 -a 5 h -t 30.882 -s 205 -d 210 -p ack -e 40 -i 311 -a 5 + -t 30.8822 -s 210 -d 205 -p tcp -e 1000 -i 302 -a 5 - -t 30.8822 -s 210 -d 205 -p tcp -e 1000 -i 302 -a 5 h -t 30.8822 -s 210 -d 205 -p tcp -e 1000 -i 302 -a 5 r -t 30.8822 -s 211 -d 210 -p tcp -e 1000 -i 302 -a 5 + -t 30.883 -s 210 -d 211 -p ack -e 40 -i 311 -a 5 - -t 30.883 -s 210 -d 211 -p ack -e 40 -i 311 -a 5 h -t 30.883 -s 210 -d 211 -p ack -e 40 -i 311 -a 5 r -t 30.883 -s 205 -d 210 -p ack -e 40 -i 311 -a 5 r -t 30.8842 -s 210 -d 205 -p tcp -e 1000 -i 302 -a 5 + -t 30.8859 -s 212 -d 211 -p tcp -e 1000 -i 312 -a 1 - -t 30.8859 -s 212 -d 211 -p tcp -e 1000 -i 312 -a 1 h -t 30.8859 -s 212 -d 211 -p tcp -e 1000 -i 312 -a 1 - -t 30.8862 -s 211 -d 210 -p tcp -e 1000 -i 309 -a 5 h -t 30.8862 -s 211 -d 210 -p tcp -e 1000 -i 309 -a 5 + -t 30.8869 -s 111 -d 112 -p ack -e 40 -i 313 -a 1 - -t 30.8869 -s 111 -d 112 -p ack -e 40 -i 313 -a 1 h -t 30.8869 -s 111 -d 112 -p ack -e 40 -i 313 -a 1 r -t 30.8869 -s 110 -d 111 -p ack -e 40 -i 313 -a 1 + -t 30.8877 -s 211 -d 210 -p tcp -e 1000 -i 312 -a 1 r -t 30.8879 -s 111 -d 112 -p ack -e 40 -i 313 -a 1 r -t 30.8879 -s 212 -d 211 -p tcp -e 1000 -i 312 -a 1 + -t 30.888 -s 112 -d 111 -p tcp -e 1000 -i 318 -a 1 + -t 30.888 -s 112 -d 111 -p tcp -e 1000 -i 319 -a 1 + -t 30.888 -s 112 -d 111 -p tcp -e 1000 -i 320 -a 1 - -t 30.888 -s 112 -d 111 -p tcp -e 1000 -i 318 -a 1 h -t 30.888 -s 112 -d 111 -p tcp -e 1000 -i 318 -a 1 - -t 30.8888 -s 112 -d 111 -p tcp -e 1000 -i 319 -a 1 h -t 30.8888 -s 112 -d 111 -p tcp -e 1000 -i 319 -a 1 - -t 30.8896 -s 112 -d 111 -p tcp -e 1000 -i 320 -a 1 h -t 30.8896 -s 112 -d 111 -p tcp -e 1000 -i 320 -a 1 + -t 30.8898 -s 111 -d 110 -p tcp -e 1000 -i 318 -a 1 - -t 30.8898 -s 111 -d 110 -p tcp -e 1000 -i 318 -a 1 h -t 30.8898 -s 111 -d 110 -p tcp -e 1000 -i 318 -a 1 r -t 30.89 -s 112 -d 111 -p tcp -e 1000 -i 318 -a 1 + -t 30.8906 -s 111 -d 110 -p tcp -e 1000 -i 319 -a 1 r -t 30.8908 -s 112 -d 111 -p tcp -e 1000 -i 319 -a 1 + -t 30.8911 -s 310 -d 307 -p tcp -e 1000 -i 268 -a 7 - -t 30.8911 -s 310 -d 307 -p tcp -e 1000 -i 268 -a 7 h -t 30.8911 -s 310 -d 307 -p tcp -e 1000 -i 268 -a 7 r -t 30.8911 -s 311 -d 310 -p tcp -e 1000 -i 268 -a 7 + -t 30.8914 -s 111 -d 110 -p tcp -e 1000 -i 320 -a 1 r -t 30.8916 -s 112 -d 111 -p tcp -e 1000 -i 320 -a 1 + -t 30.892 -s 201 -d 210 -p ack -e 40 -i 313 -a 1 - -t 30.892 -s 201 -d 210 -p ack -e 40 -i 313 -a 1 h -t 30.892 -s 201 -d 210 -p ack -e 40 -i 313 -a 1 + -t 30.8922 -s 210 -d 205 -p tcp -e 1000 -i 303 -a 5 - -t 30.8922 -s 210 -d 205 -p tcp -e 1000 -i 303 -a 5 h -t 30.8922 -s 210 -d 205 -p tcp -e 1000 -i 303 -a 5 r -t 30.8922 -s 211 -d 210 -p tcp -e 1000 -i 303 -a 5 + -t 30.893 -s 210 -d 211 -p ack -e 40 -i 313 -a 1 - -t 30.893 -s 210 -d 211 -p ack -e 40 -i 313 -a 1 h -t 30.893 -s 210 -d 211 -p ack -e 40 -i 313 -a 1 r -t 30.893 -s 201 -d 210 -p ack -e 40 -i 313 -a 1 r -t 30.8931 -s 310 -d 307 -p tcp -e 1000 -i 268 -a 7 + -t 30.894 -s 205 -d 210 -p ack -e 40 -i 314 -a 5 - -t 30.894 -s 205 -d 210 -p ack -e 40 -i 314 -a 5 h -t 30.894 -s 205 -d 210 -p ack -e 40 -i 314 -a 5 r -t 30.8942 -s 210 -d 205 -p tcp -e 1000 -i 303 -a 5 + -t 30.895 -s 210 -d 211 -p ack -e 40 -i 314 -a 5 - -t 30.895 -s 210 -d 211 -p ack -e 40 -i 314 -a 5 h -t 30.895 -s 210 -d 211 -p ack -e 40 -i 314 -a 5 r -t 30.895 -s 205 -d 210 -p ack -e 40 -i 314 -a 5 - -t 30.8962 -s 211 -d 210 -p tcp -e 1000 -i 310 -a 5 h -t 30.8962 -s 211 -d 210 -p tcp -e 1000 -i 310 -a 5 + -t 30.8969 -s 311 -d 312 -p ack -e 40 -i 271 -a 5 - -t 30.8969 -s 311 -d 312 -p ack -e 40 -i 271 -a 5 h -t 30.8969 -s 311 -d 312 -p ack -e 40 -i 271 -a 5 r -t 30.8969 -s 310 -d 311 -p ack -e 40 -i 271 -a 5 r -t 30.8979 -s 311 -d 312 -p ack -e 40 -i 271 -a 5 + -t 30.898 -s 312 -d 311 -p tcp -e 1000 -i 280 -a 5 + -t 30.898 -s 312 -d 311 -p tcp -e 1000 -i 281 -a 5 - -t 30.898 -s 312 -d 311 -p tcp -e 1000 -i 280 -a 5 h -t 30.898 -s 312 -d 311 -p tcp -e 1000 -i 280 -a 5 - -t 30.8988 -s 312 -d 311 -p tcp -e 1000 -i 281 -a 5 h -t 30.8988 -s 312 -d 311 -p tcp -e 1000 -i 281 -a 5 + -t 30.8998 -s 311 -d 310 -p tcp -e 1000 -i 280 -a 5 - -t 30.8998 -s 111 -d 110 -p tcp -e 1000 -i 319 -a 1 - -t 30.8998 -s 311 -d 310 -p tcp -e 1000 -i 280 -a 5 h -t 30.8998 -s 111 -d 110 -p tcp -e 1000 -i 319 -a 1 h -t 30.8998 -s 311 -d 310 -p tcp -e 1000 -i 280 -a 5 r -t 30.9 -s 312 -d 311 -p tcp -e 1000 -i 280 -a 5 + -t 30.9006 -s 311 -d 310 -p tcp -e 1000 -i 281 -a 5 r -t 30.9008 -s 312 -d 311 -p tcp -e 1000 -i 281 -a 5 + -t 30.9011 -s 310 -d 307 -p tcp -e 1000 -i 269 -a 7 - -t 30.9011 -s 310 -d 307 -p tcp -e 1000 -i 269 -a 7 h -t 30.9011 -s 310 -d 307 -p tcp -e 1000 -i 269 -a 7 r -t 30.9011 -s 311 -d 310 -p tcp -e 1000 -i 269 -a 7 + -t 30.9022 -s 210 -d 201 -p tcp -e 1000 -i 305 -a 1 - -t 30.9022 -s 210 -d 201 -p tcp -e 1000 -i 305 -a 1 h -t 30.9022 -s 210 -d 201 -p tcp -e 1000 -i 305 -a 1 r -t 30.9022 -s 211 -d 210 -p tcp -e 1000 -i 305 -a 1 + -t 30.9029 -s 307 -d 310 -p ack -e 40 -i 282 -a 7 - -t 30.9029 -s 307 -d 310 -p ack -e 40 -i 282 -a 7 h -t 30.9029 -s 307 -d 310 -p ack -e 40 -i 282 -a 7 r -t 30.9031 -s 310 -d 307 -p tcp -e 1000 -i 269 -a 7 + -t 30.9039 -s 310 -d 311 -p ack -e 40 -i 282 -a 7 - -t 30.9039 -s 310 -d 311 -p ack -e 40 -i 282 -a 7 h -t 30.9039 -s 310 -d 311 -p ack -e 40 -i 282 -a 7 r -t 30.9039 -s 307 -d 310 -p ack -e 40 -i 282 -a 7 r -t 30.9042 -s 210 -d 201 -p tcp -e 1000 -i 305 -a 1 - -t 30.9062 -s 211 -d 210 -p tcp -e 1000 -i 312 -a 1 h -t 30.9062 -s 211 -d 210 -p tcp -e 1000 -i 312 -a 1 + -t 30.9069 -s 111 -d 112 -p ack -e 40 -i 314 -a 1 - -t 30.9069 -s 111 -d 112 -p ack -e 40 -i 314 -a 1 h -t 30.9069 -s 111 -d 112 -p ack -e 40 -i 314 -a 1 r -t 30.9069 -s 110 -d 111 -p ack -e 40 -i 314 -a 1 r -t 30.9079 -s 111 -d 112 -p ack -e 40 -i 314 -a 1 - -t 30.9098 -s 111 -d 110 -p tcp -e 1000 -i 320 -a 1 - -t 30.9098 -s 311 -d 310 -p tcp -e 1000 -i 281 -a 5 h -t 30.9098 -s 111 -d 110 -p tcp -e 1000 -i 320 -a 1 h -t 30.9098 -s 311 -d 310 -p tcp -e 1000 -i 281 -a 5 + -t 30.9111 -s 310 -d 307 -p tcp -e 1000 -i 270 -a 7 - -t 30.9111 -s 310 -d 307 -p tcp -e 1000 -i 270 -a 7 h -t 30.9111 -s 310 -d 307 -p tcp -e 1000 -i 270 -a 7 r -t 30.9111 -s 311 -d 310 -p tcp -e 1000 -i 270 -a 7 + -t 30.9114 -s 211 -d 212 -p ack -e 40 -i 306 -a 0 - -t 30.9114 -s 211 -d 212 -p ack -e 40 -i 306 -a 0 h -t 30.9114 -s 211 -d 212 -p ack -e 40 -i 306 -a 0 r -t 30.9114 -s 210 -d 211 -p ack -e 40 -i 306 -a 0 r -t 30.9124 -s 211 -d 212 -p ack -e 40 -i 306 -a 0 r -t 30.9131 -s 310 -d 307 -p tcp -e 1000 -i 270 -a 7 + -t 30.916 -s 111 -d 112 -p ack -e 40 -i 315 -a 5 - -t 30.916 -s 111 -d 112 -p ack -e 40 -i 315 -a 5 h -t 30.916 -s 111 -d 112 -p ack -e 40 -i 315 -a 5 r -t 30.916 -s 110 -d 111 -p ack -e 40 -i 315 -a 5 r -t 30.917 -s 111 -d 112 -p ack -e 40 -i 315 -a 5 + -t 30.9211 -s 310 -d 300 -p tcp -e 1000 -i 272 -a 0 - -t 30.9211 -s 310 -d 300 -p tcp -e 1000 -i 272 -a 0 h -t 30.9211 -s 310 -d 300 -p tcp -e 1000 -i 272 -a 0 r -t 30.9211 -s 311 -d 310 -p tcp -e 1000 -i 272 -a 0 r -t 30.9231 -s 310 -d 300 -p tcp -e 1000 -i 272 -a 0 + -t 30.9269 -s 111 -d 112 -p ack -e 40 -i 316 -a 1 - -t 30.9269 -s 111 -d 112 -p ack -e 40 -i 316 -a 1 h -t 30.9269 -s 111 -d 112 -p ack -e 40 -i 316 -a 1 r -t 30.9269 -s 110 -d 111 -p ack -e 40 -i 316 -a 1 r -t 30.9279 -s 111 -d 112 -p ack -e 40 -i 316 -a 1 + -t 30.9311 -s 310 -d 300 -p tcp -e 1000 -i 273 -a 0 - -t 30.9311 -s 310 -d 300 -p tcp -e 1000 -i 273 -a 0 h -t 30.9311 -s 310 -d 300 -p tcp -e 1000 -i 273 -a 0 r -t 30.9311 -s 311 -d 310 -p tcp -e 1000 -i 273 -a 0 + -t 30.9329 -s 300 -d 310 -p ack -e 40 -i 283 -a 0 - -t 30.9329 -s 300 -d 310 -p ack -e 40 -i 283 -a 0 h -t 30.9329 -s 300 -d 310 -p ack -e 40 -i 283 -a 0 r -t 30.9331 -s 310 -d 300 -p tcp -e 1000 -i 273 -a 0 + -t 30.9339 -s 310 -d 311 -p ack -e 40 -i 283 -a 0 - -t 30.9339 -s 310 -d 311 -p ack -e 40 -i 283 -a 0 h -t 30.9339 -s 310 -d 311 -p ack -e 40 -i 283 -a 0 r -t 30.9339 -s 300 -d 310 -p ack -e 40 -i 283 -a 0 + -t 30.9355 -s 101 -d 110 -p ack -e 40 -i 321 -a 1 - -t 30.9355 -s 101 -d 110 -p ack -e 40 -i 321 -a 1 h -t 30.9355 -s 101 -d 110 -p ack -e 40 -i 321 -a 1 + -t 30.9365 -s 110 -d 111 -p ack -e 40 -i 321 -a 1 - -t 30.9365 -s 110 -d 111 -p ack -e 40 -i 321 -a 1 h -t 30.9365 -s 110 -d 111 -p ack -e 40 -i 321 -a 1 r -t 30.9365 -s 101 -d 110 -p ack -e 40 -i 321 -a 1 + -t 30.9411 -s 310 -d 304 -p tcp -e 1000 -i 274 -a 4 - -t 30.9411 -s 310 -d 304 -p tcp -e 1000 -i 274 -a 4 h -t 30.9411 -s 310 -d 304 -p tcp -e 1000 -i 274 -a 4 r -t 30.9411 -s 311 -d 310 -p tcp -e 1000 -i 274 -a 4 r -t 30.9431 -s 310 -d 304 -p tcp -e 1000 -i 274 -a 4 + -t 30.9439 -s 211 -d 212 -p ack -e 40 -i 307 -a 4 - -t 30.9439 -s 211 -d 212 -p ack -e 40 -i 307 -a 4 h -t 30.9439 -s 211 -d 212 -p ack -e 40 -i 307 -a 4 r -t 30.9439 -s 210 -d 211 -p ack -e 40 -i 307 -a 4 r -t 30.9449 -s 211 -d 212 -p ack -e 40 -i 307 -a 4 + -t 30.9455 -s 108 -d 110 -p ack -e 40 -i 322 -a 8 - -t 30.9455 -s 108 -d 110 -p ack -e 40 -i 322 -a 8 h -t 30.9455 -s 108 -d 110 -p ack -e 40 -i 322 -a 8 + -t 30.9465 -s 110 -d 111 -p ack -e 40 -i 322 -a 8 - -t 30.9465 -s 110 -d 111 -p ack -e 40 -i 322 -a 8 h -t 30.9465 -s 110 -d 111 -p ack -e 40 -i 322 -a 8 r -t 30.9465 -s 108 -d 110 -p ack -e 40 -i 322 -a 8 + -t 30.9511 -s 310 -d 304 -p tcp -e 1000 -i 275 -a 4 - -t 30.9511 -s 310 -d 304 -p tcp -e 1000 -i 275 -a 4 h -t 30.9511 -s 310 -d 304 -p tcp -e 1000 -i 275 -a 4 r -t 30.9511 -s 311 -d 310 -p tcp -e 1000 -i 275 -a 4 + -t 30.9529 -s 304 -d 310 -p ack -e 40 -i 284 -a 4 - -t 30.9529 -s 304 -d 310 -p ack -e 40 -i 284 -a 4 h -t 30.9529 -s 304 -d 310 -p ack -e 40 -i 284 -a 4 r -t 30.9531 -s 310 -d 304 -p tcp -e 1000 -i 275 -a 4 + -t 30.9539 -s 310 -d 311 -p ack -e 40 -i 284 -a 4 - -t 30.9539 -s 310 -d 311 -p ack -e 40 -i 284 -a 4 h -t 30.9539 -s 310 -d 311 -p ack -e 40 -i 284 -a 4 r -t 30.9539 -s 304 -d 310 -p ack -e 40 -i 284 -a 4 + -t 30.9569 -s 111 -d 112 -p ack -e 40 -i 317 -a 3 - -t 30.9569 -s 111 -d 112 -p ack -e 40 -i 317 -a 3 h -t 30.9569 -s 111 -d 112 -p ack -e 40 -i 317 -a 3 r -t 30.9569 -s 110 -d 111 -p ack -e 40 -i 317 -a 3 r -t 30.9579 -s 111 -d 112 -p ack -e 40 -i 317 -a 3 + -t 30.9715 -s 310 -d 309 -p tcp -e 1000 -i 276 -a 9 - -t 30.9715 -s 310 -d 309 -p tcp -e 1000 -i 276 -a 9 h -t 30.9715 -s 310 -d 309 -p tcp -e 1000 -i 276 -a 9 r -t 30.9715 -s 311 -d 310 -p tcp -e 1000 -i 276 -a 9 r -t 30.9735 -s 310 -d 309 -p tcp -e 1000 -i 276 -a 9 + -t 30.9769 -s 311 -d 312 -p ack -e 40 -i 279 -a 1 - -t 30.9769 -s 311 -d 312 -p ack -e 40 -i 279 -a 1 h -t 30.9769 -s 311 -d 312 -p ack -e 40 -i 279 -a 1 r -t 30.9769 -s 310 -d 311 -p ack -e 40 -i 279 -a 1 r -t 30.9779 -s 311 -d 312 -p ack -e 40 -i 279 -a 1 + -t 30.978 -s 312 -d 311 -p tcp -e 1000 -i 285 -a 1 + -t 30.978 -s 312 -d 311 -p tcp -e 1000 -i 286 -a 1 - -t 30.978 -s 312 -d 311 -p tcp -e 1000 -i 285 -a 1 h -t 30.978 -s 312 -d 311 -p tcp -e 1000 -i 285 -a 1 - -t 30.9788 -s 312 -d 311 -p tcp -e 1000 -i 286 -a 1 h -t 30.9788 -s 312 -d 311 -p tcp -e 1000 -i 286 -a 1 + -t 30.9798 -s 311 -d 310 -p tcp -e 1000 -i 285 -a 1 - -t 30.9798 -s 311 -d 310 -p tcp -e 1000 -i 285 -a 1 h -t 30.9798 -s 311 -d 310 -p tcp -e 1000 -i 285 -a 1 r -t 30.98 -s 312 -d 311 -p tcp -e 1000 -i 285 -a 1 + -t 30.9806 -s 311 -d 310 -p tcp -e 1000 -i 286 -a 1 r -t 30.9808 -s 312 -d 311 -p tcp -e 1000 -i 286 -a 1 + -t 30.9815 -s 310 -d 309 -p tcp -e 1000 -i 277 -a 9 - -t 30.9815 -s 310 -d 309 -p tcp -e 1000 -i 277 -a 9 h -t 30.9815 -s 310 -d 309 -p tcp -e 1000 -i 277 -a 9 r -t 30.9815 -s 311 -d 310 -p tcp -e 1000 -i 277 -a 9 + -t 30.9833 -s 309 -d 310 -p ack -e 40 -i 287 -a 9 - -t 30.9833 -s 309 -d 310 -p ack -e 40 -i 287 -a 9 h -t 30.9833 -s 309 -d 310 -p ack -e 40 -i 287 -a 9 + -t 30.9834 -s 211 -d 212 -p ack -e 40 -i 311 -a 5 - -t 30.9834 -s 211 -d 212 -p ack -e 40 -i 311 -a 5 h -t 30.9834 -s 211 -d 212 -p ack -e 40 -i 311 -a 5 r -t 30.9834 -s 210 -d 211 -p ack -e 40 -i 311 -a 5 r -t 30.9835 -s 310 -d 309 -p tcp -e 1000 -i 277 -a 9 + -t 30.9843 -s 310 -d 311 -p ack -e 40 -i 287 -a 9 - -t 30.9843 -s 310 -d 311 -p ack -e 40 -i 287 -a 9 h -t 30.9843 -s 310 -d 311 -p ack -e 40 -i 287 -a 9 r -t 30.9843 -s 309 -d 310 -p ack -e 40 -i 287 -a 9 r -t 30.9844 -s 211 -d 212 -p ack -e 40 -i 311 -a 5 + -t 30.9862 -s 210 -d 205 -p tcp -e 1000 -i 308 -a 5 - -t 30.9862 -s 210 -d 205 -p tcp -e 1000 -i 308 -a 5 h -t 30.9862 -s 210 -d 205 -p tcp -e 1000 -i 308 -a 5 r -t 30.9862 -s 211 -d 210 -p tcp -e 1000 -i 308 -a 5 r -t 30.9882 -s 210 -d 205 -p tcp -e 1000 -i 308 -a 5 - -t 30.9898 -s 311 -d 310 -p tcp -e 1000 -i 286 -a 1 h -t 30.9898 -s 311 -d 310 -p tcp -e 1000 -i 286 -a 1 + -t 30.9915 -s 310 -d 309 -p tcp -e 1000 -i 278 -a 9 - -t 30.9915 -s 310 -d 309 -p tcp -e 1000 -i 278 -a 9 h -t 30.9915 -s 310 -d 309 -p tcp -e 1000 -i 278 -a 9 r -t 30.9915 -s 311 -d 310 -p tcp -e 1000 -i 278 -a 9 + -t 30.9934 -s 211 -d 212 -p ack -e 40 -i 313 -a 1 - -t 30.9934 -s 211 -d 212 -p ack -e 40 -i 313 -a 1 h -t 30.9934 -s 211 -d 212 -p ack -e 40 -i 313 -a 1 r -t 30.9934 -s 210 -d 211 -p ack -e 40 -i 313 -a 1 r -t 30.9935 -s 310 -d 309 -p tcp -e 1000 -i 278 -a 9 + -t 30.9944 -s 212 -d 211 -p tcp -e 1000 -i 315 -a 1 + -t 30.9944 -s 212 -d 211 -p tcp -e 1000 -i 316 -a 1 - -t 30.9944 -s 212 -d 211 -p tcp -e 1000 -i 315 -a 1 h -t 30.9944 -s 212 -d 211 -p tcp -e 1000 -i 315 -a 1 r -t 30.9944 -s 211 -d 212 -p ack -e 40 -i 313 -a 1 - -t 30.9952 -s 212 -d 211 -p tcp -e 1000 -i 316 -a 1 h -t 30.9952 -s 212 -d 211 -p tcp -e 1000 -i 316 -a 1 + -t 30.9954 -s 211 -d 212 -p ack -e 40 -i 314 -a 5 - -t 30.9954 -s 211 -d 212 -p ack -e 40 -i 314 -a 5 h -t 30.9954 -s 211 -d 212 -p ack -e 40 -i 314 -a 5 r -t 30.9954 -s 210 -d 211 -p ack -e 40 -i 314 -a 5 + -t 30.9962 -s 210 -d 205 -p tcp -e 1000 -i 309 -a 5 + -t 30.9962 -s 211 -d 210 -p tcp -e 1000 -i 315 -a 1 - -t 30.9962 -s 210 -d 205 -p tcp -e 1000 -i 309 -a 5 - -t 30.9962 -s 211 -d 210 -p tcp -e 1000 -i 315 -a 1 h -t 30.9962 -s 210 -d 205 -p tcp -e 1000 -i 309 -a 5 h -t 30.9962 -s 211 -d 210 -p tcp -e 1000 -i 315 -a 1 r -t 30.9962 -s 211 -d 210 -p tcp -e 1000 -i 309 -a 5 r -t 30.9964 -s 211 -d 212 -p ack -e 40 -i 314 -a 5 r -t 30.9964 -s 212 -d 211 -p tcp -e 1000 -i 315 -a 1 + -t 30.997 -s 211 -d 210 -p tcp -e 1000 -i 316 -a 1 r -t 30.9972 -s 212 -d 211 -p tcp -e 1000 -i 316 -a 1 + -t 30.998 -s 205 -d 210 -p ack -e 40 -i 317 -a 5 - -t 30.998 -s 205 -d 210 -p ack -e 40 -i 317 -a 5 h -t 30.998 -s 205 -d 210 -p ack -e 40 -i 317 -a 5 r -t 30.9982 -s 210 -d 205 -p tcp -e 1000 -i 309 -a 5 r -t 30.999 -s 205 -d 210 -p ack -e 40 -i 317 -a 5 + -t 30.9991 -s 210 -d 211 -p ack -e 40 -i 317 -a 5 - -t 30.9991 -s 210 -d 211 -p ack -e 40 -i 317 -a 5 h -t 30.9991 -s 210 -d 211 -p ack -e 40 -i 317 -a 5 + -t 30.9998 -s 110 -d 101 -p tcp -e 1000 -i 318 -a 1 - -t 30.9998 -s 110 -d 101 -p tcp -e 1000 -i 318 -a 1 h -t 30.9998 -s 110 -d 101 -p tcp -e 1000 -i 318 -a 1 r -t 30.9998 -s 111 -d 110 -p tcp -e 1000 -i 318 -a 1 r -t 31.0018 -s 110 -d 101 -p tcp -e 1000 -i 318 -a 1 + -t 31.004 -s 201 -d 210 -p ack -e 40 -i 318 -a 1 - -t 31.004 -s 201 -d 210 -p ack -e 40 -i 318 -a 1 h -t 31.004 -s 201 -d 210 -p ack -e 40 -i 318 -a 1 + -t 31.0043 -s 311 -d 312 -p ack -e 40 -i 282 -a 7 - -t 31.0043 -s 311 -d 312 -p ack -e 40 -i 282 -a 7 h -t 31.0043 -s 311 -d 312 -p ack -e 40 -i 282 -a 7 r -t 31.0043 -s 310 -d 311 -p ack -e 40 -i 282 -a 7 + -t 31.005 -s 210 -d 211 -p ack -e 40 -i 318 -a 1 - -t 31.005 -s 210 -d 211 -p ack -e 40 -i 318 -a 1 h -t 31.005 -s 210 -d 211 -p ack -e 40 -i 318 -a 1 r -t 31.005 -s 201 -d 210 -p ack -e 40 -i 318 -a 1 r -t 31.0053 -s 311 -d 312 -p ack -e 40 -i 282 -a 7 + -t 31.0062 -s 210 -d 205 -p tcp -e 1000 -i 310 -a 5 - -t 31.0062 -s 210 -d 205 -p tcp -e 1000 -i 310 -a 5 - -t 31.0062 -s 211 -d 210 -p tcp -e 1000 -i 316 -a 1 h -t 31.0062 -s 210 -d 205 -p tcp -e 1000 -i 310 -a 5 h -t 31.0062 -s 211 -d 210 -p tcp -e 1000 -i 316 -a 1 r -t 31.0062 -s 211 -d 210 -p tcp -e 1000 -i 310 -a 5 r -t 31.0082 -s 210 -d 205 -p tcp -e 1000 -i 310 -a 5 + -t 31.0098 -s 110 -d 101 -p tcp -e 1000 -i 319 -a 1 + -t 31.0098 -s 310 -d 305 -p tcp -e 1000 -i 280 -a 5 - -t 31.0098 -s 110 -d 101 -p tcp -e 1000 -i 319 -a 1 - -t 31.0098 -s 310 -d 305 -p tcp -e 1000 -i 280 -a 5 h -t 31.0098 -s 110 -d 101 -p tcp -e 1000 -i 319 -a 1 h -t 31.0098 -s 310 -d 305 -p tcp -e 1000 -i 280 -a 5 r -t 31.0098 -s 111 -d 110 -p tcp -e 1000 -i 319 -a 1 r -t 31.0098 -s 311 -d 310 -p tcp -e 1000 -i 280 -a 5 + -t 31.0116 -s 101 -d 110 -p ack -e 40 -i 323 -a 1 - -t 31.0116 -s 101 -d 110 -p ack -e 40 -i 323 -a 1 h -t 31.0116 -s 101 -d 110 -p ack -e 40 -i 323 -a 1 r -t 31.0118 -s 110 -d 101 -p tcp -e 1000 -i 319 -a 1 r -t 31.0118 -s 310 -d 305 -p tcp -e 1000 -i 280 -a 5 + -t 31.0126 -s 110 -d 111 -p ack -e 40 -i 323 -a 1 - -t 31.0126 -s 110 -d 111 -p ack -e 40 -i 323 -a 1 h -t 31.0126 -s 110 -d 111 -p ack -e 40 -i 323 -a 1 r -t 31.0126 -s 101 -d 110 -p ack -e 40 -i 323 -a 1 + -t 31.0129 -s 112 -d 111 -p tcp -e 1000 -i 324 -a 9 + -t 31.0129 -s 307 -d 310 -p ack -e 40 -i 288 -a 7 - -t 31.0129 -s 112 -d 111 -p tcp -e 1000 -i 324 -a 9 - -t 31.0129 -s 307 -d 310 -p ack -e 40 -i 288 -a 7 h -t 31.0129 -s 112 -d 111 -p tcp -e 1000 -i 324 -a 9 h -t 31.0129 -s 307 -d 310 -p ack -e 40 -i 288 -a 7 + -t 31.0139 -s 310 -d 311 -p ack -e 40 -i 288 -a 7 - -t 31.0139 -s 310 -d 311 -p ack -e 40 -i 288 -a 7 h -t 31.0139 -s 310 -d 311 -p ack -e 40 -i 288 -a 7 r -t 31.0139 -s 307 -d 310 -p ack -e 40 -i 288 -a 7 + -t 31.0147 -s 111 -d 110 -p tcp -e 1000 -i 324 -a 9 - -t 31.0147 -s 111 -d 110 -p tcp -e 1000 -i 324 -a 9 h -t 31.0147 -s 111 -d 110 -p tcp -e 1000 -i 324 -a 9 r -t 31.0149 -s 112 -d 111 -p tcp -e 1000 -i 324 -a 9 + -t 31.0162 -s 210 -d 201 -p tcp -e 1000 -i 312 -a 1 - -t 31.0162 -s 210 -d 201 -p tcp -e 1000 -i 312 -a 1 h -t 31.0162 -s 210 -d 201 -p tcp -e 1000 -i 312 -a 1 r -t 31.0162 -s 211 -d 210 -p tcp -e 1000 -i 312 -a 1 r -t 31.0182 -s 210 -d 201 -p tcp -e 1000 -i 312 -a 1 + -t 31.0198 -s 110 -d 101 -p tcp -e 1000 -i 320 -a 1 + -t 31.0198 -s 310 -d 305 -p tcp -e 1000 -i 281 -a 5 - -t 31.0198 -s 110 -d 101 -p tcp -e 1000 -i 320 -a 1 - -t 31.0198 -s 310 -d 305 -p tcp -e 1000 -i 281 -a 5 h -t 31.0198 -s 110 -d 101 -p tcp -e 1000 -i 320 -a 1 h -t 31.0198 -s 310 -d 305 -p tcp -e 1000 -i 281 -a 5 r -t 31.0198 -s 111 -d 110 -p tcp -e 1000 -i 320 -a 1 r -t 31.0198 -s 311 -d 310 -p tcp -e 1000 -i 281 -a 5 + -t 31.0216 -s 305 -d 310 -p ack -e 40 -i 289 -a 5 - -t 31.0216 -s 305 -d 310 -p ack -e 40 -i 289 -a 5 h -t 31.0216 -s 305 -d 310 -p ack -e 40 -i 289 -a 5 r -t 31.0218 -s 110 -d 101 -p tcp -e 1000 -i 320 -a 1 r -t 31.0218 -s 310 -d 305 -p tcp -e 1000 -i 281 -a 5 + -t 31.0226 -s 310 -d 311 -p ack -e 40 -i 289 -a 5 - -t 31.0226 -s 310 -d 311 -p ack -e 40 -i 289 -a 5 h -t 31.0226 -s 310 -d 311 -p ack -e 40 -i 289 -a 5 r -t 31.0226 -s 305 -d 310 -p ack -e 40 -i 289 -a 5 + -t 31.0343 -s 311 -d 312 -p ack -e 40 -i 283 -a 0 - -t 31.0343 -s 311 -d 312 -p ack -e 40 -i 283 -a 0 h -t 31.0343 -s 311 -d 312 -p ack -e 40 -i 283 -a 0 r -t 31.0343 -s 310 -d 311 -p ack -e 40 -i 283 -a 0 + -t 31.0353 -s 312 -d 311 -p tcp -e 1000 -i 290 -a 0 + -t 31.0353 -s 312 -d 311 -p tcp -e 1000 -i 291 -a 0 + -t 31.0353 -s 312 -d 311 -p tcp -e 1000 -i 292 -a 0 - -t 31.0353 -s 312 -d 311 -p tcp -e 1000 -i 290 -a 0 h -t 31.0353 -s 312 -d 311 -p tcp -e 1000 -i 290 -a 0 r -t 31.0353 -s 311 -d 312 -p ack -e 40 -i 283 -a 0 - -t 31.0361 -s 312 -d 311 -p tcp -e 1000 -i 291 -a 0 h -t 31.0361 -s 312 -d 311 -p tcp -e 1000 -i 291 -a 0 + -t 31.0369 -s 111 -d 112 -p ack -e 40 -i 321 -a 1 - -t 31.0369 -s 111 -d 112 -p ack -e 40 -i 321 -a 1 - -t 31.0369 -s 312 -d 311 -p tcp -e 1000 -i 292 -a 0 h -t 31.0369 -s 111 -d 112 -p ack -e 40 -i 321 -a 1 h -t 31.0369 -s 312 -d 311 -p tcp -e 1000 -i 292 -a 0 r -t 31.0369 -s 110 -d 111 -p ack -e 40 -i 321 -a 1 + -t 31.0371 -s 311 -d 310 -p tcp -e 1000 -i 290 -a 0 - -t 31.0371 -s 311 -d 310 -p tcp -e 1000 -i 290 -a 0 h -t 31.0371 -s 311 -d 310 -p tcp -e 1000 -i 290 -a 0 r -t 31.0373 -s 312 -d 311 -p tcp -e 1000 -i 290 -a 0 + -t 31.0379 -s 311 -d 310 -p tcp -e 1000 -i 291 -a 0 r -t 31.0379 -s 111 -d 112 -p ack -e 40 -i 321 -a 1 r -t 31.0381 -s 312 -d 311 -p tcp -e 1000 -i 291 -a 0 + -t 31.0387 -s 311 -d 310 -p tcp -e 1000 -i 292 -a 0 r -t 31.0389 -s 312 -d 311 -p tcp -e 1000 -i 292 -a 0 + -t 31.0469 -s 111 -d 112 -p ack -e 40 -i 322 -a 8 - -t 31.0469 -s 111 -d 112 -p ack -e 40 -i 322 -a 8 h -t 31.0469 -s 111 -d 112 -p ack -e 40 -i 322 -a 8 r -t 31.0469 -s 110 -d 111 -p ack -e 40 -i 322 -a 8 - -t 31.0471 -s 311 -d 310 -p tcp -e 1000 -i 291 -a 0 h -t 31.0471 -s 311 -d 310 -p tcp -e 1000 -i 291 -a 0 r -t 31.0479 -s 111 -d 112 -p ack -e 40 -i 322 -a 8 + -t 31.048 -s 112 -d 111 -p tcp -e 1000 -i 325 -a 8 + -t 31.048 -s 112 -d 111 -p tcp -e 1000 -i 326 -a 8 - -t 31.048 -s 112 -d 111 -p tcp -e 1000 -i 325 -a 8 h -t 31.048 -s 112 -d 111 -p tcp -e 1000 -i 325 -a 8 - -t 31.0488 -s 112 -d 111 -p tcp -e 1000 -i 326 -a 8 h -t 31.0488 -s 112 -d 111 -p tcp -e 1000 -i 326 -a 8 + -t 31.0498 -s 111 -d 110 -p tcp -e 1000 -i 325 -a 8 - -t 31.0498 -s 111 -d 110 -p tcp -e 1000 -i 325 -a 8 h -t 31.0498 -s 111 -d 110 -p tcp -e 1000 -i 325 -a 8 r -t 31.05 -s 112 -d 111 -p tcp -e 1000 -i 325 -a 8 + -t 31.0506 -s 111 -d 110 -p tcp -e 1000 -i 326 -a 8 r -t 31.0508 -s 112 -d 111 -p tcp -e 1000 -i 326 -a 8 + -t 31.0543 -s 311 -d 312 -p ack -e 40 -i 284 -a 4 - -t 31.0543 -s 311 -d 312 -p ack -e 40 -i 284 -a 4 h -t 31.0543 -s 311 -d 312 -p ack -e 40 -i 284 -a 4 r -t 31.0543 -s 310 -d 311 -p ack -e 40 -i 284 -a 4 + -t 31.0553 -s 312 -d 311 -p tcp -e 1000 -i 293 -a 4 + -t 31.0553 -s 312 -d 311 -p tcp -e 1000 -i 294 -a 4 + -t 31.0553 -s 312 -d 311 -p tcp -e 1000 -i 295 -a 4 - -t 31.0553 -s 312 -d 311 -p tcp -e 1000 -i 293 -a 4 h -t 31.0553 -s 312 -d 311 -p tcp -e 1000 -i 293 -a 4 r -t 31.0553 -s 311 -d 312 -p ack -e 40 -i 284 -a 4 - -t 31.0561 -s 312 -d 311 -p tcp -e 1000 -i 294 -a 4 h -t 31.0561 -s 312 -d 311 -p tcp -e 1000 -i 294 -a 4 - -t 31.0569 -s 312 -d 311 -p tcp -e 1000 -i 295 -a 4 h -t 31.0569 -s 312 -d 311 -p tcp -e 1000 -i 295 -a 4 + -t 31.0571 -s 311 -d 310 -p tcp -e 1000 -i 293 -a 4 - -t 31.0571 -s 311 -d 310 -p tcp -e 1000 -i 292 -a 0 h -t 31.0571 -s 311 -d 310 -p tcp -e 1000 -i 292 -a 0 r -t 31.0573 -s 312 -d 311 -p tcp -e 1000 -i 293 -a 4 + -t 31.0579 -s 311 -d 310 -p tcp -e 1000 -i 294 -a 4 r -t 31.0581 -s 312 -d 311 -p tcp -e 1000 -i 294 -a 4 + -t 31.0587 -s 311 -d 310 -p tcp -e 1000 -i 295 -a 4 r -t 31.0589 -s 312 -d 311 -p tcp -e 1000 -i 295 -a 4 - -t 31.0598 -s 111 -d 110 -p tcp -e 1000 -i 326 -a 8 h -t 31.0598 -s 111 -d 110 -p tcp -e 1000 -i 326 -a 8 - -t 31.0671 -s 311 -d 310 -p tcp -e 1000 -i 293 -a 4 h -t 31.0671 -s 311 -d 310 -p tcp -e 1000 -i 293 -a 4 - -t 31.0771 -s 311 -d 310 -p tcp -e 1000 -i 294 -a 4 h -t 31.0771 -s 311 -d 310 -p tcp -e 1000 -i 294 -a 4 + -t 31.0847 -s 311 -d 312 -p ack -e 40 -i 287 -a 9 - -t 31.0847 -s 311 -d 312 -p ack -e 40 -i 287 -a 9 h -t 31.0847 -s 311 -d 312 -p ack -e 40 -i 287 -a 9 r -t 31.0847 -s 310 -d 311 -p ack -e 40 -i 287 -a 9 r -t 31.0857 -s 311 -d 312 -p ack -e 40 -i 287 -a 9 - -t 31.0871 -s 311 -d 310 -p tcp -e 1000 -i 295 -a 4 h -t 31.0871 -s 311 -d 310 -p tcp -e 1000 -i 295 -a 4 + -t 31.0898 -s 310 -d 301 -p tcp -e 1000 -i 285 -a 1 - -t 31.0898 -s 310 -d 301 -p tcp -e 1000 -i 285 -a 1 h -t 31.0898 -s 310 -d 301 -p tcp -e 1000 -i 285 -a 1 r -t 31.0898 -s 311 -d 310 -p tcp -e 1000 -i 285 -a 1 r -t 31.0918 -s 310 -d 301 -p tcp -e 1000 -i 285 -a 1 + -t 31.0933 -s 309 -d 310 -p ack -e 40 -i 296 -a 9 - -t 31.0933 -s 309 -d 310 -p ack -e 40 -i 296 -a 9 h -t 31.0933 -s 309 -d 310 -p ack -e 40 -i 296 -a 9 + -t 31.0943 -s 310 -d 311 -p ack -e 40 -i 296 -a 9 - -t 31.0943 -s 310 -d 311 -p ack -e 40 -i 296 -a 9 h -t 31.0943 -s 310 -d 311 -p ack -e 40 -i 296 -a 9 r -t 31.0943 -s 309 -d 310 -p ack -e 40 -i 296 -a 9 + -t 31.0995 -s 211 -d 212 -p ack -e 40 -i 317 -a 5 - -t 31.0995 -s 211 -d 212 -p ack -e 40 -i 317 -a 5 h -t 31.0995 -s 211 -d 212 -p ack -e 40 -i 317 -a 5 r -t 31.0995 -s 210 -d 211 -p ack -e 40 -i 317 -a 5 + -t 31.0998 -s 310 -d 301 -p tcp -e 1000 -i 286 -a 1 - -t 31.0998 -s 310 -d 301 -p tcp -e 1000 -i 286 -a 1 h -t 31.0998 -s 310 -d 301 -p tcp -e 1000 -i 286 -a 1 r -t 31.0998 -s 311 -d 310 -p tcp -e 1000 -i 286 -a 1 r -t 31.1005 -s 211 -d 212 -p ack -e 40 -i 317 -a 5 + -t 31.1016 -s 301 -d 310 -p ack -e 40 -i 297 -a 1 - -t 31.1016 -s 301 -d 310 -p ack -e 40 -i 297 -a 1 h -t 31.1016 -s 301 -d 310 -p ack -e 40 -i 297 -a 1 r -t 31.1018 -s 310 -d 301 -p tcp -e 1000 -i 286 -a 1 + -t 31.1026 -s 310 -d 311 -p ack -e 40 -i 297 -a 1 - -t 31.1026 -s 310 -d 311 -p ack -e 40 -i 297 -a 1 h -t 31.1026 -s 310 -d 311 -p ack -e 40 -i 297 -a 1 r -t 31.1026 -s 301 -d 310 -p ack -e 40 -i 297 -a 1 + -t 31.1054 -s 211 -d 212 -p ack -e 40 -i 318 -a 1 - -t 31.1054 -s 211 -d 212 -p ack -e 40 -i 318 -a 1 h -t 31.1054 -s 211 -d 212 -p ack -e 40 -i 318 -a 1 r -t 31.1054 -s 210 -d 211 -p ack -e 40 -i 318 -a 1 + -t 31.1062 -s 210 -d 201 -p tcp -e 1000 -i 315 -a 1 - -t 31.1062 -s 210 -d 201 -p tcp -e 1000 -i 315 -a 1 h -t 31.1062 -s 210 -d 201 -p tcp -e 1000 -i 315 -a 1 r -t 31.1062 -s 211 -d 210 -p tcp -e 1000 -i 315 -a 1 + -t 31.1064 -s 212 -d 211 -p tcp -e 1000 -i 319 -a 1 + -t 31.1064 -s 212 -d 211 -p tcp -e 1000 -i 320 -a 1 - -t 31.1064 -s 212 -d 211 -p tcp -e 1000 -i 319 -a 1 h -t 31.1064 -s 212 -d 211 -p tcp -e 1000 -i 319 -a 1 r -t 31.1064 -s 211 -d 212 -p ack -e 40 -i 318 -a 1 - -t 31.1072 -s 212 -d 211 -p tcp -e 1000 -i 320 -a 1 h -t 31.1072 -s 212 -d 211 -p tcp -e 1000 -i 320 -a 1 + -t 31.108 -s 201 -d 210 -p ack -e 40 -i 322 -a 1 + -t 31.108 -s 205 -d 210 -p ack -e 40 -i 321 -a 5 - -t 31.108 -s 201 -d 210 -p ack -e 40 -i 322 -a 1 - -t 31.108 -s 205 -d 210 -p ack -e 40 -i 321 -a 5 h -t 31.108 -s 201 -d 210 -p ack -e 40 -i 322 -a 1 h -t 31.108 -s 205 -d 210 -p ack -e 40 -i 321 -a 5 + -t 31.1082 -s 211 -d 210 -p tcp -e 1000 -i 319 -a 1 - -t 31.1082 -s 211 -d 210 -p tcp -e 1000 -i 319 -a 1 h -t 31.1082 -s 211 -d 210 -p tcp -e 1000 -i 319 -a 1 r -t 31.1082 -s 210 -d 201 -p tcp -e 1000 -i 315 -a 1 r -t 31.1084 -s 212 -d 211 -p tcp -e 1000 -i 319 -a 1 + -t 31.109 -s 211 -d 210 -p tcp -e 1000 -i 320 -a 1 r -t 31.109 -s 201 -d 210 -p ack -e 40 -i 322 -a 1 r -t 31.109 -s 205 -d 210 -p ack -e 40 -i 321 -a 5 + -t 31.1091 -s 210 -d 211 -p ack -e 40 -i 321 -a 5 + -t 31.1091 -s 210 -d 211 -p ack -e 40 -i 322 -a 1 - -t 31.1091 -s 210 -d 211 -p ack -e 40 -i 321 -a 5 h -t 31.1091 -s 210 -d 211 -p ack -e 40 -i 321 -a 5 r -t 31.1092 -s 212 -d 211 -p tcp -e 1000 -i 320 -a 1 - -t 31.1095 -s 210 -d 211 -p ack -e 40 -i 322 -a 1 h -t 31.1095 -s 210 -d 211 -p ack -e 40 -i 322 -a 1 + -t 31.113 -s 111 -d 112 -p ack -e 40 -i 323 -a 1 - -t 31.113 -s 111 -d 112 -p ack -e 40 -i 323 -a 1 h -t 31.113 -s 111 -d 112 -p ack -e 40 -i 323 -a 1 r -t 31.113 -s 110 -d 111 -p ack -e 40 -i 323 -a 1 r -t 31.114 -s 111 -d 112 -p ack -e 40 -i 323 -a 1 + -t 31.1143 -s 311 -d 312 -p ack -e 40 -i 288 -a 7 - -t 31.1143 -s 311 -d 312 -p ack -e 40 -i 288 -a 7 h -t 31.1143 -s 311 -d 312 -p ack -e 40 -i 288 -a 7 r -t 31.1143 -s 310 -d 311 -p ack -e 40 -i 288 -a 7 r -t 31.1153 -s 311 -d 312 -p ack -e 40 -i 288 -a 7 + -t 31.1162 -s 210 -d 201 -p tcp -e 1000 -i 316 -a 1 - -t 31.1162 -s 210 -d 201 -p tcp -e 1000 -i 316 -a 1 h -t 31.1162 -s 210 -d 201 -p tcp -e 1000 -i 316 -a 1 r -t 31.1162 -s 211 -d 210 -p tcp -e 1000 -i 316 -a 1 - -t 31.1182 -s 211 -d 210 -p tcp -e 1000 -i 320 -a 1 h -t 31.1182 -s 211 -d 210 -p tcp -e 1000 -i 320 -a 1 r -t 31.1182 -s 210 -d 201 -p tcp -e 1000 -i 316 -a 1 + -t 31.1216 -s 101 -d 110 -p ack -e 40 -i 327 -a 1 - -t 31.1216 -s 101 -d 110 -p ack -e 40 -i 327 -a 1 h -t 31.1216 -s 101 -d 110 -p ack -e 40 -i 327 -a 1 + -t 31.1226 -s 110 -d 111 -p ack -e 40 -i 327 -a 1 - -t 31.1226 -s 110 -d 111 -p ack -e 40 -i 327 -a 1 h -t 31.1226 -s 110 -d 111 -p ack -e 40 -i 327 -a 1 r -t 31.1226 -s 101 -d 110 -p ack -e 40 -i 327 -a 1 + -t 31.123 -s 311 -d 312 -p ack -e 40 -i 289 -a 5 - -t 31.123 -s 311 -d 312 -p ack -e 40 -i 289 -a 5 h -t 31.123 -s 311 -d 312 -p ack -e 40 -i 289 -a 5 r -t 31.123 -s 310 -d 311 -p ack -e 40 -i 289 -a 5 + -t 31.124 -s 312 -d 311 -p tcp -e 1000 -i 298 -a 5 + -t 31.124 -s 312 -d 311 -p tcp -e 1000 -i 299 -a 5 - -t 31.124 -s 312 -d 311 -p tcp -e 1000 -i 298 -a 5 h -t 31.124 -s 312 -d 311 -p tcp -e 1000 -i 298 -a 5 r -t 31.124 -s 311 -d 312 -p ack -e 40 -i 289 -a 5 + -t 31.1247 -s 110 -d 109 -p tcp -e 1000 -i 324 -a 9 - -t 31.1247 -s 110 -d 109 -p tcp -e 1000 -i 324 -a 9 h -t 31.1247 -s 110 -d 109 -p tcp -e 1000 -i 324 -a 9 r -t 31.1247 -s 111 -d 110 -p tcp -e 1000 -i 324 -a 9 - -t 31.1248 -s 312 -d 311 -p tcp -e 1000 -i 299 -a 5 h -t 31.1248 -s 312 -d 311 -p tcp -e 1000 -i 299 -a 5 + -t 31.1258 -s 311 -d 310 -p tcp -e 1000 -i 298 -a 5 - -t 31.1258 -s 311 -d 310 -p tcp -e 1000 -i 298 -a 5 h -t 31.1258 -s 311 -d 310 -p tcp -e 1000 -i 298 -a 5 r -t 31.126 -s 312 -d 311 -p tcp -e 1000 -i 298 -a 5 + -t 31.1266 -s 311 -d 310 -p tcp -e 1000 -i 299 -a 5 r -t 31.1267 -s 110 -d 109 -p tcp -e 1000 -i 324 -a 9 r -t 31.1268 -s 312 -d 311 -p tcp -e 1000 -i 299 -a 5 - -t 31.1358 -s 311 -d 310 -p tcp -e 1000 -i 299 -a 5 h -t 31.1358 -s 311 -d 310 -p tcp -e 1000 -i 299 -a 5 + -t 31.1471 -s 310 -d 300 -p tcp -e 1000 -i 290 -a 0 - -t 31.1471 -s 310 -d 300 -p tcp -e 1000 -i 290 -a 0 h -t 31.1471 -s 310 -d 300 -p tcp -e 1000 -i 290 -a 0 r -t 31.1471 -s 311 -d 310 -p tcp -e 1000 -i 290 -a 0 r -t 31.1491 -s 310 -d 300 -p tcp -e 1000 -i 290 -a 0 + -t 31.1571 -s 310 -d 300 -p tcp -e 1000 -i 291 -a 0 - -t 31.1571 -s 310 -d 300 -p tcp -e 1000 -i 291 -a 0 h -t 31.1571 -s 310 -d 300 -p tcp -e 1000 -i 291 -a 0 r -t 31.1571 -s 311 -d 310 -p tcp -e 1000 -i 291 -a 0 + -t 31.1589 -s 300 -d 310 -p ack -e 40 -i 300 -a 0 - -t 31.1589 -s 300 -d 310 -p ack -e 40 -i 300 -a 0 h -t 31.1589 -s 300 -d 310 -p ack -e 40 -i 300 -a 0 r -t 31.1591 -s 310 -d 300 -p tcp -e 1000 -i 291 -a 0 + -t 31.1598 -s 110 -d 108 -p tcp -e 1000 -i 325 -a 8 - -t 31.1598 -s 110 -d 108 -p tcp -e 1000 -i 325 -a 8 h -t 31.1598 -s 110 -d 108 -p tcp -e 1000 -i 325 -a 8 r -t 31.1598 -s 111 -d 110 -p tcp -e 1000 -i 325 -a 8 r -t 31.1599 -s 300 -d 310 -p ack -e 40 -i 300 -a 0 + -t 31.16 -s 310 -d 311 -p ack -e 40 -i 300 -a 0 - -t 31.16 -s 310 -d 311 -p ack -e 40 -i 300 -a 0 h -t 31.16 -s 310 -d 311 -p ack -e 40 -i 300 -a 0 r -t 31.1618 -s 110 -d 108 -p tcp -e 1000 -i 325 -a 8 + -t 31.1649 -s 112 -d 111 -p tcp -e 1000 -i 328 -a 4 - -t 31.1649 -s 112 -d 111 -p tcp -e 1000 -i 328 -a 4 h -t 31.1649 -s 112 -d 111 -p tcp -e 1000 -i 328 -a 4 + -t 31.1667 -s 111 -d 110 -p tcp -e 1000 -i 328 -a 4 - -t 31.1667 -s 111 -d 110 -p tcp -e 1000 -i 328 -a 4 h -t 31.1667 -s 111 -d 110 -p tcp -e 1000 -i 328 -a 4 r -t 31.1669 -s 112 -d 111 -p tcp -e 1000 -i 328 -a 4 + -t 31.1671 -s 310 -d 300 -p tcp -e 1000 -i 292 -a 0 - -t 31.1671 -s 310 -d 300 -p tcp -e 1000 -i 292 -a 0 h -t 31.1671 -s 310 -d 300 -p tcp -e 1000 -i 292 -a 0 r -t 31.1671 -s 311 -d 310 -p tcp -e 1000 -i 292 -a 0 r -t 31.1691 -s 310 -d 300 -p tcp -e 1000 -i 292 -a 0 + -t 31.1698 -s 110 -d 108 -p tcp -e 1000 -i 326 -a 8 - -t 31.1698 -s 110 -d 108 -p tcp -e 1000 -i 326 -a 8 h -t 31.1698 -s 110 -d 108 -p tcp -e 1000 -i 326 -a 8 r -t 31.1698 -s 111 -d 110 -p tcp -e 1000 -i 326 -a 8 + -t 31.1716 -s 108 -d 110 -p ack -e 40 -i 329 -a 8 - -t 31.1716 -s 108 -d 110 -p ack -e 40 -i 329 -a 8 h -t 31.1716 -s 108 -d 110 -p ack -e 40 -i 329 -a 8 r -t 31.1718 -s 110 -d 108 -p tcp -e 1000 -i 326 -a 8 + -t 31.1726 -s 110 -d 111 -p ack -e 40 -i 329 -a 8 - -t 31.1726 -s 110 -d 111 -p ack -e 40 -i 329 -a 8 h -t 31.1726 -s 110 -d 111 -p ack -e 40 -i 329 -a 8 r -t 31.1726 -s 108 -d 110 -p ack -e 40 -i 329 -a 8 + -t 31.1771 -s 310 -d 304 -p tcp -e 1000 -i 293 -a 4 - -t 31.1771 -s 310 -d 304 -p tcp -e 1000 -i 293 -a 4 h -t 31.1771 -s 310 -d 304 -p tcp -e 1000 -i 293 -a 4 r -t 31.1771 -s 311 -d 310 -p tcp -e 1000 -i 293 -a 4 r -t 31.1791 -s 310 -d 304 -p tcp -e 1000 -i 293 -a 4 + -t 31.1871 -s 310 -d 304 -p tcp -e 1000 -i 294 -a 4 - -t 31.1871 -s 310 -d 304 -p tcp -e 1000 -i 294 -a 4 h -t 31.1871 -s 310 -d 304 -p tcp -e 1000 -i 294 -a 4 r -t 31.1871 -s 311 -d 310 -p tcp -e 1000 -i 294 -a 4 + -t 31.1889 -s 304 -d 310 -p ack -e 40 -i 301 -a 4 - -t 31.1889 -s 304 -d 310 -p ack -e 40 -i 301 -a 4 h -t 31.1889 -s 304 -d 310 -p ack -e 40 -i 301 -a 4 r -t 31.1891 -s 310 -d 304 -p tcp -e 1000 -i 294 -a 4 r -t 31.1899 -s 304 -d 310 -p ack -e 40 -i 301 -a 4 + -t 31.19 -s 310 -d 311 -p ack -e 40 -i 301 -a 4 - -t 31.19 -s 310 -d 311 -p ack -e 40 -i 301 -a 4 h -t 31.19 -s 310 -d 311 -p ack -e 40 -i 301 -a 4 + -t 31.1947 -s 311 -d 312 -p ack -e 40 -i 296 -a 9 - -t 31.1947 -s 311 -d 312 -p ack -e 40 -i 296 -a 9 h -t 31.1947 -s 311 -d 312 -p ack -e 40 -i 296 -a 9 r -t 31.1947 -s 310 -d 311 -p ack -e 40 -i 296 -a 9 r -t 31.1957 -s 311 -d 312 -p ack -e 40 -i 296 -a 9 + -t 31.1971 -s 310 -d 304 -p tcp -e 1000 -i 295 -a 4 - -t 31.1971 -s 310 -d 304 -p tcp -e 1000 -i 295 -a 4 h -t 31.1971 -s 310 -d 304 -p tcp -e 1000 -i 295 -a 4 r -t 31.1971 -s 311 -d 310 -p tcp -e 1000 -i 295 -a 4 r -t 31.1991 -s 310 -d 304 -p tcp -e 1000 -i 295 -a 4 + -t 31.203 -s 311 -d 312 -p ack -e 40 -i 297 -a 1 - -t 31.203 -s 311 -d 312 -p ack -e 40 -i 297 -a 1 h -t 31.203 -s 311 -d 312 -p ack -e 40 -i 297 -a 1 r -t 31.203 -s 310 -d 311 -p ack -e 40 -i 297 -a 1 + -t 31.204 -s 312 -d 311 -p tcp -e 1000 -i 302 -a 1 + -t 31.204 -s 312 -d 311 -p tcp -e 1000 -i 303 -a 1 - -t 31.204 -s 312 -d 311 -p tcp -e 1000 -i 302 -a 1 h -t 31.204 -s 312 -d 311 -p tcp -e 1000 -i 302 -a 1 r -t 31.204 -s 311 -d 312 -p ack -e 40 -i 297 -a 1 - -t 31.2048 -s 312 -d 311 -p tcp -e 1000 -i 303 -a 1 h -t 31.2048 -s 312 -d 311 -p tcp -e 1000 -i 303 -a 1 + -t 31.2058 -s 311 -d 310 -p tcp -e 1000 -i 302 -a 1 - -t 31.2058 -s 311 -d 310 -p tcp -e 1000 -i 302 -a 1 h -t 31.2058 -s 311 -d 310 -p tcp -e 1000 -i 302 -a 1 r -t 31.206 -s 312 -d 311 -p tcp -e 1000 -i 302 -a 1 + -t 31.2066 -s 311 -d 310 -p tcp -e 1000 -i 303 -a 1 r -t 31.2068 -s 312 -d 311 -p tcp -e 1000 -i 303 -a 1 + -t 31.2095 -s 211 -d 212 -p ack -e 40 -i 321 -a 5 - -t 31.2095 -s 211 -d 212 -p ack -e 40 -i 321 -a 5 h -t 31.2095 -s 211 -d 212 -p ack -e 40 -i 321 -a 5 r -t 31.2095 -s 210 -d 211 -p ack -e 40 -i 321 -a 5 + -t 31.2099 -s 211 -d 212 -p ack -e 40 -i 322 -a 1 - -t 31.2099 -s 211 -d 212 -p ack -e 40 -i 322 -a 1 h -t 31.2099 -s 211 -d 212 -p ack -e 40 -i 322 -a 1 r -t 31.2099 -s 210 -d 211 -p ack -e 40 -i 322 -a 1 r -t 31.2105 -s 211 -d 212 -p ack -e 40 -i 321 -a 5 + -t 31.2109 -s 212 -d 211 -p tcp -e 1000 -i 323 -a 1 + -t 31.2109 -s 212 -d 211 -p tcp -e 1000 -i 324 -a 1 + -t 31.2109 -s 212 -d 211 -p tcp -e 1000 -i 325 -a 1 - -t 31.2109 -s 212 -d 211 -p tcp -e 1000 -i 323 -a 1 h -t 31.2109 -s 212 -d 211 -p tcp -e 1000 -i 323 -a 1 r -t 31.2109 -s 211 -d 212 -p ack -e 40 -i 322 -a 1 - -t 31.2117 -s 212 -d 211 -p tcp -e 1000 -i 324 -a 1 h -t 31.2117 -s 212 -d 211 -p tcp -e 1000 -i 324 -a 1 - -t 31.2125 -s 212 -d 211 -p tcp -e 1000 -i 325 -a 1 h -t 31.2125 -s 212 -d 211 -p tcp -e 1000 -i 325 -a 1 + -t 31.2127 -s 211 -d 210 -p tcp -e 1000 -i 323 -a 1 - -t 31.2127 -s 211 -d 210 -p tcp -e 1000 -i 323 -a 1 h -t 31.2127 -s 211 -d 210 -p tcp -e 1000 -i 323 -a 1 r -t 31.2129 -s 212 -d 211 -p tcp -e 1000 -i 323 -a 1 + -t 31.2135 -s 211 -d 210 -p tcp -e 1000 -i 324 -a 1 r -t 31.2137 -s 212 -d 211 -p tcp -e 1000 -i 324 -a 1 + -t 31.2143 -s 211 -d 210 -p tcp -e 1000 -i 325 -a 1 r -t 31.2145 -s 212 -d 211 -p tcp -e 1000 -i 325 -a 1 - -t 31.2158 -s 311 -d 310 -p tcp -e 1000 -i 303 -a 1 h -t 31.2158 -s 311 -d 310 -p tcp -e 1000 -i 303 -a 1 + -t 31.218 -s 201 -d 210 -p ack -e 40 -i 326 -a 1 - -t 31.218 -s 201 -d 210 -p ack -e 40 -i 326 -a 1 h -t 31.218 -s 201 -d 210 -p ack -e 40 -i 326 -a 1 + -t 31.2182 -s 210 -d 201 -p tcp -e 1000 -i 319 -a 1 - -t 31.2182 -s 210 -d 201 -p tcp -e 1000 -i 319 -a 1 h -t 31.2182 -s 210 -d 201 -p tcp -e 1000 -i 319 -a 1 r -t 31.2182 -s 211 -d 210 -p tcp -e 1000 -i 319 -a 1 r -t 31.219 -s 201 -d 210 -p ack -e 40 -i 326 -a 1 + -t 31.2191 -s 210 -d 211 -p ack -e 40 -i 326 -a 1 - -t 31.2191 -s 210 -d 211 -p ack -e 40 -i 326 -a 1 h -t 31.2191 -s 210 -d 211 -p ack -e 40 -i 326 -a 1 r -t 31.2202 -s 210 -d 201 -p tcp -e 1000 -i 319 -a 1 - -t 31.2227 -s 211 -d 210 -p tcp -e 1000 -i 324 -a 1 h -t 31.2227 -s 211 -d 210 -p tcp -e 1000 -i 324 -a 1 + -t 31.223 -s 111 -d 112 -p ack -e 40 -i 327 -a 1 - -t 31.223 -s 111 -d 112 -p ack -e 40 -i 327 -a 1 h -t 31.223 -s 111 -d 112 -p ack -e 40 -i 327 -a 1 r -t 31.223 -s 110 -d 111 -p ack -e 40 -i 327 -a 1 r -t 31.224 -s 111 -d 112 -p ack -e 40 -i 327 -a 1 + -t 31.2265 -s 109 -d 110 -p ack -e 40 -i 330 -a 9 - -t 31.2265 -s 109 -d 110 -p ack -e 40 -i 330 -a 9 h -t 31.2265 -s 109 -d 110 -p ack -e 40 -i 330 -a 9 + -t 31.2275 -s 110 -d 111 -p ack -e 40 -i 330 -a 9 - -t 31.2275 -s 110 -d 111 -p ack -e 40 -i 330 -a 9 h -t 31.2275 -s 110 -d 111 -p ack -e 40 -i 330 -a 9 r -t 31.2275 -s 109 -d 110 -p ack -e 40 -i 330 -a 9 + -t 31.2282 -s 210 -d 201 -p tcp -e 1000 -i 320 -a 1 - -t 31.2282 -s 210 -d 201 -p tcp -e 1000 -i 320 -a 1 h -t 31.2282 -s 210 -d 201 -p tcp -e 1000 -i 320 -a 1 r -t 31.2282 -s 211 -d 210 -p tcp -e 1000 -i 320 -a 1 + -t 31.23 -s 201 -d 210 -p ack -e 40 -i 327 -a 1 - -t 31.23 -s 201 -d 210 -p ack -e 40 -i 327 -a 1 h -t 31.23 -s 201 -d 210 -p ack -e 40 -i 327 -a 1 r -t 31.2302 -s 210 -d 201 -p tcp -e 1000 -i 320 -a 1 r -t 31.231 -s 201 -d 210 -p ack -e 40 -i 327 -a 1 + -t 31.2311 -s 210 -d 211 -p ack -e 40 -i 327 -a 1 - -t 31.2311 -s 210 -d 211 -p ack -e 40 -i 327 -a 1 h -t 31.2311 -s 210 -d 211 -p ack -e 40 -i 327 -a 1 - -t 31.2327 -s 211 -d 210 -p tcp -e 1000 -i 325 -a 1 h -t 31.2327 -s 211 -d 210 -p tcp -e 1000 -i 325 -a 1 + -t 31.2358 -s 310 -d 305 -p tcp -e 1000 -i 298 -a 5 - -t 31.2358 -s 310 -d 305 -p tcp -e 1000 -i 298 -a 5 h -t 31.2358 -s 310 -d 305 -p tcp -e 1000 -i 298 -a 5 r -t 31.2358 -s 311 -d 310 -p tcp -e 1000 -i 298 -a 5 r -t 31.2378 -s 310 -d 305 -p tcp -e 1000 -i 298 -a 5 + -t 31.2458 -s 310 -d 305 -p tcp -e 1000 -i 299 -a 5 - -t 31.2458 -s 310 -d 305 -p tcp -e 1000 -i 299 -a 5 h -t 31.2458 -s 310 -d 305 -p tcp -e 1000 -i 299 -a 5 r -t 31.2458 -s 311 -d 310 -p tcp -e 1000 -i 299 -a 5 + -t 31.2476 -s 305 -d 310 -p ack -e 40 -i 304 -a 5 - -t 31.2476 -s 305 -d 310 -p ack -e 40 -i 304 -a 5 h -t 31.2476 -s 305 -d 310 -p ack -e 40 -i 304 -a 5 r -t 31.2478 -s 310 -d 305 -p tcp -e 1000 -i 299 -a 5 r -t 31.2486 -s 305 -d 310 -p ack -e 40 -i 304 -a 5 + -t 31.2487 -s 310 -d 311 -p ack -e 40 -i 304 -a 5 - -t 31.2487 -s 310 -d 311 -p ack -e 40 -i 304 -a 5 h -t 31.2487 -s 310 -d 311 -p ack -e 40 -i 304 -a 5 + -t 31.2604 -s 311 -d 312 -p ack -e 40 -i 300 -a 0 - -t 31.2604 -s 311 -d 312 -p ack -e 40 -i 300 -a 0 h -t 31.2604 -s 311 -d 312 -p ack -e 40 -i 300 -a 0 r -t 31.2604 -s 310 -d 311 -p ack -e 40 -i 300 -a 0 r -t 31.2614 -s 311 -d 312 -p ack -e 40 -i 300 -a 0 + -t 31.2689 -s 300 -d 310 -p ack -e 40 -i 305 -a 0 - -t 31.2689 -s 300 -d 310 -p ack -e 40 -i 305 -a 0 h -t 31.2689 -s 300 -d 310 -p ack -e 40 -i 305 -a 0 r -t 31.2699 -s 300 -d 310 -p ack -e 40 -i 305 -a 0 + -t 31.27 -s 310 -d 311 -p ack -e 40 -i 305 -a 0 - -t 31.27 -s 310 -d 311 -p ack -e 40 -i 305 -a 0 h -t 31.27 -s 310 -d 311 -p ack -e 40 -i 305 -a 0 + -t 31.273 -s 111 -d 112 -p ack -e 40 -i 329 -a 8 - -t 31.273 -s 111 -d 112 -p ack -e 40 -i 329 -a 8 h -t 31.273 -s 111 -d 112 -p ack -e 40 -i 329 -a 8 r -t 31.273 -s 110 -d 111 -p ack -e 40 -i 329 -a 8 r -t 31.274 -s 111 -d 112 -p ack -e 40 -i 329 -a 8 + -t 31.2767 -s 110 -d 104 -p tcp -e 1000 -i 328 -a 4 - -t 31.2767 -s 110 -d 104 -p tcp -e 1000 -i 328 -a 4 h -t 31.2767 -s 110 -d 104 -p tcp -e 1000 -i 328 -a 4 r -t 31.2767 -s 111 -d 110 -p tcp -e 1000 -i 328 -a 4 r -t 31.2787 -s 110 -d 104 -p tcp -e 1000 -i 328 -a 4 + -t 31.2904 -s 311 -d 312 -p ack -e 40 -i 301 -a 4 - -t 31.2904 -s 311 -d 312 -p ack -e 40 -i 301 -a 4 h -t 31.2904 -s 311 -d 312 -p ack -e 40 -i 301 -a 4 r -t 31.2904 -s 310 -d 311 -p ack -e 40 -i 301 -a 4 r -t 31.2914 -s 311 -d 312 -p ack -e 40 -i 301 -a 4 + -t 31.2989 -s 304 -d 310 -p ack -e 40 -i 306 -a 4 - -t 31.2989 -s 304 -d 310 -p ack -e 40 -i 306 -a 4 h -t 31.2989 -s 304 -d 310 -p ack -e 40 -i 306 -a 4 r -t 31.2999 -s 304 -d 310 -p ack -e 40 -i 306 -a 4 + -t 31.3 -s 310 -d 311 -p ack -e 40 -i 306 -a 4 - -t 31.3 -s 310 -d 311 -p ack -e 40 -i 306 -a 4 h -t 31.3 -s 310 -d 311 -p ack -e 40 -i 306 -a 4 + -t 31.3158 -s 310 -d 301 -p tcp -e 1000 -i 302 -a 1 - -t 31.3158 -s 310 -d 301 -p tcp -e 1000 -i 302 -a 1 h -t 31.3158 -s 310 -d 301 -p tcp -e 1000 -i 302 -a 1 r -t 31.3158 -s 311 -d 310 -p tcp -e 1000 -i 302 -a 1 r -t 31.3178 -s 310 -d 301 -p tcp -e 1000 -i 302 -a 1 + -t 31.3195 -s 211 -d 212 -p ack -e 40 -i 326 -a 1 - -t 31.3195 -s 211 -d 212 -p ack -e 40 -i 326 -a 1 h -t 31.3195 -s 211 -d 212 -p ack -e 40 -i 326 -a 1 r -t 31.3195 -s 210 -d 211 -p ack -e 40 -i 326 -a 1 r -t 31.3205 -s 211 -d 212 -p ack -e 40 -i 326 -a 1 + -t 31.3227 -s 210 -d 201 -p tcp -e 1000 -i 323 -a 1 - -t 31.3227 -s 210 -d 201 -p tcp -e 1000 -i 323 -a 1 h -t 31.3227 -s 210 -d 201 -p tcp -e 1000 -i 323 -a 1 r -t 31.3227 -s 211 -d 210 -p tcp -e 1000 -i 323 -a 1 r -t 31.3247 -s 210 -d 201 -p tcp -e 1000 -i 323 -a 1 + -t 31.3258 -s 310 -d 301 -p tcp -e 1000 -i 303 -a 1 - -t 31.3258 -s 310 -d 301 -p tcp -e 1000 -i 303 -a 1 h -t 31.3258 -s 310 -d 301 -p tcp -e 1000 -i 303 -a 1 r -t 31.3258 -s 311 -d 310 -p tcp -e 1000 -i 303 -a 1 + -t 31.3276 -s 301 -d 310 -p ack -e 40 -i 307 -a 1 - -t 31.3276 -s 301 -d 310 -p ack -e 40 -i 307 -a 1 h -t 31.3276 -s 301 -d 310 -p ack -e 40 -i 307 -a 1 r -t 31.3278 -s 310 -d 301 -p tcp -e 1000 -i 303 -a 1 + -t 31.3279 -s 111 -d 112 -p ack -e 40 -i 330 -a 9 - -t 31.3279 -s 111 -d 112 -p ack -e 40 -i 330 -a 9 h -t 31.3279 -s 111 -d 112 -p ack -e 40 -i 330 -a 9 r -t 31.3279 -s 110 -d 111 -p ack -e 40 -i 330 -a 9 r -t 31.3286 -s 301 -d 310 -p ack -e 40 -i 307 -a 1 + -t 31.3287 -s 310 -d 311 -p ack -e 40 -i 307 -a 1 - -t 31.3287 -s 310 -d 311 -p ack -e 40 -i 307 -a 1 h -t 31.3287 -s 310 -d 311 -p ack -e 40 -i 307 -a 1 + -t 31.3289 -s 112 -d 111 -p tcp -e 1000 -i 331 -a 9 + -t 31.3289 -s 112 -d 111 -p tcp -e 1000 -i 332 -a 9 - -t 31.3289 -s 112 -d 111 -p tcp -e 1000 -i 331 -a 9 h -t 31.3289 -s 112 -d 111 -p tcp -e 1000 -i 331 -a 9 r -t 31.3289 -s 111 -d 112 -p ack -e 40 -i 330 -a 9 - -t 31.3297 -s 112 -d 111 -p tcp -e 1000 -i 332 -a 9 h -t 31.3297 -s 112 -d 111 -p tcp -e 1000 -i 332 -a 9 + -t 31.3307 -s 111 -d 110 -p tcp -e 1000 -i 331 -a 9 - -t 31.3307 -s 111 -d 110 -p tcp -e 1000 -i 331 -a 9 h -t 31.3307 -s 111 -d 110 -p tcp -e 1000 -i 331 -a 9 r -t 31.3309 -s 112 -d 111 -p tcp -e 1000 -i 331 -a 9 + -t 31.3315 -s 111 -d 110 -p tcp -e 1000 -i 332 -a 9 + -t 31.3315 -s 211 -d 212 -p ack -e 40 -i 327 -a 1 - -t 31.3315 -s 211 -d 212 -p ack -e 40 -i 327 -a 1 h -t 31.3315 -s 211 -d 212 -p ack -e 40 -i 327 -a 1 r -t 31.3315 -s 210 -d 211 -p ack -e 40 -i 327 -a 1 r -t 31.3317 -s 112 -d 111 -p tcp -e 1000 -i 332 -a 9 r -t 31.3325 -s 211 -d 212 -p ack -e 40 -i 327 -a 1 + -t 31.3327 -s 210 -d 201 -p tcp -e 1000 -i 324 -a 1 - -t 31.3327 -s 210 -d 201 -p tcp -e 1000 -i 324 -a 1 h -t 31.3327 -s 210 -d 201 -p tcp -e 1000 -i 324 -a 1 r -t 31.3327 -s 211 -d 210 -p tcp -e 1000 -i 324 -a 1 + -t 31.3345 -s 201 -d 210 -p ack -e 40 -i 328 -a 1 - -t 31.3345 -s 201 -d 210 -p ack -e 40 -i 328 -a 1 h -t 31.3345 -s 201 -d 210 -p ack -e 40 -i 328 -a 1 r -t 31.3347 -s 210 -d 201 -p tcp -e 1000 -i 324 -a 1 + -t 31.3355 -s 210 -d 211 -p ack -e 40 -i 328 -a 1 - -t 31.3355 -s 210 -d 211 -p ack -e 40 -i 328 -a 1 h -t 31.3355 -s 210 -d 211 -p ack -e 40 -i 328 -a 1 r -t 31.3355 -s 201 -d 210 -p ack -e 40 -i 328 -a 1 - -t 31.3407 -s 111 -d 110 -p tcp -e 1000 -i 332 -a 9 h -t 31.3407 -s 111 -d 110 -p tcp -e 1000 -i 332 -a 9 + -t 31.3427 -s 210 -d 201 -p tcp -e 1000 -i 325 -a 1 - -t 31.3427 -s 210 -d 201 -p tcp -e 1000 -i 325 -a 1 h -t 31.3427 -s 210 -d 201 -p tcp -e 1000 -i 325 -a 1 r -t 31.3427 -s 211 -d 210 -p tcp -e 1000 -i 325 -a 1 r -t 31.3447 -s 210 -d 201 -p tcp -e 1000 -i 325 -a 1 + -t 31.3491 -s 311 -d 312 -p ack -e 40 -i 304 -a 5 - -t 31.3491 -s 311 -d 312 -p ack -e 40 -i 304 -a 5 h -t 31.3491 -s 311 -d 312 -p ack -e 40 -i 304 -a 5 r -t 31.3491 -s 310 -d 311 -p ack -e 40 -i 304 -a 5 + -t 31.3501 -s 312 -d 311 -p tcp -e 1000 -i 308 -a 5 + -t 31.3501 -s 312 -d 311 -p tcp -e 1000 -i 309 -a 5 + -t 31.3501 -s 312 -d 311 -p tcp -e 1000 -i 310 -a 5 - -t 31.3501 -s 312 -d 311 -p tcp -e 1000 -i 308 -a 5 h -t 31.3501 -s 312 -d 311 -p tcp -e 1000 -i 308 -a 5 r -t 31.3501 -s 311 -d 312 -p ack -e 40 -i 304 -a 5 - -t 31.3509 -s 312 -d 311 -p tcp -e 1000 -i 309 -a 5 h -t 31.3509 -s 312 -d 311 -p tcp -e 1000 -i 309 -a 5 - -t 31.3517 -s 312 -d 311 -p tcp -e 1000 -i 310 -a 5 h -t 31.3517 -s 312 -d 311 -p tcp -e 1000 -i 310 -a 5 + -t 31.3519 -s 311 -d 310 -p tcp -e 1000 -i 308 -a 5 - -t 31.3519 -s 311 -d 310 -p tcp -e 1000 -i 308 -a 5 h -t 31.3519 -s 311 -d 310 -p tcp -e 1000 -i 308 -a 5 r -t 31.3521 -s 312 -d 311 -p tcp -e 1000 -i 308 -a 5 + -t 31.3527 -s 311 -d 310 -p tcp -e 1000 -i 309 -a 5 r -t 31.3529 -s 312 -d 311 -p tcp -e 1000 -i 309 -a 5 + -t 31.3535 -s 311 -d 310 -p tcp -e 1000 -i 310 -a 5 r -t 31.3537 -s 312 -d 311 -p tcp -e 1000 -i 310 -a 5 - -t 31.3619 -s 311 -d 310 -p tcp -e 1000 -i 309 -a 5 h -t 31.3619 -s 311 -d 310 -p tcp -e 1000 -i 309 -a 5 + -t 31.3704 -s 311 -d 312 -p ack -e 40 -i 305 -a 0 - -t 31.3704 -s 311 -d 312 -p ack -e 40 -i 305 -a 0 h -t 31.3704 -s 311 -d 312 -p ack -e 40 -i 305 -a 0 r -t 31.3704 -s 310 -d 311 -p ack -e 40 -i 305 -a 0 r -t 31.3714 -s 311 -d 312 -p ack -e 40 -i 305 -a 0 - -t 31.3719 -s 311 -d 310 -p tcp -e 1000 -i 310 -a 5 h -t 31.3719 -s 311 -d 310 -p tcp -e 1000 -i 310 -a 5 + -t 31.3785 -s 104 -d 110 -p ack -e 40 -i 333 -a 4 - -t 31.3785 -s 104 -d 110 -p ack -e 40 -i 333 -a 4 h -t 31.3785 -s 104 -d 110 -p ack -e 40 -i 333 -a 4 + -t 31.3795 -s 110 -d 111 -p ack -e 40 -i 333 -a 4 - -t 31.3795 -s 110 -d 111 -p ack -e 40 -i 333 -a 4 h -t 31.3795 -s 110 -d 111 -p ack -e 40 -i 333 -a 4 r -t 31.3795 -s 104 -d 110 -p ack -e 40 -i 333 -a 4 + -t 31.4004 -s 311 -d 312 -p ack -e 40 -i 306 -a 4 - -t 31.4004 -s 311 -d 312 -p ack -e 40 -i 306 -a 4 h -t 31.4004 -s 311 -d 312 -p ack -e 40 -i 306 -a 4 r -t 31.4004 -s 310 -d 311 -p ack -e 40 -i 306 -a 4 r -t 31.4014 -s 311 -d 312 -p ack -e 40 -i 306 -a 4 + -t 31.4291 -s 311 -d 312 -p ack -e 40 -i 307 -a 1 - -t 31.4291 -s 311 -d 312 -p ack -e 40 -i 307 -a 1 h -t 31.4291 -s 311 -d 312 -p ack -e 40 -i 307 -a 1 r -t 31.4291 -s 310 -d 311 -p ack -e 40 -i 307 -a 1 + -t 31.4301 -s 312 -d 311 -p tcp -e 1000 -i 311 -a 1 + -t 31.4301 -s 312 -d 311 -p tcp -e 1000 -i 312 -a 1 - -t 31.4301 -s 312 -d 311 -p tcp -e 1000 -i 311 -a 1 h -t 31.4301 -s 312 -d 311 -p tcp -e 1000 -i 311 -a 1 r -t 31.4301 -s 311 -d 312 -p ack -e 40 -i 307 -a 1 - -t 31.4309 -s 312 -d 311 -p tcp -e 1000 -i 312 -a 1 h -t 31.4309 -s 312 -d 311 -p tcp -e 1000 -i 312 -a 1 + -t 31.4319 -s 311 -d 310 -p tcp -e 1000 -i 311 -a 1 - -t 31.4319 -s 311 -d 310 -p tcp -e 1000 -i 311 -a 1 h -t 31.4319 -s 311 -d 310 -p tcp -e 1000 -i 311 -a 1 r -t 31.4321 -s 312 -d 311 -p tcp -e 1000 -i 311 -a 1 + -t 31.4327 -s 311 -d 310 -p tcp -e 1000 -i 312 -a 1 r -t 31.4329 -s 312 -d 311 -p tcp -e 1000 -i 312 -a 1 + -t 31.4359 -s 211 -d 212 -p ack -e 40 -i 328 -a 1 - -t 31.4359 -s 211 -d 212 -p ack -e 40 -i 328 -a 1 h -t 31.4359 -s 211 -d 212 -p ack -e 40 -i 328 -a 1 r -t 31.4359 -s 210 -d 211 -p ack -e 40 -i 328 -a 1 r -t 31.4369 -s 211 -d 212 -p ack -e 40 -i 328 -a 1 + -t 31.4407 -s 110 -d 109 -p tcp -e 1000 -i 331 -a 9 - -t 31.4407 -s 110 -d 109 -p tcp -e 1000 -i 331 -a 9 h -t 31.4407 -s 110 -d 109 -p tcp -e 1000 -i 331 -a 9 r -t 31.4407 -s 111 -d 110 -p tcp -e 1000 -i 331 -a 9 - -t 31.4419 -s 311 -d 310 -p tcp -e 1000 -i 312 -a 1 h -t 31.4419 -s 311 -d 310 -p tcp -e 1000 -i 312 -a 1 r -t 31.4427 -s 110 -d 109 -p tcp -e 1000 -i 331 -a 9 + -t 31.4445 -s 201 -d 210 -p ack -e 40 -i 329 -a 1 - -t 31.4445 -s 201 -d 210 -p ack -e 40 -i 329 -a 1 h -t 31.4445 -s 201 -d 210 -p ack -e 40 -i 329 -a 1 + -t 31.4455 -s 210 -d 211 -p ack -e 40 -i 329 -a 1 - -t 31.4455 -s 210 -d 211 -p ack -e 40 -i 329 -a 1 h -t 31.4455 -s 210 -d 211 -p ack -e 40 -i 329 -a 1 r -t 31.4455 -s 201 -d 210 -p ack -e 40 -i 329 -a 1 + -t 31.4507 -s 110 -d 109 -p tcp -e 1000 -i 332 -a 9 - -t 31.4507 -s 110 -d 109 -p tcp -e 1000 -i 332 -a 9 h -t 31.4507 -s 110 -d 109 -p tcp -e 1000 -i 332 -a 9 r -t 31.4507 -s 111 -d 110 -p tcp -e 1000 -i 332 -a 9 + -t 31.4525 -s 109 -d 110 -p ack -e 40 -i 334 -a 9 - -t 31.4525 -s 109 -d 110 -p ack -e 40 -i 334 -a 9 h -t 31.4525 -s 109 -d 110 -p ack -e 40 -i 334 -a 9 r -t 31.4527 -s 110 -d 109 -p tcp -e 1000 -i 332 -a 9 r -t 31.4535 -s 109 -d 110 -p ack -e 40 -i 334 -a 9 + -t 31.4536 -s 110 -d 111 -p ack -e 40 -i 334 -a 9 - -t 31.4536 -s 110 -d 111 -p ack -e 40 -i 334 -a 9 h -t 31.4536 -s 110 -d 111 -p ack -e 40 -i 334 -a 9 + -t 31.4619 -s 310 -d 305 -p tcp -e 1000 -i 308 -a 5 - -t 31.4619 -s 310 -d 305 -p tcp -e 1000 -i 308 -a 5 h -t 31.4619 -s 310 -d 305 -p tcp -e 1000 -i 308 -a 5 r -t 31.4619 -s 311 -d 310 -p tcp -e 1000 -i 308 -a 5 r -t 31.4639 -s 310 -d 305 -p tcp -e 1000 -i 308 -a 5 + -t 31.4719 -s 310 -d 305 -p tcp -e 1000 -i 309 -a 5 - -t 31.4719 -s 310 -d 305 -p tcp -e 1000 -i 309 -a 5 h -t 31.4719 -s 310 -d 305 -p tcp -e 1000 -i 309 -a 5 r -t 31.4719 -s 311 -d 310 -p tcp -e 1000 -i 309 -a 5 + -t 31.4737 -s 305 -d 310 -p ack -e 40 -i 313 -a 5 - -t 31.4737 -s 305 -d 310 -p ack -e 40 -i 313 -a 5 h -t 31.4737 -s 305 -d 310 -p ack -e 40 -i 313 -a 5 r -t 31.4739 -s 310 -d 305 -p tcp -e 1000 -i 309 -a 5 + -t 31.4747 -s 310 -d 311 -p ack -e 40 -i 313 -a 5 - -t 31.4747 -s 310 -d 311 -p ack -e 40 -i 313 -a 5 h -t 31.4747 -s 310 -d 311 -p ack -e 40 -i 313 -a 5 r -t 31.4747 -s 305 -d 310 -p ack -e 40 -i 313 -a 5 + -t 31.4799 -s 111 -d 112 -p ack -e 40 -i 333 -a 4 - -t 31.4799 -s 111 -d 112 -p ack -e 40 -i 333 -a 4 h -t 31.4799 -s 111 -d 112 -p ack -e 40 -i 333 -a 4 r -t 31.4799 -s 110 -d 111 -p ack -e 40 -i 333 -a 4 + -t 31.4809 -s 112 -d 111 -p tcp -e 1000 -i 335 -a 4 + -t 31.4809 -s 112 -d 111 -p tcp -e 1000 -i 336 -a 4 - -t 31.4809 -s 112 -d 111 -p tcp -e 1000 -i 335 -a 4 h -t 31.4809 -s 112 -d 111 -p tcp -e 1000 -i 335 -a 4 r -t 31.4809 -s 111 -d 112 -p ack -e 40 -i 333 -a 4 - -t 31.4817 -s 112 -d 111 -p tcp -e 1000 -i 336 -a 4 h -t 31.4817 -s 112 -d 111 -p tcp -e 1000 -i 336 -a 4 + -t 31.4819 -s 310 -d 305 -p tcp -e 1000 -i 310 -a 5 - -t 31.4819 -s 310 -d 305 -p tcp -e 1000 -i 310 -a 5 h -t 31.4819 -s 310 -d 305 -p tcp -e 1000 -i 310 -a 5 r -t 31.4819 -s 311 -d 310 -p tcp -e 1000 -i 310 -a 5 + -t 31.4827 -s 111 -d 110 -p tcp -e 1000 -i 335 -a 4 - -t 31.4827 -s 111 -d 110 -p tcp -e 1000 -i 335 -a 4 h -t 31.4827 -s 111 -d 110 -p tcp -e 1000 -i 335 -a 4 r -t 31.4829 -s 112 -d 111 -p tcp -e 1000 -i 335 -a 4 + -t 31.4835 -s 111 -d 110 -p tcp -e 1000 -i 336 -a 4 r -t 31.4837 -s 112 -d 111 -p tcp -e 1000 -i 336 -a 4 r -t 31.4839 -s 310 -d 305 -p tcp -e 1000 -i 310 -a 5 - -t 31.4927 -s 111 -d 110 -p tcp -e 1000 -i 336 -a 4 h -t 31.4927 -s 111 -d 110 -p tcp -e 1000 -i 336 -a 4 + -t 31.5419 -s 310 -d 301 -p tcp -e 1000 -i 311 -a 1 - -t 31.5419 -s 310 -d 301 -p tcp -e 1000 -i 311 -a 1 h -t 31.5419 -s 310 -d 301 -p tcp -e 1000 -i 311 -a 1 r -t 31.5419 -s 311 -d 310 -p tcp -e 1000 -i 311 -a 1 r -t 31.5439 -s 310 -d 301 -p tcp -e 1000 -i 311 -a 1 + -t 31.5459 -s 211 -d 212 -p ack -e 40 -i 329 -a 1 - -t 31.5459 -s 211 -d 212 -p ack -e 40 -i 329 -a 1 h -t 31.5459 -s 211 -d 212 -p ack -e 40 -i 329 -a 1 r -t 31.5459 -s 210 -d 211 -p ack -e 40 -i 329 -a 1 r -t 31.5469 -s 211 -d 212 -p ack -e 40 -i 329 -a 1 + -t 31.5519 -s 310 -d 301 -p tcp -e 1000 -i 312 -a 1 - -t 31.5519 -s 310 -d 301 -p tcp -e 1000 -i 312 -a 1 h -t 31.5519 -s 310 -d 301 -p tcp -e 1000 -i 312 -a 1 r -t 31.5519 -s 311 -d 310 -p tcp -e 1000 -i 312 -a 1 + -t 31.5537 -s 301 -d 310 -p ack -e 40 -i 314 -a 1 - -t 31.5537 -s 301 -d 310 -p ack -e 40 -i 314 -a 1 h -t 31.5537 -s 301 -d 310 -p ack -e 40 -i 314 -a 1 r -t 31.5539 -s 310 -d 301 -p tcp -e 1000 -i 312 -a 1 + -t 31.554 -s 111 -d 112 -p ack -e 40 -i 334 -a 9 - -t 31.554 -s 111 -d 112 -p ack -e 40 -i 334 -a 9 h -t 31.554 -s 111 -d 112 -p ack -e 40 -i 334 -a 9 r -t 31.554 -s 110 -d 111 -p ack -e 40 -i 334 -a 9 + -t 31.5547 -s 310 -d 311 -p ack -e 40 -i 314 -a 1 - -t 31.5547 -s 310 -d 311 -p ack -e 40 -i 314 -a 1 h -t 31.5547 -s 310 -d 311 -p ack -e 40 -i 314 -a 1 r -t 31.5547 -s 301 -d 310 -p ack -e 40 -i 314 -a 1 r -t 31.555 -s 111 -d 112 -p ack -e 40 -i 334 -a 9 + -t 31.5751 -s 311 -d 312 -p ack -e 40 -i 313 -a 5 - -t 31.5751 -s 311 -d 312 -p ack -e 40 -i 313 -a 5 h -t 31.5751 -s 311 -d 312 -p ack -e 40 -i 313 -a 5 r -t 31.5751 -s 310 -d 311 -p ack -e 40 -i 313 -a 5 r -t 31.5761 -s 311 -d 312 -p ack -e 40 -i 313 -a 5 + -t 31.5837 -s 305 -d 310 -p ack -e 40 -i 315 -a 5 - -t 31.5837 -s 305 -d 310 -p ack -e 40 -i 315 -a 5 h -t 31.5837 -s 305 -d 310 -p ack -e 40 -i 315 -a 5 + -t 31.5847 -s 310 -d 311 -p ack -e 40 -i 315 -a 5 - -t 31.5847 -s 310 -d 311 -p ack -e 40 -i 315 -a 5 h -t 31.5847 -s 310 -d 311 -p ack -e 40 -i 315 -a 5 r -t 31.5847 -s 305 -d 310 -p ack -e 40 -i 315 -a 5 + -t 31.5927 -s 110 -d 104 -p tcp -e 1000 -i 335 -a 4 - -t 31.5927 -s 110 -d 104 -p tcp -e 1000 -i 335 -a 4 h -t 31.5927 -s 110 -d 104 -p tcp -e 1000 -i 335 -a 4 r -t 31.5927 -s 111 -d 110 -p tcp -e 1000 -i 335 -a 4 r -t 31.5947 -s 110 -d 104 -p tcp -e 1000 -i 335 -a 4 + -t 31.6027 -s 110 -d 104 -p tcp -e 1000 -i 336 -a 4 - -t 31.6027 -s 110 -d 104 -p tcp -e 1000 -i 336 -a 4 h -t 31.6027 -s 110 -d 104 -p tcp -e 1000 -i 336 -a 4 r -t 31.6027 -s 111 -d 110 -p tcp -e 1000 -i 336 -a 4 + -t 31.6045 -s 104 -d 110 -p ack -e 40 -i 337 -a 4 - -t 31.6045 -s 104 -d 110 -p ack -e 40 -i 337 -a 4 h -t 31.6045 -s 104 -d 110 -p ack -e 40 -i 337 -a 4 r -t 31.6047 -s 110 -d 104 -p tcp -e 1000 -i 336 -a 4 r -t 31.6055 -s 104 -d 110 -p ack -e 40 -i 337 -a 4 + -t 31.6056 -s 110 -d 111 -p ack -e 40 -i 337 -a 4 - -t 31.6056 -s 110 -d 111 -p ack -e 40 -i 337 -a 4 h -t 31.6056 -s 110 -d 111 -p ack -e 40 -i 337 -a 4 + -t 31.6551 -s 311 -d 312 -p ack -e 40 -i 314 -a 1 - -t 31.6551 -s 311 -d 312 -p ack -e 40 -i 314 -a 1 h -t 31.6551 -s 311 -d 312 -p ack -e 40 -i 314 -a 1 r -t 31.6551 -s 310 -d 311 -p ack -e 40 -i 314 -a 1 r -t 31.6561 -s 311 -d 312 -p ack -e 40 -i 314 -a 1 + -t 31.6562 -s 312 -d 311 -p tcp -e 1000 -i 316 -a 1 + -t 31.6562 -s 312 -d 311 -p tcp -e 1000 -i 317 -a 1 + -t 31.6562 -s 312 -d 311 -p tcp -e 1000 -i 318 -a 1 - -t 31.6562 -s 312 -d 311 -p tcp -e 1000 -i 316 -a 1 h -t 31.6562 -s 312 -d 311 -p tcp -e 1000 -i 316 -a 1 - -t 31.657 -s 312 -d 311 -p tcp -e 1000 -i 317 -a 1 h -t 31.657 -s 312 -d 311 -p tcp -e 1000 -i 317 -a 1 - -t 31.6578 -s 312 -d 311 -p tcp -e 1000 -i 318 -a 1 h -t 31.6578 -s 312 -d 311 -p tcp -e 1000 -i 318 -a 1 + -t 31.658 -s 311 -d 310 -p tcp -e 1000 -i 316 -a 1 - -t 31.658 -s 311 -d 310 -p tcp -e 1000 -i 316 -a 1 h -t 31.658 -s 311 -d 310 -p tcp -e 1000 -i 316 -a 1 r -t 31.6582 -s 312 -d 311 -p tcp -e 1000 -i 316 -a 1 + -t 31.6588 -s 311 -d 310 -p tcp -e 1000 -i 317 -a 1 r -t 31.659 -s 312 -d 311 -p tcp -e 1000 -i 317 -a 1 + -t 31.6596 -s 311 -d 310 -p tcp -e 1000 -i 318 -a 1 r -t 31.6598 -s 312 -d 311 -p tcp -e 1000 -i 318 -a 1 - -t 31.668 -s 311 -d 310 -p tcp -e 1000 -i 317 -a 1 h -t 31.668 -s 311 -d 310 -p tcp -e 1000 -i 317 -a 1 - -t 31.678 -s 311 -d 310 -p tcp -e 1000 -i 318 -a 1 h -t 31.678 -s 311 -d 310 -p tcp -e 1000 -i 318 -a 1 + -t 31.6851 -s 311 -d 312 -p ack -e 40 -i 315 -a 5 - -t 31.6851 -s 311 -d 312 -p ack -e 40 -i 315 -a 5 h -t 31.6851 -s 311 -d 312 -p ack -e 40 -i 315 -a 5 r -t 31.6851 -s 310 -d 311 -p ack -e 40 -i 315 -a 5 r -t 31.6861 -s 311 -d 312 -p ack -e 40 -i 315 -a 5 + -t 31.706 -s 111 -d 112 -p ack -e 40 -i 337 -a 4 - -t 31.706 -s 111 -d 112 -p ack -e 40 -i 337 -a 4 h -t 31.706 -s 111 -d 112 -p ack -e 40 -i 337 -a 4 r -t 31.706 -s 110 -d 111 -p ack -e 40 -i 337 -a 4 r -t 31.707 -s 111 -d 112 -p ack -e 40 -i 337 -a 4 + -t 31.768 -s 310 -d 301 -p tcp -e 1000 -i 316 -a 1 - -t 31.768 -s 310 -d 301 -p tcp -e 1000 -i 316 -a 1 h -t 31.768 -s 310 -d 301 -p tcp -e 1000 -i 316 -a 1 r -t 31.768 -s 311 -d 310 -p tcp -e 1000 -i 316 -a 1 r -t 31.77 -s 310 -d 301 -p tcp -e 1000 -i 316 -a 1 + -t 31.778 -s 310 -d 301 -p tcp -e 1000 -i 317 -a 1 - -t 31.778 -s 310 -d 301 -p tcp -e 1000 -i 317 -a 1 h -t 31.778 -s 310 -d 301 -p tcp -e 1000 -i 317 -a 1 r -t 31.778 -s 311 -d 310 -p tcp -e 1000 -i 317 -a 1 + -t 31.7798 -s 301 -d 310 -p ack -e 40 -i 319 -a 1 - -t 31.7798 -s 301 -d 310 -p ack -e 40 -i 319 -a 1 h -t 31.7798 -s 301 -d 310 -p ack -e 40 -i 319 -a 1 r -t 31.78 -s 310 -d 301 -p tcp -e 1000 -i 317 -a 1 + -t 31.7808 -s 310 -d 311 -p ack -e 40 -i 319 -a 1 - -t 31.7808 -s 310 -d 311 -p ack -e 40 -i 319 -a 1 h -t 31.7808 -s 310 -d 311 -p ack -e 40 -i 319 -a 1 r -t 31.7808 -s 301 -d 310 -p ack -e 40 -i 319 -a 1 + -t 31.788 -s 310 -d 301 -p tcp -e 1000 -i 318 -a 1 - -t 31.788 -s 310 -d 301 -p tcp -e 1000 -i 318 -a 1 h -t 31.788 -s 310 -d 301 -p tcp -e 1000 -i 318 -a 1 r -t 31.788 -s 311 -d 310 -p tcp -e 1000 -i 318 -a 1 r -t 31.79 -s 310 -d 301 -p tcp -e 1000 -i 318 -a 1 + -t 31.8812 -s 311 -d 312 -p ack -e 40 -i 319 -a 1 - -t 31.8812 -s 311 -d 312 -p ack -e 40 -i 319 -a 1 h -t 31.8812 -s 311 -d 312 -p ack -e 40 -i 319 -a 1 r -t 31.8812 -s 310 -d 311 -p ack -e 40 -i 319 -a 1 r -t 31.8822 -s 311 -d 312 -p ack -e 40 -i 319 -a 1 + -t 31.8898 -s 301 -d 310 -p ack -e 40 -i 320 -a 1 - -t 31.8898 -s 301 -d 310 -p ack -e 40 -i 320 -a 1 h -t 31.8898 -s 301 -d 310 -p ack -e 40 -i 320 -a 1 + -t 31.8908 -s 310 -d 311 -p ack -e 40 -i 320 -a 1 - -t 31.8908 -s 310 -d 311 -p ack -e 40 -i 320 -a 1 h -t 31.8908 -s 310 -d 311 -p ack -e 40 -i 320 -a 1 r -t 31.8908 -s 301 -d 310 -p ack -e 40 -i 320 -a 1 + -t 31.9912 -s 311 -d 312 -p ack -e 40 -i 320 -a 1 - -t 31.9912 -s 311 -d 312 -p ack -e 40 -i 320 -a 1 h -t 31.9912 -s 311 -d 312 -p ack -e 40 -i 320 -a 1 r -t 31.9912 -s 310 -d 311 -p ack -e 40 -i 320 -a 1 r -t 31.9922 -s 311 -d 312 -p ack -e 40 -i 320 -a 1 v -t 49.1 sim_annotation 49.1 6 Phase three: another round + -t 49.1839 -s 112 -d 111 -p tcp -e 1000 -i 338 -a 5 + -t 49.1839 -s 112 -d 111 -p tcp -e 1000 -i 339 -a 5 + -t 49.1839 -s 112 -d 111 -p tcp -e 1000 -i 340 -a 5 + -t 49.1839 -s 112 -d 111 -p tcp -e 1000 -i 341 -a 5 + -t 49.1839 -s 112 -d 111 -p tcp -e 1000 -i 342 -a 5 + -t 49.1839 -s 112 -d 111 -p tcp -e 1000 -i 343 -a 5 + -t 49.1839 -s 112 -d 111 -p tcp -e 1000 -i 344 -a 5 + -t 49.1839 -s 112 -d 111 -p tcp -e 1000 -i 345 -a 5 + -t 49.1839 -s 112 -d 111 -p tcp -e 1000 -i 346 -a 5 + -t 49.1839 -s 112 -d 111 -p tcp -e 1000 -i 347 -a 5 + -t 49.1839 -s 212 -d 211 -p tcp -e 1000 -i 330 -a 5 + -t 49.1839 -s 312 -d 311 -p tcp -e 1000 -i 321 -a 5 - -t 49.1839 -s 112 -d 111 -p tcp -e 1000 -i 338 -a 5 - -t 49.1839 -s 212 -d 211 -p tcp -e 1000 -i 330 -a 5 - -t 49.1839 -s 312 -d 311 -p tcp -e 1000 -i 321 -a 5 h -t 49.1839 -s 112 -d 111 -p tcp -e 1000 -i 338 -a 5 h -t 49.1839 -s 212 -d 211 -p tcp -e 1000 -i 330 -a 5 h -t 49.1839 -s 312 -d 311 -p tcp -e 1000 -i 321 -a 5 - -t 49.1847 -s 112 -d 111 -p tcp -e 1000 -i 339 -a 5 h -t 49.1847 -s 112 -d 111 -p tcp -e 1000 -i 339 -a 5 - -t 49.1855 -s 112 -d 111 -p tcp -e 1000 -i 340 -a 5 h -t 49.1855 -s 112 -d 111 -p tcp -e 1000 -i 340 -a 5 + -t 49.1857 -s 111 -d 110 -p tcp -e 1000 -i 338 -a 5 + -t 49.1857 -s 211 -d 210 -p tcp -e 1000 -i 330 -a 5 + -t 49.1857 -s 311 -d 310 -p tcp -e 1000 -i 321 -a 5 - -t 49.1857 -s 111 -d 110 -p tcp -e 1000 -i 338 -a 5 - -t 49.1857 -s 211 -d 210 -p tcp -e 1000 -i 330 -a 5 - -t 49.1857 -s 311 -d 310 -p tcp -e 1000 -i 321 -a 5 h -t 49.1857 -s 111 -d 110 -p tcp -e 1000 -i 338 -a 5 h -t 49.1857 -s 211 -d 210 -p tcp -e 1000 -i 330 -a 5 h -t 49.1857 -s 311 -d 310 -p tcp -e 1000 -i 321 -a 5 r -t 49.1859 -s 112 -d 111 -p tcp -e 1000 -i 338 -a 5 r -t 49.1859 -s 212 -d 211 -p tcp -e 1000 -i 330 -a 5 r -t 49.1859 -s 312 -d 311 -p tcp -e 1000 -i 321 -a 5 - -t 49.1863 -s 112 -d 111 -p tcp -e 1000 -i 341 -a 5 h -t 49.1863 -s 112 -d 111 -p tcp -e 1000 -i 341 -a 5 + -t 49.1865 -s 111 -d 110 -p tcp -e 1000 -i 339 -a 5 r -t 49.1867 -s 112 -d 111 -p tcp -e 1000 -i 339 -a 5 - -t 49.1871 -s 112 -d 111 -p tcp -e 1000 -i 342 -a 5 h -t 49.1871 -s 112 -d 111 -p tcp -e 1000 -i 342 -a 5 + -t 49.1873 -s 111 -d 110 -p tcp -e 1000 -i 340 -a 5 r -t 49.1875 -s 112 -d 111 -p tcp -e 1000 -i 340 -a 5 - -t 49.1879 -s 112 -d 111 -p tcp -e 1000 -i 343 -a 5 h -t 49.1879 -s 112 -d 111 -p tcp -e 1000 -i 343 -a 5 + -t 49.1881 -s 111 -d 110 -p tcp -e 1000 -i 341 -a 5 r -t 49.1883 -s 112 -d 111 -p tcp -e 1000 -i 341 -a 5 - -t 49.1887 -s 112 -d 111 -p tcp -e 1000 -i 344 -a 5 h -t 49.1887 -s 112 -d 111 -p tcp -e 1000 -i 344 -a 5 + -t 49.1889 -s 111 -d 110 -p tcp -e 1000 -i 342 -a 5 r -t 49.1891 -s 112 -d 111 -p tcp -e 1000 -i 342 -a 5 - -t 49.1895 -s 112 -d 111 -p tcp -e 1000 -i 345 -a 5 h -t 49.1895 -s 112 -d 111 -p tcp -e 1000 -i 345 -a 5 + -t 49.1897 -s 111 -d 110 -p tcp -e 1000 -i 343 -a 5 r -t 49.1899 -s 112 -d 111 -p tcp -e 1000 -i 343 -a 5 - -t 49.1903 -s 112 -d 111 -p tcp -e 1000 -i 346 -a 5 h -t 49.1903 -s 112 -d 111 -p tcp -e 1000 -i 346 -a 5 + -t 49.1905 -s 111 -d 110 -p tcp -e 1000 -i 344 -a 5 r -t 49.1907 -s 112 -d 111 -p tcp -e 1000 -i 344 -a 5 - -t 49.1911 -s 112 -d 111 -p tcp -e 1000 -i 347 -a 5 h -t 49.1911 -s 112 -d 111 -p tcp -e 1000 -i 347 -a 5 + -t 49.1913 -s 111 -d 110 -p tcp -e 1000 -i 345 -a 5 r -t 49.1915 -s 112 -d 111 -p tcp -e 1000 -i 345 -a 5 + -t 49.1921 -s 111 -d 110 -p tcp -e 1000 -i 346 -a 5 r -t 49.1923 -s 112 -d 111 -p tcp -e 1000 -i 346 -a 5 + -t 49.1929 -s 111 -d 110 -p tcp -e 1000 -i 347 -a 5 r -t 49.1931 -s 112 -d 111 -p tcp -e 1000 -i 347 -a 5 - -t 49.1957 -s 111 -d 110 -p tcp -e 1000 -i 339 -a 5 h -t 49.1957 -s 111 -d 110 -p tcp -e 1000 -i 339 -a 5 - -t 49.2057 -s 111 -d 110 -p tcp -e 1000 -i 340 -a 5 h -t 49.2057 -s 111 -d 110 -p tcp -e 1000 -i 340 -a 5 - -t 49.2157 -s 111 -d 110 -p tcp -e 1000 -i 341 -a 5 h -t 49.2157 -s 111 -d 110 -p tcp -e 1000 -i 341 -a 5 - -t 49.2257 -s 111 -d 110 -p tcp -e 1000 -i 342 -a 5 h -t 49.2257 -s 111 -d 110 -p tcp -e 1000 -i 342 -a 5 - -t 49.2357 -s 111 -d 110 -p tcp -e 1000 -i 343 -a 5 h -t 49.2357 -s 111 -d 110 -p tcp -e 1000 -i 343 -a 5 - -t 49.2457 -s 111 -d 110 -p tcp -e 1000 -i 344 -a 5 h -t 49.2457 -s 111 -d 110 -p tcp -e 1000 -i 344 -a 5 - -t 49.2557 -s 111 -d 110 -p tcp -e 1000 -i 345 -a 5 h -t 49.2557 -s 111 -d 110 -p tcp -e 1000 -i 345 -a 5 - -t 49.2657 -s 111 -d 110 -p tcp -e 1000 -i 346 -a 5 h -t 49.2657 -s 111 -d 110 -p tcp -e 1000 -i 346 -a 5 - -t 49.2757 -s 111 -d 110 -p tcp -e 1000 -i 347 -a 5 h -t 49.2757 -s 111 -d 110 -p tcp -e 1000 -i 347 -a 5 + -t 49.2957 -s 110 -d 105 -p tcp -e 1000 -i 338 -a 5 + -t 49.2957 -s 210 -d 205 -p tcp -e 1000 -i 330 -a 5 + -t 49.2957 -s 310 -d 305 -p tcp -e 1000 -i 321 -a 5 - -t 49.2957 -s 110 -d 105 -p tcp -e 1000 -i 338 -a 5 - -t 49.2957 -s 210 -d 205 -p tcp -e 1000 -i 330 -a 5 - -t 49.2957 -s 310 -d 305 -p tcp -e 1000 -i 321 -a 5 h -t 49.2957 -s 110 -d 105 -p tcp -e 1000 -i 338 -a 5 h -t 49.2957 -s 210 -d 205 -p tcp -e 1000 -i 330 -a 5 h -t 49.2957 -s 310 -d 305 -p tcp -e 1000 -i 321 -a 5 r -t 49.2957 -s 111 -d 110 -p tcp -e 1000 -i 338 -a 5 r -t 49.2957 -s 211 -d 210 -p tcp -e 1000 -i 330 -a 5 r -t 49.2957 -s 311 -d 310 -p tcp -e 1000 -i 321 -a 5 + -t 49.2959 -s 212 -d 211 -p tcp -e 1000 -i 331 -a 5 - -t 49.2959 -s 212 -d 211 -p tcp -e 1000 -i 331 -a 5 h -t 49.2959 -s 212 -d 211 -p tcp -e 1000 -i 331 -a 5 + -t 49.2977 -s 211 -d 210 -p tcp -e 1000 -i 331 -a 5 - -t 49.2977 -s 211 -d 210 -p tcp -e 1000 -i 331 -a 5 h -t 49.2977 -s 211 -d 210 -p tcp -e 1000 -i 331 -a 5 r -t 49.2977 -s 110 -d 105 -p tcp -e 1000 -i 338 -a 5 r -t 49.2977 -s 210 -d 205 -p tcp -e 1000 -i 330 -a 5 r -t 49.2977 -s 310 -d 305 -p tcp -e 1000 -i 321 -a 5 r -t 49.2979 -s 212 -d 211 -p tcp -e 1000 -i 331 -a 5 + -t 49.3057 -s 110 -d 105 -p tcp -e 1000 -i 339 -a 5 - -t 49.3057 -s 110 -d 105 -p tcp -e 1000 -i 339 -a 5 h -t 49.3057 -s 110 -d 105 -p tcp -e 1000 -i 339 -a 5 r -t 49.3057 -s 111 -d 110 -p tcp -e 1000 -i 339 -a 5 + -t 49.3075 -s 105 -d 110 -p ack -e 40 -i 348 -a 5 - -t 49.3075 -s 105 -d 110 -p ack -e 40 -i 348 -a 5 h -t 49.3075 -s 105 -d 110 -p ack -e 40 -i 348 -a 5 r -t 49.3077 -s 110 -d 105 -p tcp -e 1000 -i 339 -a 5 + -t 49.3085 -s 110 -d 111 -p ack -e 40 -i 348 -a 5 - -t 49.3085 -s 110 -d 111 -p ack -e 40 -i 348 -a 5 h -t 49.3085 -s 110 -d 111 -p ack -e 40 -i 348 -a 5 r -t 49.3085 -s 105 -d 110 -p ack -e 40 -i 348 -a 5 + -t 49.3157 -s 110 -d 105 -p tcp -e 1000 -i 340 -a 5 - -t 49.3157 -s 110 -d 105 -p tcp -e 1000 -i 340 -a 5 h -t 49.3157 -s 110 -d 105 -p tcp -e 1000 -i 340 -a 5 r -t 49.3157 -s 111 -d 110 -p tcp -e 1000 -i 340 -a 5 r -t 49.3177 -s 110 -d 105 -p tcp -e 1000 -i 340 -a 5 + -t 49.3257 -s 110 -d 105 -p tcp -e 1000 -i 341 -a 5 - -t 49.3257 -s 110 -d 105 -p tcp -e 1000 -i 341 -a 5 h -t 49.3257 -s 110 -d 105 -p tcp -e 1000 -i 341 -a 5 r -t 49.3257 -s 111 -d 110 -p tcp -e 1000 -i 341 -a 5 + -t 49.3275 -s 105 -d 110 -p ack -e 40 -i 349 -a 5 - -t 49.3275 -s 105 -d 110 -p ack -e 40 -i 349 -a 5 h -t 49.3275 -s 105 -d 110 -p ack -e 40 -i 349 -a 5 r -t 49.3277 -s 110 -d 105 -p tcp -e 1000 -i 341 -a 5 + -t 49.3285 -s 110 -d 111 -p ack -e 40 -i 349 -a 5 - -t 49.3285 -s 110 -d 111 -p ack -e 40 -i 349 -a 5 h -t 49.3285 -s 110 -d 111 -p ack -e 40 -i 349 -a 5 r -t 49.3285 -s 105 -d 110 -p ack -e 40 -i 349 -a 5 + -t 49.3357 -s 110 -d 105 -p tcp -e 1000 -i 342 -a 5 - -t 49.3357 -s 110 -d 105 -p tcp -e 1000 -i 342 -a 5 h -t 49.3357 -s 110 -d 105 -p tcp -e 1000 -i 342 -a 5 r -t 49.3357 -s 111 -d 110 -p tcp -e 1000 -i 342 -a 5 r -t 49.3377 -s 110 -d 105 -p tcp -e 1000 -i 342 -a 5 + -t 49.3457 -s 110 -d 105 -p tcp -e 1000 -i 343 -a 5 - -t 49.3457 -s 110 -d 105 -p tcp -e 1000 -i 343 -a 5 h -t 49.3457 -s 110 -d 105 -p tcp -e 1000 -i 343 -a 5 r -t 49.3457 -s 111 -d 110 -p tcp -e 1000 -i 343 -a 5 + -t 49.3475 -s 105 -d 110 -p ack -e 40 -i 350 -a 5 - -t 49.3475 -s 105 -d 110 -p ack -e 40 -i 350 -a 5 h -t 49.3475 -s 105 -d 110 -p ack -e 40 -i 350 -a 5 r -t 49.3477 -s 110 -d 105 -p tcp -e 1000 -i 343 -a 5 + -t 49.3485 -s 110 -d 111 -p ack -e 40 -i 350 -a 5 - -t 49.3485 -s 110 -d 111 -p ack -e 40 -i 350 -a 5 h -t 49.3485 -s 110 -d 111 -p ack -e 40 -i 350 -a 5 r -t 49.3485 -s 105 -d 110 -p ack -e 40 -i 350 -a 5 + -t 49.3557 -s 110 -d 105 -p tcp -e 1000 -i 344 -a 5 - -t 49.3557 -s 110 -d 105 -p tcp -e 1000 -i 344 -a 5 h -t 49.3557 -s 110 -d 105 -p tcp -e 1000 -i 344 -a 5 r -t 49.3557 -s 111 -d 110 -p tcp -e 1000 -i 344 -a 5 r -t 49.3577 -s 110 -d 105 -p tcp -e 1000 -i 344 -a 5 + -t 49.3657 -s 110 -d 105 -p tcp -e 1000 -i 345 -a 5 - -t 49.3657 -s 110 -d 105 -p tcp -e 1000 -i 345 -a 5 h -t 49.3657 -s 110 -d 105 -p tcp -e 1000 -i 345 -a 5 r -t 49.3657 -s 111 -d 110 -p tcp -e 1000 -i 345 -a 5 + -t 49.3675 -s 105 -d 110 -p ack -e 40 -i 351 -a 5 - -t 49.3675 -s 105 -d 110 -p ack -e 40 -i 351 -a 5 h -t 49.3675 -s 105 -d 110 -p ack -e 40 -i 351 -a 5 r -t 49.3677 -s 110 -d 105 -p tcp -e 1000 -i 345 -a 5 + -t 49.3685 -s 110 -d 111 -p ack -e 40 -i 351 -a 5 - -t 49.3685 -s 110 -d 111 -p ack -e 40 -i 351 -a 5 h -t 49.3685 -s 110 -d 111 -p ack -e 40 -i 351 -a 5 r -t 49.3685 -s 105 -d 110 -p ack -e 40 -i 351 -a 5 + -t 49.3757 -s 110 -d 105 -p tcp -e 1000 -i 346 -a 5 - -t 49.3757 -s 110 -d 105 -p tcp -e 1000 -i 346 -a 5 h -t 49.3757 -s 110 -d 105 -p tcp -e 1000 -i 346 -a 5 r -t 49.3757 -s 111 -d 110 -p tcp -e 1000 -i 346 -a 5 r -t 49.3777 -s 110 -d 105 -p tcp -e 1000 -i 346 -a 5 + -t 49.3857 -s 110 -d 105 -p tcp -e 1000 -i 347 -a 5 - -t 49.3857 -s 110 -d 105 -p tcp -e 1000 -i 347 -a 5 h -t 49.3857 -s 110 -d 105 -p tcp -e 1000 -i 347 -a 5 r -t 49.3857 -s 111 -d 110 -p tcp -e 1000 -i 347 -a 5 + -t 49.3875 -s 105 -d 110 -p ack -e 40 -i 352 -a 5 - -t 49.3875 -s 105 -d 110 -p ack -e 40 -i 352 -a 5 h -t 49.3875 -s 105 -d 110 -p ack -e 40 -i 352 -a 5 r -t 49.3877 -s 110 -d 105 -p tcp -e 1000 -i 347 -a 5 + -t 49.3885 -s 110 -d 111 -p ack -e 40 -i 352 -a 5 - -t 49.3885 -s 110 -d 111 -p ack -e 40 -i 352 -a 5 h -t 49.3885 -s 110 -d 111 -p ack -e 40 -i 352 -a 5 r -t 49.3885 -s 105 -d 110 -p ack -e 40 -i 352 -a 5 + -t 49.3975 -s 205 -d 210 -p ack -e 40 -i 332 -a 5 + -t 49.3975 -s 305 -d 310 -p ack -e 40 -i 322 -a 5 - -t 49.3975 -s 205 -d 210 -p ack -e 40 -i 332 -a 5 - -t 49.3975 -s 305 -d 310 -p ack -e 40 -i 322 -a 5 h -t 49.3975 -s 205 -d 210 -p ack -e 40 -i 332 -a 5 h -t 49.3975 -s 305 -d 310 -p ack -e 40 -i 322 -a 5 + -t 49.3985 -s 210 -d 211 -p ack -e 40 -i 332 -a 5 + -t 49.3985 -s 310 -d 311 -p ack -e 40 -i 322 -a 5 - -t 49.3985 -s 210 -d 211 -p ack -e 40 -i 332 -a 5 - -t 49.3985 -s 310 -d 311 -p ack -e 40 -i 322 -a 5 h -t 49.3985 -s 210 -d 211 -p ack -e 40 -i 332 -a 5 h -t 49.3985 -s 310 -d 311 -p ack -e 40 -i 322 -a 5 r -t 49.3985 -s 205 -d 210 -p ack -e 40 -i 332 -a 5 r -t 49.3985 -s 305 -d 310 -p ack -e 40 -i 322 -a 5 + -t 49.4077 -s 210 -d 205 -p tcp -e 1000 -i 331 -a 5 - -t 49.4077 -s 210 -d 205 -p tcp -e 1000 -i 331 -a 5 h -t 49.4077 -s 210 -d 205 -p tcp -e 1000 -i 331 -a 5 r -t 49.4077 -s 211 -d 210 -p tcp -e 1000 -i 331 -a 5 + -t 49.4079 -s 212 -d 211 -p tcp -e 1000 -i 333 -a 5 - -t 49.4079 -s 212 -d 211 -p tcp -e 1000 -i 333 -a 5 h -t 49.4079 -s 212 -d 211 -p tcp -e 1000 -i 333 -a 5 + -t 49.4089 -s 111 -d 112 -p ack -e 40 -i 348 -a 5 - -t 49.4089 -s 111 -d 112 -p ack -e 40 -i 348 -a 5 h -t 49.4089 -s 111 -d 112 -p ack -e 40 -i 348 -a 5 r -t 49.4089 -s 110 -d 111 -p ack -e 40 -i 348 -a 5 + -t 49.4097 -s 211 -d 210 -p tcp -e 1000 -i 333 -a 5 - -t 49.4097 -s 211 -d 210 -p tcp -e 1000 -i 333 -a 5 h -t 49.4097 -s 211 -d 210 -p tcp -e 1000 -i 333 -a 5 r -t 49.4097 -s 210 -d 205 -p tcp -e 1000 -i 331 -a 5 r -t 49.4099 -s 111 -d 112 -p ack -e 40 -i 348 -a 5 r -t 49.4099 -s 212 -d 211 -p tcp -e 1000 -i 333 -a 5 + -t 49.4289 -s 111 -d 112 -p ack -e 40 -i 349 -a 5 - -t 49.4289 -s 111 -d 112 -p ack -e 40 -i 349 -a 5 h -t 49.4289 -s 111 -d 112 -p ack -e 40 -i 349 -a 5 r -t 49.4289 -s 110 -d 111 -p ack -e 40 -i 349 -a 5 r -t 49.4299 -s 111 -d 112 -p ack -e 40 -i 349 -a 5 + -t 49.4489 -s 111 -d 112 -p ack -e 40 -i 350 -a 5 - -t 49.4489 -s 111 -d 112 -p ack -e 40 -i 350 -a 5 h -t 49.4489 -s 111 -d 112 -p ack -e 40 -i 350 -a 5 r -t 49.4489 -s 110 -d 111 -p ack -e 40 -i 350 -a 5 r -t 49.4499 -s 111 -d 112 -p ack -e 40 -i 350 -a 5 + -t 49.4689 -s 111 -d 112 -p ack -e 40 -i 351 -a 5 - -t 49.4689 -s 111 -d 112 -p ack -e 40 -i 351 -a 5 h -t 49.4689 -s 111 -d 112 -p ack -e 40 -i 351 -a 5 r -t 49.4689 -s 110 -d 111 -p ack -e 40 -i 351 -a 5 r -t 49.4699 -s 111 -d 112 -p ack -e 40 -i 351 -a 5 + -t 49.4889 -s 111 -d 112 -p ack -e 40 -i 352 -a 5 - -t 49.4889 -s 111 -d 112 -p ack -e 40 -i 352 -a 5 h -t 49.4889 -s 111 -d 112 -p ack -e 40 -i 352 -a 5 r -t 49.4889 -s 110 -d 111 -p ack -e 40 -i 352 -a 5 r -t 49.4899 -s 111 -d 112 -p ack -e 40 -i 352 -a 5 + -t 49.4989 -s 211 -d 212 -p ack -e 40 -i 332 -a 5 + -t 49.4989 -s 311 -d 312 -p ack -e 40 -i 322 -a 5 - -t 49.4989 -s 211 -d 212 -p ack -e 40 -i 332 -a 5 - -t 49.4989 -s 311 -d 312 -p ack -e 40 -i 322 -a 5 h -t 49.4989 -s 211 -d 212 -p ack -e 40 -i 332 -a 5 h -t 49.4989 -s 311 -d 312 -p ack -e 40 -i 322 -a 5 r -t 49.4989 -s 210 -d 211 -p ack -e 40 -i 332 -a 5 r -t 49.4989 -s 310 -d 311 -p ack -e 40 -i 322 -a 5 r -t 49.4999 -s 211 -d 212 -p ack -e 40 -i 332 -a 5 r -t 49.4999 -s 311 -d 312 -p ack -e 40 -i 322 -a 5 + -t 49.5 -s 212 -d 211 -p tcp -e 1000 -i 334 -a 5 + -t 49.5 -s 212 -d 211 -p tcp -e 1000 -i 335 -a 5 + -t 49.5 -s 212 -d 211 -p tcp -e 1000 -i 336 -a 5 + -t 49.5 -s 312 -d 311 -p tcp -e 1000 -i 323 -a 5 + -t 49.5 -s 312 -d 311 -p tcp -e 1000 -i 324 -a 5 - -t 49.5 -s 212 -d 211 -p tcp -e 1000 -i 334 -a 5 - -t 49.5 -s 312 -d 311 -p tcp -e 1000 -i 323 -a 5 h -t 49.5 -s 212 -d 211 -p tcp -e 1000 -i 334 -a 5 h -t 49.5 -s 312 -d 311 -p tcp -e 1000 -i 323 -a 5 - -t 49.5008 -s 212 -d 211 -p tcp -e 1000 -i 335 -a 5 - -t 49.5008 -s 312 -d 311 -p tcp -e 1000 -i 324 -a 5 h -t 49.5008 -s 212 -d 211 -p tcp -e 1000 -i 335 -a 5 h -t 49.5008 -s 312 -d 311 -p tcp -e 1000 -i 324 -a 5 - -t 49.5016 -s 212 -d 211 -p tcp -e 1000 -i 336 -a 5 h -t 49.5016 -s 212 -d 211 -p tcp -e 1000 -i 336 -a 5 + -t 49.5018 -s 211 -d 210 -p tcp -e 1000 -i 334 -a 5 + -t 49.5018 -s 311 -d 310 -p tcp -e 1000 -i 323 -a 5 - -t 49.5018 -s 211 -d 210 -p tcp -e 1000 -i 334 -a 5 - -t 49.5018 -s 311 -d 310 -p tcp -e 1000 -i 323 -a 5 h -t 49.5018 -s 211 -d 210 -p tcp -e 1000 -i 334 -a 5 h -t 49.5018 -s 311 -d 310 -p tcp -e 1000 -i 323 -a 5 r -t 49.502 -s 212 -d 211 -p tcp -e 1000 -i 334 -a 5 r -t 49.502 -s 312 -d 311 -p tcp -e 1000 -i 323 -a 5 + -t 49.5026 -s 211 -d 210 -p tcp -e 1000 -i 335 -a 5 + -t 49.5026 -s 311 -d 310 -p tcp -e 1000 -i 324 -a 5 r -t 49.5028 -s 212 -d 211 -p tcp -e 1000 -i 335 -a 5 r -t 49.5028 -s 312 -d 311 -p tcp -e 1000 -i 324 -a 5 + -t 49.5034 -s 211 -d 210 -p tcp -e 1000 -i 336 -a 5 r -t 49.5036 -s 212 -d 211 -p tcp -e 1000 -i 336 -a 5 + -t 49.5095 -s 205 -d 210 -p ack -e 40 -i 337 -a 5 - -t 49.5095 -s 205 -d 210 -p ack -e 40 -i 337 -a 5 h -t 49.5095 -s 205 -d 210 -p ack -e 40 -i 337 -a 5 r -t 49.5105 -s 205 -d 210 -p ack -e 40 -i 337 -a 5 + -t 49.5106 -s 210 -d 211 -p ack -e 40 -i 337 -a 5 - -t 49.5106 -s 210 -d 211 -p ack -e 40 -i 337 -a 5 h -t 49.5106 -s 210 -d 211 -p ack -e 40 -i 337 -a 5 - -t 49.5118 -s 211 -d 210 -p tcp -e 1000 -i 335 -a 5 - -t 49.5118 -s 311 -d 310 -p tcp -e 1000 -i 324 -a 5 h -t 49.5118 -s 211 -d 210 -p tcp -e 1000 -i 335 -a 5 h -t 49.5118 -s 311 -d 310 -p tcp -e 1000 -i 324 -a 5 + -t 49.5197 -s 210 -d 205 -p tcp -e 1000 -i 333 -a 5 - -t 49.5197 -s 210 -d 205 -p tcp -e 1000 -i 333 -a 5 h -t 49.5197 -s 210 -d 205 -p tcp -e 1000 -i 333 -a 5 r -t 49.5197 -s 211 -d 210 -p tcp -e 1000 -i 333 -a 5 r -t 49.5217 -s 210 -d 205 -p tcp -e 1000 -i 333 -a 5 - -t 49.5218 -s 211 -d 210 -p tcp -e 1000 -i 336 -a 5 h -t 49.5218 -s 211 -d 210 -p tcp -e 1000 -i 336 -a 5 + -t 49.611 -s 211 -d 212 -p ack -e 40 -i 337 -a 5 - -t 49.611 -s 211 -d 212 -p ack -e 40 -i 337 -a 5 h -t 49.611 -s 211 -d 212 -p ack -e 40 -i 337 -a 5 r -t 49.611 -s 210 -d 211 -p ack -e 40 -i 337 -a 5 + -t 49.6118 -s 210 -d 205 -p tcp -e 1000 -i 334 -a 5 + -t 49.6118 -s 310 -d 305 -p tcp -e 1000 -i 323 -a 5 - -t 49.6118 -s 210 -d 205 -p tcp -e 1000 -i 334 -a 5 - -t 49.6118 -s 310 -d 305 -p tcp -e 1000 -i 323 -a 5 h -t 49.6118 -s 210 -d 205 -p tcp -e 1000 -i 334 -a 5 h -t 49.6118 -s 310 -d 305 -p tcp -e 1000 -i 323 -a 5 r -t 49.6118 -s 211 -d 210 -p tcp -e 1000 -i 334 -a 5 r -t 49.6118 -s 311 -d 310 -p tcp -e 1000 -i 323 -a 5 + -t 49.612 -s 212 -d 211 -p tcp -e 1000 -i 338 -a 5 + -t 49.612 -s 212 -d 211 -p tcp -e 1000 -i 339 -a 5 + -t 49.612 -s 212 -d 211 -p tcp -e 1000 -i 340 -a 5 - -t 49.612 -s 212 -d 211 -p tcp -e 1000 -i 338 -a 5 h -t 49.612 -s 212 -d 211 -p tcp -e 1000 -i 338 -a 5 r -t 49.612 -s 211 -d 212 -p ack -e 40 -i 337 -a 5 - -t 49.6128 -s 212 -d 211 -p tcp -e 1000 -i 339 -a 5 h -t 49.6128 -s 212 -d 211 -p tcp -e 1000 -i 339 -a 5 + -t 49.6136 -s 205 -d 210 -p ack -e 40 -i 341 -a 5 - -t 49.6136 -s 205 -d 210 -p ack -e 40 -i 341 -a 5 - -t 49.6136 -s 212 -d 211 -p tcp -e 1000 -i 340 -a 5 h -t 49.6136 -s 205 -d 210 -p ack -e 40 -i 341 -a 5 h -t 49.6136 -s 212 -d 211 -p tcp -e 1000 -i 340 -a 5 + -t 49.6138 -s 211 -d 210 -p tcp -e 1000 -i 338 -a 5 - -t 49.6138 -s 211 -d 210 -p tcp -e 1000 -i 338 -a 5 h -t 49.6138 -s 211 -d 210 -p tcp -e 1000 -i 338 -a 5 r -t 49.6138 -s 210 -d 205 -p tcp -e 1000 -i 334 -a 5 r -t 49.6138 -s 310 -d 305 -p tcp -e 1000 -i 323 -a 5 r -t 49.614 -s 212 -d 211 -p tcp -e 1000 -i 338 -a 5 + -t 49.6146 -s 210 -d 211 -p ack -e 40 -i 341 -a 5 + -t 49.6146 -s 211 -d 210 -p tcp -e 1000 -i 339 -a 5 - -t 49.6146 -s 210 -d 211 -p ack -e 40 -i 341 -a 5 h -t 49.6146 -s 210 -d 211 -p ack -e 40 -i 341 -a 5 r -t 49.6146 -s 205 -d 210 -p ack -e 40 -i 341 -a 5 r -t 49.6148 -s 212 -d 211 -p tcp -e 1000 -i 339 -a 5 + -t 49.6154 -s 211 -d 210 -p tcp -e 1000 -i 340 -a 5 r -t 49.6156 -s 212 -d 211 -p tcp -e 1000 -i 340 -a 5 + -t 49.6218 -s 210 -d 205 -p tcp -e 1000 -i 335 -a 5 + -t 49.6218 -s 310 -d 305 -p tcp -e 1000 -i 324 -a 5 - -t 49.6218 -s 210 -d 205 -p tcp -e 1000 -i 335 -a 5 - -t 49.6218 -s 310 -d 305 -p tcp -e 1000 -i 324 -a 5 h -t 49.6218 -s 210 -d 205 -p tcp -e 1000 -i 335 -a 5 h -t 49.6218 -s 310 -d 305 -p tcp -e 1000 -i 324 -a 5 r -t 49.6218 -s 211 -d 210 -p tcp -e 1000 -i 335 -a 5 r -t 49.6218 -s 311 -d 310 -p tcp -e 1000 -i 324 -a 5 + -t 49.6236 -s 305 -d 310 -p ack -e 40 -i 325 -a 5 - -t 49.6236 -s 305 -d 310 -p ack -e 40 -i 325 -a 5 h -t 49.6236 -s 305 -d 310 -p ack -e 40 -i 325 -a 5 - -t 49.6238 -s 211 -d 210 -p tcp -e 1000 -i 339 -a 5 h -t 49.6238 -s 211 -d 210 -p tcp -e 1000 -i 339 -a 5 r -t 49.6238 -s 210 -d 205 -p tcp -e 1000 -i 335 -a 5 r -t 49.6238 -s 310 -d 305 -p tcp -e 1000 -i 324 -a 5 + -t 49.6246 -s 310 -d 311 -p ack -e 40 -i 325 -a 5 - -t 49.6246 -s 310 -d 311 -p ack -e 40 -i 325 -a 5 h -t 49.6246 -s 310 -d 311 -p ack -e 40 -i 325 -a 5 r -t 49.6246 -s 305 -d 310 -p ack -e 40 -i 325 -a 5 + -t 49.6318 -s 210 -d 205 -p tcp -e 1000 -i 336 -a 5 - -t 49.6318 -s 210 -d 205 -p tcp -e 1000 -i 336 -a 5 h -t 49.6318 -s 210 -d 205 -p tcp -e 1000 -i 336 -a 5 r -t 49.6318 -s 211 -d 210 -p tcp -e 1000 -i 336 -a 5 + -t 49.6336 -s 205 -d 210 -p ack -e 40 -i 342 -a 5 - -t 49.6336 -s 205 -d 210 -p ack -e 40 -i 342 -a 5 h -t 49.6336 -s 205 -d 210 -p ack -e 40 -i 342 -a 5 - -t 49.6338 -s 211 -d 210 -p tcp -e 1000 -i 340 -a 5 h -t 49.6338 -s 211 -d 210 -p tcp -e 1000 -i 340 -a 5 r -t 49.6338 -s 210 -d 205 -p tcp -e 1000 -i 336 -a 5 + -t 49.6346 -s 210 -d 211 -p ack -e 40 -i 342 -a 5 - -t 49.6346 -s 210 -d 211 -p ack -e 40 -i 342 -a 5 h -t 49.6346 -s 210 -d 211 -p ack -e 40 -i 342 -a 5 r -t 49.6346 -s 205 -d 210 -p ack -e 40 -i 342 -a 5 + -t 49.715 -s 211 -d 212 -p ack -e 40 -i 341 -a 5 - -t 49.715 -s 211 -d 212 -p ack -e 40 -i 341 -a 5 h -t 49.715 -s 211 -d 212 -p ack -e 40 -i 341 -a 5 r -t 49.715 -s 210 -d 211 -p ack -e 40 -i 341 -a 5 + -t 49.716 -s 212 -d 211 -p tcp -e 1000 -i 343 -a 5 - -t 49.716 -s 212 -d 211 -p tcp -e 1000 -i 343 -a 5 h -t 49.716 -s 212 -d 211 -p tcp -e 1000 -i 343 -a 5 r -t 49.716 -s 211 -d 212 -p ack -e 40 -i 341 -a 5 + -t 49.7178 -s 211 -d 210 -p tcp -e 1000 -i 343 -a 5 - -t 49.7178 -s 211 -d 210 -p tcp -e 1000 -i 343 -a 5 h -t 49.7178 -s 211 -d 210 -p tcp -e 1000 -i 343 -a 5 r -t 49.718 -s 212 -d 211 -p tcp -e 1000 -i 343 -a 5 + -t 49.7238 -s 210 -d 205 -p tcp -e 1000 -i 338 -a 5 - -t 49.7238 -s 210 -d 205 -p tcp -e 1000 -i 338 -a 5 h -t 49.7238 -s 210 -d 205 -p tcp -e 1000 -i 338 -a 5 r -t 49.7238 -s 211 -d 210 -p tcp -e 1000 -i 338 -a 5 + -t 49.725 -s 311 -d 312 -p ack -e 40 -i 325 -a 5 - -t 49.725 -s 311 -d 312 -p ack -e 40 -i 325 -a 5 h -t 49.725 -s 311 -d 312 -p ack -e 40 -i 325 -a 5 r -t 49.725 -s 310 -d 311 -p ack -e 40 -i 325 -a 5 r -t 49.7258 -s 210 -d 205 -p tcp -e 1000 -i 338 -a 5 + -t 49.726 -s 312 -d 311 -p tcp -e 1000 -i 326 -a 5 + -t 49.726 -s 312 -d 311 -p tcp -e 1000 -i 327 -a 5 - -t 49.726 -s 312 -d 311 -p tcp -e 1000 -i 326 -a 5 h -t 49.726 -s 312 -d 311 -p tcp -e 1000 -i 326 -a 5 r -t 49.726 -s 311 -d 312 -p ack -e 40 -i 325 -a 5 - -t 49.7268 -s 312 -d 311 -p tcp -e 1000 -i 327 -a 5 h -t 49.7268 -s 312 -d 311 -p tcp -e 1000 -i 327 -a 5 + -t 49.7278 -s 311 -d 310 -p tcp -e 1000 -i 326 -a 5 - -t 49.7278 -s 311 -d 310 -p tcp -e 1000 -i 326 -a 5 h -t 49.7278 -s 311 -d 310 -p tcp -e 1000 -i 326 -a 5 r -t 49.728 -s 312 -d 311 -p tcp -e 1000 -i 326 -a 5 + -t 49.7286 -s 311 -d 310 -p tcp -e 1000 -i 327 -a 5 r -t 49.7288 -s 312 -d 311 -p tcp -e 1000 -i 327 -a 5 + -t 49.7338 -s 210 -d 205 -p tcp -e 1000 -i 339 -a 5 - -t 49.7338 -s 210 -d 205 -p tcp -e 1000 -i 339 -a 5 h -t 49.7338 -s 210 -d 205 -p tcp -e 1000 -i 339 -a 5 r -t 49.7338 -s 211 -d 210 -p tcp -e 1000 -i 339 -a 5 + -t 49.735 -s 211 -d 212 -p ack -e 40 -i 342 -a 5 - -t 49.735 -s 211 -d 212 -p ack -e 40 -i 342 -a 5 h -t 49.735 -s 211 -d 212 -p ack -e 40 -i 342 -a 5 r -t 49.735 -s 210 -d 211 -p ack -e 40 -i 342 -a 5 + -t 49.7356 -s 205 -d 210 -p ack -e 40 -i 344 -a 5 - -t 49.7356 -s 205 -d 210 -p ack -e 40 -i 344 -a 5 h -t 49.7356 -s 205 -d 210 -p ack -e 40 -i 344 -a 5 r -t 49.7358 -s 210 -d 205 -p tcp -e 1000 -i 339 -a 5 r -t 49.736 -s 211 -d 212 -p ack -e 40 -i 342 -a 5 + -t 49.7366 -s 210 -d 211 -p ack -e 40 -i 344 -a 5 - -t 49.7366 -s 210 -d 211 -p ack -e 40 -i 344 -a 5 h -t 49.7366 -s 210 -d 211 -p ack -e 40 -i 344 -a 5 r -t 49.7366 -s 205 -d 210 -p ack -e 40 -i 344 -a 5 - -t 49.7378 -s 311 -d 310 -p tcp -e 1000 -i 327 -a 5 h -t 49.7378 -s 311 -d 310 -p tcp -e 1000 -i 327 -a 5 + -t 49.7438 -s 210 -d 205 -p tcp -e 1000 -i 340 -a 5 - -t 49.7438 -s 210 -d 205 -p tcp -e 1000 -i 340 -a 5 h -t 49.7438 -s 210 -d 205 -p tcp -e 1000 -i 340 -a 5 r -t 49.7438 -s 211 -d 210 -p tcp -e 1000 -i 340 -a 5 r -t 49.7458 -s 210 -d 205 -p tcp -e 1000 -i 340 -a 5 + -t 49.8278 -s 210 -d 205 -p tcp -e 1000 -i 343 -a 5 - -t 49.8278 -s 210 -d 205 -p tcp -e 1000 -i 343 -a 5 h -t 49.8278 -s 210 -d 205 -p tcp -e 1000 -i 343 -a 5 r -t 49.8278 -s 211 -d 210 -p tcp -e 1000 -i 343 -a 5 + -t 49.8296 -s 205 -d 210 -p ack -e 40 -i 345 -a 5 - -t 49.8296 -s 205 -d 210 -p ack -e 40 -i 345 -a 5 h -t 49.8296 -s 205 -d 210 -p ack -e 40 -i 345 -a 5 r -t 49.8298 -s 210 -d 205 -p tcp -e 1000 -i 343 -a 5 r -t 49.8306 -s 205 -d 210 -p ack -e 40 -i 345 -a 5 + -t 49.8307 -s 210 -d 211 -p ack -e 40 -i 345 -a 5 - -t 49.8307 -s 210 -d 211 -p ack -e 40 -i 345 -a 5 h -t 49.8307 -s 210 -d 211 -p ack -e 40 -i 345 -a 5 + -t 49.832 -s 112 -d 111 -p tcp -e 1000 -i 353 -a 7 + -t 49.832 -s 112 -d 111 -p tcp -e 1000 -i 354 -a 7 + -t 49.832 -s 112 -d 111 -p tcp -e 1000 -i 355 -a 7 + -t 49.832 -s 112 -d 111 -p tcp -e 1000 -i 356 -a 7 + -t 49.832 -s 112 -d 111 -p tcp -e 1000 -i 357 -a 7 + -t 49.832 -s 112 -d 111 -p tcp -e 1000 -i 358 -a 7 + -t 49.832 -s 112 -d 111 -p tcp -e 1000 -i 359 -a 7 + -t 49.832 -s 112 -d 111 -p tcp -e 1000 -i 360 -a 7 + -t 49.832 -s 112 -d 111 -p tcp -e 1000 -i 361 -a 7 + -t 49.832 -s 112 -d 111 -p tcp -e 1000 -i 362 -a 7 + -t 49.832 -s 212 -d 211 -p tcp -e 1000 -i 346 -a 7 + -t 49.832 -s 312 -d 311 -p tcp -e 1000 -i 328 -a 7 - -t 49.832 -s 112 -d 111 -p tcp -e 1000 -i 353 -a 7 - -t 49.832 -s 212 -d 211 -p tcp -e 1000 -i 346 -a 7 - -t 49.832 -s 312 -d 311 -p tcp -e 1000 -i 328 -a 7 h -t 49.832 -s 112 -d 111 -p tcp -e 1000 -i 353 -a 7 h -t 49.832 -s 212 -d 211 -p tcp -e 1000 -i 346 -a 7 h -t 49.832 -s 312 -d 311 -p tcp -e 1000 -i 328 -a 7 - -t 49.8328 -s 112 -d 111 -p tcp -e 1000 -i 354 -a 7 h -t 49.8328 -s 112 -d 111 -p tcp -e 1000 -i 354 -a 7 - -t 49.8336 -s 112 -d 111 -p tcp -e 1000 -i 355 -a 7 h -t 49.8336 -s 112 -d 111 -p tcp -e 1000 -i 355 -a 7 + -t 49.8338 -s 111 -d 110 -p tcp -e 1000 -i 353 -a 7 + -t 49.8338 -s 211 -d 210 -p tcp -e 1000 -i 346 -a 7 + -t 49.8338 -s 311 -d 310 -p tcp -e 1000 -i 328 -a 7 - -t 49.8338 -s 111 -d 110 -p tcp -e 1000 -i 353 -a 7 - -t 49.8338 -s 211 -d 210 -p tcp -e 1000 -i 346 -a 7 - -t 49.8338 -s 311 -d 310 -p tcp -e 1000 -i 328 -a 7 h -t 49.8338 -s 111 -d 110 -p tcp -e 1000 -i 353 -a 7 h -t 49.8338 -s 211 -d 210 -p tcp -e 1000 -i 346 -a 7 h -t 49.8338 -s 311 -d 310 -p tcp -e 1000 -i 328 -a 7 r -t 49.834 -s 112 -d 111 -p tcp -e 1000 -i 353 -a 7 r -t 49.834 -s 212 -d 211 -p tcp -e 1000 -i 346 -a 7 r -t 49.834 -s 312 -d 311 -p tcp -e 1000 -i 328 -a 7 - -t 49.8344 -s 112 -d 111 -p tcp -e 1000 -i 356 -a 7 h -t 49.8344 -s 112 -d 111 -p tcp -e 1000 -i 356 -a 7 + -t 49.8346 -s 111 -d 110 -p tcp -e 1000 -i 354 -a 7 r -t 49.8348 -s 112 -d 111 -p tcp -e 1000 -i 354 -a 7 - -t 49.8352 -s 112 -d 111 -p tcp -e 1000 -i 357 -a 7 h -t 49.8352 -s 112 -d 111 -p tcp -e 1000 -i 357 -a 7 + -t 49.8354 -s 111 -d 110 -p tcp -e 1000 -i 355 -a 7 r -t 49.8356 -s 112 -d 111 -p tcp -e 1000 -i 355 -a 7 - -t 49.836 -s 112 -d 111 -p tcp -e 1000 -i 358 -a 7 h -t 49.836 -s 112 -d 111 -p tcp -e 1000 -i 358 -a 7 + -t 49.8362 -s 111 -d 110 -p tcp -e 1000 -i 356 -a 7 r -t 49.8364 -s 112 -d 111 -p tcp -e 1000 -i 356 -a 7 - -t 49.8368 -s 112 -d 111 -p tcp -e 1000 -i 359 -a 7 h -t 49.8368 -s 112 -d 111 -p tcp -e 1000 -i 359 -a 7 + -t 49.837 -s 111 -d 110 -p tcp -e 1000 -i 357 -a 7 + -t 49.837 -s 211 -d 212 -p ack -e 40 -i 344 -a 5 - -t 49.837 -s 211 -d 212 -p ack -e 40 -i 344 -a 5 h -t 49.837 -s 211 -d 212 -p ack -e 40 -i 344 -a 5 r -t 49.837 -s 210 -d 211 -p ack -e 40 -i 344 -a 5 r -t 49.8372 -s 112 -d 111 -p tcp -e 1000 -i 357 -a 7 - -t 49.8376 -s 112 -d 111 -p tcp -e 1000 -i 360 -a 7 h -t 49.8376 -s 112 -d 111 -p tcp -e 1000 -i 360 -a 7 + -t 49.8378 -s 111 -d 110 -p tcp -e 1000 -i 358 -a 7 + -t 49.8378 -s 310 -d 305 -p tcp -e 1000 -i 326 -a 5 - -t 49.8378 -s 310 -d 305 -p tcp -e 1000 -i 326 -a 5 h -t 49.8378 -s 310 -d 305 -p tcp -e 1000 -i 326 -a 5 r -t 49.8378 -s 311 -d 310 -p tcp -e 1000 -i 326 -a 5 r -t 49.838 -s 112 -d 111 -p tcp -e 1000 -i 358 -a 7 r -t 49.838 -s 211 -d 212 -p ack -e 40 -i 344 -a 5 - -t 49.8384 -s 112 -d 111 -p tcp -e 1000 -i 361 -a 7 h -t 49.8384 -s 112 -d 111 -p tcp -e 1000 -i 361 -a 7 + -t 49.8386 -s 111 -d 110 -p tcp -e 1000 -i 359 -a 7 r -t 49.8388 -s 112 -d 111 -p tcp -e 1000 -i 359 -a 7 - -t 49.8392 -s 112 -d 111 -p tcp -e 1000 -i 362 -a 7 h -t 49.8392 -s 112 -d 111 -p tcp -e 1000 -i 362 -a 7 + -t 49.8394 -s 111 -d 110 -p tcp -e 1000 -i 360 -a 7 r -t 49.8396 -s 112 -d 111 -p tcp -e 1000 -i 360 -a 7 r -t 49.8398 -s 310 -d 305 -p tcp -e 1000 -i 326 -a 5 + -t 49.8402 -s 111 -d 110 -p tcp -e 1000 -i 361 -a 7 r -t 49.8404 -s 112 -d 111 -p tcp -e 1000 -i 361 -a 7 + -t 49.841 -s 111 -d 110 -p tcp -e 1000 -i 362 -a 7 r -t 49.8412 -s 112 -d 111 -p tcp -e 1000 -i 362 -a 7 - -t 49.8438 -s 111 -d 110 -p tcp -e 1000 -i 354 -a 7 h -t 49.8438 -s 111 -d 110 -p tcp -e 1000 -i 354 -a 7 + -t 49.8478 -s 310 -d 305 -p tcp -e 1000 -i 327 -a 5 - -t 49.8478 -s 310 -d 305 -p tcp -e 1000 -i 327 -a 5 h -t 49.8478 -s 310 -d 305 -p tcp -e 1000 -i 327 -a 5 r -t 49.8478 -s 311 -d 310 -p tcp -e 1000 -i 327 -a 5 + -t 49.8496 -s 305 -d 310 -p ack -e 40 -i 329 -a 5 - -t 49.8496 -s 305 -d 310 -p ack -e 40 -i 329 -a 5 h -t 49.8496 -s 305 -d 310 -p ack -e 40 -i 329 -a 5 r -t 49.8498 -s 310 -d 305 -p tcp -e 1000 -i 327 -a 5 r -t 49.8506 -s 305 -d 310 -p ack -e 40 -i 329 -a 5 + -t 49.8507 -s 310 -d 311 -p ack -e 40 -i 329 -a 5 - -t 49.8507 -s 310 -d 311 -p ack -e 40 -i 329 -a 5 h -t 49.8507 -s 310 -d 311 -p ack -e 40 -i 329 -a 5 - -t 49.8538 -s 111 -d 110 -p tcp -e 1000 -i 355 -a 7 h -t 49.8538 -s 111 -d 110 -p tcp -e 1000 -i 355 -a 7 - -t 49.8638 -s 111 -d 110 -p tcp -e 1000 -i 356 -a 7 h -t 49.8638 -s 111 -d 110 -p tcp -e 1000 -i 356 -a 7 - -t 49.8738 -s 111 -d 110 -p tcp -e 1000 -i 357 -a 7 h -t 49.8738 -s 111 -d 110 -p tcp -e 1000 -i 357 -a 7 - -t 49.8838 -s 111 -d 110 -p tcp -e 1000 -i 358 -a 7 h -t 49.8838 -s 111 -d 110 -p tcp -e 1000 -i 358 -a 7 - -t 49.8938 -s 111 -d 110 -p tcp -e 1000 -i 359 -a 7 h -t 49.8938 -s 111 -d 110 -p tcp -e 1000 -i 359 -a 7 - -t 49.9038 -s 111 -d 110 -p tcp -e 1000 -i 360 -a 7 h -t 49.9038 -s 111 -d 110 -p tcp -e 1000 -i 360 -a 7 - -t 49.9138 -s 111 -d 110 -p tcp -e 1000 -i 361 -a 7 h -t 49.9138 -s 111 -d 110 -p tcp -e 1000 -i 361 -a 7 - -t 49.9238 -s 111 -d 110 -p tcp -e 1000 -i 362 -a 7 h -t 49.9238 -s 111 -d 110 -p tcp -e 1000 -i 362 -a 7 + -t 49.9311 -s 211 -d 212 -p ack -e 40 -i 345 -a 5 - -t 49.9311 -s 211 -d 212 -p ack -e 40 -i 345 -a 5 h -t 49.9311 -s 211 -d 212 -p ack -e 40 -i 345 -a 5 r -t 49.9311 -s 210 -d 211 -p ack -e 40 -i 345 -a 5 r -t 49.9321 -s 211 -d 212 -p ack -e 40 -i 345 -a 5 + -t 49.9438 -s 110 -d 107 -p tcp -e 1000 -i 353 -a 7 + -t 49.9438 -s 210 -d 207 -p tcp -e 1000 -i 346 -a 7 + -t 49.9438 -s 310 -d 307 -p tcp -e 1000 -i 328 -a 7 - -t 49.9438 -s 110 -d 107 -p tcp -e 1000 -i 353 -a 7 - -t 49.9438 -s 210 -d 207 -p tcp -e 1000 -i 346 -a 7 - -t 49.9438 -s 310 -d 307 -p tcp -e 1000 -i 328 -a 7 h -t 49.9438 -s 110 -d 107 -p tcp -e 1000 -i 353 -a 7 h -t 49.9438 -s 210 -d 207 -p tcp -e 1000 -i 346 -a 7 h -t 49.9438 -s 310 -d 307 -p tcp -e 1000 -i 328 -a 7 r -t 49.9438 -s 111 -d 110 -p tcp -e 1000 -i 353 -a 7 r -t 49.9438 -s 211 -d 210 -p tcp -e 1000 -i 346 -a 7 r -t 49.9438 -s 311 -d 310 -p tcp -e 1000 -i 328 -a 7 + -t 49.9453 -s 212 -d 211 -p tcp -e 1000 -i 347 -a 7 - -t 49.9453 -s 212 -d 211 -p tcp -e 1000 -i 347 -a 7 h -t 49.9453 -s 212 -d 211 -p tcp -e 1000 -i 347 -a 7 r -t 49.9458 -s 110 -d 107 -p tcp -e 1000 -i 353 -a 7 r -t 49.9458 -s 210 -d 207 -p tcp -e 1000 -i 346 -a 7 r -t 49.9458 -s 310 -d 307 -p tcp -e 1000 -i 328 -a 7 + -t 49.9471 -s 211 -d 210 -p tcp -e 1000 -i 347 -a 7 - -t 49.9471 -s 211 -d 210 -p tcp -e 1000 -i 347 -a 7 h -t 49.9471 -s 211 -d 210 -p tcp -e 1000 -i 347 -a 7 r -t 49.9473 -s 212 -d 211 -p tcp -e 1000 -i 347 -a 7 + -t 49.9511 -s 311 -d 312 -p ack -e 40 -i 329 -a 5 - -t 49.9511 -s 311 -d 312 -p ack -e 40 -i 329 -a 5 h -t 49.9511 -s 311 -d 312 -p ack -e 40 -i 329 -a 5 r -t 49.9511 -s 310 -d 311 -p ack -e 40 -i 329 -a 5 + -t 49.9521 -s 312 -d 311 -p tcp -e 1000 -i 330 -a 5 + -t 49.9521 -s 312 -d 311 -p tcp -e 1000 -i 331 -a 5 - -t 49.9521 -s 312 -d 311 -p tcp -e 1000 -i 330 -a 5 h -t 49.9521 -s 312 -d 311 -p tcp -e 1000 -i 330 -a 5 r -t 49.9521 -s 311 -d 312 -p ack -e 40 -i 329 -a 5 - -t 49.9529 -s 312 -d 311 -p tcp -e 1000 -i 331 -a 5 h -t 49.9529 -s 312 -d 311 -p tcp -e 1000 -i 331 -a 5 + -t 49.9538 -s 110 -d 107 -p tcp -e 1000 -i 354 -a 7 - -t 49.9538 -s 110 -d 107 -p tcp -e 1000 -i 354 -a 7 h -t 49.9538 -s 110 -d 107 -p tcp -e 1000 -i 354 -a 7 r -t 49.9538 -s 111 -d 110 -p tcp -e 1000 -i 354 -a 7 + -t 49.9539 -s 311 -d 310 -p tcp -e 1000 -i 330 -a 5 - -t 49.9539 -s 311 -d 310 -p tcp -e 1000 -i 330 -a 5 h -t 49.9539 -s 311 -d 310 -p tcp -e 1000 -i 330 -a 5 r -t 49.9541 -s 312 -d 311 -p tcp -e 1000 -i 330 -a 5 + -t 49.9547 -s 311 -d 310 -p tcp -e 1000 -i 331 -a 5 r -t 49.9549 -s 312 -d 311 -p tcp -e 1000 -i 331 -a 5 + -t 49.9556 -s 107 -d 110 -p ack -e 40 -i 363 -a 7 - -t 49.9556 -s 107 -d 110 -p ack -e 40 -i 363 -a 7 h -t 49.9556 -s 107 -d 110 -p ack -e 40 -i 363 -a 7 r -t 49.9558 -s 110 -d 107 -p tcp -e 1000 -i 354 -a 7 + -t 49.9566 -s 110 -d 111 -p ack -e 40 -i 363 -a 7 - -t 49.9566 -s 110 -d 111 -p ack -e 40 -i 363 -a 7 h -t 49.9566 -s 110 -d 111 -p ack -e 40 -i 363 -a 7 r -t 49.9566 -s 107 -d 110 -p ack -e 40 -i 363 -a 7 + -t 49.9638 -s 110 -d 107 -p tcp -e 1000 -i 355 -a 7 - -t 49.9638 -s 110 -d 107 -p tcp -e 1000 -i 355 -a 7 h -t 49.9638 -s 110 -d 107 -p tcp -e 1000 -i 355 -a 7 r -t 49.9638 -s 111 -d 110 -p tcp -e 1000 -i 355 -a 7 - -t 49.9639 -s 311 -d 310 -p tcp -e 1000 -i 331 -a 5 h -t 49.9639 -s 311 -d 310 -p tcp -e 1000 -i 331 -a 5 r -t 49.9658 -s 110 -d 107 -p tcp -e 1000 -i 355 -a 7 + -t 49.9738 -s 110 -d 107 -p tcp -e 1000 -i 356 -a 7 - -t 49.9738 -s 110 -d 107 -p tcp -e 1000 -i 356 -a 7 h -t 49.9738 -s 110 -d 107 -p tcp -e 1000 -i 356 -a 7 r -t 49.9738 -s 111 -d 110 -p tcp -e 1000 -i 356 -a 7 + -t 49.9756 -s 107 -d 110 -p ack -e 40 -i 364 -a 7 - -t 49.9756 -s 107 -d 110 -p ack -e 40 -i 364 -a 7 h -t 49.9756 -s 107 -d 110 -p ack -e 40 -i 364 -a 7 r -t 49.9758 -s 110 -d 107 -p tcp -e 1000 -i 356 -a 7 + -t 49.9766 -s 110 -d 111 -p ack -e 40 -i 364 -a 7 - -t 49.9766 -s 110 -d 111 -p ack -e 40 -i 364 -a 7 h -t 49.9766 -s 110 -d 111 -p ack -e 40 -i 364 -a 7 r -t 49.9766 -s 107 -d 110 -p ack -e 40 -i 364 -a 7 + -t 49.9838 -s 110 -d 107 -p tcp -e 1000 -i 357 -a 7 - -t 49.9838 -s 110 -d 107 -p tcp -e 1000 -i 357 -a 7 h -t 49.9838 -s 110 -d 107 -p tcp -e 1000 -i 357 -a 7 r -t 49.9838 -s 111 -d 110 -p tcp -e 1000 -i 357 -a 7 r -t 49.9858 -s 110 -d 107 -p tcp -e 1000 -i 357 -a 7 + -t 49.9938 -s 110 -d 107 -p tcp -e 1000 -i 358 -a 7 - -t 49.9938 -s 110 -d 107 -p tcp -e 1000 -i 358 -a 7 h -t 49.9938 -s 110 -d 107 -p tcp -e 1000 -i 358 -a 7 r -t 49.9938 -s 111 -d 110 -p tcp -e 1000 -i 358 -a 7 + -t 49.9956 -s 107 -d 110 -p ack -e 40 -i 365 -a 7 - -t 49.9956 -s 107 -d 110 -p ack -e 40 -i 365 -a 7 h -t 49.9956 -s 107 -d 110 -p ack -e 40 -i 365 -a 7 r -t 49.9958 -s 110 -d 107 -p tcp -e 1000 -i 358 -a 7 + -t 49.9966 -s 110 -d 111 -p ack -e 40 -i 365 -a 7 - -t 49.9966 -s 110 -d 111 -p ack -e 40 -i 365 -a 7 h -t 49.9966 -s 110 -d 111 -p ack -e 40 -i 365 -a 7 r -t 49.9966 -s 107 -d 110 -p ack -e 40 -i 365 -a 7 + -t 50.0038 -s 110 -d 107 -p tcp -e 1000 -i 359 -a 7 - -t 50.0038 -s 110 -d 107 -p tcp -e 1000 -i 359 -a 7 h -t 50.0038 -s 110 -d 107 -p tcp -e 1000 -i 359 -a 7 r -t 50.0038 -s 111 -d 110 -p tcp -e 1000 -i 359 -a 7 r -t 50.0058 -s 110 -d 107 -p tcp -e 1000 -i 359 -a 7 + -t 50.0138 -s 110 -d 107 -p tcp -e 1000 -i 360 -a 7 - -t 50.0138 -s 110 -d 107 -p tcp -e 1000 -i 360 -a 7 h -t 50.0138 -s 110 -d 107 -p tcp -e 1000 -i 360 -a 7 r -t 50.0138 -s 111 -d 110 -p tcp -e 1000 -i 360 -a 7 + -t 50.0156 -s 107 -d 110 -p ack -e 40 -i 366 -a 7 - -t 50.0156 -s 107 -d 110 -p ack -e 40 -i 366 -a 7 h -t 50.0156 -s 107 -d 110 -p ack -e 40 -i 366 -a 7 r -t 50.0158 -s 110 -d 107 -p tcp -e 1000 -i 360 -a 7 + -t 50.0166 -s 110 -d 111 -p ack -e 40 -i 366 -a 7 - -t 50.0166 -s 110 -d 111 -p ack -e 40 -i 366 -a 7 h -t 50.0166 -s 110 -d 111 -p ack -e 40 -i 366 -a 7 r -t 50.0166 -s 107 -d 110 -p ack -e 40 -i 366 -a 7 + -t 50.0238 -s 110 -d 107 -p tcp -e 1000 -i 361 -a 7 - -t 50.0238 -s 110 -d 107 -p tcp -e 1000 -i 361 -a 7 h -t 50.0238 -s 110 -d 107 -p tcp -e 1000 -i 361 -a 7 r -t 50.0238 -s 111 -d 110 -p tcp -e 1000 -i 361 -a 7 r -t 50.0258 -s 110 -d 107 -p tcp -e 1000 -i 361 -a 7 + -t 50.0338 -s 110 -d 107 -p tcp -e 1000 -i 362 -a 7 - -t 50.0338 -s 110 -d 107 -p tcp -e 1000 -i 362 -a 7 h -t 50.0338 -s 110 -d 107 -p tcp -e 1000 -i 362 -a 7 r -t 50.0338 -s 111 -d 110 -p tcp -e 1000 -i 362 -a 7 + -t 50.0356 -s 107 -d 110 -p ack -e 40 -i 367 -a 7 - -t 50.0356 -s 107 -d 110 -p ack -e 40 -i 367 -a 7 h -t 50.0356 -s 107 -d 110 -p ack -e 40 -i 367 -a 7 r -t 50.0358 -s 110 -d 107 -p tcp -e 1000 -i 362 -a 7 + -t 50.0366 -s 110 -d 111 -p ack -e 40 -i 367 -a 7 - -t 50.0366 -s 110 -d 111 -p ack -e 40 -i 367 -a 7 h -t 50.0366 -s 110 -d 111 -p ack -e 40 -i 367 -a 7 r -t 50.0366 -s 107 -d 110 -p ack -e 40 -i 367 -a 7 + -t 50.0456 -s 207 -d 210 -p ack -e 40 -i 348 -a 7 + -t 50.0456 -s 307 -d 310 -p ack -e 40 -i 332 -a 7 - -t 50.0456 -s 207 -d 210 -p ack -e 40 -i 348 -a 7 - -t 50.0456 -s 307 -d 310 -p ack -e 40 -i 332 -a 7 h -t 50.0456 -s 207 -d 210 -p ack -e 40 -i 348 -a 7 h -t 50.0456 -s 307 -d 310 -p ack -e 40 -i 332 -a 7 + -t 50.0466 -s 210 -d 211 -p ack -e 40 -i 348 -a 7 + -t 50.0466 -s 310 -d 311 -p ack -e 40 -i 332 -a 7 - -t 50.0466 -s 210 -d 211 -p ack -e 40 -i 348 -a 7 - -t 50.0466 -s 310 -d 311 -p ack -e 40 -i 332 -a 7 h -t 50.0466 -s 210 -d 211 -p ack -e 40 -i 348 -a 7 h -t 50.0466 -s 310 -d 311 -p ack -e 40 -i 332 -a 7 r -t 50.0466 -s 207 -d 210 -p ack -e 40 -i 348 -a 7 r -t 50.0466 -s 307 -d 310 -p ack -e 40 -i 332 -a 7 + -t 50.0539 -s 112 -d 111 -p tcp -e 1000 -i 368 -a 4 + -t 50.0539 -s 112 -d 111 -p tcp -e 1000 -i 369 -a 4 + -t 50.0539 -s 112 -d 111 -p tcp -e 1000 -i 370 -a 4 + -t 50.0539 -s 212 -d 211 -p tcp -e 1000 -i 349 -a 4 + -t 50.0539 -s 312 -d 311 -p tcp -e 1000 -i 333 -a 4 - -t 50.0539 -s 112 -d 111 -p tcp -e 1000 -i 368 -a 4 - -t 50.0539 -s 212 -d 211 -p tcp -e 1000 -i 349 -a 4 - -t 50.0539 -s 312 -d 311 -p tcp -e 1000 -i 333 -a 4 h -t 50.0539 -s 112 -d 111 -p tcp -e 1000 -i 368 -a 4 h -t 50.0539 -s 212 -d 211 -p tcp -e 1000 -i 349 -a 4 h -t 50.0539 -s 312 -d 311 -p tcp -e 1000 -i 333 -a 4 - -t 50.0547 -s 112 -d 111 -p tcp -e 1000 -i 369 -a 4 h -t 50.0547 -s 112 -d 111 -p tcp -e 1000 -i 369 -a 4 - -t 50.0555 -s 112 -d 111 -p tcp -e 1000 -i 370 -a 4 h -t 50.0555 -s 112 -d 111 -p tcp -e 1000 -i 370 -a 4 + -t 50.0557 -s 111 -d 110 -p tcp -e 1000 -i 368 -a 4 + -t 50.0557 -s 211 -d 210 -p tcp -e 1000 -i 349 -a 4 + -t 50.0557 -s 311 -d 310 -p tcp -e 1000 -i 333 -a 4 - -t 50.0557 -s 111 -d 110 -p tcp -e 1000 -i 368 -a 4 - -t 50.0557 -s 211 -d 210 -p tcp -e 1000 -i 349 -a 4 - -t 50.0557 -s 311 -d 310 -p tcp -e 1000 -i 333 -a 4 h -t 50.0557 -s 111 -d 110 -p tcp -e 1000 -i 368 -a 4 h -t 50.0557 -s 211 -d 210 -p tcp -e 1000 -i 349 -a 4 h -t 50.0557 -s 311 -d 310 -p tcp -e 1000 -i 333 -a 4 r -t 50.0559 -s 112 -d 111 -p tcp -e 1000 -i 368 -a 4 r -t 50.0559 -s 212 -d 211 -p tcp -e 1000 -i 349 -a 4 r -t 50.0559 -s 312 -d 311 -p tcp -e 1000 -i 333 -a 4 + -t 50.0565 -s 111 -d 110 -p tcp -e 1000 -i 369 -a 4 r -t 50.0567 -s 112 -d 111 -p tcp -e 1000 -i 369 -a 4 + -t 50.057 -s 111 -d 112 -p ack -e 40 -i 363 -a 7 - -t 50.057 -s 111 -d 112 -p ack -e 40 -i 363 -a 7 h -t 50.057 -s 111 -d 112 -p ack -e 40 -i 363 -a 7 r -t 50.057 -s 110 -d 111 -p ack -e 40 -i 363 -a 7 + -t 50.0571 -s 210 -d 207 -p tcp -e 1000 -i 347 -a 7 - -t 50.0571 -s 210 -d 207 -p tcp -e 1000 -i 347 -a 7 h -t 50.0571 -s 210 -d 207 -p tcp -e 1000 -i 347 -a 7 r -t 50.0571 -s 211 -d 210 -p tcp -e 1000 -i 347 -a 7 + -t 50.0573 -s 111 -d 110 -p tcp -e 1000 -i 370 -a 4 r -t 50.0575 -s 112 -d 111 -p tcp -e 1000 -i 370 -a 4 r -t 50.058 -s 111 -d 112 -p ack -e 40 -i 363 -a 7 + -t 50.0587 -s 212 -d 211 -p tcp -e 1000 -i 350 -a 7 - -t 50.0587 -s 212 -d 211 -p tcp -e 1000 -i 350 -a 7 h -t 50.0587 -s 212 -d 211 -p tcp -e 1000 -i 350 -a 7 r -t 50.0591 -s 210 -d 207 -p tcp -e 1000 -i 347 -a 7 + -t 50.0605 -s 211 -d 210 -p tcp -e 1000 -i 350 -a 7 r -t 50.0607 -s 212 -d 211 -p tcp -e 1000 -i 350 -a 7 + -t 50.0639 -s 310 -d 305 -p tcp -e 1000 -i 330 -a 5 - -t 50.0639 -s 310 -d 305 -p tcp -e 1000 -i 330 -a 5 h -t 50.0639 -s 310 -d 305 -p tcp -e 1000 -i 330 -a 5 r -t 50.0639 -s 311 -d 310 -p tcp -e 1000 -i 330 -a 5 - -t 50.0657 -s 111 -d 110 -p tcp -e 1000 -i 369 -a 4 - -t 50.0657 -s 211 -d 210 -p tcp -e 1000 -i 350 -a 7 h -t 50.0657 -s 111 -d 110 -p tcp -e 1000 -i 369 -a 4 h -t 50.0657 -s 211 -d 210 -p tcp -e 1000 -i 350 -a 7 r -t 50.0659 -s 310 -d 305 -p tcp -e 1000 -i 330 -a 5 + -t 50.0739 -s 310 -d 305 -p tcp -e 1000 -i 331 -a 5 - -t 50.0739 -s 310 -d 305 -p tcp -e 1000 -i 331 -a 5 h -t 50.0739 -s 310 -d 305 -p tcp -e 1000 -i 331 -a 5 r -t 50.0739 -s 311 -d 310 -p tcp -e 1000 -i 331 -a 5 + -t 50.0757 -s 305 -d 310 -p ack -e 40 -i 334 -a 5 - -t 50.0757 -s 111 -d 110 -p tcp -e 1000 -i 370 -a 4 - -t 50.0757 -s 305 -d 310 -p ack -e 40 -i 334 -a 5 h -t 50.0757 -s 111 -d 110 -p tcp -e 1000 -i 370 -a 4 h -t 50.0757 -s 305 -d 310 -p ack -e 40 -i 334 -a 5 r -t 50.0759 -s 310 -d 305 -p tcp -e 1000 -i 331 -a 5 + -t 50.0767 -s 310 -d 311 -p ack -e 40 -i 334 -a 5 - -t 50.0767 -s 310 -d 311 -p ack -e 40 -i 334 -a 5 h -t 50.0767 -s 310 -d 311 -p ack -e 40 -i 334 -a 5 r -t 50.0767 -s 305 -d 310 -p ack -e 40 -i 334 -a 5 + -t 50.077 -s 111 -d 112 -p ack -e 40 -i 364 -a 7 - -t 50.077 -s 111 -d 112 -p ack -e 40 -i 364 -a 7 h -t 50.077 -s 111 -d 112 -p ack -e 40 -i 364 -a 7 r -t 50.077 -s 110 -d 111 -p ack -e 40 -i 364 -a 7 r -t 50.078 -s 111 -d 112 -p ack -e 40 -i 364 -a 7 + -t 50.097 -s 111 -d 112 -p ack -e 40 -i 365 -a 7 - -t 50.097 -s 111 -d 112 -p ack -e 40 -i 365 -a 7 h -t 50.097 -s 111 -d 112 -p ack -e 40 -i 365 -a 7 r -t 50.097 -s 110 -d 111 -p ack -e 40 -i 365 -a 7 r -t 50.098 -s 111 -d 112 -p ack -e 40 -i 365 -a 7 + -t 50.117 -s 111 -d 112 -p ack -e 40 -i 366 -a 7 - -t 50.117 -s 111 -d 112 -p ack -e 40 -i 366 -a 7 h -t 50.117 -s 111 -d 112 -p ack -e 40 -i 366 -a 7 r -t 50.117 -s 110 -d 111 -p ack -e 40 -i 366 -a 7 r -t 50.118 -s 111 -d 112 -p ack -e 40 -i 366 -a 7 + -t 50.137 -s 111 -d 112 -p ack -e 40 -i 367 -a 7 - -t 50.137 -s 111 -d 112 -p ack -e 40 -i 367 -a 7 h -t 50.137 -s 111 -d 112 -p ack -e 40 -i 367 -a 7 r -t 50.137 -s 110 -d 111 -p ack -e 40 -i 367 -a 7 r -t 50.138 -s 111 -d 112 -p ack -e 40 -i 367 -a 7 + -t 50.147 -s 211 -d 212 -p ack -e 40 -i 348 -a 7 + -t 50.147 -s 311 -d 312 -p ack -e 40 -i 332 -a 7 - -t 50.147 -s 211 -d 212 -p ack -e 40 -i 348 -a 7 - -t 50.147 -s 311 -d 312 -p ack -e 40 -i 332 -a 7 h -t 50.147 -s 211 -d 212 -p ack -e 40 -i 348 -a 7 h -t 50.147 -s 311 -d 312 -p ack -e 40 -i 332 -a 7 r -t 50.147 -s 210 -d 211 -p ack -e 40 -i 348 -a 7 r -t 50.147 -s 310 -d 311 -p ack -e 40 -i 332 -a 7 r -t 50.148 -s 211 -d 212 -p ack -e 40 -i 348 -a 7 r -t 50.148 -s 311 -d 312 -p ack -e 40 -i 332 -a 7 + -t 50.1481 -s 212 -d 211 -p tcp -e 1000 -i 351 -a 7 + -t 50.1481 -s 212 -d 211 -p tcp -e 1000 -i 352 -a 7 + -t 50.1481 -s 212 -d 211 -p tcp -e 1000 -i 353 -a 7 + -t 50.1481 -s 312 -d 311 -p tcp -e 1000 -i 335 -a 7 + -t 50.1481 -s 312 -d 311 -p tcp -e 1000 -i 336 -a 7 - -t 50.1481 -s 212 -d 211 -p tcp -e 1000 -i 351 -a 7 - -t 50.1481 -s 312 -d 311 -p tcp -e 1000 -i 335 -a 7 h -t 50.1481 -s 212 -d 211 -p tcp -e 1000 -i 351 -a 7 h -t 50.1481 -s 312 -d 311 -p tcp -e 1000 -i 335 -a 7 - -t 50.1489 -s 212 -d 211 -p tcp -e 1000 -i 352 -a 7 - -t 50.1489 -s 312 -d 311 -p tcp -e 1000 -i 336 -a 7 h -t 50.1489 -s 212 -d 211 -p tcp -e 1000 -i 352 -a 7 h -t 50.1489 -s 312 -d 311 -p tcp -e 1000 -i 336 -a 7 - -t 50.1497 -s 212 -d 211 -p tcp -e 1000 -i 353 -a 7 h -t 50.1497 -s 212 -d 211 -p tcp -e 1000 -i 353 -a 7 + -t 50.1499 -s 211 -d 210 -p tcp -e 1000 -i 351 -a 7 + -t 50.1499 -s 311 -d 310 -p tcp -e 1000 -i 335 -a 7 - -t 50.1499 -s 211 -d 210 -p tcp -e 1000 -i 351 -a 7 - -t 50.1499 -s 311 -d 310 -p tcp -e 1000 -i 335 -a 7 h -t 50.1499 -s 211 -d 210 -p tcp -e 1000 -i 351 -a 7 h -t 50.1499 -s 311 -d 310 -p tcp -e 1000 -i 335 -a 7 r -t 50.1501 -s 212 -d 211 -p tcp -e 1000 -i 351 -a 7 r -t 50.1501 -s 312 -d 311 -p tcp -e 1000 -i 335 -a 7 + -t 50.1507 -s 211 -d 210 -p tcp -e 1000 -i 352 -a 7 + -t 50.1507 -s 311 -d 310 -p tcp -e 1000 -i 336 -a 7 r -t 50.1509 -s 212 -d 211 -p tcp -e 1000 -i 352 -a 7 r -t 50.1509 -s 312 -d 311 -p tcp -e 1000 -i 336 -a 7 + -t 50.1515 -s 211 -d 210 -p tcp -e 1000 -i 353 -a 7 r -t 50.1517 -s 212 -d 211 -p tcp -e 1000 -i 353 -a 7 + -t 50.1589 -s 207 -d 210 -p ack -e 40 -i 354 -a 7 - -t 50.1589 -s 207 -d 210 -p ack -e 40 -i 354 -a 7 h -t 50.1589 -s 207 -d 210 -p ack -e 40 -i 354 -a 7 - -t 50.1599 -s 211 -d 210 -p tcp -e 1000 -i 352 -a 7 - -t 50.1599 -s 311 -d 310 -p tcp -e 1000 -i 336 -a 7 h -t 50.1599 -s 211 -d 210 -p tcp -e 1000 -i 352 -a 7 h -t 50.1599 -s 311 -d 310 -p tcp -e 1000 -i 336 -a 7 r -t 50.1599 -s 207 -d 210 -p ack -e 40 -i 354 -a 7 + -t 50.16 -s 210 -d 211 -p ack -e 40 -i 354 -a 7 - -t 50.16 -s 210 -d 211 -p ack -e 40 -i 354 -a 7 h -t 50.16 -s 210 -d 211 -p ack -e 40 -i 354 -a 7 + -t 50.1657 -s 110 -d 104 -p tcp -e 1000 -i 368 -a 4 + -t 50.1657 -s 210 -d 204 -p tcp -e 1000 -i 349 -a 4 + -t 50.1657 -s 310 -d 304 -p tcp -e 1000 -i 333 -a 4 - -t 50.1657 -s 110 -d 104 -p tcp -e 1000 -i 368 -a 4 - -t 50.1657 -s 210 -d 204 -p tcp -e 1000 -i 349 -a 4 - -t 50.1657 -s 310 -d 304 -p tcp -e 1000 -i 333 -a 4 h -t 50.1657 -s 110 -d 104 -p tcp -e 1000 -i 368 -a 4 h -t 50.1657 -s 210 -d 204 -p tcp -e 1000 -i 349 -a 4 h -t 50.1657 -s 310 -d 304 -p tcp -e 1000 -i 333 -a 4 r -t 50.1657 -s 111 -d 110 -p tcp -e 1000 -i 368 -a 4 r -t 50.1657 -s 211 -d 210 -p tcp -e 1000 -i 349 -a 4 r -t 50.1657 -s 311 -d 310 -p tcp -e 1000 -i 333 -a 4 r -t 50.1677 -s 110 -d 104 -p tcp -e 1000 -i 368 -a 4 r -t 50.1677 -s 210 -d 204 -p tcp -e 1000 -i 349 -a 4 r -t 50.1677 -s 310 -d 304 -p tcp -e 1000 -i 333 -a 4 - -t 50.1699 -s 211 -d 210 -p tcp -e 1000 -i 353 -a 7 h -t 50.1699 -s 211 -d 210 -p tcp -e 1000 -i 353 -a 7 + -t 50.1757 -s 110 -d 104 -p tcp -e 1000 -i 369 -a 4 + -t 50.1757 -s 210 -d 207 -p tcp -e 1000 -i 350 -a 7 - -t 50.1757 -s 110 -d 104 -p tcp -e 1000 -i 369 -a 4 - -t 50.1757 -s 210 -d 207 -p tcp -e 1000 -i 350 -a 7 h -t 50.1757 -s 110 -d 104 -p tcp -e 1000 -i 369 -a 4 h -t 50.1757 -s 210 -d 207 -p tcp -e 1000 -i 350 -a 7 r -t 50.1757 -s 111 -d 110 -p tcp -e 1000 -i 369 -a 4 r -t 50.1757 -s 211 -d 210 -p tcp -e 1000 -i 350 -a 7 + -t 50.1771 -s 311 -d 312 -p ack -e 40 -i 334 -a 5 - -t 50.1771 -s 311 -d 312 -p ack -e 40 -i 334 -a 5 h -t 50.1771 -s 311 -d 312 -p ack -e 40 -i 334 -a 5 r -t 50.1771 -s 310 -d 311 -p ack -e 40 -i 334 -a 5 + -t 50.1775 -s 104 -d 110 -p ack -e 40 -i 371 -a 4 - -t 50.1775 -s 104 -d 110 -p ack -e 40 -i 371 -a 4 h -t 50.1775 -s 104 -d 110 -p ack -e 40 -i 371 -a 4 r -t 50.1777 -s 110 -d 104 -p tcp -e 1000 -i 369 -a 4 r -t 50.1777 -s 210 -d 207 -p tcp -e 1000 -i 350 -a 7 + -t 50.178 -s 112 -d 111 -p tcp -e 1000 -i 372 -a 1 + -t 50.178 -s 112 -d 111 -p tcp -e 1000 -i 373 -a 1 + -t 50.178 -s 112 -d 111 -p tcp -e 1000 -i 374 -a 1 + -t 50.178 -s 112 -d 111 -p tcp -e 1000 -i 375 -a 1 + -t 50.178 -s 112 -d 111 -p tcp -e 1000 -i 376 -a 1 + -t 50.178 -s 112 -d 111 -p tcp -e 1000 -i 377 -a 1 + -t 50.178 -s 112 -d 111 -p tcp -e 1000 -i 378 -a 1 + -t 50.178 -s 112 -d 111 -p tcp -e 1000 -i 379 -a 1 + -t 50.178 -s 112 -d 111 -p tcp -e 1000 -i 380 -a 1 + -t 50.178 -s 112 -d 111 -p tcp -e 1000 -i 381 -a 1 + -t 50.178 -s 212 -d 211 -p tcp -e 1000 -i 355 -a 1 + -t 50.178 -s 312 -d 311 -p tcp -e 1000 -i 337 -a 1 - -t 50.178 -s 112 -d 111 -p tcp -e 1000 -i 372 -a 1 - -t 50.178 -s 212 -d 211 -p tcp -e 1000 -i 355 -a 1 - -t 50.178 -s 312 -d 311 -p tcp -e 1000 -i 337 -a 1 h -t 50.178 -s 112 -d 111 -p tcp -e 1000 -i 372 -a 1 h -t 50.178 -s 212 -d 211 -p tcp -e 1000 -i 355 -a 1 h -t 50.178 -s 312 -d 311 -p tcp -e 1000 -i 337 -a 1 r -t 50.1781 -s 311 -d 312 -p ack -e 40 -i 334 -a 5 + -t 50.1782 -s 312 -d 311 -p tcp -e 1000 -i 338 -a 5 + -t 50.1782 -s 312 -d 311 -p tcp -e 1000 -i 339 -a 5 + -t 50.1782 -s 312 -d 311 -p tcp -e 1000 -i 340 -a 5 + -t 50.1785 -s 110 -d 111 -p ack -e 40 -i 371 -a 4 - -t 50.1785 -s 110 -d 111 -p ack -e 40 -i 371 -a 4 h -t 50.1785 -s 110 -d 111 -p ack -e 40 -i 371 -a 4 r -t 50.1785 -s 104 -d 110 -p ack -e 40 -i 371 -a 4 - -t 50.1788 -s 112 -d 111 -p tcp -e 1000 -i 373 -a 1 - -t 50.1788 -s 312 -d 311 -p tcp -e 1000 -i 338 -a 5 h -t 50.1788 -s 112 -d 111 -p tcp -e 1000 -i 373 -a 1 h -t 50.1788 -s 312 -d 311 -p tcp -e 1000 -i 338 -a 5 - -t 50.1796 -s 112 -d 111 -p tcp -e 1000 -i 374 -a 1 - -t 50.1796 -s 312 -d 311 -p tcp -e 1000 -i 339 -a 5 h -t 50.1796 -s 112 -d 111 -p tcp -e 1000 -i 374 -a 1 h -t 50.1796 -s 312 -d 311 -p tcp -e 1000 -i 339 -a 5 + -t 50.1798 -s 111 -d 110 -p tcp -e 1000 -i 372 -a 1 + -t 50.1798 -s 211 -d 210 -p tcp -e 1000 -i 355 -a 1 + -t 50.1798 -s 311 -d 310 -p tcp -e 1000 -i 337 -a 1 - -t 50.1798 -s 111 -d 110 -p tcp -e 1000 -i 372 -a 1 - -t 50.1798 -s 311 -d 310 -p tcp -e 1000 -i 337 -a 1 h -t 50.1798 -s 111 -d 110 -p tcp -e 1000 -i 372 -a 1 h -t 50.1798 -s 311 -d 310 -p tcp -e 1000 -i 337 -a 1 - -t 50.1799 -s 211 -d 210 -p tcp -e 1000 -i 355 -a 1 h -t 50.1799 -s 211 -d 210 -p tcp -e 1000 -i 355 -a 1 r -t 50.18 -s 112 -d 111 -p tcp -e 1000 -i 372 -a 1 r -t 50.18 -s 212 -d 211 -p tcp -e 1000 -i 355 -a 1 r -t 50.18 -s 312 -d 311 -p tcp -e 1000 -i 337 -a 1 - -t 50.1804 -s 112 -d 111 -p tcp -e 1000 -i 375 -a 1 - -t 50.1804 -s 312 -d 311 -p tcp -e 1000 -i 340 -a 5 h -t 50.1804 -s 112 -d 111 -p tcp -e 1000 -i 375 -a 1 h -t 50.1804 -s 312 -d 311 -p tcp -e 1000 -i 340 -a 5 + -t 50.1806 -s 111 -d 110 -p tcp -e 1000 -i 373 -a 1 + -t 50.1806 -s 311 -d 310 -p tcp -e 1000 -i 338 -a 5 r -t 50.1808 -s 112 -d 111 -p tcp -e 1000 -i 373 -a 1 r -t 50.1808 -s 312 -d 311 -p tcp -e 1000 -i 338 -a 5 - -t 50.1812 -s 112 -d 111 -p tcp -e 1000 -i 376 -a 1 h -t 50.1812 -s 112 -d 111 -p tcp -e 1000 -i 376 -a 1 + -t 50.1814 -s 111 -d 110 -p tcp -e 1000 -i 374 -a 1 + -t 50.1814 -s 311 -d 310 -p tcp -e 1000 -i 339 -a 5 r -t 50.1816 -s 112 -d 111 -p tcp -e 1000 -i 374 -a 1 r -t 50.1816 -s 312 -d 311 -p tcp -e 1000 -i 339 -a 5 - -t 50.182 -s 112 -d 111 -p tcp -e 1000 -i 377 -a 1 h -t 50.182 -s 112 -d 111 -p tcp -e 1000 -i 377 -a 1 + -t 50.1822 -s 111 -d 110 -p tcp -e 1000 -i 375 -a 1 + -t 50.1822 -s 311 -d 310 -p tcp -e 1000 -i 340 -a 5 r -t 50.1824 -s 112 -d 111 -p tcp -e 1000 -i 375 -a 1 r -t 50.1824 -s 312 -d 311 -p tcp -e 1000 -i 340 -a 5 - -t 50.1828 -s 112 -d 111 -p tcp -e 1000 -i 378 -a 1 h -t 50.1828 -s 112 -d 111 -p tcp -e 1000 -i 378 -a 1 + -t 50.183 -s 111 -d 110 -p tcp -e 1000 -i 376 -a 1 r -t 50.1832 -s 112 -d 111 -p tcp -e 1000 -i 376 -a 1 - -t 50.1836 -s 112 -d 111 -p tcp -e 1000 -i 379 -a 1 h -t 50.1836 -s 112 -d 111 -p tcp -e 1000 -i 379 -a 1 + -t 50.1838 -s 111 -d 110 -p tcp -e 1000 -i 377 -a 1 r -t 50.184 -s 112 -d 111 -p tcp -e 1000 -i 377 -a 1 - -t 50.1844 -s 112 -d 111 -p tcp -e 1000 -i 380 -a 1 h -t 50.1844 -s 112 -d 111 -p tcp -e 1000 -i 380 -a 1 + -t 50.1846 -s 111 -d 110 -p tcp -e 1000 -i 378 -a 1 r -t 50.1848 -s 112 -d 111 -p tcp -e 1000 -i 378 -a 1 - -t 50.1852 -s 112 -d 111 -p tcp -e 1000 -i 381 -a 1 h -t 50.1852 -s 112 -d 111 -p tcp -e 1000 -i 381 -a 1 + -t 50.1854 -s 111 -d 110 -p tcp -e 1000 -i 379 -a 1 r -t 50.1856 -s 112 -d 111 -p tcp -e 1000 -i 379 -a 1 + -t 50.1857 -s 110 -d 104 -p tcp -e 1000 -i 370 -a 4 - -t 50.1857 -s 110 -d 104 -p tcp -e 1000 -i 370 -a 4 h -t 50.1857 -s 110 -d 104 -p tcp -e 1000 -i 370 -a 4 r -t 50.1857 -s 111 -d 110 -p tcp -e 1000 -i 370 -a 4 + -t 50.1862 -s 111 -d 110 -p tcp -e 1000 -i 380 -a 1 r -t 50.1864 -s 112 -d 111 -p tcp -e 1000 -i 380 -a 1 + -t 50.187 -s 111 -d 110 -p tcp -e 1000 -i 381 -a 1 r -t 50.1872 -s 112 -d 111 -p tcp -e 1000 -i 381 -a 1 r -t 50.1877 -s 110 -d 104 -p tcp -e 1000 -i 370 -a 4 - -t 50.1898 -s 111 -d 110 -p tcp -e 1000 -i 373 -a 1 - -t 50.1898 -s 311 -d 310 -p tcp -e 1000 -i 338 -a 5 h -t 50.1898 -s 111 -d 110 -p tcp -e 1000 -i 373 -a 1 h -t 50.1898 -s 311 -d 310 -p tcp -e 1000 -i 338 -a 5 - -t 50.1998 -s 111 -d 110 -p tcp -e 1000 -i 374 -a 1 - -t 50.1998 -s 311 -d 310 -p tcp -e 1000 -i 339 -a 5 h -t 50.1998 -s 111 -d 110 -p tcp -e 1000 -i 374 -a 1 h -t 50.1998 -s 311 -d 310 -p tcp -e 1000 -i 339 -a 5 - -t 50.2098 -s 111 -d 110 -p tcp -e 1000 -i 375 -a 1 - -t 50.2098 -s 311 -d 310 -p tcp -e 1000 -i 340 -a 5 h -t 50.2098 -s 111 -d 110 -p tcp -e 1000 -i 375 -a 1 h -t 50.2098 -s 311 -d 310 -p tcp -e 1000 -i 340 -a 5 + -t 50.2158 -s 212 -d 211 -p tcp -e 1000 -i 356 -a 4 - -t 50.2158 -s 212 -d 211 -p tcp -e 1000 -i 356 -a 4 h -t 50.2158 -s 212 -d 211 -p tcp -e 1000 -i 356 -a 4 + -t 50.2176 -s 211 -d 210 -p tcp -e 1000 -i 356 -a 4 - -t 50.2176 -s 211 -d 210 -p tcp -e 1000 -i 356 -a 4 h -t 50.2176 -s 211 -d 210 -p tcp -e 1000 -i 356 -a 4 r -t 50.2178 -s 212 -d 211 -p tcp -e 1000 -i 356 -a 4 - -t 50.2198 -s 111 -d 110 -p tcp -e 1000 -i 376 -a 1 h -t 50.2198 -s 111 -d 110 -p tcp -e 1000 -i 376 -a 1 - -t 50.2298 -s 111 -d 110 -p tcp -e 1000 -i 377 -a 1 h -t 50.2298 -s 111 -d 110 -p tcp -e 1000 -i 377 -a 1 - -t 50.2398 -s 111 -d 110 -p tcp -e 1000 -i 378 -a 1 h -t 50.2398 -s 111 -d 110 -p tcp -e 1000 -i 378 -a 1 - -t 50.2498 -s 111 -d 110 -p tcp -e 1000 -i 379 -a 1 h -t 50.2498 -s 111 -d 110 -p tcp -e 1000 -i 379 -a 1 - -t 50.2598 -s 111 -d 110 -p tcp -e 1000 -i 380 -a 1 h -t 50.2598 -s 111 -d 110 -p tcp -e 1000 -i 380 -a 1 + -t 50.2599 -s 210 -d 207 -p tcp -e 1000 -i 351 -a 7 + -t 50.2599 -s 310 -d 307 -p tcp -e 1000 -i 335 -a 7 - -t 50.2599 -s 210 -d 207 -p tcp -e 1000 -i 351 -a 7 - -t 50.2599 -s 310 -d 307 -p tcp -e 1000 -i 335 -a 7 h -t 50.2599 -s 210 -d 207 -p tcp -e 1000 -i 351 -a 7 h -t 50.2599 -s 310 -d 307 -p tcp -e 1000 -i 335 -a 7 r -t 50.2599 -s 211 -d 210 -p tcp -e 1000 -i 351 -a 7 r -t 50.2599 -s 311 -d 310 -p tcp -e 1000 -i 335 -a 7 + -t 50.2604 -s 211 -d 212 -p ack -e 40 -i 354 -a 7 - -t 50.2604 -s 211 -d 212 -p ack -e 40 -i 354 -a 7 h -t 50.2604 -s 211 -d 212 -p ack -e 40 -i 354 -a 7 r -t 50.2604 -s 210 -d 211 -p ack -e 40 -i 354 -a 7 + -t 50.2614 -s 212 -d 211 -p tcp -e 1000 -i 357 -a 7 + -t 50.2614 -s 212 -d 211 -p tcp -e 1000 -i 358 -a 7 + -t 50.2614 -s 212 -d 211 -p tcp -e 1000 -i 359 -a 7 - -t 50.2614 -s 212 -d 211 -p tcp -e 1000 -i 357 -a 7 h -t 50.2614 -s 212 -d 211 -p tcp -e 1000 -i 357 -a 7 r -t 50.2614 -s 211 -d 212 -p ack -e 40 -i 354 -a 7 + -t 50.2617 -s 207 -d 210 -p ack -e 40 -i 360 -a 7 - -t 50.2617 -s 207 -d 210 -p ack -e 40 -i 360 -a 7 h -t 50.2617 -s 207 -d 210 -p ack -e 40 -i 360 -a 7 r -t 50.2619 -s 210 -d 207 -p tcp -e 1000 -i 351 -a 7 r -t 50.2619 -s 310 -d 307 -p tcp -e 1000 -i 335 -a 7 - -t 50.2622 -s 212 -d 211 -p tcp -e 1000 -i 358 -a 7 h -t 50.2622 -s 212 -d 211 -p tcp -e 1000 -i 358 -a 7 + -t 50.2627 -s 210 -d 211 -p ack -e 40 -i 360 -a 7 - -t 50.2627 -s 210 -d 211 -p ack -e 40 -i 360 -a 7 h -t 50.2627 -s 210 -d 211 -p ack -e 40 -i 360 -a 7 r -t 50.2627 -s 207 -d 210 -p ack -e 40 -i 360 -a 7 - -t 50.263 -s 212 -d 211 -p tcp -e 1000 -i 359 -a 7 h -t 50.263 -s 212 -d 211 -p tcp -e 1000 -i 359 -a 7 + -t 50.2632 -s 211 -d 210 -p tcp -e 1000 -i 357 -a 7 - -t 50.2632 -s 211 -d 210 -p tcp -e 1000 -i 357 -a 7 h -t 50.2632 -s 211 -d 210 -p tcp -e 1000 -i 357 -a 7 r -t 50.2634 -s 212 -d 211 -p tcp -e 1000 -i 357 -a 7 + -t 50.264 -s 211 -d 210 -p tcp -e 1000 -i 358 -a 7 r -t 50.2642 -s 212 -d 211 -p tcp -e 1000 -i 358 -a 7 + -t 50.2648 -s 211 -d 210 -p tcp -e 1000 -i 359 -a 7 r -t 50.265 -s 212 -d 211 -p tcp -e 1000 -i 359 -a 7 + -t 50.2675 -s 204 -d 210 -p ack -e 40 -i 361 -a 4 + -t 50.2675 -s 304 -d 310 -p ack -e 40 -i 341 -a 4 - -t 50.2675 -s 204 -d 210 -p ack -e 40 -i 361 -a 4 - -t 50.2675 -s 304 -d 310 -p ack -e 40 -i 341 -a 4 h -t 50.2675 -s 204 -d 210 -p ack -e 40 -i 361 -a 4 h -t 50.2675 -s 304 -d 310 -p ack -e 40 -i 341 -a 4 + -t 50.2685 -s 210 -d 211 -p ack -e 40 -i 361 -a 4 + -t 50.2685 -s 310 -d 311 -p ack -e 40 -i 341 -a 4 - -t 50.2685 -s 210 -d 211 -p ack -e 40 -i 361 -a 4 - -t 50.2685 -s 310 -d 311 -p ack -e 40 -i 341 -a 4 h -t 50.2685 -s 210 -d 211 -p ack -e 40 -i 361 -a 4 h -t 50.2685 -s 310 -d 311 -p ack -e 40 -i 341 -a 4 r -t 50.2685 -s 204 -d 210 -p ack -e 40 -i 361 -a 4 r -t 50.2685 -s 304 -d 310 -p ack -e 40 -i 341 -a 4 - -t 50.2698 -s 111 -d 110 -p tcp -e 1000 -i 381 -a 1 h -t 50.2698 -s 111 -d 110 -p tcp -e 1000 -i 381 -a 1 + -t 50.2699 -s 210 -d 207 -p tcp -e 1000 -i 352 -a 7 + -t 50.2699 -s 310 -d 307 -p tcp -e 1000 -i 336 -a 7 - -t 50.2699 -s 210 -d 207 -p tcp -e 1000 -i 352 -a 7 - -t 50.2699 -s 310 -d 307 -p tcp -e 1000 -i 336 -a 7 h -t 50.2699 -s 210 -d 207 -p tcp -e 1000 -i 352 -a 7 h -t 50.2699 -s 310 -d 307 -p tcp -e 1000 -i 336 -a 7 r -t 50.2699 -s 211 -d 210 -p tcp -e 1000 -i 352 -a 7 r -t 50.2699 -s 311 -d 310 -p tcp -e 1000 -i 336 -a 7 + -t 50.2717 -s 307 -d 310 -p ack -e 40 -i 342 -a 7 - -t 50.2717 -s 307 -d 310 -p ack -e 40 -i 342 -a 7 h -t 50.2717 -s 307 -d 310 -p ack -e 40 -i 342 -a 7 r -t 50.2719 -s 210 -d 207 -p tcp -e 1000 -i 352 -a 7 r -t 50.2719 -s 310 -d 307 -p tcp -e 1000 -i 336 -a 7 + -t 50.2727 -s 310 -d 311 -p ack -e 40 -i 342 -a 7 - -t 50.2727 -s 310 -d 311 -p ack -e 40 -i 342 -a 7 h -t 50.2727 -s 310 -d 311 -p ack -e 40 -i 342 -a 7 r -t 50.2727 -s 307 -d 310 -p ack -e 40 -i 342 -a 7 - -t 50.2732 -s 211 -d 210 -p tcp -e 1000 -i 358 -a 7 h -t 50.2732 -s 211 -d 210 -p tcp -e 1000 -i 358 -a 7 + -t 50.2789 -s 111 -d 112 -p ack -e 40 -i 371 -a 4 - -t 50.2789 -s 111 -d 112 -p ack -e 40 -i 371 -a 4 h -t 50.2789 -s 111 -d 112 -p ack -e 40 -i 371 -a 4 r -t 50.2789 -s 110 -d 111 -p ack -e 40 -i 371 -a 4 + -t 50.2799 -s 210 -d 207 -p tcp -e 1000 -i 353 -a 7 - -t 50.2799 -s 210 -d 207 -p tcp -e 1000 -i 353 -a 7 h -t 50.2799 -s 210 -d 207 -p tcp -e 1000 -i 353 -a 7 r -t 50.2799 -s 111 -d 112 -p ack -e 40 -i 371 -a 4 r -t 50.2799 -s 211 -d 210 -p tcp -e 1000 -i 353 -a 7 + -t 50.28 -s 112 -d 111 -p tcp -e 1000 -i 382 -a 4 + -t 50.28 -s 112 -d 111 -p tcp -e 1000 -i 383 -a 4 + -t 50.28 -s 112 -d 111 -p tcp -e 1000 -i 384 -a 4 - -t 50.28 -s 112 -d 111 -p tcp -e 1000 -i 382 -a 4 h -t 50.28 -s 112 -d 111 -p tcp -e 1000 -i 382 -a 4 - -t 50.2808 -s 112 -d 111 -p tcp -e 1000 -i 383 -a 4 h -t 50.2808 -s 112 -d 111 -p tcp -e 1000 -i 383 -a 4 - -t 50.2816 -s 112 -d 111 -p tcp -e 1000 -i 384 -a 4 h -t 50.2816 -s 112 -d 111 -p tcp -e 1000 -i 384 -a 4 + -t 50.2817 -s 207 -d 210 -p ack -e 40 -i 362 -a 7 - -t 50.2817 -s 207 -d 210 -p ack -e 40 -i 362 -a 7 h -t 50.2817 -s 207 -d 210 -p ack -e 40 -i 362 -a 7 + -t 50.2818 -s 111 -d 110 -p tcp -e 1000 -i 382 -a 4 - -t 50.2818 -s 111 -d 110 -p tcp -e 1000 -i 382 -a 4 h -t 50.2818 -s 111 -d 110 -p tcp -e 1000 -i 382 -a 4 r -t 50.2819 -s 210 -d 207 -p tcp -e 1000 -i 353 -a 7 r -t 50.282 -s 112 -d 111 -p tcp -e 1000 -i 382 -a 4 + -t 50.2826 -s 111 -d 110 -p tcp -e 1000 -i 383 -a 4 + -t 50.2827 -s 210 -d 211 -p ack -e 40 -i 362 -a 7 - -t 50.2827 -s 210 -d 211 -p ack -e 40 -i 362 -a 7 h -t 50.2827 -s 210 -d 211 -p ack -e 40 -i 362 -a 7 r -t 50.2827 -s 207 -d 210 -p ack -e 40 -i 362 -a 7 r -t 50.2828 -s 112 -d 111 -p tcp -e 1000 -i 383 -a 4 - -t 50.2832 -s 211 -d 210 -p tcp -e 1000 -i 359 -a 7 h -t 50.2832 -s 211 -d 210 -p tcp -e 1000 -i 359 -a 7 + -t 50.2834 -s 111 -d 110 -p tcp -e 1000 -i 384 -a 4 r -t 50.2836 -s 112 -d 111 -p tcp -e 1000 -i 384 -a 4 + -t 50.2875 -s 104 -d 110 -p ack -e 40 -i 385 -a 4 - -t 50.2875 -s 104 -d 110 -p ack -e 40 -i 385 -a 4 h -t 50.2875 -s 104 -d 110 -p ack -e 40 -i 385 -a 4 + -t 50.2885 -s 110 -d 111 -p ack -e 40 -i 385 -a 4 - -t 50.2885 -s 110 -d 111 -p ack -e 40 -i 385 -a 4 h -t 50.2885 -s 110 -d 111 -p ack -e 40 -i 385 -a 4 r -t 50.2885 -s 104 -d 110 -p ack -e 40 -i 385 -a 4 + -t 50.2898 -s 110 -d 101 -p tcp -e 1000 -i 372 -a 1 + -t 50.2898 -s 310 -d 301 -p tcp -e 1000 -i 337 -a 1 - -t 50.2898 -s 110 -d 101 -p tcp -e 1000 -i 372 -a 1 - -t 50.2898 -s 310 -d 301 -p tcp -e 1000 -i 337 -a 1 h -t 50.2898 -s 110 -d 101 -p tcp -e 1000 -i 372 -a 1 h -t 50.2898 -s 310 -d 301 -p tcp -e 1000 -i 337 -a 1 r -t 50.2898 -s 111 -d 110 -p tcp -e 1000 -i 372 -a 1 r -t 50.2898 -s 311 -d 310 -p tcp -e 1000 -i 337 -a 1 + -t 50.2899 -s 210 -d 201 -p tcp -e 1000 -i 355 -a 1 - -t 50.2899 -s 210 -d 201 -p tcp -e 1000 -i 355 -a 1 h -t 50.2899 -s 210 -d 201 -p tcp -e 1000 -i 355 -a 1 r -t 50.2899 -s 211 -d 210 -p tcp -e 1000 -i 355 -a 1 + -t 50.29 -s 212 -d 211 -p tcp -e 1000 -i 363 -a 1 - -t 50.29 -s 212 -d 211 -p tcp -e 1000 -i 363 -a 1 h -t 50.29 -s 212 -d 211 -p tcp -e 1000 -i 363 -a 1 + -t 50.2918 -s 211 -d 210 -p tcp -e 1000 -i 363 -a 1 - -t 50.2918 -s 111 -d 110 -p tcp -e 1000 -i 383 -a 4 h -t 50.2918 -s 111 -d 110 -p tcp -e 1000 -i 383 -a 4 r -t 50.2918 -s 110 -d 101 -p tcp -e 1000 -i 372 -a 1 r -t 50.2918 -s 310 -d 301 -p tcp -e 1000 -i 337 -a 1 r -t 50.2919 -s 210 -d 201 -p tcp -e 1000 -i 355 -a 1 r -t 50.292 -s 212 -d 211 -p tcp -e 1000 -i 363 -a 1 - -t 50.2932 -s 211 -d 210 -p tcp -e 1000 -i 363 -a 1 h -t 50.2932 -s 211 -d 210 -p tcp -e 1000 -i 363 -a 1 + -t 50.2998 -s 110 -d 101 -p tcp -e 1000 -i 373 -a 1 + -t 50.2998 -s 310 -d 305 -p tcp -e 1000 -i 338 -a 5 - -t 50.2998 -s 110 -d 101 -p tcp -e 1000 -i 373 -a 1 - -t 50.2998 -s 310 -d 305 -p tcp -e 1000 -i 338 -a 5 h -t 50.2998 -s 110 -d 101 -p tcp -e 1000 -i 373 -a 1 h -t 50.2998 -s 310 -d 305 -p tcp -e 1000 -i 338 -a 5 r -t 50.2998 -s 111 -d 110 -p tcp -e 1000 -i 373 -a 1 r -t 50.2998 -s 311 -d 310 -p tcp -e 1000 -i 338 -a 5 + -t 50.3016 -s 101 -d 110 -p ack -e 40 -i 386 -a 1 - -t 50.3016 -s 101 -d 110 -p ack -e 40 -i 386 -a 1 h -t 50.3016 -s 101 -d 110 -p ack -e 40 -i 386 -a 1 - -t 50.3018 -s 111 -d 110 -p tcp -e 1000 -i 384 -a 4 h -t 50.3018 -s 111 -d 110 -p tcp -e 1000 -i 384 -a 4 r -t 50.3018 -s 110 -d 101 -p tcp -e 1000 -i 373 -a 1 r -t 50.3018 -s 310 -d 305 -p tcp -e 1000 -i 338 -a 5 + -t 50.3026 -s 110 -d 111 -p ack -e 40 -i 386 -a 1 - -t 50.3026 -s 110 -d 111 -p ack -e 40 -i 386 -a 1 h -t 50.3026 -s 110 -d 111 -p ack -e 40 -i 386 -a 1 r -t 50.3026 -s 101 -d 110 -p ack -e 40 -i 386 -a 1 + -t 50.3078 -s 112 -d 111 -p tcp -e 1000 -i 387 -a 6 + -t 50.3078 -s 112 -d 111 -p tcp -e 1000 -i 388 -a 6 + -t 50.3078 -s 112 -d 111 -p tcp -e 1000 -i 389 -a 6 + -t 50.3078 -s 112 -d 111 -p tcp -e 1000 -i 390 -a 6 + -t 50.3078 -s 112 -d 111 -p tcp -e 1000 -i 391 -a 6 + -t 50.3078 -s 112 -d 111 -p tcp -e 1000 -i 392 -a 6 + -t 50.3078 -s 112 -d 111 -p tcp -e 1000 -i 393 -a 6 + -t 50.3078 -s 112 -d 111 -p tcp -e 1000 -i 394 -a 6 + -t 50.3078 -s 112 -d 111 -p tcp -e 1000 -i 395 -a 6 + -t 50.3078 -s 112 -d 111 -p tcp -e 1000 -i 396 -a 6 + -t 50.3078 -s 212 -d 211 -p tcp -e 1000 -i 364 -a 6 + -t 50.3078 -s 312 -d 311 -p tcp -e 1000 -i 343 -a 6 - -t 50.3078 -s 112 -d 111 -p tcp -e 1000 -i 387 -a 6 - -t 50.3078 -s 212 -d 211 -p tcp -e 1000 -i 364 -a 6 - -t 50.3078 -s 312 -d 311 -p tcp -e 1000 -i 343 -a 6 h -t 50.3078 -s 112 -d 111 -p tcp -e 1000 -i 387 -a 6 h -t 50.3078 -s 212 -d 211 -p tcp -e 1000 -i 364 -a 6 h -t 50.3078 -s 312 -d 311 -p tcp -e 1000 -i 343 -a 6 - -t 50.3086 -s 112 -d 111 -p tcp -e 1000 -i 388 -a 6 h -t 50.3086 -s 112 -d 111 -p tcp -e 1000 -i 388 -a 6 - -t 50.3094 -s 112 -d 111 -p tcp -e 1000 -i 389 -a 6 h -t 50.3094 -s 112 -d 111 -p tcp -e 1000 -i 389 -a 6 + -t 50.3096 -s 111 -d 110 -p tcp -e 1000 -i 387 -a 6 + -t 50.3096 -s 211 -d 210 -p tcp -e 1000 -i 364 -a 6 + -t 50.3096 -s 311 -d 310 -p tcp -e 1000 -i 343 -a 6 - -t 50.3096 -s 211 -d 210 -p tcp -e 1000 -i 364 -a 6 - -t 50.3096 -s 311 -d 310 -p tcp -e 1000 -i 343 -a 6 h -t 50.3096 -s 211 -d 210 -p tcp -e 1000 -i 364 -a 6 h -t 50.3096 -s 311 -d 310 -p tcp -e 1000 -i 343 -a 6 + -t 50.3098 -s 110 -d 101 -p tcp -e 1000 -i 374 -a 1 + -t 50.3098 -s 310 -d 305 -p tcp -e 1000 -i 339 -a 5 - -t 50.3098 -s 110 -d 101 -p tcp -e 1000 -i 374 -a 1 - -t 50.3098 -s 310 -d 305 -p tcp -e 1000 -i 339 -a 5 h -t 50.3098 -s 110 -d 101 -p tcp -e 1000 -i 374 -a 1 h -t 50.3098 -s 310 -d 305 -p tcp -e 1000 -i 339 -a 5 r -t 50.3098 -s 111 -d 110 -p tcp -e 1000 -i 374 -a 1 r -t 50.3098 -s 112 -d 111 -p tcp -e 1000 -i 387 -a 6 r -t 50.3098 -s 212 -d 211 -p tcp -e 1000 -i 364 -a 6 r -t 50.3098 -s 311 -d 310 -p tcp -e 1000 -i 339 -a 5 r -t 50.3098 -s 312 -d 311 -p tcp -e 1000 -i 343 -a 6 - -t 50.3102 -s 112 -d 111 -p tcp -e 1000 -i 390 -a 6 h -t 50.3102 -s 112 -d 111 -p tcp -e 1000 -i 390 -a 6 + -t 50.3104 -s 111 -d 110 -p tcp -e 1000 -i 388 -a 6 r -t 50.3106 -s 112 -d 111 -p tcp -e 1000 -i 388 -a 6 - -t 50.311 -s 112 -d 111 -p tcp -e 1000 -i 391 -a 6 h -t 50.311 -s 112 -d 111 -p tcp -e 1000 -i 391 -a 6 + -t 50.3112 -s 111 -d 110 -p tcp -e 1000 -i 389 -a 6 r -t 50.3114 -s 112 -d 111 -p tcp -e 1000 -i 389 -a 6 + -t 50.3116 -s 305 -d 310 -p ack -e 40 -i 344 -a 5 - -t 50.3116 -s 305 -d 310 -p ack -e 40 -i 344 -a 5 h -t 50.3116 -s 305 -d 310 -p ack -e 40 -i 344 -a 5 - -t 50.3118 -s 111 -d 110 -p tcp -e 1000 -i 387 -a 6 - -t 50.3118 -s 112 -d 111 -p tcp -e 1000 -i 392 -a 6 h -t 50.3118 -s 111 -d 110 -p tcp -e 1000 -i 387 -a 6 h -t 50.3118 -s 112 -d 111 -p tcp -e 1000 -i 392 -a 6 r -t 50.3118 -s 110 -d 101 -p tcp -e 1000 -i 374 -a 1 r -t 50.3118 -s 310 -d 305 -p tcp -e 1000 -i 339 -a 5 + -t 50.312 -s 111 -d 110 -p tcp -e 1000 -i 390 -a 6 r -t 50.3122 -s 112 -d 111 -p tcp -e 1000 -i 390 -a 6 + -t 50.3126 -s 310 -d 311 -p ack -e 40 -i 344 -a 5 - -t 50.3126 -s 112 -d 111 -p tcp -e 1000 -i 393 -a 6 - -t 50.3126 -s 310 -d 311 -p ack -e 40 -i 344 -a 5 h -t 50.3126 -s 112 -d 111 -p tcp -e 1000 -i 393 -a 6 h -t 50.3126 -s 310 -d 311 -p ack -e 40 -i 344 -a 5 r -t 50.3126 -s 305 -d 310 -p ack -e 40 -i 344 -a 5 + -t 50.3128 -s 111 -d 110 -p tcp -e 1000 -i 391 -a 6 r -t 50.313 -s 112 -d 111 -p tcp -e 1000 -i 391 -a 6 - -t 50.3134 -s 112 -d 111 -p tcp -e 1000 -i 394 -a 6 h -t 50.3134 -s 112 -d 111 -p tcp -e 1000 -i 394 -a 6 + -t 50.3136 -s 111 -d 110 -p tcp -e 1000 -i 392 -a 6 r -t 50.3138 -s 112 -d 111 -p tcp -e 1000 -i 392 -a 6 - -t 50.3142 -s 112 -d 111 -p tcp -e 1000 -i 395 -a 6 h -t 50.3142 -s 112 -d 111 -p tcp -e 1000 -i 395 -a 6 + -t 50.3144 -s 111 -d 110 -p tcp -e 1000 -i 393 -a 6 r -t 50.3146 -s 112 -d 111 -p tcp -e 1000 -i 393 -a 6 - -t 50.315 -s 112 -d 111 -p tcp -e 1000 -i 396 -a 6 h -t 50.315 -s 112 -d 111 -p tcp -e 1000 -i 396 -a 6 + -t 50.3152 -s 111 -d 110 -p tcp -e 1000 -i 394 -a 6 r -t 50.3154 -s 112 -d 111 -p tcp -e 1000 -i 394 -a 6 + -t 50.316 -s 111 -d 110 -p tcp -e 1000 -i 395 -a 6 r -t 50.3162 -s 112 -d 111 -p tcp -e 1000 -i 395 -a 6 + -t 50.3168 -s 111 -d 110 -p tcp -e 1000 -i 396 -a 6 r -t 50.317 -s 112 -d 111 -p tcp -e 1000 -i 396 -a 6 + -t 50.3198 -s 110 -d 101 -p tcp -e 1000 -i 375 -a 1 + -t 50.3198 -s 310 -d 305 -p tcp -e 1000 -i 340 -a 5 - -t 50.3198 -s 110 -d 101 -p tcp -e 1000 -i 375 -a 1 - -t 50.3198 -s 310 -d 305 -p tcp -e 1000 -i 340 -a 5 h -t 50.3198 -s 110 -d 101 -p tcp -e 1000 -i 375 -a 1 h -t 50.3198 -s 310 -d 305 -p tcp -e 1000 -i 340 -a 5 r -t 50.3198 -s 111 -d 110 -p tcp -e 1000 -i 375 -a 1 r -t 50.3198 -s 311 -d 310 -p tcp -e 1000 -i 340 -a 5 + -t 50.3216 -s 101 -d 110 -p ack -e 40 -i 397 -a 1 - -t 50.3216 -s 101 -d 110 -p ack -e 40 -i 397 -a 1 h -t 50.3216 -s 101 -d 110 -p ack -e 40 -i 397 -a 1 - -t 50.3218 -s 111 -d 110 -p tcp -e 1000 -i 388 -a 6 h -t 50.3218 -s 111 -d 110 -p tcp -e 1000 -i 388 -a 6 r -t 50.3218 -s 110 -d 101 -p tcp -e 1000 -i 375 -a 1 r -t 50.3218 -s 310 -d 305 -p tcp -e 1000 -i 340 -a 5 + -t 50.3226 -s 110 -d 111 -p ack -e 40 -i 397 -a 1 - -t 50.3226 -s 110 -d 111 -p ack -e 40 -i 397 -a 1 h -t 50.3226 -s 110 -d 111 -p ack -e 40 -i 397 -a 1 r -t 50.3226 -s 101 -d 110 -p ack -e 40 -i 397 -a 1 + -t 50.3276 -s 210 -d 204 -p tcp -e 1000 -i 356 -a 4 - -t 50.3276 -s 210 -d 204 -p tcp -e 1000 -i 356 -a 4 h -t 50.3276 -s 210 -d 204 -p tcp -e 1000 -i 356 -a 4 r -t 50.3276 -s 211 -d 210 -p tcp -e 1000 -i 356 -a 4 r -t 50.3296 -s 210 -d 204 -p tcp -e 1000 -i 356 -a 4 + -t 50.3298 -s 110 -d 101 -p tcp -e 1000 -i 376 -a 1 - -t 50.3298 -s 110 -d 101 -p tcp -e 1000 -i 376 -a 1 h -t 50.3298 -s 110 -d 101 -p tcp -e 1000 -i 376 -a 1 r -t 50.3298 -s 111 -d 110 -p tcp -e 1000 -i 376 -a 1 - -t 50.3318 -s 111 -d 110 -p tcp -e 1000 -i 389 -a 6 h -t 50.3318 -s 111 -d 110 -p tcp -e 1000 -i 389 -a 6 r -t 50.3318 -s 110 -d 101 -p tcp -e 1000 -i 376 -a 1 + -t 50.3398 -s 110 -d 101 -p tcp -e 1000 -i 377 -a 1 - -t 50.3398 -s 110 -d 101 -p tcp -e 1000 -i 377 -a 1 h -t 50.3398 -s 110 -d 101 -p tcp -e 1000 -i 377 -a 1 r -t 50.3398 -s 111 -d 110 -p tcp -e 1000 -i 377 -a 1 + -t 50.3416 -s 101 -d 110 -p ack -e 40 -i 398 -a 1 - -t 50.3416 -s 101 -d 110 -p ack -e 40 -i 398 -a 1 h -t 50.3416 -s 101 -d 110 -p ack -e 40 -i 398 -a 1 - -t 50.3418 -s 111 -d 110 -p tcp -e 1000 -i 390 -a 6 h -t 50.3418 -s 111 -d 110 -p tcp -e 1000 -i 390 -a 6 r -t 50.3418 -s 110 -d 101 -p tcp -e 1000 -i 377 -a 1 + -t 50.3426 -s 110 -d 111 -p ack -e 40 -i 398 -a 1 - -t 50.3426 -s 110 -d 111 -p ack -e 40 -i 398 -a 1 h -t 50.3426 -s 110 -d 111 -p ack -e 40 -i 398 -a 1 r -t 50.3426 -s 101 -d 110 -p ack -e 40 -i 398 -a 1 + -t 50.3498 -s 110 -d 101 -p tcp -e 1000 -i 378 -a 1 - -t 50.3498 -s 110 -d 101 -p tcp -e 1000 -i 378 -a 1 h -t 50.3498 -s 110 -d 101 -p tcp -e 1000 -i 378 -a 1 r -t 50.3498 -s 111 -d 110 -p tcp -e 1000 -i 378 -a 1 - -t 50.3518 -s 111 -d 110 -p tcp -e 1000 -i 391 -a 6 h -t 50.3518 -s 111 -d 110 -p tcp -e 1000 -i 391 -a 6 r -t 50.3518 -s 110 -d 101 -p tcp -e 1000 -i 378 -a 1 + -t 50.3598 -s 110 -d 101 -p tcp -e 1000 -i 379 -a 1 - -t 50.3598 -s 110 -d 101 -p tcp -e 1000 -i 379 -a 1 h -t 50.3598 -s 110 -d 101 -p tcp -e 1000 -i 379 -a 1 r -t 50.3598 -s 111 -d 110 -p tcp -e 1000 -i 379 -a 1 + -t 50.3616 -s 101 -d 110 -p ack -e 40 -i 399 -a 1 - -t 50.3616 -s 101 -d 110 -p ack -e 40 -i 399 -a 1 h -t 50.3616 -s 101 -d 110 -p ack -e 40 -i 399 -a 1 - -t 50.3618 -s 111 -d 110 -p tcp -e 1000 -i 392 -a 6 h -t 50.3618 -s 111 -d 110 -p tcp -e 1000 -i 392 -a 6 r -t 50.3618 -s 110 -d 101 -p tcp -e 1000 -i 379 -a 1 + -t 50.3626 -s 110 -d 111 -p ack -e 40 -i 399 -a 1 - -t 50.3626 -s 110 -d 111 -p ack -e 40 -i 399 -a 1 h -t 50.3626 -s 110 -d 111 -p ack -e 40 -i 399 -a 1 r -t 50.3626 -s 101 -d 110 -p ack -e 40 -i 399 -a 1 + -t 50.3631 -s 211 -d 212 -p ack -e 40 -i 360 -a 7 - -t 50.3631 -s 211 -d 212 -p ack -e 40 -i 360 -a 7 h -t 50.3631 -s 211 -d 212 -p ack -e 40 -i 360 -a 7 r -t 50.3631 -s 210 -d 211 -p ack -e 40 -i 360 -a 7 + -t 50.3641 -s 212 -d 211 -p tcp -e 1000 -i 365 -a 7 - -t 50.3641 -s 212 -d 211 -p tcp -e 1000 -i 365 -a 7 h -t 50.3641 -s 212 -d 211 -p tcp -e 1000 -i 365 -a 7 r -t 50.3641 -s 211 -d 212 -p ack -e 40 -i 360 -a 7 + -t 50.3659 -s 211 -d 210 -p tcp -e 1000 -i 365 -a 7 - -t 50.3659 -s 211 -d 210 -p tcp -e 1000 -i 365 -a 7 h -t 50.3659 -s 211 -d 210 -p tcp -e 1000 -i 365 -a 7 r -t 50.3661 -s 212 -d 211 -p tcp -e 1000 -i 365 -a 7 + -t 50.3689 -s 211 -d 212 -p ack -e 40 -i 361 -a 4 + -t 50.3689 -s 311 -d 312 -p ack -e 40 -i 341 -a 4 - -t 50.3689 -s 211 -d 212 -p ack -e 40 -i 361 -a 4 - -t 50.3689 -s 311 -d 312 -p ack -e 40 -i 341 -a 4 h -t 50.3689 -s 211 -d 212 -p ack -e 40 -i 361 -a 4 h -t 50.3689 -s 311 -d 312 -p ack -e 40 -i 341 -a 4 r -t 50.3689 -s 210 -d 211 -p ack -e 40 -i 361 -a 4 r -t 50.3689 -s 310 -d 311 -p ack -e 40 -i 341 -a 4 + -t 50.3698 -s 110 -d 101 -p tcp -e 1000 -i 380 -a 1 - -t 50.3698 -s 110 -d 101 -p tcp -e 1000 -i 380 -a 1 h -t 50.3698 -s 110 -d 101 -p tcp -e 1000 -i 380 -a 1 r -t 50.3698 -s 111 -d 110 -p tcp -e 1000 -i 380 -a 1 r -t 50.3699 -s 211 -d 212 -p ack -e 40 -i 361 -a 4 r -t 50.3699 -s 311 -d 312 -p ack -e 40 -i 341 -a 4 + -t 50.37 -s 212 -d 211 -p tcp -e 1000 -i 366 -a 4 + -t 50.37 -s 212 -d 211 -p tcp -e 1000 -i 367 -a 4 + -t 50.37 -s 212 -d 211 -p tcp -e 1000 -i 368 -a 4 + -t 50.37 -s 312 -d 311 -p tcp -e 1000 -i 345 -a 4 + -t 50.37 -s 312 -d 311 -p tcp -e 1000 -i 346 -a 4 - -t 50.37 -s 212 -d 211 -p tcp -e 1000 -i 366 -a 4 - -t 50.37 -s 312 -d 311 -p tcp -e 1000 -i 345 -a 4 h -t 50.37 -s 212 -d 211 -p tcp -e 1000 -i 366 -a 4 h -t 50.37 -s 312 -d 311 -p tcp -e 1000 -i 345 -a 4 - -t 50.3708 -s 212 -d 211 -p tcp -e 1000 -i 367 -a 4 - -t 50.3708 -s 312 -d 311 -p tcp -e 1000 -i 346 -a 4 h -t 50.3708 -s 212 -d 211 -p tcp -e 1000 -i 367 -a 4 h -t 50.3708 -s 312 -d 311 -p tcp -e 1000 -i 346 -a 4 - -t 50.3716 -s 212 -d 211 -p tcp -e 1000 -i 368 -a 4 h -t 50.3716 -s 212 -d 211 -p tcp -e 1000 -i 368 -a 4 + -t 50.3718 -s 211 -d 210 -p tcp -e 1000 -i 366 -a 4 + -t 50.3718 -s 311 -d 310 -p tcp -e 1000 -i 345 -a 4 - -t 50.3718 -s 111 -d 110 -p tcp -e 1000 -i 393 -a 6 - -t 50.3718 -s 311 -d 310 -p tcp -e 1000 -i 345 -a 4 h -t 50.3718 -s 111 -d 110 -p tcp -e 1000 -i 393 -a 6 h -t 50.3718 -s 311 -d 310 -p tcp -e 1000 -i 345 -a 4 r -t 50.3718 -s 110 -d 101 -p tcp -e 1000 -i 380 -a 1 r -t 50.372 -s 212 -d 211 -p tcp -e 1000 -i 366 -a 4 r -t 50.372 -s 312 -d 311 -p tcp -e 1000 -i 345 -a 4 + -t 50.3726 -s 211 -d 210 -p tcp -e 1000 -i 367 -a 4 + -t 50.3726 -s 311 -d 310 -p tcp -e 1000 -i 346 -a 4 r -t 50.3728 -s 212 -d 211 -p tcp -e 1000 -i 367 -a 4 r -t 50.3728 -s 312 -d 311 -p tcp -e 1000 -i 346 -a 4 + -t 50.3731 -s 311 -d 312 -p ack -e 40 -i 342 -a 7 - -t 50.3731 -s 311 -d 312 -p ack -e 40 -i 342 -a 7 h -t 50.3731 -s 311 -d 312 -p ack -e 40 -i 342 -a 7 r -t 50.3731 -s 310 -d 311 -p ack -e 40 -i 342 -a 7 + -t 50.3732 -s 210 -d 207 -p tcp -e 1000 -i 357 -a 7 - -t 50.3732 -s 210 -d 207 -p tcp -e 1000 -i 357 -a 7 h -t 50.3732 -s 210 -d 207 -p tcp -e 1000 -i 357 -a 7 r -t 50.3732 -s 211 -d 210 -p tcp -e 1000 -i 357 -a 7 + -t 50.3734 -s 211 -d 210 -p tcp -e 1000 -i 368 -a 4 + -t 50.3736 -s 112 -d 111 -p tcp -e 1000 -i 400 -a 0 + -t 50.3736 -s 112 -d 111 -p tcp -e 1000 -i 401 -a 0 + -t 50.3736 -s 112 -d 111 -p tcp -e 1000 -i 402 -a 0 + -t 50.3736 -s 112 -d 111 -p tcp -e 1000 -i 403 -a 0 + -t 50.3736 -s 112 -d 111 -p tcp -e 1000 -i 404 -a 0 + -t 50.3736 -s 112 -d 111 -p tcp -e 1000 -i 405 -a 0 + -t 50.3736 -s 112 -d 111 -p tcp -e 1000 -i 406 -a 0 + -t 50.3736 -s 112 -d 111 -p tcp -e 1000 -i 407 -a 0 + -t 50.3736 -s 112 -d 111 -p tcp -e 1000 -i 408 -a 0 + -t 50.3736 -s 112 -d 111 -p tcp -e 1000 -i 409 -a 0 + -t 50.3736 -s 212 -d 211 -p tcp -e 1000 -i 369 -a 0 + -t 50.3736 -s 312 -d 311 -p tcp -e 1000 -i 347 -a 0 - -t 50.3736 -s 112 -d 111 -p tcp -e 1000 -i 400 -a 0 - -t 50.3736 -s 212 -d 211 -p tcp -e 1000 -i 369 -a 0 - -t 50.3736 -s 312 -d 311 -p tcp -e 1000 -i 347 -a 0 h -t 50.3736 -s 112 -d 111 -p tcp -e 1000 -i 400 -a 0 h -t 50.3736 -s 212 -d 211 -p tcp -e 1000 -i 369 -a 0 h -t 50.3736 -s 312 -d 311 -p tcp -e 1000 -i 347 -a 0 r -t 50.3736 -s 212 -d 211 -p tcp -e 1000 -i 368 -a 4 + -t 50.3741 -s 312 -d 311 -p tcp -e 1000 -i 348 -a 7 + -t 50.3741 -s 312 -d 311 -p tcp -e 1000 -i 349 -a 7 r -t 50.3741 -s 311 -d 312 -p ack -e 40 -i 342 -a 7 - -t 50.3744 -s 112 -d 111 -p tcp -e 1000 -i 401 -a 0 - -t 50.3744 -s 312 -d 311 -p tcp -e 1000 -i 348 -a 7 h -t 50.3744 -s 112 -d 111 -p tcp -e 1000 -i 401 -a 0 h -t 50.3744 -s 312 -d 311 -p tcp -e 1000 -i 348 -a 7 - -t 50.3752 -s 112 -d 111 -p tcp -e 1000 -i 402 -a 0 - -t 50.3752 -s 312 -d 311 -p tcp -e 1000 -i 349 -a 7 h -t 50.3752 -s 112 -d 111 -p tcp -e 1000 -i 402 -a 0 h -t 50.3752 -s 312 -d 311 -p tcp -e 1000 -i 349 -a 7 r -t 50.3752 -s 210 -d 207 -p tcp -e 1000 -i 357 -a 7 + -t 50.3754 -s 111 -d 110 -p tcp -e 1000 -i 400 -a 0 + -t 50.3754 -s 211 -d 210 -p tcp -e 1000 -i 369 -a 0 + -t 50.3754 -s 311 -d 310 -p tcp -e 1000 -i 347 -a 0 r -t 50.3756 -s 112 -d 111 -p tcp -e 1000 -i 400 -a 0 r -t 50.3756 -s 212 -d 211 -p tcp -e 1000 -i 369 -a 0 r -t 50.3756 -s 312 -d 311 -p tcp -e 1000 -i 347 -a 0 - -t 50.3759 -s 211 -d 210 -p tcp -e 1000 -i 366 -a 4 h -t 50.3759 -s 211 -d 210 -p tcp -e 1000 -i 366 -a 4 - -t 50.376 -s 112 -d 111 -p tcp -e 1000 -i 403 -a 0 h -t 50.376 -s 112 -d 111 -p tcp -e 1000 -i 403 -a 0 + -t 50.3762 -s 111 -d 110 -p tcp -e 1000 -i 401 -a 0 + -t 50.3762 -s 311 -d 310 -p tcp -e 1000 -i 348 -a 7 r -t 50.3764 -s 112 -d 111 -p tcp -e 1000 -i 401 -a 0 r -t 50.3764 -s 312 -d 311 -p tcp -e 1000 -i 348 -a 7 - -t 50.3768 -s 112 -d 111 -p tcp -e 1000 -i 404 -a 0 h -t 50.3768 -s 112 -d 111 -p tcp -e 1000 -i 404 -a 0 + -t 50.377 -s 111 -d 110 -p tcp -e 1000 -i 402 -a 0 + -t 50.377 -s 311 -d 310 -p tcp -e 1000 -i 349 -a 7 r -t 50.3772 -s 112 -d 111 -p tcp -e 1000 -i 402 -a 0 r -t 50.3772 -s 312 -d 311 -p tcp -e 1000 -i 349 -a 7 - -t 50.3776 -s 112 -d 111 -p tcp -e 1000 -i 405 -a 0 h -t 50.3776 -s 112 -d 111 -p tcp -e 1000 -i 405 -a 0 + -t 50.3778 -s 111 -d 110 -p tcp -e 1000 -i 403 -a 0 r -t 50.378 -s 112 -d 111 -p tcp -e 1000 -i 403 -a 0 - -t 50.3784 -s 112 -d 111 -p tcp -e 1000 -i 406 -a 0 h -t 50.3784 -s 112 -d 111 -p tcp -e 1000 -i 406 -a 0 + -t 50.3786 -s 111 -d 110 -p tcp -e 1000 -i 404 -a 0 r -t 50.3788 -s 112 -d 111 -p tcp -e 1000 -i 404 -a 0 - -t 50.3792 -s 112 -d 111 -p tcp -e 1000 -i 407 -a 0 h -t 50.3792 -s 112 -d 111 -p tcp -e 1000 -i 407 -a 0 + -t 50.3794 -s 111 -d 110 -p tcp -e 1000 -i 405 -a 0 r -t 50.3796 -s 112 -d 111 -p tcp -e 1000 -i 405 -a 0 + -t 50.3798 -s 110 -d 101 -p tcp -e 1000 -i 381 -a 1 - -t 50.3798 -s 110 -d 101 -p tcp -e 1000 -i 381 -a 1 h -t 50.3798 -s 110 -d 101 -p tcp -e 1000 -i 381 -a 1 r -t 50.3798 -s 111 -d 110 -p tcp -e 1000 -i 381 -a 1 - -t 50.38 -s 112 -d 111 -p tcp -e 1000 -i 408 -a 0 h -t 50.38 -s 112 -d 111 -p tcp -e 1000 -i 408 -a 0 + -t 50.3802 -s 111 -d 110 -p tcp -e 1000 -i 406 -a 0 d -t 50.3802 -s 111 -d 110 -p tcp -e 1000 -i 406 -a 0 - -t 50.3808 -s 112 -d 111 -p tcp -e 1000 -i 409 -a 0 h -t 50.3808 -s 112 -d 111 -p tcp -e 1000 -i 409 -a 0 + -t 50.381 -s 111 -d 110 -p tcp -e 1000 -i 407 -a 0 d -t 50.381 -s 111 -d 110 -p tcp -e 1000 -i 407 -a 0 + -t 50.3816 -s 101 -d 110 -p ack -e 40 -i 410 -a 1 - -t 50.3816 -s 101 -d 110 -p ack -e 40 -i 410 -a 1 h -t 50.3816 -s 101 -d 110 -p ack -e 40 -i 410 -a 1 + -t 50.3818 -s 111 -d 110 -p tcp -e 1000 -i 408 -a 0 - -t 50.3818 -s 111 -d 110 -p tcp -e 1000 -i 394 -a 6 - -t 50.3818 -s 311 -d 310 -p tcp -e 1000 -i 346 -a 4 h -t 50.3818 -s 111 -d 110 -p tcp -e 1000 -i 394 -a 6 h -t 50.3818 -s 311 -d 310 -p tcp -e 1000 -i 346 -a 4 r -t 50.3818 -s 110 -d 101 -p tcp -e 1000 -i 381 -a 1 r -t 50.382 -s 112 -d 111 -p tcp -e 1000 -i 408 -a 0 + -t 50.3826 -s 110 -d 111 -p ack -e 40 -i 410 -a 1 + -t 50.3826 -s 111 -d 110 -p tcp -e 1000 -i 409 -a 0 - -t 50.3826 -s 110 -d 111 -p ack -e 40 -i 410 -a 1 d -t 50.3826 -s 111 -d 110 -p tcp -e 1000 -i 409 -a 0 h -t 50.3826 -s 110 -d 111 -p ack -e 40 -i 410 -a 1 r -t 50.3826 -s 101 -d 110 -p ack -e 40 -i 410 -a 1 + -t 50.3831 -s 211 -d 212 -p ack -e 40 -i 362 -a 7 - -t 50.3831 -s 211 -d 212 -p ack -e 40 -i 362 -a 7 h -t 50.3831 -s 211 -d 212 -p ack -e 40 -i 362 -a 7 r -t 50.3831 -s 210 -d 211 -p ack -e 40 -i 362 -a 7 + -t 50.3832 -s 210 -d 207 -p tcp -e 1000 -i 358 -a 7 - -t 50.3832 -s 210 -d 207 -p tcp -e 1000 -i 358 -a 7 h -t 50.3832 -s 210 -d 207 -p tcp -e 1000 -i 358 -a 7 r -t 50.3832 -s 211 -d 210 -p tcp -e 1000 -i 358 -a 7 r -t 50.3841 -s 211 -d 212 -p ack -e 40 -i 362 -a 7 + -t 50.385 -s 207 -d 210 -p ack -e 40 -i 370 -a 7 - -t 50.385 -s 207 -d 210 -p ack -e 40 -i 370 -a 7 h -t 50.385 -s 207 -d 210 -p ack -e 40 -i 370 -a 7 r -t 50.3852 -s 210 -d 207 -p tcp -e 1000 -i 358 -a 7 - -t 50.3859 -s 211 -d 210 -p tcp -e 1000 -i 367 -a 4 h -t 50.3859 -s 211 -d 210 -p tcp -e 1000 -i 367 -a 4 + -t 50.386 -s 210 -d 211 -p ack -e 40 -i 370 -a 7 - -t 50.386 -s 210 -d 211 -p ack -e 40 -i 370 -a 7 h -t 50.386 -s 210 -d 211 -p ack -e 40 -i 370 -a 7 r -t 50.386 -s 207 -d 210 -p ack -e 40 -i 370 -a 7 + -t 50.3889 -s 111 -d 112 -p ack -e 40 -i 385 -a 4 - -t 50.3889 -s 111 -d 112 -p ack -e 40 -i 385 -a 4 h -t 50.3889 -s 111 -d 112 -p ack -e 40 -i 385 -a 4 r -t 50.3889 -s 110 -d 111 -p ack -e 40 -i 385 -a 4 r -t 50.3899 -s 111 -d 112 -p ack -e 40 -i 385 -a 4 + -t 50.39 -s 112 -d 111 -p tcp -e 1000 -i 411 -a 4 + -t 50.39 -s 112 -d 111 -p tcp -e 1000 -i 412 -a 4 - -t 50.39 -s 112 -d 111 -p tcp -e 1000 -i 411 -a 4 h -t 50.39 -s 112 -d 111 -p tcp -e 1000 -i 411 -a 4 - -t 50.3908 -s 112 -d 111 -p tcp -e 1000 -i 412 -a 4 h -t 50.3908 -s 112 -d 111 -p tcp -e 1000 -i 412 -a 4 + -t 50.3916 -s 301 -d 310 -p ack -e 40 -i 350 -a 1 - -t 50.3916 -s 301 -d 310 -p ack -e 40 -i 350 -a 1 h -t 50.3916 -s 301 -d 310 -p ack -e 40 -i 350 -a 1 + -t 50.3917 -s 201 -d 210 -p ack -e 40 -i 371 -a 1 - -t 50.3917 -s 201 -d 210 -p ack -e 40 -i 371 -a 1 h -t 50.3917 -s 201 -d 210 -p ack -e 40 -i 371 -a 1 + -t 50.3918 -s 110 -d 104 -p tcp -e 1000 -i 382 -a 4 + -t 50.3918 -s 111 -d 110 -p tcp -e 1000 -i 411 -a 4 - -t 50.3918 -s 110 -d 104 -p tcp -e 1000 -i 382 -a 4 - -t 50.3918 -s 111 -d 110 -p tcp -e 1000 -i 395 -a 6 - -t 50.3918 -s 311 -d 310 -p tcp -e 1000 -i 347 -a 0 h -t 50.3918 -s 110 -d 104 -p tcp -e 1000 -i 382 -a 4 h -t 50.3918 -s 111 -d 110 -p tcp -e 1000 -i 395 -a 6 h -t 50.3918 -s 311 -d 310 -p tcp -e 1000 -i 347 -a 0 r -t 50.3918 -s 111 -d 110 -p tcp -e 1000 -i 382 -a 4 r -t 50.392 -s 112 -d 111 -p tcp -e 1000 -i 411 -a 4 + -t 50.3926 -s 111 -d 110 -p tcp -e 1000 -i 412 -a 4 + -t 50.3926 -s 310 -d 311 -p ack -e 40 -i 350 -a 1 - -t 50.3926 -s 310 -d 311 -p ack -e 40 -i 350 -a 1 d -t 50.3926 -s 111 -d 110 -p tcp -e 1000 -i 412 -a 4 h -t 50.3926 -s 310 -d 311 -p ack -e 40 -i 350 -a 1 r -t 50.3926 -s 301 -d 310 -p ack -e 40 -i 350 -a 1 + -t 50.3927 -s 210 -d 211 -p ack -e 40 -i 371 -a 1 - -t 50.3927 -s 210 -d 211 -p ack -e 40 -i 371 -a 1 h -t 50.3927 -s 210 -d 211 -p ack -e 40 -i 371 -a 1 r -t 50.3927 -s 201 -d 210 -p ack -e 40 -i 371 -a 1 + -t 50.3932 -s 210 -d 207 -p tcp -e 1000 -i 359 -a 7 - -t 50.3932 -s 210 -d 207 -p tcp -e 1000 -i 359 -a 7 h -t 50.3932 -s 210 -d 207 -p tcp -e 1000 -i 359 -a 7 r -t 50.3932 -s 211 -d 210 -p tcp -e 1000 -i 359 -a 7 r -t 50.3938 -s 110 -d 104 -p tcp -e 1000 -i 382 -a 4 r -t 50.3952 -s 210 -d 207 -p tcp -e 1000 -i 359 -a 7 - -t 50.3959 -s 211 -d 210 -p tcp -e 1000 -i 368 -a 4 h -t 50.3959 -s 211 -d 210 -p tcp -e 1000 -i 368 -a 4 + -t 50.4018 -s 110 -d 104 -p tcp -e 1000 -i 383 -a 4 - -t 50.4018 -s 110 -d 104 -p tcp -e 1000 -i 383 -a 4 - -t 50.4018 -s 111 -d 110 -p tcp -e 1000 -i 396 -a 6 - -t 50.4018 -s 311 -d 310 -p tcp -e 1000 -i 348 -a 7 h -t 50.4018 -s 110 -d 104 -p tcp -e 1000 -i 383 -a 4 h -t 50.4018 -s 111 -d 110 -p tcp -e 1000 -i 396 -a 6 h -t 50.4018 -s 311 -d 310 -p tcp -e 1000 -i 348 -a 7 r -t 50.4018 -s 111 -d 110 -p tcp -e 1000 -i 383 -a 4 + -t 50.402 -s 212 -d 211 -p tcp -e 1000 -i 372 -a 1 - -t 50.402 -s 212 -d 211 -p tcp -e 1000 -i 372 -a 1 h -t 50.402 -s 212 -d 211 -p tcp -e 1000 -i 372 -a 1 + -t 50.4024 -s 112 -d 111 -p tcp -e 1000 -i 413 -a 8 + -t 50.4024 -s 112 -d 111 -p tcp -e 1000 -i 414 -a 8 + -t 50.4024 -s 212 -d 211 -p tcp -e 1000 -i 373 -a 8 + -t 50.4024 -s 312 -d 311 -p tcp -e 1000 -i 351 -a 8 - -t 50.4024 -s 112 -d 111 -p tcp -e 1000 -i 413 -a 8 - -t 50.4024 -s 312 -d 311 -p tcp -e 1000 -i 351 -a 8 h -t 50.4024 -s 112 -d 111 -p tcp -e 1000 -i 413 -a 8 h -t 50.4024 -s 312 -d 311 -p tcp -e 1000 -i 351 -a 8 - -t 50.4028 -s 212 -d 211 -p tcp -e 1000 -i 373 -a 8 h -t 50.4028 -s 212 -d 211 -p tcp -e 1000 -i 373 -a 8 + -t 50.403 -s 111 -d 112 -p ack -e 40 -i 386 -a 1 - -t 50.403 -s 111 -d 112 -p ack -e 40 -i 386 -a 1 h -t 50.403 -s 111 -d 112 -p ack -e 40 -i 386 -a 1 r -t 50.403 -s 110 -d 111 -p ack -e 40 -i 386 -a 1 + -t 50.4032 -s 210 -d 201 -p tcp -e 1000 -i 363 -a 1 - -t 50.4032 -s 112 -d 111 -p tcp -e 1000 -i 414 -a 8 - -t 50.4032 -s 210 -d 201 -p tcp -e 1000 -i 363 -a 1 h -t 50.4032 -s 112 -d 111 -p tcp -e 1000 -i 414 -a 8 h -t 50.4032 -s 210 -d 201 -p tcp -e 1000 -i 363 -a 1 r -t 50.4032 -s 211 -d 210 -p tcp -e 1000 -i 363 -a 1 + -t 50.4036 -s 104 -d 110 -p ack -e 40 -i 415 -a 4 - -t 50.4036 -s 104 -d 110 -p ack -e 40 -i 415 -a 4 h -t 50.4036 -s 104 -d 110 -p ack -e 40 -i 415 -a 4 + -t 50.4038 -s 211 -d 210 -p tcp -e 1000 -i 372 -a 1 r -t 50.4038 -s 110 -d 104 -p tcp -e 1000 -i 383 -a 4 r -t 50.404 -s 111 -d 112 -p ack -e 40 -i 386 -a 1 r -t 50.404 -s 212 -d 211 -p tcp -e 1000 -i 372 -a 1 + -t 50.4042 -s 111 -d 110 -p tcp -e 1000 -i 413 -a 8 + -t 50.4042 -s 311 -d 310 -p tcp -e 1000 -i 351 -a 8 r -t 50.4044 -s 112 -d 111 -p tcp -e 1000 -i 413 -a 8 r -t 50.4044 -s 312 -d 311 -p tcp -e 1000 -i 351 -a 8 + -t 50.4046 -s 110 -d 111 -p ack -e 40 -i 415 -a 4 + -t 50.4046 -s 211 -d 210 -p tcp -e 1000 -i 373 -a 8 - -t 50.4046 -s 110 -d 111 -p ack -e 40 -i 415 -a 4 h -t 50.4046 -s 110 -d 111 -p ack -e 40 -i 415 -a 4 r -t 50.4046 -s 104 -d 110 -p ack -e 40 -i 415 -a 4 r -t 50.4048 -s 212 -d 211 -p tcp -e 1000 -i 373 -a 8 + -t 50.405 -s 111 -d 110 -p tcp -e 1000 -i 414 -a 8 d -t 50.405 -s 111 -d 110 -p tcp -e 1000 -i 414 -a 8 r -t 50.4052 -s 210 -d 201 -p tcp -e 1000 -i 363 -a 1 - -t 50.4059 -s 211 -d 210 -p tcp -e 1000 -i 369 -a 0 h -t 50.4059 -s 211 -d 210 -p tcp -e 1000 -i 369 -a 0 + -t 50.4118 -s 110 -d 104 -p tcp -e 1000 -i 384 -a 4 - -t 50.4118 -s 110 -d 104 -p tcp -e 1000 -i 384 -a 4 - -t 50.4118 -s 111 -d 110 -p tcp -e 1000 -i 400 -a 0 - -t 50.4118 -s 311 -d 310 -p tcp -e 1000 -i 349 -a 7 h -t 50.4118 -s 110 -d 104 -p tcp -e 1000 -i 384 -a 4 h -t 50.4118 -s 111 -d 110 -p tcp -e 1000 -i 400 -a 0 h -t 50.4118 -s 311 -d 310 -p tcp -e 1000 -i 349 -a 7 r -t 50.4118 -s 111 -d 110 -p tcp -e 1000 -i 384 -a 4 + -t 50.413 -s 311 -d 312 -p ack -e 40 -i 344 -a 5 - -t 50.413 -s 311 -d 312 -p ack -e 40 -i 344 -a 5 h -t 50.413 -s 311 -d 312 -p ack -e 40 -i 344 -a 5 r -t 50.413 -s 310 -d 311 -p ack -e 40 -i 344 -a 5 r -t 50.4138 -s 110 -d 104 -p tcp -e 1000 -i 384 -a 4 r -t 50.414 -s 311 -d 312 -p ack -e 40 -i 344 -a 5 - -t 50.4159 -s 211 -d 210 -p tcp -e 1000 -i 372 -a 1 h -t 50.4159 -s 211 -d 210 -p tcp -e 1000 -i 372 -a 1 + -t 50.4196 -s 210 -d 206 -p tcp -e 1000 -i 364 -a 6 + -t 50.4196 -s 310 -d 306 -p tcp -e 1000 -i 343 -a 6 - -t 50.4196 -s 210 -d 206 -p tcp -e 1000 -i 364 -a 6 - -t 50.4196 -s 310 -d 306 -p tcp -e 1000 -i 343 -a 6 h -t 50.4196 -s 210 -d 206 -p tcp -e 1000 -i 364 -a 6 h -t 50.4196 -s 310 -d 306 -p tcp -e 1000 -i 343 -a 6 r -t 50.4196 -s 211 -d 210 -p tcp -e 1000 -i 364 -a 6 r -t 50.4196 -s 311 -d 310 -p tcp -e 1000 -i 343 -a 6 + -t 50.4216 -s 305 -d 310 -p ack -e 40 -i 352 -a 5 - -t 50.4216 -s 305 -d 310 -p ack -e 40 -i 352 -a 5 h -t 50.4216 -s 305 -d 310 -p ack -e 40 -i 352 -a 5 r -t 50.4216 -s 210 -d 206 -p tcp -e 1000 -i 364 -a 6 r -t 50.4216 -s 310 -d 306 -p tcp -e 1000 -i 343 -a 6 + -t 50.4218 -s 110 -d 106 -p tcp -e 1000 -i 387 -a 6 - -t 50.4218 -s 110 -d 106 -p tcp -e 1000 -i 387 -a 6 - -t 50.4218 -s 111 -d 110 -p tcp -e 1000 -i 401 -a 0 - -t 50.4218 -s 311 -d 310 -p tcp -e 1000 -i 351 -a 8 h -t 50.4218 -s 110 -d 106 -p tcp -e 1000 -i 387 -a 6 h -t 50.4218 -s 111 -d 110 -p tcp -e 1000 -i 401 -a 0 h -t 50.4218 -s 311 -d 310 -p tcp -e 1000 -i 351 -a 8 r -t 50.4218 -s 111 -d 110 -p tcp -e 1000 -i 387 -a 6 + -t 50.4226 -s 310 -d 311 -p ack -e 40 -i 352 -a 5 - -t 50.4226 -s 310 -d 311 -p ack -e 40 -i 352 -a 5 h -t 50.4226 -s 310 -d 311 -p ack -e 40 -i 352 -a 5 r -t 50.4226 -s 305 -d 310 -p ack -e 40 -i 352 -a 5 + -t 50.423 -s 111 -d 112 -p ack -e 40 -i 397 -a 1 - -t 50.423 -s 111 -d 112 -p ack -e 40 -i 397 -a 1 h -t 50.423 -s 111 -d 112 -p ack -e 40 -i 397 -a 1 r -t 50.423 -s 110 -d 111 -p ack -e 40 -i 397 -a 1 + -t 50.4238 -s 212 -d 211 -p tcp -e 1000 -i 374 -a 6 - -t 50.4238 -s 212 -d 211 -p tcp -e 1000 -i 374 -a 6 h -t 50.4238 -s 212 -d 211 -p tcp -e 1000 -i 374 -a 6 r -t 50.4238 -s 110 -d 106 -p tcp -e 1000 -i 387 -a 6 r -t 50.424 -s 111 -d 112 -p ack -e 40 -i 397 -a 1 + -t 50.4256 -s 211 -d 210 -p tcp -e 1000 -i 374 -a 6 r -t 50.4258 -s 212 -d 211 -p tcp -e 1000 -i 374 -a 6 - -t 50.4259 -s 211 -d 210 -p tcp -e 1000 -i 373 -a 8 h -t 50.4259 -s 211 -d 210 -p tcp -e 1000 -i 373 -a 8 + -t 50.4294 -s 204 -d 210 -p ack -e 40 -i 375 -a 4 - -t 50.4294 -s 204 -d 210 -p ack -e 40 -i 375 -a 4 h -t 50.4294 -s 204 -d 210 -p ack -e 40 -i 375 -a 4 + -t 50.4304 -s 210 -d 211 -p ack -e 40 -i 375 -a 4 - -t 50.4304 -s 210 -d 211 -p ack -e 40 -i 375 -a 4 h -t 50.4304 -s 210 -d 211 -p ack -e 40 -i 375 -a 4 r -t 50.4304 -s 204 -d 210 -p ack -e 40 -i 375 -a 4 + -t 50.4318 -s 110 -d 106 -p tcp -e 1000 -i 388 -a 6 - -t 50.4318 -s 110 -d 106 -p tcp -e 1000 -i 388 -a 6 - -t 50.4318 -s 111 -d 110 -p tcp -e 1000 -i 402 -a 0 h -t 50.4318 -s 110 -d 106 -p tcp -e 1000 -i 388 -a 6 h -t 50.4318 -s 111 -d 110 -p tcp -e 1000 -i 402 -a 0 r -t 50.4318 -s 111 -d 110 -p tcp -e 1000 -i 388 -a 6 + -t 50.4336 -s 106 -d 110 -p ack -e 40 -i 416 -a 6 - -t 50.4336 -s 106 -d 110 -p ack -e 40 -i 416 -a 6 h -t 50.4336 -s 106 -d 110 -p ack -e 40 -i 416 -a 6 r -t 50.4338 -s 110 -d 106 -p tcp -e 1000 -i 388 -a 6 + -t 50.4346 -s 110 -d 111 -p ack -e 40 -i 416 -a 6 - -t 50.4346 -s 110 -d 111 -p ack -e 40 -i 416 -a 6 h -t 50.4346 -s 110 -d 111 -p ack -e 40 -i 416 -a 6 r -t 50.4346 -s 106 -d 110 -p ack -e 40 -i 416 -a 6 - -t 50.4359 -s 211 -d 210 -p tcp -e 1000 -i 374 -a 6 h -t 50.4359 -s 211 -d 210 -p tcp -e 1000 -i 374 -a 6 + -t 50.4418 -s 110 -d 106 -p tcp -e 1000 -i 389 -a 6 - -t 50.4418 -s 110 -d 106 -p tcp -e 1000 -i 389 -a 6 - -t 50.4418 -s 111 -d 110 -p tcp -e 1000 -i 403 -a 0 h -t 50.4418 -s 110 -d 106 -p tcp -e 1000 -i 389 -a 6 h -t 50.4418 -s 111 -d 110 -p tcp -e 1000 -i 403 -a 0 r -t 50.4418 -s 111 -d 110 -p tcp -e 1000 -i 389 -a 6 + -t 50.443 -s 111 -d 112 -p ack -e 40 -i 398 -a 1 - -t 50.443 -s 111 -d 112 -p ack -e 40 -i 398 -a 1 h -t 50.443 -s 111 -d 112 -p ack -e 40 -i 398 -a 1 r -t 50.443 -s 110 -d 111 -p ack -e 40 -i 398 -a 1 r -t 50.4438 -s 110 -d 106 -p tcp -e 1000 -i 389 -a 6 r -t 50.444 -s 111 -d 112 -p ack -e 40 -i 398 -a 1 + -t 50.4518 -s 110 -d 106 -p tcp -e 1000 -i 390 -a 6 - -t 50.4518 -s 110 -d 106 -p tcp -e 1000 -i 390 -a 6 - -t 50.4518 -s 111 -d 110 -p tcp -e 1000 -i 404 -a 0 h -t 50.4518 -s 110 -d 106 -p tcp -e 1000 -i 390 -a 6 h -t 50.4518 -s 111 -d 110 -p tcp -e 1000 -i 404 -a 0 r -t 50.4518 -s 111 -d 110 -p tcp -e 1000 -i 390 -a 6 + -t 50.4536 -s 106 -d 110 -p ack -e 40 -i 417 -a 6 - -t 50.4536 -s 106 -d 110 -p ack -e 40 -i 417 -a 6 h -t 50.4536 -s 106 -d 110 -p ack -e 40 -i 417 -a 6 r -t 50.4538 -s 110 -d 106 -p tcp -e 1000 -i 390 -a 6 + -t 50.4546 -s 110 -d 111 -p ack -e 40 -i 417 -a 6 - -t 50.4546 -s 110 -d 111 -p ack -e 40 -i 417 -a 6 h -t 50.4546 -s 110 -d 111 -p ack -e 40 -i 417 -a 6 r -t 50.4546 -s 106 -d 110 -p ack -e 40 -i 417 -a 6 + -t 50.4618 -s 110 -d 106 -p tcp -e 1000 -i 391 -a 6 - -t 50.4618 -s 110 -d 106 -p tcp -e 1000 -i 391 -a 6 - -t 50.4618 -s 111 -d 110 -p tcp -e 1000 -i 405 -a 0 h -t 50.4618 -s 110 -d 106 -p tcp -e 1000 -i 391 -a 6 h -t 50.4618 -s 111 -d 110 -p tcp -e 1000 -i 405 -a 0 r -t 50.4618 -s 111 -d 110 -p tcp -e 1000 -i 391 -a 6 + -t 50.463 -s 111 -d 112 -p ack -e 40 -i 399 -a 1 - -t 50.463 -s 111 -d 112 -p ack -e 40 -i 399 -a 1 h -t 50.463 -s 111 -d 112 -p ack -e 40 -i 399 -a 1 r -t 50.463 -s 110 -d 111 -p ack -e 40 -i 399 -a 1 r -t 50.4638 -s 110 -d 106 -p tcp -e 1000 -i 391 -a 6 r -t 50.464 -s 111 -d 112 -p ack -e 40 -i 399 -a 1 + -t 50.4718 -s 110 -d 106 -p tcp -e 1000 -i 392 -a 6 - -t 50.4718 -s 110 -d 106 -p tcp -e 1000 -i 392 -a 6 - -t 50.4718 -s 111 -d 110 -p tcp -e 1000 -i 408 -a 0 h -t 50.4718 -s 110 -d 106 -p tcp -e 1000 -i 392 -a 6 h -t 50.4718 -s 111 -d 110 -p tcp -e 1000 -i 408 -a 0 r -t 50.4718 -s 111 -d 110 -p tcp -e 1000 -i 392 -a 6 + -t 50.4736 -s 106 -d 110 -p ack -e 40 -i 418 -a 6 - -t 50.4736 -s 106 -d 110 -p ack -e 40 -i 418 -a 6 h -t 50.4736 -s 106 -d 110 -p ack -e 40 -i 418 -a 6 r -t 50.4738 -s 110 -d 106 -p tcp -e 1000 -i 392 -a 6 + -t 50.4746 -s 110 -d 111 -p ack -e 40 -i 418 -a 6 - -t 50.4746 -s 110 -d 111 -p ack -e 40 -i 418 -a 6 h -t 50.4746 -s 110 -d 111 -p ack -e 40 -i 418 -a 6 r -t 50.4746 -s 106 -d 110 -p ack -e 40 -i 418 -a 6 + -t 50.4759 -s 210 -d 207 -p tcp -e 1000 -i 365 -a 7 - -t 50.4759 -s 210 -d 207 -p tcp -e 1000 -i 365 -a 7 h -t 50.4759 -s 210 -d 207 -p tcp -e 1000 -i 365 -a 7 r -t 50.4759 -s 211 -d 210 -p tcp -e 1000 -i 365 -a 7 + -t 50.4777 -s 207 -d 210 -p ack -e 40 -i 376 -a 7 - -t 50.4777 -s 207 -d 210 -p ack -e 40 -i 376 -a 7 h -t 50.4777 -s 207 -d 210 -p ack -e 40 -i 376 -a 7 r -t 50.4779 -s 210 -d 207 -p tcp -e 1000 -i 365 -a 7 r -t 50.4787 -s 207 -d 210 -p ack -e 40 -i 376 -a 7 + -t 50.4788 -s 210 -d 211 -p ack -e 40 -i 376 -a 7 - -t 50.4788 -s 210 -d 211 -p ack -e 40 -i 376 -a 7 h -t 50.4788 -s 210 -d 211 -p ack -e 40 -i 376 -a 7 + -t 50.4818 -s 110 -d 106 -p tcp -e 1000 -i 393 -a 6 + -t 50.4818 -s 310 -d 304 -p tcp -e 1000 -i 345 -a 4 - -t 50.4818 -s 110 -d 106 -p tcp -e 1000 -i 393 -a 6 - -t 50.4818 -s 111 -d 110 -p tcp -e 1000 -i 411 -a 4 - -t 50.4818 -s 310 -d 304 -p tcp -e 1000 -i 345 -a 4 h -t 50.4818 -s 110 -d 106 -p tcp -e 1000 -i 393 -a 6 h -t 50.4818 -s 111 -d 110 -p tcp -e 1000 -i 411 -a 4 h -t 50.4818 -s 310 -d 304 -p tcp -e 1000 -i 345 -a 4 r -t 50.4818 -s 111 -d 110 -p tcp -e 1000 -i 393 -a 6 r -t 50.4818 -s 311 -d 310 -p tcp -e 1000 -i 345 -a 4 + -t 50.483 -s 111 -d 112 -p ack -e 40 -i 410 -a 1 - -t 50.483 -s 111 -d 112 -p ack -e 40 -i 410 -a 1 h -t 50.483 -s 111 -d 112 -p ack -e 40 -i 410 -a 1 r -t 50.483 -s 110 -d 111 -p ack -e 40 -i 410 -a 1 r -t 50.4838 -s 110 -d 106 -p tcp -e 1000 -i 393 -a 6 r -t 50.4838 -s 310 -d 304 -p tcp -e 1000 -i 345 -a 4 r -t 50.484 -s 111 -d 112 -p ack -e 40 -i 410 -a 1 + -t 50.4859 -s 210 -d 204 -p tcp -e 1000 -i 366 -a 4 - -t 50.4859 -s 210 -d 204 -p tcp -e 1000 -i 366 -a 4 h -t 50.4859 -s 210 -d 204 -p tcp -e 1000 -i 366 -a 4 r -t 50.4859 -s 211 -d 210 -p tcp -e 1000 -i 366 -a 4 + -t 50.4864 -s 211 -d 212 -p ack -e 40 -i 370 -a 7 - -t 50.4864 -s 211 -d 212 -p ack -e 40 -i 370 -a 7 h -t 50.4864 -s 211 -d 212 -p ack -e 40 -i 370 -a 7 r -t 50.4864 -s 210 -d 211 -p ack -e 40 -i 370 -a 7 + -t 50.4874 -s 212 -d 211 -p tcp -e 1000 -i 377 -a 0 - -t 50.4874 -s 212 -d 211 -p tcp -e 1000 -i 377 -a 0 h -t 50.4874 -s 212 -d 211 -p tcp -e 1000 -i 377 -a 0 r -t 50.4874 -s 211 -d 212 -p ack -e 40 -i 370 -a 7 r -t 50.4879 -s 210 -d 204 -p tcp -e 1000 -i 366 -a 4 + -t 50.4892 -s 211 -d 210 -p tcp -e 1000 -i 377 -a 0 - -t 50.4892 -s 211 -d 210 -p tcp -e 1000 -i 377 -a 0 h -t 50.4892 -s 211 -d 210 -p tcp -e 1000 -i 377 -a 0 r -t 50.4894 -s 212 -d 211 -p tcp -e 1000 -i 377 -a 0 + -t 50.4918 -s 110 -d 106 -p tcp -e 1000 -i 394 -a 6 + -t 50.4918 -s 310 -d 304 -p tcp -e 1000 -i 346 -a 4 - -t 50.4918 -s 110 -d 106 -p tcp -e 1000 -i 394 -a 6 - -t 50.4918 -s 111 -d 110 -p tcp -e 1000 -i 413 -a 8 - -t 50.4918 -s 310 -d 304 -p tcp -e 1000 -i 346 -a 4 h -t 50.4918 -s 110 -d 106 -p tcp -e 1000 -i 394 -a 6 h -t 50.4918 -s 111 -d 110 -p tcp -e 1000 -i 413 -a 8 h -t 50.4918 -s 310 -d 304 -p tcp -e 1000 -i 346 -a 4 r -t 50.4918 -s 111 -d 110 -p tcp -e 1000 -i 394 -a 6 r -t 50.4918 -s 311 -d 310 -p tcp -e 1000 -i 346 -a 4 + -t 50.493 -s 311 -d 312 -p ack -e 40 -i 350 -a 1 - -t 50.493 -s 311 -d 312 -p ack -e 40 -i 350 -a 1 h -t 50.493 -s 311 -d 312 -p ack -e 40 -i 350 -a 1 r -t 50.493 -s 310 -d 311 -p ack -e 40 -i 350 -a 1 + -t 50.4931 -s 211 -d 212 -p ack -e 40 -i 371 -a 1 - -t 50.4931 -s 211 -d 212 -p ack -e 40 -i 371 -a 1 h -t 50.4931 -s 211 -d 212 -p ack -e 40 -i 371 -a 1 r -t 50.4931 -s 210 -d 211 -p ack -e 40 -i 371 -a 1 + -t 50.4936 -s 106 -d 110 -p ack -e 40 -i 419 -a 6 + -t 50.4936 -s 304 -d 310 -p ack -e 40 -i 353 -a 4 - -t 50.4936 -s 106 -d 110 -p ack -e 40 -i 419 -a 6 - -t 50.4936 -s 304 -d 310 -p ack -e 40 -i 353 -a 4 h -t 50.4936 -s 106 -d 110 -p ack -e 40 -i 419 -a 6 h -t 50.4936 -s 304 -d 310 -p ack -e 40 -i 353 -a 4 r -t 50.4938 -s 110 -d 106 -p tcp -e 1000 -i 394 -a 6 r -t 50.4938 -s 310 -d 304 -p tcp -e 1000 -i 346 -a 4 r -t 50.494 -s 311 -d 312 -p ack -e 40 -i 350 -a 1 + -t 50.4941 -s 212 -d 211 -p tcp -e 1000 -i 378 -a 1 + -t 50.4941 -s 212 -d 211 -p tcp -e 1000 -i 379 -a 1 + -t 50.4941 -s 212 -d 211 -p tcp -e 1000 -i 380 -a 1 + -t 50.4941 -s 312 -d 311 -p tcp -e 1000 -i 354 -a 1 + -t 50.4941 -s 312 -d 311 -p tcp -e 1000 -i 355 -a 1 - -t 50.4941 -s 212 -d 211 -p tcp -e 1000 -i 378 -a 1 - -t 50.4941 -s 312 -d 311 -p tcp -e 1000 -i 354 -a 1 h -t 50.4941 -s 212 -d 211 -p tcp -e 1000 -i 378 -a 1 h -t 50.4941 -s 312 -d 311 -p tcp -e 1000 -i 354 -a 1 r -t 50.4941 -s 211 -d 212 -p ack -e 40 -i 371 -a 1 + -t 50.4946 -s 110 -d 111 -p ack -e 40 -i 419 -a 6 + -t 50.4946 -s 310 -d 311 -p ack -e 40 -i 353 -a 4 - -t 50.4946 -s 110 -d 111 -p ack -e 40 -i 419 -a 6 - -t 50.4946 -s 310 -d 311 -p ack -e 40 -i 353 -a 4 h -t 50.4946 -s 110 -d 111 -p ack -e 40 -i 419 -a 6 h -t 50.4946 -s 310 -d 311 -p ack -e 40 -i 353 -a 4 r -t 50.4946 -s 106 -d 110 -p ack -e 40 -i 419 -a 6 r -t 50.4946 -s 304 -d 310 -p ack -e 40 -i 353 -a 4 - -t 50.4949 -s 212 -d 211 -p tcp -e 1000 -i 379 -a 1 - -t 50.4949 -s 312 -d 311 -p tcp -e 1000 -i 355 -a 1 h -t 50.4949 -s 212 -d 211 -p tcp -e 1000 -i 379 -a 1 h -t 50.4949 -s 312 -d 311 -p tcp -e 1000 -i 355 -a 1 - -t 50.4957 -s 212 -d 211 -p tcp -e 1000 -i 380 -a 1 h -t 50.4957 -s 212 -d 211 -p tcp -e 1000 -i 380 -a 1 + -t 50.4959 -s 210 -d 204 -p tcp -e 1000 -i 367 -a 4 + -t 50.4959 -s 211 -d 210 -p tcp -e 1000 -i 378 -a 1 + -t 50.4959 -s 311 -d 310 -p tcp -e 1000 -i 354 -a 1 - -t 50.4959 -s 210 -d 204 -p tcp -e 1000 -i 367 -a 4 - -t 50.4959 -s 311 -d 310 -p tcp -e 1000 -i 354 -a 1 h -t 50.4959 -s 210 -d 204 -p tcp -e 1000 -i 367 -a 4 h -t 50.4959 -s 311 -d 310 -p tcp -e 1000 -i 354 -a 1 r -t 50.4959 -s 211 -d 210 -p tcp -e 1000 -i 367 -a 4 r -t 50.4961 -s 212 -d 211 -p tcp -e 1000 -i 378 -a 1 r -t 50.4961 -s 312 -d 311 -p tcp -e 1000 -i 354 -a 1 + -t 50.4967 -s 211 -d 210 -p tcp -e 1000 -i 379 -a 1 + -t 50.4967 -s 311 -d 310 -p tcp -e 1000 -i 355 -a 1 r -t 50.4969 -s 212 -d 211 -p tcp -e 1000 -i 379 -a 1 r -t 50.4969 -s 312 -d 311 -p tcp -e 1000 -i 355 -a 1 + -t 50.4975 -s 211 -d 210 -p tcp -e 1000 -i 380 -a 1 + -t 50.4977 -s 204 -d 210 -p ack -e 40 -i 381 -a 4 - -t 50.4977 -s 204 -d 210 -p ack -e 40 -i 381 -a 4 h -t 50.4977 -s 204 -d 210 -p ack -e 40 -i 381 -a 4 r -t 50.4977 -s 212 -d 211 -p tcp -e 1000 -i 380 -a 1 r -t 50.4979 -s 210 -d 204 -p tcp -e 1000 -i 367 -a 4 r -t 50.4987 -s 204 -d 210 -p ack -e 40 -i 381 -a 4 + -t 50.4988 -s 210 -d 211 -p ack -e 40 -i 381 -a 4 - -t 50.4988 -s 210 -d 211 -p ack -e 40 -i 381 -a 4 h -t 50.4988 -s 210 -d 211 -p ack -e 40 -i 381 -a 4 - -t 50.4992 -s 211 -d 210 -p tcp -e 1000 -i 378 -a 1 h -t 50.4992 -s 211 -d 210 -p tcp -e 1000 -i 378 -a 1 + -t 50.5018 -s 110 -d 106 -p tcp -e 1000 -i 395 -a 6 + -t 50.5018 -s 310 -d 300 -p tcp -e 1000 -i 347 -a 0 - -t 50.5018 -s 110 -d 106 -p tcp -e 1000 -i 395 -a 6 - -t 50.5018 -s 310 -d 300 -p tcp -e 1000 -i 347 -a 0 h -t 50.5018 -s 110 -d 106 -p tcp -e 1000 -i 395 -a 6 h -t 50.5018 -s 310 -d 300 -p tcp -e 1000 -i 347 -a 0 r -t 50.5018 -s 111 -d 110 -p tcp -e 1000 -i 395 -a 6 r -t 50.5018 -s 311 -d 310 -p tcp -e 1000 -i 347 -a 0 r -t 50.5038 -s 110 -d 106 -p tcp -e 1000 -i 395 -a 6 r -t 50.5038 -s 310 -d 300 -p tcp -e 1000 -i 347 -a 0 + -t 50.505 -s 111 -d 112 -p ack -e 40 -i 415 -a 4 + -t 50.505 -s 201 -d 210 -p ack -e 40 -i 382 -a 1 - -t 50.505 -s 111 -d 112 -p ack -e 40 -i 415 -a 4 - -t 50.505 -s 201 -d 210 -p ack -e 40 -i 382 -a 1 h -t 50.505 -s 111 -d 112 -p ack -e 40 -i 415 -a 4 h -t 50.505 -s 201 -d 210 -p ack -e 40 -i 382 -a 1 r -t 50.505 -s 110 -d 111 -p ack -e 40 -i 415 -a 4 + -t 50.5059 -s 210 -d 204 -p tcp -e 1000 -i 368 -a 4 - -t 50.5059 -s 210 -d 204 -p tcp -e 1000 -i 368 -a 4 - -t 50.5059 -s 311 -d 310 -p tcp -e 1000 -i 355 -a 1 h -t 50.5059 -s 210 -d 204 -p tcp -e 1000 -i 368 -a 4 h -t 50.5059 -s 311 -d 310 -p tcp -e 1000 -i 355 -a 1 r -t 50.5059 -s 211 -d 210 -p tcp -e 1000 -i 368 -a 4 + -t 50.506 -s 112 -d 111 -p tcp -e 1000 -i 420 -a 4 + -t 50.506 -s 112 -d 111 -p tcp -e 1000 -i 421 -a 4 + -t 50.506 -s 210 -d 211 -p ack -e 40 -i 382 -a 1 - -t 50.506 -s 112 -d 111 -p tcp -e 1000 -i 420 -a 4 - -t 50.506 -s 210 -d 211 -p ack -e 40 -i 382 -a 1 h -t 50.506 -s 112 -d 111 -p tcp -e 1000 -i 420 -a 4 h -t 50.506 -s 210 -d 211 -p ack -e 40 -i 382 -a 1 r -t 50.506 -s 111 -d 112 -p ack -e 40 -i 415 -a 4 r -t 50.506 -s 201 -d 210 -p ack -e 40 -i 382 -a 1 - -t 50.5068 -s 112 -d 111 -p tcp -e 1000 -i 421 -a 4 h -t 50.5068 -s 112 -d 111 -p tcp -e 1000 -i 421 -a 4 + -t 50.5078 -s 111 -d 110 -p tcp -e 1000 -i 420 -a 4 - -t 50.5078 -s 111 -d 110 -p tcp -e 1000 -i 420 -a 4 h -t 50.5078 -s 111 -d 110 -p tcp -e 1000 -i 420 -a 4 r -t 50.5079 -s 210 -d 204 -p tcp -e 1000 -i 368 -a 4 r -t 50.508 -s 112 -d 111 -p tcp -e 1000 -i 420 -a 4 + -t 50.5086 -s 111 -d 110 -p tcp -e 1000 -i 421 -a 4 r -t 50.5088 -s 112 -d 111 -p tcp -e 1000 -i 421 -a 4 - -t 50.5092 -s 211 -d 210 -p tcp -e 1000 -i 379 -a 1 h -t 50.5092 -s 211 -d 210 -p tcp -e 1000 -i 379 -a 1 + -t 50.5118 -s 110 -d 106 -p tcp -e 1000 -i 396 -a 6 + -t 50.5118 -s 310 -d 307 -p tcp -e 1000 -i 348 -a 7 - -t 50.5118 -s 110 -d 106 -p tcp -e 1000 -i 396 -a 6 - -t 50.5118 -s 310 -d 307 -p tcp -e 1000 -i 348 -a 7 h -t 50.5118 -s 110 -d 106 -p tcp -e 1000 -i 396 -a 6 h -t 50.5118 -s 310 -d 307 -p tcp -e 1000 -i 348 -a 7 r -t 50.5118 -s 111 -d 110 -p tcp -e 1000 -i 396 -a 6 r -t 50.5118 -s 311 -d 310 -p tcp -e 1000 -i 348 -a 7 + -t 50.5136 -s 104 -d 110 -p ack -e 40 -i 423 -a 4 + -t 50.5136 -s 106 -d 110 -p ack -e 40 -i 422 -a 6 - -t 50.5136 -s 104 -d 110 -p ack -e 40 -i 423 -a 4 - -t 50.5136 -s 106 -d 110 -p ack -e 40 -i 422 -a 6 h -t 50.5136 -s 104 -d 110 -p ack -e 40 -i 423 -a 4 h -t 50.5136 -s 106 -d 110 -p ack -e 40 -i 422 -a 6 r -t 50.5138 -s 110 -d 106 -p tcp -e 1000 -i 396 -a 6 r -t 50.5138 -s 310 -d 307 -p tcp -e 1000 -i 348 -a 7 + -t 50.5146 -s 110 -d 111 -p ack -e 40 -i 422 -a 6 + -t 50.5146 -s 110 -d 111 -p ack -e 40 -i 423 -a 4 - -t 50.5146 -s 110 -d 111 -p ack -e 40 -i 422 -a 6 h -t 50.5146 -s 110 -d 111 -p ack -e 40 -i 422 -a 6 r -t 50.5146 -s 104 -d 110 -p ack -e 40 -i 423 -a 4 r -t 50.5146 -s 106 -d 110 -p ack -e 40 -i 422 -a 6 - -t 50.515 -s 110 -d 111 -p ack -e 40 -i 423 -a 4 h -t 50.515 -s 110 -d 111 -p ack -e 40 -i 423 -a 4 + -t 50.5159 -s 210 -d 200 -p tcp -e 1000 -i 369 -a 0 - -t 50.5159 -s 210 -d 200 -p tcp -e 1000 -i 369 -a 0 h -t 50.5159 -s 210 -d 200 -p tcp -e 1000 -i 369 -a 0 r -t 50.5159 -s 211 -d 210 -p tcp -e 1000 -i 369 -a 0 - -t 50.5178 -s 111 -d 110 -p tcp -e 1000 -i 421 -a 4 h -t 50.5178 -s 111 -d 110 -p tcp -e 1000 -i 421 -a 4 r -t 50.5179 -s 210 -d 200 -p tcp -e 1000 -i 369 -a 0 - -t 50.5192 -s 211 -d 210 -p tcp -e 1000 -i 380 -a 1 h -t 50.5192 -s 211 -d 210 -p tcp -e 1000 -i 380 -a 1 + -t 50.5214 -s 206 -d 210 -p ack -e 40 -i 383 -a 6 + -t 50.5214 -s 306 -d 310 -p ack -e 40 -i 356 -a 6 - -t 50.5214 -s 206 -d 210 -p ack -e 40 -i 383 -a 6 - -t 50.5214 -s 306 -d 310 -p ack -e 40 -i 356 -a 6 h -t 50.5214 -s 206 -d 210 -p ack -e 40 -i 383 -a 6 h -t 50.5214 -s 306 -d 310 -p ack -e 40 -i 356 -a 6 + -t 50.5218 -s 110 -d 100 -p tcp -e 1000 -i 400 -a 0 + -t 50.5218 -s 310 -d 307 -p tcp -e 1000 -i 349 -a 7 - -t 50.5218 -s 110 -d 100 -p tcp -e 1000 -i 400 -a 0 - -t 50.5218 -s 310 -d 307 -p tcp -e 1000 -i 349 -a 7 h -t 50.5218 -s 110 -d 100 -p tcp -e 1000 -i 400 -a 0 h -t 50.5218 -s 310 -d 307 -p tcp -e 1000 -i 349 -a 7 r -t 50.5218 -s 111 -d 110 -p tcp -e 1000 -i 400 -a 0 r -t 50.5218 -s 311 -d 310 -p tcp -e 1000 -i 349 -a 7 + -t 50.5224 -s 210 -d 211 -p ack -e 40 -i 383 -a 6 + -t 50.5224 -s 310 -d 311 -p ack -e 40 -i 356 -a 6 - -t 50.5224 -s 210 -d 211 -p ack -e 40 -i 383 -a 6 - -t 50.5224 -s 310 -d 311 -p ack -e 40 -i 356 -a 6 h -t 50.5224 -s 210 -d 211 -p ack -e 40 -i 383 -a 6 h -t 50.5224 -s 310 -d 311 -p ack -e 40 -i 356 -a 6 r -t 50.5224 -s 206 -d 210 -p ack -e 40 -i 383 -a 6 r -t 50.5224 -s 306 -d 310 -p ack -e 40 -i 356 -a 6 + -t 50.523 -s 311 -d 312 -p ack -e 40 -i 352 -a 5 - -t 50.523 -s 311 -d 312 -p ack -e 40 -i 352 -a 5 h -t 50.523 -s 311 -d 312 -p ack -e 40 -i 352 -a 5 r -t 50.523 -s 310 -d 311 -p ack -e 40 -i 352 -a 5 + -t 50.5236 -s 307 -d 310 -p ack -e 40 -i 357 -a 7 - -t 50.5236 -s 307 -d 310 -p ack -e 40 -i 357 -a 7 h -t 50.5236 -s 307 -d 310 -p ack -e 40 -i 357 -a 7 r -t 50.5238 -s 110 -d 100 -p tcp -e 1000 -i 400 -a 0 r -t 50.5238 -s 310 -d 307 -p tcp -e 1000 -i 349 -a 7 r -t 50.524 -s 311 -d 312 -p ack -e 40 -i 352 -a 5 + -t 50.5246 -s 310 -d 311 -p ack -e 40 -i 357 -a 7 - -t 50.5246 -s 310 -d 311 -p ack -e 40 -i 357 -a 7 h -t 50.5246 -s 310 -d 311 -p ack -e 40 -i 357 -a 7 r -t 50.5246 -s 307 -d 310 -p ack -e 40 -i 357 -a 7 + -t 50.5259 -s 210 -d 201 -p tcp -e 1000 -i 372 -a 1 - -t 50.5259 -s 210 -d 201 -p tcp -e 1000 -i 372 -a 1 h -t 50.5259 -s 210 -d 201 -p tcp -e 1000 -i 372 -a 1 r -t 50.5259 -s 211 -d 210 -p tcp -e 1000 -i 372 -a 1 r -t 50.5279 -s 210 -d 201 -p tcp -e 1000 -i 372 -a 1 + -t 50.5308 -s 211 -d 212 -p ack -e 40 -i 375 -a 4 - -t 50.5308 -s 211 -d 212 -p ack -e 40 -i 375 -a 4 h -t 50.5308 -s 211 -d 212 -p ack -e 40 -i 375 -a 4 r -t 50.5308 -s 210 -d 211 -p ack -e 40 -i 375 -a 4 + -t 50.5318 -s 110 -d 100 -p tcp -e 1000 -i 401 -a 0 + -t 50.5318 -s 310 -d 308 -p tcp -e 1000 -i 351 -a 8 - -t 50.5318 -s 110 -d 100 -p tcp -e 1000 -i 401 -a 0 - -t 50.5318 -s 310 -d 308 -p tcp -e 1000 -i 351 -a 8 h -t 50.5318 -s 110 -d 100 -p tcp -e 1000 -i 401 -a 0 h -t 50.5318 -s 310 -d 308 -p tcp -e 1000 -i 351 -a 8 r -t 50.5318 -s 111 -d 110 -p tcp -e 1000 -i 401 -a 0 r -t 50.5318 -s 211 -d 212 -p ack -e 40 -i 375 -a 4 r -t 50.5318 -s 311 -d 310 -p tcp -e 1000 -i 351 -a 8 + -t 50.5319 -s 212 -d 211 -p tcp -e 1000 -i 384 -a 4 + -t 50.5319 -s 212 -d 211 -p tcp -e 1000 -i 385 -a 4 + -t 50.5319 -s 212 -d 211 -p tcp -e 1000 -i 386 -a 4 - -t 50.5319 -s 212 -d 211 -p tcp -e 1000 -i 384 -a 4 h -t 50.5319 -s 212 -d 211 -p tcp -e 1000 -i 384 -a 4 - -t 50.5327 -s 212 -d 211 -p tcp -e 1000 -i 385 -a 4 h -t 50.5327 -s 212 -d 211 -p tcp -e 1000 -i 385 -a 4 - -t 50.5335 -s 212 -d 211 -p tcp -e 1000 -i 386 -a 4 h -t 50.5335 -s 212 -d 211 -p tcp -e 1000 -i 386 -a 4 + -t 50.5336 -s 100 -d 110 -p ack -e 40 -i 424 -a 0 - -t 50.5336 -s 100 -d 110 -p ack -e 40 -i 424 -a 0 h -t 50.5336 -s 100 -d 110 -p ack -e 40 -i 424 -a 0 + -t 50.5337 -s 211 -d 210 -p tcp -e 1000 -i 384 -a 4 - -t 50.5337 -s 211 -d 210 -p tcp -e 1000 -i 384 -a 4 h -t 50.5337 -s 211 -d 210 -p tcp -e 1000 -i 384 -a 4 r -t 50.5338 -s 110 -d 100 -p tcp -e 1000 -i 401 -a 0 r -t 50.5338 -s 310 -d 308 -p tcp -e 1000 -i 351 -a 8 r -t 50.5339 -s 212 -d 211 -p tcp -e 1000 -i 384 -a 4 + -t 50.5345 -s 211 -d 210 -p tcp -e 1000 -i 385 -a 4 + -t 50.5346 -s 110 -d 111 -p ack -e 40 -i 424 -a 0 - -t 50.5346 -s 110 -d 111 -p ack -e 40 -i 424 -a 0 h -t 50.5346 -s 110 -d 111 -p ack -e 40 -i 424 -a 0 r -t 50.5346 -s 100 -d 110 -p ack -e 40 -i 424 -a 0 r -t 50.5347 -s 212 -d 211 -p tcp -e 1000 -i 385 -a 4 + -t 50.535 -s 111 -d 112 -p ack -e 40 -i 416 -a 6 - -t 50.535 -s 111 -d 112 -p ack -e 40 -i 416 -a 6 h -t 50.535 -s 111 -d 112 -p ack -e 40 -i 416 -a 6 r -t 50.535 -s 110 -d 111 -p ack -e 40 -i 416 -a 6 + -t 50.5353 -s 211 -d 210 -p tcp -e 1000 -i 386 -a 4 r -t 50.5355 -s 212 -d 211 -p tcp -e 1000 -i 386 -a 4 + -t 50.5359 -s 210 -d 208 -p tcp -e 1000 -i 373 -a 8 - -t 50.5359 -s 210 -d 208 -p tcp -e 1000 -i 373 -a 8 h -t 50.5359 -s 210 -d 208 -p tcp -e 1000 -i 373 -a 8 r -t 50.5359 -s 211 -d 210 -p tcp -e 1000 -i 373 -a 8 r -t 50.536 -s 111 -d 112 -p ack -e 40 -i 416 -a 6 r -t 50.5379 -s 210 -d 208 -p tcp -e 1000 -i 373 -a 8 + -t 50.5398 -s 212 -d 211 -p tcp -e 1000 -i 387 -a 6 - -t 50.5398 -s 212 -d 211 -p tcp -e 1000 -i 387 -a 6 h -t 50.5398 -s 212 -d 211 -p tcp -e 1000 -i 387 -a 6 + -t 50.5416 -s 211 -d 210 -p tcp -e 1000 -i 387 -a 6 + -t 50.5418 -s 110 -d 100 -p tcp -e 1000 -i 402 -a 0 - -t 50.5418 -s 110 -d 100 -p tcp -e 1000 -i 402 -a 0 h -t 50.5418 -s 110 -d 100 -p tcp -e 1000 -i 402 -a 0 r -t 50.5418 -s 111 -d 110 -p tcp -e 1000 -i 402 -a 0 r -t 50.5418 -s 212 -d 211 -p tcp -e 1000 -i 387 -a 6 - -t 50.5437 -s 211 -d 210 -p tcp -e 1000 -i 385 -a 4 h -t 50.5437 -s 211 -d 210 -p tcp -e 1000 -i 385 -a 4 r -t 50.5438 -s 110 -d 100 -p tcp -e 1000 -i 402 -a 0 + -t 50.5459 -s 210 -d 206 -p tcp -e 1000 -i 374 -a 6 - -t 50.5459 -s 210 -d 206 -p tcp -e 1000 -i 374 -a 6 h -t 50.5459 -s 210 -d 206 -p tcp -e 1000 -i 374 -a 6 r -t 50.5459 -s 211 -d 210 -p tcp -e 1000 -i 374 -a 6 r -t 50.5479 -s 210 -d 206 -p tcp -e 1000 -i 374 -a 6 + -t 50.5518 -s 110 -d 100 -p tcp -e 1000 -i 403 -a 0 - -t 50.5518 -s 110 -d 100 -p tcp -e 1000 -i 403 -a 0 h -t 50.5518 -s 110 -d 100 -p tcp -e 1000 -i 403 -a 0 r -t 50.5518 -s 111 -d 110 -p tcp -e 1000 -i 403 -a 0 + -t 50.5536 -s 100 -d 110 -p ack -e 40 -i 425 -a 0 - -t 50.5536 -s 100 -d 110 -p ack -e 40 -i 425 -a 0 h -t 50.5536 -s 100 -d 110 -p ack -e 40 -i 425 -a 0 - -t 50.5537 -s 211 -d 210 -p tcp -e 1000 -i 386 -a 4 h -t 50.5537 -s 211 -d 210 -p tcp -e 1000 -i 386 -a 4 r -t 50.5538 -s 110 -d 100 -p tcp -e 1000 -i 403 -a 0 + -t 50.5546 -s 110 -d 111 -p ack -e 40 -i 425 -a 0 - -t 50.5546 -s 110 -d 111 -p ack -e 40 -i 425 -a 0 h -t 50.5546 -s 110 -d 111 -p ack -e 40 -i 425 -a 0 r -t 50.5546 -s 100 -d 110 -p ack -e 40 -i 425 -a 0 + -t 50.555 -s 111 -d 112 -p ack -e 40 -i 417 -a 6 - -t 50.555 -s 111 -d 112 -p ack -e 40 -i 417 -a 6 h -t 50.555 -s 111 -d 112 -p ack -e 40 -i 417 -a 6 r -t 50.555 -s 110 -d 111 -p ack -e 40 -i 417 -a 6 r -t 50.556 -s 111 -d 112 -p ack -e 40 -i 417 -a 6 + -t 50.5618 -s 110 -d 100 -p tcp -e 1000 -i 404 -a 0 - -t 50.5618 -s 110 -d 100 -p tcp -e 1000 -i 404 -a 0 h -t 50.5618 -s 110 -d 100 -p tcp -e 1000 -i 404 -a 0 r -t 50.5618 -s 111 -d 110 -p tcp -e 1000 -i 404 -a 0 - -t 50.5637 -s 211 -d 210 -p tcp -e 1000 -i 387 -a 6 h -t 50.5637 -s 211 -d 210 -p tcp -e 1000 -i 387 -a 6 r -t 50.5638 -s 110 -d 100 -p tcp -e 1000 -i 404 -a 0 + -t 50.5644 -s 212 -d 211 -p tcp -e 1000 -i 388 -a 8 - -t 50.5644 -s 212 -d 211 -p tcp -e 1000 -i 388 -a 8 h -t 50.5644 -s 212 -d 211 -p tcp -e 1000 -i 388 -a 8 + -t 50.5662 -s 211 -d 210 -p tcp -e 1000 -i 388 -a 8 r -t 50.5664 -s 212 -d 211 -p tcp -e 1000 -i 388 -a 8 + -t 50.5718 -s 110 -d 100 -p tcp -e 1000 -i 405 -a 0 - -t 50.5718 -s 110 -d 100 -p tcp -e 1000 -i 405 -a 0 h -t 50.5718 -s 110 -d 100 -p tcp -e 1000 -i 405 -a 0 r -t 50.5718 -s 111 -d 110 -p tcp -e 1000 -i 405 -a 0 + -t 50.5736 -s 100 -d 110 -p ack -e 40 -i 426 -a 0 - -t 50.5736 -s 100 -d 110 -p ack -e 40 -i 426 -a 0 h -t 50.5736 -s 100 -d 110 -p ack -e 40 -i 426 -a 0 - -t 50.5737 -s 211 -d 210 -p tcp -e 1000 -i 388 -a 8 h -t 50.5737 -s 211 -d 210 -p tcp -e 1000 -i 388 -a 8 r -t 50.5738 -s 110 -d 100 -p tcp -e 1000 -i 405 -a 0 + -t 50.5746 -s 110 -d 111 -p ack -e 40 -i 426 -a 0 - -t 50.5746 -s 110 -d 111 -p ack -e 40 -i 426 -a 0 h -t 50.5746 -s 110 -d 111 -p ack -e 40 -i 426 -a 0 r -t 50.5746 -s 100 -d 110 -p ack -e 40 -i 426 -a 0 + -t 50.575 -s 111 -d 112 -p ack -e 40 -i 418 -a 6 - -t 50.575 -s 111 -d 112 -p ack -e 40 -i 418 -a 6 h -t 50.575 -s 111 -d 112 -p ack -e 40 -i 418 -a 6 r -t 50.575 -s 110 -d 111 -p ack -e 40 -i 418 -a 6 r -t 50.576 -s 111 -d 112 -p ack -e 40 -i 418 -a 6 + -t 50.5792 -s 211 -d 212 -p ack -e 40 -i 376 -a 7 - -t 50.5792 -s 211 -d 212 -p ack -e 40 -i 376 -a 7 h -t 50.5792 -s 211 -d 212 -p ack -e 40 -i 376 -a 7 r -t 50.5792 -s 210 -d 211 -p ack -e 40 -i 376 -a 7 r -t 50.5802 -s 211 -d 212 -p ack -e 40 -i 376 -a 7 + -t 50.5818 -s 110 -d 100 -p tcp -e 1000 -i 408 -a 0 - -t 50.5818 -s 110 -d 100 -p tcp -e 1000 -i 408 -a 0 h -t 50.5818 -s 110 -d 100 -p tcp -e 1000 -i 408 -a 0 r -t 50.5818 -s 111 -d 110 -p tcp -e 1000 -i 408 -a 0 + -t 50.5836 -s 100 -d 110 -p ack -e 40 -i 427 -a 0 - -t 50.5836 -s 100 -d 110 -p ack -e 40 -i 427 -a 0 h -t 50.5836 -s 100 -d 110 -p ack -e 40 -i 427 -a 0 r -t 50.5838 -s 110 -d 100 -p tcp -e 1000 -i 408 -a 0 + -t 50.5846 -s 110 -d 111 -p ack -e 40 -i 427 -a 0 - -t 50.5846 -s 110 -d 111 -p ack -e 40 -i 427 -a 0 h -t 50.5846 -s 110 -d 111 -p ack -e 40 -i 427 -a 0 r -t 50.5846 -s 100 -d 110 -p ack -e 40 -i 427 -a 0 + -t 50.5918 -s 110 -d 104 -p tcp -e 1000 -i 411 -a 4 - -t 50.5918 -s 110 -d 104 -p tcp -e 1000 -i 411 -a 4 h -t 50.5918 -s 110 -d 104 -p tcp -e 1000 -i 411 -a 4 r -t 50.5918 -s 111 -d 110 -p tcp -e 1000 -i 411 -a 4 r -t 50.5938 -s 110 -d 104 -p tcp -e 1000 -i 411 -a 4 + -t 50.595 -s 111 -d 112 -p ack -e 40 -i 419 -a 6 + -t 50.595 -s 311 -d 312 -p ack -e 40 -i 353 -a 4 - -t 50.595 -s 111 -d 112 -p ack -e 40 -i 419 -a 6 - -t 50.595 -s 311 -d 312 -p ack -e 40 -i 353 -a 4 h -t 50.595 -s 111 -d 112 -p ack -e 40 -i 419 -a 6 h -t 50.595 -s 311 -d 312 -p ack -e 40 -i 353 -a 4 r -t 50.595 -s 110 -d 111 -p ack -e 40 -i 419 -a 6 r -t 50.595 -s 310 -d 311 -p ack -e 40 -i 353 -a 4 + -t 50.596 -s 312 -d 311 -p tcp -e 1000 -i 358 -a 4 + -t 50.596 -s 312 -d 311 -p tcp -e 1000 -i 359 -a 4 - -t 50.596 -s 312 -d 311 -p tcp -e 1000 -i 358 -a 4 h -t 50.596 -s 312 -d 311 -p tcp -e 1000 -i 358 -a 4 r -t 50.596 -s 111 -d 112 -p ack -e 40 -i 419 -a 6 r -t 50.596 -s 311 -d 312 -p ack -e 40 -i 353 -a 4 - -t 50.5968 -s 312 -d 311 -p tcp -e 1000 -i 359 -a 4 h -t 50.5968 -s 312 -d 311 -p tcp -e 1000 -i 359 -a 4 + -t 50.5978 -s 311 -d 310 -p tcp -e 1000 -i 358 -a 4 - -t 50.5978 -s 311 -d 310 -p tcp -e 1000 -i 358 -a 4 h -t 50.5978 -s 311 -d 310 -p tcp -e 1000 -i 358 -a 4 r -t 50.598 -s 312 -d 311 -p tcp -e 1000 -i 358 -a 4 + -t 50.5986 -s 311 -d 310 -p tcp -e 1000 -i 359 -a 4 r -t 50.5988 -s 312 -d 311 -p tcp -e 1000 -i 359 -a 4 + -t 50.5992 -s 210 -d 200 -p tcp -e 1000 -i 377 -a 0 + -t 50.5992 -s 211 -d 212 -p ack -e 40 -i 381 -a 4 - -t 50.5992 -s 210 -d 200 -p tcp -e 1000 -i 377 -a 0 - -t 50.5992 -s 211 -d 212 -p ack -e 40 -i 381 -a 4 h -t 50.5992 -s 210 -d 200 -p tcp -e 1000 -i 377 -a 0 h -t 50.5992 -s 211 -d 212 -p ack -e 40 -i 381 -a 4 r -t 50.5992 -s 210 -d 211 -p ack -e 40 -i 381 -a 4 r -t 50.5992 -s 211 -d 210 -p tcp -e 1000 -i 377 -a 0 + -t 50.6002 -s 212 -d 211 -p tcp -e 1000 -i 389 -a 4 + -t 50.6002 -s 212 -d 211 -p tcp -e 1000 -i 390 -a 4 - -t 50.6002 -s 212 -d 211 -p tcp -e 1000 -i 389 -a 4 h -t 50.6002 -s 212 -d 211 -p tcp -e 1000 -i 389 -a 4 r -t 50.6002 -s 211 -d 212 -p ack -e 40 -i 381 -a 4 + -t 50.601 -s 200 -d 210 -p ack -e 40 -i 391 -a 0 - -t 50.601 -s 200 -d 210 -p ack -e 40 -i 391 -a 0 - -t 50.601 -s 212 -d 211 -p tcp -e 1000 -i 390 -a 4 h -t 50.601 -s 200 -d 210 -p ack -e 40 -i 391 -a 0 h -t 50.601 -s 212 -d 211 -p tcp -e 1000 -i 390 -a 4 r -t 50.6012 -s 210 -d 200 -p tcp -e 1000 -i 377 -a 0 + -t 50.6013 -s 212 -d 211 -p tcp -e 1000 -i 392 -a 0 + -t 50.6018 -s 110 -d 108 -p tcp -e 1000 -i 413 -a 8 - -t 50.6018 -s 110 -d 108 -p tcp -e 1000 -i 413 -a 8 - -t 50.6018 -s 212 -d 211 -p tcp -e 1000 -i 392 -a 0 h -t 50.6018 -s 110 -d 108 -p tcp -e 1000 -i 413 -a 8 h -t 50.6018 -s 212 -d 211 -p tcp -e 1000 -i 392 -a 0 r -t 50.6018 -s 111 -d 110 -p tcp -e 1000 -i 413 -a 8 + -t 50.602 -s 211 -d 210 -p tcp -e 1000 -i 389 -a 4 - -t 50.602 -s 211 -d 210 -p tcp -e 1000 -i 389 -a 4 h -t 50.602 -s 211 -d 210 -p tcp -e 1000 -i 389 -a 4 r -t 50.602 -s 200 -d 210 -p ack -e 40 -i 391 -a 0 + -t 50.6021 -s 210 -d 211 -p ack -e 40 -i 391 -a 0 - -t 50.6021 -s 210 -d 211 -p ack -e 40 -i 391 -a 0 h -t 50.6021 -s 210 -d 211 -p ack -e 40 -i 391 -a 0 r -t 50.6022 -s 212 -d 211 -p tcp -e 1000 -i 389 -a 4 + -t 50.6028 -s 211 -d 210 -p tcp -e 1000 -i 390 -a 4 r -t 50.603 -s 212 -d 211 -p tcp -e 1000 -i 390 -a 4 + -t 50.6036 -s 211 -d 210 -p tcp -e 1000 -i 392 -a 0 + -t 50.6036 -s 300 -d 310 -p ack -e 40 -i 360 -a 0 - -t 50.6036 -s 300 -d 310 -p ack -e 40 -i 360 -a 0 h -t 50.6036 -s 300 -d 310 -p ack -e 40 -i 360 -a 0 r -t 50.6038 -s 110 -d 108 -p tcp -e 1000 -i 413 -a 8 r -t 50.6038 -s 212 -d 211 -p tcp -e 1000 -i 392 -a 0 + -t 50.6046 -s 310 -d 311 -p ack -e 40 -i 360 -a 0 - -t 50.6046 -s 310 -d 311 -p ack -e 40 -i 360 -a 0 h -t 50.6046 -s 310 -d 311 -p ack -e 40 -i 360 -a 0 r -t 50.6046 -s 300 -d 310 -p ack -e 40 -i 360 -a 0 + -t 50.6059 -s 310 -d 301 -p tcp -e 1000 -i 354 -a 1 - -t 50.6059 -s 310 -d 301 -p tcp -e 1000 -i 354 -a 1 h -t 50.6059 -s 310 -d 301 -p tcp -e 1000 -i 354 -a 1 r -t 50.6059 -s 311 -d 310 -p tcp -e 1000 -i 354 -a 1 + -t 50.6064 -s 211 -d 212 -p ack -e 40 -i 382 -a 1 - -t 50.6064 -s 211 -d 212 -p ack -e 40 -i 382 -a 1 h -t 50.6064 -s 211 -d 212 -p ack -e 40 -i 382 -a 1 r -t 50.6064 -s 210 -d 211 -p ack -e 40 -i 382 -a 1 r -t 50.6074 -s 211 -d 212 -p ack -e 40 -i 382 -a 1 + -t 50.6075 -s 212 -d 211 -p tcp -e 1000 -i 393 -a 1 + -t 50.6075 -s 212 -d 211 -p tcp -e 1000 -i 394 -a 1 + -t 50.6075 -s 212 -d 211 -p tcp -e 1000 -i 395 -a 1 - -t 50.6075 -s 212 -d 211 -p tcp -e 1000 -i 393 -a 1 h -t 50.6075 -s 212 -d 211 -p tcp -e 1000 -i 393 -a 1 + -t 50.6077 -s 204 -d 210 -p ack -e 40 -i 396 -a 4 - -t 50.6077 -s 204 -d 210 -p ack -e 40 -i 396 -a 4 h -t 50.6077 -s 204 -d 210 -p ack -e 40 -i 396 -a 4 - -t 50.6078 -s 311 -d 310 -p tcp -e 1000 -i 359 -a 4 h -t 50.6078 -s 311 -d 310 -p tcp -e 1000 -i 359 -a 4 r -t 50.6079 -s 310 -d 301 -p tcp -e 1000 -i 354 -a 1 - -t 50.6083 -s 212 -d 211 -p tcp -e 1000 -i 394 -a 1 h -t 50.6083 -s 212 -d 211 -p tcp -e 1000 -i 394 -a 1 r -t 50.6087 -s 204 -d 210 -p ack -e 40 -i 396 -a 4 + -t 50.6088 -s 210 -d 211 -p ack -e 40 -i 396 -a 4 - -t 50.6088 -s 210 -d 211 -p ack -e 40 -i 396 -a 4 h -t 50.6088 -s 210 -d 211 -p ack -e 40 -i 396 -a 4 - -t 50.6091 -s 212 -d 211 -p tcp -e 1000 -i 395 -a 1 h -t 50.6091 -s 212 -d 211 -p tcp -e 1000 -i 395 -a 1 + -t 50.6092 -s 210 -d 201 -p tcp -e 1000 -i 378 -a 1 - -t 50.6092 -s 210 -d 201 -p tcp -e 1000 -i 378 -a 1 h -t 50.6092 -s 210 -d 201 -p tcp -e 1000 -i 378 -a 1 r -t 50.6092 -s 211 -d 210 -p tcp -e 1000 -i 378 -a 1 + -t 50.6093 -s 211 -d 210 -p tcp -e 1000 -i 393 -a 1 r -t 50.6095 -s 212 -d 211 -p tcp -e 1000 -i 393 -a 1 + -t 50.6101 -s 211 -d 210 -p tcp -e 1000 -i 394 -a 1 r -t 50.6103 -s 212 -d 211 -p tcp -e 1000 -i 394 -a 1 + -t 50.6109 -s 211 -d 210 -p tcp -e 1000 -i 395 -a 1 + -t 50.611 -s 201 -d 210 -p ack -e 40 -i 397 -a 1 - -t 50.611 -s 201 -d 210 -p ack -e 40 -i 397 -a 1 h -t 50.611 -s 201 -d 210 -p ack -e 40 -i 397 -a 1 r -t 50.6111 -s 212 -d 211 -p tcp -e 1000 -i 395 -a 1 r -t 50.6112 -s 210 -d 201 -p tcp -e 1000 -i 378 -a 1 - -t 50.612 -s 211 -d 210 -p tcp -e 1000 -i 390 -a 4 h -t 50.612 -s 211 -d 210 -p tcp -e 1000 -i 390 -a 4 r -t 50.612 -s 201 -d 210 -p ack -e 40 -i 397 -a 1 + -t 50.6121 -s 210 -d 211 -p ack -e 40 -i 397 -a 1 - -t 50.6121 -s 210 -d 211 -p ack -e 40 -i 397 -a 1 h -t 50.6121 -s 210 -d 211 -p ack -e 40 -i 397 -a 1 + -t 50.615 -s 111 -d 112 -p ack -e 40 -i 422 -a 6 - -t 50.615 -s 111 -d 112 -p ack -e 40 -i 422 -a 6 h -t 50.615 -s 111 -d 112 -p ack -e 40 -i 422 -a 6 r -t 50.615 -s 110 -d 111 -p ack -e 40 -i 422 -a 6 + -t 50.6154 -s 111 -d 112 -p ack -e 40 -i 423 -a 4 - -t 50.6154 -s 111 -d 112 -p ack -e 40 -i 423 -a 4 h -t 50.6154 -s 111 -d 112 -p ack -e 40 -i 423 -a 4 r -t 50.6154 -s 110 -d 111 -p ack -e 40 -i 423 -a 4 + -t 50.6159 -s 310 -d 301 -p tcp -e 1000 -i 355 -a 1 - -t 50.6159 -s 310 -d 301 -p tcp -e 1000 -i 355 -a 1 h -t 50.6159 -s 310 -d 301 -p tcp -e 1000 -i 355 -a 1 r -t 50.6159 -s 311 -d 310 -p tcp -e 1000 -i 355 -a 1 r -t 50.616 -s 111 -d 112 -p ack -e 40 -i 422 -a 6 r -t 50.6164 -s 111 -d 112 -p ack -e 40 -i 423 -a 4 + -t 50.6177 -s 301 -d 310 -p ack -e 40 -i 361 -a 1 - -t 50.6177 -s 301 -d 310 -p ack -e 40 -i 361 -a 1 h -t 50.6177 -s 301 -d 310 -p ack -e 40 -i 361 -a 1 + -t 50.6178 -s 110 -d 104 -p tcp -e 1000 -i 420 -a 4 - -t 50.6178 -s 110 -d 104 -p tcp -e 1000 -i 420 -a 4 h -t 50.6178 -s 110 -d 104 -p tcp -e 1000 -i 420 -a 4 r -t 50.6178 -s 111 -d 110 -p tcp -e 1000 -i 420 -a 4 r -t 50.6179 -s 310 -d 301 -p tcp -e 1000 -i 355 -a 1 + -t 50.6187 -s 310 -d 311 -p ack -e 40 -i 361 -a 1 - -t 50.6187 -s 310 -d 311 -p ack -e 40 -i 361 -a 1 h -t 50.6187 -s 310 -d 311 -p ack -e 40 -i 361 -a 1 r -t 50.6187 -s 301 -d 310 -p ack -e 40 -i 361 -a 1 + -t 50.6192 -s 210 -d 201 -p tcp -e 1000 -i 379 -a 1 - -t 50.6192 -s 210 -d 201 -p tcp -e 1000 -i 379 -a 1 h -t 50.6192 -s 210 -d 201 -p tcp -e 1000 -i 379 -a 1 r -t 50.6192 -s 211 -d 210 -p tcp -e 1000 -i 379 -a 1 + -t 50.6196 -s 104 -d 110 -p ack -e 40 -i 428 -a 4 - -t 50.6196 -s 104 -d 110 -p ack -e 40 -i 428 -a 4 h -t 50.6196 -s 104 -d 110 -p ack -e 40 -i 428 -a 4 r -t 50.6198 -s 110 -d 104 -p tcp -e 1000 -i 420 -a 4 r -t 50.6206 -s 104 -d 110 -p ack -e 40 -i 428 -a 4 + -t 50.6207 -s 110 -d 111 -p ack -e 40 -i 428 -a 4 - -t 50.6207 -s 110 -d 111 -p ack -e 40 -i 428 -a 4 h -t 50.6207 -s 110 -d 111 -p ack -e 40 -i 428 -a 4 r -t 50.6212 -s 210 -d 201 -p tcp -e 1000 -i 379 -a 1 - -t 50.622 -s 211 -d 210 -p tcp -e 1000 -i 392 -a 0 h -t 50.622 -s 211 -d 210 -p tcp -e 1000 -i 392 -a 0 + -t 50.6228 -s 211 -d 212 -p ack -e 40 -i 383 -a 6 + -t 50.6228 -s 311 -d 312 -p ack -e 40 -i 356 -a 6 - -t 50.6228 -s 211 -d 212 -p ack -e 40 -i 383 -a 6 - -t 50.6228 -s 311 -d 312 -p ack -e 40 -i 356 -a 6 h -t 50.6228 -s 211 -d 212 -p ack -e 40 -i 383 -a 6 h -t 50.6228 -s 311 -d 312 -p ack -e 40 -i 356 -a 6 r -t 50.6228 -s 210 -d 211 -p ack -e 40 -i 383 -a 6 r -t 50.6228 -s 310 -d 311 -p ack -e 40 -i 356 -a 6 r -t 50.6238 -s 211 -d 212 -p ack -e 40 -i 383 -a 6 r -t 50.6238 -s 311 -d 312 -p ack -e 40 -i 356 -a 6 + -t 50.6239 -s 212 -d 211 -p tcp -e 1000 -i 398 -a 6 + -t 50.6239 -s 212 -d 211 -p tcp -e 1000 -i 399 -a 6 + -t 50.6239 -s 212 -d 211 -p tcp -e 1000 -i 400 -a 6 + -t 50.6239 -s 312 -d 311 -p tcp -e 1000 -i 362 -a 6 + -t 50.6239 -s 312 -d 311 -p tcp -e 1000 -i 363 -a 6 - -t 50.6239 -s 212 -d 211 -p tcp -e 1000 -i 398 -a 6 - -t 50.6239 -s 312 -d 311 -p tcp -e 1000 -i 362 -a 6 h -t 50.6239 -s 212 -d 211 -p tcp -e 1000 -i 398 -a 6 h -t 50.6239 -s 312 -d 311 -p tcp -e 1000 -i 362 -a 6 - -t 50.6247 -s 212 -d 211 -p tcp -e 1000 -i 399 -a 6 - -t 50.6247 -s 312 -d 311 -p tcp -e 1000 -i 363 -a 6 h -t 50.6247 -s 212 -d 211 -p tcp -e 1000 -i 399 -a 6 h -t 50.6247 -s 312 -d 311 -p tcp -e 1000 -i 363 -a 6 + -t 50.625 -s 311 -d 312 -p ack -e 40 -i 357 -a 7 - -t 50.625 -s 311 -d 312 -p ack -e 40 -i 357 -a 7 h -t 50.625 -s 311 -d 312 -p ack -e 40 -i 357 -a 7 r -t 50.625 -s 310 -d 311 -p ack -e 40 -i 357 -a 7 - -t 50.6255 -s 212 -d 211 -p tcp -e 1000 -i 400 -a 6 h -t 50.6255 -s 212 -d 211 -p tcp -e 1000 -i 400 -a 6 + -t 50.6257 -s 211 -d 210 -p tcp -e 1000 -i 398 -a 6 + -t 50.6257 -s 311 -d 310 -p tcp -e 1000 -i 362 -a 6 - -t 50.6257 -s 311 -d 310 -p tcp -e 1000 -i 362 -a 6 h -t 50.6257 -s 311 -d 310 -p tcp -e 1000 -i 362 -a 6 r -t 50.6259 -s 212 -d 211 -p tcp -e 1000 -i 398 -a 6 r -t 50.6259 -s 312 -d 311 -p tcp -e 1000 -i 362 -a 6 + -t 50.626 -s 312 -d 311 -p tcp -e 1000 -i 364 -a 7 + -t 50.626 -s 312 -d 311 -p tcp -e 1000 -i 365 -a 7 - -t 50.626 -s 312 -d 311 -p tcp -e 1000 -i 364 -a 7 h -t 50.626 -s 312 -d 311 -p tcp -e 1000 -i 364 -a 7 r -t 50.626 -s 311 -d 312 -p ack -e 40 -i 357 -a 7 + -t 50.6265 -s 211 -d 210 -p tcp -e 1000 -i 399 -a 6 + -t 50.6265 -s 311 -d 310 -p tcp -e 1000 -i 363 -a 6 r -t 50.6267 -s 212 -d 211 -p tcp -e 1000 -i 399 -a 6 r -t 50.6267 -s 312 -d 311 -p tcp -e 1000 -i 363 -a 6 - -t 50.6268 -s 312 -d 311 -p tcp -e 1000 -i 365 -a 7 h -t 50.6268 -s 312 -d 311 -p tcp -e 1000 -i 365 -a 7 + -t 50.6273 -s 211 -d 210 -p tcp -e 1000 -i 400 -a 6 r -t 50.6275 -s 212 -d 211 -p tcp -e 1000 -i 400 -a 6 + -t 50.6278 -s 110 -d 104 -p tcp -e 1000 -i 421 -a 4 + -t 50.6278 -s 311 -d 310 -p tcp -e 1000 -i 364 -a 7 - -t 50.6278 -s 110 -d 104 -p tcp -e 1000 -i 421 -a 4 h -t 50.6278 -s 110 -d 104 -p tcp -e 1000 -i 421 -a 4 r -t 50.6278 -s 111 -d 110 -p tcp -e 1000 -i 421 -a 4 r -t 50.628 -s 312 -d 311 -p tcp -e 1000 -i 364 -a 7 + -t 50.6286 -s 311 -d 310 -p tcp -e 1000 -i 365 -a 7 r -t 50.6288 -s 312 -d 311 -p tcp -e 1000 -i 365 -a 7 + -t 50.6292 -s 210 -d 201 -p tcp -e 1000 -i 380 -a 1 - -t 50.6292 -s 210 -d 201 -p tcp -e 1000 -i 380 -a 1 h -t 50.6292 -s 210 -d 201 -p tcp -e 1000 -i 380 -a 1 r -t 50.6292 -s 211 -d 210 -p tcp -e 1000 -i 380 -a 1 + -t 50.6296 -s 104 -d 110 -p ack -e 40 -i 429 -a 4 - -t 50.6296 -s 104 -d 110 -p ack -e 40 -i 429 -a 4 h -t 50.6296 -s 104 -d 110 -p ack -e 40 -i 429 -a 4 r -t 50.6298 -s 110 -d 104 -p tcp -e 1000 -i 421 -a 4 r -t 50.6306 -s 104 -d 110 -p ack -e 40 -i 429 -a 4 + -t 50.6307 -s 110 -d 111 -p ack -e 40 -i 429 -a 4 - -t 50.6307 -s 110 -d 111 -p ack -e 40 -i 429 -a 4 h -t 50.6307 -s 110 -d 111 -p ack -e 40 -i 429 -a 4 + -t 50.631 -s 201 -d 210 -p ack -e 40 -i 401 -a 1 - -t 50.631 -s 201 -d 210 -p ack -e 40 -i 401 -a 1 h -t 50.631 -s 201 -d 210 -p ack -e 40 -i 401 -a 1 r -t 50.6312 -s 210 -d 201 -p tcp -e 1000 -i 380 -a 1 - -t 50.632 -s 211 -d 210 -p tcp -e 1000 -i 393 -a 1 h -t 50.632 -s 211 -d 210 -p tcp -e 1000 -i 393 -a 1 r -t 50.632 -s 201 -d 210 -p ack -e 40 -i 401 -a 1 + -t 50.6321 -s 210 -d 211 -p ack -e 40 -i 401 -a 1 - -t 50.6321 -s 210 -d 211 -p ack -e 40 -i 401 -a 1 h -t 50.6321 -s 210 -d 211 -p ack -e 40 -i 401 -a 1 + -t 50.6336 -s 308 -d 310 -p ack -e 40 -i 366 -a 8 - -t 50.6336 -s 308 -d 310 -p ack -e 40 -i 366 -a 8 h -t 50.6336 -s 308 -d 310 -p ack -e 40 -i 366 -a 8 + -t 50.6346 -s 310 -d 311 -p ack -e 40 -i 366 -a 8 - -t 50.6346 -s 310 -d 311 -p ack -e 40 -i 366 -a 8 h -t 50.6346 -s 310 -d 311 -p ack -e 40 -i 366 -a 8 r -t 50.6346 -s 308 -d 310 -p ack -e 40 -i 366 -a 8 + -t 50.635 -s 111 -d 112 -p ack -e 40 -i 424 -a 0 - -t 50.635 -s 111 -d 112 -p ack -e 40 -i 424 -a 0 h -t 50.635 -s 111 -d 112 -p ack -e 40 -i 424 -a 0 r -t 50.635 -s 110 -d 111 -p ack -e 40 -i 424 -a 0 - -t 50.6357 -s 311 -d 310 -p tcp -e 1000 -i 363 -a 6 h -t 50.6357 -s 311 -d 310 -p tcp -e 1000 -i 363 -a 6 r -t 50.636 -s 111 -d 112 -p ack -e 40 -i 424 -a 0 + -t 50.6377 -s 208 -d 210 -p ack -e 40 -i 402 -a 8 - -t 50.6377 -s 208 -d 210 -p ack -e 40 -i 402 -a 8 h -t 50.6377 -s 208 -d 210 -p ack -e 40 -i 402 -a 8 r -t 50.6387 -s 208 -d 210 -p ack -e 40 -i 402 -a 8 + -t 50.6388 -s 210 -d 211 -p ack -e 40 -i 402 -a 8 - -t 50.6388 -s 210 -d 211 -p ack -e 40 -i 402 -a 8 h -t 50.6388 -s 210 -d 211 -p ack -e 40 -i 402 -a 8 - -t 50.642 -s 211 -d 210 -p tcp -e 1000 -i 394 -a 1 h -t 50.642 -s 211 -d 210 -p tcp -e 1000 -i 394 -a 1 + -t 50.6437 -s 210 -d 204 -p tcp -e 1000 -i 384 -a 4 - -t 50.6437 -s 210 -d 204 -p tcp -e 1000 -i 384 -a 4 h -t 50.6437 -s 210 -d 204 -p tcp -e 1000 -i 384 -a 4 r -t 50.6437 -s 211 -d 210 -p tcp -e 1000 -i 384 -a 4 - -t 50.6457 -s 311 -d 310 -p tcp -e 1000 -i 364 -a 7 h -t 50.6457 -s 311 -d 310 -p tcp -e 1000 -i 364 -a 7 r -t 50.6457 -s 210 -d 204 -p tcp -e 1000 -i 384 -a 4 + -t 50.6477 -s 206 -d 210 -p ack -e 40 -i 403 -a 6 - -t 50.6477 -s 206 -d 210 -p ack -e 40 -i 403 -a 6 h -t 50.6477 -s 206 -d 210 -p ack -e 40 -i 403 -a 6 r -t 50.6487 -s 206 -d 210 -p ack -e 40 -i 403 -a 6 + -t 50.6488 -s 210 -d 211 -p ack -e 40 -i 403 -a 6 - -t 50.6488 -s 210 -d 211 -p ack -e 40 -i 403 -a 6 h -t 50.6488 -s 210 -d 211 -p ack -e 40 -i 403 -a 6 - -t 50.652 -s 211 -d 210 -p tcp -e 1000 -i 395 -a 1 h -t 50.652 -s 211 -d 210 -p tcp -e 1000 -i 395 -a 1 + -t 50.6537 -s 210 -d 204 -p tcp -e 1000 -i 385 -a 4 - -t 50.6537 -s 210 -d 204 -p tcp -e 1000 -i 385 -a 4 h -t 50.6537 -s 210 -d 204 -p tcp -e 1000 -i 385 -a 4 r -t 50.6537 -s 211 -d 210 -p tcp -e 1000 -i 385 -a 4 + -t 50.655 -s 111 -d 112 -p ack -e 40 -i 425 -a 0 - -t 50.655 -s 111 -d 112 -p ack -e 40 -i 425 -a 0 h -t 50.655 -s 111 -d 112 -p ack -e 40 -i 425 -a 0 r -t 50.655 -s 110 -d 111 -p ack -e 40 -i 425 -a 0 + -t 50.6555 -s 204 -d 210 -p ack -e 40 -i 404 -a 4 - -t 50.6555 -s 204 -d 210 -p ack -e 40 -i 404 -a 4 h -t 50.6555 -s 204 -d 210 -p ack -e 40 -i 404 -a 4 - -t 50.6557 -s 311 -d 310 -p tcp -e 1000 -i 365 -a 7 h -t 50.6557 -s 311 -d 310 -p tcp -e 1000 -i 365 -a 7 r -t 50.6557 -s 210 -d 204 -p tcp -e 1000 -i 385 -a 4 r -t 50.656 -s 111 -d 112 -p ack -e 40 -i 425 -a 0 + -t 50.6565 -s 210 -d 211 -p ack -e 40 -i 404 -a 4 - -t 50.6565 -s 210 -d 211 -p ack -e 40 -i 404 -a 4 h -t 50.6565 -s 210 -d 211 -p ack -e 40 -i 404 -a 4 r -t 50.6565 -s 204 -d 210 -p ack -e 40 -i 404 -a 4 - -t 50.662 -s 211 -d 210 -p tcp -e 1000 -i 398 -a 6 h -t 50.662 -s 211 -d 210 -p tcp -e 1000 -i 398 -a 6 + -t 50.6637 -s 210 -d 204 -p tcp -e 1000 -i 386 -a 4 - -t 50.6637 -s 210 -d 204 -p tcp -e 1000 -i 386 -a 4 h -t 50.6637 -s 210 -d 204 -p tcp -e 1000 -i 386 -a 4 r -t 50.6637 -s 211 -d 210 -p tcp -e 1000 -i 386 -a 4 r -t 50.6657 -s 210 -d 204 -p tcp -e 1000 -i 386 -a 4 - -t 50.672 -s 211 -d 210 -p tcp -e 1000 -i 399 -a 6 h -t 50.672 -s 211 -d 210 -p tcp -e 1000 -i 399 -a 6 + -t 50.6737 -s 210 -d 206 -p tcp -e 1000 -i 387 -a 6 - -t 50.6737 -s 210 -d 206 -p tcp -e 1000 -i 387 -a 6 h -t 50.6737 -s 210 -d 206 -p tcp -e 1000 -i 387 -a 6 r -t 50.6737 -s 211 -d 210 -p tcp -e 1000 -i 387 -a 6 + -t 50.675 -s 111 -d 112 -p ack -e 40 -i 426 -a 0 - -t 50.675 -s 111 -d 112 -p ack -e 40 -i 426 -a 0 h -t 50.675 -s 111 -d 112 -p ack -e 40 -i 426 -a 0 r -t 50.675 -s 110 -d 111 -p ack -e 40 -i 426 -a 0 r -t 50.6757 -s 210 -d 206 -p tcp -e 1000 -i 387 -a 6 r -t 50.676 -s 111 -d 112 -p ack -e 40 -i 426 -a 0 - -t 50.682 -s 211 -d 210 -p tcp -e 1000 -i 400 -a 6 h -t 50.682 -s 211 -d 210 -p tcp -e 1000 -i 400 -a 6 + -t 50.6837 -s 210 -d 208 -p tcp -e 1000 -i 388 -a 8 - -t 50.6837 -s 210 -d 208 -p tcp -e 1000 -i 388 -a 8 h -t 50.6837 -s 210 -d 208 -p tcp -e 1000 -i 388 -a 8 r -t 50.6837 -s 211 -d 210 -p tcp -e 1000 -i 388 -a 8 + -t 50.685 -s 111 -d 112 -p ack -e 40 -i 427 -a 0 - -t 50.685 -s 111 -d 112 -p ack -e 40 -i 427 -a 0 h -t 50.685 -s 111 -d 112 -p ack -e 40 -i 427 -a 0 r -t 50.685 -s 110 -d 111 -p ack -e 40 -i 427 -a 0 r -t 50.6857 -s 210 -d 208 -p tcp -e 1000 -i 388 -a 8 r -t 50.686 -s 111 -d 112 -p ack -e 40 -i 427 -a 0 + -t 50.6923 -s 112 -d 111 -p tcp -e 1000 -i 430 -a 3 + -t 50.6923 -s 112 -d 111 -p tcp -e 1000 -i 431 -a 3 + -t 50.6923 -s 212 -d 211 -p tcp -e 1000 -i 405 -a 3 + -t 50.6923 -s 312 -d 311 -p tcp -e 1000 -i 367 -a 3 - -t 50.6923 -s 112 -d 111 -p tcp -e 1000 -i 430 -a 3 - -t 50.6923 -s 212 -d 211 -p tcp -e 1000 -i 405 -a 3 - -t 50.6923 -s 312 -d 311 -p tcp -e 1000 -i 367 -a 3 h -t 50.6923 -s 112 -d 111 -p tcp -e 1000 -i 430 -a 3 h -t 50.6923 -s 212 -d 211 -p tcp -e 1000 -i 405 -a 3 h -t 50.6923 -s 312 -d 311 -p tcp -e 1000 -i 367 -a 3 - -t 50.6931 -s 112 -d 111 -p tcp -e 1000 -i 431 -a 3 h -t 50.6931 -s 112 -d 111 -p tcp -e 1000 -i 431 -a 3 + -t 50.6941 -s 111 -d 110 -p tcp -e 1000 -i 430 -a 3 + -t 50.6941 -s 211 -d 210 -p tcp -e 1000 -i 405 -a 3 + -t 50.6941 -s 311 -d 310 -p tcp -e 1000 -i 367 -a 3 - -t 50.6941 -s 111 -d 110 -p tcp -e 1000 -i 430 -a 3 - -t 50.6941 -s 211 -d 210 -p tcp -e 1000 -i 405 -a 3 - -t 50.6941 -s 311 -d 310 -p tcp -e 1000 -i 367 -a 3 h -t 50.6941 -s 111 -d 110 -p tcp -e 1000 -i 430 -a 3 h -t 50.6941 -s 211 -d 210 -p tcp -e 1000 -i 405 -a 3 h -t 50.6941 -s 311 -d 310 -p tcp -e 1000 -i 367 -a 3 r -t 50.6943 -s 112 -d 111 -p tcp -e 1000 -i 430 -a 3 r -t 50.6943 -s 212 -d 211 -p tcp -e 1000 -i 405 -a 3 r -t 50.6943 -s 312 -d 311 -p tcp -e 1000 -i 367 -a 3 + -t 50.6949 -s 111 -d 110 -p tcp -e 1000 -i 431 -a 3 r -t 50.6951 -s 112 -d 111 -p tcp -e 1000 -i 431 -a 3 + -t 50.7025 -s 211 -d 212 -p ack -e 40 -i 391 -a 0 - -t 50.7025 -s 211 -d 212 -p ack -e 40 -i 391 -a 0 h -t 50.7025 -s 211 -d 212 -p ack -e 40 -i 391 -a 0 r -t 50.7025 -s 210 -d 211 -p ack -e 40 -i 391 -a 0 + -t 50.7035 -s 212 -d 211 -p tcp -e 1000 -i 406 -a 0 + -t 50.7035 -s 212 -d 211 -p tcp -e 1000 -i 407 -a 0 + -t 50.7035 -s 212 -d 211 -p tcp -e 1000 -i 408 -a 0 + -t 50.7035 -s 212 -d 211 -p tcp -e 1000 -i 409 -a 0 - -t 50.7035 -s 212 -d 211 -p tcp -e 1000 -i 406 -a 0 h -t 50.7035 -s 212 -d 211 -p tcp -e 1000 -i 406 -a 0 r -t 50.7035 -s 211 -d 212 -p ack -e 40 -i 391 -a 0 + -t 50.7036 -s 108 -d 110 -p ack -e 40 -i 432 -a 8 - -t 50.7036 -s 108 -d 110 -p ack -e 40 -i 432 -a 8 h -t 50.7036 -s 108 -d 110 -p ack -e 40 -i 432 -a 8 - -t 50.7041 -s 111 -d 110 -p tcp -e 1000 -i 431 -a 3 h -t 50.7041 -s 111 -d 110 -p tcp -e 1000 -i 431 -a 3 - -t 50.7043 -s 212 -d 211 -p tcp -e 1000 -i 407 -a 0 h -t 50.7043 -s 212 -d 211 -p tcp -e 1000 -i 407 -a 0 + -t 50.7046 -s 110 -d 111 -p ack -e 40 -i 432 -a 8 - -t 50.7046 -s 110 -d 111 -p ack -e 40 -i 432 -a 8 h -t 50.7046 -s 110 -d 111 -p ack -e 40 -i 432 -a 8 r -t 50.7046 -s 108 -d 110 -p ack -e 40 -i 432 -a 8 + -t 50.705 -s 311 -d 312 -p ack -e 40 -i 360 -a 0 - -t 50.705 -s 311 -d 312 -p ack -e 40 -i 360 -a 0 h -t 50.705 -s 311 -d 312 -p ack -e 40 -i 360 -a 0 r -t 50.705 -s 310 -d 311 -p ack -e 40 -i 360 -a 0 - -t 50.7051 -s 212 -d 211 -p tcp -e 1000 -i 408 -a 0 h -t 50.7051 -s 212 -d 211 -p tcp -e 1000 -i 408 -a 0 + -t 50.7053 -s 211 -d 210 -p tcp -e 1000 -i 406 -a 0 - -t 50.7053 -s 211 -d 210 -p tcp -e 1000 -i 406 -a 0 h -t 50.7053 -s 211 -d 210 -p tcp -e 1000 -i 406 -a 0 r -t 50.7055 -s 212 -d 211 -p tcp -e 1000 -i 406 -a 0 - -t 50.7059 -s 212 -d 211 -p tcp -e 1000 -i 409 -a 0 h -t 50.7059 -s 212 -d 211 -p tcp -e 1000 -i 409 -a 0 + -t 50.706 -s 312 -d 311 -p tcp -e 1000 -i 368 -a 0 + -t 50.706 -s 312 -d 311 -p tcp -e 1000 -i 369 -a 0 - -t 50.706 -s 312 -d 311 -p tcp -e 1000 -i 368 -a 0 h -t 50.706 -s 312 -d 311 -p tcp -e 1000 -i 368 -a 0 r -t 50.706 -s 311 -d 312 -p ack -e 40 -i 360 -a 0 + -t 50.7061 -s 211 -d 210 -p tcp -e 1000 -i 407 -a 0 r -t 50.7063 -s 212 -d 211 -p tcp -e 1000 -i 407 -a 0 - -t 50.7068 -s 312 -d 311 -p tcp -e 1000 -i 369 -a 0 h -t 50.7068 -s 312 -d 311 -p tcp -e 1000 -i 369 -a 0 + -t 50.7069 -s 211 -d 210 -p tcp -e 1000 -i 408 -a 0 r -t 50.7071 -s 212 -d 211 -p tcp -e 1000 -i 408 -a 0 + -t 50.7077 -s 211 -d 210 -p tcp -e 1000 -i 409 -a 0 + -t 50.7078 -s 310 -d 304 -p tcp -e 1000 -i 358 -a 4 + -t 50.7078 -s 311 -d 310 -p tcp -e 1000 -i 368 -a 0 - -t 50.7078 -s 310 -d 304 -p tcp -e 1000 -i 358 -a 4 - -t 50.7078 -s 311 -d 310 -p tcp -e 1000 -i 368 -a 0 h -t 50.7078 -s 310 -d 304 -p tcp -e 1000 -i 358 -a 4 h -t 50.7078 -s 311 -d 310 -p tcp -e 1000 -i 368 -a 0 r -t 50.7078 -s 311 -d 310 -p tcp -e 1000 -i 358 -a 4 r -t 50.7079 -s 212 -d 211 -p tcp -e 1000 -i 409 -a 0 r -t 50.708 -s 312 -d 311 -p tcp -e 1000 -i 368 -a 0 + -t 50.7086 -s 311 -d 310 -p tcp -e 1000 -i 369 -a 0 r -t 50.7088 -s 312 -d 311 -p tcp -e 1000 -i 369 -a 0 + -t 50.7092 -s 211 -d 212 -p ack -e 40 -i 396 -a 4 - -t 50.7092 -s 211 -d 212 -p ack -e 40 -i 396 -a 4 h -t 50.7092 -s 211 -d 212 -p ack -e 40 -i 396 -a 4 r -t 50.7092 -s 210 -d 211 -p ack -e 40 -i 396 -a 4 r -t 50.7098 -s 310 -d 304 -p tcp -e 1000 -i 358 -a 4 r -t 50.7102 -s 211 -d 212 -p ack -e 40 -i 396 -a 4 + -t 50.712 -s 210 -d 204 -p tcp -e 1000 -i 389 -a 4 - -t 50.712 -s 210 -d 204 -p tcp -e 1000 -i 389 -a 4 h -t 50.712 -s 210 -d 204 -p tcp -e 1000 -i 389 -a 4 r -t 50.712 -s 211 -d 210 -p tcp -e 1000 -i 389 -a 4 + -t 50.7125 -s 211 -d 212 -p ack -e 40 -i 397 -a 1 - -t 50.7125 -s 211 -d 212 -p ack -e 40 -i 397 -a 1 h -t 50.7125 -s 211 -d 212 -p ack -e 40 -i 397 -a 1 r -t 50.7125 -s 210 -d 211 -p ack -e 40 -i 397 -a 1 + -t 50.7135 -s 212 -d 211 -p tcp -e 1000 -i 410 -a 1 - -t 50.7135 -s 212 -d 211 -p tcp -e 1000 -i 410 -a 1 h -t 50.7135 -s 212 -d 211 -p tcp -e 1000 -i 410 -a 1 r -t 50.7135 -s 211 -d 212 -p ack -e 40 -i 397 -a 1 + -t 50.7138 -s 204 -d 210 -p ack -e 40 -i 411 -a 4 - -t 50.7138 -s 204 -d 210 -p ack -e 40 -i 411 -a 4 h -t 50.7138 -s 204 -d 210 -p ack -e 40 -i 411 -a 4 r -t 50.714 -s 210 -d 204 -p tcp -e 1000 -i 389 -a 4 + -t 50.7148 -s 210 -d 211 -p ack -e 40 -i 411 -a 4 - -t 50.7148 -s 210 -d 211 -p ack -e 40 -i 411 -a 4 h -t 50.7148 -s 210 -d 211 -p ack -e 40 -i 411 -a 4 r -t 50.7148 -s 204 -d 210 -p ack -e 40 -i 411 -a 4 + -t 50.7153 -s 211 -d 210 -p tcp -e 1000 -i 410 -a 1 - -t 50.7153 -s 211 -d 210 -p tcp -e 1000 -i 407 -a 0 h -t 50.7153 -s 211 -d 210 -p tcp -e 1000 -i 407 -a 0 r -t 50.7155 -s 212 -d 211 -p tcp -e 1000 -i 410 -a 1 + -t 50.7178 -s 310 -d 304 -p tcp -e 1000 -i 359 -a 4 - -t 50.7178 -s 310 -d 304 -p tcp -e 1000 -i 359 -a 4 - -t 50.7178 -s 311 -d 310 -p tcp -e 1000 -i 369 -a 0 h -t 50.7178 -s 310 -d 304 -p tcp -e 1000 -i 359 -a 4 h -t 50.7178 -s 311 -d 310 -p tcp -e 1000 -i 369 -a 0 r -t 50.7178 -s 311 -d 310 -p tcp -e 1000 -i 359 -a 4 + -t 50.7191 -s 311 -d 312 -p ack -e 40 -i 361 -a 1 - -t 50.7191 -s 311 -d 312 -p ack -e 40 -i 361 -a 1 h -t 50.7191 -s 311 -d 312 -p ack -e 40 -i 361 -a 1 r -t 50.7191 -s 310 -d 311 -p ack -e 40 -i 361 -a 1 + -t 50.7196 -s 304 -d 310 -p ack -e 40 -i 370 -a 4 - -t 50.7196 -s 304 -d 310 -p ack -e 40 -i 370 -a 4 h -t 50.7196 -s 304 -d 310 -p ack -e 40 -i 370 -a 4 r -t 50.7198 -s 310 -d 304 -p tcp -e 1000 -i 359 -a 4 + -t 50.7201 -s 312 -d 311 -p tcp -e 1000 -i 371 -a 1 + -t 50.7201 -s 312 -d 311 -p tcp -e 1000 -i 372 -a 1 - -t 50.7201 -s 312 -d 311 -p tcp -e 1000 -i 371 -a 1 h -t 50.7201 -s 312 -d 311 -p tcp -e 1000 -i 371 -a 1 r -t 50.7201 -s 311 -d 312 -p ack -e 40 -i 361 -a 1 r -t 50.7206 -s 304 -d 310 -p ack -e 40 -i 370 -a 4 + -t 50.7207 -s 310 -d 311 -p ack -e 40 -i 370 -a 4 - -t 50.7207 -s 310 -d 311 -p ack -e 40 -i 370 -a 4 h -t 50.7207 -s 310 -d 311 -p ack -e 40 -i 370 -a 4 - -t 50.7209 -s 312 -d 311 -p tcp -e 1000 -i 372 -a 1 h -t 50.7209 -s 312 -d 311 -p tcp -e 1000 -i 372 -a 1 + -t 50.7211 -s 111 -d 112 -p ack -e 40 -i 428 -a 4 - -t 50.7211 -s 111 -d 112 -p ack -e 40 -i 428 -a 4 h -t 50.7211 -s 111 -d 112 -p ack -e 40 -i 428 -a 4 r -t 50.7211 -s 110 -d 111 -p ack -e 40 -i 428 -a 4 + -t 50.7219 -s 311 -d 310 -p tcp -e 1000 -i 371 -a 1 + -t 50.722 -s 210 -d 204 -p tcp -e 1000 -i 390 -a 4 - -t 50.722 -s 210 -d 204 -p tcp -e 1000 -i 390 -a 4 h -t 50.722 -s 210 -d 204 -p tcp -e 1000 -i 390 -a 4 r -t 50.722 -s 211 -d 210 -p tcp -e 1000 -i 390 -a 4 r -t 50.7221 -s 111 -d 112 -p ack -e 40 -i 428 -a 4 r -t 50.7221 -s 312 -d 311 -p tcp -e 1000 -i 371 -a 1 + -t 50.7227 -s 311 -d 310 -p tcp -e 1000 -i 372 -a 1 r -t 50.7229 -s 312 -d 311 -p tcp -e 1000 -i 372 -a 1 r -t 50.724 -s 210 -d 204 -p tcp -e 1000 -i 390 -a 4 - -t 50.7253 -s 211 -d 210 -p tcp -e 1000 -i 408 -a 0 h -t 50.7253 -s 211 -d 210 -p tcp -e 1000 -i 408 -a 0 - -t 50.7278 -s 311 -d 310 -p tcp -e 1000 -i 371 -a 1 h -t 50.7278 -s 311 -d 310 -p tcp -e 1000 -i 371 -a 1 + -t 50.7311 -s 111 -d 112 -p ack -e 40 -i 429 -a 4 - -t 50.7311 -s 111 -d 112 -p ack -e 40 -i 429 -a 4 h -t 50.7311 -s 111 -d 112 -p ack -e 40 -i 429 -a 4 r -t 50.7311 -s 110 -d 111 -p ack -e 40 -i 429 -a 4 + -t 50.732 -s 210 -d 200 -p tcp -e 1000 -i 392 -a 0 - -t 50.732 -s 210 -d 200 -p tcp -e 1000 -i 392 -a 0 h -t 50.732 -s 210 -d 200 -p tcp -e 1000 -i 392 -a 0 r -t 50.732 -s 211 -d 210 -p tcp -e 1000 -i 392 -a 0 r -t 50.7321 -s 111 -d 112 -p ack -e 40 -i 429 -a 4 + -t 50.7325 -s 211 -d 212 -p ack -e 40 -i 401 -a 1 - -t 50.7325 -s 211 -d 212 -p ack -e 40 -i 401 -a 1 h -t 50.7325 -s 211 -d 212 -p ack -e 40 -i 401 -a 1 r -t 50.7325 -s 210 -d 211 -p ack -e 40 -i 401 -a 1 r -t 50.7335 -s 211 -d 212 -p ack -e 40 -i 401 -a 1 r -t 50.734 -s 210 -d 200 -p tcp -e 1000 -i 392 -a 0 + -t 50.735 -s 311 -d 312 -p ack -e 40 -i 366 -a 8 - -t 50.735 -s 311 -d 312 -p ack -e 40 -i 366 -a 8 h -t 50.735 -s 311 -d 312 -p ack -e 40 -i 366 -a 8 r -t 50.735 -s 310 -d 311 -p ack -e 40 -i 366 -a 8 - -t 50.7353 -s 211 -d 210 -p tcp -e 1000 -i 409 -a 0 h -t 50.7353 -s 211 -d 210 -p tcp -e 1000 -i 409 -a 0 + -t 50.7357 -s 310 -d 306 -p tcp -e 1000 -i 362 -a 6 - -t 50.7357 -s 310 -d 306 -p tcp -e 1000 -i 362 -a 6 h -t 50.7357 -s 310 -d 306 -p tcp -e 1000 -i 362 -a 6 r -t 50.7357 -s 311 -d 310 -p tcp -e 1000 -i 362 -a 6 + -t 50.736 -s 312 -d 311 -p tcp -e 1000 -i 373 -a 8 + -t 50.736 -s 312 -d 311 -p tcp -e 1000 -i 374 -a 8 - -t 50.736 -s 312 -d 311 -p tcp -e 1000 -i 373 -a 8 h -t 50.736 -s 312 -d 311 -p tcp -e 1000 -i 373 -a 8 r -t 50.736 -s 311 -d 312 -p ack -e 40 -i 366 -a 8 - -t 50.7368 -s 312 -d 311 -p tcp -e 1000 -i 374 -a 8 h -t 50.7368 -s 312 -d 311 -p tcp -e 1000 -i 374 -a 8 r -t 50.7377 -s 310 -d 306 -p tcp -e 1000 -i 362 -a 6 + -t 50.7378 -s 311 -d 310 -p tcp -e 1000 -i 373 -a 8 - -t 50.7378 -s 311 -d 310 -p tcp -e 1000 -i 372 -a 1 h -t 50.7378 -s 311 -d 310 -p tcp -e 1000 -i 372 -a 1 r -t 50.738 -s 312 -d 311 -p tcp -e 1000 -i 373 -a 8 + -t 50.7386 -s 311 -d 310 -p tcp -e 1000 -i 374 -a 8 r -t 50.7388 -s 312 -d 311 -p tcp -e 1000 -i 374 -a 8 + -t 50.7392 -s 211 -d 212 -p ack -e 40 -i 402 -a 8 - -t 50.7392 -s 211 -d 212 -p ack -e 40 -i 402 -a 8 h -t 50.7392 -s 211 -d 212 -p ack -e 40 -i 402 -a 8 r -t 50.7392 -s 210 -d 211 -p ack -e 40 -i 402 -a 8 + -t 50.7402 -s 212 -d 211 -p tcp -e 1000 -i 412 -a 8 + -t 50.7402 -s 212 -d 211 -p tcp -e 1000 -i 413 -a 8 + -t 50.7402 -s 212 -d 211 -p tcp -e 1000 -i 414 -a 8 - -t 50.7402 -s 212 -d 211 -p tcp -e 1000 -i 412 -a 8 h -t 50.7402 -s 212 -d 211 -p tcp -e 1000 -i 412 -a 8 r -t 50.7402 -s 211 -d 212 -p ack -e 40 -i 402 -a 8 - -t 50.741 -s 212 -d 211 -p tcp -e 1000 -i 413 -a 8 h -t 50.741 -s 212 -d 211 -p tcp -e 1000 -i 413 -a 8 - -t 50.7418 -s 212 -d 211 -p tcp -e 1000 -i 414 -a 8 h -t 50.7418 -s 212 -d 211 -p tcp -e 1000 -i 414 -a 8 + -t 50.742 -s 210 -d 201 -p tcp -e 1000 -i 393 -a 1 + -t 50.742 -s 211 -d 210 -p tcp -e 1000 -i 412 -a 8 - -t 50.742 -s 210 -d 201 -p tcp -e 1000 -i 393 -a 1 h -t 50.742 -s 210 -d 201 -p tcp -e 1000 -i 393 -a 1 r -t 50.742 -s 211 -d 210 -p tcp -e 1000 -i 393 -a 1 r -t 50.7422 -s 212 -d 211 -p tcp -e 1000 -i 412 -a 8 + -t 50.7428 -s 211 -d 210 -p tcp -e 1000 -i 413 -a 8 r -t 50.743 -s 212 -d 211 -p tcp -e 1000 -i 413 -a 8 + -t 50.7436 -s 211 -d 210 -p tcp -e 1000 -i 414 -a 8 r -t 50.7438 -s 212 -d 211 -p tcp -e 1000 -i 414 -a 8 r -t 50.744 -s 210 -d 201 -p tcp -e 1000 -i 393 -a 1 - -t 50.7453 -s 211 -d 210 -p tcp -e 1000 -i 410 -a 1 h -t 50.7453 -s 211 -d 210 -p tcp -e 1000 -i 410 -a 1 + -t 50.7457 -s 310 -d 306 -p tcp -e 1000 -i 363 -a 6 - -t 50.7457 -s 310 -d 306 -p tcp -e 1000 -i 363 -a 6 h -t 50.7457 -s 310 -d 306 -p tcp -e 1000 -i 363 -a 6 r -t 50.7457 -s 311 -d 310 -p tcp -e 1000 -i 363 -a 6 + -t 50.7475 -s 306 -d 310 -p ack -e 40 -i 375 -a 6 - -t 50.7475 -s 306 -d 310 -p ack -e 40 -i 375 -a 6 h -t 50.7475 -s 306 -d 310 -p ack -e 40 -i 375 -a 6 r -t 50.7477 -s 310 -d 306 -p tcp -e 1000 -i 363 -a 6 - -t 50.7478 -s 311 -d 310 -p tcp -e 1000 -i 373 -a 8 h -t 50.7478 -s 311 -d 310 -p tcp -e 1000 -i 373 -a 8 + -t 50.7485 -s 310 -d 311 -p ack -e 40 -i 375 -a 6 - -t 50.7485 -s 310 -d 311 -p ack -e 40 -i 375 -a 6 h -t 50.7485 -s 310 -d 311 -p ack -e 40 -i 375 -a 6 r -t 50.7485 -s 306 -d 310 -p ack -e 40 -i 375 -a 6 + -t 50.7492 -s 211 -d 212 -p ack -e 40 -i 403 -a 6 - -t 50.7492 -s 211 -d 212 -p ack -e 40 -i 403 -a 6 h -t 50.7492 -s 211 -d 212 -p ack -e 40 -i 403 -a 6 r -t 50.7492 -s 210 -d 211 -p ack -e 40 -i 403 -a 6 + -t 50.7502 -s 212 -d 211 -p tcp -e 1000 -i 415 -a 6 + -t 50.7502 -s 212 -d 211 -p tcp -e 1000 -i 416 -a 6 + -t 50.7502 -s 212 -d 211 -p tcp -e 1000 -i 417 -a 6 - -t 50.7502 -s 212 -d 211 -p tcp -e 1000 -i 415 -a 6 h -t 50.7502 -s 212 -d 211 -p tcp -e 1000 -i 415 -a 6 r -t 50.7502 -s 211 -d 212 -p ack -e 40 -i 403 -a 6 - -t 50.751 -s 212 -d 211 -p tcp -e 1000 -i 416 -a 6 h -t 50.751 -s 212 -d 211 -p tcp -e 1000 -i 416 -a 6 - -t 50.7518 -s 212 -d 211 -p tcp -e 1000 -i 417 -a 6 h -t 50.7518 -s 212 -d 211 -p tcp -e 1000 -i 417 -a 6 + -t 50.752 -s 210 -d 201 -p tcp -e 1000 -i 394 -a 1 + -t 50.752 -s 211 -d 210 -p tcp -e 1000 -i 415 -a 6 - -t 50.752 -s 210 -d 201 -p tcp -e 1000 -i 394 -a 1 h -t 50.752 -s 210 -d 201 -p tcp -e 1000 -i 394 -a 1 r -t 50.752 -s 211 -d 210 -p tcp -e 1000 -i 394 -a 1 r -t 50.7522 -s 212 -d 211 -p tcp -e 1000 -i 415 -a 6 + -t 50.7528 -s 211 -d 210 -p tcp -e 1000 -i 416 -a 6 r -t 50.753 -s 212 -d 211 -p tcp -e 1000 -i 416 -a 6 + -t 50.7536 -s 211 -d 210 -p tcp -e 1000 -i 417 -a 6 + -t 50.7538 -s 201 -d 210 -p ack -e 40 -i 418 -a 1 - -t 50.7538 -s 201 -d 210 -p ack -e 40 -i 418 -a 1 h -t 50.7538 -s 201 -d 210 -p ack -e 40 -i 418 -a 1 r -t 50.7538 -s 212 -d 211 -p tcp -e 1000 -i 417 -a 6 r -t 50.754 -s 210 -d 201 -p tcp -e 1000 -i 394 -a 1 + -t 50.7548 -s 210 -d 211 -p ack -e 40 -i 418 -a 1 - -t 50.7548 -s 210 -d 211 -p ack -e 40 -i 418 -a 1 h -t 50.7548 -s 210 -d 211 -p ack -e 40 -i 418 -a 1 r -t 50.7548 -s 201 -d 210 -p ack -e 40 -i 418 -a 1 - -t 50.7553 -s 211 -d 210 -p tcp -e 1000 -i 412 -a 8 h -t 50.7553 -s 211 -d 210 -p tcp -e 1000 -i 412 -a 8 + -t 50.7557 -s 310 -d 307 -p tcp -e 1000 -i 364 -a 7 - -t 50.7557 -s 310 -d 307 -p tcp -e 1000 -i 364 -a 7 h -t 50.7557 -s 310 -d 307 -p tcp -e 1000 -i 364 -a 7 r -t 50.7557 -s 311 -d 310 -p tcp -e 1000 -i 364 -a 7 + -t 50.7569 -s 211 -d 212 -p ack -e 40 -i 404 -a 4 - -t 50.7569 -s 211 -d 212 -p ack -e 40 -i 404 -a 4 h -t 50.7569 -s 211 -d 212 -p ack -e 40 -i 404 -a 4 r -t 50.7569 -s 210 -d 211 -p ack -e 40 -i 404 -a 4 r -t 50.7577 -s 310 -d 307 -p tcp -e 1000 -i 364 -a 7 - -t 50.7578 -s 311 -d 310 -p tcp -e 1000 -i 374 -a 8 h -t 50.7578 -s 311 -d 310 -p tcp -e 1000 -i 374 -a 8 r -t 50.7579 -s 211 -d 212 -p ack -e 40 -i 404 -a 4 + -t 50.762 -s 210 -d 201 -p tcp -e 1000 -i 395 -a 1 - -t 50.762 -s 210 -d 201 -p tcp -e 1000 -i 395 -a 1 h -t 50.762 -s 210 -d 201 -p tcp -e 1000 -i 395 -a 1 r -t 50.762 -s 211 -d 210 -p tcp -e 1000 -i 395 -a 1 r -t 50.764 -s 210 -d 201 -p tcp -e 1000 -i 395 -a 1 - -t 50.7653 -s 211 -d 210 -p tcp -e 1000 -i 413 -a 8 h -t 50.7653 -s 211 -d 210 -p tcp -e 1000 -i 413 -a 8 + -t 50.7657 -s 310 -d 307 -p tcp -e 1000 -i 365 -a 7 - -t 50.7657 -s 310 -d 307 -p tcp -e 1000 -i 365 -a 7 h -t 50.7657 -s 310 -d 307 -p tcp -e 1000 -i 365 -a 7 r -t 50.7657 -s 311 -d 310 -p tcp -e 1000 -i 365 -a 7 + -t 50.7675 -s 307 -d 310 -p ack -e 40 -i 376 -a 7 - -t 50.7675 -s 307 -d 310 -p ack -e 40 -i 376 -a 7 h -t 50.7675 -s 307 -d 310 -p ack -e 40 -i 376 -a 7 r -t 50.7677 -s 310 -d 307 -p tcp -e 1000 -i 365 -a 7 + -t 50.7685 -s 310 -d 311 -p ack -e 40 -i 376 -a 7 - -t 50.7685 -s 310 -d 311 -p ack -e 40 -i 376 -a 7 h -t 50.7685 -s 310 -d 311 -p ack -e 40 -i 376 -a 7 r -t 50.7685 -s 307 -d 310 -p ack -e 40 -i 376 -a 7 + -t 50.772 -s 210 -d 206 -p tcp -e 1000 -i 398 -a 6 - -t 50.772 -s 210 -d 206 -p tcp -e 1000 -i 398 -a 6 h -t 50.772 -s 210 -d 206 -p tcp -e 1000 -i 398 -a 6 r -t 50.772 -s 211 -d 210 -p tcp -e 1000 -i 398 -a 6 + -t 50.7738 -s 206 -d 210 -p ack -e 40 -i 419 -a 6 - -t 50.7738 -s 206 -d 210 -p ack -e 40 -i 419 -a 6 h -t 50.7738 -s 206 -d 210 -p ack -e 40 -i 419 -a 6 r -t 50.774 -s 210 -d 206 -p tcp -e 1000 -i 398 -a 6 + -t 50.7748 -s 210 -d 211 -p ack -e 40 -i 419 -a 6 - -t 50.7748 -s 210 -d 211 -p ack -e 40 -i 419 -a 6 h -t 50.7748 -s 210 -d 211 -p ack -e 40 -i 419 -a 6 r -t 50.7748 -s 206 -d 210 -p ack -e 40 -i 419 -a 6 - -t 50.7753 -s 211 -d 210 -p tcp -e 1000 -i 414 -a 8 h -t 50.7753 -s 211 -d 210 -p tcp -e 1000 -i 414 -a 8 + -t 50.782 -s 210 -d 206 -p tcp -e 1000 -i 399 -a 6 - -t 50.782 -s 210 -d 206 -p tcp -e 1000 -i 399 -a 6 h -t 50.782 -s 210 -d 206 -p tcp -e 1000 -i 399 -a 6 r -t 50.782 -s 211 -d 210 -p tcp -e 1000 -i 399 -a 6 r -t 50.784 -s 210 -d 206 -p tcp -e 1000 -i 399 -a 6 - -t 50.7853 -s 211 -d 210 -p tcp -e 1000 -i 415 -a 6 h -t 50.7853 -s 211 -d 210 -p tcp -e 1000 -i 415 -a 6 + -t 50.7855 -s 208 -d 210 -p ack -e 40 -i 420 -a 8 - -t 50.7855 -s 208 -d 210 -p ack -e 40 -i 420 -a 8 h -t 50.7855 -s 208 -d 210 -p ack -e 40 -i 420 -a 8 + -t 50.7865 -s 210 -d 211 -p ack -e 40 -i 420 -a 8 - -t 50.7865 -s 210 -d 211 -p ack -e 40 -i 420 -a 8 h -t 50.7865 -s 210 -d 211 -p ack -e 40 -i 420 -a 8 r -t 50.7865 -s 208 -d 210 -p ack -e 40 -i 420 -a 8 + -t 50.792 -s 210 -d 206 -p tcp -e 1000 -i 400 -a 6 - -t 50.792 -s 210 -d 206 -p tcp -e 1000 -i 400 -a 6 h -t 50.792 -s 210 -d 206 -p tcp -e 1000 -i 400 -a 6 r -t 50.792 -s 211 -d 210 -p tcp -e 1000 -i 400 -a 6 + -t 50.7938 -s 206 -d 210 -p ack -e 40 -i 421 -a 6 - -t 50.7938 -s 206 -d 210 -p ack -e 40 -i 421 -a 6 h -t 50.7938 -s 206 -d 210 -p ack -e 40 -i 421 -a 6 r -t 50.794 -s 210 -d 206 -p tcp -e 1000 -i 400 -a 6 + -t 50.7948 -s 210 -d 211 -p ack -e 40 -i 421 -a 6 - -t 50.7948 -s 210 -d 211 -p ack -e 40 -i 421 -a 6 h -t 50.7948 -s 210 -d 211 -p ack -e 40 -i 421 -a 6 r -t 50.7948 -s 206 -d 210 -p ack -e 40 -i 421 -a 6 - -t 50.7953 -s 211 -d 210 -p tcp -e 1000 -i 416 -a 6 h -t 50.7953 -s 211 -d 210 -p tcp -e 1000 -i 416 -a 6 + -t 50.8041 -s 110 -d 103 -p tcp -e 1000 -i 430 -a 3 + -t 50.8041 -s 210 -d 203 -p tcp -e 1000 -i 405 -a 3 + -t 50.8041 -s 310 -d 303 -p tcp -e 1000 -i 367 -a 3 - -t 50.8041 -s 110 -d 103 -p tcp -e 1000 -i 430 -a 3 - -t 50.8041 -s 210 -d 203 -p tcp -e 1000 -i 405 -a 3 - -t 50.8041 -s 310 -d 303 -p tcp -e 1000 -i 367 -a 3 h -t 50.8041 -s 110 -d 103 -p tcp -e 1000 -i 430 -a 3 h -t 50.8041 -s 210 -d 203 -p tcp -e 1000 -i 405 -a 3 h -t 50.8041 -s 310 -d 303 -p tcp -e 1000 -i 367 -a 3 r -t 50.8041 -s 111 -d 110 -p tcp -e 1000 -i 430 -a 3 r -t 50.8041 -s 211 -d 210 -p tcp -e 1000 -i 405 -a 3 r -t 50.8041 -s 311 -d 310 -p tcp -e 1000 -i 367 -a 3 + -t 50.8045 -s 212 -d 211 -p tcp -e 1000 -i 422 -a 3 - -t 50.8045 -s 212 -d 211 -p tcp -e 1000 -i 422 -a 3 h -t 50.8045 -s 212 -d 211 -p tcp -e 1000 -i 422 -a 3 + -t 50.805 -s 111 -d 112 -p ack -e 40 -i 432 -a 8 - -t 50.805 -s 111 -d 112 -p ack -e 40 -i 432 -a 8 h -t 50.805 -s 111 -d 112 -p ack -e 40 -i 432 -a 8 r -t 50.805 -s 110 -d 111 -p ack -e 40 -i 432 -a 8 - -t 50.8053 -s 211 -d 210 -p tcp -e 1000 -i 417 -a 6 h -t 50.8053 -s 211 -d 210 -p tcp -e 1000 -i 417 -a 6 + -t 50.806 -s 112 -d 111 -p tcp -e 1000 -i 433 -a 8 - -t 50.806 -s 112 -d 111 -p tcp -e 1000 -i 433 -a 8 h -t 50.806 -s 112 -d 111 -p tcp -e 1000 -i 433 -a 8 r -t 50.806 -s 111 -d 112 -p ack -e 40 -i 432 -a 8 r -t 50.8061 -s 110 -d 103 -p tcp -e 1000 -i 430 -a 3 r -t 50.8061 -s 210 -d 203 -p tcp -e 1000 -i 405 -a 3 r -t 50.8061 -s 310 -d 303 -p tcp -e 1000 -i 367 -a 3 + -t 50.8063 -s 211 -d 210 -p tcp -e 1000 -i 422 -a 3 r -t 50.8065 -s 212 -d 211 -p tcp -e 1000 -i 422 -a 3 + -t 50.8078 -s 111 -d 110 -p tcp -e 1000 -i 433 -a 8 - -t 50.8078 -s 111 -d 110 -p tcp -e 1000 -i 433 -a 8 h -t 50.8078 -s 111 -d 110 -p tcp -e 1000 -i 433 -a 8 r -t 50.808 -s 112 -d 111 -p tcp -e 1000 -i 433 -a 8 + -t 50.8141 -s 110 -d 103 -p tcp -e 1000 -i 431 -a 3 - -t 50.8141 -s 110 -d 103 -p tcp -e 1000 -i 431 -a 3 h -t 50.8141 -s 110 -d 103 -p tcp -e 1000 -i 431 -a 3 r -t 50.8141 -s 111 -d 110 -p tcp -e 1000 -i 431 -a 3 + -t 50.8152 -s 211 -d 212 -p ack -e 40 -i 411 -a 4 - -t 50.8152 -s 211 -d 212 -p ack -e 40 -i 411 -a 4 h -t 50.8152 -s 211 -d 212 -p ack -e 40 -i 411 -a 4 r -t 50.8152 -s 210 -d 211 -p ack -e 40 -i 411 -a 4 + -t 50.8153 -s 210 -d 200 -p tcp -e 1000 -i 406 -a 0 - -t 50.8153 -s 210 -d 200 -p tcp -e 1000 -i 406 -a 0 - -t 50.8153 -s 211 -d 210 -p tcp -e 1000 -i 422 -a 3 h -t 50.8153 -s 210 -d 200 -p tcp -e 1000 -i 406 -a 0 h -t 50.8153 -s 211 -d 210 -p tcp -e 1000 -i 422 -a 3 r -t 50.8153 -s 211 -d 210 -p tcp -e 1000 -i 406 -a 0 + -t 50.8159 -s 103 -d 110 -p ack -e 40 -i 434 -a 3 - -t 50.8159 -s 103 -d 110 -p ack -e 40 -i 434 -a 3 h -t 50.8159 -s 103 -d 110 -p ack -e 40 -i 434 -a 3 r -t 50.8161 -s 110 -d 103 -p tcp -e 1000 -i 431 -a 3 r -t 50.8162 -s 211 -d 212 -p ack -e 40 -i 411 -a 4 + -t 50.8169 -s 110 -d 111 -p ack -e 40 -i 434 -a 3 - -t 50.8169 -s 110 -d 111 -p ack -e 40 -i 434 -a 3 h -t 50.8169 -s 110 -d 111 -p ack -e 40 -i 434 -a 3 r -t 50.8169 -s 103 -d 110 -p ack -e 40 -i 434 -a 3 + -t 50.8171 -s 200 -d 210 -p ack -e 40 -i 423 -a 0 - -t 50.8171 -s 200 -d 210 -p ack -e 40 -i 423 -a 0 h -t 50.8171 -s 200 -d 210 -p ack -e 40 -i 423 -a 0 r -t 50.8173 -s 210 -d 200 -p tcp -e 1000 -i 406 -a 0 + -t 50.8178 -s 310 -d 300 -p tcp -e 1000 -i 368 -a 0 - -t 50.8178 -s 310 -d 300 -p tcp -e 1000 -i 368 -a 0 h -t 50.8178 -s 310 -d 300 -p tcp -e 1000 -i 368 -a 0 r -t 50.8178 -s 311 -d 310 -p tcp -e 1000 -i 368 -a 0 + -t 50.8181 -s 210 -d 211 -p ack -e 40 -i 423 -a 0 - -t 50.8181 -s 210 -d 211 -p ack -e 40 -i 423 -a 0 h -t 50.8181 -s 210 -d 211 -p ack -e 40 -i 423 -a 0 r -t 50.8181 -s 200 -d 210 -p ack -e 40 -i 423 -a 0 r -t 50.8198 -s 310 -d 300 -p tcp -e 1000 -i 368 -a 0 + -t 50.8206 -s 112 -d 111 -p tcp -e 1000 -i 435 -a 9 + -t 50.8206 -s 112 -d 111 -p tcp -e 1000 -i 436 -a 9 + -t 50.8206 -s 112 -d 111 -p tcp -e 1000 -i 437 -a 9 + -t 50.8206 -s 212 -d 211 -p tcp -e 1000 -i 424 -a 9 + -t 50.8206 -s 312 -d 311 -p tcp -e 1000 -i 377 -a 9 - -t 50.8206 -s 112 -d 111 -p tcp -e 1000 -i 435 -a 9 - -t 50.8206 -s 212 -d 211 -p tcp -e 1000 -i 424 -a 9 - -t 50.8206 -s 312 -d 311 -p tcp -e 1000 -i 377 -a 9 h -t 50.8206 -s 112 -d 111 -p tcp -e 1000 -i 435 -a 9 h -t 50.8206 -s 212 -d 211 -p tcp -e 1000 -i 424 -a 9 h -t 50.8206 -s 312 -d 311 -p tcp -e 1000 -i 377 -a 9 + -t 50.8211 -s 311 -d 312 -p ack -e 40 -i 370 -a 4 - -t 50.8211 -s 311 -d 312 -p ack -e 40 -i 370 -a 4 h -t 50.8211 -s 311 -d 312 -p ack -e 40 -i 370 -a 4 r -t 50.8211 -s 310 -d 311 -p ack -e 40 -i 370 -a 4 - -t 50.8214 -s 112 -d 111 -p tcp -e 1000 -i 436 -a 9 h -t 50.8214 -s 112 -d 111 -p tcp -e 1000 -i 436 -a 9 + -t 50.8221 -s 312 -d 311 -p tcp -e 1000 -i 378 -a 4 + -t 50.8221 -s 312 -d 311 -p tcp -e 1000 -i 379 -a 4 - -t 50.8221 -s 312 -d 311 -p tcp -e 1000 -i 378 -a 4 h -t 50.8221 -s 312 -d 311 -p tcp -e 1000 -i 378 -a 4 r -t 50.8221 -s 311 -d 312 -p ack -e 40 -i 370 -a 4 - -t 50.8222 -s 112 -d 111 -p tcp -e 1000 -i 437 -a 9 h -t 50.8222 -s 112 -d 111 -p tcp -e 1000 -i 437 -a 9 + -t 50.8224 -s 111 -d 110 -p tcp -e 1000 -i 435 -a 9 + -t 50.8224 -s 211 -d 210 -p tcp -e 1000 -i 424 -a 9 + -t 50.8224 -s 311 -d 310 -p tcp -e 1000 -i 377 -a 9 - -t 50.8224 -s 111 -d 110 -p tcp -e 1000 -i 435 -a 9 - -t 50.8224 -s 311 -d 310 -p tcp -e 1000 -i 377 -a 9 h -t 50.8224 -s 111 -d 110 -p tcp -e 1000 -i 435 -a 9 h -t 50.8224 -s 311 -d 310 -p tcp -e 1000 -i 377 -a 9 r -t 50.8226 -s 112 -d 111 -p tcp -e 1000 -i 435 -a 9 r -t 50.8226 -s 212 -d 211 -p tcp -e 1000 -i 424 -a 9 r -t 50.8226 -s 312 -d 311 -p tcp -e 1000 -i 377 -a 9 - -t 50.8229 -s 312 -d 311 -p tcp -e 1000 -i 379 -a 4 h -t 50.8229 -s 312 -d 311 -p tcp -e 1000 -i 379 -a 4 + -t 50.8232 -s 111 -d 110 -p tcp -e 1000 -i 436 -a 9 r -t 50.8234 -s 112 -d 111 -p tcp -e 1000 -i 436 -a 9 + -t 50.8238 -s 204 -d 210 -p ack -e 40 -i 425 -a 4 - -t 50.8238 -s 204 -d 210 -p ack -e 40 -i 425 -a 4 h -t 50.8238 -s 204 -d 210 -p ack -e 40 -i 425 -a 4 + -t 50.8239 -s 311 -d 310 -p tcp -e 1000 -i 378 -a 4 + -t 50.824 -s 111 -d 110 -p tcp -e 1000 -i 437 -a 9 r -t 50.8241 -s 312 -d 311 -p tcp -e 1000 -i 378 -a 4 r -t 50.8242 -s 112 -d 111 -p tcp -e 1000 -i 437 -a 9 + -t 50.8247 -s 311 -d 310 -p tcp -e 1000 -i 379 -a 4 + -t 50.8248 -s 210 -d 211 -p ack -e 40 -i 425 -a 4 - -t 50.8248 -s 210 -d 211 -p ack -e 40 -i 425 -a 4 h -t 50.8248 -s 210 -d 211 -p ack -e 40 -i 425 -a 4 r -t 50.8248 -s 204 -d 210 -p ack -e 40 -i 425 -a 4 r -t 50.8249 -s 312 -d 311 -p tcp -e 1000 -i 379 -a 4 + -t 50.8253 -s 210 -d 200 -p tcp -e 1000 -i 407 -a 0 - -t 50.8253 -s 210 -d 200 -p tcp -e 1000 -i 407 -a 0 - -t 50.8253 -s 211 -d 210 -p tcp -e 1000 -i 424 -a 9 h -t 50.8253 -s 210 -d 200 -p tcp -e 1000 -i 407 -a 0 h -t 50.8253 -s 211 -d 210 -p tcp -e 1000 -i 424 -a 9 r -t 50.8253 -s 211 -d 210 -p tcp -e 1000 -i 407 -a 0 r -t 50.8273 -s 210 -d 200 -p tcp -e 1000 -i 407 -a 0 + -t 50.8278 -s 310 -d 300 -p tcp -e 1000 -i 369 -a 0 - -t 50.8278 -s 310 -d 300 -p tcp -e 1000 -i 369 -a 0 h -t 50.8278 -s 310 -d 300 -p tcp -e 1000 -i 369 -a 0 r -t 50.8278 -s 311 -d 310 -p tcp -e 1000 -i 369 -a 0 + -t 50.8296 -s 300 -d 310 -p ack -e 40 -i 380 -a 0 - -t 50.8296 -s 300 -d 310 -p ack -e 40 -i 380 -a 0 h -t 50.8296 -s 300 -d 310 -p ack -e 40 -i 380 -a 0 r -t 50.8298 -s 310 -d 300 -p tcp -e 1000 -i 369 -a 0 r -t 50.8306 -s 300 -d 310 -p ack -e 40 -i 380 -a 0 + -t 50.8307 -s 310 -d 311 -p ack -e 40 -i 380 -a 0 - -t 50.8307 -s 310 -d 311 -p ack -e 40 -i 380 -a 0 h -t 50.8307 -s 310 -d 311 -p ack -e 40 -i 380 -a 0 - -t 50.8324 -s 111 -d 110 -p tcp -e 1000 -i 436 -a 9 - -t 50.8324 -s 311 -d 310 -p tcp -e 1000 -i 378 -a 4 h -t 50.8324 -s 111 -d 110 -p tcp -e 1000 -i 436 -a 9 h -t 50.8324 -s 311 -d 310 -p tcp -e 1000 -i 378 -a 4 + -t 50.8353 -s 210 -d 200 -p tcp -e 1000 -i 408 -a 0 - -t 50.8353 -s 210 -d 200 -p tcp -e 1000 -i 408 -a 0 h -t 50.8353 -s 210 -d 200 -p tcp -e 1000 -i 408 -a 0 r -t 50.8353 -s 211 -d 210 -p tcp -e 1000 -i 408 -a 0 + -t 50.8371 -s 200 -d 210 -p ack -e 40 -i 426 -a 0 - -t 50.8371 -s 200 -d 210 -p ack -e 40 -i 426 -a 0 h -t 50.8371 -s 200 -d 210 -p ack -e 40 -i 426 -a 0 r -t 50.8373 -s 210 -d 200 -p tcp -e 1000 -i 408 -a 0 + -t 50.8378 -s 310 -d 301 -p tcp -e 1000 -i 371 -a 1 - -t 50.8378 -s 310 -d 301 -p tcp -e 1000 -i 371 -a 1 h -t 50.8378 -s 310 -d 301 -p tcp -e 1000 -i 371 -a 1 r -t 50.8378 -s 311 -d 310 -p tcp -e 1000 -i 371 -a 1 + -t 50.8381 -s 210 -d 211 -p ack -e 40 -i 426 -a 0 - -t 50.8381 -s 210 -d 211 -p ack -e 40 -i 426 -a 0 h -t 50.8381 -s 210 -d 211 -p ack -e 40 -i 426 -a 0 r -t 50.8381 -s 200 -d 210 -p ack -e 40 -i 426 -a 0 r -t 50.8398 -s 310 -d 301 -p tcp -e 1000 -i 371 -a 1 - -t 50.8424 -s 111 -d 110 -p tcp -e 1000 -i 437 -a 9 - -t 50.8424 -s 311 -d 310 -p tcp -e 1000 -i 379 -a 4 h -t 50.8424 -s 111 -d 110 -p tcp -e 1000 -i 437 -a 9 h -t 50.8424 -s 311 -d 310 -p tcp -e 1000 -i 379 -a 4 + -t 50.8453 -s 210 -d 200 -p tcp -e 1000 -i 409 -a 0 - -t 50.8453 -s 210 -d 200 -p tcp -e 1000 -i 409 -a 0 h -t 50.8453 -s 210 -d 200 -p tcp -e 1000 -i 409 -a 0 r -t 50.8453 -s 211 -d 210 -p tcp -e 1000 -i 409 -a 0 r -t 50.8473 -s 210 -d 200 -p tcp -e 1000 -i 409 -a 0 + -t 50.8478 -s 310 -d 301 -p tcp -e 1000 -i 372 -a 1 - -t 50.8478 -s 310 -d 301 -p tcp -e 1000 -i 372 -a 1 h -t 50.8478 -s 310 -d 301 -p tcp -e 1000 -i 372 -a 1 r -t 50.8478 -s 311 -d 310 -p tcp -e 1000 -i 372 -a 1 + -t 50.8489 -s 311 -d 312 -p ack -e 40 -i 375 -a 6 - -t 50.8489 -s 311 -d 312 -p ack -e 40 -i 375 -a 6 h -t 50.8489 -s 311 -d 312 -p ack -e 40 -i 375 -a 6 r -t 50.8489 -s 310 -d 311 -p ack -e 40 -i 375 -a 6 + -t 50.8496 -s 301 -d 310 -p ack -e 40 -i 381 -a 1 - -t 50.8496 -s 301 -d 310 -p ack -e 40 -i 381 -a 1 h -t 50.8496 -s 301 -d 310 -p ack -e 40 -i 381 -a 1 r -t 50.8498 -s 310 -d 301 -p tcp -e 1000 -i 372 -a 1 + -t 50.8499 -s 312 -d 311 -p tcp -e 1000 -i 382 -a 6 + -t 50.8499 -s 312 -d 311 -p tcp -e 1000 -i 383 -a 6 - -t 50.8499 -s 312 -d 311 -p tcp -e 1000 -i 382 -a 6 h -t 50.8499 -s 312 -d 311 -p tcp -e 1000 -i 382 -a 6 r -t 50.8499 -s 311 -d 312 -p ack -e 40 -i 375 -a 6 r -t 50.8506 -s 301 -d 310 -p ack -e 40 -i 381 -a 1 + -t 50.8507 -s 310 -d 311 -p ack -e 40 -i 381 -a 1 - -t 50.8507 -s 310 -d 311 -p ack -e 40 -i 381 -a 1 - -t 50.8507 -s 312 -d 311 -p tcp -e 1000 -i 383 -a 6 h -t 50.8507 -s 310 -d 311 -p ack -e 40 -i 381 -a 1 h -t 50.8507 -s 312 -d 311 -p tcp -e 1000 -i 383 -a 6 + -t 50.8517 -s 311 -d 310 -p tcp -e 1000 -i 382 -a 6 r -t 50.8519 -s 312 -d 311 -p tcp -e 1000 -i 382 -a 6 - -t 50.8524 -s 311 -d 310 -p tcp -e 1000 -i 382 -a 6 h -t 50.8524 -s 311 -d 310 -p tcp -e 1000 -i 382 -a 6 + -t 50.8525 -s 311 -d 310 -p tcp -e 1000 -i 383 -a 6 r -t 50.8527 -s 312 -d 311 -p tcp -e 1000 -i 383 -a 6 + -t 50.8552 -s 211 -d 212 -p ack -e 40 -i 418 -a 1 - -t 50.8552 -s 211 -d 212 -p ack -e 40 -i 418 -a 1 h -t 50.8552 -s 211 -d 212 -p ack -e 40 -i 418 -a 1 r -t 50.8552 -s 210 -d 211 -p ack -e 40 -i 418 -a 1 + -t 50.8553 -s 210 -d 201 -p tcp -e 1000 -i 410 -a 1 - -t 50.8553 -s 210 -d 201 -p tcp -e 1000 -i 410 -a 1 h -t 50.8553 -s 210 -d 201 -p tcp -e 1000 -i 410 -a 1 r -t 50.8553 -s 211 -d 210 -p tcp -e 1000 -i 410 -a 1 r -t 50.8562 -s 211 -d 212 -p ack -e 40 -i 418 -a 1 + -t 50.8571 -s 201 -d 210 -p ack -e 40 -i 427 -a 1 - -t 50.8571 -s 201 -d 210 -p ack -e 40 -i 427 -a 1 h -t 50.8571 -s 201 -d 210 -p ack -e 40 -i 427 -a 1 r -t 50.8573 -s 210 -d 201 -p tcp -e 1000 -i 410 -a 1 + -t 50.8578 -s 310 -d 308 -p tcp -e 1000 -i 373 -a 8 - -t 50.8578 -s 310 -d 308 -p tcp -e 1000 -i 373 -a 8 h -t 50.8578 -s 310 -d 308 -p tcp -e 1000 -i 373 -a 8 r -t 50.8578 -s 311 -d 310 -p tcp -e 1000 -i 373 -a 8 + -t 50.8581 -s 210 -d 211 -p ack -e 40 -i 427 -a 1 - -t 50.8581 -s 210 -d 211 -p ack -e 40 -i 427 -a 1 h -t 50.8581 -s 210 -d 211 -p ack -e 40 -i 427 -a 1 r -t 50.8581 -s 201 -d 210 -p ack -e 40 -i 427 -a 1 r -t 50.8598 -s 310 -d 308 -p tcp -e 1000 -i 373 -a 8 + -t 50.8609 -s 112 -d 111 -p tcp -e 1000 -i 438 -a 2 + -t 50.8609 -s 112 -d 111 -p tcp -e 1000 -i 439 -a 2 + -t 50.8609 -s 112 -d 111 -p tcp -e 1000 -i 440 -a 2 + -t 50.8609 -s 112 -d 111 -p tcp -e 1000 -i 441 -a 2 + -t 50.8609 -s 112 -d 111 -p tcp -e 1000 -i 442 -a 2 + -t 50.8609 -s 112 -d 111 -p tcp -e 1000 -i 443 -a 2 + -t 50.8609 -s 112 -d 111 -p tcp -e 1000 -i 444 -a 2 + -t 50.8609 -s 112 -d 111 -p tcp -e 1000 -i 445 -a 2 + -t 50.8609 -s 112 -d 111 -p tcp -e 1000 -i 446 -a 2 + -t 50.8609 -s 112 -d 111 -p tcp -e 1000 -i 447 -a 2 + -t 50.8609 -s 212 -d 211 -p tcp -e 1000 -i 428 -a 2 + -t 50.8609 -s 312 -d 311 -p tcp -e 1000 -i 384 -a 2 - -t 50.8609 -s 112 -d 111 -p tcp -e 1000 -i 438 -a 2 - -t 50.8609 -s 212 -d 211 -p tcp -e 1000 -i 428 -a 2 - -t 50.8609 -s 312 -d 311 -p tcp -e 1000 -i 384 -a 2 h -t 50.8609 -s 112 -d 111 -p tcp -e 1000 -i 438 -a 2 h -t 50.8609 -s 212 -d 211 -p tcp -e 1000 -i 428 -a 2 h -t 50.8609 -s 312 -d 311 -p tcp -e 1000 -i 384 -a 2 - -t 50.8617 -s 112 -d 111 -p tcp -e 1000 -i 439 -a 2 h -t 50.8617 -s 112 -d 111 -p tcp -e 1000 -i 439 -a 2 - -t 50.8624 -s 311 -d 310 -p tcp -e 1000 -i 383 -a 6 h -t 50.8624 -s 311 -d 310 -p tcp -e 1000 -i 383 -a 6 - -t 50.8625 -s 112 -d 111 -p tcp -e 1000 -i 440 -a 2 h -t 50.8625 -s 112 -d 111 -p tcp -e 1000 -i 440 -a 2 + -t 50.8627 -s 111 -d 110 -p tcp -e 1000 -i 438 -a 2 + -t 50.8627 -s 211 -d 210 -p tcp -e 1000 -i 428 -a 2 + -t 50.8627 -s 311 -d 310 -p tcp -e 1000 -i 384 -a 2 - -t 50.8627 -s 111 -d 110 -p tcp -e 1000 -i 438 -a 2 - -t 50.8627 -s 211 -d 210 -p tcp -e 1000 -i 428 -a 2 h -t 50.8627 -s 111 -d 110 -p tcp -e 1000 -i 438 -a 2 h -t 50.8627 -s 211 -d 210 -p tcp -e 1000 -i 428 -a 2 r -t 50.8629 -s 112 -d 111 -p tcp -e 1000 -i 438 -a 2 r -t 50.8629 -s 212 -d 211 -p tcp -e 1000 -i 428 -a 2 r -t 50.8629 -s 312 -d 311 -p tcp -e 1000 -i 384 -a 2 - -t 50.8633 -s 112 -d 111 -p tcp -e 1000 -i 441 -a 2 h -t 50.8633 -s 112 -d 111 -p tcp -e 1000 -i 441 -a 2 + -t 50.8635 -s 111 -d 110 -p tcp -e 1000 -i 439 -a 2 r -t 50.8637 -s 112 -d 111 -p tcp -e 1000 -i 439 -a 2 - -t 50.8641 -s 112 -d 111 -p tcp -e 1000 -i 442 -a 2 h -t 50.8641 -s 112 -d 111 -p tcp -e 1000 -i 442 -a 2 + -t 50.8643 -s 111 -d 110 -p tcp -e 1000 -i 440 -a 2 r -t 50.8645 -s 112 -d 111 -p tcp -e 1000 -i 440 -a 2 - -t 50.8649 -s 112 -d 111 -p tcp -e 1000 -i 443 -a 2 h -t 50.8649 -s 112 -d 111 -p tcp -e 1000 -i 443 -a 2 + -t 50.8651 -s 111 -d 110 -p tcp -e 1000 -i 441 -a 2 + -t 50.8653 -s 210 -d 208 -p tcp -e 1000 -i 412 -a 8 - -t 50.8653 -s 210 -d 208 -p tcp -e 1000 -i 412 -a 8 h -t 50.8653 -s 210 -d 208 -p tcp -e 1000 -i 412 -a 8 r -t 50.8653 -s 112 -d 111 -p tcp -e 1000 -i 441 -a 2 r -t 50.8653 -s 211 -d 210 -p tcp -e 1000 -i 412 -a 8 - -t 50.8657 -s 112 -d 111 -p tcp -e 1000 -i 444 -a 2 h -t 50.8657 -s 112 -d 111 -p tcp -e 1000 -i 444 -a 2 + -t 50.8659 -s 111 -d 110 -p tcp -e 1000 -i 442 -a 2 r -t 50.8661 -s 112 -d 111 -p tcp -e 1000 -i 442 -a 2 - -t 50.8665 -s 112 -d 111 -p tcp -e 1000 -i 445 -a 2 h -t 50.8665 -s 112 -d 111 -p tcp -e 1000 -i 445 -a 2 + -t 50.8667 -s 111 -d 110 -p tcp -e 1000 -i 443 -a 2 r -t 50.8669 -s 112 -d 111 -p tcp -e 1000 -i 443 -a 2 - -t 50.8673 -s 112 -d 111 -p tcp -e 1000 -i 446 -a 2 h -t 50.8673 -s 112 -d 111 -p tcp -e 1000 -i 446 -a 2 r -t 50.8673 -s 210 -d 208 -p tcp -e 1000 -i 412 -a 8 + -t 50.8675 -s 111 -d 110 -p tcp -e 1000 -i 444 -a 2 r -t 50.8677 -s 112 -d 111 -p tcp -e 1000 -i 444 -a 2 + -t 50.8678 -s 310 -d 308 -p tcp -e 1000 -i 374 -a 8 - -t 50.8678 -s 310 -d 308 -p tcp -e 1000 -i 374 -a 8 h -t 50.8678 -s 310 -d 308 -p tcp -e 1000 -i 374 -a 8 r -t 50.8678 -s 311 -d 310 -p tcp -e 1000 -i 374 -a 8 - -t 50.8681 -s 112 -d 111 -p tcp -e 1000 -i 447 -a 2 h -t 50.8681 -s 112 -d 111 -p tcp -e 1000 -i 447 -a 2 + -t 50.8683 -s 111 -d 110 -p tcp -e 1000 -i 445 -a 2 r -t 50.8685 -s 112 -d 111 -p tcp -e 1000 -i 445 -a 2 + -t 50.8689 -s 311 -d 312 -p ack -e 40 -i 376 -a 7 - -t 50.8689 -s 311 -d 312 -p ack -e 40 -i 376 -a 7 h -t 50.8689 -s 311 -d 312 -p ack -e 40 -i 376 -a 7 r -t 50.8689 -s 310 -d 311 -p ack -e 40 -i 376 -a 7 + -t 50.8691 -s 111 -d 110 -p tcp -e 1000 -i 446 -a 2 r -t 50.8693 -s 112 -d 111 -p tcp -e 1000 -i 446 -a 2 + -t 50.8696 -s 308 -d 310 -p ack -e 40 -i 385 -a 8 - -t 50.8696 -s 308 -d 310 -p ack -e 40 -i 385 -a 8 h -t 50.8696 -s 308 -d 310 -p ack -e 40 -i 385 -a 8 r -t 50.8698 -s 310 -d 308 -p tcp -e 1000 -i 374 -a 8 + -t 50.8699 -s 111 -d 110 -p tcp -e 1000 -i 447 -a 2 + -t 50.8699 -s 312 -d 311 -p tcp -e 1000 -i 386 -a 7 + -t 50.8699 -s 312 -d 311 -p tcp -e 1000 -i 387 -a 7 + -t 50.8699 -s 312 -d 311 -p tcp -e 1000 -i 388 -a 7 - -t 50.8699 -s 312 -d 311 -p tcp -e 1000 -i 386 -a 7 h -t 50.8699 -s 312 -d 311 -p tcp -e 1000 -i 386 -a 7 r -t 50.8699 -s 311 -d 312 -p ack -e 40 -i 376 -a 7 r -t 50.8701 -s 112 -d 111 -p tcp -e 1000 -i 447 -a 2 r -t 50.8706 -s 308 -d 310 -p ack -e 40 -i 385 -a 8 + -t 50.8707 -s 310 -d 311 -p ack -e 40 -i 385 -a 8 - -t 50.8707 -s 310 -d 311 -p ack -e 40 -i 385 -a 8 - -t 50.8707 -s 312 -d 311 -p tcp -e 1000 -i 387 -a 7 h -t 50.8707 -s 310 -d 311 -p ack -e 40 -i 385 -a 8 h -t 50.8707 -s 312 -d 311 -p tcp -e 1000 -i 387 -a 7 - -t 50.8715 -s 312 -d 311 -p tcp -e 1000 -i 388 -a 7 h -t 50.8715 -s 312 -d 311 -p tcp -e 1000 -i 388 -a 7 + -t 50.8717 -s 311 -d 310 -p tcp -e 1000 -i 386 -a 7 r -t 50.8719 -s 312 -d 311 -p tcp -e 1000 -i 386 -a 7 - -t 50.8724 -s 311 -d 310 -p tcp -e 1000 -i 384 -a 2 h -t 50.8724 -s 311 -d 310 -p tcp -e 1000 -i 384 -a 2 + -t 50.8725 -s 311 -d 310 -p tcp -e 1000 -i 387 -a 7 - -t 50.8727 -s 111 -d 110 -p tcp -e 1000 -i 439 -a 2 h -t 50.8727 -s 111 -d 110 -p tcp -e 1000 -i 439 -a 2 r -t 50.8727 -s 312 -d 311 -p tcp -e 1000 -i 387 -a 7 + -t 50.8733 -s 311 -d 310 -p tcp -e 1000 -i 388 -a 7 r -t 50.8735 -s 312 -d 311 -p tcp -e 1000 -i 388 -a 7 + -t 50.8752 -s 211 -d 212 -p ack -e 40 -i 419 -a 6 - -t 50.8752 -s 211 -d 212 -p ack -e 40 -i 419 -a 6 h -t 50.8752 -s 211 -d 212 -p ack -e 40 -i 419 -a 6 r -t 50.8752 -s 210 -d 211 -p ack -e 40 -i 419 -a 6 + -t 50.8753 -s 210 -d 208 -p tcp -e 1000 -i 413 -a 8 - -t 50.8753 -s 210 -d 208 -p tcp -e 1000 -i 413 -a 8 h -t 50.8753 -s 210 -d 208 -p tcp -e 1000 -i 413 -a 8 r -t 50.8753 -s 211 -d 210 -p tcp -e 1000 -i 413 -a 8 r -t 50.8762 -s 211 -d 212 -p ack -e 40 -i 419 -a 6 + -t 50.8763 -s 212 -d 211 -p tcp -e 1000 -i 429 -a 6 - -t 50.8763 -s 212 -d 211 -p tcp -e 1000 -i 429 -a 6 h -t 50.8763 -s 212 -d 211 -p tcp -e 1000 -i 429 -a 6 + -t 50.8771 -s 208 -d 210 -p ack -e 40 -i 430 -a 8 - -t 50.8771 -s 208 -d 210 -p ack -e 40 -i 430 -a 8 h -t 50.8771 -s 208 -d 210 -p ack -e 40 -i 430 -a 8 r -t 50.8773 -s 210 -d 208 -p tcp -e 1000 -i 413 -a 8 + -t 50.8781 -s 210 -d 211 -p ack -e 40 -i 430 -a 8 + -t 50.8781 -s 211 -d 210 -p tcp -e 1000 -i 429 -a 6 - -t 50.8781 -s 210 -d 211 -p ack -e 40 -i 430 -a 8 - -t 50.8781 -s 211 -d 210 -p tcp -e 1000 -i 429 -a 6 h -t 50.8781 -s 210 -d 211 -p ack -e 40 -i 430 -a 8 h -t 50.8781 -s 211 -d 210 -p tcp -e 1000 -i 429 -a 6 r -t 50.8781 -s 208 -d 210 -p ack -e 40 -i 430 -a 8 r -t 50.8783 -s 212 -d 211 -p tcp -e 1000 -i 429 -a 6 - -t 50.8824 -s 311 -d 310 -p tcp -e 1000 -i 386 -a 7 h -t 50.8824 -s 311 -d 310 -p tcp -e 1000 -i 386 -a 7 - -t 50.8827 -s 111 -d 110 -p tcp -e 1000 -i 440 -a 2 h -t 50.8827 -s 111 -d 110 -p tcp -e 1000 -i 440 -a 2 + -t 50.8853 -s 210 -d 208 -p tcp -e 1000 -i 414 -a 8 - -t 50.8853 -s 210 -d 208 -p tcp -e 1000 -i 414 -a 8 h -t 50.8853 -s 210 -d 208 -p tcp -e 1000 -i 414 -a 8 r -t 50.8853 -s 211 -d 210 -p tcp -e 1000 -i 414 -a 8 + -t 50.8869 -s 211 -d 212 -p ack -e 40 -i 420 -a 8 - -t 50.8869 -s 211 -d 212 -p ack -e 40 -i 420 -a 8 h -t 50.8869 -s 211 -d 212 -p ack -e 40 -i 420 -a 8 r -t 50.8869 -s 210 -d 211 -p ack -e 40 -i 420 -a 8 r -t 50.8873 -s 210 -d 208 -p tcp -e 1000 -i 414 -a 8 + -t 50.8879 -s 212 -d 211 -p tcp -e 1000 -i 431 -a 8 + -t 50.8879 -s 212 -d 211 -p tcp -e 1000 -i 432 -a 8 + -t 50.8879 -s 212 -d 211 -p tcp -e 1000 -i 433 -a 8 - -t 50.8879 -s 212 -d 211 -p tcp -e 1000 -i 431 -a 8 h -t 50.8879 -s 212 -d 211 -p tcp -e 1000 -i 431 -a 8 r -t 50.8879 -s 211 -d 212 -p ack -e 40 -i 420 -a 8 - -t 50.8887 -s 212 -d 211 -p tcp -e 1000 -i 432 -a 8 h -t 50.8887 -s 212 -d 211 -p tcp -e 1000 -i 432 -a 8 - -t 50.8895 -s 212 -d 211 -p tcp -e 1000 -i 433 -a 8 h -t 50.8895 -s 212 -d 211 -p tcp -e 1000 -i 433 -a 8 + -t 50.8897 -s 211 -d 210 -p tcp -e 1000 -i 431 -a 8 - -t 50.8897 -s 211 -d 210 -p tcp -e 1000 -i 431 -a 8 h -t 50.8897 -s 211 -d 210 -p tcp -e 1000 -i 431 -a 8 r -t 50.8899 -s 212 -d 211 -p tcp -e 1000 -i 431 -a 8 + -t 50.8905 -s 211 -d 210 -p tcp -e 1000 -i 432 -a 8 r -t 50.8907 -s 212 -d 211 -p tcp -e 1000 -i 432 -a 8 + -t 50.8913 -s 211 -d 210 -p tcp -e 1000 -i 433 -a 8 r -t 50.8915 -s 212 -d 211 -p tcp -e 1000 -i 433 -a 8 - -t 50.8924 -s 311 -d 310 -p tcp -e 1000 -i 387 -a 7 h -t 50.8924 -s 311 -d 310 -p tcp -e 1000 -i 387 -a 7 - -t 50.8927 -s 111 -d 110 -p tcp -e 1000 -i 441 -a 2 h -t 50.8927 -s 111 -d 110 -p tcp -e 1000 -i 441 -a 2 + -t 50.8952 -s 211 -d 212 -p ack -e 40 -i 421 -a 6 - -t 50.8952 -s 211 -d 212 -p ack -e 40 -i 421 -a 6 h -t 50.8952 -s 211 -d 212 -p ack -e 40 -i 421 -a 6 r -t 50.8952 -s 210 -d 211 -p ack -e 40 -i 421 -a 6 + -t 50.8953 -s 210 -d 206 -p tcp -e 1000 -i 415 -a 6 - -t 50.8953 -s 210 -d 206 -p tcp -e 1000 -i 415 -a 6 h -t 50.8953 -s 210 -d 206 -p tcp -e 1000 -i 415 -a 6 r -t 50.8953 -s 211 -d 210 -p tcp -e 1000 -i 415 -a 6 r -t 50.8962 -s 211 -d 212 -p ack -e 40 -i 421 -a 6 r -t 50.8973 -s 210 -d 206 -p tcp -e 1000 -i 415 -a 6 - -t 50.8997 -s 211 -d 210 -p tcp -e 1000 -i 432 -a 8 h -t 50.8997 -s 211 -d 210 -p tcp -e 1000 -i 432 -a 8 - -t 50.9024 -s 311 -d 310 -p tcp -e 1000 -i 388 -a 7 h -t 50.9024 -s 311 -d 310 -p tcp -e 1000 -i 388 -a 7 - -t 50.9027 -s 111 -d 110 -p tcp -e 1000 -i 442 -a 2 h -t 50.9027 -s 111 -d 110 -p tcp -e 1000 -i 442 -a 2 + -t 50.9053 -s 210 -d 206 -p tcp -e 1000 -i 416 -a 6 - -t 50.9053 -s 210 -d 206 -p tcp -e 1000 -i 416 -a 6 h -t 50.9053 -s 210 -d 206 -p tcp -e 1000 -i 416 -a 6 r -t 50.9053 -s 211 -d 210 -p tcp -e 1000 -i 416 -a 6 + -t 50.9059 -s 203 -d 210 -p ack -e 40 -i 434 -a 3 + -t 50.9059 -s 303 -d 310 -p ack -e 40 -i 389 -a 3 - -t 50.9059 -s 203 -d 210 -p ack -e 40 -i 434 -a 3 - -t 50.9059 -s 303 -d 310 -p ack -e 40 -i 389 -a 3 h -t 50.9059 -s 203 -d 210 -p ack -e 40 -i 434 -a 3 h -t 50.9059 -s 303 -d 310 -p ack -e 40 -i 389 -a 3 + -t 50.9069 -s 210 -d 211 -p ack -e 40 -i 434 -a 3 + -t 50.9069 -s 310 -d 311 -p ack -e 40 -i 389 -a 3 - -t 50.9069 -s 210 -d 211 -p ack -e 40 -i 434 -a 3 - -t 50.9069 -s 310 -d 311 -p ack -e 40 -i 389 -a 3 h -t 50.9069 -s 210 -d 211 -p ack -e 40 -i 434 -a 3 h -t 50.9069 -s 310 -d 311 -p ack -e 40 -i 389 -a 3 r -t 50.9069 -s 203 -d 210 -p ack -e 40 -i 434 -a 3 r -t 50.9069 -s 303 -d 310 -p ack -e 40 -i 389 -a 3 + -t 50.9071 -s 206 -d 210 -p ack -e 40 -i 435 -a 6 - -t 50.9071 -s 206 -d 210 -p ack -e 40 -i 435 -a 6 h -t 50.9071 -s 206 -d 210 -p ack -e 40 -i 435 -a 6 r -t 50.9073 -s 210 -d 206 -p tcp -e 1000 -i 416 -a 6 + -t 50.9081 -s 210 -d 211 -p ack -e 40 -i 435 -a 6 - -t 50.9081 -s 210 -d 211 -p ack -e 40 -i 435 -a 6 h -t 50.9081 -s 210 -d 211 -p ack -e 40 -i 435 -a 6 r -t 50.9081 -s 206 -d 210 -p ack -e 40 -i 435 -a 6 - -t 50.9097 -s 211 -d 210 -p tcp -e 1000 -i 433 -a 8 h -t 50.9097 -s 211 -d 210 -p tcp -e 1000 -i 433 -a 8 - -t 50.9127 -s 111 -d 110 -p tcp -e 1000 -i 443 -a 2 h -t 50.9127 -s 111 -d 110 -p tcp -e 1000 -i 443 -a 2 + -t 50.9153 -s 210 -d 206 -p tcp -e 1000 -i 417 -a 6 - -t 50.9153 -s 210 -d 206 -p tcp -e 1000 -i 417 -a 6 h -t 50.9153 -s 210 -d 206 -p tcp -e 1000 -i 417 -a 6 r -t 50.9153 -s 211 -d 210 -p tcp -e 1000 -i 417 -a 6 + -t 50.9167 -s 212 -d 211 -p tcp -e 1000 -i 436 -a 3 - -t 50.9167 -s 212 -d 211 -p tcp -e 1000 -i 436 -a 3 h -t 50.9167 -s 212 -d 211 -p tcp -e 1000 -i 436 -a 3 + -t 50.9173 -s 111 -d 112 -p ack -e 40 -i 434 -a 3 - -t 50.9173 -s 111 -d 112 -p ack -e 40 -i 434 -a 3 h -t 50.9173 -s 111 -d 112 -p ack -e 40 -i 434 -a 3 r -t 50.9173 -s 110 -d 111 -p ack -e 40 -i 434 -a 3 r -t 50.9173 -s 210 -d 206 -p tcp -e 1000 -i 417 -a 6 + -t 50.9178 -s 110 -d 108 -p tcp -e 1000 -i 433 -a 8 - -t 50.9178 -s 110 -d 108 -p tcp -e 1000 -i 433 -a 8 h -t 50.9178 -s 110 -d 108 -p tcp -e 1000 -i 433 -a 8 r -t 50.9178 -s 111 -d 110 -p tcp -e 1000 -i 433 -a 8 r -t 50.9183 -s 111 -d 112 -p ack -e 40 -i 434 -a 3 + -t 50.9184 -s 112 -d 111 -p tcp -e 1000 -i 448 -a 3 + -t 50.9184 -s 112 -d 111 -p tcp -e 1000 -i 449 -a 3 - -t 50.9184 -s 112 -d 111 -p tcp -e 1000 -i 448 -a 3 h -t 50.9184 -s 112 -d 111 -p tcp -e 1000 -i 448 -a 3 + -t 50.9185 -s 211 -d 210 -p tcp -e 1000 -i 436 -a 3 + -t 50.9185 -s 211 -d 212 -p ack -e 40 -i 423 -a 0 - -t 50.9185 -s 211 -d 212 -p ack -e 40 -i 423 -a 0 h -t 50.9185 -s 211 -d 212 -p ack -e 40 -i 423 -a 0 r -t 50.9185 -s 210 -d 211 -p ack -e 40 -i 423 -a 0 r -t 50.9187 -s 212 -d 211 -p tcp -e 1000 -i 436 -a 3 - -t 50.9192 -s 112 -d 111 -p tcp -e 1000 -i 449 -a 3 h -t 50.9192 -s 112 -d 111 -p tcp -e 1000 -i 449 -a 3 r -t 50.9195 -s 211 -d 212 -p ack -e 40 -i 423 -a 0 + -t 50.9196 -s 108 -d 110 -p ack -e 40 -i 450 -a 8 + -t 50.9196 -s 212 -d 211 -p tcp -e 1000 -i 437 -a 0 + -t 50.9196 -s 212 -d 211 -p tcp -e 1000 -i 438 -a 0 + -t 50.9196 -s 212 -d 211 -p tcp -e 1000 -i 439 -a 0 - -t 50.9196 -s 108 -d 110 -p ack -e 40 -i 450 -a 8 - -t 50.9196 -s 212 -d 211 -p tcp -e 1000 -i 437 -a 0 h -t 50.9196 -s 108 -d 110 -p ack -e 40 -i 450 -a 8 h -t 50.9196 -s 212 -d 211 -p tcp -e 1000 -i 437 -a 0 - -t 50.9197 -s 211 -d 210 -p tcp -e 1000 -i 436 -a 3 h -t 50.9197 -s 211 -d 210 -p tcp -e 1000 -i 436 -a 3 r -t 50.9198 -s 110 -d 108 -p tcp -e 1000 -i 433 -a 8 + -t 50.9202 -s 111 -d 110 -p tcp -e 1000 -i 448 -a 3 - -t 50.9204 -s 212 -d 211 -p tcp -e 1000 -i 438 -a 0 h -t 50.9204 -s 212 -d 211 -p tcp -e 1000 -i 438 -a 0 r -t 50.9204 -s 112 -d 111 -p tcp -e 1000 -i 448 -a 3 r -t 50.9206 -s 108 -d 110 -p ack -e 40 -i 450 -a 8 + -t 50.9207 -s 110 -d 111 -p ack -e 40 -i 450 -a 8 - -t 50.9207 -s 110 -d 111 -p ack -e 40 -i 450 -a 8 h -t 50.9207 -s 110 -d 111 -p ack -e 40 -i 450 -a 8 + -t 50.921 -s 111 -d 110 -p tcp -e 1000 -i 449 -a 3 - -t 50.9212 -s 212 -d 211 -p tcp -e 1000 -i 439 -a 0 h -t 50.9212 -s 212 -d 211 -p tcp -e 1000 -i 439 -a 0 r -t 50.9212 -s 112 -d 111 -p tcp -e 1000 -i 449 -a 3 + -t 50.9214 -s 211 -d 210 -p tcp -e 1000 -i 437 -a 0 r -t 50.9216 -s 212 -d 211 -p tcp -e 1000 -i 437 -a 0 + -t 50.9222 -s 211 -d 210 -p tcp -e 1000 -i 438 -a 0 r -t 50.9224 -s 212 -d 211 -p tcp -e 1000 -i 438 -a 0 - -t 50.9227 -s 111 -d 110 -p tcp -e 1000 -i 444 -a 2 h -t 50.9227 -s 111 -d 110 -p tcp -e 1000 -i 444 -a 2 + -t 50.923 -s 211 -d 210 -p tcp -e 1000 -i 439 -a 0 r -t 50.9232 -s 212 -d 211 -p tcp -e 1000 -i 439 -a 0 + -t 50.9252 -s 211 -d 212 -p ack -e 40 -i 425 -a 4 - -t 50.9252 -s 211 -d 212 -p ack -e 40 -i 425 -a 4 h -t 50.9252 -s 211 -d 212 -p ack -e 40 -i 425 -a 4 r -t 50.9252 -s 210 -d 211 -p ack -e 40 -i 425 -a 4 + -t 50.9253 -s 210 -d 203 -p tcp -e 1000 -i 422 -a 3 - -t 50.9253 -s 210 -d 203 -p tcp -e 1000 -i 422 -a 3 h -t 50.9253 -s 210 -d 203 -p tcp -e 1000 -i 422 -a 3 r -t 50.9253 -s 211 -d 210 -p tcp -e 1000 -i 422 -a 3 r -t 50.9262 -s 211 -d 212 -p ack -e 40 -i 425 -a 4 r -t 50.9273 -s 210 -d 203 -p tcp -e 1000 -i 422 -a 3 - -t 50.9297 -s 211 -d 210 -p tcp -e 1000 -i 437 -a 0 h -t 50.9297 -s 211 -d 210 -p tcp -e 1000 -i 437 -a 0 + -t 50.9311 -s 311 -d 312 -p ack -e 40 -i 380 -a 0 - -t 50.9311 -s 311 -d 312 -p ack -e 40 -i 380 -a 0 h -t 50.9311 -s 311 -d 312 -p ack -e 40 -i 380 -a 0 r -t 50.9311 -s 310 -d 311 -p ack -e 40 -i 380 -a 0 + -t 50.9321 -s 312 -d 311 -p tcp -e 1000 -i 390 -a 0 + -t 50.9321 -s 312 -d 311 -p tcp -e 1000 -i 391 -a 0 - -t 50.9321 -s 312 -d 311 -p tcp -e 1000 -i 390 -a 0 h -t 50.9321 -s 312 -d 311 -p tcp -e 1000 -i 390 -a 0 r -t 50.9321 -s 311 -d 312 -p ack -e 40 -i 380 -a 0 + -t 50.9324 -s 110 -d 109 -p tcp -e 1000 -i 435 -a 9 + -t 50.9324 -s 310 -d 309 -p tcp -e 1000 -i 377 -a 9 - -t 50.9324 -s 110 -d 109 -p tcp -e 1000 -i 435 -a 9 - -t 50.9324 -s 310 -d 309 -p tcp -e 1000 -i 377 -a 9 h -t 50.9324 -s 110 -d 109 -p tcp -e 1000 -i 435 -a 9 h -t 50.9324 -s 310 -d 309 -p tcp -e 1000 -i 377 -a 9 r -t 50.9324 -s 111 -d 110 -p tcp -e 1000 -i 435 -a 9 r -t 50.9324 -s 311 -d 310 -p tcp -e 1000 -i 377 -a 9 - -t 50.9327 -s 111 -d 110 -p tcp -e 1000 -i 445 -a 2 h -t 50.9327 -s 111 -d 110 -p tcp -e 1000 -i 445 -a 2 - -t 50.9329 -s 312 -d 311 -p tcp -e 1000 -i 391 -a 0 h -t 50.9329 -s 312 -d 311 -p tcp -e 1000 -i 391 -a 0 + -t 50.9339 -s 311 -d 310 -p tcp -e 1000 -i 390 -a 0 - -t 50.9339 -s 311 -d 310 -p tcp -e 1000 -i 390 -a 0 h -t 50.9339 -s 311 -d 310 -p tcp -e 1000 -i 390 -a 0 r -t 50.9341 -s 312 -d 311 -p tcp -e 1000 -i 390 -a 0 r -t 50.9344 -s 110 -d 109 -p tcp -e 1000 -i 435 -a 9 r -t 50.9344 -s 310 -d 309 -p tcp -e 1000 -i 377 -a 9 + -t 50.9347 -s 311 -d 310 -p tcp -e 1000 -i 391 -a 0 r -t 50.9349 -s 312 -d 311 -p tcp -e 1000 -i 391 -a 0 + -t 50.9353 -s 210 -d 209 -p tcp -e 1000 -i 424 -a 9 - -t 50.9353 -s 210 -d 209 -p tcp -e 1000 -i 424 -a 9 h -t 50.9353 -s 210 -d 209 -p tcp -e 1000 -i 424 -a 9 r -t 50.9353 -s 211 -d 210 -p tcp -e 1000 -i 424 -a 9 r -t 50.9373 -s 210 -d 209 -p tcp -e 1000 -i 424 -a 9 + -t 50.9385 -s 211 -d 212 -p ack -e 40 -i 426 -a 0 - -t 50.9385 -s 211 -d 212 -p ack -e 40 -i 426 -a 0 h -t 50.9385 -s 211 -d 212 -p ack -e 40 -i 426 -a 0 r -t 50.9385 -s 210 -d 211 -p ack -e 40 -i 426 -a 0 r -t 50.9395 -s 211 -d 212 -p ack -e 40 -i 426 -a 0 - -t 50.9397 -s 211 -d 210 -p tcp -e 1000 -i 438 -a 0 h -t 50.9397 -s 211 -d 210 -p tcp -e 1000 -i 438 -a 0 + -t 50.9424 -s 110 -d 109 -p tcp -e 1000 -i 436 -a 9 + -t 50.9424 -s 310 -d 304 -p tcp -e 1000 -i 378 -a 4 - -t 50.9424 -s 110 -d 109 -p tcp -e 1000 -i 436 -a 9 - -t 50.9424 -s 310 -d 304 -p tcp -e 1000 -i 378 -a 4 h -t 50.9424 -s 110 -d 109 -p tcp -e 1000 -i 436 -a 9 h -t 50.9424 -s 310 -d 304 -p tcp -e 1000 -i 378 -a 4 r -t 50.9424 -s 111 -d 110 -p tcp -e 1000 -i 436 -a 9 r -t 50.9424 -s 311 -d 310 -p tcp -e 1000 -i 378 -a 4 - -t 50.9427 -s 111 -d 110 -p tcp -e 1000 -i 446 -a 2 h -t 50.9427 -s 111 -d 110 -p tcp -e 1000 -i 446 -a 2 - -t 50.9439 -s 311 -d 310 -p tcp -e 1000 -i 391 -a 0 h -t 50.9439 -s 311 -d 310 -p tcp -e 1000 -i 391 -a 0 + -t 50.9442 -s 109 -d 110 -p ack -e 40 -i 451 -a 9 - -t 50.9442 -s 109 -d 110 -p ack -e 40 -i 451 -a 9 h -t 50.9442 -s 109 -d 110 -p ack -e 40 -i 451 -a 9 r -t 50.9444 -s 110 -d 109 -p tcp -e 1000 -i 436 -a 9 r -t 50.9444 -s 310 -d 304 -p tcp -e 1000 -i 378 -a 4 + -t 50.9452 -s 110 -d 111 -p ack -e 40 -i 451 -a 9 - -t 50.9452 -s 110 -d 111 -p ack -e 40 -i 451 -a 9 h -t 50.9452 -s 110 -d 111 -p ack -e 40 -i 451 -a 9 r -t 50.9452 -s 109 -d 110 -p ack -e 40 -i 451 -a 9 + -t 50.9471 -s 200 -d 210 -p ack -e 40 -i 440 -a 0 - -t 50.9471 -s 200 -d 210 -p ack -e 40 -i 440 -a 0 h -t 50.9471 -s 200 -d 210 -p ack -e 40 -i 440 -a 0 + -t 50.9481 -s 210 -d 211 -p ack -e 40 -i 440 -a 0 - -t 50.9481 -s 210 -d 211 -p ack -e 40 -i 440 -a 0 h -t 50.9481 -s 210 -d 211 -p ack -e 40 -i 440 -a 0 r -t 50.9481 -s 200 -d 210 -p ack -e 40 -i 440 -a 0 - -t 50.9497 -s 211 -d 210 -p tcp -e 1000 -i 439 -a 0 h -t 50.9497 -s 211 -d 210 -p tcp -e 1000 -i 439 -a 0 + -t 50.9511 -s 311 -d 312 -p ack -e 40 -i 381 -a 1 - -t 50.9511 -s 311 -d 312 -p ack -e 40 -i 381 -a 1 h -t 50.9511 -s 311 -d 312 -p ack -e 40 -i 381 -a 1 r -t 50.9511 -s 310 -d 311 -p ack -e 40 -i 381 -a 1 + -t 50.9521 -s 312 -d 311 -p tcp -e 1000 -i 392 -a 1 + -t 50.9521 -s 312 -d 311 -p tcp -e 1000 -i 393 -a 1 - -t 50.9521 -s 312 -d 311 -p tcp -e 1000 -i 392 -a 1 h -t 50.9521 -s 312 -d 311 -p tcp -e 1000 -i 392 -a 1 r -t 50.9521 -s 311 -d 312 -p ack -e 40 -i 381 -a 1 + -t 50.9524 -s 110 -d 109 -p tcp -e 1000 -i 437 -a 9 + -t 50.9524 -s 310 -d 304 -p tcp -e 1000 -i 379 -a 4 - -t 50.9524 -s 110 -d 109 -p tcp -e 1000 -i 437 -a 9 - -t 50.9524 -s 310 -d 304 -p tcp -e 1000 -i 379 -a 4 h -t 50.9524 -s 110 -d 109 -p tcp -e 1000 -i 437 -a 9 h -t 50.9524 -s 310 -d 304 -p tcp -e 1000 -i 379 -a 4 r -t 50.9524 -s 111 -d 110 -p tcp -e 1000 -i 437 -a 9 r -t 50.9524 -s 311 -d 310 -p tcp -e 1000 -i 379 -a 4 - -t 50.9527 -s 111 -d 110 -p tcp -e 1000 -i 447 -a 2 h -t 50.9527 -s 111 -d 110 -p tcp -e 1000 -i 447 -a 2 - -t 50.9529 -s 312 -d 311 -p tcp -e 1000 -i 393 -a 1 h -t 50.9529 -s 312 -d 311 -p tcp -e 1000 -i 393 -a 1 + -t 50.9539 -s 311 -d 310 -p tcp -e 1000 -i 392 -a 1 - -t 50.9539 -s 311 -d 310 -p tcp -e 1000 -i 392 -a 1 h -t 50.9539 -s 311 -d 310 -p tcp -e 1000 -i 392 -a 1 r -t 50.9541 -s 312 -d 311 -p tcp -e 1000 -i 392 -a 1 + -t 50.9542 -s 304 -d 310 -p ack -e 40 -i 394 -a 4 - -t 50.9542 -s 304 -d 310 -p ack -e 40 -i 394 -a 4 h -t 50.9542 -s 304 -d 310 -p ack -e 40 -i 394 -a 4 r -t 50.9544 -s 110 -d 109 -p tcp -e 1000 -i 437 -a 9 r -t 50.9544 -s 310 -d 304 -p tcp -e 1000 -i 379 -a 4 + -t 50.9547 -s 311 -d 310 -p tcp -e 1000 -i 393 -a 1 r -t 50.9549 -s 312 -d 311 -p tcp -e 1000 -i 393 -a 1 + -t 50.9552 -s 310 -d 311 -p ack -e 40 -i 394 -a 4 - -t 50.9552 -s 310 -d 311 -p ack -e 40 -i 394 -a 4 h -t 50.9552 -s 310 -d 311 -p ack -e 40 -i 394 -a 4 r -t 50.9552 -s 304 -d 310 -p ack -e 40 -i 394 -a 4 + -t 50.9585 -s 211 -d 212 -p ack -e 40 -i 427 -a 1 - -t 50.9585 -s 211 -d 212 -p ack -e 40 -i 427 -a 1 h -t 50.9585 -s 211 -d 212 -p ack -e 40 -i 427 -a 1 r -t 50.9585 -s 210 -d 211 -p ack -e 40 -i 427 -a 1 r -t 50.9595 -s 211 -d 212 -p ack -e 40 -i 427 -a 1 + -t 50.9624 -s 310 -d 306 -p tcp -e 1000 -i 382 -a 6 - -t 50.9624 -s 310 -d 306 -p tcp -e 1000 -i 382 -a 6 h -t 50.9624 -s 310 -d 306 -p tcp -e 1000 -i 382 -a 6 r -t 50.9624 -s 311 -d 310 -p tcp -e 1000 -i 382 -a 6 - -t 50.9627 -s 111 -d 110 -p tcp -e 1000 -i 448 -a 3 h -t 50.9627 -s 111 -d 110 -p tcp -e 1000 -i 448 -a 3 - -t 50.9639 -s 311 -d 310 -p tcp -e 1000 -i 393 -a 1 h -t 50.9639 -s 311 -d 310 -p tcp -e 1000 -i 393 -a 1 r -t 50.9644 -s 310 -d 306 -p tcp -e 1000 -i 382 -a 6 + -t 50.9711 -s 311 -d 312 -p ack -e 40 -i 385 -a 8 - -t 50.9711 -s 311 -d 312 -p ack -e 40 -i 385 -a 8 h -t 50.9711 -s 311 -d 312 -p ack -e 40 -i 385 -a 8 r -t 50.9711 -s 310 -d 311 -p ack -e 40 -i 385 -a 8 + -t 50.9721 -s 312 -d 311 -p tcp -e 1000 -i 395 -a 8 + -t 50.9721 -s 312 -d 311 -p tcp -e 1000 -i 396 -a 8 - -t 50.9721 -s 312 -d 311 -p tcp -e 1000 -i 395 -a 8 h -t 50.9721 -s 312 -d 311 -p tcp -e 1000 -i 395 -a 8 r -t 50.9721 -s 311 -d 312 -p ack -e 40 -i 385 -a 8 + -t 50.9724 -s 310 -d 306 -p tcp -e 1000 -i 383 -a 6 - -t 50.9724 -s 310 -d 306 -p tcp -e 1000 -i 383 -a 6 h -t 50.9724 -s 310 -d 306 -p tcp -e 1000 -i 383 -a 6 r -t 50.9724 -s 311 -d 310 -p tcp -e 1000 -i 383 -a 6 + -t 50.9727 -s 110 -d 102 -p tcp -e 1000 -i 438 -a 2 + -t 50.9727 -s 210 -d 202 -p tcp -e 1000 -i 428 -a 2 - -t 50.9727 -s 110 -d 102 -p tcp -e 1000 -i 438 -a 2 - -t 50.9727 -s 111 -d 110 -p tcp -e 1000 -i 449 -a 3 - -t 50.9727 -s 210 -d 202 -p tcp -e 1000 -i 428 -a 2 h -t 50.9727 -s 110 -d 102 -p tcp -e 1000 -i 438 -a 2 h -t 50.9727 -s 111 -d 110 -p tcp -e 1000 -i 449 -a 3 h -t 50.9727 -s 210 -d 202 -p tcp -e 1000 -i 428 -a 2 r -t 50.9727 -s 111 -d 110 -p tcp -e 1000 -i 438 -a 2 r -t 50.9727 -s 211 -d 210 -p tcp -e 1000 -i 428 -a 2 - -t 50.9729 -s 312 -d 311 -p tcp -e 1000 -i 396 -a 8 h -t 50.9729 -s 312 -d 311 -p tcp -e 1000 -i 396 -a 8 + -t 50.9739 -s 311 -d 310 -p tcp -e 1000 -i 395 -a 8 - -t 50.9739 -s 311 -d 310 -p tcp -e 1000 -i 395 -a 8 h -t 50.9739 -s 311 -d 310 -p tcp -e 1000 -i 395 -a 8 r -t 50.9741 -s 312 -d 311 -p tcp -e 1000 -i 395 -a 8 + -t 50.9742 -s 306 -d 310 -p ack -e 40 -i 397 -a 6 - -t 50.9742 -s 306 -d 310 -p ack -e 40 -i 397 -a 6 h -t 50.9742 -s 306 -d 310 -p ack -e 40 -i 397 -a 6 r -t 50.9744 -s 310 -d 306 -p tcp -e 1000 -i 383 -a 6 + -t 50.9747 -s 311 -d 310 -p tcp -e 1000 -i 396 -a 8 r -t 50.9747 -s 110 -d 102 -p tcp -e 1000 -i 438 -a 2 r -t 50.9747 -s 210 -d 202 -p tcp -e 1000 -i 428 -a 2 r -t 50.9749 -s 312 -d 311 -p tcp -e 1000 -i 396 -a 8 + -t 50.9752 -s 310 -d 311 -p ack -e 40 -i 397 -a 6 - -t 50.9752 -s 310 -d 311 -p ack -e 40 -i 397 -a 6 h -t 50.9752 -s 310 -d 311 -p ack -e 40 -i 397 -a 6 r -t 50.9752 -s 306 -d 310 -p ack -e 40 -i 397 -a 6 + -t 50.9757 -s 212 -d 211 -p tcp -e 1000 -i 441 -a 2 - -t 50.9757 -s 212 -d 211 -p tcp -e 1000 -i 441 -a 2 h -t 50.9757 -s 212 -d 211 -p tcp -e 1000 -i 441 -a 2 + -t 50.9775 -s 211 -d 210 -p tcp -e 1000 -i 441 -a 2 - -t 50.9775 -s 211 -d 210 -p tcp -e 1000 -i 441 -a 2 h -t 50.9775 -s 211 -d 210 -p tcp -e 1000 -i 441 -a 2 r -t 50.9777 -s 212 -d 211 -p tcp -e 1000 -i 441 -a 2 + -t 50.9785 -s 211 -d 212 -p ack -e 40 -i 430 -a 8 - -t 50.9785 -s 211 -d 212 -p ack -e 40 -i 430 -a 8 h -t 50.9785 -s 211 -d 212 -p ack -e 40 -i 430 -a 8 r -t 50.9785 -s 210 -d 211 -p ack -e 40 -i 430 -a 8 r -t 50.9795 -s 211 -d 212 -p ack -e 40 -i 430 -a 8 + -t 50.9796 -s 212 -d 211 -p tcp -e 1000 -i 442 -a 8 + -t 50.9796 -s 212 -d 211 -p tcp -e 1000 -i 443 -a 8 - -t 50.9796 -s 212 -d 211 -p tcp -e 1000 -i 442 -a 8 h -t 50.9796 -s 212 -d 211 -p tcp -e 1000 -i 442 -a 8 - -t 50.9804 -s 212 -d 211 -p tcp -e 1000 -i 443 -a 8 h -t 50.9804 -s 212 -d 211 -p tcp -e 1000 -i 443 -a 8 + -t 50.9814 -s 211 -d 210 -p tcp -e 1000 -i 442 -a 8 r -t 50.9816 -s 212 -d 211 -p tcp -e 1000 -i 442 -a 8 + -t 50.9822 -s 211 -d 210 -p tcp -e 1000 -i 443 -a 8 + -t 50.9824 -s 310 -d 302 -p tcp -e 1000 -i 384 -a 2 - -t 50.9824 -s 310 -d 302 -p tcp -e 1000 -i 384 -a 2 h -t 50.9824 -s 310 -d 302 -p tcp -e 1000 -i 384 -a 2 r -t 50.9824 -s 212 -d 211 -p tcp -e 1000 -i 443 -a 8 r -t 50.9824 -s 311 -d 310 -p tcp -e 1000 -i 384 -a 2 + -t 50.9827 -s 110 -d 102 -p tcp -e 1000 -i 439 -a 2 - -t 50.9827 -s 110 -d 102 -p tcp -e 1000 -i 439 -a 2 h -t 50.9827 -s 110 -d 102 -p tcp -e 1000 -i 439 -a 2 r -t 50.9827 -s 111 -d 110 -p tcp -e 1000 -i 439 -a 2 - -t 50.9839 -s 311 -d 310 -p tcp -e 1000 -i 396 -a 8 h -t 50.9839 -s 311 -d 310 -p tcp -e 1000 -i 396 -a 8 r -t 50.9844 -s 310 -d 302 -p tcp -e 1000 -i 384 -a 2 + -t 50.9845 -s 102 -d 110 -p ack -e 40 -i 452 -a 2 - -t 50.9845 -s 102 -d 110 -p ack -e 40 -i 452 -a 2 h -t 50.9845 -s 102 -d 110 -p ack -e 40 -i 452 -a 2 r -t 50.9847 -s 110 -d 102 -p tcp -e 1000 -i 439 -a 2 + -t 50.9855 -s 110 -d 111 -p ack -e 40 -i 452 -a 2 - -t 50.9855 -s 110 -d 111 -p ack -e 40 -i 452 -a 2 h -t 50.9855 -s 110 -d 111 -p ack -e 40 -i 452 -a 2 r -t 50.9855 -s 102 -d 110 -p ack -e 40 -i 452 -a 2 + -t 50.9871 -s 208 -d 210 -p ack -e 40 -i 444 -a 8 - -t 50.9871 -s 208 -d 210 -p ack -e 40 -i 444 -a 8 h -t 50.9871 -s 208 -d 210 -p ack -e 40 -i 444 -a 8 - -t 50.9875 -s 211 -d 210 -p tcp -e 1000 -i 442 -a 8 h -t 50.9875 -s 211 -d 210 -p tcp -e 1000 -i 442 -a 8 + -t 50.9881 -s 210 -d 206 -p tcp -e 1000 -i 429 -a 6 + -t 50.9881 -s 210 -d 211 -p ack -e 40 -i 444 -a 8 - -t 50.9881 -s 210 -d 206 -p tcp -e 1000 -i 429 -a 6 - -t 50.9881 -s 210 -d 211 -p ack -e 40 -i 444 -a 8 h -t 50.9881 -s 210 -d 206 -p tcp -e 1000 -i 429 -a 6 h -t 50.9881 -s 210 -d 211 -p ack -e 40 -i 444 -a 8 r -t 50.9881 -s 208 -d 210 -p ack -e 40 -i 444 -a 8 r -t 50.9881 -s 211 -d 210 -p tcp -e 1000 -i 429 -a 6 + -t 50.9899 -s 206 -d 210 -p ack -e 40 -i 445 -a 6 - -t 50.9899 -s 206 -d 210 -p ack -e 40 -i 445 -a 6 h -t 50.9899 -s 206 -d 210 -p ack -e 40 -i 445 -a 6 r -t 50.9901 -s 210 -d 206 -p tcp -e 1000 -i 429 -a 6 + -t 50.9909 -s 210 -d 211 -p ack -e 40 -i 445 -a 6 - -t 50.9909 -s 210 -d 211 -p ack -e 40 -i 445 -a 6 h -t 50.9909 -s 210 -d 211 -p ack -e 40 -i 445 -a 6 r -t 50.9909 -s 206 -d 210 -p ack -e 40 -i 445 -a 6 + -t 50.9924 -s 310 -d 307 -p tcp -e 1000 -i 386 -a 7 - -t 50.9924 -s 310 -d 307 -p tcp -e 1000 -i 386 -a 7 h -t 50.9924 -s 310 -d 307 -p tcp -e 1000 -i 386 -a 7 r -t 50.9924 -s 311 -d 310 -p tcp -e 1000 -i 386 -a 7 + -t 50.9927 -s 110 -d 102 -p tcp -e 1000 -i 440 -a 2 + -t 50.9927 -s 212 -d 211 -p tcp -e 1000 -i 446 -a 9 - -t 50.9927 -s 110 -d 102 -p tcp -e 1000 -i 440 -a 2 - -t 50.9927 -s 212 -d 211 -p tcp -e 1000 -i 446 -a 9 h -t 50.9927 -s 110 -d 102 -p tcp -e 1000 -i 440 -a 2 h -t 50.9927 -s 212 -d 211 -p tcp -e 1000 -i 446 -a 9 r -t 50.9927 -s 111 -d 110 -p tcp -e 1000 -i 440 -a 2 r -t 50.9944 -s 310 -d 307 -p tcp -e 1000 -i 386 -a 7 + -t 50.9945 -s 211 -d 210 -p tcp -e 1000 -i 446 -a 9 r -t 50.9947 -s 110 -d 102 -p tcp -e 1000 -i 440 -a 2 r -t 50.9947 -s 212 -d 211 -p tcp -e 1000 -i 446 -a 9 - -t 50.9975 -s 211 -d 210 -p tcp -e 1000 -i 443 -a 8 h -t 50.9975 -s 211 -d 210 -p tcp -e 1000 -i 443 -a 8 + -t 50.9997 -s 210 -d 208 -p tcp -e 1000 -i 431 -a 8 - -t 50.9997 -s 210 -d 208 -p tcp -e 1000 -i 431 -a 8 h -t 50.9997 -s 210 -d 208 -p tcp -e 1000 -i 431 -a 8 r -t 50.9997 -s 211 -d 210 -p tcp -e 1000 -i 431 -a 8 r -t 51.0017 -s 210 -d 208 -p tcp -e 1000 -i 431 -a 8 + -t 51.0024 -s 310 -d 307 -p tcp -e 1000 -i 387 -a 7 - -t 51.0024 -s 310 -d 307 -p tcp -e 1000 -i 387 -a 7 h -t 51.0024 -s 310 -d 307 -p tcp -e 1000 -i 387 -a 7 r -t 51.0024 -s 311 -d 310 -p tcp -e 1000 -i 387 -a 7 + -t 51.0027 -s 110 -d 102 -p tcp -e 1000 -i 441 -a 2 - -t 51.0027 -s 110 -d 102 -p tcp -e 1000 -i 441 -a 2 h -t 51.0027 -s 110 -d 102 -p tcp -e 1000 -i 441 -a 2 r -t 51.0027 -s 111 -d 110 -p tcp -e 1000 -i 441 -a 2 + -t 51.0042 -s 307 -d 310 -p ack -e 40 -i 398 -a 7 - -t 51.0042 -s 307 -d 310 -p ack -e 40 -i 398 -a 7 h -t 51.0042 -s 307 -d 310 -p ack -e 40 -i 398 -a 7 r -t 51.0044 -s 310 -d 307 -p tcp -e 1000 -i 387 -a 7 + -t 51.0045 -s 102 -d 110 -p ack -e 40 -i 453 -a 2 - -t 51.0045 -s 102 -d 110 -p ack -e 40 -i 453 -a 2 h -t 51.0045 -s 102 -d 110 -p ack -e 40 -i 453 -a 2 r -t 51.0047 -s 110 -d 102 -p tcp -e 1000 -i 441 -a 2 + -t 51.0052 -s 310 -d 311 -p ack -e 40 -i 398 -a 7 - -t 51.0052 -s 310 -d 311 -p ack -e 40 -i 398 -a 7 h -t 51.0052 -s 310 -d 311 -p ack -e 40 -i 398 -a 7 r -t 51.0052 -s 307 -d 310 -p ack -e 40 -i 398 -a 7 + -t 51.0055 -s 110 -d 111 -p ack -e 40 -i 453 -a 2 - -t 51.0055 -s 110 -d 111 -p ack -e 40 -i 453 -a 2 h -t 51.0055 -s 110 -d 111 -p ack -e 40 -i 453 -a 2 r -t 51.0055 -s 102 -d 110 -p ack -e 40 -i 453 -a 2 + -t 51.0073 -s 211 -d 212 -p ack -e 40 -i 434 -a 3 + -t 51.0073 -s 311 -d 312 -p ack -e 40 -i 389 -a 3 - -t 51.0073 -s 211 -d 212 -p ack -e 40 -i 434 -a 3 - -t 51.0073 -s 311 -d 312 -p ack -e 40 -i 389 -a 3 h -t 51.0073 -s 211 -d 212 -p ack -e 40 -i 434 -a 3 h -t 51.0073 -s 311 -d 312 -p ack -e 40 -i 389 -a 3 r -t 51.0073 -s 210 -d 211 -p ack -e 40 -i 434 -a 3 r -t 51.0073 -s 310 -d 311 -p ack -e 40 -i 389 -a 3 - -t 51.0075 -s 211 -d 210 -p tcp -e 1000 -i 446 -a 9 h -t 51.0075 -s 211 -d 210 -p tcp -e 1000 -i 446 -a 9 r -t 51.0083 -s 211 -d 212 -p ack -e 40 -i 434 -a 3 r -t 51.0083 -s 311 -d 312 -p ack -e 40 -i 389 -a 3 + -t 51.0084 -s 212 -d 211 -p tcp -e 1000 -i 447 -a 3 + -t 51.0084 -s 212 -d 211 -p tcp -e 1000 -i 448 -a 3 + -t 51.0084 -s 212 -d 211 -p tcp -e 1000 -i 449 -a 3 + -t 51.0084 -s 312 -d 311 -p tcp -e 1000 -i 399 -a 3 + -t 51.0084 -s 312 -d 311 -p tcp -e 1000 -i 400 -a 3 - -t 51.0084 -s 212 -d 211 -p tcp -e 1000 -i 447 -a 3 - -t 51.0084 -s 312 -d 311 -p tcp -e 1000 -i 399 -a 3 h -t 51.0084 -s 212 -d 211 -p tcp -e 1000 -i 447 -a 3 h -t 51.0084 -s 312 -d 311 -p tcp -e 1000 -i 399 -a 3 + -t 51.0085 -s 211 -d 212 -p ack -e 40 -i 435 -a 6 - -t 51.0085 -s 211 -d 212 -p ack -e 40 -i 435 -a 6 h -t 51.0085 -s 211 -d 212 -p ack -e 40 -i 435 -a 6 r -t 51.0085 -s 210 -d 211 -p ack -e 40 -i 435 -a 6 - -t 51.0092 -s 212 -d 211 -p tcp -e 1000 -i 448 -a 3 - -t 51.0092 -s 312 -d 311 -p tcp -e 1000 -i 400 -a 3 h -t 51.0092 -s 212 -d 211 -p tcp -e 1000 -i 448 -a 3 h -t 51.0092 -s 312 -d 311 -p tcp -e 1000 -i 400 -a 3 r -t 51.0095 -s 211 -d 212 -p ack -e 40 -i 435 -a 6 + -t 51.0097 -s 210 -d 208 -p tcp -e 1000 -i 432 -a 8 - -t 51.0097 -s 210 -d 208 -p tcp -e 1000 -i 432 -a 8 h -t 51.0097 -s 210 -d 208 -p tcp -e 1000 -i 432 -a 8 r -t 51.0097 -s 211 -d 210 -p tcp -e 1000 -i 432 -a 8 - -t 51.01 -s 212 -d 211 -p tcp -e 1000 -i 449 -a 3 h -t 51.01 -s 212 -d 211 -p tcp -e 1000 -i 449 -a 3 + -t 51.0102 -s 211 -d 210 -p tcp -e 1000 -i 447 -a 3 + -t 51.0102 -s 311 -d 310 -p tcp -e 1000 -i 399 -a 3 - -t 51.0102 -s 311 -d 310 -p tcp -e 1000 -i 399 -a 3 h -t 51.0102 -s 311 -d 310 -p tcp -e 1000 -i 399 -a 3 r -t 51.0104 -s 212 -d 211 -p tcp -e 1000 -i 447 -a 3 r -t 51.0104 -s 312 -d 311 -p tcp -e 1000 -i 399 -a 3 + -t 51.011 -s 211 -d 210 -p tcp -e 1000 -i 448 -a 3 + -t 51.011 -s 311 -d 310 -p tcp -e 1000 -i 400 -a 3 r -t 51.0112 -s 212 -d 211 -p tcp -e 1000 -i 448 -a 3 r -t 51.0112 -s 312 -d 311 -p tcp -e 1000 -i 400 -a 3 + -t 51.0115 -s 208 -d 210 -p ack -e 40 -i 450 -a 8 - -t 51.0115 -s 208 -d 210 -p ack -e 40 -i 450 -a 8 h -t 51.0115 -s 208 -d 210 -p ack -e 40 -i 450 -a 8 r -t 51.0117 -s 210 -d 208 -p tcp -e 1000 -i 432 -a 8 + -t 51.0118 -s 211 -d 210 -p tcp -e 1000 -i 449 -a 3 r -t 51.012 -s 212 -d 211 -p tcp -e 1000 -i 449 -a 3 + -t 51.0124 -s 310 -d 307 -p tcp -e 1000 -i 388 -a 7 - -t 51.0124 -s 310 -d 307 -p tcp -e 1000 -i 388 -a 7 h -t 51.0124 -s 310 -d 307 -p tcp -e 1000 -i 388 -a 7 r -t 51.0124 -s 311 -d 310 -p tcp -e 1000 -i 388 -a 7 r -t 51.0125 -s 208 -d 210 -p ack -e 40 -i 450 -a 8 + -t 51.0126 -s 210 -d 211 -p ack -e 40 -i 450 -a 8 - -t 51.0126 -s 210 -d 211 -p ack -e 40 -i 450 -a 8 h -t 51.0126 -s 210 -d 211 -p ack -e 40 -i 450 -a 8 + -t 51.0127 -s 110 -d 102 -p tcp -e 1000 -i 442 -a 2 - -t 51.0127 -s 110 -d 102 -p tcp -e 1000 -i 442 -a 2 h -t 51.0127 -s 110 -d 102 -p tcp -e 1000 -i 442 -a 2 r -t 51.0127 -s 111 -d 110 -p tcp -e 1000 -i 442 -a 2 r -t 51.0144 -s 310 -d 307 -p tcp -e 1000 -i 388 -a 7 r -t 51.0147 -s 110 -d 102 -p tcp -e 1000 -i 442 -a 2 - -t 51.0175 -s 211 -d 210 -p tcp -e 1000 -i 447 -a 3 h -t 51.0175 -s 211 -d 210 -p tcp -e 1000 -i 447 -a 3 + -t 51.0197 -s 210 -d 208 -p tcp -e 1000 -i 433 -a 8 - -t 51.0197 -s 210 -d 208 -p tcp -e 1000 -i 433 -a 8 h -t 51.0197 -s 210 -d 208 -p tcp -e 1000 -i 433 -a 8 r -t 51.0197 -s 211 -d 210 -p tcp -e 1000 -i 433 -a 8 - -t 51.0202 -s 311 -d 310 -p tcp -e 1000 -i 400 -a 3 h -t 51.0202 -s 311 -d 310 -p tcp -e 1000 -i 400 -a 3 + -t 51.0211 -s 111 -d 112 -p ack -e 40 -i 450 -a 8 - -t 51.0211 -s 111 -d 112 -p ack -e 40 -i 450 -a 8 h -t 51.0211 -s 111 -d 112 -p ack -e 40 -i 450 -a 8 r -t 51.0211 -s 110 -d 111 -p ack -e 40 -i 450 -a 8 r -t 51.0217 -s 210 -d 208 -p tcp -e 1000 -i 433 -a 8 r -t 51.0221 -s 111 -d 112 -p ack -e 40 -i 450 -a 8 + -t 51.0227 -s 110 -d 102 -p tcp -e 1000 -i 443 -a 2 - -t 51.0227 -s 110 -d 102 -p tcp -e 1000 -i 443 -a 2 h -t 51.0227 -s 110 -d 102 -p tcp -e 1000 -i 443 -a 2 r -t 51.0227 -s 111 -d 110 -p tcp -e 1000 -i 443 -a 2 + -t 51.0245 -s 102 -d 110 -p ack -e 40 -i 454 -a 2 - -t 51.0245 -s 102 -d 110 -p ack -e 40 -i 454 -a 2 h -t 51.0245 -s 102 -d 110 -p ack -e 40 -i 454 -a 2 r -t 51.0247 -s 110 -d 102 -p tcp -e 1000 -i 443 -a 2 + -t 51.0255 -s 110 -d 111 -p ack -e 40 -i 454 -a 2 - -t 51.0255 -s 110 -d 111 -p ack -e 40 -i 454 -a 2 h -t 51.0255 -s 110 -d 111 -p ack -e 40 -i 454 -a 2 r -t 51.0255 -s 102 -d 110 -p ack -e 40 -i 454 -a 2 + -t 51.0271 -s 203 -d 210 -p ack -e 40 -i 451 -a 3 - -t 51.0271 -s 203 -d 210 -p ack -e 40 -i 451 -a 3 h -t 51.0271 -s 203 -d 210 -p ack -e 40 -i 451 -a 3 - -t 51.0275 -s 211 -d 210 -p tcp -e 1000 -i 448 -a 3 h -t 51.0275 -s 211 -d 210 -p tcp -e 1000 -i 448 -a 3 + -t 51.0281 -s 210 -d 211 -p ack -e 40 -i 451 -a 3 - -t 51.0281 -s 210 -d 211 -p ack -e 40 -i 451 -a 3 h -t 51.0281 -s 210 -d 211 -p ack -e 40 -i 451 -a 3 r -t 51.0281 -s 203 -d 210 -p ack -e 40 -i 451 -a 3 + -t 51.0297 -s 210 -d 203 -p tcp -e 1000 -i 436 -a 3 - -t 51.0297 -s 210 -d 203 -p tcp -e 1000 -i 436 -a 3 h -t 51.0297 -s 210 -d 203 -p tcp -e 1000 -i 436 -a 3 r -t 51.0297 -s 211 -d 210 -p tcp -e 1000 -i 436 -a 3 r -t 51.0317 -s 210 -d 203 -p tcp -e 1000 -i 436 -a 3 + -t 51.0327 -s 110 -d 102 -p tcp -e 1000 -i 444 -a 2 - -t 51.0327 -s 110 -d 102 -p tcp -e 1000 -i 444 -a 2 h -t 51.0327 -s 110 -d 102 -p tcp -e 1000 -i 444 -a 2 r -t 51.0327 -s 111 -d 110 -p tcp -e 1000 -i 444 -a 2 + -t 51.0342 -s 309 -d 310 -p ack -e 40 -i 401 -a 9 - -t 51.0342 -s 309 -d 310 -p ack -e 40 -i 401 -a 9 h -t 51.0342 -s 309 -d 310 -p ack -e 40 -i 401 -a 9 r -t 51.0347 -s 110 -d 102 -p tcp -e 1000 -i 444 -a 2 + -t 51.0352 -s 310 -d 311 -p ack -e 40 -i 401 -a 9 - -t 51.0352 -s 310 -d 311 -p ack -e 40 -i 401 -a 9 h -t 51.0352 -s 310 -d 311 -p ack -e 40 -i 401 -a 9 r -t 51.0352 -s 309 -d 310 -p ack -e 40 -i 401 -a 9 + -t 51.0371 -s 209 -d 210 -p ack -e 40 -i 452 -a 9 - -t 51.0371 -s 209 -d 210 -p ack -e 40 -i 452 -a 9 h -t 51.0371 -s 209 -d 210 -p ack -e 40 -i 452 -a 9 - -t 51.0375 -s 211 -d 210 -p tcp -e 1000 -i 449 -a 3 h -t 51.0375 -s 211 -d 210 -p tcp -e 1000 -i 449 -a 3 + -t 51.0381 -s 210 -d 211 -p ack -e 40 -i 452 -a 9 - -t 51.0381 -s 210 -d 211 -p ack -e 40 -i 452 -a 9 h -t 51.0381 -s 210 -d 211 -p ack -e 40 -i 452 -a 9 r -t 51.0381 -s 209 -d 210 -p ack -e 40 -i 452 -a 9 + -t 51.0397 -s 210 -d 200 -p tcp -e 1000 -i 437 -a 0 - -t 51.0397 -s 210 -d 200 -p tcp -e 1000 -i 437 -a 0 h -t 51.0397 -s 210 -d 200 -p tcp -e 1000 -i 437 -a 0 r -t 51.0397 -s 211 -d 210 -p tcp -e 1000 -i 437 -a 0 r -t 51.0417 -s 210 -d 200 -p tcp -e 1000 -i 437 -a 0 + -t 51.0427 -s 110 -d 102 -p tcp -e 1000 -i 445 -a 2 - -t 51.0427 -s 110 -d 102 -p tcp -e 1000 -i 445 -a 2 h -t 51.0427 -s 110 -d 102 -p tcp -e 1000 -i 445 -a 2 r -t 51.0427 -s 111 -d 110 -p tcp -e 1000 -i 445 -a 2 + -t 51.0439 -s 310 -d 300 -p tcp -e 1000 -i 390 -a 0 - -t 51.0439 -s 310 -d 300 -p tcp -e 1000 -i 390 -a 0 h -t 51.0439 -s 310 -d 300 -p tcp -e 1000 -i 390 -a 0 r -t 51.0439 -s 311 -d 310 -p tcp -e 1000 -i 390 -a 0 + -t 51.0445 -s 102 -d 110 -p ack -e 40 -i 455 -a 2 - -t 51.0445 -s 102 -d 110 -p ack -e 40 -i 455 -a 2 h -t 51.0445 -s 102 -d 110 -p ack -e 40 -i 455 -a 2 r -t 51.0447 -s 110 -d 102 -p tcp -e 1000 -i 445 -a 2 + -t 51.0455 -s 110 -d 111 -p ack -e 40 -i 455 -a 2 - -t 51.0455 -s 110 -d 111 -p ack -e 40 -i 455 -a 2 h -t 51.0455 -s 110 -d 111 -p ack -e 40 -i 455 -a 2 r -t 51.0455 -s 102 -d 110 -p ack -e 40 -i 455 -a 2 + -t 51.0456 -s 111 -d 112 -p ack -e 40 -i 451 -a 9 - -t 51.0456 -s 111 -d 112 -p ack -e 40 -i 451 -a 9 h -t 51.0456 -s 111 -d 112 -p ack -e 40 -i 451 -a 9 r -t 51.0456 -s 110 -d 111 -p ack -e 40 -i 451 -a 9 r -t 51.0459 -s 310 -d 300 -p tcp -e 1000 -i 390 -a 0 r -t 51.0466 -s 111 -d 112 -p ack -e 40 -i 451 -a 9 + -t 51.0467 -s 112 -d 111 -p tcp -e 1000 -i 456 -a 9 + -t 51.0467 -s 112 -d 111 -p tcp -e 1000 -i 457 -a 9 + -t 51.0467 -s 112 -d 111 -p tcp -e 1000 -i 458 -a 9 - -t 51.0467 -s 112 -d 111 -p tcp -e 1000 -i 456 -a 9 h -t 51.0467 -s 112 -d 111 -p tcp -e 1000 -i 456 -a 9 - -t 51.0475 -s 112 -d 111 -p tcp -e 1000 -i 457 -a 9 h -t 51.0475 -s 112 -d 111 -p tcp -e 1000 -i 457 -a 9 - -t 51.0483 -s 112 -d 111 -p tcp -e 1000 -i 458 -a 9 h -t 51.0483 -s 112 -d 111 -p tcp -e 1000 -i 458 -a 9 + -t 51.0485 -s 111 -d 110 -p tcp -e 1000 -i 456 -a 9 + -t 51.0485 -s 211 -d 212 -p ack -e 40 -i 440 -a 0 - -t 51.0485 -s 111 -d 110 -p tcp -e 1000 -i 456 -a 9 - -t 51.0485 -s 211 -d 212 -p ack -e 40 -i 440 -a 0 h -t 51.0485 -s 111 -d 110 -p tcp -e 1000 -i 456 -a 9 h -t 51.0485 -s 211 -d 212 -p ack -e 40 -i 440 -a 0 r -t 51.0485 -s 210 -d 211 -p ack -e 40 -i 440 -a 0 r -t 51.0487 -s 112 -d 111 -p tcp -e 1000 -i 456 -a 9 + -t 51.0493 -s 111 -d 110 -p tcp -e 1000 -i 457 -a 9 r -t 51.0495 -s 112 -d 111 -p tcp -e 1000 -i 457 -a 9 r -t 51.0495 -s 211 -d 212 -p ack -e 40 -i 440 -a 0 + -t 51.0497 -s 210 -d 200 -p tcp -e 1000 -i 438 -a 0 - -t 51.0497 -s 210 -d 200 -p tcp -e 1000 -i 438 -a 0 h -t 51.0497 -s 210 -d 200 -p tcp -e 1000 -i 438 -a 0 r -t 51.0497 -s 211 -d 210 -p tcp -e 1000 -i 438 -a 0 + -t 51.0501 -s 111 -d 110 -p tcp -e 1000 -i 458 -a 9 r -t 51.0503 -s 112 -d 111 -p tcp -e 1000 -i 458 -a 9 + -t 51.0515 -s 200 -d 210 -p ack -e 40 -i 453 -a 0 - -t 51.0515 -s 200 -d 210 -p ack -e 40 -i 453 -a 0 h -t 51.0515 -s 200 -d 210 -p ack -e 40 -i 453 -a 0 r -t 51.0517 -s 210 -d 200 -p tcp -e 1000 -i 438 -a 0 r -t 51.0525 -s 200 -d 210 -p ack -e 40 -i 453 -a 0 + -t 51.0526 -s 210 -d 211 -p ack -e 40 -i 453 -a 0 - -t 51.0526 -s 210 -d 211 -p ack -e 40 -i 453 -a 0 h -t 51.0526 -s 210 -d 211 -p ack -e 40 -i 453 -a 0 + -t 51.0527 -s 110 -d 102 -p tcp -e 1000 -i 446 -a 2 - -t 51.0527 -s 110 -d 102 -p tcp -e 1000 -i 446 -a 2 h -t 51.0527 -s 110 -d 102 -p tcp -e 1000 -i 446 -a 2 r -t 51.0527 -s 111 -d 110 -p tcp -e 1000 -i 446 -a 2 + -t 51.0539 -s 310 -d 300 -p tcp -e 1000 -i 391 -a 0 - -t 51.0539 -s 310 -d 300 -p tcp -e 1000 -i 391 -a 0 h -t 51.0539 -s 310 -d 300 -p tcp -e 1000 -i 391 -a 0 r -t 51.0539 -s 311 -d 310 -p tcp -e 1000 -i 391 -a 0 + -t 51.0542 -s 109 -d 110 -p ack -e 40 -i 459 -a 9 - -t 51.0542 -s 109 -d 110 -p ack -e 40 -i 459 -a 9 h -t 51.0542 -s 109 -d 110 -p ack -e 40 -i 459 -a 9 r -t 51.0547 -s 110 -d 102 -p tcp -e 1000 -i 446 -a 2 + -t 51.0552 -s 110 -d 111 -p ack -e 40 -i 459 -a 9 - -t 51.0552 -s 110 -d 111 -p ack -e 40 -i 459 -a 9 h -t 51.0552 -s 110 -d 111 -p ack -e 40 -i 459 -a 9 r -t 51.0552 -s 109 -d 110 -p ack -e 40 -i 459 -a 9 + -t 51.0556 -s 311 -d 312 -p ack -e 40 -i 394 -a 4 - -t 51.0556 -s 311 -d 312 -p ack -e 40 -i 394 -a 4 h -t 51.0556 -s 311 -d 312 -p ack -e 40 -i 394 -a 4 r -t 51.0556 -s 310 -d 311 -p ack -e 40 -i 394 -a 4 + -t 51.0557 -s 300 -d 310 -p ack -e 40 -i 402 -a 0 - -t 51.0557 -s 300 -d 310 -p ack -e 40 -i 402 -a 0 h -t 51.0557 -s 300 -d 310 -p ack -e 40 -i 402 -a 0 r -t 51.0559 -s 310 -d 300 -p tcp -e 1000 -i 391 -a 0 r -t 51.0566 -s 311 -d 312 -p ack -e 40 -i 394 -a 4 + -t 51.0567 -s 310 -d 311 -p ack -e 40 -i 402 -a 0 + -t 51.0567 -s 312 -d 311 -p tcp -e 1000 -i 403 -a 4 + -t 51.0567 -s 312 -d 311 -p tcp -e 1000 -i 404 -a 4 + -t 51.0567 -s 312 -d 311 -p tcp -e 1000 -i 405 -a 4 - -t 51.0567 -s 310 -d 311 -p ack -e 40 -i 402 -a 0 - -t 51.0567 -s 312 -d 311 -p tcp -e 1000 -i 403 -a 4 h -t 51.0567 -s 310 -d 311 -p ack -e 40 -i 402 -a 0 h -t 51.0567 -s 312 -d 311 -p tcp -e 1000 -i 403 -a 4 r -t 51.0567 -s 300 -d 310 -p ack -e 40 -i 402 -a 0 - -t 51.0575 -s 312 -d 311 -p tcp -e 1000 -i 404 -a 4 h -t 51.0575 -s 312 -d 311 -p tcp -e 1000 -i 404 -a 4 - -t 51.0583 -s 312 -d 311 -p tcp -e 1000 -i 405 -a 4 h -t 51.0583 -s 312 -d 311 -p tcp -e 1000 -i 405 -a 4 + -t 51.0585 -s 311 -d 310 -p tcp -e 1000 -i 403 -a 4 - -t 51.0585 -s 111 -d 110 -p tcp -e 1000 -i 457 -a 9 - -t 51.0585 -s 311 -d 310 -p tcp -e 1000 -i 403 -a 4 h -t 51.0585 -s 111 -d 110 -p tcp -e 1000 -i 457 -a 9 h -t 51.0585 -s 311 -d 310 -p tcp -e 1000 -i 403 -a 4 r -t 51.0587 -s 312 -d 311 -p tcp -e 1000 -i 403 -a 4 + -t 51.0593 -s 311 -d 310 -p tcp -e 1000 -i 404 -a 4 r -t 51.0595 -s 312 -d 311 -p tcp -e 1000 -i 404 -a 4 + -t 51.0597 -s 210 -d 200 -p tcp -e 1000 -i 439 -a 0 - -t 51.0597 -s 210 -d 200 -p tcp -e 1000 -i 439 -a 0 h -t 51.0597 -s 210 -d 200 -p tcp -e 1000 -i 439 -a 0 r -t 51.0597 -s 211 -d 210 -p tcp -e 1000 -i 439 -a 0 + -t 51.0601 -s 311 -d 310 -p tcp -e 1000 -i 405 -a 4 r -t 51.0603 -s 312 -d 311 -p tcp -e 1000 -i 405 -a 4 r -t 51.0617 -s 210 -d 200 -p tcp -e 1000 -i 439 -a 0 + -t 51.0627 -s 110 -d 102 -p tcp -e 1000 -i 447 -a 2 - -t 51.0627 -s 110 -d 102 -p tcp -e 1000 -i 447 -a 2 h -t 51.0627 -s 110 -d 102 -p tcp -e 1000 -i 447 -a 2 r -t 51.0627 -s 111 -d 110 -p tcp -e 1000 -i 447 -a 2 + -t 51.0639 -s 310 -d 301 -p tcp -e 1000 -i 392 -a 1 - -t 51.0639 -s 310 -d 301 -p tcp -e 1000 -i 392 -a 1 h -t 51.0639 -s 310 -d 301 -p tcp -e 1000 -i 392 -a 1 r -t 51.0639 -s 311 -d 310 -p tcp -e 1000 -i 392 -a 1 + -t 51.0645 -s 102 -d 110 -p ack -e 40 -i 460 -a 2 - -t 51.0645 -s 102 -d 110 -p ack -e 40 -i 460 -a 2 h -t 51.0645 -s 102 -d 110 -p ack -e 40 -i 460 -a 2 r -t 51.0647 -s 110 -d 102 -p tcp -e 1000 -i 447 -a 2 + -t 51.0655 -s 110 -d 111 -p ack -e 40 -i 460 -a 2 - -t 51.0655 -s 110 -d 111 -p ack -e 40 -i 460 -a 2 h -t 51.0655 -s 110 -d 111 -p ack -e 40 -i 460 -a 2 r -t 51.0655 -s 102 -d 110 -p ack -e 40 -i 460 -a 2 r -t 51.0659 -s 310 -d 301 -p tcp -e 1000 -i 392 -a 1 - -t 51.0685 -s 111 -d 110 -p tcp -e 1000 -i 458 -a 9 - -t 51.0685 -s 311 -d 310 -p tcp -e 1000 -i 404 -a 4 h -t 51.0685 -s 111 -d 110 -p tcp -e 1000 -i 458 -a 9 h -t 51.0685 -s 311 -d 310 -p tcp -e 1000 -i 404 -a 4 + -t 51.0727 -s 110 -d 103 -p tcp -e 1000 -i 448 -a 3 - -t 51.0727 -s 110 -d 103 -p tcp -e 1000 -i 448 -a 3 h -t 51.0727 -s 110 -d 103 -p tcp -e 1000 -i 448 -a 3 r -t 51.0727 -s 111 -d 110 -p tcp -e 1000 -i 448 -a 3 + -t 51.0739 -s 310 -d 301 -p tcp -e 1000 -i 393 -a 1 - -t 51.0739 -s 310 -d 301 -p tcp -e 1000 -i 393 -a 1 h -t 51.0739 -s 310 -d 301 -p tcp -e 1000 -i 393 -a 1 r -t 51.0739 -s 311 -d 310 -p tcp -e 1000 -i 393 -a 1 + -t 51.0745 -s 202 -d 210 -p ack -e 40 -i 454 -a 2 - -t 51.0745 -s 202 -d 210 -p ack -e 40 -i 454 -a 2 h -t 51.0745 -s 202 -d 210 -p ack -e 40 -i 454 -a 2 r -t 51.0747 -s 110 -d 103 -p tcp -e 1000 -i 448 -a 3 + -t 51.0755 -s 210 -d 211 -p ack -e 40 -i 454 -a 2 - -t 51.0755 -s 210 -d 211 -p ack -e 40 -i 454 -a 2 h -t 51.0755 -s 210 -d 211 -p ack -e 40 -i 454 -a 2 r -t 51.0755 -s 202 -d 210 -p ack -e 40 -i 454 -a 2 + -t 51.0756 -s 311 -d 312 -p ack -e 40 -i 397 -a 6 - -t 51.0756 -s 311 -d 312 -p ack -e 40 -i 397 -a 6 h -t 51.0756 -s 311 -d 312 -p ack -e 40 -i 397 -a 6 r -t 51.0756 -s 310 -d 311 -p ack -e 40 -i 397 -a 6 + -t 51.0757 -s 301 -d 310 -p ack -e 40 -i 406 -a 1 - -t 51.0757 -s 301 -d 310 -p ack -e 40 -i 406 -a 1 h -t 51.0757 -s 301 -d 310 -p ack -e 40 -i 406 -a 1 r -t 51.0759 -s 310 -d 301 -p tcp -e 1000 -i 393 -a 1 r -t 51.0766 -s 311 -d 312 -p ack -e 40 -i 397 -a 6 + -t 51.0767 -s 310 -d 311 -p ack -e 40 -i 406 -a 1 + -t 51.0767 -s 312 -d 311 -p tcp -e 1000 -i 407 -a 6 + -t 51.0767 -s 312 -d 311 -p tcp -e 1000 -i 408 -a 6 - -t 51.0767 -s 310 -d 311 -p ack -e 40 -i 406 -a 1 - -t 51.0767 -s 312 -d 311 -p tcp -e 1000 -i 407 -a 6 h -t 51.0767 -s 310 -d 311 -p ack -e 40 -i 406 -a 1 h -t 51.0767 -s 312 -d 311 -p tcp -e 1000 -i 407 -a 6 r -t 51.0767 -s 301 -d 310 -p ack -e 40 -i 406 -a 1 - -t 51.0775 -s 312 -d 311 -p tcp -e 1000 -i 408 -a 6 h -t 51.0775 -s 312 -d 311 -p tcp -e 1000 -i 408 -a 6 + -t 51.0785 -s 311 -d 310 -p tcp -e 1000 -i 407 -a 6 - -t 51.0785 -s 311 -d 310 -p tcp -e 1000 -i 405 -a 4 h -t 51.0785 -s 311 -d 310 -p tcp -e 1000 -i 405 -a 4 r -t 51.0787 -s 312 -d 311 -p tcp -e 1000 -i 407 -a 6 + -t 51.0793 -s 311 -d 310 -p tcp -e 1000 -i 408 -a 6 r -t 51.0795 -s 312 -d 311 -p tcp -e 1000 -i 408 -a 6 + -t 51.0827 -s 110 -d 103 -p tcp -e 1000 -i 449 -a 3 - -t 51.0827 -s 110 -d 103 -p tcp -e 1000 -i 449 -a 3 h -t 51.0827 -s 110 -d 103 -p tcp -e 1000 -i 449 -a 3 r -t 51.0827 -s 111 -d 110 -p tcp -e 1000 -i 449 -a 3 + -t 51.0839 -s 310 -d 308 -p tcp -e 1000 -i 395 -a 8 - -t 51.0839 -s 310 -d 308 -p tcp -e 1000 -i 395 -a 8 h -t 51.0839 -s 310 -d 308 -p tcp -e 1000 -i 395 -a 8 r -t 51.0839 -s 311 -d 310 -p tcp -e 1000 -i 395 -a 8 + -t 51.0842 -s 302 -d 310 -p ack -e 40 -i 409 -a 2 - -t 51.0842 -s 302 -d 310 -p ack -e 40 -i 409 -a 2 h -t 51.0842 -s 302 -d 310 -p ack -e 40 -i 409 -a 2 + -t 51.0845 -s 103 -d 110 -p ack -e 40 -i 461 -a 3 - -t 51.0845 -s 103 -d 110 -p ack -e 40 -i 461 -a 3 h -t 51.0845 -s 103 -d 110 -p ack -e 40 -i 461 -a 3 r -t 51.0847 -s 110 -d 103 -p tcp -e 1000 -i 449 -a 3 + -t 51.0852 -s 310 -d 311 -p ack -e 40 -i 409 -a 2 - -t 51.0852 -s 310 -d 311 -p ack -e 40 -i 409 -a 2 h -t 51.0852 -s 310 -d 311 -p ack -e 40 -i 409 -a 2 r -t 51.0852 -s 302 -d 310 -p ack -e 40 -i 409 -a 2 + -t 51.0855 -s 110 -d 111 -p ack -e 40 -i 461 -a 3 - -t 51.0855 -s 110 -d 111 -p ack -e 40 -i 461 -a 3 h -t 51.0855 -s 110 -d 111 -p ack -e 40 -i 461 -a 3 r -t 51.0855 -s 103 -d 110 -p ack -e 40 -i 461 -a 3 + -t 51.0859 -s 111 -d 112 -p ack -e 40 -i 452 -a 2 - -t 51.0859 -s 111 -d 112 -p ack -e 40 -i 452 -a 2 h -t 51.0859 -s 111 -d 112 -p ack -e 40 -i 452 -a 2 r -t 51.0859 -s 110 -d 111 -p ack -e 40 -i 452 -a 2 r -t 51.0859 -s 310 -d 308 -p tcp -e 1000 -i 395 -a 8 r -t 51.0869 -s 111 -d 112 -p ack -e 40 -i 452 -a 2 + -t 51.0875 -s 210 -d 202 -p tcp -e 1000 -i 441 -a 2 - -t 51.0875 -s 210 -d 202 -p tcp -e 1000 -i 441 -a 2 h -t 51.0875 -s 210 -d 202 -p tcp -e 1000 -i 441 -a 2 r -t 51.0875 -s 211 -d 210 -p tcp -e 1000 -i 441 -a 2 + -t 51.0885 -s 211 -d 212 -p ack -e 40 -i 444 -a 8 - -t 51.0885 -s 211 -d 212 -p ack -e 40 -i 444 -a 8 - -t 51.0885 -s 311 -d 310 -p tcp -e 1000 -i 407 -a 6 h -t 51.0885 -s 211 -d 212 -p ack -e 40 -i 444 -a 8 h -t 51.0885 -s 311 -d 310 -p tcp -e 1000 -i 407 -a 6 r -t 51.0885 -s 210 -d 211 -p ack -e 40 -i 444 -a 8 r -t 51.0895 -s 210 -d 202 -p tcp -e 1000 -i 441 -a 2 r -t 51.0895 -s 211 -d 212 -p ack -e 40 -i 444 -a 8 + -t 51.0905 -s 212 -d 211 -p tcp -e 1000 -i 455 -a 2 - -t 51.0905 -s 212 -d 211 -p tcp -e 1000 -i 455 -a 2 h -t 51.0905 -s 212 -d 211 -p tcp -e 1000 -i 455 -a 2 + -t 51.0913 -s 211 -d 212 -p ack -e 40 -i 445 -a 6 - -t 51.0913 -s 211 -d 212 -p ack -e 40 -i 445 -a 6 h -t 51.0913 -s 211 -d 212 -p ack -e 40 -i 445 -a 6 r -t 51.0913 -s 210 -d 211 -p ack -e 40 -i 445 -a 6 + -t 51.0923 -s 211 -d 210 -p tcp -e 1000 -i 455 -a 2 - -t 51.0923 -s 211 -d 210 -p tcp -e 1000 -i 455 -a 2 h -t 51.0923 -s 211 -d 210 -p tcp -e 1000 -i 455 -a 2 r -t 51.0923 -s 211 -d 212 -p ack -e 40 -i 445 -a 6 r -t 51.0925 -s 212 -d 211 -p tcp -e 1000 -i 455 -a 2 + -t 51.0939 -s 310 -d 308 -p tcp -e 1000 -i 396 -a 8 - -t 51.0939 -s 310 -d 308 -p tcp -e 1000 -i 396 -a 8 h -t 51.0939 -s 310 -d 308 -p tcp -e 1000 -i 396 -a 8 r -t 51.0939 -s 311 -d 310 -p tcp -e 1000 -i 396 -a 8 + -t 51.0957 -s 308 -d 310 -p ack -e 40 -i 410 -a 8 - -t 51.0957 -s 308 -d 310 -p ack -e 40 -i 410 -a 8 h -t 51.0957 -s 308 -d 310 -p ack -e 40 -i 410 -a 8 r -t 51.0959 -s 310 -d 308 -p tcp -e 1000 -i 396 -a 8 + -t 51.0967 -s 310 -d 311 -p ack -e 40 -i 410 -a 8 - -t 51.0967 -s 310 -d 311 -p ack -e 40 -i 410 -a 8 h -t 51.0967 -s 310 -d 311 -p ack -e 40 -i 410 -a 8 r -t 51.0967 -s 308 -d 310 -p ack -e 40 -i 410 -a 8 + -t 51.0975 -s 210 -d 208 -p tcp -e 1000 -i 442 -a 8 - -t 51.0975 -s 210 -d 208 -p tcp -e 1000 -i 442 -a 8 h -t 51.0975 -s 210 -d 208 -p tcp -e 1000 -i 442 -a 8 r -t 51.0975 -s 211 -d 210 -p tcp -e 1000 -i 442 -a 8 - -t 51.0985 -s 311 -d 310 -p tcp -e 1000 -i 408 -a 6 h -t 51.0985 -s 311 -d 310 -p tcp -e 1000 -i 408 -a 6 + -t 51.0993 -s 208 -d 210 -p ack -e 40 -i 456 -a 8 - -t 51.0993 -s 208 -d 210 -p ack -e 40 -i 456 -a 8 h -t 51.0993 -s 208 -d 210 -p ack -e 40 -i 456 -a 8 r -t 51.0995 -s 210 -d 208 -p tcp -e 1000 -i 442 -a 8 + -t 51.1003 -s 210 -d 211 -p ack -e 40 -i 456 -a 8 - -t 51.1003 -s 210 -d 211 -p ack -e 40 -i 456 -a 8 h -t 51.1003 -s 210 -d 211 -p ack -e 40 -i 456 -a 8 r -t 51.1003 -s 208 -d 210 -p ack -e 40 -i 456 -a 8 + -t 51.1056 -s 311 -d 312 -p ack -e 40 -i 398 -a 7 - -t 51.1056 -s 311 -d 312 -p ack -e 40 -i 398 -a 7 h -t 51.1056 -s 311 -d 312 -p ack -e 40 -i 398 -a 7 r -t 51.1056 -s 310 -d 311 -p ack -e 40 -i 398 -a 7 + -t 51.1059 -s 111 -d 112 -p ack -e 40 -i 453 -a 2 - -t 51.1059 -s 111 -d 112 -p ack -e 40 -i 453 -a 2 h -t 51.1059 -s 111 -d 112 -p ack -e 40 -i 453 -a 2 r -t 51.1059 -s 110 -d 111 -p ack -e 40 -i 453 -a 2 r -t 51.1066 -s 311 -d 312 -p ack -e 40 -i 398 -a 7 r -t 51.1069 -s 111 -d 112 -p ack -e 40 -i 453 -a 2 + -t 51.1075 -s 210 -d 208 -p tcp -e 1000 -i 443 -a 8 - -t 51.1075 -s 210 -d 208 -p tcp -e 1000 -i 443 -a 8 h -t 51.1075 -s 210 -d 208 -p tcp -e 1000 -i 443 -a 8 r -t 51.1075 -s 211 -d 210 -p tcp -e 1000 -i 443 -a 8 r -t 51.1095 -s 210 -d 208 -p tcp -e 1000 -i 443 -a 8 + -t 51.113 -s 211 -d 212 -p ack -e 40 -i 450 -a 8 - -t 51.113 -s 211 -d 212 -p ack -e 40 -i 450 -a 8 h -t 51.113 -s 211 -d 212 -p ack -e 40 -i 450 -a 8 r -t 51.113 -s 210 -d 211 -p ack -e 40 -i 450 -a 8 r -t 51.114 -s 211 -d 212 -p ack -e 40 -i 450 -a 8 + -t 51.1142 -s 307 -d 310 -p ack -e 40 -i 411 -a 7 - -t 51.1142 -s 307 -d 310 -p ack -e 40 -i 411 -a 7 h -t 51.1142 -s 307 -d 310 -p ack -e 40 -i 411 -a 7 + -t 51.1152 -s 310 -d 311 -p ack -e 40 -i 411 -a 7 - -t 51.1152 -s 310 -d 311 -p ack -e 40 -i 411 -a 7 h -t 51.1152 -s 310 -d 311 -p ack -e 40 -i 411 -a 7 r -t 51.1152 -s 307 -d 310 -p ack -e 40 -i 411 -a 7 + -t 51.1175 -s 210 -d 209 -p tcp -e 1000 -i 446 -a 9 - -t 51.1175 -s 210 -d 209 -p tcp -e 1000 -i 446 -a 9 h -t 51.1175 -s 210 -d 209 -p tcp -e 1000 -i 446 -a 9 r -t 51.1175 -s 211 -d 210 -p tcp -e 1000 -i 446 -a 9 r -t 51.1195 -s 210 -d 209 -p tcp -e 1000 -i 446 -a 9 + -t 51.1202 -s 310 -d 303 -p tcp -e 1000 -i 399 -a 3 - -t 51.1202 -s 310 -d 303 -p tcp -e 1000 -i 399 -a 3 h -t 51.1202 -s 310 -d 303 -p tcp -e 1000 -i 399 -a 3 r -t 51.1202 -s 311 -d 310 -p tcp -e 1000 -i 399 -a 3 r -t 51.1222 -s 310 -d 303 -p tcp -e 1000 -i 399 -a 3 + -t 51.1259 -s 111 -d 112 -p ack -e 40 -i 454 -a 2 - -t 51.1259 -s 111 -d 112 -p ack -e 40 -i 454 -a 2 h -t 51.1259 -s 111 -d 112 -p ack -e 40 -i 454 -a 2 r -t 51.1259 -s 110 -d 111 -p ack -e 40 -i 454 -a 2 r -t 51.1269 -s 111 -d 112 -p ack -e 40 -i 454 -a 2 + -t 51.1275 -s 210 -d 203 -p tcp -e 1000 -i 447 -a 3 - -t 51.1275 -s 210 -d 203 -p tcp -e 1000 -i 447 -a 3 h -t 51.1275 -s 210 -d 203 -p tcp -e 1000 -i 447 -a 3 r -t 51.1275 -s 211 -d 210 -p tcp -e 1000 -i 447 -a 3 + -t 51.1285 -s 211 -d 212 -p ack -e 40 -i 451 -a 3 - -t 51.1285 -s 211 -d 212 -p ack -e 40 -i 451 -a 3 h -t 51.1285 -s 211 -d 212 -p ack -e 40 -i 451 -a 3 r -t 51.1285 -s 210 -d 211 -p ack -e 40 -i 451 -a 3 + -t 51.1293 -s 203 -d 210 -p ack -e 40 -i 457 -a 3 - -t 51.1293 -s 203 -d 210 -p ack -e 40 -i 457 -a 3 h -t 51.1293 -s 203 -d 210 -p ack -e 40 -i 457 -a 3 r -t 51.1295 -s 210 -d 203 -p tcp -e 1000 -i 447 -a 3 r -t 51.1295 -s 211 -d 212 -p ack -e 40 -i 451 -a 3 + -t 51.1296 -s 212 -d 211 -p tcp -e 1000 -i 458 -a 3 + -t 51.1296 -s 212 -d 211 -p tcp -e 1000 -i 459 -a 3 + -t 51.1296 -s 212 -d 211 -p tcp -e 1000 -i 460 -a 3 - -t 51.1296 -s 212 -d 211 -p tcp -e 1000 -i 458 -a 3 h -t 51.1296 -s 212 -d 211 -p tcp -e 1000 -i 458 -a 3 + -t 51.1302 -s 310 -d 303 -p tcp -e 1000 -i 400 -a 3 - -t 51.1302 -s 310 -d 303 -p tcp -e 1000 -i 400 -a 3 h -t 51.1302 -s 310 -d 303 -p tcp -e 1000 -i 400 -a 3 r -t 51.1302 -s 311 -d 310 -p tcp -e 1000 -i 400 -a 3 + -t 51.1303 -s 210 -d 211 -p ack -e 40 -i 457 -a 3 - -t 51.1303 -s 210 -d 211 -p ack -e 40 -i 457 -a 3 h -t 51.1303 -s 210 -d 211 -p ack -e 40 -i 457 -a 3 r -t 51.1303 -s 203 -d 210 -p ack -e 40 -i 457 -a 3 - -t 51.1304 -s 212 -d 211 -p tcp -e 1000 -i 459 -a 3 h -t 51.1304 -s 212 -d 211 -p tcp -e 1000 -i 459 -a 3 - -t 51.1312 -s 212 -d 211 -p tcp -e 1000 -i 460 -a 3 h -t 51.1312 -s 212 -d 211 -p tcp -e 1000 -i 460 -a 3 + -t 51.1314 -s 211 -d 210 -p tcp -e 1000 -i 458 -a 3 - -t 51.1314 -s 211 -d 210 -p tcp -e 1000 -i 458 -a 3 h -t 51.1314 -s 211 -d 210 -p tcp -e 1000 -i 458 -a 3 r -t 51.1316 -s 212 -d 211 -p tcp -e 1000 -i 458 -a 3 + -t 51.132 -s 303 -d 310 -p ack -e 40 -i 412 -a 3 - -t 51.132 -s 303 -d 310 -p ack -e 40 -i 412 -a 3 h -t 51.132 -s 303 -d 310 -p ack -e 40 -i 412 -a 3 + -t 51.1322 -s 211 -d 210 -p tcp -e 1000 -i 459 -a 3 r -t 51.1322 -s 310 -d 303 -p tcp -e 1000 -i 400 -a 3 r -t 51.1324 -s 212 -d 211 -p tcp -e 1000 -i 459 -a 3 + -t 51.133 -s 211 -d 210 -p tcp -e 1000 -i 460 -a 3 + -t 51.133 -s 310 -d 311 -p ack -e 40 -i 412 -a 3 - -t 51.133 -s 310 -d 311 -p ack -e 40 -i 412 -a 3 h -t 51.133 -s 310 -d 311 -p ack -e 40 -i 412 -a 3 r -t 51.133 -s 303 -d 310 -p ack -e 40 -i 412 -a 3 r -t 51.1332 -s 212 -d 211 -p tcp -e 1000 -i 460 -a 3 + -t 51.1356 -s 311 -d 312 -p ack -e 40 -i 401 -a 9 - -t 51.1356 -s 311 -d 312 -p ack -e 40 -i 401 -a 9 h -t 51.1356 -s 311 -d 312 -p ack -e 40 -i 401 -a 9 r -t 51.1356 -s 310 -d 311 -p ack -e 40 -i 401 -a 9 r -t 51.1366 -s 311 -d 312 -p ack -e 40 -i 401 -a 9 + -t 51.1367 -s 312 -d 311 -p tcp -e 1000 -i 413 -a 9 + -t 51.1367 -s 312 -d 311 -p tcp -e 1000 -i 414 -a 9 - -t 51.1367 -s 312 -d 311 -p tcp -e 1000 -i 413 -a 9 h -t 51.1367 -s 312 -d 311 -p tcp -e 1000 -i 413 -a 9 + -t 51.1375 -s 210 -d 203 -p tcp -e 1000 -i 448 -a 3 - -t 51.1375 -s 210 -d 203 -p tcp -e 1000 -i 448 -a 3 - -t 51.1375 -s 312 -d 311 -p tcp -e 1000 -i 414 -a 9 h -t 51.1375 -s 210 -d 203 -p tcp -e 1000 -i 448 -a 3 h -t 51.1375 -s 312 -d 311 -p tcp -e 1000 -i 414 -a 9 r -t 51.1375 -s 211 -d 210 -p tcp -e 1000 -i 448 -a 3 + -t 51.1385 -s 211 -d 212 -p ack -e 40 -i 452 -a 9 + -t 51.1385 -s 311 -d 310 -p tcp -e 1000 -i 413 -a 9 - -t 51.1385 -s 211 -d 212 -p ack -e 40 -i 452 -a 9 - -t 51.1385 -s 311 -d 310 -p tcp -e 1000 -i 413 -a 9 h -t 51.1385 -s 211 -d 212 -p ack -e 40 -i 452 -a 9 h -t 51.1385 -s 311 -d 310 -p tcp -e 1000 -i 413 -a 9 r -t 51.1385 -s 210 -d 211 -p ack -e 40 -i 452 -a 9 r -t 51.1387 -s 312 -d 311 -p tcp -e 1000 -i 413 -a 9 + -t 51.1393 -s 311 -d 310 -p tcp -e 1000 -i 414 -a 9 r -t 51.1395 -s 210 -d 203 -p tcp -e 1000 -i 448 -a 3 r -t 51.1395 -s 211 -d 212 -p ack -e 40 -i 452 -a 9 r -t 51.1395 -s 312 -d 311 -p tcp -e 1000 -i 414 -a 9 + -t 51.1396 -s 212 -d 211 -p tcp -e 1000 -i 461 -a 9 + -t 51.1396 -s 212 -d 211 -p tcp -e 1000 -i 462 -a 9 + -t 51.1396 -s 212 -d 211 -p tcp -e 1000 -i 463 -a 9 - -t 51.1396 -s 212 -d 211 -p tcp -e 1000 -i 461 -a 9 h -t 51.1396 -s 212 -d 211 -p tcp -e 1000 -i 461 -a 9 - -t 51.1404 -s 212 -d 211 -p tcp -e 1000 -i 462 -a 9 h -t 51.1404 -s 212 -d 211 -p tcp -e 1000 -i 462 -a 9 - -t 51.1412 -s 212 -d 211 -p tcp -e 1000 -i 463 -a 9 h -t 51.1412 -s 212 -d 211 -p tcp -e 1000 -i 463 -a 9 + -t 51.1414 -s 211 -d 210 -p tcp -e 1000 -i 461 -a 9 - -t 51.1414 -s 211 -d 210 -p tcp -e 1000 -i 459 -a 3 h -t 51.1414 -s 211 -d 210 -p tcp -e 1000 -i 459 -a 3 r -t 51.1416 -s 212 -d 211 -p tcp -e 1000 -i 461 -a 9 + -t 51.1422 -s 211 -d 210 -p tcp -e 1000 -i 462 -a 9 r -t 51.1424 -s 212 -d 211 -p tcp -e 1000 -i 462 -a 9 + -t 51.143 -s 211 -d 210 -p tcp -e 1000 -i 463 -a 9 r -t 51.1432 -s 212 -d 211 -p tcp -e 1000 -i 463 -a 9 + -t 51.1459 -s 111 -d 112 -p ack -e 40 -i 455 -a 2 - -t 51.1459 -s 111 -d 112 -p ack -e 40 -i 455 -a 2 h -t 51.1459 -s 111 -d 112 -p ack -e 40 -i 455 -a 2 r -t 51.1459 -s 110 -d 111 -p ack -e 40 -i 455 -a 2 r -t 51.1469 -s 111 -d 112 -p ack -e 40 -i 455 -a 2 + -t 51.1475 -s 210 -d 203 -p tcp -e 1000 -i 449 -a 3 - -t 51.1475 -s 210 -d 203 -p tcp -e 1000 -i 449 -a 3 h -t 51.1475 -s 210 -d 203 -p tcp -e 1000 -i 449 -a 3 r -t 51.1475 -s 211 -d 210 -p tcp -e 1000 -i 449 -a 3 - -t 51.1485 -s 311 -d 310 -p tcp -e 1000 -i 414 -a 9 h -t 51.1485 -s 311 -d 310 -p tcp -e 1000 -i 414 -a 9 + -t 51.1493 -s 203 -d 210 -p ack -e 40 -i 464 -a 3 - -t 51.1493 -s 203 -d 210 -p ack -e 40 -i 464 -a 3 h -t 51.1493 -s 203 -d 210 -p ack -e 40 -i 464 -a 3 r -t 51.1495 -s 210 -d 203 -p tcp -e 1000 -i 449 -a 3 + -t 51.1503 -s 210 -d 211 -p ack -e 40 -i 464 -a 3 - -t 51.1503 -s 210 -d 211 -p ack -e 40 -i 464 -a 3 h -t 51.1503 -s 210 -d 211 -p ack -e 40 -i 464 -a 3 r -t 51.1503 -s 203 -d 210 -p ack -e 40 -i 464 -a 3 - -t 51.1514 -s 211 -d 210 -p tcp -e 1000 -i 460 -a 3 h -t 51.1514 -s 211 -d 210 -p tcp -e 1000 -i 460 -a 3 + -t 51.153 -s 211 -d 212 -p ack -e 40 -i 453 -a 0 - -t 51.153 -s 211 -d 212 -p ack -e 40 -i 453 -a 0 h -t 51.153 -s 211 -d 212 -p ack -e 40 -i 453 -a 0 r -t 51.153 -s 210 -d 211 -p ack -e 40 -i 453 -a 0 r -t 51.154 -s 211 -d 212 -p ack -e 40 -i 453 -a 0 + -t 51.1556 -s 111 -d 112 -p ack -e 40 -i 459 -a 9 - -t 51.1556 -s 111 -d 112 -p ack -e 40 -i 459 -a 9 h -t 51.1556 -s 111 -d 112 -p ack -e 40 -i 459 -a 9 r -t 51.1556 -s 110 -d 111 -p ack -e 40 -i 459 -a 9 r -t 51.1566 -s 111 -d 112 -p ack -e 40 -i 459 -a 9 + -t 51.1567 -s 112 -d 111 -p tcp -e 1000 -i 462 -a 9 + -t 51.1567 -s 112 -d 111 -p tcp -e 1000 -i 463 -a 9 - -t 51.1567 -s 112 -d 111 -p tcp -e 1000 -i 462 -a 9 h -t 51.1567 -s 112 -d 111 -p tcp -e 1000 -i 462 -a 9 + -t 51.1571 -s 311 -d 312 -p ack -e 40 -i 402 -a 0 - -t 51.1571 -s 311 -d 312 -p ack -e 40 -i 402 -a 0 h -t 51.1571 -s 311 -d 312 -p ack -e 40 -i 402 -a 0 r -t 51.1571 -s 310 -d 311 -p ack -e 40 -i 402 -a 0 - -t 51.1575 -s 112 -d 111 -p tcp -e 1000 -i 463 -a 9 h -t 51.1575 -s 112 -d 111 -p tcp -e 1000 -i 463 -a 9 r -t 51.1581 -s 311 -d 312 -p ack -e 40 -i 402 -a 0 + -t 51.1582 -s 312 -d 311 -p tcp -e 1000 -i 415 -a 0 + -t 51.1582 -s 312 -d 311 -p tcp -e 1000 -i 416 -a 0 - -t 51.1582 -s 312 -d 311 -p tcp -e 1000 -i 415 -a 0 h -t 51.1582 -s 312 -d 311 -p tcp -e 1000 -i 415 -a 0 + -t 51.1585 -s 110 -d 109 -p tcp -e 1000 -i 456 -a 9 + -t 51.1585 -s 111 -d 110 -p tcp -e 1000 -i 462 -a 9 - -t 51.1585 -s 110 -d 109 -p tcp -e 1000 -i 456 -a 9 - -t 51.1585 -s 111 -d 110 -p tcp -e 1000 -i 462 -a 9 h -t 51.1585 -s 110 -d 109 -p tcp -e 1000 -i 456 -a 9 h -t 51.1585 -s 111 -d 110 -p tcp -e 1000 -i 462 -a 9 r -t 51.1585 -s 111 -d 110 -p tcp -e 1000 -i 456 -a 9 r -t 51.1587 -s 112 -d 111 -p tcp -e 1000 -i 462 -a 9 - -t 51.159 -s 312 -d 311 -p tcp -e 1000 -i 416 -a 0 h -t 51.159 -s 312 -d 311 -p tcp -e 1000 -i 416 -a 0 + -t 51.1593 -s 111 -d 110 -p tcp -e 1000 -i 463 -a 9 r -t 51.1595 -s 112 -d 111 -p tcp -e 1000 -i 463 -a 9 + -t 51.16 -s 311 -d 310 -p tcp -e 1000 -i 415 -a 0 - -t 51.16 -s 311 -d 310 -p tcp -e 1000 -i 415 -a 0 h -t 51.16 -s 311 -d 310 -p tcp -e 1000 -i 415 -a 0 r -t 51.1602 -s 312 -d 311 -p tcp -e 1000 -i 415 -a 0 r -t 51.1605 -s 110 -d 109 -p tcp -e 1000 -i 456 -a 9 + -t 51.1608 -s 311 -d 310 -p tcp -e 1000 -i 416 -a 0 r -t 51.161 -s 312 -d 311 -p tcp -e 1000 -i 416 -a 0 - -t 51.1614 -s 211 -d 210 -p tcp -e 1000 -i 461 -a 9 h -t 51.1614 -s 211 -d 210 -p tcp -e 1000 -i 461 -a 9 + -t 51.1615 -s 200 -d 210 -p ack -e 40 -i 465 -a 0 - -t 51.1615 -s 200 -d 210 -p ack -e 40 -i 465 -a 0 h -t 51.1615 -s 200 -d 210 -p ack -e 40 -i 465 -a 0 r -t 51.1625 -s 200 -d 210 -p ack -e 40 -i 465 -a 0 + -t 51.1626 -s 210 -d 211 -p ack -e 40 -i 465 -a 0 - -t 51.1626 -s 210 -d 211 -p ack -e 40 -i 465 -a 0 h -t 51.1626 -s 210 -d 211 -p ack -e 40 -i 465 -a 0 + -t 51.1659 -s 111 -d 112 -p ack -e 40 -i 460 -a 2 - -t 51.1659 -s 111 -d 112 -p ack -e 40 -i 460 -a 2 h -t 51.1659 -s 111 -d 112 -p ack -e 40 -i 460 -a 2 r -t 51.1659 -s 110 -d 111 -p ack -e 40 -i 460 -a 2 r -t 51.1669 -s 111 -d 112 -p ack -e 40 -i 460 -a 2 + -t 51.1685 -s 110 -d 109 -p tcp -e 1000 -i 457 -a 9 + -t 51.1685 -s 310 -d 304 -p tcp -e 1000 -i 403 -a 4 - -t 51.1685 -s 110 -d 109 -p tcp -e 1000 -i 457 -a 9 - -t 51.1685 -s 111 -d 110 -p tcp -e 1000 -i 463 -a 9 - -t 51.1685 -s 310 -d 304 -p tcp -e 1000 -i 403 -a 4 h -t 51.1685 -s 110 -d 109 -p tcp -e 1000 -i 457 -a 9 h -t 51.1685 -s 111 -d 110 -p tcp -e 1000 -i 463 -a 9 h -t 51.1685 -s 310 -d 304 -p tcp -e 1000 -i 403 -a 4 r -t 51.1685 -s 111 -d 110 -p tcp -e 1000 -i 457 -a 9 r -t 51.1685 -s 311 -d 310 -p tcp -e 1000 -i 403 -a 4 - -t 51.17 -s 311 -d 310 -p tcp -e 1000 -i 416 -a 0 h -t 51.17 -s 311 -d 310 -p tcp -e 1000 -i 416 -a 0 + -t 51.1703 -s 109 -d 110 -p ack -e 40 -i 464 -a 9 - -t 51.1703 -s 109 -d 110 -p ack -e 40 -i 464 -a 9 h -t 51.1703 -s 109 -d 110 -p ack -e 40 -i 464 -a 9 r -t 51.1705 -s 110 -d 109 -p tcp -e 1000 -i 457 -a 9 r -t 51.1705 -s 310 -d 304 -p tcp -e 1000 -i 403 -a 4 + -t 51.1713 -s 110 -d 111 -p ack -e 40 -i 464 -a 9 - -t 51.1713 -s 110 -d 111 -p ack -e 40 -i 464 -a 9 h -t 51.1713 -s 110 -d 111 -p ack -e 40 -i 464 -a 9 r -t 51.1713 -s 109 -d 110 -p ack -e 40 -i 464 -a 9 - -t 51.1714 -s 211 -d 210 -p tcp -e 1000 -i 462 -a 9 h -t 51.1714 -s 211 -d 210 -p tcp -e 1000 -i 462 -a 9 + -t 51.1759 -s 211 -d 212 -p ack -e 40 -i 454 -a 2 - -t 51.1759 -s 211 -d 212 -p ack -e 40 -i 454 -a 2 h -t 51.1759 -s 211 -d 212 -p ack -e 40 -i 454 -a 2 r -t 51.1759 -s 210 -d 211 -p ack -e 40 -i 454 -a 2 r -t 51.1769 -s 211 -d 212 -p ack -e 40 -i 454 -a 2 + -t 51.177 -s 212 -d 211 -p tcp -e 1000 -i 466 -a 2 + -t 51.177 -s 212 -d 211 -p tcp -e 1000 -i 467 -a 2 + -t 51.177 -s 212 -d 211 -p tcp -e 1000 -i 468 -a 2 - -t 51.177 -s 212 -d 211 -p tcp -e 1000 -i 466 -a 2 h -t 51.177 -s 212 -d 211 -p tcp -e 1000 -i 466 -a 2 + -t 51.1771 -s 311 -d 312 -p ack -e 40 -i 406 -a 1 - -t 51.1771 -s 311 -d 312 -p ack -e 40 -i 406 -a 1 h -t 51.1771 -s 311 -d 312 -p ack -e 40 -i 406 -a 1 r -t 51.1771 -s 310 -d 311 -p ack -e 40 -i 406 -a 1 - -t 51.1778 -s 212 -d 211 -p tcp -e 1000 -i 467 -a 2 h -t 51.1778 -s 212 -d 211 -p tcp -e 1000 -i 467 -a 2 r -t 51.1781 -s 311 -d 312 -p ack -e 40 -i 406 -a 1 + -t 51.1782 -s 312 -d 311 -p tcp -e 1000 -i 417 -a 1 + -t 51.1782 -s 312 -d 311 -p tcp -e 1000 -i 418 -a 1 + -t 51.1782 -s 312 -d 311 -p tcp -e 1000 -i 419 -a 1 - -t 51.1782 -s 312 -d 311 -p tcp -e 1000 -i 417 -a 1 h -t 51.1782 -s 312 -d 311 -p tcp -e 1000 -i 417 -a 1 + -t 51.1785 -s 110 -d 109 -p tcp -e 1000 -i 458 -a 9 + -t 51.1785 -s 310 -d 304 -p tcp -e 1000 -i 404 -a 4 - -t 51.1785 -s 110 -d 109 -p tcp -e 1000 -i 458 -a 9 - -t 51.1785 -s 310 -d 304 -p tcp -e 1000 -i 404 -a 4 h -t 51.1785 -s 110 -d 109 -p tcp -e 1000 -i 458 -a 9 h -t 51.1785 -s 310 -d 304 -p tcp -e 1000 -i 404 -a 4 r -t 51.1785 -s 111 -d 110 -p tcp -e 1000 -i 458 -a 9 r -t 51.1785 -s 311 -d 310 -p tcp -e 1000 -i 404 -a 4 - -t 51.1786 -s 212 -d 211 -p tcp -e 1000 -i 468 -a 2 h -t 51.1786 -s 212 -d 211 -p tcp -e 1000 -i 468 -a 2 + -t 51.1788 -s 211 -d 210 -p tcp -e 1000 -i 466 -a 2 - -t 51.179 -s 312 -d 311 -p tcp -e 1000 -i 418 -a 1 h -t 51.179 -s 312 -d 311 -p tcp -e 1000 -i 418 -a 1 r -t 51.179 -s 212 -d 211 -p tcp -e 1000 -i 466 -a 2 + -t 51.1796 -s 211 -d 210 -p tcp -e 1000 -i 467 -a 2 - -t 51.1798 -s 312 -d 311 -p tcp -e 1000 -i 419 -a 1 h -t 51.1798 -s 312 -d 311 -p tcp -e 1000 -i 419 -a 1 r -t 51.1798 -s 212 -d 211 -p tcp -e 1000 -i 467 -a 2 + -t 51.18 -s 311 -d 310 -p tcp -e 1000 -i 417 -a 1 - -t 51.18 -s 311 -d 310 -p tcp -e 1000 -i 417 -a 1 h -t 51.18 -s 311 -d 310 -p tcp -e 1000 -i 417 -a 1 r -t 51.1802 -s 312 -d 311 -p tcp -e 1000 -i 417 -a 1 + -t 51.1803 -s 304 -d 310 -p ack -e 40 -i 420 -a 4 - -t 51.1803 -s 304 -d 310 -p ack -e 40 -i 420 -a 4 h -t 51.1803 -s 304 -d 310 -p ack -e 40 -i 420 -a 4 + -t 51.1804 -s 211 -d 210 -p tcp -e 1000 -i 468 -a 2 r -t 51.1805 -s 110 -d 109 -p tcp -e 1000 -i 458 -a 9 r -t 51.1805 -s 310 -d 304 -p tcp -e 1000 -i 404 -a 4 r -t 51.1806 -s 212 -d 211 -p tcp -e 1000 -i 468 -a 2 + -t 51.1808 -s 311 -d 310 -p tcp -e 1000 -i 418 -a 1 r -t 51.181 -s 312 -d 311 -p tcp -e 1000 -i 418 -a 1 + -t 51.1813 -s 310 -d 311 -p ack -e 40 -i 420 -a 4 - -t 51.1813 -s 310 -d 311 -p ack -e 40 -i 420 -a 4 h -t 51.1813 -s 310 -d 311 -p ack -e 40 -i 420 -a 4 r -t 51.1813 -s 304 -d 310 -p ack -e 40 -i 420 -a 4 - -t 51.1814 -s 211 -d 210 -p tcp -e 1000 -i 463 -a 9 h -t 51.1814 -s 211 -d 210 -p tcp -e 1000 -i 463 -a 9 + -t 51.1816 -s 311 -d 310 -p tcp -e 1000 -i 419 -a 1 r -t 51.1818 -s 312 -d 311 -p tcp -e 1000 -i 419 -a 1 + -t 51.1856 -s 311 -d 312 -p ack -e 40 -i 409 -a 2 - -t 51.1856 -s 311 -d 312 -p ack -e 40 -i 409 -a 2 h -t 51.1856 -s 311 -d 312 -p ack -e 40 -i 409 -a 2 r -t 51.1856 -s 310 -d 311 -p ack -e 40 -i 409 -a 2 + -t 51.1859 -s 111 -d 112 -p ack -e 40 -i 461 -a 3 - -t 51.1859 -s 111 -d 112 -p ack -e 40 -i 461 -a 3 h -t 51.1859 -s 111 -d 112 -p ack -e 40 -i 461 -a 3 r -t 51.1859 -s 110 -d 111 -p ack -e 40 -i 461 -a 3 r -t 51.1866 -s 311 -d 312 -p ack -e 40 -i 409 -a 2 + -t 51.1867 -s 312 -d 311 -p tcp -e 1000 -i 421 -a 2 + -t 51.1867 -s 312 -d 311 -p tcp -e 1000 -i 422 -a 2 - -t 51.1867 -s 312 -d 311 -p tcp -e 1000 -i 421 -a 2 h -t 51.1867 -s 312 -d 311 -p tcp -e 1000 -i 421 -a 2 r -t 51.1869 -s 111 -d 112 -p ack -e 40 -i 461 -a 3 + -t 51.187 -s 112 -d 111 -p tcp -e 1000 -i 465 -a 3 + -t 51.187 -s 112 -d 111 -p tcp -e 1000 -i 466 -a 3 - -t 51.187 -s 112 -d 111 -p tcp -e 1000 -i 465 -a 3 h -t 51.187 -s 112 -d 111 -p tcp -e 1000 -i 465 -a 3 - -t 51.1875 -s 312 -d 311 -p tcp -e 1000 -i 422 -a 2 h -t 51.1875 -s 312 -d 311 -p tcp -e 1000 -i 422 -a 2 - -t 51.1878 -s 112 -d 111 -p tcp -e 1000 -i 466 -a 3 h -t 51.1878 -s 112 -d 111 -p tcp -e 1000 -i 466 -a 3 + -t 51.1885 -s 310 -d 304 -p tcp -e 1000 -i 405 -a 4 + -t 51.1885 -s 311 -d 310 -p tcp -e 1000 -i 421 -a 2 - -t 51.1885 -s 310 -d 304 -p tcp -e 1000 -i 405 -a 4 h -t 51.1885 -s 310 -d 304 -p tcp -e 1000 -i 405 -a 4 r -t 51.1885 -s 311 -d 310 -p tcp -e 1000 -i 405 -a 4 r -t 51.1887 -s 312 -d 311 -p tcp -e 1000 -i 421 -a 2 + -t 51.1888 -s 111 -d 110 -p tcp -e 1000 -i 465 -a 3 - -t 51.1888 -s 111 -d 110 -p tcp -e 1000 -i 465 -a 3 h -t 51.1888 -s 111 -d 110 -p tcp -e 1000 -i 465 -a 3 r -t 51.189 -s 112 -d 111 -p tcp -e 1000 -i 465 -a 3 + -t 51.1893 -s 202 -d 210 -p ack -e 40 -i 469 -a 2 + -t 51.1893 -s 311 -d 310 -p tcp -e 1000 -i 422 -a 2 - -t 51.1893 -s 202 -d 210 -p ack -e 40 -i 469 -a 2 h -t 51.1893 -s 202 -d 210 -p ack -e 40 -i 469 -a 2 r -t 51.1895 -s 312 -d 311 -p tcp -e 1000 -i 422 -a 2 + -t 51.1896 -s 111 -d 110 -p tcp -e 1000 -i 466 -a 3 r -t 51.1898 -s 112 -d 111 -p tcp -e 1000 -i 466 -a 3 - -t 51.19 -s 311 -d 310 -p tcp -e 1000 -i 418 -a 1 h -t 51.19 -s 311 -d 310 -p tcp -e 1000 -i 418 -a 1 + -t 51.1903 -s 210 -d 211 -p ack -e 40 -i 469 -a 2 - -t 51.1903 -s 210 -d 211 -p ack -e 40 -i 469 -a 2 h -t 51.1903 -s 210 -d 211 -p ack -e 40 -i 469 -a 2 r -t 51.1903 -s 202 -d 210 -p ack -e 40 -i 469 -a 2 r -t 51.1905 -s 310 -d 304 -p tcp -e 1000 -i 405 -a 4 - -t 51.1914 -s 211 -d 210 -p tcp -e 1000 -i 466 -a 2 h -t 51.1914 -s 211 -d 210 -p tcp -e 1000 -i 466 -a 2 + -t 51.1971 -s 311 -d 312 -p ack -e 40 -i 410 -a 8 - -t 51.1971 -s 311 -d 312 -p ack -e 40 -i 410 -a 8 h -t 51.1971 -s 311 -d 312 -p ack -e 40 -i 410 -a 8 r -t 51.1971 -s 310 -d 311 -p ack -e 40 -i 410 -a 8 r -t 51.1981 -s 311 -d 312 -p ack -e 40 -i 410 -a 8 + -t 51.1982 -s 312 -d 311 -p tcp -e 1000 -i 423 -a 8 + -t 51.1982 -s 312 -d 311 -p tcp -e 1000 -i 424 -a 8 - -t 51.1982 -s 312 -d 311 -p tcp -e 1000 -i 423 -a 8 h -t 51.1982 -s 312 -d 311 -p tcp -e 1000 -i 423 -a 8 + -t 51.1985 -s 310 -d 306 -p tcp -e 1000 -i 407 -a 6 - -t 51.1985 -s 310 -d 306 -p tcp -e 1000 -i 407 -a 6 h -t 51.1985 -s 310 -d 306 -p tcp -e 1000 -i 407 -a 6 r -t 51.1985 -s 311 -d 310 -p tcp -e 1000 -i 407 -a 6 - -t 51.1988 -s 111 -d 110 -p tcp -e 1000 -i 466 -a 3 h -t 51.1988 -s 111 -d 110 -p tcp -e 1000 -i 466 -a 3 - -t 51.199 -s 312 -d 311 -p tcp -e 1000 -i 424 -a 8 h -t 51.199 -s 312 -d 311 -p tcp -e 1000 -i 424 -a 8 + -t 51.2 -s 311 -d 310 -p tcp -e 1000 -i 423 -a 8 - -t 51.2 -s 311 -d 310 -p tcp -e 1000 -i 419 -a 1 h -t 51.2 -s 311 -d 310 -p tcp -e 1000 -i 419 -a 1 r -t 51.2002 -s 312 -d 311 -p tcp -e 1000 -i 423 -a 8 r -t 51.2005 -s 310 -d 306 -p tcp -e 1000 -i 407 -a 6 + -t 51.2007 -s 211 -d 212 -p ack -e 40 -i 456 -a 8 - -t 51.2007 -s 211 -d 212 -p ack -e 40 -i 456 -a 8 h -t 51.2007 -s 211 -d 212 -p ack -e 40 -i 456 -a 8 r -t 51.2007 -s 210 -d 211 -p ack -e 40 -i 456 -a 8 + -t 51.2008 -s 311 -d 310 -p tcp -e 1000 -i 424 -a 8 r -t 51.201 -s 312 -d 311 -p tcp -e 1000 -i 424 -a 8 - -t 51.2014 -s 211 -d 210 -p tcp -e 1000 -i 467 -a 2 h -t 51.2014 -s 211 -d 210 -p tcp -e 1000 -i 467 -a 2 r -t 51.2017 -s 211 -d 212 -p ack -e 40 -i 456 -a 8 + -t 51.2023 -s 210 -d 202 -p tcp -e 1000 -i 455 -a 2 - -t 51.2023 -s 210 -d 202 -p tcp -e 1000 -i 455 -a 2 h -t 51.2023 -s 210 -d 202 -p tcp -e 1000 -i 455 -a 2 r -t 51.2023 -s 211 -d 210 -p tcp -e 1000 -i 455 -a 2 r -t 51.2043 -s 210 -d 202 -p tcp -e 1000 -i 455 -a 2 + -t 51.2085 -s 310 -d 306 -p tcp -e 1000 -i 408 -a 6 - -t 51.2085 -s 310 -d 306 -p tcp -e 1000 -i 408 -a 6 h -t 51.2085 -s 310 -d 306 -p tcp -e 1000 -i 408 -a 6 r -t 51.2085 -s 311 -d 310 -p tcp -e 1000 -i 408 -a 6 + -t 51.2093 -s 208 -d 210 -p ack -e 40 -i 470 -a 8 - -t 51.2093 -s 208 -d 210 -p ack -e 40 -i 470 -a 8 h -t 51.2093 -s 208 -d 210 -p ack -e 40 -i 470 -a 8 - -t 51.21 -s 311 -d 310 -p tcp -e 1000 -i 421 -a 2 h -t 51.21 -s 311 -d 310 -p tcp -e 1000 -i 421 -a 2 + -t 51.2103 -s 210 -d 211 -p ack -e 40 -i 470 -a 8 + -t 51.2103 -s 306 -d 310 -p ack -e 40 -i 425 -a 6 - -t 51.2103 -s 210 -d 211 -p ack -e 40 -i 470 -a 8 - -t 51.2103 -s 306 -d 310 -p ack -e 40 -i 425 -a 6 h -t 51.2103 -s 210 -d 211 -p ack -e 40 -i 470 -a 8 h -t 51.2103 -s 306 -d 310 -p ack -e 40 -i 425 -a 6 r -t 51.2103 -s 208 -d 210 -p ack -e 40 -i 470 -a 8 r -t 51.2105 -s 310 -d 306 -p tcp -e 1000 -i 408 -a 6 + -t 51.2113 -s 310 -d 311 -p ack -e 40 -i 425 -a 6 - -t 51.2113 -s 310 -d 311 -p ack -e 40 -i 425 -a 6 h -t 51.2113 -s 310 -d 311 -p ack -e 40 -i 425 -a 6 r -t 51.2113 -s 306 -d 310 -p ack -e 40 -i 425 -a 6 - -t 51.2114 -s 211 -d 210 -p tcp -e 1000 -i 468 -a 2 h -t 51.2114 -s 211 -d 210 -p tcp -e 1000 -i 468 -a 2 + -t 51.2156 -s 311 -d 312 -p ack -e 40 -i 411 -a 7 - -t 51.2156 -s 311 -d 312 -p ack -e 40 -i 411 -a 7 h -t 51.2156 -s 311 -d 312 -p ack -e 40 -i 411 -a 7 r -t 51.2156 -s 310 -d 311 -p ack -e 40 -i 411 -a 7 r -t 51.2166 -s 311 -d 312 -p ack -e 40 -i 411 -a 7 + -t 51.2193 -s 209 -d 210 -p ack -e 40 -i 471 -a 9 - -t 51.2193 -s 209 -d 210 -p ack -e 40 -i 471 -a 9 h -t 51.2193 -s 209 -d 210 -p ack -e 40 -i 471 -a 9 - -t 51.22 -s 311 -d 310 -p tcp -e 1000 -i 422 -a 2 h -t 51.22 -s 311 -d 310 -p tcp -e 1000 -i 422 -a 2 + -t 51.2203 -s 210 -d 211 -p ack -e 40 -i 471 -a 9 - -t 51.2203 -s 210 -d 211 -p ack -e 40 -i 471 -a 9 h -t 51.2203 -s 210 -d 211 -p ack -e 40 -i 471 -a 9 r -t 51.2203 -s 209 -d 210 -p ack -e 40 -i 471 -a 9 - -t 51.23 -s 311 -d 310 -p tcp -e 1000 -i 423 -a 8 h -t 51.23 -s 311 -d 310 -p tcp -e 1000 -i 423 -a 8 + -t 51.2307 -s 211 -d 212 -p ack -e 40 -i 457 -a 3 - -t 51.2307 -s 211 -d 212 -p ack -e 40 -i 457 -a 3 h -t 51.2307 -s 211 -d 212 -p ack -e 40 -i 457 -a 3 r -t 51.2307 -s 210 -d 211 -p ack -e 40 -i 457 -a 3 + -t 51.2317 -s 212 -d 211 -p tcp -e 1000 -i 472 -a 3 - -t 51.2317 -s 212 -d 211 -p tcp -e 1000 -i 472 -a 3 h -t 51.2317 -s 212 -d 211 -p tcp -e 1000 -i 472 -a 3 r -t 51.2317 -s 211 -d 212 -p ack -e 40 -i 457 -a 3 + -t 51.2334 -s 311 -d 312 -p ack -e 40 -i 412 -a 3 - -t 51.2334 -s 311 -d 312 -p ack -e 40 -i 412 -a 3 h -t 51.2334 -s 311 -d 312 -p ack -e 40 -i 412 -a 3 r -t 51.2334 -s 310 -d 311 -p ack -e 40 -i 412 -a 3 + -t 51.2335 -s 211 -d 210 -p tcp -e 1000 -i 472 -a 3 - -t 51.2335 -s 211 -d 210 -p tcp -e 1000 -i 472 -a 3 h -t 51.2335 -s 211 -d 210 -p tcp -e 1000 -i 472 -a 3 r -t 51.2337 -s 212 -d 211 -p tcp -e 1000 -i 472 -a 3 + -t 51.2344 -s 312 -d 311 -p tcp -e 1000 -i 426 -a 3 + -t 51.2344 -s 312 -d 311 -p tcp -e 1000 -i 427 -a 3 - -t 51.2344 -s 312 -d 311 -p tcp -e 1000 -i 426 -a 3 h -t 51.2344 -s 312 -d 311 -p tcp -e 1000 -i 426 -a 3 r -t 51.2344 -s 311 -d 312 -p ack -e 40 -i 412 -a 3 - -t 51.2352 -s 312 -d 311 -p tcp -e 1000 -i 427 -a 3 h -t 51.2352 -s 312 -d 311 -p tcp -e 1000 -i 427 -a 3 + -t 51.2362 -s 311 -d 310 -p tcp -e 1000 -i 426 -a 3 r -t 51.2364 -s 312 -d 311 -p tcp -e 1000 -i 426 -a 3 + -t 51.237 -s 311 -d 310 -p tcp -e 1000 -i 427 -a 3 r -t 51.2372 -s 312 -d 311 -p tcp -e 1000 -i 427 -a 3 - -t 51.24 -s 311 -d 310 -p tcp -e 1000 -i 424 -a 8 h -t 51.24 -s 311 -d 310 -p tcp -e 1000 -i 424 -a 8 + -t 51.2414 -s 210 -d 203 -p tcp -e 1000 -i 458 -a 3 - -t 51.2414 -s 210 -d 203 -p tcp -e 1000 -i 458 -a 3 h -t 51.2414 -s 210 -d 203 -p tcp -e 1000 -i 458 -a 3 r -t 51.2414 -s 211 -d 210 -p tcp -e 1000 -i 458 -a 3 r -t 51.2434 -s 210 -d 203 -p tcp -e 1000 -i 458 -a 3 + -t 51.2485 -s 310 -d 309 -p tcp -e 1000 -i 413 -a 9 - -t 51.2485 -s 310 -d 309 -p tcp -e 1000 -i 413 -a 9 h -t 51.2485 -s 310 -d 309 -p tcp -e 1000 -i 413 -a 9 r -t 51.2485 -s 311 -d 310 -p tcp -e 1000 -i 413 -a 9 - -t 51.25 -s 311 -d 310 -p tcp -e 1000 -i 426 -a 3 h -t 51.25 -s 311 -d 310 -p tcp -e 1000 -i 426 -a 3 r -t 51.2505 -s 310 -d 309 -p tcp -e 1000 -i 413 -a 9 + -t 51.2507 -s 211 -d 212 -p ack -e 40 -i 464 -a 3 - -t 51.2507 -s 211 -d 212 -p ack -e 40 -i 464 -a 3 h -t 51.2507 -s 211 -d 212 -p ack -e 40 -i 464 -a 3 r -t 51.2507 -s 210 -d 211 -p ack -e 40 -i 464 -a 3 + -t 51.2514 -s 210 -d 203 -p tcp -e 1000 -i 459 -a 3 - -t 51.2514 -s 210 -d 203 -p tcp -e 1000 -i 459 -a 3 h -t 51.2514 -s 210 -d 203 -p tcp -e 1000 -i 459 -a 3 r -t 51.2514 -s 211 -d 210 -p tcp -e 1000 -i 459 -a 3 r -t 51.2517 -s 211 -d 212 -p ack -e 40 -i 464 -a 3 + -t 51.2532 -s 203 -d 210 -p ack -e 40 -i 473 -a 3 - -t 51.2532 -s 203 -d 210 -p ack -e 40 -i 473 -a 3 h -t 51.2532 -s 203 -d 210 -p ack -e 40 -i 473 -a 3 r -t 51.2534 -s 210 -d 203 -p tcp -e 1000 -i 459 -a 3 + -t 51.2542 -s 210 -d 211 -p ack -e 40 -i 473 -a 3 - -t 51.2542 -s 210 -d 211 -p ack -e 40 -i 473 -a 3 h -t 51.2542 -s 210 -d 211 -p ack -e 40 -i 473 -a 3 r -t 51.2542 -s 203 -d 210 -p ack -e 40 -i 473 -a 3 + -t 51.2585 -s 310 -d 309 -p tcp -e 1000 -i 414 -a 9 - -t 51.2585 -s 310 -d 309 -p tcp -e 1000 -i 414 -a 9 h -t 51.2585 -s 310 -d 309 -p tcp -e 1000 -i 414 -a 9 r -t 51.2585 -s 311 -d 310 -p tcp -e 1000 -i 414 -a 9 - -t 51.26 -s 311 -d 310 -p tcp -e 1000 -i 427 -a 3 h -t 51.26 -s 311 -d 310 -p tcp -e 1000 -i 427 -a 3 + -t 51.2603 -s 309 -d 310 -p ack -e 40 -i 428 -a 9 - -t 51.2603 -s 309 -d 310 -p ack -e 40 -i 428 -a 9 h -t 51.2603 -s 309 -d 310 -p ack -e 40 -i 428 -a 9 r -t 51.2605 -s 310 -d 309 -p tcp -e 1000 -i 414 -a 9 + -t 51.2613 -s 310 -d 311 -p ack -e 40 -i 428 -a 9 - -t 51.2613 -s 310 -d 311 -p ack -e 40 -i 428 -a 9 h -t 51.2613 -s 310 -d 311 -p ack -e 40 -i 428 -a 9 r -t 51.2613 -s 309 -d 310 -p ack -e 40 -i 428 -a 9 + -t 51.2614 -s 210 -d 203 -p tcp -e 1000 -i 460 -a 3 - -t 51.2614 -s 210 -d 203 -p tcp -e 1000 -i 460 -a 3 h -t 51.2614 -s 210 -d 203 -p tcp -e 1000 -i 460 -a 3 r -t 51.2614 -s 211 -d 210 -p tcp -e 1000 -i 460 -a 3 + -t 51.263 -s 211 -d 212 -p ack -e 40 -i 465 -a 0 - -t 51.263 -s 211 -d 212 -p ack -e 40 -i 465 -a 0 h -t 51.263 -s 211 -d 212 -p ack -e 40 -i 465 -a 0 r -t 51.263 -s 210 -d 211 -p ack -e 40 -i 465 -a 0 r -t 51.2634 -s 210 -d 203 -p tcp -e 1000 -i 460 -a 3 r -t 51.264 -s 211 -d 212 -p ack -e 40 -i 465 -a 0 + -t 51.2685 -s 110 -d 109 -p tcp -e 1000 -i 462 -a 9 - -t 51.2685 -s 110 -d 109 -p tcp -e 1000 -i 462 -a 9 h -t 51.2685 -s 110 -d 109 -p tcp -e 1000 -i 462 -a 9 r -t 51.2685 -s 111 -d 110 -p tcp -e 1000 -i 462 -a 9 + -t 51.27 -s 310 -d 300 -p tcp -e 1000 -i 415 -a 0 - -t 51.27 -s 310 -d 300 -p tcp -e 1000 -i 415 -a 0 h -t 51.27 -s 310 -d 300 -p tcp -e 1000 -i 415 -a 0 r -t 51.27 -s 311 -d 310 -p tcp -e 1000 -i 415 -a 0 + -t 51.2703 -s 109 -d 110 -p ack -e 40 -i 467 -a 9 - -t 51.2703 -s 109 -d 110 -p ack -e 40 -i 467 -a 9 h -t 51.2703 -s 109 -d 110 -p ack -e 40 -i 467 -a 9 r -t 51.2705 -s 110 -d 109 -p tcp -e 1000 -i 462 -a 9 + -t 51.2713 -s 110 -d 111 -p ack -e 40 -i 467 -a 9 - -t 51.2713 -s 110 -d 111 -p ack -e 40 -i 467 -a 9 h -t 51.2713 -s 110 -d 111 -p ack -e 40 -i 467 -a 9 r -t 51.2713 -s 109 -d 110 -p ack -e 40 -i 467 -a 9 + -t 51.2714 -s 210 -d 209 -p tcp -e 1000 -i 461 -a 9 - -t 51.2714 -s 210 -d 209 -p tcp -e 1000 -i 461 -a 9 h -t 51.2714 -s 210 -d 209 -p tcp -e 1000 -i 461 -a 9 r -t 51.2714 -s 211 -d 210 -p tcp -e 1000 -i 461 -a 9 + -t 51.2717 -s 111 -d 112 -p ack -e 40 -i 464 -a 9 - -t 51.2717 -s 111 -d 112 -p ack -e 40 -i 464 -a 9 h -t 51.2717 -s 111 -d 112 -p ack -e 40 -i 464 -a 9 r -t 51.2717 -s 110 -d 111 -p ack -e 40 -i 464 -a 9 r -t 51.272 -s 310 -d 300 -p tcp -e 1000 -i 415 -a 0 + -t 51.2727 -s 112 -d 111 -p tcp -e 1000 -i 468 -a 9 + -t 51.2727 -s 112 -d 111 -p tcp -e 1000 -i 469 -a 9 - -t 51.2727 -s 112 -d 111 -p tcp -e 1000 -i 468 -a 9 h -t 51.2727 -s 112 -d 111 -p tcp -e 1000 -i 468 -a 9 r -t 51.2727 -s 111 -d 112 -p ack -e 40 -i 464 -a 9 r -t 51.2734 -s 210 -d 209 -p tcp -e 1000 -i 461 -a 9 - -t 51.2735 -s 112 -d 111 -p tcp -e 1000 -i 469 -a 9 h -t 51.2735 -s 112 -d 111 -p tcp -e 1000 -i 469 -a 9 + -t 51.2745 -s 111 -d 110 -p tcp -e 1000 -i 468 -a 9 - -t 51.2745 -s 111 -d 110 -p tcp -e 1000 -i 468 -a 9 h -t 51.2745 -s 111 -d 110 -p tcp -e 1000 -i 468 -a 9 r -t 51.2747 -s 112 -d 111 -p tcp -e 1000 -i 468 -a 9 + -t 51.2753 -s 111 -d 110 -p tcp -e 1000 -i 469 -a 9 r -t 51.2755 -s 112 -d 111 -p tcp -e 1000 -i 469 -a 9 + -t 51.2785 -s 110 -d 109 -p tcp -e 1000 -i 463 -a 9 - -t 51.2785 -s 110 -d 109 -p tcp -e 1000 -i 463 -a 9 h -t 51.2785 -s 110 -d 109 -p tcp -e 1000 -i 463 -a 9 r -t 51.2785 -s 111 -d 110 -p tcp -e 1000 -i 463 -a 9 + -t 51.28 -s 310 -d 300 -p tcp -e 1000 -i 416 -a 0 - -t 51.28 -s 310 -d 300 -p tcp -e 1000 -i 416 -a 0 h -t 51.28 -s 310 -d 300 -p tcp -e 1000 -i 416 -a 0 r -t 51.28 -s 311 -d 310 -p tcp -e 1000 -i 416 -a 0 r -t 51.2805 -s 110 -d 109 -p tcp -e 1000 -i 463 -a 9 + -t 51.2814 -s 210 -d 209 -p tcp -e 1000 -i 462 -a 9 - -t 51.2814 -s 210 -d 209 -p tcp -e 1000 -i 462 -a 9 h -t 51.2814 -s 210 -d 209 -p tcp -e 1000 -i 462 -a 9 r -t 51.2814 -s 211 -d 210 -p tcp -e 1000 -i 462 -a 9 + -t 51.2817 -s 311 -d 312 -p ack -e 40 -i 420 -a 4 - -t 51.2817 -s 311 -d 312 -p ack -e 40 -i 420 -a 4 h -t 51.2817 -s 311 -d 312 -p ack -e 40 -i 420 -a 4 r -t 51.2817 -s 310 -d 311 -p ack -e 40 -i 420 -a 4 + -t 51.2818 -s 300 -d 310 -p ack -e 40 -i 429 -a 0 - -t 51.2818 -s 300 -d 310 -p ack -e 40 -i 429 -a 0 h -t 51.2818 -s 300 -d 310 -p ack -e 40 -i 429 -a 0 r -t 51.282 -s 310 -d 300 -p tcp -e 1000 -i 416 -a 0 r -t 51.2827 -s 311 -d 312 -p ack -e 40 -i 420 -a 4 + -t 51.2828 -s 310 -d 311 -p ack -e 40 -i 429 -a 0 - -t 51.2828 -s 310 -d 311 -p ack -e 40 -i 429 -a 0 h -t 51.2828 -s 310 -d 311 -p ack -e 40 -i 429 -a 0 r -t 51.2828 -s 300 -d 310 -p ack -e 40 -i 429 -a 0 + -t 51.2832 -s 209 -d 210 -p ack -e 40 -i 474 -a 9 - -t 51.2832 -s 209 -d 210 -p ack -e 40 -i 474 -a 9 h -t 51.2832 -s 209 -d 210 -p ack -e 40 -i 474 -a 9 r -t 51.2834 -s 210 -d 209 -p tcp -e 1000 -i 462 -a 9 + -t 51.2842 -s 210 -d 211 -p ack -e 40 -i 474 -a 9 - -t 51.2842 -s 210 -d 211 -p ack -e 40 -i 474 -a 9 h -t 51.2842 -s 210 -d 211 -p ack -e 40 -i 474 -a 9 r -t 51.2842 -s 209 -d 210 -p ack -e 40 -i 474 -a 9 - -t 51.2845 -s 111 -d 110 -p tcp -e 1000 -i 469 -a 9 h -t 51.2845 -s 111 -d 110 -p tcp -e 1000 -i 469 -a 9 + -t 51.29 -s 310 -d 301 -p tcp -e 1000 -i 417 -a 1 - -t 51.29 -s 310 -d 301 -p tcp -e 1000 -i 417 -a 1 h -t 51.29 -s 310 -d 301 -p tcp -e 1000 -i 417 -a 1 r -t 51.29 -s 311 -d 310 -p tcp -e 1000 -i 417 -a 1 + -t 51.2903 -s 304 -d 310 -p ack -e 40 -i 430 -a 4 - -t 51.2903 -s 304 -d 310 -p ack -e 40 -i 430 -a 4 h -t 51.2903 -s 304 -d 310 -p ack -e 40 -i 430 -a 4 + -t 51.2907 -s 211 -d 212 -p ack -e 40 -i 469 -a 2 - -t 51.2907 -s 211 -d 212 -p ack -e 40 -i 469 -a 2 h -t 51.2907 -s 211 -d 212 -p ack -e 40 -i 469 -a 2 r -t 51.2907 -s 210 -d 211 -p ack -e 40 -i 469 -a 2 + -t 51.2913 -s 310 -d 311 -p ack -e 40 -i 430 -a 4 - -t 51.2913 -s 310 -d 311 -p ack -e 40 -i 430 -a 4 h -t 51.2913 -s 310 -d 311 -p ack -e 40 -i 430 -a 4 r -t 51.2913 -s 304 -d 310 -p ack -e 40 -i 430 -a 4 + -t 51.2914 -s 210 -d 209 -p tcp -e 1000 -i 463 -a 9 - -t 51.2914 -s 210 -d 209 -p tcp -e 1000 -i 463 -a 9 h -t 51.2914 -s 210 -d 209 -p tcp -e 1000 -i 463 -a 9 r -t 51.2914 -s 211 -d 210 -p tcp -e 1000 -i 463 -a 9 + -t 51.2917 -s 212 -d 211 -p tcp -e 1000 -i 475 -a 2 + -t 51.2917 -s 212 -d 211 -p tcp -e 1000 -i 476 -a 2 + -t 51.2917 -s 212 -d 211 -p tcp -e 1000 -i 477 -a 2 - -t 51.2917 -s 212 -d 211 -p tcp -e 1000 -i 475 -a 2 h -t 51.2917 -s 212 -d 211 -p tcp -e 1000 -i 475 -a 2 r -t 51.2917 -s 211 -d 212 -p ack -e 40 -i 469 -a 2 r -t 51.292 -s 310 -d 301 -p tcp -e 1000 -i 417 -a 1 - -t 51.2925 -s 212 -d 211 -p tcp -e 1000 -i 476 -a 2 h -t 51.2925 -s 212 -d 211 -p tcp -e 1000 -i 476 -a 2 - -t 51.2933 -s 212 -d 211 -p tcp -e 1000 -i 477 -a 2 h -t 51.2933 -s 212 -d 211 -p tcp -e 1000 -i 477 -a 2 r -t 51.2934 -s 210 -d 209 -p tcp -e 1000 -i 463 -a 9 + -t 51.2935 -s 211 -d 210 -p tcp -e 1000 -i 475 -a 2 - -t 51.2935 -s 211 -d 210 -p tcp -e 1000 -i 475 -a 2 h -t 51.2935 -s 211 -d 210 -p tcp -e 1000 -i 475 -a 2 r -t 51.2937 -s 212 -d 211 -p tcp -e 1000 -i 475 -a 2 + -t 51.2943 -s 211 -d 210 -p tcp -e 1000 -i 476 -a 2 r -t 51.2945 -s 212 -d 211 -p tcp -e 1000 -i 476 -a 2 + -t 51.2951 -s 211 -d 210 -p tcp -e 1000 -i 477 -a 2 r -t 51.2953 -s 212 -d 211 -p tcp -e 1000 -i 477 -a 2 + -t 51.2988 -s 110 -d 103 -p tcp -e 1000 -i 465 -a 3 - -t 51.2988 -s 110 -d 103 -p tcp -e 1000 -i 465 -a 3 h -t 51.2988 -s 110 -d 103 -p tcp -e 1000 -i 465 -a 3 r -t 51.2988 -s 111 -d 110 -p tcp -e 1000 -i 465 -a 3 + -t 51.3 -s 310 -d 301 -p tcp -e 1000 -i 418 -a 1 - -t 51.3 -s 310 -d 301 -p tcp -e 1000 -i 418 -a 1 h -t 51.3 -s 310 -d 301 -p tcp -e 1000 -i 418 -a 1 r -t 51.3 -s 311 -d 310 -p tcp -e 1000 -i 418 -a 1 r -t 51.3008 -s 110 -d 103 -p tcp -e 1000 -i 465 -a 3 + -t 51.3014 -s 210 -d 202 -p tcp -e 1000 -i 466 -a 2 - -t 51.3014 -s 210 -d 202 -p tcp -e 1000 -i 466 -a 2 h -t 51.3014 -s 210 -d 202 -p tcp -e 1000 -i 466 -a 2 r -t 51.3014 -s 211 -d 210 -p tcp -e 1000 -i 466 -a 2 + -t 51.3018 -s 301 -d 310 -p ack -e 40 -i 431 -a 1 - -t 51.3018 -s 301 -d 310 -p ack -e 40 -i 431 -a 1 h -t 51.3018 -s 301 -d 310 -p ack -e 40 -i 431 -a 1 r -t 51.302 -s 310 -d 301 -p tcp -e 1000 -i 418 -a 1 + -t 51.3028 -s 310 -d 311 -p ack -e 40 -i 431 -a 1 - -t 51.3028 -s 310 -d 311 -p ack -e 40 -i 431 -a 1 h -t 51.3028 -s 310 -d 311 -p ack -e 40 -i 431 -a 1 r -t 51.3028 -s 301 -d 310 -p ack -e 40 -i 431 -a 1 + -t 51.3032 -s 202 -d 210 -p ack -e 40 -i 478 -a 2 - -t 51.3032 -s 202 -d 210 -p ack -e 40 -i 478 -a 2 h -t 51.3032 -s 202 -d 210 -p ack -e 40 -i 478 -a 2 r -t 51.3034 -s 210 -d 202 -p tcp -e 1000 -i 466 -a 2 - -t 51.3035 -s 211 -d 210 -p tcp -e 1000 -i 476 -a 2 h -t 51.3035 -s 211 -d 210 -p tcp -e 1000 -i 476 -a 2 + -t 51.3042 -s 210 -d 211 -p ack -e 40 -i 478 -a 2 - -t 51.3042 -s 210 -d 211 -p ack -e 40 -i 478 -a 2 h -t 51.3042 -s 210 -d 211 -p ack -e 40 -i 478 -a 2 r -t 51.3042 -s 202 -d 210 -p ack -e 40 -i 478 -a 2 + -t 51.3088 -s 110 -d 103 -p tcp -e 1000 -i 466 -a 3 - -t 51.3088 -s 110 -d 103 -p tcp -e 1000 -i 466 -a 3 h -t 51.3088 -s 110 -d 103 -p tcp -e 1000 -i 466 -a 3 r -t 51.3088 -s 111 -d 110 -p tcp -e 1000 -i 466 -a 3 + -t 51.31 -s 310 -d 301 -p tcp -e 1000 -i 419 -a 1 - -t 51.31 -s 310 -d 301 -p tcp -e 1000 -i 419 -a 1 h -t 51.31 -s 310 -d 301 -p tcp -e 1000 -i 419 -a 1 r -t 51.31 -s 311 -d 310 -p tcp -e 1000 -i 419 -a 1 + -t 51.3106 -s 103 -d 110 -p ack -e 40 -i 470 -a 3 - -t 51.3106 -s 103 -d 110 -p ack -e 40 -i 470 -a 3 h -t 51.3106 -s 103 -d 110 -p ack -e 40 -i 470 -a 3 + -t 51.3107 -s 211 -d 212 -p ack -e 40 -i 470 -a 8 - -t 51.3107 -s 211 -d 212 -p ack -e 40 -i 470 -a 8 h -t 51.3107 -s 211 -d 212 -p ack -e 40 -i 470 -a 8 r -t 51.3107 -s 210 -d 211 -p ack -e 40 -i 470 -a 8 r -t 51.3108 -s 110 -d 103 -p tcp -e 1000 -i 466 -a 3 + -t 51.3114 -s 210 -d 202 -p tcp -e 1000 -i 467 -a 2 - -t 51.3114 -s 210 -d 202 -p tcp -e 1000 -i 467 -a 2 h -t 51.3114 -s 210 -d 202 -p tcp -e 1000 -i 467 -a 2 r -t 51.3114 -s 211 -d 210 -p tcp -e 1000 -i 467 -a 2 + -t 51.3116 -s 110 -d 111 -p ack -e 40 -i 470 -a 3 - -t 51.3116 -s 110 -d 111 -p ack -e 40 -i 470 -a 3 h -t 51.3116 -s 110 -d 111 -p ack -e 40 -i 470 -a 3 r -t 51.3116 -s 103 -d 110 -p ack -e 40 -i 470 -a 3 + -t 51.3117 -s 311 -d 312 -p ack -e 40 -i 425 -a 6 - -t 51.3117 -s 311 -d 312 -p ack -e 40 -i 425 -a 6 h -t 51.3117 -s 311 -d 312 -p ack -e 40 -i 425 -a 6 r -t 51.3117 -s 211 -d 212 -p ack -e 40 -i 470 -a 8 r -t 51.3117 -s 310 -d 311 -p ack -e 40 -i 425 -a 6 r -t 51.312 -s 310 -d 301 -p tcp -e 1000 -i 419 -a 1 + -t 51.3127 -s 312 -d 311 -p tcp -e 1000 -i 432 -a 6 + -t 51.3127 -s 312 -d 311 -p tcp -e 1000 -i 433 -a 6 + -t 51.3127 -s 312 -d 311 -p tcp -e 1000 -i 434 -a 6 - -t 51.3127 -s 312 -d 311 -p tcp -e 1000 -i 432 -a 6 h -t 51.3127 -s 312 -d 311 -p tcp -e 1000 -i 432 -a 6 r -t 51.3127 -s 311 -d 312 -p ack -e 40 -i 425 -a 6 r -t 51.3134 -s 210 -d 202 -p tcp -e 1000 -i 467 -a 2 - -t 51.3135 -s 211 -d 210 -p tcp -e 1000 -i 477 -a 2 - -t 51.3135 -s 312 -d 311 -p tcp -e 1000 -i 433 -a 6 h -t 51.3135 -s 211 -d 210 -p tcp -e 1000 -i 477 -a 2 h -t 51.3135 -s 312 -d 311 -p tcp -e 1000 -i 433 -a 6 - -t 51.3143 -s 312 -d 311 -p tcp -e 1000 -i 434 -a 6 h -t 51.3143 -s 312 -d 311 -p tcp -e 1000 -i 434 -a 6 + -t 51.3145 -s 311 -d 310 -p tcp -e 1000 -i 432 -a 6 - -t 51.3145 -s 311 -d 310 -p tcp -e 1000 -i 432 -a 6 h -t 51.3145 -s 311 -d 310 -p tcp -e 1000 -i 432 -a 6 r -t 51.3147 -s 312 -d 311 -p tcp -e 1000 -i 432 -a 6 + -t 51.3153 -s 311 -d 310 -p tcp -e 1000 -i 433 -a 6 r -t 51.3155 -s 312 -d 311 -p tcp -e 1000 -i 433 -a 6 + -t 51.3161 -s 311 -d 310 -p tcp -e 1000 -i 434 -a 6 r -t 51.3163 -s 312 -d 311 -p tcp -e 1000 -i 434 -a 6 + -t 51.32 -s 310 -d 302 -p tcp -e 1000 -i 421 -a 2 - -t 51.32 -s 310 -d 302 -p tcp -e 1000 -i 421 -a 2 h -t 51.32 -s 310 -d 302 -p tcp -e 1000 -i 421 -a 2 r -t 51.32 -s 311 -d 310 -p tcp -e 1000 -i 421 -a 2 + -t 51.3207 -s 211 -d 212 -p ack -e 40 -i 471 -a 9 - -t 51.3207 -s 211 -d 212 -p ack -e 40 -i 471 -a 9 h -t 51.3207 -s 211 -d 212 -p ack -e 40 -i 471 -a 9 r -t 51.3207 -s 210 -d 211 -p ack -e 40 -i 471 -a 9 + -t 51.3214 -s 210 -d 202 -p tcp -e 1000 -i 468 -a 2 - -t 51.3214 -s 210 -d 202 -p tcp -e 1000 -i 468 -a 2 h -t 51.3214 -s 210 -d 202 -p tcp -e 1000 -i 468 -a 2 r -t 51.3214 -s 211 -d 210 -p tcp -e 1000 -i 468 -a 2 + -t 51.3217 -s 212 -d 211 -p tcp -e 1000 -i 479 -a 9 + -t 51.3217 -s 212 -d 211 -p tcp -e 1000 -i 480 -a 9 + -t 51.3217 -s 212 -d 211 -p tcp -e 1000 -i 481 -a 9 - -t 51.3217 -s 212 -d 211 -p tcp -e 1000 -i 479 -a 9 h -t 51.3217 -s 212 -d 211 -p tcp -e 1000 -i 479 -a 9 r -t 51.3217 -s 211 -d 212 -p ack -e 40 -i 471 -a 9 r -t 51.322 -s 310 -d 302 -p tcp -e 1000 -i 421 -a 2 - -t 51.3225 -s 212 -d 211 -p tcp -e 1000 -i 480 -a 9 h -t 51.3225 -s 212 -d 211 -p tcp -e 1000 -i 480 -a 9 + -t 51.3232 -s 202 -d 210 -p ack -e 40 -i 482 -a 2 - -t 51.3232 -s 202 -d 210 -p ack -e 40 -i 482 -a 2 h -t 51.3232 -s 202 -d 210 -p ack -e 40 -i 482 -a 2 - -t 51.3233 -s 212 -d 211 -p tcp -e 1000 -i 481 -a 9 h -t 51.3233 -s 212 -d 211 -p tcp -e 1000 -i 481 -a 9 r -t 51.3234 -s 210 -d 202 -p tcp -e 1000 -i 468 -a 2 + -t 51.3235 -s 211 -d 210 -p tcp -e 1000 -i 479 -a 9 - -t 51.3235 -s 211 -d 210 -p tcp -e 1000 -i 479 -a 9 h -t 51.3235 -s 211 -d 210 -p tcp -e 1000 -i 479 -a 9 r -t 51.3237 -s 212 -d 211 -p tcp -e 1000 -i 479 -a 9 + -t 51.3242 -s 210 -d 211 -p ack -e 40 -i 482 -a 2 - -t 51.3242 -s 210 -d 211 -p ack -e 40 -i 482 -a 2 h -t 51.3242 -s 210 -d 211 -p ack -e 40 -i 482 -a 2 r -t 51.3242 -s 202 -d 210 -p ack -e 40 -i 482 -a 2 + -t 51.3243 -s 211 -d 210 -p tcp -e 1000 -i 480 -a 9 - -t 51.3245 -s 311 -d 310 -p tcp -e 1000 -i 433 -a 6 h -t 51.3245 -s 311 -d 310 -p tcp -e 1000 -i 433 -a 6 r -t 51.3245 -s 212 -d 211 -p tcp -e 1000 -i 480 -a 9 + -t 51.3251 -s 211 -d 210 -p tcp -e 1000 -i 481 -a 9 r -t 51.3253 -s 212 -d 211 -p tcp -e 1000 -i 481 -a 9 + -t 51.33 -s 310 -d 302 -p tcp -e 1000 -i 422 -a 2 - -t 51.33 -s 310 -d 302 -p tcp -e 1000 -i 422 -a 2 h -t 51.33 -s 310 -d 302 -p tcp -e 1000 -i 422 -a 2 r -t 51.33 -s 311 -d 310 -p tcp -e 1000 -i 422 -a 2 + -t 51.3318 -s 302 -d 310 -p ack -e 40 -i 435 -a 2 - -t 51.3318 -s 302 -d 310 -p ack -e 40 -i 435 -a 2 h -t 51.3318 -s 302 -d 310 -p ack -e 40 -i 435 -a 2 r -t 51.332 -s 310 -d 302 -p tcp -e 1000 -i 422 -a 2 + -t 51.3328 -s 310 -d 311 -p ack -e 40 -i 435 -a 2 - -t 51.3328 -s 310 -d 311 -p ack -e 40 -i 435 -a 2 h -t 51.3328 -s 310 -d 311 -p ack -e 40 -i 435 -a 2 r -t 51.3328 -s 302 -d 310 -p ack -e 40 -i 435 -a 2 - -t 51.3335 -s 211 -d 210 -p tcp -e 1000 -i 480 -a 9 h -t 51.3335 -s 211 -d 210 -p tcp -e 1000 -i 480 -a 9 - -t 51.3345 -s 311 -d 310 -p tcp -e 1000 -i 434 -a 6 h -t 51.3345 -s 311 -d 310 -p tcp -e 1000 -i 434 -a 6 + -t 51.34 -s 310 -d 308 -p tcp -e 1000 -i 423 -a 8 - -t 51.34 -s 310 -d 308 -p tcp -e 1000 -i 423 -a 8 h -t 51.34 -s 310 -d 308 -p tcp -e 1000 -i 423 -a 8 r -t 51.34 -s 311 -d 310 -p tcp -e 1000 -i 423 -a 8 r -t 51.342 -s 310 -d 308 -p tcp -e 1000 -i 423 -a 8 + -t 51.3435 -s 210 -d 203 -p tcp -e 1000 -i 472 -a 3 - -t 51.3435 -s 210 -d 203 -p tcp -e 1000 -i 472 -a 3 - -t 51.3435 -s 211 -d 210 -p tcp -e 1000 -i 481 -a 9 h -t 51.3435 -s 210 -d 203 -p tcp -e 1000 -i 472 -a 3 h -t 51.3435 -s 211 -d 210 -p tcp -e 1000 -i 481 -a 9 r -t 51.3435 -s 211 -d 210 -p tcp -e 1000 -i 472 -a 3 + -t 51.3453 -s 203 -d 210 -p ack -e 40 -i 483 -a 3 - -t 51.3453 -s 203 -d 210 -p ack -e 40 -i 483 -a 3 h -t 51.3453 -s 203 -d 210 -p ack -e 40 -i 483 -a 3 r -t 51.3455 -s 210 -d 203 -p tcp -e 1000 -i 472 -a 3 r -t 51.3463 -s 203 -d 210 -p ack -e 40 -i 483 -a 3 + -t 51.3464 -s 210 -d 211 -p ack -e 40 -i 483 -a 3 - -t 51.3464 -s 210 -d 211 -p ack -e 40 -i 483 -a 3 h -t 51.3464 -s 210 -d 211 -p ack -e 40 -i 483 -a 3 + -t 51.35 -s 310 -d 308 -p tcp -e 1000 -i 424 -a 8 - -t 51.35 -s 310 -d 308 -p tcp -e 1000 -i 424 -a 8 h -t 51.35 -s 310 -d 308 -p tcp -e 1000 -i 424 -a 8 r -t 51.35 -s 311 -d 310 -p tcp -e 1000 -i 424 -a 8 + -t 51.3518 -s 308 -d 310 -p ack -e 40 -i 436 -a 8 - -t 51.3518 -s 308 -d 310 -p ack -e 40 -i 436 -a 8 h -t 51.3518 -s 308 -d 310 -p ack -e 40 -i 436 -a 8 r -t 51.352 -s 310 -d 308 -p tcp -e 1000 -i 424 -a 8 + -t 51.3528 -s 310 -d 311 -p ack -e 40 -i 436 -a 8 - -t 51.3528 -s 310 -d 311 -p ack -e 40 -i 436 -a 8 h -t 51.3528 -s 310 -d 311 -p ack -e 40 -i 436 -a 8 r -t 51.3528 -s 308 -d 310 -p ack -e 40 -i 436 -a 8 + -t 51.3546 -s 211 -d 212 -p ack -e 40 -i 473 -a 3 - -t 51.3546 -s 211 -d 212 -p ack -e 40 -i 473 -a 3 h -t 51.3546 -s 211 -d 212 -p ack -e 40 -i 473 -a 3 r -t 51.3546 -s 210 -d 211 -p ack -e 40 -i 473 -a 3 r -t 51.3556 -s 211 -d 212 -p ack -e 40 -i 473 -a 3 + -t 51.36 -s 310 -d 303 -p tcp -e 1000 -i 426 -a 3 - -t 51.36 -s 310 -d 303 -p tcp -e 1000 -i 426 -a 3 h -t 51.36 -s 310 -d 303 -p tcp -e 1000 -i 426 -a 3 r -t 51.36 -s 311 -d 310 -p tcp -e 1000 -i 426 -a 3 + -t 51.3617 -s 311 -d 312 -p ack -e 40 -i 428 -a 9 - -t 51.3617 -s 311 -d 312 -p ack -e 40 -i 428 -a 9 h -t 51.3617 -s 311 -d 312 -p ack -e 40 -i 428 -a 9 r -t 51.3617 -s 310 -d 311 -p ack -e 40 -i 428 -a 9 r -t 51.362 -s 310 -d 303 -p tcp -e 1000 -i 426 -a 3 + -t 51.3627 -s 312 -d 311 -p tcp -e 1000 -i 437 -a 9 + -t 51.3627 -s 312 -d 311 -p tcp -e 1000 -i 438 -a 9 - -t 51.3627 -s 312 -d 311 -p tcp -e 1000 -i 437 -a 9 h -t 51.3627 -s 312 -d 311 -p tcp -e 1000 -i 437 -a 9 r -t 51.3627 -s 311 -d 312 -p ack -e 40 -i 428 -a 9 - -t 51.3635 -s 312 -d 311 -p tcp -e 1000 -i 438 -a 9 h -t 51.3635 -s 312 -d 311 -p tcp -e 1000 -i 438 -a 9 + -t 51.3645 -s 311 -d 310 -p tcp -e 1000 -i 437 -a 9 - -t 51.3645 -s 311 -d 310 -p tcp -e 1000 -i 437 -a 9 h -t 51.3645 -s 311 -d 310 -p tcp -e 1000 -i 437 -a 9 r -t 51.3647 -s 312 -d 311 -p tcp -e 1000 -i 437 -a 9 + -t 51.3653 -s 311 -d 310 -p tcp -e 1000 -i 438 -a 9 r -t 51.3655 -s 312 -d 311 -p tcp -e 1000 -i 438 -a 9 + -t 51.37 -s 310 -d 303 -p tcp -e 1000 -i 427 -a 3 - -t 51.37 -s 310 -d 303 -p tcp -e 1000 -i 427 -a 3 h -t 51.37 -s 310 -d 303 -p tcp -e 1000 -i 427 -a 3 r -t 51.37 -s 311 -d 310 -p tcp -e 1000 -i 427 -a 3 + -t 51.3717 -s 111 -d 112 -p ack -e 40 -i 467 -a 9 - -t 51.3717 -s 111 -d 112 -p ack -e 40 -i 467 -a 9 h -t 51.3717 -s 111 -d 112 -p ack -e 40 -i 467 -a 9 r -t 51.3717 -s 110 -d 111 -p ack -e 40 -i 467 -a 9 + -t 51.3718 -s 303 -d 310 -p ack -e 40 -i 439 -a 3 - -t 51.3718 -s 303 -d 310 -p ack -e 40 -i 439 -a 3 h -t 51.3718 -s 303 -d 310 -p ack -e 40 -i 439 -a 3 r -t 51.372 -s 310 -d 303 -p tcp -e 1000 -i 427 -a 3 r -t 51.3727 -s 111 -d 112 -p ack -e 40 -i 467 -a 9 + -t 51.3728 -s 310 -d 311 -p ack -e 40 -i 439 -a 3 - -t 51.3728 -s 310 -d 311 -p ack -e 40 -i 439 -a 3 h -t 51.3728 -s 310 -d 311 -p ack -e 40 -i 439 -a 3 r -t 51.3728 -s 303 -d 310 -p ack -e 40 -i 439 -a 3 - -t 51.3745 -s 311 -d 310 -p tcp -e 1000 -i 438 -a 9 h -t 51.3745 -s 311 -d 310 -p tcp -e 1000 -i 438 -a 9 + -t 51.376 -s 112 -d 111 -p tcp -e 1000 -i 471 -a 0 - -t 51.376 -s 112 -d 111 -p tcp -e 1000 -i 471 -a 0 h -t 51.376 -s 112 -d 111 -p tcp -e 1000 -i 471 -a 0 + -t 51.3778 -s 111 -d 110 -p tcp -e 1000 -i 471 -a 0 - -t 51.3778 -s 111 -d 110 -p tcp -e 1000 -i 471 -a 0 h -t 51.3778 -s 111 -d 110 -p tcp -e 1000 -i 471 -a 0 r -t 51.378 -s 112 -d 111 -p tcp -e 1000 -i 471 -a 0 + -t 51.3803 -s 109 -d 110 -p ack -e 40 -i 472 -a 9 - -t 51.3803 -s 109 -d 110 -p ack -e 40 -i 472 -a 9 h -t 51.3803 -s 109 -d 110 -p ack -e 40 -i 472 -a 9 + -t 51.3813 -s 110 -d 111 -p ack -e 40 -i 472 -a 9 - -t 51.3813 -s 110 -d 111 -p ack -e 40 -i 472 -a 9 h -t 51.3813 -s 110 -d 111 -p ack -e 40 -i 472 -a 9 r -t 51.3813 -s 109 -d 110 -p ack -e 40 -i 472 -a 9 + -t 51.3832 -s 311 -d 312 -p ack -e 40 -i 429 -a 0 - -t 51.3832 -s 311 -d 312 -p ack -e 40 -i 429 -a 0 h -t 51.3832 -s 311 -d 312 -p ack -e 40 -i 429 -a 0 r -t 51.3832 -s 310 -d 311 -p ack -e 40 -i 429 -a 0 + -t 51.3842 -s 312 -d 311 -p tcp -e 1000 -i 440 -a 0 + -t 51.3842 -s 312 -d 311 -p tcp -e 1000 -i 441 -a 0 + -t 51.3842 -s 312 -d 311 -p tcp -e 1000 -i 442 -a 0 - -t 51.3842 -s 312 -d 311 -p tcp -e 1000 -i 440 -a 0 h -t 51.3842 -s 312 -d 311 -p tcp -e 1000 -i 440 -a 0 r -t 51.3842 -s 311 -d 312 -p ack -e 40 -i 429 -a 0 + -t 51.3845 -s 110 -d 109 -p tcp -e 1000 -i 468 -a 9 - -t 51.3845 -s 110 -d 109 -p tcp -e 1000 -i 468 -a 9 h -t 51.3845 -s 110 -d 109 -p tcp -e 1000 -i 468 -a 9 r -t 51.3845 -s 111 -d 110 -p tcp -e 1000 -i 468 -a 9 + -t 51.3846 -s 211 -d 212 -p ack -e 40 -i 474 -a 9 - -t 51.3846 -s 211 -d 212 -p ack -e 40 -i 474 -a 9 h -t 51.3846 -s 211 -d 212 -p ack -e 40 -i 474 -a 9 r -t 51.3846 -s 210 -d 211 -p ack -e 40 -i 474 -a 9 - -t 51.385 -s 312 -d 311 -p tcp -e 1000 -i 441 -a 0 h -t 51.385 -s 312 -d 311 -p tcp -e 1000 -i 441 -a 0 + -t 51.3856 -s 212 -d 211 -p tcp -e 1000 -i 484 -a 9 + -t 51.3856 -s 212 -d 211 -p tcp -e 1000 -i 485 -a 9 - -t 51.3856 -s 212 -d 211 -p tcp -e 1000 -i 484 -a 9 h -t 51.3856 -s 212 -d 211 -p tcp -e 1000 -i 484 -a 9 r -t 51.3856 -s 211 -d 212 -p ack -e 40 -i 474 -a 9 - -t 51.3858 -s 312 -d 311 -p tcp -e 1000 -i 442 -a 0 h -t 51.3858 -s 312 -d 311 -p tcp -e 1000 -i 442 -a 0 + -t 51.386 -s 311 -d 310 -p tcp -e 1000 -i 440 -a 0 - -t 51.386 -s 311 -d 310 -p tcp -e 1000 -i 440 -a 0 h -t 51.386 -s 311 -d 310 -p tcp -e 1000 -i 440 -a 0 r -t 51.3862 -s 312 -d 311 -p tcp -e 1000 -i 440 -a 0 - -t 51.3864 -s 212 -d 211 -p tcp -e 1000 -i 485 -a 9 h -t 51.3864 -s 212 -d 211 -p tcp -e 1000 -i 485 -a 9 r -t 51.3865 -s 110 -d 109 -p tcp -e 1000 -i 468 -a 9 + -t 51.3868 -s 311 -d 310 -p tcp -e 1000 -i 441 -a 0 r -t 51.387 -s 312 -d 311 -p tcp -e 1000 -i 441 -a 0 + -t 51.3874 -s 211 -d 210 -p tcp -e 1000 -i 484 -a 9 - -t 51.3874 -s 211 -d 210 -p tcp -e 1000 -i 484 -a 9 h -t 51.3874 -s 211 -d 210 -p tcp -e 1000 -i 484 -a 9 + -t 51.3876 -s 311 -d 310 -p tcp -e 1000 -i 442 -a 0 r -t 51.3876 -s 212 -d 211 -p tcp -e 1000 -i 484 -a 9 r -t 51.3878 -s 312 -d 311 -p tcp -e 1000 -i 442 -a 0 + -t 51.3882 -s 211 -d 210 -p tcp -e 1000 -i 485 -a 9 r -t 51.3884 -s 212 -d 211 -p tcp -e 1000 -i 485 -a 9 + -t 51.3917 -s 311 -d 312 -p ack -e 40 -i 430 -a 4 - -t 51.3917 -s 311 -d 312 -p ack -e 40 -i 430 -a 4 h -t 51.3917 -s 311 -d 312 -p ack -e 40 -i 430 -a 4 r -t 51.3917 -s 310 -d 311 -p ack -e 40 -i 430 -a 4 r -t 51.3927 -s 311 -d 312 -p ack -e 40 -i 430 -a 4 + -t 51.3932 -s 209 -d 210 -p ack -e 40 -i 486 -a 9 - -t 51.3932 -s 209 -d 210 -p ack -e 40 -i 486 -a 9 h -t 51.3932 -s 209 -d 210 -p ack -e 40 -i 486 -a 9 + -t 51.3942 -s 210 -d 211 -p ack -e 40 -i 486 -a 9 - -t 51.3942 -s 210 -d 211 -p ack -e 40 -i 486 -a 9 h -t 51.3942 -s 210 -d 211 -p ack -e 40 -i 486 -a 9 r -t 51.3942 -s 209 -d 210 -p ack -e 40 -i 486 -a 9 + -t 51.3945 -s 110 -d 109 -p tcp -e 1000 -i 469 -a 9 - -t 51.3945 -s 110 -d 109 -p tcp -e 1000 -i 469 -a 9 h -t 51.3945 -s 110 -d 109 -p tcp -e 1000 -i 469 -a 9 r -t 51.3945 -s 111 -d 110 -p tcp -e 1000 -i 469 -a 9 - -t 51.396 -s 311 -d 310 -p tcp -e 1000 -i 441 -a 0 h -t 51.396 -s 311 -d 310 -p tcp -e 1000 -i 441 -a 0 + -t 51.3963 -s 109 -d 110 -p ack -e 40 -i 473 -a 9 - -t 51.3963 -s 109 -d 110 -p ack -e 40 -i 473 -a 9 h -t 51.3963 -s 109 -d 110 -p ack -e 40 -i 473 -a 9 r -t 51.3965 -s 110 -d 109 -p tcp -e 1000 -i 469 -a 9 r -t 51.3973 -s 109 -d 110 -p ack -e 40 -i 473 -a 9 + -t 51.3974 -s 110 -d 111 -p ack -e 40 -i 473 -a 9 - -t 51.3974 -s 110 -d 111 -p ack -e 40 -i 473 -a 9 - -t 51.3974 -s 211 -d 210 -p tcp -e 1000 -i 485 -a 9 h -t 51.3974 -s 110 -d 111 -p ack -e 40 -i 473 -a 9 h -t 51.3974 -s 211 -d 210 -p tcp -e 1000 -i 485 -a 9 + -t 51.4032 -s 311 -d 312 -p ack -e 40 -i 431 -a 1 - -t 51.4032 -s 311 -d 312 -p ack -e 40 -i 431 -a 1 h -t 51.4032 -s 311 -d 312 -p ack -e 40 -i 431 -a 1 r -t 51.4032 -s 310 -d 311 -p ack -e 40 -i 431 -a 1 + -t 51.4035 -s 210 -d 202 -p tcp -e 1000 -i 475 -a 2 - -t 51.4035 -s 210 -d 202 -p tcp -e 1000 -i 475 -a 2 h -t 51.4035 -s 210 -d 202 -p tcp -e 1000 -i 475 -a 2 r -t 51.4035 -s 211 -d 210 -p tcp -e 1000 -i 475 -a 2 r -t 51.4042 -s 311 -d 312 -p ack -e 40 -i 431 -a 1 + -t 51.4046 -s 211 -d 212 -p ack -e 40 -i 478 -a 2 - -t 51.4046 -s 211 -d 212 -p ack -e 40 -i 478 -a 2 h -t 51.4046 -s 211 -d 212 -p ack -e 40 -i 478 -a 2 r -t 51.4046 -s 210 -d 211 -p ack -e 40 -i 478 -a 2 r -t 51.4055 -s 210 -d 202 -p tcp -e 1000 -i 475 -a 2 + -t 51.4056 -s 212 -d 211 -p tcp -e 1000 -i 487 -a 2 - -t 51.4056 -s 212 -d 211 -p tcp -e 1000 -i 487 -a 2 h -t 51.4056 -s 212 -d 211 -p tcp -e 1000 -i 487 -a 2 r -t 51.4056 -s 211 -d 212 -p ack -e 40 -i 478 -a 2 - -t 51.406 -s 311 -d 310 -p tcp -e 1000 -i 442 -a 0 h -t 51.406 -s 311 -d 310 -p tcp -e 1000 -i 442 -a 0 + -t 51.4074 -s 211 -d 210 -p tcp -e 1000 -i 487 -a 2 - -t 51.4074 -s 211 -d 210 -p tcp -e 1000 -i 487 -a 2 h -t 51.4074 -s 211 -d 210 -p tcp -e 1000 -i 487 -a 2 r -t 51.4076 -s 212 -d 211 -p tcp -e 1000 -i 487 -a 2 + -t 51.4118 -s 301 -d 310 -p ack -e 40 -i 443 -a 1 - -t 51.4118 -s 301 -d 310 -p ack -e 40 -i 443 -a 1 h -t 51.4118 -s 301 -d 310 -p ack -e 40 -i 443 -a 1 + -t 51.412 -s 111 -d 112 -p ack -e 40 -i 470 -a 3 - -t 51.412 -s 111 -d 112 -p ack -e 40 -i 470 -a 3 h -t 51.412 -s 111 -d 112 -p ack -e 40 -i 470 -a 3 r -t 51.412 -s 110 -d 111 -p ack -e 40 -i 470 -a 3 + -t 51.4128 -s 310 -d 311 -p ack -e 40 -i 443 -a 1 - -t 51.4128 -s 310 -d 311 -p ack -e 40 -i 443 -a 1 h -t 51.4128 -s 310 -d 311 -p ack -e 40 -i 443 -a 1 r -t 51.4128 -s 301 -d 310 -p ack -e 40 -i 443 -a 1 + -t 51.413 -s 112 -d 111 -p tcp -e 1000 -i 474 -a 3 + -t 51.413 -s 112 -d 111 -p tcp -e 1000 -i 475 -a 3 + -t 51.413 -s 112 -d 111 -p tcp -e 1000 -i 476 -a 3 - -t 51.413 -s 112 -d 111 -p tcp -e 1000 -i 474 -a 3 h -t 51.413 -s 112 -d 111 -p tcp -e 1000 -i 474 -a 3 r -t 51.413 -s 111 -d 112 -p ack -e 40 -i 470 -a 3 + -t 51.4135 -s 210 -d 202 -p tcp -e 1000 -i 476 -a 2 - -t 51.4135 -s 210 -d 202 -p tcp -e 1000 -i 476 -a 2 h -t 51.4135 -s 210 -d 202 -p tcp -e 1000 -i 476 -a 2 r -t 51.4135 -s 211 -d 210 -p tcp -e 1000 -i 476 -a 2 - -t 51.4138 -s 112 -d 111 -p tcp -e 1000 -i 475 -a 3 h -t 51.4138 -s 112 -d 111 -p tcp -e 1000 -i 475 -a 3 - -t 51.4146 -s 112 -d 111 -p tcp -e 1000 -i 476 -a 3 h -t 51.4146 -s 112 -d 111 -p tcp -e 1000 -i 476 -a 3 + -t 51.4148 -s 111 -d 110 -p tcp -e 1000 -i 474 -a 3 - -t 51.4148 -s 111 -d 110 -p tcp -e 1000 -i 474 -a 3 h -t 51.4148 -s 111 -d 110 -p tcp -e 1000 -i 474 -a 3 r -t 51.415 -s 112 -d 111 -p tcp -e 1000 -i 474 -a 3 + -t 51.4153 -s 202 -d 210 -p ack -e 40 -i 488 -a 2 - -t 51.4153 -s 202 -d 210 -p ack -e 40 -i 488 -a 2 h -t 51.4153 -s 202 -d 210 -p ack -e 40 -i 488 -a 2 r -t 51.4155 -s 210 -d 202 -p tcp -e 1000 -i 476 -a 2 + -t 51.4156 -s 111 -d 110 -p tcp -e 1000 -i 475 -a 3 r -t 51.4158 -s 112 -d 111 -p tcp -e 1000 -i 475 -a 3 r -t 51.4163 -s 202 -d 210 -p ack -e 40 -i 488 -a 2 + -t 51.4164 -s 111 -d 110 -p tcp -e 1000 -i 476 -a 3 + -t 51.4164 -s 210 -d 211 -p ack -e 40 -i 488 -a 2 - -t 51.4164 -s 210 -d 211 -p ack -e 40 -i 488 -a 2 h -t 51.4164 -s 210 -d 211 -p ack -e 40 -i 488 -a 2 r -t 51.4166 -s 112 -d 111 -p tcp -e 1000 -i 476 -a 3 + -t 51.4235 -s 210 -d 202 -p tcp -e 1000 -i 477 -a 2 - -t 51.4235 -s 210 -d 202 -p tcp -e 1000 -i 477 -a 2 h -t 51.4235 -s 210 -d 202 -p tcp -e 1000 -i 477 -a 2 r -t 51.4235 -s 211 -d 210 -p tcp -e 1000 -i 477 -a 2 + -t 51.4245 -s 310 -d 306 -p tcp -e 1000 -i 432 -a 6 - -t 51.4245 -s 310 -d 306 -p tcp -e 1000 -i 432 -a 6 h -t 51.4245 -s 310 -d 306 -p tcp -e 1000 -i 432 -a 6 r -t 51.4245 -s 311 -d 310 -p tcp -e 1000 -i 432 -a 6 + -t 51.4246 -s 211 -d 212 -p ack -e 40 -i 482 -a 2 - -t 51.4246 -s 211 -d 212 -p ack -e 40 -i 482 -a 2 h -t 51.4246 -s 211 -d 212 -p ack -e 40 -i 482 -a 2 r -t 51.4246 -s 210 -d 211 -p ack -e 40 -i 482 -a 2 - -t 51.4248 -s 111 -d 110 -p tcp -e 1000 -i 475 -a 3 h -t 51.4248 -s 111 -d 110 -p tcp -e 1000 -i 475 -a 3 r -t 51.4255 -s 210 -d 202 -p tcp -e 1000 -i 477 -a 2 r -t 51.4256 -s 211 -d 212 -p ack -e 40 -i 482 -a 2 r -t 51.4265 -s 310 -d 306 -p tcp -e 1000 -i 432 -a 6 + -t 51.4332 -s 311 -d 312 -p ack -e 40 -i 435 -a 2 - -t 51.4332 -s 311 -d 312 -p ack -e 40 -i 435 -a 2 h -t 51.4332 -s 311 -d 312 -p ack -e 40 -i 435 -a 2 r -t 51.4332 -s 310 -d 311 -p ack -e 40 -i 435 -a 2 + -t 51.4335 -s 210 -d 209 -p tcp -e 1000 -i 479 -a 9 - -t 51.4335 -s 210 -d 209 -p tcp -e 1000 -i 479 -a 9 h -t 51.4335 -s 210 -d 209 -p tcp -e 1000 -i 479 -a 9 r -t 51.4335 -s 211 -d 210 -p tcp -e 1000 -i 479 -a 9 + -t 51.4342 -s 312 -d 311 -p tcp -e 1000 -i 444 -a 2 + -t 51.4342 -s 312 -d 311 -p tcp -e 1000 -i 445 -a 2 - -t 51.4342 -s 312 -d 311 -p tcp -e 1000 -i 444 -a 2 h -t 51.4342 -s 312 -d 311 -p tcp -e 1000 -i 444 -a 2 r -t 51.4342 -s 311 -d 312 -p ack -e 40 -i 435 -a 2 + -t 51.4345 -s 310 -d 306 -p tcp -e 1000 -i 433 -a 6 - -t 51.4345 -s 310 -d 306 -p tcp -e 1000 -i 433 -a 6 h -t 51.4345 -s 310 -d 306 -p tcp -e 1000 -i 433 -a 6 r -t 51.4345 -s 311 -d 310 -p tcp -e 1000 -i 433 -a 6 - -t 51.4348 -s 111 -d 110 -p tcp -e 1000 -i 476 -a 3 h -t 51.4348 -s 111 -d 110 -p tcp -e 1000 -i 476 -a 3 - -t 51.435 -s 312 -d 311 -p tcp -e 1000 -i 445 -a 2 h -t 51.435 -s 312 -d 311 -p tcp -e 1000 -i 445 -a 2 r -t 51.4355 -s 210 -d 209 -p tcp -e 1000 -i 479 -a 9 + -t 51.436 -s 311 -d 310 -p tcp -e 1000 -i 444 -a 2 - -t 51.436 -s 311 -d 310 -p tcp -e 1000 -i 444 -a 2 h -t 51.436 -s 311 -d 310 -p tcp -e 1000 -i 444 -a 2 r -t 51.4362 -s 312 -d 311 -p tcp -e 1000 -i 444 -a 2 + -t 51.4363 -s 306 -d 310 -p ack -e 40 -i 446 -a 6 - -t 51.4363 -s 306 -d 310 -p ack -e 40 -i 446 -a 6 h -t 51.4363 -s 306 -d 310 -p ack -e 40 -i 446 -a 6 r -t 51.4365 -s 310 -d 306 -p tcp -e 1000 -i 433 -a 6 + -t 51.4368 -s 311 -d 310 -p tcp -e 1000 -i 445 -a 2 r -t 51.437 -s 312 -d 311 -p tcp -e 1000 -i 445 -a 2 r -t 51.4373 -s 306 -d 310 -p ack -e 40 -i 446 -a 6 + -t 51.4374 -s 310 -d 311 -p ack -e 40 -i 446 -a 6 - -t 51.4374 -s 310 -d 311 -p ack -e 40 -i 446 -a 6 h -t 51.4374 -s 310 -d 311 -p ack -e 40 -i 446 -a 6 + -t 51.4435 -s 210 -d 209 -p tcp -e 1000 -i 480 -a 9 - -t 51.4435 -s 210 -d 209 -p tcp -e 1000 -i 480 -a 9 h -t 51.4435 -s 210 -d 209 -p tcp -e 1000 -i 480 -a 9 r -t 51.4435 -s 211 -d 210 -p tcp -e 1000 -i 480 -a 9 + -t 51.4445 -s 310 -d 306 -p tcp -e 1000 -i 434 -a 6 - -t 51.4445 -s 310 -d 306 -p tcp -e 1000 -i 434 -a 6 h -t 51.4445 -s 310 -d 306 -p tcp -e 1000 -i 434 -a 6 r -t 51.4445 -s 311 -d 310 -p tcp -e 1000 -i 434 -a 6 + -t 51.4453 -s 209 -d 210 -p ack -e 40 -i 489 -a 9 - -t 51.4453 -s 209 -d 210 -p ack -e 40 -i 489 -a 9 h -t 51.4453 -s 209 -d 210 -p ack -e 40 -i 489 -a 9 r -t 51.4455 -s 210 -d 209 -p tcp -e 1000 -i 480 -a 9 - -t 51.446 -s 311 -d 310 -p tcp -e 1000 -i 445 -a 2 h -t 51.446 -s 311 -d 310 -p tcp -e 1000 -i 445 -a 2 r -t 51.4463 -s 209 -d 210 -p ack -e 40 -i 489 -a 9 + -t 51.4464 -s 210 -d 211 -p ack -e 40 -i 489 -a 9 - -t 51.4464 -s 210 -d 211 -p ack -e 40 -i 489 -a 9 h -t 51.4464 -s 210 -d 211 -p ack -e 40 -i 489 -a 9 r -t 51.4465 -s 310 -d 306 -p tcp -e 1000 -i 434 -a 6 + -t 51.4468 -s 211 -d 212 -p ack -e 40 -i 483 -a 3 - -t 51.4468 -s 211 -d 212 -p ack -e 40 -i 483 -a 3 h -t 51.4468 -s 211 -d 212 -p ack -e 40 -i 483 -a 3 r -t 51.4468 -s 210 -d 211 -p ack -e 40 -i 483 -a 3 r -t 51.4478 -s 211 -d 212 -p ack -e 40 -i 483 -a 3 + -t 51.4532 -s 311 -d 312 -p ack -e 40 -i 436 -a 8 - -t 51.4532 -s 311 -d 312 -p ack -e 40 -i 436 -a 8 h -t 51.4532 -s 311 -d 312 -p ack -e 40 -i 436 -a 8 r -t 51.4532 -s 310 -d 311 -p ack -e 40 -i 436 -a 8 + -t 51.4535 -s 210 -d 209 -p tcp -e 1000 -i 481 -a 9 - -t 51.4535 -s 210 -d 209 -p tcp -e 1000 -i 481 -a 9 h -t 51.4535 -s 210 -d 209 -p tcp -e 1000 -i 481 -a 9 r -t 51.4535 -s 211 -d 210 -p tcp -e 1000 -i 481 -a 9 + -t 51.4542 -s 312 -d 311 -p tcp -e 1000 -i 447 -a 8 + -t 51.4542 -s 312 -d 311 -p tcp -e 1000 -i 448 -a 8 + -t 51.4542 -s 312 -d 311 -p tcp -e 1000 -i 449 -a 8 - -t 51.4542 -s 312 -d 311 -p tcp -e 1000 -i 447 -a 8 h -t 51.4542 -s 312 -d 311 -p tcp -e 1000 -i 447 -a 8 r -t 51.4542 -s 311 -d 312 -p ack -e 40 -i 436 -a 8 - -t 51.455 -s 312 -d 311 -p tcp -e 1000 -i 448 -a 8 h -t 51.455 -s 312 -d 311 -p tcp -e 1000 -i 448 -a 8 r -t 51.4555 -s 210 -d 209 -p tcp -e 1000 -i 481 -a 9 - -t 51.4558 -s 312 -d 311 -p tcp -e 1000 -i 449 -a 8 h -t 51.4558 -s 312 -d 311 -p tcp -e 1000 -i 449 -a 8 + -t 51.456 -s 311 -d 310 -p tcp -e 1000 -i 447 -a 8 - -t 51.456 -s 311 -d 310 -p tcp -e 1000 -i 447 -a 8 h -t 51.456 -s 311 -d 310 -p tcp -e 1000 -i 447 -a 8 r -t 51.4562 -s 312 -d 311 -p tcp -e 1000 -i 447 -a 8 + -t 51.4568 -s 311 -d 310 -p tcp -e 1000 -i 448 -a 8 r -t 51.457 -s 312 -d 311 -p tcp -e 1000 -i 448 -a 8 + -t 51.4576 -s 311 -d 310 -p tcp -e 1000 -i 449 -a 8 r -t 51.4578 -s 312 -d 311 -p tcp -e 1000 -i 449 -a 8 - -t 51.466 -s 311 -d 310 -p tcp -e 1000 -i 448 -a 8 h -t 51.466 -s 311 -d 310 -p tcp -e 1000 -i 448 -a 8 + -t 51.4732 -s 311 -d 312 -p ack -e 40 -i 439 -a 3 - -t 51.4732 -s 311 -d 312 -p ack -e 40 -i 439 -a 3 h -t 51.4732 -s 311 -d 312 -p ack -e 40 -i 439 -a 3 r -t 51.4732 -s 310 -d 311 -p ack -e 40 -i 439 -a 3 + -t 51.4742 -s 312 -d 311 -p tcp -e 1000 -i 450 -a 3 + -t 51.4742 -s 312 -d 311 -p tcp -e 1000 -i 451 -a 3 - -t 51.4742 -s 312 -d 311 -p tcp -e 1000 -i 450 -a 3 h -t 51.4742 -s 312 -d 311 -p tcp -e 1000 -i 450 -a 3 r -t 51.4742 -s 311 -d 312 -p ack -e 40 -i 439 -a 3 + -t 51.4745 -s 310 -d 309 -p tcp -e 1000 -i 437 -a 9 - -t 51.4745 -s 310 -d 309 -p tcp -e 1000 -i 437 -a 9 h -t 51.4745 -s 310 -d 309 -p tcp -e 1000 -i 437 -a 9 r -t 51.4745 -s 311 -d 310 -p tcp -e 1000 -i 437 -a 9 - -t 51.475 -s 312 -d 311 -p tcp -e 1000 -i 451 -a 3 h -t 51.475 -s 312 -d 311 -p tcp -e 1000 -i 451 -a 3 + -t 51.476 -s 311 -d 310 -p tcp -e 1000 -i 450 -a 3 - -t 51.476 -s 311 -d 310 -p tcp -e 1000 -i 449 -a 8 h -t 51.476 -s 311 -d 310 -p tcp -e 1000 -i 449 -a 8 r -t 51.4762 -s 312 -d 311 -p tcp -e 1000 -i 450 -a 3 r -t 51.4765 -s 310 -d 309 -p tcp -e 1000 -i 437 -a 9 + -t 51.4768 -s 311 -d 310 -p tcp -e 1000 -i 451 -a 3 r -t 51.477 -s 312 -d 311 -p tcp -e 1000 -i 451 -a 3 + -t 51.4817 -s 111 -d 112 -p ack -e 40 -i 472 -a 9 - -t 51.4817 -s 111 -d 112 -p ack -e 40 -i 472 -a 9 h -t 51.4817 -s 111 -d 112 -p ack -e 40 -i 472 -a 9 r -t 51.4817 -s 110 -d 111 -p ack -e 40 -i 472 -a 9 r -t 51.4827 -s 111 -d 112 -p ack -e 40 -i 472 -a 9 + -t 51.4845 -s 310 -d 309 -p tcp -e 1000 -i 438 -a 9 - -t 51.4845 -s 310 -d 309 -p tcp -e 1000 -i 438 -a 9 h -t 51.4845 -s 310 -d 309 -p tcp -e 1000 -i 438 -a 9 r -t 51.4845 -s 311 -d 310 -p tcp -e 1000 -i 438 -a 9 - -t 51.486 -s 311 -d 310 -p tcp -e 1000 -i 450 -a 3 h -t 51.486 -s 311 -d 310 -p tcp -e 1000 -i 450 -a 3 + -t 51.4863 -s 309 -d 310 -p ack -e 40 -i 452 -a 9 - -t 51.4863 -s 309 -d 310 -p ack -e 40 -i 452 -a 9 h -t 51.4863 -s 309 -d 310 -p ack -e 40 -i 452 -a 9 r -t 51.4865 -s 310 -d 309 -p tcp -e 1000 -i 438 -a 9 r -t 51.4873 -s 309 -d 310 -p ack -e 40 -i 452 -a 9 + -t 51.4874 -s 310 -d 311 -p ack -e 40 -i 452 -a 9 - -t 51.4874 -s 310 -d 311 -p ack -e 40 -i 452 -a 9 h -t 51.4874 -s 310 -d 311 -p ack -e 40 -i 452 -a 9 + -t 51.4878 -s 110 -d 100 -p tcp -e 1000 -i 471 -a 0 - -t 51.4878 -s 110 -d 100 -p tcp -e 1000 -i 471 -a 0 h -t 51.4878 -s 110 -d 100 -p tcp -e 1000 -i 471 -a 0 r -t 51.4878 -s 111 -d 110 -p tcp -e 1000 -i 471 -a 0 r -t 51.4898 -s 110 -d 100 -p tcp -e 1000 -i 471 -a 0 + -t 51.4946 -s 211 -d 212 -p ack -e 40 -i 486 -a 9 - -t 51.4946 -s 211 -d 212 -p ack -e 40 -i 486 -a 9 h -t 51.4946 -s 211 -d 212 -p ack -e 40 -i 486 -a 9 r -t 51.4946 -s 210 -d 211 -p ack -e 40 -i 486 -a 9 r -t 51.4956 -s 211 -d 212 -p ack -e 40 -i 486 -a 9 + -t 51.496 -s 310 -d 300 -p tcp -e 1000 -i 440 -a 0 - -t 51.496 -s 310 -d 300 -p tcp -e 1000 -i 440 -a 0 - -t 51.496 -s 311 -d 310 -p tcp -e 1000 -i 451 -a 3 h -t 51.496 -s 310 -d 300 -p tcp -e 1000 -i 440 -a 0 h -t 51.496 -s 311 -d 310 -p tcp -e 1000 -i 451 -a 3 r -t 51.496 -s 311 -d 310 -p tcp -e 1000 -i 440 -a 0 + -t 51.4974 -s 210 -d 209 -p tcp -e 1000 -i 484 -a 9 - -t 51.4974 -s 210 -d 209 -p tcp -e 1000 -i 484 -a 9 h -t 51.4974 -s 210 -d 209 -p tcp -e 1000 -i 484 -a 9 r -t 51.4974 -s 211 -d 210 -p tcp -e 1000 -i 484 -a 9 + -t 51.4978 -s 111 -d 112 -p ack -e 40 -i 473 -a 9 - -t 51.4978 -s 111 -d 112 -p ack -e 40 -i 473 -a 9 h -t 51.4978 -s 111 -d 112 -p ack -e 40 -i 473 -a 9 r -t 51.4978 -s 110 -d 111 -p ack -e 40 -i 473 -a 9 r -t 51.498 -s 310 -d 300 -p tcp -e 1000 -i 440 -a 0 r -t 51.4988 -s 111 -d 112 -p ack -e 40 -i 473 -a 9 + -t 51.4992 -s 209 -d 210 -p ack -e 40 -i 490 -a 9 - -t 51.4992 -s 209 -d 210 -p ack -e 40 -i 490 -a 9 h -t 51.4992 -s 209 -d 210 -p ack -e 40 -i 490 -a 9 r -t 51.4994 -s 210 -d 209 -p tcp -e 1000 -i 484 -a 9 r -t 51.5002 -s 209 -d 210 -p ack -e 40 -i 490 -a 9 + -t 51.5003 -s 210 -d 211 -p ack -e 40 -i 490 -a 9 - -t 51.5003 -s 210 -d 211 -p ack -e 40 -i 490 -a 9 h -t 51.5003 -s 210 -d 211 -p ack -e 40 -i 490 -a 9 + -t 51.506 -s 310 -d 300 -p tcp -e 1000 -i 441 -a 0 - -t 51.506 -s 310 -d 300 -p tcp -e 1000 -i 441 -a 0 h -t 51.506 -s 310 -d 300 -p tcp -e 1000 -i 441 -a 0 r -t 51.506 -s 311 -d 310 -p tcp -e 1000 -i 441 -a 0 + -t 51.5074 -s 210 -d 209 -p tcp -e 1000 -i 485 -a 9 - -t 51.5074 -s 210 -d 209 -p tcp -e 1000 -i 485 -a 9 h -t 51.5074 -s 210 -d 209 -p tcp -e 1000 -i 485 -a 9 r -t 51.5074 -s 211 -d 210 -p tcp -e 1000 -i 485 -a 9 + -t 51.5078 -s 300 -d 310 -p ack -e 40 -i 453 -a 0 - -t 51.5078 -s 300 -d 310 -p ack -e 40 -i 453 -a 0 h -t 51.5078 -s 300 -d 310 -p ack -e 40 -i 453 -a 0 r -t 51.508 -s 310 -d 300 -p tcp -e 1000 -i 441 -a 0 r -t 51.5088 -s 300 -d 310 -p ack -e 40 -i 453 -a 0 + -t 51.5089 -s 310 -d 311 -p ack -e 40 -i 453 -a 0 - -t 51.5089 -s 310 -d 311 -p ack -e 40 -i 453 -a 0 h -t 51.5089 -s 310 -d 311 -p ack -e 40 -i 453 -a 0 r -t 51.5094 -s 210 -d 209 -p tcp -e 1000 -i 485 -a 9 + -t 51.5132 -s 311 -d 312 -p ack -e 40 -i 443 -a 1 - -t 51.5132 -s 311 -d 312 -p ack -e 40 -i 443 -a 1 h -t 51.5132 -s 311 -d 312 -p ack -e 40 -i 443 -a 1 r -t 51.5132 -s 310 -d 311 -p ack -e 40 -i 443 -a 1 r -t 51.5142 -s 311 -d 312 -p ack -e 40 -i 443 -a 1 + -t 51.516 -s 310 -d 300 -p tcp -e 1000 -i 442 -a 0 - -t 51.516 -s 310 -d 300 -p tcp -e 1000 -i 442 -a 0 h -t 51.516 -s 310 -d 300 -p tcp -e 1000 -i 442 -a 0 r -t 51.516 -s 311 -d 310 -p tcp -e 1000 -i 442 -a 0 + -t 51.5168 -s 211 -d 212 -p ack -e 40 -i 488 -a 2 - -t 51.5168 -s 211 -d 212 -p ack -e 40 -i 488 -a 2 h -t 51.5168 -s 211 -d 212 -p ack -e 40 -i 488 -a 2 r -t 51.5168 -s 210 -d 211 -p ack -e 40 -i 488 -a 2 + -t 51.5174 -s 210 -d 202 -p tcp -e 1000 -i 487 -a 2 - -t 51.5174 -s 210 -d 202 -p tcp -e 1000 -i 487 -a 2 h -t 51.5174 -s 210 -d 202 -p tcp -e 1000 -i 487 -a 2 r -t 51.5174 -s 211 -d 210 -p tcp -e 1000 -i 487 -a 2 r -t 51.5178 -s 211 -d 212 -p ack -e 40 -i 488 -a 2 r -t 51.518 -s 310 -d 300 -p tcp -e 1000 -i 442 -a 0 + -t 51.5192 -s 202 -d 210 -p ack -e 40 -i 491 -a 2 - -t 51.5192 -s 202 -d 210 -p ack -e 40 -i 491 -a 2 h -t 51.5192 -s 202 -d 210 -p ack -e 40 -i 491 -a 2 r -t 51.5194 -s 210 -d 202 -p tcp -e 1000 -i 487 -a 2 r -t 51.5202 -s 202 -d 210 -p ack -e 40 -i 491 -a 2 + -t 51.5203 -s 210 -d 211 -p ack -e 40 -i 491 -a 2 - -t 51.5203 -s 210 -d 211 -p ack -e 40 -i 491 -a 2 h -t 51.5203 -s 210 -d 211 -p ack -e 40 -i 491 -a 2 + -t 51.5221 -s 112 -d 111 -p tcp -e 1000 -i 477 -a 4 - -t 51.5221 -s 112 -d 111 -p tcp -e 1000 -i 477 -a 4 h -t 51.5221 -s 112 -d 111 -p tcp -e 1000 -i 477 -a 4 + -t 51.5239 -s 111 -d 110 -p tcp -e 1000 -i 477 -a 4 - -t 51.5239 -s 111 -d 110 -p tcp -e 1000 -i 477 -a 4 h -t 51.5239 -s 111 -d 110 -p tcp -e 1000 -i 477 -a 4 r -t 51.5241 -s 112 -d 111 -p tcp -e 1000 -i 477 -a 4 + -t 51.5248 -s 110 -d 103 -p tcp -e 1000 -i 474 -a 3 - -t 51.5248 -s 110 -d 103 -p tcp -e 1000 -i 474 -a 3 h -t 51.5248 -s 110 -d 103 -p tcp -e 1000 -i 474 -a 3 r -t 51.5248 -s 111 -d 110 -p tcp -e 1000 -i 474 -a 3 r -t 51.5268 -s 110 -d 103 -p tcp -e 1000 -i 474 -a 3 + -t 51.5348 -s 110 -d 103 -p tcp -e 1000 -i 475 -a 3 - -t 51.5348 -s 110 -d 103 -p tcp -e 1000 -i 475 -a 3 h -t 51.5348 -s 110 -d 103 -p tcp -e 1000 -i 475 -a 3 r -t 51.5348 -s 111 -d 110 -p tcp -e 1000 -i 475 -a 3 + -t 51.5366 -s 103 -d 110 -p ack -e 40 -i 478 -a 3 - -t 51.5366 -s 103 -d 110 -p ack -e 40 -i 478 -a 3 h -t 51.5366 -s 103 -d 110 -p ack -e 40 -i 478 -a 3 r -t 51.5368 -s 110 -d 103 -p tcp -e 1000 -i 475 -a 3 r -t 51.5376 -s 103 -d 110 -p ack -e 40 -i 478 -a 3 + -t 51.5377 -s 110 -d 111 -p ack -e 40 -i 478 -a 3 - -t 51.5377 -s 110 -d 111 -p ack -e 40 -i 478 -a 3 h -t 51.5377 -s 110 -d 111 -p ack -e 40 -i 478 -a 3 + -t 51.5378 -s 311 -d 312 -p ack -e 40 -i 446 -a 6 - -t 51.5378 -s 311 -d 312 -p ack -e 40 -i 446 -a 6 h -t 51.5378 -s 311 -d 312 -p ack -e 40 -i 446 -a 6 r -t 51.5378 -s 310 -d 311 -p ack -e 40 -i 446 -a 6 r -t 51.5388 -s 311 -d 312 -p ack -e 40 -i 446 -a 6 + -t 51.5448 -s 110 -d 103 -p tcp -e 1000 -i 476 -a 3 - -t 51.5448 -s 110 -d 103 -p tcp -e 1000 -i 476 -a 3 h -t 51.5448 -s 110 -d 103 -p tcp -e 1000 -i 476 -a 3 r -t 51.5448 -s 111 -d 110 -p tcp -e 1000 -i 476 -a 3 + -t 51.546 -s 310 -d 302 -p tcp -e 1000 -i 444 -a 2 - -t 51.546 -s 310 -d 302 -p tcp -e 1000 -i 444 -a 2 h -t 51.546 -s 310 -d 302 -p tcp -e 1000 -i 444 -a 2 r -t 51.546 -s 311 -d 310 -p tcp -e 1000 -i 444 -a 2 + -t 51.5463 -s 306 -d 310 -p ack -e 40 -i 454 -a 6 - -t 51.5463 -s 306 -d 310 -p ack -e 40 -i 454 -a 6 h -t 51.5463 -s 306 -d 310 -p ack -e 40 -i 454 -a 6 + -t 51.5468 -s 211 -d 212 -p ack -e 40 -i 489 -a 9 - -t 51.5468 -s 211 -d 212 -p ack -e 40 -i 489 -a 9 h -t 51.5468 -s 211 -d 212 -p ack -e 40 -i 489 -a 9 r -t 51.5468 -s 110 -d 103 -p tcp -e 1000 -i 476 -a 3 r -t 51.5468 -s 210 -d 211 -p ack -e 40 -i 489 -a 9 r -t 51.5473 -s 306 -d 310 -p ack -e 40 -i 454 -a 6 + -t 51.5474 -s 310 -d 311 -p ack -e 40 -i 454 -a 6 - -t 51.5474 -s 310 -d 311 -p ack -e 40 -i 454 -a 6 h -t 51.5474 -s 310 -d 311 -p ack -e 40 -i 454 -a 6 r -t 51.5478 -s 211 -d 212 -p ack -e 40 -i 489 -a 9 r -t 51.548 -s 310 -d 302 -p tcp -e 1000 -i 444 -a 2 + -t 51.556 -s 310 -d 302 -p tcp -e 1000 -i 445 -a 2 - -t 51.556 -s 310 -d 302 -p tcp -e 1000 -i 445 -a 2 h -t 51.556 -s 310 -d 302 -p tcp -e 1000 -i 445 -a 2 r -t 51.556 -s 311 -d 310 -p tcp -e 1000 -i 445 -a 2 + -t 51.5578 -s 302 -d 310 -p ack -e 40 -i 455 -a 2 - -t 51.5578 -s 302 -d 310 -p ack -e 40 -i 455 -a 2 h -t 51.5578 -s 302 -d 310 -p ack -e 40 -i 455 -a 2 r -t 51.558 -s 310 -d 302 -p tcp -e 1000 -i 445 -a 2 r -t 51.5588 -s 302 -d 310 -p ack -e 40 -i 455 -a 2 + -t 51.5589 -s 310 -d 311 -p ack -e 40 -i 455 -a 2 - -t 51.5589 -s 310 -d 311 -p ack -e 40 -i 455 -a 2 h -t 51.5589 -s 310 -d 311 -p ack -e 40 -i 455 -a 2 + -t 51.566 -s 310 -d 308 -p tcp -e 1000 -i 447 -a 8 - -t 51.566 -s 310 -d 308 -p tcp -e 1000 -i 447 -a 8 h -t 51.566 -s 310 -d 308 -p tcp -e 1000 -i 447 -a 8 r -t 51.566 -s 311 -d 310 -p tcp -e 1000 -i 447 -a 8 r -t 51.568 -s 310 -d 308 -p tcp -e 1000 -i 447 -a 8 + -t 51.576 -s 310 -d 308 -p tcp -e 1000 -i 448 -a 8 - -t 51.576 -s 310 -d 308 -p tcp -e 1000 -i 448 -a 8 h -t 51.576 -s 310 -d 308 -p tcp -e 1000 -i 448 -a 8 r -t 51.576 -s 311 -d 310 -p tcp -e 1000 -i 448 -a 8 + -t 51.5778 -s 308 -d 310 -p ack -e 40 -i 456 -a 8 - -t 51.5778 -s 308 -d 310 -p ack -e 40 -i 456 -a 8 h -t 51.5778 -s 308 -d 310 -p ack -e 40 -i 456 -a 8 r -t 51.578 -s 310 -d 308 -p tcp -e 1000 -i 448 -a 8 r -t 51.5788 -s 308 -d 310 -p ack -e 40 -i 456 -a 8 + -t 51.5789 -s 310 -d 311 -p ack -e 40 -i 456 -a 8 - -t 51.5789 -s 310 -d 311 -p ack -e 40 -i 456 -a 8 h -t 51.5789 -s 310 -d 311 -p ack -e 40 -i 456 -a 8 + -t 51.586 -s 310 -d 308 -p tcp -e 1000 -i 449 -a 8 - -t 51.586 -s 310 -d 308 -p tcp -e 1000 -i 449 -a 8 h -t 51.586 -s 310 -d 308 -p tcp -e 1000 -i 449 -a 8 r -t 51.586 -s 311 -d 310 -p tcp -e 1000 -i 449 -a 8 + -t 51.5878 -s 311 -d 312 -p ack -e 40 -i 452 -a 9 - -t 51.5878 -s 311 -d 312 -p ack -e 40 -i 452 -a 9 h -t 51.5878 -s 311 -d 312 -p ack -e 40 -i 452 -a 9 r -t 51.5878 -s 310 -d 311 -p ack -e 40 -i 452 -a 9 r -t 51.588 -s 310 -d 308 -p tcp -e 1000 -i 449 -a 8 + -t 51.5888 -s 312 -d 311 -p tcp -e 1000 -i 457 -a 9 + -t 51.5888 -s 312 -d 311 -p tcp -e 1000 -i 458 -a 9 - -t 51.5888 -s 312 -d 311 -p tcp -e 1000 -i 457 -a 9 h -t 51.5888 -s 312 -d 311 -p tcp -e 1000 -i 457 -a 9 r -t 51.5888 -s 311 -d 312 -p ack -e 40 -i 452 -a 9 + -t 51.5896 -s 100 -d 110 -p ack -e 40 -i 479 -a 0 - -t 51.5896 -s 100 -d 110 -p ack -e 40 -i 479 -a 0 - -t 51.5896 -s 312 -d 311 -p tcp -e 1000 -i 458 -a 9 h -t 51.5896 -s 100 -d 110 -p ack -e 40 -i 479 -a 0 h -t 51.5896 -s 312 -d 311 -p tcp -e 1000 -i 458 -a 9 + -t 51.5906 -s 311 -d 310 -p tcp -e 1000 -i 457 -a 9 - -t 51.5906 -s 311 -d 310 -p tcp -e 1000 -i 457 -a 9 h -t 51.5906 -s 311 -d 310 -p tcp -e 1000 -i 457 -a 9 r -t 51.5906 -s 100 -d 110 -p ack -e 40 -i 479 -a 0 + -t 51.5907 -s 110 -d 111 -p ack -e 40 -i 479 -a 0 - -t 51.5907 -s 110 -d 111 -p ack -e 40 -i 479 -a 0 h -t 51.5907 -s 110 -d 111 -p ack -e 40 -i 479 -a 0 r -t 51.5908 -s 312 -d 311 -p tcp -e 1000 -i 457 -a 9 + -t 51.5914 -s 311 -d 310 -p tcp -e 1000 -i 458 -a 9 r -t 51.5916 -s 312 -d 311 -p tcp -e 1000 -i 458 -a 9 + -t 51.596 -s 310 -d 303 -p tcp -e 1000 -i 450 -a 3 - -t 51.596 -s 310 -d 303 -p tcp -e 1000 -i 450 -a 3 h -t 51.596 -s 310 -d 303 -p tcp -e 1000 -i 450 -a 3 r -t 51.596 -s 311 -d 310 -p tcp -e 1000 -i 450 -a 3 r -t 51.598 -s 310 -d 303 -p tcp -e 1000 -i 450 -a 3 - -t 51.6006 -s 311 -d 310 -p tcp -e 1000 -i 458 -a 9 h -t 51.6006 -s 311 -d 310 -p tcp -e 1000 -i 458 -a 9 + -t 51.6007 -s 211 -d 212 -p ack -e 40 -i 490 -a 9 - -t 51.6007 -s 211 -d 212 -p ack -e 40 -i 490 -a 9 h -t 51.6007 -s 211 -d 212 -p ack -e 40 -i 490 -a 9 r -t 51.6007 -s 210 -d 211 -p ack -e 40 -i 490 -a 9 r -t 51.6017 -s 211 -d 212 -p ack -e 40 -i 490 -a 9 + -t 51.606 -s 310 -d 303 -p tcp -e 1000 -i 451 -a 3 - -t 51.606 -s 310 -d 303 -p tcp -e 1000 -i 451 -a 3 h -t 51.606 -s 310 -d 303 -p tcp -e 1000 -i 451 -a 3 r -t 51.606 -s 311 -d 310 -p tcp -e 1000 -i 451 -a 3 + -t 51.6078 -s 303 -d 310 -p ack -e 40 -i 459 -a 3 - -t 51.6078 -s 303 -d 310 -p ack -e 40 -i 459 -a 3 h -t 51.6078 -s 303 -d 310 -p ack -e 40 -i 459 -a 3 r -t 51.608 -s 310 -d 303 -p tcp -e 1000 -i 451 -a 3 r -t 51.6088 -s 303 -d 310 -p ack -e 40 -i 459 -a 3 + -t 51.6089 -s 310 -d 311 -p ack -e 40 -i 459 -a 3 - -t 51.6089 -s 310 -d 311 -p ack -e 40 -i 459 -a 3 h -t 51.6089 -s 310 -d 311 -p ack -e 40 -i 459 -a 3 + -t 51.6092 -s 209 -d 210 -p ack -e 40 -i 492 -a 9 - -t 51.6092 -s 209 -d 210 -p ack -e 40 -i 492 -a 9 h -t 51.6092 -s 209 -d 210 -p ack -e 40 -i 492 -a 9 + -t 51.6093 -s 311 -d 312 -p ack -e 40 -i 453 -a 0 - -t 51.6093 -s 311 -d 312 -p ack -e 40 -i 453 -a 0 h -t 51.6093 -s 311 -d 312 -p ack -e 40 -i 453 -a 0 r -t 51.6093 -s 310 -d 311 -p ack -e 40 -i 453 -a 0 r -t 51.6102 -s 209 -d 210 -p ack -e 40 -i 492 -a 9 + -t 51.6103 -s 210 -d 211 -p ack -e 40 -i 492 -a 9 - -t 51.6103 -s 210 -d 211 -p ack -e 40 -i 492 -a 9 h -t 51.6103 -s 210 -d 211 -p ack -e 40 -i 492 -a 9 r -t 51.6103 -s 311 -d 312 -p ack -e 40 -i 453 -a 0 + -t 51.6178 -s 300 -d 310 -p ack -e 40 -i 460 -a 0 - -t 51.6178 -s 300 -d 310 -p ack -e 40 -i 460 -a 0 h -t 51.6178 -s 300 -d 310 -p ack -e 40 -i 460 -a 0 r -t 51.6188 -s 300 -d 310 -p ack -e 40 -i 460 -a 0 + -t 51.6189 -s 310 -d 311 -p ack -e 40 -i 460 -a 0 - -t 51.6189 -s 310 -d 311 -p ack -e 40 -i 460 -a 0 h -t 51.6189 -s 310 -d 311 -p ack -e 40 -i 460 -a 0 + -t 51.6207 -s 211 -d 212 -p ack -e 40 -i 491 -a 2 - -t 51.6207 -s 211 -d 212 -p ack -e 40 -i 491 -a 2 h -t 51.6207 -s 211 -d 212 -p ack -e 40 -i 491 -a 2 r -t 51.6207 -s 210 -d 211 -p ack -e 40 -i 491 -a 2 r -t 51.6217 -s 211 -d 212 -p ack -e 40 -i 491 -a 2 + -t 51.6339 -s 110 -d 104 -p tcp -e 1000 -i 477 -a 4 - -t 51.6339 -s 110 -d 104 -p tcp -e 1000 -i 477 -a 4 h -t 51.6339 -s 110 -d 104 -p tcp -e 1000 -i 477 -a 4 r -t 51.6339 -s 111 -d 110 -p tcp -e 1000 -i 477 -a 4 + -t 51.6357 -s 104 -d 110 -p ack -e 40 -i 480 -a 4 - -t 51.6357 -s 104 -d 110 -p ack -e 40 -i 480 -a 4 h -t 51.6357 -s 104 -d 110 -p ack -e 40 -i 480 -a 4 r -t 51.6359 -s 110 -d 104 -p tcp -e 1000 -i 477 -a 4 + -t 51.6367 -s 110 -d 111 -p ack -e 40 -i 480 -a 4 - -t 51.6367 -s 110 -d 111 -p ack -e 40 -i 480 -a 4 h -t 51.6367 -s 110 -d 111 -p ack -e 40 -i 480 -a 4 r -t 51.6367 -s 104 -d 110 -p ack -e 40 -i 480 -a 4 + -t 51.6381 -s 111 -d 112 -p ack -e 40 -i 478 -a 3 - -t 51.6381 -s 111 -d 112 -p ack -e 40 -i 478 -a 3 h -t 51.6381 -s 111 -d 112 -p ack -e 40 -i 478 -a 3 r -t 51.6381 -s 110 -d 111 -p ack -e 40 -i 478 -a 3 + -t 51.6391 -s 112 -d 111 -p tcp -e 1000 -i 481 -a 3 - -t 51.6391 -s 112 -d 111 -p tcp -e 1000 -i 481 -a 3 h -t 51.6391 -s 112 -d 111 -p tcp -e 1000 -i 481 -a 3 r -t 51.6391 -s 111 -d 112 -p ack -e 40 -i 478 -a 3 + -t 51.6409 -s 111 -d 110 -p tcp -e 1000 -i 481 -a 3 - -t 51.6409 -s 111 -d 110 -p tcp -e 1000 -i 481 -a 3 h -t 51.6409 -s 111 -d 110 -p tcp -e 1000 -i 481 -a 3 r -t 51.6411 -s 112 -d 111 -p tcp -e 1000 -i 481 -a 3 + -t 51.6466 -s 103 -d 110 -p ack -e 40 -i 482 -a 3 - -t 51.6466 -s 103 -d 110 -p ack -e 40 -i 482 -a 3 h -t 51.6466 -s 103 -d 110 -p ack -e 40 -i 482 -a 3 r -t 51.6476 -s 103 -d 110 -p ack -e 40 -i 482 -a 3 + -t 51.6477 -s 110 -d 111 -p ack -e 40 -i 482 -a 3 - -t 51.6477 -s 110 -d 111 -p ack -e 40 -i 482 -a 3 h -t 51.6477 -s 110 -d 111 -p ack -e 40 -i 482 -a 3 + -t 51.6478 -s 311 -d 312 -p ack -e 40 -i 454 -a 6 - -t 51.6478 -s 311 -d 312 -p ack -e 40 -i 454 -a 6 h -t 51.6478 -s 311 -d 312 -p ack -e 40 -i 454 -a 6 r -t 51.6478 -s 310 -d 311 -p ack -e 40 -i 454 -a 6 r -t 51.6488 -s 311 -d 312 -p ack -e 40 -i 454 -a 6 + -t 51.6593 -s 311 -d 312 -p ack -e 40 -i 455 -a 2 - -t 51.6593 -s 311 -d 312 -p ack -e 40 -i 455 -a 2 h -t 51.6593 -s 311 -d 312 -p ack -e 40 -i 455 -a 2 r -t 51.6593 -s 310 -d 311 -p ack -e 40 -i 455 -a 2 + -t 51.6603 -s 312 -d 311 -p tcp -e 1000 -i 461 -a 2 + -t 51.6603 -s 312 -d 311 -p tcp -e 1000 -i 462 -a 2 - -t 51.6603 -s 312 -d 311 -p tcp -e 1000 -i 461 -a 2 h -t 51.6603 -s 312 -d 311 -p tcp -e 1000 -i 461 -a 2 r -t 51.6603 -s 311 -d 312 -p ack -e 40 -i 455 -a 2 - -t 51.6611 -s 312 -d 311 -p tcp -e 1000 -i 462 -a 2 h -t 51.6611 -s 312 -d 311 -p tcp -e 1000 -i 462 -a 2 + -t 51.6621 -s 311 -d 310 -p tcp -e 1000 -i 461 -a 2 - -t 51.6621 -s 311 -d 310 -p tcp -e 1000 -i 461 -a 2 h -t 51.6621 -s 311 -d 310 -p tcp -e 1000 -i 461 -a 2 r -t 51.6623 -s 312 -d 311 -p tcp -e 1000 -i 461 -a 2 + -t 51.6629 -s 311 -d 310 -p tcp -e 1000 -i 462 -a 2 r -t 51.6631 -s 312 -d 311 -p tcp -e 1000 -i 462 -a 2 - -t 51.6721 -s 311 -d 310 -p tcp -e 1000 -i 462 -a 2 h -t 51.6721 -s 311 -d 310 -p tcp -e 1000 -i 462 -a 2 + -t 51.6793 -s 311 -d 312 -p ack -e 40 -i 456 -a 8 - -t 51.6793 -s 311 -d 312 -p ack -e 40 -i 456 -a 8 h -t 51.6793 -s 311 -d 312 -p ack -e 40 -i 456 -a 8 r -t 51.6793 -s 310 -d 311 -p ack -e 40 -i 456 -a 8 r -t 51.6803 -s 311 -d 312 -p ack -e 40 -i 456 -a 8 + -t 51.6878 -s 308 -d 310 -p ack -e 40 -i 463 -a 8 - -t 51.6878 -s 308 -d 310 -p ack -e 40 -i 463 -a 8 h -t 51.6878 -s 308 -d 310 -p ack -e 40 -i 463 -a 8 r -t 51.6888 -s 308 -d 310 -p ack -e 40 -i 463 -a 8 + -t 51.6889 -s 310 -d 311 -p ack -e 40 -i 463 -a 8 - -t 51.6889 -s 310 -d 311 -p ack -e 40 -i 463 -a 8 h -t 51.6889 -s 310 -d 311 -p ack -e 40 -i 463 -a 8 + -t 51.6911 -s 111 -d 112 -p ack -e 40 -i 479 -a 0 - -t 51.6911 -s 111 -d 112 -p ack -e 40 -i 479 -a 0 h -t 51.6911 -s 111 -d 112 -p ack -e 40 -i 479 -a 0 r -t 51.6911 -s 110 -d 111 -p ack -e 40 -i 479 -a 0 + -t 51.6921 -s 112 -d 111 -p tcp -e 1000 -i 483 -a 0 + -t 51.6921 -s 112 -d 111 -p tcp -e 1000 -i 484 -a 0 - -t 51.6921 -s 112 -d 111 -p tcp -e 1000 -i 483 -a 0 h -t 51.6921 -s 112 -d 111 -p tcp -e 1000 -i 483 -a 0 r -t 51.6921 -s 111 -d 112 -p ack -e 40 -i 479 -a 0 - -t 51.6929 -s 112 -d 111 -p tcp -e 1000 -i 484 -a 0 h -t 51.6929 -s 112 -d 111 -p tcp -e 1000 -i 484 -a 0 + -t 51.6939 -s 111 -d 110 -p tcp -e 1000 -i 483 -a 0 - -t 51.6939 -s 111 -d 110 -p tcp -e 1000 -i 483 -a 0 h -t 51.6939 -s 111 -d 110 -p tcp -e 1000 -i 483 -a 0 r -t 51.6941 -s 112 -d 111 -p tcp -e 1000 -i 483 -a 0 + -t 51.6947 -s 111 -d 110 -p tcp -e 1000 -i 484 -a 0 r -t 51.6949 -s 112 -d 111 -p tcp -e 1000 -i 484 -a 0 + -t 51.7006 -s 310 -d 309 -p tcp -e 1000 -i 457 -a 9 - -t 51.7006 -s 310 -d 309 -p tcp -e 1000 -i 457 -a 9 h -t 51.7006 -s 310 -d 309 -p tcp -e 1000 -i 457 -a 9 r -t 51.7006 -s 311 -d 310 -p tcp -e 1000 -i 457 -a 9 r -t 51.7026 -s 310 -d 309 -p tcp -e 1000 -i 457 -a 9 - -t 51.7039 -s 111 -d 110 -p tcp -e 1000 -i 484 -a 0 h -t 51.7039 -s 111 -d 110 -p tcp -e 1000 -i 484 -a 0 + -t 51.7093 -s 311 -d 312 -p ack -e 40 -i 459 -a 3 - -t 51.7093 -s 311 -d 312 -p ack -e 40 -i 459 -a 3 h -t 51.7093 -s 311 -d 312 -p ack -e 40 -i 459 -a 3 r -t 51.7093 -s 310 -d 311 -p ack -e 40 -i 459 -a 3 + -t 51.7103 -s 312 -d 311 -p tcp -e 1000 -i 464 -a 3 + -t 51.7103 -s 312 -d 311 -p tcp -e 1000 -i 465 -a 3 + -t 51.7103 -s 312 -d 311 -p tcp -e 1000 -i 466 -a 3 - -t 51.7103 -s 312 -d 311 -p tcp -e 1000 -i 464 -a 3 h -t 51.7103 -s 312 -d 311 -p tcp -e 1000 -i 464 -a 3 r -t 51.7103 -s 311 -d 312 -p ack -e 40 -i 459 -a 3 + -t 51.7106 -s 310 -d 309 -p tcp -e 1000 -i 458 -a 9 - -t 51.7106 -s 310 -d 309 -p tcp -e 1000 -i 458 -a 9 h -t 51.7106 -s 310 -d 309 -p tcp -e 1000 -i 458 -a 9 r -t 51.7106 -s 311 -d 310 -p tcp -e 1000 -i 458 -a 9 + -t 51.7107 -s 211 -d 212 -p ack -e 40 -i 492 -a 9 - -t 51.7107 -s 211 -d 212 -p ack -e 40 -i 492 -a 9 h -t 51.7107 -s 211 -d 212 -p ack -e 40 -i 492 -a 9 r -t 51.7107 -s 210 -d 211 -p ack -e 40 -i 492 -a 9 - -t 51.7111 -s 312 -d 311 -p tcp -e 1000 -i 465 -a 3 h -t 51.7111 -s 312 -d 311 -p tcp -e 1000 -i 465 -a 3 r -t 51.7117 -s 211 -d 212 -p ack -e 40 -i 492 -a 9 - -t 51.7119 -s 312 -d 311 -p tcp -e 1000 -i 466 -a 3 h -t 51.7119 -s 312 -d 311 -p tcp -e 1000 -i 466 -a 3 + -t 51.7121 -s 311 -d 310 -p tcp -e 1000 -i 464 -a 3 - -t 51.7121 -s 311 -d 310 -p tcp -e 1000 -i 464 -a 3 h -t 51.7121 -s 311 -d 310 -p tcp -e 1000 -i 464 -a 3 r -t 51.7123 -s 312 -d 311 -p tcp -e 1000 -i 464 -a 3 + -t 51.7124 -s 309 -d 310 -p ack -e 40 -i 467 -a 9 - -t 51.7124 -s 309 -d 310 -p ack -e 40 -i 467 -a 9 h -t 51.7124 -s 309 -d 310 -p ack -e 40 -i 467 -a 9 r -t 51.7126 -s 310 -d 309 -p tcp -e 1000 -i 458 -a 9 + -t 51.7129 -s 311 -d 310 -p tcp -e 1000 -i 465 -a 3 r -t 51.7131 -s 312 -d 311 -p tcp -e 1000 -i 465 -a 3 + -t 51.7134 -s 310 -d 311 -p ack -e 40 -i 467 -a 9 - -t 51.7134 -s 310 -d 311 -p ack -e 40 -i 467 -a 9 h -t 51.7134 -s 310 -d 311 -p ack -e 40 -i 467 -a 9 r -t 51.7134 -s 309 -d 310 -p ack -e 40 -i 467 -a 9 + -t 51.7137 -s 311 -d 310 -p tcp -e 1000 -i 466 -a 3 r -t 51.7139 -s 312 -d 311 -p tcp -e 1000 -i 466 -a 3 + -t 51.7193 -s 311 -d 312 -p ack -e 40 -i 460 -a 0 - -t 51.7193 -s 311 -d 312 -p ack -e 40 -i 460 -a 0 h -t 51.7193 -s 311 -d 312 -p ack -e 40 -i 460 -a 0 r -t 51.7193 -s 310 -d 311 -p ack -e 40 -i 460 -a 0 r -t 51.7203 -s 311 -d 312 -p ack -e 40 -i 460 -a 0 - -t 51.7221 -s 311 -d 310 -p tcp -e 1000 -i 465 -a 3 h -t 51.7221 -s 311 -d 310 -p tcp -e 1000 -i 465 -a 3 - -t 51.7321 -s 311 -d 310 -p tcp -e 1000 -i 466 -a 3 h -t 51.7321 -s 311 -d 310 -p tcp -e 1000 -i 466 -a 3 + -t 51.7371 -s 111 -d 112 -p ack -e 40 -i 480 -a 4 - -t 51.7371 -s 111 -d 112 -p ack -e 40 -i 480 -a 4 h -t 51.7371 -s 111 -d 112 -p ack -e 40 -i 480 -a 4 r -t 51.7371 -s 110 -d 111 -p ack -e 40 -i 480 -a 4 r -t 51.7381 -s 111 -d 112 -p ack -e 40 -i 480 -a 4 + -t 51.7481 -s 111 -d 112 -p ack -e 40 -i 482 -a 3 - -t 51.7481 -s 111 -d 112 -p ack -e 40 -i 482 -a 3 h -t 51.7481 -s 111 -d 112 -p ack -e 40 -i 482 -a 3 r -t 51.7481 -s 110 -d 111 -p ack -e 40 -i 482 -a 3 r -t 51.7491 -s 111 -d 112 -p ack -e 40 -i 482 -a 3 + -t 51.7509 -s 110 -d 103 -p tcp -e 1000 -i 481 -a 3 - -t 51.7509 -s 110 -d 103 -p tcp -e 1000 -i 481 -a 3 h -t 51.7509 -s 110 -d 103 -p tcp -e 1000 -i 481 -a 3 r -t 51.7509 -s 111 -d 110 -p tcp -e 1000 -i 481 -a 3 r -t 51.7529 -s 110 -d 103 -p tcp -e 1000 -i 481 -a 3 + -t 51.7721 -s 310 -d 302 -p tcp -e 1000 -i 461 -a 2 - -t 51.7721 -s 310 -d 302 -p tcp -e 1000 -i 461 -a 2 h -t 51.7721 -s 310 -d 302 -p tcp -e 1000 -i 461 -a 2 r -t 51.7721 -s 311 -d 310 -p tcp -e 1000 -i 461 -a 2 r -t 51.7741 -s 310 -d 302 -p tcp -e 1000 -i 461 -a 2 + -t 51.7821 -s 310 -d 302 -p tcp -e 1000 -i 462 -a 2 - -t 51.7821 -s 310 -d 302 -p tcp -e 1000 -i 462 -a 2 h -t 51.7821 -s 310 -d 302 -p tcp -e 1000 -i 462 -a 2 r -t 51.7821 -s 311 -d 310 -p tcp -e 1000 -i 462 -a 2 + -t 51.7839 -s 302 -d 310 -p ack -e 40 -i 468 -a 2 - -t 51.7839 -s 302 -d 310 -p ack -e 40 -i 468 -a 2 h -t 51.7839 -s 302 -d 310 -p ack -e 40 -i 468 -a 2 r -t 51.7841 -s 310 -d 302 -p tcp -e 1000 -i 462 -a 2 + -t 51.7849 -s 310 -d 311 -p ack -e 40 -i 468 -a 2 - -t 51.7849 -s 310 -d 311 -p ack -e 40 -i 468 -a 2 h -t 51.7849 -s 310 -d 311 -p ack -e 40 -i 468 -a 2 r -t 51.7849 -s 302 -d 310 -p ack -e 40 -i 468 -a 2 + -t 51.7893 -s 311 -d 312 -p ack -e 40 -i 463 -a 8 - -t 51.7893 -s 311 -d 312 -p ack -e 40 -i 463 -a 8 h -t 51.7893 -s 311 -d 312 -p ack -e 40 -i 463 -a 8 r -t 51.7893 -s 310 -d 311 -p ack -e 40 -i 463 -a 8 r -t 51.7903 -s 311 -d 312 -p ack -e 40 -i 463 -a 8 + -t 51.8039 -s 110 -d 100 -p tcp -e 1000 -i 483 -a 0 - -t 51.8039 -s 110 -d 100 -p tcp -e 1000 -i 483 -a 0 h -t 51.8039 -s 110 -d 100 -p tcp -e 1000 -i 483 -a 0 r -t 51.8039 -s 111 -d 110 -p tcp -e 1000 -i 483 -a 0 + -t 51.8057 -s 100 -d 110 -p ack -e 40 -i 485 -a 0 - -t 51.8057 -s 100 -d 110 -p ack -e 40 -i 485 -a 0 h -t 51.8057 -s 100 -d 110 -p ack -e 40 -i 485 -a 0 r -t 51.8059 -s 110 -d 100 -p tcp -e 1000 -i 483 -a 0 + -t 51.8067 -s 110 -d 111 -p ack -e 40 -i 485 -a 0 - -t 51.8067 -s 110 -d 111 -p ack -e 40 -i 485 -a 0 h -t 51.8067 -s 110 -d 111 -p ack -e 40 -i 485 -a 0 r -t 51.8067 -s 100 -d 110 -p ack -e 40 -i 485 -a 0 + -t 51.8138 -s 311 -d 312 -p ack -e 40 -i 467 -a 9 - -t 51.8138 -s 311 -d 312 -p ack -e 40 -i 467 -a 9 h -t 51.8138 -s 311 -d 312 -p ack -e 40 -i 467 -a 9 r -t 51.8138 -s 310 -d 311 -p ack -e 40 -i 467 -a 9 + -t 51.8139 -s 110 -d 100 -p tcp -e 1000 -i 484 -a 0 - -t 51.8139 -s 110 -d 100 -p tcp -e 1000 -i 484 -a 0 h -t 51.8139 -s 110 -d 100 -p tcp -e 1000 -i 484 -a 0 r -t 51.8139 -s 111 -d 110 -p tcp -e 1000 -i 484 -a 0 r -t 51.8148 -s 311 -d 312 -p ack -e 40 -i 467 -a 9 + -t 51.8149 -s 312 -d 311 -p tcp -e 1000 -i 469 -a 9 + -t 51.8149 -s 312 -d 311 -p tcp -e 1000 -i 470 -a 9 + -t 51.8149 -s 312 -d 311 -p tcp -e 1000 -i 471 -a 9 - -t 51.8149 -s 312 -d 311 -p tcp -e 1000 -i 469 -a 9 h -t 51.8149 -s 312 -d 311 -p tcp -e 1000 -i 469 -a 9 - -t 51.8157 -s 312 -d 311 -p tcp -e 1000 -i 470 -a 9 h -t 51.8157 -s 312 -d 311 -p tcp -e 1000 -i 470 -a 9 r -t 51.8159 -s 110 -d 100 -p tcp -e 1000 -i 484 -a 0 - -t 51.8165 -s 312 -d 311 -p tcp -e 1000 -i 471 -a 9 h -t 51.8165 -s 312 -d 311 -p tcp -e 1000 -i 471 -a 9 + -t 51.8167 -s 311 -d 310 -p tcp -e 1000 -i 469 -a 9 - -t 51.8167 -s 311 -d 310 -p tcp -e 1000 -i 469 -a 9 h -t 51.8167 -s 311 -d 310 -p tcp -e 1000 -i 469 -a 9 r -t 51.8169 -s 312 -d 311 -p tcp -e 1000 -i 469 -a 9 + -t 51.8175 -s 311 -d 310 -p tcp -e 1000 -i 470 -a 9 r -t 51.8177 -s 312 -d 311 -p tcp -e 1000 -i 470 -a 9 + -t 51.8183 -s 311 -d 310 -p tcp -e 1000 -i 471 -a 9 r -t 51.8185 -s 312 -d 311 -p tcp -e 1000 -i 471 -a 9 + -t 51.8221 -s 310 -d 303 -p tcp -e 1000 -i 464 -a 3 - -t 51.8221 -s 310 -d 303 -p tcp -e 1000 -i 464 -a 3 h -t 51.8221 -s 310 -d 303 -p tcp -e 1000 -i 464 -a 3 r -t 51.8221 -s 311 -d 310 -p tcp -e 1000 -i 464 -a 3 r -t 51.8241 -s 310 -d 303 -p tcp -e 1000 -i 464 -a 3 - -t 51.8267 -s 311 -d 310 -p tcp -e 1000 -i 470 -a 9 h -t 51.8267 -s 311 -d 310 -p tcp -e 1000 -i 470 -a 9 + -t 51.8321 -s 310 -d 303 -p tcp -e 1000 -i 465 -a 3 - -t 51.8321 -s 310 -d 303 -p tcp -e 1000 -i 465 -a 3 h -t 51.8321 -s 310 -d 303 -p tcp -e 1000 -i 465 -a 3 r -t 51.8321 -s 311 -d 310 -p tcp -e 1000 -i 465 -a 3 + -t 51.8339 -s 303 -d 310 -p ack -e 40 -i 472 -a 3 - -t 51.8339 -s 303 -d 310 -p ack -e 40 -i 472 -a 3 h -t 51.8339 -s 303 -d 310 -p ack -e 40 -i 472 -a 3 r -t 51.8341 -s 310 -d 303 -p tcp -e 1000 -i 465 -a 3 + -t 51.8349 -s 310 -d 311 -p ack -e 40 -i 472 -a 3 - -t 51.8349 -s 310 -d 311 -p ack -e 40 -i 472 -a 3 h -t 51.8349 -s 310 -d 311 -p ack -e 40 -i 472 -a 3 r -t 51.8349 -s 303 -d 310 -p ack -e 40 -i 472 -a 3 - -t 51.8367 -s 311 -d 310 -p tcp -e 1000 -i 471 -a 9 h -t 51.8367 -s 311 -d 310 -p tcp -e 1000 -i 471 -a 9 + -t 51.8421 -s 310 -d 303 -p tcp -e 1000 -i 466 -a 3 - -t 51.8421 -s 310 -d 303 -p tcp -e 1000 -i 466 -a 3 h -t 51.8421 -s 310 -d 303 -p tcp -e 1000 -i 466 -a 3 r -t 51.8421 -s 311 -d 310 -p tcp -e 1000 -i 466 -a 3 r -t 51.8441 -s 310 -d 303 -p tcp -e 1000 -i 466 -a 3 + -t 51.8527 -s 103 -d 110 -p ack -e 40 -i 486 -a 3 - -t 51.8527 -s 103 -d 110 -p ack -e 40 -i 486 -a 3 h -t 51.8527 -s 103 -d 110 -p ack -e 40 -i 486 -a 3 + -t 51.8537 -s 110 -d 111 -p ack -e 40 -i 486 -a 3 - -t 51.8537 -s 110 -d 111 -p ack -e 40 -i 486 -a 3 h -t 51.8537 -s 110 -d 111 -p ack -e 40 -i 486 -a 3 r -t 51.8537 -s 103 -d 110 -p ack -e 40 -i 486 -a 3 + -t 51.8853 -s 311 -d 312 -p ack -e 40 -i 468 -a 2 - -t 51.8853 -s 311 -d 312 -p ack -e 40 -i 468 -a 2 h -t 51.8853 -s 311 -d 312 -p ack -e 40 -i 468 -a 2 r -t 51.8853 -s 310 -d 311 -p ack -e 40 -i 468 -a 2 + -t 51.8863 -s 312 -d 311 -p tcp -e 1000 -i 473 -a 2 + -t 51.8863 -s 312 -d 311 -p tcp -e 1000 -i 474 -a 2 + -t 51.8863 -s 312 -d 311 -p tcp -e 1000 -i 475 -a 2 - -t 51.8863 -s 312 -d 311 -p tcp -e 1000 -i 473 -a 2 h -t 51.8863 -s 312 -d 311 -p tcp -e 1000 -i 473 -a 2 r -t 51.8863 -s 311 -d 312 -p ack -e 40 -i 468 -a 2 - -t 51.8871 -s 312 -d 311 -p tcp -e 1000 -i 474 -a 2 h -t 51.8871 -s 312 -d 311 -p tcp -e 1000 -i 474 -a 2 - -t 51.8879 -s 312 -d 311 -p tcp -e 1000 -i 475 -a 2 h -t 51.8879 -s 312 -d 311 -p tcp -e 1000 -i 475 -a 2 + -t 51.8881 -s 311 -d 310 -p tcp -e 1000 -i 473 -a 2 - -t 51.8881 -s 311 -d 310 -p tcp -e 1000 -i 473 -a 2 h -t 51.8881 -s 311 -d 310 -p tcp -e 1000 -i 473 -a 2 r -t 51.8883 -s 312 -d 311 -p tcp -e 1000 -i 473 -a 2 + -t 51.8889 -s 311 -d 310 -p tcp -e 1000 -i 474 -a 2 r -t 51.8891 -s 312 -d 311 -p tcp -e 1000 -i 474 -a 2 + -t 51.8897 -s 311 -d 310 -p tcp -e 1000 -i 475 -a 2 r -t 51.8899 -s 312 -d 311 -p tcp -e 1000 -i 475 -a 2 - -t 51.8981 -s 311 -d 310 -p tcp -e 1000 -i 474 -a 2 h -t 51.8981 -s 311 -d 310 -p tcp -e 1000 -i 474 -a 2 + -t 51.9071 -s 111 -d 112 -p ack -e 40 -i 485 -a 0 - -t 51.9071 -s 111 -d 112 -p ack -e 40 -i 485 -a 0 h -t 51.9071 -s 111 -d 112 -p ack -e 40 -i 485 -a 0 r -t 51.9071 -s 110 -d 111 -p ack -e 40 -i 485 -a 0 - -t 51.9081 -s 311 -d 310 -p tcp -e 1000 -i 475 -a 2 h -t 51.9081 -s 311 -d 310 -p tcp -e 1000 -i 475 -a 2 r -t 51.9081 -s 111 -d 112 -p ack -e 40 -i 485 -a 0 + -t 51.9082 -s 112 -d 111 -p tcp -e 1000 -i 487 -a 0 - -t 51.9082 -s 112 -d 111 -p tcp -e 1000 -i 487 -a 0 h -t 51.9082 -s 112 -d 111 -p tcp -e 1000 -i 487 -a 0 + -t 51.91 -s 111 -d 110 -p tcp -e 1000 -i 487 -a 0 - -t 51.91 -s 111 -d 110 -p tcp -e 1000 -i 487 -a 0 h -t 51.91 -s 111 -d 110 -p tcp -e 1000 -i 487 -a 0 r -t 51.9102 -s 112 -d 111 -p tcp -e 1000 -i 487 -a 0 + -t 51.9157 -s 100 -d 110 -p ack -e 40 -i 488 -a 0 - -t 51.9157 -s 100 -d 110 -p ack -e 40 -i 488 -a 0 h -t 51.9157 -s 100 -d 110 -p ack -e 40 -i 488 -a 0 + -t 51.9167 -s 110 -d 111 -p ack -e 40 -i 488 -a 0 - -t 51.9167 -s 110 -d 111 -p ack -e 40 -i 488 -a 0 h -t 51.9167 -s 110 -d 111 -p ack -e 40 -i 488 -a 0 r -t 51.9167 -s 100 -d 110 -p ack -e 40 -i 488 -a 0 + -t 51.9267 -s 310 -d 309 -p tcp -e 1000 -i 469 -a 9 - -t 51.9267 -s 310 -d 309 -p tcp -e 1000 -i 469 -a 9 h -t 51.9267 -s 310 -d 309 -p tcp -e 1000 -i 469 -a 9 r -t 51.9267 -s 311 -d 310 -p tcp -e 1000 -i 469 -a 9 r -t 51.9287 -s 310 -d 309 -p tcp -e 1000 -i 469 -a 9 + -t 51.9353 -s 311 -d 312 -p ack -e 40 -i 472 -a 3 - -t 51.9353 -s 311 -d 312 -p ack -e 40 -i 472 -a 3 h -t 51.9353 -s 311 -d 312 -p ack -e 40 -i 472 -a 3 r -t 51.9353 -s 310 -d 311 -p ack -e 40 -i 472 -a 3 r -t 51.9363 -s 311 -d 312 -p ack -e 40 -i 472 -a 3 + -t 51.9367 -s 310 -d 309 -p tcp -e 1000 -i 470 -a 9 - -t 51.9367 -s 310 -d 309 -p tcp -e 1000 -i 470 -a 9 h -t 51.9367 -s 310 -d 309 -p tcp -e 1000 -i 470 -a 9 r -t 51.9367 -s 311 -d 310 -p tcp -e 1000 -i 470 -a 9 + -t 51.9385 -s 309 -d 310 -p ack -e 40 -i 476 -a 9 - -t 51.9385 -s 309 -d 310 -p ack -e 40 -i 476 -a 9 h -t 51.9385 -s 309 -d 310 -p ack -e 40 -i 476 -a 9 r -t 51.9387 -s 310 -d 309 -p tcp -e 1000 -i 470 -a 9 + -t 51.9395 -s 310 -d 311 -p ack -e 40 -i 476 -a 9 - -t 51.9395 -s 310 -d 311 -p ack -e 40 -i 476 -a 9 h -t 51.9395 -s 310 -d 311 -p ack -e 40 -i 476 -a 9 r -t 51.9395 -s 309 -d 310 -p ack -e 40 -i 476 -a 9 + -t 51.9439 -s 303 -d 310 -p ack -e 40 -i 477 -a 3 - -t 51.9439 -s 303 -d 310 -p ack -e 40 -i 477 -a 3 h -t 51.9439 -s 303 -d 310 -p ack -e 40 -i 477 -a 3 + -t 51.9449 -s 310 -d 311 -p ack -e 40 -i 477 -a 3 - -t 51.9449 -s 310 -d 311 -p ack -e 40 -i 477 -a 3 h -t 51.9449 -s 310 -d 311 -p ack -e 40 -i 477 -a 3 r -t 51.9449 -s 303 -d 310 -p ack -e 40 -i 477 -a 3 + -t 51.9467 -s 310 -d 309 -p tcp -e 1000 -i 471 -a 9 - -t 51.9467 -s 310 -d 309 -p tcp -e 1000 -i 471 -a 9 h -t 51.9467 -s 310 -d 309 -p tcp -e 1000 -i 471 -a 9 r -t 51.9467 -s 311 -d 310 -p tcp -e 1000 -i 471 -a 9 r -t 51.9487 -s 310 -d 309 -p tcp -e 1000 -i 471 -a 9 + -t 51.9541 -s 111 -d 112 -p ack -e 40 -i 486 -a 3 - -t 51.9541 -s 111 -d 112 -p ack -e 40 -i 486 -a 3 h -t 51.9541 -s 111 -d 112 -p ack -e 40 -i 486 -a 3 r -t 51.9541 -s 110 -d 111 -p ack -e 40 -i 486 -a 3 r -t 51.9551 -s 111 -d 112 -p ack -e 40 -i 486 -a 3 + -t 51.9981 -s 310 -d 302 -p tcp -e 1000 -i 473 -a 2 - -t 51.9981 -s 310 -d 302 -p tcp -e 1000 -i 473 -a 2 h -t 51.9981 -s 310 -d 302 -p tcp -e 1000 -i 473 -a 2 r -t 51.9981 -s 311 -d 310 -p tcp -e 1000 -i 473 -a 2 r -t 52.0001 -s 310 -d 302 -p tcp -e 1000 -i 473 -a 2 + -t 52.0081 -s 310 -d 302 -p tcp -e 1000 -i 474 -a 2 - -t 52.0081 -s 310 -d 302 -p tcp -e 1000 -i 474 -a 2 h -t 52.0081 -s 310 -d 302 -p tcp -e 1000 -i 474 -a 2 r -t 52.0081 -s 311 -d 310 -p tcp -e 1000 -i 474 -a 2 + -t 52.0099 -s 302 -d 310 -p ack -e 40 -i 478 -a 2 - -t 52.0099 -s 302 -d 310 -p ack -e 40 -i 478 -a 2 h -t 52.0099 -s 302 -d 310 -p ack -e 40 -i 478 -a 2 r -t 52.0101 -s 310 -d 302 -p tcp -e 1000 -i 474 -a 2 r -t 52.0109 -s 302 -d 310 -p ack -e 40 -i 478 -a 2 + -t 52.011 -s 310 -d 311 -p ack -e 40 -i 478 -a 2 - -t 52.011 -s 310 -d 311 -p ack -e 40 -i 478 -a 2 h -t 52.011 -s 310 -d 311 -p ack -e 40 -i 478 -a 2 + -t 52.0171 -s 111 -d 112 -p ack -e 40 -i 488 -a 0 - -t 52.0171 -s 111 -d 112 -p ack -e 40 -i 488 -a 0 h -t 52.0171 -s 111 -d 112 -p ack -e 40 -i 488 -a 0 r -t 52.0171 -s 110 -d 111 -p ack -e 40 -i 488 -a 0 + -t 52.0181 -s 310 -d 302 -p tcp -e 1000 -i 475 -a 2 - -t 52.0181 -s 310 -d 302 -p tcp -e 1000 -i 475 -a 2 h -t 52.0181 -s 310 -d 302 -p tcp -e 1000 -i 475 -a 2 r -t 52.0181 -s 111 -d 112 -p ack -e 40 -i 488 -a 0 r -t 52.0181 -s 311 -d 310 -p tcp -e 1000 -i 475 -a 2 + -t 52.02 -s 110 -d 100 -p tcp -e 1000 -i 487 -a 0 - -t 52.02 -s 110 -d 100 -p tcp -e 1000 -i 487 -a 0 h -t 52.02 -s 110 -d 100 -p tcp -e 1000 -i 487 -a 0 r -t 52.02 -s 111 -d 110 -p tcp -e 1000 -i 487 -a 0 r -t 52.0201 -s 310 -d 302 -p tcp -e 1000 -i 475 -a 2 r -t 52.022 -s 110 -d 100 -p tcp -e 1000 -i 487 -a 0 + -t 52.0399 -s 311 -d 312 -p ack -e 40 -i 476 -a 9 - -t 52.0399 -s 311 -d 312 -p ack -e 40 -i 476 -a 9 h -t 52.0399 -s 311 -d 312 -p ack -e 40 -i 476 -a 9 r -t 52.0399 -s 310 -d 311 -p ack -e 40 -i 476 -a 9 r -t 52.0409 -s 311 -d 312 -p ack -e 40 -i 476 -a 9 + -t 52.0453 -s 311 -d 312 -p ack -e 40 -i 477 -a 3 - -t 52.0453 -s 311 -d 312 -p ack -e 40 -i 477 -a 3 h -t 52.0453 -s 311 -d 312 -p ack -e 40 -i 477 -a 3 r -t 52.0453 -s 310 -d 311 -p ack -e 40 -i 477 -a 3 r -t 52.0463 -s 311 -d 312 -p ack -e 40 -i 477 -a 3 + -t 52.0485 -s 309 -d 310 -p ack -e 40 -i 479 -a 9 - -t 52.0485 -s 309 -d 310 -p ack -e 40 -i 479 -a 9 h -t 52.0485 -s 309 -d 310 -p ack -e 40 -i 479 -a 9 + -t 52.0495 -s 310 -d 311 -p ack -e 40 -i 479 -a 9 - -t 52.0495 -s 310 -d 311 -p ack -e 40 -i 479 -a 9 h -t 52.0495 -s 310 -d 311 -p ack -e 40 -i 479 -a 9 r -t 52.0495 -s 309 -d 310 -p ack -e 40 -i 479 -a 9 + -t 52.1114 -s 311 -d 312 -p ack -e 40 -i 478 -a 2 - -t 52.1114 -s 311 -d 312 -p ack -e 40 -i 478 -a 2 h -t 52.1114 -s 311 -d 312 -p ack -e 40 -i 478 -a 2 r -t 52.1114 -s 310 -d 311 -p ack -e 40 -i 478 -a 2 r -t 52.1124 -s 311 -d 312 -p ack -e 40 -i 478 -a 2 + -t 52.1199 -s 302 -d 310 -p ack -e 40 -i 480 -a 2 - -t 52.1199 -s 302 -d 310 -p ack -e 40 -i 480 -a 2 h -t 52.1199 -s 302 -d 310 -p ack -e 40 -i 480 -a 2 r -t 52.1209 -s 302 -d 310 -p ack -e 40 -i 480 -a 2 + -t 52.121 -s 310 -d 311 -p ack -e 40 -i 480 -a 2 - -t 52.121 -s 310 -d 311 -p ack -e 40 -i 480 -a 2 h -t 52.121 -s 310 -d 311 -p ack -e 40 -i 480 -a 2 + -t 52.1218 -s 100 -d 110 -p ack -e 40 -i 489 -a 0 - -t 52.1218 -s 100 -d 110 -p ack -e 40 -i 489 -a 0 h -t 52.1218 -s 100 -d 110 -p ack -e 40 -i 489 -a 0 + -t 52.1228 -s 110 -d 111 -p ack -e 40 -i 489 -a 0 - -t 52.1228 -s 110 -d 111 -p ack -e 40 -i 489 -a 0 h -t 52.1228 -s 110 -d 111 -p ack -e 40 -i 489 -a 0 r -t 52.1228 -s 100 -d 110 -p ack -e 40 -i 489 -a 0 + -t 52.1499 -s 311 -d 312 -p ack -e 40 -i 479 -a 9 - -t 52.1499 -s 311 -d 312 -p ack -e 40 -i 479 -a 9 h -t 52.1499 -s 311 -d 312 -p ack -e 40 -i 479 -a 9 r -t 52.1499 -s 310 -d 311 -p ack -e 40 -i 479 -a 9 r -t 52.1509 -s 311 -d 312 -p ack -e 40 -i 479 -a 9 + -t 52.2214 -s 311 -d 312 -p ack -e 40 -i 480 -a 2 - -t 52.2214 -s 311 -d 312 -p ack -e 40 -i 480 -a 2 h -t 52.2214 -s 311 -d 312 -p ack -e 40 -i 480 -a 2 r -t 52.2214 -s 310 -d 311 -p ack -e 40 -i 480 -a 2 r -t 52.2224 -s 311 -d 312 -p ack -e 40 -i 480 -a 2 + -t 52.2232 -s 111 -d 112 -p ack -e 40 -i 489 -a 0 - -t 52.2232 -s 111 -d 112 -p ack -e 40 -i 489 -a 0 h -t 52.2232 -s 111 -d 112 -p ack -e 40 -i 489 -a 0 r -t 52.2232 -s 110 -d 111 -p ack -e 40 -i 489 -a 0 r -t 52.2242 -s 111 -d 112 -p ack -e 40 -i 489 -a 0 + -t 52.606 -s 112 -d 111 -p tcp -e 1000 -i 490 -a 8 - -t 52.606 -s 112 -d 111 -p tcp -e 1000 -i 490 -a 8 h -t 52.606 -s 112 -d 111 -p tcp -e 1000 -i 490 -a 8 + -t 52.6078 -s 111 -d 110 -p tcp -e 1000 -i 490 -a 8 - -t 52.6078 -s 111 -d 110 -p tcp -e 1000 -i 490 -a 8 h -t 52.6078 -s 111 -d 110 -p tcp -e 1000 -i 490 -a 8 r -t 52.608 -s 112 -d 111 -p tcp -e 1000 -i 490 -a 8 + -t 52.7178 -s 110 -d 108 -p tcp -e 1000 -i 490 -a 8 - -t 52.7178 -s 110 -d 108 -p tcp -e 1000 -i 490 -a 8 h -t 52.7178 -s 110 -d 108 -p tcp -e 1000 -i 490 -a 8 r -t 52.7178 -s 111 -d 110 -p tcp -e 1000 -i 490 -a 8 + -t 52.7196 -s 108 -d 110 -p ack -e 40 -i 491 -a 8 - -t 52.7196 -s 108 -d 110 -p ack -e 40 -i 491 -a 8 h -t 52.7196 -s 108 -d 110 -p ack -e 40 -i 491 -a 8 r -t 52.7198 -s 110 -d 108 -p tcp -e 1000 -i 490 -a 8 r -t 52.7206 -s 108 -d 110 -p ack -e 40 -i 491 -a 8 + -t 52.7207 -s 110 -d 111 -p ack -e 40 -i 491 -a 8 - -t 52.7207 -s 110 -d 111 -p ack -e 40 -i 491 -a 8 h -t 52.7207 -s 110 -d 111 -p ack -e 40 -i 491 -a 8 + -t 52.8211 -s 111 -d 112 -p ack -e 40 -i 491 -a 8 - -t 52.8211 -s 111 -d 112 -p ack -e 40 -i 491 -a 8 h -t 52.8211 -s 111 -d 112 -p ack -e 40 -i 491 -a 8 r -t 52.8211 -s 110 -d 111 -p ack -e 40 -i 491 -a 8 + -t 52.8221 -s 112 -d 111 -p tcp -e 1000 -i 492 -a 8 + -t 52.8221 -s 112 -d 111 -p tcp -e 1000 -i 493 -a 8 - -t 52.8221 -s 112 -d 111 -p tcp -e 1000 -i 492 -a 8 h -t 52.8221 -s 112 -d 111 -p tcp -e 1000 -i 492 -a 8 r -t 52.8221 -s 111 -d 112 -p ack -e 40 -i 491 -a 8 - -t 52.8229 -s 112 -d 111 -p tcp -e 1000 -i 493 -a 8 h -t 52.8229 -s 112 -d 111 -p tcp -e 1000 -i 493 -a 8 + -t 52.8239 -s 111 -d 110 -p tcp -e 1000 -i 492 -a 8 - -t 52.8239 -s 111 -d 110 -p tcp -e 1000 -i 492 -a 8 h -t 52.8239 -s 111 -d 110 -p tcp -e 1000 -i 492 -a 8 r -t 52.8241 -s 112 -d 111 -p tcp -e 1000 -i 492 -a 8 + -t 52.8247 -s 111 -d 110 -p tcp -e 1000 -i 493 -a 8 r -t 52.8249 -s 112 -d 111 -p tcp -e 1000 -i 493 -a 8 - -t 52.8339 -s 111 -d 110 -p tcp -e 1000 -i 493 -a 8 h -t 52.8339 -s 111 -d 110 -p tcp -e 1000 -i 493 -a 8 + -t 52.9339 -s 110 -d 108 -p tcp -e 1000 -i 492 -a 8 - -t 52.9339 -s 110 -d 108 -p tcp -e 1000 -i 492 -a 8 h -t 52.9339 -s 110 -d 108 -p tcp -e 1000 -i 492 -a 8 r -t 52.9339 -s 111 -d 110 -p tcp -e 1000 -i 492 -a 8 r -t 52.9359 -s 110 -d 108 -p tcp -e 1000 -i 492 -a 8 + -t 52.9439 -s 110 -d 108 -p tcp -e 1000 -i 493 -a 8 - -t 52.9439 -s 110 -d 108 -p tcp -e 1000 -i 493 -a 8 h -t 52.9439 -s 110 -d 108 -p tcp -e 1000 -i 493 -a 8 r -t 52.9439 -s 111 -d 110 -p tcp -e 1000 -i 493 -a 8 + -t 52.9457 -s 108 -d 110 -p ack -e 40 -i 494 -a 8 - -t 52.9457 -s 108 -d 110 -p ack -e 40 -i 494 -a 8 h -t 52.9457 -s 108 -d 110 -p ack -e 40 -i 494 -a 8 r -t 52.9459 -s 110 -d 108 -p tcp -e 1000 -i 493 -a 8 + -t 52.9467 -s 110 -d 111 -p ack -e 40 -i 494 -a 8 - -t 52.9467 -s 110 -d 111 -p ack -e 40 -i 494 -a 8 h -t 52.9467 -s 110 -d 111 -p ack -e 40 -i 494 -a 8 r -t 52.9467 -s 108 -d 110 -p ack -e 40 -i 494 -a 8 + -t 53.0471 -s 111 -d 112 -p ack -e 40 -i 494 -a 8 - -t 53.0471 -s 111 -d 112 -p ack -e 40 -i 494 -a 8 h -t 53.0471 -s 111 -d 112 -p ack -e 40 -i 494 -a 8 r -t 53.0471 -s 110 -d 111 -p ack -e 40 -i 494 -a 8 r -t 53.0481 -s 111 -d 112 -p ack -e 40 -i 494 -a 8 + -t 53.0482 -s 112 -d 111 -p tcp -e 1000 -i 495 -a 8 + -t 53.0482 -s 112 -d 111 -p tcp -e 1000 -i 496 -a 8 - -t 53.0482 -s 112 -d 111 -p tcp -e 1000 -i 495 -a 8 h -t 53.0482 -s 112 -d 111 -p tcp -e 1000 -i 495 -a 8 - -t 53.049 -s 112 -d 111 -p tcp -e 1000 -i 496 -a 8 h -t 53.049 -s 112 -d 111 -p tcp -e 1000 -i 496 -a 8 + -t 53.05 -s 111 -d 110 -p tcp -e 1000 -i 495 -a 8 - -t 53.05 -s 111 -d 110 -p tcp -e 1000 -i 495 -a 8 h -t 53.05 -s 111 -d 110 -p tcp -e 1000 -i 495 -a 8 r -t 53.0502 -s 112 -d 111 -p tcp -e 1000 -i 495 -a 8 + -t 53.0508 -s 111 -d 110 -p tcp -e 1000 -i 496 -a 8 r -t 53.051 -s 112 -d 111 -p tcp -e 1000 -i 496 -a 8 - -t 53.06 -s 111 -d 110 -p tcp -e 1000 -i 496 -a 8 h -t 53.06 -s 111 -d 110 -p tcp -e 1000 -i 496 -a 8 + -t 53.16 -s 110 -d 108 -p tcp -e 1000 -i 495 -a 8 - -t 53.16 -s 110 -d 108 -p tcp -e 1000 -i 495 -a 8 h -t 53.16 -s 110 -d 108 -p tcp -e 1000 -i 495 -a 8 r -t 53.16 -s 111 -d 110 -p tcp -e 1000 -i 495 -a 8 r -t 53.162 -s 110 -d 108 -p tcp -e 1000 -i 495 -a 8 + -t 53.17 -s 110 -d 108 -p tcp -e 1000 -i 496 -a 8 - -t 53.17 -s 110 -d 108 -p tcp -e 1000 -i 496 -a 8 h -t 53.17 -s 110 -d 108 -p tcp -e 1000 -i 496 -a 8 r -t 53.17 -s 111 -d 110 -p tcp -e 1000 -i 496 -a 8 + -t 53.1718 -s 108 -d 110 -p ack -e 40 -i 497 -a 8 - -t 53.1718 -s 108 -d 110 -p ack -e 40 -i 497 -a 8 h -t 53.1718 -s 108 -d 110 -p ack -e 40 -i 497 -a 8 r -t 53.172 -s 110 -d 108 -p tcp -e 1000 -i 496 -a 8 + -t 53.1728 -s 110 -d 111 -p ack -e 40 -i 497 -a 8 - -t 53.1728 -s 110 -d 111 -p ack -e 40 -i 497 -a 8 h -t 53.1728 -s 110 -d 111 -p ack -e 40 -i 497 -a 8 r -t 53.1728 -s 108 -d 110 -p ack -e 40 -i 497 -a 8 + -t 53.2732 -s 111 -d 112 -p ack -e 40 -i 497 -a 8 - -t 53.2732 -s 111 -d 112 -p ack -e 40 -i 497 -a 8 h -t 53.2732 -s 111 -d 112 -p ack -e 40 -i 497 -a 8 r -t 53.2732 -s 110 -d 111 -p ack -e 40 -i 497 -a 8 + -t 53.2742 -s 112 -d 111 -p tcp -e 1000 -i 498 -a 8 + -t 53.2742 -s 112 -d 111 -p tcp -e 1000 -i 499 -a 8 - -t 53.2742 -s 112 -d 111 -p tcp -e 1000 -i 498 -a 8 h -t 53.2742 -s 112 -d 111 -p tcp -e 1000 -i 498 -a 8 r -t 53.2742 -s 111 -d 112 -p ack -e 40 -i 497 -a 8 - -t 53.275 -s 112 -d 111 -p tcp -e 1000 -i 499 -a 8 h -t 53.275 -s 112 -d 111 -p tcp -e 1000 -i 499 -a 8 + -t 53.276 -s 111 -d 110 -p tcp -e 1000 -i 498 -a 8 - -t 53.276 -s 111 -d 110 -p tcp -e 1000 -i 498 -a 8 h -t 53.276 -s 111 -d 110 -p tcp -e 1000 -i 498 -a 8 r -t 53.2762 -s 112 -d 111 -p tcp -e 1000 -i 498 -a 8 + -t 53.2768 -s 111 -d 110 -p tcp -e 1000 -i 499 -a 8 r -t 53.277 -s 112 -d 111 -p tcp -e 1000 -i 499 -a 8 - -t 53.286 -s 111 -d 110 -p tcp -e 1000 -i 499 -a 8 h -t 53.286 -s 111 -d 110 -p tcp -e 1000 -i 499 -a 8 + -t 53.386 -s 110 -d 108 -p tcp -e 1000 -i 498 -a 8 - -t 53.386 -s 110 -d 108 -p tcp -e 1000 -i 498 -a 8 h -t 53.386 -s 110 -d 108 -p tcp -e 1000 -i 498 -a 8 r -t 53.386 -s 111 -d 110 -p tcp -e 1000 -i 498 -a 8 r -t 53.388 -s 110 -d 108 -p tcp -e 1000 -i 498 -a 8 + -t 53.396 -s 110 -d 108 -p tcp -e 1000 -i 499 -a 8 - -t 53.396 -s 110 -d 108 -p tcp -e 1000 -i 499 -a 8 h -t 53.396 -s 110 -d 108 -p tcp -e 1000 -i 499 -a 8 r -t 53.396 -s 111 -d 110 -p tcp -e 1000 -i 499 -a 8 + -t 53.3978 -s 108 -d 110 -p ack -e 40 -i 500 -a 8 - -t 53.3978 -s 108 -d 110 -p ack -e 40 -i 500 -a 8 h -t 53.3978 -s 108 -d 110 -p ack -e 40 -i 500 -a 8 r -t 53.398 -s 110 -d 108 -p tcp -e 1000 -i 499 -a 8 r -t 53.3988 -s 108 -d 110 -p ack -e 40 -i 500 -a 8 + -t 53.3989 -s 110 -d 111 -p ack -e 40 -i 500 -a 8 - -t 53.3989 -s 110 -d 111 -p ack -e 40 -i 500 -a 8 h -t 53.3989 -s 110 -d 111 -p ack -e 40 -i 500 -a 8 + -t 53.4993 -s 111 -d 112 -p ack -e 40 -i 500 -a 8 - -t 53.4993 -s 111 -d 112 -p ack -e 40 -i 500 -a 8 h -t 53.4993 -s 111 -d 112 -p ack -e 40 -i 500 -a 8 r -t 53.4993 -s 110 -d 111 -p ack -e 40 -i 500 -a 8 + -t 53.5003 -s 112 -d 111 -p tcp -e 1000 -i 501 -a 8 - -t 53.5003 -s 112 -d 111 -p tcp -e 1000 -i 501 -a 8 h -t 53.5003 -s 112 -d 111 -p tcp -e 1000 -i 501 -a 8 r -t 53.5003 -s 111 -d 112 -p ack -e 40 -i 500 -a 8 + -t 53.5021 -s 111 -d 110 -p tcp -e 1000 -i 501 -a 8 - -t 53.5021 -s 111 -d 110 -p tcp -e 1000 -i 501 -a 8 h -t 53.5021 -s 111 -d 110 -p tcp -e 1000 -i 501 -a 8 r -t 53.5023 -s 112 -d 111 -p tcp -e 1000 -i 501 -a 8 + -t 53.6121 -s 110 -d 108 -p tcp -e 1000 -i 501 -a 8 - -t 53.6121 -s 110 -d 108 -p tcp -e 1000 -i 501 -a 8 h -t 53.6121 -s 110 -d 108 -p tcp -e 1000 -i 501 -a 8 r -t 53.6121 -s 111 -d 110 -p tcp -e 1000 -i 501 -a 8 r -t 53.6141 -s 110 -d 108 -p tcp -e 1000 -i 501 -a 8 + -t 53.7139 -s 108 -d 110 -p ack -e 40 -i 502 -a 8 - -t 53.7139 -s 108 -d 110 -p ack -e 40 -i 502 -a 8 h -t 53.7139 -s 108 -d 110 -p ack -e 40 -i 502 -a 8 + -t 53.7149 -s 110 -d 111 -p ack -e 40 -i 502 -a 8 - -t 53.7149 -s 110 -d 111 -p ack -e 40 -i 502 -a 8 h -t 53.7149 -s 110 -d 111 -p ack -e 40 -i 502 -a 8 r -t 53.7149 -s 108 -d 110 -p ack -e 40 -i 502 -a 8 + -t 53.8153 -s 111 -d 112 -p ack -e 40 -i 502 -a 8 - -t 53.8153 -s 111 -d 112 -p ack -e 40 -i 502 -a 8 h -t 53.8153 -s 111 -d 112 -p ack -e 40 -i 502 -a 8 r -t 53.8153 -s 110 -d 111 -p ack -e 40 -i 502 -a 8 r -t 53.8163 -s 111 -d 112 -p ack -e 40 -i 502 -a 8 nam-1.15/ex/rbp_demo.README0000664000076400007660000000736706610761044014177 0ustar tomhnsnam The attached nam file (rbp_demo.nam) attemptes to illustrate three TCP slow-start restart algorithms described in ``Improving Restart of Idle TCP Connections'' at (submitted for publication). There are three groups of nodes. Each group has 10 clients (colored circles on the left) and one server (the black circle on the right) joined by two routers (hexagons) and a bottleneck link. The clients make web requests at random times (uniformly distributed around a central point), causing the server to send a burst of 10KB (=10 packets) of data. We do this twice, first at about 9.0s and then again at about 29s. The point of the experiment is to illustrate TCP behavior after the connection goes idle. It does this by showing a different algorithm in each group of nodes. The TOP group illustrates ``no slow-start restart'' (NSSR): after an idle period the TCP at node 112 does nothing special and so it sends a window-sized burst of data on the second request. NSSR is the policy implemented by SunOS for all connections and by all BSD-derived TCP's for web style traffic (due to an interaction between idle detection and HTTP-style traffic). The BOTTOM group illustrates ``slow-start restart'' (SSR): are an idle period, TCP resets itself and does a full slow-start. This is the policy advocated in the appendix of the 1990 revision of Jacobson's paper ``Congestion Avoidance and Control'' (with Mike Karels). Although 4.4BSD implements this policy, it is not used for web traffic because of an interaction between idle detection and HTTP-style traffic. The MIDDLE group illustrates ``rate-based pacing'' (RBP): a new algorithm proposed in the paper ``Improving Restart of Idle TCP Connections'' by Visweswaraiah and Heidemann. The animation is broken down into three phases, 9-12s and 29-32s, and 49-54s. In the FIRST PHASE (9-12s), all algorithms should behave identically. They do, for the most part, but as an implementation artifact, RBP sends packets with a slightly different schedule than the other algorithsm. This difference is because RBP (shown here) is based on Vegas while the others are Reno. We plan to redo the simulation with a Reno-based RBP. In the SECOND PHASE (29-32s), we see clear differences in the algorithms. - NSSR (on the top) sends large bursts of packets and has large queues at the router. As a result of bursts sent at nearly the same time, these queues cause NSSR to drop some packets. - SSR (on the bottom) has very conservative behavior. All connections slow start and so there are never large router queues and no lost packets, but it much longer than NSSR to completely send a response. - RBP (in the middle) illustrates median behavior. There are no large bursts, but instead of slow-starting, RBP uses existing information about the prior transmission rate to pace data packets instead of slow-starting. We can see that three lavendar packets are paced at times 29.0175, 29.1295 and 29.2495, before the ACK from the first returns to the source (at about 29.3215s). Because of this pacing, RBP is able to send the final packet of the lavendar request at about 29.59s where SSR sends it at about 30.05, about 80% faster. RBP acheives this performance gain without the large queues and burstiness of NSSR. In the THIRD PHASE (59-54s) we have another round of the experiment. This time NSSR has fewer packet drops (4 instead of 12) because the loses in the second phase caused some flows to be less agressive. Comments or suggestions about rate-based pacing are encouraged; send mail to {johnh,visweswa}@isi.edu. These traces are from the RBP implementation in ns-2.0. The simulation is in post-ns-2.0 distributions as tcl/ex/rbp_demo.tcl, or at http://www.isi.edu. -John Heidemann, 6-Oct-97 nam-1.15/ex/README0000664000076400007660000000735407024243475012410 0ustar tomhnsnam These examples have been collected from ns runs. Tahoe1: Generated from ns with cd ns-2/tcl/test ns test-suite-routed.tcl tahoe1 awk -f ../nam-demo/nstonam.awk tahoe1.tr tahoe1.tcl was written by Kannan. simple_mcast: (from Daniel Zappala ) It's pretty simple ... four senders/receivers each join the same group and start sending packets. Multicast tree links are shown in red. (It looks like it is using a shared tree but it isn't ... there is just one shortest path that they all use.) This file is out-of-date and is no longer supported. srm-example.nam: Generated from ns with cd ns-2/tcl/test ../../ns nam-example.tcl The example uses dynamic link, which simulates link up and down. The dynamic link will produce traces which calls some user-defined tcl functions. dynamic-nam.conf in this directory provides an example of those functions. nam has to load the file during startup. The following command may be used: nam -f dynamic-nam.conf srm-example.nam Or you can re-name dynamic-nam.conf to .nam.tcl. nam will load .nam.tcl in current directory during startup. ts20.nam: 10 adaptive SRM agents running in a 20 nodes transit stub network generated by ITM network modeler. See http://netweb.usc.edu/daniel/research/sims/topology/ for detail about the modeler. There are 4 traffic sources which are colored red, all other members are blue. Non-member nodes are black. After simulation time 30s, all links on the distribution tree (SPT of node 8) are colored blue. Two of the links are red, which means they are lossy (drops 50% of SRM data packets). ts100.nam: Same as above (ts20.nam), except there are 5 lossy links instead of 2, and the agents are running in a 100 nodes transit stub network, which is the one from http://netweb.usc.edu/daniel/research/sims/gt-ts100/. lan.nam: Hand hacked simulation to demonstrate the use of LANs. Should be replaced by a more realistic demonstration sometime. 9nodetree.nam: Result of hand layout using topology editor (edit view). rpm-vs-srm.nam Comparison between adaptive SRM and RPM (Reliable Policy Multicast) with preferred responder. The scenario is a 9 node unbalanced binary tree, 2 lossy links with loss rate 0.10 each, all nodes are data sources, data rate is 1 packet per 100s. tcpsrm.nam: One TCP flow and one SRM group, containing information used by SRM analysis tool. Usage: go to nam's "Analysis" menu, click "Active Sessions". That'll bring out a session dialog. Clicking on the "TCP..." button will bring out a TCP sequence plot; clicking on the "SRM..." button will bring out a SRM event graph. TCL scripts used to generate this is at ~ns-2/tcl/ex/tcpsrm.tcl. tcpecn.nam: Two TCP flows. Containing information used by TCP analysis tool. Usage: go to nam's "Analysis" menu, click "Active Sessions". It'll bring up a dialog showing all active sessions. Clicking on any buttons to show TCP sequence number plot for that session. TCL script used to generate this is at ~ns-2/tcl/ex/tcpecn.tcl. webcache.nam: One-level hierarchical web cache with one server and 5 clients. Demostrating the basic multicast cache invalidation, and its detection and recovery of a single link failure. mcache.nam: Multimedia web caching. The demo shows the on-demand prefetching of the cache for high-bandwidth client. nam11by6fulltorus.gif: screenshot of nam doing a complex torus (11 rings of 6 nodes, looped, with attached nodes), just to show what 1.0a4 is capable of. from http://www.ee.surrey.ac.uk/Personal/L.Wood/ns/ http://www.ee.surrey.ac.uk/Personal/L.Wood/ns/nam11by6fulltorus.gif nam288teledesic.gif: rough approximation of 288-satellite Teledesic from http://www.ee.surrey.ac.uk/Personal/L.Wood/ns/nam288teledesic.gif nam-1.15/ex/rpm-vs-srm.nam0000664000076400007660000350142506610761050014243 0ustar tomhnsnamc -t * -i 0 -n magenta c -t * -i 1 -n red c -t * -i 2 -n pink c -t * -i 3 -n cyan c -t * -i 4 -n green c -t * -i 5 -n blue c -t * -i 6 -n yellow c -t * -i 7 -n black c -t * -i 8 -n purple c -t * -i 40 -n yellow c -t * -i 41 -n blue c -t * -i 42 -n chocolate n -t * -s 10 -v circle -c magenta -z 0.077377 -S UP n -t * -s 11 -v circle -c red -z 0.077377 -S UP n -t * -s 12 -v circle -c pink -z 0.077377 -S UP n -t * -s 13 -v circle -c cyan -z 0.077377 -S UP n -t * -s 14 -v circle -c green -z 0.077377 -S UP n -t * -s 15 -v circle -c blue -z 0.077377 -S UP n -t * -s 16 -v circle -c yellow -z 0.077377 -S UP n -t * -s 17 -v circle -c black -z 0.077377 -S UP n -t * -s 18 -v circle -c purple -z 0.077377 -S UP n -t * -s 20 -v circle -c magenta -z 0.077377 -S UP n -t * -s 21 -v circle -c red -z 0.077377 -S UP n -t * -s 22 -v circle -c pink -z 0.077377 -S UP n -t * -s 23 -v circle -c cyan -z 0.077377 -S UP n -t * -s 24 -v circle -c green -z 0.077377 -S UP n -t * -s 25 -v circle -c blue -z 0.077377 -S UP n -t * -s 26 -v circle -c yellow -z 0.077377 -S UP n -t * -s 27 -v circle -c black -z 0.077377 -S UP n -t * -s 28 -v circle -c purple -z 0.077377 -S UP l -t * -s 13 -d 16 -r 1000000.000000 -D 0.010000 -o 227.3deg -l 0.156437 -S UP l -t * -s 13 -d 15 -r 1000000.000000 -D 0.010000 -o 309.7deg -l 0.152721 -S UP l -t * -s 16 -d 18 -r 1000000.000000 -D 0.010000 -o 310.4deg -l 0.124085 -S UP l -t * -s 16 -d 17 -r 1000000.000000 -D 0.010000 -o 227.3deg -l 0.127457 -S UP l -t * -s 11 -d 14 -r 1000000.000000 -D 0.010000 -o 316.7deg -l 0.148006 -S UP l -t * -s 11 -d 13 -r 1000000.000000 -D 0.010000 -o 224.2deg -l 0.143401 -S UP l -t * -s 10 -d 11 -r 1000000.000000 -D 0.010000 -o 319.0deg -l 0.127706 -S UP l -t * -s 10 -d 12 -r 1000000.000000 -D 0.010000 -o 222.1deg -l 0.121905 -S UP l -t * -s 23 -d 26 -r 1000000.000000 -D 0.010000 -o 227.3deg -l 0.156437 -S UP l -t * -s 23 -d 25 -r 1000000.000000 -D 0.010000 -o 309.7deg -l 0.152721 -S UP l -t * -s 26 -d 28 -r 1000000.000000 -D 0.010000 -o 310.4deg -l 0.124085 -S UP l -t * -s 26 -d 27 -r 1000000.000000 -D 0.010000 -o 227.3deg -l 0.127457 -S UP l -t * -s 21 -d 24 -r 1000000.000000 -D 0.010000 -o 316.7deg -l 0.148006 -S UP l -t * -s 21 -d 23 -r 1000000.000000 -D 0.010000 -o 224.2deg -l 0.143401 -S UP l -t * -s 20 -d 21 -r 1000000.000000 -D 0.010000 -o 319.0deg -l 0.127706 -S UP l -t * -s 20 -d 22 -r 1000000.000000 -D 0.010000 -o 222.1deg -l 0.121905 -S UP l -t * -s 10 -d 20 -S UP -r 1000000.000000 -D 0.010000 -o 0.0deg -l 0.800000 -c background v -t 0 set_rate_ext 0.2ms 1 l -t 0 -s 11 -d 13 -S COLOR -c red -o black l -t 0 -s 13 -d 11 -S COLOR -c red -o black l -t 0 -s 13 -d 16 -S COLOR -c red -o black l -t 0 -s 16 -d 13 -S COLOR -c red -o black l -t 0 -s 21 -d 23 -S COLOR -c red -o black l -t 0 -s 23 -d 21 -S COLOR -c red -o black l -t 0 -s 23 -d 26 -S COLOR -c red -o black l -t 0 -s 26 -d 23 -S COLOR -c red -o black v -t 0 settime 133.93 + -t 18.500031305476998 -s 10 -d 11 -p SRM -e 40 -c 42 -i 0 -a 42 + -t 18.500031305476998 -s 20 -d 21 -p SRM -e 40 -c 42 -i 0 -a 42 - -t 18.500031305476998 -s 10 -d 11 -p SRM -e 40 -c 42 -i 0 -a 42 - -t 18.500031305476998 -s 20 -d 21 -p SRM -e 40 -c 42 -i 0 -a 42 h -t 18.500031305476998 -s 10 -d 11 -p SRM -e 40 -c 42 -i 0 -a 42 + -t 18.500031305476998 -s 10 -d 12 -p SRM -e 40 -c 42 -i 0 -a 42 - -t 18.500031305476998 -s 10 -d 12 -p SRM -e 40 -c 42 -i 0 -a 42 h -t 18.500031305476998 -s 10 -d 12 -p SRM -e 40 -c 42 -i 0 -a 42 h -t 18.500031305476998 -s 20 -d 21 -p SRM -e 40 -c 42 -i 0 -a 42 + -t 18.500031305476998 -s 20 -d 22 -p SRM -e 40 -c 42 -i 0 -a 42 - -t 18.500031305476998 -s 20 -d 22 -p SRM -e 40 -c 42 -i 0 -a 42 h -t 18.500031305476998 -s 20 -d 22 -p SRM -e 40 -c 42 -i 0 -a 42 r -t 18.510351305476998 -s 10 -d 11 -p SRM -e 40 -c 42 -i 0 -a 42 + -t 18.510351305476998 -s 11 -d 13 -p SRM -e 40 -c 42 -i 0 -a 42 - -t 18.510351305476998 -s 11 -d 13 -p SRM -e 40 -c 42 -i 0 -a 42 h -t 18.510351305476998 -s 11 -d 13 -p SRM -e 40 -c 42 -i 0 -a 42 + -t 18.510351305476998 -s 11 -d 14 -p SRM -e 40 -c 42 -i 0 -a 42 - -t 18.510351305476998 -s 11 -d 14 -p SRM -e 40 -c 42 -i 0 -a 42 h -t 18.510351305476998 -s 11 -d 14 -p SRM -e 40 -c 42 -i 0 -a 42 r -t 18.510351305476998 -s 10 -d 12 -p SRM -e 40 -c 42 -i 0 -a 42 r -t 18.510351305476998 -s 20 -d 21 -p SRM -e 40 -c 42 -i 0 -a 42 + -t 18.510351305476998 -s 21 -d 23 -p SRM -e 40 -c 42 -i 0 -a 42 - -t 18.510351305476998 -s 21 -d 23 -p SRM -e 40 -c 42 -i 0 -a 42 h -t 18.510351305476998 -s 21 -d 23 -p SRM -e 40 -c 42 -i 0 -a 42 + -t 18.510351305476998 -s 21 -d 24 -p SRM -e 40 -c 42 -i 0 -a 42 - -t 18.510351305476998 -s 21 -d 24 -p SRM -e 40 -c 42 -i 0 -a 42 h -t 18.510351305476998 -s 21 -d 24 -p SRM -e 40 -c 42 -i 0 -a 42 r -t 18.510351305476998 -s 20 -d 22 -p SRM -e 40 -c 42 -i 0 -a 42 r -t 18.520671305476998 -s 11 -d 13 -p SRM -e 40 -c 42 -i 0 -a 42 + -t 18.520671305476998 -s 13 -d 15 -p SRM -e 40 -c 42 -i 0 -a 42 - -t 18.520671305476998 -s 13 -d 15 -p SRM -e 40 -c 42 -i 0 -a 42 h -t 18.520671305476998 -s 13 -d 15 -p SRM -e 40 -c 42 -i 0 -a 42 + -t 18.520671305476998 -s 13 -d 16 -p SRM -e 40 -c 42 -i 0 -a 42 - -t 18.520671305476998 -s 13 -d 16 -p SRM -e 40 -c 42 -i 0 -a 42 h -t 18.520671305476998 -s 13 -d 16 -p SRM -e 40 -c 42 -i 0 -a 42 r -t 18.520671305476998 -s 11 -d 14 -p SRM -e 40 -c 42 -i 0 -a 42 r -t 18.520671305476998 -s 21 -d 23 -p SRM -e 40 -c 42 -i 0 -a 42 + -t 18.520671305476998 -s 23 -d 25 -p SRM -e 40 -c 42 -i 0 -a 42 - -t 18.520671305476998 -s 23 -d 25 -p SRM -e 40 -c 42 -i 0 -a 42 h -t 18.520671305476998 -s 23 -d 25 -p SRM -e 40 -c 42 -i 0 -a 42 + -t 18.520671305476998 -s 23 -d 26 -p SRM -e 40 -c 42 -i 0 -a 42 - -t 18.520671305476998 -s 23 -d 26 -p SRM -e 40 -c 42 -i 0 -a 42 h -t 18.520671305476998 -s 23 -d 26 -p SRM -e 40 -c 42 -i 0 -a 42 r -t 18.520671305476998 -s 21 -d 24 -p SRM -e 40 -c 42 -i 0 -a 42 r -t 18.530991305476999 -s 13 -d 15 -p SRM -e 40 -c 42 -i 0 -a 42 r -t 18.530991305476999 -s 13 -d 16 -p SRM -e 40 -c 42 -i 0 -a 42 + -t 18.530991305476999 -s 16 -d 17 -p SRM -e 40 -c 42 -i 0 -a 42 - -t 18.530991305476999 -s 16 -d 17 -p SRM -e 40 -c 42 -i 0 -a 42 h -t 18.530991305476999 -s 16 -d 17 -p SRM -e 40 -c 42 -i 0 -a 42 + -t 18.530991305476999 -s 16 -d 18 -p SRM -e 40 -c 42 -i 0 -a 42 - -t 18.530991305476999 -s 16 -d 18 -p SRM -e 40 -c 42 -i 0 -a 42 h -t 18.530991305476999 -s 16 -d 18 -p SRM -e 40 -c 42 -i 0 -a 42 r -t 18.530991305476999 -s 23 -d 25 -p SRM -e 40 -c 42 -i 0 -a 42 r -t 18.530991305476999 -s 23 -d 26 -p SRM -e 40 -c 42 -i 0 -a 42 + -t 18.530991305476999 -s 26 -d 27 -p SRM -e 40 -c 42 -i 0 -a 42 - -t 18.530991305476999 -s 26 -d 27 -p SRM -e 40 -c 42 -i 0 -a 42 h -t 18.530991305476999 -s 26 -d 27 -p SRM -e 40 -c 42 -i 0 -a 42 + -t 18.530991305476999 -s 26 -d 28 -p SRM -e 40 -c 42 -i 0 -a 42 - -t 18.530991305476999 -s 26 -d 28 -p SRM -e 40 -c 42 -i 0 -a 42 h -t 18.530991305476999 -s 26 -d 28 -p SRM -e 40 -c 42 -i 0 -a 42 r -t 18.541311305476999 -s 16 -d 17 -p SRM -e 40 -c 42 -i 0 -a 42 r -t 18.541311305476999 -s 16 -d 18 -p SRM -e 40 -c 42 -i 0 -a 42 r -t 18.541311305476999 -s 26 -d 27 -p SRM -e 40 -c 42 -i 0 -a 42 r -t 18.541311305476999 -s 26 -d 28 -p SRM -e 40 -c 42 -i 0 -a 42 + -t 18.688178464858002 -s 16 -d 13 -p SRM -e 56 -c 42 -i 1 -a 42 + -t 18.688178464858002 -s 26 -d 23 -p SRM -e 56 -c 42 -i 1 -a 42 - -t 18.688178464858002 -s 16 -d 13 -p SRM -e 56 -c 42 -i 1 -a 42 - -t 18.688178464858002 -s 26 -d 23 -p SRM -e 56 -c 42 -i 1 -a 42 h -t 18.688178464858002 -s 16 -d 13 -p SRM -e 56 -c 42 -i 1 -a 42 + -t 18.688178464858002 -s 16 -d 17 -p SRM -e 56 -c 42 -i 1 -a 42 - -t 18.688178464858002 -s 16 -d 17 -p SRM -e 56 -c 42 -i 1 -a 42 h -t 18.688178464858002 -s 16 -d 17 -p SRM -e 56 -c 42 -i 1 -a 42 + -t 18.688178464858002 -s 16 -d 18 -p SRM -e 56 -c 42 -i 1 -a 42 - -t 18.688178464858002 -s 16 -d 18 -p SRM -e 56 -c 42 -i 1 -a 42 h -t 18.688178464858002 -s 16 -d 18 -p SRM -e 56 -c 42 -i 1 -a 42 h -t 18.688178464858002 -s 26 -d 23 -p SRM -e 56 -c 42 -i 1 -a 42 + -t 18.688178464858002 -s 26 -d 27 -p SRM -e 56 -c 42 -i 1 -a 42 - -t 18.688178464858002 -s 26 -d 27 -p SRM -e 56 -c 42 -i 1 -a 42 h -t 18.688178464858002 -s 26 -d 27 -p SRM -e 56 -c 42 -i 1 -a 42 + -t 18.688178464858002 -s 26 -d 28 -p SRM -e 56 -c 42 -i 1 -a 42 - -t 18.688178464858002 -s 26 -d 28 -p SRM -e 56 -c 42 -i 1 -a 42 h -t 18.688178464858002 -s 26 -d 28 -p SRM -e 56 -c 42 -i 1 -a 42 r -t 18.698626464858002 -s 16 -d 13 -p SRM -e 56 -c 42 -i 1 -a 42 + -t 18.698626464858002 -s 13 -d 11 -p SRM -e 56 -c 42 -i 1 -a 42 - -t 18.698626464858002 -s 13 -d 11 -p SRM -e 56 -c 42 -i 1 -a 42 h -t 18.698626464858002 -s 13 -d 11 -p SRM -e 56 -c 42 -i 1 -a 42 + -t 18.698626464858002 -s 13 -d 15 -p SRM -e 56 -c 42 -i 1 -a 42 - -t 18.698626464858002 -s 13 -d 15 -p SRM -e 56 -c 42 -i 1 -a 42 h -t 18.698626464858002 -s 13 -d 15 -p SRM -e 56 -c 42 -i 1 -a 42 r -t 18.698626464858002 -s 16 -d 17 -p SRM -e 56 -c 42 -i 1 -a 42 r -t 18.698626464858002 -s 16 -d 18 -p SRM -e 56 -c 42 -i 1 -a 42 r -t 18.698626464858002 -s 26 -d 23 -p SRM -e 56 -c 42 -i 1 -a 42 + -t 18.698626464858002 -s 23 -d 21 -p SRM -e 56 -c 42 -i 1 -a 42 - -t 18.698626464858002 -s 23 -d 21 -p SRM -e 56 -c 42 -i 1 -a 42 h -t 18.698626464858002 -s 23 -d 21 -p SRM -e 56 -c 42 -i 1 -a 42 + -t 18.698626464858002 -s 23 -d 25 -p SRM -e 56 -c 42 -i 1 -a 42 - -t 18.698626464858002 -s 23 -d 25 -p SRM -e 56 -c 42 -i 1 -a 42 h -t 18.698626464858002 -s 23 -d 25 -p SRM -e 56 -c 42 -i 1 -a 42 r -t 18.698626464858002 -s 26 -d 27 -p SRM -e 56 -c 42 -i 1 -a 42 r -t 18.698626464858002 -s 26 -d 28 -p SRM -e 56 -c 42 -i 1 -a 42 r -t 18.709074464858002 -s 13 -d 11 -p SRM -e 56 -c 42 -i 1 -a 42 + -t 18.709074464858002 -s 11 -d 10 -p SRM -e 56 -c 42 -i 1 -a 42 - -t 18.709074464858002 -s 11 -d 10 -p SRM -e 56 -c 42 -i 1 -a 42 h -t 18.709074464858002 -s 11 -d 10 -p SRM -e 56 -c 42 -i 1 -a 42 + -t 18.709074464858002 -s 11 -d 14 -p SRM -e 56 -c 42 -i 1 -a 42 - -t 18.709074464858002 -s 11 -d 14 -p SRM -e 56 -c 42 -i 1 -a 42 h -t 18.709074464858002 -s 11 -d 14 -p SRM -e 56 -c 42 -i 1 -a 42 r -t 18.709074464858002 -s 13 -d 15 -p SRM -e 56 -c 42 -i 1 -a 42 r -t 18.709074464858002 -s 23 -d 21 -p SRM -e 56 -c 42 -i 1 -a 42 + -t 18.709074464858002 -s 21 -d 20 -p SRM -e 56 -c 42 -i 1 -a 42 - -t 18.709074464858002 -s 21 -d 20 -p SRM -e 56 -c 42 -i 1 -a 42 h -t 18.709074464858002 -s 21 -d 20 -p SRM -e 56 -c 42 -i 1 -a 42 + -t 18.709074464858002 -s 21 -d 24 -p SRM -e 56 -c 42 -i 1 -a 42 - -t 18.709074464858002 -s 21 -d 24 -p SRM -e 56 -c 42 -i 1 -a 42 h -t 18.709074464858002 -s 21 -d 24 -p SRM -e 56 -c 42 -i 1 -a 42 r -t 18.709074464858002 -s 23 -d 25 -p SRM -e 56 -c 42 -i 1 -a 42 r -t 18.719522464858002 -s 11 -d 10 -p SRM -e 56 -c 42 -i 1 -a 42 + -t 18.719522464858002 -s 10 -d 12 -p SRM -e 56 -c 42 -i 1 -a 42 - -t 18.719522464858002 -s 10 -d 12 -p SRM -e 56 -c 42 -i 1 -a 42 h -t 18.719522464858002 -s 10 -d 12 -p SRM -e 56 -c 42 -i 1 -a 42 r -t 18.719522464858002 -s 11 -d 14 -p SRM -e 56 -c 42 -i 1 -a 42 r -t 18.719522464858002 -s 21 -d 20 -p SRM -e 56 -c 42 -i 1 -a 42 + -t 18.719522464858002 -s 20 -d 22 -p SRM -e 56 -c 42 -i 1 -a 42 - -t 18.719522464858002 -s 20 -d 22 -p SRM -e 56 -c 42 -i 1 -a 42 h -t 18.719522464858002 -s 20 -d 22 -p SRM -e 56 -c 42 -i 1 -a 42 r -t 18.719522464858002 -s 21 -d 24 -p SRM -e 56 -c 42 -i 1 -a 42 r -t 18.729970464858003 -s 10 -d 12 -p SRM -e 56 -c 42 -i 1 -a 42 r -t 18.729970464858003 -s 20 -d 22 -p SRM -e 56 -c 42 -i 1 -a 42 + -t 19.026151152573 -s 11 -d 10 -p SRM -e 72 -c 42 -i 2 -a 42 + -t 19.026151152573 -s 21 -d 20 -p SRM -e 72 -c 42 -i 2 -a 42 - -t 19.026151152573 -s 11 -d 10 -p SRM -e 72 -c 42 -i 2 -a 42 - -t 19.026151152573 -s 21 -d 20 -p SRM -e 72 -c 42 -i 2 -a 42 h -t 19.026151152573 -s 11 -d 10 -p SRM -e 72 -c 42 -i 2 -a 42 + -t 19.026151152573 -s 11 -d 13 -p SRM -e 72 -c 42 -i 2 -a 42 - -t 19.026151152573 -s 11 -d 13 -p SRM -e 72 -c 42 -i 2 -a 42 h -t 19.026151152573 -s 11 -d 13 -p SRM -e 72 -c 42 -i 2 -a 42 + -t 19.026151152573 -s 11 -d 14 -p SRM -e 72 -c 42 -i 2 -a 42 - -t 19.026151152573 -s 11 -d 14 -p SRM -e 72 -c 42 -i 2 -a 42 h -t 19.026151152573 -s 11 -d 14 -p SRM -e 72 -c 42 -i 2 -a 42 h -t 19.026151152573 -s 21 -d 20 -p SRM -e 72 -c 42 -i 2 -a 42 + -t 19.026151152573 -s 21 -d 23 -p SRM -e 72 -c 42 -i 2 -a 42 - -t 19.026151152573 -s 21 -d 23 -p SRM -e 72 -c 42 -i 2 -a 42 h -t 19.026151152573 -s 21 -d 23 -p SRM -e 72 -c 42 -i 2 -a 42 + -t 19.026151152573 -s 21 -d 24 -p SRM -e 72 -c 42 -i 2 -a 42 - -t 19.026151152573 -s 21 -d 24 -p SRM -e 72 -c 42 -i 2 -a 42 h -t 19.026151152573 -s 21 -d 24 -p SRM -e 72 -c 42 -i 2 -a 42 r -t 19.036727152573 -s 11 -d 10 -p SRM -e 72 -c 42 -i 2 -a 42 + -t 19.036727152573 -s 10 -d 12 -p SRM -e 72 -c 42 -i 2 -a 42 - -t 19.036727152573 -s 10 -d 12 -p SRM -e 72 -c 42 -i 2 -a 42 h -t 19.036727152573 -s 10 -d 12 -p SRM -e 72 -c 42 -i 2 -a 42 r -t 19.036727152573 -s 11 -d 13 -p SRM -e 72 -c 42 -i 2 -a 42 + -t 19.036727152573 -s 13 -d 15 -p SRM -e 72 -c 42 -i 2 -a 42 - -t 19.036727152573 -s 13 -d 15 -p SRM -e 72 -c 42 -i 2 -a 42 h -t 19.036727152573 -s 13 -d 15 -p SRM -e 72 -c 42 -i 2 -a 42 + -t 19.036727152573 -s 13 -d 16 -p SRM -e 72 -c 42 -i 2 -a 42 - -t 19.036727152573 -s 13 -d 16 -p SRM -e 72 -c 42 -i 2 -a 42 h -t 19.036727152573 -s 13 -d 16 -p SRM -e 72 -c 42 -i 2 -a 42 r -t 19.036727152573 -s 11 -d 14 -p SRM -e 72 -c 42 -i 2 -a 42 r -t 19.036727152573 -s 21 -d 20 -p SRM -e 72 -c 42 -i 2 -a 42 + -t 19.036727152573 -s 20 -d 22 -p SRM -e 72 -c 42 -i 2 -a 42 - -t 19.036727152573 -s 20 -d 22 -p SRM -e 72 -c 42 -i 2 -a 42 h -t 19.036727152573 -s 20 -d 22 -p SRM -e 72 -c 42 -i 2 -a 42 r -t 19.036727152573 -s 21 -d 23 -p SRM -e 72 -c 42 -i 2 -a 42 + -t 19.036727152573 -s 23 -d 25 -p SRM -e 72 -c 42 -i 2 -a 42 - -t 19.036727152573 -s 23 -d 25 -p SRM -e 72 -c 42 -i 2 -a 42 h -t 19.036727152573 -s 23 -d 25 -p SRM -e 72 -c 42 -i 2 -a 42 + -t 19.036727152573 -s 23 -d 26 -p SRM -e 72 -c 42 -i 2 -a 42 - -t 19.036727152573 -s 23 -d 26 -p SRM -e 72 -c 42 -i 2 -a 42 h -t 19.036727152573 -s 23 -d 26 -p SRM -e 72 -c 42 -i 2 -a 42 r -t 19.036727152573 -s 21 -d 24 -p SRM -e 72 -c 42 -i 2 -a 42 r -t 19.047303152573001 -s 10 -d 12 -p SRM -e 72 -c 42 -i 2 -a 42 r -t 19.047303152573001 -s 13 -d 15 -p SRM -e 72 -c 42 -i 2 -a 42 r -t 19.047303152573001 -s 13 -d 16 -p SRM -e 72 -c 42 -i 2 -a 42 + -t 19.047303152573001 -s 16 -d 17 -p SRM -e 72 -c 42 -i 2 -a 42 - -t 19.047303152573001 -s 16 -d 17 -p SRM -e 72 -c 42 -i 2 -a 42 h -t 19.047303152573001 -s 16 -d 17 -p SRM -e 72 -c 42 -i 2 -a 42 + -t 19.047303152573001 -s 16 -d 18 -p SRM -e 72 -c 42 -i 2 -a 42 - -t 19.047303152573001 -s 16 -d 18 -p SRM -e 72 -c 42 -i 2 -a 42 h -t 19.047303152573001 -s 16 -d 18 -p SRM -e 72 -c 42 -i 2 -a 42 r -t 19.047303152573001 -s 20 -d 22 -p SRM -e 72 -c 42 -i 2 -a 42 r -t 19.047303152573001 -s 23 -d 25 -p SRM -e 72 -c 42 -i 2 -a 42 r -t 19.047303152573001 -s 23 -d 26 -p SRM -e 72 -c 42 -i 2 -a 42 + -t 19.047303152573001 -s 26 -d 27 -p SRM -e 72 -c 42 -i 2 -a 42 - -t 19.047303152573001 -s 26 -d 27 -p SRM -e 72 -c 42 -i 2 -a 42 h -t 19.047303152573001 -s 26 -d 27 -p SRM -e 72 -c 42 -i 2 -a 42 + -t 19.047303152573001 -s 26 -d 28 -p SRM -e 72 -c 42 -i 2 -a 42 - -t 19.047303152573001 -s 26 -d 28 -p SRM -e 72 -c 42 -i 2 -a 42 h -t 19.047303152573001 -s 26 -d 28 -p SRM -e 72 -c 42 -i 2 -a 42 r -t 19.057879152573001 -s 16 -d 17 -p SRM -e 72 -c 42 -i 2 -a 42 r -t 19.057879152573001 -s 16 -d 18 -p SRM -e 72 -c 42 -i 2 -a 42 r -t 19.057879152573001 -s 26 -d 27 -p SRM -e 72 -c 42 -i 2 -a 42 r -t 19.057879152573001 -s 26 -d 28 -p SRM -e 72 -c 42 -i 2 -a 42 + -t 19.375836745312 -s 15 -d 13 -p SRM -e 88 -c 42 -i 3 -a 42 + -t 19.375836745312 -s 25 -d 23 -p SRM -e 88 -c 42 -i 3 -a 42 - -t 19.375836745312 -s 15 -d 13 -p SRM -e 88 -c 42 -i 3 -a 42 - -t 19.375836745312 -s 25 -d 23 -p SRM -e 88 -c 42 -i 3 -a 42 h -t 19.375836745312 -s 15 -d 13 -p SRM -e 88 -c 42 -i 3 -a 42 h -t 19.375836745312 -s 25 -d 23 -p SRM -e 88 -c 42 -i 3 -a 42 r -t 19.386540745312001 -s 15 -d 13 -p SRM -e 88 -c 42 -i 3 -a 42 + -t 19.386540745312001 -s 13 -d 11 -p SRM -e 88 -c 42 -i 3 -a 42 - -t 19.386540745312001 -s 13 -d 11 -p SRM -e 88 -c 42 -i 3 -a 42 h -t 19.386540745312001 -s 13 -d 11 -p SRM -e 88 -c 42 -i 3 -a 42 + -t 19.386540745312001 -s 13 -d 16 -p SRM -e 88 -c 42 -i 3 -a 42 - -t 19.386540745312001 -s 13 -d 16 -p SRM -e 88 -c 42 -i 3 -a 42 h -t 19.386540745312001 -s 13 -d 16 -p SRM -e 88 -c 42 -i 3 -a 42 r -t 19.386540745312001 -s 25 -d 23 -p SRM -e 88 -c 42 -i 3 -a 42 + -t 19.386540745312001 -s 23 -d 21 -p SRM -e 88 -c 42 -i 3 -a 42 - -t 19.386540745312001 -s 23 -d 21 -p SRM -e 88 -c 42 -i 3 -a 42 h -t 19.386540745312001 -s 23 -d 21 -p SRM -e 88 -c 42 -i 3 -a 42 + -t 19.386540745312001 -s 23 -d 26 -p SRM -e 88 -c 42 -i 3 -a 42 - -t 19.386540745312001 -s 23 -d 26 -p SRM -e 88 -c 42 -i 3 -a 42 h -t 19.386540745312001 -s 23 -d 26 -p SRM -e 88 -c 42 -i 3 -a 42 r -t 19.397244745312001 -s 13 -d 11 -p SRM -e 88 -c 42 -i 3 -a 42 + -t 19.397244745312001 -s 11 -d 10 -p SRM -e 88 -c 42 -i 3 -a 42 - -t 19.397244745312001 -s 11 -d 10 -p SRM -e 88 -c 42 -i 3 -a 42 h -t 19.397244745312001 -s 11 -d 10 -p SRM -e 88 -c 42 -i 3 -a 42 + -t 19.397244745312001 -s 11 -d 14 -p SRM -e 88 -c 42 -i 3 -a 42 - -t 19.397244745312001 -s 11 -d 14 -p SRM -e 88 -c 42 -i 3 -a 42 h -t 19.397244745312001 -s 11 -d 14 -p SRM -e 88 -c 42 -i 3 -a 42 r -t 19.397244745312001 -s 13 -d 16 -p SRM -e 88 -c 42 -i 3 -a 42 + -t 19.397244745312001 -s 16 -d 17 -p SRM -e 88 -c 42 -i 3 -a 42 - -t 19.397244745312001 -s 16 -d 17 -p SRM -e 88 -c 42 -i 3 -a 42 h -t 19.397244745312001 -s 16 -d 17 -p SRM -e 88 -c 42 -i 3 -a 42 + -t 19.397244745312001 -s 16 -d 18 -p SRM -e 88 -c 42 -i 3 -a 42 - -t 19.397244745312001 -s 16 -d 18 -p SRM -e 88 -c 42 -i 3 -a 42 h -t 19.397244745312001 -s 16 -d 18 -p SRM -e 88 -c 42 -i 3 -a 42 r -t 19.397244745312001 -s 23 -d 21 -p SRM -e 88 -c 42 -i 3 -a 42 + -t 19.397244745312001 -s 21 -d 20 -p SRM -e 88 -c 42 -i 3 -a 42 - -t 19.397244745312001 -s 21 -d 20 -p SRM -e 88 -c 42 -i 3 -a 42 h -t 19.397244745312001 -s 21 -d 20 -p SRM -e 88 -c 42 -i 3 -a 42 + -t 19.397244745312001 -s 21 -d 24 -p SRM -e 88 -c 42 -i 3 -a 42 - -t 19.397244745312001 -s 21 -d 24 -p SRM -e 88 -c 42 -i 3 -a 42 h -t 19.397244745312001 -s 21 -d 24 -p SRM -e 88 -c 42 -i 3 -a 42 r -t 19.397244745312001 -s 23 -d 26 -p SRM -e 88 -c 42 -i 3 -a 42 + -t 19.397244745312001 -s 26 -d 27 -p SRM -e 88 -c 42 -i 3 -a 42 - -t 19.397244745312001 -s 26 -d 27 -p SRM -e 88 -c 42 -i 3 -a 42 h -t 19.397244745312001 -s 26 -d 27 -p SRM -e 88 -c 42 -i 3 -a 42 + -t 19.397244745312001 -s 26 -d 28 -p SRM -e 88 -c 42 -i 3 -a 42 - -t 19.397244745312001 -s 26 -d 28 -p SRM -e 88 -c 42 -i 3 -a 42 h -t 19.397244745312001 -s 26 -d 28 -p SRM -e 88 -c 42 -i 3 -a 42 r -t 19.407948745312002 -s 11 -d 10 -p SRM -e 88 -c 42 -i 3 -a 42 + -t 19.407948745312002 -s 10 -d 12 -p SRM -e 88 -c 42 -i 3 -a 42 - -t 19.407948745312002 -s 10 -d 12 -p SRM -e 88 -c 42 -i 3 -a 42 h -t 19.407948745312002 -s 10 -d 12 -p SRM -e 88 -c 42 -i 3 -a 42 r -t 19.407948745312002 -s 11 -d 14 -p SRM -e 88 -c 42 -i 3 -a 42 r -t 19.407948745312002 -s 16 -d 17 -p SRM -e 88 -c 42 -i 3 -a 42 r -t 19.407948745312002 -s 16 -d 18 -p SRM -e 88 -c 42 -i 3 -a 42 r -t 19.407948745312002 -s 21 -d 20 -p SRM -e 88 -c 42 -i 3 -a 42 + -t 19.407948745312002 -s 20 -d 22 -p SRM -e 88 -c 42 -i 3 -a 42 - -t 19.407948745312002 -s 20 -d 22 -p SRM -e 88 -c 42 -i 3 -a 42 h -t 19.407948745312002 -s 20 -d 22 -p SRM -e 88 -c 42 -i 3 -a 42 r -t 19.407948745312002 -s 21 -d 24 -p SRM -e 88 -c 42 -i 3 -a 42 r -t 19.407948745312002 -s 26 -d 27 -p SRM -e 88 -c 42 -i 3 -a 42 r -t 19.407948745312002 -s 26 -d 28 -p SRM -e 88 -c 42 -i 3 -a 42 r -t 19.418652745312002 -s 10 -d 12 -p SRM -e 88 -c 42 -i 3 -a 42 r -t 19.418652745312002 -s 20 -d 22 -p SRM -e 88 -c 42 -i 3 -a 42 + -t 20.334600527694001 -s 13 -d 11 -p SRM -e 104 -c 42 -i 4 -a 42 + -t 20.334600527694001 -s 23 -d 21 -p SRM -e 104 -c 42 -i 4 -a 42 - -t 20.334600527694001 -s 13 -d 11 -p SRM -e 104 -c 42 -i 4 -a 42 - -t 20.334600527694001 -s 23 -d 21 -p SRM -e 104 -c 42 -i 4 -a 42 h -t 20.334600527694001 -s 13 -d 11 -p SRM -e 104 -c 42 -i 4 -a 42 + -t 20.334600527694001 -s 13 -d 15 -p SRM -e 104 -c 42 -i 4 -a 42 - -t 20.334600527694001 -s 13 -d 15 -p SRM -e 104 -c 42 -i 4 -a 42 h -t 20.334600527694001 -s 13 -d 15 -p SRM -e 104 -c 42 -i 4 -a 42 + -t 20.334600527694001 -s 13 -d 16 -p SRM -e 104 -c 42 -i 4 -a 42 - -t 20.334600527694001 -s 13 -d 16 -p SRM -e 104 -c 42 -i 4 -a 42 h -t 20.334600527694001 -s 13 -d 16 -p SRM -e 104 -c 42 -i 4 -a 42 h -t 20.334600527694001 -s 23 -d 21 -p SRM -e 104 -c 42 -i 4 -a 42 + -t 20.334600527694001 -s 23 -d 25 -p SRM -e 104 -c 42 -i 4 -a 42 - -t 20.334600527694001 -s 23 -d 25 -p SRM -e 104 -c 42 -i 4 -a 42 h -t 20.334600527694001 -s 23 -d 25 -p SRM -e 104 -c 42 -i 4 -a 42 + -t 20.334600527694001 -s 23 -d 26 -p SRM -e 104 -c 42 -i 4 -a 42 - -t 20.334600527694001 -s 23 -d 26 -p SRM -e 104 -c 42 -i 4 -a 42 h -t 20.334600527694001 -s 23 -d 26 -p SRM -e 104 -c 42 -i 4 -a 42 r -t 20.345432527694001 -s 13 -d 11 -p SRM -e 104 -c 42 -i 4 -a 42 + -t 20.345432527694001 -s 11 -d 10 -p SRM -e 104 -c 42 -i 4 -a 42 - -t 20.345432527694001 -s 11 -d 10 -p SRM -e 104 -c 42 -i 4 -a 42 h -t 20.345432527694001 -s 11 -d 10 -p SRM -e 104 -c 42 -i 4 -a 42 + -t 20.345432527694001 -s 11 -d 14 -p SRM -e 104 -c 42 -i 4 -a 42 - -t 20.345432527694001 -s 11 -d 14 -p SRM -e 104 -c 42 -i 4 -a 42 h -t 20.345432527694001 -s 11 -d 14 -p SRM -e 104 -c 42 -i 4 -a 42 r -t 20.345432527694001 -s 13 -d 15 -p SRM -e 104 -c 42 -i 4 -a 42 r -t 20.345432527694001 -s 13 -d 16 -p SRM -e 104 -c 42 -i 4 -a 42 + -t 20.345432527694001 -s 16 -d 17 -p SRM -e 104 -c 42 -i 4 -a 42 - -t 20.345432527694001 -s 16 -d 17 -p SRM -e 104 -c 42 -i 4 -a 42 h -t 20.345432527694001 -s 16 -d 17 -p SRM -e 104 -c 42 -i 4 -a 42 + -t 20.345432527694001 -s 16 -d 18 -p SRM -e 104 -c 42 -i 4 -a 42 - -t 20.345432527694001 -s 16 -d 18 -p SRM -e 104 -c 42 -i 4 -a 42 h -t 20.345432527694001 -s 16 -d 18 -p SRM -e 104 -c 42 -i 4 -a 42 r -t 20.345432527694001 -s 23 -d 21 -p SRM -e 104 -c 42 -i 4 -a 42 + -t 20.345432527694001 -s 21 -d 20 -p SRM -e 104 -c 42 -i 4 -a 42 - -t 20.345432527694001 -s 21 -d 20 -p SRM -e 104 -c 42 -i 4 -a 42 h -t 20.345432527694001 -s 21 -d 20 -p SRM -e 104 -c 42 -i 4 -a 42 + -t 20.345432527694001 -s 21 -d 24 -p SRM -e 104 -c 42 -i 4 -a 42 - -t 20.345432527694001 -s 21 -d 24 -p SRM -e 104 -c 42 -i 4 -a 42 h -t 20.345432527694001 -s 21 -d 24 -p SRM -e 104 -c 42 -i 4 -a 42 r -t 20.345432527694001 -s 23 -d 25 -p SRM -e 104 -c 42 -i 4 -a 42 r -t 20.345432527694001 -s 23 -d 26 -p SRM -e 104 -c 42 -i 4 -a 42 + -t 20.345432527694001 -s 26 -d 27 -p SRM -e 104 -c 42 -i 4 -a 42 - -t 20.345432527694001 -s 26 -d 27 -p SRM -e 104 -c 42 -i 4 -a 42 h -t 20.345432527694001 -s 26 -d 27 -p SRM -e 104 -c 42 -i 4 -a 42 + -t 20.345432527694001 -s 26 -d 28 -p SRM -e 104 -c 42 -i 4 -a 42 - -t 20.345432527694001 -s 26 -d 28 -p SRM -e 104 -c 42 -i 4 -a 42 h -t 20.345432527694001 -s 26 -d 28 -p SRM -e 104 -c 42 -i 4 -a 42 r -t 20.356264527694002 -s 11 -d 10 -p SRM -e 104 -c 42 -i 4 -a 42 + -t 20.356264527694002 -s 10 -d 12 -p SRM -e 104 -c 42 -i 4 -a 42 - -t 20.356264527694002 -s 10 -d 12 -p SRM -e 104 -c 42 -i 4 -a 42 h -t 20.356264527694002 -s 10 -d 12 -p SRM -e 104 -c 42 -i 4 -a 42 r -t 20.356264527694002 -s 11 -d 14 -p SRM -e 104 -c 42 -i 4 -a 42 r -t 20.356264527694002 -s 16 -d 17 -p SRM -e 104 -c 42 -i 4 -a 42 r -t 20.356264527694002 -s 16 -d 18 -p SRM -e 104 -c 42 -i 4 -a 42 r -t 20.356264527694002 -s 21 -d 20 -p SRM -e 104 -c 42 -i 4 -a 42 + -t 20.356264527694002 -s 20 -d 22 -p SRM -e 104 -c 42 -i 4 -a 42 - -t 20.356264527694002 -s 20 -d 22 -p SRM -e 104 -c 42 -i 4 -a 42 h -t 20.356264527694002 -s 20 -d 22 -p SRM -e 104 -c 42 -i 4 -a 42 r -t 20.356264527694002 -s 21 -d 24 -p SRM -e 104 -c 42 -i 4 -a 42 r -t 20.356264527694002 -s 26 -d 27 -p SRM -e 104 -c 42 -i 4 -a 42 r -t 20.356264527694002 -s 26 -d 28 -p SRM -e 104 -c 42 -i 4 -a 42 r -t 20.367096527694002 -s 10 -d 12 -p SRM -e 104 -c 42 -i 4 -a 42 r -t 20.367096527694002 -s 20 -d 22 -p SRM -e 104 -c 42 -i 4 -a 42 + -t 20.631068949648 -s 14 -d 11 -p SRM -e 120 -c 42 -i 5 -a 42 + -t 20.631068949648 -s 24 -d 21 -p SRM -e 120 -c 42 -i 5 -a 42 - -t 20.631068949648 -s 14 -d 11 -p SRM -e 120 -c 42 -i 5 -a 42 - -t 20.631068949648 -s 24 -d 21 -p SRM -e 120 -c 42 -i 5 -a 42 h -t 20.631068949648 -s 14 -d 11 -p SRM -e 120 -c 42 -i 5 -a 42 h -t 20.631068949648 -s 24 -d 21 -p SRM -e 120 -c 42 -i 5 -a 42 r -t 20.642028949648001 -s 14 -d 11 -p SRM -e 120 -c 42 -i 5 -a 42 + -t 20.642028949648001 -s 11 -d 10 -p SRM -e 120 -c 42 -i 5 -a 42 - -t 20.642028949648001 -s 11 -d 10 -p SRM -e 120 -c 42 -i 5 -a 42 h -t 20.642028949648001 -s 11 -d 10 -p SRM -e 120 -c 42 -i 5 -a 42 + -t 20.642028949648001 -s 11 -d 13 -p SRM -e 120 -c 42 -i 5 -a 42 - -t 20.642028949648001 -s 11 -d 13 -p SRM -e 120 -c 42 -i 5 -a 42 h -t 20.642028949648001 -s 11 -d 13 -p SRM -e 120 -c 42 -i 5 -a 42 r -t 20.642028949648001 -s 24 -d 21 -p SRM -e 120 -c 42 -i 5 -a 42 + -t 20.642028949648001 -s 21 -d 20 -p SRM -e 120 -c 42 -i 5 -a 42 - -t 20.642028949648001 -s 21 -d 20 -p SRM -e 120 -c 42 -i 5 -a 42 h -t 20.642028949648001 -s 21 -d 20 -p SRM -e 120 -c 42 -i 5 -a 42 + -t 20.642028949648001 -s 21 -d 23 -p SRM -e 120 -c 42 -i 5 -a 42 - -t 20.642028949648001 -s 21 -d 23 -p SRM -e 120 -c 42 -i 5 -a 42 h -t 20.642028949648001 -s 21 -d 23 -p SRM -e 120 -c 42 -i 5 -a 42 r -t 20.652988949648002 -s 11 -d 10 -p SRM -e 120 -c 42 -i 5 -a 42 + -t 20.652988949648002 -s 10 -d 12 -p SRM -e 120 -c 42 -i 5 -a 42 - -t 20.652988949648002 -s 10 -d 12 -p SRM -e 120 -c 42 -i 5 -a 42 h -t 20.652988949648002 -s 10 -d 12 -p SRM -e 120 -c 42 -i 5 -a 42 r -t 20.652988949648002 -s 11 -d 13 -p SRM -e 120 -c 42 -i 5 -a 42 + -t 20.652988949648002 -s 13 -d 15 -p SRM -e 120 -c 42 -i 5 -a 42 - -t 20.652988949648002 -s 13 -d 15 -p SRM -e 120 -c 42 -i 5 -a 42 h -t 20.652988949648002 -s 13 -d 15 -p SRM -e 120 -c 42 -i 5 -a 42 + -t 20.652988949648002 -s 13 -d 16 -p SRM -e 120 -c 42 -i 5 -a 42 - -t 20.652988949648002 -s 13 -d 16 -p SRM -e 120 -c 42 -i 5 -a 42 h -t 20.652988949648002 -s 13 -d 16 -p SRM -e 120 -c 42 -i 5 -a 42 r -t 20.652988949648002 -s 21 -d 20 -p SRM -e 120 -c 42 -i 5 -a 42 + -t 20.652988949648002 -s 20 -d 22 -p SRM -e 120 -c 42 -i 5 -a 42 - -t 20.652988949648002 -s 20 -d 22 -p SRM -e 120 -c 42 -i 5 -a 42 h -t 20.652988949648002 -s 20 -d 22 -p SRM -e 120 -c 42 -i 5 -a 42 r -t 20.652988949648002 -s 21 -d 23 -p SRM -e 120 -c 42 -i 5 -a 42 + -t 20.652988949648002 -s 23 -d 25 -p SRM -e 120 -c 42 -i 5 -a 42 - -t 20.652988949648002 -s 23 -d 25 -p SRM -e 120 -c 42 -i 5 -a 42 h -t 20.652988949648002 -s 23 -d 25 -p SRM -e 120 -c 42 -i 5 -a 42 + -t 20.652988949648002 -s 23 -d 26 -p SRM -e 120 -c 42 -i 5 -a 42 - -t 20.652988949648002 -s 23 -d 26 -p SRM -e 120 -c 42 -i 5 -a 42 h -t 20.652988949648002 -s 23 -d 26 -p SRM -e 120 -c 42 -i 5 -a 42 r -t 20.663948949648002 -s 10 -d 12 -p SRM -e 120 -c 42 -i 5 -a 42 r -t 20.663948949648002 -s 13 -d 15 -p SRM -e 120 -c 42 -i 5 -a 42 r -t 20.663948949648002 -s 13 -d 16 -p SRM -e 120 -c 42 -i 5 -a 42 + -t 20.663948949648002 -s 16 -d 17 -p SRM -e 120 -c 42 -i 5 -a 42 - -t 20.663948949648002 -s 16 -d 17 -p SRM -e 120 -c 42 -i 5 -a 42 h -t 20.663948949648002 -s 16 -d 17 -p SRM -e 120 -c 42 -i 5 -a 42 + -t 20.663948949648002 -s 16 -d 18 -p SRM -e 120 -c 42 -i 5 -a 42 - -t 20.663948949648002 -s 16 -d 18 -p SRM -e 120 -c 42 -i 5 -a 42 h -t 20.663948949648002 -s 16 -d 18 -p SRM -e 120 -c 42 -i 5 -a 42 r -t 20.663948949648002 -s 20 -d 22 -p SRM -e 120 -c 42 -i 5 -a 42 r -t 20.663948949648002 -s 23 -d 25 -p SRM -e 120 -c 42 -i 5 -a 42 r -t 20.663948949648002 -s 23 -d 26 -p SRM -e 120 -c 42 -i 5 -a 42 + -t 20.663948949648002 -s 26 -d 27 -p SRM -e 120 -c 42 -i 5 -a 42 - -t 20.663948949648002 -s 26 -d 27 -p SRM -e 120 -c 42 -i 5 -a 42 h -t 20.663948949648002 -s 26 -d 27 -p SRM -e 120 -c 42 -i 5 -a 42 + -t 20.663948949648002 -s 26 -d 28 -p SRM -e 120 -c 42 -i 5 -a 42 - -t 20.663948949648002 -s 26 -d 28 -p SRM -e 120 -c 42 -i 5 -a 42 h -t 20.663948949648002 -s 26 -d 28 -p SRM -e 120 -c 42 -i 5 -a 42 r -t 20.674908949648003 -s 16 -d 17 -p SRM -e 120 -c 42 -i 5 -a 42 r -t 20.674908949648003 -s 16 -d 18 -p SRM -e 120 -c 42 -i 5 -a 42 r -t 20.674908949648003 -s 26 -d 27 -p SRM -e 120 -c 42 -i 5 -a 42 r -t 20.674908949648003 -s 26 -d 28 -p SRM -e 120 -c 42 -i 5 -a 42 + -t 21.215458867473998 -s 17 -d 16 -p SRM -e 136 -c 42 -i 6 -a 42 + -t 21.215458867473998 -s 27 -d 26 -p SRM -e 136 -c 42 -i 6 -a 42 - -t 21.215458867473998 -s 17 -d 16 -p SRM -e 136 -c 42 -i 6 -a 42 - -t 21.215458867473998 -s 27 -d 26 -p SRM -e 136 -c 42 -i 6 -a 42 h -t 21.215458867473998 -s 17 -d 16 -p SRM -e 136 -c 42 -i 6 -a 42 h -t 21.215458867473998 -s 27 -d 26 -p SRM -e 136 -c 42 -i 6 -a 42 + -t 21.217185623346001 -s 18 -d 16 -p SRM -e 136 -c 42 -i 7 -a 42 + -t 21.217185623346001 -s 28 -d 26 -p SRM -e 136 -c 42 -i 7 -a 42 - -t 21.217185623346001 -s 18 -d 16 -p SRM -e 136 -c 42 -i 7 -a 42 - -t 21.217185623346001 -s 28 -d 26 -p SRM -e 136 -c 42 -i 7 -a 42 h -t 21.217185623346001 -s 18 -d 16 -p SRM -e 136 -c 42 -i 7 -a 42 h -t 21.217185623346001 -s 28 -d 26 -p SRM -e 136 -c 42 -i 7 -a 42 r -t 21.226546867473999 -s 17 -d 16 -p SRM -e 136 -c 42 -i 6 -a 42 + -t 21.226546867473999 -s 16 -d 13 -p SRM -e 136 -c 42 -i 6 -a 42 - -t 21.226546867473999 -s 16 -d 13 -p SRM -e 136 -c 42 -i 6 -a 42 h -t 21.226546867473999 -s 16 -d 13 -p SRM -e 136 -c 42 -i 6 -a 42 + -t 21.226546867473999 -s 16 -d 18 -p SRM -e 136 -c 42 -i 6 -a 42 - -t 21.226546867473999 -s 16 -d 18 -p SRM -e 136 -c 42 -i 6 -a 42 h -t 21.226546867473999 -s 16 -d 18 -p SRM -e 136 -c 42 -i 6 -a 42 r -t 21.226546867473999 -s 27 -d 26 -p SRM -e 136 -c 42 -i 6 -a 42 + -t 21.226546867473999 -s 26 -d 23 -p SRM -e 136 -c 42 -i 6 -a 42 - -t 21.226546867473999 -s 26 -d 23 -p SRM -e 136 -c 42 -i 6 -a 42 h -t 21.226546867473999 -s 26 -d 23 -p SRM -e 136 -c 42 -i 6 -a 42 + -t 21.226546867473999 -s 26 -d 28 -p SRM -e 136 -c 42 -i 6 -a 42 - -t 21.226546867473999 -s 26 -d 28 -p SRM -e 136 -c 42 -i 6 -a 42 h -t 21.226546867473999 -s 26 -d 28 -p SRM -e 136 -c 42 -i 6 -a 42 r -t 21.228273623346002 -s 18 -d 16 -p SRM -e 136 -c 42 -i 7 -a 42 + -t 21.228273623346002 -s 16 -d 13 -p SRM -e 136 -c 42 -i 7 -a 42 - -t 21.228273623346002 -s 16 -d 13 -p SRM -e 136 -c 42 -i 7 -a 42 h -t 21.228273623346002 -s 16 -d 13 -p SRM -e 136 -c 42 -i 7 -a 42 + -t 21.228273623346002 -s 16 -d 17 -p SRM -e 136 -c 42 -i 7 -a 42 - -t 21.228273623346002 -s 16 -d 17 -p SRM -e 136 -c 42 -i 7 -a 42 h -t 21.228273623346002 -s 16 -d 17 -p SRM -e 136 -c 42 -i 7 -a 42 r -t 21.228273623346002 -s 28 -d 26 -p SRM -e 136 -c 42 -i 7 -a 42 + -t 21.228273623346002 -s 26 -d 23 -p SRM -e 136 -c 42 -i 7 -a 42 - -t 21.228273623346002 -s 26 -d 23 -p SRM -e 136 -c 42 -i 7 -a 42 h -t 21.228273623346002 -s 26 -d 23 -p SRM -e 136 -c 42 -i 7 -a 42 + -t 21.228273623346002 -s 26 -d 27 -p SRM -e 136 -c 42 -i 7 -a 42 - -t 21.228273623346002 -s 26 -d 27 -p SRM -e 136 -c 42 -i 7 -a 42 h -t 21.228273623346002 -s 26 -d 27 -p SRM -e 136 -c 42 -i 7 -a 42 r -t 21.237634867474 -s 16 -d 13 -p SRM -e 136 -c 42 -i 6 -a 42 + -t 21.237634867474 -s 13 -d 11 -p SRM -e 136 -c 42 -i 6 -a 42 - -t 21.237634867474 -s 13 -d 11 -p SRM -e 136 -c 42 -i 6 -a 42 h -t 21.237634867474 -s 13 -d 11 -p SRM -e 136 -c 42 -i 6 -a 42 + -t 21.237634867474 -s 13 -d 15 -p SRM -e 136 -c 42 -i 6 -a 42 - -t 21.237634867474 -s 13 -d 15 -p SRM -e 136 -c 42 -i 6 -a 42 h -t 21.237634867474 -s 13 -d 15 -p SRM -e 136 -c 42 -i 6 -a 42 r -t 21.237634867474 -s 16 -d 18 -p SRM -e 136 -c 42 -i 6 -a 42 r -t 21.237634867474 -s 26 -d 23 -p SRM -e 136 -c 42 -i 6 -a 42 + -t 21.237634867474 -s 23 -d 21 -p SRM -e 136 -c 42 -i 6 -a 42 - -t 21.237634867474 -s 23 -d 21 -p SRM -e 136 -c 42 -i 6 -a 42 h -t 21.237634867474 -s 23 -d 21 -p SRM -e 136 -c 42 -i 6 -a 42 + -t 21.237634867474 -s 23 -d 25 -p SRM -e 136 -c 42 -i 6 -a 42 - -t 21.237634867474 -s 23 -d 25 -p SRM -e 136 -c 42 -i 6 -a 42 h -t 21.237634867474 -s 23 -d 25 -p SRM -e 136 -c 42 -i 6 -a 42 r -t 21.237634867474 -s 26 -d 28 -p SRM -e 136 -c 42 -i 6 -a 42 r -t 21.239361623346003 -s 16 -d 13 -p SRM -e 136 -c 42 -i 7 -a 42 + -t 21.239361623346003 -s 13 -d 11 -p SRM -e 136 -c 42 -i 7 -a 42 - -t 21.239361623346003 -s 13 -d 11 -p SRM -e 136 -c 42 -i 7 -a 42 h -t 21.239361623346003 -s 13 -d 11 -p SRM -e 136 -c 42 -i 7 -a 42 + -t 21.239361623346003 -s 13 -d 15 -p SRM -e 136 -c 42 -i 7 -a 42 - -t 21.239361623346003 -s 13 -d 15 -p SRM -e 136 -c 42 -i 7 -a 42 h -t 21.239361623346003 -s 13 -d 15 -p SRM -e 136 -c 42 -i 7 -a 42 r -t 21.239361623346003 -s 16 -d 17 -p SRM -e 136 -c 42 -i 7 -a 42 r -t 21.239361623346003 -s 26 -d 23 -p SRM -e 136 -c 42 -i 7 -a 42 + -t 21.239361623346003 -s 23 -d 21 -p SRM -e 136 -c 42 -i 7 -a 42 - -t 21.239361623346003 -s 23 -d 21 -p SRM -e 136 -c 42 -i 7 -a 42 h -t 21.239361623346003 -s 23 -d 21 -p SRM -e 136 -c 42 -i 7 -a 42 + -t 21.239361623346003 -s 23 -d 25 -p SRM -e 136 -c 42 -i 7 -a 42 - -t 21.239361623346003 -s 23 -d 25 -p SRM -e 136 -c 42 -i 7 -a 42 h -t 21.239361623346003 -s 23 -d 25 -p SRM -e 136 -c 42 -i 7 -a 42 r -t 21.239361623346003 -s 26 -d 27 -p SRM -e 136 -c 42 -i 7 -a 42 r -t 21.248722867474001 -s 13 -d 11 -p SRM -e 136 -c 42 -i 6 -a 42 + -t 21.248722867474001 -s 11 -d 10 -p SRM -e 136 -c 42 -i 6 -a 42 - -t 21.248722867474001 -s 11 -d 10 -p SRM -e 136 -c 42 -i 6 -a 42 h -t 21.248722867474001 -s 11 -d 10 -p SRM -e 136 -c 42 -i 6 -a 42 + -t 21.248722867474001 -s 11 -d 14 -p SRM -e 136 -c 42 -i 6 -a 42 - -t 21.248722867474001 -s 11 -d 14 -p SRM -e 136 -c 42 -i 6 -a 42 h -t 21.248722867474001 -s 11 -d 14 -p SRM -e 136 -c 42 -i 6 -a 42 r -t 21.248722867474001 -s 13 -d 15 -p SRM -e 136 -c 42 -i 6 -a 42 r -t 21.248722867474001 -s 23 -d 21 -p SRM -e 136 -c 42 -i 6 -a 42 + -t 21.248722867474001 -s 21 -d 20 -p SRM -e 136 -c 42 -i 6 -a 42 - -t 21.248722867474001 -s 21 -d 20 -p SRM -e 136 -c 42 -i 6 -a 42 h -t 21.248722867474001 -s 21 -d 20 -p SRM -e 136 -c 42 -i 6 -a 42 + -t 21.248722867474001 -s 21 -d 24 -p SRM -e 136 -c 42 -i 6 -a 42 - -t 21.248722867474001 -s 21 -d 24 -p SRM -e 136 -c 42 -i 6 -a 42 h -t 21.248722867474001 -s 21 -d 24 -p SRM -e 136 -c 42 -i 6 -a 42 r -t 21.248722867474001 -s 23 -d 25 -p SRM -e 136 -c 42 -i 6 -a 42 r -t 21.250449623346004 -s 13 -d 11 -p SRM -e 136 -c 42 -i 7 -a 42 + -t 21.250449623346004 -s 11 -d 10 -p SRM -e 136 -c 42 -i 7 -a 42 - -t 21.250449623346004 -s 11 -d 10 -p SRM -e 136 -c 42 -i 7 -a 42 h -t 21.250449623346004 -s 11 -d 10 -p SRM -e 136 -c 42 -i 7 -a 42 + -t 21.250449623346004 -s 11 -d 14 -p SRM -e 136 -c 42 -i 7 -a 42 - -t 21.250449623346004 -s 11 -d 14 -p SRM -e 136 -c 42 -i 7 -a 42 h -t 21.250449623346004 -s 11 -d 14 -p SRM -e 136 -c 42 -i 7 -a 42 r -t 21.250449623346004 -s 13 -d 15 -p SRM -e 136 -c 42 -i 7 -a 42 r -t 21.250449623346004 -s 23 -d 21 -p SRM -e 136 -c 42 -i 7 -a 42 + -t 21.250449623346004 -s 21 -d 20 -p SRM -e 136 -c 42 -i 7 -a 42 - -t 21.250449623346004 -s 21 -d 20 -p SRM -e 136 -c 42 -i 7 -a 42 h -t 21.250449623346004 -s 21 -d 20 -p SRM -e 136 -c 42 -i 7 -a 42 + -t 21.250449623346004 -s 21 -d 24 -p SRM -e 136 -c 42 -i 7 -a 42 - -t 21.250449623346004 -s 21 -d 24 -p SRM -e 136 -c 42 -i 7 -a 42 h -t 21.250449623346004 -s 21 -d 24 -p SRM -e 136 -c 42 -i 7 -a 42 r -t 21.250449623346004 -s 23 -d 25 -p SRM -e 136 -c 42 -i 7 -a 42 r -t 21.259810867474002 -s 11 -d 10 -p SRM -e 136 -c 42 -i 6 -a 42 + -t 21.259810867474002 -s 10 -d 12 -p SRM -e 136 -c 42 -i 6 -a 42 - -t 21.259810867474002 -s 10 -d 12 -p SRM -e 136 -c 42 -i 6 -a 42 h -t 21.259810867474002 -s 10 -d 12 -p SRM -e 136 -c 42 -i 6 -a 42 r -t 21.259810867474002 -s 11 -d 14 -p SRM -e 136 -c 42 -i 6 -a 42 r -t 21.259810867474002 -s 21 -d 20 -p SRM -e 136 -c 42 -i 6 -a 42 + -t 21.259810867474002 -s 20 -d 22 -p SRM -e 136 -c 42 -i 6 -a 42 - -t 21.259810867474002 -s 20 -d 22 -p SRM -e 136 -c 42 -i 6 -a 42 h -t 21.259810867474002 -s 20 -d 22 -p SRM -e 136 -c 42 -i 6 -a 42 r -t 21.259810867474002 -s 21 -d 24 -p SRM -e 136 -c 42 -i 6 -a 42 r -t 21.261537623346005 -s 11 -d 10 -p SRM -e 136 -c 42 -i 7 -a 42 + -t 21.261537623346005 -s 10 -d 12 -p SRM -e 136 -c 42 -i 7 -a 42 - -t 21.261537623346005 -s 10 -d 12 -p SRM -e 136 -c 42 -i 7 -a 42 h -t 21.261537623346005 -s 10 -d 12 -p SRM -e 136 -c 42 -i 7 -a 42 r -t 21.261537623346005 -s 11 -d 14 -p SRM -e 136 -c 42 -i 7 -a 42 r -t 21.261537623346005 -s 21 -d 20 -p SRM -e 136 -c 42 -i 7 -a 42 + -t 21.261537623346005 -s 20 -d 22 -p SRM -e 136 -c 42 -i 7 -a 42 - -t 21.261537623346005 -s 20 -d 22 -p SRM -e 136 -c 42 -i 7 -a 42 h -t 21.261537623346005 -s 20 -d 22 -p SRM -e 136 -c 42 -i 7 -a 42 r -t 21.261537623346005 -s 21 -d 24 -p SRM -e 136 -c 42 -i 7 -a 42 r -t 21.270898867474003 -s 10 -d 12 -p SRM -e 136 -c 42 -i 6 -a 42 r -t 21.270898867474003 -s 20 -d 22 -p SRM -e 136 -c 42 -i 6 -a 42 r -t 21.272625623346006 -s 10 -d 12 -p SRM -e 136 -c 42 -i 7 -a 42 r -t 21.272625623346006 -s 20 -d 22 -p SRM -e 136 -c 42 -i 7 -a 42 + -t 21.522421288779999 -s 12 -d 10 -p SRM -e 168 -c 42 -i 8 -a 42 + -t 21.522421288779999 -s 22 -d 20 -p SRM -e 168 -c 42 -i 8 -a 42 - -t 21.522421288779999 -s 12 -d 10 -p SRM -e 168 -c 42 -i 8 -a 42 - -t 21.522421288779999 -s 22 -d 20 -p SRM -e 168 -c 42 -i 8 -a 42 h -t 21.522421288779999 -s 12 -d 10 -p SRM -e 168 -c 42 -i 8 -a 42 h -t 21.522421288779999 -s 22 -d 20 -p SRM -e 168 -c 42 -i 8 -a 42 r -t 21.53376528878 -s 12 -d 10 -p SRM -e 168 -c 42 -i 8 -a 42 + -t 21.53376528878 -s 10 -d 11 -p SRM -e 168 -c 42 -i 8 -a 42 - -t 21.53376528878 -s 10 -d 11 -p SRM -e 168 -c 42 -i 8 -a 42 h -t 21.53376528878 -s 10 -d 11 -p SRM -e 168 -c 42 -i 8 -a 42 r -t 21.53376528878 -s 22 -d 20 -p SRM -e 168 -c 42 -i 8 -a 42 + -t 21.53376528878 -s 20 -d 21 -p SRM -e 168 -c 42 -i 8 -a 42 - -t 21.53376528878 -s 20 -d 21 -p SRM -e 168 -c 42 -i 8 -a 42 h -t 21.53376528878 -s 20 -d 21 -p SRM -e 168 -c 42 -i 8 -a 42 r -t 21.545109288780001 -s 10 -d 11 -p SRM -e 168 -c 42 -i 8 -a 42 + -t 21.545109288780001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 8 -a 42 - -t 21.545109288780001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 8 -a 42 h -t 21.545109288780001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 8 -a 42 + -t 21.545109288780001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 8 -a 42 - -t 21.545109288780001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 8 -a 42 h -t 21.545109288780001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 8 -a 42 r -t 21.545109288780001 -s 20 -d 21 -p SRM -e 168 -c 42 -i 8 -a 42 + -t 21.545109288780001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 8 -a 42 - -t 21.545109288780001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 8 -a 42 h -t 21.545109288780001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 8 -a 42 + -t 21.545109288780001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 8 -a 42 - -t 21.545109288780001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 8 -a 42 h -t 21.545109288780001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 8 -a 42 r -t 21.556453288780002 -s 11 -d 13 -p SRM -e 168 -c 42 -i 8 -a 42 + -t 21.556453288780002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 8 -a 42 - -t 21.556453288780002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 8 -a 42 h -t 21.556453288780002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 8 -a 42 + -t 21.556453288780002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 8 -a 42 - -t 21.556453288780002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 8 -a 42 h -t 21.556453288780002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 8 -a 42 r -t 21.556453288780002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 8 -a 42 r -t 21.556453288780002 -s 21 -d 23 -p SRM -e 168 -c 42 -i 8 -a 42 + -t 21.556453288780002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 8 -a 42 - -t 21.556453288780002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 8 -a 42 h -t 21.556453288780002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 8 -a 42 + -t 21.556453288780002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 8 -a 42 - -t 21.556453288780002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 8 -a 42 h -t 21.556453288780002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 8 -a 42 r -t 21.556453288780002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 8 -a 42 r -t 21.567797288780003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 8 -a 42 r -t 21.567797288780003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 8 -a 42 + -t 21.567797288780003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 8 -a 42 - -t 21.567797288780003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 8 -a 42 h -t 21.567797288780003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 8 -a 42 + -t 21.567797288780003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 8 -a 42 - -t 21.567797288780003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 8 -a 42 h -t 21.567797288780003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 8 -a 42 r -t 21.567797288780003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 8 -a 42 r -t 21.567797288780003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 8 -a 42 + -t 21.567797288780003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 8 -a 42 - -t 21.567797288780003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 8 -a 42 h -t 21.567797288780003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 8 -a 42 + -t 21.567797288780003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 8 -a 42 - -t 21.567797288780003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 8 -a 42 h -t 21.567797288780003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 8 -a 42 r -t 21.579141288780004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 8 -a 42 r -t 21.579141288780004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 8 -a 42 r -t 21.579141288780004 -s 26 -d 27 -p SRM -e 168 -c 42 -i 8 -a 42 r -t 21.579141288780004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 8 -a 42 v -t 30 sim_annotation 30 0 Source started v -t 30 sim_annotation 30 1 Source started + -t 37.220385382778808 -s 12 -d 10 -p cbr -e 1280 -c 2 -i 9 -a 2 + -t 37.220385382778808 -s 22 -d 20 -p cbr -e 1280 -c 2 -i 9 -a 2 - -t 37.220385382778808 -s 12 -d 10 -p cbr -e 1280 -c 2 -i 9 -a 2 - -t 37.220385382778808 -s 22 -d 20 -p cbr -e 1280 -c 2 -i 9 -a 2 h -t 37.220385382778808 -s 12 -d 10 -p cbr -e 1280 -c 2 -i 9 -a 2 h -t 37.220385382778808 -s 22 -d 20 -p cbr -e 1280 -c 2 -i 9 -a 2 r -t 37.240625382778809 -s 12 -d 10 -p cbr -e 1280 -c 2 -i 9 -a 2 + -t 37.240625382778809 -s 10 -d 11 -p cbr -e 1280 -c 2 -i 9 -a 2 - -t 37.240625382778809 -s 10 -d 11 -p cbr -e 1280 -c 2 -i 9 -a 2 h -t 37.240625382778809 -s 10 -d 11 -p cbr -e 1280 -c 2 -i 9 -a 2 r -t 37.240625382778809 -s 22 -d 20 -p cbr -e 1280 -c 2 -i 9 -a 2 + -t 37.240625382778809 -s 20 -d 21 -p cbr -e 1280 -c 2 -i 9 -a 2 - -t 37.240625382778809 -s 20 -d 21 -p cbr -e 1280 -c 2 -i 9 -a 2 h -t 37.240625382778809 -s 20 -d 21 -p cbr -e 1280 -c 2 -i 9 -a 2 r -t 37.26086538277881 -s 10 -d 11 -p cbr -e 1280 -c 2 -i 9 -a 2 + -t 37.26086538277881 -s 11 -d 13 -p cbr -e 1280 -c 2 -i 9 -a 2 - -t 37.26086538277881 -s 11 -d 13 -p cbr -e 1280 -c 2 -i 9 -a 2 h -t 37.26086538277881 -s 11 -d 13 -p cbr -e 1280 -c 2 -i 9 -a 2 + -t 37.26086538277881 -s 11 -d 14 -p cbr -e 1280 -c 2 -i 9 -a 2 - -t 37.26086538277881 -s 11 -d 14 -p cbr -e 1280 -c 2 -i 9 -a 2 h -t 37.26086538277881 -s 11 -d 14 -p cbr -e 1280 -c 2 -i 9 -a 2 r -t 37.26086538277881 -s 20 -d 21 -p cbr -e 1280 -c 2 -i 9 -a 2 + -t 37.26086538277881 -s 21 -d 23 -p cbr -e 1280 -c 2 -i 9 -a 2 - -t 37.26086538277881 -s 21 -d 23 -p cbr -e 1280 -c 2 -i 9 -a 2 h -t 37.26086538277881 -s 21 -d 23 -p cbr -e 1280 -c 2 -i 9 -a 2 + -t 37.26086538277881 -s 21 -d 24 -p cbr -e 1280 -c 2 -i 9 -a 2 - -t 37.26086538277881 -s 21 -d 24 -p cbr -e 1280 -c 2 -i 9 -a 2 h -t 37.26086538277881 -s 21 -d 24 -p cbr -e 1280 -c 2 -i 9 -a 2 r -t 37.281105382778811 -s 11 -d 13 -p cbr -e 1280 -c 2 -i 9 -a 2 + -t 37.281105382778811 -s 13 -d 15 -p cbr -e 1280 -c 2 -i 9 -a 2 - -t 37.281105382778811 -s 13 -d 15 -p cbr -e 1280 -c 2 -i 9 -a 2 h -t 37.281105382778811 -s 13 -d 15 -p cbr -e 1280 -c 2 -i 9 -a 2 + -t 37.281105382778811 -s 13 -d 16 -p cbr -e 1280 -c 2 -i 9 -a 2 - -t 37.281105382778811 -s 13 -d 16 -p cbr -e 1280 -c 2 -i 9 -a 2 h -t 37.281105382778811 -s 13 -d 16 -p cbr -e 1280 -c 2 -i 9 -a 2 r -t 37.281105382778811 -s 11 -d 14 -p cbr -e 1280 -c 2 -i 9 -a 2 r -t 37.281105382778811 -s 21 -d 23 -p cbr -e 1280 -c 2 -i 9 -a 2 + -t 37.281105382778811 -s 23 -d 25 -p cbr -e 1280 -c 2 -i 9 -a 2 - -t 37.281105382778811 -s 23 -d 25 -p cbr -e 1280 -c 2 -i 9 -a 2 h -t 37.281105382778811 -s 23 -d 25 -p cbr -e 1280 -c 2 -i 9 -a 2 + -t 37.281105382778811 -s 23 -d 26 -p cbr -e 1280 -c 2 -i 9 -a 2 - -t 37.281105382778811 -s 23 -d 26 -p cbr -e 1280 -c 2 -i 9 -a 2 h -t 37.281105382778811 -s 23 -d 26 -p cbr -e 1280 -c 2 -i 9 -a 2 r -t 37.281105382778811 -s 21 -d 24 -p cbr -e 1280 -c 2 -i 9 -a 2 r -t 37.301345382778813 -s 13 -d 15 -p cbr -e 1280 -c 2 -i 9 -a 2 r -t 37.301345382778813 -s 13 -d 16 -p cbr -e 1280 -c 2 -i 9 -a 2 + -t 37.301345382778813 -s 16 -d 17 -p cbr -e 1280 -c 2 -i 9 -a 2 - -t 37.301345382778813 -s 16 -d 17 -p cbr -e 1280 -c 2 -i 9 -a 2 h -t 37.301345382778813 -s 16 -d 17 -p cbr -e 1280 -c 2 -i 9 -a 2 + -t 37.301345382778813 -s 16 -d 18 -p cbr -e 1280 -c 2 -i 9 -a 2 - -t 37.301345382778813 -s 16 -d 18 -p cbr -e 1280 -c 2 -i 9 -a 2 h -t 37.301345382778813 -s 16 -d 18 -p cbr -e 1280 -c 2 -i 9 -a 2 r -t 37.301345382778813 -s 23 -d 25 -p cbr -e 1280 -c 2 -i 9 -a 2 r -t 37.301345382778813 -s 23 -d 26 -p cbr -e 1280 -c 2 -i 9 -a 2 + -t 37.301345382778813 -s 26 -d 27 -p cbr -e 1280 -c 2 -i 9 -a 2 - -t 37.301345382778813 -s 26 -d 27 -p cbr -e 1280 -c 2 -i 9 -a 2 h -t 37.301345382778813 -s 26 -d 27 -p cbr -e 1280 -c 2 -i 9 -a 2 + -t 37.301345382778813 -s 26 -d 28 -p cbr -e 1280 -c 2 -i 9 -a 2 - -t 37.301345382778813 -s 26 -d 28 -p cbr -e 1280 -c 2 -i 9 -a 2 h -t 37.301345382778813 -s 26 -d 28 -p cbr -e 1280 -c 2 -i 9 -a 2 r -t 37.321585382778814 -s 16 -d 17 -p cbr -e 1280 -c 2 -i 9 -a 2 r -t 37.321585382778814 -s 16 -d 18 -p cbr -e 1280 -c 2 -i 9 -a 2 r -t 37.321585382778814 -s 26 -d 27 -p cbr -e 1280 -c 2 -i 9 -a 2 r -t 37.321585382778814 -s 26 -d 28 -p cbr -e 1280 -c 2 -i 9 -a 2 + -t 38.222186774816997 -s 16 -d 13 -p SRM -e 168 -c 42 -i 10 -a 42 + -t 38.222186774816997 -s 26 -d 23 -p SRM -e 168 -c 42 -i 10 -a 42 - -t 38.222186774816997 -s 16 -d 13 -p SRM -e 168 -c 42 -i 10 -a 42 - -t 38.222186774816997 -s 26 -d 23 -p SRM -e 168 -c 42 -i 10 -a 42 h -t 38.222186774816997 -s 16 -d 13 -p SRM -e 168 -c 42 -i 10 -a 42 + -t 38.222186774816997 -s 16 -d 17 -p SRM -e 168 -c 42 -i 10 -a 42 - -t 38.222186774816997 -s 16 -d 17 -p SRM -e 168 -c 42 -i 10 -a 42 h -t 38.222186774816997 -s 16 -d 17 -p SRM -e 168 -c 42 -i 10 -a 42 + -t 38.222186774816997 -s 16 -d 18 -p SRM -e 168 -c 42 -i 10 -a 42 - -t 38.222186774816997 -s 16 -d 18 -p SRM -e 168 -c 42 -i 10 -a 42 h -t 38.222186774816997 -s 16 -d 18 -p SRM -e 168 -c 42 -i 10 -a 42 h -t 38.222186774816997 -s 26 -d 23 -p SRM -e 168 -c 42 -i 10 -a 42 + -t 38.222186774816997 -s 26 -d 27 -p SRM -e 168 -c 42 -i 10 -a 42 - -t 38.222186774816997 -s 26 -d 27 -p SRM -e 168 -c 42 -i 10 -a 42 h -t 38.222186774816997 -s 26 -d 27 -p SRM -e 168 -c 42 -i 10 -a 42 + -t 38.222186774816997 -s 26 -d 28 -p SRM -e 168 -c 42 -i 10 -a 42 - -t 38.222186774816997 -s 26 -d 28 -p SRM -e 168 -c 42 -i 10 -a 42 h -t 38.222186774816997 -s 26 -d 28 -p SRM -e 168 -c 42 -i 10 -a 42 r -t 38.233530774816998 -s 16 -d 13 -p SRM -e 168 -c 42 -i 10 -a 42 + -t 38.233530774816998 -s 13 -d 11 -p SRM -e 168 -c 42 -i 10 -a 42 - -t 38.233530774816998 -s 13 -d 11 -p SRM -e 168 -c 42 -i 10 -a 42 h -t 38.233530774816998 -s 13 -d 11 -p SRM -e 168 -c 42 -i 10 -a 42 + -t 38.233530774816998 -s 13 -d 15 -p SRM -e 168 -c 42 -i 10 -a 42 - -t 38.233530774816998 -s 13 -d 15 -p SRM -e 168 -c 42 -i 10 -a 42 h -t 38.233530774816998 -s 13 -d 15 -p SRM -e 168 -c 42 -i 10 -a 42 r -t 38.233530774816998 -s 16 -d 17 -p SRM -e 168 -c 42 -i 10 -a 42 r -t 38.233530774816998 -s 16 -d 18 -p SRM -e 168 -c 42 -i 10 -a 42 r -t 38.233530774816998 -s 26 -d 23 -p SRM -e 168 -c 42 -i 10 -a 42 + -t 38.233530774816998 -s 23 -d 21 -p SRM -e 168 -c 42 -i 10 -a 42 - -t 38.233530774816998 -s 23 -d 21 -p SRM -e 168 -c 42 -i 10 -a 42 h -t 38.233530774816998 -s 23 -d 21 -p SRM -e 168 -c 42 -i 10 -a 42 + -t 38.233530774816998 -s 23 -d 25 -p SRM -e 168 -c 42 -i 10 -a 42 - -t 38.233530774816998 -s 23 -d 25 -p SRM -e 168 -c 42 -i 10 -a 42 h -t 38.233530774816998 -s 23 -d 25 -p SRM -e 168 -c 42 -i 10 -a 42 r -t 38.233530774816998 -s 26 -d 27 -p SRM -e 168 -c 42 -i 10 -a 42 r -t 38.233530774816998 -s 26 -d 28 -p SRM -e 168 -c 42 -i 10 -a 42 r -t 38.244874774816999 -s 13 -d 11 -p SRM -e 168 -c 42 -i 10 -a 42 + -t 38.244874774816999 -s 11 -d 10 -p SRM -e 168 -c 42 -i 10 -a 42 - -t 38.244874774816999 -s 11 -d 10 -p SRM -e 168 -c 42 -i 10 -a 42 h -t 38.244874774816999 -s 11 -d 10 -p SRM -e 168 -c 42 -i 10 -a 42 + -t 38.244874774816999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 10 -a 42 - -t 38.244874774816999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 10 -a 42 h -t 38.244874774816999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 10 -a 42 r -t 38.244874774816999 -s 13 -d 15 -p SRM -e 168 -c 42 -i 10 -a 42 r -t 38.244874774816999 -s 23 -d 21 -p SRM -e 168 -c 42 -i 10 -a 42 + -t 38.244874774816999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 10 -a 42 - -t 38.244874774816999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 10 -a 42 h -t 38.244874774816999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 10 -a 42 + -t 38.244874774816999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 10 -a 42 - -t 38.244874774816999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 10 -a 42 h -t 38.244874774816999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 10 -a 42 r -t 38.244874774816999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 10 -a 42 r -t 38.256218774817 -s 11 -d 10 -p SRM -e 168 -c 42 -i 10 -a 42 + -t 38.256218774817 -s 10 -d 12 -p SRM -e 168 -c 42 -i 10 -a 42 - -t 38.256218774817 -s 10 -d 12 -p SRM -e 168 -c 42 -i 10 -a 42 h -t 38.256218774817 -s 10 -d 12 -p SRM -e 168 -c 42 -i 10 -a 42 r -t 38.256218774817 -s 11 -d 14 -p SRM -e 168 -c 42 -i 10 -a 42 r -t 38.256218774817 -s 21 -d 20 -p SRM -e 168 -c 42 -i 10 -a 42 + -t 38.256218774817 -s 20 -d 22 -p SRM -e 168 -c 42 -i 10 -a 42 - -t 38.256218774817 -s 20 -d 22 -p SRM -e 168 -c 42 -i 10 -a 42 h -t 38.256218774817 -s 20 -d 22 -p SRM -e 168 -c 42 -i 10 -a 42 r -t 38.256218774817 -s 21 -d 24 -p SRM -e 168 -c 42 -i 10 -a 42 r -t 38.267562774817002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 10 -a 42 r -t 38.267562774817002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 10 -a 42 + -t 38.472888969804004 -s 13 -d 11 -p SRM -e 168 -c 42 -i 11 -a 42 + -t 38.472888969804004 -s 23 -d 21 -p SRM -e 168 -c 42 -i 11 -a 42 - -t 38.472888969804004 -s 13 -d 11 -p SRM -e 168 -c 42 -i 11 -a 42 - -t 38.472888969804004 -s 23 -d 21 -p SRM -e 168 -c 42 -i 11 -a 42 h -t 38.472888969804004 -s 13 -d 11 -p SRM -e 168 -c 42 -i 11 -a 42 + -t 38.472888969804004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 11 -a 42 - -t 38.472888969804004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 11 -a 42 h -t 38.472888969804004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 11 -a 42 + -t 38.472888969804004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 11 -a 42 - -t 38.472888969804004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 11 -a 42 h -t 38.472888969804004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 11 -a 42 h -t 38.472888969804004 -s 23 -d 21 -p SRM -e 168 -c 42 -i 11 -a 42 + -t 38.472888969804004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 11 -a 42 - -t 38.472888969804004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 11 -a 42 h -t 38.472888969804004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 11 -a 42 + -t 38.472888969804004 -s 23 -d 26 -p SRM -e 168 -c 42 -i 11 -a 42 - -t 38.472888969804004 -s 23 -d 26 -p SRM -e 168 -c 42 -i 11 -a 42 h -t 38.472888969804004 -s 23 -d 26 -p SRM -e 168 -c 42 -i 11 -a 42 r -t 38.484232969804005 -s 13 -d 11 -p SRM -e 168 -c 42 -i 11 -a 42 + -t 38.484232969804005 -s 11 -d 10 -p SRM -e 168 -c 42 -i 11 -a 42 - -t 38.484232969804005 -s 11 -d 10 -p SRM -e 168 -c 42 -i 11 -a 42 h -t 38.484232969804005 -s 11 -d 10 -p SRM -e 168 -c 42 -i 11 -a 42 + -t 38.484232969804005 -s 11 -d 14 -p SRM -e 168 -c 42 -i 11 -a 42 - -t 38.484232969804005 -s 11 -d 14 -p SRM -e 168 -c 42 -i 11 -a 42 h -t 38.484232969804005 -s 11 -d 14 -p SRM -e 168 -c 42 -i 11 -a 42 r -t 38.484232969804005 -s 13 -d 15 -p SRM -e 168 -c 42 -i 11 -a 42 r -t 38.484232969804005 -s 13 -d 16 -p SRM -e 168 -c 42 -i 11 -a 42 + -t 38.484232969804005 -s 16 -d 17 -p SRM -e 168 -c 42 -i 11 -a 42 - -t 38.484232969804005 -s 16 -d 17 -p SRM -e 168 -c 42 -i 11 -a 42 h -t 38.484232969804005 -s 16 -d 17 -p SRM -e 168 -c 42 -i 11 -a 42 + -t 38.484232969804005 -s 16 -d 18 -p SRM -e 168 -c 42 -i 11 -a 42 - -t 38.484232969804005 -s 16 -d 18 -p SRM -e 168 -c 42 -i 11 -a 42 h -t 38.484232969804005 -s 16 -d 18 -p SRM -e 168 -c 42 -i 11 -a 42 r -t 38.484232969804005 -s 23 -d 21 -p SRM -e 168 -c 42 -i 11 -a 42 + -t 38.484232969804005 -s 21 -d 20 -p SRM -e 168 -c 42 -i 11 -a 42 - -t 38.484232969804005 -s 21 -d 20 -p SRM -e 168 -c 42 -i 11 -a 42 h -t 38.484232969804005 -s 21 -d 20 -p SRM -e 168 -c 42 -i 11 -a 42 + -t 38.484232969804005 -s 21 -d 24 -p SRM -e 168 -c 42 -i 11 -a 42 - -t 38.484232969804005 -s 21 -d 24 -p SRM -e 168 -c 42 -i 11 -a 42 h -t 38.484232969804005 -s 21 -d 24 -p SRM -e 168 -c 42 -i 11 -a 42 r -t 38.484232969804005 -s 23 -d 25 -p SRM -e 168 -c 42 -i 11 -a 42 r -t 38.484232969804005 -s 23 -d 26 -p SRM -e 168 -c 42 -i 11 -a 42 + -t 38.484232969804005 -s 26 -d 27 -p SRM -e 168 -c 42 -i 11 -a 42 - -t 38.484232969804005 -s 26 -d 27 -p SRM -e 168 -c 42 -i 11 -a 42 h -t 38.484232969804005 -s 26 -d 27 -p SRM -e 168 -c 42 -i 11 -a 42 + -t 38.484232969804005 -s 26 -d 28 -p SRM -e 168 -c 42 -i 11 -a 42 - -t 38.484232969804005 -s 26 -d 28 -p SRM -e 168 -c 42 -i 11 -a 42 h -t 38.484232969804005 -s 26 -d 28 -p SRM -e 168 -c 42 -i 11 -a 42 r -t 38.495576969804006 -s 11 -d 10 -p SRM -e 168 -c 42 -i 11 -a 42 + -t 38.495576969804006 -s 10 -d 12 -p SRM -e 168 -c 42 -i 11 -a 42 - -t 38.495576969804006 -s 10 -d 12 -p SRM -e 168 -c 42 -i 11 -a 42 h -t 38.495576969804006 -s 10 -d 12 -p SRM -e 168 -c 42 -i 11 -a 42 r -t 38.495576969804006 -s 11 -d 14 -p SRM -e 168 -c 42 -i 11 -a 42 r -t 38.495576969804006 -s 16 -d 17 -p SRM -e 168 -c 42 -i 11 -a 42 r -t 38.495576969804006 -s 16 -d 18 -p SRM -e 168 -c 42 -i 11 -a 42 r -t 38.495576969804006 -s 21 -d 20 -p SRM -e 168 -c 42 -i 11 -a 42 + -t 38.495576969804006 -s 20 -d 22 -p SRM -e 168 -c 42 -i 11 -a 42 - -t 38.495576969804006 -s 20 -d 22 -p SRM -e 168 -c 42 -i 11 -a 42 h -t 38.495576969804006 -s 20 -d 22 -p SRM -e 168 -c 42 -i 11 -a 42 r -t 38.495576969804006 -s 21 -d 24 -p SRM -e 168 -c 42 -i 11 -a 42 r -t 38.495576969804006 -s 26 -d 27 -p SRM -e 168 -c 42 -i 11 -a 42 r -t 38.495576969804006 -s 26 -d 28 -p SRM -e 168 -c 42 -i 11 -a 42 r -t 38.506920969804007 -s 10 -d 12 -p SRM -e 168 -c 42 -i 11 -a 42 r -t 38.506920969804007 -s 20 -d 22 -p SRM -e 168 -c 42 -i 11 -a 42 + -t 38.844915489826001 -s 14 -d 11 -p SRM -e 168 -c 42 -i 12 -a 42 + -t 38.844915489826001 -s 24 -d 21 -p SRM -e 168 -c 42 -i 12 -a 42 - -t 38.844915489826001 -s 14 -d 11 -p SRM -e 168 -c 42 -i 12 -a 42 - -t 38.844915489826001 -s 24 -d 21 -p SRM -e 168 -c 42 -i 12 -a 42 h -t 38.844915489826001 -s 14 -d 11 -p SRM -e 168 -c 42 -i 12 -a 42 h -t 38.844915489826001 -s 24 -d 21 -p SRM -e 168 -c 42 -i 12 -a 42 r -t 38.856259489826002 -s 14 -d 11 -p SRM -e 168 -c 42 -i 12 -a 42 + -t 38.856259489826002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 12 -a 42 - -t 38.856259489826002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 12 -a 42 h -t 38.856259489826002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 12 -a 42 + -t 38.856259489826002 -s 11 -d 13 -p SRM -e 168 -c 42 -i 12 -a 42 - -t 38.856259489826002 -s 11 -d 13 -p SRM -e 168 -c 42 -i 12 -a 42 h -t 38.856259489826002 -s 11 -d 13 -p SRM -e 168 -c 42 -i 12 -a 42 r -t 38.856259489826002 -s 24 -d 21 -p SRM -e 168 -c 42 -i 12 -a 42 + -t 38.856259489826002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 12 -a 42 - -t 38.856259489826002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 12 -a 42 h -t 38.856259489826002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 12 -a 42 + -t 38.856259489826002 -s 21 -d 23 -p SRM -e 168 -c 42 -i 12 -a 42 - -t 38.856259489826002 -s 21 -d 23 -p SRM -e 168 -c 42 -i 12 -a 42 h -t 38.856259489826002 -s 21 -d 23 -p SRM -e 168 -c 42 -i 12 -a 42 r -t 38.867603489826003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 12 -a 42 + -t 38.867603489826003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 12 -a 42 - -t 38.867603489826003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 12 -a 42 h -t 38.867603489826003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 12 -a 42 r -t 38.867603489826003 -s 11 -d 13 -p SRM -e 168 -c 42 -i 12 -a 42 + -t 38.867603489826003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 12 -a 42 - -t 38.867603489826003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 12 -a 42 h -t 38.867603489826003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 12 -a 42 + -t 38.867603489826003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 12 -a 42 - -t 38.867603489826003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 12 -a 42 h -t 38.867603489826003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 12 -a 42 r -t 38.867603489826003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 12 -a 42 + -t 38.867603489826003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 12 -a 42 - -t 38.867603489826003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 12 -a 42 h -t 38.867603489826003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 12 -a 42 r -t 38.867603489826003 -s 21 -d 23 -p SRM -e 168 -c 42 -i 12 -a 42 + -t 38.867603489826003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 12 -a 42 - -t 38.867603489826003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 12 -a 42 h -t 38.867603489826003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 12 -a 42 + -t 38.867603489826003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 12 -a 42 - -t 38.867603489826003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 12 -a 42 h -t 38.867603489826003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 12 -a 42 r -t 38.878947489826004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 12 -a 42 r -t 38.878947489826004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 12 -a 42 r -t 38.878947489826004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 12 -a 42 + -t 38.878947489826004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 12 -a 42 - -t 38.878947489826004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 12 -a 42 h -t 38.878947489826004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 12 -a 42 + -t 38.878947489826004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 12 -a 42 - -t 38.878947489826004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 12 -a 42 h -t 38.878947489826004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 12 -a 42 r -t 38.878947489826004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 12 -a 42 r -t 38.878947489826004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 12 -a 42 r -t 38.878947489826004 -s 23 -d 26 -p SRM -e 168 -c 42 -i 12 -a 42 + -t 38.878947489826004 -s 26 -d 27 -p SRM -e 168 -c 42 -i 12 -a 42 - -t 38.878947489826004 -s 26 -d 27 -p SRM -e 168 -c 42 -i 12 -a 42 h -t 38.878947489826004 -s 26 -d 27 -p SRM -e 168 -c 42 -i 12 -a 42 + -t 38.878947489826004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 12 -a 42 - -t 38.878947489826004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 12 -a 42 h -t 38.878947489826004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 12 -a 42 r -t 38.890291489826005 -s 16 -d 17 -p SRM -e 168 -c 42 -i 12 -a 42 r -t 38.890291489826005 -s 16 -d 18 -p SRM -e 168 -c 42 -i 12 -a 42 r -t 38.890291489826005 -s 26 -d 27 -p SRM -e 168 -c 42 -i 12 -a 42 r -t 38.890291489826005 -s 26 -d 28 -p SRM -e 168 -c 42 -i 12 -a 42 + -t 39.103816640844997 -s 11 -d 10 -p SRM -e 168 -c 42 -i 13 -a 42 + -t 39.103816640844997 -s 21 -d 20 -p SRM -e 168 -c 42 -i 13 -a 42 - -t 39.103816640844997 -s 11 -d 10 -p SRM -e 168 -c 42 -i 13 -a 42 - -t 39.103816640844997 -s 21 -d 20 -p SRM -e 168 -c 42 -i 13 -a 42 h -t 39.103816640844997 -s 11 -d 10 -p SRM -e 168 -c 42 -i 13 -a 42 + -t 39.103816640844997 -s 11 -d 13 -p SRM -e 168 -c 42 -i 13 -a 42 - -t 39.103816640844997 -s 11 -d 13 -p SRM -e 168 -c 42 -i 13 -a 42 h -t 39.103816640844997 -s 11 -d 13 -p SRM -e 168 -c 42 -i 13 -a 42 + -t 39.103816640844997 -s 11 -d 14 -p SRM -e 168 -c 42 -i 13 -a 42 - -t 39.103816640844997 -s 11 -d 14 -p SRM -e 168 -c 42 -i 13 -a 42 h -t 39.103816640844997 -s 11 -d 14 -p SRM -e 168 -c 42 -i 13 -a 42 h -t 39.103816640844997 -s 21 -d 20 -p SRM -e 168 -c 42 -i 13 -a 42 + -t 39.103816640844997 -s 21 -d 23 -p SRM -e 168 -c 42 -i 13 -a 42 - -t 39.103816640844997 -s 21 -d 23 -p SRM -e 168 -c 42 -i 13 -a 42 h -t 39.103816640844997 -s 21 -d 23 -p SRM -e 168 -c 42 -i 13 -a 42 + -t 39.103816640844997 -s 21 -d 24 -p SRM -e 168 -c 42 -i 13 -a 42 - -t 39.103816640844997 -s 21 -d 24 -p SRM -e 168 -c 42 -i 13 -a 42 h -t 39.103816640844997 -s 21 -d 24 -p SRM -e 168 -c 42 -i 13 -a 42 r -t 39.115160640844998 -s 11 -d 10 -p SRM -e 168 -c 42 -i 13 -a 42 + -t 39.115160640844998 -s 10 -d 12 -p SRM -e 168 -c 42 -i 13 -a 42 - -t 39.115160640844998 -s 10 -d 12 -p SRM -e 168 -c 42 -i 13 -a 42 h -t 39.115160640844998 -s 10 -d 12 -p SRM -e 168 -c 42 -i 13 -a 42 r -t 39.115160640844998 -s 11 -d 13 -p SRM -e 168 -c 42 -i 13 -a 42 + -t 39.115160640844998 -s 13 -d 15 -p SRM -e 168 -c 42 -i 13 -a 42 - -t 39.115160640844998 -s 13 -d 15 -p SRM -e 168 -c 42 -i 13 -a 42 h -t 39.115160640844998 -s 13 -d 15 -p SRM -e 168 -c 42 -i 13 -a 42 + -t 39.115160640844998 -s 13 -d 16 -p SRM -e 168 -c 42 -i 13 -a 42 - -t 39.115160640844998 -s 13 -d 16 -p SRM -e 168 -c 42 -i 13 -a 42 h -t 39.115160640844998 -s 13 -d 16 -p SRM -e 168 -c 42 -i 13 -a 42 r -t 39.115160640844998 -s 11 -d 14 -p SRM -e 168 -c 42 -i 13 -a 42 r -t 39.115160640844998 -s 21 -d 20 -p SRM -e 168 -c 42 -i 13 -a 42 + -t 39.115160640844998 -s 20 -d 22 -p SRM -e 168 -c 42 -i 13 -a 42 - -t 39.115160640844998 -s 20 -d 22 -p SRM -e 168 -c 42 -i 13 -a 42 h -t 39.115160640844998 -s 20 -d 22 -p SRM -e 168 -c 42 -i 13 -a 42 r -t 39.115160640844998 -s 21 -d 23 -p SRM -e 168 -c 42 -i 13 -a 42 + -t 39.115160640844998 -s 23 -d 25 -p SRM -e 168 -c 42 -i 13 -a 42 - -t 39.115160640844998 -s 23 -d 25 -p SRM -e 168 -c 42 -i 13 -a 42 h -t 39.115160640844998 -s 23 -d 25 -p SRM -e 168 -c 42 -i 13 -a 42 + -t 39.115160640844998 -s 23 -d 26 -p SRM -e 168 -c 42 -i 13 -a 42 - -t 39.115160640844998 -s 23 -d 26 -p SRM -e 168 -c 42 -i 13 -a 42 h -t 39.115160640844998 -s 23 -d 26 -p SRM -e 168 -c 42 -i 13 -a 42 r -t 39.115160640844998 -s 21 -d 24 -p SRM -e 168 -c 42 -i 13 -a 42 r -t 39.126504640844999 -s 10 -d 12 -p SRM -e 168 -c 42 -i 13 -a 42 r -t 39.126504640844999 -s 13 -d 15 -p SRM -e 168 -c 42 -i 13 -a 42 r -t 39.126504640844999 -s 13 -d 16 -p SRM -e 168 -c 42 -i 13 -a 42 + -t 39.126504640844999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 13 -a 42 - -t 39.126504640844999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 13 -a 42 h -t 39.126504640844999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 13 -a 42 + -t 39.126504640844999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 13 -a 42 - -t 39.126504640844999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 13 -a 42 h -t 39.126504640844999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 13 -a 42 r -t 39.126504640844999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 13 -a 42 r -t 39.126504640844999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 13 -a 42 r -t 39.126504640844999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 13 -a 42 + -t 39.126504640844999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 13 -a 42 - -t 39.126504640844999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 13 -a 42 h -t 39.126504640844999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 13 -a 42 + -t 39.126504640844999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 13 -a 42 - -t 39.126504640844999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 13 -a 42 h -t 39.126504640844999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 13 -a 42 r -t 39.137848640845 -s 16 -d 17 -p SRM -e 168 -c 42 -i 13 -a 42 r -t 39.137848640845 -s 16 -d 18 -p SRM -e 168 -c 42 -i 13 -a 42 r -t 39.137848640845 -s 26 -d 27 -p SRM -e 168 -c 42 -i 13 -a 42 r -t 39.137848640845 -s 26 -d 28 -p SRM -e 168 -c 42 -i 13 -a 42 + -t 39.553214033624997 -s 12 -d 10 -p SRM -e 168 -c 42 -i 14 -a 42 + -t 39.553214033624997 -s 22 -d 20 -p SRM -e 168 -c 42 -i 14 -a 42 - -t 39.553214033624997 -s 12 -d 10 -p SRM -e 168 -c 42 -i 14 -a 42 - -t 39.553214033624997 -s 22 -d 20 -p SRM -e 168 -c 42 -i 14 -a 42 h -t 39.553214033624997 -s 12 -d 10 -p SRM -e 168 -c 42 -i 14 -a 42 h -t 39.553214033624997 -s 22 -d 20 -p SRM -e 168 -c 42 -i 14 -a 42 r -t 39.564558033624998 -s 12 -d 10 -p SRM -e 168 -c 42 -i 14 -a 42 + -t 39.564558033624998 -s 10 -d 11 -p SRM -e 168 -c 42 -i 14 -a 42 - -t 39.564558033624998 -s 10 -d 11 -p SRM -e 168 -c 42 -i 14 -a 42 h -t 39.564558033624998 -s 10 -d 11 -p SRM -e 168 -c 42 -i 14 -a 42 r -t 39.564558033624998 -s 22 -d 20 -p SRM -e 168 -c 42 -i 14 -a 42 + -t 39.564558033624998 -s 20 -d 21 -p SRM -e 168 -c 42 -i 14 -a 42 - -t 39.564558033624998 -s 20 -d 21 -p SRM -e 168 -c 42 -i 14 -a 42 h -t 39.564558033624998 -s 20 -d 21 -p SRM -e 168 -c 42 -i 14 -a 42 r -t 39.575902033624999 -s 10 -d 11 -p SRM -e 168 -c 42 -i 14 -a 42 + -t 39.575902033624999 -s 11 -d 13 -p SRM -e 168 -c 42 -i 14 -a 42 - -t 39.575902033624999 -s 11 -d 13 -p SRM -e 168 -c 42 -i 14 -a 42 h -t 39.575902033624999 -s 11 -d 13 -p SRM -e 168 -c 42 -i 14 -a 42 + -t 39.575902033624999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 14 -a 42 - -t 39.575902033624999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 14 -a 42 h -t 39.575902033624999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 14 -a 42 r -t 39.575902033624999 -s 20 -d 21 -p SRM -e 168 -c 42 -i 14 -a 42 + -t 39.575902033624999 -s 21 -d 23 -p SRM -e 168 -c 42 -i 14 -a 42 - -t 39.575902033624999 -s 21 -d 23 -p SRM -e 168 -c 42 -i 14 -a 42 h -t 39.575902033624999 -s 21 -d 23 -p SRM -e 168 -c 42 -i 14 -a 42 + -t 39.575902033624999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 14 -a 42 - -t 39.575902033624999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 14 -a 42 h -t 39.575902033624999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 14 -a 42 r -t 39.587246033625 -s 11 -d 13 -p SRM -e 168 -c 42 -i 14 -a 42 + -t 39.587246033625 -s 13 -d 15 -p SRM -e 168 -c 42 -i 14 -a 42 - -t 39.587246033625 -s 13 -d 15 -p SRM -e 168 -c 42 -i 14 -a 42 h -t 39.587246033625 -s 13 -d 15 -p SRM -e 168 -c 42 -i 14 -a 42 + -t 39.587246033625 -s 13 -d 16 -p SRM -e 168 -c 42 -i 14 -a 42 - -t 39.587246033625 -s 13 -d 16 -p SRM -e 168 -c 42 -i 14 -a 42 h -t 39.587246033625 -s 13 -d 16 -p SRM -e 168 -c 42 -i 14 -a 42 r -t 39.587246033625 -s 11 -d 14 -p SRM -e 168 -c 42 -i 14 -a 42 r -t 39.587246033625 -s 21 -d 23 -p SRM -e 168 -c 42 -i 14 -a 42 + -t 39.587246033625 -s 23 -d 25 -p SRM -e 168 -c 42 -i 14 -a 42 - -t 39.587246033625 -s 23 -d 25 -p SRM -e 168 -c 42 -i 14 -a 42 h -t 39.587246033625 -s 23 -d 25 -p SRM -e 168 -c 42 -i 14 -a 42 + -t 39.587246033625 -s 23 -d 26 -p SRM -e 168 -c 42 -i 14 -a 42 - -t 39.587246033625 -s 23 -d 26 -p SRM -e 168 -c 42 -i 14 -a 42 h -t 39.587246033625 -s 23 -d 26 -p SRM -e 168 -c 42 -i 14 -a 42 r -t 39.587246033625 -s 21 -d 24 -p SRM -e 168 -c 42 -i 14 -a 42 r -t 39.598590033625001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 14 -a 42 r -t 39.598590033625001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 14 -a 42 + -t 39.598590033625001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 14 -a 42 - -t 39.598590033625001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 14 -a 42 h -t 39.598590033625001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 14 -a 42 + -t 39.598590033625001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 14 -a 42 - -t 39.598590033625001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 14 -a 42 h -t 39.598590033625001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 14 -a 42 r -t 39.598590033625001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 14 -a 42 r -t 39.598590033625001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 14 -a 42 + -t 39.598590033625001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 14 -a 42 - -t 39.598590033625001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 14 -a 42 h -t 39.598590033625001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 14 -a 42 + -t 39.598590033625001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 14 -a 42 - -t 39.598590033625001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 14 -a 42 h -t 39.598590033625001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 14 -a 42 r -t 39.609934033625002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 14 -a 42 r -t 39.609934033625002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 14 -a 42 r -t 39.609934033625002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 14 -a 42 r -t 39.609934033625002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 14 -a 42 + -t 40.238802889241001 -s 10 -d 11 -p SRM -e 168 -c 42 -i 15 -a 42 + -t 40.238802889241001 -s 20 -d 21 -p SRM -e 168 -c 42 -i 15 -a 42 - -t 40.238802889241001 -s 10 -d 11 -p SRM -e 168 -c 42 -i 15 -a 42 - -t 40.238802889241001 -s 20 -d 21 -p SRM -e 168 -c 42 -i 15 -a 42 h -t 40.238802889241001 -s 10 -d 11 -p SRM -e 168 -c 42 -i 15 -a 42 + -t 40.238802889241001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 15 -a 42 - -t 40.238802889241001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 15 -a 42 h -t 40.238802889241001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 15 -a 42 h -t 40.238802889241001 -s 20 -d 21 -p SRM -e 168 -c 42 -i 15 -a 42 + -t 40.238802889241001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 15 -a 42 - -t 40.238802889241001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 15 -a 42 h -t 40.238802889241001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 15 -a 42 r -t 40.250146889241002 -s 10 -d 11 -p SRM -e 168 -c 42 -i 15 -a 42 + -t 40.250146889241002 -s 11 -d 13 -p SRM -e 168 -c 42 -i 15 -a 42 - -t 40.250146889241002 -s 11 -d 13 -p SRM -e 168 -c 42 -i 15 -a 42 h -t 40.250146889241002 -s 11 -d 13 -p SRM -e 168 -c 42 -i 15 -a 42 + -t 40.250146889241002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 15 -a 42 - -t 40.250146889241002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 15 -a 42 h -t 40.250146889241002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 15 -a 42 r -t 40.250146889241002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 15 -a 42 r -t 40.250146889241002 -s 20 -d 21 -p SRM -e 168 -c 42 -i 15 -a 42 + -t 40.250146889241002 -s 21 -d 23 -p SRM -e 168 -c 42 -i 15 -a 42 - -t 40.250146889241002 -s 21 -d 23 -p SRM -e 168 -c 42 -i 15 -a 42 h -t 40.250146889241002 -s 21 -d 23 -p SRM -e 168 -c 42 -i 15 -a 42 + -t 40.250146889241002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 15 -a 42 - -t 40.250146889241002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 15 -a 42 h -t 40.250146889241002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 15 -a 42 r -t 40.250146889241002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 15 -a 42 r -t 40.261490889241003 -s 11 -d 13 -p SRM -e 168 -c 42 -i 15 -a 42 + -t 40.261490889241003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 15 -a 42 - -t 40.261490889241003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 15 -a 42 h -t 40.261490889241003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 15 -a 42 + -t 40.261490889241003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 15 -a 42 - -t 40.261490889241003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 15 -a 42 h -t 40.261490889241003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 15 -a 42 r -t 40.261490889241003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 15 -a 42 r -t 40.261490889241003 -s 21 -d 23 -p SRM -e 168 -c 42 -i 15 -a 42 + -t 40.261490889241003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 15 -a 42 - -t 40.261490889241003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 15 -a 42 h -t 40.261490889241003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 15 -a 42 + -t 40.261490889241003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 15 -a 42 - -t 40.261490889241003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 15 -a 42 h -t 40.261490889241003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 15 -a 42 r -t 40.261490889241003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 15 -a 42 r -t 40.272834889241004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 15 -a 42 r -t 40.272834889241004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 15 -a 42 + -t 40.272834889241004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 15 -a 42 - -t 40.272834889241004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 15 -a 42 h -t 40.272834889241004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 15 -a 42 + -t 40.272834889241004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 15 -a 42 - -t 40.272834889241004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 15 -a 42 h -t 40.272834889241004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 15 -a 42 r -t 40.272834889241004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 15 -a 42 r -t 40.272834889241004 -s 23 -d 26 -p SRM -e 168 -c 42 -i 15 -a 42 + -t 40.272834889241004 -s 26 -d 27 -p SRM -e 168 -c 42 -i 15 -a 42 - -t 40.272834889241004 -s 26 -d 27 -p SRM -e 168 -c 42 -i 15 -a 42 h -t 40.272834889241004 -s 26 -d 27 -p SRM -e 168 -c 42 -i 15 -a 42 + -t 40.272834889241004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 15 -a 42 - -t 40.272834889241004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 15 -a 42 h -t 40.272834889241004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 15 -a 42 r -t 40.284178889241005 -s 16 -d 17 -p SRM -e 168 -c 42 -i 15 -a 42 r -t 40.284178889241005 -s 16 -d 18 -p SRM -e 168 -c 42 -i 15 -a 42 r -t 40.284178889241005 -s 26 -d 27 -p SRM -e 168 -c 42 -i 15 -a 42 r -t 40.284178889241005 -s 26 -d 28 -p SRM -e 168 -c 42 -i 15 -a 42 + -t 40.699698129761998 -s 15 -d 13 -p SRM -e 168 -c 42 -i 16 -a 42 + -t 40.699698129761998 -s 25 -d 23 -p SRM -e 168 -c 42 -i 16 -a 42 - -t 40.699698129761998 -s 15 -d 13 -p SRM -e 168 -c 42 -i 16 -a 42 - -t 40.699698129761998 -s 25 -d 23 -p SRM -e 168 -c 42 -i 16 -a 42 h -t 40.699698129761998 -s 15 -d 13 -p SRM -e 168 -c 42 -i 16 -a 42 h -t 40.699698129761998 -s 25 -d 23 -p SRM -e 168 -c 42 -i 16 -a 42 r -t 40.711042129761999 -s 15 -d 13 -p SRM -e 168 -c 42 -i 16 -a 42 + -t 40.711042129761999 -s 13 -d 11 -p SRM -e 168 -c 42 -i 16 -a 42 - -t 40.711042129761999 -s 13 -d 11 -p SRM -e 168 -c 42 -i 16 -a 42 h -t 40.711042129761999 -s 13 -d 11 -p SRM -e 168 -c 42 -i 16 -a 42 + -t 40.711042129761999 -s 13 -d 16 -p SRM -e 168 -c 42 -i 16 -a 42 - -t 40.711042129761999 -s 13 -d 16 -p SRM -e 168 -c 42 -i 16 -a 42 h -t 40.711042129761999 -s 13 -d 16 -p SRM -e 168 -c 42 -i 16 -a 42 r -t 40.711042129761999 -s 25 -d 23 -p SRM -e 168 -c 42 -i 16 -a 42 + -t 40.711042129761999 -s 23 -d 21 -p SRM -e 168 -c 42 -i 16 -a 42 - -t 40.711042129761999 -s 23 -d 21 -p SRM -e 168 -c 42 -i 16 -a 42 h -t 40.711042129761999 -s 23 -d 21 -p SRM -e 168 -c 42 -i 16 -a 42 + -t 40.711042129761999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 16 -a 42 - -t 40.711042129761999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 16 -a 42 h -t 40.711042129761999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 16 -a 42 r -t 40.722386129762 -s 13 -d 11 -p SRM -e 168 -c 42 -i 16 -a 42 + -t 40.722386129762 -s 11 -d 10 -p SRM -e 168 -c 42 -i 16 -a 42 - -t 40.722386129762 -s 11 -d 10 -p SRM -e 168 -c 42 -i 16 -a 42 h -t 40.722386129762 -s 11 -d 10 -p SRM -e 168 -c 42 -i 16 -a 42 + -t 40.722386129762 -s 11 -d 14 -p SRM -e 168 -c 42 -i 16 -a 42 - -t 40.722386129762 -s 11 -d 14 -p SRM -e 168 -c 42 -i 16 -a 42 h -t 40.722386129762 -s 11 -d 14 -p SRM -e 168 -c 42 -i 16 -a 42 r -t 40.722386129762 -s 13 -d 16 -p SRM -e 168 -c 42 -i 16 -a 42 + -t 40.722386129762 -s 16 -d 17 -p SRM -e 168 -c 42 -i 16 -a 42 - -t 40.722386129762 -s 16 -d 17 -p SRM -e 168 -c 42 -i 16 -a 42 h -t 40.722386129762 -s 16 -d 17 -p SRM -e 168 -c 42 -i 16 -a 42 + -t 40.722386129762 -s 16 -d 18 -p SRM -e 168 -c 42 -i 16 -a 42 - -t 40.722386129762 -s 16 -d 18 -p SRM -e 168 -c 42 -i 16 -a 42 h -t 40.722386129762 -s 16 -d 18 -p SRM -e 168 -c 42 -i 16 -a 42 r -t 40.722386129762 -s 23 -d 21 -p SRM -e 168 -c 42 -i 16 -a 42 + -t 40.722386129762 -s 21 -d 20 -p SRM -e 168 -c 42 -i 16 -a 42 - -t 40.722386129762 -s 21 -d 20 -p SRM -e 168 -c 42 -i 16 -a 42 h -t 40.722386129762 -s 21 -d 20 -p SRM -e 168 -c 42 -i 16 -a 42 + -t 40.722386129762 -s 21 -d 24 -p SRM -e 168 -c 42 -i 16 -a 42 - -t 40.722386129762 -s 21 -d 24 -p SRM -e 168 -c 42 -i 16 -a 42 h -t 40.722386129762 -s 21 -d 24 -p SRM -e 168 -c 42 -i 16 -a 42 r -t 40.722386129762 -s 23 -d 26 -p SRM -e 168 -c 42 -i 16 -a 42 + -t 40.722386129762 -s 26 -d 27 -p SRM -e 168 -c 42 -i 16 -a 42 - -t 40.722386129762 -s 26 -d 27 -p SRM -e 168 -c 42 -i 16 -a 42 h -t 40.722386129762 -s 26 -d 27 -p SRM -e 168 -c 42 -i 16 -a 42 + -t 40.722386129762 -s 26 -d 28 -p SRM -e 168 -c 42 -i 16 -a 42 - -t 40.722386129762 -s 26 -d 28 -p SRM -e 168 -c 42 -i 16 -a 42 h -t 40.722386129762 -s 26 -d 28 -p SRM -e 168 -c 42 -i 16 -a 42 r -t 40.733730129762002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 16 -a 42 + -t 40.733730129762002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 16 -a 42 - -t 40.733730129762002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 16 -a 42 h -t 40.733730129762002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 16 -a 42 r -t 40.733730129762002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 16 -a 42 r -t 40.733730129762002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 16 -a 42 r -t 40.733730129762002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 16 -a 42 r -t 40.733730129762002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 16 -a 42 + -t 40.733730129762002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 16 -a 42 - -t 40.733730129762002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 16 -a 42 h -t 40.733730129762002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 16 -a 42 r -t 40.733730129762002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 16 -a 42 r -t 40.733730129762002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 16 -a 42 r -t 40.733730129762002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 16 -a 42 r -t 40.745074129762003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 16 -a 42 r -t 40.745074129762003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 16 -a 42 + -t 41.334259640813997 -s 17 -d 16 -p SRM -e 168 -c 42 -i 17 -a 42 + -t 41.334259640813997 -s 27 -d 26 -p SRM -e 168 -c 42 -i 17 -a 42 - -t 41.334259640813997 -s 17 -d 16 -p SRM -e 168 -c 42 -i 17 -a 42 - -t 41.334259640813997 -s 27 -d 26 -p SRM -e 168 -c 42 -i 17 -a 42 h -t 41.334259640813997 -s 17 -d 16 -p SRM -e 168 -c 42 -i 17 -a 42 h -t 41.334259640813997 -s 27 -d 26 -p SRM -e 168 -c 42 -i 17 -a 42 r -t 41.345603640813998 -s 17 -d 16 -p SRM -e 168 -c 42 -i 17 -a 42 + -t 41.345603640813998 -s 16 -d 13 -p SRM -e 168 -c 42 -i 17 -a 42 - -t 41.345603640813998 -s 16 -d 13 -p SRM -e 168 -c 42 -i 17 -a 42 h -t 41.345603640813998 -s 16 -d 13 -p SRM -e 168 -c 42 -i 17 -a 42 + -t 41.345603640813998 -s 16 -d 18 -p SRM -e 168 -c 42 -i 17 -a 42 - -t 41.345603640813998 -s 16 -d 18 -p SRM -e 168 -c 42 -i 17 -a 42 h -t 41.345603640813998 -s 16 -d 18 -p SRM -e 168 -c 42 -i 17 -a 42 r -t 41.345603640813998 -s 27 -d 26 -p SRM -e 168 -c 42 -i 17 -a 42 + -t 41.345603640813998 -s 26 -d 23 -p SRM -e 168 -c 42 -i 17 -a 42 - -t 41.345603640813998 -s 26 -d 23 -p SRM -e 168 -c 42 -i 17 -a 42 h -t 41.345603640813998 -s 26 -d 23 -p SRM -e 168 -c 42 -i 17 -a 42 + -t 41.345603640813998 -s 26 -d 28 -p SRM -e 168 -c 42 -i 17 -a 42 - -t 41.345603640813998 -s 26 -d 28 -p SRM -e 168 -c 42 -i 17 -a 42 h -t 41.345603640813998 -s 26 -d 28 -p SRM -e 168 -c 42 -i 17 -a 42 r -t 41.356947640813999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 17 -a 42 + -t 41.356947640813999 -s 13 -d 11 -p SRM -e 168 -c 42 -i 17 -a 42 - -t 41.356947640813999 -s 13 -d 11 -p SRM -e 168 -c 42 -i 17 -a 42 h -t 41.356947640813999 -s 13 -d 11 -p SRM -e 168 -c 42 -i 17 -a 42 + -t 41.356947640813999 -s 13 -d 15 -p SRM -e 168 -c 42 -i 17 -a 42 - -t 41.356947640813999 -s 13 -d 15 -p SRM -e 168 -c 42 -i 17 -a 42 h -t 41.356947640813999 -s 13 -d 15 -p SRM -e 168 -c 42 -i 17 -a 42 r -t 41.356947640813999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 17 -a 42 r -t 41.356947640813999 -s 26 -d 23 -p SRM -e 168 -c 42 -i 17 -a 42 + -t 41.356947640813999 -s 23 -d 21 -p SRM -e 168 -c 42 -i 17 -a 42 - -t 41.356947640813999 -s 23 -d 21 -p SRM -e 168 -c 42 -i 17 -a 42 h -t 41.356947640813999 -s 23 -d 21 -p SRM -e 168 -c 42 -i 17 -a 42 + -t 41.356947640813999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 17 -a 42 - -t 41.356947640813999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 17 -a 42 h -t 41.356947640813999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 17 -a 42 r -t 41.356947640813999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 17 -a 42 r -t 41.368291640814 -s 13 -d 11 -p SRM -e 168 -c 42 -i 17 -a 42 + -t 41.368291640814 -s 11 -d 10 -p SRM -e 168 -c 42 -i 17 -a 42 - -t 41.368291640814 -s 11 -d 10 -p SRM -e 168 -c 42 -i 17 -a 42 h -t 41.368291640814 -s 11 -d 10 -p SRM -e 168 -c 42 -i 17 -a 42 + -t 41.368291640814 -s 11 -d 14 -p SRM -e 168 -c 42 -i 17 -a 42 - -t 41.368291640814 -s 11 -d 14 -p SRM -e 168 -c 42 -i 17 -a 42 h -t 41.368291640814 -s 11 -d 14 -p SRM -e 168 -c 42 -i 17 -a 42 r -t 41.368291640814 -s 13 -d 15 -p SRM -e 168 -c 42 -i 17 -a 42 r -t 41.368291640814 -s 23 -d 21 -p SRM -e 168 -c 42 -i 17 -a 42 + -t 41.368291640814 -s 21 -d 20 -p SRM -e 168 -c 42 -i 17 -a 42 - -t 41.368291640814 -s 21 -d 20 -p SRM -e 168 -c 42 -i 17 -a 42 h -t 41.368291640814 -s 21 -d 20 -p SRM -e 168 -c 42 -i 17 -a 42 + -t 41.368291640814 -s 21 -d 24 -p SRM -e 168 -c 42 -i 17 -a 42 - -t 41.368291640814 -s 21 -d 24 -p SRM -e 168 -c 42 -i 17 -a 42 h -t 41.368291640814 -s 21 -d 24 -p SRM -e 168 -c 42 -i 17 -a 42 r -t 41.368291640814 -s 23 -d 25 -p SRM -e 168 -c 42 -i 17 -a 42 r -t 41.379635640814001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 17 -a 42 + -t 41.379635640814001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 17 -a 42 - -t 41.379635640814001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 17 -a 42 h -t 41.379635640814001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 17 -a 42 r -t 41.379635640814001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 17 -a 42 r -t 41.379635640814001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 17 -a 42 + -t 41.379635640814001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 17 -a 42 - -t 41.379635640814001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 17 -a 42 h -t 41.379635640814001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 17 -a 42 r -t 41.379635640814001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 17 -a 42 r -t 41.390979640814002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 17 -a 42 r -t 41.390979640814002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 17 -a 42 + -t 41.901783159654002 -s 18 -d 16 -p SRM -e 168 -c 42 -i 18 -a 42 + -t 41.901783159654002 -s 28 -d 26 -p SRM -e 168 -c 42 -i 18 -a 42 - -t 41.901783159654002 -s 18 -d 16 -p SRM -e 168 -c 42 -i 18 -a 42 - -t 41.901783159654002 -s 28 -d 26 -p SRM -e 168 -c 42 -i 18 -a 42 h -t 41.901783159654002 -s 18 -d 16 -p SRM -e 168 -c 42 -i 18 -a 42 h -t 41.901783159654002 -s 28 -d 26 -p SRM -e 168 -c 42 -i 18 -a 42 r -t 41.913127159654003 -s 18 -d 16 -p SRM -e 168 -c 42 -i 18 -a 42 + -t 41.913127159654003 -s 16 -d 13 -p SRM -e 168 -c 42 -i 18 -a 42 - -t 41.913127159654003 -s 16 -d 13 -p SRM -e 168 -c 42 -i 18 -a 42 h -t 41.913127159654003 -s 16 -d 13 -p SRM -e 168 -c 42 -i 18 -a 42 + -t 41.913127159654003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 18 -a 42 - -t 41.913127159654003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 18 -a 42 h -t 41.913127159654003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 18 -a 42 r -t 41.913127159654003 -s 28 -d 26 -p SRM -e 168 -c 42 -i 18 -a 42 + -t 41.913127159654003 -s 26 -d 23 -p SRM -e 168 -c 42 -i 18 -a 42 - -t 41.913127159654003 -s 26 -d 23 -p SRM -e 168 -c 42 -i 18 -a 42 h -t 41.913127159654003 -s 26 -d 23 -p SRM -e 168 -c 42 -i 18 -a 42 + -t 41.913127159654003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 18 -a 42 - -t 41.913127159654003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 18 -a 42 h -t 41.913127159654003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 18 -a 42 r -t 41.924471159654004 -s 16 -d 13 -p SRM -e 168 -c 42 -i 18 -a 42 + -t 41.924471159654004 -s 13 -d 11 -p SRM -e 168 -c 42 -i 18 -a 42 - -t 41.924471159654004 -s 13 -d 11 -p SRM -e 168 -c 42 -i 18 -a 42 h -t 41.924471159654004 -s 13 -d 11 -p SRM -e 168 -c 42 -i 18 -a 42 + -t 41.924471159654004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 18 -a 42 - -t 41.924471159654004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 18 -a 42 h -t 41.924471159654004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 18 -a 42 r -t 41.924471159654004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 18 -a 42 r -t 41.924471159654004 -s 26 -d 23 -p SRM -e 168 -c 42 -i 18 -a 42 + -t 41.924471159654004 -s 23 -d 21 -p SRM -e 168 -c 42 -i 18 -a 42 - -t 41.924471159654004 -s 23 -d 21 -p SRM -e 168 -c 42 -i 18 -a 42 h -t 41.924471159654004 -s 23 -d 21 -p SRM -e 168 -c 42 -i 18 -a 42 + -t 41.924471159654004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 18 -a 42 - -t 41.924471159654004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 18 -a 42 h -t 41.924471159654004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 18 -a 42 r -t 41.924471159654004 -s 26 -d 27 -p SRM -e 168 -c 42 -i 18 -a 42 r -t 41.935815159654005 -s 13 -d 11 -p SRM -e 168 -c 42 -i 18 -a 42 + -t 41.935815159654005 -s 11 -d 10 -p SRM -e 168 -c 42 -i 18 -a 42 - -t 41.935815159654005 -s 11 -d 10 -p SRM -e 168 -c 42 -i 18 -a 42 h -t 41.935815159654005 -s 11 -d 10 -p SRM -e 168 -c 42 -i 18 -a 42 + -t 41.935815159654005 -s 11 -d 14 -p SRM -e 168 -c 42 -i 18 -a 42 - -t 41.935815159654005 -s 11 -d 14 -p SRM -e 168 -c 42 -i 18 -a 42 h -t 41.935815159654005 -s 11 -d 14 -p SRM -e 168 -c 42 -i 18 -a 42 r -t 41.935815159654005 -s 13 -d 15 -p SRM -e 168 -c 42 -i 18 -a 42 r -t 41.935815159654005 -s 23 -d 21 -p SRM -e 168 -c 42 -i 18 -a 42 + -t 41.935815159654005 -s 21 -d 20 -p SRM -e 168 -c 42 -i 18 -a 42 - -t 41.935815159654005 -s 21 -d 20 -p SRM -e 168 -c 42 -i 18 -a 42 h -t 41.935815159654005 -s 21 -d 20 -p SRM -e 168 -c 42 -i 18 -a 42 + -t 41.935815159654005 -s 21 -d 24 -p SRM -e 168 -c 42 -i 18 -a 42 - -t 41.935815159654005 -s 21 -d 24 -p SRM -e 168 -c 42 -i 18 -a 42 h -t 41.935815159654005 -s 21 -d 24 -p SRM -e 168 -c 42 -i 18 -a 42 r -t 41.935815159654005 -s 23 -d 25 -p SRM -e 168 -c 42 -i 18 -a 42 r -t 41.947159159654007 -s 11 -d 10 -p SRM -e 168 -c 42 -i 18 -a 42 + -t 41.947159159654007 -s 10 -d 12 -p SRM -e 168 -c 42 -i 18 -a 42 - -t 41.947159159654007 -s 10 -d 12 -p SRM -e 168 -c 42 -i 18 -a 42 h -t 41.947159159654007 -s 10 -d 12 -p SRM -e 168 -c 42 -i 18 -a 42 r -t 41.947159159654007 -s 11 -d 14 -p SRM -e 168 -c 42 -i 18 -a 42 r -t 41.947159159654007 -s 21 -d 20 -p SRM -e 168 -c 42 -i 18 -a 42 + -t 41.947159159654007 -s 20 -d 22 -p SRM -e 168 -c 42 -i 18 -a 42 - -t 41.947159159654007 -s 20 -d 22 -p SRM -e 168 -c 42 -i 18 -a 42 h -t 41.947159159654007 -s 20 -d 22 -p SRM -e 168 -c 42 -i 18 -a 42 r -t 41.947159159654007 -s 21 -d 24 -p SRM -e 168 -c 42 -i 18 -a 42 r -t 41.958503159654008 -s 10 -d 12 -p SRM -e 168 -c 42 -i 18 -a 42 r -t 41.958503159654008 -s 20 -d 22 -p SRM -e 168 -c 42 -i 18 -a 42 + -t 57.165126251467441 -s 16 -d 13 -p cbr -e 1280 -c 6 -i 19 -a 6 + -t 57.165126251467441 -s 26 -d 23 -p cbr -e 1280 -c 6 -i 19 -a 6 - -t 57.165126251467441 -s 16 -d 13 -p cbr -e 1280 -c 6 -i 19 -a 6 - -t 57.165126251467441 -s 26 -d 23 -p cbr -e 1280 -c 6 -i 19 -a 6 h -t 57.165126251467441 -s 16 -d 13 -p cbr -e 1280 -c 6 -i 19 -a 6 + -t 57.165126251467441 -s 16 -d 17 -p cbr -e 1280 -c 6 -i 19 -a 6 - -t 57.165126251467441 -s 16 -d 17 -p cbr -e 1280 -c 6 -i 19 -a 6 h -t 57.165126251467441 -s 16 -d 17 -p cbr -e 1280 -c 6 -i 19 -a 6 + -t 57.165126251467441 -s 16 -d 18 -p cbr -e 1280 -c 6 -i 19 -a 6 - -t 57.165126251467441 -s 16 -d 18 -p cbr -e 1280 -c 6 -i 19 -a 6 h -t 57.165126251467441 -s 16 -d 18 -p cbr -e 1280 -c 6 -i 19 -a 6 h -t 57.165126251467441 -s 26 -d 23 -p cbr -e 1280 -c 6 -i 19 -a 6 + -t 57.165126251467441 -s 26 -d 27 -p cbr -e 1280 -c 6 -i 19 -a 6 - -t 57.165126251467441 -s 26 -d 27 -p cbr -e 1280 -c 6 -i 19 -a 6 h -t 57.165126251467441 -s 26 -d 27 -p cbr -e 1280 -c 6 -i 19 -a 6 + -t 57.165126251467441 -s 26 -d 28 -p cbr -e 1280 -c 6 -i 19 -a 6 - -t 57.165126251467441 -s 26 -d 28 -p cbr -e 1280 -c 6 -i 19 -a 6 h -t 57.165126251467441 -s 26 -d 28 -p cbr -e 1280 -c 6 -i 19 -a 6 r -t 57.185366251467443 -s 16 -d 13 -p cbr -e 1280 -c 6 -i 19 -a 6 + -t 57.185366251467443 -s 13 -d 11 -p cbr -e 1280 -c 6 -i 19 -a 6 - -t 57.185366251467443 -s 13 -d 11 -p cbr -e 1280 -c 6 -i 19 -a 6 h -t 57.185366251467443 -s 13 -d 11 -p cbr -e 1280 -c 6 -i 19 -a 6 + -t 57.185366251467443 -s 13 -d 15 -p cbr -e 1280 -c 6 -i 19 -a 6 - -t 57.185366251467443 -s 13 -d 15 -p cbr -e 1280 -c 6 -i 19 -a 6 h -t 57.185366251467443 -s 13 -d 15 -p cbr -e 1280 -c 6 -i 19 -a 6 r -t 57.185366251467443 -s 16 -d 17 -p cbr -e 1280 -c 6 -i 19 -a 6 r -t 57.185366251467443 -s 16 -d 18 -p cbr -e 1280 -c 6 -i 19 -a 6 r -t 57.185366251467443 -s 26 -d 23 -p cbr -e 1280 -c 6 -i 19 -a 6 + -t 57.185366251467443 -s 23 -d 21 -p cbr -e 1280 -c 6 -i 19 -a 6 - -t 57.185366251467443 -s 23 -d 21 -p cbr -e 1280 -c 6 -i 19 -a 6 h -t 57.185366251467443 -s 23 -d 21 -p cbr -e 1280 -c 6 -i 19 -a 6 + -t 57.185366251467443 -s 23 -d 25 -p cbr -e 1280 -c 6 -i 19 -a 6 - -t 57.185366251467443 -s 23 -d 25 -p cbr -e 1280 -c 6 -i 19 -a 6 h -t 57.185366251467443 -s 23 -d 25 -p cbr -e 1280 -c 6 -i 19 -a 6 r -t 57.185366251467443 -s 26 -d 27 -p cbr -e 1280 -c 6 -i 19 -a 6 r -t 57.185366251467443 -s 26 -d 28 -p cbr -e 1280 -c 6 -i 19 -a 6 r -t 57.205606251467444 -s 13 -d 11 -p cbr -e 1280 -c 6 -i 19 -a 6 + -t 57.205606251467444 -s 11 -d 10 -p cbr -e 1280 -c 6 -i 19 -a 6 - -t 57.205606251467444 -s 11 -d 10 -p cbr -e 1280 -c 6 -i 19 -a 6 h -t 57.205606251467444 -s 11 -d 10 -p cbr -e 1280 -c 6 -i 19 -a 6 + -t 57.205606251467444 -s 11 -d 14 -p cbr -e 1280 -c 6 -i 19 -a 6 - -t 57.205606251467444 -s 11 -d 14 -p cbr -e 1280 -c 6 -i 19 -a 6 h -t 57.205606251467444 -s 11 -d 14 -p cbr -e 1280 -c 6 -i 19 -a 6 r -t 57.205606251467444 -s 13 -d 15 -p cbr -e 1280 -c 6 -i 19 -a 6 r -t 57.205606251467444 -s 23 -d 21 -p cbr -e 1280 -c 6 -i 19 -a 6 + -t 57.205606251467444 -s 21 -d 20 -p cbr -e 1280 -c 6 -i 19 -a 6 - -t 57.205606251467444 -s 21 -d 20 -p cbr -e 1280 -c 6 -i 19 -a 6 h -t 57.205606251467444 -s 21 -d 20 -p cbr -e 1280 -c 6 -i 19 -a 6 + -t 57.205606251467444 -s 21 -d 24 -p cbr -e 1280 -c 6 -i 19 -a 6 - -t 57.205606251467444 -s 21 -d 24 -p cbr -e 1280 -c 6 -i 19 -a 6 h -t 57.205606251467444 -s 21 -d 24 -p cbr -e 1280 -c 6 -i 19 -a 6 r -t 57.205606251467444 -s 23 -d 25 -p cbr -e 1280 -c 6 -i 19 -a 6 r -t 57.225846251467445 -s 11 -d 10 -p cbr -e 1280 -c 6 -i 19 -a 6 + -t 57.225846251467445 -s 10 -d 12 -p cbr -e 1280 -c 6 -i 19 -a 6 - -t 57.225846251467445 -s 10 -d 12 -p cbr -e 1280 -c 6 -i 19 -a 6 h -t 57.225846251467445 -s 10 -d 12 -p cbr -e 1280 -c 6 -i 19 -a 6 r -t 57.225846251467445 -s 11 -d 14 -p cbr -e 1280 -c 6 -i 19 -a 6 r -t 57.225846251467445 -s 21 -d 20 -p cbr -e 1280 -c 6 -i 19 -a 6 + -t 57.225846251467445 -s 20 -d 22 -p cbr -e 1280 -c 6 -i 19 -a 6 - -t 57.225846251467445 -s 20 -d 22 -p cbr -e 1280 -c 6 -i 19 -a 6 h -t 57.225846251467445 -s 20 -d 22 -p cbr -e 1280 -c 6 -i 19 -a 6 r -t 57.225846251467445 -s 21 -d 24 -p cbr -e 1280 -c 6 -i 19 -a 6 r -t 57.246086251467446 -s 10 -d 12 -p cbr -e 1280 -c 6 -i 19 -a 6 r -t 57.246086251467446 -s 20 -d 22 -p cbr -e 1280 -c 6 -i 19 -a 6 + -t 57.833071032227998 -s 14 -d 11 -p SRM -e 168 -c 42 -i 20 -a 42 + -t 57.833071032227998 -s 24 -d 21 -p SRM -e 168 -c 42 -i 20 -a 42 - -t 57.833071032227998 -s 14 -d 11 -p SRM -e 168 -c 42 -i 20 -a 42 - -t 57.833071032227998 -s 24 -d 21 -p SRM -e 168 -c 42 -i 20 -a 42 h -t 57.833071032227998 -s 14 -d 11 -p SRM -e 168 -c 42 -i 20 -a 42 h -t 57.833071032227998 -s 24 -d 21 -p SRM -e 168 -c 42 -i 20 -a 42 r -t 57.844415032228 -s 14 -d 11 -p SRM -e 168 -c 42 -i 20 -a 42 + -t 57.844415032228 -s 11 -d 10 -p SRM -e 168 -c 42 -i 20 -a 42 - -t 57.844415032228 -s 11 -d 10 -p SRM -e 168 -c 42 -i 20 -a 42 h -t 57.844415032228 -s 11 -d 10 -p SRM -e 168 -c 42 -i 20 -a 42 + -t 57.844415032228 -s 11 -d 13 -p SRM -e 168 -c 42 -i 20 -a 42 - -t 57.844415032228 -s 11 -d 13 -p SRM -e 168 -c 42 -i 20 -a 42 h -t 57.844415032228 -s 11 -d 13 -p SRM -e 168 -c 42 -i 20 -a 42 r -t 57.844415032228 -s 24 -d 21 -p SRM -e 168 -c 42 -i 20 -a 42 + -t 57.844415032228 -s 21 -d 20 -p SRM -e 168 -c 42 -i 20 -a 42 - -t 57.844415032228 -s 21 -d 20 -p SRM -e 168 -c 42 -i 20 -a 42 h -t 57.844415032228 -s 21 -d 20 -p SRM -e 168 -c 42 -i 20 -a 42 + -t 57.844415032228 -s 21 -d 23 -p SRM -e 168 -c 42 -i 20 -a 42 - -t 57.844415032228 -s 21 -d 23 -p SRM -e 168 -c 42 -i 20 -a 42 h -t 57.844415032228 -s 21 -d 23 -p SRM -e 168 -c 42 -i 20 -a 42 r -t 57.855759032228001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 20 -a 42 + -t 57.855759032228001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 20 -a 42 - -t 57.855759032228001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 20 -a 42 h -t 57.855759032228001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 20 -a 42 r -t 57.855759032228001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 20 -a 42 + -t 57.855759032228001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 20 -a 42 - -t 57.855759032228001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 20 -a 42 h -t 57.855759032228001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 20 -a 42 + -t 57.855759032228001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 20 -a 42 - -t 57.855759032228001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 20 -a 42 h -t 57.855759032228001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 20 -a 42 r -t 57.855759032228001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 20 -a 42 + -t 57.855759032228001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 20 -a 42 - -t 57.855759032228001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 20 -a 42 h -t 57.855759032228001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 20 -a 42 r -t 57.855759032228001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 20 -a 42 + -t 57.855759032228001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 20 -a 42 - -t 57.855759032228001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 20 -a 42 h -t 57.855759032228001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 20 -a 42 + -t 57.855759032228001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 20 -a 42 - -t 57.855759032228001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 20 -a 42 h -t 57.855759032228001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 20 -a 42 r -t 57.867103032228002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 20 -a 42 r -t 57.867103032228002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 20 -a 42 r -t 57.867103032228002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 20 -a 42 + -t 57.867103032228002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 20 -a 42 - -t 57.867103032228002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 20 -a 42 h -t 57.867103032228002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 20 -a 42 + -t 57.867103032228002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 20 -a 42 - -t 57.867103032228002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 20 -a 42 h -t 57.867103032228002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 20 -a 42 r -t 57.867103032228002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 20 -a 42 r -t 57.867103032228002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 20 -a 42 r -t 57.867103032228002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 20 -a 42 + -t 57.867103032228002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 20 -a 42 - -t 57.867103032228002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 20 -a 42 h -t 57.867103032228002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 20 -a 42 + -t 57.867103032228002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 20 -a 42 - -t 57.867103032228002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 20 -a 42 h -t 57.867103032228002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 20 -a 42 r -t 57.878447032228003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 20 -a 42 r -t 57.878447032228003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 20 -a 42 r -t 57.878447032228003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 20 -a 42 r -t 57.878447032228003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 20 -a 42 + -t 57.934243652707003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 21 -a 42 + -t 57.934243652707003 -s 23 -d 21 -p SRM -e 168 -c 42 -i 21 -a 42 - -t 57.934243652707003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 21 -a 42 - -t 57.934243652707003 -s 23 -d 21 -p SRM -e 168 -c 42 -i 21 -a 42 h -t 57.934243652707003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 21 -a 42 + -t 57.934243652707003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 21 -a 42 - -t 57.934243652707003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 21 -a 42 h -t 57.934243652707003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 21 -a 42 + -t 57.934243652707003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 21 -a 42 - -t 57.934243652707003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 21 -a 42 h -t 57.934243652707003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 21 -a 42 h -t 57.934243652707003 -s 23 -d 21 -p SRM -e 168 -c 42 -i 21 -a 42 + -t 57.934243652707003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 21 -a 42 - -t 57.934243652707003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 21 -a 42 h -t 57.934243652707003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 21 -a 42 + -t 57.934243652707003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 21 -a 42 - -t 57.934243652707003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 21 -a 42 h -t 57.934243652707003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 21 -a 42 r -t 57.945587652707005 -s 13 -d 11 -p SRM -e 168 -c 42 -i 21 -a 42 + -t 57.945587652707005 -s 11 -d 10 -p SRM -e 168 -c 42 -i 21 -a 42 - -t 57.945587652707005 -s 11 -d 10 -p SRM -e 168 -c 42 -i 21 -a 42 h -t 57.945587652707005 -s 11 -d 10 -p SRM -e 168 -c 42 -i 21 -a 42 + -t 57.945587652707005 -s 11 -d 14 -p SRM -e 168 -c 42 -i 21 -a 42 - -t 57.945587652707005 -s 11 -d 14 -p SRM -e 168 -c 42 -i 21 -a 42 h -t 57.945587652707005 -s 11 -d 14 -p SRM -e 168 -c 42 -i 21 -a 42 r -t 57.945587652707005 -s 13 -d 15 -p SRM -e 168 -c 42 -i 21 -a 42 r -t 57.945587652707005 -s 13 -d 16 -p SRM -e 168 -c 42 -i 21 -a 42 + -t 57.945587652707005 -s 16 -d 17 -p SRM -e 168 -c 42 -i 21 -a 42 - -t 57.945587652707005 -s 16 -d 17 -p SRM -e 168 -c 42 -i 21 -a 42 h -t 57.945587652707005 -s 16 -d 17 -p SRM -e 168 -c 42 -i 21 -a 42 + -t 57.945587652707005 -s 16 -d 18 -p SRM -e 168 -c 42 -i 21 -a 42 - -t 57.945587652707005 -s 16 -d 18 -p SRM -e 168 -c 42 -i 21 -a 42 h -t 57.945587652707005 -s 16 -d 18 -p SRM -e 168 -c 42 -i 21 -a 42 r -t 57.945587652707005 -s 23 -d 21 -p SRM -e 168 -c 42 -i 21 -a 42 + -t 57.945587652707005 -s 21 -d 20 -p SRM -e 168 -c 42 -i 21 -a 42 - -t 57.945587652707005 -s 21 -d 20 -p SRM -e 168 -c 42 -i 21 -a 42 h -t 57.945587652707005 -s 21 -d 20 -p SRM -e 168 -c 42 -i 21 -a 42 + -t 57.945587652707005 -s 21 -d 24 -p SRM -e 168 -c 42 -i 21 -a 42 - -t 57.945587652707005 -s 21 -d 24 -p SRM -e 168 -c 42 -i 21 -a 42 h -t 57.945587652707005 -s 21 -d 24 -p SRM -e 168 -c 42 -i 21 -a 42 r -t 57.945587652707005 -s 23 -d 25 -p SRM -e 168 -c 42 -i 21 -a 42 r -t 57.945587652707005 -s 23 -d 26 -p SRM -e 168 -c 42 -i 21 -a 42 + -t 57.945587652707005 -s 26 -d 27 -p SRM -e 168 -c 42 -i 21 -a 42 - -t 57.945587652707005 -s 26 -d 27 -p SRM -e 168 -c 42 -i 21 -a 42 h -t 57.945587652707005 -s 26 -d 27 -p SRM -e 168 -c 42 -i 21 -a 42 + -t 57.945587652707005 -s 26 -d 28 -p SRM -e 168 -c 42 -i 21 -a 42 - -t 57.945587652707005 -s 26 -d 28 -p SRM -e 168 -c 42 -i 21 -a 42 h -t 57.945587652707005 -s 26 -d 28 -p SRM -e 168 -c 42 -i 21 -a 42 r -t 57.956931652707006 -s 11 -d 10 -p SRM -e 168 -c 42 -i 21 -a 42 + -t 57.956931652707006 -s 10 -d 12 -p SRM -e 168 -c 42 -i 21 -a 42 - -t 57.956931652707006 -s 10 -d 12 -p SRM -e 168 -c 42 -i 21 -a 42 h -t 57.956931652707006 -s 10 -d 12 -p SRM -e 168 -c 42 -i 21 -a 42 r -t 57.956931652707006 -s 11 -d 14 -p SRM -e 168 -c 42 -i 21 -a 42 r -t 57.956931652707006 -s 16 -d 17 -p SRM -e 168 -c 42 -i 21 -a 42 r -t 57.956931652707006 -s 16 -d 18 -p SRM -e 168 -c 42 -i 21 -a 42 r -t 57.956931652707006 -s 21 -d 20 -p SRM -e 168 -c 42 -i 21 -a 42 + -t 57.956931652707006 -s 20 -d 22 -p SRM -e 168 -c 42 -i 21 -a 42 - -t 57.956931652707006 -s 20 -d 22 -p SRM -e 168 -c 42 -i 21 -a 42 h -t 57.956931652707006 -s 20 -d 22 -p SRM -e 168 -c 42 -i 21 -a 42 r -t 57.956931652707006 -s 21 -d 24 -p SRM -e 168 -c 42 -i 21 -a 42 r -t 57.956931652707006 -s 26 -d 27 -p SRM -e 168 -c 42 -i 21 -a 42 r -t 57.956931652707006 -s 26 -d 28 -p SRM -e 168 -c 42 -i 21 -a 42 r -t 57.968275652707007 -s 10 -d 12 -p SRM -e 168 -c 42 -i 21 -a 42 r -t 57.968275652707007 -s 20 -d 22 -p SRM -e 168 -c 42 -i 21 -a 42 + -t 59.625003172608999 -s 17 -d 16 -p SRM -e 168 -c 42 -i 22 -a 42 + -t 59.625003172608999 -s 27 -d 26 -p SRM -e 168 -c 42 -i 22 -a 42 - -t 59.625003172608999 -s 17 -d 16 -p SRM -e 168 -c 42 -i 22 -a 42 - -t 59.625003172608999 -s 27 -d 26 -p SRM -e 168 -c 42 -i 22 -a 42 h -t 59.625003172608999 -s 17 -d 16 -p SRM -e 168 -c 42 -i 22 -a 42 h -t 59.625003172608999 -s 27 -d 26 -p SRM -e 168 -c 42 -i 22 -a 42 r -t 59.636347172609 -s 17 -d 16 -p SRM -e 168 -c 42 -i 22 -a 42 + -t 59.636347172609 -s 16 -d 13 -p SRM -e 168 -c 42 -i 22 -a 42 - -t 59.636347172609 -s 16 -d 13 -p SRM -e 168 -c 42 -i 22 -a 42 h -t 59.636347172609 -s 16 -d 13 -p SRM -e 168 -c 42 -i 22 -a 42 + -t 59.636347172609 -s 16 -d 18 -p SRM -e 168 -c 42 -i 22 -a 42 - -t 59.636347172609 -s 16 -d 18 -p SRM -e 168 -c 42 -i 22 -a 42 h -t 59.636347172609 -s 16 -d 18 -p SRM -e 168 -c 42 -i 22 -a 42 r -t 59.636347172609 -s 27 -d 26 -p SRM -e 168 -c 42 -i 22 -a 42 + -t 59.636347172609 -s 26 -d 23 -p SRM -e 168 -c 42 -i 22 -a 42 - -t 59.636347172609 -s 26 -d 23 -p SRM -e 168 -c 42 -i 22 -a 42 h -t 59.636347172609 -s 26 -d 23 -p SRM -e 168 -c 42 -i 22 -a 42 + -t 59.636347172609 -s 26 -d 28 -p SRM -e 168 -c 42 -i 22 -a 42 - -t 59.636347172609 -s 26 -d 28 -p SRM -e 168 -c 42 -i 22 -a 42 h -t 59.636347172609 -s 26 -d 28 -p SRM -e 168 -c 42 -i 22 -a 42 r -t 59.647691172609001 -s 16 -d 13 -p SRM -e 168 -c 42 -i 22 -a 42 + -t 59.647691172609001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 22 -a 42 - -t 59.647691172609001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 22 -a 42 h -t 59.647691172609001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 22 -a 42 + -t 59.647691172609001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 22 -a 42 - -t 59.647691172609001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 22 -a 42 h -t 59.647691172609001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 22 -a 42 r -t 59.647691172609001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 22 -a 42 r -t 59.647691172609001 -s 26 -d 23 -p SRM -e 168 -c 42 -i 22 -a 42 + -t 59.647691172609001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 22 -a 42 - -t 59.647691172609001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 22 -a 42 h -t 59.647691172609001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 22 -a 42 + -t 59.647691172609001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 22 -a 42 - -t 59.647691172609001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 22 -a 42 h -t 59.647691172609001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 22 -a 42 r -t 59.647691172609001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 22 -a 42 r -t 59.659035172609002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 22 -a 42 + -t 59.659035172609002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 22 -a 42 - -t 59.659035172609002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 22 -a 42 h -t 59.659035172609002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 22 -a 42 + -t 59.659035172609002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 22 -a 42 - -t 59.659035172609002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 22 -a 42 h -t 59.659035172609002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 22 -a 42 r -t 59.659035172609002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 22 -a 42 r -t 59.659035172609002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 22 -a 42 + -t 59.659035172609002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 22 -a 42 - -t 59.659035172609002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 22 -a 42 h -t 59.659035172609002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 22 -a 42 + -t 59.659035172609002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 22 -a 42 - -t 59.659035172609002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 22 -a 42 h -t 59.659035172609002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 22 -a 42 r -t 59.659035172609002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 22 -a 42 r -t 59.670379172609003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 22 -a 42 + -t 59.670379172609003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 22 -a 42 - -t 59.670379172609003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 22 -a 42 h -t 59.670379172609003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 22 -a 42 r -t 59.670379172609003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 22 -a 42 r -t 59.670379172609003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 22 -a 42 + -t 59.670379172609003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 22 -a 42 - -t 59.670379172609003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 22 -a 42 h -t 59.670379172609003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 22 -a 42 r -t 59.670379172609003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 22 -a 42 r -t 59.681723172609004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 22 -a 42 r -t 59.681723172609004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 22 -a 42 + -t 60.186336316953003 -s 16 -d 13 -p SRM -e 168 -c 42 -i 23 -a 42 + -t 60.186336316953003 -s 26 -d 23 -p SRM -e 168 -c 42 -i 23 -a 42 - -t 60.186336316953003 -s 16 -d 13 -p SRM -e 168 -c 42 -i 23 -a 42 - -t 60.186336316953003 -s 26 -d 23 -p SRM -e 168 -c 42 -i 23 -a 42 h -t 60.186336316953003 -s 16 -d 13 -p SRM -e 168 -c 42 -i 23 -a 42 + -t 60.186336316953003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 23 -a 42 - -t 60.186336316953003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 23 -a 42 h -t 60.186336316953003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 23 -a 42 + -t 60.186336316953003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 23 -a 42 - -t 60.186336316953003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 23 -a 42 h -t 60.186336316953003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 23 -a 42 h -t 60.186336316953003 -s 26 -d 23 -p SRM -e 168 -c 42 -i 23 -a 42 + -t 60.186336316953003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 23 -a 42 - -t 60.186336316953003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 23 -a 42 h -t 60.186336316953003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 23 -a 42 + -t 60.186336316953003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 23 -a 42 - -t 60.186336316953003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 23 -a 42 h -t 60.186336316953003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 23 -a 42 r -t 60.197680316953004 -s 16 -d 13 -p SRM -e 168 -c 42 -i 23 -a 42 + -t 60.197680316953004 -s 13 -d 11 -p SRM -e 168 -c 42 -i 23 -a 42 - -t 60.197680316953004 -s 13 -d 11 -p SRM -e 168 -c 42 -i 23 -a 42 h -t 60.197680316953004 -s 13 -d 11 -p SRM -e 168 -c 42 -i 23 -a 42 + -t 60.197680316953004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 23 -a 42 - -t 60.197680316953004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 23 -a 42 h -t 60.197680316953004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 23 -a 42 r -t 60.197680316953004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 23 -a 42 r -t 60.197680316953004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 23 -a 42 r -t 60.197680316953004 -s 26 -d 23 -p SRM -e 168 -c 42 -i 23 -a 42 + -t 60.197680316953004 -s 23 -d 21 -p SRM -e 168 -c 42 -i 23 -a 42 - -t 60.197680316953004 -s 23 -d 21 -p SRM -e 168 -c 42 -i 23 -a 42 h -t 60.197680316953004 -s 23 -d 21 -p SRM -e 168 -c 42 -i 23 -a 42 + -t 60.197680316953004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 23 -a 42 - -t 60.197680316953004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 23 -a 42 h -t 60.197680316953004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 23 -a 42 r -t 60.197680316953004 -s 26 -d 27 -p SRM -e 168 -c 42 -i 23 -a 42 r -t 60.197680316953004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 23 -a 42 r -t 60.209024316953005 -s 13 -d 11 -p SRM -e 168 -c 42 -i 23 -a 42 + -t 60.209024316953005 -s 11 -d 10 -p SRM -e 168 -c 42 -i 23 -a 42 - -t 60.209024316953005 -s 11 -d 10 -p SRM -e 168 -c 42 -i 23 -a 42 h -t 60.209024316953005 -s 11 -d 10 -p SRM -e 168 -c 42 -i 23 -a 42 + -t 60.209024316953005 -s 11 -d 14 -p SRM -e 168 -c 42 -i 23 -a 42 - -t 60.209024316953005 -s 11 -d 14 -p SRM -e 168 -c 42 -i 23 -a 42 h -t 60.209024316953005 -s 11 -d 14 -p SRM -e 168 -c 42 -i 23 -a 42 r -t 60.209024316953005 -s 13 -d 15 -p SRM -e 168 -c 42 -i 23 -a 42 r -t 60.209024316953005 -s 23 -d 21 -p SRM -e 168 -c 42 -i 23 -a 42 + -t 60.209024316953005 -s 21 -d 20 -p SRM -e 168 -c 42 -i 23 -a 42 - -t 60.209024316953005 -s 21 -d 20 -p SRM -e 168 -c 42 -i 23 -a 42 h -t 60.209024316953005 -s 21 -d 20 -p SRM -e 168 -c 42 -i 23 -a 42 + -t 60.209024316953005 -s 21 -d 24 -p SRM -e 168 -c 42 -i 23 -a 42 - -t 60.209024316953005 -s 21 -d 24 -p SRM -e 168 -c 42 -i 23 -a 42 h -t 60.209024316953005 -s 21 -d 24 -p SRM -e 168 -c 42 -i 23 -a 42 r -t 60.209024316953005 -s 23 -d 25 -p SRM -e 168 -c 42 -i 23 -a 42 r -t 60.220368316953007 -s 11 -d 10 -p SRM -e 168 -c 42 -i 23 -a 42 + -t 60.220368316953007 -s 10 -d 12 -p SRM -e 168 -c 42 -i 23 -a 42 - -t 60.220368316953007 -s 10 -d 12 -p SRM -e 168 -c 42 -i 23 -a 42 h -t 60.220368316953007 -s 10 -d 12 -p SRM -e 168 -c 42 -i 23 -a 42 r -t 60.220368316953007 -s 11 -d 14 -p SRM -e 168 -c 42 -i 23 -a 42 r -t 60.220368316953007 -s 21 -d 20 -p SRM -e 168 -c 42 -i 23 -a 42 + -t 60.220368316953007 -s 20 -d 22 -p SRM -e 168 -c 42 -i 23 -a 42 - -t 60.220368316953007 -s 20 -d 22 -p SRM -e 168 -c 42 -i 23 -a 42 h -t 60.220368316953007 -s 20 -d 22 -p SRM -e 168 -c 42 -i 23 -a 42 r -t 60.220368316953007 -s 21 -d 24 -p SRM -e 168 -c 42 -i 23 -a 42 r -t 60.231712316953008 -s 10 -d 12 -p SRM -e 168 -c 42 -i 23 -a 42 r -t 60.231712316953008 -s 20 -d 22 -p SRM -e 168 -c 42 -i 23 -a 42 + -t 60.443855636727001 -s 12 -d 10 -p SRM -e 168 -c 42 -i 24 -a 42 + -t 60.443855636727001 -s 22 -d 20 -p SRM -e 168 -c 42 -i 24 -a 42 - -t 60.443855636727001 -s 12 -d 10 -p SRM -e 168 -c 42 -i 24 -a 42 - -t 60.443855636727001 -s 22 -d 20 -p SRM -e 168 -c 42 -i 24 -a 42 h -t 60.443855636727001 -s 12 -d 10 -p SRM -e 168 -c 42 -i 24 -a 42 h -t 60.443855636727001 -s 22 -d 20 -p SRM -e 168 -c 42 -i 24 -a 42 r -t 60.455199636727002 -s 12 -d 10 -p SRM -e 168 -c 42 -i 24 -a 42 + -t 60.455199636727002 -s 10 -d 11 -p SRM -e 168 -c 42 -i 24 -a 42 - -t 60.455199636727002 -s 10 -d 11 -p SRM -e 168 -c 42 -i 24 -a 42 h -t 60.455199636727002 -s 10 -d 11 -p SRM -e 168 -c 42 -i 24 -a 42 r -t 60.455199636727002 -s 22 -d 20 -p SRM -e 168 -c 42 -i 24 -a 42 + -t 60.455199636727002 -s 20 -d 21 -p SRM -e 168 -c 42 -i 24 -a 42 - -t 60.455199636727002 -s 20 -d 21 -p SRM -e 168 -c 42 -i 24 -a 42 h -t 60.455199636727002 -s 20 -d 21 -p SRM -e 168 -c 42 -i 24 -a 42 r -t 60.466543636727003 -s 10 -d 11 -p SRM -e 168 -c 42 -i 24 -a 42 + -t 60.466543636727003 -s 11 -d 13 -p SRM -e 168 -c 42 -i 24 -a 42 - -t 60.466543636727003 -s 11 -d 13 -p SRM -e 168 -c 42 -i 24 -a 42 h -t 60.466543636727003 -s 11 -d 13 -p SRM -e 168 -c 42 -i 24 -a 42 + -t 60.466543636727003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 24 -a 42 - -t 60.466543636727003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 24 -a 42 h -t 60.466543636727003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 24 -a 42 r -t 60.466543636727003 -s 20 -d 21 -p SRM -e 168 -c 42 -i 24 -a 42 + -t 60.466543636727003 -s 21 -d 23 -p SRM -e 168 -c 42 -i 24 -a 42 - -t 60.466543636727003 -s 21 -d 23 -p SRM -e 168 -c 42 -i 24 -a 42 h -t 60.466543636727003 -s 21 -d 23 -p SRM -e 168 -c 42 -i 24 -a 42 + -t 60.466543636727003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 24 -a 42 - -t 60.466543636727003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 24 -a 42 h -t 60.466543636727003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 24 -a 42 r -t 60.477887636727004 -s 11 -d 13 -p SRM -e 168 -c 42 -i 24 -a 42 + -t 60.477887636727004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 24 -a 42 - -t 60.477887636727004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 24 -a 42 h -t 60.477887636727004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 24 -a 42 + -t 60.477887636727004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 24 -a 42 - -t 60.477887636727004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 24 -a 42 h -t 60.477887636727004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 24 -a 42 r -t 60.477887636727004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 24 -a 42 r -t 60.477887636727004 -s 21 -d 23 -p SRM -e 168 -c 42 -i 24 -a 42 + -t 60.477887636727004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 24 -a 42 - -t 60.477887636727004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 24 -a 42 h -t 60.477887636727004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 24 -a 42 + -t 60.477887636727004 -s 23 -d 26 -p SRM -e 168 -c 42 -i 24 -a 42 - -t 60.477887636727004 -s 23 -d 26 -p SRM -e 168 -c 42 -i 24 -a 42 h -t 60.477887636727004 -s 23 -d 26 -p SRM -e 168 -c 42 -i 24 -a 42 r -t 60.477887636727004 -s 21 -d 24 -p SRM -e 168 -c 42 -i 24 -a 42 r -t 60.489231636727006 -s 13 -d 15 -p SRM -e 168 -c 42 -i 24 -a 42 r -t 60.489231636727006 -s 13 -d 16 -p SRM -e 168 -c 42 -i 24 -a 42 + -t 60.489231636727006 -s 16 -d 17 -p SRM -e 168 -c 42 -i 24 -a 42 - -t 60.489231636727006 -s 16 -d 17 -p SRM -e 168 -c 42 -i 24 -a 42 h -t 60.489231636727006 -s 16 -d 17 -p SRM -e 168 -c 42 -i 24 -a 42 + -t 60.489231636727006 -s 16 -d 18 -p SRM -e 168 -c 42 -i 24 -a 42 - -t 60.489231636727006 -s 16 -d 18 -p SRM -e 168 -c 42 -i 24 -a 42 h -t 60.489231636727006 -s 16 -d 18 -p SRM -e 168 -c 42 -i 24 -a 42 r -t 60.489231636727006 -s 23 -d 25 -p SRM -e 168 -c 42 -i 24 -a 42 r -t 60.489231636727006 -s 23 -d 26 -p SRM -e 168 -c 42 -i 24 -a 42 + -t 60.489231636727006 -s 26 -d 27 -p SRM -e 168 -c 42 -i 24 -a 42 - -t 60.489231636727006 -s 26 -d 27 -p SRM -e 168 -c 42 -i 24 -a 42 h -t 60.489231636727006 -s 26 -d 27 -p SRM -e 168 -c 42 -i 24 -a 42 + -t 60.489231636727006 -s 26 -d 28 -p SRM -e 168 -c 42 -i 24 -a 42 - -t 60.489231636727006 -s 26 -d 28 -p SRM -e 168 -c 42 -i 24 -a 42 h -t 60.489231636727006 -s 26 -d 28 -p SRM -e 168 -c 42 -i 24 -a 42 r -t 60.500575636727007 -s 16 -d 17 -p SRM -e 168 -c 42 -i 24 -a 42 r -t 60.500575636727007 -s 16 -d 18 -p SRM -e 168 -c 42 -i 24 -a 42 r -t 60.500575636727007 -s 26 -d 27 -p SRM -e 168 -c 42 -i 24 -a 42 r -t 60.500575636727007 -s 26 -d 28 -p SRM -e 168 -c 42 -i 24 -a 42 + -t 61.034017785701003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 25 -a 42 + -t 61.034017785701003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 25 -a 42 - -t 61.034017785701003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 25 -a 42 - -t 61.034017785701003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 25 -a 42 h -t 61.034017785701003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 25 -a 42 + -t 61.034017785701003 -s 11 -d 13 -p SRM -e 168 -c 42 -i 25 -a 42 - -t 61.034017785701003 -s 11 -d 13 -p SRM -e 168 -c 42 -i 25 -a 42 h -t 61.034017785701003 -s 11 -d 13 -p SRM -e 168 -c 42 -i 25 -a 42 + -t 61.034017785701003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 25 -a 42 - -t 61.034017785701003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 25 -a 42 h -t 61.034017785701003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 25 -a 42 h -t 61.034017785701003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 25 -a 42 + -t 61.034017785701003 -s 21 -d 23 -p SRM -e 168 -c 42 -i 25 -a 42 - -t 61.034017785701003 -s 21 -d 23 -p SRM -e 168 -c 42 -i 25 -a 42 h -t 61.034017785701003 -s 21 -d 23 -p SRM -e 168 -c 42 -i 25 -a 42 + -t 61.034017785701003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 25 -a 42 - -t 61.034017785701003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 25 -a 42 h -t 61.034017785701003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 25 -a 42 r -t 61.045361785701004 -s 11 -d 10 -p SRM -e 168 -c 42 -i 25 -a 42 + -t 61.045361785701004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 25 -a 42 - -t 61.045361785701004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 25 -a 42 h -t 61.045361785701004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 25 -a 42 r -t 61.045361785701004 -s 11 -d 13 -p SRM -e 168 -c 42 -i 25 -a 42 + -t 61.045361785701004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 25 -a 42 - -t 61.045361785701004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 25 -a 42 h -t 61.045361785701004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 25 -a 42 + -t 61.045361785701004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 25 -a 42 - -t 61.045361785701004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 25 -a 42 h -t 61.045361785701004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 25 -a 42 r -t 61.045361785701004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 25 -a 42 r -t 61.045361785701004 -s 21 -d 20 -p SRM -e 168 -c 42 -i 25 -a 42 + -t 61.045361785701004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 25 -a 42 - -t 61.045361785701004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 25 -a 42 h -t 61.045361785701004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 25 -a 42 r -t 61.045361785701004 -s 21 -d 23 -p SRM -e 168 -c 42 -i 25 -a 42 + -t 61.045361785701004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 25 -a 42 - -t 61.045361785701004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 25 -a 42 h -t 61.045361785701004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 25 -a 42 + -t 61.045361785701004 -s 23 -d 26 -p SRM -e 168 -c 42 -i 25 -a 42 - -t 61.045361785701004 -s 23 -d 26 -p SRM -e 168 -c 42 -i 25 -a 42 h -t 61.045361785701004 -s 23 -d 26 -p SRM -e 168 -c 42 -i 25 -a 42 r -t 61.045361785701004 -s 21 -d 24 -p SRM -e 168 -c 42 -i 25 -a 42 r -t 61.056705785701006 -s 10 -d 12 -p SRM -e 168 -c 42 -i 25 -a 42 r -t 61.056705785701006 -s 13 -d 15 -p SRM -e 168 -c 42 -i 25 -a 42 r -t 61.056705785701006 -s 13 -d 16 -p SRM -e 168 -c 42 -i 25 -a 42 + -t 61.056705785701006 -s 16 -d 17 -p SRM -e 168 -c 42 -i 25 -a 42 - -t 61.056705785701006 -s 16 -d 17 -p SRM -e 168 -c 42 -i 25 -a 42 h -t 61.056705785701006 -s 16 -d 17 -p SRM -e 168 -c 42 -i 25 -a 42 + -t 61.056705785701006 -s 16 -d 18 -p SRM -e 168 -c 42 -i 25 -a 42 - -t 61.056705785701006 -s 16 -d 18 -p SRM -e 168 -c 42 -i 25 -a 42 h -t 61.056705785701006 -s 16 -d 18 -p SRM -e 168 -c 42 -i 25 -a 42 r -t 61.056705785701006 -s 20 -d 22 -p SRM -e 168 -c 42 -i 25 -a 42 r -t 61.056705785701006 -s 23 -d 25 -p SRM -e 168 -c 42 -i 25 -a 42 r -t 61.056705785701006 -s 23 -d 26 -p SRM -e 168 -c 42 -i 25 -a 42 + -t 61.056705785701006 -s 26 -d 27 -p SRM -e 168 -c 42 -i 25 -a 42 - -t 61.056705785701006 -s 26 -d 27 -p SRM -e 168 -c 42 -i 25 -a 42 h -t 61.056705785701006 -s 26 -d 27 -p SRM -e 168 -c 42 -i 25 -a 42 + -t 61.056705785701006 -s 26 -d 28 -p SRM -e 168 -c 42 -i 25 -a 42 - -t 61.056705785701006 -s 26 -d 28 -p SRM -e 168 -c 42 -i 25 -a 42 h -t 61.056705785701006 -s 26 -d 28 -p SRM -e 168 -c 42 -i 25 -a 42 r -t 61.068049785701007 -s 16 -d 17 -p SRM -e 168 -c 42 -i 25 -a 42 r -t 61.068049785701007 -s 16 -d 18 -p SRM -e 168 -c 42 -i 25 -a 42 r -t 61.068049785701007 -s 26 -d 27 -p SRM -e 168 -c 42 -i 25 -a 42 r -t 61.068049785701007 -s 26 -d 28 -p SRM -e 168 -c 42 -i 25 -a 42 + -t 61.252226229176998 -s 10 -d 11 -p SRM -e 168 -c 42 -i 26 -a 42 + -t 61.252226229176998 -s 20 -d 21 -p SRM -e 168 -c 42 -i 26 -a 42 - -t 61.252226229176998 -s 10 -d 11 -p SRM -e 168 -c 42 -i 26 -a 42 - -t 61.252226229176998 -s 20 -d 21 -p SRM -e 168 -c 42 -i 26 -a 42 h -t 61.252226229176998 -s 10 -d 11 -p SRM -e 168 -c 42 -i 26 -a 42 + -t 61.252226229176998 -s 10 -d 12 -p SRM -e 168 -c 42 -i 26 -a 42 - -t 61.252226229176998 -s 10 -d 12 -p SRM -e 168 -c 42 -i 26 -a 42 h -t 61.252226229176998 -s 10 -d 12 -p SRM -e 168 -c 42 -i 26 -a 42 h -t 61.252226229176998 -s 20 -d 21 -p SRM -e 168 -c 42 -i 26 -a 42 + -t 61.252226229176998 -s 20 -d 22 -p SRM -e 168 -c 42 -i 26 -a 42 - -t 61.252226229176998 -s 20 -d 22 -p SRM -e 168 -c 42 -i 26 -a 42 h -t 61.252226229176998 -s 20 -d 22 -p SRM -e 168 -c 42 -i 26 -a 42 r -t 61.263570229176999 -s 10 -d 11 -p SRM -e 168 -c 42 -i 26 -a 42 + -t 61.263570229176999 -s 11 -d 13 -p SRM -e 168 -c 42 -i 26 -a 42 - -t 61.263570229176999 -s 11 -d 13 -p SRM -e 168 -c 42 -i 26 -a 42 h -t 61.263570229176999 -s 11 -d 13 -p SRM -e 168 -c 42 -i 26 -a 42 + -t 61.263570229176999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 26 -a 42 - -t 61.263570229176999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 26 -a 42 h -t 61.263570229176999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 26 -a 42 r -t 61.263570229176999 -s 10 -d 12 -p SRM -e 168 -c 42 -i 26 -a 42 r -t 61.263570229176999 -s 20 -d 21 -p SRM -e 168 -c 42 -i 26 -a 42 + -t 61.263570229176999 -s 21 -d 23 -p SRM -e 168 -c 42 -i 26 -a 42 - -t 61.263570229176999 -s 21 -d 23 -p SRM -e 168 -c 42 -i 26 -a 42 h -t 61.263570229176999 -s 21 -d 23 -p SRM -e 168 -c 42 -i 26 -a 42 + -t 61.263570229176999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 26 -a 42 - -t 61.263570229176999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 26 -a 42 h -t 61.263570229176999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 26 -a 42 r -t 61.263570229176999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 26 -a 42 r -t 61.274914229177 -s 11 -d 13 -p SRM -e 168 -c 42 -i 26 -a 42 + -t 61.274914229177 -s 13 -d 15 -p SRM -e 168 -c 42 -i 26 -a 42 - -t 61.274914229177 -s 13 -d 15 -p SRM -e 168 -c 42 -i 26 -a 42 h -t 61.274914229177 -s 13 -d 15 -p SRM -e 168 -c 42 -i 26 -a 42 + -t 61.274914229177 -s 13 -d 16 -p SRM -e 168 -c 42 -i 26 -a 42 - -t 61.274914229177 -s 13 -d 16 -p SRM -e 168 -c 42 -i 26 -a 42 h -t 61.274914229177 -s 13 -d 16 -p SRM -e 168 -c 42 -i 26 -a 42 r -t 61.274914229177 -s 11 -d 14 -p SRM -e 168 -c 42 -i 26 -a 42 r -t 61.274914229177 -s 21 -d 23 -p SRM -e 168 -c 42 -i 26 -a 42 + -t 61.274914229177 -s 23 -d 25 -p SRM -e 168 -c 42 -i 26 -a 42 - -t 61.274914229177 -s 23 -d 25 -p SRM -e 168 -c 42 -i 26 -a 42 h -t 61.274914229177 -s 23 -d 25 -p SRM -e 168 -c 42 -i 26 -a 42 + -t 61.274914229177 -s 23 -d 26 -p SRM -e 168 -c 42 -i 26 -a 42 - -t 61.274914229177 -s 23 -d 26 -p SRM -e 168 -c 42 -i 26 -a 42 h -t 61.274914229177 -s 23 -d 26 -p SRM -e 168 -c 42 -i 26 -a 42 r -t 61.274914229177 -s 21 -d 24 -p SRM -e 168 -c 42 -i 26 -a 42 r -t 61.286258229177001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 26 -a 42 r -t 61.286258229177001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 26 -a 42 + -t 61.286258229177001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 26 -a 42 - -t 61.286258229177001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 26 -a 42 h -t 61.286258229177001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 26 -a 42 + -t 61.286258229177001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 26 -a 42 - -t 61.286258229177001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 26 -a 42 h -t 61.286258229177001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 26 -a 42 r -t 61.286258229177001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 26 -a 42 r -t 61.286258229177001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 26 -a 42 + -t 61.286258229177001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 26 -a 42 - -t 61.286258229177001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 26 -a 42 h -t 61.286258229177001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 26 -a 42 + -t 61.286258229177001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 26 -a 42 - -t 61.286258229177001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 26 -a 42 h -t 61.286258229177001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 26 -a 42 r -t 61.297602229177002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 26 -a 42 r -t 61.297602229177002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 26 -a 42 r -t 61.297602229177002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 26 -a 42 r -t 61.297602229177002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 26 -a 42 + -t 61.305772428776002 -s 15 -d 13 -p SRM -e 168 -c 42 -i 27 -a 42 + -t 61.305772428776002 -s 25 -d 23 -p SRM -e 168 -c 42 -i 27 -a 42 - -t 61.305772428776002 -s 15 -d 13 -p SRM -e 168 -c 42 -i 27 -a 42 - -t 61.305772428776002 -s 25 -d 23 -p SRM -e 168 -c 42 -i 27 -a 42 h -t 61.305772428776002 -s 15 -d 13 -p SRM -e 168 -c 42 -i 27 -a 42 h -t 61.305772428776002 -s 25 -d 23 -p SRM -e 168 -c 42 -i 27 -a 42 r -t 61.317116428776004 -s 15 -d 13 -p SRM -e 168 -c 42 -i 27 -a 42 + -t 61.317116428776004 -s 13 -d 11 -p SRM -e 168 -c 42 -i 27 -a 42 - -t 61.317116428776004 -s 13 -d 11 -p SRM -e 168 -c 42 -i 27 -a 42 h -t 61.317116428776004 -s 13 -d 11 -p SRM -e 168 -c 42 -i 27 -a 42 + -t 61.317116428776004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 27 -a 42 - -t 61.317116428776004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 27 -a 42 h -t 61.317116428776004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 27 -a 42 r -t 61.317116428776004 -s 25 -d 23 -p SRM -e 168 -c 42 -i 27 -a 42 + -t 61.317116428776004 -s 23 -d 21 -p SRM -e 168 -c 42 -i 27 -a 42 - -t 61.317116428776004 -s 23 -d 21 -p SRM -e 168 -c 42 -i 27 -a 42 h -t 61.317116428776004 -s 23 -d 21 -p SRM -e 168 -c 42 -i 27 -a 42 + -t 61.317116428776004 -s 23 -d 26 -p SRM -e 168 -c 42 -i 27 -a 42 - -t 61.317116428776004 -s 23 -d 26 -p SRM -e 168 -c 42 -i 27 -a 42 h -t 61.317116428776004 -s 23 -d 26 -p SRM -e 168 -c 42 -i 27 -a 42 r -t 61.328460428776005 -s 13 -d 11 -p SRM -e 168 -c 42 -i 27 -a 42 + -t 61.328460428776005 -s 11 -d 10 -p SRM -e 168 -c 42 -i 27 -a 42 - -t 61.328460428776005 -s 11 -d 10 -p SRM -e 168 -c 42 -i 27 -a 42 h -t 61.328460428776005 -s 11 -d 10 -p SRM -e 168 -c 42 -i 27 -a 42 + -t 61.328460428776005 -s 11 -d 14 -p SRM -e 168 -c 42 -i 27 -a 42 - -t 61.328460428776005 -s 11 -d 14 -p SRM -e 168 -c 42 -i 27 -a 42 h -t 61.328460428776005 -s 11 -d 14 -p SRM -e 168 -c 42 -i 27 -a 42 r -t 61.328460428776005 -s 13 -d 16 -p SRM -e 168 -c 42 -i 27 -a 42 + -t 61.328460428776005 -s 16 -d 17 -p SRM -e 168 -c 42 -i 27 -a 42 - -t 61.328460428776005 -s 16 -d 17 -p SRM -e 168 -c 42 -i 27 -a 42 h -t 61.328460428776005 -s 16 -d 17 -p SRM -e 168 -c 42 -i 27 -a 42 + -t 61.328460428776005 -s 16 -d 18 -p SRM -e 168 -c 42 -i 27 -a 42 - -t 61.328460428776005 -s 16 -d 18 -p SRM -e 168 -c 42 -i 27 -a 42 h -t 61.328460428776005 -s 16 -d 18 -p SRM -e 168 -c 42 -i 27 -a 42 r -t 61.328460428776005 -s 23 -d 21 -p SRM -e 168 -c 42 -i 27 -a 42 + -t 61.328460428776005 -s 21 -d 20 -p SRM -e 168 -c 42 -i 27 -a 42 - -t 61.328460428776005 -s 21 -d 20 -p SRM -e 168 -c 42 -i 27 -a 42 h -t 61.328460428776005 -s 21 -d 20 -p SRM -e 168 -c 42 -i 27 -a 42 + -t 61.328460428776005 -s 21 -d 24 -p SRM -e 168 -c 42 -i 27 -a 42 - -t 61.328460428776005 -s 21 -d 24 -p SRM -e 168 -c 42 -i 27 -a 42 h -t 61.328460428776005 -s 21 -d 24 -p SRM -e 168 -c 42 -i 27 -a 42 r -t 61.328460428776005 -s 23 -d 26 -p SRM -e 168 -c 42 -i 27 -a 42 + -t 61.328460428776005 -s 26 -d 27 -p SRM -e 168 -c 42 -i 27 -a 42 - -t 61.328460428776005 -s 26 -d 27 -p SRM -e 168 -c 42 -i 27 -a 42 h -t 61.328460428776005 -s 26 -d 27 -p SRM -e 168 -c 42 -i 27 -a 42 + -t 61.328460428776005 -s 26 -d 28 -p SRM -e 168 -c 42 -i 27 -a 42 - -t 61.328460428776005 -s 26 -d 28 -p SRM -e 168 -c 42 -i 27 -a 42 h -t 61.328460428776005 -s 26 -d 28 -p SRM -e 168 -c 42 -i 27 -a 42 r -t 61.339804428776006 -s 11 -d 10 -p SRM -e 168 -c 42 -i 27 -a 42 + -t 61.339804428776006 -s 10 -d 12 -p SRM -e 168 -c 42 -i 27 -a 42 - -t 61.339804428776006 -s 10 -d 12 -p SRM -e 168 -c 42 -i 27 -a 42 h -t 61.339804428776006 -s 10 -d 12 -p SRM -e 168 -c 42 -i 27 -a 42 r -t 61.339804428776006 -s 11 -d 14 -p SRM -e 168 -c 42 -i 27 -a 42 r -t 61.339804428776006 -s 16 -d 17 -p SRM -e 168 -c 42 -i 27 -a 42 r -t 61.339804428776006 -s 16 -d 18 -p SRM -e 168 -c 42 -i 27 -a 42 r -t 61.339804428776006 -s 21 -d 20 -p SRM -e 168 -c 42 -i 27 -a 42 + -t 61.339804428776006 -s 20 -d 22 -p SRM -e 168 -c 42 -i 27 -a 42 - -t 61.339804428776006 -s 20 -d 22 -p SRM -e 168 -c 42 -i 27 -a 42 h -t 61.339804428776006 -s 20 -d 22 -p SRM -e 168 -c 42 -i 27 -a 42 r -t 61.339804428776006 -s 21 -d 24 -p SRM -e 168 -c 42 -i 27 -a 42 r -t 61.339804428776006 -s 26 -d 27 -p SRM -e 168 -c 42 -i 27 -a 42 r -t 61.339804428776006 -s 26 -d 28 -p SRM -e 168 -c 42 -i 27 -a 42 r -t 61.351148428776007 -s 10 -d 12 -p SRM -e 168 -c 42 -i 27 -a 42 r -t 61.351148428776007 -s 20 -d 22 -p SRM -e 168 -c 42 -i 27 -a 42 + -t 62.428322032060002 -s 18 -d 16 -p SRM -e 168 -c 42 -i 28 -a 42 + -t 62.428322032060002 -s 28 -d 26 -p SRM -e 168 -c 42 -i 28 -a 42 - -t 62.428322032060002 -s 18 -d 16 -p SRM -e 168 -c 42 -i 28 -a 42 - -t 62.428322032060002 -s 28 -d 26 -p SRM -e 168 -c 42 -i 28 -a 42 h -t 62.428322032060002 -s 18 -d 16 -p SRM -e 168 -c 42 -i 28 -a 42 h -t 62.428322032060002 -s 28 -d 26 -p SRM -e 168 -c 42 -i 28 -a 42 r -t 62.439666032060003 -s 18 -d 16 -p SRM -e 168 -c 42 -i 28 -a 42 + -t 62.439666032060003 -s 16 -d 13 -p SRM -e 168 -c 42 -i 28 -a 42 - -t 62.439666032060003 -s 16 -d 13 -p SRM -e 168 -c 42 -i 28 -a 42 h -t 62.439666032060003 -s 16 -d 13 -p SRM -e 168 -c 42 -i 28 -a 42 + -t 62.439666032060003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 28 -a 42 - -t 62.439666032060003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 28 -a 42 h -t 62.439666032060003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 28 -a 42 r -t 62.439666032060003 -s 28 -d 26 -p SRM -e 168 -c 42 -i 28 -a 42 + -t 62.439666032060003 -s 26 -d 23 -p SRM -e 168 -c 42 -i 28 -a 42 - -t 62.439666032060003 -s 26 -d 23 -p SRM -e 168 -c 42 -i 28 -a 42 h -t 62.439666032060003 -s 26 -d 23 -p SRM -e 168 -c 42 -i 28 -a 42 + -t 62.439666032060003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 28 -a 42 - -t 62.439666032060003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 28 -a 42 h -t 62.439666032060003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 28 -a 42 r -t 62.451010032060005 -s 16 -d 13 -p SRM -e 168 -c 42 -i 28 -a 42 + -t 62.451010032060005 -s 13 -d 11 -p SRM -e 168 -c 42 -i 28 -a 42 - -t 62.451010032060005 -s 13 -d 11 -p SRM -e 168 -c 42 -i 28 -a 42 h -t 62.451010032060005 -s 13 -d 11 -p SRM -e 168 -c 42 -i 28 -a 42 + -t 62.451010032060005 -s 13 -d 15 -p SRM -e 168 -c 42 -i 28 -a 42 - -t 62.451010032060005 -s 13 -d 15 -p SRM -e 168 -c 42 -i 28 -a 42 h -t 62.451010032060005 -s 13 -d 15 -p SRM -e 168 -c 42 -i 28 -a 42 r -t 62.451010032060005 -s 16 -d 17 -p SRM -e 168 -c 42 -i 28 -a 42 r -t 62.451010032060005 -s 26 -d 23 -p SRM -e 168 -c 42 -i 28 -a 42 + -t 62.451010032060005 -s 23 -d 21 -p SRM -e 168 -c 42 -i 28 -a 42 - -t 62.451010032060005 -s 23 -d 21 -p SRM -e 168 -c 42 -i 28 -a 42 h -t 62.451010032060005 -s 23 -d 21 -p SRM -e 168 -c 42 -i 28 -a 42 + -t 62.451010032060005 -s 23 -d 25 -p SRM -e 168 -c 42 -i 28 -a 42 - -t 62.451010032060005 -s 23 -d 25 -p SRM -e 168 -c 42 -i 28 -a 42 h -t 62.451010032060005 -s 23 -d 25 -p SRM -e 168 -c 42 -i 28 -a 42 r -t 62.451010032060005 -s 26 -d 27 -p SRM -e 168 -c 42 -i 28 -a 42 r -t 62.462354032060006 -s 13 -d 11 -p SRM -e 168 -c 42 -i 28 -a 42 + -t 62.462354032060006 -s 11 -d 10 -p SRM -e 168 -c 42 -i 28 -a 42 - -t 62.462354032060006 -s 11 -d 10 -p SRM -e 168 -c 42 -i 28 -a 42 h -t 62.462354032060006 -s 11 -d 10 -p SRM -e 168 -c 42 -i 28 -a 42 + -t 62.462354032060006 -s 11 -d 14 -p SRM -e 168 -c 42 -i 28 -a 42 - -t 62.462354032060006 -s 11 -d 14 -p SRM -e 168 -c 42 -i 28 -a 42 h -t 62.462354032060006 -s 11 -d 14 -p SRM -e 168 -c 42 -i 28 -a 42 r -t 62.462354032060006 -s 13 -d 15 -p SRM -e 168 -c 42 -i 28 -a 42 r -t 62.462354032060006 -s 23 -d 21 -p SRM -e 168 -c 42 -i 28 -a 42 + -t 62.462354032060006 -s 21 -d 20 -p SRM -e 168 -c 42 -i 28 -a 42 - -t 62.462354032060006 -s 21 -d 20 -p SRM -e 168 -c 42 -i 28 -a 42 h -t 62.462354032060006 -s 21 -d 20 -p SRM -e 168 -c 42 -i 28 -a 42 + -t 62.462354032060006 -s 21 -d 24 -p SRM -e 168 -c 42 -i 28 -a 42 - -t 62.462354032060006 -s 21 -d 24 -p SRM -e 168 -c 42 -i 28 -a 42 h -t 62.462354032060006 -s 21 -d 24 -p SRM -e 168 -c 42 -i 28 -a 42 r -t 62.462354032060006 -s 23 -d 25 -p SRM -e 168 -c 42 -i 28 -a 42 r -t 62.473698032060007 -s 11 -d 10 -p SRM -e 168 -c 42 -i 28 -a 42 + -t 62.473698032060007 -s 10 -d 12 -p SRM -e 168 -c 42 -i 28 -a 42 - -t 62.473698032060007 -s 10 -d 12 -p SRM -e 168 -c 42 -i 28 -a 42 h -t 62.473698032060007 -s 10 -d 12 -p SRM -e 168 -c 42 -i 28 -a 42 r -t 62.473698032060007 -s 11 -d 14 -p SRM -e 168 -c 42 -i 28 -a 42 r -t 62.473698032060007 -s 21 -d 20 -p SRM -e 168 -c 42 -i 28 -a 42 + -t 62.473698032060007 -s 20 -d 22 -p SRM -e 168 -c 42 -i 28 -a 42 - -t 62.473698032060007 -s 20 -d 22 -p SRM -e 168 -c 42 -i 28 -a 42 h -t 62.473698032060007 -s 20 -d 22 -p SRM -e 168 -c 42 -i 28 -a 42 r -t 62.473698032060007 -s 21 -d 24 -p SRM -e 168 -c 42 -i 28 -a 42 r -t 62.485042032060008 -s 10 -d 12 -p SRM -e 168 -c 42 -i 28 -a 42 r -t 62.485042032060008 -s 20 -d 22 -p SRM -e 168 -c 42 -i 28 -a 42 + -t 65.14773332032901 -s 12 -d 10 -p cbr -e 1280 -c 2 -i 29 -a 2 + -t 65.14773332032901 -s 22 -d 20 -p cbr -e 1280 -c 2 -i 29 -a 2 - -t 65.14773332032901 -s 12 -d 10 -p cbr -e 1280 -c 2 -i 29 -a 2 - -t 65.14773332032901 -s 22 -d 20 -p cbr -e 1280 -c 2 -i 29 -a 2 h -t 65.14773332032901 -s 12 -d 10 -p cbr -e 1280 -c 2 -i 29 -a 2 h -t 65.14773332032901 -s 22 -d 20 -p cbr -e 1280 -c 2 -i 29 -a 2 r -t 65.167973320329011 -s 12 -d 10 -p cbr -e 1280 -c 2 -i 29 -a 2 + -t 65.167973320329011 -s 10 -d 11 -p cbr -e 1280 -c 2 -i 29 -a 2 - -t 65.167973320329011 -s 10 -d 11 -p cbr -e 1280 -c 2 -i 29 -a 2 h -t 65.167973320329011 -s 10 -d 11 -p cbr -e 1280 -c 2 -i 29 -a 2 r -t 65.167973320329011 -s 22 -d 20 -p cbr -e 1280 -c 2 -i 29 -a 2 + -t 65.167973320329011 -s 20 -d 21 -p cbr -e 1280 -c 2 -i 29 -a 2 - -t 65.167973320329011 -s 20 -d 21 -p cbr -e 1280 -c 2 -i 29 -a 2 h -t 65.167973320329011 -s 20 -d 21 -p cbr -e 1280 -c 2 -i 29 -a 2 r -t 65.188213320329012 -s 10 -d 11 -p cbr -e 1280 -c 2 -i 29 -a 2 + -t 65.188213320329012 -s 11 -d 13 -p cbr -e 1280 -c 2 -i 29 -a 2 - -t 65.188213320329012 -s 11 -d 13 -p cbr -e 1280 -c 2 -i 29 -a 2 h -t 65.188213320329012 -s 11 -d 13 -p cbr -e 1280 -c 2 -i 29 -a 2 + -t 65.188213320329012 -s 11 -d 14 -p cbr -e 1280 -c 2 -i 29 -a 2 - -t 65.188213320329012 -s 11 -d 14 -p cbr -e 1280 -c 2 -i 29 -a 2 h -t 65.188213320329012 -s 11 -d 14 -p cbr -e 1280 -c 2 -i 29 -a 2 r -t 65.188213320329012 -s 20 -d 21 -p cbr -e 1280 -c 2 -i 29 -a 2 + -t 65.188213320329012 -s 21 -d 23 -p cbr -e 1280 -c 2 -i 29 -a 2 - -t 65.188213320329012 -s 21 -d 23 -p cbr -e 1280 -c 2 -i 29 -a 2 h -t 65.188213320329012 -s 21 -d 23 -p cbr -e 1280 -c 2 -i 29 -a 2 + -t 65.188213320329012 -s 21 -d 24 -p cbr -e 1280 -c 2 -i 29 -a 2 - -t 65.188213320329012 -s 21 -d 24 -p cbr -e 1280 -c 2 -i 29 -a 2 h -t 65.188213320329012 -s 21 -d 24 -p cbr -e 1280 -c 2 -i 29 -a 2 r -t 65.208453320329014 -s 11 -d 13 -p cbr -e 1280 -c 2 -i 29 -a 2 + -t 65.208453320329014 -s 13 -d 15 -p cbr -e 1280 -c 2 -i 29 -a 2 - -t 65.208453320329014 -s 13 -d 15 -p cbr -e 1280 -c 2 -i 29 -a 2 h -t 65.208453320329014 -s 13 -d 15 -p cbr -e 1280 -c 2 -i 29 -a 2 + -t 65.208453320329014 -s 13 -d 16 -p cbr -e 1280 -c 2 -i 29 -a 2 - -t 65.208453320329014 -s 13 -d 16 -p cbr -e 1280 -c 2 -i 29 -a 2 h -t 65.208453320329014 -s 13 -d 16 -p cbr -e 1280 -c 2 -i 29 -a 2 r -t 65.208453320329014 -s 11 -d 14 -p cbr -e 1280 -c 2 -i 29 -a 2 r -t 65.208453320329014 -s 21 -d 23 -p cbr -e 1280 -c 2 -i 29 -a 2 + -t 65.208453320329014 -s 23 -d 25 -p cbr -e 1280 -c 2 -i 29 -a 2 - -t 65.208453320329014 -s 23 -d 25 -p cbr -e 1280 -c 2 -i 29 -a 2 h -t 65.208453320329014 -s 23 -d 25 -p cbr -e 1280 -c 2 -i 29 -a 2 + -t 65.208453320329014 -s 23 -d 26 -p cbr -e 1280 -c 2 -i 29 -a 2 - -t 65.208453320329014 -s 23 -d 26 -p cbr -e 1280 -c 2 -i 29 -a 2 h -t 65.208453320329014 -s 23 -d 26 -p cbr -e 1280 -c 2 -i 29 -a 2 r -t 65.208453320329014 -s 21 -d 24 -p cbr -e 1280 -c 2 -i 29 -a 2 r -t 65.228693320329015 -s 13 -d 15 -p cbr -e 1280 -c 2 -i 29 -a 2 r -t 65.228693320329015 -s 13 -d 16 -p cbr -e 1280 -c 2 -i 29 -a 2 + -t 65.228693320329015 -s 16 -d 17 -p cbr -e 1280 -c 2 -i 29 -a 2 - -t 65.228693320329015 -s 16 -d 17 -p cbr -e 1280 -c 2 -i 29 -a 2 h -t 65.228693320329015 -s 16 -d 17 -p cbr -e 1280 -c 2 -i 29 -a 2 + -t 65.228693320329015 -s 16 -d 18 -p cbr -e 1280 -c 2 -i 29 -a 2 - -t 65.228693320329015 -s 16 -d 18 -p cbr -e 1280 -c 2 -i 29 -a 2 h -t 65.228693320329015 -s 16 -d 18 -p cbr -e 1280 -c 2 -i 29 -a 2 r -t 65.228693320329015 -s 23 -d 25 -p cbr -e 1280 -c 2 -i 29 -a 2 r -t 65.228693320329015 -s 23 -d 26 -p cbr -e 1280 -c 2 -i 29 -a 2 + -t 65.228693320329015 -s 26 -d 27 -p cbr -e 1280 -c 2 -i 29 -a 2 - -t 65.228693320329015 -s 26 -d 27 -p cbr -e 1280 -c 2 -i 29 -a 2 h -t 65.228693320329015 -s 26 -d 27 -p cbr -e 1280 -c 2 -i 29 -a 2 + -t 65.228693320329015 -s 26 -d 28 -p cbr -e 1280 -c 2 -i 29 -a 2 - -t 65.228693320329015 -s 26 -d 28 -p cbr -e 1280 -c 2 -i 29 -a 2 h -t 65.228693320329015 -s 26 -d 28 -p cbr -e 1280 -c 2 -i 29 -a 2 r -t 65.248933320329016 -s 16 -d 17 -p cbr -e 1280 -c 2 -i 29 -a 2 r -t 65.248933320329016 -s 16 -d 18 -p cbr -e 1280 -c 2 -i 29 -a 2 r -t 65.248933320329016 -s 26 -d 27 -p cbr -e 1280 -c 2 -i 29 -a 2 r -t 65.248933320329016 -s 26 -d 28 -p cbr -e 1280 -c 2 -i 29 -a 2 + -t 65.507793959091629 -s 15 -d 13 -p cbr -e 1280 -c 5 -i 30 -a 5 + -t 65.507793959091629 -s 25 -d 23 -p cbr -e 1280 -c 5 -i 30 -a 5 - -t 65.507793959091629 -s 15 -d 13 -p cbr -e 1280 -c 5 -i 30 -a 5 - -t 65.507793959091629 -s 25 -d 23 -p cbr -e 1280 -c 5 -i 30 -a 5 h -t 65.507793959091629 -s 15 -d 13 -p cbr -e 1280 -c 5 -i 30 -a 5 h -t 65.507793959091629 -s 25 -d 23 -p cbr -e 1280 -c 5 -i 30 -a 5 r -t 65.52803395909163 -s 15 -d 13 -p cbr -e 1280 -c 5 -i 30 -a 5 + -t 65.52803395909163 -s 13 -d 11 -p cbr -e 1280 -c 5 -i 30 -a 5 - -t 65.52803395909163 -s 13 -d 11 -p cbr -e 1280 -c 5 -i 30 -a 5 h -t 65.52803395909163 -s 13 -d 11 -p cbr -e 1280 -c 5 -i 30 -a 5 + -t 65.52803395909163 -s 13 -d 16 -p cbr -e 1280 -c 5 -i 30 -a 5 - -t 65.52803395909163 -s 13 -d 16 -p cbr -e 1280 -c 5 -i 30 -a 5 h -t 65.52803395909163 -s 13 -d 16 -p cbr -e 1280 -c 5 -i 30 -a 5 r -t 65.52803395909163 -s 25 -d 23 -p cbr -e 1280 -c 5 -i 30 -a 5 + -t 65.52803395909163 -s 23 -d 21 -p cbr -e 1280 -c 5 -i 30 -a 5 - -t 65.52803395909163 -s 23 -d 21 -p cbr -e 1280 -c 5 -i 30 -a 5 h -t 65.52803395909163 -s 23 -d 21 -p cbr -e 1280 -c 5 -i 30 -a 5 + -t 65.52803395909163 -s 23 -d 26 -p cbr -e 1280 -c 5 -i 30 -a 5 - -t 65.52803395909163 -s 23 -d 26 -p cbr -e 1280 -c 5 -i 30 -a 5 h -t 65.52803395909163 -s 23 -d 26 -p cbr -e 1280 -c 5 -i 30 -a 5 r -t 65.548273959091631 -s 13 -d 11 -p cbr -e 1280 -c 5 -i 30 -a 5 + -t 65.548273959091631 -s 11 -d 10 -p cbr -e 1280 -c 5 -i 30 -a 5 - -t 65.548273959091631 -s 11 -d 10 -p cbr -e 1280 -c 5 -i 30 -a 5 h -t 65.548273959091631 -s 11 -d 10 -p cbr -e 1280 -c 5 -i 30 -a 5 + -t 65.548273959091631 -s 11 -d 14 -p cbr -e 1280 -c 5 -i 30 -a 5 - -t 65.548273959091631 -s 11 -d 14 -p cbr -e 1280 -c 5 -i 30 -a 5 h -t 65.548273959091631 -s 11 -d 14 -p cbr -e 1280 -c 5 -i 30 -a 5 r -t 65.548273959091631 -s 13 -d 16 -p cbr -e 1280 -c 5 -i 30 -a 5 + -t 65.548273959091631 -s 16 -d 17 -p cbr -e 1280 -c 5 -i 30 -a 5 - -t 65.548273959091631 -s 16 -d 17 -p cbr -e 1280 -c 5 -i 30 -a 5 h -t 65.548273959091631 -s 16 -d 17 -p cbr -e 1280 -c 5 -i 30 -a 5 + -t 65.548273959091631 -s 16 -d 18 -p cbr -e 1280 -c 5 -i 30 -a 5 - -t 65.548273959091631 -s 16 -d 18 -p cbr -e 1280 -c 5 -i 30 -a 5 h -t 65.548273959091631 -s 16 -d 18 -p cbr -e 1280 -c 5 -i 30 -a 5 r -t 65.548273959091631 -s 23 -d 21 -p cbr -e 1280 -c 5 -i 30 -a 5 + -t 65.548273959091631 -s 21 -d 20 -p cbr -e 1280 -c 5 -i 30 -a 5 - -t 65.548273959091631 -s 21 -d 20 -p cbr -e 1280 -c 5 -i 30 -a 5 h -t 65.548273959091631 -s 21 -d 20 -p cbr -e 1280 -c 5 -i 30 -a 5 + -t 65.548273959091631 -s 21 -d 24 -p cbr -e 1280 -c 5 -i 30 -a 5 - -t 65.548273959091631 -s 21 -d 24 -p cbr -e 1280 -c 5 -i 30 -a 5 h -t 65.548273959091631 -s 21 -d 24 -p cbr -e 1280 -c 5 -i 30 -a 5 r -t 65.548273959091631 -s 23 -d 26 -p cbr -e 1280 -c 5 -i 30 -a 5 + -t 65.548273959091631 -s 26 -d 27 -p cbr -e 1280 -c 5 -i 30 -a 5 - -t 65.548273959091631 -s 26 -d 27 -p cbr -e 1280 -c 5 -i 30 -a 5 h -t 65.548273959091631 -s 26 -d 27 -p cbr -e 1280 -c 5 -i 30 -a 5 + -t 65.548273959091631 -s 26 -d 28 -p cbr -e 1280 -c 5 -i 30 -a 5 - -t 65.548273959091631 -s 26 -d 28 -p cbr -e 1280 -c 5 -i 30 -a 5 h -t 65.548273959091631 -s 26 -d 28 -p cbr -e 1280 -c 5 -i 30 -a 5 r -t 65.568513959091632 -s 11 -d 10 -p cbr -e 1280 -c 5 -i 30 -a 5 + -t 65.568513959091632 -s 10 -d 12 -p cbr -e 1280 -c 5 -i 30 -a 5 - -t 65.568513959091632 -s 10 -d 12 -p cbr -e 1280 -c 5 -i 30 -a 5 h -t 65.568513959091632 -s 10 -d 12 -p cbr -e 1280 -c 5 -i 30 -a 5 r -t 65.568513959091632 -s 11 -d 14 -p cbr -e 1280 -c 5 -i 30 -a 5 r -t 65.568513959091632 -s 16 -d 17 -p cbr -e 1280 -c 5 -i 30 -a 5 r -t 65.568513959091632 -s 16 -d 18 -p cbr -e 1280 -c 5 -i 30 -a 5 r -t 65.568513959091632 -s 21 -d 20 -p cbr -e 1280 -c 5 -i 30 -a 5 + -t 65.568513959091632 -s 20 -d 22 -p cbr -e 1280 -c 5 -i 30 -a 5 - -t 65.568513959091632 -s 20 -d 22 -p cbr -e 1280 -c 5 -i 30 -a 5 h -t 65.568513959091632 -s 20 -d 22 -p cbr -e 1280 -c 5 -i 30 -a 5 r -t 65.568513959091632 -s 21 -d 24 -p cbr -e 1280 -c 5 -i 30 -a 5 r -t 65.568513959091632 -s 26 -d 27 -p cbr -e 1280 -c 5 -i 30 -a 5 r -t 65.568513959091632 -s 26 -d 28 -p cbr -e 1280 -c 5 -i 30 -a 5 r -t 65.588753959091633 -s 10 -d 12 -p cbr -e 1280 -c 5 -i 30 -a 5 r -t 65.588753959091633 -s 20 -d 22 -p cbr -e 1280 -c 5 -i 30 -a 5 + -t 67.585428236688443 -s 11 -d 10 -p cbr -e 1280 -c 1 -i 31 -a 1 + -t 67.585428236688443 -s 21 -d 20 -p cbr -e 1280 -c 1 -i 31 -a 1 - -t 67.585428236688443 -s 11 -d 10 -p cbr -e 1280 -c 1 -i 31 -a 1 - -t 67.585428236688443 -s 21 -d 20 -p cbr -e 1280 -c 1 -i 31 -a 1 h -t 67.585428236688443 -s 11 -d 10 -p cbr -e 1280 -c 1 -i 31 -a 1 + -t 67.585428236688443 -s 11 -d 13 -p cbr -e 1280 -c 1 -i 31 -a 1 - -t 67.585428236688443 -s 11 -d 13 -p cbr -e 1280 -c 1 -i 31 -a 1 h -t 67.585428236688443 -s 11 -d 13 -p cbr -e 1280 -c 1 -i 31 -a 1 + -t 67.585428236688443 -s 11 -d 14 -p cbr -e 1280 -c 1 -i 31 -a 1 - -t 67.585428236688443 -s 11 -d 14 -p cbr -e 1280 -c 1 -i 31 -a 1 h -t 67.585428236688443 -s 11 -d 14 -p cbr -e 1280 -c 1 -i 31 -a 1 h -t 67.585428236688443 -s 21 -d 20 -p cbr -e 1280 -c 1 -i 31 -a 1 + -t 67.585428236688443 -s 21 -d 23 -p cbr -e 1280 -c 1 -i 31 -a 1 - -t 67.585428236688443 -s 21 -d 23 -p cbr -e 1280 -c 1 -i 31 -a 1 h -t 67.585428236688443 -s 21 -d 23 -p cbr -e 1280 -c 1 -i 31 -a 1 + -t 67.585428236688443 -s 21 -d 24 -p cbr -e 1280 -c 1 -i 31 -a 1 - -t 67.585428236688443 -s 21 -d 24 -p cbr -e 1280 -c 1 -i 31 -a 1 h -t 67.585428236688443 -s 21 -d 24 -p cbr -e 1280 -c 1 -i 31 -a 1 r -t 67.605668236688444 -s 11 -d 10 -p cbr -e 1280 -c 1 -i 31 -a 1 + -t 67.605668236688444 -s 10 -d 12 -p cbr -e 1280 -c 1 -i 31 -a 1 - -t 67.605668236688444 -s 10 -d 12 -p cbr -e 1280 -c 1 -i 31 -a 1 h -t 67.605668236688444 -s 10 -d 12 -p cbr -e 1280 -c 1 -i 31 -a 1 r -t 67.605668236688444 -s 11 -d 13 -p cbr -e 1280 -c 1 -i 31 -a 1 + -t 67.605668236688444 -s 13 -d 15 -p cbr -e 1280 -c 1 -i 31 -a 1 - -t 67.605668236688444 -s 13 -d 15 -p cbr -e 1280 -c 1 -i 31 -a 1 h -t 67.605668236688444 -s 13 -d 15 -p cbr -e 1280 -c 1 -i 31 -a 1 + -t 67.605668236688444 -s 13 -d 16 -p cbr -e 1280 -c 1 -i 31 -a 1 - -t 67.605668236688444 -s 13 -d 16 -p cbr -e 1280 -c 1 -i 31 -a 1 h -t 67.605668236688444 -s 13 -d 16 -p cbr -e 1280 -c 1 -i 31 -a 1 r -t 67.605668236688444 -s 11 -d 14 -p cbr -e 1280 -c 1 -i 31 -a 1 r -t 67.605668236688444 -s 21 -d 20 -p cbr -e 1280 -c 1 -i 31 -a 1 + -t 67.605668236688444 -s 20 -d 22 -p cbr -e 1280 -c 1 -i 31 -a 1 - -t 67.605668236688444 -s 20 -d 22 -p cbr -e 1280 -c 1 -i 31 -a 1 h -t 67.605668236688444 -s 20 -d 22 -p cbr -e 1280 -c 1 -i 31 -a 1 r -t 67.605668236688444 -s 21 -d 23 -p cbr -e 1280 -c 1 -i 31 -a 1 + -t 67.605668236688444 -s 23 -d 25 -p cbr -e 1280 -c 1 -i 31 -a 1 - -t 67.605668236688444 -s 23 -d 25 -p cbr -e 1280 -c 1 -i 31 -a 1 h -t 67.605668236688444 -s 23 -d 25 -p cbr -e 1280 -c 1 -i 31 -a 1 + -t 67.605668236688444 -s 23 -d 26 -p cbr -e 1280 -c 1 -i 31 -a 1 - -t 67.605668236688444 -s 23 -d 26 -p cbr -e 1280 -c 1 -i 31 -a 1 h -t 67.605668236688444 -s 23 -d 26 -p cbr -e 1280 -c 1 -i 31 -a 1 r -t 67.605668236688444 -s 21 -d 24 -p cbr -e 1280 -c 1 -i 31 -a 1 r -t 67.625908236688446 -s 10 -d 12 -p cbr -e 1280 -c 1 -i 31 -a 1 r -t 67.625908236688446 -s 13 -d 15 -p cbr -e 1280 -c 1 -i 31 -a 1 r -t 67.625908236688446 -s 13 -d 16 -p cbr -e 1280 -c 1 -i 31 -a 1 + -t 67.625908236688446 -s 16 -d 17 -p cbr -e 1280 -c 1 -i 31 -a 1 - -t 67.625908236688446 -s 16 -d 17 -p cbr -e 1280 -c 1 -i 31 -a 1 h -t 67.625908236688446 -s 16 -d 17 -p cbr -e 1280 -c 1 -i 31 -a 1 + -t 67.625908236688446 -s 16 -d 18 -p cbr -e 1280 -c 1 -i 31 -a 1 - -t 67.625908236688446 -s 16 -d 18 -p cbr -e 1280 -c 1 -i 31 -a 1 h -t 67.625908236688446 -s 16 -d 18 -p cbr -e 1280 -c 1 -i 31 -a 1 r -t 67.625908236688446 -s 20 -d 22 -p cbr -e 1280 -c 1 -i 31 -a 1 r -t 67.625908236688446 -s 23 -d 25 -p cbr -e 1280 -c 1 -i 31 -a 1 r -t 67.625908236688446 -s 23 -d 26 -p cbr -e 1280 -c 1 -i 31 -a 1 + -t 67.625908236688446 -s 26 -d 27 -p cbr -e 1280 -c 1 -i 31 -a 1 - -t 67.625908236688446 -s 26 -d 27 -p cbr -e 1280 -c 1 -i 31 -a 1 h -t 67.625908236688446 -s 26 -d 27 -p cbr -e 1280 -c 1 -i 31 -a 1 + -t 67.625908236688446 -s 26 -d 28 -p cbr -e 1280 -c 1 -i 31 -a 1 - -t 67.625908236688446 -s 26 -d 28 -p cbr -e 1280 -c 1 -i 31 -a 1 h -t 67.625908236688446 -s 26 -d 28 -p cbr -e 1280 -c 1 -i 31 -a 1 r -t 67.646148236688447 -s 16 -d 17 -p cbr -e 1280 -c 1 -i 31 -a 1 r -t 67.646148236688447 -s 16 -d 18 -p cbr -e 1280 -c 1 -i 31 -a 1 r -t 67.646148236688447 -s 26 -d 27 -p cbr -e 1280 -c 1 -i 31 -a 1 r -t 67.646148236688447 -s 26 -d 28 -p cbr -e 1280 -c 1 -i 31 -a 1 + -t 68.940458952981913 -s 11 -d 10 -p cbr -e 1280 -c 1 -i 32 -a 1 + -t 68.940458952981913 -s 21 -d 20 -p cbr -e 1280 -c 1 -i 32 -a 1 - -t 68.940458952981913 -s 11 -d 10 -p cbr -e 1280 -c 1 -i 32 -a 1 - -t 68.940458952981913 -s 21 -d 20 -p cbr -e 1280 -c 1 -i 32 -a 1 h -t 68.940458952981913 -s 11 -d 10 -p cbr -e 1280 -c 1 -i 32 -a 1 + -t 68.940458952981913 -s 11 -d 13 -p cbr -e 1280 -c 1 -i 32 -a 1 - -t 68.940458952981913 -s 11 -d 13 -p cbr -e 1280 -c 1 -i 32 -a 1 h -t 68.940458952981913 -s 11 -d 13 -p cbr -e 1280 -c 1 -i 32 -a 1 + -t 68.940458952981913 -s 11 -d 14 -p cbr -e 1280 -c 1 -i 32 -a 1 - -t 68.940458952981913 -s 11 -d 14 -p cbr -e 1280 -c 1 -i 32 -a 1 h -t 68.940458952981913 -s 11 -d 14 -p cbr -e 1280 -c 1 -i 32 -a 1 h -t 68.940458952981913 -s 21 -d 20 -p cbr -e 1280 -c 1 -i 32 -a 1 + -t 68.940458952981913 -s 21 -d 23 -p cbr -e 1280 -c 1 -i 32 -a 1 - -t 68.940458952981913 -s 21 -d 23 -p cbr -e 1280 -c 1 -i 32 -a 1 h -t 68.940458952981913 -s 21 -d 23 -p cbr -e 1280 -c 1 -i 32 -a 1 + -t 68.940458952981913 -s 21 -d 24 -p cbr -e 1280 -c 1 -i 32 -a 1 - -t 68.940458952981913 -s 21 -d 24 -p cbr -e 1280 -c 1 -i 32 -a 1 h -t 68.940458952981913 -s 21 -d 24 -p cbr -e 1280 -c 1 -i 32 -a 1 r -t 68.960698952981915 -s 11 -d 10 -p cbr -e 1280 -c 1 -i 32 -a 1 + -t 68.960698952981915 -s 10 -d 12 -p cbr -e 1280 -c 1 -i 32 -a 1 - -t 68.960698952981915 -s 10 -d 12 -p cbr -e 1280 -c 1 -i 32 -a 1 h -t 68.960698952981915 -s 10 -d 12 -p cbr -e 1280 -c 1 -i 32 -a 1 r -t 68.960698952981915 -s 11 -d 13 -p cbr -e 1280 -c 1 -i 32 -a 1 + -t 68.960698952981915 -s 13 -d 15 -p cbr -e 1280 -c 1 -i 32 -a 1 - -t 68.960698952981915 -s 13 -d 15 -p cbr -e 1280 -c 1 -i 32 -a 1 h -t 68.960698952981915 -s 13 -d 15 -p cbr -e 1280 -c 1 -i 32 -a 1 + -t 68.960698952981915 -s 13 -d 16 -p cbr -e 1280 -c 1 -i 32 -a 1 - -t 68.960698952981915 -s 13 -d 16 -p cbr -e 1280 -c 1 -i 32 -a 1 h -t 68.960698952981915 -s 13 -d 16 -p cbr -e 1280 -c 1 -i 32 -a 1 r -t 68.960698952981915 -s 11 -d 14 -p cbr -e 1280 -c 1 -i 32 -a 1 r -t 68.960698952981915 -s 21 -d 20 -p cbr -e 1280 -c 1 -i 32 -a 1 + -t 68.960698952981915 -s 20 -d 22 -p cbr -e 1280 -c 1 -i 32 -a 1 - -t 68.960698952981915 -s 20 -d 22 -p cbr -e 1280 -c 1 -i 32 -a 1 h -t 68.960698952981915 -s 20 -d 22 -p cbr -e 1280 -c 1 -i 32 -a 1 r -t 68.960698952981915 -s 21 -d 23 -p cbr -e 1280 -c 1 -i 32 -a 1 + -t 68.960698952981915 -s 23 -d 25 -p cbr -e 1280 -c 1 -i 32 -a 1 - -t 68.960698952981915 -s 23 -d 25 -p cbr -e 1280 -c 1 -i 32 -a 1 h -t 68.960698952981915 -s 23 -d 25 -p cbr -e 1280 -c 1 -i 32 -a 1 + -t 68.960698952981915 -s 23 -d 26 -p cbr -e 1280 -c 1 -i 32 -a 1 - -t 68.960698952981915 -s 23 -d 26 -p cbr -e 1280 -c 1 -i 32 -a 1 h -t 68.960698952981915 -s 23 -d 26 -p cbr -e 1280 -c 1 -i 32 -a 1 r -t 68.960698952981915 -s 21 -d 24 -p cbr -e 1280 -c 1 -i 32 -a 1 r -t 68.980938952981916 -s 10 -d 12 -p cbr -e 1280 -c 1 -i 32 -a 1 r -t 68.980938952981916 -s 13 -d 15 -p cbr -e 1280 -c 1 -i 32 -a 1 r -t 68.980938952981916 -s 13 -d 16 -p cbr -e 1280 -c 1 -i 32 -a 1 + -t 68.980938952981916 -s 16 -d 17 -p cbr -e 1280 -c 1 -i 32 -a 1 - -t 68.980938952981916 -s 16 -d 17 -p cbr -e 1280 -c 1 -i 32 -a 1 h -t 68.980938952981916 -s 16 -d 17 -p cbr -e 1280 -c 1 -i 32 -a 1 + -t 68.980938952981916 -s 16 -d 18 -p cbr -e 1280 -c 1 -i 32 -a 1 - -t 68.980938952981916 -s 16 -d 18 -p cbr -e 1280 -c 1 -i 32 -a 1 h -t 68.980938952981916 -s 16 -d 18 -p cbr -e 1280 -c 1 -i 32 -a 1 r -t 68.980938952981916 -s 20 -d 22 -p cbr -e 1280 -c 1 -i 32 -a 1 r -t 68.980938952981916 -s 23 -d 25 -p cbr -e 1280 -c 1 -i 32 -a 1 r -t 68.980938952981916 -s 23 -d 26 -p cbr -e 1280 -c 1 -i 32 -a 1 + -t 68.980938952981916 -s 26 -d 27 -p cbr -e 1280 -c 1 -i 32 -a 1 - -t 68.980938952981916 -s 26 -d 27 -p cbr -e 1280 -c 1 -i 32 -a 1 h -t 68.980938952981916 -s 26 -d 27 -p cbr -e 1280 -c 1 -i 32 -a 1 + -t 68.980938952981916 -s 26 -d 28 -p cbr -e 1280 -c 1 -i 32 -a 1 - -t 68.980938952981916 -s 26 -d 28 -p cbr -e 1280 -c 1 -i 32 -a 1 h -t 68.980938952981916 -s 26 -d 28 -p cbr -e 1280 -c 1 -i 32 -a 1 r -t 69.001178952981917 -s 16 -d 17 -p cbr -e 1280 -c 1 -i 32 -a 1 r -t 69.001178952981917 -s 16 -d 18 -p cbr -e 1280 -c 1 -i 32 -a 1 r -t 69.001178952981917 -s 26 -d 27 -p cbr -e 1280 -c 1 -i 32 -a 1 r -t 69.001178952981917 -s 26 -d 28 -p cbr -e 1280 -c 1 -i 32 -a 1 + -t 72.48742461133277 -s 14 -d 11 -p cbr -e 1280 -c 4 -i 33 -a 4 + -t 72.48742461133277 -s 24 -d 21 -p cbr -e 1280 -c 4 -i 33 -a 4 - -t 72.48742461133277 -s 14 -d 11 -p cbr -e 1280 -c 4 -i 33 -a 4 - -t 72.48742461133277 -s 24 -d 21 -p cbr -e 1280 -c 4 -i 33 -a 4 h -t 72.48742461133277 -s 14 -d 11 -p cbr -e 1280 -c 4 -i 33 -a 4 h -t 72.48742461133277 -s 24 -d 21 -p cbr -e 1280 -c 4 -i 33 -a 4 r -t 72.507664611332771 -s 14 -d 11 -p cbr -e 1280 -c 4 -i 33 -a 4 + -t 72.507664611332771 -s 11 -d 10 -p cbr -e 1280 -c 4 -i 33 -a 4 - -t 72.507664611332771 -s 11 -d 10 -p cbr -e 1280 -c 4 -i 33 -a 4 h -t 72.507664611332771 -s 11 -d 10 -p cbr -e 1280 -c 4 -i 33 -a 4 + -t 72.507664611332771 -s 11 -d 13 -p cbr -e 1280 -c 4 -i 33 -a 4 - -t 72.507664611332771 -s 11 -d 13 -p cbr -e 1280 -c 4 -i 33 -a 4 h -t 72.507664611332771 -s 11 -d 13 -p cbr -e 1280 -c 4 -i 33 -a 4 r -t 72.507664611332771 -s 24 -d 21 -p cbr -e 1280 -c 4 -i 33 -a 4 + -t 72.507664611332771 -s 21 -d 20 -p cbr -e 1280 -c 4 -i 33 -a 4 - -t 72.507664611332771 -s 21 -d 20 -p cbr -e 1280 -c 4 -i 33 -a 4 h -t 72.507664611332771 -s 21 -d 20 -p cbr -e 1280 -c 4 -i 33 -a 4 + -t 72.507664611332771 -s 21 -d 23 -p cbr -e 1280 -c 4 -i 33 -a 4 - -t 72.507664611332771 -s 21 -d 23 -p cbr -e 1280 -c 4 -i 33 -a 4 h -t 72.507664611332771 -s 21 -d 23 -p cbr -e 1280 -c 4 -i 33 -a 4 r -t 72.527904611332772 -s 11 -d 10 -p cbr -e 1280 -c 4 -i 33 -a 4 + -t 72.527904611332772 -s 10 -d 12 -p cbr -e 1280 -c 4 -i 33 -a 4 - -t 72.527904611332772 -s 10 -d 12 -p cbr -e 1280 -c 4 -i 33 -a 4 h -t 72.527904611332772 -s 10 -d 12 -p cbr -e 1280 -c 4 -i 33 -a 4 r -t 72.527904611332772 -s 11 -d 13 -p cbr -e 1280 -c 4 -i 33 -a 4 + -t 72.527904611332772 -s 13 -d 15 -p cbr -e 1280 -c 4 -i 33 -a 4 - -t 72.527904611332772 -s 13 -d 15 -p cbr -e 1280 -c 4 -i 33 -a 4 h -t 72.527904611332772 -s 13 -d 15 -p cbr -e 1280 -c 4 -i 33 -a 4 + -t 72.527904611332772 -s 13 -d 16 -p cbr -e 1280 -c 4 -i 33 -a 4 - -t 72.527904611332772 -s 13 -d 16 -p cbr -e 1280 -c 4 -i 33 -a 4 h -t 72.527904611332772 -s 13 -d 16 -p cbr -e 1280 -c 4 -i 33 -a 4 r -t 72.527904611332772 -s 21 -d 20 -p cbr -e 1280 -c 4 -i 33 -a 4 + -t 72.527904611332772 -s 20 -d 22 -p cbr -e 1280 -c 4 -i 33 -a 4 - -t 72.527904611332772 -s 20 -d 22 -p cbr -e 1280 -c 4 -i 33 -a 4 h -t 72.527904611332772 -s 20 -d 22 -p cbr -e 1280 -c 4 -i 33 -a 4 r -t 72.527904611332772 -s 21 -d 23 -p cbr -e 1280 -c 4 -i 33 -a 4 + -t 72.527904611332772 -s 23 -d 25 -p cbr -e 1280 -c 4 -i 33 -a 4 - -t 72.527904611332772 -s 23 -d 25 -p cbr -e 1280 -c 4 -i 33 -a 4 h -t 72.527904611332772 -s 23 -d 25 -p cbr -e 1280 -c 4 -i 33 -a 4 + -t 72.527904611332772 -s 23 -d 26 -p cbr -e 1280 -c 4 -i 33 -a 4 - -t 72.527904611332772 -s 23 -d 26 -p cbr -e 1280 -c 4 -i 33 -a 4 h -t 72.527904611332772 -s 23 -d 26 -p cbr -e 1280 -c 4 -i 33 -a 4 r -t 72.548144611332773 -s 10 -d 12 -p cbr -e 1280 -c 4 -i 33 -a 4 r -t 72.548144611332773 -s 13 -d 15 -p cbr -e 1280 -c 4 -i 33 -a 4 r -t 72.548144611332773 -s 13 -d 16 -p cbr -e 1280 -c 4 -i 33 -a 4 + -t 72.548144611332773 -s 16 -d 17 -p cbr -e 1280 -c 4 -i 33 -a 4 - -t 72.548144611332773 -s 16 -d 17 -p cbr -e 1280 -c 4 -i 33 -a 4 h -t 72.548144611332773 -s 16 -d 17 -p cbr -e 1280 -c 4 -i 33 -a 4 + -t 72.548144611332773 -s 16 -d 18 -p cbr -e 1280 -c 4 -i 33 -a 4 - -t 72.548144611332773 -s 16 -d 18 -p cbr -e 1280 -c 4 -i 33 -a 4 h -t 72.548144611332773 -s 16 -d 18 -p cbr -e 1280 -c 4 -i 33 -a 4 r -t 72.548144611332773 -s 20 -d 22 -p cbr -e 1280 -c 4 -i 33 -a 4 r -t 72.548144611332773 -s 23 -d 25 -p cbr -e 1280 -c 4 -i 33 -a 4 r -t 72.548144611332773 -s 23 -d 26 -p cbr -e 1280 -c 4 -i 33 -a 4 + -t 72.548144611332773 -s 26 -d 27 -p cbr -e 1280 -c 4 -i 33 -a 4 - -t 72.548144611332773 -s 26 -d 27 -p cbr -e 1280 -c 4 -i 33 -a 4 h -t 72.548144611332773 -s 26 -d 27 -p cbr -e 1280 -c 4 -i 33 -a 4 + -t 72.548144611332773 -s 26 -d 28 -p cbr -e 1280 -c 4 -i 33 -a 4 - -t 72.548144611332773 -s 26 -d 28 -p cbr -e 1280 -c 4 -i 33 -a 4 h -t 72.548144611332773 -s 26 -d 28 -p cbr -e 1280 -c 4 -i 33 -a 4 r -t 72.568384611332775 -s 16 -d 17 -p cbr -e 1280 -c 4 -i 33 -a 4 r -t 72.568384611332775 -s 16 -d 18 -p cbr -e 1280 -c 4 -i 33 -a 4 r -t 72.568384611332775 -s 26 -d 27 -p cbr -e 1280 -c 4 -i 33 -a 4 r -t 72.568384611332775 -s 26 -d 28 -p cbr -e 1280 -c 4 -i 33 -a 4 + -t 77.578716654831993 -s 14 -d 11 -p SRM -e 168 -c 42 -i 34 -a 42 + -t 77.578716654831993 -s 24 -d 21 -p SRM -e 168 -c 42 -i 34 -a 42 - -t 77.578716654831993 -s 14 -d 11 -p SRM -e 168 -c 42 -i 34 -a 42 - -t 77.578716654831993 -s 24 -d 21 -p SRM -e 168 -c 42 -i 34 -a 42 h -t 77.578716654831993 -s 14 -d 11 -p SRM -e 168 -c 42 -i 34 -a 42 h -t 77.578716654831993 -s 24 -d 21 -p SRM -e 168 -c 42 -i 34 -a 42 r -t 77.590060654831987 -s 14 -d 11 -p SRM -e 168 -c 42 -i 34 -a 42 + -t 77.590060654831987 -s 11 -d 10 -p SRM -e 168 -c 42 -i 34 -a 42 - -t 77.590060654831987 -s 11 -d 10 -p SRM -e 168 -c 42 -i 34 -a 42 h -t 77.590060654831987 -s 11 -d 10 -p SRM -e 168 -c 42 -i 34 -a 42 + -t 77.590060654831987 -s 11 -d 13 -p SRM -e 168 -c 42 -i 34 -a 42 - -t 77.590060654831987 -s 11 -d 13 -p SRM -e 168 -c 42 -i 34 -a 42 h -t 77.590060654831987 -s 11 -d 13 -p SRM -e 168 -c 42 -i 34 -a 42 r -t 77.590060654831987 -s 24 -d 21 -p SRM -e 168 -c 42 -i 34 -a 42 + -t 77.590060654831987 -s 21 -d 20 -p SRM -e 168 -c 42 -i 34 -a 42 - -t 77.590060654831987 -s 21 -d 20 -p SRM -e 168 -c 42 -i 34 -a 42 h -t 77.590060654831987 -s 21 -d 20 -p SRM -e 168 -c 42 -i 34 -a 42 + -t 77.590060654831987 -s 21 -d 23 -p SRM -e 168 -c 42 -i 34 -a 42 - -t 77.590060654831987 -s 21 -d 23 -p SRM -e 168 -c 42 -i 34 -a 42 h -t 77.590060654831987 -s 21 -d 23 -p SRM -e 168 -c 42 -i 34 -a 42 r -t 77.601404654831981 -s 11 -d 10 -p SRM -e 168 -c 42 -i 34 -a 42 + -t 77.601404654831981 -s 10 -d 12 -p SRM -e 168 -c 42 -i 34 -a 42 - -t 77.601404654831981 -s 10 -d 12 -p SRM -e 168 -c 42 -i 34 -a 42 h -t 77.601404654831981 -s 10 -d 12 -p SRM -e 168 -c 42 -i 34 -a 42 r -t 77.601404654831981 -s 11 -d 13 -p SRM -e 168 -c 42 -i 34 -a 42 + -t 77.601404654831981 -s 13 -d 15 -p SRM -e 168 -c 42 -i 34 -a 42 - -t 77.601404654831981 -s 13 -d 15 -p SRM -e 168 -c 42 -i 34 -a 42 h -t 77.601404654831981 -s 13 -d 15 -p SRM -e 168 -c 42 -i 34 -a 42 + -t 77.601404654831981 -s 13 -d 16 -p SRM -e 168 -c 42 -i 34 -a 42 - -t 77.601404654831981 -s 13 -d 16 -p SRM -e 168 -c 42 -i 34 -a 42 h -t 77.601404654831981 -s 13 -d 16 -p SRM -e 168 -c 42 -i 34 -a 42 r -t 77.601404654831981 -s 21 -d 20 -p SRM -e 168 -c 42 -i 34 -a 42 + -t 77.601404654831981 -s 20 -d 22 -p SRM -e 168 -c 42 -i 34 -a 42 - -t 77.601404654831981 -s 20 -d 22 -p SRM -e 168 -c 42 -i 34 -a 42 h -t 77.601404654831981 -s 20 -d 22 -p SRM -e 168 -c 42 -i 34 -a 42 r -t 77.601404654831981 -s 21 -d 23 -p SRM -e 168 -c 42 -i 34 -a 42 + -t 77.601404654831981 -s 23 -d 25 -p SRM -e 168 -c 42 -i 34 -a 42 - -t 77.601404654831981 -s 23 -d 25 -p SRM -e 168 -c 42 -i 34 -a 42 h -t 77.601404654831981 -s 23 -d 25 -p SRM -e 168 -c 42 -i 34 -a 42 + -t 77.601404654831981 -s 23 -d 26 -p SRM -e 168 -c 42 -i 34 -a 42 - -t 77.601404654831981 -s 23 -d 26 -p SRM -e 168 -c 42 -i 34 -a 42 h -t 77.601404654831981 -s 23 -d 26 -p SRM -e 168 -c 42 -i 34 -a 42 r -t 77.612748654831975 -s 10 -d 12 -p SRM -e 168 -c 42 -i 34 -a 42 r -t 77.612748654831975 -s 13 -d 15 -p SRM -e 168 -c 42 -i 34 -a 42 r -t 77.612748654831975 -s 13 -d 16 -p SRM -e 168 -c 42 -i 34 -a 42 + -t 77.612748654831975 -s 16 -d 17 -p SRM -e 168 -c 42 -i 34 -a 42 - -t 77.612748654831975 -s 16 -d 17 -p SRM -e 168 -c 42 -i 34 -a 42 h -t 77.612748654831975 -s 16 -d 17 -p SRM -e 168 -c 42 -i 34 -a 42 + -t 77.612748654831975 -s 16 -d 18 -p SRM -e 168 -c 42 -i 34 -a 42 - -t 77.612748654831975 -s 16 -d 18 -p SRM -e 168 -c 42 -i 34 -a 42 h -t 77.612748654831975 -s 16 -d 18 -p SRM -e 168 -c 42 -i 34 -a 42 r -t 77.612748654831975 -s 20 -d 22 -p SRM -e 168 -c 42 -i 34 -a 42 r -t 77.612748654831975 -s 23 -d 25 -p SRM -e 168 -c 42 -i 34 -a 42 r -t 77.612748654831975 -s 23 -d 26 -p SRM -e 168 -c 42 -i 34 -a 42 + -t 77.612748654831975 -s 26 -d 27 -p SRM -e 168 -c 42 -i 34 -a 42 - -t 77.612748654831975 -s 26 -d 27 -p SRM -e 168 -c 42 -i 34 -a 42 h -t 77.612748654831975 -s 26 -d 27 -p SRM -e 168 -c 42 -i 34 -a 42 + -t 77.612748654831975 -s 26 -d 28 -p SRM -e 168 -c 42 -i 34 -a 42 - -t 77.612748654831975 -s 26 -d 28 -p SRM -e 168 -c 42 -i 34 -a 42 h -t 77.612748654831975 -s 26 -d 28 -p SRM -e 168 -c 42 -i 34 -a 42 r -t 77.624092654831969 -s 16 -d 17 -p SRM -e 168 -c 42 -i 34 -a 42 r -t 77.624092654831969 -s 16 -d 18 -p SRM -e 168 -c 42 -i 34 -a 42 r -t 77.624092654831969 -s 26 -d 27 -p SRM -e 168 -c 42 -i 34 -a 42 r -t 77.624092654831969 -s 26 -d 28 -p SRM -e 168 -c 42 -i 34 -a 42 + -t 79.000222764211003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 35 -a 42 + -t 79.000222764211003 -s 23 -d 21 -p SRM -e 168 -c 42 -i 35 -a 42 - -t 79.000222764211003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 35 -a 42 - -t 79.000222764211003 -s 23 -d 21 -p SRM -e 168 -c 42 -i 35 -a 42 h -t 79.000222764211003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 35 -a 42 + -t 79.000222764211003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 35 -a 42 - -t 79.000222764211003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 35 -a 42 h -t 79.000222764211003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 35 -a 42 + -t 79.000222764211003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 35 -a 42 - -t 79.000222764211003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 35 -a 42 h -t 79.000222764211003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 35 -a 42 h -t 79.000222764211003 -s 23 -d 21 -p SRM -e 168 -c 42 -i 35 -a 42 + -t 79.000222764211003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 35 -a 42 - -t 79.000222764211003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 35 -a 42 h -t 79.000222764211003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 35 -a 42 + -t 79.000222764211003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 35 -a 42 - -t 79.000222764211003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 35 -a 42 h -t 79.000222764211003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 35 -a 42 r -t 79.011566764210997 -s 13 -d 11 -p SRM -e 168 -c 42 -i 35 -a 42 + -t 79.011566764210997 -s 11 -d 10 -p SRM -e 168 -c 42 -i 35 -a 42 - -t 79.011566764210997 -s 11 -d 10 -p SRM -e 168 -c 42 -i 35 -a 42 h -t 79.011566764210997 -s 11 -d 10 -p SRM -e 168 -c 42 -i 35 -a 42 + -t 79.011566764210997 -s 11 -d 14 -p SRM -e 168 -c 42 -i 35 -a 42 - -t 79.011566764210997 -s 11 -d 14 -p SRM -e 168 -c 42 -i 35 -a 42 h -t 79.011566764210997 -s 11 -d 14 -p SRM -e 168 -c 42 -i 35 -a 42 r -t 79.011566764210997 -s 13 -d 15 -p SRM -e 168 -c 42 -i 35 -a 42 r -t 79.011566764210997 -s 13 -d 16 -p SRM -e 168 -c 42 -i 35 -a 42 + -t 79.011566764210997 -s 16 -d 17 -p SRM -e 168 -c 42 -i 35 -a 42 - -t 79.011566764210997 -s 16 -d 17 -p SRM -e 168 -c 42 -i 35 -a 42 h -t 79.011566764210997 -s 16 -d 17 -p SRM -e 168 -c 42 -i 35 -a 42 + -t 79.011566764210997 -s 16 -d 18 -p SRM -e 168 -c 42 -i 35 -a 42 - -t 79.011566764210997 -s 16 -d 18 -p SRM -e 168 -c 42 -i 35 -a 42 h -t 79.011566764210997 -s 16 -d 18 -p SRM -e 168 -c 42 -i 35 -a 42 r -t 79.011566764210997 -s 23 -d 21 -p SRM -e 168 -c 42 -i 35 -a 42 + -t 79.011566764210997 -s 21 -d 20 -p SRM -e 168 -c 42 -i 35 -a 42 - -t 79.011566764210997 -s 21 -d 20 -p SRM -e 168 -c 42 -i 35 -a 42 h -t 79.011566764210997 -s 21 -d 20 -p SRM -e 168 -c 42 -i 35 -a 42 + -t 79.011566764210997 -s 21 -d 24 -p SRM -e 168 -c 42 -i 35 -a 42 - -t 79.011566764210997 -s 21 -d 24 -p SRM -e 168 -c 42 -i 35 -a 42 h -t 79.011566764210997 -s 21 -d 24 -p SRM -e 168 -c 42 -i 35 -a 42 r -t 79.011566764210997 -s 23 -d 25 -p SRM -e 168 -c 42 -i 35 -a 42 r -t 79.011566764210997 -s 23 -d 26 -p SRM -e 168 -c 42 -i 35 -a 42 + -t 79.011566764210997 -s 26 -d 27 -p SRM -e 168 -c 42 -i 35 -a 42 - -t 79.011566764210997 -s 26 -d 27 -p SRM -e 168 -c 42 -i 35 -a 42 h -t 79.011566764210997 -s 26 -d 27 -p SRM -e 168 -c 42 -i 35 -a 42 + -t 79.011566764210997 -s 26 -d 28 -p SRM -e 168 -c 42 -i 35 -a 42 - -t 79.011566764210997 -s 26 -d 28 -p SRM -e 168 -c 42 -i 35 -a 42 h -t 79.011566764210997 -s 26 -d 28 -p SRM -e 168 -c 42 -i 35 -a 42 r -t 79.022910764210991 -s 11 -d 10 -p SRM -e 168 -c 42 -i 35 -a 42 + -t 79.022910764210991 -s 10 -d 12 -p SRM -e 168 -c 42 -i 35 -a 42 - -t 79.022910764210991 -s 10 -d 12 -p SRM -e 168 -c 42 -i 35 -a 42 h -t 79.022910764210991 -s 10 -d 12 -p SRM -e 168 -c 42 -i 35 -a 42 r -t 79.022910764210991 -s 11 -d 14 -p SRM -e 168 -c 42 -i 35 -a 42 r -t 79.022910764210991 -s 16 -d 17 -p SRM -e 168 -c 42 -i 35 -a 42 r -t 79.022910764210991 -s 16 -d 18 -p SRM -e 168 -c 42 -i 35 -a 42 r -t 79.022910764210991 -s 21 -d 20 -p SRM -e 168 -c 42 -i 35 -a 42 + -t 79.022910764210991 -s 20 -d 22 -p SRM -e 168 -c 42 -i 35 -a 42 - -t 79.022910764210991 -s 20 -d 22 -p SRM -e 168 -c 42 -i 35 -a 42 h -t 79.022910764210991 -s 20 -d 22 -p SRM -e 168 -c 42 -i 35 -a 42 r -t 79.022910764210991 -s 21 -d 24 -p SRM -e 168 -c 42 -i 35 -a 42 r -t 79.022910764210991 -s 26 -d 27 -p SRM -e 168 -c 42 -i 35 -a 42 r -t 79.022910764210991 -s 26 -d 28 -p SRM -e 168 -c 42 -i 35 -a 42 r -t 79.034254764210985 -s 10 -d 12 -p SRM -e 168 -c 42 -i 35 -a 42 r -t 79.034254764210985 -s 20 -d 22 -p SRM -e 168 -c 42 -i 35 -a 42 + -t 79.137434051667995 -s 16 -d 13 -p SRM -e 168 -c 42 -i 36 -a 42 + -t 79.137434051667995 -s 26 -d 23 -p SRM -e 168 -c 42 -i 36 -a 42 - -t 79.137434051667995 -s 16 -d 13 -p SRM -e 168 -c 42 -i 36 -a 42 - -t 79.137434051667995 -s 26 -d 23 -p SRM -e 168 -c 42 -i 36 -a 42 h -t 79.137434051667995 -s 16 -d 13 -p SRM -e 168 -c 42 -i 36 -a 42 + -t 79.137434051667995 -s 16 -d 17 -p SRM -e 168 -c 42 -i 36 -a 42 - -t 79.137434051667995 -s 16 -d 17 -p SRM -e 168 -c 42 -i 36 -a 42 h -t 79.137434051667995 -s 16 -d 17 -p SRM -e 168 -c 42 -i 36 -a 42 + -t 79.137434051667995 -s 16 -d 18 -p SRM -e 168 -c 42 -i 36 -a 42 - -t 79.137434051667995 -s 16 -d 18 -p SRM -e 168 -c 42 -i 36 -a 42 h -t 79.137434051667995 -s 16 -d 18 -p SRM -e 168 -c 42 -i 36 -a 42 h -t 79.137434051667995 -s 26 -d 23 -p SRM -e 168 -c 42 -i 36 -a 42 + -t 79.137434051667995 -s 26 -d 27 -p SRM -e 168 -c 42 -i 36 -a 42 - -t 79.137434051667995 -s 26 -d 27 -p SRM -e 168 -c 42 -i 36 -a 42 h -t 79.137434051667995 -s 26 -d 27 -p SRM -e 168 -c 42 -i 36 -a 42 + -t 79.137434051667995 -s 26 -d 28 -p SRM -e 168 -c 42 -i 36 -a 42 - -t 79.137434051667995 -s 26 -d 28 -p SRM -e 168 -c 42 -i 36 -a 42 h -t 79.137434051667995 -s 26 -d 28 -p SRM -e 168 -c 42 -i 36 -a 42 r -t 79.148778051667989 -s 16 -d 13 -p SRM -e 168 -c 42 -i 36 -a 42 + -t 79.148778051667989 -s 13 -d 11 -p SRM -e 168 -c 42 -i 36 -a 42 - -t 79.148778051667989 -s 13 -d 11 -p SRM -e 168 -c 42 -i 36 -a 42 h -t 79.148778051667989 -s 13 -d 11 -p SRM -e 168 -c 42 -i 36 -a 42 + -t 79.148778051667989 -s 13 -d 15 -p SRM -e 168 -c 42 -i 36 -a 42 - -t 79.148778051667989 -s 13 -d 15 -p SRM -e 168 -c 42 -i 36 -a 42 h -t 79.148778051667989 -s 13 -d 15 -p SRM -e 168 -c 42 -i 36 -a 42 r -t 79.148778051667989 -s 16 -d 17 -p SRM -e 168 -c 42 -i 36 -a 42 r -t 79.148778051667989 -s 16 -d 18 -p SRM -e 168 -c 42 -i 36 -a 42 r -t 79.148778051667989 -s 26 -d 23 -p SRM -e 168 -c 42 -i 36 -a 42 + -t 79.148778051667989 -s 23 -d 21 -p SRM -e 168 -c 42 -i 36 -a 42 - -t 79.148778051667989 -s 23 -d 21 -p SRM -e 168 -c 42 -i 36 -a 42 h -t 79.148778051667989 -s 23 -d 21 -p SRM -e 168 -c 42 -i 36 -a 42 + -t 79.148778051667989 -s 23 -d 25 -p SRM -e 168 -c 42 -i 36 -a 42 - -t 79.148778051667989 -s 23 -d 25 -p SRM -e 168 -c 42 -i 36 -a 42 h -t 79.148778051667989 -s 23 -d 25 -p SRM -e 168 -c 42 -i 36 -a 42 r -t 79.148778051667989 -s 26 -d 27 -p SRM -e 168 -c 42 -i 36 -a 42 r -t 79.148778051667989 -s 26 -d 28 -p SRM -e 168 -c 42 -i 36 -a 42 r -t 79.160122051667983 -s 13 -d 11 -p SRM -e 168 -c 42 -i 36 -a 42 + -t 79.160122051667983 -s 11 -d 10 -p SRM -e 168 -c 42 -i 36 -a 42 - -t 79.160122051667983 -s 11 -d 10 -p SRM -e 168 -c 42 -i 36 -a 42 h -t 79.160122051667983 -s 11 -d 10 -p SRM -e 168 -c 42 -i 36 -a 42 + -t 79.160122051667983 -s 11 -d 14 -p SRM -e 168 -c 42 -i 36 -a 42 - -t 79.160122051667983 -s 11 -d 14 -p SRM -e 168 -c 42 -i 36 -a 42 h -t 79.160122051667983 -s 11 -d 14 -p SRM -e 168 -c 42 -i 36 -a 42 r -t 79.160122051667983 -s 13 -d 15 -p SRM -e 168 -c 42 -i 36 -a 42 r -t 79.160122051667983 -s 23 -d 21 -p SRM -e 168 -c 42 -i 36 -a 42 + -t 79.160122051667983 -s 21 -d 20 -p SRM -e 168 -c 42 -i 36 -a 42 - -t 79.160122051667983 -s 21 -d 20 -p SRM -e 168 -c 42 -i 36 -a 42 h -t 79.160122051667983 -s 21 -d 20 -p SRM -e 168 -c 42 -i 36 -a 42 + -t 79.160122051667983 -s 21 -d 24 -p SRM -e 168 -c 42 -i 36 -a 42 - -t 79.160122051667983 -s 21 -d 24 -p SRM -e 168 -c 42 -i 36 -a 42 h -t 79.160122051667983 -s 21 -d 24 -p SRM -e 168 -c 42 -i 36 -a 42 r -t 79.160122051667983 -s 23 -d 25 -p SRM -e 168 -c 42 -i 36 -a 42 r -t 79.171466051667977 -s 11 -d 10 -p SRM -e 168 -c 42 -i 36 -a 42 + -t 79.171466051667977 -s 10 -d 12 -p SRM -e 168 -c 42 -i 36 -a 42 - -t 79.171466051667977 -s 10 -d 12 -p SRM -e 168 -c 42 -i 36 -a 42 h -t 79.171466051667977 -s 10 -d 12 -p SRM -e 168 -c 42 -i 36 -a 42 r -t 79.171466051667977 -s 11 -d 14 -p SRM -e 168 -c 42 -i 36 -a 42 r -t 79.171466051667977 -s 21 -d 20 -p SRM -e 168 -c 42 -i 36 -a 42 + -t 79.171466051667977 -s 20 -d 22 -p SRM -e 168 -c 42 -i 36 -a 42 - -t 79.171466051667977 -s 20 -d 22 -p SRM -e 168 -c 42 -i 36 -a 42 h -t 79.171466051667977 -s 20 -d 22 -p SRM -e 168 -c 42 -i 36 -a 42 r -t 79.171466051667977 -s 21 -d 24 -p SRM -e 168 -c 42 -i 36 -a 42 r -t 79.182810051667971 -s 10 -d 12 -p SRM -e 168 -c 42 -i 36 -a 42 r -t 79.182810051667971 -s 20 -d 22 -p SRM -e 168 -c 42 -i 36 -a 42 + -t 79.535930232628004 -s 17 -d 16 -p SRM -e 168 -c 42 -i 37 -a 42 + -t 79.535930232628004 -s 27 -d 26 -p SRM -e 168 -c 42 -i 37 -a 42 - -t 79.535930232628004 -s 17 -d 16 -p SRM -e 168 -c 42 -i 37 -a 42 - -t 79.535930232628004 -s 27 -d 26 -p SRM -e 168 -c 42 -i 37 -a 42 h -t 79.535930232628004 -s 17 -d 16 -p SRM -e 168 -c 42 -i 37 -a 42 h -t 79.535930232628004 -s 27 -d 26 -p SRM -e 168 -c 42 -i 37 -a 42 + -t 79.543482997940998 -s 12 -d 10 -p SRM -e 168 -c 42 -i 38 -a 42 + -t 79.543482997940998 -s 22 -d 20 -p SRM -e 168 -c 42 -i 38 -a 42 - -t 79.543482997940998 -s 12 -d 10 -p SRM -e 168 -c 42 -i 38 -a 42 - -t 79.543482997940998 -s 22 -d 20 -p SRM -e 168 -c 42 -i 38 -a 42 h -t 79.543482997940998 -s 12 -d 10 -p SRM -e 168 -c 42 -i 38 -a 42 h -t 79.543482997940998 -s 22 -d 20 -p SRM -e 168 -c 42 -i 38 -a 42 r -t 79.547274232627998 -s 17 -d 16 -p SRM -e 168 -c 42 -i 37 -a 42 + -t 79.547274232627998 -s 16 -d 13 -p SRM -e 168 -c 42 -i 37 -a 42 - -t 79.547274232627998 -s 16 -d 13 -p SRM -e 168 -c 42 -i 37 -a 42 h -t 79.547274232627998 -s 16 -d 13 -p SRM -e 168 -c 42 -i 37 -a 42 + -t 79.547274232627998 -s 16 -d 18 -p SRM -e 168 -c 42 -i 37 -a 42 - -t 79.547274232627998 -s 16 -d 18 -p SRM -e 168 -c 42 -i 37 -a 42 h -t 79.547274232627998 -s 16 -d 18 -p SRM -e 168 -c 42 -i 37 -a 42 r -t 79.547274232627998 -s 27 -d 26 -p SRM -e 168 -c 42 -i 37 -a 42 + -t 79.547274232627998 -s 26 -d 23 -p SRM -e 168 -c 42 -i 37 -a 42 - -t 79.547274232627998 -s 26 -d 23 -p SRM -e 168 -c 42 -i 37 -a 42 h -t 79.547274232627998 -s 26 -d 23 -p SRM -e 168 -c 42 -i 37 -a 42 + -t 79.547274232627998 -s 26 -d 28 -p SRM -e 168 -c 42 -i 37 -a 42 - -t 79.547274232627998 -s 26 -d 28 -p SRM -e 168 -c 42 -i 37 -a 42 h -t 79.547274232627998 -s 26 -d 28 -p SRM -e 168 -c 42 -i 37 -a 42 r -t 79.554826997940992 -s 12 -d 10 -p SRM -e 168 -c 42 -i 38 -a 42 + -t 79.554826997940992 -s 10 -d 11 -p SRM -e 168 -c 42 -i 38 -a 42 - -t 79.554826997940992 -s 10 -d 11 -p SRM -e 168 -c 42 -i 38 -a 42 h -t 79.554826997940992 -s 10 -d 11 -p SRM -e 168 -c 42 -i 38 -a 42 r -t 79.554826997940992 -s 22 -d 20 -p SRM -e 168 -c 42 -i 38 -a 42 + -t 79.554826997940992 -s 20 -d 21 -p SRM -e 168 -c 42 -i 38 -a 42 - -t 79.554826997940992 -s 20 -d 21 -p SRM -e 168 -c 42 -i 38 -a 42 h -t 79.554826997940992 -s 20 -d 21 -p SRM -e 168 -c 42 -i 38 -a 42 r -t 79.558618232627992 -s 16 -d 13 -p SRM -e 168 -c 42 -i 37 -a 42 + -t 79.558618232627992 -s 13 -d 11 -p SRM -e 168 -c 42 -i 37 -a 42 - -t 79.558618232627992 -s 13 -d 11 -p SRM -e 168 -c 42 -i 37 -a 42 h -t 79.558618232627992 -s 13 -d 11 -p SRM -e 168 -c 42 -i 37 -a 42 + -t 79.558618232627992 -s 13 -d 15 -p SRM -e 168 -c 42 -i 37 -a 42 - -t 79.558618232627992 -s 13 -d 15 -p SRM -e 168 -c 42 -i 37 -a 42 h -t 79.558618232627992 -s 13 -d 15 -p SRM -e 168 -c 42 -i 37 -a 42 r -t 79.558618232627992 -s 16 -d 18 -p SRM -e 168 -c 42 -i 37 -a 42 r -t 79.558618232627992 -s 26 -d 23 -p SRM -e 168 -c 42 -i 37 -a 42 + -t 79.558618232627992 -s 23 -d 21 -p SRM -e 168 -c 42 -i 37 -a 42 - -t 79.558618232627992 -s 23 -d 21 -p SRM -e 168 -c 42 -i 37 -a 42 h -t 79.558618232627992 -s 23 -d 21 -p SRM -e 168 -c 42 -i 37 -a 42 + -t 79.558618232627992 -s 23 -d 25 -p SRM -e 168 -c 42 -i 37 -a 42 - -t 79.558618232627992 -s 23 -d 25 -p SRM -e 168 -c 42 -i 37 -a 42 h -t 79.558618232627992 -s 23 -d 25 -p SRM -e 168 -c 42 -i 37 -a 42 r -t 79.558618232627992 -s 26 -d 28 -p SRM -e 168 -c 42 -i 37 -a 42 r -t 79.566170997940986 -s 10 -d 11 -p SRM -e 168 -c 42 -i 38 -a 42 + -t 79.566170997940986 -s 11 -d 13 -p SRM -e 168 -c 42 -i 38 -a 42 - -t 79.566170997940986 -s 11 -d 13 -p SRM -e 168 -c 42 -i 38 -a 42 h -t 79.566170997940986 -s 11 -d 13 -p SRM -e 168 -c 42 -i 38 -a 42 + -t 79.566170997940986 -s 11 -d 14 -p SRM -e 168 -c 42 -i 38 -a 42 - -t 79.566170997940986 -s 11 -d 14 -p SRM -e 168 -c 42 -i 38 -a 42 h -t 79.566170997940986 -s 11 -d 14 -p SRM -e 168 -c 42 -i 38 -a 42 r -t 79.566170997940986 -s 20 -d 21 -p SRM -e 168 -c 42 -i 38 -a 42 + -t 79.566170997940986 -s 21 -d 23 -p SRM -e 168 -c 42 -i 38 -a 42 - -t 79.566170997940986 -s 21 -d 23 -p SRM -e 168 -c 42 -i 38 -a 42 h -t 79.566170997940986 -s 21 -d 23 -p SRM -e 168 -c 42 -i 38 -a 42 + -t 79.566170997940986 -s 21 -d 24 -p SRM -e 168 -c 42 -i 38 -a 42 - -t 79.566170997940986 -s 21 -d 24 -p SRM -e 168 -c 42 -i 38 -a 42 h -t 79.566170997940986 -s 21 -d 24 -p SRM -e 168 -c 42 -i 38 -a 42 r -t 79.569962232627987 -s 13 -d 11 -p SRM -e 168 -c 42 -i 37 -a 42 + -t 79.569962232627987 -s 11 -d 10 -p SRM -e 168 -c 42 -i 37 -a 42 - -t 79.569962232627987 -s 11 -d 10 -p SRM -e 168 -c 42 -i 37 -a 42 h -t 79.569962232627987 -s 11 -d 10 -p SRM -e 168 -c 42 -i 37 -a 42 + -t 79.569962232627987 -s 11 -d 14 -p SRM -e 168 -c 42 -i 37 -a 42 - -t 79.569962232627987 -s 11 -d 14 -p SRM -e 168 -c 42 -i 37 -a 42 h -t 79.569962232627987 -s 11 -d 14 -p SRM -e 168 -c 42 -i 37 -a 42 r -t 79.569962232627987 -s 13 -d 15 -p SRM -e 168 -c 42 -i 37 -a 42 r -t 79.569962232627987 -s 23 -d 21 -p SRM -e 168 -c 42 -i 37 -a 42 + -t 79.569962232627987 -s 21 -d 20 -p SRM -e 168 -c 42 -i 37 -a 42 - -t 79.569962232627987 -s 21 -d 20 -p SRM -e 168 -c 42 -i 37 -a 42 h -t 79.569962232627987 -s 21 -d 20 -p SRM -e 168 -c 42 -i 37 -a 42 + -t 79.569962232627987 -s 21 -d 24 -p SRM -e 168 -c 42 -i 37 -a 42 - -t 79.569962232627987 -s 21 -d 24 -p SRM -e 168 -c 42 -i 37 -a 42 h -t 79.569962232627987 -s 21 -d 24 -p SRM -e 168 -c 42 -i 37 -a 42 r -t 79.569962232627987 -s 23 -d 25 -p SRM -e 168 -c 42 -i 37 -a 42 r -t 79.57751499794098 -s 11 -d 13 -p SRM -e 168 -c 42 -i 38 -a 42 + -t 79.57751499794098 -s 13 -d 15 -p SRM -e 168 -c 42 -i 38 -a 42 - -t 79.57751499794098 -s 13 -d 15 -p SRM -e 168 -c 42 -i 38 -a 42 h -t 79.57751499794098 -s 13 -d 15 -p SRM -e 168 -c 42 -i 38 -a 42 + -t 79.57751499794098 -s 13 -d 16 -p SRM -e 168 -c 42 -i 38 -a 42 - -t 79.57751499794098 -s 13 -d 16 -p SRM -e 168 -c 42 -i 38 -a 42 h -t 79.57751499794098 -s 13 -d 16 -p SRM -e 168 -c 42 -i 38 -a 42 r -t 79.57751499794098 -s 11 -d 14 -p SRM -e 168 -c 42 -i 38 -a 42 r -t 79.57751499794098 -s 21 -d 23 -p SRM -e 168 -c 42 -i 38 -a 42 + -t 79.57751499794098 -s 23 -d 25 -p SRM -e 168 -c 42 -i 38 -a 42 - -t 79.57751499794098 -s 23 -d 25 -p SRM -e 168 -c 42 -i 38 -a 42 h -t 79.57751499794098 -s 23 -d 25 -p SRM -e 168 -c 42 -i 38 -a 42 + -t 79.57751499794098 -s 23 -d 26 -p SRM -e 168 -c 42 -i 38 -a 42 - -t 79.57751499794098 -s 23 -d 26 -p SRM -e 168 -c 42 -i 38 -a 42 h -t 79.57751499794098 -s 23 -d 26 -p SRM -e 168 -c 42 -i 38 -a 42 r -t 79.57751499794098 -s 21 -d 24 -p SRM -e 168 -c 42 -i 38 -a 42 r -t 79.581306232627981 -s 11 -d 10 -p SRM -e 168 -c 42 -i 37 -a 42 + -t 79.581306232627981 -s 10 -d 12 -p SRM -e 168 -c 42 -i 37 -a 42 - -t 79.581306232627981 -s 10 -d 12 -p SRM -e 168 -c 42 -i 37 -a 42 h -t 79.581306232627981 -s 10 -d 12 -p SRM -e 168 -c 42 -i 37 -a 42 r -t 79.581306232627981 -s 11 -d 14 -p SRM -e 168 -c 42 -i 37 -a 42 r -t 79.581306232627981 -s 21 -d 20 -p SRM -e 168 -c 42 -i 37 -a 42 + -t 79.581306232627981 -s 20 -d 22 -p SRM -e 168 -c 42 -i 37 -a 42 - -t 79.581306232627981 -s 20 -d 22 -p SRM -e 168 -c 42 -i 37 -a 42 h -t 79.581306232627981 -s 20 -d 22 -p SRM -e 168 -c 42 -i 37 -a 42 r -t 79.581306232627981 -s 21 -d 24 -p SRM -e 168 -c 42 -i 37 -a 42 r -t 79.588858997940974 -s 13 -d 15 -p SRM -e 168 -c 42 -i 38 -a 42 r -t 79.588858997940974 -s 13 -d 16 -p SRM -e 168 -c 42 -i 38 -a 42 + -t 79.588858997940974 -s 16 -d 17 -p SRM -e 168 -c 42 -i 38 -a 42 - -t 79.588858997940974 -s 16 -d 17 -p SRM -e 168 -c 42 -i 38 -a 42 h -t 79.588858997940974 -s 16 -d 17 -p SRM -e 168 -c 42 -i 38 -a 42 + -t 79.588858997940974 -s 16 -d 18 -p SRM -e 168 -c 42 -i 38 -a 42 - -t 79.588858997940974 -s 16 -d 18 -p SRM -e 168 -c 42 -i 38 -a 42 h -t 79.588858997940974 -s 16 -d 18 -p SRM -e 168 -c 42 -i 38 -a 42 r -t 79.588858997940974 -s 23 -d 25 -p SRM -e 168 -c 42 -i 38 -a 42 r -t 79.588858997940974 -s 23 -d 26 -p SRM -e 168 -c 42 -i 38 -a 42 + -t 79.588858997940974 -s 26 -d 27 -p SRM -e 168 -c 42 -i 38 -a 42 - -t 79.588858997940974 -s 26 -d 27 -p SRM -e 168 -c 42 -i 38 -a 42 h -t 79.588858997940974 -s 26 -d 27 -p SRM -e 168 -c 42 -i 38 -a 42 + -t 79.588858997940974 -s 26 -d 28 -p SRM -e 168 -c 42 -i 38 -a 42 - -t 79.588858997940974 -s 26 -d 28 -p SRM -e 168 -c 42 -i 38 -a 42 h -t 79.588858997940974 -s 26 -d 28 -p SRM -e 168 -c 42 -i 38 -a 42 r -t 79.592650232627975 -s 10 -d 12 -p SRM -e 168 -c 42 -i 37 -a 42 r -t 79.592650232627975 -s 20 -d 22 -p SRM -e 168 -c 42 -i 37 -a 42 r -t 79.600202997940968 -s 16 -d 17 -p SRM -e 168 -c 42 -i 38 -a 42 r -t 79.600202997940968 -s 16 -d 18 -p SRM -e 168 -c 42 -i 38 -a 42 r -t 79.600202997940968 -s 26 -d 27 -p SRM -e 168 -c 42 -i 38 -a 42 r -t 79.600202997940968 -s 26 -d 28 -p SRM -e 168 -c 42 -i 38 -a 42 + -t 79.918255030839006 -s 10 -d 11 -p SRM -e 168 -c 42 -i 39 -a 42 + -t 79.918255030839006 -s 20 -d 21 -p SRM -e 168 -c 42 -i 39 -a 42 - -t 79.918255030839006 -s 10 -d 11 -p SRM -e 168 -c 42 -i 39 -a 42 - -t 79.918255030839006 -s 20 -d 21 -p SRM -e 168 -c 42 -i 39 -a 42 h -t 79.918255030839006 -s 10 -d 11 -p SRM -e 168 -c 42 -i 39 -a 42 + -t 79.918255030839006 -s 10 -d 12 -p SRM -e 168 -c 42 -i 39 -a 42 - -t 79.918255030839006 -s 10 -d 12 -p SRM -e 168 -c 42 -i 39 -a 42 h -t 79.918255030839006 -s 10 -d 12 -p SRM -e 168 -c 42 -i 39 -a 42 h -t 79.918255030839006 -s 20 -d 21 -p SRM -e 168 -c 42 -i 39 -a 42 + -t 79.918255030839006 -s 20 -d 22 -p SRM -e 168 -c 42 -i 39 -a 42 - -t 79.918255030839006 -s 20 -d 22 -p SRM -e 168 -c 42 -i 39 -a 42 h -t 79.918255030839006 -s 20 -d 22 -p SRM -e 168 -c 42 -i 39 -a 42 r -t 79.929599030839 -s 10 -d 11 -p SRM -e 168 -c 42 -i 39 -a 42 + -t 79.929599030839 -s 11 -d 13 -p SRM -e 168 -c 42 -i 39 -a 42 - -t 79.929599030839 -s 11 -d 13 -p SRM -e 168 -c 42 -i 39 -a 42 h -t 79.929599030839 -s 11 -d 13 -p SRM -e 168 -c 42 -i 39 -a 42 + -t 79.929599030839 -s 11 -d 14 -p SRM -e 168 -c 42 -i 39 -a 42 - -t 79.929599030839 -s 11 -d 14 -p SRM -e 168 -c 42 -i 39 -a 42 h -t 79.929599030839 -s 11 -d 14 -p SRM -e 168 -c 42 -i 39 -a 42 r -t 79.929599030839 -s 10 -d 12 -p SRM -e 168 -c 42 -i 39 -a 42 r -t 79.929599030839 -s 20 -d 21 -p SRM -e 168 -c 42 -i 39 -a 42 + -t 79.929599030839 -s 21 -d 23 -p SRM -e 168 -c 42 -i 39 -a 42 - -t 79.929599030839 -s 21 -d 23 -p SRM -e 168 -c 42 -i 39 -a 42 h -t 79.929599030839 -s 21 -d 23 -p SRM -e 168 -c 42 -i 39 -a 42 + -t 79.929599030839 -s 21 -d 24 -p SRM -e 168 -c 42 -i 39 -a 42 - -t 79.929599030839 -s 21 -d 24 -p SRM -e 168 -c 42 -i 39 -a 42 h -t 79.929599030839 -s 21 -d 24 -p SRM -e 168 -c 42 -i 39 -a 42 r -t 79.929599030839 -s 20 -d 22 -p SRM -e 168 -c 42 -i 39 -a 42 r -t 79.940943030838994 -s 11 -d 13 -p SRM -e 168 -c 42 -i 39 -a 42 + -t 79.940943030838994 -s 13 -d 15 -p SRM -e 168 -c 42 -i 39 -a 42 - -t 79.940943030838994 -s 13 -d 15 -p SRM -e 168 -c 42 -i 39 -a 42 h -t 79.940943030838994 -s 13 -d 15 -p SRM -e 168 -c 42 -i 39 -a 42 + -t 79.940943030838994 -s 13 -d 16 -p SRM -e 168 -c 42 -i 39 -a 42 - -t 79.940943030838994 -s 13 -d 16 -p SRM -e 168 -c 42 -i 39 -a 42 h -t 79.940943030838994 -s 13 -d 16 -p SRM -e 168 -c 42 -i 39 -a 42 r -t 79.940943030838994 -s 11 -d 14 -p SRM -e 168 -c 42 -i 39 -a 42 r -t 79.940943030838994 -s 21 -d 23 -p SRM -e 168 -c 42 -i 39 -a 42 + -t 79.940943030838994 -s 23 -d 25 -p SRM -e 168 -c 42 -i 39 -a 42 - -t 79.940943030838994 -s 23 -d 25 -p SRM -e 168 -c 42 -i 39 -a 42 h -t 79.940943030838994 -s 23 -d 25 -p SRM -e 168 -c 42 -i 39 -a 42 + -t 79.940943030838994 -s 23 -d 26 -p SRM -e 168 -c 42 -i 39 -a 42 - -t 79.940943030838994 -s 23 -d 26 -p SRM -e 168 -c 42 -i 39 -a 42 h -t 79.940943030838994 -s 23 -d 26 -p SRM -e 168 -c 42 -i 39 -a 42 r -t 79.940943030838994 -s 21 -d 24 -p SRM -e 168 -c 42 -i 39 -a 42 r -t 79.952287030838988 -s 13 -d 15 -p SRM -e 168 -c 42 -i 39 -a 42 r -t 79.952287030838988 -s 13 -d 16 -p SRM -e 168 -c 42 -i 39 -a 42 + -t 79.952287030838988 -s 16 -d 17 -p SRM -e 168 -c 42 -i 39 -a 42 - -t 79.952287030838988 -s 16 -d 17 -p SRM -e 168 -c 42 -i 39 -a 42 h -t 79.952287030838988 -s 16 -d 17 -p SRM -e 168 -c 42 -i 39 -a 42 + -t 79.952287030838988 -s 16 -d 18 -p SRM -e 168 -c 42 -i 39 -a 42 - -t 79.952287030838988 -s 16 -d 18 -p SRM -e 168 -c 42 -i 39 -a 42 h -t 79.952287030838988 -s 16 -d 18 -p SRM -e 168 -c 42 -i 39 -a 42 r -t 79.952287030838988 -s 23 -d 25 -p SRM -e 168 -c 42 -i 39 -a 42 r -t 79.952287030838988 -s 23 -d 26 -p SRM -e 168 -c 42 -i 39 -a 42 + -t 79.952287030838988 -s 26 -d 27 -p SRM -e 168 -c 42 -i 39 -a 42 - -t 79.952287030838988 -s 26 -d 27 -p SRM -e 168 -c 42 -i 39 -a 42 h -t 79.952287030838988 -s 26 -d 27 -p SRM -e 168 -c 42 -i 39 -a 42 + -t 79.952287030838988 -s 26 -d 28 -p SRM -e 168 -c 42 -i 39 -a 42 - -t 79.952287030838988 -s 26 -d 28 -p SRM -e 168 -c 42 -i 39 -a 42 h -t 79.952287030838988 -s 26 -d 28 -p SRM -e 168 -c 42 -i 39 -a 42 r -t 79.963631030838982 -s 16 -d 17 -p SRM -e 168 -c 42 -i 39 -a 42 r -t 79.963631030838982 -s 16 -d 18 -p SRM -e 168 -c 42 -i 39 -a 42 r -t 79.963631030838982 -s 26 -d 27 -p SRM -e 168 -c 42 -i 39 -a 42 r -t 79.963631030838982 -s 26 -d 28 -p SRM -e 168 -c 42 -i 39 -a 42 + -t 80.471077702925996 -s 11 -d 10 -p SRM -e 168 -c 42 -i 40 -a 42 + -t 80.471077702925996 -s 21 -d 20 -p SRM -e 168 -c 42 -i 40 -a 42 - -t 80.471077702925996 -s 11 -d 10 -p SRM -e 168 -c 42 -i 40 -a 42 - -t 80.471077702925996 -s 21 -d 20 -p SRM -e 168 -c 42 -i 40 -a 42 h -t 80.471077702925996 -s 11 -d 10 -p SRM -e 168 -c 42 -i 40 -a 42 + -t 80.471077702925996 -s 11 -d 13 -p SRM -e 168 -c 42 -i 40 -a 42 - -t 80.471077702925996 -s 11 -d 13 -p SRM -e 168 -c 42 -i 40 -a 42 h -t 80.471077702925996 -s 11 -d 13 -p SRM -e 168 -c 42 -i 40 -a 42 + -t 80.471077702925996 -s 11 -d 14 -p SRM -e 168 -c 42 -i 40 -a 42 - -t 80.471077702925996 -s 11 -d 14 -p SRM -e 168 -c 42 -i 40 -a 42 h -t 80.471077702925996 -s 11 -d 14 -p SRM -e 168 -c 42 -i 40 -a 42 h -t 80.471077702925996 -s 21 -d 20 -p SRM -e 168 -c 42 -i 40 -a 42 + -t 80.471077702925996 -s 21 -d 23 -p SRM -e 168 -c 42 -i 40 -a 42 - -t 80.471077702925996 -s 21 -d 23 -p SRM -e 168 -c 42 -i 40 -a 42 h -t 80.471077702925996 -s 21 -d 23 -p SRM -e 168 -c 42 -i 40 -a 42 + -t 80.471077702925996 -s 21 -d 24 -p SRM -e 168 -c 42 -i 40 -a 42 - -t 80.471077702925996 -s 21 -d 24 -p SRM -e 168 -c 42 -i 40 -a 42 h -t 80.471077702925996 -s 21 -d 24 -p SRM -e 168 -c 42 -i 40 -a 42 r -t 80.48242170292599 -s 11 -d 10 -p SRM -e 168 -c 42 -i 40 -a 42 + -t 80.48242170292599 -s 10 -d 12 -p SRM -e 168 -c 42 -i 40 -a 42 - -t 80.48242170292599 -s 10 -d 12 -p SRM -e 168 -c 42 -i 40 -a 42 h -t 80.48242170292599 -s 10 -d 12 -p SRM -e 168 -c 42 -i 40 -a 42 r -t 80.48242170292599 -s 11 -d 13 -p SRM -e 168 -c 42 -i 40 -a 42 + -t 80.48242170292599 -s 13 -d 15 -p SRM -e 168 -c 42 -i 40 -a 42 - -t 80.48242170292599 -s 13 -d 15 -p SRM -e 168 -c 42 -i 40 -a 42 h -t 80.48242170292599 -s 13 -d 15 -p SRM -e 168 -c 42 -i 40 -a 42 + -t 80.48242170292599 -s 13 -d 16 -p SRM -e 168 -c 42 -i 40 -a 42 - -t 80.48242170292599 -s 13 -d 16 -p SRM -e 168 -c 42 -i 40 -a 42 h -t 80.48242170292599 -s 13 -d 16 -p SRM -e 168 -c 42 -i 40 -a 42 r -t 80.48242170292599 -s 11 -d 14 -p SRM -e 168 -c 42 -i 40 -a 42 r -t 80.48242170292599 -s 21 -d 20 -p SRM -e 168 -c 42 -i 40 -a 42 + -t 80.48242170292599 -s 20 -d 22 -p SRM -e 168 -c 42 -i 40 -a 42 - -t 80.48242170292599 -s 20 -d 22 -p SRM -e 168 -c 42 -i 40 -a 42 h -t 80.48242170292599 -s 20 -d 22 -p SRM -e 168 -c 42 -i 40 -a 42 r -t 80.48242170292599 -s 21 -d 23 -p SRM -e 168 -c 42 -i 40 -a 42 + -t 80.48242170292599 -s 23 -d 25 -p SRM -e 168 -c 42 -i 40 -a 42 - -t 80.48242170292599 -s 23 -d 25 -p SRM -e 168 -c 42 -i 40 -a 42 h -t 80.48242170292599 -s 23 -d 25 -p SRM -e 168 -c 42 -i 40 -a 42 + -t 80.48242170292599 -s 23 -d 26 -p SRM -e 168 -c 42 -i 40 -a 42 - -t 80.48242170292599 -s 23 -d 26 -p SRM -e 168 -c 42 -i 40 -a 42 h -t 80.48242170292599 -s 23 -d 26 -p SRM -e 168 -c 42 -i 40 -a 42 r -t 80.48242170292599 -s 21 -d 24 -p SRM -e 168 -c 42 -i 40 -a 42 r -t 80.493765702925984 -s 10 -d 12 -p SRM -e 168 -c 42 -i 40 -a 42 r -t 80.493765702925984 -s 13 -d 15 -p SRM -e 168 -c 42 -i 40 -a 42 r -t 80.493765702925984 -s 13 -d 16 -p SRM -e 168 -c 42 -i 40 -a 42 + -t 80.493765702925984 -s 16 -d 17 -p SRM -e 168 -c 42 -i 40 -a 42 - -t 80.493765702925984 -s 16 -d 17 -p SRM -e 168 -c 42 -i 40 -a 42 h -t 80.493765702925984 -s 16 -d 17 -p SRM -e 168 -c 42 -i 40 -a 42 + -t 80.493765702925984 -s 16 -d 18 -p SRM -e 168 -c 42 -i 40 -a 42 - -t 80.493765702925984 -s 16 -d 18 -p SRM -e 168 -c 42 -i 40 -a 42 h -t 80.493765702925984 -s 16 -d 18 -p SRM -e 168 -c 42 -i 40 -a 42 r -t 80.493765702925984 -s 20 -d 22 -p SRM -e 168 -c 42 -i 40 -a 42 r -t 80.493765702925984 -s 23 -d 25 -p SRM -e 168 -c 42 -i 40 -a 42 r -t 80.493765702925984 -s 23 -d 26 -p SRM -e 168 -c 42 -i 40 -a 42 + -t 80.493765702925984 -s 26 -d 27 -p SRM -e 168 -c 42 -i 40 -a 42 - -t 80.493765702925984 -s 26 -d 27 -p SRM -e 168 -c 42 -i 40 -a 42 h -t 80.493765702925984 -s 26 -d 27 -p SRM -e 168 -c 42 -i 40 -a 42 + -t 80.493765702925984 -s 26 -d 28 -p SRM -e 168 -c 42 -i 40 -a 42 - -t 80.493765702925984 -s 26 -d 28 -p SRM -e 168 -c 42 -i 40 -a 42 h -t 80.493765702925984 -s 26 -d 28 -p SRM -e 168 -c 42 -i 40 -a 42 r -t 80.505109702925978 -s 16 -d 17 -p SRM -e 168 -c 42 -i 40 -a 42 r -t 80.505109702925978 -s 16 -d 18 -p SRM -e 168 -c 42 -i 40 -a 42 r -t 80.505109702925978 -s 26 -d 27 -p SRM -e 168 -c 42 -i 40 -a 42 r -t 80.505109702925978 -s 26 -d 28 -p SRM -e 168 -c 42 -i 40 -a 42 + -t 81.251841960825004 -s 15 -d 13 -p SRM -e 168 -c 42 -i 41 -a 42 + -t 81.251841960825004 -s 25 -d 23 -p SRM -e 168 -c 42 -i 41 -a 42 - -t 81.251841960825004 -s 15 -d 13 -p SRM -e 168 -c 42 -i 41 -a 42 - -t 81.251841960825004 -s 25 -d 23 -p SRM -e 168 -c 42 -i 41 -a 42 h -t 81.251841960825004 -s 15 -d 13 -p SRM -e 168 -c 42 -i 41 -a 42 h -t 81.251841960825004 -s 25 -d 23 -p SRM -e 168 -c 42 -i 41 -a 42 r -t 81.263185960824998 -s 15 -d 13 -p SRM -e 168 -c 42 -i 41 -a 42 + -t 81.263185960824998 -s 13 -d 11 -p SRM -e 168 -c 42 -i 41 -a 42 - -t 81.263185960824998 -s 13 -d 11 -p SRM -e 168 -c 42 -i 41 -a 42 h -t 81.263185960824998 -s 13 -d 11 -p SRM -e 168 -c 42 -i 41 -a 42 + -t 81.263185960824998 -s 13 -d 16 -p SRM -e 168 -c 42 -i 41 -a 42 - -t 81.263185960824998 -s 13 -d 16 -p SRM -e 168 -c 42 -i 41 -a 42 h -t 81.263185960824998 -s 13 -d 16 -p SRM -e 168 -c 42 -i 41 -a 42 r -t 81.263185960824998 -s 25 -d 23 -p SRM -e 168 -c 42 -i 41 -a 42 + -t 81.263185960824998 -s 23 -d 21 -p SRM -e 168 -c 42 -i 41 -a 42 - -t 81.263185960824998 -s 23 -d 21 -p SRM -e 168 -c 42 -i 41 -a 42 h -t 81.263185960824998 -s 23 -d 21 -p SRM -e 168 -c 42 -i 41 -a 42 + -t 81.263185960824998 -s 23 -d 26 -p SRM -e 168 -c 42 -i 41 -a 42 - -t 81.263185960824998 -s 23 -d 26 -p SRM -e 168 -c 42 -i 41 -a 42 h -t 81.263185960824998 -s 23 -d 26 -p SRM -e 168 -c 42 -i 41 -a 42 r -t 81.274529960824992 -s 13 -d 11 -p SRM -e 168 -c 42 -i 41 -a 42 + -t 81.274529960824992 -s 11 -d 10 -p SRM -e 168 -c 42 -i 41 -a 42 - -t 81.274529960824992 -s 11 -d 10 -p SRM -e 168 -c 42 -i 41 -a 42 h -t 81.274529960824992 -s 11 -d 10 -p SRM -e 168 -c 42 -i 41 -a 42 + -t 81.274529960824992 -s 11 -d 14 -p SRM -e 168 -c 42 -i 41 -a 42 - -t 81.274529960824992 -s 11 -d 14 -p SRM -e 168 -c 42 -i 41 -a 42 h -t 81.274529960824992 -s 11 -d 14 -p SRM -e 168 -c 42 -i 41 -a 42 r -t 81.274529960824992 -s 13 -d 16 -p SRM -e 168 -c 42 -i 41 -a 42 + -t 81.274529960824992 -s 16 -d 17 -p SRM -e 168 -c 42 -i 41 -a 42 - -t 81.274529960824992 -s 16 -d 17 -p SRM -e 168 -c 42 -i 41 -a 42 h -t 81.274529960824992 -s 16 -d 17 -p SRM -e 168 -c 42 -i 41 -a 42 + -t 81.274529960824992 -s 16 -d 18 -p SRM -e 168 -c 42 -i 41 -a 42 - -t 81.274529960824992 -s 16 -d 18 -p SRM -e 168 -c 42 -i 41 -a 42 h -t 81.274529960824992 -s 16 -d 18 -p SRM -e 168 -c 42 -i 41 -a 42 r -t 81.274529960824992 -s 23 -d 21 -p SRM -e 168 -c 42 -i 41 -a 42 + -t 81.274529960824992 -s 21 -d 20 -p SRM -e 168 -c 42 -i 41 -a 42 - -t 81.274529960824992 -s 21 -d 20 -p SRM -e 168 -c 42 -i 41 -a 42 h -t 81.274529960824992 -s 21 -d 20 -p SRM -e 168 -c 42 -i 41 -a 42 + -t 81.274529960824992 -s 21 -d 24 -p SRM -e 168 -c 42 -i 41 -a 42 - -t 81.274529960824992 -s 21 -d 24 -p SRM -e 168 -c 42 -i 41 -a 42 h -t 81.274529960824992 -s 21 -d 24 -p SRM -e 168 -c 42 -i 41 -a 42 r -t 81.274529960824992 -s 23 -d 26 -p SRM -e 168 -c 42 -i 41 -a 42 + -t 81.274529960824992 -s 26 -d 27 -p SRM -e 168 -c 42 -i 41 -a 42 - -t 81.274529960824992 -s 26 -d 27 -p SRM -e 168 -c 42 -i 41 -a 42 h -t 81.274529960824992 -s 26 -d 27 -p SRM -e 168 -c 42 -i 41 -a 42 + -t 81.274529960824992 -s 26 -d 28 -p SRM -e 168 -c 42 -i 41 -a 42 - -t 81.274529960824992 -s 26 -d 28 -p SRM -e 168 -c 42 -i 41 -a 42 h -t 81.274529960824992 -s 26 -d 28 -p SRM -e 168 -c 42 -i 41 -a 42 r -t 81.285873960824986 -s 11 -d 10 -p SRM -e 168 -c 42 -i 41 -a 42 + -t 81.285873960824986 -s 10 -d 12 -p SRM -e 168 -c 42 -i 41 -a 42 - -t 81.285873960824986 -s 10 -d 12 -p SRM -e 168 -c 42 -i 41 -a 42 h -t 81.285873960824986 -s 10 -d 12 -p SRM -e 168 -c 42 -i 41 -a 42 r -t 81.285873960824986 -s 11 -d 14 -p SRM -e 168 -c 42 -i 41 -a 42 r -t 81.285873960824986 -s 16 -d 17 -p SRM -e 168 -c 42 -i 41 -a 42 r -t 81.285873960824986 -s 16 -d 18 -p SRM -e 168 -c 42 -i 41 -a 42 r -t 81.285873960824986 -s 21 -d 20 -p SRM -e 168 -c 42 -i 41 -a 42 + -t 81.285873960824986 -s 20 -d 22 -p SRM -e 168 -c 42 -i 41 -a 42 - -t 81.285873960824986 -s 20 -d 22 -p SRM -e 168 -c 42 -i 41 -a 42 h -t 81.285873960824986 -s 20 -d 22 -p SRM -e 168 -c 42 -i 41 -a 42 r -t 81.285873960824986 -s 21 -d 24 -p SRM -e 168 -c 42 -i 41 -a 42 r -t 81.285873960824986 -s 26 -d 27 -p SRM -e 168 -c 42 -i 41 -a 42 r -t 81.285873960824986 -s 26 -d 28 -p SRM -e 168 -c 42 -i 41 -a 42 r -t 81.29721796082498 -s 10 -d 12 -p SRM -e 168 -c 42 -i 41 -a 42 r -t 81.29721796082498 -s 20 -d 22 -p SRM -e 168 -c 42 -i 41 -a 42 + -t 84.018947178274004 -s 18 -d 16 -p SRM -e 168 -c 42 -i 42 -a 42 + -t 84.018947178274004 -s 28 -d 26 -p SRM -e 168 -c 42 -i 42 -a 42 - -t 84.018947178274004 -s 18 -d 16 -p SRM -e 168 -c 42 -i 42 -a 42 - -t 84.018947178274004 -s 28 -d 26 -p SRM -e 168 -c 42 -i 42 -a 42 h -t 84.018947178274004 -s 18 -d 16 -p SRM -e 168 -c 42 -i 42 -a 42 h -t 84.018947178274004 -s 28 -d 26 -p SRM -e 168 -c 42 -i 42 -a 42 r -t 84.030291178273998 -s 18 -d 16 -p SRM -e 168 -c 42 -i 42 -a 42 + -t 84.030291178273998 -s 16 -d 13 -p SRM -e 168 -c 42 -i 42 -a 42 - -t 84.030291178273998 -s 16 -d 13 -p SRM -e 168 -c 42 -i 42 -a 42 h -t 84.030291178273998 -s 16 -d 13 -p SRM -e 168 -c 42 -i 42 -a 42 + -t 84.030291178273998 -s 16 -d 17 -p SRM -e 168 -c 42 -i 42 -a 42 - -t 84.030291178273998 -s 16 -d 17 -p SRM -e 168 -c 42 -i 42 -a 42 h -t 84.030291178273998 -s 16 -d 17 -p SRM -e 168 -c 42 -i 42 -a 42 r -t 84.030291178273998 -s 28 -d 26 -p SRM -e 168 -c 42 -i 42 -a 42 + -t 84.030291178273998 -s 26 -d 23 -p SRM -e 168 -c 42 -i 42 -a 42 - -t 84.030291178273998 -s 26 -d 23 -p SRM -e 168 -c 42 -i 42 -a 42 h -t 84.030291178273998 -s 26 -d 23 -p SRM -e 168 -c 42 -i 42 -a 42 + -t 84.030291178273998 -s 26 -d 27 -p SRM -e 168 -c 42 -i 42 -a 42 - -t 84.030291178273998 -s 26 -d 27 -p SRM -e 168 -c 42 -i 42 -a 42 h -t 84.030291178273998 -s 26 -d 27 -p SRM -e 168 -c 42 -i 42 -a 42 r -t 84.041635178273992 -s 16 -d 13 -p SRM -e 168 -c 42 -i 42 -a 42 + -t 84.041635178273992 -s 13 -d 11 -p SRM -e 168 -c 42 -i 42 -a 42 - -t 84.041635178273992 -s 13 -d 11 -p SRM -e 168 -c 42 -i 42 -a 42 h -t 84.041635178273992 -s 13 -d 11 -p SRM -e 168 -c 42 -i 42 -a 42 + -t 84.041635178273992 -s 13 -d 15 -p SRM -e 168 -c 42 -i 42 -a 42 - -t 84.041635178273992 -s 13 -d 15 -p SRM -e 168 -c 42 -i 42 -a 42 h -t 84.041635178273992 -s 13 -d 15 -p SRM -e 168 -c 42 -i 42 -a 42 r -t 84.041635178273992 -s 16 -d 17 -p SRM -e 168 -c 42 -i 42 -a 42 r -t 84.041635178273992 -s 26 -d 23 -p SRM -e 168 -c 42 -i 42 -a 42 + -t 84.041635178273992 -s 23 -d 21 -p SRM -e 168 -c 42 -i 42 -a 42 - -t 84.041635178273992 -s 23 -d 21 -p SRM -e 168 -c 42 -i 42 -a 42 h -t 84.041635178273992 -s 23 -d 21 -p SRM -e 168 -c 42 -i 42 -a 42 + -t 84.041635178273992 -s 23 -d 25 -p SRM -e 168 -c 42 -i 42 -a 42 - -t 84.041635178273992 -s 23 -d 25 -p SRM -e 168 -c 42 -i 42 -a 42 h -t 84.041635178273992 -s 23 -d 25 -p SRM -e 168 -c 42 -i 42 -a 42 r -t 84.041635178273992 -s 26 -d 27 -p SRM -e 168 -c 42 -i 42 -a 42 r -t 84.052979178273986 -s 13 -d 11 -p SRM -e 168 -c 42 -i 42 -a 42 + -t 84.052979178273986 -s 11 -d 10 -p SRM -e 168 -c 42 -i 42 -a 42 - -t 84.052979178273986 -s 11 -d 10 -p SRM -e 168 -c 42 -i 42 -a 42 h -t 84.052979178273986 -s 11 -d 10 -p SRM -e 168 -c 42 -i 42 -a 42 + -t 84.052979178273986 -s 11 -d 14 -p SRM -e 168 -c 42 -i 42 -a 42 - -t 84.052979178273986 -s 11 -d 14 -p SRM -e 168 -c 42 -i 42 -a 42 h -t 84.052979178273986 -s 11 -d 14 -p SRM -e 168 -c 42 -i 42 -a 42 r -t 84.052979178273986 -s 13 -d 15 -p SRM -e 168 -c 42 -i 42 -a 42 r -t 84.052979178273986 -s 23 -d 21 -p SRM -e 168 -c 42 -i 42 -a 42 + -t 84.052979178273986 -s 21 -d 20 -p SRM -e 168 -c 42 -i 42 -a 42 - -t 84.052979178273986 -s 21 -d 20 -p SRM -e 168 -c 42 -i 42 -a 42 h -t 84.052979178273986 -s 21 -d 20 -p SRM -e 168 -c 42 -i 42 -a 42 + -t 84.052979178273986 -s 21 -d 24 -p SRM -e 168 -c 42 -i 42 -a 42 - -t 84.052979178273986 -s 21 -d 24 -p SRM -e 168 -c 42 -i 42 -a 42 h -t 84.052979178273986 -s 21 -d 24 -p SRM -e 168 -c 42 -i 42 -a 42 r -t 84.052979178273986 -s 23 -d 25 -p SRM -e 168 -c 42 -i 42 -a 42 r -t 84.06432317827398 -s 11 -d 10 -p SRM -e 168 -c 42 -i 42 -a 42 + -t 84.06432317827398 -s 10 -d 12 -p SRM -e 168 -c 42 -i 42 -a 42 - -t 84.06432317827398 -s 10 -d 12 -p SRM -e 168 -c 42 -i 42 -a 42 h -t 84.06432317827398 -s 10 -d 12 -p SRM -e 168 -c 42 -i 42 -a 42 r -t 84.06432317827398 -s 11 -d 14 -p SRM -e 168 -c 42 -i 42 -a 42 r -t 84.06432317827398 -s 21 -d 20 -p SRM -e 168 -c 42 -i 42 -a 42 + -t 84.06432317827398 -s 20 -d 22 -p SRM -e 168 -c 42 -i 42 -a 42 - -t 84.06432317827398 -s 20 -d 22 -p SRM -e 168 -c 42 -i 42 -a 42 h -t 84.06432317827398 -s 20 -d 22 -p SRM -e 168 -c 42 -i 42 -a 42 r -t 84.06432317827398 -s 21 -d 24 -p SRM -e 168 -c 42 -i 42 -a 42 r -t 84.075667178273974 -s 10 -d 12 -p SRM -e 168 -c 42 -i 42 -a 42 r -t 84.075667178273974 -s 20 -d 22 -p SRM -e 168 -c 42 -i 42 -a 42 + -t 94.07922865220371 -s 13 -d 11 -p cbr -e 1280 -c 3 -i 43 -a 3 + -t 94.07922865220371 -s 23 -d 21 -p cbr -e 1280 -c 3 -i 43 -a 3 - -t 94.07922865220371 -s 13 -d 11 -p cbr -e 1280 -c 3 -i 43 -a 3 - -t 94.07922865220371 -s 23 -d 21 -p cbr -e 1280 -c 3 -i 43 -a 3 h -t 94.07922865220371 -s 13 -d 11 -p cbr -e 1280 -c 3 -i 43 -a 3 + -t 94.07922865220371 -s 13 -d 15 -p cbr -e 1280 -c 3 -i 43 -a 3 - -t 94.07922865220371 -s 13 -d 15 -p cbr -e 1280 -c 3 -i 43 -a 3 h -t 94.07922865220371 -s 13 -d 15 -p cbr -e 1280 -c 3 -i 43 -a 3 + -t 94.07922865220371 -s 13 -d 16 -p cbr -e 1280 -c 3 -i 43 -a 3 - -t 94.07922865220371 -s 13 -d 16 -p cbr -e 1280 -c 3 -i 43 -a 3 h -t 94.07922865220371 -s 13 -d 16 -p cbr -e 1280 -c 3 -i 43 -a 3 h -t 94.07922865220371 -s 23 -d 21 -p cbr -e 1280 -c 3 -i 43 -a 3 + -t 94.07922865220371 -s 23 -d 25 -p cbr -e 1280 -c 3 -i 43 -a 3 - -t 94.07922865220371 -s 23 -d 25 -p cbr -e 1280 -c 3 -i 43 -a 3 h -t 94.07922865220371 -s 23 -d 25 -p cbr -e 1280 -c 3 -i 43 -a 3 + -t 94.07922865220371 -s 23 -d 26 -p cbr -e 1280 -c 3 -i 43 -a 3 - -t 94.07922865220371 -s 23 -d 26 -p cbr -e 1280 -c 3 -i 43 -a 3 h -t 94.07922865220371 -s 23 -d 26 -p cbr -e 1280 -c 3 -i 43 -a 3 r -t 94.099468652203711 -s 13 -d 11 -p cbr -e 1280 -c 3 -i 43 -a 3 + -t 94.099468652203711 -s 11 -d 10 -p cbr -e 1280 -c 3 -i 43 -a 3 - -t 94.099468652203711 -s 11 -d 10 -p cbr -e 1280 -c 3 -i 43 -a 3 h -t 94.099468652203711 -s 11 -d 10 -p cbr -e 1280 -c 3 -i 43 -a 3 + -t 94.099468652203711 -s 11 -d 14 -p cbr -e 1280 -c 3 -i 43 -a 3 - -t 94.099468652203711 -s 11 -d 14 -p cbr -e 1280 -c 3 -i 43 -a 3 h -t 94.099468652203711 -s 11 -d 14 -p cbr -e 1280 -c 3 -i 43 -a 3 r -t 94.099468652203711 -s 13 -d 15 -p cbr -e 1280 -c 3 -i 43 -a 3 r -t 94.099468652203711 -s 13 -d 16 -p cbr -e 1280 -c 3 -i 43 -a 3 + -t 94.099468652203711 -s 16 -d 17 -p cbr -e 1280 -c 3 -i 43 -a 3 - -t 94.099468652203711 -s 16 -d 17 -p cbr -e 1280 -c 3 -i 43 -a 3 h -t 94.099468652203711 -s 16 -d 17 -p cbr -e 1280 -c 3 -i 43 -a 3 + -t 94.099468652203711 -s 16 -d 18 -p cbr -e 1280 -c 3 -i 43 -a 3 - -t 94.099468652203711 -s 16 -d 18 -p cbr -e 1280 -c 3 -i 43 -a 3 h -t 94.099468652203711 -s 16 -d 18 -p cbr -e 1280 -c 3 -i 43 -a 3 r -t 94.099468652203711 -s 23 -d 21 -p cbr -e 1280 -c 3 -i 43 -a 3 + -t 94.099468652203711 -s 21 -d 20 -p cbr -e 1280 -c 3 -i 43 -a 3 - -t 94.099468652203711 -s 21 -d 20 -p cbr -e 1280 -c 3 -i 43 -a 3 h -t 94.099468652203711 -s 21 -d 20 -p cbr -e 1280 -c 3 -i 43 -a 3 + -t 94.099468652203711 -s 21 -d 24 -p cbr -e 1280 -c 3 -i 43 -a 3 - -t 94.099468652203711 -s 21 -d 24 -p cbr -e 1280 -c 3 -i 43 -a 3 h -t 94.099468652203711 -s 21 -d 24 -p cbr -e 1280 -c 3 -i 43 -a 3 r -t 94.099468652203711 -s 23 -d 25 -p cbr -e 1280 -c 3 -i 43 -a 3 r -t 94.099468652203711 -s 23 -d 26 -p cbr -e 1280 -c 3 -i 43 -a 3 + -t 94.099468652203711 -s 26 -d 27 -p cbr -e 1280 -c 3 -i 43 -a 3 - -t 94.099468652203711 -s 26 -d 27 -p cbr -e 1280 -c 3 -i 43 -a 3 h -t 94.099468652203711 -s 26 -d 27 -p cbr -e 1280 -c 3 -i 43 -a 3 + -t 94.099468652203711 -s 26 -d 28 -p cbr -e 1280 -c 3 -i 43 -a 3 - -t 94.099468652203711 -s 26 -d 28 -p cbr -e 1280 -c 3 -i 43 -a 3 h -t 94.099468652203711 -s 26 -d 28 -p cbr -e 1280 -c 3 -i 43 -a 3 r -t 94.119708652203713 -s 11 -d 10 -p cbr -e 1280 -c 3 -i 43 -a 3 + -t 94.119708652203713 -s 10 -d 12 -p cbr -e 1280 -c 3 -i 43 -a 3 - -t 94.119708652203713 -s 10 -d 12 -p cbr -e 1280 -c 3 -i 43 -a 3 h -t 94.119708652203713 -s 10 -d 12 -p cbr -e 1280 -c 3 -i 43 -a 3 r -t 94.119708652203713 -s 11 -d 14 -p cbr -e 1280 -c 3 -i 43 -a 3 r -t 94.119708652203713 -s 16 -d 17 -p cbr -e 1280 -c 3 -i 43 -a 3 r -t 94.119708652203713 -s 16 -d 18 -p cbr -e 1280 -c 3 -i 43 -a 3 r -t 94.119708652203713 -s 21 -d 20 -p cbr -e 1280 -c 3 -i 43 -a 3 + -t 94.119708652203713 -s 20 -d 22 -p cbr -e 1280 -c 3 -i 43 -a 3 - -t 94.119708652203713 -s 20 -d 22 -p cbr -e 1280 -c 3 -i 43 -a 3 h -t 94.119708652203713 -s 20 -d 22 -p cbr -e 1280 -c 3 -i 43 -a 3 r -t 94.119708652203713 -s 21 -d 24 -p cbr -e 1280 -c 3 -i 43 -a 3 r -t 94.119708652203713 -s 26 -d 27 -p cbr -e 1280 -c 3 -i 43 -a 3 r -t 94.119708652203713 -s 26 -d 28 -p cbr -e 1280 -c 3 -i 43 -a 3 r -t 94.139948652203714 -s 10 -d 12 -p cbr -e 1280 -c 3 -i 43 -a 3 r -t 94.139948652203714 -s 20 -d 22 -p cbr -e 1280 -c 3 -i 43 -a 3 + -t 97.581545033994004 -s 14 -d 11 -p SRM -e 168 -c 42 -i 44 -a 42 + -t 97.581545033994004 -s 24 -d 21 -p SRM -e 168 -c 42 -i 44 -a 42 - -t 97.581545033994004 -s 14 -d 11 -p SRM -e 168 -c 42 -i 44 -a 42 - -t 97.581545033994004 -s 24 -d 21 -p SRM -e 168 -c 42 -i 44 -a 42 h -t 97.581545033994004 -s 14 -d 11 -p SRM -e 168 -c 42 -i 44 -a 42 h -t 97.581545033994004 -s 24 -d 21 -p SRM -e 168 -c 42 -i 44 -a 42 r -t 97.592889033993998 -s 14 -d 11 -p SRM -e 168 -c 42 -i 44 -a 42 + -t 97.592889033993998 -s 11 -d 10 -p SRM -e 168 -c 42 -i 44 -a 42 - -t 97.592889033993998 -s 11 -d 10 -p SRM -e 168 -c 42 -i 44 -a 42 h -t 97.592889033993998 -s 11 -d 10 -p SRM -e 168 -c 42 -i 44 -a 42 + -t 97.592889033993998 -s 11 -d 13 -p SRM -e 168 -c 42 -i 44 -a 42 - -t 97.592889033993998 -s 11 -d 13 -p SRM -e 168 -c 42 -i 44 -a 42 h -t 97.592889033993998 -s 11 -d 13 -p SRM -e 168 -c 42 -i 44 -a 42 r -t 97.592889033993998 -s 24 -d 21 -p SRM -e 168 -c 42 -i 44 -a 42 + -t 97.592889033993998 -s 21 -d 20 -p SRM -e 168 -c 42 -i 44 -a 42 - -t 97.592889033993998 -s 21 -d 20 -p SRM -e 168 -c 42 -i 44 -a 42 h -t 97.592889033993998 -s 21 -d 20 -p SRM -e 168 -c 42 -i 44 -a 42 + -t 97.592889033993998 -s 21 -d 23 -p SRM -e 168 -c 42 -i 44 -a 42 - -t 97.592889033993998 -s 21 -d 23 -p SRM -e 168 -c 42 -i 44 -a 42 h -t 97.592889033993998 -s 21 -d 23 -p SRM -e 168 -c 42 -i 44 -a 42 r -t 97.604233033993992 -s 11 -d 10 -p SRM -e 168 -c 42 -i 44 -a 42 + -t 97.604233033993992 -s 10 -d 12 -p SRM -e 168 -c 42 -i 44 -a 42 - -t 97.604233033993992 -s 10 -d 12 -p SRM -e 168 -c 42 -i 44 -a 42 h -t 97.604233033993992 -s 10 -d 12 -p SRM -e 168 -c 42 -i 44 -a 42 r -t 97.604233033993992 -s 11 -d 13 -p SRM -e 168 -c 42 -i 44 -a 42 + -t 97.604233033993992 -s 13 -d 15 -p SRM -e 168 -c 42 -i 44 -a 42 - -t 97.604233033993992 -s 13 -d 15 -p SRM -e 168 -c 42 -i 44 -a 42 h -t 97.604233033993992 -s 13 -d 15 -p SRM -e 168 -c 42 -i 44 -a 42 + -t 97.604233033993992 -s 13 -d 16 -p SRM -e 168 -c 42 -i 44 -a 42 - -t 97.604233033993992 -s 13 -d 16 -p SRM -e 168 -c 42 -i 44 -a 42 h -t 97.604233033993992 -s 13 -d 16 -p SRM -e 168 -c 42 -i 44 -a 42 r -t 97.604233033993992 -s 21 -d 20 -p SRM -e 168 -c 42 -i 44 -a 42 + -t 97.604233033993992 -s 20 -d 22 -p SRM -e 168 -c 42 -i 44 -a 42 - -t 97.604233033993992 -s 20 -d 22 -p SRM -e 168 -c 42 -i 44 -a 42 h -t 97.604233033993992 -s 20 -d 22 -p SRM -e 168 -c 42 -i 44 -a 42 r -t 97.604233033993992 -s 21 -d 23 -p SRM -e 168 -c 42 -i 44 -a 42 + -t 97.604233033993992 -s 23 -d 25 -p SRM -e 168 -c 42 -i 44 -a 42 - -t 97.604233033993992 -s 23 -d 25 -p SRM -e 168 -c 42 -i 44 -a 42 h -t 97.604233033993992 -s 23 -d 25 -p SRM -e 168 -c 42 -i 44 -a 42 + -t 97.604233033993992 -s 23 -d 26 -p SRM -e 168 -c 42 -i 44 -a 42 - -t 97.604233033993992 -s 23 -d 26 -p SRM -e 168 -c 42 -i 44 -a 42 h -t 97.604233033993992 -s 23 -d 26 -p SRM -e 168 -c 42 -i 44 -a 42 r -t 97.615577033993986 -s 10 -d 12 -p SRM -e 168 -c 42 -i 44 -a 42 r -t 97.615577033993986 -s 13 -d 15 -p SRM -e 168 -c 42 -i 44 -a 42 r -t 97.615577033993986 -s 13 -d 16 -p SRM -e 168 -c 42 -i 44 -a 42 + -t 97.615577033993986 -s 16 -d 17 -p SRM -e 168 -c 42 -i 44 -a 42 - -t 97.615577033993986 -s 16 -d 17 -p SRM -e 168 -c 42 -i 44 -a 42 h -t 97.615577033993986 -s 16 -d 17 -p SRM -e 168 -c 42 -i 44 -a 42 + -t 97.615577033993986 -s 16 -d 18 -p SRM -e 168 -c 42 -i 44 -a 42 - -t 97.615577033993986 -s 16 -d 18 -p SRM -e 168 -c 42 -i 44 -a 42 h -t 97.615577033993986 -s 16 -d 18 -p SRM -e 168 -c 42 -i 44 -a 42 r -t 97.615577033993986 -s 20 -d 22 -p SRM -e 168 -c 42 -i 44 -a 42 r -t 97.615577033993986 -s 23 -d 25 -p SRM -e 168 -c 42 -i 44 -a 42 r -t 97.615577033993986 -s 23 -d 26 -p SRM -e 168 -c 42 -i 44 -a 42 + -t 97.615577033993986 -s 26 -d 27 -p SRM -e 168 -c 42 -i 44 -a 42 - -t 97.615577033993986 -s 26 -d 27 -p SRM -e 168 -c 42 -i 44 -a 42 h -t 97.615577033993986 -s 26 -d 27 -p SRM -e 168 -c 42 -i 44 -a 42 + -t 97.615577033993986 -s 26 -d 28 -p SRM -e 168 -c 42 -i 44 -a 42 - -t 97.615577033993986 -s 26 -d 28 -p SRM -e 168 -c 42 -i 44 -a 42 h -t 97.615577033993986 -s 26 -d 28 -p SRM -e 168 -c 42 -i 44 -a 42 r -t 97.62692103399398 -s 16 -d 17 -p SRM -e 168 -c 42 -i 44 -a 42 r -t 97.62692103399398 -s 16 -d 18 -p SRM -e 168 -c 42 -i 44 -a 42 r -t 97.62692103399398 -s 26 -d 27 -p SRM -e 168 -c 42 -i 44 -a 42 r -t 97.62692103399398 -s 26 -d 28 -p SRM -e 168 -c 42 -i 44 -a 42 + -t 98.245761252820003 -s 16 -d 13 -p SRM -e 168 -c 42 -i 45 -a 42 + -t 98.245761252820003 -s 26 -d 23 -p SRM -e 168 -c 42 -i 45 -a 42 - -t 98.245761252820003 -s 16 -d 13 -p SRM -e 168 -c 42 -i 45 -a 42 - -t 98.245761252820003 -s 26 -d 23 -p SRM -e 168 -c 42 -i 45 -a 42 h -t 98.245761252820003 -s 16 -d 13 -p SRM -e 168 -c 42 -i 45 -a 42 + -t 98.245761252820003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 45 -a 42 - -t 98.245761252820003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 45 -a 42 h -t 98.245761252820003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 45 -a 42 + -t 98.245761252820003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 45 -a 42 - -t 98.245761252820003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 45 -a 42 h -t 98.245761252820003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 45 -a 42 h -t 98.245761252820003 -s 26 -d 23 -p SRM -e 168 -c 42 -i 45 -a 42 + -t 98.245761252820003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 45 -a 42 - -t 98.245761252820003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 45 -a 42 h -t 98.245761252820003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 45 -a 42 + -t 98.245761252820003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 45 -a 42 - -t 98.245761252820003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 45 -a 42 h -t 98.245761252820003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 45 -a 42 r -t 98.257105252819997 -s 16 -d 13 -p SRM -e 168 -c 42 -i 45 -a 42 + -t 98.257105252819997 -s 13 -d 11 -p SRM -e 168 -c 42 -i 45 -a 42 - -t 98.257105252819997 -s 13 -d 11 -p SRM -e 168 -c 42 -i 45 -a 42 h -t 98.257105252819997 -s 13 -d 11 -p SRM -e 168 -c 42 -i 45 -a 42 + -t 98.257105252819997 -s 13 -d 15 -p SRM -e 168 -c 42 -i 45 -a 42 - -t 98.257105252819997 -s 13 -d 15 -p SRM -e 168 -c 42 -i 45 -a 42 h -t 98.257105252819997 -s 13 -d 15 -p SRM -e 168 -c 42 -i 45 -a 42 r -t 98.257105252819997 -s 16 -d 17 -p SRM -e 168 -c 42 -i 45 -a 42 r -t 98.257105252819997 -s 16 -d 18 -p SRM -e 168 -c 42 -i 45 -a 42 r -t 98.257105252819997 -s 26 -d 23 -p SRM -e 168 -c 42 -i 45 -a 42 + -t 98.257105252819997 -s 23 -d 21 -p SRM -e 168 -c 42 -i 45 -a 42 - -t 98.257105252819997 -s 23 -d 21 -p SRM -e 168 -c 42 -i 45 -a 42 h -t 98.257105252819997 -s 23 -d 21 -p SRM -e 168 -c 42 -i 45 -a 42 + -t 98.257105252819997 -s 23 -d 25 -p SRM -e 168 -c 42 -i 45 -a 42 - -t 98.257105252819997 -s 23 -d 25 -p SRM -e 168 -c 42 -i 45 -a 42 h -t 98.257105252819997 -s 23 -d 25 -p SRM -e 168 -c 42 -i 45 -a 42 r -t 98.257105252819997 -s 26 -d 27 -p SRM -e 168 -c 42 -i 45 -a 42 r -t 98.257105252819997 -s 26 -d 28 -p SRM -e 168 -c 42 -i 45 -a 42 r -t 98.268449252819991 -s 13 -d 11 -p SRM -e 168 -c 42 -i 45 -a 42 + -t 98.268449252819991 -s 11 -d 10 -p SRM -e 168 -c 42 -i 45 -a 42 - -t 98.268449252819991 -s 11 -d 10 -p SRM -e 168 -c 42 -i 45 -a 42 h -t 98.268449252819991 -s 11 -d 10 -p SRM -e 168 -c 42 -i 45 -a 42 + -t 98.268449252819991 -s 11 -d 14 -p SRM -e 168 -c 42 -i 45 -a 42 - -t 98.268449252819991 -s 11 -d 14 -p SRM -e 168 -c 42 -i 45 -a 42 h -t 98.268449252819991 -s 11 -d 14 -p SRM -e 168 -c 42 -i 45 -a 42 r -t 98.268449252819991 -s 13 -d 15 -p SRM -e 168 -c 42 -i 45 -a 42 r -t 98.268449252819991 -s 23 -d 21 -p SRM -e 168 -c 42 -i 45 -a 42 + -t 98.268449252819991 -s 21 -d 20 -p SRM -e 168 -c 42 -i 45 -a 42 - -t 98.268449252819991 -s 21 -d 20 -p SRM -e 168 -c 42 -i 45 -a 42 h -t 98.268449252819991 -s 21 -d 20 -p SRM -e 168 -c 42 -i 45 -a 42 + -t 98.268449252819991 -s 21 -d 24 -p SRM -e 168 -c 42 -i 45 -a 42 - -t 98.268449252819991 -s 21 -d 24 -p SRM -e 168 -c 42 -i 45 -a 42 h -t 98.268449252819991 -s 21 -d 24 -p SRM -e 168 -c 42 -i 45 -a 42 r -t 98.268449252819991 -s 23 -d 25 -p SRM -e 168 -c 42 -i 45 -a 42 r -t 98.279793252819985 -s 11 -d 10 -p SRM -e 168 -c 42 -i 45 -a 42 + -t 98.279793252819985 -s 10 -d 12 -p SRM -e 168 -c 42 -i 45 -a 42 - -t 98.279793252819985 -s 10 -d 12 -p SRM -e 168 -c 42 -i 45 -a 42 h -t 98.279793252819985 -s 10 -d 12 -p SRM -e 168 -c 42 -i 45 -a 42 r -t 98.279793252819985 -s 11 -d 14 -p SRM -e 168 -c 42 -i 45 -a 42 r -t 98.279793252819985 -s 21 -d 20 -p SRM -e 168 -c 42 -i 45 -a 42 + -t 98.279793252819985 -s 20 -d 22 -p SRM -e 168 -c 42 -i 45 -a 42 - -t 98.279793252819985 -s 20 -d 22 -p SRM -e 168 -c 42 -i 45 -a 42 h -t 98.279793252819985 -s 20 -d 22 -p SRM -e 168 -c 42 -i 45 -a 42 r -t 98.279793252819985 -s 21 -d 24 -p SRM -e 168 -c 42 -i 45 -a 42 r -t 98.291137252819979 -s 10 -d 12 -p SRM -e 168 -c 42 -i 45 -a 42 r -t 98.291137252819979 -s 20 -d 22 -p SRM -e 168 -c 42 -i 45 -a 42 + -t 98.536791356297996 -s 13 -d 11 -p SRM -e 168 -c 42 -i 46 -a 42 + -t 98.536791356297996 -s 23 -d 21 -p SRM -e 168 -c 42 -i 46 -a 42 - -t 98.536791356297996 -s 13 -d 11 -p SRM -e 168 -c 42 -i 46 -a 42 - -t 98.536791356297996 -s 23 -d 21 -p SRM -e 168 -c 42 -i 46 -a 42 h -t 98.536791356297996 -s 13 -d 11 -p SRM -e 168 -c 42 -i 46 -a 42 + -t 98.536791356297996 -s 13 -d 15 -p SRM -e 168 -c 42 -i 46 -a 42 - -t 98.536791356297996 -s 13 -d 15 -p SRM -e 168 -c 42 -i 46 -a 42 h -t 98.536791356297996 -s 13 -d 15 -p SRM -e 168 -c 42 -i 46 -a 42 + -t 98.536791356297996 -s 13 -d 16 -p SRM -e 168 -c 42 -i 46 -a 42 - -t 98.536791356297996 -s 13 -d 16 -p SRM -e 168 -c 42 -i 46 -a 42 h -t 98.536791356297996 -s 13 -d 16 -p SRM -e 168 -c 42 -i 46 -a 42 h -t 98.536791356297996 -s 23 -d 21 -p SRM -e 168 -c 42 -i 46 -a 42 + -t 98.536791356297996 -s 23 -d 25 -p SRM -e 168 -c 42 -i 46 -a 42 - -t 98.536791356297996 -s 23 -d 25 -p SRM -e 168 -c 42 -i 46 -a 42 h -t 98.536791356297996 -s 23 -d 25 -p SRM -e 168 -c 42 -i 46 -a 42 + -t 98.536791356297996 -s 23 -d 26 -p SRM -e 168 -c 42 -i 46 -a 42 - -t 98.536791356297996 -s 23 -d 26 -p SRM -e 168 -c 42 -i 46 -a 42 h -t 98.536791356297996 -s 23 -d 26 -p SRM -e 168 -c 42 -i 46 -a 42 r -t 98.54813535629799 -s 13 -d 11 -p SRM -e 168 -c 42 -i 46 -a 42 + -t 98.54813535629799 -s 11 -d 10 -p SRM -e 168 -c 42 -i 46 -a 42 - -t 98.54813535629799 -s 11 -d 10 -p SRM -e 168 -c 42 -i 46 -a 42 h -t 98.54813535629799 -s 11 -d 10 -p SRM -e 168 -c 42 -i 46 -a 42 + -t 98.54813535629799 -s 11 -d 14 -p SRM -e 168 -c 42 -i 46 -a 42 - -t 98.54813535629799 -s 11 -d 14 -p SRM -e 168 -c 42 -i 46 -a 42 h -t 98.54813535629799 -s 11 -d 14 -p SRM -e 168 -c 42 -i 46 -a 42 r -t 98.54813535629799 -s 13 -d 15 -p SRM -e 168 -c 42 -i 46 -a 42 r -t 98.54813535629799 -s 13 -d 16 -p SRM -e 168 -c 42 -i 46 -a 42 + -t 98.54813535629799 -s 16 -d 17 -p SRM -e 168 -c 42 -i 46 -a 42 - -t 98.54813535629799 -s 16 -d 17 -p SRM -e 168 -c 42 -i 46 -a 42 h -t 98.54813535629799 -s 16 -d 17 -p SRM -e 168 -c 42 -i 46 -a 42 + -t 98.54813535629799 -s 16 -d 18 -p SRM -e 168 -c 42 -i 46 -a 42 - -t 98.54813535629799 -s 16 -d 18 -p SRM -e 168 -c 42 -i 46 -a 42 h -t 98.54813535629799 -s 16 -d 18 -p SRM -e 168 -c 42 -i 46 -a 42 r -t 98.54813535629799 -s 23 -d 21 -p SRM -e 168 -c 42 -i 46 -a 42 + -t 98.54813535629799 -s 21 -d 20 -p SRM -e 168 -c 42 -i 46 -a 42 - -t 98.54813535629799 -s 21 -d 20 -p SRM -e 168 -c 42 -i 46 -a 42 h -t 98.54813535629799 -s 21 -d 20 -p SRM -e 168 -c 42 -i 46 -a 42 + -t 98.54813535629799 -s 21 -d 24 -p SRM -e 168 -c 42 -i 46 -a 42 - -t 98.54813535629799 -s 21 -d 24 -p SRM -e 168 -c 42 -i 46 -a 42 h -t 98.54813535629799 -s 21 -d 24 -p SRM -e 168 -c 42 -i 46 -a 42 r -t 98.54813535629799 -s 23 -d 25 -p SRM -e 168 -c 42 -i 46 -a 42 r -t 98.54813535629799 -s 23 -d 26 -p SRM -e 168 -c 42 -i 46 -a 42 + -t 98.54813535629799 -s 26 -d 27 -p SRM -e 168 -c 42 -i 46 -a 42 - -t 98.54813535629799 -s 26 -d 27 -p SRM -e 168 -c 42 -i 46 -a 42 h -t 98.54813535629799 -s 26 -d 27 -p SRM -e 168 -c 42 -i 46 -a 42 + -t 98.54813535629799 -s 26 -d 28 -p SRM -e 168 -c 42 -i 46 -a 42 - -t 98.54813535629799 -s 26 -d 28 -p SRM -e 168 -c 42 -i 46 -a 42 h -t 98.54813535629799 -s 26 -d 28 -p SRM -e 168 -c 42 -i 46 -a 42 r -t 98.559479356297985 -s 11 -d 10 -p SRM -e 168 -c 42 -i 46 -a 42 + -t 98.559479356297985 -s 10 -d 12 -p SRM -e 168 -c 42 -i 46 -a 42 - -t 98.559479356297985 -s 10 -d 12 -p SRM -e 168 -c 42 -i 46 -a 42 h -t 98.559479356297985 -s 10 -d 12 -p SRM -e 168 -c 42 -i 46 -a 42 r -t 98.559479356297985 -s 11 -d 14 -p SRM -e 168 -c 42 -i 46 -a 42 r -t 98.559479356297985 -s 16 -d 17 -p SRM -e 168 -c 42 -i 46 -a 42 r -t 98.559479356297985 -s 16 -d 18 -p SRM -e 168 -c 42 -i 46 -a 42 r -t 98.559479356297985 -s 21 -d 20 -p SRM -e 168 -c 42 -i 46 -a 42 + -t 98.559479356297985 -s 20 -d 22 -p SRM -e 168 -c 42 -i 46 -a 42 - -t 98.559479356297985 -s 20 -d 22 -p SRM -e 168 -c 42 -i 46 -a 42 h -t 98.559479356297985 -s 20 -d 22 -p SRM -e 168 -c 42 -i 46 -a 42 r -t 98.559479356297985 -s 21 -d 24 -p SRM -e 168 -c 42 -i 46 -a 42 r -t 98.559479356297985 -s 26 -d 27 -p SRM -e 168 -c 42 -i 46 -a 42 r -t 98.559479356297985 -s 26 -d 28 -p SRM -e 168 -c 42 -i 46 -a 42 r -t 98.570823356297979 -s 10 -d 12 -p SRM -e 168 -c 42 -i 46 -a 42 r -t 98.570823356297979 -s 20 -d 22 -p SRM -e 168 -c 42 -i 46 -a 42 + -t 99.452177895676002 -s 15 -d 13 -p SRM -e 168 -c 42 -i 47 -a 42 + -t 99.452177895676002 -s 25 -d 23 -p SRM -e 168 -c 42 -i 47 -a 42 - -t 99.452177895676002 -s 15 -d 13 -p SRM -e 168 -c 42 -i 47 -a 42 - -t 99.452177895676002 -s 25 -d 23 -p SRM -e 168 -c 42 -i 47 -a 42 h -t 99.452177895676002 -s 15 -d 13 -p SRM -e 168 -c 42 -i 47 -a 42 h -t 99.452177895676002 -s 25 -d 23 -p SRM -e 168 -c 42 -i 47 -a 42 r -t 99.463521895675996 -s 15 -d 13 -p SRM -e 168 -c 42 -i 47 -a 42 + -t 99.463521895675996 -s 13 -d 11 -p SRM -e 168 -c 42 -i 47 -a 42 - -t 99.463521895675996 -s 13 -d 11 -p SRM -e 168 -c 42 -i 47 -a 42 h -t 99.463521895675996 -s 13 -d 11 -p SRM -e 168 -c 42 -i 47 -a 42 + -t 99.463521895675996 -s 13 -d 16 -p SRM -e 168 -c 42 -i 47 -a 42 - -t 99.463521895675996 -s 13 -d 16 -p SRM -e 168 -c 42 -i 47 -a 42 h -t 99.463521895675996 -s 13 -d 16 -p SRM -e 168 -c 42 -i 47 -a 42 r -t 99.463521895675996 -s 25 -d 23 -p SRM -e 168 -c 42 -i 47 -a 42 + -t 99.463521895675996 -s 23 -d 21 -p SRM -e 168 -c 42 -i 47 -a 42 - -t 99.463521895675996 -s 23 -d 21 -p SRM -e 168 -c 42 -i 47 -a 42 h -t 99.463521895675996 -s 23 -d 21 -p SRM -e 168 -c 42 -i 47 -a 42 + -t 99.463521895675996 -s 23 -d 26 -p SRM -e 168 -c 42 -i 47 -a 42 - -t 99.463521895675996 -s 23 -d 26 -p SRM -e 168 -c 42 -i 47 -a 42 h -t 99.463521895675996 -s 23 -d 26 -p SRM -e 168 -c 42 -i 47 -a 42 r -t 99.47486589567599 -s 13 -d 11 -p SRM -e 168 -c 42 -i 47 -a 42 + -t 99.47486589567599 -s 11 -d 10 -p SRM -e 168 -c 42 -i 47 -a 42 - -t 99.47486589567599 -s 11 -d 10 -p SRM -e 168 -c 42 -i 47 -a 42 h -t 99.47486589567599 -s 11 -d 10 -p SRM -e 168 -c 42 -i 47 -a 42 + -t 99.47486589567599 -s 11 -d 14 -p SRM -e 168 -c 42 -i 47 -a 42 - -t 99.47486589567599 -s 11 -d 14 -p SRM -e 168 -c 42 -i 47 -a 42 h -t 99.47486589567599 -s 11 -d 14 -p SRM -e 168 -c 42 -i 47 -a 42 r -t 99.47486589567599 -s 13 -d 16 -p SRM -e 168 -c 42 -i 47 -a 42 + -t 99.47486589567599 -s 16 -d 17 -p SRM -e 168 -c 42 -i 47 -a 42 - -t 99.47486589567599 -s 16 -d 17 -p SRM -e 168 -c 42 -i 47 -a 42 h -t 99.47486589567599 -s 16 -d 17 -p SRM -e 168 -c 42 -i 47 -a 42 + -t 99.47486589567599 -s 16 -d 18 -p SRM -e 168 -c 42 -i 47 -a 42 - -t 99.47486589567599 -s 16 -d 18 -p SRM -e 168 -c 42 -i 47 -a 42 h -t 99.47486589567599 -s 16 -d 18 -p SRM -e 168 -c 42 -i 47 -a 42 r -t 99.47486589567599 -s 23 -d 21 -p SRM -e 168 -c 42 -i 47 -a 42 + -t 99.47486589567599 -s 21 -d 20 -p SRM -e 168 -c 42 -i 47 -a 42 - -t 99.47486589567599 -s 21 -d 20 -p SRM -e 168 -c 42 -i 47 -a 42 h -t 99.47486589567599 -s 21 -d 20 -p SRM -e 168 -c 42 -i 47 -a 42 + -t 99.47486589567599 -s 21 -d 24 -p SRM -e 168 -c 42 -i 47 -a 42 - -t 99.47486589567599 -s 21 -d 24 -p SRM -e 168 -c 42 -i 47 -a 42 h -t 99.47486589567599 -s 21 -d 24 -p SRM -e 168 -c 42 -i 47 -a 42 r -t 99.47486589567599 -s 23 -d 26 -p SRM -e 168 -c 42 -i 47 -a 42 + -t 99.47486589567599 -s 26 -d 27 -p SRM -e 168 -c 42 -i 47 -a 42 - -t 99.47486589567599 -s 26 -d 27 -p SRM -e 168 -c 42 -i 47 -a 42 h -t 99.47486589567599 -s 26 -d 27 -p SRM -e 168 -c 42 -i 47 -a 42 + -t 99.47486589567599 -s 26 -d 28 -p SRM -e 168 -c 42 -i 47 -a 42 - -t 99.47486589567599 -s 26 -d 28 -p SRM -e 168 -c 42 -i 47 -a 42 h -t 99.47486589567599 -s 26 -d 28 -p SRM -e 168 -c 42 -i 47 -a 42 r -t 99.486209895675984 -s 11 -d 10 -p SRM -e 168 -c 42 -i 47 -a 42 + -t 99.486209895675984 -s 10 -d 12 -p SRM -e 168 -c 42 -i 47 -a 42 - -t 99.486209895675984 -s 10 -d 12 -p SRM -e 168 -c 42 -i 47 -a 42 h -t 99.486209895675984 -s 10 -d 12 -p SRM -e 168 -c 42 -i 47 -a 42 r -t 99.486209895675984 -s 11 -d 14 -p SRM -e 168 -c 42 -i 47 -a 42 r -t 99.486209895675984 -s 16 -d 17 -p SRM -e 168 -c 42 -i 47 -a 42 r -t 99.486209895675984 -s 16 -d 18 -p SRM -e 168 -c 42 -i 47 -a 42 r -t 99.486209895675984 -s 21 -d 20 -p SRM -e 168 -c 42 -i 47 -a 42 + -t 99.486209895675984 -s 20 -d 22 -p SRM -e 168 -c 42 -i 47 -a 42 - -t 99.486209895675984 -s 20 -d 22 -p SRM -e 168 -c 42 -i 47 -a 42 h -t 99.486209895675984 -s 20 -d 22 -p SRM -e 168 -c 42 -i 47 -a 42 r -t 99.486209895675984 -s 21 -d 24 -p SRM -e 168 -c 42 -i 47 -a 42 r -t 99.486209895675984 -s 26 -d 27 -p SRM -e 168 -c 42 -i 47 -a 42 r -t 99.486209895675984 -s 26 -d 28 -p SRM -e 168 -c 42 -i 47 -a 42 r -t 99.497553895675978 -s 10 -d 12 -p SRM -e 168 -c 42 -i 47 -a 42 r -t 99.497553895675978 -s 20 -d 22 -p SRM -e 168 -c 42 -i 47 -a 42 + -t 99.662472572718997 -s 12 -d 10 -p SRM -e 168 -c 42 -i 48 -a 42 + -t 99.662472572718997 -s 22 -d 20 -p SRM -e 168 -c 42 -i 48 -a 42 - -t 99.662472572718997 -s 12 -d 10 -p SRM -e 168 -c 42 -i 48 -a 42 - -t 99.662472572718997 -s 22 -d 20 -p SRM -e 168 -c 42 -i 48 -a 42 h -t 99.662472572718997 -s 12 -d 10 -p SRM -e 168 -c 42 -i 48 -a 42 h -t 99.662472572718997 -s 22 -d 20 -p SRM -e 168 -c 42 -i 48 -a 42 r -t 99.673816572718991 -s 12 -d 10 -p SRM -e 168 -c 42 -i 48 -a 42 + -t 99.673816572718991 -s 10 -d 11 -p SRM -e 168 -c 42 -i 48 -a 42 - -t 99.673816572718991 -s 10 -d 11 -p SRM -e 168 -c 42 -i 48 -a 42 h -t 99.673816572718991 -s 10 -d 11 -p SRM -e 168 -c 42 -i 48 -a 42 r -t 99.673816572718991 -s 22 -d 20 -p SRM -e 168 -c 42 -i 48 -a 42 + -t 99.673816572718991 -s 20 -d 21 -p SRM -e 168 -c 42 -i 48 -a 42 - -t 99.673816572718991 -s 20 -d 21 -p SRM -e 168 -c 42 -i 48 -a 42 h -t 99.673816572718991 -s 20 -d 21 -p SRM -e 168 -c 42 -i 48 -a 42 r -t 99.685160572718985 -s 10 -d 11 -p SRM -e 168 -c 42 -i 48 -a 42 + -t 99.685160572718985 -s 11 -d 13 -p SRM -e 168 -c 42 -i 48 -a 42 - -t 99.685160572718985 -s 11 -d 13 -p SRM -e 168 -c 42 -i 48 -a 42 h -t 99.685160572718985 -s 11 -d 13 -p SRM -e 168 -c 42 -i 48 -a 42 + -t 99.685160572718985 -s 11 -d 14 -p SRM -e 168 -c 42 -i 48 -a 42 - -t 99.685160572718985 -s 11 -d 14 -p SRM -e 168 -c 42 -i 48 -a 42 h -t 99.685160572718985 -s 11 -d 14 -p SRM -e 168 -c 42 -i 48 -a 42 r -t 99.685160572718985 -s 20 -d 21 -p SRM -e 168 -c 42 -i 48 -a 42 + -t 99.685160572718985 -s 21 -d 23 -p SRM -e 168 -c 42 -i 48 -a 42 - -t 99.685160572718985 -s 21 -d 23 -p SRM -e 168 -c 42 -i 48 -a 42 h -t 99.685160572718985 -s 21 -d 23 -p SRM -e 168 -c 42 -i 48 -a 42 + -t 99.685160572718985 -s 21 -d 24 -p SRM -e 168 -c 42 -i 48 -a 42 - -t 99.685160572718985 -s 21 -d 24 -p SRM -e 168 -c 42 -i 48 -a 42 h -t 99.685160572718985 -s 21 -d 24 -p SRM -e 168 -c 42 -i 48 -a 42 r -t 99.696504572718979 -s 11 -d 13 -p SRM -e 168 -c 42 -i 48 -a 42 + -t 99.696504572718979 -s 13 -d 15 -p SRM -e 168 -c 42 -i 48 -a 42 - -t 99.696504572718979 -s 13 -d 15 -p SRM -e 168 -c 42 -i 48 -a 42 h -t 99.696504572718979 -s 13 -d 15 -p SRM -e 168 -c 42 -i 48 -a 42 + -t 99.696504572718979 -s 13 -d 16 -p SRM -e 168 -c 42 -i 48 -a 42 - -t 99.696504572718979 -s 13 -d 16 -p SRM -e 168 -c 42 -i 48 -a 42 h -t 99.696504572718979 -s 13 -d 16 -p SRM -e 168 -c 42 -i 48 -a 42 r -t 99.696504572718979 -s 11 -d 14 -p SRM -e 168 -c 42 -i 48 -a 42 r -t 99.696504572718979 -s 21 -d 23 -p SRM -e 168 -c 42 -i 48 -a 42 + -t 99.696504572718979 -s 23 -d 25 -p SRM -e 168 -c 42 -i 48 -a 42 - -t 99.696504572718979 -s 23 -d 25 -p SRM -e 168 -c 42 -i 48 -a 42 h -t 99.696504572718979 -s 23 -d 25 -p SRM -e 168 -c 42 -i 48 -a 42 + -t 99.696504572718979 -s 23 -d 26 -p SRM -e 168 -c 42 -i 48 -a 42 - -t 99.696504572718979 -s 23 -d 26 -p SRM -e 168 -c 42 -i 48 -a 42 h -t 99.696504572718979 -s 23 -d 26 -p SRM -e 168 -c 42 -i 48 -a 42 r -t 99.696504572718979 -s 21 -d 24 -p SRM -e 168 -c 42 -i 48 -a 42 r -t 99.707848572718973 -s 13 -d 15 -p SRM -e 168 -c 42 -i 48 -a 42 r -t 99.707848572718973 -s 13 -d 16 -p SRM -e 168 -c 42 -i 48 -a 42 + -t 99.707848572718973 -s 16 -d 17 -p SRM -e 168 -c 42 -i 48 -a 42 - -t 99.707848572718973 -s 16 -d 17 -p SRM -e 168 -c 42 -i 48 -a 42 h -t 99.707848572718973 -s 16 -d 17 -p SRM -e 168 -c 42 -i 48 -a 42 + -t 99.707848572718973 -s 16 -d 18 -p SRM -e 168 -c 42 -i 48 -a 42 - -t 99.707848572718973 -s 16 -d 18 -p SRM -e 168 -c 42 -i 48 -a 42 h -t 99.707848572718973 -s 16 -d 18 -p SRM -e 168 -c 42 -i 48 -a 42 r -t 99.707848572718973 -s 23 -d 25 -p SRM -e 168 -c 42 -i 48 -a 42 r -t 99.707848572718973 -s 23 -d 26 -p SRM -e 168 -c 42 -i 48 -a 42 + -t 99.707848572718973 -s 26 -d 27 -p SRM -e 168 -c 42 -i 48 -a 42 - -t 99.707848572718973 -s 26 -d 27 -p SRM -e 168 -c 42 -i 48 -a 42 h -t 99.707848572718973 -s 26 -d 27 -p SRM -e 168 -c 42 -i 48 -a 42 + -t 99.707848572718973 -s 26 -d 28 -p SRM -e 168 -c 42 -i 48 -a 42 - -t 99.707848572718973 -s 26 -d 28 -p SRM -e 168 -c 42 -i 48 -a 42 h -t 99.707848572718973 -s 26 -d 28 -p SRM -e 168 -c 42 -i 48 -a 42 r -t 99.719192572718967 -s 16 -d 17 -p SRM -e 168 -c 42 -i 48 -a 42 r -t 99.719192572718967 -s 16 -d 18 -p SRM -e 168 -c 42 -i 48 -a 42 r -t 99.719192572718967 -s 26 -d 27 -p SRM -e 168 -c 42 -i 48 -a 42 r -t 99.719192572718967 -s 26 -d 28 -p SRM -e 168 -c 42 -i 48 -a 42 + -t 99.776038330643999 -s 10 -d 11 -p SRM -e 168 -c 42 -i 49 -a 42 + -t 99.776038330643999 -s 20 -d 21 -p SRM -e 168 -c 42 -i 49 -a 42 - -t 99.776038330643999 -s 10 -d 11 -p SRM -e 168 -c 42 -i 49 -a 42 - -t 99.776038330643999 -s 20 -d 21 -p SRM -e 168 -c 42 -i 49 -a 42 h -t 99.776038330643999 -s 10 -d 11 -p SRM -e 168 -c 42 -i 49 -a 42 + -t 99.776038330643999 -s 10 -d 12 -p SRM -e 168 -c 42 -i 49 -a 42 - -t 99.776038330643999 -s 10 -d 12 -p SRM -e 168 -c 42 -i 49 -a 42 h -t 99.776038330643999 -s 10 -d 12 -p SRM -e 168 -c 42 -i 49 -a 42 h -t 99.776038330643999 -s 20 -d 21 -p SRM -e 168 -c 42 -i 49 -a 42 + -t 99.776038330643999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 49 -a 42 - -t 99.776038330643999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 49 -a 42 h -t 99.776038330643999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 49 -a 42 r -t 99.787382330643993 -s 10 -d 11 -p SRM -e 168 -c 42 -i 49 -a 42 + -t 99.787382330643993 -s 11 -d 13 -p SRM -e 168 -c 42 -i 49 -a 42 - -t 99.787382330643993 -s 11 -d 13 -p SRM -e 168 -c 42 -i 49 -a 42 h -t 99.787382330643993 -s 11 -d 13 -p SRM -e 168 -c 42 -i 49 -a 42 + -t 99.787382330643993 -s 11 -d 14 -p SRM -e 168 -c 42 -i 49 -a 42 - -t 99.787382330643993 -s 11 -d 14 -p SRM -e 168 -c 42 -i 49 -a 42 h -t 99.787382330643993 -s 11 -d 14 -p SRM -e 168 -c 42 -i 49 -a 42 r -t 99.787382330643993 -s 10 -d 12 -p SRM -e 168 -c 42 -i 49 -a 42 r -t 99.787382330643993 -s 20 -d 21 -p SRM -e 168 -c 42 -i 49 -a 42 + -t 99.787382330643993 -s 21 -d 23 -p SRM -e 168 -c 42 -i 49 -a 42 - -t 99.787382330643993 -s 21 -d 23 -p SRM -e 168 -c 42 -i 49 -a 42 h -t 99.787382330643993 -s 21 -d 23 -p SRM -e 168 -c 42 -i 49 -a 42 + -t 99.787382330643993 -s 21 -d 24 -p SRM -e 168 -c 42 -i 49 -a 42 - -t 99.787382330643993 -s 21 -d 24 -p SRM -e 168 -c 42 -i 49 -a 42 h -t 99.787382330643993 -s 21 -d 24 -p SRM -e 168 -c 42 -i 49 -a 42 r -t 99.787382330643993 -s 20 -d 22 -p SRM -e 168 -c 42 -i 49 -a 42 r -t 99.798726330643987 -s 11 -d 13 -p SRM -e 168 -c 42 -i 49 -a 42 + -t 99.798726330643987 -s 13 -d 15 -p SRM -e 168 -c 42 -i 49 -a 42 - -t 99.798726330643987 -s 13 -d 15 -p SRM -e 168 -c 42 -i 49 -a 42 h -t 99.798726330643987 -s 13 -d 15 -p SRM -e 168 -c 42 -i 49 -a 42 + -t 99.798726330643987 -s 13 -d 16 -p SRM -e 168 -c 42 -i 49 -a 42 - -t 99.798726330643987 -s 13 -d 16 -p SRM -e 168 -c 42 -i 49 -a 42 h -t 99.798726330643987 -s 13 -d 16 -p SRM -e 168 -c 42 -i 49 -a 42 r -t 99.798726330643987 -s 11 -d 14 -p SRM -e 168 -c 42 -i 49 -a 42 r -t 99.798726330643987 -s 21 -d 23 -p SRM -e 168 -c 42 -i 49 -a 42 + -t 99.798726330643987 -s 23 -d 25 -p SRM -e 168 -c 42 -i 49 -a 42 - -t 99.798726330643987 -s 23 -d 25 -p SRM -e 168 -c 42 -i 49 -a 42 h -t 99.798726330643987 -s 23 -d 25 -p SRM -e 168 -c 42 -i 49 -a 42 + -t 99.798726330643987 -s 23 -d 26 -p SRM -e 168 -c 42 -i 49 -a 42 - -t 99.798726330643987 -s 23 -d 26 -p SRM -e 168 -c 42 -i 49 -a 42 h -t 99.798726330643987 -s 23 -d 26 -p SRM -e 168 -c 42 -i 49 -a 42 r -t 99.798726330643987 -s 21 -d 24 -p SRM -e 168 -c 42 -i 49 -a 42 r -t 99.810070330643981 -s 13 -d 15 -p SRM -e 168 -c 42 -i 49 -a 42 r -t 99.810070330643981 -s 13 -d 16 -p SRM -e 168 -c 42 -i 49 -a 42 + -t 99.810070330643981 -s 16 -d 17 -p SRM -e 168 -c 42 -i 49 -a 42 - -t 99.810070330643981 -s 16 -d 17 -p SRM -e 168 -c 42 -i 49 -a 42 h -t 99.810070330643981 -s 16 -d 17 -p SRM -e 168 -c 42 -i 49 -a 42 + -t 99.810070330643981 -s 16 -d 18 -p SRM -e 168 -c 42 -i 49 -a 42 - -t 99.810070330643981 -s 16 -d 18 -p SRM -e 168 -c 42 -i 49 -a 42 h -t 99.810070330643981 -s 16 -d 18 -p SRM -e 168 -c 42 -i 49 -a 42 r -t 99.810070330643981 -s 23 -d 25 -p SRM -e 168 -c 42 -i 49 -a 42 r -t 99.810070330643981 -s 23 -d 26 -p SRM -e 168 -c 42 -i 49 -a 42 + -t 99.810070330643981 -s 26 -d 27 -p SRM -e 168 -c 42 -i 49 -a 42 - -t 99.810070330643981 -s 26 -d 27 -p SRM -e 168 -c 42 -i 49 -a 42 h -t 99.810070330643981 -s 26 -d 27 -p SRM -e 168 -c 42 -i 49 -a 42 + -t 99.810070330643981 -s 26 -d 28 -p SRM -e 168 -c 42 -i 49 -a 42 - -t 99.810070330643981 -s 26 -d 28 -p SRM -e 168 -c 42 -i 49 -a 42 h -t 99.810070330643981 -s 26 -d 28 -p SRM -e 168 -c 42 -i 49 -a 42 r -t 99.821414330643975 -s 16 -d 17 -p SRM -e 168 -c 42 -i 49 -a 42 r -t 99.821414330643975 -s 16 -d 18 -p SRM -e 168 -c 42 -i 49 -a 42 r -t 99.821414330643975 -s 26 -d 27 -p SRM -e 168 -c 42 -i 49 -a 42 r -t 99.821414330643975 -s 26 -d 28 -p SRM -e 168 -c 42 -i 49 -a 42 + -t 101.19120000056 -s 17 -d 16 -p SRM -e 168 -c 42 -i 50 -a 42 + -t 101.19120000056 -s 27 -d 26 -p SRM -e 168 -c 42 -i 50 -a 42 - -t 101.19120000056 -s 17 -d 16 -p SRM -e 168 -c 42 -i 50 -a 42 - -t 101.19120000056 -s 27 -d 26 -p SRM -e 168 -c 42 -i 50 -a 42 h -t 101.19120000056 -s 17 -d 16 -p SRM -e 168 -c 42 -i 50 -a 42 h -t 101.19120000056 -s 27 -d 26 -p SRM -e 168 -c 42 -i 50 -a 42 r -t 101.20254400056 -s 17 -d 16 -p SRM -e 168 -c 42 -i 50 -a 42 + -t 101.20254400056 -s 16 -d 13 -p SRM -e 168 -c 42 -i 50 -a 42 - -t 101.20254400056 -s 16 -d 13 -p SRM -e 168 -c 42 -i 50 -a 42 h -t 101.20254400056 -s 16 -d 13 -p SRM -e 168 -c 42 -i 50 -a 42 + -t 101.20254400056 -s 16 -d 18 -p SRM -e 168 -c 42 -i 50 -a 42 - -t 101.20254400056 -s 16 -d 18 -p SRM -e 168 -c 42 -i 50 -a 42 h -t 101.20254400056 -s 16 -d 18 -p SRM -e 168 -c 42 -i 50 -a 42 r -t 101.20254400056 -s 27 -d 26 -p SRM -e 168 -c 42 -i 50 -a 42 + -t 101.20254400056 -s 26 -d 23 -p SRM -e 168 -c 42 -i 50 -a 42 - -t 101.20254400056 -s 26 -d 23 -p SRM -e 168 -c 42 -i 50 -a 42 h -t 101.20254400056 -s 26 -d 23 -p SRM -e 168 -c 42 -i 50 -a 42 + -t 101.20254400056 -s 26 -d 28 -p SRM -e 168 -c 42 -i 50 -a 42 - -t 101.20254400056 -s 26 -d 28 -p SRM -e 168 -c 42 -i 50 -a 42 h -t 101.20254400056 -s 26 -d 28 -p SRM -e 168 -c 42 -i 50 -a 42 r -t 101.21388800055999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 50 -a 42 + -t 101.21388800055999 -s 13 -d 11 -p SRM -e 168 -c 42 -i 50 -a 42 - -t 101.21388800055999 -s 13 -d 11 -p SRM -e 168 -c 42 -i 50 -a 42 h -t 101.21388800055999 -s 13 -d 11 -p SRM -e 168 -c 42 -i 50 -a 42 + -t 101.21388800055999 -s 13 -d 15 -p SRM -e 168 -c 42 -i 50 -a 42 - -t 101.21388800055999 -s 13 -d 15 -p SRM -e 168 -c 42 -i 50 -a 42 h -t 101.21388800055999 -s 13 -d 15 -p SRM -e 168 -c 42 -i 50 -a 42 r -t 101.21388800055999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 50 -a 42 r -t 101.21388800055999 -s 26 -d 23 -p SRM -e 168 -c 42 -i 50 -a 42 + -t 101.21388800055999 -s 23 -d 21 -p SRM -e 168 -c 42 -i 50 -a 42 - -t 101.21388800055999 -s 23 -d 21 -p SRM -e 168 -c 42 -i 50 -a 42 h -t 101.21388800055999 -s 23 -d 21 -p SRM -e 168 -c 42 -i 50 -a 42 + -t 101.21388800055999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 50 -a 42 - -t 101.21388800055999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 50 -a 42 h -t 101.21388800055999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 50 -a 42 r -t 101.21388800055999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 50 -a 42 r -t 101.22523200055998 -s 13 -d 11 -p SRM -e 168 -c 42 -i 50 -a 42 + -t 101.22523200055998 -s 11 -d 10 -p SRM -e 168 -c 42 -i 50 -a 42 - -t 101.22523200055998 -s 11 -d 10 -p SRM -e 168 -c 42 -i 50 -a 42 h -t 101.22523200055998 -s 11 -d 10 -p SRM -e 168 -c 42 -i 50 -a 42 + -t 101.22523200055998 -s 11 -d 14 -p SRM -e 168 -c 42 -i 50 -a 42 - -t 101.22523200055998 -s 11 -d 14 -p SRM -e 168 -c 42 -i 50 -a 42 h -t 101.22523200055998 -s 11 -d 14 -p SRM -e 168 -c 42 -i 50 -a 42 r -t 101.22523200055998 -s 13 -d 15 -p SRM -e 168 -c 42 -i 50 -a 42 r -t 101.22523200055998 -s 23 -d 21 -p SRM -e 168 -c 42 -i 50 -a 42 + -t 101.22523200055998 -s 21 -d 20 -p SRM -e 168 -c 42 -i 50 -a 42 - -t 101.22523200055998 -s 21 -d 20 -p SRM -e 168 -c 42 -i 50 -a 42 h -t 101.22523200055998 -s 21 -d 20 -p SRM -e 168 -c 42 -i 50 -a 42 + -t 101.22523200055998 -s 21 -d 24 -p SRM -e 168 -c 42 -i 50 -a 42 - -t 101.22523200055998 -s 21 -d 24 -p SRM -e 168 -c 42 -i 50 -a 42 h -t 101.22523200055998 -s 21 -d 24 -p SRM -e 168 -c 42 -i 50 -a 42 r -t 101.22523200055998 -s 23 -d 25 -p SRM -e 168 -c 42 -i 50 -a 42 r -t 101.23657600055998 -s 11 -d 10 -p SRM -e 168 -c 42 -i 50 -a 42 + -t 101.23657600055998 -s 10 -d 12 -p SRM -e 168 -c 42 -i 50 -a 42 - -t 101.23657600055998 -s 10 -d 12 -p SRM -e 168 -c 42 -i 50 -a 42 h -t 101.23657600055998 -s 10 -d 12 -p SRM -e 168 -c 42 -i 50 -a 42 r -t 101.23657600055998 -s 11 -d 14 -p SRM -e 168 -c 42 -i 50 -a 42 r -t 101.23657600055998 -s 21 -d 20 -p SRM -e 168 -c 42 -i 50 -a 42 + -t 101.23657600055998 -s 20 -d 22 -p SRM -e 168 -c 42 -i 50 -a 42 - -t 101.23657600055998 -s 20 -d 22 -p SRM -e 168 -c 42 -i 50 -a 42 h -t 101.23657600055998 -s 20 -d 22 -p SRM -e 168 -c 42 -i 50 -a 42 r -t 101.23657600055998 -s 21 -d 24 -p SRM -e 168 -c 42 -i 50 -a 42 r -t 101.24792000055997 -s 10 -d 12 -p SRM -e 168 -c 42 -i 50 -a 42 r -t 101.24792000055997 -s 20 -d 22 -p SRM -e 168 -c 42 -i 50 -a 42 + -t 102.23499751823999 -s 11 -d 10 -p SRM -e 168 -c 42 -i 51 -a 42 + -t 102.23499751823999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 51 -a 42 - -t 102.23499751823999 -s 11 -d 10 -p SRM -e 168 -c 42 -i 51 -a 42 - -t 102.23499751823999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 51 -a 42 h -t 102.23499751823999 -s 11 -d 10 -p SRM -e 168 -c 42 -i 51 -a 42 + -t 102.23499751823999 -s 11 -d 13 -p SRM -e 168 -c 42 -i 51 -a 42 - -t 102.23499751823999 -s 11 -d 13 -p SRM -e 168 -c 42 -i 51 -a 42 h -t 102.23499751823999 -s 11 -d 13 -p SRM -e 168 -c 42 -i 51 -a 42 + -t 102.23499751823999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 51 -a 42 - -t 102.23499751823999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 51 -a 42 h -t 102.23499751823999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 51 -a 42 h -t 102.23499751823999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 51 -a 42 + -t 102.23499751823999 -s 21 -d 23 -p SRM -e 168 -c 42 -i 51 -a 42 - -t 102.23499751823999 -s 21 -d 23 -p SRM -e 168 -c 42 -i 51 -a 42 h -t 102.23499751823999 -s 21 -d 23 -p SRM -e 168 -c 42 -i 51 -a 42 + -t 102.23499751823999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 51 -a 42 - -t 102.23499751823999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 51 -a 42 h -t 102.23499751823999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 51 -a 42 r -t 102.24634151823999 -s 11 -d 10 -p SRM -e 168 -c 42 -i 51 -a 42 + -t 102.24634151823999 -s 10 -d 12 -p SRM -e 168 -c 42 -i 51 -a 42 - -t 102.24634151823999 -s 10 -d 12 -p SRM -e 168 -c 42 -i 51 -a 42 h -t 102.24634151823999 -s 10 -d 12 -p SRM -e 168 -c 42 -i 51 -a 42 r -t 102.24634151823999 -s 11 -d 13 -p SRM -e 168 -c 42 -i 51 -a 42 + -t 102.24634151823999 -s 13 -d 15 -p SRM -e 168 -c 42 -i 51 -a 42 - -t 102.24634151823999 -s 13 -d 15 -p SRM -e 168 -c 42 -i 51 -a 42 h -t 102.24634151823999 -s 13 -d 15 -p SRM -e 168 -c 42 -i 51 -a 42 + -t 102.24634151823999 -s 13 -d 16 -p SRM -e 168 -c 42 -i 51 -a 42 - -t 102.24634151823999 -s 13 -d 16 -p SRM -e 168 -c 42 -i 51 -a 42 h -t 102.24634151823999 -s 13 -d 16 -p SRM -e 168 -c 42 -i 51 -a 42 r -t 102.24634151823999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 51 -a 42 r -t 102.24634151823999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 51 -a 42 + -t 102.24634151823999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 51 -a 42 - -t 102.24634151823999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 51 -a 42 h -t 102.24634151823999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 51 -a 42 r -t 102.24634151823999 -s 21 -d 23 -p SRM -e 168 -c 42 -i 51 -a 42 + -t 102.24634151823999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 51 -a 42 - -t 102.24634151823999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 51 -a 42 h -t 102.24634151823999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 51 -a 42 + -t 102.24634151823999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 51 -a 42 - -t 102.24634151823999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 51 -a 42 h -t 102.24634151823999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 51 -a 42 r -t 102.24634151823999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 51 -a 42 r -t 102.25768551823998 -s 10 -d 12 -p SRM -e 168 -c 42 -i 51 -a 42 r -t 102.25768551823998 -s 13 -d 15 -p SRM -e 168 -c 42 -i 51 -a 42 r -t 102.25768551823998 -s 13 -d 16 -p SRM -e 168 -c 42 -i 51 -a 42 + -t 102.25768551823998 -s 16 -d 17 -p SRM -e 168 -c 42 -i 51 -a 42 - -t 102.25768551823998 -s 16 -d 17 -p SRM -e 168 -c 42 -i 51 -a 42 h -t 102.25768551823998 -s 16 -d 17 -p SRM -e 168 -c 42 -i 51 -a 42 + -t 102.25768551823998 -s 16 -d 18 -p SRM -e 168 -c 42 -i 51 -a 42 - -t 102.25768551823998 -s 16 -d 18 -p SRM -e 168 -c 42 -i 51 -a 42 h -t 102.25768551823998 -s 16 -d 18 -p SRM -e 168 -c 42 -i 51 -a 42 r -t 102.25768551823998 -s 20 -d 22 -p SRM -e 168 -c 42 -i 51 -a 42 r -t 102.25768551823998 -s 23 -d 25 -p SRM -e 168 -c 42 -i 51 -a 42 r -t 102.25768551823998 -s 23 -d 26 -p SRM -e 168 -c 42 -i 51 -a 42 + -t 102.25768551823998 -s 26 -d 27 -p SRM -e 168 -c 42 -i 51 -a 42 - -t 102.25768551823998 -s 26 -d 27 -p SRM -e 168 -c 42 -i 51 -a 42 h -t 102.25768551823998 -s 26 -d 27 -p SRM -e 168 -c 42 -i 51 -a 42 + -t 102.25768551823998 -s 26 -d 28 -p SRM -e 168 -c 42 -i 51 -a 42 - -t 102.25768551823998 -s 26 -d 28 -p SRM -e 168 -c 42 -i 51 -a 42 h -t 102.25768551823998 -s 26 -d 28 -p SRM -e 168 -c 42 -i 51 -a 42 r -t 102.26902951823998 -s 16 -d 17 -p SRM -e 168 -c 42 -i 51 -a 42 r -t 102.26902951823998 -s 16 -d 18 -p SRM -e 168 -c 42 -i 51 -a 42 r -t 102.26902951823998 -s 26 -d 27 -p SRM -e 168 -c 42 -i 51 -a 42 r -t 102.26902951823998 -s 26 -d 28 -p SRM -e 168 -c 42 -i 51 -a 42 + -t 105.06500422700999 -s 18 -d 16 -p SRM -e 168 -c 42 -i 52 -a 42 + -t 105.06500422700999 -s 28 -d 26 -p SRM -e 168 -c 42 -i 52 -a 42 - -t 105.06500422700999 -s 18 -d 16 -p SRM -e 168 -c 42 -i 52 -a 42 - -t 105.06500422700999 -s 28 -d 26 -p SRM -e 168 -c 42 -i 52 -a 42 h -t 105.06500422700999 -s 18 -d 16 -p SRM -e 168 -c 42 -i 52 -a 42 h -t 105.06500422700999 -s 28 -d 26 -p SRM -e 168 -c 42 -i 52 -a 42 r -t 105.07634822700999 -s 18 -d 16 -p SRM -e 168 -c 42 -i 52 -a 42 + -t 105.07634822700999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 52 -a 42 - -t 105.07634822700999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 52 -a 42 h -t 105.07634822700999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 52 -a 42 + -t 105.07634822700999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 52 -a 42 - -t 105.07634822700999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 52 -a 42 h -t 105.07634822700999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 52 -a 42 r -t 105.07634822700999 -s 28 -d 26 -p SRM -e 168 -c 42 -i 52 -a 42 + -t 105.07634822700999 -s 26 -d 23 -p SRM -e 168 -c 42 -i 52 -a 42 - -t 105.07634822700999 -s 26 -d 23 -p SRM -e 168 -c 42 -i 52 -a 42 h -t 105.07634822700999 -s 26 -d 23 -p SRM -e 168 -c 42 -i 52 -a 42 + -t 105.07634822700999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 52 -a 42 - -t 105.07634822700999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 52 -a 42 h -t 105.07634822700999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 52 -a 42 r -t 105.08769222700998 -s 16 -d 13 -p SRM -e 168 -c 42 -i 52 -a 42 + -t 105.08769222700998 -s 13 -d 11 -p SRM -e 168 -c 42 -i 52 -a 42 - -t 105.08769222700998 -s 13 -d 11 -p SRM -e 168 -c 42 -i 52 -a 42 h -t 105.08769222700998 -s 13 -d 11 -p SRM -e 168 -c 42 -i 52 -a 42 + -t 105.08769222700998 -s 13 -d 15 -p SRM -e 168 -c 42 -i 52 -a 42 - -t 105.08769222700998 -s 13 -d 15 -p SRM -e 168 -c 42 -i 52 -a 42 h -t 105.08769222700998 -s 13 -d 15 -p SRM -e 168 -c 42 -i 52 -a 42 r -t 105.08769222700998 -s 16 -d 17 -p SRM -e 168 -c 42 -i 52 -a 42 r -t 105.08769222700998 -s 26 -d 23 -p SRM -e 168 -c 42 -i 52 -a 42 + -t 105.08769222700998 -s 23 -d 21 -p SRM -e 168 -c 42 -i 52 -a 42 - -t 105.08769222700998 -s 23 -d 21 -p SRM -e 168 -c 42 -i 52 -a 42 h -t 105.08769222700998 -s 23 -d 21 -p SRM -e 168 -c 42 -i 52 -a 42 + -t 105.08769222700998 -s 23 -d 25 -p SRM -e 168 -c 42 -i 52 -a 42 - -t 105.08769222700998 -s 23 -d 25 -p SRM -e 168 -c 42 -i 52 -a 42 h -t 105.08769222700998 -s 23 -d 25 -p SRM -e 168 -c 42 -i 52 -a 42 r -t 105.08769222700998 -s 26 -d 27 -p SRM -e 168 -c 42 -i 52 -a 42 r -t 105.09903622700998 -s 13 -d 11 -p SRM -e 168 -c 42 -i 52 -a 42 + -t 105.09903622700998 -s 11 -d 10 -p SRM -e 168 -c 42 -i 52 -a 42 - -t 105.09903622700998 -s 11 -d 10 -p SRM -e 168 -c 42 -i 52 -a 42 h -t 105.09903622700998 -s 11 -d 10 -p SRM -e 168 -c 42 -i 52 -a 42 + -t 105.09903622700998 -s 11 -d 14 -p SRM -e 168 -c 42 -i 52 -a 42 - -t 105.09903622700998 -s 11 -d 14 -p SRM -e 168 -c 42 -i 52 -a 42 h -t 105.09903622700998 -s 11 -d 14 -p SRM -e 168 -c 42 -i 52 -a 42 r -t 105.09903622700998 -s 13 -d 15 -p SRM -e 168 -c 42 -i 52 -a 42 r -t 105.09903622700998 -s 23 -d 21 -p SRM -e 168 -c 42 -i 52 -a 42 + -t 105.09903622700998 -s 21 -d 20 -p SRM -e 168 -c 42 -i 52 -a 42 - -t 105.09903622700998 -s 21 -d 20 -p SRM -e 168 -c 42 -i 52 -a 42 h -t 105.09903622700998 -s 21 -d 20 -p SRM -e 168 -c 42 -i 52 -a 42 + -t 105.09903622700998 -s 21 -d 24 -p SRM -e 168 -c 42 -i 52 -a 42 - -t 105.09903622700998 -s 21 -d 24 -p SRM -e 168 -c 42 -i 52 -a 42 h -t 105.09903622700998 -s 21 -d 24 -p SRM -e 168 -c 42 -i 52 -a 42 r -t 105.09903622700998 -s 23 -d 25 -p SRM -e 168 -c 42 -i 52 -a 42 r -t 105.11038022700997 -s 11 -d 10 -p SRM -e 168 -c 42 -i 52 -a 42 + -t 105.11038022700997 -s 10 -d 12 -p SRM -e 168 -c 42 -i 52 -a 42 - -t 105.11038022700997 -s 10 -d 12 -p SRM -e 168 -c 42 -i 52 -a 42 h -t 105.11038022700997 -s 10 -d 12 -p SRM -e 168 -c 42 -i 52 -a 42 r -t 105.11038022700997 -s 11 -d 14 -p SRM -e 168 -c 42 -i 52 -a 42 r -t 105.11038022700997 -s 21 -d 20 -p SRM -e 168 -c 42 -i 52 -a 42 + -t 105.11038022700997 -s 20 -d 22 -p SRM -e 168 -c 42 -i 52 -a 42 - -t 105.11038022700997 -s 20 -d 22 -p SRM -e 168 -c 42 -i 52 -a 42 h -t 105.11038022700997 -s 20 -d 22 -p SRM -e 168 -c 42 -i 52 -a 42 r -t 105.11038022700997 -s 21 -d 24 -p SRM -e 168 -c 42 -i 52 -a 42 r -t 105.12172422700996 -s 10 -d 12 -p SRM -e 168 -c 42 -i 52 -a 42 r -t 105.12172422700996 -s 20 -d 22 -p SRM -e 168 -c 42 -i 52 -a 42 + -t 112.98574873855776 -s 13 -d 11 -p cbr -e 1280 -c 3 -i 53 -a 3 + -t 112.98574873855776 -s 23 -d 21 -p cbr -e 1280 -c 3 -i 53 -a 3 - -t 112.98574873855776 -s 13 -d 11 -p cbr -e 1280 -c 3 -i 53 -a 3 - -t 112.98574873855776 -s 23 -d 21 -p cbr -e 1280 -c 3 -i 53 -a 3 h -t 112.98574873855776 -s 13 -d 11 -p cbr -e 1280 -c 3 -i 53 -a 3 + -t 112.98574873855776 -s 13 -d 15 -p cbr -e 1280 -c 3 -i 53 -a 3 - -t 112.98574873855776 -s 13 -d 15 -p cbr -e 1280 -c 3 -i 53 -a 3 h -t 112.98574873855776 -s 13 -d 15 -p cbr -e 1280 -c 3 -i 53 -a 3 + -t 112.98574873855776 -s 13 -d 16 -p cbr -e 1280 -c 3 -i 53 -a 3 - -t 112.98574873855776 -s 13 -d 16 -p cbr -e 1280 -c 3 -i 53 -a 3 h -t 112.98574873855776 -s 13 -d 16 -p cbr -e 1280 -c 3 -i 53 -a 3 h -t 112.98574873855776 -s 23 -d 21 -p cbr -e 1280 -c 3 -i 53 -a 3 + -t 112.98574873855776 -s 23 -d 25 -p cbr -e 1280 -c 3 -i 53 -a 3 - -t 112.98574873855776 -s 23 -d 25 -p cbr -e 1280 -c 3 -i 53 -a 3 h -t 112.98574873855776 -s 23 -d 25 -p cbr -e 1280 -c 3 -i 53 -a 3 + -t 112.98574873855776 -s 23 -d 26 -p cbr -e 1280 -c 3 -i 53 -a 3 - -t 112.98574873855776 -s 23 -d 26 -p cbr -e 1280 -c 3 -i 53 -a 3 h -t 112.98574873855776 -s 23 -d 26 -p cbr -e 1280 -c 3 -i 53 -a 3 r -t 113.00598873855776 -s 13 -d 11 -p cbr -e 1280 -c 3 -i 53 -a 3 + -t 113.00598873855776 -s 11 -d 10 -p cbr -e 1280 -c 3 -i 53 -a 3 - -t 113.00598873855776 -s 11 -d 10 -p cbr -e 1280 -c 3 -i 53 -a 3 h -t 113.00598873855776 -s 11 -d 10 -p cbr -e 1280 -c 3 -i 53 -a 3 + -t 113.00598873855776 -s 11 -d 14 -p cbr -e 1280 -c 3 -i 53 -a 3 - -t 113.00598873855776 -s 11 -d 14 -p cbr -e 1280 -c 3 -i 53 -a 3 h -t 113.00598873855776 -s 11 -d 14 -p cbr -e 1280 -c 3 -i 53 -a 3 r -t 113.00598873855776 -s 13 -d 15 -p cbr -e 1280 -c 3 -i 53 -a 3 r -t 113.00598873855776 -s 13 -d 16 -p cbr -e 1280 -c 3 -i 53 -a 3 + -t 113.00598873855776 -s 16 -d 17 -p cbr -e 1280 -c 3 -i 53 -a 3 - -t 113.00598873855776 -s 16 -d 17 -p cbr -e 1280 -c 3 -i 53 -a 3 h -t 113.00598873855776 -s 16 -d 17 -p cbr -e 1280 -c 3 -i 53 -a 3 + -t 113.00598873855776 -s 16 -d 18 -p cbr -e 1280 -c 3 -i 53 -a 3 - -t 113.00598873855776 -s 16 -d 18 -p cbr -e 1280 -c 3 -i 53 -a 3 h -t 113.00598873855776 -s 16 -d 18 -p cbr -e 1280 -c 3 -i 53 -a 3 r -t 113.00598873855776 -s 23 -d 21 -p cbr -e 1280 -c 3 -i 53 -a 3 + -t 113.00598873855776 -s 21 -d 20 -p cbr -e 1280 -c 3 -i 53 -a 3 - -t 113.00598873855776 -s 21 -d 20 -p cbr -e 1280 -c 3 -i 53 -a 3 h -t 113.00598873855776 -s 21 -d 20 -p cbr -e 1280 -c 3 -i 53 -a 3 + -t 113.00598873855776 -s 21 -d 24 -p cbr -e 1280 -c 3 -i 53 -a 3 - -t 113.00598873855776 -s 21 -d 24 -p cbr -e 1280 -c 3 -i 53 -a 3 h -t 113.00598873855776 -s 21 -d 24 -p cbr -e 1280 -c 3 -i 53 -a 3 r -t 113.00598873855776 -s 23 -d 25 -p cbr -e 1280 -c 3 -i 53 -a 3 r -t 113.00598873855776 -s 23 -d 26 -p cbr -e 1280 -c 3 -i 53 -a 3 + -t 113.00598873855776 -s 26 -d 27 -p cbr -e 1280 -c 3 -i 53 -a 3 - -t 113.00598873855776 -s 26 -d 27 -p cbr -e 1280 -c 3 -i 53 -a 3 h -t 113.00598873855776 -s 26 -d 27 -p cbr -e 1280 -c 3 -i 53 -a 3 + -t 113.00598873855776 -s 26 -d 28 -p cbr -e 1280 -c 3 -i 53 -a 3 - -t 113.00598873855776 -s 26 -d 28 -p cbr -e 1280 -c 3 -i 53 -a 3 h -t 113.00598873855776 -s 26 -d 28 -p cbr -e 1280 -c 3 -i 53 -a 3 r -t 113.02622873855776 -s 11 -d 10 -p cbr -e 1280 -c 3 -i 53 -a 3 + -t 113.02622873855776 -s 10 -d 12 -p cbr -e 1280 -c 3 -i 53 -a 3 - -t 113.02622873855776 -s 10 -d 12 -p cbr -e 1280 -c 3 -i 53 -a 3 h -t 113.02622873855776 -s 10 -d 12 -p cbr -e 1280 -c 3 -i 53 -a 3 r -t 113.02622873855776 -s 11 -d 14 -p cbr -e 1280 -c 3 -i 53 -a 3 r -t 113.02622873855776 -s 16 -d 17 -p cbr -e 1280 -c 3 -i 53 -a 3 r -t 113.02622873855776 -s 16 -d 18 -p cbr -e 1280 -c 3 -i 53 -a 3 r -t 113.02622873855776 -s 21 -d 20 -p cbr -e 1280 -c 3 -i 53 -a 3 + -t 113.02622873855776 -s 20 -d 22 -p cbr -e 1280 -c 3 -i 53 -a 3 - -t 113.02622873855776 -s 20 -d 22 -p cbr -e 1280 -c 3 -i 53 -a 3 h -t 113.02622873855776 -s 20 -d 22 -p cbr -e 1280 -c 3 -i 53 -a 3 r -t 113.02622873855776 -s 21 -d 24 -p cbr -e 1280 -c 3 -i 53 -a 3 r -t 113.02622873855776 -s 26 -d 27 -p cbr -e 1280 -c 3 -i 53 -a 3 r -t 113.02622873855776 -s 26 -d 28 -p cbr -e 1280 -c 3 -i 53 -a 3 r -t 113.04646873855776 -s 10 -d 12 -p cbr -e 1280 -c 3 -i 53 -a 3 r -t 113.04646873855776 -s 20 -d 22 -p cbr -e 1280 -c 3 -i 53 -a 3 + -t 116.08300653639 -s 14 -d 11 -p SRM -e 168 -c 42 -i 54 -a 42 + -t 116.08300653639 -s 24 -d 21 -p SRM -e 168 -c 42 -i 54 -a 42 - -t 116.08300653639 -s 14 -d 11 -p SRM -e 168 -c 42 -i 54 -a 42 - -t 116.08300653639 -s 24 -d 21 -p SRM -e 168 -c 42 -i 54 -a 42 h -t 116.08300653639 -s 14 -d 11 -p SRM -e 168 -c 42 -i 54 -a 42 h -t 116.08300653639 -s 24 -d 21 -p SRM -e 168 -c 42 -i 54 -a 42 r -t 116.09435053639 -s 14 -d 11 -p SRM -e 168 -c 42 -i 54 -a 42 + -t 116.09435053639 -s 11 -d 10 -p SRM -e 168 -c 42 -i 54 -a 42 - -t 116.09435053639 -s 11 -d 10 -p SRM -e 168 -c 42 -i 54 -a 42 h -t 116.09435053639 -s 11 -d 10 -p SRM -e 168 -c 42 -i 54 -a 42 + -t 116.09435053639 -s 11 -d 13 -p SRM -e 168 -c 42 -i 54 -a 42 - -t 116.09435053639 -s 11 -d 13 -p SRM -e 168 -c 42 -i 54 -a 42 h -t 116.09435053639 -s 11 -d 13 -p SRM -e 168 -c 42 -i 54 -a 42 r -t 116.09435053639 -s 24 -d 21 -p SRM -e 168 -c 42 -i 54 -a 42 + -t 116.09435053639 -s 21 -d 20 -p SRM -e 168 -c 42 -i 54 -a 42 - -t 116.09435053639 -s 21 -d 20 -p SRM -e 168 -c 42 -i 54 -a 42 h -t 116.09435053639 -s 21 -d 20 -p SRM -e 168 -c 42 -i 54 -a 42 + -t 116.09435053639 -s 21 -d 23 -p SRM -e 168 -c 42 -i 54 -a 42 - -t 116.09435053639 -s 21 -d 23 -p SRM -e 168 -c 42 -i 54 -a 42 h -t 116.09435053639 -s 21 -d 23 -p SRM -e 168 -c 42 -i 54 -a 42 r -t 116.10569453638999 -s 11 -d 10 -p SRM -e 168 -c 42 -i 54 -a 42 + -t 116.10569453638999 -s 10 -d 12 -p SRM -e 168 -c 42 -i 54 -a 42 - -t 116.10569453638999 -s 10 -d 12 -p SRM -e 168 -c 42 -i 54 -a 42 h -t 116.10569453638999 -s 10 -d 12 -p SRM -e 168 -c 42 -i 54 -a 42 r -t 116.10569453638999 -s 11 -d 13 -p SRM -e 168 -c 42 -i 54 -a 42 + -t 116.10569453638999 -s 13 -d 15 -p SRM -e 168 -c 42 -i 54 -a 42 - -t 116.10569453638999 -s 13 -d 15 -p SRM -e 168 -c 42 -i 54 -a 42 h -t 116.10569453638999 -s 13 -d 15 -p SRM -e 168 -c 42 -i 54 -a 42 + -t 116.10569453638999 -s 13 -d 16 -p SRM -e 168 -c 42 -i 54 -a 42 - -t 116.10569453638999 -s 13 -d 16 -p SRM -e 168 -c 42 -i 54 -a 42 h -t 116.10569453638999 -s 13 -d 16 -p SRM -e 168 -c 42 -i 54 -a 42 r -t 116.10569453638999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 54 -a 42 + -t 116.10569453638999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 54 -a 42 - -t 116.10569453638999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 54 -a 42 h -t 116.10569453638999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 54 -a 42 r -t 116.10569453638999 -s 21 -d 23 -p SRM -e 168 -c 42 -i 54 -a 42 + -t 116.10569453638999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 54 -a 42 - -t 116.10569453638999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 54 -a 42 h -t 116.10569453638999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 54 -a 42 + -t 116.10569453638999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 54 -a 42 - -t 116.10569453638999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 54 -a 42 h -t 116.10569453638999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 54 -a 42 r -t 116.11703853638998 -s 10 -d 12 -p SRM -e 168 -c 42 -i 54 -a 42 r -t 116.11703853638998 -s 13 -d 15 -p SRM -e 168 -c 42 -i 54 -a 42 r -t 116.11703853638998 -s 13 -d 16 -p SRM -e 168 -c 42 -i 54 -a 42 + -t 116.11703853638998 -s 16 -d 17 -p SRM -e 168 -c 42 -i 54 -a 42 - -t 116.11703853638998 -s 16 -d 17 -p SRM -e 168 -c 42 -i 54 -a 42 h -t 116.11703853638998 -s 16 -d 17 -p SRM -e 168 -c 42 -i 54 -a 42 + -t 116.11703853638998 -s 16 -d 18 -p SRM -e 168 -c 42 -i 54 -a 42 - -t 116.11703853638998 -s 16 -d 18 -p SRM -e 168 -c 42 -i 54 -a 42 h -t 116.11703853638998 -s 16 -d 18 -p SRM -e 168 -c 42 -i 54 -a 42 r -t 116.11703853638998 -s 20 -d 22 -p SRM -e 168 -c 42 -i 54 -a 42 r -t 116.11703853638998 -s 23 -d 25 -p SRM -e 168 -c 42 -i 54 -a 42 r -t 116.11703853638998 -s 23 -d 26 -p SRM -e 168 -c 42 -i 54 -a 42 + -t 116.11703853638998 -s 26 -d 27 -p SRM -e 168 -c 42 -i 54 -a 42 - -t 116.11703853638998 -s 26 -d 27 -p SRM -e 168 -c 42 -i 54 -a 42 h -t 116.11703853638998 -s 26 -d 27 -p SRM -e 168 -c 42 -i 54 -a 42 + -t 116.11703853638998 -s 26 -d 28 -p SRM -e 168 -c 42 -i 54 -a 42 - -t 116.11703853638998 -s 26 -d 28 -p SRM -e 168 -c 42 -i 54 -a 42 h -t 116.11703853638998 -s 26 -d 28 -p SRM -e 168 -c 42 -i 54 -a 42 r -t 116.12838253638998 -s 16 -d 17 -p SRM -e 168 -c 42 -i 54 -a 42 r -t 116.12838253638998 -s 16 -d 18 -p SRM -e 168 -c 42 -i 54 -a 42 r -t 116.12838253638998 -s 26 -d 27 -p SRM -e 168 -c 42 -i 54 -a 42 r -t 116.12838253638998 -s 26 -d 28 -p SRM -e 168 -c 42 -i 54 -a 42 + -t 116.30923205790999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 55 -a 42 + -t 116.30923205790999 -s 26 -d 23 -p SRM -e 168 -c 42 -i 55 -a 42 - -t 116.30923205790999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 55 -a 42 - -t 116.30923205790999 -s 26 -d 23 -p SRM -e 168 -c 42 -i 55 -a 42 h -t 116.30923205790999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 55 -a 42 + -t 116.30923205790999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 55 -a 42 - -t 116.30923205790999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 55 -a 42 h -t 116.30923205790999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 55 -a 42 + -t 116.30923205790999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 55 -a 42 - -t 116.30923205790999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 55 -a 42 h -t 116.30923205790999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 55 -a 42 h -t 116.30923205790999 -s 26 -d 23 -p SRM -e 168 -c 42 -i 55 -a 42 + -t 116.30923205790999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 55 -a 42 - -t 116.30923205790999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 55 -a 42 h -t 116.30923205790999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 55 -a 42 + -t 116.30923205790999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 55 -a 42 - -t 116.30923205790999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 55 -a 42 h -t 116.30923205790999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 55 -a 42 r -t 116.32057605790999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 55 -a 42 + -t 116.32057605790999 -s 13 -d 11 -p SRM -e 168 -c 42 -i 55 -a 42 - -t 116.32057605790999 -s 13 -d 11 -p SRM -e 168 -c 42 -i 55 -a 42 h -t 116.32057605790999 -s 13 -d 11 -p SRM -e 168 -c 42 -i 55 -a 42 + -t 116.32057605790999 -s 13 -d 15 -p SRM -e 168 -c 42 -i 55 -a 42 - -t 116.32057605790999 -s 13 -d 15 -p SRM -e 168 -c 42 -i 55 -a 42 h -t 116.32057605790999 -s 13 -d 15 -p SRM -e 168 -c 42 -i 55 -a 42 r -t 116.32057605790999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 55 -a 42 r -t 116.32057605790999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 55 -a 42 r -t 116.32057605790999 -s 26 -d 23 -p SRM -e 168 -c 42 -i 55 -a 42 + -t 116.32057605790999 -s 23 -d 21 -p SRM -e 168 -c 42 -i 55 -a 42 - -t 116.32057605790999 -s 23 -d 21 -p SRM -e 168 -c 42 -i 55 -a 42 h -t 116.32057605790999 -s 23 -d 21 -p SRM -e 168 -c 42 -i 55 -a 42 + -t 116.32057605790999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 55 -a 42 - -t 116.32057605790999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 55 -a 42 h -t 116.32057605790999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 55 -a 42 r -t 116.32057605790999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 55 -a 42 r -t 116.32057605790999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 55 -a 42 r -t 116.33192005790998 -s 13 -d 11 -p SRM -e 168 -c 42 -i 55 -a 42 + -t 116.33192005790998 -s 11 -d 10 -p SRM -e 168 -c 42 -i 55 -a 42 - -t 116.33192005790998 -s 11 -d 10 -p SRM -e 168 -c 42 -i 55 -a 42 h -t 116.33192005790998 -s 11 -d 10 -p SRM -e 168 -c 42 -i 55 -a 42 + -t 116.33192005790998 -s 11 -d 14 -p SRM -e 168 -c 42 -i 55 -a 42 - -t 116.33192005790998 -s 11 -d 14 -p SRM -e 168 -c 42 -i 55 -a 42 h -t 116.33192005790998 -s 11 -d 14 -p SRM -e 168 -c 42 -i 55 -a 42 r -t 116.33192005790998 -s 13 -d 15 -p SRM -e 168 -c 42 -i 55 -a 42 r -t 116.33192005790998 -s 23 -d 21 -p SRM -e 168 -c 42 -i 55 -a 42 + -t 116.33192005790998 -s 21 -d 20 -p SRM -e 168 -c 42 -i 55 -a 42 - -t 116.33192005790998 -s 21 -d 20 -p SRM -e 168 -c 42 -i 55 -a 42 h -t 116.33192005790998 -s 21 -d 20 -p SRM -e 168 -c 42 -i 55 -a 42 + -t 116.33192005790998 -s 21 -d 24 -p SRM -e 168 -c 42 -i 55 -a 42 - -t 116.33192005790998 -s 21 -d 24 -p SRM -e 168 -c 42 -i 55 -a 42 h -t 116.33192005790998 -s 21 -d 24 -p SRM -e 168 -c 42 -i 55 -a 42 r -t 116.33192005790998 -s 23 -d 25 -p SRM -e 168 -c 42 -i 55 -a 42 r -t 116.34326405790998 -s 11 -d 10 -p SRM -e 168 -c 42 -i 55 -a 42 + -t 116.34326405790998 -s 10 -d 12 -p SRM -e 168 -c 42 -i 55 -a 42 - -t 116.34326405790998 -s 10 -d 12 -p SRM -e 168 -c 42 -i 55 -a 42 h -t 116.34326405790998 -s 10 -d 12 -p SRM -e 168 -c 42 -i 55 -a 42 r -t 116.34326405790998 -s 11 -d 14 -p SRM -e 168 -c 42 -i 55 -a 42 r -t 116.34326405790998 -s 21 -d 20 -p SRM -e 168 -c 42 -i 55 -a 42 + -t 116.34326405790998 -s 20 -d 22 -p SRM -e 168 -c 42 -i 55 -a 42 - -t 116.34326405790998 -s 20 -d 22 -p SRM -e 168 -c 42 -i 55 -a 42 h -t 116.34326405790998 -s 20 -d 22 -p SRM -e 168 -c 42 -i 55 -a 42 r -t 116.34326405790998 -s 21 -d 24 -p SRM -e 168 -c 42 -i 55 -a 42 r -t 116.35460805790997 -s 10 -d 12 -p SRM -e 168 -c 42 -i 55 -a 42 r -t 116.35460805790997 -s 20 -d 22 -p SRM -e 168 -c 42 -i 55 -a 42 + -t 119.29061256107001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 56 -a 42 + -t 119.29061256107001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 56 -a 42 - -t 119.29061256107001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 56 -a 42 - -t 119.29061256107001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 56 -a 42 h -t 119.29061256107001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 56 -a 42 + -t 119.29061256107001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 56 -a 42 - -t 119.29061256107001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 56 -a 42 h -t 119.29061256107001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 56 -a 42 + -t 119.29061256107001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 56 -a 42 - -t 119.29061256107001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 56 -a 42 h -t 119.29061256107001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 56 -a 42 h -t 119.29061256107001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 56 -a 42 + -t 119.29061256107001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 56 -a 42 - -t 119.29061256107001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 56 -a 42 h -t 119.29061256107001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 56 -a 42 + -t 119.29061256107001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 56 -a 42 - -t 119.29061256107001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 56 -a 42 h -t 119.29061256107001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 56 -a 42 r -t 119.30195656107 -s 13 -d 11 -p SRM -e 168 -c 42 -i 56 -a 42 + -t 119.30195656107 -s 11 -d 10 -p SRM -e 168 -c 42 -i 56 -a 42 - -t 119.30195656107 -s 11 -d 10 -p SRM -e 168 -c 42 -i 56 -a 42 h -t 119.30195656107 -s 11 -d 10 -p SRM -e 168 -c 42 -i 56 -a 42 + -t 119.30195656107 -s 11 -d 14 -p SRM -e 168 -c 42 -i 56 -a 42 - -t 119.30195656107 -s 11 -d 14 -p SRM -e 168 -c 42 -i 56 -a 42 h -t 119.30195656107 -s 11 -d 14 -p SRM -e 168 -c 42 -i 56 -a 42 r -t 119.30195656107 -s 13 -d 15 -p SRM -e 168 -c 42 -i 56 -a 42 r -t 119.30195656107 -s 13 -d 16 -p SRM -e 168 -c 42 -i 56 -a 42 + -t 119.30195656107 -s 16 -d 17 -p SRM -e 168 -c 42 -i 56 -a 42 - -t 119.30195656107 -s 16 -d 17 -p SRM -e 168 -c 42 -i 56 -a 42 h -t 119.30195656107 -s 16 -d 17 -p SRM -e 168 -c 42 -i 56 -a 42 + -t 119.30195656107 -s 16 -d 18 -p SRM -e 168 -c 42 -i 56 -a 42 - -t 119.30195656107 -s 16 -d 18 -p SRM -e 168 -c 42 -i 56 -a 42 h -t 119.30195656107 -s 16 -d 18 -p SRM -e 168 -c 42 -i 56 -a 42 r -t 119.30195656107 -s 23 -d 21 -p SRM -e 168 -c 42 -i 56 -a 42 + -t 119.30195656107 -s 21 -d 20 -p SRM -e 168 -c 42 -i 56 -a 42 - -t 119.30195656107 -s 21 -d 20 -p SRM -e 168 -c 42 -i 56 -a 42 h -t 119.30195656107 -s 21 -d 20 -p SRM -e 168 -c 42 -i 56 -a 42 + -t 119.30195656107 -s 21 -d 24 -p SRM -e 168 -c 42 -i 56 -a 42 - -t 119.30195656107 -s 21 -d 24 -p SRM -e 168 -c 42 -i 56 -a 42 h -t 119.30195656107 -s 21 -d 24 -p SRM -e 168 -c 42 -i 56 -a 42 r -t 119.30195656107 -s 23 -d 25 -p SRM -e 168 -c 42 -i 56 -a 42 r -t 119.30195656107 -s 23 -d 26 -p SRM -e 168 -c 42 -i 56 -a 42 + -t 119.30195656107 -s 26 -d 27 -p SRM -e 168 -c 42 -i 56 -a 42 - -t 119.30195656107 -s 26 -d 27 -p SRM -e 168 -c 42 -i 56 -a 42 h -t 119.30195656107 -s 26 -d 27 -p SRM -e 168 -c 42 -i 56 -a 42 + -t 119.30195656107 -s 26 -d 28 -p SRM -e 168 -c 42 -i 56 -a 42 - -t 119.30195656107 -s 26 -d 28 -p SRM -e 168 -c 42 -i 56 -a 42 h -t 119.30195656107 -s 26 -d 28 -p SRM -e 168 -c 42 -i 56 -a 42 r -t 119.31330056106999 -s 11 -d 10 -p SRM -e 168 -c 42 -i 56 -a 42 + -t 119.31330056106999 -s 10 -d 12 -p SRM -e 168 -c 42 -i 56 -a 42 - -t 119.31330056106999 -s 10 -d 12 -p SRM -e 168 -c 42 -i 56 -a 42 h -t 119.31330056106999 -s 10 -d 12 -p SRM -e 168 -c 42 -i 56 -a 42 r -t 119.31330056106999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 56 -a 42 r -t 119.31330056106999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 56 -a 42 r -t 119.31330056106999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 56 -a 42 r -t 119.31330056106999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 56 -a 42 + -t 119.31330056106999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 56 -a 42 - -t 119.31330056106999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 56 -a 42 h -t 119.31330056106999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 56 -a 42 r -t 119.31330056106999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 56 -a 42 r -t 119.31330056106999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 56 -a 42 r -t 119.31330056106999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 56 -a 42 r -t 119.32464456106999 -s 10 -d 12 -p SRM -e 168 -c 42 -i 56 -a 42 r -t 119.32464456106999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 56 -a 42 + -t 120.18064624429 -s 12 -d 10 -p SRM -e 168 -c 42 -i 57 -a 42 + -t 120.18064624429 -s 22 -d 20 -p SRM -e 168 -c 42 -i 57 -a 42 - -t 120.18064624429 -s 12 -d 10 -p SRM -e 168 -c 42 -i 57 -a 42 - -t 120.18064624429 -s 22 -d 20 -p SRM -e 168 -c 42 -i 57 -a 42 h -t 120.18064624429 -s 12 -d 10 -p SRM -e 168 -c 42 -i 57 -a 42 h -t 120.18064624429 -s 22 -d 20 -p SRM -e 168 -c 42 -i 57 -a 42 r -t 120.19199024429 -s 12 -d 10 -p SRM -e 168 -c 42 -i 57 -a 42 + -t 120.19199024429 -s 10 -d 11 -p SRM -e 168 -c 42 -i 57 -a 42 - -t 120.19199024429 -s 10 -d 11 -p SRM -e 168 -c 42 -i 57 -a 42 h -t 120.19199024429 -s 10 -d 11 -p SRM -e 168 -c 42 -i 57 -a 42 r -t 120.19199024429 -s 22 -d 20 -p SRM -e 168 -c 42 -i 57 -a 42 + -t 120.19199024429 -s 20 -d 21 -p SRM -e 168 -c 42 -i 57 -a 42 - -t 120.19199024429 -s 20 -d 21 -p SRM -e 168 -c 42 -i 57 -a 42 h -t 120.19199024429 -s 20 -d 21 -p SRM -e 168 -c 42 -i 57 -a 42 r -t 120.20333424428999 -s 10 -d 11 -p SRM -e 168 -c 42 -i 57 -a 42 + -t 120.20333424428999 -s 11 -d 13 -p SRM -e 168 -c 42 -i 57 -a 42 - -t 120.20333424428999 -s 11 -d 13 -p SRM -e 168 -c 42 -i 57 -a 42 h -t 120.20333424428999 -s 11 -d 13 -p SRM -e 168 -c 42 -i 57 -a 42 + -t 120.20333424428999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 57 -a 42 - -t 120.20333424428999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 57 -a 42 h -t 120.20333424428999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 57 -a 42 r -t 120.20333424428999 -s 20 -d 21 -p SRM -e 168 -c 42 -i 57 -a 42 + -t 120.20333424428999 -s 21 -d 23 -p SRM -e 168 -c 42 -i 57 -a 42 - -t 120.20333424428999 -s 21 -d 23 -p SRM -e 168 -c 42 -i 57 -a 42 h -t 120.20333424428999 -s 21 -d 23 -p SRM -e 168 -c 42 -i 57 -a 42 + -t 120.20333424428999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 57 -a 42 - -t 120.20333424428999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 57 -a 42 h -t 120.20333424428999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 57 -a 42 r -t 120.21467824428998 -s 11 -d 13 -p SRM -e 168 -c 42 -i 57 -a 42 + -t 120.21467824428998 -s 13 -d 15 -p SRM -e 168 -c 42 -i 57 -a 42 - -t 120.21467824428998 -s 13 -d 15 -p SRM -e 168 -c 42 -i 57 -a 42 h -t 120.21467824428998 -s 13 -d 15 -p SRM -e 168 -c 42 -i 57 -a 42 + -t 120.21467824428998 -s 13 -d 16 -p SRM -e 168 -c 42 -i 57 -a 42 - -t 120.21467824428998 -s 13 -d 16 -p SRM -e 168 -c 42 -i 57 -a 42 h -t 120.21467824428998 -s 13 -d 16 -p SRM -e 168 -c 42 -i 57 -a 42 r -t 120.21467824428998 -s 11 -d 14 -p SRM -e 168 -c 42 -i 57 -a 42 r -t 120.21467824428998 -s 21 -d 23 -p SRM -e 168 -c 42 -i 57 -a 42 + -t 120.21467824428998 -s 23 -d 25 -p SRM -e 168 -c 42 -i 57 -a 42 - -t 120.21467824428998 -s 23 -d 25 -p SRM -e 168 -c 42 -i 57 -a 42 h -t 120.21467824428998 -s 23 -d 25 -p SRM -e 168 -c 42 -i 57 -a 42 + -t 120.21467824428998 -s 23 -d 26 -p SRM -e 168 -c 42 -i 57 -a 42 - -t 120.21467824428998 -s 23 -d 26 -p SRM -e 168 -c 42 -i 57 -a 42 h -t 120.21467824428998 -s 23 -d 26 -p SRM -e 168 -c 42 -i 57 -a 42 r -t 120.21467824428998 -s 21 -d 24 -p SRM -e 168 -c 42 -i 57 -a 42 r -t 120.22602224428998 -s 13 -d 15 -p SRM -e 168 -c 42 -i 57 -a 42 r -t 120.22602224428998 -s 13 -d 16 -p SRM -e 168 -c 42 -i 57 -a 42 + -t 120.22602224428998 -s 16 -d 17 -p SRM -e 168 -c 42 -i 57 -a 42 - -t 120.22602224428998 -s 16 -d 17 -p SRM -e 168 -c 42 -i 57 -a 42 h -t 120.22602224428998 -s 16 -d 17 -p SRM -e 168 -c 42 -i 57 -a 42 + -t 120.22602224428998 -s 16 -d 18 -p SRM -e 168 -c 42 -i 57 -a 42 - -t 120.22602224428998 -s 16 -d 18 -p SRM -e 168 -c 42 -i 57 -a 42 h -t 120.22602224428998 -s 16 -d 18 -p SRM -e 168 -c 42 -i 57 -a 42 r -t 120.22602224428998 -s 23 -d 25 -p SRM -e 168 -c 42 -i 57 -a 42 r -t 120.22602224428998 -s 23 -d 26 -p SRM -e 168 -c 42 -i 57 -a 42 + -t 120.22602224428998 -s 26 -d 27 -p SRM -e 168 -c 42 -i 57 -a 42 - -t 120.22602224428998 -s 26 -d 27 -p SRM -e 168 -c 42 -i 57 -a 42 h -t 120.22602224428998 -s 26 -d 27 -p SRM -e 168 -c 42 -i 57 -a 42 + -t 120.22602224428998 -s 26 -d 28 -p SRM -e 168 -c 42 -i 57 -a 42 - -t 120.22602224428998 -s 26 -d 28 -p SRM -e 168 -c 42 -i 57 -a 42 h -t 120.22602224428998 -s 26 -d 28 -p SRM -e 168 -c 42 -i 57 -a 42 r -t 120.23736624428997 -s 16 -d 17 -p SRM -e 168 -c 42 -i 57 -a 42 r -t 120.23736624428997 -s 16 -d 18 -p SRM -e 168 -c 42 -i 57 -a 42 r -t 120.23736624428997 -s 26 -d 27 -p SRM -e 168 -c 42 -i 57 -a 42 r -t 120.23736624428997 -s 26 -d 28 -p SRM -e 168 -c 42 -i 57 -a 42 + -t 120.72093638788 -s 10 -d 11 -p SRM -e 168 -c 42 -i 58 -a 42 + -t 120.72093638788 -s 20 -d 21 -p SRM -e 168 -c 42 -i 58 -a 42 - -t 120.72093638788 -s 10 -d 11 -p SRM -e 168 -c 42 -i 58 -a 42 - -t 120.72093638788 -s 20 -d 21 -p SRM -e 168 -c 42 -i 58 -a 42 h -t 120.72093638788 -s 10 -d 11 -p SRM -e 168 -c 42 -i 58 -a 42 + -t 120.72093638788 -s 10 -d 12 -p SRM -e 168 -c 42 -i 58 -a 42 - -t 120.72093638788 -s 10 -d 12 -p SRM -e 168 -c 42 -i 58 -a 42 h -t 120.72093638788 -s 10 -d 12 -p SRM -e 168 -c 42 -i 58 -a 42 h -t 120.72093638788 -s 20 -d 21 -p SRM -e 168 -c 42 -i 58 -a 42 + -t 120.72093638788 -s 20 -d 22 -p SRM -e 168 -c 42 -i 58 -a 42 - -t 120.72093638788 -s 20 -d 22 -p SRM -e 168 -c 42 -i 58 -a 42 h -t 120.72093638788 -s 20 -d 22 -p SRM -e 168 -c 42 -i 58 -a 42 r -t 120.73228038788 -s 10 -d 11 -p SRM -e 168 -c 42 -i 58 -a 42 + -t 120.73228038788 -s 11 -d 13 -p SRM -e 168 -c 42 -i 58 -a 42 - -t 120.73228038788 -s 11 -d 13 -p SRM -e 168 -c 42 -i 58 -a 42 h -t 120.73228038788 -s 11 -d 13 -p SRM -e 168 -c 42 -i 58 -a 42 + -t 120.73228038788 -s 11 -d 14 -p SRM -e 168 -c 42 -i 58 -a 42 - -t 120.73228038788 -s 11 -d 14 -p SRM -e 168 -c 42 -i 58 -a 42 h -t 120.73228038788 -s 11 -d 14 -p SRM -e 168 -c 42 -i 58 -a 42 r -t 120.73228038788 -s 10 -d 12 -p SRM -e 168 -c 42 -i 58 -a 42 r -t 120.73228038788 -s 20 -d 21 -p SRM -e 168 -c 42 -i 58 -a 42 + -t 120.73228038788 -s 21 -d 23 -p SRM -e 168 -c 42 -i 58 -a 42 - -t 120.73228038788 -s 21 -d 23 -p SRM -e 168 -c 42 -i 58 -a 42 h -t 120.73228038788 -s 21 -d 23 -p SRM -e 168 -c 42 -i 58 -a 42 + -t 120.73228038788 -s 21 -d 24 -p SRM -e 168 -c 42 -i 58 -a 42 - -t 120.73228038788 -s 21 -d 24 -p SRM -e 168 -c 42 -i 58 -a 42 h -t 120.73228038788 -s 21 -d 24 -p SRM -e 168 -c 42 -i 58 -a 42 r -t 120.73228038788 -s 20 -d 22 -p SRM -e 168 -c 42 -i 58 -a 42 r -t 120.74362438787999 -s 11 -d 13 -p SRM -e 168 -c 42 -i 58 -a 42 + -t 120.74362438787999 -s 13 -d 15 -p SRM -e 168 -c 42 -i 58 -a 42 - -t 120.74362438787999 -s 13 -d 15 -p SRM -e 168 -c 42 -i 58 -a 42 h -t 120.74362438787999 -s 13 -d 15 -p SRM -e 168 -c 42 -i 58 -a 42 + -t 120.74362438787999 -s 13 -d 16 -p SRM -e 168 -c 42 -i 58 -a 42 - -t 120.74362438787999 -s 13 -d 16 -p SRM -e 168 -c 42 -i 58 -a 42 h -t 120.74362438787999 -s 13 -d 16 -p SRM -e 168 -c 42 -i 58 -a 42 r -t 120.74362438787999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 58 -a 42 r -t 120.74362438787999 -s 21 -d 23 -p SRM -e 168 -c 42 -i 58 -a 42 + -t 120.74362438787999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 58 -a 42 - -t 120.74362438787999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 58 -a 42 h -t 120.74362438787999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 58 -a 42 + -t 120.74362438787999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 58 -a 42 - -t 120.74362438787999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 58 -a 42 h -t 120.74362438787999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 58 -a 42 r -t 120.74362438787999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 58 -a 42 r -t 120.75496838787998 -s 13 -d 15 -p SRM -e 168 -c 42 -i 58 -a 42 r -t 120.75496838787998 -s 13 -d 16 -p SRM -e 168 -c 42 -i 58 -a 42 + -t 120.75496838787998 -s 16 -d 17 -p SRM -e 168 -c 42 -i 58 -a 42 - -t 120.75496838787998 -s 16 -d 17 -p SRM -e 168 -c 42 -i 58 -a 42 h -t 120.75496838787998 -s 16 -d 17 -p SRM -e 168 -c 42 -i 58 -a 42 + -t 120.75496838787998 -s 16 -d 18 -p SRM -e 168 -c 42 -i 58 -a 42 - -t 120.75496838787998 -s 16 -d 18 -p SRM -e 168 -c 42 -i 58 -a 42 h -t 120.75496838787998 -s 16 -d 18 -p SRM -e 168 -c 42 -i 58 -a 42 r -t 120.75496838787998 -s 23 -d 25 -p SRM -e 168 -c 42 -i 58 -a 42 r -t 120.75496838787998 -s 23 -d 26 -p SRM -e 168 -c 42 -i 58 -a 42 + -t 120.75496838787998 -s 26 -d 27 -p SRM -e 168 -c 42 -i 58 -a 42 - -t 120.75496838787998 -s 26 -d 27 -p SRM -e 168 -c 42 -i 58 -a 42 h -t 120.75496838787998 -s 26 -d 27 -p SRM -e 168 -c 42 -i 58 -a 42 + -t 120.75496838787998 -s 26 -d 28 -p SRM -e 168 -c 42 -i 58 -a 42 - -t 120.75496838787998 -s 26 -d 28 -p SRM -e 168 -c 42 -i 58 -a 42 h -t 120.75496838787998 -s 26 -d 28 -p SRM -e 168 -c 42 -i 58 -a 42 r -t 120.76631238787998 -s 16 -d 17 -p SRM -e 168 -c 42 -i 58 -a 42 r -t 120.76631238787998 -s 16 -d 18 -p SRM -e 168 -c 42 -i 58 -a 42 r -t 120.76631238787998 -s 26 -d 27 -p SRM -e 168 -c 42 -i 58 -a 42 r -t 120.76631238787998 -s 26 -d 28 -p SRM -e 168 -c 42 -i 58 -a 42 + -t 120.9251664227 -s 15 -d 13 -p SRM -e 168 -c 42 -i 59 -a 42 + -t 120.9251664227 -s 25 -d 23 -p SRM -e 168 -c 42 -i 59 -a 42 - -t 120.9251664227 -s 15 -d 13 -p SRM -e 168 -c 42 -i 59 -a 42 - -t 120.9251664227 -s 25 -d 23 -p SRM -e 168 -c 42 -i 59 -a 42 h -t 120.9251664227 -s 15 -d 13 -p SRM -e 168 -c 42 -i 59 -a 42 h -t 120.9251664227 -s 25 -d 23 -p SRM -e 168 -c 42 -i 59 -a 42 r -t 120.9365104227 -s 15 -d 13 -p SRM -e 168 -c 42 -i 59 -a 42 + -t 120.9365104227 -s 13 -d 11 -p SRM -e 168 -c 42 -i 59 -a 42 - -t 120.9365104227 -s 13 -d 11 -p SRM -e 168 -c 42 -i 59 -a 42 h -t 120.9365104227 -s 13 -d 11 -p SRM -e 168 -c 42 -i 59 -a 42 + -t 120.9365104227 -s 13 -d 16 -p SRM -e 168 -c 42 -i 59 -a 42 - -t 120.9365104227 -s 13 -d 16 -p SRM -e 168 -c 42 -i 59 -a 42 h -t 120.9365104227 -s 13 -d 16 -p SRM -e 168 -c 42 -i 59 -a 42 r -t 120.9365104227 -s 25 -d 23 -p SRM -e 168 -c 42 -i 59 -a 42 + -t 120.9365104227 -s 23 -d 21 -p SRM -e 168 -c 42 -i 59 -a 42 - -t 120.9365104227 -s 23 -d 21 -p SRM -e 168 -c 42 -i 59 -a 42 h -t 120.9365104227 -s 23 -d 21 -p SRM -e 168 -c 42 -i 59 -a 42 + -t 120.9365104227 -s 23 -d 26 -p SRM -e 168 -c 42 -i 59 -a 42 - -t 120.9365104227 -s 23 -d 26 -p SRM -e 168 -c 42 -i 59 -a 42 h -t 120.9365104227 -s 23 -d 26 -p SRM -e 168 -c 42 -i 59 -a 42 r -t 120.94785442269999 -s 13 -d 11 -p SRM -e 168 -c 42 -i 59 -a 42 + -t 120.94785442269999 -s 11 -d 10 -p SRM -e 168 -c 42 -i 59 -a 42 - -t 120.94785442269999 -s 11 -d 10 -p SRM -e 168 -c 42 -i 59 -a 42 h -t 120.94785442269999 -s 11 -d 10 -p SRM -e 168 -c 42 -i 59 -a 42 + -t 120.94785442269999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 59 -a 42 - -t 120.94785442269999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 59 -a 42 h -t 120.94785442269999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 59 -a 42 r -t 120.94785442269999 -s 13 -d 16 -p SRM -e 168 -c 42 -i 59 -a 42 + -t 120.94785442269999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 59 -a 42 - -t 120.94785442269999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 59 -a 42 h -t 120.94785442269999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 59 -a 42 + -t 120.94785442269999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 59 -a 42 - -t 120.94785442269999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 59 -a 42 h -t 120.94785442269999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 59 -a 42 r -t 120.94785442269999 -s 23 -d 21 -p SRM -e 168 -c 42 -i 59 -a 42 + -t 120.94785442269999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 59 -a 42 - -t 120.94785442269999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 59 -a 42 h -t 120.94785442269999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 59 -a 42 + -t 120.94785442269999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 59 -a 42 - -t 120.94785442269999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 59 -a 42 h -t 120.94785442269999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 59 -a 42 r -t 120.94785442269999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 59 -a 42 + -t 120.94785442269999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 59 -a 42 - -t 120.94785442269999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 59 -a 42 h -t 120.94785442269999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 59 -a 42 + -t 120.94785442269999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 59 -a 42 - -t 120.94785442269999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 59 -a 42 h -t 120.94785442269999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 59 -a 42 r -t 120.95919842269998 -s 11 -d 10 -p SRM -e 168 -c 42 -i 59 -a 42 + -t 120.95919842269998 -s 10 -d 12 -p SRM -e 168 -c 42 -i 59 -a 42 - -t 120.95919842269998 -s 10 -d 12 -p SRM -e 168 -c 42 -i 59 -a 42 h -t 120.95919842269998 -s 10 -d 12 -p SRM -e 168 -c 42 -i 59 -a 42 r -t 120.95919842269998 -s 11 -d 14 -p SRM -e 168 -c 42 -i 59 -a 42 r -t 120.95919842269998 -s 16 -d 17 -p SRM -e 168 -c 42 -i 59 -a 42 r -t 120.95919842269998 -s 16 -d 18 -p SRM -e 168 -c 42 -i 59 -a 42 r -t 120.95919842269998 -s 21 -d 20 -p SRM -e 168 -c 42 -i 59 -a 42 + -t 120.95919842269998 -s 20 -d 22 -p SRM -e 168 -c 42 -i 59 -a 42 - -t 120.95919842269998 -s 20 -d 22 -p SRM -e 168 -c 42 -i 59 -a 42 h -t 120.95919842269998 -s 20 -d 22 -p SRM -e 168 -c 42 -i 59 -a 42 r -t 120.95919842269998 -s 21 -d 24 -p SRM -e 168 -c 42 -i 59 -a 42 r -t 120.95919842269998 -s 26 -d 27 -p SRM -e 168 -c 42 -i 59 -a 42 r -t 120.95919842269998 -s 26 -d 28 -p SRM -e 168 -c 42 -i 59 -a 42 r -t 120.97054242269998 -s 10 -d 12 -p SRM -e 168 -c 42 -i 59 -a 42 r -t 120.97054242269998 -s 20 -d 22 -p SRM -e 168 -c 42 -i 59 -a 42 + -t 122.09284799434 -s 17 -d 16 -p SRM -e 168 -c 42 -i 60 -a 42 + -t 122.09284799434 -s 27 -d 26 -p SRM -e 168 -c 42 -i 60 -a 42 - -t 122.09284799434 -s 17 -d 16 -p SRM -e 168 -c 42 -i 60 -a 42 - -t 122.09284799434 -s 27 -d 26 -p SRM -e 168 -c 42 -i 60 -a 42 h -t 122.09284799434 -s 17 -d 16 -p SRM -e 168 -c 42 -i 60 -a 42 h -t 122.09284799434 -s 27 -d 26 -p SRM -e 168 -c 42 -i 60 -a 42 r -t 122.10419199434 -s 17 -d 16 -p SRM -e 168 -c 42 -i 60 -a 42 + -t 122.10419199434 -s 16 -d 13 -p SRM -e 168 -c 42 -i 60 -a 42 - -t 122.10419199434 -s 16 -d 13 -p SRM -e 168 -c 42 -i 60 -a 42 h -t 122.10419199434 -s 16 -d 13 -p SRM -e 168 -c 42 -i 60 -a 42 + -t 122.10419199434 -s 16 -d 18 -p SRM -e 168 -c 42 -i 60 -a 42 - -t 122.10419199434 -s 16 -d 18 -p SRM -e 168 -c 42 -i 60 -a 42 h -t 122.10419199434 -s 16 -d 18 -p SRM -e 168 -c 42 -i 60 -a 42 r -t 122.10419199434 -s 27 -d 26 -p SRM -e 168 -c 42 -i 60 -a 42 + -t 122.10419199434 -s 26 -d 23 -p SRM -e 168 -c 42 -i 60 -a 42 - -t 122.10419199434 -s 26 -d 23 -p SRM -e 168 -c 42 -i 60 -a 42 h -t 122.10419199434 -s 26 -d 23 -p SRM -e 168 -c 42 -i 60 -a 42 + -t 122.10419199434 -s 26 -d 28 -p SRM -e 168 -c 42 -i 60 -a 42 - -t 122.10419199434 -s 26 -d 28 -p SRM -e 168 -c 42 -i 60 -a 42 h -t 122.10419199434 -s 26 -d 28 -p SRM -e 168 -c 42 -i 60 -a 42 r -t 122.11553599433999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 60 -a 42 + -t 122.11553599433999 -s 13 -d 11 -p SRM -e 168 -c 42 -i 60 -a 42 - -t 122.11553599433999 -s 13 -d 11 -p SRM -e 168 -c 42 -i 60 -a 42 h -t 122.11553599433999 -s 13 -d 11 -p SRM -e 168 -c 42 -i 60 -a 42 + -t 122.11553599433999 -s 13 -d 15 -p SRM -e 168 -c 42 -i 60 -a 42 - -t 122.11553599433999 -s 13 -d 15 -p SRM -e 168 -c 42 -i 60 -a 42 h -t 122.11553599433999 -s 13 -d 15 -p SRM -e 168 -c 42 -i 60 -a 42 r -t 122.11553599433999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 60 -a 42 r -t 122.11553599433999 -s 26 -d 23 -p SRM -e 168 -c 42 -i 60 -a 42 + -t 122.11553599433999 -s 23 -d 21 -p SRM -e 168 -c 42 -i 60 -a 42 - -t 122.11553599433999 -s 23 -d 21 -p SRM -e 168 -c 42 -i 60 -a 42 h -t 122.11553599433999 -s 23 -d 21 -p SRM -e 168 -c 42 -i 60 -a 42 + -t 122.11553599433999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 60 -a 42 - -t 122.11553599433999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 60 -a 42 h -t 122.11553599433999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 60 -a 42 r -t 122.11553599433999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 60 -a 42 r -t 122.12687999433999 -s 13 -d 11 -p SRM -e 168 -c 42 -i 60 -a 42 + -t 122.12687999433999 -s 11 -d 10 -p SRM -e 168 -c 42 -i 60 -a 42 - -t 122.12687999433999 -s 11 -d 10 -p SRM -e 168 -c 42 -i 60 -a 42 h -t 122.12687999433999 -s 11 -d 10 -p SRM -e 168 -c 42 -i 60 -a 42 + -t 122.12687999433999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 60 -a 42 - -t 122.12687999433999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 60 -a 42 h -t 122.12687999433999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 60 -a 42 r -t 122.12687999433999 -s 13 -d 15 -p SRM -e 168 -c 42 -i 60 -a 42 r -t 122.12687999433999 -s 23 -d 21 -p SRM -e 168 -c 42 -i 60 -a 42 + -t 122.12687999433999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 60 -a 42 - -t 122.12687999433999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 60 -a 42 h -t 122.12687999433999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 60 -a 42 + -t 122.12687999433999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 60 -a 42 - -t 122.12687999433999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 60 -a 42 h -t 122.12687999433999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 60 -a 42 r -t 122.12687999433999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 60 -a 42 r -t 122.13822399433998 -s 11 -d 10 -p SRM -e 168 -c 42 -i 60 -a 42 + -t 122.13822399433998 -s 10 -d 12 -p SRM -e 168 -c 42 -i 60 -a 42 - -t 122.13822399433998 -s 10 -d 12 -p SRM -e 168 -c 42 -i 60 -a 42 h -t 122.13822399433998 -s 10 -d 12 -p SRM -e 168 -c 42 -i 60 -a 42 r -t 122.13822399433998 -s 11 -d 14 -p SRM -e 168 -c 42 -i 60 -a 42 r -t 122.13822399433998 -s 21 -d 20 -p SRM -e 168 -c 42 -i 60 -a 42 + -t 122.13822399433998 -s 20 -d 22 -p SRM -e 168 -c 42 -i 60 -a 42 - -t 122.13822399433998 -s 20 -d 22 -p SRM -e 168 -c 42 -i 60 -a 42 h -t 122.13822399433998 -s 20 -d 22 -p SRM -e 168 -c 42 -i 60 -a 42 r -t 122.13822399433998 -s 21 -d 24 -p SRM -e 168 -c 42 -i 60 -a 42 r -t 122.14956799433998 -s 10 -d 12 -p SRM -e 168 -c 42 -i 60 -a 42 r -t 122.14956799433998 -s 20 -d 22 -p SRM -e 168 -c 42 -i 60 -a 42 + -t 124.23282903421 -s 11 -d 10 -p SRM -e 168 -c 42 -i 61 -a 42 + -t 124.23282903421 -s 21 -d 20 -p SRM -e 168 -c 42 -i 61 -a 42 - -t 124.23282903421 -s 11 -d 10 -p SRM -e 168 -c 42 -i 61 -a 42 - -t 124.23282903421 -s 21 -d 20 -p SRM -e 168 -c 42 -i 61 -a 42 h -t 124.23282903421 -s 11 -d 10 -p SRM -e 168 -c 42 -i 61 -a 42 + -t 124.23282903421 -s 11 -d 13 -p SRM -e 168 -c 42 -i 61 -a 42 - -t 124.23282903421 -s 11 -d 13 -p SRM -e 168 -c 42 -i 61 -a 42 h -t 124.23282903421 -s 11 -d 13 -p SRM -e 168 -c 42 -i 61 -a 42 + -t 124.23282903421 -s 11 -d 14 -p SRM -e 168 -c 42 -i 61 -a 42 - -t 124.23282903421 -s 11 -d 14 -p SRM -e 168 -c 42 -i 61 -a 42 h -t 124.23282903421 -s 11 -d 14 -p SRM -e 168 -c 42 -i 61 -a 42 h -t 124.23282903421 -s 21 -d 20 -p SRM -e 168 -c 42 -i 61 -a 42 + -t 124.23282903421 -s 21 -d 23 -p SRM -e 168 -c 42 -i 61 -a 42 - -t 124.23282903421 -s 21 -d 23 -p SRM -e 168 -c 42 -i 61 -a 42 h -t 124.23282903421 -s 21 -d 23 -p SRM -e 168 -c 42 -i 61 -a 42 + -t 124.23282903421 -s 21 -d 24 -p SRM -e 168 -c 42 -i 61 -a 42 - -t 124.23282903421 -s 21 -d 24 -p SRM -e 168 -c 42 -i 61 -a 42 h -t 124.23282903421 -s 21 -d 24 -p SRM -e 168 -c 42 -i 61 -a 42 r -t 124.24417303420999 -s 11 -d 10 -p SRM -e 168 -c 42 -i 61 -a 42 + -t 124.24417303420999 -s 10 -d 12 -p SRM -e 168 -c 42 -i 61 -a 42 - -t 124.24417303420999 -s 10 -d 12 -p SRM -e 168 -c 42 -i 61 -a 42 h -t 124.24417303420999 -s 10 -d 12 -p SRM -e 168 -c 42 -i 61 -a 42 r -t 124.24417303420999 -s 11 -d 13 -p SRM -e 168 -c 42 -i 61 -a 42 + -t 124.24417303420999 -s 13 -d 15 -p SRM -e 168 -c 42 -i 61 -a 42 - -t 124.24417303420999 -s 13 -d 15 -p SRM -e 168 -c 42 -i 61 -a 42 h -t 124.24417303420999 -s 13 -d 15 -p SRM -e 168 -c 42 -i 61 -a 42 + -t 124.24417303420999 -s 13 -d 16 -p SRM -e 168 -c 42 -i 61 -a 42 - -t 124.24417303420999 -s 13 -d 16 -p SRM -e 168 -c 42 -i 61 -a 42 h -t 124.24417303420999 -s 13 -d 16 -p SRM -e 168 -c 42 -i 61 -a 42 r -t 124.24417303420999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 61 -a 42 r -t 124.24417303420999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 61 -a 42 + -t 124.24417303420999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 61 -a 42 - -t 124.24417303420999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 61 -a 42 h -t 124.24417303420999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 61 -a 42 r -t 124.24417303420999 -s 21 -d 23 -p SRM -e 168 -c 42 -i 61 -a 42 + -t 124.24417303420999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 61 -a 42 - -t 124.24417303420999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 61 -a 42 h -t 124.24417303420999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 61 -a 42 + -t 124.24417303420999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 61 -a 42 - -t 124.24417303420999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 61 -a 42 h -t 124.24417303420999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 61 -a 42 r -t 124.24417303420999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 61 -a 42 r -t 124.25551703420999 -s 10 -d 12 -p SRM -e 168 -c 42 -i 61 -a 42 r -t 124.25551703420999 -s 13 -d 15 -p SRM -e 168 -c 42 -i 61 -a 42 r -t 124.25551703420999 -s 13 -d 16 -p SRM -e 168 -c 42 -i 61 -a 42 + -t 124.25551703420999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 61 -a 42 - -t 124.25551703420999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 61 -a 42 h -t 124.25551703420999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 61 -a 42 + -t 124.25551703420999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 61 -a 42 - -t 124.25551703420999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 61 -a 42 h -t 124.25551703420999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 61 -a 42 r -t 124.25551703420999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 61 -a 42 r -t 124.25551703420999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 61 -a 42 r -t 124.25551703420999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 61 -a 42 + -t 124.25551703420999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 61 -a 42 - -t 124.25551703420999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 61 -a 42 h -t 124.25551703420999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 61 -a 42 + -t 124.25551703420999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 61 -a 42 - -t 124.25551703420999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 61 -a 42 h -t 124.25551703420999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 61 -a 42 r -t 124.26686103420998 -s 16 -d 17 -p SRM -e 168 -c 42 -i 61 -a 42 r -t 124.26686103420998 -s 16 -d 18 -p SRM -e 168 -c 42 -i 61 -a 42 r -t 124.26686103420998 -s 26 -d 27 -p SRM -e 168 -c 42 -i 61 -a 42 r -t 124.26686103420998 -s 26 -d 28 -p SRM -e 168 -c 42 -i 61 -a 42 + -t 126.61929308162 -s 18 -d 16 -p SRM -e 168 -c 42 -i 62 -a 42 + -t 126.61929308162 -s 28 -d 26 -p SRM -e 168 -c 42 -i 62 -a 42 - -t 126.61929308162 -s 18 -d 16 -p SRM -e 168 -c 42 -i 62 -a 42 - -t 126.61929308162 -s 28 -d 26 -p SRM -e 168 -c 42 -i 62 -a 42 h -t 126.61929308162 -s 18 -d 16 -p SRM -e 168 -c 42 -i 62 -a 42 h -t 126.61929308162 -s 28 -d 26 -p SRM -e 168 -c 42 -i 62 -a 42 r -t 126.63063708161999 -s 18 -d 16 -p SRM -e 168 -c 42 -i 62 -a 42 + -t 126.63063708161999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 62 -a 42 - -t 126.63063708161999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 62 -a 42 h -t 126.63063708161999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 62 -a 42 + -t 126.63063708161999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 62 -a 42 - -t 126.63063708161999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 62 -a 42 h -t 126.63063708161999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 62 -a 42 r -t 126.63063708161999 -s 28 -d 26 -p SRM -e 168 -c 42 -i 62 -a 42 + -t 126.63063708161999 -s 26 -d 23 -p SRM -e 168 -c 42 -i 62 -a 42 - -t 126.63063708161999 -s 26 -d 23 -p SRM -e 168 -c 42 -i 62 -a 42 h -t 126.63063708161999 -s 26 -d 23 -p SRM -e 168 -c 42 -i 62 -a 42 + -t 126.63063708161999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 62 -a 42 - -t 126.63063708161999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 62 -a 42 h -t 126.63063708161999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 62 -a 42 r -t 126.64198108161999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 62 -a 42 + -t 126.64198108161999 -s 13 -d 11 -p SRM -e 168 -c 42 -i 62 -a 42 - -t 126.64198108161999 -s 13 -d 11 -p SRM -e 168 -c 42 -i 62 -a 42 h -t 126.64198108161999 -s 13 -d 11 -p SRM -e 168 -c 42 -i 62 -a 42 + -t 126.64198108161999 -s 13 -d 15 -p SRM -e 168 -c 42 -i 62 -a 42 - -t 126.64198108161999 -s 13 -d 15 -p SRM -e 168 -c 42 -i 62 -a 42 h -t 126.64198108161999 -s 13 -d 15 -p SRM -e 168 -c 42 -i 62 -a 42 r -t 126.64198108161999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 62 -a 42 r -t 126.64198108161999 -s 26 -d 23 -p SRM -e 168 -c 42 -i 62 -a 42 + -t 126.64198108161999 -s 23 -d 21 -p SRM -e 168 -c 42 -i 62 -a 42 - -t 126.64198108161999 -s 23 -d 21 -p SRM -e 168 -c 42 -i 62 -a 42 h -t 126.64198108161999 -s 23 -d 21 -p SRM -e 168 -c 42 -i 62 -a 42 + -t 126.64198108161999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 62 -a 42 - -t 126.64198108161999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 62 -a 42 h -t 126.64198108161999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 62 -a 42 r -t 126.64198108161999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 62 -a 42 r -t 126.65332508161998 -s 13 -d 11 -p SRM -e 168 -c 42 -i 62 -a 42 + -t 126.65332508161998 -s 11 -d 10 -p SRM -e 168 -c 42 -i 62 -a 42 - -t 126.65332508161998 -s 11 -d 10 -p SRM -e 168 -c 42 -i 62 -a 42 h -t 126.65332508161998 -s 11 -d 10 -p SRM -e 168 -c 42 -i 62 -a 42 + -t 126.65332508161998 -s 11 -d 14 -p SRM -e 168 -c 42 -i 62 -a 42 - -t 126.65332508161998 -s 11 -d 14 -p SRM -e 168 -c 42 -i 62 -a 42 h -t 126.65332508161998 -s 11 -d 14 -p SRM -e 168 -c 42 -i 62 -a 42 r -t 126.65332508161998 -s 13 -d 15 -p SRM -e 168 -c 42 -i 62 -a 42 r -t 126.65332508161998 -s 23 -d 21 -p SRM -e 168 -c 42 -i 62 -a 42 + -t 126.65332508161998 -s 21 -d 20 -p SRM -e 168 -c 42 -i 62 -a 42 - -t 126.65332508161998 -s 21 -d 20 -p SRM -e 168 -c 42 -i 62 -a 42 h -t 126.65332508161998 -s 21 -d 20 -p SRM -e 168 -c 42 -i 62 -a 42 + -t 126.65332508161998 -s 21 -d 24 -p SRM -e 168 -c 42 -i 62 -a 42 - -t 126.65332508161998 -s 21 -d 24 -p SRM -e 168 -c 42 -i 62 -a 42 h -t 126.65332508161998 -s 21 -d 24 -p SRM -e 168 -c 42 -i 62 -a 42 r -t 126.65332508161998 -s 23 -d 25 -p SRM -e 168 -c 42 -i 62 -a 42 r -t 126.66466908161998 -s 11 -d 10 -p SRM -e 168 -c 42 -i 62 -a 42 + -t 126.66466908161998 -s 10 -d 12 -p SRM -e 168 -c 42 -i 62 -a 42 - -t 126.66466908161998 -s 10 -d 12 -p SRM -e 168 -c 42 -i 62 -a 42 h -t 126.66466908161998 -s 10 -d 12 -p SRM -e 168 -c 42 -i 62 -a 42 r -t 126.66466908161998 -s 11 -d 14 -p SRM -e 168 -c 42 -i 62 -a 42 r -t 126.66466908161998 -s 21 -d 20 -p SRM -e 168 -c 42 -i 62 -a 42 + -t 126.66466908161998 -s 20 -d 22 -p SRM -e 168 -c 42 -i 62 -a 42 - -t 126.66466908161998 -s 20 -d 22 -p SRM -e 168 -c 42 -i 62 -a 42 h -t 126.66466908161998 -s 20 -d 22 -p SRM -e 168 -c 42 -i 62 -a 42 r -t 126.66466908161998 -s 21 -d 24 -p SRM -e 168 -c 42 -i 62 -a 42 r -t 126.67601308161997 -s 10 -d 12 -p SRM -e 168 -c 42 -i 62 -a 42 r -t 126.67601308161997 -s 20 -d 22 -p SRM -e 168 -c 42 -i 62 -a 42 + -t 133.9322398803244 -s 15 -d 13 -p cbr -e 1280 -c 5 -i 63 -a 5 + -t 133.9322398803244 -s 25 -d 23 -p cbr -e 1280 -c 5 -i 63 -a 5 - -t 133.9322398803244 -s 15 -d 13 -p cbr -e 1280 -c 5 -i 63 -a 5 - -t 133.9322398803244 -s 25 -d 23 -p cbr -e 1280 -c 5 -i 63 -a 5 h -t 133.9322398803244 -s 15 -d 13 -p cbr -e 1280 -c 5 -i 63 -a 5 h -t 133.9322398803244 -s 25 -d 23 -p cbr -e 1280 -c 5 -i 63 -a 5 r -t 133.9524798803244 -s 15 -d 13 -p cbr -e 1280 -c 5 -i 63 -a 5 + -t 133.9524798803244 -s 13 -d 11 -p cbr -e 1280 -c 5 -i 63 -a 5 - -t 133.9524798803244 -s 13 -d 11 -p cbr -e 1280 -c 5 -i 63 -a 5 h -t 133.9524798803244 -s 13 -d 11 -p cbr -e 1280 -c 5 -i 63 -a 5 + -t 133.9524798803244 -s 13 -d 16 -p cbr -e 1280 -c 5 -i 63 -a 5 - -t 133.9524798803244 -s 13 -d 16 -p cbr -e 1280 -c 5 -i 63 -a 5 h -t 133.9524798803244 -s 13 -d 16 -p cbr -e 1280 -c 5 -i 63 -a 5 d -t 133.9524798803244 -s 13 -d 16 -p cbr -e 1280 -c 5 -i 63 -a 5 r -t 133.9524798803244 -s 25 -d 23 -p cbr -e 1280 -c 5 -i 63 -a 5 + -t 133.9524798803244 -s 23 -d 21 -p cbr -e 1280 -c 5 -i 63 -a 5 - -t 133.9524798803244 -s 23 -d 21 -p cbr -e 1280 -c 5 -i 63 -a 5 h -t 133.9524798803244 -s 23 -d 21 -p cbr -e 1280 -c 5 -i 63 -a 5 + -t 133.9524798803244 -s 23 -d 26 -p cbr -e 1280 -c 5 -i 63 -a 5 - -t 133.9524798803244 -s 23 -d 26 -p cbr -e 1280 -c 5 -i 63 -a 5 h -t 133.9524798803244 -s 23 -d 26 -p cbr -e 1280 -c 5 -i 63 -a 5 d -t 133.9524798803244 -s 23 -d 26 -p cbr -e 1280 -c 5 -i 63 -a 5 r -t 133.97271988032441 -s 13 -d 11 -p cbr -e 1280 -c 5 -i 63 -a 5 + -t 133.97271988032441 -s 11 -d 10 -p cbr -e 1280 -c 5 -i 63 -a 5 - -t 133.97271988032441 -s 11 -d 10 -p cbr -e 1280 -c 5 -i 63 -a 5 h -t 133.97271988032441 -s 11 -d 10 -p cbr -e 1280 -c 5 -i 63 -a 5 + -t 133.97271988032441 -s 11 -d 14 -p cbr -e 1280 -c 5 -i 63 -a 5 - -t 133.97271988032441 -s 11 -d 14 -p cbr -e 1280 -c 5 -i 63 -a 5 h -t 133.97271988032441 -s 11 -d 14 -p cbr -e 1280 -c 5 -i 63 -a 5 r -t 133.97271988032441 -s 23 -d 21 -p cbr -e 1280 -c 5 -i 63 -a 5 + -t 133.97271988032441 -s 21 -d 20 -p cbr -e 1280 -c 5 -i 63 -a 5 - -t 133.97271988032441 -s 21 -d 20 -p cbr -e 1280 -c 5 -i 63 -a 5 h -t 133.97271988032441 -s 21 -d 20 -p cbr -e 1280 -c 5 -i 63 -a 5 + -t 133.97271988032441 -s 21 -d 24 -p cbr -e 1280 -c 5 -i 63 -a 5 - -t 133.97271988032441 -s 21 -d 24 -p cbr -e 1280 -c 5 -i 63 -a 5 h -t 133.97271988032441 -s 21 -d 24 -p cbr -e 1280 -c 5 -i 63 -a 5 r -t 133.99295988032441 -s 11 -d 10 -p cbr -e 1280 -c 5 -i 63 -a 5 + -t 133.99295988032441 -s 10 -d 12 -p cbr -e 1280 -c 5 -i 63 -a 5 - -t 133.99295988032441 -s 10 -d 12 -p cbr -e 1280 -c 5 -i 63 -a 5 h -t 133.99295988032441 -s 10 -d 12 -p cbr -e 1280 -c 5 -i 63 -a 5 r -t 133.99295988032441 -s 11 -d 14 -p cbr -e 1280 -c 5 -i 63 -a 5 r -t 133.99295988032441 -s 21 -d 20 -p cbr -e 1280 -c 5 -i 63 -a 5 + -t 133.99295988032441 -s 20 -d 22 -p cbr -e 1280 -c 5 -i 63 -a 5 - -t 133.99295988032441 -s 20 -d 22 -p cbr -e 1280 -c 5 -i 63 -a 5 h -t 133.99295988032441 -s 20 -d 22 -p cbr -e 1280 -c 5 -i 63 -a 5 r -t 133.99295988032441 -s 21 -d 24 -p cbr -e 1280 -c 5 -i 63 -a 5 r -t 134.01319988032441 -s 10 -d 12 -p cbr -e 1280 -c 5 -i 63 -a 5 r -t 134.01319988032441 -s 20 -d 22 -p cbr -e 1280 -c 5 -i 63 -a 5 + -t 136.13610134536 -s 14 -d 11 -p SRM -e 168 -c 42 -i 64 -a 42 + -t 136.13610134536 -s 24 -d 21 -p SRM -e 168 -c 42 -i 64 -a 42 - -t 136.13610134536 -s 14 -d 11 -p SRM -e 168 -c 42 -i 64 -a 42 - -t 136.13610134536 -s 24 -d 21 -p SRM -e 168 -c 42 -i 64 -a 42 h -t 136.13610134536 -s 14 -d 11 -p SRM -e 168 -c 42 -i 64 -a 42 h -t 136.13610134536 -s 24 -d 21 -p SRM -e 168 -c 42 -i 64 -a 42 r -t 136.14744534536001 -s 14 -d 11 -p SRM -e 168 -c 42 -i 64 -a 42 + -t 136.14744534536001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 64 -a 42 - -t 136.14744534536001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 64 -a 42 h -t 136.14744534536001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 64 -a 42 + -t 136.14744534536001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 64 -a 42 - -t 136.14744534536001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 64 -a 42 h -t 136.14744534536001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 64 -a 42 r -t 136.14744534536001 -s 24 -d 21 -p SRM -e 168 -c 42 -i 64 -a 42 + -t 136.14744534536001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 64 -a 42 - -t 136.14744534536001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 64 -a 42 h -t 136.14744534536001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 64 -a 42 + -t 136.14744534536001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 64 -a 42 - -t 136.14744534536001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 64 -a 42 h -t 136.14744534536001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 64 -a 42 r -t 136.15878934536002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 64 -a 42 + -t 136.15878934536002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 64 -a 42 - -t 136.15878934536002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 64 -a 42 h -t 136.15878934536002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 64 -a 42 r -t 136.15878934536002 -s 11 -d 13 -p SRM -e 168 -c 42 -i 64 -a 42 + -t 136.15878934536002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 64 -a 42 - -t 136.15878934536002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 64 -a 42 h -t 136.15878934536002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 64 -a 42 + -t 136.15878934536002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 64 -a 42 - -t 136.15878934536002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 64 -a 42 h -t 136.15878934536002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 64 -a 42 r -t 136.15878934536002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 64 -a 42 + -t 136.15878934536002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 64 -a 42 - -t 136.15878934536002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 64 -a 42 h -t 136.15878934536002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 64 -a 42 r -t 136.15878934536002 -s 21 -d 23 -p SRM -e 168 -c 42 -i 64 -a 42 + -t 136.15878934536002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 64 -a 42 - -t 136.15878934536002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 64 -a 42 h -t 136.15878934536002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 64 -a 42 + -t 136.15878934536002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 64 -a 42 - -t 136.15878934536002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 64 -a 42 h -t 136.15878934536002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 64 -a 42 r -t 136.17013334536003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 64 -a 42 r -t 136.17013334536003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 64 -a 42 r -t 136.17013334536003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 64 -a 42 + -t 136.17013334536003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 64 -a 42 - -t 136.17013334536003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 64 -a 42 h -t 136.17013334536003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 64 -a 42 + -t 136.17013334536003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 64 -a 42 - -t 136.17013334536003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 64 -a 42 h -t 136.17013334536003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 64 -a 42 r -t 136.17013334536003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 64 -a 42 r -t 136.17013334536003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 64 -a 42 r -t 136.17013334536003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 64 -a 42 + -t 136.17013334536003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 64 -a 42 - -t 136.17013334536003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 64 -a 42 h -t 136.17013334536003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 64 -a 42 + -t 136.17013334536003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 64 -a 42 - -t 136.17013334536003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 64 -a 42 h -t 136.17013334536003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 64 -a 42 r -t 136.18147734536004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 64 -a 42 r -t 136.18147734536004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 64 -a 42 r -t 136.18147734536004 -s 26 -d 27 -p SRM -e 168 -c 42 -i 64 -a 42 r -t 136.18147734536004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 64 -a 42 + -t 136.21558771055001 -s 16 -d 13 -p SRM -e 20 -c 5 -i 65 -a 5 - -t 136.21558771055001 -s 16 -d 13 -p SRM -e 20 -c 5 -i 65 -a 5 h -t 136.21558771055001 -s 16 -d 13 -p SRM -e 20 -c 5 -i 65 -a 5 + -t 136.21558771055001 -s 16 -d 17 -p SRM -e 20 -c 5 -i 65 -a 5 - -t 136.21558771055001 -s 16 -d 17 -p SRM -e 20 -c 5 -i 65 -a 5 h -t 136.21558771055001 -s 16 -d 17 -p SRM -e 20 -c 5 -i 65 -a 5 + -t 136.21558771055001 -s 16 -d 18 -p SRM -e 20 -c 5 -i 65 -a 5 - -t 136.21558771055001 -s 16 -d 18 -p SRM -e 20 -c 5 -i 65 -a 5 h -t 136.21558771055001 -s 16 -d 18 -p SRM -e 20 -c 5 -i 65 -a 5 v -t 136.21558771055001 sim_annotation 136.21558771055001 2 136.21558771055001: node 16 sends request for msg (5:11) m -t 136.21558771055001 -s 16 -n _o38:1281:q -c blue -h square r -t 136.22574771055002 -s 16 -d 13 -p SRM -e 20 -c 5 -i 65 -a 5 + -t 136.22574771055002 -s 13 -d 11 -p SRM -e 20 -c 5 -i 65 -a 5 - -t 136.22574771055002 -s 13 -d 11 -p SRM -e 20 -c 5 -i 65 -a 5 h -t 136.22574771055002 -s 13 -d 11 -p SRM -e 20 -c 5 -i 65 -a 5 + -t 136.22574771055002 -s 13 -d 15 -p SRM -e 20 -c 5 -i 65 -a 5 - -t 136.22574771055002 -s 13 -d 15 -p SRM -e 20 -c 5 -i 65 -a 5 h -t 136.22574771055002 -s 13 -d 15 -p SRM -e 20 -c 5 -i 65 -a 5 r -t 136.22574771055002 -s 16 -d 17 -p SRM -e 20 -c 5 -i 65 -a 5 r -t 136.22574771055002 -s 16 -d 18 -p SRM -e 20 -c 5 -i 65 -a 5 r -t 136.23590771055004 -s 13 -d 11 -p SRM -e 20 -c 5 -i 65 -a 5 + -t 136.23590771055004 -s 11 -d 10 -p SRM -e 20 -c 5 -i 65 -a 5 - -t 136.23590771055004 -s 11 -d 10 -p SRM -e 20 -c 5 -i 65 -a 5 h -t 136.23590771055004 -s 11 -d 10 -p SRM -e 20 -c 5 -i 65 -a 5 + -t 136.23590771055004 -s 11 -d 14 -p SRM -e 20 -c 5 -i 65 -a 5 - -t 136.23590771055004 -s 11 -d 14 -p SRM -e 20 -c 5 -i 65 -a 5 h -t 136.23590771055004 -s 11 -d 14 -p SRM -e 20 -c 5 -i 65 -a 5 r -t 136.23590771055004 -s 13 -d 15 -p SRM -e 20 -c 5 -i 65 -a 5 + -t 136.24532686488999 -s 13 -d 11 -p SRM -e 1300 -c 5 -i 66 -a 3 - -t 136.24532686488999 -s 13 -d 11 -p SRM -e 1300 -c 5 -i 66 -a 3 h -t 136.24532686488999 -s 13 -d 11 -p SRM -e 1300 -c 5 -i 66 -a 3 + -t 136.24532686488999 -s 13 -d 15 -p SRM -e 1300 -c 5 -i 66 -a 3 - -t 136.24532686488999 -s 13 -d 15 -p SRM -e 1300 -c 5 -i 66 -a 3 h -t 136.24532686488999 -s 13 -d 15 -p SRM -e 1300 -c 5 -i 66 -a 3 + -t 136.24532686488999 -s 13 -d 16 -p SRM -e 1300 -c 5 -i 66 -a 3 - -t 136.24532686488999 -s 13 -d 16 -p SRM -e 1300 -c 5 -i 66 -a 3 h -t 136.24532686488999 -s 13 -d 16 -p SRM -e 1300 -c 5 -i 66 -a 3 v -t 136.24532686488999 sim_annotation 136.24532686488999 3 136.24532686488999: node 13 sends repair for msg (5:11) m -t 136.24532686488999 -s 13 -n _o23:1281:p -c blue -h circle r -t 136.24606771055005 -s 11 -d 10 -p SRM -e 20 -c 5 -i 65 -a 5 + -t 136.24606771055005 -s 10 -d 12 -p SRM -e 20 -c 5 -i 65 -a 5 - -t 136.24606771055005 -s 10 -d 12 -p SRM -e 20 -c 5 -i 65 -a 5 h -t 136.24606771055005 -s 10 -d 12 -p SRM -e 20 -c 5 -i 65 -a 5 r -t 136.24606771055005 -s 11 -d 14 -p SRM -e 20 -c 5 -i 65 -a 5 + -t 136.24730842930001 -s 26 -d 23 -p SRM -e 20 -c 5 -i 65 -a 5 - -t 136.24730842930001 -s 26 -d 23 -p SRM -e 20 -c 5 -i 65 -a 5 h -t 136.24730842930001 -s 26 -d 23 -p SRM -e 20 -c 5 -i 65 -a 5 + -t 136.24730842930001 -s 26 -d 27 -p SRM -e 20 -c 5 -i 65 -a 5 - -t 136.24730842930001 -s 26 -d 27 -p SRM -e 20 -c 5 -i 65 -a 5 h -t 136.24730842930001 -s 26 -d 27 -p SRM -e 20 -c 5 -i 65 -a 5 + -t 136.24730842930001 -s 26 -d 28 -p SRM -e 20 -c 5 -i 65 -a 5 - -t 136.24730842930001 -s 26 -d 28 -p SRM -e 20 -c 5 -i 65 -a 5 h -t 136.24730842930001 -s 26 -d 28 -p SRM -e 20 -c 5 -i 65 -a 5 v -t 136.24730842930001 sim_annotation 136.24730842930001 4 136.24730842930001: node 26 sends request for msg (5:21) m -t 136.24730842930001 -s 26 -n _o38:1281:q -c blue -h square r -t 136.25622771055006 -s 10 -d 12 -p SRM -e 20 -c 5 -i 65 -a 5 r -t 136.25746842930002 -s 26 -d 23 -p SRM -e 20 -c 5 -i 65 -a 5 + -t 136.25746842930002 -s 23 -d 21 -p SRM -e 20 -c 5 -i 65 -a 5 - -t 136.25746842930002 -s 23 -d 21 -p SRM -e 20 -c 5 -i 65 -a 5 h -t 136.25746842930002 -s 23 -d 21 -p SRM -e 20 -c 5 -i 65 -a 5 + -t 136.25746842930002 -s 23 -d 25 -p SRM -e 20 -c 5 -i 65 -a 5 - -t 136.25746842930002 -s 23 -d 25 -p SRM -e 20 -c 5 -i 65 -a 5 h -t 136.25746842930002 -s 23 -d 25 -p SRM -e 20 -c 5 -i 65 -a 5 r -t 136.25746842930002 -s 26 -d 27 -p SRM -e 20 -c 5 -i 65 -a 5 r -t 136.25746842930002 -s 26 -d 28 -p SRM -e 20 -c 5 -i 65 -a 5 r -t 136.26572686488998 -s 13 -d 11 -p SRM -e 1300 -c 5 -i 66 -a 3 + -t 136.26572686488998 -s 11 -d 10 -p SRM -e 1300 -c 5 -i 66 -a 3 - -t 136.26572686488998 -s 11 -d 10 -p SRM -e 1300 -c 5 -i 66 -a 3 h -t 136.26572686488998 -s 11 -d 10 -p SRM -e 1300 -c 5 -i 66 -a 3 + -t 136.26572686488998 -s 11 -d 14 -p SRM -e 1300 -c 5 -i 66 -a 3 - -t 136.26572686488998 -s 11 -d 14 -p SRM -e 1300 -c 5 -i 66 -a 3 h -t 136.26572686488998 -s 11 -d 14 -p SRM -e 1300 -c 5 -i 66 -a 3 r -t 136.26572686488998 -s 13 -d 15 -p SRM -e 1300 -c 5 -i 66 -a 3 r -t 136.26572686488998 -s 13 -d 16 -p SRM -e 1300 -c 5 -i 66 -a 3 + -t 136.26572686488998 -s 16 -d 17 -p SRM -e 1300 -c 5 -i 66 -a 3 - -t 136.26572686488998 -s 16 -d 17 -p SRM -e 1300 -c 5 -i 66 -a 3 h -t 136.26572686488998 -s 16 -d 17 -p SRM -e 1300 -c 5 -i 66 -a 3 + -t 136.26572686488998 -s 16 -d 18 -p SRM -e 1300 -c 5 -i 66 -a 3 - -t 136.26572686488998 -s 16 -d 18 -p SRM -e 1300 -c 5 -i 66 -a 3 h -t 136.26572686488998 -s 16 -d 18 -p SRM -e 1300 -c 5 -i 66 -a 3 m -t 136.26572686488998 -s 16 -n _o38:1281:q -c blue -h square -X r -t 136.26762842930003 -s 23 -d 21 -p SRM -e 20 -c 5 -i 65 -a 5 + -t 136.26762842930003 -s 21 -d 20 -p SRM -e 20 -c 5 -i 65 -a 5 - -t 136.26762842930003 -s 21 -d 20 -p SRM -e 20 -c 5 -i 65 -a 5 h -t 136.26762842930003 -s 21 -d 20 -p SRM -e 20 -c 5 -i 65 -a 5 + -t 136.26762842930003 -s 21 -d 24 -p SRM -e 20 -c 5 -i 65 -a 5 - -t 136.26762842930003 -s 21 -d 24 -p SRM -e 20 -c 5 -i 65 -a 5 h -t 136.26762842930003 -s 21 -d 24 -p SRM -e 20 -c 5 -i 65 -a 5 r -t 136.26762842930003 -s 23 -d 25 -p SRM -e 20 -c 5 -i 65 -a 5 r -t 136.27778842930005 -s 21 -d 20 -p SRM -e 20 -c 5 -i 65 -a 5 + -t 136.27778842930005 -s 20 -d 22 -p SRM -e 20 -c 5 -i 65 -a 5 - -t 136.27778842930005 -s 20 -d 22 -p SRM -e 20 -c 5 -i 65 -a 5 h -t 136.27778842930005 -s 20 -d 22 -p SRM -e 20 -c 5 -i 65 -a 5 r -t 136.27778842930005 -s 21 -d 24 -p SRM -e 20 -c 5 -i 65 -a 5 + -t 136.27778842930005 -s 24 -d 21 -p SRM -e 1300 -c 5 -i 66 -a 4 - -t 136.27778842930005 -s 24 -d 21 -p SRM -e 1300 -c 5 -i 66 -a 4 h -t 136.27778842930005 -s 24 -d 21 -p SRM -e 1300 -c 5 -i 66 -a 4 v -t 136.27778842930005 sim_annotation 136.27778842930005 5 136.27778842930005: node 24 sends repair for msg (5:21) m -t 136.27778842930005 -s 24 -n _o28:1281:p -c blue -h circle m -t 136.27982686489 -s 13 -n _o23:1281:p -c blue -h circle -X + -t 136.28394405163999 -s 10 -d 11 -p SRM -e 1300 -c 5 -i 67 -a 0 - -t 136.28394405163999 -s 10 -d 11 -p SRM -e 1300 -c 5 -i 67 -a 0 h -t 136.28394405163999 -s 10 -d 11 -p SRM -e 1300 -c 5 -i 67 -a 0 + -t 136.28394405163999 -s 10 -d 12 -p SRM -e 1300 -c 5 -i 67 -a 0 - -t 136.28394405163999 -s 10 -d 12 -p SRM -e 1300 -c 5 -i 67 -a 0 h -t 136.28394405163999 -s 10 -d 12 -p SRM -e 1300 -c 5 -i 67 -a 0 v -t 136.28394405163999 sim_annotation 136.28394405163999 6 136.28394405163999: node 10 sends repair for msg (5:11) m -t 136.28394405163999 -s 10 -n _o8:1281:p -c blue -h circle + -t 136.28574550738 -s 14 -d 11 -p SRM -e 1300 -c 5 -i 68 -a 4 - -t 136.28574550738 -s 14 -d 11 -p SRM -e 1300 -c 5 -i 68 -a 4 h -t 136.28574550738 -s 14 -d 11 -p SRM -e 1300 -c 5 -i 68 -a 4 v -t 136.28574550738 sim_annotation 136.28574550738 7 136.28574550738: node 14 sends dup repair for msg (5:11) m -t 136.28574550738 -s 14 -n _o28:1281:p -c blue -h circle r -t 136.28612686488998 -s 11 -d 10 -p SRM -e 1300 -c 5 -i 66 -a 3 + -t 136.28612686488998 -s 10 -d 12 -p SRM -e 1300 -c 5 -i 66 -a 3 r -t 136.28612686488998 -s 11 -d 14 -p SRM -e 1300 -c 5 -i 66 -a 3 r -t 136.28612686488998 -s 16 -d 17 -p SRM -e 1300 -c 5 -i 66 -a 3 r -t 136.28612686488998 -s 16 -d 18 -p SRM -e 1300 -c 5 -i 66 -a 3 r -t 136.28794842930006 -s 20 -d 22 -p SRM -e 20 -c 5 -i 65 -a 5 - -t 136.29434405164 -s 10 -d 12 -p SRM -e 1300 -c 5 -i 66 -a 3 h -t 136.29434405164 -s 10 -d 12 -p SRM -e 1300 -c 5 -i 66 -a 3 r -t 136.29818842930004 -s 24 -d 21 -p SRM -e 1300 -c 5 -i 66 -a 4 + -t 136.29818842930004 -s 21 -d 20 -p SRM -e 1300 -c 5 -i 66 -a 4 - -t 136.29818842930004 -s 21 -d 20 -p SRM -e 1300 -c 5 -i 66 -a 4 h -t 136.29818842930004 -s 21 -d 20 -p SRM -e 1300 -c 5 -i 66 -a 4 + -t 136.29818842930004 -s 21 -d 23 -p SRM -e 1300 -c 5 -i 66 -a 4 - -t 136.29818842930004 -s 21 -d 23 -p SRM -e 1300 -c 5 -i 66 -a 4 h -t 136.29818842930004 -s 21 -d 23 -p SRM -e 1300 -c 5 -i 66 -a 4 r -t 136.30434405163999 -s 10 -d 11 -p SRM -e 1300 -c 5 -i 67 -a 0 + -t 136.30434405163999 -s 11 -d 13 -p SRM -e 1300 -c 5 -i 67 -a 0 - -t 136.30434405163999 -s 11 -d 13 -p SRM -e 1300 -c 5 -i 67 -a 0 h -t 136.30434405163999 -s 11 -d 13 -p SRM -e 1300 -c 5 -i 67 -a 0 + -t 136.30434405163999 -s 11 -d 14 -p SRM -e 1300 -c 5 -i 67 -a 0 - -t 136.30434405163999 -s 11 -d 14 -p SRM -e 1300 -c 5 -i 67 -a 0 h -t 136.30434405163999 -s 11 -d 14 -p SRM -e 1300 -c 5 -i 67 -a 0 r -t 136.30434405163999 -s 10 -d 12 -p SRM -e 1300 -c 5 -i 67 -a 0 r -t 136.30614550737999 -s 14 -d 11 -p SRM -e 1300 -c 5 -i 68 -a 4 + -t 136.30614550737999 -s 11 -d 10 -p SRM -e 1300 -c 5 -i 68 -a 4 - -t 136.30614550737999 -s 11 -d 10 -p SRM -e 1300 -c 5 -i 68 -a 4 h -t 136.30614550737999 -s 11 -d 10 -p SRM -e 1300 -c 5 -i 68 -a 4 + -t 136.30614550737999 -s 11 -d 13 -p SRM -e 1300 -c 5 -i 68 -a 4 r -t 136.31474405163999 -s 10 -d 12 -p SRM -e 1300 -c 5 -i 66 -a 3 - -t 136.31474405163999 -s 11 -d 13 -p SRM -e 1300 -c 5 -i 68 -a 4 h -t 136.31474405163999 -s 11 -d 13 -p SRM -e 1300 -c 5 -i 68 -a 4 r -t 136.31858842930004 -s 21 -d 20 -p SRM -e 1300 -c 5 -i 66 -a 4 + -t 136.31858842930004 -s 20 -d 22 -p SRM -e 1300 -c 5 -i 66 -a 4 - -t 136.31858842930004 -s 20 -d 22 -p SRM -e 1300 -c 5 -i 66 -a 4 h -t 136.31858842930004 -s 20 -d 22 -p SRM -e 1300 -c 5 -i 66 -a 4 r -t 136.31858842930004 -s 21 -d 23 -p SRM -e 1300 -c 5 -i 66 -a 4 + -t 136.31858842930004 -s 23 -d 25 -p SRM -e 1300 -c 5 -i 66 -a 4 - -t 136.31858842930004 -s 23 -d 25 -p SRM -e 1300 -c 5 -i 66 -a 4 h -t 136.31858842930004 -s 23 -d 25 -p SRM -e 1300 -c 5 -i 66 -a 4 + -t 136.31858842930004 -s 23 -d 26 -p SRM -e 1300 -c 5 -i 66 -a 4 - -t 136.31858842930004 -s 23 -d 26 -p SRM -e 1300 -c 5 -i 66 -a 4 h -t 136.31858842930004 -s 23 -d 26 -p SRM -e 1300 -c 5 -i 66 -a 4 r -t 136.32474405163998 -s 11 -d 13 -p SRM -e 1300 -c 5 -i 67 -a 0 + -t 136.32474405163998 -s 13 -d 15 -p SRM -e 1300 -c 5 -i 67 -a 0 - -t 136.32474405163998 -s 13 -d 15 -p SRM -e 1300 -c 5 -i 67 -a 0 h -t 136.32474405163998 -s 13 -d 15 -p SRM -e 1300 -c 5 -i 67 -a 0 + -t 136.32474405163998 -s 13 -d 16 -p SRM -e 1300 -c 5 -i 67 -a 0 - -t 136.32474405163998 -s 13 -d 16 -p SRM -e 1300 -c 5 -i 67 -a 0 h -t 136.32474405163998 -s 13 -d 16 -p SRM -e 1300 -c 5 -i 67 -a 0 r -t 136.32474405163998 -s 11 -d 14 -p SRM -e 1300 -c 5 -i 67 -a 0 r -t 136.32654550737999 -s 11 -d 10 -p SRM -e 1300 -c 5 -i 68 -a 4 + -t 136.32654550737999 -s 10 -d 12 -p SRM -e 1300 -c 5 -i 68 -a 4 - -t 136.32654550737999 -s 10 -d 12 -p SRM -e 1300 -c 5 -i 68 -a 4 h -t 136.32654550737999 -s 10 -d 12 -p SRM -e 1300 -c 5 -i 68 -a 4 r -t 136.33514405163999 -s 11 -d 13 -p SRM -e 1300 -c 5 -i 68 -a 4 + -t 136.33514405163999 -s 13 -d 15 -p SRM -e 1300 -c 5 -i 68 -a 4 + -t 136.33514405163999 -s 13 -d 16 -p SRM -e 1300 -c 5 -i 68 -a 4 - -t 136.33514405163999 -s 13 -d 15 -p SRM -e 1300 -c 5 -i 68 -a 4 h -t 136.33514405163999 -s 13 -d 15 -p SRM -e 1300 -c 5 -i 68 -a 4 - -t 136.33514405163999 -s 13 -d 16 -p SRM -e 1300 -c 5 -i 68 -a 4 h -t 136.33514405163999 -s 13 -d 16 -p SRM -e 1300 -c 5 -i 68 -a 4 r -t 136.33898842930003 -s 20 -d 22 -p SRM -e 1300 -c 5 -i 66 -a 4 r -t 136.33898842930003 -s 23 -d 25 -p SRM -e 1300 -c 5 -i 66 -a 4 r -t 136.33898842930003 -s 23 -d 26 -p SRM -e 1300 -c 5 -i 66 -a 4 + -t 136.33898842930003 -s 26 -d 27 -p SRM -e 1300 -c 5 -i 66 -a 4 - -t 136.33898842930003 -s 26 -d 27 -p SRM -e 1300 -c 5 -i 66 -a 4 h -t 136.33898842930003 -s 26 -d 27 -p SRM -e 1300 -c 5 -i 66 -a 4 + -t 136.33898842930003 -s 26 -d 28 -p SRM -e 1300 -c 5 -i 66 -a 4 - -t 136.33898842930003 -s 26 -d 28 -p SRM -e 1300 -c 5 -i 66 -a 4 h -t 136.33898842930003 -s 26 -d 28 -p SRM -e 1300 -c 5 -i 66 -a 4 m -t 136.33898842930003 -s 26 -n _o38:1281:q -c blue -h square -X r -t 136.34514405163998 -s 13 -d 15 -p SRM -e 1300 -c 5 -i 67 -a 0 r -t 136.34514405163998 -s 13 -d 16 -p SRM -e 1300 -c 5 -i 67 -a 0 + -t 136.34514405163998 -s 16 -d 17 -p SRM -e 1300 -c 5 -i 67 -a 0 - -t 136.34514405163998 -s 16 -d 17 -p SRM -e 1300 -c 5 -i 67 -a 0 h -t 136.34514405163998 -s 16 -d 17 -p SRM -e 1300 -c 5 -i 67 -a 0 + -t 136.34514405163998 -s 16 -d 18 -p SRM -e 1300 -c 5 -i 67 -a 0 - -t 136.34514405163998 -s 16 -d 18 -p SRM -e 1300 -c 5 -i 67 -a 0 h -t 136.34514405163998 -s 16 -d 18 -p SRM -e 1300 -c 5 -i 67 -a 0 r -t 136.34694550737998 -s 10 -d 12 -p SRM -e 1300 -c 5 -i 68 -a 4 r -t 136.35554405163998 -s 13 -d 15 -p SRM -e 1300 -c 5 -i 68 -a 4 r -t 136.35554405163998 -s 13 -d 16 -p SRM -e 1300 -c 5 -i 68 -a 4 + -t 136.35554405163998 -s 16 -d 17 -p SRM -e 1300 -c 5 -i 68 -a 4 + -t 136.35554405163998 -s 16 -d 18 -p SRM -e 1300 -c 5 -i 68 -a 4 - -t 136.35554405163998 -s 16 -d 17 -p SRM -e 1300 -c 5 -i 68 -a 4 h -t 136.35554405163998 -s 16 -d 17 -p SRM -e 1300 -c 5 -i 68 -a 4 - -t 136.35554405163998 -s 16 -d 18 -p SRM -e 1300 -c 5 -i 68 -a 4 h -t 136.35554405163998 -s 16 -d 18 -p SRM -e 1300 -c 5 -i 68 -a 4 r -t 136.35938842930003 -s 26 -d 27 -p SRM -e 1300 -c 5 -i 66 -a 4 r -t 136.35938842930003 -s 26 -d 28 -p SRM -e 1300 -c 5 -i 66 -a 4 r -t 136.36554405163997 -s 16 -d 17 -p SRM -e 1300 -c 5 -i 67 -a 0 r -t 136.36554405163997 -s 16 -d 18 -p SRM -e 1300 -c 5 -i 67 -a 0 r -t 136.37594405163998 -s 16 -d 17 -p SRM -e 1300 -c 5 -i 68 -a 4 r -t 136.37594405163998 -s 16 -d 18 -p SRM -e 1300 -c 5 -i 68 -a 4 m -t 136.38594405164 -s 10 -n _o8:1281:p -c blue -h circle -X m -t 136.38774550738 -s 14 -n _o28:1281:p -c blue -h circle -X m -t 136.44878842930001 -s 24 -n _o28:1281:p -c blue -h circle -X + -t 136.67368638802 -s 16 -d 13 -p SRM -e 168 -c 42 -i 69 -a 42 + -t 136.67368638802 -s 26 -d 23 -p SRM -e 168 -c 42 -i 67 -a 42 - -t 136.67368638802 -s 16 -d 13 -p SRM -e 168 -c 42 -i 69 -a 42 - -t 136.67368638802 -s 26 -d 23 -p SRM -e 168 -c 42 -i 67 -a 42 h -t 136.67368638802 -s 16 -d 13 -p SRM -e 168 -c 42 -i 69 -a 42 + -t 136.67368638802 -s 16 -d 17 -p SRM -e 168 -c 42 -i 69 -a 42 - -t 136.67368638802 -s 16 -d 17 -p SRM -e 168 -c 42 -i 69 -a 42 h -t 136.67368638802 -s 16 -d 17 -p SRM -e 168 -c 42 -i 69 -a 42 + -t 136.67368638802 -s 16 -d 18 -p SRM -e 168 -c 42 -i 69 -a 42 - -t 136.67368638802 -s 16 -d 18 -p SRM -e 168 -c 42 -i 69 -a 42 h -t 136.67368638802 -s 16 -d 18 -p SRM -e 168 -c 42 -i 69 -a 42 h -t 136.67368638802 -s 26 -d 23 -p SRM -e 168 -c 42 -i 67 -a 42 + -t 136.67368638802 -s 26 -d 27 -p SRM -e 168 -c 42 -i 67 -a 42 - -t 136.67368638802 -s 26 -d 27 -p SRM -e 168 -c 42 -i 67 -a 42 h -t 136.67368638802 -s 26 -d 27 -p SRM -e 168 -c 42 -i 67 -a 42 + -t 136.67368638802 -s 26 -d 28 -p SRM -e 168 -c 42 -i 67 -a 42 - -t 136.67368638802 -s 26 -d 28 -p SRM -e 168 -c 42 -i 67 -a 42 h -t 136.67368638802 -s 26 -d 28 -p SRM -e 168 -c 42 -i 67 -a 42 r -t 136.68503038802001 -s 16 -d 13 -p SRM -e 168 -c 42 -i 69 -a 42 + -t 136.68503038802001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 69 -a 42 - -t 136.68503038802001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 69 -a 42 h -t 136.68503038802001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 69 -a 42 + -t 136.68503038802001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 69 -a 42 - -t 136.68503038802001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 69 -a 42 h -t 136.68503038802001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 69 -a 42 r -t 136.68503038802001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 69 -a 42 r -t 136.68503038802001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 69 -a 42 r -t 136.68503038802001 -s 26 -d 23 -p SRM -e 168 -c 42 -i 67 -a 42 + -t 136.68503038802001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 67 -a 42 - -t 136.68503038802001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 67 -a 42 h -t 136.68503038802001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 67 -a 42 + -t 136.68503038802001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 67 -a 42 - -t 136.68503038802001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 67 -a 42 h -t 136.68503038802001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 67 -a 42 r -t 136.68503038802001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 67 -a 42 r -t 136.68503038802001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 67 -a 42 r -t 136.69637438802002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 69 -a 42 + -t 136.69637438802002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 69 -a 42 - -t 136.69637438802002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 69 -a 42 h -t 136.69637438802002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 69 -a 42 + -t 136.69637438802002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 69 -a 42 - -t 136.69637438802002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 69 -a 42 h -t 136.69637438802002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 69 -a 42 r -t 136.69637438802002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 69 -a 42 r -t 136.69637438802002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 67 -a 42 + -t 136.69637438802002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 67 -a 42 - -t 136.69637438802002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 67 -a 42 h -t 136.69637438802002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 67 -a 42 + -t 136.69637438802002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 67 -a 42 - -t 136.69637438802002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 67 -a 42 h -t 136.69637438802002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 67 -a 42 r -t 136.69637438802002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 67 -a 42 r -t 136.70771838802003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 69 -a 42 + -t 136.70771838802003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 69 -a 42 - -t 136.70771838802003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 69 -a 42 h -t 136.70771838802003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 69 -a 42 r -t 136.70771838802003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 69 -a 42 r -t 136.70771838802003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 67 -a 42 + -t 136.70771838802003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 67 -a 42 - -t 136.70771838802003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 67 -a 42 h -t 136.70771838802003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 67 -a 42 r -t 136.70771838802003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 67 -a 42 r -t 136.71906238802003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 69 -a 42 r -t 136.71906238802003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 67 -a 42 + -t 139.82896932649001 -s 12 -d 10 -p SRM -e 168 -c 42 -i 70 -a 42 + -t 139.82896932649001 -s 22 -d 20 -p SRM -e 168 -c 42 -i 68 -a 42 - -t 139.82896932649001 -s 12 -d 10 -p SRM -e 168 -c 42 -i 70 -a 42 - -t 139.82896932649001 -s 22 -d 20 -p SRM -e 168 -c 42 -i 68 -a 42 h -t 139.82896932649001 -s 12 -d 10 -p SRM -e 168 -c 42 -i 70 -a 42 h -t 139.82896932649001 -s 22 -d 20 -p SRM -e 168 -c 42 -i 68 -a 42 r -t 139.84031332649002 -s 12 -d 10 -p SRM -e 168 -c 42 -i 70 -a 42 + -t 139.84031332649002 -s 10 -d 11 -p SRM -e 168 -c 42 -i 70 -a 42 - -t 139.84031332649002 -s 10 -d 11 -p SRM -e 168 -c 42 -i 70 -a 42 h -t 139.84031332649002 -s 10 -d 11 -p SRM -e 168 -c 42 -i 70 -a 42 r -t 139.84031332649002 -s 22 -d 20 -p SRM -e 168 -c 42 -i 68 -a 42 + -t 139.84031332649002 -s 20 -d 21 -p SRM -e 168 -c 42 -i 68 -a 42 - -t 139.84031332649002 -s 20 -d 21 -p SRM -e 168 -c 42 -i 68 -a 42 h -t 139.84031332649002 -s 20 -d 21 -p SRM -e 168 -c 42 -i 68 -a 42 r -t 139.85165732649003 -s 10 -d 11 -p SRM -e 168 -c 42 -i 70 -a 42 + -t 139.85165732649003 -s 11 -d 13 -p SRM -e 168 -c 42 -i 70 -a 42 - -t 139.85165732649003 -s 11 -d 13 -p SRM -e 168 -c 42 -i 70 -a 42 h -t 139.85165732649003 -s 11 -d 13 -p SRM -e 168 -c 42 -i 70 -a 42 + -t 139.85165732649003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 70 -a 42 - -t 139.85165732649003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 70 -a 42 h -t 139.85165732649003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 70 -a 42 r -t 139.85165732649003 -s 20 -d 21 -p SRM -e 168 -c 42 -i 68 -a 42 + -t 139.85165732649003 -s 21 -d 23 -p SRM -e 168 -c 42 -i 68 -a 42 - -t 139.85165732649003 -s 21 -d 23 -p SRM -e 168 -c 42 -i 68 -a 42 h -t 139.85165732649003 -s 21 -d 23 -p SRM -e 168 -c 42 -i 68 -a 42 + -t 139.85165732649003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 68 -a 42 - -t 139.85165732649003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 68 -a 42 h -t 139.85165732649003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 68 -a 42 r -t 139.86300132649004 -s 11 -d 13 -p SRM -e 168 -c 42 -i 70 -a 42 + -t 139.86300132649004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 70 -a 42 - -t 139.86300132649004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 70 -a 42 h -t 139.86300132649004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 70 -a 42 + -t 139.86300132649004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 70 -a 42 - -t 139.86300132649004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 70 -a 42 h -t 139.86300132649004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 70 -a 42 r -t 139.86300132649004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 70 -a 42 r -t 139.86300132649004 -s 21 -d 23 -p SRM -e 168 -c 42 -i 68 -a 42 + -t 139.86300132649004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 68 -a 42 - -t 139.86300132649004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 68 -a 42 h -t 139.86300132649004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 68 -a 42 + -t 139.86300132649004 -s 23 -d 26 -p SRM -e 168 -c 42 -i 68 -a 42 - -t 139.86300132649004 -s 23 -d 26 -p SRM -e 168 -c 42 -i 68 -a 42 h -t 139.86300132649004 -s 23 -d 26 -p SRM -e 168 -c 42 -i 68 -a 42 r -t 139.86300132649004 -s 21 -d 24 -p SRM -e 168 -c 42 -i 68 -a 42 r -t 139.87434532649004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 70 -a 42 r -t 139.87434532649004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 70 -a 42 + -t 139.87434532649004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 70 -a 42 - -t 139.87434532649004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 70 -a 42 h -t 139.87434532649004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 70 -a 42 + -t 139.87434532649004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 70 -a 42 - -t 139.87434532649004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 70 -a 42 h -t 139.87434532649004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 70 -a 42 r -t 139.87434532649004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 68 -a 42 r -t 139.87434532649004 -s 23 -d 26 -p SRM -e 168 -c 42 -i 68 -a 42 + -t 139.87434532649004 -s 26 -d 27 -p SRM -e 168 -c 42 -i 68 -a 42 - -t 139.87434532649004 -s 26 -d 27 -p SRM -e 168 -c 42 -i 68 -a 42 h -t 139.87434532649004 -s 26 -d 27 -p SRM -e 168 -c 42 -i 68 -a 42 + -t 139.87434532649004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 68 -a 42 - -t 139.87434532649004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 68 -a 42 h -t 139.87434532649004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 68 -a 42 r -t 139.88568932649005 -s 16 -d 17 -p SRM -e 168 -c 42 -i 70 -a 42 r -t 139.88568932649005 -s 16 -d 18 -p SRM -e 168 -c 42 -i 70 -a 42 r -t 139.88568932649005 -s 26 -d 27 -p SRM -e 168 -c 42 -i 68 -a 42 r -t 139.88568932649005 -s 26 -d 28 -p SRM -e 168 -c 42 -i 68 -a 42 + -t 140.00243551168001 -s 15 -d 13 -p SRM -e 168 -c 42 -i 71 -a 42 + -t 140.00243551168001 -s 25 -d 23 -p SRM -e 168 -c 42 -i 69 -a 42 - -t 140.00243551168001 -s 15 -d 13 -p SRM -e 168 -c 42 -i 71 -a 42 - -t 140.00243551168001 -s 25 -d 23 -p SRM -e 168 -c 42 -i 69 -a 42 h -t 140.00243551168001 -s 15 -d 13 -p SRM -e 168 -c 42 -i 71 -a 42 h -t 140.00243551168001 -s 25 -d 23 -p SRM -e 168 -c 42 -i 69 -a 42 r -t 140.01377951168001 -s 15 -d 13 -p SRM -e 168 -c 42 -i 71 -a 42 + -t 140.01377951168001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 71 -a 42 - -t 140.01377951168001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 71 -a 42 h -t 140.01377951168001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 71 -a 42 + -t 140.01377951168001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 71 -a 42 - -t 140.01377951168001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 71 -a 42 h -t 140.01377951168001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 71 -a 42 r -t 140.01377951168001 -s 25 -d 23 -p SRM -e 168 -c 42 -i 69 -a 42 + -t 140.01377951168001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 69 -a 42 - -t 140.01377951168001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 69 -a 42 h -t 140.01377951168001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 69 -a 42 + -t 140.01377951168001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 69 -a 42 - -t 140.01377951168001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 69 -a 42 h -t 140.01377951168001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 69 -a 42 r -t 140.02512351168002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 71 -a 42 + -t 140.02512351168002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 71 -a 42 - -t 140.02512351168002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 71 -a 42 h -t 140.02512351168002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 71 -a 42 + -t 140.02512351168002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 71 -a 42 - -t 140.02512351168002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 71 -a 42 h -t 140.02512351168002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 71 -a 42 r -t 140.02512351168002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 71 -a 42 + -t 140.02512351168002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 71 -a 42 - -t 140.02512351168002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 71 -a 42 h -t 140.02512351168002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 71 -a 42 + -t 140.02512351168002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 71 -a 42 - -t 140.02512351168002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 71 -a 42 h -t 140.02512351168002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 71 -a 42 r -t 140.02512351168002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 69 -a 42 + -t 140.02512351168002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 69 -a 42 - -t 140.02512351168002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 69 -a 42 h -t 140.02512351168002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 69 -a 42 + -t 140.02512351168002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 69 -a 42 - -t 140.02512351168002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 69 -a 42 h -t 140.02512351168002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 69 -a 42 r -t 140.02512351168002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 69 -a 42 + -t 140.02512351168002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 69 -a 42 - -t 140.02512351168002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 69 -a 42 h -t 140.02512351168002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 69 -a 42 + -t 140.02512351168002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 69 -a 42 - -t 140.02512351168002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 69 -a 42 h -t 140.02512351168002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 69 -a 42 r -t 140.03646751168003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 71 -a 42 + -t 140.03646751168003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 71 -a 42 - -t 140.03646751168003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 71 -a 42 h -t 140.03646751168003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 71 -a 42 r -t 140.03646751168003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 71 -a 42 r -t 140.03646751168003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 71 -a 42 r -t 140.03646751168003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 71 -a 42 r -t 140.03646751168003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 69 -a 42 + -t 140.03646751168003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 69 -a 42 - -t 140.03646751168003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 69 -a 42 h -t 140.03646751168003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 69 -a 42 r -t 140.03646751168003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 69 -a 42 r -t 140.03646751168003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 69 -a 42 r -t 140.03646751168003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 69 -a 42 r -t 140.04781151168004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 71 -a 42 r -t 140.04781151168004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 69 -a 42 + -t 140.67453880151001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 72 -a 42 + -t 140.67453880151001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 70 -a 42 - -t 140.67453880151001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 72 -a 42 - -t 140.67453880151001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 70 -a 42 h -t 140.67453880151001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 72 -a 42 + -t 140.67453880151001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 72 -a 42 - -t 140.67453880151001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 72 -a 42 h -t 140.67453880151001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 72 -a 42 + -t 140.67453880151001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 72 -a 42 - -t 140.67453880151001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 72 -a 42 h -t 140.67453880151001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 72 -a 42 h -t 140.67453880151001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 70 -a 42 + -t 140.67453880151001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 70 -a 42 - -t 140.67453880151001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 70 -a 42 h -t 140.67453880151001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 70 -a 42 + -t 140.67453880151001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 70 -a 42 - -t 140.67453880151001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 70 -a 42 h -t 140.67453880151001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 70 -a 42 r -t 140.68588280151002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 72 -a 42 + -t 140.68588280151002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 72 -a 42 - -t 140.68588280151002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 72 -a 42 h -t 140.68588280151002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 72 -a 42 + -t 140.68588280151002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 72 -a 42 - -t 140.68588280151002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 72 -a 42 h -t 140.68588280151002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 72 -a 42 r -t 140.68588280151002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 72 -a 42 r -t 140.68588280151002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 72 -a 42 + -t 140.68588280151002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 72 -a 42 - -t 140.68588280151002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 72 -a 42 h -t 140.68588280151002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 72 -a 42 + -t 140.68588280151002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 72 -a 42 - -t 140.68588280151002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 72 -a 42 h -t 140.68588280151002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 72 -a 42 r -t 140.68588280151002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 70 -a 42 + -t 140.68588280151002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 70 -a 42 - -t 140.68588280151002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 70 -a 42 h -t 140.68588280151002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 70 -a 42 + -t 140.68588280151002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 70 -a 42 - -t 140.68588280151002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 70 -a 42 h -t 140.68588280151002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 70 -a 42 r -t 140.68588280151002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 70 -a 42 r -t 140.68588280151002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 70 -a 42 + -t 140.68588280151002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 70 -a 42 - -t 140.68588280151002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 70 -a 42 h -t 140.68588280151002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 70 -a 42 + -t 140.68588280151002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 70 -a 42 - -t 140.68588280151002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 70 -a 42 h -t 140.68588280151002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 70 -a 42 r -t 140.69722680151003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 72 -a 42 + -t 140.69722680151003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 72 -a 42 - -t 140.69722680151003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 72 -a 42 h -t 140.69722680151003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 72 -a 42 r -t 140.69722680151003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 72 -a 42 r -t 140.69722680151003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 72 -a 42 r -t 140.69722680151003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 72 -a 42 r -t 140.69722680151003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 70 -a 42 + -t 140.69722680151003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 70 -a 42 - -t 140.69722680151003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 70 -a 42 h -t 140.69722680151003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 70 -a 42 r -t 140.69722680151003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 70 -a 42 r -t 140.69722680151003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 70 -a 42 r -t 140.69722680151003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 70 -a 42 r -t 140.70857080151004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 72 -a 42 r -t 140.70857080151004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 70 -a 42 + -t 141.41302214467035 -s 18 -d 16 -p cbr -e 1280 -c 8 -i 73 -a 8 + -t 141.41302214467035 -s 28 -d 26 -p cbr -e 1280 -c 8 -i 71 -a 8 - -t 141.41302214467035 -s 18 -d 16 -p cbr -e 1280 -c 8 -i 73 -a 8 - -t 141.41302214467035 -s 28 -d 26 -p cbr -e 1280 -c 8 -i 71 -a 8 h -t 141.41302214467035 -s 18 -d 16 -p cbr -e 1280 -c 8 -i 73 -a 8 h -t 141.41302214467035 -s 28 -d 26 -p cbr -e 1280 -c 8 -i 71 -a 8 r -t 141.43326214467035 -s 18 -d 16 -p cbr -e 1280 -c 8 -i 73 -a 8 + -t 141.43326214467035 -s 16 -d 13 -p cbr -e 1280 -c 8 -i 73 -a 8 - -t 141.43326214467035 -s 16 -d 13 -p cbr -e 1280 -c 8 -i 73 -a 8 h -t 141.43326214467035 -s 16 -d 13 -p cbr -e 1280 -c 8 -i 73 -a 8 + -t 141.43326214467035 -s 16 -d 17 -p cbr -e 1280 -c 8 -i 73 -a 8 - -t 141.43326214467035 -s 16 -d 17 -p cbr -e 1280 -c 8 -i 73 -a 8 h -t 141.43326214467035 -s 16 -d 17 -p cbr -e 1280 -c 8 -i 73 -a 8 r -t 141.43326214467035 -s 28 -d 26 -p cbr -e 1280 -c 8 -i 71 -a 8 + -t 141.43326214467035 -s 26 -d 23 -p cbr -e 1280 -c 8 -i 71 -a 8 - -t 141.43326214467035 -s 26 -d 23 -p cbr -e 1280 -c 8 -i 71 -a 8 h -t 141.43326214467035 -s 26 -d 23 -p cbr -e 1280 -c 8 -i 71 -a 8 + -t 141.43326214467035 -s 26 -d 27 -p cbr -e 1280 -c 8 -i 71 -a 8 - -t 141.43326214467035 -s 26 -d 27 -p cbr -e 1280 -c 8 -i 71 -a 8 h -t 141.43326214467035 -s 26 -d 27 -p cbr -e 1280 -c 8 -i 71 -a 8 r -t 141.45350214467035 -s 16 -d 13 -p cbr -e 1280 -c 8 -i 73 -a 8 + -t 141.45350214467035 -s 13 -d 11 -p cbr -e 1280 -c 8 -i 73 -a 8 - -t 141.45350214467035 -s 13 -d 11 -p cbr -e 1280 -c 8 -i 73 -a 8 h -t 141.45350214467035 -s 13 -d 11 -p cbr -e 1280 -c 8 -i 73 -a 8 + -t 141.45350214467035 -s 13 -d 15 -p cbr -e 1280 -c 8 -i 73 -a 8 - -t 141.45350214467035 -s 13 -d 15 -p cbr -e 1280 -c 8 -i 73 -a 8 h -t 141.45350214467035 -s 13 -d 15 -p cbr -e 1280 -c 8 -i 73 -a 8 r -t 141.45350214467035 -s 16 -d 17 -p cbr -e 1280 -c 8 -i 73 -a 8 r -t 141.45350214467035 -s 26 -d 23 -p cbr -e 1280 -c 8 -i 71 -a 8 + -t 141.45350214467035 -s 23 -d 21 -p cbr -e 1280 -c 8 -i 71 -a 8 - -t 141.45350214467035 -s 23 -d 21 -p cbr -e 1280 -c 8 -i 71 -a 8 h -t 141.45350214467035 -s 23 -d 21 -p cbr -e 1280 -c 8 -i 71 -a 8 + -t 141.45350214467035 -s 23 -d 25 -p cbr -e 1280 -c 8 -i 71 -a 8 - -t 141.45350214467035 -s 23 -d 25 -p cbr -e 1280 -c 8 -i 71 -a 8 h -t 141.45350214467035 -s 23 -d 25 -p cbr -e 1280 -c 8 -i 71 -a 8 r -t 141.45350214467035 -s 26 -d 27 -p cbr -e 1280 -c 8 -i 71 -a 8 r -t 141.47374214467035 -s 13 -d 11 -p cbr -e 1280 -c 8 -i 73 -a 8 + -t 141.47374214467035 -s 11 -d 10 -p cbr -e 1280 -c 8 -i 73 -a 8 - -t 141.47374214467035 -s 11 -d 10 -p cbr -e 1280 -c 8 -i 73 -a 8 h -t 141.47374214467035 -s 11 -d 10 -p cbr -e 1280 -c 8 -i 73 -a 8 + -t 141.47374214467035 -s 11 -d 14 -p cbr -e 1280 -c 8 -i 73 -a 8 - -t 141.47374214467035 -s 11 -d 14 -p cbr -e 1280 -c 8 -i 73 -a 8 h -t 141.47374214467035 -s 11 -d 14 -p cbr -e 1280 -c 8 -i 73 -a 8 r -t 141.47374214467035 -s 13 -d 15 -p cbr -e 1280 -c 8 -i 73 -a 8 r -t 141.47374214467035 -s 23 -d 21 -p cbr -e 1280 -c 8 -i 71 -a 8 + -t 141.47374214467035 -s 21 -d 20 -p cbr -e 1280 -c 8 -i 71 -a 8 - -t 141.47374214467035 -s 21 -d 20 -p cbr -e 1280 -c 8 -i 71 -a 8 h -t 141.47374214467035 -s 21 -d 20 -p cbr -e 1280 -c 8 -i 71 -a 8 + -t 141.47374214467035 -s 21 -d 24 -p cbr -e 1280 -c 8 -i 71 -a 8 - -t 141.47374214467035 -s 21 -d 24 -p cbr -e 1280 -c 8 -i 71 -a 8 h -t 141.47374214467035 -s 21 -d 24 -p cbr -e 1280 -c 8 -i 71 -a 8 r -t 141.47374214467035 -s 23 -d 25 -p cbr -e 1280 -c 8 -i 71 -a 8 r -t 141.49398214467035 -s 11 -d 10 -p cbr -e 1280 -c 8 -i 73 -a 8 + -t 141.49398214467035 -s 10 -d 12 -p cbr -e 1280 -c 8 -i 73 -a 8 - -t 141.49398214467035 -s 10 -d 12 -p cbr -e 1280 -c 8 -i 73 -a 8 h -t 141.49398214467035 -s 10 -d 12 -p cbr -e 1280 -c 8 -i 73 -a 8 r -t 141.49398214467035 -s 11 -d 14 -p cbr -e 1280 -c 8 -i 73 -a 8 r -t 141.49398214467035 -s 21 -d 20 -p cbr -e 1280 -c 8 -i 71 -a 8 + -t 141.49398214467035 -s 20 -d 22 -p cbr -e 1280 -c 8 -i 71 -a 8 - -t 141.49398214467035 -s 20 -d 22 -p cbr -e 1280 -c 8 -i 71 -a 8 h -t 141.49398214467035 -s 20 -d 22 -p cbr -e 1280 -c 8 -i 71 -a 8 r -t 141.49398214467035 -s 21 -d 24 -p cbr -e 1280 -c 8 -i 71 -a 8 r -t 141.51422214467036 -s 10 -d 12 -p cbr -e 1280 -c 8 -i 73 -a 8 r -t 141.51422214467036 -s 20 -d 22 -p cbr -e 1280 -c 8 -i 71 -a 8 + -t 141.75442645664 -s 17 -d 16 -p SRM -e 168 -c 42 -i 74 -a 42 + -t 141.75442645664 -s 27 -d 26 -p SRM -e 168 -c 42 -i 72 -a 42 - -t 141.75442645664 -s 17 -d 16 -p SRM -e 168 -c 42 -i 74 -a 42 - -t 141.75442645664 -s 27 -d 26 -p SRM -e 168 -c 42 -i 72 -a 42 h -t 141.75442645664 -s 17 -d 16 -p SRM -e 168 -c 42 -i 74 -a 42 h -t 141.75442645664 -s 27 -d 26 -p SRM -e 168 -c 42 -i 72 -a 42 r -t 141.76577045664001 -s 17 -d 16 -p SRM -e 168 -c 42 -i 74 -a 42 + -t 141.76577045664001 -s 16 -d 13 -p SRM -e 168 -c 42 -i 74 -a 42 - -t 141.76577045664001 -s 16 -d 13 -p SRM -e 168 -c 42 -i 74 -a 42 h -t 141.76577045664001 -s 16 -d 13 -p SRM -e 168 -c 42 -i 74 -a 42 + -t 141.76577045664001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 74 -a 42 - -t 141.76577045664001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 74 -a 42 h -t 141.76577045664001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 74 -a 42 r -t 141.76577045664001 -s 27 -d 26 -p SRM -e 168 -c 42 -i 72 -a 42 + -t 141.76577045664001 -s 26 -d 23 -p SRM -e 168 -c 42 -i 72 -a 42 - -t 141.76577045664001 -s 26 -d 23 -p SRM -e 168 -c 42 -i 72 -a 42 h -t 141.76577045664001 -s 26 -d 23 -p SRM -e 168 -c 42 -i 72 -a 42 + -t 141.76577045664001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 72 -a 42 - -t 141.76577045664001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 72 -a 42 h -t 141.76577045664001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 72 -a 42 r -t 141.77711445664002 -s 16 -d 13 -p SRM -e 168 -c 42 -i 74 -a 42 + -t 141.77711445664002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 74 -a 42 - -t 141.77711445664002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 74 -a 42 h -t 141.77711445664002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 74 -a 42 + -t 141.77711445664002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 74 -a 42 - -t 141.77711445664002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 74 -a 42 h -t 141.77711445664002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 74 -a 42 r -t 141.77711445664002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 74 -a 42 r -t 141.77711445664002 -s 26 -d 23 -p SRM -e 168 -c 42 -i 72 -a 42 + -t 141.77711445664002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 72 -a 42 - -t 141.77711445664002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 72 -a 42 h -t 141.77711445664002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 72 -a 42 + -t 141.77711445664002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 72 -a 42 - -t 141.77711445664002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 72 -a 42 h -t 141.77711445664002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 72 -a 42 r -t 141.77711445664002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 72 -a 42 r -t 141.78845845664003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 74 -a 42 + -t 141.78845845664003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 74 -a 42 - -t 141.78845845664003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 74 -a 42 h -t 141.78845845664003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 74 -a 42 + -t 141.78845845664003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 74 -a 42 - -t 141.78845845664003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 74 -a 42 h -t 141.78845845664003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 74 -a 42 r -t 141.78845845664003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 74 -a 42 r -t 141.78845845664003 -s 23 -d 21 -p SRM -e 168 -c 42 -i 72 -a 42 + -t 141.78845845664003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 72 -a 42 - -t 141.78845845664003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 72 -a 42 h -t 141.78845845664003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 72 -a 42 + -t 141.78845845664003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 72 -a 42 - -t 141.78845845664003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 72 -a 42 h -t 141.78845845664003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 72 -a 42 r -t 141.78845845664003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 72 -a 42 r -t 141.79980245664004 -s 11 -d 10 -p SRM -e 168 -c 42 -i 74 -a 42 + -t 141.79980245664004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 74 -a 42 - -t 141.79980245664004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 74 -a 42 h -t 141.79980245664004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 74 -a 42 r -t 141.79980245664004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 74 -a 42 r -t 141.79980245664004 -s 21 -d 20 -p SRM -e 168 -c 42 -i 72 -a 42 + -t 141.79980245664004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 72 -a 42 - -t 141.79980245664004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 72 -a 42 h -t 141.79980245664004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 72 -a 42 r -t 141.79980245664004 -s 21 -d 24 -p SRM -e 168 -c 42 -i 72 -a 42 r -t 141.81114645664005 -s 10 -d 12 -p SRM -e 168 -c 42 -i 74 -a 42 r -t 141.81114645664005 -s 20 -d 22 -p SRM -e 168 -c 42 -i 72 -a 42 + -t 142.08697894568999 -s 10 -d 11 -p SRM -e 168 -c 42 -i 75 -a 42 + -t 142.08697894568999 -s 20 -d 21 -p SRM -e 168 -c 42 -i 73 -a 42 - -t 142.08697894568999 -s 10 -d 11 -p SRM -e 168 -c 42 -i 75 -a 42 - -t 142.08697894568999 -s 20 -d 21 -p SRM -e 168 -c 42 -i 73 -a 42 h -t 142.08697894568999 -s 10 -d 11 -p SRM -e 168 -c 42 -i 75 -a 42 + -t 142.08697894568999 -s 10 -d 12 -p SRM -e 168 -c 42 -i 75 -a 42 - -t 142.08697894568999 -s 10 -d 12 -p SRM -e 168 -c 42 -i 75 -a 42 h -t 142.08697894568999 -s 10 -d 12 -p SRM -e 168 -c 42 -i 75 -a 42 h -t 142.08697894568999 -s 20 -d 21 -p SRM -e 168 -c 42 -i 73 -a 42 + -t 142.08697894568999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 73 -a 42 - -t 142.08697894568999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 73 -a 42 h -t 142.08697894568999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 73 -a 42 r -t 142.09832294569 -s 10 -d 11 -p SRM -e 168 -c 42 -i 75 -a 42 + -t 142.09832294569 -s 11 -d 13 -p SRM -e 168 -c 42 -i 75 -a 42 - -t 142.09832294569 -s 11 -d 13 -p SRM -e 168 -c 42 -i 75 -a 42 h -t 142.09832294569 -s 11 -d 13 -p SRM -e 168 -c 42 -i 75 -a 42 + -t 142.09832294569 -s 11 -d 14 -p SRM -e 168 -c 42 -i 75 -a 42 - -t 142.09832294569 -s 11 -d 14 -p SRM -e 168 -c 42 -i 75 -a 42 h -t 142.09832294569 -s 11 -d 14 -p SRM -e 168 -c 42 -i 75 -a 42 r -t 142.09832294569 -s 10 -d 12 -p SRM -e 168 -c 42 -i 75 -a 42 r -t 142.09832294569 -s 20 -d 21 -p SRM -e 168 -c 42 -i 73 -a 42 + -t 142.09832294569 -s 21 -d 23 -p SRM -e 168 -c 42 -i 73 -a 42 - -t 142.09832294569 -s 21 -d 23 -p SRM -e 168 -c 42 -i 73 -a 42 h -t 142.09832294569 -s 21 -d 23 -p SRM -e 168 -c 42 -i 73 -a 42 + -t 142.09832294569 -s 21 -d 24 -p SRM -e 168 -c 42 -i 73 -a 42 - -t 142.09832294569 -s 21 -d 24 -p SRM -e 168 -c 42 -i 73 -a 42 h -t 142.09832294569 -s 21 -d 24 -p SRM -e 168 -c 42 -i 73 -a 42 r -t 142.09832294569 -s 20 -d 22 -p SRM -e 168 -c 42 -i 73 -a 42 r -t 142.10966694569001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 75 -a 42 + -t 142.10966694569001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 75 -a 42 - -t 142.10966694569001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 75 -a 42 h -t 142.10966694569001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 75 -a 42 + -t 142.10966694569001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 75 -a 42 - -t 142.10966694569001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 75 -a 42 h -t 142.10966694569001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 75 -a 42 r -t 142.10966694569001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 75 -a 42 r -t 142.10966694569001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 73 -a 42 + -t 142.10966694569001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 73 -a 42 - -t 142.10966694569001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 73 -a 42 h -t 142.10966694569001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 73 -a 42 + -t 142.10966694569001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 73 -a 42 - -t 142.10966694569001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 73 -a 42 h -t 142.10966694569001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 73 -a 42 r -t 142.10966694569001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 73 -a 42 r -t 142.12101094569002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 75 -a 42 r -t 142.12101094569002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 75 -a 42 + -t 142.12101094569002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 75 -a 42 - -t 142.12101094569002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 75 -a 42 h -t 142.12101094569002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 75 -a 42 + -t 142.12101094569002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 75 -a 42 - -t 142.12101094569002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 75 -a 42 h -t 142.12101094569002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 75 -a 42 r -t 142.12101094569002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 73 -a 42 r -t 142.12101094569002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 73 -a 42 + -t 142.12101094569002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 73 -a 42 - -t 142.12101094569002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 73 -a 42 h -t 142.12101094569002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 73 -a 42 + -t 142.12101094569002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 73 -a 42 - -t 142.12101094569002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 73 -a 42 h -t 142.12101094569002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 73 -a 42 r -t 142.13235494569003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 75 -a 42 r -t 142.13235494569003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 75 -a 42 r -t 142.13235494569003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 73 -a 42 r -t 142.13235494569003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 73 -a 42 + -t 144.38204493648001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 76 -a 42 + -t 144.38204493648001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 74 -a 42 - -t 144.38204493648001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 76 -a 42 - -t 144.38204493648001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 74 -a 42 h -t 144.38204493648001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 76 -a 42 + -t 144.38204493648001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 76 -a 42 - -t 144.38204493648001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 76 -a 42 h -t 144.38204493648001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 76 -a 42 + -t 144.38204493648001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 76 -a 42 - -t 144.38204493648001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 76 -a 42 h -t 144.38204493648001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 76 -a 42 h -t 144.38204493648001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 74 -a 42 + -t 144.38204493648001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 74 -a 42 - -t 144.38204493648001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 74 -a 42 h -t 144.38204493648001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 74 -a 42 + -t 144.38204493648001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 74 -a 42 - -t 144.38204493648001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 74 -a 42 h -t 144.38204493648001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 74 -a 42 r -t 144.39338893648002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 76 -a 42 + -t 144.39338893648002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 76 -a 42 - -t 144.39338893648002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 76 -a 42 h -t 144.39338893648002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 76 -a 42 r -t 144.39338893648002 -s 11 -d 13 -p SRM -e 168 -c 42 -i 76 -a 42 + -t 144.39338893648002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 76 -a 42 - -t 144.39338893648002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 76 -a 42 h -t 144.39338893648002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 76 -a 42 + -t 144.39338893648002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 76 -a 42 - -t 144.39338893648002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 76 -a 42 h -t 144.39338893648002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 76 -a 42 r -t 144.39338893648002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 76 -a 42 r -t 144.39338893648002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 74 -a 42 + -t 144.39338893648002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 74 -a 42 - -t 144.39338893648002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 74 -a 42 h -t 144.39338893648002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 74 -a 42 r -t 144.39338893648002 -s 21 -d 23 -p SRM -e 168 -c 42 -i 74 -a 42 + -t 144.39338893648002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 74 -a 42 - -t 144.39338893648002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 74 -a 42 h -t 144.39338893648002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 74 -a 42 + -t 144.39338893648002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 74 -a 42 - -t 144.39338893648002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 74 -a 42 h -t 144.39338893648002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 74 -a 42 r -t 144.39338893648002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 74 -a 42 r -t 144.40473293648003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 76 -a 42 r -t 144.40473293648003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 76 -a 42 r -t 144.40473293648003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 76 -a 42 + -t 144.40473293648003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 76 -a 42 - -t 144.40473293648003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 76 -a 42 h -t 144.40473293648003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 76 -a 42 + -t 144.40473293648003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 76 -a 42 - -t 144.40473293648003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 76 -a 42 h -t 144.40473293648003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 76 -a 42 r -t 144.40473293648003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 74 -a 42 r -t 144.40473293648003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 74 -a 42 r -t 144.40473293648003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 74 -a 42 + -t 144.40473293648003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 74 -a 42 - -t 144.40473293648003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 74 -a 42 h -t 144.40473293648003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 74 -a 42 + -t 144.40473293648003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 74 -a 42 - -t 144.40473293648003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 74 -a 42 h -t 144.40473293648003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 74 -a 42 r -t 144.41607693648004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 76 -a 42 r -t 144.41607693648004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 76 -a 42 r -t 144.41607693648004 -s 26 -d 27 -p SRM -e 168 -c 42 -i 74 -a 42 r -t 144.41607693648004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 74 -a 42 + -t 146.49096255562 -s 18 -d 16 -p SRM -e 168 -c 42 -i 77 -a 42 + -t 146.49096255562 -s 28 -d 26 -p SRM -e 168 -c 42 -i 75 -a 42 - -t 146.49096255562 -s 18 -d 16 -p SRM -e 168 -c 42 -i 77 -a 42 - -t 146.49096255562 -s 28 -d 26 -p SRM -e 168 -c 42 -i 75 -a 42 h -t 146.49096255562 -s 18 -d 16 -p SRM -e 168 -c 42 -i 77 -a 42 h -t 146.49096255562 -s 28 -d 26 -p SRM -e 168 -c 42 -i 75 -a 42 r -t 146.50230655562001 -s 18 -d 16 -p SRM -e 168 -c 42 -i 77 -a 42 + -t 146.50230655562001 -s 16 -d 13 -p SRM -e 168 -c 42 -i 77 -a 42 - -t 146.50230655562001 -s 16 -d 13 -p SRM -e 168 -c 42 -i 77 -a 42 h -t 146.50230655562001 -s 16 -d 13 -p SRM -e 168 -c 42 -i 77 -a 42 + -t 146.50230655562001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 77 -a 42 - -t 146.50230655562001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 77 -a 42 h -t 146.50230655562001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 77 -a 42 r -t 146.50230655562001 -s 28 -d 26 -p SRM -e 168 -c 42 -i 75 -a 42 + -t 146.50230655562001 -s 26 -d 23 -p SRM -e 168 -c 42 -i 75 -a 42 - -t 146.50230655562001 -s 26 -d 23 -p SRM -e 168 -c 42 -i 75 -a 42 h -t 146.50230655562001 -s 26 -d 23 -p SRM -e 168 -c 42 -i 75 -a 42 + -t 146.50230655562001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 75 -a 42 - -t 146.50230655562001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 75 -a 42 h -t 146.50230655562001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 75 -a 42 r -t 146.51365055562002 -s 16 -d 13 -p SRM -e 168 -c 42 -i 77 -a 42 + -t 146.51365055562002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 77 -a 42 - -t 146.51365055562002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 77 -a 42 h -t 146.51365055562002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 77 -a 42 + -t 146.51365055562002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 77 -a 42 - -t 146.51365055562002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 77 -a 42 h -t 146.51365055562002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 77 -a 42 r -t 146.51365055562002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 77 -a 42 r -t 146.51365055562002 -s 26 -d 23 -p SRM -e 168 -c 42 -i 75 -a 42 + -t 146.51365055562002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 75 -a 42 - -t 146.51365055562002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 75 -a 42 h -t 146.51365055562002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 75 -a 42 + -t 146.51365055562002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 75 -a 42 - -t 146.51365055562002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 75 -a 42 h -t 146.51365055562002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 75 -a 42 r -t 146.51365055562002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 75 -a 42 r -t 146.52499455562003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 77 -a 42 + -t 146.52499455562003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 77 -a 42 - -t 146.52499455562003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 77 -a 42 h -t 146.52499455562003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 77 -a 42 + -t 146.52499455562003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 77 -a 42 - -t 146.52499455562003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 77 -a 42 h -t 146.52499455562003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 77 -a 42 r -t 146.52499455562003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 77 -a 42 r -t 146.52499455562003 -s 23 -d 21 -p SRM -e 168 -c 42 -i 75 -a 42 + -t 146.52499455562003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 75 -a 42 - -t 146.52499455562003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 75 -a 42 h -t 146.52499455562003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 75 -a 42 + -t 146.52499455562003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 75 -a 42 - -t 146.52499455562003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 75 -a 42 h -t 146.52499455562003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 75 -a 42 r -t 146.52499455562003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 75 -a 42 r -t 146.53633855562003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 77 -a 42 + -t 146.53633855562003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 77 -a 42 - -t 146.53633855562003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 77 -a 42 h -t 146.53633855562003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 77 -a 42 r -t 146.53633855562003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 77 -a 42 r -t 146.53633855562003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 75 -a 42 + -t 146.53633855562003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 75 -a 42 - -t 146.53633855562003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 75 -a 42 h -t 146.53633855562003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 75 -a 42 r -t 146.53633855562003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 75 -a 42 r -t 146.54768255562004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 77 -a 42 r -t 146.54768255562004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 75 -a 42 + -t 155.19539543552 -s 16 -d 13 -p SRM -e 168 -c 42 -i 78 -a 42 - -t 155.19539543552 -s 16 -d 13 -p SRM -e 168 -c 42 -i 78 -a 42 h -t 155.19539543552 -s 16 -d 13 -p SRM -e 168 -c 42 -i 78 -a 42 + -t 155.19539543552 -s 16 -d 17 -p SRM -e 168 -c 42 -i 78 -a 42 - -t 155.19539543552 -s 16 -d 17 -p SRM -e 168 -c 42 -i 78 -a 42 h -t 155.19539543552 -s 16 -d 17 -p SRM -e 168 -c 42 -i 78 -a 42 + -t 155.19539543552 -s 16 -d 18 -p SRM -e 168 -c 42 -i 78 -a 42 - -t 155.19539543552 -s 16 -d 18 -p SRM -e 168 -c 42 -i 78 -a 42 h -t 155.19539543552 -s 16 -d 18 -p SRM -e 168 -c 42 -i 78 -a 42 r -t 155.20673943552001 -s 16 -d 13 -p SRM -e 168 -c 42 -i 78 -a 42 + -t 155.20673943552001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 78 -a 42 - -t 155.20673943552001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 78 -a 42 h -t 155.20673943552001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 78 -a 42 + -t 155.20673943552001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 78 -a 42 - -t 155.20673943552001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 78 -a 42 h -t 155.20673943552001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 78 -a 42 r -t 155.20673943552001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 78 -a 42 r -t 155.20673943552001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 78 -a 42 r -t 155.21808343552001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 78 -a 42 + -t 155.21808343552001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 78 -a 42 - -t 155.21808343552001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 78 -a 42 h -t 155.21808343552001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 78 -a 42 + -t 155.21808343552001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 78 -a 42 - -t 155.21808343552001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 78 -a 42 h -t 155.21808343552001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 78 -a 42 r -t 155.21808343552001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 78 -a 42 r -t 155.22942743552002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 78 -a 42 + -t 155.22942743552002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 78 -a 42 - -t 155.22942743552002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 78 -a 42 h -t 155.22942743552002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 78 -a 42 r -t 155.22942743552002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 78 -a 42 r -t 155.24077143552003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 78 -a 42 + -t 157.34572425338001 -s 14 -d 11 -p SRM -e 168 -c 42 -i 79 -a 42 + -t 157.34572425338001 -s 24 -d 21 -p SRM -e 168 -c 42 -i 76 -a 42 - -t 157.34572425338001 -s 14 -d 11 -p SRM -e 168 -c 42 -i 79 -a 42 - -t 157.34572425338001 -s 24 -d 21 -p SRM -e 168 -c 42 -i 76 -a 42 h -t 157.34572425338001 -s 14 -d 11 -p SRM -e 168 -c 42 -i 79 -a 42 h -t 157.34572425338001 -s 24 -d 21 -p SRM -e 168 -c 42 -i 76 -a 42 r -t 157.35706825338002 -s 14 -d 11 -p SRM -e 168 -c 42 -i 79 -a 42 + -t 157.35706825338002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 79 -a 42 - -t 157.35706825338002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 79 -a 42 h -t 157.35706825338002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 79 -a 42 + -t 157.35706825338002 -s 11 -d 13 -p SRM -e 168 -c 42 -i 79 -a 42 - -t 157.35706825338002 -s 11 -d 13 -p SRM -e 168 -c 42 -i 79 -a 42 h -t 157.35706825338002 -s 11 -d 13 -p SRM -e 168 -c 42 -i 79 -a 42 r -t 157.35706825338002 -s 24 -d 21 -p SRM -e 168 -c 42 -i 76 -a 42 + -t 157.35706825338002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 76 -a 42 - -t 157.35706825338002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 76 -a 42 h -t 157.35706825338002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 76 -a 42 + -t 157.35706825338002 -s 21 -d 23 -p SRM -e 168 -c 42 -i 76 -a 42 - -t 157.35706825338002 -s 21 -d 23 -p SRM -e 168 -c 42 -i 76 -a 42 h -t 157.35706825338002 -s 21 -d 23 -p SRM -e 168 -c 42 -i 76 -a 42 r -t 157.36841225338003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 79 -a 42 + -t 157.36841225338003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 79 -a 42 - -t 157.36841225338003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 79 -a 42 h -t 157.36841225338003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 79 -a 42 r -t 157.36841225338003 -s 11 -d 13 -p SRM -e 168 -c 42 -i 79 -a 42 + -t 157.36841225338003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 79 -a 42 - -t 157.36841225338003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 79 -a 42 h -t 157.36841225338003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 79 -a 42 + -t 157.36841225338003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 79 -a 42 - -t 157.36841225338003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 79 -a 42 h -t 157.36841225338003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 79 -a 42 r -t 157.36841225338003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 76 -a 42 + -t 157.36841225338003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 76 -a 42 - -t 157.36841225338003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 76 -a 42 h -t 157.36841225338003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 76 -a 42 r -t 157.36841225338003 -s 21 -d 23 -p SRM -e 168 -c 42 -i 76 -a 42 + -t 157.36841225338003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 76 -a 42 - -t 157.36841225338003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 76 -a 42 h -t 157.36841225338003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 76 -a 42 + -t 157.36841225338003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 76 -a 42 - -t 157.36841225338003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 76 -a 42 h -t 157.36841225338003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 76 -a 42 r -t 157.37975625338004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 79 -a 42 r -t 157.37975625338004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 79 -a 42 r -t 157.37975625338004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 79 -a 42 + -t 157.37975625338004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 79 -a 42 - -t 157.37975625338004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 79 -a 42 h -t 157.37975625338004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 79 -a 42 + -t 157.37975625338004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 79 -a 42 - -t 157.37975625338004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 79 -a 42 h -t 157.37975625338004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 79 -a 42 r -t 157.37975625338004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 76 -a 42 r -t 157.37975625338004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 76 -a 42 r -t 157.37975625338004 -s 23 -d 26 -p SRM -e 168 -c 42 -i 76 -a 42 + -t 157.37975625338004 -s 26 -d 27 -p SRM -e 168 -c 42 -i 76 -a 42 - -t 157.37975625338004 -s 26 -d 27 -p SRM -e 168 -c 42 -i 76 -a 42 h -t 157.37975625338004 -s 26 -d 27 -p SRM -e 168 -c 42 -i 76 -a 42 + -t 157.37975625338004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 76 -a 42 - -t 157.37975625338004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 76 -a 42 h -t 157.37975625338004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 76 -a 42 r -t 157.39110025338005 -s 16 -d 17 -p SRM -e 168 -c 42 -i 79 -a 42 r -t 157.39110025338005 -s 16 -d 18 -p SRM -e 168 -c 42 -i 79 -a 42 r -t 157.39110025338005 -s 26 -d 27 -p SRM -e 168 -c 42 -i 76 -a 42 r -t 157.39110025338005 -s 26 -d 28 -p SRM -e 168 -c 42 -i 76 -a 42 + -t 157.53252625885 -s 26 -d 23 -p SRM -e 168 -c 42 -i 77 -a 42 - -t 157.53252625885 -s 26 -d 23 -p SRM -e 168 -c 42 -i 77 -a 42 h -t 157.53252625885 -s 26 -d 23 -p SRM -e 168 -c 42 -i 77 -a 42 + -t 157.53252625885 -s 26 -d 27 -p SRM -e 168 -c 42 -i 77 -a 42 - -t 157.53252625885 -s 26 -d 27 -p SRM -e 168 -c 42 -i 77 -a 42 h -t 157.53252625885 -s 26 -d 27 -p SRM -e 168 -c 42 -i 77 -a 42 + -t 157.53252625885 -s 26 -d 28 -p SRM -e 168 -c 42 -i 77 -a 42 - -t 157.53252625885 -s 26 -d 28 -p SRM -e 168 -c 42 -i 77 -a 42 h -t 157.53252625885 -s 26 -d 28 -p SRM -e 168 -c 42 -i 77 -a 42 r -t 157.54387025885001 -s 26 -d 23 -p SRM -e 168 -c 42 -i 77 -a 42 + -t 157.54387025885001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 77 -a 42 - -t 157.54387025885001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 77 -a 42 h -t 157.54387025885001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 77 -a 42 + -t 157.54387025885001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 77 -a 42 - -t 157.54387025885001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 77 -a 42 h -t 157.54387025885001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 77 -a 42 r -t 157.54387025885001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 77 -a 42 r -t 157.54387025885001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 77 -a 42 r -t 157.55521425885001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 77 -a 42 + -t 157.55521425885001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 77 -a 42 - -t 157.55521425885001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 77 -a 42 h -t 157.55521425885001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 77 -a 42 + -t 157.55521425885001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 77 -a 42 - -t 157.55521425885001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 77 -a 42 h -t 157.55521425885001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 77 -a 42 r -t 157.55521425885001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 77 -a 42 r -t 157.56655825885002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 77 -a 42 + -t 157.56655825885002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 77 -a 42 - -t 157.56655825885002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 77 -a 42 h -t 157.56655825885002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 77 -a 42 r -t 157.56655825885002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 77 -a 42 r -t 157.57790225885003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 77 -a 42 + -t 158.19293067311 -s 12 -d 10 -p SRM -e 168 -c 42 -i 80 -a 42 - -t 158.19293067311 -s 12 -d 10 -p SRM -e 168 -c 42 -i 80 -a 42 h -t 158.19293067311 -s 12 -d 10 -p SRM -e 168 -c 42 -i 80 -a 42 r -t 158.20427467311001 -s 12 -d 10 -p SRM -e 168 -c 42 -i 80 -a 42 + -t 158.20427467311001 -s 10 -d 11 -p SRM -e 168 -c 42 -i 80 -a 42 - -t 158.20427467311001 -s 10 -d 11 -p SRM -e 168 -c 42 -i 80 -a 42 h -t 158.20427467311001 -s 10 -d 11 -p SRM -e 168 -c 42 -i 80 -a 42 r -t 158.21561867311001 -s 10 -d 11 -p SRM -e 168 -c 42 -i 80 -a 42 + -t 158.21561867311001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 80 -a 42 - -t 158.21561867311001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 80 -a 42 h -t 158.21561867311001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 80 -a 42 + -t 158.21561867311001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 80 -a 42 - -t 158.21561867311001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 80 -a 42 h -t 158.21561867311001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 80 -a 42 r -t 158.22696267311002 -s 11 -d 13 -p SRM -e 168 -c 42 -i 80 -a 42 + -t 158.22696267311002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 80 -a 42 - -t 158.22696267311002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 80 -a 42 h -t 158.22696267311002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 80 -a 42 + -t 158.22696267311002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 80 -a 42 - -t 158.22696267311002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 80 -a 42 h -t 158.22696267311002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 80 -a 42 r -t 158.22696267311002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 80 -a 42 r -t 158.23830667311003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 80 -a 42 r -t 158.23830667311003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 80 -a 42 + -t 158.23830667311003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 80 -a 42 - -t 158.23830667311003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 80 -a 42 h -t 158.23830667311003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 80 -a 42 + -t 158.23830667311003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 80 -a 42 - -t 158.23830667311003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 80 -a 42 h -t 158.23830667311003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 80 -a 42 r -t 158.24965067311004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 80 -a 42 r -t 158.24965067311004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 80 -a 42 + -t 158.35067837399001 -s 22 -d 20 -p SRM -e 168 -c 42 -i 78 -a 42 - -t 158.35067837399001 -s 22 -d 20 -p SRM -e 168 -c 42 -i 78 -a 42 h -t 158.35067837399001 -s 22 -d 20 -p SRM -e 168 -c 42 -i 78 -a 42 r -t 158.36202237399002 -s 22 -d 20 -p SRM -e 168 -c 42 -i 78 -a 42 + -t 158.36202237399002 -s 20 -d 21 -p SRM -e 168 -c 42 -i 78 -a 42 - -t 158.36202237399002 -s 20 -d 21 -p SRM -e 168 -c 42 -i 78 -a 42 h -t 158.36202237399002 -s 20 -d 21 -p SRM -e 168 -c 42 -i 78 -a 42 + -t 158.36639685829999 -s 25 -d 23 -p SRM -e 168 -c 42 -i 79 -a 42 - -t 158.36639685829999 -s 25 -d 23 -p SRM -e 168 -c 42 -i 79 -a 42 h -t 158.36639685829999 -s 25 -d 23 -p SRM -e 168 -c 42 -i 79 -a 42 r -t 158.37336637399002 -s 20 -d 21 -p SRM -e 168 -c 42 -i 78 -a 42 + -t 158.37336637399002 -s 21 -d 23 -p SRM -e 168 -c 42 -i 78 -a 42 - -t 158.37336637399002 -s 21 -d 23 -p SRM -e 168 -c 42 -i 78 -a 42 h -t 158.37336637399002 -s 21 -d 23 -p SRM -e 168 -c 42 -i 78 -a 42 + -t 158.37336637399002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 78 -a 42 - -t 158.37336637399002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 78 -a 42 h -t 158.37336637399002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 78 -a 42 r -t 158.3777408583 -s 25 -d 23 -p SRM -e 168 -c 42 -i 79 -a 42 + -t 158.3777408583 -s 23 -d 21 -p SRM -e 168 -c 42 -i 79 -a 42 - -t 158.3777408583 -s 23 -d 21 -p SRM -e 168 -c 42 -i 79 -a 42 h -t 158.3777408583 -s 23 -d 21 -p SRM -e 168 -c 42 -i 79 -a 42 + -t 158.3777408583 -s 23 -d 26 -p SRM -e 168 -c 42 -i 79 -a 42 - -t 158.3777408583 -s 23 -d 26 -p SRM -e 168 -c 42 -i 79 -a 42 h -t 158.3777408583 -s 23 -d 26 -p SRM -e 168 -c 42 -i 79 -a 42 r -t 158.38471037399003 -s 21 -d 23 -p SRM -e 168 -c 42 -i 78 -a 42 + -t 158.38471037399003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 78 -a 42 - -t 158.38471037399003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 78 -a 42 h -t 158.38471037399003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 78 -a 42 + -t 158.38471037399003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 78 -a 42 - -t 158.38471037399003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 78 -a 42 h -t 158.38471037399003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 78 -a 42 r -t 158.38471037399003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 78 -a 42 r -t 158.38908485830001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 79 -a 42 + -t 158.38908485830001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 79 -a 42 - -t 158.38908485830001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 79 -a 42 h -t 158.38908485830001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 79 -a 42 + -t 158.38908485830001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 79 -a 42 - -t 158.38908485830001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 79 -a 42 h -t 158.38908485830001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 79 -a 42 r -t 158.38908485830001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 79 -a 42 + -t 158.38908485830001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 79 -a 42 - -t 158.38908485830001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 79 -a 42 h -t 158.38908485830001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 79 -a 42 + -t 158.38908485830001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 79 -a 42 - -t 158.38908485830001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 79 -a 42 h -t 158.38908485830001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 79 -a 42 r -t 158.39605437399004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 78 -a 42 r -t 158.39605437399004 -s 23 -d 26 -p SRM -e 168 -c 42 -i 78 -a 42 + -t 158.39605437399004 -s 26 -d 27 -p SRM -e 168 -c 42 -i 78 -a 42 - -t 158.39605437399004 -s 26 -d 27 -p SRM -e 168 -c 42 -i 78 -a 42 h -t 158.39605437399004 -s 26 -d 27 -p SRM -e 168 -c 42 -i 78 -a 42 + -t 158.39605437399004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 78 -a 42 - -t 158.39605437399004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 78 -a 42 h -t 158.39605437399004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 78 -a 42 r -t 158.40042885830002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 79 -a 42 + -t 158.40042885830002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 79 -a 42 - -t 158.40042885830002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 79 -a 42 h -t 158.40042885830002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 79 -a 42 r -t 158.40042885830002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 79 -a 42 r -t 158.40042885830002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 79 -a 42 r -t 158.40042885830002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 79 -a 42 r -t 158.40739837399005 -s 26 -d 27 -p SRM -e 168 -c 42 -i 78 -a 42 r -t 158.40739837399005 -s 26 -d 28 -p SRM -e 168 -c 42 -i 78 -a 42 r -t 158.41177285830003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 79 -a 42 + -t 158.68653720533001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 81 -a 42 - -t 158.68653720533001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 81 -a 42 h -t 158.68653720533001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 81 -a 42 + -t 158.68653720533001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 81 -a 42 - -t 158.68653720533001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 81 -a 42 h -t 158.68653720533001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 81 -a 42 + -t 158.68653720533001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 81 -a 42 - -t 158.68653720533001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 81 -a 42 h -t 158.68653720533001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 81 -a 42 r -t 158.69788120533002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 81 -a 42 + -t 158.69788120533002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 81 -a 42 - -t 158.69788120533002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 81 -a 42 h -t 158.69788120533002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 81 -a 42 + -t 158.69788120533002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 81 -a 42 - -t 158.69788120533002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 81 -a 42 h -t 158.69788120533002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 81 -a 42 r -t 158.69788120533002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 81 -a 42 r -t 158.69788120533002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 81 -a 42 + -t 158.69788120533002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 81 -a 42 - -t 158.69788120533002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 81 -a 42 h -t 158.69788120533002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 81 -a 42 + -t 158.69788120533002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 81 -a 42 - -t 158.69788120533002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 81 -a 42 h -t 158.69788120533002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 81 -a 42 r -t 158.70922520533003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 81 -a 42 + -t 158.70922520533003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 81 -a 42 - -t 158.70922520533003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 81 -a 42 h -t 158.70922520533003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 81 -a 42 r -t 158.70922520533003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 81 -a 42 r -t 158.70922520533003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 81 -a 42 r -t 158.70922520533003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 81 -a 42 r -t 158.72056920533004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 81 -a 42 + -t 159.10078810277 -s 15 -d 13 -p SRM -e 168 -c 42 -i 82 -a 42 - -t 159.10078810277 -s 15 -d 13 -p SRM -e 168 -c 42 -i 82 -a 42 h -t 159.10078810277 -s 15 -d 13 -p SRM -e 168 -c 42 -i 82 -a 42 r -t 159.11213210277 -s 15 -d 13 -p SRM -e 168 -c 42 -i 82 -a 42 + -t 159.11213210277 -s 13 -d 11 -p SRM -e 168 -c 42 -i 82 -a 42 - -t 159.11213210277 -s 13 -d 11 -p SRM -e 168 -c 42 -i 82 -a 42 h -t 159.11213210277 -s 13 -d 11 -p SRM -e 168 -c 42 -i 82 -a 42 + -t 159.11213210277 -s 13 -d 16 -p SRM -e 168 -c 42 -i 82 -a 42 - -t 159.11213210277 -s 13 -d 16 -p SRM -e 168 -c 42 -i 82 -a 42 h -t 159.11213210277 -s 13 -d 16 -p SRM -e 168 -c 42 -i 82 -a 42 r -t 159.12347610277001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 82 -a 42 + -t 159.12347610277001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 82 -a 42 - -t 159.12347610277001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 82 -a 42 h -t 159.12347610277001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 82 -a 42 + -t 159.12347610277001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 82 -a 42 - -t 159.12347610277001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 82 -a 42 h -t 159.12347610277001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 82 -a 42 r -t 159.12347610277001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 82 -a 42 + -t 159.12347610277001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 82 -a 42 - -t 159.12347610277001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 82 -a 42 h -t 159.12347610277001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 82 -a 42 + -t 159.12347610277001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 82 -a 42 - -t 159.12347610277001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 82 -a 42 h -t 159.12347610277001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 82 -a 42 r -t 159.13482010277002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 82 -a 42 + -t 159.13482010277002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 82 -a 42 - -t 159.13482010277002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 82 -a 42 h -t 159.13482010277002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 82 -a 42 r -t 159.13482010277002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 82 -a 42 r -t 159.13482010277002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 82 -a 42 r -t 159.13482010277002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 82 -a 42 r -t 159.14616410277003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 82 -a 42 + -t 159.7728913926 -s 23 -d 21 -p SRM -e 168 -c 42 -i 80 -a 42 - -t 159.7728913926 -s 23 -d 21 -p SRM -e 168 -c 42 -i 80 -a 42 h -t 159.7728913926 -s 23 -d 21 -p SRM -e 168 -c 42 -i 80 -a 42 + -t 159.7728913926 -s 23 -d 25 -p SRM -e 168 -c 42 -i 80 -a 42 - -t 159.7728913926 -s 23 -d 25 -p SRM -e 168 -c 42 -i 80 -a 42 h -t 159.7728913926 -s 23 -d 25 -p SRM -e 168 -c 42 -i 80 -a 42 + -t 159.7728913926 -s 23 -d 26 -p SRM -e 168 -c 42 -i 80 -a 42 - -t 159.7728913926 -s 23 -d 26 -p SRM -e 168 -c 42 -i 80 -a 42 h -t 159.7728913926 -s 23 -d 26 -p SRM -e 168 -c 42 -i 80 -a 42 r -t 159.78423539260001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 80 -a 42 + -t 159.78423539260001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 80 -a 42 - -t 159.78423539260001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 80 -a 42 h -t 159.78423539260001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 80 -a 42 + -t 159.78423539260001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 80 -a 42 - -t 159.78423539260001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 80 -a 42 h -t 159.78423539260001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 80 -a 42 r -t 159.78423539260001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 80 -a 42 r -t 159.78423539260001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 80 -a 42 + -t 159.78423539260001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 80 -a 42 - -t 159.78423539260001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 80 -a 42 h -t 159.78423539260001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 80 -a 42 + -t 159.78423539260001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 80 -a 42 - -t 159.78423539260001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 80 -a 42 h -t 159.78423539260001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 80 -a 42 r -t 159.79557939260002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 80 -a 42 + -t 159.79557939260002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 80 -a 42 - -t 159.79557939260002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 80 -a 42 h -t 159.79557939260002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 80 -a 42 r -t 159.79557939260002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 80 -a 42 r -t 159.79557939260002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 80 -a 42 r -t 159.79557939260002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 80 -a 42 r -t 159.80692339260003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 80 -a 42 + -t 159.86193161987001 -s 27 -d 26 -p SRM -e 168 -c 42 -i 81 -a 42 - -t 159.86193161987001 -s 27 -d 26 -p SRM -e 168 -c 42 -i 81 -a 42 h -t 159.86193161987001 -s 27 -d 26 -p SRM -e 168 -c 42 -i 81 -a 42 r -t 159.87327561987001 -s 27 -d 26 -p SRM -e 168 -c 42 -i 81 -a 42 + -t 159.87327561987001 -s 26 -d 23 -p SRM -e 168 -c 42 -i 81 -a 42 - -t 159.87327561987001 -s 26 -d 23 -p SRM -e 168 -c 42 -i 81 -a 42 h -t 159.87327561987001 -s 26 -d 23 -p SRM -e 168 -c 42 -i 81 -a 42 + -t 159.87327561987001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 81 -a 42 - -t 159.87327561987001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 81 -a 42 h -t 159.87327561987001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 81 -a 42 r -t 159.88461961987002 -s 26 -d 23 -p SRM -e 168 -c 42 -i 81 -a 42 + -t 159.88461961987002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 81 -a 42 - -t 159.88461961987002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 81 -a 42 h -t 159.88461961987002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 81 -a 42 + -t 159.88461961987002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 81 -a 42 - -t 159.88461961987002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 81 -a 42 h -t 159.88461961987002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 81 -a 42 r -t 159.88461961987002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 81 -a 42 r -t 159.89596361987003 -s 23 -d 21 -p SRM -e 168 -c 42 -i 81 -a 42 + -t 159.89596361987003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 81 -a 42 - -t 159.89596361987003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 81 -a 42 h -t 159.89596361987003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 81 -a 42 + -t 159.89596361987003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 81 -a 42 - -t 159.89596361987003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 81 -a 42 h -t 159.89596361987003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 81 -a 42 r -t 159.89596361987003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 81 -a 42 r -t 159.90730761987004 -s 21 -d 20 -p SRM -e 168 -c 42 -i 81 -a 42 + -t 159.90730761987004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 81 -a 42 - -t 159.90730761987004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 81 -a 42 h -t 159.90730761987004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 81 -a 42 r -t 159.90730761987004 -s 21 -d 24 -p SRM -e 168 -c 42 -i 81 -a 42 r -t 159.91865161987005 -s 20 -d 22 -p SRM -e 168 -c 42 -i 81 -a 42 + -t 162.59370482809999 -s 17 -d 16 -p SRM -e 168 -c 42 -i 83 -a 42 - -t 162.59370482809999 -s 17 -d 16 -p SRM -e 168 -c 42 -i 83 -a 42 h -t 162.59370482809999 -s 17 -d 16 -p SRM -e 168 -c 42 -i 83 -a 42 r -t 162.6050488281 -s 17 -d 16 -p SRM -e 168 -c 42 -i 83 -a 42 + -t 162.6050488281 -s 16 -d 13 -p SRM -e 168 -c 42 -i 83 -a 42 - -t 162.6050488281 -s 16 -d 13 -p SRM -e 168 -c 42 -i 83 -a 42 h -t 162.6050488281 -s 16 -d 13 -p SRM -e 168 -c 42 -i 83 -a 42 + -t 162.6050488281 -s 16 -d 18 -p SRM -e 168 -c 42 -i 83 -a 42 - -t 162.6050488281 -s 16 -d 18 -p SRM -e 168 -c 42 -i 83 -a 42 h -t 162.6050488281 -s 16 -d 18 -p SRM -e 168 -c 42 -i 83 -a 42 r -t 162.6163928281 -s 16 -d 13 -p SRM -e 168 -c 42 -i 83 -a 42 + -t 162.6163928281 -s 13 -d 11 -p SRM -e 168 -c 42 -i 83 -a 42 - -t 162.6163928281 -s 13 -d 11 -p SRM -e 168 -c 42 -i 83 -a 42 h -t 162.6163928281 -s 13 -d 11 -p SRM -e 168 -c 42 -i 83 -a 42 + -t 162.6163928281 -s 13 -d 15 -p SRM -e 168 -c 42 -i 83 -a 42 - -t 162.6163928281 -s 13 -d 15 -p SRM -e 168 -c 42 -i 83 -a 42 h -t 162.6163928281 -s 13 -d 15 -p SRM -e 168 -c 42 -i 83 -a 42 r -t 162.6163928281 -s 16 -d 18 -p SRM -e 168 -c 42 -i 83 -a 42 r -t 162.62773682810001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 83 -a 42 + -t 162.62773682810001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 83 -a 42 - -t 162.62773682810001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 83 -a 42 h -t 162.62773682810001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 83 -a 42 + -t 162.62773682810001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 83 -a 42 - -t 162.62773682810001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 83 -a 42 h -t 162.62773682810001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 83 -a 42 r -t 162.62773682810001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 83 -a 42 r -t 162.63908082810002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 83 -a 42 + -t 162.63908082810002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 83 -a 42 - -t 162.63908082810002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 83 -a 42 h -t 162.63908082810002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 83 -a 42 r -t 162.63908082810002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 83 -a 42 r -t 162.65042482810003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 83 -a 42 + -t 162.92625731715 -s 20 -d 21 -p SRM -e 168 -c 42 -i 82 -a 42 - -t 162.92625731715 -s 20 -d 21 -p SRM -e 168 -c 42 -i 82 -a 42 h -t 162.92625731715 -s 20 -d 21 -p SRM -e 168 -c 42 -i 82 -a 42 + -t 162.92625731715 -s 20 -d 22 -p SRM -e 168 -c 42 -i 82 -a 42 - -t 162.92625731715 -s 20 -d 22 -p SRM -e 168 -c 42 -i 82 -a 42 h -t 162.92625731715 -s 20 -d 22 -p SRM -e 168 -c 42 -i 82 -a 42 r -t 162.93760131715001 -s 20 -d 21 -p SRM -e 168 -c 42 -i 82 -a 42 + -t 162.93760131715001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 82 -a 42 - -t 162.93760131715001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 82 -a 42 h -t 162.93760131715001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 82 -a 42 + -t 162.93760131715001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 82 -a 42 - -t 162.93760131715001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 82 -a 42 h -t 162.93760131715001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 82 -a 42 r -t 162.93760131715001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 82 -a 42 r -t 162.94894531715002 -s 21 -d 23 -p SRM -e 168 -c 42 -i 82 -a 42 + -t 162.94894531715002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 82 -a 42 - -t 162.94894531715002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 82 -a 42 h -t 162.94894531715002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 82 -a 42 + -t 162.94894531715002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 82 -a 42 - -t 162.94894531715002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 82 -a 42 h -t 162.94894531715002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 82 -a 42 r -t 162.94894531715002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 82 -a 42 r -t 162.96028931715003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 82 -a 42 r -t 162.96028931715003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 82 -a 42 + -t 162.96028931715003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 82 -a 42 - -t 162.96028931715003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 82 -a 42 h -t 162.96028931715003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 82 -a 42 + -t 162.96028931715003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 82 -a 42 - -t 162.96028931715003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 82 -a 42 h -t 162.96028931715003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 82 -a 42 r -t 162.97163331715004 -s 26 -d 27 -p SRM -e 168 -c 42 -i 82 -a 42 r -t 162.97163331715004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 82 -a 42 + -t 163.34168815558999 -s 11 -d 10 -p SRM -e 168 -c 42 -i 84 -a 42 - -t 163.34168815558999 -s 11 -d 10 -p SRM -e 168 -c 42 -i 84 -a 42 h -t 163.34168815558999 -s 11 -d 10 -p SRM -e 168 -c 42 -i 84 -a 42 + -t 163.34168815558999 -s 11 -d 13 -p SRM -e 168 -c 42 -i 84 -a 42 - -t 163.34168815558999 -s 11 -d 13 -p SRM -e 168 -c 42 -i 84 -a 42 h -t 163.34168815558999 -s 11 -d 13 -p SRM -e 168 -c 42 -i 84 -a 42 + -t 163.34168815558999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 84 -a 42 - -t 163.34168815558999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 84 -a 42 h -t 163.34168815558999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 84 -a 42 r -t 163.35303215559 -s 11 -d 10 -p SRM -e 168 -c 42 -i 84 -a 42 + -t 163.35303215559 -s 10 -d 12 -p SRM -e 168 -c 42 -i 84 -a 42 - -t 163.35303215559 -s 10 -d 12 -p SRM -e 168 -c 42 -i 84 -a 42 h -t 163.35303215559 -s 10 -d 12 -p SRM -e 168 -c 42 -i 84 -a 42 r -t 163.35303215559 -s 11 -d 13 -p SRM -e 168 -c 42 -i 84 -a 42 + -t 163.35303215559 -s 13 -d 15 -p SRM -e 168 -c 42 -i 84 -a 42 - -t 163.35303215559 -s 13 -d 15 -p SRM -e 168 -c 42 -i 84 -a 42 h -t 163.35303215559 -s 13 -d 15 -p SRM -e 168 -c 42 -i 84 -a 42 + -t 163.35303215559 -s 13 -d 16 -p SRM -e 168 -c 42 -i 84 -a 42 - -t 163.35303215559 -s 13 -d 16 -p SRM -e 168 -c 42 -i 84 -a 42 h -t 163.35303215559 -s 13 -d 16 -p SRM -e 168 -c 42 -i 84 -a 42 r -t 163.35303215559 -s 11 -d 14 -p SRM -e 168 -c 42 -i 84 -a 42 r -t 163.36437615559001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 84 -a 42 r -t 163.36437615559001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 84 -a 42 r -t 163.36437615559001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 84 -a 42 + -t 163.36437615559001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 84 -a 42 - -t 163.36437615559001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 84 -a 42 h -t 163.36437615559001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 84 -a 42 + -t 163.36437615559001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 84 -a 42 - -t 163.36437615559001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 84 -a 42 h -t 163.36437615559001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 84 -a 42 r -t 163.37572015559002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 84 -a 42 r -t 163.37572015559002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 84 -a 42 + -t 163.83856814324 -s 10 -d 11 -p SRM -e 168 -c 42 -i 85 -a 42 - -t 163.83856814324 -s 10 -d 11 -p SRM -e 168 -c 42 -i 85 -a 42 h -t 163.83856814324 -s 10 -d 11 -p SRM -e 168 -c 42 -i 85 -a 42 + -t 163.83856814324 -s 10 -d 12 -p SRM -e 168 -c 42 -i 85 -a 42 - -t 163.83856814324 -s 10 -d 12 -p SRM -e 168 -c 42 -i 85 -a 42 h -t 163.83856814324 -s 10 -d 12 -p SRM -e 168 -c 42 -i 85 -a 42 r -t 163.84991214324 -s 10 -d 11 -p SRM -e 168 -c 42 -i 85 -a 42 + -t 163.84991214324 -s 11 -d 13 -p SRM -e 168 -c 42 -i 85 -a 42 - -t 163.84991214324 -s 11 -d 13 -p SRM -e 168 -c 42 -i 85 -a 42 h -t 163.84991214324 -s 11 -d 13 -p SRM -e 168 -c 42 -i 85 -a 42 + -t 163.84991214324 -s 11 -d 14 -p SRM -e 168 -c 42 -i 85 -a 42 - -t 163.84991214324 -s 11 -d 14 -p SRM -e 168 -c 42 -i 85 -a 42 h -t 163.84991214324 -s 11 -d 14 -p SRM -e 168 -c 42 -i 85 -a 42 r -t 163.84991214324 -s 10 -d 12 -p SRM -e 168 -c 42 -i 85 -a 42 r -t 163.86125614324001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 85 -a 42 + -t 163.86125614324001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 85 -a 42 - -t 163.86125614324001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 85 -a 42 h -t 163.86125614324001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 85 -a 42 + -t 163.86125614324001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 85 -a 42 - -t 163.86125614324001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 85 -a 42 h -t 163.86125614324001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 85 -a 42 r -t 163.86125614324001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 85 -a 42 r -t 163.87260014324002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 85 -a 42 r -t 163.87260014324002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 85 -a 42 + -t 163.87260014324002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 85 -a 42 - -t 163.87260014324002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 85 -a 42 h -t 163.87260014324002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 85 -a 42 + -t 163.87260014324002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 85 -a 42 - -t 163.87260014324002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 85 -a 42 h -t 163.87260014324002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 85 -a 42 r -t 163.88394414324003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 85 -a 42 r -t 163.88394414324003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 85 -a 42 + -t 165.21454619089999 -s 18 -d 16 -p SRM -e 168 -c 42 -i 86 -a 42 - -t 165.21454619089999 -s 18 -d 16 -p SRM -e 168 -c 42 -i 86 -a 42 h -t 165.21454619089999 -s 18 -d 16 -p SRM -e 168 -c 42 -i 86 -a 42 r -t 165.2258901909 -s 18 -d 16 -p SRM -e 168 -c 42 -i 86 -a 42 + -t 165.2258901909 -s 16 -d 13 -p SRM -e 168 -c 42 -i 86 -a 42 - -t 165.2258901909 -s 16 -d 13 -p SRM -e 168 -c 42 -i 86 -a 42 h -t 165.2258901909 -s 16 -d 13 -p SRM -e 168 -c 42 -i 86 -a 42 + -t 165.2258901909 -s 16 -d 17 -p SRM -e 168 -c 42 -i 86 -a 42 - -t 165.2258901909 -s 16 -d 17 -p SRM -e 168 -c 42 -i 86 -a 42 h -t 165.2258901909 -s 16 -d 17 -p SRM -e 168 -c 42 -i 86 -a 42 r -t 165.23723419090001 -s 16 -d 13 -p SRM -e 168 -c 42 -i 86 -a 42 + -t 165.23723419090001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 86 -a 42 - -t 165.23723419090001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 86 -a 42 h -t 165.23723419090001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 86 -a 42 + -t 165.23723419090001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 86 -a 42 - -t 165.23723419090001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 86 -a 42 h -t 165.23723419090001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 86 -a 42 r -t 165.23723419090001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 86 -a 42 r -t 165.24857819090002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 86 -a 42 + -t 165.24857819090002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 86 -a 42 - -t 165.24857819090002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 86 -a 42 h -t 165.24857819090002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 86 -a 42 + -t 165.24857819090002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 86 -a 42 - -t 165.24857819090002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 86 -a 42 h -t 165.24857819090002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 86 -a 42 r -t 165.24857819090002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 86 -a 42 r -t 165.25992219090003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 86 -a 42 + -t 165.25992219090003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 86 -a 42 - -t 165.25992219090003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 86 -a 42 h -t 165.25992219090003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 86 -a 42 r -t 165.25992219090003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 86 -a 42 r -t 165.27126619090004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 86 -a 42 + -t 165.45060577473001 -s 28 -d 26 -p SRM -e 168 -c 42 -i 83 -a 42 - -t 165.45060577473001 -s 28 -d 26 -p SRM -e 168 -c 42 -i 83 -a 42 h -t 165.45060577473001 -s 28 -d 26 -p SRM -e 168 -c 42 -i 83 -a 42 r -t 165.46194977473002 -s 28 -d 26 -p SRM -e 168 -c 42 -i 83 -a 42 + -t 165.46194977473002 -s 26 -d 23 -p SRM -e 168 -c 42 -i 83 -a 42 - -t 165.46194977473002 -s 26 -d 23 -p SRM -e 168 -c 42 -i 83 -a 42 h -t 165.46194977473002 -s 26 -d 23 -p SRM -e 168 -c 42 -i 83 -a 42 + -t 165.46194977473002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 83 -a 42 - -t 165.46194977473002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 83 -a 42 h -t 165.46194977473002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 83 -a 42 r -t 165.47329377473002 -s 26 -d 23 -p SRM -e 168 -c 42 -i 83 -a 42 + -t 165.47329377473002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 83 -a 42 - -t 165.47329377473002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 83 -a 42 h -t 165.47329377473002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 83 -a 42 + -t 165.47329377473002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 83 -a 42 - -t 165.47329377473002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 83 -a 42 h -t 165.47329377473002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 83 -a 42 r -t 165.47329377473002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 83 -a 42 r -t 165.48463777473003 -s 23 -d 21 -p SRM -e 168 -c 42 -i 83 -a 42 + -t 165.48463777473003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 83 -a 42 - -t 165.48463777473003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 83 -a 42 h -t 165.48463777473003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 83 -a 42 + -t 165.48463777473003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 83 -a 42 - -t 165.48463777473003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 83 -a 42 h -t 165.48463777473003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 83 -a 42 r -t 165.48463777473003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 83 -a 42 r -t 165.49598177473004 -s 21 -d 20 -p SRM -e 168 -c 42 -i 83 -a 42 + -t 165.49598177473004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 83 -a 42 - -t 165.49598177473004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 83 -a 42 h -t 165.49598177473004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 83 -a 42 r -t 165.49598177473004 -s 21 -d 24 -p SRM -e 168 -c 42 -i 83 -a 42 r -t 165.50732577473005 -s 20 -d 22 -p SRM -e 168 -c 42 -i 83 -a 42 + -t 166.13363413402999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 84 -a 42 - -t 166.13363413402999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 84 -a 42 h -t 166.13363413402999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 84 -a 42 + -t 166.13363413402999 -s 21 -d 23 -p SRM -e 168 -c 42 -i 84 -a 42 - -t 166.13363413402999 -s 21 -d 23 -p SRM -e 168 -c 42 -i 84 -a 42 h -t 166.13363413402999 -s 21 -d 23 -p SRM -e 168 -c 42 -i 84 -a 42 + -t 166.13363413402999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 84 -a 42 - -t 166.13363413402999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 84 -a 42 h -t 166.13363413402999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 84 -a 42 r -t 166.14497813403 -s 21 -d 20 -p SRM -e 168 -c 42 -i 84 -a 42 + -t 166.14497813403 -s 20 -d 22 -p SRM -e 168 -c 42 -i 84 -a 42 - -t 166.14497813403 -s 20 -d 22 -p SRM -e 168 -c 42 -i 84 -a 42 h -t 166.14497813403 -s 20 -d 22 -p SRM -e 168 -c 42 -i 84 -a 42 r -t 166.14497813403 -s 21 -d 23 -p SRM -e 168 -c 42 -i 84 -a 42 + -t 166.14497813403 -s 23 -d 25 -p SRM -e 168 -c 42 -i 84 -a 42 - -t 166.14497813403 -s 23 -d 25 -p SRM -e 168 -c 42 -i 84 -a 42 h -t 166.14497813403 -s 23 -d 25 -p SRM -e 168 -c 42 -i 84 -a 42 + -t 166.14497813403 -s 23 -d 26 -p SRM -e 168 -c 42 -i 84 -a 42 - -t 166.14497813403 -s 23 -d 26 -p SRM -e 168 -c 42 -i 84 -a 42 h -t 166.14497813403 -s 23 -d 26 -p SRM -e 168 -c 42 -i 84 -a 42 r -t 166.14497813403 -s 21 -d 24 -p SRM -e 168 -c 42 -i 84 -a 42 r -t 166.15632213403001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 84 -a 42 r -t 166.15632213403001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 84 -a 42 r -t 166.15632213403001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 84 -a 42 + -t 166.15632213403001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 84 -a 42 - -t 166.15632213403001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 84 -a 42 h -t 166.15632213403001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 84 -a 42 + -t 166.15632213403001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 84 -a 42 - -t 166.15632213403001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 84 -a 42 h -t 166.15632213403001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 84 -a 42 r -t 166.16766613403001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 84 -a 42 r -t 166.16766613403001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 84 -a 42 + -t 174.46555358168999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 87 -a 42 - -t 174.46555358168999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 87 -a 42 h -t 174.46555358168999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 87 -a 42 + -t 174.46555358168999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 87 -a 42 - -t 174.46555358168999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 87 -a 42 h -t 174.46555358168999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 87 -a 42 + -t 174.46555358168999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 87 -a 42 - -t 174.46555358168999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 87 -a 42 h -t 174.46555358168999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 87 -a 42 r -t 174.47689758169 -s 16 -d 13 -p SRM -e 168 -c 42 -i 87 -a 42 + -t 174.47689758169 -s 13 -d 11 -p SRM -e 168 -c 42 -i 87 -a 42 - -t 174.47689758169 -s 13 -d 11 -p SRM -e 168 -c 42 -i 87 -a 42 h -t 174.47689758169 -s 13 -d 11 -p SRM -e 168 -c 42 -i 87 -a 42 + -t 174.47689758169 -s 13 -d 15 -p SRM -e 168 -c 42 -i 87 -a 42 - -t 174.47689758169 -s 13 -d 15 -p SRM -e 168 -c 42 -i 87 -a 42 h -t 174.47689758169 -s 13 -d 15 -p SRM -e 168 -c 42 -i 87 -a 42 r -t 174.47689758169 -s 16 -d 17 -p SRM -e 168 -c 42 -i 87 -a 42 r -t 174.47689758169 -s 16 -d 18 -p SRM -e 168 -c 42 -i 87 -a 42 r -t 174.48824158169 -s 13 -d 11 -p SRM -e 168 -c 42 -i 87 -a 42 + -t 174.48824158169 -s 11 -d 10 -p SRM -e 168 -c 42 -i 87 -a 42 - -t 174.48824158169 -s 11 -d 10 -p SRM -e 168 -c 42 -i 87 -a 42 h -t 174.48824158169 -s 11 -d 10 -p SRM -e 168 -c 42 -i 87 -a 42 + -t 174.48824158169 -s 11 -d 14 -p SRM -e 168 -c 42 -i 87 -a 42 - -t 174.48824158169 -s 11 -d 14 -p SRM -e 168 -c 42 -i 87 -a 42 h -t 174.48824158169 -s 11 -d 14 -p SRM -e 168 -c 42 -i 87 -a 42 r -t 174.48824158169 -s 13 -d 15 -p SRM -e 168 -c 42 -i 87 -a 42 r -t 174.49958558169001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 87 -a 42 + -t 174.49958558169001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 87 -a 42 - -t 174.49958558169001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 87 -a 42 h -t 174.49958558169001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 87 -a 42 r -t 174.49958558169001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 87 -a 42 r -t 174.51092958169002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 87 -a 42 + -t 176.06930788866001 -s 24 -d 21 -p SRM -e 168 -c 42 -i 85 -a 42 - -t 176.06930788866001 -s 24 -d 21 -p SRM -e 168 -c 42 -i 85 -a 42 h -t 176.06930788866001 -s 24 -d 21 -p SRM -e 168 -c 42 -i 85 -a 42 r -t 176.08065188866001 -s 24 -d 21 -p SRM -e 168 -c 42 -i 85 -a 42 + -t 176.08065188866001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 85 -a 42 - -t 176.08065188866001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 85 -a 42 h -t 176.08065188866001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 85 -a 42 + -t 176.08065188866001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 85 -a 42 - -t 176.08065188866001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 85 -a 42 h -t 176.08065188866001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 85 -a 42 r -t 176.09199588866002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 85 -a 42 + -t 176.09199588866002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 85 -a 42 - -t 176.09199588866002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 85 -a 42 h -t 176.09199588866002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 85 -a 42 r -t 176.09199588866002 -s 21 -d 23 -p SRM -e 168 -c 42 -i 85 -a 42 + -t 176.09199588866002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 85 -a 42 - -t 176.09199588866002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 85 -a 42 h -t 176.09199588866002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 85 -a 42 + -t 176.09199588866002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 85 -a 42 - -t 176.09199588866002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 85 -a 42 h -t 176.09199588866002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 85 -a 42 r -t 176.10333988866003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 85 -a 42 r -t 176.10333988866003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 85 -a 42 r -t 176.10333988866003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 85 -a 42 + -t 176.10333988866003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 85 -a 42 - -t 176.10333988866003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 85 -a 42 h -t 176.10333988866003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 85 -a 42 + -t 176.10333988866003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 85 -a 42 - -t 176.10333988866003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 85 -a 42 h -t 176.10333988866003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 85 -a 42 r -t 176.11468388866004 -s 26 -d 27 -p SRM -e 168 -c 42 -i 85 -a 42 r -t 176.11468388866004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 85 -a 42 + -t 176.80268440501999 -s 26 -d 23 -p SRM -e 168 -c 42 -i 86 -a 42 - -t 176.80268440501999 -s 26 -d 23 -p SRM -e 168 -c 42 -i 86 -a 42 h -t 176.80268440501999 -s 26 -d 23 -p SRM -e 168 -c 42 -i 86 -a 42 + -t 176.80268440501999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 86 -a 42 - -t 176.80268440501999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 86 -a 42 h -t 176.80268440501999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 86 -a 42 + -t 176.80268440501999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 86 -a 42 - -t 176.80268440501999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 86 -a 42 h -t 176.80268440501999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 86 -a 42 r -t 176.81402840502 -s 26 -d 23 -p SRM -e 168 -c 42 -i 86 -a 42 + -t 176.81402840502 -s 23 -d 21 -p SRM -e 168 -c 42 -i 86 -a 42 - -t 176.81402840502 -s 23 -d 21 -p SRM -e 168 -c 42 -i 86 -a 42 h -t 176.81402840502 -s 23 -d 21 -p SRM -e 168 -c 42 -i 86 -a 42 + -t 176.81402840502 -s 23 -d 25 -p SRM -e 168 -c 42 -i 86 -a 42 - -t 176.81402840502 -s 23 -d 25 -p SRM -e 168 -c 42 -i 86 -a 42 h -t 176.81402840502 -s 23 -d 25 -p SRM -e 168 -c 42 -i 86 -a 42 r -t 176.81402840502 -s 26 -d 27 -p SRM -e 168 -c 42 -i 86 -a 42 r -t 176.81402840502 -s 26 -d 28 -p SRM -e 168 -c 42 -i 86 -a 42 r -t 176.82537240502 -s 23 -d 21 -p SRM -e 168 -c 42 -i 86 -a 42 + -t 176.82537240502 -s 21 -d 20 -p SRM -e 168 -c 42 -i 86 -a 42 - -t 176.82537240502 -s 21 -d 20 -p SRM -e 168 -c 42 -i 86 -a 42 h -t 176.82537240502 -s 21 -d 20 -p SRM -e 168 -c 42 -i 86 -a 42 + -t 176.82537240502 -s 21 -d 24 -p SRM -e 168 -c 42 -i 86 -a 42 - -t 176.82537240502 -s 21 -d 24 -p SRM -e 168 -c 42 -i 86 -a 42 h -t 176.82537240502 -s 21 -d 24 -p SRM -e 168 -c 42 -i 86 -a 42 r -t 176.82537240502 -s 23 -d 25 -p SRM -e 168 -c 42 -i 86 -a 42 r -t 176.83671640502001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 86 -a 42 + -t 176.83671640502001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 86 -a 42 - -t 176.83671640502001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 86 -a 42 h -t 176.83671640502001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 86 -a 42 r -t 176.83671640502001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 86 -a 42 r -t 176.84806040502002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 86 -a 42 + -t 177.28787744362 -s 13 -d 11 -p SRM -e 168 -c 42 -i 88 -a 42 - -t 177.28787744362 -s 13 -d 11 -p SRM -e 168 -c 42 -i 88 -a 42 h -t 177.28787744362 -s 13 -d 11 -p SRM -e 168 -c 42 -i 88 -a 42 + -t 177.28787744362 -s 13 -d 15 -p SRM -e 168 -c 42 -i 88 -a 42 - -t 177.28787744362 -s 13 -d 15 -p SRM -e 168 -c 42 -i 88 -a 42 h -t 177.28787744362 -s 13 -d 15 -p SRM -e 168 -c 42 -i 88 -a 42 + -t 177.28787744362 -s 13 -d 16 -p SRM -e 168 -c 42 -i 88 -a 42 - -t 177.28787744362 -s 13 -d 16 -p SRM -e 168 -c 42 -i 88 -a 42 h -t 177.28787744362 -s 13 -d 16 -p SRM -e 168 -c 42 -i 88 -a 42 r -t 177.29922144362001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 88 -a 42 + -t 177.29922144362001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 88 -a 42 - -t 177.29922144362001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 88 -a 42 h -t 177.29922144362001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 88 -a 42 + -t 177.29922144362001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 88 -a 42 - -t 177.29922144362001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 88 -a 42 h -t 177.29922144362001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 88 -a 42 r -t 177.29922144362001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 88 -a 42 r -t 177.29922144362001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 88 -a 42 + -t 177.29922144362001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 88 -a 42 - -t 177.29922144362001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 88 -a 42 h -t 177.29922144362001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 88 -a 42 + -t 177.29922144362001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 88 -a 42 - -t 177.29922144362001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 88 -a 42 h -t 177.29922144362001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 88 -a 42 r -t 177.31056544362002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 88 -a 42 + -t 177.31056544362002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 88 -a 42 - -t 177.31056544362002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 88 -a 42 h -t 177.31056544362002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 88 -a 42 r -t 177.31056544362002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 88 -a 42 r -t 177.31056544362002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 88 -a 42 r -t 177.31056544362002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 88 -a 42 r -t 177.32190944362003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 88 -a 42 + -t 178.37423163087999 -s 23 -d 21 -p SRM -e 168 -c 42 -i 87 -a 42 - -t 178.37423163087999 -s 23 -d 21 -p SRM -e 168 -c 42 -i 87 -a 42 h -t 178.37423163087999 -s 23 -d 21 -p SRM -e 168 -c 42 -i 87 -a 42 + -t 178.37423163087999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 87 -a 42 - -t 178.37423163087999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 87 -a 42 h -t 178.37423163087999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 87 -a 42 + -t 178.37423163087999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 87 -a 42 - -t 178.37423163087999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 87 -a 42 h -t 178.37423163087999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 87 -a 42 r -t 178.38557563088 -s 23 -d 21 -p SRM -e 168 -c 42 -i 87 -a 42 + -t 178.38557563088 -s 21 -d 20 -p SRM -e 168 -c 42 -i 87 -a 42 - -t 178.38557563088 -s 21 -d 20 -p SRM -e 168 -c 42 -i 87 -a 42 h -t 178.38557563088 -s 21 -d 20 -p SRM -e 168 -c 42 -i 87 -a 42 + -t 178.38557563088 -s 21 -d 24 -p SRM -e 168 -c 42 -i 87 -a 42 - -t 178.38557563088 -s 21 -d 24 -p SRM -e 168 -c 42 -i 87 -a 42 h -t 178.38557563088 -s 21 -d 24 -p SRM -e 168 -c 42 -i 87 -a 42 r -t 178.38557563088 -s 23 -d 25 -p SRM -e 168 -c 42 -i 87 -a 42 r -t 178.38557563088 -s 23 -d 26 -p SRM -e 168 -c 42 -i 87 -a 42 + -t 178.38557563088 -s 26 -d 27 -p SRM -e 168 -c 42 -i 87 -a 42 - -t 178.38557563088 -s 26 -d 27 -p SRM -e 168 -c 42 -i 87 -a 42 h -t 178.38557563088 -s 26 -d 27 -p SRM -e 168 -c 42 -i 87 -a 42 + -t 178.38557563088 -s 26 -d 28 -p SRM -e 168 -c 42 -i 87 -a 42 - -t 178.38557563088 -s 26 -d 28 -p SRM -e 168 -c 42 -i 87 -a 42 h -t 178.38557563088 -s 26 -d 28 -p SRM -e 168 -c 42 -i 87 -a 42 r -t 178.39691963088001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 87 -a 42 + -t 178.39691963088001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 87 -a 42 - -t 178.39691963088001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 87 -a 42 h -t 178.39691963088001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 87 -a 42 r -t 178.39691963088001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 87 -a 42 r -t 178.39691963088001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 87 -a 42 r -t 178.39691963088001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 87 -a 42 r -t 178.40826363088001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 87 -a 42 + -t 178.80116541698001 -s 12 -d 10 -p SRM -e 168 -c 42 -i 89 -a 42 - -t 178.80116541698001 -s 12 -d 10 -p SRM -e 168 -c 42 -i 89 -a 42 h -t 178.80116541698001 -s 12 -d 10 -p SRM -e 168 -c 42 -i 89 -a 42 r -t 178.81250941698002 -s 12 -d 10 -p SRM -e 168 -c 42 -i 89 -a 42 + -t 178.81250941698002 -s 10 -d 11 -p SRM -e 168 -c 42 -i 89 -a 42 - -t 178.81250941698002 -s 10 -d 11 -p SRM -e 168 -c 42 -i 89 -a 42 h -t 178.81250941698002 -s 10 -d 11 -p SRM -e 168 -c 42 -i 89 -a 42 r -t 178.82385341698003 -s 10 -d 11 -p SRM -e 168 -c 42 -i 89 -a 42 + -t 178.82385341698003 -s 11 -d 13 -p SRM -e 168 -c 42 -i 89 -a 42 - -t 178.82385341698003 -s 11 -d 13 -p SRM -e 168 -c 42 -i 89 -a 42 h -t 178.82385341698003 -s 11 -d 13 -p SRM -e 168 -c 42 -i 89 -a 42 + -t 178.82385341698003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 89 -a 42 - -t 178.82385341698003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 89 -a 42 h -t 178.82385341698003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 89 -a 42 r -t 178.83519741698004 -s 11 -d 13 -p SRM -e 168 -c 42 -i 89 -a 42 + -t 178.83519741698004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 89 -a 42 - -t 178.83519741698004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 89 -a 42 h -t 178.83519741698004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 89 -a 42 + -t 178.83519741698004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 89 -a 42 - -t 178.83519741698004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 89 -a 42 h -t 178.83519741698004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 89 -a 42 r -t 178.83519741698004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 89 -a 42 r -t 178.84654141698005 -s 13 -d 15 -p SRM -e 168 -c 42 -i 89 -a 42 r -t 178.84654141698005 -s 13 -d 16 -p SRM -e 168 -c 42 -i 89 -a 42 + -t 178.84654141698005 -s 16 -d 17 -p SRM -e 168 -c 42 -i 89 -a 42 - -t 178.84654141698005 -s 16 -d 17 -p SRM -e 168 -c 42 -i 89 -a 42 h -t 178.84654141698005 -s 16 -d 17 -p SRM -e 168 -c 42 -i 89 -a 42 + -t 178.84654141698005 -s 16 -d 18 -p SRM -e 168 -c 42 -i 89 -a 42 - -t 178.84654141698005 -s 16 -d 18 -p SRM -e 168 -c 42 -i 89 -a 42 h -t 178.84654141698005 -s 16 -d 18 -p SRM -e 168 -c 42 -i 89 -a 42 r -t 178.85788541698005 -s 16 -d 17 -p SRM -e 168 -c 42 -i 89 -a 42 r -t 178.85788541698005 -s 16 -d 18 -p SRM -e 168 -c 42 -i 89 -a 42 + -t 178.89368690196 -s 14 -d 11 -p SRM -e 168 -c 42 -i 90 -a 42 - -t 178.89368690196 -s 14 -d 11 -p SRM -e 168 -c 42 -i 90 -a 42 h -t 178.89368690196 -s 14 -d 11 -p SRM -e 168 -c 42 -i 90 -a 42 r -t 178.90503090196 -s 14 -d 11 -p SRM -e 168 -c 42 -i 90 -a 42 + -t 178.90503090196 -s 11 -d 10 -p SRM -e 168 -c 42 -i 90 -a 42 - -t 178.90503090196 -s 11 -d 10 -p SRM -e 168 -c 42 -i 90 -a 42 h -t 178.90503090196 -s 11 -d 10 -p SRM -e 168 -c 42 -i 90 -a 42 + -t 178.90503090196 -s 11 -d 13 -p SRM -e 168 -c 42 -i 90 -a 42 - -t 178.90503090196 -s 11 -d 13 -p SRM -e 168 -c 42 -i 90 -a 42 h -t 178.90503090196 -s 11 -d 13 -p SRM -e 168 -c 42 -i 90 -a 42 r -t 178.91637490196001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 90 -a 42 + -t 178.91637490196001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 90 -a 42 - -t 178.91637490196001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 90 -a 42 h -t 178.91637490196001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 90 -a 42 r -t 178.91637490196001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 90 -a 42 + -t 178.91637490196001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 90 -a 42 - -t 178.91637490196001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 90 -a 42 h -t 178.91637490196001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 90 -a 42 + -t 178.91637490196001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 90 -a 42 - -t 178.91637490196001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 90 -a 42 h -t 178.91637490196001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 90 -a 42 r -t 178.92771890196002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 90 -a 42 r -t 178.92771890196002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 90 -a 42 r -t 178.92771890196002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 90 -a 42 + -t 178.92771890196002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 90 -a 42 - -t 178.92771890196002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 90 -a 42 h -t 178.92771890196002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 90 -a 42 + -t 178.92771890196002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 90 -a 42 - -t 178.92771890196002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 90 -a 42 h -t 178.92771890196002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 90 -a 42 r -t 178.93906290196003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 90 -a 42 r -t 178.93906290196003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 90 -a 42 + -t 178.97463160217001 -s 25 -d 23 -p SRM -e 168 -c 42 -i 88 -a 42 - -t 178.97463160217001 -s 25 -d 23 -p SRM -e 168 -c 42 -i 88 -a 42 h -t 178.97463160217001 -s 25 -d 23 -p SRM -e 168 -c 42 -i 88 -a 42 r -t 178.98597560217002 -s 25 -d 23 -p SRM -e 168 -c 42 -i 88 -a 42 + -t 178.98597560217002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 88 -a 42 - -t 178.98597560217002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 88 -a 42 h -t 178.98597560217002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 88 -a 42 + -t 178.98597560217002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 88 -a 42 - -t 178.98597560217002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 88 -a 42 h -t 178.98597560217002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 88 -a 42 r -t 178.99731960217002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 88 -a 42 + -t 178.99731960217002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 88 -a 42 - -t 178.99731960217002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 88 -a 42 h -t 178.99731960217002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 88 -a 42 + -t 178.99731960217002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 88 -a 42 - -t 178.99731960217002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 88 -a 42 h -t 178.99731960217002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 88 -a 42 r -t 178.99731960217002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 88 -a 42 + -t 178.99731960217002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 88 -a 42 - -t 178.99731960217002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 88 -a 42 h -t 178.99731960217002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 88 -a 42 + -t 178.99731960217002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 88 -a 42 - -t 178.99731960217002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 88 -a 42 h -t 178.99731960217002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 88 -a 42 r -t 179.00866360217003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 88 -a 42 + -t 179.00866360217003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 88 -a 42 - -t 179.00866360217003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 88 -a 42 h -t 179.00866360217003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 88 -a 42 r -t 179.00866360217003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 88 -a 42 r -t 179.00866360217003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 88 -a 42 r -t 179.00866360217003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 88 -a 42 r -t 179.02000760217004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 88 -a 42 + -t 179.82617295782001 -s 15 -d 13 -p SRM -e 168 -c 42 -i 91 -a 42 - -t 179.82617295782001 -s 15 -d 13 -p SRM -e 168 -c 42 -i 91 -a 42 h -t 179.82617295782001 -s 15 -d 13 -p SRM -e 168 -c 42 -i 91 -a 42 r -t 179.83751695782001 -s 15 -d 13 -p SRM -e 168 -c 42 -i 91 -a 42 + -t 179.83751695782001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 91 -a 42 - -t 179.83751695782001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 91 -a 42 h -t 179.83751695782001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 91 -a 42 + -t 179.83751695782001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 91 -a 42 - -t 179.83751695782001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 91 -a 42 h -t 179.83751695782001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 91 -a 42 r -t 179.84886095782002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 91 -a 42 + -t 179.84886095782002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 91 -a 42 - -t 179.84886095782002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 91 -a 42 h -t 179.84886095782002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 91 -a 42 + -t 179.84886095782002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 91 -a 42 - -t 179.84886095782002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 91 -a 42 h -t 179.84886095782002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 91 -a 42 r -t 179.84886095782002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 91 -a 42 + -t 179.84886095782002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 91 -a 42 - -t 179.84886095782002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 91 -a 42 h -t 179.84886095782002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 91 -a 42 + -t 179.84886095782002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 91 -a 42 - -t 179.84886095782002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 91 -a 42 h -t 179.84886095782002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 91 -a 42 r -t 179.86020495782003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 91 -a 42 + -t 179.86020495782003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 91 -a 42 - -t 179.86020495782003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 91 -a 42 h -t 179.86020495782003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 91 -a 42 r -t 179.86020495782003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 91 -a 42 r -t 179.86020495782003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 91 -a 42 r -t 179.86020495782003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 91 -a 42 r -t 179.87154895782004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 91 -a 42 + -t 179.89864102256999 -s 22 -d 20 -p SRM -e 168 -c 42 -i 89 -a 42 - -t 179.89864102256999 -s 22 -d 20 -p SRM -e 168 -c 42 -i 89 -a 42 h -t 179.89864102256999 -s 22 -d 20 -p SRM -e 168 -c 42 -i 89 -a 42 r -t 179.90998502257 -s 22 -d 20 -p SRM -e 168 -c 42 -i 89 -a 42 + -t 179.90998502257 -s 20 -d 21 -p SRM -e 168 -c 42 -i 89 -a 42 - -t 179.90998502257 -s 20 -d 21 -p SRM -e 168 -c 42 -i 89 -a 42 h -t 179.90998502257 -s 20 -d 21 -p SRM -e 168 -c 42 -i 89 -a 42 r -t 179.92132902257001 -s 20 -d 21 -p SRM -e 168 -c 42 -i 89 -a 42 + -t 179.92132902257001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 89 -a 42 - -t 179.92132902257001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 89 -a 42 h -t 179.92132902257001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 89 -a 42 + -t 179.92132902257001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 89 -a 42 - -t 179.92132902257001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 89 -a 42 h -t 179.92132902257001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 89 -a 42 r -t 179.93267302257001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 89 -a 42 + -t 179.93267302257001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 89 -a 42 - -t 179.93267302257001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 89 -a 42 h -t 179.93267302257001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 89 -a 42 + -t 179.93267302257001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 89 -a 42 - -t 179.93267302257001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 89 -a 42 h -t 179.93267302257001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 89 -a 42 r -t 179.93267302257001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 89 -a 42 r -t 179.94401702257002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 89 -a 42 r -t 179.94401702257002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 89 -a 42 + -t 179.94401702257002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 89 -a 42 - -t 179.94401702257002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 89 -a 42 h -t 179.94401702257002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 89 -a 42 + -t 179.94401702257002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 89 -a 42 - -t 179.94401702257002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 89 -a 42 h -t 179.94401702257002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 89 -a 42 r -t 179.95536102257003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 89 -a 42 r -t 179.95536102257003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 89 -a 42 + -t 180.58731647491999 -s 27 -d 26 -p SRM -e 168 -c 42 -i 90 -a 42 - -t 180.58731647491999 -s 27 -d 26 -p SRM -e 168 -c 42 -i 90 -a 42 h -t 180.58731647491999 -s 27 -d 26 -p SRM -e 168 -c 42 -i 90 -a 42 r -t 180.59866047492 -s 27 -d 26 -p SRM -e 168 -c 42 -i 90 -a 42 + -t 180.59866047492 -s 26 -d 23 -p SRM -e 168 -c 42 -i 90 -a 42 - -t 180.59866047492 -s 26 -d 23 -p SRM -e 168 -c 42 -i 90 -a 42 h -t 180.59866047492 -s 26 -d 23 -p SRM -e 168 -c 42 -i 90 -a 42 + -t 180.59866047492 -s 26 -d 28 -p SRM -e 168 -c 42 -i 90 -a 42 - -t 180.59866047492 -s 26 -d 28 -p SRM -e 168 -c 42 -i 90 -a 42 h -t 180.59866047492 -s 26 -d 28 -p SRM -e 168 -c 42 -i 90 -a 42 r -t 180.61000447492 -s 26 -d 23 -p SRM -e 168 -c 42 -i 90 -a 42 + -t 180.61000447492 -s 23 -d 21 -p SRM -e 168 -c 42 -i 90 -a 42 - -t 180.61000447492 -s 23 -d 21 -p SRM -e 168 -c 42 -i 90 -a 42 h -t 180.61000447492 -s 23 -d 21 -p SRM -e 168 -c 42 -i 90 -a 42 + -t 180.61000447492 -s 23 -d 25 -p SRM -e 168 -c 42 -i 90 -a 42 - -t 180.61000447492 -s 23 -d 25 -p SRM -e 168 -c 42 -i 90 -a 42 h -t 180.61000447492 -s 23 -d 25 -p SRM -e 168 -c 42 -i 90 -a 42 r -t 180.61000447492 -s 26 -d 28 -p SRM -e 168 -c 42 -i 90 -a 42 r -t 180.62134847492001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 90 -a 42 + -t 180.62134847492001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 90 -a 42 - -t 180.62134847492001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 90 -a 42 h -t 180.62134847492001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 90 -a 42 + -t 180.62134847492001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 90 -a 42 - -t 180.62134847492001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 90 -a 42 h -t 180.62134847492001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 90 -a 42 r -t 180.62134847492001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 90 -a 42 r -t 180.63269247492002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 90 -a 42 + -t 180.63269247492002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 90 -a 42 - -t 180.63269247492002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 90 -a 42 h -t 180.63269247492002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 90 -a 42 r -t 180.63269247492002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 90 -a 42 r -t 180.64403647492003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 90 -a 42 + -t 182.13696364296001 -s 17 -d 16 -p SRM -e 168 -c 42 -i 92 -a 42 - -t 182.13696364296001 -s 17 -d 16 -p SRM -e 168 -c 42 -i 92 -a 42 h -t 182.13696364296001 -s 17 -d 16 -p SRM -e 168 -c 42 -i 92 -a 42 r -t 182.14830764296002 -s 17 -d 16 -p SRM -e 168 -c 42 -i 92 -a 42 + -t 182.14830764296002 -s 16 -d 13 -p SRM -e 168 -c 42 -i 92 -a 42 - -t 182.14830764296002 -s 16 -d 13 -p SRM -e 168 -c 42 -i 92 -a 42 h -t 182.14830764296002 -s 16 -d 13 -p SRM -e 168 -c 42 -i 92 -a 42 + -t 182.14830764296002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 92 -a 42 - -t 182.14830764296002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 92 -a 42 h -t 182.14830764296002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 92 -a 42 r -t 182.15965164296003 -s 16 -d 13 -p SRM -e 168 -c 42 -i 92 -a 42 + -t 182.15965164296003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 92 -a 42 - -t 182.15965164296003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 92 -a 42 h -t 182.15965164296003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 92 -a 42 + -t 182.15965164296003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 92 -a 42 - -t 182.15965164296003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 92 -a 42 h -t 182.15965164296003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 92 -a 42 r -t 182.15965164296003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 92 -a 42 r -t 182.17099564296004 -s 13 -d 11 -p SRM -e 168 -c 42 -i 92 -a 42 + -t 182.17099564296004 -s 11 -d 10 -p SRM -e 168 -c 42 -i 92 -a 42 - -t 182.17099564296004 -s 11 -d 10 -p SRM -e 168 -c 42 -i 92 -a 42 h -t 182.17099564296004 -s 11 -d 10 -p SRM -e 168 -c 42 -i 92 -a 42 + -t 182.17099564296004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 92 -a 42 - -t 182.17099564296004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 92 -a 42 h -t 182.17099564296004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 92 -a 42 r -t 182.17099564296004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 92 -a 42 r -t 182.18233964296005 -s 11 -d 10 -p SRM -e 168 -c 42 -i 92 -a 42 + -t 182.18233964296005 -s 10 -d 12 -p SRM -e 168 -c 42 -i 92 -a 42 - -t 182.18233964296005 -s 10 -d 12 -p SRM -e 168 -c 42 -i 92 -a 42 h -t 182.18233964296005 -s 10 -d 12 -p SRM -e 168 -c 42 -i 92 -a 42 r -t 182.18233964296005 -s 11 -d 14 -p SRM -e 168 -c 42 -i 92 -a 42 r -t 182.19368364296005 -s 10 -d 12 -p SRM -e 168 -c 42 -i 92 -a 42 + -t 182.46951613201 -s 20 -d 21 -p SRM -e 168 -c 42 -i 91 -a 42 - -t 182.46951613201 -s 20 -d 21 -p SRM -e 168 -c 42 -i 91 -a 42 h -t 182.46951613201 -s 20 -d 21 -p SRM -e 168 -c 42 -i 91 -a 42 + -t 182.46951613201 -s 20 -d 22 -p SRM -e 168 -c 42 -i 91 -a 42 - -t 182.46951613201 -s 20 -d 22 -p SRM -e 168 -c 42 -i 91 -a 42 h -t 182.46951613201 -s 20 -d 22 -p SRM -e 168 -c 42 -i 91 -a 42 r -t 182.48086013201001 -s 20 -d 21 -p SRM -e 168 -c 42 -i 91 -a 42 + -t 182.48086013201001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 91 -a 42 - -t 182.48086013201001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 91 -a 42 h -t 182.48086013201001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 91 -a 42 + -t 182.48086013201001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 91 -a 42 - -t 182.48086013201001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 91 -a 42 h -t 182.48086013201001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 91 -a 42 r -t 182.48086013201001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 91 -a 42 r -t 182.49220413201002 -s 21 -d 23 -p SRM -e 168 -c 42 -i 91 -a 42 + -t 182.49220413201002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 91 -a 42 - -t 182.49220413201002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 91 -a 42 h -t 182.49220413201002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 91 -a 42 + -t 182.49220413201002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 91 -a 42 - -t 182.49220413201002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 91 -a 42 h -t 182.49220413201002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 91 -a 42 r -t 182.49220413201002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 91 -a 42 r -t 182.50354813201002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 91 -a 42 r -t 182.50354813201002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 91 -a 42 + -t 182.50354813201002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 91 -a 42 - -t 182.50354813201002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 91 -a 42 h -t 182.50354813201002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 91 -a 42 + -t 182.50354813201002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 91 -a 42 - -t 182.50354813201002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 91 -a 42 h -t 182.50354813201002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 91 -a 42 r -t 182.51489213201003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 91 -a 42 r -t 182.51489213201003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 91 -a 42 + -t 182.89258950408001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 93 -a 42 - -t 182.89258950408001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 93 -a 42 h -t 182.89258950408001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 93 -a 42 + -t 182.89258950408001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 93 -a 42 - -t 182.89258950408001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 93 -a 42 h -t 182.89258950408001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 93 -a 42 + -t 182.89258950408001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 93 -a 42 - -t 182.89258950408001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 93 -a 42 h -t 182.89258950408001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 93 -a 42 r -t 182.90393350408002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 93 -a 42 + -t 182.90393350408002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 93 -a 42 - -t 182.90393350408002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 93 -a 42 h -t 182.90393350408002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 93 -a 42 r -t 182.90393350408002 -s 11 -d 13 -p SRM -e 168 -c 42 -i 93 -a 42 + -t 182.90393350408002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 93 -a 42 - -t 182.90393350408002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 93 -a 42 h -t 182.90393350408002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 93 -a 42 + -t 182.90393350408002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 93 -a 42 - -t 182.90393350408002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 93 -a 42 h -t 182.90393350408002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 93 -a 42 r -t 182.90393350408002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 93 -a 42 r -t 182.91527750408002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 93 -a 42 r -t 182.91527750408002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 93 -a 42 r -t 182.91527750408002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 93 -a 42 + -t 182.91527750408002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 93 -a 42 - -t 182.91527750408002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 93 -a 42 h -t 182.91527750408002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 93 -a 42 + -t 182.91527750408002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 93 -a 42 - -t 182.91527750408002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 93 -a 42 h -t 182.91527750408002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 93 -a 42 r -t 182.92662150408003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 93 -a 42 r -t 182.92662150408003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 93 -a 42 + -t 183.80467820414 -s 18 -d 16 -p SRM -e 168 -c 42 -i 94 -a 42 - -t 183.80467820414 -s 18 -d 16 -p SRM -e 168 -c 42 -i 94 -a 42 h -t 183.80467820414 -s 18 -d 16 -p SRM -e 168 -c 42 -i 94 -a 42 r -t 183.81602220414001 -s 18 -d 16 -p SRM -e 168 -c 42 -i 94 -a 42 + -t 183.81602220414001 -s 16 -d 13 -p SRM -e 168 -c 42 -i 94 -a 42 - -t 183.81602220414001 -s 16 -d 13 -p SRM -e 168 -c 42 -i 94 -a 42 h -t 183.81602220414001 -s 16 -d 13 -p SRM -e 168 -c 42 -i 94 -a 42 + -t 183.81602220414001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 94 -a 42 - -t 183.81602220414001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 94 -a 42 h -t 183.81602220414001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 94 -a 42 r -t 183.82736620414002 -s 16 -d 13 -p SRM -e 168 -c 42 -i 94 -a 42 + -t 183.82736620414002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 94 -a 42 - -t 183.82736620414002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 94 -a 42 h -t 183.82736620414002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 94 -a 42 + -t 183.82736620414002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 94 -a 42 - -t 183.82736620414002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 94 -a 42 h -t 183.82736620414002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 94 -a 42 r -t 183.82736620414002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 94 -a 42 + -t 183.83753227318999 -s 10 -d 11 -p SRM -e 168 -c 42 -i 95 -a 42 - -t 183.83753227318999 -s 10 -d 11 -p SRM -e 168 -c 42 -i 95 -a 42 h -t 183.83753227318999 -s 10 -d 11 -p SRM -e 168 -c 42 -i 95 -a 42 + -t 183.83753227318999 -s 10 -d 12 -p SRM -e 168 -c 42 -i 95 -a 42 - -t 183.83753227318999 -s 10 -d 12 -p SRM -e 168 -c 42 -i 95 -a 42 h -t 183.83753227318999 -s 10 -d 12 -p SRM -e 168 -c 42 -i 95 -a 42 r -t 183.83871020414003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 94 -a 42 + -t 183.83871020414003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 94 -a 42 - -t 183.83871020414003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 94 -a 42 h -t 183.83871020414003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 94 -a 42 + -t 183.83871020414003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 94 -a 42 - -t 183.83871020414003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 94 -a 42 h -t 183.83871020414003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 94 -a 42 r -t 183.83871020414003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 94 -a 42 r -t 183.84887627319 -s 10 -d 11 -p SRM -e 168 -c 42 -i 95 -a 42 + -t 183.84887627319 -s 11 -d 13 -p SRM -e 168 -c 42 -i 95 -a 42 - -t 183.84887627319 -s 11 -d 13 -p SRM -e 168 -c 42 -i 95 -a 42 h -t 183.84887627319 -s 11 -d 13 -p SRM -e 168 -c 42 -i 95 -a 42 + -t 183.84887627319 -s 11 -d 14 -p SRM -e 168 -c 42 -i 95 -a 42 - -t 183.84887627319 -s 11 -d 14 -p SRM -e 168 -c 42 -i 95 -a 42 h -t 183.84887627319 -s 11 -d 14 -p SRM -e 168 -c 42 -i 95 -a 42 r -t 183.84887627319 -s 10 -d 12 -p SRM -e 168 -c 42 -i 95 -a 42 r -t 183.85005420414004 -s 11 -d 10 -p SRM -e 168 -c 42 -i 94 -a 42 + -t 183.85005420414004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 94 -a 42 - -t 183.85005420414004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 94 -a 42 h -t 183.85005420414004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 94 -a 42 r -t 183.85005420414004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 94 -a 42 r -t 183.86022027319001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 95 -a 42 + -t 183.86022027319001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 95 -a 42 - -t 183.86022027319001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 95 -a 42 h -t 183.86022027319001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 95 -a 42 + -t 183.86022027319001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 95 -a 42 - -t 183.86022027319001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 95 -a 42 h -t 183.86022027319001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 95 -a 42 r -t 183.86022027319001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 95 -a 42 r -t 183.86139820414004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 94 -a 42 r -t 183.87156427319002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 95 -a 42 r -t 183.87156427319002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 95 -a 42 + -t 183.87156427319002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 95 -a 42 - -t 183.87156427319002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 95 -a 42 h -t 183.87156427319002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 95 -a 42 + -t 183.87156427319002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 95 -a 42 - -t 183.87156427319002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 95 -a 42 h -t 183.87156427319002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 95 -a 42 r -t 183.88290827319003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 95 -a 42 r -t 183.88290827319003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 95 -a 42 + -t 185.00150712321999 -s 28 -d 26 -p SRM -e 168 -c 42 -i 92 -a 42 - -t 185.00150712321999 -s 28 -d 26 -p SRM -e 168 -c 42 -i 92 -a 42 h -t 185.00150712321999 -s 28 -d 26 -p SRM -e 168 -c 42 -i 92 -a 42 r -t 185.01285112322 -s 28 -d 26 -p SRM -e 168 -c 42 -i 92 -a 42 + -t 185.01285112322 -s 26 -d 23 -p SRM -e 168 -c 42 -i 92 -a 42 - -t 185.01285112322 -s 26 -d 23 -p SRM -e 168 -c 42 -i 92 -a 42 h -t 185.01285112322 -s 26 -d 23 -p SRM -e 168 -c 42 -i 92 -a 42 + -t 185.01285112322 -s 26 -d 27 -p SRM -e 168 -c 42 -i 92 -a 42 - -t 185.01285112322 -s 26 -d 27 -p SRM -e 168 -c 42 -i 92 -a 42 h -t 185.01285112322 -s 26 -d 27 -p SRM -e 168 -c 42 -i 92 -a 42 r -t 185.02419512322001 -s 26 -d 23 -p SRM -e 168 -c 42 -i 92 -a 42 + -t 185.02419512322001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 92 -a 42 - -t 185.02419512322001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 92 -a 42 h -t 185.02419512322001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 92 -a 42 + -t 185.02419512322001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 92 -a 42 - -t 185.02419512322001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 92 -a 42 h -t 185.02419512322001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 92 -a 42 r -t 185.02419512322001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 92 -a 42 r -t 185.03553912322002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 92 -a 42 + -t 185.03553912322002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 92 -a 42 - -t 185.03553912322002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 92 -a 42 h -t 185.03553912322002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 92 -a 42 + -t 185.03553912322002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 92 -a 42 - -t 185.03553912322002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 92 -a 42 h -t 185.03553912322002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 92 -a 42 r -t 185.03553912322002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 92 -a 42 r -t 185.04688312322003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 92 -a 42 + -t 185.04688312322003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 92 -a 42 - -t 185.04688312322003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 92 -a 42 h -t 185.04688312322003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 92 -a 42 r -t 185.04688312322003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 92 -a 42 r -t 185.05822712322004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 92 -a 42 + -t 186.13259826397999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 93 -a 42 - -t 186.13259826397999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 93 -a 42 h -t 186.13259826397999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 93 -a 42 + -t 186.13259826397999 -s 21 -d 23 -p SRM -e 168 -c 42 -i 93 -a 42 - -t 186.13259826397999 -s 21 -d 23 -p SRM -e 168 -c 42 -i 93 -a 42 h -t 186.13259826397999 -s 21 -d 23 -p SRM -e 168 -c 42 -i 93 -a 42 + -t 186.13259826397999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 93 -a 42 - -t 186.13259826397999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 93 -a 42 h -t 186.13259826397999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 93 -a 42 r -t 186.14394226397999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 93 -a 42 + -t 186.14394226397999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 93 -a 42 - -t 186.14394226397999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 93 -a 42 h -t 186.14394226397999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 93 -a 42 r -t 186.14394226397999 -s 21 -d 23 -p SRM -e 168 -c 42 -i 93 -a 42 + -t 186.14394226397999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 93 -a 42 - -t 186.14394226397999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 93 -a 42 h -t 186.14394226397999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 93 -a 42 + -t 186.14394226397999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 93 -a 42 - -t 186.14394226397999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 93 -a 42 h -t 186.14394226397999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 93 -a 42 r -t 186.14394226397999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 93 -a 42 r -t 186.15528626398 -s 20 -d 22 -p SRM -e 168 -c 42 -i 93 -a 42 r -t 186.15528626398 -s 23 -d 25 -p SRM -e 168 -c 42 -i 93 -a 42 r -t 186.15528626398 -s 23 -d 26 -p SRM -e 168 -c 42 -i 93 -a 42 + -t 186.15528626398 -s 26 -d 27 -p SRM -e 168 -c 42 -i 93 -a 42 - -t 186.15528626398 -s 26 -d 27 -p SRM -e 168 -c 42 -i 93 -a 42 h -t 186.15528626398 -s 26 -d 27 -p SRM -e 168 -c 42 -i 93 -a 42 + -t 186.15528626398 -s 26 -d 28 -p SRM -e 168 -c 42 -i 93 -a 42 - -t 186.15528626398 -s 26 -d 28 -p SRM -e 168 -c 42 -i 93 -a 42 h -t 186.15528626398 -s 26 -d 28 -p SRM -e 168 -c 42 -i 93 -a 42 r -t 186.16663026398001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 93 -a 42 r -t 186.16663026398001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 93 -a 42 + -t 187.11001039090758 -s 16 -d 13 -p cbr -e 1280 -c 6 -i 96 -a 6 + -t 187.11001039090758 -s 26 -d 23 -p cbr -e 1280 -c 6 -i 94 -a 6 - -t 187.11001039090758 -s 16 -d 13 -p cbr -e 1280 -c 6 -i 96 -a 6 - -t 187.11001039090758 -s 26 -d 23 -p cbr -e 1280 -c 6 -i 94 -a 6 h -t 187.11001039090758 -s 16 -d 13 -p cbr -e 1280 -c 6 -i 96 -a 6 + -t 187.11001039090758 -s 16 -d 17 -p cbr -e 1280 -c 6 -i 96 -a 6 - -t 187.11001039090758 -s 16 -d 17 -p cbr -e 1280 -c 6 -i 96 -a 6 h -t 187.11001039090758 -s 16 -d 17 -p cbr -e 1280 -c 6 -i 96 -a 6 + -t 187.11001039090758 -s 16 -d 18 -p cbr -e 1280 -c 6 -i 96 -a 6 - -t 187.11001039090758 -s 16 -d 18 -p cbr -e 1280 -c 6 -i 96 -a 6 h -t 187.11001039090758 -s 16 -d 18 -p cbr -e 1280 -c 6 -i 96 -a 6 h -t 187.11001039090758 -s 26 -d 23 -p cbr -e 1280 -c 6 -i 94 -a 6 + -t 187.11001039090758 -s 26 -d 27 -p cbr -e 1280 -c 6 -i 94 -a 6 - -t 187.11001039090758 -s 26 -d 27 -p cbr -e 1280 -c 6 -i 94 -a 6 h -t 187.11001039090758 -s 26 -d 27 -p cbr -e 1280 -c 6 -i 94 -a 6 + -t 187.11001039090758 -s 26 -d 28 -p cbr -e 1280 -c 6 -i 94 -a 6 - -t 187.11001039090758 -s 26 -d 28 -p cbr -e 1280 -c 6 -i 94 -a 6 h -t 187.11001039090758 -s 26 -d 28 -p cbr -e 1280 -c 6 -i 94 -a 6 r -t 187.13025039090758 -s 16 -d 13 -p cbr -e 1280 -c 6 -i 96 -a 6 + -t 187.13025039090758 -s 13 -d 11 -p cbr -e 1280 -c 6 -i 96 -a 6 - -t 187.13025039090758 -s 13 -d 11 -p cbr -e 1280 -c 6 -i 96 -a 6 h -t 187.13025039090758 -s 13 -d 11 -p cbr -e 1280 -c 6 -i 96 -a 6 d -t 187.13025039090758 -s 13 -d 11 -p cbr -e 1280 -c 6 -i 96 -a 6 + -t 187.13025039090758 -s 13 -d 15 -p cbr -e 1280 -c 6 -i 96 -a 6 - -t 187.13025039090758 -s 13 -d 15 -p cbr -e 1280 -c 6 -i 96 -a 6 h -t 187.13025039090758 -s 13 -d 15 -p cbr -e 1280 -c 6 -i 96 -a 6 r -t 187.13025039090758 -s 16 -d 17 -p cbr -e 1280 -c 6 -i 96 -a 6 r -t 187.13025039090758 -s 16 -d 18 -p cbr -e 1280 -c 6 -i 96 -a 6 r -t 187.13025039090758 -s 26 -d 23 -p cbr -e 1280 -c 6 -i 94 -a 6 + -t 187.13025039090758 -s 23 -d 21 -p cbr -e 1280 -c 6 -i 94 -a 6 - -t 187.13025039090758 -s 23 -d 21 -p cbr -e 1280 -c 6 -i 94 -a 6 h -t 187.13025039090758 -s 23 -d 21 -p cbr -e 1280 -c 6 -i 94 -a 6 d -t 187.13025039090758 -s 23 -d 21 -p cbr -e 1280 -c 6 -i 94 -a 6 + -t 187.13025039090758 -s 23 -d 25 -p cbr -e 1280 -c 6 -i 94 -a 6 - -t 187.13025039090758 -s 23 -d 25 -p cbr -e 1280 -c 6 -i 94 -a 6 h -t 187.13025039090758 -s 23 -d 25 -p cbr -e 1280 -c 6 -i 94 -a 6 r -t 187.13025039090758 -s 26 -d 27 -p cbr -e 1280 -c 6 -i 94 -a 6 r -t 187.13025039090758 -s 26 -d 28 -p cbr -e 1280 -c 6 -i 94 -a 6 r -t 187.15049039090758 -s 13 -d 15 -p cbr -e 1280 -c 6 -i 96 -a 6 r -t 187.15049039090758 -s 23 -d 25 -p cbr -e 1280 -c 6 -i 94 -a 6 + -t 194.65943990189999 -s 24 -d 21 -p SRM -e 168 -c 42 -i 95 -a 42 - -t 194.65943990189999 -s 24 -d 21 -p SRM -e 168 -c 42 -i 95 -a 42 h -t 194.65943990189999 -s 24 -d 21 -p SRM -e 168 -c 42 -i 95 -a 42 r -t 194.67078390189999 -s 24 -d 21 -p SRM -e 168 -c 42 -i 95 -a 42 + -t 194.67078390189999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 95 -a 42 - -t 194.67078390189999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 95 -a 42 h -t 194.67078390189999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 95 -a 42 + -t 194.67078390189999 -s 21 -d 23 -p SRM -e 168 -c 42 -i 95 -a 42 - -t 194.67078390189999 -s 21 -d 23 -p SRM -e 168 -c 42 -i 95 -a 42 h -t 194.67078390189999 -s 21 -d 23 -p SRM -e 168 -c 42 -i 95 -a 42 r -t 194.6821279019 -s 21 -d 20 -p SRM -e 168 -c 42 -i 95 -a 42 + -t 194.6821279019 -s 20 -d 22 -p SRM -e 168 -c 42 -i 95 -a 42 - -t 194.6821279019 -s 20 -d 22 -p SRM -e 168 -c 42 -i 95 -a 42 h -t 194.6821279019 -s 20 -d 22 -p SRM -e 168 -c 42 -i 95 -a 42 r -t 194.6821279019 -s 21 -d 23 -p SRM -e 168 -c 42 -i 95 -a 42 + -t 194.6821279019 -s 23 -d 25 -p SRM -e 168 -c 42 -i 95 -a 42 - -t 194.6821279019 -s 23 -d 25 -p SRM -e 168 -c 42 -i 95 -a 42 h -t 194.6821279019 -s 23 -d 25 -p SRM -e 168 -c 42 -i 95 -a 42 + -t 194.6821279019 -s 23 -d 26 -p SRM -e 168 -c 42 -i 95 -a 42 - -t 194.6821279019 -s 23 -d 26 -p SRM -e 168 -c 42 -i 95 -a 42 h -t 194.6821279019 -s 23 -d 26 -p SRM -e 168 -c 42 -i 95 -a 42 r -t 194.69347190190001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 95 -a 42 r -t 194.69347190190001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 95 -a 42 r -t 194.69347190190001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 95 -a 42 + -t 194.69347190190001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 95 -a 42 - -t 194.69347190190001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 95 -a 42 h -t 194.69347190190001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 95 -a 42 + -t 194.69347190190001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 95 -a 42 - -t 194.69347190190001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 95 -a 42 h -t 194.69347190190001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 95 -a 42 r -t 194.70481590190002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 95 -a 42 r -t 194.70481590190002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 95 -a 42 + -t 194.81430007437999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 97 -a 42 - -t 194.81430007437999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 97 -a 42 h -t 194.81430007437999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 97 -a 42 + -t 194.81430007437999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 97 -a 42 - -t 194.81430007437999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 97 -a 42 h -t 194.81430007437999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 97 -a 42 + -t 194.81430007437999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 97 -a 42 - -t 194.81430007437999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 97 -a 42 h -t 194.81430007437999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 97 -a 42 r -t 194.82564407437999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 97 -a 42 + -t 194.82564407437999 -s 13 -d 11 -p SRM -e 168 -c 42 -i 97 -a 42 - -t 194.82564407437999 -s 13 -d 11 -p SRM -e 168 -c 42 -i 97 -a 42 h -t 194.82564407437999 -s 13 -d 11 -p SRM -e 168 -c 42 -i 97 -a 42 + -t 194.82564407437999 -s 13 -d 15 -p SRM -e 168 -c 42 -i 97 -a 42 - -t 194.82564407437999 -s 13 -d 15 -p SRM -e 168 -c 42 -i 97 -a 42 h -t 194.82564407437999 -s 13 -d 15 -p SRM -e 168 -c 42 -i 97 -a 42 r -t 194.82564407437999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 97 -a 42 r -t 194.82564407437999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 97 -a 42 r -t 194.83698807438 -s 13 -d 11 -p SRM -e 168 -c 42 -i 97 -a 42 + -t 194.83698807438 -s 11 -d 10 -p SRM -e 168 -c 42 -i 97 -a 42 - -t 194.83698807438 -s 11 -d 10 -p SRM -e 168 -c 42 -i 97 -a 42 h -t 194.83698807438 -s 11 -d 10 -p SRM -e 168 -c 42 -i 97 -a 42 + -t 194.83698807438 -s 11 -d 14 -p SRM -e 168 -c 42 -i 97 -a 42 - -t 194.83698807438 -s 11 -d 14 -p SRM -e 168 -c 42 -i 97 -a 42 h -t 194.83698807438 -s 11 -d 14 -p SRM -e 168 -c 42 -i 97 -a 42 r -t 194.83698807438 -s 13 -d 15 -p SRM -e 168 -c 42 -i 97 -a 42 r -t 194.84833207438001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 97 -a 42 + -t 194.84833207438001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 97 -a 42 - -t 194.84833207438001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 97 -a 42 h -t 194.84833207438001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 97 -a 42 r -t 194.84833207438001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 97 -a 42 r -t 194.85967607438002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 97 -a 42 + -t 194.88878549146 -s 11 -d 10 -p SRM -e 20 -c 6 -i 98 -a 6 - -t 194.88878549146 -s 11 -d 10 -p SRM -e 20 -c 6 -i 98 -a 6 h -t 194.88878549146 -s 11 -d 10 -p SRM -e 20 -c 6 -i 98 -a 6 + -t 194.88878549146 -s 11 -d 13 -p SRM -e 20 -c 6 -i 98 -a 6 - -t 194.88878549146 -s 11 -d 13 -p SRM -e 20 -c 6 -i 98 -a 6 h -t 194.88878549146 -s 11 -d 13 -p SRM -e 20 -c 6 -i 98 -a 6 + -t 194.88878549146 -s 11 -d 14 -p SRM -e 20 -c 6 -i 98 -a 6 - -t 194.88878549146 -s 11 -d 14 -p SRM -e 20 -c 6 -i 98 -a 6 h -t 194.88878549146 -s 11 -d 14 -p SRM -e 20 -c 6 -i 98 -a 6 v -t 194.88878549146 sim_annotation 194.88878549146 8 194.88878549146: node 11 sends request for msg (6:11) m -t 194.88878549146 -s 11 -n _o13:1537:q -c SeaGreen -h square r -t 194.89894549146001 -s 11 -d 10 -p SRM -e 20 -c 6 -i 98 -a 6 + -t 194.89894549146001 -s 10 -d 12 -p SRM -e 20 -c 6 -i 98 -a 6 - -t 194.89894549146001 -s 10 -d 12 -p SRM -e 20 -c 6 -i 98 -a 6 h -t 194.89894549146001 -s 10 -d 12 -p SRM -e 20 -c 6 -i 98 -a 6 r -t 194.89894549146001 -s 11 -d 13 -p SRM -e 20 -c 6 -i 98 -a 6 + -t 194.89894549146001 -s 13 -d 15 -p SRM -e 20 -c 6 -i 98 -a 6 - -t 194.89894549146001 -s 13 -d 15 -p SRM -e 20 -c 6 -i 98 -a 6 h -t 194.89894549146001 -s 13 -d 15 -p SRM -e 20 -c 6 -i 98 -a 6 + -t 194.89894549146001 -s 13 -d 16 -p SRM -e 20 -c 6 -i 98 -a 6 - -t 194.89894549146001 -s 13 -d 16 -p SRM -e 20 -c 6 -i 98 -a 6 h -t 194.89894549146001 -s 13 -d 16 -p SRM -e 20 -c 6 -i 98 -a 6 r -t 194.89894549146001 -s 11 -d 14 -p SRM -e 20 -c 6 -i 98 -a 6 r -t 194.90910549146002 -s 10 -d 12 -p SRM -e 20 -c 6 -i 98 -a 6 r -t 194.90910549146002 -s 13 -d 15 -p SRM -e 20 -c 6 -i 98 -a 6 r -t 194.90910549146002 -s 13 -d 16 -p SRM -e 20 -c 6 -i 98 -a 6 + -t 194.90910549146002 -s 16 -d 17 -p SRM -e 20 -c 6 -i 98 -a 6 - -t 194.90910549146002 -s 16 -d 17 -p SRM -e 20 -c 6 -i 98 -a 6 h -t 194.90910549146002 -s 16 -d 17 -p SRM -e 20 -c 6 -i 98 -a 6 + -t 194.90910549146002 -s 16 -d 18 -p SRM -e 20 -c 6 -i 98 -a 6 - -t 194.90910549146002 -s 16 -d 18 -p SRM -e 20 -c 6 -i 98 -a 6 h -t 194.90910549146002 -s 16 -d 18 -p SRM -e 20 -c 6 -i 98 -a 6 + -t 194.91591807162001 -s 13 -d 11 -p SRM -e 1300 -c 6 -i 99 -a 6 - -t 194.91591807162001 -s 13 -d 11 -p SRM -e 1300 -c 6 -i 99 -a 6 h -t 194.91591807162001 -s 13 -d 11 -p SRM -e 1300 -c 6 -i 99 -a 6 + -t 194.91591807162001 -s 13 -d 15 -p SRM -e 1300 -c 6 -i 99 -a 6 - -t 194.91591807162001 -s 13 -d 15 -p SRM -e 1300 -c 6 -i 99 -a 6 h -t 194.91591807162001 -s 13 -d 15 -p SRM -e 1300 -c 6 -i 99 -a 6 + -t 194.91591807162001 -s 13 -d 16 -p SRM -e 1300 -c 6 -i 99 -a 6 - -t 194.91591807162001 -s 13 -d 16 -p SRM -e 1300 -c 6 -i 99 -a 6 h -t 194.91591807162001 -s 13 -d 16 -p SRM -e 1300 -c 6 -i 99 -a 6 v -t 194.91591807162001 sim_annotation 194.91591807162001 9 194.91591807162001: node 13 sends repair for msg (6:11) m -t 194.91591807162001 -s 13 -n _o23:1537:p -c SeaGreen -h circle r -t 194.91926549146004 -s 16 -d 17 -p SRM -e 20 -c 6 -i 98 -a 6 r -t 194.91926549146004 -s 16 -d 18 -p SRM -e 20 -c 6 -i 98 -a 6 r -t 194.93631807162001 -s 13 -d 11 -p SRM -e 1300 -c 6 -i 99 -a 6 + -t 194.93631807162001 -s 11 -d 10 -p SRM -e 1300 -c 6 -i 99 -a 6 - -t 194.93631807162001 -s 11 -d 10 -p SRM -e 1300 -c 6 -i 99 -a 6 h -t 194.93631807162001 -s 11 -d 10 -p SRM -e 1300 -c 6 -i 99 -a 6 + -t 194.93631807162001 -s 11 -d 14 -p SRM -e 1300 -c 6 -i 99 -a 6 - -t 194.93631807162001 -s 11 -d 14 -p SRM -e 1300 -c 6 -i 99 -a 6 h -t 194.93631807162001 -s 11 -d 14 -p SRM -e 1300 -c 6 -i 99 -a 6 r -t 194.93631807162001 -s 13 -d 15 -p SRM -e 1300 -c 6 -i 99 -a 6 r -t 194.93631807162001 -s 13 -d 16 -p SRM -e 1300 -c 6 -i 99 -a 6 + -t 194.93631807162001 -s 16 -d 17 -p SRM -e 1300 -c 6 -i 99 -a 6 - -t 194.93631807162001 -s 16 -d 17 -p SRM -e 1300 -c 6 -i 99 -a 6 h -t 194.93631807162001 -s 16 -d 17 -p SRM -e 1300 -c 6 -i 99 -a 6 + -t 194.93631807162001 -s 16 -d 18 -p SRM -e 1300 -c 6 -i 99 -a 6 - -t 194.93631807162001 -s 16 -d 18 -p SRM -e 1300 -c 6 -i 99 -a 6 h -t 194.93631807162001 -s 16 -d 18 -p SRM -e 1300 -c 6 -i 99 -a 6 m -t 194.93631807162001 -s 11 -n _o13:1537:q -c SeaGreen -h square -X m -t 194.95041807161999 -s 13 -n _o23:1537:p -c SeaGreen -h circle -X + -t 194.95267449295 -s 18 -d 16 -p SRM -e 1300 -c 6 -i 100 -a 6 - -t 194.95267449295 -s 18 -d 16 -p SRM -e 1300 -c 6 -i 100 -a 6 h -t 194.95267449295 -s 18 -d 16 -p SRM -e 1300 -c 6 -i 100 -a 6 v -t 194.95267449295 sim_annotation 194.95267449295 10 194.95267449295: node 18 sends repair for msg (6:11) m -t 194.95267449295 -s 18 -n _o48:1537:p -c SeaGreen -h circle r -t 194.95671807162 -s 11 -d 10 -p SRM -e 1300 -c 6 -i 99 -a 6 + -t 194.95671807162 -s 10 -d 12 -p SRM -e 1300 -c 6 -i 99 -a 6 - -t 194.95671807162 -s 10 -d 12 -p SRM -e 1300 -c 6 -i 99 -a 6 h -t 194.95671807162 -s 10 -d 12 -p SRM -e 1300 -c 6 -i 99 -a 6 r -t 194.95671807162 -s 11 -d 14 -p SRM -e 1300 -c 6 -i 99 -a 6 r -t 194.95671807162 -s 16 -d 17 -p SRM -e 1300 -c 6 -i 99 -a 6 r -t 194.95671807162 -s 16 -d 18 -p SRM -e 1300 -c 6 -i 99 -a 6 r -t 194.97307449294999 -s 18 -d 16 -p SRM -e 1300 -c 6 -i 100 -a 6 + -t 194.97307449294999 -s 16 -d 13 -p SRM -e 1300 -c 6 -i 100 -a 6 - -t 194.97307449294999 -s 16 -d 13 -p SRM -e 1300 -c 6 -i 100 -a 6 h -t 194.97307449294999 -s 16 -d 13 -p SRM -e 1300 -c 6 -i 100 -a 6 + -t 194.97307449294999 -s 16 -d 17 -p SRM -e 1300 -c 6 -i 100 -a 6 - -t 194.97307449294999 -s 16 -d 17 -p SRM -e 1300 -c 6 -i 100 -a 6 h -t 194.97307449294999 -s 16 -d 17 -p SRM -e 1300 -c 6 -i 100 -a 6 r -t 194.97711807162 -s 10 -d 12 -p SRM -e 1300 -c 6 -i 99 -a 6 r -t 194.99347449294999 -s 16 -d 13 -p SRM -e 1300 -c 6 -i 100 -a 6 + -t 194.99347449294999 -s 13 -d 11 -p SRM -e 1300 -c 6 -i 100 -a 6 - -t 194.99347449294999 -s 13 -d 11 -p SRM -e 1300 -c 6 -i 100 -a 6 h -t 194.99347449294999 -s 13 -d 11 -p SRM -e 1300 -c 6 -i 100 -a 6 + -t 194.99347449294999 -s 13 -d 15 -p SRM -e 1300 -c 6 -i 100 -a 6 - -t 194.99347449294999 -s 13 -d 15 -p SRM -e 1300 -c 6 -i 100 -a 6 h -t 194.99347449294999 -s 13 -d 15 -p SRM -e 1300 -c 6 -i 100 -a 6 r -t 194.99347449294999 -s 16 -d 17 -p SRM -e 1300 -c 6 -i 100 -a 6 r -t 195.01387449294998 -s 13 -d 11 -p SRM -e 1300 -c 6 -i 100 -a 6 + -t 195.01387449294998 -s 11 -d 10 -p SRM -e 1300 -c 6 -i 100 -a 6 - -t 195.01387449294998 -s 11 -d 10 -p SRM -e 1300 -c 6 -i 100 -a 6 h -t 195.01387449294998 -s 11 -d 10 -p SRM -e 1300 -c 6 -i 100 -a 6 + -t 195.01387449294998 -s 11 -d 14 -p SRM -e 1300 -c 6 -i 100 -a 6 - -t 195.01387449294998 -s 11 -d 14 -p SRM -e 1300 -c 6 -i 100 -a 6 h -t 195.01387449294998 -s 11 -d 14 -p SRM -e 1300 -c 6 -i 100 -a 6 r -t 195.01387449294998 -s 13 -d 15 -p SRM -e 1300 -c 6 -i 100 -a 6 r -t 195.03427449294998 -s 11 -d 10 -p SRM -e 1300 -c 6 -i 100 -a 6 + -t 195.03427449294998 -s 10 -d 12 -p SRM -e 1300 -c 6 -i 100 -a 6 - -t 195.03427449294998 -s 10 -d 12 -p SRM -e 1300 -c 6 -i 100 -a 6 h -t 195.03427449294998 -s 10 -d 12 -p SRM -e 1300 -c 6 -i 100 -a 6 r -t 195.03427449294998 -s 11 -d 14 -p SRM -e 1300 -c 6 -i 100 -a 6 r -t 195.05467449294997 -s 10 -d 12 -p SRM -e 1300 -c 6 -i 100 -a 6 m -t 195.05467449295 -s 18 -n _o48:1537:p -c SeaGreen -h circle -X + -t 197.15143089770999 -s 26 -d 23 -p SRM -e 168 -c 42 -i 96 -a 42 - -t 197.15143089770999 -s 26 -d 23 -p SRM -e 168 -c 42 -i 96 -a 42 h -t 197.15143089770999 -s 26 -d 23 -p SRM -e 168 -c 42 -i 96 -a 42 + -t 197.15143089770999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 96 -a 42 - -t 197.15143089770999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 96 -a 42 h -t 197.15143089770999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 96 -a 42 + -t 197.15143089770999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 96 -a 42 - -t 197.15143089770999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 96 -a 42 h -t 197.15143089770999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 96 -a 42 r -t 197.16277489770999 -s 26 -d 23 -p SRM -e 168 -c 42 -i 96 -a 42 + -t 197.16277489770999 -s 23 -d 21 -p SRM -e 168 -c 42 -i 96 -a 42 - -t 197.16277489770999 -s 23 -d 21 -p SRM -e 168 -c 42 -i 96 -a 42 h -t 197.16277489770999 -s 23 -d 21 -p SRM -e 168 -c 42 -i 96 -a 42 + -t 197.16277489770999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 96 -a 42 - -t 197.16277489770999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 96 -a 42 h -t 197.16277489770999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 96 -a 42 r -t 197.16277489770999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 96 -a 42 r -t 197.16277489770999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 96 -a 42 r -t 197.17411889771 -s 23 -d 21 -p SRM -e 168 -c 42 -i 96 -a 42 + -t 197.17411889771 -s 21 -d 20 -p SRM -e 168 -c 42 -i 96 -a 42 - -t 197.17411889771 -s 21 -d 20 -p SRM -e 168 -c 42 -i 96 -a 42 h -t 197.17411889771 -s 21 -d 20 -p SRM -e 168 -c 42 -i 96 -a 42 + -t 197.17411889771 -s 21 -d 24 -p SRM -e 168 -c 42 -i 96 -a 42 - -t 197.17411889771 -s 21 -d 24 -p SRM -e 168 -c 42 -i 96 -a 42 h -t 197.17411889771 -s 21 -d 24 -p SRM -e 168 -c 42 -i 96 -a 42 r -t 197.17411889771 -s 23 -d 25 -p SRM -e 168 -c 42 -i 96 -a 42 r -t 197.18546289771001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 96 -a 42 + -t 197.18546289771001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 96 -a 42 - -t 197.18546289771001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 96 -a 42 h -t 197.18546289771001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 96 -a 42 r -t 197.18546289771001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 96 -a 42 r -t 197.19680689771002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 96 -a 42 + -t 197.40347237982999 -s 21 -d 20 -p SRM -e 20 -c 6 -i 97 -a 6 - -t 197.40347237982999 -s 21 -d 20 -p SRM -e 20 -c 6 -i 97 -a 6 h -t 197.40347237982999 -s 21 -d 20 -p SRM -e 20 -c 6 -i 97 -a 6 + -t 197.40347237982999 -s 21 -d 23 -p SRM -e 20 -c 6 -i 97 -a 6 - -t 197.40347237982999 -s 21 -d 23 -p SRM -e 20 -c 6 -i 97 -a 6 h -t 197.40347237982999 -s 21 -d 23 -p SRM -e 20 -c 6 -i 97 -a 6 + -t 197.40347237982999 -s 21 -d 24 -p SRM -e 20 -c 6 -i 97 -a 6 - -t 197.40347237982999 -s 21 -d 24 -p SRM -e 20 -c 6 -i 97 -a 6 h -t 197.40347237982999 -s 21 -d 24 -p SRM -e 20 -c 6 -i 97 -a 6 v -t 197.40347237982999 sim_annotation 197.40347237982999 11 197.40347237982999: node 21 sends request for msg (6:21) m -t 197.40347237982999 -s 21 -n _o13:1537:q -c SeaGreen -h square r -t 197.41363237983001 -s 21 -d 20 -p SRM -e 20 -c 6 -i 97 -a 6 + -t 197.41363237983001 -s 20 -d 22 -p SRM -e 20 -c 6 -i 97 -a 6 - -t 197.41363237983001 -s 20 -d 22 -p SRM -e 20 -c 6 -i 97 -a 6 h -t 197.41363237983001 -s 20 -d 22 -p SRM -e 20 -c 6 -i 97 -a 6 r -t 197.41363237983001 -s 21 -d 23 -p SRM -e 20 -c 6 -i 97 -a 6 + -t 197.41363237983001 -s 23 -d 25 -p SRM -e 20 -c 6 -i 97 -a 6 - -t 197.41363237983001 -s 23 -d 25 -p SRM -e 20 -c 6 -i 97 -a 6 h -t 197.41363237983001 -s 23 -d 25 -p SRM -e 20 -c 6 -i 97 -a 6 + -t 197.41363237983001 -s 23 -d 26 -p SRM -e 20 -c 6 -i 97 -a 6 - -t 197.41363237983001 -s 23 -d 26 -p SRM -e 20 -c 6 -i 97 -a 6 h -t 197.41363237983001 -s 23 -d 26 -p SRM -e 20 -c 6 -i 97 -a 6 r -t 197.41363237983001 -s 21 -d 24 -p SRM -e 20 -c 6 -i 97 -a 6 r -t 197.42379237983002 -s 20 -d 22 -p SRM -e 20 -c 6 -i 97 -a 6 r -t 197.42379237983002 -s 23 -d 25 -p SRM -e 20 -c 6 -i 97 -a 6 r -t 197.42379237983002 -s 23 -d 26 -p SRM -e 20 -c 6 -i 97 -a 6 + -t 197.42379237983002 -s 26 -d 27 -p SRM -e 20 -c 6 -i 97 -a 6 - -t 197.42379237983002 -s 26 -d 27 -p SRM -e 20 -c 6 -i 97 -a 6 h -t 197.42379237983002 -s 26 -d 27 -p SRM -e 20 -c 6 -i 97 -a 6 + -t 197.42379237983002 -s 26 -d 28 -p SRM -e 20 -c 6 -i 97 -a 6 - -t 197.42379237983002 -s 26 -d 28 -p SRM -e 20 -c 6 -i 97 -a 6 h -t 197.42379237983002 -s 26 -d 28 -p SRM -e 20 -c 6 -i 97 -a 6 + -t 197.42379237983002 -s 26 -d 23 -p SRM -e 1300 -c 6 -i 98 -a 6 - -t 197.42379237983002 -s 26 -d 23 -p SRM -e 1300 -c 6 -i 98 -a 6 h -t 197.42379237983002 -s 26 -d 23 -p SRM -e 1300 -c 6 -i 98 -a 6 + -t 197.42379237983002 -s 26 -d 27 -p SRM -e 1300 -c 6 -i 98 -a 6 + -t 197.42379237983002 -s 26 -d 28 -p SRM -e 1300 -c 6 -i 98 -a 6 v -t 197.42379237983002 sim_annotation 197.42379237983002 12 197.42379237983002: node 26 sends repair for msg (6:21) m -t 197.42379237983002 -s 26 -n _o38:1537:p -c SeaGreen -h circle - -t 197.42395237983001 -s 26 -d 27 -p SRM -e 1300 -c 6 -i 98 -a 6 h -t 197.42395237983001 -s 26 -d 27 -p SRM -e 1300 -c 6 -i 98 -a 6 - -t 197.42395237983001 -s 26 -d 28 -p SRM -e 1300 -c 6 -i 98 -a 6 h -t 197.42395237983001 -s 26 -d 28 -p SRM -e 1300 -c 6 -i 98 -a 6 r -t 197.43395237983003 -s 26 -d 27 -p SRM -e 20 -c 6 -i 97 -a 6 r -t 197.43395237983003 -s 26 -d 28 -p SRM -e 20 -c 6 -i 97 -a 6 r -t 197.44419237983001 -s 26 -d 23 -p SRM -e 1300 -c 6 -i 98 -a 6 + -t 197.44419237983001 -s 23 -d 21 -p SRM -e 1300 -c 6 -i 98 -a 6 - -t 197.44419237983001 -s 23 -d 21 -p SRM -e 1300 -c 6 -i 98 -a 6 h -t 197.44419237983001 -s 23 -d 21 -p SRM -e 1300 -c 6 -i 98 -a 6 + -t 197.44419237983001 -s 23 -d 25 -p SRM -e 1300 -c 6 -i 98 -a 6 - -t 197.44419237983001 -s 23 -d 25 -p SRM -e 1300 -c 6 -i 98 -a 6 h -t 197.44419237983001 -s 23 -d 25 -p SRM -e 1300 -c 6 -i 98 -a 6 r -t 197.44435237983001 -s 26 -d 27 -p SRM -e 1300 -c 6 -i 98 -a 6 r -t 197.44435237983001 -s 26 -d 28 -p SRM -e 1300 -c 6 -i 98 -a 6 r -t 197.46459237983001 -s 23 -d 21 -p SRM -e 1300 -c 6 -i 98 -a 6 + -t 197.46459237983001 -s 21 -d 20 -p SRM -e 1300 -c 6 -i 98 -a 6 - -t 197.46459237983001 -s 21 -d 20 -p SRM -e 1300 -c 6 -i 98 -a 6 h -t 197.46459237983001 -s 21 -d 20 -p SRM -e 1300 -c 6 -i 98 -a 6 + -t 197.46459237983001 -s 21 -d 24 -p SRM -e 1300 -c 6 -i 98 -a 6 - -t 197.46459237983001 -s 21 -d 24 -p SRM -e 1300 -c 6 -i 98 -a 6 h -t 197.46459237983001 -s 21 -d 24 -p SRM -e 1300 -c 6 -i 98 -a 6 r -t 197.46459237983001 -s 23 -d 25 -p SRM -e 1300 -c 6 -i 98 -a 6 m -t 197.46459237983001 -s 21 -n _o13:1537:q -c SeaGreen -h square -X r -t 197.48499237983 -s 21 -d 20 -p SRM -e 1300 -c 6 -i 98 -a 6 + -t 197.48499237983 -s 20 -d 22 -p SRM -e 1300 -c 6 -i 98 -a 6 - -t 197.48499237983 -s 20 -d 22 -p SRM -e 1300 -c 6 -i 98 -a 6 h -t 197.48499237983 -s 20 -d 22 -p SRM -e 1300 -c 6 -i 98 -a 6 r -t 197.48499237983 -s 21 -d 24 -p SRM -e 1300 -c 6 -i 98 -a 6 r -t 197.50539237983 -s 20 -d 22 -p SRM -e 1300 -c 6 -i 98 -a 6 m -t 197.59479237983001 -s 26 -n _o38:1537:p -c SeaGreen -h circle -X + -t 198.67018008148 -s 13 -d 11 -p SRM -e 168 -c 42 -i 101 -a 42 - -t 198.67018008148 -s 13 -d 11 -p SRM -e 168 -c 42 -i 101 -a 42 h -t 198.67018008148 -s 13 -d 11 -p SRM -e 168 -c 42 -i 101 -a 42 + -t 198.67018008148 -s 13 -d 15 -p SRM -e 168 -c 42 -i 101 -a 42 - -t 198.67018008148 -s 13 -d 15 -p SRM -e 168 -c 42 -i 101 -a 42 h -t 198.67018008148 -s 13 -d 15 -p SRM -e 168 -c 42 -i 101 -a 42 + -t 198.67018008148 -s 13 -d 16 -p SRM -e 168 -c 42 -i 101 -a 42 - -t 198.67018008148 -s 13 -d 16 -p SRM -e 168 -c 42 -i 101 -a 42 h -t 198.67018008148 -s 13 -d 16 -p SRM -e 168 -c 42 -i 101 -a 42 r -t 198.68152408148001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 101 -a 42 + -t 198.68152408148001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 101 -a 42 - -t 198.68152408148001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 101 -a 42 h -t 198.68152408148001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 101 -a 42 + -t 198.68152408148001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 101 -a 42 - -t 198.68152408148001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 101 -a 42 h -t 198.68152408148001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 101 -a 42 r -t 198.68152408148001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 101 -a 42 r -t 198.68152408148001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 101 -a 42 + -t 198.68152408148001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 101 -a 42 - -t 198.68152408148001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 101 -a 42 h -t 198.68152408148001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 101 -a 42 + -t 198.68152408148001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 101 -a 42 - -t 198.68152408148001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 101 -a 42 h -t 198.68152408148001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 101 -a 42 r -t 198.69286808148001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 101 -a 42 + -t 198.69286808148001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 101 -a 42 - -t 198.69286808148001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 101 -a 42 h -t 198.69286808148001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 101 -a 42 r -t 198.69286808148001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 101 -a 42 r -t 198.69286808148001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 101 -a 42 r -t 198.69286808148001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 101 -a 42 r -t 198.70421208148002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 101 -a 42 + -t 199.16159985710999 -s 12 -d 10 -p SRM -e 168 -c 42 -i 102 -a 42 - -t 199.16159985710999 -s 12 -d 10 -p SRM -e 168 -c 42 -i 102 -a 42 h -t 199.16159985710999 -s 12 -d 10 -p SRM -e 168 -c 42 -i 102 -a 42 r -t 199.17294385711 -s 12 -d 10 -p SRM -e 168 -c 42 -i 102 -a 42 + -t 199.17294385711 -s 10 -d 11 -p SRM -e 168 -c 42 -i 102 -a 42 - -t 199.17294385711 -s 10 -d 11 -p SRM -e 168 -c 42 -i 102 -a 42 h -t 199.17294385711 -s 10 -d 11 -p SRM -e 168 -c 42 -i 102 -a 42 r -t 199.18428785711001 -s 10 -d 11 -p SRM -e 168 -c 42 -i 102 -a 42 + -t 199.18428785711001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 102 -a 42 - -t 199.18428785711001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 102 -a 42 h -t 199.18428785711001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 102 -a 42 + -t 199.18428785711001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 102 -a 42 - -t 199.18428785711001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 102 -a 42 h -t 199.18428785711001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 102 -a 42 r -t 199.19563185711002 -s 11 -d 13 -p SRM -e 168 -c 42 -i 102 -a 42 + -t 199.19563185711002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 102 -a 42 - -t 199.19563185711002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 102 -a 42 h -t 199.19563185711002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 102 -a 42 + -t 199.19563185711002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 102 -a 42 - -t 199.19563185711002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 102 -a 42 h -t 199.19563185711002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 102 -a 42 r -t 199.19563185711002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 102 -a 42 r -t 199.20697585711002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 102 -a 42 r -t 199.20697585711002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 102 -a 42 + -t 199.20697585711002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 102 -a 42 - -t 199.20697585711002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 102 -a 42 h -t 199.20697585711002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 102 -a 42 + -t 199.20697585711002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 102 -a 42 - -t 199.20697585711002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 102 -a 42 h -t 199.20697585711002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 102 -a 42 r -t 199.21831985711003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 102 -a 42 r -t 199.21831985711003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 102 -a 42 + -t 199.33506604230001 -s 25 -d 23 -p SRM -e 168 -c 42 -i 99 -a 42 - -t 199.33506604230001 -s 25 -d 23 -p SRM -e 168 -c 42 -i 99 -a 42 h -t 199.33506604230001 -s 25 -d 23 -p SRM -e 168 -c 42 -i 99 -a 42 r -t 199.34641004230002 -s 25 -d 23 -p SRM -e 168 -c 42 -i 99 -a 42 + -t 199.34641004230002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 99 -a 42 - -t 199.34641004230002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 99 -a 42 h -t 199.34641004230002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 99 -a 42 + -t 199.34641004230002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 99 -a 42 - -t 199.34641004230002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 99 -a 42 h -t 199.34641004230002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 99 -a 42 r -t 199.35775404230003 -s 23 -d 21 -p SRM -e 168 -c 42 -i 99 -a 42 + -t 199.35775404230003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 99 -a 42 - -t 199.35775404230003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 99 -a 42 h -t 199.35775404230003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 99 -a 42 + -t 199.35775404230003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 99 -a 42 - -t 199.35775404230003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 99 -a 42 h -t 199.35775404230003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 99 -a 42 r -t 199.35775404230003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 99 -a 42 + -t 199.35775404230003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 99 -a 42 - -t 199.35775404230003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 99 -a 42 h -t 199.35775404230003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 99 -a 42 + -t 199.35775404230003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 99 -a 42 - -t 199.35775404230003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 99 -a 42 h -t 199.35775404230003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 99 -a 42 r -t 199.36909804230004 -s 21 -d 20 -p SRM -e 168 -c 42 -i 99 -a 42 + -t 199.36909804230004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 99 -a 42 - -t 199.36909804230004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 99 -a 42 h -t 199.36909804230004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 99 -a 42 r -t 199.36909804230004 -s 21 -d 24 -p SRM -e 168 -c 42 -i 99 -a 42 r -t 199.36909804230004 -s 26 -d 27 -p SRM -e 168 -c 42 -i 99 -a 42 r -t 199.36909804230004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 99 -a 42 r -t 199.38044204230005 -s 20 -d 22 -p SRM -e 168 -c 42 -i 99 -a 42 + -t 199.75653426874001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 100 -a 42 - -t 199.75653426874001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 100 -a 42 h -t 199.75653426874001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 100 -a 42 + -t 199.75653426874001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 100 -a 42 - -t 199.75653426874001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 100 -a 42 h -t 199.75653426874001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 100 -a 42 + -t 199.75653426874001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 100 -a 42 - -t 199.75653426874001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 100 -a 42 h -t 199.75653426874001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 100 -a 42 r -t 199.76787826874002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 100 -a 42 + -t 199.76787826874002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 100 -a 42 - -t 199.76787826874002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 100 -a 42 h -t 199.76787826874002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 100 -a 42 + -t 199.76787826874002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 100 -a 42 - -t 199.76787826874002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 100 -a 42 h -t 199.76787826874002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 100 -a 42 r -t 199.76787826874002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 100 -a 42 r -t 199.76787826874002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 100 -a 42 + -t 199.76787826874002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 100 -a 42 - -t 199.76787826874002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 100 -a 42 h -t 199.76787826874002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 100 -a 42 + -t 199.76787826874002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 100 -a 42 - -t 199.76787826874002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 100 -a 42 h -t 199.76787826874002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 100 -a 42 r -t 199.77922226874003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 100 -a 42 + -t 199.77922226874003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 100 -a 42 - -t 199.77922226874003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 100 -a 42 h -t 199.77922226874003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 100 -a 42 r -t 199.77922226874003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 100 -a 42 r -t 199.77922226874003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 100 -a 42 r -t 199.77922226874003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 100 -a 42 r -t 199.79056626874004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 100 -a 42 + -t 200.05075751224999 -s 15 -d 13 -p SRM -e 168 -c 42 -i 103 -a 42 - -t 200.05075751224999 -s 15 -d 13 -p SRM -e 168 -c 42 -i 103 -a 42 h -t 200.05075751224999 -s 15 -d 13 -p SRM -e 168 -c 42 -i 103 -a 42 r -t 200.06210151225 -s 15 -d 13 -p SRM -e 168 -c 42 -i 103 -a 42 + -t 200.06210151225 -s 13 -d 11 -p SRM -e 168 -c 42 -i 103 -a 42 - -t 200.06210151225 -s 13 -d 11 -p SRM -e 168 -c 42 -i 103 -a 42 h -t 200.06210151225 -s 13 -d 11 -p SRM -e 168 -c 42 -i 103 -a 42 + -t 200.06210151225 -s 13 -d 16 -p SRM -e 168 -c 42 -i 103 -a 42 - -t 200.06210151225 -s 13 -d 16 -p SRM -e 168 -c 42 -i 103 -a 42 h -t 200.06210151225 -s 13 -d 16 -p SRM -e 168 -c 42 -i 103 -a 42 r -t 200.07344551225 -s 13 -d 11 -p SRM -e 168 -c 42 -i 103 -a 42 + -t 200.07344551225 -s 11 -d 10 -p SRM -e 168 -c 42 -i 103 -a 42 - -t 200.07344551225 -s 11 -d 10 -p SRM -e 168 -c 42 -i 103 -a 42 h -t 200.07344551225 -s 11 -d 10 -p SRM -e 168 -c 42 -i 103 -a 42 + -t 200.07344551225 -s 11 -d 14 -p SRM -e 168 -c 42 -i 103 -a 42 - -t 200.07344551225 -s 11 -d 14 -p SRM -e 168 -c 42 -i 103 -a 42 h -t 200.07344551225 -s 11 -d 14 -p SRM -e 168 -c 42 -i 103 -a 42 r -t 200.07344551225 -s 13 -d 16 -p SRM -e 168 -c 42 -i 103 -a 42 + -t 200.07344551225 -s 16 -d 17 -p SRM -e 168 -c 42 -i 103 -a 42 - -t 200.07344551225 -s 16 -d 17 -p SRM -e 168 -c 42 -i 103 -a 42 h -t 200.07344551225 -s 16 -d 17 -p SRM -e 168 -c 42 -i 103 -a 42 + -t 200.07344551225 -s 16 -d 18 -p SRM -e 168 -c 42 -i 103 -a 42 - -t 200.07344551225 -s 16 -d 18 -p SRM -e 168 -c 42 -i 103 -a 42 h -t 200.07344551225 -s 16 -d 18 -p SRM -e 168 -c 42 -i 103 -a 42 r -t 200.08478951225001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 103 -a 42 + -t 200.08478951225001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 103 -a 42 - -t 200.08478951225001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 103 -a 42 h -t 200.08478951225001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 103 -a 42 r -t 200.08478951225001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 103 -a 42 r -t 200.08478951225001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 103 -a 42 r -t 200.08478951225001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 103 -a 42 r -t 200.09613351225002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 103 -a 42 + -t 200.71532220776001 -s 14 -d 11 -p SRM -e 168 -c 42 -i 104 -a 42 - -t 200.71532220776001 -s 14 -d 11 -p SRM -e 168 -c 42 -i 104 -a 42 h -t 200.71532220776001 -s 14 -d 11 -p SRM -e 168 -c 42 -i 104 -a 42 r -t 200.72666620776002 -s 14 -d 11 -p SRM -e 168 -c 42 -i 104 -a 42 + -t 200.72666620776002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 104 -a 42 - -t 200.72666620776002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 104 -a 42 h -t 200.72666620776002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 104 -a 42 + -t 200.72666620776002 -s 11 -d 13 -p SRM -e 168 -c 42 -i 104 -a 42 - -t 200.72666620776002 -s 11 -d 13 -p SRM -e 168 -c 42 -i 104 -a 42 h -t 200.72666620776002 -s 11 -d 13 -p SRM -e 168 -c 42 -i 104 -a 42 + -t 200.72956989157001 -s 17 -d 16 -p SRM -e 168 -c 42 -i 105 -a 42 - -t 200.72956989157001 -s 17 -d 16 -p SRM -e 168 -c 42 -i 105 -a 42 h -t 200.72956989157001 -s 17 -d 16 -p SRM -e 168 -c 42 -i 105 -a 42 r -t 200.73801020776003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 104 -a 42 + -t 200.73801020776003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 104 -a 42 - -t 200.73801020776003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 104 -a 42 h -t 200.73801020776003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 104 -a 42 r -t 200.73801020776003 -s 11 -d 13 -p SRM -e 168 -c 42 -i 104 -a 42 + -t 200.73801020776003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 104 -a 42 - -t 200.73801020776003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 104 -a 42 h -t 200.73801020776003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 104 -a 42 + -t 200.73801020776003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 104 -a 42 - -t 200.73801020776003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 104 -a 42 h -t 200.73801020776003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 104 -a 42 r -t 200.74091389157002 -s 17 -d 16 -p SRM -e 168 -c 42 -i 105 -a 42 + -t 200.74091389157002 -s 16 -d 13 -p SRM -e 168 -c 42 -i 105 -a 42 - -t 200.74091389157002 -s 16 -d 13 -p SRM -e 168 -c 42 -i 105 -a 42 h -t 200.74091389157002 -s 16 -d 13 -p SRM -e 168 -c 42 -i 105 -a 42 + -t 200.74091389157002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 105 -a 42 - -t 200.74091389157002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 105 -a 42 h -t 200.74091389157002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 105 -a 42 r -t 200.74935420776004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 104 -a 42 r -t 200.74935420776004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 104 -a 42 r -t 200.74935420776004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 104 -a 42 + -t 200.74935420776004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 104 -a 42 - -t 200.74935420776004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 104 -a 42 h -t 200.74935420776004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 104 -a 42 + -t 200.74935420776004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 104 -a 42 - -t 200.74935420776004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 104 -a 42 h -t 200.74935420776004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 104 -a 42 r -t 200.75225789157003 -s 16 -d 13 -p SRM -e 168 -c 42 -i 105 -a 42 + -t 200.75225789157003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 105 -a 42 - -t 200.75225789157003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 105 -a 42 h -t 200.75225789157003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 105 -a 42 + -t 200.75225789157003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 105 -a 42 - -t 200.75225789157003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 105 -a 42 h -t 200.75225789157003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 105 -a 42 r -t 200.75225789157003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 105 -a 42 r -t 200.76069820776004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 104 -a 42 r -t 200.76069820776004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 104 -a 42 r -t 200.76360189157003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 105 -a 42 + -t 200.76360189157003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 105 -a 42 - -t 200.76360189157003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 105 -a 42 h -t 200.76360189157003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 105 -a 42 + -t 200.76360189157003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 105 -a 42 - -t 200.76360189157003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 105 -a 42 h -t 200.76360189157003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 105 -a 42 r -t 200.76360189157003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 105 -a 42 r -t 200.77494589157004 -s 11 -d 10 -p SRM -e 168 -c 42 -i 105 -a 42 + -t 200.77494589157004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 105 -a 42 - -t 200.77494589157004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 105 -a 42 h -t 200.77494589157004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 105 -a 42 r -t 200.77494589157004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 105 -a 42 r -t 200.78628989157005 -s 10 -d 12 -p SRM -e 168 -c 42 -i 105 -a 42 + -t 200.81190102935 -s 27 -d 26 -p SRM -e 168 -c 42 -i 101 -a 42 - -t 200.81190102935 -s 27 -d 26 -p SRM -e 168 -c 42 -i 101 -a 42 h -t 200.81190102935 -s 27 -d 26 -p SRM -e 168 -c 42 -i 101 -a 42 r -t 200.82324502935001 -s 27 -d 26 -p SRM -e 168 -c 42 -i 101 -a 42 + -t 200.82324502935001 -s 26 -d 23 -p SRM -e 168 -c 42 -i 101 -a 42 - -t 200.82324502935001 -s 26 -d 23 -p SRM -e 168 -c 42 -i 101 -a 42 h -t 200.82324502935001 -s 26 -d 23 -p SRM -e 168 -c 42 -i 101 -a 42 + -t 200.82324502935001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 101 -a 42 - -t 200.82324502935001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 101 -a 42 h -t 200.82324502935001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 101 -a 42 r -t 200.83458902935001 -s 26 -d 23 -p SRM -e 168 -c 42 -i 101 -a 42 + -t 200.83458902935001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 101 -a 42 - -t 200.83458902935001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 101 -a 42 h -t 200.83458902935001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 101 -a 42 + -t 200.83458902935001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 101 -a 42 - -t 200.83458902935001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 101 -a 42 h -t 200.83458902935001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 101 -a 42 r -t 200.83458902935001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 101 -a 42 r -t 200.84593302935002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 101 -a 42 + -t 200.84593302935002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 101 -a 42 - -t 200.84593302935002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 101 -a 42 h -t 200.84593302935002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 101 -a 42 + -t 200.84593302935002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 101 -a 42 - -t 200.84593302935002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 101 -a 42 h -t 200.84593302935002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 101 -a 42 r -t 200.84593302935002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 101 -a 42 r -t 200.85727702935003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 101 -a 42 + -t 200.85727702935003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 101 -a 42 - -t 200.85727702935003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 101 -a 42 h -t 200.85727702935003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 101 -a 42 r -t 200.85727702935003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 101 -a 42 r -t 200.86862102935004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 101 -a 42 + -t 201.06212238062 -s 20 -d 21 -p SRM -e 168 -c 42 -i 102 -a 42 - -t 201.06212238062 -s 20 -d 21 -p SRM -e 168 -c 42 -i 102 -a 42 h -t 201.06212238062 -s 20 -d 21 -p SRM -e 168 -c 42 -i 102 -a 42 + -t 201.06212238062 -s 20 -d 22 -p SRM -e 168 -c 42 -i 102 -a 42 - -t 201.06212238062 -s 20 -d 22 -p SRM -e 168 -c 42 -i 102 -a 42 h -t 201.06212238062 -s 20 -d 22 -p SRM -e 168 -c 42 -i 102 -a 42 r -t 201.07346638062 -s 20 -d 21 -p SRM -e 168 -c 42 -i 102 -a 42 + -t 201.07346638062 -s 21 -d 23 -p SRM -e 168 -c 42 -i 102 -a 42 - -t 201.07346638062 -s 21 -d 23 -p SRM -e 168 -c 42 -i 102 -a 42 h -t 201.07346638062 -s 21 -d 23 -p SRM -e 168 -c 42 -i 102 -a 42 + -t 201.07346638062 -s 21 -d 24 -p SRM -e 168 -c 42 -i 102 -a 42 - -t 201.07346638062 -s 21 -d 24 -p SRM -e 168 -c 42 -i 102 -a 42 h -t 201.07346638062 -s 21 -d 24 -p SRM -e 168 -c 42 -i 102 -a 42 r -t 201.07346638062 -s 20 -d 22 -p SRM -e 168 -c 42 -i 102 -a 42 r -t 201.08481038062001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 102 -a 42 + -t 201.08481038062001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 102 -a 42 - -t 201.08481038062001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 102 -a 42 h -t 201.08481038062001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 102 -a 42 + -t 201.08481038062001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 102 -a 42 - -t 201.08481038062001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 102 -a 42 h -t 201.08481038062001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 102 -a 42 r -t 201.08481038062001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 102 -a 42 r -t 201.09615438062002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 102 -a 42 r -t 201.09615438062002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 102 -a 42 + -t 201.09615438062002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 102 -a 42 - -t 201.09615438062002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 102 -a 42 h -t 201.09615438062002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 102 -a 42 + -t 201.09615438062002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 102 -a 42 - -t 201.09615438062002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 102 -a 42 h -t 201.09615438062002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 102 -a 42 r -t 201.10749838062003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 102 -a 42 r -t 201.10749838062003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 102 -a 42 + -t 201.72027632837001 -s 22 -d 20 -p SRM -e 168 -c 42 -i 103 -a 42 - -t 201.72027632837001 -s 22 -d 20 -p SRM -e 168 -c 42 -i 103 -a 42 h -t 201.72027632837001 -s 22 -d 20 -p SRM -e 168 -c 42 -i 103 -a 42 r -t 201.73162032837001 -s 22 -d 20 -p SRM -e 168 -c 42 -i 103 -a 42 + -t 201.73162032837001 -s 20 -d 21 -p SRM -e 168 -c 42 -i 103 -a 42 - -t 201.73162032837001 -s 20 -d 21 -p SRM -e 168 -c 42 -i 103 -a 42 h -t 201.73162032837001 -s 20 -d 21 -p SRM -e 168 -c 42 -i 103 -a 42 r -t 201.74296432837002 -s 20 -d 21 -p SRM -e 168 -c 42 -i 103 -a 42 + -t 201.74296432837002 -s 21 -d 23 -p SRM -e 168 -c 42 -i 103 -a 42 - -t 201.74296432837002 -s 21 -d 23 -p SRM -e 168 -c 42 -i 103 -a 42 h -t 201.74296432837002 -s 21 -d 23 -p SRM -e 168 -c 42 -i 103 -a 42 + -t 201.74296432837002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 103 -a 42 - -t 201.74296432837002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 103 -a 42 h -t 201.74296432837002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 103 -a 42 r -t 201.75430832837003 -s 21 -d 23 -p SRM -e 168 -c 42 -i 103 -a 42 + -t 201.75430832837003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 103 -a 42 - -t 201.75430832837003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 103 -a 42 h -t 201.75430832837003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 103 -a 42 + -t 201.75430832837003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 103 -a 42 - -t 201.75430832837003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 103 -a 42 h -t 201.75430832837003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 103 -a 42 r -t 201.75430832837003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 103 -a 42 r -t 201.76565232837004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 103 -a 42 r -t 201.76565232837004 -s 23 -d 26 -p SRM -e 168 -c 42 -i 103 -a 42 + -t 201.76565232837004 -s 26 -d 27 -p SRM -e 168 -c 42 -i 103 -a 42 - -t 201.76565232837004 -s 26 -d 27 -p SRM -e 168 -c 42 -i 103 -a 42 h -t 201.76565232837004 -s 26 -d 27 -p SRM -e 168 -c 42 -i 103 -a 42 + -t 201.76565232837004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 103 -a 42 - -t 201.76565232837004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 103 -a 42 h -t 201.76565232837004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 103 -a 42 r -t 201.77699632837005 -s 26 -d 27 -p SRM -e 168 -c 42 -i 103 -a 42 r -t 201.77699632837005 -s 26 -d 28 -p SRM -e 168 -c 42 -i 103 -a 42 + -t 202.40481135896999 -s 10 -d 11 -p SRM -e 168 -c 42 -i 106 -a 42 - -t 202.40481135896999 -s 10 -d 11 -p SRM -e 168 -c 42 -i 106 -a 42 h -t 202.40481135896999 -s 10 -d 11 -p SRM -e 168 -c 42 -i 106 -a 42 + -t 202.40481135896999 -s 10 -d 12 -p SRM -e 168 -c 42 -i 106 -a 42 - -t 202.40481135896999 -s 10 -d 12 -p SRM -e 168 -c 42 -i 106 -a 42 h -t 202.40481135896999 -s 10 -d 12 -p SRM -e 168 -c 42 -i 106 -a 42 r -t 202.41615535897 -s 10 -d 11 -p SRM -e 168 -c 42 -i 106 -a 42 + -t 202.41615535897 -s 11 -d 13 -p SRM -e 168 -c 42 -i 106 -a 42 - -t 202.41615535897 -s 11 -d 13 -p SRM -e 168 -c 42 -i 106 -a 42 h -t 202.41615535897 -s 11 -d 13 -p SRM -e 168 -c 42 -i 106 -a 42 + -t 202.41615535897 -s 11 -d 14 -p SRM -e 168 -c 42 -i 106 -a 42 - -t 202.41615535897 -s 11 -d 14 -p SRM -e 168 -c 42 -i 106 -a 42 h -t 202.41615535897 -s 11 -d 14 -p SRM -e 168 -c 42 -i 106 -a 42 r -t 202.41615535897 -s 10 -d 12 -p SRM -e 168 -c 42 -i 106 -a 42 r -t 202.42749935897001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 106 -a 42 + -t 202.42749935897001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 106 -a 42 - -t 202.42749935897001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 106 -a 42 h -t 202.42749935897001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 106 -a 42 + -t 202.42749935897001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 106 -a 42 - -t 202.42749935897001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 106 -a 42 h -t 202.42749935897001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 106 -a 42 r -t 202.42749935897001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 106 -a 42 r -t 202.43884335897002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 106 -a 42 r -t 202.43884335897002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 106 -a 42 + -t 202.43884335897002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 106 -a 42 - -t 202.43884335897002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 106 -a 42 h -t 202.43884335897002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 106 -a 42 + -t 202.43884335897002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 106 -a 42 - -t 202.43884335897002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 106 -a 42 h -t 202.43884335897002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 106 -a 42 r -t 202.45018735897003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 106 -a 42 r -t 202.45018735897003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 106 -a 42 + -t 203.43974497863999 -s 18 -d 16 -p SRM -e 168 -c 42 -i 107 -a 42 - -t 203.43974497863999 -s 18 -d 16 -p SRM -e 168 -c 42 -i 107 -a 42 h -t 203.43974497863999 -s 18 -d 16 -p SRM -e 168 -c 42 -i 107 -a 42 r -t 203.45108897864 -s 18 -d 16 -p SRM -e 168 -c 42 -i 107 -a 42 + -t 203.45108897864 -s 16 -d 13 -p SRM -e 168 -c 42 -i 107 -a 42 - -t 203.45108897864 -s 16 -d 13 -p SRM -e 168 -c 42 -i 107 -a 42 h -t 203.45108897864 -s 16 -d 13 -p SRM -e 168 -c 42 -i 107 -a 42 + -t 203.45108897864 -s 16 -d 17 -p SRM -e 168 -c 42 -i 107 -a 42 - -t 203.45108897864 -s 16 -d 17 -p SRM -e 168 -c 42 -i 107 -a 42 h -t 203.45108897864 -s 16 -d 17 -p SRM -e 168 -c 42 -i 107 -a 42 r -t 203.46243297864001 -s 16 -d 13 -p SRM -e 168 -c 42 -i 107 -a 42 + -t 203.46243297864001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 107 -a 42 - -t 203.46243297864001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 107 -a 42 h -t 203.46243297864001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 107 -a 42 + -t 203.46243297864001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 107 -a 42 - -t 203.46243297864001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 107 -a 42 h -t 203.46243297864001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 107 -a 42 r -t 203.46243297864001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 107 -a 42 r -t 203.47377697864002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 107 -a 42 + -t 203.47377697864002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 107 -a 42 - -t 203.47377697864002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 107 -a 42 h -t 203.47377697864002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 107 -a 42 + -t 203.47377697864002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 107 -a 42 - -t 203.47377697864002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 107 -a 42 h -t 203.47377697864002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 107 -a 42 r -t 203.47377697864002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 107 -a 42 r -t 203.48512097864003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 107 -a 42 + -t 203.48512097864003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 107 -a 42 - -t 203.48512097864003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 107 -a 42 h -t 203.48512097864003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 107 -a 42 r -t 203.48512097864003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 107 -a 42 r -t 203.49646497864003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 107 -a 42 + -t 204.82580989242001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 108 -a 42 - -t 204.82580989242001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 108 -a 42 h -t 204.82580989242001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 108 -a 42 + -t 204.82580989242001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 108 -a 42 - -t 204.82580989242001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 108 -a 42 h -t 204.82580989242001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 108 -a 42 + -t 204.82580989242001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 108 -a 42 - -t 204.82580989242001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 108 -a 42 h -t 204.82580989242001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 108 -a 42 r -t 204.83715389242002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 108 -a 42 + -t 204.83715389242002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 108 -a 42 - -t 204.83715389242002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 108 -a 42 h -t 204.83715389242002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 108 -a 42 r -t 204.83715389242002 -s 11 -d 13 -p SRM -e 168 -c 42 -i 108 -a 42 + -t 204.83715389242002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 108 -a 42 - -t 204.83715389242002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 108 -a 42 h -t 204.83715389242002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 108 -a 42 + -t 204.83715389242002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 108 -a 42 - -t 204.83715389242002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 108 -a 42 h -t 204.83715389242002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 108 -a 42 r -t 204.83715389242002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 108 -a 42 r -t 204.84849789242003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 108 -a 42 r -t 204.84849789242003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 108 -a 42 r -t 204.84849789242003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 108 -a 42 + -t 204.84849789242003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 108 -a 42 - -t 204.84849789242003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 108 -a 42 h -t 204.84849789242003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 108 -a 42 + -t 204.84849789242003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 108 -a 42 - -t 204.84849789242003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 108 -a 42 h -t 204.84849789242003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 108 -a 42 r -t 204.85984189242004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 108 -a 42 r -t 204.85984189242004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 108 -a 42 + -t 205.76766503848 -s 21 -d 20 -p SRM -e 168 -c 42 -i 104 -a 42 - -t 205.76766503848 -s 21 -d 20 -p SRM -e 168 -c 42 -i 104 -a 42 h -t 205.76766503848 -s 21 -d 20 -p SRM -e 168 -c 42 -i 104 -a 42 + -t 205.76766503848 -s 21 -d 23 -p SRM -e 168 -c 42 -i 104 -a 42 - -t 205.76766503848 -s 21 -d 23 -p SRM -e 168 -c 42 -i 104 -a 42 h -t 205.76766503848 -s 21 -d 23 -p SRM -e 168 -c 42 -i 104 -a 42 + -t 205.76766503848 -s 21 -d 24 -p SRM -e 168 -c 42 -i 104 -a 42 - -t 205.76766503848 -s 21 -d 24 -p SRM -e 168 -c 42 -i 104 -a 42 h -t 205.76766503848 -s 21 -d 24 -p SRM -e 168 -c 42 -i 104 -a 42 r -t 205.77900903848001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 104 -a 42 + -t 205.77900903848001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 104 -a 42 - -t 205.77900903848001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 104 -a 42 h -t 205.77900903848001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 104 -a 42 r -t 205.77900903848001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 104 -a 42 + -t 205.77900903848001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 104 -a 42 - -t 205.77900903848001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 104 -a 42 h -t 205.77900903848001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 104 -a 42 + -t 205.77900903848001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 104 -a 42 - -t 205.77900903848001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 104 -a 42 h -t 205.77900903848001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 104 -a 42 r -t 205.77900903848001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 104 -a 42 r -t 205.79035303848002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 104 -a 42 r -t 205.79035303848002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 104 -a 42 r -t 205.79035303848002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 104 -a 42 + -t 205.79035303848002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 104 -a 42 - -t 205.79035303848002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 104 -a 42 h -t 205.79035303848002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 104 -a 42 + -t 205.79035303848002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 104 -a 42 - -t 205.79035303848002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 104 -a 42 h -t 205.79035303848002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 104 -a 42 r -t 205.80169703848003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 104 -a 42 r -t 205.80169703848003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 104 -a 42 + -t 206.93472751156 -s 28 -d 26 -p SRM -e 168 -c 42 -i 105 -a 42 - -t 206.93472751156 -s 28 -d 26 -p SRM -e 168 -c 42 -i 105 -a 42 h -t 206.93472751156 -s 28 -d 26 -p SRM -e 168 -c 42 -i 105 -a 42 r -t 206.94607151156001 -s 28 -d 26 -p SRM -e 168 -c 42 -i 105 -a 42 + -t 206.94607151156001 -s 26 -d 23 -p SRM -e 168 -c 42 -i 105 -a 42 - -t 206.94607151156001 -s 26 -d 23 -p SRM -e 168 -c 42 -i 105 -a 42 h -t 206.94607151156001 -s 26 -d 23 -p SRM -e 168 -c 42 -i 105 -a 42 + -t 206.94607151156001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 105 -a 42 - -t 206.94607151156001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 105 -a 42 h -t 206.94607151156001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 105 -a 42 r -t 206.95741551156001 -s 26 -d 23 -p SRM -e 168 -c 42 -i 105 -a 42 + -t 206.95741551156001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 105 -a 42 - -t 206.95741551156001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 105 -a 42 h -t 206.95741551156001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 105 -a 42 + -t 206.95741551156001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 105 -a 42 - -t 206.95741551156001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 105 -a 42 h -t 206.95741551156001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 105 -a 42 r -t 206.95741551156001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 105 -a 42 r -t 206.96875951156002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 105 -a 42 + -t 206.96875951156002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 105 -a 42 - -t 206.96875951156002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 105 -a 42 h -t 206.96875951156002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 105 -a 42 + -t 206.96875951156002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 105 -a 42 - -t 206.96875951156002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 105 -a 42 h -t 206.96875951156002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 105 -a 42 r -t 206.96875951156002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 105 -a 42 r -t 206.98010351156003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 105 -a 42 + -t 206.98010351156003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 105 -a 42 - -t 206.98010351156003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 105 -a 42 h -t 206.98010351156003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 105 -a 42 r -t 206.98010351156003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 105 -a 42 r -t 206.99144751156004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 105 -a 42 + -t 214.51556201653 -s 24 -d 21 -p SRM -e 168 -c 42 -i 106 -a 42 - -t 214.51556201653 -s 24 -d 21 -p SRM -e 168 -c 42 -i 106 -a 42 h -t 214.51556201653 -s 24 -d 21 -p SRM -e 168 -c 42 -i 106 -a 42 r -t 214.52690601653001 -s 24 -d 21 -p SRM -e 168 -c 42 -i 106 -a 42 + -t 214.52690601653001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 106 -a 42 - -t 214.52690601653001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 106 -a 42 h -t 214.52690601653001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 106 -a 42 + -t 214.52690601653001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 106 -a 42 - -t 214.52690601653001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 106 -a 42 h -t 214.52690601653001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 106 -a 42 r -t 214.53825001653001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 106 -a 42 + -t 214.53825001653001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 106 -a 42 - -t 214.53825001653001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 106 -a 42 h -t 214.53825001653001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 106 -a 42 r -t 214.53825001653001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 106 -a 42 + -t 214.53825001653001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 106 -a 42 - -t 214.53825001653001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 106 -a 42 h -t 214.53825001653001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 106 -a 42 + -t 214.53825001653001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 106 -a 42 - -t 214.53825001653001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 106 -a 42 h -t 214.53825001653001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 106 -a 42 r -t 214.54959401653002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 106 -a 42 r -t 214.54959401653002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 106 -a 42 r -t 214.54959401653002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 106 -a 42 + -t 214.54959401653002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 106 -a 42 - -t 214.54959401653002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 106 -a 42 h -t 214.54959401653002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 106 -a 42 + -t 214.54959401653002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 106 -a 42 - -t 214.54959401653002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 106 -a 42 h -t 214.54959401653002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 106 -a 42 r -t 214.56093801653003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 106 -a 42 r -t 214.56093801653003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 106 -a 42 + -t 216.65868063743 -s 16 -d 13 -p SRM -e 168 -c 42 -i 109 -a 42 - -t 216.65868063743 -s 16 -d 13 -p SRM -e 168 -c 42 -i 109 -a 42 h -t 216.65868063743 -s 16 -d 13 -p SRM -e 168 -c 42 -i 109 -a 42 + -t 216.65868063743 -s 16 -d 17 -p SRM -e 168 -c 42 -i 109 -a 42 - -t 216.65868063743 -s 16 -d 17 -p SRM -e 168 -c 42 -i 109 -a 42 h -t 216.65868063743 -s 16 -d 17 -p SRM -e 168 -c 42 -i 109 -a 42 + -t 216.65868063743 -s 16 -d 18 -p SRM -e 168 -c 42 -i 109 -a 42 - -t 216.65868063743 -s 16 -d 18 -p SRM -e 168 -c 42 -i 109 -a 42 h -t 216.65868063743 -s 16 -d 18 -p SRM -e 168 -c 42 -i 109 -a 42 r -t 216.67002463743 -s 16 -d 13 -p SRM -e 168 -c 42 -i 109 -a 42 + -t 216.67002463743 -s 13 -d 11 -p SRM -e 168 -c 42 -i 109 -a 42 - -t 216.67002463743 -s 13 -d 11 -p SRM -e 168 -c 42 -i 109 -a 42 h -t 216.67002463743 -s 13 -d 11 -p SRM -e 168 -c 42 -i 109 -a 42 + -t 216.67002463743 -s 13 -d 15 -p SRM -e 168 -c 42 -i 109 -a 42 - -t 216.67002463743 -s 13 -d 15 -p SRM -e 168 -c 42 -i 109 -a 42 h -t 216.67002463743 -s 13 -d 15 -p SRM -e 168 -c 42 -i 109 -a 42 r -t 216.67002463743 -s 16 -d 17 -p SRM -e 168 -c 42 -i 109 -a 42 r -t 216.67002463743 -s 16 -d 18 -p SRM -e 168 -c 42 -i 109 -a 42 r -t 216.68136863743001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 109 -a 42 + -t 216.68136863743001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 109 -a 42 - -t 216.68136863743001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 109 -a 42 h -t 216.68136863743001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 109 -a 42 + -t 216.68136863743001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 109 -a 42 - -t 216.68136863743001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 109 -a 42 h -t 216.68136863743001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 109 -a 42 r -t 216.68136863743001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 109 -a 42 r -t 216.69271263743002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 109 -a 42 + -t 216.69271263743002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 109 -a 42 - -t 216.69271263743002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 109 -a 42 h -t 216.69271263743002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 109 -a 42 r -t 216.69271263743002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 109 -a 42 r -t 216.70405663743003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 109 -a 42 + -t 217.44856676782999 -s 25 -d 23 -p SRM -e 168 -c 42 -i 107 -a 42 - -t 217.44856676782999 -s 25 -d 23 -p SRM -e 168 -c 42 -i 107 -a 42 h -t 217.44856676782999 -s 25 -d 23 -p SRM -e 168 -c 42 -i 107 -a 42 r -t 217.45991076783 -s 25 -d 23 -p SRM -e 168 -c 42 -i 107 -a 42 + -t 217.45991076783 -s 23 -d 21 -p SRM -e 168 -c 42 -i 107 -a 42 - -t 217.45991076783 -s 23 -d 21 -p SRM -e 168 -c 42 -i 107 -a 42 h -t 217.45991076783 -s 23 -d 21 -p SRM -e 168 -c 42 -i 107 -a 42 + -t 217.45991076783 -s 23 -d 26 -p SRM -e 168 -c 42 -i 107 -a 42 - -t 217.45991076783 -s 23 -d 26 -p SRM -e 168 -c 42 -i 107 -a 42 h -t 217.45991076783 -s 23 -d 26 -p SRM -e 168 -c 42 -i 107 -a 42 r -t 217.47125476783 -s 23 -d 21 -p SRM -e 168 -c 42 -i 107 -a 42 + -t 217.47125476783 -s 21 -d 20 -p SRM -e 168 -c 42 -i 107 -a 42 - -t 217.47125476783 -s 21 -d 20 -p SRM -e 168 -c 42 -i 107 -a 42 h -t 217.47125476783 -s 21 -d 20 -p SRM -e 168 -c 42 -i 107 -a 42 + -t 217.47125476783 -s 21 -d 24 -p SRM -e 168 -c 42 -i 107 -a 42 - -t 217.47125476783 -s 21 -d 24 -p SRM -e 168 -c 42 -i 107 -a 42 h -t 217.47125476783 -s 21 -d 24 -p SRM -e 168 -c 42 -i 107 -a 42 r -t 217.47125476783 -s 23 -d 26 -p SRM -e 168 -c 42 -i 107 -a 42 + -t 217.47125476783 -s 26 -d 27 -p SRM -e 168 -c 42 -i 107 -a 42 - -t 217.47125476783 -s 26 -d 27 -p SRM -e 168 -c 42 -i 107 -a 42 h -t 217.47125476783 -s 26 -d 27 -p SRM -e 168 -c 42 -i 107 -a 42 + -t 217.47125476783 -s 26 -d 28 -p SRM -e 168 -c 42 -i 107 -a 42 - -t 217.47125476783 -s 26 -d 28 -p SRM -e 168 -c 42 -i 107 -a 42 h -t 217.47125476783 -s 26 -d 28 -p SRM -e 168 -c 42 -i 107 -a 42 r -t 217.48259876783001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 107 -a 42 + -t 217.48259876783001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 107 -a 42 - -t 217.48259876783001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 107 -a 42 h -t 217.48259876783001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 107 -a 42 r -t 217.48259876783001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 107 -a 42 r -t 217.48259876783001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 107 -a 42 r -t 217.48259876783001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 107 -a 42 r -t 217.49394276783002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 107 -a 42 + -t 217.68855022067692 -s 13 -d 11 -p cbr -e 1280 -c 3 -i 110 -a 3 + -t 217.68855022067692 -s 23 -d 21 -p cbr -e 1280 -c 3 -i 108 -a 3 - -t 217.68855022067692 -s 13 -d 11 -p cbr -e 1280 -c 3 -i 110 -a 3 - -t 217.68855022067692 -s 23 -d 21 -p cbr -e 1280 -c 3 -i 108 -a 3 h -t 217.68855022067692 -s 13 -d 11 -p cbr -e 1280 -c 3 -i 110 -a 3 + -t 217.68855022067692 -s 13 -d 15 -p cbr -e 1280 -c 3 -i 110 -a 3 - -t 217.68855022067692 -s 13 -d 15 -p cbr -e 1280 -c 3 -i 110 -a 3 h -t 217.68855022067692 -s 13 -d 15 -p cbr -e 1280 -c 3 -i 110 -a 3 + -t 217.68855022067692 -s 13 -d 16 -p cbr -e 1280 -c 3 -i 110 -a 3 - -t 217.68855022067692 -s 13 -d 16 -p cbr -e 1280 -c 3 -i 110 -a 3 h -t 217.68855022067692 -s 13 -d 16 -p cbr -e 1280 -c 3 -i 110 -a 3 h -t 217.68855022067692 -s 23 -d 21 -p cbr -e 1280 -c 3 -i 108 -a 3 + -t 217.68855022067692 -s 23 -d 25 -p cbr -e 1280 -c 3 -i 108 -a 3 - -t 217.68855022067692 -s 23 -d 25 -p cbr -e 1280 -c 3 -i 108 -a 3 h -t 217.68855022067692 -s 23 -d 25 -p cbr -e 1280 -c 3 -i 108 -a 3 + -t 217.68855022067692 -s 23 -d 26 -p cbr -e 1280 -c 3 -i 108 -a 3 - -t 217.68855022067692 -s 23 -d 26 -p cbr -e 1280 -c 3 -i 108 -a 3 h -t 217.68855022067692 -s 23 -d 26 -p cbr -e 1280 -c 3 -i 108 -a 3 r -t 217.70879022067692 -s 13 -d 11 -p cbr -e 1280 -c 3 -i 110 -a 3 + -t 217.70879022067692 -s 11 -d 10 -p cbr -e 1280 -c 3 -i 110 -a 3 - -t 217.70879022067692 -s 11 -d 10 -p cbr -e 1280 -c 3 -i 110 -a 3 h -t 217.70879022067692 -s 11 -d 10 -p cbr -e 1280 -c 3 -i 110 -a 3 + -t 217.70879022067692 -s 11 -d 14 -p cbr -e 1280 -c 3 -i 110 -a 3 - -t 217.70879022067692 -s 11 -d 14 -p cbr -e 1280 -c 3 -i 110 -a 3 h -t 217.70879022067692 -s 11 -d 14 -p cbr -e 1280 -c 3 -i 110 -a 3 r -t 217.70879022067692 -s 13 -d 15 -p cbr -e 1280 -c 3 -i 110 -a 3 r -t 217.70879022067692 -s 13 -d 16 -p cbr -e 1280 -c 3 -i 110 -a 3 + -t 217.70879022067692 -s 16 -d 17 -p cbr -e 1280 -c 3 -i 110 -a 3 - -t 217.70879022067692 -s 16 -d 17 -p cbr -e 1280 -c 3 -i 110 -a 3 h -t 217.70879022067692 -s 16 -d 17 -p cbr -e 1280 -c 3 -i 110 -a 3 + -t 217.70879022067692 -s 16 -d 18 -p cbr -e 1280 -c 3 -i 110 -a 3 - -t 217.70879022067692 -s 16 -d 18 -p cbr -e 1280 -c 3 -i 110 -a 3 h -t 217.70879022067692 -s 16 -d 18 -p cbr -e 1280 -c 3 -i 110 -a 3 r -t 217.70879022067692 -s 23 -d 21 -p cbr -e 1280 -c 3 -i 108 -a 3 + -t 217.70879022067692 -s 21 -d 20 -p cbr -e 1280 -c 3 -i 108 -a 3 - -t 217.70879022067692 -s 21 -d 20 -p cbr -e 1280 -c 3 -i 108 -a 3 h -t 217.70879022067692 -s 21 -d 20 -p cbr -e 1280 -c 3 -i 108 -a 3 + -t 217.70879022067692 -s 21 -d 24 -p cbr -e 1280 -c 3 -i 108 -a 3 - -t 217.70879022067692 -s 21 -d 24 -p cbr -e 1280 -c 3 -i 108 -a 3 h -t 217.70879022067692 -s 21 -d 24 -p cbr -e 1280 -c 3 -i 108 -a 3 r -t 217.70879022067692 -s 23 -d 25 -p cbr -e 1280 -c 3 -i 108 -a 3 r -t 217.70879022067692 -s 23 -d 26 -p cbr -e 1280 -c 3 -i 108 -a 3 + -t 217.70879022067692 -s 26 -d 27 -p cbr -e 1280 -c 3 -i 108 -a 3 - -t 217.70879022067692 -s 26 -d 27 -p cbr -e 1280 -c 3 -i 108 -a 3 h -t 217.70879022067692 -s 26 -d 27 -p cbr -e 1280 -c 3 -i 108 -a 3 + -t 217.70879022067692 -s 26 -d 28 -p cbr -e 1280 -c 3 -i 108 -a 3 - -t 217.70879022067692 -s 26 -d 28 -p cbr -e 1280 -c 3 -i 108 -a 3 h -t 217.70879022067692 -s 26 -d 28 -p cbr -e 1280 -c 3 -i 108 -a 3 r -t 217.72903022067692 -s 11 -d 10 -p cbr -e 1280 -c 3 -i 110 -a 3 + -t 217.72903022067692 -s 10 -d 12 -p cbr -e 1280 -c 3 -i 110 -a 3 - -t 217.72903022067692 -s 10 -d 12 -p cbr -e 1280 -c 3 -i 110 -a 3 h -t 217.72903022067692 -s 10 -d 12 -p cbr -e 1280 -c 3 -i 110 -a 3 r -t 217.72903022067692 -s 11 -d 14 -p cbr -e 1280 -c 3 -i 110 -a 3 r -t 217.72903022067692 -s 16 -d 17 -p cbr -e 1280 -c 3 -i 110 -a 3 r -t 217.72903022067692 -s 16 -d 18 -p cbr -e 1280 -c 3 -i 110 -a 3 r -t 217.72903022067692 -s 21 -d 20 -p cbr -e 1280 -c 3 -i 108 -a 3 + -t 217.72903022067692 -s 20 -d 22 -p cbr -e 1280 -c 3 -i 108 -a 3 - -t 217.72903022067692 -s 20 -d 22 -p cbr -e 1280 -c 3 -i 108 -a 3 h -t 217.72903022067692 -s 20 -d 22 -p cbr -e 1280 -c 3 -i 108 -a 3 r -t 217.72903022067692 -s 21 -d 24 -p cbr -e 1280 -c 3 -i 108 -a 3 r -t 217.72903022067692 -s 26 -d 27 -p cbr -e 1280 -c 3 -i 108 -a 3 r -t 217.72903022067692 -s 26 -d 28 -p cbr -e 1280 -c 3 -i 108 -a 3 r -t 217.74927022067692 -s 10 -d 12 -p cbr -e 1280 -c 3 -i 110 -a 3 r -t 217.74927022067692 -s 20 -d 22 -p cbr -e 1280 -c 3 -i 108 -a 3 + -t 218.61884164072001 -s 15 -d 13 -p SRM -e 168 -c 42 -i 111 -a 42 - -t 218.61884164072001 -s 15 -d 13 -p SRM -e 168 -c 42 -i 111 -a 42 h -t 218.61884164072001 -s 15 -d 13 -p SRM -e 168 -c 42 -i 111 -a 42 r -t 218.63018564072001 -s 15 -d 13 -p SRM -e 168 -c 42 -i 111 -a 42 + -t 218.63018564072001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 111 -a 42 - -t 218.63018564072001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 111 -a 42 h -t 218.63018564072001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 111 -a 42 + -t 218.63018564072001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 111 -a 42 - -t 218.63018564072001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 111 -a 42 h -t 218.63018564072001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 111 -a 42 r -t 218.64152964072002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 111 -a 42 + -t 218.64152964072002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 111 -a 42 - -t 218.64152964072002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 111 -a 42 h -t 218.64152964072002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 111 -a 42 + -t 218.64152964072002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 111 -a 42 - -t 218.64152964072002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 111 -a 42 h -t 218.64152964072002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 111 -a 42 r -t 218.64152964072002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 111 -a 42 + -t 218.64152964072002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 111 -a 42 - -t 218.64152964072002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 111 -a 42 h -t 218.64152964072002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 111 -a 42 + -t 218.64152964072002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 111 -a 42 - -t 218.64152964072002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 111 -a 42 h -t 218.64152964072002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 111 -a 42 r -t 218.65287364072003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 111 -a 42 + -t 218.65287364072003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 111 -a 42 - -t 218.65287364072003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 111 -a 42 h -t 218.65287364072003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 111 -a 42 r -t 218.65287364072003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 111 -a 42 r -t 218.65287364072003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 111 -a 42 r -t 218.65287364072003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 111 -a 42 r -t 218.66421764072004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 111 -a 42 + -t 218.86758950929001 -s 12 -d 10 -p SRM -e 168 -c 42 -i 112 -a 42 - -t 218.86758950929001 -s 12 -d 10 -p SRM -e 168 -c 42 -i 112 -a 42 h -t 218.86758950929001 -s 12 -d 10 -p SRM -e 168 -c 42 -i 112 -a 42 r -t 218.87893350929002 -s 12 -d 10 -p SRM -e 168 -c 42 -i 112 -a 42 + -t 218.87893350929002 -s 10 -d 11 -p SRM -e 168 -c 42 -i 112 -a 42 - -t 218.87893350929002 -s 10 -d 11 -p SRM -e 168 -c 42 -i 112 -a 42 h -t 218.87893350929002 -s 10 -d 11 -p SRM -e 168 -c 42 -i 112 -a 42 r -t 218.89027750929003 -s 10 -d 11 -p SRM -e 168 -c 42 -i 112 -a 42 + -t 218.89027750929003 -s 11 -d 13 -p SRM -e 168 -c 42 -i 112 -a 42 - -t 218.89027750929003 -s 11 -d 13 -p SRM -e 168 -c 42 -i 112 -a 42 h -t 218.89027750929003 -s 11 -d 13 -p SRM -e 168 -c 42 -i 112 -a 42 + -t 218.89027750929003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 112 -a 42 - -t 218.89027750929003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 112 -a 42 h -t 218.89027750929003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 112 -a 42 r -t 218.90162150929004 -s 11 -d 13 -p SRM -e 168 -c 42 -i 112 -a 42 + -t 218.90162150929004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 112 -a 42 - -t 218.90162150929004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 112 -a 42 h -t 218.90162150929004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 112 -a 42 + -t 218.90162150929004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 112 -a 42 - -t 218.90162150929004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 112 -a 42 h -t 218.90162150929004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 112 -a 42 r -t 218.90162150929004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 112 -a 42 r -t 218.91296550929005 -s 13 -d 15 -p SRM -e 168 -c 42 -i 112 -a 42 r -t 218.91296550929005 -s 13 -d 16 -p SRM -e 168 -c 42 -i 112 -a 42 + -t 218.91296550929005 -s 16 -d 17 -p SRM -e 168 -c 42 -i 112 -a 42 - -t 218.91296550929005 -s 16 -d 17 -p SRM -e 168 -c 42 -i 112 -a 42 h -t 218.91296550929005 -s 16 -d 17 -p SRM -e 168 -c 42 -i 112 -a 42 + -t 218.91296550929005 -s 16 -d 18 -p SRM -e 168 -c 42 -i 112 -a 42 - -t 218.91296550929005 -s 16 -d 18 -p SRM -e 168 -c 42 -i 112 -a 42 h -t 218.91296550929005 -s 16 -d 18 -p SRM -e 168 -c 42 -i 112 -a 42 r -t 218.92430950929005 -s 16 -d 17 -p SRM -e 168 -c 42 -i 112 -a 42 r -t 218.92430950929005 -s 16 -d 18 -p SRM -e 168 -c 42 -i 112 -a 42 + -t 218.99581146076 -s 26 -d 23 -p SRM -e 168 -c 42 -i 109 -a 42 - -t 218.99581146076 -s 26 -d 23 -p SRM -e 168 -c 42 -i 109 -a 42 h -t 218.99581146076 -s 26 -d 23 -p SRM -e 168 -c 42 -i 109 -a 42 + -t 218.99581146076 -s 26 -d 27 -p SRM -e 168 -c 42 -i 109 -a 42 - -t 218.99581146076 -s 26 -d 27 -p SRM -e 168 -c 42 -i 109 -a 42 h -t 218.99581146076 -s 26 -d 27 -p SRM -e 168 -c 42 -i 109 -a 42 + -t 218.99581146076 -s 26 -d 28 -p SRM -e 168 -c 42 -i 109 -a 42 - -t 218.99581146076 -s 26 -d 28 -p SRM -e 168 -c 42 -i 109 -a 42 h -t 218.99581146076 -s 26 -d 28 -p SRM -e 168 -c 42 -i 109 -a 42 r -t 219.00715546076 -s 26 -d 23 -p SRM -e 168 -c 42 -i 109 -a 42 + -t 219.00715546076 -s 23 -d 21 -p SRM -e 168 -c 42 -i 109 -a 42 - -t 219.00715546076 -s 23 -d 21 -p SRM -e 168 -c 42 -i 109 -a 42 h -t 219.00715546076 -s 23 -d 21 -p SRM -e 168 -c 42 -i 109 -a 42 + -t 219.00715546076 -s 23 -d 25 -p SRM -e 168 -c 42 -i 109 -a 42 - -t 219.00715546076 -s 23 -d 25 -p SRM -e 168 -c 42 -i 109 -a 42 h -t 219.00715546076 -s 23 -d 25 -p SRM -e 168 -c 42 -i 109 -a 42 r -t 219.00715546076 -s 26 -d 27 -p SRM -e 168 -c 42 -i 109 -a 42 r -t 219.00715546076 -s 26 -d 28 -p SRM -e 168 -c 42 -i 109 -a 42 r -t 219.01849946076001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 109 -a 42 + -t 219.01849946076001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 109 -a 42 - -t 219.01849946076001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 109 -a 42 h -t 219.01849946076001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 109 -a 42 + -t 219.01849946076001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 109 -a 42 - -t 219.01849946076001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 109 -a 42 h -t 219.01849946076001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 109 -a 42 r -t 219.01849946076001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 109 -a 42 r -t 219.02984346076002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 109 -a 42 + -t 219.02984346076002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 109 -a 42 - -t 219.02984346076002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 109 -a 42 h -t 219.02984346076002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 109 -a 42 r -t 219.02984346076002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 109 -a 42 r -t 219.04118746076003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 109 -a 42 + -t 219.63020650908999 -s 20 -d 21 -p SRM -e 168 -c 42 -i 110 -a 42 - -t 219.63020650908999 -s 20 -d 21 -p SRM -e 168 -c 42 -i 110 -a 42 h -t 219.63020650908999 -s 20 -d 21 -p SRM -e 168 -c 42 -i 110 -a 42 + -t 219.63020650908999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 110 -a 42 - -t 219.63020650908999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 110 -a 42 h -t 219.63020650908999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 110 -a 42 r -t 219.64155050909 -s 20 -d 21 -p SRM -e 168 -c 42 -i 110 -a 42 + -t 219.64155050909 -s 21 -d 23 -p SRM -e 168 -c 42 -i 110 -a 42 - -t 219.64155050909 -s 21 -d 23 -p SRM -e 168 -c 42 -i 110 -a 42 h -t 219.64155050909 -s 21 -d 23 -p SRM -e 168 -c 42 -i 110 -a 42 + -t 219.64155050909 -s 21 -d 24 -p SRM -e 168 -c 42 -i 110 -a 42 - -t 219.64155050909 -s 21 -d 24 -p SRM -e 168 -c 42 -i 110 -a 42 h -t 219.64155050909 -s 21 -d 24 -p SRM -e 168 -c 42 -i 110 -a 42 r -t 219.64155050909 -s 20 -d 22 -p SRM -e 168 -c 42 -i 110 -a 42 r -t 219.65289450909 -s 21 -d 23 -p SRM -e 168 -c 42 -i 110 -a 42 + -t 219.65289450909 -s 23 -d 25 -p SRM -e 168 -c 42 -i 110 -a 42 - -t 219.65289450909 -s 23 -d 25 -p SRM -e 168 -c 42 -i 110 -a 42 h -t 219.65289450909 -s 23 -d 25 -p SRM -e 168 -c 42 -i 110 -a 42 + -t 219.65289450909 -s 23 -d 26 -p SRM -e 168 -c 42 -i 110 -a 42 - -t 219.65289450909 -s 23 -d 26 -p SRM -e 168 -c 42 -i 110 -a 42 h -t 219.65289450909 -s 23 -d 26 -p SRM -e 168 -c 42 -i 110 -a 42 r -t 219.65289450909 -s 21 -d 24 -p SRM -e 168 -c 42 -i 110 -a 42 r -t 219.66423850909001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 110 -a 42 r -t 219.66423850909001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 110 -a 42 + -t 219.66423850909001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 110 -a 42 - -t 219.66423850909001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 110 -a 42 h -t 219.66423850909001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 110 -a 42 + -t 219.66423850909001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 110 -a 42 - -t 219.66423850909001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 110 -a 42 h -t 219.66423850909001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 110 -a 42 r -t 219.67558250909002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 110 -a 42 r -t 219.67558250909002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 110 -a 42 + -t 220.27687407741001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 113 -a 42 - -t 220.27687407741001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 113 -a 42 h -t 220.27687407741001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 113 -a 42 + -t 220.27687407741001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 113 -a 42 - -t 220.27687407741001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 113 -a 42 h -t 220.27687407741001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 113 -a 42 + -t 220.27687407741001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 113 -a 42 - -t 220.27687407741001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 113 -a 42 h -t 220.27687407741001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 113 -a 42 r -t 220.28821807741002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 113 -a 42 + -t 220.28821807741002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 113 -a 42 - -t 220.28821807741002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 113 -a 42 h -t 220.28821807741002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 113 -a 42 + -t 220.28821807741002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 113 -a 42 - -t 220.28821807741002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 113 -a 42 h -t 220.28821807741002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 113 -a 42 r -t 220.28821807741002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 113 -a 42 r -t 220.28821807741002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 113 -a 42 + -t 220.28821807741002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 113 -a 42 - -t 220.28821807741002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 113 -a 42 h -t 220.28821807741002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 113 -a 42 + -t 220.28821807741002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 113 -a 42 - -t 220.28821807741002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 113 -a 42 h -t 220.28821807741002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 113 -a 42 r -t 220.29956207741003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 113 -a 42 + -t 220.29956207741003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 113 -a 42 - -t 220.29956207741003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 113 -a 42 h -t 220.29956207741003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 113 -a 42 r -t 220.29956207741003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 113 -a 42 r -t 220.29956207741003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 113 -a 42 r -t 220.29956207741003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 113 -a 42 r -t 220.31090607741004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 113 -a 42 + -t 220.37082203378 -s 17 -d 16 -p SRM -e 168 -c 42 -i 114 -a 42 - -t 220.37082203378 -s 17 -d 16 -p SRM -e 168 -c 42 -i 114 -a 42 h -t 220.37082203378 -s 17 -d 16 -p SRM -e 168 -c 42 -i 114 -a 42 r -t 220.38216603378001 -s 17 -d 16 -p SRM -e 168 -c 42 -i 114 -a 42 + -t 220.38216603378001 -s 16 -d 13 -p SRM -e 168 -c 42 -i 114 -a 42 - -t 220.38216603378001 -s 16 -d 13 -p SRM -e 168 -c 42 -i 114 -a 42 h -t 220.38216603378001 -s 16 -d 13 -p SRM -e 168 -c 42 -i 114 -a 42 + -t 220.38216603378001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 114 -a 42 - -t 220.38216603378001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 114 -a 42 h -t 220.38216603378001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 114 -a 42 r -t 220.39351003378002 -s 16 -d 13 -p SRM -e 168 -c 42 -i 114 -a 42 + -t 220.39351003378002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 114 -a 42 - -t 220.39351003378002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 114 -a 42 h -t 220.39351003378002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 114 -a 42 + -t 220.39351003378002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 114 -a 42 - -t 220.39351003378002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 114 -a 42 h -t 220.39351003378002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 114 -a 42 r -t 220.39351003378002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 114 -a 42 r -t 220.40485403378003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 114 -a 42 + -t 220.40485403378003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 114 -a 42 - -t 220.40485403378003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 114 -a 42 h -t 220.40485403378003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 114 -a 42 + -t 220.40485403378003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 114 -a 42 - -t 220.40485403378003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 114 -a 42 h -t 220.40485403378003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 114 -a 42 r -t 220.40485403378003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 114 -a 42 r -t 220.41619803378003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 114 -a 42 + -t 220.41619803378003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 114 -a 42 - -t 220.41619803378003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 114 -a 42 h -t 220.41619803378003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 114 -a 42 r -t 220.41619803378003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 114 -a 42 r -t 220.42754203378004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 114 -a 42 + -t 220.51789068152999 -s 27 -d 26 -p SRM -e 168 -c 42 -i 111 -a 42 - -t 220.51789068152999 -s 27 -d 26 -p SRM -e 168 -c 42 -i 111 -a 42 h -t 220.51789068152999 -s 27 -d 26 -p SRM -e 168 -c 42 -i 111 -a 42 r -t 220.52923468153 -s 27 -d 26 -p SRM -e 168 -c 42 -i 111 -a 42 + -t 220.52923468153 -s 26 -d 23 -p SRM -e 168 -c 42 -i 111 -a 42 - -t 220.52923468153 -s 26 -d 23 -p SRM -e 168 -c 42 -i 111 -a 42 h -t 220.52923468153 -s 26 -d 23 -p SRM -e 168 -c 42 -i 111 -a 42 + -t 220.52923468153 -s 26 -d 28 -p SRM -e 168 -c 42 -i 111 -a 42 - -t 220.52923468153 -s 26 -d 28 -p SRM -e 168 -c 42 -i 111 -a 42 h -t 220.52923468153 -s 26 -d 28 -p SRM -e 168 -c 42 -i 111 -a 42 r -t 220.54057868153001 -s 26 -d 23 -p SRM -e 168 -c 42 -i 111 -a 42 + -t 220.54057868153001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 111 -a 42 - -t 220.54057868153001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 111 -a 42 h -t 220.54057868153001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 111 -a 42 + -t 220.54057868153001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 111 -a 42 - -t 220.54057868153001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 111 -a 42 h -t 220.54057868153001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 111 -a 42 r -t 220.54057868153001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 111 -a 42 r -t 220.55192268153002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 111 -a 42 + -t 220.55192268153002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 111 -a 42 - -t 220.55192268153002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 111 -a 42 h -t 220.55192268153002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 111 -a 42 + -t 220.55192268153002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 111 -a 42 - -t 220.55192268153002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 111 -a 42 h -t 220.55192268153002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 111 -a 42 r -t 220.55192268153002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 111 -a 42 r -t 220.56326668153002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 111 -a 42 + -t 220.56326668153002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 111 -a 42 - -t 220.56326668153002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 111 -a 42 h -t 220.56326668153002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 111 -a 42 r -t 220.56326668153002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 111 -a 42 r -t 220.57461068153003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 111 -a 42 + -t 220.92956548484 -s 10 -d 11 -p SRM -e 168 -c 42 -i 115 -a 42 - -t 220.92956548484 -s 10 -d 11 -p SRM -e 168 -c 42 -i 115 -a 42 h -t 220.92956548484 -s 10 -d 11 -p SRM -e 168 -c 42 -i 115 -a 42 + -t 220.92956548484 -s 10 -d 12 -p SRM -e 168 -c 42 -i 115 -a 42 - -t 220.92956548484 -s 10 -d 12 -p SRM -e 168 -c 42 -i 115 -a 42 h -t 220.92956548484 -s 10 -d 12 -p SRM -e 168 -c 42 -i 115 -a 42 r -t 220.94090948484001 -s 10 -d 11 -p SRM -e 168 -c 42 -i 115 -a 42 + -t 220.94090948484001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 115 -a 42 - -t 220.94090948484001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 115 -a 42 h -t 220.94090948484001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 115 -a 42 + -t 220.94090948484001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 115 -a 42 - -t 220.94090948484001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 115 -a 42 h -t 220.94090948484001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 115 -a 42 r -t 220.94090948484001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 115 -a 42 r -t 220.95225348484001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 115 -a 42 + -t 220.95225348484001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 115 -a 42 - -t 220.95225348484001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 115 -a 42 h -t 220.95225348484001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 115 -a 42 + -t 220.95225348484001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 115 -a 42 - -t 220.95225348484001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 115 -a 42 h -t 220.95225348484001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 115 -a 42 r -t 220.95225348484001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 115 -a 42 r -t 220.96359748484002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 115 -a 42 r -t 220.96359748484002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 115 -a 42 + -t 220.96359748484002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 115 -a 42 - -t 220.96359748484002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 115 -a 42 h -t 220.96359748484002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 115 -a 42 + -t 220.96359748484002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 115 -a 42 - -t 220.96359748484002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 115 -a 42 h -t 220.96359748484002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 115 -a 42 r -t 220.97494148484003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 115 -a 42 r -t 220.97494148484003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 115 -a 42 + -t 221.36322826467 -s 23 -d 21 -p SRM -e 168 -c 42 -i 112 -a 42 - -t 221.36322826467 -s 23 -d 21 -p SRM -e 168 -c 42 -i 112 -a 42 h -t 221.36322826467 -s 23 -d 21 -p SRM -e 168 -c 42 -i 112 -a 42 + -t 221.36322826467 -s 23 -d 25 -p SRM -e 168 -c 42 -i 112 -a 42 - -t 221.36322826467 -s 23 -d 25 -p SRM -e 168 -c 42 -i 112 -a 42 h -t 221.36322826467 -s 23 -d 25 -p SRM -e 168 -c 42 -i 112 -a 42 + -t 221.36322826467 -s 23 -d 26 -p SRM -e 168 -c 42 -i 112 -a 42 - -t 221.36322826467 -s 23 -d 26 -p SRM -e 168 -c 42 -i 112 -a 42 h -t 221.36322826467 -s 23 -d 26 -p SRM -e 168 -c 42 -i 112 -a 42 r -t 221.37457226467001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 112 -a 42 + -t 221.37457226467001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 112 -a 42 - -t 221.37457226467001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 112 -a 42 h -t 221.37457226467001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 112 -a 42 + -t 221.37457226467001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 112 -a 42 - -t 221.37457226467001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 112 -a 42 h -t 221.37457226467001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 112 -a 42 r -t 221.37457226467001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 112 -a 42 r -t 221.37457226467001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 112 -a 42 + -t 221.37457226467001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 112 -a 42 - -t 221.37457226467001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 112 -a 42 h -t 221.37457226467001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 112 -a 42 + -t 221.37457226467001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 112 -a 42 - -t 221.37457226467001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 112 -a 42 h -t 221.37457226467001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 112 -a 42 r -t 221.38591626467002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 112 -a 42 + -t 221.38591626467002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 112 -a 42 - -t 221.38591626467002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 112 -a 42 h -t 221.38591626467002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 112 -a 42 r -t 221.38591626467002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 112 -a 42 r -t 221.38591626467002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 112 -a 42 r -t 221.38591626467002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 112 -a 42 r -t 221.39726026467002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 112 -a 42 + -t 222.50526932813 -s 14 -d 11 -p SRM -e 168 -c 42 -i 116 -a 42 - -t 222.50526932813 -s 14 -d 11 -p SRM -e 168 -c 42 -i 116 -a 42 h -t 222.50526932813 -s 14 -d 11 -p SRM -e 168 -c 42 -i 116 -a 42 r -t 222.51661332813001 -s 14 -d 11 -p SRM -e 168 -c 42 -i 116 -a 42 + -t 222.51661332813001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 116 -a 42 - -t 222.51661332813001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 116 -a 42 h -t 222.51661332813001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 116 -a 42 + -t 222.51661332813001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 116 -a 42 - -t 222.51661332813001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 116 -a 42 h -t 222.51661332813001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 116 -a 42 r -t 222.52795732813001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 116 -a 42 + -t 222.52795732813001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 116 -a 42 - -t 222.52795732813001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 116 -a 42 h -t 222.52795732813001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 116 -a 42 r -t 222.52795732813001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 116 -a 42 + -t 222.52795732813001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 116 -a 42 - -t 222.52795732813001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 116 -a 42 h -t 222.52795732813001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 116 -a 42 + -t 222.52795732813001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 116 -a 42 - -t 222.52795732813001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 116 -a 42 h -t 222.52795732813001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 116 -a 42 r -t 222.53930132813002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 116 -a 42 r -t 222.53930132813002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 116 -a 42 r -t 222.53930132813002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 116 -a 42 + -t 222.53930132813002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 116 -a 42 - -t 222.53930132813002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 116 -a 42 h -t 222.53930132813002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 116 -a 42 + -t 222.53930132813002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 116 -a 42 - -t 222.53930132813002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 116 -a 42 h -t 222.53930132813002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 116 -a 42 r -t 222.55064532813003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 116 -a 42 r -t 222.55064532813003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 116 -a 42 + -t 223.19450441222 -s 11 -d 10 -p SRM -e 168 -c 42 -i 117 -a 42 - -t 223.19450441222 -s 11 -d 10 -p SRM -e 168 -c 42 -i 117 -a 42 h -t 223.19450441222 -s 11 -d 10 -p SRM -e 168 -c 42 -i 117 -a 42 + -t 223.19450441222 -s 11 -d 13 -p SRM -e 168 -c 42 -i 117 -a 42 - -t 223.19450441222 -s 11 -d 13 -p SRM -e 168 -c 42 -i 117 -a 42 h -t 223.19450441222 -s 11 -d 13 -p SRM -e 168 -c 42 -i 117 -a 42 + -t 223.19450441222 -s 11 -d 14 -p SRM -e 168 -c 42 -i 117 -a 42 - -t 223.19450441222 -s 11 -d 14 -p SRM -e 168 -c 42 -i 117 -a 42 h -t 223.19450441222 -s 11 -d 14 -p SRM -e 168 -c 42 -i 117 -a 42 r -t 223.20584841222001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 117 -a 42 + -t 223.20584841222001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 117 -a 42 - -t 223.20584841222001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 117 -a 42 h -t 223.20584841222001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 117 -a 42 r -t 223.20584841222001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 117 -a 42 + -t 223.20584841222001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 117 -a 42 - -t 223.20584841222001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 117 -a 42 h -t 223.20584841222001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 117 -a 42 + -t 223.20584841222001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 117 -a 42 - -t 223.20584841222001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 117 -a 42 h -t 223.20584841222001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 117 -a 42 r -t 223.20584841222001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 117 -a 42 r -t 223.21719241222002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 117 -a 42 r -t 223.21719241222002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 117 -a 42 r -t 223.21719241222002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 117 -a 42 + -t 223.21719241222002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 117 -a 42 - -t 223.21719241222002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 117 -a 42 h -t 223.21719241222002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 117 -a 42 + -t 223.21719241222002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 117 -a 42 - -t 223.21719241222002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 117 -a 42 h -t 223.21719241222002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 117 -a 42 r -t 223.22853641222002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 117 -a 42 r -t 223.22853641222002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 117 -a 42 + -t 223.51022344873999 -s 22 -d 20 -p SRM -e 168 -c 42 -i 113 -a 42 - -t 223.51022344873999 -s 22 -d 20 -p SRM -e 168 -c 42 -i 113 -a 42 h -t 223.51022344873999 -s 22 -d 20 -p SRM -e 168 -c 42 -i 113 -a 42 r -t 223.52156744874 -s 22 -d 20 -p SRM -e 168 -c 42 -i 113 -a 42 + -t 223.52156744874 -s 20 -d 21 -p SRM -e 168 -c 42 -i 113 -a 42 - -t 223.52156744874 -s 20 -d 21 -p SRM -e 168 -c 42 -i 113 -a 42 h -t 223.52156744874 -s 20 -d 21 -p SRM -e 168 -c 42 -i 113 -a 42 r -t 223.53291144874001 -s 20 -d 21 -p SRM -e 168 -c 42 -i 113 -a 42 + -t 223.53291144874001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 113 -a 42 - -t 223.53291144874001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 113 -a 42 h -t 223.53291144874001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 113 -a 42 + -t 223.53291144874001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 113 -a 42 - -t 223.53291144874001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 113 -a 42 h -t 223.53291144874001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 113 -a 42 r -t 223.54425544874002 -s 21 -d 23 -p SRM -e 168 -c 42 -i 113 -a 42 + -t 223.54425544874002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 113 -a 42 - -t 223.54425544874002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 113 -a 42 h -t 223.54425544874002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 113 -a 42 + -t 223.54425544874002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 113 -a 42 - -t 223.54425544874002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 113 -a 42 h -t 223.54425544874002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 113 -a 42 r -t 223.54425544874002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 113 -a 42 r -t 223.55559944874003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 113 -a 42 r -t 223.55559944874003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 113 -a 42 + -t 223.55559944874003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 113 -a 42 - -t 223.55559944874003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 113 -a 42 h -t 223.55559944874003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 113 -a 42 + -t 223.55559944874003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 113 -a 42 - -t 223.55559944874003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 113 -a 42 h -t 223.55559944874003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 113 -a 42 r -t 223.56694344874003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 113 -a 42 r -t 223.56694344874003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 113 -a 42 + -t 224.98233846317001 -s 18 -d 16 -p SRM -e 168 -c 42 -i 118 -a 42 - -t 224.98233846317001 -s 18 -d 16 -p SRM -e 168 -c 42 -i 118 -a 42 h -t 224.98233846317001 -s 18 -d 16 -p SRM -e 168 -c 42 -i 118 -a 42 r -t 224.99368246317002 -s 18 -d 16 -p SRM -e 168 -c 42 -i 118 -a 42 + -t 224.99368246317002 -s 16 -d 13 -p SRM -e 168 -c 42 -i 118 -a 42 - -t 224.99368246317002 -s 16 -d 13 -p SRM -e 168 -c 42 -i 118 -a 42 h -t 224.99368246317002 -s 16 -d 13 -p SRM -e 168 -c 42 -i 118 -a 42 + -t 224.99368246317002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 118 -a 42 - -t 224.99368246317002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 118 -a 42 h -t 224.99368246317002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 118 -a 42 r -t 225.00502646317003 -s 16 -d 13 -p SRM -e 168 -c 42 -i 118 -a 42 + -t 225.00502646317003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 118 -a 42 - -t 225.00502646317003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 118 -a 42 h -t 225.00502646317003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 118 -a 42 + -t 225.00502646317003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 118 -a 42 - -t 225.00502646317003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 118 -a 42 h -t 225.00502646317003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 118 -a 42 r -t 225.00502646317003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 118 -a 42 r -t 225.01637046317003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 118 -a 42 + -t 225.01637046317003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 118 -a 42 - -t 225.01637046317003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 118 -a 42 h -t 225.01637046317003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 118 -a 42 + -t 225.01637046317003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 118 -a 42 - -t 225.01637046317003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 118 -a 42 h -t 225.01637046317003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 118 -a 42 r -t 225.01637046317003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 118 -a 42 r -t 225.02771446317004 -s 11 -d 10 -p SRM -e 168 -c 42 -i 118 -a 42 + -t 225.02771446317004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 118 -a 42 - -t 225.02771446317004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 118 -a 42 h -t 225.02771446317004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 118 -a 42 r -t 225.02771446317004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 118 -a 42 r -t 225.03905846317005 -s 10 -d 12 -p SRM -e 168 -c 42 -i 118 -a 42 + -t 225.40891718069 -s 21 -d 20 -p SRM -e 168 -c 42 -i 114 -a 42 - -t 225.40891718069 -s 21 -d 20 -p SRM -e 168 -c 42 -i 114 -a 42 h -t 225.40891718069 -s 21 -d 20 -p SRM -e 168 -c 42 -i 114 -a 42 + -t 225.40891718069 -s 21 -d 23 -p SRM -e 168 -c 42 -i 114 -a 42 - -t 225.40891718069 -s 21 -d 23 -p SRM -e 168 -c 42 -i 114 -a 42 h -t 225.40891718069 -s 21 -d 23 -p SRM -e 168 -c 42 -i 114 -a 42 + -t 225.40891718069 -s 21 -d 24 -p SRM -e 168 -c 42 -i 114 -a 42 - -t 225.40891718069 -s 21 -d 24 -p SRM -e 168 -c 42 -i 114 -a 42 h -t 225.40891718069 -s 21 -d 24 -p SRM -e 168 -c 42 -i 114 -a 42 r -t 225.42026118069001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 114 -a 42 + -t 225.42026118069001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 114 -a 42 - -t 225.42026118069001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 114 -a 42 h -t 225.42026118069001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 114 -a 42 r -t 225.42026118069001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 114 -a 42 + -t 225.42026118069001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 114 -a 42 - -t 225.42026118069001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 114 -a 42 h -t 225.42026118069001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 114 -a 42 + -t 225.42026118069001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 114 -a 42 - -t 225.42026118069001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 114 -a 42 h -t 225.42026118069001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 114 -a 42 r -t 225.42026118069001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 114 -a 42 r -t 225.43160518069001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 114 -a 42 r -t 225.43160518069001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 114 -a 42 r -t 225.43160518069001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 114 -a 42 + -t 225.43160518069001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 114 -a 42 - -t 225.43160518069001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 114 -a 42 h -t 225.43160518069001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 114 -a 42 + -t 225.43160518069001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 114 -a 42 - -t 225.43160518069001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 114 -a 42 h -t 225.43160518069001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 114 -a 42 r -t 225.44294918069002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 114 -a 42 r -t 225.44294918069002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 114 -a 42 + -t 225.45948163743 -s 28 -d 26 -p SRM -e 168 -c 42 -i 115 -a 42 - -t 225.45948163743 -s 28 -d 26 -p SRM -e 168 -c 42 -i 115 -a 42 h -t 225.45948163743 -s 28 -d 26 -p SRM -e 168 -c 42 -i 115 -a 42 r -t 225.47082563743001 -s 28 -d 26 -p SRM -e 168 -c 42 -i 115 -a 42 + -t 225.47082563743001 -s 26 -d 23 -p SRM -e 168 -c 42 -i 115 -a 42 - -t 225.47082563743001 -s 26 -d 23 -p SRM -e 168 -c 42 -i 115 -a 42 h -t 225.47082563743001 -s 26 -d 23 -p SRM -e 168 -c 42 -i 115 -a 42 + -t 225.47082563743001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 115 -a 42 - -t 225.47082563743001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 115 -a 42 h -t 225.47082563743001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 115 -a 42 r -t 225.48216963743002 -s 26 -d 23 -p SRM -e 168 -c 42 -i 115 -a 42 + -t 225.48216963743002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 115 -a 42 - -t 225.48216963743002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 115 -a 42 h -t 225.48216963743002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 115 -a 42 + -t 225.48216963743002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 115 -a 42 - -t 225.48216963743002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 115 -a 42 h -t 225.48216963743002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 115 -a 42 r -t 225.48216963743002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 115 -a 42 r -t 225.49351363743003 -s 23 -d 21 -p SRM -e 168 -c 42 -i 115 -a 42 + -t 225.49351363743003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 115 -a 42 - -t 225.49351363743003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 115 -a 42 h -t 225.49351363743003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 115 -a 42 + -t 225.49351363743003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 115 -a 42 - -t 225.49351363743003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 115 -a 42 h -t 225.49351363743003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 115 -a 42 r -t 225.49351363743003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 115 -a 42 r -t 225.50485763743004 -s 21 -d 20 -p SRM -e 168 -c 42 -i 115 -a 42 + -t 225.50485763743004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 115 -a 42 - -t 225.50485763743004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 115 -a 42 h -t 225.50485763743004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 115 -a 42 r -t 225.50485763743004 -s 21 -d 24 -p SRM -e 168 -c 42 -i 115 -a 42 r -t 225.51620163743004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 115 -a 42 + -t 229.54138119686596 -s 28 -d 26 -p cbr -e 1280 -c 8 -i 116 -a 8 - -t 229.54138119686596 -s 28 -d 26 -p cbr -e 1280 -c 8 -i 116 -a 8 h -t 229.54138119686596 -s 28 -d 26 -p cbr -e 1280 -c 8 -i 116 -a 8 r -t 229.56162119686596 -s 28 -d 26 -p cbr -e 1280 -c 8 -i 116 -a 8 + -t 229.56162119686596 -s 26 -d 23 -p cbr -e 1280 -c 8 -i 116 -a 8 - -t 229.56162119686596 -s 26 -d 23 -p cbr -e 1280 -c 8 -i 116 -a 8 h -t 229.56162119686596 -s 26 -d 23 -p cbr -e 1280 -c 8 -i 116 -a 8 + -t 229.56162119686596 -s 26 -d 27 -p cbr -e 1280 -c 8 -i 116 -a 8 - -t 229.56162119686596 -s 26 -d 27 -p cbr -e 1280 -c 8 -i 116 -a 8 h -t 229.56162119686596 -s 26 -d 27 -p cbr -e 1280 -c 8 -i 116 -a 8 r -t 229.58186119686596 -s 26 -d 23 -p cbr -e 1280 -c 8 -i 116 -a 8 + -t 229.58186119686596 -s 23 -d 21 -p cbr -e 1280 -c 8 -i 116 -a 8 - -t 229.58186119686596 -s 23 -d 21 -p cbr -e 1280 -c 8 -i 116 -a 8 h -t 229.58186119686596 -s 23 -d 21 -p cbr -e 1280 -c 8 -i 116 -a 8 + -t 229.58186119686596 -s 23 -d 25 -p cbr -e 1280 -c 8 -i 116 -a 8 - -t 229.58186119686596 -s 23 -d 25 -p cbr -e 1280 -c 8 -i 116 -a 8 h -t 229.58186119686596 -s 23 -d 25 -p cbr -e 1280 -c 8 -i 116 -a 8 r -t 229.58186119686596 -s 26 -d 27 -p cbr -e 1280 -c 8 -i 116 -a 8 r -t 229.60210119686596 -s 23 -d 21 -p cbr -e 1280 -c 8 -i 116 -a 8 + -t 229.60210119686596 -s 21 -d 20 -p cbr -e 1280 -c 8 -i 116 -a 8 - -t 229.60210119686596 -s 21 -d 20 -p cbr -e 1280 -c 8 -i 116 -a 8 h -t 229.60210119686596 -s 21 -d 20 -p cbr -e 1280 -c 8 -i 116 -a 8 + -t 229.60210119686596 -s 21 -d 24 -p cbr -e 1280 -c 8 -i 116 -a 8 - -t 229.60210119686596 -s 21 -d 24 -p cbr -e 1280 -c 8 -i 116 -a 8 h -t 229.60210119686596 -s 21 -d 24 -p cbr -e 1280 -c 8 -i 116 -a 8 r -t 229.60210119686596 -s 23 -d 25 -p cbr -e 1280 -c 8 -i 116 -a 8 r -t 229.62234119686596 -s 21 -d 20 -p cbr -e 1280 -c 8 -i 116 -a 8 + -t 229.62234119686596 -s 20 -d 22 -p cbr -e 1280 -c 8 -i 116 -a 8 - -t 229.62234119686596 -s 20 -d 22 -p cbr -e 1280 -c 8 -i 116 -a 8 h -t 229.62234119686596 -s 20 -d 22 -p cbr -e 1280 -c 8 -i 116 -a 8 r -t 229.62234119686596 -s 21 -d 24 -p cbr -e 1280 -c 8 -i 116 -a 8 r -t 229.64258119686596 -s 20 -d 22 -p cbr -e 1280 -c 8 -i 116 -a 8 + -t 235.30747484545 -s 16 -d 13 -p SRM -e 168 -c 42 -i 119 -a 42 - -t 235.30747484545 -s 16 -d 13 -p SRM -e 168 -c 42 -i 119 -a 42 h -t 235.30747484545 -s 16 -d 13 -p SRM -e 168 -c 42 -i 119 -a 42 + -t 235.30747484545 -s 16 -d 17 -p SRM -e 168 -c 42 -i 119 -a 42 - -t 235.30747484545 -s 16 -d 17 -p SRM -e 168 -c 42 -i 119 -a 42 h -t 235.30747484545 -s 16 -d 17 -p SRM -e 168 -c 42 -i 119 -a 42 + -t 235.30747484545 -s 16 -d 18 -p SRM -e 168 -c 42 -i 119 -a 42 - -t 235.30747484545 -s 16 -d 18 -p SRM -e 168 -c 42 -i 119 -a 42 h -t 235.30747484545 -s 16 -d 18 -p SRM -e 168 -c 42 -i 119 -a 42 r -t 235.31881884545001 -s 16 -d 13 -p SRM -e 168 -c 42 -i 119 -a 42 + -t 235.31881884545001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 119 -a 42 - -t 235.31881884545001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 119 -a 42 h -t 235.31881884545001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 119 -a 42 + -t 235.31881884545001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 119 -a 42 - -t 235.31881884545001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 119 -a 42 h -t 235.31881884545001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 119 -a 42 r -t 235.31881884545001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 119 -a 42 r -t 235.31881884545001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 119 -a 42 r -t 235.33016284545002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 119 -a 42 + -t 235.33016284545002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 119 -a 42 - -t 235.33016284545002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 119 -a 42 h -t 235.33016284545002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 119 -a 42 + -t 235.33016284545002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 119 -a 42 - -t 235.33016284545002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 119 -a 42 h -t 235.33016284545002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 119 -a 42 r -t 235.33016284545002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 119 -a 42 r -t 235.34150684545003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 119 -a 42 + -t 235.34150684545003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 119 -a 42 - -t 235.34150684545003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 119 -a 42 h -t 235.34150684545003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 119 -a 42 r -t 235.34150684545003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 119 -a 42 r -t 235.35285084545004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 119 -a 42 + -t 235.81726128763 -s 25 -d 23 -p SRM -e 168 -c 42 -i 117 -a 42 - -t 235.81726128763 -s 25 -d 23 -p SRM -e 168 -c 42 -i 117 -a 42 h -t 235.81726128763 -s 25 -d 23 -p SRM -e 168 -c 42 -i 117 -a 42 r -t 235.82860528763001 -s 25 -d 23 -p SRM -e 168 -c 42 -i 117 -a 42 + -t 235.82860528763001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 117 -a 42 - -t 235.82860528763001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 117 -a 42 h -t 235.82860528763001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 117 -a 42 + -t 235.82860528763001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 117 -a 42 - -t 235.82860528763001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 117 -a 42 h -t 235.82860528763001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 117 -a 42 r -t 235.83994928763002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 117 -a 42 + -t 235.83994928763002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 117 -a 42 - -t 235.83994928763002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 117 -a 42 h -t 235.83994928763002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 117 -a 42 + -t 235.83994928763002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 117 -a 42 - -t 235.83994928763002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 117 -a 42 h -t 235.83994928763002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 117 -a 42 r -t 235.83994928763002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 117 -a 42 + -t 235.83994928763002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 117 -a 42 - -t 235.83994928763002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 117 -a 42 h -t 235.83994928763002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 117 -a 42 + -t 235.83994928763002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 117 -a 42 - -t 235.83994928763002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 117 -a 42 h -t 235.83994928763002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 117 -a 42 r -t 235.85129328763003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 117 -a 42 + -t 235.85129328763003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 117 -a 42 - -t 235.85129328763003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 117 -a 42 h -t 235.85129328763003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 117 -a 42 r -t 235.85129328763003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 117 -a 42 r -t 235.85129328763003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 117 -a 42 r -t 235.85129328763003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 117 -a 42 r -t 235.86263728763004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 117 -a 42 + -t 236.05815550106001 -s 24 -d 21 -p SRM -e 168 -c 42 -i 118 -a 42 - -t 236.05815550106001 -s 24 -d 21 -p SRM -e 168 -c 42 -i 118 -a 42 h -t 236.05815550106001 -s 24 -d 21 -p SRM -e 168 -c 42 -i 118 -a 42 r -t 236.06949950106002 -s 24 -d 21 -p SRM -e 168 -c 42 -i 118 -a 42 + -t 236.06949950106002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 118 -a 42 - -t 236.06949950106002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 118 -a 42 h -t 236.06949950106002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 118 -a 42 + -t 236.06949950106002 -s 21 -d 23 -p SRM -e 168 -c 42 -i 118 -a 42 - -t 236.06949950106002 -s 21 -d 23 -p SRM -e 168 -c 42 -i 118 -a 42 h -t 236.06949950106002 -s 21 -d 23 -p SRM -e 168 -c 42 -i 118 -a 42 r -t 236.08084350106003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 118 -a 42 + -t 236.08084350106003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 118 -a 42 - -t 236.08084350106003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 118 -a 42 h -t 236.08084350106003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 118 -a 42 r -t 236.08084350106003 -s 21 -d 23 -p SRM -e 168 -c 42 -i 118 -a 42 + -t 236.08084350106003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 118 -a 42 - -t 236.08084350106003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 118 -a 42 h -t 236.08084350106003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 118 -a 42 + -t 236.08084350106003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 118 -a 42 - -t 236.08084350106003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 118 -a 42 h -t 236.08084350106003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 118 -a 42 r -t 236.09218750106004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 118 -a 42 r -t 236.09218750106004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 118 -a 42 r -t 236.09218750106004 -s 23 -d 26 -p SRM -e 168 -c 42 -i 118 -a 42 + -t 236.09218750106004 -s 26 -d 27 -p SRM -e 168 -c 42 -i 118 -a 42 - -t 236.09218750106004 -s 26 -d 27 -p SRM -e 168 -c 42 -i 118 -a 42 h -t 236.09218750106004 -s 26 -d 27 -p SRM -e 168 -c 42 -i 118 -a 42 + -t 236.09218750106004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 118 -a 42 - -t 236.09218750106004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 118 -a 42 h -t 236.09218750106004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 118 -a 42 r -t 236.10353150106005 -s 26 -d 27 -p SRM -e 168 -c 42 -i 118 -a 42 r -t 236.10353150106005 -s 26 -d 28 -p SRM -e 168 -c 42 -i 118 -a 42 + -t 236.62880932446632 -s 28 -d 26 -p cbr -e 1280 -c 8 -i 119 -a 8 - -t 236.62880932446632 -s 28 -d 26 -p cbr -e 1280 -c 8 -i 119 -a 8 h -t 236.62880932446632 -s 28 -d 26 -p cbr -e 1280 -c 8 -i 119 -a 8 r -t 236.64904932446632 -s 28 -d 26 -p cbr -e 1280 -c 8 -i 119 -a 8 + -t 236.64904932446632 -s 26 -d 23 -p cbr -e 1280 -c 8 -i 119 -a 8 - -t 236.64904932446632 -s 26 -d 23 -p cbr -e 1280 -c 8 -i 119 -a 8 h -t 236.64904932446632 -s 26 -d 23 -p cbr -e 1280 -c 8 -i 119 -a 8 + -t 236.64904932446632 -s 26 -d 27 -p cbr -e 1280 -c 8 -i 119 -a 8 - -t 236.64904932446632 -s 26 -d 27 -p cbr -e 1280 -c 8 -i 119 -a 8 h -t 236.64904932446632 -s 26 -d 27 -p cbr -e 1280 -c 8 -i 119 -a 8 r -t 236.66928932446632 -s 26 -d 23 -p cbr -e 1280 -c 8 -i 119 -a 8 + -t 236.66928932446632 -s 23 -d 21 -p cbr -e 1280 -c 8 -i 119 -a 8 - -t 236.66928932446632 -s 23 -d 21 -p cbr -e 1280 -c 8 -i 119 -a 8 h -t 236.66928932446632 -s 23 -d 21 -p cbr -e 1280 -c 8 -i 119 -a 8 d -t 236.66928932446632 -s 23 -d 21 -p cbr -e 1280 -c 8 -i 119 -a 8 + -t 236.66928932446632 -s 23 -d 25 -p cbr -e 1280 -c 8 -i 119 -a 8 - -t 236.66928932446632 -s 23 -d 25 -p cbr -e 1280 -c 8 -i 119 -a 8 h -t 236.66928932446632 -s 23 -d 25 -p cbr -e 1280 -c 8 -i 119 -a 8 r -t 236.66928932446632 -s 26 -d 27 -p cbr -e 1280 -c 8 -i 119 -a 8 r -t 236.68952932446632 -s 23 -d 25 -p cbr -e 1280 -c 8 -i 119 -a 8 + -t 237.40802698253 -s 12 -d 10 -p SRM -e 168 -c 42 -i 120 -a 42 - -t 237.40802698253 -s 12 -d 10 -p SRM -e 168 -c 42 -i 120 -a 42 h -t 237.40802698253 -s 12 -d 10 -p SRM -e 168 -c 42 -i 120 -a 42 r -t 237.41937098253001 -s 12 -d 10 -p SRM -e 168 -c 42 -i 120 -a 42 + -t 237.41937098253001 -s 10 -d 11 -p SRM -e 168 -c 42 -i 120 -a 42 - -t 237.41937098253001 -s 10 -d 11 -p SRM -e 168 -c 42 -i 120 -a 42 h -t 237.41937098253001 -s 10 -d 11 -p SRM -e 168 -c 42 -i 120 -a 42 r -t 237.43071498253002 -s 10 -d 11 -p SRM -e 168 -c 42 -i 120 -a 42 + -t 237.43071498253002 -s 11 -d 13 -p SRM -e 168 -c 42 -i 120 -a 42 - -t 237.43071498253002 -s 11 -d 13 -p SRM -e 168 -c 42 -i 120 -a 42 h -t 237.43071498253002 -s 11 -d 13 -p SRM -e 168 -c 42 -i 120 -a 42 + -t 237.43071498253002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 120 -a 42 - -t 237.43071498253002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 120 -a 42 h -t 237.43071498253002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 120 -a 42 r -t 237.44205898253003 -s 11 -d 13 -p SRM -e 168 -c 42 -i 120 -a 42 + -t 237.44205898253003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 120 -a 42 - -t 237.44205898253003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 120 -a 42 h -t 237.44205898253003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 120 -a 42 + -t 237.44205898253003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 120 -a 42 - -t 237.44205898253003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 120 -a 42 h -t 237.44205898253003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 120 -a 42 r -t 237.44205898253003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 120 -a 42 r -t 237.45340298253004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 120 -a 42 r -t 237.45340298253004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 120 -a 42 + -t 237.45340298253004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 120 -a 42 - -t 237.45340298253004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 120 -a 42 h -t 237.45340298253004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 120 -a 42 + -t 237.45340298253004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 120 -a 42 - -t 237.45340298253004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 120 -a 42 h -t 237.45340298253004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 120 -a 42 r -t 237.46474698253004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 120 -a 42 r -t 237.46474698253004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 120 -a 42 + -t 237.63107109495999 -s 15 -d 13 -p SRM -e 168 -c 42 -i 121 -a 42 - -t 237.63107109495999 -s 15 -d 13 -p SRM -e 168 -c 42 -i 121 -a 42 h -t 237.63107109495999 -s 15 -d 13 -p SRM -e 168 -c 42 -i 121 -a 42 r -t 237.64241509496 -s 15 -d 13 -p SRM -e 168 -c 42 -i 121 -a 42 + -t 237.64241509496 -s 13 -d 11 -p SRM -e 168 -c 42 -i 121 -a 42 - -t 237.64241509496 -s 13 -d 11 -p SRM -e 168 -c 42 -i 121 -a 42 h -t 237.64241509496 -s 13 -d 11 -p SRM -e 168 -c 42 -i 121 -a 42 + -t 237.64241509496 -s 13 -d 16 -p SRM -e 168 -c 42 -i 121 -a 42 - -t 237.64241509496 -s 13 -d 16 -p SRM -e 168 -c 42 -i 121 -a 42 h -t 237.64241509496 -s 13 -d 16 -p SRM -e 168 -c 42 -i 121 -a 42 r -t 237.65375909496001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 121 -a 42 + -t 237.65375909496001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 121 -a 42 - -t 237.65375909496001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 121 -a 42 h -t 237.65375909496001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 121 -a 42 + -t 237.65375909496001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 121 -a 42 - -t 237.65375909496001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 121 -a 42 h -t 237.65375909496001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 121 -a 42 r -t 237.65375909496001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 121 -a 42 + -t 237.65375909496001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 121 -a 42 - -t 237.65375909496001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 121 -a 42 h -t 237.65375909496001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 121 -a 42 + -t 237.65375909496001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 121 -a 42 - -t 237.65375909496001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 121 -a 42 h -t 237.65375909496001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 121 -a 42 r -t 237.66510309496002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 121 -a 42 + -t 237.66510309496002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 121 -a 42 - -t 237.66510309496002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 121 -a 42 h -t 237.66510309496002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 121 -a 42 r -t 237.66510309496002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 121 -a 42 r -t 237.66510309496002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 121 -a 42 r -t 237.66510309496002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 121 -a 42 r -t 237.67644709496003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 121 -a 42 + -t 238.45716757604001 -s 26 -d 23 -p SRM -e 168 -c 42 -i 120 -a 42 - -t 238.45716757604001 -s 26 -d 23 -p SRM -e 168 -c 42 -i 120 -a 42 h -t 238.45716757604001 -s 26 -d 23 -p SRM -e 168 -c 42 -i 120 -a 42 + -t 238.45716757604001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 120 -a 42 - -t 238.45716757604001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 120 -a 42 h -t 238.45716757604001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 120 -a 42 + -t 238.45716757604001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 120 -a 42 - -t 238.45716757604001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 120 -a 42 h -t 238.45716757604001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 120 -a 42 r -t 238.46851157604002 -s 26 -d 23 -p SRM -e 168 -c 42 -i 120 -a 42 + -t 238.46851157604002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 120 -a 42 - -t 238.46851157604002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 120 -a 42 h -t 238.46851157604002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 120 -a 42 + -t 238.46851157604002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 120 -a 42 - -t 238.46851157604002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 120 -a 42 h -t 238.46851157604002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 120 -a 42 r -t 238.46851157604002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 120 -a 42 r -t 238.46851157604002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 120 -a 42 r -t 238.47985557604002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 120 -a 42 + -t 238.47985557604002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 120 -a 42 - -t 238.47985557604002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 120 -a 42 h -t 238.47985557604002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 120 -a 42 + -t 238.47985557604002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 120 -a 42 - -t 238.47985557604002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 120 -a 42 h -t 238.47985557604002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 120 -a 42 r -t 238.47985557604002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 120 -a 42 r -t 238.49119957604003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 120 -a 42 + -t 238.49119957604003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 120 -a 42 - -t 238.49119957604003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 120 -a 42 h -t 238.49119957604003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 120 -a 42 r -t 238.49119957604003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 120 -a 42 r -t 238.50254357604004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 120 -a 42 + -t 238.64243596333 -s 20 -d 21 -p SRM -e 168 -c 42 -i 121 -a 42 - -t 238.64243596333 -s 20 -d 21 -p SRM -e 168 -c 42 -i 121 -a 42 h -t 238.64243596333 -s 20 -d 21 -p SRM -e 168 -c 42 -i 121 -a 42 + -t 238.64243596333 -s 20 -d 22 -p SRM -e 168 -c 42 -i 121 -a 42 - -t 238.64243596333 -s 20 -d 22 -p SRM -e 168 -c 42 -i 121 -a 42 h -t 238.64243596333 -s 20 -d 22 -p SRM -e 168 -c 42 -i 121 -a 42 r -t 238.65377996333001 -s 20 -d 21 -p SRM -e 168 -c 42 -i 121 -a 42 + -t 238.65377996333001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 121 -a 42 - -t 238.65377996333001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 121 -a 42 h -t 238.65377996333001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 121 -a 42 + -t 238.65377996333001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 121 -a 42 - -t 238.65377996333001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 121 -a 42 h -t 238.65377996333001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 121 -a 42 r -t 238.65377996333001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 121 -a 42 r -t 238.66512396333002 -s 21 -d 23 -p SRM -e 168 -c 42 -i 121 -a 42 + -t 238.66512396333002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 121 -a 42 - -t 238.66512396333002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 121 -a 42 h -t 238.66512396333002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 121 -a 42 + -t 238.66512396333002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 121 -a 42 - -t 238.66512396333002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 121 -a 42 h -t 238.66512396333002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 121 -a 42 r -t 238.66512396333002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 121 -a 42 r -t 238.67646796333003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 121 -a 42 r -t 238.67646796333003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 121 -a 42 + -t 238.67646796333003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 121 -a 42 - -t 238.67646796333003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 121 -a 42 h -t 238.67646796333003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 121 -a 42 + -t 238.67646796333003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 121 -a 42 - -t 238.67646796333003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 121 -a 42 h -t 238.67646796333003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 121 -a 42 r -t 238.68781196333003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 121 -a 42 r -t 238.68781196333003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 121 -a 42 + -t 239.01144741446001 -s 22 -d 20 -p SRM -e 20 -c 8 -i 122 -a 8 - -t 239.01144741446001 -s 22 -d 20 -p SRM -e 20 -c 8 -i 122 -a 8 h -t 239.01144741446001 -s 22 -d 20 -p SRM -e 20 -c 8 -i 122 -a 8 v -t 239.01144741446001 sim_annotation 239.01144741446001 13 239.01144741446001: node 22 sends request for msg (8:22) m -t 239.01144741446001 -s 22 -n _o18:2049:q -c gold -h square r -t 239.02160741446002 -s 22 -d 20 -p SRM -e 20 -c 8 -i 122 -a 8 + -t 239.02160741446002 -s 20 -d 21 -p SRM -e 20 -c 8 -i 122 -a 8 - -t 239.02160741446002 -s 20 -d 21 -p SRM -e 20 -c 8 -i 122 -a 8 h -t 239.02160741446002 -s 20 -d 21 -p SRM -e 20 -c 8 -i 122 -a 8 r -t 239.03176741446003 -s 20 -d 21 -p SRM -e 20 -c 8 -i 122 -a 8 + -t 239.03176741446003 -s 21 -d 23 -p SRM -e 20 -c 8 -i 122 -a 8 - -t 239.03176741446003 -s 21 -d 23 -p SRM -e 20 -c 8 -i 122 -a 8 h -t 239.03176741446003 -s 21 -d 23 -p SRM -e 20 -c 8 -i 122 -a 8 + -t 239.03176741446003 -s 21 -d 24 -p SRM -e 20 -c 8 -i 122 -a 8 - -t 239.03176741446003 -s 21 -d 24 -p SRM -e 20 -c 8 -i 122 -a 8 h -t 239.03176741446003 -s 21 -d 24 -p SRM -e 20 -c 8 -i 122 -a 8 r -t 239.04192741446005 -s 21 -d 23 -p SRM -e 20 -c 8 -i 122 -a 8 + -t 239.04192741446005 -s 23 -d 25 -p SRM -e 20 -c 8 -i 122 -a 8 - -t 239.04192741446005 -s 23 -d 25 -p SRM -e 20 -c 8 -i 122 -a 8 h -t 239.04192741446005 -s 23 -d 25 -p SRM -e 20 -c 8 -i 122 -a 8 + -t 239.04192741446005 -s 23 -d 26 -p SRM -e 20 -c 8 -i 122 -a 8 - -t 239.04192741446005 -s 23 -d 26 -p SRM -e 20 -c 8 -i 122 -a 8 h -t 239.04192741446005 -s 23 -d 26 -p SRM -e 20 -c 8 -i 122 -a 8 r -t 239.04192741446005 -s 21 -d 24 -p SRM -e 20 -c 8 -i 122 -a 8 r -t 239.05208741446006 -s 23 -d 25 -p SRM -e 20 -c 8 -i 122 -a 8 r -t 239.05208741446006 -s 23 -d 26 -p SRM -e 20 -c 8 -i 122 -a 8 + -t 239.05208741446006 -s 26 -d 27 -p SRM -e 20 -c 8 -i 122 -a 8 - -t 239.05208741446006 -s 26 -d 27 -p SRM -e 20 -c 8 -i 122 -a 8 h -t 239.05208741446006 -s 26 -d 27 -p SRM -e 20 -c 8 -i 122 -a 8 + -t 239.05208741446006 -s 26 -d 28 -p SRM -e 20 -c 8 -i 122 -a 8 - -t 239.05208741446006 -s 26 -d 28 -p SRM -e 20 -c 8 -i 122 -a 8 h -t 239.05208741446006 -s 26 -d 28 -p SRM -e 20 -c 8 -i 122 -a 8 + -t 239.05208741446006 -s 26 -d 23 -p SRM -e 1300 -c 8 -i 123 -a 8 - -t 239.05208741446006 -s 26 -d 23 -p SRM -e 1300 -c 8 -i 123 -a 8 h -t 239.05208741446006 -s 26 -d 23 -p SRM -e 1300 -c 8 -i 123 -a 8 + -t 239.05208741446006 -s 26 -d 27 -p SRM -e 1300 -c 8 -i 123 -a 8 + -t 239.05208741446006 -s 26 -d 28 -p SRM -e 1300 -c 8 -i 123 -a 8 v -t 239.05208741446006 sim_annotation 239.05208741446006 14 239.05208741446006: node 26 sends repair for msg (8:22) m -t 239.05208741446006 -s 26 -n _o38:2049:p -c gold -h circle - -t 239.05224741446006 -s 26 -d 27 -p SRM -e 1300 -c 8 -i 123 -a 8 h -t 239.05224741446006 -s 26 -d 27 -p SRM -e 1300 -c 8 -i 123 -a 8 - -t 239.05224741446006 -s 26 -d 28 -p SRM -e 1300 -c 8 -i 123 -a 8 h -t 239.05224741446006 -s 26 -d 28 -p SRM -e 1300 -c 8 -i 123 -a 8 + -t 239.05832815477001 -s 27 -d 26 -p SRM -e 168 -c 42 -i 124 -a 42 - -t 239.05832815477001 -s 27 -d 26 -p SRM -e 168 -c 42 -i 124 -a 42 h -t 239.05832815477001 -s 27 -d 26 -p SRM -e 168 -c 42 -i 124 -a 42 r -t 239.06224741446007 -s 26 -d 27 -p SRM -e 20 -c 8 -i 122 -a 8 r -t 239.06224741446007 -s 26 -d 28 -p SRM -e 20 -c 8 -i 122 -a 8 r -t 239.06967215477002 -s 27 -d 26 -p SRM -e 168 -c 42 -i 124 -a 42 + -t 239.06967215477002 -s 26 -d 23 -p SRM -e 168 -c 42 -i 124 -a 42 - -t 239.06967215477002 -s 26 -d 23 -p SRM -e 168 -c 42 -i 124 -a 42 h -t 239.06967215477002 -s 26 -d 23 -p SRM -e 168 -c 42 -i 124 -a 42 + -t 239.06967215477002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 124 -a 42 - -t 239.06967215477002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 124 -a 42 h -t 239.06967215477002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 124 -a 42 r -t 239.07248741446006 -s 26 -d 23 -p SRM -e 1300 -c 8 -i 123 -a 8 + -t 239.07248741446006 -s 23 -d 21 -p SRM -e 1300 -c 8 -i 123 -a 8 - -t 239.07248741446006 -s 23 -d 21 -p SRM -e 1300 -c 8 -i 123 -a 8 h -t 239.07248741446006 -s 23 -d 21 -p SRM -e 1300 -c 8 -i 123 -a 8 + -t 239.07248741446006 -s 23 -d 25 -p SRM -e 1300 -c 8 -i 123 -a 8 - -t 239.07248741446006 -s 23 -d 25 -p SRM -e 1300 -c 8 -i 123 -a 8 h -t 239.07248741446006 -s 23 -d 25 -p SRM -e 1300 -c 8 -i 123 -a 8 r -t 239.07264741446005 -s 26 -d 27 -p SRM -e 1300 -c 8 -i 123 -a 8 r -t 239.07264741446005 -s 26 -d 28 -p SRM -e 1300 -c 8 -i 123 -a 8 r -t 239.08101615477003 -s 26 -d 23 -p SRM -e 168 -c 42 -i 124 -a 42 + -t 239.08101615477003 -s 23 -d 21 -p SRM -e 168 -c 42 -i 124 -a 42 + -t 239.08101615477003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 124 -a 42 r -t 239.08101615477003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 124 -a 42 - -t 239.08288741446006 -s 23 -d 21 -p SRM -e 168 -c 42 -i 124 -a 42 h -t 239.08288741446006 -s 23 -d 21 -p SRM -e 168 -c 42 -i 124 -a 42 - -t 239.08288741446006 -s 23 -d 25 -p SRM -e 168 -c 42 -i 124 -a 42 h -t 239.08288741446006 -s 23 -d 25 -p SRM -e 168 -c 42 -i 124 -a 42 r -t 239.09288741446005 -s 23 -d 21 -p SRM -e 1300 -c 8 -i 123 -a 8 + -t 239.09288741446005 -s 21 -d 20 -p SRM -e 1300 -c 8 -i 123 -a 8 - -t 239.09288741446005 -s 21 -d 20 -p SRM -e 1300 -c 8 -i 123 -a 8 h -t 239.09288741446005 -s 21 -d 20 -p SRM -e 1300 -c 8 -i 123 -a 8 + -t 239.09288741446005 -s 21 -d 24 -p SRM -e 1300 -c 8 -i 123 -a 8 - -t 239.09288741446005 -s 21 -d 24 -p SRM -e 1300 -c 8 -i 123 -a 8 h -t 239.09288741446005 -s 21 -d 24 -p SRM -e 1300 -c 8 -i 123 -a 8 r -t 239.09288741446005 -s 23 -d 25 -p SRM -e 1300 -c 8 -i 123 -a 8 r -t 239.09423141446007 -s 23 -d 21 -p SRM -e 168 -c 42 -i 124 -a 42 + -t 239.09423141446007 -s 21 -d 20 -p SRM -e 168 -c 42 -i 124 -a 42 + -t 239.09423141446007 -s 21 -d 24 -p SRM -e 168 -c 42 -i 124 -a 42 r -t 239.09423141446007 -s 23 -d 25 -p SRM -e 168 -c 42 -i 124 -a 42 - -t 239.10328741446006 -s 21 -d 20 -p SRM -e 168 -c 42 -i 124 -a 42 h -t 239.10328741446006 -s 21 -d 20 -p SRM -e 168 -c 42 -i 124 -a 42 - -t 239.10328741446006 -s 21 -d 24 -p SRM -e 168 -c 42 -i 124 -a 42 h -t 239.10328741446006 -s 21 -d 24 -p SRM -e 168 -c 42 -i 124 -a 42 r -t 239.11328741446005 -s 21 -d 20 -p SRM -e 1300 -c 8 -i 123 -a 8 + -t 239.11328741446005 -s 20 -d 22 -p SRM -e 1300 -c 8 -i 123 -a 8 - -t 239.11328741446005 -s 20 -d 22 -p SRM -e 1300 -c 8 -i 123 -a 8 h -t 239.11328741446005 -s 20 -d 22 -p SRM -e 1300 -c 8 -i 123 -a 8 r -t 239.11328741446005 -s 21 -d 24 -p SRM -e 1300 -c 8 -i 123 -a 8 r -t 239.11463141446006 -s 21 -d 20 -p SRM -e 168 -c 42 -i 124 -a 42 + -t 239.11463141446006 -s 20 -d 22 -p SRM -e 168 -c 42 -i 124 -a 42 r -t 239.11463141446006 -s 21 -d 24 -p SRM -e 168 -c 42 -i 124 -a 42 - -t 239.12368741446005 -s 20 -d 22 -p SRM -e 168 -c 42 -i 124 -a 42 h -t 239.12368741446005 -s 20 -d 22 -p SRM -e 168 -c 42 -i 124 -a 42 r -t 239.13368741446004 -s 20 -d 22 -p SRM -e 1300 -c 8 -i 123 -a 8 m -t 239.13368741446004 -s 22 -n _o18:2049:q -c gold -h square -X r -t 239.13503141446006 -s 20 -d 22 -p SRM -e 168 -c 42 -i 124 -a 42 m -t 239.22308741446 -s 26 -n _o38:2049:p -c gold -h circle -X + -t 240.19205117025001 -s 17 -d 16 -p SRM -e 168 -c 42 -i 122 -a 42 - -t 240.19205117025001 -s 17 -d 16 -p SRM -e 168 -c 42 -i 122 -a 42 h -t 240.19205117025001 -s 17 -d 16 -p SRM -e 168 -c 42 -i 122 -a 42 r -t 240.20339517025002 -s 17 -d 16 -p SRM -e 168 -c 42 -i 122 -a 42 + -t 240.20339517025002 -s 16 -d 13 -p SRM -e 168 -c 42 -i 122 -a 42 - -t 240.20339517025002 -s 16 -d 13 -p SRM -e 168 -c 42 -i 122 -a 42 h -t 240.20339517025002 -s 16 -d 13 -p SRM -e 168 -c 42 -i 122 -a 42 + -t 240.20339517025002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 122 -a 42 - -t 240.20339517025002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 122 -a 42 h -t 240.20339517025002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 122 -a 42 r -t 240.21473917025003 -s 16 -d 13 -p SRM -e 168 -c 42 -i 122 -a 42 + -t 240.21473917025003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 122 -a 42 - -t 240.21473917025003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 122 -a 42 h -t 240.21473917025003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 122 -a 42 + -t 240.21473917025003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 122 -a 42 - -t 240.21473917025003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 122 -a 42 h -t 240.21473917025003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 122 -a 42 r -t 240.21473917025003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 122 -a 42 r -t 240.22608317025004 -s 13 -d 11 -p SRM -e 168 -c 42 -i 122 -a 42 + -t 240.22608317025004 -s 11 -d 10 -p SRM -e 168 -c 42 -i 122 -a 42 - -t 240.22608317025004 -s 11 -d 10 -p SRM -e 168 -c 42 -i 122 -a 42 h -t 240.22608317025004 -s 11 -d 10 -p SRM -e 168 -c 42 -i 122 -a 42 + -t 240.22608317025004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 122 -a 42 - -t 240.22608317025004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 122 -a 42 h -t 240.22608317025004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 122 -a 42 r -t 240.22608317025004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 122 -a 42 r -t 240.23742717025004 -s 11 -d 10 -p SRM -e 168 -c 42 -i 122 -a 42 + -t 240.23742717025004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 122 -a 42 - -t 240.23742717025004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 122 -a 42 h -t 240.23742717025004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 122 -a 42 r -t 240.23742717025004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 122 -a 42 r -t 240.24877117025005 -s 10 -d 12 -p SRM -e 168 -c 42 -i 122 -a 42 + -t 240.32766206369001 -s 10 -d 11 -p SRM -e 168 -c 42 -i 123 -a 42 - -t 240.32766206369001 -s 10 -d 11 -p SRM -e 168 -c 42 -i 123 -a 42 h -t 240.32766206369001 -s 10 -d 11 -p SRM -e 168 -c 42 -i 123 -a 42 + -t 240.32766206369001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 123 -a 42 - -t 240.32766206369001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 123 -a 42 h -t 240.32766206369001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 123 -a 42 r -t 240.33900606369002 -s 10 -d 11 -p SRM -e 168 -c 42 -i 123 -a 42 + -t 240.33900606369002 -s 11 -d 13 -p SRM -e 168 -c 42 -i 123 -a 42 - -t 240.33900606369002 -s 11 -d 13 -p SRM -e 168 -c 42 -i 123 -a 42 h -t 240.33900606369002 -s 11 -d 13 -p SRM -e 168 -c 42 -i 123 -a 42 + -t 240.33900606369002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 123 -a 42 - -t 240.33900606369002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 123 -a 42 h -t 240.33900606369002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 123 -a 42 r -t 240.33900606369002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 123 -a 42 r -t 240.35035006369003 -s 11 -d 13 -p SRM -e 168 -c 42 -i 123 -a 42 + -t 240.35035006369003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 123 -a 42 - -t 240.35035006369003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 123 -a 42 h -t 240.35035006369003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 123 -a 42 + -t 240.35035006369003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 123 -a 42 - -t 240.35035006369003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 123 -a 42 h -t 240.35035006369003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 123 -a 42 r -t 240.35035006369003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 123 -a 42 r -t 240.36169406369004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 123 -a 42 r -t 240.36169406369004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 123 -a 42 + -t 240.36169406369004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 123 -a 42 - -t 240.36169406369004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 123 -a 42 h -t 240.36169406369004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 123 -a 42 + -t 240.36169406369004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 123 -a 42 - -t 240.36169406369004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 123 -a 42 h -t 240.36169406369004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 123 -a 42 r -t 240.37303806369005 -s 16 -d 17 -p SRM -e 168 -c 42 -i 123 -a 42 r -t 240.37303806369005 -s 16 -d 18 -p SRM -e 168 -c 42 -i 123 -a 42 + -t 241.40948675243001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 124 -a 42 - -t 241.40948675243001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 124 -a 42 h -t 241.40948675243001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 124 -a 42 + -t 241.40948675243001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 124 -a 42 - -t 241.40948675243001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 124 -a 42 h -t 241.40948675243001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 124 -a 42 + -t 241.40948675243001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 124 -a 42 - -t 241.40948675243001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 124 -a 42 h -t 241.40948675243001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 124 -a 42 r -t 241.42083075243002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 124 -a 42 + -t 241.42083075243002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 124 -a 42 - -t 241.42083075243002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 124 -a 42 h -t 241.42083075243002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 124 -a 42 + -t 241.42083075243002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 124 -a 42 - -t 241.42083075243002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 124 -a 42 h -t 241.42083075243002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 124 -a 42 r -t 241.42083075243002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 124 -a 42 r -t 241.42083075243002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 124 -a 42 + -t 241.42083075243002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 124 -a 42 - -t 241.42083075243002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 124 -a 42 h -t 241.42083075243002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 124 -a 42 + -t 241.42083075243002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 124 -a 42 - -t 241.42083075243002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 124 -a 42 h -t 241.42083075243002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 124 -a 42 r -t 241.43217475243003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 124 -a 42 + -t 241.43217475243003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 124 -a 42 - -t 241.43217475243003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 124 -a 42 h -t 241.43217475243003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 124 -a 42 r -t 241.43217475243003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 124 -a 42 r -t 241.43217475243003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 124 -a 42 r -t 241.43217475243003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 124 -a 42 r -t 241.44351875243004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 124 -a 42 + -t 242.31447000513 -s 14 -d 11 -p SRM -e 168 -c 42 -i 125 -a 42 - -t 242.31447000513 -s 14 -d 11 -p SRM -e 168 -c 42 -i 125 -a 42 h -t 242.31447000513 -s 14 -d 11 -p SRM -e 168 -c 42 -i 125 -a 42 r -t 242.32581400513001 -s 14 -d 11 -p SRM -e 168 -c 42 -i 125 -a 42 + -t 242.32581400513001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 125 -a 42 - -t 242.32581400513001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 125 -a 42 h -t 242.32581400513001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 125 -a 42 + -t 242.32581400513001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 125 -a 42 - -t 242.32581400513001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 125 -a 42 h -t 242.32581400513001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 125 -a 42 r -t 242.33715800513002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 125 -a 42 + -t 242.33715800513002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 125 -a 42 - -t 242.33715800513002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 125 -a 42 h -t 242.33715800513002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 125 -a 42 r -t 242.33715800513002 -s 11 -d 13 -p SRM -e 168 -c 42 -i 125 -a 42 + -t 242.33715800513002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 125 -a 42 - -t 242.33715800513002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 125 -a 42 h -t 242.33715800513002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 125 -a 42 + -t 242.33715800513002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 125 -a 42 - -t 242.33715800513002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 125 -a 42 h -t 242.33715800513002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 125 -a 42 r -t 242.34850200513003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 125 -a 42 r -t 242.34850200513003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 125 -a 42 r -t 242.34850200513003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 125 -a 42 + -t 242.34850200513003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 125 -a 42 - -t 242.34850200513003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 125 -a 42 h -t 242.34850200513003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 125 -a 42 + -t 242.34850200513003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 125 -a 42 - -t 242.34850200513003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 125 -a 42 h -t 242.34850200513003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 125 -a 42 r -t 242.35984600513004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 125 -a 42 r -t 242.35984600513004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 125 -a 42 + -t 242.49584093969 -s 23 -d 21 -p SRM -e 168 -c 42 -i 125 -a 42 - -t 242.49584093969 -s 23 -d 21 -p SRM -e 168 -c 42 -i 125 -a 42 h -t 242.49584093969 -s 23 -d 21 -p SRM -e 168 -c 42 -i 125 -a 42 + -t 242.49584093969 -s 23 -d 25 -p SRM -e 168 -c 42 -i 125 -a 42 - -t 242.49584093969 -s 23 -d 25 -p SRM -e 168 -c 42 -i 125 -a 42 h -t 242.49584093969 -s 23 -d 25 -p SRM -e 168 -c 42 -i 125 -a 42 + -t 242.49584093969 -s 23 -d 26 -p SRM -e 168 -c 42 -i 125 -a 42 - -t 242.49584093969 -s 23 -d 26 -p SRM -e 168 -c 42 -i 125 -a 42 h -t 242.49584093969 -s 23 -d 26 -p SRM -e 168 -c 42 -i 125 -a 42 r -t 242.50718493969001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 125 -a 42 + -t 242.50718493969001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 125 -a 42 - -t 242.50718493969001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 125 -a 42 h -t 242.50718493969001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 125 -a 42 + -t 242.50718493969001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 125 -a 42 - -t 242.50718493969001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 125 -a 42 h -t 242.50718493969001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 125 -a 42 r -t 242.50718493969001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 125 -a 42 r -t 242.50718493969001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 125 -a 42 + -t 242.50718493969001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 125 -a 42 - -t 242.50718493969001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 125 -a 42 h -t 242.50718493969001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 125 -a 42 + -t 242.50718493969001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 125 -a 42 - -t 242.50718493969001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 125 -a 42 h -t 242.50718493969001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 125 -a 42 r -t 242.51852893969001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 125 -a 42 + -t 242.51852893969001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 125 -a 42 - -t 242.51852893969001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 125 -a 42 h -t 242.51852893969001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 125 -a 42 r -t 242.51852893969001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 125 -a 42 r -t 242.51852893969001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 125 -a 42 r -t 242.51852893969001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 125 -a 42 r -t 242.52987293969002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 125 -a 42 + -t 243.33145258521 -s 22 -d 20 -p SRM -e 168 -c 42 -i 126 -a 42 - -t 243.33145258521 -s 22 -d 20 -p SRM -e 168 -c 42 -i 126 -a 42 h -t 243.33145258521 -s 22 -d 20 -p SRM -e 168 -c 42 -i 126 -a 42 r -t 243.34279658521001 -s 22 -d 20 -p SRM -e 168 -c 42 -i 126 -a 42 + -t 243.34279658521001 -s 20 -d 21 -p SRM -e 168 -c 42 -i 126 -a 42 - -t 243.34279658521001 -s 20 -d 21 -p SRM -e 168 -c 42 -i 126 -a 42 h -t 243.34279658521001 -s 20 -d 21 -p SRM -e 168 -c 42 -i 126 -a 42 r -t 243.35414058521002 -s 20 -d 21 -p SRM -e 168 -c 42 -i 126 -a 42 + -t 243.35414058521002 -s 21 -d 23 -p SRM -e 168 -c 42 -i 126 -a 42 - -t 243.35414058521002 -s 21 -d 23 -p SRM -e 168 -c 42 -i 126 -a 42 h -t 243.35414058521002 -s 21 -d 23 -p SRM -e 168 -c 42 -i 126 -a 42 + -t 243.35414058521002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 126 -a 42 - -t 243.35414058521002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 126 -a 42 h -t 243.35414058521002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 126 -a 42 r -t 243.36548458521003 -s 21 -d 23 -p SRM -e 168 -c 42 -i 126 -a 42 + -t 243.36548458521003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 126 -a 42 - -t 243.36548458521003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 126 -a 42 h -t 243.36548458521003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 126 -a 42 + -t 243.36548458521003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 126 -a 42 - -t 243.36548458521003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 126 -a 42 h -t 243.36548458521003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 126 -a 42 r -t 243.36548458521003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 126 -a 42 r -t 243.37682858521003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 126 -a 42 r -t 243.37682858521003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 126 -a 42 + -t 243.37682858521003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 126 -a 42 - -t 243.37682858521003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 126 -a 42 h -t 243.37682858521003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 126 -a 42 + -t 243.37682858521003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 126 -a 42 - -t 243.37682858521003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 126 -a 42 h -t 243.37682858521003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 126 -a 42 r -t 243.38817258521004 -s 26 -d 27 -p SRM -e 168 -c 42 -i 126 -a 42 r -t 243.38817258521004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 126 -a 42 + -t 244.23113940855788 -s 26 -d 23 -p cbr -e 1280 -c 6 -i 127 -a 6 - -t 244.23113940855788 -s 26 -d 23 -p cbr -e 1280 -c 6 -i 127 -a 6 h -t 244.23113940855788 -s 26 -d 23 -p cbr -e 1280 -c 6 -i 127 -a 6 + -t 244.23113940855788 -s 26 -d 27 -p cbr -e 1280 -c 6 -i 127 -a 6 - -t 244.23113940855788 -s 26 -d 27 -p cbr -e 1280 -c 6 -i 127 -a 6 h -t 244.23113940855788 -s 26 -d 27 -p cbr -e 1280 -c 6 -i 127 -a 6 + -t 244.23113940855788 -s 26 -d 28 -p cbr -e 1280 -c 6 -i 127 -a 6 - -t 244.23113940855788 -s 26 -d 28 -p cbr -e 1280 -c 6 -i 127 -a 6 h -t 244.23113940855788 -s 26 -d 28 -p cbr -e 1280 -c 6 -i 127 -a 6 r -t 244.25137940855788 -s 26 -d 23 -p cbr -e 1280 -c 6 -i 127 -a 6 + -t 244.25137940855788 -s 23 -d 21 -p cbr -e 1280 -c 6 -i 127 -a 6 - -t 244.25137940855788 -s 23 -d 21 -p cbr -e 1280 -c 6 -i 127 -a 6 h -t 244.25137940855788 -s 23 -d 21 -p cbr -e 1280 -c 6 -i 127 -a 6 + -t 244.25137940855788 -s 23 -d 25 -p cbr -e 1280 -c 6 -i 127 -a 6 - -t 244.25137940855788 -s 23 -d 25 -p cbr -e 1280 -c 6 -i 127 -a 6 h -t 244.25137940855788 -s 23 -d 25 -p cbr -e 1280 -c 6 -i 127 -a 6 r -t 244.25137940855788 -s 26 -d 27 -p cbr -e 1280 -c 6 -i 127 -a 6 r -t 244.25137940855788 -s 26 -d 28 -p cbr -e 1280 -c 6 -i 127 -a 6 r -t 244.27161940855788 -s 23 -d 21 -p cbr -e 1280 -c 6 -i 127 -a 6 + -t 244.27161940855788 -s 21 -d 20 -p cbr -e 1280 -c 6 -i 127 -a 6 - -t 244.27161940855788 -s 21 -d 20 -p cbr -e 1280 -c 6 -i 127 -a 6 h -t 244.27161940855788 -s 21 -d 20 -p cbr -e 1280 -c 6 -i 127 -a 6 + -t 244.27161940855788 -s 21 -d 24 -p cbr -e 1280 -c 6 -i 127 -a 6 - -t 244.27161940855788 -s 21 -d 24 -p cbr -e 1280 -c 6 -i 127 -a 6 h -t 244.27161940855788 -s 21 -d 24 -p cbr -e 1280 -c 6 -i 127 -a 6 r -t 244.27161940855788 -s 23 -d 25 -p cbr -e 1280 -c 6 -i 127 -a 6 r -t 244.29185940855788 -s 21 -d 20 -p cbr -e 1280 -c 6 -i 127 -a 6 + -t 244.29185940855788 -s 20 -d 22 -p cbr -e 1280 -c 6 -i 127 -a 6 - -t 244.29185940855788 -s 20 -d 22 -p cbr -e 1280 -c 6 -i 127 -a 6 h -t 244.29185940855788 -s 20 -d 22 -p cbr -e 1280 -c 6 -i 127 -a 6 r -t 244.29185940855788 -s 21 -d 24 -p cbr -e 1280 -c 6 -i 127 -a 6 r -t 244.31209940855788 -s 20 -d 22 -p cbr -e 1280 -c 6 -i 127 -a 6 + -t 244.43028276038001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 126 -a 42 - -t 244.43028276038001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 126 -a 42 h -t 244.43028276038001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 126 -a 42 + -t 244.43028276038001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 126 -a 42 - -t 244.43028276038001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 126 -a 42 h -t 244.43028276038001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 126 -a 42 + -t 244.43028276038001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 126 -a 42 - -t 244.43028276038001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 126 -a 42 h -t 244.43028276038001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 126 -a 42 r -t 244.44162676038002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 126 -a 42 + -t 244.44162676038002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 126 -a 42 - -t 244.44162676038002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 126 -a 42 h -t 244.44162676038002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 126 -a 42 r -t 244.44162676038002 -s 11 -d 13 -p SRM -e 168 -c 42 -i 126 -a 42 + -t 244.44162676038002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 126 -a 42 - -t 244.44162676038002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 126 -a 42 h -t 244.44162676038002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 126 -a 42 + -t 244.44162676038002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 126 -a 42 - -t 244.44162676038002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 126 -a 42 h -t 244.44162676038002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 126 -a 42 r -t 244.44162676038002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 126 -a 42 r -t 244.45297076038003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 126 -a 42 r -t 244.45297076038003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 126 -a 42 r -t 244.45297076038003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 126 -a 42 + -t 244.45297076038003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 126 -a 42 - -t 244.45297076038003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 126 -a 42 h -t 244.45297076038003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 126 -a 42 + -t 244.45297076038003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 126 -a 42 - -t 244.45297076038003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 126 -a 42 h -t 244.45297076038003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 126 -a 42 r -t 244.46431476038003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 126 -a 42 r -t 244.46431476038003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 126 -a 42 + -t 244.80701375954001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 128 -a 42 - -t 244.80701375954001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 128 -a 42 h -t 244.80701375954001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 128 -a 42 + -t 244.80701375954001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 128 -a 42 - -t 244.80701375954001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 128 -a 42 h -t 244.80701375954001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 128 -a 42 + -t 244.80701375954001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 128 -a 42 - -t 244.80701375954001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 128 -a 42 h -t 244.80701375954001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 128 -a 42 r -t 244.81835775954002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 128 -a 42 + -t 244.81835775954002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 128 -a 42 - -t 244.81835775954002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 128 -a 42 h -t 244.81835775954002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 128 -a 42 r -t 244.81835775954002 -s 21 -d 23 -p SRM -e 168 -c 42 -i 128 -a 42 + -t 244.81835775954002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 128 -a 42 - -t 244.81835775954002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 128 -a 42 h -t 244.81835775954002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 128 -a 42 + -t 244.81835775954002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 128 -a 42 - -t 244.81835775954002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 128 -a 42 h -t 244.81835775954002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 128 -a 42 r -t 244.81835775954002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 128 -a 42 r -t 244.82970175954003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 128 -a 42 r -t 244.82970175954003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 128 -a 42 r -t 244.82970175954003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 128 -a 42 + -t 244.82970175954003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 128 -a 42 - -t 244.82970175954003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 128 -a 42 h -t 244.82970175954003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 128 -a 42 + -t 244.82970175954003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 128 -a 42 - -t 244.82970175954003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 128 -a 42 h -t 244.82970175954003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 128 -a 42 r -t 244.84104575954004 -s 26 -d 27 -p SRM -e 168 -c 42 -i 128 -a 42 r -t 244.84104575954004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 128 -a 42 + -t 245.26868231443001 -s 28 -d 26 -p SRM -e 168 -c 42 -i 129 -a 42 - -t 245.26868231443001 -s 28 -d 26 -p SRM -e 168 -c 42 -i 129 -a 42 h -t 245.26868231443001 -s 28 -d 26 -p SRM -e 168 -c 42 -i 129 -a 42 r -t 245.28002631443002 -s 28 -d 26 -p SRM -e 168 -c 42 -i 129 -a 42 + -t 245.28002631443002 -s 26 -d 23 -p SRM -e 168 -c 42 -i 129 -a 42 - -t 245.28002631443002 -s 26 -d 23 -p SRM -e 168 -c 42 -i 129 -a 42 h -t 245.28002631443002 -s 26 -d 23 -p SRM -e 168 -c 42 -i 129 -a 42 + -t 245.28002631443002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 129 -a 42 - -t 245.28002631443002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 129 -a 42 h -t 245.28002631443002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 129 -a 42 r -t 245.29137031443003 -s 26 -d 23 -p SRM -e 168 -c 42 -i 129 -a 42 + -t 245.29137031443003 -s 23 -d 21 -p SRM -e 168 -c 42 -i 129 -a 42 - -t 245.29137031443003 -s 23 -d 21 -p SRM -e 168 -c 42 -i 129 -a 42 h -t 245.29137031443003 -s 23 -d 21 -p SRM -e 168 -c 42 -i 129 -a 42 + -t 245.29137031443003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 129 -a 42 - -t 245.29137031443003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 129 -a 42 h -t 245.29137031443003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 129 -a 42 r -t 245.29137031443003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 129 -a 42 r -t 245.30271431443003 -s 23 -d 21 -p SRM -e 168 -c 42 -i 129 -a 42 + -t 245.30271431443003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 129 -a 42 - -t 245.30271431443003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 129 -a 42 h -t 245.30271431443003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 129 -a 42 + -t 245.30271431443003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 129 -a 42 - -t 245.30271431443003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 129 -a 42 h -t 245.30271431443003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 129 -a 42 r -t 245.30271431443003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 129 -a 42 r -t 245.31405831443004 -s 21 -d 20 -p SRM -e 168 -c 42 -i 129 -a 42 + -t 245.31405831443004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 129 -a 42 - -t 245.31405831443004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 129 -a 42 h -t 245.31405831443004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 129 -a 42 r -t 245.31405831443004 -s 21 -d 24 -p SRM -e 168 -c 42 -i 129 -a 42 r -t 245.32540231443005 -s 20 -d 22 -p SRM -e 168 -c 42 -i 129 -a 42 + -t 246.70903606441999 -s 18 -d 16 -p SRM -e 168 -c 42 -i 127 -a 42 - -t 246.70903606441999 -s 18 -d 16 -p SRM -e 168 -c 42 -i 127 -a 42 h -t 246.70903606441999 -s 18 -d 16 -p SRM -e 168 -c 42 -i 127 -a 42 r -t 246.72038006442 -s 18 -d 16 -p SRM -e 168 -c 42 -i 127 -a 42 + -t 246.72038006442 -s 16 -d 13 -p SRM -e 168 -c 42 -i 127 -a 42 - -t 246.72038006442 -s 16 -d 13 -p SRM -e 168 -c 42 -i 127 -a 42 h -t 246.72038006442 -s 16 -d 13 -p SRM -e 168 -c 42 -i 127 -a 42 + -t 246.72038006442 -s 16 -d 17 -p SRM -e 168 -c 42 -i 127 -a 42 - -t 246.72038006442 -s 16 -d 17 -p SRM -e 168 -c 42 -i 127 -a 42 h -t 246.72038006442 -s 16 -d 17 -p SRM -e 168 -c 42 -i 127 -a 42 r -t 246.73172406442001 -s 16 -d 13 -p SRM -e 168 -c 42 -i 127 -a 42 + -t 246.73172406442001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 127 -a 42 - -t 246.73172406442001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 127 -a 42 h -t 246.73172406442001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 127 -a 42 + -t 246.73172406442001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 127 -a 42 - -t 246.73172406442001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 127 -a 42 h -t 246.73172406442001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 127 -a 42 r -t 246.73172406442001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 127 -a 42 r -t 246.74306806442002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 127 -a 42 + -t 246.74306806442002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 127 -a 42 - -t 246.74306806442002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 127 -a 42 h -t 246.74306806442002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 127 -a 42 + -t 246.74306806442002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 127 -a 42 - -t 246.74306806442002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 127 -a 42 h -t 246.74306806442002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 127 -a 42 r -t 246.74306806442002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 127 -a 42 r -t 246.75441206442002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 127 -a 42 + -t 246.75441206442002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 127 -a 42 - -t 246.75441206442002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 127 -a 42 h -t 246.75441206442002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 127 -a 42 r -t 246.75441206442002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 127 -a 42 r -t 246.76575606442003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 127 -a 42 + -t 254.67825482422001 -s 25 -d 23 -p SRM -e 168 -c 42 -i 130 -a 42 - -t 254.67825482422001 -s 25 -d 23 -p SRM -e 168 -c 42 -i 130 -a 42 h -t 254.67825482422001 -s 25 -d 23 -p SRM -e 168 -c 42 -i 130 -a 42 r -t 254.68959882422001 -s 25 -d 23 -p SRM -e 168 -c 42 -i 130 -a 42 + -t 254.68959882422001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 130 -a 42 - -t 254.68959882422001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 130 -a 42 h -t 254.68959882422001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 130 -a 42 + -t 254.68959882422001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 130 -a 42 - -t 254.68959882422001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 130 -a 42 h -t 254.68959882422001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 130 -a 42 r -t 254.70094282422002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 130 -a 42 + -t 254.70094282422002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 130 -a 42 - -t 254.70094282422002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 130 -a 42 h -t 254.70094282422002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 130 -a 42 + -t 254.70094282422002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 130 -a 42 - -t 254.70094282422002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 130 -a 42 h -t 254.70094282422002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 130 -a 42 r -t 254.70094282422002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 130 -a 42 + -t 254.70094282422002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 130 -a 42 - -t 254.70094282422002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 130 -a 42 h -t 254.70094282422002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 130 -a 42 + -t 254.70094282422002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 130 -a 42 - -t 254.70094282422002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 130 -a 42 h -t 254.70094282422002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 130 -a 42 r -t 254.71228682422003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 130 -a 42 + -t 254.71228682422003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 130 -a 42 - -t 254.71228682422003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 130 -a 42 h -t 254.71228682422003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 130 -a 42 r -t 254.71228682422003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 130 -a 42 r -t 254.71228682422003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 130 -a 42 r -t 254.71228682422003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 130 -a 42 r -t 254.72363082422004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 130 -a 42 + -t 255.91405906592999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 128 -a 42 - -t 255.91405906592999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 128 -a 42 h -t 255.91405906592999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 128 -a 42 + -t 255.91405906592999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 128 -a 42 - -t 255.91405906592999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 128 -a 42 h -t 255.91405906592999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 128 -a 42 + -t 255.91405906592999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 128 -a 42 - -t 255.91405906592999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 128 -a 42 h -t 255.91405906592999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 128 -a 42 r -t 255.92540306593 -s 16 -d 13 -p SRM -e 168 -c 42 -i 128 -a 42 + -t 255.92540306593 -s 13 -d 11 -p SRM -e 168 -c 42 -i 128 -a 42 - -t 255.92540306593 -s 13 -d 11 -p SRM -e 168 -c 42 -i 128 -a 42 h -t 255.92540306593 -s 13 -d 11 -p SRM -e 168 -c 42 -i 128 -a 42 + -t 255.92540306593 -s 13 -d 15 -p SRM -e 168 -c 42 -i 128 -a 42 - -t 255.92540306593 -s 13 -d 15 -p SRM -e 168 -c 42 -i 128 -a 42 h -t 255.92540306593 -s 13 -d 15 -p SRM -e 168 -c 42 -i 128 -a 42 r -t 255.92540306593 -s 16 -d 17 -p SRM -e 168 -c 42 -i 128 -a 42 r -t 255.92540306593 -s 16 -d 18 -p SRM -e 168 -c 42 -i 128 -a 42 r -t 255.93674706593001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 128 -a 42 + -t 255.93674706593001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 128 -a 42 - -t 255.93674706593001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 128 -a 42 h -t 255.93674706593001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 128 -a 42 + -t 255.93674706593001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 128 -a 42 - -t 255.93674706593001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 128 -a 42 h -t 255.93674706593001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 128 -a 42 r -t 255.93674706593001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 128 -a 42 r -t 255.94809106593002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 128 -a 42 + -t 255.94809106593002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 128 -a 42 - -t 255.94809106593002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 128 -a 42 h -t 255.94809106593002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 128 -a 42 r -t 255.94809106593002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 128 -a 42 r -t 255.95943506593002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 128 -a 42 + -t 256.26902051911998 -s 12 -d 10 -p SRM -e 168 -c 42 -i 129 -a 42 - -t 256.26902051911998 -s 12 -d 10 -p SRM -e 168 -c 42 -i 129 -a 42 h -t 256.26902051911998 -s 12 -d 10 -p SRM -e 168 -c 42 -i 129 -a 42 r -t 256.28036451911998 -s 12 -d 10 -p SRM -e 168 -c 42 -i 129 -a 42 + -t 256.28036451911998 -s 10 -d 11 -p SRM -e 168 -c 42 -i 129 -a 42 - -t 256.28036451911998 -s 10 -d 11 -p SRM -e 168 -c 42 -i 129 -a 42 h -t 256.28036451911998 -s 10 -d 11 -p SRM -e 168 -c 42 -i 129 -a 42 r -t 256.29170851911999 -s 10 -d 11 -p SRM -e 168 -c 42 -i 129 -a 42 + -t 256.29170851911999 -s 11 -d 13 -p SRM -e 168 -c 42 -i 129 -a 42 - -t 256.29170851911999 -s 11 -d 13 -p SRM -e 168 -c 42 -i 129 -a 42 h -t 256.29170851911999 -s 11 -d 13 -p SRM -e 168 -c 42 -i 129 -a 42 + -t 256.29170851911999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 129 -a 42 - -t 256.29170851911999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 129 -a 42 h -t 256.29170851911999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 129 -a 42 r -t 256.30305251912 -s 11 -d 13 -p SRM -e 168 -c 42 -i 129 -a 42 + -t 256.30305251912 -s 13 -d 15 -p SRM -e 168 -c 42 -i 129 -a 42 - -t 256.30305251912 -s 13 -d 15 -p SRM -e 168 -c 42 -i 129 -a 42 h -t 256.30305251912 -s 13 -d 15 -p SRM -e 168 -c 42 -i 129 -a 42 + -t 256.30305251912 -s 13 -d 16 -p SRM -e 168 -c 42 -i 129 -a 42 - -t 256.30305251912 -s 13 -d 16 -p SRM -e 168 -c 42 -i 129 -a 42 h -t 256.30305251912 -s 13 -d 16 -p SRM -e 168 -c 42 -i 129 -a 42 r -t 256.30305251912 -s 11 -d 14 -p SRM -e 168 -c 42 -i 129 -a 42 r -t 256.31439651912001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 129 -a 42 r -t 256.31439651912001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 129 -a 42 + -t 256.31439651912001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 129 -a 42 - -t 256.31439651912001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 129 -a 42 h -t 256.31439651912001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 129 -a 42 + -t 256.31439651912001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 129 -a 42 - -t 256.31439651912001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 129 -a 42 h -t 256.31439651912001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 129 -a 42 r -t 256.32574051912002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 129 -a 42 r -t 256.32574051912002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 129 -a 42 + -t 256.77652497137001 -s 24 -d 21 -p SRM -e 168 -c 42 -i 131 -a 42 - -t 256.77652497137001 -s 24 -d 21 -p SRM -e 168 -c 42 -i 131 -a 42 h -t 256.77652497137001 -s 24 -d 21 -p SRM -e 168 -c 42 -i 131 -a 42 r -t 256.78786897137002 -s 24 -d 21 -p SRM -e 168 -c 42 -i 131 -a 42 + -t 256.78786897137002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 131 -a 42 - -t 256.78786897137002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 131 -a 42 h -t 256.78786897137002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 131 -a 42 + -t 256.78786897137002 -s 21 -d 23 -p SRM -e 168 -c 42 -i 131 -a 42 - -t 256.78786897137002 -s 21 -d 23 -p SRM -e 168 -c 42 -i 131 -a 42 h -t 256.78786897137002 -s 21 -d 23 -p SRM -e 168 -c 42 -i 131 -a 42 r -t 256.79921297137003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 131 -a 42 + -t 256.79921297137003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 131 -a 42 - -t 256.79921297137003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 131 -a 42 h -t 256.79921297137003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 131 -a 42 r -t 256.79921297137003 -s 21 -d 23 -p SRM -e 168 -c 42 -i 131 -a 42 + -t 256.79921297137003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 131 -a 42 - -t 256.79921297137003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 131 -a 42 h -t 256.79921297137003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 131 -a 42 + -t 256.79921297137003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 131 -a 42 - -t 256.79921297137003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 131 -a 42 h -t 256.79921297137003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 131 -a 42 r -t 256.81055697137003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 131 -a 42 r -t 256.81055697137003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 131 -a 42 r -t 256.81055697137003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 131 -a 42 + -t 256.81055697137003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 131 -a 42 - -t 256.81055697137003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 131 -a 42 h -t 256.81055697137003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 131 -a 42 + -t 256.81055697137003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 131 -a 42 - -t 256.81055697137003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 131 -a 42 h -t 256.81055697137003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 131 -a 42 r -t 256.82190097137004 -s 26 -d 27 -p SRM -e 168 -c 42 -i 131 -a 42 r -t 256.82190097137004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 131 -a 42 + -t 258.34944056527002 -s 15 -d 13 -p SRM -e 168 -c 42 -i 130 -a 42 - -t 258.34944056527002 -s 15 -d 13 -p SRM -e 168 -c 42 -i 130 -a 42 h -t 258.34944056527002 -s 15 -d 13 -p SRM -e 168 -c 42 -i 130 -a 42 r -t 258.36078456527002 -s 15 -d 13 -p SRM -e 168 -c 42 -i 130 -a 42 + -t 258.36078456527002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 130 -a 42 - -t 258.36078456527002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 130 -a 42 h -t 258.36078456527002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 130 -a 42 + -t 258.36078456527002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 130 -a 42 - -t 258.36078456527002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 130 -a 42 h -t 258.36078456527002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 130 -a 42 r -t 258.37212856527003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 130 -a 42 + -t 258.37212856527003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 130 -a 42 - -t 258.37212856527003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 130 -a 42 h -t 258.37212856527003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 130 -a 42 + -t 258.37212856527003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 130 -a 42 - -t 258.37212856527003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 130 -a 42 h -t 258.37212856527003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 130 -a 42 r -t 258.37212856527003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 130 -a 42 + -t 258.37212856527003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 130 -a 42 - -t 258.37212856527003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 130 -a 42 h -t 258.37212856527003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 130 -a 42 + -t 258.37212856527003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 130 -a 42 - -t 258.37212856527003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 130 -a 42 h -t 258.37212856527003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 130 -a 42 r -t 258.38347256527004 -s 11 -d 10 -p SRM -e 168 -c 42 -i 130 -a 42 + -t 258.38347256527004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 130 -a 42 - -t 258.38347256527004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 130 -a 42 h -t 258.38347256527004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 130 -a 42 r -t 258.38347256527004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 130 -a 42 r -t 258.38347256527004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 130 -a 42 r -t 258.38347256527004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 130 -a 42 r -t 258.39481656527005 -s 10 -d 12 -p SRM -e 168 -c 42 -i 130 -a 42 + -t 258.48099107666002 -s 26 -d 23 -p SRM -e 168 -c 42 -i 132 -a 42 - -t 258.48099107666002 -s 26 -d 23 -p SRM -e 168 -c 42 -i 132 -a 42 h -t 258.48099107666002 -s 26 -d 23 -p SRM -e 168 -c 42 -i 132 -a 42 + -t 258.48099107666002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 132 -a 42 - -t 258.48099107666002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 132 -a 42 h -t 258.48099107666002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 132 -a 42 + -t 258.48099107666002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 132 -a 42 - -t 258.48099107666002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 132 -a 42 h -t 258.48099107666002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 132 -a 42 r -t 258.49233507666003 -s 26 -d 23 -p SRM -e 168 -c 42 -i 132 -a 42 + -t 258.49233507666003 -s 23 -d 21 -p SRM -e 168 -c 42 -i 132 -a 42 - -t 258.49233507666003 -s 23 -d 21 -p SRM -e 168 -c 42 -i 132 -a 42 h -t 258.49233507666003 -s 23 -d 21 -p SRM -e 168 -c 42 -i 132 -a 42 + -t 258.49233507666003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 132 -a 42 - -t 258.49233507666003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 132 -a 42 h -t 258.49233507666003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 132 -a 42 r -t 258.49233507666003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 132 -a 42 r -t 258.49233507666003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 132 -a 42 r -t 258.50367907666003 -s 23 -d 21 -p SRM -e 168 -c 42 -i 132 -a 42 + -t 258.50367907666003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 132 -a 42 - -t 258.50367907666003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 132 -a 42 h -t 258.50367907666003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 132 -a 42 + -t 258.50367907666003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 132 -a 42 - -t 258.50367907666003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 132 -a 42 h -t 258.50367907666003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 132 -a 42 r -t 258.50367907666003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 132 -a 42 r -t 258.51502307666004 -s 21 -d 20 -p SRM -e 168 -c 42 -i 132 -a 42 + -t 258.51502307666004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 132 -a 42 - -t 258.51502307666004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 132 -a 42 h -t 258.51502307666004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 132 -a 42 r -t 258.51502307666004 -s 21 -d 24 -p SRM -e 168 -c 42 -i 132 -a 42 r -t 258.52636707666005 -s 20 -d 22 -p SRM -e 168 -c 42 -i 132 -a 42 + -t 259.32816444003998 -s 10 -d 11 -p SRM -e 168 -c 42 -i 131 -a 42 - -t 259.32816444003998 -s 10 -d 11 -p SRM -e 168 -c 42 -i 131 -a 42 h -t 259.32816444003998 -s 10 -d 11 -p SRM -e 168 -c 42 -i 131 -a 42 + -t 259.32816444003998 -s 10 -d 12 -p SRM -e 168 -c 42 -i 131 -a 42 - -t 259.32816444003998 -s 10 -d 12 -p SRM -e 168 -c 42 -i 131 -a 42 h -t 259.32816444003998 -s 10 -d 12 -p SRM -e 168 -c 42 -i 131 -a 42 r -t 259.33950844003999 -s 10 -d 11 -p SRM -e 168 -c 42 -i 131 -a 42 + -t 259.33950844003999 -s 11 -d 13 -p SRM -e 168 -c 42 -i 131 -a 42 - -t 259.33950844003999 -s 11 -d 13 -p SRM -e 168 -c 42 -i 131 -a 42 h -t 259.33950844003999 -s 11 -d 13 -p SRM -e 168 -c 42 -i 131 -a 42 + -t 259.33950844003999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 131 -a 42 - -t 259.33950844003999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 131 -a 42 h -t 259.33950844003999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 131 -a 42 r -t 259.33950844003999 -s 10 -d 12 -p SRM -e 168 -c 42 -i 131 -a 42 r -t 259.35085244004 -s 11 -d 13 -p SRM -e 168 -c 42 -i 131 -a 42 + -t 259.35085244004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 131 -a 42 - -t 259.35085244004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 131 -a 42 h -t 259.35085244004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 131 -a 42 + -t 259.35085244004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 131 -a 42 - -t 259.35085244004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 131 -a 42 h -t 259.35085244004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 131 -a 42 r -t 259.35085244004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 131 -a 42 r -t 259.36219644004001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 131 -a 42 r -t 259.36219644004001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 131 -a 42 + -t 259.36219644004001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 131 -a 42 - -t 259.36219644004001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 131 -a 42 h -t 259.36219644004001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 131 -a 42 + -t 259.36219644004001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 131 -a 42 - -t 259.36219644004001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 131 -a 42 h -t 259.36219644004001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 131 -a 42 r -t 259.37354044004002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 131 -a 42 r -t 259.37354044004002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 131 -a 42 + -t 260.44790576488998 -s 20 -d 21 -p SRM -e 168 -c 42 -i 133 -a 42 - -t 260.44790576488998 -s 20 -d 21 -p SRM -e 168 -c 42 -i 133 -a 42 h -t 260.44790576488998 -s 20 -d 21 -p SRM -e 168 -c 42 -i 133 -a 42 + -t 260.44790576488998 -s 20 -d 22 -p SRM -e 168 -c 42 -i 133 -a 42 - -t 260.44790576488998 -s 20 -d 22 -p SRM -e 168 -c 42 -i 133 -a 42 h -t 260.44790576488998 -s 20 -d 22 -p SRM -e 168 -c 42 -i 133 -a 42 r -t 260.45924976488999 -s 20 -d 21 -p SRM -e 168 -c 42 -i 133 -a 42 + -t 260.45924976488999 -s 21 -d 23 -p SRM -e 168 -c 42 -i 133 -a 42 - -t 260.45924976488999 -s 21 -d 23 -p SRM -e 168 -c 42 -i 133 -a 42 h -t 260.45924976488999 -s 21 -d 23 -p SRM -e 168 -c 42 -i 133 -a 42 + -t 260.45924976488999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 133 -a 42 - -t 260.45924976488999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 133 -a 42 h -t 260.45924976488999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 133 -a 42 r -t 260.45924976488999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 133 -a 42 r -t 260.47059376489 -s 21 -d 23 -p SRM -e 168 -c 42 -i 133 -a 42 + -t 260.47059376489 -s 23 -d 25 -p SRM -e 168 -c 42 -i 133 -a 42 - -t 260.47059376489 -s 23 -d 25 -p SRM -e 168 -c 42 -i 133 -a 42 h -t 260.47059376489 -s 23 -d 25 -p SRM -e 168 -c 42 -i 133 -a 42 + -t 260.47059376489 -s 23 -d 26 -p SRM -e 168 -c 42 -i 133 -a 42 - -t 260.47059376489 -s 23 -d 26 -p SRM -e 168 -c 42 -i 133 -a 42 h -t 260.47059376489 -s 23 -d 26 -p SRM -e 168 -c 42 -i 133 -a 42 r -t 260.47059376489 -s 21 -d 24 -p SRM -e 168 -c 42 -i 133 -a 42 r -t 260.48193776489001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 133 -a 42 r -t 260.48193776489001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 133 -a 42 + -t 260.48193776489001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 133 -a 42 - -t 260.48193776489001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 133 -a 42 h -t 260.48193776489001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 133 -a 42 + -t 260.48193776489001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 133 -a 42 - -t 260.48193776489001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 133 -a 42 h -t 260.48193776489001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 133 -a 42 r -t 260.49328176489001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 133 -a 42 r -t 260.49328176489001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 133 -a 42 + -t 260.87598776557002 -s 27 -d 26 -p SRM -e 168 -c 42 -i 134 -a 42 - -t 260.87598776557002 -s 27 -d 26 -p SRM -e 168 -c 42 -i 134 -a 42 h -t 260.87598776557002 -s 27 -d 26 -p SRM -e 168 -c 42 -i 134 -a 42 r -t 260.88733176557002 -s 27 -d 26 -p SRM -e 168 -c 42 -i 134 -a 42 + -t 260.88733176557002 -s 26 -d 23 -p SRM -e 168 -c 42 -i 134 -a 42 - -t 260.88733176557002 -s 26 -d 23 -p SRM -e 168 -c 42 -i 134 -a 42 h -t 260.88733176557002 -s 26 -d 23 -p SRM -e 168 -c 42 -i 134 -a 42 + -t 260.88733176557002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 134 -a 42 - -t 260.88733176557002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 134 -a 42 h -t 260.88733176557002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 134 -a 42 r -t 260.89867576557003 -s 26 -d 23 -p SRM -e 168 -c 42 -i 134 -a 42 + -t 260.89867576557003 -s 23 -d 21 -p SRM -e 168 -c 42 -i 134 -a 42 - -t 260.89867576557003 -s 23 -d 21 -p SRM -e 168 -c 42 -i 134 -a 42 h -t 260.89867576557003 -s 23 -d 21 -p SRM -e 168 -c 42 -i 134 -a 42 + -t 260.89867576557003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 134 -a 42 - -t 260.89867576557003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 134 -a 42 h -t 260.89867576557003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 134 -a 42 r -t 260.89867576557003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 134 -a 42 r -t 260.91001976557004 -s 23 -d 21 -p SRM -e 168 -c 42 -i 134 -a 42 + -t 260.91001976557004 -s 21 -d 20 -p SRM -e 168 -c 42 -i 134 -a 42 - -t 260.91001976557004 -s 21 -d 20 -p SRM -e 168 -c 42 -i 134 -a 42 h -t 260.91001976557004 -s 21 -d 20 -p SRM -e 168 -c 42 -i 134 -a 42 + -t 260.91001976557004 -s 21 -d 24 -p SRM -e 168 -c 42 -i 134 -a 42 - -t 260.91001976557004 -s 21 -d 24 -p SRM -e 168 -c 42 -i 134 -a 42 h -t 260.91001976557004 -s 21 -d 24 -p SRM -e 168 -c 42 -i 134 -a 42 r -t 260.91001976557004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 134 -a 42 r -t 260.92136376557005 -s 21 -d 20 -p SRM -e 168 -c 42 -i 134 -a 42 + -t 260.92136376557005 -s 20 -d 22 -p SRM -e 168 -c 42 -i 134 -a 42 - -t 260.92136376557005 -s 20 -d 22 -p SRM -e 168 -c 42 -i 134 -a 42 h -t 260.92136376557005 -s 20 -d 22 -p SRM -e 168 -c 42 -i 134 -a 42 r -t 260.92136376557005 -s 21 -d 24 -p SRM -e 168 -c 42 -i 134 -a 42 r -t 260.93270776557006 -s 20 -d 22 -p SRM -e 168 -c 42 -i 134 -a 42 + -t 261.82773871130001 -s 17 -d 16 -p SRM -e 168 -c 42 -i 132 -a 42 - -t 261.82773871130001 -s 17 -d 16 -p SRM -e 168 -c 42 -i 132 -a 42 h -t 261.82773871130001 -s 17 -d 16 -p SRM -e 168 -c 42 -i 132 -a 42 r -t 261.83908271130002 -s 17 -d 16 -p SRM -e 168 -c 42 -i 132 -a 42 + -t 261.83908271130002 -s 16 -d 13 -p SRM -e 168 -c 42 -i 132 -a 42 - -t 261.83908271130002 -s 16 -d 13 -p SRM -e 168 -c 42 -i 132 -a 42 h -t 261.83908271130002 -s 16 -d 13 -p SRM -e 168 -c 42 -i 132 -a 42 + -t 261.83908271130002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 132 -a 42 - -t 261.83908271130002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 132 -a 42 h -t 261.83908271130002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 132 -a 42 r -t 261.85042671130003 -s 16 -d 13 -p SRM -e 168 -c 42 -i 132 -a 42 + -t 261.85042671130003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 132 -a 42 - -t 261.85042671130003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 132 -a 42 h -t 261.85042671130003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 132 -a 42 + -t 261.85042671130003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 132 -a 42 - -t 261.85042671130003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 132 -a 42 h -t 261.85042671130003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 132 -a 42 r -t 261.85042671130003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 132 -a 42 r -t 261.86177071130004 -s 13 -d 11 -p SRM -e 168 -c 42 -i 132 -a 42 + -t 261.86177071130004 -s 11 -d 10 -p SRM -e 168 -c 42 -i 132 -a 42 - -t 261.86177071130004 -s 11 -d 10 -p SRM -e 168 -c 42 -i 132 -a 42 h -t 261.86177071130004 -s 11 -d 10 -p SRM -e 168 -c 42 -i 132 -a 42 + -t 261.86177071130004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 132 -a 42 - -t 261.86177071130004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 132 -a 42 h -t 261.86177071130004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 132 -a 42 r -t 261.86177071130004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 132 -a 42 r -t 261.87311471130005 -s 11 -d 10 -p SRM -e 168 -c 42 -i 132 -a 42 + -t 261.87311471130005 -s 10 -d 12 -p SRM -e 168 -c 42 -i 132 -a 42 - -t 261.87311471130005 -s 10 -d 12 -p SRM -e 168 -c 42 -i 132 -a 42 h -t 261.87311471130005 -s 10 -d 12 -p SRM -e 168 -c 42 -i 132 -a 42 r -t 261.87311471130005 -s 11 -d 14 -p SRM -e 168 -c 42 -i 132 -a 42 r -t 261.88445871130006 -s 10 -d 12 -p SRM -e 168 -c 42 -i 132 -a 42 + -t 262.19951931932002 -s 14 -d 11 -p SRM -e 168 -c 42 -i 133 -a 42 - -t 262.19951931932002 -s 14 -d 11 -p SRM -e 168 -c 42 -i 133 -a 42 h -t 262.19951931932002 -s 14 -d 11 -p SRM -e 168 -c 42 -i 133 -a 42 r -t 262.21086331932003 -s 14 -d 11 -p SRM -e 168 -c 42 -i 133 -a 42 + -t 262.21086331932003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 133 -a 42 - -t 262.21086331932003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 133 -a 42 h -t 262.21086331932003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 133 -a 42 + -t 262.21086331932003 -s 11 -d 13 -p SRM -e 168 -c 42 -i 133 -a 42 - -t 262.21086331932003 -s 11 -d 13 -p SRM -e 168 -c 42 -i 133 -a 42 h -t 262.21086331932003 -s 11 -d 13 -p SRM -e 168 -c 42 -i 133 -a 42 r -t 262.22220731932003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 133 -a 42 + -t 262.22220731932003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 133 -a 42 - -t 262.22220731932003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 133 -a 42 h -t 262.22220731932003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 133 -a 42 r -t 262.22220731932003 -s 11 -d 13 -p SRM -e 168 -c 42 -i 133 -a 42 + -t 262.22220731932003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 133 -a 42 - -t 262.22220731932003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 133 -a 42 h -t 262.22220731932003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 133 -a 42 + -t 262.22220731932003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 133 -a 42 - -t 262.22220731932003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 133 -a 42 h -t 262.22220731932003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 133 -a 42 r -t 262.23355131932004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 133 -a 42 r -t 262.23355131932004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 133 -a 42 r -t 262.23355131932004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 133 -a 42 + -t 262.23355131932004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 133 -a 42 - -t 262.23355131932004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 133 -a 42 h -t 262.23355131932004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 133 -a 42 + -t 262.23355131932004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 133 -a 42 - -t 262.23355131932004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 133 -a 42 h -t 262.23355131932004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 133 -a 42 r -t 262.24489531932005 -s 16 -d 17 -p SRM -e 168 -c 42 -i 133 -a 42 r -t 262.24489531932005 -s 16 -d 18 -p SRM -e 168 -c 42 -i 133 -a 42 + -t 262.64554390503997 -s 23 -d 21 -p SRM -e 168 -c 42 -i 135 -a 42 - -t 262.64554390503997 -s 23 -d 21 -p SRM -e 168 -c 42 -i 135 -a 42 h -t 262.64554390503997 -s 23 -d 21 -p SRM -e 168 -c 42 -i 135 -a 42 + -t 262.64554390503997 -s 23 -d 25 -p SRM -e 168 -c 42 -i 135 -a 42 - -t 262.64554390503997 -s 23 -d 25 -p SRM -e 168 -c 42 -i 135 -a 42 h -t 262.64554390503997 -s 23 -d 25 -p SRM -e 168 -c 42 -i 135 -a 42 + -t 262.64554390503997 -s 23 -d 26 -p SRM -e 168 -c 42 -i 135 -a 42 - -t 262.64554390503997 -s 23 -d 26 -p SRM -e 168 -c 42 -i 135 -a 42 h -t 262.64554390503997 -s 23 -d 26 -p SRM -e 168 -c 42 -i 135 -a 42 r -t 262.65688790503998 -s 23 -d 21 -p SRM -e 168 -c 42 -i 135 -a 42 + -t 262.65688790503998 -s 21 -d 20 -p SRM -e 168 -c 42 -i 135 -a 42 - -t 262.65688790503998 -s 21 -d 20 -p SRM -e 168 -c 42 -i 135 -a 42 h -t 262.65688790503998 -s 21 -d 20 -p SRM -e 168 -c 42 -i 135 -a 42 + -t 262.65688790503998 -s 21 -d 24 -p SRM -e 168 -c 42 -i 135 -a 42 - -t 262.65688790503998 -s 21 -d 24 -p SRM -e 168 -c 42 -i 135 -a 42 h -t 262.65688790503998 -s 21 -d 24 -p SRM -e 168 -c 42 -i 135 -a 42 r -t 262.65688790503998 -s 23 -d 25 -p SRM -e 168 -c 42 -i 135 -a 42 r -t 262.65688790503998 -s 23 -d 26 -p SRM -e 168 -c 42 -i 135 -a 42 + -t 262.65688790503998 -s 26 -d 27 -p SRM -e 168 -c 42 -i 135 -a 42 - -t 262.65688790503998 -s 26 -d 27 -p SRM -e 168 -c 42 -i 135 -a 42 h -t 262.65688790503998 -s 26 -d 27 -p SRM -e 168 -c 42 -i 135 -a 42 + -t 262.65688790503998 -s 26 -d 28 -p SRM -e 168 -c 42 -i 135 -a 42 - -t 262.65688790503998 -s 26 -d 28 -p SRM -e 168 -c 42 -i 135 -a 42 h -t 262.65688790503998 -s 26 -d 28 -p SRM -e 168 -c 42 -i 135 -a 42 r -t 262.66823190503999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 135 -a 42 + -t 262.66823190503999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 135 -a 42 - -t 262.66823190503999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 135 -a 42 h -t 262.66823190503999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 135 -a 42 r -t 262.66823190503999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 135 -a 42 r -t 262.66823190503999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 135 -a 42 r -t 262.66823190503999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 135 -a 42 r -t 262.67957590504 -s 20 -d 22 -p SRM -e 168 -c 42 -i 135 -a 42 + -t 262.85292609611997 -s 13 -d 11 -p SRM -e 168 -c 42 -i 134 -a 42 - -t 262.85292609611997 -s 13 -d 11 -p SRM -e 168 -c 42 -i 134 -a 42 h -t 262.85292609611997 -s 13 -d 11 -p SRM -e 168 -c 42 -i 134 -a 42 + -t 262.85292609611997 -s 13 -d 15 -p SRM -e 168 -c 42 -i 134 -a 42 - -t 262.85292609611997 -s 13 -d 15 -p SRM -e 168 -c 42 -i 134 -a 42 h -t 262.85292609611997 -s 13 -d 15 -p SRM -e 168 -c 42 -i 134 -a 42 + -t 262.85292609611997 -s 13 -d 16 -p SRM -e 168 -c 42 -i 134 -a 42 - -t 262.85292609611997 -s 13 -d 16 -p SRM -e 168 -c 42 -i 134 -a 42 h -t 262.85292609611997 -s 13 -d 16 -p SRM -e 168 -c 42 -i 134 -a 42 r -t 262.86427009611998 -s 13 -d 11 -p SRM -e 168 -c 42 -i 134 -a 42 + -t 262.86427009611998 -s 11 -d 10 -p SRM -e 168 -c 42 -i 134 -a 42 - -t 262.86427009611998 -s 11 -d 10 -p SRM -e 168 -c 42 -i 134 -a 42 h -t 262.86427009611998 -s 11 -d 10 -p SRM -e 168 -c 42 -i 134 -a 42 + -t 262.86427009611998 -s 11 -d 14 -p SRM -e 168 -c 42 -i 134 -a 42 - -t 262.86427009611998 -s 11 -d 14 -p SRM -e 168 -c 42 -i 134 -a 42 h -t 262.86427009611998 -s 11 -d 14 -p SRM -e 168 -c 42 -i 134 -a 42 r -t 262.86427009611998 -s 13 -d 15 -p SRM -e 168 -c 42 -i 134 -a 42 r -t 262.86427009611998 -s 13 -d 16 -p SRM -e 168 -c 42 -i 134 -a 42 + -t 262.86427009611998 -s 16 -d 17 -p SRM -e 168 -c 42 -i 134 -a 42 - -t 262.86427009611998 -s 16 -d 17 -p SRM -e 168 -c 42 -i 134 -a 42 h -t 262.86427009611998 -s 16 -d 17 -p SRM -e 168 -c 42 -i 134 -a 42 + -t 262.86427009611998 -s 16 -d 18 -p SRM -e 168 -c 42 -i 134 -a 42 - -t 262.86427009611998 -s 16 -d 18 -p SRM -e 168 -c 42 -i 134 -a 42 h -t 262.86427009611998 -s 16 -d 18 -p SRM -e 168 -c 42 -i 134 -a 42 r -t 262.87561409611999 -s 11 -d 10 -p SRM -e 168 -c 42 -i 134 -a 42 + -t 262.87561409611999 -s 10 -d 12 -p SRM -e 168 -c 42 -i 134 -a 42 - -t 262.87561409611999 -s 10 -d 12 -p SRM -e 168 -c 42 -i 134 -a 42 h -t 262.87561409611999 -s 10 -d 12 -p SRM -e 168 -c 42 -i 134 -a 42 r -t 262.87561409611999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 134 -a 42 r -t 262.87561409611999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 134 -a 42 r -t 262.87561409611999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 134 -a 42 r -t 262.88695809612 -s 10 -d 12 -p SRM -e 168 -c 42 -i 134 -a 42 + -t 263.38919124979998 -s 22 -d 20 -p SRM -e 168 -c 42 -i 136 -a 42 - -t 263.38919124979998 -s 22 -d 20 -p SRM -e 168 -c 42 -i 136 -a 42 h -t 263.38919124979998 -s 22 -d 20 -p SRM -e 168 -c 42 -i 136 -a 42 r -t 263.40053524979999 -s 22 -d 20 -p SRM -e 168 -c 42 -i 136 -a 42 + -t 263.40053524979999 -s 20 -d 21 -p SRM -e 168 -c 42 -i 136 -a 42 - -t 263.40053524979999 -s 20 -d 21 -p SRM -e 168 -c 42 -i 136 -a 42 h -t 263.40053524979999 -s 20 -d 21 -p SRM -e 168 -c 42 -i 136 -a 42 r -t 263.41187924979999 -s 20 -d 21 -p SRM -e 168 -c 42 -i 136 -a 42 + -t 263.41187924979999 -s 21 -d 23 -p SRM -e 168 -c 42 -i 136 -a 42 - -t 263.41187924979999 -s 21 -d 23 -p SRM -e 168 -c 42 -i 136 -a 42 h -t 263.41187924979999 -s 21 -d 23 -p SRM -e 168 -c 42 -i 136 -a 42 + -t 263.41187924979999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 136 -a 42 - -t 263.41187924979999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 136 -a 42 h -t 263.41187924979999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 136 -a 42 r -t 263.4232232498 -s 21 -d 23 -p SRM -e 168 -c 42 -i 136 -a 42 + -t 263.4232232498 -s 23 -d 25 -p SRM -e 168 -c 42 -i 136 -a 42 - -t 263.4232232498 -s 23 -d 25 -p SRM -e 168 -c 42 -i 136 -a 42 h -t 263.4232232498 -s 23 -d 25 -p SRM -e 168 -c 42 -i 136 -a 42 + -t 263.4232232498 -s 23 -d 26 -p SRM -e 168 -c 42 -i 136 -a 42 - -t 263.4232232498 -s 23 -d 26 -p SRM -e 168 -c 42 -i 136 -a 42 h -t 263.4232232498 -s 23 -d 26 -p SRM -e 168 -c 42 -i 136 -a 42 r -t 263.4232232498 -s 21 -d 24 -p SRM -e 168 -c 42 -i 136 -a 42 r -t 263.43456724980001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 136 -a 42 r -t 263.43456724980001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 136 -a 42 + -t 263.43456724980001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 136 -a 42 - -t 263.43456724980001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 136 -a 42 h -t 263.43456724980001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 136 -a 42 + -t 263.43456724980001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 136 -a 42 - -t 263.43456724980001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 136 -a 42 h -t 263.43456724980001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 136 -a 42 r -t 263.44591124980002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 136 -a 42 r -t 263.44591124980002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 136 -a 42 + -t 264.45410626099999 -s 11 -d 10 -p SRM -e 168 -c 42 -i 135 -a 42 - -t 264.45410626099999 -s 11 -d 10 -p SRM -e 168 -c 42 -i 135 -a 42 h -t 264.45410626099999 -s 11 -d 10 -p SRM -e 168 -c 42 -i 135 -a 42 + -t 264.45410626099999 -s 11 -d 13 -p SRM -e 168 -c 42 -i 135 -a 42 - -t 264.45410626099999 -s 11 -d 13 -p SRM -e 168 -c 42 -i 135 -a 42 h -t 264.45410626099999 -s 11 -d 13 -p SRM -e 168 -c 42 -i 135 -a 42 + -t 264.45410626099999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 135 -a 42 - -t 264.45410626099999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 135 -a 42 h -t 264.45410626099999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 135 -a 42 r -t 264.465450261 -s 11 -d 10 -p SRM -e 168 -c 42 -i 135 -a 42 + -t 264.465450261 -s 10 -d 12 -p SRM -e 168 -c 42 -i 135 -a 42 - -t 264.465450261 -s 10 -d 12 -p SRM -e 168 -c 42 -i 135 -a 42 h -t 264.465450261 -s 10 -d 12 -p SRM -e 168 -c 42 -i 135 -a 42 r -t 264.465450261 -s 11 -d 13 -p SRM -e 168 -c 42 -i 135 -a 42 + -t 264.465450261 -s 13 -d 15 -p SRM -e 168 -c 42 -i 135 -a 42 - -t 264.465450261 -s 13 -d 15 -p SRM -e 168 -c 42 -i 135 -a 42 h -t 264.465450261 -s 13 -d 15 -p SRM -e 168 -c 42 -i 135 -a 42 + -t 264.465450261 -s 13 -d 16 -p SRM -e 168 -c 42 -i 135 -a 42 - -t 264.465450261 -s 13 -d 16 -p SRM -e 168 -c 42 -i 135 -a 42 h -t 264.465450261 -s 13 -d 16 -p SRM -e 168 -c 42 -i 135 -a 42 r -t 264.465450261 -s 11 -d 14 -p SRM -e 168 -c 42 -i 135 -a 42 r -t 264.47679426100001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 135 -a 42 r -t 264.47679426100001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 135 -a 42 r -t 264.47679426100001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 135 -a 42 + -t 264.47679426100001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 135 -a 42 - -t 264.47679426100001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 135 -a 42 h -t 264.47679426100001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 135 -a 42 + -t 264.47679426100001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 135 -a 42 - -t 264.47679426100001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 135 -a 42 h -t 264.47679426100001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 135 -a 42 r -t 264.48813826100002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 135 -a 42 r -t 264.48813826100002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 135 -a 42 + -t 265.11388031887998 -s 21 -d 20 -p SRM -e 168 -c 42 -i 137 -a 42 - -t 265.11388031887998 -s 21 -d 20 -p SRM -e 168 -c 42 -i 137 -a 42 h -t 265.11388031887998 -s 21 -d 20 -p SRM -e 168 -c 42 -i 137 -a 42 + -t 265.11388031887998 -s 21 -d 23 -p SRM -e 168 -c 42 -i 137 -a 42 - -t 265.11388031887998 -s 21 -d 23 -p SRM -e 168 -c 42 -i 137 -a 42 h -t 265.11388031887998 -s 21 -d 23 -p SRM -e 168 -c 42 -i 137 -a 42 + -t 265.11388031887998 -s 21 -d 24 -p SRM -e 168 -c 42 -i 137 -a 42 - -t 265.11388031887998 -s 21 -d 24 -p SRM -e 168 -c 42 -i 137 -a 42 h -t 265.11388031887998 -s 21 -d 24 -p SRM -e 168 -c 42 -i 137 -a 42 r -t 265.12522431887999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 137 -a 42 + -t 265.12522431887999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 137 -a 42 - -t 265.12522431887999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 137 -a 42 h -t 265.12522431887999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 137 -a 42 r -t 265.12522431887999 -s 21 -d 23 -p SRM -e 168 -c 42 -i 137 -a 42 + -t 265.12522431887999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 137 -a 42 - -t 265.12522431887999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 137 -a 42 h -t 265.12522431887999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 137 -a 42 + -t 265.12522431887999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 137 -a 42 - -t 265.12522431887999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 137 -a 42 h -t 265.12522431887999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 137 -a 42 r -t 265.12522431887999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 137 -a 42 r -t 265.13656831887999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 137 -a 42 r -t 265.13656831887999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 137 -a 42 r -t 265.13656831887999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 137 -a 42 + -t 265.13656831887999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 137 -a 42 - -t 265.13656831887999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 137 -a 42 h -t 265.13656831887999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 137 -a 42 + -t 265.13656831887999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 137 -a 42 - -t 265.13656831887999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 137 -a 42 h -t 265.13656831887999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 137 -a 42 r -t 265.14791231888 -s 26 -d 27 -p SRM -e 168 -c 42 -i 137 -a 42 r -t 265.14791231888 -s 26 -d 28 -p SRM -e 168 -c 42 -i 137 -a 42 + -t 266.77494519029 -s 28 -d 26 -p SRM -e 168 -c 42 -i 138 -a 42 - -t 266.77494519029 -s 28 -d 26 -p SRM -e 168 -c 42 -i 138 -a 42 h -t 266.77494519029 -s 28 -d 26 -p SRM -e 168 -c 42 -i 138 -a 42 r -t 266.78628919029001 -s 28 -d 26 -p SRM -e 168 -c 42 -i 138 -a 42 + -t 266.78628919029001 -s 26 -d 23 -p SRM -e 168 -c 42 -i 138 -a 42 - -t 266.78628919029001 -s 26 -d 23 -p SRM -e 168 -c 42 -i 138 -a 42 h -t 266.78628919029001 -s 26 -d 23 -p SRM -e 168 -c 42 -i 138 -a 42 + -t 266.78628919029001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 138 -a 42 - -t 266.78628919029001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 138 -a 42 h -t 266.78628919029001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 138 -a 42 r -t 266.79763319029001 -s 26 -d 23 -p SRM -e 168 -c 42 -i 138 -a 42 + -t 266.79763319029001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 138 -a 42 - -t 266.79763319029001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 138 -a 42 h -t 266.79763319029001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 138 -a 42 + -t 266.79763319029001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 138 -a 42 - -t 266.79763319029001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 138 -a 42 h -t 266.79763319029001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 138 -a 42 r -t 266.79763319029001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 138 -a 42 r -t 266.80897719029002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 138 -a 42 + -t 266.80897719029002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 138 -a 42 - -t 266.80897719029002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 138 -a 42 h -t 266.80897719029002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 138 -a 42 + -t 266.80897719029002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 138 -a 42 - -t 266.80897719029002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 138 -a 42 h -t 266.80897719029002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 138 -a 42 r -t 266.80897719029002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 138 -a 42 r -t 266.82032119029003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 138 -a 42 + -t 266.82032119029003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 138 -a 42 - -t 266.82032119029003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 138 -a 42 h -t 266.82032119029003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 138 -a 42 r -t 266.82032119029003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 138 -a 42 r -t 266.83166519029004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 138 -a 42 + -t 267.11061101807002 -s 18 -d 16 -p SRM -e 168 -c 42 -i 136 -a 42 - -t 267.11061101807002 -s 18 -d 16 -p SRM -e 168 -c 42 -i 136 -a 42 h -t 267.11061101807002 -s 18 -d 16 -p SRM -e 168 -c 42 -i 136 -a 42 r -t 267.12195501807003 -s 18 -d 16 -p SRM -e 168 -c 42 -i 136 -a 42 + -t 267.12195501807003 -s 16 -d 13 -p SRM -e 168 -c 42 -i 136 -a 42 - -t 267.12195501807003 -s 16 -d 13 -p SRM -e 168 -c 42 -i 136 -a 42 h -t 267.12195501807003 -s 16 -d 13 -p SRM -e 168 -c 42 -i 136 -a 42 + -t 267.12195501807003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 136 -a 42 - -t 267.12195501807003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 136 -a 42 h -t 267.12195501807003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 136 -a 42 r -t 267.13329901807003 -s 16 -d 13 -p SRM -e 168 -c 42 -i 136 -a 42 + -t 267.13329901807003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 136 -a 42 - -t 267.13329901807003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 136 -a 42 h -t 267.13329901807003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 136 -a 42 + -t 267.13329901807003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 136 -a 42 - -t 267.13329901807003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 136 -a 42 h -t 267.13329901807003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 136 -a 42 r -t 267.13329901807003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 136 -a 42 r -t 267.14464301807004 -s 13 -d 11 -p SRM -e 168 -c 42 -i 136 -a 42 + -t 267.14464301807004 -s 11 -d 10 -p SRM -e 168 -c 42 -i 136 -a 42 - -t 267.14464301807004 -s 11 -d 10 -p SRM -e 168 -c 42 -i 136 -a 42 h -t 267.14464301807004 -s 11 -d 10 -p SRM -e 168 -c 42 -i 136 -a 42 + -t 267.14464301807004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 136 -a 42 - -t 267.14464301807004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 136 -a 42 h -t 267.14464301807004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 136 -a 42 r -t 267.14464301807004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 136 -a 42 r -t 267.15598701807005 -s 11 -d 10 -p SRM -e 168 -c 42 -i 136 -a 42 + -t 267.15598701807005 -s 10 -d 12 -p SRM -e 168 -c 42 -i 136 -a 42 - -t 267.15598701807005 -s 10 -d 12 -p SRM -e 168 -c 42 -i 136 -a 42 h -t 267.15598701807005 -s 10 -d 12 -p SRM -e 168 -c 42 -i 136 -a 42 r -t 267.15598701807005 -s 11 -d 14 -p SRM -e 168 -c 42 -i 136 -a 42 r -t 267.16733101807006 -s 10 -d 12 -p SRM -e 168 -c 42 -i 136 -a 42 + -t 274.43840946161998 -s 25 -d 23 -p SRM -e 168 -c 42 -i 139 -a 42 - -t 274.43840946161998 -s 25 -d 23 -p SRM -e 168 -c 42 -i 139 -a 42 h -t 274.43840946161998 -s 25 -d 23 -p SRM -e 168 -c 42 -i 139 -a 42 r -t 274.44975346161999 -s 25 -d 23 -p SRM -e 168 -c 42 -i 139 -a 42 + -t 274.44975346161999 -s 23 -d 21 -p SRM -e 168 -c 42 -i 139 -a 42 - -t 274.44975346161999 -s 23 -d 21 -p SRM -e 168 -c 42 -i 139 -a 42 h -t 274.44975346161999 -s 23 -d 21 -p SRM -e 168 -c 42 -i 139 -a 42 + -t 274.44975346161999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 139 -a 42 - -t 274.44975346161999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 139 -a 42 h -t 274.44975346161999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 139 -a 42 r -t 274.46109746162 -s 23 -d 21 -p SRM -e 168 -c 42 -i 139 -a 42 + -t 274.46109746162 -s 21 -d 20 -p SRM -e 168 -c 42 -i 139 -a 42 - -t 274.46109746162 -s 21 -d 20 -p SRM -e 168 -c 42 -i 139 -a 42 h -t 274.46109746162 -s 21 -d 20 -p SRM -e 168 -c 42 -i 139 -a 42 + -t 274.46109746162 -s 21 -d 24 -p SRM -e 168 -c 42 -i 139 -a 42 - -t 274.46109746162 -s 21 -d 24 -p SRM -e 168 -c 42 -i 139 -a 42 h -t 274.46109746162 -s 21 -d 24 -p SRM -e 168 -c 42 -i 139 -a 42 r -t 274.46109746162 -s 23 -d 26 -p SRM -e 168 -c 42 -i 139 -a 42 + -t 274.46109746162 -s 26 -d 27 -p SRM -e 168 -c 42 -i 139 -a 42 - -t 274.46109746162 -s 26 -d 27 -p SRM -e 168 -c 42 -i 139 -a 42 h -t 274.46109746162 -s 26 -d 27 -p SRM -e 168 -c 42 -i 139 -a 42 + -t 274.46109746162 -s 26 -d 28 -p SRM -e 168 -c 42 -i 139 -a 42 - -t 274.46109746162 -s 26 -d 28 -p SRM -e 168 -c 42 -i 139 -a 42 h -t 274.46109746162 -s 26 -d 28 -p SRM -e 168 -c 42 -i 139 -a 42 r -t 274.47244146162001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 139 -a 42 + -t 274.47244146162001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 139 -a 42 - -t 274.47244146162001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 139 -a 42 h -t 274.47244146162001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 139 -a 42 r -t 274.47244146162001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 139 -a 42 r -t 274.47244146162001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 139 -a 42 r -t 274.47244146162001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 139 -a 42 r -t 274.48378546162002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 139 -a 42 + -t 277.18430499763002 -s 16 -d 13 -p SRM -e 168 -c 42 -i 137 -a 42 - -t 277.18430499763002 -s 16 -d 13 -p SRM -e 168 -c 42 -i 137 -a 42 h -t 277.18430499763002 -s 16 -d 13 -p SRM -e 168 -c 42 -i 137 -a 42 + -t 277.18430499763002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 137 -a 42 - -t 277.18430499763002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 137 -a 42 h -t 277.18430499763002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 137 -a 42 + -t 277.18430499763002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 137 -a 42 - -t 277.18430499763002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 137 -a 42 h -t 277.18430499763002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 137 -a 42 r -t 277.19564899763003 -s 16 -d 13 -p SRM -e 168 -c 42 -i 137 -a 42 + -t 277.19564899763003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 137 -a 42 - -t 277.19564899763003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 137 -a 42 h -t 277.19564899763003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 137 -a 42 + -t 277.19564899763003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 137 -a 42 - -t 277.19564899763003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 137 -a 42 h -t 277.19564899763003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 137 -a 42 r -t 277.19564899763003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 137 -a 42 r -t 277.19564899763003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 137 -a 42 r -t 277.20699299763004 -s 13 -d 11 -p SRM -e 168 -c 42 -i 137 -a 42 + -t 277.20699299763004 -s 11 -d 10 -p SRM -e 168 -c 42 -i 137 -a 42 - -t 277.20699299763004 -s 11 -d 10 -p SRM -e 168 -c 42 -i 137 -a 42 h -t 277.20699299763004 -s 11 -d 10 -p SRM -e 168 -c 42 -i 137 -a 42 + -t 277.20699299763004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 137 -a 42 - -t 277.20699299763004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 137 -a 42 h -t 277.20699299763004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 137 -a 42 r -t 277.20699299763004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 137 -a 42 r -t 277.21833699763005 -s 11 -d 10 -p SRM -e 168 -c 42 -i 137 -a 42 + -t 277.21833699763005 -s 10 -d 12 -p SRM -e 168 -c 42 -i 137 -a 42 - -t 277.21833699763005 -s 10 -d 12 -p SRM -e 168 -c 42 -i 137 -a 42 h -t 277.21833699763005 -s 10 -d 12 -p SRM -e 168 -c 42 -i 137 -a 42 r -t 277.21833699763005 -s 11 -d 14 -p SRM -e 168 -c 42 -i 137 -a 42 r -t 277.22968099763006 -s 10 -d 12 -p SRM -e 168 -c 42 -i 137 -a 42 + -t 277.29239464774997 -s 12 -d 10 -p SRM -e 168 -c 42 -i 138 -a 42 - -t 277.29239464774997 -s 12 -d 10 -p SRM -e 168 -c 42 -i 138 -a 42 h -t 277.29239464774997 -s 12 -d 10 -p SRM -e 168 -c 42 -i 138 -a 42 r -t 277.30373864774998 -s 12 -d 10 -p SRM -e 168 -c 42 -i 138 -a 42 + -t 277.30373864774998 -s 10 -d 11 -p SRM -e 168 -c 42 -i 138 -a 42 - -t 277.30373864774998 -s 10 -d 11 -p SRM -e 168 -c 42 -i 138 -a 42 h -t 277.30373864774998 -s 10 -d 11 -p SRM -e 168 -c 42 -i 138 -a 42 r -t 277.31508264774999 -s 10 -d 11 -p SRM -e 168 -c 42 -i 138 -a 42 + -t 277.31508264774999 -s 11 -d 13 -p SRM -e 168 -c 42 -i 138 -a 42 - -t 277.31508264774999 -s 11 -d 13 -p SRM -e 168 -c 42 -i 138 -a 42 h -t 277.31508264774999 -s 11 -d 13 -p SRM -e 168 -c 42 -i 138 -a 42 + -t 277.31508264774999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 138 -a 42 - -t 277.31508264774999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 138 -a 42 h -t 277.31508264774999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 138 -a 42 r -t 277.32642664775 -s 11 -d 13 -p SRM -e 168 -c 42 -i 138 -a 42 + -t 277.32642664775 -s 13 -d 15 -p SRM -e 168 -c 42 -i 138 -a 42 - -t 277.32642664775 -s 13 -d 15 -p SRM -e 168 -c 42 -i 138 -a 42 h -t 277.32642664775 -s 13 -d 15 -p SRM -e 168 -c 42 -i 138 -a 42 + -t 277.32642664775 -s 13 -d 16 -p SRM -e 168 -c 42 -i 138 -a 42 - -t 277.32642664775 -s 13 -d 16 -p SRM -e 168 -c 42 -i 138 -a 42 h -t 277.32642664775 -s 13 -d 16 -p SRM -e 168 -c 42 -i 138 -a 42 r -t 277.32642664775 -s 11 -d 14 -p SRM -e 168 -c 42 -i 138 -a 42 r -t 277.33777064775001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 138 -a 42 r -t 277.33777064775001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 138 -a 42 + -t 277.33777064775001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 138 -a 42 - -t 277.33777064775001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 138 -a 42 h -t 277.33777064775001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 138 -a 42 + -t 277.33777064775001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 138 -a 42 - -t 277.33777064775001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 138 -a 42 h -t 277.33777064775001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 138 -a 42 r -t 277.34911464775001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 138 -a 42 r -t 277.34911464775001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 138 -a 42 + -t 277.69551569279002 -s 24 -d 21 -p SRM -e 168 -c 42 -i 140 -a 42 - -t 277.69551569279002 -s 24 -d 21 -p SRM -e 168 -c 42 -i 140 -a 42 h -t 277.69551569279002 -s 24 -d 21 -p SRM -e 168 -c 42 -i 140 -a 42 r -t 277.70685969279003 -s 24 -d 21 -p SRM -e 168 -c 42 -i 140 -a 42 + -t 277.70685969279003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 140 -a 42 - -t 277.70685969279003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 140 -a 42 h -t 277.70685969279003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 140 -a 42 + -t 277.70685969279003 -s 21 -d 23 -p SRM -e 168 -c 42 -i 140 -a 42 - -t 277.70685969279003 -s 21 -d 23 -p SRM -e 168 -c 42 -i 140 -a 42 h -t 277.70685969279003 -s 21 -d 23 -p SRM -e 168 -c 42 -i 140 -a 42 r -t 277.71820369279004 -s 21 -d 20 -p SRM -e 168 -c 42 -i 140 -a 42 + -t 277.71820369279004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 140 -a 42 - -t 277.71820369279004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 140 -a 42 h -t 277.71820369279004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 140 -a 42 r -t 277.71820369279004 -s 21 -d 23 -p SRM -e 168 -c 42 -i 140 -a 42 + -t 277.71820369279004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 140 -a 42 - -t 277.71820369279004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 140 -a 42 h -t 277.71820369279004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 140 -a 42 + -t 277.71820369279004 -s 23 -d 26 -p SRM -e 168 -c 42 -i 140 -a 42 - -t 277.71820369279004 -s 23 -d 26 -p SRM -e 168 -c 42 -i 140 -a 42 h -t 277.71820369279004 -s 23 -d 26 -p SRM -e 168 -c 42 -i 140 -a 42 r -t 277.72954769279005 -s 20 -d 22 -p SRM -e 168 -c 42 -i 140 -a 42 r -t 277.72954769279005 -s 23 -d 25 -p SRM -e 168 -c 42 -i 140 -a 42 r -t 277.72954769279005 -s 23 -d 26 -p SRM -e 168 -c 42 -i 140 -a 42 + -t 277.72954769279005 -s 26 -d 27 -p SRM -e 168 -c 42 -i 140 -a 42 - -t 277.72954769279005 -s 26 -d 27 -p SRM -e 168 -c 42 -i 140 -a 42 h -t 277.72954769279005 -s 26 -d 27 -p SRM -e 168 -c 42 -i 140 -a 42 + -t 277.72954769279005 -s 26 -d 28 -p SRM -e 168 -c 42 -i 140 -a 42 - -t 277.72954769279005 -s 26 -d 28 -p SRM -e 168 -c 42 -i 140 -a 42 h -t 277.72954769279005 -s 26 -d 28 -p SRM -e 168 -c 42 -i 140 -a 42 r -t 277.74089169279006 -s 26 -d 27 -p SRM -e 168 -c 42 -i 140 -a 42 r -t 277.74089169279006 -s 26 -d 28 -p SRM -e 168 -c 42 -i 140 -a 42 + -t 278.19842048255998 -s 15 -d 13 -p SRM -e 168 -c 42 -i 139 -a 42 - -t 278.19842048255998 -s 15 -d 13 -p SRM -e 168 -c 42 -i 139 -a 42 h -t 278.19842048255998 -s 15 -d 13 -p SRM -e 168 -c 42 -i 139 -a 42 r -t 278.20976448255999 -s 15 -d 13 -p SRM -e 168 -c 42 -i 139 -a 42 + -t 278.20976448255999 -s 13 -d 11 -p SRM -e 168 -c 42 -i 139 -a 42 - -t 278.20976448255999 -s 13 -d 11 -p SRM -e 168 -c 42 -i 139 -a 42 h -t 278.20976448255999 -s 13 -d 11 -p SRM -e 168 -c 42 -i 139 -a 42 + -t 278.20976448255999 -s 13 -d 16 -p SRM -e 168 -c 42 -i 139 -a 42 - -t 278.20976448255999 -s 13 -d 16 -p SRM -e 168 -c 42 -i 139 -a 42 h -t 278.20976448255999 -s 13 -d 16 -p SRM -e 168 -c 42 -i 139 -a 42 r -t 278.22110848256 -s 13 -d 11 -p SRM -e 168 -c 42 -i 139 -a 42 + -t 278.22110848256 -s 11 -d 10 -p SRM -e 168 -c 42 -i 139 -a 42 - -t 278.22110848256 -s 11 -d 10 -p SRM -e 168 -c 42 -i 139 -a 42 h -t 278.22110848256 -s 11 -d 10 -p SRM -e 168 -c 42 -i 139 -a 42 + -t 278.22110848256 -s 11 -d 14 -p SRM -e 168 -c 42 -i 139 -a 42 - -t 278.22110848256 -s 11 -d 14 -p SRM -e 168 -c 42 -i 139 -a 42 h -t 278.22110848256 -s 11 -d 14 -p SRM -e 168 -c 42 -i 139 -a 42 r -t 278.22110848256 -s 13 -d 16 -p SRM -e 168 -c 42 -i 139 -a 42 + -t 278.22110848256 -s 16 -d 17 -p SRM -e 168 -c 42 -i 139 -a 42 - -t 278.22110848256 -s 16 -d 17 -p SRM -e 168 -c 42 -i 139 -a 42 h -t 278.22110848256 -s 16 -d 17 -p SRM -e 168 -c 42 -i 139 -a 42 + -t 278.22110848256 -s 16 -d 18 -p SRM -e 168 -c 42 -i 139 -a 42 - -t 278.22110848256 -s 16 -d 18 -p SRM -e 168 -c 42 -i 139 -a 42 h -t 278.22110848256 -s 16 -d 18 -p SRM -e 168 -c 42 -i 139 -a 42 r -t 278.23245248256001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 139 -a 42 + -t 278.23245248256001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 139 -a 42 - -t 278.23245248256001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 139 -a 42 h -t 278.23245248256001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 139 -a 42 r -t 278.23245248256001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 139 -a 42 r -t 278.23245248256001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 139 -a 42 r -t 278.23245248256001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 139 -a 42 r -t 278.24379648256001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 139 -a 42 + -t 279.95804602813001 -s 26 -d 23 -p SRM -e 168 -c 42 -i 141 -a 42 - -t 279.95804602813001 -s 26 -d 23 -p SRM -e 168 -c 42 -i 141 -a 42 h -t 279.95804602813001 -s 26 -d 23 -p SRM -e 168 -c 42 -i 141 -a 42 + -t 279.95804602813001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 141 -a 42 - -t 279.95804602813001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 141 -a 42 h -t 279.95804602813001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 141 -a 42 + -t 279.95804602813001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 141 -a 42 - -t 279.95804602813001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 141 -a 42 h -t 279.95804602813001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 141 -a 42 r -t 279.96939002813002 -s 26 -d 23 -p SRM -e 168 -c 42 -i 141 -a 42 + -t 279.96939002813002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 141 -a 42 - -t 279.96939002813002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 141 -a 42 h -t 279.96939002813002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 141 -a 42 + -t 279.96939002813002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 141 -a 42 - -t 279.96939002813002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 141 -a 42 h -t 279.96939002813002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 141 -a 42 r -t 279.96939002813002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 141 -a 42 r -t 279.96939002813002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 141 -a 42 r -t 279.98073402813003 -s 23 -d 21 -p SRM -e 168 -c 42 -i 141 -a 42 + -t 279.98073402813003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 141 -a 42 - -t 279.98073402813003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 141 -a 42 h -t 279.98073402813003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 141 -a 42 + -t 279.98073402813003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 141 -a 42 - -t 279.98073402813003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 141 -a 42 h -t 279.98073402813003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 141 -a 42 r -t 279.98073402813003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 141 -a 42 r -t 279.99207802813004 -s 21 -d 20 -p SRM -e 168 -c 42 -i 141 -a 42 + -t 279.99207802813004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 141 -a 42 - -t 279.99207802813004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 141 -a 42 h -t 279.99207802813004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 141 -a 42 r -t 279.99207802813004 -s 21 -d 24 -p SRM -e 168 -c 42 -i 141 -a 42 r -t 280.00342202813005 -s 20 -d 22 -p SRM -e 168 -c 42 -i 141 -a 42 + -t 281.13363424160002 -s 10 -d 11 -p SRM -e 168 -c 42 -i 140 -a 42 - -t 281.13363424160002 -s 10 -d 11 -p SRM -e 168 -c 42 -i 140 -a 42 h -t 281.13363424160002 -s 10 -d 11 -p SRM -e 168 -c 42 -i 140 -a 42 + -t 281.13363424160002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 140 -a 42 - -t 281.13363424160002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 140 -a 42 h -t 281.13363424160002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 140 -a 42 r -t 281.14497824160003 -s 10 -d 11 -p SRM -e 168 -c 42 -i 140 -a 42 + -t 281.14497824160003 -s 11 -d 13 -p SRM -e 168 -c 42 -i 140 -a 42 - -t 281.14497824160003 -s 11 -d 13 -p SRM -e 168 -c 42 -i 140 -a 42 h -t 281.14497824160003 -s 11 -d 13 -p SRM -e 168 -c 42 -i 140 -a 42 + -t 281.14497824160003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 140 -a 42 - -t 281.14497824160003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 140 -a 42 h -t 281.14497824160003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 140 -a 42 r -t 281.14497824160003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 140 -a 42 r -t 281.15632224160004 -s 11 -d 13 -p SRM -e 168 -c 42 -i 140 -a 42 + -t 281.15632224160004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 140 -a 42 - -t 281.15632224160004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 140 -a 42 h -t 281.15632224160004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 140 -a 42 + -t 281.15632224160004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 140 -a 42 - -t 281.15632224160004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 140 -a 42 h -t 281.15632224160004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 140 -a 42 r -t 281.15632224160004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 140 -a 42 r -t 281.16766624160005 -s 13 -d 15 -p SRM -e 168 -c 42 -i 140 -a 42 r -t 281.16766624160005 -s 13 -d 16 -p SRM -e 168 -c 42 -i 140 -a 42 + -t 281.16766624160005 -s 16 -d 17 -p SRM -e 168 -c 42 -i 140 -a 42 - -t 281.16766624160005 -s 16 -d 17 -p SRM -e 168 -c 42 -i 140 -a 42 h -t 281.16766624160005 -s 16 -d 17 -p SRM -e 168 -c 42 -i 140 -a 42 + -t 281.16766624160005 -s 16 -d 18 -p SRM -e 168 -c 42 -i 140 -a 42 - -t 281.16766624160005 -s 16 -d 18 -p SRM -e 168 -c 42 -i 140 -a 42 h -t 281.16766624160005 -s 16 -d 18 -p SRM -e 168 -c 42 -i 140 -a 42 r -t 281.17901024160005 -s 16 -d 17 -p SRM -e 168 -c 42 -i 140 -a 42 r -t 281.17901024160005 -s 16 -d 18 -p SRM -e 168 -c 42 -i 140 -a 42 + -t 281.31047510393 -s 20 -d 21 -p SRM -e 168 -c 42 -i 142 -a 42 - -t 281.31047510393 -s 20 -d 21 -p SRM -e 168 -c 42 -i 142 -a 42 h -t 281.31047510393 -s 20 -d 21 -p SRM -e 168 -c 42 -i 142 -a 42 + -t 281.31047510393 -s 20 -d 22 -p SRM -e 168 -c 42 -i 142 -a 42 - -t 281.31047510393 -s 20 -d 22 -p SRM -e 168 -c 42 -i 142 -a 42 h -t 281.31047510393 -s 20 -d 22 -p SRM -e 168 -c 42 -i 142 -a 42 r -t 281.32181910393001 -s 20 -d 21 -p SRM -e 168 -c 42 -i 142 -a 42 + -t 281.32181910393001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 142 -a 42 - -t 281.32181910393001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 142 -a 42 h -t 281.32181910393001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 142 -a 42 + -t 281.32181910393001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 142 -a 42 - -t 281.32181910393001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 142 -a 42 h -t 281.32181910393001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 142 -a 42 r -t 281.32181910393001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 142 -a 42 r -t 281.33316310393002 -s 21 -d 23 -p SRM -e 168 -c 42 -i 142 -a 42 + -t 281.33316310393002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 142 -a 42 - -t 281.33316310393002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 142 -a 42 h -t 281.33316310393002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 142 -a 42 + -t 281.33316310393002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 142 -a 42 - -t 281.33316310393002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 142 -a 42 h -t 281.33316310393002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 142 -a 42 r -t 281.33316310393002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 142 -a 42 r -t 281.34450710393003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 142 -a 42 r -t 281.34450710393003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 142 -a 42 + -t 281.34450710393003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 142 -a 42 - -t 281.34450710393003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 142 -a 42 h -t 281.34450710393003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 142 -a 42 + -t 281.34450710393003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 142 -a 42 - -t 281.34450710393003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 142 -a 42 h -t 281.34450710393003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 142 -a 42 r -t 281.35585110393004 -s 26 -d 27 -p SRM -e 168 -c 42 -i 142 -a 42 r -t 281.35585110393004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 142 -a 42 + -t 281.95684060150001 -s 14 -d 11 -p SRM -e 168 -c 42 -i 141 -a 42 - -t 281.95684060150001 -s 14 -d 11 -p SRM -e 168 -c 42 -i 141 -a 42 h -t 281.95684060150001 -s 14 -d 11 -p SRM -e 168 -c 42 -i 141 -a 42 r -t 281.96818460150001 -s 14 -d 11 -p SRM -e 168 -c 42 -i 141 -a 42 + -t 281.96818460150001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 141 -a 42 - -t 281.96818460150001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 141 -a 42 h -t 281.96818460150001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 141 -a 42 + -t 281.96818460150001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 141 -a 42 - -t 281.96818460150001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 141 -a 42 h -t 281.96818460150001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 141 -a 42 r -t 281.97952860150002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 141 -a 42 + -t 281.97952860150002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 141 -a 42 - -t 281.97952860150002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 141 -a 42 h -t 281.97952860150002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 141 -a 42 r -t 281.97952860150002 -s 11 -d 13 -p SRM -e 168 -c 42 -i 141 -a 42 + -t 281.97952860150002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 141 -a 42 - -t 281.97952860150002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 141 -a 42 h -t 281.97952860150002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 141 -a 42 + -t 281.97952860150002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 141 -a 42 - -t 281.97952860150002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 141 -a 42 h -t 281.97952860150002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 141 -a 42 r -t 281.99087260150003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 141 -a 42 r -t 281.99087260150003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 141 -a 42 r -t 281.99087260150003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 141 -a 42 + -t 281.99087260150003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 141 -a 42 - -t 281.99087260150003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 141 -a 42 h -t 281.99087260150003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 141 -a 42 + -t 281.99087260150003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 141 -a 42 - -t 281.99087260150003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 141 -a 42 h -t 281.99087260150003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 141 -a 42 r -t 282.00221660150004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 141 -a 42 r -t 282.00221660150004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 141 -a 42 + -t 282.07886907347 -s 27 -d 26 -p SRM -e 168 -c 42 -i 143 -a 42 - -t 282.07886907347 -s 27 -d 26 -p SRM -e 168 -c 42 -i 143 -a 42 h -t 282.07886907347 -s 27 -d 26 -p SRM -e 168 -c 42 -i 143 -a 42 r -t 282.09021307347001 -s 27 -d 26 -p SRM -e 168 -c 42 -i 143 -a 42 + -t 282.09021307347001 -s 26 -d 23 -p SRM -e 168 -c 42 -i 143 -a 42 - -t 282.09021307347001 -s 26 -d 23 -p SRM -e 168 -c 42 -i 143 -a 42 h -t 282.09021307347001 -s 26 -d 23 -p SRM -e 168 -c 42 -i 143 -a 42 + -t 282.09021307347001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 143 -a 42 - -t 282.09021307347001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 143 -a 42 h -t 282.09021307347001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 143 -a 42 r -t 282.10155707347002 -s 26 -d 23 -p SRM -e 168 -c 42 -i 143 -a 42 + -t 282.10155707347002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 143 -a 42 - -t 282.10155707347002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 143 -a 42 h -t 282.10155707347002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 143 -a 42 + -t 282.10155707347002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 143 -a 42 - -t 282.10155707347002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 143 -a 42 h -t 282.10155707347002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 143 -a 42 r -t 282.10155707347002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 143 -a 42 r -t 282.11290107347003 -s 23 -d 21 -p SRM -e 168 -c 42 -i 143 -a 42 + -t 282.11290107347003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 143 -a 42 - -t 282.11290107347003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 143 -a 42 h -t 282.11290107347003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 143 -a 42 + -t 282.11290107347003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 143 -a 42 - -t 282.11290107347003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 143 -a 42 h -t 282.11290107347003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 143 -a 42 r -t 282.11290107347003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 143 -a 42 r -t 282.12424507347004 -s 21 -d 20 -p SRM -e 168 -c 42 -i 143 -a 42 + -t 282.12424507347004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 143 -a 42 - -t 282.12424507347004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 143 -a 42 h -t 282.12424507347004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 143 -a 42 r -t 282.12424507347004 -s 21 -d 24 -p SRM -e 168 -c 42 -i 143 -a 42 r -t 282.13558907347004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 143 -a 42 + -t 282.35869351116003 -s 17 -d 16 -p SRM -e 168 -c 42 -i 142 -a 42 - -t 282.35869351116003 -s 17 -d 16 -p SRM -e 168 -c 42 -i 142 -a 42 h -t 282.35869351116003 -s 17 -d 16 -p SRM -e 168 -c 42 -i 142 -a 42 r -t 282.37003751116004 -s 17 -d 16 -p SRM -e 168 -c 42 -i 142 -a 42 + -t 282.37003751116004 -s 16 -d 13 -p SRM -e 168 -c 42 -i 142 -a 42 - -t 282.37003751116004 -s 16 -d 13 -p SRM -e 168 -c 42 -i 142 -a 42 h -t 282.37003751116004 -s 16 -d 13 -p SRM -e 168 -c 42 -i 142 -a 42 + -t 282.37003751116004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 142 -a 42 - -t 282.37003751116004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 142 -a 42 h -t 282.37003751116004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 142 -a 42 r -t 282.38138151116004 -s 16 -d 13 -p SRM -e 168 -c 42 -i 142 -a 42 + -t 282.38138151116004 -s 13 -d 11 -p SRM -e 168 -c 42 -i 142 -a 42 - -t 282.38138151116004 -s 13 -d 11 -p SRM -e 168 -c 42 -i 142 -a 42 h -t 282.38138151116004 -s 13 -d 11 -p SRM -e 168 -c 42 -i 142 -a 42 + -t 282.38138151116004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 142 -a 42 - -t 282.38138151116004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 142 -a 42 h -t 282.38138151116004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 142 -a 42 r -t 282.38138151116004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 142 -a 42 r -t 282.39272551116005 -s 13 -d 11 -p SRM -e 168 -c 42 -i 142 -a 42 + -t 282.39272551116005 -s 11 -d 10 -p SRM -e 168 -c 42 -i 142 -a 42 - -t 282.39272551116005 -s 11 -d 10 -p SRM -e 168 -c 42 -i 142 -a 42 h -t 282.39272551116005 -s 11 -d 10 -p SRM -e 168 -c 42 -i 142 -a 42 + -t 282.39272551116005 -s 11 -d 14 -p SRM -e 168 -c 42 -i 142 -a 42 - -t 282.39272551116005 -s 11 -d 14 -p SRM -e 168 -c 42 -i 142 -a 42 h -t 282.39272551116005 -s 11 -d 14 -p SRM -e 168 -c 42 -i 142 -a 42 r -t 282.39272551116005 -s 13 -d 15 -p SRM -e 168 -c 42 -i 142 -a 42 r -t 282.40406951116006 -s 11 -d 10 -p SRM -e 168 -c 42 -i 142 -a 42 + -t 282.40406951116006 -s 10 -d 12 -p SRM -e 168 -c 42 -i 142 -a 42 - -t 282.40406951116006 -s 10 -d 12 -p SRM -e 168 -c 42 -i 142 -a 42 h -t 282.40406951116006 -s 10 -d 12 -p SRM -e 168 -c 42 -i 142 -a 42 r -t 282.40406951116006 -s 11 -d 14 -p SRM -e 168 -c 42 -i 142 -a 42 r -t 282.41541351116007 -s 10 -d 12 -p SRM -e 168 -c 42 -i 142 -a 42 + -t 283.19024993418998 -s 21 -d 20 -p SRM -e 168 -c 42 -i 144 -a 42 - -t 283.19024993418998 -s 21 -d 20 -p SRM -e 168 -c 42 -i 144 -a 42 h -t 283.19024993418998 -s 21 -d 20 -p SRM -e 168 -c 42 -i 144 -a 42 + -t 283.19024993418998 -s 21 -d 23 -p SRM -e 168 -c 42 -i 144 -a 42 - -t 283.19024993418998 -s 21 -d 23 -p SRM -e 168 -c 42 -i 144 -a 42 h -t 283.19024993418998 -s 21 -d 23 -p SRM -e 168 -c 42 -i 144 -a 42 + -t 283.19024993418998 -s 21 -d 24 -p SRM -e 168 -c 42 -i 144 -a 42 - -t 283.19024993418998 -s 21 -d 24 -p SRM -e 168 -c 42 -i 144 -a 42 h -t 283.19024993418998 -s 21 -d 24 -p SRM -e 168 -c 42 -i 144 -a 42 r -t 283.20159393418999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 144 -a 42 + -t 283.20159393418999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 144 -a 42 - -t 283.20159393418999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 144 -a 42 h -t 283.20159393418999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 144 -a 42 r -t 283.20159393418999 -s 21 -d 23 -p SRM -e 168 -c 42 -i 144 -a 42 + -t 283.20159393418999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 144 -a 42 - -t 283.20159393418999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 144 -a 42 h -t 283.20159393418999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 144 -a 42 + -t 283.20159393418999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 144 -a 42 - -t 283.20159393418999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 144 -a 42 h -t 283.20159393418999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 144 -a 42 r -t 283.20159393418999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 144 -a 42 r -t 283.21293793418999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 144 -a 42 r -t 283.21293793418999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 144 -a 42 r -t 283.21293793418999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 144 -a 42 + -t 283.21293793418999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 144 -a 42 - -t 283.21293793418999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 144 -a 42 h -t 283.21293793418999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 144 -a 42 + -t 283.21293793418999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 144 -a 42 - -t 283.21293793418999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 144 -a 42 h -t 283.21293793418999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 144 -a 42 r -t 283.22428193419 -s 26 -d 27 -p SRM -e 168 -c 42 -i 144 -a 42 r -t 283.22428193419 -s 26 -d 28 -p SRM -e 168 -c 42 -i 144 -a 42 + -t 283.47168580208 -s 23 -d 21 -p SRM -e 168 -c 42 -i 145 -a 42 - -t 283.47168580208 -s 23 -d 21 -p SRM -e 168 -c 42 -i 145 -a 42 h -t 283.47168580208 -s 23 -d 21 -p SRM -e 168 -c 42 -i 145 -a 42 + -t 283.47168580208 -s 23 -d 25 -p SRM -e 168 -c 42 -i 145 -a 42 - -t 283.47168580208 -s 23 -d 25 -p SRM -e 168 -c 42 -i 145 -a 42 h -t 283.47168580208 -s 23 -d 25 -p SRM -e 168 -c 42 -i 145 -a 42 + -t 283.47168580208 -s 23 -d 26 -p SRM -e 168 -c 42 -i 145 -a 42 - -t 283.47168580208 -s 23 -d 26 -p SRM -e 168 -c 42 -i 145 -a 42 h -t 283.47168580208 -s 23 -d 26 -p SRM -e 168 -c 42 -i 145 -a 42 r -t 283.48302980208001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 145 -a 42 + -t 283.48302980208001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 145 -a 42 - -t 283.48302980208001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 145 -a 42 h -t 283.48302980208001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 145 -a 42 + -t 283.48302980208001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 145 -a 42 - -t 283.48302980208001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 145 -a 42 h -t 283.48302980208001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 145 -a 42 r -t 283.48302980208001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 145 -a 42 r -t 283.48302980208001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 145 -a 42 + -t 283.48302980208001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 145 -a 42 - -t 283.48302980208001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 145 -a 42 h -t 283.48302980208001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 145 -a 42 + -t 283.48302980208001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 145 -a 42 - -t 283.48302980208001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 145 -a 42 h -t 283.48302980208001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 145 -a 42 r -t 283.49437380208002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 145 -a 42 + -t 283.49437380208002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 145 -a 42 - -t 283.49437380208002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 145 -a 42 h -t 283.49437380208002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 145 -a 42 r -t 283.49437380208002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 145 -a 42 r -t 283.49437380208002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 145 -a 42 r -t 283.49437380208002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 145 -a 42 r -t 283.50571780208003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 145 -a 42 + -t 284.15171564355001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 143 -a 42 - -t 284.15171564355001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 143 -a 42 h -t 284.15171564355001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 143 -a 42 + -t 284.15171564355001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 143 -a 42 - -t 284.15171564355001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 143 -a 42 h -t 284.15171564355001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 143 -a 42 + -t 284.15171564355001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 143 -a 42 - -t 284.15171564355001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 143 -a 42 h -t 284.15171564355001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 143 -a 42 r -t 284.16305964355001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 143 -a 42 + -t 284.16305964355001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 143 -a 42 - -t 284.16305964355001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 143 -a 42 h -t 284.16305964355001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 143 -a 42 + -t 284.16305964355001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 143 -a 42 - -t 284.16305964355001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 143 -a 42 h -t 284.16305964355001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 143 -a 42 r -t 284.16305964355001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 143 -a 42 r -t 284.16305964355001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 143 -a 42 + -t 284.16305964355001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 143 -a 42 - -t 284.16305964355001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 143 -a 42 h -t 284.16305964355001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 143 -a 42 + -t 284.16305964355001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 143 -a 42 - -t 284.16305964355001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 143 -a 42 h -t 284.16305964355001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 143 -a 42 r -t 284.17440364355002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 143 -a 42 + -t 284.17440364355002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 143 -a 42 - -t 284.17440364355002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 143 -a 42 h -t 284.17440364355002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 143 -a 42 r -t 284.17440364355002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 143 -a 42 r -t 284.17440364355002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 143 -a 42 r -t 284.17440364355002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 143 -a 42 r -t 284.18574764355003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 143 -a 42 + -t 284.35605484054003 -s 22 -d 20 -p SRM -e 168 -c 42 -i 146 -a 42 - -t 284.35605484054003 -s 22 -d 20 -p SRM -e 168 -c 42 -i 146 -a 42 h -t 284.35605484054003 -s 22 -d 20 -p SRM -e 168 -c 42 -i 146 -a 42 r -t 284.36739884054003 -s 22 -d 20 -p SRM -e 168 -c 42 -i 146 -a 42 + -t 284.36739884054003 -s 20 -d 21 -p SRM -e 168 -c 42 -i 146 -a 42 - -t 284.36739884054003 -s 20 -d 21 -p SRM -e 168 -c 42 -i 146 -a 42 h -t 284.36739884054003 -s 20 -d 21 -p SRM -e 168 -c 42 -i 146 -a 42 r -t 284.37874284054004 -s 20 -d 21 -p SRM -e 168 -c 42 -i 146 -a 42 + -t 284.37874284054004 -s 21 -d 23 -p SRM -e 168 -c 42 -i 146 -a 42 - -t 284.37874284054004 -s 21 -d 23 -p SRM -e 168 -c 42 -i 146 -a 42 h -t 284.37874284054004 -s 21 -d 23 -p SRM -e 168 -c 42 -i 146 -a 42 + -t 284.37874284054004 -s 21 -d 24 -p SRM -e 168 -c 42 -i 146 -a 42 - -t 284.37874284054004 -s 21 -d 24 -p SRM -e 168 -c 42 -i 146 -a 42 h -t 284.37874284054004 -s 21 -d 24 -p SRM -e 168 -c 42 -i 146 -a 42 r -t 284.39008684054005 -s 21 -d 23 -p SRM -e 168 -c 42 -i 146 -a 42 + -t 284.39008684054005 -s 23 -d 25 -p SRM -e 168 -c 42 -i 146 -a 42 - -t 284.39008684054005 -s 23 -d 25 -p SRM -e 168 -c 42 -i 146 -a 42 h -t 284.39008684054005 -s 23 -d 25 -p SRM -e 168 -c 42 -i 146 -a 42 + -t 284.39008684054005 -s 23 -d 26 -p SRM -e 168 -c 42 -i 146 -a 42 - -t 284.39008684054005 -s 23 -d 26 -p SRM -e 168 -c 42 -i 146 -a 42 h -t 284.39008684054005 -s 23 -d 26 -p SRM -e 168 -c 42 -i 146 -a 42 r -t 284.39008684054005 -s 21 -d 24 -p SRM -e 168 -c 42 -i 146 -a 42 r -t 284.40143084054006 -s 23 -d 25 -p SRM -e 168 -c 42 -i 146 -a 42 r -t 284.40143084054006 -s 23 -d 26 -p SRM -e 168 -c 42 -i 146 -a 42 + -t 284.40143084054006 -s 26 -d 27 -p SRM -e 168 -c 42 -i 146 -a 42 - -t 284.40143084054006 -s 26 -d 27 -p SRM -e 168 -c 42 -i 146 -a 42 h -t 284.40143084054006 -s 26 -d 27 -p SRM -e 168 -c 42 -i 146 -a 42 + -t 284.40143084054006 -s 26 -d 28 -p SRM -e 168 -c 42 -i 146 -a 42 - -t 284.40143084054006 -s 26 -d 28 -p SRM -e 168 -c 42 -i 146 -a 42 h -t 284.40143084054006 -s 26 -d 28 -p SRM -e 168 -c 42 -i 146 -a 42 r -t 284.41277484054007 -s 26 -d 27 -p SRM -e 168 -c 42 -i 146 -a 42 r -t 284.41277484054007 -s 26 -d 28 -p SRM -e 168 -c 42 -i 146 -a 42 + -t 285.21002991344 -s 11 -d 10 -p SRM -e 168 -c 42 -i 144 -a 42 - -t 285.21002991344 -s 11 -d 10 -p SRM -e 168 -c 42 -i 144 -a 42 h -t 285.21002991344 -s 11 -d 10 -p SRM -e 168 -c 42 -i 144 -a 42 + -t 285.21002991344 -s 11 -d 13 -p SRM -e 168 -c 42 -i 144 -a 42 - -t 285.21002991344 -s 11 -d 13 -p SRM -e 168 -c 42 -i 144 -a 42 h -t 285.21002991344 -s 11 -d 13 -p SRM -e 168 -c 42 -i 144 -a 42 + -t 285.21002991344 -s 11 -d 14 -p SRM -e 168 -c 42 -i 144 -a 42 - -t 285.21002991344 -s 11 -d 14 -p SRM -e 168 -c 42 -i 144 -a 42 h -t 285.21002991344 -s 11 -d 14 -p SRM -e 168 -c 42 -i 144 -a 42 r -t 285.22137391344 -s 11 -d 10 -p SRM -e 168 -c 42 -i 144 -a 42 + -t 285.22137391344 -s 10 -d 12 -p SRM -e 168 -c 42 -i 144 -a 42 - -t 285.22137391344 -s 10 -d 12 -p SRM -e 168 -c 42 -i 144 -a 42 h -t 285.22137391344 -s 10 -d 12 -p SRM -e 168 -c 42 -i 144 -a 42 r -t 285.22137391344 -s 11 -d 13 -p SRM -e 168 -c 42 -i 144 -a 42 + -t 285.22137391344 -s 13 -d 15 -p SRM -e 168 -c 42 -i 144 -a 42 - -t 285.22137391344 -s 13 -d 15 -p SRM -e 168 -c 42 -i 144 -a 42 h -t 285.22137391344 -s 13 -d 15 -p SRM -e 168 -c 42 -i 144 -a 42 + -t 285.22137391344 -s 13 -d 16 -p SRM -e 168 -c 42 -i 144 -a 42 - -t 285.22137391344 -s 13 -d 16 -p SRM -e 168 -c 42 -i 144 -a 42 h -t 285.22137391344 -s 13 -d 16 -p SRM -e 168 -c 42 -i 144 -a 42 r -t 285.22137391344 -s 11 -d 14 -p SRM -e 168 -c 42 -i 144 -a 42 r -t 285.23271791344001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 144 -a 42 r -t 285.23271791344001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 144 -a 42 r -t 285.23271791344001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 144 -a 42 + -t 285.23271791344001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 144 -a 42 - -t 285.23271791344001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 144 -a 42 h -t 285.23271791344001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 144 -a 42 + -t 285.23271791344001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 144 -a 42 - -t 285.23271791344001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 144 -a 42 h -t 285.23271791344001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 144 -a 42 r -t 285.24406191344002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 144 -a 42 r -t 285.24406191344002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 144 -a 42 + -t 287.91943761305998 -s 18 -d 16 -p SRM -e 168 -c 42 -i 145 -a 42 - -t 287.91943761305998 -s 18 -d 16 -p SRM -e 168 -c 42 -i 145 -a 42 h -t 287.91943761305998 -s 18 -d 16 -p SRM -e 168 -c 42 -i 145 -a 42 r -t 287.93078161305999 -s 18 -d 16 -p SRM -e 168 -c 42 -i 145 -a 42 + -t 287.93078161305999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 145 -a 42 - -t 287.93078161305999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 145 -a 42 h -t 287.93078161305999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 145 -a 42 + -t 287.93078161305999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 145 -a 42 - -t 287.93078161305999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 145 -a 42 h -t 287.93078161305999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 145 -a 42 r -t 287.94212561306 -s 16 -d 13 -p SRM -e 168 -c 42 -i 145 -a 42 + -t 287.94212561306 -s 13 -d 11 -p SRM -e 168 -c 42 -i 145 -a 42 - -t 287.94212561306 -s 13 -d 11 -p SRM -e 168 -c 42 -i 145 -a 42 h -t 287.94212561306 -s 13 -d 11 -p SRM -e 168 -c 42 -i 145 -a 42 + -t 287.94212561306 -s 13 -d 15 -p SRM -e 168 -c 42 -i 145 -a 42 - -t 287.94212561306 -s 13 -d 15 -p SRM -e 168 -c 42 -i 145 -a 42 h -t 287.94212561306 -s 13 -d 15 -p SRM -e 168 -c 42 -i 145 -a 42 r -t 287.94212561306 -s 16 -d 17 -p SRM -e 168 -c 42 -i 145 -a 42 r -t 287.95346961306001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 145 -a 42 + -t 287.95346961306001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 145 -a 42 - -t 287.95346961306001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 145 -a 42 h -t 287.95346961306001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 145 -a 42 + -t 287.95346961306001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 145 -a 42 - -t 287.95346961306001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 145 -a 42 h -t 287.95346961306001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 145 -a 42 r -t 287.95346961306001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 145 -a 42 r -t 287.96481361306002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 145 -a 42 + -t 287.96481361306002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 145 -a 42 - -t 287.96481361306002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 145 -a 42 h -t 287.96481361306002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 145 -a 42 r -t 287.96481361306002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 145 -a 42 r -t 287.97615761306002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 145 -a 42 + -t 288.31906965923997 -s 28 -d 26 -p SRM -e 168 -c 42 -i 147 -a 42 - -t 288.31906965923997 -s 28 -d 26 -p SRM -e 168 -c 42 -i 147 -a 42 h -t 288.31906965923997 -s 28 -d 26 -p SRM -e 168 -c 42 -i 147 -a 42 r -t 288.33041365923998 -s 28 -d 26 -p SRM -e 168 -c 42 -i 147 -a 42 + -t 288.33041365923998 -s 26 -d 23 -p SRM -e 168 -c 42 -i 147 -a 42 - -t 288.33041365923998 -s 26 -d 23 -p SRM -e 168 -c 42 -i 147 -a 42 h -t 288.33041365923998 -s 26 -d 23 -p SRM -e 168 -c 42 -i 147 -a 42 + -t 288.33041365923998 -s 26 -d 27 -p SRM -e 168 -c 42 -i 147 -a 42 - -t 288.33041365923998 -s 26 -d 27 -p SRM -e 168 -c 42 -i 147 -a 42 h -t 288.33041365923998 -s 26 -d 27 -p SRM -e 168 -c 42 -i 147 -a 42 r -t 288.34175765923999 -s 26 -d 23 -p SRM -e 168 -c 42 -i 147 -a 42 + -t 288.34175765923999 -s 23 -d 21 -p SRM -e 168 -c 42 -i 147 -a 42 - -t 288.34175765923999 -s 23 -d 21 -p SRM -e 168 -c 42 -i 147 -a 42 h -t 288.34175765923999 -s 23 -d 21 -p SRM -e 168 -c 42 -i 147 -a 42 + -t 288.34175765923999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 147 -a 42 - -t 288.34175765923999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 147 -a 42 h -t 288.34175765923999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 147 -a 42 r -t 288.34175765923999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 147 -a 42 r -t 288.35310165924 -s 23 -d 21 -p SRM -e 168 -c 42 -i 147 -a 42 + -t 288.35310165924 -s 21 -d 20 -p SRM -e 168 -c 42 -i 147 -a 42 - -t 288.35310165924 -s 21 -d 20 -p SRM -e 168 -c 42 -i 147 -a 42 h -t 288.35310165924 -s 21 -d 20 -p SRM -e 168 -c 42 -i 147 -a 42 + -t 288.35310165924 -s 21 -d 24 -p SRM -e 168 -c 42 -i 147 -a 42 - -t 288.35310165924 -s 21 -d 24 -p SRM -e 168 -c 42 -i 147 -a 42 h -t 288.35310165924 -s 21 -d 24 -p SRM -e 168 -c 42 -i 147 -a 42 r -t 288.35310165924 -s 23 -d 25 -p SRM -e 168 -c 42 -i 147 -a 42 r -t 288.36444565924 -s 21 -d 20 -p SRM -e 168 -c 42 -i 147 -a 42 + -t 288.36444565924 -s 20 -d 22 -p SRM -e 168 -c 42 -i 147 -a 42 - -t 288.36444565924 -s 20 -d 22 -p SRM -e 168 -c 42 -i 147 -a 42 h -t 288.36444565924 -s 20 -d 22 -p SRM -e 168 -c 42 -i 147 -a 42 r -t 288.36444565924 -s 21 -d 24 -p SRM -e 168 -c 42 -i 147 -a 42 r -t 288.37578965924001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 147 -a 42 + -t 294.53835908325999 -s 25 -d 23 -p SRM -e 168 -c 42 -i 148 -a 42 - -t 294.53835908325999 -s 25 -d 23 -p SRM -e 168 -c 42 -i 148 -a 42 h -t 294.53835908325999 -s 25 -d 23 -p SRM -e 168 -c 42 -i 148 -a 42 r -t 294.54970308326 -s 25 -d 23 -p SRM -e 168 -c 42 -i 148 -a 42 + -t 294.54970308326 -s 23 -d 21 -p SRM -e 168 -c 42 -i 148 -a 42 - -t 294.54970308326 -s 23 -d 21 -p SRM -e 168 -c 42 -i 148 -a 42 h -t 294.54970308326 -s 23 -d 21 -p SRM -e 168 -c 42 -i 148 -a 42 + -t 294.54970308326 -s 23 -d 26 -p SRM -e 168 -c 42 -i 148 -a 42 - -t 294.54970308326 -s 23 -d 26 -p SRM -e 168 -c 42 -i 148 -a 42 h -t 294.54970308326 -s 23 -d 26 -p SRM -e 168 -c 42 -i 148 -a 42 r -t 294.56104708326001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 148 -a 42 + -t 294.56104708326001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 148 -a 42 - -t 294.56104708326001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 148 -a 42 h -t 294.56104708326001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 148 -a 42 + -t 294.56104708326001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 148 -a 42 - -t 294.56104708326001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 148 -a 42 h -t 294.56104708326001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 148 -a 42 r -t 294.56104708326001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 148 -a 42 + -t 294.56104708326001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 148 -a 42 - -t 294.56104708326001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 148 -a 42 h -t 294.56104708326001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 148 -a 42 + -t 294.56104708326001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 148 -a 42 - -t 294.56104708326001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 148 -a 42 h -t 294.56104708326001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 148 -a 42 r -t 294.57239108326002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 148 -a 42 + -t 294.57239108326002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 148 -a 42 - -t 294.57239108326002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 148 -a 42 h -t 294.57239108326002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 148 -a 42 r -t 294.57239108326002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 148 -a 42 r -t 294.57239108326002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 148 -a 42 r -t 294.57239108326002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 148 -a 42 r -t 294.58373508326002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 148 -a 42 + -t 297.54880662963001 -s 24 -d 21 -p SRM -e 168 -c 42 -i 149 -a 42 - -t 297.54880662963001 -s 24 -d 21 -p SRM -e 168 -c 42 -i 149 -a 42 h -t 297.54880662963001 -s 24 -d 21 -p SRM -e 168 -c 42 -i 149 -a 42 r -t 297.56015062963002 -s 24 -d 21 -p SRM -e 168 -c 42 -i 149 -a 42 + -t 297.56015062963002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 149 -a 42 - -t 297.56015062963002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 149 -a 42 h -t 297.56015062963002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 149 -a 42 + -t 297.56015062963002 -s 21 -d 23 -p SRM -e 168 -c 42 -i 149 -a 42 - -t 297.56015062963002 -s 21 -d 23 -p SRM -e 168 -c 42 -i 149 -a 42 h -t 297.56015062963002 -s 21 -d 23 -p SRM -e 168 -c 42 -i 149 -a 42 r -t 297.57149462963002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 149 -a 42 + -t 297.57149462963002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 149 -a 42 - -t 297.57149462963002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 149 -a 42 h -t 297.57149462963002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 149 -a 42 r -t 297.57149462963002 -s 21 -d 23 -p SRM -e 168 -c 42 -i 149 -a 42 + -t 297.57149462963002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 149 -a 42 - -t 297.57149462963002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 149 -a 42 h -t 297.57149462963002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 149 -a 42 + -t 297.57149462963002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 149 -a 42 - -t 297.57149462963002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 149 -a 42 h -t 297.57149462963002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 149 -a 42 r -t 297.58283862963003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 149 -a 42 r -t 297.58283862963003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 149 -a 42 r -t 297.58283862963003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 149 -a 42 + -t 297.58283862963003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 149 -a 42 - -t 297.58283862963003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 149 -a 42 h -t 297.58283862963003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 149 -a 42 + -t 297.58283862963003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 149 -a 42 - -t 297.58283862963003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 149 -a 42 h -t 297.58283862963003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 149 -a 42 r -t 297.59418262963004 -s 26 -d 27 -p SRM -e 168 -c 42 -i 149 -a 42 r -t 297.59418262963004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 149 -a 42 + -t 298.21882151985 -s 26 -d 23 -p SRM -e 168 -c 42 -i 150 -a 42 - -t 298.21882151985 -s 26 -d 23 -p SRM -e 168 -c 42 -i 150 -a 42 h -t 298.21882151985 -s 26 -d 23 -p SRM -e 168 -c 42 -i 150 -a 42 + -t 298.21882151985 -s 26 -d 27 -p SRM -e 168 -c 42 -i 150 -a 42 - -t 298.21882151985 -s 26 -d 27 -p SRM -e 168 -c 42 -i 150 -a 42 h -t 298.21882151985 -s 26 -d 27 -p SRM -e 168 -c 42 -i 150 -a 42 + -t 298.21882151985 -s 26 -d 28 -p SRM -e 168 -c 42 -i 150 -a 42 - -t 298.21882151985 -s 26 -d 28 -p SRM -e 168 -c 42 -i 150 -a 42 h -t 298.21882151985 -s 26 -d 28 -p SRM -e 168 -c 42 -i 150 -a 42 r -t 298.23016551985 -s 26 -d 23 -p SRM -e 168 -c 42 -i 150 -a 42 + -t 298.23016551985 -s 23 -d 21 -p SRM -e 168 -c 42 -i 150 -a 42 - -t 298.23016551985 -s 23 -d 21 -p SRM -e 168 -c 42 -i 150 -a 42 h -t 298.23016551985 -s 23 -d 21 -p SRM -e 168 -c 42 -i 150 -a 42 + -t 298.23016551985 -s 23 -d 25 -p SRM -e 168 -c 42 -i 150 -a 42 - -t 298.23016551985 -s 23 -d 25 -p SRM -e 168 -c 42 -i 150 -a 42 h -t 298.23016551985 -s 23 -d 25 -p SRM -e 168 -c 42 -i 150 -a 42 r -t 298.23016551985 -s 26 -d 27 -p SRM -e 168 -c 42 -i 150 -a 42 r -t 298.23016551985 -s 26 -d 28 -p SRM -e 168 -c 42 -i 150 -a 42 r -t 298.24150951985001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 150 -a 42 + -t 298.24150951985001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 150 -a 42 - -t 298.24150951985001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 150 -a 42 h -t 298.24150951985001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 150 -a 42 + -t 298.24150951985001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 150 -a 42 - -t 298.24150951985001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 150 -a 42 h -t 298.24150951985001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 150 -a 42 r -t 298.24150951985001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 150 -a 42 r -t 298.25285351985002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 150 -a 42 + -t 298.25285351985002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 150 -a 42 - -t 298.25285351985002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 150 -a 42 h -t 298.25285351985002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 150 -a 42 r -t 298.25285351985002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 150 -a 42 r -t 298.26419751985003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 150 -a 42 + -t 299.11005425855001 -s 12 -d 10 -p SRM -e 168 -c 42 -i 146 -a 42 - -t 299.11005425855001 -s 12 -d 10 -p SRM -e 168 -c 42 -i 146 -a 42 h -t 299.11005425855001 -s 12 -d 10 -p SRM -e 168 -c 42 -i 146 -a 42 r -t 299.12139825855002 -s 12 -d 10 -p SRM -e 168 -c 42 -i 146 -a 42 + -t 299.12139825855002 -s 10 -d 11 -p SRM -e 168 -c 42 -i 146 -a 42 - -t 299.12139825855002 -s 10 -d 11 -p SRM -e 168 -c 42 -i 146 -a 42 h -t 299.12139825855002 -s 10 -d 11 -p SRM -e 168 -c 42 -i 146 -a 42 r -t 299.13274225855002 -s 10 -d 11 -p SRM -e 168 -c 42 -i 146 -a 42 + -t 299.13274225855002 -s 11 -d 13 -p SRM -e 168 -c 42 -i 146 -a 42 - -t 299.13274225855002 -s 11 -d 13 -p SRM -e 168 -c 42 -i 146 -a 42 h -t 299.13274225855002 -s 11 -d 13 -p SRM -e 168 -c 42 -i 146 -a 42 + -t 299.13274225855002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 146 -a 42 - -t 299.13274225855002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 146 -a 42 h -t 299.13274225855002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 146 -a 42 + -t 299.13288699677003 -s 16 -d 13 -p SRM -e 168 -c 42 -i 147 -a 42 - -t 299.13288699677003 -s 16 -d 13 -p SRM -e 168 -c 42 -i 147 -a 42 h -t 299.13288699677003 -s 16 -d 13 -p SRM -e 168 -c 42 -i 147 -a 42 + -t 299.13288699677003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 147 -a 42 - -t 299.13288699677003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 147 -a 42 h -t 299.13288699677003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 147 -a 42 + -t 299.13288699677003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 147 -a 42 - -t 299.13288699677003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 147 -a 42 h -t 299.13288699677003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 147 -a 42 r -t 299.14408625855003 -s 11 -d 13 -p SRM -e 168 -c 42 -i 146 -a 42 + -t 299.14408625855003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 146 -a 42 - -t 299.14408625855003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 146 -a 42 h -t 299.14408625855003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 146 -a 42 + -t 299.14408625855003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 146 -a 42 - -t 299.14408625855003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 146 -a 42 h -t 299.14408625855003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 146 -a 42 r -t 299.14408625855003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 146 -a 42 r -t 299.14423099677003 -s 16 -d 13 -p SRM -e 168 -c 42 -i 147 -a 42 + -t 299.14423099677003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 147 -a 42 - -t 299.14423099677003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 147 -a 42 h -t 299.14423099677003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 147 -a 42 + -t 299.14423099677003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 147 -a 42 r -t 299.14423099677003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 147 -a 42 r -t 299.14423099677003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 147 -a 42 - -t 299.14543025855005 -s 13 -d 15 -p SRM -e 168 -c 42 -i 147 -a 42 h -t 299.14543025855005 -s 13 -d 15 -p SRM -e 168 -c 42 -i 147 -a 42 r -t 299.15543025855004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 146 -a 42 r -t 299.15543025855004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 146 -a 42 + -t 299.15543025855004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 146 -a 42 - -t 299.15543025855004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 146 -a 42 h -t 299.15543025855004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 146 -a 42 + -t 299.15543025855004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 146 -a 42 - -t 299.15543025855004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 146 -a 42 h -t 299.15543025855004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 146 -a 42 r -t 299.15557499677004 -s 13 -d 11 -p SRM -e 168 -c 42 -i 147 -a 42 + -t 299.15557499677004 -s 11 -d 10 -p SRM -e 168 -c 42 -i 147 -a 42 - -t 299.15557499677004 -s 11 -d 10 -p SRM -e 168 -c 42 -i 147 -a 42 h -t 299.15557499677004 -s 11 -d 10 -p SRM -e 168 -c 42 -i 147 -a 42 + -t 299.15557499677004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 147 -a 42 - -t 299.15557499677004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 147 -a 42 h -t 299.15557499677004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 147 -a 42 r -t 299.15677425855006 -s 13 -d 15 -p SRM -e 168 -c 42 -i 147 -a 42 r -t 299.16677425855005 -s 16 -d 17 -p SRM -e 168 -c 42 -i 146 -a 42 r -t 299.16677425855005 -s 16 -d 18 -p SRM -e 168 -c 42 -i 146 -a 42 r -t 299.16691899677005 -s 11 -d 10 -p SRM -e 168 -c 42 -i 147 -a 42 + -t 299.16691899677005 -s 10 -d 12 -p SRM -e 168 -c 42 -i 147 -a 42 - -t 299.16691899677005 -s 10 -d 12 -p SRM -e 168 -c 42 -i 147 -a 42 h -t 299.16691899677005 -s 10 -d 12 -p SRM -e 168 -c 42 -i 147 -a 42 r -t 299.16691899677005 -s 11 -d 14 -p SRM -e 168 -c 42 -i 147 -a 42 r -t 299.17826299677006 -s 10 -d 12 -p SRM -e 168 -c 42 -i 147 -a 42 + -t 299.60349915602001 -s 15 -d 13 -p SRM -e 168 -c 42 -i 148 -a 42 - -t 299.60349915602001 -s 15 -d 13 -p SRM -e 168 -c 42 -i 148 -a 42 h -t 299.60349915602001 -s 15 -d 13 -p SRM -e 168 -c 42 -i 148 -a 42 r -t 299.61484315602002 -s 15 -d 13 -p SRM -e 168 -c 42 -i 148 -a 42 + -t 299.61484315602002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 148 -a 42 - -t 299.61484315602002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 148 -a 42 h -t 299.61484315602002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 148 -a 42 + -t 299.61484315602002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 148 -a 42 - -t 299.61484315602002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 148 -a 42 h -t 299.61484315602002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 148 -a 42 r -t 299.62618715602002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 148 -a 42 + -t 299.62618715602002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 148 -a 42 - -t 299.62618715602002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 148 -a 42 h -t 299.62618715602002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 148 -a 42 + -t 299.62618715602002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 148 -a 42 - -t 299.62618715602002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 148 -a 42 h -t 299.62618715602002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 148 -a 42 r -t 299.62618715602002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 148 -a 42 + -t 299.62618715602002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 148 -a 42 - -t 299.62618715602002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 148 -a 42 h -t 299.62618715602002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 148 -a 42 + -t 299.62618715602002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 148 -a 42 - -t 299.62618715602002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 148 -a 42 h -t 299.62618715602002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 148 -a 42 r -t 299.63753115602003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 148 -a 42 + -t 299.63753115602003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 148 -a 42 - -t 299.63753115602003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 148 -a 42 h -t 299.63753115602003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 148 -a 42 r -t 299.63753115602003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 148 -a 42 r -t 299.63753115602003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 148 -a 42 r -t 299.63753115602003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 148 -a 42 r -t 299.64887515602004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 148 -a 42 + -t 300.29089905405999 -s 10 -d 11 -p SRM -e 168 -c 42 -i 149 -a 42 - -t 300.29089905405999 -s 10 -d 11 -p SRM -e 168 -c 42 -i 149 -a 42 h -t 300.29089905405999 -s 10 -d 11 -p SRM -e 168 -c 42 -i 149 -a 42 + -t 300.29089905405999 -s 10 -d 12 -p SRM -e 168 -c 42 -i 149 -a 42 - -t 300.29089905405999 -s 10 -d 12 -p SRM -e 168 -c 42 -i 149 -a 42 h -t 300.29089905405999 -s 10 -d 12 -p SRM -e 168 -c 42 -i 149 -a 42 r -t 300.30224305406 -s 10 -d 11 -p SRM -e 168 -c 42 -i 149 -a 42 + -t 300.30224305406 -s 11 -d 13 -p SRM -e 168 -c 42 -i 149 -a 42 - -t 300.30224305406 -s 11 -d 13 -p SRM -e 168 -c 42 -i 149 -a 42 h -t 300.30224305406 -s 11 -d 13 -p SRM -e 168 -c 42 -i 149 -a 42 + -t 300.30224305406 -s 11 -d 14 -p SRM -e 168 -c 42 -i 149 -a 42 - -t 300.30224305406 -s 11 -d 14 -p SRM -e 168 -c 42 -i 149 -a 42 h -t 300.30224305406 -s 11 -d 14 -p SRM -e 168 -c 42 -i 149 -a 42 r -t 300.30224305406 -s 10 -d 12 -p SRM -e 168 -c 42 -i 149 -a 42 r -t 300.31358705406001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 149 -a 42 + -t 300.31358705406001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 149 -a 42 - -t 300.31358705406001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 149 -a 42 h -t 300.31358705406001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 149 -a 42 + -t 300.31358705406001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 149 -a 42 - -t 300.31358705406001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 149 -a 42 h -t 300.31358705406001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 149 -a 42 r -t 300.31358705406001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 149 -a 42 r -t 300.32493105406002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 149 -a 42 r -t 300.32493105406002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 149 -a 42 + -t 300.32493105406002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 149 -a 42 - -t 300.32493105406002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 149 -a 42 h -t 300.32493105406002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 149 -a 42 + -t 300.32493105406002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 149 -a 42 - -t 300.32493105406002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 149 -a 42 h -t 300.32493105406002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 149 -a 42 r -t 300.33627505406002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 149 -a 42 r -t 300.33627505406002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 149 -a 42 + -t 300.55225001265387 -s 10 -d 11 -p cbr -e 1280 -c 0 -i 150 -a 0 + -t 300.55225001265387 -s 20 -d 21 -p cbr -e 1280 -c 0 -i 151 -a 0 - -t 300.55225001265387 -s 10 -d 11 -p cbr -e 1280 -c 0 -i 150 -a 0 - -t 300.55225001265387 -s 20 -d 21 -p cbr -e 1280 -c 0 -i 151 -a 0 h -t 300.55225001265387 -s 10 -d 11 -p cbr -e 1280 -c 0 -i 150 -a 0 + -t 300.55225001265387 -s 10 -d 12 -p cbr -e 1280 -c 0 -i 150 -a 0 - -t 300.55225001265387 -s 10 -d 12 -p cbr -e 1280 -c 0 -i 150 -a 0 h -t 300.55225001265387 -s 10 -d 12 -p cbr -e 1280 -c 0 -i 150 -a 0 h -t 300.55225001265387 -s 20 -d 21 -p cbr -e 1280 -c 0 -i 151 -a 0 + -t 300.55225001265387 -s 20 -d 22 -p cbr -e 1280 -c 0 -i 151 -a 0 - -t 300.55225001265387 -s 20 -d 22 -p cbr -e 1280 -c 0 -i 151 -a 0 h -t 300.55225001265387 -s 20 -d 22 -p cbr -e 1280 -c 0 -i 151 -a 0 r -t 300.57249001265387 -s 10 -d 11 -p cbr -e 1280 -c 0 -i 150 -a 0 + -t 300.57249001265387 -s 11 -d 13 -p cbr -e 1280 -c 0 -i 150 -a 0 - -t 300.57249001265387 -s 11 -d 13 -p cbr -e 1280 -c 0 -i 150 -a 0 h -t 300.57249001265387 -s 11 -d 13 -p cbr -e 1280 -c 0 -i 150 -a 0 + -t 300.57249001265387 -s 11 -d 14 -p cbr -e 1280 -c 0 -i 150 -a 0 - -t 300.57249001265387 -s 11 -d 14 -p cbr -e 1280 -c 0 -i 150 -a 0 h -t 300.57249001265387 -s 11 -d 14 -p cbr -e 1280 -c 0 -i 150 -a 0 r -t 300.57249001265387 -s 10 -d 12 -p cbr -e 1280 -c 0 -i 150 -a 0 r -t 300.57249001265387 -s 20 -d 21 -p cbr -e 1280 -c 0 -i 151 -a 0 + -t 300.57249001265387 -s 21 -d 23 -p cbr -e 1280 -c 0 -i 151 -a 0 - -t 300.57249001265387 -s 21 -d 23 -p cbr -e 1280 -c 0 -i 151 -a 0 h -t 300.57249001265387 -s 21 -d 23 -p cbr -e 1280 -c 0 -i 151 -a 0 + -t 300.57249001265387 -s 21 -d 24 -p cbr -e 1280 -c 0 -i 151 -a 0 - -t 300.57249001265387 -s 21 -d 24 -p cbr -e 1280 -c 0 -i 151 -a 0 h -t 300.57249001265387 -s 21 -d 24 -p cbr -e 1280 -c 0 -i 151 -a 0 r -t 300.57249001265387 -s 20 -d 22 -p cbr -e 1280 -c 0 -i 151 -a 0 r -t 300.59273001265387 -s 11 -d 13 -p cbr -e 1280 -c 0 -i 150 -a 0 + -t 300.59273001265387 -s 13 -d 15 -p cbr -e 1280 -c 0 -i 150 -a 0 - -t 300.59273001265387 -s 13 -d 15 -p cbr -e 1280 -c 0 -i 150 -a 0 h -t 300.59273001265387 -s 13 -d 15 -p cbr -e 1280 -c 0 -i 150 -a 0 + -t 300.59273001265387 -s 13 -d 16 -p cbr -e 1280 -c 0 -i 150 -a 0 - -t 300.59273001265387 -s 13 -d 16 -p cbr -e 1280 -c 0 -i 150 -a 0 h -t 300.59273001265387 -s 13 -d 16 -p cbr -e 1280 -c 0 -i 150 -a 0 d -t 300.59273001265387 -s 13 -d 16 -p cbr -e 1280 -c 0 -i 150 -a 0 r -t 300.59273001265387 -s 11 -d 14 -p cbr -e 1280 -c 0 -i 150 -a 0 r -t 300.59273001265387 -s 21 -d 23 -p cbr -e 1280 -c 0 -i 151 -a 0 + -t 300.59273001265387 -s 23 -d 25 -p cbr -e 1280 -c 0 -i 151 -a 0 - -t 300.59273001265387 -s 23 -d 25 -p cbr -e 1280 -c 0 -i 151 -a 0 h -t 300.59273001265387 -s 23 -d 25 -p cbr -e 1280 -c 0 -i 151 -a 0 + -t 300.59273001265387 -s 23 -d 26 -p cbr -e 1280 -c 0 -i 151 -a 0 - -t 300.59273001265387 -s 23 -d 26 -p cbr -e 1280 -c 0 -i 151 -a 0 h -t 300.59273001265387 -s 23 -d 26 -p cbr -e 1280 -c 0 -i 151 -a 0 d -t 300.59273001265387 -s 23 -d 26 -p cbr -e 1280 -c 0 -i 151 -a 0 r -t 300.59273001265387 -s 21 -d 24 -p cbr -e 1280 -c 0 -i 151 -a 0 r -t 300.61297001265388 -s 13 -d 15 -p cbr -e 1280 -c 0 -i 150 -a 0 r -t 300.61297001265388 -s 23 -d 25 -p cbr -e 1280 -c 0 -i 151 -a 0 + -t 302.03464171083999 -s 27 -d 26 -p SRM -e 168 -c 42 -i 152 -a 42 - -t 302.03464171083999 -s 27 -d 26 -p SRM -e 168 -c 42 -i 152 -a 42 h -t 302.03464171083999 -s 27 -d 26 -p SRM -e 168 -c 42 -i 152 -a 42 r -t 302.04598571084 -s 27 -d 26 -p SRM -e 168 -c 42 -i 152 -a 42 + -t 302.04598571084 -s 26 -d 23 -p SRM -e 168 -c 42 -i 152 -a 42 - -t 302.04598571084 -s 26 -d 23 -p SRM -e 168 -c 42 -i 152 -a 42 h -t 302.04598571084 -s 26 -d 23 -p SRM -e 168 -c 42 -i 152 -a 42 + -t 302.04598571084 -s 26 -d 28 -p SRM -e 168 -c 42 -i 152 -a 42 - -t 302.04598571084 -s 26 -d 28 -p SRM -e 168 -c 42 -i 152 -a 42 h -t 302.04598571084 -s 26 -d 28 -p SRM -e 168 -c 42 -i 152 -a 42 r -t 302.05732971084001 -s 26 -d 23 -p SRM -e 168 -c 42 -i 152 -a 42 + -t 302.05732971084001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 152 -a 42 - -t 302.05732971084001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 152 -a 42 h -t 302.05732971084001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 152 -a 42 + -t 302.05732971084001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 152 -a 42 - -t 302.05732971084001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 152 -a 42 h -t 302.05732971084001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 152 -a 42 r -t 302.05732971084001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 152 -a 42 r -t 302.06867371084002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 152 -a 42 + -t 302.06867371084002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 152 -a 42 - -t 302.06867371084002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 152 -a 42 h -t 302.06867371084002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 152 -a 42 + -t 302.06867371084002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 152 -a 42 - -t 302.06867371084002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 152 -a 42 h -t 302.06867371084002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 152 -a 42 r -t 302.06867371084002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 152 -a 42 r -t 302.08001771084002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 152 -a 42 + -t 302.08001771084002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 152 -a 42 - -t 302.08001771084002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 152 -a 42 h -t 302.08001771084002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 152 -a 42 r -t 302.08001771084002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 152 -a 42 r -t 302.09136171084003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 152 -a 42 + -t 302.10654356685001 -s 14 -d 11 -p SRM -e 168 -c 42 -i 151 -a 42 - -t 302.10654356685001 -s 14 -d 11 -p SRM -e 168 -c 42 -i 151 -a 42 h -t 302.10654356685001 -s 14 -d 11 -p SRM -e 168 -c 42 -i 151 -a 42 r -t 302.11788756685002 -s 14 -d 11 -p SRM -e 168 -c 42 -i 151 -a 42 + -t 302.11788756685002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 151 -a 42 - -t 302.11788756685002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 151 -a 42 h -t 302.11788756685002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 151 -a 42 + -t 302.11788756685002 -s 11 -d 13 -p SRM -e 168 -c 42 -i 151 -a 42 - -t 302.11788756685002 -s 11 -d 13 -p SRM -e 168 -c 42 -i 151 -a 42 h -t 302.11788756685002 -s 11 -d 13 -p SRM -e 168 -c 42 -i 151 -a 42 r -t 302.12923156685002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 151 -a 42 + -t 302.12923156685002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 151 -a 42 - -t 302.12923156685002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 151 -a 42 h -t 302.12923156685002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 151 -a 42 r -t 302.12923156685002 -s 11 -d 13 -p SRM -e 168 -c 42 -i 151 -a 42 + -t 302.12923156685002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 151 -a 42 - -t 302.12923156685002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 151 -a 42 h -t 302.12923156685002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 151 -a 42 + -t 302.12923156685002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 151 -a 42 - -t 302.12923156685002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 151 -a 42 h -t 302.12923156685002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 151 -a 42 r -t 302.14057556685003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 151 -a 42 r -t 302.14057556685003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 151 -a 42 r -t 302.14057556685003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 151 -a 42 + -t 302.14057556685003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 151 -a 42 - -t 302.14057556685003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 151 -a 42 h -t 302.14057556685003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 151 -a 42 + -t 302.14057556685003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 151 -a 42 - -t 302.14057556685003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 151 -a 42 h -t 302.14057556685003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 151 -a 42 r -t 302.15191956685004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 151 -a 42 r -t 302.15191956685004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 151 -a 42 + -t 302.16416438652999 -s 20 -d 21 -p SRM -e 168 -c 42 -i 153 -a 42 - -t 302.16416438652999 -s 20 -d 21 -p SRM -e 168 -c 42 -i 153 -a 42 h -t 302.16416438652999 -s 20 -d 21 -p SRM -e 168 -c 42 -i 153 -a 42 + -t 302.16416438652999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 153 -a 42 - -t 302.16416438652999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 153 -a 42 h -t 302.16416438652999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 153 -a 42 r -t 302.17550838653 -s 20 -d 21 -p SRM -e 168 -c 42 -i 153 -a 42 + -t 302.17550838653 -s 21 -d 23 -p SRM -e 168 -c 42 -i 153 -a 42 - -t 302.17550838653 -s 21 -d 23 -p SRM -e 168 -c 42 -i 153 -a 42 h -t 302.17550838653 -s 21 -d 23 -p SRM -e 168 -c 42 -i 153 -a 42 + -t 302.17550838653 -s 21 -d 24 -p SRM -e 168 -c 42 -i 153 -a 42 - -t 302.17550838653 -s 21 -d 24 -p SRM -e 168 -c 42 -i 153 -a 42 h -t 302.17550838653 -s 21 -d 24 -p SRM -e 168 -c 42 -i 153 -a 42 r -t 302.17550838653 -s 20 -d 22 -p SRM -e 168 -c 42 -i 153 -a 42 r -t 302.18685238653001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 153 -a 42 + -t 302.18685238653001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 153 -a 42 - -t 302.18685238653001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 153 -a 42 h -t 302.18685238653001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 153 -a 42 + -t 302.18685238653001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 153 -a 42 - -t 302.18685238653001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 153 -a 42 h -t 302.18685238653001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 153 -a 42 r -t 302.18685238653001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 153 -a 42 r -t 302.19819638653001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 153 -a 42 r -t 302.19819638653001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 153 -a 42 + -t 302.19819638653001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 153 -a 42 - -t 302.19819638653001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 153 -a 42 h -t 302.19819638653001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 153 -a 42 + -t 302.19819638653001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 153 -a 42 - -t 302.19819638653001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 153 -a 42 h -t 302.19819638653001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 153 -a 42 r -t 302.20954038653002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 153 -a 42 r -t 302.20954038653002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 153 -a 42 + -t 302.26241317701999 -s 16 -d 13 -p SRM -e 20 -c 0 -i 152 -a 0 - -t 302.26241317701999 -s 16 -d 13 -p SRM -e 20 -c 0 -i 152 -a 0 h -t 302.26241317701999 -s 16 -d 13 -p SRM -e 20 -c 0 -i 152 -a 0 + -t 302.26241317701999 -s 16 -d 17 -p SRM -e 20 -c 0 -i 152 -a 0 - -t 302.26241317701999 -s 16 -d 17 -p SRM -e 20 -c 0 -i 152 -a 0 h -t 302.26241317701999 -s 16 -d 17 -p SRM -e 20 -c 0 -i 152 -a 0 + -t 302.26241317701999 -s 16 -d 18 -p SRM -e 20 -c 0 -i 152 -a 0 - -t 302.26241317701999 -s 16 -d 18 -p SRM -e 20 -c 0 -i 152 -a 0 h -t 302.26241317701999 -s 16 -d 18 -p SRM -e 20 -c 0 -i 152 -a 0 v -t 302.26241317701999 sim_annotation 302.26241317701999 15 302.26241317701999: node 16 sends request for msg (0:10) m -t 302.26241317701999 -s 16 -n _o38:1:q -c magenta -h square r -t 302.27257317701998 -s 16 -d 13 -p SRM -e 20 -c 0 -i 152 -a 0 + -t 302.27257317701998 -s 13 -d 11 -p SRM -e 20 -c 0 -i 152 -a 0 - -t 302.27257317701998 -s 13 -d 11 -p SRM -e 20 -c 0 -i 152 -a 0 h -t 302.27257317701998 -s 13 -d 11 -p SRM -e 20 -c 0 -i 152 -a 0 + -t 302.27257317701998 -s 13 -d 15 -p SRM -e 20 -c 0 -i 152 -a 0 - -t 302.27257317701998 -s 13 -d 15 -p SRM -e 20 -c 0 -i 152 -a 0 h -t 302.27257317701998 -s 13 -d 15 -p SRM -e 20 -c 0 -i 152 -a 0 r -t 302.27257317701998 -s 16 -d 17 -p SRM -e 20 -c 0 -i 152 -a 0 r -t 302.27257317701998 -s 16 -d 18 -p SRM -e 20 -c 0 -i 152 -a 0 r -t 302.28273317701996 -s 13 -d 11 -p SRM -e 20 -c 0 -i 152 -a 0 + -t 302.28273317701996 -s 11 -d 10 -p SRM -e 20 -c 0 -i 152 -a 0 - -t 302.28273317701996 -s 11 -d 10 -p SRM -e 20 -c 0 -i 152 -a 0 h -t 302.28273317701996 -s 11 -d 10 -p SRM -e 20 -c 0 -i 152 -a 0 + -t 302.28273317701996 -s 11 -d 14 -p SRM -e 20 -c 0 -i 152 -a 0 - -t 302.28273317701996 -s 11 -d 14 -p SRM -e 20 -c 0 -i 152 -a 0 h -t 302.28273317701996 -s 11 -d 14 -p SRM -e 20 -c 0 -i 152 -a 0 r -t 302.28273317701996 -s 13 -d 15 -p SRM -e 20 -c 0 -i 152 -a 0 + -t 302.29018515498001 -s 13 -d 11 -p SRM -e 1300 -c 0 -i 153 -a 0 - -t 302.29018515498001 -s 13 -d 11 -p SRM -e 1300 -c 0 -i 153 -a 0 h -t 302.29018515498001 -s 13 -d 11 -p SRM -e 1300 -c 0 -i 153 -a 0 + -t 302.29018515498001 -s 13 -d 15 -p SRM -e 1300 -c 0 -i 153 -a 0 - -t 302.29018515498001 -s 13 -d 15 -p SRM -e 1300 -c 0 -i 153 -a 0 h -t 302.29018515498001 -s 13 -d 15 -p SRM -e 1300 -c 0 -i 153 -a 0 + -t 302.29018515498001 -s 13 -d 16 -p SRM -e 1300 -c 0 -i 153 -a 0 - -t 302.29018515498001 -s 13 -d 16 -p SRM -e 1300 -c 0 -i 153 -a 0 h -t 302.29018515498001 -s 13 -d 16 -p SRM -e 1300 -c 0 -i 153 -a 0 v -t 302.29018515498001 sim_annotation 302.29018515498001 16 302.29018515498001: node 13 sends repair for msg (0:10) m -t 302.29018515498001 -s 13 -n _o23:1:p -c magenta -h circle r -t 302.29289317701995 -s 11 -d 10 -p SRM -e 20 -c 0 -i 152 -a 0 + -t 302.29289317701995 -s 10 -d 12 -p SRM -e 20 -c 0 -i 152 -a 0 - -t 302.29289317701995 -s 10 -d 12 -p SRM -e 20 -c 0 -i 152 -a 0 h -t 302.29289317701995 -s 10 -d 12 -p SRM -e 20 -c 0 -i 152 -a 0 r -t 302.29289317701995 -s 11 -d 14 -p SRM -e 20 -c 0 -i 152 -a 0 r -t 302.30305317701993 -s 10 -d 12 -p SRM -e 20 -c 0 -i 152 -a 0 r -t 302.31058515498 -s 13 -d 11 -p SRM -e 1300 -c 0 -i 153 -a 0 + -t 302.31058515498 -s 11 -d 10 -p SRM -e 1300 -c 0 -i 153 -a 0 - -t 302.31058515498 -s 11 -d 10 -p SRM -e 1300 -c 0 -i 153 -a 0 h -t 302.31058515498 -s 11 -d 10 -p SRM -e 1300 -c 0 -i 153 -a 0 + -t 302.31058515498 -s 11 -d 14 -p SRM -e 1300 -c 0 -i 153 -a 0 - -t 302.31058515498 -s 11 -d 14 -p SRM -e 1300 -c 0 -i 153 -a 0 h -t 302.31058515498 -s 11 -d 14 -p SRM -e 1300 -c 0 -i 153 -a 0 r -t 302.31058515498 -s 13 -d 15 -p SRM -e 1300 -c 0 -i 153 -a 0 r -t 302.31058515498 -s 13 -d 16 -p SRM -e 1300 -c 0 -i 153 -a 0 + -t 302.31058515498 -s 16 -d 17 -p SRM -e 1300 -c 0 -i 153 -a 0 - -t 302.31058515498 -s 16 -d 17 -p SRM -e 1300 -c 0 -i 153 -a 0 h -t 302.31058515498 -s 16 -d 17 -p SRM -e 1300 -c 0 -i 153 -a 0 + -t 302.31058515498 -s 16 -d 18 -p SRM -e 1300 -c 0 -i 153 -a 0 - -t 302.31058515498 -s 16 -d 18 -p SRM -e 1300 -c 0 -i 153 -a 0 h -t 302.31058515498 -s 16 -d 18 -p SRM -e 1300 -c 0 -i 153 -a 0 m -t 302.31058515498 -s 16 -n _o38:1:q -c magenta -h square -X m -t 302.32618515498001 -s 13 -n _o23:1:p -c magenta -h circle -X r -t 302.33098515498 -s 11 -d 10 -p SRM -e 1300 -c 0 -i 153 -a 0 + -t 302.33098515498 -s 10 -d 12 -p SRM -e 1300 -c 0 -i 153 -a 0 - -t 302.33098515498 -s 10 -d 12 -p SRM -e 1300 -c 0 -i 153 -a 0 h -t 302.33098515498 -s 10 -d 12 -p SRM -e 1300 -c 0 -i 153 -a 0 r -t 302.33098515498 -s 11 -d 14 -p SRM -e 1300 -c 0 -i 153 -a 0 r -t 302.33098515498 -s 16 -d 17 -p SRM -e 1300 -c 0 -i 153 -a 0 r -t 302.33098515498 -s 16 -d 18 -p SRM -e 1300 -c 0 -i 153 -a 0 r -t 302.35138515497999 -s 10 -d 12 -p SRM -e 1300 -c 0 -i 153 -a 0 + -t 302.41643217575 -s 17 -d 16 -p SRM -e 168 -c 42 -i 154 -a 42 - -t 302.41643217575 -s 17 -d 16 -p SRM -e 168 -c 42 -i 154 -a 42 h -t 302.41643217575 -s 17 -d 16 -p SRM -e 168 -c 42 -i 154 -a 42 r -t 302.42777617575001 -s 17 -d 16 -p SRM -e 168 -c 42 -i 154 -a 42 + -t 302.42777617575001 -s 16 -d 13 -p SRM -e 168 -c 42 -i 154 -a 42 - -t 302.42777617575001 -s 16 -d 13 -p SRM -e 168 -c 42 -i 154 -a 42 h -t 302.42777617575001 -s 16 -d 13 -p SRM -e 168 -c 42 -i 154 -a 42 + -t 302.42777617575001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 154 -a 42 - -t 302.42777617575001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 154 -a 42 h -t 302.42777617575001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 154 -a 42 r -t 302.43912017575002 -s 16 -d 13 -p SRM -e 168 -c 42 -i 154 -a 42 + -t 302.43912017575002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 154 -a 42 - -t 302.43912017575002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 154 -a 42 h -t 302.43912017575002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 154 -a 42 + -t 302.43912017575002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 154 -a 42 - -t 302.43912017575002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 154 -a 42 h -t 302.43912017575002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 154 -a 42 r -t 302.43912017575002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 154 -a 42 r -t 302.45046417575003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 154 -a 42 + -t 302.45046417575003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 154 -a 42 - -t 302.45046417575003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 154 -a 42 h -t 302.45046417575003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 154 -a 42 + -t 302.45046417575003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 154 -a 42 - -t 302.45046417575003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 154 -a 42 h -t 302.45046417575003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 154 -a 42 r -t 302.45046417575003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 154 -a 42 r -t 302.46180817575004 -s 11 -d 10 -p SRM -e 168 -c 42 -i 154 -a 42 + -t 302.46180817575004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 154 -a 42 - -t 302.46180817575004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 154 -a 42 h -t 302.46180817575004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 154 -a 42 r -t 302.46180817575004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 154 -a 42 r -t 302.47315217575004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 154 -a 42 + -t 302.56545135569002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 155 -a 42 - -t 302.56545135569002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 155 -a 42 h -t 302.56545135569002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 155 -a 42 + -t 302.56545135569002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 155 -a 42 - -t 302.56545135569002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 155 -a 42 h -t 302.56545135569002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 155 -a 42 + -t 302.56545135569002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 155 -a 42 - -t 302.56545135569002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 155 -a 42 h -t 302.56545135569002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 155 -a 42 r -t 302.57679535569002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 155 -a 42 + -t 302.57679535569002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 155 -a 42 - -t 302.57679535569002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 155 -a 42 h -t 302.57679535569002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 155 -a 42 + -t 302.57679535569002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 155 -a 42 - -t 302.57679535569002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 155 -a 42 h -t 302.57679535569002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 155 -a 42 r -t 302.57679535569002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 155 -a 42 r -t 302.57679535569002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 155 -a 42 + -t 302.57679535569002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 155 -a 42 - -t 302.57679535569002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 155 -a 42 h -t 302.57679535569002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 155 -a 42 + -t 302.57679535569002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 155 -a 42 - -t 302.57679535569002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 155 -a 42 h -t 302.57679535569002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 155 -a 42 r -t 302.58813935569003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 155 -a 42 + -t 302.58813935569003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 155 -a 42 - -t 302.58813935569003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 155 -a 42 h -t 302.58813935569003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 155 -a 42 r -t 302.58813935569003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 155 -a 42 r -t 302.58813935569003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 155 -a 42 r -t 302.58813935569003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 155 -a 42 r -t 302.59948335569004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 155 -a 42 + -t 303.15427382879 -s 22 -d 20 -p SRM -e 168 -c 42 -i 154 -a 42 - -t 303.15427382879 -s 22 -d 20 -p SRM -e 168 -c 42 -i 154 -a 42 h -t 303.15427382879 -s 22 -d 20 -p SRM -e 168 -c 42 -i 154 -a 42 r -t 303.16561782879 -s 22 -d 20 -p SRM -e 168 -c 42 -i 154 -a 42 + -t 303.16561782879 -s 20 -d 21 -p SRM -e 168 -c 42 -i 154 -a 42 - -t 303.16561782879 -s 20 -d 21 -p SRM -e 168 -c 42 -i 154 -a 42 h -t 303.16561782879 -s 20 -d 21 -p SRM -e 168 -c 42 -i 154 -a 42 r -t 303.17696182879001 -s 20 -d 21 -p SRM -e 168 -c 42 -i 154 -a 42 + -t 303.17696182879001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 154 -a 42 - -t 303.17696182879001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 154 -a 42 h -t 303.17696182879001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 154 -a 42 + -t 303.17696182879001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 154 -a 42 - -t 303.17696182879001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 154 -a 42 h -t 303.17696182879001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 154 -a 42 r -t 303.18830582879002 -s 21 -d 23 -p SRM -e 168 -c 42 -i 154 -a 42 + -t 303.18830582879002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 154 -a 42 - -t 303.18830582879002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 154 -a 42 h -t 303.18830582879002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 154 -a 42 + -t 303.18830582879002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 154 -a 42 - -t 303.18830582879002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 154 -a 42 h -t 303.18830582879002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 154 -a 42 r -t 303.18830582879002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 154 -a 42 r -t 303.19964982879003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 154 -a 42 r -t 303.19964982879003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 154 -a 42 + -t 303.19964982879003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 154 -a 42 - -t 303.19964982879003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 154 -a 42 h -t 303.19964982879003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 154 -a 42 + -t 303.19964982879003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 154 -a 42 - -t 303.19964982879003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 154 -a 42 h -t 303.19964982879003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 154 -a 42 r -t 303.21099382879004 -s 26 -d 27 -p SRM -e 168 -c 42 -i 154 -a 42 r -t 303.21099382879004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 154 -a 42 + -t 303.86096619505997 -s 21 -d 20 -p SRM -e 168 -c 42 -i 155 -a 42 - -t 303.86096619505997 -s 21 -d 20 -p SRM -e 168 -c 42 -i 155 -a 42 h -t 303.86096619505997 -s 21 -d 20 -p SRM -e 168 -c 42 -i 155 -a 42 + -t 303.86096619505997 -s 21 -d 23 -p SRM -e 168 -c 42 -i 155 -a 42 - -t 303.86096619505997 -s 21 -d 23 -p SRM -e 168 -c 42 -i 155 -a 42 h -t 303.86096619505997 -s 21 -d 23 -p SRM -e 168 -c 42 -i 155 -a 42 + -t 303.86096619505997 -s 21 -d 24 -p SRM -e 168 -c 42 -i 155 -a 42 - -t 303.86096619505997 -s 21 -d 24 -p SRM -e 168 -c 42 -i 155 -a 42 h -t 303.86096619505997 -s 21 -d 24 -p SRM -e 168 -c 42 -i 155 -a 42 r -t 303.87231019505998 -s 21 -d 20 -p SRM -e 168 -c 42 -i 155 -a 42 + -t 303.87231019505998 -s 20 -d 22 -p SRM -e 168 -c 42 -i 155 -a 42 - -t 303.87231019505998 -s 20 -d 22 -p SRM -e 168 -c 42 -i 155 -a 42 h -t 303.87231019505998 -s 20 -d 22 -p SRM -e 168 -c 42 -i 155 -a 42 r -t 303.87231019505998 -s 21 -d 23 -p SRM -e 168 -c 42 -i 155 -a 42 + -t 303.87231019505998 -s 23 -d 25 -p SRM -e 168 -c 42 -i 155 -a 42 - -t 303.87231019505998 -s 23 -d 25 -p SRM -e 168 -c 42 -i 155 -a 42 h -t 303.87231019505998 -s 23 -d 25 -p SRM -e 168 -c 42 -i 155 -a 42 + -t 303.87231019505998 -s 23 -d 26 -p SRM -e 168 -c 42 -i 155 -a 42 - -t 303.87231019505998 -s 23 -d 26 -p SRM -e 168 -c 42 -i 155 -a 42 h -t 303.87231019505998 -s 23 -d 26 -p SRM -e 168 -c 42 -i 155 -a 42 r -t 303.87231019505998 -s 21 -d 24 -p SRM -e 168 -c 42 -i 155 -a 42 r -t 303.88365419505999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 155 -a 42 r -t 303.88365419505999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 155 -a 42 r -t 303.88365419505999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 155 -a 42 + -t 303.88365419505999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 155 -a 42 - -t 303.88365419505999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 155 -a 42 h -t 303.88365419505999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 155 -a 42 + -t 303.88365419505999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 155 -a 42 - -t 303.88365419505999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 155 -a 42 h -t 303.88365419505999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 155 -a 42 r -t 303.89499819506 -s 26 -d 27 -p SRM -e 168 -c 42 -i 155 -a 42 r -t 303.89499819506 -s 26 -d 28 -p SRM -e 168 -c 42 -i 155 -a 42 + -t 304.19988228086999 -s 23 -d 21 -p SRM -e 168 -c 42 -i 156 -a 42 - -t 304.19988228086999 -s 23 -d 21 -p SRM -e 168 -c 42 -i 156 -a 42 h -t 304.19988228086999 -s 23 -d 21 -p SRM -e 168 -c 42 -i 156 -a 42 + -t 304.19988228086999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 156 -a 42 - -t 304.19988228086999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 156 -a 42 h -t 304.19988228086999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 156 -a 42 + -t 304.19988228086999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 156 -a 42 - -t 304.19988228086999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 156 -a 42 h -t 304.19988228086999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 156 -a 42 r -t 304.21122628086999 -s 23 -d 21 -p SRM -e 168 -c 42 -i 156 -a 42 + -t 304.21122628086999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 156 -a 42 - -t 304.21122628086999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 156 -a 42 h -t 304.21122628086999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 156 -a 42 + -t 304.21122628086999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 156 -a 42 - -t 304.21122628086999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 156 -a 42 h -t 304.21122628086999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 156 -a 42 r -t 304.21122628086999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 156 -a 42 r -t 304.21122628086999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 156 -a 42 + -t 304.21122628086999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 156 -a 42 - -t 304.21122628086999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 156 -a 42 h -t 304.21122628086999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 156 -a 42 + -t 304.21122628086999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 156 -a 42 - -t 304.21122628086999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 156 -a 42 h -t 304.21122628086999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 156 -a 42 r -t 304.22257028087 -s 21 -d 20 -p SRM -e 168 -c 42 -i 156 -a 42 + -t 304.22257028087 -s 20 -d 22 -p SRM -e 168 -c 42 -i 156 -a 42 - -t 304.22257028087 -s 20 -d 22 -p SRM -e 168 -c 42 -i 156 -a 42 h -t 304.22257028087 -s 20 -d 22 -p SRM -e 168 -c 42 -i 156 -a 42 r -t 304.22257028087 -s 21 -d 24 -p SRM -e 168 -c 42 -i 156 -a 42 r -t 304.22257028087 -s 26 -d 27 -p SRM -e 168 -c 42 -i 156 -a 42 r -t 304.22257028087 -s 26 -d 28 -p SRM -e 168 -c 42 -i 156 -a 42 r -t 304.23391428087001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 156 -a 42 + -t 304.86614384612 -s 11 -d 10 -p SRM -e 168 -c 42 -i 156 -a 42 - -t 304.86614384612 -s 11 -d 10 -p SRM -e 168 -c 42 -i 156 -a 42 h -t 304.86614384612 -s 11 -d 10 -p SRM -e 168 -c 42 -i 156 -a 42 + -t 304.86614384612 -s 11 -d 13 -p SRM -e 168 -c 42 -i 156 -a 42 - -t 304.86614384612 -s 11 -d 13 -p SRM -e 168 -c 42 -i 156 -a 42 h -t 304.86614384612 -s 11 -d 13 -p SRM -e 168 -c 42 -i 156 -a 42 + -t 304.86614384612 -s 11 -d 14 -p SRM -e 168 -c 42 -i 156 -a 42 - -t 304.86614384612 -s 11 -d 14 -p SRM -e 168 -c 42 -i 156 -a 42 h -t 304.86614384612 -s 11 -d 14 -p SRM -e 168 -c 42 -i 156 -a 42 r -t 304.87748784612 -s 11 -d 10 -p SRM -e 168 -c 42 -i 156 -a 42 + -t 304.87748784612 -s 10 -d 12 -p SRM -e 168 -c 42 -i 156 -a 42 - -t 304.87748784612 -s 10 -d 12 -p SRM -e 168 -c 42 -i 156 -a 42 h -t 304.87748784612 -s 10 -d 12 -p SRM -e 168 -c 42 -i 156 -a 42 r -t 304.87748784612 -s 11 -d 13 -p SRM -e 168 -c 42 -i 156 -a 42 + -t 304.87748784612 -s 13 -d 15 -p SRM -e 168 -c 42 -i 156 -a 42 - -t 304.87748784612 -s 13 -d 15 -p SRM -e 168 -c 42 -i 156 -a 42 h -t 304.87748784612 -s 13 -d 15 -p SRM -e 168 -c 42 -i 156 -a 42 + -t 304.87748784612 -s 13 -d 16 -p SRM -e 168 -c 42 -i 156 -a 42 - -t 304.87748784612 -s 13 -d 16 -p SRM -e 168 -c 42 -i 156 -a 42 h -t 304.87748784612 -s 13 -d 16 -p SRM -e 168 -c 42 -i 156 -a 42 r -t 304.87748784612 -s 11 -d 14 -p SRM -e 168 -c 42 -i 156 -a 42 r -t 304.88883184612001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 156 -a 42 r -t 304.88883184612001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 156 -a 42 r -t 304.88883184612001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 156 -a 42 + -t 304.88883184612001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 156 -a 42 - -t 304.88883184612001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 156 -a 42 h -t 304.88883184612001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 156 -a 42 + -t 304.88883184612001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 156 -a 42 - -t 304.88883184612001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 156 -a 42 h -t 304.88883184612001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 156 -a 42 r -t 304.90017584612002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 156 -a 42 r -t 304.90017584612002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 156 -a 42 + -t 306.35571868476404 -s 15 -d 13 -p cbr -e 1280 -c 5 -i 157 -a 5 + -t 306.35571868476404 -s 25 -d 23 -p cbr -e 1280 -c 5 -i 157 -a 5 - -t 306.35571868476404 -s 15 -d 13 -p cbr -e 1280 -c 5 -i 157 -a 5 - -t 306.35571868476404 -s 25 -d 23 -p cbr -e 1280 -c 5 -i 157 -a 5 h -t 306.35571868476404 -s 15 -d 13 -p cbr -e 1280 -c 5 -i 157 -a 5 h -t 306.35571868476404 -s 25 -d 23 -p cbr -e 1280 -c 5 -i 157 -a 5 r -t 306.37595868476404 -s 15 -d 13 -p cbr -e 1280 -c 5 -i 157 -a 5 + -t 306.37595868476404 -s 13 -d 11 -p cbr -e 1280 -c 5 -i 157 -a 5 - -t 306.37595868476404 -s 13 -d 11 -p cbr -e 1280 -c 5 -i 157 -a 5 h -t 306.37595868476404 -s 13 -d 11 -p cbr -e 1280 -c 5 -i 157 -a 5 + -t 306.37595868476404 -s 13 -d 16 -p cbr -e 1280 -c 5 -i 157 -a 5 - -t 306.37595868476404 -s 13 -d 16 -p cbr -e 1280 -c 5 -i 157 -a 5 h -t 306.37595868476404 -s 13 -d 16 -p cbr -e 1280 -c 5 -i 157 -a 5 r -t 306.37595868476404 -s 25 -d 23 -p cbr -e 1280 -c 5 -i 157 -a 5 + -t 306.37595868476404 -s 23 -d 21 -p cbr -e 1280 -c 5 -i 157 -a 5 - -t 306.37595868476404 -s 23 -d 21 -p cbr -e 1280 -c 5 -i 157 -a 5 h -t 306.37595868476404 -s 23 -d 21 -p cbr -e 1280 -c 5 -i 157 -a 5 + -t 306.37595868476404 -s 23 -d 26 -p cbr -e 1280 -c 5 -i 157 -a 5 - -t 306.37595868476404 -s 23 -d 26 -p cbr -e 1280 -c 5 -i 157 -a 5 h -t 306.37595868476404 -s 23 -d 26 -p cbr -e 1280 -c 5 -i 157 -a 5 r -t 306.39619868476404 -s 13 -d 11 -p cbr -e 1280 -c 5 -i 157 -a 5 + -t 306.39619868476404 -s 11 -d 10 -p cbr -e 1280 -c 5 -i 157 -a 5 - -t 306.39619868476404 -s 11 -d 10 -p cbr -e 1280 -c 5 -i 157 -a 5 h -t 306.39619868476404 -s 11 -d 10 -p cbr -e 1280 -c 5 -i 157 -a 5 + -t 306.39619868476404 -s 11 -d 14 -p cbr -e 1280 -c 5 -i 157 -a 5 - -t 306.39619868476404 -s 11 -d 14 -p cbr -e 1280 -c 5 -i 157 -a 5 h -t 306.39619868476404 -s 11 -d 14 -p cbr -e 1280 -c 5 -i 157 -a 5 r -t 306.39619868476404 -s 13 -d 16 -p cbr -e 1280 -c 5 -i 157 -a 5 + -t 306.39619868476404 -s 16 -d 17 -p cbr -e 1280 -c 5 -i 157 -a 5 - -t 306.39619868476404 -s 16 -d 17 -p cbr -e 1280 -c 5 -i 157 -a 5 h -t 306.39619868476404 -s 16 -d 17 -p cbr -e 1280 -c 5 -i 157 -a 5 + -t 306.39619868476404 -s 16 -d 18 -p cbr -e 1280 -c 5 -i 157 -a 5 - -t 306.39619868476404 -s 16 -d 18 -p cbr -e 1280 -c 5 -i 157 -a 5 h -t 306.39619868476404 -s 16 -d 18 -p cbr -e 1280 -c 5 -i 157 -a 5 r -t 306.39619868476404 -s 23 -d 21 -p cbr -e 1280 -c 5 -i 157 -a 5 + -t 306.39619868476404 -s 21 -d 20 -p cbr -e 1280 -c 5 -i 157 -a 5 - -t 306.39619868476404 -s 21 -d 20 -p cbr -e 1280 -c 5 -i 157 -a 5 h -t 306.39619868476404 -s 21 -d 20 -p cbr -e 1280 -c 5 -i 157 -a 5 + -t 306.39619868476404 -s 21 -d 24 -p cbr -e 1280 -c 5 -i 157 -a 5 - -t 306.39619868476404 -s 21 -d 24 -p cbr -e 1280 -c 5 -i 157 -a 5 h -t 306.39619868476404 -s 21 -d 24 -p cbr -e 1280 -c 5 -i 157 -a 5 r -t 306.39619868476404 -s 23 -d 26 -p cbr -e 1280 -c 5 -i 157 -a 5 + -t 306.39619868476404 -s 26 -d 27 -p cbr -e 1280 -c 5 -i 157 -a 5 - -t 306.39619868476404 -s 26 -d 27 -p cbr -e 1280 -c 5 -i 157 -a 5 h -t 306.39619868476404 -s 26 -d 27 -p cbr -e 1280 -c 5 -i 157 -a 5 + -t 306.39619868476404 -s 26 -d 28 -p cbr -e 1280 -c 5 -i 157 -a 5 - -t 306.39619868476404 -s 26 -d 28 -p cbr -e 1280 -c 5 -i 157 -a 5 h -t 306.39619868476404 -s 26 -d 28 -p cbr -e 1280 -c 5 -i 157 -a 5 r -t 306.41643868476405 -s 11 -d 10 -p cbr -e 1280 -c 5 -i 157 -a 5 + -t 306.41643868476405 -s 10 -d 12 -p cbr -e 1280 -c 5 -i 157 -a 5 - -t 306.41643868476405 -s 10 -d 12 -p cbr -e 1280 -c 5 -i 157 -a 5 h -t 306.41643868476405 -s 10 -d 12 -p cbr -e 1280 -c 5 -i 157 -a 5 r -t 306.41643868476405 -s 11 -d 14 -p cbr -e 1280 -c 5 -i 157 -a 5 r -t 306.41643868476405 -s 16 -d 17 -p cbr -e 1280 -c 5 -i 157 -a 5 r -t 306.41643868476405 -s 16 -d 18 -p cbr -e 1280 -c 5 -i 157 -a 5 r -t 306.41643868476405 -s 21 -d 20 -p cbr -e 1280 -c 5 -i 157 -a 5 + -t 306.41643868476405 -s 20 -d 22 -p cbr -e 1280 -c 5 -i 157 -a 5 - -t 306.41643868476405 -s 20 -d 22 -p cbr -e 1280 -c 5 -i 157 -a 5 h -t 306.41643868476405 -s 20 -d 22 -p cbr -e 1280 -c 5 -i 157 -a 5 r -t 306.41643868476405 -s 21 -d 24 -p cbr -e 1280 -c 5 -i 157 -a 5 r -t 306.41643868476405 -s 26 -d 27 -p cbr -e 1280 -c 5 -i 157 -a 5 r -t 306.41643868476405 -s 26 -d 28 -p cbr -e 1280 -c 5 -i 157 -a 5 r -t 306.43667868476405 -s 10 -d 12 -p cbr -e 1280 -c 5 -i 157 -a 5 r -t 306.43667868476405 -s 20 -d 22 -p cbr -e 1280 -c 5 -i 157 -a 5 + -t 308.22630417239998 -s 18 -d 16 -p SRM -e 168 -c 42 -i 158 -a 42 - -t 308.22630417239998 -s 18 -d 16 -p SRM -e 168 -c 42 -i 158 -a 42 h -t 308.22630417239998 -s 18 -d 16 -p SRM -e 168 -c 42 -i 158 -a 42 r -t 308.23764817239999 -s 18 -d 16 -p SRM -e 168 -c 42 -i 158 -a 42 + -t 308.23764817239999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 158 -a 42 - -t 308.23764817239999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 158 -a 42 h -t 308.23764817239999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 158 -a 42 + -t 308.23764817239999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 158 -a 42 - -t 308.23764817239999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 158 -a 42 h -t 308.23764817239999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 158 -a 42 r -t 308.24899217239999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 158 -a 42 + -t 308.24899217239999 -s 13 -d 11 -p SRM -e 168 -c 42 -i 158 -a 42 - -t 308.24899217239999 -s 13 -d 11 -p SRM -e 168 -c 42 -i 158 -a 42 h -t 308.24899217239999 -s 13 -d 11 -p SRM -e 168 -c 42 -i 158 -a 42 + -t 308.24899217239999 -s 13 -d 15 -p SRM -e 168 -c 42 -i 158 -a 42 - -t 308.24899217239999 -s 13 -d 15 -p SRM -e 168 -c 42 -i 158 -a 42 h -t 308.24899217239999 -s 13 -d 15 -p SRM -e 168 -c 42 -i 158 -a 42 r -t 308.24899217239999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 158 -a 42 r -t 308.2603361724 -s 13 -d 11 -p SRM -e 168 -c 42 -i 158 -a 42 + -t 308.2603361724 -s 11 -d 10 -p SRM -e 168 -c 42 -i 158 -a 42 - -t 308.2603361724 -s 11 -d 10 -p SRM -e 168 -c 42 -i 158 -a 42 h -t 308.2603361724 -s 11 -d 10 -p SRM -e 168 -c 42 -i 158 -a 42 + -t 308.2603361724 -s 11 -d 14 -p SRM -e 168 -c 42 -i 158 -a 42 - -t 308.2603361724 -s 11 -d 14 -p SRM -e 168 -c 42 -i 158 -a 42 h -t 308.2603361724 -s 11 -d 14 -p SRM -e 168 -c 42 -i 158 -a 42 r -t 308.2603361724 -s 13 -d 15 -p SRM -e 168 -c 42 -i 158 -a 42 r -t 308.27168017240001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 158 -a 42 + -t 308.27168017240001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 158 -a 42 - -t 308.27168017240001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 158 -a 42 h -t 308.27168017240001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 158 -a 42 r -t 308.27168017240001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 158 -a 42 r -t 308.28302417240002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 158 -a 42 + -t 308.93422993551496 -s 11 -d 10 -p cbr -e 1280 -c 1 -i 159 -a 1 + -t 308.93422993551496 -s 21 -d 20 -p cbr -e 1280 -c 1 -i 158 -a 1 - -t 308.93422993551496 -s 11 -d 10 -p cbr -e 1280 -c 1 -i 159 -a 1 - -t 308.93422993551496 -s 21 -d 20 -p cbr -e 1280 -c 1 -i 158 -a 1 h -t 308.93422993551496 -s 11 -d 10 -p cbr -e 1280 -c 1 -i 159 -a 1 + -t 308.93422993551496 -s 11 -d 13 -p cbr -e 1280 -c 1 -i 159 -a 1 - -t 308.93422993551496 -s 11 -d 13 -p cbr -e 1280 -c 1 -i 159 -a 1 h -t 308.93422993551496 -s 11 -d 13 -p cbr -e 1280 -c 1 -i 159 -a 1 + -t 308.93422993551496 -s 11 -d 14 -p cbr -e 1280 -c 1 -i 159 -a 1 - -t 308.93422993551496 -s 11 -d 14 -p cbr -e 1280 -c 1 -i 159 -a 1 h -t 308.93422993551496 -s 11 -d 14 -p cbr -e 1280 -c 1 -i 159 -a 1 h -t 308.93422993551496 -s 21 -d 20 -p cbr -e 1280 -c 1 -i 158 -a 1 + -t 308.93422993551496 -s 21 -d 23 -p cbr -e 1280 -c 1 -i 158 -a 1 - -t 308.93422993551496 -s 21 -d 23 -p cbr -e 1280 -c 1 -i 158 -a 1 h -t 308.93422993551496 -s 21 -d 23 -p cbr -e 1280 -c 1 -i 158 -a 1 + -t 308.93422993551496 -s 21 -d 24 -p cbr -e 1280 -c 1 -i 158 -a 1 - -t 308.93422993551496 -s 21 -d 24 -p cbr -e 1280 -c 1 -i 158 -a 1 h -t 308.93422993551496 -s 21 -d 24 -p cbr -e 1280 -c 1 -i 158 -a 1 r -t 308.95446993551496 -s 11 -d 10 -p cbr -e 1280 -c 1 -i 159 -a 1 + -t 308.95446993551496 -s 10 -d 12 -p cbr -e 1280 -c 1 -i 159 -a 1 - -t 308.95446993551496 -s 10 -d 12 -p cbr -e 1280 -c 1 -i 159 -a 1 h -t 308.95446993551496 -s 10 -d 12 -p cbr -e 1280 -c 1 -i 159 -a 1 r -t 308.95446993551496 -s 11 -d 13 -p cbr -e 1280 -c 1 -i 159 -a 1 + -t 308.95446993551496 -s 13 -d 15 -p cbr -e 1280 -c 1 -i 159 -a 1 - -t 308.95446993551496 -s 13 -d 15 -p cbr -e 1280 -c 1 -i 159 -a 1 h -t 308.95446993551496 -s 13 -d 15 -p cbr -e 1280 -c 1 -i 159 -a 1 + -t 308.95446993551496 -s 13 -d 16 -p cbr -e 1280 -c 1 -i 159 -a 1 - -t 308.95446993551496 -s 13 -d 16 -p cbr -e 1280 -c 1 -i 159 -a 1 h -t 308.95446993551496 -s 13 -d 16 -p cbr -e 1280 -c 1 -i 159 -a 1 r -t 308.95446993551496 -s 11 -d 14 -p cbr -e 1280 -c 1 -i 159 -a 1 r -t 308.95446993551496 -s 21 -d 20 -p cbr -e 1280 -c 1 -i 158 -a 1 + -t 308.95446993551496 -s 20 -d 22 -p cbr -e 1280 -c 1 -i 158 -a 1 - -t 308.95446993551496 -s 20 -d 22 -p cbr -e 1280 -c 1 -i 158 -a 1 h -t 308.95446993551496 -s 20 -d 22 -p cbr -e 1280 -c 1 -i 158 -a 1 r -t 308.95446993551496 -s 21 -d 23 -p cbr -e 1280 -c 1 -i 158 -a 1 + -t 308.95446993551496 -s 23 -d 25 -p cbr -e 1280 -c 1 -i 158 -a 1 - -t 308.95446993551496 -s 23 -d 25 -p cbr -e 1280 -c 1 -i 158 -a 1 h -t 308.95446993551496 -s 23 -d 25 -p cbr -e 1280 -c 1 -i 158 -a 1 + -t 308.95446993551496 -s 23 -d 26 -p cbr -e 1280 -c 1 -i 158 -a 1 - -t 308.95446993551496 -s 23 -d 26 -p cbr -e 1280 -c 1 -i 158 -a 1 h -t 308.95446993551496 -s 23 -d 26 -p cbr -e 1280 -c 1 -i 158 -a 1 r -t 308.95446993551496 -s 21 -d 24 -p cbr -e 1280 -c 1 -i 158 -a 1 r -t 308.97470993551497 -s 10 -d 12 -p cbr -e 1280 -c 1 -i 159 -a 1 r -t 308.97470993551497 -s 13 -d 15 -p cbr -e 1280 -c 1 -i 159 -a 1 r -t 308.97470993551497 -s 13 -d 16 -p cbr -e 1280 -c 1 -i 159 -a 1 + -t 308.97470993551497 -s 16 -d 17 -p cbr -e 1280 -c 1 -i 159 -a 1 - -t 308.97470993551497 -s 16 -d 17 -p cbr -e 1280 -c 1 -i 159 -a 1 h -t 308.97470993551497 -s 16 -d 17 -p cbr -e 1280 -c 1 -i 159 -a 1 + -t 308.97470993551497 -s 16 -d 18 -p cbr -e 1280 -c 1 -i 159 -a 1 - -t 308.97470993551497 -s 16 -d 18 -p cbr -e 1280 -c 1 -i 159 -a 1 h -t 308.97470993551497 -s 16 -d 18 -p cbr -e 1280 -c 1 -i 159 -a 1 r -t 308.97470993551497 -s 20 -d 22 -p cbr -e 1280 -c 1 -i 158 -a 1 r -t 308.97470993551497 -s 23 -d 25 -p cbr -e 1280 -c 1 -i 158 -a 1 r -t 308.97470993551497 -s 23 -d 26 -p cbr -e 1280 -c 1 -i 158 -a 1 + -t 308.97470993551497 -s 26 -d 27 -p cbr -e 1280 -c 1 -i 158 -a 1 - -t 308.97470993551497 -s 26 -d 27 -p cbr -e 1280 -c 1 -i 158 -a 1 h -t 308.97470993551497 -s 26 -d 27 -p cbr -e 1280 -c 1 -i 158 -a 1 + -t 308.97470993551497 -s 26 -d 28 -p cbr -e 1280 -c 1 -i 158 -a 1 - -t 308.97470993551497 -s 26 -d 28 -p cbr -e 1280 -c 1 -i 158 -a 1 h -t 308.97470993551497 -s 26 -d 28 -p cbr -e 1280 -c 1 -i 158 -a 1 r -t 308.99494993551497 -s 16 -d 17 -p cbr -e 1280 -c 1 -i 159 -a 1 r -t 308.99494993551497 -s 16 -d 18 -p cbr -e 1280 -c 1 -i 159 -a 1 r -t 308.99494993551497 -s 26 -d 27 -p cbr -e 1280 -c 1 -i 158 -a 1 r -t 308.99494993551497 -s 26 -d 28 -p cbr -e 1280 -c 1 -i 158 -a 1 + -t 309.98560524148002 -s 28 -d 26 -p SRM -e 168 -c 42 -i 159 -a 42 - -t 309.98560524148002 -s 28 -d 26 -p SRM -e 168 -c 42 -i 159 -a 42 h -t 309.98560524148002 -s 28 -d 26 -p SRM -e 168 -c 42 -i 159 -a 42 r -t 309.99694924148002 -s 28 -d 26 -p SRM -e 168 -c 42 -i 159 -a 42 + -t 309.99694924148002 -s 26 -d 23 -p SRM -e 168 -c 42 -i 159 -a 42 - -t 309.99694924148002 -s 26 -d 23 -p SRM -e 168 -c 42 -i 159 -a 42 h -t 309.99694924148002 -s 26 -d 23 -p SRM -e 168 -c 42 -i 159 -a 42 + -t 309.99694924148002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 159 -a 42 - -t 309.99694924148002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 159 -a 42 h -t 309.99694924148002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 159 -a 42 r -t 310.00829324148003 -s 26 -d 23 -p SRM -e 168 -c 42 -i 159 -a 42 + -t 310.00829324148003 -s 23 -d 21 -p SRM -e 168 -c 42 -i 159 -a 42 - -t 310.00829324148003 -s 23 -d 21 -p SRM -e 168 -c 42 -i 159 -a 42 h -t 310.00829324148003 -s 23 -d 21 -p SRM -e 168 -c 42 -i 159 -a 42 + -t 310.00829324148003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 159 -a 42 - -t 310.00829324148003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 159 -a 42 h -t 310.00829324148003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 159 -a 42 r -t 310.00829324148003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 159 -a 42 r -t 310.01963724148004 -s 23 -d 21 -p SRM -e 168 -c 42 -i 159 -a 42 + -t 310.01963724148004 -s 21 -d 20 -p SRM -e 168 -c 42 -i 159 -a 42 - -t 310.01963724148004 -s 21 -d 20 -p SRM -e 168 -c 42 -i 159 -a 42 h -t 310.01963724148004 -s 21 -d 20 -p SRM -e 168 -c 42 -i 159 -a 42 + -t 310.01963724148004 -s 21 -d 24 -p SRM -e 168 -c 42 -i 159 -a 42 - -t 310.01963724148004 -s 21 -d 24 -p SRM -e 168 -c 42 -i 159 -a 42 h -t 310.01963724148004 -s 21 -d 24 -p SRM -e 168 -c 42 -i 159 -a 42 r -t 310.01963724148004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 159 -a 42 r -t 310.03098124148005 -s 21 -d 20 -p SRM -e 168 -c 42 -i 159 -a 42 + -t 310.03098124148005 -s 20 -d 22 -p SRM -e 168 -c 42 -i 159 -a 42 - -t 310.03098124148005 -s 20 -d 22 -p SRM -e 168 -c 42 -i 159 -a 42 h -t 310.03098124148005 -s 20 -d 22 -p SRM -e 168 -c 42 -i 159 -a 42 r -t 310.03098124148005 -s 21 -d 24 -p SRM -e 168 -c 42 -i 159 -a 42 r -t 310.04232524148006 -s 20 -d 22 -p SRM -e 168 -c 42 -i 159 -a 42 + -t 316.00188975945002 -s 25 -d 23 -p SRM -e 168 -c 42 -i 160 -a 42 - -t 316.00188975945002 -s 25 -d 23 -p SRM -e 168 -c 42 -i 160 -a 42 h -t 316.00188975945002 -s 25 -d 23 -p SRM -e 168 -c 42 -i 160 -a 42 r -t 316.01323375945003 -s 25 -d 23 -p SRM -e 168 -c 42 -i 160 -a 42 + -t 316.01323375945003 -s 23 -d 21 -p SRM -e 168 -c 42 -i 160 -a 42 - -t 316.01323375945003 -s 23 -d 21 -p SRM -e 168 -c 42 -i 160 -a 42 h -t 316.01323375945003 -s 23 -d 21 -p SRM -e 168 -c 42 -i 160 -a 42 + -t 316.01323375945003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 160 -a 42 - -t 316.01323375945003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 160 -a 42 h -t 316.01323375945003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 160 -a 42 r -t 316.02457775945004 -s 23 -d 21 -p SRM -e 168 -c 42 -i 160 -a 42 + -t 316.02457775945004 -s 21 -d 20 -p SRM -e 168 -c 42 -i 160 -a 42 - -t 316.02457775945004 -s 21 -d 20 -p SRM -e 168 -c 42 -i 160 -a 42 h -t 316.02457775945004 -s 21 -d 20 -p SRM -e 168 -c 42 -i 160 -a 42 + -t 316.02457775945004 -s 21 -d 24 -p SRM -e 168 -c 42 -i 160 -a 42 - -t 316.02457775945004 -s 21 -d 24 -p SRM -e 168 -c 42 -i 160 -a 42 h -t 316.02457775945004 -s 21 -d 24 -p SRM -e 168 -c 42 -i 160 -a 42 r -t 316.02457775945004 -s 23 -d 26 -p SRM -e 168 -c 42 -i 160 -a 42 + -t 316.02457775945004 -s 26 -d 27 -p SRM -e 168 -c 42 -i 160 -a 42 - -t 316.02457775945004 -s 26 -d 27 -p SRM -e 168 -c 42 -i 160 -a 42 h -t 316.02457775945004 -s 26 -d 27 -p SRM -e 168 -c 42 -i 160 -a 42 + -t 316.02457775945004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 160 -a 42 - -t 316.02457775945004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 160 -a 42 h -t 316.02457775945004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 160 -a 42 r -t 316.03592175945005 -s 21 -d 20 -p SRM -e 168 -c 42 -i 160 -a 42 + -t 316.03592175945005 -s 20 -d 22 -p SRM -e 168 -c 42 -i 160 -a 42 - -t 316.03592175945005 -s 20 -d 22 -p SRM -e 168 -c 42 -i 160 -a 42 h -t 316.03592175945005 -s 20 -d 22 -p SRM -e 168 -c 42 -i 160 -a 42 r -t 316.03592175945005 -s 21 -d 24 -p SRM -e 168 -c 42 -i 160 -a 42 r -t 316.03592175945005 -s 26 -d 27 -p SRM -e 168 -c 42 -i 160 -a 42 r -t 316.03592175945005 -s 26 -d 28 -p SRM -e 168 -c 42 -i 160 -a 42 r -t 316.04726575945006 -s 20 -d 22 -p SRM -e 168 -c 42 -i 160 -a 42 + -t 318.39174126899024 -s 13 -d 11 -p cbr -e 1280 -c 3 -i 160 -a 3 - -t 318.39174126899024 -s 13 -d 11 -p cbr -e 1280 -c 3 -i 160 -a 3 h -t 318.39174126899024 -s 13 -d 11 -p cbr -e 1280 -c 3 -i 160 -a 3 + -t 318.39174126899024 -s 13 -d 15 -p cbr -e 1280 -c 3 -i 160 -a 3 - -t 318.39174126899024 -s 13 -d 15 -p cbr -e 1280 -c 3 -i 160 -a 3 h -t 318.39174126899024 -s 13 -d 15 -p cbr -e 1280 -c 3 -i 160 -a 3 + -t 318.39174126899024 -s 13 -d 16 -p cbr -e 1280 -c 3 -i 160 -a 3 - -t 318.39174126899024 -s 13 -d 16 -p cbr -e 1280 -c 3 -i 160 -a 3 h -t 318.39174126899024 -s 13 -d 16 -p cbr -e 1280 -c 3 -i 160 -a 3 + -t 318.39461474767 -s 26 -d 23 -p SRM -e 168 -c 42 -i 161 -a 42 - -t 318.39461474767 -s 26 -d 23 -p SRM -e 168 -c 42 -i 161 -a 42 h -t 318.39461474767 -s 26 -d 23 -p SRM -e 168 -c 42 -i 161 -a 42 + -t 318.39461474767 -s 26 -d 27 -p SRM -e 168 -c 42 -i 161 -a 42 - -t 318.39461474767 -s 26 -d 27 -p SRM -e 168 -c 42 -i 161 -a 42 h -t 318.39461474767 -s 26 -d 27 -p SRM -e 168 -c 42 -i 161 -a 42 + -t 318.39461474767 -s 26 -d 28 -p SRM -e 168 -c 42 -i 161 -a 42 - -t 318.39461474767 -s 26 -d 28 -p SRM -e 168 -c 42 -i 161 -a 42 h -t 318.39461474767 -s 26 -d 28 -p SRM -e 168 -c 42 -i 161 -a 42 r -t 318.40595874767001 -s 26 -d 23 -p SRM -e 168 -c 42 -i 161 -a 42 + -t 318.40595874767001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 161 -a 42 - -t 318.40595874767001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 161 -a 42 h -t 318.40595874767001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 161 -a 42 + -t 318.40595874767001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 161 -a 42 - -t 318.40595874767001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 161 -a 42 h -t 318.40595874767001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 161 -a 42 r -t 318.40595874767001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 161 -a 42 r -t 318.40595874767001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 161 -a 42 r -t 318.41198126899025 -s 13 -d 11 -p cbr -e 1280 -c 3 -i 160 -a 3 + -t 318.41198126899025 -s 11 -d 10 -p cbr -e 1280 -c 3 -i 160 -a 3 - -t 318.41198126899025 -s 11 -d 10 -p cbr -e 1280 -c 3 -i 160 -a 3 h -t 318.41198126899025 -s 11 -d 10 -p cbr -e 1280 -c 3 -i 160 -a 3 + -t 318.41198126899025 -s 11 -d 14 -p cbr -e 1280 -c 3 -i 160 -a 3 - -t 318.41198126899025 -s 11 -d 14 -p cbr -e 1280 -c 3 -i 160 -a 3 h -t 318.41198126899025 -s 11 -d 14 -p cbr -e 1280 -c 3 -i 160 -a 3 r -t 318.41198126899025 -s 13 -d 15 -p cbr -e 1280 -c 3 -i 160 -a 3 r -t 318.41198126899025 -s 13 -d 16 -p cbr -e 1280 -c 3 -i 160 -a 3 + -t 318.41198126899025 -s 16 -d 17 -p cbr -e 1280 -c 3 -i 160 -a 3 - -t 318.41198126899025 -s 16 -d 17 -p cbr -e 1280 -c 3 -i 160 -a 3 h -t 318.41198126899025 -s 16 -d 17 -p cbr -e 1280 -c 3 -i 160 -a 3 + -t 318.41198126899025 -s 16 -d 18 -p cbr -e 1280 -c 3 -i 160 -a 3 - -t 318.41198126899025 -s 16 -d 18 -p cbr -e 1280 -c 3 -i 160 -a 3 h -t 318.41198126899025 -s 16 -d 18 -p cbr -e 1280 -c 3 -i 160 -a 3 r -t 318.41730274767002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 161 -a 42 + -t 318.41730274767002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 161 -a 42 - -t 318.41730274767002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 161 -a 42 h -t 318.41730274767002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 161 -a 42 + -t 318.41730274767002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 161 -a 42 - -t 318.41730274767002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 161 -a 42 h -t 318.41730274767002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 161 -a 42 r -t 318.41730274767002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 161 -a 42 r -t 318.42864674767003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 161 -a 42 + -t 318.42864674767003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 161 -a 42 - -t 318.42864674767003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 161 -a 42 h -t 318.42864674767003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 161 -a 42 r -t 318.42864674767003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 161 -a 42 r -t 318.43222126899025 -s 11 -d 10 -p cbr -e 1280 -c 3 -i 160 -a 3 + -t 318.43222126899025 -s 10 -d 12 -p cbr -e 1280 -c 3 -i 160 -a 3 - -t 318.43222126899025 -s 10 -d 12 -p cbr -e 1280 -c 3 -i 160 -a 3 h -t 318.43222126899025 -s 10 -d 12 -p cbr -e 1280 -c 3 -i 160 -a 3 r -t 318.43222126899025 -s 11 -d 14 -p cbr -e 1280 -c 3 -i 160 -a 3 r -t 318.43222126899025 -s 16 -d 17 -p cbr -e 1280 -c 3 -i 160 -a 3 r -t 318.43222126899025 -s 16 -d 18 -p cbr -e 1280 -c 3 -i 160 -a 3 r -t 318.43999074767004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 161 -a 42 r -t 318.45246126899025 -s 10 -d 12 -p cbr -e 1280 -c 3 -i 160 -a 3 + -t 318.89304163417 -s 16 -d 13 -p SRM -e 168 -c 42 -i 161 -a 42 - -t 318.89304163417 -s 16 -d 13 -p SRM -e 168 -c 42 -i 161 -a 42 h -t 318.89304163417 -s 16 -d 13 -p SRM -e 168 -c 42 -i 161 -a 42 + -t 318.89304163417 -s 16 -d 17 -p SRM -e 168 -c 42 -i 161 -a 42 - -t 318.89304163417 -s 16 -d 17 -p SRM -e 168 -c 42 -i 161 -a 42 h -t 318.89304163417 -s 16 -d 17 -p SRM -e 168 -c 42 -i 161 -a 42 + -t 318.89304163417 -s 16 -d 18 -p SRM -e 168 -c 42 -i 161 -a 42 - -t 318.89304163417 -s 16 -d 18 -p SRM -e 168 -c 42 -i 161 -a 42 h -t 318.89304163417 -s 16 -d 18 -p SRM -e 168 -c 42 -i 161 -a 42 r -t 318.90438563417001 -s 16 -d 13 -p SRM -e 168 -c 42 -i 161 -a 42 + -t 318.90438563417001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 161 -a 42 - -t 318.90438563417001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 161 -a 42 h -t 318.90438563417001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 161 -a 42 + -t 318.90438563417001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 161 -a 42 - -t 318.90438563417001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 161 -a 42 h -t 318.90438563417001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 161 -a 42 r -t 318.90438563417001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 161 -a 42 r -t 318.90438563417001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 161 -a 42 r -t 318.91572963417002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 161 -a 42 + -t 318.91572963417002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 161 -a 42 - -t 318.91572963417002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 161 -a 42 h -t 318.91572963417002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 161 -a 42 + -t 318.91572963417002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 161 -a 42 - -t 318.91572963417002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 161 -a 42 h -t 318.91572963417002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 161 -a 42 r -t 318.91572963417002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 161 -a 42 r -t 318.92707363417003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 161 -a 42 + -t 318.92707363417003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 161 -a 42 - -t 318.92707363417003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 161 -a 42 h -t 318.92707363417003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 161 -a 42 r -t 318.92707363417003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 161 -a 42 r -t 318.93841763417004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 161 -a 42 + -t 319.10888134808999 -s 24 -d 21 -p SRM -e 168 -c 42 -i 162 -a 42 - -t 319.10888134808999 -s 24 -d 21 -p SRM -e 168 -c 42 -i 162 -a 42 h -t 319.10888134808999 -s 24 -d 21 -p SRM -e 168 -c 42 -i 162 -a 42 r -t 319.12022534809 -s 24 -d 21 -p SRM -e 168 -c 42 -i 162 -a 42 + -t 319.12022534809 -s 21 -d 20 -p SRM -e 168 -c 42 -i 162 -a 42 - -t 319.12022534809 -s 21 -d 20 -p SRM -e 168 -c 42 -i 162 -a 42 h -t 319.12022534809 -s 21 -d 20 -p SRM -e 168 -c 42 -i 162 -a 42 + -t 319.12022534809 -s 21 -d 23 -p SRM -e 168 -c 42 -i 162 -a 42 - -t 319.12022534809 -s 21 -d 23 -p SRM -e 168 -c 42 -i 162 -a 42 h -t 319.12022534809 -s 21 -d 23 -p SRM -e 168 -c 42 -i 162 -a 42 r -t 319.13156934809001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 162 -a 42 + -t 319.13156934809001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 162 -a 42 - -t 319.13156934809001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 162 -a 42 h -t 319.13156934809001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 162 -a 42 r -t 319.13156934809001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 162 -a 42 + -t 319.13156934809001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 162 -a 42 - -t 319.13156934809001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 162 -a 42 h -t 319.13156934809001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 162 -a 42 + -t 319.13156934809001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 162 -a 42 - -t 319.13156934809001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 162 -a 42 h -t 319.13156934809001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 162 -a 42 r -t 319.14291334809002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 162 -a 42 r -t 319.14291334809002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 162 -a 42 r -t 319.14291334809002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 162 -a 42 + -t 319.14291334809002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 162 -a 42 - -t 319.14291334809002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 162 -a 42 h -t 319.14291334809002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 162 -a 42 + -t 319.14291334809002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 162 -a 42 - -t 319.14291334809002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 162 -a 42 h -t 319.14291334809002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 162 -a 42 r -t 319.15425734809003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 162 -a 42 r -t 319.15425734809003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 162 -a 42 + -t 320.18291318216001 -s 14 -d 11 -p SRM -e 168 -c 42 -i 162 -a 42 - -t 320.18291318216001 -s 14 -d 11 -p SRM -e 168 -c 42 -i 162 -a 42 h -t 320.18291318216001 -s 14 -d 11 -p SRM -e 168 -c 42 -i 162 -a 42 r -t 320.19425718216002 -s 14 -d 11 -p SRM -e 168 -c 42 -i 162 -a 42 + -t 320.19425718216002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 162 -a 42 - -t 320.19425718216002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 162 -a 42 h -t 320.19425718216002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 162 -a 42 + -t 320.19425718216002 -s 11 -d 13 -p SRM -e 168 -c 42 -i 162 -a 42 - -t 320.19425718216002 -s 11 -d 13 -p SRM -e 168 -c 42 -i 162 -a 42 h -t 320.19425718216002 -s 11 -d 13 -p SRM -e 168 -c 42 -i 162 -a 42 r -t 320.20560118216002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 162 -a 42 + -t 320.20560118216002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 162 -a 42 - -t 320.20560118216002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 162 -a 42 h -t 320.20560118216002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 162 -a 42 r -t 320.20560118216002 -s 11 -d 13 -p SRM -e 168 -c 42 -i 162 -a 42 + -t 320.20560118216002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 162 -a 42 - -t 320.20560118216002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 162 -a 42 h -t 320.20560118216002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 162 -a 42 + -t 320.20560118216002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 162 -a 42 - -t 320.20560118216002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 162 -a 42 h -t 320.20560118216002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 162 -a 42 r -t 320.21694518216003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 162 -a 42 r -t 320.21694518216003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 162 -a 42 r -t 320.21694518216003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 162 -a 42 + -t 320.21694518216003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 162 -a 42 - -t 320.21694518216003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 162 -a 42 h -t 320.21694518216003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 162 -a 42 + -t 320.21694518216003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 162 -a 42 - -t 320.21694518216003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 162 -a 42 h -t 320.21694518216003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 162 -a 42 r -t 320.22828918216004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 162 -a 42 r -t 320.22828918216004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 162 -a 42 + -t 320.52248987744002 -s 15 -d 13 -p SRM -e 168 -c 42 -i 163 -a 42 - -t 320.52248987744002 -s 15 -d 13 -p SRM -e 168 -c 42 -i 163 -a 42 h -t 320.52248987744002 -s 15 -d 13 -p SRM -e 168 -c 42 -i 163 -a 42 r -t 320.53383387744003 -s 15 -d 13 -p SRM -e 168 -c 42 -i 163 -a 42 + -t 320.53383387744003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 163 -a 42 - -t 320.53383387744003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 163 -a 42 h -t 320.53383387744003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 163 -a 42 + -t 320.53383387744003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 163 -a 42 - -t 320.53383387744003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 163 -a 42 h -t 320.53383387744003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 163 -a 42 r -t 320.54517787744004 -s 13 -d 11 -p SRM -e 168 -c 42 -i 163 -a 42 + -t 320.54517787744004 -s 11 -d 10 -p SRM -e 168 -c 42 -i 163 -a 42 - -t 320.54517787744004 -s 11 -d 10 -p SRM -e 168 -c 42 -i 163 -a 42 h -t 320.54517787744004 -s 11 -d 10 -p SRM -e 168 -c 42 -i 163 -a 42 + -t 320.54517787744004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 163 -a 42 - -t 320.54517787744004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 163 -a 42 h -t 320.54517787744004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 163 -a 42 r -t 320.54517787744004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 163 -a 42 + -t 320.54517787744004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 163 -a 42 - -t 320.54517787744004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 163 -a 42 h -t 320.54517787744004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 163 -a 42 + -t 320.54517787744004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 163 -a 42 - -t 320.54517787744004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 163 -a 42 h -t 320.54517787744004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 163 -a 42 r -t 320.55652187744005 -s 11 -d 10 -p SRM -e 168 -c 42 -i 163 -a 42 + -t 320.55652187744005 -s 10 -d 12 -p SRM -e 168 -c 42 -i 163 -a 42 - -t 320.55652187744005 -s 10 -d 12 -p SRM -e 168 -c 42 -i 163 -a 42 h -t 320.55652187744005 -s 10 -d 12 -p SRM -e 168 -c 42 -i 163 -a 42 r -t 320.55652187744005 -s 11 -d 14 -p SRM -e 168 -c 42 -i 163 -a 42 r -t 320.55652187744005 -s 16 -d 17 -p SRM -e 168 -c 42 -i 163 -a 42 r -t 320.55652187744005 -s 16 -d 18 -p SRM -e 168 -c 42 -i 163 -a 42 r -t 320.56786587744006 -s 10 -d 12 -p SRM -e 168 -c 42 -i 163 -a 42 + -t 320.61631713441 -s 12 -d 10 -p SRM -e 168 -c 42 -i 164 -a 42 - -t 320.61631713441 -s 12 -d 10 -p SRM -e 168 -c 42 -i 164 -a 42 h -t 320.61631713441 -s 12 -d 10 -p SRM -e 168 -c 42 -i 164 -a 42 r -t 320.62766113441 -s 12 -d 10 -p SRM -e 168 -c 42 -i 164 -a 42 + -t 320.62766113441 -s 10 -d 11 -p SRM -e 168 -c 42 -i 164 -a 42 - -t 320.62766113441 -s 10 -d 11 -p SRM -e 168 -c 42 -i 164 -a 42 h -t 320.62766113441 -s 10 -d 11 -p SRM -e 168 -c 42 -i 164 -a 42 r -t 320.63900513441001 -s 10 -d 11 -p SRM -e 168 -c 42 -i 164 -a 42 + -t 320.63900513441001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 164 -a 42 - -t 320.63900513441001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 164 -a 42 h -t 320.63900513441001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 164 -a 42 + -t 320.63900513441001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 164 -a 42 - -t 320.63900513441001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 164 -a 42 h -t 320.63900513441001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 164 -a 42 r -t 320.65034913441002 -s 11 -d 13 -p SRM -e 168 -c 42 -i 164 -a 42 + -t 320.65034913441002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 164 -a 42 - -t 320.65034913441002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 164 -a 42 h -t 320.65034913441002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 164 -a 42 + -t 320.65034913441002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 164 -a 42 - -t 320.65034913441002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 164 -a 42 h -t 320.65034913441002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 164 -a 42 r -t 320.65034913441002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 164 -a 42 r -t 320.66169313441003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 164 -a 42 r -t 320.66169313441003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 164 -a 42 + -t 320.66169313441003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 164 -a 42 - -t 320.66169313441003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 164 -a 42 h -t 320.66169313441003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 164 -a 42 + -t 320.66169313441003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 164 -a 42 - -t 320.66169313441003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 164 -a 42 h -t 320.66169313441003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 164 -a 42 r -t 320.67303713441004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 164 -a 42 r -t 320.67303713441004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 164 -a 42 + -t 321.12223135150998 -s 13 -d 11 -p SRM -e 168 -c 42 -i 165 -a 42 - -t 321.12223135150998 -s 13 -d 11 -p SRM -e 168 -c 42 -i 165 -a 42 h -t 321.12223135150998 -s 13 -d 11 -p SRM -e 168 -c 42 -i 165 -a 42 + -t 321.12223135150998 -s 13 -d 15 -p SRM -e 168 -c 42 -i 165 -a 42 - -t 321.12223135150998 -s 13 -d 15 -p SRM -e 168 -c 42 -i 165 -a 42 h -t 321.12223135150998 -s 13 -d 15 -p SRM -e 168 -c 42 -i 165 -a 42 + -t 321.12223135150998 -s 13 -d 16 -p SRM -e 168 -c 42 -i 165 -a 42 - -t 321.12223135150998 -s 13 -d 16 -p SRM -e 168 -c 42 -i 165 -a 42 h -t 321.12223135150998 -s 13 -d 16 -p SRM -e 168 -c 42 -i 165 -a 42 r -t 321.13357535150999 -s 13 -d 11 -p SRM -e 168 -c 42 -i 165 -a 42 + -t 321.13357535150999 -s 11 -d 10 -p SRM -e 168 -c 42 -i 165 -a 42 - -t 321.13357535150999 -s 11 -d 10 -p SRM -e 168 -c 42 -i 165 -a 42 h -t 321.13357535150999 -s 11 -d 10 -p SRM -e 168 -c 42 -i 165 -a 42 + -t 321.13357535150999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 165 -a 42 - -t 321.13357535150999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 165 -a 42 h -t 321.13357535150999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 165 -a 42 r -t 321.13357535150999 -s 13 -d 15 -p SRM -e 168 -c 42 -i 165 -a 42 r -t 321.13357535150999 -s 13 -d 16 -p SRM -e 168 -c 42 -i 165 -a 42 + -t 321.13357535150999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 165 -a 42 - -t 321.13357535150999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 165 -a 42 h -t 321.13357535150999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 165 -a 42 + -t 321.13357535150999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 165 -a 42 - -t 321.13357535150999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 165 -a 42 h -t 321.13357535150999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 165 -a 42 r -t 321.14491935151 -s 11 -d 10 -p SRM -e 168 -c 42 -i 165 -a 42 + -t 321.14491935151 -s 10 -d 12 -p SRM -e 168 -c 42 -i 165 -a 42 - -t 321.14491935151 -s 10 -d 12 -p SRM -e 168 -c 42 -i 165 -a 42 h -t 321.14491935151 -s 10 -d 12 -p SRM -e 168 -c 42 -i 165 -a 42 r -t 321.14491935151 -s 11 -d 14 -p SRM -e 168 -c 42 -i 165 -a 42 r -t 321.14491935151 -s 16 -d 17 -p SRM -e 168 -c 42 -i 165 -a 42 r -t 321.14491935151 -s 16 -d 18 -p SRM -e 168 -c 42 -i 165 -a 42 r -t 321.15626335151001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 165 -a 42 + -t 321.42709403714002 -s 20 -d 21 -p SRM -e 168 -c 42 -i 163 -a 42 - -t 321.42709403714002 -s 20 -d 21 -p SRM -e 168 -c 42 -i 163 -a 42 h -t 321.42709403714002 -s 20 -d 21 -p SRM -e 168 -c 42 -i 163 -a 42 + -t 321.42709403714002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 163 -a 42 - -t 321.42709403714002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 163 -a 42 h -t 321.42709403714002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 163 -a 42 r -t 321.43843803714003 -s 20 -d 21 -p SRM -e 168 -c 42 -i 163 -a 42 + -t 321.43843803714003 -s 21 -d 23 -p SRM -e 168 -c 42 -i 163 -a 42 - -t 321.43843803714003 -s 21 -d 23 -p SRM -e 168 -c 42 -i 163 -a 42 h -t 321.43843803714003 -s 21 -d 23 -p SRM -e 168 -c 42 -i 163 -a 42 + -t 321.43843803714003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 163 -a 42 - -t 321.43843803714003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 163 -a 42 h -t 321.43843803714003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 163 -a 42 r -t 321.43843803714003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 163 -a 42 r -t 321.44978203714004 -s 21 -d 23 -p SRM -e 168 -c 42 -i 163 -a 42 + -t 321.44978203714004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 163 -a 42 - -t 321.44978203714004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 163 -a 42 h -t 321.44978203714004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 163 -a 42 + -t 321.44978203714004 -s 23 -d 26 -p SRM -e 168 -c 42 -i 163 -a 42 - -t 321.44978203714004 -s 23 -d 26 -p SRM -e 168 -c 42 -i 163 -a 42 h -t 321.44978203714004 -s 23 -d 26 -p SRM -e 168 -c 42 -i 163 -a 42 r -t 321.44978203714004 -s 21 -d 24 -p SRM -e 168 -c 42 -i 163 -a 42 r -t 321.46112603714005 -s 23 -d 25 -p SRM -e 168 -c 42 -i 163 -a 42 r -t 321.46112603714005 -s 23 -d 26 -p SRM -e 168 -c 42 -i 163 -a 42 + -t 321.46112603714005 -s 26 -d 27 -p SRM -e 168 -c 42 -i 163 -a 42 - -t 321.46112603714005 -s 26 -d 27 -p SRM -e 168 -c 42 -i 163 -a 42 h -t 321.46112603714005 -s 26 -d 27 -p SRM -e 168 -c 42 -i 163 -a 42 + -t 321.46112603714005 -s 26 -d 28 -p SRM -e 168 -c 42 -i 163 -a 42 - -t 321.46112603714005 -s 26 -d 28 -p SRM -e 168 -c 42 -i 163 -a 42 h -t 321.46112603714005 -s 26 -d 28 -p SRM -e 168 -c 42 -i 163 -a 42 r -t 321.47247003714006 -s 26 -d 27 -p SRM -e 168 -c 42 -i 163 -a 42 r -t 321.47247003714006 -s 26 -d 28 -p SRM -e 168 -c 42 -i 163 -a 42 + -t 321.76795400552999 -s 10 -d 11 -p SRM -e 168 -c 42 -i 166 -a 42 - -t 321.76795400552999 -s 10 -d 11 -p SRM -e 168 -c 42 -i 166 -a 42 h -t 321.76795400552999 -s 10 -d 11 -p SRM -e 168 -c 42 -i 166 -a 42 + -t 321.76795400552999 -s 10 -d 12 -p SRM -e 168 -c 42 -i 166 -a 42 - -t 321.76795400552999 -s 10 -d 12 -p SRM -e 168 -c 42 -i 166 -a 42 h -t 321.76795400552999 -s 10 -d 12 -p SRM -e 168 -c 42 -i 166 -a 42 r -t 321.77929800552999 -s 10 -d 11 -p SRM -e 168 -c 42 -i 166 -a 42 + -t 321.77929800552999 -s 11 -d 13 -p SRM -e 168 -c 42 -i 166 -a 42 - -t 321.77929800552999 -s 11 -d 13 -p SRM -e 168 -c 42 -i 166 -a 42 h -t 321.77929800552999 -s 11 -d 13 -p SRM -e 168 -c 42 -i 166 -a 42 + -t 321.77929800552999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 166 -a 42 - -t 321.77929800552999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 166 -a 42 h -t 321.77929800552999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 166 -a 42 r -t 321.77929800552999 -s 10 -d 12 -p SRM -e 168 -c 42 -i 166 -a 42 r -t 321.79064200553 -s 11 -d 13 -p SRM -e 168 -c 42 -i 166 -a 42 + -t 321.79064200553 -s 13 -d 15 -p SRM -e 168 -c 42 -i 166 -a 42 - -t 321.79064200553 -s 13 -d 15 -p SRM -e 168 -c 42 -i 166 -a 42 h -t 321.79064200553 -s 13 -d 15 -p SRM -e 168 -c 42 -i 166 -a 42 + -t 321.79064200553 -s 13 -d 16 -p SRM -e 168 -c 42 -i 166 -a 42 - -t 321.79064200553 -s 13 -d 16 -p SRM -e 168 -c 42 -i 166 -a 42 h -t 321.79064200553 -s 13 -d 16 -p SRM -e 168 -c 42 -i 166 -a 42 r -t 321.79064200553 -s 11 -d 14 -p SRM -e 168 -c 42 -i 166 -a 42 r -t 321.80198600553001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 166 -a 42 r -t 321.80198600553001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 166 -a 42 + -t 321.80198600553001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 166 -a 42 - -t 321.80198600553001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 166 -a 42 h -t 321.80198600553001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 166 -a 42 + -t 321.80198600553001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 166 -a 42 - -t 321.80198600553001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 166 -a 42 h -t 321.80198600553001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 166 -a 42 r -t 321.81333000553002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 166 -a 42 r -t 321.81333000553002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 166 -a 42 + -t 321.81873541761001 -s 27 -d 26 -p SRM -e 168 -c 42 -i 164 -a 42 - -t 321.81873541761001 -s 27 -d 26 -p SRM -e 168 -c 42 -i 164 -a 42 h -t 321.81873541761001 -s 27 -d 26 -p SRM -e 168 -c 42 -i 164 -a 42 r -t 321.83007941761002 -s 27 -d 26 -p SRM -e 168 -c 42 -i 164 -a 42 + -t 321.83007941761002 -s 26 -d 23 -p SRM -e 168 -c 42 -i 164 -a 42 - -t 321.83007941761002 -s 26 -d 23 -p SRM -e 168 -c 42 -i 164 -a 42 h -t 321.83007941761002 -s 26 -d 23 -p SRM -e 168 -c 42 -i 164 -a 42 + -t 321.83007941761002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 164 -a 42 - -t 321.83007941761002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 164 -a 42 h -t 321.83007941761002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 164 -a 42 r -t 321.84142341761003 -s 26 -d 23 -p SRM -e 168 -c 42 -i 164 -a 42 + -t 321.84142341761003 -s 23 -d 21 -p SRM -e 168 -c 42 -i 164 -a 42 - -t 321.84142341761003 -s 23 -d 21 -p SRM -e 168 -c 42 -i 164 -a 42 h -t 321.84142341761003 -s 23 -d 21 -p SRM -e 168 -c 42 -i 164 -a 42 + -t 321.84142341761003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 164 -a 42 - -t 321.84142341761003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 164 -a 42 h -t 321.84142341761003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 164 -a 42 r -t 321.84142341761003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 164 -a 42 r -t 321.85276741761004 -s 23 -d 21 -p SRM -e 168 -c 42 -i 164 -a 42 + -t 321.85276741761004 -s 21 -d 20 -p SRM -e 168 -c 42 -i 164 -a 42 - -t 321.85276741761004 -s 21 -d 20 -p SRM -e 168 -c 42 -i 164 -a 42 h -t 321.85276741761004 -s 21 -d 20 -p SRM -e 168 -c 42 -i 164 -a 42 + -t 321.85276741761004 -s 21 -d 24 -p SRM -e 168 -c 42 -i 164 -a 42 - -t 321.85276741761004 -s 21 -d 24 -p SRM -e 168 -c 42 -i 164 -a 42 h -t 321.85276741761004 -s 21 -d 24 -p SRM -e 168 -c 42 -i 164 -a 42 r -t 321.85276741761004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 164 -a 42 r -t 321.86411141761005 -s 21 -d 20 -p SRM -e 168 -c 42 -i 164 -a 42 + -t 321.86411141761005 -s 20 -d 22 -p SRM -e 168 -c 42 -i 164 -a 42 - -t 321.86411141761005 -s 20 -d 22 -p SRM -e 168 -c 42 -i 164 -a 42 h -t 321.86411141761005 -s 20 -d 22 -p SRM -e 168 -c 42 -i 164 -a 42 r -t 321.86411141761005 -s 21 -d 24 -p SRM -e 168 -c 42 -i 164 -a 42 r -t 321.87545541761006 -s 20 -d 22 -p SRM -e 168 -c 42 -i 164 -a 42 + -t 322.59222540357001 -s 17 -d 16 -p SRM -e 168 -c 42 -i 167 -a 42 - -t 322.59222540357001 -s 17 -d 16 -p SRM -e 168 -c 42 -i 167 -a 42 h -t 322.59222540357001 -s 17 -d 16 -p SRM -e 168 -c 42 -i 167 -a 42 r -t 322.60356940357002 -s 17 -d 16 -p SRM -e 168 -c 42 -i 167 -a 42 + -t 322.60356940357002 -s 16 -d 13 -p SRM -e 168 -c 42 -i 167 -a 42 - -t 322.60356940357002 -s 16 -d 13 -p SRM -e 168 -c 42 -i 167 -a 42 h -t 322.60356940357002 -s 16 -d 13 -p SRM -e 168 -c 42 -i 167 -a 42 + -t 322.60356940357002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 167 -a 42 - -t 322.60356940357002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 167 -a 42 h -t 322.60356940357002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 167 -a 42 r -t 322.61491340357003 -s 16 -d 13 -p SRM -e 168 -c 42 -i 167 -a 42 + -t 322.61491340357003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 167 -a 42 - -t 322.61491340357003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 167 -a 42 h -t 322.61491340357003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 167 -a 42 + -t 322.61491340357003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 167 -a 42 - -t 322.61491340357003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 167 -a 42 h -t 322.61491340357003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 167 -a 42 r -t 322.61491340357003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 167 -a 42 r -t 322.62625740357004 -s 13 -d 11 -p SRM -e 168 -c 42 -i 167 -a 42 + -t 322.62625740357004 -s 11 -d 10 -p SRM -e 168 -c 42 -i 167 -a 42 - -t 322.62625740357004 -s 11 -d 10 -p SRM -e 168 -c 42 -i 167 -a 42 h -t 322.62625740357004 -s 11 -d 10 -p SRM -e 168 -c 42 -i 167 -a 42 + -t 322.62625740357004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 167 -a 42 - -t 322.62625740357004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 167 -a 42 h -t 322.62625740357004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 167 -a 42 r -t 322.62625740357004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 167 -a 42 r -t 322.63760140357005 -s 11 -d 10 -p SRM -e 168 -c 42 -i 167 -a 42 + -t 322.63760140357005 -s 10 -d 12 -p SRM -e 168 -c 42 -i 167 -a 42 - -t 322.63760140357005 -s 10 -d 12 -p SRM -e 168 -c 42 -i 167 -a 42 h -t 322.63760140357005 -s 10 -d 12 -p SRM -e 168 -c 42 -i 167 -a 42 r -t 322.63760140357005 -s 11 -d 14 -p SRM -e 168 -c 42 -i 167 -a 42 r -t 322.64894540357005 -s 10 -d 12 -p SRM -e 168 -c 42 -i 167 -a 42 + -t 322.78684478991426 -s 10 -d 11 -p cbr -e 1280 -c 0 -i 168 -a 0 - -t 322.78684478991426 -s 10 -d 11 -p cbr -e 1280 -c 0 -i 168 -a 0 h -t 322.78684478991426 -s 10 -d 11 -p cbr -e 1280 -c 0 -i 168 -a 0 + -t 322.78684478991426 -s 10 -d 12 -p cbr -e 1280 -c 0 -i 168 -a 0 - -t 322.78684478991426 -s 10 -d 12 -p cbr -e 1280 -c 0 -i 168 -a 0 h -t 322.78684478991426 -s 10 -d 12 -p cbr -e 1280 -c 0 -i 168 -a 0 r -t 322.80708478991426 -s 10 -d 11 -p cbr -e 1280 -c 0 -i 168 -a 0 + -t 322.80708478991426 -s 11 -d 13 -p cbr -e 1280 -c 0 -i 168 -a 0 - -t 322.80708478991426 -s 11 -d 13 -p cbr -e 1280 -c 0 -i 168 -a 0 h -t 322.80708478991426 -s 11 -d 13 -p cbr -e 1280 -c 0 -i 168 -a 0 + -t 322.80708478991426 -s 11 -d 14 -p cbr -e 1280 -c 0 -i 168 -a 0 - -t 322.80708478991426 -s 11 -d 14 -p cbr -e 1280 -c 0 -i 168 -a 0 h -t 322.80708478991426 -s 11 -d 14 -p cbr -e 1280 -c 0 -i 168 -a 0 r -t 322.80708478991426 -s 10 -d 12 -p cbr -e 1280 -c 0 -i 168 -a 0 r -t 322.82732478991426 -s 11 -d 13 -p cbr -e 1280 -c 0 -i 168 -a 0 + -t 322.82732478991426 -s 13 -d 15 -p cbr -e 1280 -c 0 -i 168 -a 0 - -t 322.82732478991426 -s 13 -d 15 -p cbr -e 1280 -c 0 -i 168 -a 0 h -t 322.82732478991426 -s 13 -d 15 -p cbr -e 1280 -c 0 -i 168 -a 0 + -t 322.82732478991426 -s 13 -d 16 -p cbr -e 1280 -c 0 -i 168 -a 0 - -t 322.82732478991426 -s 13 -d 16 -p cbr -e 1280 -c 0 -i 168 -a 0 h -t 322.82732478991426 -s 13 -d 16 -p cbr -e 1280 -c 0 -i 168 -a 0 r -t 322.82732478991426 -s 11 -d 14 -p cbr -e 1280 -c 0 -i 168 -a 0 r -t 322.84756478991426 -s 13 -d 15 -p cbr -e 1280 -c 0 -i 168 -a 0 r -t 322.84756478991426 -s 13 -d 16 -p cbr -e 1280 -c 0 -i 168 -a 0 + -t 322.84756478991426 -s 16 -d 17 -p cbr -e 1280 -c 0 -i 168 -a 0 - -t 322.84756478991426 -s 16 -d 17 -p cbr -e 1280 -c 0 -i 168 -a 0 h -t 322.84756478991426 -s 16 -d 17 -p cbr -e 1280 -c 0 -i 168 -a 0 + -t 322.84756478991426 -s 16 -d 18 -p cbr -e 1280 -c 0 -i 168 -a 0 - -t 322.84756478991426 -s 16 -d 18 -p cbr -e 1280 -c 0 -i 168 -a 0 h -t 322.84756478991426 -s 16 -d 18 -p cbr -e 1280 -c 0 -i 168 -a 0 r -t 322.86780478991426 -s 16 -d 17 -p cbr -e 1280 -c 0 -i 168 -a 0 r -t 322.86780478991426 -s 16 -d 18 -p cbr -e 1280 -c 0 -i 168 -a 0 + -t 323.21291165924998 -s 22 -d 20 -p SRM -e 168 -c 42 -i 165 -a 42 - -t 323.21291165924998 -s 22 -d 20 -p SRM -e 168 -c 42 -i 165 -a 42 h -t 323.21291165924998 -s 22 -d 20 -p SRM -e 168 -c 42 -i 165 -a 42 r -t 323.22425565924999 -s 22 -d 20 -p SRM -e 168 -c 42 -i 165 -a 42 + -t 323.22425565924999 -s 20 -d 21 -p SRM -e 168 -c 42 -i 165 -a 42 - -t 323.22425565924999 -s 20 -d 21 -p SRM -e 168 -c 42 -i 165 -a 42 h -t 323.22425565924999 -s 20 -d 21 -p SRM -e 168 -c 42 -i 165 -a 42 r -t 323.23559965925 -s 20 -d 21 -p SRM -e 168 -c 42 -i 165 -a 42 + -t 323.23559965925 -s 21 -d 23 -p SRM -e 168 -c 42 -i 165 -a 42 - -t 323.23559965925 -s 21 -d 23 -p SRM -e 168 -c 42 -i 165 -a 42 h -t 323.23559965925 -s 21 -d 23 -p SRM -e 168 -c 42 -i 165 -a 42 + -t 323.23559965925 -s 21 -d 24 -p SRM -e 168 -c 42 -i 165 -a 42 - -t 323.23559965925 -s 21 -d 24 -p SRM -e 168 -c 42 -i 165 -a 42 h -t 323.23559965925 -s 21 -d 24 -p SRM -e 168 -c 42 -i 165 -a 42 r -t 323.24694365925001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 165 -a 42 + -t 323.24694365925001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 165 -a 42 - -t 323.24694365925001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 165 -a 42 h -t 323.24694365925001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 165 -a 42 + -t 323.24694365925001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 165 -a 42 - -t 323.24694365925001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 165 -a 42 h -t 323.24694365925001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 165 -a 42 r -t 323.24694365925001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 165 -a 42 r -t 323.25828765925002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 165 -a 42 r -t 323.25828765925002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 165 -a 42 + -t 323.25828765925002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 165 -a 42 - -t 323.25828765925002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 165 -a 42 h -t 323.25828765925002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 165 -a 42 + -t 323.25828765925002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 165 -a 42 - -t 323.25828765925002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 165 -a 42 h -t 323.25828765925002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 165 -a 42 r -t 323.26963165925002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 165 -a 42 r -t 323.26963165925002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 165 -a 42 + -t 323.95878453155001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 166 -a 42 - -t 323.95878453155001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 166 -a 42 h -t 323.95878453155001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 166 -a 42 + -t 323.95878453155001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 166 -a 42 - -t 323.95878453155001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 166 -a 42 h -t 323.95878453155001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 166 -a 42 + -t 323.95878453155001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 166 -a 42 - -t 323.95878453155001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 166 -a 42 h -t 323.95878453155001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 166 -a 42 r -t 323.97012853155002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 166 -a 42 + -t 323.97012853155002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 166 -a 42 - -t 323.97012853155002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 166 -a 42 h -t 323.97012853155002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 166 -a 42 + -t 323.97012853155002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 166 -a 42 - -t 323.97012853155002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 166 -a 42 h -t 323.97012853155002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 166 -a 42 r -t 323.97012853155002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 166 -a 42 r -t 323.97012853155002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 166 -a 42 + -t 323.97012853155002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 166 -a 42 - -t 323.97012853155002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 166 -a 42 h -t 323.97012853155002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 166 -a 42 + -t 323.97012853155002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 166 -a 42 - -t 323.97012853155002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 166 -a 42 h -t 323.97012853155002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 166 -a 42 r -t 323.98147253155003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 166 -a 42 + -t 323.98147253155003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 166 -a 42 - -t 323.98147253155003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 166 -a 42 h -t 323.98147253155003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 166 -a 42 r -t 323.98147253155003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 166 -a 42 r -t 323.98147253155003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 166 -a 42 r -t 323.98147253155003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 166 -a 42 r -t 323.99281653155003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 166 -a 42 + -t 324.66753359146003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 169 -a 42 - -t 324.66753359146003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 169 -a 42 h -t 324.66753359146003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 169 -a 42 + -t 324.66753359146003 -s 11 -d 13 -p SRM -e 168 -c 42 -i 169 -a 42 - -t 324.66753359146003 -s 11 -d 13 -p SRM -e 168 -c 42 -i 169 -a 42 h -t 324.66753359146003 -s 11 -d 13 -p SRM -e 168 -c 42 -i 169 -a 42 + -t 324.66753359146003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 169 -a 42 - -t 324.66753359146003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 169 -a 42 h -t 324.66753359146003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 169 -a 42 r -t 324.67887759146004 -s 11 -d 10 -p SRM -e 168 -c 42 -i 169 -a 42 + -t 324.67887759146004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 169 -a 42 - -t 324.67887759146004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 169 -a 42 h -t 324.67887759146004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 169 -a 42 r -t 324.67887759146004 -s 11 -d 13 -p SRM -e 168 -c 42 -i 169 -a 42 + -t 324.67887759146004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 169 -a 42 - -t 324.67887759146004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 169 -a 42 h -t 324.67887759146004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 169 -a 42 + -t 324.67887759146004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 169 -a 42 - -t 324.67887759146004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 169 -a 42 h -t 324.67887759146004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 169 -a 42 r -t 324.67887759146004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 169 -a 42 r -t 324.69022159146004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 169 -a 42 r -t 324.69022159146004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 169 -a 42 r -t 324.69022159146004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 169 -a 42 + -t 324.69022159146004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 169 -a 42 - -t 324.69022159146004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 169 -a 42 h -t 324.69022159146004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 169 -a 42 + -t 324.69022159146004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 169 -a 42 - -t 324.69022159146004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 169 -a 42 h -t 324.69022159146004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 169 -a 42 r -t 324.70156559146005 -s 16 -d 17 -p SRM -e 168 -c 42 -i 169 -a 42 r -t 324.70156559146005 -s 16 -d 18 -p SRM -e 168 -c 42 -i 169 -a 42 + -t 324.90272079842316 -s 16 -d 13 -p cbr -e 1280 -c 6 -i 170 -a 6 - -t 324.90272079842316 -s 16 -d 13 -p cbr -e 1280 -c 6 -i 170 -a 6 h -t 324.90272079842316 -s 16 -d 13 -p cbr -e 1280 -c 6 -i 170 -a 6 + -t 324.90272079842316 -s 16 -d 17 -p cbr -e 1280 -c 6 -i 170 -a 6 - -t 324.90272079842316 -s 16 -d 17 -p cbr -e 1280 -c 6 -i 170 -a 6 h -t 324.90272079842316 -s 16 -d 17 -p cbr -e 1280 -c 6 -i 170 -a 6 + -t 324.90272079842316 -s 16 -d 18 -p cbr -e 1280 -c 6 -i 170 -a 6 - -t 324.90272079842316 -s 16 -d 18 -p cbr -e 1280 -c 6 -i 170 -a 6 h -t 324.90272079842316 -s 16 -d 18 -p cbr -e 1280 -c 6 -i 170 -a 6 r -t 324.92296079842316 -s 16 -d 13 -p cbr -e 1280 -c 6 -i 170 -a 6 + -t 324.92296079842316 -s 13 -d 11 -p cbr -e 1280 -c 6 -i 170 -a 6 - -t 324.92296079842316 -s 13 -d 11 -p cbr -e 1280 -c 6 -i 170 -a 6 h -t 324.92296079842316 -s 13 -d 11 -p cbr -e 1280 -c 6 -i 170 -a 6 + -t 324.92296079842316 -s 13 -d 15 -p cbr -e 1280 -c 6 -i 170 -a 6 - -t 324.92296079842316 -s 13 -d 15 -p cbr -e 1280 -c 6 -i 170 -a 6 h -t 324.92296079842316 -s 13 -d 15 -p cbr -e 1280 -c 6 -i 170 -a 6 r -t 324.92296079842316 -s 16 -d 17 -p cbr -e 1280 -c 6 -i 170 -a 6 r -t 324.92296079842316 -s 16 -d 18 -p cbr -e 1280 -c 6 -i 170 -a 6 r -t 324.94320079842316 -s 13 -d 11 -p cbr -e 1280 -c 6 -i 170 -a 6 + -t 324.94320079842316 -s 11 -d 10 -p cbr -e 1280 -c 6 -i 170 -a 6 - -t 324.94320079842316 -s 11 -d 10 -p cbr -e 1280 -c 6 -i 170 -a 6 h -t 324.94320079842316 -s 11 -d 10 -p cbr -e 1280 -c 6 -i 170 -a 6 + -t 324.94320079842316 -s 11 -d 14 -p cbr -e 1280 -c 6 -i 170 -a 6 - -t 324.94320079842316 -s 11 -d 14 -p cbr -e 1280 -c 6 -i 170 -a 6 h -t 324.94320079842316 -s 11 -d 14 -p cbr -e 1280 -c 6 -i 170 -a 6 r -t 324.94320079842316 -s 13 -d 15 -p cbr -e 1280 -c 6 -i 170 -a 6 r -t 324.96344079842316 -s 11 -d 10 -p cbr -e 1280 -c 6 -i 170 -a 6 + -t 324.96344079842316 -s 10 -d 12 -p cbr -e 1280 -c 6 -i 170 -a 6 - -t 324.96344079842316 -s 10 -d 12 -p cbr -e 1280 -c 6 -i 170 -a 6 h -t 324.96344079842316 -s 10 -d 12 -p cbr -e 1280 -c 6 -i 170 -a 6 r -t 324.96344079842316 -s 11 -d 14 -p cbr -e 1280 -c 6 -i 170 -a 6 r -t 324.98368079842317 -s 10 -d 12 -p cbr -e 1280 -c 6 -i 170 -a 6 + -t 325.38698267046999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 167 -a 42 - -t 325.38698267046999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 167 -a 42 h -t 325.38698267046999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 167 -a 42 + -t 325.38698267046999 -s 21 -d 23 -p SRM -e 168 -c 42 -i 167 -a 42 - -t 325.38698267046999 -s 21 -d 23 -p SRM -e 168 -c 42 -i 167 -a 42 h -t 325.38698267046999 -s 21 -d 23 -p SRM -e 168 -c 42 -i 167 -a 42 + -t 325.38698267046999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 167 -a 42 - -t 325.38698267046999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 167 -a 42 h -t 325.38698267046999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 167 -a 42 r -t 325.39832667047 -s 21 -d 20 -p SRM -e 168 -c 42 -i 167 -a 42 + -t 325.39832667047 -s 20 -d 22 -p SRM -e 168 -c 42 -i 167 -a 42 - -t 325.39832667047 -s 20 -d 22 -p SRM -e 168 -c 42 -i 167 -a 42 h -t 325.39832667047 -s 20 -d 22 -p SRM -e 168 -c 42 -i 167 -a 42 r -t 325.39832667047 -s 21 -d 23 -p SRM -e 168 -c 42 -i 167 -a 42 + -t 325.39832667047 -s 23 -d 25 -p SRM -e 168 -c 42 -i 167 -a 42 - -t 325.39832667047 -s 23 -d 25 -p SRM -e 168 -c 42 -i 167 -a 42 h -t 325.39832667047 -s 23 -d 25 -p SRM -e 168 -c 42 -i 167 -a 42 + -t 325.39832667047 -s 23 -d 26 -p SRM -e 168 -c 42 -i 167 -a 42 - -t 325.39832667047 -s 23 -d 26 -p SRM -e 168 -c 42 -i 167 -a 42 h -t 325.39832667047 -s 23 -d 26 -p SRM -e 168 -c 42 -i 167 -a 42 r -t 325.39832667047 -s 21 -d 24 -p SRM -e 168 -c 42 -i 167 -a 42 r -t 325.40967067047001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 167 -a 42 r -t 325.40967067047001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 167 -a 42 r -t 325.40967067047001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 167 -a 42 + -t 325.40967067047001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 167 -a 42 - -t 325.40967067047001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 167 -a 42 h -t 325.40967067047001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 167 -a 42 + -t 325.40967067047001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 167 -a 42 - -t 325.40967067047001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 167 -a 42 h -t 325.40967067047001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 167 -a 42 r -t 325.42101467047002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 167 -a 42 r -t 325.42101467047002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 167 -a 42 + -t 327.85250994407761 -s 25 -d 23 -p cbr -e 1280 -c 5 -i 168 -a 5 - -t 327.85250994407761 -s 25 -d 23 -p cbr -e 1280 -c 5 -i 168 -a 5 h -t 327.85250994407761 -s 25 -d 23 -p cbr -e 1280 -c 5 -i 168 -a 5 r -t 327.87274994407761 -s 25 -d 23 -p cbr -e 1280 -c 5 -i 168 -a 5 + -t 327.87274994407761 -s 23 -d 21 -p cbr -e 1280 -c 5 -i 168 -a 5 - -t 327.87274994407761 -s 23 -d 21 -p cbr -e 1280 -c 5 -i 168 -a 5 h -t 327.87274994407761 -s 23 -d 21 -p cbr -e 1280 -c 5 -i 168 -a 5 + -t 327.87274994407761 -s 23 -d 26 -p cbr -e 1280 -c 5 -i 168 -a 5 - -t 327.87274994407761 -s 23 -d 26 -p cbr -e 1280 -c 5 -i 168 -a 5 h -t 327.87274994407761 -s 23 -d 26 -p cbr -e 1280 -c 5 -i 168 -a 5 r -t 327.89298994407761 -s 23 -d 21 -p cbr -e 1280 -c 5 -i 168 -a 5 + -t 327.89298994407761 -s 21 -d 20 -p cbr -e 1280 -c 5 -i 168 -a 5 - -t 327.89298994407761 -s 21 -d 20 -p cbr -e 1280 -c 5 -i 168 -a 5 h -t 327.89298994407761 -s 21 -d 20 -p cbr -e 1280 -c 5 -i 168 -a 5 + -t 327.89298994407761 -s 21 -d 24 -p cbr -e 1280 -c 5 -i 168 -a 5 - -t 327.89298994407761 -s 21 -d 24 -p cbr -e 1280 -c 5 -i 168 -a 5 h -t 327.89298994407761 -s 21 -d 24 -p cbr -e 1280 -c 5 -i 168 -a 5 r -t 327.89298994407761 -s 23 -d 26 -p cbr -e 1280 -c 5 -i 168 -a 5 + -t 327.89298994407761 -s 26 -d 27 -p cbr -e 1280 -c 5 -i 168 -a 5 - -t 327.89298994407761 -s 26 -d 27 -p cbr -e 1280 -c 5 -i 168 -a 5 h -t 327.89298994407761 -s 26 -d 27 -p cbr -e 1280 -c 5 -i 168 -a 5 + -t 327.89298994407761 -s 26 -d 28 -p cbr -e 1280 -c 5 -i 168 -a 5 - -t 327.89298994407761 -s 26 -d 28 -p cbr -e 1280 -c 5 -i 168 -a 5 h -t 327.89298994407761 -s 26 -d 28 -p cbr -e 1280 -c 5 -i 168 -a 5 r -t 327.91322994407761 -s 21 -d 20 -p cbr -e 1280 -c 5 -i 168 -a 5 + -t 327.91322994407761 -s 20 -d 22 -p cbr -e 1280 -c 5 -i 168 -a 5 - -t 327.91322994407761 -s 20 -d 22 -p cbr -e 1280 -c 5 -i 168 -a 5 h -t 327.91322994407761 -s 20 -d 22 -p cbr -e 1280 -c 5 -i 168 -a 5 r -t 327.91322994407761 -s 21 -d 24 -p cbr -e 1280 -c 5 -i 168 -a 5 r -t 327.91322994407761 -s 26 -d 27 -p cbr -e 1280 -c 5 -i 168 -a 5 r -t 327.91322994407761 -s 26 -d 28 -p cbr -e 1280 -c 5 -i 168 -a 5 r -t 327.93346994407761 -s 20 -d 22 -p cbr -e 1280 -c 5 -i 168 -a 5 + -t 328.01039787917 -s 18 -d 16 -p SRM -e 168 -c 42 -i 171 -a 42 - -t 328.01039787917 -s 18 -d 16 -p SRM -e 168 -c 42 -i 171 -a 42 h -t 328.01039787917 -s 18 -d 16 -p SRM -e 168 -c 42 -i 171 -a 42 r -t 328.02174187917001 -s 18 -d 16 -p SRM -e 168 -c 42 -i 171 -a 42 + -t 328.02174187917001 -s 16 -d 13 -p SRM -e 168 -c 42 -i 171 -a 42 - -t 328.02174187917001 -s 16 -d 13 -p SRM -e 168 -c 42 -i 171 -a 42 h -t 328.02174187917001 -s 16 -d 13 -p SRM -e 168 -c 42 -i 171 -a 42 + -t 328.02174187917001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 171 -a 42 - -t 328.02174187917001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 171 -a 42 h -t 328.02174187917001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 171 -a 42 r -t 328.03308587917002 -s 16 -d 13 -p SRM -e 168 -c 42 -i 171 -a 42 + -t 328.03308587917002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 171 -a 42 - -t 328.03308587917002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 171 -a 42 h -t 328.03308587917002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 171 -a 42 + -t 328.03308587917002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 171 -a 42 - -t 328.03308587917002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 171 -a 42 h -t 328.03308587917002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 171 -a 42 r -t 328.03308587917002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 171 -a 42 r -t 328.04442987917002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 171 -a 42 + -t 328.04442987917002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 171 -a 42 - -t 328.04442987917002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 171 -a 42 h -t 328.04442987917002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 171 -a 42 + -t 328.04442987917002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 171 -a 42 - -t 328.04442987917002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 171 -a 42 h -t 328.04442987917002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 171 -a 42 r -t 328.04442987917002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 171 -a 42 r -t 328.05577387917003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 171 -a 42 + -t 328.05577387917003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 171 -a 42 - -t 328.05577387917003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 171 -a 42 h -t 328.05577387917003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 171 -a 42 r -t 328.05577387917003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 171 -a 42 r -t 328.06711787917004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 171 -a 42 + -t 331.98207185765 -s 28 -d 26 -p SRM -e 168 -c 42 -i 169 -a 42 - -t 331.98207185765 -s 28 -d 26 -p SRM -e 168 -c 42 -i 169 -a 42 h -t 331.98207185765 -s 28 -d 26 -p SRM -e 168 -c 42 -i 169 -a 42 r -t 331.99341585765001 -s 28 -d 26 -p SRM -e 168 -c 42 -i 169 -a 42 + -t 331.99341585765001 -s 26 -d 23 -p SRM -e 168 -c 42 -i 169 -a 42 - -t 331.99341585765001 -s 26 -d 23 -p SRM -e 168 -c 42 -i 169 -a 42 h -t 331.99341585765001 -s 26 -d 23 -p SRM -e 168 -c 42 -i 169 -a 42 + -t 331.99341585765001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 169 -a 42 - -t 331.99341585765001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 169 -a 42 h -t 331.99341585765001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 169 -a 42 r -t 332.00475985765001 -s 26 -d 23 -p SRM -e 168 -c 42 -i 169 -a 42 + -t 332.00475985765001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 169 -a 42 - -t 332.00475985765001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 169 -a 42 h -t 332.00475985765001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 169 -a 42 + -t 332.00475985765001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 169 -a 42 - -t 332.00475985765001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 169 -a 42 h -t 332.00475985765001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 169 -a 42 r -t 332.00475985765001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 169 -a 42 r -t 332.01610385765002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 169 -a 42 + -t 332.01610385765002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 169 -a 42 - -t 332.01610385765002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 169 -a 42 h -t 332.01610385765002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 169 -a 42 + -t 332.01610385765002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 169 -a 42 - -t 332.01610385765002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 169 -a 42 h -t 332.01610385765002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 169 -a 42 r -t 332.01610385765002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 169 -a 42 r -t 332.02744785765003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 169 -a 42 + -t 332.02744785765003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 169 -a 42 - -t 332.02744785765003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 169 -a 42 h -t 332.02744785765003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 169 -a 42 r -t 332.02744785765003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 169 -a 42 r -t 332.03879185765004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 169 -a 42 + -t 332.42343017340198 -s 26 -d 23 -p cbr -e 1280 -c 6 -i 170 -a 6 - -t 332.42343017340198 -s 26 -d 23 -p cbr -e 1280 -c 6 -i 170 -a 6 h -t 332.42343017340198 -s 26 -d 23 -p cbr -e 1280 -c 6 -i 170 -a 6 + -t 332.42343017340198 -s 26 -d 27 -p cbr -e 1280 -c 6 -i 170 -a 6 - -t 332.42343017340198 -s 26 -d 27 -p cbr -e 1280 -c 6 -i 170 -a 6 h -t 332.42343017340198 -s 26 -d 27 -p cbr -e 1280 -c 6 -i 170 -a 6 + -t 332.42343017340198 -s 26 -d 28 -p cbr -e 1280 -c 6 -i 170 -a 6 - -t 332.42343017340198 -s 26 -d 28 -p cbr -e 1280 -c 6 -i 170 -a 6 h -t 332.42343017340198 -s 26 -d 28 -p cbr -e 1280 -c 6 -i 170 -a 6 r -t 332.44367017340198 -s 26 -d 23 -p cbr -e 1280 -c 6 -i 170 -a 6 + -t 332.44367017340198 -s 23 -d 21 -p cbr -e 1280 -c 6 -i 170 -a 6 - -t 332.44367017340198 -s 23 -d 21 -p cbr -e 1280 -c 6 -i 170 -a 6 h -t 332.44367017340198 -s 23 -d 21 -p cbr -e 1280 -c 6 -i 170 -a 6 + -t 332.44367017340198 -s 23 -d 25 -p cbr -e 1280 -c 6 -i 170 -a 6 - -t 332.44367017340198 -s 23 -d 25 -p cbr -e 1280 -c 6 -i 170 -a 6 h -t 332.44367017340198 -s 23 -d 25 -p cbr -e 1280 -c 6 -i 170 -a 6 r -t 332.44367017340198 -s 26 -d 27 -p cbr -e 1280 -c 6 -i 170 -a 6 r -t 332.44367017340198 -s 26 -d 28 -p cbr -e 1280 -c 6 -i 170 -a 6 r -t 332.46391017340198 -s 23 -d 21 -p cbr -e 1280 -c 6 -i 170 -a 6 + -t 332.46391017340198 -s 21 -d 20 -p cbr -e 1280 -c 6 -i 170 -a 6 - -t 332.46391017340198 -s 21 -d 20 -p cbr -e 1280 -c 6 -i 170 -a 6 h -t 332.46391017340198 -s 21 -d 20 -p cbr -e 1280 -c 6 -i 170 -a 6 + -t 332.46391017340198 -s 21 -d 24 -p cbr -e 1280 -c 6 -i 170 -a 6 - -t 332.46391017340198 -s 21 -d 24 -p cbr -e 1280 -c 6 -i 170 -a 6 h -t 332.46391017340198 -s 21 -d 24 -p cbr -e 1280 -c 6 -i 170 -a 6 r -t 332.46391017340198 -s 23 -d 25 -p cbr -e 1280 -c 6 -i 170 -a 6 r -t 332.48415017340199 -s 21 -d 20 -p cbr -e 1280 -c 6 -i 170 -a 6 + -t 332.48415017340199 -s 20 -d 22 -p cbr -e 1280 -c 6 -i 170 -a 6 - -t 332.48415017340199 -s 20 -d 22 -p cbr -e 1280 -c 6 -i 170 -a 6 h -t 332.48415017340199 -s 20 -d 22 -p cbr -e 1280 -c 6 -i 170 -a 6 r -t 332.48415017340199 -s 21 -d 24 -p cbr -e 1280 -c 6 -i 170 -a 6 r -t 332.50439017340199 -s 20 -d 22 -p cbr -e 1280 -c 6 -i 170 -a 6 + -t 333.20634694998341 -s 14 -d 11 -p cbr -e 1280 -c 4 -i 172 -a 4 + -t 333.20634694998341 -s 24 -d 21 -p cbr -e 1280 -c 4 -i 171 -a 4 - -t 333.20634694998341 -s 14 -d 11 -p cbr -e 1280 -c 4 -i 172 -a 4 - -t 333.20634694998341 -s 24 -d 21 -p cbr -e 1280 -c 4 -i 171 -a 4 h -t 333.20634694998341 -s 14 -d 11 -p cbr -e 1280 -c 4 -i 172 -a 4 h -t 333.20634694998341 -s 24 -d 21 -p cbr -e 1280 -c 4 -i 171 -a 4 r -t 333.22658694998341 -s 14 -d 11 -p cbr -e 1280 -c 4 -i 172 -a 4 + -t 333.22658694998341 -s 11 -d 10 -p cbr -e 1280 -c 4 -i 172 -a 4 - -t 333.22658694998341 -s 11 -d 10 -p cbr -e 1280 -c 4 -i 172 -a 4 h -t 333.22658694998341 -s 11 -d 10 -p cbr -e 1280 -c 4 -i 172 -a 4 + -t 333.22658694998341 -s 11 -d 13 -p cbr -e 1280 -c 4 -i 172 -a 4 - -t 333.22658694998341 -s 11 -d 13 -p cbr -e 1280 -c 4 -i 172 -a 4 h -t 333.22658694998341 -s 11 -d 13 -p cbr -e 1280 -c 4 -i 172 -a 4 d -t 333.22658694998341 -s 11 -d 13 -p cbr -e 1280 -c 4 -i 172 -a 4 r -t 333.22658694998341 -s 24 -d 21 -p cbr -e 1280 -c 4 -i 171 -a 4 + -t 333.22658694998341 -s 21 -d 20 -p cbr -e 1280 -c 4 -i 171 -a 4 - -t 333.22658694998341 -s 21 -d 20 -p cbr -e 1280 -c 4 -i 171 -a 4 h -t 333.22658694998341 -s 21 -d 20 -p cbr -e 1280 -c 4 -i 171 -a 4 + -t 333.22658694998341 -s 21 -d 23 -p cbr -e 1280 -c 4 -i 171 -a 4 - -t 333.22658694998341 -s 21 -d 23 -p cbr -e 1280 -c 4 -i 171 -a 4 h -t 333.22658694998341 -s 21 -d 23 -p cbr -e 1280 -c 4 -i 171 -a 4 r -t 333.24682694998342 -s 11 -d 10 -p cbr -e 1280 -c 4 -i 172 -a 4 + -t 333.24682694998342 -s 10 -d 12 -p cbr -e 1280 -c 4 -i 172 -a 4 - -t 333.24682694998342 -s 10 -d 12 -p cbr -e 1280 -c 4 -i 172 -a 4 h -t 333.24682694998342 -s 10 -d 12 -p cbr -e 1280 -c 4 -i 172 -a 4 r -t 333.24682694998342 -s 21 -d 20 -p cbr -e 1280 -c 4 -i 171 -a 4 + -t 333.24682694998342 -s 20 -d 22 -p cbr -e 1280 -c 4 -i 171 -a 4 - -t 333.24682694998342 -s 20 -d 22 -p cbr -e 1280 -c 4 -i 171 -a 4 h -t 333.24682694998342 -s 20 -d 22 -p cbr -e 1280 -c 4 -i 171 -a 4 r -t 333.24682694998342 -s 21 -d 23 -p cbr -e 1280 -c 4 -i 171 -a 4 + -t 333.24682694998342 -s 23 -d 25 -p cbr -e 1280 -c 4 -i 171 -a 4 - -t 333.24682694998342 -s 23 -d 25 -p cbr -e 1280 -c 4 -i 171 -a 4 h -t 333.24682694998342 -s 23 -d 25 -p cbr -e 1280 -c 4 -i 171 -a 4 + -t 333.24682694998342 -s 23 -d 26 -p cbr -e 1280 -c 4 -i 171 -a 4 - -t 333.24682694998342 -s 23 -d 26 -p cbr -e 1280 -c 4 -i 171 -a 4 h -t 333.24682694998342 -s 23 -d 26 -p cbr -e 1280 -c 4 -i 171 -a 4 r -t 333.26706694998342 -s 10 -d 12 -p cbr -e 1280 -c 4 -i 172 -a 4 r -t 333.26706694998342 -s 20 -d 22 -p cbr -e 1280 -c 4 -i 171 -a 4 r -t 333.26706694998342 -s 23 -d 25 -p cbr -e 1280 -c 4 -i 171 -a 4 r -t 333.26706694998342 -s 23 -d 26 -p cbr -e 1280 -c 4 -i 171 -a 4 + -t 333.26706694998342 -s 26 -d 27 -p cbr -e 1280 -c 4 -i 171 -a 4 - -t 333.26706694998342 -s 26 -d 27 -p cbr -e 1280 -c 4 -i 171 -a 4 h -t 333.26706694998342 -s 26 -d 27 -p cbr -e 1280 -c 4 -i 171 -a 4 + -t 333.26706694998342 -s 26 -d 28 -p cbr -e 1280 -c 4 -i 171 -a 4 - -t 333.26706694998342 -s 26 -d 28 -p cbr -e 1280 -c 4 -i 171 -a 4 h -t 333.26706694998342 -s 26 -d 28 -p cbr -e 1280 -c 4 -i 171 -a 4 r -t 333.28730694998342 -s 26 -d 27 -p cbr -e 1280 -c 4 -i 171 -a 4 r -t 333.28730694998342 -s 26 -d 28 -p cbr -e 1280 -c 4 -i 171 -a 4 + -t 334.61630767776001 -s 25 -d 23 -p SRM -e 168 -c 42 -i 172 -a 42 - -t 334.61630767776001 -s 25 -d 23 -p SRM -e 168 -c 42 -i 172 -a 42 h -t 334.61630767776001 -s 25 -d 23 -p SRM -e 168 -c 42 -i 172 -a 42 r -t 334.62765167776001 -s 25 -d 23 -p SRM -e 168 -c 42 -i 172 -a 42 + -t 334.62765167776001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 172 -a 42 - -t 334.62765167776001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 172 -a 42 h -t 334.62765167776001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 172 -a 42 + -t 334.62765167776001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 172 -a 42 - -t 334.62765167776001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 172 -a 42 h -t 334.62765167776001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 172 -a 42 r -t 334.63899567776002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 172 -a 42 + -t 334.63899567776002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 172 -a 42 - -t 334.63899567776002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 172 -a 42 h -t 334.63899567776002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 172 -a 42 + -t 334.63899567776002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 172 -a 42 - -t 334.63899567776002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 172 -a 42 h -t 334.63899567776002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 172 -a 42 r -t 334.63899567776002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 172 -a 42 + -t 334.63899567776002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 172 -a 42 - -t 334.63899567776002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 172 -a 42 h -t 334.63899567776002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 172 -a 42 + -t 334.63899567776002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 172 -a 42 - -t 334.63899567776002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 172 -a 42 h -t 334.63899567776002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 172 -a 42 r -t 334.65033967776003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 172 -a 42 + -t 334.65033967776003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 172 -a 42 - -t 334.65033967776003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 172 -a 42 h -t 334.65033967776003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 172 -a 42 r -t 334.65033967776003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 172 -a 42 r -t 334.65033967776003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 172 -a 42 r -t 334.65033967776003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 172 -a 42 r -t 334.66168367776004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 172 -a 42 + -t 334.78753270363427 -s 17 -d 16 -p cbr -e 1280 -c 7 -i 173 -a 7 + -t 334.78753270363427 -s 27 -d 26 -p cbr -e 1280 -c 7 -i 173 -a 7 - -t 334.78753270363427 -s 17 -d 16 -p cbr -e 1280 -c 7 -i 173 -a 7 - -t 334.78753270363427 -s 27 -d 26 -p cbr -e 1280 -c 7 -i 173 -a 7 h -t 334.78753270363427 -s 17 -d 16 -p cbr -e 1280 -c 7 -i 173 -a 7 h -t 334.78753270363427 -s 27 -d 26 -p cbr -e 1280 -c 7 -i 173 -a 7 r -t 334.80777270363427 -s 17 -d 16 -p cbr -e 1280 -c 7 -i 173 -a 7 + -t 334.80777270363427 -s 16 -d 13 -p cbr -e 1280 -c 7 -i 173 -a 7 - -t 334.80777270363427 -s 16 -d 13 -p cbr -e 1280 -c 7 -i 173 -a 7 h -t 334.80777270363427 -s 16 -d 13 -p cbr -e 1280 -c 7 -i 173 -a 7 + -t 334.80777270363427 -s 16 -d 18 -p cbr -e 1280 -c 7 -i 173 -a 7 - -t 334.80777270363427 -s 16 -d 18 -p cbr -e 1280 -c 7 -i 173 -a 7 h -t 334.80777270363427 -s 16 -d 18 -p cbr -e 1280 -c 7 -i 173 -a 7 r -t 334.80777270363427 -s 27 -d 26 -p cbr -e 1280 -c 7 -i 173 -a 7 + -t 334.80777270363427 -s 26 -d 23 -p cbr -e 1280 -c 7 -i 173 -a 7 - -t 334.80777270363427 -s 26 -d 23 -p cbr -e 1280 -c 7 -i 173 -a 7 h -t 334.80777270363427 -s 26 -d 23 -p cbr -e 1280 -c 7 -i 173 -a 7 + -t 334.80777270363427 -s 26 -d 28 -p cbr -e 1280 -c 7 -i 173 -a 7 - -t 334.80777270363427 -s 26 -d 28 -p cbr -e 1280 -c 7 -i 173 -a 7 h -t 334.80777270363427 -s 26 -d 28 -p cbr -e 1280 -c 7 -i 173 -a 7 r -t 334.82801270363427 -s 16 -d 13 -p cbr -e 1280 -c 7 -i 173 -a 7 + -t 334.82801270363427 -s 13 -d 11 -p cbr -e 1280 -c 7 -i 173 -a 7 - -t 334.82801270363427 -s 13 -d 11 -p cbr -e 1280 -c 7 -i 173 -a 7 h -t 334.82801270363427 -s 13 -d 11 -p cbr -e 1280 -c 7 -i 173 -a 7 d -t 334.82801270363427 -s 13 -d 11 -p cbr -e 1280 -c 7 -i 173 -a 7 + -t 334.82801270363427 -s 13 -d 15 -p cbr -e 1280 -c 7 -i 173 -a 7 - -t 334.82801270363427 -s 13 -d 15 -p cbr -e 1280 -c 7 -i 173 -a 7 h -t 334.82801270363427 -s 13 -d 15 -p cbr -e 1280 -c 7 -i 173 -a 7 r -t 334.82801270363427 -s 16 -d 18 -p cbr -e 1280 -c 7 -i 173 -a 7 r -t 334.82801270363427 -s 26 -d 23 -p cbr -e 1280 -c 7 -i 173 -a 7 + -t 334.82801270363427 -s 23 -d 21 -p cbr -e 1280 -c 7 -i 173 -a 7 - -t 334.82801270363427 -s 23 -d 21 -p cbr -e 1280 -c 7 -i 173 -a 7 h -t 334.82801270363427 -s 23 -d 21 -p cbr -e 1280 -c 7 -i 173 -a 7 + -t 334.82801270363427 -s 23 -d 25 -p cbr -e 1280 -c 7 -i 173 -a 7 - -t 334.82801270363427 -s 23 -d 25 -p cbr -e 1280 -c 7 -i 173 -a 7 h -t 334.82801270363427 -s 23 -d 25 -p cbr -e 1280 -c 7 -i 173 -a 7 r -t 334.82801270363427 -s 26 -d 28 -p cbr -e 1280 -c 7 -i 173 -a 7 r -t 334.84825270363427 -s 13 -d 15 -p cbr -e 1280 -c 7 -i 173 -a 7 r -t 334.84825270363427 -s 23 -d 21 -p cbr -e 1280 -c 7 -i 173 -a 7 + -t 334.84825270363427 -s 21 -d 20 -p cbr -e 1280 -c 7 -i 173 -a 7 - -t 334.84825270363427 -s 21 -d 20 -p cbr -e 1280 -c 7 -i 173 -a 7 h -t 334.84825270363427 -s 21 -d 20 -p cbr -e 1280 -c 7 -i 173 -a 7 + -t 334.84825270363427 -s 21 -d 24 -p cbr -e 1280 -c 7 -i 173 -a 7 - -t 334.84825270363427 -s 21 -d 24 -p cbr -e 1280 -c 7 -i 173 -a 7 h -t 334.84825270363427 -s 21 -d 24 -p cbr -e 1280 -c 7 -i 173 -a 7 r -t 334.84825270363427 -s 23 -d 25 -p cbr -e 1280 -c 7 -i 173 -a 7 r -t 334.86849270363427 -s 21 -d 20 -p cbr -e 1280 -c 7 -i 173 -a 7 + -t 334.86849270363427 -s 20 -d 22 -p cbr -e 1280 -c 7 -i 173 -a 7 - -t 334.86849270363427 -s 20 -d 22 -p cbr -e 1280 -c 7 -i 173 -a 7 h -t 334.86849270363427 -s 20 -d 22 -p cbr -e 1280 -c 7 -i 173 -a 7 r -t 334.86849270363427 -s 21 -d 24 -p cbr -e 1280 -c 7 -i 173 -a 7 r -t 334.88873270363428 -s 20 -d 22 -p cbr -e 1280 -c 7 -i 173 -a 7 + -t 338.76316875974999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 174 -a 42 - -t 338.76316875974999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 174 -a 42 h -t 338.76316875974999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 174 -a 42 + -t 338.76316875974999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 174 -a 42 - -t 338.76316875974999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 174 -a 42 h -t 338.76316875974999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 174 -a 42 + -t 338.76316875974999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 174 -a 42 - -t 338.76316875974999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 174 -a 42 h -t 338.76316875974999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 174 -a 42 r -t 338.77451275975 -s 16 -d 13 -p SRM -e 168 -c 42 -i 174 -a 42 + -t 338.77451275975 -s 13 -d 11 -p SRM -e 168 -c 42 -i 174 -a 42 - -t 338.77451275975 -s 13 -d 11 -p SRM -e 168 -c 42 -i 174 -a 42 h -t 338.77451275975 -s 13 -d 11 -p SRM -e 168 -c 42 -i 174 -a 42 + -t 338.77451275975 -s 13 -d 15 -p SRM -e 168 -c 42 -i 174 -a 42 - -t 338.77451275975 -s 13 -d 15 -p SRM -e 168 -c 42 -i 174 -a 42 h -t 338.77451275975 -s 13 -d 15 -p SRM -e 168 -c 42 -i 174 -a 42 r -t 338.77451275975 -s 16 -d 17 -p SRM -e 168 -c 42 -i 174 -a 42 r -t 338.77451275975 -s 16 -d 18 -p SRM -e 168 -c 42 -i 174 -a 42 r -t 338.78585675975 -s 13 -d 11 -p SRM -e 168 -c 42 -i 174 -a 42 + -t 338.78585675975 -s 11 -d 10 -p SRM -e 168 -c 42 -i 174 -a 42 - -t 338.78585675975 -s 11 -d 10 -p SRM -e 168 -c 42 -i 174 -a 42 h -t 338.78585675975 -s 11 -d 10 -p SRM -e 168 -c 42 -i 174 -a 42 + -t 338.78585675975 -s 11 -d 14 -p SRM -e 168 -c 42 -i 174 -a 42 - -t 338.78585675975 -s 11 -d 14 -p SRM -e 168 -c 42 -i 174 -a 42 h -t 338.78585675975 -s 11 -d 14 -p SRM -e 168 -c 42 -i 174 -a 42 r -t 338.78585675975 -s 13 -d 15 -p SRM -e 168 -c 42 -i 174 -a 42 r -t 338.79720075975001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 174 -a 42 + -t 338.79720075975001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 174 -a 42 - -t 338.79720075975001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 174 -a 42 h -t 338.79720075975001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 174 -a 42 r -t 338.79720075975001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 174 -a 42 r -t 338.80854475975002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 174 -a 42 + -t 338.89112710037 -s 11 -d 10 -p SRM -e 20 -c 7 -i 175 -a 7 - -t 338.89112710037 -s 11 -d 10 -p SRM -e 20 -c 7 -i 175 -a 7 h -t 338.89112710037 -s 11 -d 10 -p SRM -e 20 -c 7 -i 175 -a 7 + -t 338.89112710037 -s 11 -d 13 -p SRM -e 20 -c 7 -i 175 -a 7 - -t 338.89112710037 -s 11 -d 13 -p SRM -e 20 -c 7 -i 175 -a 7 h -t 338.89112710037 -s 11 -d 13 -p SRM -e 20 -c 7 -i 175 -a 7 + -t 338.89112710037 -s 11 -d 14 -p SRM -e 20 -c 7 -i 175 -a 7 - -t 338.89112710037 -s 11 -d 14 -p SRM -e 20 -c 7 -i 175 -a 7 h -t 338.89112710037 -s 11 -d 14 -p SRM -e 20 -c 7 -i 175 -a 7 v -t 338.89112710037 sim_annotation 338.89112710037 17 338.89112710037: node 11 sends request for msg (7:10) m -t 338.89112710037 -s 11 -n _o13:1793:q -c chocolate -h square r -t 338.90128710036998 -s 11 -d 10 -p SRM -e 20 -c 7 -i 175 -a 7 + -t 338.90128710036998 -s 10 -d 12 -p SRM -e 20 -c 7 -i 175 -a 7 - -t 338.90128710036998 -s 10 -d 12 -p SRM -e 20 -c 7 -i 175 -a 7 h -t 338.90128710036998 -s 10 -d 12 -p SRM -e 20 -c 7 -i 175 -a 7 r -t 338.90128710036998 -s 11 -d 13 -p SRM -e 20 -c 7 -i 175 -a 7 + -t 338.90128710036998 -s 13 -d 15 -p SRM -e 20 -c 7 -i 175 -a 7 - -t 338.90128710036998 -s 13 -d 15 -p SRM -e 20 -c 7 -i 175 -a 7 h -t 338.90128710036998 -s 13 -d 15 -p SRM -e 20 -c 7 -i 175 -a 7 + -t 338.90128710036998 -s 13 -d 16 -p SRM -e 20 -c 7 -i 175 -a 7 - -t 338.90128710036998 -s 13 -d 16 -p SRM -e 20 -c 7 -i 175 -a 7 h -t 338.90128710036998 -s 13 -d 16 -p SRM -e 20 -c 7 -i 175 -a 7 r -t 338.90128710036998 -s 11 -d 14 -p SRM -e 20 -c 7 -i 175 -a 7 r -t 338.91144710036997 -s 10 -d 12 -p SRM -e 20 -c 7 -i 175 -a 7 r -t 338.91144710036997 -s 13 -d 15 -p SRM -e 20 -c 7 -i 175 -a 7 r -t 338.91144710036997 -s 13 -d 16 -p SRM -e 20 -c 7 -i 175 -a 7 + -t 338.91144710036997 -s 16 -d 17 -p SRM -e 20 -c 7 -i 175 -a 7 - -t 338.91144710036997 -s 16 -d 17 -p SRM -e 20 -c 7 -i 175 -a 7 h -t 338.91144710036997 -s 16 -d 17 -p SRM -e 20 -c 7 -i 175 -a 7 + -t 338.91144710036997 -s 16 -d 18 -p SRM -e 20 -c 7 -i 175 -a 7 - -t 338.91144710036997 -s 16 -d 18 -p SRM -e 20 -c 7 -i 175 -a 7 h -t 338.91144710036997 -s 16 -d 18 -p SRM -e 20 -c 7 -i 175 -a 7 + -t 338.91656782682998 -s 26 -d 23 -p SRM -e 168 -c 42 -i 174 -a 42 - -t 338.91656782682998 -s 26 -d 23 -p SRM -e 168 -c 42 -i 174 -a 42 h -t 338.91656782682998 -s 26 -d 23 -p SRM -e 168 -c 42 -i 174 -a 42 + -t 338.91656782682998 -s 26 -d 27 -p SRM -e 168 -c 42 -i 174 -a 42 - -t 338.91656782682998 -s 26 -d 27 -p SRM -e 168 -c 42 -i 174 -a 42 h -t 338.91656782682998 -s 26 -d 27 -p SRM -e 168 -c 42 -i 174 -a 42 + -t 338.91656782682998 -s 26 -d 28 -p SRM -e 168 -c 42 -i 174 -a 42 - -t 338.91656782682998 -s 26 -d 28 -p SRM -e 168 -c 42 -i 174 -a 42 h -t 338.91656782682998 -s 26 -d 28 -p SRM -e 168 -c 42 -i 174 -a 42 + -t 338.91890676365 -s 13 -d 11 -p SRM -e 1300 -c 7 -i 176 -a 7 - -t 338.91890676365 -s 13 -d 11 -p SRM -e 1300 -c 7 -i 176 -a 7 h -t 338.91890676365 -s 13 -d 11 -p SRM -e 1300 -c 7 -i 176 -a 7 + -t 338.91890676365 -s 13 -d 15 -p SRM -e 1300 -c 7 -i 176 -a 7 - -t 338.91890676365 -s 13 -d 15 -p SRM -e 1300 -c 7 -i 176 -a 7 h -t 338.91890676365 -s 13 -d 15 -p SRM -e 1300 -c 7 -i 176 -a 7 + -t 338.91890676365 -s 13 -d 16 -p SRM -e 1300 -c 7 -i 176 -a 7 - -t 338.91890676365 -s 13 -d 16 -p SRM -e 1300 -c 7 -i 176 -a 7 h -t 338.91890676365 -s 13 -d 16 -p SRM -e 1300 -c 7 -i 176 -a 7 v -t 338.91890676365 sim_annotation 338.91890676365 18 338.91890676365: node 13 sends repair for msg (7:10) m -t 338.91890676365 -s 13 -n _o23:1793:p -c chocolate -h circle r -t 338.92160710036995 -s 16 -d 17 -p SRM -e 20 -c 7 -i 175 -a 7 r -t 338.92160710036995 -s 16 -d 18 -p SRM -e 20 -c 7 -i 175 -a 7 r -t 338.92791182682998 -s 26 -d 23 -p SRM -e 168 -c 42 -i 174 -a 42 + -t 338.92791182682998 -s 23 -d 21 -p SRM -e 168 -c 42 -i 174 -a 42 - -t 338.92791182682998 -s 23 -d 21 -p SRM -e 168 -c 42 -i 174 -a 42 h -t 338.92791182682998 -s 23 -d 21 -p SRM -e 168 -c 42 -i 174 -a 42 + -t 338.92791182682998 -s 23 -d 25 -p SRM -e 168 -c 42 -i 174 -a 42 - -t 338.92791182682998 -s 23 -d 25 -p SRM -e 168 -c 42 -i 174 -a 42 h -t 338.92791182682998 -s 23 -d 25 -p SRM -e 168 -c 42 -i 174 -a 42 r -t 338.92791182682998 -s 26 -d 27 -p SRM -e 168 -c 42 -i 174 -a 42 r -t 338.92791182682998 -s 26 -d 28 -p SRM -e 168 -c 42 -i 174 -a 42 r -t 338.93925582682999 -s 23 -d 21 -p SRM -e 168 -c 42 -i 174 -a 42 + -t 338.93925582682999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 174 -a 42 - -t 338.93925582682999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 174 -a 42 h -t 338.93925582682999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 174 -a 42 + -t 338.93925582682999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 174 -a 42 - -t 338.93925582682999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 174 -a 42 h -t 338.93925582682999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 174 -a 42 r -t 338.93925582682999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 174 -a 42 r -t 338.93930676364999 -s 13 -d 11 -p SRM -e 1300 -c 7 -i 176 -a 7 + -t 338.93930676364999 -s 11 -d 10 -p SRM -e 1300 -c 7 -i 176 -a 7 - -t 338.93930676364999 -s 11 -d 10 -p SRM -e 1300 -c 7 -i 176 -a 7 h -t 338.93930676364999 -s 11 -d 10 -p SRM -e 1300 -c 7 -i 176 -a 7 + -t 338.93930676364999 -s 11 -d 14 -p SRM -e 1300 -c 7 -i 176 -a 7 - -t 338.93930676364999 -s 11 -d 14 -p SRM -e 1300 -c 7 -i 176 -a 7 h -t 338.93930676364999 -s 11 -d 14 -p SRM -e 1300 -c 7 -i 176 -a 7 r -t 338.93930676364999 -s 13 -d 15 -p SRM -e 1300 -c 7 -i 176 -a 7 r -t 338.93930676364999 -s 13 -d 16 -p SRM -e 1300 -c 7 -i 176 -a 7 + -t 338.93930676364999 -s 16 -d 17 -p SRM -e 1300 -c 7 -i 176 -a 7 - -t 338.93930676364999 -s 16 -d 17 -p SRM -e 1300 -c 7 -i 176 -a 7 h -t 338.93930676364999 -s 16 -d 17 -p SRM -e 1300 -c 7 -i 176 -a 7 + -t 338.93930676364999 -s 16 -d 18 -p SRM -e 1300 -c 7 -i 176 -a 7 - -t 338.93930676364999 -s 16 -d 18 -p SRM -e 1300 -c 7 -i 176 -a 7 h -t 338.93930676364999 -s 16 -d 18 -p SRM -e 1300 -c 7 -i 176 -a 7 m -t 338.93930676364999 -s 11 -n _o13:1793:q -c chocolate -h square -X r -t 338.95059982683 -s 21 -d 20 -p SRM -e 168 -c 42 -i 174 -a 42 + -t 338.95059982683 -s 20 -d 22 -p SRM -e 168 -c 42 -i 174 -a 42 - -t 338.95059982683 -s 20 -d 22 -p SRM -e 168 -c 42 -i 174 -a 42 h -t 338.95059982683 -s 20 -d 22 -p SRM -e 168 -c 42 -i 174 -a 42 r -t 338.95059982683 -s 21 -d 24 -p SRM -e 168 -c 42 -i 174 -a 42 m -t 338.95190676365002 -s 13 -n _o23:1793:p -c chocolate -h circle -X r -t 338.95970676364999 -s 11 -d 10 -p SRM -e 1300 -c 7 -i 176 -a 7 + -t 338.95970676364999 -s 10 -d 12 -p SRM -e 1300 -c 7 -i 176 -a 7 - -t 338.95970676364999 -s 10 -d 12 -p SRM -e 1300 -c 7 -i 176 -a 7 h -t 338.95970676364999 -s 10 -d 12 -p SRM -e 1300 -c 7 -i 176 -a 7 r -t 338.95970676364999 -s 11 -d 14 -p SRM -e 1300 -c 7 -i 176 -a 7 r -t 338.95970676364999 -s 16 -d 17 -p SRM -e 1300 -c 7 -i 176 -a 7 r -t 338.95970676364999 -s 16 -d 18 -p SRM -e 1300 -c 7 -i 176 -a 7 r -t 338.96194382683001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 174 -a 42 r -t 338.98010676364999 -s 10 -d 12 -p SRM -e 1300 -c 7 -i 176 -a 7 + -t 339.42947420706997 -s 20 -d 21 -p SRM -e 168 -c 42 -i 175 -a 42 - -t 339.42947420706997 -s 20 -d 21 -p SRM -e 168 -c 42 -i 175 -a 42 h -t 339.42947420706997 -s 20 -d 21 -p SRM -e 168 -c 42 -i 175 -a 42 + -t 339.42947420706997 -s 20 -d 22 -p SRM -e 168 -c 42 -i 175 -a 42 - -t 339.42947420706997 -s 20 -d 22 -p SRM -e 168 -c 42 -i 175 -a 42 h -t 339.42947420706997 -s 20 -d 22 -p SRM -e 168 -c 42 -i 175 -a 42 r -t 339.44081820706998 -s 20 -d 21 -p SRM -e 168 -c 42 -i 175 -a 42 + -t 339.44081820706998 -s 21 -d 23 -p SRM -e 168 -c 42 -i 175 -a 42 - -t 339.44081820706998 -s 21 -d 23 -p SRM -e 168 -c 42 -i 175 -a 42 h -t 339.44081820706998 -s 21 -d 23 -p SRM -e 168 -c 42 -i 175 -a 42 + -t 339.44081820706998 -s 21 -d 24 -p SRM -e 168 -c 42 -i 175 -a 42 - -t 339.44081820706998 -s 21 -d 24 -p SRM -e 168 -c 42 -i 175 -a 42 h -t 339.44081820706998 -s 21 -d 24 -p SRM -e 168 -c 42 -i 175 -a 42 r -t 339.44081820706998 -s 20 -d 22 -p SRM -e 168 -c 42 -i 175 -a 42 r -t 339.45216220706999 -s 21 -d 23 -p SRM -e 168 -c 42 -i 175 -a 42 + -t 339.45216220706999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 175 -a 42 - -t 339.45216220706999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 175 -a 42 h -t 339.45216220706999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 175 -a 42 + -t 339.45216220706999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 175 -a 42 - -t 339.45216220706999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 175 -a 42 h -t 339.45216220706999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 175 -a 42 r -t 339.45216220706999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 175 -a 42 + -t 339.46239296392002 -s 12 -d 10 -p SRM -e 168 -c 42 -i 177 -a 42 - -t 339.46239296392002 -s 12 -d 10 -p SRM -e 168 -c 42 -i 177 -a 42 h -t 339.46239296392002 -s 12 -d 10 -p SRM -e 168 -c 42 -i 177 -a 42 r -t 339.46350620707 -s 23 -d 25 -p SRM -e 168 -c 42 -i 175 -a 42 r -t 339.46350620707 -s 23 -d 26 -p SRM -e 168 -c 42 -i 175 -a 42 + -t 339.46350620707 -s 26 -d 27 -p SRM -e 168 -c 42 -i 175 -a 42 - -t 339.46350620707 -s 26 -d 27 -p SRM -e 168 -c 42 -i 175 -a 42 h -t 339.46350620707 -s 26 -d 27 -p SRM -e 168 -c 42 -i 175 -a 42 + -t 339.46350620707 -s 26 -d 28 -p SRM -e 168 -c 42 -i 175 -a 42 - -t 339.46350620707 -s 26 -d 28 -p SRM -e 168 -c 42 -i 175 -a 42 h -t 339.46350620707 -s 26 -d 28 -p SRM -e 168 -c 42 -i 175 -a 42 r -t 339.47373696392003 -s 12 -d 10 -p SRM -e 168 -c 42 -i 177 -a 42 + -t 339.47373696392003 -s 10 -d 11 -p SRM -e 168 -c 42 -i 177 -a 42 - -t 339.47373696392003 -s 10 -d 11 -p SRM -e 168 -c 42 -i 177 -a 42 h -t 339.47373696392003 -s 10 -d 11 -p SRM -e 168 -c 42 -i 177 -a 42 r -t 339.47485020707001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 175 -a 42 r -t 339.47485020707001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 175 -a 42 r -t 339.48508096392004 -s 10 -d 11 -p SRM -e 168 -c 42 -i 177 -a 42 + -t 339.48508096392004 -s 11 -d 13 -p SRM -e 168 -c 42 -i 177 -a 42 - -t 339.48508096392004 -s 11 -d 13 -p SRM -e 168 -c 42 -i 177 -a 42 h -t 339.48508096392004 -s 11 -d 13 -p SRM -e 168 -c 42 -i 177 -a 42 + -t 339.48508096392004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 177 -a 42 - -t 339.48508096392004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 177 -a 42 h -t 339.48508096392004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 177 -a 42 r -t 339.49642496392005 -s 11 -d 13 -p SRM -e 168 -c 42 -i 177 -a 42 + -t 339.49642496392005 -s 13 -d 15 -p SRM -e 168 -c 42 -i 177 -a 42 - -t 339.49642496392005 -s 13 -d 15 -p SRM -e 168 -c 42 -i 177 -a 42 h -t 339.49642496392005 -s 13 -d 15 -p SRM -e 168 -c 42 -i 177 -a 42 + -t 339.49642496392005 -s 13 -d 16 -p SRM -e 168 -c 42 -i 177 -a 42 - -t 339.49642496392005 -s 13 -d 16 -p SRM -e 168 -c 42 -i 177 -a 42 h -t 339.49642496392005 -s 13 -d 16 -p SRM -e 168 -c 42 -i 177 -a 42 r -t 339.49642496392005 -s 11 -d 14 -p SRM -e 168 -c 42 -i 177 -a 42 r -t 339.50776896392006 -s 13 -d 15 -p SRM -e 168 -c 42 -i 177 -a 42 r -t 339.50776896392006 -s 13 -d 16 -p SRM -e 168 -c 42 -i 177 -a 42 + -t 339.50776896392006 -s 16 -d 17 -p SRM -e 168 -c 42 -i 177 -a 42 - -t 339.50776896392006 -s 16 -d 17 -p SRM -e 168 -c 42 -i 177 -a 42 h -t 339.50776896392006 -s 16 -d 17 -p SRM -e 168 -c 42 -i 177 -a 42 + -t 339.50776896392006 -s 16 -d 18 -p SRM -e 168 -c 42 -i 177 -a 42 - -t 339.50776896392006 -s 16 -d 18 -p SRM -e 168 -c 42 -i 177 -a 42 h -t 339.50776896392006 -s 16 -d 18 -p SRM -e 168 -c 42 -i 177 -a 42 r -t 339.51911296392007 -s 16 -d 17 -p SRM -e 168 -c 42 -i 177 -a 42 r -t 339.51911296392007 -s 16 -d 18 -p SRM -e 168 -c 42 -i 177 -a 42 + -t 339.55540413465002 -s 13 -d 11 -p SRM -e 20 -c 4 -i 178 -a 4 - -t 339.55540413465002 -s 13 -d 11 -p SRM -e 20 -c 4 -i 178 -a 4 h -t 339.55540413465002 -s 13 -d 11 -p SRM -e 20 -c 4 -i 178 -a 4 + -t 339.55540413465002 -s 13 -d 15 -p SRM -e 20 -c 4 -i 178 -a 4 - -t 339.55540413465002 -s 13 -d 15 -p SRM -e 20 -c 4 -i 178 -a 4 h -t 339.55540413465002 -s 13 -d 15 -p SRM -e 20 -c 4 -i 178 -a 4 + -t 339.55540413465002 -s 13 -d 16 -p SRM -e 20 -c 4 -i 178 -a 4 - -t 339.55540413465002 -s 13 -d 16 -p SRM -e 20 -c 4 -i 178 -a 4 h -t 339.55540413465002 -s 13 -d 16 -p SRM -e 20 -c 4 -i 178 -a 4 v -t 339.55540413465002 sim_annotation 339.55540413465002 19 339.55540413465002: node 13 sends request for msg (4:11) m -t 339.55540413465002 -s 13 -n _o23:1025:q -c purple -h square r -t 339.56556413465 -s 13 -d 11 -p SRM -e 20 -c 4 -i 178 -a 4 + -t 339.56556413465 -s 11 -d 10 -p SRM -e 20 -c 4 -i 178 -a 4 - -t 339.56556413465 -s 11 -d 10 -p SRM -e 20 -c 4 -i 178 -a 4 h -t 339.56556413465 -s 11 -d 10 -p SRM -e 20 -c 4 -i 178 -a 4 + -t 339.56556413465 -s 11 -d 14 -p SRM -e 20 -c 4 -i 178 -a 4 - -t 339.56556413465 -s 11 -d 14 -p SRM -e 20 -c 4 -i 178 -a 4 h -t 339.56556413465 -s 11 -d 14 -p SRM -e 20 -c 4 -i 178 -a 4 r -t 339.56556413465 -s 13 -d 15 -p SRM -e 20 -c 4 -i 178 -a 4 r -t 339.56556413465 -s 13 -d 16 -p SRM -e 20 -c 4 -i 178 -a 4 + -t 339.56556413465 -s 16 -d 17 -p SRM -e 20 -c 4 -i 178 -a 4 - -t 339.56556413465 -s 16 -d 17 -p SRM -e 20 -c 4 -i 178 -a 4 h -t 339.56556413465 -s 16 -d 17 -p SRM -e 20 -c 4 -i 178 -a 4 + -t 339.56556413465 -s 16 -d 18 -p SRM -e 20 -c 4 -i 178 -a 4 - -t 339.56556413465 -s 16 -d 18 -p SRM -e 20 -c 4 -i 178 -a 4 h -t 339.56556413465 -s 16 -d 18 -p SRM -e 20 -c 4 -i 178 -a 4 + -t 339.57428281058998 -s 24 -d 21 -p SRM -e 168 -c 42 -i 176 -a 42 - -t 339.57428281058998 -s 24 -d 21 -p SRM -e 168 -c 42 -i 176 -a 42 h -t 339.57428281058998 -s 24 -d 21 -p SRM -e 168 -c 42 -i 176 -a 42 r -t 339.57572413464999 -s 11 -d 10 -p SRM -e 20 -c 4 -i 178 -a 4 + -t 339.57572413464999 -s 10 -d 12 -p SRM -e 20 -c 4 -i 178 -a 4 - -t 339.57572413464999 -s 10 -d 12 -p SRM -e 20 -c 4 -i 178 -a 4 h -t 339.57572413464999 -s 10 -d 12 -p SRM -e 20 -c 4 -i 178 -a 4 r -t 339.57572413464999 -s 11 -d 14 -p SRM -e 20 -c 4 -i 178 -a 4 r -t 339.57572413464999 -s 16 -d 17 -p SRM -e 20 -c 4 -i 178 -a 4 r -t 339.57572413464999 -s 16 -d 18 -p SRM -e 20 -c 4 -i 178 -a 4 r -t 339.58562681058999 -s 24 -d 21 -p SRM -e 168 -c 42 -i 176 -a 42 + -t 339.58562681058999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 176 -a 42 - -t 339.58562681058999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 176 -a 42 h -t 339.58562681058999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 176 -a 42 + -t 339.58562681058999 -s 21 -d 23 -p SRM -e 168 -c 42 -i 176 -a 42 - -t 339.58562681058999 -s 21 -d 23 -p SRM -e 168 -c 42 -i 176 -a 42 h -t 339.58562681058999 -s 21 -d 23 -p SRM -e 168 -c 42 -i 176 -a 42 r -t 339.58588413464997 -s 10 -d 12 -p SRM -e 20 -c 4 -i 178 -a 4 + -t 339.59409477630999 -s 11 -d 10 -p SRM -e 1300 -c 4 -i 179 -a 4 - -t 339.59409477630999 -s 11 -d 10 -p SRM -e 1300 -c 4 -i 179 -a 4 h -t 339.59409477630999 -s 11 -d 10 -p SRM -e 1300 -c 4 -i 179 -a 4 + -t 339.59409477630999 -s 11 -d 13 -p SRM -e 1300 -c 4 -i 179 -a 4 - -t 339.59409477630999 -s 11 -d 13 -p SRM -e 1300 -c 4 -i 179 -a 4 h -t 339.59409477630999 -s 11 -d 13 -p SRM -e 1300 -c 4 -i 179 -a 4 + -t 339.59409477630999 -s 11 -d 14 -p SRM -e 1300 -c 4 -i 179 -a 4 - -t 339.59409477630999 -s 11 -d 14 -p SRM -e 1300 -c 4 -i 179 -a 4 h -t 339.59409477630999 -s 11 -d 14 -p SRM -e 1300 -c 4 -i 179 -a 4 v -t 339.59409477630999 sim_annotation 339.59409477630999 20 339.59409477630999: node 11 sends repair for msg (4:11) m -t 339.59409477630999 -s 11 -n _o13:1025:p -c purple -h circle r -t 339.59697081058999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 176 -a 42 + -t 339.59697081058999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 176 -a 42 - -t 339.59697081058999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 176 -a 42 h -t 339.59697081058999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 176 -a 42 r -t 339.59697081058999 -s 21 -d 23 -p SRM -e 168 -c 42 -i 176 -a 42 + -t 339.59697081058999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 176 -a 42 - -t 339.59697081058999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 176 -a 42 h -t 339.59697081058999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 176 -a 42 + -t 339.59697081058999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 176 -a 42 - -t 339.59697081058999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 176 -a 42 h -t 339.59697081058999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 176 -a 42 + -t 339.60515420770002 -s 14 -d 11 -p SRM -e 1300 -c 4 -i 180 -a 4 - -t 339.60515420770002 -s 14 -d 11 -p SRM -e 1300 -c 4 -i 180 -a 4 h -t 339.60515420770002 -s 14 -d 11 -p SRM -e 1300 -c 4 -i 180 -a 4 v -t 339.60515420770002 sim_annotation 339.60515420770002 21 339.60515420770002: node 14 sends dup repair for msg (4:11) m -t 339.60515420770002 -s 14 -n _o28:1025:p -c purple -h circle r -t 339.60831481059 -s 20 -d 22 -p SRM -e 168 -c 42 -i 176 -a 42 r -t 339.60831481059 -s 23 -d 25 -p SRM -e 168 -c 42 -i 176 -a 42 r -t 339.60831481059 -s 23 -d 26 -p SRM -e 168 -c 42 -i 176 -a 42 + -t 339.60831481059 -s 26 -d 27 -p SRM -e 168 -c 42 -i 176 -a 42 - -t 339.60831481059 -s 26 -d 27 -p SRM -e 168 -c 42 -i 176 -a 42 h -t 339.60831481059 -s 26 -d 27 -p SRM -e 168 -c 42 -i 176 -a 42 + -t 339.60831481059 -s 26 -d 28 -p SRM -e 168 -c 42 -i 176 -a 42 - -t 339.60831481059 -s 26 -d 28 -p SRM -e 168 -c 42 -i 176 -a 42 h -t 339.60831481059 -s 26 -d 28 -p SRM -e 168 -c 42 -i 176 -a 42 r -t 339.61449477630998 -s 11 -d 10 -p SRM -e 1300 -c 4 -i 179 -a 4 + -t 339.61449477630998 -s 10 -d 12 -p SRM -e 1300 -c 4 -i 179 -a 4 - -t 339.61449477630998 -s 10 -d 12 -p SRM -e 1300 -c 4 -i 179 -a 4 h -t 339.61449477630998 -s 10 -d 12 -p SRM -e 1300 -c 4 -i 179 -a 4 r -t 339.61449477630998 -s 11 -d 13 -p SRM -e 1300 -c 4 -i 179 -a 4 + -t 339.61449477630998 -s 13 -d 15 -p SRM -e 1300 -c 4 -i 179 -a 4 - -t 339.61449477630998 -s 13 -d 15 -p SRM -e 1300 -c 4 -i 179 -a 4 h -t 339.61449477630998 -s 13 -d 15 -p SRM -e 1300 -c 4 -i 179 -a 4 + -t 339.61449477630998 -s 13 -d 16 -p SRM -e 1300 -c 4 -i 179 -a 4 - -t 339.61449477630998 -s 13 -d 16 -p SRM -e 1300 -c 4 -i 179 -a 4 h -t 339.61449477630998 -s 13 -d 16 -p SRM -e 1300 -c 4 -i 179 -a 4 r -t 339.61449477630998 -s 11 -d 14 -p SRM -e 1300 -c 4 -i 179 -a 4 m -t 339.61449477630998 -s 13 -n _o23:1025:q -c purple -h square -X r -t 339.61965881059001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 176 -a 42 r -t 339.61965881059001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 176 -a 42 r -t 339.62555420770002 -s 14 -d 11 -p SRM -e 1300 -c 4 -i 180 -a 4 + -t 339.62555420770002 -s 11 -d 10 -p SRM -e 1300 -c 4 -i 180 -a 4 - -t 339.62555420770002 -s 11 -d 10 -p SRM -e 1300 -c 4 -i 180 -a 4 h -t 339.62555420770002 -s 11 -d 10 -p SRM -e 1300 -c 4 -i 180 -a 4 + -t 339.62555420770002 -s 11 -d 13 -p SRM -e 1300 -c 4 -i 180 -a 4 - -t 339.62555420770002 -s 11 -d 13 -p SRM -e 1300 -c 4 -i 180 -a 4 h -t 339.62555420770002 -s 11 -d 13 -p SRM -e 1300 -c 4 -i 180 -a 4 m -t 339.62709477631 -s 11 -n _o13:1025:p -c purple -h circle -X r -t 339.63489477630998 -s 10 -d 12 -p SRM -e 1300 -c 4 -i 179 -a 4 r -t 339.63489477630998 -s 13 -d 15 -p SRM -e 1300 -c 4 -i 179 -a 4 r -t 339.63489477630998 -s 13 -d 16 -p SRM -e 1300 -c 4 -i 179 -a 4 + -t 339.63489477630998 -s 16 -d 17 -p SRM -e 1300 -c 4 -i 179 -a 4 - -t 339.63489477630998 -s 16 -d 17 -p SRM -e 1300 -c 4 -i 179 -a 4 h -t 339.63489477630998 -s 16 -d 17 -p SRM -e 1300 -c 4 -i 179 -a 4 + -t 339.63489477630998 -s 16 -d 18 -p SRM -e 1300 -c 4 -i 179 -a 4 - -t 339.63489477630998 -s 16 -d 18 -p SRM -e 1300 -c 4 -i 179 -a 4 h -t 339.63489477630998 -s 16 -d 18 -p SRM -e 1300 -c 4 -i 179 -a 4 r -t 339.64595420770002 -s 11 -d 10 -p SRM -e 1300 -c 4 -i 180 -a 4 + -t 339.64595420770002 -s 10 -d 12 -p SRM -e 1300 -c 4 -i 180 -a 4 - -t 339.64595420770002 -s 10 -d 12 -p SRM -e 1300 -c 4 -i 180 -a 4 h -t 339.64595420770002 -s 10 -d 12 -p SRM -e 1300 -c 4 -i 180 -a 4 r -t 339.64595420770002 -s 11 -d 13 -p SRM -e 1300 -c 4 -i 180 -a 4 + -t 339.64595420770002 -s 13 -d 15 -p SRM -e 1300 -c 4 -i 180 -a 4 - -t 339.64595420770002 -s 13 -d 15 -p SRM -e 1300 -c 4 -i 180 -a 4 h -t 339.64595420770002 -s 13 -d 15 -p SRM -e 1300 -c 4 -i 180 -a 4 + -t 339.64595420770002 -s 13 -d 16 -p SRM -e 1300 -c 4 -i 180 -a 4 - -t 339.64595420770002 -s 13 -d 16 -p SRM -e 1300 -c 4 -i 180 -a 4 h -t 339.64595420770002 -s 13 -d 16 -p SRM -e 1300 -c 4 -i 180 -a 4 r -t 339.65529477630997 -s 16 -d 17 -p SRM -e 1300 -c 4 -i 179 -a 4 r -t 339.65529477630997 -s 16 -d 18 -p SRM -e 1300 -c 4 -i 179 -a 4 r -t 339.66635420770001 -s 10 -d 12 -p SRM -e 1300 -c 4 -i 180 -a 4 r -t 339.66635420770001 -s 13 -d 15 -p SRM -e 1300 -c 4 -i 180 -a 4 r -t 339.66635420770001 -s 13 -d 16 -p SRM -e 1300 -c 4 -i 180 -a 4 + -t 339.66635420770001 -s 16 -d 17 -p SRM -e 1300 -c 4 -i 180 -a 4 - -t 339.66635420770001 -s 16 -d 17 -p SRM -e 1300 -c 4 -i 180 -a 4 h -t 339.66635420770001 -s 16 -d 17 -p SRM -e 1300 -c 4 -i 180 -a 4 + -t 339.66635420770001 -s 16 -d 18 -p SRM -e 1300 -c 4 -i 180 -a 4 - -t 339.66635420770001 -s 16 -d 18 -p SRM -e 1300 -c 4 -i 180 -a 4 h -t 339.66635420770001 -s 16 -d 18 -p SRM -e 1300 -c 4 -i 180 -a 4 m -t 339.67265420770002 -s 14 -n _o28:1025:p -c purple -h circle -X r -t 339.68675420770001 -s 16 -d 17 -p SRM -e 1300 -c 4 -i 180 -a 4 r -t 339.68675420770001 -s 16 -d 18 -p SRM -e 1300 -c 4 -i 180 -a 4 + -t 339.82225141738002 -s 27 -d 26 -p SRM -e 168 -c 42 -i 177 -a 42 - -t 339.82225141738002 -s 27 -d 26 -p SRM -e 168 -c 42 -i 177 -a 42 h -t 339.82225141738002 -s 27 -d 26 -p SRM -e 168 -c 42 -i 177 -a 42 r -t 339.83359541738002 -s 27 -d 26 -p SRM -e 168 -c 42 -i 177 -a 42 + -t 339.83359541738002 -s 26 -d 23 -p SRM -e 168 -c 42 -i 177 -a 42 - -t 339.83359541738002 -s 26 -d 23 -p SRM -e 168 -c 42 -i 177 -a 42 h -t 339.83359541738002 -s 26 -d 23 -p SRM -e 168 -c 42 -i 177 -a 42 + -t 339.83359541738002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 177 -a 42 - -t 339.83359541738002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 177 -a 42 h -t 339.83359541738002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 177 -a 42 r -t 339.84493941738003 -s 26 -d 23 -p SRM -e 168 -c 42 -i 177 -a 42 + -t 339.84493941738003 -s 23 -d 21 -p SRM -e 168 -c 42 -i 177 -a 42 - -t 339.84493941738003 -s 23 -d 21 -p SRM -e 168 -c 42 -i 177 -a 42 h -t 339.84493941738003 -s 23 -d 21 -p SRM -e 168 -c 42 -i 177 -a 42 + -t 339.84493941738003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 177 -a 42 - -t 339.84493941738003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 177 -a 42 h -t 339.84493941738003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 177 -a 42 r -t 339.84493941738003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 177 -a 42 r -t 339.85628341738004 -s 23 -d 21 -p SRM -e 168 -c 42 -i 177 -a 42 + -t 339.85628341738004 -s 21 -d 20 -p SRM -e 168 -c 42 -i 177 -a 42 - -t 339.85628341738004 -s 21 -d 20 -p SRM -e 168 -c 42 -i 177 -a 42 h -t 339.85628341738004 -s 21 -d 20 -p SRM -e 168 -c 42 -i 177 -a 42 + -t 339.85628341738004 -s 21 -d 24 -p SRM -e 168 -c 42 -i 177 -a 42 - -t 339.85628341738004 -s 21 -d 24 -p SRM -e 168 -c 42 -i 177 -a 42 h -t 339.85628341738004 -s 21 -d 24 -p SRM -e 168 -c 42 -i 177 -a 42 r -t 339.85628341738004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 177 -a 42 r -t 339.86762741738005 -s 21 -d 20 -p SRM -e 168 -c 42 -i 177 -a 42 + -t 339.86762741738005 -s 20 -d 22 -p SRM -e 168 -c 42 -i 177 -a 42 - -t 339.86762741738005 -s 20 -d 22 -p SRM -e 168 -c 42 -i 177 -a 42 h -t 339.86762741738005 -s 20 -d 22 -p SRM -e 168 -c 42 -i 177 -a 42 r -t 339.86762741738005 -s 21 -d 24 -p SRM -e 168 -c 42 -i 177 -a 42 r -t 339.87897141738006 -s 20 -d 22 -p SRM -e 168 -c 42 -i 177 -a 42 + -t 339.98312211851999 -s 15 -d 13 -p SRM -e 168 -c 42 -i 181 -a 42 - -t 339.98312211851999 -s 15 -d 13 -p SRM -e 168 -c 42 -i 181 -a 42 h -t 339.98312211851999 -s 15 -d 13 -p SRM -e 168 -c 42 -i 181 -a 42 r -t 339.99446611851999 -s 15 -d 13 -p SRM -e 168 -c 42 -i 181 -a 42 + -t 339.99446611851999 -s 13 -d 11 -p SRM -e 168 -c 42 -i 181 -a 42 - -t 339.99446611851999 -s 13 -d 11 -p SRM -e 168 -c 42 -i 181 -a 42 h -t 339.99446611851999 -s 13 -d 11 -p SRM -e 168 -c 42 -i 181 -a 42 + -t 339.99446611851999 -s 13 -d 16 -p SRM -e 168 -c 42 -i 181 -a 42 - -t 339.99446611851999 -s 13 -d 16 -p SRM -e 168 -c 42 -i 181 -a 42 h -t 339.99446611851999 -s 13 -d 16 -p SRM -e 168 -c 42 -i 181 -a 42 r -t 340.00581011852 -s 13 -d 11 -p SRM -e 168 -c 42 -i 181 -a 42 + -t 340.00581011852 -s 11 -d 10 -p SRM -e 168 -c 42 -i 181 -a 42 - -t 340.00581011852 -s 11 -d 10 -p SRM -e 168 -c 42 -i 181 -a 42 h -t 340.00581011852 -s 11 -d 10 -p SRM -e 168 -c 42 -i 181 -a 42 + -t 340.00581011852 -s 11 -d 14 -p SRM -e 168 -c 42 -i 181 -a 42 - -t 340.00581011852 -s 11 -d 14 -p SRM -e 168 -c 42 -i 181 -a 42 h -t 340.00581011852 -s 11 -d 14 -p SRM -e 168 -c 42 -i 181 -a 42 r -t 340.00581011852 -s 13 -d 16 -p SRM -e 168 -c 42 -i 181 -a 42 + -t 340.00581011852 -s 16 -d 17 -p SRM -e 168 -c 42 -i 181 -a 42 - -t 340.00581011852 -s 16 -d 17 -p SRM -e 168 -c 42 -i 181 -a 42 h -t 340.00581011852 -s 16 -d 17 -p SRM -e 168 -c 42 -i 181 -a 42 + -t 340.00581011852 -s 16 -d 18 -p SRM -e 168 -c 42 -i 181 -a 42 - -t 340.00581011852 -s 16 -d 18 -p SRM -e 168 -c 42 -i 181 -a 42 h -t 340.00581011852 -s 16 -d 18 -p SRM -e 168 -c 42 -i 181 -a 42 r -t 340.01715411852001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 181 -a 42 + -t 340.01715411852001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 181 -a 42 - -t 340.01715411852001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 181 -a 42 h -t 340.01715411852001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 181 -a 42 r -t 340.01715411852001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 181 -a 42 r -t 340.01715411852001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 181 -a 42 r -t 340.01715411852001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 181 -a 42 r -t 340.02849811852002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 181 -a 42 + -t 340.38237192384003 -s 10 -d 11 -p SRM -e 168 -c 42 -i 182 -a 42 - -t 340.38237192384003 -s 10 -d 11 -p SRM -e 168 -c 42 -i 182 -a 42 h -t 340.38237192384003 -s 10 -d 11 -p SRM -e 168 -c 42 -i 182 -a 42 + -t 340.38237192384003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 182 -a 42 - -t 340.38237192384003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 182 -a 42 h -t 340.38237192384003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 182 -a 42 r -t 340.39371592384003 -s 10 -d 11 -p SRM -e 168 -c 42 -i 182 -a 42 + -t 340.39371592384003 -s 11 -d 13 -p SRM -e 168 -c 42 -i 182 -a 42 - -t 340.39371592384003 -s 11 -d 13 -p SRM -e 168 -c 42 -i 182 -a 42 h -t 340.39371592384003 -s 11 -d 13 -p SRM -e 168 -c 42 -i 182 -a 42 + -t 340.39371592384003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 182 -a 42 - -t 340.39371592384003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 182 -a 42 h -t 340.39371592384003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 182 -a 42 r -t 340.39371592384003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 182 -a 42 r -t 340.40505992384004 -s 11 -d 13 -p SRM -e 168 -c 42 -i 182 -a 42 + -t 340.40505992384004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 182 -a 42 - -t 340.40505992384004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 182 -a 42 h -t 340.40505992384004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 182 -a 42 + -t 340.40505992384004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 182 -a 42 - -t 340.40505992384004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 182 -a 42 h -t 340.40505992384004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 182 -a 42 r -t 340.40505992384004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 182 -a 42 r -t 340.41640392384005 -s 13 -d 15 -p SRM -e 168 -c 42 -i 182 -a 42 r -t 340.41640392384005 -s 13 -d 16 -p SRM -e 168 -c 42 -i 182 -a 42 + -t 340.41640392384005 -s 16 -d 17 -p SRM -e 168 -c 42 -i 182 -a 42 - -t 340.41640392384005 -s 16 -d 17 -p SRM -e 168 -c 42 -i 182 -a 42 h -t 340.41640392384005 -s 16 -d 17 -p SRM -e 168 -c 42 -i 182 -a 42 + -t 340.41640392384005 -s 16 -d 18 -p SRM -e 168 -c 42 -i 182 -a 42 - -t 340.41640392384005 -s 16 -d 18 -p SRM -e 168 -c 42 -i 182 -a 42 h -t 340.41640392384005 -s 16 -d 18 -p SRM -e 168 -c 42 -i 182 -a 42 r -t 340.42774792384006 -s 16 -d 17 -p SRM -e 168 -c 42 -i 182 -a 42 r -t 340.42774792384006 -s 16 -d 18 -p SRM -e 168 -c 42 -i 182 -a 42 + -t 341.40951285087999 -s 14 -d 11 -p SRM -e 168 -c 42 -i 183 -a 42 - -t 341.40951285087999 -s 14 -d 11 -p SRM -e 168 -c 42 -i 183 -a 42 h -t 341.40951285087999 -s 14 -d 11 -p SRM -e 168 -c 42 -i 183 -a 42 r -t 341.42085685088 -s 14 -d 11 -p SRM -e 168 -c 42 -i 183 -a 42 + -t 341.42085685088 -s 11 -d 10 -p SRM -e 168 -c 42 -i 183 -a 42 - -t 341.42085685088 -s 11 -d 10 -p SRM -e 168 -c 42 -i 183 -a 42 h -t 341.42085685088 -s 11 -d 10 -p SRM -e 168 -c 42 -i 183 -a 42 + -t 341.42085685088 -s 11 -d 13 -p SRM -e 168 -c 42 -i 183 -a 42 - -t 341.42085685088 -s 11 -d 13 -p SRM -e 168 -c 42 -i 183 -a 42 h -t 341.42085685088 -s 11 -d 13 -p SRM -e 168 -c 42 -i 183 -a 42 r -t 341.43220085088001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 183 -a 42 + -t 341.43220085088001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 183 -a 42 - -t 341.43220085088001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 183 -a 42 h -t 341.43220085088001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 183 -a 42 r -t 341.43220085088001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 183 -a 42 + -t 341.43220085088001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 183 -a 42 - -t 341.43220085088001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 183 -a 42 h -t 341.43220085088001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 183 -a 42 + -t 341.43220085088001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 183 -a 42 - -t 341.43220085088001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 183 -a 42 h -t 341.43220085088001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 183 -a 42 r -t 341.44354485088002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 183 -a 42 r -t 341.44354485088002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 183 -a 42 r -t 341.44354485088002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 183 -a 42 + -t 341.44354485088002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 183 -a 42 - -t 341.44354485088002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 183 -a 42 h -t 341.44354485088002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 183 -a 42 + -t 341.44354485088002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 183 -a 42 - -t 341.44354485088002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 183 -a 42 h -t 341.44354485088002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 183 -a 42 r -t 341.45488885088002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 183 -a 42 r -t 341.45488885088002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 183 -a 42 + -t 342.67104959122997 -s 11 -d 10 -p SRM -e 168 -c 42 -i 184 -a 42 - -t 342.67104959122997 -s 11 -d 10 -p SRM -e 168 -c 42 -i 184 -a 42 h -t 342.67104959122997 -s 11 -d 10 -p SRM -e 168 -c 42 -i 184 -a 42 + -t 342.67104959122997 -s 11 -d 13 -p SRM -e 168 -c 42 -i 184 -a 42 - -t 342.67104959122997 -s 11 -d 13 -p SRM -e 168 -c 42 -i 184 -a 42 h -t 342.67104959122997 -s 11 -d 13 -p SRM -e 168 -c 42 -i 184 -a 42 + -t 342.67104959122997 -s 11 -d 14 -p SRM -e 168 -c 42 -i 184 -a 42 - -t 342.67104959122997 -s 11 -d 14 -p SRM -e 168 -c 42 -i 184 -a 42 h -t 342.67104959122997 -s 11 -d 14 -p SRM -e 168 -c 42 -i 184 -a 42 r -t 342.68239359122998 -s 11 -d 10 -p SRM -e 168 -c 42 -i 184 -a 42 + -t 342.68239359122998 -s 10 -d 12 -p SRM -e 168 -c 42 -i 184 -a 42 - -t 342.68239359122998 -s 10 -d 12 -p SRM -e 168 -c 42 -i 184 -a 42 h -t 342.68239359122998 -s 10 -d 12 -p SRM -e 168 -c 42 -i 184 -a 42 r -t 342.68239359122998 -s 11 -d 13 -p SRM -e 168 -c 42 -i 184 -a 42 + -t 342.68239359122998 -s 13 -d 15 -p SRM -e 168 -c 42 -i 184 -a 42 - -t 342.68239359122998 -s 13 -d 15 -p SRM -e 168 -c 42 -i 184 -a 42 h -t 342.68239359122998 -s 13 -d 15 -p SRM -e 168 -c 42 -i 184 -a 42 + -t 342.68239359122998 -s 13 -d 16 -p SRM -e 168 -c 42 -i 184 -a 42 - -t 342.68239359122998 -s 13 -d 16 -p SRM -e 168 -c 42 -i 184 -a 42 h -t 342.68239359122998 -s 13 -d 16 -p SRM -e 168 -c 42 -i 184 -a 42 r -t 342.68239359122998 -s 11 -d 14 -p SRM -e 168 -c 42 -i 184 -a 42 r -t 342.69373759122999 -s 10 -d 12 -p SRM -e 168 -c 42 -i 184 -a 42 r -t 342.69373759122999 -s 13 -d 15 -p SRM -e 168 -c 42 -i 184 -a 42 r -t 342.69373759122999 -s 13 -d 16 -p SRM -e 168 -c 42 -i 184 -a 42 + -t 342.69373759122999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 184 -a 42 - -t 342.69373759122999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 184 -a 42 h -t 342.69373759122999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 184 -a 42 + -t 342.69373759122999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 184 -a 42 - -t 342.69373759122999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 184 -a 42 h -t 342.69373759122999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 184 -a 42 r -t 342.70508159123 -s 16 -d 17 -p SRM -e 168 -c 42 -i 184 -a 42 r -t 342.70508159123 -s 16 -d 18 -p SRM -e 168 -c 42 -i 184 -a 42 + -t 343.11417848272998 -s 17 -d 16 -p SRM -e 168 -c 42 -i 185 -a 42 - -t 343.11417848272998 -s 17 -d 16 -p SRM -e 168 -c 42 -i 185 -a 42 h -t 343.11417848272998 -s 17 -d 16 -p SRM -e 168 -c 42 -i 185 -a 42 + -t 343.11869796768002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 186 -a 42 - -t 343.11869796768002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 186 -a 42 h -t 343.11869796768002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 186 -a 42 + -t 343.11869796768002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 186 -a 42 - -t 343.11869796768002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 186 -a 42 h -t 343.11869796768002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 186 -a 42 + -t 343.11869796768002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 186 -a 42 - -t 343.11869796768002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 186 -a 42 h -t 343.11869796768002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 186 -a 42 r -t 343.12552248272999 -s 17 -d 16 -p SRM -e 168 -c 42 -i 185 -a 42 + -t 343.12552248272999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 185 -a 42 - -t 343.12552248272999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 185 -a 42 h -t 343.12552248272999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 185 -a 42 + -t 343.12552248272999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 185 -a 42 - -t 343.12552248272999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 185 -a 42 h -t 343.12552248272999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 185 -a 42 r -t 343.13004196768003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 186 -a 42 + -t 343.13004196768003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 186 -a 42 - -t 343.13004196768003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 186 -a 42 h -t 343.13004196768003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 186 -a 42 + -t 343.13004196768003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 186 -a 42 - -t 343.13004196768003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 186 -a 42 h -t 343.13004196768003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 186 -a 42 r -t 343.13004196768003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 186 -a 42 r -t 343.13004196768003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 186 -a 42 + -t 343.13004196768003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 186 -a 42 - -t 343.13004196768003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 186 -a 42 h -t 343.13004196768003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 186 -a 42 + -t 343.13004196768003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 186 -a 42 - -t 343.13004196768003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 186 -a 42 h -t 343.13004196768003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 186 -a 42 r -t 343.13686648273 -s 16 -d 13 -p SRM -e 168 -c 42 -i 185 -a 42 + -t 343.13686648273 -s 13 -d 11 -p SRM -e 168 -c 42 -i 185 -a 42 - -t 343.13686648273 -s 13 -d 11 -p SRM -e 168 -c 42 -i 185 -a 42 h -t 343.13686648273 -s 13 -d 11 -p SRM -e 168 -c 42 -i 185 -a 42 + -t 343.13686648273 -s 13 -d 15 -p SRM -e 168 -c 42 -i 185 -a 42 - -t 343.13686648273 -s 13 -d 15 -p SRM -e 168 -c 42 -i 185 -a 42 h -t 343.13686648273 -s 13 -d 15 -p SRM -e 168 -c 42 -i 185 -a 42 r -t 343.13686648273 -s 16 -d 18 -p SRM -e 168 -c 42 -i 185 -a 42 r -t 343.14138596768004 -s 11 -d 10 -p SRM -e 168 -c 42 -i 186 -a 42 + -t 343.14138596768004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 186 -a 42 - -t 343.14138596768004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 186 -a 42 h -t 343.14138596768004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 186 -a 42 r -t 343.14138596768004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 186 -a 42 r -t 343.14138596768004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 186 -a 42 r -t 343.14138596768004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 186 -a 42 r -t 343.14821048273001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 185 -a 42 + -t 343.14821048273001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 185 -a 42 - -t 343.14821048273001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 185 -a 42 h -t 343.14821048273001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 185 -a 42 + -t 343.14821048273001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 185 -a 42 - -t 343.14821048273001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 185 -a 42 h -t 343.14821048273001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 185 -a 42 r -t 343.14821048273001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 185 -a 42 r -t 343.15272996768005 -s 10 -d 12 -p SRM -e 168 -c 42 -i 186 -a 42 r -t 343.15955448273002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 185 -a 42 + -t 343.15955448273002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 185 -a 42 - -t 343.15955448273002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 185 -a 42 h -t 343.15955448273002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 185 -a 42 r -t 343.15955448273002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 185 -a 42 r -t 343.17089848273002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 185 -a 42 + -t 344.30631972373999 -s 22 -d 20 -p SRM -e 168 -c 42 -i 178 -a 42 - -t 344.30631972373999 -s 22 -d 20 -p SRM -e 168 -c 42 -i 178 -a 42 h -t 344.30631972373999 -s 22 -d 20 -p SRM -e 168 -c 42 -i 178 -a 42 r -t 344.31766372374 -s 22 -d 20 -p SRM -e 168 -c 42 -i 178 -a 42 + -t 344.31766372374 -s 20 -d 21 -p SRM -e 168 -c 42 -i 178 -a 42 - -t 344.31766372374 -s 20 -d 21 -p SRM -e 168 -c 42 -i 178 -a 42 h -t 344.31766372374 -s 20 -d 21 -p SRM -e 168 -c 42 -i 178 -a 42 r -t 344.32900772374001 -s 20 -d 21 -p SRM -e 168 -c 42 -i 178 -a 42 + -t 344.32900772374001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 178 -a 42 - -t 344.32900772374001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 178 -a 42 h -t 344.32900772374001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 178 -a 42 + -t 344.32900772374001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 178 -a 42 - -t 344.32900772374001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 178 -a 42 h -t 344.32900772374001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 178 -a 42 r -t 344.34035172374001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 178 -a 42 + -t 344.34035172374001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 178 -a 42 - -t 344.34035172374001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 178 -a 42 h -t 344.34035172374001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 178 -a 42 + -t 344.34035172374001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 178 -a 42 - -t 344.34035172374001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 178 -a 42 h -t 344.34035172374001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 178 -a 42 r -t 344.34035172374001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 178 -a 42 r -t 344.35169572374002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 178 -a 42 r -t 344.35169572374002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 178 -a 42 + -t 344.35169572374002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 178 -a 42 - -t 344.35169572374002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 178 -a 42 h -t 344.35169572374002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 178 -a 42 + -t 344.35169572374002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 178 -a 42 - -t 344.35169572374002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 178 -a 42 h -t 344.35169572374002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 178 -a 42 r -t 344.36303972374003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 178 -a 42 r -t 344.36303972374003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 178 -a 42 + -t 344.66369302299 -s 21 -d 20 -p SRM -e 168 -c 42 -i 179 -a 42 - -t 344.66369302299 -s 21 -d 20 -p SRM -e 168 -c 42 -i 179 -a 42 h -t 344.66369302299 -s 21 -d 20 -p SRM -e 168 -c 42 -i 179 -a 42 + -t 344.66369302299 -s 21 -d 23 -p SRM -e 168 -c 42 -i 179 -a 42 - -t 344.66369302299 -s 21 -d 23 -p SRM -e 168 -c 42 -i 179 -a 42 h -t 344.66369302299 -s 21 -d 23 -p SRM -e 168 -c 42 -i 179 -a 42 + -t 344.66369302299 -s 21 -d 24 -p SRM -e 168 -c 42 -i 179 -a 42 - -t 344.66369302299 -s 21 -d 24 -p SRM -e 168 -c 42 -i 179 -a 42 h -t 344.66369302299 -s 21 -d 24 -p SRM -e 168 -c 42 -i 179 -a 42 r -t 344.67503702299001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 179 -a 42 + -t 344.67503702299001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 179 -a 42 - -t 344.67503702299001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 179 -a 42 h -t 344.67503702299001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 179 -a 42 r -t 344.67503702299001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 179 -a 42 + -t 344.67503702299001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 179 -a 42 - -t 344.67503702299001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 179 -a 42 h -t 344.67503702299001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 179 -a 42 + -t 344.67503702299001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 179 -a 42 - -t 344.67503702299001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 179 -a 42 h -t 344.67503702299001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 179 -a 42 r -t 344.67503702299001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 179 -a 42 r -t 344.68638102299002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 179 -a 42 r -t 344.68638102299002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 179 -a 42 r -t 344.68638102299002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 179 -a 42 + -t 344.68638102299002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 179 -a 42 - -t 344.68638102299002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 179 -a 42 h -t 344.68638102299002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 179 -a 42 + -t 344.68638102299002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 179 -a 42 - -t 344.68638102299002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 179 -a 42 h -t 344.68638102299002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 179 -a 42 r -t 344.69772502299003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 179 -a 42 r -t 344.69772502299003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 179 -a 42 + -t 344.86812449170998 -s 23 -d 21 -p SRM -e 168 -c 42 -i 180 -a 42 - -t 344.86812449170998 -s 23 -d 21 -p SRM -e 168 -c 42 -i 180 -a 42 h -t 344.86812449170998 -s 23 -d 21 -p SRM -e 168 -c 42 -i 180 -a 42 + -t 344.86812449170998 -s 23 -d 25 -p SRM -e 168 -c 42 -i 180 -a 42 - -t 344.86812449170998 -s 23 -d 25 -p SRM -e 168 -c 42 -i 180 -a 42 h -t 344.86812449170998 -s 23 -d 25 -p SRM -e 168 -c 42 -i 180 -a 42 + -t 344.86812449170998 -s 23 -d 26 -p SRM -e 168 -c 42 -i 180 -a 42 - -t 344.86812449170998 -s 23 -d 26 -p SRM -e 168 -c 42 -i 180 -a 42 h -t 344.86812449170998 -s 23 -d 26 -p SRM -e 168 -c 42 -i 180 -a 42 r -t 344.87946849170999 -s 23 -d 21 -p SRM -e 168 -c 42 -i 180 -a 42 + -t 344.87946849170999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 180 -a 42 - -t 344.87946849170999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 180 -a 42 h -t 344.87946849170999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 180 -a 42 + -t 344.87946849170999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 180 -a 42 - -t 344.87946849170999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 180 -a 42 h -t 344.87946849170999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 180 -a 42 r -t 344.87946849170999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 180 -a 42 r -t 344.87946849170999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 180 -a 42 + -t 344.87946849170999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 180 -a 42 - -t 344.87946849170999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 180 -a 42 h -t 344.87946849170999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 180 -a 42 + -t 344.87946849170999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 180 -a 42 - -t 344.87946849170999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 180 -a 42 h -t 344.87946849170999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 180 -a 42 r -t 344.89081249170999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 180 -a 42 + -t 344.89081249170999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 180 -a 42 - -t 344.89081249170999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 180 -a 42 h -t 344.89081249170999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 180 -a 42 r -t 344.89081249170999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 180 -a 42 r -t 344.89081249170999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 180 -a 42 r -t 344.89081249170999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 180 -a 42 r -t 344.90215649171 -s 20 -d 22 -p SRM -e 168 -c 42 -i 180 -a 42 + -t 345.56289468181319 -s 12 -d 10 -p cbr -e 1280 -c 2 -i 187 -a 2 + -t 345.56289468181319 -s 22 -d 20 -p cbr -e 1280 -c 2 -i 181 -a 2 - -t 345.56289468181319 -s 12 -d 10 -p cbr -e 1280 -c 2 -i 187 -a 2 - -t 345.56289468181319 -s 22 -d 20 -p cbr -e 1280 -c 2 -i 181 -a 2 h -t 345.56289468181319 -s 12 -d 10 -p cbr -e 1280 -c 2 -i 187 -a 2 h -t 345.56289468181319 -s 22 -d 20 -p cbr -e 1280 -c 2 -i 181 -a 2 r -t 345.58313468181319 -s 12 -d 10 -p cbr -e 1280 -c 2 -i 187 -a 2 + -t 345.58313468181319 -s 10 -d 11 -p cbr -e 1280 -c 2 -i 187 -a 2 - -t 345.58313468181319 -s 10 -d 11 -p cbr -e 1280 -c 2 -i 187 -a 2 h -t 345.58313468181319 -s 10 -d 11 -p cbr -e 1280 -c 2 -i 187 -a 2 r -t 345.58313468181319 -s 22 -d 20 -p cbr -e 1280 -c 2 -i 181 -a 2 + -t 345.58313468181319 -s 20 -d 21 -p cbr -e 1280 -c 2 -i 181 -a 2 - -t 345.58313468181319 -s 20 -d 21 -p cbr -e 1280 -c 2 -i 181 -a 2 h -t 345.58313468181319 -s 20 -d 21 -p cbr -e 1280 -c 2 -i 181 -a 2 r -t 345.60337468181319 -s 10 -d 11 -p cbr -e 1280 -c 2 -i 187 -a 2 + -t 345.60337468181319 -s 11 -d 13 -p cbr -e 1280 -c 2 -i 187 -a 2 - -t 345.60337468181319 -s 11 -d 13 -p cbr -e 1280 -c 2 -i 187 -a 2 h -t 345.60337468181319 -s 11 -d 13 -p cbr -e 1280 -c 2 -i 187 -a 2 + -t 345.60337468181319 -s 11 -d 14 -p cbr -e 1280 -c 2 -i 187 -a 2 - -t 345.60337468181319 -s 11 -d 14 -p cbr -e 1280 -c 2 -i 187 -a 2 h -t 345.60337468181319 -s 11 -d 14 -p cbr -e 1280 -c 2 -i 187 -a 2 r -t 345.60337468181319 -s 20 -d 21 -p cbr -e 1280 -c 2 -i 181 -a 2 + -t 345.60337468181319 -s 21 -d 23 -p cbr -e 1280 -c 2 -i 181 -a 2 - -t 345.60337468181319 -s 21 -d 23 -p cbr -e 1280 -c 2 -i 181 -a 2 h -t 345.60337468181319 -s 21 -d 23 -p cbr -e 1280 -c 2 -i 181 -a 2 d -t 345.60337468181319 -s 21 -d 23 -p cbr -e 1280 -c 2 -i 181 -a 2 + -t 345.60337468181319 -s 21 -d 24 -p cbr -e 1280 -c 2 -i 181 -a 2 - -t 345.60337468181319 -s 21 -d 24 -p cbr -e 1280 -c 2 -i 181 -a 2 h -t 345.60337468181319 -s 21 -d 24 -p cbr -e 1280 -c 2 -i 181 -a 2 r -t 345.62361468181319 -s 11 -d 13 -p cbr -e 1280 -c 2 -i 187 -a 2 + -t 345.62361468181319 -s 13 -d 15 -p cbr -e 1280 -c 2 -i 187 -a 2 - -t 345.62361468181319 -s 13 -d 15 -p cbr -e 1280 -c 2 -i 187 -a 2 h -t 345.62361468181319 -s 13 -d 15 -p cbr -e 1280 -c 2 -i 187 -a 2 + -t 345.62361468181319 -s 13 -d 16 -p cbr -e 1280 -c 2 -i 187 -a 2 - -t 345.62361468181319 -s 13 -d 16 -p cbr -e 1280 -c 2 -i 187 -a 2 h -t 345.62361468181319 -s 13 -d 16 -p cbr -e 1280 -c 2 -i 187 -a 2 r -t 345.62361468181319 -s 11 -d 14 -p cbr -e 1280 -c 2 -i 187 -a 2 r -t 345.62361468181319 -s 21 -d 24 -p cbr -e 1280 -c 2 -i 181 -a 2 r -t 345.6438546818132 -s 13 -d 15 -p cbr -e 1280 -c 2 -i 187 -a 2 r -t 345.6438546818132 -s 13 -d 16 -p cbr -e 1280 -c 2 -i 187 -a 2 + -t 345.6438546818132 -s 16 -d 17 -p cbr -e 1280 -c 2 -i 187 -a 2 - -t 345.6438546818132 -s 16 -d 17 -p cbr -e 1280 -c 2 -i 187 -a 2 h -t 345.6438546818132 -s 16 -d 17 -p cbr -e 1280 -c 2 -i 187 -a 2 + -t 345.6438546818132 -s 16 -d 18 -p cbr -e 1280 -c 2 -i 187 -a 2 - -t 345.6438546818132 -s 16 -d 18 -p cbr -e 1280 -c 2 -i 187 -a 2 h -t 345.6438546818132 -s 16 -d 18 -p cbr -e 1280 -c 2 -i 187 -a 2 r -t 345.6640946818132 -s 16 -d 17 -p cbr -e 1280 -c 2 -i 187 -a 2 r -t 345.6640946818132 -s 16 -d 18 -p cbr -e 1280 -c 2 -i 187 -a 2 + -t 347.68129274302999 -s 18 -d 16 -p SRM -e 168 -c 42 -i 188 -a 42 - -t 347.68129274302999 -s 18 -d 16 -p SRM -e 168 -c 42 -i 188 -a 42 h -t 347.68129274302999 -s 18 -d 16 -p SRM -e 168 -c 42 -i 188 -a 42 r -t 347.69263674302999 -s 18 -d 16 -p SRM -e 168 -c 42 -i 188 -a 42 + -t 347.69263674302999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 188 -a 42 - -t 347.69263674302999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 188 -a 42 h -t 347.69263674302999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 188 -a 42 + -t 347.69263674302999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 188 -a 42 - -t 347.69263674302999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 188 -a 42 h -t 347.69263674302999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 188 -a 42 r -t 347.70398074303 -s 16 -d 13 -p SRM -e 168 -c 42 -i 188 -a 42 + -t 347.70398074303 -s 13 -d 11 -p SRM -e 168 -c 42 -i 188 -a 42 - -t 347.70398074303 -s 13 -d 11 -p SRM -e 168 -c 42 -i 188 -a 42 h -t 347.70398074303 -s 13 -d 11 -p SRM -e 168 -c 42 -i 188 -a 42 + -t 347.70398074303 -s 13 -d 15 -p SRM -e 168 -c 42 -i 188 -a 42 - -t 347.70398074303 -s 13 -d 15 -p SRM -e 168 -c 42 -i 188 -a 42 h -t 347.70398074303 -s 13 -d 15 -p SRM -e 168 -c 42 -i 188 -a 42 r -t 347.70398074303 -s 16 -d 17 -p SRM -e 168 -c 42 -i 188 -a 42 r -t 347.71532474303001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 188 -a 42 + -t 347.71532474303001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 188 -a 42 - -t 347.71532474303001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 188 -a 42 h -t 347.71532474303001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 188 -a 42 + -t 347.71532474303001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 188 -a 42 - -t 347.71532474303001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 188 -a 42 h -t 347.71532474303001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 188 -a 42 r -t 347.71532474303001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 188 -a 42 r -t 347.72666874303002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 188 -a 42 + -t 347.72666874303002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 188 -a 42 - -t 347.72666874303002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 188 -a 42 h -t 347.72666874303002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 188 -a 42 r -t 347.72666874303002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 188 -a 42 r -t 347.73801274303003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 188 -a 42 + -t 350.29612451464556 -s 26 -d 23 -p cbr -e 1280 -c 6 -i 182 -a 6 - -t 350.29612451464556 -s 26 -d 23 -p cbr -e 1280 -c 6 -i 182 -a 6 h -t 350.29612451464556 -s 26 -d 23 -p cbr -e 1280 -c 6 -i 182 -a 6 + -t 350.29612451464556 -s 26 -d 27 -p cbr -e 1280 -c 6 -i 182 -a 6 - -t 350.29612451464556 -s 26 -d 27 -p cbr -e 1280 -c 6 -i 182 -a 6 h -t 350.29612451464556 -s 26 -d 27 -p cbr -e 1280 -c 6 -i 182 -a 6 + -t 350.29612451464556 -s 26 -d 28 -p cbr -e 1280 -c 6 -i 182 -a 6 - -t 350.29612451464556 -s 26 -d 28 -p cbr -e 1280 -c 6 -i 182 -a 6 h -t 350.29612451464556 -s 26 -d 28 -p cbr -e 1280 -c 6 -i 182 -a 6 r -t 350.31636451464556 -s 26 -d 23 -p cbr -e 1280 -c 6 -i 182 -a 6 + -t 350.31636451464556 -s 23 -d 21 -p cbr -e 1280 -c 6 -i 182 -a 6 - -t 350.31636451464556 -s 23 -d 21 -p cbr -e 1280 -c 6 -i 182 -a 6 h -t 350.31636451464556 -s 23 -d 21 -p cbr -e 1280 -c 6 -i 182 -a 6 + -t 350.31636451464556 -s 23 -d 25 -p cbr -e 1280 -c 6 -i 182 -a 6 - -t 350.31636451464556 -s 23 -d 25 -p cbr -e 1280 -c 6 -i 182 -a 6 h -t 350.31636451464556 -s 23 -d 25 -p cbr -e 1280 -c 6 -i 182 -a 6 r -t 350.31636451464556 -s 26 -d 27 -p cbr -e 1280 -c 6 -i 182 -a 6 r -t 350.31636451464556 -s 26 -d 28 -p cbr -e 1280 -c 6 -i 182 -a 6 r -t 350.33660451464556 -s 23 -d 21 -p cbr -e 1280 -c 6 -i 182 -a 6 + -t 350.33660451464556 -s 21 -d 20 -p cbr -e 1280 -c 6 -i 182 -a 6 - -t 350.33660451464556 -s 21 -d 20 -p cbr -e 1280 -c 6 -i 182 -a 6 h -t 350.33660451464556 -s 21 -d 20 -p cbr -e 1280 -c 6 -i 182 -a 6 + -t 350.33660451464556 -s 21 -d 24 -p cbr -e 1280 -c 6 -i 182 -a 6 - -t 350.33660451464556 -s 21 -d 24 -p cbr -e 1280 -c 6 -i 182 -a 6 h -t 350.33660451464556 -s 21 -d 24 -p cbr -e 1280 -c 6 -i 182 -a 6 r -t 350.33660451464556 -s 23 -d 25 -p cbr -e 1280 -c 6 -i 182 -a 6 r -t 350.35684451464556 -s 21 -d 20 -p cbr -e 1280 -c 6 -i 182 -a 6 + -t 350.35684451464556 -s 20 -d 22 -p cbr -e 1280 -c 6 -i 182 -a 6 - -t 350.35684451464556 -s 20 -d 22 -p cbr -e 1280 -c 6 -i 182 -a 6 h -t 350.35684451464556 -s 20 -d 22 -p cbr -e 1280 -c 6 -i 182 -a 6 r -t 350.35684451464556 -s 21 -d 24 -p cbr -e 1280 -c 6 -i 182 -a 6 r -t 350.37708451464556 -s 20 -d 22 -p cbr -e 1280 -c 6 -i 182 -a 6 + -t 352.00533450064893 -s 24 -d 21 -p cbr -e 1280 -c 4 -i 183 -a 4 - -t 352.00533450064893 -s 24 -d 21 -p cbr -e 1280 -c 4 -i 183 -a 4 h -t 352.00533450064893 -s 24 -d 21 -p cbr -e 1280 -c 4 -i 183 -a 4 r -t 352.02557450064893 -s 24 -d 21 -p cbr -e 1280 -c 4 -i 183 -a 4 + -t 352.02557450064893 -s 21 -d 20 -p cbr -e 1280 -c 4 -i 183 -a 4 - -t 352.02557450064893 -s 21 -d 20 -p cbr -e 1280 -c 4 -i 183 -a 4 h -t 352.02557450064893 -s 21 -d 20 -p cbr -e 1280 -c 4 -i 183 -a 4 + -t 352.02557450064893 -s 21 -d 23 -p cbr -e 1280 -c 4 -i 183 -a 4 - -t 352.02557450064893 -s 21 -d 23 -p cbr -e 1280 -c 4 -i 183 -a 4 h -t 352.02557450064893 -s 21 -d 23 -p cbr -e 1280 -c 4 -i 183 -a 4 r -t 352.04581450064893 -s 21 -d 20 -p cbr -e 1280 -c 4 -i 183 -a 4 + -t 352.04581450064893 -s 20 -d 22 -p cbr -e 1280 -c 4 -i 183 -a 4 - -t 352.04581450064893 -s 20 -d 22 -p cbr -e 1280 -c 4 -i 183 -a 4 h -t 352.04581450064893 -s 20 -d 22 -p cbr -e 1280 -c 4 -i 183 -a 4 r -t 352.04581450064893 -s 21 -d 23 -p cbr -e 1280 -c 4 -i 183 -a 4 + -t 352.04581450064893 -s 23 -d 25 -p cbr -e 1280 -c 4 -i 183 -a 4 - -t 352.04581450064893 -s 23 -d 25 -p cbr -e 1280 -c 4 -i 183 -a 4 h -t 352.04581450064893 -s 23 -d 25 -p cbr -e 1280 -c 4 -i 183 -a 4 + -t 352.04581450064893 -s 23 -d 26 -p cbr -e 1280 -c 4 -i 183 -a 4 - -t 352.04581450064893 -s 23 -d 26 -p cbr -e 1280 -c 4 -i 183 -a 4 h -t 352.04581450064893 -s 23 -d 26 -p cbr -e 1280 -c 4 -i 183 -a 4 r -t 352.06605450064893 -s 20 -d 22 -p cbr -e 1280 -c 4 -i 183 -a 4 r -t 352.06605450064893 -s 23 -d 25 -p cbr -e 1280 -c 4 -i 183 -a 4 r -t 352.06605450064893 -s 23 -d 26 -p cbr -e 1280 -c 4 -i 183 -a 4 + -t 352.06605450064893 -s 26 -d 27 -p cbr -e 1280 -c 4 -i 183 -a 4 - -t 352.06605450064893 -s 26 -d 27 -p cbr -e 1280 -c 4 -i 183 -a 4 h -t 352.06605450064893 -s 26 -d 27 -p cbr -e 1280 -c 4 -i 183 -a 4 + -t 352.06605450064893 -s 26 -d 28 -p cbr -e 1280 -c 4 -i 183 -a 4 - -t 352.06605450064893 -s 26 -d 28 -p cbr -e 1280 -c 4 -i 183 -a 4 h -t 352.06605450064893 -s 26 -d 28 -p cbr -e 1280 -c 4 -i 183 -a 4 r -t 352.08629450064893 -s 26 -d 27 -p cbr -e 1280 -c 4 -i 183 -a 4 r -t 352.08629450064893 -s 26 -d 28 -p cbr -e 1280 -c 4 -i 183 -a 4 + -t 352.70431979288998 -s 28 -d 26 -p SRM -e 168 -c 42 -i 184 -a 42 - -t 352.70431979288998 -s 28 -d 26 -p SRM -e 168 -c 42 -i 184 -a 42 h -t 352.70431979288998 -s 28 -d 26 -p SRM -e 168 -c 42 -i 184 -a 42 r -t 352.71566379288998 -s 28 -d 26 -p SRM -e 168 -c 42 -i 184 -a 42 + -t 352.71566379288998 -s 26 -d 23 -p SRM -e 168 -c 42 -i 184 -a 42 - -t 352.71566379288998 -s 26 -d 23 -p SRM -e 168 -c 42 -i 184 -a 42 h -t 352.71566379288998 -s 26 -d 23 -p SRM -e 168 -c 42 -i 184 -a 42 + -t 352.71566379288998 -s 26 -d 27 -p SRM -e 168 -c 42 -i 184 -a 42 - -t 352.71566379288998 -s 26 -d 27 -p SRM -e 168 -c 42 -i 184 -a 42 h -t 352.71566379288998 -s 26 -d 27 -p SRM -e 168 -c 42 -i 184 -a 42 r -t 352.72700779288999 -s 26 -d 23 -p SRM -e 168 -c 42 -i 184 -a 42 + -t 352.72700779288999 -s 23 -d 21 -p SRM -e 168 -c 42 -i 184 -a 42 - -t 352.72700779288999 -s 23 -d 21 -p SRM -e 168 -c 42 -i 184 -a 42 h -t 352.72700779288999 -s 23 -d 21 -p SRM -e 168 -c 42 -i 184 -a 42 + -t 352.72700779288999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 184 -a 42 - -t 352.72700779288999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 184 -a 42 h -t 352.72700779288999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 184 -a 42 r -t 352.72700779288999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 184 -a 42 r -t 352.73835179289 -s 23 -d 21 -p SRM -e 168 -c 42 -i 184 -a 42 + -t 352.73835179289 -s 21 -d 20 -p SRM -e 168 -c 42 -i 184 -a 42 - -t 352.73835179289 -s 21 -d 20 -p SRM -e 168 -c 42 -i 184 -a 42 h -t 352.73835179289 -s 21 -d 20 -p SRM -e 168 -c 42 -i 184 -a 42 + -t 352.73835179289 -s 21 -d 24 -p SRM -e 168 -c 42 -i 184 -a 42 - -t 352.73835179289 -s 21 -d 24 -p SRM -e 168 -c 42 -i 184 -a 42 h -t 352.73835179289 -s 21 -d 24 -p SRM -e 168 -c 42 -i 184 -a 42 r -t 352.73835179289 -s 23 -d 25 -p SRM -e 168 -c 42 -i 184 -a 42 r -t 352.74969579289001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 184 -a 42 + -t 352.74969579289001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 184 -a 42 - -t 352.74969579289001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 184 -a 42 h -t 352.74969579289001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 184 -a 42 r -t 352.74969579289001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 184 -a 42 r -t 352.76103979289002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 184 -a 42 + -t 352.99450289109001 -s 25 -d 23 -p SRM -e 168 -c 42 -i 185 -a 42 - -t 352.99450289109001 -s 25 -d 23 -p SRM -e 168 -c 42 -i 185 -a 42 h -t 352.99450289109001 -s 25 -d 23 -p SRM -e 168 -c 42 -i 185 -a 42 r -t 353.00584689109002 -s 25 -d 23 -p SRM -e 168 -c 42 -i 185 -a 42 + -t 353.00584689109002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 185 -a 42 - -t 353.00584689109002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 185 -a 42 h -t 353.00584689109002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 185 -a 42 + -t 353.00584689109002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 185 -a 42 - -t 353.00584689109002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 185 -a 42 h -t 353.00584689109002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 185 -a 42 r -t 353.01719089109002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 185 -a 42 + -t 353.01719089109002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 185 -a 42 - -t 353.01719089109002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 185 -a 42 h -t 353.01719089109002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 185 -a 42 + -t 353.01719089109002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 185 -a 42 - -t 353.01719089109002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 185 -a 42 h -t 353.01719089109002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 185 -a 42 r -t 353.01719089109002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 185 -a 42 + -t 353.01719089109002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 185 -a 42 - -t 353.01719089109002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 185 -a 42 h -t 353.01719089109002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 185 -a 42 + -t 353.01719089109002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 185 -a 42 - -t 353.01719089109002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 185 -a 42 h -t 353.01719089109002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 185 -a 42 r -t 353.02853489109003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 185 -a 42 + -t 353.02853489109003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 185 -a 42 - -t 353.02853489109003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 185 -a 42 h -t 353.02853489109003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 185 -a 42 r -t 353.02853489109003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 185 -a 42 r -t 353.02853489109003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 185 -a 42 r -t 353.02853489109003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 185 -a 42 r -t 353.03987889109004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 185 -a 42 + -t 353.58652025429978 -s 17 -d 16 -p cbr -e 1280 -c 7 -i 189 -a 7 - -t 353.58652025429978 -s 17 -d 16 -p cbr -e 1280 -c 7 -i 189 -a 7 h -t 353.58652025429978 -s 17 -d 16 -p cbr -e 1280 -c 7 -i 189 -a 7 r -t 353.60676025429979 -s 17 -d 16 -p cbr -e 1280 -c 7 -i 189 -a 7 + -t 353.60676025429979 -s 16 -d 13 -p cbr -e 1280 -c 7 -i 189 -a 7 - -t 353.60676025429979 -s 16 -d 13 -p cbr -e 1280 -c 7 -i 189 -a 7 h -t 353.60676025429979 -s 16 -d 13 -p cbr -e 1280 -c 7 -i 189 -a 7 + -t 353.60676025429979 -s 16 -d 18 -p cbr -e 1280 -c 7 -i 189 -a 7 - -t 353.60676025429979 -s 16 -d 18 -p cbr -e 1280 -c 7 -i 189 -a 7 h -t 353.60676025429979 -s 16 -d 18 -p cbr -e 1280 -c 7 -i 189 -a 7 r -t 353.62700025429979 -s 16 -d 13 -p cbr -e 1280 -c 7 -i 189 -a 7 + -t 353.62700025429979 -s 13 -d 11 -p cbr -e 1280 -c 7 -i 189 -a 7 - -t 353.62700025429979 -s 13 -d 11 -p cbr -e 1280 -c 7 -i 189 -a 7 h -t 353.62700025429979 -s 13 -d 11 -p cbr -e 1280 -c 7 -i 189 -a 7 d -t 353.62700025429979 -s 13 -d 11 -p cbr -e 1280 -c 7 -i 189 -a 7 + -t 353.62700025429979 -s 13 -d 15 -p cbr -e 1280 -c 7 -i 189 -a 7 - -t 353.62700025429979 -s 13 -d 15 -p cbr -e 1280 -c 7 -i 189 -a 7 h -t 353.62700025429979 -s 13 -d 15 -p cbr -e 1280 -c 7 -i 189 -a 7 r -t 353.62700025429979 -s 16 -d 18 -p cbr -e 1280 -c 7 -i 189 -a 7 r -t 353.64724025429979 -s 13 -d 15 -p cbr -e 1280 -c 7 -i 189 -a 7 + -t 358.14649460729999 -s 27 -d 26 -p SRM -e 168 -c 42 -i 186 -a 42 - -t 358.14649460729999 -s 27 -d 26 -p SRM -e 168 -c 42 -i 186 -a 42 h -t 358.14649460729999 -s 27 -d 26 -p SRM -e 168 -c 42 -i 186 -a 42 r -t 358.15783860729999 -s 27 -d 26 -p SRM -e 168 -c 42 -i 186 -a 42 + -t 358.15783860729999 -s 26 -d 23 -p SRM -e 168 -c 42 -i 186 -a 42 - -t 358.15783860729999 -s 26 -d 23 -p SRM -e 168 -c 42 -i 186 -a 42 h -t 358.15783860729999 -s 26 -d 23 -p SRM -e 168 -c 42 -i 186 -a 42 + -t 358.15783860729999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 186 -a 42 - -t 358.15783860729999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 186 -a 42 h -t 358.15783860729999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 186 -a 42 r -t 358.1691826073 -s 26 -d 23 -p SRM -e 168 -c 42 -i 186 -a 42 + -t 358.1691826073 -s 23 -d 21 -p SRM -e 168 -c 42 -i 186 -a 42 - -t 358.1691826073 -s 23 -d 21 -p SRM -e 168 -c 42 -i 186 -a 42 h -t 358.1691826073 -s 23 -d 21 -p SRM -e 168 -c 42 -i 186 -a 42 + -t 358.1691826073 -s 23 -d 25 -p SRM -e 168 -c 42 -i 186 -a 42 - -t 358.1691826073 -s 23 -d 25 -p SRM -e 168 -c 42 -i 186 -a 42 h -t 358.1691826073 -s 23 -d 25 -p SRM -e 168 -c 42 -i 186 -a 42 r -t 358.1691826073 -s 26 -d 28 -p SRM -e 168 -c 42 -i 186 -a 42 r -t 358.18052660730001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 186 -a 42 + -t 358.18052660730001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 186 -a 42 - -t 358.18052660730001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 186 -a 42 h -t 358.18052660730001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 186 -a 42 + -t 358.18052660730001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 186 -a 42 - -t 358.18052660730001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 186 -a 42 h -t 358.18052660730001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 186 -a 42 r -t 358.18052660730001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 186 -a 42 r -t 358.19187060730002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 186 -a 42 + -t 358.19187060730002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 186 -a 42 - -t 358.19187060730002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 186 -a 42 h -t 358.19187060730002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 186 -a 42 r -t 358.19187060730002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 186 -a 42 r -t 358.20321460730003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 186 -a 42 + -t 358.28488291695999 -s 20 -d 21 -p SRM -e 168 -c 42 -i 187 -a 42 - -t 358.28488291695999 -s 20 -d 21 -p SRM -e 168 -c 42 -i 187 -a 42 h -t 358.28488291695999 -s 20 -d 21 -p SRM -e 168 -c 42 -i 187 -a 42 + -t 358.28488291695999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 187 -a 42 - -t 358.28488291695999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 187 -a 42 h -t 358.28488291695999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 187 -a 42 r -t 358.29622691695999 -s 20 -d 21 -p SRM -e 168 -c 42 -i 187 -a 42 + -t 358.29622691695999 -s 21 -d 23 -p SRM -e 168 -c 42 -i 187 -a 42 - -t 358.29622691695999 -s 21 -d 23 -p SRM -e 168 -c 42 -i 187 -a 42 h -t 358.29622691695999 -s 21 -d 23 -p SRM -e 168 -c 42 -i 187 -a 42 + -t 358.29622691695999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 187 -a 42 - -t 358.29622691695999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 187 -a 42 h -t 358.29622691695999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 187 -a 42 r -t 358.29622691695999 -s 20 -d 22 -p SRM -e 168 -c 42 -i 187 -a 42 r -t 358.30757091696 -s 21 -d 23 -p SRM -e 168 -c 42 -i 187 -a 42 + -t 358.30757091696 -s 23 -d 25 -p SRM -e 168 -c 42 -i 187 -a 42 - -t 358.30757091696 -s 23 -d 25 -p SRM -e 168 -c 42 -i 187 -a 42 h -t 358.30757091696 -s 23 -d 25 -p SRM -e 168 -c 42 -i 187 -a 42 + -t 358.30757091696 -s 23 -d 26 -p SRM -e 168 -c 42 -i 187 -a 42 - -t 358.30757091696 -s 23 -d 26 -p SRM -e 168 -c 42 -i 187 -a 42 h -t 358.30757091696 -s 23 -d 26 -p SRM -e 168 -c 42 -i 187 -a 42 r -t 358.30757091696 -s 21 -d 24 -p SRM -e 168 -c 42 -i 187 -a 42 r -t 358.31891491696001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 187 -a 42 r -t 358.31891491696001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 187 -a 42 + -t 358.31891491696001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 187 -a 42 - -t 358.31891491696001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 187 -a 42 h -t 358.31891491696001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 187 -a 42 + -t 358.31891491696001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 187 -a 42 - -t 358.31891491696001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 187 -a 42 h -t 358.31891491696001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 187 -a 42 r -t 358.33025891696002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 187 -a 42 r -t 358.33025891696002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 187 -a 42 + -t 358.42847000897001 -s 24 -d 21 -p SRM -e 168 -c 42 -i 188 -a 42 - -t 358.42847000897001 -s 24 -d 21 -p SRM -e 168 -c 42 -i 188 -a 42 h -t 358.42847000897001 -s 24 -d 21 -p SRM -e 168 -c 42 -i 188 -a 42 r -t 358.43981400897002 -s 24 -d 21 -p SRM -e 168 -c 42 -i 188 -a 42 + -t 358.43981400897002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 188 -a 42 - -t 358.43981400897002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 188 -a 42 h -t 358.43981400897002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 188 -a 42 + -t 358.43981400897002 -s 21 -d 23 -p SRM -e 168 -c 42 -i 188 -a 42 - -t 358.43981400897002 -s 21 -d 23 -p SRM -e 168 -c 42 -i 188 -a 42 h -t 358.43981400897002 -s 21 -d 23 -p SRM -e 168 -c 42 -i 188 -a 42 r -t 358.45115800897003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 188 -a 42 + -t 358.45115800897003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 188 -a 42 - -t 358.45115800897003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 188 -a 42 h -t 358.45115800897003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 188 -a 42 r -t 358.45115800897003 -s 21 -d 23 -p SRM -e 168 -c 42 -i 188 -a 42 + -t 358.45115800897003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 188 -a 42 - -t 358.45115800897003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 188 -a 42 h -t 358.45115800897003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 188 -a 42 + -t 358.45115800897003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 188 -a 42 - -t 358.45115800897003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 188 -a 42 h -t 358.45115800897003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 188 -a 42 r -t 358.46250200897003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 188 -a 42 r -t 358.46250200897003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 188 -a 42 r -t 358.46250200897003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 188 -a 42 + -t 358.46250200897003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 188 -a 42 - -t 358.46250200897003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 188 -a 42 h -t 358.46250200897003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 188 -a 42 + -t 358.46250200897003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 188 -a 42 - -t 358.46250200897003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 188 -a 42 h -t 358.46250200897003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 188 -a 42 r -t 358.47384600897004 -s 26 -d 27 -p SRM -e 168 -c 42 -i 188 -a 42 r -t 358.47384600897004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 188 -a 42 + -t 358.60423688883998 -s 26 -d 23 -p SRM -e 20 -c 2 -i 189 -a 2 - -t 358.60423688883998 -s 26 -d 23 -p SRM -e 20 -c 2 -i 189 -a 2 h -t 358.60423688883998 -s 26 -d 23 -p SRM -e 20 -c 2 -i 189 -a 2 + -t 358.60423688883998 -s 26 -d 27 -p SRM -e 20 -c 2 -i 189 -a 2 - -t 358.60423688883998 -s 26 -d 27 -p SRM -e 20 -c 2 -i 189 -a 2 h -t 358.60423688883998 -s 26 -d 27 -p SRM -e 20 -c 2 -i 189 -a 2 + -t 358.60423688883998 -s 26 -d 28 -p SRM -e 20 -c 2 -i 189 -a 2 - -t 358.60423688883998 -s 26 -d 28 -p SRM -e 20 -c 2 -i 189 -a 2 h -t 358.60423688883998 -s 26 -d 28 -p SRM -e 20 -c 2 -i 189 -a 2 v -t 358.60423688883998 sim_annotation 358.60423688883998 22 358.60423688883998: node 26 sends request for msg (2:22) m -t 358.60423688883998 -s 26 -n _o38:513:q -c pink -h square r -t 358.61439688883996 -s 26 -d 23 -p SRM -e 20 -c 2 -i 189 -a 2 + -t 358.61439688883996 -s 23 -d 21 -p SRM -e 20 -c 2 -i 189 -a 2 - -t 358.61439688883996 -s 23 -d 21 -p SRM -e 20 -c 2 -i 189 -a 2 h -t 358.61439688883996 -s 23 -d 21 -p SRM -e 20 -c 2 -i 189 -a 2 + -t 358.61439688883996 -s 23 -d 25 -p SRM -e 20 -c 2 -i 189 -a 2 - -t 358.61439688883996 -s 23 -d 25 -p SRM -e 20 -c 2 -i 189 -a 2 h -t 358.61439688883996 -s 23 -d 25 -p SRM -e 20 -c 2 -i 189 -a 2 r -t 358.61439688883996 -s 26 -d 27 -p SRM -e 20 -c 2 -i 189 -a 2 r -t 358.61439688883996 -s 26 -d 28 -p SRM -e 20 -c 2 -i 189 -a 2 r -t 358.62455688883995 -s 23 -d 21 -p SRM -e 20 -c 2 -i 189 -a 2 + -t 358.62455688883995 -s 21 -d 20 -p SRM -e 20 -c 2 -i 189 -a 2 - -t 358.62455688883995 -s 21 -d 20 -p SRM -e 20 -c 2 -i 189 -a 2 h -t 358.62455688883995 -s 21 -d 20 -p SRM -e 20 -c 2 -i 189 -a 2 + -t 358.62455688883995 -s 21 -d 24 -p SRM -e 20 -c 2 -i 189 -a 2 - -t 358.62455688883995 -s 21 -d 24 -p SRM -e 20 -c 2 -i 189 -a 2 h -t 358.62455688883995 -s 21 -d 24 -p SRM -e 20 -c 2 -i 189 -a 2 r -t 358.62455688883995 -s 23 -d 25 -p SRM -e 20 -c 2 -i 189 -a 2 r -t 358.63471688883993 -s 21 -d 20 -p SRM -e 20 -c 2 -i 189 -a 2 + -t 358.63471688883993 -s 20 -d 22 -p SRM -e 20 -c 2 -i 189 -a 2 - -t 358.63471688883993 -s 20 -d 22 -p SRM -e 20 -c 2 -i 189 -a 2 h -t 358.63471688883993 -s 20 -d 22 -p SRM -e 20 -c 2 -i 189 -a 2 r -t 358.63471688883993 -s 21 -d 24 -p SRM -e 20 -c 2 -i 189 -a 2 + -t 358.63471688883993 -s 20 -d 21 -p SRM -e 1300 -c 2 -i 190 -a 2 - -t 358.63471688883993 -s 20 -d 21 -p SRM -e 1300 -c 2 -i 190 -a 2 h -t 358.63471688883993 -s 20 -d 21 -p SRM -e 1300 -c 2 -i 190 -a 2 + -t 358.63471688883993 -s 20 -d 22 -p SRM -e 1300 -c 2 -i 190 -a 2 v -t 358.63471688883993 sim_annotation 358.63471688883993 23 358.63471688883993: node 20 sends repair for msg (2:22) m -t 358.63471688883993 -s 20 -n _o8:513:p -c pink -h circle - -t 358.63487688883993 -s 20 -d 22 -p SRM -e 1300 -c 2 -i 190 -a 2 h -t 358.63487688883993 -s 20 -d 22 -p SRM -e 1300 -c 2 -i 190 -a 2 r -t 358.64487688883992 -s 20 -d 22 -p SRM -e 20 -c 2 -i 189 -a 2 r -t 358.65511688883993 -s 20 -d 21 -p SRM -e 1300 -c 2 -i 190 -a 2 + -t 358.65511688883993 -s 21 -d 23 -p SRM -e 1300 -c 2 -i 190 -a 2 - -t 358.65511688883993 -s 21 -d 23 -p SRM -e 1300 -c 2 -i 190 -a 2 h -t 358.65511688883993 -s 21 -d 23 -p SRM -e 1300 -c 2 -i 190 -a 2 + -t 358.65511688883993 -s 21 -d 24 -p SRM -e 1300 -c 2 -i 190 -a 2 - -t 358.65511688883993 -s 21 -d 24 -p SRM -e 1300 -c 2 -i 190 -a 2 h -t 358.65511688883993 -s 21 -d 24 -p SRM -e 1300 -c 2 -i 190 -a 2 r -t 358.65527688883992 -s 20 -d 22 -p SRM -e 1300 -c 2 -i 190 -a 2 r -t 358.67551688883992 -s 21 -d 23 -p SRM -e 1300 -c 2 -i 190 -a 2 + -t 358.67551688883992 -s 23 -d 25 -p SRM -e 1300 -c 2 -i 190 -a 2 - -t 358.67551688883992 -s 23 -d 25 -p SRM -e 1300 -c 2 -i 190 -a 2 h -t 358.67551688883992 -s 23 -d 25 -p SRM -e 1300 -c 2 -i 190 -a 2 + -t 358.67551688883992 -s 23 -d 26 -p SRM -e 1300 -c 2 -i 190 -a 2 - -t 358.67551688883992 -s 23 -d 26 -p SRM -e 1300 -c 2 -i 190 -a 2 h -t 358.67551688883992 -s 23 -d 26 -p SRM -e 1300 -c 2 -i 190 -a 2 r -t 358.67551688883992 -s 21 -d 24 -p SRM -e 1300 -c 2 -i 190 -a 2 r -t 358.69591688883992 -s 23 -d 25 -p SRM -e 1300 -c 2 -i 190 -a 2 r -t 358.69591688883992 -s 23 -d 26 -p SRM -e 1300 -c 2 -i 190 -a 2 + -t 358.69591688883992 -s 26 -d 27 -p SRM -e 1300 -c 2 -i 190 -a 2 - -t 358.69591688883992 -s 26 -d 27 -p SRM -e 1300 -c 2 -i 190 -a 2 h -t 358.69591688883992 -s 26 -d 27 -p SRM -e 1300 -c 2 -i 190 -a 2 + -t 358.69591688883992 -s 26 -d 28 -p SRM -e 1300 -c 2 -i 190 -a 2 - -t 358.69591688883992 -s 26 -d 28 -p SRM -e 1300 -c 2 -i 190 -a 2 h -t 358.69591688883992 -s 26 -d 28 -p SRM -e 1300 -c 2 -i 190 -a 2 m -t 358.69591688883992 -s 26 -n _o38:513:q -c pink -h square -X r -t 358.71631688883991 -s 26 -d 27 -p SRM -e 1300 -c 2 -i 190 -a 2 r -t 358.71631688883991 -s 26 -d 28 -p SRM -e 1300 -c 2 -i 190 -a 2 m -t 358.83571688884001 -s 20 -n _o8:513:p -c pink -h circle -X + -t 359.011796742 -s 15 -d 13 -p SRM -e 168 -c 42 -i 190 -a 42 - -t 359.011796742 -s 15 -d 13 -p SRM -e 168 -c 42 -i 190 -a 42 h -t 359.011796742 -s 15 -d 13 -p SRM -e 168 -c 42 -i 190 -a 42 r -t 359.02314074200001 -s 15 -d 13 -p SRM -e 168 -c 42 -i 190 -a 42 + -t 359.02314074200001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 190 -a 42 - -t 359.02314074200001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 190 -a 42 h -t 359.02314074200001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 190 -a 42 + -t 359.02314074200001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 190 -a 42 - -t 359.02314074200001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 190 -a 42 h -t 359.02314074200001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 190 -a 42 r -t 359.03448474200002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 190 -a 42 + -t 359.03448474200002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 190 -a 42 - -t 359.03448474200002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 190 -a 42 h -t 359.03448474200002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 190 -a 42 + -t 359.03448474200002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 190 -a 42 - -t 359.03448474200002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 190 -a 42 h -t 359.03448474200002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 190 -a 42 r -t 359.03448474200002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 190 -a 42 + -t 359.03448474200002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 190 -a 42 - -t 359.03448474200002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 190 -a 42 h -t 359.03448474200002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 190 -a 42 + -t 359.03448474200002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 190 -a 42 - -t 359.03448474200002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 190 -a 42 h -t 359.03448474200002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 190 -a 42 r -t 359.04582874200003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 190 -a 42 + -t 359.04582874200003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 190 -a 42 - -t 359.04582874200003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 190 -a 42 h -t 359.04582874200003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 190 -a 42 r -t 359.04582874200003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 190 -a 42 r -t 359.04582874200003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 190 -a 42 r -t 359.04582874200003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 190 -a 42 r -t 359.05717274200003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 190 -a 42 + -t 359.11519394828002 -s 11 -d 10 -p SRM -e 20 -c 7 -i 191 -a 7 - -t 359.11519394828002 -s 11 -d 10 -p SRM -e 20 -c 7 -i 191 -a 7 h -t 359.11519394828002 -s 11 -d 10 -p SRM -e 20 -c 7 -i 191 -a 7 + -t 359.11519394828002 -s 11 -d 13 -p SRM -e 20 -c 7 -i 191 -a 7 - -t 359.11519394828002 -s 11 -d 13 -p SRM -e 20 -c 7 -i 191 -a 7 h -t 359.11519394828002 -s 11 -d 13 -p SRM -e 20 -c 7 -i 191 -a 7 + -t 359.11519394828002 -s 11 -d 14 -p SRM -e 20 -c 7 -i 191 -a 7 - -t 359.11519394828002 -s 11 -d 14 -p SRM -e 20 -c 7 -i 191 -a 7 h -t 359.11519394828002 -s 11 -d 14 -p SRM -e 20 -c 7 -i 191 -a 7 v -t 359.11519394828002 sim_annotation 359.11519394828002 24 359.11519394828002: node 11 sends request for msg (7:11) m -t 359.11519394828002 -s 11 -n _o13:1793:q -c chocolate -h square r -t 359.12535394828001 -s 11 -d 10 -p SRM -e 20 -c 7 -i 191 -a 7 + -t 359.12535394828001 -s 10 -d 12 -p SRM -e 20 -c 7 -i 191 -a 7 - -t 359.12535394828001 -s 10 -d 12 -p SRM -e 20 -c 7 -i 191 -a 7 h -t 359.12535394828001 -s 10 -d 12 -p SRM -e 20 -c 7 -i 191 -a 7 r -t 359.12535394828001 -s 11 -d 13 -p SRM -e 20 -c 7 -i 191 -a 7 + -t 359.12535394828001 -s 13 -d 15 -p SRM -e 20 -c 7 -i 191 -a 7 - -t 359.12535394828001 -s 13 -d 15 -p SRM -e 20 -c 7 -i 191 -a 7 h -t 359.12535394828001 -s 13 -d 15 -p SRM -e 20 -c 7 -i 191 -a 7 + -t 359.12535394828001 -s 13 -d 16 -p SRM -e 20 -c 7 -i 191 -a 7 - -t 359.12535394828001 -s 13 -d 16 -p SRM -e 20 -c 7 -i 191 -a 7 h -t 359.12535394828001 -s 13 -d 16 -p SRM -e 20 -c 7 -i 191 -a 7 r -t 359.12535394828001 -s 11 -d 14 -p SRM -e 20 -c 7 -i 191 -a 7 r -t 359.13551394827999 -s 10 -d 12 -p SRM -e 20 -c 7 -i 191 -a 7 r -t 359.13551394827999 -s 13 -d 15 -p SRM -e 20 -c 7 -i 191 -a 7 r -t 359.13551394827999 -s 13 -d 16 -p SRM -e 20 -c 7 -i 191 -a 7 + -t 359.13551394827999 -s 16 -d 17 -p SRM -e 20 -c 7 -i 191 -a 7 - -t 359.13551394827999 -s 16 -d 17 -p SRM -e 20 -c 7 -i 191 -a 7 h -t 359.13551394827999 -s 16 -d 17 -p SRM -e 20 -c 7 -i 191 -a 7 + -t 359.13551394827999 -s 16 -d 18 -p SRM -e 20 -c 7 -i 191 -a 7 - -t 359.13551394827999 -s 16 -d 18 -p SRM -e 20 -c 7 -i 191 -a 7 h -t 359.13551394827999 -s 16 -d 18 -p SRM -e 20 -c 7 -i 191 -a 7 + -t 359.13791849392999 -s 13 -d 11 -p SRM -e 1300 -c 7 -i 192 -a 7 - -t 359.13791849392999 -s 13 -d 11 -p SRM -e 1300 -c 7 -i 192 -a 7 h -t 359.13791849392999 -s 13 -d 11 -p SRM -e 1300 -c 7 -i 192 -a 7 + -t 359.13791849392999 -s 13 -d 15 -p SRM -e 1300 -c 7 -i 192 -a 7 - -t 359.13791849392999 -s 13 -d 15 -p SRM -e 1300 -c 7 -i 192 -a 7 h -t 359.13791849392999 -s 13 -d 15 -p SRM -e 1300 -c 7 -i 192 -a 7 + -t 359.13791849392999 -s 13 -d 16 -p SRM -e 1300 -c 7 -i 192 -a 7 - -t 359.13791849392999 -s 13 -d 16 -p SRM -e 1300 -c 7 -i 192 -a 7 h -t 359.13791849392999 -s 13 -d 16 -p SRM -e 1300 -c 7 -i 192 -a 7 v -t 359.13791849392999 sim_annotation 359.13791849392999 25 359.13791849392999: node 13 sends repair for msg (7:11) m -t 359.13791849392999 -s 13 -n _o23:1793:p -c chocolate -h circle r -t 359.14567394827998 -s 16 -d 17 -p SRM -e 20 -c 7 -i 191 -a 7 r -t 359.14567394827998 -s 16 -d 18 -p SRM -e 20 -c 7 -i 191 -a 7 + -t 359.15223223467001 -s 12 -d 10 -p SRM -e 168 -c 42 -i 193 -a 42 - -t 359.15223223467001 -s 12 -d 10 -p SRM -e 168 -c 42 -i 193 -a 42 h -t 359.15223223467001 -s 12 -d 10 -p SRM -e 168 -c 42 -i 193 -a 42 r -t 359.15831849392998 -s 13 -d 11 -p SRM -e 1300 -c 7 -i 192 -a 7 + -t 359.15831849392998 -s 11 -d 10 -p SRM -e 1300 -c 7 -i 192 -a 7 - -t 359.15831849392998 -s 11 -d 10 -p SRM -e 1300 -c 7 -i 192 -a 7 h -t 359.15831849392998 -s 11 -d 10 -p SRM -e 1300 -c 7 -i 192 -a 7 + -t 359.15831849392998 -s 11 -d 14 -p SRM -e 1300 -c 7 -i 192 -a 7 - -t 359.15831849392998 -s 11 -d 14 -p SRM -e 1300 -c 7 -i 192 -a 7 h -t 359.15831849392998 -s 11 -d 14 -p SRM -e 1300 -c 7 -i 192 -a 7 r -t 359.15831849392998 -s 13 -d 15 -p SRM -e 1300 -c 7 -i 192 -a 7 r -t 359.15831849392998 -s 13 -d 16 -p SRM -e 1300 -c 7 -i 192 -a 7 + -t 359.15831849392998 -s 16 -d 17 -p SRM -e 1300 -c 7 -i 192 -a 7 - -t 359.15831849392998 -s 16 -d 17 -p SRM -e 1300 -c 7 -i 192 -a 7 h -t 359.15831849392998 -s 16 -d 17 -p SRM -e 1300 -c 7 -i 192 -a 7 + -t 359.15831849392998 -s 16 -d 18 -p SRM -e 1300 -c 7 -i 192 -a 7 - -t 359.15831849392998 -s 16 -d 18 -p SRM -e 1300 -c 7 -i 192 -a 7 h -t 359.15831849392998 -s 16 -d 18 -p SRM -e 1300 -c 7 -i 192 -a 7 m -t 359.15831849392998 -s 11 -n _o13:1793:q -c chocolate -h square -X r -t 359.16357623467002 -s 12 -d 10 -p SRM -e 168 -c 42 -i 193 -a 42 + -t 359.16357623467002 -s 10 -d 11 -p SRM -e 168 -c 42 -i 193 -a 42 - -t 359.16357623467002 -s 10 -d 11 -p SRM -e 168 -c 42 -i 193 -a 42 h -t 359.16357623467002 -s 10 -d 11 -p SRM -e 168 -c 42 -i 193 -a 42 m -t 359.17091849393 -s 13 -n _o23:1793:p -c chocolate -h circle -X r -t 359.17492023467003 -s 10 -d 11 -p SRM -e 168 -c 42 -i 193 -a 42 + -t 359.17492023467003 -s 11 -d 13 -p SRM -e 168 -c 42 -i 193 -a 42 - -t 359.17492023467003 -s 11 -d 13 -p SRM -e 168 -c 42 -i 193 -a 42 h -t 359.17492023467003 -s 11 -d 13 -p SRM -e 168 -c 42 -i 193 -a 42 + -t 359.17492023467003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 193 -a 42 - -t 359.17492023467003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 193 -a 42 h -t 359.17492023467003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 193 -a 42 r -t 359.17871849392998 -s 11 -d 10 -p SRM -e 1300 -c 7 -i 192 -a 7 + -t 359.17871849392998 -s 10 -d 12 -p SRM -e 1300 -c 7 -i 192 -a 7 - -t 359.17871849392998 -s 10 -d 12 -p SRM -e 1300 -c 7 -i 192 -a 7 h -t 359.17871849392998 -s 10 -d 12 -p SRM -e 1300 -c 7 -i 192 -a 7 r -t 359.17871849392998 -s 11 -d 14 -p SRM -e 1300 -c 7 -i 192 -a 7 r -t 359.17871849392998 -s 16 -d 17 -p SRM -e 1300 -c 7 -i 192 -a 7 r -t 359.17871849392998 -s 16 -d 18 -p SRM -e 1300 -c 7 -i 192 -a 7 r -t 359.18626423467003 -s 11 -d 13 -p SRM -e 168 -c 42 -i 193 -a 42 + -t 359.18626423467003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 193 -a 42 - -t 359.18626423467003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 193 -a 42 h -t 359.18626423467003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 193 -a 42 + -t 359.18626423467003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 193 -a 42 - -t 359.18626423467003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 193 -a 42 h -t 359.18626423467003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 193 -a 42 r -t 359.18626423467003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 193 -a 42 r -t 359.19760823467004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 193 -a 42 r -t 359.19760823467004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 193 -a 42 + -t 359.19760823467004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 193 -a 42 - -t 359.19760823467004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 193 -a 42 h -t 359.19760823467004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 193 -a 42 + -t 359.19760823467004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 193 -a 42 - -t 359.19760823467004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 193 -a 42 h -t 359.19760823467004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 193 -a 42 r -t 359.19911849392997 -s 10 -d 12 -p SRM -e 1300 -c 7 -i 192 -a 7 r -t 359.20895223467005 -s 16 -d 17 -p SRM -e 168 -c 42 -i 193 -a 42 r -t 359.20895223467005 -s 16 -d 18 -p SRM -e 168 -c 42 -i 193 -a 42 + -t 359.31676869598999 -s 10 -d 11 -p SRM -e 168 -c 42 -i 194 -a 42 - -t 359.31676869598999 -s 10 -d 11 -p SRM -e 168 -c 42 -i 194 -a 42 h -t 359.31676869598999 -s 10 -d 11 -p SRM -e 168 -c 42 -i 194 -a 42 + -t 359.31676869598999 -s 10 -d 12 -p SRM -e 168 -c 42 -i 194 -a 42 - -t 359.31676869598999 -s 10 -d 12 -p SRM -e 168 -c 42 -i 194 -a 42 h -t 359.31676869598999 -s 10 -d 12 -p SRM -e 168 -c 42 -i 194 -a 42 r -t 359.32811269599 -s 10 -d 11 -p SRM -e 168 -c 42 -i 194 -a 42 + -t 359.32811269599 -s 11 -d 13 -p SRM -e 168 -c 42 -i 194 -a 42 - -t 359.32811269599 -s 11 -d 13 -p SRM -e 168 -c 42 -i 194 -a 42 h -t 359.32811269599 -s 11 -d 13 -p SRM -e 168 -c 42 -i 194 -a 42 + -t 359.32811269599 -s 11 -d 14 -p SRM -e 168 -c 42 -i 194 -a 42 - -t 359.32811269599 -s 11 -d 14 -p SRM -e 168 -c 42 -i 194 -a 42 h -t 359.32811269599 -s 11 -d 14 -p SRM -e 168 -c 42 -i 194 -a 42 r -t 359.32811269599 -s 10 -d 12 -p SRM -e 168 -c 42 -i 194 -a 42 r -t 359.33945669599001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 194 -a 42 + -t 359.33945669599001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 194 -a 42 - -t 359.33945669599001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 194 -a 42 h -t 359.33945669599001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 194 -a 42 + -t 359.33945669599001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 194 -a 42 - -t 359.33945669599001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 194 -a 42 h -t 359.33945669599001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 194 -a 42 r -t 359.33945669599001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 194 -a 42 r -t 359.35080069599002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 194 -a 42 r -t 359.35080069599002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 194 -a 42 + -t 359.35080069599002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 194 -a 42 - -t 359.35080069599002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 194 -a 42 h -t 359.35080069599002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 194 -a 42 + -t 359.35080069599002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 194 -a 42 - -t 359.35080069599002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 194 -a 42 h -t 359.35080069599002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 194 -a 42 r -t 359.36214469599003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 194 -a 42 r -t 359.36214469599003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 194 -a 42 + -t 359.43485517190999 -s 26 -d 23 -p SRM -e 168 -c 42 -i 191 -a 42 - -t 359.43485517190999 -s 26 -d 23 -p SRM -e 168 -c 42 -i 191 -a 42 h -t 359.43485517190999 -s 26 -d 23 -p SRM -e 168 -c 42 -i 191 -a 42 + -t 359.43485517190999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 191 -a 42 - -t 359.43485517190999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 191 -a 42 h -t 359.43485517190999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 191 -a 42 + -t 359.43485517190999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 191 -a 42 - -t 359.43485517190999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 191 -a 42 h -t 359.43485517190999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 191 -a 42 r -t 359.44619917191 -s 26 -d 23 -p SRM -e 168 -c 42 -i 191 -a 42 + -t 359.44619917191 -s 23 -d 21 -p SRM -e 168 -c 42 -i 191 -a 42 - -t 359.44619917191 -s 23 -d 21 -p SRM -e 168 -c 42 -i 191 -a 42 h -t 359.44619917191 -s 23 -d 21 -p SRM -e 168 -c 42 -i 191 -a 42 + -t 359.44619917191 -s 23 -d 25 -p SRM -e 168 -c 42 -i 191 -a 42 - -t 359.44619917191 -s 23 -d 25 -p SRM -e 168 -c 42 -i 191 -a 42 h -t 359.44619917191 -s 23 -d 25 -p SRM -e 168 -c 42 -i 191 -a 42 r -t 359.44619917191 -s 26 -d 27 -p SRM -e 168 -c 42 -i 191 -a 42 r -t 359.44619917191 -s 26 -d 28 -p SRM -e 168 -c 42 -i 191 -a 42 r -t 359.45754317191 -s 23 -d 21 -p SRM -e 168 -c 42 -i 191 -a 42 + -t 359.45754317191 -s 21 -d 20 -p SRM -e 168 -c 42 -i 191 -a 42 - -t 359.45754317191 -s 21 -d 20 -p SRM -e 168 -c 42 -i 191 -a 42 h -t 359.45754317191 -s 21 -d 20 -p SRM -e 168 -c 42 -i 191 -a 42 + -t 359.45754317191 -s 21 -d 24 -p SRM -e 168 -c 42 -i 191 -a 42 - -t 359.45754317191 -s 21 -d 24 -p SRM -e 168 -c 42 -i 191 -a 42 h -t 359.45754317191 -s 21 -d 24 -p SRM -e 168 -c 42 -i 191 -a 42 r -t 359.45754317191 -s 23 -d 25 -p SRM -e 168 -c 42 -i 191 -a 42 r -t 359.46888717191001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 191 -a 42 + -t 359.46888717191001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 191 -a 42 - -t 359.46888717191001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 191 -a 42 h -t 359.46888717191001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 191 -a 42 r -t 359.46888717191001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 191 -a 42 r -t 359.48023117191002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 191 -a 42 + -t 359.81606236254999 -s 14 -d 11 -p SRM -e 168 -c 42 -i 195 -a 42 - -t 359.81606236254999 -s 14 -d 11 -p SRM -e 168 -c 42 -i 195 -a 42 h -t 359.81606236254999 -s 14 -d 11 -p SRM -e 168 -c 42 -i 195 -a 42 + -t 359.81918817352999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 196 -a 42 - -t 359.81918817352999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 196 -a 42 h -t 359.81918817352999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 196 -a 42 + -t 359.81918817352999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 196 -a 42 - -t 359.81918817352999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 196 -a 42 h -t 359.81918817352999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 196 -a 42 + -t 359.81918817352999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 196 -a 42 - -t 359.81918817352999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 196 -a 42 h -t 359.81918817352999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 196 -a 42 r -t 359.82740636254999 -s 14 -d 11 -p SRM -e 168 -c 42 -i 195 -a 42 + -t 359.82740636254999 -s 11 -d 10 -p SRM -e 168 -c 42 -i 195 -a 42 - -t 359.82740636254999 -s 11 -d 10 -p SRM -e 168 -c 42 -i 195 -a 42 h -t 359.82740636254999 -s 11 -d 10 -p SRM -e 168 -c 42 -i 195 -a 42 + -t 359.82740636254999 -s 11 -d 13 -p SRM -e 168 -c 42 -i 195 -a 42 - -t 359.82740636254999 -s 11 -d 13 -p SRM -e 168 -c 42 -i 195 -a 42 h -t 359.82740636254999 -s 11 -d 13 -p SRM -e 168 -c 42 -i 195 -a 42 r -t 359.83053217353 -s 16 -d 13 -p SRM -e 168 -c 42 -i 196 -a 42 + -t 359.83053217353 -s 13 -d 11 -p SRM -e 168 -c 42 -i 196 -a 42 - -t 359.83053217353 -s 13 -d 11 -p SRM -e 168 -c 42 -i 196 -a 42 h -t 359.83053217353 -s 13 -d 11 -p SRM -e 168 -c 42 -i 196 -a 42 + -t 359.83053217353 -s 13 -d 15 -p SRM -e 168 -c 42 -i 196 -a 42 - -t 359.83053217353 -s 13 -d 15 -p SRM -e 168 -c 42 -i 196 -a 42 h -t 359.83053217353 -s 13 -d 15 -p SRM -e 168 -c 42 -i 196 -a 42 r -t 359.83053217353 -s 16 -d 17 -p SRM -e 168 -c 42 -i 196 -a 42 r -t 359.83053217353 -s 16 -d 18 -p SRM -e 168 -c 42 -i 196 -a 42 r -t 359.83875036255 -s 11 -d 10 -p SRM -e 168 -c 42 -i 195 -a 42 + -t 359.83875036255 -s 10 -d 12 -p SRM -e 168 -c 42 -i 195 -a 42 - -t 359.83875036255 -s 10 -d 12 -p SRM -e 168 -c 42 -i 195 -a 42 h -t 359.83875036255 -s 10 -d 12 -p SRM -e 168 -c 42 -i 195 -a 42 r -t 359.83875036255 -s 11 -d 13 -p SRM -e 168 -c 42 -i 195 -a 42 + -t 359.83875036255 -s 13 -d 15 -p SRM -e 168 -c 42 -i 195 -a 42 - -t 359.83875036255 -s 13 -d 15 -p SRM -e 168 -c 42 -i 195 -a 42 h -t 359.83875036255 -s 13 -d 15 -p SRM -e 168 -c 42 -i 195 -a 42 + -t 359.83875036255 -s 13 -d 16 -p SRM -e 168 -c 42 -i 195 -a 42 - -t 359.83875036255 -s 13 -d 16 -p SRM -e 168 -c 42 -i 195 -a 42 h -t 359.83875036255 -s 13 -d 16 -p SRM -e 168 -c 42 -i 195 -a 42 r -t 359.84187617353001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 196 -a 42 + -t 359.84187617353001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 196 -a 42 - -t 359.84187617353001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 196 -a 42 h -t 359.84187617353001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 196 -a 42 + -t 359.84187617353001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 196 -a 42 - -t 359.84187617353001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 196 -a 42 h -t 359.84187617353001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 196 -a 42 r -t 359.84187617353001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 196 -a 42 r -t 359.85009436255001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 195 -a 42 r -t 359.85009436255001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 195 -a 42 r -t 359.85009436255001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 195 -a 42 + -t 359.85009436255001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 195 -a 42 - -t 359.85009436255001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 195 -a 42 h -t 359.85009436255001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 195 -a 42 + -t 359.85009436255001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 195 -a 42 - -t 359.85009436255001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 195 -a 42 h -t 359.85009436255001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 195 -a 42 r -t 359.85322017353002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 196 -a 42 + -t 359.85322017353002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 196 -a 42 - -t 359.85322017353002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 196 -a 42 h -t 359.85322017353002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 196 -a 42 r -t 359.85322017353002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 196 -a 42 r -t 359.86143836255002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 195 -a 42 r -t 359.86143836255002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 195 -a 42 r -t 359.86456417353003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 196 -a 42 + -t 361.54869217288001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 197 -a 42 - -t 361.54869217288001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 197 -a 42 h -t 361.54869217288001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 197 -a 42 + -t 361.54869217288001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 197 -a 42 - -t 361.54869217288001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 197 -a 42 h -t 361.54869217288001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 197 -a 42 + -t 361.54869217288001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 197 -a 42 - -t 361.54869217288001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 197 -a 42 h -t 361.54869217288001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 197 -a 42 r -t 361.56003617288002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 197 -a 42 + -t 361.56003617288002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 197 -a 42 - -t 361.56003617288002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 197 -a 42 h -t 361.56003617288002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 197 -a 42 r -t 361.56003617288002 -s 11 -d 13 -p SRM -e 168 -c 42 -i 197 -a 42 + -t 361.56003617288002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 197 -a 42 - -t 361.56003617288002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 197 -a 42 h -t 361.56003617288002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 197 -a 42 + -t 361.56003617288002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 197 -a 42 - -t 361.56003617288002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 197 -a 42 h -t 361.56003617288002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 197 -a 42 r -t 361.56003617288002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 197 -a 42 r -t 361.57138017288003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 197 -a 42 r -t 361.57138017288003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 197 -a 42 r -t 361.57138017288003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 197 -a 42 + -t 361.57138017288003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 197 -a 42 - -t 361.57138017288003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 197 -a 42 h -t 361.57138017288003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 197 -a 42 + -t 361.57138017288003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 197 -a 42 - -t 361.57138017288003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 197 -a 42 h -t 361.57138017288003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 197 -a 42 r -t 361.58272417288003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 197 -a 42 r -t 361.58272417288003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 197 -a 42 + -t 361.71588642492986 -s 27 -d 26 -p cbr -e 1280 -c 7 -i 192 -a 7 - -t 361.71588642492986 -s 27 -d 26 -p cbr -e 1280 -c 7 -i 192 -a 7 h -t 361.71588642492986 -s 27 -d 26 -p cbr -e 1280 -c 7 -i 192 -a 7 r -t 361.73612642492986 -s 27 -d 26 -p cbr -e 1280 -c 7 -i 192 -a 7 + -t 361.73612642492986 -s 26 -d 23 -p cbr -e 1280 -c 7 -i 192 -a 7 - -t 361.73612642492986 -s 26 -d 23 -p cbr -e 1280 -c 7 -i 192 -a 7 h -t 361.73612642492986 -s 26 -d 23 -p cbr -e 1280 -c 7 -i 192 -a 7 + -t 361.73612642492986 -s 26 -d 28 -p cbr -e 1280 -c 7 -i 192 -a 7 - -t 361.73612642492986 -s 26 -d 28 -p cbr -e 1280 -c 7 -i 192 -a 7 h -t 361.73612642492986 -s 26 -d 28 -p cbr -e 1280 -c 7 -i 192 -a 7 r -t 361.75636642492987 -s 26 -d 23 -p cbr -e 1280 -c 7 -i 192 -a 7 + -t 361.75636642492987 -s 23 -d 21 -p cbr -e 1280 -c 7 -i 192 -a 7 - -t 361.75636642492987 -s 23 -d 21 -p cbr -e 1280 -c 7 -i 192 -a 7 h -t 361.75636642492987 -s 23 -d 21 -p cbr -e 1280 -c 7 -i 192 -a 7 + -t 361.75636642492987 -s 23 -d 25 -p cbr -e 1280 -c 7 -i 192 -a 7 - -t 361.75636642492987 -s 23 -d 25 -p cbr -e 1280 -c 7 -i 192 -a 7 h -t 361.75636642492987 -s 23 -d 25 -p cbr -e 1280 -c 7 -i 192 -a 7 r -t 361.75636642492987 -s 26 -d 28 -p cbr -e 1280 -c 7 -i 192 -a 7 r -t 361.77660642492987 -s 23 -d 21 -p cbr -e 1280 -c 7 -i 192 -a 7 + -t 361.77660642492987 -s 21 -d 20 -p cbr -e 1280 -c 7 -i 192 -a 7 - -t 361.77660642492987 -s 21 -d 20 -p cbr -e 1280 -c 7 -i 192 -a 7 h -t 361.77660642492987 -s 21 -d 20 -p cbr -e 1280 -c 7 -i 192 -a 7 + -t 361.77660642492987 -s 21 -d 24 -p cbr -e 1280 -c 7 -i 192 -a 7 - -t 361.77660642492987 -s 21 -d 24 -p cbr -e 1280 -c 7 -i 192 -a 7 h -t 361.77660642492987 -s 21 -d 24 -p cbr -e 1280 -c 7 -i 192 -a 7 r -t 361.77660642492987 -s 23 -d 25 -p cbr -e 1280 -c 7 -i 192 -a 7 r -t 361.79684642492987 -s 21 -d 20 -p cbr -e 1280 -c 7 -i 192 -a 7 + -t 361.79684642492987 -s 20 -d 22 -p cbr -e 1280 -c 7 -i 192 -a 7 - -t 361.79684642492987 -s 20 -d 22 -p cbr -e 1280 -c 7 -i 192 -a 7 h -t 361.79684642492987 -s 20 -d 22 -p cbr -e 1280 -c 7 -i 192 -a 7 r -t 361.79684642492987 -s 21 -d 24 -p cbr -e 1280 -c 7 -i 192 -a 7 r -t 361.81708642492987 -s 20 -d 22 -p cbr -e 1280 -c 7 -i 192 -a 7 + -t 363.65304824112002 -s 17 -d 16 -p SRM -e 168 -c 42 -i 198 -a 42 - -t 363.65304824112002 -s 17 -d 16 -p SRM -e 168 -c 42 -i 198 -a 42 h -t 363.65304824112002 -s 17 -d 16 -p SRM -e 168 -c 42 -i 198 -a 42 r -t 363.66439224112003 -s 17 -d 16 -p SRM -e 168 -c 42 -i 198 -a 42 + -t 363.66439224112003 -s 16 -d 13 -p SRM -e 168 -c 42 -i 198 -a 42 - -t 363.66439224112003 -s 16 -d 13 -p SRM -e 168 -c 42 -i 198 -a 42 h -t 363.66439224112003 -s 16 -d 13 -p SRM -e 168 -c 42 -i 198 -a 42 + -t 363.66439224112003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 198 -a 42 - -t 363.66439224112003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 198 -a 42 h -t 363.66439224112003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 198 -a 42 r -t 363.67573624112003 -s 16 -d 13 -p SRM -e 168 -c 42 -i 198 -a 42 + -t 363.67573624112003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 198 -a 42 - -t 363.67573624112003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 198 -a 42 h -t 363.67573624112003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 198 -a 42 + -t 363.67573624112003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 198 -a 42 - -t 363.67573624112003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 198 -a 42 h -t 363.67573624112003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 198 -a 42 r -t 363.67573624112003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 198 -a 42 r -t 363.68708024112004 -s 13 -d 11 -p SRM -e 168 -c 42 -i 198 -a 42 + -t 363.68708024112004 -s 11 -d 10 -p SRM -e 168 -c 42 -i 198 -a 42 - -t 363.68708024112004 -s 11 -d 10 -p SRM -e 168 -c 42 -i 198 -a 42 h -t 363.68708024112004 -s 11 -d 10 -p SRM -e 168 -c 42 -i 198 -a 42 + -t 363.68708024112004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 198 -a 42 - -t 363.68708024112004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 198 -a 42 h -t 363.68708024112004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 198 -a 42 r -t 363.68708024112004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 198 -a 42 r -t 363.69842424112005 -s 11 -d 10 -p SRM -e 168 -c 42 -i 198 -a 42 + -t 363.69842424112005 -s 10 -d 12 -p SRM -e 168 -c 42 -i 198 -a 42 - -t 363.69842424112005 -s 10 -d 12 -p SRM -e 168 -c 42 -i 198 -a 42 h -t 363.69842424112005 -s 10 -d 12 -p SRM -e 168 -c 42 -i 198 -a 42 r -t 363.69842424112005 -s 11 -d 14 -p SRM -e 168 -c 42 -i 198 -a 42 r -t 363.70976824112006 -s 10 -d 12 -p SRM -e 168 -c 42 -i 198 -a 42 + -t 363.86161267541002 -s 22 -d 20 -p SRM -e 168 -c 42 -i 193 -a 42 - -t 363.86161267541002 -s 22 -d 20 -p SRM -e 168 -c 42 -i 193 -a 42 h -t 363.86161267541002 -s 22 -d 20 -p SRM -e 168 -c 42 -i 193 -a 42 r -t 363.87295667541002 -s 22 -d 20 -p SRM -e 168 -c 42 -i 193 -a 42 + -t 363.87295667541002 -s 20 -d 21 -p SRM -e 168 -c 42 -i 193 -a 42 - -t 363.87295667541002 -s 20 -d 21 -p SRM -e 168 -c 42 -i 193 -a 42 h -t 363.87295667541002 -s 20 -d 21 -p SRM -e 168 -c 42 -i 193 -a 42 r -t 363.88430067541003 -s 20 -d 21 -p SRM -e 168 -c 42 -i 193 -a 42 + -t 363.88430067541003 -s 21 -d 23 -p SRM -e 168 -c 42 -i 193 -a 42 - -t 363.88430067541003 -s 21 -d 23 -p SRM -e 168 -c 42 -i 193 -a 42 h -t 363.88430067541003 -s 21 -d 23 -p SRM -e 168 -c 42 -i 193 -a 42 + -t 363.88430067541003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 193 -a 42 - -t 363.88430067541003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 193 -a 42 h -t 363.88430067541003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 193 -a 42 r -t 363.89564467541004 -s 21 -d 23 -p SRM -e 168 -c 42 -i 193 -a 42 + -t 363.89564467541004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 193 -a 42 - -t 363.89564467541004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 193 -a 42 h -t 363.89564467541004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 193 -a 42 + -t 363.89564467541004 -s 23 -d 26 -p SRM -e 168 -c 42 -i 193 -a 42 - -t 363.89564467541004 -s 23 -d 26 -p SRM -e 168 -c 42 -i 193 -a 42 h -t 363.89564467541004 -s 23 -d 26 -p SRM -e 168 -c 42 -i 193 -a 42 r -t 363.89564467541004 -s 21 -d 24 -p SRM -e 168 -c 42 -i 193 -a 42 + -t 363.90272718641 -s 13 -d 11 -p SRM -e 168 -c 42 -i 199 -a 42 - -t 363.90272718641 -s 13 -d 11 -p SRM -e 168 -c 42 -i 199 -a 42 h -t 363.90272718641 -s 13 -d 11 -p SRM -e 168 -c 42 -i 199 -a 42 + -t 363.90272718641 -s 13 -d 15 -p SRM -e 168 -c 42 -i 199 -a 42 - -t 363.90272718641 -s 13 -d 15 -p SRM -e 168 -c 42 -i 199 -a 42 h -t 363.90272718641 -s 13 -d 15 -p SRM -e 168 -c 42 -i 199 -a 42 + -t 363.90272718641 -s 13 -d 16 -p SRM -e 168 -c 42 -i 199 -a 42 - -t 363.90272718641 -s 13 -d 16 -p SRM -e 168 -c 42 -i 199 -a 42 h -t 363.90272718641 -s 13 -d 16 -p SRM -e 168 -c 42 -i 199 -a 42 r -t 363.90698867541005 -s 23 -d 25 -p SRM -e 168 -c 42 -i 193 -a 42 r -t 363.90698867541005 -s 23 -d 26 -p SRM -e 168 -c 42 -i 193 -a 42 + -t 363.90698867541005 -s 26 -d 27 -p SRM -e 168 -c 42 -i 193 -a 42 - -t 363.90698867541005 -s 26 -d 27 -p SRM -e 168 -c 42 -i 193 -a 42 h -t 363.90698867541005 -s 26 -d 27 -p SRM -e 168 -c 42 -i 193 -a 42 + -t 363.90698867541005 -s 26 -d 28 -p SRM -e 168 -c 42 -i 193 -a 42 - -t 363.90698867541005 -s 26 -d 28 -p SRM -e 168 -c 42 -i 193 -a 42 h -t 363.90698867541005 -s 26 -d 28 -p SRM -e 168 -c 42 -i 193 -a 42 r -t 363.91407118641001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 199 -a 42 + -t 363.91407118641001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 199 -a 42 - -t 363.91407118641001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 199 -a 42 h -t 363.91407118641001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 199 -a 42 + -t 363.91407118641001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 199 -a 42 - -t 363.91407118641001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 199 -a 42 h -t 363.91407118641001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 199 -a 42 r -t 363.91407118641001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 199 -a 42 r -t 363.91407118641001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 199 -a 42 + -t 363.91407118641001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 199 -a 42 - -t 363.91407118641001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 199 -a 42 h -t 363.91407118641001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 199 -a 42 + -t 363.91407118641001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 199 -a 42 - -t 363.91407118641001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 199 -a 42 h -t 363.91407118641001 -s 16 -d 18 -p SRM -e 168 -c 42 -i 199 -a 42 r -t 363.91833267541006 -s 26 -d 27 -p SRM -e 168 -c 42 -i 193 -a 42 r -t 363.91833267541006 -s 26 -d 28 -p SRM -e 168 -c 42 -i 193 -a 42 r -t 363.92541518641002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 199 -a 42 + -t 363.92541518641002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 199 -a 42 - -t 363.92541518641002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 199 -a 42 h -t 363.92541518641002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 199 -a 42 r -t 363.92541518641002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 199 -a 42 r -t 363.92541518641002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 199 -a 42 r -t 363.92541518641002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 199 -a 42 r -t 363.93675918641003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 199 -a 42 + -t 366.0628702319392 -s 25 -d 23 -p cbr -e 1280 -c 5 -i 194 -a 5 - -t 366.0628702319392 -s 25 -d 23 -p cbr -e 1280 -c 5 -i 194 -a 5 h -t 366.0628702319392 -s 25 -d 23 -p cbr -e 1280 -c 5 -i 194 -a 5 r -t 366.0831102319392 -s 25 -d 23 -p cbr -e 1280 -c 5 -i 194 -a 5 + -t 366.0831102319392 -s 23 -d 21 -p cbr -e 1280 -c 5 -i 194 -a 5 - -t 366.0831102319392 -s 23 -d 21 -p cbr -e 1280 -c 5 -i 194 -a 5 h -t 366.0831102319392 -s 23 -d 21 -p cbr -e 1280 -c 5 -i 194 -a 5 + -t 366.0831102319392 -s 23 -d 26 -p cbr -e 1280 -c 5 -i 194 -a 5 - -t 366.0831102319392 -s 23 -d 26 -p cbr -e 1280 -c 5 -i 194 -a 5 h -t 366.0831102319392 -s 23 -d 26 -p cbr -e 1280 -c 5 -i 194 -a 5 r -t 366.1033502319392 -s 23 -d 21 -p cbr -e 1280 -c 5 -i 194 -a 5 + -t 366.1033502319392 -s 21 -d 20 -p cbr -e 1280 -c 5 -i 194 -a 5 - -t 366.1033502319392 -s 21 -d 20 -p cbr -e 1280 -c 5 -i 194 -a 5 h -t 366.1033502319392 -s 21 -d 20 -p cbr -e 1280 -c 5 -i 194 -a 5 + -t 366.1033502319392 -s 21 -d 24 -p cbr -e 1280 -c 5 -i 194 -a 5 - -t 366.1033502319392 -s 21 -d 24 -p cbr -e 1280 -c 5 -i 194 -a 5 h -t 366.1033502319392 -s 21 -d 24 -p cbr -e 1280 -c 5 -i 194 -a 5 r -t 366.1033502319392 -s 23 -d 26 -p cbr -e 1280 -c 5 -i 194 -a 5 + -t 366.1033502319392 -s 26 -d 27 -p cbr -e 1280 -c 5 -i 194 -a 5 - -t 366.1033502319392 -s 26 -d 27 -p cbr -e 1280 -c 5 -i 194 -a 5 h -t 366.1033502319392 -s 26 -d 27 -p cbr -e 1280 -c 5 -i 194 -a 5 + -t 366.1033502319392 -s 26 -d 28 -p cbr -e 1280 -c 5 -i 194 -a 5 - -t 366.1033502319392 -s 26 -d 28 -p cbr -e 1280 -c 5 -i 194 -a 5 h -t 366.1033502319392 -s 26 -d 28 -p cbr -e 1280 -c 5 -i 194 -a 5 r -t 366.1235902319392 -s 21 -d 20 -p cbr -e 1280 -c 5 -i 194 -a 5 + -t 366.1235902319392 -s 20 -d 22 -p cbr -e 1280 -c 5 -i 194 -a 5 - -t 366.1235902319392 -s 20 -d 22 -p cbr -e 1280 -c 5 -i 194 -a 5 h -t 366.1235902319392 -s 20 -d 22 -p cbr -e 1280 -c 5 -i 194 -a 5 r -t 366.1235902319392 -s 21 -d 24 -p cbr -e 1280 -c 5 -i 194 -a 5 r -t 366.1235902319392 -s 26 -d 27 -p cbr -e 1280 -c 5 -i 194 -a 5 r -t 366.1235902319392 -s 26 -d 28 -p cbr -e 1280 -c 5 -i 194 -a 5 r -t 366.14383023193921 -s 20 -d 22 -p cbr -e 1280 -c 5 -i 194 -a 5 + -t 366.47233169617999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 195 -a 42 - -t 366.47233169617999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 195 -a 42 h -t 366.47233169617999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 195 -a 42 + -t 366.47233169617999 -s 21 -d 23 -p SRM -e 168 -c 42 -i 195 -a 42 - -t 366.47233169617999 -s 21 -d 23 -p SRM -e 168 -c 42 -i 195 -a 42 h -t 366.47233169617999 -s 21 -d 23 -p SRM -e 168 -c 42 -i 195 -a 42 + -t 366.47233169617999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 195 -a 42 - -t 366.47233169617999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 195 -a 42 h -t 366.47233169617999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 195 -a 42 r -t 366.48367569618 -s 21 -d 20 -p SRM -e 168 -c 42 -i 195 -a 42 + -t 366.48367569618 -s 20 -d 22 -p SRM -e 168 -c 42 -i 195 -a 42 - -t 366.48367569618 -s 20 -d 22 -p SRM -e 168 -c 42 -i 195 -a 42 h -t 366.48367569618 -s 20 -d 22 -p SRM -e 168 -c 42 -i 195 -a 42 r -t 366.48367569618 -s 21 -d 23 -p SRM -e 168 -c 42 -i 195 -a 42 + -t 366.48367569618 -s 23 -d 25 -p SRM -e 168 -c 42 -i 195 -a 42 - -t 366.48367569618 -s 23 -d 25 -p SRM -e 168 -c 42 -i 195 -a 42 h -t 366.48367569618 -s 23 -d 25 -p SRM -e 168 -c 42 -i 195 -a 42 + -t 366.48367569618 -s 23 -d 26 -p SRM -e 168 -c 42 -i 195 -a 42 - -t 366.48367569618 -s 23 -d 26 -p SRM -e 168 -c 42 -i 195 -a 42 h -t 366.48367569618 -s 23 -d 26 -p SRM -e 168 -c 42 -i 195 -a 42 r -t 366.48367569618 -s 21 -d 24 -p SRM -e 168 -c 42 -i 195 -a 42 r -t 366.49501969618001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 195 -a 42 r -t 366.49501969618001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 195 -a 42 r -t 366.49501969618001 -s 23 -d 26 -p SRM -e 168 -c 42 -i 195 -a 42 + -t 366.49501969618001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 195 -a 42 - -t 366.49501969618001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 195 -a 42 h -t 366.49501969618001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 195 -a 42 + -t 366.49501969618001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 195 -a 42 - -t 366.49501969618001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 195 -a 42 h -t 366.49501969618001 -s 26 -d 28 -p SRM -e 168 -c 42 -i 195 -a 42 r -t 366.50636369618002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 195 -a 42 r -t 366.50636369618002 -s 26 -d 28 -p SRM -e 168 -c 42 -i 195 -a 42 + -t 366.65830473889002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 196 -a 42 - -t 366.65830473889002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 196 -a 42 h -t 366.65830473889002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 196 -a 42 + -t 366.65830473889002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 196 -a 42 - -t 366.65830473889002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 196 -a 42 h -t 366.65830473889002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 196 -a 42 + -t 366.65830473889002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 196 -a 42 - -t 366.65830473889002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 196 -a 42 h -t 366.65830473889002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 196 -a 42 r -t 366.66964873889003 -s 23 -d 21 -p SRM -e 168 -c 42 -i 196 -a 42 + -t 366.66964873889003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 196 -a 42 - -t 366.66964873889003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 196 -a 42 h -t 366.66964873889003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 196 -a 42 + -t 366.66964873889003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 196 -a 42 - -t 366.66964873889003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 196 -a 42 h -t 366.66964873889003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 196 -a 42 r -t 366.66964873889003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 196 -a 42 r -t 366.66964873889003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 196 -a 42 + -t 366.66964873889003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 196 -a 42 - -t 366.66964873889003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 196 -a 42 h -t 366.66964873889003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 196 -a 42 + -t 366.66964873889003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 196 -a 42 - -t 366.66964873889003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 196 -a 42 h -t 366.66964873889003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 196 -a 42 r -t 366.68099273889004 -s 21 -d 20 -p SRM -e 168 -c 42 -i 196 -a 42 + -t 366.68099273889004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 196 -a 42 - -t 366.68099273889004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 196 -a 42 h -t 366.68099273889004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 196 -a 42 r -t 366.68099273889004 -s 21 -d 24 -p SRM -e 168 -c 42 -i 196 -a 42 r -t 366.68099273889004 -s 26 -d 27 -p SRM -e 168 -c 42 -i 196 -a 42 r -t 366.68099273889004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 196 -a 42 r -t 366.69233673889005 -s 20 -d 22 -p SRM -e 168 -c 42 -i 196 -a 42 + -t 368.69305439487999 -s 18 -d 16 -p SRM -e 168 -c 42 -i 200 -a 42 - -t 368.69305439487999 -s 18 -d 16 -p SRM -e 168 -c 42 -i 200 -a 42 h -t 368.69305439487999 -s 18 -d 16 -p SRM -e 168 -c 42 -i 200 -a 42 r -t 368.70439839488 -s 18 -d 16 -p SRM -e 168 -c 42 -i 200 -a 42 + -t 368.70439839488 -s 16 -d 13 -p SRM -e 168 -c 42 -i 200 -a 42 - -t 368.70439839488 -s 16 -d 13 -p SRM -e 168 -c 42 -i 200 -a 42 h -t 368.70439839488 -s 16 -d 13 -p SRM -e 168 -c 42 -i 200 -a 42 + -t 368.70439839488 -s 16 -d 17 -p SRM -e 168 -c 42 -i 200 -a 42 - -t 368.70439839488 -s 16 -d 17 -p SRM -e 168 -c 42 -i 200 -a 42 h -t 368.70439839488 -s 16 -d 17 -p SRM -e 168 -c 42 -i 200 -a 42 r -t 368.71574239488001 -s 16 -d 13 -p SRM -e 168 -c 42 -i 200 -a 42 + -t 368.71574239488001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 200 -a 42 - -t 368.71574239488001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 200 -a 42 h -t 368.71574239488001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 200 -a 42 + -t 368.71574239488001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 200 -a 42 - -t 368.71574239488001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 200 -a 42 h -t 368.71574239488001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 200 -a 42 r -t 368.71574239488001 -s 16 -d 17 -p SRM -e 168 -c 42 -i 200 -a 42 r -t 368.72708639488002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 200 -a 42 + -t 368.72708639488002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 200 -a 42 - -t 368.72708639488002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 200 -a 42 h -t 368.72708639488002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 200 -a 42 + -t 368.72708639488002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 200 -a 42 - -t 368.72708639488002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 200 -a 42 h -t 368.72708639488002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 200 -a 42 r -t 368.72708639488002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 200 -a 42 r -t 368.73843039488003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 200 -a 42 + -t 368.73843039488003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 200 -a 42 - -t 368.73843039488003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 200 -a 42 h -t 368.73843039488003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 200 -a 42 r -t 368.73843039488003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 200 -a 42 r -t 368.74977439488003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 200 -a 42 + -t 371.03976779828997 -s 25 -d 23 -p SRM -e 168 -c 42 -i 197 -a 42 - -t 371.03976779828997 -s 25 -d 23 -p SRM -e 168 -c 42 -i 197 -a 42 h -t 371.03976779828997 -s 25 -d 23 -p SRM -e 168 -c 42 -i 197 -a 42 r -t 371.05111179828998 -s 25 -d 23 -p SRM -e 168 -c 42 -i 197 -a 42 + -t 371.05111179828998 -s 23 -d 21 -p SRM -e 168 -c 42 -i 197 -a 42 - -t 371.05111179828998 -s 23 -d 21 -p SRM -e 168 -c 42 -i 197 -a 42 h -t 371.05111179828998 -s 23 -d 21 -p SRM -e 168 -c 42 -i 197 -a 42 + -t 371.05111179828998 -s 23 -d 26 -p SRM -e 168 -c 42 -i 197 -a 42 - -t 371.05111179828998 -s 23 -d 26 -p SRM -e 168 -c 42 -i 197 -a 42 h -t 371.05111179828998 -s 23 -d 26 -p SRM -e 168 -c 42 -i 197 -a 42 r -t 371.06245579828999 -s 23 -d 21 -p SRM -e 168 -c 42 -i 197 -a 42 + -t 371.06245579828999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 197 -a 42 - -t 371.06245579828999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 197 -a 42 h -t 371.06245579828999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 197 -a 42 + -t 371.06245579828999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 197 -a 42 - -t 371.06245579828999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 197 -a 42 h -t 371.06245579828999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 197 -a 42 r -t 371.06245579828999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 197 -a 42 + -t 371.06245579828999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 197 -a 42 - -t 371.06245579828999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 197 -a 42 h -t 371.06245579828999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 197 -a 42 + -t 371.06245579828999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 197 -a 42 - -t 371.06245579828999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 197 -a 42 h -t 371.06245579828999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 197 -a 42 r -t 371.07379979829 -s 21 -d 20 -p SRM -e 168 -c 42 -i 197 -a 42 + -t 371.07379979829 -s 20 -d 22 -p SRM -e 168 -c 42 -i 197 -a 42 - -t 371.07379979829 -s 20 -d 22 -p SRM -e 168 -c 42 -i 197 -a 42 h -t 371.07379979829 -s 20 -d 22 -p SRM -e 168 -c 42 -i 197 -a 42 r -t 371.07379979829 -s 21 -d 24 -p SRM -e 168 -c 42 -i 197 -a 42 r -t 371.07379979829 -s 26 -d 27 -p SRM -e 168 -c 42 -i 197 -a 42 r -t 371.07379979829 -s 26 -d 28 -p SRM -e 168 -c 42 -i 197 -a 42 r -t 371.08514379829001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 197 -a 42 + -t 371.4801896843 -s 28 -d 26 -p SRM -e 168 -c 42 -i 198 -a 42 - -t 371.4801896843 -s 28 -d 26 -p SRM -e 168 -c 42 -i 198 -a 42 h -t 371.4801896843 -s 28 -d 26 -p SRM -e 168 -c 42 -i 198 -a 42 r -t 371.49153368430001 -s 28 -d 26 -p SRM -e 168 -c 42 -i 198 -a 42 + -t 371.49153368430001 -s 26 -d 23 -p SRM -e 168 -c 42 -i 198 -a 42 - -t 371.49153368430001 -s 26 -d 23 -p SRM -e 168 -c 42 -i 198 -a 42 h -t 371.49153368430001 -s 26 -d 23 -p SRM -e 168 -c 42 -i 198 -a 42 + -t 371.49153368430001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 198 -a 42 - -t 371.49153368430001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 198 -a 42 h -t 371.49153368430001 -s 26 -d 27 -p SRM -e 168 -c 42 -i 198 -a 42 r -t 371.50287768430002 -s 26 -d 23 -p SRM -e 168 -c 42 -i 198 -a 42 + -t 371.50287768430002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 198 -a 42 - -t 371.50287768430002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 198 -a 42 h -t 371.50287768430002 -s 23 -d 21 -p SRM -e 168 -c 42 -i 198 -a 42 + -t 371.50287768430002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 198 -a 42 - -t 371.50287768430002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 198 -a 42 h -t 371.50287768430002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 198 -a 42 r -t 371.50287768430002 -s 26 -d 27 -p SRM -e 168 -c 42 -i 198 -a 42 r -t 371.51422168430003 -s 23 -d 21 -p SRM -e 168 -c 42 -i 198 -a 42 + -t 371.51422168430003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 198 -a 42 - -t 371.51422168430003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 198 -a 42 h -t 371.51422168430003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 198 -a 42 + -t 371.51422168430003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 198 -a 42 - -t 371.51422168430003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 198 -a 42 h -t 371.51422168430003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 198 -a 42 r -t 371.51422168430003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 198 -a 42 r -t 371.52556568430003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 198 -a 42 + -t 371.52556568430003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 198 -a 42 - -t 371.52556568430003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 198 -a 42 h -t 371.52556568430003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 198 -a 42 r -t 371.52556568430003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 198 -a 42 r -t 371.53690968430004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 198 -a 42 + -t 371.7002244905558 -s 14 -d 11 -p cbr -e 1280 -c 4 -i 201 -a 4 - -t 371.7002244905558 -s 14 -d 11 -p cbr -e 1280 -c 4 -i 201 -a 4 h -t 371.7002244905558 -s 14 -d 11 -p cbr -e 1280 -c 4 -i 201 -a 4 r -t 371.7204644905558 -s 14 -d 11 -p cbr -e 1280 -c 4 -i 201 -a 4 + -t 371.7204644905558 -s 11 -d 10 -p cbr -e 1280 -c 4 -i 201 -a 4 - -t 371.7204644905558 -s 11 -d 10 -p cbr -e 1280 -c 4 -i 201 -a 4 h -t 371.7204644905558 -s 11 -d 10 -p cbr -e 1280 -c 4 -i 201 -a 4 + -t 371.7204644905558 -s 11 -d 13 -p cbr -e 1280 -c 4 -i 201 -a 4 - -t 371.7204644905558 -s 11 -d 13 -p cbr -e 1280 -c 4 -i 201 -a 4 h -t 371.7204644905558 -s 11 -d 13 -p cbr -e 1280 -c 4 -i 201 -a 4 r -t 371.7407044905558 -s 11 -d 10 -p cbr -e 1280 -c 4 -i 201 -a 4 + -t 371.7407044905558 -s 10 -d 12 -p cbr -e 1280 -c 4 -i 201 -a 4 - -t 371.7407044905558 -s 10 -d 12 -p cbr -e 1280 -c 4 -i 201 -a 4 h -t 371.7407044905558 -s 10 -d 12 -p cbr -e 1280 -c 4 -i 201 -a 4 r -t 371.7407044905558 -s 11 -d 13 -p cbr -e 1280 -c 4 -i 201 -a 4 + -t 371.7407044905558 -s 13 -d 15 -p cbr -e 1280 -c 4 -i 201 -a 4 - -t 371.7407044905558 -s 13 -d 15 -p cbr -e 1280 -c 4 -i 201 -a 4 h -t 371.7407044905558 -s 13 -d 15 -p cbr -e 1280 -c 4 -i 201 -a 4 + -t 371.7407044905558 -s 13 -d 16 -p cbr -e 1280 -c 4 -i 201 -a 4 - -t 371.7407044905558 -s 13 -d 16 -p cbr -e 1280 -c 4 -i 201 -a 4 h -t 371.7407044905558 -s 13 -d 16 -p cbr -e 1280 -c 4 -i 201 -a 4 r -t 371.7609444905558 -s 10 -d 12 -p cbr -e 1280 -c 4 -i 201 -a 4 r -t 371.7609444905558 -s 13 -d 15 -p cbr -e 1280 -c 4 -i 201 -a 4 r -t 371.7609444905558 -s 13 -d 16 -p cbr -e 1280 -c 4 -i 201 -a 4 + -t 371.7609444905558 -s 16 -d 17 -p cbr -e 1280 -c 4 -i 201 -a 4 - -t 371.7609444905558 -s 16 -d 17 -p cbr -e 1280 -c 4 -i 201 -a 4 h -t 371.7609444905558 -s 16 -d 17 -p cbr -e 1280 -c 4 -i 201 -a 4 + -t 371.7609444905558 -s 16 -d 18 -p cbr -e 1280 -c 4 -i 201 -a 4 - -t 371.7609444905558 -s 16 -d 18 -p cbr -e 1280 -c 4 -i 201 -a 4 h -t 371.7609444905558 -s 16 -d 18 -p cbr -e 1280 -c 4 -i 201 -a 4 r -t 371.7811844905558 -s 16 -d 17 -p cbr -e 1280 -c 4 -i 201 -a 4 r -t 371.7811844905558 -s 16 -d 18 -p cbr -e 1280 -c 4 -i 201 -a 4 + -t 374.65818540940404 -s 26 -d 23 -p cbr -e 1280 -c 6 -i 199 -a 6 - -t 374.65818540940404 -s 26 -d 23 -p cbr -e 1280 -c 6 -i 199 -a 6 h -t 374.65818540940404 -s 26 -d 23 -p cbr -e 1280 -c 6 -i 199 -a 6 d -t 374.65818540940404 -s 26 -d 23 -p cbr -e 1280 -c 6 -i 199 -a 6 + -t 374.65818540940404 -s 26 -d 27 -p cbr -e 1280 -c 6 -i 199 -a 6 - -t 374.65818540940404 -s 26 -d 27 -p cbr -e 1280 -c 6 -i 199 -a 6 h -t 374.65818540940404 -s 26 -d 27 -p cbr -e 1280 -c 6 -i 199 -a 6 + -t 374.65818540940404 -s 26 -d 28 -p cbr -e 1280 -c 6 -i 199 -a 6 - -t 374.65818540940404 -s 26 -d 28 -p cbr -e 1280 -c 6 -i 199 -a 6 h -t 374.65818540940404 -s 26 -d 28 -p cbr -e 1280 -c 6 -i 199 -a 6 r -t 374.67842540940404 -s 26 -d 27 -p cbr -e 1280 -c 6 -i 199 -a 6 r -t 374.67842540940404 -s 26 -d 28 -p cbr -e 1280 -c 6 -i 199 -a 6 + -t 375.21826042143505 -s 28 -d 26 -p cbr -e 1280 -c 8 -i 200 -a 8 - -t 375.21826042143505 -s 28 -d 26 -p cbr -e 1280 -c 8 -i 200 -a 8 h -t 375.21826042143505 -s 28 -d 26 -p cbr -e 1280 -c 8 -i 200 -a 8 r -t 375.23850042143505 -s 28 -d 26 -p cbr -e 1280 -c 8 -i 200 -a 8 + -t 375.23850042143505 -s 26 -d 23 -p cbr -e 1280 -c 8 -i 200 -a 8 - -t 375.23850042143505 -s 26 -d 23 -p cbr -e 1280 -c 8 -i 200 -a 8 h -t 375.23850042143505 -s 26 -d 23 -p cbr -e 1280 -c 8 -i 200 -a 8 + -t 375.23850042143505 -s 26 -d 27 -p cbr -e 1280 -c 8 -i 200 -a 8 - -t 375.23850042143505 -s 26 -d 27 -p cbr -e 1280 -c 8 -i 200 -a 8 h -t 375.23850042143505 -s 26 -d 27 -p cbr -e 1280 -c 8 -i 200 -a 8 r -t 375.25874042143505 -s 26 -d 23 -p cbr -e 1280 -c 8 -i 200 -a 8 + -t 375.25874042143505 -s 23 -d 21 -p cbr -e 1280 -c 8 -i 200 -a 8 - -t 375.25874042143505 -s 23 -d 21 -p cbr -e 1280 -c 8 -i 200 -a 8 h -t 375.25874042143505 -s 23 -d 21 -p cbr -e 1280 -c 8 -i 200 -a 8 d -t 375.25874042143505 -s 23 -d 21 -p cbr -e 1280 -c 8 -i 200 -a 8 + -t 375.25874042143505 -s 23 -d 25 -p cbr -e 1280 -c 8 -i 200 -a 8 - -t 375.25874042143505 -s 23 -d 25 -p cbr -e 1280 -c 8 -i 200 -a 8 h -t 375.25874042143505 -s 23 -d 25 -p cbr -e 1280 -c 8 -i 200 -a 8 r -t 375.25874042143505 -s 26 -d 27 -p cbr -e 1280 -c 8 -i 200 -a 8 r -t 375.27898042143505 -s 23 -d 25 -p cbr -e 1280 -c 8 -i 200 -a 8 + -t 375.36945437982041 -s 11 -d 10 -p cbr -e 1280 -c 1 -i 202 -a 1 - -t 375.36945437982041 -s 11 -d 10 -p cbr -e 1280 -c 1 -i 202 -a 1 h -t 375.36945437982041 -s 11 -d 10 -p cbr -e 1280 -c 1 -i 202 -a 1 + -t 375.36945437982041 -s 11 -d 13 -p cbr -e 1280 -c 1 -i 202 -a 1 - -t 375.36945437982041 -s 11 -d 13 -p cbr -e 1280 -c 1 -i 202 -a 1 h -t 375.36945437982041 -s 11 -d 13 -p cbr -e 1280 -c 1 -i 202 -a 1 d -t 375.36945437982041 -s 11 -d 13 -p cbr -e 1280 -c 1 -i 202 -a 1 + -t 375.36945437982041 -s 11 -d 14 -p cbr -e 1280 -c 1 -i 202 -a 1 - -t 375.36945437982041 -s 11 -d 14 -p cbr -e 1280 -c 1 -i 202 -a 1 h -t 375.36945437982041 -s 11 -d 14 -p cbr -e 1280 -c 1 -i 202 -a 1 r -t 375.38969437982041 -s 11 -d 10 -p cbr -e 1280 -c 1 -i 202 -a 1 + -t 375.38969437982041 -s 10 -d 12 -p cbr -e 1280 -c 1 -i 202 -a 1 - -t 375.38969437982041 -s 10 -d 12 -p cbr -e 1280 -c 1 -i 202 -a 1 h -t 375.38969437982041 -s 10 -d 12 -p cbr -e 1280 -c 1 -i 202 -a 1 r -t 375.38969437982041 -s 11 -d 14 -p cbr -e 1280 -c 1 -i 202 -a 1 r -t 375.40993437982041 -s 10 -d 12 -p cbr -e 1280 -c 1 -i 202 -a 1 + -t 376.91378995705003 -s 27 -d 26 -p SRM -e 168 -c 42 -i 201 -a 42 - -t 376.91378995705003 -s 27 -d 26 -p SRM -e 168 -c 42 -i 201 -a 42 h -t 376.91378995705003 -s 27 -d 26 -p SRM -e 168 -c 42 -i 201 -a 42 r -t 376.92513395705004 -s 27 -d 26 -p SRM -e 168 -c 42 -i 201 -a 42 + -t 376.92513395705004 -s 26 -d 23 -p SRM -e 168 -c 42 -i 201 -a 42 - -t 376.92513395705004 -s 26 -d 23 -p SRM -e 168 -c 42 -i 201 -a 42 h -t 376.92513395705004 -s 26 -d 23 -p SRM -e 168 -c 42 -i 201 -a 42 + -t 376.92513395705004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 201 -a 42 - -t 376.92513395705004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 201 -a 42 h -t 376.92513395705004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 201 -a 42 r -t 376.93647795705004 -s 26 -d 23 -p SRM -e 168 -c 42 -i 201 -a 42 + -t 376.93647795705004 -s 23 -d 21 -p SRM -e 168 -c 42 -i 201 -a 42 - -t 376.93647795705004 -s 23 -d 21 -p SRM -e 168 -c 42 -i 201 -a 42 h -t 376.93647795705004 -s 23 -d 21 -p SRM -e 168 -c 42 -i 201 -a 42 + -t 376.93647795705004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 201 -a 42 - -t 376.93647795705004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 201 -a 42 h -t 376.93647795705004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 201 -a 42 r -t 376.93647795705004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 201 -a 42 r -t 376.94782195705005 -s 23 -d 21 -p SRM -e 168 -c 42 -i 201 -a 42 + -t 376.94782195705005 -s 21 -d 20 -p SRM -e 168 -c 42 -i 201 -a 42 - -t 376.94782195705005 -s 21 -d 20 -p SRM -e 168 -c 42 -i 201 -a 42 h -t 376.94782195705005 -s 21 -d 20 -p SRM -e 168 -c 42 -i 201 -a 42 + -t 376.94782195705005 -s 21 -d 24 -p SRM -e 168 -c 42 -i 201 -a 42 - -t 376.94782195705005 -s 21 -d 24 -p SRM -e 168 -c 42 -i 201 -a 42 h -t 376.94782195705005 -s 21 -d 24 -p SRM -e 168 -c 42 -i 201 -a 42 r -t 376.94782195705005 -s 23 -d 25 -p SRM -e 168 -c 42 -i 201 -a 42 r -t 376.95916595705006 -s 21 -d 20 -p SRM -e 168 -c 42 -i 201 -a 42 + -t 376.95916595705006 -s 20 -d 22 -p SRM -e 168 -c 42 -i 201 -a 42 - -t 376.95916595705006 -s 20 -d 22 -p SRM -e 168 -c 42 -i 201 -a 42 h -t 376.95916595705006 -s 20 -d 22 -p SRM -e 168 -c 42 -i 201 -a 42 r -t 376.95916595705006 -s 21 -d 24 -p SRM -e 168 -c 42 -i 201 -a 42 r -t 376.97050995705007 -s 20 -d 22 -p SRM -e 168 -c 42 -i 201 -a 42 + -t 377.13599148329001 -s 24 -d 21 -p SRM -e 168 -c 42 -i 202 -a 42 - -t 377.13599148329001 -s 24 -d 21 -p SRM -e 168 -c 42 -i 202 -a 42 h -t 377.13599148329001 -s 24 -d 21 -p SRM -e 168 -c 42 -i 202 -a 42 r -t 377.14733548329002 -s 24 -d 21 -p SRM -e 168 -c 42 -i 202 -a 42 + -t 377.14733548329002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 202 -a 42 - -t 377.14733548329002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 202 -a 42 h -t 377.14733548329002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 202 -a 42 + -t 377.14733548329002 -s 21 -d 23 -p SRM -e 168 -c 42 -i 202 -a 42 - -t 377.14733548329002 -s 21 -d 23 -p SRM -e 168 -c 42 -i 202 -a 42 h -t 377.14733548329002 -s 21 -d 23 -p SRM -e 168 -c 42 -i 202 -a 42 r -t 377.15867948329003 -s 21 -d 20 -p SRM -e 168 -c 42 -i 202 -a 42 + -t 377.15867948329003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 202 -a 42 - -t 377.15867948329003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 202 -a 42 h -t 377.15867948329003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 202 -a 42 r -t 377.15867948329003 -s 21 -d 23 -p SRM -e 168 -c 42 -i 202 -a 42 + -t 377.15867948329003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 202 -a 42 - -t 377.15867948329003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 202 -a 42 h -t 377.15867948329003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 202 -a 42 + -t 377.15867948329003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 202 -a 42 - -t 377.15867948329003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 202 -a 42 h -t 377.15867948329003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 202 -a 42 r -t 377.17002348329004 -s 20 -d 22 -p SRM -e 168 -c 42 -i 202 -a 42 r -t 377.17002348329004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 202 -a 42 r -t 377.17002348329004 -s 23 -d 26 -p SRM -e 168 -c 42 -i 202 -a 42 + -t 377.17002348329004 -s 26 -d 27 -p SRM -e 168 -c 42 -i 202 -a 42 - -t 377.17002348329004 -s 26 -d 27 -p SRM -e 168 -c 42 -i 202 -a 42 h -t 377.17002348329004 -s 26 -d 27 -p SRM -e 168 -c 42 -i 202 -a 42 + -t 377.17002348329004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 202 -a 42 - -t 377.17002348329004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 202 -a 42 h -t 377.17002348329004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 202 -a 42 r -t 377.18136748329005 -s 26 -d 27 -p SRM -e 168 -c 42 -i 202 -a 42 r -t 377.18136748329005 -s 26 -d 28 -p SRM -e 168 -c 42 -i 202 -a 42 + -t 377.24282406040999 -s 24 -d 21 -p SRM -e 20 -c 6 -i 203 -a 6 - -t 377.24282406040999 -s 24 -d 21 -p SRM -e 20 -c 6 -i 203 -a 6 h -t 377.24282406040999 -s 24 -d 21 -p SRM -e 20 -c 6 -i 203 -a 6 v -t 377.24282406040999 sim_annotation 377.24282406040999 26 377.24282406040999: node 24 sends request for msg (6:25) m -t 377.24282406040999 -s 24 -n _o28:1537:q -c SeaGreen -h square r -t 377.25298406040997 -s 24 -d 21 -p SRM -e 20 -c 6 -i 203 -a 6 + -t 377.25298406040997 -s 21 -d 20 -p SRM -e 20 -c 6 -i 203 -a 6 - -t 377.25298406040997 -s 21 -d 20 -p SRM -e 20 -c 6 -i 203 -a 6 h -t 377.25298406040997 -s 21 -d 20 -p SRM -e 20 -c 6 -i 203 -a 6 + -t 377.25298406040997 -s 21 -d 23 -p SRM -e 20 -c 6 -i 203 -a 6 - -t 377.25298406040997 -s 21 -d 23 -p SRM -e 20 -c 6 -i 203 -a 6 h -t 377.25298406040997 -s 21 -d 23 -p SRM -e 20 -c 6 -i 203 -a 6 + -t 377.25742188211001 -s 23 -d 21 -p SRM -e 20 -c 6 -i 204 -a 6 - -t 377.25742188211001 -s 23 -d 21 -p SRM -e 20 -c 6 -i 204 -a 6 h -t 377.25742188211001 -s 23 -d 21 -p SRM -e 20 -c 6 -i 204 -a 6 + -t 377.25742188211001 -s 23 -d 25 -p SRM -e 20 -c 6 -i 204 -a 6 - -t 377.25742188211001 -s 23 -d 25 -p SRM -e 20 -c 6 -i 204 -a 6 h -t 377.25742188211001 -s 23 -d 25 -p SRM -e 20 -c 6 -i 204 -a 6 + -t 377.25742188211001 -s 23 -d 26 -p SRM -e 20 -c 6 -i 204 -a 6 - -t 377.25742188211001 -s 23 -d 26 -p SRM -e 20 -c 6 -i 204 -a 6 h -t 377.25742188211001 -s 23 -d 26 -p SRM -e 20 -c 6 -i 204 -a 6 v -t 377.25742188211001 sim_annotation 377.25742188211001 27 377.25742188211001: node 23 sends dup request for msg (6:25) m -t 377.25742188211001 -s 23 -n _o23:1537:q -c SeaGreen -h square r -t 377.26314406040996 -s 21 -d 20 -p SRM -e 20 -c 6 -i 203 -a 6 + -t 377.26314406040996 -s 20 -d 22 -p SRM -e 20 -c 6 -i 203 -a 6 - -t 377.26314406040996 -s 20 -d 22 -p SRM -e 20 -c 6 -i 203 -a 6 h -t 377.26314406040996 -s 20 -d 22 -p SRM -e 20 -c 6 -i 203 -a 6 r -t 377.26314406040996 -s 21 -d 23 -p SRM -e 20 -c 6 -i 203 -a 6 + -t 377.26314406040996 -s 23 -d 25 -p SRM -e 20 -c 6 -i 203 -a 6 - -t 377.26314406040996 -s 23 -d 25 -p SRM -e 20 -c 6 -i 203 -a 6 h -t 377.26314406040996 -s 23 -d 25 -p SRM -e 20 -c 6 -i 203 -a 6 + -t 377.26314406040996 -s 23 -d 26 -p SRM -e 20 -c 6 -i 203 -a 6 - -t 377.26314406040996 -s 23 -d 26 -p SRM -e 20 -c 6 -i 203 -a 6 h -t 377.26314406040996 -s 23 -d 26 -p SRM -e 20 -c 6 -i 203 -a 6 r -t 377.26758188210999 -s 23 -d 21 -p SRM -e 20 -c 6 -i 204 -a 6 + -t 377.26758188210999 -s 21 -d 20 -p SRM -e 20 -c 6 -i 204 -a 6 - -t 377.26758188210999 -s 21 -d 20 -p SRM -e 20 -c 6 -i 204 -a 6 h -t 377.26758188210999 -s 21 -d 20 -p SRM -e 20 -c 6 -i 204 -a 6 + -t 377.26758188210999 -s 21 -d 24 -p SRM -e 20 -c 6 -i 204 -a 6 - -t 377.26758188210999 -s 21 -d 24 -p SRM -e 20 -c 6 -i 204 -a 6 h -t 377.26758188210999 -s 21 -d 24 -p SRM -e 20 -c 6 -i 204 -a 6 r -t 377.26758188210999 -s 23 -d 25 -p SRM -e 20 -c 6 -i 204 -a 6 r -t 377.26758188210999 -s 23 -d 26 -p SRM -e 20 -c 6 -i 204 -a 6 + -t 377.26758188210999 -s 26 -d 27 -p SRM -e 20 -c 6 -i 204 -a 6 - -t 377.26758188210999 -s 26 -d 27 -p SRM -e 20 -c 6 -i 204 -a 6 h -t 377.26758188210999 -s 26 -d 27 -p SRM -e 20 -c 6 -i 204 -a 6 + -t 377.26758188210999 -s 26 -d 28 -p SRM -e 20 -c 6 -i 204 -a 6 - -t 377.26758188210999 -s 26 -d 28 -p SRM -e 20 -c 6 -i 204 -a 6 h -t 377.26758188210999 -s 26 -d 28 -p SRM -e 20 -c 6 -i 204 -a 6 r -t 377.27330406040994 -s 20 -d 22 -p SRM -e 20 -c 6 -i 203 -a 6 r -t 377.27330406040994 -s 23 -d 25 -p SRM -e 20 -c 6 -i 203 -a 6 r -t 377.27330406040994 -s 23 -d 26 -p SRM -e 20 -c 6 -i 203 -a 6 + -t 377.27330406040994 -s 26 -d 27 -p SRM -e 20 -c 6 -i 203 -a 6 - -t 377.27330406040994 -s 26 -d 27 -p SRM -e 20 -c 6 -i 203 -a 6 h -t 377.27330406040994 -s 26 -d 27 -p SRM -e 20 -c 6 -i 203 -a 6 + -t 377.27330406040994 -s 26 -d 28 -p SRM -e 20 -c 6 -i 203 -a 6 - -t 377.27330406040994 -s 26 -d 28 -p SRM -e 20 -c 6 -i 203 -a 6 h -t 377.27330406040994 -s 26 -d 28 -p SRM -e 20 -c 6 -i 203 -a 6 r -t 377.27774188210998 -s 21 -d 20 -p SRM -e 20 -c 6 -i 204 -a 6 + -t 377.27774188210998 -s 20 -d 22 -p SRM -e 20 -c 6 -i 204 -a 6 - -t 377.27774188210998 -s 20 -d 22 -p SRM -e 20 -c 6 -i 204 -a 6 h -t 377.27774188210998 -s 20 -d 22 -p SRM -e 20 -c 6 -i 204 -a 6 r -t 377.27774188210998 -s 21 -d 24 -p SRM -e 20 -c 6 -i 204 -a 6 r -t 377.27774188210998 -s 26 -d 27 -p SRM -e 20 -c 6 -i 204 -a 6 r -t 377.27774188210998 -s 26 -d 28 -p SRM -e 20 -c 6 -i 204 -a 6 + -t 377.27774188210998 -s 27 -d 26 -p SRM -e 1300 -c 6 -i 205 -a 6 - -t 377.27774188210998 -s 27 -d 26 -p SRM -e 1300 -c 6 -i 205 -a 6 h -t 377.27774188210998 -s 27 -d 26 -p SRM -e 1300 -c 6 -i 205 -a 6 v -t 377.27774188210998 sim_annotation 377.27774188210998 28 377.27774188210998: node 27 sends repair for msg (6:25) m -t 377.27774188210998 -s 27 -n _o43:1537:p -c SeaGreen -h circle r -t 377.28346406040993 -s 26 -d 27 -p SRM -e 20 -c 6 -i 203 -a 6 r -t 377.28346406040993 -s 26 -d 28 -p SRM -e 20 -c 6 -i 203 -a 6 r -t 377.28790188210996 -s 20 -d 22 -p SRM -e 20 -c 6 -i 204 -a 6 r -t 377.29814188210997 -s 27 -d 26 -p SRM -e 1300 -c 6 -i 205 -a 6 + -t 377.29814188210997 -s 26 -d 23 -p SRM -e 1300 -c 6 -i 205 -a 6 - -t 377.29814188210997 -s 26 -d 23 -p SRM -e 1300 -c 6 -i 205 -a 6 h -t 377.29814188210997 -s 26 -d 23 -p SRM -e 1300 -c 6 -i 205 -a 6 + -t 377.29814188210997 -s 26 -d 28 -p SRM -e 1300 -c 6 -i 205 -a 6 - -t 377.29814188210997 -s 26 -d 28 -p SRM -e 1300 -c 6 -i 205 -a 6 h -t 377.29814188210997 -s 26 -d 28 -p SRM -e 1300 -c 6 -i 205 -a 6 r -t 377.31854188210997 -s 26 -d 23 -p SRM -e 1300 -c 6 -i 205 -a 6 + -t 377.31854188210997 -s 23 -d 21 -p SRM -e 1300 -c 6 -i 205 -a 6 - -t 377.31854188210997 -s 23 -d 21 -p SRM -e 1300 -c 6 -i 205 -a 6 h -t 377.31854188210997 -s 23 -d 21 -p SRM -e 1300 -c 6 -i 205 -a 6 + -t 377.31854188210997 -s 23 -d 25 -p SRM -e 1300 -c 6 -i 205 -a 6 - -t 377.31854188210997 -s 23 -d 25 -p SRM -e 1300 -c 6 -i 205 -a 6 h -t 377.31854188210997 -s 23 -d 25 -p SRM -e 1300 -c 6 -i 205 -a 6 r -t 377.31854188210997 -s 26 -d 28 -p SRM -e 1300 -c 6 -i 205 -a 6 m -t 377.31854188210997 -s 23 -n _o23:1537:q -c SeaGreen -h square -X r -t 377.33894188210996 -s 23 -d 21 -p SRM -e 1300 -c 6 -i 205 -a 6 + -t 377.33894188210996 -s 21 -d 20 -p SRM -e 1300 -c 6 -i 205 -a 6 - -t 377.33894188210996 -s 21 -d 20 -p SRM -e 1300 -c 6 -i 205 -a 6 h -t 377.33894188210996 -s 21 -d 20 -p SRM -e 1300 -c 6 -i 205 -a 6 + -t 377.33894188210996 -s 21 -d 24 -p SRM -e 1300 -c 6 -i 205 -a 6 - -t 377.33894188210996 -s 21 -d 24 -p SRM -e 1300 -c 6 -i 205 -a 6 h -t 377.33894188210996 -s 21 -d 24 -p SRM -e 1300 -c 6 -i 205 -a 6 r -t 377.33894188210996 -s 23 -d 25 -p SRM -e 1300 -c 6 -i 205 -a 6 r -t 377.35934188210996 -s 21 -d 20 -p SRM -e 1300 -c 6 -i 205 -a 6 + -t 377.35934188210996 -s 20 -d 22 -p SRM -e 1300 -c 6 -i 205 -a 6 - -t 377.35934188210996 -s 20 -d 22 -p SRM -e 1300 -c 6 -i 205 -a 6 h -t 377.35934188210996 -s 20 -d 22 -p SRM -e 1300 -c 6 -i 205 -a 6 r -t 377.35934188210996 -s 21 -d 24 -p SRM -e 1300 -c 6 -i 205 -a 6 m -t 377.35934188210996 -s 24 -n _o28:1537:q -c SeaGreen -h square -X r -t 377.37974188210995 -s 20 -d 22 -p SRM -e 1300 -c 6 -i 205 -a 6 + -t 377.44662434096 -s 24 -d 21 -p SRM -e 20 -c 8 -i 206 -a 8 - -t 377.44662434096 -s 24 -d 21 -p SRM -e 20 -c 8 -i 206 -a 8 h -t 377.44662434096 -s 24 -d 21 -p SRM -e 20 -c 8 -i 206 -a 8 v -t 377.44662434096 sim_annotation 377.44662434096 29 377.44662434096: node 24 sends request for msg (8:23) m -t 377.44662434096 -s 24 -n _o28:2049:q -c gold -h square r -t 377.45678434095998 -s 24 -d 21 -p SRM -e 20 -c 8 -i 206 -a 8 + -t 377.45678434095998 -s 21 -d 20 -p SRM -e 20 -c 8 -i 206 -a 8 - -t 377.45678434095998 -s 21 -d 20 -p SRM -e 20 -c 8 -i 206 -a 8 h -t 377.45678434095998 -s 21 -d 20 -p SRM -e 20 -c 8 -i 206 -a 8 + -t 377.45678434095998 -s 21 -d 23 -p SRM -e 20 -c 8 -i 206 -a 8 - -t 377.45678434095998 -s 21 -d 23 -p SRM -e 20 -c 8 -i 206 -a 8 h -t 377.45678434095998 -s 21 -d 23 -p SRM -e 20 -c 8 -i 206 -a 8 r -t 377.46694434095997 -s 21 -d 20 -p SRM -e 20 -c 8 -i 206 -a 8 + -t 377.46694434095997 -s 20 -d 22 -p SRM -e 20 -c 8 -i 206 -a 8 - -t 377.46694434095997 -s 20 -d 22 -p SRM -e 20 -c 8 -i 206 -a 8 h -t 377.46694434095997 -s 20 -d 22 -p SRM -e 20 -c 8 -i 206 -a 8 r -t 377.46694434095997 -s 21 -d 23 -p SRM -e 20 -c 8 -i 206 -a 8 + -t 377.46694434095997 -s 23 -d 25 -p SRM -e 20 -c 8 -i 206 -a 8 - -t 377.46694434095997 -s 23 -d 25 -p SRM -e 20 -c 8 -i 206 -a 8 h -t 377.46694434095997 -s 23 -d 25 -p SRM -e 20 -c 8 -i 206 -a 8 + -t 377.46694434095997 -s 23 -d 26 -p SRM -e 20 -c 8 -i 206 -a 8 - -t 377.46694434095997 -s 23 -d 26 -p SRM -e 20 -c 8 -i 206 -a 8 h -t 377.46694434095997 -s 23 -d 26 -p SRM -e 20 -c 8 -i 206 -a 8 r -t 377.47710434095995 -s 20 -d 22 -p SRM -e 20 -c 8 -i 206 -a 8 r -t 377.47710434095995 -s 23 -d 25 -p SRM -e 20 -c 8 -i 206 -a 8 r -t 377.47710434095995 -s 23 -d 26 -p SRM -e 20 -c 8 -i 206 -a 8 + -t 377.47710434095995 -s 26 -d 27 -p SRM -e 20 -c 8 -i 206 -a 8 - -t 377.47710434095995 -s 26 -d 27 -p SRM -e 20 -c 8 -i 206 -a 8 h -t 377.47710434095995 -s 26 -d 27 -p SRM -e 20 -c 8 -i 206 -a 8 + -t 377.47710434095995 -s 26 -d 28 -p SRM -e 20 -c 8 -i 206 -a 8 - -t 377.47710434095995 -s 26 -d 28 -p SRM -e 20 -c 8 -i 206 -a 8 h -t 377.47710434095995 -s 26 -d 28 -p SRM -e 20 -c 8 -i 206 -a 8 m -t 377.47874188211 -s 27 -n _o43:1537:p -c SeaGreen -h circle -X r -t 377.48726434095994 -s 26 -d 27 -p SRM -e 20 -c 8 -i 206 -a 8 r -t 377.48726434095994 -s 26 -d 28 -p SRM -e 20 -c 8 -i 206 -a 8 + -t 377.48726434095994 -s 27 -d 26 -p SRM -e 1300 -c 8 -i 207 -a 8 - -t 377.48726434095994 -s 27 -d 26 -p SRM -e 1300 -c 8 -i 207 -a 8 h -t 377.48726434095994 -s 27 -d 26 -p SRM -e 1300 -c 8 -i 207 -a 8 v -t 377.48726434095994 sim_annotation 377.48726434095994 30 377.48726434095994: node 27 sends repair for msg (8:23) m -t 377.48726434095994 -s 27 -n _o43:2049:p -c gold -h circle r -t 377.50766434095993 -s 27 -d 26 -p SRM -e 1300 -c 8 -i 207 -a 8 + -t 377.50766434095993 -s 26 -d 23 -p SRM -e 1300 -c 8 -i 207 -a 8 - -t 377.50766434095993 -s 26 -d 23 -p SRM -e 1300 -c 8 -i 207 -a 8 h -t 377.50766434095993 -s 26 -d 23 -p SRM -e 1300 -c 8 -i 207 -a 8 + -t 377.50766434095993 -s 26 -d 28 -p SRM -e 1300 -c 8 -i 207 -a 8 - -t 377.50766434095993 -s 26 -d 28 -p SRM -e 1300 -c 8 -i 207 -a 8 h -t 377.50766434095993 -s 26 -d 28 -p SRM -e 1300 -c 8 -i 207 -a 8 r -t 377.52806434095993 -s 26 -d 23 -p SRM -e 1300 -c 8 -i 207 -a 8 + -t 377.52806434095993 -s 23 -d 21 -p SRM -e 1300 -c 8 -i 207 -a 8 - -t 377.52806434095993 -s 23 -d 21 -p SRM -e 1300 -c 8 -i 207 -a 8 h -t 377.52806434095993 -s 23 -d 21 -p SRM -e 1300 -c 8 -i 207 -a 8 + -t 377.52806434095993 -s 23 -d 25 -p SRM -e 1300 -c 8 -i 207 -a 8 - -t 377.52806434095993 -s 23 -d 25 -p SRM -e 1300 -c 8 -i 207 -a 8 h -t 377.52806434095993 -s 23 -d 25 -p SRM -e 1300 -c 8 -i 207 -a 8 r -t 377.52806434095993 -s 26 -d 28 -p SRM -e 1300 -c 8 -i 207 -a 8 r -t 377.54846434095992 -s 23 -d 21 -p SRM -e 1300 -c 8 -i 207 -a 8 + -t 377.54846434095992 -s 21 -d 20 -p SRM -e 1300 -c 8 -i 207 -a 8 - -t 377.54846434095992 -s 21 -d 20 -p SRM -e 1300 -c 8 -i 207 -a 8 h -t 377.54846434095992 -s 21 -d 20 -p SRM -e 1300 -c 8 -i 207 -a 8 + -t 377.54846434095992 -s 21 -d 24 -p SRM -e 1300 -c 8 -i 207 -a 8 - -t 377.54846434095992 -s 21 -d 24 -p SRM -e 1300 -c 8 -i 207 -a 8 h -t 377.54846434095992 -s 21 -d 24 -p SRM -e 1300 -c 8 -i 207 -a 8 r -t 377.54846434095992 -s 23 -d 25 -p SRM -e 1300 -c 8 -i 207 -a 8 r -t 377.56886434095992 -s 21 -d 20 -p SRM -e 1300 -c 8 -i 207 -a 8 + -t 377.56886434095992 -s 20 -d 22 -p SRM -e 1300 -c 8 -i 207 -a 8 - -t 377.56886434095992 -s 20 -d 22 -p SRM -e 1300 -c 8 -i 207 -a 8 h -t 377.56886434095992 -s 20 -d 22 -p SRM -e 1300 -c 8 -i 207 -a 8 r -t 377.56886434095992 -s 21 -d 24 -p SRM -e 1300 -c 8 -i 207 -a 8 m -t 377.56886434095992 -s 24 -n _o28:2049:q -c gold -h square -X r -t 377.58926434095991 -s 20 -d 22 -p SRM -e 1300 -c 8 -i 207 -a 8 m -t 377.68826434096002 -s 27 -n _o43:2049:p -c gold -h circle -X + -t 377.91982762863 -s 15 -d 13 -p SRM -e 168 -c 42 -i 203 -a 42 - -t 377.91982762863 -s 15 -d 13 -p SRM -e 168 -c 42 -i 203 -a 42 h -t 377.91982762863 -s 15 -d 13 -p SRM -e 168 -c 42 -i 203 -a 42 r -t 377.93117162863001 -s 15 -d 13 -p SRM -e 168 -c 42 -i 203 -a 42 + -t 377.93117162863001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 203 -a 42 - -t 377.93117162863001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 203 -a 42 h -t 377.93117162863001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 203 -a 42 + -t 377.93117162863001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 203 -a 42 - -t 377.93117162863001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 203 -a 42 h -t 377.93117162863001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 203 -a 42 r -t 377.94251562863002 -s 13 -d 11 -p SRM -e 168 -c 42 -i 203 -a 42 + -t 377.94251562863002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 203 -a 42 - -t 377.94251562863002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 203 -a 42 h -t 377.94251562863002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 203 -a 42 + -t 377.94251562863002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 203 -a 42 - -t 377.94251562863002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 203 -a 42 h -t 377.94251562863002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 203 -a 42 r -t 377.94251562863002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 203 -a 42 + -t 377.94251562863002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 203 -a 42 - -t 377.94251562863002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 203 -a 42 h -t 377.94251562863002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 203 -a 42 + -t 377.94251562863002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 203 -a 42 - -t 377.94251562863002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 203 -a 42 h -t 377.94251562863002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 203 -a 42 r -t 377.95385962863003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 203 -a 42 + -t 377.95385962863003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 203 -a 42 - -t 377.95385962863003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 203 -a 42 h -t 377.95385962863003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 203 -a 42 r -t 377.95385962863003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 203 -a 42 r -t 377.95385962863003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 203 -a 42 r -t 377.95385962863003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 203 -a 42 r -t 377.96520362863004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 203 -a 42 + -t 379.08321752610999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 204 -a 42 - -t 379.08321752610999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 204 -a 42 h -t 379.08321752610999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 204 -a 42 + -t 379.08321752610999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 204 -a 42 - -t 379.08321752610999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 204 -a 42 h -t 379.08321752610999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 204 -a 42 + -t 379.08321752610999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 204 -a 42 - -t 379.08321752610999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 204 -a 42 h -t 379.08321752610999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 204 -a 42 r -t 379.09456152611 -s 16 -d 13 -p SRM -e 168 -c 42 -i 204 -a 42 + -t 379.09456152611 -s 13 -d 11 -p SRM -e 168 -c 42 -i 204 -a 42 - -t 379.09456152611 -s 13 -d 11 -p SRM -e 168 -c 42 -i 204 -a 42 h -t 379.09456152611 -s 13 -d 11 -p SRM -e 168 -c 42 -i 204 -a 42 + -t 379.09456152611 -s 13 -d 15 -p SRM -e 168 -c 42 -i 204 -a 42 - -t 379.09456152611 -s 13 -d 15 -p SRM -e 168 -c 42 -i 204 -a 42 h -t 379.09456152611 -s 13 -d 15 -p SRM -e 168 -c 42 -i 204 -a 42 r -t 379.09456152611 -s 16 -d 17 -p SRM -e 168 -c 42 -i 204 -a 42 r -t 379.09456152611 -s 16 -d 18 -p SRM -e 168 -c 42 -i 204 -a 42 r -t 379.10590552611001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 204 -a 42 + -t 379.10590552611001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 204 -a 42 - -t 379.10590552611001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 204 -a 42 h -t 379.10590552611001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 204 -a 42 + -t 379.10590552611001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 204 -a 42 - -t 379.10590552611001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 204 -a 42 h -t 379.10590552611001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 204 -a 42 r -t 379.10590552611001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 204 -a 42 r -t 379.11724952611002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 204 -a 42 + -t 379.11724952611002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 204 -a 42 - -t 379.11724952611002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 204 -a 42 h -t 379.11724952611002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 204 -a 42 r -t 379.11724952611002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 204 -a 42 r -t 379.12859352611002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 204 -a 42 + -t 379.54411182602001 -s 10 -d 11 -p SRM -e 168 -c 42 -i 205 -a 42 - -t 379.54411182602001 -s 10 -d 11 -p SRM -e 168 -c 42 -i 205 -a 42 h -t 379.54411182602001 -s 10 -d 11 -p SRM -e 168 -c 42 -i 205 -a 42 + -t 379.54411182602001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 205 -a 42 - -t 379.54411182602001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 205 -a 42 h -t 379.54411182602001 -s 10 -d 12 -p SRM -e 168 -c 42 -i 205 -a 42 r -t 379.55545582602002 -s 10 -d 11 -p SRM -e 168 -c 42 -i 205 -a 42 + -t 379.55545582602002 -s 11 -d 13 -p SRM -e 168 -c 42 -i 205 -a 42 - -t 379.55545582602002 -s 11 -d 13 -p SRM -e 168 -c 42 -i 205 -a 42 h -t 379.55545582602002 -s 11 -d 13 -p SRM -e 168 -c 42 -i 205 -a 42 + -t 379.55545582602002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 205 -a 42 - -t 379.55545582602002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 205 -a 42 h -t 379.55545582602002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 205 -a 42 r -t 379.55545582602002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 205 -a 42 r -t 379.56679982602003 -s 11 -d 13 -p SRM -e 168 -c 42 -i 205 -a 42 + -t 379.56679982602003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 205 -a 42 - -t 379.56679982602003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 205 -a 42 h -t 379.56679982602003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 205 -a 42 + -t 379.56679982602003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 205 -a 42 - -t 379.56679982602003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 205 -a 42 h -t 379.56679982602003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 205 -a 42 r -t 379.56679982602003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 205 -a 42 r -t 379.57814382602004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 205 -a 42 r -t 379.57814382602004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 205 -a 42 + -t 379.57814382602004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 205 -a 42 - -t 379.57814382602004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 205 -a 42 h -t 379.57814382602004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 205 -a 42 + -t 379.57814382602004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 205 -a 42 - -t 379.57814382602004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 205 -a 42 h -t 379.57814382602004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 205 -a 42 r -t 379.58948782602005 -s 16 -d 17 -p SRM -e 168 -c 42 -i 205 -a 42 r -t 379.58948782602005 -s 16 -d 18 -p SRM -e 168 -c 42 -i 205 -a 42 + -t 379.59138422717001 -s 13 -d 11 -p SRM -e 20 -c 1 -i 206 -a 1 - -t 379.59138422717001 -s 13 -d 11 -p SRM -e 20 -c 1 -i 206 -a 1 h -t 379.59138422717001 -s 13 -d 11 -p SRM -e 20 -c 1 -i 206 -a 1 + -t 379.59138422717001 -s 13 -d 15 -p SRM -e 20 -c 1 -i 206 -a 1 - -t 379.59138422717001 -s 13 -d 15 -p SRM -e 20 -c 1 -i 206 -a 1 h -t 379.59138422717001 -s 13 -d 15 -p SRM -e 20 -c 1 -i 206 -a 1 + -t 379.59138422717001 -s 13 -d 16 -p SRM -e 20 -c 1 -i 206 -a 1 - -t 379.59138422717001 -s 13 -d 16 -p SRM -e 20 -c 1 -i 206 -a 1 h -t 379.59138422717001 -s 13 -d 16 -p SRM -e 20 -c 1 -i 206 -a 1 v -t 379.59138422717001 sim_annotation 379.59138422717001 31 379.59138422717001: node 13 sends request for msg (1:13) m -t 379.59138422717001 -s 13 -n _o23:257:q -c orange -h square r -t 379.60154422717 -s 13 -d 11 -p SRM -e 20 -c 1 -i 206 -a 1 + -t 379.60154422717 -s 11 -d 10 -p SRM -e 20 -c 1 -i 206 -a 1 - -t 379.60154422717 -s 11 -d 10 -p SRM -e 20 -c 1 -i 206 -a 1 h -t 379.60154422717 -s 11 -d 10 -p SRM -e 20 -c 1 -i 206 -a 1 + -t 379.60154422717 -s 11 -d 14 -p SRM -e 20 -c 1 -i 206 -a 1 - -t 379.60154422717 -s 11 -d 14 -p SRM -e 20 -c 1 -i 206 -a 1 h -t 379.60154422717 -s 11 -d 14 -p SRM -e 20 -c 1 -i 206 -a 1 r -t 379.60154422717 -s 13 -d 15 -p SRM -e 20 -c 1 -i 206 -a 1 r -t 379.60154422717 -s 13 -d 16 -p SRM -e 20 -c 1 -i 206 -a 1 + -t 379.60154422717 -s 16 -d 17 -p SRM -e 20 -c 1 -i 206 -a 1 - -t 379.60154422717 -s 16 -d 17 -p SRM -e 20 -c 1 -i 206 -a 1 h -t 379.60154422717 -s 16 -d 17 -p SRM -e 20 -c 1 -i 206 -a 1 + -t 379.60154422717 -s 16 -d 18 -p SRM -e 20 -c 1 -i 206 -a 1 - -t 379.60154422717 -s 16 -d 18 -p SRM -e 20 -c 1 -i 206 -a 1 h -t 379.60154422717 -s 16 -d 18 -p SRM -e 20 -c 1 -i 206 -a 1 r -t 379.61170422716998 -s 11 -d 10 -p SRM -e 20 -c 1 -i 206 -a 1 + -t 379.61170422716998 -s 10 -d 12 -p SRM -e 20 -c 1 -i 206 -a 1 - -t 379.61170422716998 -s 10 -d 12 -p SRM -e 20 -c 1 -i 206 -a 1 h -t 379.61170422716998 -s 10 -d 12 -p SRM -e 20 -c 1 -i 206 -a 1 r -t 379.61170422716998 -s 11 -d 14 -p SRM -e 20 -c 1 -i 206 -a 1 r -t 379.61170422716998 -s 16 -d 17 -p SRM -e 20 -c 1 -i 206 -a 1 r -t 379.61170422716998 -s 16 -d 18 -p SRM -e 20 -c 1 -i 206 -a 1 r -t 379.62186422716997 -s 10 -d 12 -p SRM -e 20 -c 1 -i 206 -a 1 + -t 379.62840740796997 -s 11 -d 10 -p SRM -e 1300 -c 1 -i 207 -a 1 - -t 379.62840740796997 -s 11 -d 10 -p SRM -e 1300 -c 1 -i 207 -a 1 h -t 379.62840740796997 -s 11 -d 10 -p SRM -e 1300 -c 1 -i 207 -a 1 + -t 379.62840740796997 -s 11 -d 13 -p SRM -e 1300 -c 1 -i 207 -a 1 - -t 379.62840740796997 -s 11 -d 13 -p SRM -e 1300 -c 1 -i 207 -a 1 h -t 379.62840740796997 -s 11 -d 13 -p SRM -e 1300 -c 1 -i 207 -a 1 + -t 379.62840740796997 -s 11 -d 14 -p SRM -e 1300 -c 1 -i 207 -a 1 - -t 379.62840740796997 -s 11 -d 14 -p SRM -e 1300 -c 1 -i 207 -a 1 h -t 379.62840740796997 -s 11 -d 14 -p SRM -e 1300 -c 1 -i 207 -a 1 v -t 379.62840740796997 sim_annotation 379.62840740796997 32 379.62840740796997: node 11 sends repair for msg (1:13) m -t 379.62840740796997 -s 11 -n _o13:257:p -c orange -h circle r -t 379.64880740796997 -s 11 -d 10 -p SRM -e 1300 -c 1 -i 207 -a 1 + -t 379.64880740796997 -s 10 -d 12 -p SRM -e 1300 -c 1 -i 207 -a 1 - -t 379.64880740796997 -s 10 -d 12 -p SRM -e 1300 -c 1 -i 207 -a 1 h -t 379.64880740796997 -s 10 -d 12 -p SRM -e 1300 -c 1 -i 207 -a 1 r -t 379.64880740796997 -s 11 -d 13 -p SRM -e 1300 -c 1 -i 207 -a 1 + -t 379.64880740796997 -s 13 -d 15 -p SRM -e 1300 -c 1 -i 207 -a 1 - -t 379.64880740796997 -s 13 -d 15 -p SRM -e 1300 -c 1 -i 207 -a 1 h -t 379.64880740796997 -s 13 -d 15 -p SRM -e 1300 -c 1 -i 207 -a 1 + -t 379.64880740796997 -s 13 -d 16 -p SRM -e 1300 -c 1 -i 207 -a 1 - -t 379.64880740796997 -s 13 -d 16 -p SRM -e 1300 -c 1 -i 207 -a 1 h -t 379.64880740796997 -s 13 -d 16 -p SRM -e 1300 -c 1 -i 207 -a 1 r -t 379.64880740796997 -s 11 -d 14 -p SRM -e 1300 -c 1 -i 207 -a 1 m -t 379.64880740796997 -s 13 -n _o23:257:q -c orange -h square -X m -t 379.66440740796997 -s 11 -n _o13:257:p -c orange -h circle -X r -t 379.66920740796996 -s 10 -d 12 -p SRM -e 1300 -c 1 -i 207 -a 1 r -t 379.66920740796996 -s 13 -d 15 -p SRM -e 1300 -c 1 -i 207 -a 1 r -t 379.66920740796996 -s 13 -d 16 -p SRM -e 1300 -c 1 -i 207 -a 1 + -t 379.66920740796996 -s 16 -d 17 -p SRM -e 1300 -c 1 -i 207 -a 1 - -t 379.66920740796996 -s 16 -d 17 -p SRM -e 1300 -c 1 -i 207 -a 1 h -t 379.66920740796996 -s 16 -d 17 -p SRM -e 1300 -c 1 -i 207 -a 1 + -t 379.66920740796996 -s 16 -d 18 -p SRM -e 1300 -c 1 -i 207 -a 1 - -t 379.66920740796996 -s 16 -d 18 -p SRM -e 1300 -c 1 -i 207 -a 1 h -t 379.66920740796996 -s 16 -d 18 -p SRM -e 1300 -c 1 -i 207 -a 1 r -t 379.68960740796996 -s 16 -d 17 -p SRM -e 1300 -c 1 -i 207 -a 1 r -t 379.68960740796996 -s 16 -d 18 -p SRM -e 1300 -c 1 -i 207 -a 1 + -t 380.09002103543997 -s 11 -d 10 -p SRM -e 168 -c 42 -i 208 -a 42 - -t 380.09002103543997 -s 11 -d 10 -p SRM -e 168 -c 42 -i 208 -a 42 h -t 380.09002103543997 -s 11 -d 10 -p SRM -e 168 -c 42 -i 208 -a 42 + -t 380.09002103543997 -s 11 -d 13 -p SRM -e 168 -c 42 -i 208 -a 42 - -t 380.09002103543997 -s 11 -d 13 -p SRM -e 168 -c 42 -i 208 -a 42 h -t 380.09002103543997 -s 11 -d 13 -p SRM -e 168 -c 42 -i 208 -a 42 + -t 380.09002103543997 -s 11 -d 14 -p SRM -e 168 -c 42 -i 208 -a 42 - -t 380.09002103543997 -s 11 -d 14 -p SRM -e 168 -c 42 -i 208 -a 42 h -t 380.09002103543997 -s 11 -d 14 -p SRM -e 168 -c 42 -i 208 -a 42 r -t 380.10136503543998 -s 11 -d 10 -p SRM -e 168 -c 42 -i 208 -a 42 + -t 380.10136503543998 -s 10 -d 12 -p SRM -e 168 -c 42 -i 208 -a 42 - -t 380.10136503543998 -s 10 -d 12 -p SRM -e 168 -c 42 -i 208 -a 42 h -t 380.10136503543998 -s 10 -d 12 -p SRM -e 168 -c 42 -i 208 -a 42 r -t 380.10136503543998 -s 11 -d 13 -p SRM -e 168 -c 42 -i 208 -a 42 + -t 380.10136503543998 -s 13 -d 15 -p SRM -e 168 -c 42 -i 208 -a 42 - -t 380.10136503543998 -s 13 -d 15 -p SRM -e 168 -c 42 -i 208 -a 42 h -t 380.10136503543998 -s 13 -d 15 -p SRM -e 168 -c 42 -i 208 -a 42 + -t 380.10136503543998 -s 13 -d 16 -p SRM -e 168 -c 42 -i 208 -a 42 - -t 380.10136503543998 -s 13 -d 16 -p SRM -e 168 -c 42 -i 208 -a 42 h -t 380.10136503543998 -s 13 -d 16 -p SRM -e 168 -c 42 -i 208 -a 42 r -t 380.10136503543998 -s 11 -d 14 -p SRM -e 168 -c 42 -i 208 -a 42 r -t 380.11270903543999 -s 10 -d 12 -p SRM -e 168 -c 42 -i 208 -a 42 r -t 380.11270903543999 -s 13 -d 15 -p SRM -e 168 -c 42 -i 208 -a 42 r -t 380.11270903543999 -s 13 -d 16 -p SRM -e 168 -c 42 -i 208 -a 42 + -t 380.11270903543999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 208 -a 42 - -t 380.11270903543999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 208 -a 42 h -t 380.11270903543999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 208 -a 42 + -t 380.11270903543999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 208 -a 42 - -t 380.11270903543999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 208 -a 42 h -t 380.11270903543999 -s 16 -d 18 -p SRM -e 168 -c 42 -i 208 -a 42 r -t 380.12405303544 -s 16 -d 17 -p SRM -e 168 -c 42 -i 208 -a 42 r -t 380.12405303544 -s 16 -d 18 -p SRM -e 168 -c 42 -i 208 -a 42 + -t 380.21782610831002 -s 20 -d 21 -p SRM -e 168 -c 42 -i 208 -a 42 - -t 380.21782610831002 -s 20 -d 21 -p SRM -e 168 -c 42 -i 208 -a 42 h -t 380.21782610831002 -s 20 -d 21 -p SRM -e 168 -c 42 -i 208 -a 42 + -t 380.21782610831002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 208 -a 42 - -t 380.21782610831002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 208 -a 42 h -t 380.21782610831002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 208 -a 42 + -t 380.21888439064003 -s 26 -d 23 -p SRM -e 168 -c 42 -i 209 -a 42 - -t 380.21888439064003 -s 26 -d 23 -p SRM -e 168 -c 42 -i 209 -a 42 h -t 380.21888439064003 -s 26 -d 23 -p SRM -e 168 -c 42 -i 209 -a 42 + -t 380.21888439064003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 209 -a 42 - -t 380.21888439064003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 209 -a 42 h -t 380.21888439064003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 209 -a 42 + -t 380.21888439064003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 209 -a 42 - -t 380.21888439064003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 209 -a 42 h -t 380.21888439064003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 209 -a 42 r -t 380.22917010831003 -s 20 -d 21 -p SRM -e 168 -c 42 -i 208 -a 42 + -t 380.22917010831003 -s 21 -d 23 -p SRM -e 168 -c 42 -i 208 -a 42 - -t 380.22917010831003 -s 21 -d 23 -p SRM -e 168 -c 42 -i 208 -a 42 h -t 380.22917010831003 -s 21 -d 23 -p SRM -e 168 -c 42 -i 208 -a 42 + -t 380.22917010831003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 208 -a 42 - -t 380.22917010831003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 208 -a 42 h -t 380.22917010831003 -s 21 -d 24 -p SRM -e 168 -c 42 -i 208 -a 42 r -t 380.22917010831003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 208 -a 42 r -t 380.23022839064004 -s 26 -d 23 -p SRM -e 168 -c 42 -i 209 -a 42 + -t 380.23022839064004 -s 23 -d 21 -p SRM -e 168 -c 42 -i 209 -a 42 - -t 380.23022839064004 -s 23 -d 21 -p SRM -e 168 -c 42 -i 209 -a 42 h -t 380.23022839064004 -s 23 -d 21 -p SRM -e 168 -c 42 -i 209 -a 42 + -t 380.23022839064004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 209 -a 42 - -t 380.23022839064004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 209 -a 42 h -t 380.23022839064004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 209 -a 42 r -t 380.23022839064004 -s 26 -d 27 -p SRM -e 168 -c 42 -i 209 -a 42 r -t 380.23022839064004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 209 -a 42 r -t 380.24051410831004 -s 21 -d 23 -p SRM -e 168 -c 42 -i 208 -a 42 + -t 380.24051410831004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 208 -a 42 - -t 380.24051410831004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 208 -a 42 h -t 380.24051410831004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 208 -a 42 + -t 380.24051410831004 -s 23 -d 26 -p SRM -e 168 -c 42 -i 208 -a 42 - -t 380.24051410831004 -s 23 -d 26 -p SRM -e 168 -c 42 -i 208 -a 42 h -t 380.24051410831004 -s 23 -d 26 -p SRM -e 168 -c 42 -i 208 -a 42 r -t 380.24051410831004 -s 21 -d 24 -p SRM -e 168 -c 42 -i 208 -a 42 r -t 380.24157239064004 -s 23 -d 21 -p SRM -e 168 -c 42 -i 209 -a 42 + -t 380.24157239064004 -s 21 -d 20 -p SRM -e 168 -c 42 -i 209 -a 42 - -t 380.24157239064004 -s 21 -d 20 -p SRM -e 168 -c 42 -i 209 -a 42 h -t 380.24157239064004 -s 21 -d 20 -p SRM -e 168 -c 42 -i 209 -a 42 + -t 380.24157239064004 -s 21 -d 24 -p SRM -e 168 -c 42 -i 209 -a 42 - -t 380.24157239064004 -s 21 -d 24 -p SRM -e 168 -c 42 -i 209 -a 42 h -t 380.24157239064004 -s 21 -d 24 -p SRM -e 168 -c 42 -i 209 -a 42 r -t 380.24157239064004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 209 -a 42 r -t 380.25185810831005 -s 23 -d 25 -p SRM -e 168 -c 42 -i 208 -a 42 r -t 380.25185810831005 -s 23 -d 26 -p SRM -e 168 -c 42 -i 208 -a 42 + -t 380.25185810831005 -s 26 -d 27 -p SRM -e 168 -c 42 -i 208 -a 42 - -t 380.25185810831005 -s 26 -d 27 -p SRM -e 168 -c 42 -i 208 -a 42 h -t 380.25185810831005 -s 26 -d 27 -p SRM -e 168 -c 42 -i 208 -a 42 + -t 380.25185810831005 -s 26 -d 28 -p SRM -e 168 -c 42 -i 208 -a 42 - -t 380.25185810831005 -s 26 -d 28 -p SRM -e 168 -c 42 -i 208 -a 42 h -t 380.25185810831005 -s 26 -d 28 -p SRM -e 168 -c 42 -i 208 -a 42 r -t 380.25291639064005 -s 21 -d 20 -p SRM -e 168 -c 42 -i 209 -a 42 + -t 380.25291639064005 -s 20 -d 22 -p SRM -e 168 -c 42 -i 209 -a 42 - -t 380.25291639064005 -s 20 -d 22 -p SRM -e 168 -c 42 -i 209 -a 42 h -t 380.25291639064005 -s 20 -d 22 -p SRM -e 168 -c 42 -i 209 -a 42 r -t 380.25291639064005 -s 21 -d 24 -p SRM -e 168 -c 42 -i 209 -a 42 r -t 380.26320210831005 -s 26 -d 27 -p SRM -e 168 -c 42 -i 208 -a 42 r -t 380.26320210831005 -s 26 -d 28 -p SRM -e 168 -c 42 -i 208 -a 42 r -t 380.26426039064006 -s 20 -d 22 -p SRM -e 168 -c 42 -i 209 -a 42 + -t 380.33608135513731 -s 20 -d 21 -p cbr -e 1280 -c 0 -i 210 -a 0 - -t 380.33608135513731 -s 20 -d 21 -p cbr -e 1280 -c 0 -i 210 -a 0 h -t 380.33608135513731 -s 20 -d 21 -p cbr -e 1280 -c 0 -i 210 -a 0 + -t 380.33608135513731 -s 20 -d 22 -p cbr -e 1280 -c 0 -i 210 -a 0 - -t 380.33608135513731 -s 20 -d 22 -p cbr -e 1280 -c 0 -i 210 -a 0 h -t 380.33608135513731 -s 20 -d 22 -p cbr -e 1280 -c 0 -i 210 -a 0 r -t 380.35632135513731 -s 20 -d 21 -p cbr -e 1280 -c 0 -i 210 -a 0 + -t 380.35632135513731 -s 21 -d 23 -p cbr -e 1280 -c 0 -i 210 -a 0 - -t 380.35632135513731 -s 21 -d 23 -p cbr -e 1280 -c 0 -i 210 -a 0 h -t 380.35632135513731 -s 21 -d 23 -p cbr -e 1280 -c 0 -i 210 -a 0 + -t 380.35632135513731 -s 21 -d 24 -p cbr -e 1280 -c 0 -i 210 -a 0 - -t 380.35632135513731 -s 21 -d 24 -p cbr -e 1280 -c 0 -i 210 -a 0 h -t 380.35632135513731 -s 21 -d 24 -p cbr -e 1280 -c 0 -i 210 -a 0 r -t 380.35632135513731 -s 20 -d 22 -p cbr -e 1280 -c 0 -i 210 -a 0 r -t 380.37656135513731 -s 21 -d 23 -p cbr -e 1280 -c 0 -i 210 -a 0 + -t 380.37656135513731 -s 23 -d 25 -p cbr -e 1280 -c 0 -i 210 -a 0 - -t 380.37656135513731 -s 23 -d 25 -p cbr -e 1280 -c 0 -i 210 -a 0 h -t 380.37656135513731 -s 23 -d 25 -p cbr -e 1280 -c 0 -i 210 -a 0 + -t 380.37656135513731 -s 23 -d 26 -p cbr -e 1280 -c 0 -i 210 -a 0 - -t 380.37656135513731 -s 23 -d 26 -p cbr -e 1280 -c 0 -i 210 -a 0 h -t 380.37656135513731 -s 23 -d 26 -p cbr -e 1280 -c 0 -i 210 -a 0 r -t 380.37656135513731 -s 21 -d 24 -p cbr -e 1280 -c 0 -i 210 -a 0 r -t 380.39680135513731 -s 23 -d 25 -p cbr -e 1280 -c 0 -i 210 -a 0 r -t 380.39680135513731 -s 23 -d 26 -p cbr -e 1280 -c 0 -i 210 -a 0 + -t 380.39680135513731 -s 26 -d 27 -p cbr -e 1280 -c 0 -i 210 -a 0 - -t 380.39680135513731 -s 26 -d 27 -p cbr -e 1280 -c 0 -i 210 -a 0 h -t 380.39680135513731 -s 26 -d 27 -p cbr -e 1280 -c 0 -i 210 -a 0 + -t 380.39680135513731 -s 26 -d 28 -p cbr -e 1280 -c 0 -i 210 -a 0 - -t 380.39680135513731 -s 26 -d 28 -p cbr -e 1280 -c 0 -i 210 -a 0 h -t 380.39680135513731 -s 26 -d 28 -p cbr -e 1280 -c 0 -i 210 -a 0 + -t 380.40529508604999 -s 12 -d 10 -p SRM -e 168 -c 42 -i 209 -a 42 - -t 380.40529508604999 -s 12 -d 10 -p SRM -e 168 -c 42 -i 209 -a 42 h -t 380.40529508604999 -s 12 -d 10 -p SRM -e 168 -c 42 -i 209 -a 42 r -t 380.41663908605 -s 12 -d 10 -p SRM -e 168 -c 42 -i 209 -a 42 + -t 380.41663908605 -s 10 -d 11 -p SRM -e 168 -c 42 -i 209 -a 42 - -t 380.41663908605 -s 10 -d 11 -p SRM -e 168 -c 42 -i 209 -a 42 h -t 380.41663908605 -s 10 -d 11 -p SRM -e 168 -c 42 -i 209 -a 42 r -t 380.41704135513731 -s 26 -d 27 -p cbr -e 1280 -c 0 -i 210 -a 0 r -t 380.41704135513731 -s 26 -d 28 -p cbr -e 1280 -c 0 -i 210 -a 0 r -t 380.42798308605001 -s 10 -d 11 -p SRM -e 168 -c 42 -i 209 -a 42 + -t 380.42798308605001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 209 -a 42 - -t 380.42798308605001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 209 -a 42 h -t 380.42798308605001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 209 -a 42 + -t 380.42798308605001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 209 -a 42 - -t 380.42798308605001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 209 -a 42 h -t 380.42798308605001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 209 -a 42 r -t 380.43932708605001 -s 11 -d 13 -p SRM -e 168 -c 42 -i 209 -a 42 + -t 380.43932708605001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 209 -a 42 - -t 380.43932708605001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 209 -a 42 h -t 380.43932708605001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 209 -a 42 + -t 380.43932708605001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 209 -a 42 - -t 380.43932708605001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 209 -a 42 h -t 380.43932708605001 -s 13 -d 16 -p SRM -e 168 -c 42 -i 209 -a 42 r -t 380.43932708605001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 209 -a 42 r -t 380.45067108605002 -s 13 -d 15 -p SRM -e 168 -c 42 -i 209 -a 42 r -t 380.45067108605002 -s 13 -d 16 -p SRM -e 168 -c 42 -i 209 -a 42 + -t 380.45067108605002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 209 -a 42 - -t 380.45067108605002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 209 -a 42 h -t 380.45067108605002 -s 16 -d 17 -p SRM -e 168 -c 42 -i 209 -a 42 + -t 380.45067108605002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 209 -a 42 - -t 380.45067108605002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 209 -a 42 h -t 380.45067108605002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 209 -a 42 r -t 380.46201508605003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 209 -a 42 r -t 380.46201508605003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 209 -a 42 + -t 380.77204879852002 -s 14 -d 11 -p SRM -e 168 -c 42 -i 210 -a 42 - -t 380.77204879852002 -s 14 -d 11 -p SRM -e 168 -c 42 -i 210 -a 42 h -t 380.77204879852002 -s 14 -d 11 -p SRM -e 168 -c 42 -i 210 -a 42 r -t 380.78339279852003 -s 14 -d 11 -p SRM -e 168 -c 42 -i 210 -a 42 + -t 380.78339279852003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 210 -a 42 - -t 380.78339279852003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 210 -a 42 h -t 380.78339279852003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 210 -a 42 + -t 380.78339279852003 -s 11 -d 13 -p SRM -e 168 -c 42 -i 210 -a 42 - -t 380.78339279852003 -s 11 -d 13 -p SRM -e 168 -c 42 -i 210 -a 42 h -t 380.78339279852003 -s 11 -d 13 -p SRM -e 168 -c 42 -i 210 -a 42 r -t 380.79473679852003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 210 -a 42 + -t 380.79473679852003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 210 -a 42 - -t 380.79473679852003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 210 -a 42 h -t 380.79473679852003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 210 -a 42 r -t 380.79473679852003 -s 11 -d 13 -p SRM -e 168 -c 42 -i 210 -a 42 + -t 380.79473679852003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 210 -a 42 - -t 380.79473679852003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 210 -a 42 h -t 380.79473679852003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 210 -a 42 + -t 380.79473679852003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 210 -a 42 - -t 380.79473679852003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 210 -a 42 h -t 380.79473679852003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 210 -a 42 r -t 380.80608079852004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 210 -a 42 r -t 380.80608079852004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 210 -a 42 r -t 380.80608079852004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 210 -a 42 + -t 380.80608079852004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 210 -a 42 - -t 380.80608079852004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 210 -a 42 h -t 380.80608079852004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 210 -a 42 + -t 380.80608079852004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 210 -a 42 - -t 380.80608079852004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 210 -a 42 h -t 380.80608079852004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 210 -a 42 r -t 380.81742479852005 -s 16 -d 17 -p SRM -e 168 -c 42 -i 210 -a 42 r -t 380.81742479852005 -s 16 -d 18 -p SRM -e 168 -c 42 -i 210 -a 42 + -t 381.77881586172055 -s 12 -d 10 -p cbr -e 1280 -c 2 -i 211 -a 2 - -t 381.77881586172055 -s 12 -d 10 -p cbr -e 1280 -c 2 -i 211 -a 2 h -t 381.77881586172055 -s 12 -d 10 -p cbr -e 1280 -c 2 -i 211 -a 2 r -t 381.79905586172055 -s 12 -d 10 -p cbr -e 1280 -c 2 -i 211 -a 2 + -t 381.79905586172055 -s 10 -d 11 -p cbr -e 1280 -c 2 -i 211 -a 2 - -t 381.79905586172055 -s 10 -d 11 -p cbr -e 1280 -c 2 -i 211 -a 2 h -t 381.79905586172055 -s 10 -d 11 -p cbr -e 1280 -c 2 -i 211 -a 2 r -t 381.81929586172055 -s 10 -d 11 -p cbr -e 1280 -c 2 -i 211 -a 2 + -t 381.81929586172055 -s 11 -d 13 -p cbr -e 1280 -c 2 -i 211 -a 2 - -t 381.81929586172055 -s 11 -d 13 -p cbr -e 1280 -c 2 -i 211 -a 2 h -t 381.81929586172055 -s 11 -d 13 -p cbr -e 1280 -c 2 -i 211 -a 2 + -t 381.81929586172055 -s 11 -d 14 -p cbr -e 1280 -c 2 -i 211 -a 2 - -t 381.81929586172055 -s 11 -d 14 -p cbr -e 1280 -c 2 -i 211 -a 2 h -t 381.81929586172055 -s 11 -d 14 -p cbr -e 1280 -c 2 -i 211 -a 2 r -t 381.83953586172055 -s 11 -d 13 -p cbr -e 1280 -c 2 -i 211 -a 2 + -t 381.83953586172055 -s 13 -d 15 -p cbr -e 1280 -c 2 -i 211 -a 2 - -t 381.83953586172055 -s 13 -d 15 -p cbr -e 1280 -c 2 -i 211 -a 2 h -t 381.83953586172055 -s 13 -d 15 -p cbr -e 1280 -c 2 -i 211 -a 2 + -t 381.83953586172055 -s 13 -d 16 -p cbr -e 1280 -c 2 -i 211 -a 2 - -t 381.83953586172055 -s 13 -d 16 -p cbr -e 1280 -c 2 -i 211 -a 2 h -t 381.83953586172055 -s 13 -d 16 -p cbr -e 1280 -c 2 -i 211 -a 2 r -t 381.83953586172055 -s 11 -d 14 -p cbr -e 1280 -c 2 -i 211 -a 2 r -t 381.85977586172055 -s 13 -d 15 -p cbr -e 1280 -c 2 -i 211 -a 2 r -t 381.85977586172055 -s 13 -d 16 -p cbr -e 1280 -c 2 -i 211 -a 2 + -t 381.85977586172055 -s 16 -d 17 -p cbr -e 1280 -c 2 -i 211 -a 2 - -t 381.85977586172055 -s 16 -d 17 -p cbr -e 1280 -c 2 -i 211 -a 2 h -t 381.85977586172055 -s 16 -d 17 -p cbr -e 1280 -c 2 -i 211 -a 2 + -t 381.85977586172055 -s 16 -d 18 -p cbr -e 1280 -c 2 -i 211 -a 2 - -t 381.85977586172055 -s 16 -d 18 -p cbr -e 1280 -c 2 -i 211 -a 2 h -t 381.85977586172055 -s 16 -d 18 -p cbr -e 1280 -c 2 -i 211 -a 2 r -t 381.88001586172055 -s 16 -d 17 -p cbr -e 1280 -c 2 -i 211 -a 2 r -t 381.88001586172055 -s 16 -d 18 -p cbr -e 1280 -c 2 -i 211 -a 2 + -t 383.14568265000003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 212 -a 42 - -t 383.14568265000003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 212 -a 42 h -t 383.14568265000003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 212 -a 42 + -t 383.14568265000003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 212 -a 42 - -t 383.14568265000003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 212 -a 42 h -t 383.14568265000003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 212 -a 42 + -t 383.14568265000003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 212 -a 42 - -t 383.14568265000003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 212 -a 42 h -t 383.14568265000003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 212 -a 42 r -t 383.15702665000003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 212 -a 42 + -t 383.15702665000003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 212 -a 42 - -t 383.15702665000003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 212 -a 42 h -t 383.15702665000003 -s 11 -d 10 -p SRM -e 168 -c 42 -i 212 -a 42 + -t 383.15702665000003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 212 -a 42 - -t 383.15702665000003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 212 -a 42 h -t 383.15702665000003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 212 -a 42 r -t 383.15702665000003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 212 -a 42 r -t 383.15702665000003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 212 -a 42 + -t 383.15702665000003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 212 -a 42 - -t 383.15702665000003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 212 -a 42 h -t 383.15702665000003 -s 16 -d 17 -p SRM -e 168 -c 42 -i 212 -a 42 + -t 383.15702665000003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 212 -a 42 - -t 383.15702665000003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 212 -a 42 h -t 383.15702665000003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 212 -a 42 r -t 383.16837065000004 -s 11 -d 10 -p SRM -e 168 -c 42 -i 212 -a 42 + -t 383.16837065000004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 212 -a 42 - -t 383.16837065000004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 212 -a 42 h -t 383.16837065000004 -s 10 -d 12 -p SRM -e 168 -c 42 -i 212 -a 42 r -t 383.16837065000004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 212 -a 42 r -t 383.16837065000004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 212 -a 42 r -t 383.16837065000004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 212 -a 42 r -t 383.17971465000005 -s 10 -d 12 -p SRM -e 168 -c 42 -i 212 -a 42 + -t 383.76724131278002 -s 17 -d 16 -p SRM -e 168 -c 42 -i 213 -a 42 - -t 383.76724131278002 -s 17 -d 16 -p SRM -e 168 -c 42 -i 213 -a 42 h -t 383.76724131278002 -s 17 -d 16 -p SRM -e 168 -c 42 -i 213 -a 42 r -t 383.77858531278002 -s 17 -d 16 -p SRM -e 168 -c 42 -i 213 -a 42 + -t 383.77858531278002 -s 16 -d 13 -p SRM -e 168 -c 42 -i 213 -a 42 - -t 383.77858531278002 -s 16 -d 13 -p SRM -e 168 -c 42 -i 213 -a 42 h -t 383.77858531278002 -s 16 -d 13 -p SRM -e 168 -c 42 -i 213 -a 42 + -t 383.77858531278002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 213 -a 42 - -t 383.77858531278002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 213 -a 42 h -t 383.77858531278002 -s 16 -d 18 -p SRM -e 168 -c 42 -i 213 -a 42 r -t 383.78992931278003 -s 16 -d 13 -p SRM -e 168 -c 42 -i 213 -a 42 + -t 383.78992931278003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 213 -a 42 - -t 383.78992931278003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 213 -a 42 h -t 383.78992931278003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 213 -a 42 + -t 383.78992931278003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 213 -a 42 - -t 383.78992931278003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 213 -a 42 h -t 383.78992931278003 -s 13 -d 15 -p SRM -e 168 -c 42 -i 213 -a 42 r -t 383.78992931278003 -s 16 -d 18 -p SRM -e 168 -c 42 -i 213 -a 42 r -t 383.80127331278004 -s 13 -d 11 -p SRM -e 168 -c 42 -i 213 -a 42 + -t 383.80127331278004 -s 11 -d 10 -p SRM -e 168 -c 42 -i 213 -a 42 - -t 383.80127331278004 -s 11 -d 10 -p SRM -e 168 -c 42 -i 213 -a 42 h -t 383.80127331278004 -s 11 -d 10 -p SRM -e 168 -c 42 -i 213 -a 42 + -t 383.80127331278004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 213 -a 42 - -t 383.80127331278004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 213 -a 42 h -t 383.80127331278004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 213 -a 42 r -t 383.80127331278004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 213 -a 42 r -t 383.81261731278005 -s 11 -d 10 -p SRM -e 168 -c 42 -i 213 -a 42 + -t 383.81261731278005 -s 10 -d 12 -p SRM -e 168 -c 42 -i 213 -a 42 - -t 383.81261731278005 -s 10 -d 12 -p SRM -e 168 -c 42 -i 213 -a 42 h -t 383.81261731278005 -s 10 -d 12 -p SRM -e 168 -c 42 -i 213 -a 42 r -t 383.81261731278005 -s 11 -d 14 -p SRM -e 168 -c 42 -i 213 -a 42 r -t 383.82396131278006 -s 10 -d 12 -p SRM -e 168 -c 42 -i 213 -a 42 + -t 384.69809434666001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 211 -a 42 - -t 384.69809434666001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 211 -a 42 h -t 384.69809434666001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 211 -a 42 + -t 384.69809434666001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 211 -a 42 - -t 384.69809434666001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 211 -a 42 h -t 384.69809434666001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 211 -a 42 + -t 384.69809434666001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 211 -a 42 - -t 384.69809434666001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 211 -a 42 h -t 384.69809434666001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 211 -a 42 r -t 384.70943834666002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 211 -a 42 + -t 384.70943834666002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 211 -a 42 - -t 384.70943834666002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 211 -a 42 h -t 384.70943834666002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 211 -a 42 r -t 384.70943834666002 -s 21 -d 23 -p SRM -e 168 -c 42 -i 211 -a 42 + -t 384.70943834666002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 211 -a 42 - -t 384.70943834666002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 211 -a 42 h -t 384.70943834666002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 211 -a 42 + -t 384.70943834666002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 211 -a 42 - -t 384.70943834666002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 211 -a 42 h -t 384.70943834666002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 211 -a 42 r -t 384.70943834666002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 211 -a 42 r -t 384.72078234666003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 211 -a 42 r -t 384.72078234666003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 211 -a 42 r -t 384.72078234666003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 211 -a 42 + -t 384.72078234666003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 211 -a 42 - -t 384.72078234666003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 211 -a 42 h -t 384.72078234666003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 211 -a 42 + -t 384.72078234666003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 211 -a 42 - -t 384.72078234666003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 211 -a 42 h -t 384.72078234666003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 211 -a 42 r -t 384.73212634666004 -s 26 -d 27 -p SRM -e 168 -c 42 -i 211 -a 42 r -t 384.73212634666004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 211 -a 42 + -t 384.87337432726002 -s 22 -d 20 -p SRM -e 168 -c 42 -i 212 -a 42 - -t 384.87337432726002 -s 22 -d 20 -p SRM -e 168 -c 42 -i 212 -a 42 h -t 384.87337432726002 -s 22 -d 20 -p SRM -e 168 -c 42 -i 212 -a 42 r -t 384.88471832726003 -s 22 -d 20 -p SRM -e 168 -c 42 -i 212 -a 42 + -t 384.88471832726003 -s 20 -d 21 -p SRM -e 168 -c 42 -i 212 -a 42 - -t 384.88471832726003 -s 20 -d 21 -p SRM -e 168 -c 42 -i 212 -a 42 h -t 384.88471832726003 -s 20 -d 21 -p SRM -e 168 -c 42 -i 212 -a 42 r -t 384.89606232726004 -s 20 -d 21 -p SRM -e 168 -c 42 -i 212 -a 42 + -t 384.89606232726004 -s 21 -d 23 -p SRM -e 168 -c 42 -i 212 -a 42 - -t 384.89606232726004 -s 21 -d 23 -p SRM -e 168 -c 42 -i 212 -a 42 h -t 384.89606232726004 -s 21 -d 23 -p SRM -e 168 -c 42 -i 212 -a 42 + -t 384.89606232726004 -s 21 -d 24 -p SRM -e 168 -c 42 -i 212 -a 42 - -t 384.89606232726004 -s 21 -d 24 -p SRM -e 168 -c 42 -i 212 -a 42 h -t 384.89606232726004 -s 21 -d 24 -p SRM -e 168 -c 42 -i 212 -a 42 r -t 384.90740632726005 -s 21 -d 23 -p SRM -e 168 -c 42 -i 212 -a 42 + -t 384.90740632726005 -s 23 -d 25 -p SRM -e 168 -c 42 -i 212 -a 42 - -t 384.90740632726005 -s 23 -d 25 -p SRM -e 168 -c 42 -i 212 -a 42 h -t 384.90740632726005 -s 23 -d 25 -p SRM -e 168 -c 42 -i 212 -a 42 + -t 384.90740632726005 -s 23 -d 26 -p SRM -e 168 -c 42 -i 212 -a 42 - -t 384.90740632726005 -s 23 -d 26 -p SRM -e 168 -c 42 -i 212 -a 42 h -t 384.90740632726005 -s 23 -d 26 -p SRM -e 168 -c 42 -i 212 -a 42 r -t 384.90740632726005 -s 21 -d 24 -p SRM -e 168 -c 42 -i 212 -a 42 r -t 384.91875032726006 -s 23 -d 25 -p SRM -e 168 -c 42 -i 212 -a 42 r -t 384.91875032726006 -s 23 -d 26 -p SRM -e 168 -c 42 -i 212 -a 42 + -t 384.91875032726006 -s 26 -d 27 -p SRM -e 168 -c 42 -i 212 -a 42 - -t 384.91875032726006 -s 26 -d 27 -p SRM -e 168 -c 42 -i 212 -a 42 h -t 384.91875032726006 -s 26 -d 27 -p SRM -e 168 -c 42 -i 212 -a 42 + -t 384.91875032726006 -s 26 -d 28 -p SRM -e 168 -c 42 -i 212 -a 42 - -t 384.91875032726006 -s 26 -d 28 -p SRM -e 168 -c 42 -i 212 -a 42 h -t 384.91875032726006 -s 26 -d 28 -p SRM -e 168 -c 42 -i 212 -a 42 r -t 384.93009432726006 -s 26 -d 27 -p SRM -e 168 -c 42 -i 212 -a 42 r -t 384.93009432726006 -s 26 -d 28 -p SRM -e 168 -c 42 -i 212 -a 42 + -t 386.51651003198737 -s 20 -d 21 -p cbr -e 1280 -c 0 -i 213 -a 0 - -t 386.51651003198737 -s 20 -d 21 -p cbr -e 1280 -c 0 -i 213 -a 0 h -t 386.51651003198737 -s 20 -d 21 -p cbr -e 1280 -c 0 -i 213 -a 0 + -t 386.51651003198737 -s 20 -d 22 -p cbr -e 1280 -c 0 -i 213 -a 0 - -t 386.51651003198737 -s 20 -d 22 -p cbr -e 1280 -c 0 -i 213 -a 0 h -t 386.51651003198737 -s 20 -d 22 -p cbr -e 1280 -c 0 -i 213 -a 0 r -t 386.53675003198737 -s 20 -d 21 -p cbr -e 1280 -c 0 -i 213 -a 0 + -t 386.53675003198737 -s 21 -d 23 -p cbr -e 1280 -c 0 -i 213 -a 0 - -t 386.53675003198737 -s 21 -d 23 -p cbr -e 1280 -c 0 -i 213 -a 0 h -t 386.53675003198737 -s 21 -d 23 -p cbr -e 1280 -c 0 -i 213 -a 0 + -t 386.53675003198737 -s 21 -d 24 -p cbr -e 1280 -c 0 -i 213 -a 0 - -t 386.53675003198737 -s 21 -d 24 -p cbr -e 1280 -c 0 -i 213 -a 0 h -t 386.53675003198737 -s 21 -d 24 -p cbr -e 1280 -c 0 -i 213 -a 0 r -t 386.53675003198737 -s 20 -d 22 -p cbr -e 1280 -c 0 -i 213 -a 0 r -t 386.55699003198737 -s 21 -d 23 -p cbr -e 1280 -c 0 -i 213 -a 0 + -t 386.55699003198737 -s 23 -d 25 -p cbr -e 1280 -c 0 -i 213 -a 0 - -t 386.55699003198737 -s 23 -d 25 -p cbr -e 1280 -c 0 -i 213 -a 0 h -t 386.55699003198737 -s 23 -d 25 -p cbr -e 1280 -c 0 -i 213 -a 0 + -t 386.55699003198737 -s 23 -d 26 -p cbr -e 1280 -c 0 -i 213 -a 0 - -t 386.55699003198737 -s 23 -d 26 -p cbr -e 1280 -c 0 -i 213 -a 0 h -t 386.55699003198737 -s 23 -d 26 -p cbr -e 1280 -c 0 -i 213 -a 0 r -t 386.55699003198737 -s 21 -d 24 -p cbr -e 1280 -c 0 -i 213 -a 0 r -t 386.57723003198737 -s 23 -d 25 -p cbr -e 1280 -c 0 -i 213 -a 0 r -t 386.57723003198737 -s 23 -d 26 -p cbr -e 1280 -c 0 -i 213 -a 0 + -t 386.57723003198737 -s 26 -d 27 -p cbr -e 1280 -c 0 -i 213 -a 0 - -t 386.57723003198737 -s 26 -d 27 -p cbr -e 1280 -c 0 -i 213 -a 0 h -t 386.57723003198737 -s 26 -d 27 -p cbr -e 1280 -c 0 -i 213 -a 0 + -t 386.57723003198737 -s 26 -d 28 -p cbr -e 1280 -c 0 -i 213 -a 0 - -t 386.57723003198737 -s 26 -d 28 -p cbr -e 1280 -c 0 -i 213 -a 0 h -t 386.57723003198737 -s 26 -d 28 -p cbr -e 1280 -c 0 -i 213 -a 0 r -t 386.59747003198737 -s 26 -d 27 -p cbr -e 1280 -c 0 -i 213 -a 0 r -t 386.59747003198737 -s 26 -d 28 -p cbr -e 1280 -c 0 -i 213 -a 0 + -t 387.05117128442998 -s 23 -d 21 -p SRM -e 168 -c 42 -i 214 -a 42 - -t 387.05117128442998 -s 23 -d 21 -p SRM -e 168 -c 42 -i 214 -a 42 h -t 387.05117128442998 -s 23 -d 21 -p SRM -e 168 -c 42 -i 214 -a 42 + -t 387.05117128442998 -s 23 -d 25 -p SRM -e 168 -c 42 -i 214 -a 42 - -t 387.05117128442998 -s 23 -d 25 -p SRM -e 168 -c 42 -i 214 -a 42 h -t 387.05117128442998 -s 23 -d 25 -p SRM -e 168 -c 42 -i 214 -a 42 + -t 387.05117128442998 -s 23 -d 26 -p SRM -e 168 -c 42 -i 214 -a 42 - -t 387.05117128442998 -s 23 -d 26 -p SRM -e 168 -c 42 -i 214 -a 42 h -t 387.05117128442998 -s 23 -d 26 -p SRM -e 168 -c 42 -i 214 -a 42 r -t 387.06251528442999 -s 23 -d 21 -p SRM -e 168 -c 42 -i 214 -a 42 + -t 387.06251528442999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 214 -a 42 - -t 387.06251528442999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 214 -a 42 h -t 387.06251528442999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 214 -a 42 + -t 387.06251528442999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 214 -a 42 - -t 387.06251528442999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 214 -a 42 h -t 387.06251528442999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 214 -a 42 r -t 387.06251528442999 -s 23 -d 25 -p SRM -e 168 -c 42 -i 214 -a 42 r -t 387.06251528442999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 214 -a 42 + -t 387.06251528442999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 214 -a 42 - -t 387.06251528442999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 214 -a 42 h -t 387.06251528442999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 214 -a 42 + -t 387.06251528442999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 214 -a 42 - -t 387.06251528442999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 214 -a 42 h -t 387.06251528442999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 214 -a 42 r -t 387.07385928443 -s 21 -d 20 -p SRM -e 168 -c 42 -i 214 -a 42 + -t 387.07385928443 -s 20 -d 22 -p SRM -e 168 -c 42 -i 214 -a 42 - -t 387.07385928443 -s 20 -d 22 -p SRM -e 168 -c 42 -i 214 -a 42 h -t 387.07385928443 -s 20 -d 22 -p SRM -e 168 -c 42 -i 214 -a 42 r -t 387.07385928443 -s 21 -d 24 -p SRM -e 168 -c 42 -i 214 -a 42 r -t 387.07385928443 -s 26 -d 27 -p SRM -e 168 -c 42 -i 214 -a 42 r -t 387.07385928443 -s 26 -d 28 -p SRM -e 168 -c 42 -i 214 -a 42 r -t 387.08520328443001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 214 -a 42 + -t 389.04553088290999 -s 18 -d 16 -p SRM -e 168 -c 42 -i 214 -a 42 - -t 389.04553088290999 -s 18 -d 16 -p SRM -e 168 -c 42 -i 214 -a 42 h -t 389.04553088290999 -s 18 -d 16 -p SRM -e 168 -c 42 -i 214 -a 42 r -t 389.05687488290999 -s 18 -d 16 -p SRM -e 168 -c 42 -i 214 -a 42 + -t 389.05687488290999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 214 -a 42 - -t 389.05687488290999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 214 -a 42 h -t 389.05687488290999 -s 16 -d 13 -p SRM -e 168 -c 42 -i 214 -a 42 + -t 389.05687488290999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 214 -a 42 - -t 389.05687488290999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 214 -a 42 h -t 389.05687488290999 -s 16 -d 17 -p SRM -e 168 -c 42 -i 214 -a 42 r -t 389.06821888291 -s 16 -d 13 -p SRM -e 168 -c 42 -i 214 -a 42 + -t 389.06821888291 -s 13 -d 11 -p SRM -e 168 -c 42 -i 214 -a 42 - -t 389.06821888291 -s 13 -d 11 -p SRM -e 168 -c 42 -i 214 -a 42 h -t 389.06821888291 -s 13 -d 11 -p SRM -e 168 -c 42 -i 214 -a 42 + -t 389.06821888291 -s 13 -d 15 -p SRM -e 168 -c 42 -i 214 -a 42 - -t 389.06821888291 -s 13 -d 15 -p SRM -e 168 -c 42 -i 214 -a 42 h -t 389.06821888291 -s 13 -d 15 -p SRM -e 168 -c 42 -i 214 -a 42 r -t 389.06821888291 -s 16 -d 17 -p SRM -e 168 -c 42 -i 214 -a 42 r -t 389.07956288291001 -s 13 -d 11 -p SRM -e 168 -c 42 -i 214 -a 42 + -t 389.07956288291001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 214 -a 42 - -t 389.07956288291001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 214 -a 42 h -t 389.07956288291001 -s 11 -d 10 -p SRM -e 168 -c 42 -i 214 -a 42 + -t 389.07956288291001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 214 -a 42 - -t 389.07956288291001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 214 -a 42 h -t 389.07956288291001 -s 11 -d 14 -p SRM -e 168 -c 42 -i 214 -a 42 r -t 389.07956288291001 -s 13 -d 15 -p SRM -e 168 -c 42 -i 214 -a 42 r -t 389.09090688291002 -s 11 -d 10 -p SRM -e 168 -c 42 -i 214 -a 42 + -t 389.09090688291002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 214 -a 42 - -t 389.09090688291002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 214 -a 42 h -t 389.09090688291002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 214 -a 42 r -t 389.09090688291002 -s 11 -d 14 -p SRM -e 168 -c 42 -i 214 -a 42 r -t 389.10225088291003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 214 -a 42 + -t 389.94779868491997 -s 25 -d 23 -p SRM -e 168 -c 42 -i 215 -a 42 - -t 389.94779868491997 -s 25 -d 23 -p SRM -e 168 -c 42 -i 215 -a 42 h -t 389.94779868491997 -s 25 -d 23 -p SRM -e 168 -c 42 -i 215 -a 42 r -t 389.95914268491998 -s 25 -d 23 -p SRM -e 168 -c 42 -i 215 -a 42 + -t 389.95914268491998 -s 23 -d 21 -p SRM -e 168 -c 42 -i 215 -a 42 - -t 389.95914268491998 -s 23 -d 21 -p SRM -e 168 -c 42 -i 215 -a 42 h -t 389.95914268491998 -s 23 -d 21 -p SRM -e 168 -c 42 -i 215 -a 42 + -t 389.95914268491998 -s 23 -d 26 -p SRM -e 168 -c 42 -i 215 -a 42 - -t 389.95914268491998 -s 23 -d 26 -p SRM -e 168 -c 42 -i 215 -a 42 h -t 389.95914268491998 -s 23 -d 26 -p SRM -e 168 -c 42 -i 215 -a 42 r -t 389.97048668491999 -s 23 -d 21 -p SRM -e 168 -c 42 -i 215 -a 42 + -t 389.97048668491999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 215 -a 42 - -t 389.97048668491999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 215 -a 42 h -t 389.97048668491999 -s 21 -d 20 -p SRM -e 168 -c 42 -i 215 -a 42 + -t 389.97048668491999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 215 -a 42 - -t 389.97048668491999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 215 -a 42 h -t 389.97048668491999 -s 21 -d 24 -p SRM -e 168 -c 42 -i 215 -a 42 r -t 389.97048668491999 -s 23 -d 26 -p SRM -e 168 -c 42 -i 215 -a 42 + -t 389.97048668491999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 215 -a 42 - -t 389.97048668491999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 215 -a 42 h -t 389.97048668491999 -s 26 -d 27 -p SRM -e 168 -c 42 -i 215 -a 42 + -t 389.97048668491999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 215 -a 42 - -t 389.97048668491999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 215 -a 42 h -t 389.97048668491999 -s 26 -d 28 -p SRM -e 168 -c 42 -i 215 -a 42 r -t 389.98183068492 -s 21 -d 20 -p SRM -e 168 -c 42 -i 215 -a 42 + -t 389.98183068492 -s 20 -d 22 -p SRM -e 168 -c 42 -i 215 -a 42 - -t 389.98183068492 -s 20 -d 22 -p SRM -e 168 -c 42 -i 215 -a 42 h -t 389.98183068492 -s 20 -d 22 -p SRM -e 168 -c 42 -i 215 -a 42 r -t 389.98183068492 -s 21 -d 24 -p SRM -e 168 -c 42 -i 215 -a 42 r -t 389.98183068492 -s 26 -d 27 -p SRM -e 168 -c 42 -i 215 -a 42 r -t 389.98183068492 -s 26 -d 28 -p SRM -e 168 -c 42 -i 215 -a 42 r -t 389.99317468492001 -s 20 -d 22 -p SRM -e 168 -c 42 -i 215 -a 42 + -t 390.75530120555999 -s 28 -d 26 -p SRM -e 168 -c 42 -i 216 -a 42 - -t 390.75530120555999 -s 28 -d 26 -p SRM -e 168 -c 42 -i 216 -a 42 h -t 390.75530120555999 -s 28 -d 26 -p SRM -e 168 -c 42 -i 216 -a 42 r -t 390.76664520556 -s 28 -d 26 -p SRM -e 168 -c 42 -i 216 -a 42 + -t 390.76664520556 -s 26 -d 23 -p SRM -e 168 -c 42 -i 216 -a 42 - -t 390.76664520556 -s 26 -d 23 -p SRM -e 168 -c 42 -i 216 -a 42 h -t 390.76664520556 -s 26 -d 23 -p SRM -e 168 -c 42 -i 216 -a 42 + -t 390.76664520556 -s 26 -d 27 -p SRM -e 168 -c 42 -i 216 -a 42 - -t 390.76664520556 -s 26 -d 27 -p SRM -e 168 -c 42 -i 216 -a 42 h -t 390.76664520556 -s 26 -d 27 -p SRM -e 168 -c 42 -i 216 -a 42 r -t 390.77798920556 -s 26 -d 23 -p SRM -e 168 -c 42 -i 216 -a 42 + -t 390.77798920556 -s 23 -d 21 -p SRM -e 168 -c 42 -i 216 -a 42 - -t 390.77798920556 -s 23 -d 21 -p SRM -e 168 -c 42 -i 216 -a 42 h -t 390.77798920556 -s 23 -d 21 -p SRM -e 168 -c 42 -i 216 -a 42 + -t 390.77798920556 -s 23 -d 25 -p SRM -e 168 -c 42 -i 216 -a 42 - -t 390.77798920556 -s 23 -d 25 -p SRM -e 168 -c 42 -i 216 -a 42 h -t 390.77798920556 -s 23 -d 25 -p SRM -e 168 -c 42 -i 216 -a 42 r -t 390.77798920556 -s 26 -d 27 -p SRM -e 168 -c 42 -i 216 -a 42 r -t 390.78933320556001 -s 23 -d 21 -p SRM -e 168 -c 42 -i 216 -a 42 + -t 390.78933320556001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 216 -a 42 - -t 390.78933320556001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 216 -a 42 h -t 390.78933320556001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 216 -a 42 + -t 390.78933320556001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 216 -a 42 - -t 390.78933320556001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 216 -a 42 h -t 390.78933320556001 -s 21 -d 24 -p SRM -e 168 -c 42 -i 216 -a 42 r -t 390.78933320556001 -s 23 -d 25 -p SRM -e 168 -c 42 -i 216 -a 42 r -t 390.80067720556002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 216 -a 42 + -t 390.80067720556002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 216 -a 42 - -t 390.80067720556002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 216 -a 42 h -t 390.80067720556002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 216 -a 42 r -t 390.80067720556002 -s 21 -d 24 -p SRM -e 168 -c 42 -i 216 -a 42 r -t 390.81202120556003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 216 -a 42 + -t 395.48597099774003 -s 27 -d 26 -p SRM -e 168 -c 42 -i 217 -a 42 - -t 395.48597099774003 -s 27 -d 26 -p SRM -e 168 -c 42 -i 217 -a 42 h -t 395.48597099774003 -s 27 -d 26 -p SRM -e 168 -c 42 -i 217 -a 42 r -t 395.49731499774003 -s 27 -d 26 -p SRM -e 168 -c 42 -i 217 -a 42 + -t 395.49731499774003 -s 26 -d 23 -p SRM -e 168 -c 42 -i 217 -a 42 - -t 395.49731499774003 -s 26 -d 23 -p SRM -e 168 -c 42 -i 217 -a 42 h -t 395.49731499774003 -s 26 -d 23 -p SRM -e 168 -c 42 -i 217 -a 42 + -t 395.49731499774003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 217 -a 42 - -t 395.49731499774003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 217 -a 42 h -t 395.49731499774003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 217 -a 42 r -t 395.50865899774004 -s 26 -d 23 -p SRM -e 168 -c 42 -i 217 -a 42 + -t 395.50865899774004 -s 23 -d 21 -p SRM -e 168 -c 42 -i 217 -a 42 - -t 395.50865899774004 -s 23 -d 21 -p SRM -e 168 -c 42 -i 217 -a 42 h -t 395.50865899774004 -s 23 -d 21 -p SRM -e 168 -c 42 -i 217 -a 42 + -t 395.50865899774004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 217 -a 42 - -t 395.50865899774004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 217 -a 42 h -t 395.50865899774004 -s 23 -d 25 -p SRM -e 168 -c 42 -i 217 -a 42 r -t 395.50865899774004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 217 -a 42 r -t 395.52000299774005 -s 23 -d 21 -p SRM -e 168 -c 42 -i 217 -a 42 + -t 395.52000299774005 -s 21 -d 20 -p SRM -e 168 -c 42 -i 217 -a 42 - -t 395.52000299774005 -s 21 -d 20 -p SRM -e 168 -c 42 -i 217 -a 42 h -t 395.52000299774005 -s 21 -d 20 -p SRM -e 168 -c 42 -i 217 -a 42 + -t 395.52000299774005 -s 21 -d 24 -p SRM -e 168 -c 42 -i 217 -a 42 - -t 395.52000299774005 -s 21 -d 24 -p SRM -e 168 -c 42 -i 217 -a 42 h -t 395.52000299774005 -s 21 -d 24 -p SRM -e 168 -c 42 -i 217 -a 42 r -t 395.52000299774005 -s 23 -d 25 -p SRM -e 168 -c 42 -i 217 -a 42 r -t 395.53134699774006 -s 21 -d 20 -p SRM -e 168 -c 42 -i 217 -a 42 + -t 395.53134699774006 -s 20 -d 22 -p SRM -e 168 -c 42 -i 217 -a 42 - -t 395.53134699774006 -s 20 -d 22 -p SRM -e 168 -c 42 -i 217 -a 42 h -t 395.53134699774006 -s 20 -d 22 -p SRM -e 168 -c 42 -i 217 -a 42 r -t 395.53134699774006 -s 21 -d 24 -p SRM -e 168 -c 42 -i 217 -a 42 r -t 395.54269099774007 -s 20 -d 22 -p SRM -e 168 -c 42 -i 217 -a 42 + -t 397.48846797132001 -s 24 -d 21 -p SRM -e 168 -c 42 -i 218 -a 42 - -t 397.48846797132001 -s 24 -d 21 -p SRM -e 168 -c 42 -i 218 -a 42 h -t 397.48846797132001 -s 24 -d 21 -p SRM -e 168 -c 42 -i 218 -a 42 r -t 397.49981197132001 -s 24 -d 21 -p SRM -e 168 -c 42 -i 218 -a 42 + -t 397.49981197132001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 218 -a 42 - -t 397.49981197132001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 218 -a 42 h -t 397.49981197132001 -s 21 -d 20 -p SRM -e 168 -c 42 -i 218 -a 42 + -t 397.49981197132001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 218 -a 42 - -t 397.49981197132001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 218 -a 42 h -t 397.49981197132001 -s 21 -d 23 -p SRM -e 168 -c 42 -i 218 -a 42 r -t 397.51115597132002 -s 21 -d 20 -p SRM -e 168 -c 42 -i 218 -a 42 + -t 397.51115597132002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 218 -a 42 - -t 397.51115597132002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 218 -a 42 h -t 397.51115597132002 -s 20 -d 22 -p SRM -e 168 -c 42 -i 218 -a 42 r -t 397.51115597132002 -s 21 -d 23 -p SRM -e 168 -c 42 -i 218 -a 42 + -t 397.51115597132002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 218 -a 42 - -t 397.51115597132002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 218 -a 42 h -t 397.51115597132002 -s 23 -d 25 -p SRM -e 168 -c 42 -i 218 -a 42 + -t 397.51115597132002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 218 -a 42 - -t 397.51115597132002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 218 -a 42 h -t 397.51115597132002 -s 23 -d 26 -p SRM -e 168 -c 42 -i 218 -a 42 r -t 397.52249997132003 -s 20 -d 22 -p SRM -e 168 -c 42 -i 218 -a 42 r -t 397.52249997132003 -s 23 -d 25 -p SRM -e 168 -c 42 -i 218 -a 42 r -t 397.52249997132003 -s 23 -d 26 -p SRM -e 168 -c 42 -i 218 -a 42 + -t 397.52249997132003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 218 -a 42 - -t 397.52249997132003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 218 -a 42 h -t 397.52249997132003 -s 26 -d 27 -p SRM -e 168 -c 42 -i 218 -a 42 + -t 397.52249997132003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 218 -a 42 - -t 397.52249997132003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 218 -a 42 h -t 397.52249997132003 -s 26 -d 28 -p SRM -e 168 -c 42 -i 218 -a 42 r -t 397.53384397132004 -s 26 -d 27 -p SRM -e 168 -c 42 -i 218 -a 42 r -t 397.53384397132004 -s 26 -d 28 -p SRM -e 168 -c 42 -i 218 -a 42 + -t 397.82341252331003 -s 15 -d 13 -p SRM -e 168 -c 42 -i 215 -a 42 - -t 397.82341252331003 -s 15 -d 13 -p SRM -e 168 -c 42 -i 215 -a 42 h -t 397.82341252331003 -s 15 -d 13 -p SRM -e 168 -c 42 -i 215 -a 42 r -t 397.83475652331003 -s 15 -d 13 -p SRM -e 168 -c 42 -i 215 -a 42 + -t 397.83475652331003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 215 -a 42 - -t 397.83475652331003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 215 -a 42 h -t 397.83475652331003 -s 13 -d 11 -p SRM -e 168 -c 42 -i 215 -a 42 + -t 397.83475652331003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 215 -a 42 - -t 397.83475652331003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 215 -a 42 h -t 397.83475652331003 -s 13 -d 16 -p SRM -e 168 -c 42 -i 215 -a 42 r -t 397.84610052331004 -s 13 -d 11 -p SRM -e 168 -c 42 -i 215 -a 42 + -t 397.84610052331004 -s 11 -d 10 -p SRM -e 168 -c 42 -i 215 -a 42 - -t 397.84610052331004 -s 11 -d 10 -p SRM -e 168 -c 42 -i 215 -a 42 h -t 397.84610052331004 -s 11 -d 10 -p SRM -e 168 -c 42 -i 215 -a 42 + -t 397.84610052331004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 215 -a 42 - -t 397.84610052331004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 215 -a 42 h -t 397.84610052331004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 215 -a 42 r -t 397.84610052331004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 215 -a 42 + -t 397.84610052331004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 215 -a 42 - -t 397.84610052331004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 215 -a 42 h -t 397.84610052331004 -s 16 -d 17 -p SRM -e 168 -c 42 -i 215 -a 42 + -t 397.84610052331004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 215 -a 42 - -t 397.84610052331004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 215 -a 42 h -t 397.84610052331004 -s 16 -d 18 -p SRM -e 168 -c 42 -i 215 -a 42 r -t 397.85744452331005 -s 11 -d 10 -p SRM -e 168 -c 42 -i 215 -a 42 + -t 397.85744452331005 -s 10 -d 12 -p SRM -e 168 -c 42 -i 215 -a 42 - -t 397.85744452331005 -s 10 -d 12 -p SRM -e 168 -c 42 -i 215 -a 42 h -t 397.85744452331005 -s 10 -d 12 -p SRM -e 168 -c 42 -i 215 -a 42 r -t 397.85744452331005 -s 11 -d 14 -p SRM -e 168 -c 42 -i 215 -a 42 r -t 397.85744452331005 -s 16 -d 17 -p SRM -e 168 -c 42 -i 215 -a 42 r -t 397.85744452331005 -s 16 -d 18 -p SRM -e 168 -c 42 -i 215 -a 42 r -t 397.86878852331006 -s 10 -d 12 -p SRM -e 168 -c 42 -i 215 -a 42 + -t 397.93180760483722 -s 27 -d 26 -p cbr -e 1280 -c 7 -i 219 -a 7 - -t 397.93180760483722 -s 27 -d 26 -p cbr -e 1280 -c 7 -i 219 -a 7 h -t 397.93180760483722 -s 27 -d 26 -p cbr -e 1280 -c 7 -i 219 -a 7 r -t 397.95204760483722 -s 27 -d 26 -p cbr -e 1280 -c 7 -i 219 -a 7 + -t 397.95204760483722 -s 26 -d 23 -p cbr -e 1280 -c 7 -i 219 -a 7 - -t 397.95204760483722 -s 26 -d 23 -p cbr -e 1280 -c 7 -i 219 -a 7 h -t 397.95204760483722 -s 26 -d 23 -p cbr -e 1280 -c 7 -i 219 -a 7 + -t 397.95204760483722 -s 26 -d 28 -p cbr -e 1280 -c 7 -i 219 -a 7 - -t 397.95204760483722 -s 26 -d 28 -p cbr -e 1280 -c 7 -i 219 -a 7 h -t 397.95204760483722 -s 26 -d 28 -p cbr -e 1280 -c 7 -i 219 -a 7 r -t 397.97228760483722 -s 26 -d 23 -p cbr -e 1280 -c 7 -i 219 -a 7 + -t 397.97228760483722 -s 23 -d 21 -p cbr -e 1280 -c 7 -i 219 -a 7 - -t 397.97228760483722 -s 23 -d 21 -p cbr -e 1280 -c 7 -i 219 -a 7 h -t 397.97228760483722 -s 23 -d 21 -p cbr -e 1280 -c 7 -i 219 -a 7 + -t 397.97228760483722 -s 23 -d 25 -p cbr -e 1280 -c 7 -i 219 -a 7 - -t 397.97228760483722 -s 23 -d 25 -p cbr -e 1280 -c 7 -i 219 -a 7 h -t 397.97228760483722 -s 23 -d 25 -p cbr -e 1280 -c 7 -i 219 -a 7 r -t 397.97228760483722 -s 26 -d 28 -p cbr -e 1280 -c 7 -i 219 -a 7 r -t 397.99252760483722 -s 23 -d 21 -p cbr -e 1280 -c 7 -i 219 -a 7 + -t 397.99252760483722 -s 21 -d 20 -p cbr -e 1280 -c 7 -i 219 -a 7 - -t 397.99252760483722 -s 21 -d 20 -p cbr -e 1280 -c 7 -i 219 -a 7 h -t 397.99252760483722 -s 21 -d 20 -p cbr -e 1280 -c 7 -i 219 -a 7 + -t 397.99252760483722 -s 21 -d 24 -p cbr -e 1280 -c 7 -i 219 -a 7 - -t 397.99252760483722 -s 21 -d 24 -p cbr -e 1280 -c 7 -i 219 -a 7 h -t 397.99252760483722 -s 21 -d 24 -p cbr -e 1280 -c 7 -i 219 -a 7 r -t 397.99252760483722 -s 23 -d 25 -p cbr -e 1280 -c 7 -i 219 -a 7 r -t 398.01276760483722 -s 21 -d 20 -p cbr -e 1280 -c 7 -i 219 -a 7 + -t 398.01276760483722 -s 20 -d 22 -p cbr -e 1280 -c 7 -i 219 -a 7 - -t 398.01276760483722 -s 20 -d 22 -p cbr -e 1280 -c 7 -i 219 -a 7 h -t 398.01276760483722 -s 20 -d 22 -p cbr -e 1280 -c 7 -i 219 -a 7 r -t 398.01276760483722 -s 21 -d 24 -p cbr -e 1280 -c 7 -i 219 -a 7 r -t 398.03300760483722 -s 20 -d 22 -p cbr -e 1280 -c 7 -i 219 -a 7 + -t 398.63454240098997 -s 16 -d 13 -p SRM -e 168 -c 42 -i 216 -a 42 - -t 398.63454240098997 -s 16 -d 13 -p SRM -e 168 -c 42 -i 216 -a 42 h -t 398.63454240098997 -s 16 -d 13 -p SRM -e 168 -c 42 -i 216 -a 42 + -t 398.63454240098997 -s 16 -d 17 -p SRM -e 168 -c 42 -i 216 -a 42 - -t 398.63454240098997 -s 16 -d 17 -p SRM -e 168 -c 42 -i 216 -a 42 h -t 398.63454240098997 -s 16 -d 17 -p SRM -e 168 -c 42 -i 216 -a 42 + -t 398.63454240098997 -s 16 -d 18 -p SRM -e 168 -c 42 -i 216 -a 42 - -t 398.63454240098997 -s 16 -d 18 -p SRM -e 168 -c 42 -i 216 -a 42 h -t 398.63454240098997 -s 16 -d 18 -p SRM -e 168 -c 42 -i 216 -a 42 r -t 398.64588640098998 -s 16 -d 13 -p SRM -e 168 -c 42 -i 216 -a 42 + -t 398.64588640098998 -s 13 -d 11 -p SRM -e 168 -c 42 -i 216 -a 42 - -t 398.64588640098998 -s 13 -d 11 -p SRM -e 168 -c 42 -i 216 -a 42 h -t 398.64588640098998 -s 13 -d 11 -p SRM -e 168 -c 42 -i 216 -a 42 + -t 398.64588640098998 -s 13 -d 15 -p SRM -e 168 -c 42 -i 216 -a 42 - -t 398.64588640098998 -s 13 -d 15 -p SRM -e 168 -c 42 -i 216 -a 42 h -t 398.64588640098998 -s 13 -d 15 -p SRM -e 168 -c 42 -i 216 -a 42 r -t 398.64588640098998 -s 16 -d 17 -p SRM -e 168 -c 42 -i 216 -a 42 r -t 398.64588640098998 -s 16 -d 18 -p SRM -e 168 -c 42 -i 216 -a 42 r -t 398.65723040098999 -s 13 -d 11 -p SRM -e 168 -c 42 -i 216 -a 42 + -t 398.65723040098999 -s 11 -d 10 -p SRM -e 168 -c 42 -i 216 -a 42 - -t 398.65723040098999 -s 11 -d 10 -p SRM -e 168 -c 42 -i 216 -a 42 h -t 398.65723040098999 -s 11 -d 10 -p SRM -e 168 -c 42 -i 216 -a 42 + -t 398.65723040098999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 216 -a 42 - -t 398.65723040098999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 216 -a 42 h -t 398.65723040098999 -s 11 -d 14 -p SRM -e 168 -c 42 -i 216 -a 42 r -t 398.65723040098999 -s 13 -d 15 -p SRM -e 168 -c 42 -i 216 -a 42 + -t 398.66128401932002 -s 10 -d 11 -p SRM -e 168 -c 42 -i 217 -a 42 - -t 398.66128401932002 -s 10 -d 11 -p SRM -e 168 -c 42 -i 217 -a 42 h -t 398.66128401932002 -s 10 -d 11 -p SRM -e 168 -c 42 -i 217 -a 42 + -t 398.66128401932002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 217 -a 42 - -t 398.66128401932002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 217 -a 42 h -t 398.66128401932002 -s 10 -d 12 -p SRM -e 168 -c 42 -i 217 -a 42 r -t 398.66857440099 -s 11 -d 10 -p SRM -e 168 -c 42 -i 216 -a 42 + -t 398.66857440099 -s 10 -d 12 -p SRM -e 168 -c 42 -i 216 -a 42 - -t 398.66857440099 -s 10 -d 12 -p SRM -e 168 -c 42 -i 216 -a 42 h -t 398.66857440099 -s 10 -d 12 -p SRM -e 168 -c 42 -i 216 -a 42 r -t 398.66857440099 -s 11 -d 14 -p SRM -e 168 -c 42 -i 216 -a 42 r -t 398.67262801932003 -s 10 -d 11 -p SRM -e 168 -c 42 -i 217 -a 42 + -t 398.67262801932003 -s 11 -d 13 -p SRM -e 168 -c 42 -i 217 -a 42 - -t 398.67262801932003 -s 11 -d 13 -p SRM -e 168 -c 42 -i 217 -a 42 h -t 398.67262801932003 -s 11 -d 13 -p SRM -e 168 -c 42 -i 217 -a 42 + -t 398.67262801932003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 217 -a 42 - -t 398.67262801932003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 217 -a 42 h -t 398.67262801932003 -s 11 -d 14 -p SRM -e 168 -c 42 -i 217 -a 42 r -t 398.67262801932003 -s 10 -d 12 -p SRM -e 168 -c 42 -i 217 -a 42 r -t 398.67991840099 -s 10 -d 12 -p SRM -e 168 -c 42 -i 216 -a 42 r -t 398.68397201932004 -s 11 -d 13 -p SRM -e 168 -c 42 -i 217 -a 42 + -t 398.68397201932004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 217 -a 42 - -t 398.68397201932004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 217 -a 42 h -t 398.68397201932004 -s 13 -d 15 -p SRM -e 168 -c 42 -i 217 -a 42 + -t 398.68397201932004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 217 -a 42 - -t 398.68397201932004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 217 -a 42 h -t 398.68397201932004 -s 13 -d 16 -p SRM -e 168 -c 42 -i 217 -a 42 r -t 398.68397201932004 -s 11 -d 14 -p SRM -e 168 -c 42 -i 217 -a 42 r -t 398.69531601932005 -s 13 -d 15 -p SRM -e 168 -c 42 -i 217 -a 42 r -t 398.69531601932005 -s 13 -d 16 -p SRM -e 168 -c 42 -i 217 -a 42 + -t 398.69531601932005 -s 16 -d 17 -p SRM -e 168 -c 42 -i 217 -a 42 - -t 398.69531601932005 -s 16 -d 17 -p SRM -e 168 -c 42 -i 217 -a 42 h -t 398.69531601932005 -s 16 -d 17 -p SRM -e 168 -c 42 -i 217 -a 42 + -t 398.69531601932005 -s 16 -d 18 -p SRM -e 168 -c 42 -i 217 -a 42 - -t 398.69531601932005 -s 16 -d 18 -p SRM -e 168 -c 42 -i 217 -a 42 h -t 398.69531601932005 -s 16 -d 18 -p SRM -e 168 -c 42 -i 217 -a 42 r -t 398.70666001932005 -s 16 -d 17 -p SRM -e 168 -c 42 -i 217 -a 42 r -t 398.70666001932005 -s 16 -d 18 -p SRM -e 168 -c 42 -i 217 -a 42 + -t 399.25735325697599 -s 17 -d 16 -p cbr -e 1280 -c 7 -i 218 -a 7 - -t 399.25735325697599 -s 17 -d 16 -p cbr -e 1280 -c 7 -i 218 -a 7 h -t 399.25735325697599 -s 17 -d 16 -p cbr -e 1280 -c 7 -i 218 -a 7 r -t 399.27759325697599 -s 17 -d 16 -p cbr -e 1280 -c 7 -i 218 -a 7 + -t 399.27759325697599 -s 16 -d 13 -p cbr -e 1280 -c 7 -i 218 -a 7 - -t 399.27759325697599 -s 16 -d 13 -p cbr -e 1280 -c 7 -i 218 -a 7 h -t 399.27759325697599 -s 16 -d 13 -p cbr -e 1280 -c 7 -i 218 -a 7 + -t 399.27759325697599 -s 16 -d 18 -p cbr -e 1280 -c 7 -i 218 -a 7 - -t 399.27759325697599 -s 16 -d 18 -p cbr -e 1280 -c 7 -i 218 -a 7 h -t 399.27759325697599 -s 16 -d 18 -p cbr -e 1280 -c 7 -i 218 -a 7 r -t 399.29783325697599 -s 16 -d 13 -p cbr -e 1280 -c 7 -i 218 -a 7 + -t 399.29783325697599 -s 13 -d 11 -p cbr -e 1280 -c 7 -i 218 -a 7 - -t 399.29783325697599 -s 13 -d 11 -p cbr -e 1280 -c 7 -i 218 -a 7 h -t 399.29783325697599 -s 13 -d 11 -p cbr -e 1280 -c 7 -i 218 -a 7 d -t 399.29783325697599 -s 13 -d 11 -p cbr -e 1280 -c 7 -i 218 -a 7 + -t 399.29783325697599 -s 13 -d 15 -p cbr -e 1280 -c 7 -i 218 -a 7 - -t 399.29783325697599 -s 13 -d 15 -p cbr -e 1280 -c 7 -i 218 -a 7 h -t 399.29783325697599 -s 13 -d 15 -p cbr -e 1280 -c 7 -i 218 -a 7 r -t 399.29783325697599 -s 16 -d 18 -p cbr -e 1280 -c 7 -i 218 -a 7 r -t 399.31807325697599 -s 13 -d 15 -p cbr -e 1280 -c 7 -i 218 -a 7 nam-1.15/ex/sample.nam.tcl0000664000076400007660000000231006662360511014250 0ustar tomhnsnam# Sample nam configuration file # # At start, nam will automatically load .nam.tcl in current directory, # if there is such a file. # # $Header: /cvsroot/nsnam/nam-1/ex/sample.nam.tcl,v 1.3 1999/02/16 21:21:13 haoboy Exp $ # Parameters below are for automatic layout only. To turn on automatic layout, # do *not* give any link orientation information in your ns script when you # create your links. To turn it off, set those orientation information. # KCa_: attractive force constant # KCr_: repulsive force constant # # Here is a method to layout a large topology (say, 100 nodes). First set # KCa_ and KCr_ to 0.2, do about 30 iterations (i.e., after start, set # the 'Iterations' input box to 30), then set KCr_ to 1.0, KCa_ to about 0.005, # then do about 10 iterations, then set KCa_ to 0.5, KCr_ to 1.0, do about 6 # iterations. NetworkModel/Auto set KCa_ 0.20 NetworkModel/Auto set KCr_ 0.20 # Seed to generate initial random layout. NetworkModel/Auto set RANDOM_SEED_ 1 # Layout iterations done during startup NetworkModel/Auto set AUTO_ITERATIONS_ 10 # Layout iterations done each time the 'relayout' button is pressed or Enter # is clicked in the input boxes. NetworkModel/Auto set INCR_ITERATIONS_ 10 nam-1.15/ex/session.nam.gz0000664000076400007660000025546606610761053014335 0ustar tomhnsnam‹J 5session.nam¬ýݲ´È’m ÞŸ§Ø×Ýò¥à€;î÷„ôsde¤J*ûœºªKªŸ¾×rþ-Ð9‡aÄUæ·fjSY€N5þã_þý?þõçý×û_þÇ¿þãÿþ÷ÿñßþcýßÚßÿíÿ?Çÿý¿þs÷¿V¿ÿëøŸïþ§çïÿô¿ŒÿóÿÚ~üþÿïÿïÿù?þßýϯïhøŸÿñ?ÿëßÿ=·þýÿsü÷ÿñß÷ÿk÷û¿þ÷ñ?ÿsn~ÿÇÿû?ÿë¿þçÿõßþÇü¿þþU?&üÿý×ü¯ãü×þëÏüû¿ÿõçÿ÷¯êߪO]=êÝo9?®ŸÍñ·ÿËýûüo19ã×õ³Î™3ÿqý|ä€ùëg•æ?®ÛON”s~]·ïŒ9gü¸n»0ÿqݾrÀüÇuûÌó×mNöeü¸n›0ÿqÝæä^Æë6'÷2~\·UVŠdüºn>sÎøqÝää^Æë&'÷2~\79¹—ñãºÉɽŒ×MNîeü¸nrr/ãÇuSç(9ç×u““}?®›œ¿|?®ëœÜËøq]¿s¢œóëºÎɾŒ×uNöeü¸®s²/ãÇu“}?®ë¬ûΜ_×uÎß¾Œ×uNöeü¸®s²/ãÇõ#'û2~\?rþòeü¸~ää^ÆëGNîeü¸~ää^ÆëGNîeü¸~äüåËøqýÈɼŒלÌËøqýÈɼŒ×U’Lãþrùoë*'ï2~\W9y—ñãºÊÉ»Œ×UNÞeü¸®’TÒšr~]W9™—ñãºÊɼŒÿü¿9àŒÌ«r2/çÇŸŒ¿yY?þdä^Ö?¹—õãOFîeýø“‘{Y?þdüÍËúñ'#ó²~üÉyÚËûõ'#÷²~üÉH§¬¿sÞsæýú“}9?~çd_Îß9Ù—óãwNöåüø“}9?~çd_Îß÷²~üÎɽœ¿sr/çÇ]Îß½œw9™—óã.'ór~Üåd^λœÌËùq—“y9?îr2/çÇ]Næåü¸Ëɼœw9™—óãWNæåüø•“y9?~åd^Î_9™—óãWNæåüø•ó´—÷ëWNîåüø•“{9?~åä^Î_9¹—óãgÖgÖ¯Ÿ9†¼_?»,tίŸ9˜óãgNæü8ÇÛ’õãÔ­¢Á?Îq¶dý8ÇÙ’õãgKÖS¯Šçü8Ç×’õã_KÖs|-Y?Îñµdý8Ç×’õã_KÖs|-Y?Îñµdý8uªhpÆS£Šþ’õë_KÖs|-Y?Îñµdý8Ç×’õã_KÖs|-Y?N*œñãWKÖs\-Y?Îqµdý8õ©hpN10'ó² 09™—e€Éɼ,LNæe`r<-y¿Îñ´dý8µ©˜9çü:ÇÕ’÷㬿|y¿ÎÉ¿¬çä_Ösò/ëÇ9ù—õãœüËúqÎ_¾¬gÕø23çœç$TÎS·ŠžDÆs¼-Y?Îñ¶dý8ÇÛ’õãoKÖ³¼-y¿Îñ¶dý8ÇÛ’õãÔ®b‚‘óëÃJÎsü*UÆsì*UÆsÜ*UÆsÌ*UÆs¼*UÆS«ŠOίs¼*UÆS§Šæò§>‰Œ_çUªŒ§6ý7Œÿ8ǤReü8Ç£Reü8Ç¢Reü8Ç¡Reü8Ç Reü8ÇŸReü8ÇžReü8ÇReü8ÇœReü8Ç›Reü8ÇšReü8u¦è+ZίSkŠ!gü:Ç›Reü8ÇšReü8Ç™Reü8ǘReü8Ç—Reü8Ç–Reü8Ç•Reü8Ç”Reü8Ç“Reü8Ç’Reü8u¤èLÎùuêHÑ3æ?Îñ£T?α£T?Îq£T?Î1£T?N­(úuÿqêCÑ\þãÔ„¢¹üÇ9”*ãÇ9”*ãÇ9”*ãÇ9þ“*ãÇ9ö“*ãÇ9î“*ãÇ9æ“*ãÇ9Þ“*ãÇ9Ö“*ãÇ9Γ*ãÇ9Æ“*ãÇ9¾“*ãÇ9¶“*ãÇ9®“*ãÇ9¦“*ãÇ9ž“*ãÇ9–“*ãÇ9‡®T?Ní&ætƯsü&UÆsì&UÆsÜ&UÆsÌ&UÆS¯‰Ù¹Œ_ç˜MªŒçxMªŒçXMªœÓVrr.ç°•œ¿q?Îñ™T9­äd\Î9+9—sÌJNÆåœ²’UeËh7ÏÉ·œVrò-瀕œ|ËùqN¾åü8'ßr~œ“o9?ÎÉ·œçä[Îsò-çÇYá²~UÖÎ)˜çps~œÃͨç85Ÿ¨_çd\†÷$'á2œ'YuÔx¢~“p¾“œ|KM'ê>*›ñç-›ñã,ÿqN¦Y§Éíîu~ö÷tòðø¯çï,?¿úþó¯?ýïˆÇôÿϽÛëþþÏÿþ¯?ÿõû?¿^¿Åß…¾#>fäãFæ÷Üà¿§É:âçß>+ñ÷A«‹fYϳ¼ù=+øïéàbC|tí¿=ö ·m0Íjžæ}ÐïùÀOÓµÈz·A¿µŸ'âÓyNÌÇÐïqÃOÇ*dÓV»-ª>Uγ›æy#ô{îßÓ‰ÇY7Ý¿5òÝ=ߟ`žyž÷A¿GÈþ=s ¤ôÚíçõ âÙ,ñ¼ú=,õïéØd·Eõçßž»¥WïŸç›óyÎé~#ô{ôêßÓ)Ìn‹>í¿µ;ä£{UÁ<—}¿ú=Éõïéìe‡¬ÛýÒ»¶ý¹ß>Ÿç|]ºú=öïé g‹l—ºîóö}b>î„~Oý{š®E~þí½»„t¿çzžÏsÖçÐïá¤Ogè:dÕþ[½“Òë÷¶ï|ž³>o„®óìü%äÝì¥ôj^?×I=Ïû ß3YÿžŽáuÈG½GÖÝç\çë9n„~Lý{:Õ×Jé±—R÷ùí*:çc¾Îß]çé/ÉÏë°Eõ«þ­ó¼ú='öïé˜]ƒìö‚uÏWpUšˆûß#gÿžNìµ· {bóúù3Lò9Oò6æ÷4Ø¿§£iÝæ´Ýþfáý|6A=æ+çÐïá²OÓµÈç¿UÛÍì£éžQ8ç+ÒÐïÙ¯OçÛ:d½¿Glºº{ŸO³šoäïc~’ý{:,צdµ ìšæüªæ<¿ú=äõïé,[ƒü<÷W¸×£yFÑlçiÞÆüû÷t0®[ø«Û?À¼žÍ+È¡j~d¿ú=öïiºÙìä^}~®ÄÑ<ç\¿ZWS®W -ŸÝn‹?/ª ׫9×ï„~¦Äü€Äça‹>M×ß%-Ì[¡ïyž~éïÃcÖ»yŸß/Ä‘ïéêññ/Uê÷?²Î¯H óVè{ºOø€‡¬×ñ%@óyŸß!-Ì[¡ïé2÷öw j÷øQ¿?Á悼“ùž®roðª¢Ý¿ñû4Íûü¶xAÞÉ|Ï÷HþRÜü,|»íúíni¢i.÷H7BgæÛ_ŠëçNEuÓüZ÷Õ4ïd¾§ç«7y}úÞ¿–üý~Q”AÕ<Í¡ÝtëÀíLóÞßÄ>»ßÏÎsfÞ í¦¿lx=Õ«»Ïo‰ê|žyž7B_ÓÕ¸ãä.1ëö·µÿtž3óVèkºwäbü8ÜÐtM}~—´0o…¾¦{ãÆoQS¿Ž—ã.úKôšoŽï„ÎÌy½ÿÜ?´~ÚOü)š™·B_ÓŽ¸ jdÏGô€¹ ïd¾¦Ì|ù¿n?ÎväG×TŸ(‹æl¿úš®È/p9è¨é~žZƒiÎù™Ïé…ÊÓßÑÍ'挼“9—oAõö¹ÿüó$ølƒXÎÈ;™sùöã‰?yx«_E3òNæŒ5æç±Æüþ¹rèYÞÈ\ê¬þUyÓ6{©ÿª”šêùóoäèŒ|“÷<íá.æù1Ó¼:#³úç¾ñPÀy^ÁMÌ2Í¡Ÿéfë*Ï¡;áÕ½ÎßFU3óNèŒ$ð¦Ùý©¨›Ÿ|>ɳNóFègºÕBw„û…·î<ûU3óNègúà lêݾV×ÏGÐIPÍÈ™Ë$ÁË“æøzü˜·IÞÆüL¯õ:/¡Ï¡özþÚ3Ï'9¿)¼9IÍûàùí­z˜YÞýL÷Y¸iöõºöõ Ž'¨fäÌ÷twðñ›SŸ › *_ÍÄûôL<œçëØ„–)V÷1§n„¿ÅúYãáýmýj_ÕÜàPÝ{À¡¿¶ôñç/uÐÀV-ý 7Bß³¡‡ôèîo^šæçâ©r1ôÜ‘`áŸÏî‚ÑVÏÈ5°ÌòFæDüø»êöø¤×½»à™gžcusž#¸ l»Ýƒ^ýót=ܯ“¼:uÈÕïý…­m~nV£o±*)tFÕŸ½‘¶éšWôÇqiº:!Á߈G½·×5¶Ž!çYV7BçY’;Õ}Á«}·uÐI»Íò>è¼êgx©\žÉncÎDtXÞÖV‘›nåÐ zqkîGïWø01?Þ}?ø­ÆçøÈüNj©ÞŒ[ 3ßà!jÿÀ\?ºX—Õüúû6f÷}Ô#]ÍïÃïŸd .–ÝòŽþ>èÔ: ,³ÍóslÞh‚vájîF­n„vß'R`˜}=ö¾šöÓ~Ī›ŸqïcÎs"ÿ¼wOö?·Ó¡uaä}Ðy–àêûÚ©¼yšèõ:ÉÛ˜óý`Û2ñ]=dÛocÎs¯?÷ýÖ¿þਨmŽ·1ç9úÛÏ¡7øç94z—±Îñ6f7•ÊÀkźڿGþüšÌƒI.ž¹Û˜•´v‹®.Á©uË«û˜Ý÷½9àçq~ïS¨êðÏÍü*ãFh7Ý£’fÁæxŒFõˆžÆfæÐ Ù^Ûýûøßžœ(qæ{óÛ]MoÔºýá]ͧkƒ¦åª«ñ}dNDð&¬ëÕïèeŽäídÎÄ{ôQ¼ëèÖbyĹ 9É ä×s_]ý¹V|¢¤YÚ ïƒNH²êÃ9±õçóŽÊôËvßg鯇±¶þ~…KOò6æûBVÝ<ºàÈ„uŽ÷1_ÓUXJ?»}y=êwTX~-W¡Û˜Ó35èL~´Ãëã® ”ªæskî„NHpœÔïßÚ]*¾â·,ó,«¡Ïï… &õ›‰»‡äßaƒjès~cu#ôù}½Žhú=|ñ½¿l¢ÛŒçüÆêFès>jœ Öìûê~ß9GÏ娕û 38=êç¡fP·Uô*õ¹œytB¾ðu8¥þ¹W þð̳¬n„>¿õ/лtx…\½»OÍrñ¾ÞN’z›—Çáïí«yGVóáTÕÐùsEàìæØ£ø©»à¼Íjù^ÑÐù«=ය>4.UŸï ΧYÍÏ÷A'$8/î÷¾zwøo÷üDÍó,«¡íüYðåÏ¡_ ú¹Ól—ςܑàÃ-M}0â?Þmp”ò2Í;¡’¾w¬`ÖMø}žeu#tþDUðÛãËÚ÷;8i³Z>Qu#tF’„n¯¢ê×kü9Ÿ™wBçÞ@ÃÍãpH`÷³ò¨Ýs9ÿ6æD|ƒÏÞhøü<£O,s¬îc¶SYÙñ{¸Ùî }?£j^;×%n„ÎHðVùÑÔ‡Jëë^Š–CeïƒNHpÀæ«Þý¡xUߦ,5Éê>ætNÜ‹t&VÇËaÿA»ÜÝmçó׉K¡>6È"I»À~tF‚{ëG÷Ø_ÙºŸ?ºÑår9œ÷>è„|gÓæà¦øýâbðò`žeu#´ýÞ¶’Zº÷áŒgœÐRµóË¢¡ó·ðlú9\5^Í3zDZ|ñFè„§è&GĽ]¼ÕšgYÝ]nô"úùkrøZǧ Nx®ÖƒïƒÎHòpÚšã»öµð/'7Þ]¦ ž§žÝÁÌ÷yG&ƒuš÷A'$8 ¥>|5ªùý+%Ðüv#´™Ÿ~È;¨×¡[íÕD7ìÍòôstB‚0êÇÞðó{ÜrTç›gYÝm¾àŒß×&ûŒ|…ž±f~—y#túô+8Ó»JÊÙŸàäü-Ùê6d3Ý‚o”þüý:œ™ü‰N1«fæÐ ônŽçJüÜ¿DÅŠy–ÕÐæ{Û º§û§{DËfé9¿9I ššGsh‹~‚òVÍrOttúÆ/ùRögŸ‰WÝ„gÇ,7÷A§sIɹè?WµÝ·x~.¯èžùïÎÐùû¾èÕÓás´Ý»‹¦93ï„NHpØxsøDeýó$·Ì²ºZÏdõ"zwûÏç» Ò§^¾Çzs&[Mwx(}tQò,'ÛÞ†œà½S³ÿ\Ìãç–0rá-s¼9;òPæzýÜF‡Ís¬îcNgùGÍáàÌ×ãýŽ þóéÀÕ}ÌyŽì,½}ë~Û¼‚×Xë$ïƒN§ ×à ÒÇgïâ|4ï6²ø/§"ßàc¿¯œö½‰Ýó]'绌¡ó,Áé;Ýþ±¤~Õáƒã:Ëû ó,ÁÍUsheùýž|”=Ë,ïƒÖß7cäïp^ý#ôè9¢^ º:ϼ#i÷GÆ´?j¢¿ŒË,ïƒÖSu‡\Ï{}ûKΧ9WÇo„NHðu‹úÐÿó÷ùÙÜêåÀ¥û õüýbà@üå…z˹ç7Bg$éû¹WÝ?ž4ï¨Ïu9KýFèŒ$~ÎÃñU?÷mäÏZ¦y#tB‹_ýh Ÿ::¸kžeu#´þ>íe7Ïîðg÷çN+ºž o„γ®švŸ‘?кðoù2Ëû ó,ÁÖ±qä÷3Éû˜ßG=àUiªæðê®zL¬æ£ó«;¡ßWŒÄ]ñh‡ñ¿›èI|>:¿ºú}HŸý¹­Ú_Ù>Ý+r³>æçž;¡óQ¡Äß·wQ=ÚG©±|4àNè êp¿Íö_ò|UÑmÑ<ËêNèt× êíMóÚ=;×Õû=G>–óão„~‘ ×<>‡>»wXƒœgYÝ $ɧp÷Ro~î´ƒ˜¬³¼:Nâ?|e¥k«¨}oþìÄÈÙ ¶æuø{ûyGÄ—OcÜÈœ?oŽ9¯ƾêÝ\.“¼‘9m61&%_lÛèÏüpv'tš¥¿ø>‹ùú½Œ²{™ä}Ìù+ä0éÏÞ¥Ò}~?ŸårúþÐé9}Ç`÷šñÙ>‚/b.“¬ndNs$}´Ÿ§¼iª.:ÉiäÐù±Œ|äº>œJؽÃÜYËn„ÎmíÀT±ëÔµ¯ßŠ˜šeu'tš¥¿®ÕÍþÆ¥­Þ¯È±ÎòFè4K°9ÕáÌ“Ÿ¿|Ñ7UÖYÞ¢À™žÝÁöþsG¼TŸ‰7"'k›¿¬ö¥~†oWçV7"§’oï­ U÷о^Í_Œº:»ÓÁÍ_s8¬zE— j~"»:=–€;Ôã—ˆž]è®æ'¡ó—ÀÍ~µ?»áÙý^õ$ïƒÎætð¬|¸G}|êè…ÿ:Éû Ó# 8t©ÙßYÕmó ?H3?1ÞÇœËoàíç¡Ó÷ñy¶Ñ»«e’7Bç‡oð4¿of©›æõ‹Ï“¬n„Î'gƒgù½óìùª>Ñ ¶u’÷A'¢¿îvûÓŒ~/ÑÄ:ÇÛ˜Ô0«ý¾üüa¨£ïÊ­s¼:ç (»í_!wïwøQ¹u’÷AçD׊½éìù{G]%—IÞ߉Ruø‚ñ«ŠÞR.Ó»:?&ƒû•}Èï_ÙgÊy#t:ŽÜ ì?±üó?¿££œ–9‚OQè—HÚßzuUÔc´Îñ>è\a•Ë×áƒ$Ïæf÷òiéû Ó*à/Ãóp¶M[G' Ís¬ÈçÊ ôKd‡í¾‰Ô4mä[çxôK¯CªýÔŸÕçýÔ{]‘oVAè—Ȭ¤;Çë³z½£«Ï2Çû SÙ<½ίg½¸Xçx#tÊlð¾æ}¸œ=Þm)r~'p'ôû0ëß"îÏÖª_:òŸWËG›ncNðäŽo×,Ù¾ºð.²šgx³®æãö»Ö÷õÇ ™Fÿ/ÿþÿÛÿçÿù?þþoÿ¯_ÆO2þëÏÿú{;ØtíÏóÖÏæþû÷KZú_·ò_?jý¯?ò_×ú¿]7ê_ÿÜûÊÑþo?;ý¯ßú_køKGí­GdPk½%µŽZ]Ë…Õþo·•þ×raõSohcþµœùÏßOù¯_Où¯;=º“jù¹›”ÿú#u^}Úÿöÿüý×]–Ípÿû¿þãÿõç?›Ï~Sºú]ýªþÛŸì­#Ë¥d75rÈþoMëù¹.ý£d1ÿ3!ºåU»__ a(&ŒŠˆúõ|m„÷Îügæ`¿:ÈË3°7ƒ¡tàf0 “² M÷¬¶XN<Žq,@ü#pN?Ž1-˜Í“Ï»ýùoÎQ펥IÔðdʼ< 0J'`fc<ž¥–¸Ôê€çQŠnð"€çï7ëë'ÉÇ$™òG—GŽg#óRåÙìþŽüžË¾o¢@‘ú'`+xšÂñ0×ÃñFévü«püþˆð¯èeS€Øñðb{Uv¼Q€ïàð.æ²€)ÀŒìxø×îªìx£;Þ)ÀàÛ“áìvÁàEô÷4‹Ü.< ü‹Ÿüݾ< p3Jg`n£°;‘uˆY“˧7gˆÕ¤Y€‘Ï«+ø*`õã_l­&E„_ïUÀüÉÊ7¼3;AÔs‘¥døõ]ÜÌFþ¬ˆY!˜=Þ\\³ 1+³%81+³@1»á×wŠy(³B 1{¼Oº,f@bV&fKpbV(f bvïï"ó(&€žX€=±X€Ù;Þp‡ãáû¹p¼ÙC;Þ=±8€Þ†'o÷è+£ÃæßŠ=xoV/Ȉ¿b~g^3ª`6kLºf÷¾õ )2y~º< 0J'`fc<ž=Z€{ìw€vS"IY…ðy½×I|¦là­ÿâ=µÕ½¯#êÇü,K/'ˆi!5};~†ØŽø*"´XÏk» X¥» ØÎƒ¼HØNç¼Xœ¼‡¯=<äö½ %¦„@ДP˜ ÁRÂ\J(J @)¡,%¥„”ÃQJ å)¡0%‚¦„BÀ”P––àRBPJ(J `)!,%€¤„ŽRbz†¯h½¢ñø`x@¯h½¢QöŠÆÜ+€¯h‚¼¢qïï"|EÓŸ>ÇG‰ Þz¾ß¿>ÇåyäA RÉsúuÂPL!ïéüs(Ìuà…×ÃÌ / ˆôLÇÃ× áxópmÇGR¤ãÃ^`†ÿ)U€0X€Q€ßï\U€o`Ç;8€>”*@˜,À(Àއ/Ø®*ÀŽ7 °ã¾ß;ÎÞPZ½ˆÖû¿êítw8Ÿ=_¥œ!^Ó b… ÖCM/¦e¼¡AøQO'ÊÖõuÄî‘W ßûÔ×õHnßw½ؾVM^#(J! ¢)J˜¢‚*J  ¢)J¢€)j(W”B@E)R”0E U”@@E)R” E SÔ¨U¡W• _U }U©ðU¥B°W•–à^U*zU©èU¥°W•‚À^U yU)†£W•ýa|b¿¨Ì\ ¶‘SƒmÈÁ°–û{FØì81UùZ ëèÇWWÙÿ½hœûï ÿ{Ñ8÷ßÿ9޽O[Ú|Rë}OþðýžØû¤S€~Oú=9˜÷䔾'÷žÜ#jõž¿¾‹î=ù#ÉÖëbV$f`¯Æ®‹Y˜€‰Ùœ˜ŠY ˆ˜Ýðë»Å<”‹Y!˜=€½å».f@bV&fKpbV(f bvïï"ó(&€Þ· {ßnfìxöº8Ï ­ñx³‡v¼{ßîfx¿Þa“yzk°Õþi¦ š>”õ1¯>âõÍ®ð½vìm\É"‚-BÐ"†òE[„ EŒbðµ¦BÀך ^kJ{­)ôµ¦@À×šŠ€^k*z­)ìµf¿’K›ÛÄxäåÿ¦o<ÒmU8ÒÊ$ K”ÍîóûϤQgùiŽ—½Ä_1w5ÇëWÁlÖ˜´û> z]C@$¾:‰èÕ X€™ÀP: 0ãñì]Ÿ¸—~ýðÌî0J…Ð=vÞÂ*È<<Âd<ÂdÂdÂd(!,È€.È€.È€)Èx‚)Èx€,Èøáº “¼»)H …€)!4%¦„B°”°— €RBPJ(K A`)!$%Äp”CyJ(L  )¡0%‚¥„%¸”P” €RBXJK  )!†£”…žáûy…@ïç=¾< ÷ó €ÞÏ+{?o îý¼À÷óQƒ÷ónøõ]„ïçûá½>•>Ža‡QzßõÙ]ø}é¦{¬EIXwü)`ú›‰¯¯Á fÀÖ0”®Á fÀÖ0ÆúžY Ø{f@ï™ûàyšU¸pQ?»]Ç[=½-ÒŸäí×uÂPL!ï×á3 ó‰,º†X[€©!R@¤:¾´ Ç›WVv|t] ãÃ"˜áJ L``Ç÷¦W`ÇØñN`†¥ ¦ 0 °ãákë« °ãìx§0ÃÇx8{ïoð"ÚTíÎîýDÅã‡G¸â1@èâ1˜â±GØâ±G¸â1 èâ1èⱘâqòr®@Q ¥HQÀ%TQ¥HQ €%LQC¹¢*J!¢$€)J ¨¢*J¢)J˜¢F¥¨ ‚‚,Á€€ÄpTèwã?ÝùÛ¸/b#I 61„:(ŽßÒœ Ó•ª†'œž!º/~*CL[äŸòE[„°üJ!lÀZ{O5y“íð=ô€½Éî÷„Äâé¦/ÇÒ<úµëK:ÆŸÖ@@h-KÞ;_ž¸ ¥3°7ƒQØ›óeÚÇþpÿÕ™kÐuf €oŽÏºÎ ºÎ ¦ÎL a\Ù#jUg†Ã¯ï¢«3×ÇŒ.³B 1{| ~YÌ €Ä¬LÌ–àĬPÌAÄì†_ßE(æ¡\Ì Äìð}þe1+³01[‚³@1 ³~}¡˜G1TYVY³³v<, …ãaCH8Þì¡ï*k`†÷»áï:h'¡‡}GËz8—ñí<,Âøv@ûv’÷ï‹¶@‹Ê!l €1ŠEÀB†BÀB†B B†°B†@ÐB†@ÀB†" B† B†°BF¿žµù2¹Ê¹ýD;fbÕ n[ Ī A¨­¡}UŸm‡§›ù¥%;Ç÷„0Õ˜>Ñ­ ?¢Ðñðíu8¾¼¾Á˜À"(Æ£ÚñðÕùÕÅŒ ,‚b<Š ßÛ_àާ¥‡˜À*v¼YÁ’…‡o€VÓ_[gWn2,@ü#ð™íqK f³Æ¤þý"æ\˜v“½ÁþÇÀèdòú?û?4ÿÁáê0hþƒã?DZºD8ÐÕ#úÝÀWö™é†î ç°´ögñkgc¡„Ð Ú Ú Æ â Æ âÒ â‡k3H\r®§„BÀ”š SB!XJX‚K @)¡(%€¥„ °”’b8J‰¡<%¦„@ДP˜ ÁRÂ\J(J @)¡,%¥„”ÃQJŒBϰb¨¨bè°Nq@C@C`CKpC€C¨AÅÐ ¿¾‹°bØïŸì3Òû®®ÚõXÏÂ3¿Àó®ÎÆá—”j.¯Á fÀÖ0”®Á fÀÖ0ÆZñVñRTñêw€:ûÌ€TÓ»—_Ÿ÷÷ý×ç1'&|vB¨çRðuB3¿g¸N˜êU|~=ŠÀâ ,ŠÀâ0ÇAXÅAXƘ@ßí {¹¯èí¾À—ã1À„±ßWº[½zù¿Š‹‚¯fÿÕðùÄ]íÂNÞæ_' Å„QòÞ῞‡“®§øÞtFׯŒË‹"ñÒñ°Ž7¯ìíøè>‰Ž]^`†ÿ)U€0X€Q€«CW`ÇØñN`†¥ ¦ 0 °ãa¹îªìx£;Þ)ÀÌð1Îê@/¢Ýþ“™ó;(cë«=ÂÙúBÛúÀØú<ÂÚú<ÂÙúAÛú@Ûú<ÀØúêäšx]Q ¥HQÀ%TQ¥HQ €%LQC¹¢*J!¢$€)J ¨¢*J¢)J˜¢F¥¨ DD‚DD‚D-ÁDDD€DD€DÅpTí·ñ]Õ^i€3T2 6’bA¨£ìPA˜>vöÙ‡Eÿ,˜#iþ”/B Ø"<À,b(_„@°Ex{+¹E8|Øf9`ßøßk‹0þwÐþ÷úø§¡`Á¡hCù"‚-BÐ"F±XWXWT—VZXWTWTVï7À³®ªó«œÛO¹c&VÝâ¶•@¬º„ÚáÞ;1`:ªÜ5G<,Â4G€nŽÀXùŒ°òYF`aTF€µ×ËaÊÃ(,Œ €Âè°ú{9Œc  %l`%l0‹Xsr?~®‰<ªéùÀ(&s}(ºÈÄ\Ü}Hgˆçü cfñ§<Áb!, c1”ÇB"X,$‚ÅB!`,F€eX‰`eX‚€u?peX‰`eX°eØ~ÎG°%;“õ²Óíÿc‡ÿ=“l½Žø+FàÓ ŸI¾\ŸÍ“Ï»mÒÏMYm0D"M ¬—'`fCé,ÀL`ŒÇ³ ±¸ q¿t+ ‘¤ƒ,BøÔÝI*ó'8¦+ohën<ÂÙº=ÂÚºÂÙºÂØº)!´u€¶u€¶u€±u{‚±u{€´uûáÚÖÔ÷ RB!`JM …€)¡,%,Á¥„ ”P” ÀRBXJI 1¥ÄPž SB hJ(L …`)a .%¥„ ”P–‚ÀRBHJˆá(%F¡gèáPäáðX9> ‡ ‡0‡%8‡@‡@|Ð@ ¿¾‹ÐÃÑo„Oµ>•&áiˆé}WûܵÊ|!¦W§¦Ó’¨ÓŸzðñå5x@Á ؆Ò5x@Á ØƘ@=Á< €<ýÐdŸ†˜jzÒ):üîaÓÅ-l&ð€f~Ép`z!’zÜå‹°‹ÁP`1`1C­ªÆVTãQMÕŽ‡ÕÈp¼‰`¿ÿZß=/Iñ1ˆYf‚-Ÿý­Ï{ºu› Vða¬ˆÅÁRŒxÂÚjŒ¨ŸfÊc!,ábá6Cy,$‚Å \,<ÂÆbTˆ Õ™%‚Õ™%‚Õ™Ö™û"é‹tÿ}9Ø…Pf溪ºÝÙ©sÅP÷+ „¡˜0*BVݳþ=‹ar°êƒ6fú ô°èO´Å ²é(S„ FEÏwzTØ% ‡™A®íØ?†± †™ F± v掣̎£ÜŽ3ƒ†k;öalÇ‚afÇ‚Q¬äŸ¹cÁ(³cÁ(·cçÃÌ 1ÄÁ0zÉ9|{…,Øx„k¬ÝXA¦±Â#lc…G¸Æ @Р+<À4V4ÉU꺢*J!¢$€)J ¨¢*J¢)J˜¢†rE)T”B EIS”@PE T”" E)R”0EJQÕ¤(Vä;ßMf€j€Ph€Pf€°g€Pd€Pd€Pf€f€b€Ñ¢ßÆwìÓO3 6’bA ƒ´þ¾áXßÏO×°T[„iX€(œuòç÷ú"‚-ÂÌ"†òE[„˜EŒP“J¾°:ü)€Uòû¡=žcŽAÍ‚ÀÌzTÝ™|Ów?\“Ñ æáѽL‚ÕÓ"l2"Ód„qkϱ(^²#Áv„ Xu¿dG$‚íˆGØÊwD"ØŽó”ìˆD°ñ»#cŒ€ÆE¨'s=œ˜õC˜÷£ß:|*L/tûƒCÞÓƒÛÒê-¿²ˆoýö·ŒkÊg!tCù,‚Îb³€å}‰`å}€på}°åýþ ±|Íl‘¸‹‚@Kýh«Ý‰µÍô®iŠ(«î†€°™1©r_ž¸ ¥3°7ƒQX~݆W»; nƒélh=bjL€U¦kÜgÝÙº³Lg%„ à:<â €¶†høõ]t I ¼@Ì Äì°üYÌ €Ä¬LÌ–àĬPÌAÄì†_ßE(æ¡\Ì ÄìÐqYÌ €Ä¬LÌ–àĬPÌAÄì†_ßE(æQL9Ž€y,Àì€ 8áxvI<Þì¡ïÜJ`†÷ÛðGµÞ«ŸÎãsƒÓ[„}CÄRV5bE˜N1Ðb‰ã¡`Á¡hCù"‚-BÐ"F±hQhQd‘fjhQdQdfé7À³YêãUÎí'‚Ü1«nqÛJ V]B¤?ÿjwV^=Ý…˜žÂÚ"LS!LNŽh=1z Â(,Œ €Âèеp9ŒCy‚…QP=ú&.‡qŒÔü!ÌüáfkN6möù°€˜ë¨ÑE– æ"(kÒ=E¸¾½¤²] ‰`± …€±Êc!,Áb¡0£@@»‚D0»AÀú¸@8»‚D0»‚GX»B¿C¼³Ï ΀ؙ¬—ý)»ÓÛÛnúJ²õ:â¯Ï ~%ùr}6ë?w~¾÷3§|/´|߉Ãý÷Õ`û_^5Ñ5»3wçG†é¾€ÕFC@”¤Iùò,ÀL`(€˜ ŒñxV!·W!ïw€wö¹É©'±ÌŸOœþò„ !­G¸†° !áBÂ4„PBغ!tC˜†O0 ! BüpÝ’Ô7 RB!`JM …€)¡,%,Á¥„ ”P” ÀRBXJI 1¥ÄPž SB hJ(L …`)a .%¥„ ”P–‚ÀRBHJˆá(%F¡gèaQäañX9? ‹ ‹0‹%8‹@‹@|Ð@ ¿¾‹ÐÃÒo„Ï#ûÜä侫ùžÄ²Ìãûdkºü 0ÍÌ `ºüóÀå5x@Á ؆Ò5x@Á ØƘ@=Á< €<ýÐÖAS85õì_eÎßmt}Sµ'L—·°íLß LïtÃ× u’—ã ,ŠÀâ ,CqÅAXÅaŒ ´Ä,¬Ä¬¨Äì°:Lû [_ƯQñAÊYf‚=,ۭͫ:—óLGÝ LGG„MhwÔ%5Ú‚XH‹@¸Xx„ÅP ‰`± °±¢B…w‰`…w‰`…w…€…÷~‡øàƒ”É`B=ºYšw{ˆqR¾NŠ £"°BðˆC“èüñQÝ|ñ´Ó|AÑ_p:VrÃñ¦ŽiÇG‹t|Ø|føŸRS€Øñ°”~Uv¼Q€ïàføPª` °£;z®*ÀŽ7 °ãÀ ãáÌ bô"zx;ÀÐtÛ´áºmBwÛ€é¶ñÛmã®Ût· èn0Ý6IŶ@Q ¥HQÀ%TQ¥HQ €%LQC¹¢*J!¢$€)J ¨¢*J¢)J˜¢F¥¨jR¬|žî&s…u…(t…(s…X‚s…(r…(r…(s…s…q…ˆáÈÒoã»:û0é ˆ$ØÄ@j«=|~vþ®ëbk,Ât±a@Τ,_°`‹ð³ˆ¡|Ááf£ÔÄÞàМp`ö†~Gxf&¡™Õ½¶M§ó{\ãYí ¦ïŒ ½ &„]g€0W#LýÒâN¯:ÉïË{¡l/Z®ï…"°½°»Cñ^(Û @€6‹ë{¡l/,ÁîÅ ãEê 'æwfwéw€÷úŽòx±·Ë`zûìþ™?_ëz/a{/O@Á,‚Îb(Ÿ…@ÐYŒbÐÜ ÌÜÎÜàÖܰHüWÜôM¾=F:B<Ïß“âžjÓ ú‚€°·3©ñ_ž¸ ¥3°7ƒQ˜Ka݆æó[šD`<žñPÝØaÂjü~àôGÚöu‡h7ÜȰaC tñÐï@h²H‡åï†kÈHJâDw6‰. Ù¢;ˆDw6‰.éDw6Šîd(]4,7 è†ë¢;ŠD„žƒlÑ D¢;ÈDŽt¢;Ew2”ˆ.–¿PtãɹvN2·N8ÐD4Í%ÿgR#gö"ç\8Ñ@3¬ß†=6çóø’Ú wOÇzènk¦á tÃWR£/X„@°E(ZÄP¾`‹P´ˆQ,šš™$€™‚šš™™€™ú ðl«Ãƒ$8þ8rÇL¬ºÄm+Xu!µ>>ßÏÝ)¥Ít7aº‹0Ý€0y¢E`¬rÇXå.£@°0* £À:ûå0åaF@aôXé¿Æ1P»‚@0»‚˜E,9ùÚŸ<:õQMÏæ g‰0Ýv1×ñ`kíÂuÛÕÇÄ*ˆ…D°XH‹…BÀX å± ‰`±P‹Q `µ]"X¹ `™W \Á]"XÅÝ#lɽß!>ÙÇg@ìLÖËÎá¸àéùÅ5‰vI¶^Gü#ðñÇ]’/×g³npSïÎ.f_/~X-;÷;Äv˜sZj½bg²j¤}ïŽÒmªÓ}«ñ…€(i“Béå X€™ÀP: 0ãñ¬Òk®ÒÛïŸìãS!t‡ï$M樂DaKÃÓ#\KƒGØ–€p- aZ(!liÝÒº¥LKƒ'˜–- ~¸niHê‰)¡0%‚¦„BÀ”P––àRBPJ(J `)!,%€¤„ŽRb(O …€)!4%¦„B°”°— €RBPJ(K A`)!$%Äp”£Ð3ô(ò’x¬œŸ·DÇD˜×ÄœçD ÷D ¾h˜ˆ†_ßEèIé7Â'1‚ãÓû®Ï¾Mìû„múÔZ 0í¸ `úÔ3Áå5x@Á ؆Ò5x@Á ØƘ@=Á< €<ýðÌ>9Ñô1·ë_ˆkjÞ)º…0½ðíì)KÖunÖa;7ë$Ù¯ÏB è,†òYÅ(f­Á¬á¬a­«Äžaêõý>=<9Bý>ïÏþ‹ŒíôîiŠ(«x‡€°4©ü_ž¸ ¥3°7ƒQ˜waÙ†ÏcÿiÍY ¦-äåº-`íþ  ÛB@·…€i ¡„°-\[ˆG|Р¿¾‹®-$)ÀˆY!˜=Ú.‹Y˜€‰Ùœ˜ŠY ˆ˜Ýðë»Å<”‹Y!˜=:*.‹Y˜€‰Ùœ˜ŠY ˆ˜Ýðë»Å<Š o“0o“˜°ã¡5'oRÑŽ7{hÇ;o“˜áý6ü±#”¼å¥&ÓݱYŸõk´¦Íîi¦Ít›]â€(X„@°E(ZÄP¾`‹P´ˆQ,ZIZIYI$€YI‚ZIZIYIYI€YIú °}ñB¹c&VÝâ¶•@¬º„K?‡ƒ§×%®³µÓƒ º ‡ @AA‚…QP=º.‡q(£@°0* £@Åå0Ž1€šA‚™A<À,bÍÉß³×?=Si šÌAÚŠ`:a®ˆÂnæ‚ëoLªÜ×ã ,ŠÀâ 0CqÅAXÆaŒ б ̰°@œ]A˜[Á¬Y¡ßmµÞƒ<°Á$;“ù:ÓT‡¦§×pû>¤h ⯜~¥d6ãŠèvçEw9Åz Åú~‡h¢#„Ü<ÄÎdÕHÝìŽ+ž¦»TQÊv‰Â®NÀÌ†Ò X€™Àgõq põñ~<·C ’uU¿Vúé…¥ë y…#]3H8Òö€Ä#]ëG<Òt|˜a£GUjµ€0Zö6aDܨu¬–ÄB"X,ÂÅÂ#l,†òXH‹@¸Xx„Ũ*ìJ«ìJ+í*¬íöâçÙ1÷,㈠)ƒ0ûDóø~°u¼¦žîÅKj’× C1aTV‰\ñÜAw¾;ø>G7I¯?DÙéxX: Ǜ™=DÒñ¡×Ìð?¥ ¦ 0 °ãaíöªìx£;Þ)ÀÌð¡TÀ`Fv<,ž_U€o`Ç;8€>ÆÃ™ûÀèE´ûìŽÀ›îP\sÇË#\s@èæ˜–6wx„mîð×ܺ¹ts‡˜æŽ¤âY (…€ŠR¤( `Šª(€ŠR¤(@Ц¨¡\Q ¥HQÀ%TQ¥HQ €%LQ£RT5) Ö?Ow“.‚:/Z0‚y1,Á™2¹3Ù4€ù57€88Äpdåè·ñ]›}–qÄF’@lb õzÖûòê\ãuMSO‹0MS…3)×,B Ø"<À,b(_„@°Ex€YÄ(5±=x4-œ˜í¡ßÖ´ÂggAhfÕ¯ÝyšÓëh×õÔ„i{Ê@@ç@„Oa:Ÿ0"n8J¬;"lGz vD"ØŽx„Ý‘¡|G$‚íA@7FÁŽHÛ°;2ÆhŽQ„z"@SÈ™c™cúðªÖ7—íñNÑ-„Aè…os§àó{‹°-‰ƒ `Ag1”ÏB è,F1 h…f…g…ðk…X%þ£î­ñ5‘¸‹‚P¿Ï7å7m¦Oñ a‹aRù¿< p3Jg`n£0ïº ‡ã§?b®y£óˆf’u)ÖîϺ¯tƒ˜NJ[>Àõ~xÄ-Ñðë»èÚB’|˜‰Ù  Ი‰Y˜˜-Á‰Y ˜‚ˆÙ ¿¾‹PÌC¹˜‰Ù £â²˜‰Y˜˜-Á‰Y ˜‚ˆÙ ¿¾‹PÌ£˜ò6 ó6Y€Ù;ZsÂñ&íx³‡v¼ó69€ÞoÃÛ5Ýñ-/5™îßW¯ŸŒ5mv/‹0mvð½&†mv‰¢`Á¡hCù"‚-BÐ"F±h%Qh%Qd%‘f%j%h%Qd%Qd%f%é7ÀóU-ÿß­Ägç@U7‚¸m%«.¡ÆÒ¦yîú§×%®ói¦t&@A €‚‚0  £ 0zt1\ãPF`aTF€>ŠËac5ƒ3ƒx€YÄš“ûñówQÕô|-¢ÓãH¦Ç \cRé.ˆ…D°XH‹…BÀX å± ‰`±P‹Q  }A"˜} `½\ œ}A"˜}Á#¬}¡ßí#ûtã ˆÉzÙÙ d?ÿLÏ/®÷“dëuÄ_1ŸnüIòåúlÖ ~×»£‰³Ê÷AË÷ýÑfŸnœ±3Y5ò=Î;çlß7DI›œ/OÀÌ†Ò X€™Àgs pó~<Ù§'BhëÇ{ËÏùÓ_¢°a¤ó×0â¶a \Ã@˜†JF@7Œ€nÓ0â ¦aÄdÈ®F’zgAJ(L  )¡0%‚¥„%¸”P” €RBXJK  )!†£”ÊSB!`JM …€)¡,%,Á¥„ ”P” ÀRBXJI 1¥Ä(ô =- <-+égäiQäiQæi±çiQèiˆ/*¢á×wzZúðiWÂëø(BÞwµÏ]ÑñûnââÉ Ðåòü~²õPrM“I©ø:a(&ŒŠÀ Äk š °Ó¾Ú ßê½-À4eP@ô—œŽ‡Ýp¼©gÚñÑC#6e@€þ§TÀ`Fv<,©_U€o`Ç;8€>”*@˜,À(Àއž†« °ãìx§0ÃÇx83…X½ˆ>w_qœîmÂþ„.êºnÄPÝm£NÓ »lâ¡¶»&êºjÄHÝM#ê.šx éžI*®”p6*ál(RÂé@¦„“¡T 'C¡ÎF"%œ DJ8È”0\WÂÙP¨„³¡H §™N†R%œ …J8‰”p6)ád SÂx¦„jR¬v…¹&N†R·ÄÙPè’8ÊÜáHçŠ8ˆÜg‘ âl s?œŒd®‡“Äíp2 ¹úm\÷Ì><9b#F VÐBm¢Ïî½ë­eGö¾,Âtia@ΤÌ\°`‹ð³ˆ¡|Ááf£Ô¤\ï°Ø~`åú~Gx¯NÉe­ƒA`f½ªÇîÏ©½ÂuV=ÂtVe `Å\ ÂÎ*‚˜ß¸›¢œGÄýLIÉ»`G$‚íAÀÚ}ÁŽHÛ°;2”ïˆD°!è"(؉`;âvGÆMŠPOhf8#0S‡"0SG¿^Û¸öx§è ôÂw8=eª5ºŽÃÖ"lÇaR/˜…@ÐY å³:‹QÌÖò%‚óÂUó=–óW‰ÿÈ»MßSÛÓs Ôªòjw'©Í ž¥Á*·! ì`L*Ø—g`nCé ,ÀÍ`Vƒ_·á€˜Û’M;ÃÛ#t;Àô`úC ‹øg€éíU”`Ú(!lg×Îà_´"Dïï¢kgH ÉbV$f€åôËbV$f`b¶'f€b"f7üú.B1åbV$f€Î€ËbV$f`b¶'f€b"f7üú.B1bÈ£#Ì£cfìxh1 Ç›T´ãÍÚñΣãfx¿ lçßtÇ·¼Ô,yèzX¾QkÚÃ:‹0ía ÛÃGAÁ"‚-BÐ"†òE[„ EŒbЪ¡в¡Ⱥ!ÌÂ!ÔÊ!ÐÒ¡ÈÚ¡Èâ!ÌêÑo€gWUçW9·ŸrÇL¬ºÄm+Xu!5Lvjw`àôºÄõ¾,Âô€îÄè!ˆÐCPF`aTF€.†ËaÊÃ(,Œ €ÂèÐGq9Œc  f`f0‹Xs²iw'™ÖSm šž¢E<Âtê„iÕ׫—Tº b!,Áb¡0Cy,$‚ÅB"X,Æbh_f_ X/g_f_ðk_è7ÄöHO΀ؙ¬—­{§úúSA+éïÿyHׯ_1Ÿ¼°†æ³nòÞãPn-‚–ðûâ™}€rÄÎdÕÉWõ‰xºW`õÒ%nRt¾< 0J'`fc<žUÍ-ÀUÍû ðÜZð“$uUŸ×îðµéòéš;Þáš<<Â6{„kúÓüA aèfÐM!`šC<Á4‰x€lñÃuÓHRó,H …€)!4%¦„B°”°— €RBPJ(K A`)!$%Äp”CyJ(L  )¡0%‚¥„%¸”P” €RBXJK  )!†£”…ž¡¯E!¯Å`5ý €|- €|- À|-–à|- }-ñ@SE4üú.B_K¿>Ï£ œÜw½ëjwàì÷ Ûtv`š`úC¿•py P0¶†¡t P0¶†1&P_†@0_† _F¿¼³PN5½½9}ÐÒõV½p&món B3«{íDž|]§Ú L§Zº"ìT#Ó©†qXb(؉`;BÐQ°#ÁvÄ#ìŽ å;"lG:2 vD"ØŽx„Ý‘1F@ƒŒ"ÔCÎÌ £Ì Óo„W}u„^øÿLŒ)žá½æÓlïfâ!¸>‡˜@ç0Ï!&Ð9Œñ B˜ œ ¬ bö÷àè¼Õ·GPç@ Ó§ýž:¼U3¤I¡;&„M  áOñ,ÁÎa(žƒ%Ø9Œ‚ ëf F³&L_ÈÇ#t_°Âý)@÷…€î ÓB a_¸¾ø˜#~}]_È'ÉêëbV$f`„ëbV$f`b¶'f€b"f7üú.B1åbV$f`vŠëbV$f`b¶'f€b"f7üú.B1bÈØ$ÌØdfìxæË‰Ç³\âñfíxglr3¼ß†?¶ƒ„’W¼Ðaú= {JÓ\÷>g:ê¢Qºî\ù3瘎csüÇ(4ÇáâÓqlŽÿ…æ8¦s„ÎŽŒƒvŽŒCŽŽbÆtuk¤ã EãÃ/ã£#ÅýnÔ»ªÎ¯n7䎙X"ˆÛ5±ŠAèÇl«÷3ûÔÜÎ"Lû"L†ˆhÀJïÀJï%aF@aôVü¿Æ¡<ŒÁ¨(ŒÀì×Ã8Æê¡æ¡ð³ˆ%'g@Ï߃}TÓu´ˆ@˜ö@‚˜k‰‘"µ Ä%± ‰`±P‹¡<Áb!, c1 ¬úK«ú+3+„«úK«ú{„­ú÷¢mÖÊMrÖŠ (Ø™¬—]·Ðìsµ«$[¯#þ üçG’/×g³npSï_Î*} ­}÷;ÄöÂ%i±vó ;“U#í{wöï,´é>–CB”µiÁöú,ÁMa(ž‚%¸)Œ1-ÁûðÜŸäAÝQVAüž…°&êt u p a.Â5\„i¸ „°átÃè† 0 ž`.<@6\øáºá")¤„BÀ”š SB!XJX‚K @)¡(%€¥„ °”’b8J‰¡<%¦„@ДP˜ ÁRÂ\J(J @)¡,%¥„”ÃQJŒBÏТÈâ°}@¶@¶`¶Kp¶€¶ø '!~}¡-¤ßŸ×JHž%ƒœÓû®cÛ÷òwa÷Ù›L³°Lbà7®¯Á fÀÖ0”®Á fÀÖ0Æê‘f—Päœèw€Ïñ4:ps¢éú±ÿ*ó÷EëKêž@Oƒ n+-Àº¡Áï·ñu|rîöªî´Y)®iïc¦itÓ^â˜(X„@°E(ZÄP¾`‹P´ˆQ,ZOZOYO$€YO‚ZOZOYOYO€YOúà³>ÇËœÛO¹c&VÝâ¶•@¬º„QÛ×þ<Çnº1o‹0 ;:1zbô„Q X…Ñ ëár‡ò0  £ 0zô]\ã¨yD ˜yÄÌ"Öœ|ïË Óã⣚ž¢Eta:& ÂtL„ë˜L*ã± ‰`±P‹¡<Áb!, c1 ´;H³;¬¯ „³;H³;x„µ;ô¢m×fz¶uÄÎd¹ììîÚîÛáYÐõ1]KÅ ~¼u}L™’ùŒ+£Ûys*þ1üû¡Ë>Ý:bg²ª¤nvOx³£dºS€uÕ¾ÉK*Ô×§` n Cñ,ÁMaŒ°Ên ¶ÊÞo„çvBú¨î(« ö¾ü¥d2ýQ {MÒ·šg ×l¶Û„0\» a˜~ŒNAwœ‚n9!Ós¦é¦g«ëãuÛÉøsCz(MÁÀé¡4=¦‡EØôP–ŠÀÒC`zLA@é!ƳônHÅ é!8=ƒ¦‡bÀô°›ŠÀÒCXz(L€é!(=Äx–£6uÅ(sÅx­¾Ÿ˜+F˜+F +Æ"¬+F¨+F0¾jƈÆl&uÅôâ³!’Gð0ìÜœuUó˜>Àk ?n é£>h ¿Aö\ãþ‹l®ÃÕ¹Æ/üÙ\Çޤö‹“¡Ìvq6Ù-úm`[eŸVjpÿE>v:ñÛ¦kPØ™¦Å ¦×·áϤüx=ŠÀâ ,ŠÀâ0ÇAXÅAXƘ@«ÉÁªÉ €ªÉ ±1À„±ßïfùËœ”áâÀ 7ÌÛU^ß/w,™¾<âší:€0Ívö§aDÜl—”c b!,ábá6Cy,$‚Å \,<ÂÆbTˆ ÕØ%‚ÕØ%‚ÕØÖØû Q?ÓÊŽ=­:âBÊ ÐÐòjvGhÎTÓHY'¹v™0FA€uà5Ï]Géü1د¸âWsKp}”>ùS­Þ†W·´€ð™â> Hpãÿ+A ,Á)Áhý²,À)Á¬ÁŠ• P –à”`ÔËpY à”`V ŽàÆñxè±|eí>»×ªÓ½‹kÅI_ˆž1\/aèfD˜Vvã†mÇ ×Cº!‡tG ˜–œ…ðçi)•–b0iI”–``i •–B0i)“– @i 7HK1¨´ƒIK ´KK0¨´‚IK˜´JkTÒª&iÑRçé¦Bkˆ``kˆbPkˆb@kˆEXkˆ"0kˆ"0kˆ"@kˆ@@kˆ kˆϬ!ýèV@â³ϳ΀ø`ˆÏÁÞÛo]v«~|)®îc¦¢x&uû‚E[„˜E å‹¶0‹ &~€î†3óGô¡~¬¦Ç·ÈñÖYšYõkw¨êô„ìº×Þaº×2к a÷A˜î5Œˆ{ÆïAÁŽHÛ‚€&Š‚‘¶#awd(߉`;BÐÎQ°#ÁvÄ#쎌1ºk¡žÐUrF`îE`îš~#¼Úì­³ ô·?txþ$±kéì,Âöt&„‚YÅP>  ³Å, —B"˜— œ—Â#¬—b•øº»åN h¡†¡îP’˜—giÀšyHˆ›CëDâ—ç` vCñ,ÁÎaèX7ã½?{îÿv­ Ï0­ ˜@ gÓ ¦\+EÄ­ €`[A<ãK ~h|ÁfÚV¤ˆ_¢kÅ`ºöjg¸®kE`ºV¨k‹°ºVªkÁ@ºvã 6“êz¸A׊Átí Ôœq]׊Àt­P×au­TׂtíÆl&Õõ(¦ÀLS‚MS–àöÁ¨Ý'Ð`B€ÛJ °¦)Gpãûmüc=‘(©@aKëæëýýgzär}|iÙç„aúAwö-„?7¬C0à:­c¸a‚סl£X5¦(5¦(3¦H4¦6¦5¦(3¦(3¦4¦ôaûÚ>â:‹rË\¼ÐÅî.¡x™! v±¾›}#äô1× ú±Ó º !@/BA‚…QP=º!.‡q(£@°0* £@?Æå0Ž1€šJ‚™J<À,bÍÉC‡öôù¨¦g‡ho€0Í–aš-Â5[&ó‚XH‹…D°X(ŒÅP ‰`± …€±Ú $‚Ù ÖÝÂÙ $‚Ù <ÂÚ ú Ñ>×ûfzÐuÄÎd½ì>P3=ÊØfà&Iׯ_1ƒtÝ$)S0Ÿu“ßõî˜êGŽ@ ¨ ß!ÞÑ Gnbg²êäóÞzÄG]§7gí³Ù —_ŠiEL+b1~ÐåŒ`šÄŸâexBÉà2†âexBÉà2ƽ‚½ŠÀ¼ýFhÑK'ì"úíÇßú?¾ÍI®Óëã Ó/lÓé¦Ó+©v^ƒ"°8(‹ƒ"°8 ÅqPE`qP‡1&Ðâµ@°âµ âµÀºo 0aì7À»]î$ð¹ÚYf‚Ý1Ÿï­Ñ‘éîÎõü½ÂôüqDØ&‡qÏ_Rý-ˆ…D°X„‹…GØX å± €p±ð‹Q!*TÒ—VÒ—VÒWXÒï7DýÊ>W;âBÊ Ì?ó3ºÛH=•J]Cç±]‚Ê£BÀÒóŒfï©ï¾éÑRRY;#¸–J"(–‹c€+”Z@øPIqK$¸ñŠ• P –à”`°j] à”`V ŽàÆÅJ¨KpJ°hž¸® pJ°«GpãÇx<´ X¾²>Y8¿ÕŸn≇gØf À0Í@„0­$nò ß ä¶ L3 ˜f OpÍ@ä:Y -Å ÒR &-I€Ò ,-Á ÒR&-E`Ò(­ái)•–b0iI”–``i •–B0i)“– @iJZÕ$-X[=ßTèE ìEQ êEQ èE±ëEQæEQæEQèEèEäE㙥ßÝú}ê´dïf >˜â3„@¨Ù÷9½'úv=wIeu7ÔôÚÙaتäoþdÿ9N6è&;\Ÿì?‡ÂɆÝdǬ‘ã!] ûÐßÐo#ëÄÞà¾Î‚Ð xTìs}?aÚ2Ì^ aCAÌõSÁôˆ¸ìè(Ù‰`;BÌèP²#ÁvÄ#ìŽ å;"lG‚Y.JvD"ØŽx„Ý‘1F@Œ"Ô9?N Ì£ÌÓo„×sýp<’Ä.„Aè…o÷1ˆåÇ®Éóm¶Éó$ûõYÅP>  ³Å, ßA"˜ß œßÁ#¬ßa•ø¼ßUu.q ¦žç£Ýl7µgeÀ’vˆ{E“êþå8€ÁP:°3ct'¬ÛðÚ#æ\SHí¦)heþŒ`šBÁ4…‚k ¡ˆ¸)lSˆg| Ô¨/ØLÛR'É] kÅ`ºöê3¸®kE`ºV¨k‹°ºVªkÁ@ºvã 6“êz¸A׊Átí Ô5q]׊Àt­P×au­TׂtíÆl&Õõ(¦ÀÜL‚ÝL–àöÁ¨'À£`b€ÛJ °n&Gpãûmüc=›(yŒ½¦û¦Òõ³Ä®ñîa®ñLã]âq(Y‡`Àu([ÇpÃ:®CØ:F±êQ êQ æ‘è ì êQæQæèé7Âë±ޝeÄ¡×9”[æâ…Ž(vw ÅË Q°½ôçßízœîRL§fZ©2ºMÒµ€ñWÌàÇ`·IÊÌgÝäg·;úÎquô;Ä'ûì ˆÉª“®Ù;wýòMÑéÏRÜ«8í©¥÷¨M½? æûãÚ”àZ¤Á5&&Ž…ëËð„’9Àe ÅËð„’9ÀeŒ1»?º?¹?úÐÖçÖ$n+:¼#¾oêz¾ÒÒÎbºà…½Raº¾´}¥•Ï‚X(Œ…BÀX(ŒÅP …€±P …€±c®g ¬g+«g{­ÇË~#¬_ÇàÇbçQî˜ wÐ4¯nwXîtÃç:?a:9"l¢Ãˆ¸#0)ÄB"X,ÂÅÂ#l,†òXH‹@¸Xx„ŨªòK«òK«ò+¬ò÷¢î²OÆÎ¸2´Ô4ßjL¶ë3©K †rĨ°½cßk°|¹Öô4–àúF(!ü#O´‚\íÔÂçL ˆûF ÁÿS¬A€J°§  …üËJ°§ °Jp7~(V‚ @%X‚S‚P?Åe%X€S‚X%8‚?Æã¡+Åð•õðjw>Ôu Õža;†Ãt ‚ëò ß1ä¶c LÇ ˜Ž!OpCur,–bPi)“–$@i ––`Pi)“–"0i ”Öpƒ´ƒJK1˜´$JK0°´ƒJK!˜´IK ´F%­j’-·žn*´§¶§(µ§(´§X„µ§(³§(³§(´§´§²§ˆñÌžÒo€w•}26‡ø`ˆÏÁþßÃ÷‹gŠmÉ{X†kÉÄ0¢‰# d‚×á nà ë ¸Opë¡Fö O Þˆ3´Wô¢nž{9…;‚“¬{íN‚Þo»~º´ºwÊ0 u9 joŒ°¥1LOgÄ­l ãÏ û"p_ƒZ-JöE2à¾x†ß—á†}‘ ¸/„Am%û"p_<ÃïË3¨G!ê Aý'gèÅQèÅé7Äk{ú9ÞLÚµ0 ¾~öÿLÏ}®÷ôc¶÷4±*ÌB è,†òYÅ(f=Á<á<a=‹ÆÕýYîäðéÜ9j,zþÈô‚»VØâ&ÖÄcp}–`ç0ÏÁìFA€F‰u3šÏ® 5ÛF\ËJã¦e¨IàŒ`ZVÁ´¬‚kY¡ˆ¸elËŠg| Ô3/ØLÛ²’úKt­Lמ@-×u­L׊umV׊@u-H×n|ÁfR]7èZ1˜®=8®ëZ˜®êÚ"¬®êZ0®Ýø‚ͤºÅ˜±J ±ÊÜ>Xµ…zPMp[iÖXån|¿¬''¥çÜ`ßëîÆ¸Z˸®/°¶ צ/°Nþd¬C0à:­c¸a‚סl£Xu¯(u¯(s¯Ht¯v¯u¯(s¯(s¯t¯ôáU/€´ËÞn+¢Ü2/tD±»K(^fˆ‚­®Ï÷óÓtÓ! ¶kôŽuÝ¢bäd çkGRKÂ?GR+•Œ…1:Éb¤v‡ü 1: ct6’Å(I­ù1ÿ9[@NÆBëG<ÒÍwɘ×áXmvúqZ…:eÌÕÒðJGs¥“öAŸ1\käÂøsC<$ÆC2`<ƒÆc¸!’ã!0ŠAã1 u(Ht(-† †u(Ht(x†w(ô£ÝŒ¢çdçPü\ÖëÐþ¦úw7Hï3ÉÝÆ_1ƒŸ”ýLr§`>ë>7õî˜ë&§B/´BßoˆOµ®†ž”±3YuÒ¾·ã•ç›ûéŽÖA#@˜¼IAùòÀM`(€¸ ŒáxXw[ï7Às=!}sh)«ºý·æN–â&’Æ3l‰gø&À°M$€ášH("n"ÓD¦‰\‰G¸&OÐM$~¼i"Ij˜%é¡4=§‡bÐôP ˜aÓCXz(KE€é!0=¥‡ÏÒc¸!=ƒ¦‡`àôP šŠÓÃ"lz(KE`é¡0=¦‡  ôãYzŒBÚÔ¾¢̾⠴L~F`öE`öE€ö‹°öE öÁø¨k"_°™Ô¾²>ztuU¸ä„ìôæì³ïØû>’»¦Áš\«´"L{ð·2®/ÃJæ—1/ÃJæ—1Æì¼ è¼Pæ¼è7BÛ¬¾ |Dv"ïý‰Ÿéã§¶ýêáÓ/nYˆf~OQ€píWIù²  c¡0 c1”ÇB!`,ÆB!`,ƋԂ‹ÕŠÀŠÖž@‹Á1ÁŲßï×rk‘ÜØP È 3á–®­w!™k‡¦'/­éœ2LS^#ld㌸-oaü¹!’ã6žáã1ÜÉ€ñ Ïðñ£b5É€5É€5Å 5ÿ~cÔë³Vrg'B 6ªB­6Ý÷kÃ‡Š“mÀLªÓˆ¡1*¬I¯ÁxïN›™?qkZ8ZKp-”þŧZH®ŽjáS'Ä-àÆÿ)V‚ @%X‚S‚Њþe%X€S‚X%8‚?+A ,Á)Á¨µâ²,À)Á¬ÁãñРb ôÊú®ÚÝŠ“±Øöî4ža{wÃôî‚ëÝñ ß»ã¶w Lï ˜ÞOp½;IݸDZŠA¥¥LZ’¥%XZ‚A¥¥LZŠÀ¤%PZà ÒR *-Å`Ò’(-ÁÀÒ *-…`ÒR&-A€Ò•´ªIZ´øzº©Ð¬"ج¢Ô¬¢ЬbÖ¬¢̬¢̬¢Ь"Ь"Ȭ"Æ3³J¿ÞÈO˜Añá$Ÿ$ˆ‚Áûo«-ß\¶ zµe¸F=LcZ'› Ö!pžàÖ1ܰÁ€ëð·ŽQjd¸ðê–8#@ÃE¿!êvõ¯v%‚“ì{@àòÆ~j­±vÀ˜«á½Nƒú#î°# ×a‡¢«-ñ+”ì‹dÀ}! ê½(ÙÉ€ûâ~_†öE2à¾õ”ì‹dÀ}ñ ¿/cÌ æ…¨'5¤œ! 9G! 9§ß¯ný •âk×Â(øZ¸7ÇÌPv]¨i õ„aÛPÆŸæ!xà ó L_fzTÓã„;‡\2æJnxå%Œ¹ Kû¶Ï¶w3©°—ÄC2`<$ÆC1h<†â!0’ã¡4£`P÷„d@÷aÐB½`X÷„d@÷„gx÷D¿1Ú÷¹•Ì@üLæ«ÐzúÄ™wl—ñë¹EŒ¿b?ÍûuÈœ¢ùŒ+£ÛÅÝfùûúñÙºÀ“2ù ?“U)u³; z¦L·¬0Âô}&B»<KpSЧ` n c €ezK°eú~#<·£’tµ”Uûn€å›¥ÓŸ§¸Ù¥õ Ûìâ¾Ù0l³ `¸fŠˆ›]Á4»‚iv×ìâ®ÙŦ§®ëãM³K›\¬ ÒC1hzNÅ é¡0=,¦‡"°ôP–ŠÓC `zJ1ž¥ÇpCz(MÁÀé¡4=¦‡EØôP–ŠÀÒC`zLA@é!Ƴô…´©­F1˜­Æ`ùþ”0=nCÄ)ÙjÚj,ÂÚjÚjãK€nŽp|ÁfR[ÍúèÑvÕc}íÑ=âs½Ó›³®Ú~ü}€q %¸–nEpMòGôò2<¡dpCñ2<¡dpcŒÀŽÁ€ŽE`Ž~#´íú¾è˜bØk4{~ÇÚÆ°:8]Ýâªp k N/ƒã×§u¢ýÜ5þs \ã?Â5þs \ãpuÿ×øÏpÿ×8¦q‰ù#aaùŸãX99‹¯ÿç"ÓoãÞÝòŸ–¹a&Ø©òz<ºüÓ€áúð8#î[à чw¬ºÅC2`<ÃÆÃ3|<†â!0€aãá>£bT¬¢.°¢.°¢®´¢ÞoŒú³>’Ê­›ب"4²¼Íîp•éN϶[&ÕßÄPŽÖ|×`ì¿=ξÇá ÏÓ\»„äáxZ¡Æ»Ò¤>ÅÁñq§¸áJ À)À§ò« pãÜx«pÇRĨp pã©?áªÜx§7Þ*ÀÜð1 €/¢Ýg÷’tþæt«·)´žaûqÃôã´’¸Ç3|?ŽgØ~€0ý8€`úq<Áõã$5×i)•–b0iI”–``i •–B0i)“– @i 7HK1¨´ƒIK ´KK0¨´‚IK˜´JkTÒª&iÑÂåé¦B£‡``£‡bP£‡b@£‡EX£‡"0£‡"0£‡"@£‡@@£‡ £‡ÏŒýx×ë‹ :)ˆ»iŠ'¡ø$A즭÷eÐù+˶魱 ×ô† aL“úzÉ:®ÃÜ:†Ö!pžàÖ1 BÌ ž@ghVè7Dý\}4ÉeÃ.…QpšÕ¯Ý!¬Ó9޶O­ ×§–Á ^ÁˆûÔc®v¸r©gˆî°:Iú‚}‘ ¸/„Aý%û"p_<ÃïËpþHÜ ž’}‘ ¸/žá÷eŒÔ4£õ„ Ö’34Ò(´Ôôâõ^+rIÒ®…Qðµp`ñ\ùµÝœËðÝœ‰C¡d‚ç1Ü0ÁÀóÅ<¨ÛB2 Û0¬ÛÂ3¼ÛbUûóGãË]]ªvDÁî¢ïàxgçÚL_7ˆ&Þ‚ës°;‡¡x–`ç0 4H¬›q8Y{>*ݵƒ<=ôƒ`µœL; ˜v@pí ·ƒ‚mñŒ/úE¢ñ›iÛA’z‰®ƒéÚ¨ñẮéZ ®-ÂêZ¨®éÚ/ØLªëá]+Óµ'P;Çu]+Óµ"@][„Õµ"P] Òµ_°™T×£˜sX ´XY‚Û  ¡àÓÜVZ€õY9‚ßoãëͲÛ_cËëþ=øú±c×s×Z†ë¹Ós—80JÖ!pŠÀÖ1ܰÁ€ëP¶ŽQ¬ƒúYƒúYƒùY$úYûYƒúY‚ùYùYúYúðj?;‡rË\¼ÐÅî.¡x™! 6¿6Íþøóé‹m m,Ã5‰Âd. × ÔÀ¨¡$–‚c©,–ž@M×c9ÜKÁ€±TKO FŽë±c6¤4¤x‚[Çš¡¿€µú0}oéQMá:jÀp=š„1WaiöÃöhÖI–ÄC2`<$ÆC1h<†â!0’ã¡4£`P÷„d@÷aÐB½`X÷„d@÷„gx÷D¿1ÚÏZåÂÇbgPü\ÖëP·»ÉL<¶Ÿ¸Kr·€ñWÌàçbwIîÌgÝçw½;Óú™å ìè7ƧÎ>›CüLV¥|„OÌÊÓM,͆„0“"÷õ)X‚›ÂP<KpSc,Ô[‚-Ô÷á¹ʼӴ”EmýØ’7‹tú7¼<=Ã6¼x†ox Ûð®á…"â†@0 /€`^Á5¼x„kxñÝðâÇ›†—¤ºZ’ŠAÓC0pz(MÅ€éa6=¥‡"°ôP˜ÓCPzˆñ,=†ÒC1hzNÅ é¡0=,¦‡"°ôP–ŠÓC `zJ1ž¥Ç(¤M5ŠÁŒ5ž@ øgf¬Qf¬Qh¬±k¬Qj¬Œ/ú9¢ñ›I5ýŠØ¾1žq.vzsÖ>sObn)~ýåŒàšÃõexBÉà2†âexBÉà2Æ=!‚=!ŠÀà ñ À°ñð Q1*f h hP jè7FS­Uš¤Îì&B 6ªB}7Ïïw†E'Ûš”ª C9bTX ^ƒ±÷ç>Ð ¾/Kpý%”þѧZR®˜jáƒ'Äý%àÆÿ)V‚ @%X‚S‚ÐÊþe%X€S‚X%8‚?+A ,Á)Á¨Áâ²,À)Á¬ÁãñЦb øÊúÜ?ÒÍ_ÄtEOϰE€a‹Á5y†o,ò ÛX¦±Lc‘'¸Æ¢¤t\"-Å ÒR &-I€Ò ,-Á ÒR&-E`Ò(­ái)•–b0iI”–``i •–B0i)“– @iJZÕ$-Z=ÝTèW ìWQ êWQ èW±ëWQæWQæWQèWèWäWã™_¥ßïÍ”œÖõÝ4Ň“P|’ 6?w¢²íÞk-ÃuïaBÓÄ&P²Á€ëð·Žá†u\‡'¸uŒ‚P#Ï…'PÃÄz.ú Q¿V;P}¼lØ¥0 M³Wõý&Öw´m´kÄX×`ÆRsÃÉØ¸¡Nutv¬hZKLWâ|:ÆY¥Æ‰+q> ãõq â|:ÆY¥¦Œ+q> ãõqÿ9–:aΆÖÓPêúØ…Η³¡ÐñÒoC_Ÿµöu¼Òú¹3 ¾Î2†ÇC×–á›<ë$G æ!xà ó ;¹9{×Õî —oG‡ë|R‚ëV„éoþ"ÆõexBÉà2†âexBÉà2Æ]!‚]!ŠÀ\!ýFh7ËÓ1Ÿßh÷­­jþð©íòj=bºâÅSẾÂu%%Ñ‚X(Œ…BÀX(ŒÅP …€±P …€±c.t ,t++t{-ÇË~#¼? €ŸƒE¹c.ÜZó~u»³pçêº~À0\? gÄýs˜!ú“2qI<$Æ0l<<ÃÇc¸!’ã6žáã1*FÅ,’-’-ŠA-ýÆhi©É„C±qej¾y?-¼PžSq×t~&õêÄPŽV©—`|v]°KÏt—t–àÚK(!ü»O´ª\=ÕÂgO ˆ{L ÁÿS¬A€J°§  ÅýËJ°§ °Jp7~(V‚ @%X‚S‚PÅe%X€S‚X%8‚?Æã¡SÅð•µÞ¿î?‚麋^ža»‹Ãt‚ë.ò ß]ä¶» Lw ˜î"OpÝEIõ¸DZŠA¥¥LZ’¥%XZ‚A¥¥LZŠÀ¤%PZà ÒR *-Å`Ò’(-ÁÀÒ *-…`ÒR&-A€Ò•´ªIZ´{º©Ð²"ز¢Ô²¢вbÖ²¢̲¢̲¢в"в"Ȳ"Æ3ËJ¿ÞíúŽè™”öÝ4Ň“P|’ ö¥™š}m ßÓ2\ &„1Mœ%ë ¸OpënX‡`Àux‚[Ç(5²]xõLœ í¢ßõzÙIϰKaœfÝë¹;›ðK±]w-`¸®» õ=FÜuG®ë3D§[â[(ÙÉ€ûBÔƒQ²/’÷Å3ü¾ 7ì‹dÀ}! ê)ÙÉ€ûâ~_ƘAM: QOjL9C@“ŽB@“N¿!º*ê´ka|-<üÓM”)ªñMic¾35±/”ÌC0ð<†æ!x£˜µbH´b†µbx†·bÌjï~5ÞTKÖ᣻s(ÔzÔM‡ö/”vz…5…•UÚcBÜêztÌÁì†â9X‚Ã(Ð:±nF³+L-¢p-g˜ÆL€¶S‚ilÓØ®±…"âÆ@°-žñ%@I8¾`3mcK—$x®ƒéÚ  ¢@׊Àt­P×au­TׂtíÆl&Õõpƒ®ƒéÚ ¥£@׊Àt­P×au­TׂtíÆl&Õõ(¦À¬V‚­V–àöÁ I(Àãlb€ÛJ °V+Gpãûm|½°”¼:¦NØnï¶Z¿qìº_–áºÁt¾’?ë ¸E`ënX‡`Àu([Ç(ÖAý,ŠAý,ŠÁü,’ý,‚ý,‚Aý, Áü,ŠÀü,‚ý,ýFx½?ã;‡rË\¼ÐÅî.¡x™! 5¿vÕû¹;ywzãb[LŸ–áZLÁ´˜b4040ÅR0`,ÅÒ ‰¢ –à ± KE`±ôhä(ˆå°!E0 !ÅÜ:–  Ÿ ÕôN¿‡ºvM1t.µÂíýPÛœy¬ž_YëÙP¸Ö³¡p­'CéZ‡ëk= ×z6®õd(]ëøÏ¡ÔÈp6úÄPX!?jÝ gC¡I!ê½ ý6ôùXkHÉñ46b„âç²^ö·ÐéqÂöñ~’Ä*`ü3ø ÚŸDüóY··©óOÐn,×åûñi#×… ¡ø¹¬Ziw‡œ,Š›þHÃÒgH6)"_Ÿ‚%¸) ÅS°7…1ÀB¸%ØBx¿^Ûy¯äÑÙQVAüqtzÙ~’Î"l;‰Eøn°Í$ázI !n%ñÓI⦑Ä\‰%¸6 ˜f.7M$IŲ %‚¦DŒÀ)!4%¦„#Ø”–ÀRB`JĘ1¥D<œ¥ÄPžAS"Fà”šSÂlJK `)!0%bL‰€R"ÎRbŒõL=)Á,)@+ß'fHæGhGqëFjF‰_µ@ïï"u¢¬Ï]]µ+!y–ˆÄNo¼­x_Šë|QB¨@pÝ€Iáÿú2<¡dpCñ2<¡dpcŒÀ& Á€& E`&Š~#´Ýú(i*Çöœz—éóWPmWÕÓ#¦Ë]܉®« \WURA,ˆ…BÀX(Œ…BÀX å±P …€±P‹1Fະ`Àº°"°º°'ÐzjLp±ì7Âz õ?¾•acÁ(wÌ…;Qê¶Þ‹;}ÅöÙµ€áúì8#îKà Ñg—eKâ!0€aãá>à ñ À°ñð Q1*V‚— X‹— X”W Zï7ÆvÌ?;‡bãÊ(Ô½R¿3|($َʤ]€Ê£BÀ²óŒ÷®xÍŽ¿}[‚ëÉ „ðï>Ð2qpR Ÿ=) îÉ€7þO±*Áœ,€Vë/+Áœ,À*ÁÜø¡X ‚•` N @M—•`N `•ànü‡ÖK WÖ¦jwg$N÷0¶§ó ÛŒ¦‡\3ŽgøfϰÍ8ašqÁ4ãx‚kÆIªÄ%ÒR *-Å`Ò’(-ÁÀÒ *-…`ÒR&-A€Òn–bPi)“–$@i ––`Pi)“–"0i ”Ö¨¤UMÒ¢ØÓM…îÁÀöÅ þÅ€‹°E`E`E€&€.A@61žùTú ð~®ïˆŽuGq$vŇ“P|’ 6û6‡;ñ‰b;Þ^–á:Þ0!Œiâ(Y‡`Àux‚[ÇpÃ:®ÃÜ:FA¨‘í¨gâŒmý†¨ß«#¨=^6ìR§ÙsæßôÌl;㞀áZä2Ô÷ qÓa¸î9Ì­k‰o¡d_$î aPFɾHÜÏðû2ܰ/’÷…0¨¤d_$î‹gø}c5é(D=!¨1å M: M:ý†ØÚDÓcRìZ_ ·’ðgùR²m5m-÷š&ö…’yžÇpÃ<Ïcó V É€V À°V ÏðVŒUíÝóÑVËÝTÒ¶n#‚(Øz´?ðnùüô,Xi qïjâ:¸>K°sŠç` v£ @ëIJí$¶ §?o¶åí¦Ÿ¨màŒ`:ZÁ´´‚ëi¡ˆ¸©lW‹g| ÔE/ØLÛØ’”þKt­Lמ@M×u­L׊umV׊@u-H×n|ÁfR]7èZ1˜®=Z:®ëZ˜®êÚ"¬®êZ0®Ýø‚ͤºÅ˜ÕJ ÕÊÜ>X5 …z>Mp[iÖjån|¿¯·“ºã«cì„ÝÎØùýgzì²Ýƒe¸îA@0݃‰£d‚סlà ë ¸E`ëÅ:¨ŸE1¨ŸE1˜ŸE ŸE0°ŸE0¨ŸE!˜ŸE˜ŸE Ÿ¥ß¯nüã\/Z$—”[æâ…Ž(vw ÅË Q°ùµ}UùG¿,õ˜‚i1Åj`ˆ ÔÀPKÁ€±TKO &Šë±nˆ¥`ÀX*‹¥'P#ÇõXŽ1RR<Á­cÍÐ÷þoÒt¾Í£š'Âu<Ã5p†kà ÛÀ™TØKâ!0’ã¡4à ñ É€ñP Q0¨{B2 {‚0h¡^0¬{B2 {Â3¼{¢ßÏ­Ê•Ô-mT ÅÏe¹ínñ(Óë4®«cî–0þŠøÐî…5Ü0Ÿqet»·»,ç€``ç@¿1>Ïôõ¸?´;ƒâç²j¥nv'=Ï•é6gCB˜ÂI™ûú,ÁMa(ž‚%¸)Œ1–ê-Á–êûðÚNlÀ‡v§‚Ø÷,Ÿ"þDÅ-/oϰ-/žá[^ö¼†ky¡ˆ¸åLË ˜–@p-/áZ^–àš<(!ü»K´ª\=ÓÂg? ˆ›< ÁÿS¬A€J°§  ÅõËJ°§ °Jp7~(V‚ @%X‚S‚PÃe%X€S‚X%8‚?Æã¡SÄð•µûl¯[çw﮹çm¶·Ç#Lk¸Î‹ð=aûz<Á´õx€éê±×Ô“m %TQÁ¥PQ1+*FPE S”0EŨ¨¡\QA%LQ #°¢bU” 0E ST €Š…¢ªIQ´Ìy¶›Ð#°)D ¨'D  %Ĭ#D˜!D˜D $&@7H @fx8ó‚ôÛø÷kŸBžAñ±$Ÿˆ‚ ·‡JéüQfÛ×Y†ëÄ0¦I ¾d‚×á nà ë ¸Opë¡F~O f„3ô3ô¢þ¬V›ã;cqxv§Y½ž†m;Û 0\;[ƒ #ng# ×Ά¢…,1”ì‹dÀ}! jn(ÙÉ€ûâ~_†öE2à¾5Z”ì‹dÀ}ñ ¿/cÌ î…¨'u|œ! ûE! û¥ß]½á’š¤] £àkáþ\ãù›Ê¶åói¾å3ñ”ÌC0ð<†æ!x£˜õJHôL†õNx†÷P¬jVüáÙ9ìõ9T(æUÏ%ôö¦v‚ës°;‡¡x–`ç0 ôD¬›ñþäÆúñ Ó1‚ ÔpF0#€`:FÁuŒPDÜ1¶cÄ3¾j‰Æl¦íIjú%ºV ¦kO î†ëºV¦kE€º¶«kE º ¤k7¾`3©®‡t­Lמ@½×u­L׊umV׊@u-H×n|ÁfR]b ÌC%ÐCe n,€ºB='&¸­´ë¡r7¾ßÆ×ÛÉEIÝ [\÷‘\¿ŠìÚòÞ–áÚòÁ´å%^‹’u\‡"°u 7¬C0à:­cë ÞÅ æÅ`îI€öÁÀþÁ …`E`A€–~#¼Þ €žC¹e.^èˆbw—P¼ÌûZß;gñ9ݦ¸ÞÍÎ2\ï& ˜ÞML †˜@ %± KE`±ôj¢¸Ëá†X Œ¥"°Xz5r\å°!E0 !ÅÜ:Ö =´WOO–jzœ×ñ ׉I®#0lgfRa/‰‡dÀxHŒ‡bÐx 7ÄC2`<$ÆC1hë>¿ëÝÁ×ï,ç€``ç@¿1>Û˧D+v&„âç²jå³;9~¡L·°8¢NËÜ×§` n Cñ,ÁMaŒ°To ¶Tßo„×FHÖRA|êÇî(½érjû\>ža]<Ãwº†mu ×ëBq³ ˜n@0í.€0‰+îÑð×ðâ ºãÅ7-/I}µ$=ƒ¦‡`àôP šŠÓÃ"lz(KE`é¡0=¦‡  ôãYz 7¤‡bÐô œŠAÓC1`zX„ME`é¡,=¦‡@Àô”b>zćg§7gís×[ø¥¸öÆ7%¸¦nEp퉓áú2<¡dpCñ2<¡dpcŒÀ®Á€®E`®~#´Ÿèµöíúý+zHrçÓ/n­×&®M,)‰ÄB!`,ÆB!`,†òX(Œ…BÀX(ŒÅ#p¡[0`¡[X¡Ûh8&¸XöáS/~xv厹pkÍçx»4•]ãà 0·Q9#n´Ã Ñ8˜”‰Kâ!0€aãá>à ñ À°ñð Q1*f h hP jè7FÓ®Uš¤­ÜÎQl\šoÞUµs¦N¶EôX¯.A åˆQ!`•z Æþtœù¸ºÉ$)ÀL“ &D÷1V•c€«§Z@ôì‰a“ %¸ñŠ• P –à”`°¸] à”`V ŽàÆÅJ¨KpJ°è±¸® pJ°«GpãÇxÉu²@ZŠA¥¥LZ’¥%XZ‚A¥¥LZŠÀ¤%PZà ÒR *-Å`Ò’(-ÁÀÒ *-…`ÒR&-A€Ò•´ªIZ°{¾©Ð²"ز¢Ô²¢вbÖ²¢̲¢̲¢в"в"Ȳ"Æ3ËJ¿ÞÝ HÎJˆÏøÎ øpŠOD¡¾àwuhÇž(¶…ïm®…˜¾“¿Íë ¸OpënX‡`Àux‚[Ç(5²]xôLœ í¢ßMµ¾)O.v)ŒBÓìQ=v‡NÏ̶ë® ×u—Á€¾ň»îÃuÝa†èt;úŠöE2à¾ô`í‹dÀ}ñ ¿/à û"p_úAŠöE2à¾x†ß—1fP“ŽBÔSNФ£ФÓoˆ®YkuIéÒ®…Qðµ°žÍ$S$ãÑ×é8ßúJr<ó¿÷çâo¸øß.þ÷Æä¿Gmÿ­Á8k8ç-ý6îñª–»|Öv…Z€Þv;Ioù`õ¼Í°ââ–Ó¤ú}–`ç0ÏÁìFA€†u3^;Æ" Ó`’VˆÎºÁ„hùþŒ LA7˜‚i0Áˆ°Á„\ƒ `| ÔÍ/ØL×`’–àKt­Lמ@Í×u­L׊umV׊@u-H×n|ÁfR]7èZ1˜®=Z+®ëZ˜®êÚ"¬®êZ0®Ýø‚ͤºÅ˜åI åÉÜ>X5ë„x¬L p[iÖòän|¿¯·ñŸã+\ìHÝÙ®«åËÉ®‰ï㮇ÏL _bƒ(XDŒ€‹¶ˆ¡|1.BØ"ÆxÔM"ÔL"ÌK¢ÐJ#°“$FP#‰ 0‰0I €.’~¼>+Ÿ¬C¹e.^àˆb·–P¼Ä[NþÝî¨Èé[f¶±óm®±Lc'&PÛ@L ¶’X Œ¥"°Xzµ.\åpC,ÆRX,=Ú'®ÇrŒ Ø"Ðâ nk†6íîTÛé9òQMá::Àpm“„áÚ&öM&uí’xHŒ‡dÀx(ÇpC<$ÆC2`<ƒÆc êY èY Z ëY èYð ïYè7Ƴ]kZødí ŠŸËzÚnñçƒÂ}{o¤îuÄ_!‚«]'‰s}6ë?»Ý‰ØŸ¬:¿`àš¿1>]t¼‘ ¡ø¹¬:évÂ_ž6¦[X† á‹¿¤ }} –à¦0OÁÜÆ‹ò–`‹òýFxmg$$ï/-eÄþ(x.júôŒášLÃ6™†k2! Ód‚a“ !è&BÐM&„`šLÂ4™‚l2ãu“IZI-IÅ é!8=ƒ¦‡bÀô°›ŠÀÒCXz(L€é!(=Äx–à é¡4=§‡bÐôP ˜aÓCXz(KE€é!0=¥‡ÏÒcÒ¦&Å`&O Åú33Ñ(3Ñ(4ÑX„5Ñ(5ÑÆ—@½Ñø‚ͤ&šõÑãÓU‚žªÞœ5õþ̘ïŒk(üP‚k¥V„éoý¾FÁ2<¡dpCñ2<¡dpcŒÀ6Á€>E`F~#<«õ…Ñ1ŸµèðžtúªmÌz{ÄtÅ‹›™Â5f„kÌJÊ¡±P …€±P‹¡< c¡0 c1Æ\ä XäVVäöZŽ .–ýFø4 m‹·±`”;æÂm5Í«ÛY°¦;>Ûþ׆k䌸¥3D‹`R".‰‡dÀx†‡gøx 7ÄC2`<ÃÆÃ3||&yþZ³mßûX†kßİ*’8JÖ!pžàÖ1ܰÁ€ëð·ŽQjd»ðê™8#@ÛE¿!šÇ‚à§jgQpšu¯üS‚߀á:î2Ô÷ qÇa¸Ž;Ì]n‰o¡d_$î aPFɾHÜÏðû2ܰ/’÷…0¨¤d_$î‹gø}c5é(D=!¨1å M: M:ý†èÚµV—œùb×Â(ôZ¸þ¥œ0eŠjÜÚY†ïLMì %ó <á†yžÇ(æA­’­€a­žá­ýÆxt+"Q»¢`ëÑs®þüëY"°ÒâV×:Ñúå9X‚ÃP<K°sZ'ÖÍh>»³g'‰klyx†ilÁj8#˜Æ@0-€à[("nlÛØâ_u‘Dã 6Ó6¶$¥ÿ]+Óµ'PÄu]+Óµ"@][„Õµ"P] Òµ_°™T×à ºV ¦kO –ŽëºV¦kE€º¶«kE º ¤k7¾`3©®G1fµhµ²·@MB!€gÜVZ€µZ9‚ßoãë퀥ä4ì„ÝÝWëç’M÷`Z):a˜îABÐ݃©£d‚סlà ë ¸E`ëÅ:¨ŸE1¨ŸE1˜ŸE ŸE0°ŸE0¨ŸE!˜ŸE˜ŸE Ÿ¥ßÝFH£ErI¹e.^èˆbw—P¼Ì›_ŸïçîÔÝnºMq-¦Ëp-¦€`ZL1b50”ÄR0`,ÅÒ¨‰âz,‡b)0–ŠÀbé ÔÈq=–cLÀ†Á€†OpëX2ôµ? |®\>ªéq"\Ç0\'aÌUXÚ¼}ư œI…½$’ã!0ŠAã1ÜÉ€ñ Å ñƒº'$º'ƒêú'$º'<û'úñ|®U.|¾wÅÏe½ínòéqØM’º×…~¾w“$ÎõÙ¬{ÜÔüûÝ]8»úmìg=ŸœŸçAñsYuѾw‡@Ï~Çé–bCBøÈV'ºº<KpSЧ` n c €eyK°eù~#¼¶ÓÒyGY±?²bùbêôç(noyx†moñ ßÞ¶½0\{ EÄí-€`Ú[Á´·‚koñ×Þâ ÓSÖõñ¦½%©¥–¤‡bÐô œŠAÓC1`zX„ME`é¡,=¦‡@Àô”b€¹>ú ðÜô ïTÔûôž?ÙjÛÀ>1]åâÖ)€pm`áÚÀ’’gA,ÆB!`,Æb(…BÀX(Œ…BÀXŒ1²²²=€c‚‹e¿>íàgxgQî˜ ·Îtm½‹Êt—g߀á9#n¤Ã ј”Kâ!0€aãá>à ñ À°ñð Q1*Vâ— Xâ— XâW Zâï7FóŠN3²3AWF¡æšîûaä™ROõ[ÓšÔ£¯†bÂ(° ½â½;ùfþ ¯i ©-Á5PBøœA´Š\ýÔÂGN ˆH ÁÿS¬A€J°§  ÅüËJ°§ °Jp7~(V‚ @%X‚S‚POÅe%X€S‚X%8‚?Æã¡3Åè•õ]µù'á><Ãv†é"×9ä¾sÈ3lç@˜Î!@0Cžà:‡’jq‰´ƒJK1˜´$JK0°´ƒJK!˜´IK ´†¤¥TZŠÁ¤% PZ‚¥%TZ Á¤¥LZ‚¥5*iU“´hÉõtS¡EE0°EE1¨EE1 EÅ"¬EE˜EE˜EE EE  EEEEŒg•~¼?  N*ùn⃠>C{€÷ßy[¾ íZóÒ*ì ôæqBÑ*ù»\°Á€ëð·Žá†u\‡'¸uŒ‚P#§…'P£Äz-ú Ñlç&v)Œ‚Óìp8áÔWc»é>€áºé2Ôï q7a¸n:Ìl‰_¡d_$î aPïEɾHÜÏðû2ܰ/’÷…0¨¤d_$î‹gø}c5ç(D=!¨!å Í9 Í9ý†èž« ŸÝEÁ×Â9f½¡œ¢÷~¾-Ãw¡&¶…’yžÇpÃ<Ïcó  É€ À° ÏðŒ~c<Þ ‚ŸÝCÁ–£÷îd¾å;Ù³D`•=$Äm­‰Ýàú,ÁÎa(žƒ%Ø9Œ‚]Ëf|»Ê.­ë®‰¥ö ÓÄ‚ Ô2pF0M,€`šXÁ5±PDÜ͉Å3¾ê ‰Æl¦mb© ^¢kÅ`ºöj€¸®kE`ºV¨k‹°ºVªkÁ@ºvã 6“êz¸A׊Átí ÔÎq]׊Àt­P×au­TׂtíÆl&Õõ(¦ÀlV‚mV–àöÁ¨A(УkB€ÛJ °6+Gpãûm|½¦”¼:Æ.Øý‘akQ×õ >,Ã5 ‚éLÜ%ë ¸E`ënX‡`Àu([Ç(ÖA½,ŠA½,ŠÁ¼,’½,‚½,‚A½, Á¼,ŠÀ¼,‚½,ýFè+!¹ðÙmE”[æâ…Ž(vw ÅË Q°ñõs8ŒrúZšk-M«š' ÓZJºµ”¨!&PCI,ÆRX,=š(®Çr¸!–‚c©,–ž@×c9ÆlH hHñ·Ž5CwgPâ³™?€á7 Ã5n†mÜL*ì%ñ É€ñP á†xHŒ‡dÀx(Ç(Ô=!Ð=A´P/Ö=!Ð=áÞ=ÑoŒçk­r%çØ¨ŠŸË|úTûêÇTqs]Æí!w‹Å ~|w{È¢ùŒ+cßÛöÈrvôãóY_% ñv&„âç²j¥nv‡@ÏŠ›n#Xq6&„qM"µËS°7…¡x –à¦0ÆXª·[ªï7Âk=©!MXKY±ëX¿™:ý‰ŠÛ]jϰí.žáÛ]ö»†kw¡ˆ¸ÝL» ˜v@pí.áÚ]z´]õYé£G|žwzsÖU»óÑAÒJ€_­9%¸öÆGòGôò2<¡dpCñ2<¡dpcŒÀ®Á€®E`®~#<ë•€ÏöNå}ð|_;¹6±¤æsŠ˜®xakA˜61‚0mbII´$ c¡0 c1”ÇB!`,ÆB!`,Æ Ý‚ ÝŠÀ Ýž Ä‚àbÙo„õ¾€ŸíG¹c.ØZóy<ö'žÏ¥D×8ø ×8Èq£fˆÆÁc™¸(’ã6žáã1ÜÉ€ñ Ïðñ£bɀɀŠ€~c4ÝZçÁg{çPl\šo>fw$L=ÕvM‡hR®¾NŠ £ À õˆÝÁË'y¿ ‹_6–àL(!ü›O´¢\-ÕÂçN ˆL ÁÿS¬A€J°§  …ýËJ°§ °Jp7~(V‚ @%X‚S‚PÅe%X€S‚X%8‚?Æã¡KÅð•µûì{l¦ÿÓ=PÜpQ{†í, ÓYDÓJâÎ"ÏðEža;‹Ât‚é,ò×YT'×Éi)•–b0iI”–``i •–B0i)“– @i 7HK1¨´ƒIK ´KK0¨´‚IK˜´JkTÒª&iÑòëé¦B»Š``»ŠbP»Šb@»ŠEX»Š"0»Š"0»Š"@»Š@@»Š »ŠÏì*ýøT«£8©ê»Yˆ&€ø !ì®w…ܹ Ávî=Â5îQ@ÎÄP°ˆanCù"b\„¸EŒ1 F&  ‰´Xô¡iVBr€]£àܪ_»§äéJ×a—–øN¦Ã.‡A=‚vØ!Æ\öp…Sψ»ÚRBɾHÜ ~‹’}‘ ¸/žá÷e¸a_$î aPïGɾHÜÏðû2Æ jÈQˆzBPÊrrú ÑmÇ}%g¼Øµ0 ¾®/`ÿ™žölêÇ2|jbU(™‡`ày 7ÌC0ðÒ‡e¸>R@0}¤˜@ý 1Jb)0–ŠÀbé Ô6q=–à ± KE`±ôêÞ¸Ë1&`Š`@Š'¸u¬ºÌŸ ~TÓã„;\2ænxå% Ó¥I®K3-­—ÄC2`<$ÆC1h<†â!0’ã¡4£`PÛ„d@ÛaÐ ½`XÛ„d@Û„gxÛD¿1žÛYVô ËzÚQÕÓm)~&¹[Àø+fðƒ¼ŸIîÌgÝç÷®Óš~ücØ2°îò»ùº¼|ÂygPü\V­ìO±_ž8¦ÛXœ a '%îëS°7…¡x –à¦0ÆX¨·[©ï7Âk=–䢭wgU,PþDŽ-gØÞÏð½-€a{[Ãõ¶PDÜÛ¦·Lo ¸Þp½-ž {[üxÓÛ’ÔWKÒC1hzNÅ é¡0=,¦‡"°ôP–ŠÓC `zJ1ž¥ÇpCz(MÁÀé¡4=¦‡EØôP–ŠÀÒC`zLA@é!Ƴô…´©µF1˜µÆh ÿŒÀ¬5ŠÀ¬5Š­5a­5Š@­5‚ñ%PGG4¾`3©µ¦_?ÿv}¬Æy§7gíswÚñ÷éÜu5Ö”à:¸aúÛƒ?éq}žP2¸Œ¡xžP2¸Œ1F`Wˆ`@Wˆ"0WH¿žÍêY:¾uÂv£ý‘ýó§[m{ØÃ#¦ ^ÜRÍüš¢áÚÃ’ŠhA,ÆB!`,Æb(…BÀX(Œ…BÀXŒ1×¹Ö¹Õ¹=Ö‡c‚‹e¿>¯p¼h‰c¼s 7Ì„ÛjÚÏþV©Êˆ¦[0-ïœ2L·`#ì®ãŒ¸[0-—ÄC2`<ÃÆÃ3|<†â!0€aãá>£bT¬ü/°ü/°ü¯´üßoŒf;Y)1+Ú™ Š+£PãÍsÿeäå ͦ=4©U †rĨ°B½coпÅkLZKp &”þѧZQ®–jás'Ä &àÆÿ)V‚ @%X‚S‚ÐÂþe%X€S‚X%8‚?+A ,Á)Á¨¿â²,À)Á¬ÁãñÐ¥b øÊúÜ=Ò-_ðtEgØÎ"À0E„à:‹<Ãwy†í,ÓY¦³È\gQR9.‘–bPi)“–$@i ––`Pi)“–"0i ”Öpƒ´ƒJK1˜´$JK0°´ƒJK!˜´IK ´F%­j’-¿žn*´«¶«(µ«(´«X„µ«(³«(³«(´«´«²«ˆñÌ®Òo€Ïcu'U}7 ñÁŸ!‚ýÀÏÝ{¢åÃжu¯¶ ׺‡ aDëäïrÁ:®ÃÜ:†Ö!pžàÖ1 Bìž@½gh·è7DÓ®ˆäl»F¡iöªöŸ¾šzll·Ý0æòCx§“Á †Áˆ»íc.ƒ¸:ªgˆ·Ä°P²/’÷…0¨ù¢d_$î‹gø}nØÉ€ûBÔR²/’÷Å3ü¾Œ1ƒºs¢žÔ‘r†€î…˜âicÑoˆ®[tIÙÒ®…QðµpwÏRv©iõ„a;RSëBÉ<Ïc¸a‚ç1ŠyP†d@`X†gxF¿1Öc‰ø¡ÞYl;zµÛÉ}ì@ë'Ä ®‰ßàò ÀÎ`(ØŒ1ú%ÖmØ#–þu×ÉÒz†édÁê8#Lž©ãâŒ`:YÁu²PDÜɶ“Å3¾j‰Æl¦ídIêý%ºV ¦kO Î‡ëºV¦kE€º¶«kE º ¤k7¾`3©®‡t­Lמ@}×u­L׊umV׊@u-H×n|ÁfR]b _=X• @•%¸}°·@ϯ n+-Àú«Áï·ñÍz¢Rz^¶¿Z^–Ï2»vÁÆ2\» ˜vÁÄvQ²Á€ëP¶Žá†u\‡"°uŒbÔÄ¢ÔÄ¢ÌÄ" ÐÄ"ØÄ"ÔÄ¢ÌÄ¢ÌÄ"ÐÄÒo„®Yÿ8÷‹Ç%å–¹x¡#ŠÝ]Bñ2CìxíÕvâÔ]b{Jk‡p-¥0ÙIÂEPu-„jZ(cŒ€aF  ¦‰ËaÊÃ#`€…ѨgãrÇ€'1O,À-bÍɦÝÎ:}êQMá*€1lÃë,aÌÅVÚŸ}ư=šI!½$’ã!0ŠAã1ÜÉ€ñ Å ñƒš$$š$ƒÖãÚ$$š$<Û$úñ|/ ~„wÅÏe½ík¶õôxc›‰_Iî0þŠüïW’;óY÷ù`0l² ‚ ë.?ßÕ#}nðΡø¹¬ZÙ‹¿ž Ó=¬ÄF€0“röå 8€›ÀP:pÃñ°ï¶ßo€í=@š¨–²*aÿ2aùdêô§)îfi=Ãv³x†ïf ÛÍ®›…"ân@0Ý,€`ºYÁu³x„ëfñÝÍâÇ›n–¤ŠZ’ŠAÓC0pz(MÅ€éa6=¥‡"°ôP˜ÓCPzˆñ,=†ÒC1hzNÅ é¡0=,¦‡"°ôP–ŠÓC `zJ1ž¥Ç(¤M 4ŠÁ 4ž@ õgf Qf Qh ±k Qj Œ/ú6¢ñ›I 4ë£Ç§{<?º;¹9{×UîaÑ %¸žmEpÝ‹‰_áú2<¡dpCñ2<¡dpcŒÀÞÁ€ÞE`Þ~#<ÛÕ™t|Û„MEïý+Òéc­¶ ¬öˆé‚7N„kˆé}qü~µNRäz,ÆB!`,Æb(…BÀX(Œ…BÀXŒ1¶V¶•¶=–…c‚‹e¿>Ý8^´ÄÑÝ9fÂÝ3ïW·;¾wúP‹í |†ë 䌸‡3DO`R.‰‡dÀx†‡gøx 7ÄC2`<ÃÆÃ3|wR@ÜF nüŸb%T‚%8%X­é_V‚8%X€U‚#¸ñC±*Áœ,€š+.+Áœ,À*ÁÜø1-*–€¯¬õîUïòÍN×?Ôz†í Ó?D®È3|ÿgØþ!€0ýC€`ú‡<Áõ%•ãi)•–b0iI”–``i •–B0i)“– @i 7HK1¨´ƒIK ´KK0¨´‚IK˜´JkTÒª&iÑòëé¦B»Š``»ŠbP»Šb@»ŠEX»Š"0»Š"0»Š"@»Š@@»Š »ŠÏì*ýøÔ«£¸NÊún„âÃI(>I{‚Ñ™kʶi¯± ×µ‡ aL—@É:®ÃÜ:†Ö!pžàÖ1 B,ž@ýgh¹è7Dó\©È.…Qpšu¯Ýi±S/–í´«ÃuÚe0¨éA0âN;˜K!®–ꢻ­N’¾`_$î aPFɾHÜÏðû2ܰ/’÷…0¨¤d_$î‹gø}cuè(D=!¨+å : :ý†èÞ«™.)]Úµ0 ºÖÿVÿi'ÊÕø¦ôa¾uo_(œ‡`ày 7ÌC0ð}ºÕ¶…5–0]îâN*OpMažàzÂ’ èõ8Œƒ À8ŒÃPA€qA€qC.gÇXÍV̶Z.Œýø¼Àñ%ðÎÜ0Û}D¦ÏµØ®À0\W gÄ}t˜!ºëäzSÉ€ñ Ïðñnˆ‡dÀx†‡gøxŒŠQ± ¿dÀ ¿dÀ ¿bÐ ¿1ÚjõÔà¼s(6®ŒB½5õþKÈË™MhR.@ åˆQ!`z Æ®€<ìL ÉË\ „ðáxZ5ŽÆ»š©>`Âñqó¸áJ À)À§eû« pãÜx«pÇRĨp pã©oâªÜx§7Þ*ÀÜð1'@/¢MÕîÎmœ¿ÏéZ„žža[„ô‚kò ß"ä¶E L‹ ˜!Op-BI9¸DZŠA¥¥LZ’¥%XZ‚A¥¥LZŠÀ¤%PZà ÒR *-Å`Ò’(-ÁÀÒ *-…`ÒR&-A€Ò•´ªIZ´¦zº©Ðƒ"؃¢Ôƒ¢ЃbÖƒ¢̃¢̃¢Ѓ"Ѓ"ȃ"Æ3J¿¶&‰ÔÍÓAñá$Ÿ$ˆ‚¾‡†z,tk®˜&¥ÿ’u\‡'¸u 7¬C0à:<Á­c„ù(<š ÎÐGÑoˆæµ"Ž/Å1ÝYœfÏýI„ŶÎ5€áZç2ÔÌ qëa¸Ö9Ì k‰!¡d_$î aPsEɾHÜÏðû2ܰ/’÷…0¨Ù£d_$î‹gø}cõß(D=!¨ñä 8 -8ý†è>«CÓEÁ×ÂÍS-_o¶ ¦µeøÓ:Éý‚yžÇpÃ<Ïcó † É€† À°† Ïð†‹~cÔõ‚XNçôçtçP°Áh ßòIìY"°žâÞÕÄ[p}–`ç0ÏÁìFA€‰e3ÚG»;Vq¾ºN•—g˜NL 3‚éTÓ©®S…"âN@°*žñ%P¿H4¾`3m§JRï/ѵb0]{5>\×µ"0]+ÔµEX]+Õµ` ]»ñ›Iu=Ü kÅ`ºöj縮kE`ºV¨k‹°ºVªkÁ@ºvã 6“êzS`+A€+Kpû`Ô#\bZ€ÛJ °>+Gpãûm|³””Ô­°åµÝ?w-ß_ví€OËp퀀`ÚFÉ:®CØ:†Ö!pŠÀÖ1ŠuP?‹bP?‹b0?‹$@?‹``?‹`P?‹B0?‹"0?‹ @?K¿6ÄÔ«@êΡÜ2/tD±»K(^fˆ‚ͯíkwòäT`õ¤­e¸R@0=¤˜@ 1Jb)0–ŠÀbé ÔDq=–à ± KE`±ôjä¸Ë1&`CŠ`@CŠ'¸u¬úÞÿMšÞ÷?ªéq"\G®M“0\›&`Ø6ͤÂ^É€ñ Å ñnˆ‡dÀxHŒ‡bÐxŒ‚AÝ’Ý„A õ‚aÝ’ÝžáÝýÆxUÇ*9©;ƒâç²\‡öµÜªžxl?ñû˜»%Œ¿b?ªû}Ì’ùŒ+c×gMê®-;ú•ñ®šõåQ¢;BñsYµR7»ƒžçÃÒ¦ÛXœ a 'eîëS°7…¡x –à¦0ÆXª·[ªï7B·žË¾Õ´”U»ž€õ©ÓŸ¨¸ååå¶åÅ3|Ë `Ø–Àp-/·¼‚iyÓò®åÅ#\Ë‹'è–?Þ´¼$õÕ’ôP š‚ÓC1hz(L‹°é¡,=¥‡"Àô˜‚€ÒCŒgé1ÜŠAÓC0pz(MÅ€éa6=¥‡"°ôP˜ÓCPzˆñ,=F!mj­Q f­ñZÂ?#0k"0k"@kEXk"Pk`| ÔÑ/ØLj­Y=ÚîѬo>’Š`|hwzsÖU»“¿0®½ñI ®±[\{câd¸¾ O(™\ÆP¼ O(™\Æ#°+D0 +D˜+¤ß[_TZèÆ~£çþ£†vLsëÓ/n­×&®M,)‰ÄB!`,ÆB!`,†òX(Œ…BÀX(ŒÅ#p¡[0`¡[X¡Ûh8&¸XöáóYÉknqŽw厹pkÍëð“é3-¶q° ×8Èq£fˆÆÁ¤L\É€ñ Ïðñnˆ‡dÀx†‡gøxŒŠQ1 €d@ €d@ €bP @¿1ÚGZjò'yçPl\…šo^û#a–ï0›Ѥ^]€Ê£BÀ*õŒÝáìßÎ\‹ „ôáxZQŽÆ»Rª>uÂñqw ¸áJ À)À§ý« pãÜx«pÇRĨp p㩟âªÜx§7Þ*ÀÜð1 )€/¢Ýgw´ãt§b{ˆ^ža{ˆÃô‚ë!ò ßC䶇 L ˜"Op=DI¸DZŠA¥¥LZ’¥%XZ‚A¥¥LZŠÀ¤%PZà ÒR *-Å`Ò’(-ÁÀÒ *-…`ÒR&-A€Ò•´ªIZ´Ðzº©Ð˜"ؘ¢Ô˜¢ИbÖ˜¢̘¢̘¢И"И"Ș"Æ3cJ¿>íú&¨N øn„âÃI(>I»÷eÛå“϶Qïi®Q˜&~€’u\‡'¸u 7¬C0à:<Á­c„™+<:#ÎÐ\Ñoˆ­B˜^6ìR§Y½{hžÞeÛÖºÖ#\gGPkCŒˆûêµÕQ„èdK| ;¢pG‚, vD!àŽX„ß‘¡|Gî@P›GÁŽ(Ü‹ð;2†ê»„z"P«É ºnšnúð®ÖÚ[RŠ´+a|é[ß¼þþóš(SLãÛÏÆ2|§ibG(™‡`ày 7ÌC0ðˤZ^É€ñ Å ñnˆ‡dÀxHŒ‡bÐxŒ‚A½’Í„AËï‚aí’ýžá ýÆx=ÖâÕñ&Ò@üL֫оF;½šðíÀŸ$s Å ~÷'Éœ‚ù¬»üÞµIÓOx7–íë&¿›ªMÞ„ûs¸9ÄÏdUÊgwýb`œn!`½5$„é›T®¯OÁ܆â)X‚›Â`õÝlõ½ßÝv¨B’®–²âSïNšX>:ýyŠûU:ϰý*žáûUÃö«†ëW¡ˆ¸_L¿ ˜~@pý*áúUÙÃÞœµÏÝYÅ_ŠëM|QB( @p½‰‰‹áú2<¡dpCñ2<¡dpcŒÀŽÁ€ŽE`Ž~#<»õ}Ñ1Ÿ×h×­¿”{lÛ×Ó#¦+^Ü-®ñ \çWR-ˆ…BÀX(Œ…BÀX å±P …€±P‹1Fà"·`À"·"°"·'ÐâpLp±\¯Z¯õàë~ÐÆ‚Qî˜ ·Õ|·Kó}]/` ®3âÞ9̽€I‰¸$’ã6žáã1ÜÉ€ñ Ïðñ£båÉ€åÉ€åÅ åÿ~c´õj¸ù$uf7D±qeh¼ù¹CØ}ÛxùÆòü®U«KC9bTX£^ƒ±;Úfùš®é,y[‚k-¡„ðï>Àªr põT Ÿ=) î/7þO±*Áœ,÷¯+Áœ,À*ÁÜø¡X ‚•` N =ו`N `•ànü‡NKÀWÖýW—opºÎ¢Î3lg`˜Î"BpEžá;‹<Ãv„é,ÓYä ®³¨K®“ÒR *-Å`Ò’(-ÁÀÒ *-…`ÒR&-A€Òn–bPi)“–$@i ––`Pi)“–"0i ”Ö¨¤UMÒ‚%ØóM…–ÁÀ–Å –Å€–‹°–E`–E`–E€–€–A@–1žYVú ðy®®âäÝ{|@wŇ“P|’ õ?öÏ;Ûö½—e¸ö=LcúJþ6¬C0à:<Á­c¸a‚×á n£ ÔÈvá Ð3qJ€¶‹~C4ï‘^6ìR…¦Ù£z쉅§?ÃuÜe0 ïA1âŽ;Âpw˜!úÜŽ¾…¢}‘ ¸/„=Eû"p_<ÃïËpþHÜ€~¢}‘ ¸/žá÷eŒÔ¤£õ„€Æ”S4é(4éôbW«kŽ7”v-Œ‚¯…»#y–¯3Û¾ÔÖ2|_j›ä~Á<Ïc¸a‚ç1ŠyP+†d@+`X+†gx+F¿1~žoªsµÛˆ µý\8·Ãû–O^Ï•ö·º&®ƒës°;‡¡x–`ç0 ´N¬›ñj³‡}[„ik¡ê8˜¦0=-àZZ !îhñÛÐb_5ïï¢ífIêýb&f  ¶‡Ëb&f€bv+f bŽHÌføõ]¤bÊÅ,LÌ@—Å,LÌÅìVÌ@Å#˜Íðë»HÅ<Æ`Fª}TàvÀ§þŸh<<¨&ïöз*pÃûmx³›”¼Æ׋»Z?¨<=Æí5e¸¦@@0M‰±¢d‚סlà ë ¸E`ëÅ:¨ME1¨ME1˜ME ME0°ME0¨ME!˜ME˜ME M¥ß]·Ò ŸÝVD¹e.^èˆbw—P¼Ì{ZþÝî0Ýéûg¶sôe®sLç(&P_BL ¾„’X Œ¥"°XzõF\åpC,ÆRX,=ú3®ÇrŒ Øg"Ðgâ nk†6Ûq“ó'„Õô(.ãé®+ \S¦G؞̤h^ …€±P  ±Êc¡0 c!4cŒ >…€6€ ÷aM =á-ý†H¿0KNéΠø¹¬ž}E¶žo\»ðï›®CÂ0þŠø˜î…5Ü0Ÿu›Ÿ{ûà+«ü/¸ü¿îòó]=×WEuRâç²j¥ÛiQÜtÓ+¬!!Là¤V}} –à¦0OÁÜÆëí–`ëíýFèÖcêwò(ï(« ö§óLº´m+o‹°]+á›V<Âö¬x„kY„¸cÅLʘ~pí*–àºU,@7«Øá¦W%©–¤„@Дˆ8%‚¦„@À”p›ÀRBXJL‰˜S" ”ˆ‡³”ÊSB hJÄœASB `J8‚M `)!,%¦DL€)PJÄÃYJŒ±ž©#F ˜#ÆhþÀ1À11Ž`1@11â  vŒ`øõ]¤Ž˜õYâÓ=žÁ« qòvrãÕÔ»se¦¯ »¦ÃŽ\»µ"¸¦ÃĈp}žP2¸Œ¡xžP2¸Œ1F`S‡`@S‡"0SG¿žï¨IÛ…öï>é Ë/˜.wqÃ@¸æ-€pÍ[IE³  c¡0 c1”ÇB!`,ÆB!`,ÆëÔ‚ëÔŠÀêÔž@ë»1ÁÅr½jµmõXÉ{kqòv厹pgLóêv6ªé´ZÛÎ÷ ×ÎÇqûfˆv¾¤Ø[É€ñ Ïðñnˆ‡dÀx†‡gøxŒŠQ±R¾dÀZ¾dÀb¾bÐj~¿1þù‘WòvÅÆ•Q¨{¦ÙÌxù¨²nÜL Ј¡1*,;/ÁØ7±.Ð5Í!KpÝ!”þݧZ&®@já³'Ä-"àÆÿ)V‚ @%X‚S‚Ðjýe%X€S‚X%8‚?+A ,Á)Á¨iâ²,À)Á¬ÁãñÐzb øÊºÛ»|vÓ5½=Ã6†i"×ä¾9È3ls@˜æ @0ÍAžàšƒ’*q‰´ƒJK1˜´$JK0°´ƒJK!˜´IK ´†¤¥TZŠÁ¤% PZ‚¥%TZ Á¤¥LZ‚¥5*iU“´hötS¡;E0°=E1¨?E1 AÅ"¬CE˜EE˜GE IE  KEMEŒg>•~|^ë;¢Äן¼Añá$Ÿ$ˆ‚;ûO)/_t¶xe¸öûÏÜI7E5¾)}Z†o5Mì %ó <á†yžÇ(æA­’­€a­žá­ýÆØÕµÛˆ ¶=wgï/_¹ž%+í!!ì]M]×ç` vCñ,ÁÎahX7£ùìÎSœEáÚY>žaúY0ÚΦ£LK ¸žŠˆ›ZÁvµxÆ—@]$Ñø‚Í´-Ié¿D׊Átí Ôq]׊Àt­P×au­TׂtíÆl&Õõpƒ®ƒéÚ¨¥ãº®éZ ®-ÂêZ¨®éÚ/ØLªëQLY­Z­,ÁíƒP“P çÓ„·•`­VŽàÆ÷Ûøf;1)yuŒ°»ãjý¤²ë|[†ëÓ=˜80JÖ!pŠÀÖ1ܰÁ€ëP¶ŽQ¬ƒúYƒúYƒùY$úYûYƒúY‚ùYùYúYúнBzá³ÛŠ(·ÌÅ Qì¢`óëóýÜœÛN·)®Å´³ ×b ¦Å¨!&PCI,ÆRX,=š(®Çr¸!–‚c©,–ž@×c9ÆlH hHñ·Ž%C_»3¾—o?ªéq"\Ç 0\'a¸NÀ° œI…½$’ã!0ŠAã1ÜÉ€ñ Å ñƒº'$º'ƒêú'$º'<û'úñjŽU.rhwÅÏe½ínòç³w}§ñ#ÉÝÆ_1ƒÚýHr§`>ë>7»lúÍî§e`çÀºËM³{ùÔ&•ò;(~.«VÚ÷®I¦L·°8¢NËÜ×§` n Cñ,ÁMaŒ°To ¶Tßo„n#¤÷޲ bŒE=½|šþBÅ/‹° /áû]<¶»x„ëv„¸ÙÅL¯‹˜Vp.–à],@÷¹Øá¦Í%©©¤„@Дˆ8%‚¦„@À”p›ÀRBXJL‰˜S" ”ˆ‡³”ÊSB hJÄœASB `J8‚M `)!,%¦DL€)PJÄÃYJŒ±ž©kF ˜iÆhmþÀ,3À3 3Ž`ý2@í21â  &`øõ]¤^™õY¢«¯àU†8´;½ñúìš§o »~Å7%¸NmEpýЉ5áú2<¡dpCñ2<¡dpcŒÀ6Á€6E`6~#K°sŠç` v£ @OIJŸýga—š¾”´ätÆÐ)œ@ýgÝšBº7…Ls F„Ý)„àÚSãK öh|Áfº•´¦_¢kÅ`ºöên¸®kE`ºV¨k‹°ºVªkÁ@ºvã 6“êz¸A׊Átí Ô«q]׊Àt­P×au­TׂtíÆl&Õõ(¦Àªéq"\G®/“0\c&`ØÎ̤Â^É€ñ Å ñnˆ‡dÀxHŒ‡bÐxŒ‚AÝ’Ý„A õ‚aÝ’ÝžáÝýÆxµk•+©[Ú¨ŠŸË|Z“˜(ð¤êú»EŒ¿b?}»>äNÑ|Æ•±o\{g9;ú•ñ®ºôõ¸?};ƒâç²j¥nvG6Ïvåé6‚gcBø:ð‘Híò,ÁMa(ž‚%¸)Œ1–ê-Á–êûÐmG1¤÷޲ b×°~õtúö¹$oFO®Ñ0l§ a¸VÂ0½.6»‚îv!ÝîB¦ß Là Ȏ0^·¼$õÕ¢ôP š‚ÓC1hz(L‹°é¡,=¥‡"Àô˜‚€ÒCŒgé1ÜŠAÓC0pz(MÅ€éa6=¥‡"°ôP˜ÓCPzˆñ,=F!mj­Q f­ñXÂ?%0k"0k"@kEXk"Pk`| ÐÑŽ/ØLj­Y=Úî±!’Gð°îÜœuÕîDã/ŵ7~(Á5u+‚koü$D//ÃJæ—1/ÃJæ—1Æì  è Qæ é7«:ž,HëNå½÷L\µmbo˜®xqk@¸61€pmbï$G®ÇB!`,ÆB!`,†òX(Œ…BÀX(ŒÅ#p¡[0`¡[X¡Û`X\,׫֧­š…\µÄaÝY”;æ‚­5õc„ùò!_×8؆k䌸Ñ3Dãà±L\É€ñ Ïðñnˆ‡dÀx†‡gøxŒŠQ1 €d@ €d@ €bP @¿1ÚçZ¥9~#ÕÏQl\šoêÇþ“ÆKq×´ˆÖIâ]G åˆQ!`•z ÆvxAµ|D×4™<,Á5™PBøF‚hU9¸zª„ï( n27þO±*Áœ,€÷/+Áœ,À*ÁÜø¡X ‚•` N @=—•`N `•ànü‡NKÀWÖî“{0núžöáz‹B·€é,òÛX䮯t[è®"0MEiѸ@QA%LQ #°¢bU” 0E ST €ŠÊ%TQÁ¥PQ1+*FPE S”0EŨ¨Q(ªšEˬg» ])1›R‚zRZRÁ:R€R€ùQÚQbt£ÄdF‰‡3/J¿ÿlã“—êááÝ9KBñ¹(Øð[ï*µË×moÞÇ2\o&„åŽÄP²Á€ëð·Žá†u\‡'¸uŒ‚P#?…'P3Äú)ú Ñ>DòÎXÞEÁiV¿vgÅN W¶î ®.ƒA ‚·Ó†k§Ã Ñ–JöE2à¾5W”ì‹dÀ}ñ ¿/à û"p_ƒ=JöE2à¾x†ß—1fP÷BÔ‚:NÎÐ}£Ð}Óoˆw»á’š¤] £àkáú¦õw9d jÜçÙ9„o8M\ ³ˆxCù,bžÅÏ‚š+z+<ÂZ+,Â;+ú Qw "ýn’ ¢`'Ñ>ï—ï^Ïꀅów®Ö‰È/ÏÁì†â9X‚Ã(Ð ±nÆþØïå$×§òð Ó§‚ ÔpF0}*€`úTÁõ©PDܧ¶OÅ3¾j ‰Æl¦íSI*ù%ºV ¦kO ž†ëºV¦kE€º¶«kE º ¤k7¾`3©®‡t­Lמ@×u­L׊umV׊@u-H×n|ÁfR]b Ì9%Ð9e n,€z~B=&¸­´ëœr7¾ßÆ7ÛyIÉ cllݽý^k¸¦0-ýaZ@w¦öŠ‚Eĸ`‹Ê#à"€-bŒA}*A}*Á|* }*1ûTbõ©ó©ó©ÄèSé7À{$—9»¡ˆrË\¼ÀÅn-¡x‰! ö®6ÍswlîôI4Ûú± × ¦?¨I!&P“BI,ÆRX,=%®Çr¸!–‚c©,–ž@Í×c9Æl: h:ñ·Ž5Cw|ó0\÷%a¸îKÀ°Ý—I½$’ã!0ŠAã1ÜÉ€ñ Å ñƒ:$$:$ƒãÃ:$$:$<Ã;$úñz®5­¤Ji£J(~.ëuh;£š¿æÛ„›$w Å ~@w“äNÁ|Ö}~ïÚ§é§½;ËÀu—ßMõ^_µI]üŠŸËª•ýéôËÇtK±!!|Œ«©]ž‚%¸) ÅS°7…1À¼%ØÂ|¿ºõ¸…æ‘<Ü;Ê"ˆ¶Þ}ð}ù0êô'*îeyx†mfñ ßͶ0\? EÄ -€`:ZÁ´´‚ëiñ×Ôâ º«Å7m-I5µ$=ƒ¦‡`àôP šŠÓÃ"lz(KE`é¡0=¦‡  ôãYz 7¤‡bÐô œŠAÓC1`zX„ME`é¡,=¦‡@Àô”bŸ;½7kŸ»CŒ¿禃1-Å×·­ÓŸü¥ŽëËð„’9Àe ÅËð„’9ÀeŒ1;AZAyAúðÚLÞPbwÑþ(þù“¬¶ìãÓ/îž× ®,©ˆÄB!`,ÆB!`,†òX(Œ…BÀX(ŒÅ#p[0`[XÛh}8&¸X®W­×§jBrÕçsgQî˜ wÖ´ŸÝÝÒRIt-‚oÀp=‚œwÕa†èLªÄ%ñ À°ñð á†xHŒ`Øxx†Ç¨sHtHt(uô£}­ež¤zhg‚(6®ŒB½7ÏýGáÉØI¹º1”#F…€Eê5{‹îü™]ÓQR[‚ë(¡„ðYƒhQ9¸rª„Ïžw”@‚ÿ§X ‚•` N @kû—•`N `•ànüP¬A€J°§  ‹ËJ°§ °Jp7~ŒÇC£Š%à+ës÷T·|œÓ5=<Ãv†i+"×Wä¾±È3lg@˜Ö"@0½Ežàš‹’âq‰´ƒJK1˜´$JK0°´ƒJK!˜´IK ´†¤¥TZŠÁ¤% PZ‚¥%TZ Á¤¥LZ‚¥5*iU“´hötS¡cE0°cE1¨cE1 cÅ"¬cE˜cE˜cE cE  cEcEŒgŽ•~|>+ éˆñΠøpŠODÁ¶àçî]ÑòÝg×Á—VcO¦ƒÜÑènX‡`Àux‚[ÇpÃ:®Ãè±ÿg„Ù.›u÷Ã<‹@ŒÀuŸïê³¾$JTb'B(~.«Jö²_(Ó ,†„ð.)g_Ÿ‚%¸) ÅS°7…1À’¼%Ø’|¿ºíd†ô±ÞQVA|vï–¦NœâÖ–Ú3lk‹gøÖÀ°­-€áZ[("nmÓÚ¦µ\k‹G¸ÖOЭ-~¼im©“‹UAz(MÁÀé¡4=¦‡EØôP–ŠÀÒC`zLA@é!ƳônHÅ é!8=ƒ¦‡bÀô°›ŠÀÒCXz(L€é!(=Äx–£6µÐ(³Ðx-ÕŸ˜…F˜…F …Æ"¬…F¨…F0¾ê܈Æl&µÐ¬ŸîñYÉ£G|–wrsö®«í¤šúû"ú»¸õïôs5'€éþ¢Çå5X@Á à†Ò5X@Á àÆ€­1Z?€Y?ú ðª£WMØL´ûDX5±Õµ€¥ž3Ät• Û¦¢™ßM L XZ-ˆ…BÀX(Œ…BÀX å±P …€±P‹1Fಶ`À²¶"°²¶'ÐrpLp±\¯Zm[­„䪟ßG¹c.ÜHó~uùç3Ã5rFÜD‡¢)0) —ÄC2`<ÃÆÃ3|<†â!0€aãá>£bT¬à/°à/°à¯´àßoŒ¶[+3¯¤°ìf‚(6®ŒB­6ïý7‘—o3›öϤ<]€Ê£BÀºôŒÏ®vù ¯i i,Á5PBøwŸh%9¸ª„7@‚ÿ§X ‚•` N @ ú—•`N `•ànüP¬A€J°§  ¾ŠËJ°§ °Jp7~ŒÇCwŠ%à+k½{Å»|»ÓõÕža›ˆÃt‚k#ò ßGä¶‘ L' ˜V"Op½Dur,–bPi)“–$@i ––`Pi)“–"0i ”Öpƒ´ƒJK1˜´$JK0°´ƒJK!˜´IK ´F%­j’-»žn*´©¶©(µ©(´©X„µ©(³©(³©(´©´©²©ˆñ̦²¼#ú4?S;´?¿;ƒâÃI(>I{?û/éÌß…¶ {Ëp {˜Æ4±”¬C0à:<Á­c¸a‚×á n£ ÔÈqá Ô0qF€ž‹~C´Í‚H^-‹ó»³(8ͺ×î¸Øé›W®Ç.-û2æDx·“Á ¾Á{ìÃôØqFÜ×–úJöE2à¾õ`”ì‹dÀ}ñ ¿/à û"p_ƒúAJöE2à¾x†ß—1fP“ŽBÔ‚SÎФ£ФÓoˆ÷v¼WRº´kax-lªý?sYØ6£~,Ãw£í Eó <á†yžÇ(æA­’­€a­žá­ýƨ? cùö§?¿;‡B­GÍþxnu q{k›hýò,ÁÎa(žƒ%Ø9Œ‚­ëf4»ÂÔ" ×ÌÒx†ifÁh8%˜f@0Í,€àšY("nfÛÌâ_t‘„ã 6Ó6³4I‚èZ1˜®=š t­L׊umV׊@u-H×n|ÁfR]7èZ1˜®=Z: t­L׊umV׊@u-H×n|ÁfR]b Ìj%Ðje n,š„b<Â&¸­´kµr7¾ßÆ7ë¡JÍãøê˜:a›½Ûjý0³ë¬-Ã5‚鬓?ë ¸E`ënX‡`Àu([Ç(ÖAý,ŠAý,ŠÁü,’ý,‚ý,‚Aý, Áü,ŠÀü,‚ý,ýFx× !½ðÙmE”[æâ…Ž(vw ÅË Q¨ùµ©ÞÏÝ9»ÓÛbú° ×b ¦Å A ¡(–‚c©,–žM±nˆ¥`ÀX*‹¥'@#GA,ǘ€ )‚ )žàÖ±dèþHðåËÃjzœp'“KÆ\É ¯¼„a8 Ã5p&ö¢xHŒ‡dÀx(ÇpC<$ÆC2`<ƒÆc êž èž X¨W ëž èžð ïžè7Æz"î?ê–6ª„âç²^‡v7ùó]¤ï4~&¹[Àø+fðC½ŸIîÌgÝçf×M¿üý± ìXw¹ùÙèôõ¸?×;ƒâç²j¥Ýòœ§6ÝFÀâlHS8)s_Ÿ‚%¸) ÅS°7…1ÀR½%ØR}¿ºõĆ<Ü;Ê*ˆÝ1ëwS§?QqËKã¶åÅ3|Ë `Ø–Àp-/·¼‚iyÓò®åÅ#\Ë‹'è–?Þ´¼$õÕ’ôP š‚ÓC1hz(L‹°é¡,=¥‡"Àô˜‚€ÒCŒgé1ÜŠAÓC0pz(MÅ€éa6=¥‡"°ôP˜ÓCPzˆñ,=F!mj­Q f­ñZÂ?#0k"0k"@kEXk"Pk`| ÔÑ/ØLj­Y=ºº^ÏÏlŽOñ±Þé½Ù¾µ°þ¾þ®#î¬!~ºæ 0ýÝ¡_÷¸¾ (˜\ÃPº (˜\ð$F@'ˆ0#H¿^ÍjS:¾h£z—Üóg[mcØÃ#¦k\ÜLÍüf¢1½*Ž_­&EЂX(Œ…BÀX(ŒÅP …€±P …€±c.m ,m++m{- ÇË~%|ª×B˜J%§zgQî˜ 7ÓÔí.*Ëç€M«`ZÔ9e˜VÁ FØZÇq«`Z.‰‡dÀx†‡gøx 7ÄC2`<ÃÆÃ3|Fìûê€1—Â;œ õ9FÜWGséÃO=Cô²%>…’}‘ ¸/„áö0ì¾HÜÏðû2ܰ/’÷…0ܾ†ÝÉ€ûâ~_ƘAM9 QOjD9CLµ¦…€¦œ~C¼»Õ>÷>ÞDÚµ0 ¾n¦|juZ4=aØÞÓÔ®P2ÁÀón˜‡`àyŒbÔz!ÐzÖzáÞzÑoŒí4ðTí6"ˆ‚­Fû3ú–/fÏÕõ7³&6ƒës°;‡¡x–`ç0 tK,›Ñ>ÚÝ™‹óç\ëJëͤðbµ œLë ˜Ö@p­+·®‚m]ñŒ/:G¢ñ›i[W’r‰®ƒéÚ¨ñẮéZ ®-ÂêZ¨®éÚ/ØLªëá]+Óµ'PÇu]+Óµ"@][„Õµ"P] Òµ_°™T×£˜³W ´WY‚Û  Æ @¬ n+-ÀÚ«Áï·ñív„Ròê»_Ûýs×òyf×*ØX†ë„ïu2nL\%ë ¸E`ënX‡`Àu([Ç(ÖA=,ŠA=,ŠÁ<,’=,‚=,‚A=, Á<,ŠÀ<,‚=,ýFx¯/h’÷3âïÊ-sñBG»»„âe†(ØðÚ¾vÇRNŸIö-¥µe¸–R@˜ %á:0Úbõ-”ÄR0`,ÅÒ¨{âz,‡b)0–ŠÀbé ÔÄq=–cLÀ^Á€fOpëX3twòäòýáG5=N¸ÓÈ%c®ä†W^˜«°´YûŒa6“ {I<$ÆC2`<ƒÆc¸!’ã!0ŠAã1 uOHtO-Ô †uOHtOx†wOôãõ^«\Ýñ.ÒF•Pü\–ëЮ–[UÍôÀc»‹_ÇÜ-aü3ø)Þ¯cî”Ìg\»¦ëLç€``ç@¿2Þíp¦D+v&„âç²j¥Þ=²ó«Ÿ¦pRæ¾>KpSЧ` n c €¥zK°¥ú~#t«…¿i’‡{GY±ëX¿ž:ý‰ŠÛ\Zϰm.žáÛ\ö¹†ks¡ˆ¸ÍL› ˜6@pm.áÚ\ÜjÛÄj˜®xqk@¸61€˜^Ç/Zë$G®ÇB!`,ÆB!`,†òX(Œ…BÀX(ŒÅ#p¡[0`¡[X¡Ûh8&¸X®W­O[u !yÍ-Îô΢Ü1n­yí?z²|Ø5>Ã5rFÜh‡¢q0)—ÄC2`<ÃÆÃ3|<†â!0€aãá>£bTÌ Ð Ð ÔÐoŒö³Öy^I©ÙÍQl\…šo^ûa–O4›Ѥ^]€Ê£BÀ*õŒíð‚µŒ÷UYüÊði ®É„¿û@«Ê!ÀÕS- |ö¤€¸ÉÜø?ÅJ¨KpJ°ZÜ¿¬ pJ°«Gpã‡b%T‚%8%XõX\V‚8%X€U‚#¸ñc<:U,_Y»Ïî ÇéÆvµža»‹Ãt´’¸»È3|w‘gØî"€0ÝE€`º‹<Áu%Õãi)•–b0iI”–``i •–B0i)“– @i 7HK1¨´ƒIK ´KK0¨´‚IK˜´JkTÒª&iÑìé¦BËŠ``ËŠbPËŠb@ËŠEXËŠ"0ËŠ"0ËŠ"@ËŠ@@ËŠ Loà¯g–•õÑû÷eùyÝQœëAñá$Ÿ$ˆ‚}Áû‚.=Mºq×ÀGa@›@Á"b\„¸E 勈pà1Æ€™-,€%NÐjÑo„ö¹¦÷§ä\ï, έz÷¤<}ŽØwÚÕ€á:í2Ôë q§aÌåP£˜!ºÛê$Û öE2à¾õ]”ì‹dÀ}ñ ¿/à û"p_ƒz@JöE2à¾x†ß—1fPcŽBÔ‚šQÎИ£Sjµ]ÙŸ ìÌìŠÍÕ0Ñó 9ɰó10Ñó 9ɰó1ÃF$¢!#ư§ñÁÀˆD4dD‚ ŽHô«qý:Ò2ÏîödùÚžØ^Þ§kÔ@ü(vnƒñ·nøGw?ŠÓ0že•ŸÝ÷î>£¡ÃË"?/ÿýÿÿÉüýÞ7‰Qx,K­¼6Ï­Ÿ•éOy[ª¸8ÎÞ?hCóP !Œu@Ê£€§òý*<–1üóEž”¹ ^ÝútŠå•©Ó?PõN–ØÉÂw²;Y„A,–¨w²:Y„,B N&¨“……ÜÉÂ×C'Kq–Ú²=’a·G0ôöH†ÝÉÛ ÜIpÛ# n{$An@Èíµ=Âõn{ ldØí ½=’a·G2äö@·GÜöH‚ÛIÛ#r{Amp½Ûc(m£I†‹Ñ°`ë? .F“£I‚ŒÑ 1š$ØM0~›Þ¨]ß°˜6FÓ/D·|™-~øOî.ÿ6»Þ67þùrNí‹W+P»v¦zô;<öß -c·14ß -c·1Ö  † €$Á@úU¸ß–xÒït²hÓÅ?¿«ûÀ.LLŸwõÞ)AP˜ ¨¬8m˜‹DȹH„œ‹DȹÚç"r.!ç"r.Æ:¡O·ƒ!·“àηY°gÃuærùк¿NÏY(~äîþJ9b,>EóÚþ±4¿˜:;aPg 7ê½tÚ]ñáÓ0Ñó! œ6x>†æ#r>„óÁÏǘŒ“;þ†<þ†<þO†=þïWãv*šøÁÝß(8¯N‘Á›ëiû6äù­ÌÐ úû´º…Ú‰1òŒz™ŒÍÓoäCzï(P;‰ªÿî[@ž)×:ME úÕÓõv)Ðõš+!²P J@@íﯨÀJ ®š+!²P J@@&,öWT `%@×õëeNýɺ}OãüÖNê#º±}D€>"#PÜGÄö úˆ„}D,PÑ­øœl(­dØÒJ†+­(ÈÒ †.­`ØÒJ„+­$¸Ò ‚,­á€ÒJ†-­d¸ÒŠ‚,­`èÒ †-­D¸ÒJ‚+­ ÈÒSi¦Ò’°ŸUV‚¡+ɰ•dLä`` ¬$ÁV’à+I•@ÈÀJT`%\ï+ýÜNÿ£ùÁÝ_(«n !P[‹%êm-BÀ¶6~›"©]ß°˜ØÖRý·Ôu2\]³`Cûë: ®®“ ë ¬ë$غ†ªkº¾a1m]Ôu2\]³`#ûë: ®®“ ë ¬ë$غ†ªkº¾a1m]a.jµBÖª´1 ¥D£V$ÐõýzýuéH-^¥“°›¾ØÓòFfj¼¡A̓B€æÁ"ÑrÁ÷‘wÃ÷ yIp÷1†û°y–dؾg~WêôOS½±åÎ6¶°Á-ÂÀÆaPc‹%ê-B€Æ!@c‹¨±… jla!7¶ðõÐØRœ¢¶ldØí ½=’a·G2äö@·GÜöH‚ÛIÛ#r{Amp½ÛÃÛ#v{CodØí‘ ¹=Àí‘·=’à¶Gäö„ÜAPÛ#\ï¶ÇJÛh’á4,؃úO‚ Ð$Áh’ 4H`€& 6@ŒÁæ6j×7,¦ Ð,_=^î2åWúƒ¼‹?Î.Ýæ95Ó;‰©‰ñf…jIaú·Ç¾Ñ£á6Xhƒ¼¡ù6Xhƒ¼±NèìG0dö# .ûѯÂ}I6M4Oò.Ë{óétÒƒ½`W¦Ï»zû Ô Æ5‚§Ÿûç!r‚ ç!r†æy‚œ‡ Èy‚œ‡±*èÃì:!³à³°çÀU€¦qùº^O¯(>¤Âƒ»¿RŽ‹Ì\îÍÃ{ïÓ‰!u^„AÝ€Þ¨wÏi#t§Á-ó 9ÂÀù`ƒçc8`>¢!çC8lð|ŒÉ8¹“þhÈ“þhÈ“þdØ“þ~5nçåPæ÷ËUy$JÁyuŠÍØ\¶ïBžßÉ }ŸÅ±t1´c"äaô<ÛØùí»Ð9ò@:G¬Pýgßöô¸ Ðá)Õ¯š¨wŽH®ÿÓ\ A•€Uöw% @•€V týÐ\ A•€U6O±» J@+º~¬_/S)(èOÖí¯»ó;;©eèζ Z†Œ@-ClpËØ2$hÂÏ_?õ–!¨e¨8,n)­dØÒJ†+­(ÈÒ †.­`ØÒJ„+­$¸Ò ‚,­á€ÒJ†-­d¸ÒŠ‚,­`èÒ †-­D¸ÒJ‚+­ ÈÒSi¦Ò²'®U&T‚¡*ɰ •dÈ„ ˜PI‚K¨$Á%T’ * • ¨„J¸Þ%Tæßˆ®—ÓéºüFÔ'ù4 £ðt…7‰Rt xû"æù}ÐØ§wCƒõ´PÓ"ÐrÁ÷ÁÝÇpÀ}CÞ tc:•²`ÁF$> 2eѯIJÇÊŸ–û¿Rô6{Ü7ω¾3csÝUÔ\÷…a“Á¨7׃šë´ÚŠ´B˺DC®‹1lò¢e]¢!×… ^—á€u‰†\cØ$H˺DC® ¼.cݰáœDtaS)ŸÏI„Ìçô+ñ:-guÅÑ%Þ‹Sìgáò{ìÏíÜ&ešÕú¥4¸µˆ/´Œ#zÃã†ÇÆa£ÑQ a`ƒ Žbô«q¹ÌÆïL6OˆAtðè¶ypÿüŠìwÈsöªPïk-2ûÇ€Žah 8†128±,Æåõýc`l@‹lhà“],B€.!P‹%ê],BÀ.6~›!©]ß°˜ØÅRü·Ôu2\]³`#ûë: ®®“ ë ¬ë$غ†ªkº¾a1m]Ôu2\]³`ûë: ®®“ ë ¬ë$غ†ªkº¾a1m]a.h´BÖªöÉ5U€– Z‘@×÷ëõ×å)JåÇ:»ùÃø´¼™ZïhP«  U°È_´ÜG0ä}$ÁÝÇpÀ}CÞGÜ}Œá>lš%6Í’ —f‰‚L³C§Y‚aÓ,‰pi–$¸4Kdš¥_…ç}Ê>\V¥2.t¥àê…ËL):úz{Þ6O×^”†Í¥74¨»TÐ^ª_¨ 6¾Ð2—Ás™7—,ØÅþ¹˜Ë`ȹL‚›KlŒcÿ\ŽuAÇQ‚!ã(,Ð}Ì;ô¾yøüÂáóiú:Q½«0¨}ÓÔ¾) lß,Î×[æ#r>¢!ç#v>†æ#r>¢!ç#v>Æ`ØìD4dvÂö˜>˜ˆ†ÌN°ÁÙ‰~5çå”ë÷‘8©á‘,ŸB›?ñO—éëv¿ŠÛ`ü­þ1Þ¯bç4ŒgYå˦ûÚ¾îû‚†N ,‹|¹œ—ç’Ïvüï/ËR+×çæÐïïÓòh¶*T7pqȽ(Іæ! @Cë€<¨GêûUx®Ok(6,*KAla±œºLÿ@ÕÛ]l`» Üî" lwµ»X¢Þî"hw´»Ú]˜ vr» _í.ÅéjËöH†ÝÁÐÛ#v{$Cn$p{$Ám$¸í‘¹=!·GÔö×»í1°=’a·G0ôöH†ÝÉÛ ÜIpÛ# n{$An@Èíµ=Âõn{Œ¡´m°&.XÂ=Àÿ$¸`M\°& 2Xƒk’`ƒ5Áølž£v}ÃbÚ`ÍòÕãÑuK½üêQœwùÇÙkÓW8½”˜ZïV¨–„¨µ±È1ì¿ ZÆ och¾ ZÆ oc¬: ™ I‚Ë„ô«ðß.›¿Ý_ÿì¤ÓFÛ­.ß|Caú¼«7U±@ýa,P{Xqº‚ ç!r‚ çahž‡ Èy‚œ‡ Èy«‚>Ù®ò`;î\{\hûxO ðûWíð8ﯔ#Æâs4k·y¤ïc:7œþù¨ƒ» ƒz½QïªÓFè,΄[æ#r>„óÁÏÇpÀ|DC·0p>Øàù“qrçýÑçýÑçýɰçýýjܺ%aSœâH”‚óê›´yl_…<¿’ùýÓš<žn †vbL„<”^&cæwðBCÉ“ê'‘@õß|y½=@®]O'§t}õK¦¼¾ÞJâºüOkÔYPÐõöü~oÐõTt=VtùÐZu@VTt½Oì­ºž*€®Ç €.«—Ëü öCôyºnžâ8ý¥‚ C6°aHÐ0djbƒ†ØÀ†!A@àaˆj*Ž„[J+¶´’áJ+ ²´‚¡K+¶´áJ+ ®´‚ Kk8 ´’aK+®´¢ K+º´‚aK+®´’àJ+²´ÆTZ§©´ì¹êÇE•9”`èJ2l%2‡‚æP’àr(Ip9”$ÈJ d%*‡®w9”~n§Ûþ}˜Úý…ÂÓiÞ$JÑaßí Þæw?cWÞ êÊÓBuN‹ãÿ–û†¼è>†î#ò>X ûƒÐ©, 6ñIYŠ~%®Ï™¸ünp íþJÑÛlû\ÂîÁ>ºÔFç f¨õ&:AP%BãZ‘FhX‘DÈ„U4¬H"äŠ Á+2´¯H"äŠÂ<V$rEà«„ÍÛ¡››3ù ȼMdÞ¦_…Wñ*]óxî¯ýÑ·f^–·6ccé n,-â-ã†ÇpÀ8‚¡Ç1†qØhE4d´B­`ƒ£ýj\®³Q¾# gD):JôÜ<~o~ö»DäÉyU¨wª)‚ýc@Ç04Ã…˜ãuÞ¼7vN†<¦ŸËªÿ0=Ù€¾-Ø0À'úR„})B ¾KÔûR„€})lü6R»¾a1±/¥8Ùo©ëd¸ºfÁFö×u\]'AÖ5X×I°u U×t}ÃbÚº¨ëd¸ºfÁ7ö×u\]'AÖ5X×I°u U×t}ÃbÚºÃ\–*2L…­6 TìÓhª-%˜¨"®ï×ë¯Ëó‘Ê*nÝ<ì´¼w™šÿhPóŸ ù¯ÈZ´ÜG0ä}$ÁÝÇpÀ}CÞGÜ}Œá>lr%6¹’ —\‰‚L®C'W‚a“+‰pÉ•$¸äJdr¥_…çcÊÓ1\V¥2.t¥àê…ËL):æúÚ>qrzÿ1·‹ÞÑ ~Q!@èlT¡.بBË\CÎeÜ\²`ãûçr8`.ƒ!ç2 n.Y°‘ýs9Ö= †Œž°@÷±ìÐÍc%ç ŸOÓ׉ê}Ü„A ™Æ †La`Cfq¬Þ2Ñó 9ɰó10Ñó 9ɰó1Æ&¢!SưçôÁÀÜD4dp‚ NNô«±<þæŸsKœU£ðXÞŸC›£Üÿ+Óêþÿ/X›½Ûdü­úݳ50žq16löÅÞW4tr _Œçù¶üxTÔ ŽÄ(<–¥VºËæ¹Îoeú3ÂÎÖ…ê~¥¶{(Іæ! @Cë€<ªGêûUx.O`øçË=)KAlÒÿú!«O6°¹… nn6·ƒš[,Qon4·š[„@Í-LPs ¹¹…¯‡æ–gñaÕ°=’a·G0ôöH†ÝÉÛ ÜIpÛ# n{$An@Èíµ=Âõn{ ldØí ½=’a·G2äö@·GÜöH‚ÛIÛ#r{Amp½Ûc(m­I†‹Ö° ð? .Z“­I‚ŒÖ Ñš$ØhM0~™è¨^ß°˜6Z³|õøÿË/ÅWú#ºË?ΧÍsŒ¾S#ãà ÔÂjd|ÿˆî¾ ZÆ och¾ ZÆ oc¬: ™ I‚K…ô«pÖ~v²y£Ûöe†ïw²b؉é¯ÞZ%굉݋=².!ç"r.!çbhŸ‹DȹH„œ‹Dȹë„>è†<èN‚;èfAærùÔz]Ï˃²‹O­ðÌ#Æ¢£5·óyó óù]¿Ó¿'õ¯t7aPã 7êvÚƒ¿‰›æ#r>„óÁÏÇpÀ|DC·0p>Øàù“qr€hÈ@4d 6ЯÆíŸ·Áò3»¿Qp^"Ã7·óö½Çóû—s‹hy^Ý@ íĘyJ½LÆúì‚åM»ÐdòBšL¬PýwßöT¹ Ðy*Õ7™H®ÿÓ\ A•€Uöpw% @•€V týÐ\ A•€U6c±» J@+º~¬_/“*(èOÖÇkóxÇ÷ÿÔ]ôd»‹„ñógr½ ÅÔ]Äw±ÝE‚€î"!@w Ô]Tœ·”V2li%ÕVdiC—V0li%•V\iA–Öp@i%ÖV2\iEA–V0tiÖV"\i%Á•Vdi©´NSiÙ#Ø‹*#+ÁБ•dØÈJ2dd Œ¬$ÁEV’à"+I‘•@ÈÈJTd%\ï"+ËoDÏÓé¾üFT´ÔŸæý…ÂÓiÞ$Jѹàns ;¿ú[øhP ŸªsZ$Zî#ò>X û¸`Èû`îc B§b,ØÌÄ'AÆ.ú•¸¾f¢øi9<Íû+Eo³îþõ“ŠïLPÏ'lè¡NÔ;îA w–=nEb¡aE!WD6zѰ"‰+‚¯Èо"‰+"iX‘DÈA‚Wd¬6‘„nlåƒ ó8Aqœ~^Ýr*WRâ8Eô-?½ž–—6cê îA-‚ -ã†ÇpÀ8‚¡Ç1†qØÐE4dèBº`ƒCýj\ÖS‚ßÅŽb1Únÿù=Øï‘'êU¡ÚÒZ¦ öÃÐ<p cdDbYŒíóÀß5Aý+/$ }Å6ð€æ w…j]‘B½s…l\Aâ°!‘ÊåûW»VŠsý†b„+fl¼aw1Àsd1“€Å[ÌuB3\¾m1íÅWÌØ„Æîb€+æÈb&‹9¶˜ë„*f¸|ÿ*Úbëp©: óRÐ Ðõ6çS»Þ>¦v=­!]Q)èò~½üº>©8vÒAÖÍÏØ§å-ËÔü÷Dƒšÿ„ÍE€¢å>‚!ï# î>†î#ò>’àîc ÷aã(ɰq”d¸8Jd%:Ž GI„‹£$ÁÅQ‚ ã(ý*<Ÿ³p¹ýþàÃeUÊ!cáBW ®®Q¸Ì”¢³«—ËmóàÜ÷ß'Ô!ú@ƒ:D…¢Z°ùƒº`ó-s 9—IpsÉ‚Í@ìŸË္ †œË$¸¹dÁæ0öÏåXtž$2OÂÝDzC7Àû$ò|š¾JToãÎu_ ‚š/™ÀÞË✼a.!ç"r.açbhŸ‹DȹH„œ‹@عë„ ?$B†aOÛë†!ÃHpø¡_‰ÇrøX¼¡‹gÔ(<–åƒg}†xõ¹Ø° ÆßºáÈ}.6MÃx–e~nÚ¥í«¼ohèÃÿe•Ÿ—óúKSQ+8£ðX–ZÙ>~~ÚôGƒsbyêô¯S½?åÅö§°Áý)ÂÀþaPŠ%êý)B€þ!@Ѝ?… êOa!÷§ðõПRœœ¶ldØí ½=’a·G2äö@·GÜöH‚ÛIÛ#r{Amp½ÛÃÛ#v{CodØí‘ ¹=Àí‘·=’à¶Gäö„ÜAPÛ#\ï¶ÇJÛÆf’ár3,ØãúO‚KÎ$ÁEg’ ³3H`x& 6=ŒÁf7j×7,¦ Ðô ñÿÆ‹7Q~õ¨?»üãìº9М^8L½ˆO+Pv¦{ô«9öß -c·14ß -c·1Ö  †Ì€$Áe@úU¸¿j?;étÑöÙûïw°b›×ƒ‰é¯Þ%ˆËûwŠ‚:½ŠІ¹H„œ‹DȹH„œ‹¡}.!ç"r.!çb¬úX;òX; îX›{\h.—O­ûë¿O©ÓÇO­ð@#Æâƒ4××æÏ¥ùݾÔûwÆœ-j7êÝrÚ½ÅÙpË|DC·0p>Øàù˜hÈùÎ<c2Nîä?òè?òì?öð¿_Ûµ†î#ò>X ûƒÐ©Ø 63ñI±‹~%n§™(?6ðVœb·Ùý´yÕô^an¸{ƒ:î¾0lî!õž;cPÓ6B§[‘[hY—hÈu1†Í`´¬K4亰Áë2°.Ñëb ›iY—hÈuaƒ×e¬6¤“ˆn"l0å!C:‰!~%^—嬮8ºÄ{qŠþ,Ü<„g~O3v¦ÞÑàÎÔ"¾Ð2Ž`èq Œ#zc‡bDCF1„Q 68ŠÑ¯Æå>eµãŒ(EGî×õq}ó˯ß%"OÚ«B½ÕµHì 8†¡y (àÆ ÈèIJ[c~ß4¶”'SŸŒÜØâø$äÆ#äÆ#@c‹&ª-F Æaü6ER»¾a1©±¥<úo©ëd¸ºfÁ† ö×u\]'AÖ5X×I°u U×t}ÃbÚº¨ëd¸ºfÁF:ö×u\]'AÖ5X×I°u U×t}ÃbÚºÃ\Ô*2j…­6$Tìãlª-%µ"®ï×ë¯ëõÏß?ë$ì¶f9Ø¥îÁÔ=(è,-÷ yIp÷1pÁ÷‘wc¸›gI†Í³$ÃåY¢ ó,ÁÐy–`Ø&2C¦c`Ã1uâ°‘ŒÊåûWÑ&c–ï¯G· Å—ÿê#ºË?¼žÝióã…º_V ¾ì$PwbDØ,´ŒAÞÆÐ|,´ŒAÞÆX't¨#2Ô‘êèWáqZ~ú½Å|\hó°Óû¬Øåõdbú¸«wF ‚º¼A]^ʼnfÃ\$BÎE"ä\$BÎÅÐ>‰s‘9‰s1Ö }N yNwNÍ‚=ß­ 4—˧Öõúßß³ïÿŠß­Ã#º¿RŽ‹OÆ<ïõ1½‚m&¨ëOõ&9K„ž¿â ·a.!ç‚ œ $x.†ö¹H„œ &p.à¹qr§÷‰§÷‰§÷°§÷ýJÜ–͹†Éý‚“ê›–ynßs,†Ýûm?1´c"ä1ó<¯Mwëüf]è 9£@=!V¨þü`{,\è@êo¨÷„H®ÿÓ\ A•€Uöt~w% @•€V týÐ\ A•€U6$±» J@+º~¬_/£&(èOÖnóëîü>Nh*˜ýdP31r3 HØ $ j2Dn2Bn4•§Â-¥• [ZÉp¥YZÁÐ¥ [Z‰p¥•WZA¥5PZɰ¥• WZQ¥ ]ZÁ°¥•WZIp¥YZc*­ÓTZöÀõã¢Ê4J0t%6’ HA)Ip‘”$¸LJd(%2•K ×»\ÊüÑër:-Àô£ˆx$÷7 O§Qx“(E‡{_Û—ã¼_õŒw/4¨ãN ÕS"ÐrÁ÷ÁÝÇpÀ}CÞ tc:³`Áf$> 2fѯÄí<åÇÞŠSô6{Ü7O€í~ì˜{ ã}QûkçÃæ‚Qoš3uÍi#´ª9…–u‰†\cØÌE˺DC® ¼.Ãë ¹.ưù–u‰†\6x]ƺaC9‰è&ÂQ>2”“ÊéWâu]Îên¿ÿ Ä{qŠü,\žOüóßûMÍØZú@ƒ[K§šÆ =Žá€qCc ã°ŒhȆ00…ÁÇ0úÕ¸Ð-h„Ü-X$0šî#ò>’àîc8à>‚!ï# î>Æp6Ï’ ›gI†Ë³DAæY‚¡ó,Á°y–D¸äqz&86‘À^"& •HÔI„7!}D,@ÐE„5‡Ä [Qp•YQuBWT°WQpUdE í[Qp•YQuBWT°WQpUdE¡¢NSEÙcÕO«)S(uB‡Pa3(0@ €ËŸ@ÆOê‚LŸÔ>©_î²'ýrýíÿý ïë_Å=Â(<—FὡðݶÌ/}¦^¼òXõƒ½x^¨Î驸W¸á>‚!á€û†¼è>Æ t*?Á‚ ?|d~¢_‰ÛúÀ² ˆnÅ)z›Ý6O#œÞ1Ìís/aPû܆ 0£Þ>g jŸÓFhY+-ë ¹.ưaŠ–u‰†\6x]†Ö%r]Œaƒ-ë ¹.lðºŒuæmÑM„M˜|"dÚ&2mÓ¯Äkù§a~i!?¬û+E®i—ù¸;LŸDpƒiFhEУÚGQ'ô(Æú(lª"2UÁ¦*àTE¿—çL”5ŽÓ¡Ú>€O>šú"…z§j"Ø?p CóPÀ1ŒAIˆy1®çëæŠï¢ ¾”ŽËTáÍ‚M| /EЗ"êK±D½/EØ—ÂÆ`C!µëûRºß¼¥®“áêš›iØ_×IpuY×H`]'ÁÖu0T]Óõ ‹iëz8 ®“áêš›ÐØ_×IpuY×H`]'ÁÖu0T]Óõ ‹iëz CpÉ© Èä ´ØÌO°O£©´”`rŠº¾_¯¿®ÏG*~0ÖÁÖëök×üîejþ;£AÍBøùœ¬7ÿ ‹–û†¼$¸û¸`ÈûH‚»1܇M¬$ÃFV’á2+Q¡•`èÔJ0ll%.·’\ ‚L®ô«ð:ÏBùÁ‡Ëª”CÆÂ…®\]£p™)E§Y¯÷Í3'§w c‡hy–ùÁ€Q#äQ/ØØB]°±…–¹ †œË$¸¹dÁF'öÏåpÀ\CÎeÜ\²`ãûçr¬ :† CaîcÙ¡›ÇJÎ/>Ÿ¦¯ò%éŸ÷ùmµkÐÔŽ) ìÇ,ÎÕ[æ#r>¢!ç#v>†æ#r>¢!ç#v>Æ`ØÌD4dfÂöx>˜™ˆ†ÌL°Á™‰~5÷å”ëñû¯HœU£ðXæÏ¡ÍQî<åÆáëï½Ûbü­þÝ×ß{§e<ãblªí˽ŸhèÔ@¿Ïókùñè÷“y$Fá±,µÒ]6Ïu~+ÓŸòp¶*T¿ÆÇÜû‡€ ah 4„±È£zð¨¾_…çú†òË=)KAl–W£NÿDÕ»[:6°½… îo6¸ƒ:\,Qoqô¸š\„@].LP› ¹Ï…¯‡F—®ø°jØɰÛ#z{$ÃndÈín$¸í‘·=’ ·G äö‚Úáz·=†¶G2ìö†ÞɰÛ#r{ Û# n{$Ám$Èí¹=‚ ¶G¸Þm1”¶Ö$ÃEkX°GøŸ­I‚‹Ö$AFkÀhMl´&?‚MtÔ®oXL­Y¾z\Ý«òËGxDwùÇÙãôíC¡ÏV°/¢ù$Lÿöè—uì¿ ZÆ och¾ ZÆ oc¬: ™ I‚K…ô«ðè–ŒŠŸ(uÞhóNÖÓû­¬ÔVžù|"¦O¼jC•! 9ÌÐV‰6ÌE"ä\$BÎE"ä\ ís‘9‰s‘9cÐÝÁÝIpÝ,Øâº@s¹|j½®çE(_ˆsá”#Æâ£5¿Þh2¿í—º_ ¶AoÔí´‹câ–ùˆ†œaà|°Áó10Ñó! œ6x>Ædœ\ 2 H†ô«q{”GMüÈîoœW§ØðͯÁÌï_†Ñ⼺Ú‰1ò”z™Œõ‘§ùM»ÐdrAšL¬PýwßöT¹ Ðy*Õ7™H®ÿÓ\ A•€Uöpw% @•€V týÐ\ A•€U6c±» J@+º~¬_/“*(èOÖÇkó¤Çéoì.êØÀî"a@w‘¨»ˆ î.b»‹ÝEB€î"¨»¨+>'J+¶´’áJ+ ²´‚¡K+¶´áJ+ ®´‚ Kk8 ´’aK+®´¢ K+º´‚aK+®´’àJ+²´ÆTZ§©´ììÇE•‘•`èÈJ2ld%2²‚FV’à"+Ip‘•$ÈÈJ dd%*²®w‘•å7¢çé|Z€òhŸ†ažN£ð&QŠÎotçselá;£A-|Z §¥ÿ9à>‚!á€û†¼ì›> Š]°`3Ÿ»èWâv™‰òÈoÅ)z›u›oÍÓ›†±ë®<öûh@×Ý7†Í=£Úu§ èºóF½Ó­Ì-´¬K4äºÃf0ZÖ%r]ØàuX—hÈu1†Íƒ´¬K4亰Áë2Ö ÒID76˜ò‰!DÈN¿¯õ`·ßPâ½8E.?Èþÿv&dšÔz;è‹îK- £¨zCû(ê„ÅX…Í`$BF0˜ÀÀèWâòš‰²Æq:”¢GíñÅû¥ØïêçëU¡ÞàZd öÃÐ<p cd`bYŒçæéàóûc©å´³hÁ†> ÐÎ"hgµ³X¢ÞÎ"lgaãG°Ù‘Úõ ‹‰í,ÅK]'ÃÕ5 6ú°¿®“àê: ²®‘ÀºN‚­ë`¨º¦ëÓÖõp@]'ÃÕ5 6ȱ¿®“àê: ²®‘ÀºN‚­ë`¨º¦ëÓÖõ†àVA+h°Ñ *`bSh)À€ t}¿^]«t=ÿþÁXç_7ïµ<Íog¦–ÁŽêdàçC²Þ0Øýþ÷¢á&ꄼ‰¸›Úo¢NÈ›€»‰±~6»] „K®$@Wê„Î­Ô [ ‚K­À…Vê€Ì¬ô+ðê 8ÃUÊ!cáW .­Q¸Ä”¢®Ï˦}rz=2·‘žÑ 6R!L’ê}hÁ†ê‚ )´Ìe0ä\&ÁÍ% 6(±.‡æ2r.“àæ’ÖØ?—c]С“`ÈÐ tËÝvz¿ß;|>M_ìûÓ?ïÓÚê'¯1Þ'­¶Aû“AMšå)zË|DCÎG4ä|$ÃÎÇpÀ|DCÎG4ä|$ÃÎÇ ›ˆ†LHÃÆÑ 68!ѯÆÒÏüÏ)%ΪQx,ËçÐöìvúM ›‰oÅÖÝOü­þ!Þ·bãìͲÆÏM‡u÷U: NètÀ²¾ÏKw*ç'x¡ðX–*y=¿}võU ÕÍ[gï 4„¡y(ÐÆ: äQÀ#ù~žË'O±Y™ëáխϨX^œ:ýÛTïg¹°ý,lp?‹0°ŸEÔÏb‰z?‹ ŸEÐÏ"êga‚úYX˜¾rí¿úYŠcÔ–í‘ »=‚¡·G2ìöH†ÜHàöH‚ÛIpÛ# r{Bn ¨í®wÛc8`{$Ãn`èí‘ »=’!·¸=’à¶GÜöH‚ÜÛ#j{„ëÝöCiÛM2.Ó7˜fÁžÔ\‚& .A“™ A4I° š`ü6¸Q»¾a1m‚¦_ˆÿþog¢øæQ~wù·Ùõ¶yÈñëçw蟩÷ûuV°o©ù$Lÿôè7yì¿ ZÆ och¾ ZÆ oc¬: ™IÂÏ`¤_…Çeù¹èõûG'+zm…›^ÙŠ-`g&¦¼zÛ” .ïŸ)j+ŽBæ"r.!ç"r.†ö¹H„œ‹DȹH„œ‹±Nèî`Èî$¸nh2Y ¹\>µî¯ó}Ê—€â\8刱øHÍkû×Òü*`è ,v>Ðø…Qm§óF½=°<n™hÈùÎ<Ãó 9ÂÀù`ƒçcLÆÉýGãâŽþ£!þ“aþûÕ¸­Túý–U‰Rp^"C7Óö¥ÈóË™¡ô÷Au 1´c"ä õ2›'ß̇xÐJrEZI¬PýwßòL¹Ði*Õ·’H®ÿÓ\ A•€Uòh% @•€V týÐ\ A•€U2a±¿ J@+º~¬_/s*(èOÖíëç—wR7Ñ… l'ôŠØàŽ"6°¥HÐS$h*bºŠ.ÅçdCi%ÖV2\iEA–V0tiÖV"\i%Á•Vdi ”V2li%ÕVdiC—V0li%•V\iA–Ö˜Jë4•–<ý¼¨2± XI†M¬$C&VÀÄJ\b% .±’™X „L¬A%VÂõ.±Ò/Àí|^€â·÷úó»¿Px:›D)6üØþV¤ŸÝ¡A­{Z¨ÎiWüÛÜpÁ÷ÁÝÇpÀ}CÞ tc:»`Af&> 2vѯÄí:ÅOËáùÝ_)v›OçÍãb§~,ì¶; ã}Qýkç Cæ’Qï¶3uÛi#t¸ýÎ-4­K4äºCf0šÖ%r]ØàuX—hÈu1†Ìƒ4­K4亰Áë2Ö ÒID72˜ò‘!DÈN¿¯ÇrVW]â½8EnžÆ3¿Ö™ÚRËCÔö¥ñ…¦qCc8`ÁÐãÃ8l#2Š! Œb°ÁQŒ~5®‹Q¾D gD)6zô8_×çôÍïÊ~—ˆlž%6Ï’ —g‰‚̳CçY‚aó,‰py–$¸\V¥2.t¥àê…ËL):üúßÿ¶yâîô‹ ¶˜vhP‹©¦pIõ>´` uÁZæ2r.“àæ’¢Ø?—Ãs 9—IpsÉ‚ rìŸË±.è@J0d …ºe‡^®›çê^§“‡ÓôuB¾Aý³ñ>É­~òã} +›·?ØÀYœ°·ÌG4ä|DCÎG2ì| ÌG4ä|DCÎG2ì|ŒÁ°é‰hÈô„1ìA}00= ™ž`ƒÓýj<žË)Wqn‰³jËò9´9Ì}¿fŒ;ïÅÞm0þÖ ÿxï{±wƳ¬óíñíó½Ëƒò XÖøöìÖ>ðâ]B8£ðX–JylJ®·éy4[ª¸8äÞ?hCóP !Œu@Ô£€õý*<—ß®]ñÕž”¥ ¶õ™ßŸ:ýUox¹² /lpË0°áEÔðb‰zË áEÐð"jxa‚^X˜¾wí¿^ŠÓÕ–í‘ »=‚¡·G2ìöH†ÜHàöH‚ÛIpÛ# r{Bn ¨í®wÛc8`{$Ãn`èí‘ »=’!·¸=’à¶GÜöH‚ÜÛ#j{„ëÝöCiÛ`M2\°†{€ÿI˜¾pÛÄ'Ák’ ƒ5H`°& 6XŒö]ß°˜6X³|õx=.ç…(ÎëOø.þ8»t›ç×\~~Œþ¹‘zCàEò%6Ÿêl,B »ï†È{Zï†È{«‚N‚Ô  €Ëô+ð¸.@ñ£¤Nm}¿ÀÃ:&¦O¹z3• ¨1LÓOÅõŸV»bs쟋DȹH„œ‹DȹÚç"r.!ç"r.Æ:¡¶ƒ!¶“pUGÛ,Ø#áº@s¹|j]¯çÇ,ŸZá©Þ_)GŒÅ‡i.÷Mòj~10µ ž…A­‚Þ¨·Öi#´ Ã-ó 9ÂÀù`ƒçc8`>¢!çC8lð|ŒÉ8¹CÿhÈCÿh\Ý¡2ì¡¿·×r¶SâH”‚óê·¹lß“<}夞Ðâ€z¿04 cä™ô<ÛæXùôÞ ÔRb…ê¿ù¨þ3k:?E ú•Óõ–)Ðõš+!²P J@€*›'Ø] `%@×Í•Y (P% @•€€uì®°H ëÇúõ2™‚‚þdÝþ¼;¿Ísú¨Þbqe{‰„½DF˜î¤ÞKÄ÷±½D‚€^"!@/ ÔKTœ·”V2li%ÕVdiC—V0li%•V\iA–Öp@i%ÖV2\iEA–V0tiÖV"\i%Á•Vdi©´NSiÙ#׋*#*ÁЕd؈J2dD Œ¨$ÁET’à"*I•@ȈJTD%\ï"*óïC×Ëé¿oóo"Eè¿þDï/žN£ð&QŠÎo_Ñ<¿)ö.hPÞªsZÄZî#ò>X û¸`Èû`îc B§Ò,ذÄ'Aæ-ú•¸ÝfâŸ^!º§èmö¸o ;}gÆ»Nïã‡ê_;_6óŒz1ÞÇ tÊFèkëŠMß°.Ñëb ›¿hY—hÈuaƒ×e8`]¢!×Å6 Ò².Ñë¯ËX7l@'ÝDØPÊ'Bt!:ýJ¼žµ®K¼§ØÏÂå÷ØŸÛé&ešÕú¥g4¸µˆ.´Œ#zÃã†ÇÆacÑ1 a` ƒ Žaô«q=ÏÆüO~¢÷7ŠŽÝ6ÏôŸßžý.yÒ^ê­­Eä`ÿPÀ1 Íc@Ç0A&'–Ÿ¼6Ï_|R#ËËTáÍ‚ | ‘EÐÈ"jd±D½‘EØÈÂÆ`S$µëYŠ£ÿ–ºN†«klb]'ÁÕud]#u[×ÁPuM×7,¦­ë်N†«kl¤c]'ÁÕud]#u[×ÁPuM×7,¦­ë1 ÁE­‚ £V(Ð: `CBUÀ>¾¦ ÐR"€Q+èú~½þ¶fy‹ŸŽuvó‡ñiyU3õ ^Ñ ÆA!ü|NÖ;‹FË}CÞGÜ} ÜG0ä}$ÁÝÇîÃæY’aó,Épy–(ȱ.‡æ2r.“àæ’áØ?—c]ÐQ”`È( tó½o>¿…ø|š¾HØ·©4Þg¸Õ^c¼Ï_mËö'Û6»ß»¬e>¢!ç#r>’açc8`>¢!ç#r>’açc †ÍMDCæ&Œa胹‰hÈÜœ›èWãñú}¾ežåý…ÂcY>‡6Þ¿ÊË=Æbï6놖÷£Ø; ãYÖù²i½¶o?£¡3Ë*_.]·üìTÔ ŽÄ(<–¥V®ÏÍ# ßOQ›þŒÇ²U¡º…‹îýC@†04ÂXä!= xH߯ÂsyNCùµž¥¶o ›_¡:ý Uïu¹±½.lp¯‹0°×EÔëb‰z¯‹ ×EÐë"êua‚z]XȽ.|=ôº«-Û#v{CodØí‘ ¹=Àí‘·=’à¶Gäö„ÜAPÛ#\ï¶ÇpÀöH†ÝÁÐÛ#v{$Cn$p{$Ám$¸í‘¹=!·GÔö×»í1†Ò¶™šd¸L öìþ“à25I˜6-Fd¦ ÌÔ$Áfj‚ñ#Ø(Gíú†Å´™šå›Ç£»,ßð‹oõgy—›½6=…ӛЩ­ñjûÆšOµ5 †ý·ÁBËäm Í·ÁBËämŒuB§A‚!Ó Ipi~·ÚN:gôëmàÓ¶‡]˜˜>ðê-U‚ ö0AP{Xq Ú0‰s‘9‰s1´ÏE"ä\$BÎE"ä\ŒuBsCs'Ás³`‡ëÍe¿¯ósŠO­ð\ﯔ#Æâƒ5k·y¶ïô§6 v †AoÔì´»âça>¢!çC8lð| ÌG4ä|çƒ ž1'ˆ† DC’aýjÜOåA?×ûçÕ)6zóؾy~M3´†§Õ ÄÐNŒ‰gÔËd¬Âi~%/4—ÜQ˜J¬þÓŠªÿî[Àž)W:ME úÝÓõæ)Ðõš+!²P J@ÀíﮨÀJ ®š+!²P J@À&,vWT `%@×õëeNûÉú<]7{œþ†Á®¢ØU$ è*2u±Á]El`W‘  «HÐUÄu‡Ç-¥• [ZÉp¥YZÁÐ¥ [Z‰p¥•WZA¥5PZɰ¥• WZQ¥ ]ZÁ°¥•WZIp¥YZc*­ÓTZööã¢ÊÄJ0tb%6±’ ™XA+Ip‰•$¸ÄJdb%2±•X ×»ÄJ¿·óšJ.~{¯?Ûû …§Ó(¼I”¢cÁÛ×À½_ý{W"¨}ÏÕ -b 7Q'äM @71´ßD7ÝÄX:¶@À%>2jѯÂí¾¿NÏóþJÑ{kûÀÂé•ÄÜgwõÙ}aجC0ê}vÆxÐ*¡·­È*´¬K4äºÃæ.ZÖ%r]ØàuX—hÈu1†Í€´¬K4亰Áë2Ö ÌID76Œò‰ÁœDÈ`N¿¯×+Ž+ñ^œ¢? ×`Ìi~Å3ö¢vhp/jWìý†qCc8`ÁÐãÃ8lü"2~! Œ_°Áñ‹~5®ÝlÌçü<ïo7znžÖ÷~uö»Bäáz ¨÷¶9ƒÝ# G0´Ž€ÁXdNb^†×ùúýƒaïl@‹lFà“0ýól“Ÿhb5±X¢ÞÄ"lbaãG°‘‘Úõ ‹‰M,Å9K]'ÃÕ5 6ñ°¿®“àê: ²®‘ÀºN‚­ë`¨º¦ëÓÖõp@]'ÃÕ5 6¿±¿®“àê: ²®‘ÀºN‚­ë`¨º¦ëÓÖõ†àrUA¹*h°‰ *@ZJ0WE]߯×ß–g)]/¿3Ö±×ÍSÄNËš©Uð†µ Z‹¸EË}CÞGÜ} ÜG0ä}$ÁÝÇîÆW’aÃ+Épá•(ÈðJ0tx%6¼’^I‚ ¯A†WúUXž7øÏ#úpY•rÈX¸Ð•‚«k.3¥è¤ëkû|ÊéMÉÜOzEƒúI…0%Iª÷¡›W¨ 6°Ð2—Ás™7—,ØØÄþ¹˜Ë`ȹL‚›Klzcÿ\ŽuA‡P‚!S(,Ð},;tóÊùÄçÓôu¢za¼p«Ÿ¼Æx¿ÚNíOvkGë-ó 9Ñó‘ ;Ãó 9Ñó‘ ;c0ll"26a {B ŒMDCÆ&ØàØD¿ÏÓl”–8«Fá±¼?‡–GNüü7ý8ÁmÅÏ_{·Éø[7ü㼟¿öNÓxÆÅØ4³ÙW€whèÈ@¿Ïõáeÿ‘¡ðX–Zé.›g@¿³ÉÓŸîp¶.T·ð£(µÝC@†04ÂXäA= xR߯Âky¢!çC8lð|ŒÉ8¹@4d 2 èWã~^Ni~ ñH”‚óê¾yž·ïHžßÕ -¢Åyu1´c"ä)õ2ëS Nó[y¡Éä5™X¡úï¾ì©r óTªß=-Po2‘]ÿ§¹‚ +ªìáþîJ@€*¬èú¡¹‚ +ªlÆbw% @•€V týX¿^&UPП¬×æ Óß0Ø]tg»‹„ÝEF î"6¸»ˆ ì.ÄÏAD½»HÐ]Äu§Ç-¥• [ZÉp¥YZÁÐ¥ [Z‰p¥•WZA¥5PZɰ¥• WZQ¥ ]ZÁ°¥•WZIp¥YZc*­ÓTZööã¢ÊÈJ0td%6²’ YA#+Ip‘•$¸ÈJdd%2²Y ×»ÈÊòÑót¾V~# ôþBáé4 o¥è\p·9Ð_-|74¨…O Õ9-’-÷ y,Ð} ÜG0ä}°@÷1¡S± lfâ“ cýJÜ–³ÃòcoÅ)z›u÷ͳd§ïÌØuwuÝ}aØÜC0ê]wÆ ®;m„N·"·Ð².Ñëb ›ÁhY—hÈuaƒ×e8`]¢!×Å6Ò².Ñë¯ËX7lH'ÝDØ`Ê'B†t!C:Ë¿ ÝãÿG°ï~ÿ=‰·¢ýI¸ü{ZÞòŒ}©4¸/µ/´Œ#zÃã†ÇÆaƒÑA a`ƒ bô«q½ÌFQì8!ѱ£íîŸ_œý.yÊ^êm®Eâ`ÿPÀ1 Íc@Ç0AÆ&–ÅØ>"|ne§¦–ÐÔ¢ø$@S‹ ©EÔÔb‰zS‹°©…Á&Hj×7,&6µÇþ-u W×,ØÄþºN‚«ë$ȺFë: ¶®ƒ¡êš®oXL[×Ãu W×,Ø8ÇþºN‚«ë$ȺFë: ¶®ƒ¡êš®oXL[×c‚‹YAƬP u@À„ªmLh)À˜ t}¿^[®Tþl¬S°›ßÀOË[š©sðŽu :‹ôEË}CÞGÜ} ÜG0ä}$ÁÝÇîÃfY’a³,ÉpY–(È,K0t–%6Ë’—eI‚˲AfYúUxÝgá÷Ï3áñÞ_ GŒ„«Ü ¸²á 3ˆŽ¼^.·µ¡rz"ö•Þˆ ¶R¦`Yå祻.?2µ‚#1 e©•íCìßK4ý !Ï`k@u‡Ù»@ `h4€±z½<‹'âûx­Oc¸ßÞI™+áÚ­¨ÐO`}°í,lp;‹0°EÔÎb‰z;‹ E?³Yÿ–!jga‚ÚYX˜¾ní¿ÚYŠóÓ–í‘ »=‚¡·G2ìöH†ÜHàöH‚ÛIpÛ# r{Bn ¨í®wÛc8`{$Ãn`èí‘ »=’!·¸=’à¶GÜöH‚ÜÛ#j{„ëÝöCiÛèL2\t†{DÿIpÑ™$¸èLdt ŒÎ$ÁFg‚ñ#ØÄFíú†Å´Ñ™~!ºËu&ÊßêÏï.ÿ8»Þ69ž~‡þ¹“z¿ßÝ Õ’µ.I…ý·ÁBËäm Í·ÁBËämŒuB§>‚!SIp©~ÚÏM:O´}Tÿû•­ØvcbúÄ«÷M ‚ZÀ1ý`\ÿµ8m˜‹DȹH„œ‹DȹÚç"r.!ç"r.Æ:¡O¶ƒ!¶“àζY°çÂuærùÔº¿º(?µÂó»¿RŽ‹OÐ\_›?—æWS[àUÔèz#6B[`q<Ü2Ñó! œ6x>†æ#r>„óÁÏǘŒ“;ú†<ú†<úO†=úïWãÞ-Y›gqÄL#Q ΫSlèæ¶})òüræ÷omòœºÚ‰1òtz™Œm÷ýÞŸ*«ÿdøDšH¬Pýwßö8¹ Ði*Õ7‘H®ÿÓ\ A•€Uö\w% @•€V týÐ\ A•€U6`±» J@+º~¬_/c*(èOÖÛæ[ÝüãÿôwP½¯âÁv º‡Œ@ÝClp÷Ø=$èt±@ÝCÅéqKi%ÖV2\iEA–V0tiÖV"\i%Á•Vdi ”V2li%ÕVdiC—V0li%•V\iA–Ö˜Jë4•–=‚ý¸¨2² YI†¬$CFVÀÈJ\d% .²’Y „Œ¬AEVÂõ.²Ò/Àí¼‚!1Š]°`3Ÿ»èWâöœ‰òcoÅ)v›ÝOçïŸG|uÛ}aØÜC0êÝvÆ n;m„·"·Ð².Ñëb ›ÁhY—hÈuaƒ×e8`]¢!×Å6Ò².Ñë¯ËX7lH'ÝDØ`Ê'B†t!C:ýBt§5PW]â½8En»3¿Ö;R¯hpGj_hG0ô8†Æ =Ž1ŒÃF1¢!£ÂÀ(ÅèWãzéýÔæÞß(:zt¿®Oè›ß•ý.yÒ^ê­®Eê`ÿPÀ1 Íc@Ç0AF'–ÅØó)5¶<Ù€Æ-ØØÀ'[„-B ÆKÔ[„€-lü6ER»¾a1±±¥8úo©ëd¸ºfÁ† ö×u\]'AÖ5X×I°u U×t}ÃbÚº¨ëd¸ºfÁF:ö×u\]'AÖ5X×I°u U×t}ÃbÚºÃ\Ô*2j…­6$TìÃlª-%µ"®ï×ëo˃•ÊŸŽuvÛ³¼˜yú YïÃy A݃B€îÁ"ÑrÁ÷‘wÃ÷ yIp÷1†û°y–dبÈçÓÔZJ0cE]߯×ßÖ'&Ý~ÿll㮿‚VË¡.µ>Ñ v@!@;à³ø'£á>‚!ï# î>†î#ò>’àîc ÷a³,ɰY–d¸,Kd–%:Ë ›eI„˲$ÁeY‚ ³,ý*¼ž³P~ðá²*å±p¡+W×(\fJ±Á××éyÛ{·Áø[7üC»ÏÅÞiϲΗMµ}Ý÷ XVùréþùyœÚý…ÂcYjåºyÎÊü$§éÏy8[j[¸<æÞ?hCóP !Œu@Õ£€Gõý*¬Ÿ„ÿ|¹'e)ˆÍƒ*–—¥NÿDÕÛ]^l`» Üî" lwµ»X¢Þî"hw´»a*®zÔîÂBnwáë¡Ý¥8_mÙɰÛ#z{$ÃndÈín$¸í‘·=’ ·G äö‚Úáz·=†¶G2ìö†ÞɰÛ#r{ Û# n{$Ám$Èí¹=‚ ¶G¸Þm1”¶Ö$ÃEkX°GøŸ­I‚‹Ö$AFkÀhMl´&?‚MtÔ®oXL­Y¾z<ºË}&ʯõ‡v—œmû §—SkãÓ ÔÔjm,’ ûoƒ…–1ÈÛšoƒ…–1ÈÛë„N…C¦B’àR!ý*<^Kf©h­Ðy£n³ÕßïiűÓ'^½¯JÔ"&j+ŽDæ"r.!ç"r.†ö¹H„œ‹DȹH„œ‹±Nèƒî`ȃî$¸ƒnìq] ¹ìáÕu³P¾HçÂ)GŒÅGkºëfVæ£Dj¼ cNµõF;m„¶Á☸e>¢!çC8lð| ÌG4ä|çƒ ž1'ˆ†ŒDCF’a#ýjܯË)ÍïO!‰Rp^bÃ7ÝöMÈòùÙÅyu1´c"ä)õ2ÏÍY÷ûÝ»¹É¤<€û @“‰jÿîkÀž*W:OE öÝSÕ&+Ðõš+!²P J@ÀîﮨÀJ ®š+!²P J@Àf,vWT `%@×õëeRûÉz9]7||L?þSwÑ‹ ì.ÆÏŸÉõ6#PwÜ]Äv º‹„ÝE,PwQqzÜRZɰ¥• WZQ¥ ]ZÁ°¥•WZIp¥YZÃ¥• [ZÉp¥YZÁÐ¥ [Z‰p¥•WZA¥5¦Ò:M¥e`?.ªŒ¬CGV’a#+É‘$0²’YI‚‹¬$AFV!#+AP‘•p½‹¬ô p;?–߈~Ÿ;†ç{¡ðt…7‰Rt.xÛI0¿ [øžhP Ÿè™é¸`Èû`îc8à>‚!1Š]°`3Ÿ»èWâ~š‰òÈoÅ)z›Ý61œlº{0A=wž°¡‡:Qï¸5ÜY"ô¸‰…†I„\AØèEÊ$B®¼"CûŠ$B®ˆ l¤aE!W ^‘±JØDNºI°!”‚ÌãAÆq–nÝ鲜ʇ”x'NÑ}kfy3ö ÞÑàÔ"¨Ð2Ž`èq Œ#zc‡ ]DC†.„¡ 68tѯÆõ>s?+?ÌûE‡Œ¶Ïê›OÕß%"ÏÔ«B½©µÈì 8†¡y (àÆ Èļ×óu5Þ_žÓ¯eµ—Ê#¨Dn`Ñ€M|rûŠr÷Š yÅ ÕÞPë ?€‰T.ß¿ŠÔ·Ržì7s \1#`»‹9®˜ ‹™,æØb®ª˜áòý«h‹yh/æ@¸bFÀf4vs\1@3 X̰Å\'T1ÃåûWÑóX€‹LÕ™˜"€V€®·IŸÚõö‘4µëi éz K@—÷ëåë/åo¿:ÊzÝ~²…~¡AíB€ö¿"BÑrÁ÷‘wÃ÷ yIp÷1†û°”dØ@J2\ % 2 H † ¤$ÂR’à)A”~^ËÝÊ>\V¥2.t¥àê…ËL):½z½ož:9½™{DŸhP¨¦tHõ>´`uÁ&Zæ2r.“àæ’›‚Ø?—Ãs 9—IpsÉ‚MbìŸË±.èDI0d¢„ºe‡n,9¿Zø|š¾KTïã! êÀ4Æû\µZ›ÂÀÌâ´¼e>¢!ç#r>’açc8`>¢!ç#r>’açc †ÍBDC†!Œa߃qˆhÈ<ˆèWã¹¼\¸<ŽÄY5 eþÚÑþ§L_x°U¸û½w[Œ¿uÃ?¤»û½wZÆ3.Ʀ…Ú¾Üûކô‹ñìËGçâü…DzÔJwÙ<Ùùýcú3Bž¹V…êoÅéõþ! @Cš‡€ a¬ò<ïWáµ>ráQ|¹'e)ˆM¨y9êôOTµg¥üeô“A=+ÂÀžcPÏŠ1 gEÕž#äž#äž#@ÏŠ  gE±gE\Ÿ{VÊ³Ô–í‘ »=‚¡·G2ìöH†ÜHàöH‚ÛIpÛ# r{Bn ¨í®wÛc8`{$Ãn`èí‘ »=’!·¸=’à¶GÜöH‚ÜÛ#j{„ëÝöCiÛ M2\’†{€ÿIpYš$¸0Mdš ŒÓ$Áæi‚ñ#Ø4Gíú†Å´‘šå«Çõ±þS~õ¨>¤ûŸ?Χ͓Œ¾SâË Ô™êO,’ ûoƒ…–1ÈÛšoƒ…–1ÈÛë„N…C¦B’àR!ý*µ^×ÿþŠxÿWüÌÒý•rÄX|´æ¾}§‰}óCsڨݨ÷Ïi#ôÇÄ-ó 9ÂÀù`ƒçc8`>¢!çC8lð|ŒÉ8¹@4d 2 èWã~[NiŠãC‰Rp^bÃ7÷í3]æ70CçgWl¼ýÄÐNŒ‰§ÔËd¬óŸéÔ]rFÚK¬PýEÂöT¹ Ðy*Õß,Pï1‘]ÿ§¹‚ +ªìáþîJ@€*¬èú¡¹‚ +ªlÆbw% @•€V týX¿^&UPП¬×æ©Óß0Ô]TþPûÉ î"cäî"%@w‘0°»HÔ]dˆÜ]d„Ü]$è.*O[J+¶´’áJ+ ²´‚¡K+¶´áJ+ ®´‚ Kk8 ´’aK+®´¢ K+º´‚aK+®´’àJ+²´ÆTZ§©´ììÇE•‘•`èÈJ2ld%2²‚FV’à"+Ip‘•$ÈÈJ dd%*²®w‘•å7¢çiýÍ«l¨>¤û…§Ó(¼I”¢sÁÛÝùåÏØÂ÷BƒZø´P=)’-÷ y,Ð} ÜG0ä}°@÷1¡S± lfâ“ cýJÜÏ31ý–jÒý•¢·Y·ùÖ<½k˜»îžÂ ®»/ ›{F½ëÎÔu§ÐéVäZÖ%r]Œa3-ë ¹.l𺠬K4äºÃæAZÖ%r]Øàuë† é$¢›LùDÈN"dHgù—¡{œ®¿ÏêÌ£»¿Rôgáòƒìi9ÆÎÔÜ™ZÄZÆ =Žá€qCc ã°QŒhÈ(†00ŠÁG1úÕ¸>f£|SΈRtôè±=Èp¬î¤PouíŠZß=p CóPÀ1ŒAщe1ž›ÇÏIjl9³-Z°±O4¶[„@-–¨7¶[ØølФv}ÃbbcKqôßR×ÉpuÍ‚ Aì¯ë$¸ºN‚¬k$°®“`ë:ª®éú†Å´u=P×ÉpuÍ‚tì¯ë$¸ºN‚¬k$°®“`ë:ª®éú†Å´u=†!¸¨UdÔ ZlH¨ ØÇÙTZJ0jE]߯×ßÖ,çV: »yYåiyûòô²Ú‡Sž}0 {й{°L`´ÜG0ä}$ÁÝÇpÀ}CÞGÜ}Œá>lž%6Ï’ —g‰‚̳CçY‚aó,‰py–$¸x¶‡·ÓÓ±¸¯øRlØãoÝðOô¾›¦a<Ë2?7ýÖöß4tN`Yåç¥{.?]Šsñ#ËR+¯Íãì犛þhG±U¡ú¥­+Jm÷P ! ÍC@†0Öy0Ì÷«ðZŸÏP~•'e.ˆW·ÆÝç§Nÿ8Õû[ÎH`{ ÜÝÂ6·0A½-R¨·¶0- @c Ôׂµµ »Zðrhj)NP¶D ì–¨zKÂn‰@È-An‰¸-·% ·D][¢¨-Q¿Üm‰¡}KÂn‰:¡·D ì–„Ü$à–€Ûp["rKÔ¹%ê€ÚõËÝ–ëõl32pìIüÀdàò1ñ0Ž©?€dT.ß¿Š6Ó/Bwy.Bñ]¢þˆîò¯ëíˇB—G_uú²“݉eaÿm°Ð2yCóm°Ð2ycСŽ`ÈPG\¨£_…Íó‹ßu\hÓ¯z¿•»¼^LLwõÎ(AP—— ¦‚뿜'š s‘9‰s‘9Cû\$BÎE"ä\$BÎÅX'ô9u0ä9uÜ95 ö|·.Ð\.ŸZ÷×ߌN?µÂ#º¿RŽ‹OÆüúki~Û/õý=…A}Þ¨÷Éi#ôý‡½-ó 9ÂÀù`ƒçc8`>¢!çC8lð|ŒÉ8¹£ühȳühÈÃüdØÓü~5î÷娥8Ä‘(çÕ)tGÿ5Ë¡%i'nam-1.15/ex/session.README0000664000076400007660000000225406610761053014061 0ustar tomhnsnamTrace file: session.nam.gz Purpose: demonstrate the difference in between regular (detailed) packet forwarding and session level packet scheduling Topology: 255 nodes and 266 links partial MBone topology equal link bandwidth (512bps) and delay (10ms) obtained by Mark Handley's(mjh@east.isi.edu) MBone trace tools Source: node 209 noted in red Members: 30 of them randomly selected noted in black Traffic: 1 pkt every 37.5ms 210 bytes per packet starting at simulation time 1.0 Graph on the left: - regular/detailed multicast packet forwarding - packets traverse through nodes and links (basically a multicast tree) to reach group members. Graph on the right: - session level packet scheduling - the delay to transfer a packet from the source to its receiver is computed and a receive(pkt) event is directly scheduled to happen after the delay at the receiver - number of red dots attached to group receivers represents the number of packets that have been sent and waiting to be received. - the larger the (delay x bandwidth) in between the source and receiver, the higher the queue of red dots. Polly Huang, Mon Mar 16 15:52:40 PST 1998 huang@isi.edu nam-1.15/ex/simple_mcast.nam0000664000076400007660000003552506610761054014704 0ustar tomhnsnamn -t * -s 0 -S UP -v circle -c black n -t * -s 1 -S UP -v circle -c black n -t * -s 2 -S UP -v circle -c black n -t * -s 3 -S UP -v circle -c black n -t * -s 4 -S UP -v circle -c black n -t * -s 5 -S UP -v circle -c black n -t * -s 6 -S UP -v circle -c black l -t * -s 0 -d 2 -S UP -r 1Mb -D 3ms -o right-down l -t * -s 1 -d 2 -S UP -r 1Mb -D 3ms -o right-up l -t * -s 2 -d 3 -S UP -r 1Mb -D 3ms -o right-down l -t * -s 3 -d 4 -S UP -r 1Mb -D 3ms -o right-up l -t * -s 2 -d 4 -S UP -r 1Mb -D 3ms -o right l -t * -s 4 -d 5 -S UP -r 1Mb -D 3ms -o right-up l -t * -s 4 -d 6 -S UP -r 1Mb -D 3ms -o right-down c -t * -i 3 -n DarkViolet c -t * -i 4 -n Magenta c -t * -i 1 -n GoldenRod c -t * -i 2 -n FireBrick c -t * -i 0 -n black v -t 0 ecolor 0 2 red h -t 0 -s 0 -d 2 -p 16 -e 0 -i -a 0.0/2.0 v -t 0 ecolor 0 2 red v -t 0 ecolor 5 4 red h -t 0 -s 5 -d 4 -p 16 -e 0 -i -a 5.0/4.0 v -t 0 ecolor 1 2 red h -t 0 -s 1 -d 2 -p 16 -e 0 -i -a 1.0/2.0 v -t 0 ecolor 6 4 red h -t 0 -s 6 -d 4 -p 16 -e 0 -i -a 6.0/4.0 v -t 0 ecolor 0 2 red v -t 0 ecolor 1 2 red v -t 0 ecolor 6 4 red v -t 0 ecolor 6 4 red v -t 0 ecolor 1 2 red v -t 0 ecolor 5 4 red v -t 0 ecolor 5 4 red h -t 0.000128 -s 5 -d 4 -p 16 -e 0 -i -a 5.0/4.0 h -t 0.000128 -s 0 -d 2 -p 16 -e 0 -i -a 0.0/2.0 h -t 0.000128 -s 1 -d 2 -p 16 -e 0 -i -a 1.0/2.0 h -t 0.000128 -s 6 -d 4 -p 16 -e 0 -i -a 6.0/4.0 h -t 0.000256 -s 5 -d 4 -p 16 -e 0 -i -a 5.0/4.0 h -t 0.000256 -s 0 -d 2 -p 16 -e 0 -i -a 0.0/2.0 h -t 0.000256 -s 1 -d 2 -p 16 -e 0 -i -a 1.0/2.0 h -t 0.000256 -s 6 -d 4 -p 16 -e 0 -i -a 6.0/4.0 v -t 0.003128 ecolor 2 4 red h -t 0.003128 -s 2 -d 4 -p 16 -e 0 -i -a 2.0/4.0 v -t 0.003128 ecolor 4 2 red h -t 0.003128 -s 4 -d 2 -p 16 -e 0 -i -a 4.0/2.0 v -t 0.003128 ecolor 4 5 red h -t 0.003128 -s 4 -d 5 -p 16 -e 0 -i -a 4.0/5.0 v -t 0.003128 ecolor 2 1 red h -t 0.003128 -s 2 -d 1 -p 16 -e 0 -i -a 2.0/1.0 v -t 0.003256 ecolor 2 4 red v -t 0.003256 ecolor 2 4 red v -t 0.003256 ecolor 4 6 red h -t 0.003256 -s 4 -d 6 -p 16 -e 0 -i -a 4.0/6.0 h -t 0.003256 -s 2 -d 4 -p 16 -e 0 -i -a 2.0/4.0 v -t 0.003256 ecolor 4 2 red h -t 0.003256 -s 4 -d 2 -p 16 -e 0 -i -a 4.0/2.0 v -t 0.003384 ecolor 4 2 red v -t 0.003384 ecolor 4 2 red v -t 0.003384 ecolor 2 0 red h -t 0.003384 -s 2 -d 0 -p 16 -e 0 -i -a 2.0/0.0 v -t 0.003384 ecolor 2 4 red v -t 0.006256 ecolor 2 0 red v -t 0.006256 ecolor 4 6 red r -t 0.006384 -s 2 -d 0 -p 16 -e 0 -i -a 2.0/0.0 v -t 0.006384 ecolor 2 1 red v -t 0.006384 ecolor 4 5 red h -t 0.0630486 -s 0 -d 2 -p 4 -e 0 -i -a 0.0/32769.0 r -t 0.0660486 -s 0 -d 2 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.0660806 -s 2 -d 4 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.0660806 -s 2 -d 1 -p 4 -e 0 -i -a 0.0/32769.0 r -t 0.0690806 -s 2 -d 1 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.0691126 -s 4 -d 6 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.0691126 -s 4 -d 5 -p 4 -e 0 -i -a 0.0/32769.0 r -t 0.0721126 -s 4 -d 5 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.0782107 -s 5 -d 4 -p 4 -e 0 -i -a 5.0/32769.0 r -t 0.0812107 -s 5 -d 4 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.0812427 -s 4 -d 2 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.0812427 -s 4 -d 6 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.0830301 -s 6 -d 4 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.084105 -s 1 -d 2 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.0842747 -s 2 -d 0 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.0842747 -s 2 -d 1 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.0844486 -s 6 -d 4 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.0860621 -s 4 -d 2 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.0860621 -s 4 -d 5 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.087137 -s 2 -d 4 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.087137 -s 2 -d 0 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.0874806 -s 4 -d 2 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.0874806 -s 4 -d 5 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.0890941 -s 2 -d 0 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.0890941 -s 2 -d 1 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.090169 -s 4 -d 5 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.090169 -s 4 -d 6 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.0905126 -s 2 -d 0 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.0905126 -s 2 -d 1 -p 4 -e 0 -i -a 6.0/32769.0 r -t 0.0935126 -s 2 -d 1 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.0935682 -s 5 -d 4 -p 4 -e 0 -i -a 5.0/32769.0 r -t 0.0965682 -s 5 -d 4 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.0966002 -s 4 -d 2 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.0966002 -s 4 -d 6 -p 4 -e 0 -i -a 5.0/32769.0 r -t 0.0996002 -s 4 -d 6 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.0996322 -s 2 -d 0 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.0996322 -s 2 -d 1 -p 4 -e 0 -i -a 5.0/32769.0 r -t 0.102632 -s 2 -d 1 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.103773 -s 0 -d 2 -p 4 -e 0 -i -a 0.0/32769.0 r -t 0.106773 -s 0 -d 2 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.106805 -s 2 -d 4 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.106805 -s 2 -d 1 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.107628 -s 1 -d 2 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.109837 -s 4 -d 6 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.109837 -s 4 -d 5 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.11066 -s 2 -d 4 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.11066 -s 2 -d 0 -p 4 -e 0 -i -a 1.0/32769.0 r -t 0.11366 -s 2 -d 0 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.113692 -s 4 -d 5 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.113692 -s 4 -d 6 -p 4 -e 0 -i -a 1.0/32769.0 r -t 0.116692 -s 4 -d 6 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.116852 -s 0 -d 2 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.118383 -s 6 -d 4 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.119884 -s 2 -d 4 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.119884 -s 2 -d 1 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.121415 -s 4 -d 2 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.121415 -s 4 -d 5 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.122916 -s 4 -d 6 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.122916 -s 4 -d 5 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.124447 -s 2 -d 0 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.124447 -s 2 -d 1 -p 4 -e 0 -i -a 6.0/32769.0 r -t 0.127447 -s 2 -d 1 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.130135 -s 5 -d 4 -p 4 -e 0 -i -a 5.0/32769.0 r -t 0.133135 -s 5 -d 4 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.133167 -s 4 -d 2 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.133167 -s 4 -d 6 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.134107 -s 1 -d 2 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.136199 -s 2 -d 0 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.136199 -s 2 -d 1 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.137139 -s 2 -d 4 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.137139 -s 2 -d 0 -p 4 -e 0 -i -a 1.0/32769.0 r -t 0.140139 -s 2 -d 0 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.140171 -s 4 -d 5 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.140171 -s 4 -d 6 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.14121 -s 5 -d 4 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.141313 -s 6 -d 4 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.144242 -s 4 -d 2 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.144242 -s 4 -d 6 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.144345 -s 4 -d 2 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.144345 -s 4 -d 5 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.147274 -s 2 -d 0 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.147274 -s 2 -d 1 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.147377 -s 2 -d 0 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.147377 -s 2 -d 1 -p 4 -e 0 -i -a 6.0/32769.0 r -t 0.150377 -s 2 -d 1 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.151123 -s 0 -d 2 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.15144 -s 1 -d 2 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.154155 -s 2 -d 4 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.154155 -s 2 -d 1 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.154472 -s 2 -d 4 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.154472 -s 2 -d 0 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.157187 -s 4 -d 6 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.157187 -s 4 -d 5 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.157504 -s 4 -d 5 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.157504 -s 4 -d 6 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.158881 -s 0 -d 2 -p 4 -e 0 -i -a 0.0/32769.0 r -t 0.161881 -s 0 -d 2 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.161913 -s 2 -d 4 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.161913 -s 2 -d 1 -p 4 -e 0 -i -a 0.0/32769.0 r -t 0.164913 -s 2 -d 1 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.164945 -s 4 -d 6 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.164945 -s 4 -d 5 -p 4 -e 0 -i -a 0.0/32769.0 r -t 0.167945 -s 4 -d 5 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.188337 -s 5 -d 4 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.189823 -s 6 -d 4 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.191369 -s 4 -d 2 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.191369 -s 4 -d 6 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.192855 -s 4 -d 2 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.192855 -s 4 -d 5 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.194401 -s 2 -d 0 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.194401 -s 2 -d 1 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.195887 -s 2 -d 0 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.195887 -s 2 -d 1 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.197836 -s 1 -d 2 -p 4 -e 0 -i -a 1.0/32769.0 r -t 0.200836 -s 1 -d 2 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.200868 -s 2 -d 4 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.200868 -s 2 -d 0 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.202275 -s 1 -d 2 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.2039 -s 4 -d 5 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.2039 -s 4 -d 6 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.205307 -s 2 -d 4 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.205307 -s 2 -d 0 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.205557 -s 0 -d 2 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.208339 -s 4 -d 5 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.208339 -s 4 -d 6 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.208589 -s 2 -d 4 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.208589 -s 2 -d 1 -p 4 -e 0 -i -a 0.0/32769.0 r -t 0.211589 -s 2 -d 1 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.211621 -s 4 -d 6 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.211621 -s 4 -d 5 -p 4 -e 0 -i -a 0.0/32769.0 r -t 0.214621 -s 4 -d 5 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.222161 -s 6 -d 4 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.222508 -s 5 -d 4 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.225193 -s 4 -d 2 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.225193 -s 4 -d 5 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.22554 -s 4 -d 2 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.22554 -s 4 -d 6 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.228225 -s 2 -d 0 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.228225 -s 2 -d 1 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.228572 -s 2 -d 0 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.228572 -s 2 -d 1 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.231456 -s 6 -d 4 -p 4 -e 0 -i -a 6.0/32769.0 r -t 0.234456 -s 6 -d 4 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.234488 -s 4 -d 2 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.234488 -s 4 -d 5 -p 4 -e 0 -i -a 6.0/32769.0 r -t 0.237488 -s 4 -d 5 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.23752 -s 2 -d 0 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.23752 -s 2 -d 1 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.240356 -s 6 -d 4 -p 4 -e 0 -i -a 6.0/32769.0 r -t 0.243356 -s 6 -d 4 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.243388 -s 4 -d 2 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.243388 -s 4 -d 5 -p 4 -e 0 -i -a 6.0/32769.0 r -t 0.246388 -s 4 -d 5 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.24642 -s 2 -d 0 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.24642 -s 2 -d 1 -p 4 -e 0 -i -a 6.0/32769.0 r -t 0.24942 -s 2 -d 1 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.251279 -s 1 -d 2 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.254228 -s 0 -d 2 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.254311 -s 2 -d 4 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.254311 -s 2 -d 0 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.25726 -s 2 -d 4 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.25726 -s 2 -d 1 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.257343 -s 4 -d 5 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.257343 -s 4 -d 6 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.260292 -s 4 -d 6 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.260292 -s 4 -d 5 -p 4 -e 0 -i -a 0.0/32769.0 r -t 0.263292 -s 4 -d 5 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.267012 -s 5 -d 4 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.268937 -s 6 -d 4 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.270044 -s 4 -d 2 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.270044 -s 4 -d 6 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.271969 -s 4 -d 2 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.271969 -s 4 -d 5 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.273076 -s 2 -d 0 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.273076 -s 2 -d 1 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.273803 -s 5 -d 4 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.275001 -s 2 -d 0 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.275001 -s 2 -d 1 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.276835 -s 4 -d 2 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.276835 -s 4 -d 6 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.278098 -s 1 -d 2 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.278782 -s 5 -d 4 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.279861 -s 6 -d 4 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.279867 -s 2 -d 0 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.279867 -s 2 -d 1 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.28113 -s 2 -d 4 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.28113 -s 2 -d 0 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.281814 -s 4 -d 2 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.281814 -s 4 -d 6 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.282893 -s 4 -d 2 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.282893 -s 4 -d 5 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.284162 -s 4 -d 5 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.284162 -s 4 -d 6 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.284846 -s 2 -d 0 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.284846 -s 2 -d 1 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.285925 -s 2 -d 0 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.285925 -s 2 -d 1 -p 4 -e 0 -i -a 6.0/32769.0 r -t 0.288925 -s 2 -d 1 -p 4 -e 0 -i -a 6.0/32769.0 h -t 0.296159 -s 0 -d 2 -p 4 -e 0 -i -a 0.0/32769.0 r -t 0.299159 -s 0 -d 2 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.299191 -s 2 -d 4 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.299191 -s 2 -d 1 -p 4 -e 0 -i -a 0.0/32769.0 r -t 0.302191 -s 2 -d 1 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.302223 -s 4 -d 6 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.302223 -s 4 -d 5 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.302557 -s 0 -d 2 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.305064 -s 5 -d 4 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.305589 -s 2 -d 4 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.305589 -s 2 -d 1 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.308096 -s 4 -d 2 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.308096 -s 4 -d 6 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.308621 -s 4 -d 6 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.308621 -s 4 -d 5 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.311128 -s 2 -d 0 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.311128 -s 2 -d 1 -p 4 -e 0 -i -a 5.0/32769.0 r -t 0.314128 -s 2 -d 1 -p 4 -e 0 -i -a 5.0/32769.0 h -t 0.323595 -s 0 -d 2 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.325614 -s 1 -d 2 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.326627 -s 2 -d 4 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.326627 -s 2 -d 1 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.328646 -s 2 -d 4 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.328646 -s 2 -d 0 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.329659 -s 4 -d 6 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.329659 -s 4 -d 5 -p 4 -e 0 -i -a 0.0/32769.0 h -t 0.331678 -s 4 -d 5 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.331678 -s 4 -d 6 -p 4 -e 0 -i -a 1.0/32769.0 r -t 0.334678 -s 4 -d 6 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.33583 -s 1 -d 2 -p 4 -e 0 -i -a 1.0/32769.0 r -t 0.33883 -s 1 -d 2 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.338862 -s 2 -d 4 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.338862 -s 2 -d 0 -p 4 -e 0 -i -a 1.0/32769.0 r -t 0.341862 -s 2 -d 0 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.341894 -s 4 -d 5 -p 4 -e 0 -i -a 1.0/32769.0 h -t 0.341894 -s 4 -d 6 -p 4 -e 0 -i -a 1.0/32769.0 nam-1.15/ex/srm-example.nam0000664000076400007660000264346306725624415014474 0ustar tomhnsnamV -t * -v 1.0a5 -a 0 A -t * -n 1 -p 0 -o 255 -c 30 -a 1 A -t * -h 1 -m 4194303 -s 8 c -t * -i 4 -n brown c -t * -i 0 -n red c -t * -i 5 -n tan c -t * -i 1 -n blue c -t * -i 6 -n gold c -t * -i 2 -n chocolate c -t * -i 7 -n black c -t * -i 3 -n red n -t * -a 4 -s 4 -S UP -v circle -c tan n -t * -a 0 -s 0 -S UP -v circle -c black n -t * -a 5 -s 5 -S UP -v circle -c red n -t * -a 1 -s 1 -S UP -v circle -c blue n -t * -a 2 -s 2 -S UP -v circle -c chocolate n -t * -a 3 -s 3 -S UP -v circle -c gold l -t * -s 0 -d 1 -S UP -r 1500000 -D 0.01 -c black -o right l -t * -s 1 -d 2 -S UP -r 1500000 -D 0.01 -c black -o right l -t * -s 2 -d 3 -S UP -r 1500000 -D 0.01 -c black -o right l -t * -s 3 -d 4 -S UP -r 1500000 -D 0.01 -c green -o 60deg l -t * -s 3 -d 5 -S UP -r 1500000 -D 0.01 -c black -o 300deg a -t 0.00000000000000000 -s 5 -d 4194304 -n srm(5) f -t 0.00000000000000000 -s 5 -d 4194304 -n C2_ -a srm(5) -v -T v f -t 0.00000000000000000 -s 5 -d 4194304 -n C1_ -a srm(5) -v -T v a -t 0.00000000000000000 -s 1 -d 4194304 -n srm(1) f -t 0.00000000000000000 -s 1 -d 4194304 -n C2_ -a srm(1) -v -T v f -t 0.00000000000000000 -s 1 -d 4194304 -n C1_ -a srm(1) -v -T v a -t 0.00000000000000000 -s 2 -d 4194304 -n srm(2) f -t 0.00000000000000000 -s 2 -d 4194304 -n C2_ -a srm(2) -v -T v f -t 0.00000000000000000 -s 2 -d 4194304 -n C1_ -a srm(2) -v -T v a -t 0.00000000000000000 -s 3 -d 4194304 -n srm(3) f -t 0.00000000000000000 -s 3 -d 4194304 -n C2_ -a srm(3) -v -T v f -t 0.00000000000000000 -s 3 -d 4194304 -n C1_ -a srm(3) -v -T v a -t 0.00000000000000000 -s 4 -d 4194304 -n srm(4) f -t 0.00000000000000000 -s 4 -d 4194304 -n C2_ -a srm(4) -v -T v f -t 0.00000000000000000 -s 4 -d 4194304 -n C1_ -a srm(4) -v -T v a -t 0.00000000000000000 -s 0 -d 4194304 -n srm(0) f -t 0.00000000000000000 -s 0 -d 4194304 -n C2_ -a srm(0) -v -T v f -t 0.00000000000000000 -s 0 -d 4194304 -n C1_ -a srm(0) -v -T v v -t 0.00000000000000000 monitor_agent 0 srm(0) v -t 0.00000000000000000 monitor_agent 1 srm(1) v -t 0.00000000000000000 monitor_agent 2 srm(2) v -t 0.00000000000000000 monitor_agent 3 srm(3) v -t 0.00000000000000000 monitor_agent 4 srm(4) v -t 0.00000000000000000 monitor_agent 5 srm(5) v -t 0 set_rate -40.0 1 + -t 1.9 -s 0 -d 1 -p SRM -e 36 -c 1 -i 0 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} - -t 1.9 -s 0 -d 1 -p SRM -e 36 -c 1 -i 0 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} h -t 1.9 -s 0 -d 1 -p SRM -e 36 -c 1 -i 0 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} r -t 1.91019 -s 0 -d 1 -p SRM -e 36 -c 1 -i 0 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} + -t 1.91019 -s 1 -d 2 -p SRM -e 36 -c 1 -i 0 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} - -t 1.91019 -s 1 -d 2 -p SRM -e 36 -c 1 -i 0 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} h -t 1.91019 -s 1 -d 2 -p SRM -e 36 -c 1 -i 0 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} r -t 1.92039 -s 1 -d 2 -p SRM -e 36 -c 1 -i 0 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} + -t 1.92039 -s 2 -d 3 -p SRM -e 36 -c 1 -i 0 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} - -t 1.92039 -s 2 -d 3 -p SRM -e 36 -c 1 -i 0 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} h -t 1.92039 -s 2 -d 3 -p SRM -e 36 -c 1 -i 0 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} + -t 1.92631 -s 1 -d 0 -p SRM -e 52 -c 2 -i 1 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} - -t 1.92631 -s 1 -d 0 -p SRM -e 52 -c 2 -i 1 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} h -t 1.92631 -s 1 -d 0 -p SRM -e 52 -c 2 -i 1 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} + -t 1.92631 -s 1 -d 2 -p SRM -e 52 -c 2 -i 1 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} - -t 1.92631 -s 1 -d 2 -p SRM -e 52 -c 2 -i 1 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} h -t 1.92631 -s 1 -d 2 -p SRM -e 52 -c 2 -i 1 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} r -t 1.93058 -s 2 -d 3 -p SRM -e 36 -c 1 -i 0 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} + -t 1.93058 -s 3 -d 4 -p SRM -e 36 -c 1 -i 0 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} - -t 1.93058 -s 3 -d 4 -p SRM -e 36 -c 1 -i 0 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} h -t 1.93058 -s 3 -d 4 -p SRM -e 36 -c 1 -i 0 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} + -t 1.93058 -s 3 -d 5 -p SRM -e 36 -c 1 -i 0 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} - -t 1.93058 -s 3 -d 5 -p SRM -e 36 -c 1 -i 0 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} h -t 1.93058 -s 3 -d 5 -p SRM -e 36 -c 1 -i 0 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} r -t 1.93658 -s 1 -d 0 -p SRM -e 52 -c 2 -i 1 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} r -t 1.93658 -s 1 -d 2 -p SRM -e 52 -c 2 -i 1 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} + -t 1.93658 -s 2 -d 3 -p SRM -e 52 -c 2 -i 1 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} - -t 1.93658 -s 2 -d 3 -p SRM -e 52 -c 2 -i 1 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} h -t 1.93658 -s 2 -d 3 -p SRM -e 52 -c 2 -i 1 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} r -t 1.94077 -s 3 -d 4 -p SRM -e 36 -c 1 -i 0 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} r -t 1.94077 -s 3 -d 5 -p SRM -e 36 -c 1 -i 0 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} + -t 1.94379 -s 5 -d 3 -p SRM -e 52 -c 6 -i 2 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} - -t 1.94379 -s 5 -d 3 -p SRM -e 52 -c 6 -i 2 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} h -t 1.94379 -s 5 -d 3 -p SRM -e 52 -c 6 -i 2 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} r -t 1.94686 -s 2 -d 3 -p SRM -e 52 -c 2 -i 1 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} + -t 1.94686 -s 3 -d 4 -p SRM -e 52 -c 2 -i 1 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} - -t 1.94686 -s 3 -d 4 -p SRM -e 52 -c 2 -i 1 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} h -t 1.94686 -s 3 -d 4 -p SRM -e 52 -c 2 -i 1 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} + -t 1.94686 -s 3 -d 5 -p SRM -e 52 -c 2 -i 1 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} - -t 1.94686 -s 3 -d 5 -p SRM -e 52 -c 2 -i 1 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} h -t 1.94686 -s 3 -d 5 -p SRM -e 52 -c 2 -i 1 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} r -t 1.95407 -s 5 -d 3 -p SRM -e 52 -c 6 -i 2 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} + -t 1.95407 -s 3 -d 2 -p SRM -e 52 -c 6 -i 2 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} - -t 1.95407 -s 3 -d 2 -p SRM -e 52 -c 6 -i 2 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} h -t 1.95407 -s 3 -d 2 -p SRM -e 52 -c 6 -i 2 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} + -t 1.95407 -s 3 -d 4 -p SRM -e 52 -c 6 -i 2 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} - -t 1.95407 -s 3 -d 4 -p SRM -e 52 -c 6 -i 2 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} h -t 1.95407 -s 3 -d 4 -p SRM -e 52 -c 6 -i 2 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} r -t 1.95714 -s 3 -d 4 -p SRM -e 52 -c 2 -i 1 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} r -t 1.95714 -s 3 -d 5 -p SRM -e 52 -c 2 -i 1 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} r -t 1.96435 -s 3 -d 2 -p SRM -e 52 -c 6 -i 2 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} + -t 1.96435 -s 2 -d 1 -p SRM -e 52 -c 6 -i 2 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} - -t 1.96435 -s 2 -d 1 -p SRM -e 52 -c 6 -i 2 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} h -t 1.96435 -s 2 -d 1 -p SRM -e 52 -c 6 -i 2 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} r -t 1.96435 -s 3 -d 4 -p SRM -e 52 -c 6 -i 2 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} r -t 1.97462 -s 2 -d 1 -p SRM -e 52 -c 6 -i 2 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} + -t 1.97462 -s 1 -d 0 -p SRM -e 52 -c 6 -i 2 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} - -t 1.97462 -s 1 -d 0 -p SRM -e 52 -c 6 -i 2 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} h -t 1.97462 -s 1 -d 0 -p SRM -e 52 -c 6 -i 2 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} r -t 1.9849 -s 1 -d 0 -p SRM -e 52 -c 6 -i 2 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} + -t 1.99173 -s 3 -d 2 -p SRM -e 84 -c 4 -i 3 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} - -t 1.99173 -s 3 -d 2 -p SRM -e 84 -c 4 -i 3 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} h -t 1.99173 -s 3 -d 2 -p SRM -e 84 -c 4 -i 3 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} + -t 1.99173 -s 3 -d 4 -p SRM -e 84 -c 4 -i 3 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} - -t 1.99173 -s 3 -d 4 -p SRM -e 84 -c 4 -i 3 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} h -t 1.99173 -s 3 -d 4 -p SRM -e 84 -c 4 -i 3 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} + -t 1.99173 -s 3 -d 5 -p SRM -e 84 -c 4 -i 3 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} - -t 1.99173 -s 3 -d 5 -p SRM -e 84 -c 4 -i 3 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} h -t 1.99173 -s 3 -d 5 -p SRM -e 84 -c 4 -i 3 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} r -t 2.00218 -s 3 -d 2 -p SRM -e 84 -c 4 -i 3 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} + -t 2.00218 -s 2 -d 1 -p SRM -e 84 -c 4 -i 3 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} - -t 2.00218 -s 2 -d 1 -p SRM -e 84 -c 4 -i 3 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} h -t 2.00218 -s 2 -d 1 -p SRM -e 84 -c 4 -i 3 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} r -t 2.00218 -s 3 -d 4 -p SRM -e 84 -c 4 -i 3 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} r -t 2.00218 -s 3 -d 5 -p SRM -e 84 -c 4 -i 3 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} + -t 2.00655 -s 4 -d 3 -p SRM -e 100 -c 5 -i 4 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} - -t 2.00655 -s 4 -d 3 -p SRM -e 100 -c 5 -i 4 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} h -t 2.00655 -s 4 -d 3 -p SRM -e 100 -c 5 -i 4 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} r -t 2.01263 -s 2 -d 1 -p SRM -e 84 -c 4 -i 3 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} + -t 2.01263 -s 1 -d 0 -p SRM -e 84 -c 4 -i 3 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} - -t 2.01263 -s 1 -d 0 -p SRM -e 84 -c 4 -i 3 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} h -t 2.01263 -s 1 -d 0 -p SRM -e 84 -c 4 -i 3 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} r -t 2.01709 -s 4 -d 3 -p SRM -e 100 -c 5 -i 4 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} + -t 2.01709 -s 3 -d 2 -p SRM -e 100 -c 5 -i 4 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} - -t 2.01709 -s 3 -d 2 -p SRM -e 100 -c 5 -i 4 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} h -t 2.01709 -s 3 -d 2 -p SRM -e 100 -c 5 -i 4 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} + -t 2.01709 -s 3 -d 5 -p SRM -e 100 -c 5 -i 4 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} - -t 2.01709 -s 3 -d 5 -p SRM -e 100 -c 5 -i 4 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} h -t 2.01709 -s 3 -d 5 -p SRM -e 100 -c 5 -i 4 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} r -t 2.02307 -s 1 -d 0 -p SRM -e 84 -c 4 -i 3 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} r -t 2.02762 -s 3 -d 2 -p SRM -e 100 -c 5 -i 4 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} + -t 2.02762 -s 2 -d 1 -p SRM -e 100 -c 5 -i 4 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} - -t 2.02762 -s 2 -d 1 -p SRM -e 100 -c 5 -i 4 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} h -t 2.02762 -s 2 -d 1 -p SRM -e 100 -c 5 -i 4 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} r -t 2.02762 -s 3 -d 5 -p SRM -e 100 -c 5 -i 4 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} r -t 2.03815 -s 2 -d 1 -p SRM -e 100 -c 5 -i 4 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} + -t 2.03815 -s 1 -d 0 -p SRM -e 100 -c 5 -i 4 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} - -t 2.03815 -s 1 -d 0 -p SRM -e 100 -c 5 -i 4 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} h -t 2.03815 -s 1 -d 0 -p SRM -e 100 -c 5 -i 4 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} r -t 2.04869 -s 1 -d 0 -p SRM -e 100 -c 5 -i 4 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} + -t 2.05112 -s 2 -d 1 -p SRM -e 116 -c 3 -i 5 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} - -t 2.05112 -s 2 -d 1 -p SRM -e 116 -c 3 -i 5 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} h -t 2.05112 -s 2 -d 1 -p SRM -e 116 -c 3 -i 5 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} + -t 2.05112 -s 2 -d 3 -p SRM -e 116 -c 3 -i 5 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} - -t 2.05112 -s 2 -d 3 -p SRM -e 116 -c 3 -i 5 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} h -t 2.05112 -s 2 -d 3 -p SRM -e 116 -c 3 -i 5 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} r -t 2.06174 -s 2 -d 1 -p SRM -e 116 -c 3 -i 5 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} + -t 2.06174 -s 1 -d 0 -p SRM -e 116 -c 3 -i 5 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} - -t 2.06174 -s 1 -d 0 -p SRM -e 116 -c 3 -i 5 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} h -t 2.06174 -s 1 -d 0 -p SRM -e 116 -c 3 -i 5 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} r -t 2.06174 -s 2 -d 3 -p SRM -e 116 -c 3 -i 5 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} + -t 2.06174 -s 3 -d 4 -p SRM -e 116 -c 3 -i 5 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} - -t 2.06174 -s 3 -d 4 -p SRM -e 116 -c 3 -i 5 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} h -t 2.06174 -s 3 -d 4 -p SRM -e 116 -c 3 -i 5 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} + -t 2.06174 -s 3 -d 5 -p SRM -e 116 -c 3 -i 5 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} - -t 2.06174 -s 3 -d 5 -p SRM -e 116 -c 3 -i 5 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} h -t 2.06174 -s 3 -d 5 -p SRM -e 116 -c 3 -i 5 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} r -t 2.07236 -s 1 -d 0 -p SRM -e 116 -c 3 -i 5 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} r -t 2.07236 -s 3 -d 4 -p SRM -e 116 -c 3 -i 5 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} r -t 2.07236 -s 3 -d 5 -p SRM -e 116 -c 3 -i 5 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} + -t 2.80941 -s 0 -d 1 -p SRM -e 116 -c 1 -i 6 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} - -t 2.80941 -s 0 -d 1 -p SRM -e 116 -c 1 -i 6 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} h -t 2.80941 -s 0 -d 1 -p SRM -e 116 -c 1 -i 6 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} r -t 2.82003 -s 0 -d 1 -p SRM -e 116 -c 1 -i 6 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} + -t 2.82003 -s 1 -d 2 -p SRM -e 116 -c 1 -i 6 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} - -t 2.82003 -s 1 -d 2 -p SRM -e 116 -c 1 -i 6 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} h -t 2.82003 -s 1 -d 2 -p SRM -e 116 -c 1 -i 6 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} r -t 2.83065 -s 1 -d 2 -p SRM -e 116 -c 1 -i 6 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} + -t 2.83065 -s 2 -d 3 -p SRM -e 116 -c 1 -i 6 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} - -t 2.83065 -s 2 -d 3 -p SRM -e 116 -c 1 -i 6 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} h -t 2.83065 -s 2 -d 3 -p SRM -e 116 -c 1 -i 6 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} r -t 2.84127 -s 2 -d 3 -p SRM -e 116 -c 1 -i 6 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} + -t 2.84127 -s 3 -d 4 -p SRM -e 116 -c 1 -i 6 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} - -t 2.84127 -s 3 -d 4 -p SRM -e 116 -c 1 -i 6 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} h -t 2.84127 -s 3 -d 4 -p SRM -e 116 -c 1 -i 6 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} + -t 2.84127 -s 3 -d 5 -p SRM -e 116 -c 1 -i 6 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} - -t 2.84127 -s 3 -d 5 -p SRM -e 116 -c 1 -i 6 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} h -t 2.84127 -s 3 -d 5 -p SRM -e 116 -c 1 -i 6 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} r -t 2.85189 -s 3 -d 4 -p SRM -e 116 -c 1 -i 6 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} r -t 2.85189 -s 3 -d 5 -p SRM -e 116 -c 1 -i 6 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} + -t 2.96208 -s 1 -d 0 -p SRM -e 116 -c 2 -i 7 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} - -t 2.96208 -s 1 -d 0 -p SRM -e 116 -c 2 -i 7 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} h -t 2.96208 -s 1 -d 0 -p SRM -e 116 -c 2 -i 7 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} + -t 2.96208 -s 1 -d 2 -p SRM -e 116 -c 2 -i 7 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} - -t 2.96208 -s 1 -d 2 -p SRM -e 116 -c 2 -i 7 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} h -t 2.96208 -s 1 -d 2 -p SRM -e 116 -c 2 -i 7 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} r -t 2.9727 -s 1 -d 0 -p SRM -e 116 -c 2 -i 7 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} r -t 2.9727 -s 1 -d 2 -p SRM -e 116 -c 2 -i 7 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} + -t 2.9727 -s 2 -d 3 -p SRM -e 116 -c 2 -i 7 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} - -t 2.9727 -s 2 -d 3 -p SRM -e 116 -c 2 -i 7 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} h -t 2.9727 -s 2 -d 3 -p SRM -e 116 -c 2 -i 7 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} + -t 2.97965 -s 5 -d 3 -p SRM -e 116 -c 6 -i 8 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} - -t 2.97965 -s 5 -d 3 -p SRM -e 116 -c 6 -i 8 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} h -t 2.97965 -s 5 -d 3 -p SRM -e 116 -c 6 -i 8 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} + -t 2.98325 -s 4 -d 3 -p SRM -e 116 -c 5 -i 9 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} - -t 2.98325 -s 4 -d 3 -p SRM -e 116 -c 5 -i 9 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} h -t 2.98325 -s 4 -d 3 -p SRM -e 116 -c 5 -i 9 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} r -t 2.98332 -s 2 -d 3 -p SRM -e 116 -c 2 -i 7 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} + -t 2.98332 -s 3 -d 4 -p SRM -e 116 -c 2 -i 7 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} - -t 2.98332 -s 3 -d 4 -p SRM -e 116 -c 2 -i 7 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} h -t 2.98332 -s 3 -d 4 -p SRM -e 116 -c 2 -i 7 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} + -t 2.98332 -s 3 -d 5 -p SRM -e 116 -c 2 -i 7 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} - -t 2.98332 -s 3 -d 5 -p SRM -e 116 -c 2 -i 7 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} h -t 2.98332 -s 3 -d 5 -p SRM -e 116 -c 2 -i 7 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} r -t 2.99027 -s 5 -d 3 -p SRM -e 116 -c 6 -i 8 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} + -t 2.99027 -s 3 -d 2 -p SRM -e 116 -c 6 -i 8 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} - -t 2.99027 -s 3 -d 2 -p SRM -e 116 -c 6 -i 8 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} h -t 2.99027 -s 3 -d 2 -p SRM -e 116 -c 6 -i 8 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} + -t 2.99027 -s 3 -d 4 -p SRM -e 116 -c 6 -i 8 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} - -t 2.99027 -s 3 -d 4 -p SRM -e 116 -c 6 -i 8 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} h -t 2.99027 -s 3 -d 4 -p SRM -e 116 -c 6 -i 8 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} r -t 2.99387 -s 4 -d 3 -p SRM -e 116 -c 5 -i 9 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} + -t 2.99387 -s 3 -d 2 -p SRM -e 116 -c 5 -i 9 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} - -t 2.99387 -s 3 -d 2 -p SRM -e 116 -c 5 -i 9 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} h -t 2.99387 -s 3 -d 2 -p SRM -e 116 -c 5 -i 9 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} + -t 2.99387 -s 3 -d 5 -p SRM -e 116 -c 5 -i 9 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} - -t 2.99387 -s 3 -d 5 -p SRM -e 116 -c 5 -i 9 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} h -t 2.99387 -s 3 -d 5 -p SRM -e 116 -c 5 -i 9 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} r -t 2.99394 -s 3 -d 4 -p SRM -e 116 -c 2 -i 7 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} r -t 2.99394 -s 3 -d 5 -p SRM -e 116 -c 2 -i 7 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} r -t 3.00089 -s 3 -d 2 -p SRM -e 116 -c 6 -i 8 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} + -t 3.00089 -s 2 -d 1 -p SRM -e 116 -c 6 -i 8 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} - -t 3.00089 -s 2 -d 1 -p SRM -e 116 -c 6 -i 8 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} h -t 3.00089 -s 2 -d 1 -p SRM -e 116 -c 6 -i 8 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} r -t 3.00089 -s 3 -d 4 -p SRM -e 116 -c 6 -i 8 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} r -t 3.00449 -s 3 -d 2 -p SRM -e 116 -c 5 -i 9 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} + -t 3.00449 -s 2 -d 1 -p SRM -e 116 -c 5 -i 9 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} - -t 3.00449 -s 2 -d 1 -p SRM -e 116 -c 5 -i 9 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} h -t 3.00449 -s 2 -d 1 -p SRM -e 116 -c 5 -i 9 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} r -t 3.00449 -s 3 -d 5 -p SRM -e 116 -c 5 -i 9 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} r -t 3.01151 -s 2 -d 1 -p SRM -e 116 -c 6 -i 8 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} + -t 3.01151 -s 1 -d 0 -p SRM -e 116 -c 6 -i 8 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} - -t 3.01151 -s 1 -d 0 -p SRM -e 116 -c 6 -i 8 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} h -t 3.01151 -s 1 -d 0 -p SRM -e 116 -c 6 -i 8 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} r -t 3.01511 -s 2 -d 1 -p SRM -e 116 -c 5 -i 9 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} + -t 3.01511 -s 1 -d 0 -p SRM -e 116 -c 5 -i 9 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} - -t 3.01511 -s 1 -d 0 -p SRM -e 116 -c 5 -i 9 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} h -t 3.01511 -s 1 -d 0 -p SRM -e 116 -c 5 -i 9 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} r -t 3.02213 -s 1 -d 0 -p SRM -e 116 -c 6 -i 8 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} r -t 3.02573 -s 1 -d 0 -p SRM -e 116 -c 5 -i 9 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} + -t 3.055 -s 2 -d 1 -p SRM -e 116 -c 3 -i 10 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} - -t 3.055 -s 2 -d 1 -p SRM -e 116 -c 3 -i 10 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} h -t 3.055 -s 2 -d 1 -p SRM -e 116 -c 3 -i 10 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} + -t 3.055 -s 2 -d 3 -p SRM -e 116 -c 3 -i 10 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} - -t 3.055 -s 2 -d 3 -p SRM -e 116 -c 3 -i 10 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} h -t 3.055 -s 2 -d 3 -p SRM -e 116 -c 3 -i 10 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} r -t 3.06562 -s 2 -d 1 -p SRM -e 116 -c 3 -i 10 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} + -t 3.06562 -s 1 -d 0 -p SRM -e 116 -c 3 -i 10 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} - -t 3.06562 -s 1 -d 0 -p SRM -e 116 -c 3 -i 10 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} h -t 3.06562 -s 1 -d 0 -p SRM -e 116 -c 3 -i 10 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} r -t 3.06562 -s 2 -d 3 -p SRM -e 116 -c 3 -i 10 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} + -t 3.06562 -s 3 -d 4 -p SRM -e 116 -c 3 -i 10 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} - -t 3.06562 -s 3 -d 4 -p SRM -e 116 -c 3 -i 10 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} h -t 3.06562 -s 3 -d 4 -p SRM -e 116 -c 3 -i 10 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} + -t 3.06562 -s 3 -d 5 -p SRM -e 116 -c 3 -i 10 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} - -t 3.06562 -s 3 -d 5 -p SRM -e 116 -c 3 -i 10 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} h -t 3.06562 -s 3 -d 5 -p SRM -e 116 -c 3 -i 10 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} r -t 3.07624 -s 1 -d 0 -p SRM -e 116 -c 3 -i 10 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} r -t 3.07624 -s 3 -d 4 -p SRM -e 116 -c 3 -i 10 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} r -t 3.07624 -s 3 -d 5 -p SRM -e 116 -c 3 -i 10 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} + -t 3.07867 -s 3 -d 2 -p SRM -e 116 -c 4 -i 11 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} - -t 3.07867 -s 3 -d 2 -p SRM -e 116 -c 4 -i 11 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} h -t 3.07867 -s 3 -d 2 -p SRM -e 116 -c 4 -i 11 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} + -t 3.07867 -s 3 -d 4 -p SRM -e 116 -c 4 -i 11 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} - -t 3.07867 -s 3 -d 4 -p SRM -e 116 -c 4 -i 11 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} h -t 3.07867 -s 3 -d 4 -p SRM -e 116 -c 4 -i 11 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} + -t 3.07867 -s 3 -d 5 -p SRM -e 116 -c 4 -i 11 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} - -t 3.07867 -s 3 -d 5 -p SRM -e 116 -c 4 -i 11 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} h -t 3.07867 -s 3 -d 5 -p SRM -e 116 -c 4 -i 11 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} r -t 3.08929 -s 3 -d 2 -p SRM -e 116 -c 4 -i 11 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} + -t 3.08929 -s 2 -d 1 -p SRM -e 116 -c 4 -i 11 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} - -t 3.08929 -s 2 -d 1 -p SRM -e 116 -c 4 -i 11 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} h -t 3.08929 -s 2 -d 1 -p SRM -e 116 -c 4 -i 11 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} r -t 3.08929 -s 3 -d 4 -p SRM -e 116 -c 4 -i 11 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} r -t 3.08929 -s 3 -d 5 -p SRM -e 116 -c 4 -i 11 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} r -t 3.09991 -s 2 -d 1 -p SRM -e 116 -c 4 -i 11 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} + -t 3.09991 -s 1 -d 0 -p SRM -e 116 -c 4 -i 11 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} - -t 3.09991 -s 1 -d 0 -p SRM -e 116 -c 4 -i 11 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} h -t 3.09991 -s 1 -d 0 -p SRM -e 116 -c 4 -i 11 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} r -t 3.11052 -s 1 -d 0 -p SRM -e 116 -c 4 -i 11 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} + -t 3.5 -s 0 -d 1 -p cbr -e 800 -c 0 -i 12 -a 0 -x {0.1 4194304.0 0 ------- SRM_DATA} - -t 3.5 -s 0 -d 1 -p cbr -e 800 -c 0 -i 12 -a 0 -x {0.1 4194304.0 0 ------- SRM_DATA} h -t 3.5 -s 0 -d 1 -p cbr -e 800 -c 0 -i 12 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} n -t 3.5 -s 0 -S COLOR -c red -o black v -t 3.5 sim_annotation 3.5 1 node 0 changed color r -t 3.51427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 12 -a 0 -x {0.1 4194304.0 0 ------- SRM_DATA} + -t 3.51427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 12 -a 0 -x {0.1 4194304.0 0 ------- SRM_DATA} - -t 3.51427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 12 -a 0 -x {0.1 4194304.0 0 ------- SRM_DATA} h -t 3.51427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 12 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 3.52 -s 0 -d 1 -p cbr -e 800 -c 0 -i 13 -a 0 -x {0.1 4194304.0 1 ------- SRM_DATA} - -t 3.52 -s 0 -d 1 -p cbr -e 800 -c 0 -i 13 -a 0 -x {0.1 4194304.0 1 ------- SRM_DATA} h -t 3.52 -s 0 -d 1 -p cbr -e 800 -c 0 -i 13 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.52853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 12 -a 0 -x {0.1 4194304.0 0 ------- SRM_DATA} + -t 3.52853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 12 -a 0 -x {0.1 4194304.0 0 ------- SRM_DATA} - -t 3.52853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 12 -a 0 -x {0.1 4194304.0 0 ------- SRM_DATA} h -t 3.52853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 12 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.53427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 13 -a 0 -x {0.1 4194304.0 1 ------- SRM_DATA} + -t 3.53427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 13 -a 0 -x {0.1 4194304.0 1 ------- SRM_DATA} - -t 3.53427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 13 -a 0 -x {0.1 4194304.0 1 ------- SRM_DATA} h -t 3.53427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 13 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 3.54 -s 0 -d 1 -p cbr -e 800 -c 0 -i 14 -a 0 -x {0.1 4194304.0 2 ------- SRM_DATA} - -t 3.54 -s 0 -d 1 -p cbr -e 800 -c 0 -i 14 -a 0 -x {0.1 4194304.0 2 ------- SRM_DATA} h -t 3.54 -s 0 -d 1 -p cbr -e 800 -c 0 -i 14 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.5428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 12 -a 0 -x {0.1 4194304.0 0 ------- SRM_DATA} + -t 3.5428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 12 -a 0 -x {0.1 4194304.0 0 ------- SRM_DATA} - -t 3.5428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 12 -a 0 -x {0.1 4194304.0 0 ------- SRM_DATA} h -t 3.5428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 12 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 3.5428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 12 -a 0 -x {0.1 4194304.0 0 ------- SRM_DATA} - -t 3.5428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 12 -a 0 -x {0.1 4194304.0 0 ------- SRM_DATA} h -t 3.5428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 12 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.54853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 13 -a 0 -x {0.1 4194304.0 1 ------- SRM_DATA} + -t 3.54853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 13 -a 0 -x {0.1 4194304.0 1 ------- SRM_DATA} - -t 3.54853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 13 -a 0 -x {0.1 4194304.0 1 ------- SRM_DATA} h -t 3.54853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 13 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.55427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 14 -a 0 -x {0.1 4194304.0 2 ------- SRM_DATA} + -t 3.55427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 14 -a 0 -x {0.1 4194304.0 2 ------- SRM_DATA} - -t 3.55427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 14 -a 0 -x {0.1 4194304.0 2 ------- SRM_DATA} h -t 3.55427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 14 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.55707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 12 -a 0 -x {0.1 4194304.0 0 ------- SRM_DATA} r -t 3.55707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 12 -a 0 -x {0.1 4194304.0 0 ------- SRM_DATA} + -t 3.56 -s 0 -d 1 -p cbr -e 800 -c 0 -i 15 -a 0 -x {0.1 4194304.0 3 ------- SRM_DATA} - -t 3.56 -s 0 -d 1 -p cbr -e 800 -c 0 -i 15 -a 0 -x {0.1 4194304.0 3 ------- SRM_DATA} h -t 3.56 -s 0 -d 1 -p cbr -e 800 -c 0 -i 15 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.5628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 13 -a 0 -x {0.1 4194304.0 1 ------- SRM_DATA} + -t 3.5628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 13 -a 0 -x {0.1 4194304.0 1 ------- SRM_DATA} - -t 3.5628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 13 -a 0 -x {0.1 4194304.0 1 ------- SRM_DATA} h -t 3.5628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 13 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 3.5628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 13 -a 0 -x {0.1 4194304.0 1 ------- SRM_DATA} - -t 3.5628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 13 -a 0 -x {0.1 4194304.0 1 ------- SRM_DATA} h -t 3.5628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 13 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.56853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 14 -a 0 -x {0.1 4194304.0 2 ------- SRM_DATA} + -t 3.56853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 14 -a 0 -x {0.1 4194304.0 2 ------- SRM_DATA} - -t 3.56853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 14 -a 0 -x {0.1 4194304.0 2 ------- SRM_DATA} h -t 3.56853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 14 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.57427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 15 -a 0 -x {0.1 4194304.0 3 ------- SRM_DATA} + -t 3.57427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 15 -a 0 -x {0.1 4194304.0 3 ------- SRM_DATA} - -t 3.57427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 15 -a 0 -x {0.1 4194304.0 3 ------- SRM_DATA} h -t 3.57427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 15 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.57707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 13 -a 0 -x {0.1 4194304.0 1 ------- SRM_DATA} r -t 3.57707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 13 -a 0 -x {0.1 4194304.0 1 ------- SRM_DATA} + -t 3.58 -s 0 -d 1 -p cbr -e 800 -c 0 -i 16 -a 0 -x {0.1 4194304.0 4 ------- SRM_DATA} - -t 3.58 -s 0 -d 1 -p cbr -e 800 -c 0 -i 16 -a 0 -x {0.1 4194304.0 4 ------- SRM_DATA} h -t 3.58 -s 0 -d 1 -p cbr -e 800 -c 0 -i 16 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.5828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 14 -a 0 -x {0.1 4194304.0 2 ------- SRM_DATA} + -t 3.5828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 14 -a 0 -x {0.1 4194304.0 2 ------- SRM_DATA} - -t 3.5828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 14 -a 0 -x {0.1 4194304.0 2 ------- SRM_DATA} h -t 3.5828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 14 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 3.5828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 14 -a 0 -x {0.1 4194304.0 2 ------- SRM_DATA} - -t 3.5828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 14 -a 0 -x {0.1 4194304.0 2 ------- SRM_DATA} h -t 3.5828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 14 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.58853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 15 -a 0 -x {0.1 4194304.0 3 ------- SRM_DATA} + -t 3.58853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 15 -a 0 -x {0.1 4194304.0 3 ------- SRM_DATA} - -t 3.58853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 15 -a 0 -x {0.1 4194304.0 3 ------- SRM_DATA} h -t 3.58853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 15 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} l -t 3.5899999999999999 -s 1 -d 0 -S DOWN v -t 3.5899999999999999 link-down 3.5899999999999999 1 0 d -t 3.59 -s 0 -d 1 -p cbr -e 800 -c 0 -i 16 -a 0 -x {0.1 4194304.0 4 ------- SRM_DATA} l -t 3.5899999999999999 -s 0 -d 1 -S DOWN v -t 3.5899999999999999 link-down 3.5899999999999999 0 1 r -t 3.59707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 14 -a 0 -x {0.1 4194304.0 2 ------- SRM_DATA} r -t 3.59707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 14 -a 0 -x {0.1 4194304.0 2 ------- SRM_DATA} n -t 3.6000000000000001 -s 0 -S DLABEL -l abc -L "" r -t 3.6028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 15 -a 0 -x {0.1 4194304.0 3 ------- SRM_DATA} + -t 3.6028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 15 -a 0 -x {0.1 4194304.0 3 ------- SRM_DATA} - -t 3.6028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 15 -a 0 -x {0.1 4194304.0 3 ------- SRM_DATA} h -t 3.6028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 15 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 3.6028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 15 -a 0 -x {0.1 4194304.0 3 ------- SRM_DATA} - -t 3.6028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 15 -a 0 -x {0.1 4194304.0 3 ------- SRM_DATA} h -t 3.6028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 15 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} l -t 3.6099999999999999 -s 1 -d 0 -S UP v -t 3.6099999999999999 link-up 3.6099999999999999 1 0 l -t 3.6099999999999999 -s 0 -d 1 -S UP v -t 3.6099999999999999 link-up 3.6099999999999999 0 1 r -t 3.61707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 15 -a 0 -x {0.1 4194304.0 3 ------- SRM_DATA} r -t 3.61707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 15 -a 0 -x {0.1 4194304.0 3 ------- SRM_DATA} + -t 3.62 -s 0 -d 1 -p cbr -e 800 -c 0 -i 18 -a 0 -x {0.1 4194304.0 6 ------- SRM_DATA} - -t 3.62 -s 0 -d 1 -p cbr -e 800 -c 0 -i 18 -a 0 -x {0.1 4194304.0 6 ------- SRM_DATA} h -t 3.62 -s 0 -d 1 -p cbr -e 800 -c 0 -i 18 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.63427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 18 -a 0 -x {0.1 4194304.0 6 ------- SRM_DATA} + -t 3.63427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 18 -a 0 -x {0.1 4194304.0 6 ------- SRM_DATA} - -t 3.63427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 18 -a 0 -x {0.1 4194304.0 6 ------- SRM_DATA} h -t 3.63427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 18 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 3.64 -s 0 -d 1 -p cbr -e 800 -c 0 -i 19 -a 0 -x {0.1 4194304.0 7 ------- SRM_DATA} - -t 3.64 -s 0 -d 1 -p cbr -e 800 -c 0 -i 19 -a 0 -x {0.1 4194304.0 7 ------- SRM_DATA} h -t 3.64 -s 0 -d 1 -p cbr -e 800 -c 0 -i 19 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.64853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 18 -a 0 -x {0.1 4194304.0 6 ------- SRM_DATA} + -t 3.64853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 18 -a 0 -x {0.1 4194304.0 6 ------- SRM_DATA} - -t 3.64853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 18 -a 0 -x {0.1 4194304.0 6 ------- SRM_DATA} h -t 3.64853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 18 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.65427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 19 -a 0 -x {0.1 4194304.0 7 ------- SRM_DATA} + -t 3.65427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 19 -a 0 -x {0.1 4194304.0 7 ------- SRM_DATA} - -t 3.65427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 19 -a 0 -x {0.1 4194304.0 7 ------- SRM_DATA} h -t 3.65427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 19 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} f -t 3.65667035365455684 -s 1 -d 4194304 -n C1_ -a srm(1) -v 1.8999999999999999 -o -T v + -t 3.65667 -s 1 -d 0 -p SRM -e 16 -c 2 -i 20 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 3.65667 -s 1 -d 0 -p SRM -e 16 -c 2 -i 20 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 3.65667 -s 1 -d 0 -p SRM -e 16 -c 2 -i 20 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 3.65667 -s 1 -d 2 -p SRM -e 16 -c 2 -i 20 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 3.65853 -s 1 -d 2 -p SRM -e 16 -c 2 -i 20 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 3.65853 -s 1 -d 2 -p SRM -e 16 -c 2 -i 20 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 3.66 -s 0 -d 1 -p cbr -e 800 -c 0 -i 21 -a 0 -x {0.1 4194304.0 8 ------- SRM_DATA} - -t 3.66 -s 0 -d 1 -p cbr -e 800 -c 0 -i 21 -a 0 -x {0.1 4194304.0 8 ------- SRM_DATA} h -t 3.66 -s 0 -d 1 -p cbr -e 800 -c 0 -i 21 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.6628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 18 -a 0 -x {0.1 4194304.0 6 ------- SRM_DATA} + -t 3.6628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 18 -a 0 -x {0.1 4194304.0 6 ------- SRM_DATA} - -t 3.6628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 18 -a 0 -x {0.1 4194304.0 6 ------- SRM_DATA} h -t 3.6628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 18 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 3.6628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 18 -a 0 -x {0.1 4194304.0 6 ------- SRM_DATA} - -t 3.6628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 18 -a 0 -x {0.1 4194304.0 6 ------- SRM_DATA} h -t 3.6628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 18 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} f -t 3.66331839533251991 -s 1 -d 4194304 -n C1_ -a srm(1) -v 1.7999999999999998 -o 1.8999999999999999 -T v + -t 3.66332 -s 1 -d 0 -p SRM -e 16 -c 2 -i 22 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 3.66332 -s 1 -d 0 -p SRM -e 16 -c 2 -i 22 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 3.66332 -s 1 -d 0 -p SRM -e 16 -c 2 -i 22 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 3.66332 -s 1 -d 2 -p SRM -e 16 -c 2 -i 22 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 3.66332 -s 1 -d 2 -p SRM -e 16 -c 2 -i 22 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 3.66332 -s 1 -d 2 -p SRM -e 16 -c 2 -i 22 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 3.66676 -s 1 -d 0 -p SRM -e 16 -c 2 -i 20 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 3.66853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 19 -a 0 -x {0.1 4194304.0 7 ------- SRM_DATA} + -t 3.66853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 19 -a 0 -x {0.1 4194304.0 7 ------- SRM_DATA} - -t 3.66853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 19 -a 0 -x {0.1 4194304.0 7 ------- SRM_DATA} h -t 3.66853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 19 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.66862 -s 1 -d 2 -p SRM -e 16 -c 2 -i 20 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 3.66862 -s 2 -d 3 -p SRM -e 16 -c 2 -i 20 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 3.6728 -s 2 -d 3 -p SRM -e 16 -c 2 -i 20 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 3.6728 -s 2 -d 3 -p SRM -e 16 -c 2 -i 20 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 3.6734 -s 1 -d 0 -p SRM -e 16 -c 2 -i 22 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 3.6734 -s 1 -d 2 -p SRM -e 16 -c 2 -i 22 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 3.6734 -s 2 -d 3 -p SRM -e 16 -c 2 -i 22 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 3.6734 -s 2 -d 3 -p SRM -e 16 -c 2 -i 22 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 3.6734 -s 2 -d 3 -p SRM -e 16 -c 2 -i 22 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 3.67427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 21 -a 0 -x {0.1 4194304.0 8 ------- SRM_DATA} + -t 3.67427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 21 -a 0 -x {0.1 4194304.0 8 ------- SRM_DATA} - -t 3.67427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 21 -a 0 -x {0.1 4194304.0 8 ------- SRM_DATA} h -t 3.67427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 21 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 3.67589 -s 0 -d 1 -p SRM -e 816 -c 1 -i 23 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 3.67589 -s 0 -d 1 -p SRM -e 816 -c 1 -i 23 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 3.67589 -s 0 -d 1 -p SRM -e 816 -c 1 -i 23 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 3.67707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 18 -a 0 -x {0.1 4194304.0 6 ------- SRM_DATA} r -t 3.67707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 18 -a 0 -x {0.1 4194304.0 6 ------- SRM_DATA} + -t 3.68 -s 0 -d 1 -p cbr -e 800 -c 0 -i 24 -a 0 -x {0.1 4194304.0 9 ------- SRM_DATA} - -t 3.68024 -s 0 -d 1 -p cbr -e 800 -c 0 -i 24 -a 0 -x {0.1 4194304.0 9 ------- SRM_DATA} h -t 3.68024 -s 0 -d 1 -p cbr -e 800 -c 0 -i 24 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.6828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 19 -a 0 -x {0.1 4194304.0 7 ------- SRM_DATA} + -t 3.6828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 19 -a 0 -x {0.1 4194304.0 7 ------- SRM_DATA} - -t 3.6828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 19 -a 0 -x {0.1 4194304.0 7 ------- SRM_DATA} h -t 3.6828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 19 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 3.6828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 19 -a 0 -x {0.1 4194304.0 7 ------- SRM_DATA} - -t 3.6828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 19 -a 0 -x {0.1 4194304.0 7 ------- SRM_DATA} h -t 3.6828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 19 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.68289 -s 2 -d 3 -p SRM -e 16 -c 2 -i 20 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 3.68289 -s 3 -d 4 -p SRM -e 16 -c 2 -i 20 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 3.68289 -s 3 -d 5 -p SRM -e 16 -c 2 -i 20 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 3.68349 -s 2 -d 3 -p SRM -e 16 -c 2 -i 22 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 3.68349 -s 3 -d 4 -p SRM -e 16 -c 2 -i 22 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 3.68349 -s 3 -d 5 -p SRM -e 16 -c 2 -i 22 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 3.68594 -s 0 -d 1 -p SRM -e 816 -c 1 -i 25 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 3.68594 -s 0 -d 1 -p SRM -e 816 -c 1 -i 25 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 3.68594 -s 0 -d 1 -p SRM -e 816 -c 1 -i 25 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 3.68707 -s 3 -d 4 -p SRM -e 16 -c 2 -i 20 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 3.68707 -s 3 -d 4 -p SRM -e 16 -c 2 -i 20 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 3.68707 -s 3 -d 5 -p SRM -e 16 -c 2 -i 20 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 3.68707 -s 3 -d 5 -p SRM -e 16 -c 2 -i 20 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 3.68715 -s 3 -d 4 -p SRM -e 16 -c 2 -i 22 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 3.68715 -s 3 -d 4 -p SRM -e 16 -c 2 -i 22 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 3.68715 -s 3 -d 5 -p SRM -e 16 -c 2 -i 22 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 3.68715 -s 3 -d 5 -p SRM -e 16 -c 2 -i 22 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 3.68853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 21 -a 0 -x {0.1 4194304.0 8 ------- SRM_DATA} + -t 3.68853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 21 -a 0 -x {0.1 4194304.0 8 ------- SRM_DATA} - -t 3.68853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 21 -a 0 -x {0.1 4194304.0 8 ------- SRM_DATA} h -t 3.68853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 21 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.69024 -s 0 -d 1 -p SRM -e 816 -c 1 -i 23 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 3.69024 -s 1 -d 2 -p SRM -e 816 -c 1 -i 23 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 3.69024 -s 1 -d 2 -p SRM -e 816 -c 1 -i 23 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 3.69024 -s 1 -d 2 -p SRM -e 816 -c 1 -i 23 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 3.69451 -s 0 -d 1 -p cbr -e 800 -c 0 -i 24 -a 0 -x {0.1 4194304.0 9 ------- SRM_DATA} + -t 3.69451 -s 1 -d 2 -p cbr -e 800 -c 0 -i 24 -a 0 -x {0.1 4194304.0 9 ------- SRM_DATA} - -t 3.6946 -s 1 -d 2 -p cbr -e 800 -c 0 -i 24 -a 0 -x {0.1 4194304.0 9 ------- SRM_DATA} h -t 3.6946 -s 1 -d 2 -p cbr -e 800 -c 0 -i 24 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.69707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 19 -a 0 -x {0.1 4194304.0 7 ------- SRM_DATA} r -t 3.69707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 19 -a 0 -x {0.1 4194304.0 7 ------- SRM_DATA} r -t 3.69715 -s 3 -d 4 -p SRM -e 16 -c 2 -i 20 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 3.69715 -s 3 -d 5 -p SRM -e 16 -c 2 -i 20 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 3.69724 -s 3 -d 4 -p SRM -e 16 -c 2 -i 22 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 3.69724 -s 3 -d 5 -p SRM -e 16 -c 2 -i 22 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} n -t 3.7000000000000002 -s 0 -S COLOR -c cyan -o red v -t 3.7000000000000002 sim_annotation 3.7000000000000002 2 node 0 changed color again + -t 3.7 -s 0 -d 1 -p cbr -e 800 -c 0 -i 26 -a 0 -x {0.1 4194304.0 10 ------- SRM_DATA} - -t 3.7 -s 0 -d 1 -p cbr -e 800 -c 0 -i 26 -a 0 -x {0.1 4194304.0 10 ------- SRM_DATA} h -t 3.7 -s 0 -d 1 -p cbr -e 800 -c 0 -i 26 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.70029 -s 0 -d 1 -p SRM -e 816 -c 1 -i 25 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 3.70029 -s 1 -d 2 -p SRM -e 816 -c 1 -i 25 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 3.70029 -s 1 -d 2 -p SRM -e 816 -c 1 -i 25 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 3.70029 -s 1 -d 2 -p SRM -e 816 -c 1 -i 25 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 3.7028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 21 -a 0 -x {0.1 4194304.0 8 ------- SRM_DATA} + -t 3.7028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 21 -a 0 -x {0.1 4194304.0 8 ------- SRM_DATA} - -t 3.7028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 21 -a 0 -x {0.1 4194304.0 8 ------- SRM_DATA} h -t 3.7028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 21 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 3.7028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 21 -a 0 -x {0.1 4194304.0 8 ------- SRM_DATA} - -t 3.7028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 21 -a 0 -x {0.1 4194304.0 8 ------- SRM_DATA} h -t 3.7028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 21 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.7046 -s 1 -d 2 -p SRM -e 816 -c 1 -i 23 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 3.7046 -s 2 -d 3 -p SRM -e 816 -c 1 -i 23 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 3.7046 -s 2 -d 3 -p SRM -e 816 -c 1 -i 23 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 3.7046 -s 2 -d 3 -p SRM -e 816 -c 1 -i 23 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 3.70886 -s 1 -d 2 -p cbr -e 800 -c 0 -i 24 -a 0 -x {0.1 4194304.0 9 ------- SRM_DATA} + -t 3.70886 -s 2 -d 3 -p cbr -e 800 -c 0 -i 24 -a 0 -x {0.1 4194304.0 9 ------- SRM_DATA} - -t 3.70895 -s 2 -d 3 -p cbr -e 800 -c 0 -i 24 -a 0 -x {0.1 4194304.0 9 ------- SRM_DATA} h -t 3.70895 -s 2 -d 3 -p cbr -e 800 -c 0 -i 24 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.71427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 26 -a 0 -x {0.1 4194304.0 10 ------- SRM_DATA} + -t 3.71427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 26 -a 0 -x {0.1 4194304.0 10 ------- SRM_DATA} - -t 3.71427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 26 -a 0 -x {0.1 4194304.0 10 ------- SRM_DATA} h -t 3.71427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 26 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.71465 -s 1 -d 2 -p SRM -e 816 -c 1 -i 25 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 3.71465 -s 2 -d 3 -p SRM -e 816 -c 1 -i 25 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 3.71465 -s 2 -d 3 -p SRM -e 816 -c 1 -i 25 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 3.71465 -s 2 -d 3 -p SRM -e 816 -c 1 -i 25 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 3.71707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 21 -a 0 -x {0.1 4194304.0 8 ------- SRM_DATA} r -t 3.71707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 21 -a 0 -x {0.1 4194304.0 8 ------- SRM_DATA} r -t 3.71895 -s 2 -d 3 -p SRM -e 816 -c 1 -i 23 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 3.71895 -s 3 -d 4 -p SRM -e 816 -c 1 -i 23 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 3.71895 -s 3 -d 4 -p SRM -e 816 -c 1 -i 23 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 3.71895 -s 3 -d 4 -p SRM -e 816 -c 1 -i 23 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 3.71895 -s 3 -d 5 -p SRM -e 816 -c 1 -i 23 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 3.71895 -s 3 -d 5 -p SRM -e 816 -c 1 -i 23 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 3.71895 -s 3 -d 5 -p SRM -e 816 -c 1 -i 23 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 3.72 -s 0 -d 1 -p cbr -e 800 -c 0 -i 27 -a 0 -x {0.1 4194304.0 11 ------- SRM_DATA} - -t 3.72 -s 0 -d 1 -p cbr -e 800 -c 0 -i 27 -a 0 -x {0.1 4194304.0 11 ------- SRM_DATA} h -t 3.72 -s 0 -d 1 -p cbr -e 800 -c 0 -i 27 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.72321 -s 2 -d 3 -p cbr -e 800 -c 0 -i 24 -a 0 -x {0.1 4194304.0 9 ------- SRM_DATA} + -t 3.72321 -s 3 -d 4 -p cbr -e 800 -c 0 -i 24 -a 0 -x {0.1 4194304.0 9 ------- SRM_DATA} + -t 3.72321 -s 3 -d 5 -p cbr -e 800 -c 0 -i 24 -a 0 -x {0.1 4194304.0 9 ------- SRM_DATA} - -t 3.7233 -s 3 -d 4 -p cbr -e 800 -c 0 -i 24 -a 0 -x {0.1 4194304.0 9 ------- SRM_DATA} h -t 3.7233 -s 3 -d 4 -p cbr -e 800 -c 0 -i 24 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} - -t 3.7233 -s 3 -d 5 -p cbr -e 800 -c 0 -i 24 -a 0 -x {0.1 4194304.0 9 ------- SRM_DATA} h -t 3.7233 -s 3 -d 5 -p cbr -e 800 -c 0 -i 24 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.72853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 26 -a 0 -x {0.1 4194304.0 10 ------- SRM_DATA} + -t 3.72853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 26 -a 0 -x {0.1 4194304.0 10 ------- SRM_DATA} - -t 3.72853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 26 -a 0 -x {0.1 4194304.0 10 ------- SRM_DATA} h -t 3.72853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 26 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.729 -s 2 -d 3 -p SRM -e 816 -c 1 -i 25 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 3.729 -s 3 -d 4 -p SRM -e 816 -c 1 -i 25 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 3.729 -s 3 -d 4 -p SRM -e 816 -c 1 -i 25 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 3.729 -s 3 -d 4 -p SRM -e 816 -c 1 -i 25 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 3.729 -s 3 -d 5 -p SRM -e 816 -c 1 -i 25 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 3.729 -s 3 -d 5 -p SRM -e 816 -c 1 -i 25 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 3.729 -s 3 -d 5 -p SRM -e 816 -c 1 -i 25 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 3.7333 -s 3 -d 4 -p SRM -e 816 -c 1 -i 23 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 3.7333 -s 3 -d 5 -p SRM -e 816 -c 1 -i 23 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 3.73427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 27 -a 0 -x {0.1 4194304.0 11 ------- SRM_DATA} + -t 3.73427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 27 -a 0 -x {0.1 4194304.0 11 ------- SRM_DATA} - -t 3.73427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 27 -a 0 -x {0.1 4194304.0 11 ------- SRM_DATA} h -t 3.73427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 27 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.73757 -s 3 -d 4 -p cbr -e 800 -c 0 -i 24 -a 0 -x {0.1 4194304.0 9 ------- SRM_DATA} r -t 3.73757 -s 3 -d 5 -p cbr -e 800 -c 0 -i 24 -a 0 -x {0.1 4194304.0 9 ------- SRM_DATA} + -t 3.74 -s 0 -d 1 -p cbr -e 800 -c 0 -i 28 -a 0 -x {0.1 4194304.0 12 ------- SRM_DATA} - -t 3.74 -s 0 -d 1 -p cbr -e 800 -c 0 -i 28 -a 0 -x {0.1 4194304.0 12 ------- SRM_DATA} h -t 3.74 -s 0 -d 1 -p cbr -e 800 -c 0 -i 28 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.7428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 26 -a 0 -x {0.1 4194304.0 10 ------- SRM_DATA} + -t 3.7428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 26 -a 0 -x {0.1 4194304.0 10 ------- SRM_DATA} - -t 3.7428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 26 -a 0 -x {0.1 4194304.0 10 ------- SRM_DATA} h -t 3.7428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 26 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 3.7428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 26 -a 0 -x {0.1 4194304.0 10 ------- SRM_DATA} - -t 3.7428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 26 -a 0 -x {0.1 4194304.0 10 ------- SRM_DATA} h -t 3.7428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 26 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.74335 -s 3 -d 4 -p SRM -e 816 -c 1 -i 25 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 3.74335 -s 3 -d 5 -p SRM -e 816 -c 1 -i 25 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 3.74853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 27 -a 0 -x {0.1 4194304.0 11 ------- SRM_DATA} + -t 3.74853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 27 -a 0 -x {0.1 4194304.0 11 ------- SRM_DATA} - -t 3.74853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 27 -a 0 -x {0.1 4194304.0 11 ------- SRM_DATA} h -t 3.74853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 27 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.75427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 28 -a 0 -x {0.1 4194304.0 12 ------- SRM_DATA} + -t 3.75427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 28 -a 0 -x {0.1 4194304.0 12 ------- SRM_DATA} - -t 3.75427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 28 -a 0 -x {0.1 4194304.0 12 ------- SRM_DATA} h -t 3.75427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 28 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.75707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 26 -a 0 -x {0.1 4194304.0 10 ------- SRM_DATA} r -t 3.75707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 26 -a 0 -x {0.1 4194304.0 10 ------- SRM_DATA} + -t 3.76 -s 0 -d 1 -p cbr -e 800 -c 0 -i 29 -a 0 -x {0.1 4194304.0 13 ------- SRM_DATA} - -t 3.76 -s 0 -d 1 -p cbr -e 800 -c 0 -i 29 -a 0 -x {0.1 4194304.0 13 ------- SRM_DATA} h -t 3.76 -s 0 -d 1 -p cbr -e 800 -c 0 -i 29 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.7628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 27 -a 0 -x {0.1 4194304.0 11 ------- SRM_DATA} + -t 3.7628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 27 -a 0 -x {0.1 4194304.0 11 ------- SRM_DATA} - -t 3.7628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 27 -a 0 -x {0.1 4194304.0 11 ------- SRM_DATA} h -t 3.7628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 27 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 3.7628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 27 -a 0 -x {0.1 4194304.0 11 ------- SRM_DATA} - -t 3.7628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 27 -a 0 -x {0.1 4194304.0 11 ------- SRM_DATA} h -t 3.7628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 27 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.76853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 28 -a 0 -x {0.1 4194304.0 12 ------- SRM_DATA} + -t 3.76853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 28 -a 0 -x {0.1 4194304.0 12 ------- SRM_DATA} - -t 3.76853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 28 -a 0 -x {0.1 4194304.0 12 ------- SRM_DATA} h -t 3.76853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 28 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.77427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 29 -a 0 -x {0.1 4194304.0 13 ------- SRM_DATA} + -t 3.77427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 29 -a 0 -x {0.1 4194304.0 13 ------- SRM_DATA} - -t 3.77427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 29 -a 0 -x {0.1 4194304.0 13 ------- SRM_DATA} h -t 3.77427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 29 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.77707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 27 -a 0 -x {0.1 4194304.0 11 ------- SRM_DATA} r -t 3.77707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 27 -a 0 -x {0.1 4194304.0 11 ------- SRM_DATA} + -t 3.78 -s 0 -d 1 -p cbr -e 800 -c 0 -i 30 -a 0 -x {0.1 4194304.0 14 ------- SRM_DATA} - -t 3.78 -s 0 -d 1 -p cbr -e 800 -c 0 -i 30 -a 0 -x {0.1 4194304.0 14 ------- SRM_DATA} h -t 3.78 -s 0 -d 1 -p cbr -e 800 -c 0 -i 30 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.7828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 28 -a 0 -x {0.1 4194304.0 12 ------- SRM_DATA} + -t 3.7828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 28 -a 0 -x {0.1 4194304.0 12 ------- SRM_DATA} - -t 3.7828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 28 -a 0 -x {0.1 4194304.0 12 ------- SRM_DATA} h -t 3.7828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 28 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 3.7828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 28 -a 0 -x {0.1 4194304.0 12 ------- SRM_DATA} - -t 3.7828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 28 -a 0 -x {0.1 4194304.0 12 ------- SRM_DATA} h -t 3.7828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 28 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.78853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 29 -a 0 -x {0.1 4194304.0 13 ------- SRM_DATA} + -t 3.78853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 29 -a 0 -x {0.1 4194304.0 13 ------- SRM_DATA} - -t 3.78853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 29 -a 0 -x {0.1 4194304.0 13 ------- SRM_DATA} h -t 3.78853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 29 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.79427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 30 -a 0 -x {0.1 4194304.0 14 ------- SRM_DATA} + -t 3.79427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 30 -a 0 -x {0.1 4194304.0 14 ------- SRM_DATA} - -t 3.79427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 30 -a 0 -x {0.1 4194304.0 14 ------- SRM_DATA} h -t 3.79427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 30 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.79707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 28 -a 0 -x {0.1 4194304.0 12 ------- SRM_DATA} r -t 3.79707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 28 -a 0 -x {0.1 4194304.0 12 ------- SRM_DATA} + -t 3.8 -s 0 -d 1 -p cbr -e 800 -c 0 -i 31 -a 0 -x {0.1 4194304.0 15 ------- SRM_DATA} - -t 3.8 -s 0 -d 1 -p cbr -e 800 -c 0 -i 31 -a 0 -x {0.1 4194304.0 15 ------- SRM_DATA} h -t 3.8 -s 0 -d 1 -p cbr -e 800 -c 0 -i 31 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.8028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 29 -a 0 -x {0.1 4194304.0 13 ------- SRM_DATA} + -t 3.8028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 29 -a 0 -x {0.1 4194304.0 13 ------- SRM_DATA} - -t 3.8028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 29 -a 0 -x {0.1 4194304.0 13 ------- SRM_DATA} h -t 3.8028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 29 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 3.8028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 29 -a 0 -x {0.1 4194304.0 13 ------- SRM_DATA} - -t 3.8028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 29 -a 0 -x {0.1 4194304.0 13 ------- SRM_DATA} h -t 3.8028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 29 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.80853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 30 -a 0 -x {0.1 4194304.0 14 ------- SRM_DATA} + -t 3.80853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 30 -a 0 -x {0.1 4194304.0 14 ------- SRM_DATA} - -t 3.80853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 30 -a 0 -x {0.1 4194304.0 14 ------- SRM_DATA} h -t 3.80853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 30 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.81427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 31 -a 0 -x {0.1 4194304.0 15 ------- SRM_DATA} + -t 3.81427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 31 -a 0 -x {0.1 4194304.0 15 ------- SRM_DATA} - -t 3.81427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 31 -a 0 -x {0.1 4194304.0 15 ------- SRM_DATA} h -t 3.81427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 31 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.81707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 29 -a 0 -x {0.1 4194304.0 13 ------- SRM_DATA} r -t 3.81707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 29 -a 0 -x {0.1 4194304.0 13 ------- SRM_DATA} + -t 3.82 -s 0 -d 1 -p cbr -e 800 -c 0 -i 32 -a 0 -x {0.1 4194304.0 16 ------- SRM_DATA} - -t 3.82 -s 0 -d 1 -p cbr -e 800 -c 0 -i 32 -a 0 -x {0.1 4194304.0 16 ------- SRM_DATA} h -t 3.82 -s 0 -d 1 -p cbr -e 800 -c 0 -i 32 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.8228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 30 -a 0 -x {0.1 4194304.0 14 ------- SRM_DATA} + -t 3.8228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 30 -a 0 -x {0.1 4194304.0 14 ------- SRM_DATA} - -t 3.8228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 30 -a 0 -x {0.1 4194304.0 14 ------- SRM_DATA} h -t 3.8228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 30 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 3.8228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 30 -a 0 -x {0.1 4194304.0 14 ------- SRM_DATA} - -t 3.8228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 30 -a 0 -x {0.1 4194304.0 14 ------- SRM_DATA} h -t 3.8228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 30 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.82853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 31 -a 0 -x {0.1 4194304.0 15 ------- SRM_DATA} + -t 3.82853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 31 -a 0 -x {0.1 4194304.0 15 ------- SRM_DATA} - -t 3.82853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 31 -a 0 -x {0.1 4194304.0 15 ------- SRM_DATA} h -t 3.82853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 31 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.83427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 32 -a 0 -x {0.1 4194304.0 16 ------- SRM_DATA} + -t 3.83427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 32 -a 0 -x {0.1 4194304.0 16 ------- SRM_DATA} - -t 3.83427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 32 -a 0 -x {0.1 4194304.0 16 ------- SRM_DATA} h -t 3.83427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 32 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.83707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 30 -a 0 -x {0.1 4194304.0 14 ------- SRM_DATA} r -t 3.83707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 30 -a 0 -x {0.1 4194304.0 14 ------- SRM_DATA} + -t 3.84 -s 0 -d 1 -p cbr -e 800 -c 0 -i 33 -a 0 -x {0.1 4194304.0 17 ------- SRM_DATA} - -t 3.84 -s 0 -d 1 -p cbr -e 800 -c 0 -i 33 -a 0 -x {0.1 4194304.0 17 ------- SRM_DATA} h -t 3.84 -s 0 -d 1 -p cbr -e 800 -c 0 -i 33 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.8428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 31 -a 0 -x {0.1 4194304.0 15 ------- SRM_DATA} + -t 3.8428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 31 -a 0 -x {0.1 4194304.0 15 ------- SRM_DATA} - -t 3.8428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 31 -a 0 -x {0.1 4194304.0 15 ------- SRM_DATA} h -t 3.8428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 31 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 3.8428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 31 -a 0 -x {0.1 4194304.0 15 ------- SRM_DATA} - -t 3.8428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 31 -a 0 -x {0.1 4194304.0 15 ------- SRM_DATA} h -t 3.8428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 31 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.84853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 32 -a 0 -x {0.1 4194304.0 16 ------- SRM_DATA} + -t 3.84853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 32 -a 0 -x {0.1 4194304.0 16 ------- SRM_DATA} - -t 3.84853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 32 -a 0 -x {0.1 4194304.0 16 ------- SRM_DATA} h -t 3.84853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 32 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.85427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 33 -a 0 -x {0.1 4194304.0 17 ------- SRM_DATA} + -t 3.85427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 33 -a 0 -x {0.1 4194304.0 17 ------- SRM_DATA} - -t 3.85427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 33 -a 0 -x {0.1 4194304.0 17 ------- SRM_DATA} h -t 3.85427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 33 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.85707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 31 -a 0 -x {0.1 4194304.0 15 ------- SRM_DATA} r -t 3.85707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 31 -a 0 -x {0.1 4194304.0 15 ------- SRM_DATA} + -t 3.86 -s 0 -d 1 -p cbr -e 800 -c 0 -i 34 -a 0 -x {0.1 4194304.0 18 ------- SRM_DATA} - -t 3.86 -s 0 -d 1 -p cbr -e 800 -c 0 -i 34 -a 0 -x {0.1 4194304.0 18 ------- SRM_DATA} h -t 3.86 -s 0 -d 1 -p cbr -e 800 -c 0 -i 34 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.8628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 32 -a 0 -x {0.1 4194304.0 16 ------- SRM_DATA} + -t 3.8628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 32 -a 0 -x {0.1 4194304.0 16 ------- SRM_DATA} - -t 3.8628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 32 -a 0 -x {0.1 4194304.0 16 ------- SRM_DATA} h -t 3.8628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 32 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 3.8628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 32 -a 0 -x {0.1 4194304.0 16 ------- SRM_DATA} - -t 3.8628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 32 -a 0 -x {0.1 4194304.0 16 ------- SRM_DATA} h -t 3.8628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 32 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.86853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 33 -a 0 -x {0.1 4194304.0 17 ------- SRM_DATA} + -t 3.86853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 33 -a 0 -x {0.1 4194304.0 17 ------- SRM_DATA} - -t 3.86853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 33 -a 0 -x {0.1 4194304.0 17 ------- SRM_DATA} h -t 3.86853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 33 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 3.86899 -s 1 -d 0 -p SRM -e 116 -c 2 -i 35 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} - -t 3.86899 -s 1 -d 0 -p SRM -e 116 -c 2 -i 35 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} h -t 3.86899 -s 1 -d 0 -p SRM -e 116 -c 2 -i 35 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} + -t 3.86899 -s 1 -d 2 -p SRM -e 116 -c 2 -i 35 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} - -t 3.86899 -s 1 -d 2 -p SRM -e 116 -c 2 -i 35 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} h -t 3.86899 -s 1 -d 2 -p SRM -e 116 -c 2 -i 35 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} r -t 3.87427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 34 -a 0 -x {0.1 4194304.0 18 ------- SRM_DATA} + -t 3.87427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 34 -a 0 -x {0.1 4194304.0 18 ------- SRM_DATA} - -t 3.87427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 34 -a 0 -x {0.1 4194304.0 18 ------- SRM_DATA} h -t 3.87427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 34 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 3.8756 -s 0 -d 1 -p SRM -e 116 -c 1 -i 36 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} - -t 3.8756 -s 0 -d 1 -p SRM -e 116 -c 1 -i 36 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} h -t 3.8756 -s 0 -d 1 -p SRM -e 116 -c 1 -i 36 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} r -t 3.87707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 32 -a 0 -x {0.1 4194304.0 16 ------- SRM_DATA} r -t 3.87707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 32 -a 0 -x {0.1 4194304.0 16 ------- SRM_DATA} r -t 3.87961 -s 1 -d 0 -p SRM -e 116 -c 2 -i 35 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} r -t 3.87961 -s 1 -d 2 -p SRM -e 116 -c 2 -i 35 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} + -t 3.87961 -s 2 -d 3 -p SRM -e 116 -c 2 -i 35 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} - -t 3.87961 -s 2 -d 3 -p SRM -e 116 -c 2 -i 35 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} h -t 3.87961 -s 2 -d 3 -p SRM -e 116 -c 2 -i 35 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} + -t 3.88 -s 0 -d 1 -p cbr -e 800 -c 0 -i 37 -a 0 -x {0.1 4194304.0 19 ------- SRM_DATA} - -t 3.88 -s 0 -d 1 -p cbr -e 800 -c 0 -i 37 -a 0 -x {0.1 4194304.0 19 ------- SRM_DATA} h -t 3.88 -s 0 -d 1 -p cbr -e 800 -c 0 -i 37 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.8828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 33 -a 0 -x {0.1 4194304.0 17 ------- SRM_DATA} + -t 3.8828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 33 -a 0 -x {0.1 4194304.0 17 ------- SRM_DATA} - -t 3.8828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 33 -a 0 -x {0.1 4194304.0 17 ------- SRM_DATA} h -t 3.8828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 33 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 3.8828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 33 -a 0 -x {0.1 4194304.0 17 ------- SRM_DATA} - -t 3.8828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 33 -a 0 -x {0.1 4194304.0 17 ------- SRM_DATA} h -t 3.8828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 33 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.88622 -s 0 -d 1 -p SRM -e 116 -c 1 -i 36 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} + -t 3.88622 -s 1 -d 2 -p SRM -e 116 -c 1 -i 36 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} - -t 3.88622 -s 1 -d 2 -p SRM -e 116 -c 1 -i 36 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} h -t 3.88622 -s 1 -d 2 -p SRM -e 116 -c 1 -i 36 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} r -t 3.88853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 34 -a 0 -x {0.1 4194304.0 18 ------- SRM_DATA} + -t 3.88853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 34 -a 0 -x {0.1 4194304.0 18 ------- SRM_DATA} - -t 3.88853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 34 -a 0 -x {0.1 4194304.0 18 ------- SRM_DATA} h -t 3.88853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 34 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.89023 -s 2 -d 3 -p SRM -e 116 -c 2 -i 35 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} + -t 3.89023 -s 3 -d 4 -p SRM -e 116 -c 2 -i 35 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} - -t 3.89023 -s 3 -d 4 -p SRM -e 116 -c 2 -i 35 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} h -t 3.89023 -s 3 -d 4 -p SRM -e 116 -c 2 -i 35 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} + -t 3.89023 -s 3 -d 5 -p SRM -e 116 -c 2 -i 35 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} - -t 3.89023 -s 3 -d 5 -p SRM -e 116 -c 2 -i 35 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} h -t 3.89023 -s 3 -d 5 -p SRM -e 116 -c 2 -i 35 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} + -t 3.89034 -s 5 -d 3 -p SRM -e 116 -c 6 -i 38 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} - -t 3.89034 -s 5 -d 3 -p SRM -e 116 -c 6 -i 38 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} h -t 3.89034 -s 5 -d 3 -p SRM -e 116 -c 6 -i 38 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} r -t 3.89427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 37 -a 0 -x {0.1 4194304.0 19 ------- SRM_DATA} + -t 3.89427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 37 -a 0 -x {0.1 4194304.0 19 ------- SRM_DATA} - -t 3.89427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 37 -a 0 -x {0.1 4194304.0 19 ------- SRM_DATA} h -t 3.89427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 37 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.89684 -s 1 -d 2 -p SRM -e 116 -c 1 -i 36 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} + -t 3.89684 -s 2 -d 3 -p SRM -e 116 -c 1 -i 36 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} - -t 3.89684 -s 2 -d 3 -p SRM -e 116 -c 1 -i 36 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} h -t 3.89684 -s 2 -d 3 -p SRM -e 116 -c 1 -i 36 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} r -t 3.89707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 33 -a 0 -x {0.1 4194304.0 17 ------- SRM_DATA} r -t 3.89707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 33 -a 0 -x {0.1 4194304.0 17 ------- SRM_DATA} + -t 3.9 -s 0 -d 1 -p cbr -e 800 -c 0 -i 39 -a 0 -x {0.1 4194304.0 20 ------- SRM_DATA} - -t 3.9 -s 0 -d 1 -p cbr -e 800 -c 0 -i 39 -a 0 -x {0.1 4194304.0 20 ------- SRM_DATA} h -t 3.9 -s 0 -d 1 -p cbr -e 800 -c 0 -i 39 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.90085 -s 3 -d 4 -p SRM -e 116 -c 2 -i 35 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} r -t 3.90085 -s 3 -d 5 -p SRM -e 116 -c 2 -i 35 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} r -t 3.90096 -s 5 -d 3 -p SRM -e 116 -c 6 -i 38 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} + -t 3.90096 -s 3 -d 2 -p SRM -e 116 -c 6 -i 38 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} - -t 3.90096 -s 3 -d 2 -p SRM -e 116 -c 6 -i 38 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} h -t 3.90096 -s 3 -d 2 -p SRM -e 116 -c 6 -i 38 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} + -t 3.90096 -s 3 -d 4 -p SRM -e 116 -c 6 -i 38 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} - -t 3.90096 -s 3 -d 4 -p SRM -e 116 -c 6 -i 38 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} h -t 3.90096 -s 3 -d 4 -p SRM -e 116 -c 6 -i 38 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} r -t 3.9028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 34 -a 0 -x {0.1 4194304.0 18 ------- SRM_DATA} + -t 3.9028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 34 -a 0 -x {0.1 4194304.0 18 ------- SRM_DATA} - -t 3.9028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 34 -a 0 -x {0.1 4194304.0 18 ------- SRM_DATA} h -t 3.9028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 34 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 3.9028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 34 -a 0 -x {0.1 4194304.0 18 ------- SRM_DATA} - -t 3.9028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 34 -a 0 -x {0.1 4194304.0 18 ------- SRM_DATA} h -t 3.9028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 34 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.90746 -s 2 -d 3 -p SRM -e 116 -c 1 -i 36 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} + -t 3.90746 -s 3 -d 4 -p SRM -e 116 -c 1 -i 36 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} - -t 3.90746 -s 3 -d 4 -p SRM -e 116 -c 1 -i 36 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} h -t 3.90746 -s 3 -d 4 -p SRM -e 116 -c 1 -i 36 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} + -t 3.90746 -s 3 -d 5 -p SRM -e 116 -c 1 -i 36 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} - -t 3.90746 -s 3 -d 5 -p SRM -e 116 -c 1 -i 36 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} h -t 3.90746 -s 3 -d 5 -p SRM -e 116 -c 1 -i 36 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} r -t 3.90853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 37 -a 0 -x {0.1 4194304.0 19 ------- SRM_DATA} + -t 3.90853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 37 -a 0 -x {0.1 4194304.0 19 ------- SRM_DATA} - -t 3.90853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 37 -a 0 -x {0.1 4194304.0 19 ------- SRM_DATA} h -t 3.90853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 37 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.91158 -s 3 -d 2 -p SRM -e 116 -c 6 -i 38 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} + -t 3.91158 -s 2 -d 1 -p SRM -e 116 -c 6 -i 38 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} - -t 3.91158 -s 2 -d 1 -p SRM -e 116 -c 6 -i 38 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} h -t 3.91158 -s 2 -d 1 -p SRM -e 116 -c 6 -i 38 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} r -t 3.91158 -s 3 -d 4 -p SRM -e 116 -c 6 -i 38 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} r -t 3.91427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 39 -a 0 -x {0.1 4194304.0 20 ------- SRM_DATA} + -t 3.91427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 39 -a 0 -x {0.1 4194304.0 20 ------- SRM_DATA} - -t 3.91427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 39 -a 0 -x {0.1 4194304.0 20 ------- SRM_DATA} h -t 3.91427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 39 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.91707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 34 -a 0 -x {0.1 4194304.0 18 ------- SRM_DATA} r -t 3.91707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 34 -a 0 -x {0.1 4194304.0 18 ------- SRM_DATA} r -t 3.91808 -s 3 -d 4 -p SRM -e 116 -c 1 -i 36 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} r -t 3.91808 -s 3 -d 5 -p SRM -e 116 -c 1 -i 36 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} + -t 3.92 -s 0 -d 1 -p cbr -e 800 -c 0 -i 40 -a 0 -x {0.1 4194304.0 21 ------- SRM_DATA} - -t 3.92 -s 0 -d 1 -p cbr -e 800 -c 0 -i 40 -a 0 -x {0.1 4194304.0 21 ------- SRM_DATA} h -t 3.92 -s 0 -d 1 -p cbr -e 800 -c 0 -i 40 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.9222 -s 2 -d 1 -p SRM -e 116 -c 6 -i 38 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} + -t 3.9222 -s 1 -d 0 -p SRM -e 116 -c 6 -i 38 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} - -t 3.9222 -s 1 -d 0 -p SRM -e 116 -c 6 -i 38 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} h -t 3.9222 -s 1 -d 0 -p SRM -e 116 -c 6 -i 38 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} r -t 3.9228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 37 -a 0 -x {0.1 4194304.0 19 ------- SRM_DATA} + -t 3.9228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 37 -a 0 -x {0.1 4194304.0 19 ------- SRM_DATA} - -t 3.9228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 37 -a 0 -x {0.1 4194304.0 19 ------- SRM_DATA} h -t 3.9228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 37 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 3.9228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 37 -a 0 -x {0.1 4194304.0 19 ------- SRM_DATA} - -t 3.9228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 37 -a 0 -x {0.1 4194304.0 19 ------- SRM_DATA} h -t 3.9228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 37 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.92853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 39 -a 0 -x {0.1 4194304.0 20 ------- SRM_DATA} + -t 3.92853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 39 -a 0 -x {0.1 4194304.0 20 ------- SRM_DATA} - -t 3.92853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 39 -a 0 -x {0.1 4194304.0 20 ------- SRM_DATA} h -t 3.92853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 39 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.93282 -s 1 -d 0 -p SRM -e 116 -c 6 -i 38 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} r -t 3.93427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 40 -a 0 -x {0.1 4194304.0 21 ------- SRM_DATA} + -t 3.93427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 40 -a 0 -x {0.1 4194304.0 21 ------- SRM_DATA} - -t 3.93427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 40 -a 0 -x {0.1 4194304.0 21 ------- SRM_DATA} h -t 3.93427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 40 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.93707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 37 -a 0 -x {0.1 4194304.0 19 ------- SRM_DATA} r -t 3.93707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 37 -a 0 -x {0.1 4194304.0 19 ------- SRM_DATA} + -t 3.94 -s 0 -d 1 -p cbr -e 800 -c 0 -i 41 -a 0 -x {0.1 4194304.0 22 ------- SRM_DATA} - -t 3.94 -s 0 -d 1 -p cbr -e 800 -c 0 -i 41 -a 0 -x {0.1 4194304.0 22 ------- SRM_DATA} h -t 3.94 -s 0 -d 1 -p cbr -e 800 -c 0 -i 41 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.9428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 39 -a 0 -x {0.1 4194304.0 20 ------- SRM_DATA} + -t 3.9428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 39 -a 0 -x {0.1 4194304.0 20 ------- SRM_DATA} - -t 3.9428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 39 -a 0 -x {0.1 4194304.0 20 ------- SRM_DATA} h -t 3.9428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 39 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 3.9428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 39 -a 0 -x {0.1 4194304.0 20 ------- SRM_DATA} - -t 3.9428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 39 -a 0 -x {0.1 4194304.0 20 ------- SRM_DATA} h -t 3.9428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 39 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.94853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 40 -a 0 -x {0.1 4194304.0 21 ------- SRM_DATA} + -t 3.94853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 40 -a 0 -x {0.1 4194304.0 21 ------- SRM_DATA} - -t 3.94853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 40 -a 0 -x {0.1 4194304.0 21 ------- SRM_DATA} h -t 3.94853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 40 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.95427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 41 -a 0 -x {0.1 4194304.0 22 ------- SRM_DATA} + -t 3.95427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 41 -a 0 -x {0.1 4194304.0 22 ------- SRM_DATA} - -t 3.95427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 41 -a 0 -x {0.1 4194304.0 22 ------- SRM_DATA} h -t 3.95427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 41 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.95707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 39 -a 0 -x {0.1 4194304.0 20 ------- SRM_DATA} r -t 3.95707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 39 -a 0 -x {0.1 4194304.0 20 ------- SRM_DATA} + -t 3.96 -s 0 -d 1 -p cbr -e 800 -c 0 -i 42 -a 0 -x {0.1 4194304.0 23 ------- SRM_DATA} - -t 3.96 -s 0 -d 1 -p cbr -e 800 -c 0 -i 42 -a 0 -x {0.1 4194304.0 23 ------- SRM_DATA} h -t 3.96 -s 0 -d 1 -p cbr -e 800 -c 0 -i 42 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.9628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 40 -a 0 -x {0.1 4194304.0 21 ------- SRM_DATA} + -t 3.9628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 40 -a 0 -x {0.1 4194304.0 21 ------- SRM_DATA} - -t 3.9628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 40 -a 0 -x {0.1 4194304.0 21 ------- SRM_DATA} h -t 3.9628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 40 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 3.9628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 40 -a 0 -x {0.1 4194304.0 21 ------- SRM_DATA} - -t 3.9628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 40 -a 0 -x {0.1 4194304.0 21 ------- SRM_DATA} h -t 3.9628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 40 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.96853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 41 -a 0 -x {0.1 4194304.0 22 ------- SRM_DATA} + -t 3.96853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 41 -a 0 -x {0.1 4194304.0 22 ------- SRM_DATA} - -t 3.96853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 41 -a 0 -x {0.1 4194304.0 22 ------- SRM_DATA} h -t 3.96853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 41 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.97427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 42 -a 0 -x {0.1 4194304.0 23 ------- SRM_DATA} + -t 3.97427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 42 -a 0 -x {0.1 4194304.0 23 ------- SRM_DATA} - -t 3.97427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 42 -a 0 -x {0.1 4194304.0 23 ------- SRM_DATA} h -t 3.97427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 42 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.97707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 40 -a 0 -x {0.1 4194304.0 21 ------- SRM_DATA} r -t 3.97707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 40 -a 0 -x {0.1 4194304.0 21 ------- SRM_DATA} + -t 3.98 -s 0 -d 1 -p cbr -e 800 -c 0 -i 43 -a 0 -x {0.1 4194304.0 24 ------- SRM_DATA} - -t 3.98 -s 0 -d 1 -p cbr -e 800 -c 0 -i 43 -a 0 -x {0.1 4194304.0 24 ------- SRM_DATA} h -t 3.98 -s 0 -d 1 -p cbr -e 800 -c 0 -i 43 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 3.98021 -s 3 -d 2 -p SRM -e 116 -c 4 -i 44 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} - -t 3.98021 -s 3 -d 2 -p SRM -e 116 -c 4 -i 44 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} h -t 3.98021 -s 3 -d 2 -p SRM -e 116 -c 4 -i 44 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} + -t 3.98021 -s 3 -d 4 -p SRM -e 116 -c 4 -i 44 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} - -t 3.98021 -s 3 -d 4 -p SRM -e 116 -c 4 -i 44 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} h -t 3.98021 -s 3 -d 4 -p SRM -e 116 -c 4 -i 44 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} + -t 3.98021 -s 3 -d 5 -p SRM -e 116 -c 4 -i 44 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} - -t 3.98021 -s 3 -d 5 -p SRM -e 116 -c 4 -i 44 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} h -t 3.98021 -s 3 -d 5 -p SRM -e 116 -c 4 -i 44 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} r -t 3.9828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 41 -a 0 -x {0.1 4194304.0 22 ------- SRM_DATA} + -t 3.9828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 41 -a 0 -x {0.1 4194304.0 22 ------- SRM_DATA} - -t 3.9828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 41 -a 0 -x {0.1 4194304.0 22 ------- SRM_DATA} h -t 3.9828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 41 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 3.9828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 41 -a 0 -x {0.1 4194304.0 22 ------- SRM_DATA} - -t 3.9828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 41 -a 0 -x {0.1 4194304.0 22 ------- SRM_DATA} h -t 3.9828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 41 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.98853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 42 -a 0 -x {0.1 4194304.0 23 ------- SRM_DATA} + -t 3.98853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 42 -a 0 -x {0.1 4194304.0 23 ------- SRM_DATA} - -t 3.98853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 42 -a 0 -x {0.1 4194304.0 23 ------- SRM_DATA} h -t 3.98853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 42 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 3.98919 -s 4 -d 3 -p SRM -e 116 -c 5 -i 45 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} - -t 3.98919 -s 4 -d 3 -p SRM -e 116 -c 5 -i 45 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} h -t 3.98919 -s 4 -d 3 -p SRM -e 116 -c 5 -i 45 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} r -t 3.99083 -s 3 -d 2 -p SRM -e 116 -c 4 -i 44 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} + -t 3.99083 -s 2 -d 1 -p SRM -e 116 -c 4 -i 44 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} - -t 3.99083 -s 2 -d 1 -p SRM -e 116 -c 4 -i 44 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} h -t 3.99083 -s 2 -d 1 -p SRM -e 116 -c 4 -i 44 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} r -t 3.99083 -s 3 -d 4 -p SRM -e 116 -c 4 -i 44 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} r -t 3.99083 -s 3 -d 5 -p SRM -e 116 -c 4 -i 44 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} r -t 3.99427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 43 -a 0 -x {0.1 4194304.0 24 ------- SRM_DATA} + -t 3.99427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 43 -a 0 -x {0.1 4194304.0 24 ------- SRM_DATA} - -t 3.99427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 43 -a 0 -x {0.1 4194304.0 24 ------- SRM_DATA} h -t 3.99427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 43 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 3.99707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 41 -a 0 -x {0.1 4194304.0 22 ------- SRM_DATA} r -t 3.99707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 41 -a 0 -x {0.1 4194304.0 22 ------- SRM_DATA} r -t 3.99981 -s 4 -d 3 -p SRM -e 116 -c 5 -i 45 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} + -t 3.99981 -s 3 -d 2 -p SRM -e 116 -c 5 -i 45 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} - -t 3.99981 -s 3 -d 2 -p SRM -e 116 -c 5 -i 45 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} h -t 3.99981 -s 3 -d 2 -p SRM -e 116 -c 5 -i 45 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} + -t 3.99981 -s 3 -d 5 -p SRM -e 116 -c 5 -i 45 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} - -t 3.99981 -s 3 -d 5 -p SRM -e 116 -c 5 -i 45 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} h -t 3.99981 -s 3 -d 5 -p SRM -e 116 -c 5 -i 45 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} n -t 4 -s 0 -S DLABEL -l def -L abc m -t 4 -s 0 -n m1 -c blue -h circle v -t 4 sim_annotation 4 3 node 0 added one mark + -t 4 -s 0 -d 1 -p cbr -e 800 -c 0 -i 46 -a 0 -x {0.1 4194304.0 25 ------- SRM_DATA} - -t 4 -s 0 -d 1 -p cbr -e 800 -c 0 -i 46 -a 0 -x {0.1 4194304.0 25 ------- SRM_DATA} h -t 4 -s 0 -d 1 -p cbr -e 800 -c 0 -i 46 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.00145 -s 2 -d 1 -p SRM -e 116 -c 4 -i 44 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} + -t 4.00145 -s 1 -d 0 -p SRM -e 116 -c 4 -i 44 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} - -t 4.00145 -s 1 -d 0 -p SRM -e 116 -c 4 -i 44 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} h -t 4.00145 -s 1 -d 0 -p SRM -e 116 -c 4 -i 44 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} r -t 4.0028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 42 -a 0 -x {0.1 4194304.0 23 ------- SRM_DATA} + -t 4.0028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 42 -a 0 -x {0.1 4194304.0 23 ------- SRM_DATA} - -t 4.0028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 42 -a 0 -x {0.1 4194304.0 23 ------- SRM_DATA} h -t 4.0028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 42 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.0028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 42 -a 0 -x {0.1 4194304.0 23 ------- SRM_DATA} - -t 4.0028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 42 -a 0 -x {0.1 4194304.0 23 ------- SRM_DATA} h -t 4.0028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 42 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.00853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 43 -a 0 -x {0.1 4194304.0 24 ------- SRM_DATA} + -t 4.00853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 43 -a 0 -x {0.1 4194304.0 24 ------- SRM_DATA} - -t 4.00853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 43 -a 0 -x {0.1 4194304.0 24 ------- SRM_DATA} h -t 4.00853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 43 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.01043 -s 3 -d 2 -p SRM -e 116 -c 5 -i 45 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} + -t 4.01043 -s 2 -d 1 -p SRM -e 116 -c 5 -i 45 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} - -t 4.01043 -s 2 -d 1 -p SRM -e 116 -c 5 -i 45 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} h -t 4.01043 -s 2 -d 1 -p SRM -e 116 -c 5 -i 45 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} r -t 4.01043 -s 3 -d 5 -p SRM -e 116 -c 5 -i 45 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} r -t 4.01206 -s 1 -d 0 -p SRM -e 116 -c 4 -i 44 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} r -t 4.01427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 46 -a 0 -x {0.1 4194304.0 25 ------- SRM_DATA} + -t 4.01427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 46 -a 0 -x {0.1 4194304.0 25 ------- SRM_DATA} - -t 4.01427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 46 -a 0 -x {0.1 4194304.0 25 ------- SRM_DATA} h -t 4.01427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 46 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.01707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 42 -a 0 -x {0.1 4194304.0 23 ------- SRM_DATA} r -t 4.01707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 42 -a 0 -x {0.1 4194304.0 23 ------- SRM_DATA} + -t 4.02 -s 0 -d 1 -p cbr -e 800 -c 0 -i 47 -a 0 -x {0.1 4194304.0 26 ------- SRM_DATA} - -t 4.02 -s 0 -d 1 -p cbr -e 800 -c 0 -i 47 -a 0 -x {0.1 4194304.0 26 ------- SRM_DATA} h -t 4.02 -s 0 -d 1 -p cbr -e 800 -c 0 -i 47 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.02105 -s 2 -d 1 -p SRM -e 116 -c 5 -i 45 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} + -t 4.02105 -s 1 -d 0 -p SRM -e 116 -c 5 -i 45 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} - -t 4.02105 -s 1 -d 0 -p SRM -e 116 -c 5 -i 45 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} h -t 4.02105 -s 1 -d 0 -p SRM -e 116 -c 5 -i 45 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} r -t 4.0228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 43 -a 0 -x {0.1 4194304.0 24 ------- SRM_DATA} + -t 4.0228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 43 -a 0 -x {0.1 4194304.0 24 ------- SRM_DATA} - -t 4.0228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 43 -a 0 -x {0.1 4194304.0 24 ------- SRM_DATA} h -t 4.0228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 43 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.0228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 43 -a 0 -x {0.1 4194304.0 24 ------- SRM_DATA} - -t 4.0228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 43 -a 0 -x {0.1 4194304.0 24 ------- SRM_DATA} h -t 4.0228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 43 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.02853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 46 -a 0 -x {0.1 4194304.0 25 ------- SRM_DATA} + -t 4.02853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 46 -a 0 -x {0.1 4194304.0 25 ------- SRM_DATA} - -t 4.02853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 46 -a 0 -x {0.1 4194304.0 25 ------- SRM_DATA} h -t 4.02853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 46 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.03167 -s 1 -d 0 -p SRM -e 116 -c 5 -i 45 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} r -t 4.03427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 47 -a 0 -x {0.1 4194304.0 26 ------- SRM_DATA} + -t 4.03427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 47 -a 0 -x {0.1 4194304.0 26 ------- SRM_DATA} - -t 4.03427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 47 -a 0 -x {0.1 4194304.0 26 ------- SRM_DATA} h -t 4.03427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 47 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.03707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 43 -a 0 -x {0.1 4194304.0 24 ------- SRM_DATA} r -t 4.03707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 43 -a 0 -x {0.1 4194304.0 24 ------- SRM_DATA} + -t 4.04 -s 0 -d 1 -p cbr -e 800 -c 0 -i 48 -a 0 -x {0.1 4194304.0 27 ------- SRM_DATA} - -t 4.04 -s 0 -d 1 -p cbr -e 800 -c 0 -i 48 -a 0 -x {0.1 4194304.0 27 ------- SRM_DATA} h -t 4.04 -s 0 -d 1 -p cbr -e 800 -c 0 -i 48 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.0428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 46 -a 0 -x {0.1 4194304.0 25 ------- SRM_DATA} + -t 4.0428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 46 -a 0 -x {0.1 4194304.0 25 ------- SRM_DATA} - -t 4.0428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 46 -a 0 -x {0.1 4194304.0 25 ------- SRM_DATA} h -t 4.0428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 46 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.0428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 46 -a 0 -x {0.1 4194304.0 25 ------- SRM_DATA} - -t 4.0428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 46 -a 0 -x {0.1 4194304.0 25 ------- SRM_DATA} h -t 4.0428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 46 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.04853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 47 -a 0 -x {0.1 4194304.0 26 ------- SRM_DATA} + -t 4.04853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 47 -a 0 -x {0.1 4194304.0 26 ------- SRM_DATA} - -t 4.04853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 47 -a 0 -x {0.1 4194304.0 26 ------- SRM_DATA} h -t 4.04853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 47 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.05427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 48 -a 0 -x {0.1 4194304.0 27 ------- SRM_DATA} + -t 4.05427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 48 -a 0 -x {0.1 4194304.0 27 ------- SRM_DATA} - -t 4.05427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 48 -a 0 -x {0.1 4194304.0 27 ------- SRM_DATA} h -t 4.05427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 48 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.05707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 46 -a 0 -x {0.1 4194304.0 25 ------- SRM_DATA} r -t 4.05707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 46 -a 0 -x {0.1 4194304.0 25 ------- SRM_DATA} + -t 4.06 -s 0 -d 1 -p cbr -e 800 -c 0 -i 49 -a 0 -x {0.1 4194304.0 28 ------- SRM_DATA} - -t 4.06 -s 0 -d 1 -p cbr -e 800 -c 0 -i 49 -a 0 -x {0.1 4194304.0 28 ------- SRM_DATA} h -t 4.06 -s 0 -d 1 -p cbr -e 800 -c 0 -i 49 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.0628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 47 -a 0 -x {0.1 4194304.0 26 ------- SRM_DATA} + -t 4.0628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 47 -a 0 -x {0.1 4194304.0 26 ------- SRM_DATA} - -t 4.0628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 47 -a 0 -x {0.1 4194304.0 26 ------- SRM_DATA} h -t 4.0628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 47 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.0628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 47 -a 0 -x {0.1 4194304.0 26 ------- SRM_DATA} - -t 4.0628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 47 -a 0 -x {0.1 4194304.0 26 ------- SRM_DATA} h -t 4.0628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 47 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.06853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 48 -a 0 -x {0.1 4194304.0 27 ------- SRM_DATA} + -t 4.06853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 48 -a 0 -x {0.1 4194304.0 27 ------- SRM_DATA} - -t 4.06853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 48 -a 0 -x {0.1 4194304.0 27 ------- SRM_DATA} h -t 4.06853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 48 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.07427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 49 -a 0 -x {0.1 4194304.0 28 ------- SRM_DATA} + -t 4.07427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 49 -a 0 -x {0.1 4194304.0 28 ------- SRM_DATA} - -t 4.07427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 49 -a 0 -x {0.1 4194304.0 28 ------- SRM_DATA} h -t 4.07427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 49 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.07707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 47 -a 0 -x {0.1 4194304.0 26 ------- SRM_DATA} r -t 4.07707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 47 -a 0 -x {0.1 4194304.0 26 ------- SRM_DATA} + -t 4.08 -s 0 -d 1 -p cbr -e 800 -c 0 -i 50 -a 0 -x {0.1 4194304.0 29 ------- SRM_DATA} - -t 4.08 -s 0 -d 1 -p cbr -e 800 -c 0 -i 50 -a 0 -x {0.1 4194304.0 29 ------- SRM_DATA} h -t 4.08 -s 0 -d 1 -p cbr -e 800 -c 0 -i 50 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.0828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 48 -a 0 -x {0.1 4194304.0 27 ------- SRM_DATA} + -t 4.0828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 48 -a 0 -x {0.1 4194304.0 27 ------- SRM_DATA} - -t 4.0828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 48 -a 0 -x {0.1 4194304.0 27 ------- SRM_DATA} h -t 4.0828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 48 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.0828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 48 -a 0 -x {0.1 4194304.0 27 ------- SRM_DATA} - -t 4.0828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 48 -a 0 -x {0.1 4194304.0 27 ------- SRM_DATA} h -t 4.0828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 48 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.08853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 49 -a 0 -x {0.1 4194304.0 28 ------- SRM_DATA} + -t 4.08853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 49 -a 0 -x {0.1 4194304.0 28 ------- SRM_DATA} - -t 4.08853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 49 -a 0 -x {0.1 4194304.0 28 ------- SRM_DATA} h -t 4.08853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 49 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.08923 -s 2 -d 1 -p SRM -e 116 -c 3 -i 51 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} - -t 4.08923 -s 2 -d 1 -p SRM -e 116 -c 3 -i 51 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} h -t 4.08923 -s 2 -d 1 -p SRM -e 116 -c 3 -i 51 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} + -t 4.08923 -s 2 -d 3 -p SRM -e 116 -c 3 -i 51 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} - -t 4.0928 -s 2 -d 3 -p SRM -e 116 -c 3 -i 51 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} h -t 4.0928 -s 2 -d 3 -p SRM -e 116 -c 3 -i 51 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} r -t 4.09427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 50 -a 0 -x {0.1 4194304.0 29 ------- SRM_DATA} + -t 4.09427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 50 -a 0 -x {0.1 4194304.0 29 ------- SRM_DATA} - -t 4.09427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 50 -a 0 -x {0.1 4194304.0 29 ------- SRM_DATA} h -t 4.09427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 50 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.09707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 48 -a 0 -x {0.1 4194304.0 27 ------- SRM_DATA} r -t 4.09707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 48 -a 0 -x {0.1 4194304.0 27 ------- SRM_DATA} r -t 4.09985 -s 2 -d 1 -p SRM -e 116 -c 3 -i 51 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} + -t 4.09985 -s 1 -d 0 -p SRM -e 116 -c 3 -i 51 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} - -t 4.09985 -s 1 -d 0 -p SRM -e 116 -c 3 -i 51 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} h -t 4.09985 -s 1 -d 0 -p SRM -e 116 -c 3 -i 51 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} + -t 4.1 -s 0 -d 1 -p cbr -e 800 -c 0 -i 52 -a 0 -x {0.1 4194304.0 30 ------- SRM_DATA} - -t 4.1 -s 0 -d 1 -p cbr -e 800 -c 0 -i 52 -a 0 -x {0.1 4194304.0 30 ------- SRM_DATA} h -t 4.1 -s 0 -d 1 -p cbr -e 800 -c 0 -i 52 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.1028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 49 -a 0 -x {0.1 4194304.0 28 ------- SRM_DATA} + -t 4.1028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 49 -a 0 -x {0.1 4194304.0 28 ------- SRM_DATA} - -t 4.1028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 49 -a 0 -x {0.1 4194304.0 28 ------- SRM_DATA} h -t 4.1028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 49 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.1028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 49 -a 0 -x {0.1 4194304.0 28 ------- SRM_DATA} - -t 4.1028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 49 -a 0 -x {0.1 4194304.0 28 ------- SRM_DATA} h -t 4.1028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 49 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.10342 -s 2 -d 3 -p SRM -e 116 -c 3 -i 51 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} + -t 4.10342 -s 3 -d 4 -p SRM -e 116 -c 3 -i 51 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} + -t 4.10342 -s 3 -d 5 -p SRM -e 116 -c 3 -i 51 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} - -t 4.10707 -s 3 -d 4 -p SRM -e 116 -c 3 -i 51 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} h -t 4.10707 -s 3 -d 4 -p SRM -e 116 -c 3 -i 51 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} - -t 4.10707 -s 3 -d 5 -p SRM -e 116 -c 3 -i 51 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} h -t 4.10707 -s 3 -d 5 -p SRM -e 116 -c 3 -i 51 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} r -t 4.10853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 50 -a 0 -x {0.1 4194304.0 29 ------- SRM_DATA} + -t 4.10853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 50 -a 0 -x {0.1 4194304.0 29 ------- SRM_DATA} - -t 4.10853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 50 -a 0 -x {0.1 4194304.0 29 ------- SRM_DATA} h -t 4.10853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 50 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.11047 -s 1 -d 0 -p SRM -e 116 -c 3 -i 51 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} r -t 4.11427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 52 -a 0 -x {0.1 4194304.0 30 ------- SRM_DATA} + -t 4.11427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 52 -a 0 -x {0.1 4194304.0 30 ------- SRM_DATA} - -t 4.11427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 52 -a 0 -x {0.1 4194304.0 30 ------- SRM_DATA} h -t 4.11427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 52 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.11707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 49 -a 0 -x {0.1 4194304.0 28 ------- SRM_DATA} r -t 4.11707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 49 -a 0 -x {0.1 4194304.0 28 ------- SRM_DATA} r -t 4.11769 -s 3 -d 4 -p SRM -e 116 -c 3 -i 51 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} r -t 4.11769 -s 3 -d 5 -p SRM -e 116 -c 3 -i 51 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} + -t 4.12 -s 0 -d 1 -p cbr -e 800 -c 0 -i 53 -a 0 -x {0.1 4194304.0 31 ------- SRM_DATA} - -t 4.12 -s 0 -d 1 -p cbr -e 800 -c 0 -i 53 -a 0 -x {0.1 4194304.0 31 ------- SRM_DATA} h -t 4.12 -s 0 -d 1 -p cbr -e 800 -c 0 -i 53 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.1228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 50 -a 0 -x {0.1 4194304.0 29 ------- SRM_DATA} + -t 4.1228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 50 -a 0 -x {0.1 4194304.0 29 ------- SRM_DATA} - -t 4.1228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 50 -a 0 -x {0.1 4194304.0 29 ------- SRM_DATA} h -t 4.1228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 50 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.1228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 50 -a 0 -x {0.1 4194304.0 29 ------- SRM_DATA} - -t 4.1228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 50 -a 0 -x {0.1 4194304.0 29 ------- SRM_DATA} h -t 4.1228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 50 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.12853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 52 -a 0 -x {0.1 4194304.0 30 ------- SRM_DATA} + -t 4.12853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 52 -a 0 -x {0.1 4194304.0 30 ------- SRM_DATA} - -t 4.12853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 52 -a 0 -x {0.1 4194304.0 30 ------- SRM_DATA} h -t 4.12853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 52 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.13427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 53 -a 0 -x {0.1 4194304.0 31 ------- SRM_DATA} + -t 4.13427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 53 -a 0 -x {0.1 4194304.0 31 ------- SRM_DATA} - -t 4.13427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 53 -a 0 -x {0.1 4194304.0 31 ------- SRM_DATA} h -t 4.13427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 53 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.13707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 50 -a 0 -x {0.1 4194304.0 29 ------- SRM_DATA} r -t 4.13707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 50 -a 0 -x {0.1 4194304.0 29 ------- SRM_DATA} + -t 4.14 -s 0 -d 1 -p cbr -e 800 -c 0 -i 54 -a 0 -x {0.1 4194304.0 32 ------- SRM_DATA} - -t 4.14 -s 0 -d 1 -p cbr -e 800 -c 0 -i 54 -a 0 -x {0.1 4194304.0 32 ------- SRM_DATA} h -t 4.14 -s 0 -d 1 -p cbr -e 800 -c 0 -i 54 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.1428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 52 -a 0 -x {0.1 4194304.0 30 ------- SRM_DATA} + -t 4.1428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 52 -a 0 -x {0.1 4194304.0 30 ------- SRM_DATA} - -t 4.1428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 52 -a 0 -x {0.1 4194304.0 30 ------- SRM_DATA} h -t 4.1428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 52 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.1428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 52 -a 0 -x {0.1 4194304.0 30 ------- SRM_DATA} - -t 4.1428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 52 -a 0 -x {0.1 4194304.0 30 ------- SRM_DATA} h -t 4.1428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 52 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.14853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 53 -a 0 -x {0.1 4194304.0 31 ------- SRM_DATA} + -t 4.14853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 53 -a 0 -x {0.1 4194304.0 31 ------- SRM_DATA} - -t 4.14853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 53 -a 0 -x {0.1 4194304.0 31 ------- SRM_DATA} h -t 4.14853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 53 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.15427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 54 -a 0 -x {0.1 4194304.0 32 ------- SRM_DATA} + -t 4.15427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 54 -a 0 -x {0.1 4194304.0 32 ------- SRM_DATA} - -t 4.15427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 54 -a 0 -x {0.1 4194304.0 32 ------- SRM_DATA} h -t 4.15427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 54 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.15707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 52 -a 0 -x {0.1 4194304.0 30 ------- SRM_DATA} r -t 4.15707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 52 -a 0 -x {0.1 4194304.0 30 ------- SRM_DATA} + -t 4.16 -s 0 -d 1 -p cbr -e 800 -c 0 -i 55 -a 0 -x {0.1 4194304.0 33 ------- SRM_DATA} - -t 4.16 -s 0 -d 1 -p cbr -e 800 -c 0 -i 55 -a 0 -x {0.1 4194304.0 33 ------- SRM_DATA} h -t 4.16 -s 0 -d 1 -p cbr -e 800 -c 0 -i 55 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.1628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 53 -a 0 -x {0.1 4194304.0 31 ------- SRM_DATA} + -t 4.1628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 53 -a 0 -x {0.1 4194304.0 31 ------- SRM_DATA} - -t 4.1628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 53 -a 0 -x {0.1 4194304.0 31 ------- SRM_DATA} h -t 4.1628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 53 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.1628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 53 -a 0 -x {0.1 4194304.0 31 ------- SRM_DATA} - -t 4.1628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 53 -a 0 -x {0.1 4194304.0 31 ------- SRM_DATA} h -t 4.1628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 53 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.16853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 54 -a 0 -x {0.1 4194304.0 32 ------- SRM_DATA} + -t 4.16853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 54 -a 0 -x {0.1 4194304.0 32 ------- SRM_DATA} - -t 4.16853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 54 -a 0 -x {0.1 4194304.0 32 ------- SRM_DATA} h -t 4.16853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 54 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.17427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 55 -a 0 -x {0.1 4194304.0 33 ------- SRM_DATA} + -t 4.17427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 55 -a 0 -x {0.1 4194304.0 33 ------- SRM_DATA} - -t 4.17427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 55 -a 0 -x {0.1 4194304.0 33 ------- SRM_DATA} h -t 4.17427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 55 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.17707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 53 -a 0 -x {0.1 4194304.0 31 ------- SRM_DATA} r -t 4.17707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 53 -a 0 -x {0.1 4194304.0 31 ------- SRM_DATA} + -t 4.18 -s 0 -d 1 -p cbr -e 800 -c 0 -i 56 -a 0 -x {0.1 4194304.0 34 ------- SRM_DATA} - -t 4.18 -s 0 -d 1 -p cbr -e 800 -c 0 -i 56 -a 0 -x {0.1 4194304.0 34 ------- SRM_DATA} h -t 4.18 -s 0 -d 1 -p cbr -e 800 -c 0 -i 56 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.1828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 54 -a 0 -x {0.1 4194304.0 32 ------- SRM_DATA} + -t 4.1828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 54 -a 0 -x {0.1 4194304.0 32 ------- SRM_DATA} - -t 4.1828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 54 -a 0 -x {0.1 4194304.0 32 ------- SRM_DATA} h -t 4.1828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 54 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.1828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 54 -a 0 -x {0.1 4194304.0 32 ------- SRM_DATA} - -t 4.1828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 54 -a 0 -x {0.1 4194304.0 32 ------- SRM_DATA} h -t 4.1828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 54 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.18853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 55 -a 0 -x {0.1 4194304.0 33 ------- SRM_DATA} + -t 4.18853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 55 -a 0 -x {0.1 4194304.0 33 ------- SRM_DATA} - -t 4.18853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 55 -a 0 -x {0.1 4194304.0 33 ------- SRM_DATA} h -t 4.18853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 55 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.19427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 56 -a 0 -x {0.1 4194304.0 34 ------- SRM_DATA} + -t 4.19427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 56 -a 0 -x {0.1 4194304.0 34 ------- SRM_DATA} - -t 4.19427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 56 -a 0 -x {0.1 4194304.0 34 ------- SRM_DATA} h -t 4.19427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 56 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.19707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 54 -a 0 -x {0.1 4194304.0 32 ------- SRM_DATA} r -t 4.19707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 54 -a 0 -x {0.1 4194304.0 32 ------- SRM_DATA} + -t 4.2 -s 0 -d 1 -p cbr -e 800 -c 0 -i 57 -a 0 -x {0.1 4194304.0 35 ------- SRM_DATA} - -t 4.2 -s 0 -d 1 -p cbr -e 800 -c 0 -i 57 -a 0 -x {0.1 4194304.0 35 ------- SRM_DATA} h -t 4.2 -s 0 -d 1 -p cbr -e 800 -c 0 -i 57 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.2028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 55 -a 0 -x {0.1 4194304.0 33 ------- SRM_DATA} + -t 4.2028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 55 -a 0 -x {0.1 4194304.0 33 ------- SRM_DATA} - -t 4.2028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 55 -a 0 -x {0.1 4194304.0 33 ------- SRM_DATA} h -t 4.2028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 55 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.2028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 55 -a 0 -x {0.1 4194304.0 33 ------- SRM_DATA} - -t 4.2028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 55 -a 0 -x {0.1 4194304.0 33 ------- SRM_DATA} h -t 4.2028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 55 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.20853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 56 -a 0 -x {0.1 4194304.0 34 ------- SRM_DATA} + -t 4.20853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 56 -a 0 -x {0.1 4194304.0 34 ------- SRM_DATA} - -t 4.20853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 56 -a 0 -x {0.1 4194304.0 34 ------- SRM_DATA} h -t 4.20853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 56 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.21427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 57 -a 0 -x {0.1 4194304.0 35 ------- SRM_DATA} + -t 4.21427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 57 -a 0 -x {0.1 4194304.0 35 ------- SRM_DATA} - -t 4.21427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 57 -a 0 -x {0.1 4194304.0 35 ------- SRM_DATA} h -t 4.21427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 57 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.21707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 55 -a 0 -x {0.1 4194304.0 33 ------- SRM_DATA} r -t 4.21707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 55 -a 0 -x {0.1 4194304.0 33 ------- SRM_DATA} + -t 4.22 -s 0 -d 1 -p cbr -e 800 -c 0 -i 58 -a 0 -x {0.1 4194304.0 36 ------- SRM_DATA} - -t 4.22 -s 0 -d 1 -p cbr -e 800 -c 0 -i 58 -a 0 -x {0.1 4194304.0 36 ------- SRM_DATA} h -t 4.22 -s 0 -d 1 -p cbr -e 800 -c 0 -i 58 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.2228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 56 -a 0 -x {0.1 4194304.0 34 ------- SRM_DATA} + -t 4.2228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 56 -a 0 -x {0.1 4194304.0 34 ------- SRM_DATA} - -t 4.2228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 56 -a 0 -x {0.1 4194304.0 34 ------- SRM_DATA} h -t 4.2228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 56 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.2228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 56 -a 0 -x {0.1 4194304.0 34 ------- SRM_DATA} - -t 4.2228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 56 -a 0 -x {0.1 4194304.0 34 ------- SRM_DATA} h -t 4.2228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 56 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.22853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 57 -a 0 -x {0.1 4194304.0 35 ------- SRM_DATA} + -t 4.22853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 57 -a 0 -x {0.1 4194304.0 35 ------- SRM_DATA} - -t 4.22853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 57 -a 0 -x {0.1 4194304.0 35 ------- SRM_DATA} h -t 4.22853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 57 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.23427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 58 -a 0 -x {0.1 4194304.0 36 ------- SRM_DATA} + -t 4.23427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 58 -a 0 -x {0.1 4194304.0 36 ------- SRM_DATA} - -t 4.23427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 58 -a 0 -x {0.1 4194304.0 36 ------- SRM_DATA} h -t 4.23427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 58 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.23707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 56 -a 0 -x {0.1 4194304.0 34 ------- SRM_DATA} r -t 4.23707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 56 -a 0 -x {0.1 4194304.0 34 ------- SRM_DATA} + -t 4.24 -s 0 -d 1 -p cbr -e 800 -c 0 -i 59 -a 0 -x {0.1 4194304.0 37 ------- SRM_DATA} - -t 4.24 -s 0 -d 1 -p cbr -e 800 -c 0 -i 59 -a 0 -x {0.1 4194304.0 37 ------- SRM_DATA} h -t 4.24 -s 0 -d 1 -p cbr -e 800 -c 0 -i 59 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.2428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 57 -a 0 -x {0.1 4194304.0 35 ------- SRM_DATA} + -t 4.2428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 57 -a 0 -x {0.1 4194304.0 35 ------- SRM_DATA} - -t 4.2428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 57 -a 0 -x {0.1 4194304.0 35 ------- SRM_DATA} h -t 4.2428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 57 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.2428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 57 -a 0 -x {0.1 4194304.0 35 ------- SRM_DATA} - -t 4.2428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 57 -a 0 -x {0.1 4194304.0 35 ------- SRM_DATA} h -t 4.2428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 57 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.24853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 58 -a 0 -x {0.1 4194304.0 36 ------- SRM_DATA} + -t 4.24853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 58 -a 0 -x {0.1 4194304.0 36 ------- SRM_DATA} - -t 4.24853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 58 -a 0 -x {0.1 4194304.0 36 ------- SRM_DATA} h -t 4.24853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 58 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.25427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 59 -a 0 -x {0.1 4194304.0 37 ------- SRM_DATA} + -t 4.25427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 59 -a 0 -x {0.1 4194304.0 37 ------- SRM_DATA} - -t 4.25427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 59 -a 0 -x {0.1 4194304.0 37 ------- SRM_DATA} h -t 4.25427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 59 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.25707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 57 -a 0 -x {0.1 4194304.0 35 ------- SRM_DATA} r -t 4.25707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 57 -a 0 -x {0.1 4194304.0 35 ------- SRM_DATA} + -t 4.26 -s 0 -d 1 -p cbr -e 800 -c 0 -i 60 -a 0 -x {0.1 4194304.0 38 ------- SRM_DATA} - -t 4.26 -s 0 -d 1 -p cbr -e 800 -c 0 -i 60 -a 0 -x {0.1 4194304.0 38 ------- SRM_DATA} h -t 4.26 -s 0 -d 1 -p cbr -e 800 -c 0 -i 60 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.2628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 58 -a 0 -x {0.1 4194304.0 36 ------- SRM_DATA} + -t 4.2628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 58 -a 0 -x {0.1 4194304.0 36 ------- SRM_DATA} - -t 4.2628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 58 -a 0 -x {0.1 4194304.0 36 ------- SRM_DATA} h -t 4.2628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 58 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.2628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 58 -a 0 -x {0.1 4194304.0 36 ------- SRM_DATA} - -t 4.2628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 58 -a 0 -x {0.1 4194304.0 36 ------- SRM_DATA} h -t 4.2628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 58 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.26853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 59 -a 0 -x {0.1 4194304.0 37 ------- SRM_DATA} + -t 4.26853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 59 -a 0 -x {0.1 4194304.0 37 ------- SRM_DATA} - -t 4.26853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 59 -a 0 -x {0.1 4194304.0 37 ------- SRM_DATA} h -t 4.26853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 59 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.27427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 60 -a 0 -x {0.1 4194304.0 38 ------- SRM_DATA} + -t 4.27427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 60 -a 0 -x {0.1 4194304.0 38 ------- SRM_DATA} - -t 4.27427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 60 -a 0 -x {0.1 4194304.0 38 ------- SRM_DATA} h -t 4.27427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 60 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.27707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 58 -a 0 -x {0.1 4194304.0 36 ------- SRM_DATA} r -t 4.27707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 58 -a 0 -x {0.1 4194304.0 36 ------- SRM_DATA} + -t 4.28 -s 0 -d 1 -p cbr -e 800 -c 0 -i 61 -a 0 -x {0.1 4194304.0 39 ------- SRM_DATA} - -t 4.28 -s 0 -d 1 -p cbr -e 800 -c 0 -i 61 -a 0 -x {0.1 4194304.0 39 ------- SRM_DATA} h -t 4.28 -s 0 -d 1 -p cbr -e 800 -c 0 -i 61 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.2828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 59 -a 0 -x {0.1 4194304.0 37 ------- SRM_DATA} + -t 4.2828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 59 -a 0 -x {0.1 4194304.0 37 ------- SRM_DATA} - -t 4.2828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 59 -a 0 -x {0.1 4194304.0 37 ------- SRM_DATA} h -t 4.2828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 59 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.2828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 59 -a 0 -x {0.1 4194304.0 37 ------- SRM_DATA} - -t 4.2828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 59 -a 0 -x {0.1 4194304.0 37 ------- SRM_DATA} h -t 4.2828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 59 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.28853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 60 -a 0 -x {0.1 4194304.0 38 ------- SRM_DATA} + -t 4.28853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 60 -a 0 -x {0.1 4194304.0 38 ------- SRM_DATA} - -t 4.28853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 60 -a 0 -x {0.1 4194304.0 38 ------- SRM_DATA} h -t 4.28853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 60 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.29427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 61 -a 0 -x {0.1 4194304.0 39 ------- SRM_DATA} + -t 4.29427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 61 -a 0 -x {0.1 4194304.0 39 ------- SRM_DATA} - -t 4.29427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 61 -a 0 -x {0.1 4194304.0 39 ------- SRM_DATA} h -t 4.29427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 61 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.29707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 59 -a 0 -x {0.1 4194304.0 37 ------- SRM_DATA} r -t 4.29707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 59 -a 0 -x {0.1 4194304.0 37 ------- SRM_DATA} + -t 4.3 -s 0 -d 1 -p cbr -e 800 -c 0 -i 62 -a 0 -x {0.1 4194304.0 40 ------- SRM_DATA} - -t 4.3 -s 0 -d 1 -p cbr -e 800 -c 0 -i 62 -a 0 -x {0.1 4194304.0 40 ------- SRM_DATA} h -t 4.3 -s 0 -d 1 -p cbr -e 800 -c 0 -i 62 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.3028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 60 -a 0 -x {0.1 4194304.0 38 ------- SRM_DATA} + -t 4.3028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 60 -a 0 -x {0.1 4194304.0 38 ------- SRM_DATA} - -t 4.3028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 60 -a 0 -x {0.1 4194304.0 38 ------- SRM_DATA} h -t 4.3028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 60 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.3028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 60 -a 0 -x {0.1 4194304.0 38 ------- SRM_DATA} - -t 4.3028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 60 -a 0 -x {0.1 4194304.0 38 ------- SRM_DATA} h -t 4.3028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 60 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.30853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 61 -a 0 -x {0.1 4194304.0 39 ------- SRM_DATA} + -t 4.30853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 61 -a 0 -x {0.1 4194304.0 39 ------- SRM_DATA} - -t 4.30853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 61 -a 0 -x {0.1 4194304.0 39 ------- SRM_DATA} h -t 4.30853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 61 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.31427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 62 -a 0 -x {0.1 4194304.0 40 ------- SRM_DATA} + -t 4.31427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 62 -a 0 -x {0.1 4194304.0 40 ------- SRM_DATA} - -t 4.31427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 62 -a 0 -x {0.1 4194304.0 40 ------- SRM_DATA} h -t 4.31427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 62 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.31707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 60 -a 0 -x {0.1 4194304.0 38 ------- SRM_DATA} r -t 4.31707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 60 -a 0 -x {0.1 4194304.0 38 ------- SRM_DATA} + -t 4.32 -s 0 -d 1 -p cbr -e 800 -c 0 -i 63 -a 0 -x {0.1 4194304.0 41 ------- SRM_DATA} - -t 4.32 -s 0 -d 1 -p cbr -e 800 -c 0 -i 63 -a 0 -x {0.1 4194304.0 41 ------- SRM_DATA} h -t 4.32 -s 0 -d 1 -p cbr -e 800 -c 0 -i 63 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.3228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 61 -a 0 -x {0.1 4194304.0 39 ------- SRM_DATA} + -t 4.3228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 61 -a 0 -x {0.1 4194304.0 39 ------- SRM_DATA} - -t 4.3228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 61 -a 0 -x {0.1 4194304.0 39 ------- SRM_DATA} h -t 4.3228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 61 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.3228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 61 -a 0 -x {0.1 4194304.0 39 ------- SRM_DATA} - -t 4.3228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 61 -a 0 -x {0.1 4194304.0 39 ------- SRM_DATA} h -t 4.3228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 61 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.32853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 62 -a 0 -x {0.1 4194304.0 40 ------- SRM_DATA} + -t 4.32853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 62 -a 0 -x {0.1 4194304.0 40 ------- SRM_DATA} - -t 4.32853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 62 -a 0 -x {0.1 4194304.0 40 ------- SRM_DATA} h -t 4.32853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 62 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.33427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 63 -a 0 -x {0.1 4194304.0 41 ------- SRM_DATA} + -t 4.33427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 63 -a 0 -x {0.1 4194304.0 41 ------- SRM_DATA} - -t 4.33427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 63 -a 0 -x {0.1 4194304.0 41 ------- SRM_DATA} h -t 4.33427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 63 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.33707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 61 -a 0 -x {0.1 4194304.0 39 ------- SRM_DATA} r -t 4.33707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 61 -a 0 -x {0.1 4194304.0 39 ------- SRM_DATA} + -t 4.34 -s 0 -d 1 -p cbr -e 800 -c 0 -i 64 -a 0 -x {0.1 4194304.0 42 ------- SRM_DATA} - -t 4.34 -s 0 -d 1 -p cbr -e 800 -c 0 -i 64 -a 0 -x {0.1 4194304.0 42 ------- SRM_DATA} h -t 4.34 -s 0 -d 1 -p cbr -e 800 -c 0 -i 64 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.3428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 62 -a 0 -x {0.1 4194304.0 40 ------- SRM_DATA} + -t 4.3428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 62 -a 0 -x {0.1 4194304.0 40 ------- SRM_DATA} - -t 4.3428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 62 -a 0 -x {0.1 4194304.0 40 ------- SRM_DATA} h -t 4.3428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 62 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.3428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 62 -a 0 -x {0.1 4194304.0 40 ------- SRM_DATA} - -t 4.3428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 62 -a 0 -x {0.1 4194304.0 40 ------- SRM_DATA} h -t 4.3428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 62 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.34853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 63 -a 0 -x {0.1 4194304.0 41 ------- SRM_DATA} + -t 4.34853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 63 -a 0 -x {0.1 4194304.0 41 ------- SRM_DATA} - -t 4.34853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 63 -a 0 -x {0.1 4194304.0 41 ------- SRM_DATA} h -t 4.34853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 63 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.35427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 64 -a 0 -x {0.1 4194304.0 42 ------- SRM_DATA} + -t 4.35427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 64 -a 0 -x {0.1 4194304.0 42 ------- SRM_DATA} - -t 4.35427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 64 -a 0 -x {0.1 4194304.0 42 ------- SRM_DATA} h -t 4.35427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 64 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.35707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 62 -a 0 -x {0.1 4194304.0 40 ------- SRM_DATA} r -t 4.35707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 62 -a 0 -x {0.1 4194304.0 40 ------- SRM_DATA} + -t 4.36 -s 0 -d 1 -p cbr -e 800 -c 0 -i 65 -a 0 -x {0.1 4194304.0 43 ------- SRM_DATA} - -t 4.36 -s 0 -d 1 -p cbr -e 800 -c 0 -i 65 -a 0 -x {0.1 4194304.0 43 ------- SRM_DATA} h -t 4.36 -s 0 -d 1 -p cbr -e 800 -c 0 -i 65 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.3628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 63 -a 0 -x {0.1 4194304.0 41 ------- SRM_DATA} + -t 4.3628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 63 -a 0 -x {0.1 4194304.0 41 ------- SRM_DATA} - -t 4.3628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 63 -a 0 -x {0.1 4194304.0 41 ------- SRM_DATA} h -t 4.3628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 63 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.3628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 63 -a 0 -x {0.1 4194304.0 41 ------- SRM_DATA} - -t 4.3628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 63 -a 0 -x {0.1 4194304.0 41 ------- SRM_DATA} h -t 4.3628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 63 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.36853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 64 -a 0 -x {0.1 4194304.0 42 ------- SRM_DATA} + -t 4.36853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 64 -a 0 -x {0.1 4194304.0 42 ------- SRM_DATA} - -t 4.36853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 64 -a 0 -x {0.1 4194304.0 42 ------- SRM_DATA} h -t 4.36853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 64 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.37427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 65 -a 0 -x {0.1 4194304.0 43 ------- SRM_DATA} + -t 4.37427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 65 -a 0 -x {0.1 4194304.0 43 ------- SRM_DATA} - -t 4.37427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 65 -a 0 -x {0.1 4194304.0 43 ------- SRM_DATA} h -t 4.37427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 65 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.37707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 63 -a 0 -x {0.1 4194304.0 41 ------- SRM_DATA} r -t 4.37707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 63 -a 0 -x {0.1 4194304.0 41 ------- SRM_DATA} + -t 4.38 -s 0 -d 1 -p cbr -e 800 -c 0 -i 66 -a 0 -x {0.1 4194304.0 44 ------- SRM_DATA} - -t 4.38 -s 0 -d 1 -p cbr -e 800 -c 0 -i 66 -a 0 -x {0.1 4194304.0 44 ------- SRM_DATA} h -t 4.38 -s 0 -d 1 -p cbr -e 800 -c 0 -i 66 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.3828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 64 -a 0 -x {0.1 4194304.0 42 ------- SRM_DATA} + -t 4.3828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 64 -a 0 -x {0.1 4194304.0 42 ------- SRM_DATA} - -t 4.3828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 64 -a 0 -x {0.1 4194304.0 42 ------- SRM_DATA} h -t 4.3828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 64 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.3828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 64 -a 0 -x {0.1 4194304.0 42 ------- SRM_DATA} - -t 4.3828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 64 -a 0 -x {0.1 4194304.0 42 ------- SRM_DATA} h -t 4.3828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 64 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.38853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 65 -a 0 -x {0.1 4194304.0 43 ------- SRM_DATA} + -t 4.38853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 65 -a 0 -x {0.1 4194304.0 43 ------- SRM_DATA} - -t 4.38853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 65 -a 0 -x {0.1 4194304.0 43 ------- SRM_DATA} h -t 4.38853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 65 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.39427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 66 -a 0 -x {0.1 4194304.0 44 ------- SRM_DATA} + -t 4.39427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 66 -a 0 -x {0.1 4194304.0 44 ------- SRM_DATA} - -t 4.39427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 66 -a 0 -x {0.1 4194304.0 44 ------- SRM_DATA} h -t 4.39427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 66 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.39707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 64 -a 0 -x {0.1 4194304.0 42 ------- SRM_DATA} r -t 4.39707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 64 -a 0 -x {0.1 4194304.0 42 ------- SRM_DATA} + -t 4.4 -s 0 -d 1 -p cbr -e 800 -c 0 -i 67 -a 0 -x {0.1 4194304.0 45 ------- SRM_DATA} - -t 4.4 -s 0 -d 1 -p cbr -e 800 -c 0 -i 67 -a 0 -x {0.1 4194304.0 45 ------- SRM_DATA} h -t 4.4 -s 0 -d 1 -p cbr -e 800 -c 0 -i 67 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.4028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 65 -a 0 -x {0.1 4194304.0 43 ------- SRM_DATA} + -t 4.4028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 65 -a 0 -x {0.1 4194304.0 43 ------- SRM_DATA} - -t 4.4028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 65 -a 0 -x {0.1 4194304.0 43 ------- SRM_DATA} h -t 4.4028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 65 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.4028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 65 -a 0 -x {0.1 4194304.0 43 ------- SRM_DATA} - -t 4.4028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 65 -a 0 -x {0.1 4194304.0 43 ------- SRM_DATA} h -t 4.4028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 65 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.40853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 66 -a 0 -x {0.1 4194304.0 44 ------- SRM_DATA} + -t 4.40853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 66 -a 0 -x {0.1 4194304.0 44 ------- SRM_DATA} - -t 4.40853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 66 -a 0 -x {0.1 4194304.0 44 ------- SRM_DATA} h -t 4.40853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 66 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.41427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 67 -a 0 -x {0.1 4194304.0 45 ------- SRM_DATA} + -t 4.41427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 67 -a 0 -x {0.1 4194304.0 45 ------- SRM_DATA} - -t 4.41427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 67 -a 0 -x {0.1 4194304.0 45 ------- SRM_DATA} h -t 4.41427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 67 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.41707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 65 -a 0 -x {0.1 4194304.0 43 ------- SRM_DATA} r -t 4.41707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 65 -a 0 -x {0.1 4194304.0 43 ------- SRM_DATA} + -t 4.42 -s 0 -d 1 -p cbr -e 800 -c 0 -i 68 -a 0 -x {0.1 4194304.0 46 ------- SRM_DATA} - -t 4.42 -s 0 -d 1 -p cbr -e 800 -c 0 -i 68 -a 0 -x {0.1 4194304.0 46 ------- SRM_DATA} h -t 4.42 -s 0 -d 1 -p cbr -e 800 -c 0 -i 68 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.4228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 66 -a 0 -x {0.1 4194304.0 44 ------- SRM_DATA} + -t 4.4228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 66 -a 0 -x {0.1 4194304.0 44 ------- SRM_DATA} - -t 4.4228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 66 -a 0 -x {0.1 4194304.0 44 ------- SRM_DATA} h -t 4.4228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 66 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.4228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 66 -a 0 -x {0.1 4194304.0 44 ------- SRM_DATA} - -t 4.4228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 66 -a 0 -x {0.1 4194304.0 44 ------- SRM_DATA} h -t 4.4228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 66 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.42853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 67 -a 0 -x {0.1 4194304.0 45 ------- SRM_DATA} + -t 4.42853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 67 -a 0 -x {0.1 4194304.0 45 ------- SRM_DATA} - -t 4.42853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 67 -a 0 -x {0.1 4194304.0 45 ------- SRM_DATA} h -t 4.42853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 67 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.43427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 68 -a 0 -x {0.1 4194304.0 46 ------- SRM_DATA} + -t 4.43427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 68 -a 0 -x {0.1 4194304.0 46 ------- SRM_DATA} - -t 4.43427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 68 -a 0 -x {0.1 4194304.0 46 ------- SRM_DATA} h -t 4.43427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 68 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.43707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 66 -a 0 -x {0.1 4194304.0 44 ------- SRM_DATA} r -t 4.43707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 66 -a 0 -x {0.1 4194304.0 44 ------- SRM_DATA} + -t 4.44 -s 0 -d 1 -p cbr -e 800 -c 0 -i 69 -a 0 -x {0.1 4194304.0 47 ------- SRM_DATA} - -t 4.44 -s 0 -d 1 -p cbr -e 800 -c 0 -i 69 -a 0 -x {0.1 4194304.0 47 ------- SRM_DATA} h -t 4.44 -s 0 -d 1 -p cbr -e 800 -c 0 -i 69 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.4428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 67 -a 0 -x {0.1 4194304.0 45 ------- SRM_DATA} + -t 4.4428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 67 -a 0 -x {0.1 4194304.0 45 ------- SRM_DATA} - -t 4.4428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 67 -a 0 -x {0.1 4194304.0 45 ------- SRM_DATA} h -t 4.4428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 67 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.4428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 67 -a 0 -x {0.1 4194304.0 45 ------- SRM_DATA} - -t 4.4428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 67 -a 0 -x {0.1 4194304.0 45 ------- SRM_DATA} h -t 4.4428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 67 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.44853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 68 -a 0 -x {0.1 4194304.0 46 ------- SRM_DATA} + -t 4.44853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 68 -a 0 -x {0.1 4194304.0 46 ------- SRM_DATA} - -t 4.44853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 68 -a 0 -x {0.1 4194304.0 46 ------- SRM_DATA} h -t 4.44853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 68 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.45427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 69 -a 0 -x {0.1 4194304.0 47 ------- SRM_DATA} + -t 4.45427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 69 -a 0 -x {0.1 4194304.0 47 ------- SRM_DATA} - -t 4.45427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 69 -a 0 -x {0.1 4194304.0 47 ------- SRM_DATA} h -t 4.45427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 69 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.45707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 67 -a 0 -x {0.1 4194304.0 45 ------- SRM_DATA} r -t 4.45707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 67 -a 0 -x {0.1 4194304.0 45 ------- SRM_DATA} + -t 4.46 -s 0 -d 1 -p cbr -e 800 -c 0 -i 70 -a 0 -x {0.1 4194304.0 48 ------- SRM_DATA} - -t 4.46 -s 0 -d 1 -p cbr -e 800 -c 0 -i 70 -a 0 -x {0.1 4194304.0 48 ------- SRM_DATA} h -t 4.46 -s 0 -d 1 -p cbr -e 800 -c 0 -i 70 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.4628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 68 -a 0 -x {0.1 4194304.0 46 ------- SRM_DATA} + -t 4.4628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 68 -a 0 -x {0.1 4194304.0 46 ------- SRM_DATA} - -t 4.4628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 68 -a 0 -x {0.1 4194304.0 46 ------- SRM_DATA} h -t 4.4628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 68 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.4628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 68 -a 0 -x {0.1 4194304.0 46 ------- SRM_DATA} - -t 4.4628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 68 -a 0 -x {0.1 4194304.0 46 ------- SRM_DATA} h -t 4.4628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 68 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.46853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 69 -a 0 -x {0.1 4194304.0 47 ------- SRM_DATA} + -t 4.46853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 69 -a 0 -x {0.1 4194304.0 47 ------- SRM_DATA} - -t 4.46853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 69 -a 0 -x {0.1 4194304.0 47 ------- SRM_DATA} h -t 4.46853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 69 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.47427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 70 -a 0 -x {0.1 4194304.0 48 ------- SRM_DATA} + -t 4.47427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 70 -a 0 -x {0.1 4194304.0 48 ------- SRM_DATA} - -t 4.47427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 70 -a 0 -x {0.1 4194304.0 48 ------- SRM_DATA} h -t 4.47427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 70 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.47707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 68 -a 0 -x {0.1 4194304.0 46 ------- SRM_DATA} r -t 4.47707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 68 -a 0 -x {0.1 4194304.0 46 ------- SRM_DATA} + -t 4.48 -s 0 -d 1 -p cbr -e 800 -c 0 -i 71 -a 0 -x {0.1 4194304.0 49 ------- SRM_DATA} - -t 4.48 -s 0 -d 1 -p cbr -e 800 -c 0 -i 71 -a 0 -x {0.1 4194304.0 49 ------- SRM_DATA} h -t 4.48 -s 0 -d 1 -p cbr -e 800 -c 0 -i 71 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.4828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 69 -a 0 -x {0.1 4194304.0 47 ------- SRM_DATA} + -t 4.4828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 69 -a 0 -x {0.1 4194304.0 47 ------- SRM_DATA} - -t 4.4828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 69 -a 0 -x {0.1 4194304.0 47 ------- SRM_DATA} h -t 4.4828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 69 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.4828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 69 -a 0 -x {0.1 4194304.0 47 ------- SRM_DATA} - -t 4.4828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 69 -a 0 -x {0.1 4194304.0 47 ------- SRM_DATA} h -t 4.4828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 69 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.48853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 70 -a 0 -x {0.1 4194304.0 48 ------- SRM_DATA} + -t 4.48853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 70 -a 0 -x {0.1 4194304.0 48 ------- SRM_DATA} - -t 4.48853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 70 -a 0 -x {0.1 4194304.0 48 ------- SRM_DATA} h -t 4.48853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 70 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.49427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 71 -a 0 -x {0.1 4194304.0 49 ------- SRM_DATA} + -t 4.49427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 71 -a 0 -x {0.1 4194304.0 49 ------- SRM_DATA} - -t 4.49427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 71 -a 0 -x {0.1 4194304.0 49 ------- SRM_DATA} h -t 4.49427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 71 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.49707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 69 -a 0 -x {0.1 4194304.0 47 ------- SRM_DATA} r -t 4.49707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 69 -a 0 -x {0.1 4194304.0 47 ------- SRM_DATA} + -t 4.5 -s 0 -d 1 -p cbr -e 800 -c 0 -i 72 -a 0 -x {0.1 4194304.0 50 ------- SRM_DATA} - -t 4.5 -s 0 -d 1 -p cbr -e 800 -c 0 -i 72 -a 0 -x {0.1 4194304.0 50 ------- SRM_DATA} h -t 4.5 -s 0 -d 1 -p cbr -e 800 -c 0 -i 72 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} m -t 4.5 -s 0 -n m2 -c purple -h hexagon v -t 4.5 sim_annotation 4.5 4 node 0 added second mark r -t 4.5028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 70 -a 0 -x {0.1 4194304.0 48 ------- SRM_DATA} + -t 4.5028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 70 -a 0 -x {0.1 4194304.0 48 ------- SRM_DATA} - -t 4.5028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 70 -a 0 -x {0.1 4194304.0 48 ------- SRM_DATA} h -t 4.5028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 70 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.5028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 70 -a 0 -x {0.1 4194304.0 48 ------- SRM_DATA} - -t 4.5028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 70 -a 0 -x {0.1 4194304.0 48 ------- SRM_DATA} h -t 4.5028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 70 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.50853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 71 -a 0 -x {0.1 4194304.0 49 ------- SRM_DATA} + -t 4.50853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 71 -a 0 -x {0.1 4194304.0 49 ------- SRM_DATA} - -t 4.50853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 71 -a 0 -x {0.1 4194304.0 49 ------- SRM_DATA} h -t 4.50853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 71 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.51427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 72 -a 0 -x {0.1 4194304.0 50 ------- SRM_DATA} + -t 4.51427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 72 -a 0 -x {0.1 4194304.0 50 ------- SRM_DATA} - -t 4.51427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 72 -a 0 -x {0.1 4194304.0 50 ------- SRM_DATA} h -t 4.51427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 72 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.51707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 70 -a 0 -x {0.1 4194304.0 48 ------- SRM_DATA} r -t 4.51707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 70 -a 0 -x {0.1 4194304.0 48 ------- SRM_DATA} + -t 4.52 -s 0 -d 1 -p cbr -e 800 -c 0 -i 73 -a 0 -x {0.1 4194304.0 51 ------- SRM_DATA} - -t 4.52 -s 0 -d 1 -p cbr -e 800 -c 0 -i 73 -a 0 -x {0.1 4194304.0 51 ------- SRM_DATA} h -t 4.52 -s 0 -d 1 -p cbr -e 800 -c 0 -i 73 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.5228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 71 -a 0 -x {0.1 4194304.0 49 ------- SRM_DATA} + -t 4.5228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 71 -a 0 -x {0.1 4194304.0 49 ------- SRM_DATA} - -t 4.5228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 71 -a 0 -x {0.1 4194304.0 49 ------- SRM_DATA} h -t 4.5228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 71 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.5228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 71 -a 0 -x {0.1 4194304.0 49 ------- SRM_DATA} - -t 4.5228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 71 -a 0 -x {0.1 4194304.0 49 ------- SRM_DATA} h -t 4.5228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 71 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.52853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 72 -a 0 -x {0.1 4194304.0 50 ------- SRM_DATA} + -t 4.52853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 72 -a 0 -x {0.1 4194304.0 50 ------- SRM_DATA} - -t 4.52853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 72 -a 0 -x {0.1 4194304.0 50 ------- SRM_DATA} h -t 4.52853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 72 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.53427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 73 -a 0 -x {0.1 4194304.0 51 ------- SRM_DATA} + -t 4.53427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 73 -a 0 -x {0.1 4194304.0 51 ------- SRM_DATA} - -t 4.53427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 73 -a 0 -x {0.1 4194304.0 51 ------- SRM_DATA} h -t 4.53427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 73 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.53707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 71 -a 0 -x {0.1 4194304.0 49 ------- SRM_DATA} r -t 4.53707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 71 -a 0 -x {0.1 4194304.0 49 ------- SRM_DATA} + -t 4.54 -s 0 -d 1 -p cbr -e 800 -c 0 -i 74 -a 0 -x {0.1 4194304.0 52 ------- SRM_DATA} - -t 4.54 -s 0 -d 1 -p cbr -e 800 -c 0 -i 74 -a 0 -x {0.1 4194304.0 52 ------- SRM_DATA} h -t 4.54 -s 0 -d 1 -p cbr -e 800 -c 0 -i 74 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.5428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 72 -a 0 -x {0.1 4194304.0 50 ------- SRM_DATA} + -t 4.5428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 72 -a 0 -x {0.1 4194304.0 50 ------- SRM_DATA} - -t 4.5428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 72 -a 0 -x {0.1 4194304.0 50 ------- SRM_DATA} h -t 4.5428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 72 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.5428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 72 -a 0 -x {0.1 4194304.0 50 ------- SRM_DATA} - -t 4.5428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 72 -a 0 -x {0.1 4194304.0 50 ------- SRM_DATA} h -t 4.5428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 72 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.54853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 73 -a 0 -x {0.1 4194304.0 51 ------- SRM_DATA} + -t 4.54853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 73 -a 0 -x {0.1 4194304.0 51 ------- SRM_DATA} - -t 4.54853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 73 -a 0 -x {0.1 4194304.0 51 ------- SRM_DATA} h -t 4.54853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 73 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.55427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 74 -a 0 -x {0.1 4194304.0 52 ------- SRM_DATA} + -t 4.55427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 74 -a 0 -x {0.1 4194304.0 52 ------- SRM_DATA} - -t 4.55427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 74 -a 0 -x {0.1 4194304.0 52 ------- SRM_DATA} h -t 4.55427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 74 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.55707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 72 -a 0 -x {0.1 4194304.0 50 ------- SRM_DATA} r -t 4.55707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 72 -a 0 -x {0.1 4194304.0 50 ------- SRM_DATA} + -t 4.56 -s 0 -d 1 -p cbr -e 800 -c 0 -i 75 -a 0 -x {0.1 4194304.0 53 ------- SRM_DATA} - -t 4.56 -s 0 -d 1 -p cbr -e 800 -c 0 -i 75 -a 0 -x {0.1 4194304.0 53 ------- SRM_DATA} h -t 4.56 -s 0 -d 1 -p cbr -e 800 -c 0 -i 75 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.5628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 73 -a 0 -x {0.1 4194304.0 51 ------- SRM_DATA} + -t 4.5628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 73 -a 0 -x {0.1 4194304.0 51 ------- SRM_DATA} - -t 4.5628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 73 -a 0 -x {0.1 4194304.0 51 ------- SRM_DATA} h -t 4.5628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 73 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.5628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 73 -a 0 -x {0.1 4194304.0 51 ------- SRM_DATA} - -t 4.5628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 73 -a 0 -x {0.1 4194304.0 51 ------- SRM_DATA} h -t 4.5628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 73 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.56853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 74 -a 0 -x {0.1 4194304.0 52 ------- SRM_DATA} + -t 4.56853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 74 -a 0 -x {0.1 4194304.0 52 ------- SRM_DATA} - -t 4.56853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 74 -a 0 -x {0.1 4194304.0 52 ------- SRM_DATA} h -t 4.56853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 74 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.57427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 75 -a 0 -x {0.1 4194304.0 53 ------- SRM_DATA} + -t 4.57427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 75 -a 0 -x {0.1 4194304.0 53 ------- SRM_DATA} - -t 4.57427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 75 -a 0 -x {0.1 4194304.0 53 ------- SRM_DATA} h -t 4.57427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 75 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.57707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 73 -a 0 -x {0.1 4194304.0 51 ------- SRM_DATA} r -t 4.57707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 73 -a 0 -x {0.1 4194304.0 51 ------- SRM_DATA} + -t 4.58 -s 0 -d 1 -p cbr -e 800 -c 0 -i 76 -a 0 -x {0.1 4194304.0 54 ------- SRM_DATA} - -t 4.58 -s 0 -d 1 -p cbr -e 800 -c 0 -i 76 -a 0 -x {0.1 4194304.0 54 ------- SRM_DATA} h -t 4.58 -s 0 -d 1 -p cbr -e 800 -c 0 -i 76 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.5828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 74 -a 0 -x {0.1 4194304.0 52 ------- SRM_DATA} + -t 4.5828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 74 -a 0 -x {0.1 4194304.0 52 ------- SRM_DATA} - -t 4.5828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 74 -a 0 -x {0.1 4194304.0 52 ------- SRM_DATA} h -t 4.5828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 74 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.5828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 74 -a 0 -x {0.1 4194304.0 52 ------- SRM_DATA} - -t 4.5828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 74 -a 0 -x {0.1 4194304.0 52 ------- SRM_DATA} h -t 4.5828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 74 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.58853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 75 -a 0 -x {0.1 4194304.0 53 ------- SRM_DATA} + -t 4.58853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 75 -a 0 -x {0.1 4194304.0 53 ------- SRM_DATA} - -t 4.58853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 75 -a 0 -x {0.1 4194304.0 53 ------- SRM_DATA} h -t 4.58853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 75 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} l -t 4.5899999999999999 -s 1 -d 0 -S DOWN v -t 4.5899999999999999 link-down 4.5899999999999999 1 0 d -t 4.59 -s 0 -d 1 -p cbr -e 800 -c 0 -i 76 -a 0 -x {0.1 4194304.0 54 ------- SRM_DATA} l -t 4.5899999999999999 -s 0 -d 1 -S DOWN v -t 4.5899999999999999 link-down 4.5899999999999999 0 1 r -t 4.59707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 74 -a 0 -x {0.1 4194304.0 52 ------- SRM_DATA} r -t 4.59707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 74 -a 0 -x {0.1 4194304.0 52 ------- SRM_DATA} r -t 4.6028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 75 -a 0 -x {0.1 4194304.0 53 ------- SRM_DATA} + -t 4.6028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 75 -a 0 -x {0.1 4194304.0 53 ------- SRM_DATA} - -t 4.6028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 75 -a 0 -x {0.1 4194304.0 53 ------- SRM_DATA} h -t 4.6028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 75 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.6028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 75 -a 0 -x {0.1 4194304.0 53 ------- SRM_DATA} - -t 4.6028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 75 -a 0 -x {0.1 4194304.0 53 ------- SRM_DATA} h -t 4.6028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 75 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} l -t 4.6099999999999994 -s 1 -d 0 -S UP v -t 4.6099999999999994 link-up 4.6099999999999994 1 0 l -t 4.6099999999999994 -s 0 -d 1 -S UP v -t 4.6099999999999994 link-up 4.6099999999999994 0 1 r -t 4.61707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 75 -a 0 -x {0.1 4194304.0 53 ------- SRM_DATA} r -t 4.61707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 75 -a 0 -x {0.1 4194304.0 53 ------- SRM_DATA} + -t 4.62 -s 0 -d 1 -p cbr -e 800 -c 0 -i 78 -a 0 -x {0.1 4194304.0 56 ------- SRM_DATA} - -t 4.62 -s 0 -d 1 -p cbr -e 800 -c 0 -i 78 -a 0 -x {0.1 4194304.0 56 ------- SRM_DATA} h -t 4.62 -s 0 -d 1 -p cbr -e 800 -c 0 -i 78 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.63427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 78 -a 0 -x {0.1 4194304.0 56 ------- SRM_DATA} f -t 4.63426666666665366 -s 1 -d 4194304 -n C2_ -a srm(1) -v 1.8999999999999999 -o -T v f -t 4.63426666666665366 -s 1 -d 4194304 -n C2_ -a srm(1) -v 1.7999999999999998 -o 1.8999999999999999 -T v f -t 4.63426666666665366 -s 1 -d 4194304 -n C1_ -a srm(1) -v 1.7499999999999998 -o 1.7999999999999998 -T v + -t 4.63427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 78 -a 0 -x {0.1 4194304.0 56 ------- SRM_DATA} - -t 4.63427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 78 -a 0 -x {0.1 4194304.0 56 ------- SRM_DATA} h -t 4.63427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 78 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.64 -s 0 -d 1 -p cbr -e 800 -c 0 -i 79 -a 0 -x {0.1 4194304.0 57 ------- SRM_DATA} - -t 4.64 -s 0 -d 1 -p cbr -e 800 -c 0 -i 79 -a 0 -x {0.1 4194304.0 57 ------- SRM_DATA} h -t 4.64 -s 0 -d 1 -p cbr -e 800 -c 0 -i 79 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.64853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 78 -a 0 -x {0.1 4194304.0 56 ------- SRM_DATA} f -t 4.64853333333332053 -s 2 -d 4194304 -n C1_ -a srm(2) -v 1.95 -o -T v f -t 4.64853333333332053 -s 2 -d 4194304 -n C1_ -a srm(2) -v 1.8999999999999999 -o 1.95 -T v + -t 4.64853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 78 -a 0 -x {0.1 4194304.0 56 ------- SRM_DATA} - -t 4.64853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 78 -a 0 -x {0.1 4194304.0 56 ------- SRM_DATA} h -t 4.64853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 78 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.65427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 79 -a 0 -x {0.1 4194304.0 57 ------- SRM_DATA} + -t 4.65427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 79 -a 0 -x {0.1 4194304.0 57 ------- SRM_DATA} - -t 4.65427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 79 -a 0 -x {0.1 4194304.0 57 ------- SRM_DATA} h -t 4.65427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 79 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.66 -s 0 -d 1 -p cbr -e 800 -c 0 -i 80 -a 0 -x {0.1 4194304.0 58 ------- SRM_DATA} - -t 4.66 -s 0 -d 1 -p cbr -e 800 -c 0 -i 80 -a 0 -x {0.1 4194304.0 58 ------- SRM_DATA} h -t 4.66 -s 0 -d 1 -p cbr -e 800 -c 0 -i 80 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.6628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 78 -a 0 -x {0.1 4194304.0 56 ------- SRM_DATA} f -t 4.66279999999998740 -s 3 -d 4194304 -n C1_ -a srm(3) -v 1.95 -o -T v f -t 4.66279999999998740 -s 3 -d 4194304 -n C1_ -a srm(3) -v 1.8999999999999999 -o 1.95 -T v + -t 4.6628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 78 -a 0 -x {0.1 4194304.0 56 ------- SRM_DATA} - -t 4.6628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 78 -a 0 -x {0.1 4194304.0 56 ------- SRM_DATA} h -t 4.6628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 78 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.6628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 78 -a 0 -x {0.1 4194304.0 56 ------- SRM_DATA} - -t 4.6628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 78 -a 0 -x {0.1 4194304.0 56 ------- SRM_DATA} h -t 4.6628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 78 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} f -t 4.66576777929277497 -s 1 -d 4194304 -n C1_ -a srm(1) -v 1.6499999999999997 -o 1.7499999999999998 -T v + -t 4.66577 -s 1 -d 0 -p SRM -e 16 -c 2 -i 81 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 4.66577 -s 1 -d 0 -p SRM -e 16 -c 2 -i 81 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 4.66577 -s 1 -d 0 -p SRM -e 16 -c 2 -i 81 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 4.66577 -s 1 -d 2 -p SRM -e 16 -c 2 -i 81 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 4.66577 -s 1 -d 2 -p SRM -e 16 -c 2 -i 81 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 4.66577 -s 1 -d 2 -p SRM -e 16 -c 2 -i 81 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 4.66853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 79 -a 0 -x {0.1 4194304.0 57 ------- SRM_DATA} + -t 4.66853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 79 -a 0 -x {0.1 4194304.0 57 ------- SRM_DATA} - -t 4.66853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 79 -a 0 -x {0.1 4194304.0 57 ------- SRM_DATA} h -t 4.66853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 79 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} f -t 4.66936263139672914 -s 1 -d 4194304 -n C1_ -a srm(1) -v 1.5499999999999996 -o 1.6499999999999997 -T v + -t 4.66936 -s 1 -d 0 -p SRM -e 16 -c 2 -i 82 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 4.66936 -s 1 -d 0 -p SRM -e 16 -c 2 -i 82 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 4.66936 -s 1 -d 0 -p SRM -e 16 -c 2 -i 82 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 4.66936 -s 1 -d 2 -p SRM -e 16 -c 2 -i 82 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 4.66936 -s 1 -d 2 -p SRM -e 16 -c 2 -i 82 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 4.66936 -s 1 -d 2 -p SRM -e 16 -c 2 -i 82 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 4.67427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 80 -a 0 -x {0.1 4194304.0 58 ------- SRM_DATA} + -t 4.67427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 80 -a 0 -x {0.1 4194304.0 58 ------- SRM_DATA} - -t 4.67427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 80 -a 0 -x {0.1 4194304.0 58 ------- SRM_DATA} h -t 4.67427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 80 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.67585 -s 1 -d 0 -p SRM -e 16 -c 2 -i 81 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 4.67585 -s 1 -d 2 -p SRM -e 16 -c 2 -i 81 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 4.67585 -s 2 -d 3 -p SRM -e 16 -c 2 -i 81 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 4.67585 -s 2 -d 3 -p SRM -e 16 -c 2 -i 81 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 4.67585 -s 2 -d 3 -p SRM -e 16 -c 2 -i 81 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 4.67707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 78 -a 0 -x {0.1 4194304.0 56 ------- SRM_DATA} f -t 4.67706666666665427 -s 4 -d 4194304 -n C1_ -a srm(4) -v 1.95 -o -T v f -t 4.67706666666665427 -s 4 -d 4194304 -n C1_ -a srm(4) -v 1.8999999999999999 -o 1.95 -T v r -t 4.67707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 78 -a 0 -x {0.1 4194304.0 56 ------- SRM_DATA} f -t 4.67706666666665427 -s 5 -d 4194304 -n C1_ -a srm(5) -v 1.95 -o -T v f -t 4.67706666666665427 -s 5 -d 4194304 -n C1_ -a srm(5) -v 1.8999999999999999 -o 1.95 -T v r -t 4.67945 -s 1 -d 0 -p SRM -e 16 -c 2 -i 82 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 4.67945 -s 1 -d 2 -p SRM -e 16 -c 2 -i 82 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 4.67945 -s 2 -d 3 -p SRM -e 16 -c 2 -i 82 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 4.67945 -s 2 -d 3 -p SRM -e 16 -c 2 -i 82 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 4.67945 -s 2 -d 3 -p SRM -e 16 -c 2 -i 82 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 4.68 -s 0 -d 1 -p cbr -e 800 -c 0 -i 83 -a 0 -x {0.1 4194304.0 59 ------- SRM_DATA} - -t 4.68 -s 0 -d 1 -p cbr -e 800 -c 0 -i 83 -a 0 -x {0.1 4194304.0 59 ------- SRM_DATA} h -t 4.68 -s 0 -d 1 -p cbr -e 800 -c 0 -i 83 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.6828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 79 -a 0 -x {0.1 4194304.0 57 ------- SRM_DATA} + -t 4.6828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 79 -a 0 -x {0.1 4194304.0 57 ------- SRM_DATA} - -t 4.6828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 79 -a 0 -x {0.1 4194304.0 57 ------- SRM_DATA} h -t 4.6828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 79 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.6828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 79 -a 0 -x {0.1 4194304.0 57 ------- SRM_DATA} - -t 4.6828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 79 -a 0 -x {0.1 4194304.0 57 ------- SRM_DATA} h -t 4.6828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 79 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.68594 -s 2 -d 3 -p SRM -e 16 -c 2 -i 81 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 4.68594 -s 3 -d 4 -p SRM -e 16 -c 2 -i 81 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 4.68594 -s 3 -d 5 -p SRM -e 16 -c 2 -i 81 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 4.68616 -s 0 -d 1 -p SRM -e 816 -c 1 -i 84 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 4.68616 -s 0 -d 1 -p SRM -e 816 -c 1 -i 84 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 4.68616 -s 0 -d 1 -p SRM -e 816 -c 1 -i 84 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 4.68707 -s 3 -d 4 -p SRM -e 16 -c 2 -i 81 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 4.68707 -s 3 -d 4 -p SRM -e 16 -c 2 -i 81 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 4.68707 -s 3 -d 5 -p SRM -e 16 -c 2 -i 81 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 4.68707 -s 3 -d 5 -p SRM -e 16 -c 2 -i 81 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 4.68853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 80 -a 0 -x {0.1 4194304.0 58 ------- SRM_DATA} + -t 4.68853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 80 -a 0 -x {0.1 4194304.0 58 ------- SRM_DATA} - -t 4.68853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 80 -a 0 -x {0.1 4194304.0 58 ------- SRM_DATA} h -t 4.68853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 80 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.68953 -s 2 -d 3 -p SRM -e 16 -c 2 -i 82 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 4.68953 -s 3 -d 4 -p SRM -e 16 -c 2 -i 82 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 4.68953 -s 3 -d 4 -p SRM -e 16 -c 2 -i 82 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 4.68953 -s 3 -d 4 -p SRM -e 16 -c 2 -i 82 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 4.68953 -s 3 -d 5 -p SRM -e 16 -c 2 -i 82 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 4.68953 -s 3 -d 5 -p SRM -e 16 -c 2 -i 82 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 4.68953 -s 3 -d 5 -p SRM -e 16 -c 2 -i 82 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 4.69427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 83 -a 0 -x {0.1 4194304.0 59 ------- SRM_DATA} + -t 4.69427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 83 -a 0 -x {0.1 4194304.0 59 ------- SRM_DATA} - -t 4.69427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 83 -a 0 -x {0.1 4194304.0 59 ------- SRM_DATA} h -t 4.69427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 83 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.69576 -s 0 -d 1 -p SRM -e 816 -c 1 -i 85 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 4.69576 -s 0 -d 1 -p SRM -e 816 -c 1 -i 85 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 4.69576 -s 0 -d 1 -p SRM -e 816 -c 1 -i 85 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 4.69707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 79 -a 0 -x {0.1 4194304.0 57 ------- SRM_DATA} r -t 4.69707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 79 -a 0 -x {0.1 4194304.0 57 ------- SRM_DATA} r -t 4.69715 -s 3 -d 4 -p SRM -e 16 -c 2 -i 81 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 4.69715 -s 3 -d 5 -p SRM -e 16 -c 2 -i 81 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 4.69962 -s 3 -d 4 -p SRM -e 16 -c 2 -i 82 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 4.69962 -s 3 -d 5 -p SRM -e 16 -c 2 -i 82 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 4.7 -s 0 -d 1 -p cbr -e 800 -c 0 -i 86 -a 0 -x {0.1 4194304.0 60 ------- SRM_DATA} - -t 4.70011 -s 0 -d 1 -p cbr -e 800 -c 0 -i 86 -a 0 -x {0.1 4194304.0 60 ------- SRM_DATA} h -t 4.70011 -s 0 -d 1 -p cbr -e 800 -c 0 -i 86 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.70052 -s 0 -d 1 -p SRM -e 816 -c 1 -i 84 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 4.70052 -s 1 -d 2 -p SRM -e 816 -c 1 -i 84 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 4.70052 -s 1 -d 2 -p SRM -e 816 -c 1 -i 84 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 4.70052 -s 1 -d 2 -p SRM -e 816 -c 1 -i 84 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 4.7028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 80 -a 0 -x {0.1 4194304.0 58 ------- SRM_DATA} + -t 4.7028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 80 -a 0 -x {0.1 4194304.0 58 ------- SRM_DATA} - -t 4.7028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 80 -a 0 -x {0.1 4194304.0 58 ------- SRM_DATA} h -t 4.7028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 80 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.7028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 80 -a 0 -x {0.1 4194304.0 58 ------- SRM_DATA} - -t 4.7028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 80 -a 0 -x {0.1 4194304.0 58 ------- SRM_DATA} h -t 4.7028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 80 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.70853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 83 -a 0 -x {0.1 4194304.0 59 ------- SRM_DATA} + -t 4.70853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 83 -a 0 -x {0.1 4194304.0 59 ------- SRM_DATA} - -t 4.70853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 83 -a 0 -x {0.1 4194304.0 59 ------- SRM_DATA} h -t 4.70853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 83 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.71011 -s 0 -d 1 -p SRM -e 816 -c 1 -i 85 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 4.71011 -s 1 -d 2 -p SRM -e 816 -c 1 -i 85 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 4.71011 -s 1 -d 2 -p SRM -e 816 -c 1 -i 85 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 4.71011 -s 1 -d 2 -p SRM -e 816 -c 1 -i 85 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 4.71438 -s 0 -d 1 -p cbr -e 800 -c 0 -i 86 -a 0 -x {0.1 4194304.0 60 ------- SRM_DATA} + -t 4.71438 -s 1 -d 2 -p cbr -e 800 -c 0 -i 86 -a 0 -x {0.1 4194304.0 60 ------- SRM_DATA} - -t 4.71446 -s 1 -d 2 -p cbr -e 800 -c 0 -i 86 -a 0 -x {0.1 4194304.0 60 ------- SRM_DATA} h -t 4.71446 -s 1 -d 2 -p cbr -e 800 -c 0 -i 86 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.71487 -s 1 -d 2 -p SRM -e 816 -c 1 -i 84 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 4.71487 -s 2 -d 3 -p SRM -e 816 -c 1 -i 84 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 4.71487 -s 2 -d 3 -p SRM -e 816 -c 1 -i 84 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 4.71487 -s 2 -d 3 -p SRM -e 816 -c 1 -i 84 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 4.71707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 80 -a 0 -x {0.1 4194304.0 58 ------- SRM_DATA} r -t 4.71707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 80 -a 0 -x {0.1 4194304.0 58 ------- SRM_DATA} + -t 4.72 -s 0 -d 1 -p cbr -e 800 -c 0 -i 87 -a 0 -x {0.1 4194304.0 61 ------- SRM_DATA} - -t 4.72 -s 0 -d 1 -p cbr -e 800 -c 0 -i 87 -a 0 -x {0.1 4194304.0 61 ------- SRM_DATA} h -t 4.72 -s 0 -d 1 -p cbr -e 800 -c 0 -i 87 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.7228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 83 -a 0 -x {0.1 4194304.0 59 ------- SRM_DATA} + -t 4.7228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 83 -a 0 -x {0.1 4194304.0 59 ------- SRM_DATA} - -t 4.7228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 83 -a 0 -x {0.1 4194304.0 59 ------- SRM_DATA} h -t 4.7228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 83 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.7228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 83 -a 0 -x {0.1 4194304.0 59 ------- SRM_DATA} - -t 4.7228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 83 -a 0 -x {0.1 4194304.0 59 ------- SRM_DATA} h -t 4.7228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 83 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.72446 -s 1 -d 2 -p SRM -e 816 -c 1 -i 85 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 4.72446 -s 2 -d 3 -p SRM -e 816 -c 1 -i 85 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 4.72446 -s 2 -d 3 -p SRM -e 816 -c 1 -i 85 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 4.72446 -s 2 -d 3 -p SRM -e 816 -c 1 -i 85 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 4.72873 -s 1 -d 2 -p cbr -e 800 -c 0 -i 86 -a 0 -x {0.1 4194304.0 60 ------- SRM_DATA} + -t 4.72873 -s 2 -d 3 -p cbr -e 800 -c 0 -i 86 -a 0 -x {0.1 4194304.0 60 ------- SRM_DATA} - -t 4.72881 -s 2 -d 3 -p cbr -e 800 -c 0 -i 86 -a 0 -x {0.1 4194304.0 60 ------- SRM_DATA} h -t 4.72881 -s 2 -d 3 -p cbr -e 800 -c 0 -i 86 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.72922 -s 2 -d 3 -p SRM -e 816 -c 1 -i 84 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 4.72922 -s 3 -d 4 -p SRM -e 816 -c 1 -i 84 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 4.72922 -s 3 -d 4 -p SRM -e 816 -c 1 -i 84 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 4.72922 -s 3 -d 4 -p SRM -e 816 -c 1 -i 84 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 4.72922 -s 3 -d 5 -p SRM -e 816 -c 1 -i 84 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 4.72922 -s 3 -d 5 -p SRM -e 816 -c 1 -i 84 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 4.72922 -s 3 -d 5 -p SRM -e 816 -c 1 -i 84 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 4.73427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 87 -a 0 -x {0.1 4194304.0 61 ------- SRM_DATA} + -t 4.73427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 87 -a 0 -x {0.1 4194304.0 61 ------- SRM_DATA} - -t 4.73427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 87 -a 0 -x {0.1 4194304.0 61 ------- SRM_DATA} h -t 4.73427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 87 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.73707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 83 -a 0 -x {0.1 4194304.0 59 ------- SRM_DATA} r -t 4.73707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 83 -a 0 -x {0.1 4194304.0 59 ------- SRM_DATA} r -t 4.73881 -s 2 -d 3 -p SRM -e 816 -c 1 -i 85 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 4.73881 -s 3 -d 4 -p SRM -e 816 -c 1 -i 85 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 4.73881 -s 3 -d 4 -p SRM -e 816 -c 1 -i 85 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 4.73881 -s 3 -d 4 -p SRM -e 816 -c 1 -i 85 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 4.73881 -s 3 -d 5 -p SRM -e 816 -c 1 -i 85 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 4.73881 -s 3 -d 5 -p SRM -e 816 -c 1 -i 85 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 4.73881 -s 3 -d 5 -p SRM -e 816 -c 1 -i 85 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 4.74 -s 0 -d 1 -p cbr -e 800 -c 0 -i 88 -a 0 -x {0.1 4194304.0 62 ------- SRM_DATA} - -t 4.74 -s 0 -d 1 -p cbr -e 800 -c 0 -i 88 -a 0 -x {0.1 4194304.0 62 ------- SRM_DATA} h -t 4.74 -s 0 -d 1 -p cbr -e 800 -c 0 -i 88 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.74308 -s 2 -d 3 -p cbr -e 800 -c 0 -i 86 -a 0 -x {0.1 4194304.0 60 ------- SRM_DATA} + -t 4.74308 -s 3 -d 4 -p cbr -e 800 -c 0 -i 86 -a 0 -x {0.1 4194304.0 60 ------- SRM_DATA} + -t 4.74308 -s 3 -d 5 -p cbr -e 800 -c 0 -i 86 -a 0 -x {0.1 4194304.0 60 ------- SRM_DATA} - -t 4.74317 -s 3 -d 4 -p cbr -e 800 -c 0 -i 86 -a 0 -x {0.1 4194304.0 60 ------- SRM_DATA} h -t 4.74317 -s 3 -d 4 -p cbr -e 800 -c 0 -i 86 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} - -t 4.74317 -s 3 -d 5 -p cbr -e 800 -c 0 -i 86 -a 0 -x {0.1 4194304.0 60 ------- SRM_DATA} h -t 4.74317 -s 3 -d 5 -p cbr -e 800 -c 0 -i 86 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.74357 -s 3 -d 4 -p SRM -e 816 -c 1 -i 84 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 4.74357 -s 3 -d 5 -p SRM -e 816 -c 1 -i 84 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 4.74853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 87 -a 0 -x {0.1 4194304.0 61 ------- SRM_DATA} + -t 4.74853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 87 -a 0 -x {0.1 4194304.0 61 ------- SRM_DATA} - -t 4.74853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 87 -a 0 -x {0.1 4194304.0 61 ------- SRM_DATA} h -t 4.74853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 87 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.75317 -s 3 -d 4 -p SRM -e 816 -c 1 -i 85 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 4.75317 -s 3 -d 5 -p SRM -e 816 -c 1 -i 85 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 4.75427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 88 -a 0 -x {0.1 4194304.0 62 ------- SRM_DATA} + -t 4.75427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 88 -a 0 -x {0.1 4194304.0 62 ------- SRM_DATA} - -t 4.75427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 88 -a 0 -x {0.1 4194304.0 62 ------- SRM_DATA} h -t 4.75427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 88 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.75743 -s 3 -d 4 -p cbr -e 800 -c 0 -i 86 -a 0 -x {0.1 4194304.0 60 ------- SRM_DATA} r -t 4.75743 -s 3 -d 5 -p cbr -e 800 -c 0 -i 86 -a 0 -x {0.1 4194304.0 60 ------- SRM_DATA} + -t 4.76 -s 0 -d 1 -p cbr -e 800 -c 0 -i 89 -a 0 -x {0.1 4194304.0 63 ------- SRM_DATA} - -t 4.76 -s 0 -d 1 -p cbr -e 800 -c 0 -i 89 -a 0 -x {0.1 4194304.0 63 ------- SRM_DATA} h -t 4.76 -s 0 -d 1 -p cbr -e 800 -c 0 -i 89 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.7628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 87 -a 0 -x {0.1 4194304.0 61 ------- SRM_DATA} + -t 4.7628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 87 -a 0 -x {0.1 4194304.0 61 ------- SRM_DATA} - -t 4.7628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 87 -a 0 -x {0.1 4194304.0 61 ------- SRM_DATA} h -t 4.7628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 87 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.7628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 87 -a 0 -x {0.1 4194304.0 61 ------- SRM_DATA} - -t 4.7628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 87 -a 0 -x {0.1 4194304.0 61 ------- SRM_DATA} h -t 4.7628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 87 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.76853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 88 -a 0 -x {0.1 4194304.0 62 ------- SRM_DATA} + -t 4.76853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 88 -a 0 -x {0.1 4194304.0 62 ------- SRM_DATA} - -t 4.76853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 88 -a 0 -x {0.1 4194304.0 62 ------- SRM_DATA} h -t 4.76853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 88 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.77427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 89 -a 0 -x {0.1 4194304.0 63 ------- SRM_DATA} + -t 4.77427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 89 -a 0 -x {0.1 4194304.0 63 ------- SRM_DATA} - -t 4.77427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 89 -a 0 -x {0.1 4194304.0 63 ------- SRM_DATA} h -t 4.77427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 89 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.77707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 87 -a 0 -x {0.1 4194304.0 61 ------- SRM_DATA} r -t 4.77707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 87 -a 0 -x {0.1 4194304.0 61 ------- SRM_DATA} + -t 4.78 -s 0 -d 1 -p cbr -e 800 -c 0 -i 90 -a 0 -x {0.1 4194304.0 64 ------- SRM_DATA} - -t 4.78 -s 0 -d 1 -p cbr -e 800 -c 0 -i 90 -a 0 -x {0.1 4194304.0 64 ------- SRM_DATA} h -t 4.78 -s 0 -d 1 -p cbr -e 800 -c 0 -i 90 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.7828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 88 -a 0 -x {0.1 4194304.0 62 ------- SRM_DATA} + -t 4.7828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 88 -a 0 -x {0.1 4194304.0 62 ------- SRM_DATA} - -t 4.7828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 88 -a 0 -x {0.1 4194304.0 62 ------- SRM_DATA} h -t 4.7828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 88 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.7828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 88 -a 0 -x {0.1 4194304.0 62 ------- SRM_DATA} - -t 4.7828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 88 -a 0 -x {0.1 4194304.0 62 ------- SRM_DATA} h -t 4.7828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 88 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.78853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 89 -a 0 -x {0.1 4194304.0 63 ------- SRM_DATA} + -t 4.78853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 89 -a 0 -x {0.1 4194304.0 63 ------- SRM_DATA} - -t 4.78853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 89 -a 0 -x {0.1 4194304.0 63 ------- SRM_DATA} h -t 4.78853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 89 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.79427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 90 -a 0 -x {0.1 4194304.0 64 ------- SRM_DATA} + -t 4.79427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 90 -a 0 -x {0.1 4194304.0 64 ------- SRM_DATA} - -t 4.79427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 90 -a 0 -x {0.1 4194304.0 64 ------- SRM_DATA} h -t 4.79427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 90 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.79707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 88 -a 0 -x {0.1 4194304.0 62 ------- SRM_DATA} r -t 4.79707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 88 -a 0 -x {0.1 4194304.0 62 ------- SRM_DATA} + -t 4.8 -s 0 -d 1 -p cbr -e 800 -c 0 -i 91 -a 0 -x {0.1 4194304.0 65 ------- SRM_DATA} - -t 4.8 -s 0 -d 1 -p cbr -e 800 -c 0 -i 91 -a 0 -x {0.1 4194304.0 65 ------- SRM_DATA} h -t 4.8 -s 0 -d 1 -p cbr -e 800 -c 0 -i 91 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.8028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 89 -a 0 -x {0.1 4194304.0 63 ------- SRM_DATA} + -t 4.8028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 89 -a 0 -x {0.1 4194304.0 63 ------- SRM_DATA} - -t 4.8028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 89 -a 0 -x {0.1 4194304.0 63 ------- SRM_DATA} h -t 4.8028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 89 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.8028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 89 -a 0 -x {0.1 4194304.0 63 ------- SRM_DATA} - -t 4.8028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 89 -a 0 -x {0.1 4194304.0 63 ------- SRM_DATA} h -t 4.8028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 89 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.80853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 90 -a 0 -x {0.1 4194304.0 64 ------- SRM_DATA} + -t 4.80853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 90 -a 0 -x {0.1 4194304.0 64 ------- SRM_DATA} - -t 4.80853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 90 -a 0 -x {0.1 4194304.0 64 ------- SRM_DATA} h -t 4.80853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 90 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.81427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 91 -a 0 -x {0.1 4194304.0 65 ------- SRM_DATA} + -t 4.81427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 91 -a 0 -x {0.1 4194304.0 65 ------- SRM_DATA} - -t 4.81427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 91 -a 0 -x {0.1 4194304.0 65 ------- SRM_DATA} h -t 4.81427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 91 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.81707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 89 -a 0 -x {0.1 4194304.0 63 ------- SRM_DATA} r -t 4.81707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 89 -a 0 -x {0.1 4194304.0 63 ------- SRM_DATA} + -t 4.8184 -s 1 -d 0 -p SRM -e 116 -c 2 -i 92 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} - -t 4.8184 -s 1 -d 0 -p SRM -e 116 -c 2 -i 92 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} h -t 4.8184 -s 1 -d 0 -p SRM -e 116 -c 2 -i 92 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} + -t 4.8184 -s 1 -d 2 -p SRM -e 116 -c 2 -i 92 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} - -t 4.81853 -s 1 -d 2 -p SRM -e 116 -c 2 -i 92 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} h -t 4.81853 -s 1 -d 2 -p SRM -e 116 -c 2 -i 92 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} + -t 4.82 -s 0 -d 1 -p cbr -e 800 -c 0 -i 93 -a 0 -x {0.1 4194304.0 66 ------- SRM_DATA} - -t 4.82 -s 0 -d 1 -p cbr -e 800 -c 0 -i 93 -a 0 -x {0.1 4194304.0 66 ------- SRM_DATA} h -t 4.82 -s 0 -d 1 -p cbr -e 800 -c 0 -i 93 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.8228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 90 -a 0 -x {0.1 4194304.0 64 ------- SRM_DATA} + -t 4.8228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 90 -a 0 -x {0.1 4194304.0 64 ------- SRM_DATA} - -t 4.8228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 90 -a 0 -x {0.1 4194304.0 64 ------- SRM_DATA} h -t 4.8228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 90 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.8228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 90 -a 0 -x {0.1 4194304.0 64 ------- SRM_DATA} - -t 4.8228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 90 -a 0 -x {0.1 4194304.0 64 ------- SRM_DATA} h -t 4.8228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 90 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.82853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 91 -a 0 -x {0.1 4194304.0 65 ------- SRM_DATA} + -t 4.82853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 91 -a 0 -x {0.1 4194304.0 65 ------- SRM_DATA} - -t 4.82853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 91 -a 0 -x {0.1 4194304.0 65 ------- SRM_DATA} h -t 4.82853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 91 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.82902 -s 1 -d 0 -p SRM -e 116 -c 2 -i 92 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} r -t 4.82915 -s 1 -d 2 -p SRM -e 116 -c 2 -i 92 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} + -t 4.82915 -s 2 -d 3 -p SRM -e 116 -c 2 -i 92 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} - -t 4.8328 -s 2 -d 3 -p SRM -e 116 -c 2 -i 92 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} h -t 4.8328 -s 2 -d 3 -p SRM -e 116 -c 2 -i 92 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} r -t 4.83427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 93 -a 0 -x {0.1 4194304.0 66 ------- SRM_DATA} + -t 4.83427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 93 -a 0 -x {0.1 4194304.0 66 ------- SRM_DATA} - -t 4.83427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 93 -a 0 -x {0.1 4194304.0 66 ------- SRM_DATA} h -t 4.83427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 93 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.83707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 90 -a 0 -x {0.1 4194304.0 64 ------- SRM_DATA} r -t 4.83707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 90 -a 0 -x {0.1 4194304.0 64 ------- SRM_DATA} + -t 4.84 -s 0 -d 1 -p cbr -e 800 -c 0 -i 94 -a 0 -x {0.1 4194304.0 67 ------- SRM_DATA} - -t 4.84 -s 0 -d 1 -p cbr -e 800 -c 0 -i 94 -a 0 -x {0.1 4194304.0 67 ------- SRM_DATA} h -t 4.84 -s 0 -d 1 -p cbr -e 800 -c 0 -i 94 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.8428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 91 -a 0 -x {0.1 4194304.0 65 ------- SRM_DATA} + -t 4.8428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 91 -a 0 -x {0.1 4194304.0 65 ------- SRM_DATA} - -t 4.8428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 91 -a 0 -x {0.1 4194304.0 65 ------- SRM_DATA} h -t 4.8428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 91 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.8428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 91 -a 0 -x {0.1 4194304.0 65 ------- SRM_DATA} - -t 4.8428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 91 -a 0 -x {0.1 4194304.0 65 ------- SRM_DATA} h -t 4.8428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 91 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.84342 -s 2 -d 3 -p SRM -e 116 -c 2 -i 92 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} + -t 4.84342 -s 3 -d 4 -p SRM -e 116 -c 2 -i 92 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} + -t 4.84342 -s 3 -d 5 -p SRM -e 116 -c 2 -i 92 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} - -t 4.84707 -s 3 -d 4 -p SRM -e 116 -c 2 -i 92 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} h -t 4.84707 -s 3 -d 4 -p SRM -e 116 -c 2 -i 92 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} - -t 4.84707 -s 3 -d 5 -p SRM -e 116 -c 2 -i 92 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} h -t 4.84707 -s 3 -d 5 -p SRM -e 116 -c 2 -i 92 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} r -t 4.84853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 93 -a 0 -x {0.1 4194304.0 66 ------- SRM_DATA} + -t 4.84853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 93 -a 0 -x {0.1 4194304.0 66 ------- SRM_DATA} - -t 4.84853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 93 -a 0 -x {0.1 4194304.0 66 ------- SRM_DATA} h -t 4.84853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 93 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.85427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 94 -a 0 -x {0.1 4194304.0 67 ------- SRM_DATA} + -t 4.85427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 94 -a 0 -x {0.1 4194304.0 67 ------- SRM_DATA} - -t 4.85427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 94 -a 0 -x {0.1 4194304.0 67 ------- SRM_DATA} h -t 4.85427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 94 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.85707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 91 -a 0 -x {0.1 4194304.0 65 ------- SRM_DATA} r -t 4.85707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 91 -a 0 -x {0.1 4194304.0 65 ------- SRM_DATA} r -t 4.85769 -s 3 -d 4 -p SRM -e 116 -c 2 -i 92 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} r -t 4.85769 -s 3 -d 5 -p SRM -e 116 -c 2 -i 92 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} + -t 4.86 -s 0 -d 1 -p cbr -e 800 -c 0 -i 95 -a 0 -x {0.1 4194304.0 68 ------- SRM_DATA} - -t 4.86 -s 0 -d 1 -p cbr -e 800 -c 0 -i 95 -a 0 -x {0.1 4194304.0 68 ------- SRM_DATA} h -t 4.86 -s 0 -d 1 -p cbr -e 800 -c 0 -i 95 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.8628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 93 -a 0 -x {0.1 4194304.0 66 ------- SRM_DATA} + -t 4.8628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 93 -a 0 -x {0.1 4194304.0 66 ------- SRM_DATA} - -t 4.8628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 93 -a 0 -x {0.1 4194304.0 66 ------- SRM_DATA} h -t 4.8628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 93 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.8628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 93 -a 0 -x {0.1 4194304.0 66 ------- SRM_DATA} - -t 4.8628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 93 -a 0 -x {0.1 4194304.0 66 ------- SRM_DATA} h -t 4.8628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 93 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.86853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 94 -a 0 -x {0.1 4194304.0 67 ------- SRM_DATA} + -t 4.86853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 94 -a 0 -x {0.1 4194304.0 67 ------- SRM_DATA} - -t 4.86853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 94 -a 0 -x {0.1 4194304.0 67 ------- SRM_DATA} h -t 4.86853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 94 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.87427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 95 -a 0 -x {0.1 4194304.0 68 ------- SRM_DATA} + -t 4.87427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 95 -a 0 -x {0.1 4194304.0 68 ------- SRM_DATA} - -t 4.87427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 95 -a 0 -x {0.1 4194304.0 68 ------- SRM_DATA} h -t 4.87427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 95 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.87707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 93 -a 0 -x {0.1 4194304.0 66 ------- SRM_DATA} r -t 4.87707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 93 -a 0 -x {0.1 4194304.0 66 ------- SRM_DATA} + -t 4.88 -s 0 -d 1 -p cbr -e 800 -c 0 -i 96 -a 0 -x {0.1 4194304.0 69 ------- SRM_DATA} - -t 4.88 -s 0 -d 1 -p cbr -e 800 -c 0 -i 96 -a 0 -x {0.1 4194304.0 69 ------- SRM_DATA} h -t 4.88 -s 0 -d 1 -p cbr -e 800 -c 0 -i 96 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.8828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 94 -a 0 -x {0.1 4194304.0 67 ------- SRM_DATA} + -t 4.8828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 94 -a 0 -x {0.1 4194304.0 67 ------- SRM_DATA} - -t 4.8828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 94 -a 0 -x {0.1 4194304.0 67 ------- SRM_DATA} h -t 4.8828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 94 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.8828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 94 -a 0 -x {0.1 4194304.0 67 ------- SRM_DATA} - -t 4.8828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 94 -a 0 -x {0.1 4194304.0 67 ------- SRM_DATA} h -t 4.8828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 94 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.88853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 95 -a 0 -x {0.1 4194304.0 68 ------- SRM_DATA} + -t 4.88853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 95 -a 0 -x {0.1 4194304.0 68 ------- SRM_DATA} - -t 4.88853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 95 -a 0 -x {0.1 4194304.0 68 ------- SRM_DATA} h -t 4.88853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 95 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.89427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 96 -a 0 -x {0.1 4194304.0 69 ------- SRM_DATA} + -t 4.89427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 96 -a 0 -x {0.1 4194304.0 69 ------- SRM_DATA} - -t 4.89427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 96 -a 0 -x {0.1 4194304.0 69 ------- SRM_DATA} h -t 4.89427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 96 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.89707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 94 -a 0 -x {0.1 4194304.0 67 ------- SRM_DATA} r -t 4.89707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 94 -a 0 -x {0.1 4194304.0 67 ------- SRM_DATA} + -t 4.9 -s 0 -d 1 -p cbr -e 800 -c 0 -i 97 -a 0 -x {0.1 4194304.0 70 ------- SRM_DATA} - -t 4.9 -s 0 -d 1 -p cbr -e 800 -c 0 -i 97 -a 0 -x {0.1 4194304.0 70 ------- SRM_DATA} h -t 4.9 -s 0 -d 1 -p cbr -e 800 -c 0 -i 97 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.9028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 95 -a 0 -x {0.1 4194304.0 68 ------- SRM_DATA} + -t 4.9028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 95 -a 0 -x {0.1 4194304.0 68 ------- SRM_DATA} - -t 4.9028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 95 -a 0 -x {0.1 4194304.0 68 ------- SRM_DATA} h -t 4.9028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 95 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.9028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 95 -a 0 -x {0.1 4194304.0 68 ------- SRM_DATA} - -t 4.9028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 95 -a 0 -x {0.1 4194304.0 68 ------- SRM_DATA} h -t 4.9028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 95 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.90853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 96 -a 0 -x {0.1 4194304.0 69 ------- SRM_DATA} + -t 4.90853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 96 -a 0 -x {0.1 4194304.0 69 ------- SRM_DATA} - -t 4.90853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 96 -a 0 -x {0.1 4194304.0 69 ------- SRM_DATA} h -t 4.90853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 96 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.91427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 97 -a 0 -x {0.1 4194304.0 70 ------- SRM_DATA} + -t 4.91427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 97 -a 0 -x {0.1 4194304.0 70 ------- SRM_DATA} - -t 4.91427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 97 -a 0 -x {0.1 4194304.0 70 ------- SRM_DATA} h -t 4.91427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 97 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.91707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 95 -a 0 -x {0.1 4194304.0 68 ------- SRM_DATA} r -t 4.91707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 95 -a 0 -x {0.1 4194304.0 68 ------- SRM_DATA} + -t 4.92 -s 0 -d 1 -p cbr -e 800 -c 0 -i 98 -a 0 -x {0.1 4194304.0 71 ------- SRM_DATA} - -t 4.92 -s 0 -d 1 -p cbr -e 800 -c 0 -i 98 -a 0 -x {0.1 4194304.0 71 ------- SRM_DATA} h -t 4.92 -s 0 -d 1 -p cbr -e 800 -c 0 -i 98 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.9228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 96 -a 0 -x {0.1 4194304.0 69 ------- SRM_DATA} + -t 4.9228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 96 -a 0 -x {0.1 4194304.0 69 ------- SRM_DATA} - -t 4.9228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 96 -a 0 -x {0.1 4194304.0 69 ------- SRM_DATA} h -t 4.9228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 96 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.9228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 96 -a 0 -x {0.1 4194304.0 69 ------- SRM_DATA} - -t 4.9228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 96 -a 0 -x {0.1 4194304.0 69 ------- SRM_DATA} h -t 4.9228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 96 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.92853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 97 -a 0 -x {0.1 4194304.0 70 ------- SRM_DATA} + -t 4.92853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 97 -a 0 -x {0.1 4194304.0 70 ------- SRM_DATA} - -t 4.92853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 97 -a 0 -x {0.1 4194304.0 70 ------- SRM_DATA} h -t 4.92853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 97 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.93427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 98 -a 0 -x {0.1 4194304.0 71 ------- SRM_DATA} + -t 4.93427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 98 -a 0 -x {0.1 4194304.0 71 ------- SRM_DATA} - -t 4.93427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 98 -a 0 -x {0.1 4194304.0 71 ------- SRM_DATA} h -t 4.93427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 98 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.93488 -s 5 -d 3 -p SRM -e 116 -c 6 -i 99 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} - -t 4.93488 -s 5 -d 3 -p SRM -e 116 -c 6 -i 99 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} h -t 4.93488 -s 5 -d 3 -p SRM -e 116 -c 6 -i 99 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} r -t 4.93707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 96 -a 0 -x {0.1 4194304.0 69 ------- SRM_DATA} r -t 4.93707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 96 -a 0 -x {0.1 4194304.0 69 ------- SRM_DATA} + -t 4.94 -s 0 -d 1 -p cbr -e 800 -c 0 -i 100 -a 0 -x {0.1 4194304.0 72 ------- SRM_DATA} - -t 4.94 -s 0 -d 1 -p cbr -e 800 -c 0 -i 100 -a 0 -x {0.1 4194304.0 72 ------- SRM_DATA} h -t 4.94 -s 0 -d 1 -p cbr -e 800 -c 0 -i 100 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.9428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 97 -a 0 -x {0.1 4194304.0 70 ------- SRM_DATA} + -t 4.9428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 97 -a 0 -x {0.1 4194304.0 70 ------- SRM_DATA} - -t 4.9428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 97 -a 0 -x {0.1 4194304.0 70 ------- SRM_DATA} h -t 4.9428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 97 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.9428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 97 -a 0 -x {0.1 4194304.0 70 ------- SRM_DATA} - -t 4.9428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 97 -a 0 -x {0.1 4194304.0 70 ------- SRM_DATA} h -t 4.9428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 97 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.94549 -s 5 -d 3 -p SRM -e 116 -c 6 -i 99 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} + -t 4.94549 -s 3 -d 2 -p SRM -e 116 -c 6 -i 99 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} - -t 4.94549 -s 3 -d 2 -p SRM -e 116 -c 6 -i 99 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} h -t 4.94549 -s 3 -d 2 -p SRM -e 116 -c 6 -i 99 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} + -t 4.94549 -s 3 -d 4 -p SRM -e 116 -c 6 -i 99 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} - -t 4.94707 -s 3 -d 4 -p SRM -e 116 -c 6 -i 99 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} h -t 4.94707 -s 3 -d 4 -p SRM -e 116 -c 6 -i 99 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} r -t 4.94853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 98 -a 0 -x {0.1 4194304.0 71 ------- SRM_DATA} + -t 4.94853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 98 -a 0 -x {0.1 4194304.0 71 ------- SRM_DATA} - -t 4.94853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 98 -a 0 -x {0.1 4194304.0 71 ------- SRM_DATA} h -t 4.94853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 98 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.95427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 100 -a 0 -x {0.1 4194304.0 72 ------- SRM_DATA} + -t 4.95427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 100 -a 0 -x {0.1 4194304.0 72 ------- SRM_DATA} - -t 4.95427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 100 -a 0 -x {0.1 4194304.0 72 ------- SRM_DATA} h -t 4.95427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 100 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.95611 -s 3 -d 2 -p SRM -e 116 -c 6 -i 99 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} + -t 4.95611 -s 2 -d 1 -p SRM -e 116 -c 6 -i 99 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} - -t 4.95611 -s 2 -d 1 -p SRM -e 116 -c 6 -i 99 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} h -t 4.95611 -s 2 -d 1 -p SRM -e 116 -c 6 -i 99 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} r -t 4.95707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 97 -a 0 -x {0.1 4194304.0 70 ------- SRM_DATA} r -t 4.95707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 97 -a 0 -x {0.1 4194304.0 70 ------- SRM_DATA} r -t 4.95769 -s 3 -d 4 -p SRM -e 116 -c 6 -i 99 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} + -t 4.96 -s 0 -d 1 -p cbr -e 800 -c 0 -i 101 -a 0 -x {0.1 4194304.0 73 ------- SRM_DATA} - -t 4.96 -s 0 -d 1 -p cbr -e 800 -c 0 -i 101 -a 0 -x {0.1 4194304.0 73 ------- SRM_DATA} h -t 4.96 -s 0 -d 1 -p cbr -e 800 -c 0 -i 101 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.9628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 98 -a 0 -x {0.1 4194304.0 71 ------- SRM_DATA} + -t 4.9628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 98 -a 0 -x {0.1 4194304.0 71 ------- SRM_DATA} - -t 4.9628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 98 -a 0 -x {0.1 4194304.0 71 ------- SRM_DATA} h -t 4.9628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 98 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.9628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 98 -a 0 -x {0.1 4194304.0 71 ------- SRM_DATA} - -t 4.9628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 98 -a 0 -x {0.1 4194304.0 71 ------- SRM_DATA} h -t 4.9628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 98 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.96673 -s 2 -d 1 -p SRM -e 116 -c 6 -i 99 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} + -t 4.96673 -s 1 -d 0 -p SRM -e 116 -c 6 -i 99 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} - -t 4.96673 -s 1 -d 0 -p SRM -e 116 -c 6 -i 99 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} h -t 4.96673 -s 1 -d 0 -p SRM -e 116 -c 6 -i 99 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} r -t 4.96853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 100 -a 0 -x {0.1 4194304.0 72 ------- SRM_DATA} + -t 4.96853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 100 -a 0 -x {0.1 4194304.0 72 ------- SRM_DATA} - -t 4.96853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 100 -a 0 -x {0.1 4194304.0 72 ------- SRM_DATA} h -t 4.96853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 100 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.97211 -s 0 -d 1 -p SRM -e 116 -c 1 -i 102 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} - -t 4.97211 -s 0 -d 1 -p SRM -e 116 -c 1 -i 102 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} h -t 4.97211 -s 0 -d 1 -p SRM -e 116 -c 1 -i 102 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} r -t 4.97427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 101 -a 0 -x {0.1 4194304.0 73 ------- SRM_DATA} + -t 4.97427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 101 -a 0 -x {0.1 4194304.0 73 ------- SRM_DATA} - -t 4.97427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 101 -a 0 -x {0.1 4194304.0 73 ------- SRM_DATA} h -t 4.97427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 101 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.97707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 98 -a 0 -x {0.1 4194304.0 71 ------- SRM_DATA} r -t 4.97707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 98 -a 0 -x {0.1 4194304.0 71 ------- SRM_DATA} r -t 4.97735 -s 1 -d 0 -p SRM -e 116 -c 6 -i 99 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} + -t 4.98 -s 0 -d 1 -p cbr -e 800 -c 0 -i 103 -a 0 -x {0.1 4194304.0 74 ------- SRM_DATA} - -t 4.98 -s 0 -d 1 -p cbr -e 800 -c 0 -i 103 -a 0 -x {0.1 4194304.0 74 ------- SRM_DATA} h -t 4.98 -s 0 -d 1 -p cbr -e 800 -c 0 -i 103 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.98273 -s 0 -d 1 -p SRM -e 116 -c 1 -i 102 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} + -t 4.98273 -s 1 -d 2 -p SRM -e 116 -c 1 -i 102 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} - -t 4.98273 -s 1 -d 2 -p SRM -e 116 -c 1 -i 102 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} h -t 4.98273 -s 1 -d 2 -p SRM -e 116 -c 1 -i 102 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} r -t 4.9828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 100 -a 0 -x {0.1 4194304.0 72 ------- SRM_DATA} + -t 4.9828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 100 -a 0 -x {0.1 4194304.0 72 ------- SRM_DATA} - -t 4.9828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 100 -a 0 -x {0.1 4194304.0 72 ------- SRM_DATA} h -t 4.9828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 100 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 4.9828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 100 -a 0 -x {0.1 4194304.0 72 ------- SRM_DATA} - -t 4.9828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 100 -a 0 -x {0.1 4194304.0 72 ------- SRM_DATA} h -t 4.9828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 100 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.98853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 101 -a 0 -x {0.1 4194304.0 73 ------- SRM_DATA} + -t 4.98853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 101 -a 0 -x {0.1 4194304.0 73 ------- SRM_DATA} - -t 4.98853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 101 -a 0 -x {0.1 4194304.0 73 ------- SRM_DATA} h -t 4.98853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 101 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.99335 -s 1 -d 2 -p SRM -e 116 -c 1 -i 102 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} + -t 4.99335 -s 2 -d 3 -p SRM -e 116 -c 1 -i 102 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} - -t 4.99335 -s 2 -d 3 -p SRM -e 116 -c 1 -i 102 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} h -t 4.99335 -s 2 -d 3 -p SRM -e 116 -c 1 -i 102 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} r -t 4.99427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 103 -a 0 -x {0.1 4194304.0 74 ------- SRM_DATA} + -t 4.99427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 103 -a 0 -x {0.1 4194304.0 74 ------- SRM_DATA} - -t 4.99427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 103 -a 0 -x {0.1 4194304.0 74 ------- SRM_DATA} h -t 4.99427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 103 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 4.99707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 100 -a 0 -x {0.1 4194304.0 72 ------- SRM_DATA} r -t 4.99707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 100 -a 0 -x {0.1 4194304.0 72 ------- SRM_DATA} + -t 5 -s 0 -d 1 -p cbr -e 800 -c 0 -i 104 -a 0 -x {0.1 4194304.0 75 ------- SRM_DATA} - -t 5 -s 0 -d 1 -p cbr -e 800 -c 0 -i 104 -a 0 -x {0.1 4194304.0 75 ------- SRM_DATA} h -t 5 -s 0 -d 1 -p cbr -e 800 -c 0 -i 104 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} m -t 5 -s 0 -n m1 -c blue -h circle -X v -t 5 sim_annotation 5 5 node 0 deleted one mark r -t 5.0028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 101 -a 0 -x {0.1 4194304.0 73 ------- SRM_DATA} + -t 5.0028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 101 -a 0 -x {0.1 4194304.0 73 ------- SRM_DATA} - -t 5.0028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 101 -a 0 -x {0.1 4194304.0 73 ------- SRM_DATA} h -t 5.0028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 101 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.0028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 101 -a 0 -x {0.1 4194304.0 73 ------- SRM_DATA} - -t 5.0028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 101 -a 0 -x {0.1 4194304.0 73 ------- SRM_DATA} h -t 5.0028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 101 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.00377 -s 2 -d 1 -p SRM -e 116 -c 3 -i 105 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} - -t 5.00377 -s 2 -d 1 -p SRM -e 116 -c 3 -i 105 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} h -t 5.00377 -s 2 -d 1 -p SRM -e 116 -c 3 -i 105 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} + -t 5.00377 -s 2 -d 3 -p SRM -e 116 -c 3 -i 105 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} - -t 5.00377 -s 2 -d 3 -p SRM -e 116 -c 3 -i 105 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} h -t 5.00377 -s 2 -d 3 -p SRM -e 116 -c 3 -i 105 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} r -t 5.00397 -s 2 -d 3 -p SRM -e 116 -c 1 -i 102 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} + -t 5.00397 -s 3 -d 4 -p SRM -e 116 -c 1 -i 102 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} + -t 5.00397 -s 3 -d 5 -p SRM -e 116 -c 1 -i 102 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} - -t 5.00707 -s 3 -d 4 -p SRM -e 116 -c 1 -i 102 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} h -t 5.00707 -s 3 -d 4 -p SRM -e 116 -c 1 -i 102 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} - -t 5.00707 -s 3 -d 5 -p SRM -e 116 -c 1 -i 102 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} h -t 5.00707 -s 3 -d 5 -p SRM -e 116 -c 1 -i 102 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} r -t 5.00853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 103 -a 0 -x {0.1 4194304.0 74 ------- SRM_DATA} + -t 5.00853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 103 -a 0 -x {0.1 4194304.0 74 ------- SRM_DATA} - -t 5.00853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 103 -a 0 -x {0.1 4194304.0 74 ------- SRM_DATA} h -t 5.00853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 103 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.01427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 104 -a 0 -x {0.1 4194304.0 75 ------- SRM_DATA} + -t 5.01427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 104 -a 0 -x {0.1 4194304.0 75 ------- SRM_DATA} - -t 5.01427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 104 -a 0 -x {0.1 4194304.0 75 ------- SRM_DATA} h -t 5.01427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 104 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.01439 -s 2 -d 1 -p SRM -e 116 -c 3 -i 105 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} + -t 5.01439 -s 1 -d 0 -p SRM -e 116 -c 3 -i 105 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} - -t 5.01439 -s 1 -d 0 -p SRM -e 116 -c 3 -i 105 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} h -t 5.01439 -s 1 -d 0 -p SRM -e 116 -c 3 -i 105 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} r -t 5.01439 -s 2 -d 3 -p SRM -e 116 -c 3 -i 105 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} + -t 5.01439 -s 3 -d 4 -p SRM -e 116 -c 3 -i 105 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} - -t 5.01439 -s 3 -d 4 -p SRM -e 116 -c 3 -i 105 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} h -t 5.01439 -s 3 -d 4 -p SRM -e 116 -c 3 -i 105 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} + -t 5.01439 -s 3 -d 5 -p SRM -e 116 -c 3 -i 105 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} - -t 5.01439 -s 3 -d 5 -p SRM -e 116 -c 3 -i 105 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} h -t 5.01439 -s 3 -d 5 -p SRM -e 116 -c 3 -i 105 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} r -t 5.01707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 101 -a 0 -x {0.1 4194304.0 73 ------- SRM_DATA} r -t 5.01707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 101 -a 0 -x {0.1 4194304.0 73 ------- SRM_DATA} r -t 5.01769 -s 3 -d 4 -p SRM -e 116 -c 1 -i 102 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} r -t 5.01769 -s 3 -d 5 -p SRM -e 116 -c 1 -i 102 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} + -t 5.0195 -s 4 -d 3 -p SRM -e 116 -c 5 -i 106 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} - -t 5.0195 -s 4 -d 3 -p SRM -e 116 -c 5 -i 106 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} h -t 5.0195 -s 4 -d 3 -p SRM -e 116 -c 5 -i 106 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} + -t 5.02 -s 0 -d 1 -p cbr -e 800 -c 0 -i 107 -a 0 -x {0.1 4194304.0 76 ------- SRM_DATA} - -t 5.02 -s 0 -d 1 -p cbr -e 800 -c 0 -i 107 -a 0 -x {0.1 4194304.0 76 ------- SRM_DATA} h -t 5.02 -s 0 -d 1 -p cbr -e 800 -c 0 -i 107 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.0228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 103 -a 0 -x {0.1 4194304.0 74 ------- SRM_DATA} + -t 5.0228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 103 -a 0 -x {0.1 4194304.0 74 ------- SRM_DATA} - -t 5.0228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 103 -a 0 -x {0.1 4194304.0 74 ------- SRM_DATA} h -t 5.0228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 103 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.0228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 103 -a 0 -x {0.1 4194304.0 74 ------- SRM_DATA} - -t 5.0228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 103 -a 0 -x {0.1 4194304.0 74 ------- SRM_DATA} h -t 5.0228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 103 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.02501 -s 1 -d 0 -p SRM -e 116 -c 3 -i 105 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} r -t 5.02501 -s 3 -d 4 -p SRM -e 116 -c 3 -i 105 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} r -t 5.02501 -s 3 -d 5 -p SRM -e 116 -c 3 -i 105 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} r -t 5.02853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 104 -a 0 -x {0.1 4194304.0 75 ------- SRM_DATA} + -t 5.02853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 104 -a 0 -x {0.1 4194304.0 75 ------- SRM_DATA} - -t 5.02853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 104 -a 0 -x {0.1 4194304.0 75 ------- SRM_DATA} h -t 5.02853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 104 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.03012 -s 4 -d 3 -p SRM -e 116 -c 5 -i 106 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} + -t 5.03012 -s 3 -d 2 -p SRM -e 116 -c 5 -i 106 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} - -t 5.03012 -s 3 -d 2 -p SRM -e 116 -c 5 -i 106 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} h -t 5.03012 -s 3 -d 2 -p SRM -e 116 -c 5 -i 106 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} + -t 5.03012 -s 3 -d 5 -p SRM -e 116 -c 5 -i 106 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} - -t 5.03012 -s 3 -d 5 -p SRM -e 116 -c 5 -i 106 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} h -t 5.03012 -s 3 -d 5 -p SRM -e 116 -c 5 -i 106 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} + -t 5.03088 -s 3 -d 2 -p SRM -e 116 -c 4 -i 108 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} - -t 5.03088 -s 3 -d 2 -p SRM -e 116 -c 4 -i 108 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} h -t 5.03088 -s 3 -d 2 -p SRM -e 116 -c 4 -i 108 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} + -t 5.03088 -s 3 -d 4 -p SRM -e 116 -c 4 -i 108 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} - -t 5.03088 -s 3 -d 4 -p SRM -e 116 -c 4 -i 108 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} h -t 5.03088 -s 3 -d 4 -p SRM -e 116 -c 4 -i 108 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} + -t 5.03088 -s 3 -d 5 -p SRM -e 116 -c 4 -i 108 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} - -t 5.03088 -s 3 -d 5 -p SRM -e 116 -c 4 -i 108 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} h -t 5.03088 -s 3 -d 5 -p SRM -e 116 -c 4 -i 108 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} r -t 5.03427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 107 -a 0 -x {0.1 4194304.0 76 ------- SRM_DATA} + -t 5.03427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 107 -a 0 -x {0.1 4194304.0 76 ------- SRM_DATA} - -t 5.03427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 107 -a 0 -x {0.1 4194304.0 76 ------- SRM_DATA} h -t 5.03427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 107 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.03707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 103 -a 0 -x {0.1 4194304.0 74 ------- SRM_DATA} r -t 5.03707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 103 -a 0 -x {0.1 4194304.0 74 ------- SRM_DATA} + -t 5.04 -s 0 -d 1 -p cbr -e 800 -c 0 -i 109 -a 0 -x {0.1 4194304.0 77 ------- SRM_DATA} - -t 5.04 -s 0 -d 1 -p cbr -e 800 -c 0 -i 109 -a 0 -x {0.1 4194304.0 77 ------- SRM_DATA} h -t 5.04 -s 0 -d 1 -p cbr -e 800 -c 0 -i 109 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.04073 -s 3 -d 2 -p SRM -e 116 -c 5 -i 106 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} + -t 5.04073 -s 2 -d 1 -p SRM -e 116 -c 5 -i 106 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} - -t 5.04073 -s 2 -d 1 -p SRM -e 116 -c 5 -i 106 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} h -t 5.04073 -s 2 -d 1 -p SRM -e 116 -c 5 -i 106 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} r -t 5.04073 -s 3 -d 5 -p SRM -e 116 -c 5 -i 106 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} r -t 5.0415 -s 3 -d 2 -p SRM -e 116 -c 4 -i 108 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} + -t 5.0415 -s 2 -d 1 -p SRM -e 116 -c 4 -i 108 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} - -t 5.0415 -s 2 -d 1 -p SRM -e 116 -c 4 -i 108 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} h -t 5.0415 -s 2 -d 1 -p SRM -e 116 -c 4 -i 108 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} r -t 5.0415 -s 3 -d 4 -p SRM -e 116 -c 4 -i 108 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} r -t 5.0415 -s 3 -d 5 -p SRM -e 116 -c 4 -i 108 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} r -t 5.0428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 104 -a 0 -x {0.1 4194304.0 75 ------- SRM_DATA} + -t 5.0428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 104 -a 0 -x {0.1 4194304.0 75 ------- SRM_DATA} - -t 5.0428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 104 -a 0 -x {0.1 4194304.0 75 ------- SRM_DATA} h -t 5.0428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 104 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.0428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 104 -a 0 -x {0.1 4194304.0 75 ------- SRM_DATA} - -t 5.0428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 104 -a 0 -x {0.1 4194304.0 75 ------- SRM_DATA} h -t 5.0428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 104 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.04853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 107 -a 0 -x {0.1 4194304.0 76 ------- SRM_DATA} + -t 5.04853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 107 -a 0 -x {0.1 4194304.0 76 ------- SRM_DATA} - -t 5.04853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 107 -a 0 -x {0.1 4194304.0 76 ------- SRM_DATA} h -t 5.04853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 107 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.05135 -s 2 -d 1 -p SRM -e 116 -c 5 -i 106 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} + -t 5.05135 -s 1 -d 0 -p SRM -e 116 -c 5 -i 106 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} - -t 5.05135 -s 1 -d 0 -p SRM -e 116 -c 5 -i 106 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} h -t 5.05135 -s 1 -d 0 -p SRM -e 116 -c 5 -i 106 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} r -t 5.05212 -s 2 -d 1 -p SRM -e 116 -c 4 -i 108 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} + -t 5.05212 -s 1 -d 0 -p SRM -e 116 -c 4 -i 108 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} - -t 5.05212 -s 1 -d 0 -p SRM -e 116 -c 4 -i 108 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} h -t 5.05212 -s 1 -d 0 -p SRM -e 116 -c 4 -i 108 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} r -t 5.05427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 109 -a 0 -x {0.1 4194304.0 77 ------- SRM_DATA} + -t 5.05427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 109 -a 0 -x {0.1 4194304.0 77 ------- SRM_DATA} - -t 5.05427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 109 -a 0 -x {0.1 4194304.0 77 ------- SRM_DATA} h -t 5.05427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 109 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.05707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 104 -a 0 -x {0.1 4194304.0 75 ------- SRM_DATA} r -t 5.05707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 104 -a 0 -x {0.1 4194304.0 75 ------- SRM_DATA} + -t 5.06 -s 0 -d 1 -p cbr -e 800 -c 0 -i 110 -a 0 -x {0.1 4194304.0 78 ------- SRM_DATA} - -t 5.06 -s 0 -d 1 -p cbr -e 800 -c 0 -i 110 -a 0 -x {0.1 4194304.0 78 ------- SRM_DATA} h -t 5.06 -s 0 -d 1 -p cbr -e 800 -c 0 -i 110 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.06197 -s 1 -d 0 -p SRM -e 116 -c 5 -i 106 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} r -t 5.06274 -s 1 -d 0 -p SRM -e 116 -c 4 -i 108 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} r -t 5.0628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 107 -a 0 -x {0.1 4194304.0 76 ------- SRM_DATA} + -t 5.0628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 107 -a 0 -x {0.1 4194304.0 76 ------- SRM_DATA} - -t 5.0628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 107 -a 0 -x {0.1 4194304.0 76 ------- SRM_DATA} h -t 5.0628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 107 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.0628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 107 -a 0 -x {0.1 4194304.0 76 ------- SRM_DATA} - -t 5.0628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 107 -a 0 -x {0.1 4194304.0 76 ------- SRM_DATA} h -t 5.0628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 107 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.06853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 109 -a 0 -x {0.1 4194304.0 77 ------- SRM_DATA} + -t 5.06853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 109 -a 0 -x {0.1 4194304.0 77 ------- SRM_DATA} - -t 5.06853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 109 -a 0 -x {0.1 4194304.0 77 ------- SRM_DATA} h -t 5.06853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 109 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.07427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 110 -a 0 -x {0.1 4194304.0 78 ------- SRM_DATA} + -t 5.07427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 110 -a 0 -x {0.1 4194304.0 78 ------- SRM_DATA} - -t 5.07427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 110 -a 0 -x {0.1 4194304.0 78 ------- SRM_DATA} h -t 5.07427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 110 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.07707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 107 -a 0 -x {0.1 4194304.0 76 ------- SRM_DATA} r -t 5.07707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 107 -a 0 -x {0.1 4194304.0 76 ------- SRM_DATA} + -t 5.08 -s 0 -d 1 -p cbr -e 800 -c 0 -i 111 -a 0 -x {0.1 4194304.0 79 ------- SRM_DATA} - -t 5.08 -s 0 -d 1 -p cbr -e 800 -c 0 -i 111 -a 0 -x {0.1 4194304.0 79 ------- SRM_DATA} h -t 5.08 -s 0 -d 1 -p cbr -e 800 -c 0 -i 111 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.0828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 109 -a 0 -x {0.1 4194304.0 77 ------- SRM_DATA} + -t 5.0828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 109 -a 0 -x {0.1 4194304.0 77 ------- SRM_DATA} - -t 5.0828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 109 -a 0 -x {0.1 4194304.0 77 ------- SRM_DATA} h -t 5.0828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 109 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.0828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 109 -a 0 -x {0.1 4194304.0 77 ------- SRM_DATA} - -t 5.0828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 109 -a 0 -x {0.1 4194304.0 77 ------- SRM_DATA} h -t 5.0828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 109 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.08853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 110 -a 0 -x {0.1 4194304.0 78 ------- SRM_DATA} + -t 5.08853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 110 -a 0 -x {0.1 4194304.0 78 ------- SRM_DATA} - -t 5.08853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 110 -a 0 -x {0.1 4194304.0 78 ------- SRM_DATA} h -t 5.08853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 110 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.09427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 111 -a 0 -x {0.1 4194304.0 79 ------- SRM_DATA} + -t 5.09427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 111 -a 0 -x {0.1 4194304.0 79 ------- SRM_DATA} - -t 5.09427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 111 -a 0 -x {0.1 4194304.0 79 ------- SRM_DATA} h -t 5.09427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 111 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.09707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 109 -a 0 -x {0.1 4194304.0 77 ------- SRM_DATA} r -t 5.09707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 109 -a 0 -x {0.1 4194304.0 77 ------- SRM_DATA} + -t 5.1 -s 0 -d 1 -p cbr -e 800 -c 0 -i 112 -a 0 -x {0.1 4194304.0 80 ------- SRM_DATA} - -t 5.1 -s 0 -d 1 -p cbr -e 800 -c 0 -i 112 -a 0 -x {0.1 4194304.0 80 ------- SRM_DATA} h -t 5.1 -s 0 -d 1 -p cbr -e 800 -c 0 -i 112 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.1028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 110 -a 0 -x {0.1 4194304.0 78 ------- SRM_DATA} + -t 5.1028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 110 -a 0 -x {0.1 4194304.0 78 ------- SRM_DATA} - -t 5.1028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 110 -a 0 -x {0.1 4194304.0 78 ------- SRM_DATA} h -t 5.1028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 110 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.1028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 110 -a 0 -x {0.1 4194304.0 78 ------- SRM_DATA} - -t 5.1028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 110 -a 0 -x {0.1 4194304.0 78 ------- SRM_DATA} h -t 5.1028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 110 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.10853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 111 -a 0 -x {0.1 4194304.0 79 ------- SRM_DATA} + -t 5.10853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 111 -a 0 -x {0.1 4194304.0 79 ------- SRM_DATA} - -t 5.10853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 111 -a 0 -x {0.1 4194304.0 79 ------- SRM_DATA} h -t 5.10853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 111 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.11427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 112 -a 0 -x {0.1 4194304.0 80 ------- SRM_DATA} + -t 5.11427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 112 -a 0 -x {0.1 4194304.0 80 ------- SRM_DATA} - -t 5.11427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 112 -a 0 -x {0.1 4194304.0 80 ------- SRM_DATA} h -t 5.11427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 112 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.11707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 110 -a 0 -x {0.1 4194304.0 78 ------- SRM_DATA} r -t 5.11707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 110 -a 0 -x {0.1 4194304.0 78 ------- SRM_DATA} + -t 5.12 -s 0 -d 1 -p cbr -e 800 -c 0 -i 113 -a 0 -x {0.1 4194304.0 81 ------- SRM_DATA} - -t 5.12 -s 0 -d 1 -p cbr -e 800 -c 0 -i 113 -a 0 -x {0.1 4194304.0 81 ------- SRM_DATA} h -t 5.12 -s 0 -d 1 -p cbr -e 800 -c 0 -i 113 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.1228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 111 -a 0 -x {0.1 4194304.0 79 ------- SRM_DATA} + -t 5.1228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 111 -a 0 -x {0.1 4194304.0 79 ------- SRM_DATA} - -t 5.1228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 111 -a 0 -x {0.1 4194304.0 79 ------- SRM_DATA} h -t 5.1228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 111 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.1228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 111 -a 0 -x {0.1 4194304.0 79 ------- SRM_DATA} - -t 5.1228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 111 -a 0 -x {0.1 4194304.0 79 ------- SRM_DATA} h -t 5.1228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 111 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.12853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 112 -a 0 -x {0.1 4194304.0 80 ------- SRM_DATA} + -t 5.12853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 112 -a 0 -x {0.1 4194304.0 80 ------- SRM_DATA} - -t 5.12853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 112 -a 0 -x {0.1 4194304.0 80 ------- SRM_DATA} h -t 5.12853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 112 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.13427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 113 -a 0 -x {0.1 4194304.0 81 ------- SRM_DATA} + -t 5.13427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 113 -a 0 -x {0.1 4194304.0 81 ------- SRM_DATA} - -t 5.13427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 113 -a 0 -x {0.1 4194304.0 81 ------- SRM_DATA} h -t 5.13427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 113 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.13707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 111 -a 0 -x {0.1 4194304.0 79 ------- SRM_DATA} r -t 5.13707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 111 -a 0 -x {0.1 4194304.0 79 ------- SRM_DATA} + -t 5.14 -s 0 -d 1 -p cbr -e 800 -c 0 -i 114 -a 0 -x {0.1 4194304.0 82 ------- SRM_DATA} - -t 5.14 -s 0 -d 1 -p cbr -e 800 -c 0 -i 114 -a 0 -x {0.1 4194304.0 82 ------- SRM_DATA} h -t 5.14 -s 0 -d 1 -p cbr -e 800 -c 0 -i 114 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.1428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 112 -a 0 -x {0.1 4194304.0 80 ------- SRM_DATA} + -t 5.1428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 112 -a 0 -x {0.1 4194304.0 80 ------- SRM_DATA} - -t 5.1428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 112 -a 0 -x {0.1 4194304.0 80 ------- SRM_DATA} h -t 5.1428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 112 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.1428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 112 -a 0 -x {0.1 4194304.0 80 ------- SRM_DATA} - -t 5.1428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 112 -a 0 -x {0.1 4194304.0 80 ------- SRM_DATA} h -t 5.1428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 112 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.14853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 113 -a 0 -x {0.1 4194304.0 81 ------- SRM_DATA} + -t 5.14853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 113 -a 0 -x {0.1 4194304.0 81 ------- SRM_DATA} - -t 5.14853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 113 -a 0 -x {0.1 4194304.0 81 ------- SRM_DATA} h -t 5.14853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 113 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.15427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 114 -a 0 -x {0.1 4194304.0 82 ------- SRM_DATA} + -t 5.15427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 114 -a 0 -x {0.1 4194304.0 82 ------- SRM_DATA} - -t 5.15427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 114 -a 0 -x {0.1 4194304.0 82 ------- SRM_DATA} h -t 5.15427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 114 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.15707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 112 -a 0 -x {0.1 4194304.0 80 ------- SRM_DATA} r -t 5.15707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 112 -a 0 -x {0.1 4194304.0 80 ------- SRM_DATA} + -t 5.16 -s 0 -d 1 -p cbr -e 800 -c 0 -i 115 -a 0 -x {0.1 4194304.0 83 ------- SRM_DATA} - -t 5.16 -s 0 -d 1 -p cbr -e 800 -c 0 -i 115 -a 0 -x {0.1 4194304.0 83 ------- SRM_DATA} h -t 5.16 -s 0 -d 1 -p cbr -e 800 -c 0 -i 115 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.1628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 113 -a 0 -x {0.1 4194304.0 81 ------- SRM_DATA} + -t 5.1628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 113 -a 0 -x {0.1 4194304.0 81 ------- SRM_DATA} - -t 5.1628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 113 -a 0 -x {0.1 4194304.0 81 ------- SRM_DATA} h -t 5.1628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 113 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.1628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 113 -a 0 -x {0.1 4194304.0 81 ------- SRM_DATA} - -t 5.1628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 113 -a 0 -x {0.1 4194304.0 81 ------- SRM_DATA} h -t 5.1628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 113 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.16853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 114 -a 0 -x {0.1 4194304.0 82 ------- SRM_DATA} + -t 5.16853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 114 -a 0 -x {0.1 4194304.0 82 ------- SRM_DATA} - -t 5.16853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 114 -a 0 -x {0.1 4194304.0 82 ------- SRM_DATA} h -t 5.16853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 114 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.17427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 115 -a 0 -x {0.1 4194304.0 83 ------- SRM_DATA} + -t 5.17427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 115 -a 0 -x {0.1 4194304.0 83 ------- SRM_DATA} - -t 5.17427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 115 -a 0 -x {0.1 4194304.0 83 ------- SRM_DATA} h -t 5.17427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 115 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.17707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 113 -a 0 -x {0.1 4194304.0 81 ------- SRM_DATA} r -t 5.17707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 113 -a 0 -x {0.1 4194304.0 81 ------- SRM_DATA} + -t 5.18 -s 0 -d 1 -p cbr -e 800 -c 0 -i 116 -a 0 -x {0.1 4194304.0 84 ------- SRM_DATA} - -t 5.18 -s 0 -d 1 -p cbr -e 800 -c 0 -i 116 -a 0 -x {0.1 4194304.0 84 ------- SRM_DATA} h -t 5.18 -s 0 -d 1 -p cbr -e 800 -c 0 -i 116 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.1828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 114 -a 0 -x {0.1 4194304.0 82 ------- SRM_DATA} + -t 5.1828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 114 -a 0 -x {0.1 4194304.0 82 ------- SRM_DATA} - -t 5.1828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 114 -a 0 -x {0.1 4194304.0 82 ------- SRM_DATA} h -t 5.1828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 114 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.1828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 114 -a 0 -x {0.1 4194304.0 82 ------- SRM_DATA} - -t 5.1828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 114 -a 0 -x {0.1 4194304.0 82 ------- SRM_DATA} h -t 5.1828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 114 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.18853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 115 -a 0 -x {0.1 4194304.0 83 ------- SRM_DATA} + -t 5.18853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 115 -a 0 -x {0.1 4194304.0 83 ------- SRM_DATA} - -t 5.18853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 115 -a 0 -x {0.1 4194304.0 83 ------- SRM_DATA} h -t 5.18853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 115 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.19427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 116 -a 0 -x {0.1 4194304.0 84 ------- SRM_DATA} + -t 5.19427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 116 -a 0 -x {0.1 4194304.0 84 ------- SRM_DATA} - -t 5.19427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 116 -a 0 -x {0.1 4194304.0 84 ------- SRM_DATA} h -t 5.19427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 116 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.19707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 114 -a 0 -x {0.1 4194304.0 82 ------- SRM_DATA} r -t 5.19707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 114 -a 0 -x {0.1 4194304.0 82 ------- SRM_DATA} + -t 5.2 -s 0 -d 1 -p cbr -e 800 -c 0 -i 117 -a 0 -x {0.1 4194304.0 85 ------- SRM_DATA} - -t 5.2 -s 0 -d 1 -p cbr -e 800 -c 0 -i 117 -a 0 -x {0.1 4194304.0 85 ------- SRM_DATA} h -t 5.2 -s 0 -d 1 -p cbr -e 800 -c 0 -i 117 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.2028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 115 -a 0 -x {0.1 4194304.0 83 ------- SRM_DATA} + -t 5.2028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 115 -a 0 -x {0.1 4194304.0 83 ------- SRM_DATA} - -t 5.2028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 115 -a 0 -x {0.1 4194304.0 83 ------- SRM_DATA} h -t 5.2028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 115 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.2028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 115 -a 0 -x {0.1 4194304.0 83 ------- SRM_DATA} - -t 5.2028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 115 -a 0 -x {0.1 4194304.0 83 ------- SRM_DATA} h -t 5.2028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 115 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.20853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 116 -a 0 -x {0.1 4194304.0 84 ------- SRM_DATA} + -t 5.20853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 116 -a 0 -x {0.1 4194304.0 84 ------- SRM_DATA} - -t 5.20853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 116 -a 0 -x {0.1 4194304.0 84 ------- SRM_DATA} h -t 5.20853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 116 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.21427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 117 -a 0 -x {0.1 4194304.0 85 ------- SRM_DATA} + -t 5.21427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 117 -a 0 -x {0.1 4194304.0 85 ------- SRM_DATA} - -t 5.21427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 117 -a 0 -x {0.1 4194304.0 85 ------- SRM_DATA} h -t 5.21427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 117 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.21707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 115 -a 0 -x {0.1 4194304.0 83 ------- SRM_DATA} r -t 5.21707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 115 -a 0 -x {0.1 4194304.0 83 ------- SRM_DATA} + -t 5.22 -s 0 -d 1 -p cbr -e 800 -c 0 -i 118 -a 0 -x {0.1 4194304.0 86 ------- SRM_DATA} - -t 5.22 -s 0 -d 1 -p cbr -e 800 -c 0 -i 118 -a 0 -x {0.1 4194304.0 86 ------- SRM_DATA} h -t 5.22 -s 0 -d 1 -p cbr -e 800 -c 0 -i 118 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.2228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 116 -a 0 -x {0.1 4194304.0 84 ------- SRM_DATA} + -t 5.2228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 116 -a 0 -x {0.1 4194304.0 84 ------- SRM_DATA} - -t 5.2228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 116 -a 0 -x {0.1 4194304.0 84 ------- SRM_DATA} h -t 5.2228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 116 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.2228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 116 -a 0 -x {0.1 4194304.0 84 ------- SRM_DATA} - -t 5.2228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 116 -a 0 -x {0.1 4194304.0 84 ------- SRM_DATA} h -t 5.2228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 116 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.22853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 117 -a 0 -x {0.1 4194304.0 85 ------- SRM_DATA} + -t 5.22853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 117 -a 0 -x {0.1 4194304.0 85 ------- SRM_DATA} - -t 5.22853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 117 -a 0 -x {0.1 4194304.0 85 ------- SRM_DATA} h -t 5.22853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 117 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.23427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 118 -a 0 -x {0.1 4194304.0 86 ------- SRM_DATA} + -t 5.23427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 118 -a 0 -x {0.1 4194304.0 86 ------- SRM_DATA} - -t 5.23427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 118 -a 0 -x {0.1 4194304.0 86 ------- SRM_DATA} h -t 5.23427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 118 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.23707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 116 -a 0 -x {0.1 4194304.0 84 ------- SRM_DATA} r -t 5.23707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 116 -a 0 -x {0.1 4194304.0 84 ------- SRM_DATA} + -t 5.24 -s 0 -d 1 -p cbr -e 800 -c 0 -i 119 -a 0 -x {0.1 4194304.0 87 ------- SRM_DATA} - -t 5.24 -s 0 -d 1 -p cbr -e 800 -c 0 -i 119 -a 0 -x {0.1 4194304.0 87 ------- SRM_DATA} h -t 5.24 -s 0 -d 1 -p cbr -e 800 -c 0 -i 119 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.2428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 117 -a 0 -x {0.1 4194304.0 85 ------- SRM_DATA} + -t 5.2428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 117 -a 0 -x {0.1 4194304.0 85 ------- SRM_DATA} - -t 5.2428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 117 -a 0 -x {0.1 4194304.0 85 ------- SRM_DATA} h -t 5.2428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 117 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.2428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 117 -a 0 -x {0.1 4194304.0 85 ------- SRM_DATA} - -t 5.2428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 117 -a 0 -x {0.1 4194304.0 85 ------- SRM_DATA} h -t 5.2428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 117 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.24853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 118 -a 0 -x {0.1 4194304.0 86 ------- SRM_DATA} + -t 5.24853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 118 -a 0 -x {0.1 4194304.0 86 ------- SRM_DATA} - -t 5.24853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 118 -a 0 -x {0.1 4194304.0 86 ------- SRM_DATA} h -t 5.24853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 118 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.25427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 119 -a 0 -x {0.1 4194304.0 87 ------- SRM_DATA} + -t 5.25427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 119 -a 0 -x {0.1 4194304.0 87 ------- SRM_DATA} - -t 5.25427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 119 -a 0 -x {0.1 4194304.0 87 ------- SRM_DATA} h -t 5.25427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 119 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.25707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 117 -a 0 -x {0.1 4194304.0 85 ------- SRM_DATA} r -t 5.25707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 117 -a 0 -x {0.1 4194304.0 85 ------- SRM_DATA} + -t 5.26 -s 0 -d 1 -p cbr -e 800 -c 0 -i 120 -a 0 -x {0.1 4194304.0 88 ------- SRM_DATA} - -t 5.26 -s 0 -d 1 -p cbr -e 800 -c 0 -i 120 -a 0 -x {0.1 4194304.0 88 ------- SRM_DATA} h -t 5.26 -s 0 -d 1 -p cbr -e 800 -c 0 -i 120 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.2628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 118 -a 0 -x {0.1 4194304.0 86 ------- SRM_DATA} + -t 5.2628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 118 -a 0 -x {0.1 4194304.0 86 ------- SRM_DATA} - -t 5.2628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 118 -a 0 -x {0.1 4194304.0 86 ------- SRM_DATA} h -t 5.2628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 118 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.2628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 118 -a 0 -x {0.1 4194304.0 86 ------- SRM_DATA} - -t 5.2628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 118 -a 0 -x {0.1 4194304.0 86 ------- SRM_DATA} h -t 5.2628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 118 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.26853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 119 -a 0 -x {0.1 4194304.0 87 ------- SRM_DATA} + -t 5.26853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 119 -a 0 -x {0.1 4194304.0 87 ------- SRM_DATA} - -t 5.26853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 119 -a 0 -x {0.1 4194304.0 87 ------- SRM_DATA} h -t 5.26853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 119 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.27427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 120 -a 0 -x {0.1 4194304.0 88 ------- SRM_DATA} + -t 5.27427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 120 -a 0 -x {0.1 4194304.0 88 ------- SRM_DATA} - -t 5.27427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 120 -a 0 -x {0.1 4194304.0 88 ------- SRM_DATA} h -t 5.27427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 120 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.27707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 118 -a 0 -x {0.1 4194304.0 86 ------- SRM_DATA} r -t 5.27707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 118 -a 0 -x {0.1 4194304.0 86 ------- SRM_DATA} + -t 5.28 -s 0 -d 1 -p cbr -e 800 -c 0 -i 121 -a 0 -x {0.1 4194304.0 89 ------- SRM_DATA} - -t 5.28 -s 0 -d 1 -p cbr -e 800 -c 0 -i 121 -a 0 -x {0.1 4194304.0 89 ------- SRM_DATA} h -t 5.28 -s 0 -d 1 -p cbr -e 800 -c 0 -i 121 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.2828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 119 -a 0 -x {0.1 4194304.0 87 ------- SRM_DATA} + -t 5.2828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 119 -a 0 -x {0.1 4194304.0 87 ------- SRM_DATA} - -t 5.2828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 119 -a 0 -x {0.1 4194304.0 87 ------- SRM_DATA} h -t 5.2828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 119 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.2828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 119 -a 0 -x {0.1 4194304.0 87 ------- SRM_DATA} - -t 5.2828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 119 -a 0 -x {0.1 4194304.0 87 ------- SRM_DATA} h -t 5.2828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 119 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.28853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 120 -a 0 -x {0.1 4194304.0 88 ------- SRM_DATA} + -t 5.28853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 120 -a 0 -x {0.1 4194304.0 88 ------- SRM_DATA} - -t 5.28853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 120 -a 0 -x {0.1 4194304.0 88 ------- SRM_DATA} h -t 5.28853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 120 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.29427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 121 -a 0 -x {0.1 4194304.0 89 ------- SRM_DATA} + -t 5.29427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 121 -a 0 -x {0.1 4194304.0 89 ------- SRM_DATA} - -t 5.29427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 121 -a 0 -x {0.1 4194304.0 89 ------- SRM_DATA} h -t 5.29427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 121 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.29707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 119 -a 0 -x {0.1 4194304.0 87 ------- SRM_DATA} r -t 5.29707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 119 -a 0 -x {0.1 4194304.0 87 ------- SRM_DATA} + -t 5.3 -s 0 -d 1 -p cbr -e 800 -c 0 -i 122 -a 0 -x {0.1 4194304.0 90 ------- SRM_DATA} - -t 5.3 -s 0 -d 1 -p cbr -e 800 -c 0 -i 122 -a 0 -x {0.1 4194304.0 90 ------- SRM_DATA} h -t 5.3 -s 0 -d 1 -p cbr -e 800 -c 0 -i 122 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.3028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 120 -a 0 -x {0.1 4194304.0 88 ------- SRM_DATA} + -t 5.3028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 120 -a 0 -x {0.1 4194304.0 88 ------- SRM_DATA} - -t 5.3028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 120 -a 0 -x {0.1 4194304.0 88 ------- SRM_DATA} h -t 5.3028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 120 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.3028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 120 -a 0 -x {0.1 4194304.0 88 ------- SRM_DATA} - -t 5.3028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 120 -a 0 -x {0.1 4194304.0 88 ------- SRM_DATA} h -t 5.3028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 120 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.30853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 121 -a 0 -x {0.1 4194304.0 89 ------- SRM_DATA} + -t 5.30853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 121 -a 0 -x {0.1 4194304.0 89 ------- SRM_DATA} - -t 5.30853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 121 -a 0 -x {0.1 4194304.0 89 ------- SRM_DATA} h -t 5.30853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 121 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.31427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 122 -a 0 -x {0.1 4194304.0 90 ------- SRM_DATA} + -t 5.31427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 122 -a 0 -x {0.1 4194304.0 90 ------- SRM_DATA} - -t 5.31427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 122 -a 0 -x {0.1 4194304.0 90 ------- SRM_DATA} h -t 5.31427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 122 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.31707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 120 -a 0 -x {0.1 4194304.0 88 ------- SRM_DATA} r -t 5.31707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 120 -a 0 -x {0.1 4194304.0 88 ------- SRM_DATA} + -t 5.32 -s 0 -d 1 -p cbr -e 800 -c 0 -i 123 -a 0 -x {0.1 4194304.0 91 ------- SRM_DATA} - -t 5.32 -s 0 -d 1 -p cbr -e 800 -c 0 -i 123 -a 0 -x {0.1 4194304.0 91 ------- SRM_DATA} h -t 5.32 -s 0 -d 1 -p cbr -e 800 -c 0 -i 123 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.3228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 121 -a 0 -x {0.1 4194304.0 89 ------- SRM_DATA} + -t 5.3228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 121 -a 0 -x {0.1 4194304.0 89 ------- SRM_DATA} - -t 5.3228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 121 -a 0 -x {0.1 4194304.0 89 ------- SRM_DATA} h -t 5.3228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 121 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.3228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 121 -a 0 -x {0.1 4194304.0 89 ------- SRM_DATA} - -t 5.3228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 121 -a 0 -x {0.1 4194304.0 89 ------- SRM_DATA} h -t 5.3228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 121 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.32853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 122 -a 0 -x {0.1 4194304.0 90 ------- SRM_DATA} + -t 5.32853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 122 -a 0 -x {0.1 4194304.0 90 ------- SRM_DATA} - -t 5.32853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 122 -a 0 -x {0.1 4194304.0 90 ------- SRM_DATA} h -t 5.32853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 122 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.33427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 123 -a 0 -x {0.1 4194304.0 91 ------- SRM_DATA} + -t 5.33427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 123 -a 0 -x {0.1 4194304.0 91 ------- SRM_DATA} - -t 5.33427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 123 -a 0 -x {0.1 4194304.0 91 ------- SRM_DATA} h -t 5.33427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 123 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.33707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 121 -a 0 -x {0.1 4194304.0 89 ------- SRM_DATA} r -t 5.33707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 121 -a 0 -x {0.1 4194304.0 89 ------- SRM_DATA} + -t 5.34 -s 0 -d 1 -p cbr -e 800 -c 0 -i 124 -a 0 -x {0.1 4194304.0 92 ------- SRM_DATA} - -t 5.34 -s 0 -d 1 -p cbr -e 800 -c 0 -i 124 -a 0 -x {0.1 4194304.0 92 ------- SRM_DATA} h -t 5.34 -s 0 -d 1 -p cbr -e 800 -c 0 -i 124 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.3428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 122 -a 0 -x {0.1 4194304.0 90 ------- SRM_DATA} + -t 5.3428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 122 -a 0 -x {0.1 4194304.0 90 ------- SRM_DATA} - -t 5.3428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 122 -a 0 -x {0.1 4194304.0 90 ------- SRM_DATA} h -t 5.3428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 122 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.3428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 122 -a 0 -x {0.1 4194304.0 90 ------- SRM_DATA} - -t 5.3428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 122 -a 0 -x {0.1 4194304.0 90 ------- SRM_DATA} h -t 5.3428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 122 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.34853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 123 -a 0 -x {0.1 4194304.0 91 ------- SRM_DATA} + -t 5.34853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 123 -a 0 -x {0.1 4194304.0 91 ------- SRM_DATA} - -t 5.34853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 123 -a 0 -x {0.1 4194304.0 91 ------- SRM_DATA} h -t 5.34853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 123 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.35427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 124 -a 0 -x {0.1 4194304.0 92 ------- SRM_DATA} + -t 5.35427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 124 -a 0 -x {0.1 4194304.0 92 ------- SRM_DATA} - -t 5.35427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 124 -a 0 -x {0.1 4194304.0 92 ------- SRM_DATA} h -t 5.35427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 124 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.35707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 122 -a 0 -x {0.1 4194304.0 90 ------- SRM_DATA} r -t 5.35707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 122 -a 0 -x {0.1 4194304.0 90 ------- SRM_DATA} + -t 5.36 -s 0 -d 1 -p cbr -e 800 -c 0 -i 125 -a 0 -x {0.1 4194304.0 93 ------- SRM_DATA} - -t 5.36 -s 0 -d 1 -p cbr -e 800 -c 0 -i 125 -a 0 -x {0.1 4194304.0 93 ------- SRM_DATA} h -t 5.36 -s 0 -d 1 -p cbr -e 800 -c 0 -i 125 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.3628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 123 -a 0 -x {0.1 4194304.0 91 ------- SRM_DATA} + -t 5.3628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 123 -a 0 -x {0.1 4194304.0 91 ------- SRM_DATA} - -t 5.3628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 123 -a 0 -x {0.1 4194304.0 91 ------- SRM_DATA} h -t 5.3628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 123 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.3628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 123 -a 0 -x {0.1 4194304.0 91 ------- SRM_DATA} - -t 5.3628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 123 -a 0 -x {0.1 4194304.0 91 ------- SRM_DATA} h -t 5.3628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 123 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.36853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 124 -a 0 -x {0.1 4194304.0 92 ------- SRM_DATA} + -t 5.36853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 124 -a 0 -x {0.1 4194304.0 92 ------- SRM_DATA} - -t 5.36853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 124 -a 0 -x {0.1 4194304.0 92 ------- SRM_DATA} h -t 5.36853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 124 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.37427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 125 -a 0 -x {0.1 4194304.0 93 ------- SRM_DATA} + -t 5.37427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 125 -a 0 -x {0.1 4194304.0 93 ------- SRM_DATA} - -t 5.37427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 125 -a 0 -x {0.1 4194304.0 93 ------- SRM_DATA} h -t 5.37427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 125 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.37707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 123 -a 0 -x {0.1 4194304.0 91 ------- SRM_DATA} r -t 5.37707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 123 -a 0 -x {0.1 4194304.0 91 ------- SRM_DATA} + -t 5.38 -s 0 -d 1 -p cbr -e 800 -c 0 -i 126 -a 0 -x {0.1 4194304.0 94 ------- SRM_DATA} - -t 5.38 -s 0 -d 1 -p cbr -e 800 -c 0 -i 126 -a 0 -x {0.1 4194304.0 94 ------- SRM_DATA} h -t 5.38 -s 0 -d 1 -p cbr -e 800 -c 0 -i 126 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.3828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 124 -a 0 -x {0.1 4194304.0 92 ------- SRM_DATA} + -t 5.3828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 124 -a 0 -x {0.1 4194304.0 92 ------- SRM_DATA} - -t 5.3828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 124 -a 0 -x {0.1 4194304.0 92 ------- SRM_DATA} h -t 5.3828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 124 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.3828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 124 -a 0 -x {0.1 4194304.0 92 ------- SRM_DATA} - -t 5.3828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 124 -a 0 -x {0.1 4194304.0 92 ------- SRM_DATA} h -t 5.3828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 124 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.38853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 125 -a 0 -x {0.1 4194304.0 93 ------- SRM_DATA} + -t 5.38853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 125 -a 0 -x {0.1 4194304.0 93 ------- SRM_DATA} - -t 5.38853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 125 -a 0 -x {0.1 4194304.0 93 ------- SRM_DATA} h -t 5.38853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 125 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.39427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 126 -a 0 -x {0.1 4194304.0 94 ------- SRM_DATA} + -t 5.39427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 126 -a 0 -x {0.1 4194304.0 94 ------- SRM_DATA} - -t 5.39427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 126 -a 0 -x {0.1 4194304.0 94 ------- SRM_DATA} h -t 5.39427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 126 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.39707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 124 -a 0 -x {0.1 4194304.0 92 ------- SRM_DATA} r -t 5.39707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 124 -a 0 -x {0.1 4194304.0 92 ------- SRM_DATA} + -t 5.4 -s 0 -d 1 -p cbr -e 800 -c 0 -i 127 -a 0 -x {0.1 4194304.0 95 ------- SRM_DATA} - -t 5.4 -s 0 -d 1 -p cbr -e 800 -c 0 -i 127 -a 0 -x {0.1 4194304.0 95 ------- SRM_DATA} h -t 5.4 -s 0 -d 1 -p cbr -e 800 -c 0 -i 127 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.4028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 125 -a 0 -x {0.1 4194304.0 93 ------- SRM_DATA} + -t 5.4028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 125 -a 0 -x {0.1 4194304.0 93 ------- SRM_DATA} - -t 5.4028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 125 -a 0 -x {0.1 4194304.0 93 ------- SRM_DATA} h -t 5.4028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 125 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.4028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 125 -a 0 -x {0.1 4194304.0 93 ------- SRM_DATA} - -t 5.4028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 125 -a 0 -x {0.1 4194304.0 93 ------- SRM_DATA} h -t 5.4028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 125 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.40853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 126 -a 0 -x {0.1 4194304.0 94 ------- SRM_DATA} + -t 5.40853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 126 -a 0 -x {0.1 4194304.0 94 ------- SRM_DATA} - -t 5.40853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 126 -a 0 -x {0.1 4194304.0 94 ------- SRM_DATA} h -t 5.40853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 126 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.41427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 127 -a 0 -x {0.1 4194304.0 95 ------- SRM_DATA} + -t 5.41427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 127 -a 0 -x {0.1 4194304.0 95 ------- SRM_DATA} - -t 5.41427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 127 -a 0 -x {0.1 4194304.0 95 ------- SRM_DATA} h -t 5.41427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 127 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.41707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 125 -a 0 -x {0.1 4194304.0 93 ------- SRM_DATA} r -t 5.41707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 125 -a 0 -x {0.1 4194304.0 93 ------- SRM_DATA} + -t 5.42 -s 0 -d 1 -p cbr -e 800 -c 0 -i 128 -a 0 -x {0.1 4194304.0 96 ------- SRM_DATA} - -t 5.42 -s 0 -d 1 -p cbr -e 800 -c 0 -i 128 -a 0 -x {0.1 4194304.0 96 ------- SRM_DATA} h -t 5.42 -s 0 -d 1 -p cbr -e 800 -c 0 -i 128 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.4228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 126 -a 0 -x {0.1 4194304.0 94 ------- SRM_DATA} + -t 5.4228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 126 -a 0 -x {0.1 4194304.0 94 ------- SRM_DATA} - -t 5.4228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 126 -a 0 -x {0.1 4194304.0 94 ------- SRM_DATA} h -t 5.4228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 126 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.4228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 126 -a 0 -x {0.1 4194304.0 94 ------- SRM_DATA} - -t 5.4228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 126 -a 0 -x {0.1 4194304.0 94 ------- SRM_DATA} h -t 5.4228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 126 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.42853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 127 -a 0 -x {0.1 4194304.0 95 ------- SRM_DATA} + -t 5.42853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 127 -a 0 -x {0.1 4194304.0 95 ------- SRM_DATA} - -t 5.42853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 127 -a 0 -x {0.1 4194304.0 95 ------- SRM_DATA} h -t 5.42853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 127 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.43427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 128 -a 0 -x {0.1 4194304.0 96 ------- SRM_DATA} + -t 5.43427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 128 -a 0 -x {0.1 4194304.0 96 ------- SRM_DATA} - -t 5.43427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 128 -a 0 -x {0.1 4194304.0 96 ------- SRM_DATA} h -t 5.43427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 128 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.43707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 126 -a 0 -x {0.1 4194304.0 94 ------- SRM_DATA} r -t 5.43707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 126 -a 0 -x {0.1 4194304.0 94 ------- SRM_DATA} + -t 5.44 -s 0 -d 1 -p cbr -e 800 -c 0 -i 129 -a 0 -x {0.1 4194304.0 97 ------- SRM_DATA} - -t 5.44 -s 0 -d 1 -p cbr -e 800 -c 0 -i 129 -a 0 -x {0.1 4194304.0 97 ------- SRM_DATA} h -t 5.44 -s 0 -d 1 -p cbr -e 800 -c 0 -i 129 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.4428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 127 -a 0 -x {0.1 4194304.0 95 ------- SRM_DATA} + -t 5.4428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 127 -a 0 -x {0.1 4194304.0 95 ------- SRM_DATA} - -t 5.4428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 127 -a 0 -x {0.1 4194304.0 95 ------- SRM_DATA} h -t 5.4428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 127 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.4428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 127 -a 0 -x {0.1 4194304.0 95 ------- SRM_DATA} - -t 5.4428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 127 -a 0 -x {0.1 4194304.0 95 ------- SRM_DATA} h -t 5.4428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 127 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.44853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 128 -a 0 -x {0.1 4194304.0 96 ------- SRM_DATA} + -t 5.44853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 128 -a 0 -x {0.1 4194304.0 96 ------- SRM_DATA} - -t 5.44853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 128 -a 0 -x {0.1 4194304.0 96 ------- SRM_DATA} h -t 5.44853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 128 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.45427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 129 -a 0 -x {0.1 4194304.0 97 ------- SRM_DATA} + -t 5.45427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 129 -a 0 -x {0.1 4194304.0 97 ------- SRM_DATA} - -t 5.45427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 129 -a 0 -x {0.1 4194304.0 97 ------- SRM_DATA} h -t 5.45427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 129 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.45707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 127 -a 0 -x {0.1 4194304.0 95 ------- SRM_DATA} r -t 5.45707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 127 -a 0 -x {0.1 4194304.0 95 ------- SRM_DATA} + -t 5.46 -s 0 -d 1 -p cbr -e 800 -c 0 -i 130 -a 0 -x {0.1 4194304.0 98 ------- SRM_DATA} - -t 5.46 -s 0 -d 1 -p cbr -e 800 -c 0 -i 130 -a 0 -x {0.1 4194304.0 98 ------- SRM_DATA} h -t 5.46 -s 0 -d 1 -p cbr -e 800 -c 0 -i 130 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.4628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 128 -a 0 -x {0.1 4194304.0 96 ------- SRM_DATA} + -t 5.4628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 128 -a 0 -x {0.1 4194304.0 96 ------- SRM_DATA} - -t 5.4628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 128 -a 0 -x {0.1 4194304.0 96 ------- SRM_DATA} h -t 5.4628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 128 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.4628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 128 -a 0 -x {0.1 4194304.0 96 ------- SRM_DATA} - -t 5.4628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 128 -a 0 -x {0.1 4194304.0 96 ------- SRM_DATA} h -t 5.4628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 128 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.46853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 129 -a 0 -x {0.1 4194304.0 97 ------- SRM_DATA} + -t 5.46853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 129 -a 0 -x {0.1 4194304.0 97 ------- SRM_DATA} - -t 5.46853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 129 -a 0 -x {0.1 4194304.0 97 ------- SRM_DATA} h -t 5.46853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 129 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.47427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 130 -a 0 -x {0.1 4194304.0 98 ------- SRM_DATA} + -t 5.47427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 130 -a 0 -x {0.1 4194304.0 98 ------- SRM_DATA} - -t 5.47427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 130 -a 0 -x {0.1 4194304.0 98 ------- SRM_DATA} h -t 5.47427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 130 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.47707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 128 -a 0 -x {0.1 4194304.0 96 ------- SRM_DATA} r -t 5.47707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 128 -a 0 -x {0.1 4194304.0 96 ------- SRM_DATA} + -t 5.48 -s 0 -d 1 -p cbr -e 800 -c 0 -i 131 -a 0 -x {0.1 4194304.0 99 ------- SRM_DATA} - -t 5.48 -s 0 -d 1 -p cbr -e 800 -c 0 -i 131 -a 0 -x {0.1 4194304.0 99 ------- SRM_DATA} h -t 5.48 -s 0 -d 1 -p cbr -e 800 -c 0 -i 131 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.4828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 129 -a 0 -x {0.1 4194304.0 97 ------- SRM_DATA} + -t 5.4828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 129 -a 0 -x {0.1 4194304.0 97 ------- SRM_DATA} - -t 5.4828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 129 -a 0 -x {0.1 4194304.0 97 ------- SRM_DATA} h -t 5.4828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 129 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.4828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 129 -a 0 -x {0.1 4194304.0 97 ------- SRM_DATA} - -t 5.4828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 129 -a 0 -x {0.1 4194304.0 97 ------- SRM_DATA} h -t 5.4828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 129 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.48853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 130 -a 0 -x {0.1 4194304.0 98 ------- SRM_DATA} + -t 5.48853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 130 -a 0 -x {0.1 4194304.0 98 ------- SRM_DATA} - -t 5.48853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 130 -a 0 -x {0.1 4194304.0 98 ------- SRM_DATA} h -t 5.48853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 130 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.49427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 131 -a 0 -x {0.1 4194304.0 99 ------- SRM_DATA} + -t 5.49427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 131 -a 0 -x {0.1 4194304.0 99 ------- SRM_DATA} - -t 5.49427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 131 -a 0 -x {0.1 4194304.0 99 ------- SRM_DATA} h -t 5.49427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 131 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.49707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 129 -a 0 -x {0.1 4194304.0 97 ------- SRM_DATA} r -t 5.49707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 129 -a 0 -x {0.1 4194304.0 97 ------- SRM_DATA} + -t 5.5 -s 0 -d 1 -p cbr -e 800 -c 0 -i 132 -a 0 -x {0.1 4194304.0 100 ------- SRM_DATA} - -t 5.5 -s 0 -d 1 -p cbr -e 800 -c 0 -i 132 -a 0 -x {0.1 4194304.0 100 ------- SRM_DATA} h -t 5.5 -s 0 -d 1 -p cbr -e 800 -c 0 -i 132 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} m -t 5.5 -s 0 -n m2 -c purple -h hexagon -X v -t 5.5 sim_annotation 5.5 6 node 0 deleted second mark r -t 5.5028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 130 -a 0 -x {0.1 4194304.0 98 ------- SRM_DATA} + -t 5.5028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 130 -a 0 -x {0.1 4194304.0 98 ------- SRM_DATA} - -t 5.5028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 130 -a 0 -x {0.1 4194304.0 98 ------- SRM_DATA} h -t 5.5028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 130 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.5028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 130 -a 0 -x {0.1 4194304.0 98 ------- SRM_DATA} - -t 5.5028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 130 -a 0 -x {0.1 4194304.0 98 ------- SRM_DATA} h -t 5.5028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 130 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.50853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 131 -a 0 -x {0.1 4194304.0 99 ------- SRM_DATA} + -t 5.50853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 131 -a 0 -x {0.1 4194304.0 99 ------- SRM_DATA} - -t 5.50853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 131 -a 0 -x {0.1 4194304.0 99 ------- SRM_DATA} h -t 5.50853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 131 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.51427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 132 -a 0 -x {0.1 4194304.0 100 ------- SRM_DATA} + -t 5.51427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 132 -a 0 -x {0.1 4194304.0 100 ------- SRM_DATA} - -t 5.51427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 132 -a 0 -x {0.1 4194304.0 100 ------- SRM_DATA} h -t 5.51427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 132 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.51707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 130 -a 0 -x {0.1 4194304.0 98 ------- SRM_DATA} r -t 5.51707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 130 -a 0 -x {0.1 4194304.0 98 ------- SRM_DATA} + -t 5.52 -s 0 -d 1 -p cbr -e 800 -c 0 -i 133 -a 0 -x {0.1 4194304.0 101 ------- SRM_DATA} - -t 5.52 -s 0 -d 1 -p cbr -e 800 -c 0 -i 133 -a 0 -x {0.1 4194304.0 101 ------- SRM_DATA} h -t 5.52 -s 0 -d 1 -p cbr -e 800 -c 0 -i 133 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.5228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 131 -a 0 -x {0.1 4194304.0 99 ------- SRM_DATA} + -t 5.5228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 131 -a 0 -x {0.1 4194304.0 99 ------- SRM_DATA} - -t 5.5228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 131 -a 0 -x {0.1 4194304.0 99 ------- SRM_DATA} h -t 5.5228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 131 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.5228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 131 -a 0 -x {0.1 4194304.0 99 ------- SRM_DATA} - -t 5.5228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 131 -a 0 -x {0.1 4194304.0 99 ------- SRM_DATA} h -t 5.5228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 131 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.52853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 132 -a 0 -x {0.1 4194304.0 100 ------- SRM_DATA} + -t 5.52853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 132 -a 0 -x {0.1 4194304.0 100 ------- SRM_DATA} - -t 5.52853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 132 -a 0 -x {0.1 4194304.0 100 ------- SRM_DATA} h -t 5.52853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 132 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.53427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 133 -a 0 -x {0.1 4194304.0 101 ------- SRM_DATA} + -t 5.53427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 133 -a 0 -x {0.1 4194304.0 101 ------- SRM_DATA} - -t 5.53427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 133 -a 0 -x {0.1 4194304.0 101 ------- SRM_DATA} h -t 5.53427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 133 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.53707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 131 -a 0 -x {0.1 4194304.0 99 ------- SRM_DATA} r -t 5.53707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 131 -a 0 -x {0.1 4194304.0 99 ------- SRM_DATA} + -t 5.54 -s 0 -d 1 -p cbr -e 800 -c 0 -i 134 -a 0 -x {0.1 4194304.0 102 ------- SRM_DATA} - -t 5.54 -s 0 -d 1 -p cbr -e 800 -c 0 -i 134 -a 0 -x {0.1 4194304.0 102 ------- SRM_DATA} h -t 5.54 -s 0 -d 1 -p cbr -e 800 -c 0 -i 134 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.5428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 132 -a 0 -x {0.1 4194304.0 100 ------- SRM_DATA} + -t 5.5428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 132 -a 0 -x {0.1 4194304.0 100 ------- SRM_DATA} - -t 5.5428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 132 -a 0 -x {0.1 4194304.0 100 ------- SRM_DATA} h -t 5.5428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 132 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.5428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 132 -a 0 -x {0.1 4194304.0 100 ------- SRM_DATA} - -t 5.5428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 132 -a 0 -x {0.1 4194304.0 100 ------- SRM_DATA} h -t 5.5428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 132 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.54853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 133 -a 0 -x {0.1 4194304.0 101 ------- SRM_DATA} + -t 5.54853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 133 -a 0 -x {0.1 4194304.0 101 ------- SRM_DATA} - -t 5.54853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 133 -a 0 -x {0.1 4194304.0 101 ------- SRM_DATA} h -t 5.54853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 133 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.55427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 134 -a 0 -x {0.1 4194304.0 102 ------- SRM_DATA} + -t 5.55427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 134 -a 0 -x {0.1 4194304.0 102 ------- SRM_DATA} - -t 5.55427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 134 -a 0 -x {0.1 4194304.0 102 ------- SRM_DATA} h -t 5.55427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 134 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.55707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 132 -a 0 -x {0.1 4194304.0 100 ------- SRM_DATA} r -t 5.55707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 132 -a 0 -x {0.1 4194304.0 100 ------- SRM_DATA} + -t 5.56 -s 0 -d 1 -p cbr -e 800 -c 0 -i 135 -a 0 -x {0.1 4194304.0 103 ------- SRM_DATA} - -t 5.56 -s 0 -d 1 -p cbr -e 800 -c 0 -i 135 -a 0 -x {0.1 4194304.0 103 ------- SRM_DATA} h -t 5.56 -s 0 -d 1 -p cbr -e 800 -c 0 -i 135 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.5628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 133 -a 0 -x {0.1 4194304.0 101 ------- SRM_DATA} + -t 5.5628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 133 -a 0 -x {0.1 4194304.0 101 ------- SRM_DATA} - -t 5.5628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 133 -a 0 -x {0.1 4194304.0 101 ------- SRM_DATA} h -t 5.5628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 133 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.5628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 133 -a 0 -x {0.1 4194304.0 101 ------- SRM_DATA} - -t 5.5628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 133 -a 0 -x {0.1 4194304.0 101 ------- SRM_DATA} h -t 5.5628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 133 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.56853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 134 -a 0 -x {0.1 4194304.0 102 ------- SRM_DATA} + -t 5.56853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 134 -a 0 -x {0.1 4194304.0 102 ------- SRM_DATA} - -t 5.56853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 134 -a 0 -x {0.1 4194304.0 102 ------- SRM_DATA} h -t 5.56853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 134 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.57427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 135 -a 0 -x {0.1 4194304.0 103 ------- SRM_DATA} + -t 5.57427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 135 -a 0 -x {0.1 4194304.0 103 ------- SRM_DATA} - -t 5.57427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 135 -a 0 -x {0.1 4194304.0 103 ------- SRM_DATA} h -t 5.57427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 135 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.57707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 133 -a 0 -x {0.1 4194304.0 101 ------- SRM_DATA} r -t 5.57707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 133 -a 0 -x {0.1 4194304.0 101 ------- SRM_DATA} + -t 5.58 -s 0 -d 1 -p cbr -e 800 -c 0 -i 136 -a 0 -x {0.1 4194304.0 104 ------- SRM_DATA} - -t 5.58 -s 0 -d 1 -p cbr -e 800 -c 0 -i 136 -a 0 -x {0.1 4194304.0 104 ------- SRM_DATA} h -t 5.58 -s 0 -d 1 -p cbr -e 800 -c 0 -i 136 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.5828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 134 -a 0 -x {0.1 4194304.0 102 ------- SRM_DATA} + -t 5.5828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 134 -a 0 -x {0.1 4194304.0 102 ------- SRM_DATA} - -t 5.5828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 134 -a 0 -x {0.1 4194304.0 102 ------- SRM_DATA} h -t 5.5828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 134 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.5828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 134 -a 0 -x {0.1 4194304.0 102 ------- SRM_DATA} - -t 5.5828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 134 -a 0 -x {0.1 4194304.0 102 ------- SRM_DATA} h -t 5.5828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 134 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.58853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 135 -a 0 -x {0.1 4194304.0 103 ------- SRM_DATA} + -t 5.58853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 135 -a 0 -x {0.1 4194304.0 103 ------- SRM_DATA} - -t 5.58853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 135 -a 0 -x {0.1 4194304.0 103 ------- SRM_DATA} h -t 5.58853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 135 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} l -t 5.5899999999999999 -s 1 -d 0 -S DOWN v -t 5.5899999999999999 link-down 5.5899999999999999 1 0 d -t 5.59 -s 0 -d 1 -p cbr -e 800 -c 0 -i 136 -a 0 -x {0.1 4194304.0 104 ------- SRM_DATA} l -t 5.5899999999999999 -s 0 -d 1 -S DOWN v -t 5.5899999999999999 link-down 5.5899999999999999 0 1 r -t 5.59707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 134 -a 0 -x {0.1 4194304.0 102 ------- SRM_DATA} r -t 5.59707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 134 -a 0 -x {0.1 4194304.0 102 ------- SRM_DATA} r -t 5.6028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 135 -a 0 -x {0.1 4194304.0 103 ------- SRM_DATA} + -t 5.6028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 135 -a 0 -x {0.1 4194304.0 103 ------- SRM_DATA} - -t 5.6028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 135 -a 0 -x {0.1 4194304.0 103 ------- SRM_DATA} h -t 5.6028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 135 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.6028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 135 -a 0 -x {0.1 4194304.0 103 ------- SRM_DATA} - -t 5.6028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 135 -a 0 -x {0.1 4194304.0 103 ------- SRM_DATA} h -t 5.6028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 135 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} l -t 5.6099999999999994 -s 1 -d 0 -S UP v -t 5.6099999999999994 link-up 5.6099999999999994 1 0 l -t 5.6099999999999994 -s 0 -d 1 -S UP v -t 5.6099999999999994 link-up 5.6099999999999994 0 1 r -t 5.61707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 135 -a 0 -x {0.1 4194304.0 103 ------- SRM_DATA} r -t 5.61707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 135 -a 0 -x {0.1 4194304.0 103 ------- SRM_DATA} + -t 5.62 -s 0 -d 1 -p cbr -e 800 -c 0 -i 138 -a 0 -x {0.1 4194304.0 106 ------- SRM_DATA} - -t 5.62 -s 0 -d 1 -p cbr -e 800 -c 0 -i 138 -a 0 -x {0.1 4194304.0 106 ------- SRM_DATA} h -t 5.62 -s 0 -d 1 -p cbr -e 800 -c 0 -i 138 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.63427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 138 -a 0 -x {0.1 4194304.0 106 ------- SRM_DATA} f -t 5.63426666666663234 -s 1 -d 4194304 -n C2_ -a srm(1) -v 1.6999999999999997 -o 1.7999999999999998 -T v f -t 5.63426666666663234 -s 1 -d 4194304 -n C2_ -a srm(1) -v 1.5999999999999996 -o 1.6999999999999997 -T v f -t 5.63426666666663234 -s 1 -d 4194304 -n C1_ -a srm(1) -v 1.4999999999999996 -o 1.5499999999999996 -T v + -t 5.63427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 138 -a 0 -x {0.1 4194304.0 106 ------- SRM_DATA} - -t 5.63427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 138 -a 0 -x {0.1 4194304.0 106 ------- SRM_DATA} h -t 5.63427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 138 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.64 -s 0 -d 1 -p cbr -e 800 -c 0 -i 139 -a 0 -x {0.1 4194304.0 107 ------- SRM_DATA} - -t 5.64 -s 0 -d 1 -p cbr -e 800 -c 0 -i 139 -a 0 -x {0.1 4194304.0 107 ------- SRM_DATA} h -t 5.64 -s 0 -d 1 -p cbr -e 800 -c 0 -i 139 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.64853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 138 -a 0 -x {0.1 4194304.0 106 ------- SRM_DATA} f -t 5.64853333333329921 -s 2 -d 4194304 -n C1_ -a srm(2) -v 1.8499999999999999 -o 1.8999999999999999 -T v f -t 5.64853333333329921 -s 2 -d 4194304 -n C1_ -a srm(2) -v 1.7999999999999998 -o 1.8499999999999999 -T v + -t 5.64853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 138 -a 0 -x {0.1 4194304.0 106 ------- SRM_DATA} - -t 5.64853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 138 -a 0 -x {0.1 4194304.0 106 ------- SRM_DATA} h -t 5.64853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 138 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.65427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 139 -a 0 -x {0.1 4194304.0 107 ------- SRM_DATA} + -t 5.65427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 139 -a 0 -x {0.1 4194304.0 107 ------- SRM_DATA} - -t 5.65427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 139 -a 0 -x {0.1 4194304.0 107 ------- SRM_DATA} h -t 5.65427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 139 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} f -t 5.65781935652581147 -s 1 -d 4194304 -n C1_ -a srm(1) -v 1.3999999999999995 -o 1.4999999999999996 -T v + -t 5.65782 -s 1 -d 0 -p SRM -e 16 -c 2 -i 140 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 5.65782 -s 1 -d 0 -p SRM -e 16 -c 2 -i 140 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 5.65782 -s 1 -d 0 -p SRM -e 16 -c 2 -i 140 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 5.65782 -s 1 -d 2 -p SRM -e 16 -c 2 -i 140 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 5.65853 -s 1 -d 2 -p SRM -e 16 -c 2 -i 140 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 5.65853 -s 1 -d 2 -p SRM -e 16 -c 2 -i 140 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} f -t 5.65999765764408114 -s 1 -d 4194304 -n C1_ -a srm(1) -v 1.2999999999999994 -o 1.3999999999999995 -T v + -t 5.66 -s 1 -d 0 -p SRM -e 16 -c 2 -i 141 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 5.66 -s 1 -d 0 -p SRM -e 16 -c 2 -i 141 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 5.66 -s 1 -d 0 -p SRM -e 16 -c 2 -i 141 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 5.66 -s 1 -d 2 -p SRM -e 16 -c 2 -i 141 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 5.66 -s 1 -d 2 -p SRM -e 16 -c 2 -i 141 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 5.66 -s 1 -d 2 -p SRM -e 16 -c 2 -i 141 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 5.66 -s 0 -d 1 -p cbr -e 800 -c 0 -i 142 -a 0 -x {0.1 4194304.0 108 ------- SRM_DATA} - -t 5.66 -s 0 -d 1 -p cbr -e 800 -c 0 -i 142 -a 0 -x {0.1 4194304.0 108 ------- SRM_DATA} h -t 5.66 -s 0 -d 1 -p cbr -e 800 -c 0 -i 142 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.6628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 138 -a 0 -x {0.1 4194304.0 106 ------- SRM_DATA} f -t 5.66279999999996608 -s 3 -d 4194304 -n C1_ -a srm(3) -v 1.8499999999999999 -o 1.8999999999999999 -T v f -t 5.66279999999996608 -s 3 -d 4194304 -n C1_ -a srm(3) -v 1.7999999999999998 -o 1.8499999999999999 -T v + -t 5.6628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 138 -a 0 -x {0.1 4194304.0 106 ------- SRM_DATA} - -t 5.6628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 138 -a 0 -x {0.1 4194304.0 106 ------- SRM_DATA} h -t 5.6628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 138 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.6628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 138 -a 0 -x {0.1 4194304.0 106 ------- SRM_DATA} - -t 5.6628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 138 -a 0 -x {0.1 4194304.0 106 ------- SRM_DATA} h -t 5.6628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 138 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.6679 -s 1 -d 0 -p SRM -e 16 -c 2 -i 140 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 5.66853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 139 -a 0 -x {0.1 4194304.0 107 ------- SRM_DATA} + -t 5.66853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 139 -a 0 -x {0.1 4194304.0 107 ------- SRM_DATA} - -t 5.66853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 139 -a 0 -x {0.1 4194304.0 107 ------- SRM_DATA} h -t 5.66853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 139 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.66862 -s 1 -d 2 -p SRM -e 16 -c 2 -i 140 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 5.66862 -s 2 -d 3 -p SRM -e 16 -c 2 -i 140 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 5.67008 -s 1 -d 0 -p SRM -e 16 -c 2 -i 141 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 5.67008 -s 1 -d 2 -p SRM -e 16 -c 2 -i 141 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 5.67008 -s 2 -d 3 -p SRM -e 16 -c 2 -i 141 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 5.6728 -s 2 -d 3 -p SRM -e 16 -c 2 -i 140 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 5.6728 -s 2 -d 3 -p SRM -e 16 -c 2 -i 140 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 5.67289 -s 2 -d 3 -p SRM -e 16 -c 2 -i 141 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 5.67289 -s 2 -d 3 -p SRM -e 16 -c 2 -i 141 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 5.67358 -s 0 -d 1 -p SRM -e 816 -c 1 -i 143 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 5.67358 -s 0 -d 1 -p SRM -e 816 -c 1 -i 143 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 5.67358 -s 0 -d 1 -p SRM -e 816 -c 1 -i 143 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 5.67427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 142 -a 0 -x {0.1 4194304.0 108 ------- SRM_DATA} + -t 5.67427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 142 -a 0 -x {0.1 4194304.0 108 ------- SRM_DATA} - -t 5.67427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 142 -a 0 -x {0.1 4194304.0 108 ------- SRM_DATA} h -t 5.67427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 142 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.67707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 138 -a 0 -x {0.1 4194304.0 106 ------- SRM_DATA} f -t 5.67706666666663295 -s 4 -d 4194304 -n C1_ -a srm(4) -v 1.8499999999999999 -o 1.8999999999999999 -T v f -t 5.67706666666663295 -s 4 -d 4194304 -n C1_ -a srm(4) -v 1.7999999999999998 -o 1.8499999999999999 -T v r -t 5.67707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 138 -a 0 -x {0.1 4194304.0 106 ------- SRM_DATA} f -t 5.67706666666663295 -s 5 -d 4194304 -n C1_ -a srm(5) -v 1.8499999999999999 -o 1.8999999999999999 -T v f -t 5.67706666666663295 -s 5 -d 4194304 -n C1_ -a srm(5) -v 1.7999999999999998 -o 1.8499999999999999 -T v + -t 5.68 -s 0 -d 1 -p cbr -e 800 -c 0 -i 144 -a 0 -x {0.1 4194304.0 109 ------- SRM_DATA} - -t 5.68 -s 0 -d 1 -p cbr -e 800 -c 0 -i 144 -a 0 -x {0.1 4194304.0 109 ------- SRM_DATA} h -t 5.68 -s 0 -d 1 -p cbr -e 800 -c 0 -i 144 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.6828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 139 -a 0 -x {0.1 4194304.0 107 ------- SRM_DATA} + -t 5.6828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 139 -a 0 -x {0.1 4194304.0 107 ------- SRM_DATA} - -t 5.6828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 139 -a 0 -x {0.1 4194304.0 107 ------- SRM_DATA} h -t 5.6828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 139 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.6828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 139 -a 0 -x {0.1 4194304.0 107 ------- SRM_DATA} - -t 5.6828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 139 -a 0 -x {0.1 4194304.0 107 ------- SRM_DATA} h -t 5.6828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 139 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.68289 -s 2 -d 3 -p SRM -e 16 -c 2 -i 140 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 5.68289 -s 3 -d 4 -p SRM -e 16 -c 2 -i 140 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 5.68289 -s 3 -d 5 -p SRM -e 16 -c 2 -i 140 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 5.68297 -s 2 -d 3 -p SRM -e 16 -c 2 -i 141 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 5.68297 -s 3 -d 4 -p SRM -e 16 -c 2 -i 141 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 5.68297 -s 3 -d 5 -p SRM -e 16 -c 2 -i 141 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 5.68513 -s 0 -d 1 -p SRM -e 816 -c 1 -i 145 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 5.68513 -s 0 -d 1 -p SRM -e 816 -c 1 -i 145 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 5.68513 -s 0 -d 1 -p SRM -e 816 -c 1 -i 145 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 5.68707 -s 3 -d 4 -p SRM -e 16 -c 2 -i 140 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 5.68707 -s 3 -d 4 -p SRM -e 16 -c 2 -i 140 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 5.68707 -s 3 -d 5 -p SRM -e 16 -c 2 -i 140 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 5.68707 -s 3 -d 5 -p SRM -e 16 -c 2 -i 140 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 5.68715 -s 3 -d 4 -p SRM -e 16 -c 2 -i 141 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 5.68715 -s 3 -d 4 -p SRM -e 16 -c 2 -i 141 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 5.68715 -s 3 -d 5 -p SRM -e 16 -c 2 -i 141 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 5.68715 -s 3 -d 5 -p SRM -e 16 -c 2 -i 141 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 5.68793 -s 0 -d 1 -p SRM -e 816 -c 1 -i 143 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 5.68793 -s 1 -d 2 -p SRM -e 816 -c 1 -i 143 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 5.68793 -s 1 -d 2 -p SRM -e 816 -c 1 -i 143 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 5.68793 -s 1 -d 2 -p SRM -e 816 -c 1 -i 143 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 5.68853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 142 -a 0 -x {0.1 4194304.0 108 ------- SRM_DATA} + -t 5.68853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 142 -a 0 -x {0.1 4194304.0 108 ------- SRM_DATA} - -t 5.68853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 142 -a 0 -x {0.1 4194304.0 108 ------- SRM_DATA} h -t 5.68853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 142 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.69427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 144 -a 0 -x {0.1 4194304.0 109 ------- SRM_DATA} + -t 5.69427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 144 -a 0 -x {0.1 4194304.0 109 ------- SRM_DATA} - -t 5.69427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 144 -a 0 -x {0.1 4194304.0 109 ------- SRM_DATA} h -t 5.69427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 144 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.69707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 139 -a 0 -x {0.1 4194304.0 107 ------- SRM_DATA} r -t 5.69707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 139 -a 0 -x {0.1 4194304.0 107 ------- SRM_DATA} r -t 5.69715 -s 3 -d 4 -p SRM -e 16 -c 2 -i 140 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 5.69715 -s 3 -d 5 -p SRM -e 16 -c 2 -i 140 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 5.69724 -s 3 -d 4 -p SRM -e 16 -c 2 -i 141 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 5.69724 -s 3 -d 5 -p SRM -e 16 -c 2 -i 141 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 5.69949 -s 0 -d 1 -p SRM -e 816 -c 1 -i 145 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 5.69949 -s 1 -d 2 -p SRM -e 816 -c 1 -i 145 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 5.69949 -s 1 -d 2 -p SRM -e 816 -c 1 -i 145 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 5.69949 -s 1 -d 2 -p SRM -e 816 -c 1 -i 145 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 5.7 -s 0 -d 1 -p cbr -e 800 -c 0 -i 146 -a 0 -x {0.1 4194304.0 110 ------- SRM_DATA} - -t 5.7 -s 0 -d 1 -p cbr -e 800 -c 0 -i 146 -a 0 -x {0.1 4194304.0 110 ------- SRM_DATA} h -t 5.7 -s 0 -d 1 -p cbr -e 800 -c 0 -i 146 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.70228 -s 1 -d 2 -p SRM -e 816 -c 1 -i 143 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 5.70228 -s 2 -d 3 -p SRM -e 816 -c 1 -i 143 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 5.70228 -s 2 -d 3 -p SRM -e 816 -c 1 -i 143 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 5.70228 -s 2 -d 3 -p SRM -e 816 -c 1 -i 143 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 5.7028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 142 -a 0 -x {0.1 4194304.0 108 ------- SRM_DATA} + -t 5.7028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 142 -a 0 -x {0.1 4194304.0 108 ------- SRM_DATA} - -t 5.7028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 142 -a 0 -x {0.1 4194304.0 108 ------- SRM_DATA} h -t 5.7028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 142 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.7028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 142 -a 0 -x {0.1 4194304.0 108 ------- SRM_DATA} - -t 5.7028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 142 -a 0 -x {0.1 4194304.0 108 ------- SRM_DATA} h -t 5.7028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 142 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.70853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 144 -a 0 -x {0.1 4194304.0 109 ------- SRM_DATA} + -t 5.70853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 144 -a 0 -x {0.1 4194304.0 109 ------- SRM_DATA} - -t 5.70853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 144 -a 0 -x {0.1 4194304.0 109 ------- SRM_DATA} h -t 5.70853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 144 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.71384 -s 1 -d 2 -p SRM -e 816 -c 1 -i 145 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 5.71384 -s 2 -d 3 -p SRM -e 816 -c 1 -i 145 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 5.71384 -s 2 -d 3 -p SRM -e 816 -c 1 -i 145 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 5.71384 -s 2 -d 3 -p SRM -e 816 -c 1 -i 145 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 5.71427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 146 -a 0 -x {0.1 4194304.0 110 ------- SRM_DATA} + -t 5.71427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 146 -a 0 -x {0.1 4194304.0 110 ------- SRM_DATA} - -t 5.71427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 146 -a 0 -x {0.1 4194304.0 110 ------- SRM_DATA} h -t 5.71427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 146 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.71664 -s 2 -d 3 -p SRM -e 816 -c 1 -i 143 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 5.71664 -s 3 -d 4 -p SRM -e 816 -c 1 -i 143 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 5.71664 -s 3 -d 4 -p SRM -e 816 -c 1 -i 143 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 5.71664 -s 3 -d 4 -p SRM -e 816 -c 1 -i 143 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 5.71664 -s 3 -d 5 -p SRM -e 816 -c 1 -i 143 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 5.71664 -s 3 -d 5 -p SRM -e 816 -c 1 -i 143 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 5.71664 -s 3 -d 5 -p SRM -e 816 -c 1 -i 143 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 5.71707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 142 -a 0 -x {0.1 4194304.0 108 ------- SRM_DATA} r -t 5.71707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 142 -a 0 -x {0.1 4194304.0 108 ------- SRM_DATA} + -t 5.72 -s 0 -d 1 -p cbr -e 800 -c 0 -i 147 -a 0 -x {0.1 4194304.0 111 ------- SRM_DATA} - -t 5.72 -s 0 -d 1 -p cbr -e 800 -c 0 -i 147 -a 0 -x {0.1 4194304.0 111 ------- SRM_DATA} h -t 5.72 -s 0 -d 1 -p cbr -e 800 -c 0 -i 147 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.7228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 144 -a 0 -x {0.1 4194304.0 109 ------- SRM_DATA} + -t 5.7228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 144 -a 0 -x {0.1 4194304.0 109 ------- SRM_DATA} - -t 5.7228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 144 -a 0 -x {0.1 4194304.0 109 ------- SRM_DATA} h -t 5.7228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 144 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.7228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 144 -a 0 -x {0.1 4194304.0 109 ------- SRM_DATA} - -t 5.7228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 144 -a 0 -x {0.1 4194304.0 109 ------- SRM_DATA} h -t 5.7228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 144 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.72819 -s 2 -d 3 -p SRM -e 816 -c 1 -i 145 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 5.72819 -s 3 -d 4 -p SRM -e 816 -c 1 -i 145 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 5.72819 -s 3 -d 4 -p SRM -e 816 -c 1 -i 145 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 5.72819 -s 3 -d 4 -p SRM -e 816 -c 1 -i 145 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 5.72819 -s 3 -d 5 -p SRM -e 816 -c 1 -i 145 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 5.72819 -s 3 -d 5 -p SRM -e 816 -c 1 -i 145 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 5.72819 -s 3 -d 5 -p SRM -e 816 -c 1 -i 145 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 5.72853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 146 -a 0 -x {0.1 4194304.0 110 ------- SRM_DATA} + -t 5.72853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 146 -a 0 -x {0.1 4194304.0 110 ------- SRM_DATA} - -t 5.72853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 146 -a 0 -x {0.1 4194304.0 110 ------- SRM_DATA} h -t 5.72853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 146 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.73099 -s 3 -d 4 -p SRM -e 816 -c 1 -i 143 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 5.73099 -s 3 -d 5 -p SRM -e 816 -c 1 -i 143 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 5.73427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 147 -a 0 -x {0.1 4194304.0 111 ------- SRM_DATA} + -t 5.73427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 147 -a 0 -x {0.1 4194304.0 111 ------- SRM_DATA} - -t 5.73427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 147 -a 0 -x {0.1 4194304.0 111 ------- SRM_DATA} h -t 5.73427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 147 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.73707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 144 -a 0 -x {0.1 4194304.0 109 ------- SRM_DATA} r -t 5.73707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 144 -a 0 -x {0.1 4194304.0 109 ------- SRM_DATA} + -t 5.74 -s 0 -d 1 -p cbr -e 800 -c 0 -i 148 -a 0 -x {0.1 4194304.0 112 ------- SRM_DATA} - -t 5.74 -s 0 -d 1 -p cbr -e 800 -c 0 -i 148 -a 0 -x {0.1 4194304.0 112 ------- SRM_DATA} h -t 5.74 -s 0 -d 1 -p cbr -e 800 -c 0 -i 148 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.74254 -s 3 -d 4 -p SRM -e 816 -c 1 -i 145 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 5.74254 -s 3 -d 5 -p SRM -e 816 -c 1 -i 145 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 5.7428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 146 -a 0 -x {0.1 4194304.0 110 ------- SRM_DATA} + -t 5.7428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 146 -a 0 -x {0.1 4194304.0 110 ------- SRM_DATA} - -t 5.7428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 146 -a 0 -x {0.1 4194304.0 110 ------- SRM_DATA} h -t 5.7428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 146 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.7428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 146 -a 0 -x {0.1 4194304.0 110 ------- SRM_DATA} - -t 5.7428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 146 -a 0 -x {0.1 4194304.0 110 ------- SRM_DATA} h -t 5.7428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 146 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.74853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 147 -a 0 -x {0.1 4194304.0 111 ------- SRM_DATA} + -t 5.74853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 147 -a 0 -x {0.1 4194304.0 111 ------- SRM_DATA} - -t 5.74853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 147 -a 0 -x {0.1 4194304.0 111 ------- SRM_DATA} h -t 5.74853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 147 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.75427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 148 -a 0 -x {0.1 4194304.0 112 ------- SRM_DATA} + -t 5.75427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 148 -a 0 -x {0.1 4194304.0 112 ------- SRM_DATA} - -t 5.75427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 148 -a 0 -x {0.1 4194304.0 112 ------- SRM_DATA} h -t 5.75427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 148 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.75707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 146 -a 0 -x {0.1 4194304.0 110 ------- SRM_DATA} r -t 5.75707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 146 -a 0 -x {0.1 4194304.0 110 ------- SRM_DATA} + -t 5.76 -s 0 -d 1 -p cbr -e 800 -c 0 -i 149 -a 0 -x {0.1 4194304.0 113 ------- SRM_DATA} - -t 5.76 -s 0 -d 1 -p cbr -e 800 -c 0 -i 149 -a 0 -x {0.1 4194304.0 113 ------- SRM_DATA} h -t 5.76 -s 0 -d 1 -p cbr -e 800 -c 0 -i 149 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.7628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 147 -a 0 -x {0.1 4194304.0 111 ------- SRM_DATA} + -t 5.7628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 147 -a 0 -x {0.1 4194304.0 111 ------- SRM_DATA} - -t 5.7628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 147 -a 0 -x {0.1 4194304.0 111 ------- SRM_DATA} h -t 5.7628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 147 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.7628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 147 -a 0 -x {0.1 4194304.0 111 ------- SRM_DATA} - -t 5.7628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 147 -a 0 -x {0.1 4194304.0 111 ------- SRM_DATA} h -t 5.7628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 147 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.76853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 148 -a 0 -x {0.1 4194304.0 112 ------- SRM_DATA} + -t 5.76853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 148 -a 0 -x {0.1 4194304.0 112 ------- SRM_DATA} - -t 5.76853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 148 -a 0 -x {0.1 4194304.0 112 ------- SRM_DATA} h -t 5.76853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 148 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.77427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 149 -a 0 -x {0.1 4194304.0 113 ------- SRM_DATA} + -t 5.77427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 149 -a 0 -x {0.1 4194304.0 113 ------- SRM_DATA} - -t 5.77427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 149 -a 0 -x {0.1 4194304.0 113 ------- SRM_DATA} h -t 5.77427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 149 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.77707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 147 -a 0 -x {0.1 4194304.0 111 ------- SRM_DATA} r -t 5.77707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 147 -a 0 -x {0.1 4194304.0 111 ------- SRM_DATA} + -t 5.78 -s 0 -d 1 -p cbr -e 800 -c 0 -i 150 -a 0 -x {0.1 4194304.0 114 ------- SRM_DATA} - -t 5.78 -s 0 -d 1 -p cbr -e 800 -c 0 -i 150 -a 0 -x {0.1 4194304.0 114 ------- SRM_DATA} h -t 5.78 -s 0 -d 1 -p cbr -e 800 -c 0 -i 150 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.7828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 148 -a 0 -x {0.1 4194304.0 112 ------- SRM_DATA} + -t 5.7828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 148 -a 0 -x {0.1 4194304.0 112 ------- SRM_DATA} - -t 5.7828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 148 -a 0 -x {0.1 4194304.0 112 ------- SRM_DATA} h -t 5.7828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 148 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.7828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 148 -a 0 -x {0.1 4194304.0 112 ------- SRM_DATA} - -t 5.7828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 148 -a 0 -x {0.1 4194304.0 112 ------- SRM_DATA} h -t 5.7828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 148 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.78853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 149 -a 0 -x {0.1 4194304.0 113 ------- SRM_DATA} + -t 5.78853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 149 -a 0 -x {0.1 4194304.0 113 ------- SRM_DATA} - -t 5.78853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 149 -a 0 -x {0.1 4194304.0 113 ------- SRM_DATA} h -t 5.78853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 149 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.79427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 150 -a 0 -x {0.1 4194304.0 114 ------- SRM_DATA} + -t 5.79427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 150 -a 0 -x {0.1 4194304.0 114 ------- SRM_DATA} - -t 5.79427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 150 -a 0 -x {0.1 4194304.0 114 ------- SRM_DATA} h -t 5.79427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 150 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.79707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 148 -a 0 -x {0.1 4194304.0 112 ------- SRM_DATA} r -t 5.79707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 148 -a 0 -x {0.1 4194304.0 112 ------- SRM_DATA} + -t 5.8 -s 0 -d 1 -p cbr -e 800 -c 0 -i 151 -a 0 -x {0.1 4194304.0 115 ------- SRM_DATA} - -t 5.8 -s 0 -d 1 -p cbr -e 800 -c 0 -i 151 -a 0 -x {0.1 4194304.0 115 ------- SRM_DATA} h -t 5.8 -s 0 -d 1 -p cbr -e 800 -c 0 -i 151 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.8028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 149 -a 0 -x {0.1 4194304.0 113 ------- SRM_DATA} + -t 5.8028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 149 -a 0 -x {0.1 4194304.0 113 ------- SRM_DATA} - -t 5.8028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 149 -a 0 -x {0.1 4194304.0 113 ------- SRM_DATA} h -t 5.8028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 149 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.8028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 149 -a 0 -x {0.1 4194304.0 113 ------- SRM_DATA} - -t 5.8028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 149 -a 0 -x {0.1 4194304.0 113 ------- SRM_DATA} h -t 5.8028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 149 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.80853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 150 -a 0 -x {0.1 4194304.0 114 ------- SRM_DATA} + -t 5.80853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 150 -a 0 -x {0.1 4194304.0 114 ------- SRM_DATA} - -t 5.80853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 150 -a 0 -x {0.1 4194304.0 114 ------- SRM_DATA} h -t 5.80853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 150 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.81427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 151 -a 0 -x {0.1 4194304.0 115 ------- SRM_DATA} + -t 5.81427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 151 -a 0 -x {0.1 4194304.0 115 ------- SRM_DATA} - -t 5.81427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 151 -a 0 -x {0.1 4194304.0 115 ------- SRM_DATA} h -t 5.81427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 151 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.81707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 149 -a 0 -x {0.1 4194304.0 113 ------- SRM_DATA} r -t 5.81707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 149 -a 0 -x {0.1 4194304.0 113 ------- SRM_DATA} + -t 5.82 -s 0 -d 1 -p cbr -e 800 -c 0 -i 152 -a 0 -x {0.1 4194304.0 116 ------- SRM_DATA} - -t 5.82 -s 0 -d 1 -p cbr -e 800 -c 0 -i 152 -a 0 -x {0.1 4194304.0 116 ------- SRM_DATA} h -t 5.82 -s 0 -d 1 -p cbr -e 800 -c 0 -i 152 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.8228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 150 -a 0 -x {0.1 4194304.0 114 ------- SRM_DATA} + -t 5.8228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 150 -a 0 -x {0.1 4194304.0 114 ------- SRM_DATA} - -t 5.8228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 150 -a 0 -x {0.1 4194304.0 114 ------- SRM_DATA} h -t 5.8228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 150 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.8228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 150 -a 0 -x {0.1 4194304.0 114 ------- SRM_DATA} - -t 5.8228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 150 -a 0 -x {0.1 4194304.0 114 ------- SRM_DATA} h -t 5.8228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 150 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.82853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 151 -a 0 -x {0.1 4194304.0 115 ------- SRM_DATA} + -t 5.82853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 151 -a 0 -x {0.1 4194304.0 115 ------- SRM_DATA} - -t 5.82853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 151 -a 0 -x {0.1 4194304.0 115 ------- SRM_DATA} h -t 5.82853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 151 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.83427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 152 -a 0 -x {0.1 4194304.0 116 ------- SRM_DATA} + -t 5.83427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 152 -a 0 -x {0.1 4194304.0 116 ------- SRM_DATA} - -t 5.83427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 152 -a 0 -x {0.1 4194304.0 116 ------- SRM_DATA} h -t 5.83427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 152 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.83707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 150 -a 0 -x {0.1 4194304.0 114 ------- SRM_DATA} r -t 5.83707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 150 -a 0 -x {0.1 4194304.0 114 ------- SRM_DATA} + -t 5.84 -s 0 -d 1 -p cbr -e 800 -c 0 -i 153 -a 0 -x {0.1 4194304.0 117 ------- SRM_DATA} - -t 5.84 -s 0 -d 1 -p cbr -e 800 -c 0 -i 153 -a 0 -x {0.1 4194304.0 117 ------- SRM_DATA} h -t 5.84 -s 0 -d 1 -p cbr -e 800 -c 0 -i 153 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.8428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 151 -a 0 -x {0.1 4194304.0 115 ------- SRM_DATA} + -t 5.8428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 151 -a 0 -x {0.1 4194304.0 115 ------- SRM_DATA} - -t 5.8428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 151 -a 0 -x {0.1 4194304.0 115 ------- SRM_DATA} h -t 5.8428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 151 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.8428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 151 -a 0 -x {0.1 4194304.0 115 ------- SRM_DATA} - -t 5.8428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 151 -a 0 -x {0.1 4194304.0 115 ------- SRM_DATA} h -t 5.8428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 151 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.84853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 152 -a 0 -x {0.1 4194304.0 116 ------- SRM_DATA} + -t 5.84853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 152 -a 0 -x {0.1 4194304.0 116 ------- SRM_DATA} - -t 5.84853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 152 -a 0 -x {0.1 4194304.0 116 ------- SRM_DATA} h -t 5.84853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 152 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.84963 -s 5 -d 3 -p SRM -e 116 -c 6 -i 154 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} - -t 5.84963 -s 5 -d 3 -p SRM -e 116 -c 6 -i 154 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} h -t 5.84963 -s 5 -d 3 -p SRM -e 116 -c 6 -i 154 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} r -t 5.85427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 153 -a 0 -x {0.1 4194304.0 117 ------- SRM_DATA} + -t 5.85427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 153 -a 0 -x {0.1 4194304.0 117 ------- SRM_DATA} - -t 5.85427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 153 -a 0 -x {0.1 4194304.0 117 ------- SRM_DATA} h -t 5.85427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 153 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.85707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 151 -a 0 -x {0.1 4194304.0 115 ------- SRM_DATA} r -t 5.85707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 151 -a 0 -x {0.1 4194304.0 115 ------- SRM_DATA} + -t 5.86 -s 0 -d 1 -p cbr -e 800 -c 0 -i 155 -a 0 -x {0.1 4194304.0 118 ------- SRM_DATA} - -t 5.86 -s 0 -d 1 -p cbr -e 800 -c 0 -i 155 -a 0 -x {0.1 4194304.0 118 ------- SRM_DATA} h -t 5.86 -s 0 -d 1 -p cbr -e 800 -c 0 -i 155 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.86024 -s 5 -d 3 -p SRM -e 116 -c 6 -i 154 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} + -t 5.86024 -s 3 -d 2 -p SRM -e 116 -c 6 -i 154 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} - -t 5.86024 -s 3 -d 2 -p SRM -e 116 -c 6 -i 154 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} h -t 5.86024 -s 3 -d 2 -p SRM -e 116 -c 6 -i 154 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} + -t 5.86024 -s 3 -d 4 -p SRM -e 116 -c 6 -i 154 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} - -t 5.86024 -s 3 -d 4 -p SRM -e 116 -c 6 -i 154 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} h -t 5.86024 -s 3 -d 4 -p SRM -e 116 -c 6 -i 154 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} r -t 5.8628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 152 -a 0 -x {0.1 4194304.0 116 ------- SRM_DATA} + -t 5.8628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 152 -a 0 -x {0.1 4194304.0 116 ------- SRM_DATA} - -t 5.8628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 152 -a 0 -x {0.1 4194304.0 116 ------- SRM_DATA} h -t 5.8628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 152 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.8628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 152 -a 0 -x {0.1 4194304.0 116 ------- SRM_DATA} - -t 5.8628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 152 -a 0 -x {0.1 4194304.0 116 ------- SRM_DATA} h -t 5.8628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 152 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.86853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 153 -a 0 -x {0.1 4194304.0 117 ------- SRM_DATA} + -t 5.86853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 153 -a 0 -x {0.1 4194304.0 117 ------- SRM_DATA} - -t 5.86853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 153 -a 0 -x {0.1 4194304.0 117 ------- SRM_DATA} h -t 5.86853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 153 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.87086 -s 3 -d 2 -p SRM -e 116 -c 6 -i 154 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} + -t 5.87086 -s 2 -d 1 -p SRM -e 116 -c 6 -i 154 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} - -t 5.87086 -s 2 -d 1 -p SRM -e 116 -c 6 -i 154 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} h -t 5.87086 -s 2 -d 1 -p SRM -e 116 -c 6 -i 154 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} r -t 5.87086 -s 3 -d 4 -p SRM -e 116 -c 6 -i 154 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} r -t 5.87427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 155 -a 0 -x {0.1 4194304.0 118 ------- SRM_DATA} + -t 5.87427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 155 -a 0 -x {0.1 4194304.0 118 ------- SRM_DATA} - -t 5.87427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 155 -a 0 -x {0.1 4194304.0 118 ------- SRM_DATA} h -t 5.87427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 155 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.87707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 152 -a 0 -x {0.1 4194304.0 116 ------- SRM_DATA} r -t 5.87707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 152 -a 0 -x {0.1 4194304.0 116 ------- SRM_DATA} + -t 5.88 -s 0 -d 1 -p cbr -e 800 -c 0 -i 156 -a 0 -x {0.1 4194304.0 119 ------- SRM_DATA} - -t 5.88 -s 0 -d 1 -p cbr -e 800 -c 0 -i 156 -a 0 -x {0.1 4194304.0 119 ------- SRM_DATA} h -t 5.88 -s 0 -d 1 -p cbr -e 800 -c 0 -i 156 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.88148 -s 2 -d 1 -p SRM -e 116 -c 6 -i 154 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} + -t 5.88148 -s 1 -d 0 -p SRM -e 116 -c 6 -i 154 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} - -t 5.88148 -s 1 -d 0 -p SRM -e 116 -c 6 -i 154 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} h -t 5.88148 -s 1 -d 0 -p SRM -e 116 -c 6 -i 154 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} r -t 5.8828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 153 -a 0 -x {0.1 4194304.0 117 ------- SRM_DATA} + -t 5.8828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 153 -a 0 -x {0.1 4194304.0 117 ------- SRM_DATA} - -t 5.8828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 153 -a 0 -x {0.1 4194304.0 117 ------- SRM_DATA} h -t 5.8828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 153 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.8828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 153 -a 0 -x {0.1 4194304.0 117 ------- SRM_DATA} - -t 5.8828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 153 -a 0 -x {0.1 4194304.0 117 ------- SRM_DATA} h -t 5.8828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 153 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.88853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 155 -a 0 -x {0.1 4194304.0 118 ------- SRM_DATA} + -t 5.88853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 155 -a 0 -x {0.1 4194304.0 118 ------- SRM_DATA} - -t 5.88853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 155 -a 0 -x {0.1 4194304.0 118 ------- SRM_DATA} h -t 5.88853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 155 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.8921 -s 1 -d 0 -p SRM -e 116 -c 6 -i 154 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} r -t 5.89427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 156 -a 0 -x {0.1 4194304.0 119 ------- SRM_DATA} + -t 5.89427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 156 -a 0 -x {0.1 4194304.0 119 ------- SRM_DATA} - -t 5.89427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 156 -a 0 -x {0.1 4194304.0 119 ------- SRM_DATA} h -t 5.89427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 156 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.89707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 153 -a 0 -x {0.1 4194304.0 117 ------- SRM_DATA} r -t 5.89707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 153 -a 0 -x {0.1 4194304.0 117 ------- SRM_DATA} + -t 5.9 -s 0 -d 1 -p cbr -e 800 -c 0 -i 157 -a 0 -x {0.1 4194304.0 120 ------- SRM_DATA} - -t 5.9 -s 0 -d 1 -p cbr -e 800 -c 0 -i 157 -a 0 -x {0.1 4194304.0 120 ------- SRM_DATA} h -t 5.9 -s 0 -d 1 -p cbr -e 800 -c 0 -i 157 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.9028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 155 -a 0 -x {0.1 4194304.0 118 ------- SRM_DATA} + -t 5.9028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 155 -a 0 -x {0.1 4194304.0 118 ------- SRM_DATA} - -t 5.9028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 155 -a 0 -x {0.1 4194304.0 118 ------- SRM_DATA} h -t 5.9028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 155 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.9028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 155 -a 0 -x {0.1 4194304.0 118 ------- SRM_DATA} - -t 5.9028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 155 -a 0 -x {0.1 4194304.0 118 ------- SRM_DATA} h -t 5.9028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 155 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.90796 -s 1 -d 0 -p SRM -e 116 -c 2 -i 158 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} - -t 5.90796 -s 1 -d 0 -p SRM -e 116 -c 2 -i 158 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} h -t 5.90796 -s 1 -d 0 -p SRM -e 116 -c 2 -i 158 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} + -t 5.90796 -s 1 -d 2 -p SRM -e 116 -c 2 -i 158 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} - -t 5.90796 -s 1 -d 2 -p SRM -e 116 -c 2 -i 158 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} h -t 5.90796 -s 1 -d 2 -p SRM -e 116 -c 2 -i 158 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} r -t 5.90853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 156 -a 0 -x {0.1 4194304.0 119 ------- SRM_DATA} + -t 5.90853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 156 -a 0 -x {0.1 4194304.0 119 ------- SRM_DATA} - -t 5.90853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 156 -a 0 -x {0.1 4194304.0 119 ------- SRM_DATA} h -t 5.90853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 156 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.91427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 157 -a 0 -x {0.1 4194304.0 120 ------- SRM_DATA} + -t 5.91427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 157 -a 0 -x {0.1 4194304.0 120 ------- SRM_DATA} - -t 5.91427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 157 -a 0 -x {0.1 4194304.0 120 ------- SRM_DATA} h -t 5.91427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 157 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.91707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 155 -a 0 -x {0.1 4194304.0 118 ------- SRM_DATA} r -t 5.91707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 155 -a 0 -x {0.1 4194304.0 118 ------- SRM_DATA} r -t 5.91857 -s 1 -d 0 -p SRM -e 116 -c 2 -i 158 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} r -t 5.91857 -s 1 -d 2 -p SRM -e 116 -c 2 -i 158 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} + -t 5.91857 -s 2 -d 3 -p SRM -e 116 -c 2 -i 158 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} - -t 5.91857 -s 2 -d 3 -p SRM -e 116 -c 2 -i 158 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} h -t 5.91857 -s 2 -d 3 -p SRM -e 116 -c 2 -i 158 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} + -t 5.92 -s 0 -d 1 -p cbr -e 800 -c 0 -i 159 -a 0 -x {0.1 4194304.0 121 ------- SRM_DATA} - -t 5.92 -s 0 -d 1 -p cbr -e 800 -c 0 -i 159 -a 0 -x {0.1 4194304.0 121 ------- SRM_DATA} h -t 5.92 -s 0 -d 1 -p cbr -e 800 -c 0 -i 159 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.9228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 156 -a 0 -x {0.1 4194304.0 119 ------- SRM_DATA} + -t 5.9228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 156 -a 0 -x {0.1 4194304.0 119 ------- SRM_DATA} - -t 5.9228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 156 -a 0 -x {0.1 4194304.0 119 ------- SRM_DATA} h -t 5.9228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 156 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.9228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 156 -a 0 -x {0.1 4194304.0 119 ------- SRM_DATA} - -t 5.9228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 156 -a 0 -x {0.1 4194304.0 119 ------- SRM_DATA} h -t 5.9228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 156 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.92853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 157 -a 0 -x {0.1 4194304.0 120 ------- SRM_DATA} + -t 5.92853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 157 -a 0 -x {0.1 4194304.0 120 ------- SRM_DATA} - -t 5.92853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 157 -a 0 -x {0.1 4194304.0 120 ------- SRM_DATA} h -t 5.92853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 157 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.92919 -s 2 -d 3 -p SRM -e 116 -c 2 -i 158 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} + -t 5.92919 -s 3 -d 4 -p SRM -e 116 -c 2 -i 158 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} - -t 5.92919 -s 3 -d 4 -p SRM -e 116 -c 2 -i 158 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} h -t 5.92919 -s 3 -d 4 -p SRM -e 116 -c 2 -i 158 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} + -t 5.92919 -s 3 -d 5 -p SRM -e 116 -c 2 -i 158 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} - -t 5.92919 -s 3 -d 5 -p SRM -e 116 -c 2 -i 158 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} h -t 5.92919 -s 3 -d 5 -p SRM -e 116 -c 2 -i 158 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} r -t 5.93427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 159 -a 0 -x {0.1 4194304.0 121 ------- SRM_DATA} + -t 5.93427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 159 -a 0 -x {0.1 4194304.0 121 ------- SRM_DATA} - -t 5.93427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 159 -a 0 -x {0.1 4194304.0 121 ------- SRM_DATA} h -t 5.93427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 159 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.93707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 156 -a 0 -x {0.1 4194304.0 119 ------- SRM_DATA} r -t 5.93707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 156 -a 0 -x {0.1 4194304.0 119 ------- SRM_DATA} r -t 5.93981 -s 3 -d 4 -p SRM -e 116 -c 2 -i 158 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} r -t 5.93981 -s 3 -d 5 -p SRM -e 116 -c 2 -i 158 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} + -t 5.94 -s 0 -d 1 -p cbr -e 800 -c 0 -i 160 -a 0 -x {0.1 4194304.0 122 ------- SRM_DATA} - -t 5.94 -s 0 -d 1 -p cbr -e 800 -c 0 -i 160 -a 0 -x {0.1 4194304.0 122 ------- SRM_DATA} h -t 5.94 -s 0 -d 1 -p cbr -e 800 -c 0 -i 160 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.9428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 157 -a 0 -x {0.1 4194304.0 120 ------- SRM_DATA} + -t 5.9428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 157 -a 0 -x {0.1 4194304.0 120 ------- SRM_DATA} - -t 5.9428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 157 -a 0 -x {0.1 4194304.0 120 ------- SRM_DATA} h -t 5.9428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 157 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.9428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 157 -a 0 -x {0.1 4194304.0 120 ------- SRM_DATA} - -t 5.9428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 157 -a 0 -x {0.1 4194304.0 120 ------- SRM_DATA} h -t 5.9428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 157 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.94853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 159 -a 0 -x {0.1 4194304.0 121 ------- SRM_DATA} + -t 5.94853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 159 -a 0 -x {0.1 4194304.0 121 ------- SRM_DATA} - -t 5.94853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 159 -a 0 -x {0.1 4194304.0 121 ------- SRM_DATA} h -t 5.94853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 159 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.95427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 160 -a 0 -x {0.1 4194304.0 122 ------- SRM_DATA} + -t 5.95427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 160 -a 0 -x {0.1 4194304.0 122 ------- SRM_DATA} - -t 5.95427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 160 -a 0 -x {0.1 4194304.0 122 ------- SRM_DATA} h -t 5.95427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 160 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.95707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 157 -a 0 -x {0.1 4194304.0 120 ------- SRM_DATA} r -t 5.95707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 157 -a 0 -x {0.1 4194304.0 120 ------- SRM_DATA} + -t 5.96 -s 0 -d 1 -p cbr -e 800 -c 0 -i 161 -a 0 -x {0.1 4194304.0 123 ------- SRM_DATA} - -t 5.96 -s 0 -d 1 -p cbr -e 800 -c 0 -i 161 -a 0 -x {0.1 4194304.0 123 ------- SRM_DATA} h -t 5.96 -s 0 -d 1 -p cbr -e 800 -c 0 -i 161 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.9628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 159 -a 0 -x {0.1 4194304.0 121 ------- SRM_DATA} + -t 5.9628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 159 -a 0 -x {0.1 4194304.0 121 ------- SRM_DATA} - -t 5.9628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 159 -a 0 -x {0.1 4194304.0 121 ------- SRM_DATA} h -t 5.9628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 159 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.9628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 159 -a 0 -x {0.1 4194304.0 121 ------- SRM_DATA} - -t 5.9628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 159 -a 0 -x {0.1 4194304.0 121 ------- SRM_DATA} h -t 5.9628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 159 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.96853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 160 -a 0 -x {0.1 4194304.0 122 ------- SRM_DATA} + -t 5.96853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 160 -a 0 -x {0.1 4194304.0 122 ------- SRM_DATA} - -t 5.96853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 160 -a 0 -x {0.1 4194304.0 122 ------- SRM_DATA} h -t 5.96853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 160 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.97226 -s 0 -d 1 -p SRM -e 116 -c 1 -i 162 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} - -t 5.97226 -s 0 -d 1 -p SRM -e 116 -c 1 -i 162 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} h -t 5.97226 -s 0 -d 1 -p SRM -e 116 -c 1 -i 162 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} r -t 5.97427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 161 -a 0 -x {0.1 4194304.0 123 ------- SRM_DATA} + -t 5.97427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 161 -a 0 -x {0.1 4194304.0 123 ------- SRM_DATA} - -t 5.97427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 161 -a 0 -x {0.1 4194304.0 123 ------- SRM_DATA} h -t 5.97427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 161 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.97491 -s 4 -d 3 -p SRM -e 116 -c 5 -i 163 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} - -t 5.97491 -s 4 -d 3 -p SRM -e 116 -c 5 -i 163 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} h -t 5.97491 -s 4 -d 3 -p SRM -e 116 -c 5 -i 163 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} r -t 5.97707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 159 -a 0 -x {0.1 4194304.0 121 ------- SRM_DATA} r -t 5.97707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 159 -a 0 -x {0.1 4194304.0 121 ------- SRM_DATA} + -t 5.98 -s 0 -d 1 -p cbr -e 800 -c 0 -i 164 -a 0 -x {0.1 4194304.0 124 ------- SRM_DATA} - -t 5.98 -s 0 -d 1 -p cbr -e 800 -c 0 -i 164 -a 0 -x {0.1 4194304.0 124 ------- SRM_DATA} h -t 5.98 -s 0 -d 1 -p cbr -e 800 -c 0 -i 164 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.9806 -s 2 -d 1 -p SRM -e 116 -c 3 -i 165 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} - -t 5.9806 -s 2 -d 1 -p SRM -e 116 -c 3 -i 165 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} h -t 5.9806 -s 2 -d 1 -p SRM -e 116 -c 3 -i 165 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} + -t 5.9806 -s 2 -d 3 -p SRM -e 116 -c 3 -i 165 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} - -t 5.9806 -s 2 -d 3 -p SRM -e 116 -c 3 -i 165 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} h -t 5.9806 -s 2 -d 3 -p SRM -e 116 -c 3 -i 165 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} r -t 5.9828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 160 -a 0 -x {0.1 4194304.0 122 ------- SRM_DATA} + -t 5.9828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 160 -a 0 -x {0.1 4194304.0 122 ------- SRM_DATA} - -t 5.9828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 160 -a 0 -x {0.1 4194304.0 122 ------- SRM_DATA} h -t 5.9828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 160 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 5.9828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 160 -a 0 -x {0.1 4194304.0 122 ------- SRM_DATA} - -t 5.9828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 160 -a 0 -x {0.1 4194304.0 122 ------- SRM_DATA} h -t 5.9828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 160 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.98287 -s 0 -d 1 -p SRM -e 116 -c 1 -i 162 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} + -t 5.98287 -s 1 -d 2 -p SRM -e 116 -c 1 -i 162 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} - -t 5.98287 -s 1 -d 2 -p SRM -e 116 -c 1 -i 162 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} h -t 5.98287 -s 1 -d 2 -p SRM -e 116 -c 1 -i 162 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} r -t 5.98553 -s 4 -d 3 -p SRM -e 116 -c 5 -i 163 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} + -t 5.98553 -s 3 -d 2 -p SRM -e 116 -c 5 -i 163 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} - -t 5.98553 -s 3 -d 2 -p SRM -e 116 -c 5 -i 163 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} h -t 5.98553 -s 3 -d 2 -p SRM -e 116 -c 5 -i 163 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} + -t 5.98553 -s 3 -d 5 -p SRM -e 116 -c 5 -i 163 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} - -t 5.98707 -s 3 -d 5 -p SRM -e 116 -c 5 -i 163 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} h -t 5.98707 -s 3 -d 5 -p SRM -e 116 -c 5 -i 163 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} r -t 5.98853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 161 -a 0 -x {0.1 4194304.0 123 ------- SRM_DATA} + -t 5.98853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 161 -a 0 -x {0.1 4194304.0 123 ------- SRM_DATA} - -t 5.98853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 161 -a 0 -x {0.1 4194304.0 123 ------- SRM_DATA} h -t 5.98853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 161 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.99122 -s 2 -d 1 -p SRM -e 116 -c 3 -i 165 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} + -t 5.99122 -s 1 -d 0 -p SRM -e 116 -c 3 -i 165 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} - -t 5.99122 -s 1 -d 0 -p SRM -e 116 -c 3 -i 165 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} h -t 5.99122 -s 1 -d 0 -p SRM -e 116 -c 3 -i 165 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} r -t 5.99122 -s 2 -d 3 -p SRM -e 116 -c 3 -i 165 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} + -t 5.99122 -s 3 -d 4 -p SRM -e 116 -c 3 -i 165 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} - -t 5.99122 -s 3 -d 4 -p SRM -e 116 -c 3 -i 165 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} h -t 5.99122 -s 3 -d 4 -p SRM -e 116 -c 3 -i 165 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} + -t 5.99122 -s 3 -d 5 -p SRM -e 116 -c 3 -i 165 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} - -t 5.99122 -s 3 -d 5 -p SRM -e 116 -c 3 -i 165 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} h -t 5.99122 -s 3 -d 5 -p SRM -e 116 -c 3 -i 165 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} r -t 5.99349 -s 1 -d 2 -p SRM -e 116 -c 1 -i 162 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} + -t 5.99349 -s 2 -d 3 -p SRM -e 116 -c 1 -i 162 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} - -t 5.99349 -s 2 -d 3 -p SRM -e 116 -c 1 -i 162 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} h -t 5.99349 -s 2 -d 3 -p SRM -e 116 -c 1 -i 162 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} r -t 5.99427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 164 -a 0 -x {0.1 4194304.0 124 ------- SRM_DATA} + -t 5.99427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 164 -a 0 -x {0.1 4194304.0 124 ------- SRM_DATA} - -t 5.99427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 164 -a 0 -x {0.1 4194304.0 124 ------- SRM_DATA} h -t 5.99427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 164 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 5.99615 -s 3 -d 2 -p SRM -e 116 -c 5 -i 163 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} + -t 5.99615 -s 2 -d 1 -p SRM -e 116 -c 5 -i 163 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} - -t 5.99615 -s 2 -d 1 -p SRM -e 116 -c 5 -i 163 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} h -t 5.99615 -s 2 -d 1 -p SRM -e 116 -c 5 -i 163 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} r -t 5.99707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 160 -a 0 -x {0.1 4194304.0 122 ------- SRM_DATA} r -t 5.99707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 160 -a 0 -x {0.1 4194304.0 122 ------- SRM_DATA} r -t 5.99769 -s 3 -d 5 -p SRM -e 116 -c 5 -i 163 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} + -t 6 -s 0 -d 1 -p cbr -e 800 -c 0 -i 166 -a 0 -x {0.1 4194304.0 125 ------- SRM_DATA} - -t 6 -s 0 -d 1 -p cbr -e 800 -c 0 -i 166 -a 0 -x {0.1 4194304.0 125 ------- SRM_DATA} h -t 6 -s 0 -d 1 -p cbr -e 800 -c 0 -i 166 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.00184 -s 1 -d 0 -p SRM -e 116 -c 3 -i 165 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} r -t 6.00184 -s 3 -d 4 -p SRM -e 116 -c 3 -i 165 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} r -t 6.00184 -s 3 -d 5 -p SRM -e 116 -c 3 -i 165 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} r -t 6.0028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 161 -a 0 -x {0.1 4194304.0 123 ------- SRM_DATA} + -t 6.0028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 161 -a 0 -x {0.1 4194304.0 123 ------- SRM_DATA} - -t 6.0028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 161 -a 0 -x {0.1 4194304.0 123 ------- SRM_DATA} h -t 6.0028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 161 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.0028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 161 -a 0 -x {0.1 4194304.0 123 ------- SRM_DATA} - -t 6.0028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 161 -a 0 -x {0.1 4194304.0 123 ------- SRM_DATA} h -t 6.0028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 161 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.00411 -s 2 -d 3 -p SRM -e 116 -c 1 -i 162 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} + -t 6.00411 -s 3 -d 4 -p SRM -e 116 -c 1 -i 162 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} + -t 6.00411 -s 3 -d 5 -p SRM -e 116 -c 1 -i 162 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} r -t 6.00677 -s 2 -d 1 -p SRM -e 116 -c 5 -i 163 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} + -t 6.00677 -s 1 -d 0 -p SRM -e 116 -c 5 -i 163 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} - -t 6.00677 -s 1 -d 0 -p SRM -e 116 -c 5 -i 163 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} h -t 6.00677 -s 1 -d 0 -p SRM -e 116 -c 5 -i 163 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} - -t 6.00707 -s 3 -d 4 -p SRM -e 116 -c 1 -i 162 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} h -t 6.00707 -s 3 -d 4 -p SRM -e 116 -c 1 -i 162 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} - -t 6.00707 -s 3 -d 5 -p SRM -e 116 -c 1 -i 162 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} h -t 6.00707 -s 3 -d 5 -p SRM -e 116 -c 1 -i 162 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} r -t 6.00853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 164 -a 0 -x {0.1 4194304.0 124 ------- SRM_DATA} + -t 6.00853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 164 -a 0 -x {0.1 4194304.0 124 ------- SRM_DATA} - -t 6.00853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 164 -a 0 -x {0.1 4194304.0 124 ------- SRM_DATA} h -t 6.00853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 164 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.01427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 166 -a 0 -x {0.1 4194304.0 125 ------- SRM_DATA} + -t 6.01427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 166 -a 0 -x {0.1 4194304.0 125 ------- SRM_DATA} - -t 6.01427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 166 -a 0 -x {0.1 4194304.0 125 ------- SRM_DATA} h -t 6.01427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 166 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.01707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 161 -a 0 -x {0.1 4194304.0 123 ------- SRM_DATA} r -t 6.01707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 161 -a 0 -x {0.1 4194304.0 123 ------- SRM_DATA} r -t 6.01739 -s 1 -d 0 -p SRM -e 116 -c 5 -i 163 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} r -t 6.01769 -s 3 -d 4 -p SRM -e 116 -c 1 -i 162 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} r -t 6.01769 -s 3 -d 5 -p SRM -e 116 -c 1 -i 162 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} + -t 6.02 -s 0 -d 1 -p cbr -e 800 -c 0 -i 167 -a 0 -x {0.1 4194304.0 126 ------- SRM_DATA} - -t 6.02 -s 0 -d 1 -p cbr -e 800 -c 0 -i 167 -a 0 -x {0.1 4194304.0 126 ------- SRM_DATA} h -t 6.02 -s 0 -d 1 -p cbr -e 800 -c 0 -i 167 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.0228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 164 -a 0 -x {0.1 4194304.0 124 ------- SRM_DATA} + -t 6.0228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 164 -a 0 -x {0.1 4194304.0 124 ------- SRM_DATA} - -t 6.0228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 164 -a 0 -x {0.1 4194304.0 124 ------- SRM_DATA} h -t 6.0228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 164 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.0228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 164 -a 0 -x {0.1 4194304.0 124 ------- SRM_DATA} - -t 6.0228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 164 -a 0 -x {0.1 4194304.0 124 ------- SRM_DATA} h -t 6.0228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 164 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.02853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 166 -a 0 -x {0.1 4194304.0 125 ------- SRM_DATA} + -t 6.02853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 166 -a 0 -x {0.1 4194304.0 125 ------- SRM_DATA} - -t 6.02853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 166 -a 0 -x {0.1 4194304.0 125 ------- SRM_DATA} h -t 6.02853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 166 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.03427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 167 -a 0 -x {0.1 4194304.0 126 ------- SRM_DATA} + -t 6.03427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 167 -a 0 -x {0.1 4194304.0 126 ------- SRM_DATA} - -t 6.03427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 167 -a 0 -x {0.1 4194304.0 126 ------- SRM_DATA} h -t 6.03427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 167 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.03707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 164 -a 0 -x {0.1 4194304.0 124 ------- SRM_DATA} r -t 6.03707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 164 -a 0 -x {0.1 4194304.0 124 ------- SRM_DATA} + -t 6.04 -s 0 -d 1 -p cbr -e 800 -c 0 -i 168 -a 0 -x {0.1 4194304.0 127 ------- SRM_DATA} - -t 6.04 -s 0 -d 1 -p cbr -e 800 -c 0 -i 168 -a 0 -x {0.1 4194304.0 127 ------- SRM_DATA} h -t 6.04 -s 0 -d 1 -p cbr -e 800 -c 0 -i 168 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.0428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 166 -a 0 -x {0.1 4194304.0 125 ------- SRM_DATA} + -t 6.0428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 166 -a 0 -x {0.1 4194304.0 125 ------- SRM_DATA} - -t 6.0428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 166 -a 0 -x {0.1 4194304.0 125 ------- SRM_DATA} h -t 6.0428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 166 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.0428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 166 -a 0 -x {0.1 4194304.0 125 ------- SRM_DATA} - -t 6.0428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 166 -a 0 -x {0.1 4194304.0 125 ------- SRM_DATA} h -t 6.0428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 166 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.04853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 167 -a 0 -x {0.1 4194304.0 126 ------- SRM_DATA} + -t 6.04853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 167 -a 0 -x {0.1 4194304.0 126 ------- SRM_DATA} - -t 6.04853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 167 -a 0 -x {0.1 4194304.0 126 ------- SRM_DATA} h -t 6.04853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 167 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.05427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 168 -a 0 -x {0.1 4194304.0 127 ------- SRM_DATA} + -t 6.05427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 168 -a 0 -x {0.1 4194304.0 127 ------- SRM_DATA} - -t 6.05427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 168 -a 0 -x {0.1 4194304.0 127 ------- SRM_DATA} h -t 6.05427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 168 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.05707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 166 -a 0 -x {0.1 4194304.0 125 ------- SRM_DATA} r -t 6.05707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 166 -a 0 -x {0.1 4194304.0 125 ------- SRM_DATA} + -t 6.06 -s 0 -d 1 -p cbr -e 800 -c 0 -i 169 -a 0 -x {0.1 4194304.0 128 ------- SRM_DATA} - -t 6.06 -s 0 -d 1 -p cbr -e 800 -c 0 -i 169 -a 0 -x {0.1 4194304.0 128 ------- SRM_DATA} h -t 6.06 -s 0 -d 1 -p cbr -e 800 -c 0 -i 169 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.0628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 167 -a 0 -x {0.1 4194304.0 126 ------- SRM_DATA} + -t 6.0628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 167 -a 0 -x {0.1 4194304.0 126 ------- SRM_DATA} - -t 6.0628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 167 -a 0 -x {0.1 4194304.0 126 ------- SRM_DATA} h -t 6.0628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 167 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.0628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 167 -a 0 -x {0.1 4194304.0 126 ------- SRM_DATA} - -t 6.0628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 167 -a 0 -x {0.1 4194304.0 126 ------- SRM_DATA} h -t 6.0628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 167 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.06853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 168 -a 0 -x {0.1 4194304.0 127 ------- SRM_DATA} + -t 6.06853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 168 -a 0 -x {0.1 4194304.0 127 ------- SRM_DATA} - -t 6.06853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 168 -a 0 -x {0.1 4194304.0 127 ------- SRM_DATA} h -t 6.06853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 168 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.07427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 169 -a 0 -x {0.1 4194304.0 128 ------- SRM_DATA} + -t 6.07427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 169 -a 0 -x {0.1 4194304.0 128 ------- SRM_DATA} - -t 6.07427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 169 -a 0 -x {0.1 4194304.0 128 ------- SRM_DATA} h -t 6.07427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 169 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.07707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 167 -a 0 -x {0.1 4194304.0 126 ------- SRM_DATA} r -t 6.07707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 167 -a 0 -x {0.1 4194304.0 126 ------- SRM_DATA} + -t 6.08 -s 0 -d 1 -p cbr -e 800 -c 0 -i 170 -a 0 -x {0.1 4194304.0 129 ------- SRM_DATA} - -t 6.08 -s 0 -d 1 -p cbr -e 800 -c 0 -i 170 -a 0 -x {0.1 4194304.0 129 ------- SRM_DATA} h -t 6.08 -s 0 -d 1 -p cbr -e 800 -c 0 -i 170 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.0828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 168 -a 0 -x {0.1 4194304.0 127 ------- SRM_DATA} + -t 6.0828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 168 -a 0 -x {0.1 4194304.0 127 ------- SRM_DATA} - -t 6.0828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 168 -a 0 -x {0.1 4194304.0 127 ------- SRM_DATA} h -t 6.0828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 168 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.0828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 168 -a 0 -x {0.1 4194304.0 127 ------- SRM_DATA} - -t 6.0828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 168 -a 0 -x {0.1 4194304.0 127 ------- SRM_DATA} h -t 6.0828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 168 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.08853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 169 -a 0 -x {0.1 4194304.0 128 ------- SRM_DATA} + -t 6.08853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 169 -a 0 -x {0.1 4194304.0 128 ------- SRM_DATA} - -t 6.08853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 169 -a 0 -x {0.1 4194304.0 128 ------- SRM_DATA} h -t 6.08853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 169 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.09427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 170 -a 0 -x {0.1 4194304.0 129 ------- SRM_DATA} + -t 6.09427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 170 -a 0 -x {0.1 4194304.0 129 ------- SRM_DATA} - -t 6.09427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 170 -a 0 -x {0.1 4194304.0 129 ------- SRM_DATA} h -t 6.09427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 170 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.09707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 168 -a 0 -x {0.1 4194304.0 127 ------- SRM_DATA} r -t 6.09707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 168 -a 0 -x {0.1 4194304.0 127 ------- SRM_DATA} + -t 6.1 -s 0 -d 1 -p cbr -e 800 -c 0 -i 171 -a 0 -x {0.1 4194304.0 130 ------- SRM_DATA} - -t 6.1 -s 0 -d 1 -p cbr -e 800 -c 0 -i 171 -a 0 -x {0.1 4194304.0 130 ------- SRM_DATA} h -t 6.1 -s 0 -d 1 -p cbr -e 800 -c 0 -i 171 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.1028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 169 -a 0 -x {0.1 4194304.0 128 ------- SRM_DATA} + -t 6.1028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 169 -a 0 -x {0.1 4194304.0 128 ------- SRM_DATA} - -t 6.1028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 169 -a 0 -x {0.1 4194304.0 128 ------- SRM_DATA} h -t 6.1028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 169 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.1028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 169 -a 0 -x {0.1 4194304.0 128 ------- SRM_DATA} - -t 6.1028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 169 -a 0 -x {0.1 4194304.0 128 ------- SRM_DATA} h -t 6.1028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 169 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.10853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 170 -a 0 -x {0.1 4194304.0 129 ------- SRM_DATA} + -t 6.10853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 170 -a 0 -x {0.1 4194304.0 129 ------- SRM_DATA} - -t 6.10853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 170 -a 0 -x {0.1 4194304.0 129 ------- SRM_DATA} h -t 6.10853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 170 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.11364 -s 3 -d 2 -p SRM -e 116 -c 4 -i 172 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} - -t 6.11364 -s 3 -d 2 -p SRM -e 116 -c 4 -i 172 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} h -t 6.11364 -s 3 -d 2 -p SRM -e 116 -c 4 -i 172 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} + -t 6.11364 -s 3 -d 4 -p SRM -e 116 -c 4 -i 172 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} - -t 6.11364 -s 3 -d 4 -p SRM -e 116 -c 4 -i 172 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} h -t 6.11364 -s 3 -d 4 -p SRM -e 116 -c 4 -i 172 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} + -t 6.11364 -s 3 -d 5 -p SRM -e 116 -c 4 -i 172 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} - -t 6.11364 -s 3 -d 5 -p SRM -e 116 -c 4 -i 172 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} h -t 6.11364 -s 3 -d 5 -p SRM -e 116 -c 4 -i 172 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} r -t 6.11427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 171 -a 0 -x {0.1 4194304.0 130 ------- SRM_DATA} + -t 6.11427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 171 -a 0 -x {0.1 4194304.0 130 ------- SRM_DATA} - -t 6.11427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 171 -a 0 -x {0.1 4194304.0 130 ------- SRM_DATA} h -t 6.11427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 171 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.11707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 169 -a 0 -x {0.1 4194304.0 128 ------- SRM_DATA} r -t 6.11707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 169 -a 0 -x {0.1 4194304.0 128 ------- SRM_DATA} + -t 6.12 -s 0 -d 1 -p cbr -e 800 -c 0 -i 173 -a 0 -x {0.1 4194304.0 131 ------- SRM_DATA} - -t 6.12 -s 0 -d 1 -p cbr -e 800 -c 0 -i 173 -a 0 -x {0.1 4194304.0 131 ------- SRM_DATA} h -t 6.12 -s 0 -d 1 -p cbr -e 800 -c 0 -i 173 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.1228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 170 -a 0 -x {0.1 4194304.0 129 ------- SRM_DATA} + -t 6.1228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 170 -a 0 -x {0.1 4194304.0 129 ------- SRM_DATA} - -t 6.1228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 170 -a 0 -x {0.1 4194304.0 129 ------- SRM_DATA} h -t 6.1228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 170 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.1228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 170 -a 0 -x {0.1 4194304.0 129 ------- SRM_DATA} - -t 6.1228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 170 -a 0 -x {0.1 4194304.0 129 ------- SRM_DATA} h -t 6.1228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 170 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.12426 -s 3 -d 2 -p SRM -e 116 -c 4 -i 172 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} + -t 6.12426 -s 2 -d 1 -p SRM -e 116 -c 4 -i 172 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} - -t 6.12426 -s 2 -d 1 -p SRM -e 116 -c 4 -i 172 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} h -t 6.12426 -s 2 -d 1 -p SRM -e 116 -c 4 -i 172 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} r -t 6.12426 -s 3 -d 4 -p SRM -e 116 -c 4 -i 172 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} r -t 6.12426 -s 3 -d 5 -p SRM -e 116 -c 4 -i 172 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} r -t 6.12853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 171 -a 0 -x {0.1 4194304.0 130 ------- SRM_DATA} + -t 6.12853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 171 -a 0 -x {0.1 4194304.0 130 ------- SRM_DATA} - -t 6.12853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 171 -a 0 -x {0.1 4194304.0 130 ------- SRM_DATA} h -t 6.12853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 171 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.13427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 173 -a 0 -x {0.1 4194304.0 131 ------- SRM_DATA} + -t 6.13427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 173 -a 0 -x {0.1 4194304.0 131 ------- SRM_DATA} - -t 6.13427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 173 -a 0 -x {0.1 4194304.0 131 ------- SRM_DATA} h -t 6.13427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 173 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.13488 -s 2 -d 1 -p SRM -e 116 -c 4 -i 172 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} + -t 6.13488 -s 1 -d 0 -p SRM -e 116 -c 4 -i 172 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} - -t 6.13488 -s 1 -d 0 -p SRM -e 116 -c 4 -i 172 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} h -t 6.13488 -s 1 -d 0 -p SRM -e 116 -c 4 -i 172 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} r -t 6.13707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 170 -a 0 -x {0.1 4194304.0 129 ------- SRM_DATA} r -t 6.13707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 170 -a 0 -x {0.1 4194304.0 129 ------- SRM_DATA} + -t 6.14 -s 0 -d 1 -p cbr -e 800 -c 0 -i 174 -a 0 -x {0.1 4194304.0 132 ------- SRM_DATA} - -t 6.14 -s 0 -d 1 -p cbr -e 800 -c 0 -i 174 -a 0 -x {0.1 4194304.0 132 ------- SRM_DATA} h -t 6.14 -s 0 -d 1 -p cbr -e 800 -c 0 -i 174 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.1428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 171 -a 0 -x {0.1 4194304.0 130 ------- SRM_DATA} + -t 6.1428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 171 -a 0 -x {0.1 4194304.0 130 ------- SRM_DATA} - -t 6.1428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 171 -a 0 -x {0.1 4194304.0 130 ------- SRM_DATA} h -t 6.1428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 171 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.1428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 171 -a 0 -x {0.1 4194304.0 130 ------- SRM_DATA} - -t 6.1428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 171 -a 0 -x {0.1 4194304.0 130 ------- SRM_DATA} h -t 6.1428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 171 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.1455 -s 1 -d 0 -p SRM -e 116 -c 4 -i 172 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} r -t 6.14853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 173 -a 0 -x {0.1 4194304.0 131 ------- SRM_DATA} + -t 6.14853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 173 -a 0 -x {0.1 4194304.0 131 ------- SRM_DATA} - -t 6.14853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 173 -a 0 -x {0.1 4194304.0 131 ------- SRM_DATA} h -t 6.14853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 173 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.15427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 174 -a 0 -x {0.1 4194304.0 132 ------- SRM_DATA} + -t 6.15427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 174 -a 0 -x {0.1 4194304.0 132 ------- SRM_DATA} - -t 6.15427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 174 -a 0 -x {0.1 4194304.0 132 ------- SRM_DATA} h -t 6.15427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 174 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.15707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 171 -a 0 -x {0.1 4194304.0 130 ------- SRM_DATA} r -t 6.15707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 171 -a 0 -x {0.1 4194304.0 130 ------- SRM_DATA} + -t 6.16 -s 0 -d 1 -p cbr -e 800 -c 0 -i 175 -a 0 -x {0.1 4194304.0 133 ------- SRM_DATA} - -t 6.16 -s 0 -d 1 -p cbr -e 800 -c 0 -i 175 -a 0 -x {0.1 4194304.0 133 ------- SRM_DATA} h -t 6.16 -s 0 -d 1 -p cbr -e 800 -c 0 -i 175 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.1628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 173 -a 0 -x {0.1 4194304.0 131 ------- SRM_DATA} + -t 6.1628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 173 -a 0 -x {0.1 4194304.0 131 ------- SRM_DATA} - -t 6.1628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 173 -a 0 -x {0.1 4194304.0 131 ------- SRM_DATA} h -t 6.1628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 173 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.1628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 173 -a 0 -x {0.1 4194304.0 131 ------- SRM_DATA} - -t 6.1628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 173 -a 0 -x {0.1 4194304.0 131 ------- SRM_DATA} h -t 6.1628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 173 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.16853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 174 -a 0 -x {0.1 4194304.0 132 ------- SRM_DATA} + -t 6.16853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 174 -a 0 -x {0.1 4194304.0 132 ------- SRM_DATA} - -t 6.16853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 174 -a 0 -x {0.1 4194304.0 132 ------- SRM_DATA} h -t 6.16853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 174 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.17427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 175 -a 0 -x {0.1 4194304.0 133 ------- SRM_DATA} + -t 6.17427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 175 -a 0 -x {0.1 4194304.0 133 ------- SRM_DATA} - -t 6.17427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 175 -a 0 -x {0.1 4194304.0 133 ------- SRM_DATA} h -t 6.17427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 175 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.17707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 173 -a 0 -x {0.1 4194304.0 131 ------- SRM_DATA} r -t 6.17707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 173 -a 0 -x {0.1 4194304.0 131 ------- SRM_DATA} + -t 6.18 -s 0 -d 1 -p cbr -e 800 -c 0 -i 176 -a 0 -x {0.1 4194304.0 134 ------- SRM_DATA} - -t 6.18 -s 0 -d 1 -p cbr -e 800 -c 0 -i 176 -a 0 -x {0.1 4194304.0 134 ------- SRM_DATA} h -t 6.18 -s 0 -d 1 -p cbr -e 800 -c 0 -i 176 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.1828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 174 -a 0 -x {0.1 4194304.0 132 ------- SRM_DATA} + -t 6.1828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 174 -a 0 -x {0.1 4194304.0 132 ------- SRM_DATA} - -t 6.1828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 174 -a 0 -x {0.1 4194304.0 132 ------- SRM_DATA} h -t 6.1828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 174 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.1828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 174 -a 0 -x {0.1 4194304.0 132 ------- SRM_DATA} - -t 6.1828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 174 -a 0 -x {0.1 4194304.0 132 ------- SRM_DATA} h -t 6.1828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 174 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.18853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 175 -a 0 -x {0.1 4194304.0 133 ------- SRM_DATA} + -t 6.18853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 175 -a 0 -x {0.1 4194304.0 133 ------- SRM_DATA} - -t 6.18853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 175 -a 0 -x {0.1 4194304.0 133 ------- SRM_DATA} h -t 6.18853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 175 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.19427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 176 -a 0 -x {0.1 4194304.0 134 ------- SRM_DATA} + -t 6.19427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 176 -a 0 -x {0.1 4194304.0 134 ------- SRM_DATA} - -t 6.19427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 176 -a 0 -x {0.1 4194304.0 134 ------- SRM_DATA} h -t 6.19427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 176 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.19707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 174 -a 0 -x {0.1 4194304.0 132 ------- SRM_DATA} r -t 6.19707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 174 -a 0 -x {0.1 4194304.0 132 ------- SRM_DATA} + -t 6.2 -s 0 -d 1 -p cbr -e 800 -c 0 -i 177 -a 0 -x {0.1 4194304.0 135 ------- SRM_DATA} - -t 6.2 -s 0 -d 1 -p cbr -e 800 -c 0 -i 177 -a 0 -x {0.1 4194304.0 135 ------- SRM_DATA} h -t 6.2 -s 0 -d 1 -p cbr -e 800 -c 0 -i 177 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.2028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 175 -a 0 -x {0.1 4194304.0 133 ------- SRM_DATA} + -t 6.2028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 175 -a 0 -x {0.1 4194304.0 133 ------- SRM_DATA} - -t 6.2028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 175 -a 0 -x {0.1 4194304.0 133 ------- SRM_DATA} h -t 6.2028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 175 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.2028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 175 -a 0 -x {0.1 4194304.0 133 ------- SRM_DATA} - -t 6.2028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 175 -a 0 -x {0.1 4194304.0 133 ------- SRM_DATA} h -t 6.2028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 175 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.20853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 176 -a 0 -x {0.1 4194304.0 134 ------- SRM_DATA} + -t 6.20853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 176 -a 0 -x {0.1 4194304.0 134 ------- SRM_DATA} - -t 6.20853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 176 -a 0 -x {0.1 4194304.0 134 ------- SRM_DATA} h -t 6.20853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 176 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.21427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 177 -a 0 -x {0.1 4194304.0 135 ------- SRM_DATA} + -t 6.21427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 177 -a 0 -x {0.1 4194304.0 135 ------- SRM_DATA} - -t 6.21427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 177 -a 0 -x {0.1 4194304.0 135 ------- SRM_DATA} h -t 6.21427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 177 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.21707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 175 -a 0 -x {0.1 4194304.0 133 ------- SRM_DATA} r -t 6.21707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 175 -a 0 -x {0.1 4194304.0 133 ------- SRM_DATA} + -t 6.22 -s 0 -d 1 -p cbr -e 800 -c 0 -i 178 -a 0 -x {0.1 4194304.0 136 ------- SRM_DATA} - -t 6.22 -s 0 -d 1 -p cbr -e 800 -c 0 -i 178 -a 0 -x {0.1 4194304.0 136 ------- SRM_DATA} h -t 6.22 -s 0 -d 1 -p cbr -e 800 -c 0 -i 178 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.2228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 176 -a 0 -x {0.1 4194304.0 134 ------- SRM_DATA} + -t 6.2228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 176 -a 0 -x {0.1 4194304.0 134 ------- SRM_DATA} - -t 6.2228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 176 -a 0 -x {0.1 4194304.0 134 ------- SRM_DATA} h -t 6.2228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 176 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.2228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 176 -a 0 -x {0.1 4194304.0 134 ------- SRM_DATA} - -t 6.2228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 176 -a 0 -x {0.1 4194304.0 134 ------- SRM_DATA} h -t 6.2228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 176 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.22853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 177 -a 0 -x {0.1 4194304.0 135 ------- SRM_DATA} + -t 6.22853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 177 -a 0 -x {0.1 4194304.0 135 ------- SRM_DATA} - -t 6.22853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 177 -a 0 -x {0.1 4194304.0 135 ------- SRM_DATA} h -t 6.22853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 177 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.23427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 178 -a 0 -x {0.1 4194304.0 136 ------- SRM_DATA} + -t 6.23427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 178 -a 0 -x {0.1 4194304.0 136 ------- SRM_DATA} - -t 6.23427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 178 -a 0 -x {0.1 4194304.0 136 ------- SRM_DATA} h -t 6.23427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 178 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.23707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 176 -a 0 -x {0.1 4194304.0 134 ------- SRM_DATA} r -t 6.23707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 176 -a 0 -x {0.1 4194304.0 134 ------- SRM_DATA} + -t 6.24 -s 0 -d 1 -p cbr -e 800 -c 0 -i 179 -a 0 -x {0.1 4194304.0 137 ------- SRM_DATA} - -t 6.24 -s 0 -d 1 -p cbr -e 800 -c 0 -i 179 -a 0 -x {0.1 4194304.0 137 ------- SRM_DATA} h -t 6.24 -s 0 -d 1 -p cbr -e 800 -c 0 -i 179 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.2428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 177 -a 0 -x {0.1 4194304.0 135 ------- SRM_DATA} + -t 6.2428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 177 -a 0 -x {0.1 4194304.0 135 ------- SRM_DATA} - -t 6.2428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 177 -a 0 -x {0.1 4194304.0 135 ------- SRM_DATA} h -t 6.2428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 177 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.2428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 177 -a 0 -x {0.1 4194304.0 135 ------- SRM_DATA} - -t 6.2428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 177 -a 0 -x {0.1 4194304.0 135 ------- SRM_DATA} h -t 6.2428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 177 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.24853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 178 -a 0 -x {0.1 4194304.0 136 ------- SRM_DATA} + -t 6.24853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 178 -a 0 -x {0.1 4194304.0 136 ------- SRM_DATA} - -t 6.24853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 178 -a 0 -x {0.1 4194304.0 136 ------- SRM_DATA} h -t 6.24853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 178 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.25427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 179 -a 0 -x {0.1 4194304.0 137 ------- SRM_DATA} + -t 6.25427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 179 -a 0 -x {0.1 4194304.0 137 ------- SRM_DATA} - -t 6.25427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 179 -a 0 -x {0.1 4194304.0 137 ------- SRM_DATA} h -t 6.25427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 179 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.25707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 177 -a 0 -x {0.1 4194304.0 135 ------- SRM_DATA} r -t 6.25707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 177 -a 0 -x {0.1 4194304.0 135 ------- SRM_DATA} + -t 6.26 -s 0 -d 1 -p cbr -e 800 -c 0 -i 180 -a 0 -x {0.1 4194304.0 138 ------- SRM_DATA} - -t 6.26 -s 0 -d 1 -p cbr -e 800 -c 0 -i 180 -a 0 -x {0.1 4194304.0 138 ------- SRM_DATA} h -t 6.26 -s 0 -d 1 -p cbr -e 800 -c 0 -i 180 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.2628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 178 -a 0 -x {0.1 4194304.0 136 ------- SRM_DATA} + -t 6.2628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 178 -a 0 -x {0.1 4194304.0 136 ------- SRM_DATA} - -t 6.2628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 178 -a 0 -x {0.1 4194304.0 136 ------- SRM_DATA} h -t 6.2628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 178 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.2628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 178 -a 0 -x {0.1 4194304.0 136 ------- SRM_DATA} - -t 6.2628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 178 -a 0 -x {0.1 4194304.0 136 ------- SRM_DATA} h -t 6.2628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 178 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.26853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 179 -a 0 -x {0.1 4194304.0 137 ------- SRM_DATA} + -t 6.26853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 179 -a 0 -x {0.1 4194304.0 137 ------- SRM_DATA} - -t 6.26853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 179 -a 0 -x {0.1 4194304.0 137 ------- SRM_DATA} h -t 6.26853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 179 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.27427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 180 -a 0 -x {0.1 4194304.0 138 ------- SRM_DATA} + -t 6.27427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 180 -a 0 -x {0.1 4194304.0 138 ------- SRM_DATA} - -t 6.27427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 180 -a 0 -x {0.1 4194304.0 138 ------- SRM_DATA} h -t 6.27427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 180 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.27707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 178 -a 0 -x {0.1 4194304.0 136 ------- SRM_DATA} r -t 6.27707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 178 -a 0 -x {0.1 4194304.0 136 ------- SRM_DATA} + -t 6.28 -s 0 -d 1 -p cbr -e 800 -c 0 -i 181 -a 0 -x {0.1 4194304.0 139 ------- SRM_DATA} - -t 6.28 -s 0 -d 1 -p cbr -e 800 -c 0 -i 181 -a 0 -x {0.1 4194304.0 139 ------- SRM_DATA} h -t 6.28 -s 0 -d 1 -p cbr -e 800 -c 0 -i 181 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.2828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 179 -a 0 -x {0.1 4194304.0 137 ------- SRM_DATA} + -t 6.2828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 179 -a 0 -x {0.1 4194304.0 137 ------- SRM_DATA} - -t 6.2828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 179 -a 0 -x {0.1 4194304.0 137 ------- SRM_DATA} h -t 6.2828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 179 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.2828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 179 -a 0 -x {0.1 4194304.0 137 ------- SRM_DATA} - -t 6.2828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 179 -a 0 -x {0.1 4194304.0 137 ------- SRM_DATA} h -t 6.2828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 179 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.28853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 180 -a 0 -x {0.1 4194304.0 138 ------- SRM_DATA} + -t 6.28853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 180 -a 0 -x {0.1 4194304.0 138 ------- SRM_DATA} - -t 6.28853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 180 -a 0 -x {0.1 4194304.0 138 ------- SRM_DATA} h -t 6.28853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 180 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.29427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 181 -a 0 -x {0.1 4194304.0 139 ------- SRM_DATA} + -t 6.29427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 181 -a 0 -x {0.1 4194304.0 139 ------- SRM_DATA} - -t 6.29427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 181 -a 0 -x {0.1 4194304.0 139 ------- SRM_DATA} h -t 6.29427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 181 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.29707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 179 -a 0 -x {0.1 4194304.0 137 ------- SRM_DATA} r -t 6.29707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 179 -a 0 -x {0.1 4194304.0 137 ------- SRM_DATA} + -t 6.3 -s 0 -d 1 -p cbr -e 800 -c 0 -i 182 -a 0 -x {0.1 4194304.0 140 ------- SRM_DATA} - -t 6.3 -s 0 -d 1 -p cbr -e 800 -c 0 -i 182 -a 0 -x {0.1 4194304.0 140 ------- SRM_DATA} h -t 6.3 -s 0 -d 1 -p cbr -e 800 -c 0 -i 182 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.3028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 180 -a 0 -x {0.1 4194304.0 138 ------- SRM_DATA} + -t 6.3028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 180 -a 0 -x {0.1 4194304.0 138 ------- SRM_DATA} - -t 6.3028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 180 -a 0 -x {0.1 4194304.0 138 ------- SRM_DATA} h -t 6.3028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 180 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.3028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 180 -a 0 -x {0.1 4194304.0 138 ------- SRM_DATA} - -t 6.3028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 180 -a 0 -x {0.1 4194304.0 138 ------- SRM_DATA} h -t 6.3028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 180 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.30853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 181 -a 0 -x {0.1 4194304.0 139 ------- SRM_DATA} + -t 6.30853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 181 -a 0 -x {0.1 4194304.0 139 ------- SRM_DATA} - -t 6.30853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 181 -a 0 -x {0.1 4194304.0 139 ------- SRM_DATA} h -t 6.30853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 181 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.31427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 182 -a 0 -x {0.1 4194304.0 140 ------- SRM_DATA} + -t 6.31427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 182 -a 0 -x {0.1 4194304.0 140 ------- SRM_DATA} - -t 6.31427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 182 -a 0 -x {0.1 4194304.0 140 ------- SRM_DATA} h -t 6.31427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 182 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.31707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 180 -a 0 -x {0.1 4194304.0 138 ------- SRM_DATA} r -t 6.31707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 180 -a 0 -x {0.1 4194304.0 138 ------- SRM_DATA} + -t 6.32 -s 0 -d 1 -p cbr -e 800 -c 0 -i 183 -a 0 -x {0.1 4194304.0 141 ------- SRM_DATA} - -t 6.32 -s 0 -d 1 -p cbr -e 800 -c 0 -i 183 -a 0 -x {0.1 4194304.0 141 ------- SRM_DATA} h -t 6.32 -s 0 -d 1 -p cbr -e 800 -c 0 -i 183 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.3228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 181 -a 0 -x {0.1 4194304.0 139 ------- SRM_DATA} + -t 6.3228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 181 -a 0 -x {0.1 4194304.0 139 ------- SRM_DATA} - -t 6.3228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 181 -a 0 -x {0.1 4194304.0 139 ------- SRM_DATA} h -t 6.3228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 181 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.3228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 181 -a 0 -x {0.1 4194304.0 139 ------- SRM_DATA} - -t 6.3228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 181 -a 0 -x {0.1 4194304.0 139 ------- SRM_DATA} h -t 6.3228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 181 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.32853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 182 -a 0 -x {0.1 4194304.0 140 ------- SRM_DATA} + -t 6.32853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 182 -a 0 -x {0.1 4194304.0 140 ------- SRM_DATA} - -t 6.32853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 182 -a 0 -x {0.1 4194304.0 140 ------- SRM_DATA} h -t 6.32853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 182 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.33427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 183 -a 0 -x {0.1 4194304.0 141 ------- SRM_DATA} + -t 6.33427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 183 -a 0 -x {0.1 4194304.0 141 ------- SRM_DATA} - -t 6.33427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 183 -a 0 -x {0.1 4194304.0 141 ------- SRM_DATA} h -t 6.33427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 183 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.33707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 181 -a 0 -x {0.1 4194304.0 139 ------- SRM_DATA} r -t 6.33707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 181 -a 0 -x {0.1 4194304.0 139 ------- SRM_DATA} + -t 6.34 -s 0 -d 1 -p cbr -e 800 -c 0 -i 184 -a 0 -x {0.1 4194304.0 142 ------- SRM_DATA} - -t 6.34 -s 0 -d 1 -p cbr -e 800 -c 0 -i 184 -a 0 -x {0.1 4194304.0 142 ------- SRM_DATA} h -t 6.34 -s 0 -d 1 -p cbr -e 800 -c 0 -i 184 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.3428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 182 -a 0 -x {0.1 4194304.0 140 ------- SRM_DATA} + -t 6.3428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 182 -a 0 -x {0.1 4194304.0 140 ------- SRM_DATA} - -t 6.3428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 182 -a 0 -x {0.1 4194304.0 140 ------- SRM_DATA} h -t 6.3428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 182 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.3428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 182 -a 0 -x {0.1 4194304.0 140 ------- SRM_DATA} - -t 6.3428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 182 -a 0 -x {0.1 4194304.0 140 ------- SRM_DATA} h -t 6.3428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 182 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.34853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 183 -a 0 -x {0.1 4194304.0 141 ------- SRM_DATA} + -t 6.34853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 183 -a 0 -x {0.1 4194304.0 141 ------- SRM_DATA} - -t 6.34853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 183 -a 0 -x {0.1 4194304.0 141 ------- SRM_DATA} h -t 6.34853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 183 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.35427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 184 -a 0 -x {0.1 4194304.0 142 ------- SRM_DATA} + -t 6.35427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 184 -a 0 -x {0.1 4194304.0 142 ------- SRM_DATA} - -t 6.35427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 184 -a 0 -x {0.1 4194304.0 142 ------- SRM_DATA} h -t 6.35427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 184 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.35707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 182 -a 0 -x {0.1 4194304.0 140 ------- SRM_DATA} r -t 6.35707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 182 -a 0 -x {0.1 4194304.0 140 ------- SRM_DATA} + -t 6.36 -s 0 -d 1 -p cbr -e 800 -c 0 -i 185 -a 0 -x {0.1 4194304.0 143 ------- SRM_DATA} - -t 6.36 -s 0 -d 1 -p cbr -e 800 -c 0 -i 185 -a 0 -x {0.1 4194304.0 143 ------- SRM_DATA} h -t 6.36 -s 0 -d 1 -p cbr -e 800 -c 0 -i 185 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.3628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 183 -a 0 -x {0.1 4194304.0 141 ------- SRM_DATA} + -t 6.3628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 183 -a 0 -x {0.1 4194304.0 141 ------- SRM_DATA} - -t 6.3628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 183 -a 0 -x {0.1 4194304.0 141 ------- SRM_DATA} h -t 6.3628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 183 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.3628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 183 -a 0 -x {0.1 4194304.0 141 ------- SRM_DATA} - -t 6.3628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 183 -a 0 -x {0.1 4194304.0 141 ------- SRM_DATA} h -t 6.3628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 183 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.36853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 184 -a 0 -x {0.1 4194304.0 142 ------- SRM_DATA} + -t 6.36853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 184 -a 0 -x {0.1 4194304.0 142 ------- SRM_DATA} - -t 6.36853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 184 -a 0 -x {0.1 4194304.0 142 ------- SRM_DATA} h -t 6.36853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 184 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.37427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 185 -a 0 -x {0.1 4194304.0 143 ------- SRM_DATA} + -t 6.37427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 185 -a 0 -x {0.1 4194304.0 143 ------- SRM_DATA} - -t 6.37427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 185 -a 0 -x {0.1 4194304.0 143 ------- SRM_DATA} h -t 6.37427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 185 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.37707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 183 -a 0 -x {0.1 4194304.0 141 ------- SRM_DATA} r -t 6.37707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 183 -a 0 -x {0.1 4194304.0 141 ------- SRM_DATA} + -t 6.38 -s 0 -d 1 -p cbr -e 800 -c 0 -i 186 -a 0 -x {0.1 4194304.0 144 ------- SRM_DATA} - -t 6.38 -s 0 -d 1 -p cbr -e 800 -c 0 -i 186 -a 0 -x {0.1 4194304.0 144 ------- SRM_DATA} h -t 6.38 -s 0 -d 1 -p cbr -e 800 -c 0 -i 186 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.3828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 184 -a 0 -x {0.1 4194304.0 142 ------- SRM_DATA} + -t 6.3828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 184 -a 0 -x {0.1 4194304.0 142 ------- SRM_DATA} - -t 6.3828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 184 -a 0 -x {0.1 4194304.0 142 ------- SRM_DATA} h -t 6.3828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 184 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.3828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 184 -a 0 -x {0.1 4194304.0 142 ------- SRM_DATA} - -t 6.3828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 184 -a 0 -x {0.1 4194304.0 142 ------- SRM_DATA} h -t 6.3828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 184 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.38853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 185 -a 0 -x {0.1 4194304.0 143 ------- SRM_DATA} + -t 6.38853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 185 -a 0 -x {0.1 4194304.0 143 ------- SRM_DATA} - -t 6.38853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 185 -a 0 -x {0.1 4194304.0 143 ------- SRM_DATA} h -t 6.38853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 185 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.39427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 186 -a 0 -x {0.1 4194304.0 144 ------- SRM_DATA} + -t 6.39427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 186 -a 0 -x {0.1 4194304.0 144 ------- SRM_DATA} - -t 6.39427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 186 -a 0 -x {0.1 4194304.0 144 ------- SRM_DATA} h -t 6.39427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 186 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.39707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 184 -a 0 -x {0.1 4194304.0 142 ------- SRM_DATA} r -t 6.39707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 184 -a 0 -x {0.1 4194304.0 142 ------- SRM_DATA} + -t 6.4 -s 0 -d 1 -p cbr -e 800 -c 0 -i 187 -a 0 -x {0.1 4194304.0 145 ------- SRM_DATA} - -t 6.4 -s 0 -d 1 -p cbr -e 800 -c 0 -i 187 -a 0 -x {0.1 4194304.0 145 ------- SRM_DATA} h -t 6.4 -s 0 -d 1 -p cbr -e 800 -c 0 -i 187 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.4028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 185 -a 0 -x {0.1 4194304.0 143 ------- SRM_DATA} + -t 6.4028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 185 -a 0 -x {0.1 4194304.0 143 ------- SRM_DATA} - -t 6.4028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 185 -a 0 -x {0.1 4194304.0 143 ------- SRM_DATA} h -t 6.4028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 185 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.4028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 185 -a 0 -x {0.1 4194304.0 143 ------- SRM_DATA} - -t 6.4028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 185 -a 0 -x {0.1 4194304.0 143 ------- SRM_DATA} h -t 6.4028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 185 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.40853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 186 -a 0 -x {0.1 4194304.0 144 ------- SRM_DATA} + -t 6.40853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 186 -a 0 -x {0.1 4194304.0 144 ------- SRM_DATA} - -t 6.40853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 186 -a 0 -x {0.1 4194304.0 144 ------- SRM_DATA} h -t 6.40853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 186 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.41427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 187 -a 0 -x {0.1 4194304.0 145 ------- SRM_DATA} + -t 6.41427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 187 -a 0 -x {0.1 4194304.0 145 ------- SRM_DATA} - -t 6.41427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 187 -a 0 -x {0.1 4194304.0 145 ------- SRM_DATA} h -t 6.41427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 187 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.41707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 185 -a 0 -x {0.1 4194304.0 143 ------- SRM_DATA} r -t 6.41707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 185 -a 0 -x {0.1 4194304.0 143 ------- SRM_DATA} + -t 6.42 -s 0 -d 1 -p cbr -e 800 -c 0 -i 188 -a 0 -x {0.1 4194304.0 146 ------- SRM_DATA} - -t 6.42 -s 0 -d 1 -p cbr -e 800 -c 0 -i 188 -a 0 -x {0.1 4194304.0 146 ------- SRM_DATA} h -t 6.42 -s 0 -d 1 -p cbr -e 800 -c 0 -i 188 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.4228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 186 -a 0 -x {0.1 4194304.0 144 ------- SRM_DATA} + -t 6.4228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 186 -a 0 -x {0.1 4194304.0 144 ------- SRM_DATA} - -t 6.4228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 186 -a 0 -x {0.1 4194304.0 144 ------- SRM_DATA} h -t 6.4228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 186 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.4228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 186 -a 0 -x {0.1 4194304.0 144 ------- SRM_DATA} - -t 6.4228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 186 -a 0 -x {0.1 4194304.0 144 ------- SRM_DATA} h -t 6.4228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 186 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.42853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 187 -a 0 -x {0.1 4194304.0 145 ------- SRM_DATA} + -t 6.42853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 187 -a 0 -x {0.1 4194304.0 145 ------- SRM_DATA} - -t 6.42853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 187 -a 0 -x {0.1 4194304.0 145 ------- SRM_DATA} h -t 6.42853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 187 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.43427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 188 -a 0 -x {0.1 4194304.0 146 ------- SRM_DATA} + -t 6.43427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 188 -a 0 -x {0.1 4194304.0 146 ------- SRM_DATA} - -t 6.43427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 188 -a 0 -x {0.1 4194304.0 146 ------- SRM_DATA} h -t 6.43427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 188 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.43707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 186 -a 0 -x {0.1 4194304.0 144 ------- SRM_DATA} r -t 6.43707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 186 -a 0 -x {0.1 4194304.0 144 ------- SRM_DATA} + -t 6.44 -s 0 -d 1 -p cbr -e 800 -c 0 -i 189 -a 0 -x {0.1 4194304.0 147 ------- SRM_DATA} - -t 6.44 -s 0 -d 1 -p cbr -e 800 -c 0 -i 189 -a 0 -x {0.1 4194304.0 147 ------- SRM_DATA} h -t 6.44 -s 0 -d 1 -p cbr -e 800 -c 0 -i 189 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.4428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 187 -a 0 -x {0.1 4194304.0 145 ------- SRM_DATA} + -t 6.4428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 187 -a 0 -x {0.1 4194304.0 145 ------- SRM_DATA} - -t 6.4428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 187 -a 0 -x {0.1 4194304.0 145 ------- SRM_DATA} h -t 6.4428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 187 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.4428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 187 -a 0 -x {0.1 4194304.0 145 ------- SRM_DATA} - -t 6.4428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 187 -a 0 -x {0.1 4194304.0 145 ------- SRM_DATA} h -t 6.4428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 187 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.44853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 188 -a 0 -x {0.1 4194304.0 146 ------- SRM_DATA} + -t 6.44853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 188 -a 0 -x {0.1 4194304.0 146 ------- SRM_DATA} - -t 6.44853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 188 -a 0 -x {0.1 4194304.0 146 ------- SRM_DATA} h -t 6.44853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 188 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.45427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 189 -a 0 -x {0.1 4194304.0 147 ------- SRM_DATA} + -t 6.45427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 189 -a 0 -x {0.1 4194304.0 147 ------- SRM_DATA} - -t 6.45427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 189 -a 0 -x {0.1 4194304.0 147 ------- SRM_DATA} h -t 6.45427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 189 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.45707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 187 -a 0 -x {0.1 4194304.0 145 ------- SRM_DATA} r -t 6.45707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 187 -a 0 -x {0.1 4194304.0 145 ------- SRM_DATA} + -t 6.46 -s 0 -d 1 -p cbr -e 800 -c 0 -i 190 -a 0 -x {0.1 4194304.0 148 ------- SRM_DATA} - -t 6.46 -s 0 -d 1 -p cbr -e 800 -c 0 -i 190 -a 0 -x {0.1 4194304.0 148 ------- SRM_DATA} h -t 6.46 -s 0 -d 1 -p cbr -e 800 -c 0 -i 190 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.4628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 188 -a 0 -x {0.1 4194304.0 146 ------- SRM_DATA} + -t 6.4628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 188 -a 0 -x {0.1 4194304.0 146 ------- SRM_DATA} - -t 6.4628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 188 -a 0 -x {0.1 4194304.0 146 ------- SRM_DATA} h -t 6.4628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 188 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.4628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 188 -a 0 -x {0.1 4194304.0 146 ------- SRM_DATA} - -t 6.4628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 188 -a 0 -x {0.1 4194304.0 146 ------- SRM_DATA} h -t 6.4628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 188 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.46853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 189 -a 0 -x {0.1 4194304.0 147 ------- SRM_DATA} + -t 6.46853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 189 -a 0 -x {0.1 4194304.0 147 ------- SRM_DATA} - -t 6.46853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 189 -a 0 -x {0.1 4194304.0 147 ------- SRM_DATA} h -t 6.46853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 189 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.47427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 190 -a 0 -x {0.1 4194304.0 148 ------- SRM_DATA} + -t 6.47427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 190 -a 0 -x {0.1 4194304.0 148 ------- SRM_DATA} - -t 6.47427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 190 -a 0 -x {0.1 4194304.0 148 ------- SRM_DATA} h -t 6.47427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 190 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.47707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 188 -a 0 -x {0.1 4194304.0 146 ------- SRM_DATA} r -t 6.47707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 188 -a 0 -x {0.1 4194304.0 146 ------- SRM_DATA} + -t 6.48 -s 0 -d 1 -p cbr -e 800 -c 0 -i 191 -a 0 -x {0.1 4194304.0 149 ------- SRM_DATA} - -t 6.48 -s 0 -d 1 -p cbr -e 800 -c 0 -i 191 -a 0 -x {0.1 4194304.0 149 ------- SRM_DATA} h -t 6.48 -s 0 -d 1 -p cbr -e 800 -c 0 -i 191 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.4828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 189 -a 0 -x {0.1 4194304.0 147 ------- SRM_DATA} + -t 6.4828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 189 -a 0 -x {0.1 4194304.0 147 ------- SRM_DATA} - -t 6.4828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 189 -a 0 -x {0.1 4194304.0 147 ------- SRM_DATA} h -t 6.4828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 189 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.4828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 189 -a 0 -x {0.1 4194304.0 147 ------- SRM_DATA} - -t 6.4828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 189 -a 0 -x {0.1 4194304.0 147 ------- SRM_DATA} h -t 6.4828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 189 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.48853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 190 -a 0 -x {0.1 4194304.0 148 ------- SRM_DATA} + -t 6.48853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 190 -a 0 -x {0.1 4194304.0 148 ------- SRM_DATA} - -t 6.48853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 190 -a 0 -x {0.1 4194304.0 148 ------- SRM_DATA} h -t 6.48853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 190 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.49427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 191 -a 0 -x {0.1 4194304.0 149 ------- SRM_DATA} + -t 6.49427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 191 -a 0 -x {0.1 4194304.0 149 ------- SRM_DATA} - -t 6.49427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 191 -a 0 -x {0.1 4194304.0 149 ------- SRM_DATA} h -t 6.49427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 191 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.49707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 189 -a 0 -x {0.1 4194304.0 147 ------- SRM_DATA} r -t 6.49707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 189 -a 0 -x {0.1 4194304.0 147 ------- SRM_DATA} + -t 6.5 -s 0 -d 1 -p cbr -e 800 -c 0 -i 192 -a 0 -x {0.1 4194304.0 150 ------- SRM_DATA} - -t 6.5 -s 0 -d 1 -p cbr -e 800 -c 0 -i 192 -a 0 -x {0.1 4194304.0 150 ------- SRM_DATA} h -t 6.5 -s 0 -d 1 -p cbr -e 800 -c 0 -i 192 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.5028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 190 -a 0 -x {0.1 4194304.0 148 ------- SRM_DATA} + -t 6.5028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 190 -a 0 -x {0.1 4194304.0 148 ------- SRM_DATA} - -t 6.5028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 190 -a 0 -x {0.1 4194304.0 148 ------- SRM_DATA} h -t 6.5028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 190 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.5028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 190 -a 0 -x {0.1 4194304.0 148 ------- SRM_DATA} - -t 6.5028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 190 -a 0 -x {0.1 4194304.0 148 ------- SRM_DATA} h -t 6.5028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 190 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.50853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 191 -a 0 -x {0.1 4194304.0 149 ------- SRM_DATA} + -t 6.50853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 191 -a 0 -x {0.1 4194304.0 149 ------- SRM_DATA} - -t 6.50853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 191 -a 0 -x {0.1 4194304.0 149 ------- SRM_DATA} h -t 6.50853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 191 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.51427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 192 -a 0 -x {0.1 4194304.0 150 ------- SRM_DATA} + -t 6.51427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 192 -a 0 -x {0.1 4194304.0 150 ------- SRM_DATA} - -t 6.51427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 192 -a 0 -x {0.1 4194304.0 150 ------- SRM_DATA} h -t 6.51427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 192 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.51707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 190 -a 0 -x {0.1 4194304.0 148 ------- SRM_DATA} r -t 6.51707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 190 -a 0 -x {0.1 4194304.0 148 ------- SRM_DATA} + -t 6.52 -s 0 -d 1 -p cbr -e 800 -c 0 -i 193 -a 0 -x {0.1 4194304.0 151 ------- SRM_DATA} - -t 6.52 -s 0 -d 1 -p cbr -e 800 -c 0 -i 193 -a 0 -x {0.1 4194304.0 151 ------- SRM_DATA} h -t 6.52 -s 0 -d 1 -p cbr -e 800 -c 0 -i 193 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.5228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 191 -a 0 -x {0.1 4194304.0 149 ------- SRM_DATA} + -t 6.5228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 191 -a 0 -x {0.1 4194304.0 149 ------- SRM_DATA} - -t 6.5228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 191 -a 0 -x {0.1 4194304.0 149 ------- SRM_DATA} h -t 6.5228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 191 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.5228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 191 -a 0 -x {0.1 4194304.0 149 ------- SRM_DATA} - -t 6.5228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 191 -a 0 -x {0.1 4194304.0 149 ------- SRM_DATA} h -t 6.5228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 191 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.52853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 192 -a 0 -x {0.1 4194304.0 150 ------- SRM_DATA} + -t 6.52853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 192 -a 0 -x {0.1 4194304.0 150 ------- SRM_DATA} - -t 6.52853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 192 -a 0 -x {0.1 4194304.0 150 ------- SRM_DATA} h -t 6.52853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 192 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.53427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 193 -a 0 -x {0.1 4194304.0 151 ------- SRM_DATA} + -t 6.53427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 193 -a 0 -x {0.1 4194304.0 151 ------- SRM_DATA} - -t 6.53427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 193 -a 0 -x {0.1 4194304.0 151 ------- SRM_DATA} h -t 6.53427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 193 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.53707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 191 -a 0 -x {0.1 4194304.0 149 ------- SRM_DATA} r -t 6.53707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 191 -a 0 -x {0.1 4194304.0 149 ------- SRM_DATA} + -t 6.54 -s 0 -d 1 -p cbr -e 800 -c 0 -i 194 -a 0 -x {0.1 4194304.0 152 ------- SRM_DATA} - -t 6.54 -s 0 -d 1 -p cbr -e 800 -c 0 -i 194 -a 0 -x {0.1 4194304.0 152 ------- SRM_DATA} h -t 6.54 -s 0 -d 1 -p cbr -e 800 -c 0 -i 194 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.5428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 192 -a 0 -x {0.1 4194304.0 150 ------- SRM_DATA} + -t 6.5428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 192 -a 0 -x {0.1 4194304.0 150 ------- SRM_DATA} - -t 6.5428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 192 -a 0 -x {0.1 4194304.0 150 ------- SRM_DATA} h -t 6.5428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 192 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.5428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 192 -a 0 -x {0.1 4194304.0 150 ------- SRM_DATA} - -t 6.5428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 192 -a 0 -x {0.1 4194304.0 150 ------- SRM_DATA} h -t 6.5428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 192 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.54853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 193 -a 0 -x {0.1 4194304.0 151 ------- SRM_DATA} + -t 6.54853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 193 -a 0 -x {0.1 4194304.0 151 ------- SRM_DATA} - -t 6.54853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 193 -a 0 -x {0.1 4194304.0 151 ------- SRM_DATA} h -t 6.54853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 193 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.55427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 194 -a 0 -x {0.1 4194304.0 152 ------- SRM_DATA} + -t 6.55427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 194 -a 0 -x {0.1 4194304.0 152 ------- SRM_DATA} - -t 6.55427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 194 -a 0 -x {0.1 4194304.0 152 ------- SRM_DATA} h -t 6.55427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 194 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.55707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 192 -a 0 -x {0.1 4194304.0 150 ------- SRM_DATA} r -t 6.55707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 192 -a 0 -x {0.1 4194304.0 150 ------- SRM_DATA} + -t 6.56 -s 0 -d 1 -p cbr -e 800 -c 0 -i 195 -a 0 -x {0.1 4194304.0 153 ------- SRM_DATA} - -t 6.56 -s 0 -d 1 -p cbr -e 800 -c 0 -i 195 -a 0 -x {0.1 4194304.0 153 ------- SRM_DATA} h -t 6.56 -s 0 -d 1 -p cbr -e 800 -c 0 -i 195 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.5628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 193 -a 0 -x {0.1 4194304.0 151 ------- SRM_DATA} + -t 6.5628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 193 -a 0 -x {0.1 4194304.0 151 ------- SRM_DATA} - -t 6.5628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 193 -a 0 -x {0.1 4194304.0 151 ------- SRM_DATA} h -t 6.5628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 193 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.5628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 193 -a 0 -x {0.1 4194304.0 151 ------- SRM_DATA} - -t 6.5628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 193 -a 0 -x {0.1 4194304.0 151 ------- SRM_DATA} h -t 6.5628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 193 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.56853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 194 -a 0 -x {0.1 4194304.0 152 ------- SRM_DATA} + -t 6.56853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 194 -a 0 -x {0.1 4194304.0 152 ------- SRM_DATA} - -t 6.56853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 194 -a 0 -x {0.1 4194304.0 152 ------- SRM_DATA} h -t 6.56853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 194 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.57427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 195 -a 0 -x {0.1 4194304.0 153 ------- SRM_DATA} + -t 6.57427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 195 -a 0 -x {0.1 4194304.0 153 ------- SRM_DATA} - -t 6.57427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 195 -a 0 -x {0.1 4194304.0 153 ------- SRM_DATA} h -t 6.57427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 195 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.57707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 193 -a 0 -x {0.1 4194304.0 151 ------- SRM_DATA} r -t 6.57707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 193 -a 0 -x {0.1 4194304.0 151 ------- SRM_DATA} + -t 6.58 -s 0 -d 1 -p cbr -e 800 -c 0 -i 196 -a 0 -x {0.1 4194304.0 154 ------- SRM_DATA} - -t 6.58 -s 0 -d 1 -p cbr -e 800 -c 0 -i 196 -a 0 -x {0.1 4194304.0 154 ------- SRM_DATA} h -t 6.58 -s 0 -d 1 -p cbr -e 800 -c 0 -i 196 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.5828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 194 -a 0 -x {0.1 4194304.0 152 ------- SRM_DATA} + -t 6.5828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 194 -a 0 -x {0.1 4194304.0 152 ------- SRM_DATA} - -t 6.5828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 194 -a 0 -x {0.1 4194304.0 152 ------- SRM_DATA} h -t 6.5828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 194 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.5828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 194 -a 0 -x {0.1 4194304.0 152 ------- SRM_DATA} - -t 6.5828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 194 -a 0 -x {0.1 4194304.0 152 ------- SRM_DATA} h -t 6.5828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 194 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.58853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 195 -a 0 -x {0.1 4194304.0 153 ------- SRM_DATA} + -t 6.58853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 195 -a 0 -x {0.1 4194304.0 153 ------- SRM_DATA} - -t 6.58853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 195 -a 0 -x {0.1 4194304.0 153 ------- SRM_DATA} h -t 6.58853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 195 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} l -t 6.5899999999999999 -s 1 -d 0 -S DOWN v -t 6.5899999999999999 link-down 6.5899999999999999 1 0 d -t 6.59 -s 0 -d 1 -p cbr -e 800 -c 0 -i 196 -a 0 -x {0.1 4194304.0 154 ------- SRM_DATA} l -t 6.5899999999999999 -s 0 -d 1 -S DOWN v -t 6.5899999999999999 link-down 6.5899999999999999 0 1 r -t 6.59707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 194 -a 0 -x {0.1 4194304.0 152 ------- SRM_DATA} r -t 6.59707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 194 -a 0 -x {0.1 4194304.0 152 ------- SRM_DATA} r -t 6.6028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 195 -a 0 -x {0.1 4194304.0 153 ------- SRM_DATA} + -t 6.6028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 195 -a 0 -x {0.1 4194304.0 153 ------- SRM_DATA} - -t 6.6028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 195 -a 0 -x {0.1 4194304.0 153 ------- SRM_DATA} h -t 6.6028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 195 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.6028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 195 -a 0 -x {0.1 4194304.0 153 ------- SRM_DATA} - -t 6.6028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 195 -a 0 -x {0.1 4194304.0 153 ------- SRM_DATA} h -t 6.6028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 195 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} l -t 6.6099999999999994 -s 1 -d 0 -S UP v -t 6.6099999999999994 link-up 6.6099999999999994 1 0 l -t 6.6099999999999994 -s 0 -d 1 -S UP v -t 6.6099999999999994 link-up 6.6099999999999994 0 1 r -t 6.61707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 195 -a 0 -x {0.1 4194304.0 153 ------- SRM_DATA} r -t 6.61707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 195 -a 0 -x {0.1 4194304.0 153 ------- SRM_DATA} + -t 6.62 -s 0 -d 1 -p cbr -e 800 -c 0 -i 198 -a 0 -x {0.1 4194304.0 156 ------- SRM_DATA} - -t 6.62 -s 0 -d 1 -p cbr -e 800 -c 0 -i 198 -a 0 -x {0.1 4194304.0 156 ------- SRM_DATA} h -t 6.62 -s 0 -d 1 -p cbr -e 800 -c 0 -i 198 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.63427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 198 -a 0 -x {0.1 4194304.0 156 ------- SRM_DATA} f -t 6.63426666666661102 -s 1 -d 4194304 -n C2_ -a srm(1) -v 1.4999999999999996 -o 1.5999999999999996 -T v f -t 6.63426666666661102 -s 1 -d 4194304 -n C2_ -a srm(1) -v 1.3999999999999995 -o 1.4999999999999996 -T v f -t 6.63426666666661102 -s 1 -d 4194304 -n C1_ -a srm(1) -v 1.2499999999999993 -o 1.2999999999999994 -T v + -t 6.63427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 198 -a 0 -x {0.1 4194304.0 156 ------- SRM_DATA} - -t 6.63427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 198 -a 0 -x {0.1 4194304.0 156 ------- SRM_DATA} h -t 6.63427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 198 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.64 -s 0 -d 1 -p cbr -e 800 -c 0 -i 199 -a 0 -x {0.1 4194304.0 157 ------- SRM_DATA} - -t 6.64 -s 0 -d 1 -p cbr -e 800 -c 0 -i 199 -a 0 -x {0.1 4194304.0 157 ------- SRM_DATA} h -t 6.64 -s 0 -d 1 -p cbr -e 800 -c 0 -i 199 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.64853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 198 -a 0 -x {0.1 4194304.0 156 ------- SRM_DATA} f -t 6.64853333333327789 -s 2 -d 4194304 -n C1_ -a srm(2) -v 1.7499999999999998 -o 1.7999999999999998 -T v f -t 6.64853333333327789 -s 2 -d 4194304 -n C1_ -a srm(2) -v 1.6999999999999997 -o 1.7499999999999998 -T v + -t 6.64853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 198 -a 0 -x {0.1 4194304.0 156 ------- SRM_DATA} - -t 6.64853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 198 -a 0 -x {0.1 4194304.0 156 ------- SRM_DATA} h -t 6.64853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 198 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} f -t 6.65001308391440471 -s 1 -d 4194304 -n C1_ -a srm(1) -v 1.1499999999999992 -o 1.2499999999999993 -T v + -t 6.65001 -s 1 -d 0 -p SRM -e 16 -c 2 -i 200 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 6.65001 -s 1 -d 0 -p SRM -e 16 -c 2 -i 200 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 6.65001 -s 1 -d 0 -p SRM -e 16 -c 2 -i 200 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 6.65001 -s 1 -d 2 -p SRM -e 16 -c 2 -i 200 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 6.65001 -s 1 -d 2 -p SRM -e 16 -c 2 -i 200 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 6.65001 -s 1 -d 2 -p SRM -e 16 -c 2 -i 200 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} f -t 6.65244026151764523 -s 1 -d 4194304 -n C1_ -a srm(1) -v 1.0499999999999992 -o 1.1499999999999992 -T v + -t 6.65244 -s 1 -d 0 -p SRM -e 16 -c 2 -i 201 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 6.65244 -s 1 -d 0 -p SRM -e 16 -c 2 -i 201 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 6.65244 -s 1 -d 0 -p SRM -e 16 -c 2 -i 201 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 6.65244 -s 1 -d 2 -p SRM -e 16 -c 2 -i 201 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 6.65244 -s 1 -d 2 -p SRM -e 16 -c 2 -i 201 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 6.65244 -s 1 -d 2 -p SRM -e 16 -c 2 -i 201 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 6.65427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 199 -a 0 -x {0.1 4194304.0 157 ------- SRM_DATA} + -t 6.65427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 199 -a 0 -x {0.1 4194304.0 157 ------- SRM_DATA} - -t 6.65427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 199 -a 0 -x {0.1 4194304.0 157 ------- SRM_DATA} h -t 6.65427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 199 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.66 -s 0 -d 1 -p cbr -e 800 -c 0 -i 202 -a 0 -x {0.1 4194304.0 158 ------- SRM_DATA} - -t 6.66 -s 0 -d 1 -p cbr -e 800 -c 0 -i 202 -a 0 -x {0.1 4194304.0 158 ------- SRM_DATA} h -t 6.66 -s 0 -d 1 -p cbr -e 800 -c 0 -i 202 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.6601 -s 1 -d 0 -p SRM -e 16 -c 2 -i 200 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 6.6601 -s 1 -d 2 -p SRM -e 16 -c 2 -i 200 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 6.6601 -s 2 -d 3 -p SRM -e 16 -c 2 -i 200 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 6.6601 -s 2 -d 3 -p SRM -e 16 -c 2 -i 200 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 6.6601 -s 2 -d 3 -p SRM -e 16 -c 2 -i 200 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 6.66253 -s 1 -d 0 -p SRM -e 16 -c 2 -i 201 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 6.66253 -s 1 -d 2 -p SRM -e 16 -c 2 -i 201 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 6.66253 -s 2 -d 3 -p SRM -e 16 -c 2 -i 201 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 6.66253 -s 2 -d 3 -p SRM -e 16 -c 2 -i 201 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 6.66253 -s 2 -d 3 -p SRM -e 16 -c 2 -i 201 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 6.6628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 198 -a 0 -x {0.1 4194304.0 156 ------- SRM_DATA} f -t 6.66279999999994477 -s 3 -d 4194304 -n C1_ -a srm(3) -v 1.7499999999999998 -o 1.7999999999999998 -T v f -t 6.66279999999994477 -s 3 -d 4194304 -n C1_ -a srm(3) -v 1.6999999999999997 -o 1.7499999999999998 -T v + -t 6.6628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 198 -a 0 -x {0.1 4194304.0 156 ------- SRM_DATA} - -t 6.6628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 198 -a 0 -x {0.1 4194304.0 156 ------- SRM_DATA} h -t 6.6628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 198 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.6628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 198 -a 0 -x {0.1 4194304.0 156 ------- SRM_DATA} - -t 6.6628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 198 -a 0 -x {0.1 4194304.0 156 ------- SRM_DATA} h -t 6.6628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 198 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.66853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 199 -a 0 -x {0.1 4194304.0 157 ------- SRM_DATA} + -t 6.66853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 199 -a 0 -x {0.1 4194304.0 157 ------- SRM_DATA} - -t 6.66853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 199 -a 0 -x {0.1 4194304.0 157 ------- SRM_DATA} h -t 6.66853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 199 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.67018 -s 2 -d 3 -p SRM -e 16 -c 2 -i 200 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 6.67018 -s 3 -d 4 -p SRM -e 16 -c 2 -i 200 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 6.67018 -s 3 -d 4 -p SRM -e 16 -c 2 -i 200 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 6.67018 -s 3 -d 4 -p SRM -e 16 -c 2 -i 200 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 6.67018 -s 3 -d 5 -p SRM -e 16 -c 2 -i 200 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 6.67018 -s 3 -d 5 -p SRM -e 16 -c 2 -i 200 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 6.67018 -s 3 -d 5 -p SRM -e 16 -c 2 -i 200 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 6.67096 -s 0 -d 1 -p SRM -e 816 -c 1 -i 203 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 6.67096 -s 0 -d 1 -p SRM -e 816 -c 1 -i 203 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 6.67096 -s 0 -d 1 -p SRM -e 816 -c 1 -i 203 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 6.67261 -s 2 -d 3 -p SRM -e 16 -c 2 -i 201 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 6.67261 -s 3 -d 4 -p SRM -e 16 -c 2 -i 201 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 6.67261 -s 3 -d 4 -p SRM -e 16 -c 2 -i 201 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 6.67261 -s 3 -d 4 -p SRM -e 16 -c 2 -i 201 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 6.67261 -s 3 -d 5 -p SRM -e 16 -c 2 -i 201 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 6.67261 -s 3 -d 5 -p SRM -e 16 -c 2 -i 201 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 6.67261 -s 3 -d 5 -p SRM -e 16 -c 2 -i 201 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 6.67427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 202 -a 0 -x {0.1 4194304.0 158 ------- SRM_DATA} + -t 6.67427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 202 -a 0 -x {0.1 4194304.0 158 ------- SRM_DATA} - -t 6.67427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 202 -a 0 -x {0.1 4194304.0 158 ------- SRM_DATA} h -t 6.67427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 202 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.67707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 198 -a 0 -x {0.1 4194304.0 156 ------- SRM_DATA} f -t 6.67706666666661164 -s 4 -d 4194304 -n C1_ -a srm(4) -v 1.7499999999999998 -o 1.7999999999999998 -T v f -t 6.67706666666661164 -s 4 -d 4194304 -n C1_ -a srm(4) -v 1.6999999999999997 -o 1.7499999999999998 -T v r -t 6.67707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 198 -a 0 -x {0.1 4194304.0 156 ------- SRM_DATA} f -t 6.67706666666661164 -s 5 -d 4194304 -n C1_ -a srm(5) -v 1.7499999999999998 -o 1.7999999999999998 -T v f -t 6.67706666666661164 -s 5 -d 4194304 -n C1_ -a srm(5) -v 1.6999999999999997 -o 1.7499999999999998 -T v + -t 6.67833 -s 0 -d 1 -p SRM -e 816 -c 1 -i 204 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 6.67833 -s 0 -d 1 -p SRM -e 816 -c 1 -i 204 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 6.67833 -s 0 -d 1 -p SRM -e 816 -c 1 -i 204 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 6.68 -s 0 -d 1 -p cbr -e 800 -c 0 -i 205 -a 0 -x {0.1 4194304.0 159 ------- SRM_DATA} r -t 6.68027 -s 3 -d 4 -p SRM -e 16 -c 2 -i 200 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 6.68027 -s 3 -d 5 -p SRM -e 16 -c 2 -i 200 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 6.68268 -s 0 -d 1 -p cbr -e 800 -c 0 -i 205 -a 0 -x {0.1 4194304.0 159 ------- SRM_DATA} h -t 6.68268 -s 0 -d 1 -p cbr -e 800 -c 0 -i 205 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.6827 -s 3 -d 4 -p SRM -e 16 -c 2 -i 201 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 6.6827 -s 3 -d 5 -p SRM -e 16 -c 2 -i 201 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 6.6828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 199 -a 0 -x {0.1 4194304.0 157 ------- SRM_DATA} + -t 6.6828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 199 -a 0 -x {0.1 4194304.0 157 ------- SRM_DATA} - -t 6.6828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 199 -a 0 -x {0.1 4194304.0 157 ------- SRM_DATA} h -t 6.6828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 199 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.6828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 199 -a 0 -x {0.1 4194304.0 157 ------- SRM_DATA} - -t 6.6828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 199 -a 0 -x {0.1 4194304.0 157 ------- SRM_DATA} h -t 6.6828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 199 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.68531 -s 0 -d 1 -p SRM -e 816 -c 1 -i 203 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 6.68531 -s 1 -d 2 -p SRM -e 816 -c 1 -i 203 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 6.68531 -s 1 -d 2 -p SRM -e 816 -c 1 -i 203 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 6.68531 -s 1 -d 2 -p SRM -e 816 -c 1 -i 203 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 6.68853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 202 -a 0 -x {0.1 4194304.0 158 ------- SRM_DATA} + -t 6.68853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 202 -a 0 -x {0.1 4194304.0 158 ------- SRM_DATA} - -t 6.68853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 202 -a 0 -x {0.1 4194304.0 158 ------- SRM_DATA} h -t 6.68853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 202 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.69268 -s 0 -d 1 -p SRM -e 816 -c 1 -i 204 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 6.69268 -s 1 -d 2 -p SRM -e 816 -c 1 -i 204 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 6.69268 -s 1 -d 2 -p SRM -e 816 -c 1 -i 204 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 6.69268 -s 1 -d 2 -p SRM -e 816 -c 1 -i 204 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 6.69695 -s 0 -d 1 -p cbr -e 800 -c 0 -i 205 -a 0 -x {0.1 4194304.0 159 ------- SRM_DATA} + -t 6.69695 -s 1 -d 2 -p cbr -e 800 -c 0 -i 205 -a 0 -x {0.1 4194304.0 159 ------- SRM_DATA} - -t 6.69704 -s 1 -d 2 -p cbr -e 800 -c 0 -i 205 -a 0 -x {0.1 4194304.0 159 ------- SRM_DATA} h -t 6.69704 -s 1 -d 2 -p cbr -e 800 -c 0 -i 205 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.69707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 199 -a 0 -x {0.1 4194304.0 157 ------- SRM_DATA} r -t 6.69707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 199 -a 0 -x {0.1 4194304.0 157 ------- SRM_DATA} r -t 6.69966 -s 1 -d 2 -p SRM -e 816 -c 1 -i 203 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 6.69966 -s 2 -d 3 -p SRM -e 816 -c 1 -i 203 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 6.69966 -s 2 -d 3 -p SRM -e 816 -c 1 -i 203 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 6.69966 -s 2 -d 3 -p SRM -e 816 -c 1 -i 203 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 6.7 -s 0 -d 1 -p cbr -e 800 -c 0 -i 206 -a 0 -x {0.1 4194304.0 160 ------- SRM_DATA} - -t 6.7 -s 0 -d 1 -p cbr -e 800 -c 0 -i 206 -a 0 -x {0.1 4194304.0 160 ------- SRM_DATA} h -t 6.7 -s 0 -d 1 -p cbr -e 800 -c 0 -i 206 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.7028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 202 -a 0 -x {0.1 4194304.0 158 ------- SRM_DATA} + -t 6.7028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 202 -a 0 -x {0.1 4194304.0 158 ------- SRM_DATA} - -t 6.7028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 202 -a 0 -x {0.1 4194304.0 158 ------- SRM_DATA} h -t 6.7028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 202 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.7028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 202 -a 0 -x {0.1 4194304.0 158 ------- SRM_DATA} - -t 6.7028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 202 -a 0 -x {0.1 4194304.0 158 ------- SRM_DATA} h -t 6.7028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 202 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.70704 -s 1 -d 2 -p SRM -e 816 -c 1 -i 204 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 6.70704 -s 2 -d 3 -p SRM -e 816 -c 1 -i 204 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 6.70704 -s 2 -d 3 -p SRM -e 816 -c 1 -i 204 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 6.70704 -s 2 -d 3 -p SRM -e 816 -c 1 -i 204 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 6.7113 -s 1 -d 2 -p cbr -e 800 -c 0 -i 205 -a 0 -x {0.1 4194304.0 159 ------- SRM_DATA} + -t 6.7113 -s 2 -d 3 -p cbr -e 800 -c 0 -i 205 -a 0 -x {0.1 4194304.0 159 ------- SRM_DATA} - -t 6.71139 -s 2 -d 3 -p cbr -e 800 -c 0 -i 205 -a 0 -x {0.1 4194304.0 159 ------- SRM_DATA} h -t 6.71139 -s 2 -d 3 -p cbr -e 800 -c 0 -i 205 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.71402 -s 2 -d 3 -p SRM -e 816 -c 1 -i 203 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 6.71402 -s 3 -d 4 -p SRM -e 816 -c 1 -i 203 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 6.71402 -s 3 -d 4 -p SRM -e 816 -c 1 -i 203 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 6.71402 -s 3 -d 4 -p SRM -e 816 -c 1 -i 203 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 6.71402 -s 3 -d 5 -p SRM -e 816 -c 1 -i 203 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 6.71402 -s 3 -d 5 -p SRM -e 816 -c 1 -i 203 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 6.71402 -s 3 -d 5 -p SRM -e 816 -c 1 -i 203 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 6.71427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 206 -a 0 -x {0.1 4194304.0 160 ------- SRM_DATA} + -t 6.71427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 206 -a 0 -x {0.1 4194304.0 160 ------- SRM_DATA} - -t 6.71427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 206 -a 0 -x {0.1 4194304.0 160 ------- SRM_DATA} h -t 6.71427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 206 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.71707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 202 -a 0 -x {0.1 4194304.0 158 ------- SRM_DATA} r -t 6.71707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 202 -a 0 -x {0.1 4194304.0 158 ------- SRM_DATA} + -t 6.72 -s 0 -d 1 -p cbr -e 800 -c 0 -i 207 -a 0 -x {0.1 4194304.0 161 ------- SRM_DATA} - -t 6.72 -s 0 -d 1 -p cbr -e 800 -c 0 -i 207 -a 0 -x {0.1 4194304.0 161 ------- SRM_DATA} h -t 6.72 -s 0 -d 1 -p cbr -e 800 -c 0 -i 207 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.72139 -s 2 -d 3 -p SRM -e 816 -c 1 -i 204 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 6.72139 -s 3 -d 4 -p SRM -e 816 -c 1 -i 204 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 6.72139 -s 3 -d 4 -p SRM -e 816 -c 1 -i 204 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 6.72139 -s 3 -d 4 -p SRM -e 816 -c 1 -i 204 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 6.72139 -s 3 -d 5 -p SRM -e 816 -c 1 -i 204 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 6.72139 -s 3 -d 5 -p SRM -e 816 -c 1 -i 204 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 6.72139 -s 3 -d 5 -p SRM -e 816 -c 1 -i 204 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 6.72565 -s 2 -d 3 -p cbr -e 800 -c 0 -i 205 -a 0 -x {0.1 4194304.0 159 ------- SRM_DATA} + -t 6.72565 -s 3 -d 4 -p cbr -e 800 -c 0 -i 205 -a 0 -x {0.1 4194304.0 159 ------- SRM_DATA} + -t 6.72565 -s 3 -d 5 -p cbr -e 800 -c 0 -i 205 -a 0 -x {0.1 4194304.0 159 ------- SRM_DATA} - -t 6.72574 -s 3 -d 4 -p cbr -e 800 -c 0 -i 205 -a 0 -x {0.1 4194304.0 159 ------- SRM_DATA} h -t 6.72574 -s 3 -d 4 -p cbr -e 800 -c 0 -i 205 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} - -t 6.72574 -s 3 -d 5 -p cbr -e 800 -c 0 -i 205 -a 0 -x {0.1 4194304.0 159 ------- SRM_DATA} h -t 6.72574 -s 3 -d 5 -p cbr -e 800 -c 0 -i 205 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.72837 -s 3 -d 4 -p SRM -e 816 -c 1 -i 203 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 6.72837 -s 3 -d 5 -p SRM -e 816 -c 1 -i 203 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 6.72853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 206 -a 0 -x {0.1 4194304.0 160 ------- SRM_DATA} + -t 6.72853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 206 -a 0 -x {0.1 4194304.0 160 ------- SRM_DATA} - -t 6.72853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 206 -a 0 -x {0.1 4194304.0 160 ------- SRM_DATA} h -t 6.72853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 206 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.73427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 207 -a 0 -x {0.1 4194304.0 161 ------- SRM_DATA} + -t 6.73427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 207 -a 0 -x {0.1 4194304.0 161 ------- SRM_DATA} - -t 6.73427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 207 -a 0 -x {0.1 4194304.0 161 ------- SRM_DATA} h -t 6.73427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 207 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.73574 -s 3 -d 4 -p SRM -e 816 -c 1 -i 204 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 6.73574 -s 3 -d 5 -p SRM -e 816 -c 1 -i 204 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 6.74 -s 0 -d 1 -p cbr -e 800 -c 0 -i 208 -a 0 -x {0.1 4194304.0 162 ------- SRM_DATA} - -t 6.74 -s 0 -d 1 -p cbr -e 800 -c 0 -i 208 -a 0 -x {0.1 4194304.0 162 ------- SRM_DATA} h -t 6.74 -s 0 -d 1 -p cbr -e 800 -c 0 -i 208 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.74001 -s 3 -d 4 -p cbr -e 800 -c 0 -i 205 -a 0 -x {0.1 4194304.0 159 ------- SRM_DATA} r -t 6.74001 -s 3 -d 5 -p cbr -e 800 -c 0 -i 205 -a 0 -x {0.1 4194304.0 159 ------- SRM_DATA} r -t 6.7428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 206 -a 0 -x {0.1 4194304.0 160 ------- SRM_DATA} + -t 6.7428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 206 -a 0 -x {0.1 4194304.0 160 ------- SRM_DATA} - -t 6.7428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 206 -a 0 -x {0.1 4194304.0 160 ------- SRM_DATA} h -t 6.7428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 206 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.7428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 206 -a 0 -x {0.1 4194304.0 160 ------- SRM_DATA} - -t 6.7428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 206 -a 0 -x {0.1 4194304.0 160 ------- SRM_DATA} h -t 6.7428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 206 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.74853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 207 -a 0 -x {0.1 4194304.0 161 ------- SRM_DATA} + -t 6.74853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 207 -a 0 -x {0.1 4194304.0 161 ------- SRM_DATA} - -t 6.74853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 207 -a 0 -x {0.1 4194304.0 161 ------- SRM_DATA} h -t 6.74853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 207 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.75427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 208 -a 0 -x {0.1 4194304.0 162 ------- SRM_DATA} + -t 6.75427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 208 -a 0 -x {0.1 4194304.0 162 ------- SRM_DATA} - -t 6.75427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 208 -a 0 -x {0.1 4194304.0 162 ------- SRM_DATA} h -t 6.75427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 208 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.75707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 206 -a 0 -x {0.1 4194304.0 160 ------- SRM_DATA} r -t 6.75707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 206 -a 0 -x {0.1 4194304.0 160 ------- SRM_DATA} + -t 6.76 -s 0 -d 1 -p cbr -e 800 -c 0 -i 209 -a 0 -x {0.1 4194304.0 163 ------- SRM_DATA} - -t 6.76 -s 0 -d 1 -p cbr -e 800 -c 0 -i 209 -a 0 -x {0.1 4194304.0 163 ------- SRM_DATA} h -t 6.76 -s 0 -d 1 -p cbr -e 800 -c 0 -i 209 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.7628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 207 -a 0 -x {0.1 4194304.0 161 ------- SRM_DATA} + -t 6.7628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 207 -a 0 -x {0.1 4194304.0 161 ------- SRM_DATA} - -t 6.7628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 207 -a 0 -x {0.1 4194304.0 161 ------- SRM_DATA} h -t 6.7628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 207 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.7628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 207 -a 0 -x {0.1 4194304.0 161 ------- SRM_DATA} - -t 6.7628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 207 -a 0 -x {0.1 4194304.0 161 ------- SRM_DATA} h -t 6.7628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 207 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.76853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 208 -a 0 -x {0.1 4194304.0 162 ------- SRM_DATA} + -t 6.76853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 208 -a 0 -x {0.1 4194304.0 162 ------- SRM_DATA} - -t 6.76853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 208 -a 0 -x {0.1 4194304.0 162 ------- SRM_DATA} h -t 6.76853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 208 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.77427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 209 -a 0 -x {0.1 4194304.0 163 ------- SRM_DATA} + -t 6.77427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 209 -a 0 -x {0.1 4194304.0 163 ------- SRM_DATA} - -t 6.77427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 209 -a 0 -x {0.1 4194304.0 163 ------- SRM_DATA} h -t 6.77427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 209 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.77707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 207 -a 0 -x {0.1 4194304.0 161 ------- SRM_DATA} r -t 6.77707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 207 -a 0 -x {0.1 4194304.0 161 ------- SRM_DATA} + -t 6.78 -s 0 -d 1 -p cbr -e 800 -c 0 -i 210 -a 0 -x {0.1 4194304.0 164 ------- SRM_DATA} - -t 6.78 -s 0 -d 1 -p cbr -e 800 -c 0 -i 210 -a 0 -x {0.1 4194304.0 164 ------- SRM_DATA} h -t 6.78 -s 0 -d 1 -p cbr -e 800 -c 0 -i 210 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.7828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 208 -a 0 -x {0.1 4194304.0 162 ------- SRM_DATA} + -t 6.7828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 208 -a 0 -x {0.1 4194304.0 162 ------- SRM_DATA} - -t 6.7828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 208 -a 0 -x {0.1 4194304.0 162 ------- SRM_DATA} h -t 6.7828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 208 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.7828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 208 -a 0 -x {0.1 4194304.0 162 ------- SRM_DATA} - -t 6.7828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 208 -a 0 -x {0.1 4194304.0 162 ------- SRM_DATA} h -t 6.7828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 208 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.78853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 209 -a 0 -x {0.1 4194304.0 163 ------- SRM_DATA} + -t 6.78853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 209 -a 0 -x {0.1 4194304.0 163 ------- SRM_DATA} - -t 6.78853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 209 -a 0 -x {0.1 4194304.0 163 ------- SRM_DATA} h -t 6.78853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 209 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.79427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 210 -a 0 -x {0.1 4194304.0 164 ------- SRM_DATA} + -t 6.79427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 210 -a 0 -x {0.1 4194304.0 164 ------- SRM_DATA} - -t 6.79427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 210 -a 0 -x {0.1 4194304.0 164 ------- SRM_DATA} h -t 6.79427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 210 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.79707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 208 -a 0 -x {0.1 4194304.0 162 ------- SRM_DATA} r -t 6.79707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 208 -a 0 -x {0.1 4194304.0 162 ------- SRM_DATA} + -t 6.8 -s 0 -d 1 -p cbr -e 800 -c 0 -i 211 -a 0 -x {0.1 4194304.0 165 ------- SRM_DATA} - -t 6.8 -s 0 -d 1 -p cbr -e 800 -c 0 -i 211 -a 0 -x {0.1 4194304.0 165 ------- SRM_DATA} h -t 6.8 -s 0 -d 1 -p cbr -e 800 -c 0 -i 211 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.8028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 209 -a 0 -x {0.1 4194304.0 163 ------- SRM_DATA} + -t 6.8028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 209 -a 0 -x {0.1 4194304.0 163 ------- SRM_DATA} - -t 6.8028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 209 -a 0 -x {0.1 4194304.0 163 ------- SRM_DATA} h -t 6.8028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 209 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.8028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 209 -a 0 -x {0.1 4194304.0 163 ------- SRM_DATA} - -t 6.8028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 209 -a 0 -x {0.1 4194304.0 163 ------- SRM_DATA} h -t 6.8028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 209 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.80853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 210 -a 0 -x {0.1 4194304.0 164 ------- SRM_DATA} + -t 6.80853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 210 -a 0 -x {0.1 4194304.0 164 ------- SRM_DATA} - -t 6.80853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 210 -a 0 -x {0.1 4194304.0 164 ------- SRM_DATA} h -t 6.80853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 210 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.81427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 211 -a 0 -x {0.1 4194304.0 165 ------- SRM_DATA} + -t 6.81427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 211 -a 0 -x {0.1 4194304.0 165 ------- SRM_DATA} - -t 6.81427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 211 -a 0 -x {0.1 4194304.0 165 ------- SRM_DATA} h -t 6.81427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 211 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.81707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 209 -a 0 -x {0.1 4194304.0 163 ------- SRM_DATA} r -t 6.81707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 209 -a 0 -x {0.1 4194304.0 163 ------- SRM_DATA} + -t 6.82 -s 0 -d 1 -p cbr -e 800 -c 0 -i 212 -a 0 -x {0.1 4194304.0 166 ------- SRM_DATA} - -t 6.82 -s 0 -d 1 -p cbr -e 800 -c 0 -i 212 -a 0 -x {0.1 4194304.0 166 ------- SRM_DATA} h -t 6.82 -s 0 -d 1 -p cbr -e 800 -c 0 -i 212 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.8228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 210 -a 0 -x {0.1 4194304.0 164 ------- SRM_DATA} + -t 6.8228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 210 -a 0 -x {0.1 4194304.0 164 ------- SRM_DATA} - -t 6.8228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 210 -a 0 -x {0.1 4194304.0 164 ------- SRM_DATA} h -t 6.8228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 210 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.8228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 210 -a 0 -x {0.1 4194304.0 164 ------- SRM_DATA} - -t 6.8228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 210 -a 0 -x {0.1 4194304.0 164 ------- SRM_DATA} h -t 6.8228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 210 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.82853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 211 -a 0 -x {0.1 4194304.0 165 ------- SRM_DATA} + -t 6.82853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 211 -a 0 -x {0.1 4194304.0 165 ------- SRM_DATA} - -t 6.82853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 211 -a 0 -x {0.1 4194304.0 165 ------- SRM_DATA} h -t 6.82853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 211 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.83204 -s 5 -d 3 -p SRM -e 116 -c 6 -i 213 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} - -t 6.83204 -s 5 -d 3 -p SRM -e 116 -c 6 -i 213 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} h -t 6.83204 -s 5 -d 3 -p SRM -e 116 -c 6 -i 213 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} r -t 6.83427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 212 -a 0 -x {0.1 4194304.0 166 ------- SRM_DATA} + -t 6.83427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 212 -a 0 -x {0.1 4194304.0 166 ------- SRM_DATA} - -t 6.83427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 212 -a 0 -x {0.1 4194304.0 166 ------- SRM_DATA} h -t 6.83427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 212 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.83707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 210 -a 0 -x {0.1 4194304.0 164 ------- SRM_DATA} r -t 6.83707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 210 -a 0 -x {0.1 4194304.0 164 ------- SRM_DATA} + -t 6.84 -s 0 -d 1 -p cbr -e 800 -c 0 -i 214 -a 0 -x {0.1 4194304.0 167 ------- SRM_DATA} - -t 6.84 -s 0 -d 1 -p cbr -e 800 -c 0 -i 214 -a 0 -x {0.1 4194304.0 167 ------- SRM_DATA} h -t 6.84 -s 0 -d 1 -p cbr -e 800 -c 0 -i 214 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.84266 -s 5 -d 3 -p SRM -e 116 -c 6 -i 213 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} + -t 6.84266 -s 3 -d 2 -p SRM -e 116 -c 6 -i 213 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} - -t 6.84266 -s 3 -d 2 -p SRM -e 116 -c 6 -i 213 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} h -t 6.84266 -s 3 -d 2 -p SRM -e 116 -c 6 -i 213 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} + -t 6.84266 -s 3 -d 4 -p SRM -e 116 -c 6 -i 213 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} - -t 6.84266 -s 3 -d 4 -p SRM -e 116 -c 6 -i 213 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} h -t 6.84266 -s 3 -d 4 -p SRM -e 116 -c 6 -i 213 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} r -t 6.8428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 211 -a 0 -x {0.1 4194304.0 165 ------- SRM_DATA} + -t 6.8428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 211 -a 0 -x {0.1 4194304.0 165 ------- SRM_DATA} + -t 6.8428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 211 -a 0 -x {0.1 4194304.0 165 ------- SRM_DATA} - -t 6.8428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 211 -a 0 -x {0.1 4194304.0 165 ------- SRM_DATA} h -t 6.8428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 211 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} - -t 6.84328 -s 3 -d 4 -p cbr -e 800 -c 0 -i 211 -a 0 -x {0.1 4194304.0 165 ------- SRM_DATA} h -t 6.84328 -s 3 -d 4 -p cbr -e 800 -c 0 -i 211 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.84853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 212 -a 0 -x {0.1 4194304.0 166 ------- SRM_DATA} + -t 6.84853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 212 -a 0 -x {0.1 4194304.0 166 ------- SRM_DATA} - -t 6.84853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 212 -a 0 -x {0.1 4194304.0 166 ------- SRM_DATA} h -t 6.84853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 212 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.85328 -s 3 -d 2 -p SRM -e 116 -c 6 -i 213 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} + -t 6.85328 -s 2 -d 1 -p SRM -e 116 -c 6 -i 213 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} - -t 6.85328 -s 2 -d 1 -p SRM -e 116 -c 6 -i 213 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} h -t 6.85328 -s 2 -d 1 -p SRM -e 116 -c 6 -i 213 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} r -t 6.85328 -s 3 -d 4 -p SRM -e 116 -c 6 -i 213 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} r -t 6.85427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 214 -a 0 -x {0.1 4194304.0 167 ------- SRM_DATA} + -t 6.85427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 214 -a 0 -x {0.1 4194304.0 167 ------- SRM_DATA} - -t 6.85427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 214 -a 0 -x {0.1 4194304.0 167 ------- SRM_DATA} h -t 6.85427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 214 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.85707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 211 -a 0 -x {0.1 4194304.0 165 ------- SRM_DATA} r -t 6.85755 -s 3 -d 4 -p cbr -e 800 -c 0 -i 211 -a 0 -x {0.1 4194304.0 165 ------- SRM_DATA} + -t 6.86 -s 0 -d 1 -p cbr -e 800 -c 0 -i 215 -a 0 -x {0.1 4194304.0 168 ------- SRM_DATA} - -t 6.86 -s 0 -d 1 -p cbr -e 800 -c 0 -i 215 -a 0 -x {0.1 4194304.0 168 ------- SRM_DATA} h -t 6.86 -s 0 -d 1 -p cbr -e 800 -c 0 -i 215 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.8628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 212 -a 0 -x {0.1 4194304.0 166 ------- SRM_DATA} + -t 6.8628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 212 -a 0 -x {0.1 4194304.0 166 ------- SRM_DATA} - -t 6.8628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 212 -a 0 -x {0.1 4194304.0 166 ------- SRM_DATA} h -t 6.8628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 212 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.8628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 212 -a 0 -x {0.1 4194304.0 166 ------- SRM_DATA} - -t 6.8628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 212 -a 0 -x {0.1 4194304.0 166 ------- SRM_DATA} h -t 6.8628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 212 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.8639 -s 2 -d 1 -p SRM -e 116 -c 6 -i 213 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} + -t 6.8639 -s 1 -d 0 -p SRM -e 116 -c 6 -i 213 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} - -t 6.8639 -s 1 -d 0 -p SRM -e 116 -c 6 -i 213 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} h -t 6.8639 -s 1 -d 0 -p SRM -e 116 -c 6 -i 213 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} r -t 6.86853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 214 -a 0 -x {0.1 4194304.0 167 ------- SRM_DATA} + -t 6.86853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 214 -a 0 -x {0.1 4194304.0 167 ------- SRM_DATA} - -t 6.86853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 214 -a 0 -x {0.1 4194304.0 167 ------- SRM_DATA} h -t 6.86853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 214 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.87427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 215 -a 0 -x {0.1 4194304.0 168 ------- SRM_DATA} + -t 6.87427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 215 -a 0 -x {0.1 4194304.0 168 ------- SRM_DATA} - -t 6.87427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 215 -a 0 -x {0.1 4194304.0 168 ------- SRM_DATA} h -t 6.87427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 215 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.87452 -s 1 -d 0 -p SRM -e 116 -c 6 -i 213 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} r -t 6.87707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 212 -a 0 -x {0.1 4194304.0 166 ------- SRM_DATA} r -t 6.87707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 212 -a 0 -x {0.1 4194304.0 166 ------- SRM_DATA} + -t 6.88 -s 0 -d 1 -p cbr -e 800 -c 0 -i 216 -a 0 -x {0.1 4194304.0 169 ------- SRM_DATA} - -t 6.88 -s 0 -d 1 -p cbr -e 800 -c 0 -i 216 -a 0 -x {0.1 4194304.0 169 ------- SRM_DATA} h -t 6.88 -s 0 -d 1 -p cbr -e 800 -c 0 -i 216 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.8828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 214 -a 0 -x {0.1 4194304.0 167 ------- SRM_DATA} + -t 6.8828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 214 -a 0 -x {0.1 4194304.0 167 ------- SRM_DATA} - -t 6.8828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 214 -a 0 -x {0.1 4194304.0 167 ------- SRM_DATA} h -t 6.8828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 214 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.8828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 214 -a 0 -x {0.1 4194304.0 167 ------- SRM_DATA} - -t 6.8828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 214 -a 0 -x {0.1 4194304.0 167 ------- SRM_DATA} h -t 6.8828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 214 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.88853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 215 -a 0 -x {0.1 4194304.0 168 ------- SRM_DATA} + -t 6.88853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 215 -a 0 -x {0.1 4194304.0 168 ------- SRM_DATA} - -t 6.88853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 215 -a 0 -x {0.1 4194304.0 168 ------- SRM_DATA} h -t 6.88853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 215 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.89427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 216 -a 0 -x {0.1 4194304.0 169 ------- SRM_DATA} + -t 6.89427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 216 -a 0 -x {0.1 4194304.0 169 ------- SRM_DATA} - -t 6.89427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 216 -a 0 -x {0.1 4194304.0 169 ------- SRM_DATA} h -t 6.89427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 216 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.89707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 214 -a 0 -x {0.1 4194304.0 167 ------- SRM_DATA} r -t 6.89707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 214 -a 0 -x {0.1 4194304.0 167 ------- SRM_DATA} + -t 6.9 -s 0 -d 1 -p cbr -e 800 -c 0 -i 217 -a 0 -x {0.1 4194304.0 170 ------- SRM_DATA} - -t 6.9 -s 0 -d 1 -p cbr -e 800 -c 0 -i 217 -a 0 -x {0.1 4194304.0 170 ------- SRM_DATA} h -t 6.9 -s 0 -d 1 -p cbr -e 800 -c 0 -i 217 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.9028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 215 -a 0 -x {0.1 4194304.0 168 ------- SRM_DATA} + -t 6.9028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 215 -a 0 -x {0.1 4194304.0 168 ------- SRM_DATA} - -t 6.9028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 215 -a 0 -x {0.1 4194304.0 168 ------- SRM_DATA} h -t 6.9028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 215 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.9028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 215 -a 0 -x {0.1 4194304.0 168 ------- SRM_DATA} - -t 6.9028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 215 -a 0 -x {0.1 4194304.0 168 ------- SRM_DATA} h -t 6.9028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 215 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.90853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 216 -a 0 -x {0.1 4194304.0 169 ------- SRM_DATA} + -t 6.90853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 216 -a 0 -x {0.1 4194304.0 169 ------- SRM_DATA} - -t 6.90853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 216 -a 0 -x {0.1 4194304.0 169 ------- SRM_DATA} h -t 6.90853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 216 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.91427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 217 -a 0 -x {0.1 4194304.0 170 ------- SRM_DATA} + -t 6.91427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 217 -a 0 -x {0.1 4194304.0 170 ------- SRM_DATA} - -t 6.91427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 217 -a 0 -x {0.1 4194304.0 170 ------- SRM_DATA} h -t 6.91427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 217 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.91707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 215 -a 0 -x {0.1 4194304.0 168 ------- SRM_DATA} r -t 6.91707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 215 -a 0 -x {0.1 4194304.0 168 ------- SRM_DATA} + -t 6.92 -s 0 -d 1 -p cbr -e 800 -c 0 -i 218 -a 0 -x {0.1 4194304.0 171 ------- SRM_DATA} - -t 6.92 -s 0 -d 1 -p cbr -e 800 -c 0 -i 218 -a 0 -x {0.1 4194304.0 171 ------- SRM_DATA} h -t 6.92 -s 0 -d 1 -p cbr -e 800 -c 0 -i 218 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.9228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 216 -a 0 -x {0.1 4194304.0 169 ------- SRM_DATA} + -t 6.9228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 216 -a 0 -x {0.1 4194304.0 169 ------- SRM_DATA} - -t 6.9228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 216 -a 0 -x {0.1 4194304.0 169 ------- SRM_DATA} h -t 6.9228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 216 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.9228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 216 -a 0 -x {0.1 4194304.0 169 ------- SRM_DATA} - -t 6.9228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 216 -a 0 -x {0.1 4194304.0 169 ------- SRM_DATA} h -t 6.9228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 216 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.92612 -s 0 -d 1 -p SRM -e 116 -c 1 -i 219 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} - -t 6.92612 -s 0 -d 1 -p SRM -e 116 -c 1 -i 219 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} h -t 6.92612 -s 0 -d 1 -p SRM -e 116 -c 1 -i 219 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} r -t 6.92853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 217 -a 0 -x {0.1 4194304.0 170 ------- SRM_DATA} + -t 6.92853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 217 -a 0 -x {0.1 4194304.0 170 ------- SRM_DATA} - -t 6.92853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 217 -a 0 -x {0.1 4194304.0 170 ------- SRM_DATA} h -t 6.92853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 217 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.93427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 218 -a 0 -x {0.1 4194304.0 171 ------- SRM_DATA} + -t 6.93427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 218 -a 0 -x {0.1 4194304.0 171 ------- SRM_DATA} - -t 6.93427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 218 -a 0 -x {0.1 4194304.0 171 ------- SRM_DATA} h -t 6.93427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 218 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.93674 -s 0 -d 1 -p SRM -e 116 -c 1 -i 219 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} + -t 6.93674 -s 1 -d 2 -p SRM -e 116 -c 1 -i 219 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} r -t 6.93707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 216 -a 0 -x {0.1 4194304.0 169 ------- SRM_DATA} r -t 6.93707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 216 -a 0 -x {0.1 4194304.0 169 ------- SRM_DATA} - -t 6.93853 -s 1 -d 2 -p SRM -e 116 -c 1 -i 219 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} h -t 6.93853 -s 1 -d 2 -p SRM -e 116 -c 1 -i 219 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} + -t 6.94 -s 0 -d 1 -p cbr -e 800 -c 0 -i 220 -a 0 -x {0.1 4194304.0 172 ------- SRM_DATA} - -t 6.94 -s 0 -d 1 -p cbr -e 800 -c 0 -i 220 -a 0 -x {0.1 4194304.0 172 ------- SRM_DATA} h -t 6.94 -s 0 -d 1 -p cbr -e 800 -c 0 -i 220 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.9428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 217 -a 0 -x {0.1 4194304.0 170 ------- SRM_DATA} + -t 6.9428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 217 -a 0 -x {0.1 4194304.0 170 ------- SRM_DATA} - -t 6.9428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 217 -a 0 -x {0.1 4194304.0 170 ------- SRM_DATA} h -t 6.9428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 217 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.9428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 217 -a 0 -x {0.1 4194304.0 170 ------- SRM_DATA} - -t 6.9428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 217 -a 0 -x {0.1 4194304.0 170 ------- SRM_DATA} h -t 6.9428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 217 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.94853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 218 -a 0 -x {0.1 4194304.0 171 ------- SRM_DATA} + -t 6.94853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 218 -a 0 -x {0.1 4194304.0 171 ------- SRM_DATA} - -t 6.94853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 218 -a 0 -x {0.1 4194304.0 171 ------- SRM_DATA} h -t 6.94853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 218 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.94915 -s 1 -d 2 -p SRM -e 116 -c 1 -i 219 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} + -t 6.94915 -s 2 -d 3 -p SRM -e 116 -c 1 -i 219 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} - -t 6.9528 -s 2 -d 3 -p SRM -e 116 -c 1 -i 219 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} h -t 6.9528 -s 2 -d 3 -p SRM -e 116 -c 1 -i 219 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} r -t 6.95427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 220 -a 0 -x {0.1 4194304.0 172 ------- SRM_DATA} + -t 6.95427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 220 -a 0 -x {0.1 4194304.0 172 ------- SRM_DATA} - -t 6.95427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 220 -a 0 -x {0.1 4194304.0 172 ------- SRM_DATA} h -t 6.95427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 220 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.95707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 217 -a 0 -x {0.1 4194304.0 170 ------- SRM_DATA} r -t 6.95707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 217 -a 0 -x {0.1 4194304.0 170 ------- SRM_DATA} + -t 6.95799 -s 4 -d 3 -p SRM -e 116 -c 5 -i 221 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} - -t 6.95799 -s 4 -d 3 -p SRM -e 116 -c 5 -i 221 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} h -t 6.95799 -s 4 -d 3 -p SRM -e 116 -c 5 -i 221 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} + -t 6.96 -s 0 -d 1 -p cbr -e 800 -c 0 -i 222 -a 0 -x {0.1 4194304.0 173 ------- SRM_DATA} - -t 6.96 -s 0 -d 1 -p cbr -e 800 -c 0 -i 222 -a 0 -x {0.1 4194304.0 173 ------- SRM_DATA} h -t 6.96 -s 0 -d 1 -p cbr -e 800 -c 0 -i 222 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.9628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 218 -a 0 -x {0.1 4194304.0 171 ------- SRM_DATA} + -t 6.9628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 218 -a 0 -x {0.1 4194304.0 171 ------- SRM_DATA} - -t 6.9628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 218 -a 0 -x {0.1 4194304.0 171 ------- SRM_DATA} h -t 6.9628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 218 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.9628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 218 -a 0 -x {0.1 4194304.0 171 ------- SRM_DATA} - -t 6.9628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 218 -a 0 -x {0.1 4194304.0 171 ------- SRM_DATA} h -t 6.9628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 218 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.96342 -s 2 -d 3 -p SRM -e 116 -c 1 -i 219 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} + -t 6.96342 -s 3 -d 4 -p SRM -e 116 -c 1 -i 219 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} + -t 6.96342 -s 3 -d 5 -p SRM -e 116 -c 1 -i 219 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} - -t 6.96707 -s 3 -d 4 -p SRM -e 116 -c 1 -i 219 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} h -t 6.96707 -s 3 -d 4 -p SRM -e 116 -c 1 -i 219 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} - -t 6.96707 -s 3 -d 5 -p SRM -e 116 -c 1 -i 219 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} h -t 6.96707 -s 3 -d 5 -p SRM -e 116 -c 1 -i 219 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} r -t 6.96853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 220 -a 0 -x {0.1 4194304.0 172 ------- SRM_DATA} + -t 6.96853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 220 -a 0 -x {0.1 4194304.0 172 ------- SRM_DATA} - -t 6.96853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 220 -a 0 -x {0.1 4194304.0 172 ------- SRM_DATA} h -t 6.96853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 220 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.96861 -s 4 -d 3 -p SRM -e 116 -c 5 -i 221 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} + -t 6.96861 -s 3 -d 2 -p SRM -e 116 -c 5 -i 221 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} - -t 6.96861 -s 3 -d 2 -p SRM -e 116 -c 5 -i 221 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} h -t 6.96861 -s 3 -d 2 -p SRM -e 116 -c 5 -i 221 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} + -t 6.96861 -s 3 -d 5 -p SRM -e 116 -c 5 -i 221 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} - -t 6.96861 -s 3 -d 5 -p SRM -e 116 -c 5 -i 221 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} h -t 6.96861 -s 3 -d 5 -p SRM -e 116 -c 5 -i 221 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} r -t 6.97427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 222 -a 0 -x {0.1 4194304.0 173 ------- SRM_DATA} + -t 6.97427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 222 -a 0 -x {0.1 4194304.0 173 ------- SRM_DATA} - -t 6.97427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 222 -a 0 -x {0.1 4194304.0 173 ------- SRM_DATA} h -t 6.97427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 222 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.97626 -s 1 -d 0 -p SRM -e 116 -c 2 -i 223 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} - -t 6.97626 -s 1 -d 0 -p SRM -e 116 -c 2 -i 223 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} h -t 6.97626 -s 1 -d 0 -p SRM -e 116 -c 2 -i 223 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} + -t 6.97626 -s 1 -d 2 -p SRM -e 116 -c 2 -i 223 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} r -t 6.97707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 218 -a 0 -x {0.1 4194304.0 171 ------- SRM_DATA} r -t 6.97707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 218 -a 0 -x {0.1 4194304.0 171 ------- SRM_DATA} r -t 6.97769 -s 3 -d 4 -p SRM -e 116 -c 1 -i 219 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} r -t 6.97769 -s 3 -d 5 -p SRM -e 116 -c 1 -i 219 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} - -t 6.97853 -s 1 -d 2 -p SRM -e 116 -c 2 -i 223 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} h -t 6.97853 -s 1 -d 2 -p SRM -e 116 -c 2 -i 223 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} r -t 6.97923 -s 3 -d 2 -p SRM -e 116 -c 5 -i 221 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} + -t 6.97923 -s 2 -d 1 -p SRM -e 116 -c 5 -i 221 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} - -t 6.97923 -s 2 -d 1 -p SRM -e 116 -c 5 -i 221 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} h -t 6.97923 -s 2 -d 1 -p SRM -e 116 -c 5 -i 221 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} r -t 6.97923 -s 3 -d 5 -p SRM -e 116 -c 5 -i 221 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} + -t 6.98 -s 0 -d 1 -p cbr -e 800 -c 0 -i 224 -a 0 -x {0.1 4194304.0 174 ------- SRM_DATA} - -t 6.98 -s 0 -d 1 -p cbr -e 800 -c 0 -i 224 -a 0 -x {0.1 4194304.0 174 ------- SRM_DATA} h -t 6.98 -s 0 -d 1 -p cbr -e 800 -c 0 -i 224 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.9828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 220 -a 0 -x {0.1 4194304.0 172 ------- SRM_DATA} + -t 6.9828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 220 -a 0 -x {0.1 4194304.0 172 ------- SRM_DATA} - -t 6.9828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 220 -a 0 -x {0.1 4194304.0 172 ------- SRM_DATA} h -t 6.9828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 220 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 6.9828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 220 -a 0 -x {0.1 4194304.0 172 ------- SRM_DATA} - -t 6.9828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 220 -a 0 -x {0.1 4194304.0 172 ------- SRM_DATA} h -t 6.9828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 220 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.98688 -s 1 -d 0 -p SRM -e 116 -c 2 -i 223 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} + -t 6.98806 -s 2 -d 1 -p SRM -e 116 -c 3 -i 225 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} - -t 6.98806 -s 2 -d 1 -p SRM -e 116 -c 3 -i 225 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} h -t 6.98806 -s 2 -d 1 -p SRM -e 116 -c 3 -i 225 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} + -t 6.98806 -s 2 -d 3 -p SRM -e 116 -c 3 -i 225 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} - -t 6.98806 -s 2 -d 3 -p SRM -e 116 -c 3 -i 225 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} h -t 6.98806 -s 2 -d 3 -p SRM -e 116 -c 3 -i 225 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} r -t 6.98853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 222 -a 0 -x {0.1 4194304.0 173 ------- SRM_DATA} + -t 6.98853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 222 -a 0 -x {0.1 4194304.0 173 ------- SRM_DATA} - -t 6.98868 -s 2 -d 3 -p cbr -e 800 -c 0 -i 222 -a 0 -x {0.1 4194304.0 173 ------- SRM_DATA} h -t 6.98868 -s 2 -d 3 -p cbr -e 800 -c 0 -i 222 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.98915 -s 1 -d 2 -p SRM -e 116 -c 2 -i 223 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} + -t 6.98915 -s 2 -d 3 -p SRM -e 116 -c 2 -i 223 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} r -t 6.98985 -s 2 -d 1 -p SRM -e 116 -c 5 -i 221 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} + -t 6.98985 -s 1 -d 0 -p SRM -e 116 -c 5 -i 221 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} - -t 6.98985 -s 1 -d 0 -p SRM -e 116 -c 5 -i 221 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} h -t 6.98985 -s 1 -d 0 -p SRM -e 116 -c 5 -i 221 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} - -t 6.99295 -s 2 -d 3 -p SRM -e 116 -c 2 -i 223 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} h -t 6.99295 -s 2 -d 3 -p SRM -e 116 -c 2 -i 223 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} r -t 6.99427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 224 -a 0 -x {0.1 4194304.0 174 ------- SRM_DATA} + -t 6.99427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 224 -a 0 -x {0.1 4194304.0 174 ------- SRM_DATA} - -t 6.99427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 224 -a 0 -x {0.1 4194304.0 174 ------- SRM_DATA} h -t 6.99427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 224 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 6.99707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 220 -a 0 -x {0.1 4194304.0 172 ------- SRM_DATA} r -t 6.99707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 220 -a 0 -x {0.1 4194304.0 172 ------- SRM_DATA} r -t 6.99868 -s 2 -d 1 -p SRM -e 116 -c 3 -i 225 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} + -t 6.99868 -s 1 -d 0 -p SRM -e 116 -c 3 -i 225 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} - -t 6.99868 -s 1 -d 0 -p SRM -e 116 -c 3 -i 225 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} h -t 6.99868 -s 1 -d 0 -p SRM -e 116 -c 3 -i 225 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} r -t 6.99868 -s 2 -d 3 -p SRM -e 116 -c 3 -i 225 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} + -t 6.99868 -s 3 -d 4 -p SRM -e 116 -c 3 -i 225 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} - -t 6.99868 -s 3 -d 4 -p SRM -e 116 -c 3 -i 225 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} h -t 6.99868 -s 3 -d 4 -p SRM -e 116 -c 3 -i 225 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} + -t 6.99868 -s 3 -d 5 -p SRM -e 116 -c 3 -i 225 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} - -t 6.99868 -s 3 -d 5 -p SRM -e 116 -c 3 -i 225 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} h -t 6.99868 -s 3 -d 5 -p SRM -e 116 -c 3 -i 225 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} + -t 7 -s 0 -d 1 -p cbr -e 800 -c 0 -i 226 -a 0 -x {0.1 4194304.0 175 ------- SRM_DATA} - -t 7 -s 0 -d 1 -p cbr -e 800 -c 0 -i 226 -a 0 -x {0.1 4194304.0 175 ------- SRM_DATA} h -t 7 -s 0 -d 1 -p cbr -e 800 -c 0 -i 226 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.00047 -s 1 -d 0 -p SRM -e 116 -c 5 -i 221 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} r -t 7.00295 -s 2 -d 3 -p cbr -e 800 -c 0 -i 222 -a 0 -x {0.1 4194304.0 173 ------- SRM_DATA} + -t 7.00295 -s 3 -d 4 -p cbr -e 800 -c 0 -i 222 -a 0 -x {0.1 4194304.0 173 ------- SRM_DATA} - -t 7.00295 -s 3 -d 4 -p cbr -e 800 -c 0 -i 222 -a 0 -x {0.1 4194304.0 173 ------- SRM_DATA} h -t 7.00295 -s 3 -d 4 -p cbr -e 800 -c 0 -i 222 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.00295 -s 3 -d 5 -p cbr -e 800 -c 0 -i 222 -a 0 -x {0.1 4194304.0 173 ------- SRM_DATA} - -t 7.00295 -s 3 -d 5 -p cbr -e 800 -c 0 -i 222 -a 0 -x {0.1 4194304.0 173 ------- SRM_DATA} h -t 7.00295 -s 3 -d 5 -p cbr -e 800 -c 0 -i 222 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.00356 -s 2 -d 3 -p SRM -e 116 -c 2 -i 223 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} + -t 7.00356 -s 3 -d 4 -p SRM -e 116 -c 2 -i 223 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} + -t 7.00356 -s 3 -d 5 -p SRM -e 116 -c 2 -i 223 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} - -t 7.00721 -s 3 -d 4 -p SRM -e 116 -c 2 -i 223 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} h -t 7.00721 -s 3 -d 4 -p SRM -e 116 -c 2 -i 223 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} - -t 7.00721 -s 3 -d 5 -p SRM -e 116 -c 2 -i 223 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} h -t 7.00721 -s 3 -d 5 -p SRM -e 116 -c 2 -i 223 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} r -t 7.00853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 224 -a 0 -x {0.1 4194304.0 174 ------- SRM_DATA} + -t 7.00853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 224 -a 0 -x {0.1 4194304.0 174 ------- SRM_DATA} - -t 7.00853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 224 -a 0 -x {0.1 4194304.0 174 ------- SRM_DATA} h -t 7.00853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 224 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.0093 -s 1 -d 0 -p SRM -e 116 -c 3 -i 225 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} r -t 7.0093 -s 3 -d 4 -p SRM -e 116 -c 3 -i 225 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} r -t 7.0093 -s 3 -d 5 -p SRM -e 116 -c 3 -i 225 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} r -t 7.01427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 226 -a 0 -x {0.1 4194304.0 175 ------- SRM_DATA} + -t 7.01427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 226 -a 0 -x {0.1 4194304.0 175 ------- SRM_DATA} - -t 7.01427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 226 -a 0 -x {0.1 4194304.0 175 ------- SRM_DATA} h -t 7.01427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 226 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.01721 -s 3 -d 4 -p cbr -e 800 -c 0 -i 222 -a 0 -x {0.1 4194304.0 173 ------- SRM_DATA} r -t 7.01721 -s 3 -d 5 -p cbr -e 800 -c 0 -i 222 -a 0 -x {0.1 4194304.0 173 ------- SRM_DATA} r -t 7.01783 -s 3 -d 4 -p SRM -e 116 -c 2 -i 223 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} r -t 7.01783 -s 3 -d 5 -p SRM -e 116 -c 2 -i 223 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} + -t 7.02 -s 0 -d 1 -p cbr -e 800 -c 0 -i 227 -a 0 -x {0.1 4194304.0 176 ------- SRM_DATA} - -t 7.02 -s 0 -d 1 -p cbr -e 800 -c 0 -i 227 -a 0 -x {0.1 4194304.0 176 ------- SRM_DATA} h -t 7.02 -s 0 -d 1 -p cbr -e 800 -c 0 -i 227 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.0228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 224 -a 0 -x {0.1 4194304.0 174 ------- SRM_DATA} + -t 7.0228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 224 -a 0 -x {0.1 4194304.0 174 ------- SRM_DATA} - -t 7.0228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 224 -a 0 -x {0.1 4194304.0 174 ------- SRM_DATA} h -t 7.0228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 224 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.0228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 224 -a 0 -x {0.1 4194304.0 174 ------- SRM_DATA} - -t 7.0228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 224 -a 0 -x {0.1 4194304.0 174 ------- SRM_DATA} h -t 7.0228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 224 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.02853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 226 -a 0 -x {0.1 4194304.0 175 ------- SRM_DATA} + -t 7.02853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 226 -a 0 -x {0.1 4194304.0 175 ------- SRM_DATA} - -t 7.02853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 226 -a 0 -x {0.1 4194304.0 175 ------- SRM_DATA} h -t 7.02853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 226 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.03427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 227 -a 0 -x {0.1 4194304.0 176 ------- SRM_DATA} + -t 7.03427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 227 -a 0 -x {0.1 4194304.0 176 ------- SRM_DATA} - -t 7.03427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 227 -a 0 -x {0.1 4194304.0 176 ------- SRM_DATA} h -t 7.03427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 227 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.03707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 224 -a 0 -x {0.1 4194304.0 174 ------- SRM_DATA} r -t 7.03707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 224 -a 0 -x {0.1 4194304.0 174 ------- SRM_DATA} + -t 7.04 -s 0 -d 1 -p cbr -e 800 -c 0 -i 228 -a 0 -x {0.1 4194304.0 177 ------- SRM_DATA} - -t 7.04 -s 0 -d 1 -p cbr -e 800 -c 0 -i 228 -a 0 -x {0.1 4194304.0 177 ------- SRM_DATA} h -t 7.04 -s 0 -d 1 -p cbr -e 800 -c 0 -i 228 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.0428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 226 -a 0 -x {0.1 4194304.0 175 ------- SRM_DATA} + -t 7.0428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 226 -a 0 -x {0.1 4194304.0 175 ------- SRM_DATA} - -t 7.0428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 226 -a 0 -x {0.1 4194304.0 175 ------- SRM_DATA} h -t 7.0428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 226 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.0428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 226 -a 0 -x {0.1 4194304.0 175 ------- SRM_DATA} - -t 7.0428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 226 -a 0 -x {0.1 4194304.0 175 ------- SRM_DATA} h -t 7.0428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 226 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.04853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 227 -a 0 -x {0.1 4194304.0 176 ------- SRM_DATA} + -t 7.04853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 227 -a 0 -x {0.1 4194304.0 176 ------- SRM_DATA} - -t 7.04853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 227 -a 0 -x {0.1 4194304.0 176 ------- SRM_DATA} h -t 7.04853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 227 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.05427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 228 -a 0 -x {0.1 4194304.0 177 ------- SRM_DATA} + -t 7.05427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 228 -a 0 -x {0.1 4194304.0 177 ------- SRM_DATA} - -t 7.05427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 228 -a 0 -x {0.1 4194304.0 177 ------- SRM_DATA} h -t 7.05427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 228 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.05707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 226 -a 0 -x {0.1 4194304.0 175 ------- SRM_DATA} r -t 7.05707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 226 -a 0 -x {0.1 4194304.0 175 ------- SRM_DATA} + -t 7.06 -s 0 -d 1 -p cbr -e 800 -c 0 -i 229 -a 0 -x {0.1 4194304.0 178 ------- SRM_DATA} - -t 7.06 -s 0 -d 1 -p cbr -e 800 -c 0 -i 229 -a 0 -x {0.1 4194304.0 178 ------- SRM_DATA} h -t 7.06 -s 0 -d 1 -p cbr -e 800 -c 0 -i 229 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.0628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 227 -a 0 -x {0.1 4194304.0 176 ------- SRM_DATA} + -t 7.0628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 227 -a 0 -x {0.1 4194304.0 176 ------- SRM_DATA} - -t 7.0628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 227 -a 0 -x {0.1 4194304.0 176 ------- SRM_DATA} h -t 7.0628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 227 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.0628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 227 -a 0 -x {0.1 4194304.0 176 ------- SRM_DATA} - -t 7.0628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 227 -a 0 -x {0.1 4194304.0 176 ------- SRM_DATA} h -t 7.0628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 227 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.06853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 228 -a 0 -x {0.1 4194304.0 177 ------- SRM_DATA} + -t 7.06853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 228 -a 0 -x {0.1 4194304.0 177 ------- SRM_DATA} - -t 7.06853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 228 -a 0 -x {0.1 4194304.0 177 ------- SRM_DATA} h -t 7.06853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 228 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.07427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 229 -a 0 -x {0.1 4194304.0 178 ------- SRM_DATA} + -t 7.07427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 229 -a 0 -x {0.1 4194304.0 178 ------- SRM_DATA} - -t 7.07427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 229 -a 0 -x {0.1 4194304.0 178 ------- SRM_DATA} h -t 7.07427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 229 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.07707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 227 -a 0 -x {0.1 4194304.0 176 ------- SRM_DATA} r -t 7.07707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 227 -a 0 -x {0.1 4194304.0 176 ------- SRM_DATA} + -t 7.08 -s 0 -d 1 -p cbr -e 800 -c 0 -i 230 -a 0 -x {0.1 4194304.0 179 ------- SRM_DATA} - -t 7.08 -s 0 -d 1 -p cbr -e 800 -c 0 -i 230 -a 0 -x {0.1 4194304.0 179 ------- SRM_DATA} h -t 7.08 -s 0 -d 1 -p cbr -e 800 -c 0 -i 230 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.0828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 228 -a 0 -x {0.1 4194304.0 177 ------- SRM_DATA} + -t 7.0828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 228 -a 0 -x {0.1 4194304.0 177 ------- SRM_DATA} - -t 7.0828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 228 -a 0 -x {0.1 4194304.0 177 ------- SRM_DATA} h -t 7.0828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 228 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.0828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 228 -a 0 -x {0.1 4194304.0 177 ------- SRM_DATA} - -t 7.0828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 228 -a 0 -x {0.1 4194304.0 177 ------- SRM_DATA} h -t 7.0828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 228 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.08853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 229 -a 0 -x {0.1 4194304.0 178 ------- SRM_DATA} + -t 7.08853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 229 -a 0 -x {0.1 4194304.0 178 ------- SRM_DATA} - -t 7.08853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 229 -a 0 -x {0.1 4194304.0 178 ------- SRM_DATA} h -t 7.08853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 229 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.09427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 230 -a 0 -x {0.1 4194304.0 179 ------- SRM_DATA} + -t 7.09427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 230 -a 0 -x {0.1 4194304.0 179 ------- SRM_DATA} - -t 7.09427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 230 -a 0 -x {0.1 4194304.0 179 ------- SRM_DATA} h -t 7.09427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 230 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.09707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 228 -a 0 -x {0.1 4194304.0 177 ------- SRM_DATA} r -t 7.09707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 228 -a 0 -x {0.1 4194304.0 177 ------- SRM_DATA} + -t 7.1 -s 0 -d 1 -p cbr -e 800 -c 0 -i 231 -a 0 -x {0.1 4194304.0 180 ------- SRM_DATA} - -t 7.1 -s 0 -d 1 -p cbr -e 800 -c 0 -i 231 -a 0 -x {0.1 4194304.0 180 ------- SRM_DATA} h -t 7.1 -s 0 -d 1 -p cbr -e 800 -c 0 -i 231 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.1028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 229 -a 0 -x {0.1 4194304.0 178 ------- SRM_DATA} + -t 7.1028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 229 -a 0 -x {0.1 4194304.0 178 ------- SRM_DATA} - -t 7.1028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 229 -a 0 -x {0.1 4194304.0 178 ------- SRM_DATA} h -t 7.1028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 229 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.1028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 229 -a 0 -x {0.1 4194304.0 178 ------- SRM_DATA} - -t 7.1028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 229 -a 0 -x {0.1 4194304.0 178 ------- SRM_DATA} h -t 7.1028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 229 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.10723 -s 3 -d 2 -p SRM -e 116 -c 4 -i 232 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} - -t 7.10723 -s 3 -d 2 -p SRM -e 116 -c 4 -i 232 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} h -t 7.10723 -s 3 -d 2 -p SRM -e 116 -c 4 -i 232 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} + -t 7.10723 -s 3 -d 4 -p SRM -e 116 -c 4 -i 232 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} - -t 7.10723 -s 3 -d 4 -p SRM -e 116 -c 4 -i 232 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} h -t 7.10723 -s 3 -d 4 -p SRM -e 116 -c 4 -i 232 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} + -t 7.10723 -s 3 -d 5 -p SRM -e 116 -c 4 -i 232 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} - -t 7.10723 -s 3 -d 5 -p SRM -e 116 -c 4 -i 232 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} h -t 7.10723 -s 3 -d 5 -p SRM -e 116 -c 4 -i 232 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} r -t 7.10853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 230 -a 0 -x {0.1 4194304.0 179 ------- SRM_DATA} + -t 7.10853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 230 -a 0 -x {0.1 4194304.0 179 ------- SRM_DATA} - -t 7.10853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 230 -a 0 -x {0.1 4194304.0 179 ------- SRM_DATA} h -t 7.10853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 230 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.11427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 231 -a 0 -x {0.1 4194304.0 180 ------- SRM_DATA} + -t 7.11427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 231 -a 0 -x {0.1 4194304.0 180 ------- SRM_DATA} - -t 7.11427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 231 -a 0 -x {0.1 4194304.0 180 ------- SRM_DATA} h -t 7.11427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 231 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.11707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 229 -a 0 -x {0.1 4194304.0 178 ------- SRM_DATA} r -t 7.11707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 229 -a 0 -x {0.1 4194304.0 178 ------- SRM_DATA} r -t 7.11785 -s 3 -d 2 -p SRM -e 116 -c 4 -i 232 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} + -t 7.11785 -s 2 -d 1 -p SRM -e 116 -c 4 -i 232 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} - -t 7.11785 -s 2 -d 1 -p SRM -e 116 -c 4 -i 232 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} h -t 7.11785 -s 2 -d 1 -p SRM -e 116 -c 4 -i 232 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} r -t 7.11785 -s 3 -d 4 -p SRM -e 116 -c 4 -i 232 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} r -t 7.11785 -s 3 -d 5 -p SRM -e 116 -c 4 -i 232 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} + -t 7.12 -s 0 -d 1 -p cbr -e 800 -c 0 -i 233 -a 0 -x {0.1 4194304.0 181 ------- SRM_DATA} - -t 7.12 -s 0 -d 1 -p cbr -e 800 -c 0 -i 233 -a 0 -x {0.1 4194304.0 181 ------- SRM_DATA} h -t 7.12 -s 0 -d 1 -p cbr -e 800 -c 0 -i 233 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.1228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 230 -a 0 -x {0.1 4194304.0 179 ------- SRM_DATA} + -t 7.1228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 230 -a 0 -x {0.1 4194304.0 179 ------- SRM_DATA} - -t 7.1228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 230 -a 0 -x {0.1 4194304.0 179 ------- SRM_DATA} h -t 7.1228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 230 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.1228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 230 -a 0 -x {0.1 4194304.0 179 ------- SRM_DATA} - -t 7.1228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 230 -a 0 -x {0.1 4194304.0 179 ------- SRM_DATA} h -t 7.1228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 230 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.12846 -s 2 -d 1 -p SRM -e 116 -c 4 -i 232 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} + -t 7.12846 -s 1 -d 0 -p SRM -e 116 -c 4 -i 232 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} - -t 7.12846 -s 1 -d 0 -p SRM -e 116 -c 4 -i 232 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} h -t 7.12846 -s 1 -d 0 -p SRM -e 116 -c 4 -i 232 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} r -t 7.12853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 231 -a 0 -x {0.1 4194304.0 180 ------- SRM_DATA} + -t 7.12853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 231 -a 0 -x {0.1 4194304.0 180 ------- SRM_DATA} - -t 7.12853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 231 -a 0 -x {0.1 4194304.0 180 ------- SRM_DATA} h -t 7.12853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 231 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.13427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 233 -a 0 -x {0.1 4194304.0 181 ------- SRM_DATA} + -t 7.13427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 233 -a 0 -x {0.1 4194304.0 181 ------- SRM_DATA} - -t 7.13427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 233 -a 0 -x {0.1 4194304.0 181 ------- SRM_DATA} h -t 7.13427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 233 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.13707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 230 -a 0 -x {0.1 4194304.0 179 ------- SRM_DATA} r -t 7.13707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 230 -a 0 -x {0.1 4194304.0 179 ------- SRM_DATA} r -t 7.13908 -s 1 -d 0 -p SRM -e 116 -c 4 -i 232 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} + -t 7.14 -s 0 -d 1 -p cbr -e 800 -c 0 -i 234 -a 0 -x {0.1 4194304.0 182 ------- SRM_DATA} - -t 7.14 -s 0 -d 1 -p cbr -e 800 -c 0 -i 234 -a 0 -x {0.1 4194304.0 182 ------- SRM_DATA} h -t 7.14 -s 0 -d 1 -p cbr -e 800 -c 0 -i 234 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.1428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 231 -a 0 -x {0.1 4194304.0 180 ------- SRM_DATA} + -t 7.1428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 231 -a 0 -x {0.1 4194304.0 180 ------- SRM_DATA} - -t 7.1428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 231 -a 0 -x {0.1 4194304.0 180 ------- SRM_DATA} h -t 7.1428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 231 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.1428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 231 -a 0 -x {0.1 4194304.0 180 ------- SRM_DATA} - -t 7.1428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 231 -a 0 -x {0.1 4194304.0 180 ------- SRM_DATA} h -t 7.1428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 231 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.14853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 233 -a 0 -x {0.1 4194304.0 181 ------- SRM_DATA} + -t 7.14853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 233 -a 0 -x {0.1 4194304.0 181 ------- SRM_DATA} - -t 7.14853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 233 -a 0 -x {0.1 4194304.0 181 ------- SRM_DATA} h -t 7.14853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 233 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.15427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 234 -a 0 -x {0.1 4194304.0 182 ------- SRM_DATA} + -t 7.15427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 234 -a 0 -x {0.1 4194304.0 182 ------- SRM_DATA} - -t 7.15427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 234 -a 0 -x {0.1 4194304.0 182 ------- SRM_DATA} h -t 7.15427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 234 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.15707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 231 -a 0 -x {0.1 4194304.0 180 ------- SRM_DATA} r -t 7.15707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 231 -a 0 -x {0.1 4194304.0 180 ------- SRM_DATA} + -t 7.16 -s 0 -d 1 -p cbr -e 800 -c 0 -i 235 -a 0 -x {0.1 4194304.0 183 ------- SRM_DATA} - -t 7.16 -s 0 -d 1 -p cbr -e 800 -c 0 -i 235 -a 0 -x {0.1 4194304.0 183 ------- SRM_DATA} h -t 7.16 -s 0 -d 1 -p cbr -e 800 -c 0 -i 235 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.1628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 233 -a 0 -x {0.1 4194304.0 181 ------- SRM_DATA} + -t 7.1628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 233 -a 0 -x {0.1 4194304.0 181 ------- SRM_DATA} - -t 7.1628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 233 -a 0 -x {0.1 4194304.0 181 ------- SRM_DATA} h -t 7.1628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 233 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.1628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 233 -a 0 -x {0.1 4194304.0 181 ------- SRM_DATA} - -t 7.1628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 233 -a 0 -x {0.1 4194304.0 181 ------- SRM_DATA} h -t 7.1628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 233 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.16853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 234 -a 0 -x {0.1 4194304.0 182 ------- SRM_DATA} + -t 7.16853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 234 -a 0 -x {0.1 4194304.0 182 ------- SRM_DATA} - -t 7.16853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 234 -a 0 -x {0.1 4194304.0 182 ------- SRM_DATA} h -t 7.16853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 234 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.17427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 235 -a 0 -x {0.1 4194304.0 183 ------- SRM_DATA} + -t 7.17427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 235 -a 0 -x {0.1 4194304.0 183 ------- SRM_DATA} - -t 7.17427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 235 -a 0 -x {0.1 4194304.0 183 ------- SRM_DATA} h -t 7.17427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 235 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.17707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 233 -a 0 -x {0.1 4194304.0 181 ------- SRM_DATA} r -t 7.17707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 233 -a 0 -x {0.1 4194304.0 181 ------- SRM_DATA} + -t 7.18 -s 0 -d 1 -p cbr -e 800 -c 0 -i 236 -a 0 -x {0.1 4194304.0 184 ------- SRM_DATA} - -t 7.18 -s 0 -d 1 -p cbr -e 800 -c 0 -i 236 -a 0 -x {0.1 4194304.0 184 ------- SRM_DATA} h -t 7.18 -s 0 -d 1 -p cbr -e 800 -c 0 -i 236 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.1828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 234 -a 0 -x {0.1 4194304.0 182 ------- SRM_DATA} + -t 7.1828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 234 -a 0 -x {0.1 4194304.0 182 ------- SRM_DATA} - -t 7.1828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 234 -a 0 -x {0.1 4194304.0 182 ------- SRM_DATA} h -t 7.1828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 234 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.1828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 234 -a 0 -x {0.1 4194304.0 182 ------- SRM_DATA} - -t 7.1828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 234 -a 0 -x {0.1 4194304.0 182 ------- SRM_DATA} h -t 7.1828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 234 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.18853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 235 -a 0 -x {0.1 4194304.0 183 ------- SRM_DATA} + -t 7.18853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 235 -a 0 -x {0.1 4194304.0 183 ------- SRM_DATA} - -t 7.18853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 235 -a 0 -x {0.1 4194304.0 183 ------- SRM_DATA} h -t 7.18853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 235 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.19427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 236 -a 0 -x {0.1 4194304.0 184 ------- SRM_DATA} + -t 7.19427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 236 -a 0 -x {0.1 4194304.0 184 ------- SRM_DATA} - -t 7.19427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 236 -a 0 -x {0.1 4194304.0 184 ------- SRM_DATA} h -t 7.19427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 236 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.19707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 234 -a 0 -x {0.1 4194304.0 182 ------- SRM_DATA} r -t 7.19707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 234 -a 0 -x {0.1 4194304.0 182 ------- SRM_DATA} + -t 7.2 -s 0 -d 1 -p cbr -e 800 -c 0 -i 237 -a 0 -x {0.1 4194304.0 185 ------- SRM_DATA} - -t 7.2 -s 0 -d 1 -p cbr -e 800 -c 0 -i 237 -a 0 -x {0.1 4194304.0 185 ------- SRM_DATA} h -t 7.2 -s 0 -d 1 -p cbr -e 800 -c 0 -i 237 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.2028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 235 -a 0 -x {0.1 4194304.0 183 ------- SRM_DATA} + -t 7.2028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 235 -a 0 -x {0.1 4194304.0 183 ------- SRM_DATA} - -t 7.2028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 235 -a 0 -x {0.1 4194304.0 183 ------- SRM_DATA} h -t 7.2028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 235 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.2028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 235 -a 0 -x {0.1 4194304.0 183 ------- SRM_DATA} - -t 7.2028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 235 -a 0 -x {0.1 4194304.0 183 ------- SRM_DATA} h -t 7.2028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 235 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.20853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 236 -a 0 -x {0.1 4194304.0 184 ------- SRM_DATA} + -t 7.20853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 236 -a 0 -x {0.1 4194304.0 184 ------- SRM_DATA} - -t 7.20853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 236 -a 0 -x {0.1 4194304.0 184 ------- SRM_DATA} h -t 7.20853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 236 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.21427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 237 -a 0 -x {0.1 4194304.0 185 ------- SRM_DATA} + -t 7.21427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 237 -a 0 -x {0.1 4194304.0 185 ------- SRM_DATA} - -t 7.21427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 237 -a 0 -x {0.1 4194304.0 185 ------- SRM_DATA} h -t 7.21427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 237 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.21707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 235 -a 0 -x {0.1 4194304.0 183 ------- SRM_DATA} r -t 7.21707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 235 -a 0 -x {0.1 4194304.0 183 ------- SRM_DATA} + -t 7.22 -s 0 -d 1 -p cbr -e 800 -c 0 -i 238 -a 0 -x {0.1 4194304.0 186 ------- SRM_DATA} - -t 7.22 -s 0 -d 1 -p cbr -e 800 -c 0 -i 238 -a 0 -x {0.1 4194304.0 186 ------- SRM_DATA} h -t 7.22 -s 0 -d 1 -p cbr -e 800 -c 0 -i 238 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.2228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 236 -a 0 -x {0.1 4194304.0 184 ------- SRM_DATA} + -t 7.2228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 236 -a 0 -x {0.1 4194304.0 184 ------- SRM_DATA} - -t 7.2228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 236 -a 0 -x {0.1 4194304.0 184 ------- SRM_DATA} h -t 7.2228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 236 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.2228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 236 -a 0 -x {0.1 4194304.0 184 ------- SRM_DATA} - -t 7.2228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 236 -a 0 -x {0.1 4194304.0 184 ------- SRM_DATA} h -t 7.2228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 236 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.22853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 237 -a 0 -x {0.1 4194304.0 185 ------- SRM_DATA} + -t 7.22853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 237 -a 0 -x {0.1 4194304.0 185 ------- SRM_DATA} - -t 7.22853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 237 -a 0 -x {0.1 4194304.0 185 ------- SRM_DATA} h -t 7.22853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 237 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.23427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 238 -a 0 -x {0.1 4194304.0 186 ------- SRM_DATA} + -t 7.23427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 238 -a 0 -x {0.1 4194304.0 186 ------- SRM_DATA} - -t 7.23427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 238 -a 0 -x {0.1 4194304.0 186 ------- SRM_DATA} h -t 7.23427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 238 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.23707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 236 -a 0 -x {0.1 4194304.0 184 ------- SRM_DATA} r -t 7.23707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 236 -a 0 -x {0.1 4194304.0 184 ------- SRM_DATA} + -t 7.24 -s 0 -d 1 -p cbr -e 800 -c 0 -i 239 -a 0 -x {0.1 4194304.0 187 ------- SRM_DATA} - -t 7.24 -s 0 -d 1 -p cbr -e 800 -c 0 -i 239 -a 0 -x {0.1 4194304.0 187 ------- SRM_DATA} h -t 7.24 -s 0 -d 1 -p cbr -e 800 -c 0 -i 239 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.2428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 237 -a 0 -x {0.1 4194304.0 185 ------- SRM_DATA} + -t 7.2428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 237 -a 0 -x {0.1 4194304.0 185 ------- SRM_DATA} - -t 7.2428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 237 -a 0 -x {0.1 4194304.0 185 ------- SRM_DATA} h -t 7.2428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 237 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.2428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 237 -a 0 -x {0.1 4194304.0 185 ------- SRM_DATA} - -t 7.2428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 237 -a 0 -x {0.1 4194304.0 185 ------- SRM_DATA} h -t 7.2428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 237 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.24853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 238 -a 0 -x {0.1 4194304.0 186 ------- SRM_DATA} + -t 7.24853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 238 -a 0 -x {0.1 4194304.0 186 ------- SRM_DATA} - -t 7.24853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 238 -a 0 -x {0.1 4194304.0 186 ------- SRM_DATA} h -t 7.24853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 238 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.25427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 239 -a 0 -x {0.1 4194304.0 187 ------- SRM_DATA} + -t 7.25427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 239 -a 0 -x {0.1 4194304.0 187 ------- SRM_DATA} - -t 7.25427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 239 -a 0 -x {0.1 4194304.0 187 ------- SRM_DATA} h -t 7.25427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 239 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.25707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 237 -a 0 -x {0.1 4194304.0 185 ------- SRM_DATA} r -t 7.25707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 237 -a 0 -x {0.1 4194304.0 185 ------- SRM_DATA} + -t 7.26 -s 0 -d 1 -p cbr -e 800 -c 0 -i 240 -a 0 -x {0.1 4194304.0 188 ------- SRM_DATA} - -t 7.26 -s 0 -d 1 -p cbr -e 800 -c 0 -i 240 -a 0 -x {0.1 4194304.0 188 ------- SRM_DATA} h -t 7.26 -s 0 -d 1 -p cbr -e 800 -c 0 -i 240 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.2628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 238 -a 0 -x {0.1 4194304.0 186 ------- SRM_DATA} + -t 7.2628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 238 -a 0 -x {0.1 4194304.0 186 ------- SRM_DATA} - -t 7.2628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 238 -a 0 -x {0.1 4194304.0 186 ------- SRM_DATA} h -t 7.2628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 238 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.2628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 238 -a 0 -x {0.1 4194304.0 186 ------- SRM_DATA} - -t 7.2628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 238 -a 0 -x {0.1 4194304.0 186 ------- SRM_DATA} h -t 7.2628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 238 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.26853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 239 -a 0 -x {0.1 4194304.0 187 ------- SRM_DATA} + -t 7.26853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 239 -a 0 -x {0.1 4194304.0 187 ------- SRM_DATA} - -t 7.26853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 239 -a 0 -x {0.1 4194304.0 187 ------- SRM_DATA} h -t 7.26853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 239 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.27427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 240 -a 0 -x {0.1 4194304.0 188 ------- SRM_DATA} + -t 7.27427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 240 -a 0 -x {0.1 4194304.0 188 ------- SRM_DATA} - -t 7.27427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 240 -a 0 -x {0.1 4194304.0 188 ------- SRM_DATA} h -t 7.27427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 240 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.27707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 238 -a 0 -x {0.1 4194304.0 186 ------- SRM_DATA} r -t 7.27707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 238 -a 0 -x {0.1 4194304.0 186 ------- SRM_DATA} + -t 7.28 -s 0 -d 1 -p cbr -e 800 -c 0 -i 241 -a 0 -x {0.1 4194304.0 189 ------- SRM_DATA} - -t 7.28 -s 0 -d 1 -p cbr -e 800 -c 0 -i 241 -a 0 -x {0.1 4194304.0 189 ------- SRM_DATA} h -t 7.28 -s 0 -d 1 -p cbr -e 800 -c 0 -i 241 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.2828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 239 -a 0 -x {0.1 4194304.0 187 ------- SRM_DATA} + -t 7.2828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 239 -a 0 -x {0.1 4194304.0 187 ------- SRM_DATA} - -t 7.2828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 239 -a 0 -x {0.1 4194304.0 187 ------- SRM_DATA} h -t 7.2828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 239 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.2828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 239 -a 0 -x {0.1 4194304.0 187 ------- SRM_DATA} - -t 7.2828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 239 -a 0 -x {0.1 4194304.0 187 ------- SRM_DATA} h -t 7.2828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 239 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.28853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 240 -a 0 -x {0.1 4194304.0 188 ------- SRM_DATA} + -t 7.28853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 240 -a 0 -x {0.1 4194304.0 188 ------- SRM_DATA} - -t 7.28853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 240 -a 0 -x {0.1 4194304.0 188 ------- SRM_DATA} h -t 7.28853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 240 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.29427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 241 -a 0 -x {0.1 4194304.0 189 ------- SRM_DATA} + -t 7.29427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 241 -a 0 -x {0.1 4194304.0 189 ------- SRM_DATA} - -t 7.29427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 241 -a 0 -x {0.1 4194304.0 189 ------- SRM_DATA} h -t 7.29427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 241 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.29707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 239 -a 0 -x {0.1 4194304.0 187 ------- SRM_DATA} r -t 7.29707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 239 -a 0 -x {0.1 4194304.0 187 ------- SRM_DATA} + -t 7.3 -s 0 -d 1 -p cbr -e 800 -c 0 -i 242 -a 0 -x {0.1 4194304.0 190 ------- SRM_DATA} - -t 7.3 -s 0 -d 1 -p cbr -e 800 -c 0 -i 242 -a 0 -x {0.1 4194304.0 190 ------- SRM_DATA} h -t 7.3 -s 0 -d 1 -p cbr -e 800 -c 0 -i 242 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.3028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 240 -a 0 -x {0.1 4194304.0 188 ------- SRM_DATA} + -t 7.3028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 240 -a 0 -x {0.1 4194304.0 188 ------- SRM_DATA} - -t 7.3028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 240 -a 0 -x {0.1 4194304.0 188 ------- SRM_DATA} h -t 7.3028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 240 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.3028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 240 -a 0 -x {0.1 4194304.0 188 ------- SRM_DATA} - -t 7.3028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 240 -a 0 -x {0.1 4194304.0 188 ------- SRM_DATA} h -t 7.3028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 240 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.30853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 241 -a 0 -x {0.1 4194304.0 189 ------- SRM_DATA} + -t 7.30853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 241 -a 0 -x {0.1 4194304.0 189 ------- SRM_DATA} - -t 7.30853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 241 -a 0 -x {0.1 4194304.0 189 ------- SRM_DATA} h -t 7.30853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 241 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.31427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 242 -a 0 -x {0.1 4194304.0 190 ------- SRM_DATA} + -t 7.31427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 242 -a 0 -x {0.1 4194304.0 190 ------- SRM_DATA} - -t 7.31427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 242 -a 0 -x {0.1 4194304.0 190 ------- SRM_DATA} h -t 7.31427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 242 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.31707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 240 -a 0 -x {0.1 4194304.0 188 ------- SRM_DATA} r -t 7.31707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 240 -a 0 -x {0.1 4194304.0 188 ------- SRM_DATA} + -t 7.32 -s 0 -d 1 -p cbr -e 800 -c 0 -i 243 -a 0 -x {0.1 4194304.0 191 ------- SRM_DATA} - -t 7.32 -s 0 -d 1 -p cbr -e 800 -c 0 -i 243 -a 0 -x {0.1 4194304.0 191 ------- SRM_DATA} h -t 7.32 -s 0 -d 1 -p cbr -e 800 -c 0 -i 243 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.3228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 241 -a 0 -x {0.1 4194304.0 189 ------- SRM_DATA} + -t 7.3228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 241 -a 0 -x {0.1 4194304.0 189 ------- SRM_DATA} - -t 7.3228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 241 -a 0 -x {0.1 4194304.0 189 ------- SRM_DATA} h -t 7.3228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 241 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.3228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 241 -a 0 -x {0.1 4194304.0 189 ------- SRM_DATA} - -t 7.3228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 241 -a 0 -x {0.1 4194304.0 189 ------- SRM_DATA} h -t 7.3228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 241 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.32853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 242 -a 0 -x {0.1 4194304.0 190 ------- SRM_DATA} + -t 7.32853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 242 -a 0 -x {0.1 4194304.0 190 ------- SRM_DATA} - -t 7.32853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 242 -a 0 -x {0.1 4194304.0 190 ------- SRM_DATA} h -t 7.32853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 242 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.33427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 243 -a 0 -x {0.1 4194304.0 191 ------- SRM_DATA} + -t 7.33427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 243 -a 0 -x {0.1 4194304.0 191 ------- SRM_DATA} - -t 7.33427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 243 -a 0 -x {0.1 4194304.0 191 ------- SRM_DATA} h -t 7.33427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 243 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.33707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 241 -a 0 -x {0.1 4194304.0 189 ------- SRM_DATA} r -t 7.33707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 241 -a 0 -x {0.1 4194304.0 189 ------- SRM_DATA} + -t 7.34 -s 0 -d 1 -p cbr -e 800 -c 0 -i 244 -a 0 -x {0.1 4194304.0 192 ------- SRM_DATA} - -t 7.34 -s 0 -d 1 -p cbr -e 800 -c 0 -i 244 -a 0 -x {0.1 4194304.0 192 ------- SRM_DATA} h -t 7.34 -s 0 -d 1 -p cbr -e 800 -c 0 -i 244 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.3428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 242 -a 0 -x {0.1 4194304.0 190 ------- SRM_DATA} + -t 7.3428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 242 -a 0 -x {0.1 4194304.0 190 ------- SRM_DATA} - -t 7.3428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 242 -a 0 -x {0.1 4194304.0 190 ------- SRM_DATA} h -t 7.3428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 242 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.3428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 242 -a 0 -x {0.1 4194304.0 190 ------- SRM_DATA} - -t 7.3428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 242 -a 0 -x {0.1 4194304.0 190 ------- SRM_DATA} h -t 7.3428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 242 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.34853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 243 -a 0 -x {0.1 4194304.0 191 ------- SRM_DATA} + -t 7.34853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 243 -a 0 -x {0.1 4194304.0 191 ------- SRM_DATA} - -t 7.34853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 243 -a 0 -x {0.1 4194304.0 191 ------- SRM_DATA} h -t 7.34853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 243 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.35427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 244 -a 0 -x {0.1 4194304.0 192 ------- SRM_DATA} + -t 7.35427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 244 -a 0 -x {0.1 4194304.0 192 ------- SRM_DATA} - -t 7.35427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 244 -a 0 -x {0.1 4194304.0 192 ------- SRM_DATA} h -t 7.35427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 244 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.35707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 242 -a 0 -x {0.1 4194304.0 190 ------- SRM_DATA} r -t 7.35707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 242 -a 0 -x {0.1 4194304.0 190 ------- SRM_DATA} + -t 7.36 -s 0 -d 1 -p cbr -e 800 -c 0 -i 245 -a 0 -x {0.1 4194304.0 193 ------- SRM_DATA} - -t 7.36 -s 0 -d 1 -p cbr -e 800 -c 0 -i 245 -a 0 -x {0.1 4194304.0 193 ------- SRM_DATA} h -t 7.36 -s 0 -d 1 -p cbr -e 800 -c 0 -i 245 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.3628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 243 -a 0 -x {0.1 4194304.0 191 ------- SRM_DATA} + -t 7.3628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 243 -a 0 -x {0.1 4194304.0 191 ------- SRM_DATA} - -t 7.3628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 243 -a 0 -x {0.1 4194304.0 191 ------- SRM_DATA} h -t 7.3628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 243 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.3628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 243 -a 0 -x {0.1 4194304.0 191 ------- SRM_DATA} - -t 7.3628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 243 -a 0 -x {0.1 4194304.0 191 ------- SRM_DATA} h -t 7.3628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 243 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.36853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 244 -a 0 -x {0.1 4194304.0 192 ------- SRM_DATA} + -t 7.36853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 244 -a 0 -x {0.1 4194304.0 192 ------- SRM_DATA} - -t 7.36853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 244 -a 0 -x {0.1 4194304.0 192 ------- SRM_DATA} h -t 7.36853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 244 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.37427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 245 -a 0 -x {0.1 4194304.0 193 ------- SRM_DATA} + -t 7.37427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 245 -a 0 -x {0.1 4194304.0 193 ------- SRM_DATA} - -t 7.37427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 245 -a 0 -x {0.1 4194304.0 193 ------- SRM_DATA} h -t 7.37427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 245 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.37707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 243 -a 0 -x {0.1 4194304.0 191 ------- SRM_DATA} r -t 7.37707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 243 -a 0 -x {0.1 4194304.0 191 ------- SRM_DATA} + -t 7.38 -s 0 -d 1 -p cbr -e 800 -c 0 -i 246 -a 0 -x {0.1 4194304.0 194 ------- SRM_DATA} - -t 7.38 -s 0 -d 1 -p cbr -e 800 -c 0 -i 246 -a 0 -x {0.1 4194304.0 194 ------- SRM_DATA} h -t 7.38 -s 0 -d 1 -p cbr -e 800 -c 0 -i 246 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.3828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 244 -a 0 -x {0.1 4194304.0 192 ------- SRM_DATA} + -t 7.3828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 244 -a 0 -x {0.1 4194304.0 192 ------- SRM_DATA} - -t 7.3828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 244 -a 0 -x {0.1 4194304.0 192 ------- SRM_DATA} h -t 7.3828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 244 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.3828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 244 -a 0 -x {0.1 4194304.0 192 ------- SRM_DATA} - -t 7.3828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 244 -a 0 -x {0.1 4194304.0 192 ------- SRM_DATA} h -t 7.3828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 244 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.38853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 245 -a 0 -x {0.1 4194304.0 193 ------- SRM_DATA} + -t 7.38853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 245 -a 0 -x {0.1 4194304.0 193 ------- SRM_DATA} - -t 7.38853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 245 -a 0 -x {0.1 4194304.0 193 ------- SRM_DATA} h -t 7.38853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 245 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.39427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 246 -a 0 -x {0.1 4194304.0 194 ------- SRM_DATA} + -t 7.39427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 246 -a 0 -x {0.1 4194304.0 194 ------- SRM_DATA} - -t 7.39427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 246 -a 0 -x {0.1 4194304.0 194 ------- SRM_DATA} h -t 7.39427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 246 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.39707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 244 -a 0 -x {0.1 4194304.0 192 ------- SRM_DATA} r -t 7.39707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 244 -a 0 -x {0.1 4194304.0 192 ------- SRM_DATA} + -t 7.4 -s 0 -d 1 -p cbr -e 800 -c 0 -i 247 -a 0 -x {0.1 4194304.0 195 ------- SRM_DATA} - -t 7.4 -s 0 -d 1 -p cbr -e 800 -c 0 -i 247 -a 0 -x {0.1 4194304.0 195 ------- SRM_DATA} h -t 7.4 -s 0 -d 1 -p cbr -e 800 -c 0 -i 247 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.4028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 245 -a 0 -x {0.1 4194304.0 193 ------- SRM_DATA} + -t 7.4028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 245 -a 0 -x {0.1 4194304.0 193 ------- SRM_DATA} - -t 7.4028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 245 -a 0 -x {0.1 4194304.0 193 ------- SRM_DATA} h -t 7.4028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 245 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.4028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 245 -a 0 -x {0.1 4194304.0 193 ------- SRM_DATA} - -t 7.4028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 245 -a 0 -x {0.1 4194304.0 193 ------- SRM_DATA} h -t 7.4028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 245 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.40853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 246 -a 0 -x {0.1 4194304.0 194 ------- SRM_DATA} + -t 7.40853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 246 -a 0 -x {0.1 4194304.0 194 ------- SRM_DATA} - -t 7.40853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 246 -a 0 -x {0.1 4194304.0 194 ------- SRM_DATA} h -t 7.40853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 246 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.41427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 247 -a 0 -x {0.1 4194304.0 195 ------- SRM_DATA} + -t 7.41427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 247 -a 0 -x {0.1 4194304.0 195 ------- SRM_DATA} - -t 7.41427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 247 -a 0 -x {0.1 4194304.0 195 ------- SRM_DATA} h -t 7.41427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 247 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.41707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 245 -a 0 -x {0.1 4194304.0 193 ------- SRM_DATA} r -t 7.41707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 245 -a 0 -x {0.1 4194304.0 193 ------- SRM_DATA} + -t 7.42 -s 0 -d 1 -p cbr -e 800 -c 0 -i 248 -a 0 -x {0.1 4194304.0 196 ------- SRM_DATA} - -t 7.42 -s 0 -d 1 -p cbr -e 800 -c 0 -i 248 -a 0 -x {0.1 4194304.0 196 ------- SRM_DATA} h -t 7.42 -s 0 -d 1 -p cbr -e 800 -c 0 -i 248 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.4228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 246 -a 0 -x {0.1 4194304.0 194 ------- SRM_DATA} + -t 7.4228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 246 -a 0 -x {0.1 4194304.0 194 ------- SRM_DATA} - -t 7.4228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 246 -a 0 -x {0.1 4194304.0 194 ------- SRM_DATA} h -t 7.4228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 246 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.4228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 246 -a 0 -x {0.1 4194304.0 194 ------- SRM_DATA} - -t 7.4228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 246 -a 0 -x {0.1 4194304.0 194 ------- SRM_DATA} h -t 7.4228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 246 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.42853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 247 -a 0 -x {0.1 4194304.0 195 ------- SRM_DATA} + -t 7.42853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 247 -a 0 -x {0.1 4194304.0 195 ------- SRM_DATA} - -t 7.42853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 247 -a 0 -x {0.1 4194304.0 195 ------- SRM_DATA} h -t 7.42853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 247 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.43427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 248 -a 0 -x {0.1 4194304.0 196 ------- SRM_DATA} + -t 7.43427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 248 -a 0 -x {0.1 4194304.0 196 ------- SRM_DATA} - -t 7.43427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 248 -a 0 -x {0.1 4194304.0 196 ------- SRM_DATA} h -t 7.43427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 248 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.43707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 246 -a 0 -x {0.1 4194304.0 194 ------- SRM_DATA} r -t 7.43707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 246 -a 0 -x {0.1 4194304.0 194 ------- SRM_DATA} + -t 7.44 -s 0 -d 1 -p cbr -e 800 -c 0 -i 249 -a 0 -x {0.1 4194304.0 197 ------- SRM_DATA} - -t 7.44 -s 0 -d 1 -p cbr -e 800 -c 0 -i 249 -a 0 -x {0.1 4194304.0 197 ------- SRM_DATA} h -t 7.44 -s 0 -d 1 -p cbr -e 800 -c 0 -i 249 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.4428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 247 -a 0 -x {0.1 4194304.0 195 ------- SRM_DATA} + -t 7.4428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 247 -a 0 -x {0.1 4194304.0 195 ------- SRM_DATA} - -t 7.4428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 247 -a 0 -x {0.1 4194304.0 195 ------- SRM_DATA} h -t 7.4428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 247 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.4428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 247 -a 0 -x {0.1 4194304.0 195 ------- SRM_DATA} - -t 7.4428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 247 -a 0 -x {0.1 4194304.0 195 ------- SRM_DATA} h -t 7.4428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 247 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.44853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 248 -a 0 -x {0.1 4194304.0 196 ------- SRM_DATA} + -t 7.44853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 248 -a 0 -x {0.1 4194304.0 196 ------- SRM_DATA} - -t 7.44853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 248 -a 0 -x {0.1 4194304.0 196 ------- SRM_DATA} h -t 7.44853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 248 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.45427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 249 -a 0 -x {0.1 4194304.0 197 ------- SRM_DATA} + -t 7.45427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 249 -a 0 -x {0.1 4194304.0 197 ------- SRM_DATA} - -t 7.45427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 249 -a 0 -x {0.1 4194304.0 197 ------- SRM_DATA} h -t 7.45427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 249 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.45707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 247 -a 0 -x {0.1 4194304.0 195 ------- SRM_DATA} r -t 7.45707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 247 -a 0 -x {0.1 4194304.0 195 ------- SRM_DATA} + -t 7.46 -s 0 -d 1 -p cbr -e 800 -c 0 -i 250 -a 0 -x {0.1 4194304.0 198 ------- SRM_DATA} - -t 7.46 -s 0 -d 1 -p cbr -e 800 -c 0 -i 250 -a 0 -x {0.1 4194304.0 198 ------- SRM_DATA} h -t 7.46 -s 0 -d 1 -p cbr -e 800 -c 0 -i 250 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.4628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 248 -a 0 -x {0.1 4194304.0 196 ------- SRM_DATA} + -t 7.4628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 248 -a 0 -x {0.1 4194304.0 196 ------- SRM_DATA} - -t 7.4628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 248 -a 0 -x {0.1 4194304.0 196 ------- SRM_DATA} h -t 7.4628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 248 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.4628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 248 -a 0 -x {0.1 4194304.0 196 ------- SRM_DATA} - -t 7.4628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 248 -a 0 -x {0.1 4194304.0 196 ------- SRM_DATA} h -t 7.4628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 248 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.46853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 249 -a 0 -x {0.1 4194304.0 197 ------- SRM_DATA} + -t 7.46853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 249 -a 0 -x {0.1 4194304.0 197 ------- SRM_DATA} - -t 7.46853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 249 -a 0 -x {0.1 4194304.0 197 ------- SRM_DATA} h -t 7.46853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 249 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.47427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 250 -a 0 -x {0.1 4194304.0 198 ------- SRM_DATA} + -t 7.47427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 250 -a 0 -x {0.1 4194304.0 198 ------- SRM_DATA} - -t 7.47427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 250 -a 0 -x {0.1 4194304.0 198 ------- SRM_DATA} h -t 7.47427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 250 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.47707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 248 -a 0 -x {0.1 4194304.0 196 ------- SRM_DATA} r -t 7.47707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 248 -a 0 -x {0.1 4194304.0 196 ------- SRM_DATA} + -t 7.48 -s 0 -d 1 -p cbr -e 800 -c 0 -i 251 -a 0 -x {0.1 4194304.0 199 ------- SRM_DATA} - -t 7.48 -s 0 -d 1 -p cbr -e 800 -c 0 -i 251 -a 0 -x {0.1 4194304.0 199 ------- SRM_DATA} h -t 7.48 -s 0 -d 1 -p cbr -e 800 -c 0 -i 251 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.4828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 249 -a 0 -x {0.1 4194304.0 197 ------- SRM_DATA} + -t 7.4828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 249 -a 0 -x {0.1 4194304.0 197 ------- SRM_DATA} - -t 7.4828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 249 -a 0 -x {0.1 4194304.0 197 ------- SRM_DATA} h -t 7.4828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 249 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.4828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 249 -a 0 -x {0.1 4194304.0 197 ------- SRM_DATA} - -t 7.4828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 249 -a 0 -x {0.1 4194304.0 197 ------- SRM_DATA} h -t 7.4828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 249 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.48853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 250 -a 0 -x {0.1 4194304.0 198 ------- SRM_DATA} + -t 7.48853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 250 -a 0 -x {0.1 4194304.0 198 ------- SRM_DATA} - -t 7.48853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 250 -a 0 -x {0.1 4194304.0 198 ------- SRM_DATA} h -t 7.48853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 250 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.49427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 251 -a 0 -x {0.1 4194304.0 199 ------- SRM_DATA} + -t 7.49427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 251 -a 0 -x {0.1 4194304.0 199 ------- SRM_DATA} - -t 7.49427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 251 -a 0 -x {0.1 4194304.0 199 ------- SRM_DATA} h -t 7.49427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 251 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.49707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 249 -a 0 -x {0.1 4194304.0 197 ------- SRM_DATA} r -t 7.49707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 249 -a 0 -x {0.1 4194304.0 197 ------- SRM_DATA} + -t 7.5 -s 0 -d 1 -p cbr -e 800 -c 0 -i 252 -a 0 -x {0.1 4194304.0 200 ------- SRM_DATA} - -t 7.5 -s 0 -d 1 -p cbr -e 800 -c 0 -i 252 -a 0 -x {0.1 4194304.0 200 ------- SRM_DATA} h -t 7.5 -s 0 -d 1 -p cbr -e 800 -c 0 -i 252 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.5028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 250 -a 0 -x {0.1 4194304.0 198 ------- SRM_DATA} + -t 7.5028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 250 -a 0 -x {0.1 4194304.0 198 ------- SRM_DATA} - -t 7.5028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 250 -a 0 -x {0.1 4194304.0 198 ------- SRM_DATA} h -t 7.5028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 250 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.5028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 250 -a 0 -x {0.1 4194304.0 198 ------- SRM_DATA} - -t 7.5028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 250 -a 0 -x {0.1 4194304.0 198 ------- SRM_DATA} h -t 7.5028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 250 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.50853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 251 -a 0 -x {0.1 4194304.0 199 ------- SRM_DATA} + -t 7.50853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 251 -a 0 -x {0.1 4194304.0 199 ------- SRM_DATA} - -t 7.50853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 251 -a 0 -x {0.1 4194304.0 199 ------- SRM_DATA} h -t 7.50853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 251 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.51427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 252 -a 0 -x {0.1 4194304.0 200 ------- SRM_DATA} + -t 7.51427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 252 -a 0 -x {0.1 4194304.0 200 ------- SRM_DATA} - -t 7.51427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 252 -a 0 -x {0.1 4194304.0 200 ------- SRM_DATA} h -t 7.51427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 252 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.51707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 250 -a 0 -x {0.1 4194304.0 198 ------- SRM_DATA} r -t 7.51707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 250 -a 0 -x {0.1 4194304.0 198 ------- SRM_DATA} + -t 7.52 -s 0 -d 1 -p cbr -e 800 -c 0 -i 253 -a 0 -x {0.1 4194304.0 201 ------- SRM_DATA} - -t 7.52 -s 0 -d 1 -p cbr -e 800 -c 0 -i 253 -a 0 -x {0.1 4194304.0 201 ------- SRM_DATA} h -t 7.52 -s 0 -d 1 -p cbr -e 800 -c 0 -i 253 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.5228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 251 -a 0 -x {0.1 4194304.0 199 ------- SRM_DATA} + -t 7.5228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 251 -a 0 -x {0.1 4194304.0 199 ------- SRM_DATA} - -t 7.5228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 251 -a 0 -x {0.1 4194304.0 199 ------- SRM_DATA} h -t 7.5228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 251 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.5228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 251 -a 0 -x {0.1 4194304.0 199 ------- SRM_DATA} - -t 7.5228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 251 -a 0 -x {0.1 4194304.0 199 ------- SRM_DATA} h -t 7.5228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 251 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.52853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 252 -a 0 -x {0.1 4194304.0 200 ------- SRM_DATA} + -t 7.52853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 252 -a 0 -x {0.1 4194304.0 200 ------- SRM_DATA} - -t 7.52853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 252 -a 0 -x {0.1 4194304.0 200 ------- SRM_DATA} h -t 7.52853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 252 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.53427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 253 -a 0 -x {0.1 4194304.0 201 ------- SRM_DATA} + -t 7.53427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 253 -a 0 -x {0.1 4194304.0 201 ------- SRM_DATA} - -t 7.53427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 253 -a 0 -x {0.1 4194304.0 201 ------- SRM_DATA} h -t 7.53427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 253 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.53707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 251 -a 0 -x {0.1 4194304.0 199 ------- SRM_DATA} r -t 7.53707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 251 -a 0 -x {0.1 4194304.0 199 ------- SRM_DATA} + -t 7.54 -s 0 -d 1 -p cbr -e 800 -c 0 -i 254 -a 0 -x {0.1 4194304.0 202 ------- SRM_DATA} - -t 7.54 -s 0 -d 1 -p cbr -e 800 -c 0 -i 254 -a 0 -x {0.1 4194304.0 202 ------- SRM_DATA} h -t 7.54 -s 0 -d 1 -p cbr -e 800 -c 0 -i 254 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.5428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 252 -a 0 -x {0.1 4194304.0 200 ------- SRM_DATA} + -t 7.5428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 252 -a 0 -x {0.1 4194304.0 200 ------- SRM_DATA} - -t 7.5428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 252 -a 0 -x {0.1 4194304.0 200 ------- SRM_DATA} h -t 7.5428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 252 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.5428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 252 -a 0 -x {0.1 4194304.0 200 ------- SRM_DATA} - -t 7.5428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 252 -a 0 -x {0.1 4194304.0 200 ------- SRM_DATA} h -t 7.5428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 252 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.54853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 253 -a 0 -x {0.1 4194304.0 201 ------- SRM_DATA} + -t 7.54853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 253 -a 0 -x {0.1 4194304.0 201 ------- SRM_DATA} - -t 7.54853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 253 -a 0 -x {0.1 4194304.0 201 ------- SRM_DATA} h -t 7.54853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 253 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.55427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 254 -a 0 -x {0.1 4194304.0 202 ------- SRM_DATA} + -t 7.55427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 254 -a 0 -x {0.1 4194304.0 202 ------- SRM_DATA} - -t 7.55427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 254 -a 0 -x {0.1 4194304.0 202 ------- SRM_DATA} h -t 7.55427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 254 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.55707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 252 -a 0 -x {0.1 4194304.0 200 ------- SRM_DATA} r -t 7.55707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 252 -a 0 -x {0.1 4194304.0 200 ------- SRM_DATA} + -t 7.56 -s 0 -d 1 -p cbr -e 800 -c 0 -i 255 -a 0 -x {0.1 4194304.0 203 ------- SRM_DATA} - -t 7.56 -s 0 -d 1 -p cbr -e 800 -c 0 -i 255 -a 0 -x {0.1 4194304.0 203 ------- SRM_DATA} h -t 7.56 -s 0 -d 1 -p cbr -e 800 -c 0 -i 255 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.5628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 253 -a 0 -x {0.1 4194304.0 201 ------- SRM_DATA} + -t 7.5628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 253 -a 0 -x {0.1 4194304.0 201 ------- SRM_DATA} - -t 7.5628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 253 -a 0 -x {0.1 4194304.0 201 ------- SRM_DATA} h -t 7.5628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 253 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.5628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 253 -a 0 -x {0.1 4194304.0 201 ------- SRM_DATA} - -t 7.5628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 253 -a 0 -x {0.1 4194304.0 201 ------- SRM_DATA} h -t 7.5628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 253 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.56853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 254 -a 0 -x {0.1 4194304.0 202 ------- SRM_DATA} + -t 7.56853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 254 -a 0 -x {0.1 4194304.0 202 ------- SRM_DATA} - -t 7.56853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 254 -a 0 -x {0.1 4194304.0 202 ------- SRM_DATA} h -t 7.56853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 254 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.57427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 255 -a 0 -x {0.1 4194304.0 203 ------- SRM_DATA} + -t 7.57427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 255 -a 0 -x {0.1 4194304.0 203 ------- SRM_DATA} - -t 7.57427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 255 -a 0 -x {0.1 4194304.0 203 ------- SRM_DATA} h -t 7.57427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 255 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.57707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 253 -a 0 -x {0.1 4194304.0 201 ------- SRM_DATA} r -t 7.57707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 253 -a 0 -x {0.1 4194304.0 201 ------- SRM_DATA} + -t 7.58 -s 0 -d 1 -p cbr -e 800 -c 0 -i 256 -a 0 -x {0.1 4194304.0 204 ------- SRM_DATA} - -t 7.58 -s 0 -d 1 -p cbr -e 800 -c 0 -i 256 -a 0 -x {0.1 4194304.0 204 ------- SRM_DATA} h -t 7.58 -s 0 -d 1 -p cbr -e 800 -c 0 -i 256 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.5828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 254 -a 0 -x {0.1 4194304.0 202 ------- SRM_DATA} + -t 7.5828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 254 -a 0 -x {0.1 4194304.0 202 ------- SRM_DATA} - -t 7.5828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 254 -a 0 -x {0.1 4194304.0 202 ------- SRM_DATA} h -t 7.5828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 254 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.5828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 254 -a 0 -x {0.1 4194304.0 202 ------- SRM_DATA} - -t 7.5828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 254 -a 0 -x {0.1 4194304.0 202 ------- SRM_DATA} h -t 7.5828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 254 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.58853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 255 -a 0 -x {0.1 4194304.0 203 ------- SRM_DATA} + -t 7.58853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 255 -a 0 -x {0.1 4194304.0 203 ------- SRM_DATA} - -t 7.58853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 255 -a 0 -x {0.1 4194304.0 203 ------- SRM_DATA} h -t 7.58853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 255 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} l -t 7.5899999999999999 -s 1 -d 0 -S DOWN v -t 7.5899999999999999 link-down 7.5899999999999999 1 0 d -t 7.59 -s 0 -d 1 -p cbr -e 800 -c 0 -i 256 -a 0 -x {0.1 4194304.0 204 ------- SRM_DATA} l -t 7.5899999999999999 -s 0 -d 1 -S DOWN v -t 7.5899999999999999 link-down 7.5899999999999999 0 1 r -t 7.59707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 254 -a 0 -x {0.1 4194304.0 202 ------- SRM_DATA} r -t 7.59707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 254 -a 0 -x {0.1 4194304.0 202 ------- SRM_DATA} r -t 7.6028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 255 -a 0 -x {0.1 4194304.0 203 ------- SRM_DATA} + -t 7.6028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 255 -a 0 -x {0.1 4194304.0 203 ------- SRM_DATA} - -t 7.6028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 255 -a 0 -x {0.1 4194304.0 203 ------- SRM_DATA} h -t 7.6028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 255 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.6028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 255 -a 0 -x {0.1 4194304.0 203 ------- SRM_DATA} - -t 7.6028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 255 -a 0 -x {0.1 4194304.0 203 ------- SRM_DATA} h -t 7.6028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 255 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} l -t 7.6099999999999994 -s 1 -d 0 -S UP v -t 7.6099999999999994 link-up 7.6099999999999994 1 0 l -t 7.6099999999999994 -s 0 -d 1 -S UP v -t 7.6099999999999994 link-up 7.6099999999999994 0 1 r -t 7.61707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 255 -a 0 -x {0.1 4194304.0 203 ------- SRM_DATA} r -t 7.61707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 255 -a 0 -x {0.1 4194304.0 203 ------- SRM_DATA} + -t 7.62 -s 0 -d 1 -p cbr -e 800 -c 0 -i 258 -a 0 -x {0.1 4194304.0 206 ------- SRM_DATA} - -t 7.62 -s 0 -d 1 -p cbr -e 800 -c 0 -i 258 -a 0 -x {0.1 4194304.0 206 ------- SRM_DATA} h -t 7.62 -s 0 -d 1 -p cbr -e 800 -c 0 -i 258 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.63427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 258 -a 0 -x {0.1 4194304.0 206 ------- SRM_DATA} f -t 7.63426666666658971 -s 1 -d 4194304 -n C2_ -a srm(1) -v 1.2999999999999994 -o 1.3999999999999995 -T v f -t 7.63426666666658971 -s 1 -d 4194304 -n C2_ -a srm(1) -v 1.1999999999999993 -o 1.2999999999999994 -T v f -t 7.63426666666658971 -s 1 -d 4194304 -n C1_ -a srm(1) -v 0.99999999999999911 -o 1.0499999999999992 -T v + -t 7.63427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 258 -a 0 -x {0.1 4194304.0 206 ------- SRM_DATA} - -t 7.63427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 258 -a 0 -x {0.1 4194304.0 206 ------- SRM_DATA} h -t 7.63427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 258 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.64 -s 0 -d 1 -p cbr -e 800 -c 0 -i 259 -a 0 -x {0.1 4194304.0 207 ------- SRM_DATA} - -t 7.64 -s 0 -d 1 -p cbr -e 800 -c 0 -i 259 -a 0 -x {0.1 4194304.0 207 ------- SRM_DATA} h -t 7.64 -s 0 -d 1 -p cbr -e 800 -c 0 -i 259 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.64853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 258 -a 0 -x {0.1 4194304.0 206 ------- SRM_DATA} f -t 7.64853333333325658 -s 2 -d 4194304 -n C1_ -a srm(2) -v 1.6499999999999997 -o 1.6999999999999997 -T v f -t 7.64853333333325658 -s 2 -d 4194304 -n C1_ -a srm(2) -v 1.5999999999999996 -o 1.6499999999999997 -T v + -t 7.64853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 258 -a 0 -x {0.1 4194304.0 206 ------- SRM_DATA} - -t 7.64853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 258 -a 0 -x {0.1 4194304.0 206 ------- SRM_DATA} h -t 7.64853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 258 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} f -t 7.65298260610978343 -s 1 -d 4194304 -n C1_ -a srm(1) -v 0.89999999999999913 -o 0.99999999999999911 -T v + -t 7.65298 -s 1 -d 0 -p SRM -e 16 -c 2 -i 260 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 7.65298 -s 1 -d 0 -p SRM -e 16 -c 2 -i 260 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 7.65298 -s 1 -d 0 -p SRM -e 16 -c 2 -i 260 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 7.65298 -s 1 -d 2 -p SRM -e 16 -c 2 -i 260 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 7.65298 -s 1 -d 2 -p SRM -e 16 -c 2 -i 260 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 7.65298 -s 1 -d 2 -p SRM -e 16 -c 2 -i 260 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 7.65427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 259 -a 0 -x {0.1 4194304.0 207 ------- SRM_DATA} + -t 7.65427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 259 -a 0 -x {0.1 4194304.0 207 ------- SRM_DATA} - -t 7.65427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 259 -a 0 -x {0.1 4194304.0 207 ------- SRM_DATA} h -t 7.65427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 259 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} f -t 7.65739908920488066 -s 1 -d 4194304 -n C1_ -a srm(1) -v 0.79999999999999916 -o 0.89999999999999913 -T v + -t 7.6574 -s 1 -d 0 -p SRM -e 16 -c 2 -i 261 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 7.6574 -s 1 -d 0 -p SRM -e 16 -c 2 -i 261 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 7.6574 -s 1 -d 0 -p SRM -e 16 -c 2 -i 261 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 7.6574 -s 1 -d 2 -p SRM -e 16 -c 2 -i 261 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 7.65853 -s 1 -d 2 -p SRM -e 16 -c 2 -i 261 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 7.65853 -s 1 -d 2 -p SRM -e 16 -c 2 -i 261 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 7.66 -s 0 -d 1 -p cbr -e 800 -c 0 -i 262 -a 0 -x {0.1 4194304.0 208 ------- SRM_DATA} - -t 7.66 -s 0 -d 1 -p cbr -e 800 -c 0 -i 262 -a 0 -x {0.1 4194304.0 208 ------- SRM_DATA} h -t 7.66 -s 0 -d 1 -p cbr -e 800 -c 0 -i 262 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.6628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 258 -a 0 -x {0.1 4194304.0 206 ------- SRM_DATA} f -t 7.66279999999992345 -s 3 -d 4194304 -n C1_ -a srm(3) -v 1.6499999999999997 -o 1.6999999999999997 -T v f -t 7.66279999999992345 -s 3 -d 4194304 -n C1_ -a srm(3) -v 1.5999999999999996 -o 1.6499999999999997 -T v + -t 7.6628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 258 -a 0 -x {0.1 4194304.0 206 ------- SRM_DATA} - -t 7.6628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 258 -a 0 -x {0.1 4194304.0 206 ------- SRM_DATA} h -t 7.6628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 258 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.6628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 258 -a 0 -x {0.1 4194304.0 206 ------- SRM_DATA} - -t 7.6628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 258 -a 0 -x {0.1 4194304.0 206 ------- SRM_DATA} h -t 7.6628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 258 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.66307 -s 1 -d 0 -p SRM -e 16 -c 2 -i 260 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 7.66307 -s 1 -d 2 -p SRM -e 16 -c 2 -i 260 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 7.66307 -s 2 -d 3 -p SRM -e 16 -c 2 -i 260 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 7.66307 -s 2 -d 3 -p SRM -e 16 -c 2 -i 260 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 7.66307 -s 2 -d 3 -p SRM -e 16 -c 2 -i 260 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 7.66748 -s 1 -d 0 -p SRM -e 16 -c 2 -i 261 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 7.66853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 259 -a 0 -x {0.1 4194304.0 207 ------- SRM_DATA} + -t 7.66853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 259 -a 0 -x {0.1 4194304.0 207 ------- SRM_DATA} - -t 7.66853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 259 -a 0 -x {0.1 4194304.0 207 ------- SRM_DATA} h -t 7.66853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 259 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.66862 -s 1 -d 2 -p SRM -e 16 -c 2 -i 261 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 7.66862 -s 2 -d 3 -p SRM -e 16 -c 2 -i 261 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 7.6728 -s 2 -d 3 -p SRM -e 16 -c 2 -i 261 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 7.6728 -s 2 -d 3 -p SRM -e 16 -c 2 -i 261 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 7.67315 -s 2 -d 3 -p SRM -e 16 -c 2 -i 260 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 7.67315 -s 3 -d 4 -p SRM -e 16 -c 2 -i 260 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 7.67315 -s 3 -d 4 -p SRM -e 16 -c 2 -i 260 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 7.67315 -s 3 -d 4 -p SRM -e 16 -c 2 -i 260 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 7.67315 -s 3 -d 5 -p SRM -e 16 -c 2 -i 260 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 7.67315 -s 3 -d 5 -p SRM -e 16 -c 2 -i 260 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 7.67315 -s 3 -d 5 -p SRM -e 16 -c 2 -i 260 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 7.67394 -s 0 -d 1 -p SRM -e 816 -c 1 -i 263 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 7.67394 -s 0 -d 1 -p SRM -e 816 -c 1 -i 263 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 7.67394 -s 0 -d 1 -p SRM -e 816 -c 1 -i 263 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 7.67427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 262 -a 0 -x {0.1 4194304.0 208 ------- SRM_DATA} + -t 7.67427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 262 -a 0 -x {0.1 4194304.0 208 ------- SRM_DATA} - -t 7.67427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 262 -a 0 -x {0.1 4194304.0 208 ------- SRM_DATA} h -t 7.67427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 262 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.67707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 258 -a 0 -x {0.1 4194304.0 206 ------- SRM_DATA} f -t 7.67706666666659032 -s 4 -d 4194304 -n C1_ -a srm(4) -v 1.6499999999999997 -o 1.6999999999999997 -T v f -t 7.67706666666659032 -s 4 -d 4194304 -n C1_ -a srm(4) -v 1.5999999999999996 -o 1.6499999999999997 -T v r -t 7.67707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 258 -a 0 -x {0.1 4194304.0 206 ------- SRM_DATA} f -t 7.67706666666659032 -s 5 -d 4194304 -n C1_ -a srm(5) -v 1.6499999999999997 -o 1.6999999999999997 -T v f -t 7.67706666666659032 -s 5 -d 4194304 -n C1_ -a srm(5) -v 1.5999999999999996 -o 1.6499999999999997 -T v + -t 7.67889 -s 0 -d 1 -p SRM -e 816 -c 1 -i 264 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 7.67889 -s 0 -d 1 -p SRM -e 816 -c 1 -i 264 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 7.67889 -s 0 -d 1 -p SRM -e 816 -c 1 -i 264 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 7.68 -s 0 -d 1 -p cbr -e 800 -c 0 -i 265 -a 0 -x {0.1 4194304.0 209 ------- SRM_DATA} r -t 7.6828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 259 -a 0 -x {0.1 4194304.0 207 ------- SRM_DATA} + -t 7.6828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 259 -a 0 -x {0.1 4194304.0 207 ------- SRM_DATA} - -t 7.6828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 259 -a 0 -x {0.1 4194304.0 207 ------- SRM_DATA} h -t 7.6828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 259 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.6828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 259 -a 0 -x {0.1 4194304.0 207 ------- SRM_DATA} - -t 7.6828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 259 -a 0 -x {0.1 4194304.0 207 ------- SRM_DATA} h -t 7.6828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 259 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.68289 -s 2 -d 3 -p SRM -e 16 -c 2 -i 261 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 7.68289 -s 3 -d 4 -p SRM -e 16 -c 2 -i 261 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 7.68289 -s 3 -d 5 -p SRM -e 16 -c 2 -i 261 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 7.68324 -s 0 -d 1 -p cbr -e 800 -c 0 -i 265 -a 0 -x {0.1 4194304.0 209 ------- SRM_DATA} h -t 7.68324 -s 0 -d 1 -p cbr -e 800 -c 0 -i 265 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.68324 -s 3 -d 4 -p SRM -e 16 -c 2 -i 260 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 7.68324 -s 3 -d 5 -p SRM -e 16 -c 2 -i 260 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 7.68707 -s 3 -d 4 -p SRM -e 16 -c 2 -i 261 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 7.68707 -s 3 -d 4 -p SRM -e 16 -c 2 -i 261 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 7.68707 -s 3 -d 5 -p SRM -e 16 -c 2 -i 261 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 7.68707 -s 3 -d 5 -p SRM -e 16 -c 2 -i 261 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 7.68829 -s 0 -d 1 -p SRM -e 816 -c 1 -i 263 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 7.68829 -s 1 -d 2 -p SRM -e 816 -c 1 -i 263 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 7.68829 -s 1 -d 2 -p SRM -e 816 -c 1 -i 263 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 7.68829 -s 1 -d 2 -p SRM -e 816 -c 1 -i 263 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 7.68853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 262 -a 0 -x {0.1 4194304.0 208 ------- SRM_DATA} + -t 7.68853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 262 -a 0 -x {0.1 4194304.0 208 ------- SRM_DATA} - -t 7.68853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 262 -a 0 -x {0.1 4194304.0 208 ------- SRM_DATA} h -t 7.68853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 262 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.69324 -s 0 -d 1 -p SRM -e 816 -c 1 -i 264 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 7.69324 -s 1 -d 2 -p SRM -e 816 -c 1 -i 264 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 7.69324 -s 1 -d 2 -p SRM -e 816 -c 1 -i 264 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 7.69324 -s 1 -d 2 -p SRM -e 816 -c 1 -i 264 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 7.69707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 259 -a 0 -x {0.1 4194304.0 207 ------- SRM_DATA} r -t 7.69707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 259 -a 0 -x {0.1 4194304.0 207 ------- SRM_DATA} r -t 7.69715 -s 3 -d 4 -p SRM -e 16 -c 2 -i 261 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 7.69715 -s 3 -d 5 -p SRM -e 16 -c 2 -i 261 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 7.6975 -s 0 -d 1 -p cbr -e 800 -c 0 -i 265 -a 0 -x {0.1 4194304.0 209 ------- SRM_DATA} + -t 7.6975 -s 1 -d 2 -p cbr -e 800 -c 0 -i 265 -a 0 -x {0.1 4194304.0 209 ------- SRM_DATA} - -t 7.69759 -s 1 -d 2 -p cbr -e 800 -c 0 -i 265 -a 0 -x {0.1 4194304.0 209 ------- SRM_DATA} h -t 7.69759 -s 1 -d 2 -p cbr -e 800 -c 0 -i 265 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.7 -s 0 -d 1 -p cbr -e 800 -c 0 -i 266 -a 0 -x {0.1 4194304.0 210 ------- SRM_DATA} - -t 7.7 -s 0 -d 1 -p cbr -e 800 -c 0 -i 266 -a 0 -x {0.1 4194304.0 210 ------- SRM_DATA} h -t 7.7 -s 0 -d 1 -p cbr -e 800 -c 0 -i 266 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.70264 -s 1 -d 2 -p SRM -e 816 -c 1 -i 263 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 7.70264 -s 2 -d 3 -p SRM -e 816 -c 1 -i 263 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 7.70264 -s 2 -d 3 -p SRM -e 816 -c 1 -i 263 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 7.70264 -s 2 -d 3 -p SRM -e 816 -c 1 -i 263 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 7.7028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 262 -a 0 -x {0.1 4194304.0 208 ------- SRM_DATA} + -t 7.7028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 262 -a 0 -x {0.1 4194304.0 208 ------- SRM_DATA} - -t 7.7028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 262 -a 0 -x {0.1 4194304.0 208 ------- SRM_DATA} h -t 7.7028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 262 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.7028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 262 -a 0 -x {0.1 4194304.0 208 ------- SRM_DATA} - -t 7.7028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 262 -a 0 -x {0.1 4194304.0 208 ------- SRM_DATA} h -t 7.7028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 262 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.70759 -s 1 -d 2 -p SRM -e 816 -c 1 -i 264 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 7.70759 -s 2 -d 3 -p SRM -e 816 -c 1 -i 264 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 7.70759 -s 2 -d 3 -p SRM -e 816 -c 1 -i 264 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 7.70759 -s 2 -d 3 -p SRM -e 816 -c 1 -i 264 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 7.71186 -s 1 -d 2 -p cbr -e 800 -c 0 -i 265 -a 0 -x {0.1 4194304.0 209 ------- SRM_DATA} + -t 7.71186 -s 2 -d 3 -p cbr -e 800 -c 0 -i 265 -a 0 -x {0.1 4194304.0 209 ------- SRM_DATA} - -t 7.71194 -s 2 -d 3 -p cbr -e 800 -c 0 -i 265 -a 0 -x {0.1 4194304.0 209 ------- SRM_DATA} h -t 7.71194 -s 2 -d 3 -p cbr -e 800 -c 0 -i 265 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.71427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 266 -a 0 -x {0.1 4194304.0 210 ------- SRM_DATA} + -t 7.71427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 266 -a 0 -x {0.1 4194304.0 210 ------- SRM_DATA} - -t 7.71427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 266 -a 0 -x {0.1 4194304.0 210 ------- SRM_DATA} h -t 7.71427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 266 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.717 -s 2 -d 3 -p SRM -e 816 -c 1 -i 263 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 7.717 -s 3 -d 4 -p SRM -e 816 -c 1 -i 263 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 7.717 -s 3 -d 4 -p SRM -e 816 -c 1 -i 263 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 7.717 -s 3 -d 4 -p SRM -e 816 -c 1 -i 263 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 7.717 -s 3 -d 5 -p SRM -e 816 -c 1 -i 263 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 7.717 -s 3 -d 5 -p SRM -e 816 -c 1 -i 263 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 7.717 -s 3 -d 5 -p SRM -e 816 -c 1 -i 263 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 7.71707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 262 -a 0 -x {0.1 4194304.0 208 ------- SRM_DATA} r -t 7.71707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 262 -a 0 -x {0.1 4194304.0 208 ------- SRM_DATA} + -t 7.72 -s 0 -d 1 -p cbr -e 800 -c 0 -i 267 -a 0 -x {0.1 4194304.0 211 ------- SRM_DATA} - -t 7.72 -s 0 -d 1 -p cbr -e 800 -c 0 -i 267 -a 0 -x {0.1 4194304.0 211 ------- SRM_DATA} h -t 7.72 -s 0 -d 1 -p cbr -e 800 -c 0 -i 267 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.72194 -s 2 -d 3 -p SRM -e 816 -c 1 -i 264 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 7.72194 -s 3 -d 4 -p SRM -e 816 -c 1 -i 264 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 7.72194 -s 3 -d 4 -p SRM -e 816 -c 1 -i 264 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 7.72194 -s 3 -d 4 -p SRM -e 816 -c 1 -i 264 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 7.72194 -s 3 -d 5 -p SRM -e 816 -c 1 -i 264 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 7.72194 -s 3 -d 5 -p SRM -e 816 -c 1 -i 264 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 7.72194 -s 3 -d 5 -p SRM -e 816 -c 1 -i 264 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 7.72621 -s 2 -d 3 -p cbr -e 800 -c 0 -i 265 -a 0 -x {0.1 4194304.0 209 ------- SRM_DATA} + -t 7.72621 -s 3 -d 4 -p cbr -e 800 -c 0 -i 265 -a 0 -x {0.1 4194304.0 209 ------- SRM_DATA} + -t 7.72621 -s 3 -d 5 -p cbr -e 800 -c 0 -i 265 -a 0 -x {0.1 4194304.0 209 ------- SRM_DATA} - -t 7.72629 -s 3 -d 4 -p cbr -e 800 -c 0 -i 265 -a 0 -x {0.1 4194304.0 209 ------- SRM_DATA} h -t 7.72629 -s 3 -d 4 -p cbr -e 800 -c 0 -i 265 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} - -t 7.72629 -s 3 -d 5 -p cbr -e 800 -c 0 -i 265 -a 0 -x {0.1 4194304.0 209 ------- SRM_DATA} h -t 7.72629 -s 3 -d 5 -p cbr -e 800 -c 0 -i 265 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.72853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 266 -a 0 -x {0.1 4194304.0 210 ------- SRM_DATA} + -t 7.72853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 266 -a 0 -x {0.1 4194304.0 210 ------- SRM_DATA} - -t 7.72853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 266 -a 0 -x {0.1 4194304.0 210 ------- SRM_DATA} h -t 7.72853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 266 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.73135 -s 3 -d 4 -p SRM -e 816 -c 1 -i 263 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 7.73135 -s 3 -d 5 -p SRM -e 816 -c 1 -i 263 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 7.73427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 267 -a 0 -x {0.1 4194304.0 211 ------- SRM_DATA} + -t 7.73427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 267 -a 0 -x {0.1 4194304.0 211 ------- SRM_DATA} - -t 7.73427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 267 -a 0 -x {0.1 4194304.0 211 ------- SRM_DATA} h -t 7.73427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 267 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.73629 -s 3 -d 4 -p SRM -e 816 -c 1 -i 264 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 7.73629 -s 3 -d 5 -p SRM -e 816 -c 1 -i 264 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 7.73742 -s 5 -d 3 -p SRM -e 116 -c 6 -i 268 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} - -t 7.73742 -s 5 -d 3 -p SRM -e 116 -c 6 -i 268 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} h -t 7.73742 -s 5 -d 3 -p SRM -e 116 -c 6 -i 268 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} + -t 7.74 -s 0 -d 1 -p cbr -e 800 -c 0 -i 269 -a 0 -x {0.1 4194304.0 212 ------- SRM_DATA} - -t 7.74 -s 0 -d 1 -p cbr -e 800 -c 0 -i 269 -a 0 -x {0.1 4194304.0 212 ------- SRM_DATA} h -t 7.74 -s 0 -d 1 -p cbr -e 800 -c 0 -i 269 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.74056 -s 3 -d 4 -p cbr -e 800 -c 0 -i 265 -a 0 -x {0.1 4194304.0 209 ------- SRM_DATA} r -t 7.74056 -s 3 -d 5 -p cbr -e 800 -c 0 -i 265 -a 0 -x {0.1 4194304.0 209 ------- SRM_DATA} r -t 7.7428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 266 -a 0 -x {0.1 4194304.0 210 ------- SRM_DATA} + -t 7.7428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 266 -a 0 -x {0.1 4194304.0 210 ------- SRM_DATA} - -t 7.7428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 266 -a 0 -x {0.1 4194304.0 210 ------- SRM_DATA} h -t 7.7428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 266 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.7428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 266 -a 0 -x {0.1 4194304.0 210 ------- SRM_DATA} - -t 7.7428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 266 -a 0 -x {0.1 4194304.0 210 ------- SRM_DATA} h -t 7.7428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 266 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.74804 -s 5 -d 3 -p SRM -e 116 -c 6 -i 268 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} + -t 7.74804 -s 3 -d 2 -p SRM -e 116 -c 6 -i 268 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} - -t 7.74804 -s 3 -d 2 -p SRM -e 116 -c 6 -i 268 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} h -t 7.74804 -s 3 -d 2 -p SRM -e 116 -c 6 -i 268 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} + -t 7.74804 -s 3 -d 4 -p SRM -e 116 -c 6 -i 268 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} - -t 7.74804 -s 3 -d 4 -p SRM -e 116 -c 6 -i 268 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} h -t 7.74804 -s 3 -d 4 -p SRM -e 116 -c 6 -i 268 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} r -t 7.74853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 267 -a 0 -x {0.1 4194304.0 211 ------- SRM_DATA} + -t 7.74853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 267 -a 0 -x {0.1 4194304.0 211 ------- SRM_DATA} - -t 7.74853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 267 -a 0 -x {0.1 4194304.0 211 ------- SRM_DATA} h -t 7.74853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 267 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.75427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 269 -a 0 -x {0.1 4194304.0 212 ------- SRM_DATA} + -t 7.75427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 269 -a 0 -x {0.1 4194304.0 212 ------- SRM_DATA} - -t 7.75427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 269 -a 0 -x {0.1 4194304.0 212 ------- SRM_DATA} h -t 7.75427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 269 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.75707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 266 -a 0 -x {0.1 4194304.0 210 ------- SRM_DATA} r -t 7.75707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 266 -a 0 -x {0.1 4194304.0 210 ------- SRM_DATA} r -t 7.75865 -s 3 -d 2 -p SRM -e 116 -c 6 -i 268 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} + -t 7.75865 -s 2 -d 1 -p SRM -e 116 -c 6 -i 268 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} - -t 7.75865 -s 2 -d 1 -p SRM -e 116 -c 6 -i 268 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} h -t 7.75865 -s 2 -d 1 -p SRM -e 116 -c 6 -i 268 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} r -t 7.75865 -s 3 -d 4 -p SRM -e 116 -c 6 -i 268 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} + -t 7.76 -s 0 -d 1 -p cbr -e 800 -c 0 -i 270 -a 0 -x {0.1 4194304.0 213 ------- SRM_DATA} - -t 7.76 -s 0 -d 1 -p cbr -e 800 -c 0 -i 270 -a 0 -x {0.1 4194304.0 213 ------- SRM_DATA} h -t 7.76 -s 0 -d 1 -p cbr -e 800 -c 0 -i 270 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.7628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 267 -a 0 -x {0.1 4194304.0 211 ------- SRM_DATA} + -t 7.7628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 267 -a 0 -x {0.1 4194304.0 211 ------- SRM_DATA} - -t 7.7628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 267 -a 0 -x {0.1 4194304.0 211 ------- SRM_DATA} h -t 7.7628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 267 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.7628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 267 -a 0 -x {0.1 4194304.0 211 ------- SRM_DATA} - -t 7.7628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 267 -a 0 -x {0.1 4194304.0 211 ------- SRM_DATA} h -t 7.7628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 267 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.76853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 269 -a 0 -x {0.1 4194304.0 212 ------- SRM_DATA} + -t 7.76853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 269 -a 0 -x {0.1 4194304.0 212 ------- SRM_DATA} - -t 7.76853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 269 -a 0 -x {0.1 4194304.0 212 ------- SRM_DATA} h -t 7.76853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 269 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.76927 -s 2 -d 1 -p SRM -e 116 -c 6 -i 268 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} + -t 7.76927 -s 1 -d 0 -p SRM -e 116 -c 6 -i 268 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} - -t 7.76927 -s 1 -d 0 -p SRM -e 116 -c 6 -i 268 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} h -t 7.76927 -s 1 -d 0 -p SRM -e 116 -c 6 -i 268 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} r -t 7.77427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 270 -a 0 -x {0.1 4194304.0 213 ------- SRM_DATA} + -t 7.77427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 270 -a 0 -x {0.1 4194304.0 213 ------- SRM_DATA} - -t 7.77427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 270 -a 0 -x {0.1 4194304.0 213 ------- SRM_DATA} h -t 7.77427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 270 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.77707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 267 -a 0 -x {0.1 4194304.0 211 ------- SRM_DATA} r -t 7.77707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 267 -a 0 -x {0.1 4194304.0 211 ------- SRM_DATA} r -t 7.77989 -s 1 -d 0 -p SRM -e 116 -c 6 -i 268 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} + -t 7.78 -s 0 -d 1 -p cbr -e 800 -c 0 -i 271 -a 0 -x {0.1 4194304.0 214 ------- SRM_DATA} - -t 7.78 -s 0 -d 1 -p cbr -e 800 -c 0 -i 271 -a 0 -x {0.1 4194304.0 214 ------- SRM_DATA} h -t 7.78 -s 0 -d 1 -p cbr -e 800 -c 0 -i 271 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.7828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 269 -a 0 -x {0.1 4194304.0 212 ------- SRM_DATA} + -t 7.7828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 269 -a 0 -x {0.1 4194304.0 212 ------- SRM_DATA} - -t 7.7828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 269 -a 0 -x {0.1 4194304.0 212 ------- SRM_DATA} h -t 7.7828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 269 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.7828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 269 -a 0 -x {0.1 4194304.0 212 ------- SRM_DATA} - -t 7.7828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 269 -a 0 -x {0.1 4194304.0 212 ------- SRM_DATA} h -t 7.7828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 269 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.78853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 270 -a 0 -x {0.1 4194304.0 213 ------- SRM_DATA} + -t 7.78853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 270 -a 0 -x {0.1 4194304.0 213 ------- SRM_DATA} - -t 7.78853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 270 -a 0 -x {0.1 4194304.0 213 ------- SRM_DATA} h -t 7.78853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 270 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.79427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 271 -a 0 -x {0.1 4194304.0 214 ------- SRM_DATA} + -t 7.79427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 271 -a 0 -x {0.1 4194304.0 214 ------- SRM_DATA} - -t 7.79427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 271 -a 0 -x {0.1 4194304.0 214 ------- SRM_DATA} h -t 7.79427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 271 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.79707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 269 -a 0 -x {0.1 4194304.0 212 ------- SRM_DATA} r -t 7.79707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 269 -a 0 -x {0.1 4194304.0 212 ------- SRM_DATA} + -t 7.8 -s 0 -d 1 -p cbr -e 800 -c 0 -i 272 -a 0 -x {0.1 4194304.0 215 ------- SRM_DATA} - -t 7.8 -s 0 -d 1 -p cbr -e 800 -c 0 -i 272 -a 0 -x {0.1 4194304.0 215 ------- SRM_DATA} h -t 7.8 -s 0 -d 1 -p cbr -e 800 -c 0 -i 272 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.8028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 270 -a 0 -x {0.1 4194304.0 213 ------- SRM_DATA} + -t 7.8028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 270 -a 0 -x {0.1 4194304.0 213 ------- SRM_DATA} - -t 7.8028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 270 -a 0 -x {0.1 4194304.0 213 ------- SRM_DATA} h -t 7.8028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 270 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.8028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 270 -a 0 -x {0.1 4194304.0 213 ------- SRM_DATA} - -t 7.8028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 270 -a 0 -x {0.1 4194304.0 213 ------- SRM_DATA} h -t 7.8028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 270 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.80853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 271 -a 0 -x {0.1 4194304.0 214 ------- SRM_DATA} + -t 7.80853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 271 -a 0 -x {0.1 4194304.0 214 ------- SRM_DATA} - -t 7.80853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 271 -a 0 -x {0.1 4194304.0 214 ------- SRM_DATA} h -t 7.80853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 271 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.81427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 272 -a 0 -x {0.1 4194304.0 215 ------- SRM_DATA} + -t 7.81427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 272 -a 0 -x {0.1 4194304.0 215 ------- SRM_DATA} - -t 7.81427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 272 -a 0 -x {0.1 4194304.0 215 ------- SRM_DATA} h -t 7.81427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 272 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.81707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 270 -a 0 -x {0.1 4194304.0 213 ------- SRM_DATA} r -t 7.81707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 270 -a 0 -x {0.1 4194304.0 213 ------- SRM_DATA} + -t 7.82 -s 0 -d 1 -p cbr -e 800 -c 0 -i 273 -a 0 -x {0.1 4194304.0 216 ------- SRM_DATA} - -t 7.82 -s 0 -d 1 -p cbr -e 800 -c 0 -i 273 -a 0 -x {0.1 4194304.0 216 ------- SRM_DATA} h -t 7.82 -s 0 -d 1 -p cbr -e 800 -c 0 -i 273 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.8228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 271 -a 0 -x {0.1 4194304.0 214 ------- SRM_DATA} + -t 7.8228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 271 -a 0 -x {0.1 4194304.0 214 ------- SRM_DATA} - -t 7.8228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 271 -a 0 -x {0.1 4194304.0 214 ------- SRM_DATA} h -t 7.8228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 271 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.8228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 271 -a 0 -x {0.1 4194304.0 214 ------- SRM_DATA} - -t 7.8228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 271 -a 0 -x {0.1 4194304.0 214 ------- SRM_DATA} h -t 7.8228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 271 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.82853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 272 -a 0 -x {0.1 4194304.0 215 ------- SRM_DATA} + -t 7.82853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 272 -a 0 -x {0.1 4194304.0 215 ------- SRM_DATA} - -t 7.82853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 272 -a 0 -x {0.1 4194304.0 215 ------- SRM_DATA} h -t 7.82853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 272 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.83427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 273 -a 0 -x {0.1 4194304.0 216 ------- SRM_DATA} + -t 7.83427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 273 -a 0 -x {0.1 4194304.0 216 ------- SRM_DATA} - -t 7.83427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 273 -a 0 -x {0.1 4194304.0 216 ------- SRM_DATA} h -t 7.83427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 273 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.83707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 271 -a 0 -x {0.1 4194304.0 214 ------- SRM_DATA} r -t 7.83707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 271 -a 0 -x {0.1 4194304.0 214 ------- SRM_DATA} + -t 7.84 -s 0 -d 1 -p cbr -e 800 -c 0 -i 274 -a 0 -x {0.1 4194304.0 217 ------- SRM_DATA} - -t 7.84 -s 0 -d 1 -p cbr -e 800 -c 0 -i 274 -a 0 -x {0.1 4194304.0 217 ------- SRM_DATA} h -t 7.84 -s 0 -d 1 -p cbr -e 800 -c 0 -i 274 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.8428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 272 -a 0 -x {0.1 4194304.0 215 ------- SRM_DATA} + -t 7.8428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 272 -a 0 -x {0.1 4194304.0 215 ------- SRM_DATA} - -t 7.8428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 272 -a 0 -x {0.1 4194304.0 215 ------- SRM_DATA} h -t 7.8428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 272 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.8428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 272 -a 0 -x {0.1 4194304.0 215 ------- SRM_DATA} - -t 7.8428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 272 -a 0 -x {0.1 4194304.0 215 ------- SRM_DATA} h -t 7.8428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 272 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.84853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 273 -a 0 -x {0.1 4194304.0 216 ------- SRM_DATA} + -t 7.84853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 273 -a 0 -x {0.1 4194304.0 216 ------- SRM_DATA} - -t 7.84853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 273 -a 0 -x {0.1 4194304.0 216 ------- SRM_DATA} h -t 7.84853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 273 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.85427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 274 -a 0 -x {0.1 4194304.0 217 ------- SRM_DATA} + -t 7.85427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 274 -a 0 -x {0.1 4194304.0 217 ------- SRM_DATA} - -t 7.85427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 274 -a 0 -x {0.1 4194304.0 217 ------- SRM_DATA} h -t 7.85427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 274 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.85707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 272 -a 0 -x {0.1 4194304.0 215 ------- SRM_DATA} r -t 7.85707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 272 -a 0 -x {0.1 4194304.0 215 ------- SRM_DATA} + -t 7.86 -s 0 -d 1 -p cbr -e 800 -c 0 -i 275 -a 0 -x {0.1 4194304.0 218 ------- SRM_DATA} - -t 7.86 -s 0 -d 1 -p cbr -e 800 -c 0 -i 275 -a 0 -x {0.1 4194304.0 218 ------- SRM_DATA} h -t 7.86 -s 0 -d 1 -p cbr -e 800 -c 0 -i 275 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.8628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 273 -a 0 -x {0.1 4194304.0 216 ------- SRM_DATA} + -t 7.8628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 273 -a 0 -x {0.1 4194304.0 216 ------- SRM_DATA} - -t 7.8628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 273 -a 0 -x {0.1 4194304.0 216 ------- SRM_DATA} h -t 7.8628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 273 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.8628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 273 -a 0 -x {0.1 4194304.0 216 ------- SRM_DATA} - -t 7.8628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 273 -a 0 -x {0.1 4194304.0 216 ------- SRM_DATA} h -t 7.8628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 273 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.86853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 274 -a 0 -x {0.1 4194304.0 217 ------- SRM_DATA} + -t 7.86853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 274 -a 0 -x {0.1 4194304.0 217 ------- SRM_DATA} - -t 7.86853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 274 -a 0 -x {0.1 4194304.0 217 ------- SRM_DATA} h -t 7.86853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 274 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.87427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 275 -a 0 -x {0.1 4194304.0 218 ------- SRM_DATA} + -t 7.87427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 275 -a 0 -x {0.1 4194304.0 218 ------- SRM_DATA} - -t 7.87427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 275 -a 0 -x {0.1 4194304.0 218 ------- SRM_DATA} h -t 7.87427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 275 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.87707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 273 -a 0 -x {0.1 4194304.0 216 ------- SRM_DATA} r -t 7.87707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 273 -a 0 -x {0.1 4194304.0 216 ------- SRM_DATA} + -t 7.88 -s 0 -d 1 -p cbr -e 800 -c 0 -i 276 -a 0 -x {0.1 4194304.0 219 ------- SRM_DATA} - -t 7.88 -s 0 -d 1 -p cbr -e 800 -c 0 -i 276 -a 0 -x {0.1 4194304.0 219 ------- SRM_DATA} h -t 7.88 -s 0 -d 1 -p cbr -e 800 -c 0 -i 276 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.8828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 274 -a 0 -x {0.1 4194304.0 217 ------- SRM_DATA} + -t 7.8828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 274 -a 0 -x {0.1 4194304.0 217 ------- SRM_DATA} - -t 7.8828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 274 -a 0 -x {0.1 4194304.0 217 ------- SRM_DATA} h -t 7.8828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 274 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.8828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 274 -a 0 -x {0.1 4194304.0 217 ------- SRM_DATA} - -t 7.8828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 274 -a 0 -x {0.1 4194304.0 217 ------- SRM_DATA} h -t 7.8828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 274 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.88853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 275 -a 0 -x {0.1 4194304.0 218 ------- SRM_DATA} + -t 7.88853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 275 -a 0 -x {0.1 4194304.0 218 ------- SRM_DATA} - -t 7.88853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 275 -a 0 -x {0.1 4194304.0 218 ------- SRM_DATA} h -t 7.88853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 275 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.89427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 276 -a 0 -x {0.1 4194304.0 219 ------- SRM_DATA} + -t 7.89427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 276 -a 0 -x {0.1 4194304.0 219 ------- SRM_DATA} - -t 7.89427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 276 -a 0 -x {0.1 4194304.0 219 ------- SRM_DATA} h -t 7.89427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 276 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.89707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 274 -a 0 -x {0.1 4194304.0 217 ------- SRM_DATA} r -t 7.89707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 274 -a 0 -x {0.1 4194304.0 217 ------- SRM_DATA} + -t 7.9 -s 0 -d 1 -p cbr -e 800 -c 0 -i 277 -a 0 -x {0.1 4194304.0 220 ------- SRM_DATA} - -t 7.9 -s 0 -d 1 -p cbr -e 800 -c 0 -i 277 -a 0 -x {0.1 4194304.0 220 ------- SRM_DATA} h -t 7.9 -s 0 -d 1 -p cbr -e 800 -c 0 -i 277 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.9028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 275 -a 0 -x {0.1 4194304.0 218 ------- SRM_DATA} + -t 7.9028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 275 -a 0 -x {0.1 4194304.0 218 ------- SRM_DATA} - -t 7.9028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 275 -a 0 -x {0.1 4194304.0 218 ------- SRM_DATA} h -t 7.9028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 275 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.9028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 275 -a 0 -x {0.1 4194304.0 218 ------- SRM_DATA} - -t 7.9028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 275 -a 0 -x {0.1 4194304.0 218 ------- SRM_DATA} h -t 7.9028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 275 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.90853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 276 -a 0 -x {0.1 4194304.0 219 ------- SRM_DATA} + -t 7.90853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 276 -a 0 -x {0.1 4194304.0 219 ------- SRM_DATA} - -t 7.90853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 276 -a 0 -x {0.1 4194304.0 219 ------- SRM_DATA} h -t 7.90853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 276 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.91427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 277 -a 0 -x {0.1 4194304.0 220 ------- SRM_DATA} + -t 7.91427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 277 -a 0 -x {0.1 4194304.0 220 ------- SRM_DATA} - -t 7.91427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 277 -a 0 -x {0.1 4194304.0 220 ------- SRM_DATA} h -t 7.91427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 277 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.91707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 275 -a 0 -x {0.1 4194304.0 218 ------- SRM_DATA} r -t 7.91707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 275 -a 0 -x {0.1 4194304.0 218 ------- SRM_DATA} + -t 7.92 -s 0 -d 1 -p cbr -e 800 -c 0 -i 278 -a 0 -x {0.1 4194304.0 221 ------- SRM_DATA} - -t 7.92 -s 0 -d 1 -p cbr -e 800 -c 0 -i 278 -a 0 -x {0.1 4194304.0 221 ------- SRM_DATA} h -t 7.92 -s 0 -d 1 -p cbr -e 800 -c 0 -i 278 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.9228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 276 -a 0 -x {0.1 4194304.0 219 ------- SRM_DATA} + -t 7.9228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 276 -a 0 -x {0.1 4194304.0 219 ------- SRM_DATA} - -t 7.9228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 276 -a 0 -x {0.1 4194304.0 219 ------- SRM_DATA} h -t 7.9228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 276 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.9228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 276 -a 0 -x {0.1 4194304.0 219 ------- SRM_DATA} - -t 7.9228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 276 -a 0 -x {0.1 4194304.0 219 ------- SRM_DATA} h -t 7.9228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 276 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.92424 -s 2 -d 1 -p SRM -e 116 -c 3 -i 279 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} - -t 7.92424 -s 2 -d 1 -p SRM -e 116 -c 3 -i 279 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} h -t 7.92424 -s 2 -d 1 -p SRM -e 116 -c 3 -i 279 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} + -t 7.92424 -s 2 -d 3 -p SRM -e 116 -c 3 -i 279 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} - -t 7.92424 -s 2 -d 3 -p SRM -e 116 -c 3 -i 279 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} h -t 7.92424 -s 2 -d 3 -p SRM -e 116 -c 3 -i 279 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} + -t 7.92424 -s 1 -d 0 -p SRM -e 116 -c 2 -i 280 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} - -t 7.92424 -s 1 -d 0 -p SRM -e 116 -c 2 -i 280 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} h -t 7.92424 -s 1 -d 0 -p SRM -e 116 -c 2 -i 280 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} + -t 7.92424 -s 1 -d 2 -p SRM -e 116 -c 2 -i 280 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} - -t 7.92424 -s 1 -d 2 -p SRM -e 116 -c 2 -i 280 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} h -t 7.92424 -s 1 -d 2 -p SRM -e 116 -c 2 -i 280 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} r -t 7.92853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 277 -a 0 -x {0.1 4194304.0 220 ------- SRM_DATA} + -t 7.92853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 277 -a 0 -x {0.1 4194304.0 220 ------- SRM_DATA} - -t 7.92853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 277 -a 0 -x {0.1 4194304.0 220 ------- SRM_DATA} h -t 7.92853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 277 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.93427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 278 -a 0 -x {0.1 4194304.0 221 ------- SRM_DATA} + -t 7.93427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 278 -a 0 -x {0.1 4194304.0 221 ------- SRM_DATA} - -t 7.93427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 278 -a 0 -x {0.1 4194304.0 221 ------- SRM_DATA} h -t 7.93427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 278 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.93486 -s 2 -d 1 -p SRM -e 116 -c 3 -i 279 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} + -t 7.93486 -s 1 -d 0 -p SRM -e 116 -c 3 -i 279 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} - -t 7.93486 -s 1 -d 0 -p SRM -e 116 -c 3 -i 279 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} h -t 7.93486 -s 1 -d 0 -p SRM -e 116 -c 3 -i 279 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} r -t 7.93486 -s 2 -d 3 -p SRM -e 116 -c 3 -i 279 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} + -t 7.93486 -s 3 -d 4 -p SRM -e 116 -c 3 -i 279 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} - -t 7.93486 -s 3 -d 4 -p SRM -e 116 -c 3 -i 279 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} h -t 7.93486 -s 3 -d 4 -p SRM -e 116 -c 3 -i 279 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} + -t 7.93486 -s 3 -d 5 -p SRM -e 116 -c 3 -i 279 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} - -t 7.93486 -s 3 -d 5 -p SRM -e 116 -c 3 -i 279 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} h -t 7.93486 -s 3 -d 5 -p SRM -e 116 -c 3 -i 279 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} r -t 7.93486 -s 1 -d 0 -p SRM -e 116 -c 2 -i 280 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} r -t 7.93486 -s 1 -d 2 -p SRM -e 116 -c 2 -i 280 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} + -t 7.93486 -s 2 -d 3 -p SRM -e 116 -c 2 -i 280 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} - -t 7.93486 -s 2 -d 3 -p SRM -e 116 -c 2 -i 280 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} h -t 7.93486 -s 2 -d 3 -p SRM -e 116 -c 2 -i 280 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} r -t 7.93707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 276 -a 0 -x {0.1 4194304.0 219 ------- SRM_DATA} r -t 7.93707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 276 -a 0 -x {0.1 4194304.0 219 ------- SRM_DATA} + -t 7.94 -s 0 -d 1 -p cbr -e 800 -c 0 -i 281 -a 0 -x {0.1 4194304.0 222 ------- SRM_DATA} - -t 7.94 -s 0 -d 1 -p cbr -e 800 -c 0 -i 281 -a 0 -x {0.1 4194304.0 222 ------- SRM_DATA} h -t 7.94 -s 0 -d 1 -p cbr -e 800 -c 0 -i 281 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.9428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 277 -a 0 -x {0.1 4194304.0 220 ------- SRM_DATA} + -t 7.9428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 277 -a 0 -x {0.1 4194304.0 220 ------- SRM_DATA} - -t 7.9428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 277 -a 0 -x {0.1 4194304.0 220 ------- SRM_DATA} h -t 7.9428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 277 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.9428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 277 -a 0 -x {0.1 4194304.0 220 ------- SRM_DATA} - -t 7.9428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 277 -a 0 -x {0.1 4194304.0 220 ------- SRM_DATA} h -t 7.9428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 277 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.94548 -s 1 -d 0 -p SRM -e 116 -c 3 -i 279 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} r -t 7.94548 -s 3 -d 4 -p SRM -e 116 -c 3 -i 279 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} r -t 7.94548 -s 3 -d 5 -p SRM -e 116 -c 3 -i 279 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} r -t 7.94548 -s 2 -d 3 -p SRM -e 116 -c 2 -i 280 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} + -t 7.94548 -s 3 -d 4 -p SRM -e 116 -c 2 -i 280 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} + -t 7.94548 -s 3 -d 5 -p SRM -e 116 -c 2 -i 280 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} - -t 7.94707 -s 3 -d 4 -p SRM -e 116 -c 2 -i 280 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} h -t 7.94707 -s 3 -d 4 -p SRM -e 116 -c 2 -i 280 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} - -t 7.94707 -s 3 -d 5 -p SRM -e 116 -c 2 -i 280 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} h -t 7.94707 -s 3 -d 5 -p SRM -e 116 -c 2 -i 280 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} r -t 7.94853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 278 -a 0 -x {0.1 4194304.0 221 ------- SRM_DATA} + -t 7.94853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 278 -a 0 -x {0.1 4194304.0 221 ------- SRM_DATA} - -t 7.94853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 278 -a 0 -x {0.1 4194304.0 221 ------- SRM_DATA} h -t 7.94853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 278 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.95427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 281 -a 0 -x {0.1 4194304.0 222 ------- SRM_DATA} + -t 7.95427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 281 -a 0 -x {0.1 4194304.0 222 ------- SRM_DATA} - -t 7.95427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 281 -a 0 -x {0.1 4194304.0 222 ------- SRM_DATA} h -t 7.95427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 281 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.95707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 277 -a 0 -x {0.1 4194304.0 220 ------- SRM_DATA} r -t 7.95707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 277 -a 0 -x {0.1 4194304.0 220 ------- SRM_DATA} r -t 7.95769 -s 3 -d 4 -p SRM -e 116 -c 2 -i 280 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} r -t 7.95769 -s 3 -d 5 -p SRM -e 116 -c 2 -i 280 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} + -t 7.96 -s 0 -d 1 -p cbr -e 800 -c 0 -i 282 -a 0 -x {0.1 4194304.0 223 ------- SRM_DATA} - -t 7.96 -s 0 -d 1 -p cbr -e 800 -c 0 -i 282 -a 0 -x {0.1 4194304.0 223 ------- SRM_DATA} h -t 7.96 -s 0 -d 1 -p cbr -e 800 -c 0 -i 282 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.9628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 278 -a 0 -x {0.1 4194304.0 221 ------- SRM_DATA} + -t 7.9628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 278 -a 0 -x {0.1 4194304.0 221 ------- SRM_DATA} - -t 7.9628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 278 -a 0 -x {0.1 4194304.0 221 ------- SRM_DATA} h -t 7.9628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 278 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.9628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 278 -a 0 -x {0.1 4194304.0 221 ------- SRM_DATA} - -t 7.9628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 278 -a 0 -x {0.1 4194304.0 221 ------- SRM_DATA} h -t 7.9628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 278 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.96808 -s 0 -d 1 -p SRM -e 116 -c 1 -i 283 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} - -t 7.96808 -s 0 -d 1 -p SRM -e 116 -c 1 -i 283 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} h -t 7.96808 -s 0 -d 1 -p SRM -e 116 -c 1 -i 283 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} r -t 7.96853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 281 -a 0 -x {0.1 4194304.0 222 ------- SRM_DATA} + -t 7.96853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 281 -a 0 -x {0.1 4194304.0 222 ------- SRM_DATA} - -t 7.96853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 281 -a 0 -x {0.1 4194304.0 222 ------- SRM_DATA} h -t 7.96853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 281 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.97427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 282 -a 0 -x {0.1 4194304.0 223 ------- SRM_DATA} + -t 7.97427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 282 -a 0 -x {0.1 4194304.0 223 ------- SRM_DATA} - -t 7.97427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 282 -a 0 -x {0.1 4194304.0 223 ------- SRM_DATA} h -t 7.97427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 282 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.97707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 278 -a 0 -x {0.1 4194304.0 221 ------- SRM_DATA} r -t 7.97707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 278 -a 0 -x {0.1 4194304.0 221 ------- SRM_DATA} r -t 7.9787 -s 0 -d 1 -p SRM -e 116 -c 1 -i 283 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} + -t 7.9787 -s 1 -d 2 -p SRM -e 116 -c 1 -i 283 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} - -t 7.9787 -s 1 -d 2 -p SRM -e 116 -c 1 -i 283 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} h -t 7.9787 -s 1 -d 2 -p SRM -e 116 -c 1 -i 283 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} + -t 7.98 -s 0 -d 1 -p cbr -e 800 -c 0 -i 284 -a 0 -x {0.1 4194304.0 224 ------- SRM_DATA} - -t 7.98 -s 0 -d 1 -p cbr -e 800 -c 0 -i 284 -a 0 -x {0.1 4194304.0 224 ------- SRM_DATA} h -t 7.98 -s 0 -d 1 -p cbr -e 800 -c 0 -i 284 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.9828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 281 -a 0 -x {0.1 4194304.0 222 ------- SRM_DATA} + -t 7.9828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 281 -a 0 -x {0.1 4194304.0 222 ------- SRM_DATA} - -t 7.9828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 281 -a 0 -x {0.1 4194304.0 222 ------- SRM_DATA} h -t 7.9828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 281 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 7.9828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 281 -a 0 -x {0.1 4194304.0 222 ------- SRM_DATA} - -t 7.9828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 281 -a 0 -x {0.1 4194304.0 222 ------- SRM_DATA} h -t 7.9828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 281 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.98853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 282 -a 0 -x {0.1 4194304.0 223 ------- SRM_DATA} + -t 7.98853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 282 -a 0 -x {0.1 4194304.0 223 ------- SRM_DATA} - -t 7.98853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 282 -a 0 -x {0.1 4194304.0 223 ------- SRM_DATA} h -t 7.98853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 282 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.98932 -s 1 -d 2 -p SRM -e 116 -c 1 -i 283 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} + -t 7.98932 -s 2 -d 3 -p SRM -e 116 -c 1 -i 283 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} - -t 7.9928 -s 2 -d 3 -p SRM -e 116 -c 1 -i 283 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} h -t 7.9928 -s 2 -d 3 -p SRM -e 116 -c 1 -i 283 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} r -t 7.99427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 284 -a 0 -x {0.1 4194304.0 224 ------- SRM_DATA} + -t 7.99427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 284 -a 0 -x {0.1 4194304.0 224 ------- SRM_DATA} - -t 7.99427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 284 -a 0 -x {0.1 4194304.0 224 ------- SRM_DATA} h -t 7.99427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 284 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 7.99707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 281 -a 0 -x {0.1 4194304.0 222 ------- SRM_DATA} r -t 7.99707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 281 -a 0 -x {0.1 4194304.0 222 ------- SRM_DATA} + -t 8 -s 0 -d 1 -p cbr -e 800 -c 0 -i 285 -a 0 -x {0.1 4194304.0 225 ------- SRM_DATA} - -t 8 -s 0 -d 1 -p cbr -e 800 -c 0 -i 285 -a 0 -x {0.1 4194304.0 225 ------- SRM_DATA} h -t 8 -s 0 -d 1 -p cbr -e 800 -c 0 -i 285 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.0028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 282 -a 0 -x {0.1 4194304.0 223 ------- SRM_DATA} + -t 8.0028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 282 -a 0 -x {0.1 4194304.0 223 ------- SRM_DATA} - -t 8.0028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 282 -a 0 -x {0.1 4194304.0 223 ------- SRM_DATA} h -t 8.0028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 282 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.0028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 282 -a 0 -x {0.1 4194304.0 223 ------- SRM_DATA} - -t 8.0028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 282 -a 0 -x {0.1 4194304.0 223 ------- SRM_DATA} h -t 8.0028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 282 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.00342 -s 2 -d 3 -p SRM -e 116 -c 1 -i 283 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} + -t 8.00342 -s 3 -d 4 -p SRM -e 116 -c 1 -i 283 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} + -t 8.00342 -s 3 -d 5 -p SRM -e 116 -c 1 -i 283 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} - -t 8.00707 -s 3 -d 4 -p SRM -e 116 -c 1 -i 283 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} h -t 8.00707 -s 3 -d 4 -p SRM -e 116 -c 1 -i 283 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} - -t 8.00707 -s 3 -d 5 -p SRM -e 116 -c 1 -i 283 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} h -t 8.00707 -s 3 -d 5 -p SRM -e 116 -c 1 -i 283 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} r -t 8.00853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 284 -a 0 -x {0.1 4194304.0 224 ------- SRM_DATA} + -t 8.00853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 284 -a 0 -x {0.1 4194304.0 224 ------- SRM_DATA} - -t 8.00853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 284 -a 0 -x {0.1 4194304.0 224 ------- SRM_DATA} h -t 8.00853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 284 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.01427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 285 -a 0 -x {0.1 4194304.0 225 ------- SRM_DATA} + -t 8.01427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 285 -a 0 -x {0.1 4194304.0 225 ------- SRM_DATA} - -t 8.01427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 285 -a 0 -x {0.1 4194304.0 225 ------- SRM_DATA} h -t 8.01427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 285 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.01707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 282 -a 0 -x {0.1 4194304.0 223 ------- SRM_DATA} r -t 8.01707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 282 -a 0 -x {0.1 4194304.0 223 ------- SRM_DATA} r -t 8.01769 -s 3 -d 4 -p SRM -e 116 -c 1 -i 283 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} r -t 8.01769 -s 3 -d 5 -p SRM -e 116 -c 1 -i 283 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} + -t 8.02 -s 0 -d 1 -p cbr -e 800 -c 0 -i 286 -a 0 -x {0.1 4194304.0 226 ------- SRM_DATA} - -t 8.02 -s 0 -d 1 -p cbr -e 800 -c 0 -i 286 -a 0 -x {0.1 4194304.0 226 ------- SRM_DATA} h -t 8.02 -s 0 -d 1 -p cbr -e 800 -c 0 -i 286 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.0228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 284 -a 0 -x {0.1 4194304.0 224 ------- SRM_DATA} + -t 8.0228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 284 -a 0 -x {0.1 4194304.0 224 ------- SRM_DATA} - -t 8.0228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 284 -a 0 -x {0.1 4194304.0 224 ------- SRM_DATA} h -t 8.0228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 284 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.0228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 284 -a 0 -x {0.1 4194304.0 224 ------- SRM_DATA} - -t 8.0228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 284 -a 0 -x {0.1 4194304.0 224 ------- SRM_DATA} h -t 8.0228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 284 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.02853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 285 -a 0 -x {0.1 4194304.0 225 ------- SRM_DATA} + -t 8.02853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 285 -a 0 -x {0.1 4194304.0 225 ------- SRM_DATA} - -t 8.02853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 285 -a 0 -x {0.1 4194304.0 225 ------- SRM_DATA} h -t 8.02853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 285 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.03427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 286 -a 0 -x {0.1 4194304.0 226 ------- SRM_DATA} + -t 8.03427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 286 -a 0 -x {0.1 4194304.0 226 ------- SRM_DATA} - -t 8.03427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 286 -a 0 -x {0.1 4194304.0 226 ------- SRM_DATA} h -t 8.03427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 286 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.03707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 284 -a 0 -x {0.1 4194304.0 224 ------- SRM_DATA} r -t 8.03707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 284 -a 0 -x {0.1 4194304.0 224 ------- SRM_DATA} + -t 8.04 -s 0 -d 1 -p cbr -e 800 -c 0 -i 287 -a 0 -x {0.1 4194304.0 227 ------- SRM_DATA} - -t 8.04 -s 0 -d 1 -p cbr -e 800 -c 0 -i 287 -a 0 -x {0.1 4194304.0 227 ------- SRM_DATA} h -t 8.04 -s 0 -d 1 -p cbr -e 800 -c 0 -i 287 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.0428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 285 -a 0 -x {0.1 4194304.0 225 ------- SRM_DATA} + -t 8.0428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 285 -a 0 -x {0.1 4194304.0 225 ------- SRM_DATA} - -t 8.0428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 285 -a 0 -x {0.1 4194304.0 225 ------- SRM_DATA} h -t 8.0428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 285 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.0428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 285 -a 0 -x {0.1 4194304.0 225 ------- SRM_DATA} - -t 8.0428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 285 -a 0 -x {0.1 4194304.0 225 ------- SRM_DATA} h -t 8.0428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 285 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.04557 -s 4 -d 3 -p SRM -e 116 -c 5 -i 288 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} - -t 8.04557 -s 4 -d 3 -p SRM -e 116 -c 5 -i 288 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} h -t 8.04557 -s 4 -d 3 -p SRM -e 116 -c 5 -i 288 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} r -t 8.04853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 286 -a 0 -x {0.1 4194304.0 226 ------- SRM_DATA} + -t 8.04853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 286 -a 0 -x {0.1 4194304.0 226 ------- SRM_DATA} - -t 8.04853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 286 -a 0 -x {0.1 4194304.0 226 ------- SRM_DATA} h -t 8.04853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 286 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.05427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 287 -a 0 -x {0.1 4194304.0 227 ------- SRM_DATA} + -t 8.05427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 287 -a 0 -x {0.1 4194304.0 227 ------- SRM_DATA} - -t 8.05427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 287 -a 0 -x {0.1 4194304.0 227 ------- SRM_DATA} h -t 8.05427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 287 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.05619 -s 4 -d 3 -p SRM -e 116 -c 5 -i 288 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} + -t 8.05619 -s 3 -d 2 -p SRM -e 116 -c 5 -i 288 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} - -t 8.05619 -s 3 -d 2 -p SRM -e 116 -c 5 -i 288 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} h -t 8.05619 -s 3 -d 2 -p SRM -e 116 -c 5 -i 288 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} + -t 8.05619 -s 3 -d 5 -p SRM -e 116 -c 5 -i 288 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} - -t 8.05619 -s 3 -d 5 -p SRM -e 116 -c 5 -i 288 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} h -t 8.05619 -s 3 -d 5 -p SRM -e 116 -c 5 -i 288 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} r -t 8.05707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 285 -a 0 -x {0.1 4194304.0 225 ------- SRM_DATA} r -t 8.05707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 285 -a 0 -x {0.1 4194304.0 225 ------- SRM_DATA} + -t 8.06 -s 0 -d 1 -p cbr -e 800 -c 0 -i 289 -a 0 -x {0.1 4194304.0 228 ------- SRM_DATA} - -t 8.06 -s 0 -d 1 -p cbr -e 800 -c 0 -i 289 -a 0 -x {0.1 4194304.0 228 ------- SRM_DATA} h -t 8.06 -s 0 -d 1 -p cbr -e 800 -c 0 -i 289 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.0628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 286 -a 0 -x {0.1 4194304.0 226 ------- SRM_DATA} + -t 8.0628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 286 -a 0 -x {0.1 4194304.0 226 ------- SRM_DATA} - -t 8.0628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 286 -a 0 -x {0.1 4194304.0 226 ------- SRM_DATA} h -t 8.0628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 286 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.0628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 286 -a 0 -x {0.1 4194304.0 226 ------- SRM_DATA} - -t 8.0628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 286 -a 0 -x {0.1 4194304.0 226 ------- SRM_DATA} h -t 8.0628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 286 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.06681 -s 3 -d 2 -p SRM -e 116 -c 5 -i 288 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} + -t 8.06681 -s 2 -d 1 -p SRM -e 116 -c 5 -i 288 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} - -t 8.06681 -s 2 -d 1 -p SRM -e 116 -c 5 -i 288 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} h -t 8.06681 -s 2 -d 1 -p SRM -e 116 -c 5 -i 288 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} r -t 8.06681 -s 3 -d 5 -p SRM -e 116 -c 5 -i 288 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} r -t 8.06853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 287 -a 0 -x {0.1 4194304.0 227 ------- SRM_DATA} + -t 8.06853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 287 -a 0 -x {0.1 4194304.0 227 ------- SRM_DATA} - -t 8.06853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 287 -a 0 -x {0.1 4194304.0 227 ------- SRM_DATA} h -t 8.06853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 287 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.07073 -s 3 -d 2 -p SRM -e 116 -c 4 -i 290 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} - -t 8.07073 -s 3 -d 2 -p SRM -e 116 -c 4 -i 290 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} h -t 8.07073 -s 3 -d 2 -p SRM -e 116 -c 4 -i 290 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} + -t 8.07073 -s 3 -d 4 -p SRM -e 116 -c 4 -i 290 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} - -t 8.07073 -s 3 -d 4 -p SRM -e 116 -c 4 -i 290 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} h -t 8.07073 -s 3 -d 4 -p SRM -e 116 -c 4 -i 290 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} + -t 8.07073 -s 3 -d 5 -p SRM -e 116 -c 4 -i 290 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} - -t 8.07073 -s 3 -d 5 -p SRM -e 116 -c 4 -i 290 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} h -t 8.07073 -s 3 -d 5 -p SRM -e 116 -c 4 -i 290 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} r -t 8.07427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 289 -a 0 -x {0.1 4194304.0 228 ------- SRM_DATA} + -t 8.07427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 289 -a 0 -x {0.1 4194304.0 228 ------- SRM_DATA} - -t 8.07427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 289 -a 0 -x {0.1 4194304.0 228 ------- SRM_DATA} h -t 8.07427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 289 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.07707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 286 -a 0 -x {0.1 4194304.0 226 ------- SRM_DATA} r -t 8.07707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 286 -a 0 -x {0.1 4194304.0 226 ------- SRM_DATA} r -t 8.07743 -s 2 -d 1 -p SRM -e 116 -c 5 -i 288 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} + -t 8.07743 -s 1 -d 0 -p SRM -e 116 -c 5 -i 288 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} - -t 8.07743 -s 1 -d 0 -p SRM -e 116 -c 5 -i 288 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} h -t 8.07743 -s 1 -d 0 -p SRM -e 116 -c 5 -i 288 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} + -t 8.08 -s 0 -d 1 -p cbr -e 800 -c 0 -i 291 -a 0 -x {0.1 4194304.0 229 ------- SRM_DATA} - -t 8.08 -s 0 -d 1 -p cbr -e 800 -c 0 -i 291 -a 0 -x {0.1 4194304.0 229 ------- SRM_DATA} h -t 8.08 -s 0 -d 1 -p cbr -e 800 -c 0 -i 291 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.08135 -s 3 -d 2 -p SRM -e 116 -c 4 -i 290 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} + -t 8.08135 -s 2 -d 1 -p SRM -e 116 -c 4 -i 290 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} - -t 8.08135 -s 2 -d 1 -p SRM -e 116 -c 4 -i 290 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} h -t 8.08135 -s 2 -d 1 -p SRM -e 116 -c 4 -i 290 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} r -t 8.08135 -s 3 -d 4 -p SRM -e 116 -c 4 -i 290 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} r -t 8.08135 -s 3 -d 5 -p SRM -e 116 -c 4 -i 290 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} r -t 8.0828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 287 -a 0 -x {0.1 4194304.0 227 ------- SRM_DATA} + -t 8.0828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 287 -a 0 -x {0.1 4194304.0 227 ------- SRM_DATA} - -t 8.0828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 287 -a 0 -x {0.1 4194304.0 227 ------- SRM_DATA} h -t 8.0828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 287 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.0828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 287 -a 0 -x {0.1 4194304.0 227 ------- SRM_DATA} - -t 8.0828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 287 -a 0 -x {0.1 4194304.0 227 ------- SRM_DATA} h -t 8.0828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 287 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.08805 -s 1 -d 0 -p SRM -e 116 -c 5 -i 288 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} r -t 8.08853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 289 -a 0 -x {0.1 4194304.0 228 ------- SRM_DATA} + -t 8.08853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 289 -a 0 -x {0.1 4194304.0 228 ------- SRM_DATA} - -t 8.08853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 289 -a 0 -x {0.1 4194304.0 228 ------- SRM_DATA} h -t 8.08853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 289 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.09197 -s 2 -d 1 -p SRM -e 116 -c 4 -i 290 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} + -t 8.09197 -s 1 -d 0 -p SRM -e 116 -c 4 -i 290 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} - -t 8.09197 -s 1 -d 0 -p SRM -e 116 -c 4 -i 290 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} h -t 8.09197 -s 1 -d 0 -p SRM -e 116 -c 4 -i 290 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} r -t 8.09427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 291 -a 0 -x {0.1 4194304.0 229 ------- SRM_DATA} + -t 8.09427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 291 -a 0 -x {0.1 4194304.0 229 ------- SRM_DATA} - -t 8.09427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 291 -a 0 -x {0.1 4194304.0 229 ------- SRM_DATA} h -t 8.09427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 291 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.09707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 287 -a 0 -x {0.1 4194304.0 227 ------- SRM_DATA} r -t 8.09707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 287 -a 0 -x {0.1 4194304.0 227 ------- SRM_DATA} + -t 8.1 -s 0 -d 1 -p cbr -e 800 -c 0 -i 292 -a 0 -x {0.1 4194304.0 230 ------- SRM_DATA} - -t 8.1 -s 0 -d 1 -p cbr -e 800 -c 0 -i 292 -a 0 -x {0.1 4194304.0 230 ------- SRM_DATA} h -t 8.1 -s 0 -d 1 -p cbr -e 800 -c 0 -i 292 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.10259 -s 1 -d 0 -p SRM -e 116 -c 4 -i 290 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} r -t 8.1028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 289 -a 0 -x {0.1 4194304.0 228 ------- SRM_DATA} + -t 8.1028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 289 -a 0 -x {0.1 4194304.0 228 ------- SRM_DATA} - -t 8.1028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 289 -a 0 -x {0.1 4194304.0 228 ------- SRM_DATA} h -t 8.1028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 289 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.1028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 289 -a 0 -x {0.1 4194304.0 228 ------- SRM_DATA} - -t 8.1028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 289 -a 0 -x {0.1 4194304.0 228 ------- SRM_DATA} h -t 8.1028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 289 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.10853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 291 -a 0 -x {0.1 4194304.0 229 ------- SRM_DATA} + -t 8.10853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 291 -a 0 -x {0.1 4194304.0 229 ------- SRM_DATA} - -t 8.10853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 291 -a 0 -x {0.1 4194304.0 229 ------- SRM_DATA} h -t 8.10853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 291 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.11427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 292 -a 0 -x {0.1 4194304.0 230 ------- SRM_DATA} + -t 8.11427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 292 -a 0 -x {0.1 4194304.0 230 ------- SRM_DATA} - -t 8.11427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 292 -a 0 -x {0.1 4194304.0 230 ------- SRM_DATA} h -t 8.11427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 292 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.11707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 289 -a 0 -x {0.1 4194304.0 228 ------- SRM_DATA} r -t 8.11707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 289 -a 0 -x {0.1 4194304.0 228 ------- SRM_DATA} + -t 8.12 -s 0 -d 1 -p cbr -e 800 -c 0 -i 293 -a 0 -x {0.1 4194304.0 231 ------- SRM_DATA} - -t 8.12 -s 0 -d 1 -p cbr -e 800 -c 0 -i 293 -a 0 -x {0.1 4194304.0 231 ------- SRM_DATA} h -t 8.12 -s 0 -d 1 -p cbr -e 800 -c 0 -i 293 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.1228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 291 -a 0 -x {0.1 4194304.0 229 ------- SRM_DATA} + -t 8.1228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 291 -a 0 -x {0.1 4194304.0 229 ------- SRM_DATA} - -t 8.1228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 291 -a 0 -x {0.1 4194304.0 229 ------- SRM_DATA} h -t 8.1228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 291 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.1228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 291 -a 0 -x {0.1 4194304.0 229 ------- SRM_DATA} - -t 8.1228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 291 -a 0 -x {0.1 4194304.0 229 ------- SRM_DATA} h -t 8.1228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 291 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.12853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 292 -a 0 -x {0.1 4194304.0 230 ------- SRM_DATA} + -t 8.12853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 292 -a 0 -x {0.1 4194304.0 230 ------- SRM_DATA} - -t 8.12853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 292 -a 0 -x {0.1 4194304.0 230 ------- SRM_DATA} h -t 8.12853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 292 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.13427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 293 -a 0 -x {0.1 4194304.0 231 ------- SRM_DATA} + -t 8.13427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 293 -a 0 -x {0.1 4194304.0 231 ------- SRM_DATA} - -t 8.13427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 293 -a 0 -x {0.1 4194304.0 231 ------- SRM_DATA} h -t 8.13427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 293 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.13707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 291 -a 0 -x {0.1 4194304.0 229 ------- SRM_DATA} r -t 8.13707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 291 -a 0 -x {0.1 4194304.0 229 ------- SRM_DATA} + -t 8.14 -s 0 -d 1 -p cbr -e 800 -c 0 -i 294 -a 0 -x {0.1 4194304.0 232 ------- SRM_DATA} - -t 8.14 -s 0 -d 1 -p cbr -e 800 -c 0 -i 294 -a 0 -x {0.1 4194304.0 232 ------- SRM_DATA} h -t 8.14 -s 0 -d 1 -p cbr -e 800 -c 0 -i 294 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.1428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 292 -a 0 -x {0.1 4194304.0 230 ------- SRM_DATA} + -t 8.1428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 292 -a 0 -x {0.1 4194304.0 230 ------- SRM_DATA} - -t 8.1428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 292 -a 0 -x {0.1 4194304.0 230 ------- SRM_DATA} h -t 8.1428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 292 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.1428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 292 -a 0 -x {0.1 4194304.0 230 ------- SRM_DATA} - -t 8.1428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 292 -a 0 -x {0.1 4194304.0 230 ------- SRM_DATA} h -t 8.1428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 292 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.14853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 293 -a 0 -x {0.1 4194304.0 231 ------- SRM_DATA} + -t 8.14853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 293 -a 0 -x {0.1 4194304.0 231 ------- SRM_DATA} - -t 8.14853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 293 -a 0 -x {0.1 4194304.0 231 ------- SRM_DATA} h -t 8.14853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 293 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.15427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 294 -a 0 -x {0.1 4194304.0 232 ------- SRM_DATA} + -t 8.15427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 294 -a 0 -x {0.1 4194304.0 232 ------- SRM_DATA} - -t 8.15427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 294 -a 0 -x {0.1 4194304.0 232 ------- SRM_DATA} h -t 8.15427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 294 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.15707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 292 -a 0 -x {0.1 4194304.0 230 ------- SRM_DATA} r -t 8.15707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 292 -a 0 -x {0.1 4194304.0 230 ------- SRM_DATA} + -t 8.16 -s 0 -d 1 -p cbr -e 800 -c 0 -i 295 -a 0 -x {0.1 4194304.0 233 ------- SRM_DATA} - -t 8.16 -s 0 -d 1 -p cbr -e 800 -c 0 -i 295 -a 0 -x {0.1 4194304.0 233 ------- SRM_DATA} h -t 8.16 -s 0 -d 1 -p cbr -e 800 -c 0 -i 295 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.1628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 293 -a 0 -x {0.1 4194304.0 231 ------- SRM_DATA} + -t 8.1628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 293 -a 0 -x {0.1 4194304.0 231 ------- SRM_DATA} - -t 8.1628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 293 -a 0 -x {0.1 4194304.0 231 ------- SRM_DATA} h -t 8.1628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 293 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.1628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 293 -a 0 -x {0.1 4194304.0 231 ------- SRM_DATA} - -t 8.1628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 293 -a 0 -x {0.1 4194304.0 231 ------- SRM_DATA} h -t 8.1628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 293 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.16853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 294 -a 0 -x {0.1 4194304.0 232 ------- SRM_DATA} + -t 8.16853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 294 -a 0 -x {0.1 4194304.0 232 ------- SRM_DATA} - -t 8.16853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 294 -a 0 -x {0.1 4194304.0 232 ------- SRM_DATA} h -t 8.16853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 294 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.17427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 295 -a 0 -x {0.1 4194304.0 233 ------- SRM_DATA} + -t 8.17427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 295 -a 0 -x {0.1 4194304.0 233 ------- SRM_DATA} - -t 8.17427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 295 -a 0 -x {0.1 4194304.0 233 ------- SRM_DATA} h -t 8.17427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 295 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.17707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 293 -a 0 -x {0.1 4194304.0 231 ------- SRM_DATA} r -t 8.17707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 293 -a 0 -x {0.1 4194304.0 231 ------- SRM_DATA} + -t 8.18 -s 0 -d 1 -p cbr -e 800 -c 0 -i 296 -a 0 -x {0.1 4194304.0 234 ------- SRM_DATA} - -t 8.18 -s 0 -d 1 -p cbr -e 800 -c 0 -i 296 -a 0 -x {0.1 4194304.0 234 ------- SRM_DATA} h -t 8.18 -s 0 -d 1 -p cbr -e 800 -c 0 -i 296 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.1828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 294 -a 0 -x {0.1 4194304.0 232 ------- SRM_DATA} + -t 8.1828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 294 -a 0 -x {0.1 4194304.0 232 ------- SRM_DATA} - -t 8.1828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 294 -a 0 -x {0.1 4194304.0 232 ------- SRM_DATA} h -t 8.1828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 294 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.1828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 294 -a 0 -x {0.1 4194304.0 232 ------- SRM_DATA} - -t 8.1828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 294 -a 0 -x {0.1 4194304.0 232 ------- SRM_DATA} h -t 8.1828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 294 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.18853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 295 -a 0 -x {0.1 4194304.0 233 ------- SRM_DATA} + -t 8.18853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 295 -a 0 -x {0.1 4194304.0 233 ------- SRM_DATA} - -t 8.18853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 295 -a 0 -x {0.1 4194304.0 233 ------- SRM_DATA} h -t 8.18853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 295 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.19427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 296 -a 0 -x {0.1 4194304.0 234 ------- SRM_DATA} + -t 8.19427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 296 -a 0 -x {0.1 4194304.0 234 ------- SRM_DATA} - -t 8.19427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 296 -a 0 -x {0.1 4194304.0 234 ------- SRM_DATA} h -t 8.19427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 296 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.19707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 294 -a 0 -x {0.1 4194304.0 232 ------- SRM_DATA} r -t 8.19707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 294 -a 0 -x {0.1 4194304.0 232 ------- SRM_DATA} + -t 8.2 -s 0 -d 1 -p cbr -e 800 -c 0 -i 297 -a 0 -x {0.1 4194304.0 235 ------- SRM_DATA} - -t 8.2 -s 0 -d 1 -p cbr -e 800 -c 0 -i 297 -a 0 -x {0.1 4194304.0 235 ------- SRM_DATA} h -t 8.2 -s 0 -d 1 -p cbr -e 800 -c 0 -i 297 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.2028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 295 -a 0 -x {0.1 4194304.0 233 ------- SRM_DATA} + -t 8.2028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 295 -a 0 -x {0.1 4194304.0 233 ------- SRM_DATA} - -t 8.2028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 295 -a 0 -x {0.1 4194304.0 233 ------- SRM_DATA} h -t 8.2028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 295 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.2028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 295 -a 0 -x {0.1 4194304.0 233 ------- SRM_DATA} - -t 8.2028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 295 -a 0 -x {0.1 4194304.0 233 ------- SRM_DATA} h -t 8.2028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 295 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.20853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 296 -a 0 -x {0.1 4194304.0 234 ------- SRM_DATA} + -t 8.20853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 296 -a 0 -x {0.1 4194304.0 234 ------- SRM_DATA} - -t 8.20853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 296 -a 0 -x {0.1 4194304.0 234 ------- SRM_DATA} h -t 8.20853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 296 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.21427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 297 -a 0 -x {0.1 4194304.0 235 ------- SRM_DATA} + -t 8.21427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 297 -a 0 -x {0.1 4194304.0 235 ------- SRM_DATA} - -t 8.21427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 297 -a 0 -x {0.1 4194304.0 235 ------- SRM_DATA} h -t 8.21427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 297 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.21707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 295 -a 0 -x {0.1 4194304.0 233 ------- SRM_DATA} r -t 8.21707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 295 -a 0 -x {0.1 4194304.0 233 ------- SRM_DATA} + -t 8.22 -s 0 -d 1 -p cbr -e 800 -c 0 -i 298 -a 0 -x {0.1 4194304.0 236 ------- SRM_DATA} - -t 8.22 -s 0 -d 1 -p cbr -e 800 -c 0 -i 298 -a 0 -x {0.1 4194304.0 236 ------- SRM_DATA} h -t 8.22 -s 0 -d 1 -p cbr -e 800 -c 0 -i 298 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.2228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 296 -a 0 -x {0.1 4194304.0 234 ------- SRM_DATA} + -t 8.2228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 296 -a 0 -x {0.1 4194304.0 234 ------- SRM_DATA} - -t 8.2228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 296 -a 0 -x {0.1 4194304.0 234 ------- SRM_DATA} h -t 8.2228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 296 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.2228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 296 -a 0 -x {0.1 4194304.0 234 ------- SRM_DATA} - -t 8.2228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 296 -a 0 -x {0.1 4194304.0 234 ------- SRM_DATA} h -t 8.2228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 296 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.22853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 297 -a 0 -x {0.1 4194304.0 235 ------- SRM_DATA} + -t 8.22853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 297 -a 0 -x {0.1 4194304.0 235 ------- SRM_DATA} - -t 8.22853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 297 -a 0 -x {0.1 4194304.0 235 ------- SRM_DATA} h -t 8.22853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 297 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.23427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 298 -a 0 -x {0.1 4194304.0 236 ------- SRM_DATA} + -t 8.23427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 298 -a 0 -x {0.1 4194304.0 236 ------- SRM_DATA} - -t 8.23427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 298 -a 0 -x {0.1 4194304.0 236 ------- SRM_DATA} h -t 8.23427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 298 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.23707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 296 -a 0 -x {0.1 4194304.0 234 ------- SRM_DATA} r -t 8.23707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 296 -a 0 -x {0.1 4194304.0 234 ------- SRM_DATA} + -t 8.24 -s 0 -d 1 -p cbr -e 800 -c 0 -i 299 -a 0 -x {0.1 4194304.0 237 ------- SRM_DATA} - -t 8.24 -s 0 -d 1 -p cbr -e 800 -c 0 -i 299 -a 0 -x {0.1 4194304.0 237 ------- SRM_DATA} h -t 8.24 -s 0 -d 1 -p cbr -e 800 -c 0 -i 299 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.2428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 297 -a 0 -x {0.1 4194304.0 235 ------- SRM_DATA} + -t 8.2428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 297 -a 0 -x {0.1 4194304.0 235 ------- SRM_DATA} - -t 8.2428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 297 -a 0 -x {0.1 4194304.0 235 ------- SRM_DATA} h -t 8.2428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 297 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.2428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 297 -a 0 -x {0.1 4194304.0 235 ------- SRM_DATA} - -t 8.2428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 297 -a 0 -x {0.1 4194304.0 235 ------- SRM_DATA} h -t 8.2428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 297 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.24853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 298 -a 0 -x {0.1 4194304.0 236 ------- SRM_DATA} + -t 8.24853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 298 -a 0 -x {0.1 4194304.0 236 ------- SRM_DATA} - -t 8.24853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 298 -a 0 -x {0.1 4194304.0 236 ------- SRM_DATA} h -t 8.24853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 298 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.25427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 299 -a 0 -x {0.1 4194304.0 237 ------- SRM_DATA} + -t 8.25427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 299 -a 0 -x {0.1 4194304.0 237 ------- SRM_DATA} - -t 8.25427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 299 -a 0 -x {0.1 4194304.0 237 ------- SRM_DATA} h -t 8.25427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 299 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.25707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 297 -a 0 -x {0.1 4194304.0 235 ------- SRM_DATA} r -t 8.25707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 297 -a 0 -x {0.1 4194304.0 235 ------- SRM_DATA} + -t 8.26 -s 0 -d 1 -p cbr -e 800 -c 0 -i 300 -a 0 -x {0.1 4194304.0 238 ------- SRM_DATA} - -t 8.26 -s 0 -d 1 -p cbr -e 800 -c 0 -i 300 -a 0 -x {0.1 4194304.0 238 ------- SRM_DATA} h -t 8.26 -s 0 -d 1 -p cbr -e 800 -c 0 -i 300 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.2628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 298 -a 0 -x {0.1 4194304.0 236 ------- SRM_DATA} + -t 8.2628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 298 -a 0 -x {0.1 4194304.0 236 ------- SRM_DATA} - -t 8.2628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 298 -a 0 -x {0.1 4194304.0 236 ------- SRM_DATA} h -t 8.2628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 298 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.2628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 298 -a 0 -x {0.1 4194304.0 236 ------- SRM_DATA} - -t 8.2628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 298 -a 0 -x {0.1 4194304.0 236 ------- SRM_DATA} h -t 8.2628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 298 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.26853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 299 -a 0 -x {0.1 4194304.0 237 ------- SRM_DATA} + -t 8.26853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 299 -a 0 -x {0.1 4194304.0 237 ------- SRM_DATA} - -t 8.26853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 299 -a 0 -x {0.1 4194304.0 237 ------- SRM_DATA} h -t 8.26853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 299 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.27427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 300 -a 0 -x {0.1 4194304.0 238 ------- SRM_DATA} + -t 8.27427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 300 -a 0 -x {0.1 4194304.0 238 ------- SRM_DATA} - -t 8.27427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 300 -a 0 -x {0.1 4194304.0 238 ------- SRM_DATA} h -t 8.27427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 300 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.27707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 298 -a 0 -x {0.1 4194304.0 236 ------- SRM_DATA} r -t 8.27707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 298 -a 0 -x {0.1 4194304.0 236 ------- SRM_DATA} + -t 8.28 -s 0 -d 1 -p cbr -e 800 -c 0 -i 301 -a 0 -x {0.1 4194304.0 239 ------- SRM_DATA} - -t 8.28 -s 0 -d 1 -p cbr -e 800 -c 0 -i 301 -a 0 -x {0.1 4194304.0 239 ------- SRM_DATA} h -t 8.28 -s 0 -d 1 -p cbr -e 800 -c 0 -i 301 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.2828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 299 -a 0 -x {0.1 4194304.0 237 ------- SRM_DATA} + -t 8.2828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 299 -a 0 -x {0.1 4194304.0 237 ------- SRM_DATA} - -t 8.2828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 299 -a 0 -x {0.1 4194304.0 237 ------- SRM_DATA} h -t 8.2828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 299 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.2828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 299 -a 0 -x {0.1 4194304.0 237 ------- SRM_DATA} - -t 8.2828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 299 -a 0 -x {0.1 4194304.0 237 ------- SRM_DATA} h -t 8.2828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 299 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.28853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 300 -a 0 -x {0.1 4194304.0 238 ------- SRM_DATA} + -t 8.28853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 300 -a 0 -x {0.1 4194304.0 238 ------- SRM_DATA} - -t 8.28853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 300 -a 0 -x {0.1 4194304.0 238 ------- SRM_DATA} h -t 8.28853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 300 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.29427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 301 -a 0 -x {0.1 4194304.0 239 ------- SRM_DATA} + -t 8.29427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 301 -a 0 -x {0.1 4194304.0 239 ------- SRM_DATA} - -t 8.29427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 301 -a 0 -x {0.1 4194304.0 239 ------- SRM_DATA} h -t 8.29427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 301 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.29707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 299 -a 0 -x {0.1 4194304.0 237 ------- SRM_DATA} r -t 8.29707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 299 -a 0 -x {0.1 4194304.0 237 ------- SRM_DATA} + -t 8.3 -s 0 -d 1 -p cbr -e 800 -c 0 -i 302 -a 0 -x {0.1 4194304.0 240 ------- SRM_DATA} - -t 8.3 -s 0 -d 1 -p cbr -e 800 -c 0 -i 302 -a 0 -x {0.1 4194304.0 240 ------- SRM_DATA} h -t 8.3 -s 0 -d 1 -p cbr -e 800 -c 0 -i 302 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.3028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 300 -a 0 -x {0.1 4194304.0 238 ------- SRM_DATA} + -t 8.3028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 300 -a 0 -x {0.1 4194304.0 238 ------- SRM_DATA} - -t 8.3028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 300 -a 0 -x {0.1 4194304.0 238 ------- SRM_DATA} h -t 8.3028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 300 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.3028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 300 -a 0 -x {0.1 4194304.0 238 ------- SRM_DATA} - -t 8.3028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 300 -a 0 -x {0.1 4194304.0 238 ------- SRM_DATA} h -t 8.3028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 300 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.30853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 301 -a 0 -x {0.1 4194304.0 239 ------- SRM_DATA} + -t 8.30853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 301 -a 0 -x {0.1 4194304.0 239 ------- SRM_DATA} - -t 8.30853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 301 -a 0 -x {0.1 4194304.0 239 ------- SRM_DATA} h -t 8.30853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 301 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.31427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 302 -a 0 -x {0.1 4194304.0 240 ------- SRM_DATA} + -t 8.31427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 302 -a 0 -x {0.1 4194304.0 240 ------- SRM_DATA} - -t 8.31427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 302 -a 0 -x {0.1 4194304.0 240 ------- SRM_DATA} h -t 8.31427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 302 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.31707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 300 -a 0 -x {0.1 4194304.0 238 ------- SRM_DATA} r -t 8.31707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 300 -a 0 -x {0.1 4194304.0 238 ------- SRM_DATA} + -t 8.32 -s 0 -d 1 -p cbr -e 800 -c 0 -i 303 -a 0 -x {0.1 4194304.0 241 ------- SRM_DATA} - -t 8.32 -s 0 -d 1 -p cbr -e 800 -c 0 -i 303 -a 0 -x {0.1 4194304.0 241 ------- SRM_DATA} h -t 8.32 -s 0 -d 1 -p cbr -e 800 -c 0 -i 303 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.3228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 301 -a 0 -x {0.1 4194304.0 239 ------- SRM_DATA} + -t 8.3228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 301 -a 0 -x {0.1 4194304.0 239 ------- SRM_DATA} - -t 8.3228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 301 -a 0 -x {0.1 4194304.0 239 ------- SRM_DATA} h -t 8.3228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 301 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.3228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 301 -a 0 -x {0.1 4194304.0 239 ------- SRM_DATA} - -t 8.3228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 301 -a 0 -x {0.1 4194304.0 239 ------- SRM_DATA} h -t 8.3228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 301 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.32853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 302 -a 0 -x {0.1 4194304.0 240 ------- SRM_DATA} + -t 8.32853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 302 -a 0 -x {0.1 4194304.0 240 ------- SRM_DATA} - -t 8.32853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 302 -a 0 -x {0.1 4194304.0 240 ------- SRM_DATA} h -t 8.32853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 302 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.33427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 303 -a 0 -x {0.1 4194304.0 241 ------- SRM_DATA} + -t 8.33427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 303 -a 0 -x {0.1 4194304.0 241 ------- SRM_DATA} - -t 8.33427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 303 -a 0 -x {0.1 4194304.0 241 ------- SRM_DATA} h -t 8.33427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 303 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.33707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 301 -a 0 -x {0.1 4194304.0 239 ------- SRM_DATA} r -t 8.33707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 301 -a 0 -x {0.1 4194304.0 239 ------- SRM_DATA} + -t 8.34 -s 0 -d 1 -p cbr -e 800 -c 0 -i 304 -a 0 -x {0.1 4194304.0 242 ------- SRM_DATA} - -t 8.34 -s 0 -d 1 -p cbr -e 800 -c 0 -i 304 -a 0 -x {0.1 4194304.0 242 ------- SRM_DATA} h -t 8.34 -s 0 -d 1 -p cbr -e 800 -c 0 -i 304 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.3428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 302 -a 0 -x {0.1 4194304.0 240 ------- SRM_DATA} + -t 8.3428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 302 -a 0 -x {0.1 4194304.0 240 ------- SRM_DATA} - -t 8.3428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 302 -a 0 -x {0.1 4194304.0 240 ------- SRM_DATA} h -t 8.3428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 302 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.3428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 302 -a 0 -x {0.1 4194304.0 240 ------- SRM_DATA} - -t 8.3428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 302 -a 0 -x {0.1 4194304.0 240 ------- SRM_DATA} h -t 8.3428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 302 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.34853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 303 -a 0 -x {0.1 4194304.0 241 ------- SRM_DATA} + -t 8.34853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 303 -a 0 -x {0.1 4194304.0 241 ------- SRM_DATA} - -t 8.34853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 303 -a 0 -x {0.1 4194304.0 241 ------- SRM_DATA} h -t 8.34853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 303 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.35427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 304 -a 0 -x {0.1 4194304.0 242 ------- SRM_DATA} + -t 8.35427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 304 -a 0 -x {0.1 4194304.0 242 ------- SRM_DATA} - -t 8.35427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 304 -a 0 -x {0.1 4194304.0 242 ------- SRM_DATA} h -t 8.35427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 304 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.35707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 302 -a 0 -x {0.1 4194304.0 240 ------- SRM_DATA} r -t 8.35707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 302 -a 0 -x {0.1 4194304.0 240 ------- SRM_DATA} + -t 8.36 -s 0 -d 1 -p cbr -e 800 -c 0 -i 305 -a 0 -x {0.1 4194304.0 243 ------- SRM_DATA} - -t 8.36 -s 0 -d 1 -p cbr -e 800 -c 0 -i 305 -a 0 -x {0.1 4194304.0 243 ------- SRM_DATA} h -t 8.36 -s 0 -d 1 -p cbr -e 800 -c 0 -i 305 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.3628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 303 -a 0 -x {0.1 4194304.0 241 ------- SRM_DATA} + -t 8.3628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 303 -a 0 -x {0.1 4194304.0 241 ------- SRM_DATA} - -t 8.3628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 303 -a 0 -x {0.1 4194304.0 241 ------- SRM_DATA} h -t 8.3628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 303 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.3628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 303 -a 0 -x {0.1 4194304.0 241 ------- SRM_DATA} - -t 8.3628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 303 -a 0 -x {0.1 4194304.0 241 ------- SRM_DATA} h -t 8.3628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 303 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.36853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 304 -a 0 -x {0.1 4194304.0 242 ------- SRM_DATA} + -t 8.36853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 304 -a 0 -x {0.1 4194304.0 242 ------- SRM_DATA} - -t 8.36853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 304 -a 0 -x {0.1 4194304.0 242 ------- SRM_DATA} h -t 8.36853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 304 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.37427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 305 -a 0 -x {0.1 4194304.0 243 ------- SRM_DATA} + -t 8.37427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 305 -a 0 -x {0.1 4194304.0 243 ------- SRM_DATA} - -t 8.37427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 305 -a 0 -x {0.1 4194304.0 243 ------- SRM_DATA} h -t 8.37427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 305 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.37707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 303 -a 0 -x {0.1 4194304.0 241 ------- SRM_DATA} r -t 8.37707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 303 -a 0 -x {0.1 4194304.0 241 ------- SRM_DATA} + -t 8.38 -s 0 -d 1 -p cbr -e 800 -c 0 -i 306 -a 0 -x {0.1 4194304.0 244 ------- SRM_DATA} - -t 8.38 -s 0 -d 1 -p cbr -e 800 -c 0 -i 306 -a 0 -x {0.1 4194304.0 244 ------- SRM_DATA} h -t 8.38 -s 0 -d 1 -p cbr -e 800 -c 0 -i 306 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.3828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 304 -a 0 -x {0.1 4194304.0 242 ------- SRM_DATA} + -t 8.3828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 304 -a 0 -x {0.1 4194304.0 242 ------- SRM_DATA} - -t 8.3828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 304 -a 0 -x {0.1 4194304.0 242 ------- SRM_DATA} h -t 8.3828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 304 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.3828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 304 -a 0 -x {0.1 4194304.0 242 ------- SRM_DATA} - -t 8.3828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 304 -a 0 -x {0.1 4194304.0 242 ------- SRM_DATA} h -t 8.3828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 304 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.38853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 305 -a 0 -x {0.1 4194304.0 243 ------- SRM_DATA} + -t 8.38853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 305 -a 0 -x {0.1 4194304.0 243 ------- SRM_DATA} - -t 8.38853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 305 -a 0 -x {0.1 4194304.0 243 ------- SRM_DATA} h -t 8.38853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 305 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.39427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 306 -a 0 -x {0.1 4194304.0 244 ------- SRM_DATA} + -t 8.39427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 306 -a 0 -x {0.1 4194304.0 244 ------- SRM_DATA} - -t 8.39427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 306 -a 0 -x {0.1 4194304.0 244 ------- SRM_DATA} h -t 8.39427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 306 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.39707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 304 -a 0 -x {0.1 4194304.0 242 ------- SRM_DATA} r -t 8.39707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 304 -a 0 -x {0.1 4194304.0 242 ------- SRM_DATA} + -t 8.4 -s 0 -d 1 -p cbr -e 800 -c 0 -i 307 -a 0 -x {0.1 4194304.0 245 ------- SRM_DATA} - -t 8.4 -s 0 -d 1 -p cbr -e 800 -c 0 -i 307 -a 0 -x {0.1 4194304.0 245 ------- SRM_DATA} h -t 8.4 -s 0 -d 1 -p cbr -e 800 -c 0 -i 307 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.4028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 305 -a 0 -x {0.1 4194304.0 243 ------- SRM_DATA} + -t 8.4028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 305 -a 0 -x {0.1 4194304.0 243 ------- SRM_DATA} - -t 8.4028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 305 -a 0 -x {0.1 4194304.0 243 ------- SRM_DATA} h -t 8.4028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 305 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.4028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 305 -a 0 -x {0.1 4194304.0 243 ------- SRM_DATA} - -t 8.4028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 305 -a 0 -x {0.1 4194304.0 243 ------- SRM_DATA} h -t 8.4028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 305 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.40853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 306 -a 0 -x {0.1 4194304.0 244 ------- SRM_DATA} + -t 8.40853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 306 -a 0 -x {0.1 4194304.0 244 ------- SRM_DATA} - -t 8.40853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 306 -a 0 -x {0.1 4194304.0 244 ------- SRM_DATA} h -t 8.40853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 306 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.41427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 307 -a 0 -x {0.1 4194304.0 245 ------- SRM_DATA} + -t 8.41427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 307 -a 0 -x {0.1 4194304.0 245 ------- SRM_DATA} - -t 8.41427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 307 -a 0 -x {0.1 4194304.0 245 ------- SRM_DATA} h -t 8.41427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 307 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.41707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 305 -a 0 -x {0.1 4194304.0 243 ------- SRM_DATA} r -t 8.41707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 305 -a 0 -x {0.1 4194304.0 243 ------- SRM_DATA} + -t 8.42 -s 0 -d 1 -p cbr -e 800 -c 0 -i 308 -a 0 -x {0.1 4194304.0 246 ------- SRM_DATA} - -t 8.42 -s 0 -d 1 -p cbr -e 800 -c 0 -i 308 -a 0 -x {0.1 4194304.0 246 ------- SRM_DATA} h -t 8.42 -s 0 -d 1 -p cbr -e 800 -c 0 -i 308 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.4228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 306 -a 0 -x {0.1 4194304.0 244 ------- SRM_DATA} + -t 8.4228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 306 -a 0 -x {0.1 4194304.0 244 ------- SRM_DATA} - -t 8.4228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 306 -a 0 -x {0.1 4194304.0 244 ------- SRM_DATA} h -t 8.4228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 306 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.4228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 306 -a 0 -x {0.1 4194304.0 244 ------- SRM_DATA} - -t 8.4228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 306 -a 0 -x {0.1 4194304.0 244 ------- SRM_DATA} h -t 8.4228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 306 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.42853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 307 -a 0 -x {0.1 4194304.0 245 ------- SRM_DATA} + -t 8.42853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 307 -a 0 -x {0.1 4194304.0 245 ------- SRM_DATA} - -t 8.42853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 307 -a 0 -x {0.1 4194304.0 245 ------- SRM_DATA} h -t 8.42853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 307 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.43427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 308 -a 0 -x {0.1 4194304.0 246 ------- SRM_DATA} + -t 8.43427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 308 -a 0 -x {0.1 4194304.0 246 ------- SRM_DATA} - -t 8.43427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 308 -a 0 -x {0.1 4194304.0 246 ------- SRM_DATA} h -t 8.43427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 308 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.43707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 306 -a 0 -x {0.1 4194304.0 244 ------- SRM_DATA} r -t 8.43707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 306 -a 0 -x {0.1 4194304.0 244 ------- SRM_DATA} + -t 8.44 -s 0 -d 1 -p cbr -e 800 -c 0 -i 309 -a 0 -x {0.1 4194304.0 247 ------- SRM_DATA} - -t 8.44 -s 0 -d 1 -p cbr -e 800 -c 0 -i 309 -a 0 -x {0.1 4194304.0 247 ------- SRM_DATA} h -t 8.44 -s 0 -d 1 -p cbr -e 800 -c 0 -i 309 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.4428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 307 -a 0 -x {0.1 4194304.0 245 ------- SRM_DATA} + -t 8.4428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 307 -a 0 -x {0.1 4194304.0 245 ------- SRM_DATA} - -t 8.4428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 307 -a 0 -x {0.1 4194304.0 245 ------- SRM_DATA} h -t 8.4428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 307 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.4428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 307 -a 0 -x {0.1 4194304.0 245 ------- SRM_DATA} - -t 8.4428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 307 -a 0 -x {0.1 4194304.0 245 ------- SRM_DATA} h -t 8.4428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 307 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.44853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 308 -a 0 -x {0.1 4194304.0 246 ------- SRM_DATA} + -t 8.44853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 308 -a 0 -x {0.1 4194304.0 246 ------- SRM_DATA} - -t 8.44853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 308 -a 0 -x {0.1 4194304.0 246 ------- SRM_DATA} h -t 8.44853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 308 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.45427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 309 -a 0 -x {0.1 4194304.0 247 ------- SRM_DATA} + -t 8.45427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 309 -a 0 -x {0.1 4194304.0 247 ------- SRM_DATA} - -t 8.45427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 309 -a 0 -x {0.1 4194304.0 247 ------- SRM_DATA} h -t 8.45427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 309 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.45707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 307 -a 0 -x {0.1 4194304.0 245 ------- SRM_DATA} r -t 8.45707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 307 -a 0 -x {0.1 4194304.0 245 ------- SRM_DATA} + -t 8.46 -s 0 -d 1 -p cbr -e 800 -c 0 -i 310 -a 0 -x {0.1 4194304.0 248 ------- SRM_DATA} - -t 8.46 -s 0 -d 1 -p cbr -e 800 -c 0 -i 310 -a 0 -x {0.1 4194304.0 248 ------- SRM_DATA} h -t 8.46 -s 0 -d 1 -p cbr -e 800 -c 0 -i 310 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.4628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 308 -a 0 -x {0.1 4194304.0 246 ------- SRM_DATA} + -t 8.4628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 308 -a 0 -x {0.1 4194304.0 246 ------- SRM_DATA} - -t 8.4628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 308 -a 0 -x {0.1 4194304.0 246 ------- SRM_DATA} h -t 8.4628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 308 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.4628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 308 -a 0 -x {0.1 4194304.0 246 ------- SRM_DATA} - -t 8.4628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 308 -a 0 -x {0.1 4194304.0 246 ------- SRM_DATA} h -t 8.4628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 308 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.46853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 309 -a 0 -x {0.1 4194304.0 247 ------- SRM_DATA} + -t 8.46853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 309 -a 0 -x {0.1 4194304.0 247 ------- SRM_DATA} - -t 8.46853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 309 -a 0 -x {0.1 4194304.0 247 ------- SRM_DATA} h -t 8.46853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 309 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.47427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 310 -a 0 -x {0.1 4194304.0 248 ------- SRM_DATA} + -t 8.47427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 310 -a 0 -x {0.1 4194304.0 248 ------- SRM_DATA} - -t 8.47427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 310 -a 0 -x {0.1 4194304.0 248 ------- SRM_DATA} h -t 8.47427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 310 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.47707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 308 -a 0 -x {0.1 4194304.0 246 ------- SRM_DATA} r -t 8.47707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 308 -a 0 -x {0.1 4194304.0 246 ------- SRM_DATA} + -t 8.48 -s 0 -d 1 -p cbr -e 800 -c 0 -i 311 -a 0 -x {0.1 4194304.0 249 ------- SRM_DATA} - -t 8.48 -s 0 -d 1 -p cbr -e 800 -c 0 -i 311 -a 0 -x {0.1 4194304.0 249 ------- SRM_DATA} h -t 8.48 -s 0 -d 1 -p cbr -e 800 -c 0 -i 311 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.4828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 309 -a 0 -x {0.1 4194304.0 247 ------- SRM_DATA} + -t 8.4828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 309 -a 0 -x {0.1 4194304.0 247 ------- SRM_DATA} - -t 8.4828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 309 -a 0 -x {0.1 4194304.0 247 ------- SRM_DATA} h -t 8.4828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 309 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.4828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 309 -a 0 -x {0.1 4194304.0 247 ------- SRM_DATA} - -t 8.4828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 309 -a 0 -x {0.1 4194304.0 247 ------- SRM_DATA} h -t 8.4828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 309 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.48853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 310 -a 0 -x {0.1 4194304.0 248 ------- SRM_DATA} + -t 8.48853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 310 -a 0 -x {0.1 4194304.0 248 ------- SRM_DATA} - -t 8.48853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 310 -a 0 -x {0.1 4194304.0 248 ------- SRM_DATA} h -t 8.48853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 310 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.49427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 311 -a 0 -x {0.1 4194304.0 249 ------- SRM_DATA} + -t 8.49427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 311 -a 0 -x {0.1 4194304.0 249 ------- SRM_DATA} - -t 8.49427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 311 -a 0 -x {0.1 4194304.0 249 ------- SRM_DATA} h -t 8.49427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 311 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.49707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 309 -a 0 -x {0.1 4194304.0 247 ------- SRM_DATA} r -t 8.49707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 309 -a 0 -x {0.1 4194304.0 247 ------- SRM_DATA} + -t 8.5 -s 0 -d 1 -p cbr -e 800 -c 0 -i 312 -a 0 -x {0.1 4194304.0 250 ------- SRM_DATA} - -t 8.5 -s 0 -d 1 -p cbr -e 800 -c 0 -i 312 -a 0 -x {0.1 4194304.0 250 ------- SRM_DATA} h -t 8.5 -s 0 -d 1 -p cbr -e 800 -c 0 -i 312 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.5028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 310 -a 0 -x {0.1 4194304.0 248 ------- SRM_DATA} + -t 8.5028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 310 -a 0 -x {0.1 4194304.0 248 ------- SRM_DATA} - -t 8.5028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 310 -a 0 -x {0.1 4194304.0 248 ------- SRM_DATA} h -t 8.5028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 310 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.5028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 310 -a 0 -x {0.1 4194304.0 248 ------- SRM_DATA} - -t 8.5028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 310 -a 0 -x {0.1 4194304.0 248 ------- SRM_DATA} h -t 8.5028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 310 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.50853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 311 -a 0 -x {0.1 4194304.0 249 ------- SRM_DATA} + -t 8.50853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 311 -a 0 -x {0.1 4194304.0 249 ------- SRM_DATA} - -t 8.50853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 311 -a 0 -x {0.1 4194304.0 249 ------- SRM_DATA} h -t 8.50853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 311 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.51427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 312 -a 0 -x {0.1 4194304.0 250 ------- SRM_DATA} + -t 8.51427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 312 -a 0 -x {0.1 4194304.0 250 ------- SRM_DATA} - -t 8.51427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 312 -a 0 -x {0.1 4194304.0 250 ------- SRM_DATA} h -t 8.51427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 312 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.51707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 310 -a 0 -x {0.1 4194304.0 248 ------- SRM_DATA} r -t 8.51707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 310 -a 0 -x {0.1 4194304.0 248 ------- SRM_DATA} + -t 8.52 -s 0 -d 1 -p cbr -e 800 -c 0 -i 313 -a 0 -x {0.1 4194304.0 251 ------- SRM_DATA} - -t 8.52 -s 0 -d 1 -p cbr -e 800 -c 0 -i 313 -a 0 -x {0.1 4194304.0 251 ------- SRM_DATA} h -t 8.52 -s 0 -d 1 -p cbr -e 800 -c 0 -i 313 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.5228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 311 -a 0 -x {0.1 4194304.0 249 ------- SRM_DATA} + -t 8.5228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 311 -a 0 -x {0.1 4194304.0 249 ------- SRM_DATA} - -t 8.5228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 311 -a 0 -x {0.1 4194304.0 249 ------- SRM_DATA} h -t 8.5228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 311 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.5228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 311 -a 0 -x {0.1 4194304.0 249 ------- SRM_DATA} - -t 8.5228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 311 -a 0 -x {0.1 4194304.0 249 ------- SRM_DATA} h -t 8.5228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 311 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.52853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 312 -a 0 -x {0.1 4194304.0 250 ------- SRM_DATA} + -t 8.52853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 312 -a 0 -x {0.1 4194304.0 250 ------- SRM_DATA} - -t 8.52853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 312 -a 0 -x {0.1 4194304.0 250 ------- SRM_DATA} h -t 8.52853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 312 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.53427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 313 -a 0 -x {0.1 4194304.0 251 ------- SRM_DATA} + -t 8.53427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 313 -a 0 -x {0.1 4194304.0 251 ------- SRM_DATA} - -t 8.53427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 313 -a 0 -x {0.1 4194304.0 251 ------- SRM_DATA} h -t 8.53427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 313 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.53707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 311 -a 0 -x {0.1 4194304.0 249 ------- SRM_DATA} r -t 8.53707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 311 -a 0 -x {0.1 4194304.0 249 ------- SRM_DATA} + -t 8.54 -s 0 -d 1 -p cbr -e 800 -c 0 -i 314 -a 0 -x {0.1 4194304.0 252 ------- SRM_DATA} - -t 8.54 -s 0 -d 1 -p cbr -e 800 -c 0 -i 314 -a 0 -x {0.1 4194304.0 252 ------- SRM_DATA} h -t 8.54 -s 0 -d 1 -p cbr -e 800 -c 0 -i 314 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.5428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 312 -a 0 -x {0.1 4194304.0 250 ------- SRM_DATA} + -t 8.5428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 312 -a 0 -x {0.1 4194304.0 250 ------- SRM_DATA} - -t 8.5428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 312 -a 0 -x {0.1 4194304.0 250 ------- SRM_DATA} h -t 8.5428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 312 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.5428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 312 -a 0 -x {0.1 4194304.0 250 ------- SRM_DATA} - -t 8.5428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 312 -a 0 -x {0.1 4194304.0 250 ------- SRM_DATA} h -t 8.5428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 312 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.54853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 313 -a 0 -x {0.1 4194304.0 251 ------- SRM_DATA} + -t 8.54853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 313 -a 0 -x {0.1 4194304.0 251 ------- SRM_DATA} - -t 8.54853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 313 -a 0 -x {0.1 4194304.0 251 ------- SRM_DATA} h -t 8.54853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 313 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.55427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 314 -a 0 -x {0.1 4194304.0 252 ------- SRM_DATA} + -t 8.55427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 314 -a 0 -x {0.1 4194304.0 252 ------- SRM_DATA} - -t 8.55427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 314 -a 0 -x {0.1 4194304.0 252 ------- SRM_DATA} h -t 8.55427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 314 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.55707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 312 -a 0 -x {0.1 4194304.0 250 ------- SRM_DATA} r -t 8.55707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 312 -a 0 -x {0.1 4194304.0 250 ------- SRM_DATA} + -t 8.56 -s 0 -d 1 -p cbr -e 800 -c 0 -i 315 -a 0 -x {0.1 4194304.0 253 ------- SRM_DATA} - -t 8.56 -s 0 -d 1 -p cbr -e 800 -c 0 -i 315 -a 0 -x {0.1 4194304.0 253 ------- SRM_DATA} h -t 8.56 -s 0 -d 1 -p cbr -e 800 -c 0 -i 315 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.5628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 313 -a 0 -x {0.1 4194304.0 251 ------- SRM_DATA} + -t 8.5628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 313 -a 0 -x {0.1 4194304.0 251 ------- SRM_DATA} - -t 8.5628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 313 -a 0 -x {0.1 4194304.0 251 ------- SRM_DATA} h -t 8.5628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 313 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.5628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 313 -a 0 -x {0.1 4194304.0 251 ------- SRM_DATA} - -t 8.5628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 313 -a 0 -x {0.1 4194304.0 251 ------- SRM_DATA} h -t 8.5628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 313 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.56853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 314 -a 0 -x {0.1 4194304.0 252 ------- SRM_DATA} + -t 8.56853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 314 -a 0 -x {0.1 4194304.0 252 ------- SRM_DATA} - -t 8.56853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 314 -a 0 -x {0.1 4194304.0 252 ------- SRM_DATA} h -t 8.56853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 314 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.57427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 315 -a 0 -x {0.1 4194304.0 253 ------- SRM_DATA} + -t 8.57427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 315 -a 0 -x {0.1 4194304.0 253 ------- SRM_DATA} - -t 8.57427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 315 -a 0 -x {0.1 4194304.0 253 ------- SRM_DATA} h -t 8.57427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 315 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.57707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 313 -a 0 -x {0.1 4194304.0 251 ------- SRM_DATA} r -t 8.57707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 313 -a 0 -x {0.1 4194304.0 251 ------- SRM_DATA} + -t 8.58 -s 0 -d 1 -p cbr -e 800 -c 0 -i 316 -a 0 -x {0.1 4194304.0 254 ------- SRM_DATA} - -t 8.58 -s 0 -d 1 -p cbr -e 800 -c 0 -i 316 -a 0 -x {0.1 4194304.0 254 ------- SRM_DATA} h -t 8.58 -s 0 -d 1 -p cbr -e 800 -c 0 -i 316 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.5828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 314 -a 0 -x {0.1 4194304.0 252 ------- SRM_DATA} + -t 8.5828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 314 -a 0 -x {0.1 4194304.0 252 ------- SRM_DATA} - -t 8.5828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 314 -a 0 -x {0.1 4194304.0 252 ------- SRM_DATA} h -t 8.5828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 314 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.5828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 314 -a 0 -x {0.1 4194304.0 252 ------- SRM_DATA} - -t 8.5828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 314 -a 0 -x {0.1 4194304.0 252 ------- SRM_DATA} h -t 8.5828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 314 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.58853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 315 -a 0 -x {0.1 4194304.0 253 ------- SRM_DATA} + -t 8.58853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 315 -a 0 -x {0.1 4194304.0 253 ------- SRM_DATA} - -t 8.58853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 315 -a 0 -x {0.1 4194304.0 253 ------- SRM_DATA} h -t 8.58853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 315 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} l -t 8.5899999999999999 -s 1 -d 0 -S DOWN v -t 8.5899999999999999 link-down 8.5899999999999999 1 0 d -t 8.59 -s 0 -d 1 -p cbr -e 800 -c 0 -i 316 -a 0 -x {0.1 4194304.0 254 ------- SRM_DATA} l -t 8.5899999999999999 -s 0 -d 1 -S DOWN v -t 8.5899999999999999 link-down 8.5899999999999999 0 1 r -t 8.59707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 314 -a 0 -x {0.1 4194304.0 252 ------- SRM_DATA} r -t 8.59707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 314 -a 0 -x {0.1 4194304.0 252 ------- SRM_DATA} r -t 8.6028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 315 -a 0 -x {0.1 4194304.0 253 ------- SRM_DATA} + -t 8.6028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 315 -a 0 -x {0.1 4194304.0 253 ------- SRM_DATA} - -t 8.6028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 315 -a 0 -x {0.1 4194304.0 253 ------- SRM_DATA} h -t 8.6028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 315 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.6028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 315 -a 0 -x {0.1 4194304.0 253 ------- SRM_DATA} - -t 8.6028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 315 -a 0 -x {0.1 4194304.0 253 ------- SRM_DATA} h -t 8.6028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 315 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} l -t 8.6099999999999994 -s 1 -d 0 -S UP v -t 8.6099999999999994 link-up 8.6099999999999994 1 0 l -t 8.6099999999999994 -s 0 -d 1 -S UP v -t 8.6099999999999994 link-up 8.6099999999999994 0 1 r -t 8.61707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 315 -a 0 -x {0.1 4194304.0 253 ------- SRM_DATA} r -t 8.61707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 315 -a 0 -x {0.1 4194304.0 253 ------- SRM_DATA} + -t 8.62 -s 0 -d 1 -p cbr -e 800 -c 0 -i 318 -a 0 -x {0.1 4194304.0 256 ------- SRM_DATA} - -t 8.62 -s 0 -d 1 -p cbr -e 800 -c 0 -i 318 -a 0 -x {0.1 4194304.0 256 ------- SRM_DATA} h -t 8.62 -s 0 -d 1 -p cbr -e 800 -c 0 -i 318 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.63427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 318 -a 0 -x {0.1 4194304.0 256 ------- SRM_DATA} f -t 8.63426666666656750 -s 1 -d 4194304 -n C2_ -a srm(1) -v 1.0999999999999992 -o 1.1999999999999993 -T v f -t 8.63426666666656750 -s 1 -d 4194304 -n C2_ -a srm(1) -v 0.99999999999999922 -o 1.0999999999999992 -T v f -t 8.63426666666656750 -s 1 -d 4194304 -n C1_ -a srm(1) -v 0.74999999999999911 -o 0.79999999999999916 -T v f -t 8.63426666666656750 -s 1 -d 4194304 -n C2_ -a srm(1) -v 1.0 -o 0.99999999999999922 -T v + -t 8.63427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 318 -a 0 -x {0.1 4194304.0 256 ------- SRM_DATA} - -t 8.63427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 318 -a 0 -x {0.1 4194304.0 256 ------- SRM_DATA} h -t 8.63427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 318 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.64 -s 0 -d 1 -p cbr -e 800 -c 0 -i 319 -a 0 -x {0.1 4194304.0 257 ------- SRM_DATA} - -t 8.64 -s 0 -d 1 -p cbr -e 800 -c 0 -i 319 -a 0 -x {0.1 4194304.0 257 ------- SRM_DATA} h -t 8.64 -s 0 -d 1 -p cbr -e 800 -c 0 -i 319 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.64853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 318 -a 0 -x {0.1 4194304.0 256 ------- SRM_DATA} f -t 8.64853333333323349 -s 2 -d 4194304 -n C1_ -a srm(2) -v 1.5499999999999996 -o 1.5999999999999996 -T v f -t 8.64853333333323349 -s 2 -d 4194304 -n C1_ -a srm(2) -v 1.4999999999999996 -o 1.5499999999999996 -T v + -t 8.64853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 318 -a 0 -x {0.1 4194304.0 256 ------- SRM_DATA} - -t 8.64853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 318 -a 0 -x {0.1 4194304.0 256 ------- SRM_DATA} h -t 8.64853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 318 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} f -t 8.64910464095126841 -s 1 -d 4194304 -n C1_ -a srm(1) -v 0.64999999999999913 -o 0.74999999999999911 -T v + -t 8.6491 -s 1 -d 0 -p SRM -e 16 -c 2 -i 320 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 8.6491 -s 1 -d 0 -p SRM -e 16 -c 2 -i 320 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 8.6491 -s 1 -d 0 -p SRM -e 16 -c 2 -i 320 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 8.6491 -s 1 -d 2 -p SRM -e 16 -c 2 -i 320 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 8.6491 -s 1 -d 2 -p SRM -e 16 -c 2 -i 320 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 8.6491 -s 1 -d 2 -p SRM -e 16 -c 2 -i 320 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} f -t 8.64979739662536851 -s 1 -d 4194304 -n C1_ -a srm(1) -v 0.54999999999999916 -o 0.64999999999999913 -T v + -t 8.6498 -s 1 -d 0 -p SRM -e 16 -c 2 -i 321 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 8.6498 -s 1 -d 0 -p SRM -e 16 -c 2 -i 321 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 8.6498 -s 1 -d 0 -p SRM -e 16 -c 2 -i 321 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 8.6498 -s 1 -d 2 -p SRM -e 16 -c 2 -i 321 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 8.6498 -s 1 -d 2 -p SRM -e 16 -c 2 -i 321 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 8.6498 -s 1 -d 2 -p SRM -e 16 -c 2 -i 321 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 8.65427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 319 -a 0 -x {0.1 4194304.0 257 ------- SRM_DATA} + -t 8.65427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 319 -a 0 -x {0.1 4194304.0 257 ------- SRM_DATA} - -t 8.65427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 319 -a 0 -x {0.1 4194304.0 257 ------- SRM_DATA} h -t 8.65427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 319 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.65919 -s 1 -d 0 -p SRM -e 16 -c 2 -i 320 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 8.65919 -s 1 -d 2 -p SRM -e 16 -c 2 -i 320 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 8.65919 -s 2 -d 3 -p SRM -e 16 -c 2 -i 320 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 8.65919 -s 2 -d 3 -p SRM -e 16 -c 2 -i 320 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 8.65919 -s 2 -d 3 -p SRM -e 16 -c 2 -i 320 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 8.65988 -s 1 -d 0 -p SRM -e 16 -c 2 -i 321 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 8.65988 -s 1 -d 2 -p SRM -e 16 -c 2 -i 321 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 8.65988 -s 2 -d 3 -p SRM -e 16 -c 2 -i 321 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 8.65988 -s 2 -d 3 -p SRM -e 16 -c 2 -i 321 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 8.65988 -s 2 -d 3 -p SRM -e 16 -c 2 -i 321 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 8.66 -s 0 -d 1 -p cbr -e 800 -c 0 -i 322 -a 0 -x {0.1 4194304.0 258 ------- SRM_DATA} - -t 8.66 -s 0 -d 1 -p cbr -e 800 -c 0 -i 322 -a 0 -x {0.1 4194304.0 258 ------- SRM_DATA} h -t 8.66 -s 0 -d 1 -p cbr -e 800 -c 0 -i 322 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.66262 -s 5 -d 3 -p SRM -e 116 -c 6 -i 323 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} - -t 8.66262 -s 5 -d 3 -p SRM -e 116 -c 6 -i 323 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} h -t 8.66262 -s 5 -d 3 -p SRM -e 116 -c 6 -i 323 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} r -t 8.6628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 318 -a 0 -x {0.1 4194304.0 256 ------- SRM_DATA} f -t 8.66279999999989947 -s 3 -d 4194304 -n C1_ -a srm(3) -v 1.5499999999999996 -o 1.5999999999999996 -T v f -t 8.66279999999989947 -s 3 -d 4194304 -n C1_ -a srm(3) -v 1.4999999999999996 -o 1.5499999999999996 -T v + -t 8.6628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 318 -a 0 -x {0.1 4194304.0 256 ------- SRM_DATA} - -t 8.6628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 318 -a 0 -x {0.1 4194304.0 256 ------- SRM_DATA} h -t 8.6628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 318 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.6628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 318 -a 0 -x {0.1 4194304.0 256 ------- SRM_DATA} - -t 8.6628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 318 -a 0 -x {0.1 4194304.0 256 ------- SRM_DATA} h -t 8.6628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 318 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.66447 -s 0 -d 1 -p SRM -e 816 -c 1 -i 324 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 8.66447 -s 0 -d 1 -p SRM -e 816 -c 1 -i 324 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 8.66447 -s 0 -d 1 -p SRM -e 816 -c 1 -i 324 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 8.66853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 319 -a 0 -x {0.1 4194304.0 257 ------- SRM_DATA} + -t 8.66853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 319 -a 0 -x {0.1 4194304.0 257 ------- SRM_DATA} - -t 8.66853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 319 -a 0 -x {0.1 4194304.0 257 ------- SRM_DATA} h -t 8.66853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 319 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.66928 -s 2 -d 3 -p SRM -e 16 -c 2 -i 320 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 8.66928 -s 3 -d 4 -p SRM -e 16 -c 2 -i 320 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 8.66928 -s 3 -d 4 -p SRM -e 16 -c 2 -i 320 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 8.66928 -s 3 -d 4 -p SRM -e 16 -c 2 -i 320 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 8.66928 -s 3 -d 5 -p SRM -e 16 -c 2 -i 320 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 8.66928 -s 3 -d 5 -p SRM -e 16 -c 2 -i 320 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 8.66928 -s 3 -d 5 -p SRM -e 16 -c 2 -i 320 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 8.66965 -s 0 -d 1 -p SRM -e 816 -c 1 -i 325 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 8.66965 -s 0 -d 1 -p SRM -e 816 -c 1 -i 325 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 8.66965 -s 0 -d 1 -p SRM -e 816 -c 1 -i 325 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 8.66997 -s 2 -d 3 -p SRM -e 16 -c 2 -i 321 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 8.66997 -s 3 -d 4 -p SRM -e 16 -c 2 -i 321 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 8.66997 -s 3 -d 4 -p SRM -e 16 -c 2 -i 321 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 8.66997 -s 3 -d 4 -p SRM -e 16 -c 2 -i 321 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 8.66997 -s 3 -d 5 -p SRM -e 16 -c 2 -i 321 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 8.66997 -s 3 -d 5 -p SRM -e 16 -c 2 -i 321 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 8.66997 -s 3 -d 5 -p SRM -e 16 -c 2 -i 321 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 8.67324 -s 5 -d 3 -p SRM -e 116 -c 6 -i 323 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} + -t 8.67324 -s 3 -d 2 -p SRM -e 116 -c 6 -i 323 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} - -t 8.67324 -s 3 -d 2 -p SRM -e 116 -c 6 -i 323 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} h -t 8.67324 -s 3 -d 2 -p SRM -e 116 -c 6 -i 323 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} + -t 8.67324 -s 3 -d 4 -p SRM -e 116 -c 6 -i 323 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} - -t 8.67324 -s 3 -d 4 -p SRM -e 116 -c 6 -i 323 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} h -t 8.67324 -s 3 -d 4 -p SRM -e 116 -c 6 -i 323 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} r -t 8.67427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 322 -a 0 -x {0.1 4194304.0 258 ------- SRM_DATA} + -t 8.67427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 322 -a 0 -x {0.1 4194304.0 258 ------- SRM_DATA} - -t 8.67427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 322 -a 0 -x {0.1 4194304.0 258 ------- SRM_DATA} h -t 8.67427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 322 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.67707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 318 -a 0 -x {0.1 4194304.0 256 ------- SRM_DATA} f -t 8.67706666666656545 -s 4 -d 4194304 -n C1_ -a srm(4) -v 1.5499999999999996 -o 1.5999999999999996 -T v f -t 8.67706666666656545 -s 4 -d 4194304 -n C1_ -a srm(4) -v 1.4999999999999996 -o 1.5499999999999996 -T v r -t 8.67707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 318 -a 0 -x {0.1 4194304.0 256 ------- SRM_DATA} f -t 8.67706666666656545 -s 5 -d 4194304 -n C1_ -a srm(5) -v 1.5499999999999996 -o 1.5999999999999996 -T v f -t 8.67706666666656545 -s 5 -d 4194304 -n C1_ -a srm(5) -v 1.4999999999999996 -o 1.5499999999999996 -T v + -t 8.67839 -s 1 -d 0 -p SRM -e 16 -c 2 -i 326 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 8.67839 -s 1 -d 0 -p SRM -e 16 -c 2 -i 326 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 8.67839 -s 1 -d 0 -p SRM -e 16 -c 2 -i 326 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 8.67839 -s 1 -d 2 -p SRM -e 16 -c 2 -i 326 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 8.67853 -s 1 -d 2 -p SRM -e 16 -c 2 -i 326 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 8.67853 -s 1 -d 2 -p SRM -e 16 -c 2 -i 326 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 8.67883 -s 0 -d 1 -p SRM -e 816 -c 1 -i 324 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 8.67883 -s 1 -d 2 -p SRM -e 816 -c 1 -i 324 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 8.67883 -s 1 -d 2 -p SRM -e 816 -c 1 -i 324 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 8.67883 -s 1 -d 2 -p SRM -e 816 -c 1 -i 324 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 8.67936 -s 3 -d 4 -p SRM -e 16 -c 2 -i 320 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 8.67936 -s 3 -d 5 -p SRM -e 16 -c 2 -i 320 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 8.68 -s 0 -d 1 -p cbr -e 800 -c 0 -i 327 -a 0 -x {0.1 4194304.0 259 ------- SRM_DATA} - -t 8.68 -s 0 -d 1 -p cbr -e 800 -c 0 -i 327 -a 0 -x {0.1 4194304.0 259 ------- SRM_DATA} h -t 8.68 -s 0 -d 1 -p cbr -e 800 -c 0 -i 327 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.68005 -s 3 -d 4 -p SRM -e 16 -c 2 -i 321 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 8.68005 -s 3 -d 5 -p SRM -e 16 -c 2 -i 321 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 8.6828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 319 -a 0 -x {0.1 4194304.0 257 ------- SRM_DATA} + -t 8.6828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 319 -a 0 -x {0.1 4194304.0 257 ------- SRM_DATA} - -t 8.6828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 319 -a 0 -x {0.1 4194304.0 257 ------- SRM_DATA} h -t 8.6828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 319 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.6828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 319 -a 0 -x {0.1 4194304.0 257 ------- SRM_DATA} - -t 8.6828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 319 -a 0 -x {0.1 4194304.0 257 ------- SRM_DATA} h -t 8.6828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 319 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.68386 -s 3 -d 2 -p SRM -e 116 -c 6 -i 323 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} + -t 8.68386 -s 2 -d 1 -p SRM -e 116 -c 6 -i 323 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} - -t 8.68386 -s 2 -d 1 -p SRM -e 116 -c 6 -i 323 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} h -t 8.68386 -s 2 -d 1 -p SRM -e 116 -c 6 -i 323 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} r -t 8.68386 -s 3 -d 4 -p SRM -e 116 -c 6 -i 323 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} r -t 8.684 -s 0 -d 1 -p SRM -e 816 -c 1 -i 325 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 8.684 -s 1 -d 2 -p SRM -e 816 -c 1 -i 325 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 8.684 -s 1 -d 2 -p SRM -e 816 -c 1 -i 325 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 8.684 -s 1 -d 2 -p SRM -e 816 -c 1 -i 325 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 8.68848 -s 1 -d 0 -p SRM -e 16 -c 2 -i 326 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 8.68853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 322 -a 0 -x {0.1 4194304.0 258 ------- SRM_DATA} + -t 8.68853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 322 -a 0 -x {0.1 4194304.0 258 ------- SRM_DATA} - -t 8.68853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 322 -a 0 -x {0.1 4194304.0 258 ------- SRM_DATA} h -t 8.68853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 322 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.68862 -s 1 -d 2 -p SRM -e 16 -c 2 -i 326 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 8.68862 -s 2 -d 3 -p SRM -e 16 -c 2 -i 326 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 8.6928 -s 2 -d 3 -p SRM -e 16 -c 2 -i 326 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 8.6928 -s 2 -d 3 -p SRM -e 16 -c 2 -i 326 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 8.69318 -s 1 -d 2 -p SRM -e 816 -c 1 -i 324 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 8.69318 -s 2 -d 3 -p SRM -e 816 -c 1 -i 324 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 8.69318 -s 2 -d 3 -p SRM -e 816 -c 1 -i 324 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 8.69318 -s 2 -d 3 -p SRM -e 816 -c 1 -i 324 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 8.69427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 327 -a 0 -x {0.1 4194304.0 259 ------- SRM_DATA} + -t 8.69427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 327 -a 0 -x {0.1 4194304.0 259 ------- SRM_DATA} - -t 8.69427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 327 -a 0 -x {0.1 4194304.0 259 ------- SRM_DATA} h -t 8.69427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 327 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.69448 -s 2 -d 1 -p SRM -e 116 -c 6 -i 323 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} + -t 8.69448 -s 1 -d 0 -p SRM -e 116 -c 6 -i 323 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} - -t 8.69448 -s 1 -d 0 -p SRM -e 116 -c 6 -i 323 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} h -t 8.69448 -s 1 -d 0 -p SRM -e 116 -c 6 -i 323 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} r -t 8.69707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 319 -a 0 -x {0.1 4194304.0 257 ------- SRM_DATA} r -t 8.69707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 319 -a 0 -x {0.1 4194304.0 257 ------- SRM_DATA} r -t 8.69835 -s 1 -d 2 -p SRM -e 816 -c 1 -i 325 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 8.69835 -s 2 -d 3 -p SRM -e 816 -c 1 -i 325 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 8.69835 -s 2 -d 3 -p SRM -e 816 -c 1 -i 325 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 8.69835 -s 2 -d 3 -p SRM -e 816 -c 1 -i 325 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 8.7 -s 0 -d 1 -p cbr -e 800 -c 0 -i 328 -a 0 -x {0.1 4194304.0 260 ------- SRM_DATA} - -t 8.7 -s 0 -d 1 -p cbr -e 800 -c 0 -i 328 -a 0 -x {0.1 4194304.0 260 ------- SRM_DATA} h -t 8.7 -s 0 -d 1 -p cbr -e 800 -c 0 -i 328 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.7028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 322 -a 0 -x {0.1 4194304.0 258 ------- SRM_DATA} + -t 8.7028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 322 -a 0 -x {0.1 4194304.0 258 ------- SRM_DATA} - -t 8.7028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 322 -a 0 -x {0.1 4194304.0 258 ------- SRM_DATA} h -t 8.7028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 322 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.7028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 322 -a 0 -x {0.1 4194304.0 258 ------- SRM_DATA} - -t 8.7028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 322 -a 0 -x {0.1 4194304.0 258 ------- SRM_DATA} h -t 8.7028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 322 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.70289 -s 2 -d 3 -p SRM -e 16 -c 2 -i 326 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 8.70289 -s 3 -d 4 -p SRM -e 16 -c 2 -i 326 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 8.70289 -s 3 -d 5 -p SRM -e 16 -c 2 -i 326 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 8.7051 -s 1 -d 0 -p SRM -e 116 -c 6 -i 323 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} - -t 8.70707 -s 3 -d 4 -p SRM -e 16 -c 2 -i 326 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 8.70707 -s 3 -d 4 -p SRM -e 16 -c 2 -i 326 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 8.70707 -s 3 -d 5 -p SRM -e 16 -c 2 -i 326 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 8.70707 -s 3 -d 5 -p SRM -e 16 -c 2 -i 326 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 8.70753 -s 2 -d 3 -p SRM -e 816 -c 1 -i 324 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 8.70753 -s 3 -d 4 -p SRM -e 816 -c 1 -i 324 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 8.70753 -s 3 -d 4 -p SRM -e 816 -c 1 -i 324 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 8.70753 -s 3 -d 4 -p SRM -e 816 -c 1 -i 324 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 8.70753 -s 3 -d 5 -p SRM -e 816 -c 1 -i 324 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 8.70753 -s 3 -d 5 -p SRM -e 816 -c 1 -i 324 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 8.70753 -s 3 -d 5 -p SRM -e 816 -c 1 -i 324 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 8.70853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 327 -a 0 -x {0.1 4194304.0 259 ------- SRM_DATA} + -t 8.70853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 327 -a 0 -x {0.1 4194304.0 259 ------- SRM_DATA} - -t 8.70853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 327 -a 0 -x {0.1 4194304.0 259 ------- SRM_DATA} h -t 8.70853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 327 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.7127 -s 2 -d 3 -p SRM -e 816 -c 1 -i 325 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 8.7127 -s 3 -d 4 -p SRM -e 816 -c 1 -i 325 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 8.7127 -s 3 -d 4 -p SRM -e 816 -c 1 -i 325 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 8.7127 -s 3 -d 4 -p SRM -e 816 -c 1 -i 325 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 8.7127 -s 3 -d 5 -p SRM -e 816 -c 1 -i 325 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 8.7127 -s 3 -d 5 -p SRM -e 816 -c 1 -i 325 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 8.7127 -s 3 -d 5 -p SRM -e 816 -c 1 -i 325 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 8.71427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 328 -a 0 -x {0.1 4194304.0 260 ------- SRM_DATA} + -t 8.71427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 328 -a 0 -x {0.1 4194304.0 260 ------- SRM_DATA} - -t 8.71427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 328 -a 0 -x {0.1 4194304.0 260 ------- SRM_DATA} h -t 8.71427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 328 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.71707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 322 -a 0 -x {0.1 4194304.0 258 ------- SRM_DATA} r -t 8.71707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 322 -a 0 -x {0.1 4194304.0 258 ------- SRM_DATA} r -t 8.71715 -s 3 -d 4 -p SRM -e 16 -c 2 -i 326 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 8.71715 -s 3 -d 5 -p SRM -e 16 -c 2 -i 326 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 8.72 -s 0 -d 1 -p cbr -e 800 -c 0 -i 329 -a 0 -x {0.1 4194304.0 261 ------- SRM_DATA} - -t 8.72 -s 0 -d 1 -p cbr -e 800 -c 0 -i 329 -a 0 -x {0.1 4194304.0 261 ------- SRM_DATA} h -t 8.72 -s 0 -d 1 -p cbr -e 800 -c 0 -i 329 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.72188 -s 3 -d 4 -p SRM -e 816 -c 1 -i 324 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 8.72188 -s 3 -d 5 -p SRM -e 816 -c 1 -i 324 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 8.7228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 327 -a 0 -x {0.1 4194304.0 259 ------- SRM_DATA} + -t 8.7228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 327 -a 0 -x {0.1 4194304.0 259 ------- SRM_DATA} - -t 8.7228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 327 -a 0 -x {0.1 4194304.0 259 ------- SRM_DATA} h -t 8.7228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 327 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.7228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 327 -a 0 -x {0.1 4194304.0 259 ------- SRM_DATA} - -t 8.7228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 327 -a 0 -x {0.1 4194304.0 259 ------- SRM_DATA} h -t 8.7228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 327 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.72706 -s 3 -d 4 -p SRM -e 816 -c 1 -i 325 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 8.72706 -s 3 -d 5 -p SRM -e 816 -c 1 -i 325 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 8.72853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 328 -a 0 -x {0.1 4194304.0 260 ------- SRM_DATA} + -t 8.72853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 328 -a 0 -x {0.1 4194304.0 260 ------- SRM_DATA} - -t 8.72853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 328 -a 0 -x {0.1 4194304.0 260 ------- SRM_DATA} h -t 8.72853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 328 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.73427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 329 -a 0 -x {0.1 4194304.0 261 ------- SRM_DATA} + -t 8.73427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 329 -a 0 -x {0.1 4194304.0 261 ------- SRM_DATA} - -t 8.73427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 329 -a 0 -x {0.1 4194304.0 261 ------- SRM_DATA} h -t 8.73427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 329 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.73707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 327 -a 0 -x {0.1 4194304.0 259 ------- SRM_DATA} r -t 8.73707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 327 -a 0 -x {0.1 4194304.0 259 ------- SRM_DATA} + -t 8.74 -s 0 -d 1 -p cbr -e 800 -c 0 -i 330 -a 0 -x {0.1 4194304.0 262 ------- SRM_DATA} - -t 8.74 -s 0 -d 1 -p cbr -e 800 -c 0 -i 330 -a 0 -x {0.1 4194304.0 262 ------- SRM_DATA} h -t 8.74 -s 0 -d 1 -p cbr -e 800 -c 0 -i 330 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.7428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 328 -a 0 -x {0.1 4194304.0 260 ------- SRM_DATA} + -t 8.7428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 328 -a 0 -x {0.1 4194304.0 260 ------- SRM_DATA} - -t 8.7428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 328 -a 0 -x {0.1 4194304.0 260 ------- SRM_DATA} h -t 8.7428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 328 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.7428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 328 -a 0 -x {0.1 4194304.0 260 ------- SRM_DATA} - -t 8.7428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 328 -a 0 -x {0.1 4194304.0 260 ------- SRM_DATA} h -t 8.7428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 328 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.74853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 329 -a 0 -x {0.1 4194304.0 261 ------- SRM_DATA} + -t 8.74853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 329 -a 0 -x {0.1 4194304.0 261 ------- SRM_DATA} - -t 8.74853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 329 -a 0 -x {0.1 4194304.0 261 ------- SRM_DATA} h -t 8.74853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 329 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.75427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 330 -a 0 -x {0.1 4194304.0 262 ------- SRM_DATA} + -t 8.75427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 330 -a 0 -x {0.1 4194304.0 262 ------- SRM_DATA} - -t 8.75427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 330 -a 0 -x {0.1 4194304.0 262 ------- SRM_DATA} h -t 8.75427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 330 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.75707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 328 -a 0 -x {0.1 4194304.0 260 ------- SRM_DATA} r -t 8.75707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 328 -a 0 -x {0.1 4194304.0 260 ------- SRM_DATA} + -t 8.76 -s 0 -d 1 -p cbr -e 800 -c 0 -i 331 -a 0 -x {0.1 4194304.0 263 ------- SRM_DATA} - -t 8.76 -s 0 -d 1 -p cbr -e 800 -c 0 -i 331 -a 0 -x {0.1 4194304.0 263 ------- SRM_DATA} h -t 8.76 -s 0 -d 1 -p cbr -e 800 -c 0 -i 331 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.7628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 329 -a 0 -x {0.1 4194304.0 261 ------- SRM_DATA} + -t 8.7628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 329 -a 0 -x {0.1 4194304.0 261 ------- SRM_DATA} - -t 8.7628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 329 -a 0 -x {0.1 4194304.0 261 ------- SRM_DATA} h -t 8.7628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 329 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.7628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 329 -a 0 -x {0.1 4194304.0 261 ------- SRM_DATA} - -t 8.7628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 329 -a 0 -x {0.1 4194304.0 261 ------- SRM_DATA} h -t 8.7628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 329 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.76853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 330 -a 0 -x {0.1 4194304.0 262 ------- SRM_DATA} + -t 8.76853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 330 -a 0 -x {0.1 4194304.0 262 ------- SRM_DATA} - -t 8.76853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 330 -a 0 -x {0.1 4194304.0 262 ------- SRM_DATA} h -t 8.76853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 330 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.77427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 331 -a 0 -x {0.1 4194304.0 263 ------- SRM_DATA} + -t 8.77427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 331 -a 0 -x {0.1 4194304.0 263 ------- SRM_DATA} - -t 8.77427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 331 -a 0 -x {0.1 4194304.0 263 ------- SRM_DATA} h -t 8.77427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 331 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.77707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 329 -a 0 -x {0.1 4194304.0 261 ------- SRM_DATA} r -t 8.77707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 329 -a 0 -x {0.1 4194304.0 261 ------- SRM_DATA} + -t 8.78 -s 0 -d 1 -p cbr -e 800 -c 0 -i 332 -a 0 -x {0.1 4194304.0 264 ------- SRM_DATA} - -t 8.78 -s 0 -d 1 -p cbr -e 800 -c 0 -i 332 -a 0 -x {0.1 4194304.0 264 ------- SRM_DATA} h -t 8.78 -s 0 -d 1 -p cbr -e 800 -c 0 -i 332 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.7828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 330 -a 0 -x {0.1 4194304.0 262 ------- SRM_DATA} + -t 8.7828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 330 -a 0 -x {0.1 4194304.0 262 ------- SRM_DATA} - -t 8.7828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 330 -a 0 -x {0.1 4194304.0 262 ------- SRM_DATA} h -t 8.7828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 330 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.7828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 330 -a 0 -x {0.1 4194304.0 262 ------- SRM_DATA} - -t 8.7828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 330 -a 0 -x {0.1 4194304.0 262 ------- SRM_DATA} h -t 8.7828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 330 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.78853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 331 -a 0 -x {0.1 4194304.0 263 ------- SRM_DATA} + -t 8.78853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 331 -a 0 -x {0.1 4194304.0 263 ------- SRM_DATA} - -t 8.78853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 331 -a 0 -x {0.1 4194304.0 263 ------- SRM_DATA} h -t 8.78853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 331 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.79427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 332 -a 0 -x {0.1 4194304.0 264 ------- SRM_DATA} + -t 8.79427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 332 -a 0 -x {0.1 4194304.0 264 ------- SRM_DATA} - -t 8.79427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 332 -a 0 -x {0.1 4194304.0 264 ------- SRM_DATA} h -t 8.79427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 332 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.79707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 330 -a 0 -x {0.1 4194304.0 262 ------- SRM_DATA} r -t 8.79707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 330 -a 0 -x {0.1 4194304.0 262 ------- SRM_DATA} + -t 8.8 -s 0 -d 1 -p cbr -e 800 -c 0 -i 333 -a 0 -x {0.1 4194304.0 265 ------- SRM_DATA} - -t 8.8 -s 0 -d 1 -p cbr -e 800 -c 0 -i 333 -a 0 -x {0.1 4194304.0 265 ------- SRM_DATA} h -t 8.8 -s 0 -d 1 -p cbr -e 800 -c 0 -i 333 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.8028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 331 -a 0 -x {0.1 4194304.0 263 ------- SRM_DATA} + -t 8.8028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 331 -a 0 -x {0.1 4194304.0 263 ------- SRM_DATA} - -t 8.8028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 331 -a 0 -x {0.1 4194304.0 263 ------- SRM_DATA} h -t 8.8028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 331 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.8028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 331 -a 0 -x {0.1 4194304.0 263 ------- SRM_DATA} - -t 8.8028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 331 -a 0 -x {0.1 4194304.0 263 ------- SRM_DATA} h -t 8.8028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 331 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.80853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 332 -a 0 -x {0.1 4194304.0 264 ------- SRM_DATA} + -t 8.80853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 332 -a 0 -x {0.1 4194304.0 264 ------- SRM_DATA} - -t 8.80853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 332 -a 0 -x {0.1 4194304.0 264 ------- SRM_DATA} h -t 8.80853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 332 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.81427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 333 -a 0 -x {0.1 4194304.0 265 ------- SRM_DATA} + -t 8.81427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 333 -a 0 -x {0.1 4194304.0 265 ------- SRM_DATA} - -t 8.81427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 333 -a 0 -x {0.1 4194304.0 265 ------- SRM_DATA} h -t 8.81427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 333 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.81707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 331 -a 0 -x {0.1 4194304.0 263 ------- SRM_DATA} r -t 8.81707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 331 -a 0 -x {0.1 4194304.0 263 ------- SRM_DATA} + -t 8.82 -s 0 -d 1 -p cbr -e 800 -c 0 -i 334 -a 0 -x {0.1 4194304.0 266 ------- SRM_DATA} - -t 8.82 -s 0 -d 1 -p cbr -e 800 -c 0 -i 334 -a 0 -x {0.1 4194304.0 266 ------- SRM_DATA} h -t 8.82 -s 0 -d 1 -p cbr -e 800 -c 0 -i 334 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.8228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 332 -a 0 -x {0.1 4194304.0 264 ------- SRM_DATA} + -t 8.8228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 332 -a 0 -x {0.1 4194304.0 264 ------- SRM_DATA} - -t 8.8228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 332 -a 0 -x {0.1 4194304.0 264 ------- SRM_DATA} h -t 8.8228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 332 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.8228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 332 -a 0 -x {0.1 4194304.0 264 ------- SRM_DATA} - -t 8.8228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 332 -a 0 -x {0.1 4194304.0 264 ------- SRM_DATA} h -t 8.8228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 332 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.82853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 333 -a 0 -x {0.1 4194304.0 265 ------- SRM_DATA} + -t 8.82853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 333 -a 0 -x {0.1 4194304.0 265 ------- SRM_DATA} - -t 8.82853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 333 -a 0 -x {0.1 4194304.0 265 ------- SRM_DATA} h -t 8.82853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 333 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.83427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 334 -a 0 -x {0.1 4194304.0 266 ------- SRM_DATA} + -t 8.83427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 334 -a 0 -x {0.1 4194304.0 266 ------- SRM_DATA} - -t 8.83427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 334 -a 0 -x {0.1 4194304.0 266 ------- SRM_DATA} h -t 8.83427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 334 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.83707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 332 -a 0 -x {0.1 4194304.0 264 ------- SRM_DATA} r -t 8.83707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 332 -a 0 -x {0.1 4194304.0 264 ------- SRM_DATA} + -t 8.84 -s 0 -d 1 -p cbr -e 800 -c 0 -i 335 -a 0 -x {0.1 4194304.0 267 ------- SRM_DATA} - -t 8.84 -s 0 -d 1 -p cbr -e 800 -c 0 -i 335 -a 0 -x {0.1 4194304.0 267 ------- SRM_DATA} h -t 8.84 -s 0 -d 1 -p cbr -e 800 -c 0 -i 335 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.8428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 333 -a 0 -x {0.1 4194304.0 265 ------- SRM_DATA} + -t 8.8428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 333 -a 0 -x {0.1 4194304.0 265 ------- SRM_DATA} - -t 8.8428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 333 -a 0 -x {0.1 4194304.0 265 ------- SRM_DATA} h -t 8.8428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 333 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.8428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 333 -a 0 -x {0.1 4194304.0 265 ------- SRM_DATA} - -t 8.8428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 333 -a 0 -x {0.1 4194304.0 265 ------- SRM_DATA} h -t 8.8428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 333 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.84853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 334 -a 0 -x {0.1 4194304.0 266 ------- SRM_DATA} + -t 8.84853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 334 -a 0 -x {0.1 4194304.0 266 ------- SRM_DATA} - -t 8.84853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 334 -a 0 -x {0.1 4194304.0 266 ------- SRM_DATA} h -t 8.84853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 334 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.85427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 335 -a 0 -x {0.1 4194304.0 267 ------- SRM_DATA} + -t 8.85427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 335 -a 0 -x {0.1 4194304.0 267 ------- SRM_DATA} - -t 8.85427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 335 -a 0 -x {0.1 4194304.0 267 ------- SRM_DATA} h -t 8.85427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 335 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.85707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 333 -a 0 -x {0.1 4194304.0 265 ------- SRM_DATA} r -t 8.85707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 333 -a 0 -x {0.1 4194304.0 265 ------- SRM_DATA} + -t 8.86 -s 0 -d 1 -p cbr -e 800 -c 0 -i 336 -a 0 -x {0.1 4194304.0 268 ------- SRM_DATA} - -t 8.86 -s 0 -d 1 -p cbr -e 800 -c 0 -i 336 -a 0 -x {0.1 4194304.0 268 ------- SRM_DATA} h -t 8.86 -s 0 -d 1 -p cbr -e 800 -c 0 -i 336 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.8628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 334 -a 0 -x {0.1 4194304.0 266 ------- SRM_DATA} + -t 8.8628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 334 -a 0 -x {0.1 4194304.0 266 ------- SRM_DATA} - -t 8.8628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 334 -a 0 -x {0.1 4194304.0 266 ------- SRM_DATA} h -t 8.8628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 334 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.8628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 334 -a 0 -x {0.1 4194304.0 266 ------- SRM_DATA} - -t 8.8628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 334 -a 0 -x {0.1 4194304.0 266 ------- SRM_DATA} h -t 8.8628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 334 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.86419 -s 2 -d 1 -p SRM -e 116 -c 3 -i 337 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} - -t 8.86419 -s 2 -d 1 -p SRM -e 116 -c 3 -i 337 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} h -t 8.86419 -s 2 -d 1 -p SRM -e 116 -c 3 -i 337 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} + -t 8.86419 -s 2 -d 3 -p SRM -e 116 -c 3 -i 337 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} - -t 8.86419 -s 2 -d 3 -p SRM -e 116 -c 3 -i 337 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} h -t 8.86419 -s 2 -d 3 -p SRM -e 116 -c 3 -i 337 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} r -t 8.86853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 335 -a 0 -x {0.1 4194304.0 267 ------- SRM_DATA} + -t 8.86853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 335 -a 0 -x {0.1 4194304.0 267 ------- SRM_DATA} - -t 8.86853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 335 -a 0 -x {0.1 4194304.0 267 ------- SRM_DATA} h -t 8.86853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 335 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.87427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 336 -a 0 -x {0.1 4194304.0 268 ------- SRM_DATA} + -t 8.87427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 336 -a 0 -x {0.1 4194304.0 268 ------- SRM_DATA} - -t 8.87427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 336 -a 0 -x {0.1 4194304.0 268 ------- SRM_DATA} h -t 8.87427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 336 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.87481 -s 2 -d 1 -p SRM -e 116 -c 3 -i 337 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} + -t 8.87481 -s 1 -d 0 -p SRM -e 116 -c 3 -i 337 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} - -t 8.87481 -s 1 -d 0 -p SRM -e 116 -c 3 -i 337 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} h -t 8.87481 -s 1 -d 0 -p SRM -e 116 -c 3 -i 337 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} r -t 8.87481 -s 2 -d 3 -p SRM -e 116 -c 3 -i 337 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} + -t 8.87481 -s 3 -d 4 -p SRM -e 116 -c 3 -i 337 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} - -t 8.87481 -s 3 -d 4 -p SRM -e 116 -c 3 -i 337 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} h -t 8.87481 -s 3 -d 4 -p SRM -e 116 -c 3 -i 337 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} + -t 8.87481 -s 3 -d 5 -p SRM -e 116 -c 3 -i 337 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} - -t 8.87481 -s 3 -d 5 -p SRM -e 116 -c 3 -i 337 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} h -t 8.87481 -s 3 -d 5 -p SRM -e 116 -c 3 -i 337 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} r -t 8.87707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 334 -a 0 -x {0.1 4194304.0 266 ------- SRM_DATA} r -t 8.87707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 334 -a 0 -x {0.1 4194304.0 266 ------- SRM_DATA} + -t 8.88 -s 0 -d 1 -p cbr -e 800 -c 0 -i 338 -a 0 -x {0.1 4194304.0 269 ------- SRM_DATA} - -t 8.88 -s 0 -d 1 -p cbr -e 800 -c 0 -i 338 -a 0 -x {0.1 4194304.0 269 ------- SRM_DATA} h -t 8.88 -s 0 -d 1 -p cbr -e 800 -c 0 -i 338 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.8828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 335 -a 0 -x {0.1 4194304.0 267 ------- SRM_DATA} + -t 8.8828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 335 -a 0 -x {0.1 4194304.0 267 ------- SRM_DATA} - -t 8.8828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 335 -a 0 -x {0.1 4194304.0 267 ------- SRM_DATA} h -t 8.8828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 335 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.8828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 335 -a 0 -x {0.1 4194304.0 267 ------- SRM_DATA} - -t 8.8828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 335 -a 0 -x {0.1 4194304.0 267 ------- SRM_DATA} h -t 8.8828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 335 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.88543 -s 1 -d 0 -p SRM -e 116 -c 3 -i 337 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} r -t 8.88543 -s 3 -d 4 -p SRM -e 116 -c 3 -i 337 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} r -t 8.88543 -s 3 -d 5 -p SRM -e 116 -c 3 -i 337 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} + -t 8.88809 -s 1 -d 0 -p SRM -e 116 -c 2 -i 339 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} - -t 8.88809 -s 1 -d 0 -p SRM -e 116 -c 2 -i 339 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} h -t 8.88809 -s 1 -d 0 -p SRM -e 116 -c 2 -i 339 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} + -t 8.88809 -s 1 -d 2 -p SRM -e 116 -c 2 -i 339 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} - -t 8.88809 -s 1 -d 2 -p SRM -e 116 -c 2 -i 339 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} h -t 8.88809 -s 1 -d 2 -p SRM -e 116 -c 2 -i 339 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} r -t 8.88853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 336 -a 0 -x {0.1 4194304.0 268 ------- SRM_DATA} + -t 8.88853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 336 -a 0 -x {0.1 4194304.0 268 ------- SRM_DATA} - -t 8.88853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 336 -a 0 -x {0.1 4194304.0 268 ------- SRM_DATA} h -t 8.88853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 336 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.89427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 338 -a 0 -x {0.1 4194304.0 269 ------- SRM_DATA} + -t 8.89427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 338 -a 0 -x {0.1 4194304.0 269 ------- SRM_DATA} - -t 8.89427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 338 -a 0 -x {0.1 4194304.0 269 ------- SRM_DATA} h -t 8.89427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 338 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.89707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 335 -a 0 -x {0.1 4194304.0 267 ------- SRM_DATA} r -t 8.89707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 335 -a 0 -x {0.1 4194304.0 267 ------- SRM_DATA} r -t 8.89871 -s 1 -d 0 -p SRM -e 116 -c 2 -i 339 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} r -t 8.89871 -s 1 -d 2 -p SRM -e 116 -c 2 -i 339 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} + -t 8.89871 -s 2 -d 3 -p SRM -e 116 -c 2 -i 339 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} - -t 8.89871 -s 2 -d 3 -p SRM -e 116 -c 2 -i 339 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} h -t 8.89871 -s 2 -d 3 -p SRM -e 116 -c 2 -i 339 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} + -t 8.9 -s 0 -d 1 -p cbr -e 800 -c 0 -i 340 -a 0 -x {0.1 4194304.0 270 ------- SRM_DATA} - -t 8.9 -s 0 -d 1 -p cbr -e 800 -c 0 -i 340 -a 0 -x {0.1 4194304.0 270 ------- SRM_DATA} h -t 8.9 -s 0 -d 1 -p cbr -e 800 -c 0 -i 340 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.9028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 336 -a 0 -x {0.1 4194304.0 268 ------- SRM_DATA} + -t 8.9028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 336 -a 0 -x {0.1 4194304.0 268 ------- SRM_DATA} - -t 8.9028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 336 -a 0 -x {0.1 4194304.0 268 ------- SRM_DATA} h -t 8.9028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 336 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.9028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 336 -a 0 -x {0.1 4194304.0 268 ------- SRM_DATA} - -t 8.9028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 336 -a 0 -x {0.1 4194304.0 268 ------- SRM_DATA} h -t 8.9028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 336 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.90853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 338 -a 0 -x {0.1 4194304.0 269 ------- SRM_DATA} + -t 8.90853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 338 -a 0 -x {0.1 4194304.0 269 ------- SRM_DATA} - -t 8.90853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 338 -a 0 -x {0.1 4194304.0 269 ------- SRM_DATA} h -t 8.90853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 338 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.90933 -s 2 -d 3 -p SRM -e 116 -c 2 -i 339 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} + -t 8.90933 -s 3 -d 4 -p SRM -e 116 -c 2 -i 339 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} - -t 8.90933 -s 3 -d 4 -p SRM -e 116 -c 2 -i 339 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} h -t 8.90933 -s 3 -d 4 -p SRM -e 116 -c 2 -i 339 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} + -t 8.90933 -s 3 -d 5 -p SRM -e 116 -c 2 -i 339 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} - -t 8.90933 -s 3 -d 5 -p SRM -e 116 -c 2 -i 339 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} h -t 8.90933 -s 3 -d 5 -p SRM -e 116 -c 2 -i 339 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} r -t 8.91427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 340 -a 0 -x {0.1 4194304.0 270 ------- SRM_DATA} + -t 8.91427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 340 -a 0 -x {0.1 4194304.0 270 ------- SRM_DATA} - -t 8.91427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 340 -a 0 -x {0.1 4194304.0 270 ------- SRM_DATA} h -t 8.91427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 340 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.91707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 336 -a 0 -x {0.1 4194304.0 268 ------- SRM_DATA} r -t 8.91707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 336 -a 0 -x {0.1 4194304.0 268 ------- SRM_DATA} r -t 8.91995 -s 3 -d 4 -p SRM -e 116 -c 2 -i 339 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} r -t 8.91995 -s 3 -d 5 -p SRM -e 116 -c 2 -i 339 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} + -t 8.92 -s 0 -d 1 -p cbr -e 800 -c 0 -i 341 -a 0 -x {0.1 4194304.0 271 ------- SRM_DATA} - -t 8.92 -s 0 -d 1 -p cbr -e 800 -c 0 -i 341 -a 0 -x {0.1 4194304.0 271 ------- SRM_DATA} h -t 8.92 -s 0 -d 1 -p cbr -e 800 -c 0 -i 341 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.9228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 338 -a 0 -x {0.1 4194304.0 269 ------- SRM_DATA} + -t 8.9228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 338 -a 0 -x {0.1 4194304.0 269 ------- SRM_DATA} - -t 8.9228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 338 -a 0 -x {0.1 4194304.0 269 ------- SRM_DATA} h -t 8.9228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 338 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.9228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 338 -a 0 -x {0.1 4194304.0 269 ------- SRM_DATA} - -t 8.9228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 338 -a 0 -x {0.1 4194304.0 269 ------- SRM_DATA} h -t 8.9228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 338 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.92853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 340 -a 0 -x {0.1 4194304.0 270 ------- SRM_DATA} + -t 8.92853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 340 -a 0 -x {0.1 4194304.0 270 ------- SRM_DATA} - -t 8.92853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 340 -a 0 -x {0.1 4194304.0 270 ------- SRM_DATA} h -t 8.92853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 340 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.93427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 341 -a 0 -x {0.1 4194304.0 271 ------- SRM_DATA} + -t 8.93427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 341 -a 0 -x {0.1 4194304.0 271 ------- SRM_DATA} - -t 8.93427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 341 -a 0 -x {0.1 4194304.0 271 ------- SRM_DATA} h -t 8.93427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 341 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.93707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 338 -a 0 -x {0.1 4194304.0 269 ------- SRM_DATA} r -t 8.93707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 338 -a 0 -x {0.1 4194304.0 269 ------- SRM_DATA} + -t 8.94 -s 0 -d 1 -p cbr -e 800 -c 0 -i 342 -a 0 -x {0.1 4194304.0 272 ------- SRM_DATA} - -t 8.94 -s 0 -d 1 -p cbr -e 800 -c 0 -i 342 -a 0 -x {0.1 4194304.0 272 ------- SRM_DATA} h -t 8.94 -s 0 -d 1 -p cbr -e 800 -c 0 -i 342 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.9428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 340 -a 0 -x {0.1 4194304.0 270 ------- SRM_DATA} + -t 8.9428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 340 -a 0 -x {0.1 4194304.0 270 ------- SRM_DATA} - -t 8.9428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 340 -a 0 -x {0.1 4194304.0 270 ------- SRM_DATA} h -t 8.9428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 340 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.9428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 340 -a 0 -x {0.1 4194304.0 270 ------- SRM_DATA} - -t 8.9428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 340 -a 0 -x {0.1 4194304.0 270 ------- SRM_DATA} h -t 8.9428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 340 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.94853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 341 -a 0 -x {0.1 4194304.0 271 ------- SRM_DATA} + -t 8.94853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 341 -a 0 -x {0.1 4194304.0 271 ------- SRM_DATA} - -t 8.94853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 341 -a 0 -x {0.1 4194304.0 271 ------- SRM_DATA} h -t 8.94853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 341 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.95427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 342 -a 0 -x {0.1 4194304.0 272 ------- SRM_DATA} + -t 8.95427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 342 -a 0 -x {0.1 4194304.0 272 ------- SRM_DATA} - -t 8.95427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 342 -a 0 -x {0.1 4194304.0 272 ------- SRM_DATA} h -t 8.95427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 342 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.95707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 340 -a 0 -x {0.1 4194304.0 270 ------- SRM_DATA} r -t 8.95707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 340 -a 0 -x {0.1 4194304.0 270 ------- SRM_DATA} + -t 8.96 -s 0 -d 1 -p cbr -e 800 -c 0 -i 343 -a 0 -x {0.1 4194304.0 273 ------- SRM_DATA} - -t 8.96 -s 0 -d 1 -p cbr -e 800 -c 0 -i 343 -a 0 -x {0.1 4194304.0 273 ------- SRM_DATA} h -t 8.96 -s 0 -d 1 -p cbr -e 800 -c 0 -i 343 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.9628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 341 -a 0 -x {0.1 4194304.0 271 ------- SRM_DATA} + -t 8.9628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 341 -a 0 -x {0.1 4194304.0 271 ------- SRM_DATA} - -t 8.9628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 341 -a 0 -x {0.1 4194304.0 271 ------- SRM_DATA} h -t 8.9628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 341 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.9628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 341 -a 0 -x {0.1 4194304.0 271 ------- SRM_DATA} - -t 8.9628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 341 -a 0 -x {0.1 4194304.0 271 ------- SRM_DATA} h -t 8.9628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 341 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.96853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 342 -a 0 -x {0.1 4194304.0 272 ------- SRM_DATA} + -t 8.96853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 342 -a 0 -x {0.1 4194304.0 272 ------- SRM_DATA} - -t 8.96853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 342 -a 0 -x {0.1 4194304.0 272 ------- SRM_DATA} h -t 8.96853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 342 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.97091 -s 4 -d 3 -p SRM -e 116 -c 5 -i 344 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} - -t 8.97091 -s 4 -d 3 -p SRM -e 116 -c 5 -i 344 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} h -t 8.97091 -s 4 -d 3 -p SRM -e 116 -c 5 -i 344 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} r -t 8.97427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 343 -a 0 -x {0.1 4194304.0 273 ------- SRM_DATA} + -t 8.97427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 343 -a 0 -x {0.1 4194304.0 273 ------- SRM_DATA} - -t 8.97427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 343 -a 0 -x {0.1 4194304.0 273 ------- SRM_DATA} h -t 8.97427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 343 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.97707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 341 -a 0 -x {0.1 4194304.0 271 ------- SRM_DATA} r -t 8.97707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 341 -a 0 -x {0.1 4194304.0 271 ------- SRM_DATA} + -t 8.98 -s 0 -d 1 -p cbr -e 800 -c 0 -i 345 -a 0 -x {0.1 4194304.0 274 ------- SRM_DATA} - -t 8.98 -s 0 -d 1 -p cbr -e 800 -c 0 -i 345 -a 0 -x {0.1 4194304.0 274 ------- SRM_DATA} h -t 8.98 -s 0 -d 1 -p cbr -e 800 -c 0 -i 345 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.98153 -s 4 -d 3 -p SRM -e 116 -c 5 -i 344 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} + -t 8.98153 -s 3 -d 2 -p SRM -e 116 -c 5 -i 344 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} - -t 8.98153 -s 3 -d 2 -p SRM -e 116 -c 5 -i 344 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} h -t 8.98153 -s 3 -d 2 -p SRM -e 116 -c 5 -i 344 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} + -t 8.98153 -s 3 -d 5 -p SRM -e 116 -c 5 -i 344 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} - -t 8.98153 -s 3 -d 5 -p SRM -e 116 -c 5 -i 344 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} h -t 8.98153 -s 3 -d 5 -p SRM -e 116 -c 5 -i 344 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} r -t 8.9828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 342 -a 0 -x {0.1 4194304.0 272 ------- SRM_DATA} + -t 8.9828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 342 -a 0 -x {0.1 4194304.0 272 ------- SRM_DATA} - -t 8.9828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 342 -a 0 -x {0.1 4194304.0 272 ------- SRM_DATA} h -t 8.9828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 342 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 8.9828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 342 -a 0 -x {0.1 4194304.0 272 ------- SRM_DATA} - -t 8.9828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 342 -a 0 -x {0.1 4194304.0 272 ------- SRM_DATA} h -t 8.9828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 342 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.98853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 343 -a 0 -x {0.1 4194304.0 273 ------- SRM_DATA} + -t 8.98853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 343 -a 0 -x {0.1 4194304.0 273 ------- SRM_DATA} - -t 8.98853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 343 -a 0 -x {0.1 4194304.0 273 ------- SRM_DATA} h -t 8.98853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 343 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.99215 -s 3 -d 2 -p SRM -e 116 -c 5 -i 344 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} + -t 8.99215 -s 2 -d 1 -p SRM -e 116 -c 5 -i 344 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} - -t 8.99215 -s 2 -d 1 -p SRM -e 116 -c 5 -i 344 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} h -t 8.99215 -s 2 -d 1 -p SRM -e 116 -c 5 -i 344 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} r -t 8.99215 -s 3 -d 5 -p SRM -e 116 -c 5 -i 344 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} + -t 8.99394 -s 0 -d 1 -p SRM -e 116 -c 1 -i 346 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} - -t 8.99394 -s 0 -d 1 -p SRM -e 116 -c 1 -i 346 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} h -t 8.99394 -s 0 -d 1 -p SRM -e 116 -c 1 -i 346 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} r -t 8.99427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 345 -a 0 -x {0.1 4194304.0 274 ------- SRM_DATA} + -t 8.99427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 345 -a 0 -x {0.1 4194304.0 274 ------- SRM_DATA} - -t 8.99427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 345 -a 0 -x {0.1 4194304.0 274 ------- SRM_DATA} h -t 8.99427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 345 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 8.99707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 342 -a 0 -x {0.1 4194304.0 272 ------- SRM_DATA} r -t 8.99707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 342 -a 0 -x {0.1 4194304.0 272 ------- SRM_DATA} + -t 9 -s 0 -d 1 -p cbr -e 800 -c 0 -i 347 -a 0 -x {0.1 4194304.0 275 ------- SRM_DATA} - -t 9 -s 0 -d 1 -p cbr -e 800 -c 0 -i 347 -a 0 -x {0.1 4194304.0 275 ------- SRM_DATA} h -t 9 -s 0 -d 1 -p cbr -e 800 -c 0 -i 347 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.00277 -s 2 -d 1 -p SRM -e 116 -c 5 -i 344 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} + -t 9.00277 -s 1 -d 0 -p SRM -e 116 -c 5 -i 344 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} - -t 9.00277 -s 1 -d 0 -p SRM -e 116 -c 5 -i 344 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} h -t 9.00277 -s 1 -d 0 -p SRM -e 116 -c 5 -i 344 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} r -t 9.0028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 343 -a 0 -x {0.1 4194304.0 273 ------- SRM_DATA} + -t 9.0028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 343 -a 0 -x {0.1 4194304.0 273 ------- SRM_DATA} - -t 9.0028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 343 -a 0 -x {0.1 4194304.0 273 ------- SRM_DATA} h -t 9.0028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 343 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.0028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 343 -a 0 -x {0.1 4194304.0 273 ------- SRM_DATA} - -t 9.0028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 343 -a 0 -x {0.1 4194304.0 273 ------- SRM_DATA} h -t 9.0028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 343 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.00455 -s 0 -d 1 -p SRM -e 116 -c 1 -i 346 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} + -t 9.00455 -s 1 -d 2 -p SRM -e 116 -c 1 -i 346 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} - -t 9.00455 -s 1 -d 2 -p SRM -e 116 -c 1 -i 346 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} h -t 9.00455 -s 1 -d 2 -p SRM -e 116 -c 1 -i 346 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} r -t 9.00853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 345 -a 0 -x {0.1 4194304.0 274 ------- SRM_DATA} + -t 9.00853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 345 -a 0 -x {0.1 4194304.0 274 ------- SRM_DATA} - -t 9.00853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 345 -a 0 -x {0.1 4194304.0 274 ------- SRM_DATA} h -t 9.00853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 345 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.01339 -s 1 -d 0 -p SRM -e 116 -c 5 -i 344 -a 5 -x {4.1 4194304.0 -1 ------- SRM_SESS} r -t 9.01427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 347 -a 0 -x {0.1 4194304.0 275 ------- SRM_DATA} + -t 9.01427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 347 -a 0 -x {0.1 4194304.0 275 ------- SRM_DATA} - -t 9.01427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 347 -a 0 -x {0.1 4194304.0 275 ------- SRM_DATA} h -t 9.01427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 347 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.01517 -s 1 -d 2 -p SRM -e 116 -c 1 -i 346 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} + -t 9.01517 -s 2 -d 3 -p SRM -e 116 -c 1 -i 346 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} - -t 9.01517 -s 2 -d 3 -p SRM -e 116 -c 1 -i 346 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} h -t 9.01517 -s 2 -d 3 -p SRM -e 116 -c 1 -i 346 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} r -t 9.01707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 343 -a 0 -x {0.1 4194304.0 273 ------- SRM_DATA} r -t 9.01707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 343 -a 0 -x {0.1 4194304.0 273 ------- SRM_DATA} + -t 9.02 -s 0 -d 1 -p cbr -e 800 -c 0 -i 348 -a 0 -x {0.1 4194304.0 276 ------- SRM_DATA} - -t 9.02 -s 0 -d 1 -p cbr -e 800 -c 0 -i 348 -a 0 -x {0.1 4194304.0 276 ------- SRM_DATA} h -t 9.02 -s 0 -d 1 -p cbr -e 800 -c 0 -i 348 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.0228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 345 -a 0 -x {0.1 4194304.0 274 ------- SRM_DATA} + -t 9.0228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 345 -a 0 -x {0.1 4194304.0 274 ------- SRM_DATA} - -t 9.0228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 345 -a 0 -x {0.1 4194304.0 274 ------- SRM_DATA} h -t 9.0228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 345 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.0228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 345 -a 0 -x {0.1 4194304.0 274 ------- SRM_DATA} - -t 9.0228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 345 -a 0 -x {0.1 4194304.0 274 ------- SRM_DATA} h -t 9.0228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 345 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.02579 -s 2 -d 3 -p SRM -e 116 -c 1 -i 346 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} + -t 9.02579 -s 3 -d 4 -p SRM -e 116 -c 1 -i 346 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} + -t 9.02579 -s 3 -d 5 -p SRM -e 116 -c 1 -i 346 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} - -t 9.02707 -s 3 -d 4 -p SRM -e 116 -c 1 -i 346 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} h -t 9.02707 -s 3 -d 4 -p SRM -e 116 -c 1 -i 346 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} - -t 9.02707 -s 3 -d 5 -p SRM -e 116 -c 1 -i 346 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} h -t 9.02707 -s 3 -d 5 -p SRM -e 116 -c 1 -i 346 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} r -t 9.02853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 347 -a 0 -x {0.1 4194304.0 275 ------- SRM_DATA} + -t 9.02853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 347 -a 0 -x {0.1 4194304.0 275 ------- SRM_DATA} - -t 9.02853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 347 -a 0 -x {0.1 4194304.0 275 ------- SRM_DATA} h -t 9.02853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 347 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.03427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 348 -a 0 -x {0.1 4194304.0 276 ------- SRM_DATA} + -t 9.03427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 348 -a 0 -x {0.1 4194304.0 276 ------- SRM_DATA} - -t 9.03427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 348 -a 0 -x {0.1 4194304.0 276 ------- SRM_DATA} h -t 9.03427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 348 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.03707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 345 -a 0 -x {0.1 4194304.0 274 ------- SRM_DATA} r -t 9.03707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 345 -a 0 -x {0.1 4194304.0 274 ------- SRM_DATA} r -t 9.03769 -s 3 -d 4 -p SRM -e 116 -c 1 -i 346 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} r -t 9.03769 -s 3 -d 5 -p SRM -e 116 -c 1 -i 346 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} + -t 9.04 -s 0 -d 1 -p cbr -e 800 -c 0 -i 349 -a 0 -x {0.1 4194304.0 277 ------- SRM_DATA} - -t 9.04 -s 0 -d 1 -p cbr -e 800 -c 0 -i 349 -a 0 -x {0.1 4194304.0 277 ------- SRM_DATA} h -t 9.04 -s 0 -d 1 -p cbr -e 800 -c 0 -i 349 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.0428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 347 -a 0 -x {0.1 4194304.0 275 ------- SRM_DATA} + -t 9.0428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 347 -a 0 -x {0.1 4194304.0 275 ------- SRM_DATA} - -t 9.0428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 347 -a 0 -x {0.1 4194304.0 275 ------- SRM_DATA} h -t 9.0428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 347 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.0428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 347 -a 0 -x {0.1 4194304.0 275 ------- SRM_DATA} - -t 9.0428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 347 -a 0 -x {0.1 4194304.0 275 ------- SRM_DATA} h -t 9.0428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 347 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.04853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 348 -a 0 -x {0.1 4194304.0 276 ------- SRM_DATA} + -t 9.04853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 348 -a 0 -x {0.1 4194304.0 276 ------- SRM_DATA} - -t 9.04853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 348 -a 0 -x {0.1 4194304.0 276 ------- SRM_DATA} h -t 9.04853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 348 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.05427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 349 -a 0 -x {0.1 4194304.0 277 ------- SRM_DATA} + -t 9.05427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 349 -a 0 -x {0.1 4194304.0 277 ------- SRM_DATA} - -t 9.05427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 349 -a 0 -x {0.1 4194304.0 277 ------- SRM_DATA} h -t 9.05427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 349 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.05707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 347 -a 0 -x {0.1 4194304.0 275 ------- SRM_DATA} r -t 9.05707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 347 -a 0 -x {0.1 4194304.0 275 ------- SRM_DATA} + -t 9.06 -s 0 -d 1 -p cbr -e 800 -c 0 -i 350 -a 0 -x {0.1 4194304.0 278 ------- SRM_DATA} - -t 9.06 -s 0 -d 1 -p cbr -e 800 -c 0 -i 350 -a 0 -x {0.1 4194304.0 278 ------- SRM_DATA} h -t 9.06 -s 0 -d 1 -p cbr -e 800 -c 0 -i 350 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.0628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 348 -a 0 -x {0.1 4194304.0 276 ------- SRM_DATA} + -t 9.0628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 348 -a 0 -x {0.1 4194304.0 276 ------- SRM_DATA} - -t 9.0628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 348 -a 0 -x {0.1 4194304.0 276 ------- SRM_DATA} h -t 9.0628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 348 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.0628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 348 -a 0 -x {0.1 4194304.0 276 ------- SRM_DATA} - -t 9.0628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 348 -a 0 -x {0.1 4194304.0 276 ------- SRM_DATA} h -t 9.0628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 348 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.06853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 349 -a 0 -x {0.1 4194304.0 277 ------- SRM_DATA} + -t 9.06853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 349 -a 0 -x {0.1 4194304.0 277 ------- SRM_DATA} - -t 9.06853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 349 -a 0 -x {0.1 4194304.0 277 ------- SRM_DATA} h -t 9.06853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 349 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.07427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 350 -a 0 -x {0.1 4194304.0 278 ------- SRM_DATA} + -t 9.07427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 350 -a 0 -x {0.1 4194304.0 278 ------- SRM_DATA} - -t 9.07427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 350 -a 0 -x {0.1 4194304.0 278 ------- SRM_DATA} h -t 9.07427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 350 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.07707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 348 -a 0 -x {0.1 4194304.0 276 ------- SRM_DATA} r -t 9.07707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 348 -a 0 -x {0.1 4194304.0 276 ------- SRM_DATA} + -t 9.08 -s 0 -d 1 -p cbr -e 800 -c 0 -i 351 -a 0 -x {0.1 4194304.0 279 ------- SRM_DATA} - -t 9.08 -s 0 -d 1 -p cbr -e 800 -c 0 -i 351 -a 0 -x {0.1 4194304.0 279 ------- SRM_DATA} h -t 9.08 -s 0 -d 1 -p cbr -e 800 -c 0 -i 351 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.0828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 349 -a 0 -x {0.1 4194304.0 277 ------- SRM_DATA} + -t 9.0828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 349 -a 0 -x {0.1 4194304.0 277 ------- SRM_DATA} - -t 9.0828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 349 -a 0 -x {0.1 4194304.0 277 ------- SRM_DATA} h -t 9.0828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 349 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.0828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 349 -a 0 -x {0.1 4194304.0 277 ------- SRM_DATA} - -t 9.0828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 349 -a 0 -x {0.1 4194304.0 277 ------- SRM_DATA} h -t 9.0828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 349 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.08853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 350 -a 0 -x {0.1 4194304.0 278 ------- SRM_DATA} + -t 9.08853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 350 -a 0 -x {0.1 4194304.0 278 ------- SRM_DATA} - -t 9.08853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 350 -a 0 -x {0.1 4194304.0 278 ------- SRM_DATA} h -t 9.08853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 350 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.09427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 351 -a 0 -x {0.1 4194304.0 279 ------- SRM_DATA} + -t 9.09427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 351 -a 0 -x {0.1 4194304.0 279 ------- SRM_DATA} - -t 9.09427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 351 -a 0 -x {0.1 4194304.0 279 ------- SRM_DATA} h -t 9.09427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 351 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.09707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 349 -a 0 -x {0.1 4194304.0 277 ------- SRM_DATA} r -t 9.09707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 349 -a 0 -x {0.1 4194304.0 277 ------- SRM_DATA} + -t 9.1 -s 0 -d 1 -p cbr -e 800 -c 0 -i 352 -a 0 -x {0.1 4194304.0 280 ------- SRM_DATA} - -t 9.1 -s 0 -d 1 -p cbr -e 800 -c 0 -i 352 -a 0 -x {0.1 4194304.0 280 ------- SRM_DATA} h -t 9.1 -s 0 -d 1 -p cbr -e 800 -c 0 -i 352 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.10099 -s 3 -d 2 -p SRM -e 116 -c 4 -i 353 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} - -t 9.10099 -s 3 -d 2 -p SRM -e 116 -c 4 -i 353 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} h -t 9.10099 -s 3 -d 2 -p SRM -e 116 -c 4 -i 353 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} + -t 9.10099 -s 3 -d 4 -p SRM -e 116 -c 4 -i 353 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} - -t 9.10099 -s 3 -d 4 -p SRM -e 116 -c 4 -i 353 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} h -t 9.10099 -s 3 -d 4 -p SRM -e 116 -c 4 -i 353 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} + -t 9.10099 -s 3 -d 5 -p SRM -e 116 -c 4 -i 353 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} - -t 9.10099 -s 3 -d 5 -p SRM -e 116 -c 4 -i 353 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} h -t 9.10099 -s 3 -d 5 -p SRM -e 116 -c 4 -i 353 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} r -t 9.1028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 350 -a 0 -x {0.1 4194304.0 278 ------- SRM_DATA} + -t 9.1028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 350 -a 0 -x {0.1 4194304.0 278 ------- SRM_DATA} - -t 9.1028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 350 -a 0 -x {0.1 4194304.0 278 ------- SRM_DATA} h -t 9.1028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 350 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.1028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 350 -a 0 -x {0.1 4194304.0 278 ------- SRM_DATA} - -t 9.1028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 350 -a 0 -x {0.1 4194304.0 278 ------- SRM_DATA} h -t 9.1028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 350 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.10853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 351 -a 0 -x {0.1 4194304.0 279 ------- SRM_DATA} + -t 9.10853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 351 -a 0 -x {0.1 4194304.0 279 ------- SRM_DATA} - -t 9.10853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 351 -a 0 -x {0.1 4194304.0 279 ------- SRM_DATA} h -t 9.10853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 351 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.1116 -s 3 -d 2 -p SRM -e 116 -c 4 -i 353 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} + -t 9.1116 -s 2 -d 1 -p SRM -e 116 -c 4 -i 353 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} - -t 9.1116 -s 2 -d 1 -p SRM -e 116 -c 4 -i 353 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} h -t 9.1116 -s 2 -d 1 -p SRM -e 116 -c 4 -i 353 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} r -t 9.1116 -s 3 -d 4 -p SRM -e 116 -c 4 -i 353 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} r -t 9.1116 -s 3 -d 5 -p SRM -e 116 -c 4 -i 353 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} r -t 9.11427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 352 -a 0 -x {0.1 4194304.0 280 ------- SRM_DATA} + -t 9.11427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 352 -a 0 -x {0.1 4194304.0 280 ------- SRM_DATA} - -t 9.11427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 352 -a 0 -x {0.1 4194304.0 280 ------- SRM_DATA} h -t 9.11427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 352 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.11707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 350 -a 0 -x {0.1 4194304.0 278 ------- SRM_DATA} r -t 9.11707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 350 -a 0 -x {0.1 4194304.0 278 ------- SRM_DATA} + -t 9.12 -s 0 -d 1 -p cbr -e 800 -c 0 -i 354 -a 0 -x {0.1 4194304.0 281 ------- SRM_DATA} - -t 9.12 -s 0 -d 1 -p cbr -e 800 -c 0 -i 354 -a 0 -x {0.1 4194304.0 281 ------- SRM_DATA} h -t 9.12 -s 0 -d 1 -p cbr -e 800 -c 0 -i 354 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.12222 -s 2 -d 1 -p SRM -e 116 -c 4 -i 353 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} + -t 9.12222 -s 1 -d 0 -p SRM -e 116 -c 4 -i 353 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} - -t 9.12222 -s 1 -d 0 -p SRM -e 116 -c 4 -i 353 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} h -t 9.12222 -s 1 -d 0 -p SRM -e 116 -c 4 -i 353 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} r -t 9.1228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 351 -a 0 -x {0.1 4194304.0 279 ------- SRM_DATA} + -t 9.1228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 351 -a 0 -x {0.1 4194304.0 279 ------- SRM_DATA} - -t 9.1228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 351 -a 0 -x {0.1 4194304.0 279 ------- SRM_DATA} h -t 9.1228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 351 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.1228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 351 -a 0 -x {0.1 4194304.0 279 ------- SRM_DATA} - -t 9.1228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 351 -a 0 -x {0.1 4194304.0 279 ------- SRM_DATA} h -t 9.1228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 351 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.12853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 352 -a 0 -x {0.1 4194304.0 280 ------- SRM_DATA} + -t 9.12853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 352 -a 0 -x {0.1 4194304.0 280 ------- SRM_DATA} - -t 9.12853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 352 -a 0 -x {0.1 4194304.0 280 ------- SRM_DATA} h -t 9.12853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 352 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.13284 -s 1 -d 0 -p SRM -e 116 -c 4 -i 353 -a 4 -x {3.1 4194304.0 -1 ------- SRM_SESS} r -t 9.13427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 354 -a 0 -x {0.1 4194304.0 281 ------- SRM_DATA} + -t 9.13427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 354 -a 0 -x {0.1 4194304.0 281 ------- SRM_DATA} - -t 9.13427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 354 -a 0 -x {0.1 4194304.0 281 ------- SRM_DATA} h -t 9.13427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 354 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.13707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 351 -a 0 -x {0.1 4194304.0 279 ------- SRM_DATA} r -t 9.13707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 351 -a 0 -x {0.1 4194304.0 279 ------- SRM_DATA} + -t 9.14 -s 0 -d 1 -p cbr -e 800 -c 0 -i 355 -a 0 -x {0.1 4194304.0 282 ------- SRM_DATA} - -t 9.14 -s 0 -d 1 -p cbr -e 800 -c 0 -i 355 -a 0 -x {0.1 4194304.0 282 ------- SRM_DATA} h -t 9.14 -s 0 -d 1 -p cbr -e 800 -c 0 -i 355 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.1428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 352 -a 0 -x {0.1 4194304.0 280 ------- SRM_DATA} + -t 9.1428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 352 -a 0 -x {0.1 4194304.0 280 ------- SRM_DATA} - -t 9.1428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 352 -a 0 -x {0.1 4194304.0 280 ------- SRM_DATA} h -t 9.1428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 352 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.1428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 352 -a 0 -x {0.1 4194304.0 280 ------- SRM_DATA} - -t 9.1428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 352 -a 0 -x {0.1 4194304.0 280 ------- SRM_DATA} h -t 9.1428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 352 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.14853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 354 -a 0 -x {0.1 4194304.0 281 ------- SRM_DATA} + -t 9.14853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 354 -a 0 -x {0.1 4194304.0 281 ------- SRM_DATA} - -t 9.14853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 354 -a 0 -x {0.1 4194304.0 281 ------- SRM_DATA} h -t 9.14853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 354 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.15427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 355 -a 0 -x {0.1 4194304.0 282 ------- SRM_DATA} + -t 9.15427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 355 -a 0 -x {0.1 4194304.0 282 ------- SRM_DATA} - -t 9.15427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 355 -a 0 -x {0.1 4194304.0 282 ------- SRM_DATA} h -t 9.15427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 355 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.15707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 352 -a 0 -x {0.1 4194304.0 280 ------- SRM_DATA} r -t 9.15707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 352 -a 0 -x {0.1 4194304.0 280 ------- SRM_DATA} + -t 9.16 -s 0 -d 1 -p cbr -e 800 -c 0 -i 356 -a 0 -x {0.1 4194304.0 283 ------- SRM_DATA} - -t 9.16 -s 0 -d 1 -p cbr -e 800 -c 0 -i 356 -a 0 -x {0.1 4194304.0 283 ------- SRM_DATA} h -t 9.16 -s 0 -d 1 -p cbr -e 800 -c 0 -i 356 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.1628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 354 -a 0 -x {0.1 4194304.0 281 ------- SRM_DATA} + -t 9.1628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 354 -a 0 -x {0.1 4194304.0 281 ------- SRM_DATA} - -t 9.1628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 354 -a 0 -x {0.1 4194304.0 281 ------- SRM_DATA} h -t 9.1628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 354 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.1628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 354 -a 0 -x {0.1 4194304.0 281 ------- SRM_DATA} - -t 9.1628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 354 -a 0 -x {0.1 4194304.0 281 ------- SRM_DATA} h -t 9.1628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 354 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.16853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 355 -a 0 -x {0.1 4194304.0 282 ------- SRM_DATA} + -t 9.16853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 355 -a 0 -x {0.1 4194304.0 282 ------- SRM_DATA} - -t 9.16853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 355 -a 0 -x {0.1 4194304.0 282 ------- SRM_DATA} h -t 9.16853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 355 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.17427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 356 -a 0 -x {0.1 4194304.0 283 ------- SRM_DATA} + -t 9.17427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 356 -a 0 -x {0.1 4194304.0 283 ------- SRM_DATA} - -t 9.17427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 356 -a 0 -x {0.1 4194304.0 283 ------- SRM_DATA} h -t 9.17427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 356 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.17707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 354 -a 0 -x {0.1 4194304.0 281 ------- SRM_DATA} r -t 9.17707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 354 -a 0 -x {0.1 4194304.0 281 ------- SRM_DATA} + -t 9.18 -s 0 -d 1 -p cbr -e 800 -c 0 -i 357 -a 0 -x {0.1 4194304.0 284 ------- SRM_DATA} - -t 9.18 -s 0 -d 1 -p cbr -e 800 -c 0 -i 357 -a 0 -x {0.1 4194304.0 284 ------- SRM_DATA} h -t 9.18 -s 0 -d 1 -p cbr -e 800 -c 0 -i 357 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.1828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 355 -a 0 -x {0.1 4194304.0 282 ------- SRM_DATA} + -t 9.1828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 355 -a 0 -x {0.1 4194304.0 282 ------- SRM_DATA} - -t 9.1828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 355 -a 0 -x {0.1 4194304.0 282 ------- SRM_DATA} h -t 9.1828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 355 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.1828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 355 -a 0 -x {0.1 4194304.0 282 ------- SRM_DATA} - -t 9.1828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 355 -a 0 -x {0.1 4194304.0 282 ------- SRM_DATA} h -t 9.1828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 355 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.18853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 356 -a 0 -x {0.1 4194304.0 283 ------- SRM_DATA} + -t 9.18853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 356 -a 0 -x {0.1 4194304.0 283 ------- SRM_DATA} - -t 9.18853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 356 -a 0 -x {0.1 4194304.0 283 ------- SRM_DATA} h -t 9.18853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 356 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.19427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 357 -a 0 -x {0.1 4194304.0 284 ------- SRM_DATA} + -t 9.19427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 357 -a 0 -x {0.1 4194304.0 284 ------- SRM_DATA} - -t 9.19427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 357 -a 0 -x {0.1 4194304.0 284 ------- SRM_DATA} h -t 9.19427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 357 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.19707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 355 -a 0 -x {0.1 4194304.0 282 ------- SRM_DATA} r -t 9.19707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 355 -a 0 -x {0.1 4194304.0 282 ------- SRM_DATA} + -t 9.2 -s 0 -d 1 -p cbr -e 800 -c 0 -i 358 -a 0 -x {0.1 4194304.0 285 ------- SRM_DATA} - -t 9.2 -s 0 -d 1 -p cbr -e 800 -c 0 -i 358 -a 0 -x {0.1 4194304.0 285 ------- SRM_DATA} h -t 9.2 -s 0 -d 1 -p cbr -e 800 -c 0 -i 358 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.2028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 356 -a 0 -x {0.1 4194304.0 283 ------- SRM_DATA} + -t 9.2028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 356 -a 0 -x {0.1 4194304.0 283 ------- SRM_DATA} - -t 9.2028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 356 -a 0 -x {0.1 4194304.0 283 ------- SRM_DATA} h -t 9.2028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 356 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.2028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 356 -a 0 -x {0.1 4194304.0 283 ------- SRM_DATA} - -t 9.2028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 356 -a 0 -x {0.1 4194304.0 283 ------- SRM_DATA} h -t 9.2028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 356 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.20853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 357 -a 0 -x {0.1 4194304.0 284 ------- SRM_DATA} + -t 9.20853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 357 -a 0 -x {0.1 4194304.0 284 ------- SRM_DATA} - -t 9.20853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 357 -a 0 -x {0.1 4194304.0 284 ------- SRM_DATA} h -t 9.20853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 357 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.21427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 358 -a 0 -x {0.1 4194304.0 285 ------- SRM_DATA} + -t 9.21427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 358 -a 0 -x {0.1 4194304.0 285 ------- SRM_DATA} - -t 9.21427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 358 -a 0 -x {0.1 4194304.0 285 ------- SRM_DATA} h -t 9.21427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 358 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.21707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 356 -a 0 -x {0.1 4194304.0 283 ------- SRM_DATA} r -t 9.21707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 356 -a 0 -x {0.1 4194304.0 283 ------- SRM_DATA} + -t 9.22 -s 0 -d 1 -p cbr -e 800 -c 0 -i 359 -a 0 -x {0.1 4194304.0 286 ------- SRM_DATA} - -t 9.22 -s 0 -d 1 -p cbr -e 800 -c 0 -i 359 -a 0 -x {0.1 4194304.0 286 ------- SRM_DATA} h -t 9.22 -s 0 -d 1 -p cbr -e 800 -c 0 -i 359 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.2228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 357 -a 0 -x {0.1 4194304.0 284 ------- SRM_DATA} + -t 9.2228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 357 -a 0 -x {0.1 4194304.0 284 ------- SRM_DATA} - -t 9.2228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 357 -a 0 -x {0.1 4194304.0 284 ------- SRM_DATA} h -t 9.2228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 357 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.2228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 357 -a 0 -x {0.1 4194304.0 284 ------- SRM_DATA} - -t 9.2228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 357 -a 0 -x {0.1 4194304.0 284 ------- SRM_DATA} h -t 9.2228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 357 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.22853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 358 -a 0 -x {0.1 4194304.0 285 ------- SRM_DATA} + -t 9.22853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 358 -a 0 -x {0.1 4194304.0 285 ------- SRM_DATA} - -t 9.22853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 358 -a 0 -x {0.1 4194304.0 285 ------- SRM_DATA} h -t 9.22853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 358 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.23427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 359 -a 0 -x {0.1 4194304.0 286 ------- SRM_DATA} + -t 9.23427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 359 -a 0 -x {0.1 4194304.0 286 ------- SRM_DATA} - -t 9.23427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 359 -a 0 -x {0.1 4194304.0 286 ------- SRM_DATA} h -t 9.23427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 359 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.23707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 357 -a 0 -x {0.1 4194304.0 284 ------- SRM_DATA} r -t 9.23707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 357 -a 0 -x {0.1 4194304.0 284 ------- SRM_DATA} + -t 9.24 -s 0 -d 1 -p cbr -e 800 -c 0 -i 360 -a 0 -x {0.1 4194304.0 287 ------- SRM_DATA} - -t 9.24 -s 0 -d 1 -p cbr -e 800 -c 0 -i 360 -a 0 -x {0.1 4194304.0 287 ------- SRM_DATA} h -t 9.24 -s 0 -d 1 -p cbr -e 800 -c 0 -i 360 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.2428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 358 -a 0 -x {0.1 4194304.0 285 ------- SRM_DATA} + -t 9.2428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 358 -a 0 -x {0.1 4194304.0 285 ------- SRM_DATA} - -t 9.2428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 358 -a 0 -x {0.1 4194304.0 285 ------- SRM_DATA} h -t 9.2428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 358 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.2428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 358 -a 0 -x {0.1 4194304.0 285 ------- SRM_DATA} - -t 9.2428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 358 -a 0 -x {0.1 4194304.0 285 ------- SRM_DATA} h -t 9.2428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 358 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.24853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 359 -a 0 -x {0.1 4194304.0 286 ------- SRM_DATA} + -t 9.24853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 359 -a 0 -x {0.1 4194304.0 286 ------- SRM_DATA} - -t 9.24853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 359 -a 0 -x {0.1 4194304.0 286 ------- SRM_DATA} h -t 9.24853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 359 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.25427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 360 -a 0 -x {0.1 4194304.0 287 ------- SRM_DATA} + -t 9.25427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 360 -a 0 -x {0.1 4194304.0 287 ------- SRM_DATA} - -t 9.25427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 360 -a 0 -x {0.1 4194304.0 287 ------- SRM_DATA} h -t 9.25427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 360 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.25707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 358 -a 0 -x {0.1 4194304.0 285 ------- SRM_DATA} r -t 9.25707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 358 -a 0 -x {0.1 4194304.0 285 ------- SRM_DATA} + -t 9.26 -s 0 -d 1 -p cbr -e 800 -c 0 -i 361 -a 0 -x {0.1 4194304.0 288 ------- SRM_DATA} - -t 9.26 -s 0 -d 1 -p cbr -e 800 -c 0 -i 361 -a 0 -x {0.1 4194304.0 288 ------- SRM_DATA} h -t 9.26 -s 0 -d 1 -p cbr -e 800 -c 0 -i 361 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.2628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 359 -a 0 -x {0.1 4194304.0 286 ------- SRM_DATA} + -t 9.2628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 359 -a 0 -x {0.1 4194304.0 286 ------- SRM_DATA} - -t 9.2628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 359 -a 0 -x {0.1 4194304.0 286 ------- SRM_DATA} h -t 9.2628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 359 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.2628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 359 -a 0 -x {0.1 4194304.0 286 ------- SRM_DATA} - -t 9.2628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 359 -a 0 -x {0.1 4194304.0 286 ------- SRM_DATA} h -t 9.2628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 359 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.26853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 360 -a 0 -x {0.1 4194304.0 287 ------- SRM_DATA} + -t 9.26853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 360 -a 0 -x {0.1 4194304.0 287 ------- SRM_DATA} - -t 9.26853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 360 -a 0 -x {0.1 4194304.0 287 ------- SRM_DATA} h -t 9.26853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 360 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.27427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 361 -a 0 -x {0.1 4194304.0 288 ------- SRM_DATA} + -t 9.27427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 361 -a 0 -x {0.1 4194304.0 288 ------- SRM_DATA} - -t 9.27427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 361 -a 0 -x {0.1 4194304.0 288 ------- SRM_DATA} h -t 9.27427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 361 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.27707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 359 -a 0 -x {0.1 4194304.0 286 ------- SRM_DATA} r -t 9.27707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 359 -a 0 -x {0.1 4194304.0 286 ------- SRM_DATA} + -t 9.28 -s 0 -d 1 -p cbr -e 800 -c 0 -i 362 -a 0 -x {0.1 4194304.0 289 ------- SRM_DATA} - -t 9.28 -s 0 -d 1 -p cbr -e 800 -c 0 -i 362 -a 0 -x {0.1 4194304.0 289 ------- SRM_DATA} h -t 9.28 -s 0 -d 1 -p cbr -e 800 -c 0 -i 362 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.2828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 360 -a 0 -x {0.1 4194304.0 287 ------- SRM_DATA} + -t 9.2828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 360 -a 0 -x {0.1 4194304.0 287 ------- SRM_DATA} - -t 9.2828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 360 -a 0 -x {0.1 4194304.0 287 ------- SRM_DATA} h -t 9.2828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 360 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.2828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 360 -a 0 -x {0.1 4194304.0 287 ------- SRM_DATA} - -t 9.2828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 360 -a 0 -x {0.1 4194304.0 287 ------- SRM_DATA} h -t 9.2828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 360 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.28853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 361 -a 0 -x {0.1 4194304.0 288 ------- SRM_DATA} + -t 9.28853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 361 -a 0 -x {0.1 4194304.0 288 ------- SRM_DATA} - -t 9.28853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 361 -a 0 -x {0.1 4194304.0 288 ------- SRM_DATA} h -t 9.28853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 361 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.29427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 362 -a 0 -x {0.1 4194304.0 289 ------- SRM_DATA} + -t 9.29427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 362 -a 0 -x {0.1 4194304.0 289 ------- SRM_DATA} - -t 9.29427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 362 -a 0 -x {0.1 4194304.0 289 ------- SRM_DATA} h -t 9.29427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 362 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.29707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 360 -a 0 -x {0.1 4194304.0 287 ------- SRM_DATA} r -t 9.29707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 360 -a 0 -x {0.1 4194304.0 287 ------- SRM_DATA} + -t 9.3 -s 0 -d 1 -p cbr -e 800 -c 0 -i 363 -a 0 -x {0.1 4194304.0 290 ------- SRM_DATA} - -t 9.3 -s 0 -d 1 -p cbr -e 800 -c 0 -i 363 -a 0 -x {0.1 4194304.0 290 ------- SRM_DATA} h -t 9.3 -s 0 -d 1 -p cbr -e 800 -c 0 -i 363 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.3028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 361 -a 0 -x {0.1 4194304.0 288 ------- SRM_DATA} + -t 9.3028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 361 -a 0 -x {0.1 4194304.0 288 ------- SRM_DATA} - -t 9.3028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 361 -a 0 -x {0.1 4194304.0 288 ------- SRM_DATA} h -t 9.3028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 361 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.3028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 361 -a 0 -x {0.1 4194304.0 288 ------- SRM_DATA} - -t 9.3028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 361 -a 0 -x {0.1 4194304.0 288 ------- SRM_DATA} h -t 9.3028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 361 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.30853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 362 -a 0 -x {0.1 4194304.0 289 ------- SRM_DATA} + -t 9.30853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 362 -a 0 -x {0.1 4194304.0 289 ------- SRM_DATA} - -t 9.30853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 362 -a 0 -x {0.1 4194304.0 289 ------- SRM_DATA} h -t 9.30853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 362 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.31427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 363 -a 0 -x {0.1 4194304.0 290 ------- SRM_DATA} + -t 9.31427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 363 -a 0 -x {0.1 4194304.0 290 ------- SRM_DATA} - -t 9.31427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 363 -a 0 -x {0.1 4194304.0 290 ------- SRM_DATA} h -t 9.31427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 363 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.31707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 361 -a 0 -x {0.1 4194304.0 288 ------- SRM_DATA} r -t 9.31707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 361 -a 0 -x {0.1 4194304.0 288 ------- SRM_DATA} + -t 9.32 -s 0 -d 1 -p cbr -e 800 -c 0 -i 364 -a 0 -x {0.1 4194304.0 291 ------- SRM_DATA} - -t 9.32 -s 0 -d 1 -p cbr -e 800 -c 0 -i 364 -a 0 -x {0.1 4194304.0 291 ------- SRM_DATA} h -t 9.32 -s 0 -d 1 -p cbr -e 800 -c 0 -i 364 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.3228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 362 -a 0 -x {0.1 4194304.0 289 ------- SRM_DATA} + -t 9.3228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 362 -a 0 -x {0.1 4194304.0 289 ------- SRM_DATA} - -t 9.3228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 362 -a 0 -x {0.1 4194304.0 289 ------- SRM_DATA} h -t 9.3228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 362 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.3228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 362 -a 0 -x {0.1 4194304.0 289 ------- SRM_DATA} - -t 9.3228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 362 -a 0 -x {0.1 4194304.0 289 ------- SRM_DATA} h -t 9.3228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 362 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.32853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 363 -a 0 -x {0.1 4194304.0 290 ------- SRM_DATA} + -t 9.32853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 363 -a 0 -x {0.1 4194304.0 290 ------- SRM_DATA} - -t 9.32853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 363 -a 0 -x {0.1 4194304.0 290 ------- SRM_DATA} h -t 9.32853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 363 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.33427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 364 -a 0 -x {0.1 4194304.0 291 ------- SRM_DATA} + -t 9.33427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 364 -a 0 -x {0.1 4194304.0 291 ------- SRM_DATA} - -t 9.33427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 364 -a 0 -x {0.1 4194304.0 291 ------- SRM_DATA} h -t 9.33427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 364 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.33707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 362 -a 0 -x {0.1 4194304.0 289 ------- SRM_DATA} r -t 9.33707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 362 -a 0 -x {0.1 4194304.0 289 ------- SRM_DATA} + -t 9.34 -s 0 -d 1 -p cbr -e 800 -c 0 -i 365 -a 0 -x {0.1 4194304.0 292 ------- SRM_DATA} - -t 9.34 -s 0 -d 1 -p cbr -e 800 -c 0 -i 365 -a 0 -x {0.1 4194304.0 292 ------- SRM_DATA} h -t 9.34 -s 0 -d 1 -p cbr -e 800 -c 0 -i 365 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.3428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 363 -a 0 -x {0.1 4194304.0 290 ------- SRM_DATA} + -t 9.3428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 363 -a 0 -x {0.1 4194304.0 290 ------- SRM_DATA} - -t 9.3428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 363 -a 0 -x {0.1 4194304.0 290 ------- SRM_DATA} h -t 9.3428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 363 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.3428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 363 -a 0 -x {0.1 4194304.0 290 ------- SRM_DATA} - -t 9.3428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 363 -a 0 -x {0.1 4194304.0 290 ------- SRM_DATA} h -t 9.3428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 363 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.34853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 364 -a 0 -x {0.1 4194304.0 291 ------- SRM_DATA} + -t 9.34853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 364 -a 0 -x {0.1 4194304.0 291 ------- SRM_DATA} - -t 9.34853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 364 -a 0 -x {0.1 4194304.0 291 ------- SRM_DATA} h -t 9.34853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 364 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.35427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 365 -a 0 -x {0.1 4194304.0 292 ------- SRM_DATA} + -t 9.35427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 365 -a 0 -x {0.1 4194304.0 292 ------- SRM_DATA} - -t 9.35427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 365 -a 0 -x {0.1 4194304.0 292 ------- SRM_DATA} h -t 9.35427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 365 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.35707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 363 -a 0 -x {0.1 4194304.0 290 ------- SRM_DATA} r -t 9.35707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 363 -a 0 -x {0.1 4194304.0 290 ------- SRM_DATA} + -t 9.36 -s 0 -d 1 -p cbr -e 800 -c 0 -i 366 -a 0 -x {0.1 4194304.0 293 ------- SRM_DATA} - -t 9.36 -s 0 -d 1 -p cbr -e 800 -c 0 -i 366 -a 0 -x {0.1 4194304.0 293 ------- SRM_DATA} h -t 9.36 -s 0 -d 1 -p cbr -e 800 -c 0 -i 366 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.3628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 364 -a 0 -x {0.1 4194304.0 291 ------- SRM_DATA} + -t 9.3628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 364 -a 0 -x {0.1 4194304.0 291 ------- SRM_DATA} - -t 9.3628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 364 -a 0 -x {0.1 4194304.0 291 ------- SRM_DATA} h -t 9.3628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 364 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.3628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 364 -a 0 -x {0.1 4194304.0 291 ------- SRM_DATA} - -t 9.3628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 364 -a 0 -x {0.1 4194304.0 291 ------- SRM_DATA} h -t 9.3628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 364 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.36853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 365 -a 0 -x {0.1 4194304.0 292 ------- SRM_DATA} + -t 9.36853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 365 -a 0 -x {0.1 4194304.0 292 ------- SRM_DATA} - -t 9.36853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 365 -a 0 -x {0.1 4194304.0 292 ------- SRM_DATA} h -t 9.36853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 365 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.37427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 366 -a 0 -x {0.1 4194304.0 293 ------- SRM_DATA} + -t 9.37427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 366 -a 0 -x {0.1 4194304.0 293 ------- SRM_DATA} - -t 9.37427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 366 -a 0 -x {0.1 4194304.0 293 ------- SRM_DATA} h -t 9.37427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 366 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.37707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 364 -a 0 -x {0.1 4194304.0 291 ------- SRM_DATA} r -t 9.37707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 364 -a 0 -x {0.1 4194304.0 291 ------- SRM_DATA} + -t 9.38 -s 0 -d 1 -p cbr -e 800 -c 0 -i 367 -a 0 -x {0.1 4194304.0 294 ------- SRM_DATA} - -t 9.38 -s 0 -d 1 -p cbr -e 800 -c 0 -i 367 -a 0 -x {0.1 4194304.0 294 ------- SRM_DATA} h -t 9.38 -s 0 -d 1 -p cbr -e 800 -c 0 -i 367 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.3828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 365 -a 0 -x {0.1 4194304.0 292 ------- SRM_DATA} + -t 9.3828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 365 -a 0 -x {0.1 4194304.0 292 ------- SRM_DATA} - -t 9.3828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 365 -a 0 -x {0.1 4194304.0 292 ------- SRM_DATA} h -t 9.3828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 365 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.3828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 365 -a 0 -x {0.1 4194304.0 292 ------- SRM_DATA} - -t 9.3828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 365 -a 0 -x {0.1 4194304.0 292 ------- SRM_DATA} h -t 9.3828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 365 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.38853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 366 -a 0 -x {0.1 4194304.0 293 ------- SRM_DATA} + -t 9.38853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 366 -a 0 -x {0.1 4194304.0 293 ------- SRM_DATA} - -t 9.38853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 366 -a 0 -x {0.1 4194304.0 293 ------- SRM_DATA} h -t 9.38853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 366 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.39427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 367 -a 0 -x {0.1 4194304.0 294 ------- SRM_DATA} + -t 9.39427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 367 -a 0 -x {0.1 4194304.0 294 ------- SRM_DATA} - -t 9.39427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 367 -a 0 -x {0.1 4194304.0 294 ------- SRM_DATA} h -t 9.39427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 367 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.39707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 365 -a 0 -x {0.1 4194304.0 292 ------- SRM_DATA} r -t 9.39707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 365 -a 0 -x {0.1 4194304.0 292 ------- SRM_DATA} + -t 9.4 -s 0 -d 1 -p cbr -e 800 -c 0 -i 368 -a 0 -x {0.1 4194304.0 295 ------- SRM_DATA} - -t 9.4 -s 0 -d 1 -p cbr -e 800 -c 0 -i 368 -a 0 -x {0.1 4194304.0 295 ------- SRM_DATA} h -t 9.4 -s 0 -d 1 -p cbr -e 800 -c 0 -i 368 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.4028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 366 -a 0 -x {0.1 4194304.0 293 ------- SRM_DATA} + -t 9.4028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 366 -a 0 -x {0.1 4194304.0 293 ------- SRM_DATA} - -t 9.4028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 366 -a 0 -x {0.1 4194304.0 293 ------- SRM_DATA} h -t 9.4028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 366 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.4028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 366 -a 0 -x {0.1 4194304.0 293 ------- SRM_DATA} - -t 9.4028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 366 -a 0 -x {0.1 4194304.0 293 ------- SRM_DATA} h -t 9.4028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 366 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.40853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 367 -a 0 -x {0.1 4194304.0 294 ------- SRM_DATA} + -t 9.40853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 367 -a 0 -x {0.1 4194304.0 294 ------- SRM_DATA} - -t 9.40853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 367 -a 0 -x {0.1 4194304.0 294 ------- SRM_DATA} h -t 9.40853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 367 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.41427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 368 -a 0 -x {0.1 4194304.0 295 ------- SRM_DATA} + -t 9.41427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 368 -a 0 -x {0.1 4194304.0 295 ------- SRM_DATA} - -t 9.41427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 368 -a 0 -x {0.1 4194304.0 295 ------- SRM_DATA} h -t 9.41427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 368 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.41707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 366 -a 0 -x {0.1 4194304.0 293 ------- SRM_DATA} r -t 9.41707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 366 -a 0 -x {0.1 4194304.0 293 ------- SRM_DATA} + -t 9.42 -s 0 -d 1 -p cbr -e 800 -c 0 -i 369 -a 0 -x {0.1 4194304.0 296 ------- SRM_DATA} - -t 9.42 -s 0 -d 1 -p cbr -e 800 -c 0 -i 369 -a 0 -x {0.1 4194304.0 296 ------- SRM_DATA} h -t 9.42 -s 0 -d 1 -p cbr -e 800 -c 0 -i 369 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.4228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 367 -a 0 -x {0.1 4194304.0 294 ------- SRM_DATA} + -t 9.4228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 367 -a 0 -x {0.1 4194304.0 294 ------- SRM_DATA} - -t 9.4228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 367 -a 0 -x {0.1 4194304.0 294 ------- SRM_DATA} h -t 9.4228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 367 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.4228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 367 -a 0 -x {0.1 4194304.0 294 ------- SRM_DATA} - -t 9.4228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 367 -a 0 -x {0.1 4194304.0 294 ------- SRM_DATA} h -t 9.4228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 367 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.42853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 368 -a 0 -x {0.1 4194304.0 295 ------- SRM_DATA} + -t 9.42853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 368 -a 0 -x {0.1 4194304.0 295 ------- SRM_DATA} - -t 9.42853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 368 -a 0 -x {0.1 4194304.0 295 ------- SRM_DATA} h -t 9.42853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 368 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.43427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 369 -a 0 -x {0.1 4194304.0 296 ------- SRM_DATA} + -t 9.43427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 369 -a 0 -x {0.1 4194304.0 296 ------- SRM_DATA} - -t 9.43427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 369 -a 0 -x {0.1 4194304.0 296 ------- SRM_DATA} h -t 9.43427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 369 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.43707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 367 -a 0 -x {0.1 4194304.0 294 ------- SRM_DATA} r -t 9.43707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 367 -a 0 -x {0.1 4194304.0 294 ------- SRM_DATA} + -t 9.44 -s 0 -d 1 -p cbr -e 800 -c 0 -i 370 -a 0 -x {0.1 4194304.0 297 ------- SRM_DATA} - -t 9.44 -s 0 -d 1 -p cbr -e 800 -c 0 -i 370 -a 0 -x {0.1 4194304.0 297 ------- SRM_DATA} h -t 9.44 -s 0 -d 1 -p cbr -e 800 -c 0 -i 370 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.4428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 368 -a 0 -x {0.1 4194304.0 295 ------- SRM_DATA} + -t 9.4428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 368 -a 0 -x {0.1 4194304.0 295 ------- SRM_DATA} - -t 9.4428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 368 -a 0 -x {0.1 4194304.0 295 ------- SRM_DATA} h -t 9.4428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 368 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.4428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 368 -a 0 -x {0.1 4194304.0 295 ------- SRM_DATA} - -t 9.4428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 368 -a 0 -x {0.1 4194304.0 295 ------- SRM_DATA} h -t 9.4428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 368 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.44853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 369 -a 0 -x {0.1 4194304.0 296 ------- SRM_DATA} + -t 9.44853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 369 -a 0 -x {0.1 4194304.0 296 ------- SRM_DATA} - -t 9.44853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 369 -a 0 -x {0.1 4194304.0 296 ------- SRM_DATA} h -t 9.44853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 369 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.45427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 370 -a 0 -x {0.1 4194304.0 297 ------- SRM_DATA} + -t 9.45427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 370 -a 0 -x {0.1 4194304.0 297 ------- SRM_DATA} - -t 9.45427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 370 -a 0 -x {0.1 4194304.0 297 ------- SRM_DATA} h -t 9.45427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 370 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.45707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 368 -a 0 -x {0.1 4194304.0 295 ------- SRM_DATA} r -t 9.45707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 368 -a 0 -x {0.1 4194304.0 295 ------- SRM_DATA} + -t 9.46 -s 0 -d 1 -p cbr -e 800 -c 0 -i 371 -a 0 -x {0.1 4194304.0 298 ------- SRM_DATA} - -t 9.46 -s 0 -d 1 -p cbr -e 800 -c 0 -i 371 -a 0 -x {0.1 4194304.0 298 ------- SRM_DATA} h -t 9.46 -s 0 -d 1 -p cbr -e 800 -c 0 -i 371 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.4628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 369 -a 0 -x {0.1 4194304.0 296 ------- SRM_DATA} + -t 9.4628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 369 -a 0 -x {0.1 4194304.0 296 ------- SRM_DATA} - -t 9.4628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 369 -a 0 -x {0.1 4194304.0 296 ------- SRM_DATA} h -t 9.4628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 369 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.4628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 369 -a 0 -x {0.1 4194304.0 296 ------- SRM_DATA} - -t 9.4628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 369 -a 0 -x {0.1 4194304.0 296 ------- SRM_DATA} h -t 9.4628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 369 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.46853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 370 -a 0 -x {0.1 4194304.0 297 ------- SRM_DATA} + -t 9.46853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 370 -a 0 -x {0.1 4194304.0 297 ------- SRM_DATA} - -t 9.46853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 370 -a 0 -x {0.1 4194304.0 297 ------- SRM_DATA} h -t 9.46853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 370 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.47427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 371 -a 0 -x {0.1 4194304.0 298 ------- SRM_DATA} + -t 9.47427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 371 -a 0 -x {0.1 4194304.0 298 ------- SRM_DATA} - -t 9.47427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 371 -a 0 -x {0.1 4194304.0 298 ------- SRM_DATA} h -t 9.47427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 371 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.47707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 369 -a 0 -x {0.1 4194304.0 296 ------- SRM_DATA} r -t 9.47707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 369 -a 0 -x {0.1 4194304.0 296 ------- SRM_DATA} + -t 9.48 -s 0 -d 1 -p cbr -e 800 -c 0 -i 372 -a 0 -x {0.1 4194304.0 299 ------- SRM_DATA} - -t 9.48 -s 0 -d 1 -p cbr -e 800 -c 0 -i 372 -a 0 -x {0.1 4194304.0 299 ------- SRM_DATA} h -t 9.48 -s 0 -d 1 -p cbr -e 800 -c 0 -i 372 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.4828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 370 -a 0 -x {0.1 4194304.0 297 ------- SRM_DATA} + -t 9.4828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 370 -a 0 -x {0.1 4194304.0 297 ------- SRM_DATA} - -t 9.4828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 370 -a 0 -x {0.1 4194304.0 297 ------- SRM_DATA} h -t 9.4828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 370 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.4828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 370 -a 0 -x {0.1 4194304.0 297 ------- SRM_DATA} - -t 9.4828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 370 -a 0 -x {0.1 4194304.0 297 ------- SRM_DATA} h -t 9.4828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 370 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.48853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 371 -a 0 -x {0.1 4194304.0 298 ------- SRM_DATA} + -t 9.48853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 371 -a 0 -x {0.1 4194304.0 298 ------- SRM_DATA} - -t 9.48853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 371 -a 0 -x {0.1 4194304.0 298 ------- SRM_DATA} h -t 9.48853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 371 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.49427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 372 -a 0 -x {0.1 4194304.0 299 ------- SRM_DATA} + -t 9.49427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 372 -a 0 -x {0.1 4194304.0 299 ------- SRM_DATA} - -t 9.49427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 372 -a 0 -x {0.1 4194304.0 299 ------- SRM_DATA} h -t 9.49427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 372 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.49707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 370 -a 0 -x {0.1 4194304.0 297 ------- SRM_DATA} r -t 9.49707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 370 -a 0 -x {0.1 4194304.0 297 ------- SRM_DATA} + -t 9.5 -s 0 -d 1 -p cbr -e 800 -c 0 -i 373 -a 0 -x {0.1 4194304.0 300 ------- SRM_DATA} - -t 9.5 -s 0 -d 1 -p cbr -e 800 -c 0 -i 373 -a 0 -x {0.1 4194304.0 300 ------- SRM_DATA} h -t 9.5 -s 0 -d 1 -p cbr -e 800 -c 0 -i 373 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.5028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 371 -a 0 -x {0.1 4194304.0 298 ------- SRM_DATA} + -t 9.5028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 371 -a 0 -x {0.1 4194304.0 298 ------- SRM_DATA} - -t 9.5028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 371 -a 0 -x {0.1 4194304.0 298 ------- SRM_DATA} h -t 9.5028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 371 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.5028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 371 -a 0 -x {0.1 4194304.0 298 ------- SRM_DATA} - -t 9.5028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 371 -a 0 -x {0.1 4194304.0 298 ------- SRM_DATA} h -t 9.5028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 371 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.50853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 372 -a 0 -x {0.1 4194304.0 299 ------- SRM_DATA} + -t 9.50853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 372 -a 0 -x {0.1 4194304.0 299 ------- SRM_DATA} - -t 9.50853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 372 -a 0 -x {0.1 4194304.0 299 ------- SRM_DATA} h -t 9.50853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 372 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.51427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 373 -a 0 -x {0.1 4194304.0 300 ------- SRM_DATA} + -t 9.51427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 373 -a 0 -x {0.1 4194304.0 300 ------- SRM_DATA} - -t 9.51427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 373 -a 0 -x {0.1 4194304.0 300 ------- SRM_DATA} h -t 9.51427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 373 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.51707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 371 -a 0 -x {0.1 4194304.0 298 ------- SRM_DATA} r -t 9.51707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 371 -a 0 -x {0.1 4194304.0 298 ------- SRM_DATA} + -t 9.52 -s 0 -d 1 -p cbr -e 800 -c 0 -i 374 -a 0 -x {0.1 4194304.0 301 ------- SRM_DATA} - -t 9.52 -s 0 -d 1 -p cbr -e 800 -c 0 -i 374 -a 0 -x {0.1 4194304.0 301 ------- SRM_DATA} h -t 9.52 -s 0 -d 1 -p cbr -e 800 -c 0 -i 374 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.5228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 372 -a 0 -x {0.1 4194304.0 299 ------- SRM_DATA} + -t 9.5228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 372 -a 0 -x {0.1 4194304.0 299 ------- SRM_DATA} - -t 9.5228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 372 -a 0 -x {0.1 4194304.0 299 ------- SRM_DATA} h -t 9.5228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 372 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.5228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 372 -a 0 -x {0.1 4194304.0 299 ------- SRM_DATA} - -t 9.5228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 372 -a 0 -x {0.1 4194304.0 299 ------- SRM_DATA} h -t 9.5228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 372 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.52853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 373 -a 0 -x {0.1 4194304.0 300 ------- SRM_DATA} + -t 9.52853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 373 -a 0 -x {0.1 4194304.0 300 ------- SRM_DATA} - -t 9.52853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 373 -a 0 -x {0.1 4194304.0 300 ------- SRM_DATA} h -t 9.52853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 373 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.53427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 374 -a 0 -x {0.1 4194304.0 301 ------- SRM_DATA} + -t 9.53427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 374 -a 0 -x {0.1 4194304.0 301 ------- SRM_DATA} - -t 9.53427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 374 -a 0 -x {0.1 4194304.0 301 ------- SRM_DATA} h -t 9.53427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 374 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.53707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 372 -a 0 -x {0.1 4194304.0 299 ------- SRM_DATA} r -t 9.53707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 372 -a 0 -x {0.1 4194304.0 299 ------- SRM_DATA} + -t 9.54 -s 0 -d 1 -p cbr -e 800 -c 0 -i 375 -a 0 -x {0.1 4194304.0 302 ------- SRM_DATA} - -t 9.54 -s 0 -d 1 -p cbr -e 800 -c 0 -i 375 -a 0 -x {0.1 4194304.0 302 ------- SRM_DATA} h -t 9.54 -s 0 -d 1 -p cbr -e 800 -c 0 -i 375 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.5428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 373 -a 0 -x {0.1 4194304.0 300 ------- SRM_DATA} + -t 9.5428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 373 -a 0 -x {0.1 4194304.0 300 ------- SRM_DATA} - -t 9.5428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 373 -a 0 -x {0.1 4194304.0 300 ------- SRM_DATA} h -t 9.5428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 373 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.5428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 373 -a 0 -x {0.1 4194304.0 300 ------- SRM_DATA} - -t 9.5428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 373 -a 0 -x {0.1 4194304.0 300 ------- SRM_DATA} h -t 9.5428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 373 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.54853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 374 -a 0 -x {0.1 4194304.0 301 ------- SRM_DATA} + -t 9.54853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 374 -a 0 -x {0.1 4194304.0 301 ------- SRM_DATA} - -t 9.54853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 374 -a 0 -x {0.1 4194304.0 301 ------- SRM_DATA} h -t 9.54853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 374 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.55427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 375 -a 0 -x {0.1 4194304.0 302 ------- SRM_DATA} + -t 9.55427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 375 -a 0 -x {0.1 4194304.0 302 ------- SRM_DATA} - -t 9.55427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 375 -a 0 -x {0.1 4194304.0 302 ------- SRM_DATA} h -t 9.55427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 375 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.55707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 373 -a 0 -x {0.1 4194304.0 300 ------- SRM_DATA} r -t 9.55707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 373 -a 0 -x {0.1 4194304.0 300 ------- SRM_DATA} + -t 9.56 -s 0 -d 1 -p cbr -e 800 -c 0 -i 376 -a 0 -x {0.1 4194304.0 303 ------- SRM_DATA} - -t 9.56 -s 0 -d 1 -p cbr -e 800 -c 0 -i 376 -a 0 -x {0.1 4194304.0 303 ------- SRM_DATA} h -t 9.56 -s 0 -d 1 -p cbr -e 800 -c 0 -i 376 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.5628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 374 -a 0 -x {0.1 4194304.0 301 ------- SRM_DATA} + -t 9.5628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 374 -a 0 -x {0.1 4194304.0 301 ------- SRM_DATA} - -t 9.5628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 374 -a 0 -x {0.1 4194304.0 301 ------- SRM_DATA} h -t 9.5628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 374 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.5628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 374 -a 0 -x {0.1 4194304.0 301 ------- SRM_DATA} - -t 9.5628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 374 -a 0 -x {0.1 4194304.0 301 ------- SRM_DATA} h -t 9.5628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 374 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.56853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 375 -a 0 -x {0.1 4194304.0 302 ------- SRM_DATA} + -t 9.56853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 375 -a 0 -x {0.1 4194304.0 302 ------- SRM_DATA} - -t 9.56853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 375 -a 0 -x {0.1 4194304.0 302 ------- SRM_DATA} h -t 9.56853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 375 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.57427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 376 -a 0 -x {0.1 4194304.0 303 ------- SRM_DATA} + -t 9.57427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 376 -a 0 -x {0.1 4194304.0 303 ------- SRM_DATA} - -t 9.57427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 376 -a 0 -x {0.1 4194304.0 303 ------- SRM_DATA} h -t 9.57427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 376 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.57707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 374 -a 0 -x {0.1 4194304.0 301 ------- SRM_DATA} r -t 9.57707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 374 -a 0 -x {0.1 4194304.0 301 ------- SRM_DATA} + -t 9.58 -s 0 -d 1 -p cbr -e 800 -c 0 -i 377 -a 0 -x {0.1 4194304.0 304 ------- SRM_DATA} - -t 9.58 -s 0 -d 1 -p cbr -e 800 -c 0 -i 377 -a 0 -x {0.1 4194304.0 304 ------- SRM_DATA} h -t 9.58 -s 0 -d 1 -p cbr -e 800 -c 0 -i 377 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.5828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 375 -a 0 -x {0.1 4194304.0 302 ------- SRM_DATA} + -t 9.5828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 375 -a 0 -x {0.1 4194304.0 302 ------- SRM_DATA} - -t 9.5828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 375 -a 0 -x {0.1 4194304.0 302 ------- SRM_DATA} h -t 9.5828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 375 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.5828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 375 -a 0 -x {0.1 4194304.0 302 ------- SRM_DATA} - -t 9.5828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 375 -a 0 -x {0.1 4194304.0 302 ------- SRM_DATA} h -t 9.5828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 375 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.58853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 376 -a 0 -x {0.1 4194304.0 303 ------- SRM_DATA} + -t 9.58853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 376 -a 0 -x {0.1 4194304.0 303 ------- SRM_DATA} - -t 9.58853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 376 -a 0 -x {0.1 4194304.0 303 ------- SRM_DATA} h -t 9.58853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 376 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} l -t 9.5899999999999999 -s 1 -d 0 -S DOWN v -t 9.5899999999999999 link-down 9.5899999999999999 1 0 d -t 9.59 -s 0 -d 1 -p cbr -e 800 -c 0 -i 377 -a 0 -x {0.1 4194304.0 304 ------- SRM_DATA} l -t 9.5899999999999999 -s 0 -d 1 -S DOWN v -t 9.5899999999999999 link-down 9.5899999999999999 0 1 r -t 9.59707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 375 -a 0 -x {0.1 4194304.0 302 ------- SRM_DATA} r -t 9.59707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 375 -a 0 -x {0.1 4194304.0 302 ------- SRM_DATA} r -t 9.6028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 376 -a 0 -x {0.1 4194304.0 303 ------- SRM_DATA} + -t 9.6028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 376 -a 0 -x {0.1 4194304.0 303 ------- SRM_DATA} - -t 9.6028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 376 -a 0 -x {0.1 4194304.0 303 ------- SRM_DATA} h -t 9.6028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 376 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.6028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 376 -a 0 -x {0.1 4194304.0 303 ------- SRM_DATA} - -t 9.6028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 376 -a 0 -x {0.1 4194304.0 303 ------- SRM_DATA} h -t 9.6028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 376 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} l -t 9.6099999999999994 -s 1 -d 0 -S UP v -t 9.6099999999999994 link-up 9.6099999999999994 1 0 l -t 9.6099999999999994 -s 0 -d 1 -S UP v -t 9.6099999999999994 link-up 9.6099999999999994 0 1 r -t 9.61707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 376 -a 0 -x {0.1 4194304.0 303 ------- SRM_DATA} r -t 9.61707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 376 -a 0 -x {0.1 4194304.0 303 ------- SRM_DATA} + -t 9.62 -s 0 -d 1 -p cbr -e 800 -c 0 -i 379 -a 0 -x {0.1 4194304.0 306 ------- SRM_DATA} - -t 9.62 -s 0 -d 1 -p cbr -e 800 -c 0 -i 379 -a 0 -x {0.1 4194304.0 306 ------- SRM_DATA} h -t 9.62 -s 0 -d 1 -p cbr -e 800 -c 0 -i 379 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.63427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 379 -a 0 -x {0.1 4194304.0 306 ------- SRM_DATA} f -t 9.63426666666654619 -s 1 -d 4194304 -n C2_ -a srm(1) -v 0.90000000000000002 -o 1.0 -T v f -t 9.63426666666654619 -s 1 -d 4194304 -n C2_ -a srm(1) -v 1.0 -o 0.90000000000000002 -T v f -t 9.63426666666654619 -s 1 -d 4194304 -n C1_ -a srm(1) -v 0.49999999999999917 -o 0.54999999999999916 -T v f -t 9.63426666666654619 -s 1 -d 4194304 -n C1_ -a srm(1) -v 0.5 -o 0.49999999999999917 -T v + -t 9.63427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 379 -a 0 -x {0.1 4194304.0 306 ------- SRM_DATA} - -t 9.63427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 379 -a 0 -x {0.1 4194304.0 306 ------- SRM_DATA} h -t 9.63427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 379 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.64 -s 0 -d 1 -p cbr -e 800 -c 0 -i 380 -a 0 -x {0.1 4194304.0 307 ------- SRM_DATA} - -t 9.64 -s 0 -d 1 -p cbr -e 800 -c 0 -i 380 -a 0 -x {0.1 4194304.0 307 ------- SRM_DATA} h -t 9.64 -s 0 -d 1 -p cbr -e 800 -c 0 -i 380 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} f -t 9.64214298540446890 -s 1 -d 4194304 -n C1_ -a srm(1) -v 0.40000000000000002 -o 0.5 -T v f -t 9.64214298540446890 -s 1 -d 4194304 -n C1_ -a srm(1) -v 0.5 -o 0.40000000000000002 -T v + -t 9.64214 -s 1 -d 0 -p SRM -e 16 -c 2 -i 381 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 9.64214 -s 1 -d 0 -p SRM -e 16 -c 2 -i 381 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 9.64214 -s 1 -d 0 -p SRM -e 16 -c 2 -i 381 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 9.64214 -s 1 -d 2 -p SRM -e 16 -c 2 -i 381 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 9.64214 -s 1 -d 2 -p SRM -e 16 -c 2 -i 381 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 9.64214 -s 1 -d 2 -p SRM -e 16 -c 2 -i 381 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 9.64853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 379 -a 0 -x {0.1 4194304.0 306 ------- SRM_DATA} f -t 9.64853333333321217 -s 2 -d 4194304 -n C1_ -a srm(2) -v 1.4499999999999995 -o 1.4999999999999996 -T v f -t 9.64853333333321217 -s 2 -d 4194304 -n C1_ -a srm(2) -v 1.3999999999999995 -o 1.4499999999999995 -T v + -t 9.64853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 379 -a 0 -x {0.1 4194304.0 306 ------- SRM_DATA} - -t 9.64853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 379 -a 0 -x {0.1 4194304.0 306 ------- SRM_DATA} h -t 9.64853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 379 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} f -t 9.64958534646179444 -s 1 -d 4194304 -n C1_ -a srm(1) -v 0.40000000000000002 -o 0.5 -T v f -t 9.64958534646179444 -s 1 -d 4194304 -n C1_ -a srm(1) -v 0.5 -o 0.40000000000000002 -T v + -t 9.64959 -s 1 -d 0 -p SRM -e 16 -c 2 -i 382 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 9.64959 -s 1 -d 0 -p SRM -e 16 -c 2 -i 382 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 9.64959 -s 1 -d 0 -p SRM -e 16 -c 2 -i 382 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 9.64959 -s 1 -d 2 -p SRM -e 16 -c 2 -i 382 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 9.64959 -s 1 -d 2 -p SRM -e 16 -c 2 -i 382 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 9.64959 -s 1 -d 2 -p SRM -e 16 -c 2 -i 382 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 9.65223 -s 1 -d 0 -p SRM -e 16 -c 2 -i 381 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 9.65223 -s 1 -d 2 -p SRM -e 16 -c 2 -i 381 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 9.65223 -s 2 -d 3 -p SRM -e 16 -c 2 -i 381 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 9.6528 -s 2 -d 3 -p SRM -e 16 -c 2 -i 381 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 9.6528 -s 2 -d 3 -p SRM -e 16 -c 2 -i 381 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 9.65427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 380 -a 0 -x {0.1 4194304.0 307 ------- SRM_DATA} + -t 9.65427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 380 -a 0 -x {0.1 4194304.0 307 ------- SRM_DATA} - -t 9.65427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 380 -a 0 -x {0.1 4194304.0 307 ------- SRM_DATA} h -t 9.65427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 380 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.65967 -s 1 -d 0 -p SRM -e 16 -c 2 -i 382 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 9.65967 -s 1 -d 2 -p SRM -e 16 -c 2 -i 382 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 9.65967 -s 2 -d 3 -p SRM -e 16 -c 2 -i 382 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 9.65967 -s 2 -d 3 -p SRM -e 16 -c 2 -i 382 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 9.65967 -s 2 -d 3 -p SRM -e 16 -c 2 -i 382 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 9.66 -s 0 -d 1 -p cbr -e 800 -c 0 -i 383 -a 0 -x {0.1 4194304.0 308 ------- SRM_DATA} - -t 9.66 -s 0 -d 1 -p cbr -e 800 -c 0 -i 383 -a 0 -x {0.1 4194304.0 308 ------- SRM_DATA} h -t 9.66 -s 0 -d 1 -p cbr -e 800 -c 0 -i 383 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.6628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 379 -a 0 -x {0.1 4194304.0 306 ------- SRM_DATA} f -t 9.66279999999987815 -s 3 -d 4194304 -n C1_ -a srm(3) -v 1.4499999999999995 -o 1.4999999999999996 -T v f -t 9.66279999999987815 -s 3 -d 4194304 -n C1_ -a srm(3) -v 1.3999999999999995 -o 1.4499999999999995 -T v + -t 9.6628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 379 -a 0 -x {0.1 4194304.0 306 ------- SRM_DATA} - -t 9.6628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 379 -a 0 -x {0.1 4194304.0 306 ------- SRM_DATA} h -t 9.6628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 379 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.6628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 379 -a 0 -x {0.1 4194304.0 306 ------- SRM_DATA} - -t 9.6628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 379 -a 0 -x {0.1 4194304.0 306 ------- SRM_DATA} h -t 9.6628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 379 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.66289 -s 2 -d 3 -p SRM -e 16 -c 2 -i 381 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 9.66289 -s 3 -d 4 -p SRM -e 16 -c 2 -i 381 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 9.66289 -s 3 -d 5 -p SRM -e 16 -c 2 -i 381 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 9.6654 -s 0 -d 1 -p SRM -e 816 -c 1 -i 384 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 9.6654 -s 0 -d 1 -p SRM -e 816 -c 1 -i 384 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 9.6654 -s 0 -d 1 -p SRM -e 816 -c 1 -i 384 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 9.66707 -s 3 -d 4 -p SRM -e 16 -c 2 -i 381 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 9.66707 -s 3 -d 4 -p SRM -e 16 -c 2 -i 381 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 9.66707 -s 3 -d 5 -p SRM -e 16 -c 2 -i 381 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 9.66707 -s 3 -d 5 -p SRM -e 16 -c 2 -i 381 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 9.66853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 380 -a 0 -x {0.1 4194304.0 307 ------- SRM_DATA} + -t 9.66853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 380 -a 0 -x {0.1 4194304.0 307 ------- SRM_DATA} - -t 9.66853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 380 -a 0 -x {0.1 4194304.0 307 ------- SRM_DATA} h -t 9.66853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 380 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.66976 -s 2 -d 3 -p SRM -e 16 -c 2 -i 382 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 9.66976 -s 3 -d 4 -p SRM -e 16 -c 2 -i 382 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 9.66976 -s 3 -d 4 -p SRM -e 16 -c 2 -i 382 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 9.66976 -s 3 -d 4 -p SRM -e 16 -c 2 -i 382 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 9.66976 -s 3 -d 5 -p SRM -e 16 -c 2 -i 382 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} - -t 9.66976 -s 3 -d 5 -p SRM -e 16 -c 2 -i 382 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} h -t 9.66976 -s 3 -d 5 -p SRM -e 16 -c 2 -i 382 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 9.66979 -s 0 -d 1 -p SRM -e 816 -c 1 -i 385 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 9.66979 -s 0 -d 1 -p SRM -e 816 -c 1 -i 385 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 9.66979 -s 0 -d 1 -p SRM -e 816 -c 1 -i 385 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 9.67427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 383 -a 0 -x {0.1 4194304.0 308 ------- SRM_DATA} + -t 9.67427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 383 -a 0 -x {0.1 4194304.0 308 ------- SRM_DATA} - -t 9.67427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 383 -a 0 -x {0.1 4194304.0 308 ------- SRM_DATA} h -t 9.67427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 383 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.67707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 379 -a 0 -x {0.1 4194304.0 306 ------- SRM_DATA} f -t 9.67706666666654414 -s 4 -d 4194304 -n C1_ -a srm(4) -v 1.4499999999999995 -o 1.4999999999999996 -T v f -t 9.67706666666654414 -s 4 -d 4194304 -n C1_ -a srm(4) -v 1.3999999999999995 -o 1.4499999999999995 -T v r -t 9.67707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 379 -a 0 -x {0.1 4194304.0 306 ------- SRM_DATA} f -t 9.67706666666654414 -s 5 -d 4194304 -n C1_ -a srm(5) -v 1.4499999999999995 -o 1.4999999999999996 -T v f -t 9.67706666666654414 -s 5 -d 4194304 -n C1_ -a srm(5) -v 1.3999999999999995 -o 1.4499999999999995 -T v r -t 9.67715 -s 3 -d 4 -p SRM -e 16 -c 2 -i 381 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 9.67715 -s 3 -d 5 -p SRM -e 16 -c 2 -i 381 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 9.67976 -s 0 -d 1 -p SRM -e 816 -c 1 -i 384 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 9.67976 -s 1 -d 2 -p SRM -e 816 -c 1 -i 384 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 9.67976 -s 1 -d 2 -p SRM -e 816 -c 1 -i 384 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 9.67976 -s 1 -d 2 -p SRM -e 816 -c 1 -i 384 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 9.67984 -s 3 -d 4 -p SRM -e 16 -c 2 -i 382 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} r -t 9.67984 -s 3 -d 5 -p SRM -e 16 -c 2 -i 382 -a 2 -x {1.1 4194304.0 -1 ------- SRM_RQST} + -t 9.68 -s 0 -d 1 -p cbr -e 800 -c 0 -i 386 -a 0 -x {0.1 4194304.0 309 ------- SRM_DATA} - -t 9.68 -s 0 -d 1 -p cbr -e 800 -c 0 -i 386 -a 0 -x {0.1 4194304.0 309 ------- SRM_DATA} h -t 9.68 -s 0 -d 1 -p cbr -e 800 -c 0 -i 386 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.6828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 380 -a 0 -x {0.1 4194304.0 307 ------- SRM_DATA} + -t 9.6828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 380 -a 0 -x {0.1 4194304.0 307 ------- SRM_DATA} - -t 9.6828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 380 -a 0 -x {0.1 4194304.0 307 ------- SRM_DATA} h -t 9.6828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 380 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.6828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 380 -a 0 -x {0.1 4194304.0 307 ------- SRM_DATA} - -t 9.6828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 380 -a 0 -x {0.1 4194304.0 307 ------- SRM_DATA} h -t 9.6828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 380 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.68415 -s 0 -d 1 -p SRM -e 816 -c 1 -i 385 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 9.68415 -s 1 -d 2 -p SRM -e 816 -c 1 -i 385 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 9.68415 -s 1 -d 2 -p SRM -e 816 -c 1 -i 385 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 9.68415 -s 1 -d 2 -p SRM -e 816 -c 1 -i 385 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 9.68853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 383 -a 0 -x {0.1 4194304.0 308 ------- SRM_DATA} + -t 9.68853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 383 -a 0 -x {0.1 4194304.0 308 ------- SRM_DATA} - -t 9.68853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 383 -a 0 -x {0.1 4194304.0 308 ------- SRM_DATA} h -t 9.68853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 383 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.69411 -s 1 -d 2 -p SRM -e 816 -c 1 -i 384 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 9.69411 -s 2 -d 3 -p SRM -e 816 -c 1 -i 384 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 9.69411 -s 2 -d 3 -p SRM -e 816 -c 1 -i 384 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 9.69411 -s 2 -d 3 -p SRM -e 816 -c 1 -i 384 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 9.69427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 386 -a 0 -x {0.1 4194304.0 309 ------- SRM_DATA} + -t 9.69427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 386 -a 0 -x {0.1 4194304.0 309 ------- SRM_DATA} - -t 9.69427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 386 -a 0 -x {0.1 4194304.0 309 ------- SRM_DATA} h -t 9.69427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 386 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.69707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 380 -a 0 -x {0.1 4194304.0 307 ------- SRM_DATA} r -t 9.69707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 380 -a 0 -x {0.1 4194304.0 307 ------- SRM_DATA} r -t 9.6985 -s 1 -d 2 -p SRM -e 816 -c 1 -i 385 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 9.6985 -s 2 -d 3 -p SRM -e 816 -c 1 -i 385 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 9.6985 -s 2 -d 3 -p SRM -e 816 -c 1 -i 385 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 9.6985 -s 2 -d 3 -p SRM -e 816 -c 1 -i 385 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 9.7 -s 0 -d 1 -p cbr -e 800 -c 0 -i 387 -a 0 -x {0.1 4194304.0 310 ------- SRM_DATA} - -t 9.7 -s 0 -d 1 -p cbr -e 800 -c 0 -i 387 -a 0 -x {0.1 4194304.0 310 ------- SRM_DATA} h -t 9.7 -s 0 -d 1 -p cbr -e 800 -c 0 -i 387 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.7028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 383 -a 0 -x {0.1 4194304.0 308 ------- SRM_DATA} + -t 9.7028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 383 -a 0 -x {0.1 4194304.0 308 ------- SRM_DATA} - -t 9.7028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 383 -a 0 -x {0.1 4194304.0 308 ------- SRM_DATA} h -t 9.7028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 383 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.7028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 383 -a 0 -x {0.1 4194304.0 308 ------- SRM_DATA} - -t 9.7028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 383 -a 0 -x {0.1 4194304.0 308 ------- SRM_DATA} h -t 9.7028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 383 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.70846 -s 2 -d 3 -p SRM -e 816 -c 1 -i 384 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 9.70846 -s 3 -d 4 -p SRM -e 816 -c 1 -i 384 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 9.70846 -s 3 -d 4 -p SRM -e 816 -c 1 -i 384 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 9.70846 -s 3 -d 4 -p SRM -e 816 -c 1 -i 384 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 9.70846 -s 3 -d 5 -p SRM -e 816 -c 1 -i 384 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 9.70846 -s 3 -d 5 -p SRM -e 816 -c 1 -i 384 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 9.70846 -s 3 -d 5 -p SRM -e 816 -c 1 -i 384 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 9.70853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 386 -a 0 -x {0.1 4194304.0 309 ------- SRM_DATA} + -t 9.70853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 386 -a 0 -x {0.1 4194304.0 309 ------- SRM_DATA} - -t 9.70853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 386 -a 0 -x {0.1 4194304.0 309 ------- SRM_DATA} h -t 9.70853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 386 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.71285 -s 2 -d 3 -p SRM -e 816 -c 1 -i 385 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 9.71285 -s 3 -d 4 -p SRM -e 816 -c 1 -i 385 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 9.71285 -s 3 -d 4 -p SRM -e 816 -c 1 -i 385 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 9.71285 -s 3 -d 4 -p SRM -e 816 -c 1 -i 385 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} + -t 9.71285 -s 3 -d 5 -p SRM -e 816 -c 1 -i 385 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} - -t 9.71285 -s 3 -d 5 -p SRM -e 816 -c 1 -i 385 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} h -t 9.71285 -s 3 -d 5 -p SRM -e 816 -c 1 -i 385 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 9.71427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 387 -a 0 -x {0.1 4194304.0 310 ------- SRM_DATA} + -t 9.71427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 387 -a 0 -x {0.1 4194304.0 310 ------- SRM_DATA} - -t 9.71427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 387 -a 0 -x {0.1 4194304.0 310 ------- SRM_DATA} h -t 9.71427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 387 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.71707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 383 -a 0 -x {0.1 4194304.0 308 ------- SRM_DATA} r -t 9.71707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 383 -a 0 -x {0.1 4194304.0 308 ------- SRM_DATA} + -t 9.72 -s 0 -d 1 -p cbr -e 800 -c 0 -i 388 -a 0 -x {0.1 4194304.0 311 ------- SRM_DATA} - -t 9.72 -s 0 -d 1 -p cbr -e 800 -c 0 -i 388 -a 0 -x {0.1 4194304.0 311 ------- SRM_DATA} h -t 9.72 -s 0 -d 1 -p cbr -e 800 -c 0 -i 388 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.7228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 386 -a 0 -x {0.1 4194304.0 309 ------- SRM_DATA} + -t 9.7228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 386 -a 0 -x {0.1 4194304.0 309 ------- SRM_DATA} - -t 9.7228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 386 -a 0 -x {0.1 4194304.0 309 ------- SRM_DATA} h -t 9.7228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 386 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.7228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 386 -a 0 -x {0.1 4194304.0 309 ------- SRM_DATA} - -t 9.7228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 386 -a 0 -x {0.1 4194304.0 309 ------- SRM_DATA} h -t 9.7228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 386 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.72281 -s 3 -d 4 -p SRM -e 816 -c 1 -i 384 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 9.72281 -s 3 -d 5 -p SRM -e 816 -c 1 -i 384 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 9.7272 -s 3 -d 4 -p SRM -e 816 -c 1 -i 385 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 9.7272 -s 3 -d 5 -p SRM -e 816 -c 1 -i 385 -a 1 -x {0.1 4194304.0 -1 ------- SRM_REPR} r -t 9.72853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 387 -a 0 -x {0.1 4194304.0 310 ------- SRM_DATA} + -t 9.72853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 387 -a 0 -x {0.1 4194304.0 310 ------- SRM_DATA} - -t 9.72853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 387 -a 0 -x {0.1 4194304.0 310 ------- SRM_DATA} h -t 9.72853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 387 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.73427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 388 -a 0 -x {0.1 4194304.0 311 ------- SRM_DATA} + -t 9.73427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 388 -a 0 -x {0.1 4194304.0 311 ------- SRM_DATA} - -t 9.73427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 388 -a 0 -x {0.1 4194304.0 311 ------- SRM_DATA} h -t 9.73427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 388 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.73707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 386 -a 0 -x {0.1 4194304.0 309 ------- SRM_DATA} r -t 9.73707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 386 -a 0 -x {0.1 4194304.0 309 ------- SRM_DATA} + -t 9.74 -s 0 -d 1 -p cbr -e 800 -c 0 -i 389 -a 0 -x {0.1 4194304.0 312 ------- SRM_DATA} - -t 9.74 -s 0 -d 1 -p cbr -e 800 -c 0 -i 389 -a 0 -x {0.1 4194304.0 312 ------- SRM_DATA} h -t 9.74 -s 0 -d 1 -p cbr -e 800 -c 0 -i 389 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.7428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 387 -a 0 -x {0.1 4194304.0 310 ------- SRM_DATA} + -t 9.7428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 387 -a 0 -x {0.1 4194304.0 310 ------- SRM_DATA} - -t 9.7428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 387 -a 0 -x {0.1 4194304.0 310 ------- SRM_DATA} h -t 9.7428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 387 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.7428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 387 -a 0 -x {0.1 4194304.0 310 ------- SRM_DATA} - -t 9.7428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 387 -a 0 -x {0.1 4194304.0 310 ------- SRM_DATA} h -t 9.7428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 387 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.74853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 388 -a 0 -x {0.1 4194304.0 311 ------- SRM_DATA} + -t 9.74853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 388 -a 0 -x {0.1 4194304.0 311 ------- SRM_DATA} - -t 9.74853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 388 -a 0 -x {0.1 4194304.0 311 ------- SRM_DATA} h -t 9.74853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 388 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.75212 -s 5 -d 3 -p SRM -e 116 -c 6 -i 390 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} - -t 9.75212 -s 5 -d 3 -p SRM -e 116 -c 6 -i 390 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} h -t 9.75212 -s 5 -d 3 -p SRM -e 116 -c 6 -i 390 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} r -t 9.75427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 389 -a 0 -x {0.1 4194304.0 312 ------- SRM_DATA} + -t 9.75427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 389 -a 0 -x {0.1 4194304.0 312 ------- SRM_DATA} - -t 9.75427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 389 -a 0 -x {0.1 4194304.0 312 ------- SRM_DATA} h -t 9.75427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 389 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.75707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 387 -a 0 -x {0.1 4194304.0 310 ------- SRM_DATA} r -t 9.75707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 387 -a 0 -x {0.1 4194304.0 310 ------- SRM_DATA} + -t 9.76 -s 0 -d 1 -p cbr -e 800 -c 0 -i 391 -a 0 -x {0.1 4194304.0 313 ------- SRM_DATA} - -t 9.76 -s 0 -d 1 -p cbr -e 800 -c 0 -i 391 -a 0 -x {0.1 4194304.0 313 ------- SRM_DATA} h -t 9.76 -s 0 -d 1 -p cbr -e 800 -c 0 -i 391 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.76274 -s 5 -d 3 -p SRM -e 116 -c 6 -i 390 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} + -t 9.76274 -s 3 -d 2 -p SRM -e 116 -c 6 -i 390 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} - -t 9.76274 -s 3 -d 2 -p SRM -e 116 -c 6 -i 390 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} h -t 9.76274 -s 3 -d 2 -p SRM -e 116 -c 6 -i 390 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} + -t 9.76274 -s 3 -d 4 -p SRM -e 116 -c 6 -i 390 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} - -t 9.76274 -s 3 -d 4 -p SRM -e 116 -c 6 -i 390 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} h -t 9.76274 -s 3 -d 4 -p SRM -e 116 -c 6 -i 390 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} r -t 9.7628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 388 -a 0 -x {0.1 4194304.0 311 ------- SRM_DATA} + -t 9.7628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 388 -a 0 -x {0.1 4194304.0 311 ------- SRM_DATA} + -t 9.7628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 388 -a 0 -x {0.1 4194304.0 311 ------- SRM_DATA} - -t 9.7628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 388 -a 0 -x {0.1 4194304.0 311 ------- SRM_DATA} h -t 9.7628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 388 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} - -t 9.76336 -s 3 -d 4 -p cbr -e 800 -c 0 -i 388 -a 0 -x {0.1 4194304.0 311 ------- SRM_DATA} h -t 9.76336 -s 3 -d 4 -p cbr -e 800 -c 0 -i 388 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.76853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 389 -a 0 -x {0.1 4194304.0 312 ------- SRM_DATA} + -t 9.76853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 389 -a 0 -x {0.1 4194304.0 312 ------- SRM_DATA} - -t 9.76853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 389 -a 0 -x {0.1 4194304.0 312 ------- SRM_DATA} h -t 9.76853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 389 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.77336 -s 3 -d 2 -p SRM -e 116 -c 6 -i 390 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} + -t 9.77336 -s 2 -d 1 -p SRM -e 116 -c 6 -i 390 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} - -t 9.77336 -s 2 -d 1 -p SRM -e 116 -c 6 -i 390 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} h -t 9.77336 -s 2 -d 1 -p SRM -e 116 -c 6 -i 390 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} r -t 9.77336 -s 3 -d 4 -p SRM -e 116 -c 6 -i 390 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} r -t 9.77427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 391 -a 0 -x {0.1 4194304.0 313 ------- SRM_DATA} + -t 9.77427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 391 -a 0 -x {0.1 4194304.0 313 ------- SRM_DATA} - -t 9.77427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 391 -a 0 -x {0.1 4194304.0 313 ------- SRM_DATA} h -t 9.77427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 391 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.77707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 388 -a 0 -x {0.1 4194304.0 311 ------- SRM_DATA} r -t 9.77762 -s 3 -d 4 -p cbr -e 800 -c 0 -i 388 -a 0 -x {0.1 4194304.0 311 ------- SRM_DATA} + -t 9.78 -s 0 -d 1 -p cbr -e 800 -c 0 -i 392 -a 0 -x {0.1 4194304.0 314 ------- SRM_DATA} - -t 9.78 -s 0 -d 1 -p cbr -e 800 -c 0 -i 392 -a 0 -x {0.1 4194304.0 314 ------- SRM_DATA} h -t 9.78 -s 0 -d 1 -p cbr -e 800 -c 0 -i 392 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.7828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 389 -a 0 -x {0.1 4194304.0 312 ------- SRM_DATA} + -t 9.7828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 389 -a 0 -x {0.1 4194304.0 312 ------- SRM_DATA} - -t 9.7828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 389 -a 0 -x {0.1 4194304.0 312 ------- SRM_DATA} h -t 9.7828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 389 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.7828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 389 -a 0 -x {0.1 4194304.0 312 ------- SRM_DATA} - -t 9.7828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 389 -a 0 -x {0.1 4194304.0 312 ------- SRM_DATA} h -t 9.7828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 389 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.78398 -s 2 -d 1 -p SRM -e 116 -c 6 -i 390 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} + -t 9.78398 -s 1 -d 0 -p SRM -e 116 -c 6 -i 390 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} - -t 9.78398 -s 1 -d 0 -p SRM -e 116 -c 6 -i 390 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} h -t 9.78398 -s 1 -d 0 -p SRM -e 116 -c 6 -i 390 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} r -t 9.78853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 391 -a 0 -x {0.1 4194304.0 313 ------- SRM_DATA} + -t 9.78853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 391 -a 0 -x {0.1 4194304.0 313 ------- SRM_DATA} - -t 9.78853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 391 -a 0 -x {0.1 4194304.0 313 ------- SRM_DATA} h -t 9.78853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 391 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.79427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 392 -a 0 -x {0.1 4194304.0 314 ------- SRM_DATA} + -t 9.79427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 392 -a 0 -x {0.1 4194304.0 314 ------- SRM_DATA} - -t 9.79427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 392 -a 0 -x {0.1 4194304.0 314 ------- SRM_DATA} h -t 9.79427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 392 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.79459 -s 1 -d 0 -p SRM -e 116 -c 6 -i 390 -a 6 -x {5.1 4194304.0 -1 ------- SRM_SESS} r -t 9.79707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 389 -a 0 -x {0.1 4194304.0 312 ------- SRM_DATA} r -t 9.79707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 389 -a 0 -x {0.1 4194304.0 312 ------- SRM_DATA} + -t 9.8 -s 0 -d 1 -p cbr -e 800 -c 0 -i 393 -a 0 -x {0.1 4194304.0 315 ------- SRM_DATA} - -t 9.8 -s 0 -d 1 -p cbr -e 800 -c 0 -i 393 -a 0 -x {0.1 4194304.0 315 ------- SRM_DATA} h -t 9.8 -s 0 -d 1 -p cbr -e 800 -c 0 -i 393 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.8028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 391 -a 0 -x {0.1 4194304.0 313 ------- SRM_DATA} + -t 9.8028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 391 -a 0 -x {0.1 4194304.0 313 ------- SRM_DATA} - -t 9.8028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 391 -a 0 -x {0.1 4194304.0 313 ------- SRM_DATA} h -t 9.8028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 391 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.8028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 391 -a 0 -x {0.1 4194304.0 313 ------- SRM_DATA} - -t 9.8028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 391 -a 0 -x {0.1 4194304.0 313 ------- SRM_DATA} h -t 9.8028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 391 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.80853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 392 -a 0 -x {0.1 4194304.0 314 ------- SRM_DATA} + -t 9.80853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 392 -a 0 -x {0.1 4194304.0 314 ------- SRM_DATA} - -t 9.80853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 392 -a 0 -x {0.1 4194304.0 314 ------- SRM_DATA} h -t 9.80853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 392 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.81427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 393 -a 0 -x {0.1 4194304.0 315 ------- SRM_DATA} + -t 9.81427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 393 -a 0 -x {0.1 4194304.0 315 ------- SRM_DATA} - -t 9.81427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 393 -a 0 -x {0.1 4194304.0 315 ------- SRM_DATA} h -t 9.81427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 393 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.81707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 391 -a 0 -x {0.1 4194304.0 313 ------- SRM_DATA} r -t 9.81707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 391 -a 0 -x {0.1 4194304.0 313 ------- SRM_DATA} + -t 9.82 -s 0 -d 1 -p cbr -e 800 -c 0 -i 394 -a 0 -x {0.1 4194304.0 316 ------- SRM_DATA} - -t 9.82 -s 0 -d 1 -p cbr -e 800 -c 0 -i 394 -a 0 -x {0.1 4194304.0 316 ------- SRM_DATA} h -t 9.82 -s 0 -d 1 -p cbr -e 800 -c 0 -i 394 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.8228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 392 -a 0 -x {0.1 4194304.0 314 ------- SRM_DATA} + -t 9.8228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 392 -a 0 -x {0.1 4194304.0 314 ------- SRM_DATA} - -t 9.8228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 392 -a 0 -x {0.1 4194304.0 314 ------- SRM_DATA} h -t 9.8228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 392 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.8228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 392 -a 0 -x {0.1 4194304.0 314 ------- SRM_DATA} - -t 9.8228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 392 -a 0 -x {0.1 4194304.0 314 ------- SRM_DATA} h -t 9.8228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 392 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.82853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 393 -a 0 -x {0.1 4194304.0 315 ------- SRM_DATA} + -t 9.82853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 393 -a 0 -x {0.1 4194304.0 315 ------- SRM_DATA} - -t 9.82853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 393 -a 0 -x {0.1 4194304.0 315 ------- SRM_DATA} h -t 9.82853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 393 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.83427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 394 -a 0 -x {0.1 4194304.0 316 ------- SRM_DATA} + -t 9.83427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 394 -a 0 -x {0.1 4194304.0 316 ------- SRM_DATA} - -t 9.83427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 394 -a 0 -x {0.1 4194304.0 316 ------- SRM_DATA} h -t 9.83427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 394 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.83707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 392 -a 0 -x {0.1 4194304.0 314 ------- SRM_DATA} r -t 9.83707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 392 -a 0 -x {0.1 4194304.0 314 ------- SRM_DATA} + -t 9.84 -s 0 -d 1 -p cbr -e 800 -c 0 -i 395 -a 0 -x {0.1 4194304.0 317 ------- SRM_DATA} - -t 9.84 -s 0 -d 1 -p cbr -e 800 -c 0 -i 395 -a 0 -x {0.1 4194304.0 317 ------- SRM_DATA} h -t 9.84 -s 0 -d 1 -p cbr -e 800 -c 0 -i 395 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.8428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 393 -a 0 -x {0.1 4194304.0 315 ------- SRM_DATA} + -t 9.8428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 393 -a 0 -x {0.1 4194304.0 315 ------- SRM_DATA} - -t 9.8428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 393 -a 0 -x {0.1 4194304.0 315 ------- SRM_DATA} h -t 9.8428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 393 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.8428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 393 -a 0 -x {0.1 4194304.0 315 ------- SRM_DATA} - -t 9.8428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 393 -a 0 -x {0.1 4194304.0 315 ------- SRM_DATA} h -t 9.8428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 393 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.84853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 394 -a 0 -x {0.1 4194304.0 316 ------- SRM_DATA} + -t 9.84853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 394 -a 0 -x {0.1 4194304.0 316 ------- SRM_DATA} - -t 9.84853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 394 -a 0 -x {0.1 4194304.0 316 ------- SRM_DATA} h -t 9.84853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 394 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.85427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 395 -a 0 -x {0.1 4194304.0 317 ------- SRM_DATA} + -t 9.85427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 395 -a 0 -x {0.1 4194304.0 317 ------- SRM_DATA} - -t 9.85427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 395 -a 0 -x {0.1 4194304.0 317 ------- SRM_DATA} h -t 9.85427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 395 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.85707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 393 -a 0 -x {0.1 4194304.0 315 ------- SRM_DATA} r -t 9.85707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 393 -a 0 -x {0.1 4194304.0 315 ------- SRM_DATA} + -t 9.86 -s 0 -d 1 -p cbr -e 800 -c 0 -i 396 -a 0 -x {0.1 4194304.0 318 ------- SRM_DATA} - -t 9.86 -s 0 -d 1 -p cbr -e 800 -c 0 -i 396 -a 0 -x {0.1 4194304.0 318 ------- SRM_DATA} h -t 9.86 -s 0 -d 1 -p cbr -e 800 -c 0 -i 396 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.8628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 394 -a 0 -x {0.1 4194304.0 316 ------- SRM_DATA} + -t 9.8628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 394 -a 0 -x {0.1 4194304.0 316 ------- SRM_DATA} - -t 9.8628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 394 -a 0 -x {0.1 4194304.0 316 ------- SRM_DATA} h -t 9.8628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 394 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.8628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 394 -a 0 -x {0.1 4194304.0 316 ------- SRM_DATA} - -t 9.8628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 394 -a 0 -x {0.1 4194304.0 316 ------- SRM_DATA} h -t 9.8628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 394 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.86853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 395 -a 0 -x {0.1 4194304.0 317 ------- SRM_DATA} + -t 9.86853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 395 -a 0 -x {0.1 4194304.0 317 ------- SRM_DATA} - -t 9.86853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 395 -a 0 -x {0.1 4194304.0 317 ------- SRM_DATA} h -t 9.86853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 395 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.87427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 396 -a 0 -x {0.1 4194304.0 318 ------- SRM_DATA} + -t 9.87427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 396 -a 0 -x {0.1 4194304.0 318 ------- SRM_DATA} - -t 9.87427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 396 -a 0 -x {0.1 4194304.0 318 ------- SRM_DATA} h -t 9.87427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 396 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.87707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 394 -a 0 -x {0.1 4194304.0 316 ------- SRM_DATA} r -t 9.87707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 394 -a 0 -x {0.1 4194304.0 316 ------- SRM_DATA} + -t 9.88 -s 0 -d 1 -p cbr -e 800 -c 0 -i 397 -a 0 -x {0.1 4194304.0 319 ------- SRM_DATA} - -t 9.88 -s 0 -d 1 -p cbr -e 800 -c 0 -i 397 -a 0 -x {0.1 4194304.0 319 ------- SRM_DATA} h -t 9.88 -s 0 -d 1 -p cbr -e 800 -c 0 -i 397 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.8828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 395 -a 0 -x {0.1 4194304.0 317 ------- SRM_DATA} + -t 9.8828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 395 -a 0 -x {0.1 4194304.0 317 ------- SRM_DATA} - -t 9.8828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 395 -a 0 -x {0.1 4194304.0 317 ------- SRM_DATA} h -t 9.8828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 395 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.8828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 395 -a 0 -x {0.1 4194304.0 317 ------- SRM_DATA} - -t 9.8828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 395 -a 0 -x {0.1 4194304.0 317 ------- SRM_DATA} h -t 9.8828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 395 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.88853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 396 -a 0 -x {0.1 4194304.0 318 ------- SRM_DATA} + -t 9.88853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 396 -a 0 -x {0.1 4194304.0 318 ------- SRM_DATA} - -t 9.88853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 396 -a 0 -x {0.1 4194304.0 318 ------- SRM_DATA} h -t 9.88853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 396 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.89427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 397 -a 0 -x {0.1 4194304.0 319 ------- SRM_DATA} + -t 9.89427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 397 -a 0 -x {0.1 4194304.0 319 ------- SRM_DATA} - -t 9.89427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 397 -a 0 -x {0.1 4194304.0 319 ------- SRM_DATA} h -t 9.89427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 397 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.89707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 395 -a 0 -x {0.1 4194304.0 317 ------- SRM_DATA} r -t 9.89707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 395 -a 0 -x {0.1 4194304.0 317 ------- SRM_DATA} + -t 9.9 -s 0 -d 1 -p cbr -e 800 -c 0 -i 398 -a 0 -x {0.1 4194304.0 320 ------- SRM_DATA} - -t 9.9 -s 0 -d 1 -p cbr -e 800 -c 0 -i 398 -a 0 -x {0.1 4194304.0 320 ------- SRM_DATA} h -t 9.9 -s 0 -d 1 -p cbr -e 800 -c 0 -i 398 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.9028 -s 2 -d 3 -p cbr -e 800 -c 0 -i 396 -a 0 -x {0.1 4194304.0 318 ------- SRM_DATA} + -t 9.9028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 396 -a 0 -x {0.1 4194304.0 318 ------- SRM_DATA} - -t 9.9028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 396 -a 0 -x {0.1 4194304.0 318 ------- SRM_DATA} h -t 9.9028 -s 3 -d 4 -p cbr -e 800 -c 0 -i 396 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.9028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 396 -a 0 -x {0.1 4194304.0 318 ------- SRM_DATA} - -t 9.9028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 396 -a 0 -x {0.1 4194304.0 318 ------- SRM_DATA} h -t 9.9028 -s 3 -d 5 -p cbr -e 800 -c 0 -i 396 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.90853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 397 -a 0 -x {0.1 4194304.0 319 ------- SRM_DATA} + -t 9.90853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 397 -a 0 -x {0.1 4194304.0 319 ------- SRM_DATA} - -t 9.90853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 397 -a 0 -x {0.1 4194304.0 319 ------- SRM_DATA} h -t 9.90853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 397 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.91427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 398 -a 0 -x {0.1 4194304.0 320 ------- SRM_DATA} + -t 9.91427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 398 -a 0 -x {0.1 4194304.0 320 ------- SRM_DATA} - -t 9.91427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 398 -a 0 -x {0.1 4194304.0 320 ------- SRM_DATA} h -t 9.91427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 398 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.91707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 396 -a 0 -x {0.1 4194304.0 318 ------- SRM_DATA} r -t 9.91707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 396 -a 0 -x {0.1 4194304.0 318 ------- SRM_DATA} + -t 9.92 -s 0 -d 1 -p cbr -e 800 -c 0 -i 399 -a 0 -x {0.1 4194304.0 321 ------- SRM_DATA} - -t 9.92 -s 0 -d 1 -p cbr -e 800 -c 0 -i 399 -a 0 -x {0.1 4194304.0 321 ------- SRM_DATA} h -t 9.92 -s 0 -d 1 -p cbr -e 800 -c 0 -i 399 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.9228 -s 2 -d 3 -p cbr -e 800 -c 0 -i 397 -a 0 -x {0.1 4194304.0 319 ------- SRM_DATA} + -t 9.9228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 397 -a 0 -x {0.1 4194304.0 319 ------- SRM_DATA} - -t 9.9228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 397 -a 0 -x {0.1 4194304.0 319 ------- SRM_DATA} h -t 9.9228 -s 3 -d 4 -p cbr -e 800 -c 0 -i 397 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.9228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 397 -a 0 -x {0.1 4194304.0 319 ------- SRM_DATA} - -t 9.9228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 397 -a 0 -x {0.1 4194304.0 319 ------- SRM_DATA} h -t 9.9228 -s 3 -d 5 -p cbr -e 800 -c 0 -i 397 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.92598 -s 2 -d 1 -p SRM -e 116 -c 3 -i 400 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} - -t 9.92598 -s 2 -d 1 -p SRM -e 116 -c 3 -i 400 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} h -t 9.92598 -s 2 -d 1 -p SRM -e 116 -c 3 -i 400 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} + -t 9.92598 -s 2 -d 3 -p SRM -e 116 -c 3 -i 400 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} - -t 9.92598 -s 2 -d 3 -p SRM -e 116 -c 3 -i 400 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} h -t 9.92598 -s 2 -d 3 -p SRM -e 116 -c 3 -i 400 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} r -t 9.92853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 398 -a 0 -x {0.1 4194304.0 320 ------- SRM_DATA} + -t 9.92853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 398 -a 0 -x {0.1 4194304.0 320 ------- SRM_DATA} - -t 9.92853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 398 -a 0 -x {0.1 4194304.0 320 ------- SRM_DATA} h -t 9.92853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 398 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.93427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 399 -a 0 -x {0.1 4194304.0 321 ------- SRM_DATA} + -t 9.93427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 399 -a 0 -x {0.1 4194304.0 321 ------- SRM_DATA} - -t 9.93427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 399 -a 0 -x {0.1 4194304.0 321 ------- SRM_DATA} h -t 9.93427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 399 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.9366 -s 2 -d 1 -p SRM -e 116 -c 3 -i 400 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} + -t 9.9366 -s 1 -d 0 -p SRM -e 116 -c 3 -i 400 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} - -t 9.9366 -s 1 -d 0 -p SRM -e 116 -c 3 -i 400 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} h -t 9.9366 -s 1 -d 0 -p SRM -e 116 -c 3 -i 400 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} r -t 9.9366 -s 2 -d 3 -p SRM -e 116 -c 3 -i 400 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} + -t 9.9366 -s 3 -d 4 -p SRM -e 116 -c 3 -i 400 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} - -t 9.9366 -s 3 -d 4 -p SRM -e 116 -c 3 -i 400 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} h -t 9.9366 -s 3 -d 4 -p SRM -e 116 -c 3 -i 400 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} + -t 9.9366 -s 3 -d 5 -p SRM -e 116 -c 3 -i 400 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} - -t 9.9366 -s 3 -d 5 -p SRM -e 116 -c 3 -i 400 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} h -t 9.9366 -s 3 -d 5 -p SRM -e 116 -c 3 -i 400 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} + -t 9.93699 -s 0 -d 1 -p SRM -e 116 -c 1 -i 401 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} - -t 9.93699 -s 0 -d 1 -p SRM -e 116 -c 1 -i 401 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} h -t 9.93699 -s 0 -d 1 -p SRM -e 116 -c 1 -i 401 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} r -t 9.93707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 397 -a 0 -x {0.1 4194304.0 319 ------- SRM_DATA} r -t 9.93707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 397 -a 0 -x {0.1 4194304.0 319 ------- SRM_DATA} + -t 9.94 -s 0 -d 1 -p cbr -e 800 -c 0 -i 402 -a 0 -x {0.1 4194304.0 322 ------- SRM_DATA} - -t 9.94 -s 0 -d 1 -p cbr -e 800 -c 0 -i 402 -a 0 -x {0.1 4194304.0 322 ------- SRM_DATA} h -t 9.94 -s 0 -d 1 -p cbr -e 800 -c 0 -i 402 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.9428 -s 2 -d 3 -p cbr -e 800 -c 0 -i 398 -a 0 -x {0.1 4194304.0 320 ------- SRM_DATA} + -t 9.9428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 398 -a 0 -x {0.1 4194304.0 320 ------- SRM_DATA} - -t 9.9428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 398 -a 0 -x {0.1 4194304.0 320 ------- SRM_DATA} h -t 9.9428 -s 3 -d 4 -p cbr -e 800 -c 0 -i 398 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.9428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 398 -a 0 -x {0.1 4194304.0 320 ------- SRM_DATA} - -t 9.9428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 398 -a 0 -x {0.1 4194304.0 320 ------- SRM_DATA} h -t 9.9428 -s 3 -d 5 -p cbr -e 800 -c 0 -i 398 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.94722 -s 1 -d 0 -p SRM -e 116 -c 3 -i 400 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} r -t 9.94722 -s 3 -d 4 -p SRM -e 116 -c 3 -i 400 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} r -t 9.94722 -s 3 -d 5 -p SRM -e 116 -c 3 -i 400 -a 3 -x {2.1 4194304.0 -1 ------- SRM_SESS} r -t 9.9476 -s 0 -d 1 -p SRM -e 116 -c 1 -i 401 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} + -t 9.9476 -s 1 -d 2 -p SRM -e 116 -c 1 -i 401 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} - -t 9.9476 -s 1 -d 2 -p SRM -e 116 -c 1 -i 401 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} h -t 9.9476 -s 1 -d 2 -p SRM -e 116 -c 1 -i 401 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} r -t 9.94853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 399 -a 0 -x {0.1 4194304.0 321 ------- SRM_DATA} + -t 9.94853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 399 -a 0 -x {0.1 4194304.0 321 ------- SRM_DATA} - -t 9.94853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 399 -a 0 -x {0.1 4194304.0 321 ------- SRM_DATA} h -t 9.94853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 399 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.95427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 402 -a 0 -x {0.1 4194304.0 322 ------- SRM_DATA} + -t 9.95427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 402 -a 0 -x {0.1 4194304.0 322 ------- SRM_DATA} - -t 9.95427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 402 -a 0 -x {0.1 4194304.0 322 ------- SRM_DATA} h -t 9.95427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 402 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.95707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 398 -a 0 -x {0.1 4194304.0 320 ------- SRM_DATA} r -t 9.95707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 398 -a 0 -x {0.1 4194304.0 320 ------- SRM_DATA} r -t 9.95822 -s 1 -d 2 -p SRM -e 116 -c 1 -i 401 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} + -t 9.95822 -s 2 -d 3 -p SRM -e 116 -c 1 -i 401 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} - -t 9.95822 -s 2 -d 3 -p SRM -e 116 -c 1 -i 401 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} h -t 9.95822 -s 2 -d 3 -p SRM -e 116 -c 1 -i 401 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} + -t 9.96 -s 0 -d 1 -p cbr -e 800 -c 0 -i 403 -a 0 -x {0.1 4194304.0 323 ------- SRM_DATA} - -t 9.96 -s 0 -d 1 -p cbr -e 800 -c 0 -i 403 -a 0 -x {0.1 4194304.0 323 ------- SRM_DATA} h -t 9.96 -s 0 -d 1 -p cbr -e 800 -c 0 -i 403 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.9628 -s 2 -d 3 -p cbr -e 800 -c 0 -i 399 -a 0 -x {0.1 4194304.0 321 ------- SRM_DATA} + -t 9.9628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 399 -a 0 -x {0.1 4194304.0 321 ------- SRM_DATA} - -t 9.9628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 399 -a 0 -x {0.1 4194304.0 321 ------- SRM_DATA} h -t 9.9628 -s 3 -d 4 -p cbr -e 800 -c 0 -i 399 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.9628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 399 -a 0 -x {0.1 4194304.0 321 ------- SRM_DATA} - -t 9.9628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 399 -a 0 -x {0.1 4194304.0 321 ------- SRM_DATA} h -t 9.9628 -s 3 -d 5 -p cbr -e 800 -c 0 -i 399 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.96853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 402 -a 0 -x {0.1 4194304.0 322 ------- SRM_DATA} + -t 9.96853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 402 -a 0 -x {0.1 4194304.0 322 ------- SRM_DATA} - -t 9.96853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 402 -a 0 -x {0.1 4194304.0 322 ------- SRM_DATA} h -t 9.96853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 402 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.96884 -s 2 -d 3 -p SRM -e 116 -c 1 -i 401 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} + -t 9.96884 -s 3 -d 4 -p SRM -e 116 -c 1 -i 401 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} - -t 9.96884 -s 3 -d 4 -p SRM -e 116 -c 1 -i 401 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} h -t 9.96884 -s 3 -d 4 -p SRM -e 116 -c 1 -i 401 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} + -t 9.96884 -s 3 -d 5 -p SRM -e 116 -c 1 -i 401 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} - -t 9.96884 -s 3 -d 5 -p SRM -e 116 -c 1 -i 401 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} h -t 9.96884 -s 3 -d 5 -p SRM -e 116 -c 1 -i 401 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} r -t 9.97427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 403 -a 0 -x {0.1 4194304.0 323 ------- SRM_DATA} + -t 9.97427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 403 -a 0 -x {0.1 4194304.0 323 ------- SRM_DATA} - -t 9.97427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 403 -a 0 -x {0.1 4194304.0 323 ------- SRM_DATA} h -t 9.97427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 403 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.97442 -s 1 -d 0 -p SRM -e 116 -c 2 -i 404 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} - -t 9.97442 -s 1 -d 0 -p SRM -e 116 -c 2 -i 404 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} h -t 9.97442 -s 1 -d 0 -p SRM -e 116 -c 2 -i 404 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} + -t 9.97442 -s 1 -d 2 -p SRM -e 116 -c 2 -i 404 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} r -t 9.97707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 399 -a 0 -x {0.1 4194304.0 321 ------- SRM_DATA} r -t 9.97707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 399 -a 0 -x {0.1 4194304.0 321 ------- SRM_DATA} - -t 9.97853 -s 1 -d 2 -p SRM -e 116 -c 2 -i 404 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} h -t 9.97853 -s 1 -d 2 -p SRM -e 116 -c 2 -i 404 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} r -t 9.97946 -s 3 -d 4 -p SRM -e 116 -c 1 -i 401 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} r -t 9.97946 -s 3 -d 5 -p SRM -e 116 -c 1 -i 401 -a 1 -x {0.1 4194304.0 -1 ------- SRM_SESS} + -t 9.98 -s 0 -d 1 -p cbr -e 800 -c 0 -i 405 -a 0 -x {0.1 4194304.0 324 ------- SRM_DATA} - -t 9.98 -s 0 -d 1 -p cbr -e 800 -c 0 -i 405 -a 0 -x {0.1 4194304.0 324 ------- SRM_DATA} h -t 9.98 -s 0 -d 1 -p cbr -e 800 -c 0 -i 405 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.9828 -s 2 -d 3 -p cbr -e 800 -c 0 -i 402 -a 0 -x {0.1 4194304.0 322 ------- SRM_DATA} + -t 9.9828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 402 -a 0 -x {0.1 4194304.0 322 ------- SRM_DATA} - -t 9.9828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 402 -a 0 -x {0.1 4194304.0 322 ------- SRM_DATA} h -t 9.9828 -s 3 -d 4 -p cbr -e 800 -c 0 -i 402 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} + -t 9.9828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 402 -a 0 -x {0.1 4194304.0 322 ------- SRM_DATA} - -t 9.9828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 402 -a 0 -x {0.1 4194304.0 322 ------- SRM_DATA} h -t 9.9828 -s 3 -d 5 -p cbr -e 800 -c 0 -i 402 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.98504 -s 1 -d 0 -p SRM -e 116 -c 2 -i 404 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} r -t 9.98853 -s 1 -d 2 -p cbr -e 800 -c 0 -i 403 -a 0 -x {0.1 4194304.0 323 ------- SRM_DATA} + -t 9.98853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 403 -a 0 -x {0.1 4194304.0 323 ------- SRM_DATA} - -t 9.98853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 403 -a 0 -x {0.1 4194304.0 323 ------- SRM_DATA} h -t 9.98853 -s 2 -d 3 -p cbr -e 800 -c 0 -i 403 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.98915 -s 1 -d 2 -p SRM -e 116 -c 2 -i 404 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} + -t 9.98915 -s 2 -d 3 -p SRM -e 116 -c 2 -i 404 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} - -t 9.9928 -s 2 -d 3 -p SRM -e 116 -c 2 -i 404 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} h -t 9.9928 -s 2 -d 3 -p SRM -e 116 -c 2 -i 404 -a 2 -x {1.1 4194304.0 -1 ------- SRM_SESS} r -t 9.99427 -s 0 -d 1 -p cbr -e 800 -c 0 -i 405 -a 0 -x {0.1 4194304.0 324 ------- SRM_DATA} + -t 9.99427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 405 -a 0 -x {0.1 4194304.0 324 ------- SRM_DATA} - -t 9.99427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 405 -a 0 -x {0.1 4194304.0 324 ------- SRM_DATA} h -t 9.99427 -s 1 -d 2 -p cbr -e 800 -c 0 -i 405 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} r -t 9.99707 -s 3 -d 4 -p cbr -e 800 -c 0 -i 402 -a 0 -x {0.1 4194304.0 322 ------- SRM_DATA} r -t 9.99707 -s 3 -d 5 -p cbr -e 800 -c 0 -i 402 -a 0 -x {0.1 4194304.0 322 ------- SRM_DATA} + -t 10 -s 0 -d 1 -p cbr -e 800 -c 0 -i 406 -a 0 -x {0.1 4194304.0 325 ------- SRM_DATA} - -t 10 -s 0 -d 1 -p cbr -e 800 -c 0 -i 406 -a 0 -x {0.1 4194304.0 325 ------- SRM_DATA} h -t 10 -s 0 -d 1 -p cbr -e 800 -c 0 -i 406 -a 0 -x {0.1 4194304.0 -1 ------- SRM_DATA} v -t 10 sim_annotation 10 7 simu finished f -t 10.00000000000000000 -s 1 -d 4194304 -n C2_ -a srm(1) -o 1.0 -T v -x f -t 10.00000000000000000 -s 1 -d 4194304 -n C1_ -a srm(1) -o 0.5 -T v -x f -t 10.00000000000000000 -s 2 -d 4194304 -n C1_ -a srm(2) -o 1.3999999999999995 -T v -x f -t 10.00000000000000000 -s 3 -d 4194304 -n C1_ -a srm(3) -o 1.3999999999999995 -T v -x f -t 10.00000000000000000 -s 4 -d 4194304 -n C1_ -a srm(4) -o 1.3999999999999995 -T v -x f -t 10.00000000000000000 -s 5 -d 4194304 -n C1_ -a srm(5) -o 1.3999999999999995 -T v -x nam-1.15/ex/tcpecn.nam.gz0000664000076400007660000015000406663365003014107 0ustar tomhnsnam‹UØÍ6tcpecn.nam­ýM¯$MŽ¥ îóWÜõ4 ßª¶Ì w=h {f[ÈÊ +&3<'ë Bý÷±ëWMEä¨QxœÔ"Qõ†ÇtR…G„þ¾ºÿúõûêþû×ð—þ—¯î¿†¯îŸ¾Æ¯îûzýÿ÷¯åþéø3ÿù«ÿêþöõÿåÿéÿ[üÃáûþó¯þOý÷ÿø/ÿí¯Å2~ÿ'ÿþ×.þÑô›ðï¿þÇߊ8ÿÃûoÿþoÿò×øÿôÿüùûŸÿ×ÿãÿøú/ý/ÿå?ÿúÛ××üëýýëß¾þöëŸÿúÕÿ¥ÿúÇ¿ýóÏÿgþKÿ¿¾ºûúþã_Ý¿~ýÏÿUƒ4Ô¤A'½l’¯á1Öð×?ZçóýoßÉÿýçoú_ÿéßþÃ_ÿéoÅÖÿgýñŸÿ|üþç¿ }y÷õß‘_Å8ÿ‡óøO¿þöŸ8ÿÍø¿ÿüoß°ûþ}ËòÓá'¼ç‘ï?ò¯_ø}uÿåkÿ‡¿ÿü¿ÿ§þË÷ÿù?¿þßÿÇ÷·ñOÿùßÿé_þúÍø ~þ“ý÷Ÿì™?¹|ÿÉ…ù“Ã÷Ÿ˜?9~ÿÉ‘ù“Ó÷Ÿœô?ù/ÇŸüý—ùçÌü÷¯¡ÿù×W÷ÿüþäúñü/}»ößÿó’ÿÚýó÷÷œƒXûú_Ãäû·8~§¸”¼ÿÝÿ»`ÌÜ4æ_þú¼üõƒ¸ØÄ×ßîÿwò¦Ã]¯¯é/KñÏßëŸþßÿüÿ:cö^Ã?<©?úOÿãoÿü¾éßÿ#ìÿúúïÍÿ½¡üß›ÿ{ÃÇÿ½ñú¿÷ß5È¿þúÛþ¯¿þý?üãúëß^âç¯HþéáÇÀôûO—_÷¿}ÿ_Ý_ï;>ý‘ßÿñg5¿þÏóûÿüë÷ÿùû×ÿì¿úÿõóþ/‹ó¿Ü½<8ü¯â¯0hÿõáP£üIÃ÷_aPÿ €¹þþì¿|üþý³qwú0Õ„÷ùB&H„€žXwg(RMP­Ð §'öazýËI‘(<2þæ8C“.éÈ>Ž/$‘ ¼2¿-é™O×þ֤מ/#Æc_q¤Àñê˜(GâtÏ4¯ëæü‚Ó¢úØ^L!ˆ!è•õ±.8¥ g:ó”ë» r$ÎAí£?ZéQÜ<ç¾ÃœAsO#q¸gÇǰ(]8JÀHE9瀇–mØš$r‰eÎïÖ{—˜—ó¯ŸÒPÀ(tÓcúÀ_ïYrÖó_›qžÏóÅ/8k¤‹aíÍ謞 †¯¡p¿÷†HRxÌ¢þÕÆ¯1ÿÕ^Gö?ǽ!„Àç´Ž棛ÓÒÞh~„tw@$¹xeFrLˆùmÌàÍÕNÌÇDä7éâ¢Ýÿ§ ¤®Ó=Û4ÏN†Äè“})(ïg™ù_FéÇNͧ]íÃñª–;ê…ê ]Ö©y™¤lêß«þŽÓÓ.ß‘ßѶP”NÈhã>2ºc GÖÁ›„Œ¶%oì¯L±•™æGâ…€Ov.g5•ûd´k!MáŽ0$Ƽ¶inK2Zý½å?A"„‹/ÌÌÖç i{´©Ï!ˆ!è•uØVWlZ§Ôö÷á&H„€žØfTÒÒòç£ùuøBÔþxý_˜Së2Ú%°–æ†c G†¥¸“ÐúN[_G€ zb™Ý1IÈhÕÿ†¾ùiøB ;Ö~œ{ „Œ¶K[›±Cb ôÈ£½T‘Iˆh•Œïü1ô»;. M­Ï#€Ý1ïsKv$D4ÃÒö†!!zcv3·v`™Ð*€·v`ÂQ̯+Æe údŸÇÁõ7z–„éü×lTó§¢d4~*e“úfuoÕ’÷ô5÷àÞ BꪙԿÚü5µÇøç¸7D‚øÆÃ|tsBHûàøÒÝ‘ äâ•m4{ÜÍìIh-ÐæFöÏ UÊ©ò°ËôÉØû¿Ú„#>!§%Ó¶,.ß> ÂÌ·2ç"ùM“ßi’ὕ¹|-Eì=¸7D‚H~,Foe®_kñW›—?ǽ!„µÓ–u)>¤?ü%Áåµr¥!OhËGÈiÉ6ù#”bXòrZòh§aât"Z ¶ö!É8ZF6>{ໆ}'®¿¶Óƒßí´ôK«²HœUNDÓ'ͳŠQŨRKŸ=¿”"õGÞ³@*µ]]{‹~Ú44{bƒÞÖ­vl.îØ¼P)£wv«-úôN¤‚CeðBpµoÜž¶©˜^|ÕóÐIã–ê³@lü]{ïuÚd¸yWC_í½\8L®^|Õ,æ¡þÕª½×üNù‚Ã/É Á/iäÇÇä‘Ò®+†tw@$A¯L“?ï$„¶|„œ–[Éfaà„´;†íÂ@"AÆgã>þÉ!!ĈÏGH÷‡¦By!è•}õç•„Ö·%Ë0ù¿•„æ/7úÖ7@H‘YÈM~³hsB §~„tw@$Õ2Y›!B⽌Ð25åÑøR"ZÕJã{õ#$„@o¬«ÿ+Iiºth~­~„„èrÛÞ¬ é!Ý BpýîÜf«¹õB Bk¿¾%¡¹nš_«Ÿ zâ]Û÷|! !M¢|W_j!!ÄÅܺYG=!†S?Bº; „ WÖžøYìÇè$D4¿Öö7âGHÞØ¸ýjûÙ˜"Jfý…øB\üÁHšUÒ¾MÔ® „ „€W¶Ù#~ŒNBDókm~#„„èÑÚ#ßÈ i]±çÖ@Hþ "ÍšÑ 1œúÒÝ‘ ½ÒìJõö©j+z@½çLõÇ€êþFý8lA¬Í}jãcM@h5úŒã&H„€žØÖiô…öY"úó_ƒqd)zóÇÆiSßì¹ú%‹ík+íÁ½!„@ƒÅ¬ê_mÿÚ‹èíÖ)ƒÉv{{ÿóµs!!œ…·}þs÷¾*A®,òHÝ¬ŽŸ#ÀÍêx"Axeï9ç~\Œ !íÃägHwD‚‹WÅ›ZT´Hˆh&òfåĨTºZÏ>{Ð/Ãè_Ï !FŒ>BNKÆöI½‘á"šzÝ̳„„—ñ±š—N?lÏ‘¯Ü[·N×b×°|Ü5œ6ßʧ&üØ÷øz”®vàÞ B`×Àb>]€þýëñ›¬J ¡M'¤µ$¦¾¥L„„°oاíÏœÝ*A ®®‰«û4;È'ÄñGHwD‚ŒÑ²­íýT#K‚Z¸@Lémù9-YÇÕ."5+È'¢™Ì›d¢Ú9Ô+ÚeFh]"+:!ƈ‘‚9­ÙÚ5ËFžKˆhé¶‘mý !06/=3ó÷ùƒ{ˆÿÍÊVìÖÏ»‡·Míïeú´û=B>| eºò3F‚ÜA˜OKô°küÆ2†\ݹ­Q;Qñ¦¦BùB :=ú?wpv«1`Ícè‹ö‡Ò"A¬öã[éϬÑ0Ù»Þì€fêjvŽþP)eõåzl¹Dg|· 1FtÌiÍh×å?/愦>53ŠŸ Æebêò?´g‰ÈuùÉÐȽÐÈí£Fž6ߊþ»ÎaúŠˆ ˜1Ä€F²½í0Ì_CQ­yÌT­sÂâà‘ 5aåJ•Æ׋Áï{åþRJèÓŸY£a²5íúë`7OÄoKOGШ~·W5}ö`”6ªþª}Á 1F”Ì៱¨³±¥vcjߌýØ>yÛáŒhƨUö ªo¦¬ ;í¹ø¥¬ ÿÑBx–ˆ\þý•k¤:ÊÙ¦AûŽDYÿ­gÙ:òá uä†ÔªEcôßzþ.µw óOpPesCðK" d­^a†´/6{…1ˆ!µŽýÆ„Ú'M7cÔ|IÓ®k½­dѬjý9 ÊeuËe ú£ªmýQJˆ¢¶eý&ØìŒe›Œå¨ÿ&¸ìŒùpP\pC0û‘ý7ÁÇööü˽ 0¼ì’Ýüš\"ý(4 !êJo@Þ– ýâ×…„Ã’‹%ž\|±¤u‰xî[š@HßÈ@–éZw$2ÄpêGHwD‚PÉa  %ˆÁÄù²YØÊˆ¦:µ*[D¥•e‘Ëiú¥ªrý‘ü? ÄÀ¿ av‚²MíL7º¤T ðzlõb@1Y̨ÿõ~6’ç_ï]žúàu?êÅà5/ó×!Ÿ³rBD«I`hƒ!!zcá¶!·j !†j„dKv¿6$„4ƒ‹EñZ£ü !.‘Ù#ûÌ‹GŒØ(˜Ó²¨ÛºÏ’!Fˆ?Bº; „àbã …íú½ƒ_ÌNÔÕ>ož%"—ÕC+ÍŽP¶ÉHÚŸjÖÕ~«‹?lÛœÔJ³è½º‚=pç¹øá‹rbð‹z<¾‹Üž\˜ÑT©vFö#$„oŒ=·Q¶i 1팬aNkÞ—Ö}»ª„Ãs±Æ“•/¶4?7ÜTê@Hß ×B2nfŒáVÓ݃‘ Tsœ¸íb³9â…`œ–q}ßKBD3·´¿Z?BBˆ‹78ÙPÄ5!ÆÈ) æ´fåêxÖZ™Úf¬ DBŒÑJÕYµÂÅ+FŒÌi Ù$>wÜbÚ¡Ö0Ý= b0Ïí”з;¥^|5SÏT=”ï7!¤™cŒ•‚H‚>¨Šƒõ힘¦k/Óeê/7‘½B´ÇÏÝã„ù ¦»#A ¬èiâeÍÆ¦‚qšË!`TALˆømIï©c:ÕmåjOç³ý²0gVe%%„4k­éDBôÉz ûó@? ĘNÓÓú•¡á»2ô(*CûÇÊÐiS¯íc~¬jüduùŠk.`ÆH•!³|Z‡]ë×°1ܨ¶™—7ât»\$²r"!fämýs7gçJƒëŒ,ä¶ï,gŒjÓ݃‘ #õàìÆ½/#õ ®%‹„˜vÀ5ÌÛš¹/çªÿQ…3!¢™â›uV¢ÒòêÜâ³¢4÷sdu'Ä´£¤aNk¢V¤e½„V¨­ü‚H‚‡Íü‰ÙçÏîY"úü/cg1ôÅÖâñqkqe|6£®½Û×Pìr]ÀŒ‘ ¶,æÓJ=ìÚ¿†½ "Uh³dëÄ4ׇ!Z!ˆ„ Xóøøs7gçJƒ ͬw÷­VsBŒjã‡6AŒ1©9ÔQ“ #5sW’EBŒ!Z æ´æ=þÏ[ Íßlp8ÕÖ¢* øìÁ(-[du'ÄQR0§5+QžÕ²^BHSЭüH‚Ú–Þ|äóg÷,ù:Ëjm-†bkQì3ª½ÅÛ*ã»iüøñ5”KÃÌ bpoAbôçGÇþkìË(rEvK·6¢´½\º Zˆ„ ¨XûôçnÎΕ WÙcjþˆä„¨n@º; „`Œ¸_ÅX×–½ˆÑÒs¡VÒDBŒ¡W &[Ã4Œvâ i&x£è€T; (/ùlÂX}ÿDÅ¿ºbŒX)˜l ÑѲ^BHSÑü‚H‚™†ˆòé= Hn‰¬½µ»ËÝÅðqwqÚe|9ú¥ãð5IÌÌ b`wÁbôžÏ8~ŵÃe²š"„rÖ£BßáÕu+€4k™¸>Ö£·Jƒ«Œìt7zBŒ„tw@$Áq¿–±n°{1£… µ’ b ­R0§5+Ó1š÷'¤™Üæ½Rï+êÚ’Ï&ŒÕʵC”ÕcÄJÁœÖlívH#ç%D(áf2¯!!Æfg!ÊG÷,!¹2Z;Š©ÜQŒŸw;Õ,X]r§¯±(¹€#A î(HŒÞêç¯q.ãhõBÍÚÛý‡Ÿ/jj*–!!ªÕNU³kg·Jƒ«Œìþ7®zBŒ„tw@$­ä/ŠŒy1£µçB­$ˆ„˜¶Ji˜ÓšèXMûÒJîVÓÞ©wu]ÉgÆj º ÚêNˆ1b¥`NkÆv¤‘ó"šZÞ̼„„›‰èhݳ„䈹£˜ËÅôqGqÚe|3³.¹Ë×X\Üt3F‚ØQ°½Á3®_ãZÆÑꀚuBšKË•bB ZÍT%{ÅôáV bp•qMë™…cYÁt÷`$ˆÁHqÏ+Z7ª½ŒÔÊ\I 1†V)˜l ѱ:ö'¤™â޽Rï+꺒Ï&ŒÕFu@´5žcÄJÁdkÚFæKˆh*z;ÿúB`lv¢÷¡}tÏRô>Ì}Eùïðù ÞÓ.ã›ùÔË;¾}EiÈÌ bp_Ab­ýk,î ­®÷a)׃é;XºH‚šÅ]ì_/…èçJƒklþ虺¢}bÚ¡Ö0Ý= b R÷,¥õÓ/"µ \À•d‘c(–‚9­‰>ˆÕ³?!ÍDoôìzwQט|6a¬Fª¢­ñ„#V æ´fbú F>!Me7²p"!Fh&º!Ú§÷, K~·“Ùc£Þ~•ŽrqÚÕþr¶^áÇ×Xlê\ÀŒ‘ æâvªyaÉ͉i}Ñ›!6!ˆ„ è²S>¢-uøÄÎU0Ý= bP„¹w­_6y1©•jh«)!¦m†9­ÙÚ­ƒÁnpŸˆß– ž·Q½É\µº}ö`”v¢L¯­ì„–sÍH‚>yPE^3Ç<ˆëfe˜DBðÊNv•«N 1†sLwF‚ȼ;÷B õóB/#5¶Ë™ƒÝz;ÍÜÒl½9U®«šp>{Ð/Uîø³DäÜï½õðq;r/§œ6 šJþ,ÎO~êË}^ëü^ ÊX̬ÿõêßíïQþÕòaBHS%ŒÌ‚H‚ÙçÝ=û'_‹/^ ®²…*eš:±Äír T"‘äâ®xh¼ô¸›SÅš˜îŒ1øýrïNZ¿šôb0R{»\7Ø ¦ÑšfƒÉ¨Ô³j5ùì¹ø¥l5ýÑ–àY ŠF“¥žÄë §QFÎÒG=Âë .àõ íÅ |’}Ü#ü6}õM-!&„4EËJ͈„ ˜~Þí¡?qò‡Í»ËìÑs*¬ìßbÚz£a²5\Ò­‡1úìǼ4¢‚H‚1âÚTÖƒcnø™†éîÁHsñÍÙŒ&Ä߯‚9}Ã=€ký6ß‹AßLLÒè.¦Ý%¤Ú^@ŸÉgz§ê3ýÑ®éY Š.“¹Á Þ9­2¾çO¾ª¶©]xÝíz1°Ã 1{¯þõàêc$[3K'„4uÝÒ‹DBØa<ÞÏ?ý‰“?d!'×ÙÂmT”-nBŒ‘¡L¶†zSÆÔRfLÛ>JH‚1"{pýçû4 1mçj˜îŒ1WßDöë 1Æ÷«`NßpÏ[2x1è›(ý[í¼Òb«ç€Ô;Œº±ç³ ½ó`ÊÖéYBòpÌ=ñRÈi—‘ØG]„ë—B\À¥ƒ{ £÷8à×êf”–§BZ×òLň@$©÷SÏÕ j'g×JS¯´†Úªh›Ü„#G+˜Ón ¡¦Óüì.—í+-A$Á‘Ýæm©öc8WÁt÷`$ˆ¹ú&²cOˆi¿æô ÷^°ñƒ¾™‰‰Ñ‚ͦž·[°H½Ç¨š±N›.Þ!Ú$ÚæéY@ŠF‰5º—x;$Ûe|ÑútÛúí0c$ˆ©÷4FoÕ¿_Ÿzf˜¤–§BšÊn)F"!î1¸ÊÁŽGþúý7WÚÊmU”MnBŒ‘£L¶†zwßTSf¬ä~¹lZH‚1"{òÊŸ„ù ¦»#AÌÅ7T§DÛ±'Ä߯‚9}c¾üû/e<寠oD§ÄèSgHSŠÛ}j¤ÞcTk§Mà¡':%ÚæéY@Š^‰¹Ç°_Év_ô®‹põšˆ˜1ÄÀƒÅè­ ú·ì/ 1)@ËÓ !Me7#‘öW9ØñÈ_¿(âÆàJ¸­Š²ÉMˆ1r´‚ÉÖP½KMf´ì£oki"!ƈlη_SÏù ¦»#AÌÕ7‘{BŒñý*˜Ó7æÂ?›Ü#ÃùÁ‹AßCw¢S!M)nwª=zQõ¬6¡w¢W¢mžž%$÷JÌ=†ý²H¶«ýE?]„«—E|ÀŒ‘ ÷$¦Ñ ª~Ñþ½-O'„´”ÝTŒDBÜcp•ƒÚÉÙµÄàJ[¹­Š²ÉMˆ1r´‚9­áF›jÊ ~\6* ¥ˆ„ #²=ßž’1†sLwF‚˜«o";ö„ãûU0§oÌW…6XêÄ#£¾™aÀF§:C~ÛÒ»:ÕHýöKÕ³vÚtñÓ+Q6OÏRôJVba¼,’í2»þ«Åúe0c$ˆA·3³µ´šÒb#Á‡ ‚ O˜ÙÇÚ{¢¤fŽ(\þ2LSÿýXì¯ò»¬>En>ðCÁv꿦B;\ÀŒ‘ æâvn ¥l¾bÚÚ¡a²5\ÇPù‘™Xü04>‘cD^hO•Éù ¦»#AÌÅ7TG;I$Ä߯‚9}c¾ü³ii¿ÆìÆ o¸ÙÉZ¦Iˆi[£aNk˜ÙÉV?d¦[ý|¤Þ‰Õ}ŸM+ff±–mBšBlå½DBô 3³X ö³„äC6bKðx ¯ÎÏ–à½?¨¶ÜX߇þ¶î4|MeJõ3F‚˜‹Û©–‹¶WNˆ1Rª‚ÉÖp-Kü˜AÃKú" A0F\—ß^–1†sLwF‚(.Žæ3Á?êÙ~©ÚHMܨamm'Ä"¬`²5ÄCûVÃ{bÆúZ o¤áºõí³ cÅ ÷ÕÖwBHSúŒL‚H‚>a†ûjÁ~¢D´Û"<®ócß"|(r)Â7ýöñÐExüšŠ$æfŒ1èvs/•à'cîoÈð lå÷Eb”‹c¸´Œ•"¸2™ãg›˜îŒ1 |“ù6ï¦ý\¿ƒ‘â†áj *!ÆP>sZà õڰ3xÖjÃ: µòÕ YŸM+cül{…'¤´|lg›Ebô 3ˆV ø³„ôç¿¶ú½¶3óøV¿·VêÇMjúOý¤c}L_S™É\ÄÌ‘(çâyªlæyclëaÌh¤ùEbt Ù½Sß(›Ìi©MLwF‚ÀÙ|"ù7Æ àÆ@¤fnv«º¤rÚæ¨œÓfz«Õvœ™I©VÛÑ©%°n@úlÂhóRÛk£c}Ì_S‘Ë|ÄÌ‘(çâyªôieúÙ˜3zs¹S'úEbt ÙS®%ÄþU0Ý= bP¹wŽçÇÝŒ7fT]R 9–*œlQÿ´Úl33ÔÓj³9 •BÃÍgFËíÙ^ã )mÙ±òMˆ"1 ú…ò©üY@r ôûÅ Kçµ_ûå-‡VÈMÁúÆå¤åk*s™‹˜9å çͱœ\¦7†aÆ\"‰>D‘åâ® Úž œ1†LwF‚ÀÅ|øG»°ó ÷:¼ˆÔÂÍÂT—TBŽ% ç´‡™†i5¹fò¤Õär@j ¬Û]>›0ZÆüÉöOHiËŽ‘ob‰QÐ/Ì J-àÏrÖAB—q¿Ôø«ÔÃRnÖãÐ7.ã¬_S‘Ë|ÄÌ‘(çây®jdúÅþxs‰`èc‰QÐ1d›ª=d8c ÿ*˜îŒ1(æóµ?ÚÕž¢áÆ`¤¸I”ê’Jȱ$Páœö³({ªÛµlDÕÑìvy(µ Ö}/§U1c*e{'¤´ýlåœEbô˃(†ª1–”³º „îõñþÅÔ[+|5ÇÆ}˜ík*š‹˜9å\\ÏUC­toŒâü1f¸D²}ˆ"1 8fåºUÆ÷Œ1ü«`º{0Ä€®æ«?Ö-äÆ`¤F²ª,©„KN¶‡¨†š-¯u$JfËËC©u°n~9­ÂˆÓ.ÛëF‘Cö­” 1ª›˜îŒ1 ƒ›ùTåoŒ1ÎÁH\]T[R 9–*œÓcbæH”sq½UåÒ½15qø1æÒ0‚l¢HŒ‚Ž!›WÊ5„ÿ ¦»#A ê ùœâ€¨ƒõ• /#µsuQmI%äX:¨p²=T]Ôè~m;U4º_J­ƒuÌiFÌØ^ç )ŠŸÉœ¢HŒ~Ù{ª.ªÄüYPr]ôgŠv[÷yÞΟ˿E±ÔÁÓ0k‰é÷dæák.Rˆ˜9å ë̓TºßÉ~Çwpy³Îö1ŠÄ(ÇpÍ«ö¸éŒ1ü«`º{0Ä€îæÓz?†›'¸táÅ`¤&².ª,©„KÎi1h°§º_ûÌT ­î—‡Rë`ÝsZ…3†Ôµ×yBJ[{¬œ¢HŒ‚~Y™º¨ógIÉuQBý¶ïŸL¼E±ÒÁ•¬>ê÷dæñk..pùˆ™#QÎÅõV]”K÷Æô¹Ÿï`ìl¢HŒ‚Ž!›Wí±õcø·=¶>Š‘ uÐ|OîGÀŒY¢^ Fj'ë¢Ê’JȱtPáœöÃðzªûµ?˜ ¤ÕýòPj¬û`N« bcZ{'¤4µÇÊ91ŠÄ(è—©‹j1–”³.ú“ Üúuß}‹b©ƒ§aÆ]§¯¹¸Àå#fŽD9×suQ#Ý?Œ iÇw€.Èö1ŠÄ(è®y¥ÝIˆ1ü«`º{0Ä€>Ì×å~̰ìÅ`¤f®.ª-©„C5N¶‡©‹ZݯÇÌT ­î—‡Rë`ÝsZ…3†}µ×yBJ[{¬œ¢HŒ‚~Y™º¨ógA)ꢦ®é_zùý,Ò¯R+\¹êã¨ß“™ç¯¹¸Àå#fŽD9èzsž—î)^Çwp©®B¶Q$F¹8†KҸŃ×@æ¯&¦»#A ê ùÈÜƘûìÅ`¤\]T[R 9–*œÃž¹7†Š L÷+S~[3øº_.J=»´êƒy­ª#6÷Æ„«ö:OHikO;ç)£ _ÌGLÎɘ¶{/Õš*å)£ cÈ î3êw)2Æð¯‚éîÁHS'ã¹7Ÿ;ûÁ(ƒ%ˆÁHs|¦å‘)í4Óny¸(uò«š^«ÐCUóãOû³¤œÍŸÁ5ÃÇÍîHβˆ šŽ‹õ“Zü(a=ÌÎỈr.®§êJJKHiçz+½†(£ _Ì):\z5fׯ`I ³kˆ"1 :†ìX(b ÿ*˜îŒ1¨;æc¿1Æ`v7"5£k¦Å)ÍÜl´\”Zwªfƒ×*ôPÕløSM}–”Ül`tǘ– ³²û'¡>t§š˜æ$fŽD9×Su?%¥%¤´?q#½Æ(£ _Þ¿LqîrÚ9Dåœö˜cu¨t?£lc.ò:ÛÇ(£` ÈŽ…r !Æð¯‚éîÁH:8˜ýØeóTuÚÝŒ”1Èf`Z ™ÒVœv‹ÁE©u°j6x­ºxˆ˜j¯jü³ œÍ†­ßm´f–eÃŒl8}Ú8:X -s3G¢t½1G¨ÒRÚŸ¸•^C‰QÐ/;5f]ݯ$äX:¨p²=\ÒJ÷ÆD›ã£Œl¢HŒ‚";Ê€„ÿ ¦»#A èàÈ=4¦ — "5ÓlªÅ0LÅÏj1x(µÖͧUè¡‘©Cjÿ,)¹Iè 5½,f©Í§ÃñMMåô2'1s$ʹ¸ž©Cj)-!¥ù‰[é5F‘ý2Q³ÅÕýJBŽ¡ƒ'ÛÃÕEt?cmc.§Ê:ÛÇ(£` Èf‘r !Æð¯‚éîÁHƒ:ÈÍÆÑ&ÛKƒ‘2FÚ TËc\© ¤ÑòðP*„æ‡Ó*ôÐÆÔE5–”³.ú3¿ÅÐAc„Y6ÌʆŸ6‡V#ÌœÄÌ‘(çâz¦.ª¥´„”¶öXé5D‘ý²suQm¿’cé Â9í1çìpéÞ˜mssÉ"íC‰Q0P\óJ»{‘cøWÁt÷`$ˆœÌ‡Æ~r—×øëŒ‘šŒ¹6Õ‚™Fªi´`<”ZëfŒÓª‹‡¨º¨¢ñÏ‚’뢡ƒÖ³l˜• ÷Rª9fNbæH”ƒ®7Æ µSZBJ[{Œô£HŒ‚~™¹º¨¶_IȱtPád{¸º¨‘î'cÀÍaÌ%‹ÔÙ>F‘E6¯†ÏwAbÚþÕ0Ý= bP͇Æ~ìò݃ñb0RÆp›jÁLU4Z0J­ƒu3Æizh§ê¢ŠÆ?KÊYýâÒÖAk˜Y6Ìʆ{2Õ03'1s$ʹ¸žª‹*)-!¥­=Vz Q$FA¿<Ⱥ¨²_IȱtPád{¨º¨™î7‡1—,Ù>D‘5›Í«¡u$!Æð¯‚éîÁH:8›ý°¡Pë&Œ›ƒ±2ÆÛ Tf™¤Õ„ñPj%¬Û1N«ÐCUUTþYRre”QBcœY6ÌȇßfjJX3s3G¢œ‹ë©Ê¨’ÔRÚŸ¸‘`c‰QÐ/3YUv, 9–*œÓsÜ—ð7ÇGsÉ"ïC‰Q0Pܸí6HBŒêß&¦»#A *¡ùÔØ¡`šS·aÜŒ•1àf Ú0óÎT!­6Œ‡R+aÝqZuñSÕTþYPrmtm%´šeÃ,½u%¬š9‰™#QºÞ˜-ÔNj )ÍOÜL°!ŠÄ(à—¥çj£ÚŽ%!ÇPB“í¡îX ¡†ÜÌ—ÌXçûEb 7pG»’cì4LwF‚PÂÅ|lìP°ËWS7bÜŒ•1âf 1ËÄÔ!­FŒ‡R+aÝ’qZ…š™ê¨¦òÏ’’«£„Z#ͲaV>lÜ–©Fš9‰™#QÎÅõÌt!-©%¤(Ÿ8™`C‰QÐ/ WÕv, 9–*œlWµ>5æf¾dÈ÷!ŠÄ((²…¥ÜIˆ1v ¦»#A *¡ùÜØ¡`sêVŒ›ƒ±2†Ü T+fÙ©:¤ÑŠñPj%¬›2N«ÐC¦:ª©ü³¤œÕÑŸa.†CͲaV>ÔïËÌÕP3'ñï8ÔÌϹ¸ž©ŽjI-!¥}³lˆ"1 øeí¹ê¨¶cIȱ”Páœö˜Cw¨„¿ƒnŽm‚‘ïc‰Q0P\K»’cøWÁt÷`$ˆ%\Í·Þ»˜S·bÜŒ•1æf Z1ëLÕ!VŒ‡R+aÝ”qZuñUUTþYPŠê(¡„ÖX³l˜•õ3õX3'ñï8ÖÌÏA׆ÚI-!¥}³lˆ"1 úe%«£ÊŽ%!ÇRB…“í᪣VÂ7FÝαò}ˆ"1 Šía Ÿo…$ä´¬rº›8å š/Ðýp†‹=u;ÆÍÁxÃnª³>˜Z¤ÕŽñPj5¬3N«ÀC[OUH¥–”³Bú³ÐÚjh 7ˆ9qéu5¬†›9‰Çáf~ÎÅõT…ÔH²›1Û‡K²1ŠÄ(è—¬*»–„K N¶ÇªrI3&ÞüP#åÇ(£`¤ØF–r5$!Çò°ÂénâH”r¸™Ñ2v±§îɸ9/jæÕ“Ù¨é2VOÆC©fÞ@wÆizhaʤšÔ?KJ.“2rhÌ8ˆY¢3êrXÍ8sÿŽ3Îüœ‹ëÛeÒvbKHi~âf’ Q$FA¿Pㆴåö,(¹^1剔—Orxz,ëöS¯È³‡ªO’ê³|ZÃÇ'¹|ÍÅ%1s$ʹ¸ž«Pk;Æ„c'¢qN{ÌñG¤Þ3‡ï̆چ(£`¤ØF¢r5'!Çò°ÂénâH”ƒ;ó)Àc艹9/r ’¶Òr {4ÎÛžš‚dõèvjÞÕ£óPêBAÝ­sZÛ)HíÕžÒ–D#óÄ(£ _F®v«m£r,P8ÙªvkfÂÝ…txÇȃ1ŠÄ()¶Å¦\ZIȱ<¬pº›8å€Fìæ3yGnGt‹ÜŒ—1œ©§ºEûÂÌ·ºEJ}Z­ûFN«ÐCÔp&Mož%%oó†W9­Ú“H³aVRl\ê©&‘:‰ÇI¤~ÎÅõLñVKl )m ²’lˆ"1 ú¥zŸðO—Û³¤¼ë's¿Ù§ÕaÙöïøý*®Õ'ù6¬7vœŸÖðñI®_s™¿]ÄÌ‘(çâz²Nmé›1Œê°f7Ô-D‘=C¶µK: 9–‡NwG¢T~óaÀC±‘17âõè¹YñÚÊJȱN‡ 'ÛCÕÍNÝ£§*ÔF§ÎC©w"uÏÎiF̘Õ^í )m 22OŒ"1 úe¤Š·JÌŸ¥(Þr8õñ–÷6–rxf-±OÒ±H¶¯¹Hj>bæH”sq=Y¼UvŒ 9ÖÁ\áœö˜ãº8z3²~(kß– EbŒÛÞ¼ô[êŸD=ÌYmNwG¢ç‡ù^ágDtêÜŒ×Bo••žcɳÂ9í1¦ˆõTçðQÍëÒRµÕ9ôPjy®{ˆN«0bÆ(«öjOHiúÙÌbwÈØÅžúZ†›ƒñš¹b©¶²r 9Ô8Ù¦XjuÆjÊ—ÕóPj9¬{dN«0bƬöjOHiK•yB‰QÐ/Ô,-æÏ‚’‹¥!‡y^·÷-ÞÚXÉ!9fjo\¥y|-Å/1s$ÊA×›§È¤o y:>+å‡(£\ªj˜›“˜9å ëFíÄ–ÒþÄ­$¢HŒ‚~Ù¹éóÚ¶%!Ç’C…“íናfÒ7&é_Í`¤üEbŒÛÈPî$äXV8ÝM‰r@wóå²΂_\Mss ^»1Eg ÚûÀ”­öƒ‡RËa݈pZ…™â¤&õÏ’ò.NöFáiÙ0Kt>í9¬†§9‰™#QÎÅõLqRKl )ÍOÜJ²1ŠÄ(è—÷OYœÛ–„#‰hœlW,µ’þnLÒ9¬™Ú)?F‘#Åö”û 9–‡NwG¢”Còå2mt¹D9/cŠÎ@µCö•*Kí¥–ú1â´ =´1ÅRMêŸ%%¿<ÚrhO; ³’â§ýÃñQÕÃÓ|ÄÌ‘(çâz¦Xª%¶„”¶YI6D‘ý²sÅRmÛ’cÉ¡Â9í1§úIߘ¤sXƒ S~ˆ"1 FŠìiiW3r,+œî&ŽD9 ‡òå²åòåÔ7µÝˆ×Ø¢3Pí™ÇH•%öŒ‡RËaݨqZuñU,U¤þYPŠ÷€ 94‡§†YIQ¿ºÃÓ|ÄÌ‘(]o 0j'¶„”¶I6F‘ý2sÅRmÛ’cÉ¡ÂÉöÅR#é?ŒI:‡5¸`!åÇ(£`¤ÌžÖм*’cxXãt7q$ÊA94_.;Nu—u{ÆÍÁxStª=󨍲¤ÑžñPj9¬5N«ÐC;U,U¤þYRÎbéÎÈ¡5<í4ÌJŠúUžæ#fŽD9×SÅR%±%¤´%ÈJ²!ŠÄ(è—Y,U¶- 9–*œlW,5“¾1Iç°,¦üEb”:R¯O¦iåªHBŽêá6§»‰#QN-‡ko¾\öÃù¾lQÛSµgüŒ—1Eg`Ú3™Ò” £=ã¢ÔrX5j¼V¡‡&ªXªHý³¤œÅÒCkxZ6¬Ǿ×å°žæ$fŽD9×SÅR%±%¤´?ñv’ R$FA¿Ìd±TÙ¶$äXr¨pN{È©>fÒg&éŒý%5BÊQ$FÁH™=­¡yU$!ÇÚp(œî&ŽD9(‡æËe‡Œ]¾œª=ãç`¼Œ):Ӟɔ¶ð´Û3.J-‡U£ÆkÕÅCL±T“úgAÉÅÒ™‘CcxZ6ÌQ—Ãjxš“˜9å ë™FjbKHQ>q2Ɇ(£€_†ž*–ªÛ–„œv²V9Ù®Xj%ýÁ˜¤sXƒ R~Œ"1 FÊìiõÍ«" 9Ö†Cát7q$Ê9Ì—Ë»<÷_µgüŒ—1Eg`Ú3™Ò–Œv{ÆE©ä°nÔx­BÍL±T“úgI9‹¥!‡Öð´l˜•õ«4õð4'1s$ʹ¸ž(–ª‰-!¥õ‰ÛI6D‘ý²PÅRuÛ’cÉ¡ÂÉöp#ÐͤoLÒ96 ˜Ò0å‡(£`¤È©>ÚU‘„kápº›8å š/—2vyî¿jÏø9/cŠÎÀ´g2¥-íöŒ‹RËaÕ¨ñZ…z0ÅRMêŸ%å,–ö„ZÃÓ²aVRl\¥©†§9‰™#QÎÅõÄ´w5±%¤´OdV’ Q$F¿Œ=U,U·- 9–*œÓrª•ôGf’ÎØ_ÒHòc‰Q0RdOK»*’cm8NwG¢ÃÑ|4î±Ësÿu{ÆÍÁxStª=3ÎTYÒhÏx(µÖ§UQÅREêŸ%K'FáiÙ0+)6®ÒTÃÓœÄÌ‘(]Ï 0R[BJûDf%ÙEbôËJK•mKBŽ%‡ 'ÛÃ@7“¾1IçØ,X)?D‘#Åö´†ÏWEr kœî&ŽD9(‡æ#v?œ 9Оqs0^̳=32ójÌöŒ‡R ¨5N«ÀCSOK©–”³Xºrh OˆIqèu9¬†§9‰™#QÎÅõÄ´w5±%¤´?q#ÉÆ(£ _˜Fêr{–”wÁbzüþ$ûŸäðû“ÜþÒ÷Óúx’ïñ Õ'É ‡OkøÇȵÿZ‹Š˜9å\\OÖ©•cB޵Q8Ù®Nméíd 1:¼3¶Õ6F‘#Ŷ•[: 9–‡NwG¢؉LæûÇ9Ðss0^Ü@%u¥'ä´íQ9Ù¢nnvꦙ¨P›:¥.Ô=;§U1c R{µ'¤4%ÑÌ=Õ.š{bظÙ.òPêÓjÝ8rZuñQ¼UõæYPrñvÌ^ý´jÌ6͆YI±qµ§šmê$fŽD9èzc R;±%¤´%ÈH²1ŠÄ(è—êÃ?]nÏ’rPæ´ºŽKÿsZÍG×ê“|Ö;ÎOkøÇÈ×±j-ò¥˜9å\\ÏÕ©-}›ùQ‡5k[Ýb‰QÐ3l;Q¹¥“cyXát7q$ÊåŸÍ÷žØSwÆÜŒ×LMŸWWVBŽu:T8§=Ìl-³S73S¬ÌN‡RŸëžÓ*Œ˜1੽ÚRÚdežEbôËÆUµmKBŽu:T8Ù²‚heBcÈÓá+†(£`¤È›vu%!Çò°ÂénâH”ƒa>ªwäö‹=u»ÈÍx-ÆÀ©žj-=1lÜly(õé°n9­B1§T½y–”³q´§CkÔw6ÌJŠ«=Õ¨o'1s$ʹ¸ž*–Iv1†*VŸäHÍx‡OkøÇÈuüZ‹üí#fŽD9èzs¶§o‹1ÏêÇš±o«[Œ"1ÊÅ3¤"a ~´˜³¬Úœî&ŽD9 ü 9k¿ØS—ÞÜŒ×BMŸWWVBŽu:T8§=Ƭ¯žêŒ-+S¶:cJ½©{dN«0bÆÀ©öjOHiúÙÌû¸9¯µçŠ·ÚJOÈ1äYãœö³ÇzªS·Ìõb«Sç¡Ôò\÷ìœVaÄŒXíÕžÒ–D#óÄ(£ _&ææ­ógI9 (!Ïã´mSÿ–çC«Ky> ³–اéX$ó×Z$51s$ʹ¸ž«S[I5ækÖÌ픣HŒ‚ža{lÊ-„Ëà §»‰#QÊ!ùž¡6‹\¢Œ×ÊÝtÕVVBŽ%‡ 'ÛÃÔÍ­Nݺ2j«Sç¡Tr=;§U1cV{µ'¤´%ÈÊÚ¶%!Ç’C…“í¡Š“vÒ7&é_Í`¤üEbŒÛÈPî$äXV8ÝM‰r@gîå2ut¹D9¯Ù˜¢3Pí‡y`Ê€VûÁC©å°nD8­BLqR“úgAYç¿94†¹eÃ,Ñù´8>ªj˜›“˜9å\\Ï'µÄ–ÒüÄ­$£HŒ‚~™¸éóÚ¶%!ÇHÖ'ÛCKͤ?“tk¦vÊQ$FÁH±=$å~@BŽåa…ÓÝÄ‘(囯3—/§¾©íæ`¼Œ):Õ™Wª,i´C<”J¡1â´ =´1ÅRMêŸ%嬕ބZÃÓ²aVRü´8ä°žæ$fŽD9×3ÅR-±%¤´%ÈJ²!ŠÄ(è—+–jÛ–„KÎi9Õ‡LúÆ$ÚK”¢HŒ‚‘2{ZCójFBŽåa…ÓÝÄ‘(äp1_.;NuÊèr‰r ^‹1Eg Ú3ËH•%öŒ‡RËaݨqZuñU,U¤þYPr±taäО– ³’bãêJ5<ÍỈrÐõÆ£vbKHiK‘dc‰QÐ/3W,Õ¶- 9–*œlY,5’þbLÒ9¬¹¤‘:åÇ(£`¤¸©>êU‘„ÕÃmNwG¢”Cîå²q¸|9õ—ÜŒ—1Eg Ú3ËF•%öŒ‡RËaݨqZ…Ú©b©"õÏ‚’‹¥;!‡Öð´l˜•WiªáiNbæH”sq=U,U[BJ[‚¬$¢HŒ‚~yÅReÛ’cÉ¡ÂÉöPS}ì¤OMÒY.'Hù!ŠÄ(©Õìi Í«" 9ƆCãt7q$Ê9\Í—Ë~ü<^¾œº=ãæ`¼Œ):ÕžYG¦,iµg<”ZëFÓ*ôÐDK©–”³X:rh OˆIqíu9¬†§9‰™#QÎÅõÌ#-±%¤(Ÿ8—dc‰QÐ/3Y,U¶- 9–*œÓsª™ôI:ÇWsI#òC‰Q0RÜTõªHB޵áP8ÝM‰rP͗˛Оº=ãæ`¼Œ):ÕžYw¦,iµg<”ZëFÓª‹‡˜b©&õÏ‚’‹¥3#‡Æð´l˜%:£.‡Õð4'1s$ÊA׌ډ-!¥ù‰›I6D‘üòû™ÚÀ¶%!ÇC“í¡¦ú˜I£&鬗ÔX§üEbŒ7ÕG½*’cm8NwG¢ÃÍ|¹ì±Ë—S·gÜŒ—1Eg Ú3ÛÄ”%­öŒ‡RËaݨqZ…š™b©&õÏ‚’‹¥!‡Öð´l˜•WiªáiNbæH”sq=3ÀHKl )Í™™dC‰QÐ/ W,Õ¶- 9–*œlw³ÔLúÔ$õ’F å‡(£`¤ÌžVß¼*’cm8NwG¢”Cóå²CÆð¹hϸ9/cŠÎ@µg¶*Kí¥–úQã´ =ô`Š¥šÔ?KÊY,í94†§e줨_¥©‡§9‰Çái~ÎÅõÌÍR-±%¤´OdV’ Q$F¿ì=W,Õ¶- 9–*œÓsª—ôwc’αY¸¤Æ:åÇ(£`¤¸©>êU‘„kápº›8å€îæ£q‡Œ]¾œº=ãæ`¼¨):V{f§æÕXí¥z'5N«.¢Š¥ŠÔ? J.–N«-‡æð´Ó0+)êWi`xšø÷Ëð47]o 0j'¶„”ö‰ÌJ²!ŠÄ(èj€‘¶Üž%,~²[ÿñ“ÞOT¯Ë¼½ ï÷ª«O’´6-_[Q1ò3G¢œ‹ëÉ:µ²cLȱv" 'ÛÃ]ê5õ–bôúo«mˆ"1 FŠm'Ÿoé$ä{=ÓÝÄ‘(w"æû?œébOÝss0^ä@%m¥'äöhœÓc Ò@uêöS¡¶:uJ](¨{vN« bj ’¶ÚRš~¶2OŒ"1 úe ‹·Ê6*!ÇÒ…“íánºZ™ðaLöù¡lFŒQ$FÁH±=6åêJBŽåa…ÓÝÄ‘(4âa>ªwäö‹=u»ÈÍÁxQS}¬vуšŸcµ‹<”ú´Z7ŽœV¡‡¦x«éͳ¤œ¯<˜Óª5Ûô4ÌHŠÛøAÄ®g›úˆ¿Ì6us.®gnºj‰-!¥ù‰›I6D‘ýB TÒ–Û³ äʘwŠêiõñýÃâý}Z=Ž®Õ'IŽ-Ú>­áã“\¿¶¢¡ã#fŽD9èzs ©oƣÚÙP·Eb”‹gÈv¢rK'!Çò°ÂénâH”ƒÊo¾x(6r 3ææ`¼ÈJÚÊJÈ1ìÑ8‡={O T2:u™ÒVëv§ÎE©O‡UÏÎkU±½7*µW{BJ[‚Ú™'H‘ý2rDmÛ’cœ5N¶‡»éjdÂÌiÇ»ƒ‰Q0RlM¹º’cyXát7q$Ê©5bïÍGõŽÜŽœº]äç`¼ŒO=Ó.Ê”övµÝ.rQêÓaÕ8òZ…¢*VŸäÛ°ÞØq~ZÃÇ'¹}m[áv1s$ʹ¸ž¬ [úf̳:¬Ù u Q$FAÏ=-í–NBŽåa…ÓÝÄ‘(•Ÿœ‰5]zlUéÍÏx =7}^[Y 9ÖéPád{˜KÆFg,SšjmtÆ\”útXõȼVaÄŒSíÕžÒ– #óÄ(£ _ÈSÚ¶%!Ç:*œÓsà— cÈÓá#Æ(£`¤ØžÖ¥È^ýD's kœî&ŽD9 ù¨ÞŒØ€»9/càTÏ´g2¥¹]5Ú3.J}:¬5^«.bnºjzó,(¹Q3§Ã÷MÂ_åQ±ÜŠäX§ý“ˆÕüµÍe<ÄÌ‘(]o œj'¶„”ö'n%ÙEbôËÎÜtÕ–Û³ ä‚Ålž÷¿ô¯CäwáôWyT¬>É»OºZÃÇ'¹meþv3G¢œ‹ë¹º°©oÆ<«ÃšÑP·Ebô ÛÓRnÅ$äXV8ÝM‰r@ùGr&Ö|é±ÕÉÕÍx=w³T[Y 9†=ç´Ç˜õÕS±q`*ÂVgÌC©w"uÌiFÌ8Õ^í )M?[™'F‘ý21ÅR-æÏ’rK7F÷}Š¥YK9< ³–Xã*Íãk+’š˜9å\\Ï]êÕvŒ 9ÆÁ\ãd{¸â­%B£1_ëðÎ哪%(F‘#Ŷ•«+ 9–‡NwG¢”grF—6‹\¢Œ×Êoµ•žcɳÂÉö0—Œ­Nݸ2×y­N‡RËsݳsZ…3`µW{BJ[­Ì¢HŒ‚~Ù™›®ZÌŸ%PzBž‡yZ¿Ãú«ÔêJžwî>éþéCú1ò¥G{™Ô\ÄÌ‘(]oÎú"“¾1_ë°f5R~ˆ"1ÊÅ3dZ¹¥“cyXát7q$Ê9œÈ÷ µYäå@¼¦»éª­¬„KÎi1{¬§:uÓHU¨N‡RËaݳsZ…3`µW{BJ[‚ŒÌ£HŒ‚~™©â­ógAÉÅÛ‰‘ÃÇë|ú>­¾µ±”ÃÓ0k‰éW{öák/“ˆ‹˜9å\\Oo¤?óµk0„òc‰QÐ3d;Q»º’cyXát7q$ÊA9$gti³È%ÊÁx­dñVYY 9–*œÓcöXOuê¦*“:¥–úgç´ #f Àj¯ö„”¶Y™'D‘ýò Š·JÌŸ%å,Þ®„ŽË´në[m¬äðA–HõW{öñk/“š‹˜9å\\OK­¤OÍ×zôFÊQ$FÏÌlM¹¥“cxXãt7q$Ê9œÉ÷ µYäå`¼F²Xª¬¬„KN¶‡)–ZºydÊ’V§ÎC©å°îÙ9­ÂˆQ°´ÕžÒô³•yb‰QÐ/3S,Õbþ,(g±tyr8õû¼<9|kc)‡§aÆ{èW{öék/“š‹˜9å ëÍY_dÒ7ækÖ`1å‡(£\<ÃKµ«+ 9–‡NwG¢”CóQ½CÆf”Ãúšˆ›ƒñÚ¸b©¶²rŒ¸kœÓcöXOuÆæ)KZ1¥–úGæ´ #f Àj¯ö„”¶Y™'D‘ü²ôL±T‹ù³ äbé¸r¸Nýö–÷6–rxf-1ýjÏËê½Hj>bæH”sq=W,µ’þBÍ×z`!åÇ(£ gØž–rU$!Gõp›ÓÝÄ‘(äp1ß5_ëa¥üEbô ÙÓÒ®Š$äXV8ÝM‰rPÍGõSf‘K”ƒñÚ¹b©¶²r,9T8ÙªXjtÆ–*K1¥–úGæ´ #F ÀÒV{BŠâg2ó„(£€_Öž*–*1”\,Ý9܆ý;5ü*µ±”ÃÓ0k‰5®Ò¬_{qÇËG̉rÐõæ¬/.靯|­ãC0R~Œ"1ÊÅ3dšî?_IÈ1<¬qº›8倮æû?m¹D9¯‰,–*++!Ç’C…sÚCͳ:c+5åËêŒy(µÖ=2§U1cV{µ'¤´%ÈÊä§õí$fŽD9×SÅ@%±%¤´?q#ÉÆ(£ _¸Jê6!!§DTÎi9P‰KúcˆÑaÍ£òc‰Q0Rl#ãRD®“x˜ŒÚœî&ŽD9 ‡òå2mt¹D9/c Ò@µ+Qû1ÛJ-‡u#ÂiÕÅCÄ@%UêŸ%7"VF­Ù¦nlÑ4|Ú?U=ÛÔG̉rÐõÆ@¥vbKHiâV’ Q$FA¿ìÔôyuÛ’cÉ¡ÂÉöpÅI3é“}ޝf0R~ˆ"1 FŠmd(÷r,+œî&ŽD9µ>zóå²Ά_N}SÛÏ©ãõè©>Ó~È”¶d´Û.J-‡U#Âkzh$Š“ªÔ? ÊYœÜ¦ÚÃܲa–è|Ú?rX ss3G¢œ‹ë™â¤–ØRšŸ¸‘dƒ‰QÐ/ÜTuÛ’cÈ¡ÆÉöpÅR#égN;ÞS3å)£`¤ÌÒмcyXát7q$ÊA9$_.ÓF—K”ƒñ2¦è L;$SÚ’Ñn‡¸(µV¯Uè¡(–ªRÿ,)g±tdäÐæ– ³’â§ýÃñQUÃÜœÄÌ‘(çâz¦Xª%¶„”¶YI6D‘ý²sÅRmÛ’cÉ¡Â9í1§úIߘ¤sXƒ S~ˆ"1 FŠœê£]ÍHÈQ=Üæt7q$Ê9ȗ˶˗SýpÉÏx ÆiÏdJ[2Úí¥–êQãµêâ!ªXªHý³ äbéBÈ¡5<-f%EýêJ=<ÍỈrÐõÆ£vbKHiK‘dc‰QÐ/3W,Õ¶- 9–*œl÷P¥•ôf’Î4\N uÊQ$FÁH™=­¡yU$!ÇÚp(œî&ŽD9(‡æËe?_Ž6º\¢Œ—1Eg`Ú3™Ò–Œv{ÆE©å°jÔx­BíT±T‘úgAÉÅÒ‘CcxZ6ÌJŠúUšzxš“˜9å\\O¼É©&¶„å'“lˆ"1 úåAK•mKBŽ%‡ 'ÛCK­¤oLÒ9¬Á‹)?D‘"5’S}´«" 9ƆCãt7q$Ê9É—Ë^D«ú¯Ÿƒñ2¦è T{f™²¤ÕžñPj9¬5N«ÐCU,U¤þYRÎbé@È¡5<-f$ű×å°žæ$fŽD9×SÅR%±%¤´?q#ÉÆ(£ _f²Xªl[r,9T8§=äT3é3“t^«ÇHù!ŠÄ()³§54¯Š$äÓÝÄ‘(åÐ|¹ì8Õ]¾œº=ãæ`¼Œ):Õžw¦,iµg<”ZëFÓª‹‡˜b©&õÏ‚’‹¥3!‡Öð´l˜%:£.‡Õð4'1s$ÊA×3ŒÔÄ–Ò<‘™I6D‘ü2õ\±TÛ¶$är¨q²=ÜÍR+éOÆ$Ã\°òc‰Q0RfO«o^Iȱ6 §»‰#QÈád¾\vÈØå¹ÿº=ãæ`¼Œ):Õž™&¦,iµg<”J¡Qã´ =43ÅRMêŸ%K·!‡Æð´l˜•õ«4õð4'1s$ʹ¸ž¹Yª%¶„”æ'n&ÙEbôËÂKµmKBŽ%‡ 'ÛÃ@7“¾1IçØ,`JÔ¢HŒ‚‘"§úhWEr¬ ‡ÂénâH”ƒrh¾\vÈØå¹ÿº=ãæ`¼˜):f{fbæÕ˜í¥~²nÔ8­B=˜b©&õÏ’rK{B­áiÙ0+)6®ÒTÃÓœÄÌ‘(çâzbÚ»šØRÚ'2+Ɇ(£€_ff€‘ºÜž%,~^†è?~’ÃûMÎï÷hçã“|?ÐY~’37&è÷­0åMÎGÿõ(¶È>bæH”sq=W§ÖvŒ 9ÖNDáœö•,½™!FÓxiþÖj£HŒ‚‘2Û‰}ó–NBޱ×Ó8ÝM‰r`'2›ïõœË¤…º3ææ`¼¸JêJOÈiÛ£rN{ŒJÕ©›gªBmtê<”ºPP÷ìœVaĘJêjOHiŸ­Ì¢HŒ‚~YÉâ­²Jȱ4Bád{¸›®f&4&ûëêr_ò`ˆ"1 FŠœ2¤]]IÈ1TXãt7q$ÊA0Õûùrøå@»ÈÍÁx1S}ÌvÑÌÌÏ1ÛEJ}Z­GN«ÀCKOo½y”\¼]™Óª1Û4f$Å©ÿ bÇGUÍ6u3G¢œ‹ë™›®ZbKHiâF’Q$FA¿0•Ôåö,)ïÊðÈÃUÔÓêö:cÍïÊûèZ}’䨢éÓ>öŒÃףȗ>bæH”sq=w©×Ò·…b4]š¿µºÅ(£ gØv¢rK'!ÇÚ[)œî&ŽD9 ü‹ù~à¡ØÈΘ›ƒñ"*i++!Ç8jœlsÉØêÔ-3s×êÔy(õé°îÙ9­ÂˆQ•´ÕžÒô³™yB‰QÐ/+WAÔ¶- 9ÆéPãœö˜S†ÈLhLö9Ö••C‰Q0RlM¹º’cyXát7q$ÊA0Õ;rûÅžº]äæ@¼VcªOOµ‹Öž6n¶‹<”útX7ŽœV]<ÄÜtÕôæYPrãh$N‡Ö¨ïl˜•W{ªQßNbæH”ƒ®7*µ[BJó·’lŒ"1 úe$¦Ï«ËíYPrÁbaN‡ß‹åø$ßGÅê“©ïÓôi {ÆñëQìÓ|ÄÌ‘(çâz².lèÛjÌ:¬YÛê£HŒ‚ža{ZÊ-„Ëà §»‰#Q(ÿJΠz\ì©KonÆk¦¦Ï«++!Ç:*œÓf¶–Ù[™)VfgÌC©O‡uÌiFÌðÔ^í )m ²2Oˆ"1 úeãnºjÛ–„ët¨p²=ÜMW3CžïXy0D‘#Eö´´û 9–‡NwG¢ÔòQ½ÇÅØ€{9¯Í8ÕSí™­gî”Zí¥>Ö§Uè!fà”ª7Ï’r6jvætxL÷þUË­øFŽuš¯äì_{1s$ʹ¸ž¹éª%¶„”¶I6F‘ý227]µåö,(¹`1§Ã}Þ–ï_8ý*ŠÕ'9r÷I§OkøÇÈÇôõ(öi>bæH”ƒ®7gkqú¶ó¬~¬ùþ·Ô-F‘åâR‘†Ï·br kœî&ŽD9 ü7kê/ö@rõr0^ w³T[Y 9ÖéPáœöP³¾¬ÎØFMÕ²:cJ}:¬{dN«0bÆÀ©öjOHiJ™yB‰QÐ/äÀ)mÛ’cN¶‡« š™ÐòtxÇʃ!ŠÄ()¶§¥ÜŸHȱ<¬pº›8å€FìÜ£zS±çñµM7âµ§zª=³ÌN«=ã¡Ô§ÃºQã´ =D œÒôæYPr£f&N‡ïß™ý*ŠåV|'Ç:ÍŸD¬ú¨ºñÃÇéå\\ÏKµÄ–Ò– #ÉÆ(£ _&æf©¶Üž%å,XlÄéðÑ÷ËÖŸäû¨X}’wsþ´†Œ|Ì_"ûˆ™#QÎÅõ\]ØÒ·Ý˜guX3·Õ-F‘=Ãö´”[1 9–‡NwG¢T~îý@uö·D9¯•»Yª­¬„c'¢q²=LÚêŒí+S¶:cJµ™Ó*Œ˜1pª½ÚRÚdežEbôËÎKµ˜? J.–öŒ.Ó|>ÜôÖÆJw®$97®Ò,_2©¹ˆ™#QÎÅõÜ¥^mǘc$5sÚcÎú"EȘ¯uxçòI…(£`¤Øv¢ru%!Çò°ÂénâH”òüàft©³È%Êxýž’Xé 9–<+œÓcöXOuê#s×êÔy(µ<×=;§U1cV{µ'¤´%ÑÈ<1ŠÄ(è—™¹éªÅüYPre2åùñ—¾_Çé”çC«Ky> ³–XãÕžõëQ$51s$ʹ¸ž¬SIÿAÍך÷vÊQ$FAÏp=6õ–NBŽåa…ÓÝÄ‘(å{ÏPE.QÆkånºj++!Ç’C…sÚcÌë©NÝcc*ÔV§ÎC©å°îÙ9­ÂˆQ°´ÕžÒö³•yB‰QÐ/¦x«ÅüYRrñ¶'äpÙ÷eþ-‡Y+9|%ÒÆÕžíëQ&51s$ʹ¸ž,ÞZIߘ¯õcÍr !¤üEb”Ò3Ãësè©C‚vs%¦í_Ó݃‘ ¦”ÂoÌPdÆ‚]:€Å]Õ#5þTÌœK*Æ’A“­Ù‰ú]«AW@Ú ±ÕŸóAj ,un›0VÓcr/𦋛¹& ‘}2ïöQ[ ö³€µZBý†aøýûÞ_¥žêWØe¬«åÓt,ýëQ&10c$ˆA·/c$¥&À´¿èÑH ¯9¹o^ÆI€±œ«`º{0Ä ìmm8ä GUÞÁñS0NÛYK 0F¸5ÌiÍ>U±V®€´ó`« çƒÔ¢W´ãÜ6a¬ãê^Ý m©±òL"!ødèÆ„º‚ýÌò Ù@ˆÞ:­ó~ˆÞ[KÑ{Ûe­«ÆuÇ×£Ha.`ÆHsqûI¨ 0í/ú½:¹‡ ‚ W&%k×PRMQ]Û¦t·P$FÁÆÐ@q b0Jã#²’`,ÉS0§5ÓÏ`GW;)¤[-¤–¼¢Åå¶ c5Ч,íT3Ú2cå˜C" ôDz‡g%ÐÏ )*œkoËÝ8,û÷«o¿Jí«äî°ËZSúuœ×üþÃ…Ë=È$AÐÅõÄ»§vr_ì—F+µa G¸!´{ 0–gLwF‚”¼«I*CÃ%ˆÁHíTiS_K @–è© lSÞlµ° H;¶:X>H-{E+ËmÆëÑ,o¶—xˆâb2×D ‚€OÆž)o*Á~¢¼IœôÆuÛ··ô½u°”¾·]ÖÚÒ¯º¼Îd¯?\$²I„®Œ'—èߘöWm¤ùDB‹W¸ÜܾǑc8WÃt÷`$ˆù³z`?mF¸Ä(§‰+qª«)È?tZ4eN«{õ†4ó¡Õ½r@jñ«ûX>›0^K³ÌÙ^á mɱrM"!úd%ÊœZ°ŸR”9¿—%~ÓðØ²øJX‰ßÊ•õ‹-C?¾þðX8݃,A]\o”:É4¿6 Œ?ÕJòˆ„ è®û¤ÜÜH5År­Bén¡HŒ‚·Sgbm¸1¥+uªk)È’>tZô ÊVë igC£‡å€ÔÒWw³|6A¼~—œË;ÕŒ¦ÜXy&Âý1åN-ÐÏ )ËÄ™oÚ†å{ëù«ÔÀRöÞvëêûK•½éõ‡‹[V.d ’ èâz¦Üi%øƒÒþ ôaH„!ÛOʽ˳ ¦»#A ÈÞ4Qgamö´1©™*wêk)È=”-"ÊV#ë igC£“å€Ô²W7µ|6a¼¢Ü©-ñ¶àX¹&‘}²åN-ØÏr–;çï™|–ôÍãK?¦·ô:XIßJ•WýbËÐϯ?\ܵr!KAèú*wš‰~#ŠŒ«•æ# A.^áÊÊ%Ž˹ ¦»#A Ê߃‘ m>¼Ä(§UîÔWS%~*èmÑÜ7ËÕÍzC~[38»YHý4iÝ×òÙñš¢Ü©­ð¶ä¹&‘}2r57#×¼1m×.íL‚H‚^¡Ú!Ú•‚TS,×*”îŠÄ(}ç™+–]¾–úšƒQZš®j_¼!íÌb´/:ÛÕ ŸM貑ñ§iü™!e#cü·µãûÉÏcX÷¯òýÏr[û¶kÐTóX¢Ÿ´¡ó.¼î ¼˜‹Û QrXªíÄn%ÓC" ôÇFU·¬TºU¥ÍH¤†Dè²ãÐnÙ'ÀžÕ0Ý= bP`ÔÙ´ ßÄ@¤–¾YK¨.ÁÒÌÃV›À©¦îølBï”-ƒ?UÎg†-ƒŸµæ=ïóW©6¥À¼í²¹>pèøšºðúQz1·3%<%%€´¿l#¡† ‚ OŽ_ˆ8· 0FfÖ0§5UÕ²üÓô£ÞC A0FdÇAé×'ÀXÎU0Ý= b@öÊßšè®™.L}!ÚIÁ8­D Éj¼!m1ZH-zu³ÀgÓÅ;;QÔüY@ŠfqªjO¼.ì22àöi‹pˆ^1ðÚ Ì bÐíSºSÒXHû˶j"!úäø…ˆs[’c‰ž‚ÉÖP…D3½ïDùîûþX3¹G ‚`ŒŒFÃÐlÖ§šb¹V¡t·P$FÁ[¹·º´YÝÄ@”^Â`­ÆÀÒV£1à€Ô’W·|6¡wF¢¨iù3CÊBâdK^{Œga—%-Ÿ6Ç×TLñô3F‚˜‹ÛmÅÓrXªÍïÚJ¦†Dèã7!Î IŒ‘’5L¶†)kZ‰ý ´c<µÓz„!ÆÇjêôÍÖ|ŒêÙ6¦»#A ÊõF׋§ËçRÿèÇ‹ÁH­LYÓèQ¼!mU0šH%wЯðÙ„ÞÙˆ²¦¦ãÏ )oB϶ܵç’vYùïÓæàø¶‹±d^`ÆHsq;QÖÔòXH[h¬„H‚>Ù©²¦¶!I€±$OÁœÖ<¨çÍÿ =Ü.H #«Õ44¯D$ÀX Ó݃‘ do3^é:NgÊÈm‰Q NÛÈ”5¶ÉÒÖ£mâ€Ô¢W7P|6]¼Ã”55âɇ•½æô±Â.+6.‹ÃǼÀŒ‘ Ý>ïLji,Dù²¹„‚H‚>™©²¦¶-I€±DOÁdk¸²¦‘Þߘöîæ’8êä‚H‚12:M}ó–Fª)Æ~B£t·P$FAÁãÞéš.·ê_¸z1¥)kM“7¤­ FÓÄ©%¯nŸølBïìLYSÑòg†”ïÙn–äY½ »¬ü׸¾R ôò3F‚˜‹Û‰²¦’ÃRÍhŸ­¬d`H„þxpeMeC’cÉ‚ÉÖ³eìÄNLsÙ.»~Hë†DŸÝj1 Í» 0Æ>BÃt÷`$ˆ¹Û­w¹~\ÜœkÀ`¤Ús\ªc²D Ñj™8 µÜÕÝŸMè‰)k*:þÌ¢¬¹ï„Ü5'vvùoïu¹+vy#AÌÅíÄø-%€´ÏUFB A$AŸÌ\YSÙ$ÀX’§`Nk¬©2d‚oÏr9¾–Kâ€ôH‚1â¦Êh4`¬ …‚éîÁHƒ²G½È¥y—ãÔžã2Pm“}'JˆVÛÄ©E¯n ølºx‡(kjjþ, ¹¬9>lÑ3u½í²Ä¥qu¥ÔåfŒ1èööøœvKi~ÙfB@$Ÿ{ìL=ÙèŸ9 õq¿n¥ùlÂx1Ã|´%žÒ>íY¹&‘¤öÉ룊­Ú6)ÆRsZcÍ·¡r߉io·.I¢Ê|1ˆ„ #n¾vm$ÆÒZÓ݃‘ ¦V„Áªw™üòÁTÝ/ãÄL“1š9'¤½3n7s<úäYµuœ6]¼Ã[Yy\l]&ûäiMÌ<í²2 ~¡æõ¿ÿpé~òï׉™nº¾=ȧÊ@Úç>+©F ‚ O˜A>Ú:{fHQyÌö t—Ç·i¿Êãhõ9rÃröÖ Ÿõõ‡×Âéd ’ èâzêÒ¬©gÌøœGo¨Y"!zÅhøõÍË2©¦(ÒÝB‘Þzïó]©©zWn F‰䣯¥ ȩ̈‚N‹Úƒ|¦›vBšâltÓ<úÌWõÕœ6A¼b¶¼SÍh:ØÊ3†Dè«þ©[“ ëħ‚²EÌR+ï ͹2?ŒÇ%EÔY/ÂcÄÍ·Ñn$À2«aº{0Ä€ Ö3qG¿|.U[ÇÁH1ÓdŒ¾Î iîDÆŽRŸøªÓ&ôÎBÜ)ÕDå™!E“çûÆyâ3EŸv9ð1~Pª·׃¢}È¿_E»A×÷Jµ\–ÒüºÍ¤H‚>aùhëìY@rb[‰ß¶ýûs|ÿªÏ‘–óø´xߟãöúÃ[át²I„®çù˜ŠÆŒÏy\z… gˆ„ ¯pm(åÞLŒµƒR0Ý= bPç©<˵#4'#ÅòÑ×Saz[42£|Œ^Ö i t»—åÔ§¾ª«å´ â52£|´5žÒ>oÙ&‘}2R7Lõ-Jq<ÑAÙ"ê–©•ÿÆöHŸcEÙ/‘ãÄõ¢”+©¦X®U(Ý-‰Q@Fî¹1—-¶„qjꩦʸw:­¦ŠRŸýêöŠÏ&ô3^H“–g†äöÊ£¸ˆ©žýÞ3¢•Ár³=rc|ú‹1ç$õ.‚,A]\o7û´L–jFû¼e¥ÔC" ôÇFÜ5ÕÖØ3CŠ2ÄÏ5¿¾yî[Ç}ÜߟâûX}ŠuŸóñiá¾?Åýõ‡‹*³ Y‚$º¸žªíZZÖœªtX²J`H„áÚPÚ…•˳ ¦»#A *<7–i¹¶Ä0‘:A«©§îwê«)È:õ© lq¿ÓjgMÌt'«Ÿå€Ô§¾ºµå³ ãÕ}Ô^ä mÉ1²M"!ú„}¤oN€¬SŸ :-²Æqpj:¼cä¿DBŒÙ>ßrH€1œ«aº{0Ä€.LÔsr+R†~zý‘â`ãä`¤Úzªµ2­ÄJ«µâ€Ô羺Éâ³éââ–§&.Ïr6YÖïà˜ç¾mX¾5öWy,7Û5hhî?)|N]ùñ»t‚Ðõí!Híd–Òþº­´H‚>Ù‰[žÚ:{fHQ†˜óžP?ûmq|ßò|«ÏqgnRÎý§Åûþ¯?\Tš]È$AÐÅõTu×T´öœ¥Ã–ÑгDBô ×R®¯¤šb¹V¡t·P$FŸ¹QMëµ16¿þH¡b^Äiî™{žÕ”Ô¶§:-b¦PY=­™™ødõ´úìWw·|6a¼líSxª-Á13M„!úƒ‡ÔØœ$µÏ} P¶ˆ©Z™onŽ":|cä½C" ŒÙˆR/9$Y¾UAÝ] ‚P¸‰FÚÄe b0^íÁH=ÕY™Wâf¥ÕZq@ê“_ÝeñÙ„Þa#iÒò̢ͲOöÉïýŠÇ¯òXnµgjÑkÛÐ8ù{Œ.‚ü¸Yq‚.®· ŸjFKiËŽ•Z# AÐ';qÛS[gÏ’ ?e¾¾yòÛ¦¾ÿ¾Æø«<VŸãÎܨœûÆ 3Ã+ÙeÖö KAèzn¡kĦ¹_MU‹a$„¹ø†«óª·X€,'« î.A ù õÊž6oZbˆÖ20÷>++È:ª Ó¢öœªžêq-#Sé5z\H½©»]>›0^ÄÀ¤ÆJO€i ™w‚ aÐ33SUBþÌ¢º.„îýï2î¯RK9|Ûe­°Æ%˜×Jý»p»Y‚$º¸ž¹xÛØ-&YGq”-âJ³¦-íiQ‡ð«ºHP#! F‹jêwPRͱ\¬rº›8ã 8s£§´ñØÄ`¬V®H«®ô KžUÐiQ{¦VOõà–¸€kõàZžënœÏ&ŒWs¸“µÌSMiË¡sB‰PÐ+â~ªîg†äÂÉÔ¿Kܧá÷à˜_¥NWÒü`î€Î}ã%šá•„†2™y%H‚ ‹ë©š´ìíIRóЛ©>D‘ü²’M´kÓ º«5IÊuw$!\¹7ù´¡ÙÄ`¼Fæ¦jc]%YB¨‚²Ev­ÜlÈ­£]—6;rH-„usÎgÆ‹ûÔXê 0M'Ûy'ˆ‘=3Ûe[5äÏ’˶?c7 1܇­ŸSßÊXŠáÛ.c… CC _™h(SšY‚$B×[“®è¤ßž0uXƒ1¼¦üFB˜‹o¨²­~=%Èr² êîI„‚HÍ«ÒæiKŒ‚ÑÚ¨²­¾²€ 9ÔA§Eí9\=Õ¡[w»DjvèZë^Ï&ŒW{ ”µÒ`ÚdçFBðÌÖÛe[5äÏ )ʶûnËácûþÝTkc)‡o»¬öé;z/‘WŠ„æB– ‚.®§Š¤vÊ߈ÙS¿Xn'ü FBô ×]S®å¤š¢:¸Mén¡HŒ"¸q/÷ic¶%ˆÁ(TyT_Q @– ª Ó"b6ÑŸÛˆIXDΩ¤ðÒ©óÙ…Q³GE5–yª)mñ±sNˆ" z…Õù3cŠ2é÷À¦îãð½ßüUêb%…ÔX¦yh]èY^ˤ¸ÞçB– ‚.Îg†4™éÞŽ4V²0$Â@p ,í–JŒåYÓ݃‘ EÐzÖîP/eð¶1)jHSc-%Y"¨‚²ELiÔlƒm;Sˆ4û` ˆ ´Ä|vaÔˆQMêBOQMfœDBðÉÞ3¥Q5àÏ“‹£Û`HàØÿ¥ŸÆñûYë_¥–ø¶ÌZc­K<ëk‘·Ë\È$A:ßšLÅ%ü½=êøŒt‚Hrñ —£ûÏ×A` çj˜îŒ1 ƒ–\üP´IÜ£`œ&® ª®¦ KUÐi1+‹è€íÄd*¢æÀ€B/ÌgF­=¶©½Î@ÚÒceœDBô 1¶©ðgÆlkÿþ×wÖÁ—îýŒ.±Aj8Ò<´®Ël¯ERÜár!KAçSƒ›ÌtOŒKšG+ÙG ‚ W¸ž^ဗ@wcXR›ÒÝB‘ÐzêîЮ‹1õ… /£D nj¬¥ KUÐiQ{pSOv½öQt´»^ H ô¿|vAÔöø&u‘§šÑ”+ÛDa ?¢ ªû™1EôgŒf[þ~¿F7¿åïÐÂRþÞ–ëkò·¿HqsË…,A]œÏ”A­DÿhNˆ:>#ÍGa GÈF•rë#Æò¬‚éîÁHò÷à^ôÓ‡ºK„±š©B¨¾š€ ÔAÙ"¢j·ºĬ*¢×åÀ€BÛËgF­=È©½Ô@ÚÒcåœDBô 1È©ðgÉ…Psxï·îÃúsK´PÄJ©qIóغóx-’â¾– Y‚$Bçs£œÌ”O PšG+áG ‚\¼ÂB•‹ 0–sLwF‚BãÉ»ãüv S}ÑÐIÁ8Qƒœ«)ÈAtX4öÄ '«ÓuB~[3ø:]Hõ¬[ÝórÚTÇkì‰ANê Oi‹N;×Ä ‚ O¬±IT®91m×.ÍLƒH‚^¡%Ú¥ƒTS,×*”îŠÄ(uö{î‘9}θA§öؤijœvni75<:ßUí §Mèbl’šÈŸR47¦ßgø¸±ߨmóúÓÜ(^T+6¶§]ƒ¦›Ç"mM:޵]ùá|ì]\O(’ÉRÍh§w+¥a ?ŒÙ=dBmÎÌ9,ÙŒt`H„!;ýç–~ŒáY Ó݃‘ eÆz×ìÀàç‚w¨Ý ˆÕ@Lʱ:'¤™ÖRËLÕEpÚ„Þì·:Uý|fHÑDø‰Z[fÞÓ¯•šSÊÌÛ.+•eضtä§ýtq=SÐS²YHûë6Òj"!ú„RÔØ $µ“GtZd )âRýÐ tXóh'úDBŒ“Õ‰šý˹ ¦»#A à@½¦ö–#ÕR40mƒÒ–švÛÀ©å¯j 8mºxÇR¤êú³€Œù51œö=ôW©…•üqƒ€¦O›øœºòãwé¡ëÛCŠÚÉ,¤ýu[i5‘}²SDê[” KþTP¶ˆ*1š‰¾=1çøb#ÍG ‚`œ¨Ù=zC?ÕÕ¹§»‰#1àh½öóÍ<ð›Á¹A­‘˜—c¶Fb6Ù:p@j ¬›>›Ð;#QhÔ´ý™!E¡qím ´†bŸvY2óiÃðþ¼ë¡Ø>d ’ èâz[µ|–jFóÛ¶k„!úƒU¤oQ€ ùÓAÙ"æYH;ÑÄ éz"€4£H„‚‘²Z@C³•Ÿcí.LwF‚”?î…0}Æ·A«ö°¢êgŒ+Sl4H-uoÃgz‡V¤êú3Crô÷?SþŒ¹ §]V.ü´YxOõ\P²Itq=ñö¥žÏ`”ï›N®1Œ„0è™*ƒê• KUÐi‘5ɇLøíÉ9‡5—4é>‘ãÄÍðѯT$Y ÔÝ’ Äp¢Þ{\ËðõÏh½ˆ×Ôž™3P-—id FËÅ©¥°n¾ølºx‡)†*ÿ, ¹ú=äÅ’BkPÚi—• WN`PšY‚$B׷ǵSZHû f$×DBô 7-Gß®$Y"¨‚²EÔCvºŸ˜ù4Óõ€É>ˆ‘£et«ãÖGª9Ö>Cåt7q$ÆA´^ ûq²>û[‚ ŒV{:Í@5_¦)?ͤº ã³ ½³3%QEáŸR”D™¶Öˆ´Ó.+#6.ÅÀˆ4²Itq½ý楞ÑRMiŸÁìô¢H„‚^yp…Qu»’dI¡ Ê1wB‰tßœQsXƒËõšìC‰P R37/G¿ý‘dì5tPwH‚ ™z)lþþC¸¦¯òY 7#ÖžO3P]˜y$J‘VÆ©¥°îÈølBïLLyTÑøg†åÑq¶¥ÐIvÚedĹoHa=’̇,A]\OÜÕ³ZLûû6Sl#! zfæÊ£ê¦%È’CtZÄMÌ!Ò>3£f̤ÃHƒÑ²ÚXƒq$ÈØtè î.A(‰Æ»aÇ™N .1Æ‹™Pc·effŒÝ–q`à1hÐøìºøˆ(•jzÿ, ¹Tº¿Î³†“vYÒ36dqª†“ù%H‚ t=3"HOm 0ͯœH´1Œ„0à™…¤¯¸gÆäÂÅ`ûßÝ™å| åx¥ü,nÏüiVޝ\7û²Itq>U­Öw @ÆžDe‹¨«»¶î.íAA‡=×ê9¨n#! FËh'öÆTs¬mŸÊénâHŒû‘…zÌmš¿Ê‡¯Ü Œ7¾H_ë @ÆIµÇ T¿n™ˆZµÕ¯s@ê¢AݹóÙ„ñj.²zª)MY'D‘½²PE\}#•d)„ Ê1·[‰,Øœ£s¬©ëYÌ!ŠD()n¦~k%È’`ÔÝ’ ÂzåìÇÑýõõhyA1f’ŽÝ7Z˜‰5vãÈ3+ô|v¡D)W“›g†¥Ü™ø­£5Aô´ËÊ‹­ë=s5AÔ‡,A]\OÜtÕs[Lû”h'ÚFBðÌÊŒ2ÒWܳÀäRÊþ ά{¿|ÿnãWy€-?Ë•47F¯d7YÓ…,A¡ó¹QF¶Î­Ì¡ùÚ • b$„¹ø†¦A»±“ÔÞe5@Ý] ‚`°R?÷×éÐ.sr0^Ü`#}m%YgDtZÔl4ý»u&®öÚý;¦:'^:y>»0jÌ`#}Å'À´Ïgvþ‰a$„AϬ\=QÝÂ$Y§E”-bn¿2±=kçX_×K´˜c a0ZÌäŸÆ–TsÚ‚Üàt7q$ÆA¥°žËûqòpùr°…äa´˜y;v ieæÚØ-$N‹ÐLòÙ>Úzâ¬.;ÏŒ)šI?c¶ó¢1fû´ÌÈŒKÿAËÞßU=fÛ‡,A]œO´8ÕÌ–jJû+7ÓlŒ" z…y¤¯·gÆ% fìí4>öÇô>+Çê“äÆ -Ÿñ{÷øÚDŒÅ^Ä…,A]œO\ø%n#† -×–$è[Œ" úÅjqõÆå k{¥‚º»@úoÔÔ¢y¸4ݰçaĸñGúÊJ2ìÑAÙ"â ²Ý0Ûfâ¯Ý1s`à¤Í3Ÿ]5fü‘¾ä`š®&òO #! zf¥nÃê›— 㣃N‹¬É@tNlOä9Ö×5q`FŒa$„ÁhQów+€,EVAÝ] ‚P/˜Çõæáúñà^ÜÇxíí©<=ÙºÙ{â֩ݺq`à¬MŸ]·auáy˜³‰³“qV,¦oÿ*ŽåÆüm™•?©Ùû³:æÕwd ’ ߌd%·˜æwn§Ú FBôÌH܇Õ×Ü3cŠÆ’» úyq{ôß/¢þ*Õg9RwN—O ù½‡|m%ÆbGâB– ‚.ÎgnŸ:·33¡–k‹T.ˆ‘}Ãu¼ÔË3©æXÛ,•ÓÝÄ‘ô§ÆKÍÃÕL°NFk¦nŸê++È:/ª Ó"fr–Ý5Û™9Uv×Ìó"ôÏ|vaÔˆ!NúrO5¥}>³sOˆ" ze£î ê›— 묨‚²EÄT&6Ç:+Ë΄!ŠD()®Õ¥_¯H²<¬‚º»@¡NPïÍÃÕžíeOÑ/ó‚ bö ©žìÚP/èâ|⪞Ý`Úg33Õ1 gF⪾æž&0&â—“ßot,çIñ86VŸåHÝô\>-ä÷îñµ‹Ýˆ Y‚$Bç[¶X¥{´'[ý`¾g´u.ˆ‘æâNšíæLádÔÝ’ vfJÖ<^ÍÙ_æ…P'ãµP·Põµ•dUÐi3ÿËî›=˜i[vß̳"tÐ|vaÔÚ£¨¬ŸÓ”""ÿÄ0 g¸Tú&È:/ª lu •ȈíAP‡ì|ÃHƒÑâ:^êE‹Ts,«œî&ŽÄ8µR|¿§Éœ¨Ç«9¯mÞOBnP­©o¥ê¹ÆÍ‰iî]ÍÆSŸ¡…ã´ }Ä §Òeç™1E g³~µøýŠÉô:WÌïóâqx,6æ§eFf\?ilAºòÃ^Æ º8ŸPE+Ͼ)m²Òl" ze"n¡êëí™1¹„± Ä/çmû® ÿ|’ïƒcõINÔMÏõÓ">¬—×îq)ÜîA– ‚.ÎgªÅ¦Â½9íO{6ô-H‘ýB¶ºÔK3 @–‡UPwH‚ TêÂÆ@p ‚0b+u U_Y @FèuP¶ˆ¸…j¶ÌNL[²­ž™'ź}æ´ £ÆŒ¬Ò—|L[ˆìüÃHƒžáFVé›— c}é Ó"kdÛ£¢ÿØ1†‘£E¶¼Ô; @–“UPwH‚ Ћ8Õ -1Äkh®ê¹Ö͉iï]­Ögź‰ã´ëâ#âª.<Ï“›8æ(ãâÅË_åÁ±Ü˜ܨµõÂÍQƒè"ÈOÅ /ß`e%·˜¶™©6ˆ‘=3·Põ5÷̘\Âû¼wTϋ˸<¦Çû¼x«Ïr¦nz®­n^Ùn,²¸ Y‚$º8Ÿ«›:703²ÖÝR¹ FBô ÕñүϤšc¹Xåt7q$ÆAý§ÞlŒ— £µR·Põ••dUÐiQ{†XÏuÍNL3?š]3ö$uÿÌiFg¥/÷TSÚŽ¶sOˆ" zåA”Põ?3¦(¡þŒ5$q{ÉõûØ[+I|peÊÖu›×úË´æA– ‚.Χ®ë;Ç ë ®‚²ETQ×¢æü®ÊvýªP†B‰P R#Ùg¼¶= ¤2R“» î.A Ò#7Lo.AFl䊺êZO²DZe‹ˆKÉvo‰Ë¿vÏ‘††žÏ.ŒZ{Жµä`š®¶óO#! zf&îÅêa˜\Rù…Úêu|½‡·Pª] õÛ2c¥mŸ¾¥÷Ry倱Lnd ’ OÍcÒ?3ÅkÍäÃHsñ U¿Öïò$YNVAÝ] ‚P© õ™çã`¼6ê^¬¾¶€ŒÀë Ó"fÊ™ÝÉ™ibv'Ïa„žžÏ.Œ3jK_ñ 0m)²óO #! xfbFméafLQÔB·aû~€çW©’¥0NÜ8«­u è•Æ"µ¹%H‚ ‹ó©¢®ü§ö(©Ãšk!õ1 o¸v£zË%ÕÕŧ»‰#1ˆâÄÍ£ÒÇŸK„Ñâ[é++È’EtZÔlÕ“}¼ibЧfÏY„ŽžÏ.ŒZs¼•µÜSMiË{B‰PÐ+ SÔUCþ̘¢¨»¿¡ÜÆþû.Û!‰‡>V’¸P…Ó­ñÚÎôZÿSq[Þ…,A]œÏ¼ÎJ¤ýæô¬Êf'ýE"ô ×|Ó¯ñ$YVAÝ] ‚P¹÷õèaÄvª„ª¯¬ KUP¶ˆ)¡šM¼‰™áewñDhèù쨵\YK>Fq5b aÀ333àJû³Àœ%ÔG¿²¸îÓ¾²øÖÈRgnˆÔÖ¸þóZa¯gÇ»%H‚ t>5àŠHÿ33Rj3“#!ÌÅ7\¾îµ . @†“uPwH‚ FëyïÊ|1o’89/nÀ•¾¶€,aTA§EíW=Ù7›g¢Ti÷ÍFè ùì¨1®ôŸÓ–";ÿÄ0 gV¢„ª‡ý™1E uÞma܇u™Na;ùÇ0Â\|ÕPÕë$ @–“UPwH‚ ”FêEÂùú[ÃáuX,úNÆëA•Põµ•d £ z[´¶§‹ dßlí‰WPí¾™oî@ÍgDmm¸²V|L[ŠÌüÄHƒžáf,Ùùge¦í‹•}‚ aÐ7TÓE¿ÖjŽåb•ÓÝÄ‘òòj½wœ4®_Î\ß3÷‚0ZÌD#»M²2“ƒì6‰y&>»ÐGeÃäÏ“ü3cІÉw5Ézßfœ†a9ß·9»)·ÁoËMW%Ûxßæ]î"ÈOef/èâ|BƒÔÌ–jJ;éÛi6D‘½b o¢“ls`ÒaËf¦ØE"ô‹ÕÛŒ« @†‡uPwH‚  î:}vºA±­=¼i ;[O<2i·$ èNøìB1Ûtu}fLnO¬Ì˜ßqï—ý}Ãû­F¥mÜ€¤½1¼é}âì"ÈOGW/èâ|¦<¨f·˜öwn¦Ú FBôÌH½<ªo€Œ¬­ƒN‹¬‰FlúßÚ3„{Vòb$„Áhqôû @ª“-PwH‚ ÆÍx—íÇÏËõãß:99/f~ݖؘ9=v[Âa„…Ï®‹ˆ—Gu՘ܠXˆ©†ïÙâ¿J•¬„q¥^÷||ÚJÀ†«‹ ?íܼ t~{x“•Ü`Úß¹jc aÐ3Üð&} “d £ ÊQ¿Ü&’?3.é»g`¤þFBŒ–ÑâŒK©æX{•ÓÝÄ‘DqçÞBÓg§KÑÚÛÛ²)±DaÐnJ80 ‹ÐžðÙ…>b†7éšÿ̘¢`ùX Y<©þ*5²”Åôø´‘€ïª‹ ?~ NÐÅùöÔõÌ–jJóÞŽfc‰PÐ+õø¥¾yI2ÒµÊ1%T;íïÍ)B‡5“•ôc‰P0RÜD#ýê@µçPAÝ] ‚P¹ADËE=ðÀ^FŒ™d÷HvfNÝ$q`jIÄ~‰Ï.ôÑF”Pu½fLQB6[­Aã§eVfü´‰xçs5h܇,A]œO”Põì–ÓüΉTÃHƒžá†7é›— KUÐi7¼‰Hÿ̸¤ÇõØ€É?†‘£eµ¼ãòFµùPAÝ] ‚@Æ+hÇOž.1ÄëÑÞ4­›ÇÈ”*ÍÖÂMŸ]1%TUõŸ&—P™A¿æTÕ7 éѺÜSU]È$A:ŸÞ¤'·˜ö ÍLµAŒ„0è™™*¡ê[˜ KUP¶ˆºói'ÿG{†ÐaÏ5@êb$„ÁhQô;%©æ{ÓÝÄ‘E‘{ m¹ÞÖ‚‡1¼ ŒV{~Ð@6nSª47 È"´p|v¡v¦„ªjþ3cr uúùQh[ÍáqoË¬ÌØºrÃã\È$AÐÅùvcQÏl©¦´Ïgvš Q$BA¯póƒôÍK%‰*([ÄÌ"Ò>1³çq=3`ÒQ$B©#5÷V«k0n’${ÔÝ’ ¨–Ĺ·Þ@ûq´>;]‚ Œ3­ÇìÚœ˜ßÖôÞ¶SÿN:8N»ÐGSBUõþ™1E uI4†Ç–µ3ãÒ÷ I¬‡Çù%H‚ ‹ó‰QIzvK€içVªb$„AÏ0£’ô5÷,0ïÆÖ3c~kÿû^æ¯òëÕgI#ZúO ù°rz¥»©Ìãd ’ èâ|®~­î€¬=‰ :-²†7ÑÚÛ—t,Ûk{•7†‘£Å oÒïò$Y;?ÔÝ’ ÷%Ôtë5\õ[]^Æ‹ÞÔXí @íÀ7@§EíáM×É;1Í­„ÙÉó` tP÷ôœvaÔÚÛ¬ŸÓr5“b aÀ3CÏu›ª öúj€²EÔ½X;#Ä ¡¥¿g 1Â`´¨‰Fú-—Ts,AV9ÝM‰q@)ëu¶Ÿ/GŸæ.AF‹™d¶’NL{7mµ’<8ÁÖM%§]裙(êê²ó̘¢¨û½ö ÖšªzZfeÆÖ% zªªY‚$º8ßlu62[ª)­¯œI³!ŠD(èfx“¾ÞžSUŠ£rzþÒ÷{ÿý¦æ¯ò([}’Ô€¤¥o oz¥º©Ìàd ’ èâ|æ 0¡pöÀ¤ß¯Ôú¢H„‚~±úŒ½q'ÈÚ^© î.A¨þÜtë5\õ –nFŒÞÔXY @ÖIQe‹ˆKÉfïÄ´%Ûêây0pR¬zN»0jÄð¦Æ’O€iŸÍìüÃHž{¦®ØØ¼$Y'EtZdM4bsâØž!t¬¯ë±2b#! F‹›h¤_pI²Yuw$½©÷œ×ëÇÝ$'ãÅ̲›I#3§Çn&90pV„¶’Ï®‹ˆ{±ºð< Ln+ÄÓÖ ñÓ2+7¶.ÕƒÆ}È$A:¿=¼ÉJn 0íšjc aÐ3Ìð&}Í=3¦(aØÃ~_çÅeY§Ÿng>ìË¿D×Ìó"ôÏ|vAÔ&{xSc¹§šÒt´{b‰PÐ+s/¶±yI²ÎŠ*([ÄÜ‹µsáÔœ"ô³²†kÊ€L£H„‚‘â&é×+€ !ÖAÝ] ‚@'&íúéÀFÜ Âˆ󃈮ÍDÌé!Ú6 œ¡ƒã³ }´Ø÷b’ó̘ÜÂÙzâ”ïÙâ¿Êcc¹%[fdÆá“޽eºÉtq5Ù…,A]œoß‹md·˜æwN¤ÚFBô 1¼©±æž&0fs¦áð—ïË9ãú>)ÇÆê³¤$-ç…üþ,_éw*ó¸Y‚$BçsÛ¥#Æ%-õC‰:ÃHsñ ÷“ õæLµÏRAÝ] ‚p@ ]Ú®=8̱>Æ‹ÞÔX[ @ÆYQ½-š‰áMDßl&†$}3ΊÐAóÙQ›‰áMŸÓ>¡™ù'ˆ‘=3R·Põ-Lq^ÔAÙ"êªçö§c}]oA> b$„ÁhQÏ7è-RͱYåt7q$Æ¥˜¹Çú¶Ë—óú_ý»0Ç ÂhµÇIõdãf^ìÛžDãÆó"´p|v¡ˆqR ÙyfLÑÂù~ïÒ³Ólˆ" ze³o¡6ÖÛ3cІ=è÷uV\úßúø«<8VŸäFÝô>-â÷'ùʼS™Á=È$AÐÅùÌ-TBáìùYËpmM¢¾…(¡ _¸V—~i&ÈÚ^© î.A¨þÜ®íÚ|__rqcÆ ‚ˆ-=u U_Y @ÖIQe‹ì[¨DËl!¦x=3NŠÐ>óÙ…Q#\5–|LÛÕfþ b$„AÏP®›— 뤨‚N‹¬WlN\Ú#¥ŽõefÄ FBŒÙò´; @†“uPwH‚ Ћ…z¦o¿˜3M¯¯°h›99¯ö€«žlÝ,«}Û“hÝ80pV„&ŽÏ®‹ì[¨ áy˜ÜÄÙ&û¬¸ë2gÅãàXnÌjˆÔ2~R3Ø…tä§íŒ„Îo¸²’[Lû;·Sm #! zf·o¡6ÖÜ3cr 㸴ݷϋ¯êã˺é96Þ·™‡×î±Ì›d ’ ÏÍò"”Ž˜žõû×­†ÎÅ0Â\|ÃU‹Õ›3 @–“UPwH‚ ØlÔûúìq‰q ^Û@ÝBÕ×VuVTA§EÄt1¢o¶S¼ˆ¾™gEè ù쨮+>¦-Efþ b$„AÏP®[˜ 뼨‚²E\]Ñ̈[{¤Ôá31Â`´¨Ž—~Ñ"ÕËÅ*§»‰#1*7—JŸÉ-AF«=àª'7ÛFÜö´7 œ¡…ã³ }D ¸jÈÎ3cŠÎDüjñ=)áWyx,7æ5DjïÛ¼ëÕ]ù©ðí]œO¨¢g›C¥è4¢H„‚^y·Põõö̘¢„±åƒ~V|Œýô>+¾ŽÕ'ù nzŽ·mæWª›Ë îA– ‚.ΧªÅ¶ÂÙó³–©7õ-D‘ü²“­®A»4“dxXuw$õß¹×ÿôÑãaÄFꪾ²€¬“¢ Êõk»e¶S¼ˆž™ûhŸù쨮K>¦éj;ÿ1 gˆW°? ÌYBýîÔ˜²8Mþû€_¥F–²¸sC¤¦¡!‹¯0—É̓,A]œO]ÖwŽ @Ö1]Y®hAj”:üsù®.rÃHƒÑâ\é\€,'« î.A(ÖÔ`*}ºÄ8/nÀ•¾Ú€ ©ÖA§EíW=ÙÉÛwâò¯ÝÉs`@ª¡§ç³ £Öpe­ø˜¶8Úù'†‘<óè‰{±zØŸSUÖê}Ù×÷›;oÝ.¥úm™µÒ>}Kï¥òJs‘Ú\È$AÐÅùTýÚNþfzÖ4[©?ˆ‘}ÃõàÔ =©æ¨.¶8ÝM‰q@Ü»„ú@t ‚0Z#u/V_Y @–,ª Ó"bºÑÇ{S¼ˆ>žSË"vô|vaÔˆWúrO5¥-Cvî Q$BA¯®!fL.êî߯)Z’8Oãz¼Ž˜õ±’DnˆÔÔºôZÿsñ#2²Itq>ó´‘ö‰¡R“ôC‰PÐ/\ŸQ¿Û’dyXuw$BIäæRéó¸%ˆq®ô••dI¢ Ê1E]³‰÷Ø™â©ÙÅs`@¡¡ç³ £Æ ¸Ò—|Ló¦‘b ajÏ,}ÏuÕ°? L.êþ¬|C·Ç¸¿‹ºo,dñ´ÌZiw^ۆ׿OÇû%H‚ t¾5Ë‹Lÿ'¨ý}[É?Š‘æâ._÷Ú]ž ÃÉ:¨» $AP-äÛ4ý¥Ôø’”׿ s|Œ×Ä•PÕµ•d £ :-"¦‹Ù¼ÓÌf'σa¬{zN»0jíWÖŠO€iK‘b aÐ3Ä€«FØŸS”P™È˸ìßÿ¿J•¬„‘"5µ.m¯¥²Ž÷ KAçS®ˆäÏŒ”šíÔÃHƒ¾á:^£vË%ÕËÅ*§»‰#1Š¢õXß“ûk¬êË­nF‹p¥¯¬ KUÐiQ{ÀUÏuÍNL;?Z]3d±îŸ9킨 Ä€+}¹§šÒ”!;÷Ä(¡ W¢„ª‡ü™1E u$~C¹lãøxwßúXJâÛ2c•ÍCC÷×2Ù ·{%H‚ ‹ó™ªö‡æü¬ãC0“~Œ" ú…lu©7I€,« î.A ‰õák×|Y¸¯ÕTT=¼ ŒØL•Põ••dØ£ƒ²ED Õl™˜v~´zf HbÝ>sÚ…Qk¸²–|L[ˆìüÃHƒža\éa˜\B]7[_g­õ[[~•YÉ"7Djn]¶y¼–Ê£p¼Y‚$Bçs®ˆôÏŒ”šíäÃHsñ WBU¯“$YNVAÝ] ‚PgúŽ3Þ5\õ/¼Œ7àJ_[ @–0ª ·E#3àÊ웘ßö Þ¾™S?-4§]µ‘p¥¯ø˜¶™ù'ˆ‘=c“bóÏØàtX³XÙ'ˆ‘}C“Ò¯5¤šc¹Xåt7q$Ƽˆ—Guu}fLÑžøeß á/}¿÷ßm_¥•ô¶ÌJò­—dŽZlA~*êzAç3åA5»%À´¿s3Õ1 g¸áMúV!ÈH%:è´ˆÞD¤ÿ‰—4_7éüƒ a0ZVc0î$µ7 PwH‚ Ɖy‚®1<]bŒW{xÓ@¶%¦•¨Ùm „>».>"†7éªÿ,0¹Aña\–ušŽÅ[%+aä$-Ÿ¶pâï"ÈO¥/Ï oÒ“[L³EI¤ÚFBôÌN½<ªoa€,aTAÙ"¦`É$ÿö ¡ãËÌÔÃHƒÑb&5.¤šcí=TNwGbÅÙzíÇÉÃEAàÀnDkfæÙM‰™™Óc7%EhOøìBDÁR×ügÆËo…³dñ=_üW©‘¥,¾-³¤çÓFv[]ùiÛæ]œo,õÌ–jJó+·ÓlŒ" z…Þ¤o^€Œ4¢ƒ²EÄsœDÚŸ‰IËõÌI?F‘#e5–ãê@µçPAÝ] ‚P©7гÓ%ˆµ‡7 dd^™R¥Ù$q`@¡_â³ }Ä oÒõþ™1E Õó›G¨þ*õ±’Dn@ÒòißUA~ü@ ‹ó‰—Gõì–Ó<›©6†‘=³S%T}ó’dÉ¢ :-²&Ñé¿=Cè°çšN0ùÇ0Â`´¨‰FË @ÖæCuw$i\˜WЖáZÈ¯ßÆðr ^ 3?ÈnÝ,Ìœ»uãÀ€0BÇg×ÅGL UUýg9K¨‡]†0ƒÆOË¬ÜØ¸Ü2׃Æ}È$A:¿=¼ÉJn 0íš™jƒ aÐ3Üð&} “d £ Ê1_ÉaÆ%-×äþ FBŒ–ÑñŒ;%©æX{•ÓÝÄ‘EÑz íÇÉúìt ‚0ZÌð&»q³0C’ìÆ? ƒŽÏ.ô3¼I×ügÆ%ÔeµeÑšªzZfeÆÆ•˜ªêC– ‚.η‹zfK5¥}>³Ólˆ" z…Þ¤¯·gÆ%Œók¼u~|ç¸_åOóªO’´4ÞmY^©n)wjd ’ èâ|®~­î€¬ýˆ ÊW€ÍmŽpú¡¬½©¸!ŠD(©•'ոƓdløtPwH‚ جÔtËx >ÔåaĸqRúZO2B¯ƒ²EDEÝnâ­#Q¹¶»x  ¡ç³ £Ö'e-ù˜¦«íüÄHƒžá&éÛ© K+TÐi5ÑˆÉ‰Ì ¡õr¹dÄFBŒ–Õ„Œ . @†"ë î.A¨Æ»l?~ÖǹKŒƒñbæÙͤ•™Óc7“8½B[Ég×ÅGDQWžgÉE]{ô°=çõ´ÌÈëøAÍÞŸU=çÕ‡,A¡ó™áMzrK€i~çDªa$„ÏlÌð&}Í=3¦(ªüüj°ož`·aè×÷¤Š÷q¶ü,7n@Òúi!¿÷¯l·YÓ…,A]œO]¶unkK:ɵž*ÄHƒ¾1Ú½q¡'Õk›¥rº›8ã€þoÔCtËxÕT¿`éa´¸áMúÊJ2⮃N‹ÚÛ²·MÄå_»çÀÀy:z>»0jÍáMÖrO5¥}>³sOˆ" ze¡êŠúæ%ÈX[:([ÄÜ‹%rasŠÐ±²®·k1†(¡`¤¨‰F»- @–« î.A¨Ö«l?ŽÖ§¹K„cæÙ}¤™Óc7’8)BOÉgúèAÜ‹Õ%ç™1¹©ôø}Þ>)Z£ÏOË¬ÌØºþ3U£Ï}È$AÐÅùĽX=»%À´Ïfvªa$„ÏìÌð&}Í= L.`0c~·×žùœiø>6–ŸåÎ HZÛ–Wº[І Y‚$BçSÛ¥Û™qIëõÇ« sAŒ„0ßpÒt)¨`x·F%Y î.A° à~²<^Ã5×o;;9/nx“¾¶€¬³¢ :-joȾÙ>—í¾™gEè ùì¨1ÛôŸÓvµb aÐ3+u/VßÂ$YçE”-¢îű=CèX_×ÃæÃFBŒ3ѨqÑ"ÕCuNwGbT î±¾éúåÀvÜ Âh1óƒìÆÍÎÌé±7 œ¡…ã³ |ôè‰{±ºì<3&·pÖ~"΋Ç|ñ_åá±Ü˜¿-32ãöIËÞßÕk 2¯;¸%H‚ ‹ó‰Æ¢šÙRMiåfšQ$BA¯0Ûôõö̘¢„1ç]£zVÜû©ßßÍî÷Á±ú$¹IÛ§EüÞ=¾RÝR”0\È$AÐÅùÌ-T[áÄÀ¤íÚš}‹Q$BA¿X­®Þ¸4“dm¯TPwH‚ Pÿ7siº4ß.ÉÕ ÂˆqÛô••dØ£ƒ²EÄ-T»eö˜‰ÛžvÏÌ©OŠØ>óÙ…Qc†7éK>¦éj"ÿÄ0 gVꪾyI2N1:è´ÈšhDçÄö ¡c}]fÄFBŒ5ѨqÇ"ÈRdÔÝ’ õ‚z¦oº~<Ë+\ÅÏœ:^¯³ q ÕlÝœ˜öÞÕjÝx0pV¬›8N».>"n¡êÂó,0¹‰³/öYqžÆõlâ¼ŽÅÆü´ÌÊŸÔ >«.‚üð}ºAèüöð&+¹%À4¿s3ÕF1 gF⪾æžS”0˜a¿û¼?¾àùU«Ïr¤nznŸò{ùÒÜe.ïA– ‚.Χn¡š:w‚Ú¿k‹²V¹(FBô unЯϤšcm³TNwGbœZÿמx5]póú2g-Ìq‚0Z3u U_Y @ÖyQ1³¼Ì®Ù‰i˶Õ5ó`à¼X÷ÏœvaÔˆqRúrO5¥}>³sOˆ" ze£n¡ê›— 묨‚²EÌ-T"6‡J+ëš20†(¡`¤¬V×`\¯H²„Xuw$Bàé›®ŸÎö ×VØãAĆö€«žëÚœ˜ö®ÕjÛx0õI:8N»ÐGÌ€+]ržS´pVâ÷Šóö÷騒¿å–|à†Hm­×vŽýGA~ÚÈxAç·Põì–Ó>›™©6ˆ‘=3·Põ5÷,0gcê‰ß+îyû¾0ó«<6VŸåHÝôÜZ/î¼w) .d ’ oÍòb•nhOÏúÁì½¥sAŒ„0ßpÒ4h7g€Œ}–êîI»€Áx‘ð‡2_ÍÙ_æì…9>Æk¡n¡êk+È:+ª Ó"fº˜Ù7;1Má6ûf œëšÓ.ŒZ{À•µâ`š®&òO #! z†p¥oa€¬ó¢ ÊQ·P‰ŒØ)õƒÙí|ÃHƒÑâ:^êE‹Ts,«œî&ŽÄ8 #÷^Ü|5çñ2§è™yA­±=àª'7ã@Üö´7 œ¡…ã³ }Ä ¸Òeç™1E ‡ˆ¼ŒËþý¿ñ«<<–ó‘"µÒ²wŽ:DA~*hxAçÛE=³¥šÒüÊí4£H„‚^™ˆ[¨úz{fLQÂøIp}ó¬ø˜ûé1¿ÏŠÇÁ±ú$'ê¦çþi¿w/µ]І Y‚$º8Ÿ©Û 7ó³öÙÒ·E"ô ÙêR/Í$YVAÝ] ‚Pý¹×ÿôÑãaÄVꪾ²€ŒÐë lq Õn™Ì/»gæÀÀIÚg>»0jÌ€+}É'À´…ÈÎ?1Œ„0ènÀ•¾yI2Ö—:-²\Ñ9±=Rêðc a0ZdËK½c‘d9Yuw$½˜¨ÁT?¹§3Mß h:Pýàgœ1œÚC¯z²3Ä P»ãÀÀù;>».>"n¦êbô,0¹±3MÄùqÇÇûWŒïÃd¹YŸ¸ÁR{ëÕ›£„ÝEŸjá^:¿=ôÊJx 0my2Óo#! zf&n¦êkî™1EYãgHiß>Cîß¿b8>Ë÷²ú,gêöçÞzõæ¥ÃKQÖp!KAçsdSû&f¢Ö¾[ÊÄHƒ¾¡º`ú•šTs,«œî&ŽÄ8¸'à^ÔG’K„ÑZ©›©úÊJ²Î*è´¨=ql ;iÓFܵ;i œ!¡§æ³ £F ½Ò—{ª)m²sOˆ" z…›»¤o^€¬ó£ ÊQµF;6gÞ±3aˆ" Dj&Û_×j§[‚ Œ7ôJ_ë @–P« Ó¢öЫžìã-q!Øîã90 ÔÐÑóÙ…Qk½²–{ª)ma´sOˆ" ze!îÊê!fLQT™v[¤‡qü¾q{ˆô¡Ø•H/Ô}ÔGãžõµþ×â×.d ’ èâ|æÅV"í7gjm'ýE"ô ×|c®ö$@Z¾&ÝýH¹ ‰ÒÉïZ®?R|}ñKùÅ;AÙºS«¯À K:UP¶ˆ©¼›Í¾…™fwûNhüù쨵‡cY©!¦Ùz&òT #! xfe†céa˜\üµÇ(¿äóõçÎ3î[KKù\¹TÆ5¡ux-•"™¸%H‚ t>7ëOdbeS=~Ç8~Ö‡;Xg]œÆ5,{í†Lá}ÔÝ’ 4“›Æ³\ ?¯tr0^ÜÔ,}Ñ%YŠ©‚N‹ÚS³z²¸ÎLõÕl:0 ˜ÐôÙ…Qc¦fk?«-TdNº%qzke*Åê§ð̘\)þýÛKKEÇaœ—õ­¢‡¤V*ºrÕØÆã>ëøZ>Å5|²Itq>õ ,!í1]¿1kßþ¶Pn`Iœ…®âú|£vi(ÕËã*§»‰#1ê&7úk½V3_³”Âéa´v®L«.´ K9UÐi3ÕÌî®Ìô0»WèÀ€rB×ÐgDmkÖ¢~ªQ-}bóÑ ( £ÐS̰-ý3xfLQº}}²¶j.Û¼½Uó-¡¥jnÔ@«µª9½–Nq%Ñ…,A]œÏ”nm)ØìWk?~þ°@ n@I…n";nê› Ëá*¨» $A¨æf½øƒY/_þÓ ÂˆQ³· -¨­š P¶ˆ¨ÐÚ»m&*¡vëÎÕ„.žÏ.Œ1{ËZü Xm…"sÒ ,‰³Ð[+QµÕ?…g9«¶óÏäÔ¶rNý8÷ïªí[F+å\™Êèï)­ªrίåS\›s!KAè|kô- ía_Ç÷0þ¶Pn`IœuqW«U/¾$Y>WAÝ] ‚P=©÷×ë¯"_â¹”âéã`¼L­¶±Ô€,íTAo‹ööl´ìÜí=ñ†«Ý¹s`àמÐÃóÙQÛÛ㹨µŸ€ÕÖ(.'ÝÁ’8 ½ÅM²sÒNÌiZûåã_ÓÒ,‰³ÐUÔýîEª9ªÇ-NwGbHÝ»õ Þq^¹~HðãB/£ÅŒl"[6;3‰lÙxYÿzfaèÛŒC—­ÄÛ¯º,<3¦èÛÌÌ/2×ùÑïÇOßÞ?Ï,÷ÑoËM‰eÜx»ç²z<ÈËÇ º8ŸP­vÊK5ª-d&Ž£$ŒBOQ¬ˆ}~¼A±G{€Õð'Ý‘Go¿¶É¶G¼¬¬QÐ$ ‡.cæYRü̬¢Uòó¤JC¨¶¿üHÚ[§ÑúÖ©lý³úF6H€i•H‰ÔÄHƒq™×Jr›ÔÎr Ði7ÉN—bîÐÚþ$1cÞÁ’8 ƒÇ EÒ¯$Ú­ƒº»@²<ŒgÜ~¾¥­¿|Ksýf'ãEŒ bÛbÞÛ>ð²²®@!`ÜÅeö»¥–|ž,bº‘µˆ°Ú¡$“Ë ,‰³ÐóÜ|!"¹}Öþz,ÀÔÃHƒ¾1êØƒÑLN5Ç:ÓÝÄ‘§Nº[Ͻ‹¦÷– ¨ŽÖÖ·ç Py>Yí|DUžÝ¬œvëòsÄ8t1nÈR—Ì2ÜX·©¦´7»V R$BA\Èòæ45mø¬Eî@I…nâæ¹è­Ç KÎTPwH‚ ̶Ü}½A1bz Y1=Yí4D•Lݬ3ÛBá4bºl³‹'–¨dqEÉXÅ XÍP²Éå–ÄYèyn4 ‘^ˆa$ë÷3-Fr‰a$„¹ø†»é¨v€,­SAÝ] ‚ õÆ{BÇöÔšîå@¼b Š]ä<1¿­é½EN¦¾À åN§]1å„¶ œ,bªGc­&À4ÃfgŽ FBô21Õ£ñ =3¦hXÿļø9ÿ\ÿUÞ-Ö§e½Vî>þ‚ã‡ïò°r}-Þu)ïA– ‚.ΧnÙi{hÏÑ8Tvú¼V sßÁ’8 ]E ùÐÛŽ©æ›ÓÝÄ‘Õ{HŸT.AF‹òÑXh @í¸7@§EIJ |²ÚÊD”ݬ|Ô©«Êã0ˆÍ™TH5ª} ÓS%azŠšºA$'{ÒÅïn‘šB‰PÀ/æÐùÁèé%B©ƒº»@Aâ­·g~>sVµ„#¦nà‘˜nA”€8˜@5Øgúˆ˜ºa¥ÿÌ"n»è‹5¦}03G#! z™"Ñø„ž&ÿ"mË?FÑ&áwoíWyJ)¨aZÏp¾Vﺎ÷ KAè|kˆ¸Ûc]?¯ÌÝ7°$κ¸Š»Ç¨vP€¬]„ êîI„G½£ÏÆ–ãEÍ”h,µ ëh¢‚N‹Ú3%†?iŒ;q›‡lxYùh½€€qÄöˆ *$`µÝO¦¨Xg·&n΀¢&âeÿu¸ !A1 o¨9zG6ÕK0UNwGbHÝ“õXÉÏ—cŽAvƒ0ZÄ«þD"^Ï'êø O ¢ï³ }4÷ È,¢m¢.ÔTSÚA³³Fˆ" z˜˜Ðø|ž“;10óíæi]¿_üUžSÊ£ÉD½Âÿû×vêÑäµr×­p»Y‚$º8Ÿ¹ŒE$lûUþux|^%˜³ã( £ÐMV!¿7Þ @ÖæAuw$BmãžÑg.K„£4Zu0QAÙ"âzÙ˜vâÙð²òÁã0ˆÄ\+$`µÝO¦¨Xg·fë¹z6IÍíÇà>ø±·RT#!ÌÅ7ÜOµ¥›d)¦ êîI œzMϼëå`¼ˆ7à‰JþL¼µNTò8š@Mßg×ÅGÄ•.CNVû=yk­&À4ÃFdŽFBô2ñv|ãzfL¾ÒµOÄ–yÆoã~•g•òx2Sﳯã§#ó{òZ¼ë^8Þƒ,A]œO]é"Ò6óFû8~^+˜¹o`Iœ…®2êù½ÑúN5ÇØDèœî&ŽÄ8¨nÜS$ú”Y ‚0ZÔÛñ…–dOtÐiQûíøáOšóƒ¸5E6¼¬|Ÿ´ùûï8×—˜º0²¤É´‹ãˆûkzfJ€iŸ{ì4ÃHƒž!^To¬—g9ï¯-̯e\¶ï¿Ê#Yy [¸WËÇÖýµWªZ‹ç\È$A:Ÿ{QP)æåòQI (T7°$κ¸Š»8¬¶ø€¬-“ êîI„‚N½„nŽH÷r0^Ü‹êúRK²Îa*èmÑJ¼¨ÎöÆAWæu#$`µÏ<\Šºƒ%qzkœnØþ$ µO0-ÛFÝ­³ÓçÚ~dýXŒfò b$„Á¸Qã~õ{ª9–˜«œî&ŽÄ8 ++÷\Ž9;Ü Âhµ_{ïɆʺwØì†ŠçDh­øìBÏ»ÓRÇ=z>Vx.$º%H‚ ‹»ˆ›¯žÓ‰1D‘½²×õò̘|}pì‰_6½Î…ýã=kë}L,O†oˬ½ec¶óöÚônÅÛ".d ’ èâ|æú ¡IÍ׿–ÇÔN(Kq”„Qè&nà°~¹"ÈØé î.A(ßÜûõæÐr7"¶õÔõA}¡%YçB”-"®’ݦyýžl7yYù\M§€qÄöã÷T.HÀjºŸLQw°$ÎBoqâëÛ ëH¨‚N‹¬ñÙ´¹µžÿY‚“™4ƒ a0ZÜ4^ýBC¡á:¨» $AHÊÆ¼qdôör0^íð{²µ³­ÄÅA»µãÀÀyš<>».>".4²w°Œl6ó Üu!KAè®ö«þV:J€i~™DrŒa$„AÏìÄM}•<3¦¸³¹?){­‚ùûqð_å±<¾-3ö•Ó§¥÷Þ¯a™ç<È$AÐÅùÔMB™Ú ŽE2N(N7°$ÎBWq=,õnKª9Ö>Iåt7q$Æß©!ö`q7¢µ÷ÔM}¡%öè Ó"f¾ÙøÚ™ dãËËÊgBè~ŒÃ ­B#¤Õ>yqé锄Qè©imw€Œó Ê1·Hít¹7g4‹ïú|$ËE"ŒÙ²RïT$YVAÝ] ‚PJ¨ öl]7#ÖÑ“½œ}%nkÚÍNƒÐ×ñÙ…>bfC°â¶Q—4§Ö¸æ¹¾zëB– ‚.î"îŽêù(¦}þ²“c #! zf'îŽê«äY`òÝÑ5oõÓà²ÿþáͯòhXžß–Y;ÊOKï½%_[¢iíB– ‚ÐùÜœB›˜ÉÓõT¦FB˜‹o¸^•zg%Èr² êîIºý`惜ˆ×c .‹êk+È:ª Ó¢öä“áO:\‘¸Iv¸¼¬|„6WÀ8 "3¼DO 0me2ÓQ#! zf¦.†ê;š ëÀ§‚²EÔuP;A>Ú“3ÿ\/@z b$„ÁhQ#<ô ©æX.V9ÝM‰qP8¨»ˆ' ½ ŒV{`FOöjqíÒîÕ80pàƒ®Ï.ôÑN\eÅl§®\Î}ãÀwh]È$AÐÅ]„Ž©¹(Õ”öwi'ÆE"ôʃ¸ª¯gÆ×A‹»’êaoëÇmy_}ŸüÊÃÞÛ²¾½{œ?-»ÃÊmzmÿŠŽ´ Y‚$º8Ÿ*ÐÚšDLK™¯›~T¤E"”Ú/;7λq%¨íᨻ $AP­×{O \±ßEuƒ0b#uÿS_Y @†=:([DÜÿä:W'«­´TëÊÍÊG½º1ƒÈŒƒÑ3@LS—ÌtÅHƒž™©»žú^&È8êé Ó"kF "Û³Hÿ\ï `‚Œa$„ÁhQCQ!€,'« î.A(Ìãgö³u^Æ«=‚¤çZ1'¦½•µZ1 öꦌӮ‹ˆ»ž¬œíÔ}Êynöê ²>d ’ ÝÕÑb¥£˜¶xØÉ1†‘<3ôÄ]O}•<3&ßõ|Lqà›×ý¼ëù>ý¾Ó²ÞØC6^†Ù^ér+ò® Y‚$º8Ÿ)ÐÊ40ÓgæÕÒ¥ FBô 3 §qå$ÕÕŧ»‰#1(ö@°±ß8rƒ0Z#u¹S_Y @ÖO1ÓyÌFÕ‰içG«QåÁÔ»hY9í¨uôåžjJ[†ìÜ¢H„‚^a&êè!fLQýžgfJâ£ÿ=ÆïW©•$rSkæÖ…—×Áq[ ·{%H‚ ‹ó©k³úÎ1È:Z« lñ#}Fˆˆi:óçA½-Š£$ŒÂÀ‘¾k…æ¸l’dlŠtPwH‚ Ôlj4ùpfŒ†±ã¦ýèI ÈRo”-"nøší¹ÓNåV΃õ®[uN»0jÌx# $`5Ëãlvº%qxkì‰k¬ú§ð,0ç5Ö߯ðZª¾Oóï‚ò¯RâKU[f­¾ÖC7/ÍÚŠú‹ Y‚$BçS³•q™iFß“>ÚÒÄHsñ ×r³f@Ÿ ËÉ*¨» $A'×4_mòr0^uU_[ @–Xª Ó"fړݨ™©Jv£Î±„–Ï.Œ3¡I_ñ 0MWù'†‘=ÃLhÒÃþ̘¢üS4„qÛçé}åç­’•0rS–¡!ŒÛk©l…ã=È$AÐÅùT˜HþíIH‡5×(bêa$„AßPÝDsé›c¹Xåt7q$ÆAQ¤&)ÙÏkºA-n$“¾²€Œ¸ë Ó¢öH¦žlú¢Òj7ýEhÿù삨MÍLÖrO5¥-Cfî‰Q$BA¯ DXù3cŠ p±}Gïe²¿–É^¸Ýƒ,A]œOÜ‚%ÒþD ˜Zf+éÇ(¡ _ÈNÝ%/ÂÌ»dxXuw$Iœ¨UöSNnFl¦ÊªúÊJ²$Qe‹ˆ²ªÝñ›˜1WvËÏI„îŸÏ.Œ3EJ_ò 0m!²óO #! z†™"¥‡ýY`r •™åûx'¶þÅ·FV²ÈMjZZw…¯¥RÜûs!KAè|kŠþÛÓšk®QÄäÃHsñ •¯Í1D'Èr² êîI„Òh<•÷sÆ3ßÞôr0^ÜØ(}m%Y¨‚ÞÍÌØ(²—63“™È^š—uþ<jã ˆs{l”•`ÚÊd¦£ FBô 5†‰HG33øh¹þ|’Q#! úæŽyW©†Ws Xw'Ln€Aêž©çéŽ×N¦so3}'éÈvõãD7 1ªÌ¸&»»23c‘ìîŠç è³øìB1ãšX‰áF"-­qMõ+v>d ’ èâ.B]Ôœ•jJû»´hˆ" z…פ¯gÆäÊäôý&|û6ýåûWÃô>‚ç±ò6s#‘–Æ-–ýõ•ïåæÇƒ,A]œÏÜeµ‹˜Ž´ö—ņ¢¢H„‚Ρ†4Ù#Nµ{RAÝ] ‚PÈ­÷êŽÃ“õä¥[¸!MúòJ²Na*([D”'ívÔÒe@»åÀÀ6ZS>»0jÌT&}É'À4¼vþ b$„AÏŒDyRû³Àäòä:Ú¸ŒÛöÓµËBYjãÛ2c¥­CC_ÛKÇ{%H‚ ‹ó©'ôíc‘ÜtÐi5þФ…8µ^¾+”£ FBŒ5þÊVv‚¬=‘ êîIb]þL—4ói(/ãµPS}µ'öè Ó"f —Ý%[˜ÁWv—Ì©†~™Ï.Œ3aJ_ñ 0MWù'†‘=ÃL˜ÒÃþ̘óÎéëž ©~¬ßãêC·+©æ¦8­ 6û+#íejó KAç3¦˜äÏLrZg3õÇ0 o˜‘RöŒ¢7ÇØ{èœî&ŽÄ8 Š«õßQÄì/±ªßðtƒ Z+7RJ_Y @–,ª Ó¢öH©žlŠ­Sp6›b È"´Ç|vaÔˆRúrO5¥}b4sOŒ" zeb*»jÈŸSTvgóÕé/Ãô˜¿+Æ¿J},%ñm™µÊ—kö×®x/.C»%H‚ ‹ó™;§vÚ_‰qTë%†˜ôc‰PÐ/V£p0î${ÔÝ’ %‘{\Ð~RÊ Âˆ­TQW_Y @–$ª lSÔ5;y+3Ënå90 ‰ÐÕóÙ…Qc¦OéK>¦}6³óO #! z†™>¥‡ýY`rQw7ø’Å}ümܯR#+Yä&<­Çx^€×¿ Ç{%H‚ t¾5}ŠNÿíyOÇézàÄäÃHsñ ÷âZN¤µ !ÝýH¹ ºQ/ýÙo…:9×›R¥¯Á K@UÐi3¥ÊîømÌ (»ãçÀÆÏ½?Ÿ]µöX*+3$À´]mæ© FBô 5êòÔÆ `Z÷ÕÆ8~NPw°$ÎB§]›Á¸©‘jŽ¥Ÿ*§»‰#1&lî©7ûÍ@/£ÅL‡²û,3…Éî³80õ ;.>»ÐGÌt(=û?3¦è¸Œ¹åÙGßûèí/Ã<þ®Ëÿzý¿þkõ.zã¦9mŸåŒçò!KA×]Àv†K5ªý¡“‰7Ž’0 =ÅLŸÒWà3cŠèjþÀpúË8.ïÇÈóɯúL¹ Oß/{¨‡½WòÛ‹[ê.d ’ èâ|æv+¡y͉OÇ’¹žQñB‰PÀ/;7}Êže´s³žtPwH‚ ØìÜ vökƒ^FŒ›>¥¯¬ Ô-"¦OÙ=¯™íd7½8ÂAÿËgF­=nÊZò 0MWÛù'ˆ‘=ÛÒ74 @ƹFq㦈œÈ xÚ¦ÏÛL‹7°$ÎÂàY}Á¸3‘d´êîI„òA½óf?Éçä`¼˜éSv+fg¦<Ù­“ДñÙuñ1}Jסg9›2Gõ¶y˜÷|˜|,Ë]úÎM‹Ú>IÛÿåB– ‚ÐõÌ$+#É%`5?u6ùÞÀ’8 ¼õ`¦[é«ð™1EÕÃgü:P®ûñ¥§ËòS}p¤¶Ö¥š×îy/~¯äB– ‚.Χî™ÚÊ÷hÏ“:Îõ` ºÄHƒ¾1zU½qk$Õk¦rº›8ãÀŽàÁ=ug?Ièa´¸éVúÊJ²”*è´¨=Ýj û]rŠ”*äf¿Ë%t¾|vaÔšÓ­¬åžjJûgçžE"ô 7`IßÐ$Y‡I”-b._¹°9ÊèXYÛç¦Ã8JÂ( œÕ,Œ{ @–.« î.A(Ü3pö“}^FŒbDv~ÌÄ ²õãeŠa(`º¬ìý¹ =3¦èý”àš'Ëy쇟Û~ù”Ym×»¬¬ÙxpGBº%H‚ ‹ë‰;¨FÒKÀjŸàÈ\|Kâ¬Ú[ž'e¬ÇgÁÊuÉúcn¤ÿ*šßŸëi5o‰ÔŠÔÞD= ¥ˆb$„ÁÈ‘M&kØÝ ²6.*¨» $AP­£ès.ã`¼ÚÓ®/tbšÊbö…<8êÔ"§]è£öt#k}%À´]m¯öFBôÌñ3·Ê&YÇ”-¢.dù‡²óZ“%SÐ ,‰³0xTGÇœ´öæXW9ÝM‰q0Msƒ{ÌÝ Œ3o‡kMœ¬æöŠkM¸Yù¸S÷'"ÆË†ž¸•©‹Ò3cŠþÄϨñæqgYæÇ÷>óWqô)Ž;§]FÖü>õ©Çz†®Y‚$º¸Þî£ /Õ¨æwOæáPF¡§˜iHÆZÌ,ªÖgfô¨³ŸM‚¤~JÂ(t9Ù·´; @†ÃuPwH‚ ¿Ñc¾çaÄÚ“u®ÛpbÚ‚`µ<8¥Ô§]è#f²Ž±Ô°ÚéÌ7°$ÎBo­Ô­?]0€Œí:-âFÐY‰ú²+Š‚‰é–ÄY<²ƒ v°€,Ÿ« î.A˜À©—¶ÌGѼˆ×ØžÿÒÿAñûdµ÷KTñÛÍÊg—º1îâ2â .UÏ“‹ß‹ý‹²uß~ߢøUœcʳËÛ.+o6.ÂHs²I„®gFï9/«-X\.¾ƒ%qzk$.ë1³¨â×Gf˜Î¾|6 Rû,‰³Ðí\õßšñõæXW9ÝM‰q@þFnùš„ÑjOðQŠí—¸·ì‚çè%øìB#iŒe–jT;¹‘«?Ž’0 =µQ—ÌtÁL²Î.*([ÄžˆlÔ•r¸hýìmLHq”„Q8nŠ‹9äYWAÝ] ‚0qsï>™ot¹A±‰™™B²'f@ YÉö²òÉêÙãÐeqÉL©gÆäKfó÷×8¹ìÃ6}—~~§˜òäò¶ËÊš[ãäòÚ¬EïË…,A]\Ï”ÛI/«ýås¹ø–ÄYè-f¢±O7ÅÎì3€dß?…Éý–ÄYèvn:Š9Ëæ©>·@Ý] ‚@'ã}¬g›O—x9/f ÙW˜˜Ád_ÁËÊÍ…€qè2f4‰±ð°Úî' ,‰³Ð[̸ã£È,êBš®È @ÖÑHe‹¨ßi鎙À±_÷U˜ìb a0ò\wášèê¹KoŽ!¾:§»‰#1ÈÀÌñ0_Zsƒ Z33}ƒ¬‹Į̈ ².îee!€âxÀ8tqqX_k©¦4‹‡öÂQ$BA¯0Ã8ŒàgSy²SÈLÌsxôŸ•²È ( £Ðåd[m'YWAÝ] ‚0Ûr"Ì÷Ü Œ3ج‡Ï̲ îeål eñ€qè2f΃±ò°šîg ,‰³Ð[Ììã£8YÖ(:½´‡½á³«0ÃÜÀ’8 ÝN¦­2'Èò¹ êîI™x¡& ˜oBy9¯¥= ÿ“šê22®¦êeå< …Õ€qè²ö¸já%`µó—î`Iœ…Þš™òGû£È,ê\æ±ÿÇçš æ—;Xg¡Û©â¨9ˆäͱ<®rº›8ã`æžC1ŸOpƒ0Z̲¢º0/þ“U/ëÌÂXV ‡.#Æ7V]ªQí\G&ƒ8JÂ(ôó0>ûqqÏÅ?~ï„ç“6óÜ^È¢pãG–4¹ƒvqU|±shó!ùàù³ÿ1ÆQF›Ìy̽ÑÐK2®ƒº»@ܬ֫!Gaq¸È ü|Õ ÂˆqoÜK.͈¿A˶¿…³‹Ê+óª¼]Uv`à.)˜}vaüÚ¯ÝSi «­3\vºƒ%qz‹{ožÈOÌ»îÏ%¥KŠº%qÖÅUT~1‡œ £-¬ƒº»@a*7^9°ùc'ãż7O–„Wæqw²$ìeåsÔ…Æ]\FüòL†g9y¶óV†vó1/ÓÏ”¨|—³¼¿¹rO¼?>ýîúÈWë+…®e:ö KAèzæùy#ç%`µ¿|2ßÀ’8 ¼µ1ÏÏ“k{ãe´ÆM¿òé^$f²ItquÉ–®y¢ýq½ÏÂÄHƒ¾¡Œ7_ s¬”ÊénâHŒ’¾Y讀`^s÷‚0Z܃ñúÊJ²f*è´¨ý`|ÿ'm"*€dÇÃËÊÛ h{ŒÃ ïÇë«?Õ”æY˜HE!ŠD(è•…(E²ÒÂUú M{¼EÓÑ…,A]ÜEýRßÀ%™Ie‹˜’(¡$öÃö[¯ìmPLâ( £0pd[Hmò'Y»ÔÝ’ E—{ㆬú‡h»+ŽªI È2Je‹ˆ»rd¯kc^Û'›]^V–_hyŒÃ ïÑ[Y!«å~:YÝÀ’8 ¼µ3ïѓ؛Õ^>¯CŸ.˯CíëßÙi.d ’ ÝÅ=og÷x’~ëG+·1Â\|ÃUÍ'³ß ËÉ*¨» $A(© fÝÄÉÁxMklm%µíi€N‹ÚOö÷ÒÜÚg¦lÌ5·¼¬¬vÐá ‡A$^ðo$€˜ÖIG1Œ„0處)¢’ÓÊ*·~j(ÛðúÖË\àA– ‚.î⊨vön?ãïÚ%ÃÜÃHƒ¾á:vƒv‡#ÕÃÅ:§»‰#1ª7Àî5yA­)¢6VV¥k*è´ˆ™p@v¿vfˆÙýò²²®A ,`ñÑ|fßZý©¦´uÄLE1ŠD(èæI}òCz³¬eÒ˜$ý:¾þ]8ʃ,A]ÜÕ.Y²yûÑ|ŸÿÝ5½AÖŽQ$BA¿Ý*õ*KåaÔÝ’ 4íÁ½îo·¼ ŒØÌT&++ÈÒ4”-".kÚm®3 Àîs90pYZ^>»0jíÁÖ’O€iK‡b aÐ3ÖH:µŸÞ?¬¹öï1ÿÄ0Â\|ÃÝô6_úyX/î[ î.A˜™×uˆ¢°“sXóÿi‘m“Y© nam-1.15/ex/tcpsrm.nam.gz0000664000076400007660000010052706610761061014144 0ustar tomhnsnam‹—Óí5tcpsrm.nam­½K¯4In¦¹×¯ˆõ"á÷Kï„–z§†F¥é­ÊÊ*ÖtÝ&«Ô‚ è¿OÄ9á£É×HPêêOáÏ1ÒŒ¤9inü_ç_ÿ×ãùíÍããùã£}<ztçÿxLç?<Úæo~úüèwæñüãã_ÿãOÿûôíûý§_ÿöç_þõ÷ÿöóéÿÒ½ÿ/¿üüëÓ?õ_„_þôï<ýãðþÇ?ÿÛ/þýùéñý¯úåÇ?þöç¿ùŸŸýÕ÷þóWÿô¿üü—¿üîO|üûïþJÇ~þÿþüË_þÛ£ÿ¡}t¯ÿ ¯ÿŒ?´ÿõxþùñþùãù‡Çòÿã ü%ÆþóÿÇüø×Ÿÿúï?ÿüÇÇÿôëŸÍë‘ÿøëïÿÏðC÷~ÿü ü_ùÿðÿ§îúOÃõŸFþOôóaÒ£Žßü÷oþá±¼‡ÿןþ|ú÷áýïÓûß_òÿË?ýý?þÓ¿üêïÿçß~ѽ1ì¿ø¿õÏü_ìfûÅßýí?ÿmñëûïeÁþ½Ížü§¿ÿïÿëô‹ñý‹9ûEÿþŘýâë¯tÛ/~õ÷¿úUq|}ö‹/Æß~~ñÇ÷ ÿüþÙŸÝ8¾WûmûOèý“?<Úî5Ø¿<–¿ùãçß|ëî/ïÿõ«Çÿóo+úéw¿üôûŸßŒo+9~Ù¼Ù ¿ß¿‘_¶ï_¶È/»÷/;ä—ýû—½üËß~ù%̯æ//Oñý?çß½Œ¥iº·FùÝoé¯Ï_¿íýx²5žì›üÚƒôo>qº7§?qÆ3æøû§GþûÓCéOÿþçß\d Ð(‚^"ü;¦ÿ¨âµ@Nÿº öþ×ÿóþ׿ñ—ßýá_~üãÿô×ÿúöMÍëÿüÿþéw|üö—?ýÛŸ}7OËߤ¯ŸþÐ÷íÔgúŸ?ýë/çÏ®mÞSÙ|œùß+òõ¿þãñŸíÛgý×ß<ï€ò›o7˜áÊ‚ wV ) ApÁÆ;«„”ƒ %Á~ÙpãÒô.=µE=m¸ÍŽÿü2€ó×7pùâõÍgOòreÍ¡šÊçÈùÜ.öt»F‹e±7ܨ£ãbW>GÎçv±×ešêÚÏsàßÛô2,à^zÝlBòC4³»yôùÍâúÙq_¥ñ¹—„Åiï§R§²Oö°v}X'¤ÙWLÑ„æ"jŸ#çs»°ãYØJ%iõ?>ra+Ÿ#çs»°ÓºÌ%-ŸçÀ¿—øsîG'®—ÊçÈùÜ6Îiìo9ë‚¢ùíi¿] E¿½ã ý.l>kŸ#çs›Øó:´CÅ:Øž[^{MŸö‹êÚqÆ0Ú†é«úAò>¸K¾®KW¯é¡™fè¹ý~½>¶üõ±}=_~}lhƶíòIyçÏ^ ŸÞ`ø^ÃZxBÈù¬î²>8n¸C°ZHQ0  6Þ!X-¤() öˆÛѧ§¾¨§Îx=é³×GÇsä|n{:‰]¥Å²ØœñvÕw\ìÊçÈùÜ.öÚµuMí÷sµonûÖç^ŠjÞpÇ6Þa…!ù!š{Épí‚ÕBŠ‚aͽÌ}?¸•¤Ñ÷ê}Ϭ«ö9r>· ;œ„­€Ä Æ‹I?pa+Ÿ#çs»°ãк”4mÍßûÞ^ýÐòd?ßo]1ˆ0ö_ø~õk7W=CŽg~Ù}mAkžû(¨»j¤{ùkIîοÿÄ”« êr<óQA׌ß*@Ÿû’©û¡éÇy.z›±; aíÞuãBÈÉÜèW¬½C°ZHQ0  Öß!X-¤() öˆ›—òSbËÇfÙ Çsä|nvYÊ›†*a?+0¬\ØÊçÈùÜ.ìº,% í÷sèßÛô2vÚǃ®b໊þ}òå0‘„üÌD>¸M!ãÔŒ>‹ëKëgÃ]Þdk\IB~ˆæ#3Üx‡`µ¢`Dó‘ã4v¾õÔŸ×Sb8õeÓ4”„ü’¡“’U‚ÕBŠ‚aÍLM³ú ¥/­§©=᪖§€í‘½<7Ü<Ív._íN}³¶EB~ˆ¶Ú3œô]%X-¤(ÑVû¼Ìv.DSbc÷1d VÇsä|nv= [;‰AŒ-ÓÐqa+Ÿ#çs›°Kƒì/:Z:dC¸ÿµM+Ë´.EG2-'Õjgr¢òCÄ,(Ç wV ) †A`ÁÆ;«…à bz÷…[[~öÅõE\ÇÏôEpm3§6ë—çµúpÂ]üwÅ,Æ ä‡(Ë3ǵwV ) †A”åùÚúur†åÛ‡<Õ>F¾ÇNƒ\ó„éGÒe8I:2I‡ï/tžw@ÈÉfðƒÛf°mü‹*å +ÌNl+#ßc» í0ÕÌüþ\ÿý\õ߯É7OýyžÃ]\mÍ AÈ)-À¢`ÂÕBŠ‚aÕ²–©ºëÀ†ëǦüvë[OîâºkÔ‚¢­§ ×Þ!X-¤(ÑÖS?¿¹”Äò‚3óյϑó¹]Øå$lí$±\÷Â…­|ŽœÏí®-´)áJÚ …Ûßû襦žyð‘ÕaU·£1ù!â7h7Ü!X-¤(“¾Åª¬R ƒˆ§Í_¸±{ŸžÚ"®=áªFw=ýÂM}k/ϱÑÕ‚¢­§ '©½J°ZHQ0  &-€*Áj!EÁ0ˆf(ÓÜÛ†RÄ eš‡Åçx˸¥·íÎÝ6‹óº«½Õg1!?D[žNœÅÁj!EÁ0,˜¸j«…à šÝ-C Ø] W4”eèl»ÃÍx[ÀîÌÑm³¸N3°Ú;}CòC´å™áÄY¬¬R ƒÀ‚‰  F°ZHQ0 ¢Ø]ß4+`w%\ÉPú¦m»CÍø…[»3G÷™Å¾íyJ­„Óë1ù!ÊòÌqâ,ÖV ) †A`ÁÄP#X-¤(Ñì®gÀîJ¸¢¡´óØlÆí2vgŽn›Å¾Òã ÏbB~ˆ¶<3œ8‹5‚ÕBŠ‚aX0qÔV ) †A4»ë RÄ ¥&Àî`3îG ¯bn›ÅaF²<»Ëf1!?D[žNœÅÁj!EÁ0,˜¸j«…à šÝ½^ »+ኆ2¶@^7ã±Cò*æè¶Yœz$›1鳂¢-Ï 'Îb`µ¢`L\5‚ÕBŠ‚aÍî¦É«”pEC™$¯›ñ´"ystÛ,. ’ÍÐ. ŠBÈÑ–g†g±F°ZHQ0  &.€Áj!EÁ0ˆfwË€äUÌûŠv܈äU`3^F$¯‚ݦô­3’ÍXôY AÈÑ–g†g±F°ZHQ0  &.€Áj!EÁ0ˆbwCÓ"y•®d(/’WAÍxh:$¯bŽî3‹C; Ù ý¸B B~ˆ²· ÛŸ„­€Ä Æ”sÏ…­|ŽœÏíÂß]uª•ôéÆƒþ½M/ïF¶Ò«¾1ù!ZÊp¢·®¬R ƒÀ‚‰®¤F°ZHQ0 ¢Å×~ò§E\ÑGn÷ùÖï×?µG·Íâ°YËY¯úÆ ä‡hË3ɳX#X-¤(@`µ¢`D³»±ò§E\ÑPÆÈŸâf<@þÔÝ6‹ró¬W}còC´å9!×8W V ) †A`ÁÄP#X-¤(ÑìnF.”.⊆27@þ7㹟ÚÝ6‹ r+ô¬W}còC´å¹ ·BW V ) †A`ÁÄP#X-¤(ÑìnAî§.⊆² ÷Sãf¼ ÷SÛ£ÛfqEn…žõªo B~ˆ¶Ûé/KìM[ÚáÞ¸^ÂñcýcØ—XB~H¶Ä>¸MMÝ÷ÖÓú3-å4]醖" r3J:*I%®ó ©j%©0†:ós7ûp} 7t¬à•´áº7®q*=!?D[L®½C°ZHQ0 ¢­§a˜;·²ƒ4û**ÞÚº~U§·[iÏ‘ó¹]Øñ$lí$1®¨]W.låsä|nvš—’–ïçп·éeéÞÿd¬¤¶i˜v»×¦äd#1 (™•|xEÙ¤…S'[5¥(He“6u²USв”’lÛZ^Æïý¤o5%F1,©mZfòÕ’÷Á]àé$põKŒb¸€¶é¸Àµ’÷Ác¨ï» 3ü®±½n¿ã¥¾zCrPº}õvïÕ;”§áÄko‘­šR”Í TËÖß"[5¥(›AÑdÛpn‘íIÁza3‰“Åüó·ÞÚÉûà.ðÚ"{›Ãì…\¦VhkÕ6#×Tíƒä}pxmæÕ¥âµû~°ö/¾”7 ÎXÜ”½óÔ<–µÏR(@QöP9Oz+¯“­šR” ¤({¨¶™æòž¬`jýÎëß¼±¨«ï¢ûϤƒDµœ7Þ"[5¥(›A¢ZÛÌvöp;n±sEgR[¥;¯=ñ í!«¾ïx™ùÃëºo`÷ Ôêq y0Ã.Þðo*dÚsàpxõ˜¢x¦Z¼ññê1Eñ,Œ&Þ¶Øû©›`};p|ç"p>­jÀm†f˜€ ÄSw̱Æ(ä  Ac˜Û¯éõÿjpxŒ™l! (ÙæáÃÛÂØu£“ןy‰ñÔz…©«…”’®Š²É¶F¶jJQ6¢®ƒžŸn :„ xyU®óÈA y0HÀÉ€í=âÕcŠâY$àŒãÉ…Ö«=1Lc½Û²ZLýƒä}p—xê;§AõEƒšN¬ŸÙÄ0Vv m¸k$ğNèõªÿ\©Rý§f,g@ yØxÆ;቉QÈAA61O~_ª‘­šR”Í  o¾ÓÀOˆúÖÁλÌŒñÎGBêö!Å=ÖwñÍUÛ„ümƒuÆÉµ± Áª!%Á@ˆ¶»š‡9 íÄ(–ƒmY™³þAò>¸ <ÎYHŒb†Ž \û yÜž(øíšÚe\: †µFF2F!ñËó²`ks]¾7cÈ@À¾ñôa)9F! ìO VU²USвP¶µ9óMt;èoYA y0ÈKd”ÓzUâÕcŠâY˜jñä$c•xõ˜¢xxG×ísRoœaýIÞ®éù§ÝÁö§ZrD]3NžD•;®ƒª@ÔëÚuÄÝ2ÝçÆnd€@4ÜyÆÂ5£ƒDŒœ'¯ùÙª)EÙ $ÛÜÈÂÒsŽQ y0@¸ÈŠÿ«¯SÏÂT‹§xÏñê1Eñ,  »(ïÛ>jÃõ PݯÀµcyÓ]ñÉ}wZúCbaßÏÌœ ßéµ­v¯p˜BŠøÉ5ç ·ÈVM)ÊR`Ù¤Iëd«¦e)âåoÞÌæ•>íúemã+ò†eÄCb„ÃÚA@í–á8†<$e@Å ÖˆW)ŠgaªÅS|rxõ˜¢xoløj/Zvo˜BŠæEÇKµ+,[5¥(He“½^lÕ”¢l E‹c?@ûªÝWà hY œ‘†ÝûÅ[&çÞèz/Ê›7"9÷®Ñ_XcrPLÈ8ÎH¼Ç.±~ñ¦Ë+g‰×µº%Å( h^bº¼o†e«¦e)°lâ:¨’­šR” ¤hpn¶‚knGÀaXtXs;! v€s7F]1¾OÛÄé ÙÍùÒÆÆãPcrP `ÆÓ"U²USв$XÌ«p«\oi„ —s]-C‹8üNwb1 (šƒÎx²Ï©‘­šR” ¤À²ÉþªF¶jJQ6¢Ÿeé‘XQâ}ñ² @¬À}û²öH¬0Ç·Íå:bl»^ŸÌ †<ä ?ÊoSUâÕcŠâY˜jñäw»*ñê1Eñ, Pé›fBÎO|`ß´rb¡8vˆy£î¢oç7 ÿ: çfÒòu) (q(çɾºF¶jJQ6Ë&ûùÙª)EÙ@Šc‡±iV§®JF3Œm³:ÇWäMs3:×i)ÆŽ]3Ú†¶?ûÏeBвNsž<—5²USвX6y]ÕÈVM)ÊR»ßmóJ63vã‰W7¾¢Íôs¬SýhGBж®2ž¬ûÙª)EÙ@ ,›¼jd«¦e)šÍ íˆØL‰W´™¡®¸ŒëFÄÍámSù²ìõsA (Ú2ÍxòTÖÈVM)ÊR`ÙäuP#[5¥(HÑLp\zÄÑó./²Óƒ-úµQFL-eŽs³"Ë^?~¤P€¢-ÓŒ'OelÕ”¢l –M^5²USвÍç‘÷Ä€yE›™O]*ë<{7ñξámS¹Ì3²ìõ³&A (Ú2ÍxòTÖÈVM)ÊR`ÙäuP#[5¥(HÑLpmWÄÑô¸v­Ó³ ¸1AôÊÔ HÎâýå«2•A (Ê2ÍyâTVÉVM)ÊR`ÙÄuP%[5¥(HQLpj$Rä•læÅ[ž½Œ[‘tŒ=¼m*»Iôúy£ …m™f¸ ÜcWZîn2Î-’ûêõb|BŠæŸ2žlÃ5²USвX6Ùbjd«¦e)šïG$Wä½Á<y8Û¹¤÷å[ZoÔ AèÈ¡$­X¡í•_IY3ªÄ(­åÐ&æ{«$ÀËçz-øÁMÆe’žzE9H¡EóOO¶áÙª)EÙ@ ,›l15²USвÍ÷¾Œñ½hÝð۸sY{(‹ž˜›Jzêå …e™æ1ŠuÞgX¹Àµ’÷ÁCàÓ W;‘Ä(ÖŸ›‹À•’÷Á]à®ë|¶Ð}7]¬_SÃ÷_¬Ÿ›áû/VË8.]Æâ~÷{ýÛï¥éÝxÇîڳψQÈAAâUÆo‘­šR”Í  ñj\-Ù„/ƒмÙCª‡`k`Ô^!X5¤$˜AÀÔ }‰*ÁÁz¤T®¨× …¼ãë…–+ο´¼ÈR¼vÔ‹wQ y0Ã.Þð¯t‹qî¯SÏÂT‹7Þ#^=¦(ž…ÑÄÛû2ά¯qŽo`éNåe™N@k„p›€µç’2°Ó' ˆ!Y_P™€ñê1Eñ,LµxÊr¨¯SÏ æ³Î#d>j>ë2Bæƒצã§lbö¸¾ÞŠÏÄ áÈËgùF'H!ØÃ­ÍôýÁãu .[ˆB $Û²ùB(åûGýS¾ …¥*•óÄÊM•lÕ”¢l –M,ûTÉVM)ÊR”ŠÛÚömëÔU©¤µ¶Ã‰W7>7®p´G¼q×/Óßþ xµØpú›”åŠCª‡ ΪCzUÕV ) f@ ÁF¤•ø¨ß°¤P€¢yªŒ'[slÕ”¢l –Mö,5²USвÍ wS?£; È+M§³G²30vQ1 9(ýžy²?¨‘­šR”Í ‰¾µ›‡uâ@"m}·wC}'Ä[Wd·PZ÷ÅèþîPåÜ… <áå¹ÒŽÞŠìfpy/WøÅì|è¦ç£þzBŠæï3ž¼Öjd«¦e)°lòºª‘­šR” ¤h±l˜öæE^Ñf† ioŽÛà0#-Àíñms9¶3ô†¢¢Å¤s ’_«¯SÏÂT‹§dûjÄ«Çų0@vtǵ¼ù*‘×çqZË;žZà>+Òµ~Ô¿.R(@ÑÜüxi –­šR” ¤À²Én´F¶jJQ6¢É6õm8ѩх bȃA|^”B•xõ˜¢x¦Z<ÙEU‰W)Šga—>õ¼ 2¼Ø‹û¡©Ÿý¼_›ÞÅ88¾ÓGÖò@"Ø´ôð| ¼ùõR ︈8O-…&ý¸CBŠæY3ž¸x«d«¦e)°l⯒­šR” ¤h/uKÓN§È+õÒ ˆÓÄÒö€Ó©ßå§—ØÇÚ!õÖ©ÓGŒBжð3ž¼8jd«¦e)°lòª‘­šR” ¤hF½ÎHí·È+Í+Fá˪£6Ç÷5—_škö‘ýõ§?å]›æŒúJ„·oTûFµoÔò…jÍg:ëAÛãä~üùú6Å ?4M·¸‘rF·Wœ*Ïc|4²K³"…Ô‰—sÎf¦P€"º ΓʹF¶jJQ6Ë&›xlÕ”¢l Et¯/^Û#Ų"ïêß¼)–îú‹‡·ìñmsÙMHhÒŽI…) hë4ãÉsY#[5¥(He“×AlÕ”¢l E³ÁîõbàQ‰A…;beBAÛ?ô R¢+j¹èIú)Ñáž®o‘]ÅøºÕ¯ûÄ Ã¾”~üé¿!Ã1ik € ‚Ïÿ§ˆãGbˆcÊëµáGPÁöŽ=ß®}^õßßðýôEzC´Z|B~ÈgÙw%ÇÞó½ZT°jHI0‚ 6Þ!X5¤$) ¶æði åPT_äuC¹Z[ÉÛ?ôHtÒŠåa (Ú6(ãÉA±F¶jJQ6Ë&ÔÙª)EÙ@жÅf¤Vä7 ÃŒÔÃðÍǰ õ0||ãÌïÊ«ÞâkWܸ‚·ñɧ­×0îÛÔŒó2:£gÑwŽk×:•”¢1u«˜vl'ûsá6!lÓbæF­{t‡hSÓÔã6!L´©Ajž³VÇ S(@ÑAÆe•lÕ”¢l –Mt´U²USв-ÈM´´Ë¦ŸÄJ†!Ï; „0—?u‹ßk$1Æb@úïË¡Ž7êRð™;¶jú׳g݆( d/%Þ®å©ý×rq3 HíßM#Rû¯ßüýÙ·CýY‰ñô‰¹6B PJk£(›ø‚Y%[5¥(H)ÉvŒŠ*ìÙ“8!ÌÓÍ¿y8¶&ç 92÷z¬ŒQ(@ÑöOöW5²USвX6Ù×ÕÈVM)ÊR´=ÎÒ"ÇQм¢_Zä8 –9ŽR1>Ì5è{º b•6Ô=]BAótËŒ$ÁqO·ñŽ×xO„ŠQ(@Ñ¢oÆko‘­šR” ¤h»ÎO—9ŸÂSiöµT¾yuþªLn÷Ù:ž#çs›°k³øg åÖúã#¶ö9r>· Û.³OKO8æQkŸ3Oëeî2€ ‚¹Êµ›³sú›ë1”Z†<ï€PÂÒw륊Z ÓFu0F¡EÛþ­—BjX¶jJQ6Ë&o¯jd«¦e)ÚÖví¿]^½¯ü4Øq¸šÄj½Èpx~…Üá̓ßÍ$ÑUº¨îΠâ¢ä„iq™ßHÖ9aŠ¿á¬ rÂ_۴ߥT‡ÞCèëP›ý‚Bˆ<еoJþK—ÉÌüÛéóEHa 9(Ý>Ó]ù’§/r~wiÔ`¤P€¢ºœ'Zm•lÕ”¢l –M´ø*Ùª)EÙ@ŠÄÛv@NÍyEoÖÈ©YÜ;¶#rj¶b|S¿:£~bˆã-¾vïáAdMλçxò¨Û¶Ëww‡P‰!½p¹´âé‰þÑŸtäÁm BxT1(ÚðN¢­¼Ï€Û „°‰ïZ STsb㥽 yÞ¡ 䢕¹sn‡Cè¥nʈÌMdÛ3ßx¸^ºÆ¿rƒXsT„ì#éçÑ©ÞÄ–0½hÕãc<Í–·A(a Å ¢hÓc:‰öiÓ\…Û „pÑÆ¸Vváßd±7„nG÷¤ „Õ„)¦¸pRåXtÈŒ?_´ëˆÃ P´]|w)å…e«¦e)°lò.¹F¶jJQ6¢½¡¼x~ß“IJŽ"dIß ­ ¿óý.Y_¾èöÄ;V'×£ƒ‚ä:2žx)p•lÕ”¢l“íûÔˆ@<¾†ùMi‘O<ŠvR|³í[äûMy×}»b¤8KЦûcTëìs„°¸ÝwÈG038 mÿ²óF¤ƒ¡ÍÛu?ó¶HŽ] òÑý6–¡›¿ ’ƒ¢­ÎM㸠S_¦7ˆQÒ_¦C B˜ r6·“±íý²%QË. Ìt@PÁô;^|¬ã¥|ƒXJ-Bžw@(¹h…;y9ò »µ§{g))¢O¶Þ^crPØŸŒj [æv‡ÇxvÞ1 9(Eçýáí3ÝñÏ'냨Ëeå»ÅlõBð•yaq$Ã6ˆ¥Ô"äy„‚‹Vf 1÷ý‡lõ6ž„—Ë"EŽåy …$öâ±;ªŠWI¯žqbȃvñ†r·ªÇUÄŒ÷h©SÔ’…Ñ´´«€|•¹4+(È[È‹7æŽ<hMßm /¡1ûfí0¢P€’}×ÄÃô|ùQ‰!Ô­¤ý !x8zYº *†£vã]Ü´5+RD;3·‰! 9(Ú6ñÕ)#X­!rP ÍëÌ=›g³ö覥oÕü !¸]Ì‚K­Ü¦¼©¼M+¹èqŽå®7_@áæC÷×òÞÎMäÆlÏrð†²§²ã@_ò1ïbAU1.F¡¥㊲ ·ÈVM)ÊR´ø=®ètxˆÄzäTýTA!K¨ÌÝØW3[ýòð(†<d#š·Y#^=¦(ž…©Oqº5âÕcŠâYM¼ÝTþq‹Ïeï¼q2 F¯Ž|_É—ÆU©'dÇœ³*‰k4l£2_º=+“ÅíÏNÅ¡£ÄÍ>QÅÍäZúhäûDïü˜O*÷à6!Üß‚˜Ymy,geóO†œ³·ëjêÇ·Š‚¶4—Ãç-1ˆ‘E.Cžw@(¹håÔ ¡®“B7Qµ ä@d~,+ ùÆÃõÒvþ•›Äš#Ò}—cäDø5Ûl÷£ƒ¢½ç²-ìÊ’bHN©îsÕΫÔ-ÀÄútwïÿ.8Òõ±žµíÀm BXŒ@1­(ZÛ¼~{®Ÿë†‚.Þç. }“ÿõÝ”¶i bȃAöäPÜPÕ‰W)ŠgaªÅwuâÕcŠâYä•céyCg+1àáê\u± †<l9œ€í=âÕcŠâY¤ì·Œ3rz^ß{!|ƒ3bî·¢RÕX,ÈÔöˆÏä™=®Ü†<hMO¼I[\¼zLQ< S-žâ3kÄ«Çų0ŸN7ÙÔ{ÊÄ0‡µoüꚯëqcýƒä}ð˜×òª+ÒBÝëi"{#ÌjÓ¾ñp‡9j’gÇà¬Mo¼Ëʪª*Ç(ä @ïug^{‹lÕ”¢lE“íXcäõ'1Œ:Ì>šùäŸê·:‰aZË[ŒÜ?Õ>HÞ‰¿“*H²Ã¹+|(3R¤Èõe+K¢ƒ¢­øcTü>ߨp d‡çÛ ­wQ¤Ô°,ü>4b¾Þá.1„åTäEÛ>Úóœy€†‚ž¤1r¢ímwž«¡¼-«:صQÌ_øŒ¯§µg% Bɲ¶õ :ÔBA ßê¬C9¨Ôi÷C1=üÊcJíƒÿ‹ÐMíÇB Š×æÛÙT‡¿µá)o8ˆÛ[›µ+úeçI¦w1ͪÓ>1 (ÚI¦Œ×Þ"[5¥(H)ɶêû#›c?ZSŠ!?$«ì¼p‘(–ÆÚk ˜c4p ÓÞy<Þ©ÌiÊÇ"—(e'/„ŵìonõƒqBßW©ãˆ,‘óç¢1ª"}bk–Ì>š¯ã‰_Ÿ\àP{<¸®~ÇžÅwÛ°H_ý yÜîÛ# Cø Œ5Ó*%ÜþÑžŽ¹€†‚öv€b:Y¼áÑžn¸¼öÙžB[ûÓ¢­ŽØ‰Q,›i{¾hk¤ð_Æú)9&‚‚î3GÌKí¶·k|ì{!|5ßÑŠA y0Hí%ÊïUâÕcŠâY˜jñäýQ•xõ˜¢x)-­f‚N cì$Ì®¥‰Årêñb¸ÅÏ ô&¿;®ãÁ>â¸ÃXJ0ûhÖÉQ~¯ ½vÝ#’x²Ï Øu-2_zžÐɧýµm çt_@ì°„vèw‡³Xè7¡ „«YJÅ;sH/àPÎ!U¾ïÊš±wP=êÆ0uµÍèŸºÄ Ã>–ëk@׎Ú („àúàIžúSÍÝ¥¹oãyƒbŒ‹FøBƒó^ý9ï•ï7 d\‘2ÖRž·P(@)eQ•?ç­T5DÓå4»ç­ÚákòûêP‡³H9AËàYËM kbD.î3üÕhޘ׵<äÞÊM ᪠äûgÓSí¼i\­¾Ã}_$ât±’¦”O ¢/!ò¼BAH~ t×.Ð~ÝÈï¸1|Q®ß_l9l#1„î(tõ#(„`Úxϱ{$ÑUÊ]^¶^ !¸>ÀwK!3‘ÆR«€yÞƒ¡ †ëæÓäÏ1G‰!ô5«¯?‚B®¹‰ÌMb]©ü›s¾N" A.ZÁÞ‚õ"úޱ”+`ž÷`(ˆaºéÛï<£k–ƒèk×X/!… \'Ò$À\/FW-ÿ*—­–„B‹V°}¤^·ß1–rÌó 1\7Ã8oõ]sChUrãeÓÈÎzdï¾ñp½L=°ýVob]¹–E ‚\t² ΉN Ñè5ž®)Lõç¼ÀøhdzvÀCAL~Æ´²xÓ£NâÍS=ðÀPÃÀŒ½ÞXŽt^-ºËû+s£… \+à›ôe޲bðŽ1”kƒ£ b¸nVlá æ™ÆP±„yÞƒ¡ †éfhìkwÔɆÐ=²š:q ²Ð›%Q|ã¹èeˆø¼Ä0Ö, ˜}4-ðš.ù™Ä êT[/¡„ÏPw:”]·ìCX“ÜË‘r~´§-¤ x`(ˆaS:¾üoy´g3í ³Ç9ðÀPÃ@ek¬·atÛâJðB A.Z²5Ʀc)WÀ<ïÁPêÃz·6²^ Ÿ©3ÁY¤Êј}4ã±íÄ0ÖhÌ1¤¢æ¥7„Ô¼´‘mK² µo<|ÍÌ@¾Qò3‰Aôðky¼„B‹NVóâYk­|ÖâW>Ÿ^íyåx€†‚¾1òçӯ׈®9©|R¼fY€ÄjwÉY³PÂÃË2׫ùP.1|Ò׎]-œ©ì:ãôÖØ mÍ­ÃL}l0Õf•Æ€ÙGói¹ç*¹$ѽ—Qüq@²@ÅÊ@¾1ñ¹jLj5$†±æJÀì£é€Tºä%ƒèáÊðW!… |†úÎüÕ^¿ˆ1Íïï-¤ØÒ¾þÊI?à¡ †yQÓÊâ½<ê)2M=ðÀPÃBÖ8bYDãÞ‹á r„¦>1Œ1 sŒ†MtTß6ˆncFõÍÉÝ{^‡óé2WKd'†±æJÀì£Y¦Î­æÄ –Hlëýëÿ|š7ðÀPÃ]ˆ‘³/ûíΑlꆂæÊ^F_¾ Úï’ƒÒ}(JOÌnj›ÈV“‚f´S‹©ZX‰a,£0Çh€$UÕØ ªå[U $w°y}Ã7&>W¿N®ÊºÃXs%`öÑô@’Åœ«ÊCôrA¢Ý©–ê b˜ƒE1¥#Dñ¦Gw:x1 ÐënÏd 1|A‚‰f¾­beô c䎬2zCA >¯¹¼¥RÃgjÂ&\0‹Ä0–ë0ûhf Mbå¬7ˆîŒœµ’»ù<{ퟫJ“H6žÆš+³fRæ\­Ø;³œM-ðîTVw 1Ü̓%›¾<ºå¬ô9âÊè)®þ’Îan5¡„¹Ô¹Á’—ú­\ b˜™Î`›¿§²ó@óåöÍ*Ìó 1|¦Ú¹G|_¿,cçÅð™ê° œEbk4æ D²òÎD÷ÊFÞÙɃ_žöé2WXI°ñÄ0Ö\ ˜}4ý÷™}—ïK ¢N¸å…C Aø @bÍ\¿–y*e0?s}t§òº x`(ˆá:‘K@ìØðÁ¨Ëo¸lXdˆ@(¹h« Ç›6Œ¥\ó¼CA ˜3”γŠ@^ Ÿ©Ë ֔ƀÙG³~ßv­àÄ ªï3m)¡„ÍÐÒ ‘Õ›FWíÅMå–‚PrÑ –2Ž,nK¹æy†‚®›KÁ@®cô{£?nTcwAm¼cX5Õ•"e¬¥Á¾ƒè*6?ßx„ ‚p·V¿õ[jvŒ¥\ó¼CA Û½"&’X³Èx1ܹŽ]ù•Äb˜g C ä}Î@ÅÕˆW)ŠgaªÅSÜYxõ˜¢xr®ãÙ‡$†±ÞÌ>šétoƒø¶`œïØ ú†Ï8ßá€äo ùIߘ¸ËŸ›Þ8ŒûäïQÍÅÉŸR¥Íƒè›t+®F ‚p%/'%[ÛHÉ ÐüÎ\Óˆe¦ò}-ýôèÏÛ<0Ä\”ŽÕ­ÍÌT妯ØÊD ‚p­€‡Gô{³vŒ¥\ó¼CAÌE7ßW›@q^3ÓM¼¾œÖ5/†‰×7'ñ¬8x¡¾Y#öžÆŠófM‹T032Dw¬Æ$óùiߘøäw@Sò@‰AT[¾0¡„ë¤G*WÖŠé¡ Ñ{++EÑùÑŸ|¢ x`(ˆ¹è«\ñbÃèËïR¶Î£EB!× xD¿ÑpÇXÊ0Ï{0İDI?BI$딘Ãgj‚*W’5%†1F#aŽÑ•+ëÉQÝ–uŽÄÉcT~¢Ä7¦Ë\­]®X媟ʕä/ƒè‘Æò\… \Ç P¹2WàUˆ&å´ÆòèÏÌ<0Äp­XqÀòî+’Ÿ.æÛ# A.ZÁŠúý‘;ÆR®€yÞƒ¡ †Å¼kÜc6òbØL -”•¬)1ŒóÌ>šÈ¿Zç6ˆî¶ŒóHóò“¾1ñ¹êt©d߉AôÈ`xš„B®“¡™Šûoºt€t©¹(-9)Ç5ÖGra.à¡ æ¢t,]j¸÷ £¯çËÛbîÜC A¸VÀr­p /1Œ¡\ ó¼CA zØåˆÖq#/†ÏÔÄÓÁìæ0AÙMÉ<ÃXQTÀ죙ì¦UVÛ º4ÊjHEó›oL|ò$»)8ŒÄ zì²\WB!×É d7ͳbYD¹ Òë¯ gæ b.:‚²›¦{_‘œâ¥ÊÜ{B!ÓÊÖ›ŒÛK6Œ¥\ó¼CA z#v{¨UãöbøLuXvS°¦Ä0VŒ0Çh€ì¦UcÚ ªÛ²jLH£òj“oL|®z$)Øwb]ņ§ A(á:€l¤¹b,ë'ŸcÚÇp¶qðÀPÃu4BÙHÓ@pæªæ¾8¡ä¢ìÃ&ãö’ c)WÀ<ïÁPÃcv—©UAöbøLÍX6R°¦Ä0ÖhÌ>šÈFZ5¡ ¢»-£&ä€ä1*¯ùÆÄçj²‘’}'QUlzš„B¦“©’‡ÖŠÙ †Ì­£ºÇpò8.à¡ æ¢#(yhyã £/?®jæ‹C A¸VÀrÎÅç7|L—¦LU˜ç= bXŒš°»L­Š¯Ãgªƒr}’5%†1F#aöÑô@®Ïª mÝm5!$QyuÈ7&>Wë“ì;1ˆ,OPÂu2¹>sÅŒPNm–Ou ýc8{ðÀPsÑ”ë3½ñdØæKÂùâ„B®°ú"œ\H c)WÀ<ïÁPÃcv—©U õbøL-P®O²¦Ä0VŒ0Çh\ŸQqÙ ºÛ2*.H£òÚ‹oL|®V ×'Ùwb=2Xž&¡„édn\Ÿ±b6ˆeò!Œ×d8yðÀPÃu„ul³¼ñŒôI›/ Ã܇ ‚\´‚KŒï‰g¬Gš„yÞƒ¡ †Å¨»ïÓª§z1|¦z(×'YSb+F ˜}4’ë3*.Dw[FÅÅÉb«½øÆÄç é'Ùwb=2Xž&¡„ëdBr}ÖŠ™°œšrfb| gã b.:‚r}¦7Fº¶ÍU3_Pµ‚K¬oag¬c›„yÞƒ¡ †Ç(ìžG«žêÅð™Z°\Ÿ`M‰a¬%`öѬ@®Ïª¸lÕmY$QyíÅ7&6W Ò?N²ïÄ ºŠ O‚PÂuÒ¹>kÅlË”3Óc8yðÀPsÑ–ë3¼ñ‚tm[.ªÎ}qB!× X,iËçÃÊ•0Ï{0ݵ`WßYõT/†ÏÔ€åúkJ cFÀ£r}VÅeƒèn˨¸8 yŒÊk/¾1ñ¹BúÇIöDU±éi" A¸N& ×g®˜ Ê©-­£æÇpö8à¡ †ëëgzc¤kÛrQ5óÅ… ­`Åá\@bK¹æy†‚£°»»¬zªÃgj…r}’5%†1F#a¶Ñ¬ ë³*.Dw[FÅÅÉcT^{ñ‰ÍÕŠô“ì;1ˆ O‚PÂuÒ¹>sÅtPNmQÎL,áäq\ÀCAÌEGP®ÏòÆ+ÒÙl¹¨:÷Å!… \+`±Äø2tźšI˜ç= bXŒZ±›±¬zªÃgj€r}’5%†±b”€ÙGƒôX³*.+ÒÏ̪¸8 yŒÊk/¾1ñ¹Bz¬IöD –§‰@(á:Azk™+ëaµ(g&ÖÇpö8à¡ æ¢#(×gzc¤£ÕrQ5óÅ… \+`±Äø2tźYI˜ç= bxŒÂn²²ê©^L>SCƒõÖ’¬)1Œ£Ì1$×§W\vˆî¶ôŠ‹’Ǩ¬öâŸ+¤–d߉AôÈ {š„B®¤–¹b°žS‹|fblcsÒx`(ˆá:ÂÚ ÞxÇèË«:÷Å1… ­`¹>ýËÐc)WÀ<ïÁP“Ǩ¡Á.ž2ê©n Ÿ)¬£‹dM‰a¬%`öÑ ]ŒŠËQÝ–Qqñ@ò•Õ^œcâs…4`‘ì;1ˆ®bËÓD ‚p ýR̃õ%Yä3cûÏ6î b.:Âr}–7Fº”¬\ÕÜG ‚p­€Å’¶|. 1Œ¡\ ó¼CA ‹Q-vO”QOucØLµX7ÉšÃX£0ûhn$FÅe‡ènK¯¸x yŒÊj/Î1ñ¹Bº‘HöDU±åiB A¸Nn$æŠÁº~¬­£ºÇxò8.à¡ &o{ùœ6_:*uX¿”Ô¼)Í¥{t?œçHÞ\¾QQÝ!ú¶D¯¨z ù4«­:ÇÄç<­U6v<$ןDß2ZA(¡„+i+d.5¬}ÏZ:—ðÙ¼öñŒ<ÀCA ×ÖVÈ ÔH3ŸõRI`a:¡䢕o3¬÷n`ùUÿÖ|ÇX³"`ž÷`(ˆa™™»yÎ8¡áư)î°~D’&†±¶f ÒȪávH陼ë€äQ1¯æúÆÄç éG$9†Ä zH1\TB!× Ò>È\1X›žµt á܆Çxò8.à¡ æ¢#¨z`yãiÚ³^J¹/A(áZ˯ú·æ;ÆR®€yÞƒ¡ †Ç(ìæ9넆Ãg ëö#YSb+F ˜}4H·«†Û!u¬®’Å(VÍõ‰ÏÒíG²ïÄ zd°Æ³Çñ 1aùcË=vú¦5|qB!ÓJ•_oÍwŒ¥\ó¼CA ‹Q=vóœuBËá3uû­)1Œ>sŒÈ.Z5Üé¬cÕp¤‘U@ê‘~?VÉÉ#g^Jò‰ÏЃHô:‰Aôxeù¿„B¦“éAd­˜êõÓ7¥2ì'rÎñä]ÀCAÌEGPÒŠÐù§o.iÌSP'#ÑšÃX‘NÀ£Aò˜F5i@ºYÕ$$ty]É7&>W@'#ѾƒèñÅò4… L'#ÒÉÈZ1#Ô1¨o”¯I×Çxò8.à¡ †ëëddyãèÔ·î‹C A.ZÁò˜Æwô#Ö;HÂ<ïÁPÃbÔØ#©>³VìÅð™‚:‰Ö”Æ€ÙGt22«I#Ð5Ȭ&9 yŒÊëJ¾1ñ¹:‰öDU±éi" A¸N€NFöŠ:õmiº¿cÔÔ<¦³Çñ 1aCËýƒúöR`¾8¡„këdd}G?b½ƒ$Ìó 1Ýðà"WÉú½JÖ¿íaR}{© å19¡䪕õëZ<Þy];¡Ñ ãa¥AîRÙðƘ| ó¼CA {ߟz$™lžðbøJ‚:n‰ÖžÆŠ¡æ“6ë‹ÐÝʬ/: y Í+¾1ñ¹:n‰þ'1ˆ¹,OPÂutܲW ÔÙê+Á&ÅÐî1=Žx`(ˆá:š»ˆÿK £/¿Ë¡æ‹# A.ZÁŠzÆ×ÙÆR®€yÞƒ¡ †Ç¨xßÏ4ƒ‚¼}NŸ#…ÎÂ'1|ý@}ÀDO cEN³fú€™õÊè¹eÖ+Wñ•ü|b}‡`Dœ„B®“~œÜ“Ä2¹-Ç4?¦Säq 1!_3*o}ù]Ždä19¡äªû‹ AÐè…ñ°’žq‡À†±&_À<ïÁPÃÞ÷×1Pz¥z×Ç© Xç¼¾º§>âÃXq]À£9í¯­&Ñ]½Q«t@ò¸žW-}câs5#yrÁ'&Ñ£©å# A¸N–euOvbËäŽ$Óò˜Î^Ð<0Äp­}Ä''†Ñ—ßå ‹… ­ uFëZƒÅR­@yÞB¡%™cÓö] äIAL>K/ ïMXeI‰a¬Ñ˜}4Ýé.—Úú`bÕe•J$OYÍÒ9&>Wýà6í”3të>&Ä ƒëcè:÷D'1  o䨴>¦õ¤ðÀPsÑšt/¼QÔ•×_ùàƒ"Œü¼è‹Á÷ÀŸ÷®û~áè¾1{kiýg7Ã3ì¯?Ã{ùMg`Q¼áñê1Eñ,Lµxã=âÕcŠâYM¼Ý\ÁÊ7_ãù ;Æ0{ ó¼CA ß8}N¦:ëðÄpÇ:77ŸÆ„9F$ìòùÑã©^>÷@òSVHwމÏÕò}oœ+ö$QUlÁ„B®“µ`Ï<î®k|ÏÔ\t]+P0—à eÚûÒúùÞÍÍc>»0ðÀPÔþúuÄ¡&†Ñ×󥯗;÷„B«VÊ{ïRlÁš,Ÿ­üŠ…cÍ–€yÞƒ¡ †EѶ…òÚÆñ7†O}¥Ç%óL cEQsŒH…Ý¢ûA½°ëäQ4+ñ:ÇÄçjhì{t$‡‘D]–ëŠ@(¹èH›+f€Òн|ÆÜ>æ³{€†‚®£J›Þx’Òý¥Æ|qB!ÈE+Ðg8ú]ÅR­@yÞB¡åªXär°V¾OŒ§/jÔEŠx¨ÀøÈ8H!¥S æ'ÙXÒ½¼ýšõ”JC ’1ʀʋŽ0®"FÙ¤ZZ‚òE–Žpˆ¦¡cLöÕvöªÄ!Ú¢<© Ìy0®f¬ì¦Ÿ(sc¸³œ¡êèÃXÛg³fAªwúù‰¢ï¨ôóH¾}ÎNR8ÇÄçjµ«wÒÎ#å }Ëjm Š0˜>º©Þ«eƒX Ÿ,™»Ç|Ú ¹€†‚˜‹Ž ³±IüPô•Ç+€l‹aP„qÕHÙ¡WnÞ‚ïÜS×c³wxm[Þëù‡ãf™c­Ló¼CA KuVÒO•¹1|¥÷XIðD‰a¬Ø.`ŽÑœ¾³c»qø¤;÷¨]¾qúÄÉc{~Å7&>WR`Ücb=ªZ~:¡„ëdœì¯WÍóFðFJñ½Ìgã b¸Ž¦S€W^váÊG7µ‡šF]Ïï`¦:÷„B‹š1Ìg+¿¬fÇÊ•0Ï{0Äð 7C…븚Ãgj"æ™Æ„9Fƒ¼çðÅÇÎ tçf'’´Î 8 yÐËOøÆÄæªoZûë/ɾƒ¨*¶šátI—£ŒªüÑÝ–Q•w@²Åêó¾1ñ¹û“>ɾƒè‘Áò4… \'Ó÷ÝD®ÉN bAiº?1j|Ìgã b.:š#þ/1Œ¾ü.é[æ‹# A¸Væ._}ÁddVÁ„³h‰a¬É0Ï{0Äð˜·@ï¬Ö/†ÏüÚF¬31ŒóÌ1 iÕÒúHüYÅ4$yy]Í7&6WC³)Á_$Ñ#á¹B A¸NZ i­˜ b|=Í<=æ“Çq 1\G”;´¼ñ†Ñ—ß%™ûâ„B‹V°Ü¡~ÇŽ±”+`ž÷`(ˆa1j豤ŸQ,÷bøL XîP°¦Ä0VŒ0ÇhÜ¡Q$Og”„Ë*/n5¦ZåE$ß@å…Fߘ˜Ëœå>‰Ata0¡„ë¤ëícÚæŠù@ #KÓýÙ@-ù]ÀCAÌEGXbÛØ*luù—ìx¾QA(áZ+ƒ<º³Ë<6Œ¡\ ó¼CAÌE7SGQ$ëÿzèลŸIÑXǼ®¯±Ø{bc4æÝͪާÛD·j”?ëyÍë ®ñyš€4¹ä}ƒ¨ú5ý`B!×Éü}ð×5Õ‰A,(Íö'‚®ùì=ÀCA ×Ñ¥ÉÍX±Ééñ’kg‘"¡ä¢¬Î(ÑI c)WÀ<ïÁPÃRã ¥g¬£ ^ ›©©#֔ƊOfM{º©¶D˜Dw[F±ÒÉCT^¶ô‰ÏU¤É%ûN ¢GÃÓ„ ‚pô ðúl­˜Ä2ùÊ•¥y,'ã b.:‚Òä–7Þ0úò»Âr_‚PrÑ Vg4¾–ß0–rÌó 1,FM#–ß6Ž"x1|¦Æ%bM‰a¬%`öÑLH&Ò(VN’õ3Š•H£ò²¥oL|®f )Ùwb=2Xž&¡„ëdA2‘ÖŠY°Œ_iº?1ª},g÷ 1A™HÓ/HþïRk`¾8¡„k«3Z_}oK¹æy†‚¦›¹™Ø‘š`âð„2~ÆÙ/†‹×b‰CÁ<ÃXAOÀ£‡F}éÃн Q^ªgä/¯3¹FÄç©C‡‚³H ¢‡Ãm… ‚pôHâÐZ.=– +Íö'àuåä¾\ÀCA ×Ñ€% ×¾aÔå75ºcA(¹hsž—±ä_|oC¹æy†‚öR6c=­Ò±Ãgj‡‚5%†±F#`öÑÌ@âÐ*ßlÕmYå$Qy!Ç7&>W 8”ì;1ˆªbÓÓD ‚p¬@âÐ\1+” ›Z9Fõåìq<ÀCAÌEGPâÐôÆ+®›¸ª¹/Ž@(¹h«¼\Æ’ñ½a,å ˜ç= bXŒZ° å¬â¬Ãfji¡Ä¡dM‰aŒÑH˜}48´Ê7K$é¬ò’Ǩ¼ãŸ«HJöD †§ A(á:€Ä¡¹b(A7É0–ᱜ<Ž x`(ˆ¹èJZÞxÃèËïR“Ï}qB!× Xy1¾ÐÞ0–rÌó 1£Ú²At·eT[Á¾ƒè*¶ÉšÃX1JÀì£<Ÿ^mÙ!ºÛÒ«-H£²º‹sL|®^;’}'Ñ#ƒåi" A¸N&$Ïg­˜ ʧÍòy‰µy¬gã b.:‚ò|¦7F:ÜÌ\ÕÜG ‚p­€…ýkÐc)WÀ<ïÁPÃcvÙ”QKucøL­PžO²¦Ä0VŒ0Çh€<Ÿ^lÙºÓÒk-F ²¢‹oDlž:¤/ŽdÛ‰Aô¨`x™„B®“ÉóËeƒX Ÿ•XÛÇz²oðÀPÃu„õűWH_ɾƒè*¶Ë#Ýh®jî‹# A.ZÁh[>ÆP®„yÞƒ¡ †Ç(ì¢)«–êÅð™Z±<Ÿ`M‰a¬Ñ˜m4=ÒzζôH›«Úâ€ä1*¯»øÆÄæªGZHöDU±åiB A¸NÖ#æŠÁZ|,­£úÇzò8.à¡ æ¢#(Ïgyãiø±pU3_‚PµJ„3‰a,å ˜ç= bXŒê±»¡¬ZªÃg kì!YSbc4æ糊-=ÐFêµÔ3ò•]\#âó„4öl;1ˆ,/PÂu‚4ö0— Ö@c‘ÏJ¬Ãc={ðÀPÃu„5ö0=1ÒNcáªæ~8¡ä¢¬H¢ ºc,å ˜ç= bx|Âî…²ê¨^ ›©kì!YSb+> ˜}4Hc«Ú2 M4¬j‹’…(Vwñ‰ÏÒØC²ïÄ zd0Ö“Çq 1Ay>ËH;å¢ê܇ ‚\´‚åùô¯AwŒ¥\ó¼CA ‹Qv/”UKõbøLa=$kJ cÅ(³iìaU[¤‰†Umq@ò•×]|câs…4öì;1ˆ,OPÂu‚4ö0W Ö@cQÎKLõìq<ÀCAÌEGXžÏòÆH;å¢jæ‹# A¸V°B‰õ5耵Ò0Ï{0İ5bwCYµT/†ÍÔˆõá¬)1Œ£Ì1;Ïg[F ë…Uk©gä*/º¸FÄç éÃ!Ùvb]¿†— A(á:Aúp˜Ëëw±(g%æÇzò6.à¡ †ëëÃayâé~±^Tûá„B‹V0çÙ–Ï$†1”+až÷`(ˆáñ »ʪ£z1|¦°>’5%†±F#`öÑ }8¬jˈô¼°ª-H¢òº‹oL|®>’}'QUlzš„B®¤‡¹b°~k+Ǩ属=Žx`(ˆ¹èÊó™Þé~±^TÍ|qB!ÈE+X¡D8ÆR®€yÞƒ¡ †Å¨ »ʪ¥z1l¦&¬‡dM‰aŒÑH˜}4H«Ú2!=/¬j‹’Ǩ¼îâŸ+¤‡d߉AôÈ`xš„B®¤‡¹b°~«r^b}¬'ã b.:‚ò|–7žîëEÕ¹/A(áZ %Æ× ÖùBÂ<ïÁPÃcv7”UKõbøLa}8$kJ cÅ(sŒÈóÅ– èzaÕZêy€Ê‹.®ñyBúpH¶D –—‰@(á:Aúp˜Ëëw±Êg%^?|ÿø¤!ò ¢ ˆéiÆzqXÞxF:`¬\Ý̇ ‚\´‚åúŒ/Bg¬û…„yÞƒ¡ †Å¨»ʪ¥z1|¦°^²=%²¢”ÚG„ôã°ª.3Òûªº8 y¨Êë/¾1ñùBúqH6žD–·‰@(á:Aúq˜+ë{±Êg&Ú¦}ýøléäDAÐEOXÎÏòÊH'Œ•«›ûä„B‹V°œŸñeèŒuÁ0Ï{0ÄðX…ÝeÕU½>SXOÙžY±Jí#BúrXÕ—éaU_9¡„k,ž´ås‰a åJ˜ç= bX¬Z°û¢¬úªÃg ëÍ!ÛSb k<"è‘ÿ³Š0 РêÁÔ3ò@•c\#âsôçí;1ˆ¦_ÛÓD ‚p ý9ÌåõÁšV‰SýëÇgŸãAžAq=a=:L tÆ®nî# A.ZÁ (ÂYÄ0–rÌó 1"¤O‡UYžV5ÆÉCU^—ñ‰Í× ôém<1ˆ! o‚PÂu‚ôé°VÌ õÃù,EÛ ¯ŸüŽ yQtÑ”ÿ³¼ò tÈ®næ“C A.ZÁ )Æ£+ÖCÂ<ïÁPÃbÕŠÝeW[½ >WP·Å¢YÑJí#B:vXõ˜éŽaÕc,Z±ÊŒoL|¾€Ž¢•'Ñc„åo" A¸NŽæŠ:c v²b|ýøìy<È3ˆ‚ ‹ž   é—^CsQ7óÊ… \+`)ÅøvtÅúdH˜ç= bx´Ân’²ë­^Ÿ+¨o‡bQ‰¬h%‚Ž9@£ ³2¬zL=#UyaÆ5¢|®æèÝ!Zxb=>è¾&¡„ëéÝa,—bv®bzýx:iȃ<ƒ(âzÂúw>yÇèKð¢îÌ#Ç ‚\´‚åõ¯HwŒ¥\ó¼CAL©æ»Oʬ¶ºA|® ŠE%²"•ÚGtñ°j2;Ds`VMÆɃUVqމÏÐÅC´òÄ ºŠ-PÂutñ°W Ô-ch´“óëÇgÏãAžA]ô„e-¿ ôÏÚ‹º™WŽ@(¹hs¤mùô@bC¹æy†‚­ ›¥ìš«Äç êå¡XTb k<"hQ ôó°ª2;Dw`zUÆÉ£UVŸqމÍW ôó­<1ˆªbËß„ ‚pý<ìõÍÚV‰VËëÇ'ÏãBžA]ôe-¿Ü4¾.9Ò¼rB!× XNÎ$†±”+`ž÷`(ˆaѪ…«®nŸ+¨«‡bQ‰ŒñÈ cDfÐ*Êl Ý}é5#UYqÆ7">W@gуèñÁò5… \'@g{¹@4†V;]±¾~|ö:äDA×ÖÝÃôÉ@O¡½¨›yä„B‹V°RŠõ}é²Ô+‚žw(âñ ºsÊ®»ºAlÆ:¨Ë‡bW‰¬x%‚ö>ÌÚLtÕ0k3H²ò*oL|¾€N¢­'Ñ#…áuB A¸N€NöŠ:j|}À,Ŭ×[àë?' ygA=A¹@Û;w@—¡å ¿øæ †B˜‹n°Œ õµé²”,‚žw(b‘«ƒn¢ê°^Ÿ1¨÷‡b]‰¬È%‚öý?Ì:MôÚ0ë4H¹òŠoL|¾€þе'†Ñ#†í{b a¸f€. öººm ­rò¢}9ŽölñäDAÐEOXvÐöÑ@Ž¡å ¿zè†B®¬ˆùê²”,‚žw(bñ«‡n©*³^›±ê ¢XWb +~‰ cDv¦Ð*Üôv'³nSÏȃW^ÀqˆÏÐD±ôÄ0º†M¿ÄPóÑÌ.Rß ùâûÕ?ýÃ×â›Þ¡ý¦|ÙBó¦4_”îÑýpÖ/ÐgÄ^zP?¡+­œ-¾\O{òa.äDA_‡X¯ÛË÷@¡k-ÄPsÑ æ–¯£ùœ[H ¤+Y=ïQÄ# t÷Píõ‚øŒAGëJ dŒGí#º˜¡èôaV„<æµ!ߘø|ÝGkO £*ð=1 …0\3@{Ý@½>†®4é[üz9Žöì<È3ˆ‚ ‹ž $â£þCw­5pÃPsÑ VÐO2$²”,‚žw(bñk€îÃjÀ^›±êJ¢XWb +~‰ }D@g³:4]@Ìê’ǯ¼NäŸ/ 3‰bí‰aôˆaúž †B® ?‰½n > CWšô-~½G{ò@.äDAÐEOHðÑÐdè®…8桃 a¸nÀ²Žõýë²”,‚žw(âñ º' ¨{A|Æ Ž%Šu%²â—:Fd ÍÑ`w *Dõ”,€]JE®Qñz—(öžF¶÷‰a(„áš:˜ Kê2t¥yßbØËy´g/äAžA1MPÀO@ï¡»㘗b(„¹èË!š_ÆŽP÷ô¼ DA‹a#tPö‚øŒAMëJ dÅ0´èhÔŠF P+r`XcU#߸ø¬}M›O £GÛÅ0ÂpÍÝMÕõºÒÄoqìå@Ú³'ò Ï ‚.šÂr‰¶¯úŠ Ýµ¤Æ=u C!ÌE7X.Ñüfv„:‹( ç] ‚x»Ü¬US·&¥ûP~óþoxýà£ÔXåf'‡¯"¨‹bñ‰¬ñˆ }D@ 5ýN€ ”Ãb+«EùÆÅg èâø¡Ä0ºªm¯ÃPÃ43ÝX€Õ3A=O†¾QbëË©µ'ïèBžA]4…å9Íø1!}Pú«ÊYôb(„ẋG×Ѱ/|'¨ŠzÞ¢ ˆÅÖ©ÃÂYuö‚øŒAÝYëJ dŒñ" / PÏš.,@=ËaQŒU¶|ãⳆt‡‘->1Œ7lÿÃPÃ5ôˆAVÖ‰¥W¾ï^î£;û!ò ¢ è¢)(/ xj¤;K­Gp?ÃPÃuõо'ž¡þ, èyˆ‚ ‹†àOUû½X׿Íc<§ßRŽ;USA,AÆZÈóÕCRæ|¹ Ï5¨ 6*,£lbð‚ø’ÄšÉ61µ•ALj€¤²Y=œí&=@ñ°žÂö1¬Šè›±i$»üÄ0úÆÁ @A …0\3@!`é,X›ž^iÊнâGw²zò ¢ ˆk j!„êiÝóþïz b(„¹ê¦G=¾¥ÞСq ãÏè$2 zÞ¢ ˆ% –ÊUÛ‡¼ ¾¢°vG²õ'²Æ#‚ö!íŽìÂä‚4² “ ³¬DéŸ5¤é‘ì“èªÿx}YJAÏ»@ñ8¶ééŒÕC÷×zÍ3GxA|aÍ™d‹O dŒGm#Z‘æLv±tEZ!ÙÅR†ÅVV6õ‹ÍÚúéžáôC‰aôhfzÅ †B®¤Q°z°vHƒr0ª{9µîä]È3ˆ‚ ‹¦–˜·N ¤/Æë =‚ a¸n°2§ù]ý‡c©Xä§Ýe6 ‚ò{a Ü¦lY‰¬Ø%‚ö!í›ÌúØŽÑ™Uó`òðÅ*eÎqñYëº>`ò‰aô¨aùŸ(†B®¤•°z°†Iƒvêå@ºñ¤%ò ¢ è¢),·iùê¤/Æ«ÊsOÅPÃuƒŽÌ×w¥dô¼ DAc#–þ³*ânŸ1¬™“l]‰¬8&‚ö!ÍœÌúÓŽQšYò`XË+QÎqñY›‘<¢hó‰atUÛ(†¡†ki鬬qÒ …y9îì‰<È3ˆ‚ ‹¦°<¢í« s7^UÎ=u C! × /ù>7ß8†ŠeÎó&Å8Wí°Ð#×Ö´“=‰ñô“GRÁ¯HÏI”ç-rP€êãò¾ Å­ ª‡hcJ;n`îúÃëºo`÷mj-UûèsÑBò`†]¼á-ÞtÅî¯SÏÂT‹7Þ#^=¦(ž…ÑÄ;ÆU(Ì1ns™-ÖsNþ‰¬ñˆ cD§/zê‹¿‰aôý–UŠö`Ø6;/J;ÇÅg­³ËòŽ$åUÑöö(F¡…k¥_ÚÀ”'†1Lb,Mú¶Å~moºÓ6É…<ƒ(âš:€ölÛRÎÑ×áõäÛDÆ(¡\õoE´ äÁ‹ÑÃãw(ÑhÜã8Ÿ£ÑÄêåâá±Ä@ÖŠAÏ»@ñ1Nå)¬Uù.à•yÌS;npšb®)11´hnÛ@=1Œ ¬j¾Ã6yaß9.>k P/’}fb=ìÚ<†¡†kf=™Eý´'†±Ì¢4ñÛ&à呺³kó Ï ‚.ššb®61¾¯‡·¸ëa(„aºéÀb¼u¡È²”,‚žw(bõ¢®…Ê<æ 7ˆÏX»Æ¬+1ÇDÐ>¢î´ûã˜YÓß0ºC3kú ‹c¬ºïŸµÏµ§N›O £GÓ1ÂpÍ '°WÏc™…Ò¾èõfþúÏIKäDAÐESkÌ3&Òãõlî©c a¸nÀb¼u›Ä²”,‚žw(âqlÂò¨æ)/ˆÏØÜŬ+1ÇDÐ1"$!kÖô7ŒîÐÌš¾Ãâ«îûÆÅgmYŒ¬hó‰aôÈa{ †B®™IÊÚ«gÅŸJû¢þå@ú³'ò Ï ‚˜¦ú¦‹yÆÄ@úb¼b˜§b(„¹èKTZ76ì KÉ"èyˆ‚ ®¡vÂëÌZ¢21àa¸®BlC Rg΀í=âÕcŠâY¤ÎÜwXvØ<ÔåñåÙaifÑÙ&²¶5"hQ¤™í"ê†Qã›]Eu`ض†T}ãâ³Ö/cÀxÓÿÛ_~üÍ_ß åk4ý÷p¦¯áôÍI+•’÷Á]⡲‡bÐK £/.;Ç0Âðµ0œÖB½§K ÓZ3ÓòµPû yÜ%Rà!F(]?uãÞ¶®¯=CöîäDA_#VJ°·g#¼Ÿ®µQ¾9‹a(„¹èfí|®,ð¶1ò›Tv1;2èyˆ‚ –»ég(»e«ñ‚øTÏßS]ïif¨x!Ûsb C´hŠvyÃè.Ô,0;0lwÄJ;qñé^â…ìeèª|^ C! ÓÌÐÅ {õlË,”"ükãóúÏ¡%ò ¢ è¢)¨xa;ù ¤/Æk5–¹ø †B®°2,•J d)Y=ïQÄàÐAi1ûH‰Äg¬‡Š²u%²â˜:F´Ìv3 ÌFwhfÙaqŒ•š}ãâ³6Å ÙæÃè‘Ãö@1 …0\3£ýÍ&°xFä‹I)Á÷/÷ÑŸýƒxæPŒÃµ4A… ÀOO@©`ºÖ?¸—Ža(„¹è« ›×±l KÉ"èyˆ‚ Ãè5×>Nâñûö¨nÛJ9ÇŠ`"gÏ äîÌÊò‡¢{2³°\Oaá‹U˜]£bó56@ÆV¶öÄ0z¼0}OC! ×Lû}žÚ9é‰a,‹ÐJï/×ÑŸ| yQtÑ”¿´½ôÒã5 Ê|tC! × X4/bÙ@–’EÐó.A,‚=–=4’xA|Ɔ&f]‰¬&‚Ž}ß%ç¬c%†ÑšYUs`ò0Æëk¾qñY‘l¢hó‰aôÈa{ †B®™ ¸!X=Œas£Ä±—éϞȃ<ƒ(úhêñû$šqhnõC-A y0È™ (ÿZ%^=¦(ž…©OþÖ´J¼zLQ< £‰w˜1–ê¶7\ž¯E?¾ˆa(„á.+@Ú×pl KÉ"èyˆ‚ ¾ÉZ DŠ}äÁ â3¶ö1ןÈ :F¤ºírä†Q£­]Žt`Ø&‹&}ãb³65@ª[¶ùÄ0ªªmÄP#hŠfÈÝÓé> úe”rŠee¥u´íÙ^þ¨?96ñÌ¡‡«½=©ÝвÚ;,oF’ ¤›Êµ²ÈâHC! W6Xå¼Z»ëbJ–AÏ»@±(; P²Ç>áñ  +kÊ9VŒ9ûxF -kVJ?Ý5š…Òz °¬b꟯ HÆËÖžFh¶ï‰a(„áš™d<°tf(á=—æ} ˆ/×ÑŸ}yQtÑ”Œ¼ô ¤¿çk]‘ûè†B®°ÆiÞr±,%‹ ç] ‚xÃÚXÚg#¼ 6cs%ãeëJ dÅ0tŒHÆÛÓ¹’ÞvÁÔaaŒ•N}ãâ³ÖÉxÙæÃè‘Ãô@A …0\3ŒVO‡%¼•~,ýËô'OäBžA]4å;m_½ôÅx)ÂqOÄPÃuV:Í[.6¥dô¼ DA‹c3v5§}D â36bùNѺYqL#BòfÁtÃèÍ,˜:0,Ž±Ò©o\|Ö&$ß)Ú|b=rØ(†¡†kfÒ“ö♡$`iÚ·(örýÙ9ˆgÅ8\KË©7CwCzr^ ô$àø !øþêÎpû1 …0ecéIóŽ„ d)Y=ïQÄ‚â‚]ËiŸ·ð‚ØŒ- EcM9ÇÈÙÇÓ‰*³ºõ¡¨®Ñ.nÕSXžÈIš¨E÷dfªžÂ‚ «D¹FÅçkAr’¢µ'†Ñã…í{b a¸fV$'i/Ëû)÷ /×1œ}yQtÑ”“¼4ÒkH+7Ùæèª

      ~é±´^õͽt C!ÌE7XŽÓú(xYJAÏ»@ñ¶tC¨œEAŸ1¨ã“l[)çX£9ûx€ŽOvªz+Ùõ§z _¬å›¯éø$[{b]Ϧï b(„ášA:>ÙK§‡º*M£Ä¯—ëN>È…<ƒ(ºh Ëqš^ºz,ÍUåÌG1ÂpÝ€¥£ËhØ7Á;ÈP² zÞ¢ (ÿnéaÛÄBvrlºrŽóy …-SZ”­½E¶jJQ6ƒR-›”U¶eë¡°}àÀ âö õûR|kb }< èQç_Ø)‡Rýö—ó×7fùLÿÍWªoŽé©|ŽœÏ‰s»äÚ#MÄì’«Ãvl¬øê_¢§»Å«½AÊ!­5A_•Ï‘ó¹CX»J ÄòÄ0ÚºBv1 …0|Lïkã<6†´€l j³66ÊíéãkG1ž·&äDAÐEÅPyؼ}­ÆæšŽå[·†B®¬Ë–yIÀ²”,‚žw(ºhˆïHä²{¿o¸ú·}ŒE—ýáê9 P¤Œµ”ç-rP´-é®ñåÛ%ÖGµËMš.q*(š8Ǩ ²’}–É â jÓ¦¸çÄ@ÖÞX#êSö‚i‡fŸ!p`Øv‘&ð‹ÍÚ´iS‚Fb}Ïb†° †B® «š½x¤wÙØ(—ï¯ø3žìÞC»ÑP›ì–j@y¬ž’‡/^'sŠÏW7´kO £Ç Ó÷1ÂpÍÞ¥5S[í$ÕËuŒ'äBžA]4å8m/½ôÅxU9óÑA …0\7`éȼ¾bYJAÏ»@ñ6NS¨œEAŸ1¨Ñ›b]‰¬&‚ŽÙ9N 5 Õ€:”ëHùÆÅ>4™æ½°|r~úB½u=³ çéòó (¿yÿ¯?¼}ðŠ² ·ÈVM)ÊR`ÙÆ[d«¦e)%Ùv»‘¼»‡Ãè»;*ΧŽz …0ÜZOŸGŸ $k–>¶‹1ë! 9(Ã>ëÃ{Ö§âŠæŸ~‡e«§”d³(µ²·ÈVO)ÉfQ4Ùvkb"Qj:9¶Ú™†×Fk<ïØ<È3ˆ‚ ¾CZ¡Z°§]êKט;Ú†B˜‹n°ZyÍϲ”,‚žw(bûý¹ÁŠ%æ /ˆÍØ 5ÄT¬+1µßALjNûýº=V_òls{úÒI ÙWû`õÿù܃Rrvýßaïì$€o\|tý‡ÊqWúø×\Tú¹NÝf²<‰=Pf’\bu-Ø.7ˆ¡†O]š:k'M]¿.…žÆp,]«ì^.xœÏjw Ï ‚¸ê¬veF» ¤¯îk‘ź †B˜‹n°Ú•y[Ò²”,‚žw(ºj¾d¢ßí¶¿¡œÏ÷ÚI_l˜Ïgé; óê‹…”8ñ2üæñ›‡˜u%²â˜:FÄ+ô±Ìó²œìUŒ‹æ1† £;HóƒÃâ";Ðà_k;|Hb=Ù-†¡æ¢þÌίM;ÖQbËn•«}¦—‡›N®Ò…<ƒ(bª_›!æºé«ûòRÌCIC!ÌE7XñؼŒemxÒ¹ô¼ DA ´ïFC¡r6A|ƺ5f]‰¬@+‚öõ@VÖ.ÉnÕ¡Ù%Y†FVœõ‹ÏÚ0Ø7qÉ6ŸFWµíb a¸fF + ¬žË|*çͦ—™Î–ïAžA]45ÇaK·_Ä1&^~>w~ÞWp|ç ñïÖ±†óX ¿ˆµò)þ¿ðbÿþ·Ç¿[_þûõ>ò¿düþïÿðç¿ÿÓg7ø—¿ýõ?^þÓó×û÷ÿë?ÿÇþû¿þãÿí¯¿ÿŸ¯}^ýŸþùŸþûÏ¿þã?þË럧ëÏÿwûûþ§×¿ÌþÏþýŸÿËý-þoþõ÷ùOÿøò§éúû§×çœüIþ_ÿô_ÿùÿõõOþÿ×þß¿üsþÿÃÿù÷×G˜üþÇ¿ÿ§ü—ýû¿iŸ{¼vûÿö·ý‡ÿö·üù†?/ïï?ÿ?ÿæ£þS«ÿ4àêµðÓççO§× ?µúOÿúõÓ÷xÌGéÓïé¿ß¾þþêÒä5×oâïÓó\C†¼õúïMüýõ>§ó9Ïs i€\截Ó‘KËüԾşß_ŽöêïMü½?ÿ|V%7@ÿ|ÿ‡ÿü‰,¿€)}‰2`*à*¶­¤º}ýýä_íË¿>çoPúµI¿ö'ßÏm­HmœnÆo¿ ˜ ü‡ 8^üŸ~ùžÿò·ú§ÿõ“üéþ—¿Mÿ.ÿzN¿þ¯Ã__vBþõ\üõ^ý·¯.Vûõ5¦„{K¿þöϯCàêgËc›§B¿lù÷×C‘1Rý½‰¿¿ž=žû±:e{vÿÀ3'eÀTàÒ°=ε¢¹åßÿò.Oú ª¿7ñ÷þüÏéù¨ntçNKú b:"<ØšlzTÓÅóy,…OÒòﻓÙ-w’2a2Qª=?Õ² “ ·+ýÐOéÎT¡×Ó‘ÐrT»V¤Û ôƽcøòÑC,&®ãX‹}¥e¢ÛFîÁûc^–ÒÛ5™ð6V¦<’:q½«“>U$NtWyŒÔ “ ×±>‹DËDg&~dÅß›øûPð³§—ÉyŒÒUû”€˜Ž„–ê˜m™è.ê²%©&®ã|î[á¶üûάúTñ÷&þþÏó<‡FðW8õù¼¦öcS~ü÷—_Žë_þöoÿ—ÿáþÛôü·Ã?Oÿößü¯_ÿüw?õÿÇ?ýËç¢ç¿f>Ûý¢¹»û˜¾Šæ¿6é×zÏÏÿ¾ì{iÜ´LtúÛ3E½ê€©@ˆX‹ƒ¦e¢³ö|N_Gr0psÕ/¶LteïYE™0™$4 ]ľ¯‘Ú¾þ¾ûš²Í¨þÞÄß§çéŽóx.¦þJ—õqVFPË@Çhã ®¦¡a{ŽÂ–>€Z:± ÓUÀTÀ5Ì0Á˜>ˆÙ˜³ˆ*`*p‰xNäC¤@½×”5”S×pÎǨ÷åI‰ÿ¾VJ“¤òïMüýõüÓ´LÏÂï[þ}ß §‚˜Ž¶æ›§*b:âoxÙ§©bŸÚ 0> ˜Ì2`*ιdŸZ:±=0™eÀTÀ5lôÓAŸº¾ƒ„Î^GLG\Ëþ¨vÖ‘~+Ðs÷}]+ݤe ÿX[~_uÄtDx°ÄŸÛQé_-ÝùæóÈ¾Ž˜Žvæ;Öêû2‰Vöêƒ™Žø‡üÜèP›å¶Œô÷ ä©·€˜Ž\Zæ'}Éy€9ÂǽéH«#[`ó“~ÊÜ“é.¡`ˆ ˆéHhÑVvlçJ^iVoâïýù§¹:x[Fú_<›ÔyZ«ƒ·e¤ÿ-òxŸ'2WÉ« z–>¯*Ê€©€køÜT3 Ïȵ2‰5¶ÞorN;[µ2`*àJWâfák­Ì›MÏü½êˆéˆð`yJʶrÙn·šæl5j?·»ÿ:³ßSž³ H´r$F•ç‡ââsX¥Û¶ ôvèÀHª¦®á¤/ÆI=]ž€ H+#þ`—–åÁ<Å”§ßŽô[ÉÃíó.ß2Ðq-0FÊ€Ýna¢‹Ç®’þþçOÿ¡‡vöþíãÿ7dÞínì3ý=ŽŸÌ¯Ì%üõ¤Åçðú‡_ÿ÷ÏÛù|+.×!ú÷_=ù~ýß?îs Þmo» ®wÁ%úÕ^´¦#W¿Y_– Ÿ'h¼Ã­y=ñë¯×í+m)»¹Fûºý™áöœBŽý”Sÿ20ÜÄýÚ·Yñ"íÅÁ±•S}ùbAB4÷QyeéHw.+K1¹´lù¥¬§³t ÷Ås¯-¦¡a¼ü,Û¬ ^° ˜ ¸†çôåI¼×Ö7nL¯7üßï®À§5<1lKöë»7ˆ6¶ß3ö^'Ï‘Ã2`·[˜UÙ¦#Þ«Èht·ñtä±QGLG„ËA§mY«Ö°e¤w²ã‘Œt°û-°}Ã.ÜtÄßÕJû Ü éNóÑ¢ÔӑвO•¡ØÒï{î†nñ÷&þ>žÿ¨Žó–‘þ[Ópåëú!Àœår¤ófçœ8.¦¡B8Ò7 9]% ¦#/Zd«H·ï£¹®#¦#®…žpÔ2Òo¬Ö1Š(º)m_Þ;1–·ös»÷¯ó 0ë íÏÇðD¬¨–޵‚1^Lü‘¦ñ*vžò#US­Zd³ãH¯·æ,P0ptÄtĵ,¬ó»Qmé÷1°ÃäÒ+7y-Y Zá*`*ð¢Au ŽôûÖ‘û¹ZËÍjË@gUv¸ ˜ „†ñ:g×4^‡,Ù0oâïýù×GÕ!´ŒtÇ„#ÑÊ\u-#ýþ>d'Xø;›'®sþuÄtDx0øôŽ74Ôä ¶uÍé Øý˜ë\¡Çב—VHø9Çyäú"Ï'}°Ü»áÚt¤•‘5…C¦çÄš—#ýVrfWüywiè™ëܿʀ©@h  ”<‘u¤»rË{4Ät$´Œt¬iì|ò¬·ú{»ûï/4V6ç·TGü-­ÄíÀkZ©uß²’:b:"<¼â9øŠuÄ_ñ¾VûnËHo~ä!UL\Åñ8±iÈëçíí ß²Ž:b:âZÈM¦9Ú;±«Fs´·ØýÊÓ‘xS´»Ãh?©OÏ!ieÄìÒòsV^º-#ýVòhÿ´CàaʉÐ[ßæ±^L\¹)×;cýøüx¼H¦Ø®gêîb:R°í‘¢ ÓtTÍOËH§‹lÏüÅ«€Ýn^öëÂMGü]ñp$ŒŽ é¿^uÄt$´”7´ŒtW¹ywƒ‚˜Ž¸ro3DýØ­Êõ+öÈÒò oj|ã"DýØÝÍõ+¦®Þv‘ÞÛìH´rΣóÓn‚Z:mV0p ôîi7q-#Ý7åˆëØ©%Éù6©»èåÓEÿõÒÂh×;šzïô6½^DLG„›sß%bã(§÷NoKçuÄtDx°š®ƒ*ܶŒôÆz^æ•SP±V½`ËH'€·åðA°ï´P컦#ñ®hÔï„/Nãq'|ó2bßk¥ØáMG®V~®fX -÷`¹¾ ¿Œ¿œÜ‘hENÅ;Ò\éP¼‚˜Ž¼hQ-$¿ÝoåçLb´«{Ë >zlË€©@h`× »™hé÷­lYø5è>´ZFúß#{¬ŸÈ0Q·å°ŽY<Øá2`*ÈÂß™öƒÍª¦®a¦îìGé ¥¼¸/¦®baî|(æ2ŽåýÖ bßheeˆš H´RNÉšŽøw!×çã¡·Ôoy+—€˜ŽÔl䡵Ñé,8ém<ÙÜÁEW»ßsÏ.ÜtÄßÕ>ŽÀûˆoè9O0BUÀTÀ5,ªŒFèÇ|w0UÀTÀUð„ÓœUœ,›Ï*ˆéHh‘·ª8Ò´0Ѩ#¦#/Zd›E/šväj…W6ð¡Û2ÒmFûB¶·ïÙ..ñÔ ¬V°û-°8d_ÄßÔóE?!1ùùûQ“eÀTÀ%Lã òž¢Ñ`Ë€Ýn&Ž`— €ø›ZXL¯#½—› o0tÚ“®#={÷S–SPA·_æ @Žô?_ÞU' ¦#¡åX†y9°"Ð 4쨤Œ˜Ž–Ã2˺UÓoec‘BH‹ˆÈýõ¾„A2¬e óå!?WLBƒ¼oÈ‘¾E¹1q-Ç8¨¸ƒ¹>Æ!?4×UÀT 4¹XÞf½d¦ƺ ˜ „:`Á’\Hwôí`FÏ¥jZFú­ä ïr²€:žs.Û÷Ü«ª€©À¥b}°€œòY,T'EÄt$´ü9ÔÏL\Ë@¿£äi¸€˜Ž–ssëã¬"¦#ÞÊ“ g* ÑJyÿ©éˆw—éõXü ­Ó2Ðë_y²QLBÃg'íHÇä¢Ë€©@¨8¥„NË@'\ 9¦2`*àæq`Ô-oË@oA0 Ô €¥º¾ãÌq†õ³À_Íì´Œô[9¡äEǶŒC°Ç3»µ*`*à*h¦;ÒŸ—€ª#¦#¡åÏYsfÜZºåÈñ1,ÏÞW~-Ú‘ÜJ×9G6suÄt$´Œs×h®/ ¬>òZD@LG„[óƒmsõÛ›Žø+ÞÆ‹=w¡-Š^½ ØýöêË5yi…Äÿ ž% þ=öax²žŸ¿ß!ëYL\Â1ï»ïièˆFwXL\ÃIGØê é~lG¢Ú Á\H×¼£…£9OØ£, —–íñ¬Úž–‘þËæj{ЄHvîŽôºcž¤”SP±V­OËHÿ»_ÈK+U‡Û2Òóy¹SLB=ÞsídjéÏÈóæ'1 -ã´ Xwúƒ*Ûw1,¯“¶Çxí )~:³?HÀ—»Ý“…•]¶éˆ·2±<$¨Ä¿Ç@I1,oùß–qÞ쯾Œ³ZèÕ«€©@h K©¼Zu ·Ðo[LBµVà –7Cµ°yï ¦ºŽ¸–•eçÜò¶Œôµ€[[Yvç'ë8wv^Yþ0pËÎÁÙmcy38#+ ¦#¡eœCǶ±$Ø™³ðb:"<ØÆ"뎘Žx+´Ø$'Ä?äNÇ<¸ž-Ñ'Òí'p}”€¸–cœ„!ôz1tÉ*`*زõ„9ÊÁ–­h¶é™_œÓ‘¹gŽå•SPAV;9°ã@oú—Ã:eÀTÀ5œãL£{‘–N'GÇVLB5n0òN–i<óÈØ,Óè&´e¤ßÊ­°L#8iGzŸpK_¤ ˜ ¸ ¾M#÷+GúÂsÏÓ‘Ð2Î4‚Uw ßQr6^@LG„Ëîyç;a²‘Ûéap¸(W@LGB Y|£ºÆ=AI1©?Øó‘§@ûIJgžÎ ˆ¿crÀûÌ1ï¿·^ì~ lJo×n0/í°Ìa4 ˆ‘y˜l„DŸ¿¥a'Q0p Ë8Ùèî§e 7ƒXL\ÃJÇ|‰•%OxS+]M-Yéj ŒÝ~7·ˆkÙX²Ñ­OËHÿÁÚX²g*Û8ø|»Áx;ôbzØ1/ þ9g>þ³Orf°˜Êþò {›à3q5Ë8/ oèõæ¼ñ¦ ˜ „¾¼ÝòYøò¬8½Ç¦|¹eäù|d÷Z&L&BYåJô&ˆy§R0p ë89>¥e¢;OW&L&B7t`„W–¡ ÆÛÙXŠ2 jËÌ ‹ùqƒ‰gc‰MôöÛ8íø|æ‹Lê„É„ á›\Àžî,ëWˈéHhç6Ñ3ì,…ø|N ¥ÎØ Fy6pôt—\C}Ðc ‚€€˜Ž„²Â‹¿ÓUô3§jÆn0ʳåÄÝq°Kt»Áø‹&—ç„3n™è­ŽqŠP&ìmÐYî3gSæ¥i‡ã*â_å&:a#ÓçïGiHØÈTL. çcœè gÔ2Ñ›‹€‹¬&®ãÉU¶ÞÎôçÎD;¼3fÃâLQàÌÌG0ijÀ™sñ70±$i˜¯–™Á›¾˜7˜x6–Z…‰’#ÝçIuÂd"„еç3ïkqfÐeò~Ò“Þ¿“‘“ÜŽó|îi.R'L&Bݦ’S÷'- ·g ˆéHh§VÁ¯80’Gr- c7åÙÎì”È}J°¥ë$·Á†«2`·[˜i®ÁuÛ ÆÛ¡e½á쨀øYÇ©UØå@¯çýPeÀT 4”W´ŒôCs9D% ¦#¡e¼ðÂBoŠyNy²®0vƒQž-ç87’Z}‚£ßHÚ}™0™lawyº–‰î¢ üo™0™ÜtkØhjݽa'úŠÝ`\ÏNS«nŠ[fz.æÇ &ž¥cq®³“Té”ChuÂdÂ…4{f!M”žYI1 -ãt,zȃ¦<§¼µOaì£<ÛÏF3ÎØ ÆÛ¡ucàŒ¬€øç¤w(½ñcô¥`~Ü`â °‰ TJ?jf"þ÷c¾ªúsÓ~þú0ƒ>ò{l}}˜ÂÏMûùŸ¾1?ãä6lë ¢c`[—@˜L„dp¿Ø23è¯É—~2ÕùmËHoZ4¥y·@˜L„ñºöÁÑ™§Ã>80™pO’ävOÝ2Ñëòyþ &¡ƒ»9Å'Mr;ãíL4ÉínªefÐÎÅü¸ÁijÑ$÷™?æDÐÓ‘?f™0™p!|ÏôÊ™¥Ÿó» b:ZÆIî7b¦™äéÌ>B`ì#<ÛüÈÝ’ïK%9éÇ¢SÙZ1 -‡:CøMœ?ÄÀ«^Ä2¾{/¶BÇ™åãÀÔI¯õzÎéÂ<‰±ŒòlàÀš‰ôÑb7Óä^°˜¾´Lô¦/8©*ö6èJËß±Ý`^Ú!¢|…‘‚øWY‡[`ûà/`”±‡íƒa2á26²-ÀÝwËDwö“Š2a2á:v:°ÐÝít[€3Ñï`\è¥RÁü¸Á|Ãrük_uÄßÀA·¸ k™é¿ig~Ü`âÙØ¶œZ$e?Ϲ;— “‰BWì3øWzWV0/íT'I-#=w4§-Ša2B覮¾Â™Á\/û¯'¿ËûŠÝ`\ÏL7¸=n™蹘7˜x6¶Af=Žt‡Ë™;™0™p! Û ï ÿ…ŒãáùÞp1 -ã oÜäB³ðË´Ô»Á(ÏN|¡éšܸÀx;´è`¾wPAü{Ò‹ÏÞ82zóY0?n0ñØT&dPɃç=xAtÇÀ–¿e™0™|U}ä/Éï1C—Aï1à &»cl™²//&!„­ÃvÐÁÖH;è¨&®c'ypwH-Ýù¸É2a2:¸‘¾Ó<¸3ÞÎAóà 8±ƒæ´ùqƒ‰gcypœ*$G½À„¿L˜L¸ºY-× ¤¯ºe1 -$Ž⤹æe-uÆn0ʳ­ðÊìZFºn"×bTӑЂ `öù¥i¿ +¾~±ŒòlÙ)MšNò`7˜¿œ!‹~wÉ-=— …:aßhƒÎ‘—ìÆæ¥æ‡{B%Æ¿ËsœÝ…}sŸÀ0ó ûæê„Ʉ˘HvwÉá'zÊÁUÖ “ ×1󡕸3ƒ¹ENêOün.0/¿›Ë™uÆÁ°u[Þ # þšÝu#Ö23xÓóãÏF³»yÂäHwäQ0™!tºd;ñ Ç–¼ì™è…c0'™Øe`Ë™ûe™0™!t²…å]sQ61 -$»‹¾e¡ÔõZêŒÝ`”gË+¸‰\‡Ú&r»n6«v¿•f:\»Ý`¼¥jánN‰ñﲓü.ìs¢Û—Á¼– “‰Ð!Ÿšè•XŽ|èˆéHh!K1+üv«uÊ=Y`ì£<ÛœmÿAò» ôʃä^Ñé— “‰ÐÁ–zg~[ìÖ-ôÅeÂd"tp ^â ù]ô`ü6°\6[b\ÏIó»n‘[fzr¬SaâÙX~ç='ɽ®9ªV'L&.!ŸgׯùÝ\àð2Žóæ²² b:ZH~ܤƒ.¶‚–:c7åÙr®îçÂºÌØ ÆÛ¡¥¡j‰Äøåw½+›ù½mÎü¨3ñšéfµ\õOAü L$à ›¨œèØDU'L&B]Yçê¿Á ¾dv3½N ¦˜3»êl…O_&L&BY‹Á®³™\…»Îê„É„ë˜I†wÿ2“ì+8Ê:a2:¸™>Ó ïšcióB3¼nŽ[fí\ÌL<Ëðâda!Ù×5Oùë„É„ á›ö,de¹×\àWALGB Éð¢‡XiuÍÙj…±ŒðlÛÞ@ù¬TËH?›®TÓ‘ÐB höùÝmÛ3~±Œòl9c9o4¥ä=Àn0þ¦Ù½oî’[&z.' e¾Ñ#û;¶ÌK;,[›oô—ÿ.û8à ;Â>aöv„Õ “ —q ¯;¥–‰îœ\e™0™p'ZhÄOšá]á}ñë¾Ð¼ð«»œùQg|Qñ q0PáPb®w°h¦× rËÌ ¼¿MaâÙX¦§ Îô¾ÿž' uÂd•¶ý6aS(y²,l07»Á„’î7áÄ Ÿå c7åÙò‰•ï¢Ê}®ôþ.G>tÄt$´°C¶ý+¿‰ëw…Í/ZêŒÝ`”gËg5Ö‰æ—ö+UÓì/÷Ë-=¿ ³…:aßhƒN•ýÛ æ¥–º…«íÆ¿Ë×Ò2Ò·–`ûêˆéHh!+2+ü£#ï^P»Á(Ï6§Àêö 9ß=;~'ºÓÌìøë„ÉDè`+¾Ü)7v½øã:a2:¸Ë^™¾5¶ñkŸ¼¯Ø Æõðb'½"*úŠÝ`\ÏÌÒ¿a•[fzrTaâÙhúæ?ÎôÆË3¯Jë„É„+YhúwÉsŸs¡iÙ´ŒÝ`BIÿ¢¿\hŠõ™·@(ŒÝ`”gËÓÎ…&(œ±Œ·C+#â­× ã_”ÞÿõÆŸÑ»¼‚ùqƒ‰w@g5+øgñw°‘ô/lµr¢7`«U0™t¥í~ efð]ÀwжÞÌ6ÉõWÓ3¯5ê„ÉD(!ë2Øœv²Ë’`sZ0™pû8ýž©e¢7“CY&L&B·”`Åwšþ}ºï é_·È-3ƒvòæ7…‰g£é_œ3$5û„Ui™0™p%…íH0;iZÖ™ŒÝ`BIÿ¢Ÿ8iŠõ™·Y(ŒÝ`„g›ÙÃðÍU~Ȫe¦ï-œù¸ÁØ &ô8Úz‘×4=³»Á(Ï6}eòóß®ùòóAùm—–KùòxÐl–÷1»Áüå ‰2ò»^hâÛ™7˜x6š,ÏÍ`zc`Zs.&¡„¥ìÂôþ®`^Ú)O–ZfzNvÚ¾NãÂd"”ð=O+|{šÄ^ñë×»Á„’,GkN®0ƒuAt¦½°ëM L&^uTËÌÀZ\ÌŒ?Û:—' -3ƒqy1?&sM|çÏ%ÆßÁ>N–û :}¶Ø „ÉD訟j™éÛËÆŒÀØ &ôŒ±oÆ?½&jš`i"0vƒQžíÈoà Éò <ÀAÙèýË„ÉDè ËX÷~-=Û>¹LØ7Úàóå#÷ñ÷uÒD1úþ“$qÿœ­yùòeÂdâRòóyY¢Øwn·†Š×¬EaìzƉb´üO^0ßø,1þdôÞ+´IOz‡U0?n0ñøºlJk9…ñw0ž°¹(ˆî÷<ò÷,&¡ƒ¯–Žü-éÍRhgžüf)˜1<É­OÓüÈ_¿L˜L„¶VHÛ±‚èÎ.Òv,0™p3IxN`-g’Œ»_'L&\ÇB“}h÷’ˆ›ŸYI™0™p%|óÉ–}±3}õ[ž‡)ŒÝ`BÏ8Ù÷ÆF®4¡öÛJ¼ZI±L¨©i™é[=g>n0vƒ =lÍvŒÞÁ4Ís¶dc7åÙ–lɽJaû[&z¶=R™°o´Açc®Ýn0/í°8a¾T[bü»ìÃìÄùŒÒ7°G L&\ÆARDîZ&zÊÑ-• “ ×qÒ‘Ë–™~€ ,½FçͰ§Wâóãó 3þ¹ì´Ä\ï`zÐ4 Lœéö³<¨&¡„.,ÜÀ´Ì ¾L6â¿HÜòÄ.¹™³S®&¡„ïxÀ·§ég>n0vƒ =ã4 Z̉\%„{P&rÍî©v¿‰¦ò5ºãïk&騄àD÷›äMuÂd"tÔwœ·Ìôǽ37»Á¸ž…ÓÑZ’KTÞôü…„ÆÑê— “‰PΦÔ`‹Ùõ!h‹Ë„É„ëXiXmñJBÖóž¿H™0™p% ‹ûž³ö ìSS»Á„G F+(ÁU˜íP+– áJŒ¿ƒ„ž!UçDïAª®N˜L„:sC«Ïn‚˜lóË„ÉD(!óH:NäÞLÖ “ ×q’°[—–‰®‡›W&L&.󃆄Áæ9ÓÕžƒÛuÂd•ÒsÙ9ÓWŸ &KŒÝ`B ƒír¢}XPM±L¨©om™é[=g>n0vƒ =d vlæ÷2,ÏdÉÆn0ʳMÉÎì®·ý-ݹeöHu¾Ñ¥¹v»Á¼´CbpÑ¦Äøw™Ç!aÈU~Ãp-ä*ë„É„ËXXHt,,\ :ʄɄëXiHØeËLÿ³£åGëqØócòh’xn/—”׳Ñð.ºó„^—9÷€2a2Jhx×EËÌàË€AæåÑŲCì¿ÿ¾:Ø2a2Jx& &? »yé¦0vƒ =$¼‹Ö\€ùÖ™ãÇ\h°ûm,T ×äIŒ¿¯“„w!èDï›@±N˜L„Žúþº–™Á¸Ÿò(»Á„2M†=c˃„ݾ¶Lô¾=Xý:a2:ÈôØ­^ËDõ-®&®ãIû`‹é~Ãl‰ë„É„+™hx7׺ýÅðH.¨.1vƒ =$¼ l¡àª+‰‰vø|/'ÆßÀB»3ôÌ…„^!T'L&BŸ¹e«¿°³‹°[®N˜L„6oÉI­…܃¤V0™p+ ï.гVzE›W&L&\ÇFûhó6z]r ºN˜L¸šf‚ŠˆÁôÕ犈c7˜Ð£oyZvF{ÇOøy+7»Á„67[ÁOë-G¶c7åÙÎleØ <ØŽµ°ÓqhõË„}£ {:¡•:óÒ ‡æËª$Æ¿Ë9¡Bnï†7!·W'L&.?Å8„ºdNtLÖQ'L&\?DÃqåâÀT¬r£…¸¡J’ÄØ &ôð.Z‰BÒ,Ïw6~JëÌ3…±Lè!sj•ìÕ Ö…pB+Y&L&\Ǹ02æ›6R´óMuÂdÂe°ÂÈ>ˆ[&º LK™°ûmÐì \¢/1þ¾háÝ7&ŒÅ]·üåË„ÉD(¡4EìøÐºgCT&L&B ÏÀh¤…jq—„ÂØ &ô€ŽbvH òR;@9£:a2qéØIÁUL€ì¤*&@ê„ÉDè¨ïi™ŒÇ¼HS»Á¸Vn¬ËÎŽÛ@ÜYñP°’uÂd"”³éÊž¿#;Ð6²N˜L¸Z4mäÎ Z®ù8r0™p%´h&VuØi1K(´$1vƒ =$<…Œ汜‰Âø“‘‡bÞIQB 1× “‰ÐÁg:`Ùˆß÷.¾Žâ2a2JˆŸ‡`ùÎN@°¼N˜L¸VÐG}ËD·/‚-*&®ƒã{c‹X¡¼í‘-Q™0™p%<|½Àh§Eòðø²ÂØ &ôèÛØáˆw× “ ×ÁÊû@ ø`¥w ˆ['L&BG=GÝ2ÓÁ|Ü`ìz˜Ó†þÅ7¾osîac7WÃJõ¸­l™èú#°àeÂd"tÉ—[Ê–‰ž@û]&L&\-¡óÆ~³ò6Û’­w™0™¸”œ¬ä XŠ“ïb÷þÛ2Ó·.0¶N,Æ+ÎÆõ°².ül™è¾³’­&¡ƒÍŽÐ‚Ÿlß÷ï›§Ÿ¯Jª„ÉD(asÔÁüvöCuÂdÂu°r+>[&º5Ûˆ:a2á:XQì‹…°ê•Bn™é÷ß\#^bìãzØn\ìÃlW5öa¶·Çb™0™p¤0D$OV4"’uÂî·Á·`Ât óçu­ºÝ:~0Ýε}íöa2J˜Nñ¥Ÿ[¦¾mtIŠ“ „É„ë`W¬çS=å9ø#&¡£žÛj™ôß‹ù¸ÁØ Æõ°-r؇Ù6<ÿö-·Ñ50˄Ʉë``cÿâËù|Z\büÉØÅÔyaDWKZ˜ „ÉDèàvÆ Û‘µíy¤” “‰PBìv^bÑ%y‰-&—Ž'»6zÖ“_绥yÄØ Fy¶3õI^£êt3èÇ)ó&1vƒ =ÄC?{NôÎQkvƒñ'c»™|”µLtGYûuÂdÂu+sózó0œHçõ¦@˜L¸ ~Õ,0~Õ,~±oµÃëôuñ!1þÞ¶g¹ë·Ì ôÀp¡‡Þ&¶©çwm•×Á_&L&B Y²àˆ¹ˆþ;ÞŸyÌŒÝ`”g›òXc[§<"Ð2Ñ5ã+|É*a÷ÛØ·²v»ÁøûâA\ã.˜þxÉ…7%Æn0—ž‰m‡Á1öÃ@™ØVûuÂd"”ó¯ŸG²3ki7˜VgüÙ\Ïs)÷æ–™A;S~<¬/É’×Cw{àH›ØNŒ}Nã¬N˜L„fc7ÐÁì_CÔ »ßÆz¾„!ƽÒn0þ¾ ˆ+ðÚ2Óï-¹€ÄØ &ô0‹ ߟïسÇP»Á(϶æÀòþ>fZ&ºöFr™°o´Asß®Ýn0W;ó“®2`6£09ß-ÿ™çò¡oòªI°OFb\¿ÇÍßuËÌ@OîÏ3ϵƒ…šYüÏÍoaŸê„ÉD(a¾)‡>f–‡ÐG0™p…õò¼n™|Å‹ù¸ÁØ &ô0Ÿß…ß–µÃ—»Á(Ïvä/ÊrîÞ—[&ºöFX™°o´Ámì‘ß±Àøûâ·&áwá7 aŸá+`˜g(Ì¥gáÕäý´Ì ÚÉïmá){° K§ïg²uÂd"”lËTŒM¶fö˜ñÛŒÏT»Á„â›|Mß2ѳši¨&®£°ú’-[x‚…±LèaóçYÙîˆÁÔ “ ×Ácù\\0ý^™ÏÅIŒÝ`B³ùð]Nåû]bóõËŒÝ`”gË_t{<—áMneZ&º–<Û¾:a2:˜¿_R¿ÜØn °|u¾Ñpy+Œ¿¯']僅u¦ÛWöüå˄Ʉ+™¹úeU@rp°-Œ®®&—ŽÂÕ¸pœâä›Ëœù¸ÁØ &ô0g™¿‹Ýiüüx¤/£0vƒQží™Ÿm¢ñˆ<›¿!®?‡0N¶- L°o´Á×ñ†íãïkå |ý•-âßôLø„ŒÂ¸ž-~ã´Ì ôÀ{ãôÐ>‘ÍsócÊÖ©L˜L„æ1`İÍf«v¿/dóSaü}BKy“ÊÉ7´Á&…±Lèaž)M~¶Ù }¬e¢ÓÇ ç „É„ë(„>_§ñÁô7[åà½ÄØwÚ™ù#-%&Úa#fã߇okÊ#-˜nßLáe0™%ÄÆæ€D½Q™ƒa2á:¶­Ü+[f:[¡æÇ’ûq™0™p%?—ã[1ìÙ^˜¨f-c7˜ÐSOx´Ì Æ×–G‹ÀØ &ô¯„#†^ô3?`ÌŒÝ`”gÛòX#[ÕÂÊ´Lt= ؾ2aßhƒ¯0¶üŽæz_ÏÇvŒ¶\† h™è„=Ñ2Õ “ ×A/9Âþõ¤—aßç÷5à SbBÏY¶f-3Ýo¹ç/S&L&\ GLYÈd }ÊJêˆéÈ‹–òk™|}•|%ø¥'Ùâ8?Ždcê„ÉD(as¸´N¢ëÃÒV L&\G!ª’=Ë“o ËÛ6$Æn0¡‡Íà»Ðm^¿]ý2c7Wóså7:*V©e¢ëaÀV– “‰ÐÁf/Gîcd›×›Q_&L&\ÇΪ£Í߇…‚çg^·—SPÁ#i[D0é)a)1vƒq=tëYŒ¬–™÷‚QOc}¸>P˜KÏÄ·RMžÈ6§ù™6„ „ÉD({IŒ Nd›Æë„É„ëxþÙ OÇXËDÏF¸¯&®câ›<òéjŸÒ¸¯&®dæ›=+™y$eÏZÆn0¡§žÝj™؉%z±LèÏÃÞŒü™Îžsûc7åÙ–l3ȶ³°–-=k‰6¼LØ7Ú ÞÕµÛ Æß×F"6nZ&ºö,S™0™p;×ýk§³ìû4Æ‹k… =5Œn× “‰KÇÏUé9Úž‹‘íOâôŽ{ 1²]'L&\G!züø=n™éöFØk$1vƒ =lÆ“û×Ì÷Í=÷ÔÃÆn0ʳåèÈ<‘h•[ä–‰®wÍ~¢N˜L„6sË1ê™ìèC‹W'ìmð™Hމ)Œ¿¯™FŲ_½nO9ów¯¦¡âœGÇ·ßØÕ‹ènûþÙ÷²e»Á(Ï–ól&ç§æŸ3ýj;vƒñvÖµülvƒñ^ÀwÀ¢­ä;`ÑŽÓ¼ æÁÆõü\»cDAp¢;r¡N˜L„>ßÍ9„™ïäE[Fwò¾™•°]¶SºQ L&B ›ïâûbsÑœs©&®cg±×3;—ÅEÁ»” “‰ÐÁ­Xñ‹é.Yßx±Œë9¸us1ƒvò^¶ŸNI·âç¯â·ûÒr+ƒ'ÃVêû_Zföå™­…ÀØ &ô° X z1é<å´ÂØ Fy¶´û}[Ø^v·²-=+ ¶¿NØ7Ú ³˜)_ÏuGG³Es¢72!/V'ì~?'NKÑ.Ù Æß½ÒûñB¯4Å1Æ‹ö`^Da\½Ò4úLËÌ@ô3º÷-íÂöåO[5eÂdâEɹ—úfËÄÀÿå¹ÂØ Fy¶ãsæqCNL`.m!§0ÏU'ì~ŸÅäŠïËn0ÞÎ羓â;¶Œ—Ä¢!g÷I ãij«&®£Ë»¬zŽwY+ŒÝ`B™ÉáxágæGîÍc7åÙòΣå࣬æÅÖvƒi“ã ;ÿឦe¢;kÿW&ìmÐÐ vV`ü}Üšgº˜Áw9òw9IÔ-àI£¬3Ø@±Œòló fÉöö<˾¦efðuÎ4¢×¹¸»Áx;O ñw`7˜¿œá#![Ï•ŸË΋†a–Qa\ÏD¢Ó1t¢;ÞrưN˜L„ºš³Ç]ùù°j+=?ƒó”•m™ó,¥N˜L„6£Ï9Ö•œmÁüg0™p3·Ùš;SðÿvƒiuÆŸÍõ,Ü*eàÌ 9·³’-ޱ•ÆÝ^¶Ì ž ll!Ë–O¬ô¤ž&P»Á„¶€‘ÆO*Í0ÖÆn0ʳ—a§f°™ìdÚÌ2aßhƒ{ðÊãïkgQÝœqs¢;šsÆ­NØý6N¡ÍÑ…ñ÷ÅÏa?æçpŒñ|ìÄV˜KÏF¯ŒŽ>Ó23ГûÙFÏ9¡¥ÝؤùHv¶N˜L¼(!QÝ Zf= F=3õƲóLË5Kÿ “‰PÂfu9ë´±óLªv¿“GÏr>\a®÷ÅKKâÙÏŸ5‚³Ÿ c7˜Ðsœ[Éf´Lôb`Éê„ÉDè`³¹Üw~þiYS/S»Á(ÏvGÏžìØÎÎA¹½h™èÙ °bu¾ÑŸad£0þ¾ægÙ'µÌtGXÞÛS'ìmpO¹ç7&0ñÆöñED¸yb¿’ƒ—<œ:cßig¥‹zH7+Œ¿6~H ?¤„§B`«¶Â¸~¸ ?܃”îA÷ÌÞ,g67eÂd"”‰¤4vvðÒ uÂdÂuìÓ4<2즩e¢ëüÁ˜• “‰Ð1—_ËÌ _ÌŒ?Ûuè¦`ÉZfzße}ä·\&L&\I!9““àÎ Ôç€ c7˜ÐSß2Ó23°aóqƒ±Lè!Ól´JüÎúÌvI`ì£<Û”žíxðÀdÞ¦09æægRs°CDàÇê„}£ :“ñwl7_Óº /˜s[Ó2Ñó`ë„É„?ÕÏÿtŽƒ²ëïÙbŒÆn0þŽùá&c?ÜäÌL¼>+Íâ&ÞþfåL·o.¹§• “ WÂS,°Ú™ú<;S»Á„ºÆp«Ñ23èi`iøQ5ðé;F¶¦rPa2JØ#'Ìv ’YuÂî·±òmyÛ„ÂøûÚç²Íl™é·ƒv¶”ʹƒ"ræãc7˜ÐC‚Ìn›Z&º~,f™0™lö ã…lZ·Ü›Æn0ʳíì’Û˜–‰žAËW&ìmð™Ìžß±Àøû:yÀ|ìI‚¹+xØ2a2JX öp' °ÂÎy…±o´s>i v)Ì_ÎðN“æÉÏó8óã8Ý©0þ¦çclË9F'z»-!ÇX'L&BŸ`îù[ò3@`4N~ÜÿÉÎç¬ya^'L&B ™`B~ñdçs ÷W'L&\ÇL‚Øk6âNt'Ùˆ× “ ×±Ð@1XqgzÚ·G¶­eÂd•ð¤œ/ufàŒÏüUÆn0¡ç¹ O£5âi8¸/ïä§‹œù¸ÁØ &ôÉ5Ú ~RhËa"…±Œòl9´|n4 a<…ñ7ÍNK¹o™èN°Á»” ûFtnåïØn0þ¾öe™†ó°þ?‰y8šÁú— “ ×q¹[Ù–‰žr´ýeÂdÂuðÓX8ùi,g~Ü`>‚¡óãg¶–¡Áÿ$D¼Á¬ºL˜LüQ²? ɱt9˜Á<&Ýà 1vƒ =Ë><Ř­Eý°â–Â]c7åÙÖ̽€®­Ü.·Ì Æg²åŸLyfÒ2Óó—[JÇ „ÉD(ak«Þ[÷$+v¿çTîavƒñv¦G¹WÚ Æ¿Ë´ïã°ò#—‹èYŒœˆ“ ×QHŽ.y¤ðsxù&K‰±Lè!I÷L-ݙɜ¿K™0™l㞟 ÜŽ<*Æn0ʳن/|ôƒ»˜þ,}¬ÀØ &ôõ˜Ûþ–‰žíGT&ìmðy9ø ñ÷µr« s’‹|—5—•&opfº’ÄÊžVLa2Jhòf!<©²€”:c7˜sèny=>/7/8À–[th…uEȺ:óãó ]fnÙŒ¿ƒƒ¤{r¶?ˆî·Ó\&L&B_’€«å‡IÑœñä8Ñb=÷g6ÎeÂd"”%IÞDo2“3÷a2á:N’îqÛ2ÑëóhöË„}£íÅæžÝ`®÷õ|ð´Rö/ÎtßqJÙ „É„+á)þ|™N0õgÖ"0vƒ =$­¶Ø‰¾oÝó²Gaì£<Û=Пù&‡\ô ˜϶LaìzÈ’ìò“&Þ7PSgì£<[^šüdÊ=Çn0þ¦Ùj÷™-=Ÿ ž¼NØ7Ú óØ=/æ¥òè´Œ—™¤ðòŽ_Ä0½–7p„É„ëXH Ï=ZËDwÖ~¶L˜L„>¶ÀË\La=f7˜VgüÙ\?¯vŒŸ×væGõÅOF÷š3xyMöäRòUgzhêçh+IKîGeÂd•ð;¡´e¦¯Þ™ŒÝ`B]1»†¤KÑ2ó{Þ´²–}FËÌ` €Ÿá÷àÌ‘Ý °ŸÙk– “‰PÂÖò9öñdwä <a2á:’ŽË›^‚èõȼéE L&\Ga“È#÷,~Â;†»Á„’ŽskÙ2Ñe€ /&¡ƒ­­`œðSçÇ#±ŒòliËÓ>=hÊ Vÿ ó—3lmu¦þ?±Óê`Yë„}£ :Wôwl7_Oš¾‚Ù…3½QyäÕB0™%,}•]þBHH2£—»Á„’Šã?ñƒ÷0”'~ˆÞ™u–ðß'’kHŒ¿ƒ…¤•`ÿ†Ý÷œ—˜uÂd"tÐI²å–™Á·„áϩÄabGÈ9ý2a2JÈTöGLì9ì]¨&®c%i%7|-½>æ¸LØ7Ú )"¦*Œ¿¯¦•Ðîo$ås,Ùê— “ W²“4 Ú®¦-޼ÃQaì£<[ªU˜=ÿÂæƒNŸøõÎ|Ü`ìzÈRí?¢ ¦ÎØ Fy6˜úî4ìë=Çn0þ¦Ù5îcZ&z>=_™°o´Áç}° ˜—vÊ£Ón0þ]N’†ŸÄ0E›ê„ÉDèà›$rHÝ™¾7ƒ¨ c7˜KÏü i%÷h-ÝYCö³uÂd"tp[‘½¦3…0¯Ý`Z9r8yæ·G€]žùMÎü˜¼¾øÉȳgï`Ë߇oÆÈÕP$ÆõL$¶É‰þ8³uR»Á„¾ÊÌá²™ßUáÌK;e/Ð23èÙsÌüN ˜ Î쾊3Ïë„ÉD(!«YØ"2³û*`ûF0™pËRö3-3=?sNyô— “‰PBRD°©Â‰®­Èkæ:a2:øfðJ3øŠà1Æn0®‡oÈU7ƒ؉¼qMaìzÈúG>¿EâÌk…±Œòlù ޼ѓ[è17š*‚¨†Â´:ƒ^–ݤqÂe·\ O*ö6è<Ó¿¥Ý`ü}í$ó–ö"=fÍ=F`ìãjŽe¸ßÇMK@ÏÏ ÷«¦®ß¥#Ÿß‹áÌÌ˳•}FËL÷£Àú¢LØwÚ ë‘T7Jb®7¶FÛ°Ã3µLt<ÓY&ìm°˜rôz»Á\ïk}Ð|ø3gºï8çVê„ÉD(!ù.ØíáD×NæÝuÂd"tð]9éÌà+æ]8 c7×S¨­‘gý+¿bÎsr…±Lè!«8°”+½ÚayäìÂØ Fy6x·3y¶àLaw„Ý`Z™‰g =ãUixË–‰Ž·D^'ìmð&Œñ÷5³› ÃÏ´Ì ¾ ø¦™äÕТÏ,ßõË«|µéc7åÙÎì –a..œ`K@wžž¹ ØýX¬8tÛ Æß½¬âõ£Oóãóòle¿Ù2ÓûøÏG~Óe¾Óóæ¹ð±Ä„zê—ž¿WV¯ÏVgìã_s£y<Ø'»n4¿¶ÃÈ»Á„¾Z†½®âßà×HàL\ñ°<§zýÆò̱B…±Œòly?ÊF®ìÑ2Ñ[Ë«ö6øèÏû#Æßדf1a¾äLw´äÙR0™%|? *¡Y98½¥0vƒyÑs 3Eà•¶©ž“³Œ?½ÇòFïùæÇ æ#ºžùíÍbE«0ñÎcц}/ŸÄ>üžyßK0™pôn°-3ƒïv†ß 3†ÜÛ±<¯ìê‡L˜L„¶¾Èë¤ÝÛ{Xê„É„ëXI6î Ör%™2´ûeÂdÂul4K†v#¬çž•” “‰PÂÏë‚UÙhÖη*ŒÝ`\Ïþxwa£¼ˆþñw­¼W5c7åÙN™ò~+ì*Y³¥äwƒ8óqƒ±oµs”ß›Ý`â½±µØezŸÈ2åÈÂØ Fy6X3õüšÝ`üM“»NÂg¶Lt×?àÉË„}£­<:ííÐù²K»Áøw9çiä:a{Ítì3î|)¦—†ý1Ϊ¹Ól èβ'/¦¡[¯ì]œéCg¼'í‹à‘œ´“-ëNïAûµÓû=‚ùqƒyy¶ò¼¤e¦×ɦ¼ã·NØwÚ`~?×–—cÍÁnß}¢™+8E­0vƒ =‹<ÇÚ§y­Ù¥–[é›7­ÐµµÛð–™ÁÈvç7•ÀŒq'·ˆ,SÞÁR'L&BÉxm»}vr‹îÄ©v¿¹ž³Œ¿¯eœëÂM(Nt{~^Ã× “ ×Q(Ê‘ç”;¿cÉ3>…±Ì‹žq>É­ËDïK¢¿(&®ƒÜ6ñf“GÞŒ`rwÄKT&L&\ÇNó"è%w’³˜ò¹Û:a2Jx^&Õ;ÏWÀ¼Z`ìó¢g˜ycó.b0CÈ12…±Œòlo¾er”l?–r;vƒ‰vX ÏF(Œ·sNåw`7˜h‡z&(1¨0Þ«Ïq> w |£\î@¨&—Žƒßžü w5,Ó™<@0™%d. ; rWfùë„É„ëx’<{Œ–‰în0vƒ =dµ€6–ßl·í+ŒÝ`”g°ðüK>¡0þ¦ÉíáÿZ&ºk&ðÊe¾ÑEÏà3Æß×:Î¥Àæˆ èŽÿW)¦®açRÜ·ôD£w©¦®ÞñfÒû¨”ñ“)û‰–™î Ϋ–:aßiƒù(ܧ0þÆžG8ò;x|ÿÈzÆn0¡‡äpÈ_Dž0/yÄŒÝ`”g»£fËü6|8¿Íí1¿Íg>ì¦?'š^æ=eÂd"”°u%¬ÉM¸³¡NØý6Îg¹‡Ù &Ú¡yØß¥0ÑÎYîývƒ¹¾ÿù 9ØâàD×2å(\0™p<÷컦[f£øb>n0vƒyÑ3ÎÙ¸§m™èÎf²o®&¡ƒ­©²}9ù=ó‘F¿ÂØ Fy¶¼r)0Ë#EûΉ[¦ìcé[g¢²sÑ2ÑóàÅê„}£ >/Ï«=…‰÷Å-lžÇ83ø.y­tÎ<ß—g³Îô,ÆïûÅ^Ç™°o´AgdÞûíoŒïW˜à±|ÞN£0vƒ =»îËg’‹D_~µ2è›9yÒ*+¸ƒZa\ ¿¥í3¿qÙ“ãd'ß!5&&ÞÉÃÁÎOb˜#ƒuÂdÂuð{#Ðoò{#Ð>ó{#pÈîtøsìeX&L&B Y—ù‘–‰ÞL v®Ô “ ×±“|Ÿ{Œ–‰^ŸGS&L&BÇ\öI-3ýìÌŒ?ÛÁrwo|ßAòj ¬Ê„ÉD(á{/®]‡-3õóqƒ±Œë9Ií÷IÏh-9Ч0vƒQž f¿æ1|ÇŠï#o™é[~g>n0ö­vè Œ%Ǧ&ÞYkgp<4w—ÏIÌ_Îu¦û¿–‰žÿË^Y ìmÐ3.Þ›íãïë9Î÷åM2tíLÚ½PL\Ã4Î÷¹ño èúä9k¨¦¡Âd%ƒég¼™÷‘5·3Ó³SÙBüdX^ük0ݹõ®aßiƒ®¦Î¯+0‰ñ7¶°¼"Ü`ú‹Go`©ÄØ &ô¼"š–…æá–ÔÔ»Á„zÚÊmkËÌ`Ü€=æ÷…äI0]Ÿw~'„ÉD(aëÊ´¢;«H»bÂî·A««ÀŽx‰ñ÷µ‘üXÞ¶Do„å}+a2á:øž ßÞ2ÓïõÎ|Ü`ìó¢gœsÑ2ÑõþàcʄɄë8h¦­¹[âÍ>hn[a÷*¸mi™èΧÁâ• “ ×q²\Ê~’<ÇúȯL˜L„žã8s¯?yîáÌý^`ìó¢gœ¯Kù¤/àÜÄx;|7A®-19Câû9Ëÿ‹ÆÞs–_ L&\?ó ÞåÉÎc¯iç´@˜L„2?Êñ zÖ8g«ÂdÂuÌ$îîÖ¥e¢×ÁæÕ “ ×±ðØv¶yÎtµOÉâÕ “‰PÂs ×.°–™¾ú¼sLbìãzVÛFÛµÒXð ÖK`ìjê{Ž[fúVÏ™ŒÝ`B™#¢UÚx\úÀø“±Sün“[&z6=E™0™pû8F››ôÆKÎkÖS×pŒc´nÄZºö,k0 4F»‚%:hŒ-ÄIc§h¿O×\—l½Ë„}§ bë &±Ä\olzÐØi¾ìCVkÎ|Ü`ìzH솼ƒ¾™33 c7˜PCçìàñ&vn}Ý’W©&¡„ÌÙ!»8±sëù«v¿ zg<œÆ‘_‰iBjΉnÏÏó¶:a2á: ùœkG]ËÌ ×_ÌÇ Æn0/zÆ1M·ä-]o™m0™p i¢5bg¯q /4¦‰­°sÇn[Z&ºóB°xeÂdÂu¬4¦‰žueñÆ«&¡„çd „Æó­·c7˜=ã˜&ÚÖ•ÞŸ´æüªÂØwÚ¡wÀé:‰ñvhv êñIŒÄ[!kôI c¡5ª&®ƒŸ?EÏÇΆ®×Þ‡™0™%lî–³L; Y¦:a2á:X5y·|-]¿ ö¸L˜L„z¯‘[‰–™'ÎÙÅ™V“G»?³Jï[¶úuÂd"”ðüRÞƒ2Óêèp ÄØ Æõ³=“•T»Á„šúž¯–™uͶRaìzØ<9[¿™×9Ï'É%ÆŸŒ%]á=³sžà‘ê„É„ë˜Çq]Hœ]@o¼@Þ¬ ˜ ¸R ÜXK@O4ZÖ*`*h\×G{ËL¿ß¢… ·ßØoV û÷nÀ×÷U&ì;mÐqÞµ 0þÆhUk¸“ðCV¬° CaìzH\‡üFã­[Žˆ)ŒÝ`”g[²½àç&ÑK²3Ûš­w™0™%d=ÙÅ™i„ìb°ûmì4†æ_Ñn0Ñ¿ä³cãß…ÔÁÆTãLjTc®±N˜L¸~6ÍwyµÌôG—37»Á¼èÇœÝË´Lt=9ø¥2a2:ȼÇ=¯ç¼åÝÍ c7åÙöô%—ýÙW83˜/å¬ËÂÎò¹Mn™èÙdðu¾Ñ½_Âß±Ý`â}Ñ;cÜ*·Ì ¾Köá ­³²…ÕµÞòî²:a2JxN ï´XhMk¸M_bìó¢gœßçÄ Ï\»?n0övèýÚpšYbü­ñºÞ`7^£lúB³ÈPQbBÉ=@vw!õ³1»['L&\¯Ñí6°efð]Ànò3w0ÓZØy¸ý‘¿~™0™%lM’³Î ;Yç:a2á:Xî ¬2«Ÿþ¥L˜L„šãp«×23ðÈãíÐZàoü«Ó½?ó+&¡„çtÁzÑÝp±ÄØ ÆõZàol1¯½çuÂØ Fy¶ùƒo­¾´e¦kŃù¸ÁØ·Ú¡fovƒ‰÷ÆÖ¦`ÿy½í}Í@`ì;íðÝp¶_aü­±ó§;ô5v6½™°o´AïöØÁ¦ Œ¿/Ro6 ,¤6ì?(¦—†•ÔÛvÇÔÐ Þ² ˜ „n!²_y½mg¼^o¬þÊëm;óãÏF×nnWZfúÞÅ™—vʾ¿e¦ÛÉò΋:aßiƒùÖ\HbüÑzÛpƒñ/†D–`GŸÂØ &ôÐ`ÀR®¬Þ6˜Ê•×ÛöV~Ü`âÉØšgX+;ã¼_+ë™0™%lÍ›ó‰+;ã »Aê„Ýoƒß+ 7¾)Œ¿/V;¶l¬¬®5ìÙ¨&®£°ŸàÚ•Û2ÓïõÎ|Ü`ìó¢gœsKÞ2Ñ1€í/&®ƒºÅÌNãfghÑ• “ ×Akg¿ñx¬®õžãVuÂd"”ð³^ÐiMk¸á]bìó¢gœA›ÇkMï'ª)3vƒží¸¡ç€ ¯ƒííØ &Ú¡1?¸yAa¼^û€E™ÀD;|¶ükĽÜK§0Þ«YílØQ±²ºÖ°£¢N˜L\:6z>=ùÆÎîSòãuÂd"”¹(ìXØØÙ]ØMP'L&\«í£e¢;OÈ~¬N˜L„jÀºn¼v¶3Þ¯ yãµ³‰vhžüòÆêZsþ2eÂd"”ð<}ާl´¦5ÜX/1vƒq=¼vö‘ãw« ö{ãµ³½•7˜x²ú^í–™Ï{Æn0¡‡¬0ÐÊòZÓp7†Âø“±sâîcZ&z>=_™0™p¤n4$ì7RÕòõeÀTÀ5ºÑnÄZz¢Ñ²VS×@ë9¿±«¬ÖòVµLØwÚ 3â3Í¢Æß­çŒ7âo´Îr07»Á„sÆ¡Èë¨¦ÎØ Fy6˜ñ˜œÜè9÷7A‡û]ê„ÉD(!kÈfoì :dšë„Ýoƒ×L>rlHa¢ë‚óÁ íÐÝÙÞ+ís}ÿÕY†ÔöÎj Cn»N˜L¸žsô¯-3ýQìÌÇ Æn0/zÆñý#ûåÕ@ŸY'L&B™Kƒ}Ùy]b8å®0vƒq5¼þ1ø¤×?>²WÞÙ™u¸EegçÉÁ»Ô “‰ÐÁ-RöÇ;¯K쌷Cëã¬lg5ƒÏG/eÂd"”ðíµ#­ef þb>n0vƒyÑ3Î¥ %ç†Ý‹µÌ úÌÅü¸Áø[ãweÃýV ãï€×†sÏ;¯Œv“gÅáܠ„’{€lõÎjùB¶ºN˜L¸zýÍ,ƒ?óë:a2Jؼ?Ÿ•ÙÙYqÈ¢× “ ×Áêøº…m™èõE´ûeÂdÂuðZ¹h÷YÛsÊV¿L˜L„«‡ÑÎkØ.0ÞÆn0®‡ÕÊEÛÅkËž9Ö§0vƒQž æð…ls>žÓ3ÿÁ|Ü`ì[íÐÐ'¬|&Þ[ûd‹yð¶p‹Âüå Y_œù{ì;x±:a2á:H=ZH<¤Z,äË€©€k õhÝÀ¶t}K¶úeÀT 4ðÑ‘-ÑÁëÑ:ãíðz´> [fíä‘{ðz´àÃV+öÌQñ:aßiƒÙn8}¥0þÆx=Z¨vqð:±°+KaìzèLÎ0¬†-š#vfûÌ·Ô “‰ÐAÖe>Ø™mÈ2× »ß¿ÃnžP_¬+¤‚V'rÁuÂdÂuò¡¿#|/c˜Ÿouæãc7˜=ãú™c‚«“ŠöµL˜L„2ÄñÈÏÏž{-c7åÙŽ?Œ¿væÖmXËDw. –µLØ7Ú q=×n7_¼¶,zcV÷õ<³/.&¡„Úcß%Õ23PŸ«)ŒÝ`^ôŒãáè+N¶ýüŸ¯VI`ìíœüŽq¸ Ra®·vòs»`gN~nlàɳÈp÷šÂ„‡ìîÉjßBv·N˜L¸Ž‰Þ¹ä¶©efð]²=;ùùS˜™œälèúx¦yI0™%ln3»'; ™Ý:a2á:X_·ä-ÝyOö/uÂd"t°=ÿaõZfº,o‡× ?v’Z¾ë#Gzê„ÉD(áöûÚÍÔ2ÓW; Æn0®‡Õ F[Lëø®¼~S»Á„šúžÖ–™u=³­»Á„¶öëÇkÿÂíV ãOFN.‡ío™èØþ7©L˜L¸R/¨'©æ ùÓ2`*àÆõ‚ȵtD¿±¬UÀT 4°zŒö–™' Áë£ý&µ|×Ç’­w™°ï´ÁlD,æÏ;¼^p®=õ‹a+ð´'KbìzHœ:ù }3EÆ$Æn0¡†¯ ’Ç ¦k»·¯–X L&B Yä¬l=²a÷Ûà÷dç› $Æß«œS§At{þ”Çd™0™p<ß–o”¦ßëóÒc7˜=ø{Xò–‰®·L¶_ L&\­üƱ³£8†i½à7­s a[Z&ºóB°xeÂdÂuðzÁèYI-ßõ±ç1\&L&B ÏΠ„Æsµ&‰±Ì‹žqœm+­ã»>`Æ#0övø=Ñùn‰ñvx5ŸC‘ÿ:¬^pÎlþ"†±ÝœÙ“ ×ÁÏQ¢ç#g×Çõ¶>dÂd"”°¹ê`ó*ðßeÂdÂuzÁaùZ&º~ìq™0™<® ž…Ö æjçÉëƒÝ’Z¾ëó‘ÞX0™%<®{í|i™¨¿˜ŒÝ`\« 6òIëø®Ït¶Ubìjê{òZfúÖ5ߢ.1vƒ =lžœ­ß“×þÍwHŒ?9{¶¿e¢;ïÍ©N˜L¸R/8'è莗3[¥*`*àÆõ‚ȵôüZÖ*`*h\×G{ËLß¡…àõ‚Ñ~“Z¾ësÊÖ»LØwÚ 1Ú´KJbüñzÁ¹Þ/†¬Xs-S‰±Lèaq]ò´&ïúÌ+P…±L¨¡kôxääúçV–W&L&BÉxm™Â :Þ2…a÷Ûà÷üæ;V$Æß©É é¼ :=òya2á:x®)W¤ f°"N§Æ$Æn0/zÆq]·ä-]o ¶¿L˜L\:&Z‘ö5"gùp O´†-¶2‘sya[Z&z¶,^0™p¼æ+xÖ‰Ôc]ŸiÏ®@˜L„ž—šÒìmâµXsM6‰±Ì‹ža\mëDk±®Ï ¾L±ï´Ãï…ͧ¦%Æß©‘Š­‰Ô/ÅŒV0™püTx¤‰œ[ŸÙÕ “‰PÂæT96‘óc˜«&®ƒÔ. ‹Ô2Ñõw`'Ë„ÉDè ñV½-3¹åvxíR´Ç¤®èú<²5.&¡„Ú¡|Ûx0õ'h©3vƒq=¤véIk}®Ï=V»ÁÏ6=²u噼|J%˜¾EΧT$ƾÕ\ù;°L¼76·ËÌëvæ<$ÆŸŒœ; ¿Ô2Ñ+ƒ·,&®c\ƒ“zÓ¸B&æôÊ€©À¥a×à ÛÐõaÙê—SÐÀcÁÙÍ´g0Þ­Á£°e¦ßŒÜ™×¹6“”ë”sluÂd•ðú“¹&Ç/†¬ra‡ˆÂØ &ôŒcÁ8äô™ES»Á„ºnÏ:³³yÓœü]0™%lÝ’³‹39›‡ÙÅ:a÷Û ÷” c‰ñ÷EêOb p&µ!1X'L&\ÏOå=ƒé÷ú|£§ÄØ æEÏ8ì¶e¢÷%Ñî— “ ×±ÑX0Z#r&íÍÞh,[açËܶ´Lôl Z¼2a2á:xKô¬¤å:-¹¯” “‰PÂsYyOÑÌëOæjc7˜=ãX0ÚVZrrôIaì;íÐ{Gá„­Äø[#u1 6“‡˜«&—Ž…Ÿ›´°3MSÞµU'L&B ™SAÖl!gš0kV'L&\©£©e¢ëﲬ&¡ƒÆ‚§Õ^hÅ`¼^ßìñBj®ÓžßX™0™%ü¬ÁJhŒ6W¯‘»Á¸R«m¤ƒ>s$+©0vƒ 5õ½e-3ƒëÅ|Ü`ìzÈüíåÌîl[§3[L±Œðló#?­½ˆçŽÆß4;§ç¾¬e¢;¿[&ìm°û·âÛ Æß׸.$&C—qÕFÌ…–S×0® Æ¿% ë_Á#USÐÀ³8G¶àS£eÝiÁñ¾³{ÝÞØ"±Ì‹ž²¯l™éu˜9ÇEê„É„+áu.óÞ¿²ÒÏu$Æn0¡‡ÄÃѴк¿,ÃWë"0vƒ 5ìÞ½°­-3ýþŒö˜ŸÏÄ™;;9ç(T0™%l˜3¹ 9;‰™Ü:a÷Û ÷¡â­* s½¯•Ô…ÄtëJj6b¾µN˜L¸RG1,_ËDO9Øã:a2á:håA´+9c‡}~¥µ ß´ÂÎËùXl™èE°uÂdÂuð‚àñVRßosü¥N˜L„§ÎU2‚¨G-uÆn0/zHœlÑLãÇsŽº+Œ}§z&žŸRo‡ÖÄ5›Âø×!µý0¸’º{˜ ¬&®ƒÒ‚|ÛÊNPA¾­N˜L¸R/ìEËD×ÁÈ/&¡ƒF‘çÝufà¿`¦Ã+$Uñ~Í´¿¾±2a2Jx6ëJXtn}—»Á¸RyïÍf§´p Ÿh ¼[_aìó¢gC{DïîÂ3­ ãíð=è0W¤ž FùRë£üuÂdÂuÔ{£ ?˜g=²µ(&®„ÕañQÙ2ѵ¬`+Ê„ÉÄ¥ã¤õQÐVœ¬vÉr¦¾U'L&B o雜´n Þiª0vƒq=…ØqÎ蟤¦ Ú oe0"óþ…±ï´C«ƒàùQ…ñ·6±Ì‘l’ÝÙE¶IuÂdÂuŒ+Š`ù×ûÀøq0p ¤¢ˆû–€®h°EUÀTÀ5ÐJo,«Â±>²*&®„VàÀûðNZo U»Á„>ÿ›Jªv¼V™M¬ÏléÊ„ÝoƒÞŽƒg߯߫!ГUn€h0™p<Òyegý+ç•Æn0/zÆñý-½/‰6©L˜LüÒñüw?õ­{©ã·ôüèב¢¦®áuš>6]-!ݯ7½ÚT0¯]êé ÿz‡¥†˜Ž¼h9JæáEɯ™v?˽Ψ¤Š˜Ž¶ä›–*b:­œd.ñõü–†ø‡œÏ³¿l è~ù/AU0p ˺­{KH×*®¯nGLBÅq–"°-½¤ù×°°˜ ¸†u«€©€kØY'û8J¿å¨s04pän¾Óý‘;z1yÑ2΀=eÀTÀ5,dj‘§bÐuü06ª€©€kXY è:l>«€©@¨ a(ؾ²­,@»íÄtäEÊ0 …†je¢ó™MU1lʶ±º#¦#Ñ [ÚÂRM@¼šË€=ÌâÝeÇÇ ËðF¯ ËPL\ÃÁ&>è׎ñ,㜳W«¦¡âw%šh èeJ )QL\Ã9 ¹Ýmñûa]A0 Ô€¡:YŒÏ‘«•ýÁ®Èu«Ó2he‚VX$üÚ…t?aÞVQLBÍ-ämA2ž· ˆéˆkyŽ#‰`n/`ÐQòb:JÊ»•ZBvúHfW@LGBËpCXÞ?¿ïï©>·dzë„ÉDý©ò®ÏÞ9 ó8ñ·;—9î [zžœs°û-ìÅwk2áï‰”ì‚ ÙN jA†¬ ˜ ¸R²Ë{K@×?ƒ¿©¦¡Eiݶ„ FØÏ•õßë>6¸huø§|´O@^”TÝ`KH·›€w®¦®‚¦†`[ð… „çMb:ZÆa]´$ÛzžyÖÓ‘òƒm¼ÜGE †·}% LõFWœ0ùÙ†ëÁíq]ñô¡¦¡‚¬8sj󺥜Ú,v»…ì0Œb:­°„ĕĿÇ1Î1@Šóºã<‡ Ë€©€k ™D¸x`§Ç•à|°€˜Ž¼h‡‘Á­ã ºµ*`*ÆKâçx±=rT©N˜LÔŸjNúx°Çàk.d0bÏÔÛÇpi&·% crÑ ”»ßÂx"ïÖd"ÞÓY5¹-!ݯžÿ •a wŒën¼7¶ ˜ „ ’‹ò-J!‚e‰à‘€˜Ž¼Hæ¢À¡¬^áöÈÑ.±o´B¯M…˜š€øûšÙÀʆñÑõ¶h®º BQJHZ)§çRÒóeÀTÀ5,ã…D˜¹ö•| 0ŒôL—Žñ¸í±¥ÉR0d!‘72\@wZ’72”S×0¬îfºÅïG‰¥7ž£ ˜ „’º »Ö2ð²`¤hÝEtP㪈Û#ç¾Ë€©@¨  yøâ´""œ¤Ó×BŠ(¢±ÝIºçW¥÷¯_¤Ž˜Ž„’ò>Ô–A(æB>tÄt$´ŒW^`âèíªPªñÑǰí-Ýõ¸›*`*àH©BØfpB‚°Í  ˜ \ÎqÁ0X-]omh0 $Q¼%dào²å9i¢roòW U³ÛÒý„9ø_L\Í΃“–÷ƒib:ZÆI å'+ï·=ó8Ó‘PB³Ù«ãÓ•Û3GqÊ€©@¨Oò!=Iö2`·[`Uô0[ þ¦Há=H‚Ÿ¤,$ÁË€©€kàyàk+iKÈ`-{!:b:ò¢e‚ËQÁs\ïe¯¦¡a8›ÄÁ·’ˆùsÊc£L˜L¸ V>0ŒgKHü¡½Ù ÓÖЛ¢µ­¦®VDO>®Õ·=óv 2`**H,öÒž´LœFÓ‘)ÃX6õE™Ÿ`Öëˆ}£v)FÌÄß×IbÙnÚW¢=E“Œ͘{P2ŽeCø$u ! \Lþhø)ŽÆ™“;w¤kES:`**†SPH·:Ðq› ­¦®aX 1Lh‹ß£ÀÙª×SÀâÌÏT°8ósÉ­Ðz‹Ùy8Ò}¹ÛW×QLBÍN ‚E€ó‰41q-¤Þb6„ :ÊþÕ*ˆéH()ïrm XÐ%Ä:b:ZF+ƒ76qf³ö#Å2a2Qª3?»5b7 âow|F;|TK@w¦n³ ØýØTìÌ߯Lø{W€„ü©cùÓ:`*àƵø·t='ø›*`*XLÞaKÈ`T€ýÜYÿ€ñ½³É=X– „€„‚¼(©ºÁ–^7™ù«WSWÁ)óïÈ@xÚ¥ ¦#¡e÷cIXÍÄmzf[RGLGB Ù@äV´}%ýì.=ûŽ3™ñÉômš²ÿ¨¦¡‚,ì6Ð@–]h(v»VÄvH(Èõ¦žãº7v ;œRv¯˜ ¸žžMgßéwó|øMALG^´ C¢nª[z¼G0 ãD|OrÐx›RžG L&êO• !'rêɪW†h éqðÏñé0Ÿ-=ó ½ ØýÈ qÊKß:áï‰Öß„YÏs\s›¶l «€Ýo̦¼¬ñ¦Xæ„E3$')#¦#/RFy˜7ÕÅüu¾6+©"öVØ Éê_äœùCJΙ¿1ïl³œ!RP2ÌÃ@ÿeI _L\9œüÆI‘ÃÉoÌ"=œŒÓ+rtx:òäª ˜ „Šñ’ 'ñèMcr¿˜ ¸†aýÐp-~?ÌĠ都!a.úšö•tXðN¬zhØÎ–Á¬ V´z(:ÁqmÏmXLBÍÄ?@ÉôÀyw1q-ãê¡o :+Ò¹ÍlÒëˆéˆð`0ɧåó=Ž ûžít±ï´Â‚Î.ßt$ÞØp™ ö}bw{Ãnù˲X;ÒWœÈmðµeÀTÀ5Œ  â¦„i\ž7%”S×0.€–´% ë ³q/¦¡Šly&V5o…@¡×2h%‡Ø'–bǬ±€„’¾Aw8Ë“nó”¿{0p4/n:2žÓ7b:ZÆé´%¬4é6ƒ5©#¦#¡„®£²‡žÈÉéyɶ½ ˜ „ ²ŽÊó÷i|r·”»Ý«fŠé:ñ75.€Šéÿi\žÓÿeÀTÀ5Ð x¾B‘n7‡;$ÄtäEË0’êf´% ÷ѲWS×À  ¾1;ÃsÃoÆ+«ú¦ rØHK@ψ ]«¦®Õ?}ã3ÇÕI]5øµTSP1ÌÃy˜ObÆ€SŽ b:ò"e˜GóÉ*“n3Ð:b:"<Ø®#GÒ2?XÔË[1‰VX¼Râ­<Éuö!ßt$ZaÎ ÒÈò—#ã4dôçq=WÌè—S×ÀNã4`&çç3™ø2`**ÆSWȃÏãóÀ˜¥.¦®aXõ6B‹ßôà£Ê€©@H V'[ЙU½ Ä[Y¨=ÈF÷B­ìÐ I ÃÇ•o·%»Û2`**hàÈýŠU½…‹7Ätĵ¬ªxA†±A´ÐÚtl£¼•¸%¤otóF1 -ÚQv®{yf;Z&L&êOÖ]鎹ñ·KN›»[k è.uÀÓV»ßÙ$²€#,þžÆEˆ1>Kc6¼ ˜ ¸†qâ°Ô-=Ñè<ª€©€k`³q䱃Ùhè)k8r$ /JªÞ¦%¤ûs¨¹ ˜ \*žsÜS¯ZXq`Zõ*`*X¢ÀmNKÈÀ‹ç€ñÊŠZ£óXÇ%§·õ‘^04Éš7a®¬Ü4Þs ¦#®e\Ô áÊÊMoë3‘:b:JÊ;P[B‹ø ùÐÓ‘Ð2\€M\ÙièuJF±NØý6Øæ¸ãC@ü]‘×îqZºóöìË€©€k—ÆTó:.æ2`*àÆå£ÃŒ¶ôD£e¯¦¡mâw³ÓÒï±h©Ø±^Ií+Ñ7m8öhަ È‹’ªÃi év“9ûÁ*`*à*hâÎ0®¬°3î³Ó‘Ð2Žâ£%¡Uš×¼8ÓáÁÀ±ÓÓo¦älóºå @0dEœm†”q°Û-Ð:Í+8œ:­Ð8~Þ†) þ=Æ¥1q¼Ž /c⸠˜ ¸š¡…«$Vv–ï’Ó‘-È¥Û÷–€î4\N0 ã > qVDyÝó,&—ŠjF«¾±BÍD+ã ¾Ж€ž›^LB+¢¼fǼÑ"Êàÿ6VD'2)q¼æHs0$Ái7VÞïÓ‘)Ã¸Ž–7^OTREì­°»Ðq熀øûbE”ݵ¯Ä`e” ãF³à°áQ@BÉ8Áùém\âóÓeÀTÀ5°C´8iØÈ×푦 eÀT TŒ§Ó9ÞÈWÈ—S×0.pì&´Åï‡á´êUÀT $°ƒÛœ–<³ÁeŽß8R~xËù2`**hjÌ+=Œ'ñÄtĵŒ ¿1„´ôð–s­b:JÊ»\[B‰3“:b:Z†ë´‰;Yl3è¨&õ§ZdŒ;»žG ˆrªÛ½ZK@Ï«¡£­v¿2yó¯a2áïi\>SíÛ¸¸3¦ÚË€ÝolOÞ`¾P&®÷´“ÕîrZz/¼`0 ,ã&º%¤?òÀªïOÖ³ÕùCôÝØÂ¦¦a¦€¼(©:ç–n7ÉÇtÊ€©€«à`軬@5Þp% ¦#¡eœŒkµÓÕ[¶&b:J˜Êžö1%Ù¶ïôà;̯vr,}ËÛ7Ê€©@¨ ËÍÚÝɱtØŽPL\ç¡(ù›ö•|í<¯ÚimnØ+ ®d\Î7%ìãbÛ¸)¡ ˜ ¸ž—¿¶·¶„ "7ò¡#¦#/Z†Á`w-ÝYx¨*`*Æk'àìðó#¼L˜L”Ÿjd«@ €oàÏhpô4äH¶Ü–€î:|@°û-9¥¿[“ O¬Èø›y)¾Ã,© ˜ „ –ë¹¶û…š…¹1y‘2Ìõ «¡å¿÷èûF+ôžrد+ þ¾ØYv4Yì,;Rºí.GP2ÎõÀ†„}\7$”SKÃÁÎL»j_‰þ{“uÐ3Ó0‘9ȉf¯|þ¡¦¡b<Á‡í9Ñ ÛÊ€©€k2ß³ç8H™qðeÀT $°|’Ûµ–¾‘rÄ[a…ÌÑA¤ÌøïšŽ/î© ˜ „ šOÚAÍôì £Œ˜Ž¸–q!s4¶-1¾¯¹÷ÖÓ‘PRÞoÝ2° ùþe1 -Ã5š8zk:l!*rhÜm{K@϶£»©¦®ç†ÜÿAJgCî¿ ˜ ¸RœÛ VK@×€ ­¦¡e#|€·„ ü Xšc†sYòW U³ÛÒý„yÑUL\M³ÂÅ+iW ˆéHhg p”Ó’ÖûJʈéH(¡“|ðjäÌø~d«[LBÅx’ùøƒœ‡ly°Û-Ð Õ°1T@®7u’¢Öi>IÉiÈ4—S×À“­Ïô½Oz¨.ÖÓ‘-ã\^¯œ¤ä4Xö2`*†³I|';š¼Ÿð-ª„ÉDù©ŽGþv´Dµ›Û–Á#[蓘vcØгfû\ì~ $xèïÖdÂß+Qó‹“>òÕeÀT T°û‘ +쌷û ˆéÈ‹”a„] -ì|LÙÙÔûF+ôp8) þ¾Ø9s4Yìœ9Ršœ†}žJÆvHŸ¤¸3¤Ë€©€k`å£Ýµ¯Dÿ=¡É¢ q"CŽ'9äQLB™|çðIŽ'C‚¶ ˜ ¸†qùh7Ó-~?Œ£ç¨¦!EØÝ®µ„ô”#Þ +íüÆA‘ÂËGŽ•SPAϺåüI‹.Ã-b:âZHig4¶´‚ò‘Oî ˆéH()o¢m XÐ ùÐÓ‘Ð2^Md§¹“¯&õ§Úe"÷éA/eÏ;bä/GÆ«(÷j-=¯–m°û-°5Ñþõ‹ „¿'RŸ:çš號œk®v¿6u;ò{*þžH lw9-]ž¼`0 ,Gâ&º%d0cHV}z°CâÙê\Ä`"½eBs³ùú yQRuÎ-!Ýnr~õ´uÀTÀUðÄì3« µ©ó%’ b:ZÆy´V´6õùÈÖ¤Ž˜Ž–Âà?f´ö<°¶Bw@ïÈS2Gzžö¼Ò›*`**Æ+Ô¼±ÀÞô-o,¨v»…•›OpœuÄßÔJŽ’GîS+9J‚>Z/<ÿVWBJŒçM tm 8è*`*àè^\Ç‘Á€rϪ#¦#/ZÆ‘ðËOµt§3à:«€©@h.êÐŒ°ãë'Œò2a2QªE&Öüµi1vô€´¸º#ÑÊxQ玠% çÐ7U»ß™û×0™ˆ÷Ä®3;a¢t°ëÌÐwÐ2ñ8±$EÜÏ-ñ*`÷[ ³*ïë&ñ¦H’/ßÃ÷I°k¾öUALG^¤ “|èfiùö3íTVÓáÁ9Ud<’ü'-Eïf:­°xÞD­ Þ -EïoÌtä/G˜…Ì>ñÉ.‰pâG•€yï“n[Ê7®(Hhç^ó†¢O`˜ÍŠê€Ýna"…ªc˜Žø›b—$À<èÉ.IÏû¤—$À þ9¾Â`¤juÀT TõóÈêö EÀTÀ5ÌáÏZü~˜…‰C0 dqîö•tØ5›µ2OE}Mvµ2˜\îy°.Ô dï|!ƒVh…e·afv!ŽõëÞº¯ý¤ ˜ „ º÷èLÓý ¿1q-+±ëo¼ÿ:Nˆ£üÓÆ £`åS-!}W«‚(ˆéHh9ª®³%¤ûÆù¡#ñ`ãp 8Z$·Wªñá=[:ÞóC¯¦®agyó~'zc*ïwª¦®áf`Ã,¶tD¿±ÔUÀn·@w¼ä«cä¯@ªf·%¤ûrçì ª€©À¥b¢›>òüŽ „§N b:ZÆyK0°Ñ9þ# ¦#¡„-pÀNã+öÇšÜ`0ãìšÈ°w§ Øíž,G–·Â+ˆ¿©iœVƒ}/){û^Ê€©€k [?ò%¢Žô»y¾ETALG^´ŒâÛaF[º>*[ö2`*†ó<|¤èýþØòØ(&õ§Úe"ÇU8q¦™Þ´D\˜ô–ÁL¼Àøæ†0¸-Ý+ø€*`÷[ãû™Lø{ZiŠ æ0ë0µ?ÙïW»ßÂ8pýÖd"ÞI‘åË ? »É—ñ*ˆéÈ‹”aŠ =à6ŽóÅ(7™ˆ6hîfÏý¤Ž¸ô°¢û8­òƶÓM2ù‚v %ã´ l_ù “°}¥ ˜ ¸†ƒBðPÇ8áñÆÂÑû$pn5¾íá×9¨¯3«*`**ÆëØX2‘Û`ÛG0p ç0jìV½ÅïGéˆ7n  ˜ „fÖ`‚tŽÓAü‰ë©æÇ³hlÛWbÐÆ™žªNÄS±ÔxÌ év‘kñ÷¡¦¡‚ù˜\D‘ðvÓ×òç!Àe\@®þœ³’:b:JÊg%ZBq¡=™D1 -ÃÅ&Xö™\ ²?ÐQ%ì~´ìJWã«GÂo¶ô]àÊË€©€k˜Ç©Hü_@oØBâ¿ ˜ ¸†eœêp3ÚÐõ´`Ù«€©@h ‡ÍÂì´„ôh©È1’ÚW¢ïiø!Aû™o˜WíUÕÒíX9=RL\ÏÈ®¹·o,ûÄt$´ŒÓåø€˜Ž–8+=b S€•€žr§ ˜ „ŠñŠR­ëø4¦ZË€Ýnaf>ÿx¦#Ñ ‹fÃuâßc\‰S®ë¸N<¦\Ë€©€kà7÷¯¹WÑ㣎|èˆéÈ‹–a4Ñí{K@w.§ ˜ ¸V‘=ìaÈ® Ð*° îoš çYÝTµt'º`=«€©@h \…i ¼)ð4´†;NÆÖ÷éÈÖ­ ˜ „ f‡›ÙVZ].MÓ‘)Ã0;iV]}ŸNTREì­Ð‚p/’€x+4#šë0)ˆ•q}uÌU®ãê瘫,¦—†k×¹‘C§ó#9Î2`**Ȥ2›öm|ès›eÀTÀ5 kŸ‡ykñûa,n0 ,Ìîö %dàÎd 7Zû û6®L¾Ï9OWLB ³gó±Ñªä¹ž‰‚˜Ž¸–qís4„«Jþ뎌¯JêˆéH()ïFl é[PG>tÄt$´Œ§Ô`Ù™Û9‡áê„ÝoƒÝâ·;ˆ¿+r®×=NK@Ïã ¬¦®a\‘µÛ¸^:&jË€©€kWd3ÚЖ½ ˜ „fw³ÓÒï±h©Ø‰SIí+Ñ³ãØ£IG(Ä# /Jª§%¤ÛM–ì=ª€©€«à¹=è»´;ìÓ‘ÐBÂì`IX=ö}ÎÓÄt$”°å úsr†vÞò(©¦¡b¼¼$ð6>C‹Ià2`·[`%ÜñŸ€\ojW}Ç4í>®ÉŽiÚ2`*àh¦2×ÇudÐÍ/äCGLG^´ ƒvnF[ºÞ6[ö2`*àXõs4;ûðì%Ž×UKÓ9²èF¤% ;ŸÌv­ ˜ ¸ZÉ|æ>®3¾Ï{ò3eÀT T°8óµ©'DÐð…|èˆéÈ‹”aœÍ'«1¾Ï9 % öVØÕÀxZL@¼šx„26â_e\eS‚û¸8¦Ë€©€k çêЩ‘So3¸´*`**ÈD,ÇTvrê RˆeÀTÀ5 +€‡ykñûa-n0 ,Îìö %dàas4{§ÀѰësïË#›õ*`**höì, EUÄtĵŒ+€¿1„¬6÷¾ä¶€˜Ž„’ònÄ–¾…j±b:ZÆ“]°‰¤röþ§RÈ‹Q,v»ƒÝºŒÛøä/GȬ=;Áƒ‘'XL\ør6f*q]kÌT–S×0®jf´% ',{0 ,μäÕÓÁªZ£¥:HUëIí+Ñ3ãØ£Y7¨ ( /Jª§%¤ÛMæüÕ«€©€« U­¡ÛAëMÃ1 -ã83ZV`ÔÉÙK·Ÿ-=û‰&½ ØýØô-gðë„¿'Z§$ãjÅ¿‚5_‡_°û-¬Å^h2ojœ*À«TŒõpÄtäEÊ0U€^ÙÖ»ßÊÉ®âÅr½¯“‹Kz²c±`ßO–9ÆòJÆéÈéžã²¸˜Ó-¦®”ÄE/u’’¸hOz^æW'9Mù»®üËìª ˜ „ ²&Èy擜¦„YÝb(ù£ ¦#®åIÍîœ?⸠2:¨«AG™sߪ#ñXå=÷-!²$ ¦#¡…Ç<¼Á[à%—‘x°áBÓ]ï÷¢)ˆ?¹mÀ}nK@ÏçÂ4  ˜ „†ò ¾%dðý² }ŽË0Ãfºƒý>TÀTÀ52Ìn¯[º^\H°Û-°­p9‚üHÕ´„t_î‘ÝT0p<¾f¬H0VPÓ‘ÐB—,à ÆÕ‹ß YroÀ–eÀT 4Œ×8y?ƒ=G“wÔ»Ý+ß G¯Äß©ø›w8Ðëy7@0p “’Ð./¦—†…TF§¶sÄGºF¤˜ „ 2˩셜#†Ds0p ã¢ÓnÞZü~c‹[LB‹°»=h xØ%·ÂŠN£a_HIè#G¦Ë€©@¨`V-_ïH_x.¡¡ ¦#®…C¸ÐrÐGް ˆéH()ï;m é[Ð\ÌUALGBËx² &ŽÖjÎ÷‚)ˆ?9Úí¶½% ;{wSL\)ï ×…_†Œk0p ¤¼ó‘㇠)¾Œ6´ ˜ „5öÞ2ð7`yhÖ-_G¬ R5»-!ÝOxdoPL\MUår`Ž Üyž ˆéHhGtq”Ó¢ÈÇ JʈéH(a“|ôjädïùÈV· ˜ „Šñ$rš 9Ù Ç2`·[ u”á:"¹ÞÔJJ/CFp%…‘!#XL\OŠ];÷ZBúÝ<_Ó­ ¦#/ZÆ¡«#R,{0p ´ô2˜u|~ÆëJK/cä0¤‘–€ž»VL\+½Œ>s%…‘Ïœ9,¦¡‚D[ó…ÕŸYÇçú b:ò"emEóI‹"Ÿ*©"öVèÕØpQ€x+41–o/Vÿ*¤ô2¤¬VRRVeÀTÀ5°‘oœ9~øçÖ——¯QLBÅx")®•?„W0p ãÒËnÞZü~ E‹[LB‹¶º=h énG¼Vzùa'…‘Ïœ*¦¡‚F[óÞï•E†‡ b:âZHée4„´(ò™ˆ ˆéˆð`9ä³ò4Ý”§|ô l®‚ª öVXøêÌ!2‰76œ…ƒíÝèE×p*M@þr„LÜ/§ÓÐVg?XL\©¾ )»ÔF†”]0p ¤ú²[Ò–€®›Êƽ ˜ „:(²åÙhõeG¼•y«½–A+9h¾Ñœ.ÐBƒÍÙn¤:ò™ÃæeÀTÀUðìSÞ³±Êȸ—D@LGBË8ØŒ¶„VF>sH@LGB ]ãd½‘S›¿kV¾xÎ2`**È'§)7rjÒ”eÀn·@‹)ÃE•âoŠÔ_†DâFª#C"± ˜ ¸ž¯»6µ„ ºù…|èˆéÈ‹–qä.§D7R-{0p ´¨0šñyB¯´16AÕ¹i èÎ(Á®US×À ¿ñ™ãò½ÇãZÿ¨€©@¨`Á望ÝhYÝ\'OALG^¤ ƒÍh>YYÝã‘cQb÷[ÙéM±pZ@¼šÌ¥Öä/GH°9gìvRö2veÀTÀ5Ð3VàÔöñ ¨ã1%—VLBÅx"¾œ€‚ _0p â·aÞZü~ F‹[LB 6‡=h éî@¼Z û>.{<²Y/¦¡‚XóAKÅBÍ)1q-¤ -BV*öxä‘€˜Ž„’òž¼–½1 -ÃÉ.š8z«,œíªñÑ·°í-ÛþÆÝTS×@ЬBbp'%P!1XL\øÈj¬–€®7ZLB‰éÆo ø°<4›÷G È_TÍnKH÷æKÊ€©À¥â I¨æqÐÒ¤°—D@LGBË8Ú £ü`uFGŽZ ˆéH(¡“üìÕŽñéºãÏÍ Ó‹’"`**È$?grº²eÀn·@ zÂåâoŠÔ…|ÝA*tB¾® ˜ ¸š°Êµ­éwó\ÜZALG^´ŒCWù ü1®Ð‰–½ ˜ „†ñlßïßw/ˆù9tòØ(&®‚U2 ãÙ2˜1€½_ ÓÖЂµ­¦®Ö EO>®èù«œÝW?^LB‰Ãmž­æ —' ˆéÈ‹”a :«€y<ÙŒÔûF+ôÞP8¥+ þ¾~¸‚qh_‰®Çyc²hJ®P2Ž3C²î Õ)!YWL\=]†î||öëx>³3¯¦¡‚LAsrï g¿ ¹WL\ðfd˜Ð¿GÁªWSÀâÌnsZBú^Ü‘«•“–fçqŽ 'Ï) ¼2`**èQ5}ñ“M„ÒÉb:âZHE0„0è(9j% ¦#¡¤¼¯%¤oA¡‚€˜Ž„–ñÊ ÛÄ?¿ï;æg^¥Õ “‰—§Zò;ÿûÒUèͤpÙç:`÷[ ó=·&þžh Ï<‡q¤7ø¦´±§˜ „ ’òÈ׫~$ЕohVÓ‘)£”¸šO€§ >H±o´B/rÍGåÄß©¯ &ë"Ó½dH? ¶Â9óH¬#¡d˜ò€Œù'0JH@Ƽ˜ ¸R_3 PûJô¿š,zŽ2Odéyƒ\l¢˜ „ 2ùNùrº†”/¯¦®aX_3Ìt‹ß“è9ª€©@H`i·k-!ýÙˆ#Þ ­}‰j\™ò˜À=USPAÒðÅiUÊ\ËIALG\˸öåc˪R˜Û:b:JÊûn[Bá‹ ùÐÓ‘Ð2^M$U&ßÅÞ^b™0™¨?˜jz;p¾€@AüíŽé¹ …=…n³ ØýØ ¼Z™ð÷4®} Ûè“´] ˜ \žãÚ—aÜ[ºž3û›2`*XVeÊVúÉj_¢ý|’Ú—8¾Ÿ¤ö%Z'K}C6WA^”TÝ`KH·›É;—SWAÓÅùîzGÂ÷¬£Ž˜Ž„’UÉ–äɪRS¶%b:R°ù‘M)—†·}%+›ê'=Ê “Ÿ'9h=ç©O0ãµ`Þîà@o¢”7#Ô»ÝÂ̺ÞALG¢–»É7*ˆqQNØ’à@oœç- uÀTÀ5ð¬|Ú ìÈ`0¥ÍÀ b:ò¢e>ò÷—Ì|ãÖª€©€k`E9Ãæ†ìáj­+Êù¦ r2yëIÎ £õ¬¦¡á¬š‘–þ›r䇎øƒÑj¡8“×ò.0жs¢'¹½1 %ãÉ.XvÇ1\ݧ þTäT³›Ð–€îì¬z0p 㢜˜¦Æ%31M[L\ø(gØ…–€®ÑSUìv ,Q'Bä¯@ªv§%¤ûr·ü½«€©€«àÙ­5« …,s11 -ã 0Ž?VÈò˜s8[@LGB å^f½%¤k@Á®WSP1žåBt7Æ$e°Û-°Ú—pi‚\oj—ËÄ$â<.f‰IÄ2`*àø©Ó¼ApæçAóA1yÑ2ŽÝ¤{\èú¨lÙË€©€k`å2ÑìÌÃö8^gV.óMäÀ©‘–€î,,Ûµ2`*àh¹Lð™ó¸˜å¯»†¾ö*`**X¸ñÈF‡²Ì?ÄtäEÊ0܈擲<–*©"¦#ƒ=óƒ-,ˆáˆéH´Bƒš`±êˆ·Ârip’FA¼»Œëxb–kWÙÄ,W0p ü`$x[rlñOQœ_[LBÅx†Y±™[„¬X0p Ã:žaw[ü~¥WPLBµ`¨XÏ@¼•_YÑ’Õi ´ò„Vh´üÚ¸–ç±ÌÙVSPAÏçÀ”ÖñÌ¥ÞÄtĵŒ«…¾1·¬(ç‘ëž*ˆéH()ol éÚi¸BALGBËp®†ta—/à ò—#ãå{–€ž§VL\ø('fÆ–qÉLÌŒ•S×0.Ê«% 'lh0 lWs.1éÈÀßd˳°\t¿©šÝ–î'ÌAÚ2`*à*x^(¯ÔVÈ7SˆéHh›q”³B–Ç’ý³€˜Ž„²”@¯¶C˜Ê:-/JŠ€©@¨ K‰œ@\È!LH –»Ý«} ×*ˆ¿©q¹LLñ-ãb–˜€+¦®æëò¼Žô»y¾WALG^´ #wK&.ãb–o,{0 ãÙ$ >vroÁoQ%L&êO•CI +æ¶%d0Ç Mκ1l èÎYÁ>W»ßÂ^|·&þžXiÑ7ó Røs}dÛVLBÅ80uî>‰qÌJe*ˆéÈ‹”a`] -ú¹æÈ´€ØýVVvÓ11ë}­ìˆ$˜¬•‘CºÒóŽpÛ‘€„’qŒ2¨ë¸¸(fPË€©€k`çêܵ¯Äàkd“µ²su8‘YÉ©·5‡<Ê€©@¨ “ïœÕ]É©7Èê–S×0.‘êfºÅï‡QvðeÀT $°8¾Ûµ–¾‘rÄ[a%RÑA­¤€i®|]LB³ÎùšGúÂs51q-ã©oŒ--^ºæ8—€˜Ž„’ò>Ì–AøâB>tÄt$´Œ×D`âØ-ÇxYœ€øS‘ƒˆnÛ[z¶ÝM0p 㩘s]ÇL1çZL\)‘šËL;Ðõ`C«€©@h`và-!–‡fÝà*ù+ªÙm é~Â+¦—ЦÜr :GîZªM£·<¾w6†±G3­9y¨ /Jª§%¤ÛMÀVSWÁÓ“ÏÜwYéV(/¦ ¦#¡eÅGKBK·()#¦#¡„.oÀŸ“cæxó*`**ÆË›œÇv çûs–¹Øíhµ×|‘„‚\oêI Äæ,°½®ž³ÀuÀTÀ5ðDh:.çH¿›çór b:ò¢eÌ–ýIÊ·‚e/¦¡a8†Á÷dg“ÏGuÂdÂUÐ2·n<[B³’loŸäüó‘­í“œNk[L\+[‹žüIŠÊžÙ—SPÁ"ìKz¬ ,uRÓ‘)Ã;uZöœPI±o´B/SÎ×(*ˆ¿/vÜÚCûJô=š,šÎYA %ã{NÐ~ÃøwNÐÖS×@Ü¢;'bOpæUÀT T)hJ:Ðu›)uZL\øí VÔ‡E«^LB‹°»Íi éG¼Vöó •[OpUÀT TPË _œUm…‚' b:âZHmX´:<™ózOzœ9.SÓ‘Ð2ž€ƒéa‡Ï5Ûž2a·Û˜è•Óù ùË‘ñü̾f"ÇÁ×”S×@ ÃB*t"e[!ZL\) {f:‘²­`@Ë€©€k`ÇS½·¯Ä` £‚&ÜòùyQRµ¸-!ݸ%GPL\Íkå"zŽ <ù–ûU1 -ã3ŽqZ°õÌ¡!1 %t~Ÿ=íDõžÙÏ–SP1žßCt"‡z!Zìv ´Æk¾ RAüM‘²°¢œHÑVHQ–S×@³tù®)GÝüB>tÄtäEË82¶åïAж¢e¯¦¡a8ÃÅÁÇ\ž9lZ'L&ªOu~þÏW«C˺¹m ,gÁB“c 'ØgrHís°û-ŒçbñnM&ü=Ѳ°8¿m=s=Õ:`**Hà;×Zú$H¸#×ZRÓ‘)ÃÀ7ºV°õWá«q«#v¿•™Þk¯Rë}Íìd+˜¬™lC:Óì,lzP2|CÞt&E[!oZL\9A¨}%ºï MÖLOPÂDfŸo<9àQLB™|C·%ç!kZL\ð,ì™K~þ~úFÏQLB ®‡]k é©@¼ZÔ<.Úz>²{*¦¡‚×Ïü®hÁÖ\FALG\ ) ‹Æ–l=yûº€˜Ž„’òîË–¾Í—;(ˆéHh¯‰À&’C§çïêT¯F±LØý6èUÛùJ$ñw5>ا% ãqÞ8Á*`*àH±ZHÏΤ”,¤gË€©€k« 3ÚÐõQ`Ù«€©@h Û×Ãì´„ ¼ X*r 4FRûJ &‡0öhöÕ È‹’ªÃi év“=÷Ü*`*p©XhªqÍkÿ…–ªÍedÄt$´Œs `IVªö|äíëb:"Á¥ÕûF+ô’ê|7‚øû"ÇßFrÜø¹¦»`¦€„’qjö ,¤z2ì(¦®á ©7sí+1ø`éÑYœ.¶žÏ5O–ª€©@¨ ‰œû_ÈÁVÈÌ—S×0¬}抃Ÿ¿&>ÐsTSÀR+O0¸¬t W++­ jWh>Ÿyp—SPÁ¬s®ÉéÈ@ø”¾¹€˜Ž¸RŒíʪ3ŸÏ¼RÓ‘PRÞuÜ2Å\È‡Ž˜Ž„–ñÊ+ÛÄ•œ6>ŸÙ(Ö »ß½7n„WãÍáqZº«œìË€©€kW[Æäü:®…ŒÉù2`*àÆÕ–ÃŒ¶t}Xö*`*XjÅÍNKÈÀ ‚¥"Çc$µ¯Ä`rc&ša?©€¼(©:œ–n79sÏ­¦®‚çsY­ƒœ ö)ˆéHh¦VÞXVùœPI1 %4Oþ||húœžÙ›WSP1\Þ`âšÆÄ°Û-вÆp”€ø›WBÆÔü:®SŒ©ù2`*àhv.}[éq[¸õM@LG^´Œƒgþã:Åo,{0 £yô›ÁG ŸÓ”ÇF™0™¸Tl¬rÏ–þ¬ìí6>˜¦­% gÚÀÚ–S×@+!ƒ'߯uŠÏ)ÇbÊ€©@¨ Qü\dê“ q•\ PALG^¤Œ¢øhÔ7Vpøœ²YûF+ô:h¸H@ü}‘ÝaÚW¢¿4“µ±4;UP2Œâc|—Æx0p ôä0¸óm|®÷œòùú2`**ÆSPH4oãs½˜.¦®aXp8Lh‹ßãßhÕ«€©@H`ö Œ!+8ˆ·Bëú¢óWÝ=§‡)¦¡‚-;ò»¢ws:1q-㺾o !«¸{N` ëˆéH()ï½m é[P¸¸N@LGBËpe€6‘žŽlË„ÝoƒÝigCÄßÕøxvxœ–€î¼œ`0p ã º˜£ÝÆõm1G[L. û¸‚n˜Ñ–€®Ê–½ ˜ „aŸ²=ÜY]´T;9g#©}%Óè<öv–oÄÍ‹ò¢¤êpZBºÝ$ÇaÊ€©€«ài½)uZÛ6—GSÓ‘Ð2ްƒ%ÙYmÛs~ä/RGLGB [Þ€?ßÉÉéù™¼y0dy“ó¿ûøä4æË€Ýn–ª…‹°ÄßÔ¸º-fh÷qíYÌЖS×À“”y6²Ó£­pé€˜Ž¼hs„}מ}cÙ«€©@hÏ£að±ºó”ÇF™0™p¬ºmÏ–þ¬í-9즭% gÚÐÚVS×@«Û¢'מ=ÿ”Ã}}UÀT T;€ÚiÝY(ˆ' ¦#/R†v4ê¬îì9ç\€Ø7Za×Aã‰Mñ÷ÅÎ5»qh_‰þ¤MKãÅJÆvHÐîãÚ³˜ -¦—†ƒ†w~£ªsvæeÀT TŒ§ :=ÆGU1uZL\ðºm˜Ð¿Æ¿Áª—SÀ"ìnsZB^<§4ZÝœÇ1®={Î[xeÀT TÐFG~W´î,ÔÓ×2®n‹†ð`ugO¨Ó+ ¦#¡¤¼³%d`A/äCGLGBËpe€6‘Ós®NØý6Ø•Þx-”€ø»"ggp‚ä¤.:Á*`*àÆÕm1G{ŒkÏb޶ ˜ ¸†quÛ0£-]–½ ˜ „a‡j­«nûÆR±ã¦>’ÚWb0†±Çòx¼\@^”TNKH·›œÙVSWA«ÛBÝ¡ƒÖ…òhb:ZÆv´$¬îìùI&%eÄt$”Ðå øsr€vÉ1Ÿ2`**Èò¼Óø-æË€Ýn•ªÅ»~äzS縺-fhÏqíYÌЖS×@“”¾×¯%¤ÛÍùÐÓ‘-ãÀà™¿Ç¸ö,Zö2`*Æóè<øNvNs™Òب&õ§šÓ|òdõpÃܶ„ôG,X蓜ucØÐ3†`ŸË€ÝoÌÅüÝšLø{¢5wa~qŽ+âžP¬¶ ˜ „ŠqÜï>Y5\¼J_@LG^¤ ãþèjX5ÜsYQI±o´ÂnªÆ[xÄß;t‹&‹ºECÊ’Óxª^@BÉ8îiãs\ÓÆeÀTÀ5lä~7@í+1ø`²ØÒ7r¼sٲ魦¡b<ù†¤ñIŽwBÒ¸ ˜ ¸†a]ßj՞㪻oº¥ó™uÀT TÀw.ÏóIhO.W¦ ¦#/R†ot5´òè¶ ’*bßh…]Ö —Õ)ˆ¿/vàM;pІ”fgó‰r %ãˆ<äM§qõQÌ›–S×À꛺j_‰ÁדÅO¾™È£Ûš¿x0ãÉ7dM'r´²¦eÀTÀ5Œë›º™nñûaL=G0 lÿ¶Ûµ–¾‘ÚòúafõMÑAͤúh.¿]LBÍ—>ÒŸYåQ¨"¦ ¦#®e\ß-ÛÌS¬yÉ?Óƒ©¹‡‚˜Ž„–áÒLÏÌin;è¨v¿ vy0\½£ þ®ÈAP7ì-Ýi~ö5eÀTÀ52¢žI‘OHÏ–S×@ʈæÑt]Ð*`*àØYCïãí+1˜Á¨ ©Æ|j[A^”T-nKH÷ÙTSWÁ3zà–YéM(¡ ¦#¡e\Ç1NKon9í/ ¦#¡„ÍïÑÓ’Ó“¿«»½Ž’*`**Èü>§~grzR¿eÀn·ÀªuÂ9oñ7E |Brv&å7!9[L\ÍOæÊŽ ºù…|èˆéÈ‹–qôíÈ߃”ßDË^LBÃx† ƒÜsL¨N˜L\*ZàÓgKÈ`qšííBN(ºik è™6°¶eÀTÀ5°ŸèÉR~sŸ’÷+¦¡‚„±s%¸O‚rÁJ1y‘2 cƒ^ØÅ³pñš‚øc±”>ÛW¢oØÁ2,4Ñš/+H(G‹!º*—-¦®žÔ¯¹stûœ|f0㙤rŽeÀTÀ5Œëhº¥jñûaœg0p ¬ÂåëIêOî`;«€©@¨ °^XíI(©  ¦#®…T¸DEkOîkVRGLGBIyûaKHß¶åò b:Z†Sc´VìØá¾esU&ì~´\%%Wäh£û‚–€îÄÜS0p ¤Â%déR²teÀTàÒ°’ —{¶ì+©? –½ ˜ „¶ÛÍNKH¿Ç‚¥ZÙEIí+1˜àæ±·ÒTX¾XRA^”TNKH·›äÐl0p<ãôÈ}—Õž„º b:ZØtœÍJŠb‚ñYÉéÉ=o8-¦¡Ìïsp%§'!Xìv ¬*$n‹S¤$äèVRærteÀTÀ5ÐdX®`àÈ`\äH®€˜Ž¼h rLl%eÑ€VSÐ0ž®ÂàcG÷32a2á*ÈA@7:-ÝiØÁ*`*àX‰Ç7®Œ`<À‘USPAb¬¹ Ê'A ¹*”‚˜Ž¼HÆXÑÜÒâ‹Ç3ð:b:"úâZ":žá¿*&®ƒ”‰„DÜIŠ8B"® ˜ ¸†q™È‹ÚÑw&`çË„ÉDè ÛÔÓíºïÌ9·ø2¨ÚW¤kèÞCšÂ‚û„äEKÕµ„ô»KÎùÕ “‰?BöMå{fékÏ÷n)ˆéHhGaóþ Ðér¤Žô ðöµC „ÉDOÿsþΞßÍù»:`·[`…qö$1þ®HuÆœcs Û­–ÜÛ«€©€kàI£gþâôÈ\.d¥ ¦#/ZH” иx"ZR0™Ù,Ar”ïçÿîðAÊˆéˆ Ÿå{1?-ýùÅ2a2á:h±BtmãR‚?Á#÷¬2a2BHT6 ÿ$H "_Ý¡ ¦#/R†QY4¾¬’àÏÿ=QJ™±Œ‹!‡_ÆVûŠŒ&´0èiÚ-߯ ¡eÍÍ ±O`kÍ ±:`*àèQ2ôŠãƒ^ÏÇó‘?G™0™!d:wdLÎzåœX0p Ãj/V®@"­`{Ë„ÉDÈ 7r¼Ø…–˜Ñ¬l–ÀØ æÒó¤µÁ™<Ç•ÿ~ößìKê„ÉD¡¹· „°¸q¾ÑIALG\ )/Æ÷½ò™bc7åÙÒ½?™ò&¸–±¿±ï´BÃi®ßn0ñÎÆëì#žäxáÏ&R,MALG„[“syŽ$¾¸Ô–ˆîò}°o´Áf.ÝtÄßÖ¸ ã2«Nt Ò ñ!&®c\ÔñÅI´Dt•£ë*&¡ƒv°ª ¸£Å»Á¸žu+[¯–˜Q;`ñÈÁÉw¶…œœ|gôhv5ß㤠/Zª³„–~÷ßrg.&.„&1ótGÚóT_@LGBË0ðÎP²‚•?ߨZêŒÝ`BÍødë‹§h_‘ÑpçB϶âÔm|òôg#GžS• “‰2\t?!µîDg ö„Ôº@˜L¸ŽqÌ'¤¥èw{X• “ ×A³²¾%±%dЧüEêˆéÈ‹–qÌ×ÍjKDVƾL˜L„ŽÑšãÝ!¶qÂ)#¦#—’‰Ë|c¸'V-óÍÊNašÀdc?Op¾Ø»–ˆþj%[á:a2á:hiN˜NLã™ÏÇ”+uÂd"„¤M>ùIÐ\>® ¦#/RFI›7å'Á¢¦S^y)ŒÝ`\ 99úb,ÚWd4-ºuäšI}²6Ùð HÈ&zÞ¤Û§q¡Î7éö:a2á:è J˜Lãó?ûJžÔ “‰Âæ9Ý>Ï8¾I·× “ ×1, úb![ãd Úí2a22hÂM×J1°¢S˜VgÐÜÑB§èˆÆeH62çP&L&BIø²L˜L¸ŽqUÒ7» ¦qÑÐ7» ê„ÉÄ¥cW&}±z-}–íW0™4ƒ–hfåIßÌï¦ L¶^39•û2´ÚWd0Á‡1?Ó,w®0  /Zʾ¨%¦ß/s´©N˜L¸’q9Ð7£þ"Fý2GuÆn0¡†-XÀCÎìð”C4uÂd"„ $ßçñQà7‰ñ:a2á:ÆõGߤ“çqyÐ7éä:a2:øY¬¼EíbFF"oQS»Á¸šMõÝ«-!ƒ±•S1b:ò¢…Ä sà—<}gŠË„ÉDèO‰qÈÓ´Sü ˆéˆ+Ùhà]ÄFò°ˆR˜&0àV؉`·ß-ýé7x•2a2á:ÆåIßYcVôùøSböåK ŒÝ`\͹•í^KL×VÌà]Ê„ÉD(¡Sã.Ÿé©]û4Ù› ,(Hh!±oHÃÎãr oÒ°uÂdâÒ±„¿S2‘T¼˜A„ d c7˜ÐC§ÆÙã/ìŒìœãuÂd"„°©q6ÆËø˜ì›,l0™p¬éÓº°B¤oÖQ Óê ˜ãe\ÆòÍÀ¿ˆÑÈ‘…±Œòl9±̿—Üð·Dt%¸£:a2:Ê[-[BúÖ%—îSûN+4Š6çi¥ÂÄ;#“w0JôÐðŒZʈéˆ+aG“Ý"·Dt-2ú‰2a2:β“l‰éà-»ï2a2áJÆMߤ}—q½Ñ7iß:a2:–ƒxاµüIÇŽ¾âœ¿‰ÀØ ÆõlÜN€ÿÚh G Ó&g–ž1˜órúbF퀭¤gºgð/ôL7ZKš-Í¥#ĵŒ ‘¾›¬FèO-98¢0vƒ 5l‘€žŸ¼žar]&L&BY$@Rv¾~“”­&¡ã÷jš;‹–ˆþt\X™0™¸t¬¿Â5óÚÓ×~&%uÂd"”é4¤—×qéÓ7éå:a2:ø!´¼,¼˜ÑW̦Kaìãzh×·i¶„ B"9†& ¦#¡e¼˜ãµÒã½Ë””ÓWª§¾qv++Ÿúf‰¯0M` —±CÑî‰Z"ú —ìë„É„ë—í|gÅf¡_r°Baìãj–™DÜÏì[²¤BßR&L&\ÇJ3h“W’mø]Úýõ«” “‰P¦øn*ÚWd0ÅGF³Ø¹x†‚„2Ûüò:.ú&¿\'L&\G!ó™”3è‘°S[aìzhF<>;±ºÌ¹‹• “‰Â+àT؉UH/× “ ×±ÓŒºˆgr|VaZA·2®9únà³r Ï_Û@¿¾±L¨!Ù 7â-]Ç®¥L˜L„ŽòvÍ–AX#ï‚Ó‘ÐB&ú0ðé)Ü%ÇÁÄtäR²±³±nõZ"ºVlq0™4kNòbú#+»û:a2áJž4Ú›£¶'‚Þs…±Œëa5OߨÖ=}7U˜VgÀoôŒì’c­=ð £c¹Ü'Tæ˜PóiÜ*Yæ–ˆ®w…Üw0™pôÈ+x—G]öüQÊ„ÉD!“JHãnì8*¤që„ÉDè ð%OÂ.¢?¥s\&L&\ÇF#àhŽ7^ެ¤L˜L„~ø äF#º°#Xaìó¢g¼’FÓÅCT'ˆ)#¦#.…'0¢-!}ƒçÈ‡Ž˜Ž„–ñÜí=»¹>²«#¦#ƒå“ÛAc59UÉìðªû•–ˆþ”¼]™°o´Á&SþŠMGümÏshõ!»ã$cË€©À%b`¹ü–ˆ¾³Ën¨N˜L„޽jÛWd4@²Eý¼â°êPZbºoxÍq“:a2Jhφk§çoÁ¢î, ûÄú) ãj É»Gþ. 2ÃŽk…±Lèù̸UÆqKÄ`¬ygœÂØ Fy¶%Û¥‰]¥éö¸}EFý3›ðž†ÒÎNï®kš Õ “‰ÂÖw9v¸³Ó»‰®v¿ùQî*vƒ‰vx ‡©ƿ˲Îã9BÎE_Dèç\t0™p+I¸ƒi‰è*G·W&L&BGyOgKÈÀF\È‡Ž˜Ž„²$‚!OÏî®9ñ! ¦#®dã#œÊf0‰vÈúÆíjKD×®¢µ/&¡ã([¼–˜Ñû'¼ÑôN«6’šXsd§N˜L¸’¦?`GؾӴlèW»Á„ž— uC Þ1ê3Gö,c7åÙÀës™±L´Ã“99V§0þEé©o7›í+2šð^È:’ƒO;˰¿©I£0ñHÎv$\DwÀŽ„:a2qé8èÑj˜bìØóöH¥N˜L„²¦€$þÁŽ=C¿N˜L„’3roÑÑŸWfV'L&\Ç“[¯lY/fäõ/ÆÛùs‘vÅJ¶ÄŒÚÉkŠc¢90ðÉÓý–[N× “‰PÂ7 älÞÅŒÔç c7˜=ã˜âcbÙ©-Ûb1q)ôôºïðm ð ùÐÓ‘Ð2^ð¡=¦ç½70ÈuľÑÊBãµyTcìôº;½–ˆ®ÓCW\&L&\ÇJRM°íáÏÉþλÊ€©€‹ØHªÉíjKDW6Zû2a2:Xªió¸±T®¦šÐ§ì$ ´G)&¡„­l60\ô€7š¶ÙáM…q5<¯/fô-aF)0vƒ =$Õ„¦å éœm5uÆn0¡†.¾ÀݳãäÛ–½}™0™!lñ•·bì89l“¨v¿ ^1: s½¯óA-°á"ú?ïc¨&®ãI-[6úÑw`Ùè× “‰ÐQß5ÜÓ¼/ÌÇ Æn0¡‡Ì½óp<éñh¨c- ¦#ƒ]‰#?ÑüŒ[▘ќ'[ï“§v3ÙÑŸJgã]'ìmÐON• H¼-žÉ3‘‹é›—3‹2a2áJfšYòÚàœiÖŽ*ŒÝ`BÉΠ3šid€š:cßi‡ßvY …ñ·FO‰£-£§ÄÑȲoêÀ(L¨!é Ø1qÝ^;&ê„É„ë 5Ý0µ¯Èè«€-c§·ßMØÑê?Wؾ¼¯2a2JÈÄöœìh5ì1¨&¡ƒdMÜŠ·Dô'‰à[ʄɄëØiÖÄ-^KÌÀz9ãí4›>ì ™†F|™0™%õã‹-1#õ° »Á¼èg3Ð,ϰçb:âRx^Ý÷F·ÄŒLëÅ|Ü`ìzÆ«*´•ô,ú¾dcYGìv+ǃ_ŸÓYó—3d‰ä©%¢ë²›“ ×ñ$œ”?~ÝÏ;Å)‚ZL\ÄD2û”EL$Û-¾@˜L„–ÑpKÔ¾"#9çVfšÑÈ~Å™þ^óû*&¡„­TÜ>´¯ÈÀp;ò£Œø4:Äó…JJ‚HŒ¿ž‹ÍÇ­œ}þ3L±Lè!I´F MN쨩3vƒ 5|1•f ÎôýJš#„ÉD(!‹©œ¿w¢;¥Èù{°ûmð2Òy³ªÄøûÚH$§Øèöüœb“ ×±“,ˆ›ä–ˆ¾ÓGQ&L&BG}lKÌ`ô:óqƒ±LèÏ×q8ÒÃîû‘ÇJ1q%Mi¸]m‰MzÀ³#õ;XbvÜ-q™0™4Ù€ÿ ‰€ü}™0™p%'M6äÃFŸ îäÓµc7˜ÐC’ hóOš8ùËŒ}£'¿ˆæÜ•ëˆéˆKáùhß·Ú32­óqƒ±Lè!Ë °|üòò¼õAbüÁØñ#GÛŸì07z£2a2á:vmÏÉÜãÏ$¤?XÀˆWSqh»›°–ˆ®l4¬eÂd"t°h»øö9"°¼6šoV«úã]&ìmPk·<²˜ëM<—ÏW:3zËGÒ£0vƒ =$¨ ƒþ"F]3‡ÑÆn0ʳåàËÄŽb¿ñ“;'}äðK0™%d9i߉“†´o°ûmú–•ÜϨ©3övø=ñ°ùAaü­ÑÓÆnšÚWdà3ÐfòÄn®£#1¡†ö!~ý^3ø2a2á:عÜw~™š=avY&L&B ›‰ƒa‡f!¡['L&B ì»}m‰èÏÆÀê— “ ×qÒÀ¾Û¢–˜]qæjgæ5«Á»Ì¬žô™}K0™%<°Ÿ¿ýÌk0ç›ó$Æn0/zÆ}°‘óƒ…ÜÏØÓ—Âs¿¾³%fdZs`_aìzÈò%ÛÊ™N>ÐRFì­ðæaÿƒÂøcG Ï¼â›Ùñdp“uÂdÂuÌ$ãyãyç m\L\«$}‚ÅgUžÑâ— “‰ÐÁ2n‰ÚWdä!ÁxñzÕèWX-ésÍ^¥L˜L„¶†pûо"Ã&…gqs½!‰q5<ñ™oopf4ÛÉë…±Lè!y 4-Íœ9‚¬0vƒ 5|e.ŸJ>óŠ¢N˜L„²2‚dùÌN%C²¼NØý6xqhØÄ¡0þ¾’;€|öEt{>ä³ë„É„ë`¥¤Ý¾¶Dô=Xý2a2:ê/[b£×™ŒÝ`BÏxòÑ{=sL@LG.%˃æÜ®¶ÄŒf0Ù/ìpí™×+ ;ø –¸N˜L„Ó¿°’Ògž× “ WÂËVçÛ>©ÉwÜHŒÝ`B‰éƒÍ¿ˆ~ß>ÉZ*ŒÝ`”g{æg›X¼.»ÁD;4ÊûRÆ¿(= ìæ¬}EFk…lgž×Î…x$&Ô|ìXXQmØP'L&\? ¾|!ÇSNÄ“'¯&¡„ͪÁ'±ã©Ï®&¡ƒäÜö·Dôgpà‘ʄɄëX¹-;¹²|C0ÞÎÆª0„Ík‰µó„vh^=,©þkÃÖ×/S&L&B Ïç0×Â+„ç«~$Æn0/zÆy ´Å¬FøóÆ¸Ž˜Ž–W|ËNb–˜ŽüÍÉ?²}å§ù¸ÁØ &ô58 vtúçR´”ûF+üžuØ)ª0þÆÈíðÈ-=üfžP&L&\«Fùü…Ô ‡t~0¸D¬¤yý–ˆžltEuÂd"tPK”Mäʪ‘â­üîí{×¾"£V²‰\yÍsp«+©Gþü}ÿÌëW)&¡„,Õ µ¯Hß= áZy?—БWóËpƒÅÊk‘íE c7˜ÐCÒ:`ÀVZWü'”l˜ÂØ &ÔÐ(L,VrÊüùÈû8ê„ÉD(! PØ‘°²Sæ°#¡NØý6xùnØèª0þ¾XÉoØ4°²rܰi N˜L¸Rò;ìkKDßO‚Õ/&¡£¾í¶%f4zsZGaìãzh±ì7Öˆ°Æ!L«k¿i„–ÓÒÑŸå‚Á+&¡ƒfOб’ŠÔ?›É]¿L˜L¸^õ.½Xy5j¸´GaìzHöM+­,ýóÿš:cßi‡ß³ {JÆÛáyí\WFbüë°ΰ`eÅ•a@0™¸tlüÔ08Œœè}>sL N˜L„6uËá è…|v0™ãÜAX¾–ˆî4ìq0™p´‚sX‰–˜'vÆÛá••Áîo¤êñó™íJ0™%<#›ƒ¯x ÷ö(ŒÝ`^ôŒcú`#7VóøùÌ1}1q)…ôr^ánü´37»Á„2G[ÉA?Ÿ+h)#öVèíܸýCaü‘£ÖáZ"º“qt“eÂdÂu°êÊšÞHícÈL—SAª+‡mm‰èû/°’eÂd"t°Ðù3‡Î7V]ùñâՕѯÊÇÏgÖ “‰P‚ÚnÚWdÔF“Â󤹊ŠÄ¸šB/ï\ÜxÕc¸µHaìzHPM ­züëÚ¤¦ÎØ &ÔЕº|rÂúù&wRa“ÀuÂdÂuðS¶è/É Øç”gcuÂd"”°™kβîä,fYë„ÉDè 1}·¯-ݾˆV¿L˜L¸Z_8lQKÌÀ®L9¦¿óúÂè]Híßçsð2a2Jx¾=¯û 7Î)ŒÝ`^ô cúol$«üûœSFLG\J!í;góÂ&;óqƒ±Lè!Ë °•ìpòsÊ¡1±û­ôrr<¨¡09C–îZ"º Üd0™p¤¾0¦Œqõ_Ì—SAê ‡mm‰èû¯lñë„ÉDè`1}·Dí+2òÙx¼¾0ø•ƒÔþ}NyõU'L&B [CL9¦°3ÅoL OàÂÅÏ ãjx±`¸~êàE|aŸ“ÂØ &ôŒcúoL -âûœòªHaìjèÊ\þÁN1O9’T'L&B YA:ú §˜1]'ì~´ð/}T_¤X0fŒRÈ3ÆuÂdÂubÁa_["ú ¬~™0™õ=—-1£Ñ»çþ%0vƒ =ãÉ7GzJtÊq01q%´XpØÕ–˜Ñ l1;‹ê6¯%¢?1K\&L&Bé£Ç'…|Ÿ3̿˄Ʉ+¡Å‚c[T †Dj‚ù¸ÁØ &ô˜>Ú|ZÄ÷9çX»ÂØ7Ú9éMÖ¸S_a®·vÒƒ£n2ÚWd4϶ìä9]¸ÉXaB ‰éCü$…|1^'L&\?b þòdÇç<«&¡„Í\³Ý?ÉñGÌåÖ “‰ÐAbúÿÖÎ%Ûq\gÖâÊÙzk>Õ@ûÌ¿q󱨋 o·r%‡$(€$Ü_["nßEpý:a2á:h³àð¢–˜Ž¯Ìà+´Y0F—“4ò}ÎsŠ-uÂd"”ðœ>¸ oâ §ò*Œ 0/zú9}ôHÖÆ÷9眾€˜Ž¸”BÙ÷Z†ÙÓ±Vg~ 06À„òY^¹² ÿœScb_\…Ìg(Œß1¶1×RKÄm@Â0Y&L&\ébŒ%ã³ßc+ÆeÀTÀE.Æá­-÷ñ ¿L˜L„–Ów'jïH/B‚yñ.ÆWH‡á¿êÞŸz™0™%ìbÎ9ý¤ó – ¸p ³Âü¨9…Òb:ЙÞl'â*16À„’ÓÏÖâDo¤œ¾ÄØjè—QùÎ܉ã=à „ÉD(!_F¹íÄíü —£ÂƯA{ à ‰ñûEúCÅØ‰û7Îoq™0™p¤qøkKÄ}Û²Ž2a2:êk.[bz£7}ÝKŒ 0¡§?ùÆáH·¯Îg+uÄtÄ•Ð~Äá«-1½ ŒH¶IÖ=¯%â~b N\&L&BËéˆø¤‡ïsyäx_&L&\ í §3þah¦fÉZƘÐCrúèù´ïsyf·`”ß6åß¶Ñ|36ÀÄux힨Àø¥{zÝÎÚ;ÒûVŸ¥õf8ÈWbB ©7äú¼÷o4Äò2a2á:øîWŒålgê’–Æ „ÉD(a³jÔÁf¼0#)&¡ƒÔÜû["nßEŒHeÂdÂuÐÆ|’ö0æºÎï]ö¼–˜Þu&¸¯käû$}ŒŸKޝuÂd"”ð`+(aõ8í^bl€yÑÓ¯k€?Yãç’WPÓ—ÂKß¾µ%¦cáÎü`l€ =äÓ*;ì“ ;'%ÆÛiìñ¥%â6¾@Ô«&®ƒ´$†êôùì7 †ât0p¤%qXXKÄ}8c-&¡ƒ•|À·w¤ˆÀ#hKâöMÚ?—-߯2a_\ƒN¼óéãwŒ×ó…Îtîr>üTbl€ =$±ƒž6ñýû"&5uƘPC?A0æ±-Æ D¼2a2JÈ'H®I;q sMZ lü´ñ/lÌ”¿_¤Y0”¸óçì1eÂdÂufÁá|-÷±¼²L˜L„ŽúÂË–˜ÎèÍMâ%ƘÐÓŸ}âp¤{X—±e~ÑRFLGê?ì猲zí/VÜÓ›ŽdûžØæÚ%›÷Ä6¾‚y× ûâ,?é·Øt$î­8ÀTd"†ŸkžˆÔ “ WB»Ç¢­ Í¡ÉøÆ˜ÐC*Œ&Þ)x@M±o®CϘ†–ãwîê/›è®^0Ù‰VœáŒa‰ 5$«ú‰tñÅ }0™pËZ5¦öŽtîzße Ó…‰í€]s¥N˜L„6qÏõì‰í€…zv0™¤v°Bl!½‚?Ä–2a2á:x?bw¼–˜Ž{9ãס}‚?Ä0ÖÃwÍ©§:a2JxEf{´/œÊ+16À¼èéçôщi;Þ5çôÄtÄ¥ð-оµ%¦g­0`Bùªç£ç_ÃÎI‰ñÆv»ï·DÜú>F£2a2á:H×[¬Oýž´X.¦—ˆ™u½u k‰¸ÙXë„ÉDè`9ý5çôgÚõ ú™wp]wPSgl€ 5üÓ Ç¼™m1^sÄ«&¡„|@¡xf[Œ¡P\'lü´ë+lÌ”¿_¤S,ÖrgÒÅk¹uÂdÂu°N±kž€Î¬‹+ze™0™õÅ-1÷£:„KŒ 0®‡wŠE7"»kqóN±x¶!uÃc›EÑðÊ„ÉDèàj¬‹ëzæ!\&L&\ í §ÿaXF ŸÂ.16À„’¡Fkå\·üi 0öÍuè‰É¸oPaü:´¨ gÙJŒ?Ò)‹À3éâŠEà:a2qéXè>K  Û¹=S¸¨&¡„Mݲ#/l$T ë„ÉDè`YÝ3½Y ëâ ~\'L&\ïë.ÑÓñÎøuh§Xôý…uqݦä+uÂd"”ðŠÜJh¶5Ä.16À¼èéguÁ#ÚÃuË+~ÄtĥʋW΢%¦c­¹)ŠÄØzÈœ7W…½s ã?Œí5ußo‰¸õ}ŒFeÂdÂu†¬X›[úíR±4WL\kÈêÖq+µL˜L„–ÕõßÞ‘^   Y?Ø7k–ºy— ûâÔí`ÿºÂøãeŸ|(­3½»œ? ƘÐC²º8èy Ó-×1ƘPC? 0汜ۖ#^™0™%äÓJ… ÛÈ ¥Â:aã× mOq“¸Â\÷ke­R¡š·²6¦PÍ«&®ƒµJݲ¯¬)xe0™õÅm-1½Ñ›ŽÞ’`BOö Ãq¥MLŽÉ}ÕRFLG\ o•ê¾ÚÓ›[d/^ÙF÷¼–ˆû)kvâ:a2:hº"þÊÚ˜nG“eÂd•ÐV©pÀ*òácLè!éfô|ÞÂtˉ'…±Fømû#ÿ¶…&¬œ±&®CÓ<°¹\aü‰Ò6®ngíéÄôY^qÌÍJL¨! w¨Ð®¬Å*Thë„É„ë û?Är¶7qÏ)Ž:a2Jج:'ÜW¶7J uÂd"t„»{KÄý "R™0™p¼+ú$oãêŒ_ç G°¸çµÄt®ãL\‡&ö1²V®{Î?Õ “‰P ™ð%BÛ¸ÂiìcÌ‹ž~b½˜6rÝgSFLG\J¡ö›“+Ýœ Q$ƘÐC>­À“é^ÓŸsv_žL±ñ«lü|fØ;§0ÿs†|Zí¹â°±Ý¦Žë„É„ë`íb¡n¼‘f®P6.¦.‚µ‹uom‰¸• Ž_'L&B«8¸µw¤!³ym´],Æ•µrÝs¾¹N˜L„ö­âþÐÞ‘Žq£¥ð*.lßWWà Ÿp0ïFÛ¸âb'…±&ô°ºX oãºçåN cL¨¡_`ò7¶ÉtßSÀ¯&¡„|A±|c›L¡X^'lü¼õ+œ=¤0~¿X»X¨go¬•+Ô³ë„É„ë`íb÷œsÞX+Wtý2a2:ê /[bz£7×5Æ×Û¬¢‘ý•8„yWV¼Û+éÖÒq?ÿÃ+&¡ƒ–0°²Ž©{NÖÔ “ W»²Ây¹ï– gž+Œ 0¡‡”ÐZy·Ôý5uƾ¸ÎÎÏÌ…s ã×á…]8†Haþç IžC!|g½L¡^'L&\Ýhˆcg›G uÂd"”°©[.èîl të„ÉDè Ésw¾–ˆûiBöã:a2á:x¿Tw‰–˜^$>óux¿Tðýõ2=²ë× “‰PÂK’ÙówÚÇ;V(Œ 0/zúImôHÚÉô@1eÄtÄ¥ê«ù wç»3¡ý†ÂØzÈœ g½(Œÿ0¶ Ô}¿%âÖ÷1• “ ×ÁÚ’B t'MC¡ZL\kKz€±²–¡h¬eÂd"t°Üñ¾JÛ’¢Gж¤웵 =r¯NØ× nKýæºc/.Áïoä ½'ƘÐC²º0èÞÈóÈŸ cL¨¡Ÿó¶ÉôXS`©&¡„|@Aò`›L¡ Y'lü¼ù'l-W¿_¬a(Ô ÖÌj†uÂdÂu°†¡î|-÷±%{e0™õÕ}-1½Ñ›³º cŒëám6ÑÈþJ¼/'^„í•tki‰¸Ÿ‚á• “‰ÐA³ºXYÏÌ#/î¬&®„÷å„“LÞ/Î{V`BÉꢵòÞ—G.c+Œ}s~j*lœS¿/kÁ)…ñ§ÃºRBð`#¡ X'L&\ßhˆƒmüi"ó.Ê„ÉD(aS·\g;Ø&@¨³Õ “‰ÐA²ºî|-÷Óðã2a2á:xWJw‰–˜^$Î NÞ-|ÿd¼ü®N˜L„žÕÍwìä]¡Ý”ÂØó¢§ŸÕY&L&BG}9XKLgô:ók€±&ôôg…ïÃñïÿþáCëoÎäg”TÿØ”?þû»§ÿûýßi–Ø]´%¦áßœ÷/C&§îp-·÷î»a2:hÒ÷=¾¿0÷cv}îa2áJxkÄ÷¦!ÿš0xKʼnŒ 0¡‡$}ßþ…è½û¨©36À¸šé(ŽäöNt õÝU¾¹K̼_¬)â{ò…¸_æüì˄Ʉë໼Þãâ sï­o) ‰0™%l†º‚6{\AG•0™$©ìÎÚq?¿/&®ƒ·+tj‰éEzp.Þ®ã k%xy,– “‰P‹hüìyÁ÷&"cÌ‹ž~R=’6Y&L&\mž£·%¦Y.æ¿Æo„ˆNšNÏ\‹©&¡„×nÎ|—yƒÂ÷óûEƘ=Ýœé7b- §ç¦Œ˜Ž¸”³¼l­½#÷Å(\O' ¦#¡¥;Güà­¬=áô<³¹ÖÓ‘ú›é‡-ü˜Ú÷ÓhD&®Ã’BþÓLG®G¹®†X_[ú=±¼VL\éjFÙqÀ²}× “‰ÐAó¦¡yÓìD ïjAb!§)—ëë„ÉD(¡yÓ<àÖÕH@LG\ /ù²‹–˜Þ“Üò{,06À„ž~Þôƒ±Ð^ƒÓ4å·L`l€ 5Qõ*ɤbÆíé¼6wÈm‘pšÓ ¡ ˜ „pöé• — ÙëŠEÅ:aã×àOx·Æï隈U¿…t4Ī_0™p¤kbøwKÄ­rŒ*eÂd"tÙ-¼¾tß”W ˆéˆðÃÖÄÅÓ‹aŽ-1IêÏBÜVâ*ëÒµ´º2a_\ƒN¹×ü ëHÜ-ž/‡Éé™8M05(&®„÷e<àýâý˜Œ 0¡§Ÿ/ÿ`Þ´_â4ÁLJÀØ×Yùé´phŒÂ\wm¥› Á1Wºí>‡¤Õ‘¼‘c%½±X¸’¾ŒX,¬&®c¢óÕ5Å—¤w·²“­¤Ÿa8FKÄ}Ï>V'L&\íg£«%¦'sJ`åý Á/WÒkpšòâ€:a2Jx]m%4güÞIdl€yÑÓÏMã¸gÿ.Å}•ëˆéˆKáu¼þìé|Ãú3±/®Âϵ…s]Æïi釅¹µßpëreÀTÀE–~1Š["î¼¥L˜L„–8õw¾½#=/†aÂ[ú¡ƒ‘v{ÓüÈ÷«LØ×(OsLG®ûµñªÇ{wˆ¦w÷¤Fal€ =$¥ C~£ö¦9§8ƘPÃRš`ú?Èí7û<%3.6|ÚÐP¿[¤ –˜6Ò KLuÂdÂu&xá-·ÊÁ]ê„ÉDè(/mjïHï…‡·«Ž˜Ž¸Ú/FoKLçÆ¿œÛ ·l!ù0eÂd"tÐlÆÒknšóƒ:a2áJx?»Æ#ï3k ƘÐC²aè’´ÏÜ4çÍ cŒòÛò&±m£ygl€‰ë°¯i]ƘÐC*à’m>8-y…ŒÂØ7×ágQæSgįBkšðý% þdHB¬¤9 V€ë„É„ë [²À÷²•iÙ²‡USPAríP“½ˆÛÄÔdë„ÉDè ¹vw¼–ˆûH>\&L&\m>îÐÓ‹ÀyåÝÁ›¢ß“Æ€Í|¿ceÂd"”ðªâµš¦%æ^=6þP`^ôôóÙè´Çß’'øb:âRx%6oûAz®šwfˆéHh!ùl4ÊçŒÏl•cŒðÛ~ºç¾ü6z²&T¢0~§ÙÖ<b-2q‡ÀZ&ì‹kÐTßc`ü~‘þƒXf>úݱÊ\L.'é?¾ßq[s4ª&¡ƒå³Ý%Û;Ò‹ÞÙXOÚæcÞÉZð­Ïñê„Éċټ.¦÷Õ‘õ¤¥UðUq5¼|]NÚ€WE)Œ 0¡‡ä³ÁZNÞ€oÍ+ƘPCóÙn®-1· ùœè—ažöü ·!oÓ¤§ ˜ „ öe˜ËÊq?EÊ%ß:aã× Í÷ðˆ…ñûEöaEö$Íô°"['L&\kØçÞq«#K™0™åe íé Ü5Ã:b:ZØÇŒÅ•Oð—¦G9°´ÄôôìYm Sgnß™-¥“Âd"”Ðé ÷Zbzê—ü6 Œ 0/zúEÇZžÚ¶s›áÁ”Ó—BeÆhDW±ä5ÕÒ ,yIµ‚˜Ž´²–òIvÃËL¿¬·%±Fùmkþmôðk8óDbüN³<ô· ú_ä8)öÅ5èlßï± 0~¿HWUXÕó|ô{žÂ¢ž:`*à"XWU.-·²1æ• “‰ÐÁJ›îÅíé ´oÚUõCdeO·-ÇÕ2a2ñ¢D7¯~£±ÒU69k« ®†÷UM=Æùû(×.òKGLGB )k¢­ð^§ÛžÇ¤ÀØjè·´kKLï=3¦‡Kàd„ý°yŽTLBû–Þà^±ïÜ-È2aã× }^áhN‰¹îדô†……9NÜ®Ÿ²£<ùiÿþ½Œw…±FùmÏž¼Ïï.ÁÛöB¤{²“Üíã*ìÓ&G :a_\ƒÎ ýÛ÷ë_f“ÚKKÀý@ÎŽWL\mp MÉþ04ϘóÆ cLè!eLŒ§¼ñðž¿ƾ¹=TŽÂ“¿küØt2~ìº,]4”W3(H¨!åżÄʉ۷&/±“ ×ÁpOj‰é=ð1z@ÎÈöýíÝ_=¹ ˜ „ òå‘—ü8q;³ÈËqÂdÂuðVÊî-11ïŒ_‡¶Eþàü¬eñž+,uÂd"”ðpÇh»bèF(16À¼èéW‹Ð¿hÃâ}ÍVGLG„¶e×£ëIòîƒ ©\Åt¤½#=›¼ùaÄt$îùBBç;ùWÈž½O`ì‹ëL´­(1ÿs†|íx„iAô¿D êÕ “ ×ÁZ<ê‰4`†EeÀTÀE°Ïnú-·²!Õ “‰ÐAm%[äD[<;âW™WÕ¼~ÞU.ä?‰F«K‰'Öz¿Fî/™0™xQRv®–˜ÞÜÜŽ®'È«{ÄÕðbzngæLïYîyˆ Œ 0¡‡T˜ÐóxWèý5uƘPC¿¿®ßÞ‘ÛØu<ÒL¤ ˜ „ òý‹/&v ,Œ¨6~ ÚãŽÿ“¿_¬/4¬[˜XÏfX·P'L&\ë íÞÚqVÁñË„ÉDè(¯coïHgàæSÄt$´/‹üÄŠFŠÀØãjxÓj÷Ô–˜Þì|˜ŒqÀ ÀN­@.&¡ƒnæÂhÏZ=—ý’ “ WBÛICë¤? Ëkå¦lcLè!Õ pð™¶€#ð$æúe3?(âÈž1óƒ"À3fZ™Îû_$Ô ÔñgÖPêøuÂdÂuУ &Íä ‚cNŽTLB›æºòÌŽ!€šo0™dûWKÄí{®Z'L&\;¡?×­ç—ãó?® Heëêß›ø÷.€vÍÆ°0³ŽÖ¹Ó´@˜L„^ºÈS›™v³†FÓcÌ‹ž~é—ö³>VSFLG\ /T‚ë„_ƒ7>ÏýIŒß/Ö,е kdÅÚ:a2á:X³tw£–ˆ{¿ÏY'L&BGy‰d{GzwÍã°Ž˜Ž„2SűÈ7$g)cŒ«a’Ý‹ZdvþX&L&BÍ(cÜbíÒº¾Œ•2a2áJhKvèˆ÷‡¡é†\±R`BÉ(£ó¶çç3?±o®Ã› äãÁ$Æïß;ìc¹%¦7«Ÿ¡5E8“A@B ÉvCva­Ï¡['L&\Ý‹qŒìOý×vòÕ-«€©@¨ ³I¨".lw*Të„ÉDè Ùn÷Ö–ˆÛ÷¿L˜L¸Þ^Ý}¨%¦ã)Î\×Yi sŒ,+k/~æC~ê„ÉD(áõÃ\éXikqh´)16À¸Z@„s+ëz–ºÒ­~‘_:b:êÉŒÜeåÇìÃIR 㿌í7uomAôg®à÷uÂdÂu°zÔWÒÊ‚eÀTÀE°Ž×n-÷V æU&L&\íEýÁ¼XŸè3§'ê„}q :̇@ ˆß¯BadÍOžön†‹cLè!Kƒq0òÞÍg.A*Œ 0¡†N‰·ì‘dãä a¨ ˜ „ 6%Î…´•m›„BZ°ñkð~ÒpäÂøýÚ×µ{¿rÁîþJyt€_*`*àXm(Ø­¬Ç5ìê„É„ë8×£$¼%àqŸ[8÷ô4êˆéˆòÃŽôYñ3g—VÖàÃ\™0™å%„íé8o>Û[ALG.-o"Ža„íÞxÛqŠÛc®¾`¦#¡Ÿ}5䈸±=•ë„ÉDè 9u˜xm¬ñxn.&®„67‡®|–-É]U%ƘÐCrêº6Út|~<@M±ÆÕL|ˆ¥Hq!¿Ì!lã'vÃy ãjægÕ0ZBzjޤ†VTá00 -$oõçµQ‡ús0™ptÿ"D×­¿»p~?¦|ÇÊ„ÉD(á•Ð ”Ð|zn(*16À¼èé'áÑYõù1gƒ¬#¦#.…o.ݳ»ðmŸ{¶—:b:ZØÇ%Ýô9?òÂx…±o®Ã[¨ÃQ~ ãwl.€Ô‚è~R|’eÂdÂu°vèPÞH³r¨ —SKÄNÚ¡‡·¶DÜÉFǯ&¡ƒ¬&'jïH/BfóÚy;tˆ+;iU>?r N˜L¼()DK̽w£©ì´â Ge ˆ«á5Wè_µó6å¹™¢ÄØzHé¬e§mÊçÇ–ÜEal€ 5´t“CþÞßY;?rÀ/¦¡‚|A~gûj¡F_'lü¼å8œå£0~¿X›r(£ï¬…8”Ñë„É„ë mÊÃ[["î£8~™0™åå”íé¥3.ä—Ž˜Ž„2ñƱHwWΜ£P`\ mžÚÓ›½€“]œáyq6).&¡ƒÖ 0Ú“öÙób}™0™p%¼E7´ºÚyëlhˆ¨06À„R/@ç'Ãv…ñ_FwOƸl‰éÍwÁ3h}.H¨!ùr¨Fﬥ3T£ë„Éĥ㠻&!&ý=ó¿¾®/© ˜ „ 63Ìu؃íh„:l0™ý|yøWKÄý,$»j0™p¼û/¸êA:óÎÏ|RV0™%Ôé ßÍÁ»òB9…±Æõðž±yUæÁƒÕt¯%´eÓ‘PÏf­àt§åüÌßw cß\‡Ÿ¤ ;áÆïÙ9~Ü‚èÏ(1F” “ ×ÁZÌB5ò `¡YL\i1Öqkßh¬eÂdÂuðæ¯h¬¤1ëüÌ“Û:a2ñ¢¤jg·«&®ƒ7η{’¦vó´e%eÂd"”°Ô"œá̽z8¥Gbl€q=¼Z“V ý¹L?µˆVG÷å~­ b:êÙ,|‚ï8ú×ãøÕ)ÆWÃv¹O¶ È ¼»L˜L¸Ž¤ürAå7ÑOÈåzJ0p¤q\XKKĽ­‚á• “ ×A[º}0<ÒnmžŽlweÂdâEIyHµÄô&œ0Üiµ&F(—–‰7t;ó‡ÐÄ­å£%ƘÐCòw0ä/¢³ó§ÕàãEM±Fømó#ùÅD7gå>èrk÷sªeÀT T°‰w®:MdãVê„_ãI7 û´Æïii‡…¡‰´›ÃÂP0™p¤¥]¸qKÄ}$Ê1¢N˜L„Žòâ¥öŽôî…üÒÓ‘ÐÂ&·0ùƤyÊ#E`l€q5 ]èà ݶ1B`l€ =d²>ƒÝ³MPè÷eÂd"te×k‰éÜ/tJÞ g<¤Mß<_«&~ɄɄ+¡­áô¬? I À ƒcLèa©_ˆ|•ÿ–˜ÎL½‰¤à(? 5$õ 廉´¨Ãò]0™pt÷Æ>²Sé_sÎ×ÈWLB™B©kbû” ÔU'L&BIýÎà¤EÝ·+6~ ÚÒîÃLZ`®û5Ó6xèª3iQ7Ïù{¸N˜L„žbι£™¶§ƒé$Ƙ=ý|18ÑLëoéäø‹Øo'!ùàx0™d^4óýVó–ÜHal€Q~[^—5³½`îß-2Í1¥NØ×à3–=ßcñûEZúaÁoî7ÜÃz_0p¤¥_X^KÄ}X#.&®ƒ¶ôû`ĤÝÞüÓ‹õEI™0™xQ¢w¾] ­ˆUá?q5¤ÕÞ‡AB[àÍ󙟋ÀØjè¦1·‰–˜Þ³kyÙ4Ö_íèÕrP-&¡ƒMðs•sf[º ÊY'L&\iT‡™4‘Ãa0™p¤W[¸QKĽƒG– “‰ÐQ^ôÕÞ‘Þó…üÒÓ‘ÐÂ&ž0FøV¦å‘G‰ÀØs©Yhç¹pÕ–˜Þ'dvâ…ôßÂñµ<¥z`ü—ñÝ*~×Zb:1™ÿ¿¬d'Q(HÜ–d˦…ô“ÂS0™pto ¸ÌBö‘,Ïä1eÀT T Å‹…í"âE0™p¤Óχ·Šöàùéòý"¤Ž˜Ž?,¯õ]è~ÔŸî"*1iïHo¦úùw“‰¸[$¦â;Ïwj,K~ëÆWÃv„ø˜oAô“&èCeÂdÂu¶@˜&_úM{0ƒ]LBÍwCmûb:É ¨m+Œ 0—ž•¶ûZi{ ðU1q-ÿ³)þµÒÝú`Å+ß ãC¸%¦7YËö²²Ì:œV« ®f¢©†d®+iÁƒÃøç½Ä\ƒMZr.ze6 O\'L&\Çò,È–˜Ûô%Ù)&¡„¤@ Q¼’†2˜(®&¡c;Ɉ‡50벓‡èÈ/1q1˲ÓSŸÓÚ cLèYm Óæ®x¦”€ü/âF9 s÷Jr¦N˜L¸¶ìÝè ‹âÖ-yQ0™rÀ8a õ es°Et²©&ùWÝOnÀ…ÊDþUœð»»ÑJ<ºÐFªäëž•” “‰PÂ*ØžŸ!ñqu“DK«ôê„ÉD9)uü$`¸—´t‰ãvÜ>²î"`*à"h)÷ºž#^È/1 -,æÀ×?®9c®06À(¿-ç§¶6ÓC ‚L!X• ûâükBƒÀøýz©Œ÷]¢½·©ó-àâß›ø÷—‚óAV5¸a·DÜû\#uÂd"tœÏ’qµÜ¿TéI”S×ðü7úèÃk ¸½Mùm*¦¡¢ìT'_N .J÷âÉâj&º:aÍ1ábzj²œììsŒ¢'9™|{¦ZLB™òC®ødKP!W\'L&\OÈ>²ºBú3 ˆéHh!s|&|­ß–“a cŒ«Ù¦g-ÓÜ‚˜º“lÈ}× “‰ÐAæY>¶B™áx/&®ã|Y ßUÞÑÙÕ°Á`”ß–O9ùªB‹[b:ƒ#Œ&µá¬Kù¹Êüû_ÊwÀ˜ÿ9Ãâ]vØ ¹1ëû«¦¡‚Å»”œwâÞSr^ L&\ÇÌŸ`+ÎtÒàyKŒ 0¡§\PmïHï…œóX©#¦#¡å(®–˜Þ=ƒÉŽìÅw™¥»mùm`\ [/èc¹AbøK™0™p?Ûyb¸%â>"§tµ@˜L¸~ìª?Ö˜^”„÷‹f#óYi âjŽ~EÊñ|²A¼çÇ"06À(¿í`NÐ3US²&Z€ù“„û#[0lj±ecËs’T ì‹kœå·Ë¿Î¹—ßH`®çò|ô‹Ò9[ú f‘~0™pÏ›žij²%àï“ðli0 å5íéyÞ†º€˜Ž¼hé¿W<—u'8ð<Š€©@h`3ÈlYO¾²vOù?‰±&Ôp‚±þ|©AÜ„+‰l}­‡†D áªN˜L„n¦yq1½ûuäûõ÷(´‚M´þÇGçáOi¬ÔÓå‡ÍiˆýÍÖŠk&ë»0dý\¥÷Xòìîߪ½ú6Àøu–Gõ¦™Žø=ã‹ÅÝ0Zb:ñÍŒòî} 5/ëLzNÞpÿšƒK0p ˆy|ý ½2å«Ðo˜REÖû’͸ ˜ „ òí‹ N܆î\\“‰ÕÛÒ{æ?È:ââOž“Ì5 ã7€'ð¯‚u{G:op>9[ALGB ™âKÉÏkÝ×üZ Œ 0—š‰-Ë÷AÙ‚ 3ªluÂdÂuðÓ]]{KLoÀ\ÌŒë§Yü|¡‚øUžbʉ…ñ;M—ÃXžÈ"í=ä2`**XhÉyõ‰-¸†¼z0™p<é;åLדB5U@LGB sVx&|eè¾ç§"06À¸šBÊ7×"/¦³j‘ cLèa‘†=[íŠã¾L˜L\:f¾®ÏŸeKLÏõó{F0Áa^ âjèz;ÿ3Y ·iô—SPAÜrG3[ ¹£:a2á:þöƒ­«–˜ÛuËû™F|0™%<¥‘«õÓS¿€–:cŒë¡Ù†Ü æBzCkOþ% ¦#¡…ÄI-|…âãE`l€Q~Û3³íq–².-·ÉÖœ*¦¡ÅÓ#ß)¶ª»LØ× ñÔŸŸ 0~¿ö+f¹‡µDÜÖ¢ÐY˄Ʉë8žSéEiÌ${t¤¼¿€˜Ž(?,å£çc-[wKÌíƒ? ¨” ûâgU¼éˆß¯ó5RYhÁ°SN¡¡06À„>ð!@ðEƼhÂ1ïLTKÍÂütk‰é©ÉÖ·ÐEÆ0yYÈàcMS—2`**Ø$?§¶RuÂd"tðaœœòBz}zÏæ ˆÿ°ç^õ—–ÞUR™A@ü‡ýá¹»¶ Â[>…Uðã:a2á:xVö*Y¶w¤3tó±Ë b:Z޲{·ÄÜ?Ç-Å•:a2ñ¢„|¯ð…ØÇžE`l€q5…”|^~r1½g™×*Œ 0¡‡|æxœ5äcW™0™p|á·?Ë–˜žU^ÌŒë§E€|¤‚Ä8úI$™-÷ ~Q&L&\]W.NV=Göð*`**Øl*§ã¶æÒñuÂdÂuœ³’2a2áJøzQ:F#…–cò©F âjè*Ht0²Fñœ²’*`**X¤Ï…‚•­P„$~0™pû2ÕRå-ˆ8\ùÓŠoHà× “ ×ql†ªD?Ó€c½L˜L¸šðÌýŠ.¤7 öGêˆéHhañÆ_,yæò cÌ¥f{,[íl‰èì§8sÆLal€Q~ÛšÆØÆ–¥ºKÆUÈ윻NØø5žSY» 0~¿ØÁõa½ˆÛw 2¬uÂdÂuðe¼>ZZbzó<’yK)8½A@\ÍŸ$<—¦ó‰#Y`l€ =t>•#ÆFæž9û]LB™OAFrcËr!#Y'L&\Çú(ûDKL暑·¬ûYÅ-½_¶çwX`l€Q~Û‘Û¶–`üNó¤ìU‚nïHgHæ'Ät$´Ž2¾Èú<ó8`ê¿my<òø<þ­ã™é–ˆû‘–óåuÂd"t°¹XN—olQ6º~™°/®Áæñ m€ñûuò‘î÷ÃT|Ù˜&0{r¥ý1—¬%¦wì~ûóßÂ8þf¶ æþ/[ùËZal€Q~Û4ÀÌÌ’Fôη@€î| ¸3oë—ÏRU¸ÊY¾Ó6Àø]£G(‡´ÄÜëAÿØé–˜ìý —j½ß³*`ãWØËï² 0q·Øl>×Bv¶­j!uÂdÂuÌ$; µ}&™K¨…Ô ûâkÙl€ñûµð ÞÿÃT¢Ÿ 0­ÌÄos=¼¼1å™nÉMÄtäE‹û~˜Þ=GfapìÓÍ&Ë#ÏÆWC6„„ÇfBòËä–Ñg~®Ò{20+!ÛH>Ä‹2a2áÚ÷¹ì3-1=õàMÉÆB…è"nŸ Tˆê„Ʉ렫õã-n‰éÍx.æ?¹fI®ŸV¯òÉVuâºÆñà9Òœ÷Q˜ÿ9Cg|Ùûþêû¿'E½¹X0d&5›ƒ­½‡zJ0™p4Ñ Ž'I‘€?èŠm¿È/1 õ$¦âS¤«œ—Ç‘Ÿ£ÀØãjÈêãx‹[$ªÀÈ*6~•åm0k¡0~¿è*ç¸Ç-1=÷†çO3Ýpö¥€¸ºÒ7÷<ºû÷Fe0ÌWs >Ø*\ÈÖ “ ×QÈ=æJÒÅtVÖA5Taì‹ëœþ•—óN sÝ7Þí Nœ?é Y8p^@LGB ‹.ù]>éúØåùHo³ÂØ£ü¶g'Y»ã¿A¢Eö¤:a_\ƒF ×nŒß¯e.Ì–˜»zË¿FÕ¯c¹L˜L„’sbþ—ë5çO&©§~-uÆ×C× 1t­ð‡ÑL3cp‰€øU6ö݆ùj…ñ»¶Ñ*‚–˜Þ]ƒqC×>cÔè¯L^žsŽUÀT Tôç>‘ãi‰¸‹0˜yª&®ãø—ÝçnÑq—CúàaeÂdÂuÐJîw!½1WôÄtäEKÙóZbîŸ#ÌË„ÉD(éϪ>Œº*yyÂ8`~Ô,B-U\œé=Ë´æBbl€ =dÆç®jÈl,;±@Øø5ž<Ÿ*{ã÷‹®Žw¦%¦!/æ?¹¢ªßšÌg‡*HÜ™zî-÷N¾ä·¿L˜L¸º^8G‹ ¹+Û»+ÕSPÁæ )‡èĽïù½*&®ãgíoÅ»ZbîßDpÕ2a2Jx&é%<Ãs€–:cŒëá©ÍŸÊT{'vЬ–%&¡ƒÍC`¤ðuµÏ#±ÆÕu¯á-SÁ½Ê„É„ë8$S£þì¯\þ0êË„ÉÄ¥ãùà™ <ê/æ^û™”Ô “‰PÂ2A°žôC¾V`½“ÄØãzèzÒ]-1½ÙWù¼Q^>iTA\ÍËú˾ïµw¢޲× “‰ÐÁæ-)ÓìĽ§,°@˜L¸Ž…åNÎ<ê–×€Q_&L&\MJæV\Ò™@çN\ b:ò¢¥ì-1·Ïqzdÿ*&¡„ÍY`”ðµ}>•:cŒòÛ¦ü, Yì)?ËåA‚ù5ÀØWסÑÈï 0~ߎmî;À”}éØ¿Ó– ANW L&\_å‡ï_±‡c€æŽóáH jHîÄ %âö9¢/• “‰KÇDÏŽ7²%¦÷Tò[<ѵ‡•&²2ð§-y<ù2`**È\r¬YˆùÏ:a2á:ž,Gƒ^|1÷oü’Þß:a2Jxæw%,w̯Ƙгí5_m‰è¬6ŸRí^bl€q54)a¿ŽQ䚺‚˜Ž„2ƒÃ±ÏW’N[ýcŒòÛöì?g×óÌ|KÄýÛœëuÂdÂu°Õºîû-ˆ~6 cQ™°/®ÁgT{~WÆï×J2{îÊ-÷óˆeÂd"t,ek‰éÄtW±Æõl,Sù!öm$‹8ùÉ” “‰PÂ3•ðŽm<ƒo™ÀØãzŠŽÔÞþ¾÷^æLR0™Ü+ ®ðUúÎü'0Sö>ZËÊGä)ˆßƒíùüë–î ÀyYß?Ã,© ˜ „ öu”+YYÝ•¬:a2á:^|·dÔÞûñžëXeÀTàÒ0?H6Û=¸%â>žæÈP'L&BÇQµ­öŽô"ivS1q-´H”;Â^H/m²§" ¦#/ZÊQ±%æöœse±N˜L„ö]—]kæû1æ¯ÆW3ÍE§hA,dˆÍs/cL¨!_jƒB ùŠ‚¸X'L&\ÇÂrø`b ˯ƒ‡• “ ×Á÷bøÙÓ™9ó_ñ9”ë§uÏ|DŸ‚Ä y÷—–ˆÛg®W&L&\Çö,Æ–˜NÌC§`B­/@l%»Dæ%{x0p;Ëþ‚Oì4+;çü„ÂØjv¦Q^âòYüE^»È/1q-´D˜[p^Hï£îB~éˆéHh!y\¨]^Äí{ µË:a2qéXØŽ_-¹ó˜¯&¡c«¾Ž-!ëmÚÞGI0pOš]svõbzNŸÝKal€q=Ó?Ç£7 %à>çgRL\Cÿ[ÆùÂέú×øeœ× “‰ú¯Ê™ ÚAŽRS¸ ËMø3ñgHw·@äYÈÞ“ùLq§ ˜ „ ’„šÛÂvž@=¬N˜L¸Žµÿ!¥°e%c0×(Ê€©€kØèKCpcÙ.t†:b:âZþ}øTT{GzW1ÈKŸÅöŽt†mîV¦ ¦#¡…ä»p$ò]-Ë#E±ÆÕ$ß…ò y¨%‘+Œ 0Êo›ò»Éö¹ÇUØ âC™°ñkœ4#áÚm€¹î×ú ¹8¨Œ¬’'ƒÊH0™´‘§Û?H'gkÄtĵð=>ò[b:36p%ÚkŽTW3ñ·2;ÌÅT¢’ 0­Î,9W¸Ò“â!ú­ä÷eN±¯ ˜ „ 2…ZÂÊöA-¡N˜L„޳ìy-1½§>9“\$úäLs„Kží*Œ 0Êo[óo[hFÃ`üN¯l16:ùÚ¯Bük-ÿêãUÀT T”—×´w¤g,sauÄt$´92ŽÊ•äT¡.t·ã êBuÂdÂulO’³ÇëO½¦÷çj¥ÂØzÈìØãD¨!3WŒ]eÂdÂuìÜWÀ[wšõ„¯…i“sëA×#ºO¶Äô®ÞzÖÞÿöö÷½_•óuÂd"TlýU-îÆ-·~„¢LØ×`“é|`ª‚\wk£{Í md'Ør¤8TLB›¯æêÖÆöAu«N˜L„޳ìÚ-1÷ï{Ž'uÂd•ªHyÍÄÅtÔÚ …±ÆõL, f÷ƒT¾#LGZÉù9º^”«upܦÍRµ® ˜ ¸º[.·Ë»žÕ]È/1 -l îÅw¤­ì_cŒ«a;ÆÜ½[d†¥L˜L„ŽÑ”{^KÄ}Œ'.&®c›Ên×s«}}f%eÂd"”Ð’WþöÿAzÚsW@LGBËŸþ3Ãk ¸Ÿâd®¦®ïyrwh‰éÌQѹXE¹U¿ÊÁ³½9»¦0~×èþ%Œ\dwÑO+ª—¸ULB›qçJÚÆöA•«N˜L\:öGÿcÑM¨½·þ ÎXL\ÓåDÁ{Ùyž]LBEyQQ{GCÓ‘ÐÂftðN4— Mö‰æø`¥‰ÂØzÈ,Ð%Ô¸\°ñkÌ<_—ë ã÷k%Y«5ÏÑ.âÞ'` — ûâ4ðy|Õ¿[lï û Ö%;E0$†B¾}g]. ß^'L&BÍZ¡wm$£´æ c0™p%<;«.¦§>¯yQûæ:ûb‚„»€ø]£içÜ ðBzøÈor1 -/Û]ºyúrÄ1°Ÿê&Ù¯&/:ú3ôÞdÝà™Ô`.5Û½âÞÚ‚ ‘>û}0™$§´æ:ÞEÜGàì“uÂdÂuL<§”}òbîµç¹j0™%ÔîrÙóéh‡kb:ò¢å¨¹DKD§¬±ɽÆå·å|ê1ÓåúÎØó¿`ÊÖÓË|e¥}¯ñˆbq5l× ÆïƒìiÙYI0l6ëÛÑu‡:a2á:Ög¿:u‡‹¸÷0NʄɄë`´ù“€ÝŒñ¡ ˜ „î à[¼Lž*06À¸ž}šK)þ–€¿¯ï£Pu(¦¡a)ûuKLï^ÁûûrL Àí¹}å7˜TSPQ^ÔÞ‘N8Èý`Ät$´°opx¾Kê§ÝÙë\gl€q5ÍøÂbã ™Xg~ 06À„žéY‹-‘¼åü¢ÂØjȧÏ?B ùÄ9Q™0™pç´•ìµðw`>:¯ò’<¿Ž˜Ž(?l}ÿaçãQELGþçÈúìO+r ñ"n‡ ë„É„ëx’Û–ãÝEÜ*‡€W'L&^t”͸%¦'!Pœ´` § ˆ«™²I^LeºcL«3`¬¿uä_Hïá,iL²mx8í9É&¹-—’Ë€©@¨ Ÿ´PD=Ù9(pÖ “‰USm é=óìÃ-CÁ„êbî=/tÖ “ WR( çM{ÓSŸ7½(Œ 0¡geRÝXjÖ•¹^þˆV`\ ¯Wç^Ø'ÛV‡ËÑÄt$´r,;øMôKQ°$ N˜L¼èè¢Sò¶lÛ™½R`l€q5l#žGŠù0€èU&L&B)w¹óµDÜÏöÀ˄ɄëØgÝ~˜ÊÜȘ&0à`-ßa|9Himä'S&L&B -ßåŠêù²ùåF{.© ˆéÈ‹–~нø %²¾$ÆWÃ[ºïµÄô&}àÉtñ œ. ?jÖÛ& 1ÿBn=|¿®ñKLBûžHË(œ¸«i…@˜L¸Ž')‘åeNÜ­4æÂdÂuLý„‹Û]{nug®¦¡–Ȳ9S‰Y6À´:“}k}Ì´ì/×Ü/Êìs~*UÀT T”×Ô¶w¤gqGëuÄt$´°¹=¸ß¶¸ƒo Œ 0®fáeŸ=¿` /Çìù`B)û /´³ƒ Œ 0¡†|yyL 5ä«ã|™0™p«IÀ;¶±z¼aeÂdÂuì¤&áÎ×qÁÀË„Éċ޲S´ÄtL]Œ–û—G~¹êˆ«9hMGðAkù»CbšÀÀ¨g[2?DK²arßò“©¦¡‚ÌîsÉÚ‰ÛÈšKÖa2:xÜë 9öÜ«L˜L¸’“å½AÇIóÑû‘•Œ 0—š'/^^+KÛ;ÒXŽüÒÓ‘ÐBòÞ¹Öý‡èç¤s­[ L&^tôçÆ0ºž…:oþŽº˜ÎˆÌK%ƘÐÃfl)Wþ‡ ³©ìÝuÂd"t\ùž½â"îg!Ùóê„É„ë˜i®ìb*1Û˜&0àz ÉÊ¢S,<[zæ; 0öÍuhí2ï×R¿gt{.F ²yöxä8QLBÅQv£–˜ÛQ|ä\X0™xQBf†à‘lp®' „É„ëØIÞ7׸½à‘eÂd"tÌ ñ¡¼Öê³²·ñÌï–ÀØãzž':xn6ÏZ¦ Ì™Ÿ-å^îÒ³¼ ù¥#¦#¡…Íaìó ºÇ”G¿ÀØs©™$ÛpwóÈ!…±&Ô¹«Ç¤PCæ•'ë„ÉDè8ú_Æ‘BDZvâd0™pÓ³ì}-1÷Ú—¬¤L˜L„’ÿ…ÒâEÜŽ,¨-Ö “‰ÐÁ«~3<z_^1-16À¸¾qØ=¯%¦ŽÀ'ZÿËg}*ˆ«Yh½uáùÙü¥£0­Î ÓÐ÷'²MùXSÔ/¦¡‚Ìö¡†5±MÊPê&®c%ÙSô°•f5-¿cŒ«Ùþ}%po‰¸_YʄɄëøÙJ[q½–˜{í{VR&L&BIyX{G:1ÃH©#¦#¡…䳡Nú›èçš¡NZ'L&^tô¿VлøÖÛã€gRgl€q5¼ k–.¦7¾r®]al€ =ì{åŠE¡†}K@|,&®ã¤9jŒ'Íã7¡À4ɱe~5Œþ‹èÝœ±Q`\Ís%ùÍ=™‹¸b9¾Ô “‰ÐÁçúGr³™ïC7›i]6ŸW  ®†î¨„h9“ýŽç#+©¦¡‚æôÁ‘/æö}»ÑÅÜÞ`ü:Ë£ì,-1½ëLpžkÏqìbîŸe^‡V'L&B ¯0æ åÅtÔÃjh…±&ôì$Wž÷CôÞ™ü¦0öÍuh-7ë/~gçs&AaüÉн²Yû;Y×GþÊ/¦¡‚ÌÄ¡ºº²ÝŸP]­&®c'™v¨®^ÄíÈ‚Êg0™pG?ÓŽ×q½À»Ê„ÉDèXËîÐÓ‹\9¯³ž4£~ö³íë#gvê„ÉD()/íkïHÇ‚rï 1 -d¾ ãw+Ôas†îbzÏ>?I…±æEO?C ~t½“¿VƘPÓÿb‰¸júßëê„_ãÉ2à˜yP¿_ÉšC½ô"îß—<—ª&®cîgÍÃÅZ"î#ŒÈ2a_\ƒy+* q·X6;FVKLïí‚ÑHw;B¤Øú{ן>±'Ê€©@¨ Ùltü…ešsæ´N˜L¼(!shpG¶§ê}uÂdÂu¬4› k¡¶•f™aµ±ÂØzH6]x¥ãí§^}X`ì›ëж±˜™V¿k¼Œ÷³V¯½û­˜ÜxP L&^tô³ÅPñýMô3¹Pñ­&®ƒìÝûà¬l/&úÙ‰÷!>” “‰PβÅàFËä‚• “ ×qÒl±ö–˜ÎÈuæºÎþ Y\ð½ÇÏgºcuÂd"”ðJWÞ[p1õ°bXal€ =$‹ ^t½wÕÔûæ:´¦›°įBÏ;Åœ´Âø³yÙÙ,í輜9ílÏŸWÊZ"î=<×ïê„É„ë˜ûYV¬ß]ÄÝ›õ»:a2á:’euGj‰¸UŽ>Y&L&BͲ>Á'še}‚­4ËŠ~¼’ è3ç¥ë„ÉD()/RkïHïsÆb1q-…ªêgsC¿Ñìç OR`l€y¹ÝŒÖ?Úhöó¹ š2cß\‡vÄl®Âø];úÙI¬1]Äý}†7 L˜L¸Ž“d'Ÿ ã$™Cô¤2a_\ƒNަ”¸[4;éodKL/V,é©t§8ìÑ߇¶þ´è‹;VLBÍNÂN·‹¹sþ N˜L¼(éÎ=±vs}nXW©&®ãI³“°VüxÒ¬!ìDQ`BO?;‰.|½¼ç7L`ì›ëÎûL)=ñ{F‹2©ýEô¾îÒú¡:a2ñ¢£››ÄºÚo¢›7ÄšW0™ýÙäo¡;êÖgÎ(Œ 0®†ì ‹(Ñ‚èç41r• “‰ÐAò¦Ox»’ÓÄÈU&L&\ÇÊó¦{V²ò¼éž¯³Ñ¼)F–å4ÏWÊ„ÉD(áõž¼îäbîÕã…±&ôôó¦|r£ùÌé‘ße±ÆÕн{áI-1÷!ïƒ_Ò lt¿ =#ëž ãwíeï^?º¶w¢7¯Èñ˜ìG‹ÚTKÄ}ä˳:a2á:N–ŸÍõŸ‹¸a¹bV'L&.çƒågÏäbq]²× “‰ÐAó³î-11Îr>Y~}ÿbnïñ”]¿N˜L„’ò²«öŽtÐmU@LGB ›gW¹ˆN„˜òŠ^…±Fùmsò£³P›ò{I{ ânJ…±æEÉQf½ˆžä<°ÂØWסó¢6Àøuh÷>¬K+Œ?…䵡ªw·ÏªzuÂdÂu¬$¯=—¯$çŒ^^&L&BWÀeV:ßEd5=LH¨¡ùsa-1½Xžóçç¶”GXKLï®7ÓýkiÉî²iÍq¶ ˜ „ –§ÿaHÆõ_³˜×ÑR&L&\ í-ˆ;¦NÚó÷`*Œ 0¡‡ä·ÑwšwžrÞYaì›ëÐ3<±¬0~×xa/§Nº? ÖV ˆéÈ‹–~–곿‰~j§uÂdâGÇö`»ŸÜ•ZýœmvJ0™$/ìž:HÎ6;¥@˜L¸Ž'Í ûøm‰éEâ=?wÚUÙ™û{|ä;V&L&B Ï ï „çkwÐRgl€ =$/œÅ‰Þ;“2]cß\‡U5á^Aü*ü\ÊTØT2toZŽ_rë®óã=zÕSPAòÁ¹èÄm®'WÂdÂu¬$œ+Nܬ-¿½eÂdÂu|áx-÷Q|¸L˜L„ž>óÙx>øÌ÷‹öúûà÷¤ß:?ó+&¡¤¼Ð­½#= º_:b:ZH>]…ö®[š7½ŒG±ÆÕzä½oœpäïk¹v‘_:b:ò¢…äèÀ'šoçì”cŒòÛ–ìl—¡Çȸ ùþÀ¸]&ì‹kÐ,ݼÀ=®3~ÚíÖÕIÌõ\ž–ÓN•P'îßåT “‰ÐqTeKÈz,ÞWîÕSWA:Füj‰¸}~Uë„ÉDè ™y÷û–˜Î7Ä¢'«æBIAB ¿Ù#/¦3çœzÒNŠ0yöû®ó–f"eÀT Tle·k‰éÝ­Qž?g}ÒÁ!‰ ïUÀTÀ5ÐÞ€°sûòFùl‰±&ô°œi7½NF:Ý­sÎ¡Ô “‰P«j×Ê–˜žú‹ù5ÀØzH.GäAsÌ3Ìñƾ¹«_bòA@®«Lô´HX!%1ÿs†ÍøÀù'²ÓpÉ_¬eÀT Tl6Ô/'¶;ê—uÂdÂunzX¿œH§;¬_Ö “ ×Aºé…çµDÜO\³× “‰ÐA³ÙsžO^L/våÜÁD»ö¡ãO¤£Þº¤•}a2JÊËÎÚ;roA°ÿCALG\ -Âê–ß—!pt"Ú±ÎQ`^î@? †~D;Öý=ð}$ Œ 0¡†Ì¨=®„2ÛÅXW&lü´Ë¬“¿_¤3Ö$'Òµk’uÂdÂuÎxáb-·ÊÑ[Ë„ÉDè Y@ç[b:ÏÇ ë%÷ÁÃûÞÖeÎïp0tÝl> Ä™û7œ¸L˜L¼(éÏn¡r5±}uPUª&®ƒ÷’Kÿ ñQSTI9S1 -$ψÞÈ{µ-kvG±Fùmù;bæ=á–ü%¡0qžÏÌkÔæz¢3/Ë\ ÎÚ;Ò1JX£& ¦#/Zú9P¨âͤÇVñê„ÉDè ³ið˜ùuEk(·„Ü–q–ýÝaÊ€©@¨`3Õ99þL:Õa®&¡ƒ¬Ç^ržY "p0™pìTÐ\é›_ìü˜¼OQ« ˜ „î½9.̼£Ÿ3~ÞÑoÉ_3ïè·äÓüs–(T-÷=ó*`*x¦?¯óŸi=8»Jbl€ =$Óq‡÷Ø[ò7£ÂØ7ס§âj6…ñ»Æö)~˜y]„Ë™çUÀT T°¯”\¯œI<¬WÖ “ ×±¿ä¼zÆÚp/<{}0p ¼7¿í-1=Ι•™ö¦ûà_¬oÜ¿¦’¯îU&L&BIyQV{GzÃvΣ°Ž˜Ž„6k†‘xÒÕÑë3E±æR³ªšôŽ-´Ÿœ‘%16À„6·?Ó‹¶°}àöuÂÆ¯Á»ÆÁ(…ñûE:Ía-q!]à°–X'L&\ë4·Â[̺ÀSÖ “‰ÐAWÖún‰éØ+ø‹ÂØãzØ~>tþ…ì¶[sÖ§ ˜ „ šíF—d}àÖ¼¿£N˜L¼(éÏ#¡J·°]ƒPA«&®ƒöšƒÓTþ0l [>ãHbl€ =$ã>Ì{À­Kvb±o®ÃÏ…]4 ãwíîÃm Ûw‡«ÅÄtäEK?« uÔ…ô‚Ã:j0™d~Œc™ís?nAôçS#Ê„ÉDè ùXwãÐAr¥#ʄɄëàýæ|Ä·ÄtF¯3×uVÚo=|e½àÖ5ݱ:a2JxE,©¯´œ"$16À„’i/Zy¸u5uƾ¹?EÖ.+Œß5¶¿ £ÑJv_­{ŠEeÀT T°b®Ž­¤VÇê„É„ë`U%¨Ž­¬TÇê„É„ë`½æÜZ"î<²L˜L„’iÈ¥õõàË©œTQ*¦¡f~Ý}Zbz‘qË÷ŠöËûOX/»õÈO½L˜L„67YyóÌ~"06À¿m˳ە׬àÌ–•ö²ÃS Æ˜=ýÜú*ïe·å/…±&Ô°o+>†ö]1»LØ× yC3m€ñëð~°š\aü¹ì˳{rðþÍ£üRS×p¼ätzá¥%à~ê•#^0p ¬G":þ¹,¥ÛÔÒ%ʄÉDÈà‰x'OCè`B]Þ¾ÁGo߆º=èñÓn*-1=V7Ú`ÃêÆšnSzÓê„ÉÄ‹òÁ•K–ÛúåÄ:a2á:hƒE…±&ô¥±èżAÛž Ž cß\‡? ‹žÆïÚ±“-'©øt·u›\|*¦®5€[Á‹Ys6¨%Õ “‰ÐÁf”à,|+מ—)+Œ 0Êo›“'uªÅ•–ˆÛ÷¢]°/®A3I®Ý˜¸_$à ÑëxítÓ\qƒIº‚p0™p¼7Ÿ[jKLÇñëðÞ|$Ö7oÏû ê„ÉD(á%§ ”Д0œ#¨06À„–zΦðžy{þøR`\ ßÏF~ð}vPFR˜Vgð·ñS;a‘Âø}[hêÙM³%¦§Œ–u¸ƒRÚÁºÏA)­N˜L¸ÖáÎ}£%âÞ›ÁÍÊ„ÉDè )Û=O÷ÞáÇ%ïp‡®ÉºÏí[¾ceÂd"”ÔµÄôÒók€±Æõ Uù$¥ã ‰Q8ýOal€yÑÓOÚ¡Ãðþk{Þ¤0öÍux2X—«0×];Yß2(A¬§” ê„É„ë`¿|<·DÜ{fv™:a_\£>W°&îMÀú;ÙÓóÿ¼Ãíœx6»æÅÜ~ÄîGòÌ:a2JhüòbîßÊœì«&®„wË‚³íNÞŠΆ[b:ãÑ¿ïü…®ÌºrÏ|ÇÊ„ÉD(ᙲ”ð ÖZêŒ 0¡‡dÊÐYxG®#çýƾ¹ßÔ©u…ù¹Îþà'Þå¥*ó?gè 3Ç1gn=öH;éÂd"”ýRb.Þ8q[ðÊ…0™p¬ÿ—W#Z"nGX®‘„É„ë`ý¿ÜùZ"n•g?“‰ÐAs}î-1½6åëðþ_Ù÷¹¿ÇK¾ceÂd"”Ô—4µÄô|(-0—`BÏ±×ÆpKD§.p¬Ù[Æå·mÙ“ µ‘-»ï5–ÏÀ‘`^ôô3dè±¼×Ø±£š2cL¨!ß<+["nc%Fð2a_\c+¿™6Àøux´¼ˆJbü¹°Þi¹ÚåÄý{ ~^&L&\ëv€Ö× ãR™0™ü]·üa:± œ×ºÐÉ&ôÐ,´{EKLofþr,å1ÖÓÓQæàß"0o8Øw‘g eÂd"”Ðl7ÆKÖî8s|)&®„ökƒSÿ0,“Ïb•`BÉv£'ó¾hçÔÔûâ:O~¢c^$1×]{òY^·ãLo4§­écLè!Ùî\ïüCô3ѹ)&®cb3¿#?•‰Íʲ_Ö “‰ÐA²ÝîK¡ƒd¢Á-ë„É„ëàýµ| ·ÄtÆ£3~…f»Á•/æöŸ9»R'L&B ¯½=ó³ç]©òImcLè!ÙntÞ•êœàÉÔûæ:¼Ê _d ã×á§æuAãO‡ohÃ8Æ6›9/U'L&B Évç:§·Y¬\ç“ ×±³l÷™ÇËÎ2Ñg~‹Ë„É„ë8H¶Û¯%âV9úq™0™4Ûí.ÑÓ‹`9Ûýä]ÃÐ÷YG¯sÉ®_&L&BI}ýXKLLJòšv‰±&ôl7:ËI3Êçš½E`l€Q~Û–žË„ÉÄ‹’þTy/âv&Ø:a2á:xO¼|x͆å»ò!LcLè!Œ{´WÝßÔÆ{ä`”ß–³DÓÆ²žÁØס¹Â¼‡@bü‰òƒ8ÝÍ3SYãÙê F ¾WÖ’*Œ 0qHUÖ L¬o¬¨&¡ƒ|£Óîì+s{€× Œ 0®æ`ßKg~/ö-‘¼L˜L„Ž~("fèè×o>Äñ2a2á:hß®Lûs]g~<ÊÛÓ»Nþî›yDˆç3é]¸=òS0™%¼2žs’3ï[˜×’`B©EÏ´oáöH;Ô%ÆWódß³á}-1÷}yæk /£0~~è+¬Q¿o|1ÌLf²¿w{l)Ô “‰P¾€òj‡‹¸äyµC0™p¬ç#¬v˜Y?FXíP'L&\éùÛq-Á÷Ë„ÉDè`5¯p£–˜^¤ãý1¾^†Û#¯:¯&¡¤¾Zµ%¦ãC°’Val€ =lÆβò™8x‹ÀØãj +#Öüžñ‹ùt2‰±æEÉáƒ_Ò‹ÿ «)36À¿í™¿f²«=beKÄ]¬üÁË„}q –Ãí6Àøux/GØy£0þ\Ró‚Uqû.ê:a2á:HÿĈ-÷QâR™0™üœüäßàä|ÍÔˆ&ôÐwý…¶C æºÎÂwC<_ÈííùLѼN˜L„’­ì-1;޼ðÆŽcÒtq{NiÌÔ “‰%ý¯*XO±°=í°Ö¡N˜L¸ÞØ1ŸÉõ‡a¹«|¶œÄØzH] bËEôÞý9E…±o®ÃÏÿ…Ë ãw¯,€½j ß+–ƘÐCj*°ea-1a5J0™ä ]†îSßžyÿÂØ£ü¶5ûÙ¥±¬%âv~¶LØ× s,×nLÜ/RïñH÷‹Ôb0¾– “ ×±Òz»eKLoF2gçãmJ1þ‘¢Û3¯Y­&¡„×ìsåjáíCóYNcLè!uôpÚ>t{¼D`l€q5tý¿¤»è?x9]õq…ñëð“œaÝ²Âø}£»èÃ[bz÷ |“ï¢ÇÙáþ÷€ô÷(P&L&B û2É+.â~–‘W.Ô “ ×A®âÊ……4CÅ• uÂdâÒ±’†«áä-÷Ñ2Ç—:a2:h½ç™#åJ®¢S®¼á*ı•4CÝžgŠbuÂd"”Ô×k·Ät|Ö’+Œ 0¡‡}dg¹ˆŽ{Oä- cŒ«á«ò«ÎôÞÍì1 cÌ‹žnþýr¥MZ·)¯ÂQ`B ûî»â^KÄý7YŽÆuÂÆ¯AÔâ d…ñûEšÚ⪂•4œÅUuÂdÂu¦¶á²-÷‘ ¼¿L˜L„:ßwGj‰éÌ[Ñ-隬Ž+Lè¡5Ã-1÷Ç=?kc&9àï¢ù÷ˆY&L&B ­u`|!m·iÎc²L˜L¼(é~Q`}%'`»N˜L¸Þ<ΙYyS[8_Jal€ =ýZÇϧMm· \_`ì›ëÐÜq?ŒÂø]+T”ónÀ•Ÿ+UƘÐÓ¯uà*„•4¹ÅUuÂd"tô¿.>¸ =¥`›Öì3cÌ¥f#ûí#^´Dܺ,D±:a2:H=Á£Eè ¹~ˆauÂdÂuÐÞ³áH-1½ùKž¿n¼÷,Ęô…ݦ-E˜:a2Jx=!;ËÆ{ÂÂyÏ cLèé×Ð'7Úö÷_€š:cŒ«¡ç„'µÄô¾/²_nteÖ†ƯCÏJÇu¤ ã÷ïч近ýóÛtdg.&¡„ÌÊ¡2¾‘]çXµ®&®ƒtéÅŠõF:èbźN˜L¸Ò¥7¶%â>Šï— “‰ÐAóü8%íÒûÁÁx—^Œ/¤ƒî6ùÉ— “‰P¢ïHßøNq8cEal€ =d&ŽÎÂwXÏì-cŒ«)Ts=iã½€áÔO…±æEO?§Š~I{osÎó+Œ 0¡†}']q¯%âþ¢q™°ñkÐ>ȸŸWa®ûµ“ÞÉXMÞI_c¬&× “ ×Az'‡Ë¶DÜG²ìýuÂd"tÐy¸;RKLg~ n¹ÓZ2VE&ôÐ<¿á–˜Î{ ã~çû«!fîlïó<¥ˆY'L&B ÍóC|ÙIÿämÎ+Áë„ÉÄ‹òE‘k®;ÙÅõÐ:a2á:x¯i8ónç= áìN…±&ôí½Í9ÿ®0öÍuèÙõ¸›Qaü®ªœùä‹î‚Æ• cLè!y~¨Œï¤4VÆë„ÉDè`_à2|7÷œ÷À+Œ 0®†í1öxÑqë²ÅÊ„ÉDè y~¡ƒäà1†• “ ×A;g‡#µÄôæ/9Ï¿óÎÙcHWëmÎùž:a2Jx 5ï™ÛiGk<‹Qal€ =$Ï>I;Zo3Ä~±ÆÕð½ÙîI-1½ï ðKZÇýI s]ç §ÄãÎI…ùŸ3ìû£ÿÁöMÏù«¿N˜L„2+‡JòAvc%¹N˜L¸Ò¡+Ééž•ä:a2á:H‡îpØ–ˆû(–}¿N˜L„šçŸs;h‡nt°ƒvèÆørîÙ›±¾ß±2a2Jêë&[bz>td`B™‰£³ð¼Ë#{‹ÀØãj Õàœ‡9hl’÷— “‰ÐAçáîH-1xnÉ÷âÂúD… =4Ïïc¸%¦ó㸧ûj?ÄL¶çu™rÄ,&¡„åù?ÄÒ9z[rޤN˜L¼(!_àÅd÷.ÖCë„É„ë ]¶ñœ¯ƒv¿Æ3ƘÐCòüèù´ûõ¶,ù ûâ:'=w *Ìu×N^å„“NºûW(*Œ 0¡‡äù¡2~’ØX¯&¡ƒ}]d—9ù.Þ%ï}V`\ Ûêñ¢%âÖe!ŠÕ “‰ÐAòü-BÉÁC «&®ƒö Gj‰éÍ_–|Ú3cÌIúyoK^qS'L&B ÏóçóºOÚË;(Œ 0¡‡äùÑ'i/ïmÉëùÆWÃ÷ »'µÄô¾/À/yUV]*Œ_‡ž¦»ÆïÝ/ü!ú³½¼KÎÈÕ “‰PBfåPI>ÙX¨$× “ ×Az“c%ù$}ñ’\'L&\éMÛqÅÀ÷Ë„ÉDè y~w£–˜^¤£½É?ÄÒ7üï zòeÂd"”Ô×M¶Ät|ÎnP`B™‰£³ð¯ë#{‹ÀØ£ü¶ç»'Bùñ>œé¼Ïù}‰±æEO?›=Ö‰Ž ¬©Ò!16À„öm•2„NÜ÷¤.öÅ5èÎßL`ü:´Ï8ì1•.¤79Tº¸/·üŽ• “ ×Az“Gh‰¸²gÖQ&L&BW’[:Ó‰eÙÉÿ0,þ劭ĄZƒp¯h‰é¼Çè/´ÿwŒ±–˜Þ}ƒ(C÷üÁ™[ï[ç÷Yƒ@˜L„ZëÀxÉzs¯i%¸@˜L¼(!_U) éÄýl)Õ:ÂdÂuÐþßpö†å®rlj±&ôZÆÞc{]AM±o®CÏކݒãwWzóiÈÎô2$i•¦ÄØzH­#¯øCôëyu€@˜L„ö….Ãw2¯[ö±Fùm{ö'¶×cLKÄ­3cä+öÅ5økÏ÷X`â~‘:ŒG²¸_¤F‚ñµL˜L¸Þ—{]óæ}¹×”í?ž´_6Æ¿'ëe½É+ê„ÉD(á{ÙR>ΙžúT¹`B©Ã€‡?yë5»¸ÂØãjø~nðË'ßÏ ^þä«òþ4‰ñëÐS®aŸŠÄø}›ø7ÖžïÛÄ¿±²o>é¾qœ=Ùžîí‘æ?uÂd"”/“¼¢À‰ÛYF^Q &®ƒôå†NÜ:F^Q &®ƒõåv'o‰¸–_Ê„ÉDè õž™÷åF§¤}¹?Ä1Ö3{KëÓÂd"”Ô×϶Äôr=é,=‰±&ô¯t¾óyo`\MaUÀ3¿g´_6t6`^ôôó×è—¼÷õŽ)06À„òÝçq¯%â6îa4.6~ ÚÇN¿¿_¤÷5¬*pâþ}Ùò›\&L&\ë}½Á˜d}©ÑûË„ÉDè óý Ü’ï¯F·äk ò:U‰ =´¦²¿ðÞ×ÀLif×ù÷îÇ=P`þç ¯Ãäx>±}Ù[ŽæuÂd"”Ð: ľ‰õ²Þ²_Ô “‰%äk'×ø'¶ÃêïuÂdÂuÐ~ÙpŽø†å®r7‰±&ô: Ä£‰÷±Þr.Jaì›ëÐ3Ëao‹Äø]ãÕî|êŸ3WÊ«h%ƘÐCê0°Bb"½¬q…D0™ìË\†ï4ßÀgÆW³<ʱ¯%¦Ë!^²½ÙDK¶o£e™0™¤¦²—±¾Ô+˄Ʉë཯ÝùZbzÏ=gî'ÚûúC,c}©·3ß±2a2Jø¾A¸c´'5tw`B©© óžÔû#;²ÀØ£ü¶gþm;Íb:cŒßi¾¯ƒ˜Á÷õcÌà+7òêh‰ñëÐÓÎá<‰ñûÆ÷õã ˆí¹ß§<ÿ)&¡„|™ÀÊ…‰íT‡UuÂdÂu°~Ù°¢`b½¬aEA0™¸t̬_¶»KÄ}„Í1©N˜L„îFÙ)gÞ/Û¿Îs.»^KLï:Ù)gÚ—cìÌzfïs~2eÂd"”Ô×*·ÄtüΙ_Œ 0¡‡|õ€ƒÍ|ü¾$S`”ß–gþsaÅBΓʹÇ6tÅ`^ôôóñàå3ï±½ço…±Fùmy<³ó<Ž·DÜÆq˜]Ô ûât~¹ç/_…‰ëмÿž¿LƯÃ{“Þ0…ñçÏú™ÃjŒ™õ‡ÕuÂdÂu°~æZ"n•cÌ,&¡ƒ¿“àäü|Œ2|-¬qV˜ÐÃß}ð1ÞÏÜ¿ÎF×Åí9»v1½ûŸƒ€svFÁ~äM™0™%[Ù•ZbzOæbþ`â·ÑzÎ3X¿õ¾NÊ„ÉÄ‹’þW/¬Û˜ÙI°¦¢N˜L¸ÚÓN1þð¼g>ï]bl€ =¤‡q÷Z? ¦ÎØ7×á½òé9ãw¯”ȧä;ÓË`åÕÔ cLè!õ8X]3³~ë°º¦N˜L„òeŠ.ÃOw8žÙgÆå·åÕ‹ ;ÛÀã_KÄý7FŽÊu¾¸ÿ¹v`â~‘žG²¸_¤¾ñµN˜L¸ÞoÞݲ%¦ã|Îøuh¿yŒ ëäÕ¤uÂd"”ðý°9ë±Ð>ðÐLbl€ =¤†¾ð>ðª©36À¸~öøåÂÏž/_øÊ8CEaü:¼[ì W¿oüì ÷À–˜Þ}ßägOÀ haçByþS'L&B û2ÉßË ;MV£Ô “ ×ÁúÚÃj”…õœ‡Õ(uÂdÂu°¾öîä-·Ê1¾” “‰ÐAëqÄÞ×’öµÿÇXÏùž|™0™%õõç-1½ßß“[^LoÞšÝråk1༅ =´Þãc¸%¦ýó¸_ùù3WvvÀq¦ˆY'L&B ­u@|YYÏùó‘¢K0™xQÒÿ¢€µ+;êüuÂdÂuоöгéÃòC¹'œÄØzH­=Ÿ÷›?QM±o®Ãû+ÀîF…ñ»V¨v?~²-1W‚•Ä cLè!µX!±²žó°B¢N˜L„òu.ÃOC8ÁgÆå·ÍÙŸØYcZ"îç£ùÊ„}q :÷qí6ÀÄý"µdq¿Hãk™0™p;­uœ—vZë8!^´Öñï uˆ3gÔë„ÉD(¡¾'_LG=œà®06À„Rë@?h â\áÉÔ`\ ?ý’Ÿ ^ÎW-À : s]gãÝà,…ùŸ3´ÖáØÓ»oÙ77~¾Ì€6vö¹¥ùO0™%ìË$¯ØØ‰P¹¯&®ãIjPµ¿ˆ{ÇÈÙ›:a2á:&Rëp'o‰¸–9¾Ô “‰ÐAkîz-1½ˆœr›i­âØÅÜßã¼ö®N˜L„’úâ–˜žmy4 Œ 0¡‡}€³ð Nð±ÆÕðÊ{îaåLo¶˜w7(Œ 0/zúyeôË…Ö NpL±&Ôï>{-·q£q™°ñk¬´n§Ô(Œß¯Ô: ¢~·ï TÔë„É„ëØI­Ã]¶%â>’÷— “‰ÐÁçûà–ü tK^O‡” zh­ãÙi­Ç=?c&ÙŸ¿?ù®• “‰PÂk_Ž~bä q0™xQÒÿ¢€ºóÆN€šp0™p'­u@_í¤5èÜ¢06À„Rë@Ï?Y bä|ÂØ×Ùy89Fa®»¶*½×ÊΖ˜ž+åÕ  cLè!µXð›è×!`u@0™äë\f§»ú÷Çœ|Fal€q5d¯yÄ‹–ˆ;—Å(V'L&BG¿žÑ"tôsýÃê„É„ë˜Y=!©%æÞ]‚ñë,´ž1æbîïq^?W'L&B ¯'œ „çùOÐRgl€ =¤ž€>¹°<ÿþÈõ…±ÆÕнóáI-1÷‘ïƒ_ò•p.¥Âøuø‰üpnˆÂø}ã{Ú1ú“ýæÛÀ¿Çþ2a2Jج†[bzÑ?ûóÁ÷Õæ˜éÌ­WL÷ˆ)&¡„æùs|qæöퟞïcR L&^”/Š”sâ~¦òüa2á:xßôÜoåÃò6¹§•ÄØzúy~ð|':£xšò&0öÍuøÙÛùŒ$‰ñ»Æ«œ¹Ûª3½ì@Z¡(16À„ž~ž*ãˆn*ãa2:Ø×¸ ÝÅ»Osö±ÆÕý¨/Z"n]£X™0™$ÏïÑ"t<ư2a2á:h?óp¤–˜ÎüÅ¿ïgŽ1†ôß½ú/™0™%|¯<{Þgi¿ì}~$—U`”ßîÌöW{|m‰¸ÿVÊQ¿NØ×àó¾3‰ëÐ|ïœc¦Âøuh_n8-Bbüù“^ÞP…wâ~Ì,9Ö” “ ×AzyGtj‰¸Ÿ@Ì,&¡ƒ¿“àä|?2F^ƒÏgUKLèáï>øíåŒ_‡öòޱÜÓ»où¾gœÓ°=Éó”g4eÂd"”°^ÞáJ-1½'s1ÿ 0ñÛhç¤Ïö>Ïy–Q&L&^”¯Qˆ¯dç7ÔÒÂdÂuð^Þ¹gê†åürWj‰±&ôÆ=Úc{Ÿ!ò Œ}s~fy>MRbü®*äÏü>óÓyu«ÄØzH(¯ªøCôë7yU…@˜L„öe .Ãw€ÿô$}}*uƘKÍÄö2{,k‰¸uYˆ°uÂd"t‘G‹ÐAê7Ãê„É„ë ý²Ã‘ZbzQ?Ïá'Þ/bÌDzYïó–¼²N˜L„¾ÏîÈÏž÷±Î%ƘÐCjDà“íc½ÏÙ)ÆWÃ÷š»'µÄt¾œù¯Î@~aâ«0ò©Ýãס§vùã÷šïO‡ÃÄöŽÏyMI0™%d&+&²ãW.Ô “ ×Az_ãÊ…‰ô¥Æ• uÂdÂuÞ×áÊ-÷‘bE™0™´®4ƒ»ÒÞ×\÷¾Æ˜DúRïó™=¼L˜L„’ú:Ý–˜žíy4 Œ 0¡‡ÌÞÑYøë¼E`l€q5…ÕÏüžñžÔ¹§£ÄØó¢§Ÿ‹F¿¤=©÷S`l€ 5ìÛ*¯ò˜ØxŒÆeÂÆ¯AûXÃù sݯ™ô¾ÆÕ 3éK«ê„É„ë ½¯Ãe["î#Yöþ:a2:èÜÝ©%¦3·œùÚ…ÜgRbB­,Ù_fÚûÇýÌ÷qCÌœÙë%gUê„ÉD(¡µˆ/3éK½/9¯R'L&^”/Šœµ›Ùnq¨‹× “ ×Á{_çŽf–ëÉ=&%ƘÐCjèù´'õ¾€ë Œ}szþ8œ°!1~×xuØW·¶Äô\)¯ˆU`B© ÀŠ‚™ô¥ÆuÂd"t°¯ p¾k|ɵ…±ÆÕ°ýÏ/Z"n]£X™0™¤6àÑ"t¼=ư2a2á:hép¤–˜Þü毼¿4ÆÒûy_òÅ:a2J¨·æÎÜ«‡>@cLè!µôIÚ÷y_À)Æå·ù·4ƒçŒ 0~§ùÞù%×-f¾w½œVùáDq‰¹®³ÐÅá¤L‰ùŸ3üÛ'ÏL¶¯}9Ó]«&¡„|1@e|a»Á¡2^'L&\éI•ñ…ô‹ÆÊx0™p¤'u¸KÄ}„Í1©N˜L„îFÙ)Ú“:¿Î<—]¯%¦w‹ùo€‰ßÆê#—ÒËzÿ×ëþ%VÔ “‰PR_§ÛÓñHg~ 06À„òƒ®Çw¦ÿt'zgcŒòÛÀ/yíÜ5Ö™ÞŒ9gpƘÐþâ ò‘®Ü"ÛÓ¼LØ× s¸â«ÀøuhïkâÑ"tÚİ:a2á:x¿ìÜÇÚ™Ž»¬¹úºÒ~ÙcVÖËzÍYø:a2Jx}$WzVÚÇ:LKŒ 0¡‡ÔGБøp÷-1½9ïÅü'0ù»r¥U~è$1~z 9ž¦0~¯ù~nŒÊl¯õ 1¹L˜L„2[†ÊøÊvCe¼N˜L¸ÒÇ+ã+é1•ñ:a2á:Xkw¾–ˆûè~\&L&\í/ýÁYïçfzeÂd"”Ô×g¶ÄôüæGcLè!3Wñ|7îöÈc^`l€¹Ôl…Ênž)m´ï3tœ’`^ôôsàcïû¼å] cL¨aß9Jnl¿4DÉ:aã× ½¢ñ,.…ñûEúKcex#½Ÿ±2\'L&\ë/í.Ûqa²÷× “‰ÐAçÔîH-1y+¸åFk¯Ð¥GbBÝ7àc¸%¦óã¸çûw!fnloí–+ÉuÂd"”°¼ø‡øÂz?ç^Æa2ñ¢„Ìô¯ªcKÄýL!×)ë„É„ë ý¥¡Çè†å9r§d‰±&ô¼8:8=KÏRÿe…ÊÄoº“Wô)Œ 0¡‡äž¡Z»‘þÊX­­&¡ƒÍàa$ó¹Û’DzÀØãjØÞR÷ä–ˆ['ÃHQ&L&BÉ=çŽÄˆ~^ãD™0™¸tì´·2úëÎúo9Z'L&B õ<èR±ÓžÇØkGal€ =$' þµóžÇ[^7£06À¸¾'×½¢%¦7·Î>¶Ó *ö¨Q¿=åÏ!R¿otO.Fåí—ý×ö%&× “‰PBf¤PuÜÙ.S¨:Ö “ ×Áz+CÕqg}¡êX'L&\ë­¼åŒíÎú£ï— “‰ÐA×¥»µÄô¾rÁÁhoåñ…õ=þ×/åÕË„ÉD(©¯±k‰éùŒF±&ô2: ßUº ¦ÎØãjx…2w u¦7‹Ë5…±&ô°?D Ö–í­ÅˆW&lü´1ž×£0~¿Xÿb¨"0Të„É„ë`ý‹ÝÉZ"î£øk™0™|®{fGâ{0Ñ‘ø~Jè£0—žƒîÄxq°}‹ÿú÷¾¨©&¡„çw³·¬çïžëmuÂdâE ™M篂ƒíÀ„:X0™p´¯0vÌ:h¿_ì-¨06À„’ß/>x¿ß=ç ƾ¹=£ÏŸQ¿k…êÖõÞÓq%X1¦06À„–{—a=¡"Z'L&B›YƒËð‹ûœ}F`l€q5lG¡Ç‹–ˆ[—Å(V&L&BÉ={´$/Œ1¬L˜L¸ÞWØ©%¦ã.Îøuh_á1†õüÝ—ì•eÂd"”ðºÞß·å¥ÏAûýb7:…±&ô°78ß»èã¾%¦]Гx5úX(Œ_‡ž„‹gÖ(Œß7ºwñC„eû ºX½Œ2a2JÈÌ*ˆÛÄ:a2á:Xï^¨ ¬¯.Të„ÉDüªéïèztFäß\êËK_GLG®|²¦Ân¯-÷!,›~0™p´Ù/šþÉñî{²ü:a2Jê‹ØZbzÆ•?\ƘÐC¦Ç`E'ß®·ÉŒÆå·ådõY(iÂ(£Mx±y™ÂØó¢§j3-!½ÙEv&ÖRLöäm{¡MžÂØjØgÕÂ["î?yòÄ¢NØ×àSË\àQ¿oÁ ËñÆŸ kÛ Þ“µÔ…o0™p¬m¯Ç™–ˆû ѯL˜L„þ®€'óí—Îü7À„~™—¿ãþeÂÄ= KÒ¡}ÛÉ[ý¢'ñV¿>.[bz÷ âÝúaFömþ4»z™Ï” “‰PBK#ÉY«Û#'”ë„ÉÄ‹ò¸Ãao¹´['L&\m§‹MŸNÚæ[ê)Œ 0¡‡”F0ºðcáx…ñ_V(ŠæäÈI7câ¢A…±&ôòÒOÖN éuÂd"t°ï+É|Sé‘S} cÌ_5óÿýþ2OvOn‰¸u²÷H!&¡ƒ”Ü‘C) ¼Ç ‰0™p´•lò׿^ûÛRN‰0™%¼äúÌÏ„¶xM ÈDƘÐCÊïþõBôæ•+¨©36À¸¾­Ô½¢%¦‘œùo€ù ÿ•9DƯÃÛ¾o3¿×t+jŠä/̽/o¯q\"L&B ™Å¾«_ˆÛhù^¬–“ ×ÁZɾ«_ˆÛÑÿ^¬–“ ×ÁZɺ+·DÜG$ˆeÂd"tÐåòî`-1½/pp=ÚJöCLbm^={x™0™%õ%“-1=:² Œ 0¡‡ÌªÑYøFÏãÈÞ"06À¸šB1F&mñšZ¤‰Œ 0¡‡}%@¤`ÍgÑaÙvWŒxeÂÆ¯Á[¯î0ë˜ë~=Y»Ö÷ºð q‡—äKuÂdÂu°v­îd-÷Ñ"ûk0™|~|$Gzò­¡àHO^}~oÞ 2®‡oÙ„xñdÛ)3E‹:a2JhN¼õÉZœžä¬uÂdâE ™M¿Õ(_ˆû(¹&ÿª&®ƒ¶QMMxþ1,ϱÀ¸`BÉ £óö¦gÎ[(Œ}s~,í{Å]dü®ñÊ›/4l‰é¸Òœ¿ÚƘÐCòÕïÞD?—ü^á•“‰ÐÁfÖà2|ƒèOK‰—·L`l€Q~Ûœý‰möôÓq?O„ÈW&ì‹kÐ9‰k·&îÉ¥{$‹ûEòÜ_˄Ʉëà-^Ý-[b:ÎçŒ_‡¶xýÿXûÕfïeÂd"”PßßòwÛ“·^}?üSdl€ =$gÎÛ¨þ´ë}qq±ÆÕð-¼è—| /z9¯<¿·|™ë:?8j ó?g躛3çß/¦wß²oN|K2Ì€&¶]øÄ»V%L&B ù2ªðÄ6ÙBU¸N˜L¸Ö®ªÂk¥ Uá:a2á:X»Ö3‘L¬•*Ä—:a2:hžß]¯%¦‘³SN¼%*ı‰µ+=ßÖ(I„ÉD(©¯gl‰éø3¿`BùAgá›jß[I‰Œ 0®†Wƒ×\·šhÛÑÔêKdl€yÑÓÏ÷¢_.tmþOÓ¾75eƘPC¾û<îµDÜÆ=ŒÆeÂÆ¯ÁÛ›B¦Haü~±–¨PMžX»R¨&× “ ×ÁZ¢ºË¶DÜG2ðþ2a2:ø|?çì'¾­Ø™ÿ˜ÐOãÒ{s ‘‰{@׿û¸o‰é½ûà|+2ÆY²Møx@”-&¡„ÖG0&‘§KÆï^&L&^”¯«ZÛq?»ÈõÝ:a2á:xÕ÷à ÿ1,§ô~l®ÈØzH}\æÇ C†Da®_6óÊè’¿Àg¾ÇV*Œ 0¡‡Ô  š>³6¢PM¯&¡ƒÍúóHžé¾ßã‘óV cŒ«!{KÓ["îœ #E0™ý<8rèèçà1NÔ “ ×Á[ˆ‚¿Î¤½çñ˜³’2a2J¨ç½>ôÂtÔ¿¡&26À„’GÿZX^üxäÌ•ÂØãjè^ÙðŠ–˜ûˆôÁÇx%ý½í…Èøuø¡¾ð®0~ßø~TŒÊd¯èñ€˜\&L&B ›‘æJòÌvXB•·N˜L¸Öª*¼3k# Þ:a2á:H«ÒpØ–ˆûè¾_&L&BË‹‡µÄÜÄÆ[¢b|!íJGþ©&¡¤¾²%¦ãCÎü`l€ =l† ÎBw{={‹ÀØs©Y UÚGzÏÞªôý4‘±&ô°Ž k¢ »=¯ñê„_ƒ¶Ź•ÂøýbmG¡Â¹°– Pá¬&®ƒ´ 'k‰¸Ù_ë„ÉDèàsÝ=9ÒB÷z¢#-¼¾ùÞÀBd\߃ ñb!û#Ÿ&G-ê„ÉD(¡ù]ôVÒªóïf÷w¬L˜L¼(éϦ¡>·°žP;«&®ƒ·…Ý‹ oÓ {ÃÆ˜ÐCò»èÅ+[—~*ï• “‰ÐÁçÔ9C²Òý®Áü'0S~yýù­[†ÄUØJö_/sÝéï\…³‘]¥Ç¿¦µ/Ž\'L&B ­Ž€o¤Ñí1=’× “‰%ä{"¯™ÚÈþX¬îÖ “ ×Á›éÂŽ7¹…]e cLèéWGзB½rÉÏ’ï­„õ| cLèéW °Æ½‘&¯Xã®&¡ƒÍCa„Ñ=¢Ç”36 cŒ«!»Ã+["îgHààeÂd"t,¿;eè xôï2a2á:xƒWô=Ò|õ˜¦ÎvN{vñ2a2JÈÔ« -·žµ™:a2á:HŸÆ^qÎåñØs?<ºÊ„ÉD(©¯ßi‰é¼ÁÎü`l€ =$õ©tiÄúT0™dv„c‹ï¥›Î<ºÆ˜5´n”×™\LoŒåu& cÌ¥ç`{öÜ+["îçUÙÁë„É„ë˜ÿÍ’ê~qN…8¾®kÜGüì{uÂd"”óYÅ™FØÁ÷ Á;x}ºB)Œëá{ÐÀǶ?l~$¯&¡d+Ç–˜Û÷x~&§¨&¡„ÍrÕä ûðjR'L&\éhˆU“ƒtĪI0™|ÿA^x1½·1¯ W`\O!þ³è£%d¿MïÁ:1q-l¿úé÷áù“]aÆ#Û¯„Y&L&Bù¿9.w¢–ˆÛŒþX&L&.çãQ~ç[bîµOII0™%lþ‘³ÿ'é~‡Ùÿ:aã×à9fè£0~¿^wfô ¢%¤³Ô';—€˜Ž„å=cÚqëCÇ­&®cyôk÷øÖ“^fÞú…Ì$pô– “ ×Á³x^In‰éÍ·seEal€ =ĉ!ó{’Î_˜ù­&¡ƒÄkY|ý<ç±%06À¼¨a9¨¬^L'BBeUal€q=¤ÿчçÉ×\û]k‰é|sã¥9M<‰Ja~ôüþþÍ|Ùûyîòîa2Jè7w~7¹É3Âd"”°h¼Ãa‘r‡'R%L&\ÇÜbžÐjïÀýh<òÓ¨¦/ÊÕ±–˜Î˜Ê=Å$ƘÐÃâ¼[|­í¼å·K`l€q5lM¯»DKÄý—*xW™0™ìkxÍCea_ªà\eÂdÂuðµ–ø ·Ì©À&øêL|#iž Î>—WÃWg¢_°•“óžÝ¢L˜L„…<§Óqë-9Ó$&¡ãœk9Ðq.Ý72gšÂdâÒQèjï•–˜ÎÛè̯ƘÐC"<ÉçóÜk÷¬%¢³t>Ò³T`”ßvæw€­ÐóQÜq?г·Ô ûâ{Y» 0~¿–i¯åQZ"îß±)¿/eÂÆ¯A³;pJ›ÄøýZù=†÷ø‡éäpŒ Œ 0®‡¯SCÏdkÈ–GvÌ2a2JÖòÛßÓ»c0bH‚ Ì? ó»–-ÄtDøaˆ?Hq5§ôùë0k%¥¯ öÅUþí§®È7ñ;Æ—ÞåÖÑÎô¦ÈscÌ¥gb‹¢|`¶DÜ?°‹:a2:¶ê Ó²Þ}ƒ.óûVL\Å“¾Ù[~Šå™Ž´2²äéûô<«ƒ«½#½«äñ8MÛZºÅ-·3$xêUÀ†¯@Snp0‘Äø½âËÍÀ»&¶lY’sÕ “‰PÂ>Õslb ¨ V'L&BûTÏi°ßùŒÎi°:aãר–¹ê6Àøý*$¨®‚OKÌý[M$ƘÐÃRðÆì,%oÌN?»xžcŒòÛ¶”rØ¢3w‹–ˆûÙxX™°/®A?=]» 0×ux T8nDbþç ÿmù=»˜JÄ·¦ LNíÏô Zôš™»d§©&¡„~Jû[ÓÓ»cydÎlQ$ëf¶à iuÂdÂuðDRnëèLïmÉ%P…±&ô°(Ï…/•YPSgl€q5ì8ÊF%;øGe™°ñkìô“*‡Xñ»Å—ïøn‰é¼ÿøôùRœ¼e_b.= ]¾ƒcsaKk–3©©&¡„¸%d^¶ 2/uÂdÂuðlBΠÿ …K@ûâ*ÿ&És2…ñ{6ý•B9kñˆpüñõJ9…2`*à ˆtÌ”3Ñ›HŒ 0®‡-­ÁÌ–áf eЉʄɄëXÙ:BÁk‰ßúÈ#« ˜ ¸ žO€´æÅô¤ŸY‰ÀØzÎÒxlïÿسCÿÞFÿÿv["nã!úI™0™¸t¬Ï©ŸeÆ¿ÓëK'©nA¢%âþÙäDf0™õ…-1=Ÿ<ó`B™‚£_ð¥ÂÛjêŒ 0®†-Ivço‰¸õKŒGeÂd"tô§Unûí¸]‹ª€©@hà.öÃt>pÑ]Æ׳ïe×k‰é]œòXŸ5Oj‰èý²¼ÀVal€q5|ٻ▘^ ‡áå%XR¡0—žƒ/{ÿ?Ø’ô-»0™%dz;¢¡Žs÷ofž]Ô “‰dÆ»&Ï?ØÒz(«Õ “ ×1Íò(¾˜Š¿ØÓ&|Þ‡%m´ÄtFœ¯§06À„ž£¿ÇËüóD÷G~¢cŒ«a‹ìÑ/Ø"{gl<ú^™0™p˽åRÓ±±¼X.5Õ “ ×±oúÛõÃTƱ 0­Î|úm4ç{ ã÷/SG_bKÈ÷gv¥2a2JXäˇƒ-!‡‚C0™p'ËÂÀˆY¦#çÄ/â^Î‰× “‰ÐQ_XÑÓzÃÆ×Ã6Ãø:Ùbp_'[¦ >Q'L&B9ý‡Ñr1·¦ Œ°…}!Ã[è—ë¿þ~¯cL`l€Q~[ÎÞœ+ýVØsGaâ:Ôr™V@üyò%Ôè4lyó¾fŸ)&¡„|SCâî"nßeÈÜÕ “‰ý™äQO¶¸ò¨uÂdÂuü‡qÐo]˜'(L˜9?—“žK¸ÃvÒsvxþ<3‡Uœ|5V¡06À„òíŽãòäßÔyÙ”ÂØ£ü¶ž(™Ëàˆæª÷#i±æGÍô`‹ïÝ™["îgM)^„}q þ ¿¿¿1ã÷«¿Kµg:k"r-Fbl€q=3¿it:Sñ[`šÀlùùð~Ú>Zb:ÇçÄ{ ÁRH‰q=ËR~G[bz÷ Þk¾?Ç)gî½ãZtúK&L&B ›qÙÑØ"ûœ]“ ×±ÓÃ~Ði~˜Ûr÷ñÈ>S&L&Bɶ0ÏÜ@ÉˉÃ7ê7ÐRgl€yÑS®v¶ÄtÆWÞà+16À„6£w“-ÐöQÙqÑÁ+Ê„}q ž3I߀sݯçó_¥„™–ˆÛï_Éu¾¸`Ó[CAünMKyL¶ÄÜßágÖR&L&^””GcKÌíØ:¦ô× “‰PB¢ªçJ["n]%gpÂd"tðõJ¼[çÁÞÇÞ®:cß\gá¹ô¥,1~ßx22áLïí_ò»,06À„óð}æ«(9¿ÑcŒ«ÙþÕ¤¸3µDÜ{?øe™0™d^á¾ÔqëKè–eÂdÂuü¬V¬Œä–˜ûg¸ä'R&L&\I!· s—ƒæ!òš‰±o®sòœBÎ)Ìÿ‚)â–˜ŽÇ¢Ãðür^.1—ž‰¯ÖÿŸØJÊcMc³N˜L„6“Éω­@„ld0™p?­¾øXn‰¸÷ãì0uÂdÂuÌ4Ïs1÷Úsn N˜L„šçȵ«? ûÖÉ+ $Ƙ=ÕtKÈ~Ÿ®L˜Ät$´°ùŒzÞËüØó¸`\ [sê®×q?‡/.&®cgy‘ü÷þ#¿L˜L„í÷ü~ñèø~ñÌc® JŒë9hì`Ù‘üíZ'L&^”T­¢%¤—"ÈVGLGB ›¹ä¬ëÄVBF´N˜L„žA͵À‹é½‘iý‰ÄØs陟s¿;"dw›ßO«( óZ'L&BG½>ÙÓù.Èg7HŒ 0¡‡Åü<^.¢çãyÄ(Œ 0®fb9žœQ¸ˆû÷2;r0™p3ÍÀ还[íç#ý:a2áJ yÔ%+YxÎbÉZƘ=gÍ1Z":«ΜGT`\ ?†ù€ñÏaÆñÏ3ããU×Ã×ö¢;³u·gÎŽÖ “‰PòO=Ï ·DÜ¿™ð–• “‰ÐAæc­žÙº[ÈV× “ ×±“L’;_KÄíD?.&®ã ý¹Ox³Ú L`l€q='ÏŒA|9IÖê̳ä:a2Jxfl%*vqû6BÅ®N˜L„޵*¼%àÞò󳨦®ád¹Ô£öä9NˆÚÓȨ̂ßF}j sÝ·ï(¿ßÈnó‘Λ“‰PB²P¥ÙØn¨ÒÔ “ ×ñ$Ù:p•ßùò<ùû^al€Q~[΋nO–Æ¿Ó3ÉÖAé7ÑϤA©N˜L„îI¹z|1,¬¸P`BO}]VKLÇÇ`×žÂØzHö‰îF9Gö&±Fùm9—°‘2áæ-÷sJˆ1e¾¸Ëñ„v`â~q7G_XÎó\ Ó&gz·•åFÃ[bz×GßHF}£™¾gž“+Œ 0®†îgú0:é~¦ÎÁ«=P·P×sÌåXÐs›ózB”*&¡d)é–˜Þ“Á;Fgç ɹûçsÊq°L˜L„’ƒ…šÕEÜepÀ2a2:v ¬ÙÙ~ªI½÷>¯ÙQ`.=ûƒæ/Áÿ.¦ò=kL«3à™…î²°t绚`¨ÂØzHþÆÍEôžhþJQ`\Í4wW.…Ó¶DÜ&‚Àÿë„ÉDè óY÷¿–ˆÛ¹&¸r0™póVvŒ–˜ûg˜½¬N˜L¸’¥Ÿ‹ÅÚØEÜ,¬Õ “‰ÐAëV@LG\ËJs²èD+Ï•æ(®0­Î|øm,¶à¶Âø}ã{Ì0†‘ý_ç3ŸŽS'L&BI?'‹õªì›ÂzU0™gõåo ¹-ª<·4&«€©€«Øû™å¹Óìí3goƘPóodñÑqç!r• “ ×ñ:kZ»?ÆÉ´T}+¦®á|ôK§×«Øp›ò訦¡gÑó ‹‹éÍŸò F…±&ôÔ×|µÄô"ÏÅü`l€¹ôdÖ‡èCv¡aô9Èž*Œ¢uÂd"”Ól0¸ðÅT²§6À´:Îý·£tÁ]ÚûßßO"’ßUÿÞFÿÿ´>…U…ñû´ð|iv¤‹¹Šyåb0™%|F›½è ='Îgv¢:a2JØŒ6W²²ÿ«LuÂdâEÍcæu,ÇÂó‹øvÕûæ:[=WhŒß·BÝ#ï%9øŽØã¨06À„#á}¦;VÎé‘ßh±FùmÏ<–“„qp°|!¼eÂd"t°ù8,éÔñÁaË„}q ZõôghŒß¯“ç>áÉŸ$/9MùÉ— “‰KÉY¨­ä¼úÅÜ«Çuë cß\çYÏÍÙã÷îØA‡9éŽt?ÞyÝOa\ÏD«Ò> Zbz×É#çä;ƒ žl×Δû.Õ “‰P²ös/PúMDjäS êQuÂd"tY)Ô£NÒ³ëQuÂdÂuÌ$§çÞ×qûÁ‘ë„É„ëXβëµÄÜkÏÙÉ:a2áJ µ•\·¿˜žú¼Þ]al€ =ÝŵüÊr/Sî* ¦#/Jè—Hžñ|ì7U`BùA£=zÎiË.&06À(¿mÏîÇvwyüj‰¸õ}Œªe¾¸ŸWíù L\§ž{´ÆŸË^,é´wàÞdÀÉ«€©€kø)‡pço‰¸z ¢L˜L„Ž?¯[¡¬Óp›mΕ¦2`*–ªÙ·w¤óÖb| ½>¸í}ôÁQi ¿×æç·Íì–ýûVŸ¯ßUþ{ÿþçþÎËÎÃÌÈ™ûQx¾)0™%ü»qSœé=Áßþ0åYAKÌmLœïÑG L&B ûÞJ}lœ¸ŸÝ¤Ê¢@˜L¼è UX9õ‡!y3Ø›"16À„ž3¬¸[":#~˜¬3öÍu&š×Ëãwmžú3¼Tuàï‹öè¿TÀTàECÌëzAøEÃÞÂh¨¦¡¡¾V°%æÞSa¿ÄØzŽjPmïHïí…8LvW~ðb¾ƒqž² Œ 0Êo›³‹/¤‚å¿%â~Þ ó2a2:È÷¯Çá–ˆÛ!†³ƒ2a_\ƒÎ¼ýÚ÷k/Ç”–˜Î›Ÿù¹¬ÓZ2ã–€GGLŽuÄt$”°šß‡ùÎJêqóšg;eÂd•ðµ y­–3=õ{Ö"0öÍuvšg†/6…ñûÆ÷Ô¢'ó=µ/è:È3JŒë9ÕAÐÒ““Ç ßïêîÔÓ» 8ÝïúaÄö¢Î[öç2a2JXeñÈÎ|°ª_ZU"&¡ƒ}éÂ;éD+>ÂdÂuœ¤²èÛqûÑ÷Ë„ÉÄ¥ãùà•Åìûs¯=»q0™p%…¬äI+~y·²ÄØzHe1ø 7{Ë#^@LG^”ÐïÐ<êŸtos0¿`BûBD5ü+ ÕÔ`\ Û{챨%âþ &GÈ:a_\ƒVâ ‹¦0~¿æ¾Åæ%%p;óŠ’:`*àVR½›ÁóWRYCÏ/&¡ƒU¾fpÉ•U¾Ð¿hÏÉU-1½Ù*Œx¾·rB ãz6ZiÂH¹‘*Ðq²L˜L„>¿‡'Ãv/Ïü\Ê„ÉD(!óâ¼VÉÛ(”×Q„ÉÄ‹Vòu³/JX%ï—`B©¡Ýo´2³€ã Œ 0Êo›óoÛiVÐ`ü:´—æ‡É¨Àøe+>òÊ'îß%k)&¡£¾¢»%¦ã—yµ¹ÄØzȬö^<—%{ ÀØs©™¤†â±¬%âö½„['L&Bù:ðHÖqÉ ¾Ö “‰ÐÁ)»åÅtÜÅ¿Îs-;_KLï:3\‡V Î^Ìý;™3PuÂd•ðÏü5r1=õù{Dal€ =/+ºNjþö{ïÌ–"ŒÂØ7סgAãÌDaþÌÙÑy½ÅÜóz‹2`*èw¢Ç‰–˜N‡6ñuy=´Ä¸ºËgÛ¿ìi~Q'L&B ©žÀІßD¿²+ê„ÉDè _‰°¢ab;ùaµA0™pëÖ_Ž£ýxt†Ö‘Æ{1Q~Ø™lb%¥£%—Ž.â~Ú»L˜L¸ŽíQ'-1½Ð!h[ª·Øt$ÔÐBNC6R¤ZaÊ^&L&\IaÚŸËN Ty[šÄØzÈ| ¼{g%ª5/Ó‘%4çm =„#˜_Œ 0¡‡|²c8âj¬SHcŒ«9¸id÷ÿAz³·#ù ;VÃ'/-÷»0¥*öÅ5hé Ò‚ ã÷뜪VÞÒ{*ÙýÏ~ðƒÕ?À­)ÁbŽ2`*pi˜Ÿ¤¨ç‘¢%âV6į:a2:XQϵ½#÷ ¼xæ‡u¸C´Ät^,p¯™/~È QÄÕL´¤1ÿbîß—œ¢¯&¡„tæ9³ƒ:Ö%¹W0™%ìc-/¬˜Ù°è¡N˜L¼è`%=Øw1O´Ô,ƘÐCJz`öѳ¤ì÷ cß\‡7å…D Âø][IÙ –Œ\Äý}Î)Ú:a2:ê‹¢[bzžt1¿`B›ƒƒËð£$Vð±ÆÕl¤læñ¢%â~~Q¬L˜L„2Ë÷hÑq-0†• “‰ÐAËf+¸åFËf+Ì]wZγ“RÓºçS&L&\IaIL_Zf‚ͼ cLè!å,ôýƒ–™Ö#;¿ÀØ7×á­“!Ñ£0~×øa+ø2?,}™/­ ¿{ùßOêçËh`®{½Ðc 0¢/숆í‘ây0™%¤L‹F~ý,©&¡ƒ|ùÀ¢‘…5‹Fê„É„ëx’J»KÄýL!Ǥ:a2á:&Z©q§l‰é¹Þ‘ŸûDk(û.æöo9òÕ “ W—0ÀÊò…¶¦Æ 8 cLèéq4–™U7þ5(zu–:b:"ü°¼†wáë2<¨´Äô‚1"¾Æö/ü Ø ¬06À„òi‰6ÎO›Øòj…±Fùmkþm KEûËf:â÷™Sá…–ˆÛ‹Ó—2a_\ƒŽ3¿Ã6ÀÄuh Rk ãÏe-®ˆhïÀ½Ëæä]0p ;) mwR°Á€\&L&BV)vVr$®ÂßFð~šz_{;ÆõSÕŒÚ;Ò»kà_´û‡É둾åe@uÂd"”Ðs)ÜZbzÏ…çB?Yq¦ÀÎŒØöåˆY&L&B )#Á"ŠßD¿Ä‹(ê„ÉDè ß°ˆbeçUÀ"Š:a2á:Xgy÷×–ˆÛ'ˆ®_&L&\ÇAËHîE-1_q&®CËH]RâÙá .&®„/€-R+íÍŽ[¤Æ˜ÐCÂ$<–“Ukö|v†€˜Ž¼(¡Ù´Ÿ5Ö-!ûýeò)Äb:ZÈ×ú$_f±¯Ù)ƘKÍÆNœðx×q' × ûâ´âÅ#…ñûõìÛ8¬Qx=éùã ÎKÊ€©€k˜I•bÏÆr÷Ñ+û}0™¬JáFÔÞ‘^|ÌÞµñz¶ª–˜ŽßÁˆßx=ÎÊQ׳ÐúDÉ‹¹crŒ¬&¡d©šwKHo¥IòûõâíЇZn0™xÑÁrî°Ók[h.6÷*Œ 0¡‡äÜÑŠš ßÁÆå·ù·­4“æŒ 0~Þ­ê ãOt'õ¨ž_Äí;Õó:a2:ô%¿ßî̯ƘÐCf¼è€|Cø~f`\ÍAê;D¿ƒäê1ú• “‰ÐÁG2¸ÌAóè;ÌOzÆš;FKLï:\‡æë1>$—~<ò“)&—’½P Íõà‹é©Ïë™Æ˜ÐCòõàË¿ –»:²3+Œ}sÞ¹R ãwoywoj‰é}7dßÜyõ9Ø# ®†o‡˜¶³MÜÇµêæ—L˜L„’¯‡zðo¢ŸK‡zp0™ì»$׃w¶êÁuÂdÂuÌ$_ïþÚqûÁõë„É„ëXh¾þŸ\h¾þȳË}¡ùzŒ. É¥sŽ-eÂd•ð*(l”¹˜žú¼žIal€ =$L‚±¬,“~ä|½€˜Ž¼(¡_0çO^©%¦!.æ×cLèa_0à•|;ý‘{>+Œ 0®†mw÷˜×q+0— ûâ4ÿ+4Æï×^,½¶wàv C=¸ ˜ ¸†“äìÝ]["î#x~™0™,gïfÔÞ‘^ŒÿâÂ}TµÄt<G<¯kÂay sé94g‘òbîߘ-=ÿ:a2JøwDŽ,ÛÚ}ì)®Ô “‰PBæßP9=Ø–h¨jÖ “‰¬.›}ŽÍׯU…±&ôºØýEôLéHޝ0öÍuøyýyMƒ€ø=›Iæ*Âq—sE¸N˜L„ŽòBÄ–N1Ÿu- ¦#¡…ÌYÑ_øžÛ#gÆWúÜ{¤h‰¸Ÿ[@ü*&¡ƒÍ½¯8Ñq?/†èU&L&B­¸µÄôfbG‘¼g;FÖOý|ä'_&L&\I¡¢™çà量åY¸ÂØzHV=£Ùö3gÛƾ¹?†êô ãwïYvïk‰é}Y€/ó2ç¤0®ç kh bt Ä2ÖOj®ëu5×:a2á:Xrw–ˆ[åèeeÂdâÒq>h®ú̹ê‹é<ö3çªOÞï<ód½ÈÏüeQ'L&\ ¯Â®µ“÷!‡½· cLè!æŸäI;‘ŸyÆ/ ¦#ÂË顳PÿÌOœ|#-´ŽRûæ:Kªù-0‰«ÐÔ+èÆŸiù õÀ“4ä†r`0p ¬å÷™'½'kǶW&L&B}M`<Ò–ßh¼Üç+Œ«ù×=ªòÒ·w¤§Ü…7üÆPÁšqŸyñO0™%4Y‹>É6Pž[v¯2a2JH²Jf'Ûxå¬:a2ñ¢ƒ%kaÏÃÉqö0…±&ôd-š=oª}î ¦ÎØ7×á§QÂl…ñ»ÆšjC1ðd ¯¡X'L&BGyZKHï{õ|O× ˆéHh!éZt¾]ï<²ÇŒ 0?¿ý¿â'OW”ÿÞÄ¿ÿ¹»Ëƒ5ø>Ó’''îç:)¢ „ÉDè éc\-·‘+ÇS0™4}ìîØÓ›KíïñayðÆÛ9Þ9só®LÉWß“ W«ry;¿3=õÏü Œ 0¡‡¤s úCô“N¿ïª©3öÍuø Ôy]Äø]ã›IÁ‹|3iŽYó1¿zŽª•·w¤çàþ|£gš'8ÒKR¿GðßIRç墟@Î%J0™ì[gÏ1†m&Í%J0™pýÎÍ/Ûqó?9™0™p¬só‹µÄܾ¾/L\‡&Û1Âôûÿ¾Ê”ßà2a2áJxa.mìv䝸µ‹üÒÓ‘ÐBÂ$˜ étüû~Íù™ÔÓ‘%4ã6egáÛMsO‰±&ô°/6ðI¶Ýô÷][@M±o®Sèö{¤·¹Žø=#{sýón_ÿ\þ¬¦—†çëbÚþ n Yo-l}÷–2`*à*úý‡_\µ%â>re¯¯&¡£Ÿ x1¢öŽôbcö®'ÛŒù2¢ZbnýîÃ(|òÊb>ÔVb\ÏÏñ±ôui ¸0ù ®¦¡V ž<ûÛ=_$gCê„ÉD(áYùk!Q(áÙò‹ù5ÀØzHVlþÉzéNW¼»‹ÀØ7×áÇçæ¥ÚãwõìÍ5_'îï38r™0™õed-1½±|1¿`\O»ÜËxn‰¸ù‚þä2eÂd"tœëË»ßÓ‹•{~þ¼;,ºY¿sëï«ÙËʄɄ+áµµ¼%Û™Žú|¤„ÄØzHΆumý}×Îì1cŒðÛžùëàyÒ\Š36ÀÄuh"/[–˜¸Ÿû­Ù9æzs&¾í<}êo‰û}מÉÑë„ÉD(!YZ¨N¬£*Të„ÉDè YZ¨NlkTë„É„ëèwm}qå–ˆû…+ê„É„ë`][?8ØÄº¶¾0q£ìF-1ë8óß¿f!^Nýn¯¿¯2%Ï«&®„׿ò¡eÎôæ=ðf Œ 0¡‡~0=Ò¸õ÷=ËYd1yQB¿.Àùx;ÕÜ«]bl€ =$‹Œ>ζOþ¾k9¯¤06À¸šþöÆ—xÜqûƒ³„2a_\ƒ¦¶óÞ‰ñûÕmZú¡D9u[Š~¨P–S×ÐoZúâ®-·²ÑóË„ÉDè`™d7£öŽôb$øÛø2ªZb:™dñ¼Ú–HŒëáíD1Rö[}þV³æ8Y&L&B ÿÆ/î·àü}ˆ+eÂd"”Ð|r>%çò6ù01‰±&ôtóÉŸl’µ­ü}×vPSgì‹ëÌüx×¼ÝJb®»6÷Ûc~¨ðÍýÖ•*|uÂd"tÔוµÄtÆrnó,16À¸ž~CÉgj‰¸eÙ/ë„ÉDè`s½ì–s¿Ùã·¬&/:z!¬…ίg­~,¤Zh0 4·ï>ÔÓ›½äõÔ3oŠ ‘eî7¬ü}•#;d™0™p%…¦˜Gz*?/üHGý(ˆéHhéæõ?9=kT9ý 8ï^/0öÍuø±®°Daâ:|¶û/§ýz:ãO‡ï‚ÄøÕß¡8=¦GvÊ2a2J¶’+µ÷¿¿/QfŸ,þ½‰¿¿›3ÿPÉû;,?Trë„ÉDè8«Ñr»àgzægQL\E¿Ñæ‹g·DÜÏQ ’” “ ×Ám¾x\KL/öæÌÿüsX*½Á-·Rà™WSÐÀ÷¼ÀSç­/ó±‡cL詯½k‰éŃ‹ù5ÀØzºÙèOÉv‡þ~ ¦ì‘cÌ¥féï–|‰p-·ân°/®Á3Ë93¡0~¿ºÍ)?”b_çÐç¹ÞUL\Û!÷òž´Ätò«ð/¼•k—×ÃÛ-‚c.ýVˆ¿Õ¤TÂd"”ðypöÊ‹¹ÁKrÊ:a2JÈ<ª\K÷Ú‡ T0™xÑÁòÄù·? ËÀ*%…±&ô°<1k›øûéçÜšÂØ7×ᆦs'ÄïY¿iâ‡êÝÒohø¡zW'L&BG}U[KLÏ‘ÖìûcLè!31ô¾ëkڲˌ 0ÊoÛ³;õ-¾D˜–ˆûψ{eÂd"t°Yè_Z"îgˆõÊ„}q >³Úó»"0q¿h.Û½²%¦ó==åúÅÂFbôë7sü}•ü%Z'L&.%k¡:˜ÇÊÊ9æsö$ƘÐCòÙ“VÖÈñ÷];AM±o®ÃŽ~ýp‰Âø]ã{Á—W¾GbÆÊë±ùȉq=ÓRöŽ–˜žžì7+ßG3‡•íñ›ó7|0™%¤’ •åµß6òCe¹N˜L„ö}•³Pk¿mä‡Êr0™pýÖ”/NÞq?»Èñ¥N˜L¸ÖšòÅõZbzù„ëÐõãÇúm#’ü5Z'L&\I¡™ëä+o™ÏT–`B È`,¤iäô÷¼‚wg©#¦#/Jh÷ZãØÓ‰Îü`l€ =ì;¼’µŒü}׿ì–cŒ«a{m=æµDÜÆ ŒÄe¾¸ɾ8RGaâ~ý_–Kòð÷uyt€_*`*àºí5?”×nóËUà2`*àŽsÕD÷ûq¾„”–ˆÛû„®L˜L„’>ÌEéõõ”ßÙT”.¦¡-ü÷(ÒÞ‘ÎPÅÀÃzоØaKLçs­š—¤ó¿séÙxOQ˜âlý~Ÿ¿Õä N0™%ô¦Ûx<ç A0™%äà Þ[Ãî‡bt0™xÑA Sÿ>–W%4w1¿`B)LAŒÛX¯ÏßOƒ±Rgì›ë°£ˆ?¼£0~׿—4`ÏÈ[{ÿõO±¥ ˜ „†ú‚Ñ–˜ž]̯ƘÐC>7Ðaø6ÒyÏ#06À¸š~WÑ—XÑq?C‚V&L&Bûl‚øÅ¶Äbü*&¡ƒ–~ÜZbzs±-ß/ÞUãK¿ãçô÷\ê÷èR&L&\ ¯øÃAúïö™[“HŒ}svtï‡ÃƒÆï߆ënÑÓ›ƒ“±e ŽoU×Ã7¯bœaKgˆ2eÂd"”"”ý·~Îeÿ:a2:Ø\<—ý/â>¶æ’|0™pýž¥/žÔq¿À)Ë„ÉÄ¥cç½DÁ)÷~ŸÏé±<Ò›U'L&\ ï%šÛì¯->ovŒœïsc1 -ý ö´ëü}¿rL@LG^”°™¾/îm‰é¸¶3¿`B›égÿºˆNL]¦ä` cŒòÛæä|;Ûà챫%â~Æ›#j°/®Aç:®Ý˜¸-`À ãÏ¥ÛàõCU}ï¶_ýPT/¦®a¡‡Èƒ‡/äˆ÷½4_œ¢ ˜ ¸Š~›Ú—ØÕqûð0¢– “‰ÐÁ*n÷íé¼·!V>¦À·VúÍžÊJÜûR׳‘Cä¯×¥%àþÁä7¸ ˜ „ºÈÌ}®%¦÷L –ðMà8;`´˜” “‰PB¾k D¿³ ÎP>¯&/:ú5†m•vÖ¢öCk8…±&ô†EÖ¢ö÷ÓϹ…±o®ÃŽÞþpš¤Âø]cõk¨Ãïý6µêðuÂd"tÔضÄô< æ’cLè!_è2|ƒð’³s cŒòÛŽäOÛ¼¼äxq°Å/ê„}q >ë9Ò=V˜¸_´và.ÓÓ›ÅåÚÁÁZÊ~ˆk÷ºœ)jÔ “ WR¨ÉÎY kõú¡½œÂØzȶðòƒ·z]ó÷ˆÂØ7×aGPØfª0ÿ æìŽè\e¿€Ûµn¹Ê^LB÷‹ìÉßôñâ`ÕüÛ%Æõ,ü«äÈzþUžÉ·äìá`Ûå×gš3Ô “‰PBªFPÉ?úq?Tòë„ÉDè`_W¹’°mÿPɯ&®cÝú«€ÁU~€Çý+ÿ¯›Û‹¯ÔÓå‡ÍÉŽXçaÅ-÷y ˜ ” “ ×Á;{Øj‰é„ uÛR½Å¦#¡†?MwXïáuÉÏ¥L˜L¸’‚‡=+ÙÉ®ŸïƘÐCæmàÝ´ûðºæw¬Ž˜Ž? ¾'øÁ¾öº%¦·ù5ÀØzØ—;D0~8ĺç&0öÍuVðj:ò¿@ä°ôƒt¦{W!ŸUµDÜÎFp®W&ì‹kðš!?ñûuNÕÓÒ{*?È:?¬ÈaEÎÑíqýaAN0¸4œ¬ÿ´G½–ˆ[Ù‹ë„ÉDè £=‰“öŸv$®B?pݺZbz/ÖÅü7ÀÄ]æ¸SJð)Œßƒã¤â«íéÝélÅçD¶5}˜[]Ìý»|ä7³L˜L„úq‹“9ñÓåññ¢¤J˜L„öQœ“';«ÉÔ “‰´ä˜¿ OÖûCV…±&ô’#¢“÷ßÞ))Œ 0Êo{æß6Ó¢ƒ36ÀøuX·‚g)Œ?Ñ~ò zÎ~ð zê„ÉDè¨/¡o‰¹õËæ×cLèaUà€üô…mÊ(06À(¿mÎÞ¹‘­ZÿZ"îçr•Ë„ÉDè`aWôk‰¸ÿ@‚˜\&L&^tôîyñ×o ƒëÙiñW°ñ+ÐYµ¿‡6ÀĽâŽÑh£¥igü:ûZŽ,-1½ë<á:¼󘔧7øz+&®¤°dèZ~ÜÓQ=߯˜ÐCJà¿ZšÞr.Uaì›ë°nŽ„R¿kühŒaühŒ¯l‘Ö‡TæGÏúxÐò±{TKLOOòµ?Ly&Ósÿ¶í}Ž%&¡d+EŽöþ÷÷« Þ#MùïMüûøýä 9/sâvF™r „É„ëx’Ê©;xKÄí<$Ç0™p­œn)-èL/§¼ào†Ö4süræþ§è%&®„/]Êí—驟óÓ`BO}CEKLÇOsŸg‰±&ô/Pt~ Çvd`”ßvfob‡lxTi‰¸ueŒue¾¸Ÿíœù L\‡–ÜòqDãÏeí›s^ls÷sä3{F0p ;©†mà⬿=ºx™0™ü=±ÈÕpæ?¹f«¡Ÿ:r>ÃTbü´‚„‘Œu«ßù,&¡„Gœùiü;œ•^ò)V²ƒEögö½2a2JÈ<fIbü°c.>EZvÅq¶L˜L„RßÎë þ{ÔùÍ,&¡ƒ}‘ä/¸';J#¯7“ ×±“Ê€»rKÄ}‡XQ&L&\ÇA+î`-1½èºæç~ðÊĤƒdí÷=¿ÁeÂd•ðŠnî>åLonq1¿`B ®`,ÿ€ÞÎRGLG^”Ðïª)ÏyÙa Øk]bl€ =ì» ¼’챃[ Œ 0—š‰ ²çH<±Ã= × ûâ´&\˜¸_¤—R^p_—Gø¥¦®áÙGP>=ä“Aõ¼ ˜ ¸†‰ôR‚çð<îÇñHO¢Ž˜Ž¸’™Tu<ÖµDÜÏ'r®&¡ƒíqÚsÌúAz3–M&~ˆÇžýwâ‡x€ÿN¼2Ÿ›KHŒëYhæ-sûÆép10™%ü«.Çù‰áqä(_'L&B ù‚þÄŽ¾€úz0™xÑÁê3¹gÙ†åÛrON‰±&ôú ®…ÖM޼öGal€q5ë^ -!ƒÆZà‘ãjvR‚µ qÿ4óÚ„:a2:ê+i[bzÎw1¿`BùZA/ã y}™ÂØãjRò¨Ôqû^b¬,&¡ƒ|u)Ù)Ë„ÉDè U ÷½–˜Ž» Wž´ „‘ì$š#¯3¨&—’™WØsó*gzê·ô+Œ 0¡‡TÀ÷ç­Î¨¦ÎØ7×aMSp±Äø]ã'5¸÷µÄô‚ÿÅü7ÀÄ=àÕ¦—{-0~ØÉ"íÌN8rœ­&¡„T`mÂo¢_¡µ uÂd"tïX›0³Ó `mB0™p3©yÅÀEÜGð+ê„É„ëXhè€X±Ð*оÐ*Ƥ…ThŽ#{k™0™p%…Š|ž!^LG}n%16À„}eñ¼ö2š?j ÷—`B ù|AKâÇüœVûª¦ÎØãjضþÛr¯LØ×à…˜Ž Œß¯½X7oïÀý»Ÿ‹ùeÀTÀ5œ$½ï&Öq(ÀZË„ÉDèàSÖ3E¾ýÇ"/çn séY4ñ¡âbnŸåùHO¦N˜L„:‘v_m‰¹u¢3OÜê„ÉD(aÐ\Œ^Øæa(× “‰,ñž»LüaXŠ#÷¿‘`BI¼ƒ_Dgêzæ2‚ÂØ£ü¶9ÿ¶'Mt9cŒ_‡wÛÈG…IŒ?Ñ™¤ë¡è|÷ï@.:× “‰ÐQ_~ÚÓñËÜ-Obl€ =l¾ È7)ŸKö@±ÆÕ,$]ﱬ%âö½Ä[&L&B™·Ÿù+da®1¾– “‰ÐÁ Ür¡ézgü:+=bʯ%¦w®CËgW’²?×ü†• “ WR(¹ÂXÙhº>7Q`B) `´àí òqQ㿌o>wk‰éDôX^HN}GÄÕðMÑÿ؆åsËѯL˜L„’D‡Òîo¢Ÿà†Òn0™äJ» Ûx ¥Ý:a2á:N’Dwk‰¸«à¬eÂdâÒ±>hrœõbîµç¥)uÂd•ðBc>EÞ™žúüTƘÐÓ0à€Þ¬"gÆÄtäE MÓïiÔ¯|K·3¿`Bù [ù–î3gúÆWö\{,j‰¸ŸYçY'ì‹kÐ :¡0~¿æb²½÷9OË€©€kXIÖÝݵ%â>²€ç— “‰ÐÁÕ»µw¤÷þÅ7%û¨j‰é͉aÄ6 yÄ ŒëÙhn#åÖÏ»?ù[ªN˜L„žÛ‡ÈB¶1?9÷P'L&B ›çÚçʶÿB]²N˜L¼è`¹ý|L÷†å)rC ‰±&ôÜ>ÚýÆòçû#½;¾ÀØ7×áGuÃq ãwí$ùs¨ê^Äý}†¹k™0™õ…{-1½œÃÅü`l€ =læ .C7Í>ÿ5ü|õ±Fùm9ç¾=ú9÷ˆ1-wï2F¾:a2:ú³öˆ0-wã^°/®ÁæVñ m€‰ûÅrûá–-1÷ÎŒ_çIsîÿ.æþ\Sô«&®„×Ms¯8gz3Ë\¥W`BɹCLúM¦Ïª©3öÍuøQßp:…Âø]£ŠÑ—7º¡cÆÆ+Õ¹m’ĸž…ÇÞÑÓÓ~÷ûÂÌa#[qŸÿš&¾Ìê„ÉD(!•¨Rÿ&úU¨R× “‰ÐA¾° J½±-ÅP¥®&®cíWÂÉ["îg_Ê„É„ëØØòýp½–˜^Dßç-ë1Ž‘vòÏGþ©&®¤PÏ}ægÏ[ÉçF‰cLèéd4ÖþùÓ2ëå¹ÔÓ‘%ô;1ç¡6¾]Ù™_Œ 0¡‡|'¢WÒíÊÏçÔÔ`\ ÙN1¯%âþ;"q™°/®A«°ÍSaü~‘ÖèPÚÞHãr¨l—SKÃNZ£‡»¶DÜG°ìùuÂd"t G˜Q{Gz12û×N7ÜÆ¨j‰éÌŠù¯ÎøL:î2Ÿåÿ«p<^îsñ{À›–CtÝICñç3ÇÖ:a2Jø·GŽF;ÙÖû|æU6uÂd"”°9{®Mïl;,Ôë„ÉÄ‹Zɦºófâ¹Ù£ÄØzHUBÄNƒ?º¼ª©3öÍuøÑãp¤‘Âø]cÁ¡ê¾³¦ÝPu¯&¡£¼³%d¿},ŽüÒÓ‘ÐÂfºà0tgëó§ÑÎëS©36À¸Òà;bEKÄíŒ#X™0™dÆî‘¢%âv6ñ«L˜L„Zup7j‰éÌßœñëðfÒ_H£çç¢K™0™p%…jóµ"«%¦£Úÿ(Œ 0¡‡TÐói“çç3Wƾ¹?Fö *Œß5º›:¼¯%¦÷=¾ÌëûОGa.=Çëä~`j é•ßR,;ýL=Ö¶Ý,:Ö¶ë„ÉDèèÏú±¶}=ÈXw®&®ƒ4b÷k‰¸”Ù“ë„Ʉ렘Ã)ZbzQ,çÞˆ¼ÿ M’Ÿ?­›_ž|™0™p%…JknPqðÉЖGal€ =Ý öÁXf–Cælš€˜Ž¼(¡™ú#»Ka§ò‘ýE`l€ =ýï—^Iw*?ÿ55ySSgì›ëðÖŰ!Eaü®õÛc õè7#Æ j0p ¤Ýq¸RKĽóƒW– “‰ÐÁ2Ü>ˆÛ;Ò‹-ðÄé¾Öxz3Jxƒy%“(Œëá ’1ÂæÅÏ鑟™0™%<[ ŽLöÏ>'˜ï• “‰PÂæ­¹Îx}§X¬&/:X¶zU¼¡04XR`BO?[ýÁîiCáç¿f ¯Ž/0öÅuN~D2œµ£0×];Iãb¬ ž¤©0VPë„ÉD訯l‰éx’3¿`B›ñe—9é®Ð¿7õÍgÆå·å,÷IšGŒi‰¸}—!òÕ “‰ÐA²ÜSž»ŸdW,ƽ:a_\ƒÎ­üÚ÷‹fÓÝ-[b:sEgü:¼©2Ä¿“4<~NùÛ½N˜L¸’B•2gnNÞì†W`BO?›þ!&ÑfÇÏ ÕÔûæ:ô8fÜ+ 0~×èþå¾L÷/ˆ¼.œ ˆ«Ùè ~wŽ–˜žp¾·ç lßïÏ‘ý/³†2a2JH]ªÂ'i‘ŒUá:a2:È÷T…O²«ÂuÂdÂu6Ìáã-÷s ˆ.eÂdÂuÐ6Ìáy-1½x þÅÛ0c#-’Ÿ|‹” “ WÂk¡Ðèäí‘¡I›ÂØzúá…5H~þ´s|q–:b:ò¢„~%^+F[bzâb~ 06À„ò•ˆ^ÉwSÏì–cÌšíÁv;{Ìk‰¸ÿŠI‘X ì‹k°Zœó 1~¿ú-Œ¡ð¼½æ‡>äTw®¦®4þ wm‰¸`GVQ&L&B«o¸µw¤#“ýFèßGUKLgVìÌuÆgÒq—ù$?U%Æïoœ£«3·oÙü|­a2Jø·GŠFÎÜzä¿€‹Âd"”ÐZB>SùÃò/ùt|‰±&ôZZ+m~ûœçìKcŒòÛ–üÛVš…sÆ¿=ó¶nJŒ?QÒšêèNÜ¿{öŒ2a2:êë[b:>ã̯Æ×CšÙ†k¶DÜ>Iôò2a2:ÈÜÕ=³%âv^‰N^&L&BÃà/´™m0~“Ž^ÑÓ»ÎסY~ŒL¤¡ísNgy „ÉÄ¥äY¨îæ¹ò“7³Í§KŒ 0¡‡dùÁ‘Ÿ´™íó§EãóEM±o®S8—zzËŠ+H\…ºîY"1þløÞRˆ2O¶ïsÎßÉuÂd"”¬x®"ÿ!úë\E“‰ÐA²â¹ŠìÄmn(WxÂdÂu¶´á{-÷±8»q0™p´-mxDKL/~mù¹ó¶´èú¤eìsÏ/&®„·¥Íýpœé©ŸóÓ`BO?|áæUP_ÚÓ3â‹ù5ÀØzHò-‰ovÏlJcŒ«a›Q=´´DÜO®!à• ûâ4‘œ·ÓKŒß¯~[Z¨n^ÀýxIÅÍ:`*àH[Ú0±–ˆû@ÖZ&L&BO Ÿy,ò”8yù,7«˜KÏÄÛÒB¨˜HËØçòH¢N˜L„>‘Ξ?‘–±Ï-y_¿N˜L„6Íþ8±­”P8«&/:Hª$Ü&Ú.Žn•`BIUƒ¯NôÈ_ØF.1þËH{U,íM¤õ)–öê„ÉDè(¯^k Ùo¿ù¥#¦#¡…ÍÙ`ó ~?Íõ^ƱÀØãjHkÕðã–ˆÛw£D™0™dîénÜqëÆ#ʄɄ렭H?x+iú\rÙ¬N˜L¸’B‰)§'Ú"ZuHŒ 0¡‡$[Ñ‹7š]r1Oaì›ëÐ#ra–Äø]ãÛIÝ“Zb:ójôKZÔƒVãzz@ D²ƒP1†41Å’ÞDŒbI¯N˜L„2ã…’ÞÄ6aBI¯N˜L¸ÒÄ4ܯ%â>‚'— “‰KÇü )WwŠ–˜Î¨w&®ÃR®èý3idú\r’ºN˜L¸Za‚seé©?ÓÓW`BO?ˆÁžyíË×—µÄt>Ùù5ÀØzÈô,iæ;/ÿu‡1%…±o®CûrÂa0ãw­ßËKNs¿Ó&VœÊ€©€k ½š#]0™tµ®{WKLï“øbü:?ß*t¨´Ü>’ óÃÖ`åÆ%ƘÐC’À`’+oô·æ„¦ÂØ7סÇnâÖR…ñ»F béo%Íþ°ôW'L&BG}ÅRKÌýXæ×cŒëamørÃy'î#øe™0™l¦·g·d»’Ð-Ë„ÉDè ÉPÃ-1½H™‹+mÃ÷Á•Y‹¼õÌž\&L&\ /Iå®Îôæ à”cLè!)QtJÞo{d¯ûæ:ôI<‚Gaâ:Ô—ó!ðs=î…Bÿߨ>¥ͺ_Ü¿N˜L„–ÝÓ¨ÙX{<(ƒÕ “‰ÐÁR¢¹ ¶±ýVP«&®ƒµàsçk‰¸’Ùë„ÉD訕´Úûß·ûçï‰oâßûïç-ÝåZb:ŽåL\‡§¦sÜÚX{¿Ç|¿ŽÀ2a2áJ %,xwik?8^Wbl€ =$ƒ1Òæ~[Î ˆéÈ‹š©ydw¤­ý‚ù5ÀØãzØ3Œrl¯ F¶c £u™°/®A[æ•âwk}Émô̲%àþ'»w0p ¬Ù ûWKÄmÈBW-&¡ƒå}¸·w¤…À‡ø¬|,¶Ä¸ÚðCŒ` ú¶%Gˆ2a2Jèz*kÐ÷¯åý«£– “‰PBfÎPÛØ¾-¨\Õ “‰4ܳXm·Ënƾ¸ÎNIĨ sÝ·µÍƒJÙÎZÚA¥¬N˜L„ŽúÒ¦–˜Þ(¾˜_Œ 0®‡5OÚÙ–*É;kÞZ'L&B9›ß­ÉYwÖœµN˜L¸Ú– ig-Ó6ð‰2a2áJ µp Ú. W`BÉ®¢çñvi[Î{)Œ}sÞb ¶Š(L\‡:,œ…¢0þtèö­NζVý´x¹keÂd"”ì*ÔÕvÖd êjuÂd"t°9b®«íl‹ÔÕê„É„ë`Ì6x¬Éúq™0™p¼‘™»DKLï»0gÕwÚÈìƒï³&cÛ™ïX™0™p%…jÒµZ¡%¦§þb~ 06À„ÀàE¦-ÆöG~.uÄtäE ·ŸÙ]è±`~ 06À\z¶! £ÛŠîz°íUíê„}q ºÖ6Ø(ŒßaV[Ê)¤×µK®1”S×Àš…¹ƒµDÜG‰ì«uÂd"t°ü¤øöŽtž88ÑÁ+pr²Â¸Ú £ÄÁšeíùħ:a2Jø:»êÁ6TíSòÔ:a2JÈÜÓ«$-·~ u•:a2ñ¢ƒå'¡MÌA~á…±&ô°hüy׿V¯N,06À(¿-çÂÞ$Ì`ü:üGØÁ¤0þD·iíåýõå¨û]ÀßAðè¿TÀTÀ5°æhP÷;Xã2¨ûÕ “‰ÐQ_•ÖÓñ|g~ 06À„2ÇEßé1\ûš}\`l€Q~Û–ýÿøs0iáUnü½ÍÎEö4¾êˆéH(!• Ÿ´DÜŽJœ#• “‰ÐA¾Ô|.Òqë8C*öÅ5èAdþ6Ú÷‹Ç.ˆ«¼¡ž3~ÞPÏcdKLï:¹ÎtІzfd¬ÙÝžWŒ× “‰KÉÉêåÓpÏ×>wŸÏ1Êçº ˆéHh!µˆà'or·çoc…±ÆÕü=3¯d¯-!П}ÿä§£Â>1… 5Ü5r¬¼˜žœÇO^ˇc;ÆõLKÙ[bzz²sžt'ÎæN¶ÇòßÀy™ËÕ “‰PB*Z[væ“5„5uÂd"t°¬B^cp²°Æ N˜L„޳j°-!·'`Ïä.UÀTÀU°VŠñZ"îg{9× “ ×Á[)z„h‰éÍ\ ªüVKopKÀ­xæUÀT 4ðyöuÒæ†ØaAal€ =dÚƸ²ZÙ1eg¬#¦#/Jhæü‘Ý‘ï:væ×cLèa¹ðzÞuñ˜AM±ÆÕ°=γ["ncÎ$Ê„}q ^ùË;õÆïéîK>NÒ{V|”S×p²*›âöŽtîŽ{Þ{Ñ߯–˜ŽWàHáÿœ¥5ûƒv^„øâÌí<äHÑE L&B ýzÈ~ì̽K¤Ùª@˜L„6ë>޽ˉ{ïN«ÂdâE«ååÃjÿ0,Û”W\JŒ 0¡‡Ôò²I:ѳ¤ ÆJ±o®ÃÇÍÛ*%Æïë ™×p8qŸÏ¬¥L˜L„ŽúÝ–˜Ž'åÞ`cŒëa½ÑaÙþPô%Ö#E™0™åln¸æ8Áö bœ(&¡ƒVp¤…VŽ-ß/Þå}œu`<öìâeÂd•êýÏ|Çx÷Å|¸µÄØzX¼•w_<PSgì›ëðc{ó9;×áÓäTÿ–:|÷+F ¶3õ§%ÏK¼(&¡„ä³s-ûÑÏ5çZ¶@˜L„2³Îµl'nc^®3 „É„ë`ÝùZ"î£$øq™0™¸t0]bl€ =$1‹÷=WPSgl€Q~[Næ?wš tÆ¿?@:o4’¢çKb«bZ{hæ¨WLBC}©eKL/et1¿`.=ëŠÎ϶lƒ_N¬³'D°:a2ÊÉ÷ƒGŠ–ˆÛ—âW0™|Äg7šx÷Pgü:Oº5Á¥%¦w‹ùo€‰ßF‹û.æþÍß“OÖ “ W‹±¹O3=õkacß\‡œOÒ˜¸Oå§@ãχo.ÿŸØÆïóHî_'L&B Iÿ{‰5tÔ<~ë„ÉDè`ó÷\øØv(üÖ “ ×±’ô¿{EKÄ}Ì+&®ƒwEcÝ@ÿµúzõ•2a2áJ eÈ9?Þ 4A,16À„ž~ZÔÁ,&.ƒv¨ Ëj‰é…ÓœZ^x‡JB é9=rù½N˜L¸’BIå*×·ÄtÔç3K%ƘÐC¢)8ëù÷õx“ëˆéÈ‹6ÉÏ;Ïé„”¼ó\bl€q=dÞ‡°Âv ¢“]uÂc™°/®AS“°ÇWaü~­ÅŠL{îKž—S×@zT†ƒµDÜG ðÕ2a2:h:3ghÖ£òƒGðÞ‘èÞ¤¯ãô8²w— “‰PB'ÃèvdgÛô8³×• “‰PÂ&‘W¹£%âÞçr¤N˜L¼è`)ÓÜÆàÃÒ °@Cal€ =$eŠöxÐTæÕÔûâ:+ïj Ûœæºk+ë„ å¥•u©„òR0™õ%=-1½ô‹ù5ÀØãzH'LtØ•m×_ZI—JŒuÂd"”³yä™âÄJ¶^aœ¨&¡ƒ¦~}Ô·ÄtæÎøuxÇMðñ•tÜž9Y^'L&\I¡äs•ø[bzê—ü Œ 0¡‡¥~Á[i'Ì陋k cß\‡Ÿ] çF(Œß5¾Áœlþ™žsöñ2a2JúiÓ(…Ž~J‹XuÂdÂu’1’["n•£¿” “ ×A;HÆ[ßÓsä\Œ[yIô1ÒÝqz‚‹• “ WÂK7ùl_gzêÏüôƘÐÓ5ä’õvœžyc™€˜Ž\J6²‰%ܨ%âvY'ì‹kÐ<œ 0~¿úý£ÔÐÞûW%×?Ê€©€k ýcü¶DÜ{dv•:a2:XîÌ_÷öŽô\FïkÞµ‘žƒÓ3çë„ÉD(égœ"#Ýq÷-ˆ9ì:a2ñ¢ƒeœò‘¾öu“O —`BO?ãôÁThǽß/eö±FùmGþm´³_06ÀøuøI°Y[aü‰’NzXø¥K’ã<¯DĨ¶ÞÚÏ7Àøßÿàvw•;a1‘¬žvS@ér—«uÂdÂune<†l-øà1¤÷د,&¡œ¿]éͧýº‚ñëÐ~]ñ7`z×¹˜ÿ˜øm4#”}–ôßš¾;羺l™0™¸”ì<£ÎDÝ4S“NOV`BO?#”ýe§ý·þ@IM±ß\‡Ÿ^‡Û¤Äïé¾äÉp`^»N˜L„6‹Ã¼öN¶Aä¼v0™p¤oQŒâĽ‹£·Ô “ ×AûÅ߀鸱3qš ʶLÍ„ù³:a2áJx67üµó®Béè/…±&ô3NÆÂú ýù‡or1 %lö–¼…vá™&\I¦06À(¿ —Ýþ™î—`â:,÷”÷9+Œ?Ñ~Ÿœrßûýurƽ ˜ ¸†“䫦$â$¹¤ì{eÂd"t°|Õ„Óéu"ú0†i'¢#…v"ú0ŠÆ˜KÏÁ{¥hq>AÓ´B¬¨&¡„uL ŸhÀôî.ë?Èö„œÓ?ÈÖœo¯&/:hžï€‘ð>©Ã€ÂØzHž/™ñA;øL~ƒ*Œýæ:ô ©¼éWaü®‘NA¹Zq.>¹ZQ'L&\é¬óÁ/Ⱥöã˜t½ùà{eÂd"”Ó\Ú„_.íHŒ_‡w¤É~AºÅL®m¯&®¤s¾*“ ˜^œœðé Œ 0¡‡ä«ò¦b¦ ³/ cŒòÛ0qìÛ×.ò¥#¦#¡…åÒ@¤ ¦yƱ(0ö›ëÐÃwòî6…ñ»v’Ü@Ê _Äí}N™á:a2:¶ê ÓYo‡Ëïq0øQquz |:Xbl€ =$SŽò—`_*óšÔÔûÍuè©-iO—Äø]#GÁGN°Ñÿ‚ÆL¥@˜L¸Ž~ÝÎ+>ÿ~ÝÎ+¾eôˆó£†?>Í>ý2a2áJ ¹£ëmiÀôÔ_Ì×cLè!Ã?½ÈôðñyÇ7¹Ž˜Ž?ìÀ׿ ƒÒ±3÷Û,SéXbì7×9èÕ7ºŽÄUèg7îÔ’:ýSÈSñîßå £ ˜ \žäò0˜ÄýŒm¯N˜L„úšàx|ÒSÈñ«LSõelïHï*òŸŽÄc9„ìúOvtùw»Çϯ&¡d)ÛJfr›„«,0¢:a2JX6$ix<é‘â©ò#16À„’I~÷äGŠ/Ϥ¦ÎØo®CϤH»¯$Æï9º<åB'9V<åBÂd"tÔk… ˜ÞX^pd Œ 0®‡]îÎÔ€¸’É/Ë„ÉDèXk¶ÔÞÛµhÙ+«€©@h ù¿òŸü0õå‰FSÿàÈì ó3buÂd•ðÜ,SèLOýŽo°ÀØzH–'»$?ä|™Ñ'Æ~szºFÚ§%1×]›|®„ž|1÷†Ž\'L&B ÉW¥LõD Ï™ê:a2á:ØÞKÒÁ¼É_ê„ÉDè¨eÛûßwóàÕ¿7ñïý÷óóÄ}Ô6`zåbâ:<±³¾h¹*&®¤e~à»KÏùNç_JŒ 0¡‡”4éIß &6ÄtÄ•,d†—,~!ó¯äðUÀƯ@Ók¸]Nbü^­/ߨ=£hÜJIÎUL\;IÛÇnâÞß“£” “‰ÐÁRr æ'z’vô$í¾ÅN¹^0['L&B Íá)vÇDÏSNç=JŒýâ:3=ã!í{‘˜ë¾Íä¤ãœÂžÉ)Ä9…]'L&\;Øß˜Äý˜Ä÷¸N˜L¸znm~gv¦ìràÛU&L&\I!߇Õ癞'›N”`BûÊNï== íàÿeìDÕ”›Ùi§)W'L&BÇ1Õr_ ˆÛ=e)W'L&\;ÖÇJâÞ'Ò.&®ƒžØúa³ÓT—GI™0™p%’–2b:J¾çm|t…”ïÙTgßùúÄQ/06À(¿m‚ß¶<¶2cL\‡~âV‰¹žèB²_)‰÷:Oøô2§^0p ìLYw˜Ľlô½:a2:ØW¤ÈöŽtžxÃËÌßF)Ó©ˆ¦Q¬06À¸zFnŽ ;¿vÁ_ë„ÉD(YÊ>Ñ€éݱ)Ý16sÃ4ÛEÜû>fÁê„ÉÄ‹–EÀÓÏŽ…ž‘›Î”`BYu’½•îÕO{j$ÆÙ6õ³ ˜k¼€óQÈ5–S×ÀÎÅM¹Æ…Y›ruÂd"t°9X½;Ÿç¤ñ+06À¸vÊovÉãï'uáÁ7¸ÄíƒÏf_&L&\=àöƒy±ÃgWL·Ô “‰K oÙ–Îs¦§þb¾`BI%£XùÁ³ëï˜ÂØo®C·Ùçí> ãwíɧ•h2S™¼ØÓieGö¦õÊŽÓM)ê:a2á:ØQ·+&…Vv mr™:a2á:øQ·þî7`zŸGøòJºýàfìÚuG/+&®¤œÆrÑJ M‡±IŒ 0¡‡ØrôÚõHZʈýâ*ü0Õ´ KaüŽ‘XSf{%Ç£¦Äv0p ìVï÷Þ’Fc™0™4¹sàûK`ÍoÖYt6À\j6z0jö–ZºbÒ­N˜L„žD8à Ûèœé€8‰±&ô°$úÀ¹=`Ü+Œýæ:|‹Ú"£0~רAŸ)…¼±C8S ¹N˜L¸vÐçšt°#5ó¨,&¡ƒn“ðw¥ÓyîÎøuè±F?;Rs{âØ/&®¤ÖÃ%=N3&16À„öžÞK~@Úò 0þËØ±žëiAô¿ÚRªN˜L¸v,¤¿c ˆ[åùÍ/&—މ˜ßüW¸aª½N˜L¸’BÞe†g²Ó£ ÓYcLèéá4PvzXá†#E@LG^”” “ ˜Î–¥T4UûÍuøqi=¿Âø}#G<¦äÓN`L¹§2`*àØ>Ž÷–Ü¥L˜L„öº¥ñHxÌ#…ñøÁÃØñ‹Û‚V&L&BÉRW ˜É}¯²âH,&¡„~㦣¥ö~{¦#¿Æ˜ÐC¾q³KðMÄi}œÂø/c‡B¦lÕÎlLÙª:a2:ô*ËÅôÆ .sS`.=;ÒGâÞ_Ñ“ê„ÉDèXÎÚØo@Ü.ÝHŽT'L&\Ç“~w'Gº˜ûgˆ•‰:a2áJx¶)ÇtðÃ!ÓÁm cLè!ßÝÉÁ~8䆦0ö›ë𭾩 £0~×>W@¿¼˜û±|àÈ,&¡„e70ƒx°£.S±N˜L¸Ž•e7°>q÷nœü¥L˜L¸~,è–F$?tÈðcA³±#;·]¬L˜L¸’BNóA?®3«¥06À„½>w£Dó Þù¤ —ï(Œ 0.æ`“ž­õ`’d­eÂ~q š@IK¾Æï9¬3åur”fJë–SKÃÉëôa߀¸—fT'L&âWÑ>Àû¿Èçôò»êŒ 0~ùIšÉ(OvÊåŽ6Y'L&B Ÿ~áªè‹¹u•?Vë„ÉD(¡©štšÏÉO¸Lçv)Œ 0¡‡¤j’ü„Ë  c¿¹ß%Ÿ–=(Œß5v’fJ9Ÿì”Ë”r®&¡ƒöƒvWjÀt¦;Ù1Æ×ÃNÒÜ“_²S.³_– “‰ÐAfTîK ˆÛÙNvË2a2:è2à ˜ÎxtƯÃOÓÌ®ÌNºÜôä2a2áJxR;UtòS.Óya cLè!éªì{üt”zR˜Ÿ_v>Ø9˜rþKô“˜r“‰ÐqV÷¾ #X L&\?‡G°3÷Ú¡`&&®¤h½fF ˜Žz<Cbl€ =ÄŠÒК¿;~ð—¸Ñ›Pm8¸Æ~s~ˆ!.Å‘¿kk1…ÚÞûç²áË_L\;øp_Q;”0á2a2:¶ò{Ò€éM¼Ó»%06À¸~Äb¶$vüá¾£!• “‰PÂÂöÏå`!õÀ§R&L&^t°„nœ9üGÜ9#16À„–A7zòý՘ܘë—=Ùá’˜Ütâ^ ¤\Âd"t°¨ŠoþEô\ ß}…±ÆÕ°£2}ä7 î]ý¨N˜L¸~TfÇOvŒå~âX)&®„'ôp'²3=õ>±&ô°Oè4îºãxàÈ`\ÍÊg$iü¯|¦Æ¿ÀØãzØq¡˜rüKô?ñ1å(&¡ƒÌG0åèÄ­cÊQ L&\;.Ôý¢qÿ“‹• “ ×qÐu%>¶0çËã^`l€ =4-’]™Mz<ѓ˄Ʉ+)$ñäÉ%޵cLè釗l'™Àe«8éÄêHf!06À(¿m†ß6=hsƘëN³Þ7)%:‘³9SF´ ˜ ¸vú§°Ä­ì4ìë„ÉDèàÏß­‹éL(Ò{¯06À¼è)×W0uXû•`â·Ñ6Ç÷“åå·Õ`ü^ó3PSȘØù¤ÇŠ£ L˜L„’¥ìb ˜ÞÛ™œŸŠËjωŸé‰ Ð%Æ×ÃN·L©Û‰6šÍŸU™RÐuÂd"”Ó5&>^0½7&1vR¥¿Ë ˆûFX™0™´“bö¾ƒt9<6tå2a2áJøšy ³ã-4‚Ë„ÉÄ¥¤Ð ÷æ:ÓS›å%ƘÐCRJÉ)æ'ŸaàŒWaü®ñu²Çw æñòÛêŒ 0~צ~÷;í¸M©¤QYL^4t¦«gv¤eJW× “ ×ÁŽÍ<ÐYfv¤er–:a2á:øq–ÙYØQ“ljO¤L˜L¸~œ%®õs¦£×øJŒ 0¡‡Xdz% Ùc¬µ_L/Øc­]al€yÑS¶ÈLÏò“­’S0SÂv&gT¦|m0p ìL. ˆ{«Hƒ¸LØ/®ÁC6~+Ìu¿~>e2‹…y>À*ê„ÉD(YÊ#«s;“8á< 0™%ìƒâÂOŒŠ÷q¥N˜L„»qÿÌEÜÇUt–:a2:HCÆ”ù½ˆÛ%2)õ['L&\9í5åLWrkJ™–S×@OIu{hïHÏ“oÕÓ‘ÐBZæ÷j¥-üÎß,±Fùm¾‘}dçÞØÌàD(ö‹kÐþj®Þ˜¸c$K“G ;ó4å&WviÊÖ “‰Ð¡—/¦÷~áâ>…±æE>Æø¹¯yü Œ 0—žíAÛ#ûÛÜ€é]GÀ†Ì*Nx .â>âãh®&®ƒä™FÀ¶p·Äp1wwk~@@LGB‹^‹ús™£ö7¸JÏ#p¡­ÂØï®Cæ/y– 0qרœ'ã•ÏEÒH`\ÍÆæ<É]76Iž_&L&\ÇÑ]yƒ¿½wññƒ#US×pò¹Az·N>7Àg~¼,ð#öÒÞ‘ûÛ»ÁÝ*¦¡‚ÏWp¥éAÖ·Í\¥N˜L„¾’ËÓ{ˆXŸP`^ô™æÚ.âÞS1×V'lü3èÁ ã÷kf%ݯ™;=®!S`\ÍÒ¯CÇHn@Ü;er—2a2:XdÜÑ]Èú®îR&L&\ÇÏú©ÊnÀÜ?C¬åÔ “ W²óøˆ«Ž.¦7Ó\È„a¥Ð%ÕXÆ×sôý8çµ.âΑr^«N˜L¸Žó;ÿÏߘÄÞõé=.6|“öÎN¬0ÿs¦Wòs¿ˆÎ{â“W`”߆ŠB ‘4’Y{ù9Á8®ö‹kPïsõ6Àø[9“žÌJ=Ö™—딫 ˜ÞÓ<ð¾ Œ 0®g[Ê÷ºÓ»oéù&ñæ4 nÝ?¿keÂd"t°ožœÔ¿˜û™LÎê+Œ 0/zHŒÅ<ÊEÜ»3æQê„É„ë8ŸÏZÖ¢q—EÌ™”:a¿¸—9* LÜ/cÓs?yKO^`l€Q~ÛòúÆ,ÿ÷ç?xŒ}sòæÞÅÖWO’ûÅ5xì{«Î‹Œß±'û"ï{anç¾ÏíÕù$Âd•L/Ðî¸l@tйÏýu,‹Œ 0Êo;Òo;ËŒ 0~§gþž½æ¦çg3¾›…üÕ[}ú…¹wXÓ!26À¸ž…Ï˼o Ÿ—¥1½ôëíõú&ºdÈzI„ÉÄ‹2¿\ÑË6÷K>[&L&B›½eï^ˆûHþ–½““ ×±’œ‡{r ¢ŸÈ‘¢L˜L„îyɘÎ7BŽcŒëÙö²‡7`z×I¾¿÷kô|å‡èý²ïšÀØ#ü¶é‘~Ÿ•?1RLÜi6“OŽÁ×NOô ±Fùmþ¶c*?`üNì‹áÃã ³ùémG†DØ/®Age~—m€ñ;vîG-ÇÜ€¸÷·¬´D˜L\:žOú¶$ϸ˜žk¢ŸUœ•+LèáÏG擯ætæå:åªr¦7ÊVxŸÆ×3=ʮрé<Ÿä4ωÎþ}¬5`zÏÇç¦?kvçh@ÜÎO“×Ô “‰Ðq<úÌEôžäN£06À(¿mÅß6oeÆ¿_yøžÑ¢µÉ967|7Ë„ÉD(áw9½?LÏ3ÒÛÉ™4V˜ÐÓâv†ú^É‘“ ×±/å·¿Ó{.oG\ÿexvþ}õÇ Ó{û|—ƘÐÓoˆòáùÓ¦#ó´ã 06À\j¦‹€<›‹¸Nè2uÂÆ¯ñ¤¹€›Æïm ÷¸Ó›™àóŸx>7}o*ŒëYxœÁÑy1÷ï ŽÍ:a2J˜/cô"îG2f@ë„É„ëXÉ7cÊ^Äíì/eë„_c§ße)+¡0~¿ 9£¾Át5¬—`B‹/é=Þ¹ïŸø& Œ 0®æ`ñ%¹ËÁ¼?¹K™0™ä +ʃ~ÅÌ3cŒòÛžøÛN:wƘëNÿ™?íÕ¬~ &<óse>UƘÐÃg 'ŒhÞL#è™çšÒ*…q=tmföÛ™­›œ±Î\'L&B ;qä\LçíL£ºÀ¤Ü„„2JÙ¬‹¸5)›U'L&\ÇL¿LÝ50½ç’œ¦—yâ£kLƒù`l€ =dæŸÿJ#úœÞ±ÆÕl²×6`n«îó‚Q L˜L„2rgj@ÜŽäì—eÂd"tðlÖÎ/¦÷qm–ÂØo®³Óïÿ4ÛR¿o'ÌidÒóï>ŒLžiKUM…¹ô,ïU½|4 n¿iÓ¸¬&¡ƒÏdÐÿ¶:uÆÚ\0™%,òcï"îcfØê„É„ëx.åQÜ€¹7|·Ê„ÉD(ák“°b~1=õX1WûÍufš™I_ ã÷ç0ÓzÙ…¯/}_™/26À„6'K#sæs¥ǦÀØãjØ*Ók’ [šý²L˜L¸Žõ{Õ/Ï ˆûè’\¦L˜L¸ŽŸ•‰•‘Ü€¹×Žó¤:a2áJvšõIUâe§Ù˜T%V`BŸóí8Vèi–F>Ï~§:¡Â¸¾ö/û2[—7ŸèÊeÂd"”°¹f¤/âÞÃ1#]'L&.ëcßkc¬ѯ,¥‘_'L&\ÏA¦µx+_»–Vð*Œ 0¡‡E||¿.¢ãËÞ0…±ÆÕL4 “|ùbnßÌå ®\'L&B ›»œà_+[‡—ü«N˜L„ž~àÈŸhv$­ßW`\ÏJ#¥¿• ˜Žgäó½)o©0®g#Ù3·ž™ÇK™0™4âg_f«— ]¹L˜L„ñSþue«éRþµN˜L¸ŽfGòÈßIæb™qÜ— “‰PÂW^áÚËé©ÇÕº cŒë)œ@€»UW¾öЙ¯Æ˜ÐCæ0yÄðµ‡Ë‚cF`l€¹Ôl¯ý§»™áÄíj”¯®&¡ƒÌ`Üù·Î—ü¸N˜L¸Ž'ɾ¸_4 X0™p;$»˜{íèauÂd•Ì4û’VBl3ÍŠ¤• cLè™ûûçóˆÿ!:kÌð)Œ 0ÊoÃUG_§ì>Ù€éͪÑ÷šc\G¨0~åY¾6Àø}ãë¡S$ߨZåå€8^'L&B ›õb®~ck•S®¾N˜L¸ŽuëvϹúíç«í~ô§‘\&L&\ÇFòuKŠÉ¥åXQ&L&\ÇÎGUz"?L'¾dw`BO}D¦÷mœfVcLèas÷4îùºîåÄ‘/06À„š³ìá ˜Þ[|ÿ yÎ<:HrMóŸ2a2JØWÂ)÷3ø¿Ê„ÉDèà+mqèÅôž"®kW`^ôœµˆÑ€è¼ûë]S`l€¹ÔìóìGe¬>]Ľ~¬>Õ “ ×ÁWç»'5`zódôËW¹Ò …q=É>»_4 nŸdr±:a2:xö£òÎv¬“ë„ÉÄ‹y_L%‚ÙÓêLùl—Aª£íl@ª£Õ “ ×1ÓlzŠ/s?ºf+eÂd•,’IL^üCôÞIÌp*Œ 0®†×ÜÒëï–H;¬Æ˜ÐÃæãi¼ðÝëŠ#F`l€q5É¥§êæEܾ©ºY'L&B™%¯)º°ý9º” “ ×±“\º»Eâ>'+&¡ãÐ釩D/`šÀ$;I:““fy× GŠÀØjè,Ù¢Óññìb¼ŽšV5)Ì¥çà;?RŒ9Ø®Œ#L0™%d6–j‚Û•‘j‚uÂdÂuH&&ü‹è<É ¿ÆWSØ™qB|9 ;&pm‡ÂØzXìÇ·ìä;&¶ Þ3…±ÆÕL$“2ýqûv¦L0™d“Üïq°L7ÖÒ®«t²½i‚ÂØƒ¿íÖýRŒ©ø»8áwy¦™ìL3Ï”à KaZÉn¶’ŒL/+Í”l˜+S`B ›¹c4`:~žÝŒgãS^Ya\Oa·IŠ5l'ȶ`¤)&¡„ÌeRfùd;ARf¹N˜L¸Ž}Ò쇹ÍFo+zl™0™%$·”räçNò>)G^'L&Bu½T὘ÞSÜÓ3©36À¸ž“æÊ²¿ž4‡•ç¾Ó&=ž‰N{þO¾;'íùW`B™/g'ã»s¶ ½L`l€ùQóçØ•Tå¨&®ã¤yÎYN’ƒ6À´2¿-ô°­„á ˜ûû–]fã[ Ó¬a#Ûü–~Å× “‰P¾°Tµ±m~©TU'L&\dzŸM†ùôÞüS@LG„¶‚ÍnÓ÷' 0 ˆ»“ƒ^°_\ƒºÑŠ7¸ŽøÝ*Ô¨?ÉLgÀ§õR cLè9ʬsÿÆlølÊ„ÉÄ‹òñ’̈î£\;Ú‘ÀØãj–~²:•5€[KUÍ2`*æø!«yBO+`Š@al€ =ýà ˆ»ù!l— “ ×Á¿ÀRôZé,Ýá:ÒªHü0ײ‘ä{Xx{GzWI®¿“ä{Ž;KŠ/o²ÀØjø§ñŽ^I÷„~ðJ^M{Û&ô|ðòXÑ€¸Ÿ]¤V&L&\ßC™çdãò¸îÖ—L˜L„òaÊ”ÛߘʔuÂdÂuœÏr”hÀܾϾ[eÂd"”ÈË~~žö#))#¦#—–ýÉÊÙ[/¦’°¦ úñ^(8â^ïnLg2)Œ 0¡‡ÌÄÓèßéîÆåù„ñ¯06À(¿mߨɮÅpÌÄý,}¼NØ/®Ag ®Ý¿_ýÍ‘agí¸­ÉcË€©€kXhñö¹—=£Š*`*à* ePÌ]LGzZ»ª06À„þ6¦O÷Ñ}p#^ N{ºƯ³ñÄ6æÆïÛF“á>Š0½û–F>߯—cÙK·<—tת„ÉD(as^,ïl/]*× “ ×q|°{FâÞ+“• “ ×Q(i]˸0½·ñb¾`BÍÔfg>Iõ‰'Ö “‰%d~˜F ݶ<7+cÌ¥æxÐ,gZltøðúw÷R7‹øññÑÑþ/†½Üâ:b:7˜Mu¯ Ö€¸Ÿ†¦ÐZ&L&\ÇIÒ§ÚøI’›)USа–m²Ó±ŸOͺ.¢óVN˜ÜR`B ýdóÒ€éÝ4 w'/O¦ý: ã×™hš:M®Æïß«™&='ÙG¹L˜~¨&¡„}Ra™ñ$û(s °N˜L¸Žyyö£ÅÇåq;’S°N˜L¸Ž…¤ÎÝÇ·Êsl)&¡ã,»Q¦3³ƒ’Lo0ßטš(Œ 0¡‡§èST^Iú|´S0™xQB>¤òsá8[z.uÆW³±}^Èsn,užw7)Œ 0¡gé§w³_þ½æ~cÌ‹šþW˜Ç½ÄmÜËѸLØø5v6ÉÓ¾:âwë ‡Tž½ˆû·%Í`˄Ʉ렻!c7`z³×ä1¼ œNR˜ÐC .â>.'ç/&?:¦Çc*àLï=ÞÓuø,bŒ3÷Nq¼?}0™%dŽS'n£+3ÂdÂuÄ×~ó„ež1ºVSWQ(˜¯(cgµ`¾`B©ndçÚiÕa^лÆ˜PC¿Ý»0ïÃWèˆt¶”ÄøuhSÍ3,ñûÆ7‘æÙÛà9§¹E™0™%ì» ªóNÜÏD :/&®ãdÕ (Ï;q?’¡>/&—ŽçƒT7Üa·Ê“ë× “‰ÐA«îF ˜ÞHD{j ‰O¾Ý[-HŒ 0¡‡U7r¼¼˜ûwfÃ7 L˜L¼(!_,è,O¾ tFoQ`”߆³êçÄ+">ˉW*|šcLèaôØ‹è¹~)(Œ 0/júßn3Fð'ÛÚ›"x°_\ƒÏáð Qaü:|š„ "ñ{¼Ðã–ïÙØË`üYHUW8q;bpå@˜L¸¾]7ûß®›½™®å¸²Ó Ï2cd`”ß¶ #ýl¨DãLçÈ3…ƒæˆý·Ù¿mßóý÷ˆßFOâÎ9?…‰ëÐüµÿ6`ü™Öw\«“0½ˆ+š%ƘÐC¾gs àÝ— £€ÀØ£ü6œgMRµÃÕ7‰~E Wß„ÉDè _~ÿ·ñ?ÍJê„ýât¿àüZaü~=ûÕAÎí¸}OÒŒ¡ ˜ „îâÉ.¦a.Ư3q§Ähq1½ë`Äœ&VLóŸäþ18«€©€«(¬ìÀ•7Ó‘Ž»…$ƘÐCªƒÙ!gZµ[pVª06À¼¨)GýLï]Æ™ÂÄÅHñkâÇb8ó_IY¯‰®#J JŒ_‡¶ÿÍYO…ñ{½Ðo÷ÿLï^§˜ÁÔH³¿‰w±>`îW'L&B ûöÇ\ÉÄŽ»Hk|ê„É„ëXI…4-ò¹ˆ{7ÃÜ}0™p©z”i@ÜÏRä+&¡ƒVH—Â7Z!Í.ΟÀ. ÎôF/~¹(Œ 0¡‡VHóœa'ÕË×©Ö “‰%ä‹29 ?àbÐ[ÆWsÐjgÚÓ0´ ‰;¦$ƘÐCªÙ/Z…\1+§06À¼¨éózÜk@ÜÆ½Ë„_ƒ±žK}rÝ­ùA*}iÎEܾ-iN0™püôÇ ˜ÎlÏ™ÿêŒÏ¿‚¡³ä Þ…‰{@ªƒîË ˆÛ§Ÿ¢E0™p­ú¨oÀtÞýä3?¹!ÍfvªÂŠÕ®:a2JÈÌ=­ð˜Ù© iõE0™p3­Ú¥Èz1÷o=f^ë„ÉD()/µmïHG{Úg% ¦#/ZúU»#fZ[qÝÂØo®C¤ÏÕA…ñ»VXß3‘™ž‘W‚+Œ 0¡‡Ìá³Çð³Ö+ÆW³‘ OZIó‡èW_ÒJš:a2:Ølku3;‰ G°2a2á:ö~åeÅtòp?«H®_LB­¼¬é­ÚiåeMÏœõÿ[H×ïóBeÀTÀU*úi¾Jûdç}¸ cLè!‘ì('­T¬'zŠÀØ#ü¶íï%?ƒÃ}¸ÓûK1‚®·Hm„$&®Có–~l€¹®³ðîâiŠÂüÏö½“g$ ;¿b{Â|¤N˜L„ò½“Ö5,ìüŠ´æ N˜L¸Ž'©T¤që2iÅA0™p¬é·»â>ºbDª&¡ƒŽÞä”Ó‹à'Þ/^7Å–©ÎôF/:¥ÂØzö²ë5`:÷-E˜…¶Ïs†…µþÞ&|ÓÊ„ÉÄ‹’þ×Tv0~úÄ6§ç_gl€q5´5w޹ЖÙyE§ÂØzHE$ûòB+Û‚Î,06À¼¨é#z|m@ÜÆ×õË„_ƒöóNKšÄïÖF*"©ê~÷oKŠeeÂdÂuð|7`:q){ ?½ÎÖWPCjî° ˆÛç˜}¿L˜L¸ŽƒÖ6|ü6`z‘2yznÇ;SaÚ@0™%d®Ÿê¹ ;S!ÕZë„É„ë Í¿?ÄHÖ˜{Ûð.&¡¤¼¯½#=í¸ÂJ@LG^´ôkÙíOZsØp%‡ÂØ/®³òvái½¬ÂüÏ™úºÏLÇ‘ÒZQ…±&ôÙxò˜•Ÿ’°à2 cŒ«™Hm#­øCôëi@0™lÞŠ§•)"X0™p¤¹l{îgèúeÀT 4ÐÚ†»Q¦7oÁµh+k{žcËJš’oYÊ€©€«(Ô‹ÿ9ÊË.Ï•¶#Ï»<ƘÐCjÙQVZ?Øø Œ 0¡†è÷üTˆì÷|6v“¿oÈžVV*Œß7zÊÁ‡¨ÏN ØSÌ/&¡„}S`Õ|e'¤ªy0™p;©¤²ùEÜd¬›× “ ×ÁšÄoÉôY÷ìúeÂd"tÐú»Q¦3³ƒª™:Ý žÚ+KŒ 0¡‡æõs¼dâ÷ £e™0™xQB¾$’³ðýé;æÜƘKÍF›Ñç½ÄmŸOìP`BÉë'¿¼ˆÞˆÆ*…ÂØó¢¦ÿ}´c4ÞØÎûë„_ƒöWH ?ÄïÖDòú©F½±¶÷©F]'L&\ßCìã¸Ó‰Éc6^£ÆnZzHfß=¶qû$“ó× “ ×±Ð̾àL/ö§QO÷çØ¿±½Àû ‘¿N˜L„2 OuÉíN5Ã:a2á:VšÙÏQr%Y÷ïž¡¯1²L˜L„’ò¢²öŽô´ãùOb:ò¢¥ŸÙÏ~¿ÒŒûŽw…±ß\‡wHë>Æï/Íú:ÉLÏ‘pm¥ÂØzÈ|<{ ß¼c¦Gal€Q~Û‰îtj@ªœÿ!ú™úT9¯&¡ƒÍvW¼[lÏmŽzeÂ~q >;ÓUêŒß¯³_upóoïÀýŒ'E¤*`*hÕÁ²Ó›SaÕa°ªCŠ{?Èíí=õÊ€©€«(TrxèÓ“¾ÀsW`B©:$çÚyßû+™ cL¨ácý~ç»ÍS,Úym>u6S¿ÎD+iw„Âø}›è9Nî} ˜Þ}C¿Üénð<ó¹˜Û˜t༧N˜L„ö]…uóíÔNuó:a2á:fRÝH…ó‹¸w ¬œ× “ ×±ê†;yâVyŽ.eÂd"tÐꆻ^¦3â³Sj ?ËC ûýO»/1 -¼²‘bòJªæÏë„ÉÄ‹ò%•\…ïË>°jª06À¸šW6N|—7^q8Ñ_ƘÐC*Ù+7Zq8°¬06À(¿-¹,Û ¤èÍv©çè]&lü;Í#)& L\‡NÅ0q% þTRuI•ý‹¸“±²_'L&\ßÛìÓ€éÄ1gþ`¾‚¡³÷ý§êbLÜR©ñ˜Ñ€¸Ÿc¤HV&L&.ǃt¤‹éÍcpUËñºßº?]h€t.ƒ3Œƒí…NUàƒíSNÚ:a2á:ž²‡5`zOãÄñäÕŒüsÿæc¾¾N˜L„’ò¾öŽt´§sÄtäEK¿Z“âÄ‚å#k)3ö›ëðÓÞÓÎN…ñ»V¨·?pôóýÝi…©ÂØzÈ7Fö2¾[ù8“š:cŒ«YHå%­l8RI+ê„É„ëXû•7¦öÜGää–UÀT 4ÐJ‚âL/ºèc´—}ödÒiþ»sÜ«»TSWQ¨_ë«0=éó5ÀØzH%!DÞcþ|âX`”ß–Æ0ß îþÕ€é}‹$oåëRW'…‰ßvìDÏù½¢íeÜŒýê:4Oz&W¿ÎA«)i¿ŒÂø»Ã÷’çYÛç}.øæ” “‰P¾•p ÁÁöy§ú~0™p'©Œ¤âþEÜ; V÷ë„ÉÄ¥ã|ʈG¦Ä­ò-ë„ÉDèà£]üb:#Ñ¿¯ÓúúÚLoô^Ì×cÌ‹ž²»6`:÷À™¸=ŸêÄÀÅôžFÙóI«=iÞt1÷c`…YS0™xQB¾ÄÐ)O¾Sýç4õ7%eÆW3ÑjO:×íœh&Ω06À„RíIþ½°£s Œ 0/jú•ã ˆÛ8žfuÂÆ¯Á§V¸íG@ün-¤¢’V\ÄíÛ’VÔ “ ×Áwaû8nÀô¼ÿbþ`¾‚aq6uR˜¸¤¢â¾Ü€¸Ÿ›¤hQ&L&\ÇF+*>ê0½øšœ‚ï@Ïó¶;ü|’UÀTÀUV@y×™žt¨ðJŒ 0¡‡Tú²«Ò~ñëcE_`B ÷ˆEÎÜÏRœüËÐo×ý=êKŒ_‡÷qǽVã÷ö~_nÀôî[òr~ÎÊœ¹‹—ëcKw­J˜L¸Ö3y8q?Ò’” “ ×Az¦‡6 î”på2a2:XE)Ü¢Ó‹bÉaxíÝ×7`zoýÅ| 06À„ZÉñŒô3_éM.&®„wÇ“âÿ24WÞf±&ôšEvÚý{}ødƘ5ݯžpØÄÝÉß/6~ z–;l‚ˆë^=Yq¬ò;qû®`•_ lü¼úŽçwKŒß/ÒÇ;¼¢q_ÐÁê„É„ë }¼c\5`z1 Çâ“ïÜN1ìbîÇï ¬N˜L„RÀJ¨·y4¬R „É„ëà}¼Sìz’Ûëóúœþ’ “‰PR^.×Þ‘Žv<ùZALG^´ô«Ù‡iíõûÄçW—`”ß6áo[hÞÊ`ü:üüwÜ'+1þDyÍWÎ:ÓqËg cLè!Uìtï÷úœÑÆWÃzŒcuÿ/ÑϾcu_ L&B›ë^q¬q?MѵL˜L¸Ž~ñ0ÿöÜÎxrDª¦¡»QrJÚc<¿ÎA3ïîz ˜Þu.æ¿&~˼ç˜ÜïN¾>¯UV_*`*à* Uàeð¾äxµÄØzHæ=»í1¾>“ß Œ 0¡†fÞÝï0 rŽE¼®Z%æºÎÄû…ãÎW‰ùŸ3ô[,ÍH&Òÿ{}â|¤N˜L„ö-†uí‰íyO5ç:a2á:XñTpžXÿïTq®&®ƒô‡m@ÜGWôÊ:a2:hfÿ‰N9ÑãÙÁ¦B}nÂ7˜ïÙvæk€±&ôÐÌ~Š—éËýï€ì÷7 L˜L¼(!_9ÉYèîóõ™¼E`l€q5¼÷7žÑ:O¼'7ž€-16À„R§È~I{r¯Ïä˜cÌ‹šþ·Û3EcÒ—ûC4.6~ z2=Š¥ ~·Hïï\=žH_î\=®&®ƒîöŽqÜ€éÍ^“Çðê1ž{.1¡‡TDžÉaHgîÎ_&L&\íþ#¸Ó‹ýiÔóÛ9ö“ÝÔëÏï—;V&L&BIžë¬ÙMk uÂdÂuðîß9J’ÎÜëôÄw¸L˜L„’òr¬öŽt´ã©Ü b:ò¢¥[ùà÷´+÷:Mèøc¿¸ÎÌÏÇóG$æÎÔWþ5`zŽ„«Æ˜ÐÓŸg™éäu ŒÂØãjH÷ï¼z`&¹óê:a2:ÈÌÕcEâ6V¤V'L&\G¿ûwl{nŸ_rý2`*hÕÁݨÓ™·8ãסݿSl™û½¹× sÙ€é} ‡/¼*Ý?%ÆõÐnäF%íFL\‡~¤H¾°Ý©óâx0™%äË UJÒ)ãʇ:a2JÈ÷Nª¯¯dx®¯× “ ×Aº„çûJ:xç {0™p¤Kx8lâ>‚%×/&¡ƒÖæäû´Kø+ÔK1ó°ò=ÉÎ| 06À„º¿!ÇKÒÅ{|“˄Ʉ+á½µÓš²•ìüþàF¼K6vè’`âl}ö$ÚñzO|–cÌ‹ò ‚µÿ•íÍίLØø5Ø ßùh(ñ»E:^çZðJºQçZp°ñkð-vK“¿_¤«tøKâ>&%×+&—Žœçœª¦ÛëQË ZP5-¦¡×™NxíŒe㻄SìÞØÞå‘»N˜L„6‹Æ¬ÙFvðæŠa0™p¼+6v0sævä.ë„ÉD()/okïHOû…|éˆéÈ‹–~f>Å’v«^Ìœ)Œýæ:ô¬é|2”Âø]+ÔKñ}ã;’ÓêK…±Æõ,/™§’“ ÆLéç÷6†±¨ ˜ „j2ët/n@Ü^"Gˆ2a2á:úݳÃÀÚ;p;È®ZLBÍ|ûhoÀtF®3~Ú=;{w¿·õºÌèÜUÀTÀUðîÙØmÒ™žô Ÿ»Àد®Ãü4uQ‘¿íMœÏöQ>|wlŽlçê‚™ï:a2JÈì3U7¶s5Uë„É„ë ýŒsyp#½†s}°N˜L\:vÒÏ8¼¢qïÅè_uÂdÂu𠌯8kÀôFÕ ï–ÂØzhn59òNzæ®Ë >Y'L&^”ô§viÄï|éω\¯Ï¥ÎØãjh_ÞÜGh§ýrS§:‰±&ô¼oò±öË]\w¢06À¼¨!3p¬ïlwlŠ’uÂÆ¯Á§ײVÓ¿[¤/o®ßí¤gn®ßÕ “ ×Á÷Hú8nÀtf{Ùchý.÷[S˜ÐCòËî± ˆûx™œ¿L˜L¸Úc7Fp¦÷ –F=ßë™c?Û‡¹`UµN˜L„6;ƺÕÎöa¦šR0™p´Çî‡(Iú߮ˉ1²L˜L„’ò‚›öŽô´'—¬#¦#/Zú¹Ùì÷¼íúÈZÊŒýæ:ô4â¼_aü®ñ ¡¯íjÀt)­S`.=«ú¥:áÎöŠ&W:HOÖ\ï¬&¡œÍ±‚w°½r)JÔ “ ×ÑïÇ&ÖÞûÈÎZLBÍÏúˆoÀtF¯3~Öó4û÷A:’®Op¢2`*à*xM)õ%:h/ÒÜ‹Lal€ =derZAqð^¤+æÏÆå·ážŸƒVüòY· סký·Ùãס=Oó‰q ãoβÌ]·Ä5+ðï¦=:À— ˜ ¼h(GíÌmìZ˜OÔ “‰PB¾WRÅó`»CSųN˜L¸ÒK6—<Òç5×<ë„É„ëøù⤯bàqŸ:YWuÄtDùa +ÖH×Ãjâö±çP_&L&B·ß‚x#Ý÷©z‹MG\ ßtê ,0ƒtæk€±&ôìåàØ€é=ÜRwжÀ¦|¬eù:a2ñ¢¤ÿù˜ƒß>»¦/±ÆÕÐ&ǹÕA›禄 cLè! úxóáõÄà'06À¼¨éâû¦q;…É«2a2á:Nn´1Î×A åì`ì|v’€\ZÎÇ£4 =-gNÒ²9/d8I;弡N˜L¸¾ÍÕ=©Ó»]è—']0‘[J*Lè!Å, ˆûF±:a2á:xkhw£L/|»nš/l+íö€ÙR0™%ìã‹ñ'ÛJ› åuÂdÂuÐÖÐ9⟬mó†ñ¾N˜L„’òÊÃöŽô´cÃC1yÑÒ/fe¿çí—·)=•:c¿¹=€;5¤0~× Ë®E® ˜{GÊ cƘÐþ-’Çð¶Èé@#…±ÆÕöËyáÇIZ#ç…uÂd"tY¸ÇŠÄm¬È¬L˜L¸Ò~yK¶Oš#gׯ¦¡ÚÜ0gqƯÃZˆ-¤ñ¶`d©¦®‚/Hí®NÚz87ÓS`B)´eGá­‡·ä)cL¨¡ßFé(›“·8Î~O—|äÆ7 ósåAÛ§£“$æΰoŠõ¹÷ðí=æ „ÉD(aßðmìÄý ¾ŒÂdÂuÇi ‡÷#q„É„ë`-ŽÝa÷ \_ L&B­¹là”Îô¢$8Øß3ÞËË0½Ñ;ãX`B­R`¼tæþÙñ (&/JÈ—DrÞzÛ;HŒ 0®†¶8Nm1þ2ì+Û IŒ 0¡‡U)’_òÖÃ[rL±æE ù>ÚÐØ&îË„_ƒ)NsR¿[¬Å1Öõ¸}[°®/&®ƒ·8ƃçéÍ^“ÇðÌØtEbBÉì»Ç6 îãrrþ2a2á:x‹ã-¹ oqœG=ÝÄý!ö³ ÖûÇd™0™%dŽUV'n£+VYÂdÂuÐÇ¢$k?¼?1F– “‰PR^IÙÞ‘žö Gc1yÑÒÏìg¿ç­‡÷ _`ì×yÒC¥ÓQEó?gꋃ0GÂÅcLè!óñä1O¾{Çï$…±ÆÕ°ÇXÿKô³îX“‰ÐAf®+·±"E°:a2á:H‹c7ØöÜ>¿äúeÀT 4Ð̾»Q¦ã,ÎøuX‹ã[ž¤ñŽ9ž2`*à*xµÛK9Ó“~¢±&ôÌ~vÞ~xÇï{…±&ÔÐo£çÆO¾…?û=¯c3‰ñëЖÅi¬Äø}£[ß?D}¶-}ß0æ— “‰PB¾)°fìÄí kÆa2á:X›c,;q;’±j,&®ƒ5v‡m@ÜG°äúeÂd"tÐÌþŽßxOÞ 8;¯ÿ=“ƒÑíÛÁ| 06À„šÙÏñò$Y÷ó;uÂdâEIÿK"; oAüsØóüª¤ÌØ£ü¶‡;a(Œ_‡—ÎS*¬MpªlO¬…oªl× “ ×ÁÛ'™x›àä¯lã|zHÕÁý¿q?gÀ¨T'L&\owìNÑ€é¼ÇÙ]~ê“•Ö€é=ÿcè¦ö<ÿ™Ø†óã ³Ÿ:a2JØ—Vg'¶á³]Ê©j^'L&\k\œÊæ3k*œêæuÂdÂu°ÆÅVfÖT8{~™0™´¶á^Ô€éÅÈä_¼ê«C0½Ñ‹k‹Æ˜ÐCk9Z²¦ÂÇo@™0™xQÒÿŽÈÎÂ÷%ãÑÄcŒ«¡m˜SÓ®¿ ûǶ~cLè!uŠì—¼ÙñùHjêŒ 0/jÈ×Ñ÷÷_.)— ¿=ÒODU¿[¬©rªŸÏ¬áqªŸ× “ ×Á÷Üâa¥Îôæ®ÉcxýÏo“˜ÐCêî± ˆû¸œœ¿L˜L\:ÞøØGp¦ó§Q¿ð½Ã)ö/l_ïwcÞ—È_'L&B ›…cuaûzS ´N˜L¸Úø8GÉ…5%>1FÖ “‰PR^ðÖÞ‘Žvl¡ ¦#/Zúyýä÷ oH|b¾]aì7×áÎã¹GãwW€}me¦ãHi=¦ÂØzØ|<æ…äÎS=û¯eôß4Ì× “‰ÐAf‡îÇ ˆ[?ÎQ¢L˜L¸ÒüøLÖJZgg­¦¡æÎ}Ä7`zsÌ/¬ùñÿ&­‰ÏÝ» ˜ ¸ ^Ä6eÎôbðŽÏ]`l€ =$wže§9ísEOûÕuø{Ïi ˆ_…7eÆŒ$ÆŸ ßœãÛŸ{níÊ„ÉD(!³éT+]ØþÜT+­&®ƒ5rNÅÒ…5YNÕÒ:a2qéXY#g÷½Ä}\A/®&¡ƒæ´Ý#0½Øç‡.+/|aÓPg:£›†JŒ 0¡‡æ´S[Y3çcX0™xQÒŸC'gYùŽÜóoQ`”߆yð•7™Æ úÍŠ¾¤06À„’O»ÒæÏÛã‘ÔÔ`^Ô/+V6 î¿B0‚× ûÅ5hf×ßL`ü:|šô]l{¹Lñ§ÂšY§šîÊM§šn0™p|'lö¾6û¯éâ™ÆzH¾ýLQ‰5šÎQ©L˜L¸ÚÌ:œ¢sÿp—®×÷Ö€é=ÿcøÎá<ÿ!»z·Çg?eÂd"”°/¬K®lWoªÖ “ ×Á›fç¨OZoóË„ÉD()/öjïHOû…|éˆéÈ‹–~^?ÇÚÌz{àÎI…±ß\‡ŸoN=R¿k…Êì{ÿ"Göû?\‰( ¦#¡…}àHÞX‹íTcÞX3ëTc®&¡£?Ó /n@ÜyqŽuÂdÂuôf‡µwàîùeW-¦¡åôc´7`zó\·²Ñ†ÙÉ»·~;ë?Ï œ» ˜ ¸ ^‹Ä.Îô¤£Ÿ*Œ 0¡‡äô³£Ð¦ÔÛ¿oÆ~uþk}ƯÃL§Ó‹ÆŸÎëÞ×~Pi€ô^PˆCÛ—š*¬Û3š*¬uÂdÂu°f˩ĺ±FÈ©ÆZ'L&\é7®Ô€¸wýä”eÂd"t°Œ{ŒàL/²\ÌŒÿ¶B)ïõ ˜Î—-vC”`BÍÒç¸D:în ßþ2a2ñ¢¤?+ÎnDw–þkõîGcŒ«á]}±KÒ_†}MbŸ7‰±&ôŒ{öXÚmwó~Ó_Œýæ:ôtãt€\÷lgdSugÝ]SµN˜L¸ºÛ0ÞÿÌ½Ïæ±¹ó j:;WaBO?ƒÞÔ€¸è˜uÂdÂuвvtw¦3ñ«}çû&SÌÜÉžÆíqBĬ&¡„Íx±Ò¶³=© V'L&\ï ›¢ËNº»nÏzK™0™%å%Oíéi‡~r b:ò¢¥ŸÙÍîÍÏN§ª(Œÿ2^gƒŽéŽô>AaÍ›€˜Ž¸ÖÓ4UÚv¶§1zÖ¡4U ë„ÉD(gÙÓ]˜ìeûàÂeÂdÂuô» †I´wà62f窦®v';Õïºýôü~q­*`*à*x%&uªÙy×ÐÔKal€ =$«™Öì´kè¿ÄúûXûÕuøÜö{Þõò" ÌuƒwMû}æÎð¬&D¡ ée5!>dW^®1dÇ\®1Õ “ ×A:zæ"ÓAºmæ*S0™p¤£g¸RâÞÑ)ë„ÉDè YÍgz"´£g0~B]âZÕ€é|¡aOb‰±&ôÐ eŠ1é¶¹}Ÿüùaê„ÉÄ‹’î<òÃæ]3SG•ƒw³L=¡Æ˜ÐÓÏ~ð$ÚÍr{.èJc¿¹=4Ö% ~ÏH·É\Õ9H'È\Õ©6~ ^9Ig?*Œß/Ò2ÆeâÞË“[” “ ×A»@ÆÙ€éÅ‹ãß–ãÙµ=WŒeÂd•ðî‰Ù-IgÃí¹¡W– “‰PR.ù·w¤§W=ˆéÈ‹–nVëƒÑ®†ÛsGw`”ßvÀo;t¥”36Àøuø™›é,…ùŸ3õ•/ ˜žË` \al€q=¤b®çœ¤Oa®çÔ “‰ÐAò{î˜ ˆÛoÝäãuÂdÂuô{!†]¶wà>¶¢‡—SÐÀÇ/zËI{!ã×Yæ²O4`z×¹˜ÿ˜øm,Ç™¢ØÙ=OWUÀTÀUê%|!yÿÄÔÝGal€ =ýç·£ý·éÏE`ìW×áùÊrœ ãס½ó^N…ñ§ÃwAåØÊv(M˜¬&¡„åQ±Út’J¹ÚT'L&\韘ËM'ém˜ëMuÂdÂuþ‰á| ˆ{åÉË„ÉDè yTw‰Lg$Ni$*!×Ê Lgô¦° cLè¡yÔÇHoÃmÂLb0™øQ²>x÷À´‚á${¦’ý½ ûÖÅî3cLÜ2ÓG7þKôóuèb~[ÿƨ"6~ zB#ò¤ ~·H¯½TsrâþþBÍI lü¼„çdKŒß/Ò/Æpâö£³„É„ëà=ãÐó¹‹àøa2áJx¯5ìVãÌýS\ÐïÊ„ÉD()/hïHG;žY® ¦#/Zú¹Ðì+´Ú¿­ˆï£^`ì7סç¦=âãwW°c¨3½‘ ëX$Æ×Cº“¥ Õ_¢Ÿ Ä •@˜L„6 I^I:‡}ðÊ2a2á:úÝÉÂ’Ú;pW’OVSÐ@óÓŠÞB»“s]çI»“%7~ö{‡mäÊ뀩€«àUìSãL/¢nðÜÆ˜ÐCrzÉž¼†ƒ§ÍIŒ_§ÐgëýD qý|‡IŠO¶ûcÚ!>Ô “‰PB²fXÃqâöËk8a2á:Hg®TÄqâþ†*Ž@˜L¸Ò™+¼¥qïÝÉïʄɄëà9oìøçLgTaÇ?‰±&ôðlVrpÒÍjûîòêßeÂdâEI?3•G<ídµM'Žy±Fømó½‚wÙÂÓáÿ2ôë ³s cLèa¹¶ä}´ûÕ6?ÑýƘ5d–ŰÄý D¥2a2qé˜h7¯pŠLç=Nî2=Øé¢1Â0ç’bÌÄ»†¥ùÏD:zmó³Ÿ:a2JÈ‚×L·3ŒTe©&®ƒw KQ"½¶c~0™%åeí¹×žNWÓ‘-$Cqe¢Ý¼¶yÉZÊŒ 0Êo[ñ·M4“6¯øÛƯS8p{ÏŒˆ?O^ÍóµN ˜^6ÖGIŒ 0¡‡|-e÷›ùɆþ'06À¸Òk-×M'Ò-×Më„ÉDè ßÅ·Q,ÇÖ2a2á:ú½ÖÂúÛ;pûür<ª¦¡{QòIÚk-¿ÎFWÏ+^g£«ˆç5]‡T>D×~ǵŸôï^\L\ïé†]„œéÍV|¿Æ˜ÐÿŒ“Û‘>pÜn§_zÙ»yµ»ˆHŒ_‡v[K§8HŒß5¾?/Gp¶wnÆÚw0™%ìËëÅéž–ëÅuÂdÂum¹`<‘îi¹b\'L&.3éÐ.Ö€¸Fè¬uÂdÂuðº$v„w¦—À¯06À„ZÛH±b&]Ͷù„7¬N˜L¼(!³uñ3íN¶-ô\êŒ 0®†vAK'Þÿeè7øŒcF`l€ =lÖŽ>“¾iÙùf¶û/E¢:aã×àaøÛd¢ ~·H°\;žIw®\;®&®ƒv‹±Ò€éÌÜò8¦5ê\£T˜ÐCrôîc ˆû˜”ܵL˜L¸¾W,Ç=¶kyâS)&¡„Í ±Æ8³}\©þW'L&\í˜õ!B°nVË„c¾L˜L„’ê¬öNü“¾v‰/™0™xÑÑÏggæ]¬–±Æ~szÞb:ÙHbü®ñ½oØóÑ™Ž¥Õ cLèaóÐä/'Ÿ.è0cÌ¥f!ݼry!¶r¹N˜L„2ÿô8Ñ€¸)zÕ “‰Ð±]©½ë­ƒSVÿÞÄ¿w¤™‡‡öܾ)f•SÐ@óÞ ÆÞ…÷#[ð«iù9ù‘ÞÜÀ½|ÚUÀTÀ5ÐBb:ùß™ÞÜæÀ§.06À„þ…’\”t0ûà¢3ÿ¦Á˜°Ðúk®$*Œ_‡v Ë{¾Æïß!™f Û½øÓ×÷e” “‰PB¾9RÍr!ÅrͲN˜L¸Ò½,-ÒY,W-ë„É„ë 5˜Ô%Æ™û·1u‰‘`BËâ~ðXÖõjÁüz0™xQÒŸ=ç‘Â;^-ø- 06À¸ÞY Nÿ‹ÐïÎ bx1 -$›Ç>ïvµ`.Kal€yQC¾6|ÏØ^ÏYÊ„_ƒÞ™Ž¾Rën­¤;X®Þ­¤sW®ÞÕ “ ×ñº´ÿÚ7@n§àëã}4–SPÁg 8/Zy³ä’+­uæ] zHŽ|Ioë?–bW0™p¼Ç™ûP¦÷UˆÞµÒ¨yö²²Ý¡ëæ.uÂd"”°yñUMk@ÜϰþV'L&\Ç÷‘t·÷¿¿}µ’§ÿÞÄ¿ß_^*ÔÞ‘ÎŒ{Ä(ˆéÈ‹–~>Ǫ™fÇ×ZÊŒýæ:ôDмóNaü®ñ=»¾*­Óû>Çu- cLèaßÉYønÒïîįÞ"06À¸ÒG.W‘WÒ±-W‘ë„ÉDè ³n ˆÛ‘ãV™0™p;Íÿ®É0wšÿ]“—±Îm|™ôU[qL0p…ªàµž¥Ó“~1_Œ 0¡‡Î¿ó&ÝÞ>Œ`¾ó4ûßEšV§)ÌuvTË{ªæÎð 0F¥írü.½©©&¡„ÌtSýqc»Sý±N˜L¸Öé-•ï6Ö…-Õïê„É„ë`ÞÜÅ÷“jtÖ:a2:Hf+„ÛëÁž_P!,¦®× Ò¾üîçËûòƘÐC³ñ)Þm¬ÃÛw^jzUS%L&^”ôgÑÙµøÎÄuGß`\ íp—º\ýeèh÷cLè!ùìżóÜŠuu…±æE ù6Xñ]c{.s¤/6~ v†lÞÒ- ~·¶—,GÏd[G‚¾_L\ß×çc¸Ó›'áÕÞ´VNaBÉc»¿6 îã}rý2a2á:x7@½ ˜Þ×mñt·á‡¸Ïv®)ê— “‰PÂf÷XMÜØNÀTé«&®ƒv5ü!YÇÁí¥L˜L„’òr£öŽt´§S©ÄƯ²ÓdsM\aþçL}-X¦3†Óú1…±&ô°Ù+ŽÊïÔÛð«[al€q5¬s`ª’_ª’Ö “‰ÐÁæyèù;Ûs—<¿N˜L¸Ò9Ð-©½·Ï/ùd0 $›ƒ…ËýõPÛïñ>‹,¦®uþËN¿“¾|Û„\L\¯Ùa§)gzÒÓ;%06À„:·ÏǺf‡ã;?³_ó]œiíŸÂøuxG¾´OKaü®Ñ™¢6Û5ùÓ…û%f— “‰PBfÑ©:¸³]“©:X'L&\Çþ’—éYXà^8ºj0p ¬ƒŸ;Xâ>ú$W-&®ƒW·Ò™Ÿ;Ýõ—OâU`BÍ-ç8ÁºÞm˜Á¬&/Jú³ó<ÚùþÅmÅñ.06À(¿mŸ8hoÁ|îíA;øåӻƘÐCföîø ˆ[[Jq¨NØ/®Áç.¼3 ãסg¹¦%dâO…US¥ó`½ÿR¥³N˜L¸¾ï.ʃï¢KŽqðjdZÓ¥0¡‡d‹·ô\XÁäãuÂdÂu,ôTmó0½ç’Ü’îÌ‘ü`;õ¶âx0™%lž‹•®ƒíÔKU¨:a2á:hßÇñ‹õdüî8þ½Ê„ÉD()/MjïHO{uÄtäEË.º7*¼ ã¿l'E(Yþüý¿òÑùû/ñïMüûøýõ•r ˜Žk¥Õu cLèa3ðäC|ä†+¾Æá·íé°î˜©b{°Î•©b['L&B›y_1¨q?+N‘±LØ/®Açx{zóÆï×ùœKC¿ðè\ä nTGLGB ©B\¡®½÷ó»«€©À¥ád}>sô=IÎ×”–SWÁ+®éŒò“öß̽ƘÐC²ñÉ/¢³n代ù‹;*Œ 0¡†=bD9ùžÙíN^COk&ôœU«h€t.ƒîrNôÛνµÓ» úñÉw´¦™ÕÉv›î >›2a2JØ·V·O¶Û4U·ë„É„ë`•áTÞ>Y¿ÓTß®&®ƒõTuo@Ü*ϱ¥L˜L„޳ìy ˜NDÊ~,06À¸žBEõZ_Ù€é¹ÄÅ| 06À„Z—ÉÑŸõoÝSì/&/JÈWar0¾£ußÐÃÆå·á·Q…9Ð/i_Ù|öÃIû½æóqƘÐCödÿçý^¿{‡¼¾ÏcÌ‹šþ÷±ÇñÄmϳ‹2a¿¸ÿÖůp…ñëì|ÞwàuƟ˾oÝ;€+%.àöÃWJ”S×Àºã¦•'ë\›VJÔ “ ×Áw5gwå{”³óó©"¯0¡g?K²Ðù¤:ðíª#¦#¡„T ÷4³`=xóÌ¢L˜LüèØ¼Ï¯;w¦7·„¨"16À„îx0·p¦7b ^ø—)ÏG0·ïx¾Ï”Âd"”¯c\!âÄílWo„É„ë ý„ÓlÏ™ÛQ|Lïs=0™%S9j7`zïðï0]¸‚f_HïÏ8òëˆéˆk™VÑÂÿ^¥_”ÅI‚_¤s“ÓEø*<Йž·ÀÊf‰±&ô/Ñì|Wø‘üB`l€Q~Û‚>Ãzöâ¡¿D¿vˆk„Âd"tï/ ˆÛH‘ãW™°_\ƒÎ‘ýÚã÷‹ôvoïÀí{’cK0p ´—nv|ÒéöXñÝ­¦®¢°ÎeB´Çm:çObl€ =ümL³ÖK7»ߥïWùo€‰»Æ¿ aï¥Äø8èLßÇp¦§'{¾#>Gp¶[ýØ0~— “‰PÂfúéˈíVÇÕ"a2á:Xÿ]\`áÄýha2qéx²þ»äœ¸w|tã:a2á: µòk¥u¦3ªð$=‰±&ôкQŠ/OÖ÷ØñÉ” “‰%d¶ŽcëÉ{Üâ9#ö½†'IŒ 0¡‡ÕLÐ+.¢“;Ð-Æå·è2lo¿Ç‰Äý£W°ñkÌ4SéÚm€ñûźöâê'nß1\ 6~ ^ÍÇSã÷‹uÓuWj@ÜG˜ä•eÂdÂulü]Iãq£êìcLè¡óÖ•Ùþðó1¹L˜L„2oÅJ±·q«¸a2á:öGÙ0½'ŸŒw!Î1œu>Ÿ8&˄Ʉ+á5F\…ùç*$­›ý›ïùÆóë$Ƙ¸d—ß}¾ëùœ’š:cÌ¥fbk±jú—èç5±j*&¡ƒW&aåŸ3Q‰+ÿ$ƘÐCæˆîÉ ˆ[ON‘¢N˜L¸ÒÇÖ ¦½·ïcr½2`ãW = ÒHal€q=…JœXáLÇ'ðÄ ‰±&ôùaù|Oî¹âØ`”ß¶¡g°¨y¤ñÞ¤çŽcM`l€Q~Ûc”í4öxÑ€¸ŸY¥(V&ì×àó‹ ß2ñûu>Èwè‚1æ$ß-9Æ” ûÅ5hÆÊß`®û5?æ²Ï6`îï1F€:a2JHn7UÜfÖÏ6UÜê„É„ëà;g“·Î|çlòý™Wö`¿¼‚¸Þ£5ùäÌ{´&W`B]™àžÔ€é=ô±™ïÐMs™™ìžÝ˜ÉÔ “‰P¾_°F5³Ý³©~T'L&\ÇL3¼î® ˜Þ–yùžÇ ÎÇ:°fç[ÈLvð2a2á: ª'¾+|ï(žH,16À„6Oo>Ý ¹?²š:cŒ«a=QS-pfýJS-°N˜L„ŽþŒ:¬qç`|µLØø5xÓ4CT¿_¬“f¾Ãtg[¼] ˜û±Ìe&âêW0t óÀÑ"0×=Xø¢äe Ùß³?0›Z'L&B ‰ß©~°°ý=©~P'L&\뤙  ër™òûuÂd"tЬ]Z˰øë’˜ÇÙòÁ÷ʄɄëØhf$³­Ÿµø·àã}”• “‰PBÏ‹IkS.¦§þLZêŒ 0®‡î©ˆ÷¸Ó›_¤1Æë xfŠÄ¸¾ !; Ù!°?°jQ'L&B ›+`¶za;R&¹N˜L¸ŽsбßÍ×¶ ξëa†·N˜L\:ÖG?—^Ñ€¸Sž¬N˜L¸žxÄÓéªÞ-…±&ôìe×kÀÜ?Ë ŸL™0™%l¶ƒ#~¥½øö®ÈS`\ YOŸo¾{Àñ1Ùà÷3tî:a2á:–¬eÂ*ÐEÜ+Çb0™p´Z<õLonÞHž«Ä“¡$&ôìÝÕ)1"÷îš|¢L˜L¸¾b=;8YM¾?|*eÂd"”ôç89¸’Õä9·W'L&\ÇNó©2·îôû>UæÆ˜Ðó½×œ{Eâ¾¢³?’‡ Œ 0Âo{>ð·K™±Æït!úSn€ì·—ÁóÜÄt$´ôç/F3]ÿoûþûx`.5YënÖ€¸w3ôØ:a2á:žô­L#æbîý,f…±ÆõLSy”5`:×I#s›hÎ*yúÅÜÎ0ž¸6µN˜L„š³JÕö‹é©?’–:cŒë¡ëëc47`:óÒä4Ϧà ‰ âj^W×÷¶Ò[lüÄ«°™îHØÈªôœI®&®c#Yû·óë<&Ë„ýâûYu$`ü~r¨|ò|}µ3_Œ 0¡‡f{²—í$óœñé” “‰PÂfKiDÒUßûsIÏ¥ÎØs©ùó•ÚÍyäìèEÜ}cäìh0™ptÅhhoÀôb >—½°ü󀜇„’óð÷²qïe8Zê„_ãg`!䙎øÝâ+E“[îlçsÅg_&L&B ‹÷¸âu'«8s.µN˜L¸Ž¹Ÿ‰øà+3ÿÚÇ¬ÂØãj YË«¢Ù€é½“ó5ÀØzX Ko_-ùÜñ=`B͹v])å‡/âþíLoZ™0™plU¦»EâÖ-²‡• “ ×±ó|Zz";Í(äÑ/06À¸žã쮯ýð~çÉî®5S`\ _™ê#¬Ó›)¥ÑÏ3¤éÜZ…¹ô|•iò惭}žàÌuÂd"”°Ø™Ëƒ¬Í™Ë:a2á:¦½üV6`zãGŒÂØãzxr(õ\8øªIì€#16À„ýÓ{ÆWMN|ÓÆWÃVgú8k@ÜG´4ú˄ɄëØÈ—xÊ]Äm\JÙ«:a2:öƒŒ°T·8~2d÷Ù¡\·P`\_iéïd¦/óxá¿tF•¸¾Ò2»[9=qÄ” “ Wr’oÌ?ÿcŸ3÷ß•“‰PÂf¼gÒÁf£YG•0™p;ÍqeØIþi~àø/&¡¤^©lÀtÞGg¾`B›W¥7Œ¯6œŸøŽ Œ 0®æàٮ߳ƒg¡|ÓÆ˜Ðò]ééÓi?øX™0™¸t<Ÿ$Ÿâã¬q;ÉH£¿N˜L¼è(¿“ ˜NKã…wL'ÜHŒëáë'“›=ÙÚÆy/«&¡„DJÌ ;që|˜“‰ÐÁsCè`s?ºf+eÂd•òˆW²Óy±«†ÄØz^ºgv³¯ ˆÛœ8ækÂdâEG?âç‘Â×fÎ Ž±ÆÕ°µ“î ˆ[§ÈþU&L&BÉWøøj@ÜG¯4ê˄Ʉë8è·>Öµþ2ìëëZcLè9¶Úøj@tòÈ3f’Æå·mè|ݨÊLoΓƒf¬Ó97ƒ×©Ü¼Žrß&¾>5Å¿‰­QM0™p%ÏçVËZ¶ öþ¨ÁP'L&\ÇD’¯J}Ý„þñã 2©Õ¿7ñïã÷ó·0=‰¦ãÇÉÆ×3/åQÕ€é]'Ä™fŸRLº˜ûx|@Dª&¡¤^›oÀô|úcHŒ 0®‡f‘±êH§ +ÆÄt$´L5;jï@ïí?qdÖÓ‘ú[8ÄØbl* ˆû)r ueÂÆ¯Áe¹r“ ¿WÿúS|¿pŸÛÀ@TLBÃY ÛJæòDEÀTÀUì,-y`XØYÊ0……2a¿¹›ãKã÷ë ‹} ¦©vheâÄÈ—Âç0Ê–©/Ñ2a2JØ#qûiïHç~eÇ"Gç2ÄDŽÎeˆ:a2:Îþj•Ë ·C1yV0p '_œ» k/«án&À zŠÀØséá}ÕRÃgîÇo^ä 06À„’&N¥®‹¸9¦RW0™xÑAÒÄ8æg~èð2èW`\ Û6àÎÚ€¸õ¼ä÷uÂÆ¯1Ï3ýé @aü~-Sy$7`ngS zL0™%$›ÇãB“¤ËŠ#R`l€Q~Û†#™ íã¥Óqå<–iÁ/]%1xÊ=ÀëH÷Ûü!2±#•üâ¬&¡„ÌßR‘lf›R‘¬N˜L¸Ž$¢S‘lÞI’8Éê„É„ë8¾¿Y¸‹µ ήòì­eÂd"tðQ•œò ‰â”cQ˜&0+>—“&¤Ý%0½ë$g)”­®¥: ˜ž]Ì×cLè!sÅ4’—G?YšòÐ{2¸HO@LGB ›YbæsaGB§Q'lü|á8Ú%1~¿ù9.Õql2ÑÊDzît‘yà [¾œ0‚ë„ÉD(a³ƒô³à)¯^'L&\Ç¿^Ï…$vàß%…¼z0p <+‹-\œé½‰éyŒ 0¡‡eC0Ã~÷¡³ßuÂdâE‰pù©Ð,ÅúHO¥ÎØj¾·ÄWŠõ®ç ù€´Œ N˜L¸¶@ÞÝ®q“— “‰Ðñ•§FÑxt;ä¦ÄtDùa˜ÞI>ë0-ÿˆ/®O¥W¿M²¥¤„ÂÄu¶êí5¹žÈú`I3´í‹èLìV8ÿFbl€Q~~Ú®|§‡Ûj¦¼“åóîŽé´<‰ÁëTî^G¼oªc\Hï¶Al¥ûVò4ie{JÖïY™0™xQRœ ÞýÂñ<•#k{GnSTëU†ÿRSý•TÄYÙþ›T`©&®ã¥mf/¶´÷¿¿— ±¨ú÷&þ}ü~^PÚðuúaz¯`z£Æ׳pŸK±káéEÌ.)L«3þÛ\ÏJÓ˜+&˜/¦wäõ…â͵„¨Óqnìë$16À„ò‘—ý…ïXZwt±ÆÕ°Q‹·F#d™0™ß릠Û× “ ×ñ³ãªâF ˜[íÛ•” “‰PR_lÔ€é¹.PR`B›¯¦qÏû,lSRSgl€ 5´(‘y|ǯΛéÄ—L˜L¸¶Ê¼q?+Nq¥L˜L¸ŽuÖÝu¥¹”gT˜Vg²#ïßw€;†_eïÏt³USA'z>´0ãËÞW¢Ó‘] ãzè^œ¦ÌöÉl3ª)&¡„%Y³ýè¶àûUL^TÉ$VT7¶'UTë„É„ë(×pÐÅô!®gTûÅuöý`MÓV…¹îoZ›ÚÄ9ÓÃó5ÀØãzØÎ4Žw¶ó%€íãH~T'L&B9IœùØo@ÜG#ô£:a2á:æµVŸhü{€BÁ¤ ˜ ¸†…&ÿ’]ÌýóKQ&L&B /blI Mh¥… cŒëY×þ½ôvýÎlƒ÷«ŽØo®ÂÓl˜¤Q¿c|_LŽlÏÊ–âC™0™%d®“J$;Û³’J$uÂdÂuüëª])F4 nSm©DR'L&\ÇARf[òȃ¤³²G– “‰Ð1Wo¤÷‰¶AL9ib.;ñÉ’f¸ú¾N˜L„’ú‚¦LÇ…Ò"(…±&ôdöÞd;“š:cL¨á‰9\¶@¿„ñ5+¦—ŒãñØkvÔ€èä¿öØ¤ÂØ£ü6Ll«Ò†aû`ÛˆRØ®ö‹keí6Àøýšæ½V+iAýw +8uÂdÂuÌ,ïL²’iøVSÁóž'¸êÁ›®$WåM¿óÁÅ zø ™ýÓqâlHcŒëáûáR ?Ø^µ³ÒuÂd"”le«hÀôîX²ºÝ%‡Õ¥ŸÍÝq7{0xQA¾¡°Øu°}©ØU'L&\G¡… .¦óÓÂQ…±&ô,ÏZ˜h@ôÞ{Ìÿ)Œ 0®†W–RË­ƒïWLˎƘг?ûñ/9ÌqûÅ õ4L¤ÃÀ&î-½äAò’Hú<˜VgÐ(ŽßɈáÕ™[s9®»ö%&¡„•D0]Èý „Ïö:`*ð¢‚|à@݉û ÔÀÂdÂuú0½™rr&^Ú†c9ÄÕðm–9ú±-|N „ÉD(!³+,¸:qa°*&®ã$éc,„:q;ö±*&¡cb94¾ŸúdgžëØ$ƘKÎóÁ­íòb*FnL˜Ïó9—­¯Ó»Úå“×ΰM¼3½׋ù`l€ =dZšlæÉû’0…±ÆÕL$3šÌæ":ïÍùÄq 06À„6É>ñٰݳ)”Õ “ ×±<ÊþÔ€¹˜Ÿº“‰PBr¼XCüKôó¯XC“‰ÐÁëtÏôDÖ…=Ågz&uÆ×Ã{¿¹W4`:Nž}ŒWøðPK‰ =4u›]iå)Uü˜Q˜Vg²“ñ½´9j²}®'& ê„ÉD(aÓòäÉlŸ+V«ÂdÂuì$é™l§ÉÈS cŒ«9¾§óÜÉ·NžãK™0™pç\ö¾̽ö•” “‰PR_cÖ€é¸6`BICcUÔ‰Û†eQ0™l¾Ÿü‹ï¥=·ôTêŒ 0/jhéqIãåØÙ[Òˆ©36À\z&¶uÕãQâ6¥(Y'L&\Ç“¦£S¬¸˜Ê׸ 0­Î¤ø2M$FÿEôîÎüÆå·xæï/÷ÑãR°_\ƒæ½\» 0q¿ø ¬cv¦÷E‚N;ñr/4JRWÃw½¦h>±©'Î{ë„ÉD(Ùʮ܀¹{÷Çß²2a2JÈ—H*ÁNl·h*ÁÖ “ ×±’Yr*Á^Ľ§ØR&L&B-øb­ìL!1qúmùñ»Æ·NæPC¶5ÏM™0™%l&‹™•…mkLå§:a2:¾÷ò*OânçÚS0™¸t¬’Gum@Ü*O®_'L&BÇRö¢L'N&ÿZŸ<_‹Ñåbîïñ‚w¬L˜L„’òR³Hï³}zÏ× ˆéHhaSWt••î`<žÐGMbl€Q~®¶^ ·4’Ÿ4÷šv2)Œ 0¡çìf³¿^DÏvpX…±Fùm¸Èk%;L#¶6 n3Ð)â× ûÅ5øŒ÷(L\g/ßc`ü:3ËÀçÅ@ ãÏégís…ó"îÇ V8ë„É„ëXIÖÞ#Sâ>ú§xY&L&B'““Ó}¬¢ ¯£b§ ‰ =üÝO>öÃôfL;>ÿ®Ñð±Ü€éÝ·7^SÀùÌÆk 8ÓØÖ²c4`zw-¹ÿFk9žo¤®ðµAæVaâ~ÑÌ­¬L/‚áhÜ'šQEß¿Î[ŒŽ¼O<Ó‰Ž|1÷o ~ñÔ “‰PB2©bw·i‹TM«&®cf™N\œ¿Ï/ ȵ‹|éˆéÈ‹”~–3[ä̳8ýVûÍuèѰ¹\­0~×V’åL%»?D?™JvuÂd"tÔô5`zž¸àLal€ =$Ë™‡òë²Þþi€¬·¾wÂH®¦¡¢èÄ¡ä*s|(&.cçùPœ­_L/nã—úþs¶)½¿ €{)øÈ«€©@hàÅ™ŸúÁ2”ùt…±&ôLh¶Ôƒf(皪ÀØo®ÃËG©g€ÂÄuxæ×ô(ÌõtÞ¾0Šƒ´s1·ñhƼf0™%õ5@ ˜Î{ïÌ×cLèáçÁ\åùLïi^Ì×cLè!™º<2gšA›g›cŒòÛp:~Æ„áf ˆÛ/êì±eÂ~q š™ñãEaü:´9_^<£0þ\6’GL•‹¸}—Se§N˜L¸Žäç¤c'9¾ìäeÂ~q æäùÀE…‰ûÅßÉ4îwšGtƯÃw¯åÈÄv–Í).• “‰PBWÎ8¿˜ÞKNy°œè‡Øw¯äšÕ “‰PBr¢©¢s½x¹ÚR'L&\k1˜·—´õ_Þ†«06À¼ÈéçE³åŸ4_9cREaì×9鱓¹<©0×=8ŸÏ'ûmߟ–±0Gal€ùŸ3$g›Šhˆ~>5¸ê„ÉDè¨/JjÀtLZȤ06À„’³Mxòí3f ÆWÃ6¥ÍÈO¶a,ò:a2:Šq,dloŠ®uÂdÂeÌ4£ìfÙ€éÍG0s}Ò.‘9ü¤ƒã±<ðŽ• “‰PBWØâ.¡óµéáM ezÏ ˆéHh!9ålù Íõ.O4}±&Ôœå ×€é½Ë)Pò}|n{ ˜Î×U¶d^|L}¶&®Códiõ³Âø}ã}"s`&=eB5eÂd"”yª'^ÄýHKSÒ2a2á:^W˜ö-£r[ü>ÆúåyTSWAúC†‡7 nŸ_Ž,eÂd"t°,T]Ï×P?.v„ªk0 ´êâ¾Ý€éxIöúŸ3SéKÒ¸øÞVSÐP_¹×€éyèÅ| 06À„^7Ýq$Ò>ŠùÌ …±&ôzKvù“Ö4–}^`l€ùQs>H÷Ɉr ˆÛ"Œ½aã×àa•¿‚øÝš^Ò[=ãkô…€×¾­ç¦&:ã÷j¦U0=ÏOo0ßÑ…~éÌý[É0™%4;NéÌý,òa2JHv+²Nܦ³°Z*&®ƒõ÷K‡rüEhJãÀG"0ö›ëÐ#LÓzb‰ñÛ¶“œ1Lÿý|.3Âd"tÔ—–5`:v„ËÑ$ƘÐCrÆyXòÞyËžÔÔ`\ ÛÔµ¬hûlÃU¶ý2a2:Šî2H>7{~™0™¸di13*1qúíŽë¾%Æïí“õ¨[qÆX'L&B ›ùbPºˆû ŒA©N˜L„’ËÆJ¦÷.ƒQ©N˜L¸ÖÏoI1‰õÚË1©L˜L„žAMN¹ð ꉶNe×kÀt®“’ö'ücYïÀuÂ'S&L&BI}…dæÞïR/W‰±&ô°„ä`¼wà:£‡ Œ 0/jhE–c9Ó{7/æk€±&ôìsöå•f…×%›:cŒ«aWü }²nˆ9ê— ¿힘vGHŒß/V Äš¦·ï Ö4ÂdÂu°Ž‹î² ˆ[åÙûË„ÉDè ‰.¨7þ"õ1gñ^o¬¦¡~³¸«6`:1/;>­k¦]zhÝÁ}¨Ó›Á wMtogŽûÛw¹Â Äa2JhÝ!Åȉõš\1BÖ “‰PB¾¾R5s"½&s¥±N˜L¸ÖÏ2%÷aé7<àRbl€y‘sÔÄ‹š“ â=«)3ö›ëÐÃTÓî‰ñ»6md‹ ›/àß{öè_*`*àæ—Ôc/5îG0È2`*𢡼x²ÓKhmh,cLè!xÙ$yŸÌõHjêŒ 0®†mþõp×€¸ŸÞ§ \&L&BÇË”ª7´ÎÍÂñ^GLGBI1j‡RkÊs‰2a2á2x‡T ˜Þ<Ö“íú!سî¥~ÕÕ “‰PB÷@À¹~Žüÿy©1œçª ¦#®e_ªï}¤÷Q„C…w-uÃkÀô.“̘ïâÆ^Y×ᵟG¦Àø}ã;¿sHf»²7ÌêÔ “‰P¾X0Û:±=ÆiC0™¤^”V1L¬§hZÅP'L&\ÇI÷>$;É΄ïå_Þ«*`*p©˜Y÷U÷îÄíóK¥N˜L¸Ž'YÏ oÜ_žE0 õµ³ ˜^néb¾`B¯¨à‚À™mVN.7ÓÞžéS‰±&ÔLòº™÷éÜ09£06À¸¶õÚcVâ6f¥HZ'lü¼&ˆ 1~¿XÿÌ´¢`f½-ÓŠ‚:aã×àukÜÚ/1~¿x?È ¿ofÞ2¿ÇtéŸe{<·]¶L˜L„ž¿<©sñWtË2a2JÈì6ÕwgÖ?1Õ^ë„É„ë`=Ó¡‘öYÇŸJŒ 0/rH>>Yï¸át]al€Q~æðçƒ&wœ±&®CóþxÈÄøe…èTPŸYoÇTP¯&¡£¾HµÓ1þ´°Ual€ =dâ› ÷uÜ0½£06À\j¶YÔCYâ~‡¶N˜L„Žb ${œ¢k0™p¼f2Ë…÷Át&®s”¯Ó»fÂÚo3‡Ù…õÂü>_ûõÉ” “‰PÂ˽sRBwv੼cLè!;HRxYxÌýFal€q5¼ß¦[_¦˜’-/|×tZãª0qš‘Á³$&îÛ¹ôsÕPÌ¿€Ûš&óË€©€k »Åóca;¹wü&©&¡„}[aá{aûŸSá»N˜L„R9Hõâ…õMõâ:a2á:Ös/½Š €Ç½ í­Óå‡á°bM\=D6 î§;)p— “‰ÐA·Ùx8iÀt¬4‡ºm¯ÞbÓWC[Å~˜†°6®û‚Ï¥L˜L„’úBàLÏêhxcLèa߅ɼùù=Ù·ÀØó¢†–ð¯Õ ˜Þ»y1_Œ 0¡‡xrHâMi÷”ÆWÃÎIØ1±°3 ò„§L˜L„n€É~Žm¤Kûåæmì ãjεjç žˆ+k囬¬ÍnZP'L&\kåë£q«<ű:a2:Hž4¬O²4”SÐ@?ŸwŒ^+?ä E¯•/œHçÈ(Lè¡Êý~åm“¯ôƒ<‡YÙûŽw­L˜L„Z Lñ~em÷¢}0™%ä#:-~XÙQ iaB0™p¬µrêó¡ÙÖd‘cÌ‹œ~2‡-Þöx?1p Œýæ:¼UrÚM­0~×V²Ù&—•l…IÁ¥ ˜ ¼h(¯:nÀôŒW*+Œ 0¡‡|èeƒá§¤¦ÎØãjØ~} ˆûi~ `eÂd"tãDÈ Å¹½Ê„É„ËàŸÝŒ0½™Ë‰ÆrðÂ\ /)š}êÿ\Ê„ÉD(á…¹kÁ_¦§þb¾`\߼Ó±Øl0|]î¸ Í#¥cÚæºkߺŸ‚ÌÆ¶Õܳ:a2JØüWdll3zZ‘Q'L&B)¥%kýœ–dÔ “ ×1‘:ˆ;RâVyòÉ:a2á:xûêä“k-}Ìà’uÂd"”Ô—,7`:þ€my$ƘÐÃ&”iÄó]ÕGócŒòÛ°Ú°–.\ë#0÷TIŒ 0¡‡T²÷ñ&ÙVÆWÃöã{ k@ÜÆ°YË„ýâ|f…µ3…ñëðÆÚéÔ…ñçšq§ ýÆe§ }0™p¬·G€Ä}ôKq©L˜L„þ®$·ä[¿³“óÊy:‡CaBÍ¢»W4`:ïqö—c)±Lï¾¥(C·˜˜7°íßÇŽ.S&L&B ÍÖçxÉr˜ï¨&¡„|í¤JöÆ6²§Jv0™p´éwꌳñfÜØCJbl€y‘C²õ)´ðfÜG .c¿¸ÎÎOÿOûnæºk;+§’öΚ^§’v0™õË ˜Ž¹¦UÎ cŒëaû¡“Áîlw{²¥ínN¢N˜L„ò¢‡ ’±NQ¢N˜L¸ Þ¼ú@CÚyójgü:¼yu²ñ5–þnsðzÇÊ„ÉD(á;Ϥ„f«S‹…±&ôí*ÙZycéóp c¿¹/‰â¢o‰«Ð¬JÚ­«0þlV²‰‹ÔðOË£|©€©€kàG äÇŽ8' xeÂd"”°5tw¶y>të„ÉDè õƒTÑÝY[ìTÑ­&®c'›HÒèØé^6Y ˆéˆ+aí·= 5 nŸaŽeÂd"tÐ!îØ ˜Ž/:ã×9iÅ%Çà“TCNü$¬&¡¤¾³ÓqÔÔKal€ =lzŸ<’ï­?1¬06À¼¨¡õòkaY¦ón¦" cLè!Õ“ìü¼Mö÷á‘oã¦ÎØs©9Ø Á·<Í+ê„ÉDè {5®€ÑéØF²ƒvðΧ¸(Œ«™Hí$Uõ/âö­LUý:a2á:fR;q/o@ÜÇKŒ0uÂd"tÐÚɉ5€ƒoàOž|ðµé\… =´vâNÑ€éÍ1’»ðÍï)2lcú‰q¹N˜L„ZÓHQì`mÌÏbX0™%ä ,Õ˶Å>Õ²ë„Ʉ렭ÒSßÀƒ·0O\Ƙ9ýšF¶ü•ÖN¬5(Œ 0õßv>øÛ6–F Ƙ¸M>¦m° ãO”5¥O Ö0>-¨&¡£¼®¶²ß¿2¸W@LG\ ÛšœŸmœÏvÉ6çV&L&By1N„ RÉÑ«L˜L¸Œ“ÖZ²´ÖâL\‡AÆÒ€¹¿N0×uNÞÄ>…±“4˜?¸²°N˜L„¾l‡wìäÍåS7,…±&ôšN²ï“6Š?¿~1p…±Fùm\NÚ>`â:¼xùa‰«ÐýÂŽ×ÓÖã5YTÂ?ð€›ã”‡„þárøû~÷÷ýáïûÝ¿¸îþ•r÷÷þîïý=àú{÷÷þîïýÍßû»¿÷·Ó¹Qlþ¾ßü}¿ùû~ó÷ýˆ ü}¿ùû~õ÷ýæïûÕ?óWï¯þÞ_ý½¿ú{õ÷þؽïïÊÅ?`ï/þÞ_ü½¿ãûÿÖdèþ~¹>nÙ÷þÜÿë_?ÿ×7/÷ÿý¿ýkÞ×?ãßÿüýëç¿}þûé<–_g‘ÿ¹Yùs[þs×þçÈn\çù73ƒÿÜ"ý¹ñJnÛþÌå¯íËòëüò¿6)­Ø:W¦~þëë7äm웺Œå¯MÎüçæéÚ~WüçVñÏÍéÏMóZý¹q¾–q}ý¹ß|eïÏM¹åæõªŒ?Ö.ocŸ?'6ÝTŒ]juË4ëÛØçÏ¢±Õ¨ÛÿlÕŸÛŽ{öÕÍYÝ:VÃd:×eâî¿6éSb;êŽX¶õ-wô‡Éx–ŽXþ,õŒX~= üçä~ÒŸÛ›ùu#%÷_›Å¿väAw~þS5èÖùxO°çωÝ:ç1ü™`W5]÷ù7ÂþÚwŒL¢¶qOì8kK?ÿõù¶ôþc²²ÜlÓ¾üÙ«!2óÛÐë;D~{[k·õ¨´MK÷*÷ýc“8ÞÊÜúZõÁvLÛ[Ú­Ì ìÏZt­ûþÔoûï7Ç.ÌÒ²†,GÕŸÓr¿é>:Öß?÷ûÿ´å½aZ§z5_×m}«ûеMyZMóVk[—kÏÒßÄøßo· ¦æñ±|L- Òg;÷w>ÎÐrËtU±lǵ‚–[ú-·¬¹#¦foý Üýç,{ÃÖtÄôù{oc¿¶Ê½š§é2×+Ò´íÓü^ß®U™Yyñ=joä3®—·¡Ï“»!k›Ï©Öv¬çÉýçDS‹7²|p5SÏm]ß¾Òóçä¡Ì‡£i¹ã˜Ž÷Ÿ›g¥WÇÜrSµÂǹŸï¿¶vgWÙ—un|›c¾Þ#äûÇd;K³}FHµ*Ÿÿ ¶…¥?B*mËVMÕ鳡ÊNœùÕžu6C ¹¥ß©e£™Ç¹6öº¶ ¸¬ý¿Vfê²ìÕ*·Óù{HÄÅÍÊä*¶sÕtãññ@ÓÝNv ‹÷ùÿT¶ÎŸé¼‡±¿Ê•¦ûD"Õž·<é¯É£.‹›®³qFæm³ëþs²­¹'ØŽ—hªÁ·iݸ|¶àÆÝNö Ê ;ëÍp¼Öy|Û:]ý¦«¼Â½^J¦õ8Ö÷ìþœ¸0•ù?Mg5LÆuš®÷føü9ƒ³µ³¿]ëñ&Ï_“=à"îóçêQ·Ž vxþœÜeJ|l­;öº€ üü9Ñm­zbku×6î`Ýs}~ýn_eö¯Ç8¡ð»í‹kI‰k>MX/MŸb.Îï_;eC󄘖¹2ôãïÀ%¹ÿ𼦗¹¿]U̵|6Ããí“L§Õýš–¥šüŸ_ÙG0FÎþ|(;δ´‰ƒ…æÏŸGp•8Økc?ÿiNÎóçäÜ„„µ?7. Krÿ¹IÞrJÇ®ëºîúsÝ\9®û\÷ë5X˜¾–6Ãñ¨¼¹í<—,K¿l•3c¶ó¬µ´$¾î¿&/™yª6똖 ߯÷%OûS „"ß?¶RhÇQ)û,–˜¦çwy»ä±VÇX'ÇqAªåùsò"’{tÙ¶z&ŒÛ„‚ü±¯®l4ÓÖlƒÇ¼^ %üÍkëèaÚ—ä Ÿ?'oÒÅ…øDU‚ïÏ`bÊ&}u[5í?®Ü±€arXÝ¥envés¿€3÷ü9Ãö0Ÿµ<š¨ûû`Ž»ö­êÖeÛw0!Æî"²–n®hûøñãÞú÷É)à* ÑtéµîÛ»ÑÆ~þ¬Œ·Xφ圷·+rÿ59",)ˆÆOZ·ëaÒÝjâ®Pö¬3^ÿµ}?÷·ÿ{žý‰_–Ë_7©Šá®}É iW¦Vqm>û}[º´£îÖÁûñwë€u>Žå=Fî?7‰ÎMq1—&±Î×»WÏCYãJË-k½(븽'ÃóçäŽÈcn[šÍ~DÁïý×NÙw(ýÐŒ’ñ˜Ñ‘ÈóçĆ+A×gÕ¨Ö¤—„’Kç7ïu_ÓÜFI ¦§o¨?Éé›2Áš#‘Od~‚–sUÔYÝZ]ÓrŒ3'÷Ÿ³œë5ëù8~Ê»g§¯ƒ>ÉÁyÕv{5P¦ýó×Þ=ûü9¹íŠºéhfØ4”Ðóçd'§ZNš nÿ¸†ï {.JWä½po²­Ÿ¥iyÇpÏ_“›.“eml?Æ‚e}šú=QB¥OðPíÓŸXµÜÔo¹êø¡9Êø 0ÁÂ9Yw°­^šÖmIïsî÷BÒÜ_sYñÏÉíV¼¹©Ù«·yYÀRwÿ9yëÏÓuù¬Ãe³žcs°ßNvq„Ä÷g}>Àþ:ýAR¶ë½÷ÙrP·*ŽIYK¦z¡›çy9Àìšú-WõkãVV‚ $pž?'¹*S¡7$åKu%8¯}Íé:Çý=Jž¿f8…o ¦q?ÐQáØÃU^c­ó·Ÿ8¶>Îà¾NÍIÐòñš@|œý¦+¾Ä47kÉ<_ï~}þš<_Kl8/uä:ÍÈozþœ<ÁÊný H*×dúR cï?'ÂyJ¬uðõñg0Áî¿vÈ'$e‚]Í2¼ÏÓþ\£?%ª¼á67%Bë òU÷Ÿ“ÕUƒx<šµé˜ÁáñuÃÃî:]Íœ¸Öä!µÿçÊÊùklµ:-;ªˆ8¾»õaÙ­?®Då™üžÊ½âçÏÉ‹]™±g]Æð úW¤nRÚ®Ô¦ŒuáÌQðœöQéÕljsx»Â“´çÉ›uåJì­ó¿ïïv{þœå,í¬ýëiû=ù~7Üw™Ûä#×’‚YêÑ<¯;Hø?N^—¶bl‚ýl3Øp¶­¯® ¯WÖÛúž­ÛÚÿseeºç<–Øzÿ5Sºy­áyFÕ}ÛÒWå`Ç6“°ƒìó×d¯©TánõYõzLà(òùk–S¦ÆÒk»@Ê6+ÝP¶Ö«Þ §iß& îþsox›DÝ'X?Å?g8ÃÛüðg¶ž ÊrRŒ-þæ56IÉÏ: úuêO°æT¸ò?.ÔÆÜÔoº*‹ØÖÐ}Bÿ÷V½i'ÖUy½U/ó¹¯d½”É_Ö’©9•Ø–Ñ=NTWþÜÜ,MË2¢ux•¦«ª@›èúO¨þœ!XŸ§¥©?<МX¿Áú*/&¥íƽvL¶OœÚnïÿ¹Ê ›šýuÿ¨u¥ße}•÷×’™X—&§»ïHÝýçä:Ÿ²žÔnÓgÔ¡ŠÁõ»¬¯ò²^ÿµúŠËg ¦.JËU"ˆO`C|þœ¡å¦±ñ­¯ÄÂÏ_3œ]MçÔäΕ Ïý–«JËšÍzÿtè‡Y7æ¿vÕúg—@§ˆÏŸ³T6|ö°Ê3™·dê—³_7Tíg}S`>® ̈ûÏ-rr­DÖÍìÿ8œÓ{B,÷ì—O‡«KuáÛ¼M×ò^Lž?g°õÓðuöêüŒaÐt{_]u³ê³_W³=pbzÿ¹ÅâÁ^õbò[UžÏé†ß?·ýº¡¿ ûÉ´»Ðáÿ×ÿô?þßÿõóŸ_ûÿã÷†Îý­‚ø/ÿºþ»ŸDHwDäõ!A^úç†~ÝçÉ *wÚt›|E AÞ‘ׇy}(ÉÛ¶ß ì}ƒø¾ÂÇ åš~¡%ËsA°<0"ty „å)Ðzïah½>$´^zæÓ¯»ô̧eÝ÷Ù»ª¬ãþ[Äå庄ΣÜQ*6U+¿Í!Z—õ™NŽ0Câ(; ¢”ämóþõ ïË Ó{ \¡ýZ³<D(5ùÖt“ÉëÏÌ(¸­`ƒv1`’={3„/eàÐ=Àß-‡† ¢ôØ´MÍò`Ûe2T*bõåÁQä½×Iƒ¼>$ÈëC©Éç䢟1÷pµf„üövYUa} ë#PX°Te ¥)Lëõ›y4úN Ú–c·zàc&Ü¡ 8ð äG 0SXîA °>’ZyßĶˆ^M*ÞÜÀ¡Yø%àlú Š@MßÂã~?4È}qó½¬_ÄA›H†lûï™—ÏÃÜ÷¶GMáC„õt¨‹¡“ :ÖñôÍÑŒÌB€Iêb(À@mie}äiçc­ÛÙ”ÂÉÈw]¿Þ.0ÆÅP€Iæìã¾Yw·1å·¾õú Š@ɤ£6ÉäKdDj9d‡¡“Íy6,OàX a1‰‹¡“ :ŸõÚäòèN˜â¹A’#bMCæÑvŽÓq…o+,õ8ý­Sÿß]î¿þ¾Öö_þµ'q>ˆ"–×$ß­òËS ¡õ¶Hëõ!¡õúÐ? ºîlŠÇ!;§v^ôcÍC«°:€PØQJ6Í©! žÌÀ˜‡AÀÉò äG °÷Æ¢ ë#PXÂú®,ÖG °>’ºÿ9Sr8~ )÷XugÉÅP€ÁÚÞT×Ög°¶>“šz[–Ù9 Œ&'è<ù(ì=Ta} ë#¸ÅÞ^ˆÞd}·YŸI#àšoƵÏghyý’¼‘º Š@¼kZ¯o>à~|ùÝGÇ/sþ2GRçb(À<í}Íãuxƒ“ë™ÚŽíZ¶gã5øØc„Ý ¸ÿ„üöngUXÂúÖ² °>…™B¹k½.œ³¿gÍö‹\¿È–…9ò#PØ{µQ…õ(¬à{/4z“õÜf}j›ÞÁŽªMa 6…I Íæó‡ïŸïõèN§ /LØŸ5Ù‘`¹š|Ñ{yù¢ŒHŽ-ȹ 0PÛ»#Ui}*ë#¹ÿÄèg”Ĉþ‰¢”lú>»éôiæ,’ r äG¾ÆìÆ«ÂÎô陵öšÿ€¼@2ak}`C¶æÚŽËãÆTˆ´6½Ü'C&™s>=oÇûïsíWÏ“{­3"I{-4N†ÌcÎ4þ~ÍÙUˆ4Ú^‘“¡“ÍÙæÍ ŒYð®ö œ|ù(ì=ÔTa} ë#PØ{¯U…õ(¬äî߯Õu¼P1‚Só:ùð!äG °÷PV…õ(¬@aà$TU¦0PšÂ¤0WyÔwÿ¿R•…x‡&B¦Ò‡A€õš0AÂ$·ñ~oµ¦óC x¾8 0É ¥ÞÓ-ÁCňiq°«û Š@‚¼wfÜ ¯ òúPjñu=fsâ~àÐ=îÞ}‹¦„ ¢”mªcC*­B$8Ç.†L2ç¨=C%±>0¦|ÕຠŠ@‚<Ãq‰äÙk½×!ƒ¼>$ÈëCy@´sÖpXCR}/š³.ˆ"P²é…š.!/Yp–!ä% ˜Çœy¬Ì1d€ ñ^Dc<ù‘dÊ2>§´†œæÀ˜ò˜žjñA¸IŽ4Í|T=jIœ¬ŒrŸz 0X›á(ÄÉ`m¶©Ð2¦‰íb°6ÛÄ>–k÷î'z¾rÿöbÀ~âƒ(%›¬%2Cýï%oÍl3@^à- „N}I 𖤹Ui²Æ?c„œ&Í<ù(ì=èUa} ë#PX?†ÂúÖGR÷_i&Ú“¦óµmå(Д̈´;ƒ ‹¡ó˜óûÝÉÕ»7/M¼¿~ ‘²`uu1` ¶w—ªÒúTÖGR;OËSÖa8móêáЇÂúUdPX µjqªLa 4…É# ^mÞ3 ¬6‘fXm\ ˜dβßk´åÜq`Œ¸B¼¢ÄMrd‹>ã`Þ­¹ú1bY 8HðA’IÛôÜ_sDàËVîþ"9žht{ 0PèVU›Â@m “›ºr¦“«ŒH# 8C&™³·!^?£™¡õŽ<׺3eRcƒ<^fÄòx>ˆ"P2éxæª'àÏh<1â÷AŠMs·¢ûdF\ïÁ±¢”L:ë#’wÏ¢½2!Òª…¶JCjIÕ¦0P›Â¤¦¾&銳<â®MyÈ L½µÎ9÷öÐo/Kœu„ü6¹uõ $«OäÞ×ÅëíãqCödKF¤õ$5\ ˜dΜ6G=Ò"ý ˆ] ˜dÎú,ž¦3óCÒ¡4XÛ}E bÓÞ5 T»"¶º˜ÌˆŽpE|E AÞ{@äõ!A^ä™9$È39rëš¶ KåÅÀ¡ïò.‘C›<E dÓÞ:§ý“²íÒ‘Jª—I[ª03â±>Z(]E Až©¤Ä òLØz´+¹©8«@’Ÿ…VrD(Û´WoDAfÄv™DH÷î[ƒ¼>$ÈëC©Å¯Ú[3@eDJ1 oÍÃP€yÌÙÆ6•aZ‡2t¿[^µÝQÊ6›” s:¿/"v3-àL93âseD(›4Uõ˜!oY ¬\ ˜lγ¡{²M[ò<ŽW†ÄTpR|E lÓ3¾)Ëm[ûåsàh*3bVœMù Š@Ù¤:©ün9TΈ´]‚¤²‹¡µ½ãfUZÊúHjç}’^:”בĀ_^H\E Až©ðÎ òLŶ¯ÝâP4W"åÑTõ0`’9ÉϲT† ŒSÀ ôA’I×IÞ2)1âþ…LrA“ö±v€lEu™³.ÀòAyýÊdA^ä™j 9dr} Ïä>îc› 1-ü»¸²ú Š@ɦù©—æíø>:ÊŒ8›jè'QJ&-­‡ÛÏ|héW#hÝç~Ú-+Û¦<ã~騗W[ýCfÄvË«¢$È3Õaú Aži¿åisòA‚<Ûætˆ"P6©Þžm•™Wc°=û Š@‚¼~Õ© ¯ òú ÏäÜø AžÉ¹9¦õþâ•'1tLõfa˾dF<ªÛ…¢$È{=ƒ¼>$ÈëC©Å—úPäÝà`gʈ4ÕÁÆäb(À@m JPµ) Ô¦0©©S톩àcà䄃SLD(Ù´=³Ü‘T:¶'ñä8>C{<¼NÊÑdãÞ‡û —)e ²q.† Ôö>R¥õ¨¬¤v>Át¨?pHšÈ¡qAŠM»Û :Ú€þ=²Á‘U†ÄƒRpdåƒ(e›žÙê‰I3$zÅ &õA’Mç™ÊI£Ùä‚(›VÉß’´kTxAÑË5*÷ÐtŽO¥•åØx` ˜ƒbFÒQÊ&µ«ž©Òª@R V=DˆÛä©Ú8Sí´'|É8Š@øâƒ(%›¦v‰0@Hjr°Dø Š@ɦ½]ÊMUShë·‚Žg>™ÎN½—=yº» Š@Ù¦y^ÜkÄùøÇgj`ˆ´R7ÏÅP€Iæ\íLïçQ ô¤ óïÛd*(Ð{Vˆ#ÈQâ6yν®¹A¶@!3bã1äƒ( òÞ«ƒA^äõ¡Ôâ˨¼Û2Î7NqöA’MÛtÁÜ_Êcß Û•1jÉ.C&™sí~îÚê‰nIWŒèÙ¼&º¢$Èë! òú ÏpXý† ˤäÙ–É­Y ç6# <´¢”lZRžÐ ,ç|JU â*´œí\êDy`óóA›ÖóYTˆ"P¶éÜVïØÛÏ´P:šüãé.ÒtZïúsîéª÷ö{Óo7$}c5 ýÅ0,²ù6¦]¤Ša‘*&´äkI ZRÃþ¹±k½Kæ}¦% |3±c™“¢õµkÿŒûSêbÆ„}&Ú·=ÖWnæÁ¾‰èiº3Ñ?1Œb˜ tšE¤† "5,uÀ4Õ#Ë6±½ÁL B½sjâˆôcòm×u:Zr`Ø3”AKÂîvbÑ[L¤† "5,‰LŸ ™ßG,öõš§¹J3ù1Šai”ÌG3J¬‹BÂÞoª÷ÚßGQˆÊ†Óâè´„-ûìhÅ¡¥îœP;ÚQ*ò.©>æÁ¾‰†i¹3 ?1ŒbyÛ "U ‹T1A$X¯,"5L©ay Íз.ªëv'«/v€¥àëöOuPçÇ(†a‘¨I "U ‹T±,òy–ò|å^jþRÛÂÿ Q¢ÒÙÆºøYõ)†‰K1ô{|…¨¢ð¾uœ¯|݃}ó&Ó~'N~bÅ0,}ƒHÃ"U,‘åþ¶qd û&Y'ãØ÷Q¢²aÛ=eœ+OÆ.i[ƒ+£–m{>áhÜ{¶ÓÒkpÃHÔ½†}@DÊÃW—§APžAyÈÓÔõ©¨ReT,«ßÙL”ÔWÐvA <ÐWº< ‚ò4·X› ͧQ¸ý4*е^bT§tàØ;=ÜóœŰlÛ^o f/a÷¯!7n NŒb˜ r‰Ô0A¤†¥8¦fpYòŒIK[>ŠBT6l¾]§§˜0¹= §èÄ(†eÛ¶Ú6ÕÁ8vIsÛæÃ(†%ÛÎñØ~Ø9­vÇth¡IWÐqö0`6k@ëa6k0{ÎS?A#ÅDIÓ†².ˆ"”ZB—§APžAyÈ£Ôõ©¨RyT¬óa÷yFòÁž[îÄ(†eÓ6©ž¤·}¨£×ϸ=è»]`ÛÂÍá¢(D³ÖȺ¾­—Û9O(:ç>ŠBT6ëþþ‰Í7Zhö*è;y 0Hè&U›Æ mƒ´Y+< Ò¦1i \s5¾ÕØn`(«ìp'F1LiᘠҺT0Ìz&èÄ‘–ɲù=ÁÍRŒ}AE! * éÓ ÒêGu)Ä¿_ë‰?ð@ßÒÎé[_·«<E (Ì]žAy„[¬‡†æÓ(Ü~"UW¨RP¡Jå»7WËé [¥Y ONŒbX¶íº«W]ÎI‚Þwlz.€¢u›5ýÇuv¿Xµ1ØNþ $z¬`ÝõR¢²Y³øz®¼— Ü‘÷r7F1,Û¶Þ=í ž~©½ßŽø·êH‘dĽD’^ŠBTÖ] A}TZ½vé­c÷Ä–ÀC×EQˆ‚ A[è5êÓ ÜêûÒ?:é±BÉë.ȹ1ŠaÅ´Õ‘í% C´wB²QGÕ_¶lfÄe÷–‹¢•Í:+ÿÄ– (øSÀ?ñR¢²Y×Þ_2°§ñPàRf×ÕðaÑÀ[¶ˆÔ0A¤†%‘Ó8~ãµ ãê{ÝrªŸpS¢Ò™&ñQÎÞ²=M÷e9§5k7G ý†‰®9t|…¨bÖ¾öÌ‚s‚ÄŸ‚;³¢•ͺÆÉÆŒ’wKi»1ŠaÅ´½Ÿþ‡ΊBT6kªf¥ÙO”¼nÃyéÄ(† "Áòf©a‚H +í_-fÇ>Qr‹ÀĉQ DjÛ‹ RÑÖÍlž×3àßÏóÖ¯T‚þ}¢¤½ú÷.ˆ"”–8]žAyåi!”§APž5x›·éöÒg)ö½¥?]¿Ø^ú0ŠaX$º¹j©bX¤Š - ÖKKj˜Ð’–W€M|¼µ»(n⣪ÝEчQ ˶í÷¢è‹£ç£òŒg3…’ƒì#ù0Ša‚HÛœDšÍ³:ßNLiu¾ç:‡öM˜CJè$Á’¢‚ýV¨APŸ•V$fé[’½¼Ø,~â±—óQ¢ŠYÏÍßUêapÔZaÒÈ'­^ŠBT6ìºk9mI Q‹ðS0Kå‚(Ay`¸ëò4ÊÓ ( %]žAy”†Ä2W©m­¾m`¸Ã)ì£(DA…(9¥+T)¨P¥rÃ?o8ù¼ó¥þ~ j è÷ú( QŮۡt®¹ËÚ=“…ñÔÈÛ ÷\E lÒ6íäãrܘӷK˜œs‡¾£–m;«'ëS‚Äåø( QP!Zt…*ªTnøëé/Wêw¹î(ÏäI ' ôt}…¨dÖZ'굡;0HôúáôòQ¢ BÐ[º@ ‚ú4¨´ú©¤_áÜÊØíŒƒî‚“Ë‰Q ˶ÍÕfnÎb=”ün!ÜÌ}…¨l×R-æP7Qòi\œÅ0A$h‹H DjXiÿâY“à#®ôÐ+rAŠIÍ2`-èÈØ7tEWñ2àÃ(†eÛVåv:̬ÒWŽ{iDʃP—§APžAyZªÊÓ (OƒÊX7G50L¼U·E!*¶mý˜ž¸'JŽቻ£VL;ú^åŠÎmVùS ½s'F1,›¶7Á%؇°ï¶W©s´·žU±¥5_– ±ñaÂÌGQˆJfmc¹±ž~¨ÒÖÜf‚Dÿ 6†¢•ÍšŸe ‰íCE!ª˜u¯ÆZcbø—7'F1¬Øv_iv®ŠLqaᲘ1Q$\ŰbÛýMRçjº-ÏÎ鋪¶µZ ´‰60HÌLá¥ÀEQˆ‚ QfJW¨RP¡Jå†ßšYm-̘ àYíÃ(†Ûšéi-ÁÛäoµt§§£Æms©l{µ7™Óh‰’ïN>Œb˜ Róã‘&ˆ´zÛóœ»'Ú|q·†áœ ¢TLrõ -$ŸÁÃHE!*™µMX`* “ç%…NŒbX¶m¾s9¶“QrCÂ|“£ÆMóeàòI#¦%»H0±èÄxƒ±lÚ¨ØëôrâàôôQ¢°B­Ð +Ô(¬ÐZÔÕRÖ%ÎGa…æ%n+›‘5·ø0âô‚›‘ ¢TLºo ¯{Uk¡ú£dGº÷NŒb˜ Ì/‹H DjXnÿcïgàyU¢äžW91ŠaÅ´2²ÀÀÂË͈k6ÞV<E $yª<BòT(·øu]ò+§È\ç’(yû‚N‘£&ˆóË"RÑ&ˆ´º—NLiu/ñR’i‚mö]У ‚m.ŒbX¶íyèÇ(ÏIˆñà˜Ø’pñvbÃ*Û”¡ ]¿„ɇCÐ÷sbÊm‡rˆ›dW ?¡’(ùÇ âÄ(†Ó¶«ô¶vê;0J*p€ÇÒ.ˆ"”ºK—§APžAyh‹×õ©¨RyTÍúf-¦Ê˜‰àõ͇Q +¶=ï3ûëÇq)¿¶¢äóq®}w/%oKxéðaÊi÷–ëÌVc?ì)Æ’7˜aôQ¢ŠYõRÍ`Âä zINŒbX¶í9*–= x`–1Ñ'ƒfNŒbX±íR¼¤f^­Á~bŰlÛó¥Z§OðÁ”ˆ :Wçr\Ÿì\•GË`Ò+Q¶s›QrƒÀ\ž£–MÛ«-Ã|ìž(¹Óà–áÄ(† "5OZ©a‚H«ßÎ0ëæëÄ‘ÖÍ÷<”o£‡²ÖámÔEQˆ*v­ÊœÁØUÒúZMîÐ2â4ÃK¢„ä!ÇQ•§BHž •oü0¡+q=_Átz רÄ#p¸'JtÙáp÷Q¢˜]γìkZ•l/ì²kª²½jjy`”ìæÃÜ·£–M›'ÅAÂÃj}ª?|‘ϵ?%-¾%aò؇‹£–m;nÌxš5pL\î±m>ŒbXe[íØjÙÞaò,…©M'F1,ÛvÝ©Mg6䳊¯Ý½ ¯ %/þxMðaÑZ…‹ RÑÖz†™WW&ˆ´­®óŸqlÖÛ1|…‰C¬ nŒbX±íèoŠ …[(yã9\7F1,›6U¦Ù’ÓÃql˜‹¢•ÍZÎê8ÆDÏ/Ö8¬Zºr`˜¼ƒ£–m[Gåôs}ç‡~±gÏ·Qæ¯0ñ×@šßQ ˶m¦ù1»Íå5}°ã®¿p¹­ì)Ûpm“E‚MÃQ K¶MóÉ»"¢¶(Ï(`¹PrûƒpÙQ ˦í§2Hàz7=)c&eà˜8o@ôëÆ(†eÛÎfh®]Æ®ûÕÞ!y5k‚­æ±`ò¢ ý'F1,Ù6÷àòí¥Ÿ°¹_* g[¢ä^ƒ³Í‰Q DjG‚H DÚ$^˜uÝrb‚Hëº5×~$˜kÐLÐw=@åÅÐôQ¢ Bp1I¨APŸåVŸµ€¯Û¥ƒBwéócŠ+—ÆŒ‰¿—F'F1¬²írgT>ص*Û5œ-ˤ}¬® “·4¸81ŠaÙ¶¹Ù®57w`˜ÜÐ_ubòm˽š&éÀ ñ.">ŠBT6k”#Q.GÕæ%5Qr¢·‡£&ˆþ„E¤† "5,·¿–ã€îô:j_s‡ÓzµjZŒÚV—ãõÉT;ÜmÕ¾¯×Õ„É¿×U'F1,Ù¶ÏJQȉ’á@vbòi˪ùVã½=ñÕ¦ÍÀ1ÑÁMâÃ(†Ûîº-yÌÚ!8l’Œ‰~$l'F1,Ùv®Ú¡œ7×z·¤ó×®§Œý6pL\ï`K:1Ša·mËŸùy¿ÉˆÝ¶­¿Ÿ6¿Ï›´º~ƹÉéº1ŠaX$z`Õ RŰHZRJª+-©aBKjØ=J¶?ã±-nÛ &¿tlscÃ’mÓ¹Ÿ,Ù6]£o£Äyº£ÄŸF1 ‹D~¹A¤Ša‘*&ˆcÒ"RÑ–FɼÖ3À>[ÁšÉhÝ”ŸÈê7ýÏ<¾ç’sSWë¥(D%ÃÎi›ÜC0AâQìdE!*›µÏUbYÝÆ3vÜß=16âÀ±EhEØÍ>ŠBT6ìWû²;0JZ>á®à‚(Ay ¯tyåin=à•šO£pûiTÍ,ÑüÈc«Bg׉Q K¶]cµ°Y7¯‰¦paóQ¢ŠÂó;ýSZؾGÍsSfäÆ(†a‘({c©bX¤Še‘Ët—hÜ#D*H˜¿å'{éÃ(†a‘âçû"U ‹T1¡%¥C{¥%5LhI Ë"×mëí0ßZ£ù[³‰ˆ"”F‡.Oƒ < ­¦˜¡ù4 ·ŸFA…(îÕªT¨RyGZÏÙžÛ%&˜|qA <0štyåi”‡zJ×§RP JåQ±+Ÿ$„åÕ<ÿoÌ]¹ Š@Pè+]žAy塞Òõ©¨R÷¨ØÿŒó2»Ý… [¤µìÄnŒbXyÞØ]›ÐgßÒØù[¼u.ŠBTnýkßí9‡QrÉ#ˆÜÅ0nš-êHÔ4ÖÃÑèLùhŽNŒbX¶m¾'sŽâ„õ~™æ¢(DeÃwè– ùÔnNˆ"P¶i.g"¦@☉/E!ª˜U%+lgíýd¸Üø( QP¡ø ±®B•‚ U*7üvw—-›:0j|"îuB <Û¡ƒ‚òlGhwgk2tŸÚ€ÞÅë’¢TlRn;àÑw6^ž–Ê(Ø~u‡: %_õ²£VL»{ 50Jþ1æ¹1ŠaÙ´kïn]¸ÓHÜNpŸ¹( QŬªÇlayÄŸÂýå¢(D%³æñ®Ù0ž: “Âep2â¥(DÔ%€ˆ¹Pò˜!³£–M›*çP=%ß'…î¡£&ˆ´vº1A¤ÕÏf˜­ŒÈ "m¥D¿ØKù¢ÄyêÏš—ÜÍœÅ0A¤í(Æ "­n쾜DZ}¹ùømtgì’ YÚvaðâ£(DA…!!}TZý~UÁ–ñµ}S².ˆ"”¢t]žAyåŽÒåi”§AiH,Ó3Ž|ÛyÂä3àvîÄ(†eÛ–såÛ–:h+7+¸\àæpQ¢ B0xuõiPiõjC°ÕVHì`¸Þú( QŬs ¤:–mši„eßN{Ô70Jê/–º Š@Pº< ‚ò4ʳ•;:!(ÏVêø iOgCßÙOe[€¾gÂä…úžNŒbX¶í¼9m§£”/åò 'F1¬˜vö)Ü ×½Úø²`K³ÔÚ~`¸wáñá¢(DA…`ÒjÔ§A¥Õ«”*hu˜RMØ0¥ê£(DA… -tõiPjõul¼d/€NMzŽÎé·®£òY¸d¯SÿKÁ0 • ±·`ÊGQˆ‚ Aé5êÓ ÜêËÚ7 :®‰’Ÿ2ƒž«£&ˆƒÞ"RÑ–Ûݧ23µò—QÒ\õ9.ˆ"”§Õ÷AyåY+ HüdLWŸJA*•GÅÖ¸¯`0ÁÍuÝ´/=`l¯rqZÀ;0H¬#„¹¢U̪üds]O¢”çr?Ù‰Q DjUœ‚H DZkFf8œ˜ Òq¬ÇXnªYs¢ Ç#LŠú( QŬûìËX‚8pLZîa)’¢• {Šž])˜‰m“>ŠBT6몆¡õä A¢ï†‡¡‹¢•ÌÚFå n-‰’ý=¸·81Ša‚H-¤Dj˜ ÒÀmÓÙÝÙa!Aâ†)E!*›5OÝE†è  Æè>ŠBT6k©mŠ ½¸ø( QP!ru…*ªTiøµ__C·mé¦$Ž ˜ðQ¢²Yk“+2/Úé|éÅÌ‹¶£Vl;Yém«VQs"6QÊ7Ï_먣&ˆûŠE¤† "5,·ÿ^-÷æ”l¢äÁ ¾£&ˆ-b©a‚H +í_½[gÿJÎEÀèÏGQˆÊvU,a=/M¸WÀXÂGQˆªÌê/Wxcz(yãɇQ D‚l©a‚H Ëí¯~¤/Å&oix)öaÃ’mû2WYn-h%yJ0«à‚(Ay`Ðåi”§APž–Éò4ÊÓ <$¶iï.70(H”òIz81Ša‚H°XDj˜ RÃJû×»3 àÞ·oר2÷óèמÀ—D)Næ'.NŒbX6íªL³%%HÜ¡±a.ŠBT2ë˜×G§ }xrê£(DA…h ê U *T©Üðϧäl‡V£äÛ¶0ŒvbÊi÷#鯳îcëkî4F1,Ûö¬Â¶ó–QrC‰Q +¦­%0°:G Ûº>ŠBT6ë³àÛO\FÉm9'F1Œ›æ cêoÒx?”¼mâ!ìÃ(†Óš•ÇZ ”±ïq(z¯<>ŒbX¶íª9-99´”òmlžfñQ¢Š]W#„áp¢äÃa'F1,™vŽséI¿DÉ?“~NŒbX6mÒêÙ ÿ’1q×…þ‹£Vl»'¨Óí9§*_æ'Üg$º·p›ñQ¢ B´]è U *T©ÒðÊ—Óa²0Qr/Ãd¡£–M›—)àÊë8ü‰s­<@kþ)A¢=@E!ª2K)ÆkUÂÄ}¯U>Œb·ÍyÒy®×H‚œ[å:šOø%ç  ëèÄ(† "­U{NLi#fu˜ Òꄟû¥¸У˘¸YCΉQ ˶÷çàq;YÆ“Õc¢Hì ú0ŠaŶUÙ¢0vžÊ(Á»vÂD‘x×öaÊm×Ôݦðâú|ÈÄë"Ô‰i &¦$žÊÀÄ´¢‚l”.Pƒ > *­Þ,rÖ‚šŒ‰»<^ä|Å0n›óð÷›EÎZã’1Q$\äœŰlÛt*Ý W«Œ‰¿W+'F1,Û¶,Š/·ùk[ª«if&aòÉ"taœŰlÛ~cƳÖcâvmóaÊmwvÃv\50J$0EêÄ(†eÓ®¦Û¬çøç î6F1¬Øvœî¬ññgœ®É¼¹ *`óõR¢²YËÖOù€TE¡d ä*ÜÅ0nš'Çñ¡Öf5ÖV¬‚­J‡€UkˆñP¾P²F°†¸1Ša‚H0´,"5L©a‚HÛjìÆ‘¶Õø{V,ql{°ï’…ÞålsaòmÛ}òjKTŒ’·5KwcÊiÕŽa × %o½xÏðaÑ`I°ˆÔ0A¤†åößµãáõÑý`g•»×Š3‰ë8Þ]…(¨M4]¡JA…*•þzJ%=ÇÞÇŸéyÇéL“V¶ÔŒŽcâ2×`?1ŒbX¶m¾“«®tÅ/¶*5é±C¹íWþi©V~ã!j¡dg®üNŒb˜ R+•Dj˜ ÒV˜õ¬{¨DZ÷Ði•‘ 21¿Ø¡\¥‚SÂd'zLNŒbX¶í99‘.0­0q) S7F1¬Ø¶*™ù¬0ñ×@æÓQ ˶M`©e†É»"È©¸1ŠaÙ¶çÄEî7Õ­0±%AV×Q K¶}öÒÍfú`ó]9â æ¥Y¹´`»`×XK槼Źu$Lþ5¸u81ŠaÙ¶íR|'Ü$Ï·VÉàcâ¯ÁiêÄ(†%Û–qÜì)ÂQ²ƒ ƒ='F1,›6+Ÿ$‚AQ¢äI £"'F1¬˜¦eV`°,ÍÜÖ|ׂݵ*ÎÙ¶w·côcâlÃcˇQ +¶Í‘y4+¹ “w`èƒ:1ŠaÙ¶sV†$tï–sÛžÓ:6cËš¤Ê˜¸qñåÄ(†Û&¥%¡S²Ö_`3ç€%/ p¹sbÑڑ” RÑÖ0†Y7'&ˆ´nëÑì¶Jú‚ÉkôîœŰb›²’@h=W%Å(`ÚÇ`ûoOfÒ9¶&ïÀpl91ŠaÙ¶«±M›Ü;•œÄöy¬­û½owûQâÈ‚»†¢Uìz‚=ߦ},M—Y6&ÿŽNŒbX¶í¹æè\EÎsQâ(ÐçŸq9¯éÝ’óøgÜŸ~Û¤øº?K¦òcðÈYòÑú"U ‹T1¡%¥<¡Ò’&´¤†ýó`Ó6žÛ&\ÚæÄ(†%ÛægEvbË\7‰¹%?qÛʽdØ’NŒbX¹Ž§RŽö=õ\ê‹Å~Œb‰j "U ‹T1A$\‘&ˆÔ°,ò<¿ öã;qéØs©k?F1 ‹D¶Dª©bIäö¼k~O7!±,Õq–¢å×_—§APžáÖÃÐ|…ÛO£ B”ÑÕªT¨RYá“[f)¾ûzËZ… ~Œb‰¼ƒHÃ"ULhI)ç´¤† -©aÿdìÚ‹iÆ.iË…‹©£–l۟ã_±c]c2c‹´"ÀîvbÊÈý»&ü6Î:ƒ¼e«â^?F1 ‹DcÒ RŰHˣ䬗ÙUʘœCΉQ ˶]õ¢`v^vÿên¸(81Ša‚HäYDj˜ RÃRã\åÍaWÂîd˜5ã£(De…ó} q’õ‹}“Lk‘èÃ(†åÖßš©m Õ2&¹Ôpfû( QŰzg3;2 “ó"pgsbòÈ;UºJæ{â¸|sžW‘è(AyÒhWžAy”GƱUGfw"aâ"€†‹¢• ;§rÍ=òÝz¥ù( QÙ¬¹˜eŽæÛÃâç±_Fy Š@Ù¤¥q»­̹NS 68ÓË×¶U&cOLmœ^Þ_ë5œÿNŒb˜ t€E¤† "5,wÀSïjÜÒ†ÝÓ Ì2èvø( QŰé¸êçUsêäcn¼¸( QX¡5Ó裰BójÚPæ=ÂEa…æ=â~pÕ|?”òíO{û( QÉ®kzfŠÉ÷õ^à©蜻 Š@Pƒº< ‚ò4ʳž”¹ (Ïz]óúõz¯M0ê[µ|+7¢ÏEQˆÊƒv®&£šduI{œŒ>ŠBT¶kk"k8”0Ñ™‡®†¢U ›¯€rSuJÍJì®ás†×µn½+aʧÞùæåÄ(†Ý¶MƱiI-u6pl•6ßscòmÏõ+O„ô¡ª Ïvb›™Y’:Ú QBòÀV©ªÓ$Ncªæ>¼ÎBI½R°Nˆ"”Ö ]žAyå¡èN×§RP J•Qq?èàÚ'?زÌN§°@âÕ6àvy) QÙ¬µÙ%µTCÆÎfßҢ‚=_9w’ëXºä6 %M/ÚtB <[•†‚òl§á ¿õÖÕ§RP J¥Q1Mûd÷ãF-B_@à Q‚òÀ2£ËÓ (Oƒ <0uyåiPsµHÛB㉾\¤}…¨lÖ2UWtµ„äÀ(iUS'DÊ}¥ËÓ (Oƒpë°ØÐ|…ÛO£ò¨xw4ùăD/zì>ŠBTVxÞÑþvJØüž·áæ"чQ ËmVmo–¥¼*þj}F1L©¹v‚H DZÉynüOk$LyúœÛæÄ(†eÛ–;@1fÕŽI«0H5z) QÙ°mqLµQ’ŸWD(µo³=%§ aœìÄ(†eÓŽ¹ºà­å]FIC$†E (ŒA]žAyå¡á¤ëS)(P¥Ê¨¨¼5-” ÑïÅÃÝEQˆJf-cõ}mk8” ÑÃñ¢•ÍšæÍ‘ß8&Í-˜ƒ÷Q¢Šak¿9`¬—(ùÕì91ŠaÜ4_¸ÌÕ¶¦$ú±x»( QÙ¬EyŠf¯¥|§¯œŰlÚZ™fÍË%HØ0E!*›µWI[@ÄÏKE! *DQW¨RP¡J•†¯Vm~ ¯.ŠBT(~м«P¥ B•Ê .Ý;L0%Hœ\0Áä£(D³î¬sûZÇñ²‡£¤lŒ^]E (t±.Oƒ < ‚ò´Œ”§APžå!1+ßóÙšD)_ãäÙ'F1¬˜¶ïØzݪ%CMùŒ’]á¢áÄ(† "­©}'&ˆ´®¾ ÓÎT‘&ˆÔ°Ïcñ¶‰[Œ|…¨b–ö•;˜yØÏj×4—Š$Jž^x×ôaÑZ RÑÖz=†™ý&ˆ4ûgå[Ž$nœÐöQ¢ŠY•[e®ÖI”<±[åÃ(† "µ°L©a‚HkÈ0³ƒêÑVõO —p´û( QÙ¬©ÚÍ9±D)Ÿ„äû £&ˆSÆ"RÑVÚÿÉŠ»Î Žúø8šðø#AbWÃãE! *sL¨APŸ•V¯Ü{-—>0Hì`è=û( QÙ¬µZÙÌéÈDÉ“¯m>Œb˜ R ÿ‘&ˆ´›Gªcò§û®$Z w<avæg޳ ¤Í£äÁäC?Ü>ŒbX±mWÜè²'LN@—݉Q ˶]ãÖ· ºd “ ºdNŒbX±í™8ëw¾ ž–gì»à‰_Ïæ§åNŒbX²íµºÃ~˘Ø$°ßœŰbÛÒÏëÃdo¢ä4Ìö:1ŠaÜ4_–øœª¢GsZ.Qòž] 'F1L ƱE¤† "5,·ÿ¢}áO¶Eûæ<žl>ŒbX¶m­Rªš§;0Hœ¡Ð÷Q¢²Y[u^f ^BHLôàÄEQˆ‚ Ñ Ÿ®P¥ B•Ê ÔGØÆ£ñ±ÀÌ„îËë˜rL”¬æÅ0nš/WyÏÕGŸxçÚmGxÄ—(Ù2xÄçÄ(†eÓÎÆÃÕ<¥‚Í—ó<•4¼œžZY'^O}Å0A$hG‹H DjXjÿëÙà}Žk®Î-@§ÁE$Aâ×E! *D ¸®P¥ B•Ê ¿žÊ͸îdLŒ+àºãÄ(†U¶)Ë•Ð$—²[à_Ûî ØƒFÉ?SàNŒbX6íh‰µþ$c¢?Œ‰£–m;ïBÛ¡ÌÀ(¹!ì'†Q »M›ÿŒãýÉBWbãƒM#¨¥-†É©=lscòmsãŠh¹Õaò¯8ÒQ +¶Õß²AK9X*L\\Á äÆ(†Û¥.c[Ó$¶sÉ —Ü$>ŒbX±mv'~©{)1ž€ » ¬wnŒbX±íPv7ŒM“ØN®*LìÜ$>Œb·ÍuÞòÁ®;IjK< Œ’®@nÄQ K¦¥"qhÁ `Ò¾} ×E!ªØÕ¿–r¿£úõR¢ B4u…*ªTnøùè; –/”¼VXÞQ +¦J ÷YÂÄ9†;͇Q ˶mm¶Ó’ ×al›£–mÛ÷þò ’…’T­pcòiGµ3“ö…’3pgrbÑک« RѶ3ÞfÝ㘠ҼÇ?q1¦.މ+ ^“}ŰbÛyF–òëÚÝÙ‘ùÏ<Šo [2câ¯Á–tbòmëÞ_Jà*™(yrÃUÒ‰Q Dj§r‚H DÚÎ_˜u¿qb‚Hë~3¯Ï¼g)H}V˜èăԧ£–mÛîƒbgõ™mJ¢æ+æçXÚ¹á$L>„Ž£–l[ÆCIáÀ0{™–-ê-ÓsÂìË}.óÈ*.OæÍ˜°8&šShNŒbX±í\>èòœ+9×»„Éc ®wNŒbXe[?t€QQ¢ä†„Q‘£–M{҃ƬâÀ1ql5ØO £–mÛ›ÅU 9 ¶Ÿ‘åî‡ vÀ:Ÿ}‡ Ž­DɦÁ±åÄ(† "µ«'‚H DÚ.º¼0ë,ub‚Hë,]—Q ‹°m ç ¶Í‡Q +¶5‡æÍì.Hp.åëzGŠÎ°hÝ'e/…ÎäúÄ¥Æpvà˜øk0RtbÃ’mÛØ¬®¶bÖ‚Ét]ŰlÛ4*AÊÛ3œKPÂä¡ §©£Vl[•p z“Û~Í­{;šEÁVüV0¹»¡7éÄ(†%ÛöyTÜØû<)n ÆÖI™Ý;&m1‡‹Â±Ê¢g@Âä–„3À‰Q K¶ã®\ÓƒkÉy<•g”,Æ}R~ ´äögÚ/Å ý†Áëx‡Á?1Œb‰ê‘ "U ‹T1A$˜o‘&ˆÔ°$r¾¶ê 7ô­e[¿9-KtA <°êò4ÊÓ Üz ö24ŸFáöÓ(¨et…*ªÔ?µ\£’åƒw»œo“6НC½Îu.ØQ Ã"gÉëï‹T1,RÅ„–SÓÒ’&´¤†¥Q²®õ(1/o½¸;1Šaɶí©(vö[ÂæCra¿91ŠaYäã.³Ñ|½þu©3ÖnŒb‰:À RŰHZRªºUZRÄ–Ô° VOS««”1É9€³ÔGQˆÊ çû¶ÇwøÒ¹öºÖ¡£†E¢EÒ RŰHËCdÙ7»—00JN¨@GƉQ ˦­•iV2Aߨ]íÆ¹( Qɬ}|"Iߪš±EòXá‚åÄ(†eÛ¦ªËÌ^u¢ä ì4'F1Ližœ˜ Ò:úf×NLi×û<®ß§`k`OÔ%…Cp ÷Q¢²Âå.”X¥9óÍì­[}¸à¥(Da…RP£°BÊcc›•´6tCöcü†Ø×&l1ßj“õ› ?Ša.ŠBT6ìx s¹W‰ú¶x­ú.ˆ"”ZB—§APžAyÖd¨ ‚ò4¨ ‰:¾5‡üûY»æ8)aòbÝF1,Ûvÿò—êäMõq†Ý»ø1Ø >ŠBT6ìiDŸïphçYÐuðQ¢²]s3ò­iÃŒ‰^)Ìì81ŠaÙ¶¥ònÔèoh©{ÛC•ïлñQ¢°B0¡ 5 +Ô¨Òò§?ˆ;êØÔzü’ YÊæàæ¢(DA…`;×jÔ§A¥ÕŸw{lÞáÀ°gWÝX'F1L ¢E¤† "5,wÀÞä.´ŠBT1¬ÞùÍ#QûúîgE!*+<Ÿ—ZNi•š¿XSìÆ(†åÆ¿î§Q@Âä’ 81Ša·mûŸq¼×{c.&cózس‰£¤THw:!Š@Pž­ Ê Ay¶c{¡µM×§RP J•QQOc$Za·Ï~ L7F1,Û¶4EK [¥i ²–nŒbX¶m»ï“;|ó‰þ%pν…¨bÖóvŒm¹8&5Ø’¼…¨lØ~—=†‰‹68¼ðR¢²aG5m1lD/DE!ª˜u?^jËö Œ’Ÿ>ñ‘£ÆMóÄUûŸiªúYkÅAâ ‡ýì£(DA…h×ÔªT¨R¹áç*N·Hl 8}…(¨5†®P¥ B•* ¿Yäô:¦uß³rZëÇ´ÄèÀ(Éi™['DÊ‹¨.Oƒ < ‚òиÐõ©¨ReTܶŒàÀ(y‚,‚£–M;ïs"[Ve`”4 AÚÇ Q‚ò@wéò4ÊÓ Üz`©64ŸFáöÓ¨4*æéLÆäãÀ±;вÕ/¹1ŠaÙ¶y Ì“ùyëÁ濌R>GÈ'F1L :Û"RÑ–ÛmF¤-MZa›t*ƒG¤£Æm3¦€3¶ï³=Õ40J.Ô„Ù0'F1,›vT¦YÓ| #*l˜‹¢•ÌZž±oËÆ Œ’W,8?ŰbZýn°šE8&íï0é£(DeÃÖ± ïµDÓÀ¨Iø)˜ sA <ÛÙ‘‚òlçF¿ÐáHÆŒ’ºæ‹]E lÔvO,[Þa`”¼€âÉïÃ(†eÓö­¿ÁÜC¢äƒÉ'F1,›vNý„L'J 0_ì‚(Ay`Rêò4ÊÓ ( ']ŸJA*•GÅu'émi„Qò„™'F1,™¶Ž•iÖN‚Dwæ£(D³"^Í:߯ì:Ý×u©–zs J­¾Ï›Ü¦ÇÀ(é§`ÆQ‚òÀ2¨ËÓ (Oƒ <-ïåi”§AeHÔÚÐÀ(y‡„ކ£&ˆ´ô91A¤Õcc˜vÂ*ˆÔ0A¤†•Ar®öŒÖÀ(i6Ä› ¢åîÒåi”§APž–ã„ò4ÊÓ <$¦H&p»WŸÌ-Hð”.Q_¨ÄÒù( QÅ®]ièçnKåçZËh$ºiÐôQ¢ŠY‘¨ü¡äÛ´0(÷Q¢²]®£éQâ˜Çv¹( Q•]J‡ÁP2ar+ÂPÒ‰Q ˶mw×™æÜŽH©D¢ÄXwµ‹¢•íºîæðeG·ë(á¤l O³a0ä£(D%³ö:— Ìe'H a.ÛGQˆ‚ Aoé5êÓ Òê»’¸‚ŽrÂäùe'F1,Ûö¼ì `$^"ú( QŬ¥Ÿ ŽJ¢äEz*NŒb˜ lê‘&ˆÔ°ªýK•¦z 90JÞúàA©£VLó3UÔì?{ØÓ—|nß>ߟ#rE— 'Œß|…¨lÖÒ¯MÆcêĆÇCÊEQˆ*fõo(ãÍåÄï-.ŠBT¡.Pƒ > *­¾+ózçûrôÛz–‰’—zèZ:1Ša‚HÐ"‘&ˆÔ°Òþ÷mgPµ_ ~ ’ÇKw:UÇT9UÖ´{‚ÄÅ:U>ŠBT1«ÚV¬YÁ‰?·E!*›5OÝ݆, w0³ø( QŬ¥ïq@ÇíXî÷æéÄcëîÁ"A¢]p‹ðQ¢²Y{54Ìál¢äõF1L VD‹H DjXiO!ÒÐRòí˜ÔòQ¢²]ªa0y¨¿ó—NŒbX¶í\«g­ÌaÕq)å x y(yðã5ćQ Dj· RÑVWç¸åªÉçü¼öå yÎ:’^Œä$ŽÉù( QP!ØuõiPiõÆ ¶Î±„Éë¾NŒbX¶m=”»³p«È˜èîÀ½Â‰Q ˶Wßwá\¢ä qÎ91ŠaÉ´TÒoJî-$ÿŒ”|…(f–/¼º¦©ß0¾J”¬XNŒb7͘]S•Ä·æð$–‡Á츢¢Ü¸®P¥ B•Ê ßÜT“þÇÄ5[æÃ(†eÛÖKqàjš1ñ×àjêÄ(†eÛ6íR€Ué*­ s`8öñ"ì¢(DA…hìë U *T©ÒðÏc¾/n`¸M@/ÓGQˆ*fUyB­ßß³¥óFÉ òµnŒbX6mQªÚ@‚¡Pòƒ£–MÛ.wèþ¡ö§€Ã“>~—]éòc¢ÛˆÇˆ£Vl[•UKÀžƒ_O6úø3MKÚNG*L\‘aK:1ŠaÅ6íN·Œ‰ý§›£Vl»”Wí0¦–>à&I˜Ø¸I|Å0n›+3úÁ6åàJ>Å>¡£–M;wå*/Ʈի -$+Ѥ—¢•ÌšÇQ)°^ä/6õ›C…’5‚hÈQ ˦5•u¶ü\¡äZ!8ôÅ0A$pµ,"5L©a‚Hë"âÄ‘ÖEd^v功`ۮܻlsaÃ*Ûú¡ˆ¢ %ï½ ŠrcòiO®Ó˜"8&6$ìÝŰlÛ±v—-¸A5_ÀDëÜ |…(¬P;íà 5 +´,rʺÉû(¬Ð¼ÉŸSlàÝú¡äûµ£&ˆÔ@‘&ˆ´·¾0³ßãÑV¿gw%}×ýŒ‰K*\÷ŰbÛ¡¤06ݨ3ÂXžò&gd¾<ÛµÓ_J˜\n} 'F1¬²MɨàÁ•0±%ñàòaòmÛ}ÈàŒ¼–íRâÐEæË>+•’xv? 4cÞmà˜è‹À”–£Vl»;À¹o'LÊpãvbòmÏqsÇI˜ükpÇqbÃ’më“®3fùމ£¤Á~bŰlÛÜ,æZ„^°Cyþcë¡„ Ûµg``¤±îÍ|Ó<ù‚)×¢0u4@ó ¶.!¹m‡²uÃ-`Û›Þ¶•LNέۉQ ˶Ϯè[”÷±$¶ ¡‚É"á¢ìÄ(†Ûe3…ÞLÆÄ–„ÞŒ£–m›šùf«Ä)˜Ü’pÃqbòm³–Ykù9=•¾–<÷C¹ çÛ5*6pH^Ó³ÞÙZä¿}±«ÄÿÓ¿þûÿáÿö?ü¿ÿøþoÿÇþëçûüïÿòÿKó¯çZþuN!Zþqþ¶ˆåßëúïÿmù×Å{2ý믉£±AG‡ñ/ ˆeù×åSô¦¶þ6È|m<ÒŽkO‡ño‡g¬>JŒcuY=Væƒ/Ó48ÝžËÝ-ÿøúv»q\—ÑÔz.]³ÀÓ³gæoϬÙú—šgÇ:69Ú­dæLÿzõ,c%3fú×§ga/IûJfÕýŒëJ¶yÆ{ÿüçßûÿÿ©Ž<áßÂöþ-j®¶cÿîˆ] loþ-ÜY$ h}–lC«sýo¿Žè2þYÖSI«}K¾¶§äë'†Q Ã"Q9­A¤Ša‘*&ˆQŽE¤† "5,‹¼ƒÓ´ýpfû2õ“¹N† Òwª6AÚ4¶8ÔNƒ`Ëi’‡Ê‹Ty*„ä©P–wÝ¡]Ùÿ÷ýÇÿüÏ›'ØÛms•¹ pä’ÎõØV·´:½¹2÷œÏ¹í«Ïõ&k781ŠaIä6Ÿ[ëPìöVùj?F1,õÀ¶m¶¶0ã§´ `NŒbX6n¿”"G¸·lÇýÎôuRÝĶU9-?F1 ‹Dû¦A¤Ša‘*–:`×þMG¸Ê&J>ê„Û€£–M›*Ó¬»o‚r¬o3ÌEQˆ*f5_2¶ºcS¥ÐgtbòmÇ}âœi»¤UÎ4'F1,ÛvVÃÑìn%J>dÃÒ‡Q DZ=j'&ˆ4Ïì3¯Y>L©a•ȳJ‡ì{ ±íÕA”£†EÎÒ©K_¤Ša‘*&´$X&--©aBKjXY´¯ÒãµüT¾—rE!*ÆÕ]Owh œ’7ùâ†LÒv,óÁ½ppd¸­7íÄ(†e‘ë:µ©>xB¹Õ½£†E¢=Þ RŰHË"·soNq8u|©ïñQ4º( Qi†ûÆŽŽLÞã±ßYçjš°’6­¦NŒbX±í¬.™š³ ›ògÉTø( QP¡9¥å£ B•ÊMnìðÂäî$L®ƒ>™£Vl«ƒ5²öÔeHu<(qbÑ`¦YDj˜ RÊȫº÷ †ä·Ûö‘E! *D“FW¨RP¡Já6¼b¨b¸U мÝF·Hƒ"u,-çø[NæöÍ2V6'ƒÿè£(Dö¶ÌÅ´:žu–Ízþ– Y {à²ï£(DA… uõiPnõeRêÃaXv®›éœ„%$LñZØI‚¢šÓ|Th>H;7åÓç0ÒO”48` ï‚(Ay`%Ôåi”§APž–\ò4ʳ¦qÎýù¾Ô,9ÍßKûwîïE £†E¢€Ñ RŰHZì]––Ô0¡%5,¯G#iÉõ‚Ý7ËQË;1ôy‹?@MTµÇZ"T'F1 ŠŒiŒIT©Ôø×sÇÌy²t-õs:ÖŒf¢¤ý¦[]E (,Vº< ‚ò4·H+šO£pûiT[Sólr{4I± ô{}…¨bVÀ4Ÿ´\Û8Ù“¬£aäÂ,° ¢å.Öåi”§APX–tyåiP÷SN‡(c‹4¡¯áÄ(†eÛö»Ëy6“0ù<žÍ81ŠaŶÊE1$&ªÊnX¶'F1,›vô?ß Ãˆ‰ë( s|…¨bVµ™S0‰’_&Á›‘£&ˆÔœzA¤† "­!ÄõT,ùr*‰ÒÜl–TqbàȘƘD•Ê6 ýðÄ5c¢×O\ŰlÛUo3æÓõŒ]Röo3>ŒbØmÛôgœšpݶjL¾î 7F1,Û¶Ô®1ÍR09§\7F1¬ØöúÖ†~öT°ºžB?|òsä²ykµ–«ÙçQš?Ò¬“nŒbX1­ê9ãÉf¡äÃíø|AØèX ËïØf€‹¢÷·×GVš±~ßH­;ÈØÞÿ¤:pt $PG÷—z¾{k¢(D³N~Ö¨Ç&«}O=8ñsäkP§Ê :U.wÃùºŒ¤žÐªxÉê½¢åiUPžAyTÚ¼YÀn j{*l•bCP€äÆ(†e‘×xWw¯Ò^q}ׯï0¼ŠHF1L)½¦ˆÔ0A¤†åQr—Ü8]ñij2u¶·_ìõ]8‹C‘°úœÎâ z9 r‚NcÙ™Ÿtš4Æ™=k/'èT¹¬sMmwæ${9 ryX¯SqMl¹ø‰‰;Œ÷R¢ŠY·ë ÷>˜é0˜D S] Wgû8 rƒœ`Ÿì:õíS9Á>•ËÝ·Wƒ¸Bx0?PÕç–Áì¢(D³NªX×élß¿2EH UÀQ´—¢•̚Ǫ“µ&$f$a'û( QP!ºå¦+T)¨P¥JÃÏ‹ÃKV 4¹’NŒb˜ ŒE‹H DjX逃¼"½‰K õ|…(¨0$0¤Oƒr«OãÉ­ÎÓ]jg«H%ÂfüŰlÚ<^gsà\ñ6->±£–[îþöF&‰«K+-‘‰—£ —í[µÜ,ô­æ:Ÿ®þØÀ(Ù¡ÆmâÃ(†A‘hœèU JT©Üø{+ØäË%J®†Îœ£&ˆÔüTA¤† "­^1ÃÀÖa©a‚H +ƒ¤¿ßÀc’7x â£(D³^‡'¶)sú\æ£ò°´dõÀ ñ§°ã¢(De³ÎÆs·&&bŸØEQˆ*†-gÄ‘>o·ÇXù4pìÛŒèî6öÍ|ŰbÛyõgÄ>ÎD9l͉Û\<|…(¨EººB•‚ Uª4ü÷4ÂX¶:0ªxcjÉ“¢”šš f«¬°oc ++p‚91ŠaÜ6g•Ô; ¦Å ×EP¸ç¥(DeÃæ&^Z­ô2óT»!Kö@ò¸‚Y2E! +[‹A¡Fa…Uþþ’Ó[–qě˶®—;aòMEèr;1ŠaŶ“íš–Ê—DU+¥ðʼnQ ƒ"aå£.RÇ HËí¿Ÿýóè°'JžÙÐcwbÑ`r[Dj˜ RÃrûÿ ¦ ô¿—ã™m®ƒŸåP¶'Xc™(Ée.ˆ"”ÖF]žAyå!ŸV×§RP JåQq>î‡)¡60ªJ–Xr~NŒbX1­ýè’mß<«¯¡%o›.ŠBTJNtõiPiõóäK¡iÃL\¯›vL'GA.Ûw5Ÿã½Ë3&FXZé£(D%ÃÖ©é8s!ræª8ÐÒq^Ž‚\¶o®V:ûéFÂ:Í×:/GAîoìSãOÁ>•ì3Ç»ë¬ÙêØ†’C5Mú( QÙ¬¥*™“C v¼¾?d)(sbàÈNPÒ©cP¤Žåö_9eV7$?÷‹‡•‹¢UÌj² ›÷ºj¯²blorXöµõáê\ iíqräŠ}û+¼3Í€Äi>ŸNŽ‚\±¯¾Ûz}DIôµ¾`ÜÃú‰@ <°aèò4ÊÓ (Lk]žAyT ‰þ»%4ÖkUr£pµÚÆgµ²ƒDB>ŠBT6kº"4VP ë¿Á«¼|…(¨P-_ƒ U *T©Üô3÷X ÛúVŸ¡£=në>ŠBV¨yÁX¡Fa…V»¥¬®‘ 5ª(|¢c9~üàìë}€óä(Èý rØ>èìÓ9lŸÎ :ÑâcÑ©r‚N•ËKÉrW„8ϹŸ11°€õ$;û°ÞÂGQˆªÌ*[µ9g™(ùoÖ>Œb˜ R‹™‘&ˆ´FhÛ>ö]u˜}L”ä`Áä£ ¢åF—§APžAyZÂÊÓ (Oƒò8›Xß<'L.ÄÁÃ݇Q +¶=‹oÑ*¡2ömHt·VB91ŠaÙ¶îá •GZaÌèa(À$söñ9Ì6• Œ’–3X#ë‚(Ay %tyåi”‡¼ ]ŸJA*UF…ö½`˜ØÇ“ÿ˜å,*aËf ÷ä(Èeó¦kî¶%¬&H”Ü–°œÀ‰Q ˦ÍÅï5×? C¿×GQˆÂ µë!X¡Fa…Ö«(-e|Vh>ÔH)$L>”€9'F1¬ØVÍhkyP‚Ä$+žÏ.ŠBT6kY«pE)¸Ë&ºm¸Ë|ŰbÛÝ"¶zíQ’ Ê]E (ŒC]žAyå¡O×§RP JåQ±>ðpeÄU¥E,)q'F1 ŠŒiŒIT©Òø¯T›ÉÚª:f0‘çú¬j`è©4ÔOˆ¢¢¬+T)¨P¥rÃïÍö`½ä‘11¥Š·F1,ÛvŒe!ЫN†ÕG –š/GA.›wöò`0û°÷¯Ã샇¡SÌ«šGä¨à)–0ÑuÀṡQ +¶Íî”êÈ)˜³tAŠI;_n,5 Sãm¾‡99 rż*}a¿4”°Î]@œ¾prä⩼¢Så*÷7È öÙÓHNN°ÏžFº^Éq“y×+]m²Î‡Q K¶ã¦$aŽá˜š}Àz],c¢÷'F1¬ØV…&j)ÌÀ¨j?µ¸ýNŒbX1­I iy†‚í\ÍñÜàu&Ø&ÿ̰91ŠaÙ¶õv­åõç䵺­^Ž‚\¶o»Tðº»Ç¾óÌâp$LÝ!ùìqräòN×שr‚N•ûäûÌŽŸ—ì3;~Çy+Ì£¸øÖ²„‡ã$èâ» Š@ŤÝvÁŽwuâ4‡wµ“£ Wì»L¡÷kÎñRñÇ©œÉ¯ß[©Rã‘(¹»Á~bŰdÚ9Ž ïCùÄ9^Kq¢ôz¾srúC/GA.Û7½»¶¸{ ëÜ„þž—£ ÷7È ö‰;¤bŸÊ ö©\é¾Mñh¡ÿvNGÀë;ç±[®)çÜ?`‚g– ª†¥áÌÒGQˆ‚ A¾L¨APŸåV_·r7A­£%o°ÔljQ ˦mM0x0¹681ŠaŶªÛ¬õY ç%î4E!ª2ëêçÍ¡c‘11“  'F1¬Ø¶Ûª³øÒ½KÄ9¦­ë¢ÁC•DÉ?ÏUœÅ0nšïLæ< µ?öÐW6&“ƒæÃ(†eãαÿܬH”¼°Â'F1¬˜¦}~¯ ³šxMðaømÎ:ôóyßËw„üÔ…[W2vUCËZY“ qŠâå¢(D%³®ñÎz‹3fF™ùDÉc¸Á~bŰlÚ4qÿÛ#\“ÂRy@!ÜfjOÔŸÀ=ÆÃP€Úад© Ц2¹©—I)Áby=Ä`p„%&B ì£(De»ÖYIñàVÜÆ’ËÐ¥A¢?9E!ª˜µ)ñÂÛž£&ˆƒÄ"RÑ&ˆ4;>Liv ÎI)al{0qlsaòmWµø›³x‰’ƒ¼üû0Ša‚H0o,"5L©a¥ýÿùÖügw%x ¥6uS°kdF\!Ážá„(!yÈqTå©’§B¹Åߟ;Ò«À2Ö9©n°ŸF1¬²íå¦êÙ™·¬ŠŸŠ{z9ïÀv.[ û¹{Šmõ„ösä°Î5‹A§Îa:'´'êvK{ªœÐž*—‡Ë:ÏîDÙ/¶÷ó x…\¯jWŽÃJ ¥'E½…(¨e]¡JA…*ªùh¨P¥ B•ʃã©oëTÍ€ú½Š“JP¿çç(Èûªc4àæ‚c´‰$8FóR¢ Bà^§¢”[}Ÿ”bj๰ÇáwE\“‹@TâÆ(†Ûî%ß“ÃþPujüHÍHR 5ï¥(DA…`Pé5êÓ ÔêÓ8õ—ҹήŒªœ}½PÈQ ƒ"å‹P]‘:EêXiÿ&õ%‡/ãž«|š×ÿ²ÎÇQ+öÕAµñ,ñƒ-ÓÉãqSŸ'NÞãq§;9 ržûüÒdnçôú½¹lßz(ù,pòÁ¶½ŸO¨gŒ‰¾fŒ 56ØO £–m{Ü ÛÑÚÀ(Ù)'nŒbX6íh\ -3^°%à“L÷í,AM¢ä‹ê0ªqbòȓ/°Ú™FE!êoˆBvu*œ:vé²K§]:íB;†n—JA»T*O–s²‡\ƒÄSM¨M×Sb¢(De³Þ%!†•cžîhÆäV B·ßGQˆ*fíýhvr¢äÃØËNŒb˜ l,‘&ˆÔ°ÒþµhÏû&îù°%òŒ¡èå(Èeû–¹?EÁ©_¡äÃpêçÆ(†eÓÖÊ'3–bJvw OæÄ(† "µJkA¤† "muÝ/ÌêÝ:1A¤Õ»×çQ@cä40®z:Ï4½}ŰlÜVí‰æTX¢äåïŠ>Œb˜ L‹H DjXiÿ¥Â#ØDÉqÔ^…wæÈ)Qrm1 ïœŰlÚ1^‘ã ùjRLæÛe¼7Ec)ÌÀ11 wn'F1¬Øv—æ:7üeÒ¶€&r&åû‰aòÈùþ.‚š‰ðräÈݰèT9A§Êý r‚}æ¹àåûÌsa]šeLËcìù&–oaYŸÚfç”0ù×àäÄ(†eÛÖwÈd)‰“ãOV•&úa×À9ù÷àœ—£ —í;^g^–GÂ:¯:Â$‡—£ ÇÍsfGVíexB´ªouÀ¢õ¼»ÎˆQ ˦=÷ˆmçz£äƒùK'F1,™¶£íÒ ’§:Ñ,Höräþ¹Ò.Uí‘pŠ'JvÅà wbàHè³ë"u ŠÔ±ÜþóshéôØ·yU¼¸%oó®x)vÀxâö&¢ŽýõØ %LX'¶‚ —£ —Í;š¥LÆi)”r¢7Øs¾ŽþƒUÂ:]=*/GAŽ›gŒ¹yrÀðщqãŒX¶m©ºÎì 'JÎþâŽóaòiëë¹9Ë—°Žo>/GANЩž0:UNЩrƒœ`Ÿyòr‚}æ è|’ÆÜÆÀ1q¾ÂÈɉQ ˶Ϲ¬/IqÍçêqûÎi.sO½¹lßrg=½¾ÊµïJsBÏﺮW¥ˆ¾.Æzm7&b 5‹¡XÛÝÅ0(r iT)(Q¥ªÆ¿Ü›Ö[ï¡eÝ w?˜çÚþ?ر+Y°.,¿OƘªÜZ§{ù3MGuõ—_õ÷säþ9l_'.ïÚ§sØ>Ãöéœ`Ÿ¼°÷íS9Á>•KãsZÏ×°Öö÷|¢×6ÕFÉ¥p5rbòig³°¨{ÖÀ¸ÎTn˜Ÿ£ —ì›ÇªëìIÂê¼·¥ó¼¹¿AN°O.mèÛ§r‚}*—ºo¹Œ™B¶"eN›élEòrä’}뮕ƒÁîKXç|vŸ—£ —Í»žë)ÎY»-ÍGÊÕá2pn‡ l/GA.Û÷|ÜÙÛžûtÚªÙt8fÛCUÇØ¶‹—£ ÷7ÈaûäJ´¾}:‡íÓ9¡ÄåZé•úAåÒ8;õÃù—9y|Âùçå(Èeϧ*4Gþ˜ÚíÁËQûä°}²#ß·Oç°}:‡íÓ9Á>Ñ-PìS9Á>•KóèŸç#œëDâ´ÊS¾Nx9 rƒ\n—³n뺴þ÷Q àÀ¾¹þ>dèé¾aÊnÛŽ27F1,‹Ü×~:oûRó/µ.ŠBTˆöt]¡JA…*…Û QÅp+ª Su‘:EêXšiË~ÌžQœ¸tíÑøsÃ:9pØ(^Ž‚\6o®Ì3ËDÉÉblœ£–M»*Óì£9aŒ66ÎÉQtš—//'èT¹¿AN°Ï>ƒœœ`Ÿymç¦An¯gžyËJÔ,ú¥°QœÅ0(¥¥u*%ªTiü»ÓœKÊ~mZíäŽíáL"FÉ98ØŽNŒbX6íªL³‘„uòÃØ8'GAîoì3ï"^N°Ï<2Ï¥ÑæþK\' íóräŠÎݰÈ.\¤¢„äÉS®#O…<‚­'{P½æS)Ø~*…v¼óŽBB u*+Ì#®_ëûÞÀ_‹q>ŒbX2m«Å‰J~& .)NŒb˜ Òq»1A¤umf˜u·rb‚Hën5Ïïb{}ügê›°nnˆœ—¢•íÚ~«Dü>å¼ï“°ô‰ùÜ^—Ã,­_{°Æ|g¡få´€-­NŒb)ŸÖô4ª”¨RUão×|¾Þ×h 3&Q¯¼boÂx Š@ɨeÜ–À—0ùq<¸Ä91ŠaÙ¶©žÒjn`àØ{Ýé%0œŰlÛü4‰É' õ"Ë&íß €Ç÷¢ÔRLóaðÈYº¥Ø©bX¤Š - Æ–¥%5LhI ˃¤Ž,µY30h~­rÝ™í¢(DA…SD A}”[ýyÚÑèµ »= Ð0²ðQ¢²aû½oZCÞÌÍ:lM$gL¾xvQ¢²aW³yjALÁî²sçv¶ŽÏǵ}+UÂêbnÃJåÄ(†e‘÷±¿ÿ5~püRßûOcÑè¢(DA…ªu…*ªTOþÑš’8Wy –Ô±—£ Wì{–“³?0J;éY¸q.ŒbX6m9.¨»nÏòcÙU »§¢UÌ:.¼w¬½Ú¢ey 0PÛЦ0P›Â@mJH µ) Ô¦0y ìÕ„·' ¦ò)ïä(Èý r‚}æ“/'Øg>éX¯ç Äù•Z¸;ý{§ë÷”»n^ŠBV8¿—]ƒB 5JhÃ-Ô† %´¡BåIzU›9„KT=ö-Û£&ˆ´žˆ81A¤5˜ØÆ&(3¯’‰SgÙ*âå(Èeû¦û{{Æ€"có¡úK?¨œÐ*—‡ÙÒd¬Ë_Âä§áÊâÄ(†eÛÖg ™r"£¤ &m\E (D$º< ‚ò4ÊÓePžAy”‡ÄQ§ Ìyèí8'ØSÀ$1ïØ±™¸ Š@Ù¤sžýg¦¾™¿¦4£ãÎù( QÙ®«~5[Ë Œ’V ˜ºvA <0uyåin=î34ŸFáöÓ¨4*ö¹™÷`XÀ¬nÆÄ_ƒ©g'F1,Û¶\[ œ0ùP&„ŰlÛº½òŠ–Të¾×«›5XMpÕ;«›¢UÞ©g°j?Íxc3—èÂ(†a‘èœÇ RŰHZÌKKj˜Ð’V†qåw¢‰yVtüD¨˜taWªçU&HÌÃC·ÒGQˆªÌªaõÈkàØ%EùxöaòmϵC›#60ªúôŸa-õ@’QÇôNgZûÄiO‹ñÀÞËQûäJ»Ü%ÛÆÀaêÝ–órä²Îy¼KVÉǺ¾­òÅ®"Ó‡Q D‚yj©a‚H +"Éí¼§Ýw-9×våòQ¢°Âã½njV¨Qy²-w!í|y`”üY˜|sbòik“_0ÆÛ!ƒõœ¹Œ½w¨ž3çÄ(†Û*ÏÇšOKX& =E!*›uŒWÀ©8ŽgÓ6Å?™:ïeß{”›¹ï×)-âÛ““£ —íG˜¦]ûÚ/Ïv˜¸sÜOÞž†(c•y†ȉQ +¶Ý’;®óñ,¼ç|çò|dÆ·&ì™À8¸×;1Ša‚H°4XDj˜ RÃJŠBT1l9!Ä5¯ðÛÙùí3=?*Qòå;èH91Ša‚Hkí‰DZ=R†Ab©a‚H +ƒä\íî[6íyøXYëÙù ¢…Šk}W¡Fa…•[þ©ô$J|-žø( QÅ®Ço¶ÎÛîÚ¸FÉÙ4˜‰vbøi¾ öµUâH­»&îL°6ÌGQˆÊ†ëp¸3vIÉ&èp;1ŠaŶzRkn§Þ‡½Ií¢(De»Îû8ÅX(7pìà õ¢(De…×ýœâµ ɦ㗺¾>GQè¢(D妿.t×Å×¼,º( QP!zÍCW¨RP¡JÝ ¿ÿÇYH‰õEz B±¼ÈÇP€Ú”Òz¨Ma 6S ?c@ ¨‹Ó ¨NƒÊXh"7Û Õ/vÞ§vÛÛ)_Æ1o‘×ToÇ~Ž‚ÖÙžÈØuêÖ©sB{ÎÁöT9¡=U.뜎»ì,Þ,;­¿Ü× ž‹N'GA.ëYÊÝwÆyÞÝñpÁä÷y@<ìÆ(†eÛÖsí|¨úÄJû©A³äRáæpQ¢ BP­ Ô ¨OƒJ«?ßw÷?°ý¾”ê96-” 7Ǧ^ŠBT¶ëyzÙãÙ¨³ŽÆŒ' »¯À ú¹1Ša‚HаˆÔ0A¤†‘×*d»ïnûzW“¶öR¢…ïeQ¨P‚B…ʃøª§´Vg0pª?aø”vQ¢Š]³%G¸s»fKÞnçvy( QŮŲŸÜ®Å²,žÜ.E!ªØuŠB” ðí–[*” P¡RËÏSåt™ª%ß–†n—£&ˆÔr”‚H DZ3¢óÔôš9¹<ϳåð™%çyµ,!'§¶ú·lµ¹¿X•ò±]•*H,wR>>ŠB” P¹",(T(A¡é:ò‹2¦Í|” Ð˜6›—§¼OŠŠ`u_¢¤0¢~"E (ì|º< ‚ò4ÊCñŠ®O¥ @•Ê£b…JQ¹°¹Pò§‹Ae³£VDNíx‚ ‘³M¿¸ Š@HžœùêÈS!$O…`ëÉI¯^ó©l?•B ;¯ŽBB uªL®Y˜’*ñ‰‡"°LÜGQˆÊfmOý¨ëð S‹à›ÀÔ¼¢Åí2^/}6¾‚€®ÏëÃ^¦Ù°Ê6¼}õFâüë„{ÑQÊ&íý/ì~ýj~d› 1ŸÜP?!ŠBTQxÔq¹T¿x1ŸÁEQˆJ™ƒ¾B…*TÏt¶”ÈÀ1)…Ó6>ŠBT1¬®ßÒ/kdî¸,ÍÝׇ’n‡ÁLŠ ¢Tu²/Ï‚íBïÀ():i ŸDÊÃ]—§APžAy(ÊÐõ©¨ReTÜ÷V}'óy_G°½0pêÕÅâMh'D(uݯR{¯2RV½ã+/GA.é\Æç…ØMä¾ñä4Žmøê) b©mªØ!Õb©PŠv&“T¤êà?<×nÔógËt|×o=ù25[6jQXr¹*,îq?AŽ‚\eßÁÛ¥]pa5ó2W‰'ãúBÉ5Ð0ñäÄ(† "Á&i©a‚H D?È"RÑVÉ=S}¹øDŠ÷N.ÞGQˆÊv-uÅZܘ¨þÃí<ƒâ£(De…Û¸Ø6º‰5¾¤(ˆ¥ö6º®Tˆ¥@Ajg£ëKÕAAªæ9¦ÄÛÀ¨î+$¯qí(£ªD“5“ wJ«—hòQ¢ŠY÷³óÂñ²ß/5ê3nf£Ñ RÄR{3®+Õb©PÚ™q}©:(HÕÁÏ ‹Ó ¨NƒÒXاʷ·ÞæIHv¼{E!JP¸†*” P¡JÃïÕ¡§ù\v¯¯tÏš‹70ªêeKµ¦£E¢çˆt*%ªTÕøŠc.aU@fxèpà åLm\å) V6Þ…àÞrjßÉ{•{¸AЂůê€ù=aá+ z/°f TDÀˆì]lxš~ê~=L­)š&ÞN¢ –Úd}©K5€B«¢9ojUZU˰ٕÒ]x7lîÓÛ6…(ø[Út€?ežCë#5¿ÃTÀÚ7¼t9pP]rg¶È{AŠ‚•§%kÊ 2¦ä1/Þé.ŒbX¶m{åÆÛáßz(¹n¾ä£(D»êL·ù&lÂúï^¼2ÝNŒbX±í®cvÝYLP7EÁò;† Ô&¥(zÚjS¨MJQô´) Ô¦0e X_Dùü=„‡ú^Ž‚\1°:¼VN‡ƼÝÁÎáµ ¢TLz¾6¾´½O–$|Z«÷Å'F1¬2®Ô䪯 Œ’s°¢Ê‰Q Ë"÷ûÙ~µŽwúz¥× RÄR;u¼}©K5€yÀìÓd²‘WGgP)9~UG»AŠ‚•4,uû¾|=ŸúC‹è@tš¾>ù\™è) fiÉ󤾯ÅO5ÔOˆ¢††ôiPiõ'‰-h|½Gþ= ¾cÃü 0P›fuµ) Ô¦0P›ô½é®8 ‚ê4¨Œ…Õþ½¬º±îz‡;.ŠBTQX=û3Kkç4­,?îÃ(†A‘b!\_¤ŽA‘:†[R¾ºÜoJÃm©sPgçêrW§ƒ: \™r{ÿÚm“?,Ôó)À*1azå&u²Àôʤ(ø7 Vs⥯ëš?”œÉÅñƒ£–EžÓë>k“§€›]ÛqƒÿFAl#<µØh±ÛhÑa²QuðŸÎ%á­ï£p3>AèÜ3IL¿Ÿ]‚qAŠtQ¢ Bpȧ Ô ¨OƒJ«ŸüôßRož°ºèÉRpîå(Èý r‚}È/²Ø§r‚}*—»ïªOƒ ß8øíøÞëÂ6G/Hÿþ/.«k)¢(ˆѰ†á_ô,~×óYõUZ\¾ÿŒ_ƤE³¡~B…¨dØ1>5ÚÕ:V’öáê’´Q-¬$-ƒo™ÝŠ4/GA®X_´fš%/×ðBž£Eʵ‹=*%ªTÕøK˜°©qÓQa^㦜³»÷Y>/GA®Ø·LmcÝÿILßÉg7€\E bÒªGH'7i5Ä-'7ÉQ*&5…\¥qfKcµ¥jfK£“£ — œïEL×5K¡ö›òVB&P-·å•n¢`±±®o3?°“0­z‰Uœ˽ŒÏß+ _éÅ› ƒ«†ú Q¢ B^é5êÓ ÒêÍ…qáÊë€èXvSa«atbYäZ>ƒ¢“;Æag» —ƒ†ú Q¢ŠY÷›ÕæÓøƒ‹ä¾´ÜO£ Wt>Ï¿©ñ|ü{AŠ‚XjoèJ5€XªZm¦VÕA¡Uu°Œðû+aÆšåaÊA2««öQ¢²aÛSÎá½kslõé ãÃÇVœ™?z˜(ù5}xræÄ(† "µªBA¤† "­5Œ Û¿E¤† "5,’_ ±\PLÔ$nC öÃ(†U"[VîbѰ¤(ˆ¥öÒy]©K5€eÀ4‰àNPÈÁÔ‚4–•õrä*¯vF´Ó^LXå ¯Xûj —¸+}Ü}gû1 Qÿ0Ê]qœA­6–W»An ,6ÖdžGŽj§é¯Šc7HQP*f5©:(HÕÁª;ª‹ú#y…«jŒE‰éß×`5 .ˆ"P1éõ.ŽéÓ"‰ÓêË_ßqƒ‹‰Ï͵í=k;~0œºèÜÛJL? zñÎv@ŠIG·ö~µä ]•MGåä÷™ŸCj{7‚®Ma 6…ÚÄ'bzâ4ªÓ ,ï)ðê®xšG&ЇQ D ¦i"5L©ayVÕ*WF¿VÐSîÞ ¨“£ WÌ»ë9dîN$Î,‘x-³´êvß>Ì¥üh2ªwÆÏ&½ EÁdã9¾^f°Ä› ë”Á¨ØËQûäûÔ Á>•ì3Wt|¸Ë”{ä™¶s¬"?t\C¿DÕÍéÇ@æ ÆcçXœ+GÓcú®';9wA*yì1!¸òÍV.Œb)o#]‘:EênIùzM¿)u·¥ÎA°¦«ÓÀA®šl§m³cårT·V1çéßÿÅ×f`H&ù¨ÒžUŒR„20¦¿¤œ|ñr@ŠI{÷–j'HLÅÁZmE!ª˜e}‰ù‡°*1béœêâFu7¤–ÛÞ¾gqׯb2î¸×ƒ¹=šñräþ)ÜY߉I8:`?1ŒbX±ÍX³5¶Ç‰{O¸î35NŒb‰úÛ RÇ Hƒ"ǘHƒ"u,“eb`) N”vbÈ*ƒŰbÚܯ»#wV¤”(yëm°ŸF1L Öe‹H DjXiÿu+q¢£œ&zU%+§qƒ‹÷Çk+Ï·m™¯SßþO”|•¯Á~bŰbšt1¼óy‚Àou!÷Q¢²Ykse4gg®~Ñ”qräŠ}÷±¼ñ®|Áê„¥ácg5O–—Í R,6е®ýjíØßIpòPòÚŽÃF1L Öv‹H DjXÕþ‘²÷s=K‘²ö¥»A V¾ó˜¡¢ÅÍêÇÑ/¨ZÍ¥3¼×ظé‡ðZî(e“¶&|Þ6=pp|Çað' R,6ÖEŽWòÏ­;ôï°}daûÖ ô(U&ͽTзùe‰é™†ú Q¢*³Êj'ÉËOP§•ñ¼ŽPÝ EAAª~J,HÕAAªþ‚‚¢_©Ù¨ƒ‚:XFÜs¦]¹–Íôû.)üûâªÚ»A®ì›ÿæÛ%MÚú‰@ <0cuyåi”üN]žAy”‡Äþþm'ÖvßAYÀPj°ŸF1¬Ø¶áþêÀ%¦ï™ñ¨ÞQ*&ÝkÜ_c8›^GÝ}ÕS³‹a/HQÛh}þ›¨e°'ýú0nžƒ";ìžHƒ"u ŠDÞ¼A¤ŽA‘:V “¹Áâ%ïhr0/y>ŒbXe[9 °¿’0µÞ‰Ÿ89 rƒœ`Ÿ\'Õ·OåûT®è<¤*Ó4¦ŸN²{AŠ‚‚T´™¤ê  Uó¤8­¹f¶÷õî:WIø7HQPŠ£&©:(HÕÁÒGUÖ×Ù¦g¶¹<œ¶qÎlsñaàÈÎÆÙ©cP¤ŽA‘³'RÇ HËÃäy£ÎXÌ>0ìI4Ï öÃ(† "…l©&RÑV: JÖ™ŸfI”|ˆÓu>Œb˜ ¸€‘&ˆÔ°Òþõ#JŽo4ž×‰ýâÞ™ÉÃT)Lщ¢å“l]žAy”Zü'eÂ"cÛ;Òí„NŒbX±ÍúŽ&»Î’@Ý—a×YÜ EAAjÇ—éKÕAAªæî˜š«¿æ/qj1 ¼¹Ê>±V²û(ÁõŠBTeV5k;I𪎠*n6/êðrä*OÛúÂ2ë Ôg{ìÌ=––wÿ"EAáu©Â/ê`iœõ¨¼4Þn¯c^[çÈ RÄR;Õ‰}©K5€B«Ê¾œÒª:(´ª–ùXÕC¢7±¾¯‡L”üJUƒýÄ0Ša‚HpØe©a‚H D‚¸Ë"RÑVÉùÅ|eO×|ûîA^ó"PZ˜½3èZD¨²©ø+ByÏË]™û—G±·â(U&ÍÝQ!4Ķ1Ç­û%±qê{*ü“gn¢`6q™ªOJtRž óáNKB.Ì…óaàÈN²'RÇ Hƒ"e'º+RÇ H+ÃdJz—4®¥š?rµÓkú»7p°Êû˜¾è) ç·Mç½)óƼzE!Š›Õ/HãÐќҽÓùø,a݇Ü^ç_>ŠBTeØê84+†ÝW½õdÆÆö/HQKí%3ºR –j…Ví$3ú­ªƒB«ê`7'sý,߸KTµÿ[>qçÄ(†A‘0PÓEê©c¹ýÏqÆûk§H;AâµX¥í£(D³ŒðòúÝê©ç‹[ç) R;9ë¾T¤ê`éŽúÆ’ ›ËYŽé‚‰—£ uN1™:UêXéƒ;0ÔÊ7wU—nÄýòâQ჉)œ†ú Q¢ Bä²ë U *T)¨p÷ÿ®Dƒu,kYt÷ž½Ð— Ååf/ú( Qܬ¾{ÿ2ë~UCýšÒ¼³Mß R,ö­†¨ì|Ùg‰”NÞmŠB7«ßmoHXâšËöütá¡^«ŽŽ1úT«‘©bÕ.½Ò=«ºîg•ÌuãAqg¿ÄÝ R¤"ŸË$U©:xwÇ!t øÁñgÇÅ<,)Á_ÒÆ2ü% ‚¿¤NøSÆióKñ÷Áp&¯¹ËU05Ø\æòsäŠyõUæï¨ý‚ÛdËF4ÅTs¿m1G¤(XÙXΆ:/´‡C…Sß hO‡ EAAª~&HÕAAªþ‚‚r §Ø¨ƒ‚:XFÜYÝîWß@r©âª" =»äç(Èeû¦ê:ïl|çþ SÍB-õï„(AybÉ{OžAyTZüy:ÊSGU0ùŒ³Á~bŰbÛÑu„o‡èª½)nÔÅÜ(E!ª˜u¿o¥¹3s9&鵯ÞÅ4?GA.›7ßO7X+·Hiû‰aàHÔw‘:Eê9ÆDê©ce˜T“ûà¹ý0R¸§¶¢”MZ¬osÌuÂü Öït£Fü‚Ws3§â^Ä~bŰbÜ]Nã9oÿ¥–ŠByï;ÑÕ~¼p“töÐb?1Œb)'ñº"u ŠÔ±ÒGuüc|—ýƒ­ú¼YؼY«oÒH^c“{-Lß—k2ÊNˆ"”'úr=yåiPiñU÷ÓOnÒjðžOn’¢å‰íГ§APž•·=F02§o•ö¡^e›Ÿ£ WÌ«¿ߟöcæ×¦×Ëwz Š@PÞP§0PœÂäæÞ^ßbÖßø.X½ëo|û9 rż煠»Ãä"‰ö*Ì/8OBÌroYàs.…Šü5¢_ÌúÉ$î=`µ€>{U8µØ»ýîU¤(XL¼ËÌO©V`°F®p›°8øÞ50ø) 7¡|¸Þ@xÆæ7š§Pª@ʳ<û(ý”ü1%7–%îM-©°y°Ô_l¶$Q¶ŸÞ”šÓXØvêÃèßþ5ËýAždsQ¥ ÅýÇ}±½CÐÞgÿ‚eé“Sü¯•ïÁªal[øœ¹b޽왿¢W– ™;•{¤b8súÙÆ–J'GA®Ø÷¼ÕÓ¯Ô¸Øv¾×oè(ÐO¢å‰Gâ=yåi”'£÷ô©¨RyTU3ðñ@s@`#ÿRÏ‹÷R‚Ü)þ¥ÖÉþ[¢ŠÂgá°V„ Tlm횟£ W l ”—…ª~ (W²¢¢?GA.x6ÁŽ\f‚ƒJÖ8ƒ?Q¢`±q1]ñnŸé)œâ嵯ô¸1ŠaP¤ìåuEê©cP$ê8ƒHƒ"u¬ “'Iæ,›û€§äi‹ß†*”°4ØO £–M»šKÌãkn# “oî6ØO £VÙ¶Æò«øîÁÔ$%/¾sräŠyÛ«¢ÓT&4Õ·ÞNÌ$æŒèDú.ˆ"”'&Í{ò4ÊÓ ÒâM x*à‹ñ •ÏF·XðÜà„©jn°—£ ÇÍsÖíLÏcwRÒ <ó ­,¡c¸ŒU0%Încù9 rÙ¼ùý¥qKÊ>sr%LÙ{9 ržÉt"qró&Û ÁÉÍóqäŠy÷üJ1˜$3Øgà }Úgà°}È©·Ø§sØ>+kè)\Þé¤)æ©:9´}ì½@ Rµsrè£(D ß™D‹B…*” ðíCY*” P¡òÐx¢ïá¿Ü“³|{° g9pê ÔOˆ¢UìZ_y@SÑȬCߎÇ. fPu§æÀyAЂů&-Ûñ9V¶;&ð½õßêuƒ‹{Y`‘—zÜØÜ4$Lv[î'ÈQ+æU¯á½gm³} Œé‚ œ<E (O:çê©S(NaJsŸ¥¹õÏ' ë¬B ÷ä(Èeó–-¡RÀù^FØÁéCÉõO-öÃ(†U¦Õy$p^‚óH O0pɇQ +¶UÏ9˜¿ªöáVéåû†k¿7S0ôÅÄý9 r•y6¯y%`e>ÍCõ¯î¿¾0¯ Î wjå#œÃbyD¨˜TmhT [烽}eëträ*ó^õÄídûzØüì„ÉWVì'†Q +¶ß`YØüp(±Ü}7Ð Rä&ªE}œÛ„/‹ô×¼‡’ /y>ŒbXeÚMë®w$e Zª2ìp¬’Êa÷Gt¥•ü…76QH)_ÞØòÊqKº¨Ü„»ñiD~9è å]½gs%ŸP5ØO £VL«¯"©©aÕ†cºùâå(ÈAò}†®Lƒ*u¬ôÁëõ"#· ËV¿Ç«ô+ê9`ºˆâå(ÈeóÎÊ ñ6öBH<|Ån¨‹¢%(|§“- JP¨PUà ‘x q`²iìlÓpQ¢ŠY«aß=¹Y«e/<¹YŠBT1«Ž—ÅxòõüaâF-¹1/ÐÉQ«ì+kª “NÜœ9¨¦- : Ôiàªn°õßăÔJ.'m89 rÅÀ*ƒŠ0!È<ëœ5jûAˆø®§Påez'x`Tq;ÐO¢å½c=ƒ< ‚ò4Ê“>Áõz›y¾ŒO¶¹¯@õìb‡¤(XÙx™R3ý§'J&–šñ‚¹‰jjæ¥tß< 9ø{†þžk!:Wƒ·ÂŽô—±”ÙÙ+Øé{:ý2;'F1¬˜V…cÈ–Çc‰So­ò€Ì Rüõâ`ÁFl´—#/㾇ÚQ˜@ýö+tƒôÂ/ ÎGoïôQ¥=ïkS…àN”–[½Ú0Ù‰Q «L“²‰Ý—§ïE3_М EAn¢ºû½9î[j Ö¹DÐp?AŽ‚œ S,/Ptªœ Såþ9Á>´™YìS9Á>•ËÃl’®átÒù V'›ï£(DA…è>]¡JA…*U¾ZÕÅÓ9¾¨?rØÃ×tE!ª2kåóEvjFb;•´>ŠBT±ëªoöÎæu qß ïãuÀÉQËöÍÖý;íKõø6Š{qüš05HcA¡—£ uö‚»žNu¸Ò sÿú¼í™(Ùÿ‚÷=Űʴw]ç¸?AÊvï£(D ¥•²¯P¡… %(”}… %(T¨24îg_'ýËrŸ2›Ÿò¬Àâ-Á Å|‡Ä¬&6q°¿¢ EÁ¿QP°QŒ4uP°Qs7®ÍMkÔBæÕ§^Y/HQ°²±›k¸ç«fL’’dÅŒ>ŠBT1ëœà>×¹B©ÜÞ!pA*“‹Ås «tíOI89 rPgÏ£éé4pP§ËݰiÞÉÃ-̾M~.‚?Q¢ 7QÍEqn_„®ïÔ³$HñŠX=‹¢%(”¼¢¾B…*” PZ#û JP¨Peh¬ýäÇmÌWx(t‡£óL£V™fˆ;NÞc«%8yy( Q‚Bi$ö*” P¡…ÒHì+T(A¡B•¡±•ŽÞ~'ÿXæƒ}w1ƒôúT¦¢…йî®BB uª4ý}†æ|Ïz9æÅ¶gòÄÊYßü6¿ú¹œ•Ÿj½ëš ±{ª.ŠB” ð½äX*” P¡JÃ_bJ ïÿ]ÂAHßû»¤Ó‰¾ïçÃ(†!‘=¸#Ò€!‘¬jÿW¤k™h×ÊBÓmˆ„i5õü:„—£ W™w•VéU²«Ê T«8Ù]e/GA®ø”™ˆë9vή{š{ï´¯ã]Œ¦êñÏ$gpÌ;j—û räŠ+c»{ŒÓé|½Cê) e¨=…4K»y%NlÑû‰aàH”…0ˆÔ1(RÇ H¸ÆT8(ÓÀ•‘ÒœFK;ëýPw¥¾ë„x/嵆¯Fþºõ:‰w`»·{×iì§OñÅÏušûWnGtβN{9ä5\ª‡žÙè^Îpƒ©¨Ð$U©:˜{c®ÎzÕcÔQròžõ:1ŠaÅ´êÔÂúQè)³œZø( Q‚B)ÒW¨P‚B…JëB_¡B ª ý>´³Öêf|?>‚·1(qUäßã~‚¹bß=Õä禛ŒÈÀ11±)ì0 /VJ(eKe¥>ŠBTe×:TY—;oî{‰p]Vž2Å­‰S/ðÀÕ Rüõò ÁFl´„¬O BµÍ™jÖµþ¦‰:ù(†e•ëb¹iÄŽvÖµ:Ú1f;Q`ƒìí81Ša‚È%&RÑ&ˆc"5L©aÕ ±Ä'ZOÒGܲ„y0qø -âÂ(†eÛ¶»¼_Âêíý‰™ú Q¢*³ª-J%Ž öÃ(†A‘¨vVרRP¢JU¿ÁÆG¡þÀ wk˜©w•UؤG¨4³.Œõì~€Áù,æú|S^sšüÌÀ1qh°ŸFÿæ¯=€ÙºšBü-m€ÀŸ2ª}±Ü%a53‰RÜV3ã£(D»VKur»VKXsr»<…¨b—r¡_Z¦Û = Zûм EÁÊÆÕ`¼Že¨$/ÞÇ2^¢`±±¾÷møºJÏõu÷Èö‹×V\-$ô¾x‘KÂ䨻å~‚9¨3(3¨RÇJKÙ ß:8Xmu]ð' RL6>³š@<Û¹›0ùç¬üÚ=ÝßgÜÞG¿0ƒÅÙÀAlü‰‚_m#:šgyŽeœ·ç»zÆïø }¸+ylžáBA®Xw MÙÛ¬?»vuꎊçv™Ø&ëIs{l•A1ðl¹Ÿ GA®X•3>Ù10®3𹣤ÿÓ1°)†•­.È‹1ïÕF¯ RBš« i|…(¨PŒ„z5êÓ ,o¿óû·7`Yèx vèÄ(†a‘‡pL¬ˆT1,RÅþ)ØÌ]~=˜©÷žÓIú( Q•]R%u—šª˜-ÿwlÀ¿ož8q5n±ŸF1 ŠDK¿A¤ŽA‘:EÊŸwé«4pP¦+#¥9`–*,6>ÛæË±xQ‹à1Wk$:Aâ€oBoó&ÖyuN6ÓÅý×úh©_{­Žˆ"PeS(þ@\ïù)CóçÚÜ ýŸð‹—}PˆÊí¹X¿øÇJ¶æ}Ç×e5a^Ž‚\1P{aSð­Ó#¹¶Rðt½ EÁbâ¥å&p\µN;Ü ª½øõo‚¤Ð¯¥~B…¨bV©pD($2nJž«BÇQ C";×cz" iÀªößmKÊÁ–”µþ°^gŠlIqräŠÍ ÖšŒ„ ¯WàÄ(†Û¤gFñS^ã:‹W þDAŠ‚ÅDÁ·ì/{ýRi):+Àü͵V^¾ívVæ¹=ø1@ý„( QÙ®­ k¥{£<¬MÔû̾Öº( QÅ.1\é¼3™(Ù«‡Pm[s²-Å8;oúÅâm³óðm»WÈí3“ßUdZF¶hyAŠ‚ÅÀæ`\j–“7Ëj ý^ÔóüPÑhz*qêa%Ê Ò¿ÿ‹÷y—qÁ£Výštúß{=Õ‰åîÛ«£_Ô{÷ãGª Óêuù™ª—£ W™·ÙâΕ…È¨åÙø§Ø½¹làóƒõzëÀ¸WR» ׉Q ƒ"Ñòg©cP¤ŽA‘²ƒß©cP¤Žåar ucÝ‚ÎDÉgq°¢Ó‰Q «L»ôãž{| nÂòUH·“- ˜X@ðpº{>±€À R,&®¶ë;¯¸úšøÃ ¥•E^Ë« ÌoN”tLÓP?!ŠBT±KL[*Y¯ëUøeùµS9Xx†ÈÌFóÃéckæCÄ RL&î“ñ• þå« jé«]Õ½¹b åå2R ÙÚ°OÚç pò8qèjQ7yì) RõâAª Ríå. D#Û$U©:XŽéÄš®q7!ó5ú( QH¡|~ÜS¨SH¡N!…£ãžD†4°<>féúD×9MXç… èz9 r‚N´Ytªœ Såªn¸p7ôéD‰iL&xp/ÇoŸïËårˆŸìHXǯ‚ovx9 rܼ÷Ÿ‚5î°ÐÜΔ”Þ…î°¢U쪾0Š9þ€~Â*GÅt—ÜËQƒ:'ñ¤úõêþþ<û¡Þá)× j7RxÔ R,6îÕ™J/o·ñÕv¯NdoƒLÜËQ« ¼Ø 1-&®ãÛš@´všÀNðÅ2n©…_Ôm~Q…_ÔGøEO«¼Á¸Jù¸2PïcÛþ5üë>äԶ^íÉǾL“¾½rHNLø5Í~Íì¹,uˆÑÌ÷αh¢äg9,(ʰ`£‚•†\f{gSˆ*Íx_¹°žˆŒ[¤ü7>ºubÃ*ã”Þþr¼Le_öWKÚ6Ù嘄Ü+q†±ŸF1 Š”ëÉ»"u ŠÔ1(RŒ„ú"u ŠÔ±2LV~ezØ2qjfœ?lé) f¯æ&›±;i‰R¢öF«¢UìZ-‘ÞÉíZ-Ñ×ÉíòP¢Š]·ï­¼JÄÏE%•…ãsQE!*ÙuŒsÿ¢¾“0¥0ëu ÆËQ+执ŽÝ„Ň[®Û˜ÆKõ;oÍçcÊʆ³óÆtaàÈΆÓ©cP¤ŽA‘ §'RÇ H+ÃD½½+«ã‹ìœÿÁ´þîPèPaǰ>…¢Ðoév¡ßÒ)ô[zk ßÒ©28ÄëǸ¨¥CÑÞûlãY%Ó«ÀÇtŠÃ¿sx~ÌZ~Ÿ2'NON°Sf7HQPÚINô¥ê  U©ÑÖ—ªƒ‚T,g«Š5w—lò/A'N\m[ì'†Q ƒ"Q÷Dê©cPdï¦HO¥ƒ2 \)jY(¾•@TYÁŸ(HQ°Øø~UØòìõ17ô~ €2ÕS†@>ŠBT±ëšû‡#ß±Â_Y>žÚÉ÷YLwÏ\ö*ÿeøtíÀÁwp§ 0/HQ°Ø(Wâu ÏØÒ¸DÚ R,6ʧ‚ۄɘØóYœ¯='ìù„Šy½öìÄ(†Ûªw…œÅëA²ÍÂOµÔOˆ¢¾+= 5ê³ÿÒáˆÃro³12ae;Ƕ¾’n¦Dpµ{H<ì) ëý´á?’ÂäÛQÊ6íÏCfÞ¬ø‘žo*»ª©€ãØ›}•Fûjß>ƒ²¯zAЂů»´×ý(ÆqÔÛ‡úÿÀ±ëåu·F1¬²Íâó±Âã˜,ê2sÓ\Å0,Rì¶¾HÃ"U¬´ÿÖ R,667‘šÆé¼ê›0ù‰×û‰aòmg5DåœÅk„>˜\l' P'GA®2¯ò‘:‡‹ENÓ}üÁ#'F1 Šì¤Ý{"u ŠÔ1(­+‘:EêX&·êþçñ|dÒüY˃J¢éõN7HQ°Hݺ©×§˜iá:=…(¤L]¡N!…:Û°S¹ÖkDƒ­¨cHd¯l­#Ò€!‘¬Ì¸æ®aÇᘙÃñ€úö?3‡Ã RÌ6^UÙ‰¼Ô¾ÊNLÞ$…²'GA®˜çû|ÄÀ85Æã¯qºAŠ‚ÉÄs²íèsÛƒ Ó yx¢—£ W™wڢ텷‹ú˜ ŽïÏçûp¶¯Ê œªö<™ú Q¢Š]ò;Ý${ÝG\ç¬>ú¤E_Rå{ üæ¹ÜcÅ}ˆž@}ù\Úéî) Mµ6¬ë¡ÔÉÇʱœŰbšœÕîÐEÞýzÃe½uúG;× ¿ѯÇJ˜Ú(¬rÉËQ+æ–DóÚ¦ŸÎôÖ¨åðc`Ð[bïÈÄGQˆ*fÍÆ%“åqÎ}¯R$†Ïî TŸ5cÙ/GA®øzÕ rüaÔÄ©Ù?þ4ª¤(XL¬.£¢Å¨Ý»†}§|Uµå~‚9¨­c™:UêXÕŠß/pǸN1ÎCz¿*ü¥Ù„uŠÛî'ÈQ«Ì|ðÞ“±‰ê?rÿzxíí£(D»¶*×Òñ"W6õNt±Zì'†Q ƒ"åe¥+RÇ Hƒ";þxW¥ƒ2 \)×XŠæ*¾Dõkž_¡¢£&ˆn¦j"5L©a¥ýmG«,[œ0-ÿγÅ^Ž‚\6o2Ý¢å'Ç S“%ìèØËQ«Ì;û³®¹D;0¬7ÜO£ WÌ»sOJ|rµÛc¢´Müj÷G'F1,›67©iûU´k~')áí¾em]"7HQðoÄ6ÂçÛ,6@l£Ä6@ÁFT¾a²Qu°ŒUÓ[¾È̼bØtÄàÄ(†U¦UÏ   âLø3扛$×±Å~bÅ0(uœA¤ŽA‘:–{`©î™^,×ÙSZð' R,&Þo]¸Ïö>±×j™yìh)aêd`GK^Ž‚\1ï~/ßüQšƒUPjú~ޤ(˜m\ůTtSÈ™“oùÁ²—£ WÙ·tÜCÎX7ññJ´\õ¥44!„µâÁä*LÜõÞUÜÅð׺ž¤ W„>Yöo[°¶×&f»úcìáŒG1¬Ryrr×ö:50eGW;æ¦ì¨¤((H]¢RuPªƒ£ `#ò¯M6ê `£–W½9-cü9æ„i•¿Æìå(ÈAㆮNu¸Ò {YËk6ÿ`]âF%¼ñÅÐ…Q ƒ";ÙàžHƒ"u Šìå‚7æKlê§ØðeÑ¢ Hü‰‚‹×ÂAËw`®}–~°.Ãú¶èXQêaÙÝÕ²ë) V6Ú ‚ùôµoüüÔ6+œ\*› –3 ì ¶ü‰‚‹òÓØ÷7&ß „›×!~p°\%îí.÷_'GA®²oìëW ëÖ±¾=æÃ6®ù#R‰Ó êNÞœNþý_<<ãŒbXþµ§šÀØÃr÷Õ×ie‚_§MØ\ò×¶×ÉQƒ:Q¢Ö SÇ J«ú@ICKÜj»¨À«±¨¦_›Ÿ¤(XlÜ^Ô¶À#šóŠ<¼ EAn£â0¿VÐS+Àøræä¸}V®˜wî¼ -² S?üˆôïwrä≇¢Så*'èD›˜E§Ê :U® —E)_Ç·y§=ÎþºÎë) rµ³'ÀY®5í|þ­–(üäkÄ]g\ÿ(†‡äý+©‰ë9D~¯9D8UÅí2õ¢(DUvõkÀð}˜„É“_ˆñränóÎ?ãØÜI뤦Úw, äOµï) V6–.ÔËㆩÓMŸŸ£ WÌ»—óû(œêG:‘?€D ×Ù QñD¤((HÕ}©:(Hµ3¿@4MRuPªƒ•ÔÓâ$oõNæÆ(†a‘òÓw]‘*†EªX™‚ML$æèš˜¨Â”$OS¤êÆ(†Ûšë7­ef[ËôþÚ}ü‰‚³s.ªï+ë_(mÃE7F1,Û¶Œ›Á_âÅRm¶b¬Á‚†‚)±)‹ü9¨S®™ïë4pP§+ݰ­}îYÚ¶´?œ^¦¸°]È R,&¾ïâDTs0ò V.½ùŽ{á:FÈ©€©Èa2IÕAAªæÞX«‘Úq—ø@]µ²Qaœ:9 rżCªUì•%Tà{ùí•%@Ђůsâ3Ñpúþ·»bÑUš^0y·ÜO£ ueUêX郻8Ùóü‡ÚÕ¤"ºT@ÝÕZ˜sç) ××Ƀá;¨Eä3å¼ EÁlã±hU¼‚ƒq4‡Žò´ö$ïÇx~Ž‚\eß«4ò½ißàøPSumS/a&3Thãç(Èóª ÃüÒtáôD4 ;Ü EAAªY RuPjåhO:¸AAª=éðq ¶@.í2®3çñ™€—£ Wì3¾ÊÑæuoµç«¨¤(ÈMT÷—·‰U¦QtÌ—÷  £E.1‘:EênIt÷ÈÒ”:‡ÛRç Nx÷È ÓÀA®Ñ%û‚æ,Îj$Lž8­áå(Èeó–Ê<ÛÅãôâ`+Ä¢ m¹ŸèÒ¿­Tú<§²‰ÍTv#'GAêDΫA¦ŽA•:VõÁ…‡§ü,X¡Ä²Ö+?fû¼ÿLv“…èÏÉQƒ:;§d]ê4p¥öW¢gPN¯¬O’V;}x é›3Ša•J¥YnëÚç §6KûÞ`¤(˜Mܪ¸Ø|¥pÚe³wdì) RÅGG4©:(HÕÁÒ÷µOóã¬Fªœ6x ÔÓ ¯qêä(ÈUæ½J] Î|À}³l<Ĺ)uÕæ1œ£†Dö–ìŽH†D°ÜþGõfS§¸Ëzhé,דÉ=VçïQƒ¿gÐ ÏÀån8 ^ü©Öâ ÒÉãö®_00L=n:Ù‚ää(ÈA§žLƒ*u¬ôÁ®Ü¸«9AP/,î¨ $;>ß N+3ßž}Å0(²³ÃöDê©cPdÏaí©4pP¦K#eÅKÝ Ø>ðå“/ƒÿb¶›_üÆDâôe“]™pƒ¹‰j®æÍí‘S¸9ÂÝGà(3{Ÿø¶/½V ¼£´àO¤(XlÔò÷Þ×^Ñ.œZ>Ö^Ñ€+µšS|n”@÷±Ã<§e/cõ$ ÓFyA‰—£ WÌ;_…KïLC{)ïCMwÌø\ýÀ±îEö¦¾£VlÓœ œOœ§¦ Mô DÕú¸öˆHQ°Ø¸ÛöÏ͆ɘwkŸ> €+¥Ô[?fù€ÒÁf¸³Åszµè¡$$¥õqä²yó¼*ûµ0žS'w1Cõ_dÅ n¢`±ñkr4‡O×I-â#@7HQPŠ–S“T¤ê`î;Št^s|(í)‡ú Q¢Š]§)a×çu¬®F¾wÏûÇxÍh¢^îR¯dÔQ‚òÞg~yåi”'õoWžAyT†Dãö½§ˆàö%L€‚ÛçÃ(†ÛL÷&_!÷j»ÇøŠ¸9¨³—‰íé4pP§+ÝPg¨í›~ýï^¥ßó9¨³S«Ð“©cP¥ŽU} ÔÑH\*;î^$N=)}Ë^¢  U>)U¤ê  UsoÈöÜåÀ¹wFr?AŽ‚\eßÑ ïÑóª&%<$ì®8ÙÎ’`«å`~¬¤(X¤~¹ãùò±œl©wrä N8> : Ôéù½}z)vF Ű<¬÷* Qß1¥TÅó(ÄEQˆ*v©R·c6ÿ‚G Jƒ¥M®×³)8~±¼š¤(ø7 bï=7`£Ä6@l£lœ£6ê `£æ±z”|Ž^‰:´”œºÇµ…NŒbX1M~E»É#oùmñuøö”€h &qÚ•Ð× 1n¢`eâfK5ó éyÅÙ}Û|>µssì60N­ó{zAŠ‚‚TÙmR¤ê  UÿFAÁF´”šlÔAÁF,#îRJð:‰ëÌ ü€Ž¤(˜M¼V[Û´Ÿi) ö5ö™–HQ°Øø~ÍÖ6T(/UÂPõ‚‹÷‘¡ñÅÞcŠŸÿ`ɾe|“²ƒQ K¶-SqLy¬“&Á®‰—£ ‡uÚDõrX§½F`y¾ï~Bw™šÓPýzïÑ)º¤¸^4aj9 +õrä*ó^…Dø\šUè/Oë>³Í ˜}²2c»º,óµÙº~f]¿Ôµ‡ò©ßÜf26öŽïø —>ŠBT1ì¾uâNpepɃڔŠóräŠM]²ð—M×* ÷ä(Èeû6Íœz¤Åtqƒ“‰ëxZ]ËñW6×Yƒ[ð' RÌ&NÆ[ô,8½MY"Á R¬LTJñ•8=cÌv(7HQPjºÔ RíIãµ¾“Ô µ76¥¦ªü¡únlF99 rPg'øíÉÔ1¨RǪ>ØM¡6çfíå™§t…]^ŸKLê"s°E&=b¨Nùƒ-2^¢`6q=¶¾‰O“ò­âátƒo^¢`6q«’Zˆ?0è=ÔzIE!ª˜µhí£ÉukÎÍËêIc¾Z{AŠ‚•ÅÁw<“š¸N‰ vñÝ EAAªÅRuPªƒ£ `£=uƒ‚öXtݪ…Tv¹_ë胩[_F¹lÞSbñ޶zÈÖC¬÷n~ŽßcXÙT?ÂêÄ?˜í" í§¦;yhç) Råt§"U©:(HµÌnPê˜; Uà^s• EïˆÙ R,6ÖIdÃ]÷d„ÑN"»AŠ‚‚TyZ)RuPªƒUwl¡s‹j¯=½Î-Ü EÁlã¹,±ìΩ:E8±»ž;>pì4'LK˜ñ“f/GA.›w=õ^Yˆ^ÙS¢º§°¼êÉQ‚ò¤ø¬+Oƒ < ‚òƈ< ‚ò4¨ Û~ù=qzÆàbˈ¤(XL4¾ÐÊs½—ú™"!×ë) R;NV_ª RuPÚ鯾T¤ê`8çlYfùöÄ©û¿Ñî) &·±ñ\倎{®”Ïϰçê) «4¬ã%éÄé³±væFìŒT–øuK¥((ü¢n£ð‹:(ü¢Þ8Â/ê`8Ï•Ûc‡£¤ÜCKý„( QÅ®÷…“{œÀ—‡‘ÚñÆøƒe “'`Ëý9 rP'ô… : ÔiàªnX,é-vai›Õ¢íû‹?Q¹ÍUT䨿Mœº¹ð¸È R¤ÊEª Ru0÷Æ“Ku—;}À]ùEa^$PÎ à R,6ýWáãë„©5;¿öräŠy×Y| Ã+ å%?øà) f÷û¸ÝúšÂÀ¸ŽŒïÀ¸AŠ‚ÅDk(ËͰÎúé…Õ¼ó“Wµ|1eÜ EÁlc:õQnõmm‚&cc7)¶µE!ªf+üç9šÄéÎ=ËѸAŠ‚‚ÔNTЗªƒ‚T¤v&o_ª Ru°8W(󾫀ü(ÁUH ¤ ®‚¤(Xl¼Ÿé÷çLNëÈ™ÙÈy@µ;ø‰¦¤(X¤nw©Ü\ld»÷d¬ãdüDAŠ‚£ ¶qFŠÅFˆm4€Bw R~Swè Ð:Xf‡µ”e[·úRòlqOªàÔTâãå(ÈAè»A¦ŽA•:Vúàõƒ‘«Â.GÙpâôx^^¢  µ¯÷¥ê  Uso\ï -áy5Q‚Ü8¯(!Znþ%xAЂɯ}¼?gè~¯i7'®Ù‰WõM˜x¹AŠ‚ÅÆçæ—vâu¶ýŸ8Ý—:Ûþwƒ³‰ßÿÆYc þ=o~Šï£(D³žÔ¼÷Ì)úXaç1n¢`±ñ¸”u WŸîÓ}9Ø}ÙoŸç³Œ2ý™šq“äË´ØO £E"·Ù RÇ H+=°|1÷…ð}V+±çæk` ºAðçõÜ EÁlãòÜL’=œ+Í œcùR7HQ0Û¸Ž—¾òû7‰¿Öb?1Œb7í]Lß§ê5É‘uÞ×ç;ŸÕ0CS‰¿IµoÍÖ¢_1)`u§õx»Z Sƒ VYâå(ÈA³¦žLƒ*u¬êaŒ)ÜÞ,-«S|iI ¼× K‹¤(Èmt¿b¶ïÆ»sŽ‚\6ïjR"Ïèz¯Ä6¯Á RL6žw~Ð]I~NÖúü¹ TT¼ Ü RÌ6Î%œÑ«7†–ª2Œ¦PÁ‰Q +¦U3×qþ›8½””Í]7HQPÚ)%íKÕAAª–Þ8µûOz‘vž‹õš?«ÏL >'X}¦¤(XlJqAðÐbºS³±Þwrä²Îu‘žø˜+¿tn¿ô'†Q Ã"Á5C‹HÃ"ULùÎóšDj˜ RÃòh^ë(ÝqÇä\ßÎH7i>0PŸx¬ØÕ R¬l,¨ã‹Äu‚4ˆºAŠ‚‚T´ž™¤ê  U©öðÞ Ríáý¹ÕcÃõ–GÛn¢`¶q»?ú ¶zÇ0 R ëÙ9Œ¢UÌ:”æFçÃɽ08¹Ê¾Í•]Éîâ™s³ÁÌl;óaðHy«îŠT1,RÅ‘âVÝ©a‚H Ë"ŸúºúJoƒ=nÁÒæàÅ0,r–^aê‹T1,RÅ„–|ù˜ZRÄ–Ô°¼,ÍŽÕ kù²@-V|íX^¢`±ñÔ^4jÃÚƒZ¶–_­tƒ³çu) ®§=¯Ù°YÎl;¿!¥œˆ—Êù( Q̬*eƒNÛ‘+J¿ÆÓæö± ;qªÆ’^Ž‚\¶o2òºâê!«+vƒ‹§ö¢”Ð8óýÓ*‡iJÐ&®S €S´n¢àß((Ø(¿¯Ø¨ƒ‚:˜»qËj‰òÀ(pÜ«¢vbÊiê©ÌÝ&ü’ã”ÒtýzÓk9ý(åZN>Îl é¢-ÜÂBêä(ÈeûÖª0]ê>¾Û&h|¥£z»­¢Šs§«P¥ B•* _e-¬Å£ R¼ˆ›å¡(DUfi;zë± ”ýÅü‰‚³wÆÃ7|¸N5ÎÌx9 rÙ¾}öx¸CÁ¾¡ÂïêÃÖÊ[W6:}Å0,òÖ“¾HÃ"U¬tÀóz_"c‹°VâøÞ‰Q ˶=—ÞÌW ª‘(»Üâ) f/õBTpxýÇEK¦¢j¬_pçïä r WOuCAN¤(˜Mœ*wØx§°PàVÆç) f÷—ób:s[Áç–Mgnn¢`1q]Ý™ Ie÷8×â£(De³ž§õÑÈúܦwEÅ R²¸ÓGQˆÊf]ÅÕ´ŸÜ<Ôû‚âjú0ŠaÅ´ãu·‹ÏÀÛ¿•«i.M”¶Æ2WÓ‰Q Dj×b‘&ˆ´^Âa˜Õiwb‚H ˃dºoZ«5ÆM’ûÝb?1Œbi¿MãÄ HûMšOsYRËìd6c%êP?!ŠBTV¸Ü'ÕËö‘­S²­ä) b©³ì?õ¥@,Õ ­*{¥J«ê Ðª:˜Gör™.•³Cèm­’öâÑÄÕ{‰É'uƒ©òb¡HÕAAªþ‚‚öÁ 6ÚC„m[´d¬`cåÔ¨`£¤(Xl¬Â ë‰s‚Þ>k/ òQ¢²YGÏXѤü‹g|…¨lÖsÓȘ‚-Ø6UA¡½ºe;ë¥Z­8öÎ;ôŠšœŰlÛÕdĶœ™ûò`J= ?„wbÃ’mûsiÈš$Lˈ±ÐĉQ +"wK†›Úä²£EÊþ®Hƒ"u ·¤œßï7¥Îá¶Ô9¨³“ßïê4pP§+³îý$¥éðvŸ6Èò<¨nîPKˆbé+Æ(–»`ª¿¦Q¢ào©íK¥°]j+bÃT þšÞøð×t,ãùö%öKáÚŠD‰® .®pbÊi[(º~8ðpG?¸örä²}KÕuÖª˜I®¨Ðq.ŠB7Ë}ȳ¯“Å}âÅÏûZ½ØóŠ ›KÆÎ”Xôrä Î Ì JË}°5¡Ç{†ãÐ#c`ï#E!*vœ|y5UU$®3 pY…¤(XL¼ßqtŸ;ïçýY2_F9Qs>«0¤¼]E (O źò4ÊÓ (ï=Í ò4ÊÓ 2$N¶¥Ùf˃Um²89 rÙ¼ë>¯7Þ 8ÖŸ(ìwƒ¹‰ÖBdâ‘L©Ž[ØÐ¼7ªmi7E7HQðoÄ6BWÈb£Ä6@l£lDn©ÉFlÔÁ4T©òŸõ#ïaòŠS/GA®˜·Uî¡3ƒË÷?e¿Î=M+”£†DNÈáÓE0$Ò€‘÷GŽÕ ÉÛÊe:AŠ‚Xj§6¹/Õb©0êç±Xóqw×î#Æøð1QâƒhøôщQ ã¦ùN-µYXôÒéƒëË‹ìWy»AŠ‚•k(·ulU ุÎðÄ¡€¤((HµßCqƒ‚Tüíi 7(ØhOcûý q[ÍñÀ(mŘÙúäÃ(†qÓ|åàK)¶…þØÎPÌsœ÷£aÎ4ÿqñ”£e_y ·çÓÝV\…(¨ÌªT¨R¥á«óGIàq]ÒE•^*õ—ÅŽK4«[ê'DQˆÊfMÏw¯œyýÄ݉šÎw·yå) þ‚‚²³©Ø¨ƒ‚:È»Ñé:žSUº&.^lÓI² °=ÇGQˆ‚ 奧P¥ B•* UýÎ<â§D k>orA <Ñ…éÉÓ (Oƒ >ŠBT1«Npjrª%j<Áá) Rå¢Eª Ru°tÇùš &çê:æ½3}Cn'F1L©Ý¾Dj˜ Òt×÷iéA¤† "5,’e~­¨r‚…&ÓRUN¼ ï ’$Þ|…(¨Pü’]W¡JA…*UþyöÁ™ÄùpZl-,“ \Å3aô‚‹ïó^“K:-U†Ëv)¨¢´µ‹e¸œÅ0A¤vX©a‚HÓ­ã7&®]}‘&ˆÔ°2Hî ÀZM¹mé? Lôí¾vì;ôûŸûÊîGÁÒÒOp¸AŠ‚ÙÆçDÔ|éb`àÝ8¨QÁåGA.xUöY‹XoîaL MyŠ„i‡jPdYüRE! *”ë{ U *T©ÜðÇ>‡òfóñ¾¡dÛ_Ó½ñQLH û«¤(Xllò´ö½äáàIXo>Ÿ×(¹lß5Fâ­e¬j$ß“¯ì ’&^Ø}…(¨P>Eë)T)¨P¥JïâV,G­‰ªÎÀ Q«¢UÙÕ‡"Vgw´ÿ »ù–ÒŒwjYÁ¨úr×=ɾG‰WÕ>Ž‚œ <ýbÒ©r‚N•+Ýpñ\ ©ì)qõ`1•=¹AŠ‚ÙÄû) £{™ œ÷;`š…¨îž ÛÁ&¬£†EÎïÌ"RŰHZòí©›ZRÄ–Ô°2Hš ^;¯0¹zCŽý—ù¹±}Séç{¶>™tæ“z9 rX' ã-:uëÔ9AçÔ©r‚N•ËÃe©]il¾\‡‡B×q\…¨l×¶ò¨ÇT‹”8õSš¼É RÌ&î{)³gËöNÀô3Ñ^Ž‚\Ö™Þ@¾ð—[ïýÝ\×¢ÓÉQËÝpÈ_~®6sV˜(ñ”®Å~bŰbÚõÊñÙ|±Êõu‚/æ) fÏëu f×±ÉÛâÀæEP Qy¿Ê R,6^¯‚­q¦ûcINï1c‹¡cÇ̉Q +¶=•SÆÀf`Üóe°EãÌËQt‚¬‘I§Ê :U.÷ÃRmñŽ[‰S¿ÇÅ·x7HQPŠ‚a“T¤êàß((Øh÷¸Ü `£ÝãZ×&±ôÞFq†(aâ\6äÄ(†Û6mú¯ù([ç«G¯þó‚³Û«úÎàª%J ı«æÄ(† "µû“‚H Dj˜ Òêô:1A¤Õé]Ÿbz9rÄ%š‰ÓŸña5“n¢`‘º~ýÁßhš×PüÎÿÔ4ûÈ;ÂÇQÃ:ÛïØuêÖ©seÈT‘¸=ÂMØ»^ ‰{9 rÙ¼½šöÚê„U?g›û®¼-,L'WÌk­â®Î2¦ ÓöÙ™íê>ŒbX¶í|V›ã§FÅü0Þ R,&Þï€;ïP$ Âô¸k± Õ Rü±3Ú-6@l£ºÍzSwè Ð:˜êUçḊU îæD|ý»¿vÈeé`6Q+mÙä`̇à‰{_–ë§6|ŰdÜ6N‘|ÈUn«¡íf´«"ìŒÊQ*ò¦o^÷¬ž–8î™öG%Ð…Q +í^'‚kÓúEwG£*öÃ(†A‘ȵ5ˆÔ1(RÇ HøÎ²A¥ƒ2 \)Ïg†l çah‘—dE!*6¿§·)#³-ïÖ£'lS¿8$Iœþ|‹IÜ EAAªv RuPªƒ£ `£=eâu°Œ¸»Ñz:<0îàÀÀ‡ØNŒbX6îy¶WòžIÈêÑ¥Í]VëÄ(†eÓ¶ñëÏZëŒ ÷Ó† gÂÄê«û‰aÊm÷(q–ÔlÛûÆ)™Aílž'Ü EÁbãyp-YÌ¡çN³íïøÇÖ4hýA rEè‰Ó¶£©°Ö>nàâ‚­ÿΣîäŒã;Qýc|%ÊËQ+žK5@Ap( Ðĉë`Ëý9 r•}òée㥖èòu(o ~=E (ï½äi”§APÞ{;6ÈÓ (OƒÊ€¨“(`ÃI”}¬ý½ŽvàÜw¡;€ˆë}½¹bß³÷Ûnâ C?÷Æ~bŰbÛ»Úr—Ù¶iú6¥ú•ô}i×~7HQKí|ï¬/Õb©0wÆ\Åæ»v‰ÒªXLáÄ(† "ÅØ /RÑ&ˆ´FgNLiÎöyyu¦p|_î„“¹¢.ƒë;c™>؈´ömÎ&û•‰îv¿4À Rä&z‹ öº¨  ±”QÂæâß›2F^Ž‚Ô9ÅdêT©c¥î§#Ý…t»õà üqæóÝàË}°Ú)k±žS–¸WÕ÷É|ŰbÜT"dÇÉ÷ÃÕÎŽéàÛËQûä*û¾cÕKîÎRiNŒbyHnN_¤Ša‘*VFØý–‡·ü.q`ÚuËï¼¹lßs…Ç|÷gà ¼þµàO¤(˜m|žäpé ÓnóЇQ +¶Uå“M¯÷¤{GŠää(ÈA¯wu8¨ÓÀ¥n8Æ%pÀòPÆš‰¡¥a§Äe.ˆ"’7Eä©’§BHp†ty*„ä©Põ~£—Qœ»^iŸî~ãå(Èeû¦çm¬ñ•£î_§<æé å}2x½²éý¼¤(Xl\ºûÎV<”^³d…¢•>ï,Èp|¹»ægÿr¥ÆÈËQÃ:ÑíT‹NÃ:uNhO°4›ÚSå„öT¹ ÷ÊšbÝcy´Ûöáõy‡ê½¼ô.ð[G:Ê’í¬Žõå/?1MÜÌ·®þ©£EÊù·®Hƒ"u Š”ýß®Hƒ"u,‹Ü§Ã ïl‰öaðH9@îŠT1,RÅò„Ûo÷AöÏq•kâ:ŸëÁe®n¢`1ñy„JYÂf¶„MVTó‘ÕÙð;Èn¢`%u©Öi1=Ë4+çõrä°N´¯[têÖ©sB{‚‚S{ªœÐž*Wíê¨ ¸s¸~4a¯Í¹[>ê£(DA…`xªT¨R¸ Á]!K#ªnE+ã£ÚìW&¿ {‚“£ —Í;›ü¥VUak £xœï2ïÎqíÀ0åK¥¼z÷h>§bòm×dOØt ™0õ&0;‘ôrä’yçxFz“2çx?sî-8<§ùõ˜ˆåØîœ–îxn³59’[QdÙsxAÔy×îxCóƒeTÈ܉Q ˶͕«¶S|ÿó¡¤ßþtA<°½éòTÉS!$]Ñõé¨SyT,u†ÕP®60Pý¬ ϰºAŠ‚‚Ô5*U©:XºcrKݺ„½’=ݲ E! *óÇ P¥ B•‚ ÁúhP¨RP¡J•ÁQ92ŽÒªÄÕW L®Œ¤(ø7 6Ú/ªºAÁFûEÕϼXRugë4;1ŠaX¤œªëŠT1,RÅʄث£†wЂË×–Ø7ô(Ayïã@ƒ< ‚ò4ÊW_ úT T©¢ðÎ¥ê‡Æßî EA,µç}u¥@,Õf©Û(§EKg#ëxF1 ‹_ ê‹T1,RÅ„–|¯È¦–Ô0¡%5,/­©`Ù™ÏÜ"eópvÙËQ+ö½¯õšîfg°Ê,˜. »AЂů‹›ØKð ó;B^èhÎýîéêw—¹ëæéßÿÅc÷´ ¹Ü4ç|X–AV±îÄ(†a‘ò2Ø©bX¤Š -).ƒý–Ô0¡%5¬ˆ4}B꘹HF1 ‹”; +RŰHZRì€~Kj˜Ð’–W̳úÀ²½D'aÚ9^þâå(ÈU:OCäy,,„ôaðH1òì‹T1,RÅò@¹lÅ=ìt.aðØû‰aÊmë}„(¤qAw¢Þc²[Ò}^÷G¿ŒŰ$òwÓ~º¶‹£†EÊ lW¤Ša‘*&´¤¸Àö[RÄ–Ô°2v½œ<ÓU¥kª¦pÓ…ÑõP3˜n)àÄ(†eÓæ¦Šá½(à[X ÓÊáX2Þ‰Q +¶ÙªÙªœ±÷y}oUvbÊm—A¾> ¿æë•6€EÕÇÆ¦ª¤(ø7 b;û6@l£ºC®qWºC…îÐÁ<â–{ĹKg¯õ¾EîLf %Žä,œ£Vl»w¢ñ•ïß L\§1[ð' R¬L|mK¢1qò …^Ž‚\±ïþª·ûl ƒê…²‹÷¡¤(˜mÜêÒ.ÉóçÄJ«æÛØ>è¢(DUv0@ï$JŒp%£VL«|NÕ5JÉvÁçôaàHT e©cP¤ŽåößOyCè-{'–ñ «ž£–;fùðHNfLÙ$YŽÖ‰Q +¶Ueç3X"qÙyÂÞñS¿ìÜËQƒ:QNÒ SÇ J«úÀäòÍ||™>_Ë“ÂNŒbXe[Y˜÷®£J&Û“´ “'“½¹lÞùÔ©úî7&LKJîÌÉðaÊm÷{÷Ó×Y•«ë7´s£\÷WûÀMùvŒ;›å^¢ –ÚD©K5€B«Ê[ƒÒª:(´ªæqsuŠ;:YØ«SkÑÉÂú0Ša·mÓŸqª õŽñÀ1%OÖ,nŒbX±íŽX:ïÄTÜÛi‘Ÿ‰qcòqsÇ1VSLyøÍã¸1ŠaÅ6[¯¼Iªôù­Â»V½ôO¤((H•Eª RuPŠ61“T¤ê`5p^YX=pûåîR³‘;‘ëÂ…zûtëÂnŒbX¹,¦j—ƒ­>Œb)¯]‘*†Eª˜Ð’âñh¿%5LhI Ë#ùÿÏÚ¹,I®³Zø2üG¦íôå}zÀx¿ÿàT—-KBÀúL»ã«\H².€ÐÒnÏ…´5®Ø8ã79Ãå°Ç¶õ½‚ /†Ù·%†…2DQŠª†5þVèÊ|1J$k£ö˜öm]bδŊ¡ýƇuZ £VmÛVÏÙ¼»bT1tZî®…1Êam®]éÌûÍõ*pïj c”êmmhÊ}¤‚ø&nšJ€”©ÆM\[*©¬Ýqè½hmÚ¶ÙŽ@œ×Œô{˜ï“Ž?„¯ö7~ eÁ?Y°6ÎìÙvm¼I¯,;wùÈ ^ yðjË8/®4U¶×{0°·a»½ F9ì±m¹|±D˜ÏÒe†«ëÕ‡c›k™›9ÖnÁ©ªÛ©a²`•zlõôi¤V6]GAÊ‚²Tã lKu€²T¨´ªÔ®VÅ Òª¬ƒ¼]aM‰ÇìYtXcå°Ç¶µ›³XÚ¾Š®Ã²k•üM€”«Í.Í}S£r‚ìÓ¢ eAEªîvR1¨HÅ`íýw †c¸<»mW”2ÊQ’{ ü®Þ2.ì6åä\Ù0HY°Úh¤?ê¾—Ïýªn,ûå³]O „ýÆ?;T׊ojökà ú>Ü5ˆ›’%¹jŸVlǺÉT9ø|`•)Rä&ŽNVÄM@°Û"XéÿýVöŒ¢%*\R !%*„”¨ðR)Q!¤žÁq\®ÀP‘ªŠ ƒpŸÕµP3[ð¢ eÁÚ2×:â.÷YÁk†x>Ç>86a†Ïq ‰'M Ê=2ÏÖÇä.Õò\æŒK·`¶§að˜Æ0ÊaÕ6í­Iûk8Õ‡ÍÔ(GI®šwfÂ!7&>Â$`S£Vl›ß­»Í}¡`èkeî¶ F9¬ÚöÕöŠvà~~­³×t©Írž|áÍÂ(‡É"õÐ)b²Hˆ)-©Foì–D˜Ò’{ÆÉ§) ;/ø¦»`ïa’µ÷ÜQŽ’œ¨Ó(¤eêtp¢NW»A9Ø3ßü²sº>— þÅWž Ÿ0çö­È·w¾ Q”¢ªa+Xå¤Üyîâøk6YÞUµP£çÏ\Uƒå0Q¤PË¡R¢DHÕÆ?S>þY½ìd»ø£%¹Ç¾ÅWUdíO¬& Ê‘šR¥¨jØU•ÍYºìÅ0ý¼#_ø‹r”ä¸yêd®aj¸ÙJÁûÁš8®#€XÁóÍ<½pßðÙ_1Œr˜,RÙ"!&‹„Xyíí±_ãÛ{R eÁg¬|—Á“"XØ×Qü‹µÒîB5AÕµöQÛ[sÍšçãyû8[fîÃ?Â1Üå(ÉU¯­‘:)Éwª œÏ6¶é‹a”Ãd‘úùÌ 1Y$Ä”–TÏgvK"LiI„=£¤½x'ìg•ArSêS¾xÄ(‡‰"…=¦C#¤D‰ª¿¸Ö› ¬ž%î^ b”êmmõL!v)»W ¦§›ËîÕ(GINÑ ƒ0ŠNÈ):ÝAÆ K'ä«ÃåΊV«q+üXוa}ž×ÖûØÙ ! R”¥ŠÙ?©P–ê©Ò&Î%ƒŠT >ÃæèoÕü~„:ÚÌ |MýÅ8!³ØÌ¬ˆr”ä¬æÒ 9E'äš~ØE_´í¸)uiQ¼1Œr˜(R /:DbL‰±Úþiî9·v™à¢ê¡)Q’ä}ê#‰CLmî6& ¯Ò=ؾwÖf1LÛÚ÷Ô”¢(E‰ …-C!¤D…Jß•C"ÆDkÆGÝ „ÑÏ»àž/qâÅ0;R3œ>B¥¨bØâq)°Ø­«%Xà6ÂP‚yìy¿åÉÆLd+”^ie²1ÊaÕ´Îa(mR{‡á‹ƒãºl—Tƒ”«pQÊ[ˆåݶÎl) ÊR­³†)ÕÊR "Õ8kØR1¨HÅ`•z yýÀ¹]¿gïjŽr”äžþY\ùílÝZæYéAévç‹Qʦµ‡¦ D¨õ=B—‘ŸŸÅ†¢%¹ªóôÍç›}?Q² ,Õ˜#l©P–ê©ú¤bP‘ŠÁGê—ì“¥S„AÊ‚²T#cÄ–êe©PiU©;\­ŠA¥U1øLqË•iê.Ñú€ëiIä´¤RSGä´¤E)ª1kU–?;ßgùvéõjÌŽo¾«ë„Ãâ‘,Ä(‡UÛ®šºÑt÷e{ø È«ãJYá{hÊ@”DyZ7›ò$ÊC(O­dhꃔ(RuTÜõ1Ç#›ù8@áT[M9ŒrX5®Ëa•VÅ>ìÅ@!·Ç®y) V»¥Æ( pro^Ò?¹A²à#uwe¼3;ÒÄ0Êa²H5ãÍ 1Y$ĞѲïÍ"à’Nw ÊAò(GIî±/s)å‚Pö÷lF Ê@½M^CoTstu¹E"e jÔí¶ŽåÌ,Çý À{˜íìñ[¸¦|‚kü9JrÕ¾ºÿ÷ßK¸)½†·rˆa”Ãd‘0´'‹„˜,ÒH\Î&Ž]ô/F©9v!†Q«"?‹gY[¸ÈF9L©/k¦HˆÉ"!V‰Çë¹rËfåd?2S‚¡#i6Xb$mˆ‘´½Ú#iCLwâ§}¤þ°íÆM)燦 DH”§t-yå!H”§s-}BªŽŠUû)9»PªgMNÆb”êiw)1:ø7ÜV Sg̃ÅŠRTc˜Ç96ó±¸9\V3Šˆ2(Oý¾,yå!H”§]–>H‰!UG…–°a–ø»1ã¢VÏMIŽ’\5ÏÝàNùõýž=ŽkvÌ.ÈTbçìE)ªvû åÍ“œNY i*©)EQŠª ¯¤\û) ÊR­à )ÕÊR ÒªúçZƒJ«bð׿3›÷ù£ì5‡î A”DyêšcÉC(A¢<}űôAJ©fT´¾4Á‘#ûÒnL61}iQŽ’Ücß|U!'F«y¢A¤,Xmü¶ „¶‘¯•¬s›gÿ1Ù‡wcâ•w›rå°Ç¶¥9ù/ÃLÿäX”£$§è\›.StB®é†&Ã}'¼`(0Àr0‚å°jÛñaAWaìÂ}ž…ÎU;ˆQEêÙ™¦HŒ‰"1öôÀÚlÕÝWŸ %~sÆf=†QSDjcˆD˜"aµý}ù†¼ÐTáÞÃÑÑ.4å(É5ö}ž.^ èÁ”­lOM)ŠRÔ£ð»\‡ˆUm‘k>?¿lýˆ‚”©ÒÎ%ƒŠT >Ãå»6§`.ß‹aÀMÁ׺E)ª*¼Š7âÎãÛ”4š’ﶺkp—ì\ïä·`M¬‚¯œ×Ä b”êmó•†Ó¦–k“ÿâà0AØï¾D9úçß»Óv¼cŒ² ò‹xp*¿Õ×FÓý~Ç‹ƒ¿„õœì NY²`µ±é~Ç;3/ƹ2¶¿<ÊQ’kìk“ç`òQå®d”÷àž± õ>¶Ç+õ†AÊ‚ÕÄ+Á?š¯·îW•Ópìb="WÏ^ŒRü=4e Ê@¢<5AÂ’‡ Q‚DyÚêeÊC(AÏ8ï˜O,½òk¶îJ•vÖYÒ³uˆa”êmíŒ,%•+32¼N¨ÌÈAŽ’\µï8rÁ›ÄW¼‰‚”‹ßg&a£³@Z °§¦E)ª1k}~_ùþõ<|°»Û¥ž˜Ëî;_ˆÇEج0P0ý¶UÏMIŽ’ÜcÞòÙMó®VáÕ[ ¦ÿ\ÏMIŽ’\5ïøøF ï¿õÓ¬HôÞèa² ,ÕšÌL©P–ê•V5"Ñv«bPiU þWÁúa‰nÊwqS¿ÛR©4°òYÄ0ÊaUäìiï>odÔ­^8x/\®p€ó».žÄ¼¡eGºÜÐyˆ2(OM(°ä!H”‡ QžžN`郔(RuTܾL_Ø®v•™ž í·'»ò) ÊRE'…Gª”¥:ÀÚ{#ðQáà 3ܽ) *R¥TP—T *R1¨H•—T *R¿ø½—=ïúEYPþEÇÂ'ÿ¢TlÄ+¦bc`©ý^EK¼¯!¼²ø£ AŒr˜(RÏ0EbL‰±ÚWR–·&qå¶&!Oõi²Ë…²ýìnE¢ $ÊS–<‰ò$Ê·—yå!èÛÛwî-%¨*غWõÂ_l¢?&8eAÊ‚ÕÆ+:˜ßT°ëë|CnJr”äDI™I•‘÷‹Y`ƒû;ñu‹¤,(KÕ7¸@ª”¥:ÀGª«Éüþ°y)†Q“Ej b²Hˆ=sÄî Ø³ä£ÞGL©ïää£0HYP‘*…y\R1¨HÅàÓǬ\`2kL [¢%9nÞèÈØý2•7«äÅ@6ÞER‚E¼ Rôx¯ F9¬±í÷XLøž^ç=ËÙ¾ž²ìæúÍï™}·!ŠR”¬plBDÉ UMåý 7¿öéDAÊ‚²T½B3êe©P‘ªÎdH*©,_ßö~+I€] ãÝG, @æDƒå°jš'™Œe¨HŠyŽÔ”¢(E5f-ØÝµ f-ò×J’‹Q”¢ªYM"Œÿµ®‚éɯr"L”£$§è"þ.StBNÑ)lÞ\:!§è„\.]Ò³Àí×0û]ðöƾ»‚ç{Ø}›·Ä£%¹jßµžÇnQÊœø5¯DH”§M ¦<‰ò$ÊÓv½¦<‰òô ‰Oët¼ûð€è´ÂŸ¨ƒ”ëvDM ốÒÖQe3¢(EU³>_ϱÈC1>$cå°jÛâ¹À7ôÙE)Ó[Mˆ2(O‡¦<‰ò$ÊSwí¦>H‰!UGÅV=•F´ÿÛÇmn …ß¿}l)FQŠ’±wC!¦$…˜ªM¶FJÿ6·Î)X¼ýÅ1ÛïÃSAŒrØcÛò®m‰_ˆy1LP.-å(É5æíâ†ÂŒ_jIßðîðYsýn.ü)ôŽ®™›’%¹jàŽ›’¯ Z’/ ëÆôµ?¥¨æ·¿BJQOc|?õ:™´±ü­\3¿ççZ+'ˆQEJ{6‡HŒ‰"1&·¤ô©yšsr[bNÔ)×qètp¢N÷|ÚßEs8ØÞ¯·ÆË - >ÉI¡šºä”Ð VÍÛ={ü•æ»k×½²™(†Q«¦uivÆ1ž‡† ˆŽÕ<4ä(Éq×[ð¶ÃöåÖ0ÈMtƒÕÆS ïÛ÷0 (TIJoE†AÊ‚c ¡?œÜîï“Ú¿¾EM)ŠR”¨PpE;BJT©Úô]æ·1»³îÂù–å6?\ô®À¶mkä)ÉU¡»ãXÁ×…›F¾,„(JQÕ¬¶b•ã Ç´½-zÍ`Ìiq'~Ùª) þÉ‚²âU9P¶ÑÊ6:@ÅF)ê²ƒŠ¬RïZ¼À{1¿ù±9 R”¥êÎ$ ÕÊR Òªê €ZƒJ«bð?†oÐlû÷xCü¼à‹azP¶ç¦$GI®š·bdȺi^ ­{0Ÿlˆ¢UÍÚ¿Õ½&v÷µ\w¶Üϯç 0Üs}@°-®ä†AÊ‚G—¨Ÿæ†¤À‚ÓÕä(ÉU›«™FšÎÌöØ76«ë`ÏMIŽ’œ¨3)3©cµ® 7\z{;6ýæFÓéCv÷±/ÖDqmbù %…çÍ›rå°jÚ¡œævŸ½}Ùò|cÃ×#RSŠ¢%*ÖV‡BH‰ !%*”Š‘:$bLÔˆ±f|\ßÚx{–¥%pïUÕ ¶çêÞAàµîí ð‹sͤ`qS’£ý½óý´ %¹§=Ïæ~–ºÇá÷³Ê%XåÔÞSSŠ¢UÍZ´$³èv~WÅ•Ô]LÝÙÞ9†QSDª·gm‘SD"¬ôÀþ~7¸tÿ_Îa}8õ—sX£%¹jßu2šûº¿—ÙÓœsßç*?X·³ƒå0Eäø±ºD"L‰°Ú÷¹3x×°púëò]Ã(GIî±ïÓ9GU÷Ïà}À·êFïÁ) R|lü½oñ,ýä^(a§8BS¢ $ÊÓN¦<‰ò$ÊÓoÖXú % „T3*ÎÆ-á½l±Ï»–WØBþpÆ>ŸµÚ›÷Vil¯¿·£(E=f-ÝÊýE+Û‹sj~¦²r9Jrܾè“Èû²¨;QcK¹ûnœß[ƒ%9Y§äŠ÷èÄœ¬sµ®“#ò]ñüèµÃÚ• ) þÉ‚ŠkÖF *6bðéÆöI as£|L7Õt¾…M9Œr˜(RÈqh„”(R¼ñƒÙæûz…zô3’z8õŒ%‡¤¢%¹jßV¹³îpf—l ½éìšm”£$'êLÊLªÄXíõ1CÐw]Ž™t½@NÜÚ¿MÈfq‡B Öì\±(GIŽ›¾@¹½µ&Y6êþ½B â,¡ÇCLúhõxH£ÖئN »Þæ gîÛç£ú1ëïñ û6}ÎîÚìÛ]ƒ/'öMÈ‚ û*d”£$WÍër1Œ1Íg—í[}*<•›Cý0¤©D9JrÕ¾&¥:¼\ó,#FQŠªfµÉÕŽçx^ ^Ÿ°“«Ã eAEª¾ð©T¤bð鎒 e»í6¶0Ü”pR¡)Qå©Î4K‚Dyåé®4K¤Dª£¢;UŽåTQ8Õÿ£œ*‚%¹jß®…¬eÿ⋃ópJ“Á) R|l<®§ ÃÏìGSC 3ëûÓf%Т(EqÃb—-žßÒ<=6æÃË|˜(2§1'RMã/Í>È<<×èø¹åpÝkãÇ–E)ªšÕÈ´[ì`Ò|gÈbå°jÛâ€!ă( º]^¸)ÉQ’k lÒ‚Ïßm(‡´à0HYP‘ªn(‘T *R1øtÇyÝ >óS0»ZåðÌO£Vm›áB^ƒ¼PªK¤Ç¦F9Œ›Žu»À|Ë*lì§ãÒŸlOÏ=8>ÕF Ê@<=Öúìî~ãï]îK £&‹†½G$Äd‘SDާL—H„)"VGp—#%z”Ü£sw¹+gþÁ_Å=jþÜq?µjlÆz°·|Îï©)EQŠª†}¸³ßáõý¡öꥴ®Å2Wÿñ¾OoƒHùðöbœê-î±)‡QEJ®b‡HŒ‰"1&Š”6‡‘Eb¬“»r”/øÅ0”LÊÒ•ƒå0E¤zb´E"L‰°ÚG³k <äu´…ê5Ç&/T_ É;0RSŠ¢%*ð”YòÓ–Ìs¼ ^-SJ™Ú† *±ÉC0BÒ,¾_0"fþ(GI®š·»¶Õ+o•&Ý%3¾doüy ä1·§<øNê‹cfZÍpÊ b”êÈÕ•>ÞlüGAÊ‚²T#ìjKu€²T¨´ª:« VÅ Òª‘_¼ƒÙ®O‚RTýp-­_°^ŒC{=v×"ˆQE{=K$ÆD‘E{=K$ÆD‘«Ã¤9Ç9^Y|¸åíÛñ{úÇ2áte­þp‡ã`ÆB?”™¼ ŸŠµyP;Ûro\ÞJ8­§¦E)JT(DY !%*„Tmø¦¯º[þ°½è ì‡í–C¥(Q¡ºµ"HÔ‡ ÚêZ>øø‰¼z´ÃÌM @”$yj3ê#‰CÌÓÜ_ta\®ÄR8°VòB,AŒr˜(R_+M‘EbL©¯•¦HŒ‰"1V‡IçST÷îÃS18®28eAÊ‚ÕÆ¦B Náà5ž) þÉ‚Šúý`#1X»±É¸éý-urï$ao&`S£Ö˜fÏ0rZvÁÆ_³Ó¤¸ºÃGô^Œn‚M9ŒrX©ÖŠm=¯ŸóóÆ0ÊaŠHÍÑD"L‰°:HÖØÎQþpÓ4 RT¤J_K*©¡_TN¦öUŠ(W»7ýAŠwÓ¡v¹¨Â©û@fÌ›&myzlʉ¤&þ¶Mü5Œ‰¿†›Dü5ŒÕaÒÅhŒ]çÁv„{@܉‚”? g&SµðÞA@gúÌ- ‚”e©–3Ý”êe©PiUibrµ*•VÅ`7Ë"NæôBI¹}6å0Êaiuß©^pá;º²¢a×¹}Õ¸±é QÕ¬ÝáO\¹Y»ÇÇ·r³"¥(Q¡êvâ÷6z }èiõýš˜ÇCŒù€oÁ¤ç ­|£%¹j^wÅaVò‡co3æT·ßiy1n¶-7%9Jr}ǵª‚æuúá[‹7Öç1Œr7 ä0Ô·=Pø¯ÿ€m¶—z3‹'RÚVfUˆ¢Õ¶+G,ë Lè›YþˆQaExþˆQ¤,øØxnW"è*¬ ·óSá„%NÀ¦F9¬w¾?Ê”b>{¾µbiËï5^~Û²¾©W8ãÛœ² eÁjb³¥ô×9*˜~qWÞTF9JrŠN!›Ý¥rŠNÈÕnhï²I…é”úiF¨t¤Wèéže|9JrÕ¼¯óP÷îu„KÏ ƒ”«Û—}®”ÏÂá¸Ëù ƒ”ÿdAÅF# dÛˆAÅF Ön¼ÒŸÂ/$ž®Ò¥Ã½s>-PSGÛð´@Áôêè=7%9Jry‹ë~O)èú☰?©)EQŠª†5gÍ,~H)Ð[ÙËg”E)JT¨§[Y !%*„Tmx%ß¾žS°ñTißωr”äóŽ’7Û-º³n¤êOuá?Éï-ÇÔ Þ²\QŽ’\5ðëòÏòsó¹tw'…É®¿Ìøbœ¾ûë¹)ÉQ’«ö5kŽàÚU–œ›R”'†QkLkWauùꜫV꣑ëêºcËëçUÏx÷ކ¥ÇL?sõÜ”ä(É):…3—K'äºÁ߯ ¶²·…ö'¶ß6ˆQ{Œû~¸WÚõ¸já—ŽëØ(GI®±o÷ld¶Ÿ*˜½¹\ØçÛ>ú…Ù |L* k>¢%9Eç’Ô 9E'äï¤NÈ):!× —¹ŽMÿ3 çwx˜Ë•¦ùÃí‰èÇù]6Ÿhf;Ä>™™í=¢ eÁjã®lû»–9ø@»(Ô g!Œr7 ¯ê°S£ä;oƒÇ'¾•rôÏ¿w?èšß)E=m²Ý÷=ÆÏ¼_›?|') ÊR½Ž-ÕÊR "Ußñ©T¤bð?¾‡É»²0çÀM¡4ë……Nb7ΉUÓ®r9¾";/F)Î’š2e Qž¶˜ò$ÊC(OÛКò$ÊCPJ!{ë†ä©–•·..ž›šo%ù $ðð$ÿ F9L©åJ‘SD"¬vÀn}^òÝ̾¨cqy=?+o‘ HYP‘ªßÏR1¨Hüâéñ@øb¡šßZýýN)ê˜{³äªù¬|Ž!cÊÜE)ªšÕLÈîbM…Uˆy=© F9L¹æD"L‰°Úþ]›6—ó¶sW’åú{ ûÆÎÏ6l­djJQ”¢$…Òá +Ä”¤S’B1… Kt`’FöŒÜCº±ü{ÁÐá—ßcr”äªyZµ&usÆÃbJžT¤,¨HÅ©`ŠT *RÉg=(MG.©T¤b°8κöÕß šq 7%9JrÕÀÕôÍ)Å£«¿6<‰U8КÓXQŽ’\µoóä <Ïß½§.bLúŽ˜8Ù÷Ü”SI9Lü5lœøkÍÑ&âÏ9¸g¤œÊõ$û–qÁô…L¾Šå(É5æùïy½LìÎÖyÊ£Kš‡^=#<µ;Q’ä©g¨CŒ$1µ¹·Ã5ÅmlÒ¹94 X˜ñ9[˜õYnlˆ©¤&þ6Nü5Œ‰¿æhñç\)÷Ã`jøâøÛg?Ü•&ÓdLˆ{’þ ³ùï»–½oþ õßCÝðu©ˆðçFãDnJr”äªÎ«ßùÕÙ~¹å~×µ½Ñã(ÉÕ~h|ö↕BžžÎÆ(‡)"UO-aŠH„Õöo›ÿ}íºìƒ Ûk=ù JQŠê™â]êÁ_ª *8+>V ™÷s£¦ˆT‡‡-aŠÈÀ¯Íþ^£Õôµ¾ºU‰ýÛs±s³V›ëÇúŠô• 4›rå°Ç´Ï¢ßØi"oÖ"Ÿu7òN<[×Ü/¦^cj~lcÃø¦Æ ¬F9¬š6”MwÜ$ûå̪&J·ÍÍõ#©»ÞR±ñǬë-qŽ’\5o•7Ëæ0™µgf¿Í×DJsûÅ<[˜•KÜ]›Š•äF9L©Îã¶H„)"VÛÿªë^·0fY÷Ú…ÉMIŽ’œ¨ó#åŸ;t:8Qgä÷­ð¨9ņ¨ÿ*µ)³‘÷ü—ënb¨'}vã/Ø=Þd¤÷¾[ò¸ªWæôœŠÙUNúœ(E)ª1ìÛ´ˆ/oç³oiÝKãÉ>‚õššq=º.‚) ÊR­¤uSª”¥:@¥UÕè;jU *­ŠÁ:nîíºê¯éQ/Ωþ“ž›’%¹j_ûÌ›þŽ2«"ð ÖƒüôÜyïKcVÊœäûʘAˆ2(O›áMyå!H”§Mc¦<‰òÔ }ž­ó%+{÷—›U¿ªq‰§‚’£Ó¸Ä“) V›ÜB}/5¸Vol<âÏj£$'êóz:œ¨ÓÁÕn85ggwR`â~Áö¥nÜŸÔ‹ƒ`Íj:&@Ê‚ÅÆO)Ão_Ë‹./F)ë@Mˆ2(oœhò$ÊC(OØ?«úÌ”RU`€ª Á•«kÂûýÄ(‡‰"õĉ1Q$Æä–”&WOSbNnK̉:GLNÔéàžùª}w/Å/†ÞK{Óå(ɉ:¥k}™Ub¬éƒÍöhÜꨙã×kX\4FQŠª Ó3}¼ÏBå0Q¤1}Y"1&ŠÄ˜Ü’Æäe6%æä¶Äœ¨Óš¼,NÔéàê§Um”7¾/Æ©ó‚S¬ìs£&Š”&f‡HŒ‰"1ÖtÜWî¸î,΢œ…²Ý¤:%,h<4ôPc¸ù{¹ Ž®¤EåÔAìÀ¤ñáÀŒJ6…{¬û-æ,Zù›·À§F9¬Šl »Ÿþ žò1LnÊaâ¯á® câ¯9z\ü9×üÞáþâ(‰¿„>Sñ—Üß¶ëÕ¤ç-©ǬyE)ªöQ“›>îßù‹iYhFØ*oý…ÂI‘?`›>¯yVxúü¶›ý,'L<˜Òör¾DŒ¢U ëêêÄük@}ÙƒS¤,XmÜ›Ù?§_@œú°qƒ eÁj£²Y0^ ªÔx\_y£&ŠR[!%J„ÔÓø+bÎ|áŰf<›Ü”ä(ɉ:›i¦N'êtpµº; ÝÇcÝø¬«rÀxê¶bbîÀMIŽ’\5ïzI'zEâómÜVÎL•B7^y£Ä0ÊaŠHõÆ«-aŠH„=í¿½w£t°ªÔ¬8­$¥B ŸŽ•¤Ä(‡)"µÓ‰0E$‘ÚAˆD˜"autY[ÒVJÎ/* zà‘gBE9Jrm5ðq/Ü:/ÙÞàÉQ”¢D…j²·%A¢>ÕV¿²Fƒo¶UÐ<åó|ØiócOM)ŠRT5kV27ºsãv]Jáܸa!ŒrXcÚÆ×4ßf²€èÒ°›Œ‚”«×Pš}z¯á‹ƒð¤ÊÝQ²`µÑî}¹Äg??Í1ç§6à©L+ïê´á— ¥nÐå[€AŒrØcÚÑeöIGw%<|,Ú™³é7[ nÈÙòF1ŠRÔcÖÙºFO’Uðz\_6ÜÙgw¶¯2ªŸëÃMIŽ’\5pÑÎcö@9¯üeáéÞéù]û¡ù3n…†s´ðTûPÎу”«×:†GÍÑšÂ^<úQå(ÉU¯¯Ð[éóŸE‹EõØ”Ã(‡‰"¥¸žC$ÆD‘EJç‰1Q$Æê0ù*'¦.ñqïÏu…RÎK=4e Ê@¢¼qrÈC(A¢<=ÙÔÒ)Q ¤ê¨ØXâ‚YñŰfN5¹)ÉQ’uZcK§ƒu:¸§>Ž{Ÿü&L컘ü*LŒ¢Uͺ¦*o±ìʵOØ3Çh³µäž÷‡kNtÏ{”£$Wí»†IÔc?ÏÚÛ˜ÝÎy¨-Z8#*ÞƒS¤,ÈM*ÛNñmhП`úê*¥^îî±æÇÔ0§~ +ˆdð]£¦ˆÔ"@$‘«íßT®U}¿·lõtÚÆ ‹P”¢D…ª›Àˆ Q‚ª¼;ʈœe󛣢 eAYª‘bKu€²T¨´ªt rµ*•VÅ`ýìÐÍ–ë\Û¿×X9£.INYþùµŸ´ P{ti>Ã~–h·˜'Û /íìw"lÊa”ÃD‘a¿è‰1Q$Æjûƒ›oÊx¾1}g£ ®GI®1ÏW·n8lÆSøi+ Rä6êsÒyh¾ì@sÆ ÑƒÜD7ÈMtƒÕÄöÍEVºÙHvVXß³oõdiÜa² ,ÕZ=M©P–ê•V5VO»U1¨´*ÿ«`›º.}|æÅÁñ´/ƒS¤,Xmô·YÜþ³o™ôñ™Ãôc{ÏMIŽ’\5¯s»S†âv)ÜѳÝ.AŽ’\µÏ÷ΟôoL_H•9?ÈQ’«æiï.1nãö]^b6n`¤,ؘ¨œ%ºÏö`ŽÒ›B_ûÁ¿ö+ ½mà zqØ÷uðy0Rä&BoÛÈ­¿Ù‡Ï…Î;þÙÚO|ÝÔ<üØæù±™ýØ·IÍÒÓdYjV¡Pâ*KÍ b”Ñjâª-aŠH„)"ÕoÕ‰0E$Âê YÌm€|Óú¦Àt2Ü´b”ÃÓ‘¨…wÚâ‰-¼·æ6¾åQœ…S£.Š— ÈQ’«ö5ë±±ÝàËñÁ埯ÆAŽþý÷ì ÞýªJ9¬6æåóŠÞ›¿Ú Á|næs…x>lgÚ_;kå°§I6õ-ùÆ-ÄoÛJÍ~ì±úc¾e€åpLÈ…³nK1ÊaÕ¶æ¥Gi«DcolÜb€`l£$'êÏNÔû=s3Ú¯>”¢šßR÷¢ÂW@9¬°T¹³z¶„lJ¤SƦF9L©.¶HŒ‰"1&ŠÔÏÔÃû„óv­rÁ…æ­ËŸ×“çÏÏ[“?/Œ/9¾PRÒ„€M9ŒrØcÚþqÃùû …ƒ‡bþC¤,ÈMDÇðQ)ª«| A®ê\õÝTs¦8¹yÿˆ\!®Ý*ºB ƒ”ï§ÐUÞ7sRL:ZŒØ”Ã(‡5¶)IRýíþ|Cáp-þÅß þ9ôÜ”ýAúPz8\SëÐë®}ûÊû¡‰>jhNpëƒøC¤,¨HÅw¥©T¤úogÍGWT¢ëë!ÌÂI—u¬‡0£%¹ª“ïêØDx5Ë<óŽa”ÃD‘KN$ÆD‘“[RJ^÷4%æä¶Äœ¨S\¦:œ¨ÓÁÕ/¯ó IÅoX85l¨ø ƒ%¹j_ó‚°4Í+a§oupÖ±›Ç€Î· · \]Ø~'DQŠªf9Þt ÷ÍŽ—V†º}!ˆ2(OñuØò$ÊC( Qžÿ—®û¼Îýå°:Û,Œqög¬£”aÑCS¢ $ʇ…C‚DyåÃÂ!A¢<ÿ/}}\žäÄßs, âï…–’+V?r­/–?b[(Iâ¯Ø1ÊaÅ´åí¨`ÃoöHò”Ô”¢(E5fÕ’¿dcÁô­[ÏMIŽ’œ¢SM»tBNÑ ¹Ú ê ûºÜò^]kÓ»_›–w[1Õª—Ͱ˧­4áxbïÅ@øj/¯4) *R%W‚K*©lº£ÍñUCŽï›;Å7ÊQ’ã‚3 -˜Üå¸y^NÔi,´¦N'êtpµ:·¸v”»ÅL:9ënñ F9¬ÚvGÿÕàì5gŸ¶¶|Úp<ĦF9L)¹ü"1&ŠÄ˜(Ò¸YX¸¦çvO°æÃGåðɇÊF9¬ÚöýÖ:p£´€0Êß( ƒ”«»+Ø6óþÛ]ᯙ÷_£öØ67O¥K“Šk+˜¾88ë Qj‹þ%9ñ÷Ÿºø{‘)bîŠöI!G° hÔb“#Xa²`µñ»VШ ùf7Y V¾‡›’%¹jஸ?¬Û"…BÙõ;}Ç0ÊaŠH5­Ò‰0E$‘ïœH„)"V‰š²k;­–Ù—}Ëh-EÈ\–wsîÜ;- ^cùN. Rä6J.%= T(T°†E”‚7Ή)"Õ‚5¶H„)"ý¿öQ È%=ÈÕþžw‡C•ß½Y–ݵy_yì®íôÊ%„Q«¶)šÙ‹ Ò‡›EQŽ’\cžš¹ú›ß-*ðOsj½SÈæaÅ*·kâ_A¤,(KçvT(Ku€J«J=ïjU *­ŠÁg¬­Ý_õ<ñ3~Á€/ˆŸñcå°Æ6à»gÜ…önθv݃S¤,XM4ïyßéÉ¿»¤³±Ï¾æÝSõ§¾Ï¤¤¦±l|˜\å#~7qjfÉÆI¢ TMê$êàç’‚áÈ$1Œþñ×¾oO¼’EocÔÓŽ_˜¬ø½7´Wþ{×–(xgº`èú»3Ä(‡qÛ‚wì–osUale"øjED%jJQô¿u½Sꜫ(‡ÕFDå®.Ñç`ά/,>ÕƒS¤,XMì"ÓØG¦_|/Ë3 R¬66÷hŒ*ØüMáÚÙÈu& RT¤.Y©T¤bðOTl|gmÄ b#Ÿg\ú®s6€«Pª“«Ç¦F9Œ›fïFJÍéÞŽmž=Ž?îØÖf#¡Í÷åU꣮‰@S¢ $ÊÓÖtS‚Dy婇S¤Dª£2S–ó SVó GI®š·»ÎîÜÅW0p à.¾F9¬ÚvÝð†%K‡U£€¿Uñ EeÕˆ‚”AÐõî÷“ÏSÛÝÊà”) >&î‰ÆÈ-ÜQ½5ÅÀ GI®1¯&d«‘Sž](pêå ÙAŒr˜"RÛÓ‘SD"L9®û.‘SD"¬$ ðsåV<&ys°Ìz§,HYð1ñ¨¾A÷ƒ 7„b„Ü;¢(EÉ Õ¡©Q²BDÕ†o‡¤ÞaçÊÆÖÑN\›rå0Q¤´x8DbL‰1Q¤•9e©tp¢L׌”ÝaÞ0 ݘ¾2*sP£$÷˜wμY\Ï)V2áÏ)‡AÊ‚ÕÄÛ©iÆ8öÍa7…Ô;›Äbå°jtg^ÝÎaXÎëRö}LÀËÏpò„ΪsRÏMIŽ’\1p}¯5 ó°ýÚ˜þ^xªOml+27%9JrÕ¿ö‡ýÕ;7#„?¦Q0ñ4-pS’£$ÇÍ“&33ï0þ›íá7;5·§¦E)ª1«îv°[èÅ0}Ï¢¸¯‚%9Q§Uwètp¢N×tCã¶ÖouïÃøjÝòã J1Êamž‘9bÛ•9#%˜6åøgûÎs÷\…ƒw6xÆ@¤,¨H]²R1¨HÅàŸ,¨Øhì‘l1¨ØˆÁ:â¾Î Moæ1½ATاpS’£$W l×ÌãÒ¶ËÉ»pÓ/$ Ü”ä(ÉUóNϵSž¤Z0à¾âIªAŒrØc[÷0“tdè7/Æ©›ã›rå0Q¤tÄwˆÄ˜(c¢Hé›sˆÄ˜(cu˜\®Xx-c˜¦ Øœ2|Ót¤,XmlKCÅ›‡¸Ýé¹È‹˜ Dyó F9Œ›¦yZ4Ê÷l8ÏLº1¡RŸ„M9ŒrXµ­Û‰«—¯øN¼`à:߉Ç0ÊaÕ¶³)'Í—g­¼®ùbœº†ôØ”Ã(‡‰"¥éÙ!c¢HŒ‰"—'M•N”éàÊHù¾Û‚{Ö\É|Ë_Ç{Cþæ×óÃð,MŒ¢UÍjÒG³ä4Âi?%§Æ(JQÕ¬Ã>bËæï»)d&l³ea¡ÆS’é b”ÃD‘ÒQÇ!c¢HŒ=íÿAï×Þ%;w6 oÎÈíÁ) R¬&újó~æþH}sð„;÷'ê F9¬1n­"'þ€™_ßÏíJ“wÍ~ac›š‡k¶Ú7%9JrÕ¾.In°Õq¤°¹Íè ”, °•3z eÁÆÆ¯cdÎ}~7§îÝzlÊa”ÃD‘ÒÞÍ!c¢HŒ‰"­û€–J'Êtpu¤ bŒ÷œtô;á¡ 8eAÊ‚ÕÄïìØë~•&20ÆQ’«æÁ»ZrJäw¹_í§Ð7›[–ùtÍ-û"n}íf|f}ûþb*)‡‰¿† câ¯9ÚDü9WGÊ"ûÝúqÉß øª5æenJr”äó´bZöeYÖºcj÷ªÎJý„AÊ‚² lã,yy=6:@ÙF¨tÇ7ÛTºƒuÄ­oS-Fñæ®êéa¤¦E)ª±Kÿ’LliÎ Ò #ßO+ prÁ) R¬6oÒš¯Ì¿gä(öà”) 6&¶ý^;/"/C§,HY°Ú8Ü[r%·~…[D®äÖ0HYP‘*­.©T¤bðOTl”ƸËF *6b°Ž8X4JNKÿ®Z­ñ>ÍŸÇøáè™j”WG›-ÐøZ¡ÙE)JT¨VV^[QE)ª6ü¢DÅån~1•žk ƒ”qɉáí•B¡Pü0%¯Ütí®Íò.ÍCÊê¾á"ßâä(É5æÍZ4Gþ~yÁô“UÏ5?ç ¬|LaŽƒé HY°š¸ó ¶o庹Æ5ï[¸‚%¹Æ¾ìé{oÖ‹Æ»§,HYð±ñûvÊ¢C…WSûÛ°¾±Sfåâî[Y½¸0HY°Úxçý,*¨„g¾(æ¡Dg‚%¹j`ýOÈý:ñbÐïç$”òì©)EQŠŽ•š$ê üÒXÕ)‡Õ_Ó³ù„õ‹rXQma!WâžjY~wÁİ«ÀMIŽ’œ¢SØE¸tBNÑ 9Eç;©rŠNÈU×K³jÜçÚMÏ_¶×‰a”Ãd‘Â,ä 1Y$Ä‘ãdî‰0E$Âêì0¤†ûFɦíÌ!ŒrXµ­Íˆu<ÔÓ€Ú»¾@ñ¦ïdÛÌ(HYð±qCÇ_GŒòúÛ‹qðlRÀ) RlLüz–gîûØfçþ™ ›mÑ3.k ‚¿xyOÔ¨Ìù›mh7Ox~ˆÛ„(JQÕ.PïF9ªm¨ŒrR r”äDÒµ&‡LŒ‰*1Æû@Å®=#¯öV0Ýý×sÜ8/Ç­órÕöÖîòìðj…CYý¼\a”£$WÍÓ&331¼`j.‹œ ÷ƒ¡Êø1î3 ?HI®ª'ë4çÚOï÷z0à‰úô~¯ F9¬ÚÖÌïcÈL™ÞohÂj~¹À6ÛMßÙf7…’@66Ìbå°Æ4Ÿ]Û+öi±k{a² "ÕðiÙR1¨HÅ "ÕðiÙR1¨HÅ`3pô«ºÖ6{Nñ®Ë‰?ðÚÉaµÂáåÌU‰ä¿HYPùE,UùE >½±,@©â»¹1vƒAŽ’³O 4nE”%fQëp²hóÁñÇ‚=«¼ô``WÂê.1ÊaÕ¶áª@?ÅÜS»™¢½¸ÂR÷VæßX•ß’±)‡Q«¦½5š•ýú` 6Ë~ b”êm® ÌH5I‚ú†ß´)ÜNð›6a² "UßN©T¤bP‘ªo'€T *R1XÎ}‡|W»C ¯\Ÿä´« ³è—)Ž’\µnSKÌpÉz¿ì©¯{Êòµªwì,«Í•FÎçx_R7ŸâC¥¨jÖGY½Ú“í±^'Û£À©›rå°Æ´Ýž©åäËÂác» ªù/TCºgX*eAå±Ê/bPùEÜ8Ê/b°œë†2z+àÍœ7w 8ˆM9Œr˜(RÉl‘EbL©ï©m•N”éàš‘rŠ} ­]/ž‰šR¥(Qá'#A¢>ÕVïήÚzPƒx1 %|Ñ a”êm‡2KšnL¼Ú(`S£öضÝ9ÄpÓÆ÷^{w ÛR9…îÆ›IÆ)4†Q«¶Ímëe-x}‚m_ä´«rS´ÈBOM)ŠRÔcÖŸ~Ó,7ÏûˆÃkaÛ ß÷¹uL瀨gÃÈ©’…3bPrâb¤,ؘ¨$üH-úb”,:âŠ'!Oz ø~xÐ+†Qkl›­†¼ƒŽ'ómœFeÌã?¦}*µdÂy'¸ÜŸÂ_ Ó?žž›’%¹jÞQ×pëi3¾=]ˆß¾Æ0ÊaÕ¸® Ò[]yÊ ©Û­ NY²`±q7©•8eñÅ0Ý›"§VF9JrÕ¼ëY’ðË?àér¸ò{4öpò½‹0Hÿþ‹ßÀ:D)ªù-;˜ÐϺ”Ãjï}‡M‹+lƒ«¢—C„W…)˜>}öÜ”ä(ÉUóNÍã#Uxy1 Õ 6å0ÊamŸf»ï®ÔZ(õä$oøƒå0Eä¸õs‰D˜"aMû_ÝöÛ7‡ ØÆ}\o…AÊ‚²`mœÕUk°Ív»Ég¨Â‡6ù ) V¿Îã,ËwÚ?ö³ÞSòê)¸Ï=û}u£Öˆ<ÍÑr­zóÆÖóF9L©—‰5EBL 1Eäxu‰D˜"aÏHž»“½ê½c'ûþ4v²b”ÃÛf3Ó;^ s™›’%9Q§4 9dbLT‰±¦6ûð¤qÇpxêÝØWŸó'¬8û–ßiç…> ¦Ï–=7%9JryK“ ÖÞà…5yF@£¦ˆT<šH$‘SDj‡ aŠH„5ƒD»mgAíË×éx`©êÄn–ª) V‡Ü WÊù¾ Ë^²7µp0;š»Sà eAE*N;V¤bP‘êOtÞ—ÃÞתòf¾’¾‹¡˜M”£$÷˜çxŒoˆíìžòFçXˆ¢%*ÔòÙl…Bª6<¬´w§êñ…ù~˜Mé19ˆ´¯Ã•eƒšR¥(Q¡ÐŠ…BŠ7|Ýä»®wýuMç®[ÆQŽçåDŸœLŒ‰*1ÖôÁÂ6ùNnÈ®è÷ø÷RÌRUöõüÊ¥?S|Vv`º9˜NPÀ) RlLÔR¨QÓìl˜ù¼>7‡÷ Ü9) *Rq’¸"ƒŠTZúþý(un#%;èܘ~թ皟CY¼òEÂÍ4¿¨) VgôEÉyÃû·™4¤¦QæŒCþ‹aÊrôï¿§¹²Å1CIîiÎ;]PŸhGËÍÁU”>BÅEýEÊ‚Ê/b©Ê/b°öÆü_¾|¹¡€øŠ*GAÊ‚ÕÆ®`ƒñå/ÜÆ 4îïöà”) 66ºj˜ìÌ_0ÉY:bS£ÖئÏ4ÍÄöa;¡ûÝ¡ðÆûvm¡¢OÙíû|Ú»Ëû¸³ êæðÑqgÓE¤,XMT^¾•ϸ/†¡9Ÿ¿ƒå(ɉ:õ€)c¢JŒ5}pÚ ½Æi)P Ö½ƒl¦·ìÙAê©r*ß·Ø(ÖÍ–Þ2ëjKŒ¢UÍR/·×ê®^8®Õ(HYÛè|'öÁŽfÚÔZìycð3à“f£$WÍ»Š€ÀUáàö-è CNY²`c¢zZ­Á¦ò„ç‹Qàþ/ùs?VWHÿÍ6‡šD¼‡šØ¼Q²à`£ö%)y z JÉË©ÙÎñž8}¯¶ðØäÙ|GÆ4Á?£ƒŸ-ÿŠ §$¹¹Æ¼&QÌ…Wò oÐùQkd¶^£|»ÇµŸMR xçBI ,eöõT’£ eAEª4F]R1¨HÅ "Uš ]R1¨Hõÿâñ^Àì$¯fQ»àÞ‹ ¨l¬SêñnšE]rçÏ»ŸÖnÌ>‡=Ô”¢(EI ÕéÚTˆ)I!¦$…FuK¢“4:°g||Þ¹_ÇçSR8àÅ0°~ ‰?œ–JmeŸîžô[wÒÌ—³åÅ@xw¬€S¤ÿÅ5Ô¤”äj›6eÚGO`?½4ºL$jJQ”¢D…šgÀˆ Q‚j«[/³”&DzOãñpó(º”³óöa”Ñê¥[$‘{Úv9¥?ý)昿Î0K#<æÖK¢§Ûß^’Ç4™=6å0Êam®áÌÚrÑÞêëšrx¬·p(]ux­7 RlLT¼@Ýiké]$…B‡´…-ªK“=À2¶š#(Ï(˜žUÓsS’£$§è\’:!§è„œ¢óÔ 9E'äšá¢"­Œö‚‰™F#6å0ÊaÕ¶Û[J{¼¯éÅ1{"+Ø”Ã(‡UÛ6çI•åÎëÛ³WçOª±Gæ ‹Ê;Ǻ6—Ô“Ïü™Ù¹îæ†ý¯ŒM9Œr˜(Ò8³Z"1&ŠÄ˜(Ò:´Z*œ(ÓÁ5:·Æy*x;OY"C¤,(K%=R ,Õ*­*@]­ŠA¥U1X§ŠÃ³ïd÷ÛW.+þ{ø2 XñßE)JPhdè1$èÃPmõ·RÑ q]ª.nËÁpÊèñýÚuUî%»^[0ýîNÏMIŽ’\5•Ϻ:‚¿øY8#“¤§,HYð1qóÜzå‘éB{¨›rå0E¤¶k"¦ˆD˜"RÝ2Ú"¦ˆDX$Wfx8±ôØÔâø} ž¿ïr\UÝ£Eõ P:/¿lBº9ãóéÁ) R¬R¯5EØW5+ù<lÇÃ(‡É"ge»DBL 1¥%G—­«%¦´$ž}' ÖÖu·­`͇àºÜå(É5æ5ddTšœßl‰Ý[ï²~ô-Ü”ä(ÉU‡¤*3ÅúÕs8”öe¡´ GI®Únaß³ØÆf± Ã³ßÆæÛ GIî1ïCšÂ‚¹mlÁ¼S!õÑrí ›’ÚLOi™í±)‡QEçzK$ÆD‘EŠŽ‡J'Êtpu¤h)žvÎùq Yýéþ\O6­úp°)‡Q{l;]ù«¼%ÛR¹ÖJ®4m5`cbgW‚å°j\sв*zêrxËëF>0Í G‡AÊ‚ÜDݹ¦qw^/ðå±Ù¥`È…ÄoLE9JrÕ<-‚kçÉÞœá“V£%¹jß6{'üE¦Â¡ìÂáI¦0HYð1ñÓ$‰è/tI"…CáÇ!I$ RT¤êŠAE*©R7º¤bP‘ŠÁfà,ðÒ{. …¼²6¦úIml\r{¬š¶h·¾e䋃cÀL§,HY°Úø»eê¾9½i”©;ÈQ’ãöI *ÍŠÆß-˜ñ°æ×ªÃ-PMªpí¾×år ƒ”ÿdAÅFœÁ«ØˆAÅFÎðùiÖ{u4.÷7B¯ãjä(ÉUóÔÚ2ýÑ…³9çö: œµ)‡)¿†&{åצüZ#”_s/-s®”Ô9~ ˆQ«¶uU ßÐÁN+[›ékyjØ]Ü0HY°ÚØ9QÔŽ(ÔgNeó) >R÷ÏÉçN¹šÞɦÁ(HYðO”m´ž.6mt€²Péi_áê *ÝÁçëØ¯+¨Áå?˜r˜7=®7Êê .×F9L©•Õ"¦ˆDXmÿÃ7§ñsÜÍÁ fãÖÅ8Jr}ÇuiV]ãïÓ» \0˜/ÇnG9JrÕ¼æž&|síÅ(û@6< Ä(‡5¦ wdÄuš¿­S@¸Àó·u eÁjãuƒ2ž®Šîhô®ÓàëtçÃ:ÆQ’u_­%c¢JŒÕ>pVH¸æ‘løêÞ‹QêWÔcS£VMCm/7/Ö_8ã;èÁ) R¬&¶ÑBøêû‹cÚö¨Ç¦F9ì±íì*EHßk¡ûÅ@üüÏaˆ‚”«M9tcæ<ØŒtcp&³8cn9ØLü9Jrâïa™âÏa¬éƒÝž9¯¾ãµÞϳu à”Ö†[o¾ãxq Ä—7vöŠa”êmà¦mß”¯3¦¿ž›’%¹Ë¼åï·Z;ÍÊ^ÿµ@Œž¾÷Cµƒ¥!ý—û®ŠßÌ›Áìüïuèl—ÌÊáìl—ÌHY°šx¢èÈ|9~unAÍU×öáÎûðsÇBíé…ÕþË¡·Ã¯¾ïJ¬ÌuêŸ-L€”çæ8ì.U9œÉ°2£ eAEª‘É`KÅ "ƒMoh Íòäöb ªÌÅn%@Ê‚»b£~±§b(Á?ý¹ËÁí½`Í2³óe¦ä5]¨‡ßLÛXHá÷0F9¬Ú¦MÛ€Ò;ÀlÉ&_Æ]4ñáæ]ÝÛIù2qŽ’\µïhje©3èo6?-ME5ˆM9Œr˜(R]m‘EbLi;µT:8Q¦ƒ«#åœ[sö’HåÐ^ù§,HY°1ÑN¥•»F§”«&>â%9Q§ØóŠNゟvQŠzº`Ùµû¡zI‡¿X›$ã,ŽV1aÚÔ“dÂýó¯‘n£$÷´åººNîo¶’|›‡†Ôgœn æqvr”äDzkÚ:œ¨ÓÁ5Ý y•ôŒ—_̵A°n£©Å’‡fÁ´,]e£Ã(‡UÛZˆ#ùÅ@Xïý‚%¹jবè]³ì¼ï6mu•°)‡QkLómrÞl3vs°,Iÿ\¤,XMÜ›cº¸ù²£öM .n½8S¢ $ÊG¤C‚Dyå½3ò$ÊCP3$нH)`Ù€úý)`™) VS™•ÍÞs¤žŸü—ꢣj?l|˜Ü˜ýin|œD(JQaž‚è,ѦRöÞ‚%Ú„1ÊaŠHÅC‡D"L‰0Eä8°\"¦ˆDX3H<%#ú¡*Â} ‡0F9¬ÚÖd­€”µR)uHJY+aŒr˜"R[Û€H„)"¦ˆÔfV aŠÈÀ¯þEƒRTÍŽÕðò ëï¸_ r”äªy(§,÷û»YÞ¬- (n0x@9 R¬6®(ßòNþYØYßP6ÁÕoîËÝaì[ñ WeJ‚ÊÔG *GAÊ‚Uê‡%£Šw—771Œr˜(rɉĘ(crKžÉ¦ÄœÜ–˜u~¤û,NÔéàêׯl)ç»^ RÎwQ² ·Ñ˜ 5&‘(ÓïqÚùÒ—‹©¿ÜY1=ÖsS’£$÷˜wßýo›¼bÏl¼9옚ٌ) VaÀOÎú¼»Ý…1ØØîâáðf»‹0HYÛˆ?¨lޱ#eã¦`p‡È†M”£$WÍk2;ÜoLþåN”j/Gf>Ÿn蠟€ñ Éê]/ï eÁÆF­ì£Wõî h…‹?ŸÏ"{¿ú¾è‹–UNó{lÊa”ÃD‘zÂ…)c¢HŒ‰"¥)Û!c¢HŒÕaâKìßù‡w×ôR—Üž›’%¹j^SX=è°2À›ç¶ÌMIŽ’œ¨Sí½áûù\§c´0Œ\Wpeô(ʆÏx_ –ÏEM)ŠR”¨PÍ‘1BJT)¹ µ–·ÛQr"ê¾7„ÇõmþDÒ¡¦Ší¡O9¬Š\†­¢ü>Þï^jnAÇï±ÛdƒóÝÁ&  GI®šwM@(šeJ<Hpf™AŒrXc›+ŸzÀšC³»$RåàÃYüØ) *R¥½¬K*©|zcin:Þå{1Î8q÷à”) 6&^I\¿#ÎýpÈ_°Í‡“~°¿Éöê9ãØÜsS’£$ר§gÌ6“Z_Ãþ‡[?ZðÀ Öf¨IS¨2ÒVT]@hAŽ’\5ïkW÷è#… ß¿ø¬ ÂÀ=ýlnZ‘¢ç¦$GI®šw§ÝøRžìN~ •Âþ‹Í3ßu: SU°•é(L•) þÉ‚µqœwéù!øæðÍE~ Ž‚”©ÆÍE[*©¬½Ñm)ÕÄi¾¥,Heæ[ÊF9챭ϧýÊòb˜}Dr¢‚å°j[w#³_ªнŠR9ý•àž›’%¹Æ¾Ý5Kð£ÜÍáoÖ/ˆ£¿HYPùE,UùE ÖÞh3ûÝÉUSǶœîÄ(‡5¶ñ­£våÚ½ˆ£v¤,X¥nmŒIõÓÍlSÃ(‡É"uW)b²Hˆ)-©zëì–D˜Ò’{Fô~ŸÄô¨™r„Û¯œ‡Á}fÝE(v{G¾Œ£(E=fW‰uìNü2w"N¹æË¾6û_ðÔ“Û<ٞݥ9å,ÌjYW ä÷µ¬Ãå°jÛ .^½×?¼S9Xª¨y'R¬&®¾¸¬ßÌéߥI€”«‰ÚÆîÎ^ûË]©1¡ÒyËÿæ·áTjà[?Îïm©ß‘º{œÿþ¶# ÷;F¥ JM9Œr˜(Rd¶HŒ‰"1&Š4²½L•N”éàêH9ÐZyè­Ð?ûÈÆÇãŽ}>Øï‡§^ã¡Å F9ì±í~kUYeoßÿ§w ܈ßôe¹£¥¨jº•(;9 §'pËNÎ(GI®Úw6¾íüÃ/ ÊÞô±;‚!ˆ2(OÝñYò$ÊC(oܯ9ä!H”‡ gHÌí;c!d;’¡¥‰íG‚å0Q¤±4Y"1&ŠÄ˜(ÒZ˜,•N”éàêH¹wZú¬#Ç'pÜ¢ÙÊ0HY°Ú¨æ€™uÞœá|{±´‘ ÷»Áï°X¹|=Øô£Ë-) VáÝûþxýâ >zpÊ‚”W%g³L?IÊé¬QŽ’\5ï:G_ÿ ~‡[2¾A³¢«GÊ&nE®eä(ÉUûÏæ=1U9}€öÜ”ä(É=ö}»Ì|ݹ‹³ µ¡8k¤,ØØ¸+6JI–/†!ÇÚÒ;ÖæoæDõ)l7Ã%v?f Mh×BÈs§ \cCŽw”£$WÍë"]¨ÖAƒ}±§ù»µ)ÞÞPɃc=‹B1ÊaÕ¶m({ÏÊ‹ƒpjÙØTéŸqÓƒÛãK)êiÏmu¦xðHÑ6‹{—à eÁj£ú>ÛgÏ8LÕ¾íD[îB?zòrû0Æ^î"ÊQ’uê³µ)c¢JŒ5}à»99pM¸_ Ì WÆ(JQYûûpE‘VÖ×7‡c:+ëí(HY°šØÄÅŠ–r,°pðZ'†AÊ‚ŠT©]R1¨HÅ "Uß’©T¤b°-ZÓ%ÎìÌq¶ G;ç}so®Õ<¾§4¾M¾9¼ò}r¤,ø˜x´·Èµ»HC”è¦ìËAC”(DQŠjìš3Á¥c«‹QàRiáPàx2Š‚”©êIÅ "ƒÔß|ÿ¿Ý§dõÍשåw‚™[©1²`8ÍT¡T‡™âÆà¦iè‹GI®š×ÆÉÝ7p .l qòF9ŒÛ¦Ïò}õ2nœ1çö 7Ï rÝàc"~òZûç‚ÿ‚×=²z°’KK­, Ã(‡‰"¥OÖ!c¢HŒÉ-y&›sr[bNÔiU³t:8Q§ƒ«Cºs¤y÷Ü‘R@”:8R¢ eÁbãòþð¶ã9ïw?3ÍÃóa²`5qÖÒPû)m;9xß¾^ý]ÚBT†¯hî‡MÁ ïfîGM”£$'ê4¼7–LŒ‰*1VûàÚÃmÈÀÝe'6ۆ̮¡Ëw!1ŠRÔcØç«LfÖ1¬Pö9šÃb¥(¦pùª‚«£—/ŽAŽ’œ¨S|˜Ï¡ÓÁ‰:œÜžúìe·'æäöÄ\Ï(ÁüZÕyÙÍeÖ¢M’gèŨ1ð#QSŠ¢õصÀxwƒœ¬A–&óD:WÊ™'Ó'X9ó$ÊQ’«æ ×I\5v ×®þ®"»a²`5±»ï¨ fYt8ˆQ«¶r¨ÈJ¶-–˜.gÛÆ(JQYëq¿Yüâ ™²àM¤,ØØxº%¼(ç²6Ÿ¬qþå_ì53„ïƒ r”äªyME©9ûSÅ‹aúv½ç¦$GINÔ)mØ21&ªÄXÓ`5ÑŒÛ}ÎÛ­wG9Jr}ßœí÷ޱƒó_Kn œIøR¢(E=†moJ–}°…3»²6 RT¤ª{9$ƒŠT *RUo’ŠAE*ëÀùx²-ùƒMË6#•ºþÙ'͡ыƒË3ºBYQŽ’\5í'ú“Û‹qã¹Hæ¦$GI®Ú×ÝøŒâ Ù»-¡ánæ[ÂBç/ßFAÊ‚ÕÆÍ•—Á 4-Ç{‘÷Ø]ÚåP³pð¯ˆ) 6&jIòñýÅA8LOöYDAÊ‚ÕÆ&ØxʺphAƒ Q² "Uw§©T¤bP‘ª.ˆH*©¬gF6Êk„å¯yÆZ¤,XmÔ^ác'’í¼o&w¶õŽa”ÃD‘R÷9DbL‰1Q¤U”ØRéàD™®)'>ÿðrÿ…zÎ ¾-ÔÙ%QUçí-Bn&þÚÌêËQNY²`µÑó@íPh²`ö d(4Ä(‡UÛº Q£mýͦÃÔ_ë±)‡Ñ¿þšò^‰4 )‰¿„>8ñ—$þüJÅŸ |Û›+†ÿæ_öæ¹à0ÜJ‰r”äªyw@>–¸¾¯;ì}³ûöö¾] eÁjâý½E£Ð4ê“Ëaè0HYð±ñ3ÜQq…+ מ1\ñŠ0HYP‘ŠC2ŠT *R1ø' *6¾³6bP±ƒuÄ­×Äq°êæðg|°* R¬&vžUsò¯wáç›2/Ž: ›rå°jÛ¾„bA/"?-‹YE9JrÕÀ&Ôé/<+Ô£(E=f-W&"ÚüÌìc½1¸™Ù·ä(ÉUóš½]àÆqáàí"¾» ƒ”©úÖHÅ "ƒOo¬ê§€ûþîböDÑ ¼û?–׳®ð¢Ém!»'´~/»ûÍ©A‰!) V¯ÕoR¬&ÞAÐf•p=fõ¢§®Ç¬Â eÁÇÆoÓ‹¿o ~¼ƒ%¹Ç¼­ fâËëü(ÇÝÞ­ÆßÐùá4°;'/ý9ù»ÝKÒ ƒ=Ø¢BäS£öض¿]ë±ö¦”tQv"76ÌÀF$ÈQ’uÅ.MNÔéàªÎ«¦ ›'d1Œr˜,RÑš"!&‹„˜Ò’jˆÖnI„)-‰°úÕ­Îh" ™< ~RéÁ) R¬6¶Aeþ¾GçÏÄ7±+xìTp^NòÁì#¯xÄ(‡UÛ`ªÑµ:óÒßóÞ^G]®ßûjT8Zò€§êj£%a²`±q{Ãkw«²ºÛû£7ÙWÁÊaÜxáW &ŒáÐå(É=ö}>‹kºàe·Ï5NÝ7•°Ý~J{¹R@áþ“W ƒ”¹a7̦½«n‡Ù oðÑä(É5æ)>ëI¡×nãÝÂ(‡qÓFšIͳæßíÜœQ•ý ‡?[vJ ƒ”©ø ®HÅ "ƒ² b£ßóýžŸmîö‡Ò¼Ýï_Ôƒ=8eAÊ‚ÕÆýÃÝb"È3Ë·ùlµ÷ðõ÷×Ë_Œz?îlš2e Qžzè´ä!H”‡ QžZèÀÔ)Q ¤žQ±h¥X€“¹° ‡Ÿµ`N¬0HY°1qÁ ÃëÏJø9«HÅöõ›öþ,¶ù2CÆ=¼/McÜÃ9Jr}kë(u§â ] äc,†QklCóž‘ùùdU*®€OïÆô8¨òå9Jry œ1‡Ï=ª\†æ‡Ò®¯Yuh‚ØcØ]Ù]ËüÅAèøb56à ýû/^MãëJQµ=¯wV½%`_Œû<;W¥Ú F9L)íº"1&ŠÄXíæLÈ-¾ßÁן(HYP‘jÜï°¥bP‘ŠÁ§7¶Ö¿ v/† >_B¥¨ªðzC¯ ±ñy뛋 ‚”ÿdAÙÆY é{lt€²Pé)<ïê *ÝÁÿŒîpDî |I§bŸ¬óaÕ¶æF»îç7Ú †æl~£=ÊQ’uêþbS&ÆD•«}°ƒÜBkª Ó â,¾¡·2L_qˆ¢%*ÔSÐ-…Bêiøý^€´-£œ¾X°Æ»ïÊ_Œr”äªy»cyÙl·ËóˆÄL †Œ¤M½ mˆ‘´!FÒ¦;Î q’ÔAè íUXc}`yƒó5Këˆr”äDÆŒmÉʨcµfàѸëu…ä‹æÑ¾ŠbÝx±°0HY°šxî h.1§ó Ô•w|¤,(K5êÏÚR ,Õ*­ªÏ U1¨´*ÿ«à^#`î áÛùÕÚáVŠolwÅRç÷Ù¬/‡¿yy¤0HY°ÚئW9nx¿xy E§Šœ^) *RõL> ƒŠT >Ýñy£`‰\ûbÿ4{ÛÀݜµ¾1×î6 Rü“ýõ®Ã b£?‹lÿ¬<¸àÊbØ?{“Ýc¸Ã·ÞÓ\8ä ÞzOs£&Š4Ô–HŒ‰"1öôÀÜ¥ «‹ÅPþ €hêÊ„AÊ‚ÕÆîꊫáÁÎ}þn® íÜoL ‡·—s¿1 ƒ”«Ôów‡%²×™ Ò(HYðéÅ{w{ï7_û:úŒþÔ‚¡9ó§1ÊaÕ¶«°GøBû¾Â·å;ÛûjŸëû+Û/F©Ñç›rå°Ç´ï½‰åD<Láãëû ¶ó™o}‚”«m~+\Þ_ ƒ»»•ã(ɉ: «%c¢JŒÕ>X™[Ɖ]Κ}³µ¡€è÷Ë„AÊ‚ø¾…\%ðÑ4È«†AÊ‚Uê¼ù\: ëŽ(HYP–j¹tL©P–ê•V5\:v«bPiU ÖA¾\ /äúbˆ¯ðmLˆ¢U C¯óܹT · VkìÁ) R¬&nü£wÕ>طݹ±ç3â} 4ìU- ,XĽªa²`µÑ[;sç6ªUrdpÊ‚”«Ýêmä€ñÕ»€(}yX½£ eÁÆÆzÎ6Ü+ s¯Mù=q³×sS’£$'êLÊLªÄØÓw…ÈpÚ„#û`ã, R¬6~!ŸhÎ֥ólóí¼¹W¦€pÌHQ²`µñJ&ªgW¢TÁkgJE9Jrżãó«5œ–mo_$øm×…œV~|B>µWç;÷ýÅ(JQÕ°+/¶‹)ìo¶‰‰r”ä󿦂^ àMáàÓ)¼2O¤,XMó`‡‚c^§¾¦\¹nÒ56LlÒ}@¸}a“n¤,Xml³Ò¼u} %†±|°AŒr˜"rɉD˜"aŠÈq’v‰D˜"aÏ Yàë ò±úõ½€|¬ƒ”«Íî#§]88IðýG¤,¨HÕ7‘@*©|zc½n̆/g°õ¸.g„AÊ‚²`mX‚_ãíÍYãÓØy›n³ýiÈ7g£%9Q§´ÁsÈʨcM,bX×{ 4¶ˆ›ú¨Ñ§ÜE…ví2gÿZó©á¯aé0ƒþ‹ÃØ”Ã(‡=mòÁðW*7‡×~R‰‚”©Æº`KÅ "ƒµ7–T4èæ°'z~oS@+Èòƒ ‹‰+†ë/n܇i|ð”¢ÄßB3™øSj~)4³P’«Ý}yºÃÀêéÖÝ4܃\0=ôßsS’£$÷˜·Á—@”#Çs»”#G¤,Xm¼ª„ËÂÛé¹õá-szü¼¬R£ö˜¶†ð¦ìXgå<½i“ñô­4É Ù›–¡EB¥¨Ç¬cíç0WÒM5.DWR£VL;ßí“þJâ…ƒU‰¹Ã2 RT¤JÎ\—T *R1¨H•¶.©T¤b°8νÛËïë‘ `2çù¶KÄÝ»©W(ôc[ïÙ b”ÃÓ|yé[¿»-Žfmý®1 R|LüìJ\ĺÜ\(´|ÍýÒÄ(‡5¦­ÀÙÙo ^«ìP/ Rll¬cŸËNúƒûNvÔr”äóî2ÁáBÔçÜzH5aιî(yÍ7†ož±=E”£$÷'ÉÉöá ¡lædûüAÉsn¦3uŸËg³Y«ÓbN/÷›zÁVÁ„w¬V£ýµÃß ”žVü¶é“Ž›ÞO;ÞEé@ñ¦ueKP £&‹ToDÙ"!&‹„˜Ò’ZÏ–D˜Ò’«ãäþÚ‰yt gÌx²K' Rü“¥ÙÒe#1øtã“OÃo¶þÜ\»¿uÝà ƒ”«‰m>M` qqøÆ_bƒ%¹jßõ¼ »Èü‹ã™›’%¹ÇÀýòX†ƒ箸ÔíÀlÁà­ ™r”äóvÑ<+ÊZ ñǬÀ繟΄^~t+ L¯åG·(HYð±ñø $i¹’ÇÙeì©§a>Ênêúj4e Ê@¢ÉA¹óhãð–,ÊoäžÂF9L©m‘SD"L9Î.‘SD"ì$¾w¡†Ùôœ5/ðìŸÇ,ÎV»vAë—íºbå0Q¤´b;DbL‰1¹%¥}¡§)1'·%æDâU‡N'êtp×^ÿ÷~w®}Û»FíÐû›¥ ²`µÑ{Ålç`·CÔ“«úb»oœ HYð±ñóv•ab5ûþ‚ÝS“Þ0gá#¬}˜3R¬6®§oä¼Uµ+ë˜V9œsÓíÌ eAEªq#Á–ŠAE*›Þà™aðTY)¡e˜–=Øoxÿb݆WOpèëJ6઎5©®d¤,ØØèœ¤Þüsê èúQÅŽ@\â¡æ&ÝÔ]Ñã/—Hˆ~0ì59Ã;Ú…WÅ߃‡¸(%ÿúäßBTó[Cº¢#nœÿdAE*î;E*ëØ¼êô…R°e¬0&~éï7ûÒ—y˜ª>øl<]|¤,øØ¸^±È óþ/x'äÎ8_ƒ-ŠkC ¡…1Êam©K°¹;†ü—s')ÿp¥þR3B}p×âqW'{qì Y)–HY°Ú€%ïÈ/æ ²ó¹bo—Mã ¹°öÜ›)Æ:Õ-¬9ƒ%¹j߆ÄþbMR´ê¨þ°Oý†ì kŸ¥(E‰ µ8)A¢>=­~´q«F̨ƒ×Å4 )Qå©AK‚Dyåé!K¤Dª£¢)ªí¨óbt÷·¶ eÁjâýµD¼öCG¥ÎkÆ(‡=¶°<ò}4Xú~ÿ¼ßKmMéǵ¹è êT\í+ê„1Êa¢H=;׉1Q$ÆjtÎB|}£AÁý0÷táðÄÜÓa²`5ѹ¹‰Î]áÌ-Œq”äû>³– úþ÷¡®³îÈ´}ZsæEÄcĺõÇÎ F9L©'¶™"1&ŠÄ˜Ü’g²)1'·%æD×"®ÓÁ‰:Ü3žÛtsu¯8 g­–Ž~w&JQŠªûzK ‚D}jZ½qÒ8óœ+jp'M£öضì蹈k*ï/-ý‚§2Û¼³&DQŠ.)…BJnÃ3׈“[b¢Hv¾òŠÄ˜(cÏ0^a•Ûþ<ðâ >þ{pÊ‚”«{sT‚nØÃlÿÇ0 …(JQaßë„ ³oùaüÑ~™ÆÃ eÁÆÆ6l96t{«bà¡Èþ>U£öضí¾$º¡Qö14ä;Òíc Æw¤‹‚”«Àþz /ÆáÒÊ&Þ(HY°šØ9šPkƒ¹î rìX|ƒwÄÑÍ2z×0˲†Y& R|l<¯pËAþb•Íø1ŠRT1k~wó„Ñulžx@Ølžƒ”«]$XóUðµsž¯ß“öKMƒ²„­B¡K× b”ÃÓ–wuÑû kŽ ./h”£$'êLÊLªÄXíƒfx©Ÿ+]7¼n|p…(JQÕ¬{Ÿ;,ÏK3½ºã£… S|‚ b”ÑZ‹‘SD"ìiÿÕ5µò¼æŸQÝFÞ(§'æ<ñôä0HY°ÚxmÞÜ,^„9OlŸ) V¯´ —óîÅ °ã`ÎÅE)ª1ëtLÍý-üнU_wÏMIŽ’œ¨Sôu;t:8Q§ƒ«Ýp(;)ëzO匛`=8eAÊ‚‰ß±T¹ïËûò64Í‹3h™ GIî1O»3n_{¸1\øït‚%¹Æ¼ž–øå…B ?g]^˜o/‚»ÎÃó{w™€·¶Ý¿ûî`c%†QEqPK$ÆD‘“[Òˆ‚šM‰9¹-1'ê´¢ –N'ê ýÞUBÈù%P«ÐáLìç mõ}•²ÒFAÊ‚G³“s‡‰ …Ž6|/Ã(‡)"Õ£-aŠH„Õö÷}yù•½ã.=òê1øksÂÅ0ÊaÕ¶ûgùžãêJbbS£&ŠÔSçL‘EbL)îÀ*œ(ÓÁ•‘òóŸÕ1)-˲ï`(‰{ü¢%¹j^urÇÑ[×d±§ÃÂ(‡I"­£¡!ÒI"Ø#òó½*¥}UwÕ5.׳ÿ eAYªõ‹)ÕÊR ÒªúÔ ZƒJ«bðù?]giæo5ÂÁgÆAZ>{‡(JQÕ,­Î„í.L;ݹm1Ž’\cßàTrø€lü=Ë…õƒµÉrÒè’ Ø< z¼•ë×D9Jrk[ ÃQìÅ@ädà•Ò¢%¹ÆÀxön/þ›MelV$WÑŽ0HY°J]\‡žïÐ1Ž’œ¨Ó8ñ˜:œ¨ÓÁÉí©wìöĜܞ˜«cû~ü¦™ }óu|àÇu ±€áH¡ô‹ŽÈCkdáa›ænÊ‚µ#.ÿ5¨šó¹ÐF9L©Þ³EBL 1¥%µíhI„)-‰°g\n°ôâ=2¶»:)@ÙÕÝ\s:ö}®AŽ’\cßPu̳«+Øø{æô°o_ÛŸy6¶ÎÞ\ëNqÝ® ƒô│¾kη1¬6¨þ’a+rçíi<.(pÏÏW1½`ör4Ýn$!ð^¿1=ú tA£ÿ=½U„Ö¤$W›ódÍéêó›’Nµöw^"å°bÚún"GLøÂµÓ˜+2) þÉ‚Šú¦؈AÅF Ön¼܉†X ˆ²a!–0HYð±ñ³¬¾üÂl¼Ax ^˜‰AŽ’\5ð~1KßS\ ¿B¶~´Ø‡í\çY3ôÅemï—hç~¿¤@ÍP"ÓãSŒÇeP0±*‡Ÿƒ.Š)ÉQ’StBÌ£sÛöH»P’S~Ïí`ŠrÏp¹«ñ¸K½8¨»Ù{pÊ‚”¹¾:SÜ@ó°É a… n˜ åiçS‚Dyå©™›¦>H‰!õŒŠ@i™WÇ€ˆ'¯z‚(U“ß·ÌÜ7?,~Þr”äª}×Û×ÁTÛõtEdùX Q”¢D…z8ÖR)Q!¤ä6Ôvv"JnCDýW©›\! g„ÿzpÊ‚”‹‰ßÛI¯G­dý·õíKÓ‚œ_÷m4Ò¾Uή‹Q”¢$…’ƒ +Ä”¤S’B适bJRˆ©ªðdU¢Åƒå—†‚å0Q¤~P7EbL‰1¹%uïŽÝ”˜“Ûs¢N#5ÃÔéàDî™¶>oç}…­ß'|?­WÞÞT0Pç‹{åƒå°Ç¶ùÚù2ÖÓîºgßátÈâ[¿Ã‹r”äDVÈÈÒéàDNnO}§m·'æäöÄ\-÷5õhÈûu‘n«ÒQ8œLÅÊf„AÊ‚ÕDíQ'«bC¡ÐÑŒO1ŒrX5­ Ýá[P×Þ×Ñ<ÃÜrC£Öº¯£(E‰ Õ°·%A¢>ÕVo¾5# Á?µƒ9lüK r”äªy×òï ?¿f{í†Å8DQŠj [«aŽÈó®Ci!qRæ%/ g¤Ûôà”) 6& ®€Õ÷vE3%¿ßzÄ…%B_=d_|àþ¼D¨ÚôöU±æAq”åóbX wÞŠRTcÖ5ÿ¼¿PÂåÕN¿ßÅ—÷dz{¾ßñù²«N÷€ÍÉŧ,HY°ÚÈ«Æù¦¢ÓÓÊLä(ÉUóŽÙåÜz¯`á°n뽂a²àcâöi/H´pâ‹ 7%9JrÕ¾åãÚoîmjr ¤Êw?€c¥÷Ͼg$Íôà”) *R¥]§K*©ü“/ʶƒŠ|FÜpOÀ³{¹ ßÑ­^#v/ˆ2Pµ©MvƒÀÚ#ž+·*ÊQ’u~r21&ªÄXÓ<ÏÞÉ]‹Q0Žù`਷ò1Â(‡5¶-šÕZ†ŽÃyŸ›OCÔ×/eŠ‚”«²÷ÂN§»©q7o§Ó1Êail6rí‘nJò7y±{„͹Í}{¤Phñà'·F9L©žÏm‘SDúmSÛßÚׯ0ñ×à,0²Ô+ÇöñÐåWá¾»S}øÐt’Ç0Êaƒmö¶†ßÃþÁ¶ŒKþìn i÷1nïöU nÉöþ:ï(üžšêuŠÔ¹ ]¤,XmlçRò…טë< RT¤âè€"ƒŠT þɂЯܶƒŠ|FÜgsÞidãb$‹‡AÊ‚ÕÆSó³vwF6ö1ηå­þ¿þ€Ígl‚S¤,XmT_µ–Ãh¶1ÊaÕ6%²joþoLh{÷å(ÉÉ:qH\Ö‰9Y§?ÿÃ}”ÏÖÜ',Ÿ;Pã¼pØÈüÜa² "ÕðÚR1¨HÅàŸ,¨Ø(-L.1¨ØˆÁfÄ­¦³@N7-˜~~—Sb£%¹Ç<½*ž]ì›Ý¬ NY²`c£çàÄ+‚=Øø{ÖÁi»£¾ÑøÏöíŽ@úƂבx@´Ìó:a²`µñÊêŽõÍŠÍÒš Âè,¯)FQŠªf· ]þçí»>g+Ÿ@ ]Ÿ|@cPSk~m¸Ëè›®£`mÑËëí½úp[ pß*ÚÆ°H@£ÖØv­ Ñ‹8Ûx|ômB7”Á¢lBƒ%¹Ç¾}n¾[ã(ÇgÜ›{s'»]¯:ˆQEê/¦HŒ‰"1&Š4RM•N”éàž‘rxïr¾°Iž„Á»Ã@¦&ŸVB¥¨Ç°Óõ"/ùW0t€ãÿ¢%9Q§‘Peêtp¢NW»¡ÙQ¹3Å …<|OÃ(‡)"Õ Œ-aŠH„ÕößÑ%WÙźßðíðý=\tòB…wÊy¥‚ F9ì1íã~®•‚5›vWŽJ”£$WÍrÅ]Éû§éqíL2tø Ùè†þQ”¢³å0(lÔ_Œ’NhÆþ~Ÿ‡¯ÛµÐø:åèŸOM5Z…RTmËÆ%†]M/†é¹Í²K,ÊQ’kÌûúŽKìP¾ßo[þ=*‹ëÜûÚIý6ç»ÚÃ(‡É"÷qCê 1Y$Äž.èŠÿ;*¾8¨û zpÊ‚”×5XàroïÑIM#‡Ÿ Öì]Ñç(GINÔil,™Ub¬öÁÎW<·ÞwtÇaéÏÉ…C>€¥?&1Êa¢HÃ`‰Ä˜(c¢HË`©tp¢LWGJ—š¬&RñMU{ÏIï:~Ï©`ã1Ò¾çå(ɉ:¥hœC&ÆD•kú€gJúÎ1ßñißA& Rü“q¨D±ƒŠþàÌþåw œ½ßkü¹Ô$~ÎðØ¿çb;œ.ŽWÕ)txð²:aþù·UOâ¶NEA®þžžŽmþ\{:pk:PwB ýwchç26fŒ£$÷˜·¯h_}üRò¾_—Ðqý`‹D¤,(KµÒ,M©P–ê•VÕw U1¨´*ëÈ9´ŒPsç´·aÇÓ<ÚdYGÕ¢§M}©§\!ƒñ>8žì¨Ã(‡É"…ƒG$Äd‘SDÎ9‘SD"ì'çX»Ú·g*/½ëQÀ·gŠ‚”«]ú…÷ssb2¶±ï«tHðvðñÌó¬ÔA¬ŠÜÑíuÙ[p¼¯’úá ŽÇüu:¥Þý=–Y¹vh]{+º+Ä2ƒå°jZ7M«4›¦ð:SÙnìNC¤,Xm¼\×î¤ã 6›É@ÍÂÁ¡Í·“a² "T¤bðOTlô• b#Ÿ·^÷ ƒ×7Ž»V”³ÄÔ‹cÍ„èY'bå°j[Û–ãÞ§¿ñbÔ›{ü¬úq!ˆ2(O[PLyå!H”§fS˜ú % „Ô3*¶û…œè‘­€8ÀÄŽla²`µqgyá®PQÁ`"‹E9JryZö´}sáÐß‚±® ÛXcË‘qìNº>ö\>¹Û…/W7'ìäìDá0HYð1ñ`™I®pÅMéí"‡+‚å°Ç´û¦¿³®À‹c`‘ãSg £Vl;ßêýDë@ó` IØ&ˆQ«¶]ã‚ç óÝ̵¸|ápȇͶa²àŸ,¨Øè¯˜ý~ÀßÉzÿãwéŒx¥7m¿Gü£•) ÊRÅ;†©P–êëÇqG݇ Ÿ•ky~î·ygõ¼v;_„AÊ‚² lã,m<6:@ÙF¨t‡ôù»ºƒJw`ðomj¯6ñÃípäüóÔÞE)JT¨Ýó4"HÔ‡ ¦ÕÛP´ö~Õ ¿xNY²`•zºÐ4ÛÌ{î>º0¦f+ìi–ù~ðÃ'’rØÓíó¢Üœ°/©&îó[jaþý×9Ð}”Ãä_ƒ½.ÿÄj÷ñ¬*×L¯äg¢%9Y§î;±ubNÖ‰¹Ú Ça3åôÿÂGo9ÿ? Rä&ê©_wnü³u9ÃÏE-÷cS |èü˜Ã(‡UÛšYW÷J “î¡ô»a r”äªyë"ÖÝÆB¡³ûÉ{îœå°Ç´•/—®+Sçøz­ë S”£$WÍëÂòOÈ âìî%ˆ‚”«—¿Ó˜åe×ìêud×l¤,øØøým›à=¨›RzjJQ”¢ª]ª"ß,:¿'Z÷”–Ü®gôÜ_ „×ZN6Y9JrÕÀææ¢„)[—Ó›EÙ¹9Jr¢Nñ€ãÐéàD®v$»² †<×<¹!ÊQ’uêÑLS&ÆD•kú`cûŸq÷ etö^ØÎ%†Q“EêçYS$Äd‘SZR=Û-‰0¥%ö “½Ë(ÓwWü2t±ãjcÛÀ(HY°ÚØm’¤½¿²I*àx"›¤(HYÛ®‘uÍî ^à~1ê¬[Ïî*DQŠªvm×´ÍU9ÏëB§»øá‹hÓÂË4F9JrÕÀË=§¯ê÷æjáö]vZ.ÜÀ HY°J=šœ*#x[¹Ô HYP–j¤ÙR ,Õ*­*à\­ŠA¥U1xñïÿÞïfŒN©nÜT :‰ºç(É5æ-ʱ_÷J5HDé¼RaŒrXµg99.Ñ 8«ÅÂ(HY°ÚØí0Õˆ5ßa Äù3†Q«¶}}§ŠÞ5ð¼ë³?®Xá×V¾‹¸!;€¼ò]Dˆ¢Uͺ\Åî+—øm÷²ð¢ü‹cÍ 4°)‡Q{lÛÞ‹‰Iwüþbóvh7ØD,l”Ä0ÊamûQä;šÝœ>]*G³ GI®Ú×|ÞÎ\ØJ™røÀcå0E¤æ0"¦ˆDXÓþ›ŠYÇ™ÂIŽkK||âžå¿X·|设þÂf¾‡Ïκ°™) VÇS†ï›½Ao_P’«BÕ@ÀÝe«bNР¸BïM€”ÏåësŸ88¦ ;nfT°•ê¸'ñ .ü='ý¥ úLã¿Ø©ä5èWÉ+nÝöwÉÃå°Æ´­ß¢:¢þC^×>§!ÎÑ¿ÿÞ`”ÿdÁ"õó^·Àؤö߃múyÍX;N:B Ü”ä(ÉUûöº¹ VýrÚÕ|ý^ñ_ìÚRÄJAýåš™Eõ3³‰¥@cÈšWb¥¨Ç¬ÏåFæàþ¯œr§sôÅ0;ÚÁ]ª1ŠRÔcX÷:±pX¾Ÿîået`žR¥¨Æ°ÆOì¸Zûbàõ¥‰Y6²Ÿ8 RT¤J;*—T *R1øtG{»B÷Tõ·+*6e­ÛqŽ’œ¨ó““‰1Q%Æš>øÊs&âš½˜;¿´r°¼ß…AÊ‚² b#ö9*6bP±Ñïåü¬³ëlÂ\zC9æÒ b”ÃÛ¾KsuÁyçë/vUH…Iëõ›Ãn…ƒõz¤,ø˜¸ÍkÀGúbØMðNQ”¢ªa×ÃT÷€ûx­×u¸ÿz¶XûæLÄÜØ¢rƒ01rc«J£$W ¼<×oÚ^\“¸rFFNY²`5± -ÖÀ„¾a}ˆ‚”©Ç<ó9T¼Çµ}Ù¶> Rü“eŽŒÇF(Ûèe b㜵ƒŠ¬R·ë²Ç*,N¿Üyq¿3ÎÙ(q”ä{R'ä+:ç÷çšÁß‚Gø—[/îw´>:£%¹ÿîÞ®”Ú®Ž@ƒ'XWG ŒQ«¶5)ÛÆIwéÂÁ“çÒ¯…QŽ’œ¨Ó8{Z21&ªÄXÓ›ë¤;p£“Ü¢úåüa][ú?ë‘p“ÏŸ+\8~wÖÍÛÊ›féêm¤,ø˜8_¾Zwzag×6xæßÒTÆw{uàÆNtAŒr˜(RÚi;DbL‰1¹%¥óާ)1'·%æDâGäÐéàD®轉 Kƒ73ˆ ƒ eÁjã¨2ëÇ=à²w|¿¸î+oU×±õõ ò±5 R¬6^¥–¥íY%cIV…B!{–dÄ(‡=¦}?_¾;ó-ßÛÛó0þÐn4[9ºóí· VÄùQq¥Ï¿MŸ«¡[Þå7©¼ÇC¥¨jV›è¸Bùj~B+T<ßÅiÜe~^ ÖeûHYð±q»BhwÍ‚]Cþ>íŠr”äªy »9ž÷naÐOÃÂP@ý , Q²`µñwÄ„o&ÍÇÞŸÆs»œ-P¨aœYÉ!ˆ2(oœ1ò$ÊC(oœ¾ò$ÊCPJiºwn[ˆÏO¤ÜØ‹cÊì©)EQŠª†mM°Àp­œlþ8]o¢÷ÅÉÂå0Q¤1["1&ŠÄ˜(Ò* b©tp¢LWGÊuÅ#ìç½¹{;#nJr”äߤNÈ):!Wû¡q§¹ ÙU®õQùÜiQ² "Uú–\R1¨HÅ "Uš@]R1¨HÅ`8Cu:ÇÙby7ûî@–YáàΔï¼Ã eAEªî]R1¨HÅ`íUó®XW„ „‡Øá F9¬ÚÖšõ¡Æ¯= >%öà”) 66Ö\u­÷x®zÆOÐÊUQ”¢D…Ú%mS ‚D}zZý~ðÃwEûÅ(P@…ßß b”ÃÓîw¼é^Œ;ê/Ÿñbå0Q¤¾£6EbL‰1Q¤±Ÿ6U:8Q¦ƒ«#å~÷Rr ¿Ç»^³,«ì¦°c0|r”äó¶.tû†¾ù¡/ ƒ”«Ë5iŽcFL}y1îrG¿6å0Êaq{3>É!…ÃÛE>B£ eAEª±]´¥bP‘ŠÁÚ—ÀµV8)¯Ú8|1ÊaÕ¸îV¸ûȾí]U<Pöà”) V-Dmn² fh†MV £ÖØöÍìÍî: Þú /ÎIç'k¥>®Ráô¥ð`k§+ »p0Ÿ'Œ‡Aúç_<ŠDB›R’+MºÞw CÁiç9|£(EU³š‘é¸ýÙpZfH_ïâ—a·\¯›Db^vË…AÊ‚Ÿe˜q%o KÝ]?Ý|«¹óø|û`vjŸoƒå°Ç¶yó¹WxµŸÂÓðÑï“¢%¹j ¯âp²Èöbp/KŒ¢õ˜Uîúº®õ¿58¬º!ˆ2(Ok S‚Dyå©is¦>H‰!UGE»fàkø/Æ­êÁ®ç¦$GIî±oÕ^¶4—¶ïg©ó÷8ßÅ ¥L=4e Ê@¢¼q;ä!H”‡ QÞ8=9ä!H”‡ :$šlHmzâÙÝV6dŒ¢%*T;K ‚D}ª­~g$6W×ég².]g‘0HYð±ñ¾µ¾ôø€º;@¾Ÿ) V©W^ ²Dš0HYP–jB4¥:@YªTZU:Ö¸ZƒJ«b°òÎ;'¸[dïܺ %c<»ñm¬ÂâÙŽÇ0ÊaŠHÍ)D"L‰°§ý÷÷'äÓ©à¢Ü±ïRÎð“É—©Â eÁÇÄã­9ìtùõ˜•¼Në^a¡ìÒÂFK¢ $ÊSH–<‰ò$ÊÓG–>H‰!UGEóÅHÞ4價±ñ„¾— GI®šwíÜåDðl¼µÈúbvîS¼µ!ŠRT5«sŸú0¿ïë,|~ÇùÅö_lÿ= ïmAŒrضÏòÇœo[¿¥)Ü0õÈØ”Ã(‡‰"dK$ÆD‘EZ©(–J'ÊtpÍH97´}Kêû>ÕÝ|xû§ÿÈ£%9Y'ÛúubNÖ‰9E§°Ew鄜¢ruÀÜ©ÒÑ`Î÷sçM€`K}ýÞÃÝWÑ_ÔOË=8eAÊ‚+Ø¬ß %ìzc¸r;F9Jryßfk(ìP8c–7Wa² "ï©T¤úw¬ ôñ "ÕÄûO9ÔfßZ(¼tÏo-„AÊ‚ÕDûÔ¡|ù_pP>üF9Œ™ö«Ý.Þ$[çæ(É5öi9L`ëôU°/˜‡AÊ‚Ôíý›ãÞÛ™—,ˆQ“Eª‘m‘“EBLiIÍM ZaJK"ìÒûǺBòîbs/i =5¥(JQÕ¬UñÙ÷ w<üC¤,XM<¬¤:9üX ÊÂâ1ŠRÔcÖÑôœqúæwø ýä(Éóî¯Ô™Öÿê©ÁmbÞ<A”$y‚Ç Ëƒ$Bbë IøŽæƒ”Ø~ª£bL¬uåÄoW * ºîK?ì£%9Q§±34u:8Q§ƒ“ÛSßàÙí‰9¹=1WÌùQ]+íxa™ØÛ§Y4ÜI+…BW¶l1ÊaŠH5àj‹D˜"aÈùÞ¥ÁˆÝ΃”e©Ö7dJu€²T¨´ªñÙ­ŠA¥U1ø|€óå6p;xq=¹‡# R¬6~]>>÷^v¨ð¹7ÈQ’{Ì»}{~¶åº9¼°-]àRú‚åÀe…7í{a²àcãº~À)Höm9¾lÖa”Ãd‘ºÁ 1Y$Ä”–TvK"LiI„ÕqrÕyw×y1ÅÇyU”(GIî1ð{¿3sˆ=Ø"ïÌ×¾¢õ°öEAÊ‚[ãOCÞªƒFg‚åO‹Q”¢ªYks™){* <–cOa²àcã~¦W”ØöEÉİî* Üå—•‚å°jÚU§6*ÙŽy>s½‚McjÓßЖ7¤ j¥)C¥¨Æ,ù: ø|nl<¯ƒ¯'ÈQ’uJuq21&ªÄXíƒ{fP}¶·+Ai+#²Pj9%2ˆQã¦iƒY£îƒŒ¯rÄ‹c’ÓjĦF9ìyήˆäÆDÆ0Êa²H}‹oŠ„˜,bJKª[|»%¦´$ž¡|~}îî¬8µ/8+‚%¹Æ¾ßÜ™NübØ¢Ää”çE)JTøI)„”¨R¢ÂwJ!¤D…ªƒãªH“Ü Üq’(HY°Úx_„óU·z1lد™¸b¥(Q¡ða;BJT)Q¡ThÏ!c¢FŒ•ñ±¿¯/'ìÞï'}UA^ŒÕ³ø%Ä F9ì1íó>S˜⯔¹Ù eÁjãýöu4·yŸg%wÛºW(tþ^X¿Ç0ÊaÕ´v3døçØrP8è,c«A”£$WíkòS—©÷ùÕbå›ûÒ:s݉ƒqgn£VE~6~ražÜ¹Ì HYðO”mœ%'–ÇF(Ûè•®îÀ Ò¬_E3ª>>Þðºñé3DQŠªf]aá`lðÁ@,åË- a”êmÍ•àq5‘`z+?%û¿b¥(Q¡°”;BJT©§áׯk“ÂÓL÷ïXæ‹Ð½fJžE)ªÖ¢ð}­ n®€,¯¢X¸áp&cS£&Š”‚s‘EbLiåä[*œ(ÓÁÕ‘âé~Aë¦ôÀIM9Œr˜$RŠ›`˜’$bªi|%< 9ß…mhçõ‹mh”HY°1q¸Òåºl¼¡¦gíùvõÁ%¡W2¯Uù€ê'ÔsS’£$÷¸]«k8S`ßšÁfL€|¬ÝÛÃP r”äóîTîÊz/¢Ê‹†AÊ‚ÕÆÖ „üªjáÆ¦}U5ÊQ’«ö3oä ïûå2tÖ-{qÌ ~ÍF9¬±Í’Û˜·pÆ‹sRZàžF9ÞK„£$÷ØwçêƒÐÎ,¾Ä(‡UÛšë„Æ†še m°øuÂ(GINÔ©ï²L™Ub¬öÁ×µ 1ìxw3‘æ‡á3уÙYö|& b”ÃÛ>]š¯š­0`÷éWë9;«`ú 9=+ÊQ’kÌk\hîÌõ‚!6s¡1ÊaÕ¶ûæ]4€},í÷ì×±,Z„ËÊT<–ëÁR§‹ðÅ0àÎá}¢(E=†ÝïµÇz¥‚ï¿Ø.mÁ®ãÅÎnÑ„AÊ‚²T1KÈ#ÕÊR`íŒnOÕ÷¡±§z¸aA7·TAŒrØcÜ÷ øjV¼¥îN{lÊa”øiZlD£šu+V\8#"­¬\Q² "Õ_º, *Rý®ðã»Éî ³ŠB¡¤ž°)‡Q«¦™™Ú÷fŒ¥üÞ:²´äE)ê1kkOhî Ü‚¡Ђå°j[›„è¨ðX·_Ç]a™œ»¥çd‹]£$'ë”ܘ“ubîéˆ}1o†)ÛÅ£Í Ü„?ŽÙ¢äcúÆÀÞéE)ª1ìô컎5Ÿ4¿øT qaµ.>Å(JQ¢B­L•)A¢>ÕV¿NsዞÇQsDÜ)á7$-O5¥(JQY«Øˆv`±`°æs‹Ç¡ì”íàb”{Ì;»ôÀNôÊÊö. Rlll‘Tß?Ÿ×€qÞ—*Øùn.<“‚|Ô)Ð[™úå“NŒ¢%*Òu !%*„Tmø: k¼<Ý4…PŒ¢õ˜õù|«ëÊ€,`»ýte@†AÊ‚²`mœoÀÿþê)4Wò A£VMëŽÒÌ,püÀí»Ha²àcã|õ{ÐçrγyIWÞOžóªÝ˜²–snœ¸‚á‹aB^žéˆr”äÐû¡è„œ¢Óímaœ0}ºtBNÑ ¹:\šýb ­pø® Û1†AÊ‚ŠT㎰-ƒŠT ÖÞ8”“§ñóòŸÛÎô*œº ɉ^AŒr˜(RZ"1&ŠÄ˜(Rê8‡HŒ‰"1V‡É© K˽Z(«ÃÜ«1ŠRTcלðÊžKçú2¶,ìšä »&) V›Ë:ªWja=~CÀS´°Q”¢D…ª¯ˆï¨îË3/ŽGkœ² ýû/ž'ÚÐèi”µqRû¢‹:Þl„(JQ’Bsq*Ä”¤Sb A2GBJlCH=ßÌzM¸"ƒ%9Y§~þ¶ubNÖ‰¹¦.GA´Æù=•†1OrßSù5ó$¢(E=vµ7³ô :¿™U08ž7ÖßAŽ’œ¨ÓX21&ªÄXíƒCž5¶´¬W3½æáÆ9ÌL¯‰r”äª}³+ý˜e“œû®n ÿRreƒB©9(riƒ F9ì1íx7Áxý+àµÜ >r^Ê=ˆQEêa0S$ÆD‘E·¦M•N”éàªÎýºÁü{.²Yæë\ð›Ý37:c%¹ªóºu)xçÖ¾ƒ‡"ƒ%9Y§äoðèÄœ¬sJ{ i®ö„œÒž{f²s¼y麆|žm¶C ˆÒx*>ãjÂö¿÷{‘ó»ô¾ ÙiÕ}_”¢UÍú¶µ ×l7Â:J»!–) Vw×äÙ×]©Ž ÜÄ HY°J=N>ïŠO0k;Ñ'@Ê‚Oo|>Í™M˜)¤ûK¾?šR¥(Q¡°ò9BJT)Q¡°æ9BJT©:8šOUߎ ÃÿÆàщ¨AŽ’\ÕyyýDwrã¥ý¶^á0F9LÉΓ^‘“EBì(óµáˆ¥UN(]c¤Å9JrÕ>£rjãÆá˹P±ÇÃnÑíRD,ÎQ’{ì[›]˜ó*E¥€×n؇Å0ÊaŠHÍÍD"L‰°Úþ÷pÖ<ûÊhn/NÂoàÅ(©³­O5†QE {‡FH‰!U¿q„9K|VJÌÕaaŒr˜"r<ô¸D"L‰0Eä8i¹D"L‰°:H®K,1ÇMÃ-ʘ”üKaŒrX5NI³±R +¦gäK¹…qŽ’\cžÃ5±°å憀»`aóÿÖ†he+^ ¼ïbDQ Ñ&@Ê‚ŠT)¨è’ŠAE*kwöš%¥GTLܡܔä(É):…» .St~ïT.UêÉQªvùyÄ=•£h7%9Jr}»ÚÒK =°½™)ÁP‚‘´iliCŒ¤ 1’6õEK„$uªcáte¥Vå#GlÊa”ÃÛŽ6j‹M¼',kFÔ>ÎQ’St ß¿K'ä«ýpKÓýâ`Ý‹ú<îAŽ’Ücà}µ¸Løö°¿²‚îNN9Œr˜"RubØ"¦ˆDXmûî•”°ôPð2p—°Æ(‡Ó>ïë=©Xò÷_nW¥Z•3žœ“jI$@Ê‚‰Ÿñ="#¶pú¶IvÄF9JrÕ¾û¹÷àUb)g?° s—Î~dG9JrÕÀ.ÀïIWîÞŸ;þO»,lk)¦AØ!ŠR”¤PZ&±BLI 1%¶á™kDŒ‰­ˆ1IäGOx±D:0I¤{Fñrqš§YŽ/J:Ñ Ø”Ã(‡5¦59zz1N}W™˜cå°j\Ýl¸Ó£ §û³íF”£$'ë4ÒýM˜“ub®é-ÇrÂÖÏÆ¾V!ÞW\ª”úc=6å0ÊaÕ´û•ù¿”÷JÐ_¬ñÜcø‹az~†ì¹r”äKÝ%ªH;›Sbå0Y¤ZCÕ 1Y$Ä”–ÔN %¦´$žÑÜÞÝv†ÒݽJ©N~éî^£&Š6 %Bª6þý‡íYþ²qõUžA‘ )Qå©^_K‚Dyåén_K¤DjFÅ®xo­2¦Á£ T¸“ &GlÊa”ÃÛ¶íw±ŽÝz¯œþ6AÏMIŽ’\µO+‚j†# &V»¸)ÉQ’{Ì»¿u×·qP¿  ø×¢ eÁj㮹åÜ ³µx(Þ™›RGŒœæÄ(‡UÓN·/Óö`†‹³ç¦$GI®1o®_»ófóvÜuvƒèϱ"ÊмK,K ‘5»”Ê̪3]™]‚%¹Ç¼s|¾Þåš8ÛE—(yqîVh{Q r”äªÎËñÛOæk»VÛã`k{¤,ø' Ê6^ nÂF(Ûèe b£äwÙˆAÅF –Oj¾.Oú^Yxõ}ÌØúy„¡#iSφ6ÄHÚ#iÓ†8Iê TÇB·é“|Pò¦ïÇeÕÞô…AÊ‚ÜÆ`eÿ¿àWIvµÊÙTîUúz6 ²`•ú{Ž…%5“+q”äD³~Þ6u:8Q§ƒ“ÛS:˜xÚsr{bîڟˬDõT’í+Œƒ!&vÕ2ÊQ’uy7–LŒ‰*1ÖôA\sˆõßU*˜ž‡-c£%9E'̽PtBNÑéÎõ˜ç&^ç|!¥Rê]§›rå0Eä¸Ir‰D˜"aŠÈqì‰0E$Âê iR)`–‹Qj¼TN¥b”ÃÓfÛµ"»~¸¯²f™¹ºóïD˜¨2ßuÊåÍ_O¯ÛÆ(‡=¶-ï¯|\°JCUzPûV ²`5ñü6.'oàúÁ¤LŸ›rå°Æ¶]µ4Þ¦/›únL }ŒØ”Ã(‡5¶5w•¼U¡~¸õ=g?\ýôSÞð%ÜÚ… B£$WÍÛ}éHÜÃÿ€°È?ÌDAÊ‚ÕÆ.¬Š.‚7ØR?>è¬ sÝݧØóÍ&R”¥Y[ª”¥:@¥UõέŠA¥U1øŒ›o—åí?IÝœà‰²O(AŽ’\cßQ9Ç‹k/¢´ùþm¸8GI®xúüeÃD³êÙMXb^ Ó¯ÈQº(GINÑ sStºs*'|€.StB®—v›ËT½8&mZ £öضß$Á7N7?Z¾q r”äªWò±/aðÅ(5 CÎi b”êi_­ŽˆìΟCh# R¬6vû^}Ã<ì{ ¨š”}o¤,øØx,jJZ=<òša…ï¯ñšaAŒrX5íòÚ¸CZìŽÂ\Ý_œS×öž›’%¹Ç¾ó*êí¬ð˜w~~÷‚ð™”ós¹Ï¦,HYP–j” ²¥:@Yª¬q_h  oPp‚‚Ha¤,Xm¼×ÞÔ¦Â-ï«ØvðÎÏòîÖ&#¼ÅÖ¦D³(_›Â eÁÇÆÏ‡_°>a^w¥PjƒöØ”Ã(‡UÓš]“ÿ&HÁô Ÿ¼oŠr”äÂÉÊ¥rŠNÈÕnhßî Q¯¦pçw£öØ67_šˆÅ?ž’‚UÆ·¢(E5f5Î w8³`ª³Ç¦F9ì±í8Ã/†Ù¹ŠÃh Q”¢ÃÖ+íÎY[òŰ߻áè©)EQŠ K‡BH‰ !Å›>ìi. Ü qOsäºÁjc{ÑÌQ޲‚»ì¼°óŸ SÞ21Ž’\5O«‚h_.œqª”ïx‡AÊ‚ÜD=Þ§r‡Ã'°°™ö¦Ð)}aÓß÷йF¯ƒ,ß+—Ã[®á6u;¤{<ÌÎäà F9¬±mO¸e|Þ•…IŒ@O+nßæ.ŽštpÎl§Ã(‡É"U—»-b²Hˆ=]½]‘Ç Ë}ÙßmÜÑ.)œ^]J—D9JrÕ¾nµÃ_\‡S§ NY²`µñäFWáÈÂÕ]œ«nd£&Š\r"1&ŠÄØÓÇ5:½õš_œ“¦uë+ r”äª}—3ó]K®c…k×rW‘±0HY°šØm`ÙÖçÆ¯ÖÞvݶC;ÑÛŽ‚þAsEaô¯¿öýDÚ„’\mËæd¸šQ8ìæg“(HYP‘j„Wm©T¤b°öF—97º=丂‰™E#6å0Êam¾û{ï¾Ãy›nãÝ) V›Jgú&d8ߨ{ðÆSp£$'ê³Ô:œ¨ÓÁ=Ýp6K®´QVÜkŽø¾7ÈQ’«æ­‡#\õe«ßM¡Ò—­G1ŒrX¹k‹féòkr96•EAÊ‚²TqåôHu€²T¨H³R1¨HÅ`•z倿µ“ÎõIœ+ÿCå0Q¤>¿˜"1&ŠÄ˜Ü’gŽ3Î+…«³Rw¿G۔ѡóä)¼ÎV‰qâï9Ì/Ð,ëûªs¾/µ¾¯›Šá|D—Éy¾N¤,ØHÝ›1£yÇO¶&1Êa²H5vo‹„˜,bJKj_hI„)-‰°:¤¯ªÎÇ7^ü…ÛÂ(‡UÛšM™š1ôÚÌ„¡Ó"¥¨Ç¬Oç"C²wîá$ï‡ÀMIŽ’\µ¯Ëò@7ëìT]êv¹©ÕüpùyÁô«”òEò(GIŽ›' 1»ò­Ã©ë|çˆÄ–ÖE1Î>U®‹q¡Õ˜–nÒS•|Ò+pòI/†Q«¶]åÃE Ö劯ɯíÝ`éPÑo¥^ C>N~78ÊQ’uêY"¦LŒ‰*1ÖôÁ)äˆ^1‘ÖŸ}7…üû bå°jÚîº÷ÈŸQ*Î'ïïF9L©{mM‘EbLiÕϰT:8Q¦ƒ{t~ß®#Î1Œr˜,R?‚˜"!&‹„˜Ò’êÄnI„)-‰°gbøò'°ÚïW˜êß×7q—9xqN;ŒõØ”Ã(‡5ÆÍ®1Æ+Ì|ßÍE;iN»WMv `ÍvÀu ÊQ’u&e&UbìéƒO{Ñ5P§ðû¹KtÙζýPMˆ£Ê‹ð²*Ï ƒ”©úM# ƒŠT Öîè6@oµ÷y‰™·…v‰™0HYð±±­è0ƒqúbtä©)EQŠ~2$êCPmõû©÷0$M—Òé“d—R”£$÷Ø·|´¬zÄÕó¶àh“²…Rsä³l£VM»káýæ‡}¡% v~,´ð``/Æb AŒrØcÛ÷óå>—CçlsyÆiáÚŒñŠ-S¯³ôØ”Ã(‡UÛÖén–ë#LÿæäúHQŽ’\cž–%ke§}ïø„»Bù‹ƒú‘«§,HY°ÚØ- ÂÜ¢, ßñ}Hײä(Éqû¢U±¿[· ×7b¼ÞÌ¢m¯7) >6îïê#Å):/†¡›v<‘(ÊQ’«æµþ w®sÁ@Ú÷_1ÊaÕ¶æ¤.ÅO”ð>”™ñƒ%¹Æ¼&ó>&òâ˜r´è©)EQŠz ;¾×qû¦ÛŠñ:'íÁëœ1ÊamÚÎÝ®åù€hñâµ<à eÁjã}äâñ·¾ÝXˆM9Œr˜(RŸgM‘EbLi䯙*œ(ÓÁ=#¥½%,ùRåwÁtߦàŽr”äDŸœLŒ‰*1ÖôÁ×^~4nÄ^=e—”¶ ˆ2P#oHÂã€ç~Eצ,HYðO”m‡³ÇF(Ûèe b£4µ¸lÄ b#ëw´ª~+ýؽ½»ä°~|ÿrò¥°ÂéG=ùRX”£$Wí»®7zŸ(y1­êìØÄ(‡‰"U݉1Q$ÆD‘Öšn©tp¢LWGÊâJNÙøtÕ–tÖ†ª˜š@=~¬/5ûƒšR¥(Q¡-±"HÔ‡ *ïz|Y•ÍÆåÒ<Þ…Ä(‡)"GWŠK$‘{Æï§qgîÅfq‡V¤,¨HÕóŸT *R1X{£õtÀb©/ŽÃÉÜòt1Êamss_**òõ±øX£Vmûha}óE¥Â©·vzlÊa”êq‹ruÖŒöL’ôÜ”ä(É):…¿K'ä«Ý°~lNŽ7>œš Ç£%¹jßT8Ð8¯¿ÏYKÎÚ–Ž)'‘ewEVxÉËÂálëƒ}íQ²`5q(¬Ä¸¾ËqFa¥œ² eÁÇÄk:ó ^=|H|)Š@”£¼—ž›y<[9X1ŠRT5kñ$iqÅššAì*¶V8˜ë¢m¾^Å,ˆ=æ}»Ds­Ux tk¯?«çU>ì¿Í ý ÉÇ}ˆ¢%*TG¾%A¢>5­>{œ Ë€íêR:ú$^›• zM9ŒrXµ­ÛÎÛ5e;S8uÙV¶3AŽ’\µïøö^6ßìsc(ú2N>1Ž’\5ïTë ÔN篕Êœ}x9ÊDH”§­N¦<‰ò$ÊSËõ˜ú % „Ô3*¶+v辇]Á¹q)H;U9õ»_fw^öy1L˜ÄjJQ”¢D…Bn©C!¤D… ^‡BH‰ !õ ŽöÍð@Áã š]š9ÊQ’«öܵïJh+\»ôº2Ú eÁ?YP±Qš‰\6bP±ƒO7Í©Í}s¦PâþÉiÎáv|À%¼\8is(põ÷f– Ž]ßS§ÒV5M ±û…­\fv6 %¹ç÷ηî74%†=rªoÞô+9 ì‡•\æ¦$GI®êܶ&ΦOvüˆa”Ñj0Љ0E$ÂêPÙve¨˜OT=œ¶çë±úsZá,»>`ápµxv/% R¬&ê›öv×þfkÂéO”ö\ù¹ý=IpÉØßÝU9Õwµñß»½(À²ôæ=pP,ýbÄ(‡UÛV%ÛÅ,PS0½ëz®÷ý¾!ÊaÕ¸Ýç1“„Ùñ,f) V•"€öìR°Ñ·mO.QŽþý÷´@‹Y®0ÊÕæT$ÆLV()R `qôFsÿQ’û¯ršËÔ®.³®+ÁÔ‹ý³/žš%0ìÞ…ó­œÀÄ(‡)"ǵÄ%aŠH„Õ¸Ž áØïÈ¾ºÖÈtÞ}ߨä÷^þqŒ '”´´Æa² "Ušá]R1¨HÅ "U?ƒ©T¤bð8ó§æá;*/†5qd×Mš(GI®š·ðèJÿÞ¡¹÷íó*ß1¶rb bë,¼ÏM”<ð$Yá §€þÈßîÐØ=c{…R ['þÆþä0Q$nIQ$Æž1vGÌcœ?ÔîÏ”¢ªÂo‹‡JáŠÉö(HYð±q}+/ëvx¡”©¨‡¦ DH”7ö¶C‚Dyå½3ò$ÊCP•w_õ4½‹¿£ªÛ;Ç0ÊaŠHåð‚D"L‰°úqµ¡Fiÿ#‡ 7|“v¤1ˆQ{ŒÛšMZàºsáŒà²M‹‚”ÿdAÅFœñ ØˆAÅFŽÅ¾5»J÷M°B¡à˜©á#ÁÛ·6*rXm‘ÃY|ccË~uNNYþù÷ÏèÊaO‹î‹#™%oìÙøþ0DQŠªf]þ”p¥°}’®œ€ý¸®êD+wíGFð×¹/˜þ´ˆFr”ä‚_Ø¥rŠNÈ):ßIStBî.§za Ý6²Ì¯BI߀M9ŒrX5­ Ã9êW®ó•«wî†>ÛÃñ¸¸*^èE)ª1lM¸®w—Òéßý°MqíŒÂ eÁjã¦ÅlíÊV?àá ¬°ôŒ‚¡PKÏb”Ñêx±E"L‰°§>JüÍv;Ÿf›â¾dR(´Ëd• F9L©nÜl‘SD"ìiÿùÊ ßz:ævV×£7¼š}áPV/få(É=ö þ\WÄçND\†ÜŽ÷1ÊaÕ¶{O«æö{ÚçÆÙÙ¬šå(ÉUûЭÙkáÅù|‡µ§,HYð‘ºÞñ¬ï°ÏìÀåýaR£ eAYê¬vêe©PiUÕ ZƒJ«bðãk3Æõ,§qÜ %m}#<ÈQ’{Ìû^^§÷÷Å0{‡5¸¨ƒå0E¤²ÃB"¦ˆDXÓ'ß ^ŠÿøÎ×ÔËJO„¬4P¤,XM¼n ¹_Žy1UÎãoÜD9JrÕÀæÂì w„/†¡àG9Jr¢N=ÓÅ”‰1Q%Æš>Ømw¥Â•§‰e·ïõÑòèc4WlOM)ŠRT5Ks=ÙÇ Óýxű0HY°šØÌœÆ‚>Xxap Œq”ä×€žîs>]þŽî4Ã(‡É"µÊh@$Äd‘SZRqG –D˜Ò’«£y9Õ£[uGðZǦ]k°ï‚n˜ö˜~Èç7Ý‚å0Q¤îÀ0EbL‰±ÚqíÍMÁ£ ß +˜öpPBÂA½U S¯MØ÷4~À=0$)‡=2wtBN4?î\¢'Ž}¾ÜßêBrÕÿ~ÀfbpÕÿƒ”«Ôeõy<øa9 R”¥ZSª”¥:@¥U ‡ÝªTZƒƒT'·²ƒz dú0E¤ê)±E"L‰°:]\%%£µ¢~¸Ó?ÓSŠ ®âoAªþÖX÷(E=mßVµ€Qû£Æ}¾™ZÄ(‡UÓ6-Lcf…Nˆœ˜Y!QŽ’\cß§„1`|c -Ç‹C¥¨j˜Ã')Qmâ„?牧Z¯ÃN·­÷q`Ý­W‹€x]°C ¦3'Zÿå|_7dÝÏ3¾ˆ¼ü!É(GI®h¼9k6LsÍ\ÝS ×Ì Öx-]lj(GINÔ)C21&ªÄXÓ®èÒÈ©5 …³Ò‹QcSú1aÕ–f§ì 4çÅ1gÎ=†L5ç~mH[àµV¸Ò7bo…JèÞš2e QžÖ¹¦<‰ò$ÊS>S¤Dª£bÑóBçâ2`²kË|• Pãúg>JÄ(‡‰"¥¢5‘Eb¬¶ÿ½S—LùjVáÔÅÁIîVùFW£&Š”Vg‡HŒ‰"C¿¶>Êaâ¯ÁõRü1ÿ*Û¬.¢ç¬DYAóǰ*r¨y Ìv¼¾d¡ÄWYŒ¢Õvb‡€]Qäp"g…Jv"g¤,XmìnÌ 7ð”-ßÒÕw¦N…[ß®0×–F9L©†l‘SD"ìé¹õúÂÉEôv%¹*tÑ>ÙF%濾eA€¦ DH’'8þ±<Iò $É“ŽHX¦$˜zFÅ·ÙŽ»ÊkÝç©‚Ò¼?=5¥(JQÕ¬ùZ3f!&ôìD‡¬ª[”‰JΪ b”ÃÛ¶ÇÆ.¢JÙàÉEŸBe Qžê¤²ä!H”‡ Qžî¢²ôAJ©fT´;cà ÎwÆ£ò`‹‚”«ËáÛ òyøñ¾ŒOÅQ²`µÑ¨bíè §&W(Û‚íðu¯µvÞ9q8Miãm) ÊR­qcJu€²T¨´ªzjD­ŠA¥U1XGNÒz gÿ{À­| ¶a·rS’£$'ê¬tètp¢ÎÈï•Ò@Ο’ÜÓí{—n#Uå4–sw\“²=~¨fäOš9ûJ¥/EíÅ0t™åÑ1ÊaŠHÕb‹D˜"aµx ³ë^VÁ7·ëbV”£$WÍk Ú8 €=àùÙ2>òSÉú³¯ L¿2%߈r”ä.óöÿ½ßãóFŽYºoˆcÚL€”gÕǧ…pLò÷h擯×#*¥Vw’2Yÿb§œ0ÊaUäu½1¿¼»Û ² ,U¯D ¤:@YªT¤Jû@—T *R1øŒmçíî0÷{k=ªƪȡôµ£PWåÚÂQ¨+RlL<µï·i˜/›Ðn ­€_Þž‡/žÖT.Õ/A²à#uþ8R½—wW·.ŒQSDª[k[$‘û¯bm$NÝZ¿¹È904)EU‰ó×7­|”ÌZ€¸€·uç`] ¤,¨H•¾—T *R1X»cרæö¬`Ò1zĦF9¬ÚÖÆÜU2*ëp÷DZHYðOTlÄI,ŠTlÄà#õ.…ö·ßÅ!úþÙŸwx c”Ãd‘û¸ªxDBL ±çƒXÚø ³êBÅì·SX|0ŒQ«¶)IÖ]ŠÁê*Ýe8GIî1oU‹Û43`ÿ¢RêQSJ ý‹i9£Fâ_lmR–ŒHÅçÃ3 R”¥‘ [ª”¥:@¥UõHhU *­ùEõ`$Œ6JQuŒ¶¯ýÁÓð‹aÍžÀwŠr”äDútfÊʨcO\Á†¿»¾á_êí RtyqCg›./.ŒQSDªa[$‘k:Àîmé¾FÅô¥KºBç(ÉUó®§Þœ F/†™ Fã&'DQŠj ó\†Ø»\×¶Á°F9¬švçiÆRˆÿ‚Î,éͯ_gÊòÆ&Ø GIî±o«ãÄñ¤é«Ã„{ÝÖåž0F9¬Ú¦º´õû´±¦Z ±òsÿÑÁ•xe=ä(ɉ:µØ’‰1Q%Æš>ð­ý×%(¨Î×.ö_1pó¢ ýG)JQam¢‡/_àÛ»»Do¿Säá3#ƒÿf¿þ½ eÁjãloðß×gÞUᩘ¸’Ü”ä(ÉqóÆO`Ú Qà°(¯€½ÿðXDAÊ‚ŠTãÚš-ƒŠT >½q4îo}‹Šéi«.NÈ&S¹&Øòw̬E£ eAYªåï0¥:@YªTZÕðwØ­ŠA¥U1XÇéø"¢/¾~Œ÷§|ñõ(HY°±ñT?ŽæÁì <y¬³ogÎ݇RiÏÊM«˜¾s’rÓâ%9nžïn4·NpS7Íq»\(o<@;ä!H”‡ QÞ¸ótÈC(AuHì_Ŧv ñ¼µ›R÷GJrÝÑNpe¥&ÿ\å_ó/ãç}×.ªÜ½) ÊR­EÕ”êe©PiUcQµ[ƒJ«bðù’®4êx²Û~í[â(E5?OÞˆ][ð&xè(rý¼ …úæ ÊaEæçÎg–0Ýõôy·EÜOVý¿úAAßÓ<H|ùö³Y£öØ&{ã¤v|uˆtØ™)ÁP‚´Û ( !‚2„Ôv¾g›7pÀð õçÓ] Wßnø|º+O¡¸¿„ôbœ^U´ç¦$GI®Úw—Ôµ}ìåJ)㽇¦ DH”7î;ò$ÊC(O¸åíÐ)Q ¤žQ17%Ã…1ÿ•…z nm›rå0Q¤T,Ã!c¢HŒÕö¿ÜïèôÏ¢œ69,ÊÄ(‡5¶¹nÁqlé&Ô  ËE(d°T„E)ª1Ì4°¹i”ÿê)”ÐÁ§žE)JV¨¶†©Q²BDÕ–oKQ8ž©àwñêXö[¡{Žç¢…AÊ‚ÕÆ;K½9ùô3Þµâô…ÿrG­(€Ó\^ Ó{r:N”£$÷˜wWÓ²VîeàËÖª›R§Ê›rå0nšvˆÔ¨ymÉsYû÷ãpØÊÜ”ä(ÉUï,ïe”…yÓ¾7) *R¥ÏÁ%ƒŠT òî&ÔÖUÏä²6pßYÝ÷Õ=N_y½R ¨/½Æ(‡UÓº½©êÅá{Ó‚¿ ß›Æ0Êam»ò%X ,?˜/ÿÍöއœ² eÁjã÷£è_l¾>„ßhn,üêém7%9Jry[óÁjY¥Ã÷zC¶ÿtø\C¥¨Ç¬ý*(N( ÞÎldFAÊ‚Uêwó…uV.5R”¥ZÝaJu€²T¨´ªÖ±[ƒJ«b°JÝfÑGX°ï…}û8R£&Š”8‘EbLnIiqð4%æä¶Äœ¨ó# j‡N'êtpuú=WלÆ3Þ?õ0Œo"½:]ªä·¥b¥¨ªð~<þ:æKàµÿðm`¤,(K'NT(Ku€J«J‡"W«bPiU þÇÁh^Cñî`ÞAÛè«Ð8 6Þ Ü›6AÊ‚ÕÆu“'D£(zÅôÝyÏMIŽ’\5ï~Žpðä÷óÛqrû\oBlÊa”ÃD‘úÜmŠÄ˜(c¢HqÅu¨tp¢L÷Œ”³É™](oÙ¯{CãWgºuC¥(Q¡à¿ê©Új]Yvó`å­xݤB¾ñ¿1¸ áG” GI®š·,ª7ÊrJœÍ,»¸'Ù›’<ÖÃè_íPk0G¨ÒŒó[Â7®¶«*r²=U£VMÛ¬ª«=x†uì`O±ŽQ”¢ªY»¼üvI+,qCÃj(1S‚¡#ikCŒ¤ 1’6=CÈ!I„ž±ðyë!ã£ÿ4½êÐåßü '+ÿäC¥¨jÖåÏÕmœígc䜊D¨1J‹ê™XÝyŠÊ\¼ÇÉÝ$AŒr˜(R¿ÁiŠÄ˜(cµýß<$ä*Ü]¸v­s]Á/™]ð_:WËõêO9 å(ÉUW˜_s^Þþœïƒì’/<=FQŠªf}@3^_ÐùfŸù¢Ü±)‡QEê‡S$ÆD‘EçwS¥ƒe:¸:Rš“n  JáðJ²rƒ eAEª±žØR1¨HÅ`í õ0ÿ-M6„”|Þè_ ÓÐé¹)ÉQ’St ®—NÈ):!§è|'uBNÑ ¹:\¿Ÿ½£*ü®ÀŸö¹†ç}°bêC±²#îÅA$tãßn¤,Xm¼jÒõkÌnüA»×]ëŒ.¥lf[ƒïõèO°”rÁì‡ã‡RÊAŒrXcÛé8í½Ù÷¦†mˆMˆ2(Oñ¡Øò$ÊC(Os¢Øú % üÖuš÷~`”äê(ü¶g4ÿ]…ßK‰Ô¨›Ã¿ÇçÈ GIî±oo[î«¿…ù½Ãq+†QSDjä€H„)"VÛß™¼±ñµ;St76¾‚%9f_sTvUí»1X÷í‹r”äóŽvå†ï ¼8v Ó˜±rÇ0ÊaÕ¶»tå&žÍ&Q:Tô§‘Wéü›rå°jÛGuü ½þb˜~AH-÷[ ál÷ùü~]«Êgg«C¤,(Kµ6X¦T(Ku€J«êmЪTZƒuä4!P1H 6öÔ”¢èë–iëC¢$Wšqy7Á+÷Ûà•k]j®àU¤,¨H•vh.©T¤bðOTl|gmÄ b#ëˆë¢Üª?‚E¹°¯o¥`áÙåÝ–p¼`ó€Â«§¾Î(`³øú:# RllüªÞÃÑ›÷â˜ä£Ð€?«øµ7Œ]µýÁŽzî”:P¾#_¸_‘R:¥|E>ˆQEêÛeS$ÆD‘EJ;‡HŒ‰"1V‡É¶«£Kpœ=ÆÍïv‚06vG¿é ƒ”e©ÖÆÎ”êe©PiUcÚµ[ƒJ«†~12›Q{†éÜ[%™r°u™¿®È Ÿ=g¥¼¯}/˜î “ãQŽ’œ¨SÌ@pètp¢NW»¡)˜,ÌMò¹ºPc«ø1é^’rÐç`!È“êÚÑCæ¦$GIî1oÑ3+4L?ZiÜUBÏò¼]¢ eAYª5Ë›R ,Õ*­jÌòv«bPiU 6R}£ùmFãØ !µ€µq.'±sž¡&þžžÄ_ ÌjËÖ\£ðgÕîò¸³ƒªÀMIŽ’\µïªé­;ø?×~yéË?œ^èL˜×(É=:Wų,Ë|õ˜1Û+æ9JryÎibfßÞê,£R>ZÊ‚ò/:æù b#ž˜1X»ãªU½ó¼\/‡_¦/œî,’ùQŽ’Ücß·-=x§àüZþlÅwóí¼oÆ–äֲꂜ² eÁjãn^Ç<¯–a—‘ ¥:ÃzlÊa”êiÎ×)†a¦%ÒÙ1Ò{kŽ>9D£(EUÃ>.&‹Â/ma5ÍÍÊ «hZÑ*¬£(E‰ µ‹,¦@‰úÔ´z“ߨ%S@#Ú çw„AÊ‚jvâ/ö¾Ö¹ßIëÝZxÚëcÏMIŽ’\5¯™\Ç8¯2·Þ¶V)Skˆ¢UÍRãµÀ$<½*‚ü…åeÿhé.öñi¿Ëƒ+ÙÍרä/¨Êšï†ÔCe QÞ8ªò$ÊC(O+Õ`냔(RͨhVxweÙeoꛫۂñ xcúÎL99Jr¢NÑ9ìÐéàDîé†ãºÏ~¿y¹ò æY.Dz[sÈðXÙ,~SÊ—ÝCS¢ $ÊSV&[‚Dyåé·X ç¥<M+ ÎÏ`©ca²`µqSf¶gàØ|U,ù…‡å8ÍVëôõˆ<¯ høŠÿrvî+inîÝW/Âc3÷{EAÊ‚ÕÆÙå3á&n®“žë‰Æ(GI®±ïà 4"Ä/ŽÍʤ®–Ï»úÁ¢vƒr¸ºA½L€r¶ r”äªMÝ1ÁßO/FIi›rå0Qä'¥R¢DHÕÆü°f÷Å8xå—‡ƒ%¹bßú~oŠfTùáÔû¾rôe}<îÛS·ØXØ{@8G³1éÿá‡éÖ˜þ(‡ÕU£gö- ·ã)ÉÕ¼F6¼5úi: R”¥n>[ª”¥:@¥U%÷«U1¨´*Ÿ‘ú¹‰ÑÔ¿â2KÄ ƒ”«àÚ’2™¶UõTo>ÛöxØÙ¦'FQŠª>vK ‚D}ª­ÞÞÐõ?î»Î4åÊn’õ~£Óù´ç‹c`eà Ã(‡UÛ¼/¢° Vñ·Æ°(HY°Ú¸)ÙÂ}/îÛŸ÷ 'Ä*dpÊ‚”Ûä&XÚ¨rÇRoþd£un·åÒb"oË 7º‹Á®'ÈQ’{ì[ºm¹0Ç(»¥ÂIþpk%Yb 5¯žƒŸOĉr”äDû5œö_î§ðá9JrÕ<­‚w?<ù{…3扜² eÁÆDÓÿü¾¨ï)x1JM¯è±jÞ©ß°GAî1ní Gè›jîSZ×&Z﮽`ú4ßsS’£$§è\’:!§è„œ¢óÔ 9E'äêp¹ƒï|ŸÜÇúù}½‚¡"üÂ^”£$WÍÛ?ÖqçNœ}d«P(—íìC#ëzØKŠ2åÞ˜>Å+3n£þ==¿fœ8)E5¿éÊaOÇ}ï <ŧ_ŒRÎè=4e Ê@¢<5¦kÉC(A¢<=úh郔(RUá廼…mâÊ<³Sv £&‹œGÛ<"!&‹„˜Ò’Jlµ$”–DXš¥BÍä+Šܼ“âÓQzŒÚÔÈ+;¦òãÑv%wD‹D®wö ºâÉb(ŒZð§ eÁÇÄã t¡£/^8xÐáµÓà eÁj¢òN˜•ª] éöëHM)ŠRTcÖéœ+ï9ç…`^i= Rä&†³¼Ë¦Æa‡¶ÙªËÜ ŠMã(É5ö-Öˆ¹ö¡¼žW¡À£Hü]­U-‰hRg3±è£s˜WN-𦕠GI®š7;6ao¶À^½¡¨)EÑ?þÖ"”Ãj#®‹kü¿?|”\ x:åá¦$GI®ø}¿ÎQ…­‚³øñX£ëfÌ=ÕÐá!ˆ2P5éšF ¨?`“X& Ù»]8Á+g»·Ã eAE*öà+R1¨HõÇ (} .©T¤bð8w7{_Å«„JËzlÊa”øiáäŸ\Ô¯IΨ ƒÜB7ØØ¸‚ãž|é´€ã„aÅR %:ñݘ¶ظ>÷X5m“=Üfþj¡ÔR>=6å0ú×_ÓCóºG6FÉ¿…úLþ-DÉ¿…:Zþ-ÿðØ˘]ýÎW~|2h^®/mÊ‚”e©Æ]y[ª”¥:@EªÍwIÅ "ƒÏ¸™µæ,I¡À3ÜIÄ(‡)"µg8€H„)"VÛ}!>³ß <˜ðÉ6ÈQ’k ÔœwfD÷»Ü{€7É[€ãÔH°\#ˆQEJ[8‡HŒ‰"1&ŠÔ'?S$ÆD‘k†É—o}çìå­Gê÷Ê«’~ËÓ­Ñ êïòqø¢Y†l€˜%ÈÆ(JQÕ¬»J¹sæÛŽ›¾m š2e Qžê„±ä!H”‡ Qžî‚´ôAJ©:*štiÆ‘Óq ¦»dåtœ(GI®š×¼©¡íй¾@öÙ”¿s£(E‰ ÕLDS!¤D…z~m7Ž·ç_D×y\6 R¬6~4•œð`£³ÅJNb”êm×f0š†X8= ¿ç¦$GI®Ú—»€ñý¾ÅË·»g`|,Þù€px²€g¤,Xm\šA#m ïEˆ%µN=@ôØ”Ã(‡‰"¥•Ò!c¢HŒ‰"ÅT‡J'ÊtpUçu„йõš–~GØÚèŒq”äêˆn‹Çóú~'°¿ŠAÁôË:Šc6ÈQ’St Ùô.StB®é_…~Ëçû½¼´füt¨÷ÝÔ;˜9·ë; ç¿Û¦» Û#õ|©_ŒÓïöÜ”ä(ÉUûšR‰Ê™pô”ßæ(í©)EQŠŽ‡@‰úô´úÞíÝõ„›aï^@=b ìÝ£ eÁjcãäq_'/òos7O £¦ˆTýÛ¶H„)"VÛ_{ù ?ÐóÇq gd˜Ê¯ã„AÊ‚ÕÄër¿tpn±“[x¿¾­ºá媦ßã~1Ïîˆ!•âß4°)‡Qkl³—Gkê}8ÞϪ óRøpX+ œøa- Ò¿ÿ"z\N~³$Ê=mz¶é03„ÆC:L¤,Xm¼R„8t³^–0eŸÓSSŠ¢U s>Z1øKNm°ØyaÛ»;xI`ðzqð=ø»dpÊ‚”«¾6åg“í­-ò}ʆ³/+^‡ ž°òƒi  uhûtë‘¶{áëуó™µ1ÊaÕ¶±Rš«žå¨åËu±Ì/ÿ½¥fËÁŠÖ/FÙ; E·ƒå°*ò~‹¬q¢³¦¼çÚ/—) þÉ‚²³4\<6:@ÙF¨tÇ7ÛTºƒõ£ÐRýììè›"vrt”£$ר7«!˜qº~1LŒˆ³ü窂ӛ6¶àÞ L7ÚØzä(É=Îï¦9Î/¢b»|3¸ÍmÃk… &l>­ð`£Vmk$-ð9Lõ7¤ùT•å(DÑ?þÖ¾¾Êaµµ j]&Õð&Cጠ`NY²`c¢¹q¹£Ckï-º·öÒíדéÿP)É=Æ-{Á8£°r¢O ¬œh¤,Xm\φuãM³œÆü tû ™1—±×C¥¨jV—‹HUîÊ¡‰f)lmÍ8¼sx1ltnƒN£$'ê”rr21&ªÄXíƒ](H乿0Êaȵ»Äú6Ñw„íN®}1Ðx7§§,HY°ÚøiR}`&Ó‹aök_Ãv*DQŠª†9_½å…kÎê'[G¢ eÁjãaÏd½ËêÅ0}fé¹)ÉQ’uJs‹C&ÆD•«} ,y ”z¨ïÇç¥äU¶ï¬í5»ðÍÏ÷ gê‹qh@nJr”äûjÀTää€iáŒûîrÀ4 RT¤J—T *R1¨H•†›K*©¬§)36Mû¯÷Å qtSj¶É0Q4ar©~¬&/˜¾wqK’{#®vøéoHÊ@Ò/¡Æ—~ÈßaÎGÇøƒòˆ¢&üEù0HY°±Ñ—WÄ«­oÛû[Ô¾ÁW0½P˜|…/ÊQ’«æ}ÔpYã(Å¥«LTÓ_Î5ˆrÊïÁ\ù=È)¿'å÷ ÷tÃÞ•‘örŠ/{?[Ða±ì°0HYðO”m´b_¦P¶Ñ*ÝaľìîÀ Ò|†Ü±Ë›•èZ í¦jOM)ŠRÔcÖyM„oÛAýevÝ:£|™a1ŒrX5­©î§¹yu¿‚¡#0¯îå(ɉ:õC°)c¢JŒ5}à:sÜuîi~>¿N/ÿ‡·å„8{nJr”äŠû»ùZÕ°ûX Ú’}«1ŠRT5ë3LÊ¿áÞ TvÏyõŒy²x )Q’ä)‹Œ©1’8ÄÔæÖö¢vᇛÕMlûaÑáýÝD‡ÅoYŽÎÐ)G‡Ã eAEªz AR1¨HÅ "Uš²\R1¨HÅ`3p|÷Ùù‹fØœ–MpÊ‚”ñó˜rÌ~¿ŠÂDŸŽ-بÓ|Tiÿ¨‰!`Îø\÷¶œ%OG|N=Z/è¤$÷Èœ—Æ)) Ñ«ø{é…S·¦=6å0Êa¢Hi¦pˆÄ˜(c¢H1‡È¡ÒÁ‰2\)kìö‹×áGbòMñ(GI®ØœÝ7A ¥&ÉË'ä F9L9n`\"¦ˆDØÓþ¥jW,‘qÿ©ž#ÓÌË„G˜™­•AŽ’\5ðz¯R÷ôÊž g\e—K<…AÊ‚ÜDý­påÉCØ÷ ëû„}±°¾r”äªêU=;f¸¯×[ºÑ;~û·‰~à¨Â‹azÊÑ(GI®š×^ïsTÄmÀ³ÎiÊnn¸X(å”ÚCS¢ $Ê1yå!H”7®Çyå!èÛ¬ÌËݵyv=§Pà"4¯”Ä(‡UÓÔ(šUQ@ã¸$gU„AÊ‚ÕÆÝtË ¯7¥¯År.i£VM;´¤3C¢pz’³²hì³r¤è¼q|SzS((Â7¥1ŒrX5­©®©/¿ÃÞëÆô}‰²õ r”äDFS§ƒu:¸¦¾fïõ·*Öeû » ÷åa5 §W;ê¹)ÉQ’«öi5XZ¯=ºëõP$lÊaô¯¿¶ƒ rBF”«M)ïŸì¬áRéE {lÊa”ÃÓüI}/`<Ë,Ûf%PÃ{|!¸!rãë@ˆ¢ü­û:›«1(E=­q®õÂîožw¶Ãˆa”ÃD‘úÆÄ‰1Q$Æä–”EOSbNnK̉:ÅEÑ¡ÓÁ‰:ÜóqŸW ÎpI‚¶ž=WI‚0HYðO¬£'/µs3wDݘx@¸)ÉQ’«æ©·Ú@,ó<]©Oì:Üq§a„Ëﮀ“4¥õžõHfNY²`µ±¹›¨Ù[8£{pÊ‚”«‰õt¸zcFÕ7ù|å(ÉÉ:q&Ьs²NæËñù(ˆÎ}ÄBš…B^'Ñ b”êiWÔ]v¯¿ÖR>ŠþPõ›•ö0Ê'ûÑn¹ƒ/6ÈQ’«æ­©ÈÏÑ8^·5ÖoTwä¯(GINÖ©¯:1'ëÄ\Ó ‰Ûb…BÑhSãÃÃ;›øi 󫀆‹XÎü ƒ”g%ŒcgR yx*u”£$WÍ›gÑ<+£´@æ1zÈõ<ÚúFc¼N®oT í3kÅ(JQ¢Â±$êCPmu³f“²×ŸWW.9Ÿ¾pªï¢Ç¦F9L©~)¶HŒ‰"1&Š•N”éàêHÙ|%î>+7ps•œ+Ü”äèŸïN§õ­¨”Ô_C ±òkîõ»<)]=­ût^öXîÀkú§U%^árçò/ŽI9É#6å0ÊamºçÇšsËø[ýŒþb¹ê€Å(JQ¢Bu'b D¨AO«·+¢xs@ñ+¬Íõ1ñV±âWr”äûfÅ@);þÅ01N:bϯÝÙbî÷_Ô=t=8eAÊ‚ÕÆÇÍÊî­å=´õfuƒÄb”ÃD‘Æfȉ1Q$ÆD‘ÖVÈRéàD™®Ž­z‘•jpè•„¬à£¦ˆ7 .‘SD"L©Í˜@$‘k ºa)§ÿß} Lì”êÌC'­J–#r|ÏËó  Ü!~ƒ8ªÈ]âQ²àŸ,ø4Îæs徫Íé[œWQ² "Uw¯©T¤b°öFãis_Þ.”}ŽD˜r O[[wÚR")ãi«`ö9r8mÅ0ÊaÕ¶;º·œÜSQ@¸䮃(HY°Ú¨¦ÚÙ©×? ~A¬ùAž,ñpêÝßž›’%¹jßG--K¿Ü|q¿ËçÜrZ.»½.m§}³uîêcW W¢€êŽ\I•r”䪳•ùø¾Î¦o¶Óº!ÍuÔSSŠ¢ý­%0MSS~ Íîʯ¹…½M2 <&sìׯ%\)ð¸Ÿ&t¾høâØ8mšîÌF9¬ÚÖ~8ðmÏÇ€‹‘ïVcå°Æ6—C“cŽZÈ£Ÿä4î][+Vá¤Ýƒµb9Jrž³-ˤzy¿ý¶¯@`ùí§“E)JT¨ú^-õ!¨¶z—Ñ€Ëî<à§û¬Õ3û¬ ìeÙgÄ(‡=¶Í`O)'yœóuÃúïïˆMr-¥óÑ/¥AŒr˜,rW¼h@$Äd‘« –’éϼ¤Ï¹|´Z@f šs¹t¯æË¶šØ[ôQKëÄ ÔÏ<×+ïOùÄå|™ ”CÂFŒ¢UÍښÊãñÓaŒ{ï×¶(GI®ˆ‡º=Þ·ï”×D›rå0Q¤u°DbL‰1Q¤s°T:8Q¦ƒ{FÊ÷Úd‡¶9¿ŸYþòúó)/›Q8#mV®›) rÇ}3â¬,2983 wƒçCe jR›ÜãŽà T„㜠F9ì±m»ëjª“å½8~Ø:·)¥L˜ôÝ80£†O>¨’r˜økØ8ñ×0&þš£MÄŸspu¤hå¬ÚÝË«PÊAÓiûR_ÜæÕÄέñ"Ü‹AšO¡§¦E)ªš¥]ï2öØÅìB©–›rýã¯íoÿˆ¢ $þ†â/!Hü%8vÅŸòø»2ªûaÑá~ü`»º GI®8›÷µ”Óå¾€å«9y9ÏÂ7{pÊ‚”«Ôõêù_õâÚÉ{0R”¥Îú–Þ–êe©PiUý(ZƒJ«b°Žñu#çþ8Nþq¬Í¥n‰ëK¬¾§n¤zlÊa”ÃD‘ÒþË!c¢HŒÉ-)MÚž¦ÄœÜ–˜{FJ[F ,ð}Ç g?ß„(JQ¢BõXk D¨AµÕW¥ûnY¡ì¨Â謌a”ÑJD‰D˜"aMûÛ×°”ù@/U+[‡ GI®š·ùvŒ|i<\Éæü­ã F9ì1îl"y¦¸òÚg¨ôÇ>FO^£$'ê÷µNÔéàªNær‘r9–å÷œûmTF(JQ’Â%¥S’BL‰mx¦°šGó`õÃ1ï3+®^ÏÅÅÑ×¢(EÉ Õ4&S!¢d…ˆª ï¼;¿Ù||ún©nJr”äÑu¸>ÑôÅ@ã~š|! R¬6vwúï§åNn"Ê5í¹ËÂãï÷'49P’Ï1«ˆ¿çàêïíŸH»P’û¯p垬|’~1lœ5enJr”äDRa‡LŒ‰*1VûàògèûY…3³„¥Ô²‡‘Ã/kŽD¨štQÁÚrÁÜì 9½_ªèKI'@Ê‚Uêí/»‚<šS~élaŒr˜,²ó?úEBL 1¥%µ36~AÌL37¦”!ä(ÉUóv%+±çúâ?•3–¯œ² eÁFj›„/¹4ïÍ\ÇI€”ÿdAÙF£Z„m£”mt€Jwèw"@w`Pé >ÇV—ç=°Bž_~ZQ”¢d…ªç×Tˆ(Y!¢jÃÏ®SÔÌöþ‹­˜Ô”¢(EI 3¡S’BLI ­ãŒ!ÑIX÷V±„© /ÁK S ²`µ±;ç)÷xÎ+˜vR9çÅ0ÊaÕ6íµ¢®MX‰óÊ{€œ² eÁÆDó‚ÜÝ0Üõ}SèÌÊû¸Vòû Χk¦]XGÜšþÖ 1Œr˜(Ò˜-‘EbLiM–J'Êtpu¤|]~®¾Üs匣lNY²`5qá¸ëÜ¿Äø—;íâýGK9ìQyÌzÙ…g/ËŠDýÅ®ü«`奿`Óñú¸úýÆô©ÒíAŽ’ÜcÞy]d;9þ÷yÏÖm)“³B ¼Æ–æE)ªšÕDäÜo»Vcä¹0HYP‘*h—T *R1¨H•f2—T *R1XÎ×µ:°ÕïÆðTÍV¿(GIî1xï'ϾŠcåàö±¯â˜) 6&zî'¿Ù”vSö"ö`õÇÖ™;º1à[†ùÉŠ1ÊaÕ¶ú)ë%ÿ>ÊÅ1ð!Ä0ÊaÕ´;iPÚ{´‡!®rž÷À(¡ö¨œÑýÙg_8cI‘öa² "Ç%©T¤bP‘*͹.©T¤b°œ]ˉµC ¨W`•£!a²àcãòq66©Ý/z8yqÌÞ]÷õsÃå°j›úN-jK5‡Úöc= ªØËýXa²`cã{ðGÖƒv¸ýYqë±ÊyC®R(ÂV1Œr˜"R …Ø"¦ˆDXÓþ¿ûÿP­¹Š Å}%lÊa”êm+ò IWÐ~ÁE<ëÛiÌÓÏ rs”£$WÍSýP`2ºAç7N9¬‘y&ÜeŸ¯ý¢ã5Vú*+•R¬Ç¦F9Œ›6îâmjkvGú¸Ö®roà„_Ù ‰a”ÃD‘†Þ‰1Q$ÆD‘– ÞRéàD™®Ž”n;¬' ÛáŽ{L°Ž‚”¹ÁWÅ~A-¡¬M™ëŸƒùÁ6õb Ø2nêÑÌÒQ²à`£4Á ^‚ÁDiûny‚Ü` “kìslÇ-qÁ@¬œ/`»i°3r ¦ïä”Ü(GI®1¯ÙqÂÂÁ/ŽÊQOÙqÆ0ú×_;í³¶²AŠaOKÞ5ê¥í_‡æ®D£VmSxø¢sïà€‚”]7²ßlZ)˜¹¤mÙI¤T6¤bã]æ¦$GINÔ)Íš™Ub¬öÁ bÖ*·Ø¢œHoÎØ|(GÒ(HYP‘*}ð.©T¤b°é+‡*šá÷9ºËoyUaµ}+vž}mß0F9ì±íTC7`Þ½AçtF9¬‘éÈÁ°x’”(ùÙ†=ÝW_ &Œ03ìÃ(‡Û~¶Ì®\Þ¾`{åpL~ëGJ¤,XMTîY®¤] ­¶¿åž¤E)JT(Ôru(„”¨ROÃ@™jehÝ só‘ä(É5æ:w9]6/z´g63„AÊ‚‰»Õï75îÊÏIXý1õñ9û´ð€ÈåÁW­0HY°±ÑUaŠÌ<[ Þüiw*Ò(g°Ý|µ“'°E9Jr} S}^ ³ëÒóu9FQŠª†}ÑZ'çB̳RKLI7†Ž4ÃŒä(É5æí¢yættCZÀ¥§ªiZØQ¢(EU³@:ž²–߉VÎYrXyWBr—iï¡ñ;¬Ç¦Fÿøk‹r 7»:=¸¬f\ónú•Mÿ7…Î;]…Á0F9¬1íÊNüª³¸| ž—¯½M\/ì÷÷Ö¦Q¾`ÛÖsS’£$ÇÍ §à=?¨/‹r ^Lô‚ÕÆ}ç'd×µò¶§V×µò0HYðO|gêŠ1–¾¾måŒM@NY²`5ñëÌÐg÷xæïµõkÚÆQ€¶ríºŠ>þ€ÃQÈUe2 Vg6½9-ÒDœÆ8JrÕ<ð„‚2¹Ý˜î Wæ¶ GINÔ)Å21&ªÄXí´4)ÜÖ©qð÷Å0ýçä u”£$÷˜·_nbgü·bÝ-mk7œÙîgé÷”æ}ûz\°¼f^áàò¢ya²`câ.Ÿ‚·&ÚáΛrå0Q¤‘Of‰Ä˜(c¢HkY*œ(ÓÁ=#åèNúPá5Bð=ø‚dpÊ‚”«ÍÝl}œñ»ÙÓ—°ž›’%9Q§´ˆ9dbLT‰±¦Àš¢qÍdm|~C›l®Ÿ¦ê GI®šw•ò V†™Ï»LÁo³ÀGp^3sŸFwM £ÖØfg°ËØòÖ|îœ(ßÞÓS(ä{ùöžž F9¬1íëZÍþ#(Z_þb”ÃD‘Æn‰Ä˜(c¢HkuµT:8Q¦ƒ«#¥ @áj 7›ó‰ì'}0N²ò¯'„Qkl[îÕŸX¹ûÉq*ùùx«÷Áñ*ß‹qF×ÉîÕ0HYP‘Š=ÈŠT *Rý>kJS§K*©¬G}å¤ÿvûgjþ‚Ç®€æó(Ëã†sÌÌæÂRJg6FAÊ‚ÕÄÕÞ«ÊY±Ó“ôå´Ø(GI®1/Ç_\+5¯½qSðx²ðna”Ã$‘ÆéÄЈ)I"¦šÆ_]'¡ó=Õõ9y‹l«£·?'o’F9LiìË,‘EbLi͘–J'Êtpu¤´ÑÁ@%çe^sEÎ gl%äÈY¤,¨HÕð@*©T¤J_¼K*©¬gv}P|+qcÐkÂwAŽ’\5oY\"_Œno\øz) 6&¶%-Ã=J¦ù¯dR£Vmƒ'9^·Ì¾"¼ïw×µ|Ó¿"3FgᦜJÊaâ¯aãÄ_ØøkŽ6ÎÁ=#eiò*ÜûV®špÉ‚oNJ‰º2 ò‹ØFå1ø' *Rq«*R1XG\³&K._’n .|E r”äªyGRMÜçÉ‚\[a”êÈ+„ÊG-¿MònD†0Êa²Hµâ€-b²HˆÕQòÝ€DYÙï'ôœ/ï½8ö{²2\zlÊa”ÃÛîº%—÷[¾¯,p…¼pÆ-"Å[) *R¥} K*©|zC«šÓÆgØ–^<»KìnÝRžÆ…šáÓ‚ ŸÆ0Êam®ÇíjIßuüÎŒõÑÖÊåü`™«,ËqÕ\ao>Ýj>Å0ÊaÕ´ûئùWå Ò‚éÞt9…4ÊQ’«æíZýšä5µ–söÌï|F9Õr9ÝÔ0Ô©úO¼Éêì¬ïnFQ7plFy0°¥b3J£VmÛ«ŸÔQ*îÅ8ìYûÝw¤,ø˜ØÞ%7bDì.yÁ`؆Ý%r”äDFìÆ’‰1Q%Æš>·65n¼:ár㮟¯+¢õáyßFQgÀž›’%¹Æ¼átÏ@9 €Æ1CN#ƒ”«ÍÔd¸øÌtcð˜Î'¦ GIî1¯½o-µŠ|ߺ`èpcrz¿¦ý9Jrâïa™âÏa¬é9mߺ^ Ñ47õPÕ§\Ff}Œ¨ƒÏµ.ÿÝ:7»ÛÀ©ÂÁr³|) *RqÜE‘ŠAEjàÅùaÝHAÒ/¡-ýû+\Ù®°s¥G;‡AÊ‚ÕÆu·7}-º㌲k=8eAÊ‚ÕÄ6ŸÔ¿cYÐì¢lX‚%9Q§´9dbLT‰±¦À>\ãv­Ô¬|Âqp<âËà”) >6®ÍmkX©ìÅ(ÕÙÕcS£Ö˜¦eô^têtT&þýݧÞV.r<*øê9˜8Ì«GE9JrÕ¾+ñ.YIJ`ð´Ç"–QŽ’\5o;}®~,Õ_ú=s/êmNY²`cã鉷ñ…º`š¯Sñ=¶% f¸%1¬YÄ\Áÿ(GINÔùÉÉʨcMð‘^nóD¢XDãÁ@lˆE4‚å°Æ6WÝkÜr‹Á…CGÇ\¤,¨H•n.©T¤~q»œ¹Î9‰rØÓ÷Ûõ½¾]G#^3¤pÆ£§,HY›¨o¯5^µRü7_³¼Q²`•zûÐ À+s2Ä0Êa²H½^·)b²Hˆ)-©ù÷@K"LiI„=Cúè?5hÊ¿£}êO?pðÅ/†QklkNEð=ÂLjDM)ŠR7,|=q=šQàŽ[áð*ËDQ² "ÕXem©T¤b°öFSiD=„ •F †:‘W‰r”äDúéÛ”‰1Q%Æš>Ðßš/pxFã;åçôç0dÏ‹ƒèÌ+ ‡AÊ‚šwArF½8fnWGÖ]ó%|ÿèûnJãI˜¼Í-ØõÑê7ù.7ÊQ’u5IMNÔú½Å‘rüt;å°Úé«VÆÈà< þáÊœ0HY°ÚØ%H6ÊуïçJ‰‡Œ¾0š¦üà<ÞÓq…á¾sënÓr÷y  PÂÏY1€ F9L9žˆ\"¦ˆD˜"RÛY‘SD"¬$®Âs¿Ò nwæ~¡r”äDƆǒ‰1Q%Æš>8\û¤»jÓè«ÉÍí¼Qv”C߃S¤,ø˜¸|>?¸üÕße³­2i¶÷÷Œï¨ Ç';OE9Jr¢Nc„Z21&ªÄXÓ»ë{¸«©ï‘™£†— )Qå©®?K‚Dyå©Oc™ú % „T3*´ `7[@=Ñ@ÙÍFAÊ‚ÕÆf%ÐcãÃBpcðCãë@£$÷˜·‚ŒØÛuÄn ¦ °ëQŽ’\5ïš&Ã!šо$Þø®‡+æÅ<Å_PaXÎÕ¾)½MäÜé F9¬1ÍŸÊùbÐøcVèuº6m¬ÖiáðŠ; ƒ”«‰÷Ug‰Xùøº¢qÁñ ~#>ˆQ«¶]îCx¶(gx9:Äèmû(™YVòtŒú¯R§g¡ãÏÁ…‡;AŽ’\5ïk/trºnÁôiOÎ×r”äªy¾2>¼Â_áðLtòþ ‚”wWa¤Áƒ†ä(ÉUó|Wlç7·Ïyáµ€S¤,ØHÕV¯~7¶|™“> R”¥ŠnT(Ku€ŠTÝ!¤bP‘ŠÁfŒûªuð[ßÝTÎ)7‡Ãøü ) *R0¾-ƒŠT ÖÞhB—8AöŰfms¥ñF9JrÕ¼v· K3½8v*g?e·Ã(‡UÛ\·¥‡™ûðÝ^Ö˜ GIî1ïT.(‚“ô…ÁúJ6§;ŽàÁߣ$'ÿÖ)ÿæšnPúÁ<õß¨È °1ЩœwîWwœõ¼8¦yxzlÊaôo¿¶½?Zöšup bʯ¡P~ÍÛoÛ[}ÁŠÆn÷£(ηT^3zCyÅ F9¬±/tâgÊËÃÎðŽöà”) V›ã{àºmáŒ)S>À‡AÊ‚ŠTœ7£HÅ "ÕŸ©³}®ôC}d™C^|ž’å(ÉUóšM’©^¹y#Ç+7/ÆQ’u½gÉʨcM€+è 7\ò/›BK~I,©`B2„•ˆÄ(‡5¶ñj×y­píLæ:°…AÊ‚² b#΂QlÄ b£?ïf›×ËóýbìPÄ< „Eý™4ÊQ’{ \ÚHŽûžSÁлu,¶Ä(‡=¶­×•?ßE›£”àiMˆ2(O›2Myå!H”§Lyå!¨‰.O:°§½Aãn¥²QŒ‚”ïûßhñŸÙŒucpã6³+ÈQ’«æ5ûàÀÕ¤ÂA'ñ°Ž‚”©º“HÅ "ƒµ7Ôä›^++/é³}ÏæŒÎ¿’"ùº¢(E=†mã[b †—D+ ªÇ>”D ƒ”«‹\1ÑN×-üä6¬ƒ%¹Ç¼]­¢ÐCšÐáKÊ/lwíxgÉùÇ€çêËüd1ŒrXcÛÁ?ß)áÛÁé;%Üa /GI®Z¸‡ Ÿ+°€úm/Å) VQŠÌÕ6¼²Dá ßcNY²à#õXDÿÓÜBËÆdF Ê@’¼%#B’<‰­w¦šRbûAJRȲí 1%)ÄÔó‘×>«8ãÒµE®7½‡Ø( ÿ4cå0Q¤>ñ˜"1&ŠÄ˜Ü’’—ÈÓ”˜“Ûs¢N1ßÍ¡ÓÁ‰:Ü3 Ïæ¸Y8|ââ‡Ø(HYP‘jœ¸l©T¤b°öÆ~…:£×¶Ñ®¥ìfÆÏ&zwõ>;^÷;_„AÊ‚ŠT£/l©T¤b°öF·½Õ`øööÇÞ···a²`µñë Zò‚‚…3V윲 eÁÇÄOlC¥ ì›ýœµRý š’ùµ£·UãcÿtR´,î«ÙçyñÍlìfþ|]ÎK^©ªp¸ûøw) V›K˜F@~çî °ç¦$GINÔi¸°,™Ub¬éƒÙ7>ϼ>Û¿\àjê¾Âìùôü€ºgA>è‡AÊ‚ÕFgB&—àËÎÏçËt†@_ ƒÁµQŽ’\5ï~ið;ø?­Üþ«s§AM)ŠRT1ì||.Aæ¿(ôÏ1ÿE”£$WíóÕ`9¹ywÊ''7/ÆQ’kÌóçÏ`Ÿ/†Ãï6‡AÊ‚‰uI ¤ÇöÁÄHYP‘jÄl©T¤bðéZºÎöy< ºôÈ= »JÿHÿRµVµ¼%¦åîÉþ‹óãJ„äaÑ‚¡)ƒÇ)£%¹Ç¼YõêØN²:›“rX#S» `c×ó,áLÁs^7¶3~®ÝÖ±{—ónJr”äªy("*»x ÷­I’Ü:¯…¤È?2Õ¤¤ýx€ñÝÿà•Kb8ü¦v|•E¢#¥¿²rŠ'ÊQ’kö )ý¹ó¼Iîá‰r”äªËǵ>Ê5ÿ)«|£$×ìë@Gjá°sppƒ eAEªáØR1¨HÅ`{Ýj¸¸Û’’ÏÖZÃ(‡u¦i½äVwVÁ§ïÎå‹ü,eI[®»²Ÿ;Ránwþ.ÎØGð•) VWõzhàõ=‡) v6jÑ‹é¼ìù{¦ÿ³Îƒ°®TZ»×•J ƒ”›‹/¨ŸÙú{s8TžÙú) v&^»a´“¡€ð[º¼“! Rl6:/æ9¤›Ãû/O"EAÊ‚ŠTcÿµ¥bP‘ŠÁö4ºÝFšoÊfscÏMì5AŽþõ÷î^çrJ9¬æ}^-\%8·ÕÕöÆo\(^h6Ñ¢ eÁfâÖ-múkÏï.œ7Ø+‡QE9K$ÆD‘EZß…³T:8Q¦ƒk35œ+9 x`JÉY9Jr̾ð¸çæ;3ðÈPnÎ~ê›Ê#·ýEÊ‚Ê/b©Ê/b°>ï}7(ì²Ã×ç÷ÞÈb-*»±?³©rM£¦ˆ|†<.‘SD"¬>€ç…˜¢ÛÊo‡=÷ûÒ|!í`¤Ê¡_Æ+ŠDÚGE1 Rl6ž»¼³[wê±ÓZW‡ Ê@¢¼%#A¢<‰òô3Ú–>H‰!UgÅ1?^4Ÿ/ÜóTO ÝÐso´ŽyÆ(JQ¢ÂOF ‚D}êF¨óœŸû  ¾² eÁfãþhâr¬pçÿÞï.-µaâíd÷Jr”ä0ï¯è„œ¢ÓYgxpï¤NÈ):!צ .n¼€á/78 F¾ip:UßFg!R¬6–«ð C43 Ý“™Ù) 6»œšû"ÛÆGî¤,W¤,¨HʼnCE*©ÞTå”âf—T *R1X'μ “.ÊŒ›W_ßé˜@ì@8ÇöVEAÊ‚ÕÆe¨à© „Ÿ Õ~qÓz· xùgcþ¿¾ÕñÍWÇåp¥WöÔÚ5r¯$GI®š·‹¿±ÁñÅ¿€p»á‹¤,ØÙ¸ÈÏP?+Ø(µímÄøiI •ÚC¥»6š‡ÖÓ N cMæ*ó7k˜–Ž’PQŠRTgØÎ\ý`Û°Èo_ä ç2_ä£ eÁfãÖuM<£ÿk¦ŒçB¥D¼#ôÊ@”DyÚŠ`ÊC(A¢¼çvÈC(AmJ ÖÐ1šš§oÞ#÷Jr”äª}߯o§yówe?>फ़Òð¸~1ÖLüËù2Äãe@¨+ÁW¤,Xm<»“þÚ}ìÞ7$凞Ô+EQŠ 9\‡BH‰ !ÕþøÈ+¿<™'Æ=Vd{å0Êa¢HɯwˆÄ˜(c¢H)huˆÄ˜(ceš|Þ÷'¡=Éí‰AšO.%ߣ¥¨fÖµ$GS¢…¿d!p¯$GI®Óùȉ²jÐõ¼×÷8»Â eÁ?YP¶ñ* %lt€²P¶Ñ*6ÎY1¨ØˆÁöJõf)1–L)ÌO±dJ”£$×ì;7Å‹³³ŒŸÏÊ÷gÇ¥ëÐqkF¤,ØLüúR÷ãmiýF*‡AÊ‚ÍF5«&Îçв̖ƒö™»i³øgÍu)*ߤ r”äšy÷Î&¤ÒŒ˜è3_oa¸,Q@# '—% eÁjc*Ì¿åßÔܶ—gÃ(‡‰"?)%Bª ~¿I?¾-Z;ØÆ‚%¹fß }¦üädègíâgN£À¡¬G$Ã(‡)"µk€H„)"ÖÆ¿¯qûW½’0<6°è9Jr¢N)ÎwÈʨcÝ3Øä- pÛýù÷R¸€ñ̿خD¶ì ßÙJtsØQÙÙR) V¿ð´çíŒ}¸«†Æž´™¿GûG;_¬Ÿ4ú‹ Åp=2l ì浿0HY°Ù¸Y}Œo±˜Q »üÊ«1ŠRT5ëx\z'Ï̓½FÇó :|eAÊ‚ÍÄ/z¤#.?àÙÅîû×÷†ø¢Œ(HYP‘Š)E*©ü“™‚(¨ØÈœCâöÌ6Îù=Ê“½Å7‡ß©“½ÅQ²`gâÉõn~o¨ö&õgÿ‚ÊAv‹iáð·OÙ˜†AÊ‚ÍDWƒ×x¯bðŽÇââ%¹j¾êmôŸ&Â,Ø—Y) 6»YjIoLwÖ•9ä(É5ó†„n îÀS~{õƒLB×ò '™Âå°jš~—ìÝODKáx_M¤,ØÙ¨Òï«é°çïYñË<ïZÖÁ&+Ë%,˜ ƒ”›‡Ü+f—á ¦ïr>ÊQ’kæ]ïR8\ÀÇj®åׄô¼±L„(ú·ßZf­£_5Æê Þ׋¹oLœ8¨/Ò5 ²`³~˜í~óX×¼K*ÿ3oÏk´\Áyá"Á‚ó0HY°³ñ±ž9® ëÀî9:® K€”›wTç*µLŒ’ò9öÊa”ÚiÃÎi„øÎY@ø6ñ3 R¬6~Ÿ×{Ìío—2D ¹‰AÚr/§ c¥¨f–÷æ<è( \$xÔ) V÷š½Á™ƒp{¹Þ$Þx=ᄀG0¾ûvÁñî<5ÅŸEð÷èŸuž¶ß*—Ì ¦û‘rÍ,ÊQ’«æÃo, |/ œ¡|‚”›ëÊã\W:ôÜ|¿¸ð_Üîȇ*üòÙ¾² eÁf£³ãêñF;âoN)˜Ø?`9$AŽ’œ¢Ó}ÏE”Stºsöóéý”9ßF ß ¾tGAÊ‚Eêò¾¿ØÜr»ìgL;Œ Õüóa²àŸ,¨Ø(…>.1¨ØˆÁÿ*øõ-RüÓ2´=yß7Ÿ8¾þ-^b8çÈĸ?I®êü8w6îF…Áú$>]þçÕ&†é‰{9ÿå(É5ó:71ÐZU8c†ÊŽb¤,¨Hõ_È©þêËr_⾬fâ ô†föâGAÊ‚ÍÆ¾;ú´Ãfu·›¢%9Qç''c¢JŒuÏ`e«…»ooy+ÕÁ+ñÁ­J­×Ø+‡Qk¦Ý„÷F›‰ƒðEXØ«) 6‡6wS8±ÕÔ ¢%¹Î>ßšÄOá,ÛP.lƒ7h´E*{K¤,Xmü¾®XÞÛ¿|ïÞ~×õ(£Ú2o@¯ DH”÷Ì1;ä!H”‡ Qž°Ð:ôAJ©:+öïãTŸìP³ñ}9V¬wcѪÛÖŒ!ä'0b¥¨fÖ·‹ƒÇb'ê5µ|eAÊ‚ÕÆóò5Ü=¶\?³á¾#£Pb+¨îl1ÊaŠH­ÆD"L‰0E¤×m bŠH¯Û¶ö}|Fu„%Ø ¦‡½#÷Jr”äDRÇ!c¢JŒµgpmzîAã_Ÿ)?YAè¯|\‚ eÁjã,ŒµÙ­}kÕÓ¡‘[« $U'žÔ+EQŠ>O9"HÔ‡ :ê ì¹¼ƒÖJ¼®jï—ݬù. h5­Û½¡úbþ‰aåÊLD9JrÍ<-wfùz…²û^¹¯£(EuvÍ ñSÎkZÝ0…·Cðv˜ F9Œ›k£Y·§#Ê^7¹qÝ—Ç{êêC[û¦U=ä–Ï>®‡–±6§ò¡U*Ì©¢(E5»®ÎÌpKØz.Ž“wv+^ [¸þøÖ¼(HYðOTlôš ƒŠþ€n{wî¥öìùJ¶õÇÉÔ(/d1ŠR”¨PMŠ› !%*„TxxǨÜ+³}œ„ç­K?`ô{C΂‰‡õ3ˆQk¶ÊŽl—„ g4É5á0HY›­&o³çNªÇôœ}M ¼Ùt[†Ì’_( þª[3à eÁf㮜55+6Ÿ„À½’%¹fÞíIxeM„K냃”««3u0?8_ã=oYÙÖ/+ »rMƒÇšY²)ÊQ’«æm¢qVêaóTX>`ÛàÊäºî¶}?G)ª‰ìº“Þþ­èÆžŽ؉‚%9Q§x—€C§ƒu:¸úî£.îc\á$cÝèa²`³ñn\"/œá„È%ò0HY°šèŽ>R|®r¤X -=&GŠ1ŠR”¨ðYÞsD¨AuÔçõQçö=æ¹ß‘ÝxÁîïêh©8¾#1Êam]¿º·mªP Çwä F9L‰Úo‘SDz›}æõm‚˜"ÒëÛ‹Vß¶Ë+…Ã×5±òJ¤,Ø™¸Ë&Zu„B¡¾ð¶ÿfG–Uxëºl]ØZä(É):÷¤NÈ):!WÞk…;´ŽÛ×w†1ôSÕÊ¢èë«•Ñ­êQ«Ã¸]mÚŸz=ŽÎy´–θ!_qž£ eAE*î8U¤bP‘ŠAEj $‰‚ŠTHr¾¯ôr8w¾‡äŠ7My¾í0VÞ6(­kµ~¶o†AÊ‚»b£µV dKVþN­ ¬EUNÊ{Ü+ÉQ’«:?ï«%ð™N˜ûãQë}<ê•ä(ÉÕçðQ÷ 0AoÐùÜ)‡5™û'±W'|Г¿)Ð_ÀùE)ªÚµÜ®D,D<µ,c„MÐ|–DAÊ‚»b£¹Œ Thø[®Œš+}11H‹PäôJŒ¢û­Û{tŽå°:ˆë}ÎÅ,LŒ?wl5QŽ’œ¢SèKp鄜¢rõ9Ü¥~wÀÄA=}*—pà eÁjãWý žU79÷«Ç-œrÿÛáοJ]Ä”×6†QSD>7!—H„)"VÇÿì¯M ÄP4>É$ÇPa²à¯ÛûïOïå ¤jGÍQ×ã/6‹µ/ÕqRöC[ãå°jÜr{Ñ‘•ó/·.´•0–CÄ_lŸ?§}bܵ Ö ±E£V;†7'Z*xž{ê=øÌÃÓƒûsã´³8zÎë[ ·¸.Úƒz‰Z¨‹f@Ê‚ÕÆ­_ZPºd)ð6 T˜¢UíúÞ'b\¹Ø‰Q¿¿¥…®C7 Qå¹ú-£(ÏÕ×Ä!õ£¦¦>H‰!ÕÍ -~1‚Î_p×nhPŸ¿Øþ<“€½ØpÖ³(F ߃°Ñ¡ä3 eÁfã®æTù>{óçTOø+.pG©i)ÁŽcô¿6ï®g_¡ Vr¶})M „÷; w¤,X¥®×e–MµñšÓëÆÞ¢(HYP–:믟-ÕÊR 2ªú¢FƒÊ¨b°NòãÔÏ„ËEÁ´%Mycå°Î6»r,cË纞Í%L #’‰Q”¢D…KJ!¤D…’ÇPˆÈ=ƒ1y!ÖDÞwïÌJ-ævɾ£ûÄ(‡É"õþ@S$Äd‘SFR­|Û#‰0e$Ö–ƒa…tå{Ls¤å2ˆQ«¶]—ç‡7¸›Švöþå(ÉUûÖíáB»²Ëv'`|Y·‰aÚº,gc¥(Q¡°.;BJT)Q¡”ItHʨce~¬ïë“9ÁU¹b ·-xAŒrX³íJ§û2£À‡8xR$ˆQ«¦}:Ó¼ÙžýŽ¢zéúðE)ªšµ¨®™ø·Dd¼nÆ÷”ôTåº]'¡ÜËx}×u£ç¦,$ûEý¦–ööB¥¨jÚѯn¨`¨û…¯1ŒrX±m{¯{`™ÓÌ´E)ªÖy?˜y[7ÛÒvW‰ì¥m[¯ÓŸ1)Ü3¾±½´(GI®Ú÷6S¯c¾Ý ±³PÒ k„˜AŒrX3í»&¶·íP¯Æ°B•Ši»€ª1ÊaÕ¶sVë †7Y0q$ w2ÊQ’kæÝ+Xlmþ¾g­|e J¡ÔY)I£ÖL»Þ˜+ôí=ÎÌæóM«šÇjv£VM»¿zçÌOM Ó#)´ˆs”ä‚cäÒ 9E'äšÎkbÂCZÛÞ' eAYªqêß–êe©PÕ9;ªTFƒí=²¢¾6ƒ¿Øu–ÐÝ!5q°ëOp4s%@Ê‚UêvŸï{ÎÔyÒƒ=ý“nÓöpRáväêÈlßNJròïaûäßÜbÅ>ÈÕ¹½]·’yä‰sZ•YòãÃå°jÜ5&o!WÖmÖC³D…бΡY"JQŠªfíÍ,_ He¤~:èD¨É»+ã.Ì»(ÀWÊ(HYP–:xs©P–ê©ÒFé’ŠAE*Ûœ¾£Y_~¦bÇý{’+hD […hψbå°Î¶=l|ÞWC4â®Üùx!̈;ÊQ’«ö}—í::I×/¶ŽV’HY°3±ŸÕ¾Îî“ Õú¬b”Úm½3«é•›ù%о§~cÝvä{èAŽ’\Õùû t¥a£Îï›=¼ GINÖ)ùµ˜“ubNO!—áOÈ)ã ¹:­5N°ÃxØ) 6-µ`ƈ…}‹[?‹Å øûÝž0HYðO”m4˜Ù6:@ÙF(Ûèõ¼ °ƒŠ¬SüNI†ú™&ºx÷JrôÏ¿w—°o"%¹:œßK§¹[Ãycúgż GI®™wZp6uN ÓŸžÔç(É5óžùRËÅ›8×%/-î•ä(ÉUç¼ÔÙ)…¸—‹÷™KÃ(‡‰"—œHŒ‰"1&¤ÔÑéJÌÉc‰9Qç°t:8Q§ƒ«oÞy}Ì×â?1ê1ÃÜš…´ =#;ô±ý¥úÏyÏŽ4®?Tæ þ¢ eAEª÷ÔPT¤bðOTl $`¢ b#›Ôkg}ß¡›*ŒQ“Eª}¶HˆÉ"Ý¿6¿çݽ¶P -Hâ/!Hü%¸Š‰?å^ûæ÷uŒ³ß~b˜îºI½±qŽ’\3ï«OýnZmlîN?ë2r¯$GI®Ú÷é“ñþ¶²Â]®©4.r2>ÊQ’St žK'äkÏáº`ÂøVn6î¸é^[ž~¬œÔ?*p¯$GI®Ù÷7¸ W çù8d?Ó:‰Õ85–±W£&Š”b‡HŒ‰"1&Š#‡J'Êtpu¦,×UµÁŽÕ‚‰ëí{å0ÊamºKdm^…;µ¼ƒ²y9Jr;+ÿã=å4qNªw Ü+ÉQ’kö`S—ó?•üS{å0ÊaÕ¸õº)š¼›×.õê=Ù0ý9õå(É):a¦^Ñ 9E§»2À8anºtBNÑ ¹:]65ÃoçíЪ‰fi`þ^‹¯¿¬Qý6Ï$L“VNcŠa”ÚmÃ2-øîÊ2]8µCY¦ƒ%9n_ì\â÷Hî;®µü‹m8÷ÀÚofVܹ»2Q’ä}ê#‰CL7Ü‹íd(ŽÂ©›¾’ár”äš}×éÍŒ4ûvVö3—ßuÌ•1Êa¢H=lŠÄ˜(còHêå{(1'%æDFc£©ÓÁ‰:\Õy¼}‡š¾<öŒ‚”e©Fw•-ÕÊR 2ªzºŒ*•QÅ`]ÒŽç—¯\}­ËÛ¸u±Û#x6­pº¯(gÓ¢%¹fß°— žŠ¼ÖWNõŒä½,ÊQ’kö©‡ŒlgyïÊïÙ§~¸îê ÍÝágÜ eºpÛc® Ê@¢<­ædÊC(A¢<µNeꃔ(RmVÚÂe†ŽË}5­7I>1Nýд²úÄ0Êa͸¾I.Éú€ÂU“r”äDŸœLŒ‰*1Ö=ƒ•å&œÜþØP=É—eùjëªucYŽ%“^ÖwÊÀS˜Ã>Jþr¤^)ŠR”¨PHÑ9BJT©6ô{w¥ ?X8ý~l9å(ÉUûôãÙö1ˆ ¾kº} " Rl6j]±ö)ÎÂÍ·Õ>Äå(Éuö­v&G™£…S3+Ê r”ä:û¶nÙtXüñC´èÕ<ÆR¹çD³ÝœûÃÄÁ¤õ2\ÿ†Ž’\•¹¿»W>)–x¤) VÏ¢¼KfñîgƒîÛN„@Rqï#ÃΓÆÇ$™Oì•Ã(‡5Û†åEey)œì*ËK£$Wí;¯Â–+{>1HjÔsû1ŠRT3ëÛ{.¸%º€ëûÓ%S„UZ.ÎLFz¥(JQ¢BÁ“s(„”¨R¢Ba¿r(„”¨R«¯´L³=.ˆQ“Eê-Ó¦HˆÉ"!V_³Ï ŽèÉ[Íú9]cÂzŸ Z­xy£Vm›gî©»¬®ÛØ\çU£%¹fŸÖ÷dG"…{¬Èv Ä(‡Uã–nu—È …®Ü`;i£¦ˆTo»±E"L‰°6þûcÃ÷ø?ëÒ%gý™ƒuÕŽUØGú 'äÜì3}a²`g¢zº{ì¬]¡Pk7;p²®§káëzÁì ó±®Ç0ÊaÕ¶M9í¦Ê=[ÎÀL r”ä:óäVrsšÜè§cG Ömù&å°fÿþ¼«fP°.`q ¢%¹jÞwÞâIëBIûœ€½rå0QdNcNbà·®)é›ÿ”¢êƒÞÏÙÞ«äÃ…3vù´G¤,XM<®$©÷ Y㺡‘–fednL_*• r”äªyçý¥b5)$÷°þp¾öjžy\ÏÇÌ}kæùü¨¸oÑŒ‚”ÿdAÅFÿ½aP±Ñ/Àv_’ˆ;ßXy+ R”¥Zù|Sª”¥:@eT¥ØÒ5ªTFƒå=Þ>Ãz ¼Nœ[µ [>˜å(ÉUûæþ¨¿TL•}ò Q¦í”‡AÊ‚ŠTw(R1¨HõG: ôÅaP‘êŠÀ3ž{/”z‚œÚb”Úiß.kéoÏü ùí:®†îÂÁ~^Þy) V—.T‚Ý3£$oÝ ‚å°fÚP(ó»lìÏG¹Ü™0HY°ÙØÍPÿ Ž‚¡¾ºÇü r”äªy÷™[ïAä‰s]"ßâ^IŽ’\gßæóbX4²­Ç‡­LB¸Ì;‘ ²E¼9ˆQëLëzéñÍ0çÞJÖgÄ^9ŒrX5n»&J0ϺmÝãööÈN©<vˆ¢U~ßײ°>œÕ¹Û–¿Çµ-¿rå0Eäó‘¹D"L‰°:Aö諭4ÝtdõŠ ³øI½R¥¨Î°ÓÞä@•SWdùP”£$×ì»››žœ]•- ÷~‰qúáo¹{+ÊQ’«öÃÖ(Å1r7cõXîf ƒ”›ß%—o¹AœÅäù–(HY°³Q1ºÌþ̼€sWV »£¢p(Öî¨b”ÃD‘R2Á!c¢HŒ‰"¥×Ï!c¢HŒ•iò}wñOàhxá`%€Â eAE*ò©T¤bðOTlÄé ÅF *6b°Í8J’·³ï§Ë®¹ûF ¥f>äìZ£ÖLS{ìŒã¨ÕD­¢ïwž¯*Ö¹á‰awêæ9ñåv£¦ˆ|Nb—H„)"Ö€þíˆî±±C&…BŸf‡L‚å°jZß.ª×!y»hÁôýBnr”äDÒŽá‰1Q%ƺgÀ«ä>îT/ °ïú( úê¿ê#ÊQ’kî“7¾dÍÙßt‹¯R˜§†8#VÆe_@:1ÊaÿUìð¤Ox}}ßG8µàèr`yy½`ÂŽ%P¯E)JT(„T…BJT(ãJ9sz¬Û×—5Z˜) ÊR­¬‘)ÕÊR "ÕÈÙR1¨HÅ`›7—ß¾åغsUÂf¢Dc7õôäí`,†QEJí÷‘Eb¬ÿWnŶʼÒ"ï‘z¥(JQͬÎßôÎpO? RT¤ê­>@*©¬Oã;´Äâ“r«l·¬øœþ(HY°ÙøMxn l·¼£(EÉ µŠ£­Q²BDµ‘ç P®n‰‚¡ê9o—ˆr”äªyûu£Œ÷ Eã®Ovz3ˆu\öýãÊèí+[W¢ eAYªqÿ†-ÕÊR 2ªzåŒ*•QÅ`›8.ðŠ^ìdsñ· %þž)â&Øún7Æûò† ²»ÆÌ\”¢Õ̺wcßÇž“Q?)÷Û#å°fÛyõb…ŠŒ?Üv]UênˆSÇþÜ0F9¬ÙÖU%WAñ¢nì­¦9'*ÈQ’uŠ£C§ƒu:¸ú¾ÇŽÈ~°]ËâêíΖò'ôÊ@”DyÏuË!A¢<‰ò„oß9ôAJ©6+´“¥V»bãŒ@EjWL€”;•“fúa£F¡‹j¶þï±^ýÊý¾hL³×‚ǾÃè_m9CI9¬äÞŸëð¦ãþ‚§šE·vüó:†¬ú„RïaÃtCê™s”äšyêµ LŒšCÀ^9Œr˜(RÈã94BJ”©nðµEÈöe>ïÅ· mãìŠr”äDÖy!K§ƒu:8Y§ê›:1'ëÄÜ•r†nà >Þs;Aå(ÉU?¶·r-íã’Boш½rå°fÚµ»FÊ ’¼{å0ÊaÍ4íB£§az_ÿÈñŸ µÿü`ó•ñþ%¹*sžW­ÔÕÅq_6(7e'“¾Ü´DH”§f’,yå!H”÷ ‚ò$ÊCP›±C©ã`~waËw£$×Ùwð”¡ã~™ì~Ñ žWëèdúŽ1x£¦ˆTÔÙ"¦ˆDX}vËÛñ¾ñ%ü†ìÖ$žÅŽQô¿uìÛ;³( ¶¼¾-agÛ7¾rÝ”Ø+‡Qã¦ÙàIõÍ>îó[?àª^ý`§¯*ø,]Øé«0HY°³Q;Šlå¯*Š3,{òÙÔ¤ ˜tþå°&S÷¸,j³Ëwó5=‡ž¹†é©“‘{%9Jrͼ» ô­V>®×h¼ ®°Á›µ D9JrÍÀбâiÄàýOc»jœ£$×™gVa¥“=ïÂxÖæûv+„)¦Dd7õœavdÃ(‡‰"¥×Ü!c¢ÈȯKà±Q«O{WodeõÌž²DAÊ‚ÜÆà}¿ v/‰¹Ã 4#òMh_íI-× &|kǬD9JrŠN!×ãÒ 9E'ä èÒ 9E'äšÎÞ5Ö÷ÊïÍAŽ’œ¨Óê×·t:8Q§ƒ“ÇÓ5ÌñÄœ<ž˜k:¿Ú28÷ –ƒO—Z{Fì•Ã(‡)"ŸN¿K$‘«ëôã ¿¯ÔðÈoùJ 1ŒrX³íÊM ùŸ»"ïÜñ(‡µ_[/¥¨6 Ý¿ç4Óƒ¤ÜHÈ„(JQ¢B¡'È¡R¢BHµßµÊ±ëÞ}jåïçÞy‰F<žK€”«§ZW¯÷õMßp=êÔN ƒâCW®Y¼rå°bÜü°p91J­$ÊÕÕ F9¬™¶'RµsWwßÅX1=8“÷· F9¬‰\®YÐ…}Ž _£&‹Ô[þL‘“EB¬Í’Ó<ë(wVJ­÷Ë­UAŒrX5m~xx®tbáP “§£%¹Î¾•èÈ'VÌÎÈó Ó¼lªƒ"ìãÃô4ƒœ[r”äÂ$s鄜¢rŠN!ÍàÒ 9E'äÚt¹ý>ç+çžÀ¾GI®Ù÷ÌÓúV‰t¾~”Ã:™™âÁ¼\_lwvL C-Y›C£¦ˆ|îæ.‘SD"¬>€unÕokVÀ)? Æ(JQÕ¬íºÈ7Ú¤>oê!?»ôÜÕ×»KM°ÓóUá ^GóËõ[²VixlÉHjH—÷…1ÊaͶÎSô7áL¿ÈFñƒ%9E§à8¸tBNÑ ¹ú¾Ÿ¥mÈR×ÖyÈtsjX=b¯F9L¹äDbL‰1Q¤qÁ‚©ÒÁ‰2\›)WM¸„R@|ÂjçAÊ‚ÍÆûjóÐëx]£³Ó =7<¤Ú|R}¦Î8ns¼Ç”[¤,(K5’жT(Ku€ŠT=µ¤bP‘øÅý£]°ñœ5”Ä_B³Zü%‰¿_ñ§ U—…ûƒѦÂ-‹RÜ+ÉQ’köÝþ°º¿Ê§À ÷+ìC`AŒr˜(RÚ–"1&ŠÄ˜(R_ƒL‘Eb¬›&ÊËc_YU8!L³ï¬ ƒ”›‰×eÎëo'Ž)‹åH½R¥¨fØ©x}æYÓ#ì‘«?w(×,™rcÏŠ˜(AŽþù÷Ð7EÆa¡$׆³{zÂö£<¼›Rëƒ#VCQl‹aÅ´å}(.­}d½pÆ+>‚¯,HY°šø¹ŽøÚN¿ ¦Pâ\ybíÇvðÆÊïåsÝàü9ÊaMåö|+ˆÏX®5FQŠª†ÍïO"AûƒyòŸË¸í ”òù¶ F9Œ›&­ Õ½3ZLðxenHû)ùþ¤E)ªšµÌ²{h%â F%âc¥¨fÖ¢å€í‹2–û¦I¡¢€×/n]¤,(K:""R ,Õ¶ÇÑßÒë¯N•½#ÈQ’«ö­Ï£´òtc]]Ë}’,|÷gÆ÷x¼¡ã”;ì¹Â¡X—õÈ1Êa¢H#ÖµDbL‰1Q¤ëZ"1&ŠÄX›&wLÜ,û[þ9Ók¸¡·âz)NCˆ¢%*T{ƒM…Bª)œ׆w°Ô^¤,(KµܦT(Ku€ŠT#ÁmKÅ "ƒõÍ;zÇqåÖÄA¸wmÌÆ(HY°Ùxõ-„ËhËÑÅô+u 'ì² ¦‚”©ú~¤bP‘ŠAEj S©LÉéêM‹ç¼* Žt>iâØÃ9³N5Å(JQͰë(”Úª,C(˜~¢C>‡å(ÉqóÔ”¡Œ­ïEͧuƒÉÏùLÏŒÜ+ÉQ’ëÌÓοÙÓï[ùƒÌ¨ÙÄîÍ[ß÷½¹±j\Áž3Ú®tE9JrÕ¼ÏÇSëß,·Î×…F¶7ÉÏÝJM¢ŽØ+‡Qk¦ IØ ß¸ë++Ñ ½¼–à)™uqí¬£(E5»ú>*Çï^é+üMŒz¼§Ve2Qå© QK‚DyåiOØ”‡ Q‚ê”З|ûÈçºvÇ…Iö+ õôëM·"ˆQEJÞC$ÆD‘kãÿÕZ¹¤MwâØ3”“°W£ÖlS‹ÜvóÅxª¿gíðã;réyÝÔÜŽá+øX‰í>ÊQ’ë ¼T¿ðaô$'ê)ƒ|eAÊ‚ÍFÏñC~S¡´™­¸ÊßÎ%gb'FÊo).Iˆ¢Õ)¼ M»Zhº–±ca‹f¤,(K§´Gª”¥Æ~q L2ÊamnnzuÞÚ‰öcsDüøÎ¦õ}Ø)žõn_ 6Œ¬Góûïö+˜´ŒÜ+ÉQ’St ™—NÈ):!§è¶Z—NÈ):!צËdé>?¬RÁçD³«„AÊ‚ÍÆ½ÝD~}káTgbÄ^9Œr˜(RJÛ8DbL‰1Q¤u”ÊRéàD™®›)òQ»·`³êÜ+ÉQ’uJ©H‡LŒ‰*1ÖžÖ‹¸®õWHž¡ÍĨçPú±¢:‰JµÝ÷U¹¯£›8¨Ç #øÊ‚”›×w(P–œ5­ f­Y×J”£$×ÌëŠ8¹>1L”"@£þ=ð¡¸qbS ¾|âù_ÙûKqábr…l¾]Lƒ”‹ZX#Ÿ•¬Ôû:­–\åóþÓÃ/ù¼”£$×Ì…É9všMŒnË62F9Jr}­ç¾ø²Pbئà‚å0E¤VÂ"¦ˆD˜"òÞ»D"L‰°:I>ŸYsXôÄå:þÈ/x(̇ó eÁÎD³|}½ß×ÀLŒ)~ªzû 5'&×@*&xÄz $FQŠª†õgW´Î~v¥@’Óð¤^)ŠR”¨ðYßuD¨Aݨ{Žœ>ÞÎCqÙãå r”ä:óNÑ<óͼ!{¡ãW+ló¬7.=1ÊaͰy×®¶„ó3Q…B‚|Ÿ‰a”øiÚðkÔ­<}–\ùTÞ»ÝP_õùUÕQŽþõ÷–YI…˜Ó+DÕÁ.:t]ÛZÁ.äwÝÈ) v6F®`8fšø5qÛzŒ|å°*r½.'_ææ†²A¹Àcå2ƒ eÁ?YP¶q–¼ÇF(Ûè•DZe•ÇÁúVtñ¿ã®¤iÄôD߈½rå°fÛlú¥×ÆÂûÝ ¥¸U#ôÊ@”Dyš`ÊC(A¢<-Ò4å!H”‡ 6%NËg¾]“ÛtAÀ÷:¹QŠRT5«t_ø:Z: ´„]¯oß¡ÉYàæ‹c'§ §§«Fî•ä(Éuöý®8áÓï4zåFð•) V÷+5ê½ uâœzǸ’ r”äš}ÝÚòðˆ—nèS˜áRˆ¢%*ÔâZ !%*„T7ðg*ç~Ë/ÜìVÁS-bÈ­ga²`µñ¸ÜhCQáôÓ!#÷Jr”äš}]!H'†ÁÊ#+äF9JrÍ<}»4’ý÷9OØeuðäY¤,(K5n/¶¥:@YªTFU ]\£ŠAeT1ئÍPFÆÇ§+xK©±Ÿ½ûâ¸gâàÓîK¤,Øl<•ÊÒï{p{—Pv{*'5nO”£$×ì[f…³¯jøW”ÍO|ßú–¦/Š7%n0Oê•¢(EU»>o÷ÃvêB=‚ßÊÄ(‡5Ó”n»ƒ°`zÿÓȽ’%¹fžýyµ±Ùgb”ÚÒ"÷}»×-p/ú½yfÊΟÅ(JQͰ{A?öU8urØ+‡QEŽª%c¢HŒ‰"õ©eŠÄ˜(2òkWÅÂùÚP«Cò{¢gÜÞXžûžÍ_&3 Rü“e¯5%a£”mt€²P±qÎÚˆAÅF Öup}w½€Ï-ö®¨²;x õX<%è•(‰òÔ> K‚DyåéV–>H‰!ÕfÅÕ§äÞ iÉ}¹9(FQŠêîJæ»w(¹¯1Œr˜,R=al‹„˜,bm‚t•&TÇ™ZaNnX„¢UÍÚúøÒqàÄA_ò[ à eÁfãW …­†Æï¦haÕÍÁ¯†?âª(HYP‘ªßu¤bP‘ŠÁö4À—~ÉÐÅ å´‘«ó½~œ¿GINù=¨Sù=ÈÕǰÏZ,ÞÞDP »λb¥¨f–zý€}ǘ¹Sãë³lðÄ|ã¾K¦óÃ)Á¿Õt^(åaË=ç!ˆ2(ïù¤ò$ÊC(ïg8ä!H”‡ 6%îfÑJMá¹¼R) VΫw·üJý±â×Ç0ÊaŠÈçq*—H„)"ÖÆ_mŽ·ûþÀÅL„Ë}ÏßcQOòübWŸ_žV0½ojä^IŽ’\3¯o©p\Ê31ðÚ¥DQn©ƒ”©Ò»î’ŠAE*ëã8»Š’ûšÿBsŠR £¦ˆTã][$‘SD> —H„)"Ö&‰îèuþ/Vžû¬úyv¦Ð+l·/ða®ÊÍ ö]a² 7öú0n¿¯Dw&ìŸ7*¤_{¿°cÿÌss°¬®Ó…AÊ‚²TË4¥:@YªTFUÚ]£ŠAeT1XgN6SÇøÙÌ‚¡¼?›å(ɉ:õ®S&ÆD•ëžÁ)>ëiì°Á¤´÷X÷Y;߇욕eЖx],‡»‰Îqƒ”e©V'†)ÕÊR "ÕÈ¡ÛR1¨HÅ`›6Cºß°q~ØØ€¸LðJr”äšCo¦n ¿â§€ÂÙ|eAÊ‚ÍÆó× Ÿc,`ŸGqc ƒ”ÿü³ÔûÀ´oí¦%þZñÅŸroË®4/²m‚x ‡0¬À) v&¶íSoyèR°gnG.QŽ’œ¨Óøâ·©ÓÁ‰:\} k7ÓôÍÇD»1èÇðyä(ÉUó¶uß>»u¯`0°fÝtQŽ’\3ïy߀ë6…ý> 㼨 bß®ˆŠmƒìN^ŒQ”¢šY‹ò’›yä‚éU=9å(É):…nM—NÈ):!§è|'uBNÑ ¹:]vxQêí­¾Ù뺿='ÐxNqßW-R‘އOS‚á‘z¥(JQͰk g8ßz¹°uýæð.la‚”¹‰0ñɹr‹/ФÞlhÎî+ËúNÉ41Êa¢Hý±›"1&ŠÄ˜(Ò¹-‘Eb¬›&žs_¼S0P¨à5˜ F9¬‰Üº;Öýóñ‚ eÁ?YP¶ÑhÝ·mt€²P¶Ñ*6ÎY1¨ØˆÁö:YmrrÃЮX{B¯ D¨™tòŒŒ\a©êã=;X©§€øY©' Rl6^ŸGˆ^Ü|¼ûT^àž¯ã3·Ú¼Ëcbò7Ù1Ý F9¬™6ôF ^øÅñK5 §?ƒ‘{%9JrÕ¾ùº zü˜¯Ó»?™31ÞXÉr3QŽ’\3Pic´}ø‚éÃ"»ðQŽ’œ¨ÓÊÈY:œ¨ÓÁÕǰ¬}§„¡ÈýPÇ¢¿·ÝëÀפE‹žÔ+EQŠjvJWuö§P貓Â(‡qÓìô؃Z»$*NNN ƒ,K¢F9JrͼM+a˜i cí;ªÊ›R²0 ¦'=äŒ(GI®3oqW¼&i/\';¶«;Ì{9óĸ·–#±W£&ŠÔ‡ß‰1Q$ÆD‘F¥ÒTéàD™®Î”ïÕ­<«Z0zågUƒýë¯]ýùÞJQm7½wWX,'Æé'™äÜ~”£$×ìÛ¿©|íñ½¾ë½¬ô¸ï[ô^9qNªà Ü+ÉQ’kö-__±„ÇÊ?ѹòÞó“]=P(t’„Ý=Ä(‡u¦yºÄyè;éІY5[97u3šŸ(ç¦Be fRw:_[&ú =9ÓAQ”¢D…z–ÇR)Q!¤êÀŸÝK©îü¼!í+¯dˆ¢ÕÌê½xIÄıç!s¿Ža”ÚmZ¯7nÞ2ðˆ7¢ eAEªžÇR1¨HÅ`÷4ùi˜ÑÑMC£ÓŽq>|¼³K6»¯¶.ÚÔxf'†QSDªÉ[$‘SDªû›-aŠH„µI²(_ç°;Ë ‡*ÿ3ó-bå0Q¤Qù·DbL‰1Q¤´®;DbL‰±6M†$™¾ýðk*ø\…dð•é_ñÇ娫3å0å×Т®üšw/8ïs”áþîó­Ý9rüŽ¢Âø¾² eÁfâ¹&’ðçç­äUÍ+Š ¦˜AãîÏ#ÎmkÎçgÌ„AÊ‚² l£qDƶÑÊ6:@åqè-àq`Pylu벑z3 ¿´p]ÆÇu9h”£$×ìÛµtkyñïê3:hT}Ÿ‘{%9úçß»r’Þ%ƒ’\Ðù-_ëd7L uóòŽÉ(GI®™÷YqÆœßÜS(u—±W£ÖL»¢Òh#Ô¹¬‹<3­ÎôB)Âze Ê@¢<-h3å!H”‡ Qž®™ò$ÊCPý‰2½ÚÉO” ¦©¸Ûä(ɉ:â½%c¢JŒuÏà”³ €Û®"ÝúÂx øÁü„W£ÆMÓõt>ã>ƒuRxV«qûG­ñXÜwíÊsŽ ¸*¸÷íºëNλ l÷¸¾µÊÅ9JrÍÀë¼¹û’މƒ¨Q`¼O$Rl6îjP÷ènàn»g#öÊa”øiZ!F¥fWŠ{y ÉìK8/A‰”;Ï@­ob˜îHÉ8GI®šw\žöÜÇç²¹¨Ï»aK8½ú—꺎;Y7·jîc9Jr¢Në²t:8Q§ƒëƒ–Ý3Žþå¥ÅjçjœúâØ+‡QEJoC$ÆD‘EJ/C$ÆD‘«Ó¤?æ•°Æ3l šN•~†-JQŠ>㠺ϔýnV»´–\Ušs¨ %@Ê‚²Tãkh¶T(Ku€m†Ý_ùø}îæàÂkðÇæàHYðOlƒ3tƼŸ«»tƒ@ãôöÒ qŽþù÷ºóÖè=¤ TFòó>”2ßè‰wv4žé/íH€”«‰× ¬,‰xS°ÒÃrˆAŒrX3íþ¶¯:¿®ík¼Oî/×… îÆÅÆáÓµ,Pƒ”©ÆéZ[*©lO£{õ`èñ ~´kÀ8¯`²)/`«æÍèh”ìÂÌ9{ñ±Û*äÜE¢ $Éz*°<Iò ÔFü\,êŽxY¼P¨‰“%ƒå°jÚï>àó¼ïP—–Øn…ei€ÏªÝŒÄÖ‚½Ô+|[Fð•) v&îV~ñv8Þc´P(ÐÇ7ž!ý‹uTÿ˜¤¥‹Fê•¢(E5³ö%‘mý þõq)‡U‘ÛwnÞ¶áxñ-øæA²Œ½rå0Q¤±ùZ"1&ŠÄ˜(ÒòÒ-•N”éàÚLé2ìî{n‡Ë ‚ eAEªQþ³¥bP‘ŠAEªô⺤bP‘ŠÁ6q`p'W*?{Ÿ&qLþ »oTY·€B]À.ã†AÊ‚EêìK’­cò!FQŠZ¹1]¡ƒ:¨2Oæ+#ê¼NsbÔc3Òïô B”:£–Tµ‚×y ÉY”¨a²`³± fœ×ç5 Õ OþèBå0E¤æ‘SD"Lé ƒ˜"ÒΟÏl‡iwTøf+ëÍÁ¤ïƒ”¹‰0·øàÔË~ì¶‚èÈ#aà eÁÎÆ]±ÑŠa+faãqÔüQôvA´`ú¹W’£$×™'÷žXÅÃ$«ZÌóÐÑ¡¾í_6’7†N|Ù@Æ0Êaܶp¨€ÎYÉeF'3jãW±“çáäåˆuþ¨4»ÙäšXŒª"õØÍøø±©¹ïèvÜþ6J°ü‰Ç0ÊaÕ¸õ­&3#Íëçñ}:á!ð³0óª^möŸ¢§÷x¢ eÁÎÆ]±ÑÜ fèãÝ[¯7ým¦÷ù¡ÓB„;?uÄ(‡5Ó–®ö¦Gȼ_¹pê–¬,F1Œr˜(ÒðQ-‘EbL)-*‘Eb¬M“ëË á¾Úyë¾ên§*z½YÇW£¦ˆT}`[$‘ëÆÿð1UÁýv‰£}Tt§¡+¨_ƒ#»Óõ`a_Y²`³ñ´Ïd¾åüÓ}Ó÷† ‰sO¶/~ߢã¼|gâ˜ôs† ¯ßÙrOç÷ÃÏuÊj>ÏG›‡5.”äÊïýX¡Íëz€ ö_Å”ÏðØ ¤‚éÀ‘{%9Jrͼë &š †êœÜºF9¬Úö¹üžp…¬‚°þÁŠda²`³±¯*9zÝ'‹yU) RT¤ê·g©T¤b°=ŽÞ}rÜK0qåèø a²`³qM]¹Q8¼3=L ‚”¹‰°~óàîŽGïåiÕ\ÊȽ’%¹f`×6­;•¼mzé«0Fï;o›Žr”äDR²È!c¢JŒÕg0¿]5Ž…í†s—‰t_·ŒU­ZÎ3‘AŒr˜"Rsb€H„)"¦ˆÔ¢ aŠH„µI²‚ËÖ”9¹h÷ÜX½Â…B×Rq/2†Qã¦=‡ÄC¡l?ë]fKÙaï0ȇŠV·–žÕ©‡pQÏUø1Œr˜$ÒJÕ"˜$Òµñ2n¸¶‚ßy–7«½®PÝÊj¯ A”DyÚdÊC(A¢†í~ïÞZ–@îú+œ·ËMAŒr˜(Rß¹L‘EbL©‡ ¦HŒ‰"1V§É÷ýUZÓý.ðTؽ4AŒrX³­ßA¤1¹œ7~á[áÔ7gÄ^9Œr˜(R¯Ü˜"1&ŠÄ˜(Òhj4U:8Q¦ƒ«3e¿®Ü Ÿªßö.ÅŒ¸ƒž‘²•bŽQ”¢šY;HsÜY.%](pÅRá`/â#) *RJ”-ƒŠT *RõMHÅ "ƒm⨩àæ§V¡7·†sØö¼×±U ¢ø¶Ã(‡5Ûî (g5.—X¿ï5t¾pbΦ2W' R¬&~6×[Ïs ßÏ×îç EÓÓ¾r¥(ÊQ’ëÌëºÖár?1 –˜Xé9ÊQ’uÝ8–LŒ‰*1ÖžÁn§ÏlÞv|ÍÄAt ¿,' Rl6jgä­T…BçwX&(ˆQk¦]gºÃÙÍïr§úŸ{ Y¨€ø»¾¬Y( Rü“Ûà ù5Ô8ÙaÚÃ0±m(Ö¨~fóóÆ@îk‚å°jÛwÝíEî»*>ȯ eAn¢¾ò*Üþñ݇ÁÝï~òåÌÕæ^¸þ]}îa²`5ñXçD^¯`h¶ñœY”£$×™—º.¤p8ê|) *R7ß–ŠAE*©ø# *RñÇѽúRERyóo¬[¢|/~£$WÍ»ï” §* Ý žªƒ”›‹/«Ìn@)ˆ±ø (AŒr˜(ÒÈóZ"1&ŠÄ˜(ÒÊòZ*œ(ÓÁµ™r•îÂÒûûÝÕÌ'PØ5É«sÖ ·3æ«E9Jr¢N+Aeétp¢N×=å+^-êùbñj£¦ˆÔJ@$‘SDz#ÿ ¦ˆôFþû»K)âTÝÄ0=Z‘SŠQŽ’\5ïÓç''„öÏ©ª,#òaoÝ2¬šø0üÄA˜—bçöà eÁfãU'Ñ–;KÈ:å 2òNù0HY°š¸ª}fvÏå¸) Õ=¹¯ë5ßVeµ¾°ók:AŒr˜"R³ ˆD˜"aíl¨u\Ù/Wû¨œÕßQfJÎê1ÊaÍ´£Ïyëž8?×WAø<ì ‚”«Û¦ìr {9¼Ð³Fâ(GI®Ùwrwε®w±\a{¤,¨HÅ™ E*©ü“ßY1¨ØˆÁ:ã¾³²Í[}E…7ÏñÆ¢ F9Œ›kHÚ÷.ŸŒó´ÃPjŸç“£%¹Î¼ÃWJx€C¡ë{ÈäS‹Ar#y£Vm;>Z„jgèöCM3 s~ ‚oÔ÷®ùVs5Šä(ÉÉ:“«¦NÌÉ:1WÃ9§ò²û}i¸|P@ü‹|•ˆ‚”›WlüVR÷òÉ-ÎX_Fð•) ·ú­”OÁÐÉG–ò9Þ›6Û¬”Ok¶>tûñ¾bi÷©ó‰ƒ(úàa¤,Xmü¼µd¹Õìx|ºlm¥çŽR:‡Þá'Å(JQ¢BµãÉT)Q!¤ÚÀ;÷ï#¸¶óåê°Ã•…ûÔ”ële£&Š”" ‡HŒ‰"1ÖžÀy¸ÊRìPFá`w??•) v&ž©$â1wccTùÐܘî¿+#ä(ÉUó–ÙîzWÞÙeØG ß‘ï#D•ÌÇ>) v6j·—X'rõšiáN§c»/üòåJ'†Ý­OBNè1ÊaŠH픉0E$Âêø¾µ «u”£b ZÀŽr1ÊaÕ¶½ó÷‡” g„β¿) *R¥µÚ%ƒŠT *RýQTT¤¢¨cˆ¢pÛ_û\·;·Z°.yâJ­F9Jr¢NÉiuÈʨcÝ38™WàãNõ¡›Q驳`®œ×·aQpyçûúîX›bê;ÇG£(E‰ —”BH‰ !%á™DˆÉ£1Q$ ,½"1&ŠÄØë‚/Ç‘¹‰qFh"7â„AÊ‚ÜÄh Ï9å+3;1&ºx7o¤,Xm\÷ÝÛQ°g°åÇ(JQak›>×á 2é™ËÇ +øXjeî•ä(Éuú²&¬é¸p8‡ÁºŽÃ eÁfb×Y¨?ÁÇŠvcz°¡,hAŽ’œ¨S|‚NÔéàºÇÐZ†ü¹Ç‚é®­œ|Œr”äDI™I•«Ï`»»PŸû‚uêñܺEÂHò5âÆ`:/AŽ’\3ïjfÓg´Ü_8ܦÀðà eÁfâC¹;¡*ø½ox~fjì.¸pRßb¬~î÷ÉqÕ•›[ Û-ywK¤,ÈMŒöÅœÇåÿ•µ÷¾O&œã)  à+ R¬6þD<‰ªÊú¿÷§k¦Ò_©q¾5L߯¥éç(ɉ:ÕÍÔéàD®=†Î?Àe¿‰azvHÚxã%¹fÞ½û’_úÕБ¢‹s”äªyó_=“_R|õ‹õ9:cCã³úq„˧u¤,Øl슯Òz&_Ö9¢Žâkœ£$'êÔ+˜21&ªÄX}˵9Ä*˹Î5tÍl.8œlzFAÊ‚ŠT£QЖŠAE*©^‡;*R½÷/¨-lz1 a(@úöþb›+®úöÂX³íºÈ{øgbn_ÙÙZ) V·ëæF÷‰Ä‰ƒêj/Œs”äš×¹ƒ§—¦÷á5 ´’xaŒrX3 Õtë<4wµq}‘ÏG‹‚”ÿdAÅFïÙ­¨ØèÍXü€ßMûk+ÞØóÿÞ¿ë±úwãc8Í÷»Yþb»&T?òbyÜZRÁRGEÖ?à9$oÆ öúfM¤,Xlü¼¯‡á>Ÿ1qvx³M- R¬6~îáh¯XÆ=­pªÏ-•²Âå0Q¤^·6EbL‰1Q¤áTX"1&ŠÄX›&«3‘vðùõ¨œÂ)œ±+É9œ0HYðOTl”¶3—TlÄ`{Œû‘rš?wîÈ}Øeâàsµú© eÁj㼡ƒ\r@øY:‡Ûyð¥Q ‡;ÜAŒr˜"rɉD˜"aŠHoèÄ‘ÞÐå³ ^ˆž§zx!„¾+÷B¢ eÁj£ÚqbtÏ5L î•ä(É5ó6ÔN-'· ˆûNYr+ R¬6jýöTËóöŒa”ÃDÓŒdýÁÞ¿þsSVòü`¯_ãÖy9Q§‘>·dbLT‰±ö е ÷½’üÎÚÀÄ0”ÎäŒ(GI®šw~•”Õ Ö8Ãe‘:Ä eÁbâÏ«9»¦5{„…ƒû&†a² "UO4©T¤b°>ϬuYNÌ|Ñ ùü[ÒÓù©‰FÆo_Y²`µñnÌö¦ë'Æ¡¤«*1Êa¢H#)b‰Ä˜(c¢H}e2EbL‰±6Mz/Äy¤abüf¸XQŽ’œ¢zŠNÈ):Ý+ãÜ1G”StºcŽYíêe~ü{ôãçûÜ|0”.8èÆCé F9¬Ù6Äa¸¢‚ërz?æe œâ¹Ý(GI®™w_û úæ­ÿÈÃÓ¼&F=ö;ý`P¢ $Ê{·<‰ò$ʪô}BªÎНö-2»+µp0ÊÛRà eÁjâÞÅ]îƒ93V 9î ƒ”©új¤bP‘ŠAEª?š ƒŠÔ@4‹¾ú$çhfø&9Iå(Éó–÷ÕhÍ.Ÿ÷‡ýž«› p}]ÊÕM) VçÁ±B…”;®Î2wó, ,Îa°™) *R†-ƒŠT ¶§±­ÊÊf‹þéK3؈r”äª}Kçû[ ¦'ueÿ8ÊQ’kæ©=±Ì?fn¸( ÕL»¬ï_,\‰^Ví«:¶çU8qÏ+ RT¤êµ4 ƒŠT *RýþlT¤úýÙe½_üXeì~/‚9Á›‚Q*K·1ÊaÍ4¥èg/Øj Î^¯cå0Qä'¥R¢DHÕÁÿ^å‚p±hù^}Já„eRCú›ÃKôÄ{+чAÊ‚ÕÆãr]ÝíÓ»&.Ÿ—) 6¿'X¬å²€FLŽ!à eÁ*õ¼CC–~«iëß?Ò÷ †AÊ‚ÿ5ðqØÆõ×w×7úÖ~ïÑRY°ÎruTF9Jr¢NñûÖNÔéàêc¸£]wïüÔÀË¡˜Û{(}Ûn}ÿVC¿ÍÂ(HYðO”mœ¥QõØèe ò8¤çèzTÛ”beX@lœ^²±ƒï4¦Ç0qi¬½2 R¬6.¨õFŽ Öß[íâõí[Yߢ eÁj#øj’¬¨Ma‚å°jÚö·æÈíH…ƒÍþ¼) Rl&¢Šš{ ž<2r”äª}ß!i<†xÏìïÄ0wâÕø F9¬Ú¶ß¾¡×©œ8¸Ô ÒåþF9JrÍÀ{'sž£žo­ž1ÊaÍ´!ÌÂUÅ ÷‡Î¼AOO­¨lË ¥¶+ÊÕò F9¬˜¶õßB÷¶HÊØé†Å(JQÕ¬O7ýýÙ©‚ õ óˆr”äîÆº(§ètûÅÛüþ*œíTyÆÜ ƒ”›Ï#Þ ¼÷ Ö{»-b®ïï ‡½Vãàm}¼ä) r£Å²mEý&²«³mÃ<õwÏWå|ó4 Rl6±­MÜÔû+ìµ&ÈQ’ãö…ýÜmï ÈR€ª¼N7öné7ßÛä(ɉ:c:¦N'êtpí1 {VåVŒ ßz*·b„AÊ‚ÕÄózwÃ)´Þ·JÉ9…) þÉ‚ep¾Ÿëj³ðfñý ñ€þóZF[.»„AÊ‚Mêq-ÞRòË­× þ®mk§4ÆQ’«Ïâ· %‘&ü®³ ÚɰÂáYÃÒaa² 71šJûÞîί‰ƒÐ¥e+c¤,XmÜÀ7Áå0ï ¯VÓ~îÊØv³Û•[.œñB9·) V÷~¯qÔ@ªûUuÛÔÕt¹¸…Mš GINÔ9«+­ÓÁ‰:œ<žê+Æsòxb®M˜Õñe¦€0"áËL¤,XmA=hb”þÕÔ1ŠR”¨ð“ˆ Q‚ê¨ß'?ÂNî¾ì|ùryV…3>#{Va² "U­"©T¤bðOTlô;ºaP±ÑïèîëóúQŸÔ2ÅÆ(HY°I=:_Þè[ÇôO”£$÷'ɉöYy1Ë>'Úçàäç`ÄTæsÀœü0W߉m—“)f¦ÿ¦„5ßLô1ÊaÕ´oß®ƒ"&Æ}ªáêÛb”ÃD‘¸)E‰1Q$ÆÚø¬©H¸€}jØ ‡AÊ‚ÍÆûäëÓ‘·ÚŠ®IoÒt¨+ÃóFÐ+QjF}|Á6«îç§sµ0a}³À$ˆQEJï€C$ÆD‘“GRrª=C‰9y,1'êÓªNÔéà:×»ÿ¸ç) ©Ç{;ùÛÇÀÏîcê# Rü“eÉõ÷Øèe l£Tl”(—TlÄ`Yïùj¾yîbv£AáàÁIÞi) v&îœÈÄ É«Ös61ŠRT3kï2ø°KobسhgúýAŒrXgÛš*„ó¡ukØ?¸ètÎÇ’JŒw}²Ìx¤,ø' ÖÁYú¼g ³æ\®Æ?P±–ŽÂáð†5u„AÊ‚ÍÄ}å+ŽË;?¯† wÃàÄ8èõ²ž£(GI®Ú÷í6nœcŸÖõJ¸vÄ(GI®™·ï`‰Ržû1¼LÒL“‹Ô·a¹ˆ) VÏ«£=œž8Oç'cÇþ£íïw¿~» †?à§[¢Ü]gÞưD%@Ê‚ŠTÃÓ°¥bP‘ŠAEªwáO€ŠTïÂÿ>Hïõßcþ[¤,Xm¼?šá¬›M {ט ×õ¢¥(Q¡Ð&àP)Q!¤ä1÷)¡p‚ã£XÆNp„AÊ‚ÍÆC;ÒnôItÜ3b2%â%¹jßí3Ç2¿¹¹»¾ —À'Æ¡J6ó—ƒå0Q¤·=4Œ‰"1VŸÀ~í/Î&‹‰cÒ„66ÁF9¬Ù¶i—£Ì™¦Ê4?à±o —¼b‹àŸéÞn£Vl›ßÃ<ñu u˜/êó$ˆQ«¶}>‹këš?ÃÖå/#üì•ç˜iïó—õ F9L©»¦HŒ‰"1&¤î¯ÚC‰9y,1'ê4Ò»¦N'êtpmJçH61înˆ<9XŒr”äBW§K'ä«Ï¡|þ:êjÎë i VK+ ì÷áµ´0HY°ÚØ×ôE›Õ<»E9Jr¢NÉ)vÈʨcÝ3Ø3ÅŽùÛ;Iî”`Á„¦WËI b”êmûõÒ¶=ÌSž,T7’žòd£VM;ö®î ÝÆ‰aÚ÷Õ•§¢(EUÃÎyIwÓßm9º‹r”äDI™I•kÏ`p:ÜêÂIOÜÚËcå°fÜÞ·ëC ·¼—ß±„ç>ŸñÙ…AÊ‚ÿUðûˆ˜Í’YçÏ#uïÚE~À£¹Žvº‰Ï‡h5þÅ9JrUç}*lmüÌLh¤,(K5®r°¥:@YªTFUòª]£ŠAeT1XgøïOÅ.kçƒàö£‰aúGËd/$ÊQ’StºûÍ¢œ¢ÓíÔ1NØ-\:!§è„\›.CÎÒ[ü^¶®eÉØèߣ7R0={2r¯$GINÔ©_íkëtp¢N×À4‚}–€, ½Yí, R¬6~;6&†Á’ó|£%¹¦sÿMÔ›4î×öðëìÌF9¬>ƒý­bñðr|^\ò½ì >¾0 RìlÜ铉a]ï‰+Éå(É5ó®Ooºc‚‰ƒ ´ûˆ^‚%¹fàþHBºZ!À>®›Ÿï’®s7aYÁÂ-´ò” ƒ”ÿdAÅFQTlôG ë¼i7šYµÆõî°‡.„§þyè) V×Uëè1}æÂé_@–}æ(GI®Ú÷²WøÑÇÈŸÓ; Rl6Î[&ßX8ÜèÏü®0HYðOTl4ÜÛF *6b°=Fýºts†o ‘«Ü…ƒ¼Ì) V©û•_Á鮕­§Q² ,ÕÚ3L©P–ê•Q³£ŠAeT1Xçx_¬ƒkÿĨn]tmQ1Œr˜(ò“Ò)Q"¤ÚàoÚÅhV;YÅf!)úÄ^9Œr·í­%,´i=´ÊÒä¸u^®èÜ–ëÓŒð~öÏve^Y²àŸ,(Ûh\acÛèe ò8¤çèzTÿ«àÀœã®òbÔOßÖ d•~s°*É_Å0HYP‘êïÒ ƒŠT þÉ‚Š~§2 *6úÊû„—¢x"7õå:#¥(I¡tÔ+Ä”¤SâJ…}Ç bLEŒI"Å˸°H&‰t`mý;Cù›jÜvÝ®‹•}tâà eAYª¨˜R ,Õ*£j*ö¨bPU Ö‰³Ý®áÕêXcî¶[ ¼41lQB1¹£(E‰ …(Ç¡R¢BH‰ …HÑ¡R¢BHÕÉq)&œT( ^ÈXR! Rl6ÎmdUàÊê]òFœ_(õMr Ä(‡5ÓúŠG êû¾J²Ý¶ç*]òþ(‡AÊ‚ÍÄ]é´šª õpý¬žêDH”·dä!H”‡ Qû¾’S¤Dª³â£ÏŠwÍ;=† &<,z¥(JQ¢Baq(„”¨R¢Béã[‰5b¬ÎEÿ€±[¬¯wy¶‹(GINÑénErŠNwZê»\çÄÃ¥§pS¢yØщr”ädÒYPNÌÉ:1§Œ§°¹ÆrÊxB®N˜õúÊJ8t, vGYè) 6oψägnã ¾ÕTŒÜß) V·y–÷gûLGᛦ}ô$ˆQEJY;‡HŒ‰"1&Š3b•N”éàêLùÞ‡-ß(‘Âú³¿ûû7¢èÛ.Ç%æ (>' a‚%¹jàþ9YLèê„*\5‹«* Rl&.GqcéÄ8p°”÷¿1Êa¢Héñ9DbL‰±ö†º¡ßá-_¾~¾}¶#ä(É5ûú:¥ß¼±. p•Å¢%9Q§Þ!oÊʨcÝ3XíÄfÜñûÌ÷_Gi—œˆß~ß× ÿÊ‚”e©âgRYÎ}„AÊ‚ÕÆ³w~Ç+öóXí"…ÜË\8ãC6r7s¤,XL<Þk"É}SÝ*åJr1Êa’ȜƜDLµÁ߆3«ÃP‰ˆç£%¹f^÷úH¥Hùí)X—8v½¹îèÖ›xu n¬\ƒ”©Ò–ê’ŠAE*‹Ôó}ßù—âu\m eÁ?YP¶ÑZŠM l£”mt€ŠÆnÛˆAÅF þ×À¯]A’ãΨçÈçq eÁ&u}tú Éy×ð F9L©~#Ï 1Y$Ä”‘ÔÒd`$¦Œ$ÂêŒþ\Ÿ_r7¯6°{¤pF™^7¦Wg”!ÈQ’k:¯ ^ë?³š¤,XŸÄrÝbÔ2ïYÏfß~ïvÍw 9Jr²NiÛõèÄœ¬sŠNa9t鄜¢ru¾G†ÙŸ / ñ!x9A) 6»î\Ç}ÓÈ¡ë4øÅAŒrX5î¼nS†r[wĈ’bå°fÛuŠÛ7Ÿ8ØN^ø¢ˆ GIî2ðû¿÷{æm4ŽÖèÆáNõÁÀHY°™x™5âüb]5Ô¹*5ì”Y‹Rœ£$'êüädbLT‰±î(ýF€›õ'þ‹I­ ¿X_Ç4¦Ø›½ 7ˆ>•ÇÎ'@Ê‚ÍÆÇ×Ç¡¹½Ö“[xaþ6§ä¢¥(Q¡Ð›áP)Q!¤ªÂåNIIe¿ zqŽ’œ¬S:Gëщ9Y'æ”ñ" ×xBNOÈý׸½Î|Àqb˜ž˜ò_qŽ’\5o=>ò"mn¯ëù;˜ÁS@?à}îÓ}Bxâà¬f¼Gð•) v6îr¹Éž17¦ï{ÊŒ r”äšyÍçœÁ|™Fæéæè=ÎAˆ2$ï“P‡IbêpÕ÷Ór†úUa–ZT%ž€½rå0Q¤à94BJ”©:øûrËcõªqWV2ÖÙúËu1¼³ÒÙ0ðõó1†c”ÚmC‚ 7‹Vðèbc÷ üÆávHGAÊ‚ŠT=¿¤bP‘ŠÁ?YP±1ªˆ‚ŠTÅݸ;öÐ8=Gí3ïƒS"8ËÊf_85©8%AŽ’\µïèÝeÜœÎ95õ¥8¢‡6šÀ r”ädRÒ£s²N̵Ç0ô̹=ÎÇuŸ„÷J‚‰q­kÇqsB£&Š\r"1&ŠÄX}çå»ï(š8ˆúíJ¤,Xl\ÞßÝ̆ÈÖ‚ék®œbr”äBÀêÒ 9E'äêcø, ØüäEþ<3…ƒÊÚf$¢%¹fßã ©–Ï}nïæqW)Ü»®g&öÊa”ÃD‘zöƉ1Q$ÆD‘Æ¿¦J'Êtpu¦Ì]<*,€r¼}¯û‰¡¯2³×àæàw@ùÔ0HY°š¸n•Ð÷ ¸U…S«-Š[ä(É5ûºGhxÅü ÞXWÎó=À GI®šw<¾¤ë*;®ì®úh¤,ø' *6ê×h1¨ØˆÁúÏ·’!0± öûô…®„‘z¥(JQ¢BÁƒt(„”¨R¢B!Np(„”¨R|r8ïµâ†iSj¤¸a>Šæ£D…Âs(„”¨R¢B)¸pHʨcm~t•åÀís…ƒ|=*ËQ² "UoR1¨HÅàŸ,¨Ø¨ïåÀF *6b°Í¸îò&aAº©“xQÝ<µ°W£&Š”ÞA‡HŒ‰"1VÆÿû¾r…Ú^,÷úJmU–›ý‚å°Î´‡ å*zTPïè‘‹a²`g£«á˜uá •SY^£¦ˆT#t[$‘k`Ýù“s­Ñì²Ñ®5: Rl6î›+‡Ç[O (œ™±»d eÁjãg9”âx?F‹±;TN­šÈÛC”£$Wí›] ë:»)ôƳθE)JV¨¾î¦BDÉ UG~YÙ ßþU@½oBÙ¿¢ eÁfãþûÚ¯Í(º(fCí F9¬Ú¶~¿©ÒGá"ÆKa²`“z}ùW¢f.5R”¥ZÔêe©PUÝ£ŠAeT1Ø&¹Qû²¶¿Õ(GYÛ_£$×ÙwzvVÿúnוE l¶.l{‰a”ÑÚÞD"L‰°ÿ¦åÿRòåO…?Ö÷Ä^9ŒrX5íÛ™¶x-»¡gyÇ4,DQŠjfõ{:¼ejâèZâ{z £VEî_çîî+ƒ”e©ÖîcJu€²T¨Œª±ûØ£ŠAeT1X'÷q}Ö8v×f¡ÞÏ¢Æze Ê@¢²m®FÁcbݵâq»Yc‚¯,HY°ÙxlÊj/…nǤ æ{å0ÊaMäõ‘œ%8Ç: R”¥ZYSª”¥:@Eª‘%°¥bP‘ŠÁ:¹—·4Ê­‘Ó/²–{#£%¹fÞã~üÑÁ»ƒŽƒ­N7¦Ç#÷Jr”äšy‡Z\ëWíóZµ'†é?7r¯$GI®š·òÏD¸Þ åÙÅ0ÊaÍ´;ÚWï£ý‰sj]lä^IŽ’\³o(§iM»¼RU0»€ªb¥¨Î°þŒ¶·ºu¬Çê)Űf cíò¿ÎÈšÈà0HYP‘Š“ÜŠT *R1ø' *6¾³6bP±ƒUê6û<úíÍÖÏ(HYP–jf¶T(Ku€Ê¨êi0ªTFƒuÉٮĴ¡yŸíúÀ`¸ôø.Ý­Ž;Kê~¯»îÀ³}Ø^Ã(‡)"µ® aŠH„µGЀ×Â[~¾@Ïš˜u>FQŠ~2$êCPõ!Sª/{Liß©(ƒ¯,HY°ÙxjMu¶ã¿Ï³¯bÇeŽ»øæ»„~b”òŒÐ+Qå-yå!H”§wxZú % „T›Ýê’+tÍB~ÝxÁtç{ä^IŽ’œ¨Óø­©ÓÁ‰:\} Ǫ$qÌãáÓ?ˆ$Ÿr”ä¸yj&@Ãv§çÄÖºóÝŸ \u–šàït\j?q°KZ¸fZ¤,Xmü\]-j^SîØ)ú@oÙ‰r”äšyÝ1`ýÉócÀ{:Rö1à(GINÔi<=K&ÆD•kÏàrR`G˃»Î„úNOMŒR|LôÜÏGè•(‰òžÎšC‚DyêÔ¡ähíд‚Ϥ© ¾² eÁfcWAð_ª^°>Ûç© D9JrŠNÁçp鄜¢rŠÎwR'äkÓåèÔ²…fßÍ=ç§ý{sWžÄe¿‰aúÒ,—'£ýóïͲ—b®e¨ älNò•_…BM`ç˜D bô¯¿†JTÊ;äêP.ÝP>·:e$odU¹i!ŠRT3«»»KXäà¬Pêþ!ÇfAŒr˜(R*“;DbL‰±6þC£ó[ uø' ïáÒa²`³q(žj 0^<=—¯3ÒåqÄ}3¸sg›™‹Ã(‡É"ÕË,l‘“EB¬=‚óÑì:âs®÷b-™æExÉ, Rl6®Î{ÛYÛå¹uYŠÀÁ¢ÂÁo<òQ² "U ƒŠT ¶§¡žü°Ï¨œ÷Ñ##?ÜšÉ4žÛùÓ…ò»*øÜ@í»Â eÁjã~½SÎZæÄ0°Ãð‚k£¦ˆÔzˆ€H„)"Ö@W—‡_Û˜õ6s[ÛÊ"e fTßO7±‰aÝ:íj߉r”äDŸœLŒ‰*1Ö=Þ`â㎫1E‰{å&€I5§'õJQ”¢šY_çbÎÛÂ¥•§É£ eÁfãõ]÷å:<uH»×œŸY,˜¾±ŽÜ+ÉQ’{˜ìû>ÏþHRàVÁ³?,¬cü°pÁ ŸÊ G9Jr¢N£’cÉʨcÝ3Pޏ"ÎþËÝû03_ãE±W£ÖLçpÿùünŽYøˆ|õ—rå°fÚ®æðÌEk/†q¡çËæ¦„›šµ'vê)Þ·–sÝÿ÷~ß÷õØ}]Ç¥¸ˆ#ôÊ@”Dyj·•%A¢<‰òô·ËÒ)Q`à·î”©oæR ÎxñÇœïÉ_Êü&•´Ô7HËûK+}”¢ÕÌêlÕ¬…›õ5Ò¥å:JQŠjfZ›«u+Ôx—EcåâÆ-‹w¸W’£$Wí›»ÍÙ¸Ý(ñc†ZÐÆ(‡)"לH„)"ÖÆÿ¾“ÆÞ6öÂÝ”½™ì}‹@”Dyê"bÉC(A¢<}+³ôAJ©:+®Xü÷¥tßó[ÔµQUÿbW«÷› ç4gvÄ^9ŒrXg\—ØpÜo;qP ÒU¼ ²`³ñЮêמ7waÖî¶)á©ÌĨ÷#Ãd$nÂå0Q¤TáwˆÄ˜(c|üµ =¾­Ü4Õ71nšã¦91Q¤àS;4BJ”©6øJ–Õ÷Ü0ؾrÓb%¹Î<ëÀÛ5!Çnßiéñ‘j?5¤:ߪÆñö¥|¾ÜÖíK ²`³ñªˆOëÿ€Ûüõ)¥¨*r ²ÏÆ©ÖÙ0ÛKQŠRTgØ•[ŠÔGÿb›ÖrmÜŒñ—»n‚p~bkâ˜â+Ô+EQŠê ë¢`ÇÝÈ¡g24è%@Ê‚ÍÆëMuß^UÁï}!Ö[ôÜ>ñÒÒ·¾ÌkpÜÊ×8Üèu°µ( R¬&‰‹ßƒõgn`£$×Ìë|÷á©ÆáV-îEDAÊ‚ŠT£UË–ŠAE*;©]£uKÉò) ÊR­–KSª”¥:@eT¥=Ã5ªTFƒíu\>jéªKÁ mõûÿ>ï!C =E9CPÁÇ&l'¢%¹fàÉÚr­J ëœP—Ëå(ÉqóÜ7+r±qò¹‰n°³±/CÀÓu•û|¶LYàóñ¾ƒÌúè™.Ý9ÜOQ!T€R”¢ªYó„áÒ1·Æ ¾¡uî,Rä&êM/w­ºZANYt祭I(À¤ýÔH½R¥¨f–RK¶º¢³g¢Ì½’ýëïíWÙÌ÷ô(EÕÁܯµpGqoÏžFAÊ‚ÍÆU=gúnµ”ñÁ†éÇ–¥ãýóïmŸÈûGINù=øÞ*¿çß÷¡Cz”fŒ½Ï˜à&ŽW’£$W <úˆÞÎ7qì FDÃ(‡5Û†.÷·?ÁvƒÆu“J‚- R¬6žïõôd;Îû^›âëõyìò3ÏÕLóöåcu1ŠR”¨Ppõ !%*„”¨PX !%*„T™?ÿ©œñ°®klœÑà3‚¯,HY°™øA ÓÏï.ÞõŸ:+˜¾IÊo”£$§è6W—NÈ):!×éteï¾ã¦Ä(‡É"õ Ù 1Y$ÄÚ„6?à7n:ƒ´FŽ‘z¥(JQ¢ÂgyØ!A¢>µQï.3QG}á6}ÕµçI½R¥(Q¡:–@‰úÔF}wEüãW+‡ðñ›‰aŒrX3®kps®qFµt_Y² "U*zº¤bP‘ŠÁ?YP±QŠt\6bP±ƒuÆ}%Pµ£JysGè•(‰òÔÆK‚Dyå=—e‡<‰òÔ¦Äy,½ßÜ›88·¼€oÚGAÊ‚ÕÆy_}¹NÖúW@œyd½a²`•zu "‡—ϳE)JT¨{»–BH‰ !UçÉúy$b]}/ó깫õË\¯Õuyê—ù^!ŠRT3 åÅ®÷müFÍ_îûiï›UFçAi¤,(Kµ–Sª”¥:@eT¥4³kT1¨Œ*ÛÄÙ¯™37_j˜orRÅ–‡»oµ!1ÊaͶáøäø.õ/ÅÉ_Šóäo“Ž’%¹jß¶XmÚò‰i—ÌÈG>b¥¨f–ãŠU¾B»n=å t¢ Ô™¤tc™åÍ‚éçårc”£$§èÒõ.StBNÑ),.StB®M—ëã<á+çíXŒáŽ+6æíÝö–ŽÔ+EQŠªf}·Ý±Žð=ê¦ÄzžØ+‡Qk¦]¶À!=ØrwSÈK<Ø‚Ã(‡UÓö«€„ÛÑx­«€èûÎZW¤,Øl쟺Yñ§wC`á/DQŠêÌRJØöÝ(…{¬?öÕ(AŒr˜(RªÀ:DbL‰1Q¤$9DbL‰±6M®M¯ÕøÁßöÆ÷Åë`]¼"Ý_H&åÍäã<ëê4®Óð]0ÁÕ°*-AŒrX³íã+cå™FFsaGè•(IòÔ·ÌP‡Ibºá>}4;Ʋ,ÚØŽÄß±›Ã‘7É¢ eÁÎÄÑa~Ái¡Ôì­²ç.[—'ƒŸÿš8öL7Z™é F9¬³Í ûê ÝÔä5îZ£ÅöâXìàs3Rl6ªÇnº9¶ó©y˜ÛéH½RýÛo]Ÿ[v¾;”¢þkÔÒ¦IàšðeÝ/§Ú×C01L;¯ì¾!ŠRTgØá›|¥\»b!*ÅM ±ÉÆgH„¢Õ̺7G”8Ǹ¹p('pŽqs£&Š4r–HŒ‰"1&Š4r–HŒ‰"1V§Éöyô:¸r¯ËvmpÑæƒÂé—²ËÍQŽ’\µ¯¿uæ¹)þÓ·« ‹ëH½R¥(Q¡Phw(„”¨R|à%»:Œ×UêóR›vFŽ›æå¸q^NÑ)¼7.StBNÑ)8°.StB®M—.½å>»W(µ*£$¸bå0Eä3¬r‰D˜"aÝøï¦mJìW°gVØŒýbå°f[—ctŸP,zÚ<ËÃ(‡)"Õ§m‹D˜"auü÷¾qPþIÇ¥¿DGKÃñ/:† Ê@¢<--lÊC(A¢<µÏÔ)Q ¤ê¬8î/}>=–zÞXŠäо¿)s¯$GI®xÁ½ò›®*ˆF†ßt) 6ûnKã—óä¹×-=…ë-®[z eÁbâúž£,?]AØ¿ÉòÓa²`³ñú¤…ó€W³ð;+ùçn,ªƒ”e©Æe`¶T(Ku€ŠT=Y¤bP‘ŠÁ6o†ƒZš»É³ƒë[ù”ƒÝ~Z0½P$÷ŸF9Jrͼeqä>’õÓõ=À–‚‰QRFRÀ^9ŒrX3M»eR¾~ibœ°2Éà+ RìLtãåW® ,½üþÍõ£*ÀJÿYæD…cýhß ’/ñ‡uîlŒ‚”;wèŸ?ŸÞiÕ€‘z¥(JQÍ,½ñ¥¶1#P0ýKâ#×~Žöru‹ ú‘¬«}½ï¬ðr”äêïÍÏÏ{] «ƒ9/¿U„à5dCøŽ¹Â FÿúkÛ™`”äÚXîzç}çâü¨W>v«åÎÀa¾©#õJQ”¢šY§ë”+ zD¬\å(ÉUó–!f3ryÌV@ØËc¶(HY°Ùxæc]q?ñíu¸ kÓò9§ë#ÚÛ?d¾®·ã<ðR9mÛº…õÝL_Fî•ä(É5ó†z-<ÔÞ¸!Qc$£øÄ. L ñ‰) 6¯`Áñº^­æ%Íj¨,h f-•1ŠRT5«´´ÝÕçQÝ\¿ú\œ(HYðOTlÄíŠTlÄ`“zÅ]À•û¾™OÃ(‡É"Õ{¯l‘“EB¬½½S ¯½8v¶}Ïã¦Æ0ÊaÍ6ÇÕ¼< ëº-—Ý2‚(IòÔUÙP‡IbÚpOÅ…²{f×m÷¼_ü »‚¡P‰1ŒrXµí»uGIü-*…Ó÷í‘{%9Jr;;gmû±<üžš¹«ÒUAý‚L¹Ò) Vû{CÔå‡ÝR °*°{Cb¥(Q¡º4X$êCPõ«U4^˜<”S’v#lÁ`LÍ«KAŽ’\3OýìÈ9VAyÎ9 Rl68o#;[8éôŒÀµßë÷-x±éÄ1àÍð}+†Qk"æ<‰oÑ÷ÖÙF9L©§M‘EbLÉ39”˜“Çs¢Î”Érètp¢N×Þº.3á>ëY(ÔJÈs1Œr˜"Rm%´E"L‰°:þgW{|v¸pB’Ôž£ eAEª´Ëº¤bP‘ŠAEê;+ƒŠT vçà /Ûsƒø“p<1) 6Õzð–nÐëƒP’kBwj׸Ãóhöìò|ÏXh„^ˆ2PgTë ÂIÞ±/è  r”ä:ó–öâI/ì5'ù—z ÷˦7·˜˜ØÓ4rÝhî•”ÃÄ_ÃÆ‰¿†1ñ×c"þœƒk3åJv„?¾¹½½½Òïñ©Íͽ’%¹f`wAàöý탾·+×^+§.ìrí5ÊQ’Sì3švÅ@Xªß ½àÃD/ØlDí[ÚØç—„Mvâœt¤ËØœ·Oׇ‚û;&†Á}…õ¡D9ú×ß»›•¼ÃBI®çâœ.3{ìË¢äè†y'{è7….c¹±W£ÖLÛWÏòÉ?X8°ÛòO1Êa¢H}“6EbL‰1Q¤±µ›*œ(ÓÁµ™r¥w´—àòÄùÝ#…B ÕÛ*1ÊaÜ4­æ¥P«ºQÚŽÀªîZ¶#ä(É5û†sRx?_kÊÝ 71~ÙŠ». R¬6þ¸Çæâøç†~¸ßªTÿ &öƒ×zûÙê) þÉ‚²³”ÐõØèe ò8¤çïzTÛŒ[?žò k}Ù¶¡íÞàѸ!Ì1â#¾J€|™Š‚”;/÷3Øê°íÊy2»B\0èí² q”£$×Ì[[]õüL ]˜¬#)FQŠªfÎbòÌ&ôñhì6¹W’£$×Ù§†±ÓñÛñü¾¦0žüÍvl]Ø}ÝÈv -ÚïçK7ö!OŒÓwÜ‘{%9Jr;«YÅYfoXwÀëù'ùèó²ZÛÁÃGQ”¢D…úíX–BH‰ !Uþ¼oA6W;ÖûT °±æ§E)ª˜õ}ºk9uÄ ›¢]G ƒ”;Omd:Œì.˜žÄ¹W’£$ÇÍ“¢K»:ÎÏœL7³¬S£ÖÙfÇé*öu¬ ïqí*”º/ŽØ+‡Qk¦]»0Xæqý*”:Ž#öÊa”Ã:ÓÔù¯»%ß÷×3 ¯KâÂ$„Qk¦Ú=éÖ÷ýtþ¼û€A¡Pçóèƒå0E¤Ú¹d‹D˜"aHßáÂï2Fa² ,Õ¸˜Ý–êe©PU=ž£ŠAeT1ؽ€§µý\Ó†ßQW(–ñKê‚å°fZw»Çs—è‰Aö‚Äo÷ˆQ”¢D…ZP` D¨AmÔÕñíöÖÉ](´}°vó F9Œ›J*œš»7LÛó/Ø ÙþÅãý Q”¢šY×u*ÞóMŒ{¼•2öÊa”ÃD‘FÙÓ‰1Q$ÆD‘VÑÓRéàD™®Î”eúžL ú rx<è‹a”Úmw¢ÄŠ·íÆž‰T {å0ÊaͶ/º¦äJ3ò+¿K—¶rŸÙ+r³Yâ*ˆQSDªn¶-aŠH„ÕñߺÐ8üo#õtSo!‰*`¯F9L)}óÙ!c¢HŒµñß}[#»°¥ph³b×µ1Êa¢Hc³²DbL‰1Q¤µUY*œ(ÓÁµ™rtQûs÷¸B¯ DH”§¦<‰ò$Ê{nNyå!¨N‰¯æ‡Øwƒ}¿û!/:ýÏ?+V(eþ9 ç°; !Ñ0R¯Fn}”Ä_BF‰¿„ ñ—àHˆ?©6+º» µ)øÆ¿ý©µœÊcñE)JT¨M,…Bªü~Uƒ‚×1 ]ã×11Êam›š>±ü¢}ëνÁÜLÓb,¥ Ã(‡u¶Ù)% ûº†„ç Dò,` £ÖlÓÏ£ÔÑÕCÝ_U+”ØJøÄ^9Œr˜"RÍÚ"¦ˆD˜"RÝ3l‘SD"¬M’>5áøzÁÄÁg*D_Y²`³1’£nžÈ¼~î»rƒ eAYªñµ [ª”¥:@Eª>߀T *R1X§ÍùÑÖ&бtÝØã«ØÍ8~ \áôfÄ‘{%9Jr;Çýïâ€òô…3nKOЇAÊ‚ÜÄg%Çæö÷oœnrÛß½“ ¯óœ8f·¡r'7ˆQk¶ÝwG‹ÿ„7Lòâ¤,Ølr5 ÎòŠiµÙ!b”Úm_—m ·íëúµ…ÛÂ(‡5Û®´[Ê\wÔß;xƒÍ¼§3⺣& V¯Ý¸?k61N÷¶Fî•ä(É5û|%‚›çÊÙoܸE)JRh$ì …˜’bJRhåê ‰LÒèÀêü˜¯o6@o…E)öØY”0HY›½•wš‡¶ï5“][W(”Ž`×ÖíË[Ïu=1ÊaÕ´e¾†dnN‡ë°h{ÀuX4 Rü“Ûà,ݽ?ŽON „×ép‡,ÈQ’k^9D¥Ú&·È~x?`Œ¢ÕÌê..ÓcnwLÚrØå(ɉ:ÅÞ¡ÓÁ‰:\÷xÃuåjáúî[׫a²`5qUïбïNÚ×\'!ß´¯wýæ¾6öð£ eAYª•û2¥:@YªT¤¹/[*©l‡_™ç{§ÖÇÜ|¯T£$×Ì;ÁZs½OüšÄÂç½Gð•) V·¡” ÏR^J¨  É•„(GI®Ø=C=Jz<ÂÓ½så 9Jryr‡ˆ“n îö_‹nÇà|1Š‚”¹‰0êps÷ÈŸa«`—Jô%=£ eÁf£ñåÌ`ñ£8ûÞÅîsd… òGäÃ(‡)"µþ aŠH„µñçÀ–^uV6-}NŽ÷¡Æ(JQYZˆ4ïϹ¿F5q°Ë¦»>œ) V¥k·uw×L¼Ö뉽rå°fÛÕªëþŒëÄ@˜øâÅ— GIŽˆÂ~­iá`Áï5 ƒÜB7ØL<Yyߤ«AΡL„¥° N¤,ØlÜ´+ÝS¸çšw4ÿpZßѰ³^®ŠÙ>$ërŽQ”¢:Ãä“à=º1ë=^£ GI®™wÕŒœš8úey©)†Q+¶oµBeGz? }Ó‹ö{ŸÕ÷²ÎãC8Þó£ß˵’ï«M=ØftÜWûx_rJrUæG9­i‡|Ó÷h9â‹r”äDVBÁÒéàD®=†¾ô¸üö¸?Øð\\¬˜íø Ï9޹ˆ‰sê,“sQŽ’\³ïq®Ç•/\ß¾êJ‡AÊ‚ŠTœýW¤bP‘ŠÁ?YP±ñµƒŠ¬3®¿gEÛù=+²S'üž•E)JT¨5˜$êCPõí·rî==æÇ—5¥Ðt]âB¡4óÆöôF9¬™6¸jëéÊŸôÙÆÓ›AWþ¬Cå°jÛ2/ü•±W|b Ð¶/ƒ¯,HY°Ùèìßy³½ùæ+Œ½rå0Q¤²™"1&ŠÄ˜(ÒHИ*œ(ÓÁÕ™²jg»úCÙübcû8;&¹º-ö;+_Rtl«™þ½ßtv5d¡PœÇî¯ b”êiß7 çkLØGRŽo—³Gñ‰Aš«?R¯E)ªšµiit2µak"OüCuGd—Nû®”9‡g}° ¹ûlBÆ0ÊaÍ´ãô¬$ü2·ÂáDïÌ–¼(HY°šxü•#ÂkñâøÁNÇVð˜C»tŒK£$WÍ;?ʃ7/´*˜èb Ü+ÉQ’k:çYÙzX‡ks ƒ”e©Vß¡)ÕÊR "UZA]R1¨HÅ`›ßß³½öŽ/M „Þ4ÏX9JrÅÀó>'ê¼öâðoì•Ã(‡5Û´$žÝ;øÃùv3V.Þ[X%8 Rl&*¥à~<ùeV7¤æä˘~¨–òp¦¦PÈ¥c) F9L©¶CØ"¦ˆD˜"òùØ\"¦ˆDX7IT?¢£ö‡iú¶þÄø¹OZÔßûlÝ-=:¶Yá F9Liä¼-‘EbLI£Pb%æä±Äœ¨Ó:>détp¢NW§ôG¹’ìX7Ý~¾a9JrÍ<¹áÂÜ­>J÷ƒ5ÃîžAßG9¬û5W¦u­±6ˆçærøaƒóþ(¼û®£ Îk×^ãþnÜ[µã…»·Žwocå°f[ÿuçä ™Íüt³R×bÖï‚(‰òÔÜ’‡ Q‚Úƒº.qŸÎù­Æ7Mbj»³ø’‹>†ú5Çä^IŽ’œ¨Sòï21&ªÄX÷ 6OæåÁ}7¥a‘Í® ÊÍái¹±a‰‚”›‰}zÃqéðÄAT`â÷#‡AÊ‚ÕÆ½«Óû?ïkÙû}¤qxUßû}$Rl&^78¿»7qìñ®KÔ+EQŠê ;?§z‡Û§Ö¸(à°(ÍlQ:ß®J/¯°Ý' C7’ÿ›ï¯‰‡ÛA ˆŸ:k ƒ”«÷q_ïѵ‰qêŠ6b¯F9L©?>S$ÆD‘Eꯞ)c¢HŒµirÊ©f»K³`0õ>Ûl”£$WÍ»o{w^?q ,GÃUŸaŒrX³mSƤ§ÆÛyºŽÇÛyÂå°fÚ¾´ZwþƯw5ø¶ãÇ»Âå0Q¤Qª¶DbL‰1Q¤U¨¶T:8Q¦ƒ«3e¹¾N>¼9/C?¡tñKI †®cØÆ¨0ˆQ«¶­CBÄØ ˜]Aä407:ÊQ’kvqû³@÷9°H( RT¤â`O‘ŠAE*ÿdAÅÆwÖF *6b°Í¸;ÒðÝ.?q líÃaŒrX³Mi7°ûÿ }2Ö;å(ÉuæY_§Ûù ¤9WrƼž¾¨™5qÏ÷7ÖÃ…æâðÕSà eÁfãŠr÷ÿfóe»¾à{”¢šÈ. œZ+.³ð€( RT¤e[*©¬Oã»ÍÍýq|Éjb ŠÆonÅ9JrÍ@õK;‹8»–@ÃoÚØrñµ{¨Gê•¢(EI T‹¡S’BLI ÏÚPˆ)I!¦êäØï“•ÑÜô|h-ŽÀ¸9¼qW RT¤k‘-ƒŠT vOC©€™ŽËM©§i\س.¡ì—çIÇg@¸È˃U-¶§Ô+EQŠjfù.[z³YycèÅ{¸FAŽ’œ¨SL™Ub¬{WÉä/8a:Ÿ›ö¢š Õ‚Ù‘á#¡Ã(‡u¶­™¬ïyìÅ„r˜òkh R~Í»týÌg—-]Ë{~¤ë]wµ,ï¡¿p\Ñ9ù‚¥Âé—mË,E9Jr;Íu5ëØ(ŒëYËF”£$×ÌS?âcF^>«'…Ë6’jsåÃYäS8e³Ð' Rl&>RqÒÀ°æÐ›BÃÉšCc¥¨j×Ü=:£âŸÜìܶøƒ r”äšyÃ6ùy›¬˜ÝªÁw  F9¬Ú¶|Õ$Wzøœ¿ÇOˆ/ëí>ƒ ™uL_ÁäÖ‚(GI®™7¤5ñQŸv;I ù¯p8,ä{I¤,¨H5ÂB[*©lOC»‡t|Šü¬Ï¢ZW_Y² 7Q_ 5.qç†ìÈ’Ÿ-º!tºóùSŠaÝ4R(ps%¿j$ˆQ«¦mggf¾“S܃¸¿×ê|”êÆïUø‡îKo;c,½) 6·Æ¹”®Qײ0HY°3qq¼éÜý)4e¸ÛÙ÷†ÏÐs™Ömµ®|”£$'êüädbLT‰±ö .ÿ±[Zœ\÷º!Ûo ºðüerôÏ¿wÚÙ§qFSkƒy*™ÛQ%¿& p†ó0‚¯,HY°šxtÙs”›ždï{<£½Ü·Ô:/·8f'Køõ\AŒrX³­;Ã.í\Š_{c×J+U¥·6ÈQ’uŸà0u:8Q§ƒëÃW| ¦?|CÏAqSº?ÌNè/GàÅ¡ T‡âî”xÎc»s¾«ˆFƒR”ø[p Åß‚TÓ>_'×è ÆGI®˜·¾»ãñêÌgþaÀScñKŒ¢%*ÔŸµ¥R¢BHµW?{*·HL 4îKÁW¤,XmütyZ£Gˆ[xaèãæ…(JQ’Bã]3bJRˆ)I¡>·,…˜’bªMŽ;lGE°Ïè$º¬üZˆ0HY°šx8œíÃÐÈð&‡(GI®™§f–lwët…Ul+þÁ6ÇVÀR‰…çy*1ˆQSDª‰[$‘SDªÞ‚-aŠH„ÕI²¼5Lnª˜ˆw9v²: R|Øö„U±”xÑ.Ê=ìsrͼվÄûns`Gf×åîÕ^•õá¾ì¤K£¦ˆÔl"¦ˆDX{WºÙ}ßëÄÁ.UãÊŒ‡AÊ‚ÕÆõû¨ »2¥ëúÌ :ñt]Ê…õ<ùÃpe+øÌ›ÙÙÄ0HY°JÝîæÀC-ÅÌטþ‚s“) ÖDZe¸­ß·VQ±ó¬?‹c[ê}²…ƒ]'2 RT¤êHÅ "ƒíiÜ—àt;¶ïÝßµûAv¾p¸¶ÉNÁ‡AÊ‚ÍÄaÒŸÿãå/à³s ¬SQ²`µñÚ‰ ç’% ˆ]=– ƒ”›×Òp7åzts܈"ù?´û/Á r”äšyêW AÂâP?ÎQ²`³±Kvã$òÄ0èè³d÷z¼XíJvG¹jž³ØÉ‡e{Ù1WÃ@Á` ëˆr”äšy®ÏóH{»»Ñao߇ÂáÇ0ïC¤,XMü ï¼Ñ[ÉÞù ¢†¿óa²`µ±o×— Þ,¾ÍNÇta9Jr¢N#kÉʨcÝ3PJµˆ®ò&ò îr䉼 F9¬Ú¶l{(B›8¸h˵KF9JrÍ@í~ö²ž«ÂáÕŒ5A…AÊ‚‰‡â„Z·GLëZ”Jͯȧð¶ÅéîrÛ~ÏY…K‡ƒ…zVš‹r”äšyW‚Ä™:œ6ïÊË.ç7ƒå0EäsZºD"L‰0þ‚ˆ¶µóUÝ­…ë]Ÿ·) þÉ‚ŠþË× bcäÏO`1£V'Ín^5u­Ò¼›ó†@:›ß…£(E5³º¦fõåìAW“ï¯AŽ’œ¨Óp6-™Ub¬=ŸgûÄf™³ø©Ä1iaƄǤQ²`µñ Wþqòš¯EQ²`µñ¾ü=°ß·L8/§˜8fWuøÑà F9¬³­ öôe‚_EV8° ò›È‚å0Q¤ ™"1&ŠÄ˜(Ò¨â˜*œ(ÓÁµ™rF€‘åÆí»8üÚmÜÀ HY°3Ñóñóß÷¦UEÌ‹E¾oõ†;X¯ \æÙ.) v6j§³­°»bÚ’+»œß÷°U©Õ™è ÂDçÌG4R¬6~†ôjì°#‘0û~TßLµt>AÊaÌÙ“ÚÖi+…ùkswNí­ül tíaZ£)lb¥(Q¡zæÀT)Q!¤ÚÀù#o\ÁžNŽ•™‰Q”¢:öD:ç»\—}Á<kÚ,l²æ]›a² 7–e\—IÅʉaðç¾|`b%¹fžvîLî’Ÿ?,ÁOO†AÊ‚ÍÄÀɺi„PÕ™ø.êÍ~À+ ÜÅùö) v6jWú˜žXÁ´Œ±²E®«½³* üê:NÉæ =u¾û¯WÇG¸îœ³ŒrX÷kkÀ:Êaí×nÌ÷¼)‡ÕG°­Í“Â¥í‰aðp‹™£%¹jÞ÷>À#<4WÆ[,hƒ”«{wnD_Ý.È=]Tà9Jr¢Nc£5u:8Q§ƒëtž×x3'7†QSDj  aŠH„µ ýužÌäoBß«jT†X¯jÁ`¥†ïBAŽ’œ¨ÓX«-™Ub¬=ÔÅ©q§Òbw©Ç5¬M5 R¬&žÝ^hv+>ƒÁwÛ(HYP‘jœÁ°¥bP‘ŠÁö4×À9¸kpªw²× Rl6^§mapËfê½n;‹ÂÓHAEbAŒrX5ísH:zJdÿ\"„(ûÇ黾ÙpÞÜù ª0HY°™8dÏ´-Ïžííž ;‡R8xÿ/Ï¡„AÊ‚ŠT}_R1¨HÅ "U$€T *R1Ø&Ž2o¬ÌÔ ¡²I-) %šY÷–Þ$ô8üö Ðwîuÿ­€ÎÝ£ ‚”«³ën0–`*zx6¦>=ófnöûæç £¦üš™Ê¯!Lù54£•_CX÷kkàqSS~ Íåצüš\ʯ!¬½nÝÙ?}åQUÁÐÎ̃ª(GINÔi%k,NÔéàêcXïL\ÙwúBFîŠ{ã7î‹9Jr²N#x3ubNÖ‰9öÂÇðöûZ÷E&»N(×+a²`µqs}ñžW+èáÇÕ‚å°jÛ}ÃGøî“ >;Ùdð•) V÷7êÖSµr/½;1 ‹<Ä(‡)"µ~ aŠH„µà]ÎÞlvMëGj! R¬6ž÷ç8àÎÉcÄû‹†ñdÆÝ„Úåk\ø…ÃWH±Nü0HY°™è{ü|áÐÃÏ¿G9Jr}¾SÆ%:8¸ÔÔ§/Žr”äŠÇ{ó\¦ÇoµÂN¸ü€®^–ÐøÁ6Æ‚–ããu'ÙºVAä§ñu- Rl6íD'.¯M ƒÉäƒã(ÉUóæíôLl~Ì¿p¿¿'¹Ë#öÊa”ÃD‘úâbŠÄ˜(cí ¨‰;\@ø,žƒ”;])–-jÅç«™ó‚Ýýñk›ç×ø"¸,¾‚8Ë»ó¬ƒ6 Rä&ÂòäÃÄëÞËÜ{'®n·ý7œûv&AÊ‚² lã,…ã l£T‡t Ôõ80¨<ŽÈ/ún­aiì ÖýšëÈÏþøµVߦõ­u€2oyf{õ:8lÞåç&£%¹j^êTèMéK“b\ £ÖLëœÈ@'Yá°ƒÍÝÈ(HYP‘jä8l©T¤b°>ïóödÌ>°Ä3M1ŠRTgØ’HO_¥Vb»!1ò3p1ŠRT3ë>¤ÜÍW‚¨‚°ÀDa²`³Q=M`r9î»”ƒÇ޽;,¦§%Žà½/puƒ%9Q§U6´t:8Q§ƒkáÙyí›/÷Õî{O&ÂßÌ–÷(HY°Ùx½Lá{OÎzË~çGí ±ãâÐÕÁÜló`;ÇÔ#ãòb1q> Vþ ƒ”;gÅFëð^Å´<­¼žóÕ.ß_v¥p0¿ËË„AÊ‚Íįóf[ÖÓ|ê‚—bö…Uü¥˜ïïäù¢±6¢çxò”êÈUÙ—,Wë†ÀÛÎ]­E)JV¨%Ül…ˆ’"JVèuWc”¬Ð뮞ëU…|×OY) v&vû–ÕðK) õ®Éze Ê@¢¼çttÈC(A¢F6à%@Ê‚®S‰_¶"Ý:óekÄæûxüþø5í^ÖøÅ6s¬ ÏÜG‡½å?õ HYP‘jx˶T *R1¨Hõ½ P‘øÅ¯ïˆÚЛƺ_sÍîýñk¬¾ßóÑ3áÌ;:»+Û!¢ eÁjãï…RÀ£ÿ‚)>21d*dz*aŒr˜(RwÉM‘Eb¬>óJ«˜Á>¦v4¢6ÐĽ٠Q@‹G\ eÁ&õËÊbw_®î+‡QEJ3Æ!c¢HŒÉ#y&‡sòXbNÔùÑÓö¦N'êtpíí¶##fäÛQaÇ·£(HY°Øø)gïP*üM,ÞÆŽÑÄ0HY°šøykÍV+×_ð. FÓ½„Í'<Ý) Vgíúv«W±qx/ü2£ eÁfâ·uºk ë_WÂ/ Rü“¥L¸ËF *6b°>ÆeHk¢æ ÓÞ S;¬¬À_Ð>s-µfý`Û[ËÛ¡ëçÛ_˜=üZ¿µ­ãV£(E‰ —”BH‰ !%á™DˆÉ£1Q$koñŠÄ˜(cuß·Ä„30ġ„AÊ‚Mêò»¢ìÇÃ-ìW”}S)AŒr˜,rך=m‘“EB¬Í–gŽãŒLv‹¬ãŒL¤,Øl¼ÜV÷9±‰ƒ0öçv¤,Xm1®ÿ9W¹? R¬&n‰ÒzªXxcúú¦ä(ÉUóô@»wq¶ó±FÜìô`¬ p¹;äÜ­uárÁÚ. eÁjãq½ƒ±<Är¾]•l¾á–‡ùŽ) þÉ‚Šz]؈AÅF ¶ÇxÝ»,éìÚÔ†ØÉ*é1ÊaͶ.¨¥Úy°@Ï ÐÊÆ(JQ¢ÂOF ‚D}j£þ}¬C®êÔú9ÃßaEÐbïƒÕkà eÁfãüÑêýnÉêíÝ${%9JrÍ<µ/ÆŽ ÖO7.î^‰BI;—5*1ŒrX3mu¦cÒ¥§ô –·QìÝòõ®.ª(GINÔ)úðNÔéàêc˜?œs”D ^ b”Úiýæ[%&ŽOÓÚüƒå°f[? ×/a®* RT¤â Q‘ŠAE*ÿdAÅF?+6bP±ƒuÆ-ÝBám(|=–‰E)ª™uEÎáÚØºÞmJ(&yì +lÅR¶†(HY°Ú¸ß鿜£«abìjàu™0HY°šxt®™¿E´`b‹´åœ9JrŠNè{*:!§èôûº#炜¢ÓÜý:îÆ½‰ƒ0Ūþa²`µñζD‹HÛçÊ´¹âé‰AÏ%ÆŠ÷c¥¨fÖ£o͵anóòMxvÛª–_íŠZqÔÎ*ja²`³ñºo'\mÚîzƒ»ü>q½·|G ƒ”«[÷¹Óf…z(Ì)†QSD>¹D"L‰°6þ}håvå ¦W dO>ÊQ’uJw8dbLT‰±ö x福S^àö]ôædÃØöU« [m(Û>,cþ†§ ¢h屌EAÊ‚ÕÆã£}ʊǶãzQ²pâáCÃŒr”äŠ}ß;·®c~ß‹ÚOmý^Ÿz†*'FI{1˜AŒr˜(ò“Ò)Q"¤êàÏå3bÖ+ðû7'Ì*×ghfðcƒloƒghb¥(Q¡V˜$êCPõ;>7}¿_þ™?Wþ¨pF@"ç eÁjâ¾<¦²ë½Ù¯n‹ëÑumè2yCCÁÞ ÆÃû¢%9Q§1cLNÔéàÚc`uu—czS]pîrLƒå°bÚþ>—TReÿ¼}ébþÐ+ˆ’·ü©‡AÊ‚ÜÆpßÀ>óF׌¹1£Iž2QŽ’ÜŸ$'Ûç¯ÕE9Ù>¿ã±/K÷é(ØÀ4qLqXFê•¢(Eu†iB†_Z()Íh8¦AŒrX5mí¼@_Cá ïTö> eAEª´È»¤bP‘ŠÁ?YP±Ñï †AÅF¿3¸où¶gËù/²çÞŒ¢ÕÌú>*B¾GWÀΕð=º(HY°ÚøÝÁ#W6°ï#4òm`AŽ’\µo_¸âZèoLÌ‚[+}£$§èt«£œ¢Óöíg·B¸ó…µˆÇÃ(‡)"µZ‰0E$ÂÚø;Ö?^Ó¹!!ån•tb¥¨bÖñ¾ªáöñYëžç}+œX0Þ·(GI®Ú·\ûA8¯sl«3Ðc…ßã.и‹¢QÜÍ a²`µñÙæxŽg‹–ã5ŠQ”¢:»æÀÛW ;®ë[à%oÉ_ö.Ä0Êa¢H#d‰Ä˜(còHJ!›g(1'%æDÖñUK§ƒu:¸:¡Ï¥«Â¢œÀÄ(%Œ¡W¢ $Ê{îáyå!H”÷ôðò$ÊCP›çî±Ä]úk÷º@1ŠRT±ë\Þ®ZO>z<ù) V×Ë™q§‰*¸ïf4/8GjãúÔ‡AÊ‚ÿu¸çÀb nam-1.15/ex/ts100.nam.gz0000664000076400007660000050250706610761064013512 0ustar tomhnsnam‹âMb4ts100.nam¬ýËŽ.˲¥‡õù»­@.üqhSM XÐlžy@#xTUXªÁ·WfFø%<†ù0³ÍÝ©Â<ù­˜_ÍÌÍ=þí_ÿíÿ·|ýoÿ8þñõŸÿñþûüÇù?þ‡Ëÿºüüëÿò÷ù?þsõŸŸüûßÿTÿ´þüÓýïÿ×ÿø÷ê_Ç_ú?þ{ýoÛÏ¿ýÛÿùÏú?8ýþ›ü—û/ÿñÏÿVÿñþóøÿüóý÷ÿüßþYýóüóÏÿëßÿþïÿùøÏ÷?þÿ1køOÿøÿ¿þñõÿûÇ¿ýoÿÛüû?¾þíúõê6üGÿü·ÿ½þ«ÝôW‡é¯NË_-Ó_¦¿šL5›þj1ý•ÒôÍ_™Ú~1µýbjûÕÖª¦ZMm¿šÚ~5µýjjûÕÔö«©íWSÛ¯°íÖƒò7›©åWSËo¦–ßL-¿™Z~3µüfjùÍÔò›©å7Ó¨ßMm¿™Ú~7µýnjûÝÔö»©íwSÛ禮ߕ¶l»Òô?:L-¿›Zþ0µühúÅÃÔ?£éS/ަ_ÿéI¡ÇÝðÛ‹&þµöSËjø©Y³rmþzüùëMûóÏtö[å_Õ_;žRgD/Z³¼,»þü£ý˜EªÚúkÍ®±ýoO?]œ×Ðê÷ØEkvýx>ï?ß´YðiÚüÓZ6uÇǧ߈ó\¶Ö.ËïðP•6¿µ#ZŸ¯ýF][ÉÚ¦[ï§Æ½ß(Ço£W†_¸Ä-ýéÓç/­N Ò›gwMû¬ }´s¤¿&¾×šëïµñÀÖïqü—–àWç´ ×ijá8NÝ_×þ^[Ç…,vSW-ïÚ™ü<±öw>Ú‚8¾6‚ß¿Ÿ´qüš®÷߫뙰?N€ë箿7o÷ß«[¢o^5Oѧ®vlh_kº‚½~î÷ï'uÍ2ýܤÍcº ÝÆ^ytgn†ò ?ûc…{öÛê5În㼇ÚÙšM[jòô‘J¶è›×'bÿç§O¿u”¿ïX7o÷ë>]ó¨{|óÚØcûó4u{‡9ÓÜÇ_?7ÿK3eZú«Ù²¦ßE¬D§l^ßun\måïug¶éŒ—ÜßehÖ†:.<:ϧ³Û¸sóë/ñg÷×é@<ûmýŠ2>Ý¿g;Ä«®™´óØ5–NúyêólM½yU~ëVÏsÿïÉÈš}©Y ^_?÷û÷‹6éD˜÷nÿÖ·wåækâ¨Î Y•.Ü®vùí¼Å¼ÃÜ]âo<¼*-sÿ牟ãjà¬ü½ÎX–®µïŸûM,ꆦü½Ýœ­o C–½‹šDßkh/g7û6¯&\ûy†¯¿«ìªFÿÄ·¹qÕ5j—•¤Û‘}ÿ½úßgé£ W³OdÕ¹q}d_ÿÖ«93zÿ½’¾˜új_?7÷å±UçæÕk#­3wå~šÆý´ìºtž¶ÖÒo­—µk÷ï™;±nÝ‘HW‰›7ïïëï²°i;m »7ö¾¶O—mÀ÷ßëQK,Þ¸ºe´½±‘6vo^z´yƾ^fîÔýyæ®Üx4ѾýNüM¸íXºÿ^Ý”¿W§»ÛÚçYzbÛº<ÛR·__u&Ön\ZthþÎÜRZç®.ÆŸW7•¶³öOÿ÷غzóªCBΓoÜ<6÷±ûs¯uíþ{{sŒ]=ljîswðÐÖ˜»j?Ͳô<ûÒoMâQìkßø—Ü_Ï}WƒJ¦ö?¢®ó~týµ£_h#E]7ènˆ×ßk}A×ýìÊ¥}svþ%÷øÇ‡¹¶ãþ{õ”$Y±;t^þÆý÷ú¼ì·Æ1õûžÌ«WýìW‡N3^m5õ»’Ù>w®I7o^TŽ¥om;­ï¿WÿûLÞÚÇÛS¿ãZ´ôlqnn^¯“ cá/·ÞeáæÕ4"Ys£ÿó¯Ö=»ÿrUï¿W×è¶7Î1§ßùçïÔ8ÕE²]Fî¿W;¯5çì Ñ” WcVåçÔ‘Ìôs骥®àÍ«[Ëøß¼æ÷ÏíÔ¸Ú9/¹kÿçNÒZk·s^;Þ¹ýk?wô­ƒ©´á_ÿú|Ο°à*/½JGÿë?þÓÿüÿüÇ׿ÿæôÿí§ê÷¶æ?ÿqþ_H""oÈëCм>ô÷Óos¡¡Êù,·ÉIRä­y}H‘ׇ’¼uýï×UÝëÀ¶æûÖð?ÿ1gy.H"–F—G ,@Jë½G„¡õúÒz}èžOÓç9ŸLkD†®Côw7ñêb$Àƒ~Ÿ}C|úÌ?îÂuIö:Ñi é¾ðþÏLÅ"$(É—u|Æ­ ô¹ï×ÿóŸ,ÏIÂòö÷âò„å(ˆy›½³61¥"‡OZ#&Ù³Ï?‡ÎÎ!”¡«ŠÖ4À=Œ˜dÐùœ²¦Msþ¬ÇüÌ{5Ðq¿„ñÏÉ"$Ë;Þ6qyÂò”ä}·ùR"îŸéÔ@ãý>È?ÿ1fy.H"–w¼W~.@Xyï&7ÈëCм>tϧyÙ¶É»ª,Ÿí§4ß7Ê t* F¹’TlªV~›C´ÌË=;`†ÔQv@$(É[§í×3¼jÇ÷¸ÜoüüóK–ç‚$¥&_Ýdòú3óQÜV°A» 0Éží1„ˆ—2´Ð5Àß-‡† ’tÛ´ŽåÁ¶Ëd¨$Íùòàƒ$)òÞë¤A^Räõ¡ÔäSr‹ ÑÏÐ0×pµfDüövY©°>…õ( ,XTa 4¤°œ?•ÍFß)Aë¼oV|h˜w(<ˆø(Ì–{(¬¤VÞÖ‡?b[DÏGonh¡Iù%àlú ‰@·MÛ8›÷ûá\7ßËðE„¸‰dȺý?û<Ìm{ö¨)|(²~‚u1`’Aûò9|s4#“Ò`’º 0P[@Z@Y¹Ûy_êv6¥p2’Ï1¹1.FL2gûl«uw¦\}æ[¯’”LÚk“L¾DF´–Cy 0Ùœ{ÃòŽRV“¸ 0É ã^¯M.®Ôˆ)žHsÄA¬éb$ÀÜڎϸ_Cá·æzœþTÝþÛÏ.÷û"ï?ÿ±%q>H"–÷H¾[åË#Òzk¤õúÒz}èïW6Åããs^ôcÍ¡…eu¡°’”lšRC<™¡a&'˃ˆÂÞ ÖG °>…õ]Y(¬@a}$uÿ}¦äpüRJ[¹³äb$À`mï ʵõ¬­Ï¤¦^çy²FNCÃ(“tDüöžTXÂún±·›¬Ïà6ë3iœÓŸöù ͯ_Ò7R$è–wŽËù›¸êß}´ÿ0dz'u.FÌÝÞçô9woprÞSÛ¢ózo¼{hewî¿?…½Û™ ë#PXÂúAÖG 0S(w.ç‰sö׬YóY³0"~ {¯6TXÂún±÷BÛ¬Ïà6ë3PÛøv¨6Â@m„I Íê󇯿ÿ̓Z&àtÚñÉ„í^“ –ó‘/z/¯ _”ͱù"#j{w$•ÖG ²>’ÛùáŸØý ’Õ?ñA’Mçtº}š›y'‹tƒˆø‘_c¶¿>%V3„éïµ™öšÿ@¼@2a}úÀ†lÍ´î§Ç©mmz¹ NFL2ç¸{Þ<Ž¿™ó^7 ÓyhMÚk¡q2`nsÆÏ¼-žÈ®B´ÑöŠìœŒ˜lÎ:­Öèdh˜ïj¯ÀɇˆÂÞC ë#PXÂÞ{-ÖG °>’»;×ñBÅ(NÍëäLjÂÞC™ ë#PXÂÀI(UF(0iLUõÝÿ¯Te!Þ¡‰’©ô!âG0`=F$Œ ¹·k«5o -¤Ì€×é‹“‘“ šë=ÝŸ›w?ÉÐýTýÛ‹û‰’”l²–È õßkÞšÙf@¼À[ú’ð–D€Üªû8Z㟡a”œ&Í<ˆø(ì=è©°>…õ(¬Ca} ë#©ûÏ4íIÓé\×rhÊfDÛA ÐÅH€¹Í™?ŸË¹õìÍó#Þ_¿†Ѳ`uu1` ¶w—Ri}*ë#©Çù.ë0œ¶ óêåЇˆÂúUdPX µj-⪌0Paò¨W›÷L«MF´V#&™3o×m9wF]¡@ÞÇIjMrd‹¾ÇÁ´YsõCèeà ÁIJ&­ã}ÍÏk=ºû#hhÍñD£ÛÃH€Ú@·Rm„Ú“›ºr¦“«Œh# 8#&™³=C¼~F3CË!x¯oèÊ”i òx™QgÈãù ‰@ɤýž«ž€?C ñÔˆßI*6MÝŠpì“u½Ç>>H"P2é¨HÞ=‹öÊ„h«Ú*=Œ¨ L$ª0PaRSŸ£vÅYqçJ2So©sÎý=<‰·—¥Î:"~ ݺú’Õ'roËìõá–Ï~AödKF´õ$5\Œ˜dΔ6Gi ¢ý ˆ]Œ˜dÎr/ž¦3ó¡…´Ci°¶û ‰@Ŧ­j@¨vElu1™Q%àŠø ‰@м÷€0ÈëCм>¤È39r>H‘grä–%mA–Ê‹¡…~—p‰Úä$%›¶§sÚ?)+Ц©t z™´¥ 3£룅ÒIRä™JJ|"Ï€-ûs%7gHó³ÐJî‚$e›Öãì"(ÈŒÚ Sàƒ$)òÞ}kׇy}(µøY{k¦¨Œh)ä­y 0·9ëç™Ê0­C*ß‘çÝIÊ6í«– Ts:?/"v3-àL93êse$(›4Võ˜¡AÞ²X¹ 0Ùœ{C÷d›Öäx¯ ©©:à¤ø ‰@Ù¦{|;R–ëºôËçÀÑTfÔ¬:8›òA²IuRùÝr ©œm»Ie#j{ÇÍTZÊúHjçmÔ^:ÔבĀ__H\D Ež©ðÎ)òLź-ÝâP4W¢åÑTõ0`’9ÉϲT† £¦(€èƒ$%“ÎÒ¼dRbÔý ™ä‚$Ý&mŸÚ²ÕeFͺÈIRäõ+“y}H‘gªn!“ûèƒy&÷qû 4÷«€´lS?mŒ–•u%Ïx£_ÚëåÕVÿµÀòêƒ$)òLu˜>H‘gÚo[È´9ù EžmsÚïÇà¶ ¢yÀ¡v1`’9Ç]÷ê ç·c¿mµÆ £NY{òAZ“«í¼¯.ׯ<‰¡}¬7 [ö%3êQØ.|D EÞ{èäõ!E^J->ׇ"ï;SF´©6&#jQÕF¨0©©S톩àch!Í §˜>H"P²i½g¹#©´¯w0âÉq|íÏîuRöG6î}¸²qÑR¦ çb$À@mïS!*­@e}$µó~{ ¦Cý¡…´é€$¨Ø´¹ ýпG68²ÊzP ެ|D lÓ=[=1i†T¯Ĥ>H"P²é¸!SùÀÐBÚ(B6¹ ‰@ŦEó·t'íü^Pôr~È=tŸ»ÒÊrl<4 ˜ƒjFÒIÊ&=W=S¥U´¬z>H"Pk“§jãHµÓžð%Cê(á‹’”lŸK„©ª@Z“ƒ%ÂIJ6mÏ¥ÜT5õ ­ýÖCÐ~Ï'ÓÙéÐBïeOŸî.H"P¶išf÷qÜþ±Á™D[)›çb$À$sÎçLïçQ t§ óïüϽŸJH@//Å IJ6M‹¶²*èS?GK2ŸCÃhAÖk¨: 0Ùžcš|ãûšŸ›s?Hí¢—î…$›.ïÓîç~Ck=Ñ-‰ãŠQ=›×D÷Byý#dE^Rä«ßa™ôBŠ<Û2¹>–ùMÅh-FL²çÎMšò™CÃhÀ+ïàd$Àd{RM“91ù ii°dɆÒ䡽ÏIºm§;Æ´‡ßÐ|x<‡1§x¦y†ÔHLs$(Ù´­“5 žˆÓ¿"'#&™“¦,ÅÐBïa§„À^H"ÐmÓ4È­°Wðò]g ↆÑÚt¬‹‘SìÙµZž¶ï6h>½ÓhÚÍmé+F[·Ps{ 0Éžýv¦=[ìt,çäÝÇ~¾H½z×üïp~íûÅJ‚)ªZH“|$(Ù4§<¡#@˜éЪÔUh>žs©¿c ¤Ê›Ÿ’tÛ´÷¢â™kZ‰LË×ÐBZ“ƒÉîƒ$e›Žuñ޽íH ¥£É¿=ÝY›îJë[ºê½¾ÆÞøÓ Iß§š†~Lbùø6¦]$ŰHŠ)-9ÅZ’aJK2ìï ;—«dÞgZ¢À7;–9) Q¿vŸ¿>Û]êbÆ„}O´ßöX^¹™ûMD㕉þŠaÑ Ó,"¦ˆdXê€q¬G–m<þ`Û3-5öΩ©#ÒI ˶çáhÉ¡Áî¡ Zv·“¦ˆ\c"¦ˆdX™>A3½Xnì×k§*ÍäÇ$†¥Q2íQb]ö~S½×þ>JBT6ìgG§%lÞ&G+OêÊ9…°£]D "ïÔêcnì7Ñ0ÎW¦á+†I Ã"`›A$ŰHŠ)"ÁzeÉ0E$ÃòÞCߺ¨.땬Þ±,¿nÿXu~Lb‰šÄ ’bX$ŲÈûYÊã•{½©é—Z¯þWˆ’•†Èú©‹Ÿ©O14˜ºC¿ÇGIˆ* ¯ÛYûñÊ×ÝØoÞdÜ®ÄÉW “†E¢±oI1,’byˆÌ×·°#kh±ß$ëhû>JBT6l½¦ŒsåÉØ©mkpåqbòm÷'{o¶Ï8wçÜ0u­!FÐI‚òÀðåòå1ÊCž&×G)(ReTÌ‹ßÙL”ÖWÐvA <ÐW\ƒ <áÖk“¡ù…ÛQyT,õCÒ¡ÅÞéážçìÄ$†eÛ¶zk0û{ »~ ¹pkpbÑKL$Ñ K°Áe Ë2¦-plù( QÙ°érUœžbÂôö€ž¢“–m[kÛ¨ƒ9´Ø©ÍQl›“–l;>ûðÃŽq±;¦Ã•qg#i³´i³³Ç4ö„0RL”6a(ë‚$Ay %¸<Ay ‚òGÉõQ ¤TË´Û}Þ¡¡@ù`Ï-wbòi«VOÒÛ‚¾©½×ϸ=nèw!;Á¶…›ÃEIˆ*f-‘u}]N·sž U tÎ}”„¨lÖõý›o2<¡IÙ« ïäa$À m ›¨6Æ mŒAÚ¬ÇicLçToÛ Ê*{#܉I SDZcx'¦ˆ´. f=tbŠH†åA2¯~O0A“#@_ÐGIˆ‚ CCúTZ}¯.…˜ã÷s9ðgnè·´sü­¯[‹UH"”f —Ç (A¸õÀzhh>FáöcTˆüU®RP!¥òÀÝ—åt†[´Y ONLbX¶í¼ªW]ÎI‚Þwlz.€’u™5þõù,“;ÀøÁªÁvòW Õcë®—’•ÍšÔ×sõ½¼`àÞˆ¾—»1‰aÙ¶åêiOðôCmývÄ¿UG’@ ˆ$ ¤îå ’ôR¢ B°p ‚úTZ½vé­c÷†Ô–ÀC×EIˆ‚ A[p ‚ú”[}›ûG§ =V(}Ýù17&1¬˜¶8²ýCCiÃ$íD lÔ^õ—-›Y uĽå¢$De³ŽÊ?±%( ¤þðO¼”„¨lÖ¹õ— ìiܸ”Ùu5|˜Ä0E$ð–-"¦ˆdX9~>¿ƒñ\•qõ{Ýr¬ŸpS¢ÒGõQÎÞ²=Ž×e9§5îK7G ý†©®9t|”„¨bÖ¶ôÌ‚s‚ÔŸ‚;³’•Í:?£=ŒJß-A¤íÆ$†Ó¶~ú8Ó§j[j¤@êOÁæðQ¢²Yc5+Íî|¢ôuÎK'&1L –7‹H†)"VÚ¿Z>ÌŽ}¢ô ˆ“¦ˆdÛ‹"’aŠHëf6MËðï§iíW*Aÿ>QÚ^ý{$ÊK—Ç (AP © <AyÖàmZÇËKŸ´ Øï-ýñüÁ¶"ЇI Ã"ÑÍUƒHŠa‘SZ¬7––d˜Ò’ Ë+Àª>ÞÚ]WõQÕî¢èÃ$†eÛ¶kQôÅÑÓ^yHƳ™BéAö‘|˜Ä0E¤í Î)"ÍÎæ³:ßNLiu¾§:‡öM˜CJê$Á’’‚ý– dÔÇ ÒêÒ¤}K²—›ÔO<öòb>JBT1ë¾ù»h= ŽZ+L¹à¤ÕKIˆÊ†W-§- 44Ô¬üÌR¹ ‰@Pî\ƒ <Ay`(qy ‚ò”†Ä×ßA­ý^%!ªØu9”Î5w^ºg²0žºuûáž ’”MZÇ-|œ÷ súv ÓsîзsbòmGuâd=pJºÀ£%! *D+WH)¨R¹áÏ»¿\©ßù¼¢<“'94:Y §ë£$D%³–:QφîÐ@ª×§—’‚Þâõ1¨´úAÒ¯pneìrÆAwÁÉåÄ$†eÛ¦j37g±nJ·næ>JBT¶k®s¨›(ý4.NLb˜"´ˆE$Ñ +í_¼"küfÔ•zE.H"P1é± X :2öº¢«Àxðaòm ¹ó‹ö•ã^ÚÀI‚òÀ äòå1Êc©(APƒÊXVG54˜z«o .JBT6l]û1Àå͉I +¶]Wš«â7F\X¸,fL —E'&1¬Øv}“Ô¹š®ó½sú¢ªu©–6цR3Sx)pQ¢ B”™â )R*7üú˜ÕÖ2ÁŒ©ÑžÕ>LbX±í1=­%x«þ­–îôôaÃZÛœE*ëVíMæ4Z¢ô†Ä»““¦ˆd~œ"’aŠH«×¸ÞϹ{¢Í›Qwkι ‰@Å$ÇQßð„ôs xé£$D%³¶Ï#,°N•„éóŽB'&1,Û6]¹ÛÉÐPzCÂ|““ÖšæËÀåÓF>L+&Jw‘`bщµ bIJiK V`«ÓȉƒÓÓGIˆÂ Y¡VÈ(¬ÐZÔõ¤¬KœÂ ÍKÜZ6#knñfÔé7#$¨˜to ¯[UkAý¡¡tGº÷NLb˜"Ì/‹H†)"–ÛßúY'x^•(}E„çUNLbX1­Œ,0°ðÆr1êš·$ÉCÞ•G!$B¹ÅÏó l”û§rŠÌu.‰Ò·/è91‰aŠH0¿,"¦ˆd˜"Òê^:1E¤Õ½Ü?'I¦)¶ÝØï2€Ulsaòm÷C?Î@i¿OBŒçøC‹©- o'&1¬² eèú%L?‚¾Ÿ“VlÛÉI n’~B/$QúA/ĉI +¦­gémvê;4”Và¥]D (t—Ç (APÚâ¹>JA”Ê£b¬oÖbªŒ©‘^ß|˜Ä°bÛý>³/±¾ï'ùµ%Ÿ÷cé»sxé¸)}[ÂK‡“VL»¶\g¶êøôØb¼!}qƒF%!ª˜U!Õì&LßÈ —äÄ$†eÛî£bÝ“€fS}2x`æÄ$†ÛNâ%=æõÐbê¯=°¯&1,Ûv©Öé|c$â‚ÎÕ1ïgÀ';òhLz%Êvn34”Þ 0—çÄ$†eÓ¶jË0»'Jï4¸e81‰aŠHæI+"¦ˆ´úí fÝ|˜"Òºù; @ñ6º“µo£.JBT±k!scgI볚ÜáÉ¨Ó /H"’‡G*BH…J‹?ü0¡+qÞ_Átz ç‡Ä#p¸'JuÙáp÷Q¢»œgÙç¸l/ì²s¬²½4µ<4”îæÃÜ·“–M›Fâ áaµÜÕ¾ÈçÜî’߯’0}ìÃʼnI ˶íf<ÍZL]î±m>LbXe[íØ²lïÐ`ú,…©M'&1,Ûv^©Mg6ä{_º{^nJ_üñšàÃ$†)"Y…‹"’aŠHk=Mƒ™WW¦ˆ´­®Ó_ŸÏcM°ÃW˜:$ÁšàÆ$†Ûöþ¦R¸…Ò7Ãucòiceš-9] 5dž¹( QÙ¬ù¨>cLôü`‡•¥+‡Ó—c scòmˇœ~.ïüÐvïê6 Òü¦þHó»1‰aÙ¶õá£1?¦`ׯ¹¼¦ol¿ê/\në7v—m¸6‚é"Á¦áÆ$†%ÛÆéŠä]Ñ76“g”@°\(½ýA¸ìÆ$†eÓ¶ƒ ¸ÞwJĘIZL7 úucòmÇc0×.cçõ‰jï<k‚­æ±`ú¢ ý'&1,Ù6}®ÁåÛK¿Ãæ~©4œm‰Ò{ Î6'&1LÉŽ‘ SDÚ$^˜uÝrbŠHëº5Õ~$˜kÐLÐïz€Ê‹¡é£$DA…àbÈ ¨A¹Õ'Ðãu`=É1(t—¾Œ¸‚pi̘úkpitbÃ*ÛNwFå;²]ÃÙ2ìcÅp%H˜¾¥Á•À‰I ˶Míš¹¹CƒéýU'&1,Û6_¨i’ ¤CÃEÄGIˆÊf-#9b€å¼W­a^R¥'Šp{ø0‰aŠHàOXD2LɰÜþ,ÇÝéåþæ§õòaÕ´;ØV—ãåÎT;ÜuaßW‡ëjÂô_ƒëª“–lÛ&Rr¢ôc@8˜Ä°lÚ|‡j¾Õx{žø²i3´˜êÆà&ñaÊm× ÝΖÜ'v›$cª ›Ä‰I K¶ ;ô‚óæ\®–tþÚyw€±ß†S×;Ø’NLbØeÛü×t¿ßdÄ.Û–ŸO›_‰çU[]Æé‘ÓucðHôÀªA$ŰHŠ)-©%ÕIK2LiI†]£dý볯³Û¶‚é/ÛܘİdÛxl‡K¶ç‡ÄÛ¿Qâ4^QâW “†E"¿Ü ’bX$Å‘`LZD2Lɰ4J¦¥žæ‰3̶rU˜šh…ljI K"çûkÿ8»– ž¦ÚUvcðHÔÝ‘Ã")–FÉ2N¤Nœ%}anÑúí÷d{úMTÙ6'&1L©¿‘ SD2,wÀVw]†S'¸r91‰aÙ¶ãÊè8'NÆNmL‰ãÄ$†‘×§º&õøwùÅ~〥éÂ$†¥XçÇà²n‹ÓÎQàØòQ¢²a÷û¾¶¹6<©ÛÝ¿×%! +Á¥A!£°BFå–?ë9M÷™¡Á®¥àœvbÑÀ·ˆd˜"’a©¶i« ¯Ì.SÂÔëóЭóQ¢²aK=§­›üM©?'Œ ’TŒz¼¸keÛA¶-÷ÓºŽB¸#¹ ‰@Ù¨}&Gp­ßÎy³ïCCi‡dp sA •V¿^U°e<‡†š•¾‚)Y$ÊQ:—Ç (APè(.APƒÒ˜Ç{ù¶ó„é/fÀí܉I ˶Í7æÊ·ÍuÑVnV u¹ÀÍá¢$DA…`ðr ‚úTZ½Úlµ•R;®·>JBT1ëX©Žy§@aÞÖÃõ ¥õ K]D (Œ .APƒ <[¹£‚òl¥Ž?{:úþóvmúž Ójè{:1‰aÙ¶ã:æ´ E¾”ÛX81‰aÅ´£¿Há9¯ÕÆ—›ëœ%kû¡Ô½ %! *kÈ ¨A¥Õ«”*hu˜RMÚ0¥ê£$DA… -¸@A} J­¾|^2È@§&=Gçô[—ù,\²—±ÿ¥`˜…JÚ[0 å£$DA… ¿¸@A} Ê­>/}£ ãš(ý)3è¹:1‰aŠH0è-"¦ˆdXnÿeËÌdå/CCisÖç¸ ‰@P«ïƒòåY+ úɘ®>JA”Ê£b}¸¯`0ÁÍuYÙ—0¶U¹8ð ¤Ö€ÜGIˆ*fU~²¹®'Qäã¹­ŸìÄ$†)"Y§"’aŠHkÍhƒY#'¦ˆ´FËþ)7Õ¬9Ñ©ã&E}”„¨bÖuöe,AZL[îa)’’• »‹ž])˜©m“>JBT6묆¡õä Aªï†‡¡‹’•ÌZ?ä n-‰Òý=¸·81‰aŠHR)"¦ˆ´pëxtwv˜AH:‚a ÁGIˆÊfMcw€!z‚ÔŸ‚1º’•Íš«E€M±¡T/.>JBTˆ\`®RP!¥JÃ/ýúº­sÿ«00 udÀ|€’•ÍZ¹"ó¢Î—®P̼hû0‰aŶ#•^×j5'bE¾yþZG}˜Ä0E$ØW,"¦ˆdXnÿ­ZîÍ)ÙDé-‚|&1L ZÄ"’aŠH†•ö¯Þ­3‡7¥ç"`ôç£$De»ö*–°ž—&HÝ+`,á£$DUfõ—+¼1Ý”>€ñÎäÃ$†)"Á¶ˆd˜"’a¹ýéGºñR|cú–†—b&1,Ù¶ÍS•åfAûÐPš§³ .H"”Ö.APƒ <–Éòå1(‰uÜºË E>IßFNLb˜",‘ SD2¬´½; î}Ûz®-s;ö~í JBTˆ"WH)¨R¹áïOÉÙ­††ÒoÛÂ0Ú‰I +¦]¤Ϻ‡[~1°æàNóaòm÷*l;oJoH¸S81‰aÅ´¥Vç(Aj{@÷ÃGIˆÊf}/øö—¡¡ô6„œ“Öšæ ÷}ìoÒxß”¾mâ!ìÃ$†Ó+µ(c¿Ç¡èel¼òø0‰aÙ¶³väXrrxRäÛØmšÅGIˆ*vý†Ã‰Òg ‡˜Ä°dÚñ™úKLú%Jÿ1˜ôsbòi#«gƒþKÆÔ]ú/NLbX±íš N·ç«|!˜ŸpŸIêÞÂmÆGIˆ‚ ÑvÁR *¤Tixòåt˜,L”ÞË0YèÄ$†eÓ¦y ¸rÇò™þıT 5ÿ” Õ  ’U™E „ñZ•0uŸÆk•“ÖÚæ<é<–s $A޵rÍ'ü‰ÒsPÐutbÑ֪='¦ˆ´Æ‘ fu˜"Òê„ÛI\èÑeLݬ¡GçÄ$†eÛöës÷^Gp¿œ,ãÉêÐbªHì ú0‰aŶ…lQ;2Jð®0U$Þµ}˜Ä°bÛ9v·)¼¸Þ2ñºub(„‰é©§201í£$DA… Å2êcPiõÇ"g-¨É˜ºËãE·I kmsþžŸÇ"g­qɘ*.rNLbX¶md$ƒL̶“«TÐcJ˜îÄCɉI ˶Ý''ú¦¦.% aêÆ$†Û’‰™Ï S d>ݘİlÛñ,Yvph0}W97&1,ÛvŸ¸èý²º¦¶$Èêº1‰aɶï½tu§™¾±éªq ÓüX¹X°]°s¬%Ó]ÞâÜ:¦ÿÜ:œ˜Ä°lÛzß 7Éý­Uc2xh1õ×à4ubÃ’móç³ÚS„CCé6 öœ˜Ä°lÚD>Iƒ¢Dé“FENLbX1eV`0ϹÍ|ׂ]µ*ÎÙ6ïW·cô¡ÅÔنǖ“Vl›"#r¬ä,,Lß¡êÄ$†eÛŽ‰ IèÞÍǺ<§åó[Ö$UÆÔŽ-'&1¬Ø6’–„NÉRÍœJ”¾$ÀåΉI SD²#)E$Ñְ³nNLiÝ8–ý±Ø*é ¦¯ лsbÊmd%Ðr,$Ũ`ìã°ý×;3é[ Ów`8¶œ˜Ä°lÛù°Mî‚$ç±mškëvíÛÆÝ~h(udÁ]ÃGIˆ*vÝÁžoÓÞçG—Y6¦ÿŽNLbX¶í¾æè\EŽc&qè€ã¯Ï|¯éÝ’Óç¯Ïv÷ÛªuÀ¯û3×i*?&1 ‹œ4­/’bX$Å”–Ôò„¤%¦´$Ãþ¾±qýÛ¦\ÚæÄ$†%Û¦{EvbóT7‰¹%¿ã¶#0”3¦zɰ%˜Ä°$rù¤í÷Ôs®/û1‰aX$ªe0ˆ¤I1E$\‘ SD2,‹<Žßûþ;qvíØs®k?&1 ‹D¶DR ‹¤X¹Þïš_ÓMÉ@Ìsuœå…$AyÀõçòå1·†æcn?FA…(£ËR *¤TVxgÁæI‹ï~½Çy©B?&1 ‹D^ˆA$ŰHŠ)-©eøHK2LiI†ý±s ,¦;µ-.¦NLbX²m» Œ~AÆöeŒÉŒÍÚŠ»Û‰I +"·ß5á§1pÖù7È›×*îõcðH4& ")†ER,’£\fW)cjpý9'&1,ÛvÖ‹‚ÙyIØõk¨»á¢àÄ$†)"AgÉ0E$ÃR쟩ʛî„]É0k*ÆGIˆÊ §ëâ¤:%Ë/ö›dZŠD&1,·þú˜ÚÖP-cšK g¶’U «w6³#“0=/w6'&1,‹¼R¥‹6a~OçßœçY$z ‰@Pžv Ú•Ç (Aydìku„av'¦.x`¸( Qɰc,WÑÌ1Ð ‘ïÖ·Qš’•ÍšŠYÖèøf~{Xý<öË($(›4?Ünks,㈠Žôòµm•ÉØS§×Ð`÷¯õÎ'&1L :À"’aŠH†å¸ë][úÐ`×4³ º>JBT1lÜ®úq–…Àœ…º!ý˜/.JBVhÍ4ú(¬Ð¼š>(óᢰBóq=¸ê ¾oŠ|û³½}”„¨d×9Þ3Åäû õ;½ÀSÐ9wA <0¹<Ay ‚ò¬'e.ʳ†^ç´üz½çªõ[5ÿVnîEŸ‹’•íTMFšdêÔö8}”„¨l×úpˆ¬áPÂTgº>JBT1l:þɹÕ=*š•*ØUÃç ÎsY{WÂȧÞÛÍˉI »lÿú|-ÉRgC‹-Ú¦ò{nLbX¶í¾~剾©*è³ØffÒäŽvB<°URuŒAâS5÷îÍpJë%‚uB <°^py ‚òå¡èŽë£H©2*®\ûä76Ï“Ó),zµ ¸]^JBT6kyì’,Õ±ã±o±¨°`÷ãWÎäÜçîD¹ÍBiÓ ¤6D (ÏV¥á„ <Ûix©ßzëê£H©4*Æqí~üÐP³ÒW ÐpB <°Ìpy ‚òå‰Èå1ÊcPSµHÛB㩾\¤}”„¨lÖJBT6kœVG~{h1mnÁ¼’U [úÍc½D靿À`ωI kMó‰óT `kº!Aª‹°‹’•ÍšÉSÜ0{•(ò¼6}åÄ$†eÓ–Ê4k^.AêàÀ†¹( QÙ¬­JÂØ ¤†Àx^º( QP!ˆ\!¥ BJ•†¯V6¿†R¯.JBT¨~м«RP!¥rÃs7ÁL R'L0ù( QŬ+ëܾ–Ïç´‡CCiÙ,½º ‰@Pèb.APƒ <–1€òå1(‰‰|ÏfkE¾ÆÙfkœ˜Ä°bÚ¶bëe­– šòJ?v…‹†“¦ˆ´¦ö˜"Òºú6;SQD2Lɰ°ÜD‘o¶^®“¦ˆ‚E$Ñ Ëí®gÃÎF–_ Lìlø0‰aÅ6öU!ˆ­öê? äב|0 f°¥ÿLa;1‰aÙ´iêîCÐÉNêÅB/ÛGIˆ*fU=f=rHêeàþrQ¢ŠY)m=ÉÎØïAªúÁ©vJ;1‰a­mÎCâu^ª•€V 5*JBT6kÞú¥p’%Jà,sbÑ ý`É0E$Ãrû/ï`p3Ûî/Å;ý•m­N¬±@‚Ô!ƒ%! * écPnõ}²¯8éó<o{h uK‚Ñ€’UÌb_¹ƒ™‡í¨vMs©H¢ôé…wM&1LÉ*è‘ SDZëõÌìø0E¤Ùÿ8*GØzp” uㄎ°’U̪Ü*sµN¢ôшÝ*&1LÉÂ2E$Ã‘Ö °Á̪SDZÔýs{– xh u ‡A»’•Í«]МKù$d»:1‰aŠH0e,"¦ˆdXiÿ;+î:'ØëãàhÂã©] ?|”„(¨Ì1.APƒJ«Wî=Ë¥ ¤v0ôž}”„¨lÖR­lætd¢ôI‰×6&1LÉÂ?E$ÑÖ`sOuL¾ó´}ÛH¢úpûýfg~f?´y”ܘ~è‡;À‡I +¶mÄm.{Âô$t٘İlÛùYû¶A—,aú¯A—̉I +¶Ýgùoƒ§åû]ðÔ¯g·§åNLbX²íø°ºÃ~˘Ú$°ßœ˜Ä°bÛÜÏëÃdo¢ô4Ìö:1‰a­i¾,ñ1VEæ´\¢ô=ºNLb˜"Œc‹H†)"–Ûf_¸Ç“mfߜǓ͇I ˶-UJ•yºC©3zâ>JBT6k­Î‹ÀŒÁKÈ ©‰¼‚¸( QP!:áã )R*7ü^?a_÷‡f&t_¾±þà€)ÇDéaÎщI kMóå*ý¾úèsýXºíø¥[øœ˜Ä°lÚñðp™§T°)àr9@ÃËéÁÊ:ñzêÃ$†)"A;ZD2LɰÔþç½Áû2çT[€Nƒ‹H‚Ô®!>JBTˆp®RP!¥rÃ/¹Ù׌©q\wœ˜Ä°Ê6²\)Mr’ÝÿÚz}lÀv<4”þc0îÄ$†eÓöÇ ±ÖŸdLõ‡ñ ñaòmÇUHb;”JoÈöÃ$†]¦M}>×' ]‰ol|8‚,m94˜žÚÉ67&1,Û6=\–[Lÿ5Gº1‰aŶú[6h)+P…©‹+XܘİbÛLê‚1¶>šÄv.YaêR‚›Ä‡I +¶MîdÃu-%Æ¡ÅÔnë“VlÛÉãÑ$¶“« S;7‰“ÖÚæ:oùÆÎ+IjK< ¥\܈“–LKEêЂÀȾ} ×%!ªØÕ¿–r¿R£úõR¢ B4¹BJA…”Ê ?í}Äò…Ò×*Ë»1‰aÅ´ƒ¤pŸ%Lc¸Ó|˜Ä°lÛú°ÍvZRaê:ŒmóaòmÛÖ_¾A²¢Pú‚ ²nLbX6m¯v&cÒ¾PzîLNLb˜"’º*"¦ˆ´ñ¾0ëïÄ‘æ=þþˆ‹1u9´˜º’à5Ù‡I +¶Gd)?ÏÍ™þ𦸯°%3¦þlI'&1,Û¶lý¥®’‰Ò'7\%˜Ä0E$;•SD2Li;|aÖýƉ)"­ûÍ´ÜóF¥ õYaªRŸnLbX¶m½ŠÔ÷l#‰V˜¯˜îci熓0ýn8NLbX²mþì$…Ãìyœ×@¨7÷ ³/÷9OS «8ß™7cÂnh1Õ4˜BsbÊmÇðAçû\ɹÞ%L[p½sbÃ*Ûú¡ŒŠ¥7$ŒŠœ˜Ä°lÚ4f‡SÇÖûŠaòmÛcqe!GÁ¶#²ÜâpÁX¦£ïpÁ±•(Ý48¶œ˜Ä0E$»z¢ˆd˜"ÒvÑå…Yg©SDZgé2HX„mK˜:o°m>LbX±í±q0o¾`WA‚s)_–+Rt†EË6’½:“Ë—ÃÙ¡ÅÔ_ƒ‘¢“–l[?ÕÕVÌZ0Ýã‚®«“–m?$€Cy½g€s J˜>”á4ubÊm § 7¹nçغ×ý±(ØŠß ¦w7ô&˜Ä°dÛ6}ˆ[;`›Fâ–`lÉì†Ø>²Å. ûö!‹œ Ó[Î'&1,Ùv|6rM®%Ç~oTžQ2ÿõÙFòk %׿Æí$^èo¼|®0ø+†I Ã"Q=²A$ŰHŠ)"Á|³ˆd˜"’aIät®Õ oè·–mùÍy¬Y¢ ’åíËc”Ç Üz ö24£pû1 *D™®RP!¥þ¾©ùü,¸Ë´_å|«¶Qü:ÔËTç‚ݘÄ0,rÒ¼þ¾HŠa‘SZLMKK2LiI†¥Q²,õ(1/oS½¸;1‰aɶõ®(vö[¦]sa¿91‰aYäíΓÑüzýË\g¬Ý˜Ä0,u€A$ŰHŠ)-©UÝ’–d˜Ò’ û»`õ4µºJÓœ8K}”„¨¬pº¾a»ÿÿ];×^–:0tcðH´HDR ‹¤X"ó¶Ú½„¡¡ô„ tdœ˜Ä°lÚR™fõ!ô•£«}Ø0%!*™µ}îHÒ·ªflÖJBT6ìnDŸï°³ó,è:ø( QÙ®é1ò­iÃŒ©^)Ìì81‰aÙ¶¹ònhô7<©kÛC•ïлñQ¢°B0¡ …2ª´üáâö:6µ¿$hÒ²9x†¹( QP!ØÎ¹@A} *­~¿Ûcó‡»wÐ]ÐubÑ` ZD2LɰÜÛ#wÁò˜Ù¶}ûMþÄDxíø=ª_~«>Å6&1 ‹D¦A$ŰHŠe‘wUë¤æû–_ì·@~)"}˜Ä°µ7.uÇç\.Ò1=VHk„Ÿ0ÕÏ„k’U {˜Y¬c7{Ô=4Ô¬ìî0-à‚$Ay`¢py ‚òåþåòå1¨ ‰Ãìx OFøÐ/rA²Iûõ¬ž1󘱣Zp­Ù‘©þ2\p}”„¨dÖù)lö|oˆ|2½íb%! +dûVÈ(¬ÐºgãcfžoÆî’X£—14Ø•õý =!%!ªVïüæ‘Ⱦ>ûÙEIˆÊ û¥–C[¥¦_ìQìÆ$†åÆ?¯§Q@Âô’ 81‰a—mÛ_ŸÏµÞs1›–ÝžMJKu€t§’åÙ ¢œ”g;¶o ´¶q}”‚)UFE=QŒ‘h…]>ø50QܘİlÛü˜(,%8´Ø¢MKµtcòmëuŸÜá›Hõ/sî¥$D³î·clËýÐbZs€-ÉKIˆÊ†mWÙƒñ``h0uч^JBT6l¯¢-†-ê¥ãè¢$D³®ÇKmÙž¡¡ô§@|äÆ$†µ¦yâªí¯q¬ú™µâÐ@ê ‡ýì£$DA…h×ä )R*7üTÅé¶"à©Ç¡’¢Æà )Rª4üõf‘Óë—m ÌÊq©#`‰Ñ¡¡4§dnD (,¢\ƒ <Ayh\p}”‚)UFÅu`Ë ¥AEpcòiÇuNd˪ ¥ CöqB <Ð]\ƒ <áÖKµ¡ù…ÛQiTLã5˜ŒÉǡŮ(ÊV¿äÆ$†eÛ¦10O¦û­›ÿ:4ùaëØ81‰aŠHÐÙ‘ SD2,·ÿò‘¶4i…­Ú© ‘>LbXk›1œ±m›ì©¦¡¡ôBM˜ sbòi{eš5Í— 5¢Â†¹( Qɬùû¶lÌÐPúŠç§“VL«ß ¦Yô¡Å´ý&0}”„¨lØò©Â{–hjT~ fÂ\D (Ïvvä„ <۹Ѵ;’±CCiÝ óÅ.H"P6j½&–-ï04”¾€âÉïÃ$†eÓ¶µ¿ÁÜC¢ôƒÉ'&1,›vŒý„L'J 0_ì‚$Ay`Rry ‚òå¡áÄõQ ¤T畤·¥††Ò‡ Ìt81‰aÉ´åS™fMá$Hu‡ a>JBT1+âÕ,ÓõÊ®Ó}]æj©7'ÁE>Ü.õNLb˜"ÒzzéÄ‘V¹Á¬›¦SDZ7Íeî—2ÀÔQ‚ÔÁSG>JBT6k©|ó9D¢ÈGå[_À‰I SDÚ Ýݘ"ÒzøÙ`V¯Ê‰)"­^Õ²Uß@¶- RSp0jñQ¢ ÂÀ>•Vßûof{UgÎi-uô0Ìà$Hmu˜ÁñQ¢ B àõ1(µúú¹ßä6¥8††Ò~ æ`\D (,ƒ\ƒ <Ay,ïå1ÊcPuA';Jß!¡£áÄ$†)"­}NLiõØŒ°*"¦ˆdX$ÇbÏh ¥Íf˜psA <Ð]\ƒ <Ay,Ç å1ÊcPc$¸^‡«wæ $xJ—¨_¨ÄÒù( QÅ®4ôs×¹òs­e´ RÝ4èFú( QŬHT~SúmZ”û( QÙ.×ÑôÐPê˜Çv¹( Q•]¤Ã`(™0½a(éÄ$†eÛÖ+ëLs®{¤T"Qj,„»ÚEIˆÊvWsø²£ë¹—p’C©§Ù0òQ¢’Y[Ë æ²¤†0—í£$DA… ·¸@A} *­¾‘Ät”¦Ïè(;1‰aÙ¶û…`W› uðÂÑGIˆ*fÍýdtT¥/¢ÐSqbÑ`S·ˆd˜"’aUû—*Mz 94”¾õÁƒR'&1¬˜æ9fª¨Éö°¥/1øÜ¾mº>GäŠ.¤N4¿ù( QÙ¬¹_›ŒÇÔ © ‡”‹’UÌêßPÆ›Ë © Þ[\”„(¨ B.APƒJ«odCï|›÷~[@Ï2QúR]K'&1L ZÄ"’aŠH†•ö¿îl;ƒªí|¸pà×ð ¹½t§Sµ•SeM»'H]< Så£$D³ªmÅšLúSp[ñQ¢²YÓØÝ-aÈ’ uƒ1‹’UÌšûtÜöùzoÞ™NÜ×þáÜ!¤Ú·%!*›µUCÃÎ&J_ñàðaÑ`E´ˆd˜"’a¥ý=…HÓÒoŸÀ¤–’•í¢†ÁüåN æ/˜Ä°lÛ±TÏZ™Ãªý$å x ¹)}ðã5ćI SD2çCÉ0E¤ÕÕÙÏ\õ‚#ù˜î×¾\!ÏQGrÀ«‚‘\‚Ô#9%! *» È ¨A¥ÕN°uŽ%L_àðubòmËNîέ"cª»÷ '&1,Û¶Ÿ}߆s‰Ò+Äa8çÄ$†%ÓRI¿)¹; Mú-¦®ÁØ2&1,Û¶œÄ=‚«iÆÔ_ƒ«©“–m[Ù¥ «ÒU¬ sh uìãEØEIˆ‚ ÑØç )Rª4üý˜¯Å‹HÝ& —é£$D³ª÷÷÷léü¡¡ôÎùZ7&1,›6“ª6`(”þc ÁàÆ$†eÓÖÓºSÛ]ÀáÉï?ËÎŽtùÐbªÛˆÇˆ“Vl[Ȫ¥`÷Á¯'½ÿ5~-i;©0uE†-éÄ$†ÛØ:œnSû N7'&1¬Øv’Wí0FKp“$LíÜ$>LbXk›+3ú­äàJ?Å>¡“–M;6r•cçbÕ†'¤+Ѥ—’•Ìš>R`¼Èlì7† ¥kÑ“–M{TÖÙòs…Òk…àÐwbÑÀÕ²ˆd˜"’aŠHë"âÄ‘ÖEdš7rÅO±m#÷îÛ\˜Ä°Ê¶~¨¢¨Bé{/ˆ¢Ü˜Ä°lÚë4¦H‡SönLbX¶m_ºËÜ _ÀDëÜ |”„(¬öa…ŒÂ m'‹-eÝä}VhÞä±?6ðn}Sz‡áÝÚ‡I SD²PE$ѶãÖfö{|˜"Òê÷ÌŸ¤ຟ1uI…뾓VlÛIúcãµ:#Œù.orFæó½];ý¥„éåæÐ§pbÃ*ÛHF®„©-‰—“–m[¯Cgä5¯'‰C™ÏÛD*%ñì¾hƼÛÐbª/SZNLbX±íêç¾0}(ÃÛ‰I ˶ÝÇ5Î'aú¯ÁljI K¶-wºÎ˜åZL%ì+†I ˶MÅœEèÛÉó[v2`lcÏÀÀHcÙóyò#×¢0µ?&ó ¶Ì!¹®;Ùºá°nÞ¶•LOέۉI ˶÷®è[”·ÏcØ*„ ¦‹„‹²“VlÛÉf ½™Œ©- ½'&1,Û6>æ›­§`zK ljI ˶M,³×òc¼+-|-yl;¹ çÛù!6pHžã½ÞÙZä?~±ó9ˆÿÓ?þÇÿéÿñ?ýÏ?ü¿üÇÿ÷|ý—ïÿ÷Ÿÿö¿?þzJÑ¡å¯s ÑòÇùÛ"–?¾ÖõŸÿ¿å¯‹÷dúë_?ƹ’*ÆÿòÇcaÙ°,]>Eojëß™v£{Úqíãi7þ·÷Ý3Vo%Ʊ:/+óÁ—iìŽnÏåî–?>»Ý8®KÈhj=—‰®YàiÉ3s‹·gÖlý/;4OŽult´[ÉÌ™þzñ,c%3fúëó°—¤}%³ê¾Ç‡u%[=ã޽¿ÿýÏõÇÿýßéÈSþ¶‡ö·¨5ºšCù[¸#v54{‹ò·pgÑ4 õY³ ­Îõßþ:¢óç¯y9HZí·äk½K¾¾b˜Ä0,•ÓDR ‹¤˜"D9‘ SD2,‹¼‚Ó´ý´ÌúËÔOæ: 0HHÜQmŒAÚÛ œò†cl9!y¨¼ˆÊ£’G¡,ï¼B»²þ×üÛÿò÷/6ýL°;¶[§*sà$È%˾.&n~êôräþÎÜ}>綯>×­ÝàÄ$†%‘ët¬O‡fÖ¥ÊWû1‰a©Öuµ°¹1.q¤MšæÄ$†eã¶“9½eݯw¦¯¨s×ê&ÖµÊiù1‰aX$Ú7 ")†ER,uÀöYú7á*›(ý¨nNLbX6m¬L³î¾ ʱ¾Í0%!ª˜õø’±Õ˘š*…>£“–mÛ¯ƒçLËØ©­"p¦91‰aÙ¶£Žfw+Qú!>Lb˜"ÒêQ;1E¤yf?1óšåÑ «DU:`¿ëVDù1‰aX䤺ôER ‹¤˜Ò’`™´´$Ô–dXYØWéñZ~/Åã¥ÜEIˆÊ†5‰ê®§;< œ’7ùâFLÒ¶ÏÓÞzáàÈpÝŸÞ´“–E.ËøLõÁÊõ¨Žèý˜Ä0,íñ‘Ã")–E®Çö8Åi©ý—ú= Þ‹F%!*Ͱ}[›£#“÷¸oWVŹš&¬$†M«©“Vl;ªK¦æ,@ÂÆ¼ÀY2>JBThNiù(¨R¹éµ9¼0¹; ÓkÁ OæÄ$†Ûê „FÖCƒÝuZÝG”81‰aŠH0Ó,"¦ˆdXyV÷>Áüí¶íÓ%! *D“†+¤TH)܆g¬)†[‘bPäå6ºEr ŠäXZŽÏO9™Û7ËXÙœ þ£’U [Ÿe.¦Õñ¨³lÖó·MZØ—}%! *-È2êcPnõy$õá0,;–ÕtNÒ%$Œx-ÍI‚’šÓ|Th>H;Vòésé'J0ÐwA <°ry ‚òå±ä ”Ç (ÏšÆ9¶ûûR“æ4ÿ^òØ~çþVú0‰aX$  ")†ERLiI°wYZ’aJK2,¯û#FbÉõ‚]7ËQË7¶bèãnLbX±íõ­ ~öT°ºž‚>ù9 rÙ¼¥ZËiöyh(æ<ÖI7&1¬˜Võœñd³Púáv¼¿ lt¬‡ËïØf€‹’õ·ˆë‰Ç£+ÍX¿oDë2¶õ?©Ý©”ÀÑý¡îïÞš( QŬ£=kä±IÁjß“'~N‚œ¢s ꤜ¢“r¹Ž×e$zB_¨â%Óz'$ÊcUPƒ <•6,`·µ=¶h±!(@rcòÈósUw/Ú^qþ®¿Ãð,"}˜Ä0E¤öÉ0E$Ãò(¹Jnœ®ø8>2u¶·ìõ]8‹C‘°úœÎâ z9 rŠNcÙ™ŸStš´†3{Ö^NÑI¹¬sù˜.Ún“ìå$Èåa½ŒÅ5±åâ ¤&î@2ÞKIˆ*fÝÞ®/ÜûÆL‡ÁM@”0ê½:ÛÇIûäûtשoåû(—»o«3p…ð`¾¡ªÏ-ƒÙEIˆ*fm¨bq\Çãùþ•á(º@j¨Ž¢½”„¨dÖô©:™5áÐ@jFv²’¢[n\!¥ BJ•†Ÿf‡—64Xy0ÐäJ:1‰aŠH0-"¦ˆdX逽9y1Dz R—êù( QPaH`Hƒr«Ÿ)’[Æ«ÔÎV‘24”þ ˜ñwbòiÓçô8›CËoÓâ;1‰aÙ¸ùêood’¸º´Ò™x9 rÙ¾…åf¡o5ÕùtúcCCé5n&1 ŠDã„k¤”H©ÜøkóV°É—K”^# 9'&1LÉüTE$ÑV¯¸ÁÀÖaÉ0E$ÃÊ éï7ðä†ô ƒø( QŬ×á‰mÊþ#—i¯<,–¬Hý)ìÀ¸( QÙ¬ãá¹[“À S ±Oì¢$DÃæ#âH—Ûc¬|Zì·ÑÝmì›ù0‰aŶãìÏ2ˆ};å°4?\<¤nKpñðQ¢ Bér…”‚ )Uþ÷4ÂX¶:4TñÆhÉ“’”ÌVÿXa¿®¬À æÄ$†µ¶9«¤¾±½`´(nh0u]…{^JBT6lzÄK‹uƒž§6ÕnÈ’Ý>®`–ÌGIˆÂ ÁÖbPÈ(¬Q¥á¯¯!9ý°yþ,‘xs^—%àr'L¿©]n'&1¬Øv4»¦¥ò%QÕJ`)|qbàHXùÈEr ŠäXnÿí蟧@‡=Qú̆»“¦ˆ“Û"’aŠH†åößþ7˜6Ðÿž÷{¶¹~ælO°Æ2QšÿË]D (¬\ƒ <Ayȧåú(R*Šãv?L µ¡¡ªd‰%ççÄ$†Óž]²í›Gõu"´$âmÓEIˆ‚ AÉ È ¨A¥Õ£] MfâªxÝ´c:9 rÙ¾óñ9^Ðk°l1cÚh„¥•>JBT2lg.DÎ\Z:ÎËIËöMÕJg?ÝHX§YàZçå$Èý rŠ}4þT죜bŸ9Þ]®`ÍVÇ6º ‰@PØi¸<Ay ‚òXÂÊc”Ç <$ŽG¬ož“7¦âàáîÃ$†ÛîÅ·Šh •PûmHt·VB91‰aÙ¶îá É#­0fô0`’9Ûç>Ì6•  ¥-g°FÖI‚ò@Kpy ‚òå!/ƒë£H©2*Ø÷‚aF`ûíY΢Ö¹löྂœ¹lÞxNݶ„Õ‰ÒÛ–81‰aÙ´©ø½æ:ãÒ£aè÷ú( QX!»‚2 +´^EyRÖØÁGa…ÖØá›Z)…„é‡0§àÄ$†Ûªm-JšdÅóÙEIˆÊfÍKn (wYÂT· w™“Vl»ZÄV¯=4”æFÀ‚r$ÊãËc”Ç (m|\¥ @JåQ±ÜðpeÄU¥E,)q'&1 ŠŒiŒI¤TiüWªÍäN­U3˜ÈS}V54ê©<¨¯%! *D˜+¤TH©ÜðÛc{°^òȘšRÅÛƒ“–mÛ?e!àU§CƒÕG –š/'A.›wôò`0û°õ¯Ã샇‘SÌùT5ÈQÁS,aªë€ç˜“Vl›Ü)Õ›QS80gé‚$“¶v¹±Ô$ŒÆÛíæä$Èóªô…ýÒPÂ:wqúÂÉIStª§òD'å”ûäûìi$'§ØgO#¯ä¸É¼ó•®6YçÃ$†%ÛöÏJ‡0ǰ}Àz],cª÷'&1¬ØV…&´fh¨j?µ¸ýNLbX1í‘by†‚m\Í~ßàu&ئÿ̰91‰aÙ¶år­åõCËék t[½œ¹lßz=¨àuw÷mk#0‹Ã‘0ºC¶³ÇÉIStê;]_'å”ûäûÌŽŸ—Sì3;~ûy+Ì÷½¸øÖ²„›Qã$èâ» ‰@ŤÍvÁ®íêÄ1‡¡íj''A®ØwšBƒÖ¯9>¯Âˆßr&¿üþØòC•DéõØì+†I K¦ŸÏÜv€¡|âøœsq¢x=ßÐrzúC/'A.Û7¾»¶¸{ ëÜ„þž—“ ÷'È)ö©;$±rŠ}”+Ý·úoǸ¼¾cúôokÀ5å˜úLðÌ2AÕ°4œYú( QP!È—q ‚ú”[}YËÝZG34”¾mÀR'&1,›¶>¢8€Á〄éµð8À‰I +¶UÝf­ÏJ:/q§¹( Q•Yg?o‹Œ©™lèX81‰aŶÍVÕ.Ýë>Gü˜}\».¨?{Œ‡‘´¡aÁ´Qh£Lnêy$Å#x@̯‡ Žp¢ÔDôƒ}”„¨l×2‘nÅõSr,PHõ§` ç£$D³VïÀƒ¤„é{·ÍV,Ñ.òGµí™kÿ¥§ð¶çÃ$†)"Á ±ˆd˜"’aŠH³áÑfâI »bÛ©«¸b› “–m;«ÅßœÅK”„àå߇I SD‚ycÉ0E$ÃJûïþó­é¯Ïg#Á#H(}cc×9»FfÔìNH"’‡G*BH…r‹¿?wÄ«À2Ö9©~`_1LbXeÛËMåÙ™on^ˆŸŠ{z>®Àv*[Lós×[ë íç$ÈajƒNÎaœSÚu»¥=)§´'åòpY¦É(ûÁ¶~¯ËY-ã4á84X‰¡xRÔKIˆ‚ ÑXæ )R *¤ùh¨RP!¥òà¸ëÛ:U3 ~¯âô…Ôïù9 ržê ¸¹à­@ª ŽÑ¼”„(¨$8ça†$åVßFRL <÷oìvø]WÁô"•¸1‰aŶkÉ÷ä°¿©:5~ ¤æ ¤)š÷R¢ B0¨¸@A} J­>~ÆþR:ÕÙõ¡¡*gŸ ¹1‰aP¤~ª+’cP$ÇJû?R_zˆñ2î¾ÊǼþ—u>N‚\±o¯ªg‰ßØ<mÎ)ý O×~?PNéÊå¹0M¯Ç îÐðräÈݰ褜¢“r‚œbŸy.x9Å>ó\XæÇ2ÆòX»¿‰å[X–»¶Ù¹%Lÿ5¸91‰aÙ¶å2™FJâôø''A.Û·}ªJ~Ø5´œþ{ð@ÎËIËöí¯3/KŽ#aWa’ÃËIkÍsfGö2´tzìë´/nÉë´/EÁ®ïOœ‡Ss¦pÑsbòmë{­4õÜk9רu½ßjðe|ÖõÑÖ„Œ©¿†{À‡I ˶m3¹ ÷Œ©ý ÷'&1¬Ø¶’Œíï{ †\JÂôŒ<Ì¥81‰aŶs)¶Ñà¡Á®]€Q_!JBTH ¬¡BJA…æbî7).‘cP#Çòø8jWÍ~N°žeÄzüž1uÑÂˈ“–lÛ>lõ‡«"?Ãa†“–m_éfC‘ävŸœxÓlÛr¼N\àv<ÝB/'AîOÃöuj„»öqÛÇ9lçûô¤Kß>Ê)öQ.ÏmbIèØoÛBv~˜L˜>‹`BЉI ˶× °7µo¯Ç-`Â:±Œ½œ¹lÞþXÊh 84;Hió¤^N‚\±ï~´ÆÐŠànòM‘u¸ÁÓ¹÷‡t¨ÖérèQy9 r­yÆØ¸5Oï>:±Ö8#–m›«®3»Â‰Ò³¿¸ã|˜Ä°lÚòznβð%¬ãÁ…ÏËIStÒE'å”ûäûÌ—Sì3o@Ǥ0æ6†Sç+Œœœ˜Ä°lÛ~ŸËú’çt,·oh9æâ4î©—“ —훯¬§×W9·4'ôüÎó|UŠðpþëS¯íÆDL¡&5´k»“EŽ!”‚)U5þéÞ´¾±åZÖÝ p׃y®íÿÛ7’uëÂüódŒ©ÊíétÏã^ÝpíÄåg=Áýœ¹?AÛ׉˻öqÛÇ9lçûô…½oåû(—Æç¸¯aÍöoîþD¯mª ¥—zÀÕȉI ˦……îYCÃu¦:pÃüœ¹dßô©ºÎ¾‘$¬Î{[:ÏËIûäûôÒ†¾}”Sì£\ê¾ù4f ›)sl¦7+’—“ —ì[6V»/aóuØ}^N‚\6O§8gí:?>RN‡ËÐr‹:\`»x9 rÙ¾ûãÎÞöÜÆÃVuØL‡}²=Tµžíâå$Èý rØ>½­oç°}œSúA]®I?PNéÊ¥qvðÃù—9}|Âùçå$Èe÷§*˜#¿ÏíÁËIûä°}º#ß·sØ>Îaû8§Ø§ºÄ>Ê)öQ.Í£ós?á\'Ç*OÛuÂËIûär»u»X×¥å¯ÏöaØ7—Ÿ‡ =Ý74ÙmŸ£ÌI Ë"·¥ŸÎ[©é‡Z‹F%! *D{:WH)¨R¸ Ñ™¡)†[‘bP$/'A®èÜ ‹ìÜŠt@<}ÊuäQÉ£l=݃ê5¥`ûQ )ìxç…œB 9•Ss½èY°pAK#ÐI‚òÀ-p.APƒpë¡æcn?FA…è±L®RP!¥’ÂsݵkHSø®Ïd‘’…^^„W!£°BF) §BB) u)\ÿú,u.ÕÂ_ØVKtcðÈGãÛER ‹¤˜"¬¤‘ SD2ì‹Ã]¬sÀ ü6?'A.›wü”þ97Û‚Ñ`|nÌsrä²ygežÑ+‹Z[ã|˜Ä°dÚ8^=nD†–ÓváÈôrä²}ÓÜ&„é\(ýõ<à&¸1‰aÅ´ëYÞÉ:ÎU“Ø<»UÃËÒ .JBT6ë^»¬1gæ¶jr[C™‚ÑäR3½½œ9E§1lõsŠNÊý rŠ}æ=ÄË)ö™÷q}s7q<ïó¨ë×ò‹ýÞÀ_Šq>LbX2múT Š1+”þL\Rœ˜Ä0E¤-âvcŠHëÚÜ`ÖÝʉ)"­»Õ4½‹íùøÏÔoÂúqƒD ä¼”„¨l×úS%â÷)§m•õ HLÇúºfiýÚƒ5æ; 5‘Ó‚fiubàHý´¦§‘RP"¥ªÆ_®ùt¾¯ÑfL¢^yÅÞ„ñ@’QógK\ÂôÇñàçÄ$†eÛÆzJÓÜÀÐbïu§—ÀpbòmÓÝ$&Ÿ|(Ôï™Wm¯ø½¸ÿ^”š‹i>Lb9i·û")†ERLiI0¶,-É0¥%–IY²Y34ÐôZåº3ÛEIˆ‚ Lj@A} Ê­~?íhôÚ‡»< Ð0²ðQ¢²aÛµoZCÞÌuØšHΘ6|ñ2ì¢$DeÃÎÇæÉ‚˜‚]eçÎílùÜ×ö­T «‹¹ +•“–E^Äþü3~ðóKýÞú.JBT¸ƒ š+¤TH©<>îü£5%;´\åXRÇ^N‚\±ï^~LÎþÐPì¤gnsaòió~úCÝe½—Ëî44P¥Ð°{ú( QŬýÄkq'ÌJЫ-:Q–‡‘µÍm„Úµ‘j# ÔF˜<¶jÂÛ £E‡í”wräþ9Å>óI‡—Sì3Ÿt,çýâôJ-\þ{§ëç?Pîºy) QXáô^v …2JiÃ5Ô†„RÚPy’žÕ&dáU}Ë6äÃ$†)"­'"NLi &ÖÏ#(3¯’‰£Ç³Í*âå$ÈeûÆë{{Æ€"cÓNžº‚1ç:¦— Žñ9㼜¹?AÛ§ß\îÛÇ9lç”~@£ÅÒ”Súry˜Í €uùK˜þ4 \Yœ˜Ä°lÛrO!SNdh(-(I$Ê —Ç (APK”Ay ‚ò”‡Ä^§ Ìyèu?FØSÀ$1ïØ±™¸ ‰@Ù¤cšüg¦~3ÒŒŽ;ç£$De»ÎúÕl–J[)`êÚI‚òÀTäòå1·H÷šQ¸ý•FÅ6=æ=0«›1õ×`êÙ‰I ˶ÍçÈ'L?Ô€ a'&1,Û¶¬¯¼¢%Õºmõêf V\õÎêæ£$D…Wê¬Úw3^ØÔJtaðHtÎcI1,’bJK‚YciI†)-ɰ2Œ+¿Ã˜MÌ»°¢ãw¸ ‰@Ť»R=¯2Ajº•>JBTeVµÓ#¯¡ÅN-ÊÇ‹°“–m»¯Ú±¡¡ªOÿÖR$(µït¦%°O{Z¬ 콜¹?A®´ËU²m<ŒÞi²q^N‚\Ö9}®Ò…Eó±ÎßVùÅÎ"Ó‡I SD‚yjÉ0E$ÊÈ]s;¯i÷»–ËsåòQ¢°Âý½n2 +dTžlóUHc;_JÿÎ,L¾91‰aÙ´å‘_0Æì뮃õœ¹Œ½w¨ž3çÄ$†Û*ÏÇšOKZ& =%!*›µ΀S±ï÷¦mŠ2u\˾÷(7s¿k\§´¨Ýžœœ¹l8Â4íÚçvz¶ÃÄŸíhÛÓ°e¬2ϰ91‰aŶëQrçÂuÜž…÷œï˜ïÌø¶Ñ„Ýó÷z'&1L –‹H†)"V:à®Jõ%Ìy¶ž±ß„ºn…§€“VlÛ_AŽa;M˜~d ·S'&1,‹ÔË`kk}zw>JBV¨ú„]…ŒÂ •ÇÇz}†Ë•íOê&Àl¿’UÌ:ª“˜Jémh °Çt²m>JBTeÖêpV‡{çTº+€‹’•î“%&ÜšÙå¢$Da…êœì*dVȨJáµjìZÖòøÅ~ç×QKô`ðHäþDR ‹¤X9[vˆ£ík%! +TGHW!£°BF¥¥êüT§ï4.\€ó>2í¬¿.H"”÷¸Ig•Ç (A¹ÅÇGÌbÍO&L]°a4à£$DÃæ=Bœãþ ¿ ™ï }ÂC£çG%J¿|)'&1Li­=qbŠH«GÚ``XD2Lɰ2HŽÅî¾eÓî‡ÉZßœú( QX¡ºÖw2 +dTnù»RÐwz(õµ xzà£$D»n¿Ù8gl½>~h;àJϦÁL´“ÖšæË`ŸëQ%ŽhÝÕÐ`êÎkÃ|”„¨lؾ̇;c§–l‚·“Vl«'5;pZê}XÑ›Ô.JBT¶ë¸ŽSŒ…rC‹]c˜P_!JBTVx^Ï)ž«’lÚ¨ó÷Àg/ ]”„¨Üôç‰ãîºxCêÚ—E%! *D¯yp…”‚ )u5üö×ç3) µ¾¨@¯A¨–ù 0P)­‡Úµ™JøŠ\ƒ :•±ðˆÜl'T?ØqÚ­o§|þ|òyŽõvìç$ÈaÏ»NÎaœSÚs ¶'å”ö¤\Ö9îWØQ¼Ùæ´vúå~à©èträò°ž´Ü}waœ¦ÍLŸÄÃnLbX¶m¹1ÇÑÎ7UŸX±ŸhÒ\*Ü.JBTª¢¹@A} *­~ßÝsüüm×¥Tϱi¡H0ü86õR¢²]÷ÓËÏþ›:êhÌx²P°ë ªOј“¦ˆ©‹H†)"VDž‹’í¾ºí׳8ik/%!JQøX…„R*ⳞҬÎ`h©þ„i§´‹’Uìš,9­µk²äí¶Ö.%!ªØ5[–ࣵk¶,‹Gk—‡’Uìº ­–CËMetðBP?'A®Øw=7eõ3‡–›óþnr‡}˜Ä°bÜ]hì JR‚$¼»A‰““ —ìïÊScÁêÐbÓkåÒK ݘİlÛøIØ9bÁ–ªfÞ$ŒS½,ÛÊZ*ª¿4˲’Uìš-ÛèÑÚ5[¶¶£µËCIˆÊv-WU¿'5\(-&y@_H"”bp.APƒ <pry ‚òT†ÄQ"vV˜24ø*…Z8ã¥$De³Öu28Vm_ÝqvÚÎrQ¢²Âí¾ì;½RNUÖö\žùa%! +ÔÞvè+dVÈ(¥ ßcÃÒ†„RÚPEáy>ÓhÈ)=ׯÓpQ¢ Bäþr…”‚ )…ÛðŒ5"Åp+R ŠÔ?¤ÙÉ1(’cy-ÝoŸÒ’“H-c9S%!*›Õ/ÙUí‰Ñ¼'†e A‡´ ¶ÿ‡ùt3ï ´ß Á_b&Á_bü%Úð§(UÚü³”ôï³ç&³–çöÌ‘z9 rXç3xµëäÖɹ2»jŒÕ-ÕkZÌEIˆ*v]Wýlµ+CCÍÊDÅ5NH"”Vx.APƒ <°Tsy ‚ò”‡Ä}+Ü–ÒÎFÝ_i©SˆÏ»’sû3èÄ$†Ó®'‰l§CC"‘Î9‰’¥(|»å…„R*µü4VN—ù :Qúmièv91‰aŠH–£TD2Li͈Nã£×ÌÉåiš,‡ÏMÂqšËr´ÔZÿ–­6÷«R>¶«R‰åNÊÇGIˆR’+ŠBB) Mב_”1m棅ƴÙ4ßå}ZT«û¥…è+I‚òÀÎÇå1Êc”‡â®RP ¥ò¨X>J¥¨^Ø\(ýÓÅ ²ÙI +"Ççx‚ ‘ã™~qA<=óÕ‘G!$B°õô¤W¯ù(ÛRHa'ãÕQÈ)¤SerMÊ”ìT‰'H=eâ>JBT6k½ëG]‡™šß¦æ}”„¨Ö.ãõÒ—aŸWÐõy}ØË4VÙ†·¯ÞH¼™wpo z ‰@Ù¤­ÿ…Ý_¿º=²MšO~P_!JBTQ¸×q¹V¿x6>ƒ‹’¥(Ô2}…„Rª û:[Jdh1-…Ó6>JBT1¬®ßâ—52·Ÿ–ŽnÝ×›Òn‡ÁLŠ ’Tµ²/÷‚íBïÐPZtò€¾"D ( w.APƒ <ep}”‚)UFÅuoÕwb0×uÛëCK½ºX½ í„$e£ÎëUjïñUæ@ʪw|åå$È%óç~!vU¹ßxrü|žá«”(ˆ¥>SÅ©K5€ŠT´3™¤rP‘ÊÁ¿3x,ݨæÏæqÿ]W¼õä󸨲Q‹Â’ëÌUaqû rä*ûö¶]ž .¬fž§*ñd¼Q_(½&žœ˜Ä0E$Ø$-"¦ˆd˜"øA‘ SD2¬ ’k¦úrñ‰ï\¼’•íšë е¸1Qý‡ÛÛ Š’•®ŸÙ¶ÑMã{A‰‚Xjo£ëJ5€XªT¤v6º¾T*R9˜vJä˜oCCu_!yk$¨U%š¬iœ½SZ½D“’UÌºŽ˜Žçíz©‘ϸ©^P¢ –Ú›q]©K5€ŠÔÎŒëKå "•ƒyÜl´ )ËÉÔý&—-‘74ù­&Õè£$D) µ$T_!¡…„*-e]uy Rs×°0ÏGIˆÊfå 8çxùJØòž¡ûŠaÊm×“ÂÆÛ½Cƒ9Ûc¹ì£$DA…è,š+¤TH©Üôg5[@úÏ–š´^ƳÅEIˆJf-Ÿ:©Çk½‡†CNB/©çå$È):QMŸE'å”+ý0)©§^üMinE§ 9SÝìïúô@]D Ê¨³›†ƒ‡ÒËø©Rî=gp~:JnP¢ –Ús»R –j©g°/•ƒŠTæa3>ªO”b6†[ÆG&‰ÔV”öÀZš^'P– ƒ «çƒåÆ —“ W̷•(}å{`åǦ@r3}óÝm½Ü¦’•íšÛcTÓ¹©*Ð7&ÿò¯iÇ+½»}N¬4d5ÁøÀƒñ†Ô„‰òS“å´·y%Sݽ±yÅI*F-×âhZ þÑå€$£*'ž¹ÈC}´)èÄû( QP!Zy¹BJA…ößZ®Il›X¢r'ßÅ«¶#ŠŠRr¥RÃe¹^Û2ÕQ 4µy—N•‡‡‘µ½Õ¸6Â@m„Ú´õ¨§0Paò@¨ËhßãG,éÌAY`a­ ’彇WG(Ž0¥¹—’¡¯? ¥?ùüÀ¾b˜Ä°bÚ#n,½MT¿N²I6» ‰@•Q‡?A½ìk/=Þ­J”î/ÂËUNLbXy,k¬*…÷ã§9ÛtbðH­ˆ¤I1¥%•›µ$Ô–dXÉG5’Ár¥Œ‘µ ³,ãØEIˆÊfc;A-´F Í-/'A®˜wÕþúžkËT×'lÎ÷]D "ï8Ûµ iŒ{ ¯ÍŒñ‚ÿDAlㄦÅFˆm4€Jw dŠ©;8¨tÓtX?õ„Óš›JXaµ¤‹¼œ9E'ͽ):)§è¤ÜŸ §Ø§¯‚}û(§ØG¹2̪ME·îh­{}–Þ²¥81‰aÙ4öÁW˜^Çy d’×ûdÃwŸ¨*T´œÄ;1‰aPdLcL"¥rãO£rûw*Qz0ïC91‰aEdûúãgkfš“Eª‹H_$Ç HŽá–T7TÒ”œÃmÉ9¨Swóû: Ôiàʤ«PåL eìªÅë+L 91‰aŶu d“ÖylF¦e†ß âUÈEIˆ*fY+?צ˜M»ŸŒa—®ÆÏÞXç% b©ú'9ˆTˆ¥@¥U§h«rPiU摳¬Å+2¿½(}ö=°¯&1¬5ÍWí¿.Ôì;‹S³ërE"(¾¼¢½ñÛnª¸¤è+I‚òÀÐàòå1(Ë[?¿K%»ý[@U×2ºA‰‚Xª^UJ¤@,Õæ‘|eÖÛâ…[ªk±æ÷vvû( Z lx=ŇI +"÷ºO=f8Ÿ™,'&1 ‹Ôº")†ERLiIõ˜¡ß’ SZ’ae(?J'ßéqx 7Q`Þt.áú( QÅ®kq®’†œDéÆ81‰aŠH!YD2LɰÜþÛU9i*hjý‘NI»‡‘µiÅ.=m„Úµ½§0×F¨0•6[ýøiV /(QKíØ÷¥@,Õ*R‘§d’ÊAE*ËJpÝÔêN¶¥4Õí®U›K;¢D lÒ^-]?Dk7ö÷Ñé|ÃÉIStÒãE'å”ûäû>Aû(§ØG¹2̦^í',øKŒ6žaÅŸ ’TLZLþþÒZµTWu´—'^õANLbX¶í¸¢Wók%´^Öowþ¶æóu¦î³\nP¢`±±:Ȥ÷u‡†ÒhØW “–M;ßw[Lgä÷ÕwbÖsæŽusMåfº[psIňA´ͷ#Œ HA0ÍÓí#Fªûqa{7õ}CŸ×‚ÖÍ|»( QP!:kç )Rª4üb˜xGkÖÂçÄÑeg$À@mÚ´èi# ÔF¨M›=m„ÚSÂõjµùÅ¢Þoët«î›â)£îÁ| 0PÛ»g¹6Â@m„ÚÀç¸8Au Jca+ßÞz›'A aØñî}”„(EáRH(E!¡JÃoÕ¡§ù\v«¯tOÌŪêeKµ¦“E¢çˆ¸FJA‰”ªŸ8æVd†‡‡¤QÎøŒ«Ü DÁÊÆ«Ü[î‘@ö¼W¹‡”(Xl¬^˜Þ¾ ÷k¦@EŒÈ¾¡³ž¦Ÿº^£5EãØv€”(ˆ¥vY_ªÄR  ÒªhΛZ•ƒJ«r° ›”î»aÛ}ŸÞ6°%DÁßbÓþ”y-WŽÔüSkoÜðÒåЂtÉšEÞ J¬l<,YÓ¦!c$y¶îÂ$†eÛÖWnü9\à@7¥×íÀ7€|”„¨bWé6ß„MXÿÝ‹W¦Û‰I +¶]uÌ®;‹ ê¦(šüއ‘µi)Šž6Â@m„Ú´EOa 6”`}ùÓÎß]yø§páå$È«Ãkr:<4ÌÛì^» ‰@ŤûkaŸw‚¶÷É’ÄOkõ¾XâÄ$†UÆ•š\úÚðÐPzNVT91‰aYäv=ÛOëxÇ_ï¡”ãºA‰‚Xj§Ž·/Õb©0˜mM6¶ÕÑ$%ǯêh7(Q°²qm KĶͿžOý¡Et :Ž¿>ùT™è% f÷qÎó¤~©¶?AjLô ¾B”„(¨0$0¤A¥Õï$¶r ñë=¶ßIâ;>˜¯#jS¬®6Â@m„Ú´ïMwÅ1ªcP ‹)ü{YuaÝ!ôw\”„¨¢°zögÒÖÎq\šü¸“Eª…p}‘ƒ"9†[R¿ºÜoJÎá¶äÔÙ¹ºÜÕià NW¦ÜÖ¿vûÈêþ`•˜0½r“À:Y`zåÆ Jü«Æ9ðÒ×uÍoJÏäâøÁ‡I Ë"ñu¬i“»€»¹¶ã% þ‰‚ØFxj±Ñb ¶Ñ*6¢=Âd#9øw§’ðæßû(Ü„O:÷LÓ/äo.Á¸ ‰@Ež1”ÞšhÑÉIƒ:{qtO§ƒ: \"W¤è|÷f;V[¸?îm»Ô`OèÞ mºÎ=4-â“A%! *‡|\ ƒ >•V?ÚÓK½yÂê¢'KÁ¹—“ ÷'È)ö!¿Èbåû(—»ï¬Oƒ ßZð·ã{G¬s³9zAù×q^\K‘DAü‹†5 ÿ¢gñ;ïϪ/Úâò˵Ÿñ˘¶h>¨¯%!*¶îvµ®)Iûæê’´>Zš’´ ¾ev+Ò¼œ¹b`}5ÒšiN”¾\à yNLb©×.ö4R J¤TÕøk“0aãÃMG…y7}h90»{ŸåóräŠ}óølLà¯7÷Ówò›@.H"P1iáÒÑš´â–£5ÉI*&= ¹:KãÔ, dKÕÔ,NN‚\6pºB5]÷ˆX µ]”·2´Ü¶­„tƒ‹u}›ù„±ê¥¦âlŸ¯eÄxþ^aø‚L/ÞL\=¨¯%! *áÈ ¨A¥ÕÆ•k(¯¢}ÞL…mM £Ë"—êô\1Ns¶› u9xP_!JBT1ëz³Ú|?´à¬¹/Oî+ÈI+:ïçßhA|;þ½ DA,µ· t¥@,Õ*­Š6HS«rPiU–~}%ÌX³<49Hnêª}”„¨lØz—sxïÚìk}:èø°Ä¾V'gæ&JMžœ91‰aŠHVU¨ˆd˜"ÒZÃØ``û·ˆd˜"’aylíÕËÅDê6ôÀ¾b˜Ä°JänËÊM4ì% b©½t^WªÄR `0Dp'(lÁdAZ“•õrä*ÏçŒxN#xu0Aj•3¼bµo‹)\j]éýê;ÛIˆú»¡ÜÇdµ±műl 4ƒÅƺâØðÈñЀì4ýUqì% *RÕŒ"“ÊAE*«î¨.ðGò WÕ(‹Ó¿¯ÑÔ(¸ ‰@Ť׻8¦O‹$ŽÕ—¿¾-â% ï›kë{ÖvüþÆpê¢so+1ý$èÙv¶’TLڻŰ׫%¿ÐYÙ´WN~Ÿù 0` ¶w#pm„Úµ©OÄôÄ1ªcP–wxõ?WLbXe[9 °¿’0ZïÔž89 r‚œbŸ^'Õ·rŠ}”+:w­Ê4黄³ Ù½ DAE*Ú‰LR9¨Hå`ž‡õ"×Ôì}Gý»ÎU’ö‚Ž”(¨HE‰Q“T*R9Xºc¯Êú:ÛôÔl.7Ç6ΩÙ\|˜Ä0(²³qöDr ŠäÙÙ8{"9Er,“û:c1ûÐ`w¢y"ØW “¦ˆT²¥L$Ñ +P%ëÌO³$J?ÄÀé:&1L \@‹H†)"VÚ¿~DÉñÆã<°_Ü;3¹™*…i82ñ@ ®þšC¼ÄÑb„&òrä*ûÔZÉî£çý$¡6qá÷i¤ ÀÔø( Q•YÕ¬í<&ÑVud¸ÙmQ‡—“ WxØÖ—&³ž@>Ûû`gî5iy÷/JT~‘KU~‘ƒ¥q–½ò:Ðx»¼Žiy:GnP¢ –Ú©NìK5€XªTZU÷åH«rPiU–ùXÕC¢7±~= ¶2Qú+Uì+†I SD‚Ã.‹H†)"¦ˆq—E$Ñ +ƒäøÅ|eOçtùîAžÓ¬PZ˜½3èZ$¨²©ø+JyÏË]™ú—G±·â$U&MÝQ¡4ĺ6Ž[÷KbCÃÑ÷TÚOž¹A‰‚ÙÄy¬>)ÑIyÎws, 97.œ“Ev’=‘ƒ"9EêNtW$Ç HŽ•a2)%½Kç\ͽÚé5}n¬ú1Ûìqrä²yË2™&][#u.ü™îW¶g¸@üŠ‚³ë£|‡eìh¾‚šs­·aeSxmÃ7ôÎ:õ¶a$¨²é•§x6ÅUJ·5Su]Î*§Žâ«»Ç޶ÇlçJm4c 0µ{ÑËIËæmcÕ †Ïî -Xå}L_tƒ‹Ó†Û¦óŒ^‚ˆÇ¼6^½‹’ÕšÕ/Hk¡ýqJ÷Nçã°„ur{ù( Q•a‹ãЬv]õæÉŒµÙ;¼ DA,µ—ÌèJ5€XªTZµ“Ìè·*•Vå`7GãúY¾q—¨jÿ·|âΉI ƒ"a ÆEr ŠäXnÿã3áýµS¤ õÚ¬ÒöQ¢ŠYÆxÛúÝòÔóÙZç% *R;9ë¾T*R9Xº£¾ñCC’¡Á¦r–cº`âå$ÈAcL&Ç JŽ•>¸CP¾¹³ºt£î—gÞ˜šÂyP_!JBTˆ\v®RP!¥ ÂQÝÿ»95r,sž¹{߼З âr7/ú( Q­Y}÷þeÖõªýšÒ´5›¾”(Xì[ QÙñ²Ï)m·y( Q­Yýn{CÊ÷¸lßž.ÜÔkÕ1CÊ1FÒj52U¬Ú´×BºgUçõ¬’¹n|h@PÜÙ/qwƒ©Èç2Iå "•ƒWwìJªÏì}>ŸÙ<,%Á_bcþƒà/Ñ Ê8m~¨ö}0œÉ{Üå*Í>.sù9 rżú*ówÔ~Àu´e#Ť¹ßg1G”(XÙXΆ:/<‡ Gß xž@‰‚ŠT~¦Hå "•ƒ¢ b£È9¨ØÈÁ2âŽêv¼ú’KWQðì’Ÿ“ —í«Oè¼w°Ï;÷_˜j²Ô¿’å©%ï=y ‚òTZü~:ÊSGU0ýŒó}Å0‰aŶ½ë_ÑY;{"nÔÙ¸Q.JBT1ëzߊ¹SãrŒÚk_½‹i~N‚\6oºžn°>V<4ܬ¥užØW “E¢¾3ˆäÉ1(òÉ1(’ce˜T“ûà¹}3Z¸§¶’”Mš­osLuÂü¬ßéFø ž›9÷ ä öÃ$†ã®rÏyû5WÊ{_‰®çÀ 7jgOì+†I ƒ"õ$^W$Ç HŽ•Ø«ãã»ìߨÂçÍÜÌ›¥ú&æ5>r¯…éûrŒ²’婾\Oƒ <•_¸Ÿ~´&-ïùhMr@ <µzòå1¨´¸í1‚Oãô-Ú>Ô«lósäŠyõ·âûÓ~h˜éµéõòH"”7ÔŠ#Lnîõõ-fþÆwÁê­˜¿ñíç$Èóî‚®Ó‹$žWa~ÀiTb–kËŸs)ðPô¯ý`ÖO&µÑ V ˆá³W…£ÅÞÏï^@‰‚ÅÄ«üÀü”jÖ kä ?ÖC ¾w ~EA‰‚ÅÆU)®76csCÄnS(7Õ? m³<ÛGû)ýcJn,Kܵ¤ÊæÑ” þ`“%‰27ûéEÑœÆÜl§>Lþå_³Ül“l.ª4ãl¡Zÿq›mï<ï³ÿ‚eéÓSü¯•ïÆªal[øœœ¹b޵왿¢W– ¹u*·HÅpæøÙÚ,•NN‚\±ï~«§_©q6ÛùV¿¡C ¯$ÊSÄ{òå1ÊÓÑ{ú(R*н*b>(b.lÔÂâê~ñ^Kðƒ;Å?Ô2ÚKBTQx/ÖŠ°¡I‚íY»æç$ÈJÈËBU?Ô+YQÑŸ“ — <ÁŽ^f‚¡IÖ8ƒ_QP¢`±q6]ñ~>ÓS8âå=_éqcàHÝËëŠäÉ1(uœA$Ç HŽ•ar'Éœesßà¡yÚê·¡ ¥,ì+†I ˦KÌŸ7ö¸<4˜~s÷}Å0‰a•m«a,¿ŠïnŒ&)Ûâ;''A®˜·¾*:MeBã§ú6ÃÛé€ùļ“HßI‚òÔ¤yOƒ <•”Ñ€§~±¶Bå{£›-xzà„Ñ5=°—“ ךç¬ÛïÇî´¤xçZš„Žá2VÁH&¼¹åç$Èeó¦÷—Æ-)ûÌé•x0eïå$ÈûFÓ‰ÄÑš7ÚNŽÖ<'A®˜wè¯Ó…Œ½¿ê¥D¿±«Öw©³&ìíur†z¯æú—–½”„(¨}ƒ˜+¤TH©Òðu‰@½fz…RÌ‚ ’å½O%¹:Â@q„)ͽַkìÿßÿ×× …i1½9ã4–VT|Þ»þÕ€þïM«ÿà`œ«L~çòD›ÊO=lsùnP¢ "•W(R9¨HåàŸ(¨Ø¨Ç(ÄF*6r°Œ8í«þ5ƒBé“â}Å0‰aÅ´ú&‡«VvÓÅ/'AêÔ}û®LŽA•«ú Ô1›Ÿàûá® ©o.M8|CêÁƒú Q¢²Y÷Ë‚ºÇ‹µ„©{öÖ|˜Ä°bÛ5BÀ[}]o>aª[þÀ¾b˜Ä°lÛ]sE?-Ðpk ¿y©Âð¤hb¡©ppbÊiUjÁüÐKáêabK.xA‰‚¢ b#/ÔRlä b£½4l\²"Á,ÆÔ5fù˜Ä°bÛIüŒmÖפ¦&TØ–ìJ!cº¨¹YÜ·¥?žØW “†DÆ4Æ$r*7~ÉÒzßáAhõ‚°Ùˆ)¦L¯t¡át*c¿€î–ÀÓ)'&1¬ØV\Æödîõ^‰-~SÂÔÝûM>LbX±­~ÂüÙŒðq°‹@|°;îW…ï†íø(©0?^ûZ?EÓ”tÇV±ÚKÜÆã Ãoj S;oj>LbX¶í´> xïNC ²:“ç÷Z DÁÊÆ¹¸Û"ðÏÞä%n<´—¹¯ 'A®2ÐvpÕžì$Ž$µ';NN‚\±ïqSÁÜ ´Þž³”(ØÚhþÂV§«hÒ{ZvcÆ‹ÂÓzùEÝ»Ì.H"’‡d*BH…þÃÝ9Ë· r–CK½¤€ú Q¢Š]Ë+h*ùëзãÀ53HÝ©½q༠DÁbã#-Ûñ9–fwLà{ê¿Õë% ·²À"/u¿°éyÐ0Ýq|r_AN‚\1¯z ï=kÛÇÐ0ý@ðl'$ÊÓιzêŦ4÷Qš›>ih°Î*ôྂœ¹lÞ\¢%T 8]ËHspzSzýÓûŠaÃ*Óê<8/Áy¤„©'8äÃ$†ÛªçÌ_Uûæíåû÷üÞLÁÐ#÷ä$ÈUæ­Ø¼Ç+KãÓÜTÿêþë{Ó2ãÜp§V>1ÚÉ9,–wAŠIÕÖ‰F•²uÞØ{Ñ'[§““ W™÷ª'~N¶_»};aú•ÕöÃ$†ÛŒo0š°ùæPb¹ûn ”(ØšH‹úZnU¾,Ò_ónJÿ5¼äù0‰a•i+4­»ÞÝ–xR•a»c•”V »>¢«­äW(¼6õ†HùòÚÌS%ÿÚomŸ¶rÜÒ†.*7áf|±½ô *å]½gs¥ŸP=°¯&1¬˜V_E¢©¡Áª ÇtóÅËIƒ:õû ]™ƒ*9Vúàõz‘‘[•e«ßãÕ üŠÇÐ`Õ0]Dñrä²yGå„‚x{¡7¤¾b7ÔEIˆR¾ÓÉ…„Rªjx%’! D6­Ù4\”„¨bÖbØw֬Ų­YJBT1«Ž—Õxòõüaâ>,¹6^ ““ WÙWÖT ¦ÿœ¸99 rP'L[t8¨ÓÀUÝ`뿱 6n•\Žm´áä$È« *” ó¨sÖ¨Y ì%â;ïB•—yèà¡¡Šsؾ"D (ïëä1Êc”§}‚ëõ6ótŸ4|~ä¾éØÙ^P¢`eãiJÍŒÍè¿9ž(›ÔŒ”(ØšHS3/¥ÛêY$ÈÁß3,(ð÷\ ѱ¼•æHþ”2;{Û¬}O§_fçÄ$†Óªp¬Ù¶ñXâè­Õ6 sƒÿDAÅF^¬ØÈAÅF{9òüÙæâP; Èo?5nPþ/øEÅùèí>ª´çumJ£ð܉b¹Õó&;1‰a•iZ6±ûòaâø^4µ š”(ØšHw¿7׺Ŗڂ„u.<¸¯ 'ANÑ©–”StRîOSìC›™Å>Ê)öQ.³Q»†ÓIç'xXl¾’¢ø¸BJA…”* _­êêé\»¨ß9ìi×t%!ª2kiç‹îÔ ^ˆíTÒú( QÅ®³¾Ù;™×ÄýN0x‡¯NN‚\¶o²îo­Ó>Wo£¸ǯ £AZz9 rPg/¸ëé4pP§+Ý0õ¯_ÁÛž‰Òý/xßÓ‰I «LÛp×uŽûDî4Gð>JB”¢P[)û ¥($”¢PKPôJQH¨24®g_'ýó|2›Ÿò¬Àâ-Á Åt…ÄMMlâ:aÿüŠ‚ÿDAÅF5`6rP±‘ƒ¹—ÇMkÔJæéÓ ¯,Œ”(XÙØÍ5\ó©©fLII6ÅŒ>JBT1ëá>×¹B­ÜÞ!pA*“f‹Õæ@íÚI89 rPgÏ£éé4pP§Ëݰ2ïäææÆ¾U.‚_QP¢`k"ÍEµÜ6+]ß©gIñŠšz%!JQ¨yE}…„RJQ¨­‘}…„Rª ¥Ÿü¸¢Í½ñn Ýáè•é£$D!…j®»«SH!§JÓ_ghÎ÷¬ç}šm{f›X9ê›ßæW?ç£òS­w]¤ÖÃbOÕEIˆR¾—‹BB) UþTS}ÿïTBúÞß©Nô}?&1 ‰ìyÄ‘ ‰4`Uû¿"]ËD;—& 4݆H«©o¯Cx9 r•ygi•^ÕhsU9´Š³¹«ìå$Èï2u=ÇÎÙyMsïöås£ÑB½ö3ÉüäµË}9 rÅÀ¥ c»{ Çé|½Cê% w2ÔîBšù¹y%NmÑ'öÃ$†A‘( aÉ1(’cP$\ã * ”iàÊHyœFkRsÖûM]•ú®âås’×~5¶¯[/£z¶{»w?ýô)¾ø¹ŒSÿÊí³,ãVy —ꇆCÏlt/g¸A‰‚ŠTT h’ÊAE*soLÕY/=FJOþÁ³^'&1¬˜VZX? 2Ë›S %!JQ¨åAú ¥($”¢P[ú ¥($TÛuhg­ÕÍ ø~&|om<¢ÄU‘û räŠ}×TÓŸ›~dD†S0‘òí†áÕ”$Šl©M)’UÙu„U–ùÊ›û^"\æ¥Í™âÖÄÑ màê% þ‰‚Š¼ê–¥´È©Ã_i&1,Û¶^åàý6 ^ߟHÑ©¯%!ª2«ª`QêÐPzàøÀ¾b˜Ä0(ÕÎr”‚)U5þ …úC½[ÃL½ ¬”¬Âª=BÅÌ:1Öÿ±ë糘ËýmL}Íyäg†SWöÃä_üµû0[WKˆ‚¿Åü)ó¨ÚfË]’¦f&QÄýojf|”„¨b×b ¡ŽÖ®ÅÖ­]JBT±‹\hÇW†–ýQ툅nÖÆ¾â/(Q°²q1¯c™’äÅûXÆ J,6Ö÷¾ _WÉà±¼îÙ~ñ\‹«…„^ÁW[ä’0=ö~r_AN‚Ô”TɱÒû\vc÷N†¬¶º.ø% &o‡™&çÜM˜þs¬üÚ5Ýßg\ßG¿0ƒÕ>²‚ƒØ.ø% ¾ÚFu45Îò0\“q^ïïê¿ã7´˜êÃ=°Ò˜ûê.äŠu‡Ò”½ÍúÛcgW§®¨xz.ëh} iz[eP <ŸÜW“ W ¬Ê Ÿì®3ð¹£”ý÷Ã1°%†•­.È«1ïùŒ^DBšóÒø( QP¡ õ2êcP–7}~ç÷OoÀ²ÐÏ54šƒ@'&1 ‹Ü•cb"’bX$Åþ.ØÔºü<˜©÷žÓIú( Q•]Z%u—«˜-ÿWlÐ~ß…“ljCW‹ºÉc7(QP‘Ê‹O©T¤ÚË]l“T*R9XŽéĺý\ãf:Bn?Öè£$D!…úùqO!§BN!…£ãžD†4°<>&íúD×9MXç… èz9 rŠN´YtRNÑI¹ªNÜ =G:QjÓ„)ÜËñÛ¦ër¹"À';Öñ«à›^N‚\kÞûŒ`wXéƒÖΔ–Þ…î°’U쪾ðQs>íú «Ó]r/'AêÕ“ê׫ûÛýì½Ó¦\3Èn¤´ P7(Q°Ø¸Ug*½¼ÝÚ®¶[u" {íÇĽœ¹ÊÀ³4¦³ÅÄu|[ˆÖNØ ¾šŒ€[ªDAå¹Ê/rPùEÞ8Ê/zZuo+Œ«”+õ:¶í_Ã?¯3Œ¡Hmëù<ùØæqäûØ+‡äÄ”_c.ˆòkfÏe®CŒÇ|ï‹&J–¢ ö!XiÈy²w¶„¨ÒŒ×• ë‰èÐp³–ÿÆG·NLbXeéí_®-SÙæíÕ’¶MvÞG%Ô+ÂùÆfÇ ”¦üËʯ1Lù56”_cX連”çYo–$ˆ¤ÌÏvµóP¢²YËd*–kŸ×NOóÎÍžè% ×÷Ôà¤ýŒeâ:wRÜW“ —í[ßdYÞÐÛîBvçÃZÛJ¯õ+1ÔJ/Ù+Áž”(Xl¼b!÷ȶu'÷`ñ¶°²ï7Ýõ'M‰Yâ:sâ ~EA‰‚ÙÄ­:íQÍylâx€ÑœÇºA‰‚ŠÔNdÒ—ÊAE*©Å´/•ƒŠT–S½ü‹0œFܪ} 7œEôaàH8í¹HŽA‘«Ú_‹4À-³¡¡H¡íM}…( QÅ®µ}*ÌTN—¸ÎŸOð+ Jüõ=žØÈAÅF–n¬¶N´*;çéé{eãträ²y;{ýô—k_Øßö*Z1ßÓOËδñŠ“¦ˆT“:}‘ SD2¬j-…Ô­×I÷=¦f_ö‚©ߣ/•ƒŠT*R;¾G_*©ÌR±: ØwÌcsêãÃ$†A‘¨ "9Er ·$š‚–¦änKÎAÐ-3è4pP§û»p¶²·©qroî•8ÃØW “Eêõä]‘ƒ"9Eª‘P_$Ç HŽ•a²´gP¦‡-G3ãíÖnP¢`6ñ|ÜdÓ"¢æNZ¢H”Ò¼Ñê£$D»K¤w´v-–èëhíòP¢Š]—ïM^%jÏE¥•…ãsQ%!*Ùµ¦þE| &a¤0ëu ÆËI+æ©§ŽÝ„Å7·(\·1—ê·¶5ï)“ gkÓ…I ƒ";NO$Ç HŽA‘ §'’cP$ÇÊ0¡·÷qeõn|b±9ç¿1ÖߪӪÓ"Í1¬O¡„(ô[Ü.ô[œB¿Å[ý§ÊàP¯ã £ ÔE{ï;|ck›U2½ ¼‡:ü;‡çûÄòãø”9q<9Ñœ2»A‰‚ŠÔNr¢/•ƒŠT*R;£­/•ƒŠT–³Vň»J6Û/A'N]mŸØW “E¢î3ˆäÉ1(²wS¤§ÒÀA™®ŒZŠog%UVAð+ J,6¾_¶<{½OH{¿¦ €2ÕS¦ €|”„¨b×9õG~ÇJûÊò~×N¾Ïbº{æ¼Uù/çk‡|wd€yA‰‚ÅF½¯[xžÀÎÆ%ÒnP¢`±Q?EèÜ&L/ÀÄžÏr=Ìä|í9a÷&”TÌëµg'&1¬ØV½Ã¨ä,^’%hR~êI}…( QPá»ÒÓ APŸý—vÏ@”–ûxŒ‘IS¶³¯Ë+éfJgÝCjÁnP¢`±±¾Ñ¯L›ö¡â")Ìvb{ ‰@Ù¦í~ÈÌ›ßÓóMeW5pìÛc_E¥ʾšÀ·Ï@öU/(Q°Øx•öºÅØ÷zû ïð-v¾£îöáÃ$†U¶Y|¾¦pgßGˆ:O­i.Lb©v[_$ŰHŠ•öŸFK¤Õ>ªŸ¸Î`~‚_QP¢`e¢ÑŸmêcȽ˦>Ö J,6>n"=§óªoÂô'^ØW “–m;ª!ªç,^#ôÆôb;e€:9 r•y•Ô98›Xä0=Ñ×>xäÄ$†A‘´{O$Ç HŽA‘h]1ˆäɱ2L.ÿÔýÎýþȤù³–C ’DÓë œnP¢`‘ºvS¯w1ÓÜêôP¢B42¹BN!…œ‚mØ©\ë5"Ç`+r ‰ì•­uD0$Ò€•÷¸kØq8¦Æá¸A¾ýOÃá% fϪìD_j_e'7¦o’JÙ‰““ WÌó}>bh8㵯qºA‰‚ÉÄc´íèÓ³Æ yÚD/'A®2ï°EÛsÛ.ô1ß÷÷ál_•ZªÚótê+DIˆ*véït“ì tq}>ôN‹¾¤ê÷:ùÍc¾ÆŠû=|ùœŸÓÝ J,6šjmšr¬›¢“¯)ÇrbÊizV»?@g}÷ë —åÒé{íXVüvD¿+a´QšÊ%/'A®˜wXÍË3ýt¤·F-‡C½%öŽL|”„¨bÖd\2›<αmUŠÄðÙ½¡é³fM¶ÃËI+¾^µ‚\û0jâhö¯}Õ J,&V—QÑbôÜ»†û ðUÕ'÷ä$ÈAh3ÈäTɱªˆß¯pûg œb»ö*þc¨´/Í&¬SÜþྂœ¹Ê<Åï=›¨þ#÷¯‡×Ž}2îæíڹǾK˜8ºX·1›”(¨HÕU"•ƒŠT*Rí‘°T¤:"á½Ú“ô†×–tc,áÿÚ‘œœ¹Ê¼½ÙrMO5%®ÞMO5}ƒ¯ÐÛôT“,&>2nöóÇq•ê×(‰aYæq®¡lÛqÞ‡–Z€FgJ ÷áƒÑ>JBT±k­r-/ri¦ÞÍ©.ÖûŠaàH}YéŠäÉ1(²ãwU8(ÓÀ¥‘r~ª@Ñ\Å—¨~Íó+TtbÑÊÍT&’aŠH†•ö·­6Ùℱü{›-örä²y£ém{rœ0š,iŽŽ½œ¹Ê¼£?ë—h‡ë„Àî+ÈI+æ]¹'ŸœÏí1Ql?Ÿû£“–M›©iûU´sz')áí¾yyºDnP¢àŸ(ˆm„Ï·Yl4€ØFˆm4€Š¨|Ãd#9XƪéŠm»ÈLmŰéˆÁ‰I «L«ž@Ę´Ï˜'nÔ\Ç'öÃ$†A‘¨ã "9Er,÷À\Ý31¼X44\gOy‚_QP¢`1ñzëÂ}¶÷{-–™×-%ŒN†æhÉËI+æ]ïå›?J3´`”š¾Ÿã% fõ+Ýræô[~0…ìå$ÈUöÍݰç3ÖM|¼-g}) Me­¸1}€*w¹vw1ü¹¬‡ç%È¡÷C–ýÛÍ ÛsU³]ý1vsÆÎ“V©Ü9¹s}˜²£‰«sSvÔ JT¤ÎQ©T¤rðOTlDþµÉF*6r°Œ¸êÍikŸcN¨íkÌ^N‚ÔÙ9nèê4pP§+ݰU‘µ¾f·¬K܇dƒ×v1taàÈN6¸'’cP$Ç È^.xm|‰•~Š _M º€Á¯((Q°ØxÎ-hù̹MÚÖeX¿-ú©(zGDYv7zcCYv½ DÁÊF[Ap{ }nk{~j›N®Õ¿MË‡ì ¶'ø% õ§±;ïo$L¿A 6Ï]ýà`?¸JÜÛ]î;¾NN‚\e߬Ø× ®Ö­c}{Ì»m\·H%ŽÔms:Aù×q÷Œ3‰aù×îjc?H ËÝW_§Õ=Šö:m¦’¿¶…¸NN‚Ô‰µ™ƒ*9VõICkÜb»¨ÐVc%¦_›Ÿ”(Xl\_Ô¶À#̉yE^P¢`k#q˜_+èÑ °v9sr­}V®˜wlmZdF?íéq˜?-vŽW©¯ïU„‘g²ÚW=œ˜Ä°b[uÞoÿYÂ:‡Íø¼ßÉIStª'D'å”St¢MÌ¢“rŠNÊ•á2“òu|›7qìqö×u^7(Q°5‘=Îr­ikçßb‰Âv¸jãŒëŸÄ°¢q×¼’š8ïCí÷‡CKUq»N}…( Q•]ý0|&aúäÁb¼œ¹Ë¼ã¯Ïçq'­“Vkß±€<Èkß1J¬l,]ÈËㆣÓ2>?'A®˜w-+æ÷Q28Öt"ˆ®³A£â‰(QP‘Ê}©T¤Z™_ š‰&©T¤r°’zXœäµÞÉܘÄ0,Rú®+’bX$ÅÊ|ÄDjŽîUIò<ŠTݘİbÛãúMgk™š­e|í¾ ~EA‰‚ÙÆ©éûŠC‹õ/”>ÃE7&1,Û6Vƒ¿Ô:sµÙª±F4ŒÄ¦MÌàç$ÈAzÍ|_§ƒ: \é†ués÷Ò>7KûÍñ2Źم¼ DÁbâû^ ND=F~ÀÊ¥7ßq/\çÀ9õP¢ "9L&©T¤r0÷ÆRÔŽ»ÔÔ…•*ãÔÉI+æíZ­b¯,¡ßËo¯,!J,6c; §ïßàzU,ºJÓ ¦Oà'÷ä$ÈAA™A•+}p'{Þ‚ÿ¦6šTD7 È]­¹qî¼ DÁbãò:y0|§ YD>µ¡œ”(˜mÜgVÅ«8ûãÐQ¿‚ö<ÉûwÕ×Vß{þŪŠ\º× ÆŒŸÏ1ø9 rP§~dÜ•É1¨’cUs…;>–óªç§ *ìÕçú— ¼”„¨bØu7Çw5õ‡[¯5×w ~ü5~Øï¡ÿ_ÎvExz†;‰£ËÃóªv”(ØšHÓ§/îêCß1^á:}Žñüœ¹Ê¾Wiä;{ó|ƒã›«k›¼„eh0}œ¡B?'A®˜Wæ—¦ ÇÑMØá% *Ryd¥Hå "ÕË5 =éà©ö¤Ã·µri¿!SàPàæ:sŸ x9 rÅ>ãû í"ú¸AÝ[íÛUÔ JlM¤ûËÛÄ*Ó¨:æóÖö  “EÎ1‘ƒ"9†[Ý=²4%çp[rê„w : Ôiàª]²/hÎâ¬FÂô‰€Ó^N‚\6o®Ì3¼Y<4_!öf…˜™Ð'÷ýAù—•jŸç$»‘úÑL²99 rP'r^ 29Ur¬êƒOýY°B©e­O¬ü˜íóBmøwcº›¬DNN‚ÔÙ9%ëê4pP§+ݰ½å8ƒr4ñÊr'iÙéÃkH_œq¸H «T’f¹¬{>7X8Ú,Ï÷ DÁlâZÅÅæ (…c—ÍÞ‘±”(¨HUaR9¨Hå`éëÚ§ùñƒV#UO¼ê±èkœ:9 r•y¯RWÃ3ßà¶Z¶‰6Ĺ(ºj·1œ“†Dö–ìŽH†D°Üþ{õfS§Z—ugé,דÙz¬Îß“ Ï þžËÝp/¼6øƒÖâ* ÒÑÆí]¿`h0zÜt4 ’““ uvœz29Ur¬ôÁFnƒ(Üù8A – ·W’¤Ý oŽŒ•©Ýž}˜Ä0(²³ÃöDr ŠäÙsX{* ”iàÒH™>ê¥îø|à—ÛN¿ þƒÙn~µ7&Ç—ÍæÊ„”(ØšHs5on‹œÂMéî:G™ÙëÄ÷ùÒkê;ÊüŠ‚‹,yí}Ï+Ú…£åcÏ+ÚP¢`e"«9ÅçF t;LŸý°ìeM=IÂØÁh[Pâå$ÈóŽWáÒ;Óð¼”÷MWÌø\ýÐbÝ;ŠÍ›únLbX±98Ÿ8‚,44Ñ+¤õqÏW  DÁbãfÛ?×f6ŒÆ¼Ûóé³(Q°2QK½õc–oP;Øì·}²xN¯ÝIBRkP'A.›7M Ù¯•étŸ:¹‹È±)fpƒ‹×XÓ£9|˜¸NjºA‰‚ŠT´œš¤rP‘ÊÁÜW鼿xSì)›ú Q¢Š]‡)i®N˧ºùÞ=¯kkFõr—z%£.H"”÷>ó3Èc”Ç (Oëß®<Ay *Câáö½§ˆâö%L€ŠÛçÃ$†ÛL÷&_!÷b»ÇøŠ¸œ9¨³—‰íé4pP§+ÝPg¨í›~ýï^¥B»ç;9 rPg§V¡'“cP%Ǫ> u4W…ÊŽ»‰£'¥¯`Ù JT¤ê'¥D*©̽¡?Øs–C˽3û rä*ûönxžW­0-á¡aWÅÉz” ÌXÍ{ãÇzA‰‚Eê/·ÿF¾»¾EÌG³Ô;9 rP'ŸêôüÞ6¾Î;#FbXÖ[…ÐwL††"Uñmâ¢$D»è£Ôûå˜M?à^ƒÚ„Å`i“óõl ΣŸM^Í Jü±×ž°Ñb ¶Ñ*6NQ9¨ØÈÁêëðߨ]ˆö˜Ä±+¡¯bÜ DÁÊÄÕ–jnƒ¤ûg÷móé`7*¦Ç±ÛÐp´ÎïuBè% *Ru·‰Hå "•ƒ¢ b#ZJM6rP±‘ƒeĤ”? “¸ÎÜÀè¸A‰‚ÙÄs±µÍó3-d_“i>Ó% ߯ÙÚ†jõ¥Jª^P¢`±ñ:24¾Ø;´ñóo,Ù7Þߤì`Ã’móXÇEžë¤I°kâå$ÈaöQ½Öi¯˜ï/Å»ŸÐÇÇi(¿…^Àktª.)®M-'i F½œ¹Ê¼W!>—n*ôç;ŠuŸÙfPMŽÞY™Ïsu™§sµuýÔtý\×ê§~Ó3#±Oïø®}áÒGIˆ*†]·NÜ ® ÎyP›Rq^N‚\1ðQ—¬íË&‰ë •÷ä$ÈeûVfž²Z¯ìç”ÕÚÉI+öUk§£Ø>qüt¡]=½ DAEjçt¡/•ƒŠTV½1wOŸ ýÐ`¬Û+c^N‚Ô©oÔ]™ƒ*9VõÁÞßü4îdŽÃÀ ê‡X8 tƒ³Û_zé|$èí÷ô*>|”„¨bÖõ-5gºÞªôã}çı»<¯ô”(¨HEN«I*©T¤ªž“ÊAE*«³”c:ÇqbÏr†b:ßsƒ‹'Kü*kÌN=µ;ˆ˜› b¯Þ¦å• CƒÑ¦^ÅËI«Ì;›ÃÓKA‰ëÜCy‚_QP¢`k¢ûÊÌ|Tmƒ‚,¥in¬Úêm-ãä$Èó®›ÞîBÿù8™Ï¬ø$ |ŸÄ JÌ6žÆ*¼©YKoŽiµº¸A‰‚ÉÄås}ZeŽÚW6×YƒŸàW”(˜M·è›Ø™}°3R›Ä¯[ªDAå¹Ê/rPùEÞ8Ê/r0œûJ‚í±Ã¡¡´ÜÓú Q¢Š]ï /&÷8/#µã…µ–%LŸ€Oî+ÈIƒ:¡/dÐià NWuÃlIo5–Ö‰m_çXí•ëTEEŽúÛÄÑÍ¥‹Ü DAEªžÁ!R9¨Hå`î;—ê.wú7ò‹Ê¼H ž3R&†”(XlÜû®ÂÇ× £us~íå$ÈóΣø@†W†Ô—|üàƒ”(˜mÜ®ãvëk CÃu|`|Æ J,&ZCÙ&Ñü ÖY?^X]À+@0?y5´ Ë·±Œ”(˜mL§>äVßúLÐdìÓMŠ­Ï ’U ³þ·9šÄqç¾ÉѸA‰‚ŠÔNTЗÊAE*©ÉÛ—ÊAE*«s†2ïëþp¥¸ ÔƒtÅUð‚‹×3ýþœÉa9S3rnvG{¢é% ©ëU*7›Ýû 2–Ïd|EA‰‚¢ ¶qBŠÅFˆm4€Jw R~SwpPé–Ùa-%l²­k}©y¶¸Æ'aUpj*ññrä NtáÝ “cP%ÇJ¼^b0rUØå(N×ÛÀË JT¤vâõ¾T*R9˜{ã|gl Ïó%èóŠÈró¯(Á JL6nŸës†î÷š6sâº9ñJ ß„›/7(Q°Øxßüb'^dzÿÇ}©ãÙÿnP¢`6ñ÷_œ5 êßónOñ}”„¨bÖš÷ž9%•æ<Æ J,6î'Y×põé6^—ƒÝ—ý¶i:Ê(ãÏÔ 7j¾ÌûŠaàHä6Dr ŠäXéùs_ß&Z‰==¹†¤Dû¼ž”(˜mœï›Iº‡€s¥Ôsl8Wê% f—ÏÉ—ÃöþM¢Ô/‡=±¯&1¬5í]Lß§ê5É‘uÞ–û;ŸÕ0CS©}“j[[ ¿bRÀêNêñçj=4 &šÊ/'Aêìœ5õdr ªäXÕÊ#ÜöXZ:W§Ú¥%ú^«,-^P¢`k£û³m3Þk²ÛvGfìlkn•~A_sƒ‹‰·¯e}ìihÁ©vÁ¯((Q0Ûh>昚þ߯¨ÅüRÛЂôP¬ °¼ DÁlãa¼™Ð¬$ÇÍÁŠ”(ØÚhΫpÓ<Òªgu ¹^pº^Ð }^‡]'ÈEIˆ‚ %Pf…”‚ )UÞZ!Ù¸Mû§J4°0~h ¾KØ&|”„¨bÖczë{_{ñ(Ìý|]&®“|‚_QP¢`6qÿ¼^Ç1UæïÏ7'xuo÷±Ÿö¼“ÐÍ­œÄÑlI{+Ç JÌ&ÞoU˜ßUZðíÇcð+ J¬l¬wUþXÉЂ‹zÄò¿¢ DÁÊF[ÉôkŒ{Sqg:DJ¯Þ÷qä²yç#%âðŒÎ÷Jló¼ DÁdãqåÝ•äÇh­ÏŸžó"4AÕ„»A‰‚ÙÆ©„3¼zcxRU†Ñ*81‰aÅ´jæ:ÎÇKI›¹ë% *R;¥¤}©T¤r°ôÆÁîsÜéŦ°ó˜­×ü›úÌò9ÑÔgºA‰‚ÅF¥4OŒ;5kÓûNN‚\Ö¹ÌÚSå—.ãå—~Å0‰aX$¸fhI1,’bŠÈwž×$’aŠH†åѼÔQºãŽÉ±¼‘nÒ|h@>ñšbW7(Q°²±¢ŽG,× Òp ê% *RÑzf’ÊAE*©öðÞ *Ríáý±ìÕcÃÃC ²¶¶Ý DÁlãz}>ôlõŽaD ë›s%!ª˜µ“æPFçÍé½28œ¹Ê¾Õ•]Énê™ócƒ™ší̇I Ã"õ­º+’bX$Å‘êVÝÉ0E$òȻ¾®¾ÒûÀn·`~æà˜Ä0,rÒ^aꋤI1¥%ßE>¦–d˜Ò’ ËËÂþر:am»,$ÅŠ¯Ë J,6ìE£gX;´ ËÖ¶W+Ý DÁlãqžÄõ´Ç96Ë©ÙÎ/ˆ”µ¥r>JBTcV•²A‡íÈ«)J??‡Íík‚îÄQ¬Ix9 rÙ¾ÑXxØÖ'‡`M]±”(Xl<Ø‹RJãL×WL«¦)A›¸N1NѺA‰‚¢ b£þ<±‘ƒŠÌÝ8Ê´Dyh(pÜ«¢vbÊiôTæj“ö’ã7¨¥éúõ¦ç¼+:ûQÊ9í8³-¤3[¸•…ÔÉIËö-UaºÖ}ín› Ï+ÕÛm}”„(¨P;]…”‚ )U¾ÊZX‹GD¼ˆµ5ËCIˆªÌb;úÓcZP÷ŸàW”(˜m¼2î¼áÍuª pfÆËIËöm“Çà ö*ü¬>ÍZYcËÒŒN&1 ‹Üµõ¤/’bX$ÅJÜŸ¡÷%!26+k%Žï˜Ä°lÛ}éÍ|•phA‰6—[Ü DÁlãIŸ!D‡ç_ŸÏÌ’©¨ëÜÚwr 9…«§º¡ 'JÌ&Ž•;l¼SX(p¥»ÃnLb˜"RóˆH†)"¦ˆ´nLi ,~°»b¯ ,`°ý¼å÷ ÞQš¯^è›[ê¥Ú˜Š-X]¯M—j7&1¬ØF^.cC RÏjnV/(Q°Ø¸+¶ç#}s뾜«op›+n›Cƒ]BßÓA/.JBT1lѲázÝÇ7¶o¯g‹l[W«ÑiÛº¼ DÁbã5Xœg¤?àQ*- ºCÃñÔá£Ä/JÌ&ª¯„N+l¹çèNXýPFOp|Z7~–©2u?zVÉWàåîPî+ÈI+n¯gsLýðíÂjçê½Ã³op¬ë«­ÞËMåºç¼ø( QÅ®zý¤usC‹½‡¦^ÜçÆ$†eÛ¦G@k; þÅŒG'S3{®Ÿc¹µém%! *Ô=…”‚ )õw¡6¼÷èÊB±ÜÑÛ0&1¬5Í“Úü¡êÊX¿RadÊLÍõaòÈåJ<¬‡š@¸<”åñÎe”(˜»Á\D»5[Õr¹(æ[C ÒSêÆ›rƒ³ëíºû"½qÝL¯A6…É?ཋ[‹6‡dÕ³Z'J,6/WÓÖw†ÔyÀðìCtš÷ î!Þ9®l‡xé/¶CÜ JÌ6^o½L§mÃ"^ÿó<ÐKIˆªÌ*ç*Ôî¶7ôéæD_›­‹’êÝÕSH)¨RUÃ‚‘Œ=’ܘİbÛ#¦xcJL‘°W0Ø )\”„¨bX¶û€Åã™Pž\gŸ{r_AN‚\²oúhoŠöBÈoj DžÓG}Dº7q¦ÏÃVWãjf¬ßá;ì£$DÃöÙ–í9ž[Ó4ÖK =îZìT|v¼”81‰aŶª¨ðCÏG†«v C¹Ÿ“ u^{‡_§ƒ: \ѹüŽÍ} ±§§¾<.-@‰‚X*Œ ,R –jËà>Ø P™_Ò âQç% f'ãÑè³¹€æH}hÁß}e4缜¹làr¥ÍºC êBʪá% f«¯Ë«(3D¼6jòQ¢°B5IÙUÈ(¬QX!‹±BFa…Œ*CƒÕá£ói_窴•¸)ÏRÓÉ–“E¢ƒWƒHŽA‘ƒ"QdÉ1(’ci˜Ì¿ñ†Ùß2vj9°‡ï~<ã'&1 ‹ÔC ®HŠa‘SDªQP_$Ñ Ë£dZ´˜«—øÆösšÁSM?bçÔ JÌ6.£aUo¼o x{½o%!ªØ5E¥ó²ÌxÛ饴õÚz-$Ê{»y ‚òå©ëNOƒ <•!±i79zyžy½ óè>a,Û䴘İlÛ}‡Ãé­&Œd[wÕ‰I +¶ÝÝÝ_¦f ßT^NÍö@ 7(Q0Û¸½œÓ™Û>·l:ssƒ‹‰ËâÎ%H+»Ç¹%!*›u?­ïŒF–û6½+*NQØÄ>JBT6ë,®¦ý俦Þˆ«éÃ$†Óö×Ý®¼þç9ð×OåjšKEÅÖØÆÕtbÑìZŒ"’aŠHë%œ³:íNLɰJBT6k¯âë1Z‚ÈO5ñŒ’•ͺoS°[Ç*(´W·¬G½TÓz¡¡ÅÞy‡^Q““–m;Y#µ-§Æ}¹1ROÓÂ;1‰aɶí¾4ä MÆ2bMhâÄ$†‘›%ÿŽÏ䲓Eêþ®HŽA‘Ã-©ç÷ûMÉ9Ü–œƒ:;ùý®Nu¸2ëÞORšo·qnYžõÏMjQMúÇŠ5”Ë]0ÖßFc”„(ø[´=àoQ ÛE[F1øk¼ñá¯q,ãéò%öCáÚŠD©® .®pbÊik(º¾9ðpG?¸örä²}sÕuÖª˜i®¨Òq.JBTk–ûg[F‹ûÔ?oKuôbÏ+&l*;SbÑËIƒ:ƒ2ƒ*9–û`}„ïŽCŒ½C<|”„¨lØ~´Ë«©ª"qI€Ë*Ü DÁbâõŽ£ûÜy;®Ï’ù2ʉšòY…!åí‚$AyZ(Ö•Ç (APÞ{šä1ÊcPG³¥ÙfËUm²89 rÙ¼ó:¯7Þ Z¬?QÚ@ÝEIˆª «Sì·ÂNGR `«R,Ñ?êO\çù0|Øï% ¶&Z ’‰{z0¥:ni†æµQ­ósStƒÿDAl#t…,6@l£Ä6@ÅFä–šlä b#ÓPÝÇÊæGÞCƒék(vL½œ¹bÞZ¹7†bÌ Î+ÜÿÈ~{šV('&1 ‰‘ÃÇE0$Ò€‘×GŽé…äuie:A‰‚Xj§6¹/Õb©0êû±Xóqw—î#Æøð1QêƒhøôщI kMóZîËcaá¥ÓC .//²_åí% V6.¡ÜÖ¾V€ã6Bâ:ÇnP¢ "Õ~Å *R9ø' *6ÚÓnP±ÑžÆØ·ëâ¶šã¡¡ØŠ15ë““Öšæ+?_J±-ôûz„bžý¸ s¦ù÷³M9Zö•z{>ÝmÅEIˆ‚ ÁÁŒA!¥ BJ•†¯ÎW%ûyjUz©Ôã3Ïît\‚´Yý¤¾B”„¨lÖx÷Ê™×OÜ•¨é|w»  Ü DÁ?QP±Qw6‰Tlä`ÛN×ñ«Ò5uñj6‘¥Ùs|”„(¨P_Pz )Rª4üYuô;󈜥¬Aø¼ÉI‚òT¦'APƒ •V¿2±N/ÿXjw Åè¸Ü%qï¾_îâå$Èû®uÞ]Ë +ˆn³knP¢`±ñx…@¦èõX¯""Û±ÝÐP}—º]‚Jþµßº/&X›Q‚\ù½;©lìn rÊï™G/—‡É:÷† Nú$Hë:œõñQ¢ŠYu‚ÃP“34 -QknP¢ "U/z!R9¨Hå`éŽã5LÎÕ¹O[gxâdB‚Èáa“MðQ¢²YǪ÷ëðÂÃ~¹ ”(XLÜ_/ ˜Êu3øÛç°X—ëºA‰‚ÙÆ³Z<Í)óDÕG¸–åÓ‡I SD¾o!˜D2Lɰßö_>}Æ£Ù¼x8ZaÕœåñh€“ —Í›ÞÉ îÚþ‚ÇêÎ"ýr•Ïh:‰¬ RUûqnJBT6ë~pë½ÚªEC¥–Pª!?&1,›¶tÞ+Ñ¢ŠŠƒ·…4÷4ÀIËö­W¹麩麛b95]çÃ$†ÓŽvó°­^7שR–//(QðOTl4–G@ÅF£‡ún•‡j:îª ’[«=T7%!ª˜Uy¨Öë,âÞŽ‡% *Rç¨T*R9¨H5úýP‘jôû/ð:=·ÞoZð“AºÜW“ W lߨá™Ñ cËý#1à$ÈAºOÝ•É1¨’cU˜ÎjÞ\ó5;K7…Â<+62ª’¸jËuÏ1«ßmä%†Á_£¦Á³7È1+7ÔÕ“²ŠR ¿žØW “Öšæ8bû¡ÎG2Íá9Þ`çxZñª¼ DÁdãø©*ù‘…Ó…ÕEîVy-¼Æ=ÀIƒ:;Ÿ éê4pP§+Ýp•OúŠï~À± ¹m÷t*J}ú‡ÜNLb˜"’ݾUD2LiºëûÆX:AÉ0E$Ãò ™§×ê€*'šÐdœ«Ê‰÷oáý AÚ€ÄÛ’ª_²ë*¤TH©Òð÷³Î$Î7Çbke™L࢞!(뤔(Xl|Ÿ÷š\Òq®2\¶KAÅÖ®&ÃåÄ$†)"Ù=`E$Ѧ[ÇoL]»ú"¦ˆdX$WP`­&ÈÜ:÷aP&úz];öúý€÷}ew‚#`ié'8Ü DÁlã}"j¾t14àÕ8¨QÁå'A.xVöY‹X/naŒgšò c‡jm¢ÂËI+æÝS×ô …‚Þ6}Ú÷°±ÆõÙ&NLbÙiÈžHŽA‘Ã-‰";KSr·%ç ÎÞÍ”žNuº~O h‰aìwq÷Utü€é_¸•0õñEn91‰aŶ+˜wžS^ßѰUi†]ºlJ\D §I¾"‚©Ÿ…U4Rå"7%!ª˜µV±™îµ§5‰{mkýÃ'&1 ŠÔÑ®HŽA‘ƒ"uW»+’cP$ÇÊ0y˜¼´ÄÑ €ÖMsƒÿDAÅF㔨ØhO6L÷uxgŒœ0¶á41²“ÖÚf®£.`å¡Û÷ +íœífÀ·l¯—L.”“+¿w¹^Vär7¬÷'Ú”öNU4•4‰bަ”ƉI kMó•àLÛ#™Â [ ø˜ ¼LhAV»ñ¸Q% O¼uÝÒª‚,‹_ê¢$DA…z½cO!¥ BJå†ß·)”7›ö÷ %ÛþšîÔ„”²¿zA‰‚ÅÆGžÖ¾—Ü< ë­ÑÇý¥‘“ —í;?‘xkþT5’ïÉŠWöi/ì>JBT¨Ÿ¢õR *¤TiøEÝŠõ¨5QÕ˜!jõQ¢*»úãPÅêì;ñ¯°Ó‘o)Íx%¡æŒª_î¼&ÙïQâY5¤“ §èO¿˜tRNÑI¹Ò g› 4•=%®,¦²'7(Q0›x=%at/³ÓvL“Õ]³aÝ› ëÃ$†a‘Ó{³ˆ¤I1¥%ßžº©%¦´$ÃÊ yñì4¾Âôê =öŸ§ûbÄú›J?Þ³õΤ7>©—“ ‡u¢0Þ¢“sX'çSP'å”ËÃe®]ml¾\‡›B×q\”„¨l׺´Q©)qôSšm-’”(˜MܶR gÏ–'ì€ég¢½œ¹¬3½ €|á_n¹FôïæºNN‚\î†]ÿòsµ™7e€‰ROéžØW “VL;_9>›/–@½¾Nñż DÁlãq¾ÔLàòyäí>êÀn‹ ¢ò~””(Xl<_ [ãŒ×Ç’œÞcÆf%BÇŽ™“Vl»+§ŒÍÐp÷—}À0/'ANÑ ²F&”StR.÷Ã\mñŽ[‰£ßãj·x7(QP‘Š‚a“T*R9ø' *6Ú=.7¨Øh÷¸–å‘Xzo£8C”0õ.rbÊm+Û@•þ{|”­óÕ£WÿyA‰‚ÙÆõU}gpÕ¥âØUsbÑìþ¤"’aŠH†)"­N¯SDZÞå.¦×#G\¢™8þŒOS3é% ©Ë¯?øM·5?ó?5Íöi;ÂÇIÃ:Ÿß/°ëäÖɹ2dªHÜá&ì]/ÐĽœ¹lÞVÍ{muªŸ³Í‡m#o +ÓÁÉó‰VuWo2¦ cûìÔìê>LbX¶íxV›ãG£âö0Þ J,&^ï€;ïP$ Âô¸ós´‘m£ó ·± R½ DÁ?QÛ8¡=Ðb£Ä6@¥;Ь7u•îà`¨g1V% |¸›ñaò¯þÚ®—¥ƒÙ$A®´å#c>OÜû²\?µáÃ$†%ãÖÏɇ\AQå¶ Ñ.†]iΨ\D "oümÀsm=«»%ök¦ýŽŽ½èÂ$†•v¯Áµiý‹¢‰»¢QŠ}Å0‰aP$rm "9Er Š„ï,T8(ÓÀ•‘rfÈ–p -#ú’ì£$Deæ÷ô6edÖùÂbô„}ÔÔ/IÇŸohb7(QP‘ÊÃ.E*©üí)7¨ØÈÁ2â®RDëéðÐp×.>Ävbòq÷³½šïpO¦-Qlî6…±NLbX6mýüú³Ö:£Â½Ç´!Ù0µúê‰}Å0‰aŶk”8KjÖõ}ãÇ”LÈ ;›o“ nP¢`±ñØ[-YÌ¡çN³nïøÇÖ47hýA rEè‰ÓÖýQ`­}\ÁÅ[ÿ{ÝÈÇw¢2¨úÇøJ”—“ W <æj€‚àP ‰S×Á'÷ä$ÈUöé§—=®-°D—¯CyKðë$Ayï È APƒ ¼÷vlÇ (Ae@ÔI°Îá$Êö©ý^G;´ÜïB·ÿ×ûz9 rž{ï·ÝÄZ ýÜûŠaÊmwìjË]fÛÆñ·)éWÒ·ù¹ö»A‰‚Xjç{g}©K5€¹3¦*¦0ßµK«~hb '&1L©Æ}‘ SD2LiΜ˜"ÒmÓü êLáø6_ 'sE]—w>Æ2}c{ ÒÚÖM9›ìW$¸ÛýÒ7(Q°5Ñ[T°ÕE­I%l*þ½)cäå$ÈAcL&Ç JŽ•>¸žŽtÒmÖ3´?¸¦v¾|¹o¬vÊžXÏ)KÜ+Èêûd>LbX1n,²ãäûæjgÇtðíå$Èý r•}¿cÕKîÖ¤Òœ˜Ä0,r×Üœ¾HŠa‘+#ìzËÃ[~—80íºåw^N‚\¶ï¾Âc¾û3´ ¾þ=Á¯((Q0Ûx?Éá ÒÆn·+ “Vl«Ê'½Þw’nìaÉÉIƒ:;_îê4pP§KݰæÀËMk&†'5+;%.ëpA¼1"BH…<à qyBò(T†D½ßð2ê¡åÎWÚ§»ßx9 rÙ¾ñ~ëóÊQ÷¯SîÓx†ò><_Ùô~ÞÇ J,6ÎÝ} g+nŠ…×M²ÂGIˆÊ ïwæd8~¹«ægûåJ‘—“ ‡u¢Û©œÃ:9§´'XšMíI9¥=)÷wá^9BS¬»Ïï‚vÛ>¼ÜïP½——Þ¾}­âHGYò¾Õ±¾žàmOL7µ[WÿÀÔ‰I ƒ"õü[W$Ç HŽA‘ºÿÛÉ1(’cYä6î–yk–h&1 ‹Ôä®HŠa‘Ën»ÜÝ?ÇU®‰ë|®—¹ºA‰‚ÅÄû*²„MͶ?²úš~̦½ƒì% VRçjÓ½L7å¼^N‚Ö‰öu‹NÎaœSÚŒ˜Ú“rJ{R®ÛÕQpçpýhÂ^›s·|ÔGIˆ‚ Áð2(¤TH)܆஥)†[‘be|T»‚ýêCÂôã7eOprä²yÇ#Éj *l d÷ã]æÝ9®Œ|©´­ÞÝŸŠ£˜Ä°lÛy$Ù6H&ŒÞnN$½œ¹dÞñ¹ #½I™ãs=sî-8<Æéõ˜ˆåØîçîx~f*jt$ ¶ÌªÈ²ç´QÇU»ã Ío –Qu"s'&1,Û6U®"ØNñýÏ›Òv8|ûÓIBòÀöÆåQÉ£’‡®Àp}œB9•GÅ\gX åjCÒÏÊ´V7(QP‘ºD¥rP‘ÊÁÒ“’[êÖm$ì•ìé–mø( QP!˜?…”‚ )‚õÑ RP!¥Êà¨GiUâê+&WÆ JüíUÝ b£ý¢ê·Ï<[RuÇÓivbðH=U×I1,’beBlÕQÃ;hÁåë‰KìúŠ@ ¼÷q Aƒ <Ayàê«A¥ @J…W.•Ÿívï% b©=ï«+Õb©0K]?zZ´tÆþi:Þ‡I Ã"Õƒú")†ERLiÉ÷ŠljI†)-ɰ¼´¦‚egÎë£_FLbXy~6Ó~º<!'&1 ‹ÔØ®HŠa‘SZR]`û-É0¥%öwÆÎ—“gºªtŽÕnº2ºnjÓ­3œ˜Ä°lÚô¨bx/ øVÂX9\“ŒwbÊm¶jÆfUÎØû¼¾·*;1‰aŶÎË ¿> ?§ó•6€EÕûÚLU/(QðOÄ6v. ÷m4€ØF¨t‡^ãNºƒƒJwp0¸ùqîÒÙs¹n‘;S…C‰#= çÄ$†Û®èóJ€÷oP&®Ó˜Oð+ J¬L|mK¢1qú …^N‚\±ïúª·ûl ƒôBÙÙö¡”(˜m\ëÒ.Íóo/ˆÝ«æ[›}ÐEIˆªìÚa€Þ-$H”-àJ'&1¬˜VùœÔê£%ÛŸÓ‡I ƒ"Q%”A$Ç HŽåöß}Cè-{7§–ñ)«ž“–Û'ýðHOfŒl’MŽÖ‰I +¶UeçX"qÙyÂÞñS¿ìÜËIƒ:QNÒ “cP%Ǫ>0¹|S;¾LŸ¯m“ÂNLbXe[Y˜÷νJ&Û“´ Ó'“½œ¹lÞqשúî7&Œ%%·ÆÉðaÊm×{÷ÓçQ•«óÚ¹QÎë«}à¦üsŒí[3˽ DA,õx¤@,Õ*­ªo ¤U9¨´*ó¸9;Å,ìÙ©µèda}˜Ä°Ë¶ñ¯ÏX/ôŽñÐb$OöX(ܘİbÛ®±tÞ‰©¸·Ó¢?ãÆ$†eã¦:c¬¦*yÃø™ÇqcÊm¶þ^Ú&©Ò?æ´ îZõÒ?P¢ "Uw\ˆT*R9¨HE›˜I*©¬Î+ Ë·î*5û´Ndçºp¡Þ>]纰“–Eγ©ÚeoÖ &1 ‹Ô×À®HŠa‘SZR=í·$Ô–dXÉsíƒÌr ö^q;79ݘİlÛòÙ‡ CƒõoK¼6J%!ªVå[i*sh(uA@ùV7&1,›¶Ö)1cÙbÁ˜¿16æÃ$†Û¶Å›?®ŒEË+FnLbXe›É+Ú~3}ø™jrcÊmõÑ”ù.HùMÜÇÑT”(¨HíÜÄíKå "•ƒ¥;½{NÛ6õO ÎkEú &ÏÒ27Ÿ¯ÜW“ Wt^µóëQN¸àÃQûïÔ*¡NP¢`–º«Ï•NuÏïíXsrä°Nt3Ä¢“sX'çòÈÞ«‘ üeÀÜ”ºC+ãÚ‡I +¦ÍŽÃ§áI¯ªutbëç$È):ÁmÒI9E'åªn0ŭϲ[¾dýrY\”„¨Ê0“½¼ 3¹µËË2&1¬Ø¦TzÕÐóªs†ÔèŸÔWˆ’•Í:–ß—.¬¯Z Ç¿ózƒ_QP¢`1q'F#¥wb% V6¾ž^3|øè\[„]Ï7Û~°:¤¤B -FòìmHéÃ$†ÛÊL׃¯‰~¨I‡Î<÷@*“¶ó˜¯(ÿ€çÔ‚Ï-îæ¦†;÷Ѳŵ;Á‘m§Ý\”„¨Ê°’ça _×ÜW“ §è¤G ŠNÊ):íGO¸²&”StR. —ñó(~W³ãŸç<M¯kŸç<ðQ¢ BÕÓë*¤TH)܆ZË÷ÛQ¸ UÇídÿú”ê^ÿ,,˜~ßÕú9 rżÃRö¼ñ[0’~ÞøucòmãglǤáÆOéן7~ DÁ?Q°4Îdq»¶¶I¯*;óó‘¼6rçÕ–opšMeª¯—1âÛ4Þž“–m›ï>_!Ì8?*ÃÕýjl±Í´ÍM-V»`ŽR‚W‡û¥nP¢`‘zl%úì”Vc³\{A‰‚Xj'PîK5€XªTZu‡©U9¨´*Ë ¯·Aú¦ÄÐbýUôµ ú0‰aÙ¶å±fwÎÒæfV$pym»½' DÁbc奙ojd±‰Ÿæ% *Rõ´‘ÊAE*Koì¿Õ}ö—Á9{Û¦SJ/'A.¸.cÛ2¦Œl«çäLY7(Q°ØØ)Ôs/ãýU]_õ˸]Ÿpç¿=T“ Õ:5ûå°y}3w-Á㾂œ¹bŸöØNï&SáèçŸW™ DÁÖÄw’•qgu øpzåÿ {çzÕÿ>JBT8‡R *¤Tø )¤TH©<8Ž+èz¤ª``n\Lå15ž”(XZæÚGÌÏ}ðZ¡<㱿†c†ñ8_‰¥LÀËe™gc2?ÕòÎS$¥›°~¦á•1õaÊmÚ·&û³áT?üØ- ñräŠygä8äÆàG˜öÃ$†%Û¦On3_gH›­MºÍ‰I +¶­š¯Ø?¸Ÿ>G,åoº”f9Ë$ŸÛfqaðHýè¦+’bX$Å”–TOoú-É0¥%–ÇÉX= '/Z§;aŸ×"Û÷¹½œ9¨³óVW§ƒ: \é%0è¯|ÓçUóèsô€á6›êÛsª¿ù±®—.JBT1l!»#.ʦÇy¿ÅZUÕ†uWMÔ;ó×ÝU˜Ä0(¼eÐH)(‘R¥ñÏPŽR/;õSü^N‚\¶o¶½*²<#ÖŒAù¦¾B”„¨bØõ*›ñ鲡Áôx_øóräZóÔÅ\ÃÔãæ^ Þ7Vã xŽŽ£™Ü ÷ OR}q´ãˇI Ã"Õ³±¾HŠa‘+"/ßžç5Ög&Å JÌce_™`áóŬ®6?Tóª© âGm-5Û§m4¶Ìô<þÉ 9Ži³a^N‚\1ðrÔE ߩʉ϶ÆéóaðH=>늤I1¥%Õø¬ß’ SZ’ay”Ôï€?« ’›R=L|ñΉI ƒ"iÐH)(‘R¥ñgÓÀú4ëÆHf©M¯:1‰aŶúõLpv‰Ó« ÓËÍqzÕËIStÒCE'åæCŸ†“Ǥ“rŠNÊ•árWÅÝêí gëÏ0œçåz{!xA‰‚X*¬þ±H5€XªT¤"'Î$•ƒŠTæas< oÕú6„:êÊ ~M}h8PYÜ­¬ðrä`U3餜¢“rU?ì0ÝO Ü”ºµ(Y&1 ŠDÇ‹‘ƒ"9VÚ¿2ͼæ–.)ª'ô$!yc@c8Æ”æ®ÏdéUºŒÝÇ÷Æ·Ù‡Ó\û'õ¢$DA…À¥1(¤TH)¨Í+ƒDŽA«ÆGuºã8F?ï÷l…CƒõOj^ч‹’• ›-)…æìÖÔÍÁ­‡‘“íù|ðbÓ-dK(¯ìU²91‰aÅ´GÂ9©Ï„áЂï}¹ÿ¤‚”(XlÜHŠ»ó§~ºk4N„”(ˆ¥öb®Tˆ¥@Ej'ÖèKå "•ƒEêñªƒ|œ;õ{>SÍ^N‚\àãlªooö­yš”üÿ³v&Irë¼^P†þÈ”RÝ~<ÀøîðÊ%Q$A€ßÔŽ¯ò@¢Ø £TÝùb”²ií¡)QªF­G(âòâ òó³ØP”£$Wuž¾9â|³ï' R”¥s„-ÕÊR "UŸ#€T *R1øH½Sà’}²tŠ0HYP–jdŒØR ,Õ*OUz®§ŠAå©bð™â–+ÓÔÝ¢õ¿§$‘Ó’nHM‘Ó’b¥¨Æ¬¯²üÙù>Ëڥ׫1;~¼Y¿®‹G>8|°xd£Vm»zêFÓÝ—í}àƒ"ïŽS(e…ï¡)Qåi¯Ù”‡ Q‚Dyj'CS¤Dª£âî9ÙÌË §zÜzlÊa”êq]«´*öy`/ ¹=vÏ‹0HY°ÚØ-5F[€“Ûxƒ°Hÿä6AÊ‚ÔÝ•ñvÎìHÃ(‡É"ÕŒ7[$Äd‘{F˾7‹€?H^8Ý*É£%¹Ç¾LQÊ¡ì îÙŒ@”z›¼‡Þ¨æèêr‹D Ê@Õ¨ÛmË™YŽûB÷0ÛÙã·pMû×ø r”äª}uÿï¯K¸)½‡·rˆa”Ãd‘0´'‹„˜,ÒH\Î&Ž]ô/F©9v!†Q«"?‹gY[¸ÈF9L©/k¦HˆÉ"!V‰Çëùå–ÍÊÉ~d¦C FÒ6m°6ÄHÚ#i{'´!FÒ†˜:îÄOûHýaÛ›R†OMˆ2(O=èZò$ÊC(O?æZú % „T_íü¥ä\ìB©ž59;ˆQ«¦Ý­Ä@@êàßpÛL1þG(JQaçØÌÇâæpYÍ|( Ê@¢<õû²ä!H”‡ QžþuYú % „TZ†ÙâïÆŒB­ž›’%¹jž/ºÁòß÷{ö8®Ù1»` S‰³c¥¨jØí/”7Or:e¤©t¤¦E)ª*¼’ppðÛÈ0HYP–jM©P–ê•§ª>à©bPyª|ÆõïÌæ½~ãÅ({Ía»Be QžºæXò$ÊC(O_q,}Bª­/MpäȾ´‡“ML_Z”£$÷Ø7_]ˆÃ‰„Ñjžh) V×¶aðlä²’ïÜæÙ¿GLöáݘXò.`S£öض4ç/1lÁôÏA>E9JrŠNÁµéÒ 9E'äš×Ðä`¸k †,#ˆQ«¶ôp5Æ.ÜçYè\}±ƒå0Q¤žiŠÄ˜(cÏø6[uwéS¡ÄoÎØ¬Ç0ÊaŠHmL‘SD"¬>_¾!o4U¸÷pt´ME9Jr}‡§‹wz0e+ÛSSŠ¢õ(\—ëñUŸÈ5ŸŸ+[?¢ eAEª´sIÅ "ƒÏpY¿MÇ)˜Ë÷bpSðµ.DQŠª ¯æøåñmJ’ﶺkp·ìüÞÉoÁžX_9ï‰Ä(‡UÛæ+ ¦M-×&ÿÅÁa‚°ï}‰rôÏ¿w§íxÇeAåñàT~12ª¯¦ûþŽ?ë:Ùœ² eÁjcóú÷̼7æÊØþò(GI®±¯MžƒÉG•»’QÞƒ{ÆnÔ[8xÙïÔ) V¯ÿh¾Þw¿ºœ†cß#Rzöb”âàï¡)Qå© –<‰ò$ÊÓV/S‚Dyz†ÄyÇ|bé•?X³upwª|°³Î’ž­C £Vmkgd)©\™‘a9¡2#9JrÕ¾ãÈon;\yð& R,6®ÏLÂFg´@aOM)ŠRTcÖÞù]òýëyø4`WÛ¥ž˜Ën¯Äã"lv(˜^mÕsS’£$÷˜·|vÓ¼ë©ðî-Ó®ç¦$GI®šw||£…¿¿ï§ Y‘è½ÿÐà eAYª5™™R ,Õ*OÕˆDÛOƒÊSÅଆè¦|7õ»-•Z+ŸE £VEÎΑvð×猚 õþ.×@8À¹~ObÞðdGºÜðòe QžšP`ÉC(A¢<=ÀÒ)Q ¤ê¨¸}™¾°]5ìj3#\ÚoOVò) ÊRE'…Gª”¥:Àú2÷Fà¢ÂÁf¸{# RT¤J© .©T¤bP‘*- .©T¤~q½—=ïúEYPþEÇÂ'ÿ¢TlÄ+¦bc`©]¯¦%ÞÛ^ŒÙüÒ† F9L©g ˜"1&ŠÄX}WR–·'qå¶&!Oõi²âŠBÙþV[‚(‰òTç€%A¢<‰òÆí¥C‚Dyz†Äöö{K ª ¶îG¿ð›è NY²`µñʇæ7ìú:ß›’%9QgRfReDä}cØàþN|Ýâ) ÊRõ .êe©ð‘êjA2¿?l^Ša”Ãd‘Zàˆ„˜,bϱ{ö,ù¨€÷SzwròQ¤,¨H•Â<.©T¤bðyǬ0™½ &…‰­ QŽ’7otä쾙ʛUòb 26h¼@–9þEÊ‚Ê/b©Ê/b°¾Žnÿ.äyôû÷çÆD-óN‘(GI®Ú×SÝ–îÔx4, R|l¼›¤›x ¤èñ&^AŒrXcÛï±4˜ °ž^ç=ËÙ¾/ž²ìæúÍï™}·!ŠR”¬p| …ˆ’"ª*<šÎ úAn~/ìÓ‰‚”e©z‡f ÕÊR "UÉT *R1X¾¾íýV’»@Ç»X \€Ì;ˆ1ÊaÕ4O2ËP)ó©)EQŠjÌZ°»kÌZä ®•$£(EU³šDÿm]Ó“_åD˜(GINÑ)Dü]:!§è„œ¢Sؼ¹tBNÑ ¹:\º¤gÛ¯aö»àí}wÏ÷°û6«Ä£%¹jßµžÇª¨ eÎ ¼Ì+Qåiƒ)A¢<‰ò´]¯)A¢<=CâÓ:Ý÷>< :­ð+* eÁÆÆºQCøn䆴uTÙŒ„(JQÕ¬Ïê9öñycè Æ‡d £Vm[<|Ã;»(ezë¡)QåiãД‡ Q‚Dyê®ÝÔ)Q ¤ê¨Øª§Òˆö¯}ÜæÆPø}ícK1ŠR”¤Ðˆ½ 1%)ÄT}ôgë`ô§ôos뜂ÍÛ_³ý>Ü9Ä(‡=¶-ïú,ñ 1/†é7Ê­e¢%¹Æ¼]ÜP˜ñ‹Bg.3|Ä(‡‰"û2E·HŒ‰"1VŸ¿7‹¥¬¬,e= R¬6v¹o”s7pX‚íÔ(GI®¸(+ì‚ö g!»¾<ˆQEêy›¦HŒ‰"1&Š”˜C$ÆD‘k†É×á2ý°-ÛM!'æ‡íÙbå°jš2ùuÐÌ-Û=?5sÃ"¥¨jV“‘¥o¤xQÁš³ž+Õ)ÊQ’«æ]Þ„pyüøUb1¶sêÛgá/Ž­?ÎÆ0ÊaÕ¶;W"Z„T@¼®²\ì0HY°±± ¹JF¹> °‡Á) R¬66³´êIâ“ô ïŸ5¿ëæÒȯB/àè:‘¹)ÉQ’«îøQòUábÀ“ä‹Â÷ cúž?¥¨æ·¿BJQÏÃX?µœLÚXþv®™ß¿ósí•Ä(‡‰"¥=›C$ÆD‘“Ÿ¤ô©y%æäg‰9Q§Ø\Ç¡ÓÁ‰:Üói¯‹æp°¼«·ÇË - >ÉI¡šºä”Ð VÍÛ={ü/ÿÌw×®ûËf¢F9¬šÖ¥ÙÇx. :VóÐp£$Ç ·>à9l‡íâÖ0ÈMtƒÕÆS ïÛu˜:bÙU‘a²àcãCè'·ûûd§¶Á¯oQSŠ¢%*\Ñ…Bª>ú.óÛ˜ÝYwá|Ër›.Z+°mÛ7òƒ”äªÐÝq¬àë M#_B¥¨jVÛ±Êq‡ÇcÚÞ6½f0æ´¸W¶*DAÊ‚² l£X*ç±ÑÊ6:@ÙF¨Ø(ÅC]6bP±ƒUêÝ‹x/æ7?6GAÊ‚²TÝ™¤:@YªTžª: §ŠAå©bð?†+h¶}=žÅ_/øb˜”í¹)ÉQ’«æm§²*Í ²uæ“ Q”¢ªYûZÝkâë¾6ßm ÷sõ†:×Ûò¡$7 R|l<º¤@ý47$œ®†œÀ GI®Ø”fi:3Ûcߨ¬®ƒ=7%9Jr¢Î¤Ì¤JŒÕwpM¸áÖÛÛ±é•ÍK²»}±&ŠkËo()”8oŽØ”Ã(‡UÓå„4·ûìmeËó _HM)ŠR”¨PX[ !%*„”¨PjFêˆ1Q#Æšñq}kcõ,KKàÞ«ªlÏÕ¼ƒÀߺ·‚À/Î5“‚ÅMIŽþõ÷Î÷y.”äžçy6õYê‡×g•"XåÔÞSSŠ¢UÍZ´$³èv®_ŕԦîlïÃ(‡)"ÕêY[$‘+o`¿›\ªÿ—sXNýÀåÖ(GI®Úw•CFs_÷÷2{çÜ¿ó‚ ¬êì F9L9~¬.‘SD"¬¾€ûܬ5,œ~;‡\kå(É=ö}:ç¨êþœ£øVÝè=8eAÊ‚¿•á°Šgé'÷B ;Åš2e QžvŠ0å!H”‡ Qž^Yc郔(Rͨ8·„·ØbŸw-¯°…üâŒ}>k·7oUil¯¯ÛŒQ”¢³–nå^ÑÊö✚Ÿ©¬ÜAŽ’·/z%ò¾,êNÔØRç÷ÁVÅ GINÖ)¹â=:1'ëÄ\} ×Éù®x~táÚaíJƒ”ÿdAÅÆoÖF *6bðyí•ÂæFù˜nªyù6å0Êa¢H!Ä¡R¢DHñ‡Ì6ß¿W¨G?ÓÉ!©‡SÏXrH*ÊQ’«ömÕ‘;ëgVd[0èMge¶QŽ’œ¨3)3©cõ¨—‚w×å˜IårâÖ¾6!›Å )X³pÅB¢%9n^¸€r_½½&Y6ê¾^¡q–Ðã!&}´z<$ˆQklÓG§…]wó…³ ÷íóQý˜õ÷x}›WßKgµ6ûv·Çàˉ] Y°ñ a—BF9JrÕ¼.ÃÓ|vÙÖêS ä©ÜzCšJ”£$Wík’1PªÃ‹AÀ5Ï’1b¥¨jV›\í¸ŽçÅ@áö ;¹: RT¤ê ŠAE*Ÿ×QR¡l·ÝƆ›N #4e Ê@¢<Õ™fÉC(A¢<Ý•f郔(RuTt§ Á±¢œ* §ú”SE£$WíÛµµì_|qpNi28eAÊ‚Çu5aøú‘ýèÂajtfïþÆ´™D 4…(JQܰX±Åó[šÇ¡ÇÃ|Ø`™Eæ4æ$BªyøK³r‡O?·®º6~l Q”¢ªYÝL«²d“æ;ã@Ã(‡UÛ® !¬9@Quyá¦$GI®1°I \S@´¡Ò‚à eAEªº¡DR1¨HÅàó:Ϋ$xÍOÁìn•Ã5?AŒrXµmv„ yòB©.‘›rå0n8>Ôífó-ë°±ŸŽ¢;>Ùžž:8>ÕF Ê@<=Öúìî~ãï]îK £&‹†½G$Äd‘SDާL—H„)"VGp—#%z”Ü£sw¹+gþÁ«â5Z=€6c=Ø[>ç÷Ô”¢(EUÃ>ÜÙïðúþP{õRZe±ÌÕ¼ïÓÛ R>¼½§z‹{lÊa”ÃD‘’«Ø!c¢HŒ‰"¥Í¡C$ÆD‘«ÃäîåË~1 %“²tå F9L©žm‘SD"¬¾€£Ùµ.ò:ÚFõšc“7ª/ä©)EQŠŽ xÊ,ùi[æ9)­LmÃP•Øä!!iß/ ³”£$WÍÛ]Ûê/*Mº%Jf|1ÈÞøóÈcnOyðžÔÇÌ´šá”Ä(‡U‘_W~øüy³ñ) ÊR°«-ÕÊR òTÕY=U *O5ò‹w0ÛõIPŠªÒÊÒúëÅ8´×cµAŒr˜(ÒØëY"1&ŠÄ˜(ÒØëY"1&ŠÄX&Í9ÎqËâÃ-o߆ˆ×éËЄӕµúÃŽƒsýPfò‚|*>¾Í€ÚÙ–{ã ôVÂi=5¥(JQ¢B!ÊâP)Q!¤êƒošñª»åÛ‹ÞØÁ~Øn9DQŠª[QK ‚D}ªO]Ë?‘WÏ€ç0s“e Ižú uˆ‘Ä!æyÜ+*—;±¬•¼K£&ŠÔ×JS$ÆD‘Eêk¥)c¢HŒÕaÒùÕ½ûpUÌŽ«ƒ NY²`µ±éè†S8X¦ÃsÀà eÁ?YP±Q¯ï6bP±ƒõ567½ ¥Nnà€$ìÍlÊa”ÃÓìFNË.ØøkvšôW×bx‰Þ‹QÀ­S°)‡Q«"Õ^±­çõóa~ÞF9L©9ÚH„)"VÉ7VÀùb JÂ*Mà eAEªô¹¤bP‘úEådj—RD¹úúwÓ¤øp7-j·‹*œºt`ƼiaÒ–§Ç¦œHÊaâ¯aÛÄ_Øøkø‘ˆ¿†±:Lº±ë<Ø®³€pȃ;Q²`cãïäÌdªÞ;èLŸ¹…A² ,Õr¦›R ,Õ*OUš˜\OƒÊSÅ`7Ë"NfMz¡¤Ü>›rå°Æ´ºïT \øŽî†ì…hØun«º76!ªšµ;ü‰_nÖîññ}¹YŠR”¨Pu;qûG½†¾ô<õýš˜ÇCŒyoÁ¤ë ­|£%¹j^Wâ0+¹ÄáØÛŒ9Õí÷DZ^Œ›í@ËÃMIŽ’Ücßq­ª ‡yc/ýð­Å{ç1Œr7 ä0ÔÚ(ü%Á?`›í¥VfñDªC»ÃÊÌ£ Q”¢Ãvåˆec]ƒ }3Ë/1* ìÏ/1 ƒ”ÏíJý +AÃíüÀT8a‰°)‡Q+Æï2¥˜×Çžo-†Xžåz—ßgYïÔ+œqÏmNY²`5±ÙRúûL/Ü•7•QŽ’œ¢SÈfw鄜¢rõ5´µlRc:e„~š*é•zcºçGŸAŽ’\5ouêÞý¡®€péãRa²`µq[ÙèJù,Žë°œÏ0HYðOTl4B¶TlÄ`}WúSø†ÄÓÕºt¨Ø;çóÐ5u´ W LïŽÞsS’£$÷˜·¸ê{JC×Ç„ýÁHM)ŠRT5¬‰8kfñCJÞÊ~\>£Ä(JQ¢B=ÝÊR)Q!¤êƒWÒñíòœ‚§J»>'ÊQ’kÌs8JÞl{´èꑪ?Õ…ÿ$¿·S+ ¸ËrpE9JrÕÀÕåŸåçæséj'…É®/f|1NßýõÜ”ä(ÉUûš5Gpí*KÎM©‰ÊŠÃ(‡5¦µ«°º|}ίÖΪ ŠQÈï×UcËß+Ϋžñî K)˜~æê¹)ÉQ’St g.—NÈ):!7¼o|¿‚ÚVÈvÜnØŸØ~Û F9ì1nýp¯´ërÕÂ5.×5°QŽ’\cßîÙÈ.l?U0{s¹°=ÎÚ>ú…Ù |Lj k>¢%9Eç’Ô 9E'äï¤NÈ):!× —¹ŽMÿ5 ç:\ÌåJÓüáöDôã\—ÍçšÙÎã±Off{(HY°Ú¸+ÛþîÉ| ]z g!Œr7 ¯ê°S£äš·‚ÁãßJ9úçß»/ tÍžg²Ýõãgޯ;ˆ‚”e©Æ^Ç–êe©P‘ªïx€T *R1øߊÃäÎ]Y˜sà¦PšõÂB'1ŒçĪiW»_“£gIMˆ2(O[ Lyå!H”§mhMyå!¨ ¥‘½U!yªmå­ÂÅsSá­$ÿ‚žäÄ(‡)"µ\ aŠH„Õ°[Ÿ—\›Y ð®êX\^ÏÏ—?‘ HYP‘ª×g©T¤F~ñôx ?|±ˆPÍo}ýïRÔ30÷fÉUóYùŠ{C Ç”/¸!ŠRT5«™ÝÍš ºó~RAŒr˜"ò›‰0E$ÂêóïØ´¹œ'°»’,××)ì;?_ذµ’©)EQŠ’J‡/¬S’BLI Å2,ÑIØ3>P‡tby{ÁÐá—×±G9JrÕ<­[ H“º9ãb1%O* RT¤âT0E*©ä³”¦#—T *R1Ø g_ûêo͸…›’%¹jà×ôÍ)Å£«¿6\‰U8ð4‡+±¢%¹jßæÉx®¿{1N]Ęô90q²ï¹)§’r˜økØ8ñ×0&þšã™ˆ?çàž‘r*åIv•qÁô…L.År”äóüu^/«Ù:OytIóЫgÀa„§vG Ê@’<õáê#‰CL}ÜÛášâ66éÜš,Ìøœ-Ìú,76 ÄTR 'þÆÄ_s<ñç\)÷Å`jøâøÝg?Ü•&ÓdLˆ{’þ ³ùï»—½oþ õßCÝðïR#à/ÎÆ‰Ü”ä(ÉUW;¾sÕÙ~¹å~×µ½Ñã(ÉÕ÷Ðøìm +…<=0ŒQSDªž[$‘«Ï¿¹v|üïkwÐeThÜ^ëÉQŠR”¨PÏïRþRMPÁÙñ±RhxÌü=‡0ÊaŠHuxØ"¦ˆ üÚìk”¢šw­¯nUb÷Ü_ìܬտú±¾#}¥@MÁ¦F9ì1í³è;MdàÍžÈç»›òN<[×Ü/¦–15?¶±a|SHãÆV £VMÚ¦;*É~9³«‰òÚæ¦¼ÅÈCêÊ[*6þ˜UÞç(ÉUó¾òfÙ&³ÖàÌ|oó5‘„ÒÜ~1ÏæË%î®MÅ—äF9L©Îã¶H„)"VŸÿÕ×½na̶î/†5 “›’%9QçGÊ?wètp¢ÎÈï-ZãQsŠ QÿUjS&f#ïù/×Ub¨'}V‰ñì.o2Ò{ß­Gùüª%szNÅì.'} N”¢Õ¶6OÄ—·ó‹ÙUZ÷Òx²à{M͸]AH€”e©VÒº)ÕÊR òTÕè;zªTž*븹·ëª¿¦wF½8§úOznJr”äª}í5oú=ʬ‹À/Xð8 ýÅ0¸ëÒ×ã%¹Ç¼RWªÄ©œp½¨Q‰ç(É5ö̆¾ï‹qÂ^U§,HY°š¨5P„Ü×±5àÇÑÕ˜(Æsý‹cÒw;bS£Vm»’-M°^ âD5¥(JQ¢Â%¥R¢BH‰ ß)…BªCu²ï€QÀæ‹ñíø£ eÁjãyM%Í!J -_¶Ó¹A˜&óe GI®1ð«¼zû¸¶!tÍE>8C¥(Q¡ê¢5BJT©çÁ·mˆµE£oC\!ÛóÓ·!ŽR”¢D…ZŠ€)A¢>Õ§ÞúŽáUõ/ŽiËgM9ŒrXµíj,‚vôOc‘ÜA·~)'·bh‡ÝçäÆ9JrÕ¼YõÝ9™Á¶PÈpÁÌlNÝ»£•öG«¿Ã7'ƒS¤,Xm<=öìw|f㣽 ¾ °Bv¬/ŒR”¢³ä-ž•œW1xPá¯;ÈQ’«æÍŽn^ÛE©Á¬›rå°jZÛ÷ÓqÁq½ñ³â:´¡K¸/`K€”©Ò€qIÅ "ƒUê5í¿à.mÔ¯Åï³óo)R”¥ŠÅõ©P–êŸA~zjÞûÖ˜•2'ù¾3f¢ $ÊÓfxS‚DyåiÓ˜)A¢<5CBŸgë|ÉÚÞýåfÕ¯jñTPrtE< ²`µ±É-Ô÷RƒkõÆÆ#.ð¬9Jr¢N1¯×¡ÓÁ‰:\} §æììN ¬CÜ/Øž Ôûs‚zql£YOÇHY°Øø)møÍàk¹ÑåÅ(eè¡)Qå­C‚Dyå ûgUŸ™Rª PU!(¹º&¼ÏÑO±AŒr˜(R_@L‘EbL~’Òäêy”˜“Ÿ%æDÆ#¦N'êtpÏ|ÕÞ;—âÃF諒iˆr”äDRYŸC&ÆD•kÞÁfû 4îëè™Ã£å5,.£(EU…Ç陾NþÎBå0Q¤1}Y"1&ŠÄ˜ü$ÉË|”˜“Ÿ%æDÖäeétp¢NW?8­k£¼ñ}1N˜8`mŸÃå0Q¤41;DbL‰±æÅ­ò‹ëÎâ,ÊY(ÛýaAªS‚ÆCC5FÊßËUpt--*§b&ft²)ÜcÝo3‡`Óʿؼ>5ÊaUdÛÐØ}åð_ð”aòC¡&þ~uâ¯aLü5ÇÎÁ5¿w¸¿8Ê@â/¡ÏTü%÷·íº5é¹KêÅ1kž{¨)EQŠª†}Ô$Àæ÷wˆüÅ´,4ãÁ˜*ïû …“"À6}^ó¬ðôùl7ß³œ0ñ`ʳ—ó%b¥¨jXøSW'vá_ê›Èœ² eÁjãÞÌþ<ýâÔ‡Û) V•Í‚qSP¥Æã:øÊCå0Q¤ÚêÐ)Q"¤ž‡ÿåWÌ™·3¼ÖŒg“›’%9Q§Q™fêtp¢NW_CW³Ð}ûùiŽ©8?µOeZyW§ /,”ºA—«ƒå°Ç´£Ë쓎îJxøX´3góÞl%¸!;dË+Œb¥¨Ç¬³u:®$«àu¹".6ÜÙgw¶·2ªŸëÃMIŽ’\5pÑÎcö@9¯üeáéÞé¹~û¡ù3n…†s´ðTß¡œ£) V¯u š£5„oñèGM”£$W ¼¾Bo§Ïã-ÕcS£&Š”âz‘EbL)½8‡HŒ‰"1V‡Éªœ˜ºÄǽ?×J9/õД(‰òÆÈ!A¢<‰òôdSK¤Dª£bc‰ fgÄÚ9Õä¦$GINÔiyŒ-NÔéàž×ðqÔ}òJ˜Ùµ˜¼&FQŠªf]S•·YvåÚ+ì™c´ÙZrÏûÃ5':ç=ÊQ’«ö]Ã$걟gínÌnç<ô-œïÁ) Rä&ŽÈí§ø6<П`ú ê*¥w÷Xócj˜S?Ð D2ø‰.ˆQSDj‘ aŠH„Õçßt®U}¿·ìëyi7,BQŠªnK ‚D}ªòî(#r–ÍovŽŠ‚”e©F>ˆ-ÕÊR òT¥•ë©bPyª¬Ÿªl¹Îµý}•3ú’ôà”éŸqQ[ñI å°ç.ÍgØÏíód[á¥ýN„M9Œr˜(ò#ì"1&ŠÄX}þ òMÏ7¦ïl´Áã(É5æùúÖ ‡­Âx ?mEAÊ‚ÜF}N:¯ÍÊô7gÌ=ÈMtƒÜD7XMlï\dý ›ôz°³Â÷=ûVO–Æ) ÊR­ÕÓ”êe©PyªÆêi?U *OƒÿU°M]—À>>óâàxÚ—Á) R¬6ú‚Û,nÿƒÙU&}|æÅ0ýØÞsS’£$WÍëÜ.”¡¸] 7Fôl·K£$WíóÝóÇ'ýÓReÎr”äªyÚ½KŒÛ¸}‡—˜) 6&*g‰î³=˜£ô¦Ð×~ð¯ýŠÇBoÛ°‚^ö}| ‚”¹‰ÐÛ6r_‡ßìÃ牋Bçÿlí+¾nj~lóüØÌ~lmR³ô4Y–šU(”¸ÊR³‚å0E¤š¸j‹D˜"aŠHõ[µE"L‰°:Hs WZߘN†Jë F9¬1͉ZøK[<Ñ¡…?Å­©Æ—¢<Š“ pjÔEñ9JrÕ¾f=6¶|9¾1¸üóÕ8ÈÑ¿ÿž]àݯª”Ãêü|^Ñú·yÕNæu3?˜+Äóa;ÓÖüÚX«(‡=dSï’oÜB¼Ú®PjöcÕó-,‡»`B.œU-Ä(‡UÛš›¥M¬½±q‹‚±AŽ’œ¨S.Ï râï9–ñ÷BKÉ«¹ÖË/±-ˆ$ñ[lƒå°bÚòvt°á•}’m8bS£&Š”\þ‘EbLiT®ys»'Xóá£òÆ@øäÃGe£Vm[׺B*J 3¬xEi¤,XmÜ]Á¶™¿¿Ýþšùû a”ÃÛææªtiR‘cmÓgÝ!ÊBmÑߣ$'þžãS/2EÌ]Ó>éEȬ½ØäV¤,Xm\¿4zC¾Y%kÁÊ÷pS’£$W Ü÷‡U-R(”]°Ów £¦ˆTÓ*m‘SD"LùΉD˜"au¨)»¶Ój™}Ù·|ÖR„ÌUay7çî@ÝiñËwrQ² ·Qr)é¥B¡†5,¢ĸqNL©6¬±E"LéÿµÒ@,éA®¾ïyw8TyíͲì®Íû—¿‚ݵþò‡Â(‡UÛ”KÍ좂ôÁ¡²(ÊQ’k̳B3×ûæµEþiN}ï²yX±ŠÆíš…øW) ÊRŹÝ#ÕÊR òT¥7ïzªTž*Ÿ±öíÎøªç‰Ÿñ |AüŒÃ(‡5¶oÜ=ã.ì°wsFÙuNY²`5Ѭó¾Ó“wIgcŸ]æÝSõ§ÖgRRÓX6>L®ö¿›85³dãƒ$Qª&uuðsIÁÀpä’FÿøkëÛ¯dÑÛõ<Çæ+~og…ö—ÿÞµ% ÖL •¯±šé F9ŒÛ¬±[Ö¦Ta| ÊD°jMD%jJQô¿uÝSꜫ(‡Õ‡ˆÚ]]¢ÏÁœY+l>ÕƒS¤,XMì"ÓØG¦_|/¿Ë3 R¬66u4Fl^GS¸v6rÕÑ„AÊ‚ŠÔ%+ƒŠT þÉ‚Šï¬TlÄà3⌢ï:gó ¸ ¥:¹zlÊa”øiöŽ`¤ÔœNàíØæÙãøãíÛl$´ù¾ÜJýbÔ5QhÊ@”DyÚšnÊC(A¢<õðaꃔ(RuT€FfÊr¾¡ÆbÊjä(ÉUóv×Ù»ø ÜÅÃ(‡UÛ® oزtX5 ø{PïPTV(HY°±]ï÷~òñyj»[œ² eÁÇĽ1Ñø¹…;ê·¦ä(É5æÕ„l5rʲ N½&Õ7è¾á†PŒ{C¥(Y¡ 4"JVˆ¨úàÛ!©¿°óËÆÖÑN\›rå0Q¤´x8DbL‰1Q¤•9e©tp¢L׌”ÝaÞ0 ݘ¾2*sP£$÷˜wÎü±¸®S.ìd¯Sƒ”«‰·SÓŒqì;›Ãn ¨w6‰Å0ÊaÕ4èμ^;¿„a9¯¢ìû˜ —Ÿáä T礞›’%¹bà÷ý­™€íׯô·à©^µY°q¬ÈÜ”ä(ÉUó¼®×þhÿuÜ8ÔO=·ó=”øSÚ¦ûö dŸ ¸k/FQŠªÅ¤¦BH‰ ¿õÝü¯‹RT}ÉWI®2žärèi?%W)Ç(JQÕ,µ‹,û¾6þ}íÚŒle‰~“™ð|ü[­ÙÎÇhÏ7%9JrÕÀ&§ÄJÌ_¸}gÜn/甄AÊ‚ŠTi2wIÅ "ƒŠT}ùR1¨HÅ`8ÍB.7e!¿±ñh ò GI®šw-äÁÔ÷‚¡l–úÄ(‡=¶-Ÿ-9û.WOípÝÖ·½8M?.ó‹Ó ¦¿ºž›’%9Q§´¥uÈʨcÍ;à9®ØQáŒYW…AÊ‚ŠTS¤bP‘êÈ1Pk.©T¤bäÀÜ÷Š˜‡ó¢pQ‡ªœl) 66îÊPµRâ~°Ã3mت¤ÿv9`ûµñ}1 ¥ŽÝØ”Ã(‡UÓÚÙ š_ Ógl'Í¡=6%Ž’œø{X¦øs«ïÀyÈÀ]áâpïäï·‰¥ZK ¦/,š) *RqÀX‘ŠAEª?DÍ@c°¥bP‘ŠÁgàÜ®h¥áwm&ÐqG¯ÌŸ74~æô¢(EU³†,_×½½_!çÖuoo¤,XMl®T2Ö‡¿»þœ1ƒnü¥Ç~Ž’œø{X¦øskÞÁæZN Â[Yßíý@Þg‡.Ϫ÷hñWßínëók_àrØP­¹i!ü2‚‰§i›’%9nž4¹˜˜™ |‡ñßl¿Ù©¹=5¥(JQYu·ƒÝB/†é{Å}ä(ɉ:ŨºC§ƒu:¸æ54nk½ª{ÆWë–OPr8ˆQklóŒÌÛ®Ì)Á´áø-Ç?Ûwž»çÊ(¬Ùàa² "uÉJÅ "ƒ² b£±G²mÄ b#ëˆ[Moæ1½AÔØ§pS’£$W l×ÌãÒ>—“¿ÂM/H¸)ÉQ’«æž²Sž¤Z0à¾âIªAŒrØc[w1“tdè7/Æ©›ã›rå0Q¤tÄwˆÄ˜(c¢Hé›sˆÄ˜(cu˜\®XX–1LÓlN¾i: R¬6¶­!æÍCÜîôTò&æ…ÑEÞÅ<ˆQã¦ižò]Î3“nLèÔ'aS£Vmëvâjñ߉ ”Cñx £Vm;›qÒìpyÖÊíš/Æ©kHM9Œr˜(Ršž"1&ŠÄ˜(Ò¸yÒTéàD™®Œ”õÝ6ܳæJæ[^÷= ù›«ç†áZšE)ªšÕ¤ŽfÉi„Ò~JN#ŒQ”¢ªY‡}Ä–7Ìë»id&l³ea¡ÆS’é b”ÃD‘ÒQÇ!c¢HŒ=Ïÿƒî¯½[vîl@Þœ‘5ÚƒS¤,XMôõæýÌý‘úæà wîOÔAŒrXcÜžŠœløfZ|­ŸÛ•&9îšýÂÆ65×lµ-nJr”äª}]’"j"Ü`_Ç‘zÀæ6£'Ð>°€FÀVÎè ƒ”WÇÈþœ;ûünNÝ»õØ”Ã(‡‰"¥½›C$ÆD‘EZõ€–J'Êtpu¤ fŒ÷œtô;á¡ †œ² eÁjâ:;öú£…«²ÓDÆ8JrÕaý¢VGTÛ˜DÈ•¸§Z–ß]01ì*pS’£$§èv.StBNÑùNꄜ¢rUçuÓ¬÷¹vÓóÊö:1Œr˜,R˜…<"!&‹„˜"rœÌ]"¦ˆDX†Ôpß(Ò´}ƒ9„Q«¶µ±Ž‹zP«±û oúN¶ÍŒ‚”7tyüuÄ(·¿½Ï&œ² eÁÆÄÕ³ý޵P ¥BÁ¦F9¬š¶i©.gi0·’c;…3>Y9¸) *R¥Qí’ŠAEjäo`³E9ìy÷Ÿ½µ»<;¼[aÁPV?oWå(ÉUó´ÉÌL /˜šË"'Èý`¨‚@™?F=£ðƒ”ä¡z²Ns®ýô~¯ž¨Oï÷ b”êmÍü>†Ì”éý†Æ#¦9»‡(JQÕ¬¦‚C¬ì»†/á(œ‘ºÔƒS¤,¨H]²R1¨HÅàŸ,¨ØøÎÚˆAÅF Öç¼gcåßÒÅ‹´ ”–L9XþEÊ‚Ê/b©Ê/b°y®PÅ̧ìÝ<˜ù”Â(‡=¶ÍCKz(½CëÅÁ¯:F{pÊ‚”«j†¿DÛf=Y_÷þP ðÃȶپhúÎæØØ0»)”²±aÃ(‡5¦ù¼h¬l¯pاÅÊö eAEªáÓ²¥bP‘ŠAEªáÓ²¥bP‘ŠÁfà襺Ö6{Nñ®âÄxíä°ZáðrfƒÆªÄrá_¤,¨ü"–ªü"Ÿ·±,@©â»¹1vƒAŽ’³O 4î‹ ”%fQûp²hóÁñÇ‚=ë¼ô``WÂú.1ÊaÕ¶¡T Ÿbî©‚U¦h7®°Ô½/óo|•ß’±)‡Q«¦½5š•ýú` 7Ë~ b”êm® ÌH5I‚ú†WÚn'x¥M¤,¨HÕ·@*©T¤êÛ ƒŠT Ös×ïêëP‚AÆ-ÂÆçÅ0)mFÀêƒYôb £$W­Û”Ä3\ò½oöÔ×=eùúªµv–ÕæJ#çs¼/©›Oñ!ŠRT5룬^íÉöø^'Û£À©›rå°Æ´Ýž©åäËÂác» ªù/TCºgX*eAå±Ê/bPùEüp”_Ä`8W…2º+àÍœ7w 8ˆM9Œr˜(RÉl‘EbL©ï©m•N”éàš‘rŠï@Z»^ = 5¥(JQ¢ÂOF ‚D}ªO½;»jëA¹ âÅ0”~ðE+„Q«¶Ê,ivp¸1±´QÀ¦F9ì±m»sˆá¦ï½öî:>Kåºw&§ÐF9¬Ú6·o\okÁûlû"§ý[› ¤EzjJQ”¢³xõƒœf¹yîGn ÛNx¿Ï­ó`:ïD=FN•,œƒ’à eÁÆD%áGz¢/FÙÁ2áE\ñ$äiâA¯‚ßzÅ0Êam³õ ï ãÉ|§ÑsÄøißJ-™pÞ *‚ûSø‹aúÇÓsS’£$WÍ;ên]mÆ÷¯§ëñáÛ×F9¬×5Tz«+O©z1°ÝÚ˜à”) ÷w“Z‰S_ Ó½)rje”£$WÍ»®% _°üž.‡+¯»( ±‡“ë. ýû/®uˆRTó[v0¡Ÿu)‡Õ··›W:Ùþ¥¢—C„w…)˜>}öÜ”ä(ÉUóNÍã#uxy1 Õ 6å0ÊamŸf»ïîÔZ(õä$oøƒå0Eä¸õs‰D˜"aÍó¿^Ûï Ü9TÀ6îãºs( Rü“ëÃùº:pí¶Ùn7ù U8ãÐ&Ÿ¡Â eÁjâê<β|§ýcWœõž’WOÁ}îÙ遲å°FäiŽ–kÕ›7¶žÇ0Êa²H½M¬)b²Hˆ)"Çó¨K$‘{FòÜìUï;Ù?𧱓}£ÖØ6›A˜Þyôbظ˜ËÜ”ä(ɉ:¥YÈ!c¢JŒ5ï`³Ow ‡§Þ}½s~…õgWù]‘vÞè£`úlÙsS’£$÷˜·4jï žP(Г‘g1ÊaŠHÅ£‰D"L‰0E¤vˆ"¦ˆDX3H´âh; j_V§ã¥ª»Xªz¤,Xmr+\)çû‚нdojá`v4w§†AÊ‚ŠTœv¬HÅ "ÕŸè¼/‡½?®UåÍ|%7|C3›(GIî1ÏqßÛÙ=äαE)JT¨å³Ù !%*„T}ð°ÓÞªÇæûb6åÉA¤ý;”,Ô”¢(E‰ …§èP)Q!¤øƒ¯›|W™q÷¾®éÜUeå¸q^NÔùÉÉʨcÍ;XØ&ßÉ Ùýÿ^ŠYªÊþ=Wy ôgŠÏ—˜n¦pÊ‚”µjôhv6Ì|^Ÿ›Ã{‚”©8I\‘ŠAEª?-}_?Ê@ÛHÉÎ#:7¦—:õ\ós(‹W.Ô( ÜLóB0HY°Ú8£/JÎÞ×fÒ2gÜò_ SF£ÿ=Í•-ŽJrÏã¼Óõ‰Fq´ÜlP@é#T\4Ñ_¤,¨ü"–ªü"ëÛ˜?àË—‹ ˆKTyô8 R¬6v Œ/á6^ Q¿ÛƒS¤,ØØèêa²3o|Á$géˆM9ŒrXc›>Ó4Û‡í„î{‡ÂïÛµ…Š^e·ïóiï.ïàÎ&¨›ÃGÇMQ²`5Q¹ùV>㾆æ|~J”£$'êÔc¦LŒ‰*1Ö¼ƒÓ^è5NK±îd3½e‡ÈRO•Sù¾}ćbU¶hô–Y¥-1ŠRT5K-n®Õ]-8®Õ(HYÛè¼'öÁŽfÚÔZìycð3à“f£$WÍ»š€ÀUáàö-¨„¡§,HY°1Q=­Ö`S¹ÂóÅ(PÿËoþܯ+¤ÿf›ˆCM"^ƒCMì^ƒ(HYp°Qû’”<Ð]¥äež}ŸÔlçø›8}·¶ðØäÙ|GÆ4Á?£ƒŸ-ÿŠ §$¹¹Æ¼&QÌ…Wò oÐùQkd¶^£}«ãÚÏ&)P¬¹P’K›}ý•¤À(HYP‘*Q—T *R1¨H•fC—T *Rý¿x¼0;É«Y”ûïáî#¸·0¡• ‚uJ=ÞÍcQ—Üùóî§µ³Ïa5¥(JQ’Buº6bJRˆ)I¡ÑÀ’èÀ$ìŸw®Ç×ñùÔƒN x1 ¬_CâÁ§¥R[Gǧ«“~ëNšùr¶¼kÇ 8eAú÷_ü†)%¹úL›6í£'°Ÿ‡^ ]&5¥(JQ¢BÍ3` D¨Aõ©¯­—YÊ“cÙǧñx¸›y åìüy„0ÊaŠHµ(lj0E$žç?»œÒŸþsÌ«s#ÌÒ¹õ’èéö·—äÅ1MfM9ŒrXc›ëD8³g¹hwõur¸¬·p(]u¸­7 RlLT¼@Ýiké]$…B‡´…-ªK“=À2¶š#(Ï(˜žUÓsS’£$§è\’:!§è„œ¢óÔ 9E'äšá¢"­Œö‚‰™F#6å0ÊaÕ¶Û[Z{¼¯éÅ1{"+Ø”Ã(‡UÛ6çI•åÎß·g¯Î¯T bÌ/lJ(gìßoSÄ ž|æÏÌÎu77ìelÊa”ÃD‘ƙՉ1Q$ÆD‘Ö¡ÕRéàD™®Ñ¹5ÎSÉÀÛyÊ eAYê,Ùè‘êe©PyªÒÔõT1¨P²òÚ‚éµ;=7%9JrÕ<Ô>ëzüÆÏ™$=8eAÊ‚‰›§ê•G¦ êP 6å0ÊaŠHm×D"L‰0E¤ºe´E"L‰°:H®Ìðpb鱩Íñû@=¿ß帺ºG›êj t^®lBº9ãóéÁ) R¬R¯5EØW5+ù<lÇÃ(‡É"ge»DBL 1åIŽ.[דD˜ò$öŒè;I°®°®Ú¶‚5‚«¸-ÊQ’kÌ;kÈÈè49¿Ù»·Þeýè[¸)ÉQ’«IUfŠõ«çp(me¡´ GI®Úª°ïYlc³Ø…áÙocóm£$÷˜wŒ!MaÁÜ6¶`Þ©úh¹¿ö…MIm¦§´ÌöØ”Ã(‡‰"s½%c¢HŒ‰"EG‰C¥ƒe:¸:R´O;çü8†¬€~ƒt®'›V}8 Ø”Ã(‡=¶®üUþ$ÛV¹ÖJÂJ޶°1±³’† F9¬×´¬ ‡®ºÚQ² "Uò^¸¤bP‘ŠÁú6ºõxŒR"ÔgÛ’eŒ´(êE)ªv¾g¥t£Þò¾Ñ…ƒLóÆÑa² 7Qw®iÜ× |ylv)r!ñŠ©(GI®š§Epí<Ù›3<rÒj”£$WíÛfOà„ßÈT8”]8\É) >&~š$ý†Î!I¤p(ü8$‰„AÊ‚ŠT}‚R1¨HÅ "Uz.©T¤b°8‹Ã¼ôžËB!¯¬©~R—Ü«¦-ZÕ·ì€|qp ˜Éà”) VW°‹Q¦î›Ó2u9JrÜ>)A¥YÑø=°“"žÖüZu¸ºI®Ý÷º\na²àŸ,¨Øˆ3x1¨ØèÏ>?Íz¯nƒÆåþÆ@èu\íƒ%¹jžÚ[¦?ºðf6çÜ–ÓÀY›r˜òkh²W~ aʯ¡5Bù5÷Ò2çZIóÇó(yžÞ¶+;_+™ðœ=ñC˜)ÉU™°í¨3@}ycæa²àcã²h-Ìt×Âéçät×(GI®±ïT>–6¹³=ï uÙ=8eAÊ‚ÕÆ¯|œ· l dw¶à61ŠRT5kw¹´†°òêCò_ 纄‘þ]*p,ßN± •ïûl~Oú®2³Ïξ÷¾µKÏMIŽ’\5ЕÎ",§/%›ÅWb¥¨Æ®Z¥¦‡gæ!?ÊàË r”äDFQ©ÓÁ‰:\} Þ®);[g¿Ë5Фªp°»ààt‚”©úv HÅ "ƒõm¬ÀDÅÍðÕR¹€›!ÈQ’cö…óÕ ·¨Ÿ¯œå(É5ö-æêwO¢Ç߆‚ex.Ò,ãâæÂ™xÑߣÕ¹ªíaØwÄÚgü€JÊLWƒ;³ÇySj³¸›rå°Æ4Í+a¥—žkWþöû£nÐÈZRüQQ²`µÞ¢œ‹WµgØ_GAÊ‚_å0Ö%Küõ_6…“³~À]™²­¼ÏgP+ï3ˆQ«¶5=µÕYiè©]0}ˤ¸ƒ%9Q§^8bÊʨcÍ;8mç¬ÂmF9ô8 ¾<|¼ ˆQ«¶u] ßÐÁN+[›ékyjX-n¤,Xmìœ(ê‹(ÔgNeó) >R÷ÏÉçN¹›ÞɦÁ(HYðO”m´®.6mt€²PyÒ¾Âõ:0¨¼ >_Ç~• {”ÿ`ÊaÞô¸Þh«3¸\cå0E¤ÖVˆD˜"aõù¾9ŸãnN0·.ÆQ’{ì;®¢Yu¿Oc¬¸`0_ŽUG9JrÕ¼¦NÞ¹öb”} ®… b”ÃÓ†qæwë.ðün0HY°ÚxUPÆÓUQFï:}1 ºNw>¬c%9Q§ñÕZ21&ªÄX}ÎÉ×\’ oÝ{1JýŠzlÊa”êi¨Ðörƒðfý…3¾ƒœ² eÁjb-„·¾¿8¦mzlÊa”ÃÛήS„ô½öÝ/âëwxC¤,XmlÚ¡3çÁf¤ƒ3™ÅsËÁf²àÏQ’ËcÍ;Øí™ózw¼×ûy¶œÒÚp‹âÍ—b/ŽøòÆÎ^1ŒrXµ TÚöòÕcÆô×sS’£$w™·üïýV{§YÙë¿ ˆÑÓ÷þb¨w°4¤ÿrëWñ›Ycó/x€ÿ½í’Y9¼€í’™) VO™/çÀïC[PsÕµïpçïðsÇBíé…õþË¡»Ã¯wß_”X9˜ëÔ_[˜) >&ÎÍqØÝ«r8“áËLŒ‚”©F&ƒ-ƒŠT 6oCKh–'·Qg.VE”) 66îŠzaOÅP‚ús—ƒÛ{ÁšefçËLÉk_¡~o0mc!…ßÃå°j›6mJæ“lòeÜMnÞÕ½”/ç(ÉUûަW–:ƒþfó÷ÓÒÑtTƒØ”Ã(‡‰"ÕЉ1Q$ÆD‘V³SK¥ƒe:¸:RÎÙ±5g7‰Tí•pÊ‚”íTZéðQ±ktJ¹jÒá#ÎQ’uŠo^ÑiXŒk¥¨ç,»Vª·tø‹µI2Îæh¦M=I&ŒÑ?ÿÚym”äžgùýºNîo¶’¬ÍECêÇ3N7ó8;9Jr¢NýiÚ:œ¨ÓÁ5¯Aó*é/¿˜kƒ:`ÝFS‹%Í‚iYºÊF3†Q«¶µ>Gò‹°/ßû9JrÕÀMYѻDzów·i««„M9ŒrXcšo“óf›±›ƒmIúÛà eÁjâÞÓÕÀÍÊŽÚ75¸¸õæLAˆ2(o‘yå!H”÷ÎÈC(AÍ@u‘RÀ²õú)`™) VS™•ÍÞs¤žŸü—ꢣê{Øø0¹1ûÓÜø8‰P”¢Ã< ÑY¢M¥ì½K´ c”ÑЇ‰D˜"aŠÈq`¹D"L‰°fxZFôBU „9úaŒrXµ­ÉZ>)k¥RꔲVÂå0E¤¶¶‘SD"L©Í¬@$‘_;ü‹¥¨: ›«á=äÖÞq¿ä(ÉUóP„OYî÷w³¼Y[P. Ü`ð€r¤,Xmü¢|Ë;ùgagý}CÙ×Ûxs_îcߊoè¸:SÂØàT. þp” r¤,X¥~X2ªXû¸¼Ù¸‰a”ÃD‘KN$ÆD‘“Ÿä™|”˜“Ÿ%æD©žÅ¡ÓÁ‰:\ýú`É–r¾;`•r¾‹‚”¹Æd¨0‰D™~ÓΗ¾\L}qgÅôxXÏMIŽ’ÜcÞ]ûß 6yÅžÙ4xsØ15³; R¬&€Ÿœ?ôyw» c°±ÝÅÂáÍva² ·PØ cGÊÆMÁà‘ ›(GI®š×dv¸ï˜üË(Õ^ŽÌ|>ÝÞIOã’Ô_½¼w ƒ”µ¶v^Õ¸+ .þ|>‹ìýêßEß´¬rêœßcS£&ŠÔ.L‘EbL)MÙ‘Eb¬_bÿÎ?¼»§—ºäöÜ”ä(ÉUóš6ÀêA‡µ®Ø<8·enJr”äDêÛ¹ŸÏu:F ÃÈu WF¢aøŒõûµ|.jJQ”¢D…jŽŒ©R¢BHÉÏP{òö3D”ü õ ßÂãú6"éPSÅöÀЧVE.ÃVQ¾ïw/5· ã÷X5YÅà|w° (ÈQ’«æ]J§f™œY¦D£ÖØæÊ§°æÐìn‰T9xq?6‡AÊ‚ŠTi/ë’ŠAE*Ÿ·±4U Ž{ù^Œ3NÜ=8eAÊ‚‰W×ïˆs_òlóá¤ì+Ù^=g›{nJr”äûôŒÙfRë{Øÿpß<°‚Ÿo3Ô¤)Ti_Ô]@hAŽ’\5oµ»{ô‘BŽ…ë/>_Ðaàž~67}‘¢ç¦$GI®šw§ÝøRžìN~ µÂþ‹Í3ßu:SU°•éhL•) þÉ‚õá8kéù!øæpå"?GAÊ‚ŠT£rÑ–ŠAE*ëÛè¶”jâ4ßR ¤2ó-e £öØÖç ÇÓ~ey1Ì>" 9QAŒrXµ­«Èìׇêb·¢TN¿%¸ç¦$GI®±owÍü(wsø›µAã â‡Àè/RT~KU~ƒõm´™ýî䪂©c[Nw b”ÃÛøÖÇÑ»rí^ÄÑ;R¬R·6Ƥúéf¶©ˆa”Ãd‘º«Î 1Y$Ä”'©zëì'‰0åI"ìÑû}Ó£fÊn¿r÷™U‹P ­zG.FˆQ”¢³Ž«Å:v'®Ìˆ“G®ù²ïÍþ<õdàöOöƒgW4§œ…Y/ëŠÜã¾—u£Vm›A!áõöú‹w*[õ7ï$@Ê‚Õį/nÆë7óFú{i eÁj¢VÂØÀÙm`¹+5&Ô:oùßü6œJÍ|ëgÀù½-õ;Rwó߿ѾˆÂýŽQ)¨ÒcS£&ŠT™-c¢HŒ‰"l/S¥ƒe:¸:R´VÞzëôÏ>²ññ¸cŸöûá©ec<´Ä(‡=¶Ýw­*«ìíûÿô.ñ›¾-w”¢UÍBU‰²“³pz·ìäŒr”äª}gãËÑÎ?¼H°Pö¦Õ† Ê@¢à¸E³”a²`µQÍ13ë¼93Âùöbi#Aî{?þ‚ë°X¹|=ؼG—[* R¬6ÂÚûþxýâ >zpÊ‚”¿ JÎf-˜~’”ÓY£%¹jÞuŽ Þþ\‡*ß ù¢Ò#e÷E®eä(ÉUûÏæ]1U9}€öÜ”ä(É=ö­]f¾î\áÍY ˆ†ÚМ5 RllÜ¥$ËÃcmékóÚ…9QŠÛÍp‰†Ý—hÚµòÜé‚רãå(ÉUóºHêuÐ`k"ö4¯[›âí •<8Ö³(D£Vm;І²÷¬¼8§–MeQþù7=¸=~°”¢žç¹})üR@´ÍâÞå0HY°Ú¨ÞÃöÙóSµo;Ѷ»Ðž¼ÝEÁ~ŒQBÂÛ]D9Jr¢N}¶6ebLT‰±æø*'® W¢`à‹AãYáÊE)ê1k®(Ò—½ë›Ã1/{ÛQ²`5±‰Š-åX`á`Y'†AÊ‚ŠTé5º¤bP‘ŠAEª¾%R1¨HÅ`8Z´¦KœÙ™ãnlŽvÎûæ<Þ\'êy|Oi|›|sxäûä(HYð1ñh«ÈµZ¤!JtSvqÐ% Q”¢»æLpéØêb(*-ÊOFQ² "UÝ"©T¤b°‘ú›ïÿ÷õ)Y}óujù`æVj ¤,XN3UèÕa¦¸1¸iÞEŒ£$WÍkãäî Ü‚‚!NÃ(‡qÛôY¾ï^Æ3æÜäæ¹An |LÄB^+`]ð_ðª#«+¹µÔ—E!bå0Q¤ôÉ:DbL‰1ùIžÉG‰9ùYbNÔiu³t:8Q§ƒ«Cºs¤y÷Ü‘R@”:8R¢ eÁbãòþðg#ÆsÞï~f*š'†ë% eÁj⬥¡öSÚvr𮾖þ.m#*ÃW4÷æ`Ðw3÷£&ÊQ’uÞK&ÆD•«ïàÚÃmÈÀÝ—e'6Û†Ìî¡Ëw!1ŠRÔcØgU&3ëV(ûÍa1ŠRS¸¬ª‡àzÑËʆc£$'ê/æsètp¢N'?O}ö²Ÿ'æä特:žQ‚ùµªó¶›Ë¬E›$ÏЋQcàG¢¦E)ê±k-ðîr²²4™'Ò¹RÎ<)˜>ÁÊ™'QŽ’\5o('qõØ-\»ú»šì†AÊ‚ÕÄ6:ì®Q+:̲èp£Vm;åP‘•l[ -1]ζQ”¢³¾WDÄ}gñ‹ƒ0dÊ‚7a²`cãé:”ð¦œË·ùdó/ÿbo¬™!|l£$WÍk:ÒH³?U¼¦o×{nJr”äDÒ†Ý!c¢JŒ5ï¬&šq»Ïy»õîâ(GIî±oýhÁ ðÑ®wŒœøZrcàL—’E)ê1l{ƒP²ìƒ-œØ•}°a² "UÝË!©T¤bP‘ªzsT *R1XÎÇ“mÉ/lZ¶ù«äÐõÏ>iˆ^\ž¹ÐÊŠr”äªh?ÑŸÜ^ŒÏE27%9JrÕ¾®âs0Šƒfï¶„†»™o ¿|K) V7W^kдïEÞcwi—CGÌÂÁ:Þ3 RlLÔ’äãû‹ƒp˜žì³ˆ‚”«M°!p•uáЂ8¢ eAEªîNR1¨HÅ "U]‘T *R1XÎŒl”3Ö Û_óŒµ0HY°Ú¨ÝÂÇN$;Ûyß:MîlëÃ(‡‰"¥×ç‰1Q$ÆD‘VSbK¥ƒe:¸f¤œøüÃÛýjxsnhôm9 Î.‰z¬:oor3ñÛfP_ŽzpÊ‚”«ž j‡F“³O C£É F9¬ÚÖD¶õ•M/†©¿ÖcS£ý5å¾i@S }pâ/!Hü%ø•Š?ø¶7W ÿÍ¿ìÍSà0T¥D9JrÕ¼; Ë ü¾·;ìýc)öííýs ƒ”«‰÷÷BÐèO.‡¡Ã eÁÇÆÏP£â W®=c¸âa² "‡d©T¤bðOTl|gmÄ b#ëˆû~\ÇÁ>ª›ÃŸñÁ>ª(HY°šØ<«>4æäÿÞ[œwʼ86nè$lÊa”êmûн8ˆü´,få(ÉU›P? ¤¿4ò¬PŒ¢õ˜µ\™ˆhó3³õÆàfdfßj£$WÍkövŠãÂÁê"¾» ƒ”©úÖHÅ "ƒÏÛøªœîø»‹Ù[E;4ð~ÿ±¼žïšÜ²:¡ïzyØÝwN½8úL Á€0HY°Úx­~ã)«6¼™jáàCåÝTà eÁjâ®~¬¢üB©5—=6å0ÊaÜ4°L úþ®oö]¯âክïöF‡:etn_= Þü ¿ªã»5£Z_`†A}cããc:ÈQ’«æy›Ã¬ìyîoWgH¢( k“( eÁjãøºï‡Êœ»…Ãó sî†AÊ‚‰§çCqDÍXØ!ˆQ“Eê9ƦHˆÉ"!¦ÁH™¾Ëê¾TíÅA8Ûp'êáõ¾ò‰1ú‹”«×§¸ÿnžv=7l9ØV6 R”¥Š6z¤:@Yª¬ i£¾Œ¡eLÁà*µñaã(ɉ: Ϫ%c¢JŒÕwpgƒyfàNWÚ9¿=ëk’ƒé€DG»!0 R¬6~×TTi}Ï ?¢¹"nëÛ{'Û›> Ì”fSp¤,Xmlºd¾‡á&;ä tÍ0cµì‹Q”¢D…BÆŠC!¤D…zü]a+ì g Jùd) *R¥½K*©¬o£Û¦Ÿ:ÛÂ< üðXt= R|lœ¿Î9âÃÁU öØI2«˜—Z/‚£ÖpC¤,XmÜÏD¸`-eÿª¿äZy†Â«`NY² 7QßiÜ=ÀÇWaµÂXïP¶³“̃µeç3ܼÖLß®¼¡(GINÔ)ee8dbLT‰±æ,l¤x¹Õþˆ®y‰÷ÿ,ÚJ­Jà eÁjâÂC(®v{…ÛÞ/óA²`5ñ‚6«„ë2«Uˆžº.³ ƒ”׿5.þ·xcðÃà/1ÈQ’{ÌÛº`&.^¯àG9îön5~‡Î§Ý9yéÏÉëv/Is( ö`‹r‘#LAŒrØcÛþv¬Çw°7­ ¤ƒˆ²¹±ñ`6"AŽ’œ¨Óhviêtp¢NWu^=MÐØ<Ù ‹a”Ãd‘zˆÖ 1Y$Ä”'©†hí'‰0åI"¬~u_g4‘…LP?©ôà”) VÛB@›¿õèü™¸»‚÷!ÀNçí$Ì>rðŽ—AŒrXµ ¦]«3oM±ž÷ö:êr]ïÒ¨p´äOÕÕ GK eÁbãö†e÷Se} ¶÷G;o²¯‚µÃ¸3ð·Lá%ÊQ’{ìû|×tÁ e·Ï5NÝ•J Øn?¥=ŒÜ) €pÿÉ;„AÊ‚ÜÆ°fÓîU·Ãlƒ•|´9JryŠÀ* )òÚmüµ‡0ÊaÜ´ÑfRó¬9$Áw;7gÔ@gÿÂáÏ–Rà eAE*>ˆ+R1¨HÅàŸ,¨Øè÷ü„AÅF¿çg›»ý¡4o÷ûÃõÃ`NY²`µqÿp·˜òÌòm>›Eí=|ý}yù‹QïÇm@S¢ $ÊS–<‰ò$ÊS˜ú % „Ô3*­ p2Váðµ̉) 6&.øÁðþ3…~ÎjRñƒ­ž`ÓÞŸÅ6_fȸ‡÷¥iŒ{ø GIî±ïÛ:JÝ©øCe|ŒÅ0Êamh`Þ32?Ÿ|•Ž+àÓ»1=ª|yAŽ’\cÞgÌá³»!m*·¡ù¡´ò5«M{ »Û"»{™¿8_¬Çf¤ÿÅëÑøÞ¥¨ú<¯{V½-`_Œû<;W§Ú F9L)íº"1&ŠÄX}Í™>;[8\ßÁן(HYP‘jÔwØR1¨HÅàó6¶Ö¿ v/† >_B¥¨ªðºC¯ ±ñyß7) þÉ‚²³Ò÷Øèe ò:¤ð¼ëu`PyüÏxŽÈ݃/éTìóaƒu>¬ÚÖT´ënq^Ñ^04góŠö(GINÔ©û‹M™Ub¬¾ƒäj\Ómhœgñ ½•a¢øŠC¥(Q¡ž‚n)„”¨RσßïHÛ2Êé‹k¼û®üÅ(GI®š·;–×™Ív»»n7QH¾hí­(FÐ7 ƒ”«‰ç®€æs:¯@ýò) ÊRþ³¶T(Ku€ÊSÕg ðT1¨ ƒŠT >¯ãóFÁ¹÷Åþiö¶ÚœÂµ¾1×î6 Rü“ýý®Ã b£?‹lÿ|ypÁ•Űö&»Çp‡o½§¹pÈA½õžæ F9Li8¨-‘Ebìys—.¬.Cûƒ¢©{h) V»Ò-VÃû¼n® íÜoL ‡·—s¿1 ƒ”«Ôów‡-²¿3¤Q²àó6oíöÞo¾öïè3vøS †"äÌŸÄ(‡UÛ®Æá‚öý ïj”k¶÷¯}®ïK¶_ŒR£Ï=6å0Êai뽉åD<Láãëû ¶ó™o}‚”«m~+\Þ_ ƒ»»/70ÆQ’uVK&ÆD•«ïàËÜ2NìrvàÐì›­ DE Ü/) >6âz ¹Kà¢iw ƒ”«Ôyó¹tö:¢ eAYªåÒ1¥:@YªTžªáÒ±Ÿ*•§ŠÁ:È— ô…\_ ñ¾ Q”¢ªaèvž;—já–Án=8eAÊ‚ÕÄô®Þû¶;7ö|F¼«@Ã^Õ†EÜ«) V½½3wn£Ú%G§,HY°ÚØ­ÞF_½ ˆÒ—‡Õ; Rll¬çlý²0÷ÊÑ´ß7{=7%9Jr¢Î¤Ì¤JŒ=ïàîîCû€pdlœEAÊ‚ÕÆÕùò‰æ\´ŠÎ°Í·óæ^™Â}0w EAÊ‚ÕÆ+™¨že\‰RC®5ž)å(ÉóŽw̯ÖpZ¶½]HðÚ® 9­üø„|j¯Îwîû‹Q”¢ªaW2_lS0ø¾Ù&&ÊQ’{Ì››z†7…ƒW§ðÎ¥ڵ˜ýkÍM¤†¿†¥Ã úO,cS£ö<“uÃ_9¨Ü^øI% RT¤ë‚-ƒŠT Ö·±¤¢A7‡=ÑËð{›ZA–lXL\1¤0Xqã>Lョ%þšÉÄŸBPóK¡™…’\}Ý—§;Ü0ñ¬žnÝMÃ=ÈÓCÿ=7%9Jry¼ D9rl0·K9rDAÊ‚ÕÆ«ë@¸-̱ž‚¨2§ÇÈÛ*1ÊaiûgoÊŽuÖÎóØ›g2ž¾•GrCö¦ex"!ŠRÔcÖñíç0WÒM5.DWR£VL;ßí•þNâ…ƒ]‰¹Ã2 RT¤JÎ\—T *R1¨H•¶.©T¤b°8νÛËïë’ `2çù¶[ÄÝ«Ô+ú±­÷ì1Êai¾¼ô­ßÝG³¶~×) >&~v%.b7 -_s¿41Êai_àìì7/‚Uvh€) 66V±Ïe'ý‚Á}';êG9Jryw›àp#êsn=¤ž0ç\w¼æÕglOå(ÉýIr²}8H(Û‡9Ù>Pòœ›éLÝçòÙlÖú´˜ÓË}§^0¤U0áž+¤Äè_íð?Ê@ÏS\ÛôIG¥÷óï¦t yÓ÷Ë– F9L©VDÙ"!&‹„˜ò$µ7ž$”'‰°:Nî¯ y˜G§pÆŒ'»t eÁ?YP±Qš-]6bP±ƒÏk¼sòáiøÍÖŸ›k÷·® ®0HY°šØæÓ¶‡+Æøä(ÉUû®ëÝMæ_ kdnJr”ä÷ËcNœ»âR·³ƒU,2å(É5æí¢yV”µ@ãYÏs? ½üèV@˜^ËnQ²àcãñAIÒr'³ËØSOÃ|”ÝÔõÕhÊ@”DyêÆÝ’‡ Q‚Dyº›ÄÒ)Q`à·ße :þîò“Y >ÉA¹óh/ãð¶,ÊoäžÂF9L©m‘SD"L9Î.‘SD"ì$¾{¡†Ùôœ5/ðìŸÇ,ÎV»vAß•íºbå0Q¤´b;DbL‰1ùIJûBϣĜü,1'êK:œ¨ÓÁ]Cúû¿÷»sèØÞ5Ò€h‡ÞW–&@Ê‚ÕFo‰ÙÎÁn‡¨'Wõ;Ä„µ8A²àcãçíjÃÄzöý»«&½aÎ ÂKXû0g¤,Xmüž¾‘sð§ªåXYÇ´Ê᜛ng–) *RŠ[*©lÞÏ ƒ§ÊJ O&€iÙƒý†÷/Ömxõ‡¾¯d~Õ±&õ•L€”“Ô›N]•UìÄ%jnÒMÝ=þr‰„èÃY“3¼£]xUü=xˆ‹Ròo¡OAþ-D5¿5¤+:âÆ ðOT¤âw§HÅ`›WŸ¾P*à¶ŒÆÄ/ýýf_ú2SµÃ߀§ËáƒO€”¿W,2è¼ÿ Þ ¹s Î×`‹âÚBhaŒrØc[ªö/wÇÿrî$å®ô_jF¨ï%ܽxÜÝÉ^{BÖŠ%R¬6‚`É;ò‹y‚ì|®ØÛeÓ8H.ìyîÍcêö8ƒ%¹j߆ÄþbMR´ê¨þ°Oý†ì kŸ¥(E‰ µ8)A¢>=Oýh/âV:™Qï‹i@S¢ $ÊSƒ –<‰ò$ÊÓC –>H‰!UGEÓTÛÑ7æÅ8è0î«¶ eÁjâýµD¼öCG¥ÎkÆ(‡=¶°=ò}4Xú÷þy¿—ú4¥ŽksÑ7Ô©(í;ê„1Êa¢H=;׉1Q$Æê蜅¸|£AÁý0÷táðÄÜÓa²`5ѹ¹‰Î]áÌ-Œq”äû>³– Þý‡oC]gÝ,iû<Í™7ß­?v1Êa¢H=±Í‰1Q$Æä'y&%æäg‰9Q絇ˆëtp¢N÷Œç6Ý\Ý+ÃY륣×ÎD)JQ¢Bu_o D¨AÍSoœ4Î<çŠÞÜIÄ(‡=¶-;º.âšÊû¢¥_ðT†b;€wöÁ„(JQ¢Â%¥R¢BHÉÏðÌ=DˆÉOb¢Hv¾òŠÄ˜(cÏ0þÂ.·ýyàÅA}ü÷à”) V÷æ¨ݰ/†Ùþa Q”¢ÃÖë„ ³oùaüÑ~™ÆÃ eÁÆÆ6l9>©z«bà¢È¾ž*ŒQ{lÛv_ÝðPö14ä;Òíc Æw¤‹‚”«Àþ~ /ÆáÒ—M¼Q²`5±s4¡ÖsÕ rìX|ƒ¿ˆ£›eô ®a–) d ³L¤,øØx^á—ƒüÅ ;+›;ðc¥¨bÖüîæ ãÕ±yâáƒdóD¤,Xmì"Á𝂝ó|ýž´_j(KØ* `±t­ F9ì1myW½ß Z°æêò‚F9Jr¢Î¤Ì¤JŒÕwÐ /õså£ë†€×®E)ªšuïSc‡åyi¦Ww|´P aŠO°AŒr˜"R{"@$‘{žÿ×5µò¼æŸQÝFÞ(§'æ<ñôä0HY°ÚxmÞÜ,^„9OlŸ) V¯´ —óîÅ °ã`ÎÅE)ª1ëtLÍ}~ÅÞª¯»ç¦$GINÔ)úº:œ¨ÓÁÕ×p(;)«¼§rF%XNY²àcâ:¶*÷}yë!oÀ£¹±qqO&ÈQ’{ÌÓjÆí²‡ÃßùN'ÈQ’kÌûài‰/Jø9«xa¾½î>ÏïÝmÞÚvÿ~w+1Œr˜(ÒˆƒZ"1&ŠÄ˜ü$(¨ù(1'?K̉:­(¨¥ÓÁ‰:C¿wµr~ ”Ãêt8ûùB[@}_¥¬´Q²àcãÑìäÜaâB¡£ ßËÅ0ÊaŠHõhc‹D˜"aõùû‚¾<‹üÊÞq·yõüµ9ábå°jÛ}ƒˆ³}Ï‹qu%1±)‡QEê©s¦HŒ‰"1&Šwà•N”éàÊHùùÏꘔ–eÙáW0”ÄÆ=~QŽ’\5¯:¹ŒãèÆ­k²ØÓáÆ a”Ã$‘ÖÑÐéÀ$‘ìùY¯Ni«ê®ºÆå÷쿃0HYP–jÝÇbJu€²T¨(¯ ÈÑ¿ÿžþT„§II®>Γ=N×;¿)éT+`qç%Ò‰Q+¦}ßMä( _¸vsEÆÂ eÁ?YP±Qßt1¨ØˆÁúï w¢!–â‹lXˆ% R|lü,_ß~a6Þ

      SÜ@ó°Éa… n˜ åiçS‚Dyå©™›¦>H‰!õŒŠ@k™WÇ€ˆ'ïz‚(U“ß·ÌÜ7?,~Þr”äª}×Ý×ÁTÛïéŠÈò±¢(E‰ õp¬¥R¢BHÉÏPsØÙÏQò3DÔ•ú°YÀUY8#ü׃S¤,XL\o'½µ’}ôkëÛ—¦9¿nm4Ò¾Uή‹Q”¢$…’ƒ +Ä”¤S’B适bJRˆ©ªðd]¢ÅƒåÊCAŒr˜(R?¨›"1&ŠÄ˜ü$uïŽý(1'?K̉:Ô S§ƒu:¸gÚú¼õ [¿OX?­WÞÞT0Ðç‹{åƒå°Ç¶ùÚù2ÖÓî¾gëp:dñ­ßáE9Jr¢N+ddétp¢N'?O}§m?OÌÉÏsu´ÜeêÑ÷ú"ÝþÖ¥£p8™ŠµÍƒ”«‰Ú¥NVdžB¡£Ÿ$bå°jZºÃUP×Öëhžˆan¹¡Ñ kÕëÄ(JQ¢B5ìm D¨Aõ©7ßš…àŸÚÁ6þ¥9JrÕ¼kùw†Ÿ_ ³½vÃb¢(E5†}«aŽÈó~‡ÖBâ¤Ì[^ÎH·éÁ) RlL]«õvE3%×µqa‹ÐWÙ…ÜŸ‚(U›Þž¦j#Ö\(޲|^ «áΟE„¢Õ˜uÍ?ïÁ/ÔŸpy·Óu]|y<»g]Ç{Bäb1Ö‹ NY²`µ‘wóME7¦‡'•™(ÈQ’«æ³Ë+¸õ^ÁÂaÝÖ{à eÁÇÄíÓ,^þháÄnJr”äª}ËÇ7´ß ÜÛÔä@K•u?€c¥÷Ͼg$Íôà”) *R¥]§K*©ü“/ʶƒŠ|FÜP'àÙ½\ÐïèVˈ†ÝK¢ Tmj“ÝàðŰæˆçÊ­Šr”äDŸœLŒ‰*1Ö¼žgïä®Å(Ç|0pÔûò1Â(‡5¶-šÕZ†ŽÃYÏͧ¡êë—2 EAÊ‚ÕFÙ{a§ÓÝÔ¸›·Óé‚å°Æ46¹öH7%ù›¼ØÇ=ÂÎæÜæ®)Z<øÉ-†QSDªçs[$‘þ_ÛÔçoíkc˜økpŒˆ?Yjɱ]3þºü*ÜwwªšNòF9l°ÍÞÖð:ìl˸äÏ®RHûp¸q{·ET¾%Û{uÖ(üžšj9ÅꋇÜÐ. R¬66Žó@+ùÂáâæ:ƒ”©8: HÅ "ƒ² b£±·mÄ b#Ÿ÷Ùœ5,`\@ìƒdã0HY°Úxj~Ö®fdcãÜy[ÞêïñBðl>cœ² eÁj£z+¨µ>8@³å0ˆQ«¶)‘U{óc±wÿQŽ’œ¬‡Äe˜“uúCð?ÜGùlÍ}ÂÒø¹=Î ‡ˆÌÏ) *R ? -ƒŠT þÉ‚ŠÒÂ䲃ŠlFÜ×tÈé¦ÓÏïrJl”£$÷˜§wųÛ=`³›5Á) RllôœxG°Ï:8mwÔ7ÿÙÖî¤o,x‰DË<ï#) V¯¬NáX߬Ø,­©@ ŒÎòšb¥¨jÖXéò?oë~øœ­|- t}ò TAM9¬ùµ¡–Ñ7]GÁúD/¯·· õá¶6à®*ÚÆ°H@£ÖØv­ ÑBœm<>ú6¡Ê`Q6¡AŽ’Ücß>7ß­q”ã3îͽ¹“ÝîWÄ(‡‰"õŒS$ÆD‘E)‚¦J'ÊtpÏH9¼µœïl’'aðîÅ0©É§•E)ê1ìt݈Å[þ àxÇ¿(GINÔi$T™:œ¨ÓÁÕ×Ðì¨Ü™â…B¾§Ša”ÑjPƉ0E$ÂêóßQ‘«ìbÝïˆG¸:|À‚NÞ¨ P ¦œw*b”ÃÓ><êçJQ)X³iwå¨D9JrÕ¼!Wܕܹš7®I†~CvÝð¾C¥¨Æ¬E9 õ£¤š±¿ßçáëv­…C4¾D9úçßSSÍ…§B)ª>ËÆ%†]M/†é¹Í²K,ÊQ’kÌ[}Ç%v(ßï»-ÿ•Åuî}í¤~ç»ÚÃ(‡É"÷qCê 1Y$ÄžWÐ5ÿwt|qP÷ôà”) 66:Ë5Xàroëè¤G#‡Ÿ Öì]Ñç(GINÔil,™Ub¬¾ƒ¯x>î{×è ÃÒŸ“ ‡|KLb”ÃD‘†À‰1Q$ÆD‘–ÀRéàD™®Ž”.5YM¤â›ª¶ÎIu¼Î©`ã1Ò®sŠr”äDR4Î!c¢JŒ5ï€gJúÎ1ëx5ï ) þÉ‚Š8T¢ØˆAÅFpf_yMóí7Ç.uÁD'‰Ÿs<öõ\l‡ÓÅñ®:…ƒÞV' Ò?ÿâöÕ“¸­SQ«¿§§c›?ž¸5/PwB ïïÆÐÎe|˜1Ž’ÜcÞþEûê äEÉû~¡ã8úÁ‰(HYP–j¥YšR ,Õ*OUßY€§ŠAå©b°ŽœCË5wN{qÔ˜>àÑ&Ë:º=ÏôØ—zÊ2ïƒãÉŽª1Œr˜,Rˆ0xDBL 1E䜉0E$žqr޽«}{¦róØ»|{¦(HY°ÚØ¥_øw?7'&c‹àñ¾Z‡«ƒ÷`žg¥bU䎪×eoÁñ¾Zê‡ yu:¥Þý=–Y);´ÊÞ …j…X&`£VMë¦ic•fÓô^gj#ÛÕ4„AÊ‚ÕÆËuíN:®`³™ ôØ,Ú|;) *RñŽY‘ŠAE*ÿdAÅFÿQ) *6bðqß«¾0X¾qܽ¢œ-¦^k&DÏ:Ã(‡UÛÚg9î}ú’ˆ£ÞÜãgõ A”DyÚ‚bÊC(A¢<5›ÂÔ)Q ¤žQ±Ý7äDlÄ&vd ƒ”«;Ë w…Š 1X¬(ÊQ’kÌÓ²§íÊ…C¿ Æ*A8¶±Ç–#!ãØ/,œt}ì'(>¹Ÿ _®nNØÉÙ‰Âa²àcâÁ2“\ኛҟ‹®b”ÃÓîJg_ÇÀ"ǧÎF9¬Øv¾ÕúDë@ó`à‘°M£Vm»ÆÏAç»™kqùÂá›mà eÁ?YP±Ñß1! *6ú;&ü€¿“õþ;ÇïÒñJoÚ~øG+5R”¥Š5†©P–êëÇqG݇ Ÿ•ky~î»ygõ¼v;_„AÊ‚² lã,m<6:@ÙF¨¼éów½ *¯ƒÏxkS{µ‰n‡#矧öÆ(JQ¢B­ÎÓˆ Q‚š§Þ†z¤5°÷«¾høÅ{pÊ‚”«ÔsøÐ…G³ÍüÍÃGÆÔl¥‚=e¾/üð‰¤ö¼öyQ*'ì"µÂÁÄ}^¥éßñ;^å0ù×à[— bõõñ¬*×Lïäg¢%9Y§î;±ubNÖ‰¹úŽÃ>fÊéÿ…3ŽÞrþ¤,ÈMÔS¿4îÜøgër†Ÿ‹ÚîÇ<¦ øÐù15†Q«¶5³®î•&ÝCéwà ä(ÉUó¾‹ü9Xµ…Bg÷“¿¹s`”ÃÓ¾|¹t•Lãíµ®¦(GI®š×…åžÄÙÜK) V/§1ËË®ÙÔûÉ®Ù0HYð±qý}6Á:¨›RzjJQ”¢ª]ê"Wë‰Ö=åIn×5zî†/²–“MÖAŽ’\5°©\”0eërcúcQv.AŽ’œ¨S<à8t:8Q§ƒ«¯’]Ù CžkžÜå(ɉ:õh¦)c¢JŒ5ï`cûŸqw…2:{/lçÃ(‡É"õó¬)b²Hˆ)OR=ÛOaÊ“DØ3Lö.£Lß]ñbèbÇÕÆ¶Q²`µ±Û$I{e“TÀñD6IQ² ·1Ü#ë<šÝ,à~1ê¬[Ïî*DQŠªvm×´ÍU9Ï« ÓÝüðÅ@´iám£%¹jàåžÓWõ{sµpû.;-n`¤,X¥MN•‘ ¼}¹Ô HYP–j¤ÙR ,Õ*OU:Á¹ž*•§ŠÁkŒ¯ÿ{¿›1n8¥ºqS1è$êFxœ£$ט·(Ç~Ý+Õ` ¥óJ…1ÊaÕ6žåä(¢y°öL쨡‰s”äóVÓË*ýÅÚ}ÚèbèkÞ^Œª1š2e Qž¶÷7å!H”‡ QžžÏk郔(RͨØ4çt;wþ­\˜è/¸úsªŸÙrü‚ZZ¦9|æÃs:œÙ{+Ø2ìàôhg£ýµ]÷٠\}–W‚e0»«OõH"ew%@Ê‚s“l#9IƒEU}@#ÎQ’“uJK£G'æd˜û“ädûtW„mædû0÷ ³å3óÏÀΪÇ_±0 R¬6v;L5bÍw˜1d¾ÃŒa”êm«ïTÑ»þ‚wöÇ+üÚ—ï"nÈ ù."DQŠªf]®bwÉå®í^Ê¿8Ö J›rå°Ç¶í½˜˜Tã÷›—°C»ÁÀ&ba£$†Q{lÛ‡Œ"ßÑìæôéR9š9JrÕ¾æóvæÂV Ì”ÃÃ(‡)"5‡‰0E$š翩˜uœ)œäh°¶ÄÇ'îYþ‹uˇîêë 6ð=|vVÁf¤,XmO¾oö½ï‚’\ªæîn[s‚VÆz'h¤,øØx.«Ï}þáà˜.ì¨Ì¨`+ÕQ'ñ .ü='ý­ úLã¿Ø©ä5è¥ä•U·}-y£Ö˜¶õ[TGÔ¿bÈëÚç4Ä9ú÷ßÛCŒ²àŸ,X¤~Þß-06)‡ý÷`›~^3Ö·“ŽP7%9JrÕ¾½.dî†U¿œVš¯×ÿÅ®-E¬Ô_®™YT?3›X 4F¬y%FQŠzÌú\n„`î_ðÊ)w:G_ ³£Ü¥£(E=†u· ‡ùèûén^Fæ)EQŠj küÄŽÒÚ¯/M̲‘ýÄa² "UÚQ¹¤bP‘ŠÁçu´Õº§ª¯®¨Øx”µª+â%9Qç''c¢JŒ5ï`•çLÄ5{1w~iå`{¾; ƒ”ÿdAÅFìsTlÄ b£ßËùùή³ sé mä˜K/ˆQ{l[—¦tÁYóõ»:¤Â$ƒ½õ›Ãn…ƒ½õ(HYð1q›¿é‹a`7Á_zˆ¢U »ÜDz^×áþ\8èÙbí›3sc‹Ê ÂÄÈ­*AŽ’\5ðºð\¯´½¸¾’¸rFFNY²`5± -ÖÀ„¾a}ˆ‚”©Ç<ó9T¬ãÚV¶­‚”ÿdAÙFq/ã±ÑÊ6:@ÙF¨Ø8gmÄ b#«Ôí*öø ‹Ó/w^ÜïŒs6Jc%9EçžÔ 9E'äŠÎùý¹fð·àþå¾÷»ú>:£%¹ÿîÞ®”Ú®@ƒ'X×G ŒQ«¶5)ÛÆIwéÂÁ“çÒ¯…QŽ’œ¨Ó8{Z21&ªÄXó6×IwàF'¹+DõÊùÃ*[ú?ß#á&Ÿ?W¸püî¬ÊÛÊ›f©ô6R|Lœ/_­;½°‚³k›ÎN<óok*㻽^àÆNtAŒr˜(RÚi;DbL‰1ùIJçϣĜü,1'ê?"‡N'êtpu@ïmLÌHX ¼A˜A4X) VÇ@•Ù?î—}¨ðýâwÿò§ê:¶> ÞD>¶†AÊ‚ÕÆ«Õ²´=k¢d,ɪP(dÏ’¬‚å°Ç´õ³òÝ™oyXooSÌÃø#@«h¶rtçÛoìˆó ¢æ(Ê;_›w®†nù+¿!Nåoçv9[ PÃ8³’Be QÞ8c:ä!H”‡ QÞ8}9ä!H”‡ :$”ÒtïÜ6¶ŸŸH»±Ç”!ØSSŠ¢U Ûš`áZ9ÙüqºîD…1Êa¢Hc.¶DbL‰1Q¤ÕÄRéàD™®Ž”«Ä#ìç½¹{;#nJr”äkR'ä«ï¡q§¹ÙU®õQùÜiQ² "Uú–\R1¨HÅ "Uš@]R1¨HÅ`8Cw:ÇÙby7ûî@–YáàΔï¼Ã eAEªî]R1¨HÅ`}_Í»b•?±á F9¬ÚÖšõ¡ÆËƒPŸ{pÊ‚”k®ºööx®zÆOÐÊUQ”¢D…Z‘¶)A¢>=Oý¾ðÃW¢ýbh Âë7ƒå°Ç´ûÞoCºãÀŽzå3^ £&ŠÔwÔ¦HŒ‰"1&Š4öÓ¦J'Êtpu¤Ü÷^JNáwãxcå5Ëò•Ývì½`ÐÆ‚ïQŽ’ÜcÞÖ…nßÐ7ÿb ô%ðÆ"a²`µq¹&Íq̈©//Æ]îè7¦F9ì1noÆg 9¤px»ÈGh¤,¨H5¶‹¶T *R1XßFç%pg­NÊ«6ßAŒrX5®« wÙ¡ÐÞÕÅãõÀaNY²`µñÐBÔæ&«`öfØdÅ0Êamkfov÷IðöWxqN:?Y+õqµ §/ý€[;]YØ…ƒù ÷ ïöS@x>ú}R”£$W äCN–Ù^ îe‰Q”¢³J­¯«¬ÿŨÁ9`õA”DyÚ“0å!H”‡ Qžš6gꃔ(RuT´k.Ã1î«ìznJr”äû¾ÚÍ–æÒ¶~–:ƒñ}Q,¡ PÊÄÑCS¢ $ÊG°C‚DyåÓ“C‚DyªC¢É†Ô¦'ž Y ÑýaeCÆ(JQ¢Bu±³"HÔ‡ úÔïŒÄæàê:ý|…¬K×Y$ R|l¼«ÖÃE¨»äúÌ0HY°J½òZpø%Ò„AÊ‚²T«¢)ÕÊR òT¥cë©bPyª¬ƒ¼óÎ îÙ;÷݆–1žÝø6vañlÇcå0E¤æ”"¦ˆDØóü÷÷'äÓ©à¢TŒØµT…3üdr1U¤,ø˜x¼5ç€.ÿ=f%¯Óª+,”}@ZØh‰@”DyêÉ’‡ Q‚DyúñÈÒ)Q ¤ê¨h¾É›¦|076žpÀ÷ä(ÉUó®ý‘»Èž·ùB_ ÒÎ}Š·6DQŠªfuîSæú¾ÎÂç:>_lÿÅöß“ðþØÄ(‡ý÷`û,OqÌù¶õ[šÂ SŒM9Œr˜(ÒHF±DbL‰1Q¤•Šb©tp¢L׌”CqCÛURëûXTÿuóáíŸþ#r”ädlëÖ‰9Y'æÂÝ¥rŠNÈÕs§JGƒ9ëçΛÁ–úºÞ…áîRôõÓrNY²àcãlÖï„v½1Ü9?£%¹Ç¼µÙZ;ÎX£åÍU¤,¨HÅûGE*©þ+ýG¼0¨Hõñ~ÀSµÙU …ƒE÷¼j! R¬&Ú§åË_Á!@ùðcå0fZدvs¸y“l›£$ר§å0­Óª^`˜‡AÊ‚Ôíý›ãîÛ™—,ˆQ“Eª‘m‘“EBLy’š›λ¢D9Jrë}ÏhÌ!ö`‹pðÐ}MAŒrXµ­[û ¿2_û ˆBÖÃÚ) >6n? y«^  –?-FQŠªf}›b¦@ì©€FðXŽ=…AÊ‚ûÕ˜:ÜQbÛ%êU*¨åÅJAŒrX5íêS•lǼFŸ¹^ÁæajÓßð,oHÔÊ£ Q”¢³ärðùÜØx^_O£$'ê”úâ8dbLT‰±úî™AõÙjÜ®¥­ŒÈB©}ä”È F9Œ›¦ fº2¾Î/ŽIN«›rå°Gä9»"’Ã(‡É"õ-¾)b²Hˆ)ORÝâÛOaÊ“DØ3”ÏÕçŽáΊSû€³"ÈQ’kìû]ÀéÄ/†-JHNyŽQ”¢D…Ÿ”BH‰ !%*|§BJT©:8®Žñ0É Âmá'‰‚”«w!œ¯»Õ‹aÃ~ÍìÀ£(E‰ …Û¡R¢BH‰ ¥F{‰5b¬Œý}}9a7ð~_9èë òbèžÅ‹ƒå°Ç´ÏûLb ˆ¿Ræf ƒ”«÷Ý×ÑÜæ}ž•Üm«®Pèü½°÷Ã(‡UÓÚÍáŸcËAá ³Œ­QŽ’\µ¯ÉO Sïó ºÅÊ•ûÒ:s݉ƒqgn£VE~6~ražÜ¹Ì HYðO”mœ%'–ÇF(Ûè•×!9/]¯ƒÊëÀ`ý*š Tõðñùó†€×OŸ!ŠRT5ë cƒb)+·,„Q«¶5%Áãj";À ôV~JöÅ(JQ¢Ba)w(„”¨Rσÿ®®M O3Ý×;±Ì¡{1Ìn”0,Å(JQ¢B­M•)A¢>Õ§~æÂ…žÇQsDÜ)á7$-O5¥(JQY_ñ!ÚÅ‚ÁžÌ-~‡²S¶ƒ‹Qî1ïìÒ;Ñ4:(Û»(HY°±±MDR}Küx|^ÆY/U°óÝ<“‚|Ô)Ð[™úå“NŒ¢%*Òu !%*„T}ðuÖxyº!i 7& E)ê1ëó9øVוYÀvûéÊ€ ƒ”ÿdÁúpÖ€ÿýÕSh®äA‚ F9¬šÖ¤™Y><àøÛµHa²àcã|½÷ Ïåœg³HWÞOžóW«˜²–snœ¸ƒá‹aB^žéˆr”äÐû¡è„œ¢Óímaœ0}ºtBNÑ ¹:\šýb ­p¸Ö„íà eAEªQ#lKÅ "ƒõmÊÉÓÎøùáÙÏmgzN]äD¯ F9L)-H‘EbL)½8‡HŒ‰"1V‡É© K˽Z(«ÃÜ«1ŠRTcלðÊžKçú2¶,¬Lòá‚•I†AÊ‚ÕÆ¦XGõJ-ìßð-ì‡(JQ¢BÕWÄwTwñŒ»!拃ãÑZ§,Hÿþ‹§Ã‰6¼ƒô<”oã¤öEu¼Ù Q”¢$…,æâTˆ)I!¦Äg(ÉÏRâ3„ÔóÍ|¯‰ç-ø6~±¾*ÿÅ0ч.pS’£$WÍëR'Q×™jÞ÷J›8†½èýs×Iðø0ÿR£$'ë”B^˜“ub®¾†ê Þâ kî`“ºŠ/,DQŠ’JßVˆ)I!¦êƒ¿ï|«Nêk+Éþžk3/3²2-Ü”š Ì 1ŒrX5í«Å‰íô­<ÕX”œ¾) V«#2®|cð>¸"ƒ%9Y§~þ¶ubNÖ‰¹æ5\Ž‚h'Œs=•cžäÖSù5ó$¢(E=vµ•YúWf Žç½ï GINÔi,™Ub¬¾ƒCž5¶´¬W3½æáÆ9ÌL¯‰r”äª}³+ý˜e“œû®n ÿRrgƒB©9(rkƒ F9ì1íx7Áxý+à½Ü >rÞÊ=ˆQEêa0S$ÆD‘EUÓ¦J'ÊtpUç~U0ÿž ¤l–ù:üf÷ÌÎGI®ê¼ª.àÜÚwðPd£$'ë”ü ˜“ubNyžBšƒëyBNyž{f²s¬¼t•!Ÿg›íh¢ôžŠƒÏ(MØþ÷~/r~—žÃW!;­ºOâ‹R”¢ªYkÛ«ÀpÍv#¬¡£´b ²`µqwMž}ß•Êá¨àÁM ‚”«Ôãäó®xÃñm'úHYðyŸOsff ©~©bÂ÷'PSŠ¢%*V>‡BH‰ !%*Ö<‡BH‰ !UGó©êÛ±aøß<:ñ5ÈQ’«:/¯ŸèNn¼´këc”Ãd‘ì<é 1Y$Äž2_ŽXzPå„Ö5FzPœ£$Wí3:§6n¾œ ;q<¬áÍÑ.EÄâ%¹Ç¾o³ s–RT xí†}X £¦ˆÔÜ@$‘«ÏÿΚg_Ímá$ü^Œ’^¶õ©Æ0Êa¢Ha¯àÐ)Q"¤êÃoaΟ•óD5GX£¦ˆ=.‘SD"L9NZ.‘SD"¬’«ˆ%æ¸i¸E“’)ŒQ«Æ)i6VjaÅôŒ|)·0ÎQ’kÌs¸&¶ÜÜp,lþßÚ­£mÅ‹×á]Œ(J!ÚHYP‘*]R1¨HÅ`}‡½fIéw(7%9JrŠN¡VÁ¥rŠÎÀïJQ¥žü¥ê+?¸G¸rbMà¦$GIî±oWB[z«¡¶—#3%J0’6í%[Ú#iCŒ¤M½‘Å!I„êX8]YéƒUFûÈ›rå°Ç¶£Úãf/Æ Ëšµs”äÂ÷ïÒ 9E'äê{8‡ˆ¥éÇ~q°îE}÷ GIî1ð.í.¾=ìKVPíä”Ã(‡)"U'†-aŠH„Õço×^I K‹»„¥0F9¬˜öy_÷IÅ’¿ÿr_Pê,õ’¨œqåœÔK"R|LüŒ÷y±…Ó·M²#6ÊQ’«öÝ× ¼¯ËH9û]@˜»tö#;ÊQ’«vX']¹{îtø?Ïea[K1 âØØÀQ”¢$…Ò2‰bJRˆ)ñž¹‡ˆ1ñ)bLùÑ^,‘LéÀžQ¼\œæi–ãË…’N´6å0ÊaiMD‡ž^ŒSïÃU&æF9¬W7îôèÃéþl»å(ÉÉ:tS'æd˜k^ƒ–Çc9á?ßÏÆ¾V!Þw\ª”úc=6å0ÊaÕ´û–ù¿”·$è/Öxî±GüÅ0=?CöÜG9JrÎ¥îÕ $ŽÍ)1Œr˜,Rí¡j‹„˜,bÊ“ÔNàI"Ly’{Fs[»'ì ¥Ú½J©N~©v/ŒQE ‡FH‰!Uþ}‡íY^Ù¸Z•kP$hÊ@”Dyª××’‡ Q‚DyºÛ×Ò)Q ¤šQ±+Þ[«é_ðhîd€‚‰ÇÛrå°Ç¶mû]¬cUï•Óï&è¹)ÉQ’«öiMPÍpdÁÄn77%9Jry÷å·îþö/êÅŠ- R¬6îšëQNÁ­à1[‹‡â¹)uÄÈi^AŒrX5íôxqû6mf¸8{nJr”äóæúµ;+›°ãî³ DŽ/Ò© ͻŲ´Y³Ké̬:Ó•Ù%ÈQ’{Ì;Çëë]®‰³]Tp‹’çÎa…¶• GI®ê¼¿íðd¾¶kµ=¶¶GAÊ‚² lãµà<€²P¶Ñ*6Jþq—TlÄ`ù¤æ«xÒwË«‡ìcÆÖïÈ# %I›zÆ0´!FÒ†I›~¼0ÄAHR¡:ºMŸäƒ’7}8.«ö¦/ Rä6;ûÿW%ÙÕjgS9¸WéûÙ$@Ê‚Uêï9¶Ôð$¦œcå0Y¤~1EBL 1åIªGûI"Ly’{&†•_å™òV½1ã…(JQÕ¬¯2ß™—/l˜€ü”°evPRÿæ«Oñ˜ý)E‰¿  RâoáÇ!þÆêø8œõ¬Ÿgu) õ…AÊ‚ÕF=¯ó“{NL?ZÉ='¢%¹Ç¼­ËmƒY9 §ÉìÔêïÖÄì7ñ®êŠÚ…AÊ‚ŠT˜T¤bP‘ŠÁ?YP±ñµƒŠlFœ^;cñË÷+à(Ôx&4+8‚å0QdNcN"¤êÃo1 ”â@Û†k>]þ³F9L)-¶‘Eb¬>ÿ¶Â:Ðâø»ÚBÚ»_H°ðõ{¼–£ÿ‹ƒkÊuu@¤,Xm¼Ýoúæ¥w¿½88ºß€ßîØ4ç©=lŽnGhäîñau£²#Œ‚ôÏ¿x¾5Ÿ¦üP) >Oõ¼W0p¾çQ§³]øÔêÏ!VÃ(‡ÛÖ÷Ñ~¿ÂTÿ¾¾‰»ÍÁ‹sÚa¬Ç¦F9¬1nv1Þaf}7…vÒœv¯š¬ `ÍvÀU å(ɉ:“2“*1ö¼ƒO[èèS¸~î]¶³…-d?T“âh†òb ,Våy a² "U¯4R1¨HÅ`}Ýè­¾}ÞbæÇm¡Ýb& R|ll;:Ì`œ¾$9FjJQ”¢D…ŸŒ@‰úTŸú}ƒÔ{’¦KéáÔÂ$Ù¥å(É=ö--«qõ¼-8Úä£l¡Ô\ù,Ä(‡UÓî^øp¯ùa_h ‚ -<Ø‹±ØB£öض~V~às9t~À6—gœ®ÍïØR0µœ¥Ç¦F9¬Úöý˜îf¹?RÁôoNîå(É5æiY²VvÚzÇ'ÜÊ_Ô\=8eAÊ‚ÕÆnYæeYXÇû!]ËB£$Çí‹vÅ^·n®oÄx¿™DÛ"Þo& R|lÜßÕGŠSt^ C•v<‘(ÊQ’«æµþ w®sÁ@Ú÷_1ÊaÕ¶æ¤.ÅO”ð>´™ñƒ%¹Æ¼&ó^&òâ˜r´è©)EQŠz ;Öë¸}ÓmÅxŸ“‚çÁûœ1ÊamÚÎÝîåù€hñâ½<à eÁjã]‚ rñø] kW ±)‡QEêó¬)c¢HŒ‰"Ü8S¥ƒe:¸g¤´UÂ’/UŽpL÷mÊî(GINÔùÉÉʨcÍ;XíåGãæ@LáÕSvKÉaÛ(5ò†$|1xîWtmÊ‚”ÿdAÙFq8{lt€²P¶Ñ*6JS‹ËF *6b°~G_Õo¥»·w—Öï_N. +œ~Ô“‹Â¢%¹jßUÞè½¢äÅ8´ª³cW£&Š4VuK$ÆD‘EZkº¥ÒÁ‰2\)‹+9eãÐÕ[ÒÙªbjõø±¾Ôì jJQ”¢D…j´Äˆ Q‚ª¼ëZðå«l6.—æyô.Ô F9L9ºR\"¦ˆDØ3~?;+PW8˜=ÄZa² "UÏR1¨HÅ`}­§6K}qìNæ–§#ˆQ{l›Ûø˜»¨¨`È×ÇâcAŒrXµí£…õÍ• §VíôØ”Ã(‡Uã¥tÖŒöL’ôÜ”ä(É):…¿K'䫯áû±99Þøpjn€oŒr”äª}+èp q(^Ÿ³–þœµ-SN"Ë𖗅ÃÙÖûÚ£ eÁjâÐX‰q};†ãŒÆJ=8eAÊ‚‰× uæA¼z øøR(5F-x/=6-òx¶r°b¥¨jÖâIÒÆkj±«ÙZá`® oc¶ùRdx³ ö˜·v‰æÚSá1Э-VÏ«|دM…~†äã>DQŠª#߈ Q‚š§>{œ Ë€íêR:ú$^›• zM9ŒrXµ­ÛÎÛ5e;S8uÙV¶3AŽ’\µïX{/›oö¹1}'ŸGI®šwªýêKç·•Êœ}x;ÊDH”§­N¦<‰ò$ÊSÛõ˜ú % „Ô3*¶+vè®Ã®àܸ¤ªœú¿Ý7³;‹}^ &qšR¥(Q¡[êP)Q!¤D…‚WÀ¡R¢BH=ƒ£½3<Ðð¸pã‚f·fŽr”äª}'wí»Ú ×.½®Œ¶0HYðOTl”f"—TlÄàóæÔ殜)”¸rcšƒs8‚P`¢„— 'm®þÞìqÃòÔ±ë{JãTêƣI!vßð±•bfç#¡$÷üÞùÖý†ÆC‰aÏC9Õ;oú•œ_Pö€ÃJ.sS’£$Wun[gSƒ';~Ä0ÊaŠH5h‹D˜"au¨l»2TÌ+ªNÛóõXý9­q–ݰp¸[<«K ƒ”«‰ú¦½Ýµ¿Ùšpcú¥=W~nM\M2öwW*§ú®6þ{·¸C–Þ¼Š¥_L‚å°jÛWÉv1ÔLu=W[×À7D9¬·ûâá7QòÀ•d…ƒž~ú#c |»Cc÷ŒíJ9Lü5løkû“ÃD‘øIŠ"1öŒ±;bËàü¡vÿx¦Uv}[<P WL¾°GAʂ߷âð²ªÃ ¥LE=4e Ê@¢¼ñm;ä!H”‡ QÞ;#A¢<Uyw©§é]üUÝÞ9†QSD*‡$aŠH„Õ« 5Jû9ÔX¸á›´#AŒrØcÜÖlÒåÎ…3‚wÊ6- Rü“qƃb#ý9ûÖì*Ý•`…BÁ1SÃG,‚·omTþå°úDgó-ûÔ8=8eAúç_Ü?{àEP{žè¾82YòfÀžïC¥¨jÖåO w Û÷Á!éÊ Ø«T'Ú¹k?š0‚¿Ï}Áô«E”0B£$§èüÂ.StBNÑùNꄜ¢rÏp9Õ‚vÛÈ2¿ %}C6å0ÊaÕ´& çè{\¹ÎW®FܹúlÇãâªx¡C¥¨Æ°oÂu}¼»”NÿmzŒkg) V7-fkw¶úO`…¥g …:XzF£¦ˆTÇ‹-aŠH„=/à£Äßl·óñi¶)î"“B¡]&Û¨1ÊaŠHuãf‹D˜"aÏóŸ¯Ì‘pÕÓ1·³º½áÝì ‡²Òx3û(GIî±oðçº">w"â2|àv¼'ˆQ«¶Ý{Z5‡´ßÓ¾87ÎÎf×Ü(GI®Ú‡ªf¯E„7ç;p kNY²à#õ{dzÖaŸÙËûäFAÊ‚²ÔY}@ª”¥:@婪nôT1¨cüÛŒq=Ëi7CK[ßr”äóÖËëáôþ¾fï°u£¦ˆTvXH$‘k^ÀÉ·ðB ƒ·â?ÖùãšzYk Âት ƒ”«‰W•ûæ˜Qç<~ÇM”£$W l fg¸#|1 'x<ÊQ’uê™.¦LŒ‰*1Ö¼ƒÝvW*\¹šXvû^->HsÅöÔ”¢(EU³4דÝq¬p0Ýw ƒ”«‰ÍÌi,胅ØÁÀGI®Ñy èYpà>çÓåïàèNÃ1Œr˜,RëŒDBL 1åI*îô$¦_îÆµº\ý¿°™\ý¿Ã eÁ*uùú<ü°) ÊR-‡)ÕÊR òT ‡ýT1¨ò‹$£%¹j qç¬ù`š2suO1”™¬ñZºŽQŽ’œ¨S:‡8dbLT‰±æ¸¢K#§ö$ÎJ/FÒ «¶|0;eg 9÷(Ž9sî 0”`ª9÷mCÚ¯=…+}#vWX¡„×;BS¢ $ÊÓ^®)A¢<‰òÔ…ÏÔ)Q ¤ê¨Xô¼Æ¹¸ ˜ìÚ2o%(Ô¸þ™—1Êa¢H©iC$ÆD‘«ÏÿÞ‡©K¦\šU8uqp`’»U®è b”ÃD‘Òêì‰1Qdè×¶ÀÂG9Lü5¸^Š?æ_e›Õ%Ðô✕(+xü1¬Šz³ï/Y(ñ›rå°jÚíR3{¿Ð‹sêiFö'E9Jr}Z9jîæ×H=˜²¯è©)EQŠz [Þ ÿt\ ç¯o0‘´z.j¿T;àQm!σ”Û¬7Õüf_â]Éiå“Å(JQa'vøØE'rPèta'r†AÊ‚ÕÆ®bV¨ÀS¶|K×ßU˜:îûv…V6Zbå0E¤f°E"L‰°çÍ}¯O!œ\T@ï«£$W….Ú'Û¨äWâÝ”°,Д(IòÇ?–!I„$yÒ ëÔ$SϨX›Ý踫¼Ö}ž*X ÍûÓSSŠ¢UÍš¯5cbBÏNtȪz°E™¨ä¬ª F9ì±mûxÜa¬­PÊOnú‚(‰òT'•%A¢<‰òt•¥R¢@H5£¢Ýnp¾3.à• X¤,Xm\ßNÏÃ7ˆ÷e|*Ž‚”«FïkGW85¹BÙl‡ïeð^kç‡Ó”6þLƒ eAYª5nL©P–ê•§ªžÑSÅ òT1XGNÒz gÿ{À}ù@mÃn'ä¦$GINÔ)^XéÐéàD‘ß+­œ>%¹çµï]ºpT•ÓXÎÝQ&7d{üPÍÉŸ4swI¥/EíÅ0TÌÇòè‚å0E¤êG±E"L‰°úx ³«.«`›ÛU˜å(ÉUóÚ†6Ž`x~¶ŒüT²þ첂é%SrÝ@”£$w™·ÿïý¯7rÌÒ ØxCÓf¤,ØØ8«>>-„Ó`’¿G0¿˜\B`”GTJíî$e²þÅN58%`”êȫœÝ1¿¼»êHYP–ªw"R ,Õ*R¥} K*©|ƶ³f»;ÌýÅÞZDFj†±*rh}íhÔU¹vp4êJ€”OíûmÌÊ&´›B+àÊŸçá‹§õÕ„KõÁÇK¤,øH?ŽTïåÝõ­ c”ÑêÖÚ‰0E$Âþ«X‰S·Öo.r MJQUâ¼úæ±/%³ .àmÝ9X) *R¥/Á%ƒŠT Ö×±kTs{V0é=bS£Vmkcî.•ƒ}¸ûãX¤,ø' *6â$ÅF *6bð‘z·BûûÞÅ!úþÙŸwx c”Ãd‘û¸ªxDBL ±çƒXÚø ³ëBÅì»SX|0ŒQ«¶)IV­GÅ`w•®Ø#ÎQ’{ÌûªÍmš°¯¿¨”zÔ”RCÿbÚFÎè‘øû6)KF¤âóa3 R”¥‘ [ª”¥:@å©ê‘ ðT1¨<ÕÈ/ª#a´QŠªc´½íž†_ kö¾St£$'êÔ§3S&ÆD•{ÞÁlø ¹ûþ¥Þ® E—W1t¶éòâÂå0E¤6°E"L‰°æØo[ª×¨˜¾tI%qŽ’\5ïºêÍ™`ôb˜™`4nrB¥¨Æ0O1Ä6Øå*OØÃ"å°jÚ§K!þ :³¤76¿®Î”åM°AŽ’ÜcßVljãJÓW‡ uÝVqO£VmS]Úz=í_¬éh¬üÜtcp%þ²7ä(ɉ:µØ’‰1Q%Æšwà[û®KPP¯]ì¿b ò¢ ýG)JQam¢‡/_àÛ»Z¢·ß)rƒðš‘Á³ß ÿ^²`µq¶7øïë3ïºðTL\InJr”ä¸yã§0­B8,Ê-`ïÁ?<Q² "Õ([³¥bP‘ŠÁçm{ÅÛߢbzÚª‹²ÉT®I¶ü3{¢Q² ,Õòw˜R ,Õ*OÕðwØOƒÊSÅ`§ãˆ¾øú1ÖOùâëQ²`cã©~Í‚Ø x<òøÎ¾9wcJ§=+7­búÎIÊM‹s”ä¸y¾Úhnà¦!nš âv¹ QÞx€vÈC(A¢¼qçé‡ Q‚êØWŦv ñ¼µ›R÷GJrÝÑNpe¥&ÿ\å_ó/ãç]ëUîÞ‚”e©Ö¢jJu€²T¨vÇr¥”ñÞCS¢ $Ê÷yå!H”'Ty;ôAJ©gTÌMËpaÌ¿Ege¡Þ‚[[À¦F9L)5ËpˆÄ˜(cõù_îwtúgQΛå b”ÃÛ\Up[º„ 5hÂr ,!FQŠj sMlnÊõJèàSOˆ¢%+TŸ†©Q²BDÕ'ß¶¢p\'RÁuñêXö[¡{Žç¢…AÊ‚ÕÆ;K½9ùô3ÞµâôÿrGí(€Ó\^ Ó{r:N”£$÷˜wwÓ²Vîe`ekÕM©SeM9Œr7M;DjÔümÉsYûûãpØÊÜ”ä(ÉUï,o1ʋ¼i×Í„AÊ‚ŠTéspIÅ "ƒüuê?߯žÉemàÖYÝ÷Õ=Nßy½R ¨o½Æ(‡UÓº½©êÅá{Ó‚¿ ß›Æ0Êam»ò%X ,?˜/ÿÍöއœ² eÁjãúÑFô/6_Âï47®zz›ÀMIŽ’ÜcÞÖ|°ZVéð½Þí?>×E)ê1k¿Ê…Ó ˆ7€3™Q²`•ºn¾°Î—K ‚”e©Öë0¥:@YªTžªÖ±Ÿ*•§ŠÁ*u›EaÁÖ [û8R£&Š”8‘EbL~’Òâày”˜“Ÿ%æDiP;t:8Q§ƒ«ÓïùuÍi<ãýSøéÕA¨¨’WKÅ(JQUá}yüuÌ—ÀkþáÛÀ(HYP–*Nœ©P–ê•§*Š\OƒÊSÅàŒæ5ï†á¹n°ÚØùÓÀ`ã ½ù`c¤,Xmünò„h4E¯˜¾;ï¹)ÉQ’«æÝמü~~;NnŸëNÈ‚M9Œr˜(RŸ»M‘EbL)®¸•N”éàž‘r69ó£ å-ûuohüêL·nˆ¢%*üW=U†ÚW–U|ùS¼*©Ð†‡oüo nCø%ÈQ’«æ-‹ê²œg3Ë.îIö¦$O5ÇÆ0ú×_;ÔÄ̪<Æù­á× ÛU ¹GÙž*ˆQ«¦mVÕõzÕ¡Ë¿ùNVþɇ(JQլ˟ëÛ8ÛׯÈ9!ˆ2Pc”Õ3±ºó 4•¹(XÇÉÝ$AŒr˜(R¯à4EbL‰±úüß<$äjÜ]¸v­s5]Á•Ì.ø/«åˆzõƒ§Pr”äªÎæ×œ—·?çûÅ »å ÏGQ”¢ªYð¯/è|³Ï|QêdlÊa”ÃD‘ú¡Ç‰1Q$ÆD‘ÆùÝTéàD™®Ž”æ¤hˆR8¼’|¹A² "ÕXOl©T¤b°¾ õ‚0ÿ-M6„”|Þè_ Ó/Ðé¹)ÉQ’St ®—NÈ):!§è|'uBNÑ ¹:\î¶¿¿Ÿ½£+ü~?ís Ï»Œ°bêE±²#îÅA$tãßn¤,Xm¼jRù5f 7þ ý¿»ö2º”²™m ÖëÒŸ`+å‚ÙÇ­”ƒå°Æ¶ÓqÚ{³=îM Û š2e QžâC±å!H”‡ QžæD±õAJø­ë4ïýÀ(ÉÕQ¸¶g4­ÂoB"5êæðïñ92ÈQ’{ìۛÖ»ô·P ¿w8nÅ0ÊaŠH­@ˆD˜"aõù;³‚76¾vgŠîÆÆW£$ÇìkŽÊ®®}7û>ð¦}QŽ’ÜcÞÑ®Üð~ÇNa3VîF9¬Úv·®œ‡ ·kô€‹:Xä\£0HY°Ú¨5Åè+wxÓ§ŸïøÔó-vrL»ÑNþ¹ã„ø† NY²àcâÙl¥CEyõ˜¾Áï±)‡Q«¶}TÇŸðÖ_ Ó „”ÑrßÎvŸÏuu­*Ÿ­Q² ,ÕÚ`™R ,Õ*OUwhƒ§ŠAå©b°Žœ&äê/iÁÆžšRýãoÃ2m}H”äÊc\ÞMðÊ}7xåZ—š+x) *R¥šK*©ü“ßY1¨ØˆÁ:âº(·ê`Qîlõ­,<»¼ÛvŽlP¸õÔ÷2 Ø,¾¾—) 66®ª÷pôæ½8&ù(t'àÏ*~í c¥¶?ØQÏÒ ”kä ÷+RJ§”Käƒå0Q¤¾]6EbL‰1Q¤´óqˆÄ˜(cu˜l»:ºÇÙcÜün'ccwô›ž0HYP–jmìL©P–ê•§jL»öSÅ òTC¿™Í(‡=Ãtî‚­’L9غ̫+òÂgÏYiïkŸÇ ¦{Ãäãx”£$'ê3:œ¨ÓÁÕ×Ð4Læ&ù\]¨ñ©ø1©.I9 h—s°äÉ?uíè!sS’£$÷˜·h—ˆ™š ¦­4îj¡Šgyþ\¢ eAYª5Ë›R ,Õ*OÕ˜åí§ŠAå©b°‘êóÍo 4Ž R XÎå$vÎ3”ÃÄ_ÃÓ“økYmÙš2 VMá.;;¨ Ü”ä(ÉUû®žÞºƒÿsí——Þ±üÃé΄y’Ü£ó«x–e™¯3f{ż GI®1Ï9MÌìÛû:Û¨”–² ü‹ŽùEþE¨Øˆ'&ÅF Ö×qõªˆÖïî‹ú”ÃÕ êm”³U£$W lúŽ îø~šx1J:H Ø”Ã(‡‰"?)%Bª>üÁky_Œƒ%¿<<ä(Éû¾ï÷¦hF•N­÷•£/ß÷Çã¾Ý8Õy‹U °„s4caþ~q˜nérX}¢jôÌ ô¾xJrõ ^#ÖFÍŸ~šƒ”e©†›Ï–êe©Pyª’ûÆõT1¨#õs£©Äe–ˆ) VAÙ’2™¶]õTo>ÛöxØÙ¦'FQŠª>vK ‚D}ªO½­Ðõ_îû?hÊ•Ý$ßûŽNçÕž/Ž•?ÈF9¬Úæ½…m° ˆ¿5¾€EAÊ‚ÕÆM Ìn½¸µ?ïNˆUÈà”) 6&¶ÉM°µQ厥ÞüÉF߹ݖK‹‰¼-/Üè.»ž GIî±oé¶åÂ£ì– 'ùí•d‰%Ô¼z~<'ÊQ’ís\fÔprØ|¹76žrÀ‡ä(ÉUó´Þýðä÷Θ'zpÊ‚”Mÿóû¢Ö+Rðb”š^ÑcÕ¼S¯°GAî1îÛ5ŽÐ7Õܧôý6ÑzÿuíÓ§ùž›’%9Eç’Ô 9E'äï¤NÈ):!W‡Ë|çûä>ÖÏëõ †špð‚½(GI®š·¬9âÎ8ûÈV¡P.ÛÙ‡F¾ßÃ^R”)÷Æô)^™qƒýóïéù5ãÄI)ªù­È ö¼¸ÕqÂÓ|úÅ(åŒÞCS¢ $ÊScº–<‰ò$ÊÓ£–>H‰!U^¾Á[Ø&®Ì3;eÇ0Êa²Èy´Í#b²Hˆ)OR‰  '‰0åI"¬NÍR¡æò•â†@nÞÉGñé‡(=Fmjä•Sùñh»’;¢M"¿wö *ñä1F-øU a²àcâqºÐÑŠ·N/<èðÞéa²`5Q¹'ÌJÕ.Tý:RSŠ¢Õ˜uºç—¿9gA0ï´) rÃYÞeSã°Ã³ÙªËÜ Š&ÆQ’kì[¬síCy?¯BK‘ø½Z_µ%¢IÍÄ¢Îa^9µÀ;˜V‚%¹jÞìØ„½Ù{Aö†þ¡¦Eÿø[KdˆP«ñ»¸ÆÿûÃGÉ‚«SnJr”äŠëûÝpŽ.lœÅÇ]7c‚(U“®i$œ€ú6‰eÒ ‘½Û…¼r¶{; RT¤b¾"ƒŠTÌ€Ò·à’ŠAE*Ÿs÷y³÷U¼Kx¡Ô¹¬Ç¦F9Œ›NþyÀEýšäŒš0È-tƒ_pÜ“‹N 8NV,¥P¢ßi{1€ësUÓ6ÙÃmæ¯JmåÓcS£ý5=4¯{dc”ü[èÉ¿…(ù·Ð‹–Ë?<öÃã2f ë|åÁ+ƒæåúÒ¦,HYP–jÔÊÛR ,Õ*R¥h¾K*©|ÆÍ¬]0gùH ®áàN’ F9L©]ÃD"L‰°úü¿³ï Ägö„>Ù9JršóÎŒè®Ë½xóh‘¼x1NË­1‚å0Q¤´…sˆÄ˜(c¢H}ò3EbL‰±f˜¬|«è;g/o=2P¿WÞ•t-W·F3¨×åãðE³ Ùÿ0KQ”¢ªYw—r;æÌ·75|Û4e Ê@¢<Õ cÉC(A¢<Ýi郔(RuT4é8ÒŒ#§ãLwÉÊé8QŽ’\5¯¹SCÛ¡s|ì³)¿ç"FQŠª™ˆ¦BH‰ !õ<øo»)pÜ=ÿâ *?äqÙ0HY°ÚøÑ÷gUÐY>Ö ç#~X‹‚ô￈.—“ï,‰rÏ3=Ût˜@ƒ™ ã!& R¬6^)BºÙÆ 7Ë?˜²Ïé©)EQŠª†9/­ü%§6Xì¼°íݼ$°?x½8øü]28eAÊ‚ÕFß3åg“í­-r=eÃÙÅŠ×!ƒ'¬ü`ÚhUmŸn=Òv/|=z°q>³Ö£ F9¬Ú6vJsõ³üµ|¹.–¹òß[j¶ìhýb”}±ÃÐt;ˆQ«"ï»È':{”÷\»r™A²àŸ,(Û8KÃÅc£”mt€ÊëX³¯ƒÊëÀ`ý(´T?;;ú愈å(É5öÍjfœ®_ #"Æ,ÿ¹ú†àô¦-¸7Ó6¶Þ9Jró»yŽçQ³]¾Üæ¶áµÂƒ6ŸVx0ˆQ«¶5 ’ø¦úÒ|ªÊr¢èkÿ¾Êaõ!jj]&Õp'Cጠ`NY²`c¢¹q¹£CßÞ?Z(T÷í=¤Û¯'Óÿ¡R’{Œ[:÷‚qFaíDžX;Ñ0HY°Ú¸ž ëÆÍróƒòÚoÈŒ¹Œo=DQŠªfuY°‰T定h–ÂÖöŒÃ;‡ÃFç6Øá9Jr¢N)'×!c¢JŒÕw°Ë‰<·ÀF9ìùíŠXßÂ&úްÝɵ/÷æôà”) V?MªÌdz1̾íkØN…(JQÕ0ç­·¼qíÂYýdëH¤,Xm<왬wY½¦Ï,=7%9Jr¢NinqÈʨcõ(KÄ-‡jýø¼”¼köÎÚ^³›ßü÷|ßPq¦¾‡tá¦$GI®±¯LEN˜Ψw—¦a² "Uò踤bP‘ŠAEª4Ü\R1¨HÅ`8M›±ñhÚ½/ó ›R³M†‰¢ “Kýcå0yÁô­¸‹[’Üqõ…ŸþIHú%ôð¥ò¿0ç¥cüBùDQ~£|¤,ØØèË+âÝÖ·í}ˆOÔ®à+˜Þ(L.á‹r”äªy5\Ö¸Jsé*õô—s ¢œò{ð#W~rÊïÁÉAù=È=¯aïZ‹H{9Å—½Ÿ-h„°XvX¤,ø' Ê6Z±/ÓF(Ûè•×aľì×Aåu`ðrÇ.OlV¢k´JÕžšR¥¨Ç¬óšß¶ƒzevÝ:£¬Ì°F9¬šÖt÷Óܼ»_ÁИw÷‹r”äDú!Ø”‰1Q%Æšwà:sÜuîi~>W§—ÿßå Bœ=7%9JrÅÀýÝ|­jX}¬Ï’}«1ŠRT5ë3LÊ¿áÞ4 TvÏyõŒy²x )Q’ä)‹Œ©1’8ÄÔÇ­íEíÂ7«›Ø&öâÃû»‰‹ß².œ¡SއAÊ‚ŠTõ‚¤bP‘ŠAEª4e¹¤bP‘ŠÁfàøêÙùfØœ–MpÊ‚”ñõ˜rÌ~¿šÂD¯Ž-بӼTiÿ¨‰!`Îø\u[ÎŒ’çE|N=Z/è¤$÷Èœ—Æ)) Ñë-ðûÒ §nM{lÊa”ÃD‘ÒLá‰1Q$ÆD‘b‘C¥ƒe:¸:R¾± ì¯Ã4ÄäJñ(GI®؜ݕ …R“äår£¦ˆ70.‘SD"ìyþ¥kW,‘qÿ©ž#ÓÌË„G˜™­•AŽ’\5ðº¯R÷ôÊž g”²Ë-žÂ eAn¢~ÈV¸rå!|÷ {÷7ßÅÂÞ}£$W TKõì˜áþ½îÒÖøíkýÀQ…Ãô(G?¢%¹j^[ÞçèˆÛ€gÓ”ÝÜPX(å”ÚCS¢ $Ê1yå!H”7®Çyå!èÛ¬ÌË]Ù<+Ï)(„ærƒå°jšE³³* h—䬊0HY°Ú¸›î`9áõ¦ôµXÎ% b”êi‡–cfHNOrV}VŽ7ŽoJo Eø¦4†Q«¦5Ý5õåwØ{ݘ¾/Q¶^AŽ’œ¨Óhâaêtp¢N×¼†Õ|{}5Pźlaô¾¼"¬báônG=7%9JrÕ>­Këcâ½Gw½Š„M9Œþõ×vPp!'dD¹ú(åý“5\:½¨tM9ŒrXcš?©ïÅ Œg™eûѬjx/7Bn|Qô¿u—³¹¥¨çiœßZp§û›çí0bå0Q¤¾11EbL‰1ùIJ‹¢çQbN~–˜uŠ‹¢C§ƒu:¸çã>¯œá–l={®–a²àŸ,XŽž¼ÔÎÍÜucâMà¦$GI®š§VµXæyºRŸX9Üq§a„Ûﮓ4¥õžõHfNY²`µ±©Í ôì-œñ{pÊ‚”«‰õt¨G½1£ë›|>r”äd8EÖ‰9Y§?óåø|Dç>b!ÍB!¯‹h1ÊaÕ´+ên»×€«µ…”¢?Týf¥=ŒòÉ~´*wðÅ9JrÕ¼o*òs4Ž×@µæÑzãîŽüàå(ÉÉ:ÕæÕ@'æd˜k^C¢Z¬P(mcj|xbg? d~ÐpË™_a²àc㬄qìLê‚!ÏO¥Žr”äªyó,šge”ÈA‡@‰úTŸºÙ³IÙëÏ_W.9¿Ÿ¾pªï¢Ç¦F9L©~)¶HŒ‰"1&Š•N”éàêHÙ|-î>_nàæj9W¸)ÉÑ?ÿÞNë[Q)‡)¿†bå×Üëw¹>R*=­ûtÞöXîÀkú§U%^árçŲ/ŽI9É#6å0ÊamºçÇšsËø[ýŒþb¹ú€Å(JQ¢Bu'b D¨AÏSoWD±r@ñ+|›ò1±ªXñ+9Jr}³b ”ÿb˜'±ç×îl1÷ý€/꺜² eÁjãÇãfeukG¹Em½†óu4ƒ.Äb”ÃD‘Æfȉ1Q$ÆD‘ÖVÈRéàD™®Ž­{‘•jp脬ࣦˆ7 .‘SD"L©Í˜@$‘k ª°”ÓÿŽuÿ&vÊaUæ¡“V%Ë9ÖóòüÂ(wˆß Ž*r—x¤,ø' >gó¹rßÕæô­Ϋ(HYP‘ª»WT *R1XßFãisoÊ>G"L9ާ­­;m)‘”ñ´U0û9œ¶bå°jÛ]‚[Nî©( Ür×A¤,XmTSíìÔëP/k~'K<œZûÛsS’£$Wí»ó¨¥eé—›/îwùœ[NËe·×¥íÔ¢o¶Î]½ì äJPÝ‘+©AŽ’\5p¶2ß×ÙôÍvZ7¤¹ŽzjJQô¯¿µ¦iÊaʯ¡Ù]ù5÷¢°·IfËdŽýÚ¸„;÷Õ„Î _§MÓÃ(‡UÛÚÞíùâp1òÝj £ÖØærhrÌÑ yô“œFݵµbNÚ=X+V£$Wì;Û¶Lª—wí·}{̵ŸNb¥(Q¡ê{µ"HÔ‡ úÔ»ŒÜvç?Ýg­îœÙgý``/Ë>ë F9ì±m{J9É㜯 ë¿¿#>’k)~) b”Ãd‘»âE"!&‹„X}j+™þ<À[úœËGëdö 9—Kg°4ï\¶¯‰½EÕ¹´Nœ@ÿÌó{åý)Ÿ¸œ¯Q 3rH؈Q”¢ªY[sXq\~úb ŒqïýÚå(ÉUÑåP·Ç{ãöòš(cS£&Š4¢–HŒ‰"1&Š´b–J'ÊtpÏHY¯Mvøb›sýÌò—ןOyÛŒÂi³rߌ0HY›8î›ge‘ÉÁù›¹,8‚(U“Úäw§` #à1ÊamÛÝWS,ïÅñÃÖ¹MieÀ¤ïÆ=Ìø}òA•”ÃÄ_ÃÆ‰¿†1ñ×ÏDü9WGŠÖΪÝm𻼠¥4¶¯1!õÆmÞMìÜ!òǽ¤ùzjJQ”¢ªYZéx—±Ç ³ ¥zXzlÊaô¿¶¿ý#Š2øKhŠ¿„ ñ—àØÊ?âïΨî‹E_ „ûñƒíê‚%¹jàlÖk)§Ë})Ê×ãäí< gT<öà”) V©ßëÍÿ:h¬×Nþƒ eAYê¬oém©P–ê•§ªåÀSÅ òT1XÇøw#çþ8Nþq|›¢n‰ë[¬¾§n¤zlÊa”ÃD‘ÒþË!c¢HŒÉORš´=sò³ÄÜ3RÚ†0j`ï;n8ûùF DQŠªÇZK ‚D}ªO½qUºkË eGFge £¦ˆT"šH$‘kž¿]†¥,Ⱥ©ZÙ:9JrռͷcäKãáJ6çw1ÊaqgÉ“0Å•×^C¥_ö1zò‚%9Q§¸¯uètp¢NWu2—‹”˱,¿çܵQ¡(EI —”BLI 1%>Ã3…}Ô<š«ŽYϬ¸z=…‹£¯7DQŠ’ªiL¦BDÉ U¼³*v~³ùøôU©nJr”äQ9\Ÿhúb QŸ&×#„AÊ‚ÕÆ®&¡ÿ~Zîä&¢\Óž»,<þ÷~B“%9ñ÷³Šø{®þÞþ‰<Jrÿî£ÔÉÊ'éÃÆYSæ¦$GINÔ)5&qÈʨcõ\þ }?«pf–°”Zö0 r¸²Ç(U“.*Ø[î/¸€úÀ¾‘Ó‹q𦊾•t¤,X¥Þþ²+È£9å—.ÀÆ(‡É";ÿ£_$Äd‘Sž¤v†OaÊ“DXÑ›/nÐ5E©œ:£÷Ø”Ã(‡‰"õŒS$ÆD‘Eù8¦J'ÊtpÏH¹oh &Çüw­LO¯6˜–ø.E<Ãå°jÛñQЉ}ïHÐýúóbœºô÷Ø”Ã(‡‰"õt/S$ÆD‘EJÓžC$ÆD‘«Ãä ÜC×ö¾ï™]9cñïÁ) R¬&véb¨+Aƒ]^ÖH×_¬«)PßK ¯ qríÁ) R|l\AÌL37¦”!ä(ÉUóv%+±çúæ?•3–¯œ² eÁFj›„/¹4ïÍ\ÇI€”ÿdAÙF£[„m£”mt€ÊëÐk"ÀëÀ ò:0ø|[]fœu`„<¿ü´¢(EÉ Uϯ©Q²BDÕ?»NQ3Ûûo,¶bRSŠ¢%)4Î4†BLI 1%)´Ž3†D&it`u|ÜwXŦ*hÜ/%L%@Ê‚ÕÆîœ§|Üã9¯`Z%¤r΋a”êmÚmEÝ3a-Î+gìzpÊ‚”͹ûÁp×÷M¡0w*ïWà"ØÉï/8Ÿ®™va/âæÐô·°×Ã(‡‰"Љ1Q$ÆD‘Öh©tp¢LWGÊêòsõíž+ge{pÊ‚”«‰Ç]Çàþ&Æ¿Üi7‡è?ZÊaÊcÖÛ.<{YÖ$ê/vå_;/ý›¯ëá½ß˜~ U^{£$÷˜w^… ¡f'Çÿ>ïÙ*Ж29+ÂkliŽQ”¢ªYMDÎ}·kå`3F‘ ƒ”©ÒˆvIÅ "ƒŠTi&sIÅ "ƒuମխ~7†§j¶úE9Jry­Å{?yö]+·}ÇHY°1ÑSŸüfSÚMً؃ÕûÎÜÑåˆ?Ø2ÌOV 8ˆQ«¶ÕOÁX/ù—ðQ ÇÀ‡Ã(‡UÓî¤Aiïц¸ÊyÞ£„rØ£rFõ#²Ï¾pÆ’";íà eAE*ŽK(R1¨HÅ "Ušs]R1¨HÅ`8»–k‡PïÀ*GC eÁÇÆåã:>llR»oôp^ò☽»îûç†1ÊaÕ6õžZô,ÕjÛõ€¨c/÷c…AÊ‚+öàެ ìpû³âÖc•³B®R(ÂV1Œr˜"R …Ø"¦ˆDXóü÷ÿ¡^sšûJØ”Ã(‡UÛ¾È/$• ý‚‹xÖ·Ó˜ ¦Ÿä<æ(GI®š§ú¡ÀdtƒÎoœrX#óL¸Ë>«}£ã5Vú.+•R¬Ç¦F9Œ›6îâmjkvGú¸¿Ö®roà„ÿ²AÃ(‡‰" '¼%c¢HŒ‰"-¼¥ÒÁ‰2\)ÝvXO*¶Ã÷˜`;) rƒ·Šý‚ZBY›2×_óƒmja Ø2nêÑÌÒQ²à`£4Á ^‚ÁDiûny‚Ü` “kìslÇ-qÁ@¬œ/`»i°3r ¦ïä”Ü(GI®1¯ÙqÂÆÁ/ŽÊQOÙqÆ0ú×_;í³¶²AŠaÏ“¼{Ô;[Û¿8Í]ˆ0F9¬Ú¦^ððDçÞÁ) 66º*²ßlZ)˜¹¤mÛI¤Ô6¤bã]æ¦$GINÔ)Íš™Ub¬¾ƒ/ˆY«Üb?åDzsÆæC9’FAÊ‚ŠTéƒwIÅ "ƒÍÛ¸r¨¢~Ÿ£+ÖxË« ëí[1°óì{û†1Êam§ºóî :§3ÊaLGŽ€}'I‰’ŸmØÓ]úZ0a„™aÏF9¬Øö³evåòö Û+‡cò[?R eÁj¢Rwf¹’ t-´Úþ–{’b¥(Q¡ÐËÕ¡R¢BH=þÚT+CëÆ`˜›¬ GI®1ôA¸Ûé²y¡pУ=³™! RlLÜ­÷~Só`à®üœ„ÕS/Ÿ³O ˆ\|Õ ƒ”]¦ØiáÁ̳å°àÍŸv§"}rÛÍÁ[;y[”£$ר׀0ÕçÅ0»/=_—c¥¨jØŠÖ:9bž•^â`Jº1t¤f¤ GI®1oÍ3§£Ò.=UMÓÂŽE)ªšÒñ”µüN´rÎ ”êȻ‰¸’»L{±“ÁzlÊaô¿¶(zóUG ç!._3®y?ú/›þo wºƒaŒrXcÚ•¸ª³¸| ž—ÕÞ&~/ì÷÷¾ÍCYÁ¶­ç¦$GIŽ›NÁ{~P_å¼08˜è«ûÎOÈ®²ò¶§VWYy¤,ø' >ç;ô'c,}ÛÊ›€œ² eÁjâêÌÐgu<ózmýšgãh@[¹ö]MÀá(äê2«‰3›Þœi"Nc%¹j¸BA™ÜnLw†+s[£$'ê”b™Ub¬¾´4)ÜÖ©qð÷Å0ýçä u”£$÷˜·_nbgü·b]•‹¶µÎl÷µôá*¥yßV –÷Ì+üAÞ4/ RlLÜåS0ãöÁD;ÜÙcS£&Š4òÉ,‘EbLi 2K¥ƒe:¸g¤Ý)B*¼GȾ_ NY²`µ±©ÍÖǯÍ.˜¾„õÜ”ä(ɉ:¥EÌ!c¢JŒ5ï¬)×LÖÆç7<“ÍõsÃTä(ÉUó®VžÁÎ0óy·)ø},ðœÇÌܧÑ]Ã(‡5¶Ùì2¶¼µ Ÿ;'ÊÚ{z …|/kïé b”ÃÓV×j~ôAáÐúzôß@£&Š4>pK$ÆD‘EZ««¥ÒÁ‰2\)m w{h¸ÙœOd?éƒt’/ÿzBå°Æ¶%á^ýù‡/w?9N%?oõ>8nå{1Îxu²{5 RT¤b²"ƒŠT¿ÏšÒÔé’ŠAE*ëÀQo9é¿Ýþšš¿à±+ y=ÊrǸá3³¹°tÀ€‡Ò™M†Q²`5ñkïU嬨‚éIúrZl”£$ט—‹ã/®•š÷Þ¸)xdÏÜ‹ƒúGÛƒS¤,ØØxzâm|¡.˜æëT|m ˆnÉ_ k1Wð?ÊQ’u~r21&ªÄXóxE¤—Û<‘(Ñx0b F9¬±ÍÕGwÀ·\ 0¸p¨Áã蘋‚”©ÒÁÍ%ƒŠÔÀ/n—3×9'Q{Þýv]D¯¯F×ш÷ )œqàèÁ) Rä&êÛkƒ¥VŠ_âám6ƒ— R¬R¯`ºøËœ 1Œr˜,Rï×mŠ„˜,bÊ“Ôü{àI"Ly’{†ôÑ-~jД/~G{ÕŸ~àà‹_ £ÖØÖœŠà}„/Ž ‰šR¥(nX¸<ñ{4¢@[áð*ËDQ² "ÕXem©T¤b°¾¦Óˆz: ½DÞi$ÊQ’uê§oS&ÆD•kÞ–øÖ|Ã5?ØA(?§_‡!{x^Dç`Þ= RllÔ¼ ’3êÅ1s»:ú°îž/áú£õÝ´Æ“0y›[°ë£Õ+ù.7ÊQ’u=IMNÔú½Å‘rü¼vÊaõ¥µ6FvçõWà„AÊ‚ÕÆ.éD²QެŸ+%>2Za4MùÁy¬Óq…áÖ¹u·i¹û<P(áç¬@£¦ˆOD.‘SD"L©í¬H„)"Ö Wc€¹_i ·;s¿ÐF9Jr¢NcÃcÉʨcÍ;8\û¤»zÓè«ÉÍíü¡ì(‡¾§,HYð1qù|~pù«×e³­2i¶õ{Æ÷ÀTƒã“§¢%9Q§1B-™Ub¬y»ë{¸«©ï’™£†7.AS¢ $ÊS]–<‰ò$ÊS¯Æ2õAJ©fTh-Àn¶€z¢²›‚”«ÍJ ÇƇ…àÆà‡Æ× GIî1ï 2bo׫&(L`åQŽ’\5ïš&Ã!šЮ’o¬ßÃóbžât–sµoJ&rît£Ö˜æOå|1hü1+ô‡:]›6Öë´px Åš†AÊ‚ÕÄ»ÔD"¾||]Ѹ`E|Á@ƒWÄ1ÊaÕ¶ëÒÝ`ïÁå /GÇ‚ýã¯m%3ËJžŽQÿUêô,tüã¹1¸ððo'ÈQ’«æ­öB'§ëLŸöä|Ý(GI®šçkãÃ;üÏD'A²àcâîjŒ4XxcpÀpƒ%¹jž¯Äv~sûœ¯œ² eÁFª¶zõ»±eeNú(HYP–*ºÀ‡AÊ‚ŠTœ7£HÅ "ÕŸ©³}®ôC}d™C^|ž’å(ÉUóšM’©þró. FŽ¿Ü¼GINÔi¼=K&ÆD•kÞ(AW¸ùãò¯l -ù%±D¤‚ ÉV"R£ÖØÆ¨]çµÂµ3™ëÀ) þÉ‚Š8 F±ƒŠþ¼›mþ^žï÷C`‡"æ- lêÏ< QŽ’ÜcàÒFrÜuNC÷Ö±ØJ£öØö½Jþ|…6/F)ÁÓš2e Qž6ešò$ÊC(O;'˜ò$ÊCP]žt`O{ƒFm¥²QŒ‚”ïúo´øÏlƺ1¸q›ÙŒä(ÉUóš}p 4©pÐI<ì„£ eAEªî$R1¨HÅ`}jòM¯••·ôÙÖ³) €ÑùÃ@R$_wB¥¨Ç°m¼kC Ôð–hDý؇–ha²`µq‘;&Ú麃Ÿü†u£$÷˜·«]:ph@ó:|ICû…íîïl9ÿâð\­ÌOÃ(‡5¶üsðn°œ¾SÂÆðr”䪅ßápásP¯öR\Q²`µ¥È\φw–(œá{ìÁ) R|¤‹èš[hÙ˜ÌDH’·däAH’!ñé©Ç)ñùAJRȲí 1%)ÄÔó‘×>»8ãÒõ‰\wz±ÿPþiÆ0Êa¢H}â1EbL‰1ùIJ^"ϣĜü,1'êóÝ:œ¨ÓÁ=úlްúÈÂá?ÄFAÊ‚ŠTãÄeKÅ "ƒõmìW¨3Zîø³vµ(e•?›èÝõöÙñ¢pø]°óE¤,¨H5Þ…-ƒŠT Ö·Ñmoõ¾½}ÀñíÛÛÛ0HY°Ú¸º‚–¼¡`ጻ§,HYð1ñÓÛPk‚[ᯟ³¢Öª£?AóF2? vô¶z|쟮 Eˢᾚ}žßÌÆ*öeu9/y§ªÂá×Ç¿û(HY°šØaù[¸ƒtÀž›’%9Q§á²dbLT‰±æ̾ñyàõÙþ奩ûf§È§çÔ= òA? R¬6:ây¢kY/þ{È Ér?¢%¹jÞíîŽEY÷Õ×ú‹u“|00ѳn’AŒrXc¨ní+™_Œƒw£ñÎXa²`51Ùh?êg{¸¶æÑXWXÍcÁà<Ïj£%9Q§1IX21&ªÄX}×¾.gÞtíyJ@´ÒØžšR¥¨jÖUgnT±ï_Å¿a5)¸„—w b”êi0¥VÙ P˜ÊN Rä6ºf7 /\> ¨oZ”c¤,XmlJyúän>×ÝÉ Œq”äDÆÌiÉʨcõ8/°äÜÑÌKã,¨LK74þ˜9+…(JQÕ¬mÉ9?Wr9¯À+[&§¿m^¸ý9Jrâïa™âÏa¬y®ärƒ8?vÝöÍòsW¤,¨H5|³¶T *R1XÞÆñþšç¨¾6®R«/ôÀýeW/æ/ ƒ”}Ù~|Oð€úöEÞ„AÊ‚ÕÆ} Ü„àøÜžypþfEvÇÝØÝùÅAÝÿ܃S¤,XmÜæ”ƒöÐŽ: ÛØp»0üsmAŽ’\5¯ñ½š 6˜æ¾—0HYP‘*½C—T *R1¨HÅþ%E*©¬§[lŒ‰˜/6„Ó"_l¢ eÁÇÆ¯Ön¬tòæ …ƒ)F¼›A¤,ؘ¸Z®¹1A¡ÔËïärúcýhQ2«œ>ˆ=¦­],vtÉ\n*^øX0ûÞ’¡ð1ˆQ«¶5.Bä€{1H;öÔ”¢(EU³@LE.: “\®Šr”äªyíÆÎÑ]êÅA}ÛÓƒS¤,X¥^¥œßaCÑnApŠQ”¢d…Ú&ÙVˆ(Y!¢…Û‚7rŠüÙ»vƒå0Qä’‰1Q$Æä'y&%æäg‰9Qçâˆëtp¢N÷Ì`Û•ñà̰x1 ËYH”£$÷˜·Ï¼”ÉUES¸vEpUÑ„AÊ‚‰ÇÇå#XÙùù¼b™Îè‹aðE°@m”£$WÍ»o\ÿ§•Ûÿ`uî4¨)EQŠ*†ïÏ%Èü…ƒþ9濈r”äª}¾,'7ïNùBãääæÅ8Jry¾ñüìóÅpxms¤,ؘX—”@jaáp`LŒ”©FÀ–ŠAE*Ÿ·ñQ[×Ù>DEÜQÀ°«4ü‹ôÿ U{ª–·äÁ´Ü=Ùq~\‰<,Z04eð8e”£$÷˜7«^ÛIV@çã¤ÖÈÔJl캞%œ)xÎßíÌŸŸk·u¬î²`bþ‘ÀMIŽ’\5EDeOáôOVvñD9JrÕ¾ÎÅ£¿wî7yÀa{g{x¢%¹ÇÀåãZ‡ å‚’ÿ”Y>ÈQ’«ö5@FjáðæààAÊ‚ŠTcs`KÅ "ƒõm4³áâž oJr>[sa £Ö˜¦å’[ÙY W߈öYÊ”¶\½²Ç©p·; g,=8eAÊ‚‰_µ=4Øõ½a) 66j§sóZ°ñ÷ÌýÏw a]®´lV^—+- R¬6.¾CýÌæß›ÃGå™Í¿Q²`câµF3 ïÒå™ a²`µÑÙl˜ûn¯¿Ü‰) *Rõ×–ŠAE*ëÛhVi¼)‹Í‹0Xk‚ýëïݹ Îé”rØó0ïzµp”à\¿®´7Þq¡px¢YØ@‹‚”«‰k3µéŸ=ï9\8õÜÔcS£&Š4|2–HŒ‰"1&Š´î…³T:8Q¦ƒ«#%œ+> X0¥ø,‚%9f_¸î¹újåêÌà ¾¨ ¾Íè/RT~KU~ƒÏÛØî>Ü °ËНÏí^Èb)*»ËØGoªœEÄ(‡)"Ç#K$‘{^ÀØSܶòî°ç~7Í܆û \p÷e<¢X@¡"ŠQ²`µñÜå•Ýêy\¨a¥µZ‡ Ê@¢¼%#A¢<‰òômK¤DzFÅ1šo/Ü–yª¯‹;†nh\­2ÏE)JTøÉD¨AÍSGÕ½ŸóÅÁq”Á) R¬6îC—c†;ÿ÷~7nqosÖŠ‰ÝÉnJr”äÐï¯è„œ¢Óg¸wR'ä«Ã .®oÀð—ë6 †¿©Û,4 оõ›…HY𱱴ƒ¢™ÙX@¸=™™Q²`µ±ñ©¹ÙVÎ(¹“¼\ ² ";©T¤z]•(›]R1¨HÅà3pæUº(#nþúòN{bÂ1¾°¯* R|l\ºØ.H­ ¼*TûÅUËÝ.à}È?Û3æ_póÍŽo>;.‡Ë üeoqA©]=7%9Jryßnò78>ù.7|ò‚”ù굂•RÓÞzŒÿ˜æ”P©=º«OóÐrôâÄ0Vev®2_½YÅ4w„䄊R”¢Ö°çê[»IÞøzø$_@8–ù$) V×&kb<ý_#¥¯ ©”râí¡)Qåi3‚)A¢<‰òÆ1ì‡ Q‚ê@©¡ýiêÅ8}ñî¹)ÉQ’{ìÛ6ßJóæßÊ~|À/J9¥?àqýb,™ø—óyˆûf@ ¨+íÁ) R|l<›Jmˆ«÷ Iþ¡‘šR¥(Q¡àÃu(„”¨RõÁyæ—ó‹qÃŒ,cS£&Š”öõ‘EbL)Z"1&ŠÄX&Ÿ÷}%´Ç¹ýb¶'—œïQŠRT5ëš’£.щ7YÜ”ä(É5:Ÿ(‹]ïûûîGW¤,ø' Ê6^¡„P¶ÑÊ6:@ÅÆ9k#1X?©¶a–ácΔÂAÿs¦D9JrÕ¾sUvq¶—ñóùòõÙÑ4£rí:ºf$@Ê‚ÕÄÍçºï»¥5 Ü7²£r¤,XmT½*`à|ÍËlmÐ>s3lÿ¨¹±ÆEå4AŽ’\5ï^ÙWšq&úÌ×WKÐpÂÉa‰0HYð±±­ ó/ù75×%Ƶ3‰a”ÃD‘Ÿ”FH‰!U~»ŒN?¾Œ-Z;XÆ‚%¹j_ç ]~²3ôómÎÎ$œJ¢¬á$Ã(‡)"µ¶@$‘«Ï¿qûg½â0^˜ô‚%9Q§tÎwÈʨcÍ;Xå% pë}ýá[‰?\€¾ æ_lWN¶ì ßÙLtsx£²³©( R|LÜ`µç½Û¸«C}NÚÌ¿£ý£Õë•F±.®ûOúBÁ Âügû ƒ”««•Çøƒ²Ã¯<š£(E=fCÓ;ylì3:Æt&8eAÊ‚ÕÄ }FR‰Ëx6g w?Çʵ¹!¾SF¤,¨HÅ)E*©ü“ž‚(¨ØðœãæÌVÎyåɾâ›ÃßÔɾâ(HY°1ñˆøz 7¿W{“ò³A¥Ð€•b±gZ8|÷){¦a²`5Ñ•àÕWâ=|…}Y\œ£$÷˜‡[½õû§¡lcFAÊ‚ÕÆf”¯ÒÓ7ëÊ r”äªyC §7à)½z!S¥P[ž®’)ŒQ{LÓ{ÙÉ»ûÑTØ÷«I€”µ ½_Mƒ¿g_æy×¼öaòa¸„&à eÁjã!çŠÙaø‚ék„‡r”äªy×·v'p˜@Íy¢üšàž7¦‰Eÿö[ˬrôV#aìyˆw{1wÇÄõ Bj“) VáÅl÷—Ç’¸æåXRþŸyÛh¹ç' v8ƒ”‡ùÌÑ*¬›÷èh–) VïS+Ôòb”äϰ)‡Q«¦u+§â+gá×ÄWÎ(HYð±qs^¯7Œí­q"‡Üÿµv&Irë¼^"ÿHõÒ~<ÀøîðÊ%±àð›ÚñUP‰ŽÔÀ m¹—S†1ŠRT3ËûaSt.<ꈂ”«ûŒNÍÞàÄA¸½\oo¼žv_ƒÐ+ß} ;¯àxwžšâÏ"ø{ôÏ:OÛo•KfÓýH¹få(ÉUóŽÇo, |/ œ¡|‚”›ËÂã\W:ô\}¿8ó_ÜîÈÈG~ùì ~² eÁf£³ãêõF;âoN)˜Ø?`9$AŽ’œ¢Ó}ÏE”StºsöÓéý”9ßF ß ¾tGAÊ‚Eêü½¿ØÜr»ìøL;q|ý[¼Ä pΑ‰q’\Õ9:w6îF…Áú$Æ.ÿ‡ójÃôĽœÿ‹r”äšy›h­*œ1CeG1 RT¤ú/d ƒŠTõe¾¯q_V3pzC{ñ£ eÁfcß}Úa“º[ÈÍQŽ’œ¨sÌÉʨcÝ3XØjáãîÛ[¾JuðJ|ðc«…RëuOì“Ã(‡5Óî Â{£ÍÀAø"ÌìÕ‹‚”›6wS8±ÕÔ ¢%¹Î>ßšÄOáÌë£\ØoÐh‹Tö–(HY°Ú¸¾®XÞÛ?owo¿ëz”Qm™7 O¢ $Ê{ç˜ò$ÊC(OXhú % „Tûö:Õ';Ô,E|_Žëݘµê¶uã†ÀGù ŒE)ª™µuqãXìÀA½¦ö?Y²`µñ¼| wm—±s6ÜwdJlÕ F9L©Õ¸€H„)"¦ˆôºmALéuÛ–¾Ï¨Ž°[Áô°÷É}’%9Q§TÅqÈʨcí\[ž{иÃ×gÊOEV:À — HY°Ú8É#cmvKßZõvhäÖªIÕ‰7õIQ”¢D…ï“@õ!¨Žú {.ïàµ/‹Úûe7kþ€³ZMcËzo¨¾˜`XçC¹2QŽ’\3OËY¾^¡ì¾WîëÅ(JQ]SÂEüÁ”óšV7L¡Àí¼&ˆQã¦ÅÚh–õ툲×MnD\öùõžºúЖã¾iU¹å³Ë¡e¬Í©|h• s*‡(JQÍ®«33ܶœó«£ÁãäÝŠÈÅ®¾5/ Rü“ý‡&àb£? [¿{©={¾’­ýq25 ä YŒ¢%*T“â¦BH‰ !ÕÞ1*÷ʬ£óƒð¼uéìƒ~oÈY0ñ°¢r1ÊaͶCÙ‘í’páŒÆ#¹&) r£ÕäuòÜIõšž“¯i7›®ó#³äß ˆ¿jÅÖÌ0HY°Ù¸+gMÍŠMÁÄ'!pŸ$GI®™w{ÞcYá’Æúàà eÁjãâLL/Î×xÏ[VÖecEaW®©`ðX3K6E9JrÕ¼U4ÎJ=¬žêˬ+ü@™\×]×-ðs”¢šÈ®;éëߊnìíè€(ÈQ’uŠw 8t:8Q§ƒ«á>êâ>Æ5pN2Ö) 6OàöÈ%òÂNˆ\"ƒ”«‰Î³¼]·ppHùÊä(ÉUû޵kpô±„Å?Ö»ÝV¨{7Àò!‚”©Æ $[*©lOÃYpámÅD3Ž÷K «±8 V•‰U;‹é†Ô45+g¬çæJ rç †)¿†D*¿æ·íðu_ñÞì0ØžõÕ¹Žo·ï#=Êö¶%Û÷uÀÕ9ñÃigÍà¯rRÂþ¢%¹fß¹XÉ,¹5ªPjYî b”øiÑxx»!yʈÜVGQ$DQŠªfÍ™ :ÎIõ k&9JrܾhÃê6NO޵ló©m?¶7^Aݽñ0HY°Ú¸~Ñê®Ø¸^ñš'%ù|í_ËôÜ¿‚å0Yä¤ÿm‘“EBLIÍï#‰0e$VçÉvjþ˜'ÔlÊ») rÃ]ßû÷ê:Vx÷åá ½·½§§30 ÜIÍë7AŒrX³íºÁßÛ˜20®_\Uƒ0HY°™¸‰5©bó+Og½îAŒrXg[뎃%ÐQ ó€Wiƒå°jÚÝ"äì,8öö"¬Ž‘ F9¬Ùv8ïk`å“};·„¾óšÊsî§·Õ“eWŽï;Œu¥,~@eFÛÙñÂG0äôx¤,ØL¼b,l8Æåuc’k©®`÷"¹–ê0HY°Ùè«2ñÜÇÑGŠï•BŽ ¤¥ÇäH1FQоË{õ!¨Žú´¼êܾÇ<õ;²Û/Øý]-Çwä F9¬³­ëW÷¶M äàøŽÄ(‡)"Qû­"aŠHo³/ü¾MSDz}›cÖêÛvy¥pøº&V^ ƒ”;wÙD«ŽP(ÔþÂößìȼo]·‚-3[+ƒ%9EçžÔ 9E'äêûc­p‡ÖqûúÎ0f`˜vªZYØCýãomZݪ±:ŒëÙÕ¦ý©×ãèœç@kIáŒòç9 RT¤âŽSE*©T¤B’(¨Hõ‡$ç÷J/‡sqç÷‘\ñ¦)ϯÆÊÛæ¥Õbí}³‚°ÖÏöÍ0HY°³qWl´vÀŠlÉŸé5A˜µ¨ÊIyû$9JrUçø½Zßé„©?µÜÇ£>IŽ’\}£ºO€ zƒÎçN9¬ÉÜÇÄvv^ðAOþ¦@wäc¥¨j×|»±ñœÕ°Œ6AóY) v6îŠæ2V0P¡ál¾2j®ôÅÀ -B‘Ó+1Šþí·nïÑ9”Ãê .÷9g°00NüܱÔD9JrŠN¡/Á¥rŠNÈÕçp—úÝ=õô©\ ƒ”«›úA=«nrîW[8åþ¶Â-”ºˆ)¯m £¦ˆ|oB.‘SD"¬ŽÿÙ_›ˆ¡ h|’IŽ¡Â eÁ_×ïÿ¾cïå ¤jGMQ×ã/6=k_ªã¤ì‡¶Æ1ÊaÕ¸ùö¢#+ç_n™_i+a,=±}#NûÀ¸k5¬b‹8F9¬w<Þ<œh©àyî©÷`œOîÏÓÎâè9¯_ly5Üâºhê%j¡.š) V×~iAé’áI·á@…)JQÕ®í>ãÊÅŒúý--t}$p£e Qž«ß2 ‰ò\}MR?jjꃔ(RݬÐâ#èüwí†5ðù‹íï3 Ø‹ý'=‹bò=ú@>Rl6îÚiN5ï1àà³G1§zÂ_q;JMK .p£üµiw…<Ëó bu §Ç¶#¥ð~§‡Ã) V©ËõE™yUm¼æô²²·( R”¥NúëgKu€²T¨Œª¾¨QÅ 2ª¬“ü8õ3aÆrQ0mIS^àF9¬³Í®ËØ<^׳9£„a‚£cD21ŠR”¨pN)„”¨Rò ¹g!&"ÄšÈûîI©ÅÜ.Ùötÿ‚å0Y¤ÞhŠ„˜,bÊHª•o{$¦Œ$ÂÚrðX!]9ÅÓiy… b”êm×åùá îæ„¢½¿E9JrÕ¾e}¹Ð®lÁ¼Þ _Öm`˜¶.Ë™ÁE)JT(¬Ë…BJT(e1&jÄX™Ë÷údNpU®èíc ^£Öl»Ò龌ÃÀ(ð!ž b”êicgš7ÛS ßQT/]¢(EU³f5Àµ3?àšˆŒ—Õøž’žª\Öë$”{¯Oàºnô\•…d¿¨ßÔÒÞž@ˆ¢UM;úõÀí u¿ðõ †Q+¶­ße,#Ã@bš™£(E5Ã:ï'3¯ó]Öñf[:Ðî*‘½´uíuú3&…{Ç7¶—å(ÉUû¶ÇfêuÌ×»"bJZa3ˆQk¦mKb{[õj +T©˜¶ È¡J£Vm;'µbx“GÒp'£%¹fÞ½‚ÅÖæí;iå+cP ¥ÎJyL‚å°fÚõÄ\¡­÷ð¼åÆýÎHõ–7îáÅ(JQ¢Bí–ZS ‚D}ª£>wK±?“V0±ßÇXŒ£%9E§;uåî½qÂâãÒ 9E'äêtÙ¯^q§“=0lV2r£(E‰ Ç”BH‰ !%*˜C!¤D…ª ë³:(µr°Å.†Q“Eêñž)b²Hˆ)#©n¡öH"LI„•µ`Ÿ¯mÞµß ²OFóý0FQŠêÌ:3KxáÄ^Vc r”äª}k_$õû¹ûzÿ^, ÚûXÏ]ð,”äkYcÃ(‡‰"…uÜ¡R¢DH5…çë“|Ñyå;>Y²àŸ,(Û(~Ìc£”mt€²P±qÊÚˆAÅF Ö÷}¿¾ÞÜ–+R•lÇ b”ÚmÝŽçŽ N¾ö¼F9L©f1l‘SD"¬Žÿy~Ñ—¨¶»§cý2Ûbå0Y¤ê)Ú"!&‹„˜2’Úä#‰0e$VfÉñýÚÝ·ršòèr‚£"Ï­B©®ƒœ b”ÃD‘‚óàÐ)Q"¤êàO‹zVJ/TJxdz*Qåy›ÍB(ÏÛÒð€ônK¤Dj³âŠÁ¬_㎮}Âkﻸ£õ‚¡ ó]‚å°jÛÖ}€Þt*”BY§ F9¬‰\ÙË)vŠ­¿ç©×Nd£&Šœs"1&ŠÄ˜<’gr(1'%æD£Þhêtp¢NW_º}võqñåÆÀnÈדE)ªvt«‰;É^(Õ}QV“F9¬™vo:¡LK¡Ô¥KN1ÊaÍ´û¬I,4©˜=‹¹×Ä(‡U‘ç¡ü¶|Å:=3$QŽ’œ¬Sš–˜“ubNÑ)¼ã.StBî¿Æ]Aâ÷5]쫾>»Ç*ÊQ’+žÓ•ôðT£ÔBŽù‚å°fZ·‹Àz`Ôû›»H£&Š”šž"1&ŠÄXÿn«ó×= ¦ÃKÞì¢%9E§»I%Ê):Ýáê9?RæÞúë¹Í®¦à7¶›]YPnLÊŠä(É):…‡àÒ 9E'äÚcxä6ü/ßÍé˜S&u£$×ìë}Mw†¹``Rs_3ˆQ«"ëpÚ_¯Ož›ß‹û}æív™(GINÖ¹ ›—G'æd˜k:÷ßwh=4ÿaº¸ß96u:c%¹ÿ M f‡Ø¯)¢¸i>êR8þïû]~w }×Üqq¿¾éqkŒs”ädRàщ9Y'æªÎqÓ_Øî=Øú÷.ŒQ“EîïÙì 1Y$ÄþkئE3±ù|Sàªæg5;ŒQ«¦Ý_½s槆鎑ZÄ9JrŠNÁ1r鄜¢rMç51á!­uï ² ,Õ8õoKu€²T¨Œê”U *£ŠÁö>²¢¾6ƒ¿Øu–ÐÝ!5p°ëOp4s%@Ê‚UêzŸï{ÏÔé1¤{úNºMÛÃI…Û'WGfÝB:)ÉÉ¿‡í“sŠ}p\û WçözÝJæuÎiUfÉc”êqט|…\Y·Y?š%*„Žu>š%¢¥¨jÖÞÌòµ€TFê§3ŒŠ@”š¼Ë±2|¥Œ‚”e©o."ÕÊR "UÚ(]R1¨HÅ`›Ów4ëËÏTì¸Or¨¡`‹íQC £ÖÙ¶'‚ñ{u0D#îʯÂŒ¸£%¹jßøºl×ÑIÒ¸~±u´’$@Ê‚‰ý¬öuvw˜T¨Ögu£Ölëi\M¯ÜÄ/ö=õë¶#ßCr”äªÎßo + Ýpn_öð‚%9Y§ä×ztbNÖ‰9e<…\†kÝž0HYðO”m4˜Ù6:@ÙF(Ûèõ¼ °ƒŠ¬SüNI†ú™&ºx÷IrôÏ¿w—°o"%¹:œÛ¥SŠÜ­á¼1ýÀ³b^£$×Ì»N-8›:†éOOjˆs”äšyï|©å⠜뒗÷Ir”äªÎsšëì”BÜËÅÛ&æRÆ0Êa¢È9'c¢HŒÉ#)utz†sòXbNÔùX:œ¨ÓÁÕ7ï¼¾ ækñõšanHÍBZž‘}ô±ý¥úÏyÏŽ4®?Tæ þ¢ eAEª÷ÔPT¤bðOTl $`¢ b#›Ôkg}Û£›*ŒQ“Eª}¶HˆÉ"Ý¿6}§Ý½¶P -Hâ/!Hü%¸Š‰?å^û¦ïuŒ³ß~`˜îºI½±qŽ’\3oÓ§~7­V6÷ §ŸuyrŸ$GI®Ú7öÉx[Yá.×T9å(É):…Ï¥rŠNȵçp]0á |+7wÜt¯-O?VNê¸O’£$×ìûÜ„+ÐÓt²ŸiÄjœË<±O£&Š”b‡HŒ‰"1&Š#‡J'Êtpu¦Ì×UµÁŽÕ‚‰ëíûä0ÊamºKdm^…;µ¼ƒ²y9Jr;+ÿã=å4pNªw Ü'ÉQ’kö`S—ó?•üSûä0ÊaÕ¸åº)š¼›–.õê=Ù0ý9õå(É):a¦^Ñ 9E§»2À8anºtBNÑ ¹:]V5Ão§õЪ‰fi`Ú.Å×_Ö¨~‚gŽI+§± Å0ÊaͶÇ2-øîÊ2]8µCY¦ƒ%9n_ì\â÷Jî;®µü‹­8÷ÀÚofRܹ»2Q’ä uˆ‘Ä!¦îÙv2” GáÔM_Ép9Jr;kôfFš};+ûˆ™ËmyæJƒå0Q¤ž 6EbL‰1y$õò=”˜“Çs¢N£±ÑÔéàD®ê<¾¾CM=£ eAYªÑ]eKu€²T¨Œªž®£ŠAeT1X—´ãýå+W_ëü5n]ìöžM+œî+ÊÙ´(GI®Ù÷ØËOE^ë+§zFò^å(É5ûÔCF¶³?wå÷ìS?\wu†æîð3î…2]¸õ5We QžVs2å!H”‡ QžZ§2õAJ©6+má2CÇù¾šÖ›$§~hZY}bå°f\ß$—äa]@áªÉG9Jr¢Î1'c¢JŒuÏ`a¹ '·¿6TOòež7m]µŽ`Ìó1gòÁóòíBx s`بä/ŸÔ'EQŠ ):‡BH‰ !Õ†~ï®ô§ §ß-§£%¹jŸ~<Û>QÁïkM·A„AÊ‚ÍF­+Ö>ÅY¸éõ¶Ú‡8£%¹Î¾ÅÎä(s´pjfE™£AŽ’\gßÚ-›î‹?~ˆ½šÇX*÷žh¶›s˜8˜´ž׿៣$Weîßî•DÊ„%)‡AÊ‚ÕÆcœ•wÉ,ÞýlÐ}Û‰H*Nà}dØyÒxà˜$ó}rå°fÛcyÆDY^ §»Êòä(ÉUûΫ°åÊž ’ÚõÜ~Œ¢ÕÌÚzÏ·DpùŽ]2EX¥åâ|Á„a¨OŠ¢%*<9‡BH‰ !%*ö+‡BH‰ !Õ)¼ú*AË4Ûã‚å0Y¤Þ2mŠ„˜,bõ5pDOÞj–ñt ë}*hµâmäAŒrXµmš¸§î:°Z¸ncsWr”äš}Zß“‰îµ"ÛH£V›»}Ô]"/ºrƒí¤AŒr˜"R½íƉ0E$ÂÚøï¯ ßãÿ,s—œõg–E;Vaé+œs³Ïô…AÊ‚‰êièî9°³v…B­ÝìÀɲœ®m„¯ë³ƒÎ׺Ã(‡UÛVå´˜*7ön93%ÈQ’ëÌ“[ÉÍirC ŸŽZÖy L.ÊaÍ0þýyWÍ `]Àâ*D9JrÕ¼mZãIëBIûœ€}rå0QdNcNbà·®)é›ÿ”¢êƒÞÏÉÞ«äÃ…3vù´G¤,XM<®$©÷ Y㺡‘–fednL_*• r”äªyçý¥b5)$÷°þp¾öjžy\Î×Ì}kæùþ¨¸oÑŒ‚”ÿdAÅFÿ½aP±Ñ/Àz_’ˆ;ßXy+ R”¥Zù|Sª”¥:@eT¥ØÒ5ªTFƒå=^ÇÇz ¼œ[´ [>˜å(ÉUû¦þ¨¿TL•}ò Q¦í”‡AÊ‚ŠTw(R1¨HõG: ôÅaP‘êŠÀ3ž{/”z‚œÚb”Úi[—µô·gþ„üvWCwá`?/ï<ƒ”«‰s*Áî™Q’·n„AŒrX3íQ(ó»lìÏG¹Ü™0HY°ÙØÍPÿ Ž‚¡¾º×ü r”äªy÷™[ïAäs]"ßâ>IŽ’\gßêóbX4².ÇÈV&!\æÈ…Ù"ÞŠÄ(‡u¦u½ôøf˜s_%ëóÄ>9ŒrX5n½&J0Ϻ®ÝãööÈN©¼vˆ¢UnßkYX^ÎêÔmËÛqmËŸF9Lù~d.‘SD"¬N}[Ô—¦›Ž¬ ^1a¿©OŠ¢ÕvÚ;€|¨rêŠ,ŸŠr”äš}wsÓ›³«²ôÞ/00N?ü-woE9JrÕ¾ó±5JqŒÜÍXA=–»à eÁfã6çò-7ˆ³˜<ß) v6ê/F—ÙŸ˜pîÊjawTîÅÚAŒr˜(RJ&8DbL‰1Q¤ôú9DbL‰±2M¶oÿކ6Qò( RT¤â O‘ŠAE*ÿdAÅFœ¾PlÄ b#ÛŒ©$y;ÛÆ.»æî-”šù³kAŒrX3MíA°3Ž? VµŠ¾Û4]1T¬y´`¨u‘9»AŒrX³má§9=ù¸‚é­ürB.ÊQ’St Å—NÈ):!WÃ|Mép¾¿€BÓ«Ëô:JãjvÝ–û³E'ß«ÍCßÂ?ú¤(JQ¢Bav(„”¨R¢Bé3.‰5b¬ÍóU‹põtlk¿°Ã†ûc §ÆöF9¬³mg$XOnì½€å$ÈQ’uJC&ÆD•ëž|}±ÕÎY iGvRêÙ3îØ¬Z²ëò£b½sÛ krþhëï —ò\rú(ˆÑ?þÚÝMè{h”¢ÄßBZü)÷üØ¿G 7<0ìNݼ'¾œÀb”ÑïIì‰0E$ÂÚпÑ=6vȤPè³ÃìI£VMëÛEõ:$o-˜¾_Èí¢QŽ’œ¨SÚ121&ªÄX÷ x•ÜÇê…ö]D_àW}D9JrÍÀýuòÆ—¬9û›nñU ãÔ牕qÙ¿×NŒrØ;<é^_ß¿÷N-8ºX^^/˜°c Ô'EQŠ !•C!¤D… ÏÙ¡R¢BHÕÉ1^WI¸Ë<Õ´ñzcPRîd¶Å0Êa²H=À4EBL ±ú¦Gî ·Å6pQ{0¾z®kŸv9T±ËC{ûBv}(ÊQ’«æÍóšÊí÷×¹}ý £Çþ }2e QÞÛuÈC(A¢¼÷†æ‡ Q‚Ú”è«îêVÁ:§ÕUÜŠr”äDú©PS&ÆD•ëž?^ëããZ|=x«˜”&у· F9¬³mMÄ|û²mlIuõG®ÿ9Wt¤,ØL<©±—‹¼>-ÞNÁ‚i—+Ë)ŒE)ª3ìLä=öuÜí4œÜÞ¼¯×}*Î\yÇûl—=üû—d£¦ˆÔ’q@$‘k"ÕûlŸ^Ó>2/- R”¥wèØR ,Õ*R%—Ò%ƒŠT ¶7°k×¶Þ–] ;ÎÇc¥(Q¡–>7"HÔ‡ :ê[8Þ’5pÌŒ8ø/1ŠRT3¬oX œºÝŸ%RkTÜû*˜Ômex_1ŒrXµíPj9vÉ´`z@+×L£%¹Î<9™mÕ? *%ÉûƒfªŸ!7íïçãû~RTÑx|•êbÞÉW0ý«Ur+_”£$ÇÍ öß½sGÝ­+Š´ Ë Ç ~Aу·À‡AÊ‚=]V»pÐh…AÊ‚ÍÆ.‹èo2/˜^ò’³ˆQŽ’\3ïÜÌ5^.;L_såºc”£$WÍ›´Î{+œ°­Û›X¤,¨Hõßo©þDþ8ÉOÃÚr …\,Sób|œ¶#•‘9¦sìV˜ï{‡‘ï_©œà° Ø'‡Q«ÆÍ£–“ï¼j^,”êR<±O£ÖDººî÷‰‹ a”Ãd‘jÉÍ 1Ydà׿5ð¢RS~ ½ßʯ¹—…å‘`|Ç•ræôXÖÍ—5š™) ÊR­¬‘)ÕÊR "ÕÈÙR1¨HÅ`›7—ß¾åX»sUÂf¢Dc7õöäí`,†QEJí÷‘Eb¬ÿ&·b[eÞi‘÷“ú¤(JQͬÎßôÎpO? RT¤ê­>@*©¬Oc{´Äâ“r«l·¬øœþ(HY°Ù¸% <7¶[^„ŠQ”¢d…ZÅÑVˆ(Y!¢ÚÈó(W·DÁPõœ·KD9JrÕ¼ýºQÆ{†¢q×';½Ä:.û>º2zûÂÖ•(HYP–jÜ¿aKu€²T¨Œª^y£ŠAeT1Ø&Î ¼¢W ;ÏKz1ŠRT3ëTvû5:ô›Úº_ã'= ¦ÁV>êå(ÉUóNõf2˺S¿.Ì2.†Q+¦ßn_´Ñ®÷È\;C¤,ø' *6úïO ƒŠþ Ó9vW*ózºÞvvSA¡Ô˜í‰}rå0Q¤´¶8DbL‰±6þÝvàîð(Èvñ !ˆQSDjI2 aŠH„ÕñŸ¾övÛ¿×[ÃÒ½…2ãzÞŠ‚(‰ò´ Þ”‡ Q‚Dyï)ï‡ Q‚Ú”èÊî @¡Ômô‰}rå°jÚüõ…ä×Mä·F9JrÍÀûkâÒ*`í…SÏû+›E£$×ì;6Gå‡í*j¹cG»‚å°jÛÒçx¼Æ7ewzóJ¢ Ô5%².?Ø×Už8.ÖÎÿ¤>)ŠRT3ëшnV@^u¤,XmÜŸsUg?x³þðB¥¨fØcm6em-Ü»˜h¯­AŽ’\³ïú¦L8ûT@x,˜gŸÂ eÁfc¿ÀS·ÇÀQ¾Ä0ÊaÕ¶c•çn8¢gíuøÅäž›‚ ®¹@}R¥(Q¡àÉ:BJT)Qá7¥R¢BHµÉq µ½OÿûŽZÕjùlœPW°z> eAnb¬[ô‡›´ =¬ûX÷zK­ëXÂå0Q¤ÞbjŠÄ˜(c¢Hãà¦J'Êtpm¦JhÜOÓ0m9wPÂæ ¤´ß«–Ͱàí‚IaÁ_¬ßâ'ÝN¯-Õ:”—éÿáwÿÓ£%þ|æâoAJü-ÎQ’kæ©×rƒ20j ûä0Êa¢H!çÐ)Q"¤ºÁ×!Û—¿³oZŸ³+ÊQ’uZç…,NÔéàdF¨oêÄœ¬sÿUî‘“0 ¹7øzÏíA”£$W moåZÚŸH e¼EOì“Ã(‡5Ó®Ý5RVh”äÝØ'‡Qk¦iºm< ÓûúŸÿ¹PûÏ6]YïÏQ’«2§iÑJ]]·±A¹);™´qÓe QžšI²ä!H”‡ QÞ;vÈC(AmJÄ¥ŒƒùÝ™-ßAŽ’\gßÁS†Žûe:°ûE'x^­# “i{ÆàAŒr˜"R=Rg‹D˜"aõÙÍ_ÇûÆ—ð²[“x;FÑ?þÖý±oïÌ¢,Øòú¶„m_ùÊuSj8üÄ>9Œr7Í~oªoöqŸßúõê;}UÁwéÂN_…AÊ‚ÚQd+U1PœaÙ“qU“.``nÐù{”ÚLÝ㲨Õ.ßM×ô|ôÌ5LO<¹O’£$×Ì»Û@¿jåãzžÔ56x³„(GI®:V<<1xÿÓ³]5ÎQ’ëÌ3«°ÒÉžFwáyÖæÛºƒÂS"²›zÏ0;²Ša”ÃD‘Òkî‰1Qdä׎9ðØ(‡Õ§½«72²€zfOÙ¢ eAncð>‹_P»—ÄÜa šù&´/ö¤–ë¾µcÖ ¢%9E§ëq鄜¢rŠNat鄜¢rMgïë{åÎ÷æ GINÔiõë[:œ¨ÓÁÉãi„æxbNOÌ5›¶ N}‚åàӥDŽ֞'öÉa”Ño§ß%aŠH„Õuúu†ßWjxå·|¥†F9¬Ùvå&ƒ…üñ®È;w<Êaí×–À @)ª HwÄï=Ÿi‹AÒNn$dB¥(Q¡ÐäP)Q!¤ÚÀïZåØŽuï>µð÷sï¼D#H~žK€”«§ZW¯÷õMßp=êÔN ƒâCW®Y|rå°bÜôíª«°p90J­$ÊÕÕ F9¬™¶'RµSWwßÅX1=8“÷· F9¬‰œ¯YÐ…}>¾ F9L©·ü™"!&‹„X›%§yÖQî¬*”Zï—[«‚å°jÚôòð\éÄ¡&O'F9Jr} 7БO¬˜‘ç¦i^UEØÇ†éi9·å(É):…IæÒ 9E'äBšÁ¥rŠNȵérû}Î;Wν;€}1Ž’\³ï§õ­7è|ý(‡u23Ńi¾¾Øîì †Z²6‡ F9LùÞÍ]"¦ˆDX}ËÔª7ÞÖ¬S~,ŒQ”¢ªYëu‘o´I}ZÕC~v;鸫¯w—š`§§«Â¼Žæ—ë·d­ÒðÚ’WÔ.ï c”Úm§èoÂ/˜~‘â+9JrŠNÁqp鄜¢rõ1lãÜ6d)ˆ¿këSna² ,ÕH*ÚR ,Õ*RõÔ"ŠAEjà÷Q»`ã=k(‰¿„fµøK ¾ âOAª. ÷#¢M…›g!¤¸O’£$×ì»ýau•OîV؇À‚å0Q¤´-;DbL‰1Q¤¾™"1&ŠÄX7M”—Ǿ²ªpB˜fßY) 6¯Ë2œ×ßSË'õIQ”¢ša§âõ™WdL°Ÿ\ý¹C¹f Ì”{W´ÀD rôÏ¿‡¾)òJrm8»§'l?Êû)µ>øÄªqè£"Šm1¬˜6Å¥µ¬ÎxÅŸà' R¬&Ž×_Ûéà—ÁJœ+o¬ýØÞX9ã=×ÝΟ£ÖT>2ÂÞƒoñ˵Æ(JQÕ°é;&´?˜'ÿ9?·BR>?ÂÄ(‡qÓ¤uÁ¢ºwF‹ ^¯Ì i?%ߟ£(EU³æIv­D|À²D|Œ¢ÕÌšµ°}QÆ|ß4)ôBðúÅcäÖAÊ‚²ÔGGDDª”¥:Àö8ú[zýÕàÂéñ£²w9JrÕ¾å}”Vžn¬«k¾O’…ÏàþÌø>7tœrgƒÝ#W8ë²¹ F9Liĺ–HŒ‰"1&Š4b]K$ÆD‘kÓäŽC‚‰›yÿÊ?gz 7ôU\/ÅiQ”¢D…jo°©R¢BH5…ÓáÚð–Ú ƒ”e©V‚Û”êe©P‘j$¸m©T¤b°¾yGïñ8®Ü8÷®•Ù) 6¯¾…pm>º˜>p¥ná„]ÄôQ² "U߀T *R1¨H dJ¢ "5)9]½é¯`ñœeÁ‘Î' {9gÖ©¦E)ªv…R[•åcÓOtÈç¢%9nžš2”±å;«ù´n0ù9ÿ‚é™±'÷Ir”ä:ó´óoöÁôûVþàój2±{s`Gà–ï}on¬W°÷Œ¶+]QŽ’\5o|äñÔú7Ëã-Óu¡‘íMòsw…R“¨Oì“Ã(‡5ÓIØ ß¸ë++Ñ ¹¼–à)™eví¬£(E5»ú>*Çï^é+ü Œz½§Ve2Qå© QK‚DyåiOØ”‡ Q‚ê”З|ûÈç²tÇ…Iö+ õöëM·"ˆQEJÞC$ÆD‘kã¿i­\Ò¦;pìÊIØ'‡Qk¶©En»ùâ<Õß³v øñ¹ô¼¬ênÇð|­Ävå(Éu^ª_øðô$ê)ƒ'øÉ‚”›žã‡ü2¦Bi3[q•·Î%gbFÊo).Iˆ¢Õ)¼ M»Zhº–±cf‹f¤,(K§´Gª”¥Æ~qL2Êamn®zuÞÚ‰öcuDüøÎ¦õ}Ø)žån_ 6Œ,Góûïö+˜´<¹O’£$§è2=.StBNÑ)lµ.StB®M—G¥û ü°JßÍ>¬) 6÷nltùõ­…S‰'öÉa”ÃD‘RÚÆ!c¢HŒ‰"­£T–J'ÊtpÝL‘rØÝ¸›T÷øÉ}’%9Q§”ŠtÈʨcíhí±ˆëZ…äÙ3´õJ?6"ª“¨tQÛØ}_•û:ºƒz¬ð?Y²`³ñúÊ’³¦•‚Á¬5ëZ‰r”äšy]'׆éï‚RrôÏ¿>÷œØ”ÃÄ_ƒ/ŸøcþWöþR\¸˜\@!›o“à eÁb£ÖÈg%+õ½ŽG«%Wù¼ÁôðK>ïå(É5óŒÂä|vš ŒnË62F9Jr}­ç¾ø²Pbئà‚å0E¤VÂ"¦ˆD˜"òÞ»D"L‰°:IÆqÒ=ñC¹Ž?ò  óáü†‡0HY°3Ñ,_ßEïï50£@J‡Ÿª^ÇG äÉ5Š ±^‰Q”¢ªaýÙ­s€Ÿ])ä4¼©OŠ¢%*|×w$êCP7êž#§¯·óÆP\öz9ƒ%¹Î¼S4Ï|3oÈ^èøÕ ë4éKoŒrX3lÚ5‡«-áüLT¡P§ ßgbå0nš6üuG+o†%>•÷n7ÔW}~Uu”£ý½yRR!æô Qu0…‹]×¶V° ù]72†AÊ‚‘+XŽÙ…&~MܺÜ#F9¬Š\®ËÉ穹¡lP.ðX¸Ì HYðO”mœ¤ï±ÑÊ6:@åq¬ÙÇAåq`°¾]üï¸+ixbz¢ï‰}rå°fÛdú¥×ÆÂûÝ ¥¸UOè“(‰ò4?À”‡ Q‚DyZ¤iÊC(AmJœ–Ï|»'·é‚€ïur£"¥¨jVé¾ðu´th »8^7^·G“³ÀMÇNNNOW=¹O’£$×Ù÷»â„O¿Ðè•{‚Ÿ,HY°Ú¸_©QïU¨çÔ;Æ•n£$×ìëîЖ‡W¼tCï˜Â —B¥(Q¡~×R)Q!¤º?S9÷û[~áf· žjCn= ƒ”«ÇµàFŠ §ŸyrŸ$GI®Ù×rqt`¬<²Bn”£$×ÌÓ·K#ÙŸó„]VOžEAÊ‚²Tãöb[ª”¥:@eT¥ÐÅ5ªTFƒmÚ<ÊÈøøtOc)5Và³w_7â |»‘À}‰‚”›§²@ÙCº}nàÊnOå¤`Ãí‰r”äš}ó¤pöU ?àኲùñ‰í«oiú¢xSâó¦>)ŠRTµküz¼¶S ìüV– F9¬™¦tÃØ„ÓûŸžÜ'ÉQ’kæÙŸW{6û ŒR[Zä¡­{Ý÷¢ßØ—g¦ìüYŒ¢Õ »Àñc_…S'×ûä0Êa¢HÃQµDbL‰1Q¤>µL‘EF~íªX8_ÊauH~Oô<·7–ç¾góÆdFAÊ‚² l㵦$lt€²P¶Ñ*6NY1¨ØˆÁº.ß®ð½ÅÞUvo¡^‹§}2e QžÚ'aÉC(A¢<½ÃÊÒ)Q ¤Ú¬¸šã”B‚ÜT -¹/7Å(JQÂ]É|÷å±3÷5†Q“Eª'Œm‘“EB¬M®Ò„ê8ƒ@+ÌÉ ‹P”¢ªYk_:®8ˆâK~ka¤,ØlÜ´PØjhÜVí@«n~5üWEAÊ‚ŠTý®C ƒŠT ¶§¾œ¨8˜ðK†.N(§=¹:0ÛÝðãü=JrÊïAÊïA®>†}Òbñ¶Èð&‚ÙEpÞE£(E5³Ôëì‹8~ÀÌ?XŸeƒ'æ·Í™BΧÿVÓy¡”‡-÷œ‡ Ê@¢¼÷“vÈC(A¢¼wœá‡ Q‚Ú”¸O˜E+5„äòJM¤,Xm<:¯ÞÝò_(õÄŠ_Ã(‡)"ßÇ©\"¦ˆDXµ9Þîûÿg3.÷=oǬžäùÅ®2>¿<­`zßÔ“û$9Jrͼ¾¥Âq)ÏÀÀk—D¹¥" RT¤JïºK*©¬ãì*Jîkþ ÎA¾*J1Œr˜"Rwm‘SD"Lù^$\"¦ˆDX›$º£×ùk¼Xyî“êçYØu˜B¯°Ý¾ÀÈ\•›ì» eAn"ìõaÜ~_‰îLØÇ/*¤_{¿°c§©9XV׋é eAYªå šR ,Õ*£*í®QÅ 2ª¬3§?›©cülfÁPÞ‰ŸÍŒr”äDz×)c¢JŒuÏàŸu€´@vØ`RZ {¬û¤ïCvMÊ2hK¼.–ÃÝDçsƒ”e©V'†)ÕÊR "ÕÈ¡ÛR1¨HÅ`›6t¿aãô²± q™à“ä(É5½™ºüŠŸ gKdð“) 6Ï_O4|ޱ€}ÅuŽ1 RüóÏRïÓ¾µ›R”ø[hÅʽM̻Ҽȶ Và)NÀ°O¤,ؙضOý½å¡KÁÞA¸¹D9Jr¢Nã‹ß¦N'êtpõ1,ÝLÓ{4_íÆ ÃçY£$WÍ[—I|ûìÖ½‚ÁÀšuÓE9Jrͼ÷}®Ûöû,Œó¢‚Šm]9ÛÙ ¼£(E5³få%7óÈÓ«zr9ÊQ’St Ýš.StBNÑùMꄜ¢ruºìð¢ÔÛ[ý²×uÿzN ñœâ¾/Z¤"8¦ÃOê“¢(E5îU(œüá|ëåÌÖõ›Ã?8³…= Rä&ÂÄ'çÊ-¾(’ú²¡9»¯,ë;%?ÒÄ(‡‰"õÇnŠÄ˜(c¢H#ä¶DbL‰±nšxÎ}ñLÁ@¡‚×`‚å°&ríî\4Z÷Ï×#‚”ÿdAÙF£uß¶ÑÊ6:@ÙF¨Ø8emÄ b#ÛëdµÉÉ C»~`í }2e fÒÉ32r„¥ªïäl4b¥žâ_d¥ž0HY°Ùx}!zqóñíSy{¾Žqjµ%x—ÇÀ(äo²cºAŒrX3íÑ)xáÇ/Õ(œþ žÜ'ÉQ’«öM×-Ñ£àÇt}˜ÞýÉœðÆJ–›‰r”äšJ£íÃLÙ…r”äDVFÎÒéàD®>†yé;%¤Eî‡:fý½í^¾&Íú[ô¦>)ŠRT³ëTºj¬³?…B—}œÜ°F9Œ›f§Ç^ÔÒ%Qqrr`Œ`Y5ÊQ’kæ­Z ÃLKßQ¸PæX•’Ý€Q0=é!w`D9Jry³»â50H{éä:Ù±^ÝaÞË™Æ}µÉûä0Êa¢H}øM‘EbLiT*M•N”éàêLÙ®nàYÕ‚Ô+?«Äè_íºèÏ÷îPŠjã¸ê½»Âb90N?É$çö£%¹fß¾¥òµÇv}×;zYéqß·è½ sàœTÁ¸O’£$×ì›7_±„ÇÊ?ѹòÞó“]=P(t’„Ý=Ä(‡u¦yºÄyè;éІY5[97u3šŸ(ç¦Be fRw:_[&_ú ½9ÓAQ”¢D…z–ÇR)Q!¤êÀŸÝK©îü¼!í+¯dˆ¢ÕÌê½xIÄÀ±÷!s¿Ža”ÚmZ¯7nÞ2ðŠ7¢ eAEªžÇR1¨HÅ`÷4fùi˜ÑÑMC£ÓŽq¾|¼³K6»¯¶.ÚÔxf'†QSDªÉ[$‘SDªû›-aŠH„µI2+_ç°;Ë ‡*ÿó-bå0Q¤Qù·DbL‰1Q¤´®;DbL‰±6MI2}ûá×Tð½ Éà' Ò¿þâ˱VgÊaʯ¡E]ù5ï^pÞç(ÃýÝçW»!òÉñ;Š gàOð“) 6Ï%‘„?ǯ’W5¯(*˜þa»?8µMH¬9Ÿã3S) þÉ‚²ÆÛF(Ûè•Ç¡·€ÇAåq`°MÔµËFêÍ0üvÐÂu×å QŽ’\³o×Ò­åÅ¿Cªñé UPõ}žÜ'ÉÑ?ÿÞ•“ô.”äê€N_ùZ'»a²`¨›—wLF9JrͼqÁs~sO¡Ô]â‰}rå°fÚ•F¡Îy™å™iu¦J©>¡O¢ $ÊÓ‚6S‚Dyåiáš)A¢<Õ)ÑŸ(Ó«üDYÁ`šŠ»}AŽ’œ¨Ó(Þ[21&ªÄX÷ N9 ¸õ*òØ­/ü€W¡€ÌOx1ÊaÜ4-1¬Qsç9î3hà£N Ïj5nÕÅmKWžs\ÀUÁ½o× \wrÞÁ`»ç¹«7‘‚À°€ïB) £ eÁjãñÕ²Ãv¨V8µ¬ø]jЏËh#s¼nÎîŸà' RìLÔÞzðôoÐ;¦”äªÐûÞ°°ï|Ž‹:g ï²`ÚgÑï2†QëlÓš*llJÔ»Îû«kÁ¤{ÁPq%݃å°fÛc•Çw\TwG¾f1 R¼lœÿ÷ývgÌU§óá‚4èk–¬žH”¢%*Tëí¦BH‰ !Õ~~å{L_gààôzQeð“) 6Õ{×-ï£uGPÚ eÁjãøð>„N4Éûè8õ Š´sýr-냳)ÃôEÊúÄ9úçß;ÎȰP’«Ã9=šÃT¿zfëËÃÏ“¹aŒrX³íáäh%¯§“ÓaÒPjNN£Öl›œ•NþÞð½¡Xç eÁfã¬× ŒeröŸØ1)ÙV«¾Æ(‡U‘óìÊœ\e£$'ê4.4u:8Q§ƒ“uê>ˆ­s²NÌÕ)}]¼Ìï‡[®ëBñeóLÏç¬Æávö•g¤,ÈMDûó‹[9EªçÐ$z”¢UÍÚúCCÒ-åt¿VþÌé$@Ê‚ŠTcVÛR1¨HÅ "U_Ï€T *R1X'ÎþãtðÆð«Un”(.ÈQ’k^çÍÝ—t DÏûD eÁfã®öuþàî¶{öÄ>9Œr7M+ĨÔäJqϯ!™| çù5(1²`gâ¨õ Ó]©"ç(ÉUóŽËóÑž»âøl.êónØN¯þ¥ºƒîƃãNÖÁ­šûXAŽ’œ¨Óz‡,NÔéàºÇ e÷Œ£†¹CiF±Ú¹§¾xOì“Ã(‡‰"¥·Î!c¢HŒ‰"¥È!c¢HŒÕiÒŸaÓJXÏ3l š^N•~†-JQŠ¾ã ºÏ”ýnV»´–\UšóQJ€”e©Æ×Ðl©P–êÛ »¿òñû,ÜÍÁ „×à?›ƒ eÁ?Y° Σ3æû^Ý¥§°—nˆsôϿ׷Fï!e 2’ã÷PÊ|OOìygGãà™Žç¥ ²`5qtÝÀÊ’ˆ7+=,‡Ä(‡5ÓîoûªóëÚ¾ž÷Éýåº0ÁݸØ8|º– a² "Õ8]kKÅ "ƒíitï  ½^ÁQ»ö¼Ó&›ò¹jÞ„ŽFÉ.ühöpÈÙ‹Ñn«s!ˆ2$Oè©Àò $ɃPñs¶¨;âeyðB¡&N–b”êi¿k`ø€Ï_ð¾C]Zb»–¥ÆE»‰­+{©ø¶<ÁO¤,Ø™¸[ùÅÛáø>£…B>¾çÒ¿XW¡AõAZºèI}R¥¨fÖ>'²­#ê_"å°*rݦæmŽß‚oî$ËØ'‡QE›¯%c¢HŒ‰"-/ÝRéàD™®Í”.Ãî¾ç¶q¸ü7ó!RT¤å?[*©T¤J/®K*©lwr¥rÜû4‰û`ò_ðØ}£Êʸêv7 R,R'_’ly&b¥(A¡•Ó:(A¡ƒ*ódº2¢Îë4F½6#ýN¯ D¨3jN%P+x§œE9) 6»`Æy}^£P­ðä.„QSDjî0‰0E$‘ް0ˆ)"½aá4Ž“¦ÝQá—­¬7“¼< Rä&ÂÜâ‹S/û±CØ ¢#<„ ƒ”;wÅF+†­˜}„ÇQÓ¨$èí‚hÁô9úä>IŽ’\gžÜ{b ’¬j1MŽõmߨHÞ:q°±Œa”ømá P³’ËŒNfÔÆ¯b'ÏÃÉËëüQiv³É5±UEÎê±›ç#àǦ¦¾£ÛqûÛðäP‚åàO<†Q«Æ-_í0™yiZÆ×÷鄇ÀÏÂL‹zµØ ˆžÞ늂”;wÅFsÿ)˜=¢¯wo¹Þô¯™Þç‡N îüÔi£ÖL›»Ú›!ó~å©[²²Å0Êa¢HÃGµDbL‰1Q¤´¨8DbL‰±6M®/3„ûj§µûBª»ªPèõf_AŒr˜"Rõm‘SD"¬ÿÃó¼y˜vcú~¬DiAŽ’œ¨Óèr5u:8Qgè÷Œï.f «}›µC´O™ü`Ýt€%œ1/ δ²Œy¤,Øl|ä¯ñ‰© î·Kí£* ; ]AýÙ8¨ Oð“) 6OûLæWÎ?Ý7ýxo8÷Öiûâ÷-:ÎËwŽI?g¸ðú= ÷tn#ÿ=×)«é<_mÖ¸P’+¿÷c…6_¬ë‚ØS>Ãc' ¦gŸÜ'ÉQ’kæ]ïP0Ñ\0tPçäÖ…0ÊaÕ¶ñò{² Âú+’…AÊ‚ÍÆ¾ªäèu/äU¥0HYP‘ªßž¤bP‘ŠÁö8z÷Éq/ÁÀA”£ã(„AÊ‚ÍÆ%uåFáðÎô21Rä&ÂúÍ‹»;½—§ Ts)Oî“ä(É5»¶iÝ©ämÓs_…1zßyÛt”£$'ê”’E™Ub¬>ƒéëªqÌl7œºL¤ûú»ùYõѪå<Ä(‡)"5'ˆD˜"aŠH-Z"¦ˆDX›$ ¸lM™“³vÏÕ+\(t-÷"cå0nÚ{H<Êöð³Þu a¶”öƒ|XÜ`5qméYzyõ^…€Ã(‡I"­T!ÒI"XÿGÆ ·ÓVp›&yó·Úë õÚ­¬öºDH”§-@¦<‰ò$ÊÓVcS‚DyjSbn.…ãbÁáÉÁ²6OáÄ0ÊaÍ¸ëæš÷ f+”š]”‰1ÊaÍ´#•Éžï[ªàQ©?ï‹Ã2;âA²`5qW>!c×T £[VTr”äªyÇ#Ó oÀ¯LCÕNI49JrÍÀîô™ê¿rò†@ÃÊE)JT¨7„X !%*„TøóŠâY“ó¾!ì+¦ß–Tx~å/÷ÈA£ŽìÓÊx¶|g{¥•#£å«ŽŠ5˜ËwqÀP±…¶p¸bÈÚ0HY°™ø¨Š;*S@x+?Õ) VÇ.œ \ÝU8죳p. RT¤|[*©T¤3ΖŠAE*ÛÄéÞÝÏz½þ7ó0üír”äªyS_bsñˆ‹A¬Ä) *Rb-ƒŠT ¶ÇqímÁÔdÁÀNÊS“AŒrXyv¹œ¿ëNX¯!ù}×Nd£&Šœs"1&ŠÄ˜<’gr(1'%æD£ÔâÐéàD®¾us¥ã¢ƒð _æ£ eÁ*õÎ-Lec3]cóÛD:5¥AŽ’\}K—ëqßT(5‘s=AŒr˜"ò½¸»D"L‰0Eä;ºr‰D˜"am’\a@8§´,W;¦³b;0 eÛx]9ÊQ’«:Ë·V§öÌå‹~Ç¥]c) þÉ‚²ÖŸ¦P¶Ñ*øgÃ~T닱]§£Â7,›ò%m;K[0ؠò´QŽ’\3ïáêø~[@x¼»Q²`µqWO0påà(,Ç$'ö­ú[ì^€‹Q”¢šYkw.Q¤yëXáÔ=Iî b”ÃD‘Òkî‰1Q$ÆD‘RŠÇ!c¢HŒµiÒ¹ Ö¶ÂÁ•èå„DAÊ‚ŠT=žR1¨HÅ`}çîÌ Îl»Aœ‰žÙ) ×ïu™IË{ß÷ibá`c?ñ) 6Wdz»ë9Ú÷Z?>w£ÂÈüdAÊ‚ÜDÝóQ9s”Æ ÝpÁŽª,|„lCA=wpnU®é䇉Öñ‘ŸEý­6%ò³ëx®Á¤VEêwšÈnàÀAôðøÝa²`³qV–Pëv™õNx;o{8fÏ1î¯×½á¢ÚÍáV"VS‹r”äš}×=©îÔàÀÁ¹ú®®f”£$× ¼î'6ž­ó¬­Ö9ñ ö_Ãð Ém=ëühöx[w¿C¬m¦`èÕc}3AŒrXµí¾Y:˜3-˜º¼+<†Qk¶v¸¢x:K`HjœP GINÔ):¹NÔéàêcXï÷î«e 䮿©q»ÜôÄ(‡‰"õˉ1Q$ÆD‘z¨`ŠÄ˜(cušlßM hM÷»`ÀSa÷Ò1ÊaͶ~‘ÆärÞø…o…Sßœ'öÉa”ÃD‘z寉1Q$ÆD‘FS£©ÒÁ‰2\)ûuåNøTýºw)f”ÀôŽ”­sŒ¢ÕÌÚAšãÎrñ(ùè2@+– {_ (HYP‘jT¢l©T¤bP‘ªo @*©lGM%7ç8µ ½¹5œmÏ{[Å@!Šo{1ŒrX³í¾€rRÓér‰uû.¡ó…ãp6•¹:a²`5q\]o=Ï%lãf÷sÈ…¢‚éi_¹Rå(Éuæu]ëp¹KL¬ôå(ɉ:nK&ÆD•kÏ`·Óç 6=Þv|ÍÀAt ¿,' Rl6jgä­T…BçwX&(ˆQk¦]gºÃÙÍm¾Sý¿Ï=Ð,T@ü]_Ö,) þÉ‚mpù5Ô8ÙaÚÃ0±õQ¬QýÄæçÜ!/Ö1ÊaÕ¶mÙíEî»*>ȯ eAn¢¾ò*Ü>úîÃàÎî¶Ÿ|9sµ¹®ÿAWŸ{¤,XM<–)‘×+šmžZ Ê2"#{ëæÇª‰Ã„y)vn? Rl6^u=`¹³„¬S¾pð #”«‰‹Úgf÷\þ€«ZÝ“û²\ómQVë ;gM'ˆQSDj¶‘SD"¬=€µŽ+ûåb’³ú;ÊLÉYý F9¬™vô9oÝççú*_ƒ—}A²`µq]•ýONaO/ô¬‘8ÊQ’köÜsEí…ë],WØ) *RqfB‘ŠAE*ÿdAÅÆoÖF *6b°Î¸mR¶y«¯¨Pàæ9ÞXÄ(‡qÓb IûÞå“qžv`Jíó|r”£$×™wøJ /ðQèzÇr#yÁÔbÜHÄ(‡UÛŽQ‹Pí Ý~¨£idÎOAðúÞ5¿j®FñC‚%9Y§qrÕÔ‰9Y'æêc8§T^v¿o# — ˆ‘¯Q²`³ñŠ¿jBê^>Ù¡…ÂëËüdAÊ‚ÅÄã«>F+åS0tò‘¥|ŽïªÍ6+åÄšm‡ÏŸýø^±´ûÔùÀA}ð°? R¬6Ž_-Yn5;c×€­­ôÜQ*PçÐ;ü¤E)JT¨v<™ !%*„Tø­sÿFÁµ.W‡®,ÜX S®³•AŒr˜(RŠ0"1&ŠÄX{çá*K±C…ƒÝýüTF¤,Ø™x¦’ˆÇÔQYäCscºÿ®ŒL£$WÍ›'»ë]ygçÇ>bøŽ|) ªd¾ö‘(HY°³Q»½Ä:‘{,×L w:ë}á—/W:0ìnm|{rB7ˆQSDj§$€H„)"VÀöÕ2¬ÖQŽŠj;ÊÄ(‡UÛöÎßR.œ:Ëþ~¤,¨H•Öj—T *R1¨HõGQaP‘ˆ¢ŽG…ÛþØçºÝ¹Õ‚uÉWj5ÊQ’uJN«C&ÆD•ëžÁɼwªÝŒJO5˜så¼¾ 댂Ë38¿×wÇÚ«PoÜù|1ŠR”¨pN)„”¨Ròž¹A„˜<ŠE²ÀÒ+c¢HŒýW±.ør™g„&r#N¤,ÈMŒ¶ðœÓø*_™©Ø0ÑÅ»yà eÁjãüpß½ý{7[ŽqŒ¢Õ¶$¼ésy\A&=sù8a_K­Ì}’%¹Î@_Ö„5ç0X×q¤,ØLì: õ'øZÑnL6”-ÈQ’uŠOСÓÁ‰:\÷ZË?÷X0ݵ•“QŽ’œ¨3)3©cõ¬wê{_°N=žk·HéC¾FÜLçñ%"ÈQ’kæ]ÍlúŒ–ûï ‡ÛX~¤,ØL¼b(w'T·û†çw¦Æî‚ûW õ+Æêç~ŸW=P¹¹¥p°Ý’w·„AÊ‚ÜÄh_Ìyl(ÿ¯¬½÷}2áO`ø ~² eÁjãOÄ“¨ª,ÿûŽ]3•þJ=ç[ÃôýZšnqŽ’œ¨ÓXÝLNÔéàÚcèü\ö¦g‡¤7ÎQ’kæÝ+°/ù50¬[ )º8GI®š7=â«wòKН~±>Gglh|Vß Žpù´Ž‚”›]ñUZϤâkÃ:GÔQ|s”äDúqS&ÆD•«Ï`¾6‡Xeù/×¹†î£™Ã‡“MÏ(HYP‘j4 ÚR1¨HÅ "Õëp'@Eª×áþµ…M/4 h¾½¿ØêŠë}{a¬ÙvÝ ä=ü30·¯ìl­ˆ‚”«‰ëus£ûDâÀAuµ—ÎNÆ9JrÍÀëÜÁÛKÓûðZÉŸxaŒrX3 Õtí<4wµq}‘ÏG‹‚”ÿdAÅFïÙ­¨ØèÍXü€Ûª}ƒ€µ¯ìùo÷/Æz¬~ÀÝøNó}ŸÝ,±]ªŸù‹=byÜZRÁRGEÖ?àùHÞŒì-ôÍš(HY°Ø8~¯‡á>Ÿ1pvx³M- R¬6Ž÷‰p´WÌÏ=­pªÏ-•²Âå0Q¤^·6EbL‰1Q¤áTX"1&ŠÄX›&‹3‘vðùµ TNáÎØ•äN¤,ø' *6JÛ™ËF *6b°=ÆýH9Íã;rv8øÞ@­~êHY°Ú8­è —Žsçp;¾4 ô°q‡;ˆQSDÎ9‘SD"Lé ]‚˜"ÒºŒóà ÑóT//¤€Ðwå^H¤,XmT;NŒî¹†‰Á À}’%¹fÞŠÚ©åäVqß)Kn…AÊ‚ÕF­À~‚jyÞ~€1Œr˜hš‘¬?Øû×nÊJžìõ rÜ:/'ê4Òç–LŒ‰*1Öžº6Bá¶+Éï¬ CéL^Áˆr”äªy禤쬱Æ.‹Ô!–) ^ÍÉ5­Ù#,Ü7ù3 ƒ”©z¢HÅ "ƒõiŒ“Ömd91ÓxD+äÓøHlIOÿûÈO 42~Oð“) VïÆloº~`JаªB£&Š4’"–HŒ‰"1&ŠÔW&S$ÆD‘kÓ¤÷Bœ'L&Æo†‹å(É):¡©è„œ¢Óí±2ÎsD9E§;æ˜Ô®^æÇŸ~ütŸ›†ÒÝx(Ä(‡5Ûqà2ŸžÅyYC§xn7ÊQ’kæÝ×>Fƒ¾ií?òðvž ^£^û~0(Qå½ç¿C‚Dyå Uz‡>H‰!UgŦ}‹ÌîJ-Ì£ò¶Ô0HY°š¸wq—û`NãŒHŽ»Â eAEª¾š©T¤bP‘êfà"5Í¢¯>É9š ~…INÒD9Jrżù{5ZD3¤óøÙﹺ ××¥\Ýa²`5qz8V¨ÒaGÂÕ™§nž’…Ã9 6Ó eAEª‘ð¥bP‘ŠÁö4ÖEYÙÌ`cÖ?}iQŽ’\µoîücëCÁô¤®ìG9JrÍ<µ'–ùÇÌMøg´šiçåû‹…+Ñó¢}UÇö¼ #îy…AÊ‚ŠT½–¤bP‘ŠAEªßŸ ƒŠT¿?;/÷‹«ŒÝïE0'xS0Jeé¶ F9¬™¦ýì[­ÁÙëu £&ŠS!%J„Tüí*„‹Eóvõ)…;æý‘Òß^¢/ ÞX‰> R¬6—ëênŸ8Ø5qù¼ì(HY°Ù¸`±–cÈ909† ƒ”«ÔóA5Zú­¦-ÿHß7) þ×À×a×s\¾]ßèWû½WKeÁ:ÈÕQå(ɉ:Åï[;t:8Q§ƒ«áŽvݽóC/‡bjï¡ôm»åû[ Ýš…Q²àŸ,(Û8I£ê±ÑÊ6:@åqHÏÑõ80¨< ¶)÷ˆ•a±qzIÈÆ¾Ó˜ÃÀA¤±öÊ0HY°Ú8£Ö9*X~oý ´‹Ô·oe}‹‚”«à«Ir³ n49„ b”êiëÜš#·#6ûóv¤0HY°™ˆ*rhî-xòÈ<ÊQ’«öm¤ñ3Ä{g†¼¯Æ1ÊaÕ¶ýö ½NåÀÁ¹•.÷7ÊQ’kÞ;™+öõ~kÍð<ˆQk¦=Â,\U¬àqèÌôTðÔŠÊV±¼Pj»¢\-b”Êikÿ-to@¤ŒnXŒ¢UÍ»éïÏNL¨™/@”£$§èt7ÖE9E§Û/^§ï¦p¶PAäs7 Rl6¾x3ðÞƒXïí:¿Š¹¾¼/övZ Œƒ·õñ’W¤,ÈMŒËÖõ›È®Îº>æ©¿{¾‚(çûš§Q²`³ñÛú×ÄU½¿Â^k‚%9n_ØÏ]÷®€,¨Êëtcß–~ó½MAŽ’œ¨Ó8¦cêtp¢N׺gUnÅXñ­§r+F¤,XM<¯w7œB+à}›¡” ‘Sha²àŸ,Xg¯«Í›Å6>âý 浌;·\v ƒ”›ÔãZ¼¥ä—[®Aý]Û–NiŒ£$WŸÅoJ"M¸-“ ÚɰÂáYÃÒaa² 71šJÛîÆ wç×ÀAèÒ²•1 R¬6®à›àr˜·Á«Õ´Ÿ»2¶Ýìvå– g|†PÎ-‡AÊ‚ÕĽßk5jã~UÝVu5/nf“&ÈQ’uNêJcëtp¢N'§úJ€ñÄœ<ž˜kfqÆ@|™) ŒHø2) VVp1<}¾Çm±°o¾ÃÄ0Êa’HËë6D:0I¤kãN.È%“›ƒ]G¼då(Éuöù@޵ݽ*ƒÃåj ƒ”›÷]¡LîÞ'¨' ’Ò¿z‚:FQŠŽõ!¨Žú}ò#ìäîóΗ/—gU8ãƒ0²g) *RÕÚ!’ŠAE*ÿdAÅF¿£ýŽî¾¼¯õÙX@}!SlŒ‚”›Ô£óå.±å™þ‰r”äþ$9Ñ>+/fÙçàDûœüŒ˜Ê|˜“Ÿæê;±îr2ÅÌôß”°æ›‰þ F9¬š¶õí:¸!b`ÜXýWßF£&ŠÄM)¢HŒ‰"1ÖžÀ¸¤"áö©aW() 6oGÞj+ºz$½IÓáA]ž/‚>ˆ2P3jôÛ¬6ºŸcç jaÂòeI£&Š”Þ‡HŒ‰"1&¤äT{†sòXbNÔ)¦U:œ¨ÓÁu:¯=vÿqÏ/ R,Rïzò·ãîÏÔG¤,ø' Ê6’ëï±ÑÊ6:@ÙF¨Ø(-P.1¨ØˆÁ²ÞÓÕ|óÞÅìFƒÂÁƒ“¼Ó RìL<Ü9‘A’W­çlb¥¨fÖÞeða—ÞÀ°wÑÎôûƒå°Î¶%U;¦CëÖ°p~u¹=…ëb|WGX”£$Wí[ûÉân=-ØÛ´'K £Æl‹¶[·,¸S¹…GÒXbå0Eä’‰0E$Âêøïã‘ó’ ˆ’ÌŸ‹r”äªÇÅ…ãÑãü¶ýÀŸO(X7¡] …(GINÔ™”™T‰±ò Îoç0 Ï«p¿( RT¤mX¶T *R1¨Hõ{›aP‘ê÷6ÏïêK °n…s¼[½»­ÝUi=§û Ó{ÿ³:Ó1§ãÄ]Ÿ,3) þÉ‚upæ>ïè¬9ç«ñT¬¥£p8¼aMa²`3q_øŠãòÎÏ«aÂÝ080z½¬ç(ÊQ’«ömÝÆsìú^ ׎å(É5óö,QÊs?/“4Óä"BõmX."„AÊ‚ÕÆóêh§'ÎÓùÉØgÿÑú¿ï·_¿ÝÃpì–(w×Yã°§ñX¢ eAEªáiØR1¨HÅ "Õ»ð'@Eªwáÿ >>Hïõßc?ý·HY°Úx4ÃY7ö­1®ëE)JQ¢B¡MÀ¡R¢BHÉcxæbò(B¬Îeäþ£ Õ8#¥)ÕË eÁjâ:¾:—YƶÇîšÓýed‚%¹jÞ6Žñ„Gãú,žÃÁK€”ÿdAÅF5&@6bP±ƒõ1îûkûs4æ5и£î ~² eÁf㡚0’â?ܱuýŽ:âÀA=6Jž ²`•zî½ßü®·Ý^óÑ'/Âå0Yä£ïÊ/b²Hˆ)#ù.O¸FaÊH"¬Léñ;|t9æc¹ŒfÑ<„óúÁ³/£Ä9JrŠN¡Í¥rŠNȵñˆp¢ºÏšVõñQb)X+‚…1ÊaÕ´~Y“©sµÜ][3rw²³) *R½ýz P‘ŠÁ?YP±Ñ„AÅFT0Þ§„ ŽQÿ°Œàƒ”›‡v¤Ýè“è¸wÄd4JÄ9JrÕ¾ÛgŽe~ÿrSw}.ŒC•læ/1Êa¢Ho{hEb¬>ýÚ_œMǤ ml‚1ŒrX³mÕ.G˜3Mñ(Óü€Ç¾&\òŠÍ‚¦{»AŒrX±mú>扯c¨Ã¤xQŸ'AŒrXµm_%×Ö5­Ë_FøÙ+Ïg¦Uü½ñû\Öƒå0Q¤îz˜"1&ŠÄ˜<’º¿j%æä±Äœ¨ÓHïš:œ¨ÓÁµ)½M‘ l`ÜÝ!x8r°å(É):…®N—NÈ):!WŸCùüuÔÕœ–G4l¤%X-­€°ß‡×Ò eÁjc_Ð4lRóìrLå(ɉ:%§Ø!c¢JŒuÏ`Ï;¦­w’Ü)Á‚ M¯–“Ä(‡UÛöë¥m{˜§IŽ’œ¨S¿Ú×ÖéàD®=†GÒöY²€8ôfµ³0HY°Ú¸u:.l ƒ%)æùF9JrMçþ›¨;W%hܯíá×?Ø;™!ŒrX}ûZÅâáùg^\ò½ì >¾0 RìlÜé“a]ï‰+Éå(É5ó®Ooºc‚ƒ ´ûŠ^‚%¹fàþJBºZ!À>®›Þï’.S7aYÁÂ-´ò” ƒ”ÿdAÅFQTlôG Ë´j7šYµÆåî°‡.„§þyè) V—Eëè1}æÂé_@–}æ(GI®Ú·=²WøÑÇÈßÓ; Rl6Nk&ßX8ÜèÏü®0HYðOTl4ÜÛF *6b°=Fýºts†¯ ‘«Ü…ƒ¼Ì) V©û•_Áé®…­§Q² ,ÕÚ3L©P–ê•Q²£ŠAeT1Xçx_¬ƒkÿÀ¨n]tmQ1Œr˜(rLi„”(RmðWíb4«¬b“}cŸF9ŒÛöÕÚ‚´‚Zeé rÜ:/Wt®óõiFx?û¸^Ù€O¤,ø' Ê6WØØ6:@ÙF¨<é9º•ÇÁÿ*øˆ `οqWy1ê§¯Ë ²¿Ê ¿9X•ä¯b¤,¨Hõwi†AE*ÿdAÅF¿SýNåý—KQ<‘›Ú¸ÎE)JR(µÁ 1%)Ä”8†Raß1ˆGc’Hñ2.,ÒI"X[ÿÎPþ¦·^·ëâ@e:ña² ,Õ TL©P–ê•Q5{T1¨Œ*ëÄYo×ð‹ju¬1w]Ï5P^6+¡˜\‹Q”¢D…B”ãP)Q!¤D…B¤èP)Q!¤ê丿N*/d,©) 6§62Ž*påNõ.y#Î/”ú‰&9Ðb”Úi}Å#е}¯’l·í¹ŠÇ…C—¼¿ŠÇa²`3qWº­¦êB½\?«§:QåÍyå!H”Ǿ¯äÔ)Q ¤ê¬õYñ­y§WÃpÁ„‡%PŸE)JT(, …BJT(}|Ë!c¢FŒÕù1ë_0v‹‚õõ.Ïvå(É):Ý­¨QNÑéNKmóuN<\zúW%Ú™âñtg¢%9Y§tÔ£s²NÌ)ã),G®ñ„œ2ž«f¹¾² ˆÝQ:†AÊ‚ÍÆ‡·gDò·ñ¿j*Fîo ƒ”«ë4Éû³}¦£p¯MÓ>zÄ(‡‰"¥¬C$ÆD‘EŠ1‡J'Êtpu¦l÷aË/J¤°þìmÿþF}Ûås‰¹Šñd!L£$W ÜǓń®N¨ÂõW³¸:¡Â eÁfâ|47–ŒKyÿk£&Š”ŸC$ÆD‘kOàQ7ô;¼åË×ï·Ïv$ƒ%¹f__§ô»‘7Ö…®²X”£$'êÔ;äM™Ub¬{‹¸ÓŒ;~Ÿùþë(í’ñ»Â/Ó÷Zá?Y² ,UüLŠGª”¥:Àú4§÷ÉÒ¯ÛÑ¥ ç½ ‡¾<óNFAÊ‚ŠT}R1¨HÅàŸ,¨Ø(-5.1¨ØˆÁ6ãÖ_/Ø#¶ÝŸrv78Øýžoh¢ eÁ"uç«ü8©ÿÊNã3×) þÉ‚²FÛ–m£”mt€ÊãÐÛ¶ÀãÀ ò80ø_—Ñe#o†+ ü,o† ƒ”ÿdÁ68»–E2³d…Ïp \ši^"%¹jßÜ—‰ ÝûrExî£\õÅXFà eAn£7Nç&vA¬'ĸyN¬wùàî.È ®ÝõÃB©õl¹e"ˆQk¦õ7$Ò?àZã ßag› =hv´)ÊQ’uZÍ–N'êtpõ1l×±äp"}ß»9=¹çôþú”kNÇ0Êai(œÉÎö~çð§÷ãë¬J°Ö£ vóÓÕz) 6§WÓ÷*Æ"ü]Š‚”›ç”Ê}Tðwk?Ÿ,ç> eÁjãÙ;¿ãûy,v‘Bîe.œñ!¹›9 R,&ß%‘侩n•r%¹ƒå0IdNcN"¦Ú௠ÙÕa¨DÄó¿QŽ’\3¯{}¤R¤üö¬K»^ž(GI®š7vþܪF½7#ÓŸb”ÃD‘R•C$ÆD‘kãß7šñÕ4ÃècYÁ:¤¼®7×wmùÞ×(HYðOTlô𠃊þÐöÐŽþX-®7$l¯V‹kŒ¢UÍZã»7ó^øL£"e fÒ©¸_fÇiÁĸO’£$WÍÛë—B±æµ €†5¯…AÊ‚MêÕØ·mAyŽÍ÷rÙ§¿Ü·Sã(ÉÉ:wa£ôèÄœ¬smΜ²Ke¿7%½~Ö Ã(‡UÓöædâN–áIéMŠ—Ã(‡5Ó6î@{ºm &~mKà>IŽ’\3¯óóG~ g|ìIñô£ eAE*f©T¤§'(m+.©T¤b°NœãJ[†[6Žãj{ë¯ dàx­Ÿ¿1Cû†u¤,ø' Ê6Šñ†ÇF(Ûèe b£”€rÙˆAÅF ¶¹º¾&¹/4ºA˜b…FQ²`³q×"j;2¾7üßÈ8Ð@qs°`Ïû'¢%¹?I®KŸ\wtë ¼:„n¬\ƒ”©Ò–ê’ŠAE*‹Ôó{ßù—âå¹Ú„AÊ‚² l£µ›6:@ÙF(Ûè5ܶƒŠü¯›]A’ãΨçÈçq eÁ&uyuú Éi}®áAŒr˜,RýFž-b²Hˆ)#©¥ÉÀH"LI„Õ=^Ÿ_r7¯6°{¤pF™^7¦Wg”!ÈQ’k:¯ ^ë?±š¤,XŸÄ|ÝbÔ2ïYÏfß~ïvÍw 9Jr²NiÛõèÄœ¬sŠNa9t鄜¢ru¾G†ÙŸ / ñ!x9A) 6»î\Ç}ÓC×ið‹?‚å°jÜyݦ å 6 îˆ%Å0ÊaͶë&·o>p°¼ðEAŽ’Üeàö¿ïwâm4ŽÖèÆáNõ‡ ²`3ñ:3jÄùźj¨sUjØ;(³¥8GINÔ9ædbLT‰±î(ýF€›ô'þ‹I­ ¿X_Ç4¦Ø—½ 7ˆ>•ÇÎ'@Ê‚ÍÆ×ןCs{­'·ðÂFþ6§ä¢¥(Q¡Ð›áP)Q!¤ªÂùNIIe¿ =:õâ%9Y§tŽÖ£s²NÌ)ã)D®ñ„œ2žû¯q{-ø€ãÀ0=1!å¿â%¹jÞrŒò"mn¯Ëù;˜ÁS@?à}îÓ}Bxàà¤f¼Ÿà' RìlÜår“=cnLß÷”ä(É5óšÏ9ù2<™·›£÷8!Ê@’¼1¡1’8ÄÔáÞÔ÷Ór†úUa–ZT%ž€}rå0Q¤à94BJ”©:øû rËÏêU㮬d¬³õ—ëbxg¥³aàëçÏ>ŒQk¶=L¸Y´‚G»Oà7·CòØ8 RT¤êù ƒŠT þÉ‚ŠTETl ¤*îÆ½Ø±‡Æé9â'÷Ir”äš}WËW0úž3ðù”gsº¦<ú GI®Ù·²“Ó²¿‘ñZ|#e Î¨Å=ŽNÛÆÁ›]ž¶ ²`1qü.s&fû&é5šS¦'û¤&š8GINÔ)¥û21&ªÄX{³[Ô°~ÆG¾Îmmð¬ÑQŽ’\µor\Ø3¿8X=ZØ3a”Úq·L‰UNZ î“ä(ÉUûæ.qà½' aú÷gåÄA”£$§è„©4E'äîÔã܉˜(§èt'bÆùÓ ví¨`]<Šr”äªy÷×jc…„B©I…'öÉa”ÃD‘99‰ªƒ¿>Ú|}É?Øöê"qAkœîyK'Ðâ%¹fßåj}c²W\A”÷æ^q¤,X¥îÓ¬î²Ý£?ÙfÃ(‡É"õ”—)b²Hˆ)#©¾DöH"LI„Õ)ýNVº‚Þq__·¾¨k?FqÛ²2ô’ªpzŽ>FQŠêÌR*`;¾9¡£ìÇQ² "Õ{U@T¤ú³¿ã~(Ý')+xÜçà¶°-¬€pOYØ) 6×D&~<µ×ö«knH-žËÅšE)ª)¼Ò½bÖ¶Úó—ö1Œr˜,’¥-¼"!&‹„X› +êjRv„³» ÀÛ«¾ýo²!©aùú^Í?ÁK”“û3Eå(É5û$‰¿§pú…|r’$ÊQ’kö=VvïÁó\ÔZ:#Ÿ) V©ãåÊ ÷O=7Li£$'ë”N xtbNÖ‰¹:gÆE«È›–iìRîNÁB©-rxÄ(‡5Ó:/ÜÝ(S(ñø“î‡1ÊaŠHÍ¿"¦ˆDX7þ{&ÁÿýªÓ.ç½€Æ7;eç= R¬6NkwRçÏÆ©˜Wv°F9¬7ÛCÙK½)ýØ¡ìH1Êa²HaG÷ˆ„˜,bmü¯½ Z(œÐý`V¢%¹jßmžVk¾7¥çèåšo£ÖL»8ïÿsêÙråÑ9JrMçš,²×&ô<±×'DQŠ’¾ó …ˆ’"ª)Üór€Ýw Dýö¯ % R,6Îßm7³!r†µ`úš+§X£%9E§°ºtBNÑ ¹úÆy›Ÿ¼Èÿ€g¦pP¹SÛŒäÂA”£$×ì»s|Á"Õ<ÞçQñnzî*…ûÖõÌÄ>9Œr˜(RÏÞ˜"1&ŠÄ˜(Ò¸ó×TéàD™®Î”©‹G…PŽGoêõàÌp4QjF=r¬0Q׸õÌä<çy|U\÷©ÌK5»û †:hXÔÄ(‡UÛÖ»0K ìþµ `ŸF9Lù® ºD"L‰°ö¶)}††dæ¶…0ÊaŠHuHl‘SD"¬>€í¾òÅ—nÎKò—;DQŠj Wæya£Ã(‡)"Õéo‹D˜"auŠÜáqø$Ào è½\n=Ø®±\ǃmƒ7%zoê“¢(E5»ÖÉ1ÿÙÑéB ^Éúd Ê@¢<5oÉC(A¢<õ㫦>H‰!Õî›gº¯|â†0Êa²H½KÖ 1Y$ÄÚûÕ5EûdKßì}½Ì® Y”£$'êLÊLªÄX}Ó£4ç=˜³L} ¥ÿ¿5ãæp,Ä%ÈQ’ëìërG¸™s`œp´ÃÌE9JrŠN!v鄜¢rí9ý‰!q--üJ„Êi¹'öÉa”Úq×5ÞÃÇã„«AìnÉ0HY°š8?â|o+OÁ4ÏKŽ c¥¨Î°9v/ó#ìö¶å hœùxD(JQa®ñàØÒ…ð0ÏÀ¨³Å7žÐ!DQŠªv­£/Çή:)Ük!±¯: b”ÃD‘FÖÛ‰1Q$ÆD‘VÎÛRéàD™®Í”;ÉK .ë¡´©Z§ %^*õÆ>9ŒrX3­?Dåïž[¶prA`ÙÁÇ›d §ŽFn’‰r”äª}ûýÝFaªtK3o˜/˜~Ù“û$9JrͼõÕêºK¢‚zšì ~² eÁfãÝÝæK  Cùó…?ÁF9L©z¶H„)"VÀýzg­q`ØïóΥ˵ÐE)JT(¬ …BJT(,Î…BªMŽ.…{¨†uÙv_‚(ÈQ’«:ÏÙucc/h £¦ˆTWH[$‘«å¼Z¼m®Í¸ë'Jï,à‰a”Ãd‘z,gŠ„˜,bí Ü_†ÿ¾òP çRÀ÷¹s‰‚”‹ë}²?œ¬ù‰`V¸z: ¯iâ=a²`“ºžÕåx.AŒr˜"R]]l‘SD"¬‰T¿Mü xçó`‡AÊ‚²Ô‡…©P–ê•QÕs2`T1¨Œ*›Ôó™;#™…ÅN1ŠR”¤Pr˰BLI 1%Žá™DŒ‰£ˆ1I¤¸+`‘LéÀêÞ5=òñjðÉòñë´¹°™cê‰+ýV1éðªž~ b”Ã:ÛÖDÖnž•tXIö¬*øvŠmÏ* Rä6†/ Yû!m\òUKk7ɤ…Y¾*FQŠj†Í‹œ[´O¨ÎðQŸà' RìL<]¥œýe"Û´Lì“Ã(‡‰"âŠ%c¢HŒ‰"­ÒŠ¥ÒÁ‰2\)Ë´©»B·›ðL{åÔ; äL{”£$×ì»\k¡ërµ±FûërgK‚7•TN­Éu™(GI®Ù·+5bó"©‚½Þtó©E)JT(äy !%*„”¨Pú ¦C"ÆD«"Ë ï.#[÷¢ eAYªïÚR ,Õ*£ªo•`T1¨Œ*뱪çÿÍ(£`R–Ùˆ2bå°Î¶¾¢©¦ÆX±°` 9‰Õ c¥¨Î°³‹(½Æu[×nou^·ë~bè«Lì5¸9øP~5 R¬&î·Jè{Pܪ©ÕÅ­ r”äš}Ý#4¼bþo¬+çù`£$WÍ;^_Òu• ×?vW}4 Rü“õk4€TlÄ`}ŒçWɘØû}úBW“ú¤(JQ¢BÁƒt(„”¨R¢B!Np(„”¨R|r8ïµâ†iSêIqÃ|7ÌG‰ …æP)Q!¤D…Rpáˆ1Q#ÆÚüè*ËÛç /øzU–£ eAEªÞ¤bP‘ŠÁ?YP±QßËTlÄ`›qÝåM‚tS'7ð¢ºyjaŸF9L)½ƒ‘Eb¬Œÿö½r…Ú^,÷úJmU–›ý‚å°Î´— å*zTPïè‘‹a²`g£«á˜uá •SY^£¦ˆT#t[$‘k`Ùù“s­Ñì²Ñ®5: Rl6î«+‡Ç[O (œ™±»d eÁjã8Jñ¼£Ñb`ì•S«&òöå(ÉUû&×úÎn ½ñ¬3.FQŠ’ª¯»©Q²BDÕ‘ŸçW¶Â·Pï›Pö¯(HY°Ù¸ÿ¾vÁk3 †.ŠYŸ¡v£Vm[¶-Uú( \Äxé# RlR¯/¿âJÔÄ¥AÊ‚²Tëq˜R ,Õ*£ª»ƒ`T1¨Œ*Û$7j_Öö·å(kû r”ä:ûNÏîÂê_Ûz]YÊfË̶—F9L©íí@$‘û¯ajQþ/%_þT(ñc}oì“Ã(‡UӶδÙkÙ ½Ë;¦a!ŠRT3«ßÓá-SÇ@×ßÓcå°*rßœ»»® R”¥Z»)ÕÊR 2ªÆîc*•QÅ`ÜÇõYãØ]›…ú¾‹oè“(‰òÔ…È’‡ Q‚Dyú`郔(RmV<Òpj— ÏpÝè\á ®E)ª3ìÈdÅŽ+Õä>÷×À“ï8®ª÷vvil˜!%íoöÉa”ÚiWÇ‘÷ê¸Æm#H÷݇ ¾Ávbÿ~»¼ƒ´4ʧ ÷*%ØÇ ‚å0Q䜉1Q$ÆD‘ÒŽï‰1Q$ÆÚ4}ml³/î/c›}¤,ØLt­ê,³xS`¡e‰ÅD¨3jJd#÷q”wnð´oì½è‡ä(ÉuæârbvüJ­L>±O£ÖL;&OŽuç¶]ÊzîܶF9¬Ú6=6G¡úòÜνú™÷ªF9Jr;½O?ùëYû|}É}£îÐÀÃo®ì‚”e©V¼iJu€²T¨ŒªoÚ£ŠAeT1Øfξ§²ÖÄE„‰Û) V/%Lô¸ïK¿–ÂëlŽl_Kcå°jÛj|GªÃ¾Ì¶‚½Â‰ú¤(JQͰûÎÛOš˜wSÊO=¡O¢ $Ê{gRò$ÊC(OÈ£8ôAJ©6+6Ϭ˜¹]›ãYÍܬDH”§>+K‚DyåéOÊÒ)Q ¤:…g[ÅN†+M³lϤP¤,(K¯«ðHu€²T¨H•œ—T *R1Ø–…½‹(ü§Ä÷r²þït»sd/E6_]t`(Lóâm£¦ˆÔr @$‘ëÀÉC%×ß6§£Ìs"7ˆÝVž‰‚”›Nnä\¤ºÚ¨ëÞžnÉvÝ|U8£Üð?Y²`5qTÔ}Tö½oÁ Üþ¶ï×-QxwaEŽ0HYP–jí.¦T(Ku€ŠTcw±¥bP‘ŠÁÿðã°Îýï{÷*Îþ7ñÆôúò"9Jryr™Ü>Ë]°I/Oî“ä(ɉ:¥â˜C&ÆD•«Ïàøògçäű·¯§*NúìlX¢ eÁfâ©….Ý;Ë/¢¹)± MÀêˤ®ÝžÄïCøáä<†ƒ?… GI®3¯«®δÐû(É5¡‚žêRð‚ÞyŠOÏžb¤¶0È oW\ƒu«Qê=±OÅ®atj¤Ö~mSf—YÊ bm OíF89È8øŽjeð“) VÇ«Tl¦=Æþ´…ãö¦:4ÓÈòl²q°‰a”ÃD‘†;f‰Ä˜(còHžÉ¡Äœ<–˜uZa¦¥ÓÁ‰:\ÒÓµ1‡«Äa;«6†AÊ‚ÍÆW¶ÍÕ(xL€Xw­x@\ÁnÖ˜à' Rl6«²ÚK¡ÛÀ1)ƒùÆ>9ŒrXy}äg Îg) ÊR­,)ÕÊR "ÕÈØR1¨HÅ`Üó×åÖÈ‚éY˽‘QŽ’\3ïu?þÓÁ»ƒŽƒ­N7¦ÇOî“ä(É5óµ¸Ö¯Úçµj ÓîÉ}’%¹jÞÂ?ázx X”gÃ(‡5Óîh_½àíœSëbOî“ä(É5ûå4­i—Wª fwðBUŒ¢ÕÖŸÑöV·ŽåX<¥Ö t,]þ7ð’ÂY9) *Rq’[‘ŠAE*ÿdAÅÆoÖF *6b°J]'ŸG¿~Ùú) ÊRÀÌ–êe©PU=-FƒÊ¨b°.9ë•ø‘64#ï³^ ÷€ÛÜÝêḳ¤évÝuv˜ud{E £¦ˆÔºJ€H„)"ÖAw^ oùø½kbÖøE)JT8f"HÔ‡ 6êL©¾ì½2¥ü¾¦¢ ~² eÁfã©5ÕÙŽÿ>M¾Šk”9îâ›ïúQÊ ð„>ˆ2(oÎÈC(A¢<½ÃÓÒ)Q ¤Ú¬èîT—\¡kòëÆ ¦;ßOî“ä(ɉ:Ñš:œ¨ÓÁÕÇp,JÇ<^0ýƒHòùð(GIŽ›§f4lwzNl­;¿ý ¡ÀeQg© þ>@Ç¥ö»¤…k¦…AÊ‚ÕÆñêjQóšrÇNÁÐúxËN”£$×ÌëŽëOž.ØÛ‘²G9Jr¢NãéY21&ªÄX{—“;Z^Üu&Ôwzj`”âc: ÷~þ„>ˆ2(ïí¬9ä!H”‡ îAJŽÖM+øNšÊà' Rl6vÿ¥êë³}ž B”£$§è|—NÈ):!§èü&uBNÑ ¹6]î€N-[höÝÜ{~Ú¿7uåI\ö¦/Íry2ÊÑ?ÿÞ${)æZÚ@Nfà$_ùU(Ôv>“(AŒþõ×P‰Jy‚\ʹÊ÷V§Œä ¬*7-DQŠjfuww ‚œJÝ?äØ,ˆQEJer‡HŒ‰"1ÖÆÿÑèüUCþ ƒÂ;Fx‡t¤,Øl|Oµ/žžóæŒtyqßLîÜY'æbÆ0Êa²Hõ2 [$Äd‘kà|µ»ŽøœË½EKf„y^2 ƒ”›‹óÞvÖvy®]–"p°¨pð›¯LÌ×8ÁGQžØ'‡Qk¦s¸Šÿ|n«cDf>"›þÒ½±O£ÖLÛÕž¹ híEÂ0Oèý²¹)á¦fí‰zŠ÷«å\÷ÿ}¿÷}=v_×ãÃR\Ä'ôÉ@”Dyj·•%A¢<‰òô·ËÒ)Q`à·î”©oæR ÎxñÇœïÉ_Êü&•´Ô7HËûK+}”¢ÕÌêlÕ¬™›µ™ éÒr¥(E5³­ÍÕºê¼Ë¢±rqãæYÈ;Ü'ÉQ’«öM]ÈælÜn”ø1C-h c”ÑKN$‘kãßIco›{ánÊÞÌö¾E Ê@¢9ŒrXg\—ØpÜo;pP ÒU¼ ²`³ñЮêמ/wa–î¶)á©?˜QßW†ÉHÜ„1Êa¢H©Âï‰1Q$Æøøkúù¶rÓTßø‰qÓœ7͉‰"ŸÚ¡R¢DHµÁWz´¬¾ç†Ávð…›ã(ÉuæYÞ® ùìöm–Rí§©Î¯ªñyûR¾_nëö¥HY°ÙxUD‚§õÀuÚüCJ)ªŠ\ÙwãˆTël˜í‚>KQŠRTgØ•[ŠÔGÿb«ÖrmÜŒñ—»n‚p~bkà˜â+?©OŠ¢ÕÖEÁŽ»‘BÏäÑ —) 6¯7Õ}{U·ûB¬·è/¸ŽñÒÒ·ó·ò57zl-Š‚”«‰Ggâì·ðÆ`ý™ä(É5ó:Â}xªq¸U‹{Q² "ÕhÕ²¥bP‘ŠÁNj×ÇhÝR2¿¤Æ@Ê‚²T«åÒ”êe©PUiÏp*•QÅ`{çQ-]u)¸G[ýþ¿ñûÈHOQÎTðµ Û ‚(GI®x²¶G«RÃ:'ÔåòF9JrÜ<÷ÍŠÜ@ìcœüAn¢ìlìËðt]åÆqÍ”ÆÑû2ghÔ3!]ºóq?E…Pþq?E”¢UÍšF†KÇÜ'ø†Ö¹³HY›¨7½hܵêj9eÑæ¶&¡w`öSOê“¢(E5³”Z²ÕÕ0˜åy´EÅ9JrͼMî§2úP¥¶ÊöŸU¿V}™E«Dû$ V£%¹f`[+ÕÚ_*탃ÊJ(u&˜öÚož÷–4Έ0Ÿà' R¬&ö‡Kß™épiƒ¤4ú›ú¤(JQ¢BµwÛˆ Q‚Ú¨«G­ þ‚WvƹøPk2QÊñéoµÑ÷u˜¯ ·.ÆQ’uZQ¤¥ÓÁ‰:œ<ž†ûjŽ'æäñÄ\›/‡ZÔ•ùA7ewVæE Ê@¢<Õ·³ä!H”‡ QÞ{ytÈC(AuJ,bÇ{NÈÅŽqé‚|÷¤Æõ™A_˜) þÉ‚Šþê]TlÄ`}Œk—1wª§q¸@Éræa² "—©T¤bðOTl4^GÛF *6b°Í¸õåKžþÄÖ›uÓŽb[­Âãzå0穨àþ­¬)3ˆQ“E '›="!&‹„˜2’ZâŒ$”‘DX›%×àÐ… øç…aŒrXµmën¾’\h%%xcÝ ïË9Jr¢Nñë±NÔéàÚcðá¾,F( >2Oð“) 6»l)lq¥Æ°r^£ÖLÓŽú€”éÍáŠ6Ï™FAÊ‚ŠT£¢mKÅ "ƒíi¬Žþ¬…oê7õ•ƒØ'ôÉ@”DyZ¢Õ”‡ Q‚DyjÍìyãÖ_ªKÅ{Ï„6LIŽþõ÷ö«læ{z”¢ê`îW‹Z¸‰£€¸·gO£ eÁf㢞3ý¶ZÊóÁ†éÇ–¥ãýóï­cäý£$§ü|o•ßó¿ïû£Cz”fŒ½Ï˜à&ŽO’£$W <úˆÞÎ7pì FDÃ(‡5Û]î_‚íë&•[¤,XmξpZÙXî¸beÞÞ ioé“ú¤(JQÕ¬mÝëߣnJ¼¡ç}rå°fÚÕa Òƒ-w7…¼Äƒ-x1ŒrX5m¿ H¸׺ ˆ¾ïüªuEAÊ‚ÍÆîñ©›z7öþðB¥¨Î,¥„mßR¸×úc_Ä(‡‰"¥ ¬C$ÆD‘EJA’C$ÆD‘kÓäúÐTðZlömo|_¼ÖÅ+Òý…dRÞL>ÎS°®Nã:Íå(ɉ:G*ä¸r(ÝÒàäæUÛ²ºMœ_Î[0½wîÉ}’%¹f^¦eë‡Ï€rXÕxv‘Ÿû°¡ÄÆ#ö‹a”Ñêú¶H„)"ÖÿîËý²>×鼞·û³›aå’»DAŽ’\3ðì:Æ Ï‡f7‡ör™Å0Êa¢Hc/·DbL‰1Q¤±—["1&ŠÄX7MPþ^.ÍßGPaÇa/P3¤â ±rP) VÇÙlV½ƒäïsßšÇËž>óÅæé«e ~)¹Ï²Pê©/¹Ñ2ˆQk¦­›bZ7Ó36+–j››b¥¨fÖ¦õîvÐÌÍÚÌ ŠÜ=£(E5³vçÎÈÊ©„;+üF9Jr]¥Å}à»`‚«aUZ‚å°fÛùŒ¯Œ•gx2š û„>ˆ2$O}Ë uˆ‘Ä!¦îÓ@³c,ó¬}a€íHü»9yó—, RìL<æï38-”š½UöÜyíòdðó_ÇÞéF+3Ä(‡u¶ÙC¢a›ÞÀÐMM^óøá®å1Zl/ ŽÅ>7ƒ eÁf£z즛c;Ÿš‡¹>©OŠ¢û­ësËÎw‡RÔšÛ4 \>/ûåTûz†iGã•Ý7DQŠê ;|³‘¯”KW,D¥¸A 6Yù ‰P”¢šY÷æˆ2ç3n.Ê œÏ¸9ˆQE9K$ÆD‘E9K$ÆD‘«Ód_½®Üë¼^\´ù pú¥ìróA”£$Wíëoy/BŠÿ´u5aq}RŸE)JT(Ú !%*„xÉ®ãu•ú¼Ô¦'ÇMórÜ8/§èÞ—NÈ):!§èX—NÈ):!צK—ÞrŸÝ+”Z•Q\1Œr˜"òV¹D"L‰°nüwÓ6%ö+Ø;+lÆ~1ŒrX³­Ë1ºO( =mžeŒa”ÑêÓ¶E"L‰°:þ{ß8¨?ÿ¤ãÜ_¢£¥áøCe Qž–6å!H”‡ QžÚ‰gꃔ(RuV÷—>ßK=¯,Erhßß”¹O’£$W <Á½ò›®*ˆF†ßt) 6ûnKãçóä¹×-=…ë-®[z eÁbâòœ£,?]AØ¿ÉòÓa²`³ñú¤…ó€W³p›”üç®,ªƒ”e©Æe`¶T(Ku€ŠT=Y¤bP‘ŠÁ6oµ4w“g—¯ò)»ý´`z¡Hî?r”äšy'ÊâÈ}$ËØõ=À–‚QRFRÀ>9ŒrX3M»eR¾~i`œ°2Éà' RìLtãåW® ,½üþÍeÔ `¥ç)QáXFíDò%¾ã°ÎíQ²`gâýó÷Ó» ­ð¤>)ŠRT3Ko|éƒíã™(˜þ%ñ'×~Žöru‹ ú‘¬«}¹ï¬ðr”äêïMïÏ{] «ƒ9Í¿U„à5dCØž¹Â Fÿúkë™`”äÚXîzç}çâü¨W>v«åÎÀa¾©Oê“¢(E5³N×)%V.*ôˆX¹(ÊQ’«æÍ˜ÍhÈå1[a{,Ù¢ eÁfã]˜uÅýÄ·×á‚®MËçœ.WŒho?üù²ÜŽCðÀKå´mëÖwS0}uxrŸ$GI®™÷¨×ÂCí{$jŒdŸØ„©!>±£ eÁfãu,X"^–«Õüµ¤Y •mÁ¬¥2FQŠªf•–€¶»ú<ª›ë—@Ÿ‹) þɂЏ]B±ƒŠlR¯¸ ¸rÛ—ù1Œr˜,R½÷Ê 1Y$ÄÚ Ñ;ÅðÚÛcgÛ÷;\8!IjÏQ² "UÚe]R1¨HÅ "õ›•ŠAE*»‰spЗí¹AüI8ž˜Š‚”›j= xK7èõA(É5¡;HµkÜቂy4{vy¾w,ô„>ˆ2PgTë ÂIÃÞ±/è  r”ä:óæöâI/ì5'ù—z ÷˦7·˜˜ØÓôäºÑÜ*)‡‰¿† câ¯9ÆDü9×fÊ•ì|sýz{¥¿Ï§^@47 ÷Ir”äšýÝÛ÷×}oW®½VN]ØåÚk”£$§Øg4슰T¿+zÁ—‰^°ÙˆÚ·´±1Î/ ›ìÀ9éH—±9¯cׇ‚û;†Á}…õ¡D9ú×ß»›•¼ÃBI®çìœ.{ìó¬äèòNöÐo ]ÆrcŸF9¬™¶/žå“°p`·åŸ b”ÃD‘ú&mŠÄ˜(c¢Hck7U:8Q¦ƒk3åJïh/Áå‰ó»G …ª×g¨Ä(‡qÓ´š—B-êFi;‹ºkÙŽ@£$×ì{œÓÂûéZSîV¸ðËVüÛua²`µñÇ…ààsl.Žnè‡û­JõŸ`b?x­·ÛÄV÷(HYðO”mœ¤„®ÇF(Ûè•Ç!=×ãÀ ò80ØfÜ2zÊ7¬õe]mðÆ=Â#>â«TaÈ—©(HY°³ñr?ƒ­뮜'³+ăÞ.«G9Jrͼ¥ÕUPÏÏÀ Ð…É:’b¥¨jÖá,&OlB¯Æn“û$9Jr}Úa;¿ïïk ãÉOѬÇÚe€Ý׬ǣEûû~éž}Èãô÷É}’%¹fßÕ¬â,³7¬;àõ~Š“|ôyY­íàå#‡(JQ¢Býv,K!¤D…ªÞ· ›«ë}*XXóSŒ¢UÌÚ¾cw-G ŽX@aS´ëˆa²`gã©L‡ñƒÝÓ“xOî“ä(Éqó¤èÒÄ®„Žó3'ÇÀÍÁ,ëÄ(‡u¶ÙqºŠmŽ•áû\» ¥î‹Oì“Ã(‡5Ó®]¬Ósý*”:ŽOì“Ã(‡u¦©ó_wK¶ïæ™Èæ’8ó a”Úi‡vOºµÃmcçÏ» u.1>ˆQSDªK¶H„)"Ö‰ô.Üæg) ÊR‹Ùm©P–ê•QÕã90ªTFƒÝ xZÛÏ5møu…a¿¤.ˆQk¦u·{¼wñç=0È^øí1ŠR”¨P Lõ!¨ú¡:¾Ý>À:¹ …¶ÖnÄ(‡qÓ@I…SS÷†i{þë»!Û¿x½_!ŠRT3ëºNÅûa¾q¯·RÆ>9Œr˜(Ò({Z"1&ŠÄ˜(Ò*zZ*œ(ÓÁÕ™2?‚¾÷S‚¾‚úbå°fÛh±âÊm»±w"UÂ>9ŒrX³mC×”\iF~Eà6wi+÷™½B!7›%®‚å0E¤êfÛ"¦ˆDXÿµ«=‡ÿk¤žnê+$Qì“Ã(‡‰"¥o>;DbL‰±6þ»okd¶mV캖 F9LilV–HŒ‰"1&Š´¶*K¥ƒe:¸6SŽ.jï—GÉ*JñËŸÐ'Qåi€)A¢<‰òÞ›“C‚DyªSbÓüûn°mÛyÑé÷xþY±B)óϽ‡Ý ‰†'õiÔéÖGHü%d”øK Ž„øSj³¢»ËP›‚¯`|ëO¨åT‹‡(JQ¢B½hb)„”¨Ruà÷«¼Ž©`à迎)ˆQël[Õô‰åíkwî ~àfà˜c)¡F9¬³ÍN)iØæž,ɳ€1ŒrX³M?bPGWuU­Pb+áûä0ÊaŠH57j‹D˜"aŠHuϰE"L‰°6IúÔ„ãëß©üdAÊ‚ÍÆHŽºx"ÿñú¹máAÊ‚²Tãk¶T(Ku€ŠT}¾©T¤b°N›sÔÖ&бt>º±Ÿ¯b7ãø%p…Ó›ŸÜ'ÉQ’kö½î” /œq[‚|‚> Rä&¾+96·ãÔp“Ûþí\xçÀ1» •;¹AŒrX³í¾“8Zü/ ¼a’ÿà eÁfãÃ!W“àÌ!¯˜V+‘ò F9¬Ù¶¹l›¹m›ë×fn[£Öl»BÒn)sÝQS8|ïà 6óÞΈ뎚0XM¼>vãþ¬ÙÀ8ÝÛzrŸ$GI®Ùç+¬Ü Þ£C±Þë5 r”äšyWÍÈùñ¡c _–—šbå°bÛñU+Tv¤÷Ú7½h¿7.¾—uz>„ã;½ú½\+Ùñ½ÚÔƒmFÇ}µ÷%§$WeŽÊiM;ä+˜¾GË_”£$'ê´ –N'êtpí1ô¥×Àå·ÇýÁ†÷âbÅlLj>çøÌE œSg™œÃˆr”äš}¯s=®ÌxáúöUWj< RT¤âì¿"ƒŠT þÉ‚Šß¬TlÄ`qý=+Ú.ÈïY):á÷¬Ä(JQ¢B­)Àˆ Q‚Ú¨¯¿•³pïé1½¾¬)…¦ëÓ%.J3¯lOa”Úi·Qm=]ø“>»Óxz3èŸu£Vm›Ç $åÙ+>0PhÛ—ÁO¤,Øltöï|ÙÞ|s¯HÆ>9Œr˜(RÙL‘EbLi$hL•N”éàêLY´³]ý¡l~±Î±ŽÎŽI³ýÎÊ—ëb¦ï7] Y(ç±û+ƒå°jÚöEÁát ûHʱu9{”¤¹úOê“¢(EU³öGZLmØ’ÈÿPÝ™À¥“Ǿ+eÎdz>Ø„Ü}Š6!cå°fÚqzV~™[áp¢wbK^¤,XM<þÊ=#ÂkñâøÁNÇVð˜C»tŒK£$WÍ;GåÁ›ZLt1î“ä(É5Ó¤l=¬C޵¹†AÊ‚²T«ïДêe©P‘*­ .©T¤b°Íïíl¯½ãKF¡7Í3VAŽ’\1ð¼Ï‰:¯ý8|Àûä0ÊaÍ6-‰g÷þp¾ÝŒ‚ ‡÷V ƒ”›‰J)¸O~™Õ ©yù2¦ª¥<ÜŸ©)réXÊ#ˆQSDªí¶H„)"¦ˆ|?6—H„)"ÖMÕè¨ýeš¾­¿1þcî“õ÷Ƶ»¥GÇögV8ˆQE9oK$ÆD‘“GÒ(”˜C‰9y,1'ê´ŽY:œ¨ÓÁÕ)=*WòëÆ ÛÏ7¬ GI®™'7\˜»Õ¨t?HP3ìîôíq”ú_seÚY×Jkƒx®.g68ï»ï:ªà´tí5îϳT ôv°\£ÖÙ¦u’¬Ïé_°RA‰ð V eÁfãÝŠ,ýœBGÍ2ÕvIÓǞثêgŸbŠQ”¢$…ÒŠŽbJRˆ)I¡4‘±BLI 1ÕMŽIžÖ9›B)%a¤¦Ö-H[Ç ÔÐΑ+[Tˆª8«‘7ë_ãÂ|%×]cHHü%4ðâ/!Hü%ô´Ä_BPö徕N¹g¢@v}7MÄ(JQͬ½[¬á—Žúà–…0ÊamG¢rröG© G¢KwÃõ#ØO’£$'ês21&ªÄX÷ xTâãÖ‡{«v¼p÷¶`ÀÑáîm £Ölë?¢îœ{75³¨ÂÞÊüdAÊ‚‰›§ÜÄKú}ç£ûW…B<ÞŠa”Ñj'†-aŠH„)"ÕÇf‹D˜"au’œ×AËèg-Îþ¾Rò#øC!Þ+Vr”äDzgÊʨcí\™è}=¸ãßïõáàí3ÁÃõm§GTÃPŸÿ£*ŒQ«¶ßѵìý>Ò8¼ªïý>’) 6¯› œßÝ8öz×%ê“¢(Eu†žµïm˜~¤à}rå°f›óX·Íü7\ z^|V!PCyÞ{¥(E5³î¼¸ä¦ÿrÒ}¹·§á(2ü€wÝ6vÁ/çûXÜóâ„9¦•­(Q²`µq~dîô¥è™¹ë@ÕwqŽ’\5p9µ¾2ë\Î/Ø­µÎsÎ?Ø:k1‚‘/úË)…{«¤aïEÂj!‰s”ä:ó6\õØØò~CÚ ø¤ÚOißk{Pÿ-õÛiöÉa”øiZŠBmßV wÜl30»)|rEAÊ‚ÍÄë^_ï—3Æ èù0F9L©§’M‘EbLi„·T:8Qfè÷î‹]k ¥¨6+»Ì–ûË 3>Å)e¶ eAEª¾!©T¤bP‘j,.¶T *R1X'Îý¡ôXq¬qbä,pŸ$GI®Ù§6û[§~A»o_êÁüÅ\ù×½¿;oÕptl5¬[,-[qŽ’\3OéƒÐ{yVB>’Ç4ó žãö„™®ƒ f¤,ØltîH_¶sÞ|ž—Ö$@Ê‚ÍÄîK"ðšóQvõö•’Q”¢:»¦L&ãQŸ‘åÀ0˜ÒžøóŽq”äDFRÛ’‰1Q%ÆÚ3ˆWv*…2ÌÂN”¢ý­É¿ÎRŠêÆpv•!Þc/÷ªZÝ~ ÓsOî“ä(ÉUóή àþôNã°3Í Q² "Õp¦m©T¤bP‘j8Ó¶T *R1Ø&Ž/„æŽÀ¡×ðå9JrͼG]õÀ±àgý:PÝg•lz£$×xxVú׸܉fß=ìǤªÆûä0ÊaŶñÛÝ–§…]<[ ÷ºkebc¥(Q¡z׆©R¢BHÕg× “ç3PÇÞÁ×Ú̸ƒ_(»RÂüE)ªÙÕ]î`xêËsE.ôœ—çŠå(ɉ: ßÙ’‰1Q%ÆÚ3û¤ÄÍðdÞãá…Þi 9CôÃL®Âkä/L¬õ5ò!Œr˜(ÒðG,‘EbLi¥O,•N”éນ⠖ޜÒiæ%_\9ÈÂõ+¹+ ) þɂЏ!D±ƒŠþ”qšœ÷¬ðóg'ÏZ;²—éÆPÈûlŒsôï¿7ûxJQâo¡}Aü)÷frwã«ûãÔ¥Sܧ''xmvB% RT¤J‰ —T *R1XŸÆ¼jw5ZG£~À¥k·pð¨q8‰ÃÚ- eAEª‘ı¥bP‘ŠAEªô]R1¨HÅ`›8¿khð³9å&»u¬`º##·ŽE9Jry›hžÕ:V ÍÛzRÕ´UûÞŸÕ£ªY+¼F]n( ûCGáñ^þR¤,XmÜ ðsãîoª~¸–p\90߃º³!‚”›‰×‘Qû5bu²©ÍjW1ŠRT3«sÝçƒ]˜—Ë) *RuHÅ "ƒõiì}œã¸%~àà;_)ƒŸ,HY°Ù8+èÖœB)Äúd Ê@¢ÇS½CƒíSË œð±(MlQ:¿®J/¯°Ý' C7’ÿ›î¯‰‡ÛA ˆŸ:k ƒ”«÷q_ïѵqêŠöÄ>9Œr˜(R|¦HŒ‰"1&ŠÔ_=S$ÆD‘kÓä”SÍv—fÁ`ê}zn³QŽ’\5ï¾íÝyIüÀ1°=®ú c”Úm«2&=õ¼§Q ëøy;O£ÖLÛç¶@ëÎßóë]¾íóã]aŒr˜(Ò(U["1&ŠÄ˜(Ò*T[*œ(ÓÁÕ™2__§ ÞœæG?¡tñKI †®cXŸQa£Vm[ c7`~t‘ÓÀÜè(GI®ØÅAîÏ5ßæÀ"¡0HYP‘Šƒ=E*©ü“¿Y1¨ØˆÁ6ãîHÃw»üÀ1°µ?.h c”ÚmJ»ÝÿW0蓱ީ(GI®3Ïú:…ÜÎW ͹’{0¦åôEͬ‰{º¿±.4‡‡¬ž) 6”‹¸·ø/›/ëõuߣ ÕDváPàÔZáp™…DQ² "Õ(³ØR1¨HÅ`}Û:5÷Çñ%«(~x~s+ÎQ’kª÷XÚYÄiëZ ¿ieËÅf÷P?©OŠ¢%)4R-†BLI 1%)4ÚÀY^¬‚l´=ýI}R¥¨f–ï²¥/›•7†^¼—kä(ɉ:õHÁ”‰1Q%ƺgp•Lþb¦Ó¹j/ª™P-˜¾ª1ŒrXgÛ’ÉúžÇXL(‡)¿†Ö å×¼K×Ï\pVpÙÒ5§WºÞuWËü}ô>Wô_N¾`©púeÛòKQŽ’\³ouÝGÍ:6 ãzÖ²å(É5óÔøX§‘çqñ¤pÙFòC­®|8‹| ‡£lú„AÊ‚ÍÄW*NÖzSh8YshŒ¢U횺GgT\ø“›œÛpAŽ’\3ï±M¾GEÞ&+f·jð(ˆQ«¶ÍÛ«šäJÿ€“ã÷ø ñy¹Ýg$³Î‚‚é+˜ÜZå(É5óiM|Ô§ÝNhþ+ ù^) *R°Ð–ŠAE*ÛÓÐî!}>E~ÖgÖ?­+ƒŸ,HY›¨/†—8„sCvdÉÏÝ:Ýùþ)Űn)¸¹’_5Ä(‡UÓÖÑÙÇŸ™ïä÷ îïµ:å°ªq» ÿÐýcé­ÂagŒ¥·Â eÁfâëÖ8ײÂõ#ê:P) v&ÎŽ7{¸7…¦ w;ûÞð z.ú­ÖU‚r”äDcN&ÆD•kÏàò»¥ÅÉu¯»2ð·ýÆ  Ï_ö Gÿü{§}zÎhÊam0O%sûTɯ (œá<<ÁO¤,XM<ºì9ÊM ²÷=žÑžï[j—Û³“%üz® F9¬ÙÖa—v.ů½±k¥•ªÒŠ[ä(ɉ:Op˜:œ¨ÓÁuaƒéßÐ{PÜ”î³úóxq(Õ¡¸;%ÞóØnÀœßUD£A)Jü-8†âoAªÇiŸ¯“kôƒ ‹•cŒ£$WÌ[¾Ýñxuæ3ÿ°@ੱø%FQŠêÏÚR)Q!¤ÚÀ«Ÿ=•[$÷¥<ÁO¤,Xm»<­Ñ#Ä-¼0ôÆqóB¥(I¡ñ® 1%)Ä”¤PŸ[–BLI 1Õ&Ƕ£"Øøt’ ]V~-D¤,XM¼ Îöahdx“C”£$×ÌS3K¶»õºÂ*¶ÿ`«c+`©ÄBóÎ<•Ä(‡)"ÕD-aŠH„)"UoÁ‰0E$Âê$™¿&7U Ä»;Y) ¾l{¢XJ ¼hå^ö9¹fÞb_â}·9°#³Ë|÷j/Êúpa;éÄ(‡)"5Û€H„)"ÖÀ•nvß÷:p°KÕ¸2ãa²`µqÙ^•aW¦tYÞ9Aç/ž®ëQy °œ'®lbßy3;›) V©ëÝx¨¥˜éÓ_pjR£ eÁú8ÖÌ·eûj;Ïú³8¶¥>Ð'[8Øðr"£ eAEª>ÁT *R1ØžÆ} N·cûÞý]˰d‡à ‡k›ì|¤,ØL|¬Súó½ü|w.u* R¬6v"ùd‰ðbWeÂà eÁfãu„4ÜM¹Ý7¢H>ÅíþK0Ã%¹fžúH°8Ô3‚„E¤,Ølì’Ý8‰<0 :ú,Ù½œ/V»’ÝQ®šç,vòaY¿;âj(ì/aQŽ’\3Ïõ™`i¯w7:LàMÏ÷¡pø1LÏ÷! R¬&ŽwÞè­dï|ÑÃßù0HY°ÚØ7‹ëKo_'§c:3ƒ%9Q§‘ƒµdbLT‰±î(¥ZÄ=®ò&ò îr䉼 F9¬Ú6¯{(B88k˵KF9JrÍ@í~ö²ž«ÂáÕŒ5A…AÊ‚‰‡â„Z·GLëZ”JͯȧðÖÙéîrÛ~ÏY…K‡ƒ…zVš‹r”äšyW‚Ä™:6íÊË.ç7ƒå0Eä{ZºD"L‰0þ‚ˆÖ¥óUÝ­…ë]Ÿ·) þÉ‚ŠþË× bcäÏ1°˜Q«“f7¯šºViÞÍyC ÍïBˆQ”¢šY]S³áÚò öÆ «É÷× GINÔi8›–LŒ‰*1֞ϳ}c“ÌÙüÔ⃘´€0cÂcÒ(HY°Úx< Wþqòš¯EQ²`µñ¾ü=°ß·L8/§8fWuøÑà F9¬³­ öôe‚_EV8° ò›È‚å0Q¤ ™"1&ŠÄ˜(Ò¨â˜*œ(ÓÁµ™rF€‘åÊí»8üÚ­ÜÀ HY°3ÑóñóÛwÕª"æÅ"ÛW½áÅÖ+—y¶K‡AÊ‚Úél+쮘¶äÊ.çö}lÕFjuâ#zƒ0Ñ9ñ ‚”«ã#=‡š;ìH$̶QõýÁT»Aç¤ÖÉœ<9¡ýe¶R˜¿6uçÔ¾ÊoñȦ@צ5šòÈ&FQŠªgL…Bª ü#äí+ØÛɱ231ŠRTgØšHçlóuÙÌñ¦ÍÂÁ&kÞµ) raYöÅu™Tœ¡nãã(É5ó´sgr—üÀ8øa ~z2 Rl&NÖ OUÙ!€mVoöžXá.ηÇ(HY°³Q»ÒÇôÄ ¦eŒ•-rYìUYà×qJv0¯Pè©óݹ:>Â}p?à˜e”ú_[ÖQk¿v;`¾çM9¬>‚uiž.m ƒ‡‹XÌå(ÉUó¶û?ŒðXÐ\Ao± 9 R¬6îݹ}u¹ 7övQä(ɉ:ÖÔéàD®Óy:\ãýËœÜF9L©%X€H„)"Ö&ôæ<™Éß„¾WÕ¨ ±^Õ‚ÁJ ß…‚%9Q§±V[21&ªÄX{¨‹SãN¥;ÄîR-ŽkX›j¤,XM<»½6ÐìV8|ƒï¶Q² "Õ8ƒaKÅ "ƒíi<\#äà®Á©ÞÉ \ƒ(HY°Ùx¶…Á-›©÷ºí, O úh, b”êiãý!éè)‘}¼.D'PöÑé»~ÙpÞÜù ª0HY°™øÈžiZž=ÛGíž ;‡R8xÿ/Ï¡„AÊ‚ŠT}_R1¨HÅ "U$€T *R1Ø&Ž2o¬ÌÔ ¡²IÍ) %šY÷–¾¯$ôs<øíA? ïÜëþ[ºG) V'×Ý`,ÁT(ôðlL}z6æÍÜì÷Í)ÎF9Lù543•_C˜òkhF+¿†°î×–À㦦üš%ʯ!Lù54¹”_CX{ݺ³úË£ª‚¡™UQŽ’œ¨ÓJÖX:œ¨ÓÁÕǰܙ¸²ïô…ŒÜ÷ÆoÜr”ädFðfêÄœ¬sì1„áí÷µ"î‹LvP®;W eÁjãêúâ=?®V0Ð1«1ÊaÕ¶û†ðÝ'|w²Éà' R¬6î_Ô­§,jå2_zw`y:ˆQSDjý @$‘kÀ»œ}Ùì, šÖ¯ÔB¤,Xm<ïÏqÀ“Lj÷ ãÉŒ» µË׸:ñ ‡¯bøa²`3Ñ÷0øøÂ¡%†Ÿr”ä:û|§ŒKt:pp®©O_ä(Éïê¹L68¾j„pù]½ ,¡ñƒ­Œ-Çèu'ÙºVAä§ñu- Rl6íD'.¯ ƒÉäƒã(ÉUó¦õôLl~Ì¿p¿¿'¹ËOì“Ã(‡‰"õÅʼn1Q$ÆÚP=v¸€ðX<) v6ºR0,;[0ÔŠÏW3ç»ûë×VϯñEpž}q– .vçYm¤,ÈM„åÉ—‰×¼ç©=öN\Ýnûo8·u&AÊ‚² lã$…ã l£T‡t Ôõ80¨<ŽÈ/ún­aiì ÖýšëÈÏþúµVߦå«u€2oyb{õ:8<1ؼËÏMF9JrռԩЛҗ&ŸF9¬™Ö9‘N²Âa›»‘Q² "ÕÈqØR1¨HÅ`}Û#æíÉ,˜}`‰gšb¥¨Î°9‘ž:6¥Vb»!1ò3p1ŠRT3ë>¤ÜÍW‚¨‚°ÀDa²`³Q=M`r9î»”ƒÇ޽;,¦§%^Žà}_/puƒ%9Q§U6´t:8Q§ƒkáÝyí›/÷Õî{OÂßÄ–÷(HY°Ùx½Lá{OÎQ=Še?ŽsT;Cì¸øt5B°÷[=ØÎ1õȸ¼X „‚•à eÁÎÆI±Ñ:¼W1-O+/‡çtµ À÷—A)ÌïòÃ2a²`3qsÞlËzšOýâQðRL¾°Š¿Óý<_4ÖFô\OžrX¹(û’åjÝxÛ¹«£(EÉ µ„›­Q²BDÉ ½îjŒ’zÝÕs¹ê 0ƒÏàÂáú) à eÁÎÄnßÒ¢~)E¡¾5ùo@Ÿ DH”÷žŽyå!H”'Dw}BªÎŠõµjãΣÖsíîÛ÷ׄ Ö¥b\E¡(GINÔ™”™T‰±ú ¶óUÞvõ¢wã>D=p:†ìPW¤,Øl<]7ð^ÙÂaW5ˆAÊ‚ÕÄ㻻Ɔ÷²ðƒÙ÷Â#‘óýù7üdAÊ‚—‰çÿ¾ß.6pŸ£o &Ÿ±A¤,¨H5jŸ¶T *R1¨HõF\ P‘ê¸~Àq™õ½Þ©”ð”ªm ²àŸ,Øçò=ÝLjÂÆÆ‡›œ) 6Õ|·Ufú ¾[Ãå­jdàte¾Bö¿Xÿí w ðì|7Ü*30¬+¿9œ¢8GI®šwßéŠQ2Ï 5ŒQk¶Ý³:ÖH×כ뽫 ò‹üÍ‚”«‰Û—+ÕEŽv£&‰ÔÛ -˜’$bªü…½­NN=ûh5à5¶¼?ð eÁÎFשĭH7†NãllX}ß_¿¦!ÐË¿ØáÁ&Žuá™û(cã°·¼ò§) *R oÙ–ŠAE*©Þ 7*R¿¸ùލ=zÓÂX÷k®Ù½¿~-‚Õ—b;_=ŽÀ¼¡³»°" R¬6îð^(<ú/˜âC ã@¦òyV%ŒQEê.¹)c¢HŒÕ'p^©â`ó/ØÇÔŽFÔzƒ¸/{! ˆb±ç—HY°IÝXÙCÌáîó•Ãýä0Êa¢HiÆ8DbL‰1y$ÏäPbNK̉:G=moêtp¢N×Þ¾ÇvdÄŒ|;* Œàøv) Çrö¥Â§‰…ÃÛØñ41 R¬&Ž_­YÂjåú Þ¥Áhº·€°ù„§{à eÁjã¤]ßnõ*6ï…31 Rl&n­kÔ]m\ÿú»~a²àŸ,¨Ø(eÂ]6bP±ƒõ1δ&jê0íͰ1µÃÊjüí3×RkÖ¶~µ¸ºŽ[aöã×ú­myn¥1ŠR”¨pN)„”¨Ròž¹A„˜<ŠE²ö¯HŒ‰"1V§ñ}KL8S@¼±|H¤,ؤο+Ê~¼ÜÂ~EÙ×g*%ˆQ“EîZ³§-b²HˆµÙòîÃqœ‘éÀn‘uœ‘I€”›—Ûê>'6pÆþÜÃŽ‚”«Gï(_O_:ÑÖ(a7yCŸ DH”÷.¢:ä!H”‡ QžÚíhꃔ(RmV\õy›zvŒ6JmZFÃå°fZRàáÀ0ló:f”£$×Ì;ºTs$Ô>»G®Íä׿¡wåÔ|à!ŠRT3Ë×gøìÁ<ÿ7} ÜÚÖÀ.*wŸ lþA•‡AÊ‚ŠTÃS´¥bP‘ŠAEª›ÙR1¨HÅ`›8oÃHY2o£‚0ȼ0HY°Ú8Ž{*×5M_OÏ>¯M åxq*ÊQ’u&e&Ub¬=ƒW2εuNB†Ëµw†AÊ‚ŠTÝãR1¨HÅ ÝvèÊÅMÛ#ÌÇ=!Ü¿¾c™oð‘ý{;jßGo`hDàMAŒrX³írJ ÓÙ-h¸Ž=0 =õ×Jä(É5óÔ¾`{œGµÖÞé ˆ§'Ûéà eÁfãêsJy'ì|·M»ÃÂ_dëZ¤,Øl¼šlÂåÐyyxìÆ”c%¿ÂÞH^ò ƒ”›÷M‘±˜wþý}`\ÿs®r¤,XM\;¥õT±ðÆôõM10ÈQ’«æé=€vÿîìlçc¸?ØéÁXà|wȹ[ëÂ債]„AÊ‚ÕÆãzcyˆùüº*Ù|Ã/,ó? Rü“õº2°ƒŠlñºw)XÒ)ص©=b'«¤Ä(‡5Ûº  –jçÀ½ƒB+£(E‰ ÇŒ@‰úÔF}{­C®êÔò}r†¿ÃŠ Äޫ׆AÊ‚ÍÆiÔêýnÉêíÝ$û$9JrÍ<µ/ÆŽ –±w¯D¡¤Ë•F9¬™¶8Ó ¯1éÒSúËÛ¨ ömùzWU”£$'ê}x‡N'êtpõ1L#ç%ÑBÀ†×Dƒå°fZ¿ùÃV‰cçËÓ´6ÿ F9¬ÙÖÅO†ðÂõK˜+‚ ƒ”©8HT¤bP‘ŠÁ?YP±ÇÏŠTlÄ`qs·Px[' d_¯e"DQŠjf]‘s¸6¶,w›ŠI^;Ã[±”­! R¬6îwzç/çèj»x]& R¬&kæo-˜Ø"m9gAŽ’œ¢úžŠNÈ):ý¾î“ó‡ANÑéî~wãÞÀA˜¿bUÿ0HY°Úxg[¢E¤u¼2m®xz`Ð{‰±âýE)ª™õê[sm˜ë4o Ïn]Ôò«]Q+ ŽÚYE- Rl6^÷í„«Më]op—ߢ÷–ïHa²`µqí^#wÚ¬PB…ù"Å0ÊaŠÈ÷Á"—H„)"ÖÆ¿­Ü®|ÁôŠìÉG9Jr¢Nén‡LŒ‰*1ÖžïõbSÊ \·YoN6Üu_´Ê°Õ†²îeÌßðTA­¼–±(HY°ÚxŒÚ硬xl=®'u '>4È(GI®Ø·Ý¹õpsûÎj?µõ{}êª%íAÆ`1Êa¢È1¥R¢DHÕÁŸFå3bÖ+°Mý€f•ë34ø±A¶·Á341ŠR”¨P +Lõ!¨Žú„›ƒ¶mãŸùså g$rþ( R¬&îók*»Þ›ýºá&¼¸]׆.“74ì j<¼Ÿ!ÊQ’u3ÆÔéàD®=VWw9¦7Õç.Ç4ˆQ+¦íßsN%UöñëKó‡^A”¼åO= Rä6†ûö‰7ЏfÌ Lò”‰r”äþ$9Ù>­.ÊÉöù}ž»OGÁ¦cŠÃò¤>)ŠRTg˜Ö!dø¥…’ÒŒ†cÄ(‡UÓ–Îûô5ÎðNeï# RT¤J‹¼K*©ü“ýÎ`Tlô;ƒû:Ê·=[Îì”=÷þc¥¨fÖöªù];WÂ÷è¢ eÁj㶃G®l`Û+4òm`AŽ’\µoŸ¹âZèoLÌ‚[+}£$§èt«£œ¢Óöíg·B¸ó…µˆ×Ã(‡)"µZ‰0E$ÂÚø;Ö?^Ó¹!!ån•tb¥¨bÖñ½ªáö1ίuÏó¾N¬ ï[”£$W훯ý œ×9ÖÅè±ÂïqhÜEу(îæ…0HY°Úøî s¼FÇ»EËñÅ(JQ]Sàí«†×õŽ-ð’·ä½ 1Œr˜(ÒÈY"1&ŠÄ˜<’RÈæJÌÉc‰9Q§u|ÕÒéàD®Nès('00J cžÐ'Qå½÷p‡<‰ò$Ê{{xyå!¨M s÷ZâÎ.ýµ{] E)ªØuÎ_W­‰'Ÿ =ž|ƒ”«‰Ëå̸ÓDÜ÷W3šœ"5„qýFê ‹Ã eÁÿœh>Êêõnam-1.15/ex/ts20.nam.gz0000664000076400007660000041376406610761065013442 0ustar tomhnsnam‹®=b4ts20.nam¬ýË’öÊ’¦‡Íy{,X.ûpÆÒP2ÊØ¦ ج¿ŒNc©»µÔ-ï^™ Ďכ5)³ç³ðº#ÂÃÝ#ß¿ýãë¿ýãÿò¯ÿõÇ?¾þó?þÿÿø/ÿûÿðoõ_—ŸýŸÿþ/ÿûîþñóóÿûŸîŸÖŸú¯ÿýïÿúÿÞýëøKÿÇïÿmûù·û?þÙÿ§ß£ÿòoÿå?þùßú?Þþ‡ÿ÷?ÿ—ÿÏÿíŸÝ?Ï?ÿü¿üýïÿþŸÿ‡ÿ|ÿãÿ÷ã÷ÿ§ü¿þŸÿøúÿýãßþ׿ÿí?þý_ÿv=½ýÑÿÍ?ÿíëÿK‡ë¯\t:DMžÿÒìù£ÅóG«CÒ†þæç•·?ñ¸:òùŸzþÉè{kð…°ÿ’ËÕ£Ë×£àì‡FÁÙì?ÝýûŸú~èþé øûÛ-¿ÿ÷¯ÿÛ?>MóçñßÎø/ÿàô)À?Ïÿõ.üõg=Ÿÿw Zúq%¡;{4ƒÇ_xÍ ¿ðEzøÄþ|úùóYúkÃÎ_X|Ô¢Ãó,™9.º“ þL§N¯?ô&½\î¢CvfåËÌ_ºÍ~þ°M§ÇQŸ1ûçÒo\z¿†vÎO*oMØñ×Ñ£8 öš^¿xÉ÷Óñ|üÌñí?¼ãG¨ö÷Æ€Uíý¸ÿÏ+JüóŸî_ߨçú×áç_׿Æu^§§Aÿõÿéúüãëßÿ±|~Âì~§4ÿüÇþ?|e Ê@EÞ¾®cVó ™ï4êŸÿ˜«¸Bq ÛâÂt Ó‘[ØôÙŽå9½tÜ)å?ÿqi1ˆ2P‘wü¼øß´æw(2b¹Ó×þc©Úü… ¤ê=0-U:TéÄß1óíàÀŒiÐQ¤=¡ce AÞ™‘§C‚<*.Ÿ¦q ¾¥i=æXð¨È|g‚vðˆ Gаm[—’¼ÿ. Œ9ï¢÷Ÿÿ8«²C ¦hÛsˆß Mëí®³ÿù­J GÊ8û éY¦í'ÿˆ¼šŠLX3„âH±eþ̧ÓcC>øíƒWA(Ž@aïˆa Ó(LG°ÇÞ#Æv™Î`Ÿé Ô––P¦#ed.}0w%Æ È"Å,ìm¿­Lg°4ÚÞi€)MG 2Â>K¸LGÊÈ\—Ÿœ.–:5h/m;uŠA”ŠMûÓ&W¾µìû jˆ «¨pB %˜bб[0³iŒàmu…J0PÛÛ¦4Êtävôú™–Å ²,ËáÖ‡VüBÁ¤ 1”`ªAûUS^hcV!ô€Wƒ( òÞQÄ!O‡y:T<~~ö1–ºUD()AzA(ŽÜ¶lÿ€‚§)˜ ‚ÂRõwƒ² é2âá±-® ¤"Ò”Ã%ÄP‚ÁÚÞ.°µé Ö¦3ÅÕS¿¸RêŠH.éaˆ¡ƒµ½]`kÓ¬Mgª«·ewö†o4/"Å(ìÏMa:…éö˜«Gb°Ï\­¨'ó^ÖMi:•éH™so]Í‹Š”ÍjGH Gª-ãg.èó¾Fó­ÊÔýI;Ý 1”`Š=KÓ]­ˆŠŽFa3€P)¶lTÀ76 so•»¥1ˆ2P5©¯>ô¢m`ˆÑ` G 0ðzLe¥ Ôæª×"Tæ‹$᳄Ët¤ŒÌýŽ‘ä¶2RôD“-Qä¹ö&b O‡ªÇé·/VF :(Z‡ Ê@ŤcÚÕn2©2Ò«E&… Ê@‚¼÷«uÈÓ!AžUoû©„ ŠîŸ}ú ¿'$úw´n?Èúƒl?ÈZì‰ Gþ®ÈÝ.pôŽÆõ hkGŠ#PØû]šÂt Ó(ì=bLa:…éæ:ƒA 0×ÞÉ>×fèïÓôùöèS¥… Ê@‚¼##O‡y:Tfõ´Þ¿ ¸OWåãÈ« QJ?Gµ80dæJL"ÅnK —·/÷âá(¯†ÊÀºA(Žp[ ¶}g½G# BR…Æ@¢ TmÚ½!´ûüÑ·Ð8¨¤ „D¨Ú´RÐˬ]ëïf ÐŠA”ŠMG߉ذ©ˆ°Òƒ ›Bq eŒ©Ì` 4ƒÚ\Çz#Tæ:—òD>K¸LGêÈìë WÛ½"B×´¶#Å‘[Øñ™¶+螯lê*B¦èø¦"-Qäy:$ÈÓ¡¿ Ô×ÎPE¤ò …C k{'¶6ÁÚt¦¸z÷hÖ_™×I1ç G°°3¡Lg°4)ŽžöQ;ñÞÍôØ rx9úòÅÕK/„  $+‚ÂD±cYÕób`a;–ó—8¸éÇñCŒ?ÄùCŒÕ?Aa¢²>b™kǶ2bEŒD¨˜´=b†^ŠŒy§ªòÔŒ0”`ª=÷ÔŒÄôÊHåzE!ˆ2 ÏuT" òt¨y¼E)×®Z!„ŠR~‚ÂD³#Ø-„ A£1@P˜è옂zŸ¦ðú\^{Ê1 €P™“S™Á@iS}ÜýGo`Èï«y·@k)‚P©¶tóŵ—Q)4£ @(Ž@aï\Û¦#P˜ŽŸŸÑ™¢ OâuïJNœü…‰jÇݱsto†#4#Å‘jK·ÞùŽ‘DLÌÐ’a(ÁÜæ|¿ËMÊÅ Ô ©[ ÂR ¢ TmêB“ko®Bº@€ 0Qí8Ô+ñçÅÝ#¹̵C ¦Ø3=òyWä›Ù7¾g†¬ü切"Å‘bKÝÄ“æ4ÿó1êžF n—IOB¯çQÚ»ý5èYGŠ#Õ–£ßave‘ ::Be AžëüH äéPñøúÜmuw;×}ÑÏðºAR\5t ¢ TlÚž®®3[ßÐèîÆŒyq¯ ÄP‚©öÜ…«£f"ä• ¯Š GŠ-ǪžŸGq± ‚ù(.Š#Í–ka„Òs:ÖPm¼ýõ)ÉŽ#?"¼˜Wp‹!G¸-îZï›WýïkÌtŒ¸f¿FM¢ TLšJ‹ÄÝÁý†æã~’{¡ë!)ꢱ‚(›ÖOëâéóð$^Ý¡Ž& ª).KG .AÂö°.@²t©Š{+î,¨ƒ±ÎŽžj‡¼Ò|¡¥C(Ž@a±âTf0PšÁ@m{\šŽ@e:…%|–p™Ž”‘¹çkö|Cû¼O±¶ÂtÒQ‰ ™¹=B‹ †P)¶:Àqh¨cÞk¬PJ0X[BZB™] ü «z8%hrG”žŠ#Å–ó¹åç8÷òíÆUâWéÝCÒü|•ÞQˆ2ÐmÓXÌÞ¯od¯O;2Š\­Oï6ÃELθ^‘»íç¨S†Â^t ¡8Rl™æUz—âk³X*RÐXÊ“‘`à O¡ÄA(Ž@aÂÓ©Ì` 4ƒ©Ž~6î§K¾¡õ.·Å÷Àa´J0‚P)¶”>’îÚŸÃS_B+tlí¶žE ™ð`éM¡8Òl¹÷%<÷À!i)@£ QºmšÁÝUéTäÕ…“öBq¤Ø2=û5ŽÎÿ74÷K¨«÷P‘÷öŒXN‡J0XےЦ3X›ÎTWoêÙ µVDˆm k GŠ-k?l\¡Š¼’vùÍŠ#Õ–>¸: y=EŽ„âHµïµ*ÀñÑu€\`ÚæS¸!®„Óñ4¾!S°N˃&Qª&õÇ׋ª x–-Öa˜çó>sHÜçõs\ Xe¹ÁÀWÎ&FBq¤Ú‚ˆ Ï ¼ž .:~€¢@±¡TlþÊ}ÞÏ+]q”­C^ŽXOGŠ#PØ;VšÂt Óì1½k]¦3Øg®îÈ“yÇJSšŽ@e:RFæñ½’GÓŒ½[*r€ A”ªM‹p_TŒÿË|®SÌs˺iý;p.]®,£"¯ÒH\0#őۖõs¿Gìòò˜8f"Å‘j˲⇸,UäõqaŠ GŠ-Ó¼ù'ÌÀ¡w*#¿›D¨Ú´‡!ÅyS‘W¦!ΛBq¤ÙrœÁ©öˆM®¥°"ÂSÀrA(Ž[jþhX¬«trPžë"†”ÇLaÀƒäQ‚(U“úaàJÕ*òîpÈã ÂP‚ÁÚÞÍ8[›Î`m:S\½?“"WscÝ©:2¶Ï㕺2Éʈc8.Q*&·C¡1Ò%2)Qä¹Jž$ÈÓ¡âñ²¢8¡!¯„GŒs„âH±eŒ×dÝŽe§ûøY¤²G zçVâ@ˆA”ŠM%·òg¾?E]c 澯3n˜ˆÃ­"¯§ˆÃ-‚P¹m9ʬÃÇú9v÷»8ô¤âЉA”ŠMuÞBýùyÎ!W´:ÏõúÈ÷-í}ÆÑ¸ örøù×q¬{;–×GÅñç§ÅËþào~ŸŒB” ¼-#Ï‚ < úuùøùësŸ‰öÛÔA¯CC¢MQˆ2P•w\ÅôëÍ ý¢·Œ—&/Q‚òŽŒ< ‚ò,¨Œˆñ³ãÅEFãtÝW=i¾Xèåh\Ç^¢ TäM˵½>­xc¿KíOø­-£8F9L Þ—G¤… "-ìïŠuCÊ;· ô*µ¹‚(ay`È;ôYhQPážhAPŸAy)ÿ¥ÜgAeÌΟãpÛT¡y“¸b«0áŽQ”¢…gN¢… -¬zùLá(_ iòÃE(Q‚ò€#lyåYöž7ŒQØÞ$ãAyl ´ ¨Ï‚ª¼í 3?^Q7%Çß‹B{Ã(‡Õ‰u<šµì{×€jЈa”êmçã—³¼¦ÝÏŒ€Pƒ ‹@” ¼GKέϤ @“*n_>#>õ •&ËÔ­ÉÞD­@ïæ¶–hÄ(JQX!ð C¡Ea…U¿tŽ÷æŸzõ¸U«"e jÓÞ&·Q7šnªY1ŒrX5í¼V¢à0,Ô»½®šÃ(‡ "Ažâia‚H +þ_ûàæM¥ $õ]`¢‚(5y÷1ðE¾¿Çmþ×zo8LQŠª Çñ¢NiØÿ6ªþ‡ºkÇ(‡ "÷="-LiauüŽÂ•mE_§nÐ{Ë›‰‘ úE) +Îp(´(¬Ð¢ªãçûk¡¾¤~àØ!`Xy1Êa‚HK="-Liaõ,×^—+ž6H¼B¬Î²µ_Ú½ù[¡\ ÒÀ ×¦±¶Ð† Ê@Õ¦½7Þv@¡äŒ ÏçF9¬™†o\i%ß*üöšVðEJ0HzS¦8BêLÉÉTg1HœÅ mÏeg1u˜ŸÑò¦ð»I8²Ä0ÊaͶûüB,Y?}¥F—F9Lém*1A¤…ÿo£øƒöÚÜæû#è¡Ê¡RÒˆµMŒ¢‚%ÁhAPŸU·/ŸÕÚÔO1+Û­žX×kq¥ÿ{—oü=Zt4_Ä0ÊaÕ´ýú _0Û­˜¸}³Ý F9¬Ùvÿ¢ƒ¯¦8&æ»°ð b”ÚmË–ˆ¨×Qƒå°jÛù“Þâf;'½¥ãU¡DGâˆÃ(‡ "G<"-LiaÅÿûݬsÕFƒ¤ƒ_0Á A”ªMÓ}úÛ—“ '5¶+†Q«¶õK¡·@*ÔA€i~¢ Tm*M‡Ø6ľ=^³µÀ “vdá"£(EUÃöGáãÝØnhx‹ÓI­<4"e fÓN‡øc.Z¸®˜5`¸b”êÈû6ÿ.¤ÏÛ/ô{=ck#e êúó‘¼yw-*&¾1˜¼1Êa‚ȜƜDgzyŒ]p·§ %G_‚å°fZ—&ZeãÀ i­„ó9Q‚òÐë²õ™hRP¡7ÉAPŸ7b? ”ÿRî³ 6f­cm°Ú«˜˜Âj/ˆQ«¶MË®(˜zUJ˜Å0ó A” <Ô1²õ™hRÕíór&úGi…ùö‰ª?–ë~Ï!Dµñú½™76wD Ê@ÕªušÜÊÀ éL Be (8–gAPžaï@èpŸEaÿYT˜˜ÒgAmÌÞØ•Ø œF:Ìñ6*&¾-˜1ÊaͶ} l{ ›ïí¹E)ª¶ÜŸ2 eugf¼Õc¤Ö~͈2·)¸qî×cá]ù‘&-¿=Ïk÷uÂáú ?ÐÚ\(]V}>Ý`òÕ0 ’Æ(a‚e (M|[ŸIA&úN­!¨Ï·‡Ï ”ÿRî³ :fÇy×ÈÙ$³!Ê@ͦ.<ûZg ’Ò@žƒe f“þ½ ÍóêNIÉÈmƒe Î¦î˜¯wÀÞxhØE) +ë¨C¡Ea…Õß­ô¾J³ARx…f¢ å¡ÇÖgRP IA…¾}¶ õùöØ”ò_Ê}TÇìÒ­Î]”FÉÝW¼Ä0ÊaÕ´õÓ.™X…íÀ )x‚º;QÂòÀërè³(,Т B0IlõY”—ò_Ê}ÔÆl·vûÄ ’Ò%¼0F Ê@Í&áûÙ*´í»örqª.þp¨š/}¾ävúMÉÃna”Úi{=Ï×ÌúÆÄ]«)”ØÅ‰a”Ѿý¨0&ˆ´°æÿ]=:Wòq7w8lЪ~®þ’Š&¸ö‡ Ê@Õ¦UúºæóB¹BÛÀ IK!ˆ2P³©ÿð¯Õñ%%& %„(Ay`FÙò,ʳ (LC[žAyåY»PžAyTGl¿ì{;°’ Ø@ A”ªMÇf\‘Á±¥`ânŽ.1ŒrXµ­_©¼=…I^„%q¢ Tlš>ÝôöØ $-p † Ê@ͦs Üi¼6 ][<ƒVAØ B”ªMÓG=ÿ£Ò4w©•·T/˜DÃR3FQŠÂ A¢äPhQX¡E5ÇwSѽßU(¹X³1†QëLSÏßÂÈY iîÃÈ‚(5›Nu[Ck7¹¼]¦IòðÈ@”šM×I¡Ð¾Í´]ꫨ$= Öb!ˆ2Pg“~Hó›’§è1ŒrX5íè÷À½)ùaxèÆ0ÊaÕ´Óø”6í´>®M‹a”Ѿ#àaLé;>þ5®dÜUì ’æ'¬Be fÓ•ºÒÖA’#à:‚(U›îöTpcjîsPo_¡@ÒÚ ÷D¨ÙtŒúqà˜Ø ÆÃ6†Q«¶Ýi+$ (¸‚… Ê@Õ¦¥ƒÞÖ[ÄuÂE) +e†C¡Ea…U¿ßðÁ+ÂM¹²ÐAÒÀ€+]¢ ÔlxS[7r­¾âÀ ÉxXD Ê@ͦQíS Ðõ©kWÿc`Ð,x¶gBe jÓþè•z7ÌæcYÉ`ÅÄE O‘F9¬Ø¶|a¥DÀ!Ä(‡ "½›9ALiaÕÿÛGMÆaâZ )E†‰k¢ ÔlêÇ”wé*”+´ ’܇ßp¢ TmÚ?³;J ’¶Ua A”ªMÇõÛ}¡NÍrœ["7^Îêt˜HsãD¨Ù4Ï™hV01¾ã±Ã(‡ÛÖϵ¹2µA’á*‚(5›®Ú=Ø_'cÇûb2¦ vFˆ¢Õ캪ÜP{f½‹È`t]­Ï0`‰û#_óöŶqV+]8- $¹NÊD¨Ú4/G`Ƕ+†Q«¶í]Â`­^ƒ¤Î\\Ce ( \[žAy„½ç-ðböŸ7yzP`mµZÔgAuÌ“=áR²ŒÁ[Zl‡uɆÁ}¼>ÓJjöI-ðƒæë–ÈûyßñÅŠ£–w´Hê›À±‚(5›5ûÄŽX;Gx£RÄ&öDˆ¢…‚’ӡТ°B‹ªŽßõp„ÎOÿ¶¼1°PrÚ½Ä(‡UÓÆþ{^Þ÷\)±x¦Å0Êa‚Hï2Ä‘Vý¿ßSÔÔ>±ñH‡‰i(ðH£VlûöãÀމ+´-ˆQ«¶•·™¤ßØùxݾ±5Õín§ÈË“Ë_óÙe 8ÿ@ÓýM’¯ DÊ6Ùò,ʳ ¿oh]æ=lS¤%´)Q*6mcg“×ÛÒ]f±ž40H*&¡#Be bÓ±l›$åzЦDʡŖgAPžaïyçFŒÂþóŽÙ–b[ A}TåÝ;’§0f—_hü–&/Q‚òÀbo˳ (ςʌ??WŸÕåò ]exàAëw¶Ô=È79$= ½ D¨Ú4u6ùâQƒÄŠ¢(Ea… gw(´(¬Ð¢ªã—-8+#½+0c %¨ Äe[œAu„äaª³$Îb¶Œç2޳˜6LO5Pâ±½÷AÅ·H7Êø”økÒÆ0ÊaÕ´²= G…›Ø´F9LéË3Ø ÒŠÿÇÏÕªM°qì·öÀKû½ôSI¶/ÅE)JQX!˜g……ZTuüÒ|ï*7cb$ŽÖv8c¥¨b×ô9—Äk®Ø*,­ð5Ç(JQ‚B0-=-LÐhaUäxõÚ6éýnNc}QŠRTS¦¼)Tĵf1ŠRV‚€C¡Ea…U¿tŽ÷&‡š„† ¶*Qª6­`cEìcboOåF9¬Ú¶ÎD”*”P=aÃ"e ( ][ŸIA&ÕÜÞÇ'÷<)CsfÙ°GnÊôIg,á›A”šMw9+Ÿç}Ô‡”@]Ÿßv&aÇi–Á<1ˆQD—xDZ˜ ÒÂê 8>K"^UL xÇ0ÊaÕ¶sZâ è2ÝËn,ÝYÖîaÞt¢@Ò¾Ì&Be (OümXUŸIA&‚Ák ´ ¨Ï‚ ¼”ÿRî³ :f#±‡1{9?Fö¶~®IìZŒI‡`” A”ªM㬞ÆŽ¿Çé]N*&6¦àrÄ(‡UÛ¦ñ DêcâHÄ/:†Q«¶=Gջ®Kÿ‰Xw±³î…ÙÊÑ«'Ïß,àÂüøË,?ÌØÜ`(Á“¶Ï¶ÆÔÀ1©‘Ç}Œ¢U ëÀwq-´ÿ׆D¨ÚtÿÖ…ë  ’ö¾áð A”ªMk÷ž¼)F¤¿§D¨Ù´Îñ—»ízoOÄB >Çó0Q‚òÄßQTõ™hRÕíÇl$\p)øÆô[`xÜÞ”ñ[ ¯‘Ã(‡U‘çýó §´$L¿ØúƒMMd £&ˆ“Ì#Ò‘VÉ~'5®üu¨Ðt=kâÀùKýÞŸ:«a1ŠRT5ëo®˜80H*5àÀA”ªMǽ¡ ûy…׊70HÚ­„ r¢ „åÈæÐgQX EA…ÒWTõY”—ò_Ê}TÆìq_xðÍùSR”†Q)FQŠ‚ Á\´ZÔgAÍí]€ñ¦O’Š˜=… Ê@Pžø¡rUŸIA&z·$BÔçí= ”ÿRî³ :f×ëcvδgà˜˜RÃÜ,ˆQk¶éï †öós}XÉø½ûiÿÁŽjY£öwÅŒß1ƒá³R⦠ AŒr˜ Ä)H DZXóÿv¸óÏAR©ÓãD¨Ú4~Ô¦: çˆ;ëÏŠí¨ã­+&)u‚å0AdNcN¢3.~§”Ý:ë‹{_=7sÞE) +õC¡Ea…Un{&$LÜÝÁ!1†Qk¶éÙ~e7$µð‹@”.›¶¿>}HôeÌ ’:à á B”ªMÓg çR?X—qXÑÀ É`Ø!Ê@Pžøáª>“‚M *ôåkAêó&¥ü—rŸµ1kÔ“ &5Êøòã3*…1ÊaÕ´åÓç­®Ô¤£„I 2“ DÊC‹ª­Ï¤ @“êÜ®…Æ#jyœÜñµ3Ãå0A¤ïCDúŽ2l??=¯î$ãù†¤¥/Ȉ2P³iRw’1´?æ¿U›Tìèüçì°5Êø ñË…1ŒrX3íJ[] XÆq׎ÂB¹rÉARËήD¨Ê»¯mîBÀÞ~¡ãÚš¼D¨º|:æ`Gãšï­ÏX$¬˜XáwÃ(‡5Û¬k¶0c«˜˜ýÜ-ˆQ«¶ÝÑFI£†¨D¨Ú´»i`¼÷{pøÚÃÇ&aŽv”¢Õ »n»¸‚ÀÀ ©o…cT¢ åŒÆ–gAPžaï¡äpŸEaÿYT˜˜ÒgAuÌîo¯ a¡ÖD¤¤GéD¨Ø4M]4ó–w’«»DÊÑWÕgRP IA…¾Í õù6>”ò_Ê}ÔÆì¦BpHJEà< A”šMúê0dä/0).”€Ã”8Qj6mú„Âo÷¦ŒŸ¹}½ßF9¬š¶ßG|}ÂÀ11÷Ư,†Q«¶úï0à‰|Z?èý8—Z?Öi?³ºÕ‹‘Ic#!ˆ2P•7N¿#qlZ¡óZ›¼D¨º|zÔíÞæ`ùdW$½^Be jÓ2ŽáL¿@ÒªóèD¨Ú´ö£»Á7o+¼5YĆ=öEˆ¢…‚Æ€C¡Ea…UtŽ÷Ör’&#¶*Qj6éŸ+ ý—|`V\ éI0+A”ŠM˧¿@dµoFIsö—Be (¼([žAyå¬Ç–gAPžAyVËʳ (Ï‚êˆûuÀ eü&;HAŒrX5mº3´‚TJÜæÀ¦Å0Êa‚Ho{4ˆ "-¬ù¿ ðÞ®L¤õøD¨Ù¤ÿø†æûXo¬œ[Vã7ðWëW¼° cå°jÚvyÄI+´ëÅvâÝ›vÕ ƒ¤'Á2&Qª6}`ó&ž…revƒ$÷á0(›ÖëÃѳPb Z£(EU»î0ãŠMƒ$Ây‚(5›Vµ ËÔò#ÕÁ.ß:/“»Q20hœû8!ˆ2Pµ©™Þä¸@Òz³ÏD¨Útt6y둉y6*DQŠÂ A€v(´(¬Ð¢Šã·Oçx«V$E%hU¢ ÔlÒ÷^1t}Ìĵê OF dpõˆ0”`ª=˶Çl¥Ä…¿ÛF9LéíD1A¤…Uÿ¯ëXðމ%U1ŒrXµmßÔž;ÌJ $b˜•„ Ê@Õ¦’KÇz Û±îî|`Ð,]˜`„ Ê@Ŧý3ªþƒ™–ù?è¾ýÓG)ï¢U(ת00H´0f„ Ê@Õ¦Éú=_8l¿Ká)B+&F'ìŽF9¬Úvì“{ð ’ïpn… Ê@Ŧã>á ¸Ç§CÀ±“{ ’ž‡E¢ TmÚÏ=0’މnÇvÅ0ÊaÕ¶sW[@pþŸÓcþ{³“ó86÷Ø$ipj… Ê@Pp„-Ï‚ < ÂÞó®ú1 ûÏ:XIlõYÐ5f÷¿>÷©ˆÐ´ÚnñgÝS8œö¿ÆþI¾aÑ ©XNB”ªM{g“o&6H¬=±Q!ŠRVòN‡B‹Â -ª:þÕ£š¦þmùæ}£äÔz#ˆQ«¦Í£¾‰‹M+”˜cÓbå0A¤oé c‚H «þ?{ÿ{G±yU:ļ»ý£(E»–m1º;Ð°Š‰K´,ˆQ«¶•7› ëhœ.…Ôvw]|/?žŸéÔº.ó4~ ò\Aˆ2”l²åY”gAßй.KئIÅ8´)Qúµiúüõ™:›\ŽøÖõp?i`T:½…(yãtÕƒ›˜~·Wçñ‡Ú«¾E)ª*<ç–Ù³–_hú–&0Q‚ò€M¶< ‚ò,¨ŒÙi^Õ,Cë>‡GR¤ÔôDÊË-Ï‚ < ÂÞsÌ0…ýç d ¤f¶@ ‚ú,¨ŽÙòó±è2=•< À F9L Æ”G¤… "-¬¼€y¼¾‚zkóÚ…'oÈ-4ÿaÈ A”°<0½ú, ´(¨¼*[ A}å¥ü—rŸ•1»Œ›Ú nvx…I‹7 ¹!ˆ2Pµirý–fÛ¥Þ ŒfAŒrXyÿÍ(ͬߞîͲF9L ‚G¤… "-¬¾€í£žÅoíè§‹7ï-”ñ“à¯áÃ(‡ÓÖÏG?o M«”Øo…¦1Êa‚HoéÄ‘Vý?º~Ý“„Š­B‡+aŒ¢Õ^?myËïå™ù÷”ÁØ @”ªßç.ó&è' L0c¥(¬¬J……ZTsü9'—ŠIƒ®-1ŠR”  DD 4ZXõþÚ {oÕW Ièãã1(5›®C®ù?0Hêàð(U›¶~Yöf—ëîùÚW¤Þ?ûZJ"e (OüÝGUŸIA&UÝ~ôk‰{VÝ”ñ ç¯yÃ(‡5ÓÑÚʲŽ‰Û­8Æ0ÊaÕ¶s4n…à´²`¢KpZÃ(‡5Ûý´’…=‚‡d £&ˆß#Ò‘Vü¿•† ¥•â#œ4!ˆ2”‡¢£­Ï¤ @“j ¯£òƓͿwJ¦Nb£&ˆSÚ#Ò‘VðÚor_(Wþ60Hº?§s¢ Tm:Î5¦*&nlW £Vm;=Ð>8&íóÃwŒ¢Õ ;õü&r×Lq%êѺ°Š G0ð^Meƒ¤Y Ц“%ÍB€2 Â>K¸ÌBÚȼ@¹–ÃJÍ÷Çr|ÉãÀ11Ÿ†n£Vm»¬'˜ôïk¼%h¤=XX† Ê@Pžø³@ª>“‚M *ô• APŸwcù¥ü—rŸÕ1[šA±­}»WN_æ7pLœX0= b”êmǸº£{õ¿w‹f?ºØë­• $MdX*… Ê@PšÆ¶>“‚M *oØhAPŸAy)ÿ¥ÜgAeÌŸ«pU:ƒ¤³í°` A”ªMÓ£§âÝò(˜kE¨Ð<Ê©Qb,à Q”¢ª]˼»Çz…Vë›høYû£pö¶ÎŽã±ly»*Ët¸l1Êa‚ȜƜDçÂzœ‹±Ã5òütë±·D-ؤ†WŒ¢…‚²Ë¡Ð¢°B‹ªŽŸ¿qÎóÝI‡ `¾‚(5›ºÁäí)Hj=â7(U›f×ï¶óéX1W÷k`”4a{.Q‚òÀ˜µåY”gAPˆì¶< ‚ò,ʳ:¶PžAyTGlŸaxË‘IafÓ!ˆ2Pµiõü\;_ì+%L]¸Ö‡ Ê@Pžø“¦ª>“‚Mª¹½O*Ü ÁM?õZ bå°jÚæø%ôײ½9~ŸüµlG Ê@Í&Ç/¡¿!ýø1~Å›q¿áE) +ôQX¡÷ìy¸~‚þ5'.¼{{9’†ïˆ2P³iâkÂÙÍ`w#¼PÆg½&q £ÖLÓ>¯ûç´†ã_Ÿ±OÎæ`£dÃÀ c”êi“¾ ¦e…\µÅðd¤^51†LµçjS}ßÌýaŽPÌí0±i‡=Ã(‡UÛ6ýƒ¨Ñ Éó f!Ê@Õ¦½û9igv÷MÝQתIúð´@”ªM}äôÕ› ’–PÐ!Ê@ŦqììÚiSļ£(Ea…`Ð:ZVhQÕñ³ãWÚŸU]ƒ¤Šº DÊbJÕgRP IA…¾]„ õùv”ò_Ê}ÄǬ«eÄm’V<#·É5›®Æ5«MÛvÝ$Y„°yþRûu6£B¥¨jÖ~ï ÆÂf¡ÄÜ ¿­F9Lék1‡1A¤…5ÿwŸŸóu>$åÓ0à A”ªMçå WHkÐÚhÃʤމ'vF £Vl›FÇÏÏót¿@’ëaº‚(U›¬ßÿÆž˜ûpãÍ å Øƒ$§ÃÉ‚(5›®«x®Êb`ô¦`á‚(U›–GÉîkB~c›ë·ä_#p[ŒïãqQ01Ðà‘Ã(‡UÛîº3ØlšŽcö秤f)1ŠRTŠ [ A}TÝÞ/xÞ"¨@RB søD¨Ø4ÏMÞ²i65´)Qj6-ê'P1´œG|ÄVJ NpÌ1Êa‚H0r="-LiaÕÿë¾$r®yëÆ¯»î/”ñ»X¯!Ã(‡UÓŽEMà²W iA‡‹^¢ Tmº3ëP¡±|®ŸÞs.®ÇÄÄ(‡UÛîXå pƒ¤‘o¢ Ôlº²šP¡±,Oý{c[Åıc[£Vm[)¬·i°ÜG±CÉù²u똕٠’2ìÃDÊCAÞÖgRP IA…Þ, A}îYÒC)ÿ¥ÜgAeÌ®ó5­\6Uh»~ÙÎp‹+Öý:&± ócû…Žh«®A”ªUÇt"ÌÀ1Ñð1ÊaÍ6Ç/üòµ®@R„k]¢ TlÚ>:û6[?ký·õÓÄ; $Cp\„ Ê@ͦ«)äš$ƒ¤]j8‡Ce (¼'[žAy„½b´Ã}…ýgQPaJ`JŸµ1{§s±znÛGõYxúÞTàé(5›®•À5ç›M×wÌ7aX¡óZ;›e bÓþõ1 *”<(à« b”êiË2%îý~Ë®¡10HZí±;"e jÓ9«… L’†; L!ˆ2P±éøìk8ƒ9ÆÎÞ%®@b·z"FQŠÂ —”B‹Â -ª:~îï] $MElU¢ ÔlZÕC[?Ýž¸)9b_Ä0ÊaÕ´}Õ÷Á°i…{aØ´F9LéÍsƒ˜ ÒªÿÏë‡\ ÀÀ Uù0? A”ŠMçt-â®ån`´4ÀÕ8Qª6Íý<ñFÐB¹BÔÀ É}pÔ† Ê@Õ¦mÛ³±bbßÛÃ(‡UÛîD-”µN}î ¥®Y20hVW0‰ƒe jÓqyÐ56IS ¼â D¨Ø4~Ž)0*މE ´+ˆQ«¶•Yÿ¿±eUýÇû¸Ž»{@ š„Fï!ˆ2P³éÖ|ë÷ô×´{âmÍ÷K ßï7<¹í$UOÐí!ˆ2”œn˳ (Ï‚°÷¼Q:Faÿy§Õƒ‹±-Ђ > *cv—= ­=ä}U’*;èˆD¨Ú4w6ygGÄê ¢(Ea… /v(´(¬Ð¢ªã×M=uˆ¡£[Þ¹X(y ÆÞˆa”êiç¦ß´Á¦JÌú±i1Œr˜ Ò»œ1A¤…ÿokïï(ÞŽ}Kx¤bbÆ =Ä(‡ÛŽé4ŽÏAÛ*&¦^ж F9¬ÚVÞvl’ûãu{ÇÖy~Œ#'À“ë_Ÿísjõëü-Ÿ¨|`=Q‚ò€M¶< ‚ò,¨ÈÇ«gpJõwWc¯]¯E) +óˡТ°B‹ª ·u­‹4(m–_hú–&0Q‚ò€M¶< ‚ò,¨Ê;î£é»4,~Ob.¿§|>M` £&ˆ¶yDZ˜ ÒÂþ¾±é£föïWfœ–pL+ÔB1-Qª6í÷ï7ÇÞqÅV¡Ê¯8FQŠ‚…Õ#ÑÂÖ¼«:D+&®þ0Î1ÊaÕ¶£›-Ö[ ¹¿¸láAR» N±D¨Ú4íáuèf¤\†" %¨ ¼#[œAu„äêÉTg1HœÅ mÏeg1m˜>Vk!8&Fgƒå°jÛò™ãKH¥„™‹ ‹@” <ñǹT}&šTSxÿÀ& ©ý[~°½“Â(‡U‘÷ò!ô /.ë46‰ˆ2PºÇ±ºãL…ÎG^á-+&öž`^Ä(‡ "ss™Ïrïù¹ÞóÀ )M€Ã0Qª6-FS {âÑ8u¾à¥k›yðõFJ0H›øÉIMœ !u&Ôù[?þ WÇ弃{lQ]N£u%®Ÿ.žySΉ[0sŠQ”¢°Bày‡B‹Â -ª:~üŒ‰å±b‡ôšáÄ(‡ "AÌõˆ´0A¤…µÐ´ŠÇAÒtµm¢ åGØò,ʳ ì=o÷-Faÿy{ w[ A}TÇìÔ-(Þ¤@Ò«‚uI¢ å‰ß~Wõ™hRP!xU¶@ ‚ú,ÊKù/å> jc¶Ë0¼]£MBo/߈2Pµií³&·Q7eü‚âˬF9¬š¶=z3ÞÖùº›»Š$­q°È A”°<ð–ú, ´(¨Ä [ A}å¥ü—rŸucöL”… -<‹cå0A$˜Å‘&ˆ´°êÿ}SW;œ“^má2÷˜Õl Æ´mêLJ·°+”kA$Ýú€o+Qª6ÍãèžýZº7åíèHJ!aG'Q‚òį ªúL 4)¨ÐÛ2APŸ·]ü€RþK¹Ï‚ê˜]Çþ Ÿ·áQ1ñØlx1ÊaÕ¶í'†…—’Љ‘88Å0ÊaÕ¶ýñÞ¼= ­_¼]ŒI‡•` Qª6õK·/ô$XC† Ê@Õ¦³{OÞfXÄô¿¨E) + †C¡Ea…U¿æÓã+4ê+ÆOšºaëíÌHʵఠA”šMú…% -÷G}Ñ}à˜´¹W E)ª¶éÍ78G %·1à$ b”êik—{Û c,c¥(¬Ä ‡B‹Â -ª9¾‹î†n¡Œ_WxŽF9¬™füRž.…“<<]bå0A¤w£*ˆ "½iÞ¾ÞßK¥±uüb¿_Í::‘!ŒrX${x¼]ÃIkžÕˆ2Pµé¸JW‡b`t¼Ö(!ˆ2P±éøô „÷EÊø‘%þª‚å°fÚt*¶câ)øÊ‚å°f[—þz{D’²>ØâA”šMoÎ;ÓËJ Í<˜]† Ê@PÊl}&šTuû8u”7«”¸ÀâÃ(‡ "½‡vƒ˜ Ò{p÷ûtÊ[ÿwç*ûI L.Ce fÓ½­Û>–.z»Ñ’ü‡ca¢ ÔlZ—x]îOÅ’ÞŠ‰ë$Lzƒå°jÛúè{wòŽ}ÒC"ž’7åÊIC‡šD¨ÙÔÍ÷¦M¡Œ‡¿&J £VL;?˘X*&ŽDøÊ‚å°j›1~á’~ÞÑÃrI£ ¾èD¨Ú´-s"Q>÷mr/Dƒ¤J ®“!ˆ2Pµéˆç¡7#Õ 0 0”`6™Lq&„Ô™’ç=Öa8ïþnÏd<—qœÅÔazŽS`¥8&Nt˜Ž1Êa—mÛ_Ÿ»lôZ¾¡’éGzøßØt­®å~`$,mAˆ2PgÓn=cågˆ|ÍÈc“2AÃ4JQŠj†=Rw«\±åú8Œ3©8&z<‹{P ’±!ˆ2P³©{OÞL¢@âv<~Q!ŠRV¸¤ZVhQÍñ›z:ôIÃôD¨Ú´uƒÉÛø*´ à7(5›Võºu/×›îHéøí†(JQX!é……ZTuüÑ9Þ›&HتD¨Ùt¥±©x»Ôp5X?×`ÛJ‰{Ûp1Êa‚HoýÄ‘Öü¿Íþ\kà”ôÖ`6£(EA… :µZÔgAÕíc®½a£PÆ×ñÀÄ(‡UÓ¦+xÄ}¥Ä9†M‹a”ÑÞADZXõÿÖGTorX(W¦20H*Op|‹@”šM»¾¶àÈQ(qlàØÃ(‡ "ÁØðˆ´0A¤…U‘ÇuË{^Úú ?ÐÚ$F Ê@ux} òæ{…r%Tƒ¤á‹ÃF¢ Tm:÷)“àLÜgÇ †Q+¶mã}S+ê+&> ¾³ F9¬Ú¶žÆ{ƒó²bâÓ`ðb”êmÛ¨nÓÃjb;ºˆoåbƒ¤¾vF¢ å¡TÑÖgRP IA…Þõ2A}îáÞC)ÿ¥ÜgAeÌîã×\©ÍÀ ivÀÀ‚(U›æûÇ|±zà˜xÎÛÃ(‡5Û®XíZaI^„‹I¢ TmZ®íšWÚî3}¾Ekà˜èvìŒF9¬Úv<2"o7e/)e¬d>>cºÀÀV1Ñ6Ú‚å°fÛõñWj>0h’lX9„ Ê@ͦGNé­Ìå4ö`?9½YC¤.ˆ2Pµéèlòæ’J/lS¢ Tm:õ_E„Ðùy| ß»cç?w¢V(9 ‹Øç½š‡ò”s½î†»fÿÀ Y»08… Ê@Õ¦{Å %ç6ÿ«{È»æÉÀ )Âc0QºlÚÿú¬~ŸOF:» FDŒ¡Sì—I½(ÞQƒ¤AÞQ¢ Tmº_l(´ìMkwÈÛòßÀ ig¾ÜDÊÙ-Ï‚ < ÂÞóEË(…ýç» Ô>¶@ ‚ú,¨ŒÙy<ãÌ6oá9µtò¾Ý›‘2èºC ¦ÚÓßì÷Úsß´—6Œ°Aˆ2”6,lyåYPõøöYã¯é8ãsÖ£©ä_þˆ‘Ñï|ß‘q7fëÐfàßÿþçúÓÿþïÆüþÍ>áOÑÜëÿôZÏŸ¾} â Ïò³ð¬¿WïËGXƒe (d¶< ‚ò,èïÝß sAŦsœZcô8¿v°þÞ±›«M!ˆ2”R[žAyTå­ËôŒ¤›~±é›šÀF9L F†G¤… "-ìwðΟ¿>c7x]²ƒ¤.È{BF!Ê@X¨þú, ´(¨Ôƒ¶@ ‚ú,ÊKù/å> ªcv»†º?¢u´óŽhQˆ2Pµi¿¾Š{OûýuÂMšó¿ç×ßï¾ìͪF9¬X6Ž×ö’30 ËáwôŒc”êms7­Å«Bý­k| ’6™àð A”ªMg7|½qº@b7Æ™E) +ý>‡B‹Â -ª8~;Ç{—ŸMB…V… Ê@Õ¦ù1\ùV‰mV1‚å0AdNcN¢3¦MË}vÈæŽ’?àZÄ(‡ "AkÖ#Ò‘Ö^@KÝsú¦Œú¿fu £VM[W}ÿ ›V(qªaÓbå0A$xÙ‘&ˆ´°êÿ}7dápÞ˜+ œ é"e (Oü qUŸIA&UÜ>ýlñf…r-¹ƒ¤ã\pì† Ê@Õ¦é1½‹í¼Œý8ð´Ï/¶ü`ŸfW £&ˆë­G¤… "-¬‰¼~G»lphü…Öhì$ Ê@u|,{"dJtõ!ŠRTµk».Œ¸j±AR-KÅDÊ/Ø–gAPžaïyE1 ûÏÛ xP`¬Û-ê³ :fqM¤æ£'L̓å°fÛâŽMÓ‘ì8rJ0UÛ¹³îÿ¿ýÏÿBÓñiQic0DQŠ‚ ”B“‚ MªŒ‰ï"¯ïÞ*ï{Þâ)á2é?\gä2ÏS"1©˜”õü$FQŠ×{$Z˜ Ñª÷—ýHŒªM½có™›‘šÑ0›‰0”`ª=ûˆ·£¤Q—„D¨Éë~9Pi;syˆ¢ʃOShRP¡Iµ¡ÿÂ,ì $ev°tA” <ñ÷ÿT}&šTè픇 ¨Ï[¸? ”ÿRî³ :fÇ‚ê-¢+&vßðrÃ(‡5ÛŽU· ¯=Ÿ†—ŸF9¬Úv>úÞ×V(!Bá—(Ay(‘´õ™hRÅíkécÆ6 Öiõ¤ã;§ô€ KêIGø`I‚(U›æeUÇ-ÌN*%Œ&˜<… Ê@Pžøs«ª>“‚Mª¹½Þ=–õÞõs-x âÙ£z/Ô~ƒ­…DËk«CŸEa‚We ´ ¨Ï‚ ¼”ÿRî³ 6fûÌÓi—¾íê@jC¥(¬Ä ‡B‹Â -ª:~ë: îNZ¡ÚëòtÒb¥(¬pÊI41¬ÑÄ È=¥Ñ¤ D“‚ s^Ì9ѤêÞ¯%2–Y?(gsùo1÷ÄÓ9†Q+¦mŸî»íÖêP¡ñ3Æ£[¥Ä­Rè F9LéÝ$ b‚H kþ¿~N>V mó1ú§t¥úœÒÛ…*4Ë`%Qj6ݵd¬?±-]UèîƒÊXX4FQŠÂ åPªJ41¬ÑÄþä0h›<è5ÓL ZfRPaÎù9ß›T÷™†×¶êé%,{·½_X¼Ié¶wáÐÛ»*×`ë*Q‚òPÊaë3)(Ф B°¼Ú-ê³ (/å¿”û,¨ŽÙ£[V­æÿÀ ßœ¯ÄËj¢ ÔlºŽ#ÄÖ⻟ÚÒýÆ ˜ÜULÜ`€É]£Vm»‘áÞU+”œþÃÁÄ(‡5Ó› Þc û¸zjQ¶jí£º¹ Ã7#EjØŽ0”`64,Lq&„Ô™’ç½a8￞Éx.ã8‹©ÃtÒç¶g $à°?£(Ea… “s(´(¬Ð¢ªãç]I8-úcb_,úOVbWD Ê@Õ¦µë ¸;¦…ꆅ§×Ä(‡a‘KN¤‰a‘&Vý¿?ˆÕný˜!V1ŒrX3m_ÜѺAÝx”‹Tþªoª }×›Q”¢ª]wzìÊ©I§1qV(5›Ž%±8JLßñØa”ÑޛGALé=á¿çoF½Õ—ÆFâúKý~yí4F(JQe„Ÿ~uqOç‚õÇ3¡£%¹ªsú=¼» UÆöËœ?ÌÖ4J0ÕõÓ1'ÍŠuóÅåú GINÐy&ušœ ÓäªÎù>ƒ6J üïOyl¿=Ž£ÉŒa”Ãþn˜gÛ|™vxFk^1ÊaX¤œ–©"M ‹4±æÿ®ñ6‰ $5Ü`3Qª6-ýÅ «ÿ50JÜn€=ºE)ªÙÕ'=Þz³P®Úl`””Á$Qª6­«ç Ÿ7e¤Ï|>†(JQÕ®ÝêoâÑ—;Þ¾^¤©»S!ˆ2Pg“ÚÔÂ醤±ŽS¢ Ôl:ÕCt$ÊˆŠ‰QÏáF9¬Úv\‡”]éåÀ ©s‰sßDʓіgAPžaï‰åpŸEaÿYT˜˜ÒgAmÌöÕ»ÛV0_ïf`T[]•Fˆ¢Uí:[¢Þ£dçgs5VÙ^1«fc‹x”£$'è”k6]§É :M®½†n•uÁ(”œ¦À…6ˆQ«¦]RdíŠ ’–u˜… Ê@ͦë7”B™Ô9Ý7ƒ}ŽÊukº'úD9JrÕ¾™…-G{ûf¤Ã°»a(ÁT{–nàº÷Á %ÏF|œ£$Wí»1×Ê70H ¸!Ê@ͦóôïQ ŒZ¥¸vÑ¢¥¨j×4½T01;Lù`j†1ÊaÕ¶Eí|ƒÚ´2RþJÓC ¦Ùsk²à†cu,] 6 ?>k§†QŠRTµkcWR<¯wë.€¹ßo¢ å-yåYPóø£Si%¨Ø~¼z‡®!X¸nÚ»a£$WíÓ?·ƒßô¡v—ñ‹0”`š=z;_€î®Yœ<Îïß§÷í*Œš„¾2ØøB”ªQÆAg8$nHŽîpPÄ(JQͬG£Á<¨P¹ió4Yº[(cU`ÉnŒ¢õ'E5oÜ¥uhi¨”¸K„‡G £&ˆômŽ„1A¤…UÿÏŸÍ]õ ’êCP”ÿ@ãê†(Uy˧å“i$n#›+!ŠRT(¦ªB“‚ MªŽ‹uQÚ?ÐH9käsV®ÁÃ[£$WíÛ?‹»X$yÖò!ˆ2P³é4a€Æ×7v|&=0j®Ù¡§£(E5»¦WÚëÈêÇ£_Ƽ%D¡\ éÀ iâE%Qª6Ÿ3nÎGÐÜÑ«Î8Çiémb*DQŠú“¢Š?¦»-Úqè°X¦R1±ïU£Vm»û^¡¦ô´œ™"vº‹__¦ºñ¸~\ÚxÕós0Æ(JQRTõÆÙ-{f$ÕjEO¬Q”¢Š]óØ…*wîV¨Öjóän1ŠRVˆ^˜C¢‰a&ö'‡AÛÄÍ"Õ4“‚–™T˜s~Î÷&UÇý´ùZ{,ýç¾ånµFI­iØ A” Íªœ¸ï».AŒrX9îë/¶MÊó—ú=hp6!ŠRTuÿd5_a¬9¦÷úî™™è±yæf”£$×웫°p®ULl!ÂÙvÌÓÀ(‡UÛ6³Û×ÁÊÉﮃQŽ’\gß«IázçÛüZw]î¼~FÙµ® jáÄ±ì† Ê@Ŧsœ×Hu=pΓ¬ Ä(‡ýÉaÕ'ó鯃¤Æ#Œÿ!ˆ2’Ɔ©Îb8‹©þ>ßÑÍ3Ïs~Ýn1§ñô×çóY£ì(±> c”Ñ °yDZ˜ ÒªÿG³V¥Ž“‡ X•â%¹fßÙª3kPVã¦e©õ8ŠT× 8úd)JQŠ‚ å4PShRP¡IU…óuåúœã/õ»ß76…!ŠRT˹…‹‹†‰Í2PE)JQP!r‡­Ð¤ B“‚ Q&l+4)¨Ð¤ B³:† M *4©:|WsWGÄmÜ™éÀ 6ÍÄ9Q‚òÀÒg˳ (Ï‚°÷|í¾(…ýç+Œ[ A}TÇìοդ-A•:®Ó¾ea`”¸ ã…+DQŠªvc ÚLl®à|4†Q+¶ãõ}#_´®ÔÔUV¥30HšÊÐ!ˆ2”‡&²­Ï¤ @“‚ ½5X‚ú¼ãý¥ü—rŸµ1»má@8÷¬ –A…s9°BguÝ¥I¡Äœ–&1ŠRVˆ.‡DÃMìOƒ¶É‡04ÓL ZfRPaÎù9ß›T÷S¿¹kšB‰9 ¬b¥¨jWq¼¹k¤³¾03œæÏè†(U›æùµ[áX*&v+áêÄ(‡5Ûºqè®þ % Á1†QÃ"—œHÃ"M¬úÑ?oŠçËb|uÔA-Þi¶~ø Ï< QøY–Bü,‹ªŽ_¯¦­¯,%NX¸Å(JQX!ZM k4±?9 Ú†’Û4“‚–™T˜s~Î÷&ÕûC¥p,½©ß†:ÛŽCiˆ¢UíÚ–S}_8 Ûy>àzÖ~}»1–EŽŠwólê«*o]_ I N<"e jÓ¹ñºÃ³~Ý”üa¼¨Ä0ÊaÅ´y|-|žùU1ùàœaQŽ’œ Ó½ñå&×^èoùÃV)±ééÁ¼UÏ<έÀ[ûçY¤Æ(JQP¡ØWšTèÖôyýÆŠcr1áiÞýœ VÇðÔE~o¿´@mñtDþD¨ÙtU©¡åbžÎÅŸŠUjíÜçî7Jû؃1ŒrX5m[üS¥BwªãK«F‰§ôq¸Q”¢¸]ÁÂ{ÞûÂ[5ÎG—eº›Á…’“Ø b”ðHäG‡HÃ"M¬úÿ|öÔ1a–ÏÂB©Ç#…g tHŒ¢Uíßë˜gVWN>‘çu”£$×ì»ÏøÇ²Š‰ [¸¼/e‡×‡Q«¶ÝK¡ký$]‚‹S¢ TåÍ×÷7WnÓôûŽ&oÿ=Ô;7u† Ô¶%´ Ôf0u,,]†ãnõJô°ÛÄ(‡a‘(Ð;DšibÕÿëjTíx(˜~ñä(É :QíÑir‚N“«¯a릻+\(qéÄ,DQŠªv-_wß7¤gš¼A” <1¥Rõ™hRR²Kœ`šY&„¬2!$/åõ”Ó#Þkßð•æ‰-²† Ô&-Ìš6ƒÚ ¦Dˆu\õâÆõBWèYTQ”¢¸]Á2oÏ=‘kTL^áZå(É :ÑúèÑir‚N“«¯aþè?è‹ËBµñï)-c¥¨?)ªzc½æµ/`7jµJt<· '—Ìxv9JrÕ¾í]ýºFIáºNŽkœ9Jr;)PÜŒÛT°%°nǨ·ƒaßbÝ?Gài”êÈýêT…z­‰Zß"Qj6]Ò—ÖŒÃ#â!ŠR·+X¯×UÇHwåF^_JPš+„âH±eû¼7ß<ó~û_=0Jß6áÙiŒ¢õ'E5otù¬»­P(«›7sw„0ÊaX¤\ù¨"M ‹4±êÿƒÀѵðãÄ«i´¥±ïÏÊ=ÊQ’kÖu£ËÝ”(”QŠó÷¢(EU»Î5âNëÄ!Ž;§užF9ì²mþë3?Š~g7ú‡;ÂóºQV‡á1>Âå0,Röˆ*ÒİH«þï—OW™Ü˜×ÇÄ:4ÆP‚©ö”+\®&ãÀ)!I=Ð D¨“÷Û‰;êKB™Ñ~ô(QŠRTSxýQ’Ÿ}ù¥(EÕ±uÝÕ«jL#=QÂò–Œ<Âò ¨züØñ×Q5¦[U]5WEÔ§LÌ~„âH³¥ÕÝfZ1¥~ÓÈ º—ß8J¯hä&E(JQլׯ¸&ýM¡ÏùE)ªÙµ _ZÖ^WºBÇñºB¥(A¡kû0J ª:~žNÿÞÔÀ¨µ¾d{÷,JQŠjv­-@; q>¦Lá\9«QÂÒ (GI®êÜÆÙ^V[ C¥¨ú6~ªÊ± ]ŒGù2(u&M™Õ¸\dê faìƒ%9A§ÜÿÑušœ ÓäÚkx}±È1$÷÷÷ƒÂ”k«pþù5 ÿ£(á'¹v%ƒPuúÑgÎò}ºÓD_Ä¥'ò<&Æ(JQÍ®ýÕε3J½ïÓ+™GŒ¢Uíš?žm 7 e´XÔˆQ”¢¸]Ášwš__p±'Ê´^™€¯)20ÊØveÙJŒ¢õ'EUolw¡èÜò87IìL†1ÊarXõÉþŠô®ivcV†ÉçY £ÖÙ–Xf+¥G«7µ;V—‘­!ŠRTóF÷µj³%50Jlu¦YŒ¢…¢IíhbX£‰ýÉaÐ6ñû ªi&-3)¨0çüœïýÏ*=\ó™RTcÇ}­a{7´@mØ™wÖ ÷w# %¨ítmæ]Ø öt¿^c0”`às {às >Çð9Óéá;·ÃÓÂÂY ž9Jr;ëcK¾ýôQF‘íøÇ(JQÕ®sžýÎQ3ñj+6FQŠj ×Å‘ÎL,¬‡(JQÅóó4ùó­á Å`5/«'ùœ˜3nÊÐÈÞqŒ¢ÕìâÛ³cûMi'Ãaü×ýõ¹*»aS©.Ú ›E)ªÚu\_jóµ¯FéI?o°Å(JQX¡˜wêM k4±?9 Ú&ŽzÕ4“‚–™T˜s~Î÷&ÕÆý.ýB¡6[ÎÑß;žÑöbM—DèO*ŽX>3þ¸š4êUh©iMŒ¢ÕìzôåûíËô®;=#£rV²ÌG”£$×Ù·Ä»k•Ò¤é¹ø-s„¢UíšûsÐÞÍßeYµó¡°T.Œpr––†Lµçþ p_a30ʈ¬ôŠQ”¢š]“åjÐõ•Ühýºl¯-Q×ÌÚÆço xº~…’ÀV\£†E¢6‡HÃ"M¬ó?KIàf¤3轈ãÆxe ü$C~’U«vŒ_`xÛÐ5ojªÑÐ5þB¥¨Î.–ð:ÒÍL<Æ«Ìqª¥áoD;Xã0FQŠ‚ ŬKUhRP¡IÕwuFÚ<£Œ’—µ¡b¥(¬P®ºT‰&†5šØŸm“Í4“‚–™T˜s~Î÷gùã %˜2¿ÖqÕãllÊóÓÓ¦E) +”Ý®J41¬ÑÄþä0h›<æ5ÓL ZfRPaÎù9ß›T÷÷ÌP³w_Iž'%ª˜|Þ&EQŽ’œ Ó}G9Ê :M®½~ÜNÆ #Šr@F«¢©;[ÊâNªÖå}&Íù1Jx–óTDŒªÞ¸ùÊ×z5éÍGÖ‰Q”¢š]ÓêŒ#¹»'Wü°iyAFÐá›1ŠRT(vT…&šTuüqõ—|ëX¥ÎwWÔÓ•úæ^¿p`w¥ÖÓ“(r×_PËù\ž@”šM<'u-D7%îáe(DQŠâv_ëëÑ”ÿ:œcÝâ?×f¯ Û§ûagÏ+Âk¶qýÛJ£Zàôl|Å(JQPá™RhRP¡IaÊK±êDÃ^41(rOi4)(ѤªÂù7´¿ÎÙM 9&ÏP©3k6o5À`[9yó†Û(GI®³oŠ§ð•’¶^q”ZîŸ ŠåA3^_£%9A§ûÖs”tžw}ÃÚ÷ò(EÕW¾veÛÇÛAßú¤ eô°Ø‹Q”¢°B”W:$šÖhbr´M¼Æ¥šfRÐ2“‚ sÎÏùÞïÃ}gK £®ÅfeKZˆ¢õ'EÕù|tº{_¦PVàgíú F9 ‹”k`U¤‰a‘&Öü¿°‰çüØþ¹V _•90J¯áøê£(Eq»‚m‹ýÓ b¹'0¾Ü±:œ8¾Ü (E5»ºvŒ<9'n×}HȘ.7,„QÃ"å7­Š41,ÒĪHßg íÙ$b”Ãê ™ºA"~nÚM’»?DQŠjvúSxb_î0Ìõ+g”[¯èä(ÉUûÖÉø´Žu³Ü£]£$'èt_–r‚N÷…ù}å==O¡P¿õwb¥¨?)ªóÆäípŒiO²»¯û6zŠ#ÕšýsúwºFµµÚ³£(EA…r?TShRP¡IaN9'šö¢‰A‘rÆ®i4)(Ѥھ¾…MÉ fÅlž9Jr‚N÷­à('ètß ÞûÒνÿP¨×dµµ£(E5»ÞC×êW8y›¯AŽ’\gß+5s¬g…’6³ñŠvîú8^ÔBT±«ü4ª±j°ñøüAÕÕ; ƒå0,rɉ41,ÒĪÿÇIÿḧ e4RX>£(Eq»‚¯cz”òLÏonâœcðÏËuÇ|…~_å:0Êp#[žb¥(n—³R±eÄ_ïQÓ‘cé yÔÅ‚ ÷BÉI Üb”ðHäG‡HÃ"M¬ú½>‚­Å+gµ(xì r”äš}ýº&çñ|͸1p+W_4‚%¹fÞUÂz9 ŒYkܲ_DJ0ÕžûH¨og``”Þ˜àݹE)êOŠjÞè‚#êÞâ¸sS⺄ÃNˆ¢UíÚ¯õ6šÈ¬‹U®Iä(É :Ý'Ù¢œ ÓäÚk¸okìÊY±˜'1AŽ’\µï¼sOg}àœQ¾J£$Wì;Çþ(¬;/©˜üÚa„ˆr”äâ÷ &'è4¹úæÇ®’y2«q}tWŠgŸg»»§…2JÖ˜ŒQ”¢ª]ë»oá)ù¾¹×ì±K¾së¼èî’ÊZ¸¸cå0,RWªHÃ"M¬ú¿òy_7a`”‘F±š#FQŠú“¢š7Ö×!TO¦Q¹w7RÍ4¢%¹f¿€áZv~ÃþC¥(nW°è>ѽñXq\ŸH5O€ìÏ&r”£$Wm;Ç=üïþÞó-ç~GÖǾrå°?9¬ùäJ{}Ý»QFb©yŒ¢õ'E]ÞXþú|æ)Ò8g%×E#ÎQ’köm³·[20æu1XìäÄJ0Õž±O°äÆÛÉLº1³v2³‚%¹fÞiõMÁšÖqÆgŸ«Zœ£$Wí›6_¿ubÓ­pÖðŸØt r”äª}ó(|Až³5><ƒ%9A§ó@Oœtš\} ËcûÁyÄî›Û\»÷Ï’û{t¼œ§5¾¹säyžÇºñÓí¿qs`LËì˜a(ÁT{¦õÕP³Ë”Ž{—èJ™ç(ÉUûæiÌ̶ÊY~a³-ÊQ’k:—Õe}ºç(ɵ÷pwƬEùõþN½©—äB‰ù(\c¥¨?)ªÚµ\ß«4½²·ä(ÉUÛu·a瑨¼ëí‡:CùÖT†(JQu\möŒsƒeùùmØ×íd`Œ¢U-›¯¯ÝøÆåÀ(±‰ gNŒ¢"oØ M *4)ìCT§:œhbØ‹&Eæ4æ$šTÀÛ¼FÚ…çŒÞØþ\£‚å°?9¬úd¿Ò_(uJ¡«E)ªÚu¼¯§yÒÏÊYi9K“£%¹j_©ö‚=¡éÜ^Ëš'M˜?Ý'¸Rl`Ì++eb„¡µ½àÚÚ j3ì7gÏ4aÏ9«ÿôþ<­Î` 8ƒ©ÃtzTÇîϼ|¬,f—ó¦þDÔ¸|¦x pCâŽ\\Ce jÓxÿBŒ³Š8g¬Z¬Øb”Ãþä°êþÁx×{¾·áÄ–/~Ñ!ŠRTˆÚŒ¶B“‚ Mª9~õµtX‘_9ã=³^D£ö'‡UŸ,m0ºSúú}Òì~Óˆ2P³im¡ÊÌ F‰óæ®1ŠRVˆÞ–C¢‰a&E¢.´­Ñ¤ D“‚ s^Ì9Ѥê^§%±Ö–k&Î’¡úc5~â7Ã9§g¿.FQŠ‚ ÅN¤ªÐ¤ B“ª¾ïó=g:_˜×[VòåC ¦Ú³s¯ ÷F¹öÄ+C £VM;ÔïêÐÝ ¿«DË[2ò Ë3 êñsâw]£©`òŽ&NAŽ’œ ÓÝ)Žr‚N“+¯aýlS<²}Sg4z¬ãŠ+tuÕ+?ò:ÊЯ¿!òŽÊØQ”¢ªYËv†gt…ÞcQ3+DQŠ:[e1JPhPÕñkvÜUbÁ|5ÇÀ¨×—¢Ô£(EU»ÎéÈ„·ÊÉsl[£$WtnŸ»³½¹Ÿ¡ño?‘èûíÔíUf£öwÅú`à\?·© ÜP-Ïñ$Í1ŠRVˆÚ1‰&†5šØŸmOت¦™´Ì¤ Âœós¾7©:îç.pwI %g›°¾b”ðH´69DšibÍÿƯ‹ÁÄý¾ƒÄ(JQÕ®µWîÆV¡Ä¼¿±E)ª*Ü®ðú¢®iþ…~17ˆ2”·eäY”gAUÞ~oõu»±ôÛ??×g“?FQŠªãöèã¡àÞ˜Ò(ÁC7ÈQ’«æ×©nß2V¨ý“‰¿…’saè’ F9 ‹tŸý bX¤ûôß>^麯õž¡ZI£(EU»–÷=—eËû˶ GI®ÚWªcgû´Ú·í Ÿwl½&éöÌCe (Te¶< ‚ò,¨z}Ë$b{wÆÊ ìü®+vD Ê@Mk €8v¼c©Rå1Êa‚È3'Ò‘V_Ànü2Ìî+õ7Jv£(EU»ŽGŸË}’j?¯{yÆÝ³ÎÙ`(ÁT›Îoái±æø¼?Cí •“W>;¢%¹Î>馕2<ޱË2Ý­ªBui¦§[Ä(‡a‘KN¤‰a‘&Öü¿ãohµY^—QµÒ1Qª6/þ:FâÜDwcÑür/~Ç!ŠRTU¸oýMÛõíÄÏ/ö{,òÓ$Æ0Êa‚HS="-Liau„}ºè‡ùmD"áê² ’Æ.h!Ê@PHÉmyåYöžoï,Jaÿùš¼Œå‰-Ђ > jc¶ ¾eƒZ[Ä—"e f“x²B)~¾9pÞÚÏfó£‰8¢9JrÕ¾uÔW˜Sú°ÇCä¦P/E$1ŒrX3mÓÏNâa²õ?œë^Ì Ϋh‰a”Ñ {DZ˜ Òšÿ»_©0Êå1Ú÷¾y)a(ÁT{öO÷Q;£Ÿ=0赘‹ÝöC j{±µ Ôf0PÛûέÍ` 6ƒÚŒm¨Í` 6ƒiƒô}IÙµæì§¸¡®-:Ljݧæ2‡x%Z+Ïû“æ¾à˜hlD1ÊaŶiìV|o§ª@R"U!ˆ2”‡ò[ŸIA&‚Ák ´ ¨Ï‚ ¼”ÿRî³ :f§>½òv" å*½O (ÉN¢ Tmš?§w ©ÌÒÅ@o{¯@Ò<„í½DÊC³ÐÖgRP IA…¾[Aêó»cPÊ)÷YP³ý߯ï7¶^ŸO Ö8wÎð´a”êm÷WÍË“]kÝÒ—†Þ¦d¤y {j!ˆ2P³é1»¬â®bý gº[˜÷“”$QÂòœÛÑ!Ë3 æñn¹òî0HÚí€ËU¢ ÔlZÂKÜR¶}ÄŒOù©O8½Í eéœîÞ×+”,û=†Qk¦Í8TƒÙ Io³D¨Ùôèô{ -˪ŽCü¬u1NNÁê bâ² «ƒ F9¬Ú¶mÍùFç~`ŒÐŸ» † ÔöŽ·¶6ƒÚ ûÍØÂÁŽ3 ì9çfÑz¯¤¶:ƒâ ¦Ó]8¦ª-£ã©-‡'òª©´´ÀPi¶Ì UcøMÉëŽâ1ŒrX5íÜxͲ–Ë)¡Ä¯Rï ©¼âE)ªÚuåI®Üjx2R'f †LÕ6M­ð0è>O=_õ×ô\ƒå0(úvˆ´1(ÒÆþnX«ùü­å‚µEÔÕZb”ðH´SäQisX¦ÍýIrо=gžAël ŠL¾ƒä+°±6 v|¼QIÖ;éwƒ¤hWÎD¨Ú´¾/ü8êŸo¬-¶Þf¤fl`† Ê@PÊl}&šTè=‚ >ïñ”ò_Ê}TÇìyõsœá¬aWÃ8´±žÛ뾟£Ô¯˜8a©Ä(‡Û¶ñ¼RïyŒƒ­Ià:7å(ÉýIrcf÷¤©Ð} ÕSÅ Œy I¥øˆ0”`š=sç<óxEúõØÙ)Œ°…  †LµçnTûª¶S墳ÚE)ªÙõèazlK÷z-¸íѬyO ü~#e ,ïÝKrÈ3 ,Ï€ªÇ·u WÙ’Ö:ØA”šM×÷„Cñ˜ð•^½”/Øë”¼^Ê1ÊaÕ¶óѼrn n'ÿ²Š£Œ)ô¾`‚(5›úøâlTHÿ„×Q”¢ŠÂýsÍ’£®Š,¯qñë±J b”Ãþ®Ø>‡£g…¤¾+ô}Œ¢%(tîÅ(A¡AUÇ]Aão’¬{_®M”£$‡u.I6‡uÚ\{ ‹žðµlï‹o‹¢@Ò¶3¬°Ce jÓÜ HW³`­¯æ{Ï1ŒrXµíî®9w¥ªm÷¯Åü5OŸ>¤.,€‡(JQ7ª%Hþm„}½Ú"ÎÅb`˜¸û ¬h1ŒrXy}5uu7û/zŸßÄjëD†0ÊaíìÆç/`%¶¯]Üñ6 $u¾q܉@”ªMÛõ‹±`µõi‹³ªÚû«Ñµ¬p] â rQ²  Mm—T¤Ú`{ÝXvwÑ %Gr<œcå°jÚE9 ÂáIMR$ÁEkŒ¢Õì ,QÃ:ù£ô54Qj6í¯©æ¨/ %uq}¢(E»ŽÏ¸Æ;„ÇtÕïÎål`Ø«C¨¯¹AŒryæDÚicØ“(xx\isØ—6u&e&UÚXÍw—<²r,3;'àZx Öúr®e7ˆQã¶E‹äãNÑ\yÝÀ ©S ×éD¨É»Zzã{à_Ô½M¸=·k‚å°êøc~:÷ Çvk†o@FAÊ‚ÍFu‡ö_ÎñúòP›ùì.XúËɳ¿â.yc¥(¨5nm j´±?9 Ù†F¿mšM!Ël )Ì9?çû€çõô4{v&1†Q«“s¾"®$wà””äÂ4Ÿ®tEÍÔwl˜ØNAÇ0F9 ŠDïÍ!ÒÆ HÞ´;¿Ø•6‡}éí43nÏÉ´1¨ÒƺѼzÃZiè¨{Ãå°?9¬ºd¼. ’jeЇù¤ŸEû0A¨Ù´Opt(]û_jV£ ã {ŸvÒâxœ£$‡u.I6‡uÚ\} åëŽÞ¦ÏÀÁ®˜òÍÓ(HY°ÙØ 5oƒ¼aïž©þcå°jÛ²·#Dãn¸†¶E°~Ò\)g÷†3£ eÁjâþhØzwÃAáΖ¾H× ˜Â½w= —FAÊ‚‚TïÆ]¤Ú`}ç ZDÛ_ãØU2Þ¶oÃäÓ,¨õç(ÉahÓÉ£Óæ°N›«¯až^µ¹¶G3pî]vÉIaŒrX3®cÞÖqÃÚ²â{u1ŒrX³­Ë ÌF½#§Òz c”ðÈ%'ÒİH«þ_ú5ÈŸ<Ι³ {AêjÄ(‡UÛÖErôëf-;{ß1Œr©U¥Ía™6÷'ÉAû”΢fžAël ŠL¾ƒä+°±6 ºÈ<¹ƒÞM½â‚óB¥¨jWŸ¬ûÛƒ«-Üv b”êmÇu =œæN>ª"$ Q²  Õ{5/ R½×ó~À>·ñO¡ƒûaÚ$ r”äšyǘ* +ø>.`¤Q²`“zâ#µSO®3BQŠªoáì™K¦`rïAˆgAŽ’Ö‰òSN›Ã:m®½†C°OŸëCص¹ä(É :×é✠Óy¥nûkú,cªQÍ¥(EUÃæE¸Ò¨´–§¥a“;6Niôâà) 6¯ÂÙ&n£âT'ˆQã¶E{vÓúÙø$PÏÓ lCÓqò'ÎQ’û“äšc®Û?¾D``”ÔIéJŒ¢‚îPhRP¡Ia‚ŒÝãDÃ^41(2§1'1 ðúHàÆûnÝFÊ﯈·ƒ½Aˆ2P›_¾£¦@…z5Õ(FQŠâv[ÀÓ¶ímcùÝäŸjÖ—ß(HYPê?‚©þ>Ó´;WÅqb«[¤,XαYœ„´¦€òÉ!±‰‚”«çg†œ- ‡®Dhñâþ——£$Wì›?WgĹE20ìç« œ F9¬Ú6õÍ_ËÏ󱦺EÑý) V—®põoÌl0³­‹(GIëTjU§Ía6×^ýý*”ÂûÛf¡Q8“« ›q&) 6»‹²*!tݘÕ*â‘+†Q«¶í½ï]œíç× R½Wã¿ÁiîOiËã2wóÀÝ_-”¸) ÎF9 ‹M*HÃ"M¬¹ÛkÇÂV©D¨ w±ï[§ (o +U¤,Øl‹p}á‘+bµñ²,÷)'GI®Ú·vSÜÝY/”Ôº&Oˆ¢ÕìZð­$ƒ:¤UËMêá àúf¾ %¤í}™ÞÖf1H›Å m{B›Å mƒ´M mƒ´YLÕ¶¿úë€W¦.DQŠú»QÖÍ7!JïÛJó%p7f•Y<}‹a”ømў޲什¤ß{’ƒÖw°}C_ˆ2Pµéxlƒ¸Ïc-GŸÈú—¹“—a¡ r”äªÎ󺞯¿ê½µD¨zÿ\„ ¦†U_š{^‚÷ƒ%9A§ûDI”tš\y ëçxåÀ®fÙ:NŽâ`¯D¨Ú5ZÛd¸‡[8Ù¸…å(É5ûö‘K×òVA³>c \¤,Øl¼~qÑ•lU¨l¬Ê»V‚Gûnˆ{Ã¥Pï³¹ÚvFŒ¢U·týø‘v±4ˆQû»a+l'ê;åÇ_eŒî‘ò£-¯¥Gi1Œr¹äDšibÕÿëý½Žîm«Çs¶âØu(ÊQ’û“äšc{ˆö«ÜýQÒ>Î5b¥(nW°Ù¹nók€¡pÂNS1ÊaÕ¶­‹Bæ6óÀ¨×›Öçwˆ¢Õìºú£¾õ¦RÇ6g2æÊ‰MUa9JrEçö¹~=Ê$Óçùâ‚å°¿+v·¶c‹NÅÀÑmTF9Jr‚N÷Qœ('è4¹öÞ xWïjûÜ=ggç¾:æ7ER>qÝ0›~[(íãgAŒr‰Ê‡Hƒ"m¬¾¾øðv¡ 6äVï6}¤] ¹×‚ªM“§Q3?»Ò{rìTL¢ ÔlêÎßZ-ÃA3n•ãŽf¢ Tmš×Ä•mÞÛ£üg+ f½aí€ F9ìOk.é&±w›«@¨3©ÌâE) +\R - +´¨ªp™~“«£FOø¾¦‰ ªF9¬ŽŽõJ÷]çéñ†¿A”šM݈—²Å×Ûº!Pt*Ã)Qª6m|­ó­àÛ—/ú³úÄÙÝ)˜¯Àõ¾à¢&±!ŠRT³kI¾U¥€fæËו(HY°J=F¶'ʰk¦M<ʼna”Ãþä°úþŽ»¯çÝ_hN¹›öFݹ°±Ã(‡Uëîß-rÆýabÙ",N1ŒrX³íÚ(zL)ØùR£J£$×ì;…¶¸ºR 5—”µ*†QDzJ1A¤…ÿýåk㌒*Ü¢‹Q”¢š]Qû4t3í”¶™û»>WE)ª*üm„ðʧí å_9Œr)¯7ªHƒ"m¬’ñúرëÄÊÀ = keÛŸ± ˆÑ¿ø´»™ä²Œ2Puü´WÁ…¸S8±*Dž GI®ÙwLîvÏÀ ¶ÇèèF… Ê@Õ¦yr”É;³é†ôÑÁŽ… Ê@Õ¦åþ–»ï,êÀ1ÁOê+EQŠª†•}Ö_ÊZp_¯ÅÖª/öÆbå°?9¬ÙvŽ`ÇvŽ#±Í‡C ¦ÙslžœŠ½«Šéy{U1ŠRT5lØY¥‚(5›._¸iƒÀ†¦\“† Ê@Õ¦©»|ï»Ó±Øîc;j ‘cÇ#Q‚òÞêyåYöž8£T÷YöŸEA…ï¦C A}ÔÆìµýîlØ CP™Á1ŒrXµmÙ‰çhA¡À"¨¯E)ªÙ5²÷J-]bì?pÞ¿Þè<6pLÏdØ™¹E)ª*Üîµ_7l™ÄF9¬zï:þ]…‚u'Ê\í(GIë\’:më´¹¦s„Óô9uæéYÆ(JQH¡<¹5…6…ÚTÊ›§‡ÉŽJHZð)ƒDʓΪò,ʳ (OÚ1RåY”gAPžØt×äY”gAmÄ>vܼÇIO©²Ö;P{M½Ä(‡u¶9ªlÖ*^±VÃyLž-´r~oà˜ž °S1ŠRT3lžÜŠAº wîÂëØ”ëàÉÀ µÇS ¯ D¨Ùtm[ºŠœfÓééüÍ3!ŒrXµììR=ÔïR“›ª}T £õi×·½\€2P÷¤Ý=Q(]ïkÿëó¹¢Zlóñ››¯ßát­” :v;Ô<Ï4JOi5z¢ å‰)&Ï‚ < ‚òĥɳ (Ï‚ <1¥ÑäY”gAmÄ^Q0rã›ZÆ)^Hv\w8Ê™ eAA*º•ã’jƒ‚T¬ocŸ“Ú±M\)ù¢mâ0F9 ŠD‡Hƒ"m¬ú»&]ú' 7¥ÇⓆDÊc±&Ï‚ < ‚òÄX¬É³ (Ï‚ <1kò,ʳ :b÷É‘I=Î 4HFèÜ@¢ å‰Sš< ‚ò,{O,(U÷YöŸEA…bͦ ´ ¨Ï‚Ú˜ŸãÜ·€ì­§ !aýQ”¢:»V³ü/‡©EùóŒc¢ Tm:&éTß4X™Q7Z.€úJQ”¢šÂåÊ–wdúÅÎË¿{Xg'1„QkÎïz/¾ú ŸžAûßAˆ2P³IÍ ŸfcÍ#‡Gã!Sʳ6—§9Õ.®œÜíǤ,(Hõ~q6 R½_ýÕì 73ÇiÇ}üæ)‡Á§Ùã >-2<ö¥ o ;Þ§£_ÏÒ Øqñ•{í˜aÃŒ³MÏs†aŒrX³mÒŠsÜüïö7ž‡e¤žåyaù…ÚßI¾©_ð}• B”ªMËõ¦Â»¡ìîøÚQþOxâá~Ù”ªSV×ïÌ<2Æ0Êaõ•¯Ý0ö—m”ª ã8DQŠÂ ß©ªG¡Ea…Õß×#bO…'Ókÿ½ñý„|?†Q«¦mËjGnÞŽ¹¿¯å*Ýt¨ŠÕL…êœlj1Œr˜ Òwi/Œ "-¬ú¸»Ìçæ µºgjF Ê@MZö&@ÇÙÜ&¶é…?†Qã¶EϽŒÇb{h…mY@}¥(JQÍ®ÝqæyQ­QêBû¼I„(AybWW“gAPžAyâê É³ (Ï‚ <±·«É³ (ςꈕÎ`kwYöHÚ]–0F9 ŠÉ‚°MÖœÂFY|–5á£,¨=iÒ^?G:e ø$kúÂ'Y¶ÉšóØ(‹‚ϲ"|”7¼LŸõúâ€ï¨ÝÀ1ОØW£E‚"ȡѤ D“ªÞ'ǵ¹çâFéeÐþŒî!ˆ2”'–Aš< ‚ò,ÊË MžAyå‰e&Ï‚ < j#vSû’¸1V)©Sˆ[cAŒr˜ Ò÷µŒ0&ˆ´°æÿCKgp:X ã¥ܰE) +wT……ZTuüt]Ÿw¨ ¼Ÿ‡{¡a²`g#>2ô8fôyV5RwùŒD¨Ù¤A~žá¤W5l{3Qj6õ›CÖqµJõǼ·· ¤Ÿø`w£Be fÓq ucoxdï·`jÞõü´Z”¢ÕÖ^–¸ÿÄ£è é»B<ˆF Ê@ͦD«@:Ÿ Ÿ*˜Ñ~ubå°fÛd†3~ôâfÔ¾?Ð3-ê%!Þ±Žó¢(Ea…â:®*´(¬Ð¢šãwÇ¡}¶y2­“ÿSú»AŽÖ_nÈ8˜ÀW„E) +WGU¡Ea…Õg ±ƒëò:ûÊa”êmž¯¢•oK OH_!g6O %˜fPwÈ-À ÖzÜ®C|AŒrØŸÖ¹÷„õí­ió4(7>ž&Ç 8¶Ó2m³çôðòaË £EÊ» @äÀ(‡5÷w¹ƒ˜‡ò•yë.ÍŠÙ!_˜#e Î¦%^sõGÿÄêiáãð‚ôš†] A”šMÝÉD±úá/÷‚Tïè+Qj6ù®­|2^˜Ug¬|2†0Êamkf¤`(ÝÜW’£$'è<“:MNÐirõ5ìêý ¡q¾k}!OÜ7µÏ#´ˆoJ‰¼ù}C-Ëñ´¾#e f“ïv»ºW0kž±û…AŒrX³-Ó0ßõ Bèõ„(JQX¡ur+´(¬Ð¢ªãnIë_¾¤ßQ“ò5=DQŠÂ ÅšTUhQX¡E5Çwy‡¸­ÌóŽÒçÉ+ñQ”¢°B)\ë - +´¨æøîw£ìK¦ìÀv°0Ã(‡UÛîs†î{s_0P«GAÊ‚MêÕþÝ¥FóõÃ_Ë/¶uBCå°ò"æOßV<±®]¡¬Y¬mÄ(‡5Ó®Ê1Ö¨®”±€²‚8ˆQDZ;¥‚H DZXçÇ'ÔþÒºÕF<çòáî¸ 5‰æ¡<Qêl²·txFÆúrÅ¡6‚qqÄ(‡UÛFuIˆ97d´áyÈ Q”¢°BkÓ+´(¬Ð¢ªãï]]סŒAêv?3‚(U›æëƒV¡Ïíè•[!è+Qj6¯ˆëjöÏs_%‰Ëù½qÆ»p„0ÊaÍ4ßXnžçÇænZ&†'£wJXa(ÁT{–y}B®Ópk.w… b”Ãþä°æ’Åó3>S e¬ |¦Ä0Êa‚HkÿCia‚H kþßÇH^™^¡ô¬è•ëÅ0Êa‚Hk¯Fia‚H kþ÷}TŠõ?çþ”Œø¬…;d×*|´&Qª6­Âtë–y½r_ýôÄ21³B¥¨fØ9föv*‡ÒzÀ}%9JrÕ¾þhÃ)¾8~½¸`¯A¢_/b”Úmžko<­½!½äæÉfhC|Òþz’c‹lçOê;2Þƒy…r¤§I¼?(u6mnÝÀ°ïÅë-Å F9 ŠD³Ò!ÒÆ HÞDk+mûÒæ Î¤Ì¤Jk£yÇEM nÈHyV¢(Ea…ⶪТ°B‹jŽ?'O“—ª3Úv¼Zaô/>m÷¬0¼Ûº'­îµŒ2Ðß Â Ëã%³K¦ÒsÚýå=?D¨Ù¤¶‘ûüjûZ”wㄦD¤,Ølô0YYvzc¯&¨~¸-ˆQ«¶‡:ŒÌûÆÞqØH½ƒ%9¬sIê´9¬ÓæÚkð|…ƒ 7dt¾TJœç¼¶8ºÚBÈk‹2ª”(Gä£ÛÐû< Žâ_œå31€úJQ”¢ BpXҡФ B“Â>œrN41ìEƒ"AÿġѤ D“j¸;f °Ðá¹)é•9(äDæoBõ”ù¬¯E)ªs=®–Ô¢â†ô¼¦ˆ@ô/>IúJ‹î¿Ÿe'ø0ƒOsQ3*Ö†v¥cǦ fepìØt£VEž×â,ì‚ß×™f&1Q‚ò¶Œ< ‚ò¢OòelüQ> ?ËÊóð³,ª{ÖêPÈ+ï…Ÿe¥‡øYî¤òTïj eþ©ßŸêüE) +{TªB‹Â -ª9ÞØ06 ft¨øvA £Öl;fÏòÀw)oÌ Ø9!ŒrX³íT=rO³‘%ç7Õ5fê+EQŠ*v-ŸYïÏ>»cÇ °“„AŒrX³­?@ã½M²|6u¡À‡ å:v;0Hݘã‡0Be jÓ(´ªõ–Ï2zúά ³Ü_ 5«—±[ÅÄò†­Òß["Be f“ã$ö›Y»IŒcâð2]ãW*ªj `F çŸb”Ã:Û®€¨ŸH™ÙJ[1Ðo{S_)ŠRT3l;̹ÌOÝHÈêŸÐW¢ ÔlÚ»«ÉÞíÏJéÉï 1Êa‚HëDš Ò‘Öüðw$ºÀj™¥‡ë»…Ó·/ eÁf¢ë‹Ûl/¢P–?ù*8÷›âÃö×ÃfÏÃ^Øb_KXØÜD¨ùb9<™éò²êµo«`_9ŒrX³m[=¡„ç‹Óë²WÆÃè_|Úâ¬?ĺ§­±O9¬¾·åu'سö.¯ë¹žÅ7DQŠêìR{ÈxcgYßfòEc9gíax³eY¯ßÀÑcÛæ A”ªQÒõ‹ìÕ‡Ó?,Ä(‡A‘ò!fU¤A‘6†=©tŸTWÚö¥ÍA{N¦A•6Öf¡1oäu…{¯kF^) Rí³ù‚T¤Ú`÷6[ú€Ä¿ì[ ×\wCR<ן$%­*%%wü³ßgc…'ã…22I³n8tÕRVHÆ ehÔ1ënDÓ¨î» ³Uši~Ê:QZÞWRÂQY¶I;èýV”à“¬¹ŸdAØ&k‚a£, >Ëš–ðQÔ=É5âyħY“Yxš…uO;³™r˜ð4+O³°ö´Y¾²§4Ãc˜ð4+~Oó‡þwÜßKíÝYˆÛ-|<¡¯ DÊ“<¡Ê³ (Ï‚ MžAy剑O“gAPžAybäÓäY”gA<|`“m@óFA £En9‘6EÚX›û‹ ûpÛ®o<ëYž§F Ê@ͪLJð¤IùÚ8]g/î ¼»Ž©"qý|ä‹Üu¯ÚOÜW’£ÿ“žçt&œƒO³_|ZäÝ‹g׉¥3¶‚X"Ä(‡UÛFéT¶Þ]Gשg–X®ã¤&a¸Y¶ŽŽ“}¬ëu3zŠÈJÝC †Ù;·¼Ž×¾ž‰žÜ ¤ç‡'wC¢ Ôlr}‰žW3öÅnW£Vm›„–œ¾ñóᮼg{‚²Ó³;Á¿Øa(Á mRWLÓf1H›Å@¿‰µæ8 ‚ž³ $O>š:‹Aâ,¦ ÓCÛ¸ý³Î×õ%ÁƒµËï”hßrb”êe³ðÓŸzZ]0ãÌ?ÆÄ(‡u¶é'¬„¥§`F>ŸF9¬Ù¶Â pé¦ÄSùOê+EQŠªvݧ«„¦äý¢g6oHh>¡¯ D¨Ù4ëYø<Î, LOì+‡Qk¶½(×õuÑ/UßéÂÊ]"^=ÔWŠ¢Õìz|•X†/U¯ýÉ6“%i*ÞE)ªÚµ~¤{ï®YƒÄZýdNß3M?™) v6º6lÙþKÅŒXÂË×ÕØBÅgD*f<—½«q3P¨|W㮞P_®m)D'…¥píº«‰}å0ÊaP$jq8DÚicÍÿ[[ÅN‡¿ë­­óRÒS ¯ D¨ÙtÖÏX G>ðŸ,Û¹¼q¶ù¦Û! bÝÓæÀ¤¦Ö=m LjÊaõlýçSÜiÅ&_!ÓòŠF9 ‹\r"M ‹4±êÿÝuƒ'‘ûâZÔØ}Š“”Ý× b”ÚmmuBõµø»¢Í!î‡(JQÍ®móLP÷ ¦—»¯ÈÃ(‡5‘»½•·ò^T¢ T]|N¥½[Xk$¦å<#™®¶@tó©rò.¬“DAÊ‚‚Tû@Œ Õ©6ØÞÆãûMâõÒϳ·³MÇ•w B4¬üHæÀ1¡÷¤¾R¥¨Î0múà£u¦ÏjO:g<ô%¤`h3ÛÏ™g\ªóg©ÎGJ0Ýs&·)µ'­Gă”ä„癞žgru`ÍÝoˆàì(xômé…{2Qªò–ÉoV9bå°¿ÖnX§ñ Q  A”¸MVÂS¥“y!W rÜ6/‡uÊ·vt6‡uÚ\÷øÔ¬î†Ð 㥤«E¯dpÁÂP¦1‡f”°ÖÞd”‡’® ½–èþ´ ˜ ÌìQ7¤¯I3 Tˆ2Pg“ë¢ ;ÊX°WlÓ/å1úWŸ&fTJ²à“¬9ŸdAÝ“&ÿx§…ŸeÍü,ÿÜZF;=çß4/”2NnV¢ å‰C“gAPžAyâégMžAyåII—*Ï‚ < êF¬}8¦|ûy`ÐÿB_ˆ2P³éZ}W2Fǘxµ¢(Euv¹6ÙØný¶£gqä{7f-W¼ÏÃ(‡5Ûî êÈ“Z³t»Â»^N²³óÒ‹ãC‰êÞçÍÓz ‹F9¬Yvâ”ËØþìO„J{8ür|T×óÛñ!ˆ2P³©ßbò_*Ü+€Û=7öZ!ÍžF9¬ÙvŠÑ¦Ÿ/|jž]œ—<EoH_ˆøl‰@”:›1à í“@ò40 $OZÊuJ<6º™7gþ4Ы) v&ØDµ7ySÆ!¸WÐ?»2wŽÃKËóª=|/RTyVÉ|†QŠú»Q£Põé÷™+øö£~Ÿ9 RìlœÕÊö>œÀ®¥TL)O¬{ÚêyÚþzšž{?±×Ó l~a®+R¬”«˜Q³kÿty…42y^Q ½Ë‹E) +”š¸ºB‹Â -ª9þñ-0ñDÇÂß×õÙ;}‡Uû(þÔ•1=ËWïôÈõšgå³wÆ'Lÿ8ÿæ`Áäã?x5r”ä°Nû<ÖisX§Íu¯Á1ãøš_)tìÂY'á:Âé4­@¬”¤Ñ…YǺ÷æŠÿì"dëž¶)ÊaÝÓ<©ï±ö¶Ü&Öööq;í _êoHœ€(U›&ß]y^7ã^H[c˜ð4kJ O³°îi[`NSžf…áiÖ^÷¢‹I<ÿ¦÷G*(׸C) 6wyd‚6ÉÀ9”[+í•}þx–Ö_©”1ÆX‡%ˆQDZÇg‘&ˆ´°æÿnÃO‰{¬iºß_IÔ“e¾nÌ«TË>VD¶¼ÏÛZ”äšÌ͵ãúaÖ-âïK¥Àâûñ&^ ,Æï" ¥Àb¤…B¢°,øì$'–™ßØ«ÆØW£EÊïMicP¤aO*»Þª+mûÒæ N¹„SeÚTicUäzý&áÎGóÔ-ëÂãD¨N¶µoI½áWg榌ÞÀ«5Ã(‡qÓÎêׇežIbSŽÛs˜ý4þœá§­ORŠ‚ÏŠXÂþä0$Ò~×H£Mµá¿·¼é]›^ъ߆/Ð뼂¾2e f“ïk+·êpzX¹]!ŒrXµÍyÔŒïݘ•-ñnB £Öl[ÔBÂ*S(½uñZebå0A¤uªCia‚H kþ÷}Œ`çc묑¼ó±Â(‡u¶uHŠÇx7ø†ÀƱÒ7Š@”ªMû¸zb;v²³±AŒrX³M8clhìúÍa‹aï·¼÷%öûÛ‘jËáU”ï¾ï6ñµéÆÌ 3¾89JrX§òÞT6‡uÚ\{ ÝÑ<%Ô½¦Î…YÁç5uBå°jÛ!¬¾ØÏYÜÐk\"è+Q‚òÄõL“gAPžaï‰õ±ê>‹Âþ³(¨PÌZ4õYP³¾¯.ñÔãÆÌ0¥rJØà9Kðy”äðóløy6W_Ãùñ,„¼eSznÅ7#nHÏxøVD¢ Ôlº OuK¹|wy`ºÑË? ‚(5›NyEïÆÌÁ«rÊ ä«eðy”äðóløy6W^ÃñYÇØ­Å 'ô•(5›|UKÃŽqÝÍèAB{å!ˆ2”÷N ò,ʳ ì½÷ûõ¸Ï¢°ÿ, *L Lé³ 6fÅ£2ú¡À Z‡¼ù©À0HY°³Q?2󬣎釮yù}ü†ÈðY½Šé§§yÙ~ô'̼÷ô ¤_Pa·Be fëý«›Žº¿Çfœ+XøÃ|e)Ë-éã:†ÅòÄŠo™åoÇ4:Yvf¨@úÒ·²E6Ñ¿ö$cÀ?§å°ö4ùü”ÜÈŒQݳä“1rfÄÚØè÷¼§øilÁ6¬ËÔßS ï`“óè¬ýV8ûòë¿…AÊ‚ÍÄë–{°¹uÌ]ô~§dBôžõ%!|‡(JQX¡Xx« - +´¨æxç§£Y«¥pöa½0HY°š¸Œl†;:WÇýq6¡Ûz¯¼3sŠþñ¸'ô•(AyïÉ!Ï‚ < ÂÞ“Nèî³(ì?‹‚ ß#É!Ђ > jcV¸«Ÿ/˜x4Ÿb”ÚÈûóÉ£ðÆ®ð¶®,”Æ0ÊaíìRKò—ÂW× R @µg9{Ï<—(œYçò\" R¤ÚG~©6(HµÁö6ú¬²ŒÜÄ»Ùh.j71R¬&®]Š&͈WtCúÏ"e Î&Ç*ÞÐêè¢ð³BÓë5~V(ˆÑ¿ú´ë.ƒ/QŠj¹Zè{1ÛK ¢ Ô^ó®ÕòÏ o`š6ò#”!ˆ2P³I+Z…¾ÐÚ—‚ï']ÿ‚cÄ è+Q‚ò¤n¡*Ï‚ < ‚ò¤–š*Ï‚ < ‚ò¤¥@•gAPžµëÜ1ä5máÌDEí3–_Ù'RžhKžhƒõmlí³رe—¸oFo£²;܆L³çþŽ£5ºxªW8ó•é }¬í+ûDÊ‚Âm©Âm°¾]üÖ‚~òÜÕ]’ëíóÛߨéÁø ¹o-[2ì2䱋7Kj¹€²W„¢> Rl6îò6FçQ~¼rÈ¥w|&;ä±%Qªî8fûë@¯qR>Ã(×tÂë>6ù“SÀ‰”äšPëwäîþ9cïïÏÕ—}NíüÊ;u]®WðR–æ”DÊ{—hyåYP“w…H}óýÅD¨ ŠÅóIÞ‘(”±_Í{1Œr˜ Ò:Î ˆ´0A¤…ÿ÷,õ¶¨Ïëç‡õ„‹‘»¡ü|2_ †L³Çy"—õ ÏñÞP7̬ðª˜Z‹óçŠQ”¢šB>“ÙvúåÇõ‚å°?9¬½´Vòú7nÊØçß)ˆQ”¢:»#ùƹÛ9îràP–ós!g6!oHŸ&3›ˆ2P³©;câ½^V aô>¡¯ D¨Ùt04r”×›º1=ox½ªE)ªÖùÁòÿ<ò70¬›” n1¹æ’×ïw»¾åðóløy6×^CÛŒ’Ãü*Öͨ ¿‰a(Á4{¼=ù•EíšçùW·£ eÁjãºðwí©oʵ7?0H_&X‚(5›¼=r¶YTAÓ÷lë& R¬Rñ®yî*idÓ-Qª¯`Y÷,º7$u„U7DQŠÂ ÅsìªB‹Â -ª9^¼z ß•ª µ[ÃïJ…AÊ‚ÍFýÆÃ]ÙžüÝéû|g”Ûîh~ì|^ÄÎCj¢ Ôl:O_2qð€zƒf$>x@ ‚”«Î/F±OÜÌj×°OÜ1ÊaP¤ÒÖDÚicØ“SÒ•6‡}isP§ríU“icP¥µÑÍö |šaÛlWbãl>Ï~ðq6ÖFóâú o2̨…x›)†Qk¶ùÖÑŸ«+œ¿vƒ‚%¹jÞÙ-¥ïÅCXJoHj­kiˆ¢…¾[+……ZTsü²;zü"SÅô˜_- b”Ã.ÛŽ¿>Ýá$ßäÊ«è“ùJ0”`:{¤£Zrö n(·¤~1éLˆÜ[úÁ„š^n4(¶ÛÝqVÕüŒp ²  Õ>=$HµAAª Ö·1~ôƒrЬoÆK}™g¯»QÖ¯{<šÝaŒrX3­[ Þ–¡ðß aÏ Eÿ D¨³I›¨´nl¢:ú¤×M› x:ûÀ¿àz"eAቶTá‰6ØÞF—ún6HxïOè+Qª6M£z¦[ˆ"…’’fÛi[jñ!Bjqÿ|³`–[D Ê@PÞ;}tȳ (Ï‚šÇ©3%'ª?Ø5³v©ÃqE¹mfA8†Ñ¿ú4½nV²…Ÿewü,÷,™ûªÕnH¿Òñ O!ŠRV(€ÑZVhQÕñ‹¯²±9¶ôU¸;˹)qf yN £ÖL»~Á2Vp-¯|ˆÃž×‹x3N;Kÿö¶æÊ#Ü ©›ÏópAˆ2·)vMð›[»%ÖÛüÅÔäAÂ…’b©0„cå0A¤µá$ˆ´0A¤…uþ?ê<{tɰAÂ:î@!Ê@XÞ{^zôYhQPá{<9ZÔgAP^Ê)÷YP³Ç¨Äµ+Ð<¿òÓ µx~å'Q‚ò¤æ§*Ï‚ < ÂÞ{¿(û, ûÏ¢ Béj«*Ђ > êÆìª t!q½!¡K$ä­ˆ2Pg“vA]€¶×Í_‹sŸíAñª‘ÅÓj‘¢(E5³®­’æx_“íÆ~3O»©÷•Ã(‡5ÛúÖ£÷’É'|šÎÈÆ÷íw-Ñ?HÀûI7´âÿ„¾2e f“øÉò_ê¼ šß¤îìŒ:p[£Ï7žwF Ê@Õ¨cB€Úœ8®Š0Ø%+””» ! †QDZ{Ÿ‚H DºwZÏÑues%†Qû“Úm+¾ÌÒÈGD¨ýó ˆÎ6åÀ°W"jt7cå0(RþŒ*ÒÆ HÞœ’®´9ìK›ƒ:“2“*m¬fé+Øj.|Š_¤V³áF9Limð "-LiaÍÿÞ«…+_nPî“>Á¯,HY°Ø8Þçuô\p®Ò3´ý¹ „ Ê@ͦë$âŒmB‡%È7ô•(5›V»Eýü¸Tƒ„‹’vô'I~•’öùž_¿ B”:Ÿ¿ŽK¨%øÀA+pðQaþõ'^[:®!B>ÉWðI„m²#6Ê¢ÚñþpÏ+ðz¯ší|pÝ êwþªƒ eÁjã8©õ+Þi)”ÐbÃ{Hb>ÞA A”šMxÏOëÞãõ5^}i>YH½!}Á<Ù„‰@”š¼ë‡zûÏî°ÂóZÿ¶­´Q²`sîX_áºyíjæãý‘a)“~v{ŽçÜ7þÊߘ«Å;û6þ"@âS~vhà˜ù<©¯E)ª¦þÊÞæGï/Õð˜:]±ûŠòÀA3Šl݈‚”›Ïì Ò“Öt A” <1“ÑäY”gAØ{bö£ºÏ¢°ÿ, *SxM A}ÔÆ¬qßH(;'ãPNÝU”÷ AŸÌh0nÑ'3‚e ,ï=,<ú, ´(¨PJãTõY”—ò_Ê}þ'¹¾:ÄOè±6C¹ÀòånþDf$å°úÎæëÛõú¾àÁê–D¨zq¿G ßÌûÕ×[ã7ó¾1é„éËìfÞ7ærþ̱Óö/4g|^Û1Ž0”`6é\£¦Íb6‹~{‡ ‡ã,z΂¼ŒºŒ8‹é†©´­ïC|ƒ,ÑŸØvòÂ(‡A‘r€QEÚicÝ+˜!¦F¥Å÷-‹9äÆ^§Å´O…1Êa\¤ÙVÙ?¬2‚\¨l¯aê2±ªg;”…ðúÊ@” ’~ž­?ÏæÚk˜g5ãÄGÝ+&å€Oì+‡Qël;õßÌR—]mÀ=¡¯ DÊ«2MžAyå‰U™&Ï‚ < ‚òĪL“gAPžµûøÞ§äôצà!|Y@ÝV=®Oè©Mð}b%c¢ ÔlZµòþ¹ÓÔ C:¸©V+Ó·p_õJ £Vm;?‹#7,?'30LlÎ>±¯F9¬Ù櫃yF^wã];[ƒ„¨+l¼E Ê@Pž¸Ç¢É³ (Ï‚°÷Ä Õ}…ýgQPaJ`JŸ•1;}®ÝX}Ùbs¿@Á>Ñ4:?rÍ*úÂÙ=f%}¤,ؤ®¿ž9¤6ßu&qÿ]hÇNh£ÖÞCwPPºMÊ?×P ×;GÐW¢ TmšúúM[¬+œý¦Ye) 67ÇAgv,·@3 Oè+Qj6íZZ…kõiv³|rîŽq$ R¤Ú›¶‚T¤Ú`{Z7 ¯èf¤ ¥ø{E!ˆ2”÷Þ˜pȳ (Ï‚šÇí{6¸–û†Úôüu„ëAÁÚƒë»%AŒrØŸÖ\rhCWXoHÿªÅk! Q”¢°BigSWhQX¡EUÇ/“p¡ÜX¬ g†S´÷_¿²O¤,(<Ñ–*<ÑÛÛ˜í²µôC©Å$oׄ Ê@PžTLªò,ʳ ì=©VÓÝgQئ¦ôYP³WÜQ·ù‡\ $Œ¤'ô•(AyÒÆŸ*Ï‚ < ÂÞ|Õ}…ýgQP¡TL¨-ê³ :f×Ïj×olÛ´@zUŶMCe fÓ¬Ì]!»^ÛÔ}»AH® %˜NÛ ×Âçrvvt-ˆQkN¯Úê߃¨àû –þu†0HY°Ùx´‹eî&Ðvl5XJøiÅ g¨ðYÅD¨Ù„w0³òdAc[ì™|²˜`(Á4{îωší/>"¶m 4;†½n(ÙF9¬³íu·ÌWž°›_¾}{BßW¢GÁ¿9è»?7(ÏS0þ´WŠ£­`âÎÆãÞtbÜ—N¬³M+9ðÉÁ õ µ'y¿¸²²ãþvªó­QkOÃÛQÈ4J0Õ‡÷Cìô÷T> úzê >„CãÚAŠ閭̃ˆ2Pg“~?]X¥ & aŽa”ÚmjÕ"¤œ‡´¤&Ä!ŠRT3KøÌ–KoLîò Á4ÈQ’Ã:ÑYEN›Ã:m®{ Z#Lû7$µ=Ô»­+…G}ü íêÔB¿:†Q«¦â­zý†Æ7¨¯høÝt:ÏÏò͸Sÿæ¶‚Nã+ØB Ša”ÑïåÐ%Ò‘ÖüÿþI_…} ;"jà“¬© ŸäŽçU÷¯ ¥ŃF9Li¢DZ˜ Òšÿ϶O,ž¨ã‰Ö IÝúÊ@”:›Ze§¿Ü_°W«B¿ÜÄ(‡ÛfýGOqº?¿EŠóýE) +ƒ‡ªÐ¢°B‹ê¿+åyr`0|ŸÐW¢ ÄmŠÞÀ™?ÝAw©Bà_|*žvð1Å(JQX¡tÒFWhQX¡E5Ç¿îZ¸újßܤ.¸·0÷ŸF1 K{íªèµR£Ölë~»Ë»=÷ ÊæÁ5ËøU -ý'ô•(5yWÿîÕ3Ÿúfôúl ‡ Ê@UÞèøèÿΚ}!ˆ2På³ÑR­ˆ»@óïÏ;¹¯“*Å'ö•Ã(‡5Û®úFõcù5œAêÿ±žD¨Ù¤_fbÌï™”`y»Œ\O<#/´àá”ÏØ#e Î&­Î” 5: ›¡û¡O|áÇ~zFŸø…’bš0ñcå0A¤u[Oia‚H «þ?îs7z¡Ê·Í %yDØ8‹a”ÑÖ%0A¤… "-¬ùßøu$¡?s¿W$thbå°fÛ¡§bÏ:ià˜~Ù‚_Ä b”êm第Âúw1úy ¾üJ0=S¼!y®WF4¶´ þnò¶³©YÀV‘©ÜW’£$÷'É5ÇüŽ©×)ü#‹Ã“2vøAÆ(JQÍ®~‡PÜ,à»;7eµïy½Ã(‡Ó–ëg…>Úfÿ¢îͨs†P7ÂP‚iö´Ó0Ö^xǨ-üz+eTÜìõ1Êa‚HëX· Ò‘Öüß]r• þ‰Ü©½þ‰ÜD¨Ú„ïèßvè* }e Ê@ͦE-Zp©X)#eÅb£&ˆ´Î "-LiaÍÿ]˜ZÀkÃ[ 7öÊ‹ô“›zíOêÛ&1ŠRTgׄý¡mb,Ó4¹’·ýÆH¤¨p_IŽ’ÜŸ$×9fu¸såîTQàŠ`1Î5àš FQŠjfµ´Hb^iÑ´hÑQÈ‹"e (Ojªò,ʳ æñUˆnZ½PBчw ¤ž½x?Iüz¯þ=´eºö\O£ Ô$vy”T¼ò¨Ò“ßW"¢(Ea…R`ÒZVhQÕñó<Ùò eôWyŒa”ÑÖy2A¤… "-¬ùk:Êgï3›¿ ÄØÙ¶áù¢P=ˆQÃ"Q-áQisX¦ÍAè|ŽC¦A•6E&}™t¥u£ùà+ëûYËu©?ø}ùeî·¢Ä]Ã…O9O·uáÁä‚„U o … Ê@Õ¦¥ßϲ­ŒBé”l“¦@‚>¼E‚(½ê-6¦¯Üò`›?AŒr©ÜPÔDÚicÕý«xÈËhxP¾]'ô<¢ eÁÎF×a¯…²]ßó:&«q’êÙ8f<7Ö]ßõjº‚é{µ¯’iû\ gèör¥„|ß­ŽQ”¢ ÂOF A}ÔÜ>NjüüfQÁľõûÊa”ÚÈéwÑPïê—€(5×ãОáŸ=¼™×ÛBÌW‚¡ÓìÙÕ¾‘°Áµù‚Ó†°ö´H$¤ÕÞÕñ;(viÔ^KÊÁ±FÿòÓ¦@´¦ֆȩŸûª•‚IOê•F9¬Ú¶»¶»xù±ë›„ú#DQŠêì’Ú­ýù$~#cÙ»¾½»¹Ó0}‹àU„„(JQYj.ìÞ”^™òÐÒëE¾(5›ú·´H¼Ê«›2ǼzÈ1ŒrX5íþ©®WÁ£–܇÷› +æ hîgl¬œ‹‚”;©+\dzÇ< G Ê@íè—^… S(}QzEF9LiDZ˜ Òšÿ±]%ë”®bå0A¤u6Jia‚H kþ?¥yÝGrþ•Íå¼~Iò—:Å&÷±²^| £Vm;Åãúg(—³ßôÞÅ)”ÞUç[t7¤÷ºù]¢ ÔÙ´úV¨ƒ…ýšëÅÁV¨(HY°Ù(|tTÿèsÁ^­bý£ÏAŒrX³­»õ^Ÿ×¢}p[í }e Ê@XÞ;‹ôè³(,Т B© ª ´ ¨Ï‚ ¼”ÿRî³ n̺ZÖü´ôékïðfR £Vl[ËÏa™K RßàéÙõù<ÃpÁÄ^íûÊa”Úm³VKâÛd .|—,Qj6-zÛ ð3.¬„b”ÚmÛ ƒŽ~4bínwx?Äx3úUà•;ÃÏP‚©öŒ×æ‰ëSsƒ„ï }e Ê@XÞ;b{ôYhQPá{Z9ZÔgAP^Ê)÷YP³ÂGÈô\·`ï*]Ov£%9¬S¾e¡ë´9¬Óæêk˜>3¶OÛ®”´¦àá F9Lùô.‘&ˆ´°æÿÇoi ¢wÖɸúŽ«üŠûC¬Îb”Ã:Û¤Z_MÄ&±îVS±F9¬Ù¦Õ™BîáúU3ž|D Ê@Pž¸«¤É³ (Ï‚:ãn$;«P á==¡¯ DÊ;¬š< ‚ò,{OÜ^SÝgQØŠ}tM A}ÔÆì±«ðZøÇ?*¦owó1ÊaͶÖ?°ºü•™?¿ÁV=£´ów|C¯N‚¾2e &ï:Ö_!®868cå°æøÇïZ(ù oÍÂ÷ÀŒ¼y¾Óe¤Í1ŒrX³íÀû»ø¸ÒÀ0£äá§œ‚å0(RÞƒPEÚicØ“òèÒ]isØ—6u&e&UD.¾=͵ bå°¿¶{0ÞYºß²þ˜ØW£Öl»©¹Ž‹ ÒF$ŒÐŸô^8”5OèŸUÇ'7 ¥nwó3)R7¡ù‰”D¨³i…}`ceZ´].¡|»Á{Bõ`(ÁtöàÍfêOòxozS§{BQ‚O²f!|’a›¬Yˆ²(ø¬Ô£ÜQâþ­½ g›²ÒËl¶%‚(Ayb™­É³ (Ï‚°÷Ä"[uŸEaÿYT(–Ùš@ ‚ú,¨Yãg…náº-°°Ô¿…X0ãbÿb£ÖlÛñæ­v$c-?!ùQè9¬Â7%úÁ½(|æA_ˆ2PµiëwÐ%öÍ™?®ü*²£ eÁÎÄÙŽô'{m7¤Çß“½¶DÊã¯&Ï‚ < ÂÞ£¯ê>‹Âþ³(¨PŒ¿š@ ‚ú,¨Ùm„Ѱ‡øÕ驧 A”ªMûGs„°Ã¿ ^ã ÖnüˆŽ°RîÆ…2°`ú嫌a”ÚmÂg¼ôOL|Oì+‡QëlÛ”ê_Ó/°‡€ïo®»q/AHž?Íà½sQ1ýXæ« a”êmÇÕeŸn)ÜÛ'F ) RíSõ‚T¤Ú`{»zLhßJŸ.Ì:Ùi\”•@Ø7=®#Ê®éJ¨É;q¤|7y ‘G.}e Ê@Õ¦sÜóaV3š·õcå°f›ãîîÄFî©‚~2_ †þ¥ç,úgg„Öh žfÍaáiÞ©¿}Ä‹zRAù>ÎD eÁf£ë.Åò\ë %ƒxRݳ&ÏÃÖ×Ã&ÏÓÖ×ÓôÔgZÓO¹ñ8¼}®††ó3Ǥ§á¹)9¸0|@´b’H|@4ˆQk¶µ&·Ù¸Ý'”+:ìôPÁ¬K3ìôP£Öl›õYƒŠI#ë‰uO›="?Ü“3î[é—‚å°f›uLˆ‘åƒùR öîšq¾¸µ<+› Ö=m DIÊaÝÓô¸…SÜ Ö=M?w‡“Ï Ö=í ÌÊauæÜÇèÕFýÁzî!ˆ2Ðß ZSÿ"KÁ>¼Q¬ÿ&K£EÊýT‘6EÚö¤‘uWÚö¥ÍA¨[áicP¥µÑ|ÿV‡Éy*9-Z‘}Oì™OìE+}ŸÐW¢ ÔÙ´†[ý[ù± }S÷•OÝ­U4?Ÿ·V†Éͺ'÷•ä(Éaè*šG§Ía6WuÎWËBÿhëÁ³ÿE)ª”ÙU²“…2Rv"FQŠjvÝߊ—æPæ-Ý]ÅàÃW‘·t[WÞ;€!ˆ2”¶@úL 4)¨Ð{Ó3A}î"¾‡RþK¹Ï‚Ú˜U¿(qôƒµAõ;Oè+Qj6õ»Fþ»Æ…›¤¶ÞÁ)˜±ûÉ÷o‚å°Î6½á%dE3ª$žÅ0ÊaͶ._A)°°¾Þ˜øº…4 †Qk¶õ{nÞ+¥…z=LÛq+ž6¿ŸÔ½EÞL|ui–ÇÇý¥ã?¯¦ôòøä‘ˆñ’`y|n_:´ñÊ„Wï—Ò6V'­×†Ë—”šÄSzj®²é‡X„vãf\|֋͸Š.¬1ŒrXg›ÔÒonÛõs±{ I~¶`b«æ‰}å0ÊaͶ]¯ …z¿Ê ãiü7 &žOì+‡Qƒ"Q¼sˆ´1(ÒÆ°'åA©»Òæ°/mêD!‡Lƒ*m¬æ¾H0nNÙÁRŒ(HY°I½æ¹Úl>?ü- Ê@í tGñ¥6ÿxc¤ãJOê+EQŠÂ ßÉG¡Ea…U|ðNmÿ¶ø‡ ¤ž0æß5A”šM×/Gë+·é‚TG🻠A”:›Ú{’S—×fõaüü>˼âq £T. uDçU,GAÊ‚ÍÆ5sl±bFͳøþØ¢xâ5Ï.è÷L›x¤ö5Ïe Î&W©ÆÛÃ÷çÙÛôd'õî%‚§1ŒrØŸÖ\bl:ã#ÞÛÙ7F_ÐózÃÀ iIzR_)ŠRVø^’< - +´¨Îñ‡š0 û–嫸Æþ¯@Oõ—bî85±zCj‡”_ A”:›ôö„Ð@ÅŸ¥2ü(HYPŠ*I—T¤Ú`÷6p;WM¥oHèx ™t¢ TlÚ?mûïÍìŸþg¾œIA¤PŒ³‚E) +|‡bB‹Â -ª9^ø–…þ¡¢‚½²$ýkJAŒrX³ ›Öqþ­œ›²¿'Ó=ÇQ9|hœŽzîà##Qª6ê+Îr $Ä œä„ Ê@ͦQ÷ü`)úÍèÕÀÎ}7¶Aôó}ç彑u~\È b”ðÈ)©Òæ°L›û“ä }{Î<ƒÖÙ™|ÉW`cm—Çqe°ÆÏOàÚ búN¯‚å°f›Ô y„“Az!ý¤¾Rý«ÏšÝ«&e îIŽîÌþ2ÊÕw5ÍíˆÚy¶†‰ÛOì+‡Qël[•òwB÷þX®¸|žlìN·óô•(5›®“¡fß7$ì‘iU[¡Œʼn b”ÚiÂ7ôŒjàÆä¦‚P9JrX§|ZN×isX§Íµ× m …ˤîÊ9 wÉ(”;ó¨¨ÒèyÔÔ9 ± åqû>-€ö•¢(Ea…Ò¡.]¡Ea…þgjc\ÈB~–5pñ³,ª{–§óÃsŽ…Ÿe yü,÷D1Ž  %~9ø/-,B‘Ã(‡5Ó&u+ãr?û²/â§ñÔ¤~éò"1ò¼h‘¾ö£&F!ŠRV(*U¡Ea…Õ_ÙÕìñ-íÒwnÜáÆ^'#uˆa”ÚmÚv‚,Z_HÖ:¤„ر߆bG £&ˆ|¯~.‘&ˆ´°Îÿú‡ç.ËÀ1©¼b_9ŒrX³m¼Ò×ý¼Sˆ|R_)ŠRTøÉ´ ¨Ï‚šÛw!9Ò·0 'F*¼I[0ñnÞ¢ b”Ã:Û„çê¦ßMYëßõ‹a”ÚÈkñ|íY=;GçÄúT1Œr)õSEÚyÚ©mE ¥Hú›AÑmÐUmŠÏrtÆxI±]ÇÚøbŸÇ+XË ]ŸÇ b”ðHeDUisX¦ÍýIrÐ>e+J3ÏÆ u6E&ßAòØX›ÏK_¯:r»~”%ÖÀ¾/·½6zˆáº@jŪBRûŸ;QÂ6IKµªÏ¤ @“‚ ¥Ïšð¯}ïÛ}uT¯Ý_z\8¿¡òòF£&ˆw”t‘&ˆ´°æÿCï… ¢ûd÷È_Ã*Á'Y£ >É‚†]›§¸ë2] Òoþ1õc eAA*J•\RmPjƒu€íâ7õôKåß ~áz‹üRù¾ß¹»±õ…é¬Ã—Ê¿1a«Ôh¶ÝœùAÄW»- Rä&¿“ºë{ÈB«ÎØÔRù]ˆï¿ïÇ_õ~œä1âpü¿‚(5›FÍéÂ.ä¡ï ¥Ð}µÍJpyñp}ŽéUNưîi®ÞßoŠaÕ%§ðkgúçû &V½Oì+‡Qk¶õ›@âÐâ{,7e9’o²Ä0ÊaÍ´û»ïôÎhñP¾(4ù¢ eÁfc×Ðõ^¾!¡…#lãŸ-¨¾³yac=ÀP‚éì=©ÁkZK;øÆ_8y\ k|¤,(HE±Ë%Õ©6ؽ õÜXœ/ë¼K&u:^ ÉyzŠZ¾Ê(3uL¬àب>ú[Loï¯Hháàý®‰ñ¦Üñ'÷³(5×Ï„£°¸] ä±] äÀ1!E{R_)ŠRT3ìê¸ÅFTʇ:&ŽÃ“ÃE/¼ž—J;ìT7¼î$›Ð·@žØW£Öl»¾; ,nøcz= AíIÂïé¥ù]š•òñé~vÔ*"›ßO}(âj!ˆ O³¢½ð4 랦Ÿ“ĵIžf­ÂÓü‹ËÙf§X[<€œí ŽXñ/»üýKOA‘2|’Gá“ÜÁwì9y¿¤P(¡0ÀÇŽ $5|è(Qêlb›¦®Ú½`rm€‹÷(GIëD‡_<:më´¹öîûYBÆ‚OUJšgøìQ£&ˆ”Ò`C¤… "-¬ùÿúÚ‰žEL,¥¯/u¸RÊ@UÞd|ãêN#Ø•Ëol‡ñžÝ"û°IscFL࿬Ä(‡A‘rÓQicP¤aO¢m+mûÒæ NÔ>qÈ´1¨ÒÆÚhî·Ì½ßÁ8¦{NŠZ¸ŸW1é .né1ÊaÕ¶™o÷ºÎ±|cô¿v`áZjÜz'?Ä¿8X 5æ_ A”šMâ§–Œrº€Öæî« Ž‚”;Wuh euÁŒö_¨–ëG’6œƒÞ¯@7¤-^–D Ê@M­cøZBÇpQk¡õ(u6願)˜4˜„r&†Qk¶ ½P#_Fí4­äÇIQZpÇÒ‘x]à“úJQ”¢šÂîCʹî…%1Œr©œëÖDÚicm„ˆ›³Fà¾HD/fV’,«««Ì‹’V%®â²v@°bÒ¼~b_9ŒrX³MºS¬ïÓÒ}'ò~¥]߇ b”Ã:ÛÔûÈxW°PÂ…w $4³Ä'y*Þ´Ýú˜\4½zKå'Éå™-4—¢ eÁfb[¦%,%÷Ü„u*†Qƒ"Ñ4uˆ´1(ÒÆšÿÕïòÝ›­ßÅô^Ô>¶î£€ÖÄ¡ Tõí]^ìþ©»B‰‡•„Ôx¿’:'F9¬™füˆ×½dOÜ#oÊˇ;^kýþøPû»k)¬¿ûõ+ábïÞÑáSæÆŒpÀµ'ˆQƒ"åÔZicP¤aO¢¥ÃãJ›Ã¾´9¨uÜ2m ª´±6šOÏ15þÙ‡ã…CX¾ ÷N^å; R¤ÚGl©6(HµÁNêf6€Î•³D¨–sÂE¾±~Ÿ ¾Wct¬ïÏlë?l®ÞÚ£â?c‚(5›Ä3&F…S@«Ùúªq¢ eÁÎFý¬‰P³Lª4q¥oª>k–áÁ-«sÎÏ'r*cà˜ñ´“?mÒŸ†w‹+&= ïß~c,Ép}o·`ÝÚáºÍå(ÉaKR§Ía6×tÞ_˜{Ÿ(-3îÊdOv:4 Ò¿üÄÑÖ¸R bÝÓô ¾ç”¥Ö=m LYÊaÝÓÖÀ”¥öwÃ5KÄÝ9ºgÞ]8ÅòQo/D9Jrͼ¥mlyËÕsÜqÕ¯_ÿ)˜ØÇ—‚å°fNmôïÒÜÔkYÿPLŒ¢U횺…nòæk=XßúÃ(‡5Û¶öU&é('¿½^ aÛî }e Ê@Õ¦¹;Ø÷1bÜÀ ÁøÀ\¢ å‰?UŸIA&zE† ¨ÏäöPÊ)÷YP³“pÕÌX, '—†Âj) Rí­{Aª Rm°{\(´ƒWzu†µƒW!ˆ2P³éÚ×w?edËóµ*Ožrå0(R9*ª‰´1(ÒÆ°'åôCw¥Ía_ÚÔ©4Þ4™6UÚXÍ˧MëÖÀ aË ï‚… Ê@ͦ¾«î¿Èp.÷bÏmºÛß„}êü1[ŸàW¤,Øl¼"‹ÃïoœË!µŒ‚kïïEÐr+Þ<>ù\ ¡”ÄçžCe jÓÊ?¦åúÀ`ÁÌÎÛÎ*  GIëT:oªN›Ã:m®{ ¬áê©ÕÖWû3LIç ^%Þ:KGÚŒ†Cl.¹?´,7opûh§/nˆWô7$Lž'ô•è_{Ò4û_5¥(ü,k€àgYT{WÛol‡tÏ@Ä“ZB,Ža”êmý'•†s7fµˆx˜‹a”Ã:Ûx!ìë¶íï²Ô×o‹‚”©gVª Rm°¾ûó ÎëǤq-°F9¬ÙÖÆ§TDóoòýGï æ+ÁP‚AÚ¤N®¦Íb6‹~“*ªã,z΂ÖNÇÎG£Æm37èß*¥V­ÜÍ cÂÓ¬åAxš{U™'é~žvì³å¦ðüÊ‚”›ÂwBÆÇýÝ6a¡ÚËÝ ø®…Zš?؎ãvƒ½aâÓžØW£ÖÙ¦/¸B¶³´Tܺ†;<µ-ÿ¼$c(ÁT{VñŽœQnÐj÷½ ®(HY°³qRÛ×BÙU0ýÃ"¯LnõÝÌÛÙ )˜Ñ¾Þ_ïoõ<í|=mõ<í|=mWŸ†îPt˜~ð¹Ëôƒ‰?¨f½pã·Ñ¤7wº  MÕÍð¥P&İîi[`œP랦‘xŽÊaÝÓôtq&ŒÕ×½=Ž?£NÓtÅÌÇñç”Sš'ø•) R³J³BM®½‹¾÷-w^ÍÚ›3¿²öê*GAÊ‚‰»'ºð»u9zšƒ‰¿Ym$aAŽ’Ö)Ÿ$ÐuÚÖisí5™ø~¥z²Î·öwYç«‘ حξú3 Rl6vûçʾ5}\ýW«yÀÅ7f•ó¼MÃ(‡qÛÌæÁ›[ñˆVËòcÒFÀ-œ¼ 7 R¤ÚÇ©6(HµÁö6ÄŸç22ÝÃøí+!Ó==¥//5ÎÇ7‰DŒ/`gwcB*KŸ‡æ¤ïxš B”:›´mQâ6…~–è;à£ô¼büŒ¿Ø†GÒÝ´YŸ³£@zj}ÎŽD¨ÙÔ óÞsn˜Õ¤ŸÑ:ˆQ«¶æ3\áŒã2Ã0¨Ÿ,˜µqÉN 1ÊaͶ¾FAÆáä¿pæ'”xö) V'oRÎrÏ š)2Ë>à eÁÎÆÛ¨¤’Çô$Ï@Ç©‹Jͣę‰+AŽ’Ö©?SuÚÖisí5,VWý>z0óÑrèýK|ºëþñ>÷Uq²Lt)%ÎQ’ëìkÑ;ÝÅQZ]ëȈBe Î¦)œF}CŽÄzb±ä†^AA_ˆ2”'@ª< ‚ò,{O¬µT÷YöŸEA…Ò£ ´ ¨/ð$é€v4"ˆµ2÷ë­»©_9)KÃ=ý F9 Š„ë‘¤rám0§Ì×^‘é[LnJ ™k£$‡uÚg8°N›Ã:m®¾1 ÑŽ?ŽýañN ÏWoHXÍžÐW¢ ÔÙ4¹6˜^™Çý£x¡ßOùÁúN°}O¢q×¥d±…/¤ýwޤeƒŸ )šKð#4!ˆ2Pµi½bO´—°º6ÉùøØº1/%.¯1Cï0§úE) +”¶1t……ZTs|ÿ5+wjSƬ|%÷1ŒrX3m–*cõ¼?D#tš…°ßõÞD,KÙŽ@¢ Ôlz|mAîz¾¢öÞ·AäÆà«¿psö9Þ`ˆ‚”«‰‡º!,íLjcª:E³»p§â¹¯$GI®3ð4‚Þð­ Õ[â¾a²`³±m}@ƒßú¼©¶ò».}Æ(JQPᔓhcP£ýÉaÈ6Ôÿ·M³)d™M!…9çç|oSuÜŸÝÒ/&¯|é¿!#¡äkˆ¢…Š ¥ªÐ¢°B‹jŽïv÷½7Ý $¬ÁOè+Qj6MRÁk,¡g÷™öUÞ»S’a-q® b”Ãþä°Î%ç3â(íÒõ=·ÀÞXáÌžç®Q²  Õ>Í HµAAª ¶·qภwÞ¦û—¤BåÎ4öM©ÃküBG y‘Ä(‡u¦iC8RHZ6p¨ŒQ”¢°Â÷²áQhQX¡EUÇOâ…ýä7¨ßmÁ‡ ¿1WÿƒüÆôÛ&7vrlÔ;ܸ3ó !Vh…ÒOr¼&Z £&ˆ´Ú÷‚H DZXóÿãú²¼¡ÁsŒoðUº²Œ vÅ•g„AÊ‚ÕÆ¹ •ïE@D7ô•ß'„8(u6ás:ÄDÍÑ.zˆ˜÷…Ce fÓáû½&¾åXA« Ç÷à eÁfã•3‰ªû¼ãôL öJô¯É1ÊaP¤œEª"m Š´1ìI¹û­»Òæ°/mꔫU¦A•6VGóÒ7WĤœõ. e¥É¬yÄ(‡5Ó|;;|[0«fGoƒå°?9¬ºd>3e$Ë÷W „Í!U.'uÅ*eä…|dÅ0Êa‚Hk;Ria‚H kþoï̺…1<ýœÅÊ­ò3”`š=Öa-Üâ˜ÖczFW×yÚÞŸ.ò%¸åζ¨sºȶŧû—gBßÙþÆöîhý•}¡¤/¤Ô1Œr˜ Òê@ "-LiaÍÿïsœ¾u¦€fÅWš(HY°Ù8 ©²vÇ£PzÏãE]ÍꃽôF9¬:ä…X¤v!Œ`z:„RTUx^§W•òèÍóu톄6æúÊ@” <ñ|»&Ï‚ < ÂÞ“–5Ý}…ýgQP¡¸a£ ´ ¨Ï‚Ú˜^Ÿ¸M“Ö{yB_ˆ2P³i±NÉáM¤ šÇDØ&R¤,Xlœ?“ô2ý~Öü¹?a°…å—Û¯ðûËíÕÄ(GI®8 ŸdÑkëyì+ ï®û<âM;ýͬ‰nzÅô…¯cAŒrX³Í›ˆ³¬åÜ9èX9¿1ÇÒ4qONjŽÃPŒ¢…JƒQWhQX¡EUÇOÝ/|À,{ÖMÃÄ.âûÊa”àH˜h:T:8(ÓÁAö‘n(ÓÆ Jƒ"“¾LºÒƺÑÜ6’ÐhÆßn(Ø+úèßnb”àH¥q¯Ú¦4Ò5NY~Ù&æyT£®ç %lËáNE„Í2ܧA”šMö±øW䟯+^ÎwL9 >Í14àã|ž=¤àã"#q•(úéô Z™5?) V—+e%iÅŒ¤¥AŒrX³í¾îønÍZN¹š7j†_\,š€ò‹‹!ˆ2”'%Õª< ‚ò,{OÜ\PÝgQØJóDhAPŸÕ1»:~,€·næõºCèÚѤ϶݂(5›f鈠~ŒkÞ¦ÄnG¡¤Ð$$!ŠRTg—§éÈ Ï›2öµ^ùG £VMÛ'&_–íž#Œ/ÃB¥(¬Ðj©b……ZTsüãâžrr/­{·­ë¿lV°îM».Hh‡ˆ?™méì¦ùäŸ>g÷IŽÙ?{bå°bÛòYð&™^M.Ÿ¿-«[Fáû úÆ‚½ZúÆ F9¬Š,¿°ilãÿîñôÉS¤,X_ôt‡|>÷º‡_¸W¥¦_Ãb”àH4Æ"m Š´1(M:‡Hƒ"m ŠG—.ÒÆ HkcùqØ_¾æÂcú2 ºi>K׬`ä(ÉaòAE]§Ía6×^ÃuÃ#øÝŸev}âiþ²¼ºŠ®=ÜonòmwYÖÑ×pe§.*h¶?Ù©‹0HY°ÙxðóÕ®Ô¨r])éJŽÂ eAA*ÚúwIµAAª Ö·Ñwͼ'Æ ¤o̰Öw¢ ÔÙ´yºåÛË*ýj->ç±”óÝf“O½õúITçó(‡U™÷â9sÔ†ÍzS7p*¦¿ÞÁ b”ÚÈý¬Eö,¹dúð÷Ã(‡A‘b”ÕEÚicu”ìŽï4¾¢Èîùvâ+Œ„(JQX¡˜3¨ - +´¨ÎñWðqž 8w€i ¸¯$GINÐy&ušœ Óäê{8¤ëˆFÎ}ˆW¤; RìL”ŽÙjå3–+>‰bå°fÛ(­áêšÚ}Þ×:Ó2<¡±‹7Ë" %˜fÏãз²©Áãÿ9☻NãÈͳ#;0LLdžØW£Ölӛ͸3±~î»+÷ʽ“4=Š„AÊ‚‚T»£+HµAAª ¶·ñ8œ.Þ_eAaýLz2ŠãBŤȅCC£Ölë:ÿþ”³j…¿òF9¬Ù¶JK‡¾£»~®ÚÛ¹‹20¬­®A£Æm‹n¯®ý^÷TÔU„o­å²Š±t[qÅbŒä3#4ÊAŽ’Ö©ôVU6‡u†žgñåÇÃBP}á“ç+~¼,”u,‡e¯AŒrX3­›lÞãÒ+b~œ/FQŠÂ ¥ŠXWhQX¡EUÇϳÃb†Àß×< 4êP,”щãC1†QDz/;1A¤…5ÿw…ªÕqáQ°¶Î» F9¬Ú¶É„¯ë¾¾,¦€òg$„<& R¬6®ú`RÞur…_Ù4¸!="¯lD Ê@Pž˜iò,ʳ ì=i©ÖÝgQØŠG™4õYP³B‚dT@÷ÎR,¯ZO©’ÔOS¬Û¸g‘êGL¾¦¤þ©•(GI®3°ëæøÏ7¬›u7LXŸ6ó¶°BEAÊ‚ÕĽë#nTÎn^ó:# Rl&Â[TsÞ›2*€WÒ{¬žþõ+ëa7LHç·W8³iÈß^¤,(Hõ_ ƒ‚Tloã·bÅÕñNøâ˜ÕÙ©Ͼâñnn®]ÝPò¦ÄµAŒQô¯>ë øžr˜ð4ï%Æ VÞÙv}¨3¼/P8ëà߈r”äš}ü¦§à£‡Ûg–¾Ù¬O©˜¾™ÉÑ1ÊaÕ¶ñº©JP·ññv÷q€Êí Øî+ÉQ’köᆜ¹nJ^Vq8 b”àH”Ô:DÚicÿWß^ÛÈÞFqHÛóÛ¦Ñó=^Þ-«˜X·,ˆQk¶u?{ê?·V°Yj²áskAŒrXµm~Ä!÷qŸmöäͯP9ëmGaÂÍzP˜o!ŠRTµkqý¸ oƒow«ÒÙáö:u£¹AŒrX³m]™a‡ñ×ÛÒ×ÖöÅÀ(kfó”+†Qƒ"•©šHƒ"m¬ú}œ’ö^"ß6ñ”ZKzÛ.‘νüaÍ6W£>ˆQû“êKŽ•_*ñ×ÂÉõŠ_£ eAAªÿžb¤Ú`÷6¤JUo»TÐ,ËXÛ% Rl6JàÔ{xn¦¼©»+h^Ûù«‚ô/?ñÜæ€…”ÃêK8»ÜÔ]á{½t_-`°}A4 R,6î÷ ?¡QW–oh÷½öÏ38UPß#yÝdr”äš÷Ž…³ 8·ò’^í;1ÊaÕ¸¾ãÝl-¾é·>+ÐD¨É;|ra+ÈQ’«¾Ÿ;ß{÷á d´î¹óC¥(¬P,,T……ZTs|— Û•ÿÀ01~àöD£Æm ßêÝ—Up¥ž¸ÎÙ&É81 b”êm«ØþÒ·&*h5ùÞD¤,Ølœð%_u•s æ7ZéÎúŠÇŒÖõüÆ<]&Þõ bͶÙ%râØÖï¹Ó‹‚ñø g!ŠRTÈ‚³W¢A6V½ô‹°x悯q7e‚à‹\ £ÖL[TÛ ‚rØ¢s¤,Xmp“TÜi tÅŒyÀ²ü F9¬Ù¶‹GS”~Ãqέ“ºËåH¶Í£(EA… >;šThREáù¹ëâSZ릋;ž+ÊQ’tû\:MNÐirWnîožºs‡ÊIMAœ:1Êa‚HpÒ¥Òä™&×^ÂÕ]rvÿ†‰‘7Á‚å°*ò—ææãÉT9JrõŒ×½g‰00ÌÚcuL£Vm›Äý½ y_TÂMÈs¾n¥û"{£ÄB2FXe넉) V—¹ûŠØÔzE)œÞfzD b”àH±Í¤‹´1(ÒÆ H1çÖEÚicP¤Â4‘6EÚXË] 2LœêõÚüÛØW£Eî)Ê|VsþU”9_ g¶ëMãiÊšªqâAÛ×9–olŽ<Ž’\}ÞÚÝ}±I9 >Íœ8ða&ŸeŽdø,“‚ÏòOÑõw£úbÇl@œCyVG9ú—Ÿ·Fæ)å0ø4{šÂ§ÙX{wÝö„¯³`VZ¿rÛBå°jÛvw,ƒåmÁ„X$!ŠRTˆe‰65ÚXóþ}Ý{/`ࠕͳûQŽ’\5°ï3û÷ fÝ÷c[«AŒrX³íq†ÈŸç<;§øwîÏÇW?”^ ÷J£$‡u*§eU6‡uÚ\{ ‡ë‹YõpúÀAk2,ÜÀGIî×Àåó×ç#n})»5(5mÄíšlìÆµ}Da`Ø$-¯`¸Ä1ÊaÍ6!ÃT*Õ_LÈ8ädñ‡šF¼?ahœŸ×°¶”Žo»ß÷Šc”Úm«îºýbÆÉý`³Þo~îPWªì›¸Ü´µëY‚üìFuÔk‘÷ËÂ¥(¬TJ‰&†5š &¨C£IA‰&漘s¢IÕ¼ÂÉ_#ðÎ<„ÍC¤,(Huž›Ì€‚Tloã>XàÜŽ8'Vþ`Û8ÁQ’köµ K»Îž”Õ´ìkñ0E)ªÚµ?N­XǾ+vlg ò,þ?÷Û¬äwü<t¤,ؤ®¯<rºÁñ9ÆÏ¶Åwç~Àñþ½÷‰”«ÔQh–*»5¦'ŠÏÝš8F9¬Ù&ôøäÍ‰Ž’vrqæ<Þ¿eám_6îš³¾¥¹RS¿ð9+ÏŽsÖ ì³l bô¯>m>ýïRTóãªÏ°ÉÓaâ8Mç8F9¬‰Ü[ 2¿=rQ?!æ©1BQŠ‚ ÁLs(4)¨Ð¤Úø8Û'Ñ”•øeØ…½Êå`M£E*c_icP¤aO*ÙšêJ›Ã¾´9¨Sé.h2m ª´±:šgc÷VÈn̨ÎÞIB£$‡uŠ‹©¡Óæ°N›k¯á:å<ŒX±evMs¾ ܘìM'~úð½ÈŸGI?ÏÖ‰Ÿgsí5tåÒç½ÕÒMI)ì“úJQ”¢ BÔþrH´1¨ÑÆ He;4š”hRPa΋9'šTÀÒñ#º®žoѾƒk £Ölë*Eà¡R¼©×ÃôÚá>GíŽÞ£Â¼. r”ä:¿àQÃkDŒWÊü»‡1ö2#ý«O›Oÿ«£õ7£¢Ý‹Mü'ía÷E9gÑ×0é< >n n<î+ÉQ’«æÖ´ïFSÏ¡ }€ûJr”äI™I•ÞþùxÜb°ãñ8(æ»`ôˉf#½9ë*í;£Œ‚”«‰çä°P³]àó1ŠRTgþlŠÑG:&{~mÈÞ”ulˆmÇ(JQÍ®¾°÷çƒ7&ï a£$WÍ+×hƒ=‚‰Ë›`^£$'èt.&'è4¹òæ~3É”´`ÖŽ: 'AŒrX³ÍlQâ켂Æ1W) 6»}$÷ù´BIÇ(žT{Öõ}ã`£e?»ÿa”¢ªÄûgøÂt*øîëKB¤,Øl\öÔ&Aeçàú% R¬6N]XòÃ/˜¹ïÂãR£$‡u*…¤ªÓæ°N›«¯aé¢ HA„èrSRIþ¤¾R¥¨Î.½‰‹3ïyé2o÷½—y"™áûëòwøÆñ7‡KÝ#kW"›­½QR‹ç81ŠR·+¸«3oâï (=”yRvòppsöY'¢ eÁfbügÍ &W °ìkBÿ)‚Y§KÙˆ F9¬Úv¼¯'C_Á® ±åÈ/‹G9úן'áÓczký]‡á ½LSÛ"!ˆ2P³iru<Ù)™‚µüÉuJ&ˆQÃ"§¤J›Ã2mîO’ƒöí9ól ZgcPdò$_ÕY Õ³“S¨=ôì$DQŠjvÝ‘n‡ÖZG¶œ}ˆDqáɽ-X gÖœŠlä-óÔøÈ»pZ8ë­³û¦AŒr©$šHƒ"m ŠTv¦5‘6EÚ©¤¸šHƒ"#O»vl}k.¥¨:oîO®8Os kÙuä4ˆQÃ"•N—ªÒæ°L›û“ä }J·Q3ÏÆ u6E&ßAòØX›Æ­'|Tµ`Ö®2Ïûcå°f[—×(Aˆç 7fÕÙ<]ˆa”êmëg„˜ºZ(©zR_)ŠRTg—ÑÂ;Ãß\×\ô†fYgÏÔf;Ëjž,z4Ž]½»Q²`³ñtüðÈ{`n׸܇®ÊBñù°0HY°ÙhÜg‚æ™ÛÌr1Rƒe‰0”`š=>­ŸT^Ç} Tõ ës?yŠ'U…³—G–U…AÊ‚ÕĹϫü' Ü .˜µ­Ê2œ F9¬Ù6®þ5o`Të1zVåE)ª³k–:= î}éA!ÈQ’kö­{}Ýö–ñÀ0qOïk1ÊaÍ6kCLE…33±—yA²  Õÿ…0(Hõ·D×åsÝõ_+ÃÔG–‘íyD9JruÔ¬ý/û¯L¯kŸ4ú·5 çlp ³â4Kß‚å°jÛ~ßMˆÖõ4ˆ|Õ‹‚”›­Cê?]S]hrìb”àÈ%'ÒÆ H«þ?„p¤ÏÖcÚà’¢^G)Ô«±©ÞG‰Q”¢ Bà ‡B“‚ M û„eM {ÑÄ HÐdrh4)(ѤÚÞUçã6X¡¤ë§Oê+EQŠªvñÏû"ÕEµ5Ô¨B¥¨Î®ÖŠú˜]Üaâò‚þ1ÊaX$zk•6‡eÚÜŸ$íC­‡y6­³1(2ù’¯ÀÆÚ,°Îþá–K®É)UîzŠ£(EU»>c+¿ÍC£¤>à“úJQ”¢š]ÝððŸ,˜µ§ÎJÄ F9¬Ú6½îiAŽ_ /Ü+¡ÃØW£EÊ/NicP¤A‘r8PEÚicP$ê¬9DÚicm,óß7OoÌÜ ã5ÈQ’Ã:•žŒªÓæ°N›k¯Á »'°/³s¦òÕ£€ÝPñ­Q²`³±ë¸,JêFãÓ@1ŠRT³kkuñL|Œ»`¯š@?ÆÄ(‡A‘r‘ªŠ´1(ÒÆ°'QÏÓãÊÿ?kg’$©Òkáañ[ÐÃ~j ñÝÿàe%xƒ8jëM³ì+ŽoÔ9asx,mê”ìªLƒ*m¬ÎæõûZÞ¾3µ€æIÀÏÕ(HY°ÙØÇMþRaáœiëa–“ròq a”Úm˧‹¹îÛ£ÉÜ#{ߺÃdD„Ãà¦Þ¯~Ä0ÊaXä’ibX¤‰u"Y`ÆÎð+ö™¾,ÊŠa”Ãþä°6·®X™¨f…Æ<ä‰a”ømÑòî~tijTeÇ“c]ÜÙå(ÉahX<:më´¹ö®+Aóôí±ü˜³‚H\Ðß­€—óƒå°f[W*ðw¯Ì(òư F9¬ÙöŠ}~Æéôܸ£ä(É5ûîFäw©MéÇ·ÛÄ&÷æP0ñ<À{C£ÖlÛ_r×±UA3gW¤,Xm»E‹^;^´³Ê|ÕF9JrX§Vè:më´¹î587]vãµnÇWà oõ {%HÔ»Ç1ŠRT3¬F€a؉.˜Ü3€]ý(GI®™·­‰TÀ1Íj/Ë÷š$¬ßæ˜î[¡±¨©bïSOË GINÐ龿å&×^ƒùÉá»M%·„ÍïÆŒÜÈkï‹a”êmËu¡&èë«Îîs<ÖwÕÛçzDAÊ‚‚TTsIµAAª voã¬Û’U´4óY­Õ”Ce jÓÝEæ,Ë k;´«öÄ(‡ýÉauHö.!éî™*”xúànŸ F9 ‹9;HÃ"M¬‰Üž]ð¤¶+÷6þ¥¶Nc„¢UgÈñ=`¦[-!JòjžÔ'EQŠjv¬2ŽàÂY‰ƒ×!) Rý—à ÕÛÛèýY3Á^±;÷nŒ8Ϋ'É]_8Ø=ÑwDAÊ‚ÍÆnoá–°#ÝÔËéÓwÍE)ªØõóÎYÐå|L<ý±ëÄ(‡qÛ¢)ïs\à&­ç2oÊjœb9ƒE)ªÙÕÕþf…‚‰!nb”ÚmïÆAOp\¹wJX Ž£%¹jßtËáÎónw³æÊ̱ޗuox“ó=xË‹r”äšy»¾£àÌuÁ¬À`áÖ…0ÊarX±Æ¡ú~çühô߯;çMHZëS¬`âJ¦X£$'èi0—N“tš\÷Ú©àï³+˜ìò ÇB£$‡u¢’ƒG§Ía6×^ÃU›ô”£¤”yc¥(¨LJ‡B“‚ M !8ê<ƒhbxM ŠÌiÌI4©:—>à¯íΙfxé<b”ÚmK¬á`à éîñx" R¬6Þ=­–ƒÉýÒ;éÎûWPÎ6Ág¤,Øll¤•Wž ¨ËYÿC ¦ÙónÐòùÍë»iÊç9GAÊ‚ÕÆÍlÑÆUÈsë~Õ\ëÐlW"¹oQ`B¯4Ml¥GAÊ‚ÕÂcS¹Ó ZÛàk·Ž‚”›¯`Æ· ½ŠÐÂë¿9³³ìåŸFAÊ‚ÕÄsÃl= º)©ä!A!ŠR·ËYmjØ£ýÍ{ÿsüß÷{m±H¦ãä処J¤,(Hõ^ÃJ€‚T¬ocÚ%•yÝqb"Íì8GI®Ú·ÜIppÒ÷ûàÃm˜ì¡¸(E) *ÁžC¡IA…&‚‰åPhRP¡IA… Òs(4)¨Ð¤šÂÃé¬Ì\d¤,XWÚj,PThØÛßT aŒrXµm›îô̶Ÿ­?ì¼é°nïz’¼ýk sß(4 c”Ãþä°:$¥¬/&èñ»¯Ÿh‹$Å*$ÝúAé¦ D¨Ùtù÷Î|ÌÀ0#Wñ CÂå°Î6œPQÊ0©åñ¸–Lå¥M¤,Øl\'ÿ!ר]*àè^l­ûhÜ‹ ƒ”;¥¸U=|ÆqÚùa÷HÝGÝÂD £Vg훿ù©í|΂E…Τ°õ…(JQP!ˆW M *4©6ð‡µÂql<ÎÓÊÛ ´æÈko‚”«K›•ÎúO…¤Ü‹ðÊ#e fÓõ«TÁS|yÔ¼ õÁ%ÞõÛ™Sé‰ô %Ç8ÎQ”¢ª]ëuËÊ•ÌvG©Ò„(AygFžAy„GÏ*îàá³(<~¾B£öŒ@ ‚ú,¨ÎÙí”vz}5NŒ`…õä(ÉUûú߈ðoó÷O!ˆ!ž°ÑÇ0ÊaÍ´GÈÛ˜þÞ¿]õw &¦h…Q r”äÎf—8'è4¹úJÁC|ïxJO}øå΂Jr pŽ1FQŠªvËÞ¿~þ ôAü½~ÏÀMS7øî$y¡Ä'Œ~ £†E‚ Ã#ÒİH«ã¿t?lúÅ£$o1ŠR·+áMK7ÝÙüBIƒ(¼èE)ªÙµ‰d‰uT ŒkŽ»£õ#ŒQû“Ã꘬ûëV˜+íVA9°Æi·0HY°ÚXªï“Ô÷û»A£r¢×,ì(AŽ’\gß«‹ÊÙOǵþ¢GHÁÄñ¶– GINÐé.[G9A§ÉÕ×p>ræþvŠù;IF=wý Åö>»š 6­Ï`5€P©õÞ¡7=P pŒÈÁw¢ Tmº_’·Ä=0Î: X->ˆQû“Ãê˜Ìã+gíqèç;¬òÍs7­¼I±¡ÝQ™W!ŠRV¸¤ZVhQuàoÏ猒œk¼mÇ(JQÜ®`\3¯ËêÞ?êh¬W‰¾‘nì%G Ê@Õ¦;gË¢Ïû£÷×}¦WNô‘„Éä(ÉUûŽé¥(Õ×cBuWˆc¥¨fX¿•zóã…‚Y0e«Ša”êiçåûbúQÒüÇ1BŒ¢ÕÙµ&—B¡ª¼²F9Lé-]1A¤…•ñ_Æ»—Ì× œ$<·¢%¹jh@pÅ/KI‡k"ËÚOh¯/²l4€»;oÙÏÙ³•ïÏM9ˆQ«Æ÷·bë§bhjÊë'ˆQ«¶Ý÷„|.ÚÀ(i¯Ä~BŒ¢UìZl¶ë¦Ä5ŠíŠQ”¢ª]ówrGþƒÖw¤ '%Be *o»î$7›ðoML` £ö'‡Õ÷µ‰÷ðô÷|ÝÉrE ÓÑÇžÅ2†L³g—n£ªÄv}-H‡óiS„¡SlÚÆ®úlùøÃ²%8‰0”`¶·fk³¤Íb¶÷ lk³¤Íb6+EÚ,i³˜6I/Ç3Öl¥Væó&Ž¡U.»›êæß“qncå0(RîüSEÚicuõÏçáv€*´|5HØâ·+ð „Ð zY%GfAˆ2P³é„C¢+£!Ï:ÆP‚©öÜ…g {à˜~4Nì5…(JQͰc5Gã™6H?Oöª"e jÓqQ9’Iè0©ˆ%,ªF9¬Ù¶9œHîÉwyΗµ8òÙûä0ÊaPä7¥Ñ¤ D“*£?N_ûRkI ÒwÐù¹ÄBe jÓüÈ(Zú†-vÕ§ddé6ˆ2P³©s|‰œéuÀý¹Ó„ Ê@Õ¦ÞñÅú R/*>#é D¨Ú´~ÅZ¾²¿Tl¹se‡‰r”ä !Û¥Óä&×^C·\|iÙ•U¾^B¥(¬P,î© - +´¨:ðÛWxaMß~ ðµ¨C¥(¬Pº×¥+´(¬Ð¢ÚÀŸ£;à¤:¾< A”ªM{·Š}í† ÒKÙ|‰D Ê@Mgü¤<´@aBô>¼75V ýI,ñ‚(U›Î {‘z*¨`¯µ¡§‚‚å°bÛôíÞ—7ÓZ c7c/,FQŠÂ ÅÝLUhQX¡EÕû#ËWÑi”q‚ AŒrX9â›l*ωÄ(‡A‘JêTicP¤µIrmÛ1­RÈÍ–O£ F9LéëGc‚Ho([¾—jÍ­“Í­SÞöÉÞ¶üƒ ÊbSÝB¥(¬ÐWÇRXaàY¸ñ ¿/Êaðiöì€O‹L*ñ›¢ÊáT~N;¨We§•@=ÊQ’köÍG"A}ß]ô•Ú‡'ònúd Ê@MÝÿŽ‘p‡C¡ÔLoÁA” ‘«ŒH £&ˆô¶,1A¤773Ý?Ø~Ô þ–Öò»HÇNd£V'ÉÞÕ?žg˜æ­ìúS ¾Jˆ¢¢rqH´1¨ÑÆ Hw )FA‰~·´§r£˜D“ê&°}‰‚×Ñ ¤'ßY=Qj6]Ÿfpõ· ܽ'ôÉ@” –·Kßo ³µÑˆ@”ªM«\vQ^ò*Aä4RŒ¢UíÚæÅÞù‰´3ÜìµÞ²©Qï- A” <)ªSåY”gAxô¬~><|…ÇÏÛ;ø ¤¢ ´ ¨Ï‚êœÝ_ÙäyœéåqBe f“¯ÌÍl f9”¬Á&ˆQk¶]a®óÄfáüXa”êmÇ4yÞk^)˜5’¬«!ˆQk¶Ýñµ³ð?pþ÷Ir”äš} ŽÆ´œHôÕÍr"!ˆ2PµéQ(0€ú¤(JQÅ®å{…—.Oo`à=`G4Q‚òÞÞƒCžAy„Gï½><ÃgQxü, *L Lé³ 6gµAÇ}7£^!à]!†LµgÒæ¸`Ïäè­}(AyR%B•gAPžu#®…tØ=^æo»¤`U"éE–P A”šM^I³¶Ï9°¦P`u(îKŒ¢ÕìR;âp^¦@z—*+ † Ê@Õ¦Å×{Ë¢‹eÑvfaÙ/v)ñµê %˜Îž1¾5¯_=+¬ú‚!ÏYY÷1ŒrX³m”Ã9‘^1éi8‘Ä(‡5ÛºðÑßo¾¬j¿®°üoÈhòãë?DQŠÂ Åô»ªÐ¢°B‹ªßçX½5Óé+š%Ce jÓÞ‘ ÎÈ›{›vF†(JQÍ.ñSù*¥9ÆÂ¬¸Û8~õ™7øåËʰ”_Á¬ò,Kù1ÊaͶnx[ d¸ð|¡„(JQX¡èÅ« - +´¨6ðG›ô_9ÉJ³kïËU› b”ðÈ)©Òæ°L›û“ä }{Î<ƒÖÙ™|ÉW`cmœ£cuó¨ Pz7Ê+0ˆa”ÑV^Iia‚H «ãN8Ç«WE f6¬*Ä(‡5Ûv½÷TÌXŽ=ˆQ+¶­_å›Lr„¶~­Nb>båO±¤Ö* Ê"€êž%ÞùR¼Ü‚É?ýÜ(Gÿü<©‹Œ e 6g'æ[˜ßT =ÂܦD¨³i ‡Më·Á¥ò!q eÅ ,Æ b”êiãvzvFÖ¦Z°—Ó¯·©1ÊaPä™icP¤á‘TPu(m¥ÍA{N¦A•6Öf³ZÖé M‚|™†(JQX¡UÀ - +ôÖÖÉõ³ ûr£VgGiù5¶H~ ö•9i@x_]Ôäï« A”ª¼ef¿r¯Ó³Œy£ö'‡ý×°-žï©”£qÏ%†QDZYiA¤… "-¬ÿU ‹öh­®Ÿ‰­ÎåhÓÿ+§ ¦gn£`V^jzæ6‚å0,Rɉ¨*mË´¹?IÚ§ä¥4ól ZgcPdò$_µUÐgÁ¼='…Ò#¨‘ïAÝ'j½m>!ˆ2Pg“VŽŽÃS-Çuˆ¢…J5L]¡Ea…U~½~ðÀZ^,»^_±œ+Ü x3‚ǃ{# %˜¦mcU™´\Ðï!¶tâe (ïm“CžAyÔÉÛ<.ßÎæy £ö'‡µ™~j©'aUí_û£üLô=]€ A” <1 ÒäY”gAxô¤lŸ>|…ÇÏ¢ B±WThAPŸµ9+þ 9pÿFÓPŸE)ªÙÕe—¼mD?Ðì‰ô¸—U0½ËïågÅ0ÊaÕ¶cT¿p>ößAy{?Âá(AyïwìgAPžµ_vû8`÷˜ ¤oÒìS¢ 剛´&Ï‚ < £'nÑêðY?‹‚ ÅMZhAPŸµ9»Ï2 çÊs¼Ìͺ³¼Ûƒ%¹¦ó®¿Éè“íg§Š¯š‡7e¤°_q` £VLÛÄ/öÉûîÍ™¼íFJ0=“;lPŸ…ööôÊUÓ¤çIXN8Ñ¿=i „rXÁë“F®°³AFƒ®zUÌèb…¹ F9¬³M-‡à¦Rúˆð&ˆQDZµ9A¤… "-¬Žÿx}#"xfÇUÅî·½ò§ñ¯4ºòÇÛüuì,ÎÛæQ;Á„¾ÿåap¤[}ˆ¢ÕÌšõ¯ »pÁŒŠïŽ1ŒrXµm¹Û÷BAQ¥¤^Z £&ˆ´rÉ‚H DZXÿå°×s ·û2Ýï£ÜûǺ»n©±–ËmÛw+õã ë—a¢ T­ÚúÃÌ[šØö®4¡”_ïÒÄÀ°n±¸à£%9¬sIê´9¬ÓæêkèA‡\Á^ÞyÄ(‡U‘çõÓn+wÜŸØ:2‘1Œr)_AUEÚicu–8{õnÛ„+ú]¹ F9 ŠTV€&ÒÆ HÃ#9%‡ÒæðXÚÔ©ä•4™6UÚX›ÍÝÑ£ôsð-ýÆZÀ·£Ç0ÊaͶSª¢È…©Î /4ü@G&>,˜1¿âÃF9¬ˆÜ¿—wwà¤ô5ô+ë. AôoOmç“דBÐ ŠUDöþŽ•Ñ$Ì\)„ >.¨ÙÔê§Ê È®ÔÝ”u$)”rFhÏR¶lSöPvé/f¥(ô,{8гl Úe"4ÌÆÐÓì±G³©6©k¥ß 7¾.R3‰—:sÏšRØnQm8v×\Üùj¹CøW²F|¢%9¬sIê´9¬3ð¼QüRxy”¢à³ÌY ŸeRØ.s.cÃL >Í\ðaþ…3ÞEY__ÊÀ1=åΛg‚å°jÛt]“ðõ Œž >)ŠRT³«+À}_ƒû> Ùúd Ê@XÞ»ÔáÑgQX EA…ïøÈ!Ђ > ‚òRã—> jsvßܹèAÂL©òDÊ“êª< ‚ò,žT=ԇϢðøYT˜˜ÒgAuÎö%[oosôô™øˆ2P³iÔ›e…p~6>)ô1ŒrX³mÇ¢_ißgþ³š®[k3kI<Ýä(ÉaJ-IÕisX§ÍÕ×°\]®ÜÙÀ Ánˆ2P³©+F{Ûa ¤¯kÖl‚(5›ŽÝ5GþªŽWÓ‡+å) RϬT¤Ú`{ƽÜWW1£wáä³,„Q«¶­Ýù+¶Æòó÷†Œf<~‡(JQX¡Øa¡*´(¬Ð¢ÚÀ_­O®&ÔAzE‚õf… Ê@ͦ>C¨$uyê­tù¼[ÜŒ\X¤,ØL<˜“ësÖîWÏ•Ú$?Ecå°jÛæÊ’³Úð¾u篸ƒðó÷†ŒUÍàE) +WµªÐ¢°B‹jÿ¸“'~Ø„gìvõ—T„ÝjŸ¥õ¢§Ñv!ajT^öùôdLùöX0#‡É7ÈF9¬Ù&%žúñç)ä}NAcg-Ü;5vÖ(HYPjwÖ RmPjƒímœâbP\­cµ×_ãÇ&Uê”<àywŒB¦è¾s²°ÕsöæïðëI}R¥¨f˜ñq_<ðÇ·÷qßÃ]ÈBYׯ˜Ä(‡5Ó®˜Æ:éYðU°æ|ºB¯ F9ŒÛmÐ=¾¯Ÿòpùh•3CÙé5,1²  U eu©6(HµÁú6Æï‰O.uñJJ¡º0+ŸÜ4ö.¬¸A,üa·×f,Yæ"1ú×§¹î¾¶£&<Íû“ V_Û4Kç·æ€Ó dŒýE) +ô~ Fa…Þ¤ëõû¾6œò¸ •O©D¨Î‹yççË<æSVîÑø²Ñ(˜ž°ãm½AŒrXµmymÃ>cy ‰ÏÃr”ä:SMs½ûn¯¾.Ï€#Q‚òÞïÌ!Ï‚ < ª³c±Múž‚Í5‡¦bŸF9¬³mVò³¸„[ aq7Qª6u >ÿMšCøž~A%FQŠjv]Ω3ß90ÌŠK¸Ã(‡qÛ¢¥Þ£Ü15üE¾áï½»î-fû}Íß×L0pL:”„Ã(‡5Û„nVý’@Á¬©ÌúÛƒå°fÛ MS»Çoä±”æ4ñœ”ëÃDl™"×”¢%¹?I®˜Å“¬;_ò°Ç)T”möS”¢ša‡Bê‰à ¾7=) 6ïM6Ö4ýú5Aß9|t÷”?ˆcå0(R‰¡4‘6EÚX'²9OŠßº¾DF0ÊaPä–icPdèiRw8 (EµU³â—­æŽë'xôžè9ˆ2P³i×Ú_qKo„Jné A”šMkÎbvˆ{ž§pCÉð³Néwq#œ²wp-ø GŸEa¾SÒõY”—¿ÔðYP›³c˜ßpkVM£Çs`~p£E*žƒ&ÒÆ ÈÈÓf±LqT‚~š¹³á§6ÄMÛqðU¶IU0|—-FQŠÂ ßþžG¡Ea…Õ¾sÞ¤5Í·Iƒ½·E) +”¾`¢+´(¬Ð¢ÚÀ¿«Ó®Œï >>ëÊù†AÊ‚“>Ñ: *f#g¾‡œúç]/ŒwV£/íÈòõ縺º X,W1ö¶ð\{”¶XB"Q‚òÄÊ›&Ï‚ <ÿ“\—_xKG랦p?B«óp>ð¤—0­ö†s~ ~jõœ„T‰ÅÓŠ¦îIL'ñöm…sú†&<é…c:Qj6u‡ôÛ&á¼!áI (u6i-ü4wIg¹Îs¥§Øø¯gt£%¹fÞ2zRñ[–‹ôù=}T8['Ëç„AÊ‚ÍÄ[¨&gnJ¾ð!l!Ëõá °7þRøšÈ¹\¿>âÊ ÒÝo–Ú A” <1µ«É³ (Ï‚ð艣:|…ÇÏ¢ Â”À”>¿<œî/‹ñ¦N®/BQŠª«ju¦œù–_8³rË÷ü(HYPj75 RmPz¢ÜÀ­e…‚\{û}ZÈíÍÝ”˜©ü¹F9¬™Ö'^ÜNÝMIØ—[Ã(‡UÓ6õ'L„ôò6þãÌ÷/½³`¯¶½3ˆQk¶I)XÃA+œ¹¥è ÝñõÉ>‘² ðD[ªðDlocŽÝ™,Jøø9³E­ÉÜļ½²÷JJK¹°·&lb[ÿC¬îäl¡$.Ìê4hϺ¯(-«#˲^T \­ÿ1ŠRÔŸUGã¾ð­ç}µ/rW;öƒœð5žÐ'Q‚òÞÖêÆ\èhÑÂŒ¿Ü*ìXŠÛÿÛ„ÇÉŽx£\e¥AÍ56ý‰ D¨ÙÔ¾¾ŠF¹ŠQƒ}ÈÛ B”šM‡TÖ®¡tàû°Õ®¡$@Ê‚ÍÆ«ÉÄŠÓÝ0 ³Â G/L£öçŸEî}›2|’µÙÃ'Y|’µÃ'¹÷íyÜUGóZkÏf…¿˜˜ó4&ðüÊN8œüné¾Ré½ZÓ0+_º²…Ã(‡5ÛÖßAÙðnw€åƒ„¨ç }2e jÓêÍtìÐÜÅö΢ eÁfã»óÉ·¯ï/øúöº(HY°³ÑÕoÅgçjüÆ jNüÅ6ÏÓ–×Ó6ÏÓö´mZ={ wnÌZåÜYˆa”ÚmbRQ+Št ¹Nn_¤,ØlT2‹ x8‡f™tlzºOˆ6}J ný¶é³‚‹^0ýó /×y‹v³VFOkñs{ÜWªQ¯é¬þ +J×ýB®mŸw1¬{šîI¡†Ö0V¤|½C*: ìýe aŸÎ^µlŸN÷«¦ Ôž´È‹¬LJríy›´õ¨z ëž¶'å°º>÷î‡á¿àÀ¿Dn_.2„Qƒ"‘åicP¤ÕEs¨¿œðìÔ$}ŸÔ'EQŠÂ ß™#B‹Â -ª ¼ø#ŒJD{Èí¬Ê~ >8ìsÏÇíñ<߈Ï»urѪAB^[8#e bÓØ}ùmž…2‘x† Ê@ͦUòX´é4~·n¾ðžºOý4JÏJ=¾ô„(Ayb*K“gAPžAyân¡É³ (Ï‚ <1=§É³ (ςڌÝ'eÈQgtƒôë)ÛÓ A”ªM£ðÓ6z>nœº¡ð]hÑäÅÇ"DQŠÂ ÅJ‘ªÐ¢°B‹ê~Køgã¬õ_8xfã;üÂÑÃ(‡5Óº•2ƒY¸<Τ´Ø|\ôÏ· £¸ŸoF1†QD¾w7—H DZXÿn×yObaMßàÓK:Qêl’.§*к´§]Eöò¸ôRO£ÖDîv¯Ú6r‰ˆ2”'mª< ‚ò,¨ÊÛ®/òÕG!ÚÆ×q £V§ï¦þànÇd¿­™ |¢ å‰oK“gAPžµ!W›\Uå±ÛÓ”Ȩ¡àj—i¢¥(¤PN²k m )´)8†Ê&¯ ¢ÁQ´1$R® im I´©nã,»^Â,˜5ñ÷—eŒrX³mv†'£§­^Ìõ{;ê•ôma>T¢ Ô†_Íq $l£¸>‚(5›¤©:»7e]´äîn £ÖLÓz8q©FÿZ0ô/Ϲ?ìZR”êÈ»xãP™…2 å|RÄ0Êa‚H+½&ˆ´0A¤…µñ:õ+{Åxú•€ F9¬ÚvÚédÖ!BäŠKOã¹µV«Sn`pÎáF¾D¨É»6ÖœÈ<ë ÛV.0„Qû“ÃÚû:N7@ׄ7~O߯–Æý¹!hhÐÕ¸7оënÛ³r) þ×@õ&N{JÈ+á„^„S§óBe f“·£¹¢4'äÁ'd¤,Øl:èõÓ¢`ïC^?.¢%9¬Ýgòè´9¬Óæ^:\¬:¯¥ú»o•.ê¥ÑEÕ‰2Âi¢nz£æÚÌ{ïÁçõtÿˆ¬3Ã70LìuÂiÈ F9¬Ùæýˆ_Ø£ØK§wWÐÜJXçp¤,ØlTø:‡wW5k®{žÞ‡£øŠI½¡8ºþÁVõi8 ­˜ô4 NÓåÖø–+¥(ü,k™ãg¹7‡Iü—1'yÁ¡Öd®Ò:W[_§û«Î¹E9¬©Ü¤ÁÔ2RóMIÊaMä®÷TKØ»_ÜÕ:øºZ¿gþÆ…{~†§pc/GÛphbå°Î6)"ÓÚí¦ˆê/ÌPžº#Ì}+ ·ù PÒf,+!ŠRT³kug¥‡'#¸u8ga(Á mRòKÓf1H›ÅÀq“ßêÀY9 Bò2ê2âÜÏY¾“{ÍRúAÁ$ã¦u»HÏšp»^ø›ïwý¸{¿ôYvog^¡„aÄYï鵿åD¨³iS+|e¥`mKr]Y b”ðÈ)©Òæ°L›û“ä }{Î<ƒÖÙ™|ÉW`cu¬â×zU¾´§,릧„b}܇kZÜ7_û,eÀY¾9%øÜå(HY°šØ÷›yïJH?ªØe„D¨ÊÛ¯ß$Øø~^†â®ç,¦a”ÃêÀï×Ï£kÁ3²3ü\Œa”êm‡”ž1ÖMáÞcb¬›(HYPj¼©6(HµÁîm¨B„[(i~º0«\Þ4ª¿M(¬óCÿ½@a Q”¢°B1w¨*´(¬Ðý¬ó»^3å0áiÖìžæžTç•ou,hÂù ÜP‚(5ywö®¯÷C±½^s£ÖþÊi –áëɶ|=9Q‚òÞ3Ð!Ï‚ < £÷~Qžá³(<~¾7 ‡@ ‚ú,¨ÌÙù«þ¦Þß ¤ç‡ØZ A”:›p»›]>_èêOÔvk~õ'Qª6ݽ«Î¼aÇb»íR ] »í‚(U›®ö,WÆðd×7‰DJ0@Ûû¤1¥YPf!u ©n¬»ë³”sÖ’‚½’˜z8Ä(‡u¶©écìÇÊ•…$$u¥'uét9™ÅoúLÌøã«>AŒrX³Mÿ­á„[ŒßºθF9Li¥±‘&ˆt?m½‚ׄ¤ Tßô:* ®3ߌp¹W™# %˜fÏÉNo?·uKÙ÷±`rêJXËAŽ’Ö‰NN›Ã:m®½†+;ú õ›î³ÞÞÊ­ a”àHå´ÐDÚicx$Q Ã3”6‡ÇÒæ N¥’­É´1¨ÒÆêlÞ¯‚w¶È “ú’„ý5†Qk¶yÛa>(]Àø~š‘bÑðs (7 žn¤,ØÙèòf¸çZ0i’ §þ1ŽÕ-ü‚·£¬í}®vô F9 ‹DåiJ›Ã2mîO’ƒö¡ü„Ã<ƒÖÙ™|ÉW`cmw‡õOÌò4L9“ÙÀ F9 Û¦œÈ§œ‘;ßÙ羇·~¼ž…½u7$&ÊÕ'‰ÉkC~0z¦çäœÒ%ÿmµ!ÞóÃéë¸9æÓ»¦qsÌ|tÉQñØçyÎëʬw*R«OýšˆQ<Åž5«Ã(‡ "ß³ß%Ò‘þ§é åBÎ#DuÏŠìà”ÃàÓì½>-°¥ž®ã±þ9ïîý‘2P¸N „»Å $T§pw¢ ÔlÚµT•°—ž]uÊj%$< wt… Ê@Í&õ£jÏÓ¡É“~"TŸ|ª\¾Æ¯YàðzùŽÚ‡ù±ÂŸdyðI4Thòt¥ïßkÚ~rå0(òȉ´1(ÒÆÚ¤Ò#Ï ¥—ªXùbùª¿Ü‰Ë !ˆ2P³éúµ>WÅ}`ð†€D¨Ú4NÂF£§Ý g^ëågq¤,ØLìÎä÷N…ÏäI3>”c¥(¬Pº¤+´(¬Ð¢ÚÀß¿nékš8f„a·,„Qk¶Žî›™/š×€´H1Qª6Ýÿbœ._æI(§;HáäÄ·°ƒDAÊ‚‚T»Bjƒ‚Tloci=g™»=ò=…膄3^Ø€"e Î¦9ì,óŠ5^T̈չïÃ(‡5Ûºæ?TsÀ÷ï Ö-p×¼(GIë\’:më´¹úÊÕa)JNœ•§L\u€e½¾ìôúë`®×±øºÌuI¼ò®ûxå]?ˆ2P³ª›Ê¨("L‘kûˆo†Ä0ÊaÍ6õ§ÎŸ]>ƒ„Íî }2e jÓ&Äðz¾ï癚Ùzß}˜Ý”±*_ÇY £ÖL{Ü•”Œ¯­c_Õ†baD %…ˆÄ0Êa‚H+å*ˆ´0A¤…µñ>ò¨®è]ú䢺¤C¥(¬ðzZVhQuà¯>©pM©b’…«_ìm÷(”«H;0HíåÙÛD¨Ú´ÄÓ¢7#¥…]2Q‚ò¬ò”gAPžµÿJ•c'^Œ½JðDbX•¹ ÝáúU¢‚Y ’uÙ1ÊamŽäñ²ÌQ<ø“ºMTéèã›è™-G| r”ä°N%9¬ê´9¬ÓæÚkX÷LZäÆÄ®g!wÃ(‡5Û®Ÿã‰e:WõÇ‚qPô †u… ú§'mËè^ ”êèmëªL‚+P0½]ôå Ä0ÊaͶëóàÎAê=Oê“¢(E5³Ye`X[)¾ÌZ £Æm‹vj­ûwVö\—ý6Áï1B»ýñ•„÷Á+x"÷W.„Í@ˆÐv~ÛÏuó½`r²øÉ}’%9¬½pN›Ã:m®½†®9i¸9¯`âÛ{bŸF9 ‹œ’*mË´¹?IÚ'#Tól ZgcPdò$_µU°KI;Õß*˜¹ñC5†Qël;U wì­‡p»Ò/oÌ Tx|ä(ÉaJ ¢ê´9¬Óæº×€ãS5¾!#k¤Rbƒwµᎃðõ×ïÑBŽÕ}DáTaô¯OÓ÷XtB~–õÒ𳼯zs ,—¶}…èMŸõÛýcæ¡ oû.üuåH g_ëdI’0HY°™Øõó¿ãª â÷ ¤n!üþo¢ åI¹>UžAy„GOªTêÃgQxü, *”rðª@ ‚ú,¨ÍÙcæ¹W`_ÁÎ)s…öa²`µñ¾Â+DÀØÃÚÆÃq[~f/û†ô%6³—(AyâÓäY”gAxôĦŸEáñ³(¨P\bš@ ‚ú,¨ÎÙé«ç,qÿPŤ÷õ1ÊaMäò»úw¾ŸI³}fƒå°ö¤‹T†“3‰—› '' R¤Ú ‚T¤ú{)¶û70_-ÇýÚ—L?DÊ{/‡< ‚ò,¨ÍåÇMw1ÝÌÛ$}™Jù g{Ý;‘ HY°3q³ÏÀÊjXã¯aþ¾ºš]“Ž‚'öÉa”ÚÈѱlN.1Q‚òÄe£É³ (Ïÿ$_$ß bX‡Ë¸±£Í•ªœ`àˆþéI?þP`)‡ O³^xšû}m—³ü:èôkv›kÂ_Å>9ŒrX³-‘ßê[4Þƒ(Äš7$Ì*!Ž@”¸MÎL7¬[Êïc_XÊ7$íQ Q”¢°ÂwéãТ°B‹j¿³›—*_0$x¬Oè“(5›Çbäù©cÞ„0A¿÷QAù:ÌüdAÊ‚ÍFén„Q<:®~ÃOÜY 5³Í"Ce jSùø…aóA<—=~öÚáŒa £EÊݪHƒ"m $:¢=Cisx,mêLÊLª´±6›·Ö™n9©Ú¿â½½Mô”v.­M´`ÎnŠamÛrEÌAŒrØkHÚžìäVé¼ÒvåŠé=]|_b”êmcç¿s˜Ø1.P›$Ç8QêlÒ¢A ’ºmôèý‡z->Û§ëf{ôcW…›'öÉa”àHtØ8DÚicP$Ê+9DÚicP$:i"m Š´±6—׸•Ä×ÈÁuU+\|¬ @°âc¤,ØÙ¨·î_G¿3W°¶òØdrŸ$GIîO’ƒöÉ}³ŸÖÞ]Ÿ)yŽ8Q(±°‚3AŒrX3íh©7äAán¯‚µðÏÕëÄ(‡ýÉauH®RÊ+²5ÜìY½Võt²? Z«›r|š½hàÓl >-°“İ6üwšEšþ‚×;o]£¿7ÅX))ó/¬ìF9LiÕj‘&ˆ´°6þûì NYSɾtÁŠû³]…爯Ä0ÊaÍ´ñàoÛy°óL|±w¤,Ølô}†je3úÆŒZÿ W£Vm[Ū ^¨® éY²Bu¤,ØÙ¨ïH¸ä\1£+è…­£c¶_öÚcå°6$o¼÷?áüY×+ð9`ëû7’}.X¤,Øl<¯°pvëk/_Ê8öÊŒ ê“¢(Eu†ížmlcÛØYËÆçs£|Úv]Íu®UÊau$·®} 9´ø¶rÁä4|]9ÊQ’Ã:åïIè:më´¹öâ7®nF½ûǯ3EJ0ÕžÝø¥„{6²6ÔŠINéûä0ÊaͶ+åì™&¦›qcO£Æm:®áíóâ€híó!ˆ[傚Mê¯b qNßUá½6U }©Ì| e jÓñÕëSB\t_É×çëØ.þ¦Xu¢ ÔlêŽ=”뎓kµ0ßiÃ(‡5ÛÚÌ•zÊ_gÉÅèý¯¯Ã$Q‚ò¤Ÿ*Ï‚ < ª#~ò<¯jsö)0oÛ~Þ?ƒ«zÌü³f…fÅúd Ê@PžtÁI•gAPžAyï Û!Ï‚ < ‚ò¤(O•gAPžµû¸ÙŽîVñëéÙÊø!|ºv~ ‡(JQX¡¸É¨ - +´¨2ðR¯ æß‘õ¡ºÊÇý¡ðâ¸ÛKÚÉèHB¨Ü)èD¨ÙtÚãÀßÓô¸’(^Mà¯j2~:×5*&u¸®Ä(‡5Ûü-ÔÓ<È'óI0”`ª=óÌ¿lîrU+'W3°³) RåóÁjƒ‚Tlo£;¤`ƒ{¯7dì§Ü}Q”¢ªYKö{¯¥Ëë÷¨<ƒ±¼Ê31Œr˜ Òûµ¥ &ˆ´°nü=“q~™æš!óË´F9¬š¶ŽŽùÈRÇz-ê£zöÐ9ÆËùä0ÊaÍ2«—ü>²ùË^wÖvåp¼«ç*æÈX1|~„(JQX¡•œÃ - +´¨:ðÛØNztfãF‚‚‰mS¸ ˆQû“ÃÚ¬-ãæ¿þR°—[¬_+ b”Ã:Û5±ŠKÐÇ~M.W6{`ýÁÉöD¨Ù´‚×®7WÐÜWn[¤,Xm¼C5WÆy`>š,!‚(5›ºå9ú—ç½c}9JrX'ºZâÑisX§Íu¯aü%cNö)hÿŒ‚‰Þûä0ÊaͶ鵧øÎÓÊ3‰) 6/wÒYë&:BàÃ(‡qÛ¼MÍ8Þå'ù˜Xf&†Qû“Ãʘœ_±]GoV¬ yj±fÅ0HY°Ù(þħÖuX1£-ãx=m dÃŒÛAÃ(‡u¶|ÃsÅ«ç|•+Zì­ uï†Ç¬a²`³±Ï‰Üî›3ûåxGAÊ‚ÍÄ÷Ž8ê£Ó#»¶ÜŸ\ÙöËí— ý»÷6.AŽ’Ü;ž+Þwݘ˜Ã΄¥Ë×Úå°ÿÌÁ‹øTÃg_&É¥B\”»‘Á7Ã(‡5‘÷-´X!²bÆÓfn[£Vm+÷#ƒ)óóy¯µ5 »X¤,(Hµ«‹‚T¤Ú`{]ßÛ~\ ¡7÷÷† Ê@Õ¦íºWÒÒÂwcHHûànÌD¨Ù´«k wHJr0qƒdŒ¢UíÚ»ù÷N¡ó¯ü4êk Q'`ˆ¢…¾pB‹Â -ª¼ø[£FQ8yS‰(HYPjW!©6(HµÁö6®ýÛù­aFƆ!ˆQk¶m-ÿ1~?µ`bžô‰}rå0(½n‡Hƒ"m ¤œ3Ó‡ÒæðXÚÔ‰–¹C¦A•6ÖfsÿÛPïѵ¾ù', ¥s*$ùf*$5fªÐ;-÷„>ˆ2PósšRYØÂÉI!(§¡^±óùþ _ô…'ÚR…'FlT-Bxï>ÉZðIŸd­ø$ jsyë®Ëº¿ÎxžŸ,­›—zC¯$¬ê„F Ê@Í&õª‚–ÿ}ï»l¡©ýÅú¬ƒ·®qbeö Aµø?ŒQk¶¿ãˆ¦âæ¬À=Zf¸ÏV€0F9¬Ú6w7%íêâÀ0ëi³-†Qk¶é÷£ÐÒQR*í"aŒr˜ ÒÊc "-Liauü©(¯Å†s–Ò†‰›Š}Ãå°fÛý­b³—oí³È?àÚ»„ÞtãœUŠaÆš§«ô‹ÍŒrX³mÞT U@Öò‘Žúg£ö'‡µ!otxå~Xá‚”›‚ª²¿Øô^ mzµ?9êó?à.öMiõº_PÚ!䆫_쨾åW”ùì¾mX SÝ·aŒr)׃u•6‡eÚÜŸ$í“#aÕ<ƒÖÙ™|ÉW`cm©WùF_ƒ„PÝIEõç5À DÛôŽŸ”T„Å'½Ë¨T߮ڬv3'3ébôw«0‟l %h8pŠ8BêLÉ'Ðùz­R”áñPö Ÿ? Rl6¾ûb|ÎjeDpW£ eÁfã"ŒÜ“Ö(ÝÝy~éã—òïÙ”à“¬=>ɽ‘‹¯¢ Ÿd-Sø$ jowwÕyy,†Qk÷tuSÎܶSrñå~°윬Î]!&/ u ÷•Ÿï_ðÅåQ°=ñšÿÎUM9¬{Úx”ÃÚûÓï“ É°›r  ]B’/Q*6ß{z8Û{Î é ¸O’£$'è<“:MNÐirí=Ü3R*¡¦ÛìNÏ›þãô¸x€Ê¨Ø=“+Á†¹¿ØåR3ä“öt¼x‚å°Î¶WIÚóânL„îjÈø,ÙHpžÐ'Q‚ò¤Êœ*Ï‚ < £÷ކ<ÃgQxü, *|¯‡@ ‚ú,¨Ê›/?ÿåšõÐÁê…!ˆ2P]Róジùf¸p?ß•¦úÁ®ôñz–Öè„cëq¹’ìÎÆaFYøÙgÆ(‡UÛV¡ñEëºkØ« Cëº c”Ã:Û6e“B]m RûKž@?жÙ7ž@A¨ÚÔnÍîÚÖ*a®ºT£ÖlÚ½Œ¹xcïc29JrX'*å{tÚÖisÝkØàkP—Í é}":%…¯5p|8½ä«:¡«/Öö.‡ûØŸÀ F9 Š”ó›ªHƒ"#OÛ—[^»]ˆÂϲ&~–ZÝ±ÕøòñÇq¾b í3>qŽ’\3ðÀ5Õç<ŽÓ7*·.Rlö;·Ë/lA7¤æ”ÞÓ2Q*6M_ÞÕãªêLx¢Ëó¤ãÑ.úM…§¿ƒ1ù7ðk¥.ßþÃ(‡5Ûºr¨·‡±@Âð?¡O¢ Ôlº~ÌÄUc¤:à/‡'Q*6ýìy®¤ ËÏ_© @—æï®-eIãÑ9dïÚ3>Ôg_Ï9߃å°Î4\‚Ñ–I¤Í¯“E) +|¿gB‹Â -ªü8âa=™8]2Ñ}ç´PÖä`Çe£ÖL»>漚60l团~.ˆQk¶=®hH‘ ÷h°Ö®ú•ë^ç•føä0ÊaP¤RœÓDÚicUätÕ׌Éu²4C£VgÉÄmól$óËÃwyq•ëR!.?. R¤Ê®!Õ©6ؽ O\Â]…BIi)fU;j7¯p†ÊШcVý«i||úÈ,k œ[ß À>9Œþñi‹o(¹‹ħY³Dxš…uOÓ‹ ‚ÏħY³Kxš{R.böX/(UPnDÁ¥0HY°³qI‡*¦§ì^‘ÕÚå;—ƒuÒLÌãÞö F9 ‹DéJ›Ã2mîO’ƒö¡ÃÜažAël ŠL¾ƒä+ˆS½×#bçxaŸF9¬Zw.­jo'冗^a\ £Æm‹Ö‹8O™ˆcgŒYÅ¥6ûhntçÄÖM¢ ÔŒÚûÀÔ¼ŒOF=š Q”¢ Bö¶¼m j´±2úË××…Ë©{eŸô›AŒrX³íÝÏ©–Ï¸é·Øp·ãÒ§éýÍᳬc^E£Öl›_ ®ºñ2ùšÊù»±·'c̰ GIë”k‹ºN›Ã:m®½†+Ëì ‰¶oÍ·Fgþµ‚øEè‰oý‰}rå0(Rn®QEÚicP$Ê"9DÚicPä”icP¤µ¹|lj±&¬e:T§ GËÜʶÇÏ‚3·!•S¶~ˆŸGI?ÏÖ‰Ÿgsí5ðÛÂ>Ô/\AK­Ë.ù.éߟ¸9B9¬=m LJQub­>ï™{_ë• æ¼*&‰Ä9¯ F9¬Ú¶]×´Y¡aâ‰SWAŒr)_{SEÚicx$Ñ*õ ¥Íá±´9¨3)3©ÒÆÚl÷Lx¼m­Û-‚;_ÿe üÆ /QÅäDƒþ44&N.dókWAŒrX{× õL}ùöÛýÍyë„+˜8hÅÅ;ƒ%¹jàî¼õÎÓ7g~Kæ•׈‚ôÿõDçâÏsbðiöÒƒO³1l›½b±q•¾O¿›æQeÂPâ\XðÃ(‡µ9}´ì¬ÝV;0l–„'öÉa”êmGŸ6PÖ+ÿoÎ^=< ‚”›Ôë‹÷Ö[_Ù‹a”ÃÚ{è ¹_9]Ê:‡ Ö6W{s£†E*'ªJ›Ã2mîO’ƒö)©nÍ<ƒÖÙ™|ÉW`cuœÎ,ßj ÷w³< R¤ÚPAª Rm°½ ±…Kï(­ \}‚Ÿ,HY°³QÏA¹±‚é©}ÞݶœléºêëwÜ]«‚|•3ç¨Ú•åOö‰”…'ÚR…'Ú`{›/nà“{-— }s†rX“y´B„ÕÎ70èåDj݆!ˆ2PµipsŒ¢ÕìÒ[!ïé1ò™|ªcø¤>)ŠRT±kûNc*/ZAsɰY¤,ØlÝk‹?Û«ÿŠa'o»)qÝ>©OŠ¢¢ª¹C¢A6ö'‡!ÛPŠÍ6ͦe6…æ?7ö6ÕÍ{¼çé®ìÉ«½¾ƒàƬ³ŸŸ1ŒrX±mÿZWÙ°÷U8¥/û_a²`3Ñè »ç k-˜µ±¦Ñ F9 ‹T‚ªÒæ°L›û“ä }ÊN¤™gcÐ:ƒ"“ï ù l¬­‚롼WœƉA¹Sü™ãéA1ÊaP¤âj˜’þ=ž¾Ú>ú.ŸòV´kߟì) O´¥ Oô×÷÷y]:ëÙ4õË}¯·ø»ý~;¥1Ž’œ ¤…\:MNÐiruv÷ÍîÛ%…’R^øZDŒ¢Õìòv}®l‚Ð*Tò.ò0HY°ÙØWMü-b…kY=W£`­¢çª_1ÊaͶ“»Y®¼jåÌ “eVà eAAªÒnªKµAAª Ö·±z?8ŧöz}fÌÝ´=pÐ\L¬; Rl6¾8W£æ7 Ô5°Åƒ;¥ÝIkÔÜËUóÍóQÙ®Šèâ"̾]põ* R;üy+u¢ TmÚP_HÊÝ‘þ|–v¤ßÔëPÐôE)ªÙeµ ±Þ͉ÇÍÞ˜x ±l £ÖÙæó£_ì1©EKéð€Í—û8ÄOi.Gåc@p:¢ eÁjãÙ‡‰þƸý|ܤRÞ ß(¯k}ÎØ¹Q]E¥n•Ü+>y{•Š}rå0(R )5‘6EÚI¥`£¥Íá±´9¨SÉh2m ª´±2›¯0›µ+zzÍ.7$uÞëO’Ž}•Ú ¨ vȹb‰‚Y]š,’b”ømÞfÄNåê~Ñ”à“¬ÙŸdAØ&kJa£, >ËšˆðQîÙ;v.«ÿû!ƒ—ȯ5ÊQ’kæ±^!­AlxB`è“(Ayà9ô™hRH!¸vf 4!¤Ï„¼Ôø¥†Ï„êœÌšŽ›*({Ð8r ƒ”›3¾á¯w]Ìð¡y×E£ÖlëÇÄ]·(Ø*lOê“¢(Ea… dá‘hbX£‰ÕÑŸßÇàõ­ Z‰O^Š ƒ”›W¦ÎyÃg`ØïÈ ¬'îÉ b”Ãþä°fÛêl+8ŸùŠ0HY°¾½åþ,P´üPA³Ç»ãQ²`µq›_EQß{ÜÌ_Nfi¤,ØlÜ7x†i‰ï©q3O|‡ Ê@Í&!†0²›Ðy«†û´%œ·û3ÇݪcoëwÕýÊ}¬ó GI®Y'yFú+þ€~ÆÆ0ÊaÕ¶ã«'àp£uÁ¬/°nÁ F9¬Ù6áš…ßÔ«ˆ GÃ!ŠRT³««î)7RØ%°‚ÉUý'÷Ir”ä°N”©òè´9¬ÓæÚk8ú¹·…£ûYmÈv…E) *D?o H<¯Îv'F9¬Žþit¶?ëºÃÌI¹²Éä(Éaʤ|鼿…êä(É•×p~÷JüŸm+`K¨¸6‡‚‰)z¼71ÊaÍ6Þì:T ÖÍשå(ÉaJËÜKçjôH:c\{ WÚÙý60¬…­®jy£Vm½ SÌ¿?­;,x?*˜µØvÄ(‡5ÛVõHÀ·znJÞ¡˜\Oã}÷?Øy%¹îy|±zŸâê;˜îoÏD;ùÎ×Íßftc/'ߨ‹bå°jÛ|ý&w0€¹=#q© ó¢Äµ#Ì“yå°fÙ9ùRas. <½„í9 R¬6.WEÅÙ60L<pá'ˆQ«¶­³±i î[áä„©àÀEAÊ‚‚Tù°†T¤Ú`“z-£&q6G.4„Q«Sf[®uôÊbê— g8Óüî^£EÊi4U¤A‘6EÊý£ªHƒ"m Š”ÝU¤A‘6ÖÍå͵ýq/z{|WÚnGÿdAÊ‚‚Te3Ò¥Ú  ÕÛÛzÀôæÌ‚Y_h[Ÿœ F9ŒÛæìöã¶Y¥WV] bÜ6'ö'‡uC²Ã×­õƒ´êËe­s7«ú‚·›·/. Rl6¾âJ_ÜU8¹9Cˆ¼¢ eAAªÿ›GaPjƒímˆ_'7›ýú ×ü¦ T%æuDa¦Î눼§‚VJ·ó„AÊ‚ÍÆua«É³N>¦] œÅûÇjÅEBÄ…'ÚR…'Ú`{Bºáܘ¼% žA£$‡u*·¥T6‡uÚ\÷p9D=°oè=(~jñniåÚ™¼¥ Ëýìú^@÷½ ™æÆ@¡÷ Ÿçõ£kîÆ¯ƒf7÷"£ ý?<ñôOJQøYÖÃϲ¨ëYëÿ¾ß¯àœ)½êa ?Íœ`øiÎyù»N.gi`˜þÍX–ë c”êm£y£ùHÁnC™|;C£^U ýu‡(JQÍ.£(› £_” c”ømfëÄ‹{µ\Ø/1Ái×álzèäƒñ/ä¼Wý<ÿ‚Ëæyß+{ß“ë×íŸ)§0F9¬ÙöjGpwýKÛðž¯ûÞJ&n[„¢U-›çÍwþòå=ww€Àyƒ:-Õò?v§e”¢Õìêú¾âìÞmj˜w<ï6…1ÊaP¤¼²U‘6EÚI” ÷ ¥Íá±´9¨Sn¶WeÚTicÝlÆ]úZ±ã/ÆKüެ[ìî«GÎ-ŒQël µ²5îxí”®Ã{–îk¡~ãìuå3,Rä&¿sö îxl䈿QÆo ¾<›¥ÜýžöÉ—×ÿw¹âÑBÙ½†ÕŸg¦íÓY”g cm<´uª<¥Ÿ ‘#é0VŸ¶ÞQªóÍQ’«¯nšÃvÍùrÁ~7Û¹“Â(‡A‘(ËíicP¤ÕùµÎ¯Kô¾è±€ræKˆ£ eÁf£”Š2Î…Âucã;¢ eAAª÷ÓR PjƒõmlrþL9‰ õ™f´›Fé‹Úú¶´¯Å”à@H)|Ûrø/– h.%ž ˆ‚”›{k þ ïïy{¸A¯¨M¾=„(AyÒœTåY”gAxô$_Q>‹ÂãgQP¡´¨-ê³ 6g¯R‹/A40Jú“ Q”¢ª]ûwªÛ" žaÙÀ(0õIQ”¢ B¯8$ÚÔhcP$8ZM J4)¨07йAŒß÷—[-GPÈÐê_xåŽ;/á) ǯñegœ—¿ 8¿õ—;¥$¤v3鯮÷WFW  %yðŒQ”¢š]ÛuøbzõNqŸÏõWA±Ðóä>IŽ’\3Pê"ÑÚq’[4äsœúÓÝØ1þþüAÐçñðçê*Þ‹0 3®c>1ÊaͶëÞ¡˜-Ööb¶®âÖ“qu^Üåµþq½?UÑ­:õ»JÛ*p|ÿ)ÎQ’û“äºÁÝÆì\_—‹|Ó3ÈQ’Ã:åÚ™®Óæ°N›«¯a]c=cYA³ae,à eÁÎFÙC–s{?O=6ñܺ±‰÷iôeç“£+ô/ö}eãÁMëžöò]®Nkƒr ¦x>Ûü~•(œMnÃÚÓ\•” F9ìOkCÒíÓŠÓÈ÷¿÷¸ù¶¿F9¬Ù¶6ç]¸Ë¶`íèruÙ1ÊaX$ò;<*mË´¹?IÚ'VNtól ZgcPdò$_ÕUp\¥g§çÀ0k?a¨ F9ìOkC²f‚’“·ˆ¸ò[³b–Ý b”Êȟ¹a +rw'ü­"FQŠ‚ AÏÙ“ú¯R³•ÎÂg~eÇ Ÿúa²`³±Ë¼ùÛK fôÒó¶Í F9¬Ù¶ê›ΛLÜpÖôS¥¥ù¡Ú³ö5 ‘rØŸV‡œg¸TõÖª‚Í’S‰[«‚å°fÛú È\'cÍ…ÊÎÆ0HY°Ú8㶆Éú8¦°79JrX§œÖuÚÖisí5¬™$SÁ¬Š²¢%9¬Óû¨8‡uÚ\÷¤lƒáÐ,6/ c eÁfcW€ðvH½ÇûuBe jÓ<²‹¨ž~B½ö>µ_'FQŠÂ §œDÃM ŠÙN‡F“‚M *ÌbnMª›À‡°(©ï5íY¿N¡ÀZÔ'EQŠjvÝ¥\o³ÀÀA+­ýòÐçm”«Ë£_¼¬ÿË–•Uu]éšã¶e¿!½iûµƒ‡(JQX¡T…×ZVhQuà×G·¶ò¢¹“}4Ú®B¦Fm%š¶÷÷€|ŽÁÆ#iOÕªP’HÜ÷£(E5»¤KyÕ{·ƒ]\ØoêU…Ð÷ãE)ªÙ5/‰]|ïƒD@ Ñ×Í™·$_áW¤,ØL\­µ-ìþG—ñ_ÛšŽo@F€raÎ2×𤌴ô+ø Q”¢ª]'¾²­;M§õqFaZžæ§…i) Rý"ƒ‚Tlo£wK&c£eÜW}û1ŒrX1íÇ;$Ó”ã `r30>¢%¹fÞw× ôžÑÚ{‹Q”¢°Bï-­…z³*ó÷t}ä‹e‰ƒå°:;F±áGo« œ¡z‚Ÿ,HY°³Qî2ê°íe¡”ƒÓÄæQüÔ«êjÏò¯ÜýÓž'Xá¿Üt½ù_S÷b%9A'—N“tš\{â7Œi6)_KxÏ—jß4¾Š; F9¬{Ú+â ΢\ñó¢×µêÙE½aOë•Ç F9¬Ùöþà±ËÓ¯ UÀàÎ~¤,Xm\Å[rÆ*Z•ûgÊ®»Š_ëÓçÙ:·NRw3J¡^³S-ùÇ(JQÍ.鋺Ÿ?¯ÛÖÖ+šÓ÷ûf·ˆ ÷J[ê—ˆ‚å0(R©j"m Š´1(RÙ4‘6EÚ‰¶g‡Hƒ"m¬Íå뎠Ó%fµ s¿=†Q«¶m]uÁß6\°.tµ¬F9JrX§øQC§Ía6×^Ç< ‡;MëKøB¶!DQŠjv-VU—ÊæcµŠs¸ô2Ý*˜ü³ëÆÚ ðM®F9¬ÚvšêqV±‚VHϳŠa²`³ñ]•uU³æóúÆo4iT0=À³FËWlÒÒFA쿊Ý.X´T½ŒóóHðtOÜJê“¢(EA…à&¶C¡IA…&U~:€õI¼Lú°W³L¼•×,óüÜ(]#AÒ9% |¢ ÔlÚx…ȵýW®Û<\@¤,(HUœX]ª Rm°J]®Kz[õ¶^ØÎöÖF9ìO«3íõ-ZW¾¦`ƾÀ³5AŒrXµm]p¦MÍ€ê•&P3 1ŠRTµkëNCÿ–w;$bºRØôbå°jÚ.}µ@·mÿªË¸ GINÐi~¡OÐir‚N“k¯áýu&ß¾P@Ëí}í Q²`³ñŒQ†‰Õ\{Y±¨¡g—C)OÈYãå¿û¢6¸-Ç»ÕS“ŠrM玷v5·½œ×Qî <†é†ßG £Æmó&lŠqë÷Ø=ÀñôR‚å°?9¬ŒÉ:¾ÓµÈ׫òìËö OHš’8‚(5›ôK±8¯}SÖÍp–ÖŽQ”¢š]ÝO`ÙùâaV¾˜%µƒå0,RÉç©*mË´¹?IÚ§šy6­³1(2ù’¯ÀÆê*˜—v´}ÁâÁí{¥ÈÚLpWA£†m›rJCá&†u¾É£ºö…’ŽìØÇ(JQÜ®` p-÷‹¢ž ×Ð_þV¤¢qO@šÏ!¬>mùFÖ*å0ø4{À§ÏbÞDƵ Z¯í„AÊ‚ÍÆ-Pü¥Çq¼d²Ÿ9œ=ë«‚·Ã(‡A‘ÊUM¤A‘6VÇ¿t½YÆ´\Å VY bUæv‡ßÁ„TåÄ–^áÜ r”äš}m V˜a[Ë®*·Žø Q”¢š]‡˜&UÞöÝĽ0±î;¾Egˆ<Ì›™ÂFyî^Ñ®Z¢+ÔË+RKt1ŠRTÊ.…&šÃ)7ˆ&†GÑÄ H°Ç:4š”hR|;“üܰ–ùuÅ©AŒ›æÄþä°:$Ûw œ;Ç„­ŸŒ1ŠRTˆ(‰65ÚXý]øÖ„±ïý9ì çô{†Ym'üDŒa”êmwMÓ—f%up@£(Euv½¾]ë0û7…}+ R¬6žMÈôÏ ·—æÆúSÔ#+œ› b”Úm»ÔÕ¡ÎèʉΞÓQŽ’\µo4{®qœú.‰¤Ë>Þ:£AÍö¶ÿ…AÊ‚¬ÔæñŠö‰§ª]ºýñƒVŠ7Å*tQŽ’Ö©´h¨:më´¹ö¥»ãµ‚sÌû«‰“ƒya r”ä°NäìxtÚÖisí5,Ý•UåÞ×n&ÿ´¾±æËùfu £ÖD^¹Ï]pÝ·‹úÝÆ¶Nc„¢ÕFÿòY|]=Í®ó*PŒRˆü»AÏã— AŽ’\µn]Z—NÀ÷X w'ê~»îïıÄK<#×m„5) ViJzûy‡ zxïø›u eAAª}ÑYjƒ‚T,oãøÞŸÔ E•“}H°Ce bÓ\¼Ï`’g»Ûæš®Ôôp꜕ n^1Ø=n~nAŒrX5îö—¢¡Ô|ÿdsð„/ØÌ÷,ý„b”ÊmË(\’U·þBIÉ$¼õÇ(JQÕ®¹³ËíJLw †Å0ÊaX$ˆG="M ‹4±:þÖŽw­Ÿªö[ #rSR¨& Hˆ¢Õ캾î›ÄÕ®m]ìb¡Ó .Ì´(HYð¿žðp3¶ŸÛCˆù?ÏïªûÎùþ×D r”äîð$Ê :M®¼†õ{Ì#g`Ø+¦ÔÏÅ F9¬Ú6›61±§°®üÇ <ï»P’ߊßvŒ¢ÅírÕ°íø]ÝÛûa¡»)ó7í³6»"e jÕqovÁõY91üÞX£$WìÛ¾÷sŸ›

      FQŠ*†íß] ôðk+”´¤ñK‹Q”¢ª]ã±öªa/_WßPƒå0(R.*©"m Š´1<’þ˜-Êá±ô¡Nn¶UeÚTicu6ÿ~™Ì¿m œca¥9JrÕ¾å¹ÊãÚ*wùôAŒrØŸVÇd©nWr?.wËu~ zåe4÷"Qj6cbÙóýysב80êµ+kgv¢ åyåY”·gäY”gAPž7·‚ <¯Ãx”˜7üÌ a”Ãê²êW£ß#(Ø+q£Ÿ´AŒrXµí¼ï=O°ã\¤ºŸì|ÿ¹¶]ÿpWÁHõ§/³*ÀP‚©6í«X>Vfl¡PµH™³1Œr˜ Ò—i c‚H kã/þà–1© h]ƒzú ²`±qü^_¤qf)ŽéÉ¿íùúb¥¨jØt¥_Bntì^ãùâ‚å°jÛ¼ ±¸6 å:`¦¼LCe &ïšËÛ™ú¥ÎkcÿRg§/BQŠª£¾’“øÎJ Òó ûóX A”ª¼mb] ð3VÓÄÆ0ÊarX}_Û:%´Š¡"¢²Rbå°*òüÚ²ifo-QªCv[¶7©°ÿo/ц Œ_ £¥¨j×|ÌÐ{¦|§Ùu÷# Rl6îSàöòôS:ˆQk¶ùØáɹdEJ0HÛÛ…¶µY Òf1pÜ|¹õ GÎ<÷ÐûD±ÕY g1Ý4]iñp¹bF¦GH£V­+?ièóÚŽÐ[q,ƒå0(ò›ÒhRP¢IµÑDÐÞÔôþ÷FžÃø²UvCª/Ë“9!ˆ2P³img7À)ÐË'Ò¼ÊD¨Útk8|(ždÑM¢ Ôl:§ð.:Wùª«üz+†:"äÄ(‡5‘»§“eZ¹ÈF9¬¾€©ÿI#÷Z1î)»h”£$'è ‹.&'è4¹úæ½+²[ɺQ‚?г‰!ˆ2”'f5yåY”'&,4yåY”g%˜¡< ‚ò,¨ÎØu•gº|òÍûW:ù”¬C¡À¤db¥¨j×]Ôv½âyŽ˜P =@fn@¢ ÔlêÜoZ ¡‹#½D¨Ø´|¿¾Þq|¿ö½µ’Ϥ{É,Ý‚(5›î/Öâʉ÷EðQå(É5ûº ìMòHª9ã£(Ea…ïâ—G¡Ea…U~³‘¯R·P¼† Ê@ͦSú,«2Æoe ëËøý*au…(JQP!ú$§C¢A6Eºãš%ú7Rã÷« sƒhRmï[ ó?0ìµóêå‰ F9 ŠT2sšHƒ"m ¤] ÂCisx,ý©§4 i2m ª´±:›·u ¤vŠûrLßüˆ•rNÇ0ÊaÕ´}j='fˆ40 „J£(E5»îQ‹yV…B±òÊbå0A¤·Ä‘VÇ¿¢½iœé½¼,O‚(›Vãg¥ð ºÞ)çPUa¿¯¯;¡ðòÀŠ©¹G^ŒQ”¢šaݼðf d´oܬE) +ûU……ZTx<|…ÇÏ[W|Pâ>ª ´ ¨Ï‚ʜݾ²“»³b3~Âé›ñ³šø@Q”¢šÂe„‡ùÓ7Ÿögê,ˆQƒ"岩*ÒÆ H«3dÄDO]ÞÔë¥é™ËE)ªÚ5盛޽B¹"‰Az&;ÌCe f>OŒ7|o8/ïËxÅ1Œr©ÜßÖDÚicuüÝv8ã‡0…=8DQŠjvé?º)P«ã¶?ý¶¯Ý)ÄC·é‰º… Ê@ͦ« *f´ óÝ&†Qk¶xf eŸ¥qì'+¬ øË€ú¤(JQP!p M *4)<†fM ¢‰áQtWШ%84š”hRÝCm«7UØìƒ%¹jžX‡ô!=Í8¥ƒ%¹bÞþ=„„“n_åÞ;¹n`¤,(Hõ7p„AAª ¶·qý ˜3k8p e‡åÔf£VmEZ]û<:üŒ/RÓI¼²‚(AyR:I•gAPžáÑóvXÆ(<~ÞÊგjU A}Ôæì*Ý PÒ½”Ùb9ûòí¶þ÷ yÖ×F óö }2e (OJÞ«ò,ʳ (OŠbTyåY”gõ„@yåYP›±úïpc‡q7~»‹1ŠRTµ«‹ò½E‚›Ñ›ÅY>ÂP‚éìé ­Þ–®}[pÍYOì•ïÐÇAŒrX³­w—ítX5nOýVÐÁÞs¢ TÍÚOe‹fî]†|êÔ@” <±gE“gAPžUyêgÑïÉw²©`(Á moïÞÖf1H›ÅüטÍ] $< gCe jÓ)ôÜ©>æ)ü°„¶£_ûR2?­¯ò[uò˜WLŠñ¨1ÊaͶctøÎ+7í•íò }2e (Oôh5yåY”'NBMžAyåYý?PžAyÔÍØ#•«à{ëY°0HY°Ú8î—ßéëå8¦/f¾á„(JQÕ°©s³¼M:7de˜'£(EU…óucð¨Ûû~èø‹Í¿'ØØ$Æ0Êauìç.*ñwŠ}*Ç]Z*”T%ÆU›E)ªÙ%ý˜’þ¦oJªß “1†QDzƒ˜ ÒÂêø¯Ý¼rU …Þš6±bå0,ü´´G¤‰a‘&ÖÆÿщàí>¶okyoû·«Îš2 ¤†×¼)#Q‚òÄ&Ï‚ < £罎£ðøy›n”¿i-ê³ 6g¯_{s¹Á :5 Â¹¿c¿~šÅ™VöZVzî/ˆQk¶mRUÛhŽëãêNwe`ØY5ú|ªF9¬‰¼î’«Ù¥yd/-Q‚ò¤“*Ï‚ < ª3£Oûxk³RÓ>¼ò‚(5›ZÏ¢Y7ž<}2e f“ô{žšƒwv©6oYñf„Çe»C ¦ÙÓ;¬îþµ‚ÉmWØŒr”äªyãèðœØb,DñÕ£(Ea…ÒÜÕZVhQmà7±º£Í«‚¡ØP›WAŽ’œ ÓÝå&W_ÃäH4óíjRSÂ~(AyÒ]UžAy„FÜëÊ—ß`fD*f´²ŒH£Vm›§°»qÞ¿7¢º…¼¼yJ¿¤¢Õ7Ce jÓ⨠ð©~1 ¡F™é†LgßÛh-‡íïOìE Ê@Pžèïkò,ʳ 6ä«ÜI¨xºçzÌ[±8øÎèÅ¥0HY°ÚØßýt7œʨŒ¼©F9¬™vw¢ÄŠàgŸòVq ¤¯jV& A”:›¤`LkÇzÙ7¤ŸÊ¯É¢(Ea…Þ–ó…ZTø>pçñÏc̸†…’FQ82cå0A¤· :ˆ "-¬·yx;T d¼4¾{„(JQX¡èÒ« - +´¨:ðçõI3WŸçÀ ÁÙyBŸ D¨Ùôhn9»öñ¿ï·‹|­„¿ÖˆË¿P7ßE÷ü1›¤ûÍÉ„(u6Ù…ÐOˆtŠÅ„Hœ£$WíëÂs_©²2z;3» %˜jϬn2èPþ ]_Õs°ƒ„9Нƒe fÓ©ýæ*%5Hˆg))Qª6u9_Ù¿2†§Ëgk¢ å‰óU“gAPžu#Îù5Ê•@¤¶¼?½À D¨É[6¸žžGö<³ÅÃ(‡A‘r²@icP¤µÙq7± ûÙ=þÿ]»ü„>ˆ2”'Fš< ‚ò,Ê#3MžAyå‰î¦&Ï‚ < j3Vúz„ê/â—T‡8†QDúîQ„1A¤…Õñ_§½z‚¿†£o§am!;š‹Âå0,rJª´9,Óæþ$9hßž3ÏÆ u6E&ßAòØX]Ûè(rnS~^VJ¤v˜^Ü|fRÃå°f›ïãÓ;·íƤú*‡1ÊaÕ¶û~s(™Úaú-Æ—Ã(‡UÛŽdzZ÷lÃ^~™Ö=Æ(‡A‘rfOicP¤á‘œ’Cisx,mê”ïª2m ª´±*²uK¿c™åÚÉÀÒúŠ#@Ø{ešÂ,³ºþÏÏ5Qrw§µbž) Q”¢šYW¿½žq›øìn è“(5›\CÁO¯ñ;zêËìWÊðUØ;b”Ѿ‹DaLiamü÷neZ”;~¥¾h±Y¡\¥˜AzŽÅœ!ˆ2P³©Ëûî9ü@ã!}ã—B½H©G«£ï^å6uw¬ýqÎ8ÝíD£Å]#2󱂔›…ç&øÍz‘ôç_µ0 Iã|x¾ØüšÇ3`>š1ŒrX³íÜìŸU‚ ¤Öœx%(Qª6-c+j[u÷AÂ@ ¶€ D¨É»Ê|ºÿ°±!@” ƒ*&­+\¶b”êmS÷¾¼}!2Zø Q”¢°B1í£*´(¬Ð¢ÚÀ‹©-G2Ý­ F—ïÕóõÉ;õÐã½ ¦Æúd Ê@PÞ{§qȳ (Ï‚ðèI~>|…ÇÏ¢ Â·³ëhAPŸÕ9»\éBé† gCBe fSÿIw†³`Ýèjåˆr”ä°Î%©Óæ°N›k¯¡;ôÞSK8RnH¯ ð%Qj6%›µË*¿ç0®ÀHجq 6QÂòÞ/ףϢ°@‹‚ ß»¡C A}奯/5|Ôæì£÷ËwEõ/ÖeýM%{-+½Y#ˆQk¶­b•é¹Vã A”ªMÛ#ç»ÒúëXT—®k;®ïÜŠa”êmû ‡Q¿˜ðCáÆcâߨ;ì2f~£$‡u.I6‡uÚ\{ ×f8˜nj¨ž¯ÓF9¬Úvd"tñ[øª?¢(Ea…Þë/1 +´¨:ðçî¸ÉJžÒóó¬ä‚(u6iWmp¬87|«V_”óøÝþQƒ¬Ãĵ€yœùUJ×ÙT¹nöºN§0HYPzf¥Ú  ÕÛÛXñÜÔ‹{Eýzý"ˆQ«¶Mý‘/ÇÏÒ™Þá‡i¤,ØL|´6yï\ͳ‘ÉÇÞŠ2Vs b”Úm×rõÂ&ëˆ*b?¡O¢ åI™WUžAy„GO<áÔá³(<~J§©*Ђ > ªò®ëû¯ïà”ÅÍô™u)Å(JQuU-] „¿³¦`ÖñÂ7ÒF9¬Ù¶qÄwNîíOçD¤,(Hõß] ƒ‚Tlo#QE¼!W¦xx2z¶ˆE5†LÕ¶Ž¿çúQ·aèÍ-ÜŒa”Ãê ¯«#ìb}Òƒ!Ö·‚(5y¾ŒU&í -ã3ïÄ(‡A‘(Ìsˆ´1(ÒÆêì(Í©F‰žû˜ÛVªß„[&vF Ê@ͪÉå”~9Öe(¼]Ïó>ê­8÷;ïóøÜ }Aëµ}ʲÆ0Êaܶh¥sÞéàT·á‚ÙJ~JÄ0ÊaÕ¶Ã(qÒyµµéqÒĶÇÒ£—‰íÞˆ2”'F/š< ‚ò,žx$©ÃgQxü, *£M A}Ôæl÷ËÙV&u`>Ñ7nS¢ ÔÙdGܼg©@B›îY A”𼫩Ï2ž(Ša”ÃÚÀŸ§=ÙÝ´å{µ;9]åaÆGޏ?Ä(‡5Û6~¸º"¶å{]s :ˆË}×}{tàà$Ù÷ä>IŽ’ÜŸ$Wf®›èiŒìP|Lì,.ãüú²˜Ë]¬`笸Æ0HY°Ù¨~óoa’ª¹x‹Q”¢°Âw¦Ä£Ð¢°B‹ª §ë£+FÒpY˜ÄF9 Š”W›*ÒÆ Hû¯aŽøñ`ÐÜ•u½}ƒ’æ"î{‹Q”¢°Â÷\ô(´(¬Ð¢ÚÀ«·kpí~™¯4K°édY´(w‡ßŒ0/psx„¡ƒ´‰¡¬¢Íb6‹ãö?gApä,É/í*ê,‰³˜6M·5U¹¨à;)¢W. eÁjãÚí·ï—&ìf7$”.„Í,Qjò®6cëP]ÙàÇ0ÊaP¤r¨j"m Š´±6;ºŒç$b¼‚Z°×¯WPƒå°fÛåž„’9?ЮÏHO±°òѲÍ~ˆ2PµiëC ɨ—Ÿ¼õM¥Á•a”êi»~U0­PRâ]0-†QDz/Q1A¤…µñ?pV@õ>pŸI7%ÎáTŠa”êiçõYƒ`ðP(i†¦Å0Êa‚È÷ q‰´0A¤…µñ7ª“¸ì´œ+ü9êpÒç>«Â… Ê@ͦ.“ìmš+$ò–´D¨Ø´~=¿í̼üu9ŒrX}óÜúíÖ£aÍ3p•»‚å°?ÿ*rÙZãÄ0ü´Àûrðyöd†³±6½ôÏ áèîÊŸÄ<´µ€¼µ‰B…²€œvŽ„ Ê@ͦ.ýämÆ*>æ;+"e *ïþÙ«©e{æóƒå°:ðÛ¼qß·™°óÁ};U¤,Øl̤” %B8££(EuvI4Ô0hëà 1mË£Œ›2rޝ0#†Q«¦íãâXåjÔÀ0±hñÄ>9ŒrX³mzz®¶µ›j绫k-FQŠ‚ §œDƒmìOC¶ÉYši6…,³)¤07ø¹±·©6ï;×ÀÛF^ #“Â}ƒE) +3)ªB‹Â -ª¼£Xô:%<'í댈@” <ï-ìåYPñïž(6TLrï>†Qk¶]Í®»Zƒ^G%‚>ˆ2P“wÕÚ-Ÿ{çCå°6ð«çÞ7oª,˜ÑìÀ›*ƒå°jÛ¹nñ¸ìÜFåUßOb !ˆ2”'5Šªò,ʳ 6äFNEHšž÷¯x[²¾k=z÷X¤,Ølì¾vú•fãÆíS?[þ„>ˆ2”'žcš< ‚ò,ž˪ÃgQxü, *ýM A}TæìÖ‰½]´¶]ܧ‚(5›7büŸÒÚÊõ©wÖA_ù?à–H4oã´yŽfÖ,Y0ë°dÍ’AŒrXµmê&–·u¼@RÐ!̬E) +|‡R……ZTø>^·)æÊJ¸±x4ˆQ«¦Íÿwfolv$Ûø=ÖD¨Ùt¹°±ìA¥Œø—¿®F9Lé½Íđ֯ÿq­Áÿ•£Í“R93±¢¼+V°Ø)¸vqŸÿžÚ¶îŽ;ÕÜ‹:­õÎø‚½Î½3>ˆQƒ"•–M¤A‘6†GR>¥õ¡´9<–6u*Ñ£&ÓÆ Jëf³ã#Ç˲ Î.7$îXê“Ä^£ÄuÍ‚ým¿~× ˜f­˜^Ïä‰Ö F9¬ÙÖ;¨ïaü¿›²¾‰ÅÀFÿú´ÙÑèzða @ðIÖ†O² l“5ë±QŸe­ø(ÿ»Ž3ÖɼÝ?@Œ] %­fa6Å0Êa‚Hïâ &ˆ´°nü[àî¿@¸½¯ï­ÃmwšÖ™fød<Ä(‡u¶Mp+Ðû„ &~¯æ‰}rå°bÛþý¶š†Õ70HÈÉãJ^¢ Ôl2>pwÇJ¬—ªbÒ6÷Ä>9ŒrXµm4zañ\,Ø{/Ö'c”£$‡u.I6‡uÚ\{ ǬÌK| îÓWï V[Á¤™"¬·F9¬Ù6ò¯Ã“²öc–#ŽQ”¢š]«Þ퀳J3Üý‰[Â(‡5Û6 ê·/ &¯m‡Öî«>’~ž­?Ïæêk˜…®½´`â’{bŸF9¬Ù6AÓ´†•›y= 1í9B\£'Q îÖÞç>N £örcC¯'¼Nüþ—ÐÈ «­ÿ}4«„ÉÃ蟶LþwMè¿ÍxqjqÞ¾,§§šÃ×X £ÖLj:ZO„A|BŸ D¨³ ÷LnY¹«$-1ÁyéË Þ®Žém]¬g"Qj6yš;_1Ðz_iØ€'ñËí¿Üú»î]1Ž’\µnëjTþ6þ‚u.«•<ÊQ’Ã:—¤N›Ã:m®½몤æÝœÙÃòŠó¢ eÁfâ> ñ^zÝ÷GŸ´÷{'û>õ¥^oF²bR€3’AŒrX³­8¾ÌÍ)/Oð/¢ eÁfbw”xû d´Wð³$DQŠÂ Ť°ªÐ¢°B‹ªt'Âäßi.-0û7ÚF9¬‰¼Ãû'´Ž\b¢ Ô†Þ ´…S pï­Î8¢ eAAªÿ*aPjƒõmœ_ÏÍMÞV0#Àç=hAŒrX³í*i9ï ³†dã¶…0ÊaͶ=•U;¥üd„CÓK8RƒÏ£$‡ŸgëÄϳ¹ö®ºL(Ø:Æk:;»;Žé5 Þ‚Ä(‡5Û®þ$ç®aÖ*`×΂å°f[—:ñ^.:¦utŸ‘ƒ^ßcÒŽðD¨ÙÔ»­b ó euH3·0ˆQ«¦Íw¬ŒÁ+×íX.ß0 R¤ÊwI ©6(HµÁö6„¶*½%³`V>µd1ÊaÍ6Ççn˜ã›=|šïÖPW)£’©cVv´jt]àG”Ù×+aK»¸Ä(‡u¶aW+…èõ,uvM9Lxš÷"ekO[f÷z¡ ÔÞצ½/\U)ð¾b±êÆ8Ð;Öoëf³knÃfÉŸÃ~x£}Ú¤u·ãÂ`êžt¸_e ö¾„Þeãè»13»ÂϾ GIëT¦±ªÓæ°N›k¯Áñ¥¾®]ÏÑ 1ùš$»nŽZíqBÜNyº]_ëØ¥³l»¢…ß5³µWÃè_Ÿ¶ð"šgÓQøYÖKÃÏr¿êm==Iƒ‰¿³UúòƒÖZÄ(‡5ÛŒŸ?ËÏ3zbqÉì8„óÝØŽ%á{V ' g}Y„ç£%¹jßyvÁ EÁÚ1ï‹?cå0n[´Ê}”F4Ã×À¹/Æ\<´Ê/O𚢠eÁfcŠzkuç÷ëi&ä%Š‚‘/Q1ÊaÍ6é2—î>ÎnP`þS¤,ØLô|»áàö¹2Ô¶ª/ávµþ° 3\m~­(ˆQƒ"åT˜*ÒÆ HÃ#)Og}(m¥ÍAò±¬Ê´1¨ÒÆêl¾¿Rãl›8&¹E¸·'ˆÑ¿>íö} œrXÉǵ 1ÞaGòy_nê=ؽ<§ñrœ=ŠçPÜ'ÉQ’tžI&'è4¹ö¤ˆÎ8Y gúìüd‚”©v}Djƒ‚TìÞF"'R)#ɬcVq¥jœß)mW8SÁn£v4a²`gã™(ëTÌH>pÏýþáË[ùÓºÒ˜â!­lVÇ0ÊaP¤â!i"m Š´1<’Ф¥Íá±´9¨Sñ4™6UÚX7›×@Br`˜8¿zãž§¡7ààlì“Ãè_Ÿ¶¸®×r¯1† O³ŽáiîÓ§\9“\[Á‘¾d߯L)ª{֘ɔÃàÓìŸfcضÀLrõu¯s -P5öN±ÖÔ›²2a¬35FQŠªvmïVeWlÿö^¾·Ûð¼?PäläfÙÆº ƒå°fÛõœ÷;†YCrrÛBå°fÛæ¹€ýʈRå̈>Ž>úðVÜÎcjÅçû‚pçf^›Ö¹‚(ayïl¬GŸEa¾j‡@ ‚ú,ÊK_jøÜ£w^ífâz¼¦úÊê†AŒr)_‘TEÚic×ê?ÿ÷ýv»7HøÁFá§"µ"^ÃD‘¨„Æ(‡UÛ&ÑÖUhÖ—‰ªHY°³ÑÕ×x¼,|%dÌ#æ/¦'ÏŸyé:*óÕ³ï|å°ªq6«½Ï怃Ö]ègC¤,ؤžØìf]¸ÌDÊ“f‰*Ï‚ < ª3dYq>E¾Cò2ïL?ßUwi©{låÙ!ì²Q²`µQêMÕZÛ&FÚOì“Ã(‡A‘(@wˆ´1(ÒÆðHÊA›>”6‡ÇÒæ Nt ;dÚTicÝlÖúŸïqzY†³FnHÊ=èOz{Úê½é=!>Í;t˜ÖveGy)ŒQû“ú!9•Éq{ÙÜݺ!ar8 )-«?Ij_R)ɇ\¸£u7)È¢p<]·R] … z޵¶Ðs,Úc-Gh¡'YK=ȽìïVöX¯EÇ]®ÎjqŸ$Gÿþ<-õœî”à“¬5 ŸdAØ&kác£, >ËÚ.à£Ü{Ì6»¾¤ñ¨;4ÌðGŸ…‡0F9¬Ú¶O’·-—þb>´†×•Å0ÊaÍ6©iÄXÇ«>èsTÞ÷8|žJ£$×Ù×oÈΦ²_nò¤P66W fäy6þW ng‹õƬ峳ÅÃ(‡5Û×ì/®4ë®Oµe±uåÖ…0úǧ¡N9¬Žå¹aoØØÁÊ¿{c r”ä°N¹ê§ë´9¬ÓæÚk¸o·¼xíí_£aáYhfësP‚å°jÛ8NžÍa~î`'ôûä0ÊaP¤œYREÚicx$•3DJ›ÃcisP§œYReÚTicm6/ú;@­u ×êH c”êÈiÚ+ö}m]×Y¼nÏÌC¢ å½Ý®'ô_ƒúZÞévÀ“ƒžœÿª+;úCiqÎ(ü@Z?Þˆ'œ47fžÛü¨ r”ä°NåÜVuÚÖyÞ²¹ç2e ö¯¯Q£Æqîö9oÇrÃä÷æáÐ8 dðy”äðóløy6×^C÷kǨ»56ÌŠYI(ˆQ«¶-ݽg„ SåÆ&iH„7Ã(‡5Ûúp ‡ãœÂ™qè„AÊ‚ÕÄÕøhí³§j`˜8YžØ'‡Qk¶”ꬎ#3w>pn}çÁöÉa”êÈíj miæGÝi–R b”Ãþä°ÿ†OVc•o ŽˆÕyS?'…z:$ÝD=§QŠRVøî¯ö(´(¬Ð¢ÚÀß¿ËÌ=UÎjy|íÉQ²  Õû‰ˆ(HµÁú6vëÒŒàáßœ}^q—; Rl&ŠÍ–z¯lÍÆÛ) v6ºª!ÇËBW–›G¯Çèi>z%mŽ>˜ ¸š7§¼yÁÙŒ‚”;g×$}½Àr/ÆÈX¿ÞDwŠMÞ3â†^δzDD úÇ'­II9¬Žày}çôå?k]Àzù³Zp¢ Ôl²ÂjaS/œyàñM= R¤zoý'@Aª –·1}/¯6šŒ©œ<6.Ð{ó6ñDʂ½w‹`œ»Ùý_Çt¿ÅÔI ‚”©ÈqqIµAAª ¶9n¶×ãö–i¯èëæøª(8¶ûiìÃ>ï‰Y(ñtÆ'Y£ÖLÛúÀ›P¨Ø»¤$=b¥(¨Å™^‰65ÚXýCr¥qM§.ç¿9u.ÿeŠ›,Oê“¢(EuvMÐ0í@„ .ÜM}áÎÛ„^ áI¸Ú7M«à¨›N¡Þ‡ªºéÄ0Êa‚È÷0ºDZ˜ ÒÂÚøïÂ’ÖÓ1Ó¬þÈËsZQꞤÕŸÓŠ2P‹å‹¯»ÔÒ֊ܘóÚn¬ÿ ûM £E¢ÉáicP¤uã?Á n‹7$í;êÖvÓeÆ3DÝMoH衤oˆ¼'þ†#i½†[°‰»,z 7ˆQ«¶­ïnUW·÷¨„-.DágYó ?Ë= åkßí$ªµ°‡(ü,kãg¹çþjõ=©‹µë(·ËîÃ~—š¿«#ˆQ«¶m]âOš <³6m³º‡àbûM‰‹×Úc¥¨f×"L+ãMoû•t…xú¸°ßýêèL a”Úq»7þ:^­ÊÑËqŒ‚”«»àunÅ®ºÂæºÏZ¨°Ýå;ëdc×ݦÝh”|bŸF9 ŠT:Â5‘6EÚIÅR‡ÒæðXÚÔ©5™6UÚXÍ}Ô `Æ*å½õAŒrX³mjí4ß×òÆ]áÜôÞÎÔ;Oာ'}2ýÛ“„>_ýI?ÉoT„‚ϲÞ|”µ9Ûgؼ­H…r•§½ÜM5ß(5y¿é/Þˋ۾Ìñ0”`êxŸ_ì>kµö½­Ö‚(5›f¼0Œ¤Óiõ‰Y§ GI®3O]øB ©Üž•*X‚cyÎÂ`ªé ›2Zg^éiÖ¬qëAM}å“2RìlÜ=N÷Î_ß…YnðÎçf£E*.˜&ÒÆ HÃ#©8ÁêPÚK›ƒ:7X“icP¥•Ù<;§[™(Ìé.˜Uà^w”£$‡uÊ¥]§Ía‘çÍz{Nä±îi[`w§Ö¦Øjœ 8V8yƒÆ)Ï(GI®Ú7J™{Ý]©œ<0Ø_ ƒ”©vo„ Õ©6ؽ µp€«JI•zfµVtwqcà”¤Ñ…YMMãª? ‡J“šæq,Ä(‡UÛ¦«LÑ®RÁ©U>{30l•*7Oì“Ã(‡5‘ãƒÈç&¶lÓŒaô¯O›Àr£&<ÍZ¥ÂÓ,¬=MÚcÕ³5DágYK?˽!í`zâsžwákCjçß¼ +=…üƒÍÓò\?ÞuðG/ý€›jí²órNî4ÏÀ —Ÿ®å Be (ï=£ò,ʳ ¥ú³"˜×| r”ä°Nÿ÷Ó¢Öisí5H­`F˜µë=SBà³÷·Ój¾û7¼hÆÉçú“û$9JrÕ¾s<NôÀ01u'øÞ1Œr)ß(SEÚicx$ÑéæJ›ÃcisPgRfR¥µÙÜyüO÷8ü£€[祘¯åÅv‹ú¤(JQP¡iWQ¸|'É7VÆ(ø,{èáÃl >-÷0“*xÅ,ƒž%­ œAÆYÒ0HY°Ù¨§pº³PR¶ ú?Ô˜È[VLzv–ûò«³sy`ØËõÕk AŒrX³í†Doº­ •âàM·aþù‰ÓÝVï›d”ú§éSgЂX}åΜ›âNdñö„,ó• ÒcMÖ"‚(Ayb¸©É³ (ςڠ¯x'ÑêKÿUË÷“põcù œe jSŸWõ÷9ÌJþ²þá F9¬ÙfÕoqïQáÌje31ÈQ’«ö• GæîñWi·2ÅÊR…c1 Rìl<ÕYX®“RøÂ2Z·ßw8Iû=C¹ƒxcb ýÄ>9Œr©lšHƒ"m ¤’V‡ÒæðXÚÔ©d5™6UÚX›ÍÎßQz¹%뉟§ÇW›ñýmá Ú¬p ‡P£$‡u*ΚªÓæ°N›ë^à _ƒvå£@R犇z§}q]v)÷'åóN8 úŠ„¿¯´`–Û±ó÷Â蟟v,Êau$w±-Áˆ< h%&xý# Rl6?Ç÷¼Ý;0LÜÅžØ'‡Qƒ"å}]icP¤á‘Dg«g(m¥ÍAòÕU¦A•‘§IFÔî‡Å(ü,k[ÇÏrÇÕûJ0èÝp›¥Æûä0ÊaͶv¿2„#õb&œoÞW€¡Óì1¿#)ªGwpûo­ÌôÔøYä(ÉaЧ¦ê´9¬Óæº× ÷ù ÎÂùÅ©v±@‚ú„>ˆ2”'uJªò,ʳ ÷ƒÛ}Ce jSÿS ïÌÎn¾eɯ0HY°3qÖŽ3ìvJt°G¼Ž×ƒ`²gÄ ˜æ³±*rê~ØÍŸ=^_kðÎÿòí!à@ˆ¢…¾ÃTB‹Â -ªülý‚°Hgó# Â"‚”©þÏ€…AAª voC½Ó)ì'…zL{Ÿ: ŸûøZÙÖwþî@ÒÜdù) 6©ÛïÈl¹ß·%o[¹ÐF9ìOk¶]MþVŸøÆö¤F9¬Í±ýZ@£p°×Ô¼¿'9pLÈ<©OŠ¢Õ ;Ï„£¼ßÂÃiÜuYÛ¥(ü,k/ÁÏrï@Ënõw<ƒ¶v^Æ{R gø ÙKá@”:›°W¨Bëw §9Öõ¾âÌXVÎ<¸ùÆ) Rý/ ƒ‚T¬ocîõÛƒˆ'öÉa”Úm‡TÕë…’öVÜH²nbϯި_Ayz‚Ÿ,HY°³1Òs?pLª÷?±îi«ú´g_óÀ1ý"nZ{¿ìöƒÍöI0=ª 9Tì$‡ Ê@ͦ+ÇëÌ^ ³ÜÁ/¶F9 ŠTòGšHƒ"m ¤²Ý©Cisx,mêLÊLª šHñ£Z¦,ˆ5‘Ý¢ìc|{¾1³®Í‘ GIëT¼U§Ía6×^CŸ¥ó6"JHÞâ¬Y„”*Ι… Ê@Õ¦¾ÍÂ{§@BCîÍØÖiÓç”pN>r„³8 R¤Ú-‚T¤Fž(†1ïWH¨½wõûM8ÿ¾•ïÕDÛc6ùû8z{L¤,ÈmFBÖ®;ï™$êŽ~ѦP¯cG½h£(Ea…ÀõH41¬ÑÄ Hð‡F“‚M *ÌbnMªNàMüU#–ÛŒß×|דÁy r”ä°NäÊxtÚÖisõ5ìÃà½^\ ©*ê¡Þ^šDWƒÄ&îÇWp´WpôÉ‚ôïO”>½¤žÂ! ?ËLü,‹jsdÇwñ ¯|?%¿Kõ° &…b‚Ã(‡Uێץµ&‰é!¾!D Ê@Õ¦Óø~¥°ƒœWÏfÌ‹<7áÄ6"Ò›³S‡<$‚”›‰»±#?ëíÍÄë~ø«ØÏÇÏþD¨˜µ“°‹ë‰Í]ªêè1XÁ^Q°1ÊaÍ6)i«; …3?ʽ„0HY°™¸à 5-](ÃT{Öý½é`ºªrf”É6‡0HYPj—Ÿ©6(Hõ¼öñü2GM)±[Wd»ß‘í'‡Q«SfêÝXé@æ¾e¡ŒFk~xíÓ¸ÆãÆ}šýK2P{’øqÍ9 buçé7Qÿª>§Õ>±‰Ã(‡ÕW6ÏÒ@ÊU  \ A”šMÖ—^…S§pò¦%œ:Q²  Õ.q RmPjƒÝÛXðÛÐÏ"ue0+Ñßi”:%ô¾¾}6.`àÆ¾ý÷0qßÛ¨/o¿» î_1Lxš5–ÂÓܯ`µÁ¾99+-8ÂAŽ’\³¯‹z¾ÃAOÁ¾¼n…±O£EB7ß¡ÒÁA™ê´½¡Lƒ*ýß\{`ɱL¥µÙ|åÄ]òÀ /N©â>Q‚ò¤{ºMoÿÚA¹¡m› ‡×Ÿ4;ëV A”ê”Øö.‚~ω«{Ÿ'¤P›zBŸ DÊ{Ï ô>mÐ{JHqLî)K>ÉœçðQ&Ÿe|”Á'¥Œ Ø´¸'e ø$k"Á'YP]ñûw ¤$†µÒ¾/oÃ(‡5ÛúT›¿ãj7¨ç}€áI‰|‹ FQŠªvæoNá†Ø š]ï¬#6 Rìl”šiÕlHÁ¤`NÈRœw³wô:À~Z?#âgˆ{kœû)~|ÒÍrSÊš i¢Óøe!QÚH½×BX®§Ñú ¬×F9 ŠTÊQšHƒ"m¬ÿ‰ëJZ!¼@BR—ÁCe bÓñ½Ú$^~ðs½ð«Ùçâûä0ÊaP¤\*QEÚicx$åº>”6‡ÇÒæ N¹D¦Ê´1¨ÒÆÚl¾¾¥wLLÏ4l„XËIiCýIR}K¥¤|(¿‚||7+õ‡{u+hžô;ÓAþù‰ã¸»_e ø$ëmÃ'Y¶Éš"Ø(‹‚ϲ&|”{6– ³¦_ÆÚ±ññëþÒ|ÍùòI) 6õ¤&ö˜nêÕÉ¡;L1ŠRT³ëv³|MyÇ$ç»LAŒrXµmZ…²‘güpúG2°çLB¾HO|ÿ`‹²Vq¢¤@Á˜û°?³Ž«Ã”× ®‡AÊ‚‡`£Vç­˜´p0{,£ä—tS…_6(ª`ì“Ã(‡a‘KN¤‰a‘&Ö‰¼¦É)w­º}y·¢%9Aç‘Ôir‚N“ëæóu@nâ²{vä<Ä­·ò‡AÊ‚‚Tt0¸¤Ú  Õ›Ô»‰tœÆëxØ×gÆ>ˆÑ¿>MOr⮎Õæçãz£r¨s'uÙAµY¾ž10håN•öqD¨Ùd4-^éÒ•Uµfp¿4ÈQ’kæR@¢º}[w$Oîƒä¦^þ³~Ø…(JQÍ®Ch{3^wáÌF(þ¾£ eAAª]î¤Ú  ÕÛÛx\¹’ªÞ¯É¹ ‘¹‘3ÛGéN«Ðï¸Wo»©W‚Zo~‹Q”¢š]‹”âïŽR~A¢P ó¨j×q}ÜGQŠªv÷ÇßÇoë.¬8(žÜ'ÉQ’kn£ùå¡ç é¹@vF Ê@Pž˜@ÔäY”gAxôĤ£:|…ÇÏ¢ BqkÓZÔgAuΞ}€ïw'nLþΔàP9Jrżó;‰Ü@ÅP’E1/ÊQ’tžI&'è4¹î5XÍ0ø´® \—Áv¤,XmÅO¯Y r[J9OÏIhKÔÛ¥ &æVŸØ'‡QëlÓù®äý¾§”5Ön!(ÚˆQ8gA‚k´¼V1ÊamZa÷ãH}Ü{yÎÇæ~e”º'á6>­Ë3ÕÑ[¾šŸ%ÌÝ’.} F…(JQXá»ΣТ°B‹ê~®oë×ÿvµ×¬½/W{m£†ENI•6‡eÚÜŸ$íÛsæÙ´ÎÆ Èä;H¾k« ¿¨d|¸²l¸¾«…gŸ¢õ‹Ðž©ˆ2”÷Þzò,ʳ :âëõc¡Ã×îÏÕü :î8Ë7 }]Âu ×í€Õv·~{–‚å°jÛv5PXØô,šìUÊпRÄ(‡5Ûæ–Š2Sð£¤Ì£L†(JQÜ.g½aÇhÄŸ¸…«‚æÂ9ùë‚”;§çqá oLŒc„p0†QëlÓn[ ë&Dhª¹u¡T!~7$³}¨/c%@*4 ¹ %ò¸°bêž7‰_jU<å <Ô× |»¿Ø"]©W¿Ž3ó~ø/RìL<±‰b0×QFäñz}‰ÛÕbÜAúLé“WQˆþéIë½Ú|CA9¬Æz}Í÷À#xoçµ!|2e ú‚·ÞÙuõ ýR’³e,³ÂÉa™EAÊ‚‚T»#HµAAª voc¦wzJ:õ]˜UÆi»D\;|#¹!Ã0¾¾C¥(¬PŒT……ZTøÞuuçü¥öǧ2\Ÿ™‰cÂÓ¬9%<Í=÷Ùjíý^¿ P®Sò,&¶ƒ,K£ÖÙ¦í„t Žåì¸+}“„Xㆄ'òà_è®s¸¼ƒ 6)-öòÄ•ƒ8Fÿú4m…H(ÀtÏ™Üo‹2P}[çWºX¬NÜ‚é9zÙÃ(‡5Û¦¾~l—'®ü°U ) Ž’\3ðÊß»ÖA­eÝãOG Ê@ͦ£Íb+ƒ?0hÂOå…(D¨³I÷…=»`Ò´\F9¬Ø6~…‹Ùº+pçy@Þ¥›ïëg¡q¾bð®ŸH,_S8&¼´'õIQ”¢šaWÝÏ×™:0JDP+ S”¢š]}Ð"¦ZXLP(+QÀ‚‚ F9¬™v¶îѦ÷Ìœ0HY°Jî܆¾ÞŽ/[91ŒrX}“TKÒƒþqêƒ~o ê‡:ë:@!Ì]þ˜žTÁ^§šÒÁÇ(‡5Ûõ5°áºUåÄîŠ'÷Ir”äI™I•Ö^Âý¯×¢|±¤ã^ù!åƒ%qŒr‰òs‘6EÚ‰ò‘6EÚ‰–¸C¤A‘6ÖD^ýŸjç1ò=/QjKmëîá{3–•2RtÜ;‰a”ÑVáIia‚H kã/¶)w<þ‚ó—í>ö]ÚëÞ·}™6ÁQ’Ã:—¤N›Ã:m®½ñcûzÜR8±?Fˆ\‚%¹Î¾¤ZmÞƒÔüÅ£ = Qj6™w.ðq-ñ/¸~ûx8‡ßk“ýu*¿Í´ GINÐ &¥K§É :Mî¿Æ±#Õ·7ÜXKþû¶†F9¬ÙfþºnZù7q¥vØÂ±Ç½Fåü ÙÄr›^Ü® u»—·Ã eÁÎF¹÷ýèÓï&½âãí =½©ìsRÔƒ3îAŒr S •Êtpí%Ìr§vàmÊ/¥kõ}ÅÚø¬ÁÁO½Fÿø´ýLß„¦V‡òxÜ89ݯàx´í¹ßÀÑ}ØãkQŸE) *DŸQpH´1¨ÑÆÚè÷¡·Cd1ÊaͶyäÿ†‰™g\¤b”ÚmÛmÓ‚ò½ž¥…ÊÓ|è]'¸j_1éáª}£ÖlÃMIz#ÞM½jÀz^Œ¢ÕÙ5AÃô5}NðYú;gåIÒܸ áI»Z®ß¡‹fB*'¹’8Ä(‡ "ŸìRir‚L“k:'Oëɱ°UÃè_Ÿ6û·9Ê@m8®åÙ:Ï #r¬Ìõ‰aô¯O;qk’zäF îI›{]Sª›Á!sõÔ ú¾—æúd Ê@XÞ{²{ôYhQPáÛ v´ ¨Ï‚ ¼Ôø¥†Ï‚êœÝ¾¬5Þ`ÝX;a}áU £Æm‹ÖΦí*Þ¸?4p°í×öGœ%¹?I®Ì.^6\¿û.EðÆñ½v-a–Þ7&lßÇ)8ôJÅt>œ@³Ì4pNLé þU£$×ì›…n<=Õ=×'9]ƒa§49"†Qëlk¹7ÿRÁ^·vôÖ  F9¬Ùvý:c´&?Ý]ꪷʯHðJžÐ'Q‚òÞ;‰CžAy„GOJ¹èÃgQxü, *|;MõYP™³óýËÑ sáº-ßåE9Jr;¹?B½GSÅ„:>˜b¥(¨U‘m j´±6úrͪs—xnź¦ÞúPA«ƒˆ·>„AÊ‚ÍÆù5£­Ó»PxÉw»ãù­ø¸.XW*s×QŽ’Ö‰<4N›Ã:m®½†uW¶h¢Î£Ö½òy?ibÌÌrùD V„™9M¿k]osfãDÿö¤Yn´|[E9¬ŽáÜ­7Tåæñµl„oÇ0ÊaͶM*(Îñ¼H¿"«],”à³>¡O¢ åIq¶*Ï‚ < ‚ò¤›½ª< ‚ò,Ê“êª< ‚ò,¨ÍØë“KÁèq^ß/×=½:`´Û(!ˆ2P³iß ¤w̪õó­:†Q«¶­â‡fŒsr}4¯Š7KøÑ°vÙ¤/xîï,˜˜pÁíAŒr ¿ÐçPéà Lu¢Î1‡Lƒ*m ŠLŽer(C#¹¸j÷Y¢ eÁ&ue•Ú§ßr':–°Q”¢ÚÖ°¹úÚYO[Å •õ´1ÊaͶÜÙ©mSS#ÏôÁÀ(à+ê“¢(EA…ègæm j´1(ÒìË„M J4)¨07йA4©:µ+…{w·¡`¤,(HµkA‚T¤ú«O?àëèÀq¾„F0ÊamÊlÒÍcu=¯ŸÇu~¡dà˜–ó¯¨Ä(JQaúyƒ'çsœ„ñxN’óe[¤,Ø,ÜW¿³00 t[iîLˆ¢Õì:ô“¸¡`Î;TÃŒ•_½ b”ÊmËwÑjt8±|WÄ@“íË•ÿu6 Oª%÷\e½E)êOŠj£1ãÔ»ÞñÜÉXÝk™¿7S¡¹+xû ôv0´þºE) +|ß[ó(´(¬Ð¢êÀK]Æú•”‚½Þ—~%%ˆQƒ"åÜ–*ÒÆ HÃ#©¤îÔ¡´9<–6u¢=Ä!ÓÆ Jëfó g³Ö3_ aïq@RÇŽþ¤·›ê ¤ì¿$µ,}ðå¯ÒÎY&^\ÂaP£Vm[Ç™§˜|~A;gÎçDAÊ‚ÍÆY¾wNí¦T->'e ø$kåÀ'Y¶ÉZnØ(‹‚ϲ)|”{e¯«ô–'8"7ôZÖª(5›Ž@õjxR–ë²ñ7¡(Euv­æ´å]“zÕ^µ®ÉD¨Ú´-­4ü7&ÞÙ]°¶W¸:»ƒå0,•W<*mË´¹?IÚ'7¼ªæÙ´ÎÆ Èä;H¾k«@¸Ž¨_†ùÁ´»…øNË´+Î$-{·õHgókë¹!)ÊöžE) +|G¹……ZTøCìšÓ{*~ÀUM➊¥ù y€»7b¢ „ä¡¢­Ï¦@›B A–ËhBHŸ !y©ñK Ÿ us¶oòÜ*(wÇ ‘f¤,Èm”âÁQ/“*`‚«Ã^Æù°jÚ9òœ¼/8=W¡Å]’B½'‹:$1Œr˜ òíë»DZ˜ Ò¸ÈWáæ^¬×sŽ×Ã5ú(.ÑGA… yáPhRP¡Iµ9¼áâ—ÖâZ W€«µ¸† Ê@ͦcÇk_ÎóveHxn{A”ªM£«`aFžÒ>û&L¢ ÔŒ²Lz.ýÓʵ89µŽ›|}¸óaY¹v7M?±ãôš nÜ,˜ØÝŽ»Kƒå°fOaxÖ× I'¬°ÀB¥(¬ðTyZVhQmàa_ë{ÞŽwC`·P÷$1öCàB‰NŽƒýãÓæîÓ æ€PŠú¯QìÛ<®Î:jI_ýBIþ¡4!Œr˜ ÒÊ< "-Liauü— ÷:¡«Œƒt÷‹¥üCe fÏ&z¶ÄJ&ÂŽ(u6-qOjÙ¤ïeiçùÚˆÞ–B¹JNƒ^5d-\ A”šM8zÒûû'Éu4Þ£(Euvµþûž÷V}ð—uJ…f@}R¥(¬$Â<M k41(,J‡F“‚M *ÌbnMªNà­ 9мBŽ­ë³C Z9bå°fÛ¡ ˆàùn‡°ù¨Úµ_Žž¢õ£¢ñ×¾JIíaÇÒ}õÅJró †QDZ)A¤… "-¬ÿ6ª¶ Þ@Á¤Û‡‚?Ã(‡UÛN«uSØ{nNùаûDAÊ‚ÍÄ wiÙÕ Y1œ] A”šM~kú¶zQòO ûÏÙµÞúøöí?Pb?’Ü•»öVgçÀ°WÆ^¯ý1ÊaÕ¶QhUÔû« &žROì“Ã(‡u¶i9ÿgNx`Z]à‰ämúvi§÷R»SÝ_6A&þ¤ ôÉ@” <éDSåY”gAPžä¨ò,ʳ (O¬Íhò,ʳ nÆâ+ j8±MãÊ &®Öòíþégת¢ Ô$>~ÅÑ›ƒ¬˜ääGQ £VEÎ÷'õŠß9±YÃ(‡ý×°c®¯~T°m¢®ï“D9Jr’\áþqÔÞØ;F3ÎÚ GIëDwx<:më´¹î5h•JÁ+˜õꡇ’ÜÛ×6‹ñ–ápð]Î6\Î(HY°Ú¸ô‰o­³P®‚ÀÀ !¡Ó!ˆþñI«fQŠÂϲæ#~–{÷%w+m¡¤4Ö“ú¤(JQÍ®ë  ÐöKáN±BL >)ŠRTµkíÊÒ£èØñëë&¢ëþC”£$‡uÊ¿°¢ë´9¬ÓæÚk¸»\wºÊ§hŽéèÉöžE)ª)dås6×.rò+DQŠú“¢ê Û„ ÅðB¶Ånb|í©ÛÑο¯ü,Ö…P0Ëñd}AŒr©$¢4‘6EÚI¹Ž¬¥Íá±´9¨Si¢ÔdÚTicm6Ÿ <§ô®‚‹€· 1ÊaÕ¶}”¶qü…©ƒâŸÜ'ÉQ’k ÅM½¸S01•ŽK;AŒrXg[ÿ'oűbRRGbå0nÛ·.:Ÿûtcíuû¼§ÆmsbͶÇ=-´­ Ñè.~à+×¼ Â=@ÕgbâUÉÖÒWŒœÌ!V¼Œ¤L¤,Ø™È/‰{2,7eôû¾ácYý¯ŽRT3lc+Îß”4%…@8DQŠjvýýK8|>¯Ös>w§)wgnH¯³sg&Ñ¿=iY“rXÁý+¥~ô½ rïSMß Â eAAª]–¤Ú  Õ»·áhËçÛV¥$Ã…Y%í¦qÃnÖcT ßG½oFá£Dÿô¤ò»N¾¤&<Íxáiî÷5v'†ÿ’Áäö|hD9Jrͼ.ƒê¾ÉºOË‘IüU®{ã.ß5 R¤Ê7Õ ©6(HµÁö6¶I>„M¥`ïz‘ºØcå°jÛ|´8:c_:Ç,†gGÅÀ(t~ì“Ã(‡a‘àÛº‘&†EšXÿyr¤¥ÙmèB·ö†>ˆ2”'vFiò,ʳ (O f5yåY”'–R4yåYP›±góËÀ1K‰…ÓPŸE)ª*,¿›e&?ùÐGAÊ‚õ”+|R &[·×ƒ7'l£7%ÅÙÂ.¢(E5»¤R¿m‹¸e+~îýõ…XÜn|³áI}R¥¨ªp¿>ø» «æúnÞùëRmMaˆ¢UG~Ü;±¾ÈS±>wéíÓ-z!—7† Ê@ͦËv暆µ˜Úç©Ç0ÊaÜ6oB3ný=ÍŽúž!vnܸF9¬wå}YËQRWYÏÞ·÷oøåqÄYØòƒ%¹fÞ„oGkIÙ î6N•† Ê@ͦe^ô»:60HHEá^¢{Ò*%ò´‚å°fÙ{U»Ââ v“Êõ‡AÊ‚ÕÆYhUÒÛ3 öŠJôöÌ F9¬ÙvýZ¯3_00¬}ËË•Ôb”ÚmB/„qÌb‡Ç/5]»k`¦ö³óå™û2Ž£€ ¨OŠ¢ßɡФ B“Âc²PžA41<Š&Eæ4æ$šT›À]}ß÷£`ÖE–ñ bôO[.W×·¤)EÕq\÷1¢k7ø£ðoì)ãä(ÉaJMÕisX§ÍÕ×°}ûT÷®PR<$8­1Œr˜ Òûáš &ˆ´°6þW¨î+ÏŒ’Žy!¢(Eq»‚½;Çö¸q#"¿ÌrìæeÁ…Ü•_’Ѷ¼ýlÅBqÜ›Oì§gÓãWÖ‚å0(R>U‘6EÚIÔçáJ›ÃcisP§œSeÚTicu6?~Oé+m]ì"÷ñø¥¨ $n’$nÿ$æbØEøD¨ù&ÿâqÛ yçÅqœSÆ<¿“û]Q‚O²^0|’Á'Y³>ɂꠟ³|Y@;¦ ‡’ÚAä(É5û®Æ gþl`˜x¾I¾F9 ŠDç‹C¤A‘6†G.ž¡´9<–6u&e&UÚX™ÍçWìíyù\ÝÀ1õäŸÔ‹Q”¢:Ãð·*´Öçééûåe•¢ ÔlêÓ²_ÅãëÂÙ׋ÙI) VÇ ¿ký7&nwOê“¢(E!…h¯³ÚRhSH!r‡m…6…ÚRˆf¿­Ð¦B›ªÓwê3DÞŽŽB¹JƒÔV=ž¯ A”šMÝþ+úÃ|ÿ-¿¨'Øø¢(Ea…â VZVhQmà¯û{B$Ž”Îéþ¹_)ÀÂ%ülÊ$|+g¶Áð) R¤Ú•Aª Rýµ–ó÷77•”º/ý¾ÄvÉ)ˆQƒ"Q­Ö!ÒÆ H«ózé6/1IÁ·†Òwq¾3D Ê@MkÜã\x´«ç£`mØ]ç²íŒrØŸöÃ|áƒø0ªÏZ…ŒžýÁð¬W;ÞcT'ÑÑÉrD?Pë­ú¾…oH ¸€ú¤(JQP!èPp(4)¨Ð¤ð‚ê¿gM ¢‰A‘ èÐhRP¢Iµ ¬·¸ .»Ñá*øì!ŠRT³KìÕû“+øv õþä0HY°³qU‡æÆæ—…«ÃEæÍ±gßïá½ÓR á¬~BŸ D¨Ú´‰ßà2†¾ÜxFdeè·{èßIJ޳ªG¤ÿ‡'ê ÛO )‡µ¹®îl’{ö‹-ß/›)1ŒrØŸVçʾè×Èqwù¿w0ŸÏº¿÷Ÿ×) 6»=EZD¯=冤|‡°©„(JQX¡ô=]¡Ea…Uþ˜ôo6 YÁã ½‚©¦BN(cå0A¤UhDZ˜ ÒÂÚø“xìh±Íѧ·ü}‚çyý”P°ºçÏÞܾ¨y’)Q‚òD?F“gAPžáÑ{§l<ÃgQxü, *5õYP›³âW Ÿî I/ìåŸûw<ÏcÕb^Ü\_(ð(@}R¥¨Ë®ñßïõ+Î{/ÃÚBv\Î c”ðÈ)©Òæ°L›û“ä }òµ8Õ<ƒÖÙ™|ÉW`cuŒWt$ó—ºú¸|-×£¤dç“ú¤(JQÍ®EÊKÑÏ_è½;BŠ¿`·³ í¬BŽ­¸µ†1ÊaX$è®÷ˆ41,ÒÄêøO}H'úˆ©QF>å2…1ÊaÍ´³¿¦à-½v ™ŒÜ¸}A²`µü|+ ñS¾bí£qŽ’\3PIšjûì¬dMµ6ÈQ’köíB'ƒºþ %ÍÂú‹a”Ѿ/8…1A¤…µñïÎP(¶ö›…pmgQ”¢ª]ËWʯ«TŸ0òuþ4ÊÕ00Hoîâ»O¢ TmZ…ËÚM¢†7?ž…ó0F9¬³ÍÑ¢|²÷uCzÇÉGQý4Ê=ü@Ûws?‰2P•Wî?Šù9aÓÞ„ØÚ=Æ¿Xžxï4L|˨Ÿ?ŒQk¶]ŸC’bér_74ÿR½÷ïß~oL~oÂä(ÉUóván–±‰ÜØÛ'0v‘ GIë”ÓÔºN›Ã:m®{ Ž–`¾ßÝQ;Q)ñåûÐ߸úœ‡'£FéÏŽŽC ¦Ùs;û’Ã(¸3zG¸SÃ(‡5ÛÖóy¤ùrLÇW¬Lj;]ÁÐHj;]£$'èt~'Î :#ÏÛü«šR~–µàg¹w¾@ì½zÓ0ñ°bŸF9¬Ùö¸Ø ޵ॼnàs·nL> +ÈQ’Ã:ÑièÑisX§Íu¯Aúì“rŽÞR¾\¢ Tm:ÇÑsvðåV0½µèulÇ0ÊaͶ®cÜ{¿¢a3ÍÚýŠ0F9¬Ù¶ ¤–#¿Bl©»?ØIÇï„}U}#/˜¼‰à<ÊQ’Ã:Ñ&âÑisX§Íµ×À+‰®=¹`¯ÍDß’ƒå°j[_ît6ð7JJ(¢Þø(E)ªÙ•I\ŒS££Wƒß™½È<ú ƒ”›‰Ýž¢”ˆøZ½1qz K5†Qk¶‰ ÌZûÐ/¨·ùÞØk,÷%Q ©˜ÞûÏk!AŒrXµmî6ä6†ÙøYagˆa”ðHP÷ˆ41,Òĺñǃ±æûºö«´*I¥QjRìù!• DÊ“jª< ‚ò,Ê“ò[ª< ‚ò,Ê“b.UžAyÔfì«åÍç^Ýœr V¤,XM¼ë¯¾ªíÀ(©§ 'µb¥(nW°Íè3’‚—U8«‡çåeEAÊ‚‚T»f,HµAAª voãˆ×6*edõu̪77r‚WN^ŒË» Çq™êô]¬eÉ£…Ÿåûüb”ª²ª?ý¬À Ò{äYÙ>Qêl:áa.ÍZ0y;Žœ GIëô~C1Îa6W_Ã&|BÏÜû(—µµpbÿ p¦9Jr}j¯ö÷Z ¿ŽÔ·£&a#7BûÂɳLî£ eAAª÷v Pjƒímt{­Ø¥Ì÷Ú2@ùf¢(Ea…bÒ\UhQX¡EÕ?„%§÷yߘ™9â–Å0ÊaͶ>)Z¤„„Çaµ¶  GI®™·Iq’âRâ()^W¢ Ôl:}‰Ú×»>Õ³ “ÿœ[0m%:h·íbý9Ò{XwN¢ ÔÙtfRƒæwÃ…•ä(É :_yŠs‚N“k¯¡«÷bÆo ¬{{®«‚QŽ’Ö¹$uÚÖisí5ìrõ¿„Y×Ìô•úôœÂôu}–m•Sßúh×ñ†½2Þz³A£ÖDžÍ¥)~óiO‘!Œr)†cºHƒ"m¬Î’q–<<í¼ª˜ÑÃN¬ F9¬ÙÆÛ£\ÛPÁšßäÚ…‚å°f[ªcìÆœm Ózy4zú#FQŠjv=.¤ÊùZîNSX¾«,8n+”um–…7AŒrX5mž„cCµ çl&¾9œKb”ÚmúÂ…×](£3¿îF9Li%¤‘&ˆ´°6þWAÊÅ ŽÓ£`á¯ÎÊ^ð²Q”£$×Ù7%Ê?3Înî.·Û;¾ö<ü!ă¢·öä>IŽ’\Ó¹K7÷§Ž[¾×ã(ÉÕ±Ž³Ç­á;æ:ê-H8ßĚșIžPuZ7i3|Ê‹Hp7¢ eÁjãö¸‹%Ö ¹[ºm#;ƒ|~iáº!õy¦Q²  õÌJµAAª ¶·±o겸·ì‘-Ó{y×a£Vm+)ÿhe¨‚ò’¼¹(HY°ÙØÿô­rHðöæZ.MÅ>9Œr©TË4‘6EÚ©Ì1M¤A‘6E*.&ÒÆ H«sù¸[l‚ùëʉ•qœ¿Žr”äšÎíwÛpid½¼$îŒG Ê@uøï[]zi„ï?ç(•{z×õNJŠƒpçDŒ¢ÕìÒ©JˆïúŠ™·ã·@êm.ÞR‚(5›vWú…¾óxÿÆ¥³]eàœX]À“#ÊQ’ëìÛà‘¦½êIùü®c¥(¬P*¶è - +´¨6ð»+õÂçã4oâá"§•*føÇ,­Ä(‡5Ûx«ƒ+L)XÛ»]AJ£Æm‹V)ç¹[ŸïĶ0ûoHíyMþD¨³éïß?š„ZέH÷N>ˆ2Pµ©Ü@g’¶i/×ϼ8½çŠÝ_( ·XÍÛ(§H4Û;}ä[ÒÛ;™ã[ÔQ²`µqï~œÍ_V.˜^ו•ƒå°fÛÜÕžÜgo¡ô<økÿ‰a”Ã‘Þ tALiamü¥õªe&–ï¢Õpʶ`bëNØ1ÊaÕ¶SLëE¤ Z{¯"…AÊ‚º÷$œu3f ?ƒÎŸ«zn±`âûÙŠF9¬Ø¶”V­÷ùª¿ôŸðŒ%å°&s;B¥‹ƒòË6 R¬6ÞÍ?ºÄv²e´^Ÿô°}­^)J&ã~´‚‰é]Ü4Ä(‡A‘(½ëicP¤á‘c(m¥ÍAÈ‘vÈ´1¨ÒÆêl–£i}® ¼Xñ.) 6w©éBÍEWNL{áÂö'}E˾,ó«<é:Ò¸IÕƒaîýoof©P®˜|`^so8Ñ¿=Iö„Ák¦VGp~p[—–>,÷WÞ f}Õ„µ‚å°fÛ&¥+³¸tžˆ9ál³´dŒ­d3>[‹3¤3v–! b”Ã:Ûä«1Êâ.˜Q¼] £Öl[tHX=å'_9 cù9JrX§ÒÇ«ê´9¬ÓæêkÐ~ÝWÉõ-û£êí¾ µßVyµSSÃtÿ•? b”ÚmÝ”¶†½pc¦Ä0ÊaͶ­»ÏŠÆäæNnÜ6{–ùÉ a”àHåèÑDÚicP¤RÐDÚicP¤²4‘6EÚX7—YÆÔU¥(Xs]5Š F9ìOkC²ŸêëbÕ³ÿÔžû’ËrÿÆmÐ)]¿×§R\ýAƒ^­})Qª6ݱ>Ÿu|´x/r¬ãöJ-¸¦~;/Á5ùà eÁfãyTξþs¯N½~Ä(‡UãæE¸Ò¯»•{º“) Rýý³aPjƒõm¬ï Ù7GW¡¦e‡~ =p"Wls~h…'±Ö«Ã!XÜX÷]ÂôÄÁzˆ?,GºR’ǹ!ˆ2P³©;Uýéô‚‰Ç#NS1ÊaUäÙýÀLýåÚÁ~×ÌÒDÆ0ÊaP$:îžX}o§UÊŹ¨õì·g^8gL60̪åò2†Qk¶­r$ šÊc¼:ÊaEåöojûOÅôM’ï@AŒrX³í*â{/¶o·yù –“]¼{E9JrX'Z«6‡uÚ\} w-Ø ñƒÉy=9BØæuN¹m4«–l7 ƒ”›T~Í„mw¤¶>c F9ìOkïo¾I¶kf×\•Ob)RïÉú`³²,·Ä(‡u¶5?ÑJ z%ŵE¢ ÔlêO»Eᔆa‚”«‰{7%ý‰ã‚™ñ8Ÿ“AŽ’Ö©8¦ªN›Ã:m®½†kû æ…“-a¦EAÊ‚‚TKW¤Ú`}Ç»ûÏ•ßØî;™ÎúÙÀ0Ýã|ù‚å0(RK]¤A‘6†GÒ.³â¡´9<–þ²îƒ×.ÓÆ Jk³¹;ì*ÓÀ0+¨ç[n £VDîßï*”Tz‡€uÁÄ(JQÿUêjù úaûÜŸ$þpk_öQ?„,œ8±÷) Rýõî0(HµÁú6ÖoçÏ}ßs×r öÚÚÕRNŒ¢‚æ‡B“‚ M *µp(4)¨Ð¤ B³ÎšThRmú^) gÊt`˜•òY¸e!ŒrX³MøR±è,g9Ð A”ªMÛ·•B¾î*CÁÚà*…1ÊaXä”TisX¦ÍýIrÐ>tõØažAël ŠL¾ƒä+°±¶ Æîƺ›¼o‹§`Ì“û~ô—Íýtåü/¤Ã eÁjã±Z pæ¯ù gA¤,Xl<îâT¨@~|{oÛŸ':ú/Ðû££ÿº¾?[Ä(‡UÛÆ /?ÕÕ8¦GáÆßÄrÌ<(vmDz¯Æ²ÞA͵ÀßB¤,Xmì7Bò¥`z æ•Ôb”êmGg›?ûU0#Aû6.ÈQ’Ã:ÅðßÐisX§Í•×pŽ££ù`ž™jÀT¨×ÃÔ€)FQŠªvMÓèO Œ57%‰£(E5»N©½Dwr*(ÇØÉ ƒ”«s¿£øsÀ…³jv¯µ) 6'¼iêËî¦Þ{˜¾îbå0,rɉ41,ÒÄÚø³çŽçæÊk=®p­`ÝXºâµ(GIë\’:më´¹î5xzµÞ[DáŒñ½EDAÊ‚‚T0 Rm°½n73sš£^¡—¾O„(JQÍ®WŒ j³Î=@ëÕñîÊ4 '‰œ A” ¼w[—CžAy„GÏJ>ãá³(<~ÞD÷ƒ¾Úª ´ ¨Ï‚ª¼mº²<‹àÉœöÛ|61ŒrX]XÛ·;ó'ìzK/1ÊaͶGÖÓß“sî'ãÏŽ¬í¤>!†Q«¶Ý¹Gg%ªÚv·)é×B¶Ö"e jÕ¹ú9{Š¿Ÿ¥Ÿ´AŽ’œ Ó]ËŽr‚N“k¯án õfšŽßQ¢ eÁËÆéß±÷¯½Y¨¿ÜõåQ×R¡éþàe(Xé¸n¢96£HYPzf¥Ú  ÕëÛ˜ùxo‹Í¸N®FVét ‘Ób‘N¤,Øl\p¹HÙÙõò?”}-JQŠâv…Ò(?ØÞýš¼™Ã>Ä,k”¢Uí:®Åãt;†µ±÷­ñF9ŒÛK¹üå–9à{“œ „1ÊaPä7¥Ñ¤ D“j£¿JÍ úÖ#7 è›O£$Wí;Ï5T,(ŽãýuQ«ïçOû‚å°ÿ*Ö¹E¾ÜDƒ@öIŠüƒe jSù ò¨/TAùÛ1xŸ ƒ”«s÷Þ|)¯¡=Hyq!ŠRV¸¤ZVhQuàËoÿÆöñЉ»$ÞÉ£%9A'=]:MNÐirõ5¬»T{WÞÝv×Ö¢Aç¸wMΦ¯60 dÍo2FQŠªvý.âKü6Jÿ"Ú{•Æ0ÊaÕ´skÄŠi§Øò¥šÃ(‡ "}µ‹0&ˆ´°nüÏpÒxúßô\ý§¯P½‚†›ö Õà eÁfãÚ"?g²´Q¯U½åE)ªÙµ»3ÇÓaº”׎1”`ª=%ÕøÞyŒ<íRGÅ…{Ï(ý%9JrÕ¾YÙ·ç¢râ¸`ç"ÊQ’«öÝ¿ÒâÌ_ k«Æ<1ÊarX’G ÕÛñ®ý9ìõ²§­ó²ÍTÄÀ(Ìj³+DQŠ‚ ч;m j´1(Ò©Ä((Ñ¿‘ôTnsƒhRuï÷')½ýÀÁnOöm#Q²`³ñ‘ùs–)¸c—3†²Û[1´›Ëno£VEž×`¾ç.9~™Ã(‡A‘²ßªŠ´1(ÒÆšÈëGuv~l»°ßófëD†0ÊaEäü½3 ]Ö•­k ŒÌe ƒ”˪›ÇGVÔ_v'á7¾Ô p¾{¶\÷À g‘ÃD¨Út_ÿŒN’ûò\­>“ƒå0(¹w‘6EÚÉ)9”6‡ÇÒæ Î¤Ì¤Ê€È}ÔVè½+ÏÏ3 Q‚òÞ—mò,ʳ ºì³ëÑ+ š÷ëó„¾LíÀ¨×ªVsÉ1ŠRT|A‡B“‚ M ¡™ÆÇƒhbxÝEƒN[‡F“‚MªM`ñ¢Ÿ´UNÌ6á°-ÊQ’«ö•ŸòUÒŽ…ý¦>)ŠRT3ìz.Õxm¹Ó„±lð2)ueø—Iø}^ur Ô•©£(EuvI͹Z@Y1ôÒä¨7ˆQ«¶Í‡"àdY¦×uE$Ë:aB( öòùõ°7ˆQk¶íR©YŽ› $l8n A”:›V¡¢Îª­Û ÜÙËBMogSÛ B¥¨fש^Þ¨ý‘5óÖa—Súq}Oå•iãä(ÉóÖ»™<ZHXc8´A”šMÝöf'Ì*6/["¦.Øk6ê±j£Ö‰<*öŠ‘åăå0(RÎøì4[ûÃÓÌJÚDð‘»._©gA]Ö+ÿ…mß8†¨ªqíæ±?U0ùâ½0‘ƒ%9¬]`òè´9¬3ò¼uòO0JQí•wKÀq(”ØŠéÁÀAã6mp+×΂½&Ýé bô¯O‹ $¥(ø,sôá³ïìT/Eaß§PR–°E†(JQUá>jíL÷K^ÙKŽ@” <1¡ªÉ³ (Ï‚ê¬Ø»ÆŸ//Øk2ûh £Vm¼‹zu8B‹jå‰2µ9p°mS®¢i”£$÷'ÉÕ9» Ä*( Zí•¶±E(Ay¢Mš< ‚ò,¨ÉûñÖ{ JlÜÙY¢(EýIQm*qÊçCŸÛ÷õ¸Ü¾½çíß §4Êâ½1 Rl&öž¦»*S09=Mü Ÿêí±jܸñýÊQ¸(p¾åºE¢ å½³^yåY”÷nesȳ (Ï‚ <«”åY”gAuÆN]§µ•$Ìrœ¾ A”šMBXdl¢S_.Ûý{h£$‡uú;…¢Öisí5lB~Fßé ö—çn€Øæõõá×ä„ç¹[.¢\} kW"y/¡Ö³ $Oè“(Ayb!F“gAPžáѳjˆxø, Ÿ·^ù ÄþoM A}Tåm×·Ý,_ Œa”Ãþä°ºû_µ¼ˆ ISc >ÚÒ·SÓzeÄŒã%DQŠjvõG‹;¹[n%pUé¦Úåª|Å(JQP!Ê9$ÚÔhcr²MþˆfšM!Ël )Ì ~nìmªÎûqßÜ{p…î»±ÄøÞßóuW7c¥¨f—peGK¨H“ÖgÄ‚(5›D_Tßê+(ßöÇ»}¤,Øl”ï¬)aÁ.~Î@õÒ÷y}]ôxéQ®Z·xÊ<,çZ }®°”p¢ TmºKkÑ–¢]èpÓë¼7õŠ#ôÂkŒ¢…¢0ÚVhSH¡MÁ1´Kìpm Ž¢¿ ßch§³5Ú’hSm¯ óÓ}dàMäüb¢ Tm’§íyG6~ã…ý>klVÅ0ÊaͲîmyséB91åu…(JQXáûs……ZTøcô´°³è»·e%Çîy(Be Î&©Æ¨A],àMhHxN… Ê@Õ¦il£÷•f+bHX¿¸ˆ‚(Ayï÷ägAPžáѳ Gxø, Ÿ·Hõ ÞA¯C A}Ôæìäó†'£Oó•[äg(ÁT{æn_ñæñ $QÂÆ¢(Ea…âדT……ZTøåúHš+4¤¿b9† Ê@ͦy+J÷»em—=ü…ß‚½ =Ä(‡u¶í/u`˜˜óÆ®t£Vm[/G&æ©V e„ÿ,†QDzÛg‚˜ ÒÂÚøïš#)ì;»˜é2–[ßͮƂ‹‚”›»”¬T“Ž•oùà,àq\›eÌ“;ãŒá<îÖ;ER’k:7©eÐàzÏÂ[á.”u啟Ü1ŒrX5íìEþz_ÁºýÒUsŠr”ä°Î%©Óæ°N›k¯aWÏa†J:„Ã(‡ "½½2ALiaeüϱ[þÒpÁZÒÄ5»‚å°Î6©mK?{αwмɱB¹Iƒ@©WvQBe f“|ï^9„Ïù:§Œvé˦G £E9‘6EÚX}÷·‡c…ö³âü5¨‚‰7¨p}ç\¶5€Qk¶ÉÅhe-r-ZYh!ŠRTµkÝÕMGØ¿·îMûë¡“µ…Wä(Éa¨ûÎ£Óæ°N›k¯a]™}¾s´pÝlö¤Q²  åA\RmPjƒUêñýåvžøzû‹Ê‚å°:eú€Ó›û/.À™õD¨ÙÄ·tß!wdüëBIÛ,v¯c¥¨j×¹á1Ô6“ùßo73|E«IšQŠRVø>à< - +´¨:ðc˜zÛbgþXÊó˜J€”›‰k›’ÈWF¹ì†‰Ù”Ëc”ðHÌzTÚ–is’´Üól ZgcPdò$_ÕU0MÁ³í—íjÚÊv†Ò·r =ƒ•m%ˆ2¶ÉW@g”˜_%]Ê×­ŠPíý^Þ¦3É40¬¥UNq£Æm‹eƒÿr›úR‚O²¦|’µvÕ ÚÝ1vp^¾ÜߢùaŒrX}aó,¤Å O¤poWÚðD¢ eAAª¥¤Ú  ÕëÛ¸~cÀÕG1<}l̲C iw}E›Å mÇMÜ»µ³ 8r„ä‰;Ž¢Îb8‹iÓT¬kõŽ¿à.é•òð·Žs ó10ì5gµôL£EÊ¥#U¤A‘6†G¬ž¡´9<–6u&e&UÚX7›yXæÉj¬â¥ªiF9¬švo ±|Í IY9Á°E) +ôujG)¬Ð¢ÚÀ?~&ЛmïÀ.ãèsÙ£ eÁf£tYù]ìž ¨j¾™O‚¡Sí¹[ÖB]¢?ØÁƒ_*âþ9W Ó }TóѨ óÊÀÇ0ÊaÕ¶³}¼%¸ùãÔq¹LC…ÖV^÷l\ÐÄ6DÊ“î[©ò,ʳ 6ä]¹çk–{†5ÌÑxÆ(‡a‘(µèQisX¦ÍýIrÐ>ù\Rͳ1hA‘Éw|6VWÁ4áýJs ~þK}G5Ï“öTTô c”êmó"yszJ¨‚r_;N …AÊ‚ÍF¹1N>ÛÆûw‘‚~nŤɂÝ F9¬Ùv'¤ÐD˜,¯orù]¢Ûõ‡:&fk ãéÕ"–ÏA”šM+ó¿]FÁÚï /‚å°?9¬ ÉÔ»‚ÞÄãä* ²Ô^¢ ÔlâUW9¶`rc®ÇF9JrX'ªPytÚÖisÝkÀÙDm)‘Q)ѱ`ÛÁýÕ^w?0®;ê]B”£žÐIªí¬1 ?ËzøYÕÆÿúbÓQ÷,8§…ÍÿF9¬N.é{zú·`bNÿ1ÊaͶîÐðVÒ dÌ+~j„(JQX¡8U……ZT7ð+|_ê6×—þQ¬&376Õ,Œï”‰a”êm‹ðÑc•ݘÜ3 ,³ GIëD >N›Ã:m®½7Î'ór}¶Ì™ô¬c²N¿u«Md}ÆõAŒrXµm½~ã±K5y¶›²JVüìa”ÚiWƒT(;[ ¹îAŽìl¢ ÔÙôÊQøÂ§«þálYžÔkõ¶ªE)ªÚµuûêä߯¶îWèiÂvÃ(‡5Û®ŸXr:tÃŒvð—×Ã(‡UÛö«u4êÐí½C'nWÜ_º)káS £ÖDΞº±µ¢(EµÁ\>­prÁ\pÑ¢ eAAª¼è ©6(HµÁîm¬‰D¡ŒlµŽYiÖªñN~ÛBuÌÊ6Ë+»âªlTPnÍÕ0HÿþDåG€Ç+† Oó^\bÝÓô›†Â.ħy»fƒX››W»E¨×e:=\Áu”é”> i¸Rå{ïãÎp¦¢ eÁfâ´ª`ǤÅų©4½È2…Õz®ÇQŠj"ùg—]Eüéý1dW?ÊQ’Ã:åK2ºN›Ã:m®¼†yœx‰Åµø*'—åñâ ƒ”©þöë0(HµÁö6ø×­]“m~}uÚ5ׂå°j›/8aÛÄ<=Ú?ü×læ©KÂx{Ðæùò‰9ÖabÕ»îAŒr·-Z¤üáVÆ9ðy™¤÷¦¾î¥÷Û½Iÿy]7wFk`ÐTóŽ„[¢ TmÊ;“ãOa/r”ä°N9¨ë´9¬ÓæêkØûóÑŸï/œ3ó60¬­mßIÃ(‡5ÛÞÑ™oŸ, ÜO ì”Q²`g£+Jc銊Ž>ß-÷ëÛ.ÁÄCÅŒ§ñí|øÕÕ.ñºžÇâë ÖžöºBâxcT’etþˆ3_°”“8xɆAÊ‚ÍÆc :†½W½Ä(‡UÛ¦ˆK:<)Ñ‘ÂGPŒ¢ÅìŠFuË|nÚÈÀ01&Çœ F9 ‹DA’G¥Ía™6÷'ÉAûä³U5ÏÆ u6E&ßAòFrÙOuÜ‹ggë;†Qƒ"•¯Üi"m Š´±ºŸ¬RŠO¸—§áˆ—mïƒGTQA«aõµ§GAÊ‚ÕÆcv•BWvߘuˆ³Þž F9¬Úvn›zØáð `-eã ‚å°?9¬ É1%Þú½>Íç,˜ ³Þ«é1ÊaMäõ5£§En'öxºÍ!ˆ2Pú³5¨Ù'cŦÅõQ®Ó;Fr-š ÊÁ^6a²`³Ñš±ºPÆòÏ÷¾ìˆ¨+féêŒZ†½ƒzhÄ(‡UÛæ+Þt&‰†½òïzXÄè_Ÿf|U'4‚X÷4½>Ž3A¬¾·’J76"Ž­+ž%Z.½@-”säÒCe (O*E¨ò,ʳ )5y\Þ¢3©;0L !qŽ"ˆQû“Úm‡~›âÞÁOvVÄ0ÊaP¤œÍz‰<Ç)€Q«"Ïî&#rׯ0óYÃ(‡A‘èÜuˆ´1(ÒÆÊ2ݾ➿k{}µÞáŒlãû·F]K§‚VY–o a²`³±Ëf}ݹÓוëb”ðHTmð¨´9,Óæþ$9hŸ’Z×̳1hA‘Éw|6VWÁtêÃe©‚Y·™xñ,ÊQ’Ã:å†A]§Ía6W_Ã2™Sa™Ûç€ìÚÆÀ0+ÕÇ 0AŒrX³í<Ô -¼ñ›êø^x £Vm[ÅA+߶ͺ³ˆË³^«¥1ÊaÕ¶ãj›‰n³Çyå("×UŸù×3j_q ƒ”«…ç;çêÊü€®ô)Ëü`®»7,ÿ±¿ü>…kéUÎê©ä‹/ R¤ú?/©þé? ^òý+œ§g˜‚(AyÒ SåY”gAMž«EažŸ;_£V\£y3î{ÿÃuRmç³Ce jÓ´k6á$[„'á$[¢ TmšgiÖƒð}æ¿ßçyÁ7ÔmÞ7¢(Ea…ÒM]¡Ea…Õþ:ª')%„‹Ú{½/½¨Ä(‡A‘(!äicP¤á‘TœAu(m¥ÍA¨uÞ!ÓÆ J«³yÙµmDØSoHZÚ¦¢(Ea…ï¥íQhQX¡Eµ¿ÞW0G_01Â9ú F9¬Ú¶.£ŠáBÁ¬•å‚å°fÛõ½Á˜ç²}Û³ì˜~`˜Ñ0ú (bå0n[4?µo]~ ?.­L<Ùpi%ˆQÃ"Ñ ð¨´9,Óæ Nth8dÚTicPdr,“Cic|6;;í¶ã§©‡Û MüèP϶D¨Ùth;¤í‹~Òà,dÁ¬Mœe!ƒå°jÛñú-rO$tSF£â+Ša”Úiû« Ù•uÞÏ×7ì=cR¨.9ç“F9Lém¬ b‚H kã¿«sRØynJœ%ÂÞÃ(‡ÓŽïwNep+h]6àW¤,ؤ^˵evg—ç¾Ä(‡ýÉaíýêÖ€§f¥¤ÅЧf£&ˆô6M1A¤…uãߊfþ‘‚É%Üœå(Éa(^ñè´9¬ÓæÚkàW] ãþÑg[]ú—>ùóÆÄÀVËF9¬ÚvçØƒqDZ\Ÿ‹“-‚óÑ'ã¿°xžËxå°?9첎w8¶®EH4klŒ¡óÖæ½–cÞÚlæêÿ}¿}ØíuK§œ1È1I€”«‰÷§0\5ÀA‚Aˆ2Pµišy‰Ò÷Ú 'ÏaáµEAÊ‚‚T4¥]RmPjƒím\×Q¼%÷s(‘î“ä(É :ϤN“tš\{÷ïÁùª°Çôï"¹]5ÏÆ u6E&ßAòØX[‡¾ä„õÝŠ›(ÎGívãnB§>j# B”MÈE7)´;JF]_öô>Œ’\{Þ<^å0ø4{PàÓl¬Íßí¤{Ü‘ýrÔªÀòå– Ê@Pžä½¨ò,ʳ :èGy Ÿsf¾†½‚K#F‰a”ÚmV<ße’ì¼Üð×ôÐZg&6s?±O£Öl;ÎçH:ê kSÒQ­c”Ãþä°2$ã÷›Êo5ðc¨I®8HY°Ú8³¹ã=+® ÒÛmö玂(U›¦ëChÁ6¢¿à"]„Ó7½ Ê÷½0HY°Ùx¾@×J¯ y;zç6AÊ‚ÕÆ™»'.¯|ì3 Þ^“†Y=B+[ë1ŒrXµí×Ú°Ç6®c+¥õ7±íá†^¾¨ÜX„(Ay’ªÊ³ (Ï‚ðè‰{ž:|…ÇÏ¢ Béú‰*Ђ > js¶[ÆÞ¾¶†™…6¾Žƒ%9¬Sɼ©:më´¹öVÏfºqëVÏî¶qÛ"¥¨j׶Aåö× WkQŽ’\³ïѺ佗öî«gÙñ~Qæ*ào<†Qƒ"•% ‰´1(ÒÆêøëœñ ŽÇ|v×–Æc{5ë;ÊãѾÊè<ôgáx}ú^ý®ÎPx`˜˜hÅñz£ÖÙ&|óF?> g÷­/ób eÁfâÕÃÜ §ql_ð: ÓÈsð[8ØhÞ˜•:ØXÆ0ÊaͶ/-Æ/îù³?Qª6M«kö³üÆì©Èvò(GI®3oÎ8‡•3SV|uGAÊ‚‚TïM’(HµÁö6¶5\(ºêxY Qjò®ßKmxS7Ëȇ>QªC~w@n‚pÞ/ß¶óû«‰Ï\; b”Úm]Zm83Y°×8êyÉ F9¬Ùæìqå»ùâm@åÛy¤,(Hõ¶²'@Aª Ö·±Þéso-aààÛK×Ëa²`³‘—Ë]Í%ë&ª«»$ÊQ’Ã:Ñ]qN›Ã:m®½†ûw›œ9Šsë;ñ«¤R‚å°j\ìÎQúL½¿c§`ò*œbAŽ’Ö‰²6‡uÚ\} }‹Ëä_y7Öº&| /†Qk¶])wñpà ¼ß þD¤,Xm,m/òú“À>ôòç»§óëºIü·gæñQñ:E¦?ö‰b¥(¨}QÓ+ÑÆ F«£?½>hã:ù+×…†®³? R¤¢ŸKª Rm°½Õº-‡Ó‹4£X–^ ƒ”›[kbõæï ¤fÍyz1QjòvO=e™ùà‡0Êauàçî`õ¶èø¨'kˆ¢….)……ZTøÙè}NÿÂÉ»púGAÊ‚‚Tÿ-š0(Hõç¿çßDºùQ‚eak5†Qû“ÃêL[®ÏI„¶4wóK¤,ØlI<²5JÜSYÃÙ2]÷¹Ã¥æeš_{¸ëô­ |S Ÿ¿aþý‰WÍÄõÆ)Á'YÓ>É‚°MÖÜÂFY|–5#á£ÜÓx^^9Cß±[@9:Áñl¤,Xm\¾BÉWMüþÄŽ§±Âq¾~Yvš>^ĘŽlû¿¡W$¥õß… Ê@Õ¦µ÷Ž­¼N5j»?ð°à5}^Ïúø³Y¢(EU»¶.Vþ¾§® lU€ú¤(JQXᔓhbX£‰A‘àâ”C£IA‰&æF17ˆ&U'ð~ý´¢+($µBÌ(AyïóÙ!Ï‚ < £÷>Ó=ÃgQxü, *L Lé³ 6gܪbœ«ûýa:oAmà é«³Ú_¤,Xm ªsvÖW?–ÖùQý÷ßZ—+ê¬E kŽ®+}Ä(‡ýÉauHÖ뛵ΫaFÇo b”êmÛ4úÏ–Jíó«aÃ7M h} î5Q¢ eÁjã±XM8_\AÙ¡Ãùâ0HY°Ù(”ôÞêûÞ /à1Êam’ó)È ¤·í|¯û(¾|ìÀ©_è<ÇãE) *|{KõYPv»–ù:LÏÉð8…¥y^§k^Pj ÷Ó]³ôŠÿµ’J¢ TlÚ¾B½Sßf &÷Êâ}&ÊQ’Ã:åbºN›Ã:m®{ +| ÚŽX £YL¥Ä"›ûÛøhðßÎØJ@èI) ?Ë2 ?Ë= ÓxÒÇô”ñi£ÖD^ùtË«ÞÙ¢‰a”ÃÚ x4 ø;Ë·éZÖóX²s›§v9Ð[¥)pÎàH¢|nÀCA9¬ pè{ã¼JäÊ.wªç¨o îVËÉv«F9¬Z¶Ü¾U´@óªmÂØi¬”TÖÁnc£&ˆ|/4—H DZXÿµÏL[‰ŸQè­ì“Ã(‡a‘ OÉ#ÒİHkã/^ÖjÛÚmáÞ>€IkMØYC¥(¬ðíÀxZVhQmà¥DÃ}_U×—ÿ) v&ŠÅ*嘺)k"sç³O º«w…’®dá²SŒ¢|ÖíŠû†ƒrXkóW[$×/›Yˆ2Ð WŸ·]/ù ÿMMï솶ï‡(JQÍ®G[Š÷N϶w»¾·y©@@¡²¥F Ê@MZþJ²éº‚8Žâ6|\3ñ7IttvAÊ‚Í>)þ7ŒÝùe†×) Rý7—  Õ»·q&M…’æ½±w³›ïi”ħyï|±:þŽ[H¼t~3jÐÌ+ç†L³ç‚œáòÀ°Ö&ï‹écå°jÛ¹â>½ß¯`¯ÐDï÷ b”àHeûÐDÚicx$íŽK<”6‡ÇÒßáùà”cC“icP¥µÙ|µ.¸jJƒ„V.\ò A”ŠM»ÕVˆýã‚Á Cñ£%¹f^š £$Çk1ŠRTg×&½6Ùç-”ñ£ÖÜ“b”Úi³tˆª²Ã=\ó nFwä¸[‚(AyR%N•gAPžÕ¯‰L©V ù˜ÚÎä(É :A^É¥Óä&×½un ;A¡$Oß…y/‚íãyå0áiÞ‹gA¬ ÉåK´lüêÕ:=Oø F9ìOksëúÝŸ•ŸMzCé.ýš‘ÞPÄ(‡UÛ¦} ÇjûܹþK“½Á£r”äšyRó‡žÙç>%âmÙçMúð›V­˜Ôk‚k¢AŒrXµíþ™w7oµn9×îyàXý^Kõ÷|›yAŽ’œ øi.&'è4¹ú"Öõõ"ØœÆ-ÇwzPr°—ÍUzyùl!ŠRT5ëþ&C0ôÝ·®Çâ[ +õ†^9 uF Ê@PxÅ}&šTèíP APŸ{'î¡Ôø¥†Ï‚Úœ½Nø`ÔU(=þZÃ1Œr˜ ÒJƒ "-Liauüw=³!Ä]75WWÕu…(JQÜ®`›Î¾O‚s¥fCnÊUìR¦}öC”šMb™I¯îÞÏMð*a¤,ØÙ8;6¯÷UÌh¤æ®ô1I^ŽÖH½—ë,¾§Q+";±çËtŒ’Ö(Žœb¥(nW4ÃT9Ñ¥Å{]”ãÖy¹Î>½t7¡ŠI³oCG¹4âÃ(‡UÛ¦+¼sù= ê o¾ô˜|#éÿZ;s,Éa\‹.H'û„fi?eÀîý¿*%>Œýônê¤HLTèÉ”‚%TžL b”êmÛÜo“î(²rû˜·W‚È F9L 2³.•&'È4¹: »ï"ÂÉØ‹YI¾“-°F9¬ÙvzŽSî'_ß¿^émýb”Úmüƒ‡®‚}êbv5€1ÊaXä’TisX¦ÍýIrо3gžAël ŠLÎAr l¬¾Ǻxv/Ö8R0k?a#AŒrX³­Kºù›w 6”(ô¦˜ F9¬Úvº›‡sG“"œ= b”êmW7oþΰ‚™ýº|â‚%9¬S)÷¨:më´¹nN¸5  ƒ†WU»Ï‚(U›î/Ù¬gLœC+YsFƒ%¹fßµÀ@Bë•+Ðð¾i½r!ˆ2”7fAò,ʳ /mbTk\uù‘!ŠRT³«û=+¾Ÿ$5QP„(5›º9ýÂÎøbm(|c £Vm;»Wß×–Ó 1-©¾û!ŠRV8^ñ(´(¬Ð¢êÀ_]P^¯ïÓhbØ©õ“¢(EA…胉65Ú ®94š”hRPansƒhRu߯Cå¬Oœ1T±Žs”äš}b­MKÜÿ`%îÿa×áör 4”‚àGÊ:ÿã (ëü»Ï@äT¦|žïYM.=#²ß}j6ŒQƒ"Ñl;DÚicÿm? ]¾Håº(Æå„AÊ‚‚Ô;+Õ©6XgcQ>Φl³3ɲù³Òi,›Ä(‡5Ûz‡RJ0r­Pb®;lAŒrX5mÝÙç雲†‘E¢1ŠRT³ë9 \)á‰Aó´<ò¼>g\Ì™¯Ô˜‚QG £&ˆô]Vc‚H÷Ó¶ /­b‚êLozCà–¼ÝT€Rœ’Mø¶´¾ï§§³–gs糫î8•þQwB;8ŸÖ²¾ƒ0†Qã¶E²óõþüöؼ…îL–#º³¥(EUÃî¾cmè)­q©…zÒÂå0(¢"m Š´1(…)‘6EÚ‰Ü ‡Hƒ"m¬­åþÀöæ¶–ØÁ£×L*hÆÜÌ] ƒ”›](ì¯ÈlˆòõJg£Vm›¿R;ûxÌáÔ΢}ãZIíD9Jr‚Τ̤Joþi)mQcb¬Ì¹sç­ÇÄ ÁóÂ%˜D¨ÙtN¹Ë…ª`·¹œ¨0HY°Ú¸t7?ã2Á%ÁB ç¸ZŒQ”¢°B_öH41¬ÑÄ H°‘84š”hRPansƒhRm_òv,GΓú}'c¹ñb4àSÆ ä(ÉarW¬®Óæ°ÎÐóîÀìQ«“¾ ZL+(­ê'EQŠjv}uÉþäpØïo9XÝZŽÏ ež¡õ1sF,oÛEè&À_ìÜúŽ;·{wê¥uÁ» Q”¢ BÔ‘ìhcP£5‘ï¤.A»ÝÏwˆ) ¶…r·¼¡¿äW01£K~AŒrXg›àÐÈË™ñð£GAÊ‚ÕÄkùWÝÄ aε¿D¨Ù$$\ô“êê~¾suŸT!ŠRT³ëI˜Ï·ëR›`°CùwÑÌß©r£#ª/ý0HYPê¿H©6Øfãýýskwæ·Ÿ*Øâ®{ZQŽ’ÜŸ$׿ËM1ÓP•›¥ŸnU÷ˆ‚Éwñ.å(ÉUó|ÅhÖäðRVTÇzb¥(¤Py{…6…ÚCÅcÐÑÆà(Ú©ì—ŠF›Bmª-໵éØщa-ÁéJ81ÊarX©@ï)˜õ¦i˜²üÕ§)+Rã”eÂ|Ê q”ÃàÓì1O³1l›=”Ø8›ƒÏ³§>ÎÆºÕŒ[ܴƧ 󿆤nýIcƒ„ƒ’r°¼]gݺÚßüºîÛå Ê@ðIÖÂ'Y¶Éul”EÁgYsåžà£¥ìônãŒ©ãæ†Õú´9nnb”ÚmcÚw°KºúÎø(HY°Ú)­LßÔ‡Sóëy:ïKð=ÿz—¦ïy”êLë ó‚6¿ø.¬è GIëDï¹G§Ía6צáI#ù’O£@kƒø†(JQÍ®»]0µ“¼ÃD¿Z8cå°j[ilôÕööIÅü¢nŸÏžJ©UÐê>ã)µ0HY°Ùèó[OŽu{Zdxo(ØðÎé[C£Öl»ðþ¬6GjÜ.Õîˆ F9 ‹ïG¤‰a‘&ÖÆÿ«ÓÊj›»;5c0…»¹_Hp/w„¡ƒ´Áƒ­Íb6‹AÚÆÀÖf1H›Å mc dk³¤ÍbºEŠc'=Q°Í{8âÚ¬.ö¿ù«‰ÊºÙS±åÂG‚¾#½”ä… Rˆ¢UíZŸæYWíub~¡…!!ˆ2P³é”îFýƒp/Ì_·ª9_ŸqøpG¡À樟E) *DE0‡Dƒm Št·µÇ((ÑÝÒþEåF17ˆ1|>„| ø¹ÜwüîkG§0BQŠj¯˜õµmÁ¯¶¿}-xÖQ²  Õ+ Rm°ÍFø´“«Õ¡ä(ÉUóJF/CLì5Ì r”äà8pé49A§ÉÕi8·ÙíáhÿøŠi¬â]0«ç–•¼ƒå°jÛ,ÔLôÚiÁ¬§1§+ˆQk¶íÐ4­œö2 ÝMvýwó‹ÖxË+œ3e21lÈTê[z£Öl;¥ 8 uúò‰Q ÜW\E) *›•C¡IA…&…Ç¿žA41<Š&Eæ4æ$^CK;8aŽ…¿›!ŒrX}Ë_+ ?Ï^Lö—…-ÈQ’Ã:•Ú·ªÓæ°ÎÈóöÅ}ÖPjÞ€Ì\ÌÄ(©"†=ºE)ŠÛÌyïë‚‹vZ’©@zó÷w"e f“Ðecøq/f¾c*§¬ùa@bÏ£$‡ŸgëÄϳ¹6 ;œÕå|:!éCÃ>°>_!ôÕ¸'Fü% ~R¥¨j×6ö†¸ŠXAù:å˜}¯¶mÏ&ì›2JQøYÖLãg¹×Çþ‘néê5ø ZÍ@¼) 6}±$“÷÷—€;WK½«8q°mç®[•QŽ’ÜŸ$ׯüÁ!Œµ¾@d£ eÁjc馓~Æb;f©©Ew½ ‡ù4Ïæ¼CãÔ:vœ;R7¦CùÝ6ÍÕ ruLÎÏ";ß³w¬l½DAÊ‚u<û,£·Æ_ ap!=QêlJÝû)œýîðð( R¬&^RS·á ¿œý@îFAÊ‚ÍÄ[¨úš×.ñæ¯Ll‰ÃuÇ F9¬Úv½-6c§ºÈ3qLp>¾©ŸE)ªvw“毼L®Ã ³ä(Éa(õìÑisX§ÍµiX—°Çp½þ·ÏkŸ%íÌx3‰Q”¢¸]Á”ϵ̸8¡ýµõo€¿_¢pJ‹^[a²`3Ñ›ab × š±K¸†AÊ‚Mêqxvhæ1Êau"ö„á†å‰ƒb×7÷“ä(É59ˆÑ6¥Â‰‰7a[ r”äš}Þ¾^V¸‚9Þ‰qæëÀ¢Ö(GI®³O*”h¹èŠ¡”šœ‹¾ŽYhÔ5öìÂÉUaÏŽ‚”©þîÆ0(HµÁ6›T†•ó¡žœµA”šMb·­ñ"”¦” sÒ×qlrXiçc®÷7ó¢)ðëÚôL½°H &™',“F9¬ÙæmŸägBïô{3¬Ò¯‚ñÓ Qj6‰ |Æ{s3½÷Gè@Ð×ñýѯ1ãU|ÏîKjMŒ’ž…Ón1ŠRT³«[ˆÞ2D¤ÞD¼c¥(¬PìSZVhQuà—Þ±ÓÕ²å)±îBäÿPÇþíÄ(JQP!Xˆ…&šTûuÕš¨… [¿Š4Þ>Òû͆{»²*'_O6ˆ|?Y÷à eÁfc¿ùx+y…²Ü,þrÇ0ÊaÕ´s‘c%.”´œq$£(E5»Vµ-]˜²B¡Ü€2e1Œr˜ Ò[_b‚H «ã_n:³çDï]X[AŽ’ÜcßñŸÏË6®ÿe“°9i%x?¨F„(Ayңʳ (Ï‚ <©iA•gAPžAyVÙʳ (Ï‚êŠ-¥ŽPãÀ?NŒûµ0ëÔc\fýÅÖ~Ç÷¹·©í+ì¬$ÿãÞ,k$ÿ‹«œ|–¶ü3R—_[~£Vm;Ÿo¼G¼ðF­ãš½ð(E)ªÙu]î—ºBo¢&Ñû õ.ø¼0¨òR±aËÖê.QŠRR(wVi m )´)¤Å0¶B›B m )´«rH¡M!…6U–ï<Ïw(¾š8((L€”›Ôý)pwåQü³ã{" eÁ6ÇÅA´smßë¬bº‡ºqó"¥¨jXIIÅš þ‚ë¢faP†ã/µuçš3wó—’û& ‘û;ßÁˆd>„Þ2^Ú³ûÍJóLœæM9µc¥¨fWwj{#…©_-à®x¢ TmzƒÕH*äÕ„7¤+”?†"DQŠÂ ¥‹IºB‹Â -ª üòqý”2wö+fÄ?ÌÙb”êms·¨¬PrbÐ2FòŒ… Ê@Í&é®Â”¨3’vý‹í«t:è˜ØE®Œú.÷t+â(Ea…ÞRŒÂ -ª|¸ú£Š‚‰ýžØib”Ã:‘-Á¾ì=`ÏïÃ<ˆQƒ"ew]icP¤ÕUr ¿kLÀ‹É­bÂ2 r”ä°Nù7Št6‡uÚ\›†ÇÍww\?ÂïÃêãR°á°Ñ‡%ˆQk"·!ŒDßÅE†0Êauæ{Åú„¯³ØŒ/oé/äò¦oFí"äÇT„¡SíÙŽ.OoÅÒ£ôà€û!ˆ2”'Öš< ‚ò,ʽMžAyåYù(Ï‚ < j+ö–Õ—pS¾€¡¼‡1ŒrXµmŸ…˜Öئ '·Ó§I¤,(Hõçõà Õëlë•r׳»Ãlfž&FNÉÅ(JQP!(y:šThRx ÝeÁ †GÑýÂÀ="‡F“‚Mª.àûv½µƒ‰ƒm黪QŽ’ÜŸ$WfûœÒpÊçÕ6÷{º?)\Ðc/Øàê»k£ÖD>éë¾ÞðG³ŽßHkîD†0ÊauÞÌ^0çP°¡4¢ç‚å°*råH«›¸óÖI£$Wç`¾yªn`Û¾,)礂r-Zx}¢ eÁ*õM6c´×ù&çüîQ”¢ê,<\ηnú¦nigv†E)ªÙ%~F? ¤vöðà#Qª6]ïw~|ñÊÄ1ÉCìŠa”êmw·ûÓ²{Ø{CûéÕ ;‡ Ê@Õ¦¥³É›M)Q?âF…(JQX¡˜ÊSZVhQuàß’à1]°!”Ô}‰ F9¬‰<…á;–ïs(ÂP‚iãþ•,òîöMøâ“Ù ¼’Jd£(E5»º÷ßJ¸M ÒsÞüåŠ@”:›–øFx_‡Ò'ø>Ö¤Ïp £†E‚ yDšibuüÏÇí Ærì1ÊaͶmHŸ(U¬‰cz%æâ¦E(JQÕ°·BÜs®çý é…2²ü|Û‰a”ÑÞJSDZXÿã³X_èÁ/[Gw[Ý eÁjã,}êLÝ* &_RÂ{e”£$WÍ[ÞÖ„ØIP1´ª5ó‚%9A§»´å&W§aÝš§aç &†5_ÕÒb”ðH”ò÷¨´9,Óæþ$9hß™3ÏÆ u6E&ç 96Vß‚í+¹ê/§[ïx#çB¹b‚‰AzŠŽË!ˆ2P³éÖ?n…£Òã<·„—R1#·Ç‡#†Q«¶]ýçŽ#Žký™é‰QCeGÍÇ(JQÍ®'ÕJ➟·«ÜYd™8¢€ýä0Êa͸m l©›W¹·\ñI*'~‰û$QŽ’\ÕùÖÿŒ`ód.z£VE®c_',¸Ÿl ƒ”ëzÙ–3‘-ØOÒµAŒr)_-TEÚicx$íT9J›ÃcéOÍq¨ÂìicP¥U‘ûñ»×^Ò<›æ¹;”AŒrX}åöS:ÃÇÄþÄ p¬ÊU‡D¨ÚtJ•JÝG>ïÇ{r¹“ƒtgo­ˆ2P±éz³:Á4êõÙý)Êé6F-…a(Á mbòNÑf1H›Å mb\¡h³¤Íb6+™Ž´Y Òf1m‘g`Ë›vóµ­ïËAŒrXµm^q·£Þ7qͧç‹È|«˜³m,ˆQ«¶-]âO®¬Ëߺ;QŽ’Ö¹%uÚÖisu^ïÞSOŒz0Ô¨?FQŠªvmÝòòç6 ÖRd¾Y‹a”êmû¾gÜÊ¡7U Ä£%¹jßû]}×ÑÖ ¯Œž·¤w•dY°ŽtÝï(ð-°ÂuIß‹‚”©þÞò0(Hõ÷—ߟ¯Ô”» uÎUØýäx©@`C’ã¥D¨Ê›—MH,}G '»:) ÖáïÝ"^£`Có„ž/b”êmkg›?±T°±>mä(Éaè*ŽG§Ía6צAnÏéWæçÛ….ˆJõ“¢(EA…`Ãs(4)¨Ð¤ BP-p(4)¨Ð¤ B³ÆšThRmùÒ  ¸ç…’ÖG& R¬6]üë­6LÎÓ¢šVœ£$‡u¢8Ý£Óæ°N›«Óp>ûDÔñ*˜ø gx£$'èt¶+Å9A§ÉÕi¸¾ 3ÞÔ`÷yË× ¼"cuÆ0ÊaÕ¶{¹„2nïœ88¸oZ#jœ£$× ¼ÕR>Ú—Ï“îu%Ý'wQ® „ Ê@PÞ˜Buȳ (Ï‚ðèYu<|…ÇÏ[óù¢ÆÓ!Ђ > ªkvîO{ÿ>U8¥wïTa²`5qy¿©ãªÈOŒÞÔ2„(AyRiC•gAPžAyRbE•gAPžAyR[•gAPžÕ»K&Œªœx ‡QQŽ’\³ï‰œ£¾{å䊰éDAÊ‚‚TÔaá’jƒ‚Tl³ñ¸Æ¾DÜÄ(PPÜ÷E)ŠÛåÌ WÃöåwÛ3˜¿ÿ¤7;²cå°?9¬ɾ­¡:ÖÄÁ±B/¹…AÊ‚ÍÆ'aîªNM jGF?Qª6•æÙ÷æíXïu|ÂëÖr¢ ÔìêÒš÷1÷RÀ#ѹE) *DÙk‡Dƒm Št§†c”è÷gz*7йA4©¶€Ï+s÷™É™UNt·„C7ÈQ’«ö»Ì){pÁÆ_Ý…cå°jÛµlÊ„ áÆåúhý53Ëbå°jÙ-Þ˜7Ü»÷æýîÂ9“ÆóÝð«cå°f[—@t—X %Õqõ2FQŠ* ×Ï—ìa»–ï¥å(É•ñ_ç}ø°+m¿ÎÝĹ«÷…‹5xæ‚å0,ÄC‘&†EšXÿå«'ÇÛ´».‡”RNïu}[G£Ñ}å8 ïBa²`µq›Õ~az¿Æ›Œ/x”œêA”šM×áÚLJîÄÁ–@vµ G9Jr’\˜~Ͼ¯°Ÿ¼˜ü¡$aC r”äªÎói4»êZ†'Áµ²W5†Q«sp>+Ú›J8‡ÜX%HŠr”äª}׬·3sW01TÖX£$'èt7ðE9A§ÉµièÂo1§@Ân‹«%!ˆ2P³©;«¼uí¡õ¨V!ŠRV8^ð(´(¬Ð¢ÚÀ?ù_Z~bH€*9ŒE)ªØµ}º—Ä[-4Éø-‰Q”¢°Bé.Š®Ð¢°B‹jÿÛ!·î¯+yÆê:¬œx’á•å(ÉUû–n5Zä‰A ¦§Lu¢ ÔÙt„÷ùmÙ¤Œž Ú–¯rº»ÛwëƒJwî¿PRÀ…ý±E)ª³ë ¸¨Ãn)ºÀ~t£Vm[×…Å@l¼‹‹u&nØóõÆÄ F9 ŠD Z‡Hƒ"m ŠD)‡Hƒ"m Š\r"m Š´±¶–w9Ö’saÛÚûÃã‰ÝÍBÁèZö7ƒå°jÚÖG‘î¤â¶IýFêˆlbï:"1Œr˜ ÒÛ¡Ä‘VÇ¿Ú7+í"ÊİÁ{×s¬AŒrX³í«˜ë¾X°‹x£Kñë %­Á³‹a”ÑÞîÔ &ˆ´°6þÞ“uç·«9w!ŠRT³KLkÔ¹- 8ïU91øÂy¯(GI®Ù·K‰å ½Öß¡tµ4M Úq<ô ýd Ê@ͦK@c3. } Ûq¤,Xm¼»WÛßU0¹¾ ¼ÝAŽ’\3ï=„GN—ý³â&,Ý Ý?R‡væïK¾y3@…re&©Ÿü´ A”šM_Ufcö¾*w+e—°bRûv ƒå°N¤ô _MJì‹qAŒrX›å§¤•7tß•ÓTYÇ»r¸)+9†Qk¶í³g(gnÛ‹ y­.FQŠª†½Ž“ÏÝš%Õ@ð‘£(EU»Îçª@4ï¼—ßAòö^MlÃïê‹r”äþ$¹:0w$19}S-ãçJžÆ(JQP!šn‡DƒmìOC¶)Ól YfSHanðscoSeݽûèÏlHõTk£Vm{‹s±Bñ1‹×©Ô¨¹râ–Œ£æ(GI®Ú·t3î/SlLmSä(Éa¨qÝ£Óæ°N›«Ó°>ù®@bÐ:æ·ä®öŽÑÌÓÂy½-œ?ˆ2”7gyåYPõs7²¹ØÕ<Ëï­¹r⣆€–´A” ‡¦p¯çsi¢ eAAªÿs(aPêÿ$Êu].àf'‹Y§2÷obå0(R9•5‘6EÚIå¸S‡ÒæðXÚÔ™”™Ticu5¿…²PUôþÌz/Þiïy‹dt'†‰uJw1ÊaͶî—ÍípnbX×®Ä(‡qÛ¢¹†{öä°X¢»@Bù 'ºCe jÓºµ°}Œmqu¬@Ãn¬UÇBe (O*ªò,ʳ 7ºB¹äéoK&‡ Ê@Õ¦§ «ˆßÛv…2Šåf6ኂ”›]\â- Hý𠯹„ Ê@Õ¦ý..ùŽ×vî;`£ eÁ*õØ|÷Z(HY°NÇÑ-1oQ´@co•ºÆB¥(¬Pºª+´(¬Ð¢êÀ_Û³ú6…«›1±fÀÇãZDÔáˆ@”:›ŽøNryJ—Üç»î;‘«.˜Ø8sÀAŒrXµí-²¹ŠÇ²ë?ŸÏÎîš±g=ñß=÷y½0F9 ŠDâicP¤ý·bkæ+¥ÿƒºõè-ð4LînE 2ÎQ’Ã:QG›G§Ía6W§a¾Z¿»?N âGÞ!Ê@Õ¦¥Ëìx«- “3Ô(Óç(Éa(“áÑisX§ÍµixζˆÓQco‡|d‡1Êa‚H_{\DZXÿn‡µ ªÃ?ÆØ¸bå°jÛz¬îp{b¾™\lÛŠ@”šMï7y µœ4Jc6¶#e (O\¹š< ‚ò,Êß~MžAyå‰!&Ï‚ < ª+vû¬awý6³gùν«±Ã(‡UÛöcθÐûåŠÎn¶W¿˜57Û«cå°f[ï颗S¾Å%EQ²`•z,-“‹N±gÇ¿v¶Ä0ÊaP$ÊÅ:DÚicu±œ'»ëH<6¬=Í‘! c”Ãþä°6$ÝÞàmƒh˜¹òÍ!ÈQ’Ã:•ÈUÕisX§ÍÕi¸žÃ.œ (œÜ¬.lcQ²  ÕÛ?›©6Øf£.}¹çF¹r´ƒ†Ž5Ô‹@”ªM÷Ìß;Ÿ;U8¹%8TQ²  µ¹¹¤Ú  ÕÛlt©h_s@ƒ„**½!Ê@ͦîRü7¾±¿˜Úó}=†Qƒ¶YaYærµ?VíÀ® îrT eÁfãíŠíØxÎs·þ}½; ’2…øˆQ”¢°Âñ¸ñ(´(¬Ð¢ÚÀ¿—c½¿àЗà8+¦A…Ÿ‹AŒrXµmé]gÿÖU8;d›W¤,XM\7­‚,,–­÷eýÕ¢Â9³µÃÄžYìU1ÊaͶ§Y)Ô3ûûjëAž‚°Án·/žàk³p¦wÏ×f¤,(HµóZ‚T¤Ú`}fîƒË3-˜˜®À~i£Æm‹ðæ£?ËǤ°pT¾”ñݣᬌa”êiç¦Ö&Ó %•‚i1Œr˜ ÒŠA‘&ˆ´°6þ]šüc¦É'†‰©0ÜÄ(‡a‘Èéð¨´9,Óæ N´©;dÚTicPdr,“Cicu5_É…6£ʽ܂k) VïeI%o*(ËÂ!) 6…*œV£-ÞÂÉj´!ˆ2P±iùÜ>WŸ9D…sæS&†YÎ7sø‚å°jÛÜåŠ>Ã@⦷ ™ Üô‚(AyãÚuȳ (Ï‚ðè‰;êðY?‹‚ GgË!Ђ > âkVXxo*Ñ‚Ç6§Å­òQX¡XÇQZVhQUáò~MýOÌóñ ~ü³‰Œ‚”ëY–½¦0üšéôÆ€ F9¬Ú¶ö›7+º¬û -µY !¤%6Ce fÓ±Û§ë},~¦°ÞÇDÊÏMžAy„GO jkV(!ª;ï*”ôÔ£!Qj6ݸÕO…¶w›Ûôª÷'¶×Þq³2ÎQ’û“äÚÀËJ½—íë'¢ý¹é š0U¢ eÁjã¾åfÏ1¶+Ÿ3V²F9¬Úvlzõ'9+& Nr1ÊaÕ6ð“®ÒÐr&âƒóý©š˜û](£øË7ÙF9Li%f‘&ˆô¦ñ“¦ßõÛ« r”äê:¹»Áß—»ÜÇ>õÿþGì}ëYÑ‚‰qN4ˆQk¶}µMˆË„íwëüä&%¼‰aM¤+…Ä(‡ýÉauHÖ7Üõ¦¤'Ê-/ÂJ‰‚”›K«ÜÚAïİ!ÔÓ#ó F9¬ÙÖŸáÚP¤,(HEo€Kª Rm°MGkzSôÒß–A”šMñ’þ*}zHÝH"e (otûò,ʳ 2âÛçã +ÙVA3ÈcGZ¤,ØlÜôÌ0ΞVLÊÕâ|æVZ‰Ìð†ÌüÙÏ£VeÎG"ý—ÊnúW8ePð) v&ö&ÄöÕ{ÛXc¥(¬PÜT……ZTøÇ!wyjÕ¬eý}IÉVÿ}|—8‚å°jÙÚWûÜí÷Ûz\á#ô/$œRÆZ8¹D(¼¡Q²  ¹L.©6(HµÁ6·3¢âgÖ–hÎ{!q™ag#FQŠªfí›4êQ¼ï­#檸]ˆ2”'æª4yåYPô§è,@ÂI¿¿é‘·[))ó#,ÁF9Lémb‚H «ãônˆ·Á©PÖkÉùF9¬šv>çZÐ)”1ÙÜ´F9LéíÑ b‚H «ãݬºêHÎHßDXj6Qª6ݽÛãOUΙ ›&f$†Q+¶íŸ¯Ô’¿»Ž–>ö–† 4oµÒP¢ Ôlº‡â¡cÙẄ“ÙÂb”êmó2ó®tõ>÷‡¼7g´¿õ}«ºÀöuýÝ­~'à3<ëîë;)‚(5«úSÉ´î빦‚˜ ʉ7¼‡„AÊ‚ÕÆmîaþlzO1ÅÙô0HY°Ù¸®õø ·žlHé­'AŒr‰BP‡Hƒ"m ¤Ýüƒ‡ÒæðXú›¾8ô*8dÚTicm5¿çH,0ª˜tFâÀ(ˆQ«¶Yñ”pF_›˜¿Î¶Ç#ÓÛC:qPÜSp¯k”£$× Ô{Ëq¤S(còX £(EU»N±0¢çÞþ‚zm§k÷³óš½Kûýd”]®ÊÄ áP=©DÊßO‡< ‚ò,Þ?x†Ï¢ðøYT˜˜ÒgAeÍo!6Ø]t|ºkœÞÔjôXH!ˆ2P“çi¢¼¹¼DÊ·$MžAyÔVD—×°ù‰AÃ)§åBe jÓ¼ž íØ–>8³—‰ƒ»à+ÊQ’«îÏOP:K§Æe¯×wƒå°fÛY;ósÃÄ}'‚å°*RøAá¯å¼>ì%~ëSÕ²÷¡óa”ÃÚÓø 8ŸÂê9n½M‡-Ç©~û@8•Þ+•ú»¶föÒÄ0ÊaÕ²küù\ߊ, ì× /N¤,Øl|'ÝâN“Ö ŽŒR‰6Y÷%uÖi|+2ÿ†eŽSŸ Iô³˜ù!ˆ2P³é”Ú(µ ºbÆ^Ü®F9¬ÙöäiBõ¸s^ú¬‚Û©œ”ÃÀÞL£EÂb£C¥ƒƒ2\›„Îõ§b 6ôé)Î F9¬Ùö¦c HçòU¯ñwrk7–þÜ{ÁävÒ‹¦Ïråä&¼ à eAAª¿# Rm°ÍFïÅ è×½ 'zʸìÄ(‡A‘hL"m Š´1(­1‡Hƒ"m Š´»# Hƒ"m¬­å³íabRgçïê©9&Hròô'Y•°ŸE) *”zDx-ìšÄ<®ùlð®õšO£ÿõiçâ^”à“¬ŸdAðIÖ$Ã'¹WƲ©‹û<…ãjìõ1ÊaÍ´}V=®˜L\†¸ˆÄ(‡5Ûº°Ü[å¿ÖÇŒ…O•’ÚÒ„¹Ža”ÑÞ^§ &ˆ´°:þÛ*‡zöøÚ=Ý,S ý e9˜D¨Ù$–¬ôôï_pMÔº®C Ì ßû8]cÄëöbÃ;:Ïͽ…×™¾ö­Fx$Úž-ä½rò“Ã(‡A‘WN¤A‘6V‡ÿ2: „%y÷ûª7éS(W4?1hhpQw¹D¨Ùté ‰Â‘{?eö{ÜAúÙ:ØÚQ”¢ Â+¥Ð¤ B“*CºÃåpµ`b@Œ ¨AŒr ó£•ÊtpP§}; Ê´1¨ÒÆ ÈäX&‡ÒÆÚjÞöTZ¯‚r3Në…AÊ‚ÍÆÃv›Nn^÷-ƒùI0”`61ÐÕì][¤“öózgoÜÄ0=q24ð1úŸ6¯»{ä)Á'™óeRðYÖ4ÃG¹×Ʋé—ô°/V1©Õ {cAŒrX³ÍÈ/àÌ_ÁÄŠÎÅ1ÊaÕ¶õù3w21L|Nð1ÊamG"‚¹·YêñP¼Û»\5 ÎïÚA¤,X <…Üð'Ná2ˆº/œBêV¯ÃLì¾Àu˜ F9¬³m³·–i(PKƹìû:7D¨Út I}c¾^L.v ä(Éa(…åÑisX§ÍuÓ°ÁiP—Ö I¹i%}*ä{Üÿù|ċ䨙pâ˜à±£†Ç(Eÿ㳞·Æ7ˆ”¢ð³¬¡ÇÏrOX_ÙB=za6dØ´÷%ŒQ«"_ßÇ L®ÞÓ c”Ãê,Âv¬í¿ØÜÅÿBk¿‹‹ÑÂ×NÐ(£ÓwXÅ1ŒrXgÚîózV¶H ضGëiœ£$÷'ÉÕÙžàÆ•lž$Ô@Qô„(U›vñcçZ «åÒJa%@Ê‚ÍÆ.JAÓŠA k‚£Æ(‡a‘è]õ¨´9,Óæþ$9hß™3ÏÆ u6E&ç 96ÖÞOOÛÍßrOO›‰QÛÍ·…DÛ$Ý%Ææ7ÛyŽ.Ññ=æb¢£Q`ÐÝÔ’ÂÎe>«ŽËÒpç³`z˜ÁäEÿ㳞¯\ø–¥¨îY[`ž)‡µ)»ÚŒC÷xÄÀ— ž8&u²Ó±ë 0‚Ëú§iŸ¹’f;Á'Y»|’Á'VU„jÏ’êvê£z’¹¹¡'™P[ïR~ˆ¬ '×…@¤,(Hõ^ƒH€‚TìfãŠ&ê:J*±¹0+OÝ4Þ5\³Ë¨Ó7¥WÊXñ5JQŠªvBÍVëøh˜˜½AaŒrXgþD‚Ü Ð =Át²ý8´)Eágùî D©ú¬ëù„ k0(Õ¹º\hQçê…ŒƒOVˆ¢…ŠÉiU¡Ea…U¾tšJyG!uuSy?@rÿgþ¼?exW³½ÌûçþÞ:¢%¹bàÜ·} ýoŒSöxc b”Úm_Ý)¾Ë±Ex±§-êG"ð²œî»ò&ï%„âþù­DÄ\ÈBÅJ™ Öt 6¤³ug.ˆQël»;s­f«õ5l81´~¢0F9 ŠD›¤C¤A‘6†GRô¡´9<–6u¢HÈ!ÓÆ J««y“:ƒãå”ÜptDAÊ‚‰Â·E4W¨PV“›ðÉ>­#¯aâûêÀD§Æxšt'v¤³¾Á°q”ÃàÓì1O³1l›=”Ø8›ƒÏ³§>ÎÆÚj>ÖxQ)#R<¹i!Œr˜ Ò×ÿÆ‘î§í ëÜ„(‡Õ!Ù÷ÇÚ¤7îþ]%óï*¹;•1Ž’\]•âï!NéËÉí‚Wä(Éuö-‰TaŤªNšÌ祷Õã M«¶wës±ó~Ãt§{HM1ÊaŶåcl²Ø[>ý&ëM„,ó±&vôe>WxÌiõéé!1+ú„ Ê@Õ¦7Ðw¦&†‰Q#v`ƒå°f›XEÔk¤Á]µ¤É²¼¿î½–0q°½4Ž qŽ’ÜŸ$Wf=vϦÌÎÔŠÛ$;øƒå°Á6½1aa3þRƒ®5h‡ n– ‚òÆÎ!Ï‚ < ‚òÆÕägAPžAyb3&Ï‚ < jòº{8è„~² óûŠŸF9 ŠDîŸC¤A‘6Vßý!Êvµ%¬‹ ]}‰QŽ’Ö¹%uÚÖisMgßÑ4FÚŸgò~_ƒO§2BQŠÂ ǣţТ°B‹úï7%œ‚k»ynþhè°s/u;%yýº8øº¯&¹±ÍíOë¥ÑD9¯lßa”Ãê@îgë¼Á31Ìê‰a׌‚ý¯O;fÿz¤…Ÿe-cü,‹êž%&Áz¤†Ÿf®~ü4këÑs'˜ïo/êïúpgCG¤ïl9vûŽÀF9¬ÙvJn ¶a½Ôúë3vÎO¼ãl²˜8wp?IŽ’œ óNê49AgàyÇìŸ=JQuÎK»‘3Ùw€S •7= ) RQôâ’jƒ‚Tl³!]Å6|ÒýÒwKá¬:|¡Ý˜Në>…à콜r«Hð¾¢ eÁf"¯{ø"úkÙs_<Ã(‡qÛ¼m3çéæ‘ëù¬1g›äÄ1Ãûb½œAŒrX³íù'_ulbÔPbÑCëó"»¶U­çà~킉EܯÄ(‡5Û¾\m«uiâ˜4Ù‚#Ã(‡u¶­ú+x^/g}çkt£ ý=Ñ÷ðÇßžë¾ê›ú‘Žá*LÁôìËp&ˆQƒ"Åâ.ÒÆ HÃ#)ú ÆPÚK›ƒ:Å{EºLƒ*m¬Š¼Ÿ/‡^|že~v”ßã{n#e ú²ÝV”*ø‡·˜-3üÃ(HYPj—ì©6(HµÁa6bÙž~?4çÃ<”|Q‡>“‚Mªöî“ÚU‹ íø&H¢ Ôä]›<öò}yjû|0¿0 R,ÿ}^>˜Ñ«œ¼#¸@»Fú“}"eAቶTá‰6Øf£ëECî¾ÔS0Ñ!—z‚å0,y•6‡eÚÔ‰‹C¦A•6E&Ç29”‘‘¼ãRÄ|~ýAŒrX}åæ÷zƒýÌ•Cõ+Àý$9Jr;'µ7$þõ›)[¥)ÿÆ~rå°fÛè–ºòì2"® d¤,ØÙ(WÇtâÄ1#Ȳ±îíš»S ©1»c1ŠRV8º¦……ZTøkhŽó$I+‡æYã–åôì–üýŽa”Ãê ,â7ƒôŒç¶ˆ_ñ×òÔ›Ö9!'Óÿb®N'Ö†ĺ§É…0ã”äêJyö­áŠÊ£ñ­ÏÝO}î'ÁP‚©¶~Þæ%ŸÆ=DWºfbÐàœkÙ¤D¨ÙÔmÝ‹wc|!P™QöÅD¨³© „7úÞ¶çsÌmôàA»|ØÑÃ(‡A‘²7 Š´1(ÒÆêð÷ ÞË,Ò猵§nû¦ÝWÅ·EBP³ÉjÕÁéÁm·’¸«¢pr§/nªˆr”äª}Çg ¤Ø&y;F¦ãì––÷W 篭E) +?U¡Ea…Õ¾kdB)&aŸÝÄø[ƒ‚å0(¦|*”éà NKXƒ*W%Ç29”6Ö­æ+žâ×:U¿'†QDZ¥A¤… "-¬ÿ¥Ÿß™ÁŠ]bϸÞÀ·]·Àiý{ÛÝ6¢kÌ·òÒV¾“G Ê@Í&îüø\ºûùÆGÌgº·æµæá 9=­y8Qj6™U!\Ò® ìaá’v¤,Xlü;‘=hæŒ'ÎR8À~rå°fÜ)eÌô dåáÄõÀ0HY°ÚX²¸‚‹÷y–6+©ïï•=±Mï­ã¶'2šw¦ßʧ¯&Ž =cˆúIQ”¢ša]+œ]]˜fõ±i£Vm[—%¦TÊpIØéÄ(‡ "­üƒ ÒÂ‘ÖÆŸ·Yº Pk¯¨«üÄ(‡ýÉaÝHΖ|¯X¨nR(WZqbè•ëD¨ÙtÞÔûÁ—ÔyÃ]_½ô£(EU…ÛóŠ©nä2³C7Q‚ò¤;hª< ‚ò,¨É{ïèÜ’3·<ÜïjZ:…1Ž’œ Ô™\:MNÐirõ-+?"mS‚sµµ*‹L©ÔoâÔ[Þš8%î¸ø£(EA…£?æhAPŸÕaï“Úþ&ü‚‰÷ý¾±ŸF9¬ÙöüPcð“RûÑÅòÞ›¶û±ËÏ;~ãäžj-þ<ÄVg-ü Q”¢ BtËÌ!ÑÆ FëFh0ðy§ì¶FŸ) v6Ê] ã[0qÌðQ‡—GÊ©î¦!Qð7C¥¨f×5t§¹<ºÂ¡aT÷…ûÙ̽íê/1éó þdAÊ‚‚Ttú¸¤Ú  Õëtœ]ši<[¿¡‰AÃÙªÝ, A” <Ìrè3)(Ф Âq/q´ ¨Ï‚ ¼Ôø¥†/ð$W–5ݱö4ù¸ÐâäVßÇ«s[Qף඾˜|—Gð[ƒ%9¬SlÁ1tÚÖisuîEàÔŒàK¹ªyƒô<ÏtF Ê@ͦ ÷çkÀ ¹z\ A”šMÝgZG÷€hx3µÐDË'ʣϢ°@‹‚ Ç£È!Ђ > ‚òRã—> jköÒ|«`òF¯‹E9JrX'Ú¨=:më´¹2 Çg¼cîŠVÿ‚® ,ì<ʧ¡½Må>ÜÅ) 6¿.À€V~‚Ÿç·3­þëõ{É1ÊaP¤Ò¬£‰´1(ÒÆê ÌŸ¿µZ¸RRN瀃å0AäøÞ¹DZ˜ ÒºñÇ­Yº—zÌ]#˜²$?lI¾X;J\‚å0,rIª´9,Óæþ$9hß™3ÏÆ u6E&ç 96Ö½¸¬¡_<¬Ï̾’ ëü°< û7BCݽ b”êmËûS%±nŠ™gÃ1ÊaÕ¶µO¬ ‰Ã‹ÂYßÇRa²`3Qý]a=¯·ë~îɇåÆ}Áú‚å°jÛWw)JŠ iWè·©é›ÏpÁÝQ”¢:»¬fÔýÙ+Yãse×þüÉ‚”›—ñž ôË)o°EGAÊ‚ÕÄýÓîq’¯•·wc+‹‚”©vÿ† Õ©6Øf㹈îüÀÁÄ0kK»¸}!ŒrX³íù²p¢àLÕQ®Ùç×øêîϯ§º{å'Ê›n냔›Ô'×qâÔóñx¸¿¾ËÑÉ @”ÚÜ÷÷ÁâË”ž yÊñ-‡ã¸Œ­LØ­ 'o,Ân) RÑÆâ’jƒ‚T¬³qñG_v™ß¼^ø«]ÞëQ 6.­‡ ÷ÓDJ0Ì14üƇc5Áo Q”¢:»nœ,W›ÐŽ{Yá¡£õ:H­7òVìD¨Ùôuõ ­ua§»…Ÿeׇþü|ôg=+&É8ëÄ(‡5ÛÎÅɳ bRÞ‚å°Î¶ÇAp¶¦OœûF¾¹Ÿ$GI®Ú7÷1ˆÝX15îîæ|Ÿ÷¤)–ýISü$9Jr‚N0.&'è4¹6íÈ |†âÅ Ÿ:QŽ’\3]NìÄ O­88|ìDÊÓÎyåY½ñ\ô ŸEáñ³(¨0%0¥Ï‚Úš½û-Õß6\Áq¯Òۆà eÁjãrÛ?Ž0 ç,LL "=‚ b”êmkWD÷*ÁQ{!áÜ´DÊ/¨CŸIA&z[BÔçvÄ{(5~©á³ ¶fÕŸ`ø|•Œ& ¡ŒÖ´‚(q›þêß|ø ¥èƲAŒ[æÄ H%G­‰´1(ÒÆðH*¥Vu(m¥ÍAJmB“icP¥u«y¸µàj8;äY”gAmÅJ%65 ½?§28½´³üèê6Ö7j:høâ€ç$/˜‘^çgy £Öl»íPH[RN×È[9JrÕ¾³kóð^8;¿~#{ôÜð…©E) +ÜR - +´¨nàqÅX ¿Oõç„ð;Qêlºâ1ûyJw³ÁÙ5¬|ÄàˆßÊ)X[ñ®[9AŒr¹$UÚ–is’´Oi7Ñ̳1hA‘É9HNÕ·àþhû»—½FÞãæƒÛ3 $8θ=#Qj6Ù ¿¬þ2Âá‡ïªGJ0HÛèôÙÚ,i³8nÒúQ΂àÈY’7¾¶:‹Aâ,¦-ÓÎá Ü™NcÁ›‰@”šMOƒ“XÚ:^L,¶ 1ŒrX±íú|\íÓì’LÁ†V¿$Ä(‡5Û©¬vÈTn74€ýä0Êa‚Hét©49A¦ÉµIè:oñó휬‹‹\4£%9¬sKê´9¬ÓæÚ4H•$- +”ø9N’1ÊaÍ´_åÐËO×G<Þ>rþøšçÃkÐ×íS1ǵqlÝ={3+þÌÚ-Yñ/ˆQk¶™×L~Á¡³þšo©íQïAªà°Ïê-HQŽ’\5pé6L%PâÑ‹5'Å·Å0ÊaͶ>çu %î ØA b”Úi_mÑÀÙXž!ùݽ–θ³?WÁFôÍý$9Jr‚N ë†å6Þs|íZ¿¾7â6/†U™ë±ÄÓ°•Bc©,ÌF9L9>.‘&ˆ´°:þÛG¯±à´ŠIUÜ…Ä(‡UÛvþ#¤®Ì×µE/fßüÄ9±ÏE ‚%¹fßΆőú¸öçÛÌÕä¥ó5vU?Qª6Û¬î>”lLîi¢(EA…èžœC¢A6ÖFÿ\Õ÷—’¯ï/L»/ ]çv³3Ãç©®ÛÇ}¾Z¤,(H½³RmPjƒm6ÔßLâÛSý%#!º@”šM—Ö‚ïH¨Râ;$!ˆ2Pµéù±Sç „é›ú]ȇÄÝ1ŠRTµë–O#,½…»FTÃ(‡A‘ðRŒC¥ƒƒ2\7 Ú #8‘/$,cÁ…Œ@”¸MÁ/^÷,¤ô0¯`‚{à Ð-œ wuy[K åªáL ö_!Š@”šMÝN?¦„þ…¤ UØêC¥(¬pœ`¬ðþ|Nÿ¤Ÿe¯\ø0ÿ‚¿?ow®·­wâ ‘.úà ýïO\„½[[_1ªg—ú÷_ã)ذë×c‚å°Î¶ú!(–é,{6â o$ÏY±œß‡YŒ¢ÕÌ2ºƒ_,(89UŸ5\µ VÜ.Ø"9IߨO£ÖÙvijý†ÀÝW°¼-î<ÜC~¿5ߤQŠjVuèXXÀÇSOB8"e Î&i$4y7Þm´Æýô_y+ g‚8¬ |$á80 R¬6.‹~GW|ïe½=?Ï^ÌÚBøyÃ(‡5ÛŽM\.²ã^1©2€]÷ F9¬ÙÖù!ÊV<ÌÛÙå9Q6DpD‚%9¬…ã6‡uÚ\›†Ë:…×uýh§ÎHØÓqÞ QêlÒŽl ꜃ѥœƒ’bC5zü¡³v¿Še7L kA¹+Ä(‡qÛ¢½d÷ú–æ]ãO) ?Ëš5ü,÷\Ó”ðŽ{¸[ŸLq;ƒ/%ö}þV £ÖL뢧oË´èië.¬õ“¢(EU…åÕ³0gÏ Y.¶cå°:ø{·9Jаͽ°w oY¢ ÔlêªðÞûŽ|!Qj6 ¤á=ì'.ÑémþëE¸Í?ˆQk¶]êf/l‰…’\vaKŒa”ÑV™Tia‚H kã?Tµ}Žé.æZ2d¿×x8|ÔSSp‚_J<Ç78†Qk¦=—ãõT*ÅOþ{Å®[•3»BصÊ(GIëTœMU§Ía6צaüb‹ÏåŸPñ¹ÓQ²`g#[jžCø…¤-ÝCž¸p¢ž}~CNL ‰ƒ—³“Ô #endif #include "netview.h" #include "agent.h" #include "node.h" #include "edge.h" #include "paint.h" #include "feature.h" Feature::Feature(Agent *a, const char* name) : Animation(0, 0), next_(0), x_(0.), y_(0.), agent_(a), anchor_(0), mark_(0) { varname_ = new char[strlen(name) + 1]; strcpy(varname_, name); paint_ = Paint::instance()->thick(); } void Feature::size(double s) { size_ = s; update_bb(); } void Feature::update_bb() { double off = 0.5 * size_; /*XXX*/ bb_.xmin = x_ - off; bb_.ymin = y_ - off; bb_.xmax = x_ + off; bb_.ymax = y_ + off; } int Feature::inside(double, float px, float py) const { return (px >= bb_.xmin && px <= bb_.xmax && py >= bb_.ymin && py <= bb_.ymax); } const char* Feature::info() const { static char text[128]; sprintf(text, "%s", varname_); return (text); } void Feature::monitor(double /*now*/, char *result, int /*len*/) { sprintf(result, "This should not happen"); } void Feature::varname(const char* name, int anchor) { delete varname_; varname_ = new char[strlen(name) + 1]; strcpy(varname_, name); anchor_ = anchor; } void Feature::drawlabel(View* nv) const { /*XXX node number */ if (varname_ != 0) nv->string(x_, y_, size_, varname_, anchor_); } void Feature::reset(double) { paint_ = Paint::instance()->thick(); } void Feature::place(double x, double y) { x_ = x; y_ = y; mark_ = 1; update_bb(); } ListFeature::ListFeature(Agent *a, const char* name) : Feature(a,name), value_(NULL) { ListFeature::size(a->size()); } void ListFeature::set_feature(char *value) { if (value_!=NULL) delete value_; value_ = new char[strlen(value) + 1]; strcpy(value_, value); } void ListFeature::size(double s) { Feature::size(s); double delta = 0.5 * s; x0_ = x_ - delta; y0_ = y_ - delta; x1_ = x_ + delta; y1_ = y_ + delta; } void ListFeature::monitor(double /*now*/, char *result, int /*len*/) { sprintf(result, "%s:%s", varname_, value_); } void ListFeature::draw(View* nv, double now) { nv->rect(x0_, y0_, x1_, y1_, paint_); drawlabel(nv); } void ListFeature::place(double x, double y) { Feature::place(x, y); double delta = 0.5 * size_; x0_ = x_ - delta; y0_ = y_ - delta; x1_ = x_ + delta; y1_ = y_ + delta; } VariableFeature::VariableFeature(Agent *a, const char* name) : Feature(a,name), value_(NULL) { VariableFeature::size(a->size()); } void VariableFeature::set_feature(char *value) { if (value_!=NULL) delete value_; value_ = new char[strlen(value) + 1]; strcpy(value_, value); } void VariableFeature::size(double s) { Feature::size(s); double delta = 0.5 * s; x0_ = x_ - delta; y0_ = y_ - delta; x1_ = x_ + delta; y1_ = y_ + delta; } void VariableFeature::monitor(double /*now*/, char *result, int /*len*/) { sprintf(result, "%s:%s", varname_, value_); } void VariableFeature::draw(View* nv, double now) { nv->rect(x0_, y0_, x1_, y1_, paint_); drawlabel(nv); } void VariableFeature::place(double x, double y) { Feature::place(x, y); double delta = 0.5 * size_; x0_ = x_ - delta; y0_ = y_ - delta; x1_ = x_ + delta; y1_ = y_ + delta; } TimerFeature::TimerFeature(Agent *a, const char* name) : Feature(a,name) { TimerFeature::size(a->size()); } void TimerFeature::set_feature(double timer, int direction, double time_set) { timer_=timer; direction_=direction; time_set_=time_set; } void TimerFeature::size(double s) { Feature::size(s); double delta = 0.5 * s; x0_ = x_ - delta; y0_ = y_ - delta; x1_ = x_ + delta; y1_ = y_ + delta; } void TimerFeature::monitor(double /*now*/, char *result, int /*len*/) { sprintf(result, "%s:%f", varname_, timer_); } void TimerFeature::draw(View* nv, double now) { nv->rect(x0_, y0_, x1_, y1_, paint_); drawlabel(nv); } void TimerFeature::place(double x, double y) { Feature::place(x, y); double delta = 0.5 * size_; x0_ = x_ - delta; y0_ = y_ - delta; x1_ = x_ + delta; y1_ = y_ + delta; } nam-1.15/feature.h0000664000076400007660000001047207267156127012721 0ustar tomhnsnam/* * Copyright (c) 1997 University of Southern California. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the Information Sciences * Institute of the University of Southern California. * 4. Neither the name of the University nor of the Institute may be used * to endorse or promote products derived from this software without * specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * * @(#) $Header: /cvsroot/nsnam/nam-1/feature.h,v 1.4 2001/04/18 00:14:15 mehringe Exp $ (LBL) */ #ifndef nam_feature_h #define nam_feature_h class Queue; class Edge; class Agent; class Node; class View; #include "animation.h" #define TIMER_STOPPED 0 #define TIMER_UP 1 #define TIMER_DOWN 2 class Feature : public Animation { public: inline const char* name() const { return (varname_); } inline int num() const { return (nn_); } inline double size() const { return (size_); } virtual void size(double s); virtual void reset(double); inline double x() const { return (x_); } inline double y() const { return (y_); } virtual void place(double x, double y); void varname(const char* name, int anchor); inline int anchor() const { return (anchor_); } inline void anchor(int v) { anchor_ = v; } inline Feature *next() const { return next_; } inline void next(Feature * f) { next_ = f; } virtual void set_feature(char *) {}; virtual void set_feature(double, int, double) {}; int inside(double, float, float) const; const char* info() const; virtual void monitor(double now, char *result, int len); inline int marked() const { return (mark_); } inline void mark(int v) { mark_ = v; } Feature* next_; protected: Feature(Agent *a, const char* name); void update_bb(); void drawlabel(View*) const; double size_; double x_, y_; char *varname_; Agent* agent_; int nn_; int anchor_; int mark_; }; class ListFeature : public Feature { public: ListFeature(Agent *a, const char* name); void set_feature(char *); virtual void size(double s); virtual void draw(View*, double now); void monitor(double now, char *result, int len); virtual void place(double x, double y); private: char *value_; float x0_, y0_; float x1_, y1_; }; class VariableFeature : public Feature { public: VariableFeature(Agent *a, const char* name); void set_feature(char *); virtual void size(double s); virtual void draw(View*, double now); void monitor(double now, char *result, int len); virtual void place(double x, double y); private: char *value_; float x0_, y0_; float x1_, y1_; }; class TimerFeature : public Feature { public: TimerFeature(Agent *a, const char* name); void set_feature(double timer, int direction, double time_set); virtual void size(double s); virtual void draw(View*, double now); void monitor(double now, char *result, int len); virtual void place(double x, double y); private: double timer_; double time_set_; int direction_; float x0_, y0_; float x1_, y1_; }; #endif nam-1.15/FILES0000644000076400007660000001377111655017161011673 0ustar tomhnsnamaddress.cc address.h agent.cc agent.h anetmodel.cc anetmodel.h animation.cc animation.h animator.cc animator.h autoconf-win32.h autoconf.h.in bbox.h bin/gen-vcmake.pl bin/merge-layout.sh bin/namfilter.tcl bin/string2c.tcl bin/tcl-expand.tcl bitmap/addagentlink.xbm bitmap/addlink.xbm bitmap/addnode.xbm bitmap/back.xbm bitmap/cut.xbm bitmap/delete.xbm bitmap/edit.xbm bitmap/eject.xbm bitmap/ff.xbm bitmap/mark1.xbm bitmap/mark2.xbm bitmap/mark3.xbm bitmap/mark4.xbm bitmap/mark5.xbm bitmap/mark6.xbm bitmap/mark7.xbm bitmap/mark8.xbm bitmap/monitors.xbm bitmap/netedit.xbm bitmap/netview.xbm bitmap/nodedown.xbm bitmap/nodeup.xbm bitmap/play.xbm bitmap/pullright.xbm bitmap/rew.xbm bitmap/rewind.xbm bitmap/select.xbm bitmap/stop.xbm bitmap/time.xbm bitmap/updir.xbm bitmap/zoomin.xbm bitmap/zoomout.xbm canvas.tcl CHANGES.html conf/configure.in.audio conf/configure.in.debugopts conf/configure.in.des conf/configure.in.dmalloc conf/configure.in.dynamic conf/configure.in.fns conf/configure.in.head conf/configure.in.int64_t conf/configure.in.jpegwc conf/configure.in.mash conf/configure.in.misc conf/configure.in.nse conf/configure.in.otcl conf/configure.in.perl conf/configure.in.psvp conf/configure.in.srm conf/configure.in.stl conf/configure.in.tail conf/configure.in.tcl conf/configure.in.TclCL conf/configure.in.tcldebug conf/configure.in.tk conf/configure.in.video conf/configure.in.x11 conf/configure.in.z conf/configure.in.ztrace conf/makefile.win conf/mkdep conf/README config.guess config.h config.sub configure configure.in drop.cc drop.h edge.cc edge.h editview.cc editview.h edu/A0-README edu/A1-stop-n-wait.nam edu/A1-stop-n-wait.tcl edu/A1-stop-n-wait.tr edu/A2-stop-n-wait-loss.nam edu/A2-stop-n-wait-loss.tcl edu/A2-stop-n-wait-loss.tr edu/A3-sliding-window.nam edu/A3-sliding-window.tcl edu/A3-sliding-window.tr edu/A4-slow-start.nam edu/A4-slow-start.tcl edu/A4-slow-start.tr edu/A5-slow-start-loss.nam edu/A5-slow-start-loss.tcl edu/A5-slow-start-loss.tr edu/B0-README edu/B1-stop-n-wait.nam edu/B1-stop-n-wait.tcl edu/B1-stop-n-wait.tr edu/B2-stop-n-wait-loss.nam edu/B2-stop-n-wait-loss.tcl edu/B2-stop-n-wait-loss.tr edu/B3-sliding-color.nam edu/B3-sliding-color.tcl edu/B3-sliding-color.tr edu/B3-sliding-window.nam edu/B3-sliding-window.tcl edu/B3-sliding-window.tr edu/B4-sliding-color.nam edu/B4-sliding-color.tcl edu/B4-sliding-color.tr edu/B4-sliding-window-loss.nam edu/B4-sliding-window-loss.tcl edu/B4-sliding-window-loss.tr edu/B5-slow-start.nam edu/B5-slow-start.tcl edu/B5-slow-start.tr edu/B6-slow-start-loss.nam edu/B6-slow-start-loss.tcl edu/B6-slow-start-loss.tr edu/C0-README edu/C1-slow-start.nam edu/C1-slow-start.tcl edu/C1-slow-start.tr edu/C2-sliding-color.nam edu/C2-sliding-color.tcl edu/C2-sliding-color.tr edu/C2-sliding-window.nam edu/C2-sliding-window.tcl edu/C2-sliding-window.tr edu/C3-slow-start.nam edu/C3-slow-start.tcl edu/C3-slow-start.tr edu/C4-sliding-color.nam edu/C4-sliding-color.tcl edu/C4-sliding-color.tr edu/C4-sliding-window.nam edu/C4-sliding-window.tcl edu/C4-sliding-window.tr edu/D1-m-decrease.nam edu/D1-m-decrease.tcl edu/D1-m-decrease.tr edu/D2-fast-retransmit.nam edu/D2-fast-retransmit.tcl enetmodel.cc enetmodel.h ex/9nodetree.nam ex/adc.nam.gz ex/adc.README ex/algo-out-50sub.nam ex/att.nam.gz ex/att.README ex/DSR.nam ex/dynamic-nam.conf ex/dynamics-demo.nam ex/dynamics-demo.txt ex/flat-out-50sub.nam ex/hier-out-50sub.nam ex/lan.nam ex/lantest2.nam ex/losspatterns.nam ex/losspatterns.README ex/mbone96.layout.nam ex/mbone96.nam ex/mcache.nam ex/mobigen.nam ex/pktdemo.nam.gz ex/rbp_demo.nam ex/rbp_demo.README ex/README ex/rpm-vs-srm.nam ex/sample.nam.tcl ex/session.nam.gz ex/session.README ex/simple_mcast.nam ex/srm-example.nam ex/tcpecn.nam.gz ex/tcpsrm.nam.gz ex/test.nam.gz ex/ts100.layout.nam.gz ex/ts100.nam.gz ex/ts20.nam.gz ex/webcache.nam feature.cc feature.h FILES fix-script.tcl getopt.c graphview.cc graphview.h group.cc group.h iecdemos/make_dropevents iecdemos/tcp-common.tcl iecdemos/tcp-newreno.tcl iecdemos/tcp-notunfair.tcl iecdemos/tcp-reno-ecn.tcl iecdemos/tcp-reno.tcl iecdemos/tcp-sack.tcl iecdemos/tcp-tahoe.tcl iecdemos/tcp-unfair.tcl install-sh INSTALL.WIN32 lan.cc lan.h lossmodel.cc lossmodel.h main.cc Makefile.in makefile.vc monitor.cc monitor.h monitors.gif nam.1 nam.h nam.tcl.tk nam_stream.cc nam_stream.h netgraph.cc netgraph.h netmodel.cc netmodel.h netview.cc netview.cc.tk netview.h node.cc node.h packet.cc packet.h paint.cc paint.h parser.cc parser.h psview.cc psview.h queue.cc queue.h queuehandle.cc queuehandle.h random.h README rng.cc rng.h route.cc route.h sincos.h state.cc state.h tag.cc tag.h tcl/anim-ctrl.tcl tcl/animator.tcl tcl/annotation.tcl tcl/autoNetModel.tcl tcl/balloon.tcl tcl/build-ui.tcl tcl/Editor-FileParser.tcl tcl/Editor.tcl tcl/editorNetModel.tcl tcl/menu_file.tcl tcl/menu_view.tcl tcl/monitor.tcl tcl/nam-default.tcl tcl/nam-lib.tcl tcl/NamgraphModel.tcl tcl/NamgraphView.tcl tcl/netModel.tcl tcl/node.tcl tcl/observable.tcl tcl/observer.tcl tcl/snapshot.tcl tcl/stats.tcl tcl/test/tcl-scripts/test-lan-1.tcl tcl/test/tcl-scripts/test-ptp-1.tcl tcl/test/tcl-scripts/test-ptp-2.tcl tcl/test/test-all-dynamic tcl/test/test-all-lan tcl/test/test-all-ptp tcl/test/test-all-wireless tcl/test/test-dynamic-1.nam tcl/test/test-lan-1.nam tcl/test/test-lan-2.nam tcl/test/test-output-dynamic/test-dynamic-1.nam.Z tcl/test/test-output-lan/test-lan-1.nam.Z tcl/test/test-output-lan/test-lan-2.nam.Z tcl/test/test-output-ptp/test-ptp-1.nam.Z tcl/test/test-output-ptp/test-ptp-2.nam.Z tcl/test/test-output-wireless/test-wireless-1.nam.Z tcl/test/test-output-wireless/test-wireless-2.nam.Z tcl/test/test-ptp-1.nam tcl/test/test-ptp-2.nam tcl/test/test-template tcl/test/test-wireless-1.nam tcl/test/test-wireless-2.nam tcl/TimesliderModel.tcl tcl/TimesliderNamgraphView.tcl tcl/TimesliderView.tcl tcl/wirelessNetModel.tcl tcl/www.tcl testview.cc testview.h tkcompat.c tkcompat.h tkUnixInit.c TODO.html trace.cc trace.h tracehook.cc tracehook.h trafficsource.cc trafficsource.h transform.cc transform.h validate VERSION view.cc view.h win32.c wnetmodel.cc wnetmodel.h xstuff.h xwd.c xwd.h XWDFile.h nam-1.15/fix-script.tcl0000775000076400007660000000104706351340336013700 0ustar tomhnsnam#!/usr/local/bin/tclsh7.6 set filename [lindex $argv 0] if {$filename==""} { puts stderr "Usage: fix-script filename" } set file [open $filename "r"] while {[eof $file]==0} { set line [gets $file] set op [lindex $line 0] if {$op!="v"} { set time [lindex $line 1] set src [lindex $line 2] set dst [lindex $line 3] set size [lindex $line 4] set attr [lindex $line 5] set ptype [lindex $line 6] set conv [lindex $line 7] set id [lindex $line 8] puts "$op -t$time -e$size -s$src -d$dst -a$attr -c$conv -p$ptype -i$id" } } nam-1.15/getopt.c0000664000076400007660000000752006373472623012562 0ustar tomhnsnam/* * Copyright (c) 1987, 1993, 1994 * The Regents of the University of California. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the University of * California, Berkeley and its contributors. * 4. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ /* #if !defined(lint) * static char sccsid[] = "@(#)getopt.c 8.2 (Berkeley) 4/2/94"; * #endif */ #include #include #include /* declarations to provide consistent linkage */ extern char *optarg; extern int optind; extern int opterr; int opterr = 1, /* if error message should be printed */ optind = 1, /* index into parent argv vector */ optopt, /* character checked for validity */ optreset; /* reset getopt */ char *optarg; /* argument associated with option */ #define BADCH (int)'?' #define BADARG (int)':' #define EMSG "" /* * getopt -- * Parse argc/argv argument vector. */ int getopt(nargc, nargv, ostr) int nargc; char * const *nargv; const char *ostr; { static char *place = EMSG; /* option letter processing */ char *oli; /* option letter list index */ if (optreset || !*place) { /* update scanning pointer */ optreset = 0; if (optind >= nargc || *(place = nargv[optind]) != '-') { place = EMSG; return (EOF); } if (place[1] && *++place == '-') { /* found "--" */ ++optind; place = EMSG; return (EOF); } } /* option letter okay? */ if ((optopt = (int)*place++) == (int)':' || !(oli = strchr(ostr, optopt))) { /* * if the user didn't specify '-' as an option, * assume it means EOF. */ if (optopt == (int)'-') return (EOF); if (!*place) ++optind; if (opterr && *ostr != ':') (void)fprintf(stderr, "%s: illegal option -- %c\n", __FILE__, optopt); return (BADCH); } if (*++oli != ':') { /* don't need argument */ optarg = NULL; if (!*place) ++optind; } else { /* need an argument */ if (*place) /* no white space */ optarg = place; else if (nargc <= ++optind) { /* no arg */ place = EMSG; if (*ostr == ':') return (BADARG); if (opterr) (void)fprintf(stderr, "%s: option requires an argument -- %c\n", __FILE__, optopt); return (BADCH); } else /* white space */ optarg = nargv[optind]; place = EMSG; ++optind; } return (optopt); /* dump back option letter */ } nam-1.15/graphview.cc0000664000076400007660000000606107742105262013407 0ustar tomhnsnam/* * Copyright (c) 1997 University of Southern California. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the Information Sciences * Institute of the University of Southern California. * 4. Neither the name of the University nor of the Institute may be used * to endorse or promote products derived from this software without * specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * @(#) $Header: /cvsroot/nsnam/nam-1/graphview.cc,v 1.10 2003/10/11 22:56:50 xuanc Exp $ (LBL) */ #include #ifdef WIN32 #include #endif #include #include #include "bbox.h" #include "graphview.h" #include "netgraph.h" #include "tclcl.h" #include "paint.h" #include "packet.h" GraphView::GraphView(const char* name, NetGraph* g) : View(name, NONSQUARE, 30, 30), next_(NULL), graph_(g) { Tcl& tcl = Tcl::instance(); tcl.CreateCommand(Tk_PathName(View::tk()), command, (ClientData)this, 0); } // void GraphView::draw() // { // if (offscreen_ == 0) // return; // XFillRectangle(Tk_Display(tk_), offscreen_, background_, // 0, 0, width_, height_); // graph_->render(this); // XCopyArea(Tk_Display(tk_), offscreen_, Tk_WindowId(tk_), background_, // 0, 0, width_, height_, 0, 0); // } int GraphView::command(ClientData cd, Tcl_Interp* tcl, int argc, CONST84 char **argv) { //GraphView *gv = (GraphView *)cd; if (argc < 2) { Tcl_AppendResult(tcl, "\"", argv[0], "\": arg mismatch", 0); return (TCL_ERROR); } // printf("GraphView::command: %s\n", argv[1]); return (View::command(cd, tcl, argc, argv)); } void GraphView::getWorldBox(BBox & world_boundary) { graph_->BoundingBox(world_boundary); } nam-1.15/graphview.h0000664000076400007660000000504307742105262013250 0ustar tomhnsnam/* * Copyright (c) 1997 University of Southern California. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the Information Sciences * Institute of the University of Southern California. * 4. Neither the name of the University nor of the Institute may be used * to endorse or promote products derived from this software without * specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * * @(#) $Header: /cvsroot/nsnam/nam-1/graphview.h,v 1.6 2003/10/11 22:56:50 xuanc Exp $ (LBL) */ #ifndef nam_graphview_h #define nam_graphview_h #include "view.h" #include "netgraph.h" #include "transform.h" class View; class NetGraph; struct TraceEvent; class Tcl; class Paint; extern "C" { #include } class GraphView : public View { public: GraphView(const char* name, NetGraph* ng); GraphView* next_; //void draw(); void redrawGraph() { resize(width(), height()); } static int command(ClientData, Tcl_Interp*, int argc, CONST84 char **argv); virtual void render() {graph_->render(this);} virtual void BoundingBox(BBox &bb) {graph_->BoundingBox(bb);} virtual void getWorldBox(BBox & world_boundary); protected: NetGraph* graph_; }; #endif nam-1.15/group.cc0000664000076400007660000000635510564011173012546 0ustar tomhnsnam/* * Copyright (C) 1997 by the University of Southern California * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. * * * The copyright of this module includes the following * linking-with-specific-other-licenses addition: * * In addition, as a special exception, the copyright holders of * this module give you permission to combine (via static or * dynamic linking) this module with free software programs or * libraries that are released under the GNU LGPL and with code * included in the standard release of ns-2 under the Apache 2.0 * license or under otherwise-compatible licenses with advertising * requirements (or modified versions of such code, with unchanged * license). You may copy and distribute such a system following the * terms of the GNU GPL for this module and the licenses of the * other code concerned, provided that you include the source code of * that other code when and as the GNU GPL requires distribution of * source code. * * Note that people who make modified versions of this module * are not obligated to grant this special exception for their * modified versions; it is their choice whether to do so. The GNU * General Public License gives permission to release a modified * version without this exception; this exception also makes it * possible to release a modified version which carries forward this * exception. * * $Header: /cvsroot/nsnam/nam-1/group.cc,v 1.5 2007/02/12 07:08:43 tom_henderson Exp $ */ #include #include "group.h" Group::Group(const char *name, unsigned int addr) : Animation(0, 0), size_(0), addr_(addr), name_(0) { if (name != NULL) if (*name != 0) { name_ = new char[strlen(name)+1]; strcpy(name_, name); } nodeHash_ = new Tcl_HashTable; Tcl_InitHashTable(nodeHash_, TCL_ONE_WORD_KEYS); } Group::~Group() { if (name_ != NULL) delete name_; Tcl_DeleteHashTable(nodeHash_); delete nodeHash_; } int Group::join(int id) { int newEntry = 1; Tcl_HashEntry *he = Tcl_CreateHashEntry(nodeHash_, (const char *)id, &newEntry); if (he == NULL) return -1; if (newEntry) { Tcl_SetHashValue(he, (ClientData)id); size_++; } return 0; } void Group::leave(int id) { Tcl_HashEntry *he = Tcl_FindHashEntry(nodeHash_, (const char *)id); if (he != NULL) { Tcl_DeleteHashEntry(he); size_--; } } // Assume mbrs has at least size_ elements void Group::get_members(int *mbrs) { Tcl_HashEntry *he; Tcl_HashSearch hs; int i = 0; for (he = Tcl_FirstHashEntry(nodeHash_, &hs); he != NULL; he = Tcl_NextHashEntry(&hs), i++) mbrs[i] = *Tcl_GetHashValue(he); } void Group::draw(View * nv, double now) { // Do nothing for now. Will add group visualization later. } nam-1.15/group.h0000664000076400007660000000517310564011173012405 0ustar tomhnsnam/* * Copyright (C) 1997 by the University of Southern California * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. * * * The copyright of this module includes the following * linking-with-specific-other-licenses addition: * * In addition, as a special exception, the copyright holders of * this module give you permission to combine (via static or * dynamic linking) this module with free software programs or * libraries that are released under the GNU LGPL and with code * included in the standard release of ns-2 under the Apache 2.0 * license or under otherwise-compatible licenses with advertising * requirements (or modified versions of such code, with unchanged * license). You may copy and distribute such a system following the * terms of the GNU GPL for this module and the licenses of the * other code concerned, provided that you include the source code of * that other code when and as the GNU GPL requires distribution of * source code. * * Note that people who make modified versions of this module * are not obligated to grant this special exception for their * modified versions; it is their choice whether to do so. The GNU * General Public License gives permission to release a modified * version without this exception; this exception also makes it * possible to release a modified version which carries forward this * exception. * * $Header: /cvsroot/nsnam/nam-1/group.h,v 1.4 2007/02/12 07:08:43 tom_henderson Exp $ */ // Group membership management for session-level animation #ifndef nam_group_h #define nam_group_h #include #include "animation.h" class Group : public Animation { public: Group(const char *name, unsigned int addr); virtual ~Group(); virtual void draw(View*, double now); inline int size() const { return size_; } inline unsigned int addr() const { return addr_; } int join(int id); void leave(int id); void get_members(int *mbrs); virtual void update_bb() {} // Do nothing protected: Tcl_HashTable *nodeHash_; int size_; unsigned int addr_; char *name_; }; #endif // nam_group_h nam-1.15/iecdemos/make_dropevents0000775000076400007660000000043206753647622016020 0ustar tomhnsnam#!/bin/sh # # this script looks for drops in the trace (.tr) file, and # creates tcl code that will trigger nam annotations corresponding to them # egrep "^d" $1 | \ awk 'BEGIN { n=1 } { print "$ns at " $2 " \"$ns trace-annotate \\\"packet drop " n " (t=" $2 ")" "\\\"\""; ++n }'; nam-1.15/iecdemos/tcp-common.tcl0000664000076400007660000000653206753647561015475 0ustar tomhnsnam # begin common code set ftime_ 1.5 proc finish {} { global ns nf ofile $ns flush-trace close $nf puts "filtering..." exec tclsh ../bin/namfilter.tcl ${ofile}.nam exec rm -f ${ofile}.de exec make_dropevents ${ofile}.tr > ${ofile}.de puts "running nam..." exec nam ${ofile}.nam & exit 0 } set ns [new Simulator] set f [open ${ofile}.tr w] $ns trace-all $f set nf [open ${ofile}.nam w] $ns namtrace-all $nf # define color index $ns color 0 red $ns color 1 blue $ns color 2 chocolate $ns color 3 red $ns color 4 brown $ns color 5 tan $ns color 6 gold $ns color 7 black # define nodes set n0 [$ns node] $n0 color blue $n0 shape circle set n1 [$ns node] $n1 color blue $n1 shape circle set n2 [$ns node] $n2 color blue $n2 shape circle set n3 [$ns node] $n3 color blue $n3 shape circle set router [$ns node] $router color red $router shape hexagon set r2 [$ns node] $r2 color blue $r2 shape hexagon $ns at 0.0 "$n2 label \" link(${L1rate},${L1del}) typ\"" $ns at 0.0 "$r2 label \"/---(${L2rate},${L2del}) \"" $ns at 0.0 "$router label \" Q(${L2qlim},${L2type})\"" # define topology $ns duplex-link $n0 $router $L1rate $L1del $L1type $ns duplex-link $n2 $router $L1rate $L1del $L1type $ns duplex-link $router $r2 $L2rate $L2del $L2type $ns duplex-link $r2 $n1 $L1rate $L1del $L1type $ns duplex-link $r2 $n3 $L1rate $L1del $L1type # and orientation $ns duplex-link-op $n0 $router orient right-down $ns duplex-link-op $r2 $n1 orient right-up $ns duplex-link-op $n2 $router orient right-up $ns duplex-link-op $r2 $n3 orient right-down $ns duplex-link-op $router $r2 orient right # queue limitations and nam trace info $ns queue-limit $router $r2 $L2qlim $ns simplex-link-op $router $r2 queuePos 0.4 Agent/TCP set nam_tracevar_ true set tcp [new $tcptype] $ns attach-agent $n0 $tcp if [info exists sinktype] { set sink [new $sinktype] } else { set sink [new Agent/TCPSink] } # just turn these on always, to mark cong action pkts $sink set ecn_ true $tcp set ecn_ true if [info exists ecn] { puts "using ECN in router" [[$ns link $router $r2] queue] set setbit_ true } if [info exists blimit] { puts "setting DRR limit to $blimit" [[$ns link $router $r2] queue] set blimit_ $blimit } $ns attach-agent $n1 $sink $ns connect $tcp $sink set ftp [new Application/FTP] $ftp attach-agent $tcp #$ns add-agent-trace $tcp tcp #$ns monitor-agent-trace $tcp #$tcp tracevar cwnd_ set udp [new Agent/UDP] $udp set fid_ 1 $ns attach-agent $n2 $udp set cbr [new Application/Traffic/CBR] $cbr set packetSize_ 1000 $cbr set interval_ 0.02 if [info exists cbrrate] { $cbr set interval_ $cbrrate } $cbr attach-agent $udp set na [new Agent/Null] $ns attach-agent $n3 $na $ns connect $udp $na $ns at 0.0 "$ns set-animation-rate 2ms" $ns at $ftpstart "$ftp start" $ns at $cbrstart "$cbr start" if [info exists endtime] { set ftime_ $endtime } $ns at 0.0 "$ns trace-annotate \"$ofile agent starting\"" $ns at $ftpstart "$ns trace-annotate \"FTP starts at $ftpstart\"" $ns at $cbrstart "$ns trace-annotate \"CBR starts at $cbrstart\"" $ns at [expr $ftime_ + .49] "$ns trace-annotate \"FTP stops\"" $ns at [expr $ftime_ + 0.5] "$ns detach-agent $n0 $tcp ; $ns detach-agent $n1 $sink" $ns at [expr $ftime_ + 0.55] "finish" source $ofile.de # end common code nam-1.15/iecdemos/tcp-newreno.tcl0000664000076400007660000000127306753647526015660 0ustar tomhnsnam# slow start mechanism with some features # such as labeling, annotation, nam-graph, and window size monitoring set ofile "tcp-newreno" set tcptype "Agent/TCP/Newreno" Agent/TCP set window_ 200 set L1rate "10Mb" set L1del "5ms" set L1type "DropTail" set L2rate "1.5Mb" set L2del "40ms" set L2type "DropTail" set L2qlim 10 set ftpstart 0.001 set cbrstart 0.002 source tcp-common.tcl $ns at 0.659632 "$ns trace-annotate \"0.659632 Fast RTX: cwnd:(30 -> 15), ssth: 15\"" $ns at 1.443387 "$ns trace-annotate \"1.443387 CA: cwnd:15.07\"" $ns at 1.618544 "$ns trace-annotate \"1.618544 Fast RTX: cwnd:(15.97 -> 7), ssth: 7\"" $ns at 1.841211 "$ns trace-annotate \"1.841211 CA: cwnd:7.14\"" $ns run nam-1.15/iecdemos/tcp-notunfair.tcl0000664000076400007660000000204006753647526016201 0ustar tomhnsnam# slow start mechanism with some features # such as labeling, annotation, nam-graph, and window size monitoring set ofile "tcp-sack-drr" set tcptype "Agent/TCP/Sack1" set sinktype "Agent/TCPSink/Sack1" Agent/TCP set window_ 200 set L1rate "10Mb" set L1del "5ms" set L1type "DropTail" set L2rate "1.5Mb" set L2del "40ms" set L2type "DRR" set L2qlim 5 set blimit [expr $L2qlim * [Agent/TCP set packetSize_]] set ftpstart 0.0001 set cbrstart 2.80 set cbrrate 0.0055 set endtime 5.0 source tcp-common.tcl $ns at 0.573653 "$ns trace-annotate \"0.573653 Fast RTX: cwnd:(21 -> 10), ssth: 10\"" $ns at 0.777408 "$ns trace-annotate \"0.777408 CA: cwnd:10.1\"" $ns at 3.013491 "$ns trace-annotate \"3.013491 Fast RTX: cwnd:(13.2 -> 6), ssth: 6\"" $ns at 3.247991 "$ns trace-annotate \"3.247991 CA: cwnd:6.17\"" $ns at 4.298713 "$ns trace-annotate \"4.298713 Fast RTX: cwnd:(13.8 -> 6), ssth: 6\"" $ns at 4.463991 "$ns trace-annotate \"4.463991 CA: cwnd:6.17\"" $ns at 5.488047 "$ns trace-annotate \"5.488047 Fast RTX: cwnd:(13.8 -> 6), ssth: 6\"" $ns run nam-1.15/iecdemos/tcp-reno-ecn.tcl0000664000076400007660000000175206753647526015713 0ustar tomhnsnam# slow start mechanism with some features # such as labeling, annotation, nam-graph, and window size monitoring set ofile "tcp-reno-ecn" set tcptype "Agent/TCP/Reno" Agent/TCP set window_ 200 # these are fairly harsh (unrecommended) RED # parameters, but illustrate the point quickly # for our contrived, underbuffered network Queue/RED set thresh_ 1 Queue/RED set maxthresh_ 4 Queue/RED set linterm_ 1 Queue/RED set q_weight_ 0.8 Queue/RED set wait_ false Queue/RED set mean_pktsize_ 1000 set L1rate "10Mb" set L1del "5ms" set L1type "DropTail" set L2rate "1.5Mb" set L2del "40ms" set L2type "RED" set L2qlim 10 set ecn true set ftpstart 0.001 set cbrstart 0.002 source tcp-common.tcl $ns at 0.455877 "$ns trace-annotate \"0.455877 Fast RTX: cwnd:(12 -> 6), ssth: 6\"" $ns at 0.659632 "$ns trace-annotate \"0.659632 CA: cwnd:6.17\"" $ns at 1.131632 "$ns trace-annotate \"1.131632 Fast RTX: cwnd:(10.13 -> 5), ssth: 5\"" $ns at 1.324720 "$ns trace-annotate \"1.324720 CA: cwnd:5.2\"" $ns run nam-1.15/iecdemos/tcp-reno.tcl0000664000076400007660000000141406753647527015144 0ustar tomhnsnam# slow start mechanism with some features # such as labeling, annotation, nam-graph, and window size monitoring set ofile "tcp-reno" set tcptype "Agent/TCP/Reno" Agent/TCP set window_ 200 set L1rate "10Mb" set L1del "5ms" set L1type "DropTail" set L2rate "1.5Mb" set L2del "40ms" set L2type "DropTail" set L2qlim 10 set ftpstart 0.001 set cbrstart 0.002 source tcp-common.tcl $ns at 0.659632 "$ns trace-annotate \"0.659632 Fast RTX: cwnd:(30 -> 15), ssth: 15\"" $ns at 0.787632 "$ns trace-annotate \"0.787632 CA: cwnd:15.07\"" $ns at 0.862843 "$ns trace-annotate \"0.862843 Fast RTX: cwnd:(15.07 -> 7), ssth: 7\"" $ns at 1.274544 "$ns trace-annotate \"1.274544 Slow-Start: cwnd:(7.14 -> 1), ssth: 3\"" $ns at 1.596176 "$ns trace-annotate \"1.596176 CA: cwnd:3.33\"" $ns run nam-1.15/iecdemos/tcp-sack.tcl0000664000076400007660000000110206753647527015114 0ustar tomhnsnam# slow start mechanism with some features # such as labeling, annotation, nam-graph, and window size monitoring set ofile "tcp-sack" set tcptype "Agent/TCP/Sack1" set sinktype "Agent/TCPSink/Sack1" Agent/TCP set window_ 200 set L1rate "10Mb" set L1del "5ms" set L1type "DropTail" set L2rate "1.5Mb" set L2del "40ms" set L2type "DropTail" set L2qlim 10 set ftpstart 0.001 set cbrstart 0.002 source tcp-common.tcl $ns at 0.659687 "$ns trace-annotate \"0.659687 Fast RTX: cwnd:(30 -> 15), ssth: 15\"" $ns at 0.964942 "$ns trace-annotate \"0.964942 CA: cwnd:15.07\"" $ns run nam-1.15/iecdemos/tcp-tahoe.tcl0000664000076400007660000000102706753647527015301 0ustar tomhnsnam# slow start mechanism with some features # such as labeling, annotation, nam-graph, and window size monitoring set ofile "tcp-tahoe" set tcptype "Agent/TCP" Agent/TCP set window_ 200 set L1rate "10Mb" set L1del "5ms" set L1type "DropTail" set L2rate "1.5Mb" set L2del "40ms" set L2type "DropTail" set L2qlim 10 set ftpstart 0.001 set cbrstart 0.002 source tcp-common.tcl $ns at 0.659632 "$ns trace-annotate \"0.659632 Slow-start: cwnd:(30 -> 1), ssth:15\"" $ns at 1.344965 "$ns trace-annotate \"1.344965 CA: cwnd: 15\"" $ns run nam-1.15/iecdemos/tcp-unfair.tcl0000664000076400007660000000233106753647530015456 0ustar tomhnsnam# slow start mechanism with some features # such as labeling, annotation, nam-graph, and window size monitoring set ofile "tcp-sack-unfair" set tcptype "Agent/TCP/Sack1" set sinktype "Agent/TCPSink/Sack1" Agent/TCP set window_ 200 set L1rate "10Mb" set L1del "5ms" set L1type "DropTail" set L2rate "1.5Mb" set L2del "40ms" set L2type "DropTail" set L2qlim 5 set ftpstart 0.0001 set cbrstart 2.80 set cbrrate 0.0055 set endtime 5.0 source tcp-common.tcl $ns at 0.589653 "$ns trace-annotate \"0.589653 Fast RTX: cwnd:(24 -> 12), ssth: 12\"" $ns at 1.024162 "$ns trace-annotate \"1.024162 Fast RTX: cwnd:(12 -> 6), ssth: 6\"" $ns at 1.158039 "$ns trace-annotate \"1.158039 CA: cwnd:6.17\"" $ns at 3.022799 "$ns trace-annotate \"3.022799 Fast RTX: cwnd:(21.9 -> 10), ssth: 10\"" $ns at 3.262799 "$ns trace-annotate \"3.262799 Fast RTX: cwnd:(10 -> 5), ssth: 5\"" $ns at 3.646743 "$ns trace-annotate \"3.646743 CA: cwnd:5.2\"" $ns at 3.774854 "$ns trace-annotate \"3.774854 Fast RTX: cwnd:(5.2 -> 2), ssth: 2\"" $ns at 4.030743 "$ns trace-annotate \"4.030743 CA: cwnd:2.5\"" $ns at 4.676077 "$ns trace-annotate \"4.676077 Slow-start/FRTX: cwnd:(3.5 -> 1), ssth: 2\"" $ns at 4.910743 "$ns trace-annotate \"4.910743 CA: cwnd:2.5\"" $ns run nam-1.15/install-sh0000775000076400007660000001124406351340334013103 0ustar tomhnsnam#! /bin/sh # # install - install a program, script, or datafile # This comes from X11R5. # # Calling this script install-sh is preferred over install.sh, to prevent # `make' implicit rules from creating a file called install from it # when there is no Makefile. # # This script is compatible with the BSD install script, but was written # from scratch. # # set DOITPROG to echo to test this script # Don't use :- since 4.3BSD and earlier shells don't like it. doit="${DOITPROG-}" # put in absolute paths if you don't have them in your path; or use env. vars. mvprog="${MVPROG-mv}" cpprog="${CPPROG-cp}" chmodprog="${CHMODPROG-chmod}" chownprog="${CHOWNPROG-chown}" chgrpprog="${CHGRPPROG-chgrp}" stripprog="${STRIPPROG-strip}" rmprog="${RMPROG-rm}" mkdirprog="${MKDIRPROG-mkdir}" tranformbasename="" transform_arg="" instcmd="$mvprog" chmodcmd="$chmodprog 0755" chowncmd="" chgrpcmd="" stripcmd="" rmcmd="$rmprog -f" mvcmd="$mvprog" src="" dst="" dir_arg="" while [ x"$1" != x ]; do case $1 in -c) instcmd="$cpprog" shift continue;; -d) dir_arg=true shift continue;; -m) chmodcmd="$chmodprog $2" shift shift continue;; -o) chowncmd="$chownprog $2" shift shift continue;; -g) chgrpcmd="$chgrpprog $2" shift shift continue;; -s) stripcmd="$stripprog" shift continue;; -t=*) transformarg=`echo $1 | sed 's/-t=//'` shift continue;; -b=*) transformbasename=`echo $1 | sed 's/-b=//'` shift continue;; *) if [ x"$src" = x ] then src=$1 else # this colon is to work around a 386BSD /bin/sh bug : dst=$1 fi shift continue;; esac done if [ x"$src" = x ] then echo "install: no input file specified" exit 1 else true fi if [ x"$dir_arg" != x ]; then dst=$src src="" if [ -d $dst ]; then instcmd=: else instcmd=mkdir fi else # Waiting for this to be detected by the "$instcmd $src $dsttmp" command # might cause directories to be created, which would be especially bad # if $src (and thus $dsttmp) contains '*'. if [ -f $src -o -d $src ] then true else echo "install: $src does not exist" exit 1 fi if [ x"$dst" = x ] then echo "install: no destination specified" exit 1 else true fi # If destination is a directory, append the input filename; if your system # does not like double slashes in filenames, you may need to add some logic if [ -d $dst ] then dst="$dst"/`basename $src` else true fi fi ## this sed command emulates the dirname command dstdir=`echo $dst | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'` # Make sure that the destination directory exists. # this part is taken from Noah Friedman's mkinstalldirs script # Skip lots of stat calls in the usual case. if [ ! -d "$dstdir" ]; then defaultIFS=' ' IFS="${IFS-${defaultIFS}}" oIFS="${IFS}" # Some sh's can't handle IFS=/ for some reason. IFS='%' set - `echo ${dstdir} | sed -e 's@/@%@g' -e 's@^%@/@'` IFS="${oIFS}" pathcomp='' while [ $# -ne 0 ] ; do pathcomp="${pathcomp}${1}" shift if [ ! -d "${pathcomp}" ] ; then $mkdirprog "${pathcomp}" else true fi pathcomp="${pathcomp}/" done fi if [ x"$dir_arg" != x ] then $doit $instcmd $dst && if [ x"$chowncmd" != x ]; then $doit $chowncmd $dst; else true ; fi && if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dst; else true ; fi && if [ x"$stripcmd" != x ]; then $doit $stripcmd $dst; else true ; fi && if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dst; else true ; fi else # If we're going to rename the final executable, determine the name now. if [ x"$transformarg" = x ] then dstfile=`basename $dst` else dstfile=`basename $dst $transformbasename | sed $transformarg`$transformbasename fi # don't allow the sed command to completely eliminate the filename if [ x"$dstfile" = x ] then dstfile=`basename $dst` else true fi # Make a temp file name in the proper directory. dsttmp=$dstdir/#inst.$$# # Move or copy the file name to the temp name $doit $instcmd $src $dsttmp && trap "rm -f ${dsttmp}" 0 && # and set any options; do chmod last to preserve setuid bits # If any of these fail, we abort the whole thing. If we want to # ignore errors from any of these, just make sure not to ignore # errors from the above "$doit $instcmd $src $dsttmp" command. if [ x"$chowncmd" != x ]; then $doit $chowncmd $dsttmp; else true;fi && if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dsttmp; else true;fi && if [ x"$stripcmd" != x ]; then $doit $stripcmd $dsttmp; else true;fi && if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dsttmp; else true;fi && # Now rename the file to the real destination. $doit $rmcmd -f $dstdir/$dstfile && $doit $mvcmd $dsttmp $dstdir/$dstfile fi && exit 0 nam-1.15/INSTALL.WIN320000664000076400007660000000651307173401745012743 0ustar tomhnsnamNeither ns-2 nor nam-1 is developed on (nor for) the win32 platform. We can only guarantee that they compile on windows, but not their correct functioning. If you have anything to contribute in this respect, we would like to hear from you. Before you build, notice that you can get nam and ns binaries for windows at http://www.isi.edu/nsnam/dist/binary/. If you only want to do tcl scripting in ns, they were probably what you want. Procedures to compile on windows. For more information, whose details about ns might be obsolete but others apply, see http://www.isi.edu/nsnam/ns/ns-win32-build.html - Make sure your msvc works (and your environment variables are setup correctly) - Get Cygwin and perl - IMPORTANT: otcl/tclcl/ns can be built and work with supplied tcl/tk 8.3.2, but nam will not (it builds, but does not run). To solve this problem one has to use a hacked tcl/tk 8.0p2 that supports static lib instead of DLLs. See the following discussion in nam for detail. For this reason, there is a switch in otcl/makefile.vc and conf/makefile.win in tclcl/ns/nam that controls using static build or DLLs. It is a macro STATIC_LIB, which is turned on by default. You must download the hacked tcl/tk 8.0p2 to compile the default ns-allinone on windows. Alternatively, if you do not use nam at all, comment that macro and you'll be able to compile with tcl/tk 8.3.2 - After compilation, you should do (1) copy the DLLs (if you are using tcl/tk 8.3.2) to one of yours paths (you can see it in the system applet from your control panel, or autoexec.bat if you are using win98/95, or you can open a tcsh (dos prompt) and do echo $PATH (%PATH%)); (2) copy the tcl library files (~tcl/library) to one of the default paths (somehow setenv TCL_LIBRARY did not work for me on windows, but you can certainly try). If you don't know the default paths, run ns and you'll see it in its complaints. IMPORTANT: you should avoid both these two steps if you are using the hacked tcl/tk 8.0p2. - Tcl8.3.2 - go into win, do nmake -f makefile.vc - result binaries/libraries should be in win/Release - you can also import makefile.vc into you ide and go from there - Tk8.3.2 - pretty much the same as tcl8.3.2 - otcl - correct the paths to your vc, tcl, and tk in makefile.vc, then do nmake -f makefile.vc - tclcl - correct the paths to your vc, tcl, tk, and otcl in conf/makefile.win (do NOT touch makefile.vc), then do nmake -f makefile.vc - ns-2 - same as tclcl, except you need to correct paths to tclcl and tclsh as well. - about validate, see http://www.isi.edu/nsnam/ns/ns-win32-build.html for detail. Notice that many test suites will fail on windows platform, and you are on your own to make sure the simulator works for your purpose. - nam-1 - IMPORTANT: nam-1 will NOT work when compiled with tcl8.3.2 and tk8.3.2. It requires that a STATIC build of tcl/tk, which the current release does not support. To solve the problem, you can download a patched tcl/tk 8.0.2 that can be compiled into static libraries (i.e., not DLLs) from this pointer: http://www.isi.edu/nsnam/dist/tcltk/tcl80p2-win32-static.zip and http://www.isi.edu/nsnam/dist/tcltk/tk80p2-win32-static.zip Then you should uncomment the STATIC_LIB macro in ~nam/conf/makefile.win, and correct other paths to your vc, otcl, tclcl, tclsh, then compile. nam-1.15/lan.cc0000664000076400007660000002414507312536006012165 0ustar tomhnsnam/* * Copyright (c) 1997 University of Southern California. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the Information Sciences * Institute of the University of Southern California. * 4. Neither the name of the University nor of the Institute may be used * to endorse or promote products derived from this software without * specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * */ #include "sincos.h" #include "config.h" #include "lan.h" #include "edge.h" #include "packet.h" #include "node.h" #include "view.h" #include "psview.h" #include "paint.h" #include "netmodel.h" #include "trace.h" LanLink::LanLink(Edge *e): edge_(e) { /*need to search through the destination node's links to find the link that's the twin of this one (i.e, same nodes, other direction) */ int lan=e->src(); Node *n=e->neighbor(); Edge *te=n->links(); while (te!=NULL) { if (te->dst()==lan) { pair_=te; break; } te=te->next_; } } int LanLink::placed() { return edge_->neighbor()->marked(); } //---------------------------------------------------------------------- // Lan::Lan(const char *name, NetModel *nm, double ps, double bw, // double delay, double angle) //---------------------------------------------------------------------- Lan::Lan(const char *name, NetModel *nm, double ps, double bw, double delay, double angle) : Animation(0,0), nm_(nm), links_(NULL), ps_(ps), bw_(bw), delay_(delay), angle_(angle), marked_(0), max_(0) { virtual_node_ = new VirtualNode(name, this); name_ = new char[strlen(name) + 1]; strcpy(name_, name); ln_ = atoi(name); /*XXX*/ paint_ = Paint::instance()->thick(); dropHash_ = new Tcl_HashTable; // XXX: unique packet id == (src, dst, id). Its size may be changed later. Tcl_InitHashTable(dropHash_, 3); } //---------------------------------------------------------------------- //---------------------------------------------------------------------- Lan::~Lan() { if (dropHash_ != NULL) { Tcl_DeleteHashTable(dropHash_); delete dropHash_; } delete virtual_node_; } float Lan::distance(float /*x*/, float /*y*/) const { // TODO: to be added return HUGE_VAL; } //---------------------------------------------------------------------- //---------------------------------------------------------------------- static int to_the_left(Edge *e, double angle, int incoming) { double edge_angle = e->angle(); if (incoming) edge_angle = 1.0 + edge_angle; if (edge_angle > 2.0) edge_angle -= 2.0; double a = angle - edge_angle; if (a < 0) { a += 2.0; } if (a > 1.0) { return 1; } else { return 0; } } //---------------------------------------------------------------------- // void Lan::add_link(Edge *e) // - add a link to the shared bus line //---------------------------------------------------------------------- void Lan::add_link(Edge *e) { int left = 0; int right = 0; double sine, cosine, left_length, right_length; Node * source, * destination; LanLink * ll; ll = new LanLink(e); source = e->getSourceNode(); destination = e->getDestinationNode(); SINCOSPI(angle_, &sine, &cosine); ll->next(links_); links_ = ll; virtual_node_->add_link(e); // Keep track of how long the "bus" is ll = links_; while (ll != NULL) { if (to_the_left(ll->edge(), angle_, 0)) { left++; } else { right++; } ll = ll->next(); } left_length = left * (destination->size() + source->size() + size_); right_length = right * (destination->size() + source->size() + size_); if (max_ < left_length) { max_ = (int) ceil(left_length); } if (max_ < right_length) { max_ = (int) ceil(right_length); } } //---------------------------------------------------------------------- //---------------------------------------------------------------------- void Lan::update_bb() { double s,c; SINCOSPI(angle_,&s,&c); bb_.xmin = x_ - size_*c; bb_.xmax = x_+size_*c*(2*max_+1); bb_.ymin = y_ - size_*s; bb_.ymax = y_+size_*s*(2*max_+1); } //---------------------------------------------------------------------- //---------------------------------------------------------------------- void Lan::size(double size) { size_ = size; update_bb(); } //---------------------------------------------------------------------- //---------------------------------------------------------------------- void Lan::place(double x, double y) { x_ = x; y_ = y; update_bb(); } //---------------------------------------------------------------------- //---------------------------------------------------------------------- void Lan::draw(class View* nv, double time) { double s, c; SINCOSPI(angle_, &s, &c); //nv->line(x_ - size_ * c, y_ - size_ * s, // x_ + size_ * c * (2 * max_ + 1), y_ + size_ * s * (2 * max_ + 1), // paint_); nv->line(x_ - size_ * c, y_ - size_ * s, x_ + size_ * c + c * max_, y_ + size_ * s + s * max_, paint_); } //void Lan::draw(class PSView* nv, double /*time*/) const { /* double s,c; SINCOSPI(angle_,&s,&c); nv->line(x_-size_*c, y_-size_*s, x_+size_*c*(2*max_+1), y_+size_*s*(2*max_+1), paint_); } */ void Lan::remove_drop(const TraceEvent &e) { int id[3]; id[0] = e.pe.src; id[1] = e.pe.dst; id[2] = e.pe.pkt.id; Tcl_HashEntry *he = Tcl_FindHashEntry(dropHash_, (const char *)id); if (he != NULL) { TraceEvent *pe = (TraceEvent *)Tcl_GetHashValue(he); delete pe; Tcl_DeleteHashEntry(he); } } void Lan::register_drop(const TraceEvent &e) { int newEntry = 1; int id[3]; id[0] = e.pe.src; id[1] = e.pe.dst; id[2] = e.pe.pkt.id; Tcl_HashEntry *he = Tcl_CreateHashEntry(dropHash_, (const char *)id, &newEntry); if (he == NULL) return; if (newEntry) { TraceEvent *pe = new TraceEvent; *pe = e; Tcl_SetHashValue(he, (ClientData)pe); } } void Lan::arrive_packet(Packet *p, Edge *e, double atime) { /*need to duplicate the packet on all other links except the arrival link*/ LanLink *l=links_; PacketAttr pkt; int id[3]; pkt.size=p->size(); pkt.id=p->id(); pkt.attr=p->attr(); strcpy(pkt.type,p->type()); strcpy(pkt.convid,p->convid()); while (l!=NULL) { Edge *ne=l->edge(); if (l->pair()!=e) { // Packet *np = nm_->newPacket(pkt, ne, atime); nm_->newPacket(pkt, ne, atime); id[0] = ne->src(); id[1] = ne->dst(); id[2] = p->id(); Tcl_HashEntry *he = Tcl_FindHashEntry(dropHash_, (const char *)id); if (he != NULL) { // This is a drop packet, fake a trace event and add a drop TraceEvent *pe = (TraceEvent *)Tcl_GetHashValue(he); pe->time = atime; // The fact that this trace event is still there implies that // we are going forwards. nm_->add_drop(*pe, atime, FORWARDS); delete pe; Tcl_DeleteHashEntry(he); } } l=l->next(); } rgb *color = Paint::instance()->paint_to_rgb(p->paint()); paint_ = Paint::instance()->lookup(color->colorname, 5); } void Lan::delete_packet(Packet *) { paint_ = Paint::instance()->thick(); } //---------------------------------------------------------------------- //---------------------------------------------------------------------- double Lan::x(Edge *e) const { double sine, cosine; SINCOSPI(angle_, &sine, &cosine); LanLink * l = links_; int incoming =- 1; int left = -1; int right = -1; Node * source, * destination; source = e->getSourceNode(); destination = e->getDestinationNode(); while (l != NULL) { if (to_the_left(l->edge(), angle_, 0)) { left++; } else { right++; } if (l->pair() == e) { incoming = 1; break; } else if (l->edge()==e) { incoming = 0; break; } l = l->next(); } if (to_the_left(e, angle_, incoming)) { return x_ + cosine * left * (destination->size() + source->size() + size_); //return x_ + cosine * left * 2 * size_; } else { return x_ + cosine * right * (destination->size() + source->size() + size_); //return x_ + cosine * right * 2 * size_; } } double Lan::y(Edge *e) const { double s,c; SINCOSPI(angle_,&s,&c); LanLink *l=links_; int incoming=-1; int left=-1; int right=-1; while (l!=NULL) { if (to_the_left(l->edge(), angle_,0)) { left++; } else { right++; } if (l->pair()==e) { incoming=1; break; } else if (l->edge()==e) { incoming=0; break; } l=l->next(); } Node * destination = e->getDestinationNode(); if (to_the_left(e, angle_, incoming)) { return y_ + s * left * destination->size(); } else { return y_ + s * right * destination->size(); } } #ifdef NOTDEF Edge *Lan::lookupEdge(Node *n) { LanNode *ln=nodes_; while(ln!=NULL) { if (ln->node()==n) { return ln->e1_; } } return NULL; } #endif nam-1.15/lan.h0000664000076400007660000000725307274107770012041 0ustar tomhnsnam/* * Copyright (c) 1997 University of Southern California. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the Information Sciences * Institute of the University of Southern California. * 4. Neither the name of the University nor of the Institute may be used * to endorse or promote products derived from this software without * specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * @(#) $Header: /usr/src/mash/repository/vint/nam-1/edge.h,v 1.5 1997/10/04 19 :54:47 mjh Exp $ (LBL) */ #ifndef nam_lan_h #define nam_lan_h #include #include "animation.h" #include "transform.h" #include "edge.h" #include "node.h" #include "netmodel.h" class View; class Transform; class Packet; class Monitor; class NetModel; class LanLink { public: LanLink(Edge *e); LanLink *next() const {return next_;} Edge *edge() const {return edge_;} Edge *pair() const {return pair_;} void next(LanLink *link) {next_=link;} int placed(); private: LanLink *next_; Edge *edge_, *pair_; }; class Lan : public Animation{ public: Lan(const char *name, NetModel *nm, double ps, double bw, double delay, double angle); ~Lan(); virtual float distance(float x, float y) const; void add_link(Edge *e); int no_of_nodes() const { return (no_of_nodes_); } int num() const { return ln_; } void draw(class View *nv, double time); // void draw(class PSView *nv, double time) const; void update_bb(); void size(double size); virtual void place(double x, double y); Lan *next_; Node *virtual_node() {return virtual_node_;} inline int marked() const { return (marked_); } inline void mark() { marked_ = 1; } inline void unmark() { marked_ = 0; } double bw() const {return bw_;} double delay() const {return delay_;} void arrive_packet(Packet *p, Edge *e, double atime); void delete_packet(Packet *p); double x(Edge *e) const; double y(Edge *e) const; virtual int classid() const { return ClassLanID; } Tcl_HashTable *dropHash_; void register_drop(const TraceEvent &); void remove_drop(const TraceEvent &); private: NetModel *nm_; VirtualNode *virtual_node_; LanLink *links_; int no_of_nodes_; double x_, y_, size_; double ps_, bw_, delay_, angle_; // packet size, bandwidth, delay, angle char *name_; int ln_; int marked_; int max_; }; #endif nam-1.15/lossmodel.cc0000644000076400007660000003111111655017162013403 0ustar tomhnsnam/* * Copyright (c) 2001 University of Southern California. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the Information Sciences * Institute of the University of Southern California. * 4. Neither the name of the University nor of the Institute may be used * to endorse or promote products derived from this software without * specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * */ #include #include #ifdef WIN32 #include #endif #include "netview.h" #include "edge.h" #include "paint.h" #include "sincos.h" #include "lossmodel.h" #include "queuehandle.h" #define PROPERTY_STRING_LENGTH 256 static int g_lossmodel_number = 1; //---------------------------------------------------------------------- // Wrapper for creating LossModels in OTcl //---------------------------------------------------------------------- static class LossModelClass : public TclClass { public: LossModelClass() : TclClass("LossModel") {} TclObject* create(int argc, const char * const * argv) { const char * type; int id; double size; type = argv[4]; id = strtol(argv[5], NULL, 10); size = strtod(argv[6], NULL); return (new LossModel(type, id, size)); } } class_lossmodel; //---------------------------------------------------------------------- //---------------------------------------------------------------------- LossModel::LossModel(const char* type, int id, double _size) : Animation(0, 0) { setDefaults(); number_ = id; if (g_lossmodel_number++ <= id) { g_lossmodel_number = id + 1; } label_ = new char[strlen(type) + 1]; strcpy(label_, type); width_ = 50.0 * strlen(type); height_ = size_/2.0; size_ = _size; size(_size); } //---------------------------------------------------------------------- //---------------------------------------------------------------------- LossModel::LossModel(const char* name, double _size) : Animation(0, 0) { setDefaults(); number_ = g_lossmodel_number; g_lossmodel_number++; width_ = 50.0 * strlen(name); height_ = size_/2.0; size_ = _size; label_ = new char[strlen(name) + 1]; strcpy(label_, name); size(_size); } //---------------------------------------------------------------------- //---------------------------------------------------------------------- void LossModel::setDefaults() { next_lossmodel_ = NULL; edge_ = NULL; x_ = 0.0; y_ = 0.0; angle_ = NO_ANGLE; color_ = "black"; paint_ = Paint::instance()->thin(); loss_unit_ = NULL; setLossUnit("pkt"); // Periodic Parameters period_ = 1.0; offset_ = 0.0; burstlen_ = 0.0; // Uniform Parameters rate_ = 0.1; } //---------------------------------------------------------------------- // double // LossModel::distance(double x, double y) const { //---------------------------------------------------------------------- double LossModel::distance(double x, double y) const { return sqrt((x_-x)*(x_-x) + (y_-y)*(y_-y)); } //---------------------------------------------------------------------- //---------------------------------------------------------------------- void LossModel::color(const char * name) { if (color_) { delete []color_; } color_ = new char[strlen(name) + 1]; strcpy(color_, name); } //---------------------------------------------------------------------- //---------------------------------------------------------------------- void LossModel::size(double s) { size_ = s; width_ = 10.0 + 25.0*strlen(label_); height_ = s/2.0; update_bb(); } //---------------------------------------------------------------------- //---------------------------------------------------------------------- void LossModel::update_bb() { bb_.xmin = x_; bb_.ymin = y_; bb_.xmax = x_ + width_; bb_.ymax = y_ + height_; } //---------------------------------------------------------------------- //---------------------------------------------------------------------- void LossModel::label(const char* name) { if (label_) { delete label_; } label_ = new char[strlen(name) + 1]; strcpy(label_, name); } //---------------------------------------------------------------------- //---------------------------------------------------------------------- void LossModel::reset(double) { paint_ = Paint::instance()->thick(); } //---------------------------------------------------------------------- // void // LossModel::attach(Agent * agent) // - Attach this loss model to an edge //---------------------------------------------------------------------- void LossModel::attachTo(Edge * edge) { edge_ = edge; place(); } //---------------------------------------------------------------------- //---------------------------------------------------------------------- void LossModel::clearEdge() { edge_->clearLossModel(); edge_ = NULL; } //---------------------------------------------------------------------- // void // LossModel::place() // - place the loss model on the edge to which it is attached. //---------------------------------------------------------------------- void LossModel::place() { QueueHandle * queue_handle; if (edge_) { // Place loss model on top of the queue handle queue_handle = edge_->getQueueHandle(); // Place loss model on top of queue handle x_ = queue_handle->x(); y_ = queue_handle->y() + queue_handle->height(); // Place loss model to the right of queue handle //x_ = queue_handle->x() + queue_handle->width(); //y_ = queue_handle->y(); } } //---------------------------------------------------------------------- //---------------------------------------------------------------------- const char* LossModel::info() const { static char text[128]; sprintf(text, "Loss Model: %s %d->%d", label_, edge_->src(), edge_->dst()); return (text); } //---------------------------------------------------------------------- //---------------------------------------------------------------------- const char* LossModel::getname() const { static char text[128]; sprintf(text, "a %s", label_); return (text); } //---------------------------------------------------------------------- // int // LossModel::inside(double, float px, float py) const // - Check to see if point (px, py) is within the Loss Model box //---------------------------------------------------------------------- int LossModel::inside(double, float px, float py) const { return (px >= x_ && px <= (x_ + width_) && py >= y_ && py <= (y_ + height_)); } //---------------------------------------------------------------------- // void // LossModel::draw(View * view, double ) const // - Draw the Loss Model on its edge //---------------------------------------------------------------------- void LossModel::draw(View * view, double time) { double label_width, label_height, label_x, label_y; static char full_label[128]; // Draw label centered inside of border if (label_) { //sprintf(full_label, "%s: %d->%d", label_, edge_->src(), edge_->dst()); sprintf(full_label, "%s", label_); // We have to keep calculting the label width and height because // we have no way of knowing if the user has zoomed in or out // on the current network view. label_height = 0.9 * height_; label_width = view->getStringWidth(full_label, label_height); // Add 10% of padding to width for the box setWidth(1.1 * label_width); // Center label in box label_x = x_ + (width_ - label_width); label_y = y_ + (height_ - label_height); view->string(full_label, label_x , label_y, label_height, NULL); update_bb(); } // Draw Rectangle Border view->rect(x_, y_, x_ + width_, y_ + height_ , paint_); } //---------------------------------------------------------------------- // int // LossModel::writeNsDefinitionScript(FILE * file) // - outputs ns script format for creating loss models //---------------------------------------------------------------------- int LossModel::writeNsDefinitionScript(FILE * file) { if (!strcmp(name(), "Periodic")) { fprintf(file, "set loss_model(%d) [new ErrorModel/%s]\n", number_, label_); // Connect loss model to edge fprintf(file, "$ns lossmodel $loss_model(%d) $node(%d) $node(%d)\n", number_, edge_->src(), edge_->dst()); // Set Properties fprintf(file, "$loss_model(%d) unit %s\n", number_, loss_unit_); fprintf(file, "$loss_model(%d) set period_ %f\n", number_, period_); fprintf(file, "$loss_model(%d) set offset_ %f\n", number_, offset_); fprintf(file, "$loss_model(%d) set burstlen_ %f\n", number_, burstlen_); // Set Drop Target fprintf(file, "$loss_model(%d) drop-target [new Agent/Null]\n", number_); } else if (!strcmp(name(), "Expo")) { } else if (!strcmp(name(), "Uniform")) { fprintf(file, "set loss_model(%d) [new ErrorModel/%s %f %s]\n", number_, label_, rate_, loss_unit_); // Connect loss model to edge fprintf(file, "$ns lossmodel $loss_model(%d) $node(%d) $node(%d)\n", number_, edge_->src(), edge_->dst()); // Set Drop Target fprintf(file, "$loss_model(%d) drop-target [new Agent/Null]\n", number_); } else { fprintf(stderr, "Unknown loss model %s needs to be implemented.\n", label_); } return 0; } //---------------------------------------------------------------------- // LossModel::property() // - return the list of loss model configuration parameters // (properties) to be shown in the property edit window //---------------------------------------------------------------------- const char* LossModel::property() { static char text[PROPERTY_STRING_LENGTH]; char * property_list; property_list = text; sprintf(text, "{\"Loss Model: %s %d->%d\" title title \"LossModel %d\"} ", name(), edge_->src(), edge_->dst(), number_); if (strcmp(name(), "Periodic") == 0) { property_list = &text[strlen(text)]; sprintf(property_list, "{\"Period\" period_ text %f} ", period_); property_list = &text[strlen(text)]; sprintf(property_list, "{\"Offset\" offset_ text %f} ", offset_); property_list = &text[strlen(text)]; sprintf(property_list, "{\"Burst Length\" burstlen_ text %f} ", burstlen_); } else if (strcmp(name(), "Expo") == 0) { } else if (strcmp(name(), "Uniform") == 0) { property_list = &text[strlen(text)]; sprintf(property_list, "{\"Loss Rate\" rate_ text %f} ", rate_); } return(text); } //---------------------------------------------------------------------- //---------------------------------------------------------------------- int LossModel::command(int argc, const char * const * argv) { int length = strlen(argv[1]); if (strncmp(argv[1], "setRate", length) == 0) { setRate(strtod(argv[2],NULL)); } else if (strncmp(argv[1], "setLossUnit", length) == 0) { setLossUnit(argv[2]); } return TCL_OK; } //---------------------------------------------------------------------- // void // LossModel::setLossUnit(const char * unit) // - sets the loss model's loss unit type (byte, pkt, etc...) //---------------------------------------------------------------------- void LossModel::setLossUnit(const char * unit) { if (loss_unit_) { delete []loss_unit_; } loss_unit_ = new char[strlen(unit) + 1]; strcpy(loss_unit_, unit); } nam-1.15/lossmodel.h0000664000076400007660000000746707312536006013266 0ustar tomhnsnam/* * Copyright (c) 2001 University of Southern California. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the Information Sciences * Institute of the University of Southern California. * 4. Neither the name of the University nor of the Institute may be used * to endorse or promote products derived from this software without * specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * */ #ifndef nam_lossmodel_h #define nam_lossmodel_h #include #include "animation.h" class LossModel : public Animation, public TclObject { public: LossModel(const char * type, int id, double _size); LossModel(const char * name, double _size); inline int number() {return number_;} virtual int classid() const { return ClassLossModelID; } inline const char * name() const {return (label_);} virtual void reset(double); void attachTo(Edge * edge); void clearEdge(); inline double x() const {return x_;} inline double y() const {return y_;} inline double width() const {return width_;} inline double height() const {return height_;} void setWidth(double w) {width_ = w;} void setHeight(double h) {height_ = h;} void place(); const char* info() const; void label(const char* name); virtual double distance(double x, double y) const; void color(const char* name); virtual void size(double s); inline double size() const {return (size_);} const char* getname() const; int inside(double, float, float) const; virtual void update_bb(); virtual void draw(View * view, double now); int writeNsDefinitionScript(FILE *file); const char * property(); int command(int argc, const char * const * argv); void setPeriod(double period) {period_ = period;} void setOffset(double offset) {offset_ = offset;} void setBurstLength(double burst_length) {burstlen_ = burst_length;} void setRate(double rate) {rate_ = rate;} void setLossUnit(const char * unit); private: void setDefaults(); public: LossModel * next_lossmodel_; // Used by editornetmodel to track // all traffic sources for property // editing purposes Edge * edge_; protected: int number_; double width_; double height_; double x_, y_; double angle_; double size_; char * label_; char * color_; char * loss_unit_; // Periodic Properties double period_, offset_, burstlen_; // Uniform Properties double rate_; }; #endif nam-1.15/main.cc0000644000076400007660000004003111655017162012327 0ustar tomhnsnam/* * Copyright (c) 1991,1993 Regents of the University of California. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the Computer Systems * Engineering Group at Lawrence Berkeley Laboratory. * 4. Neither the name of the University nor of the Laboratory may be used * to endorse or promote products derived from this software without * specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * @(#) $Header: /cvsroot/nsnam/nam-1/main.cc,v 1.59 2011/11/02 16:08:03 tom_henderson Exp $ (LBL) */ #include #ifndef WIN32 #include #else #include #endif #include "netview.h" #include "tclcl.h" #include "trace.h" #include "paint.h" #include "state.h" #include "parser.h" //#include "../tcl-debug-2.0/tcldbg.h" extern "C" { #include } static void usage() { fprintf(stderr, "\ Usage: nam [-a -S -s -f init_script -d display -j jump -r rate -k initPort] \ tracefiles\n\ \n\ -a: create a new nam instance\n\ -S: synchronize X\n\ -s: synchronize multiple traces\n\ -j: startup time\n\ -r: initial animation rate\n\ -f: initialization OTcl script\n\ -k: initial socket port number\n"); exit(1); } #ifdef WIN32 extern "C" int getopt(int, char**, char*); #endif extern "C" char *optarg; extern "C" int optind; const char* disparg(int argc, const char*const* argv, const char* optstr) { const char* display = 0; int op; while ((op = getopt(argc, (char**)argv, (char*)optstr)) != -1) { if (op == 'd') { display = optarg; break; } } optind = 1; return (display); } const char* namearg(int argc, const char*const* argv, const char* optstr) { const char* appname = 0; int op; while ((op = getopt(argc, (char**)argv, (char*)optstr)) != -1) { if (op == 'N') { appname = optarg; break; } } optind = 1; return (appname); } #include "bitmap/play.xbm" #include "bitmap/back.xbm" #include "bitmap/stop.xbm" #include "bitmap/eject.xbm" #include "bitmap/rew.xbm" #include "bitmap/ff.xbm" #include "bitmap/monitors.xbm" #include "bitmap/time.xbm" #include "bitmap/zoomin.xbm" #include "bitmap/zoomout.xbm" #include "bitmap/pullright.xbm" #include "bitmap/mark1.xbm" #include "bitmap/mark2.xbm" #include "bitmap/mark3.xbm" #include "bitmap/mark4.xbm" #include "bitmap/mark5.xbm" #include "bitmap/mark6.xbm" #include "bitmap/mark7.xbm" #include "bitmap/mark8.xbm" #include "bitmap/updir.xbm" //#include "bitmap/edit.xbm" #include "bitmap/nodeup.xbm" #include "bitmap/nodedown.xbm" #include "bitmap/select.xbm" #include "bitmap/addnode.xbm" #include "bitmap/addlink.xbm" #include "bitmap/cut.xbm" #include "bitmap/delete.xbm" #include "bitmap/netedit.xbm" #include "bitmap/netview.xbm" void loadbitmaps(Tcl_Interp* tcl) { // Tk_DefineBitmap(tcl, Tk_GetUid("edit"), // edit_bits, edit_width, edit_height); Tk_DefineBitmap(tcl, Tk_GetUid("netedit"), netedit_bits, netedit_width, netedit_height); Tk_DefineBitmap(tcl, Tk_GetUid("netview"), netview_bits, netview_width, netview_height); Tk_DefineBitmap(tcl, Tk_GetUid("nodeup"), nodeup_bits, nodeup_width, nodeup_height); Tk_DefineBitmap(tcl, Tk_GetUid("nodedown"), nodedown_bits, nodedown_width, nodedown_height); Tk_DefineBitmap(tcl, Tk_GetUid("play"), play_bits, play_width, play_height); Tk_DefineBitmap(tcl, Tk_GetUid("back"), back_bits, back_width, back_height); Tk_DefineBitmap(tcl, Tk_GetUid("stop"), stop_bits, stop_width, stop_height); Tk_DefineBitmap(tcl, Tk_GetUid("eject"), eject_bits, eject_width, eject_height); Tk_DefineBitmap(tcl, Tk_GetUid("rew"), rew_bits, rew_width, rew_height); Tk_DefineBitmap(tcl, Tk_GetUid("ff"), ff_bits, ff_width, ff_height); Tk_DefineBitmap(tcl, Tk_GetUid("monitors"), monitors_bits, monitors_width, monitors_height); Tk_DefineBitmap(tcl, Tk_GetUid("time"), time_bits, time_width, time_height); Tk_DefineBitmap(tcl, Tk_GetUid("zoomin"), zoomin_bits, zoomin_width, zoomin_height); Tk_DefineBitmap(tcl, Tk_GetUid("zoomout"), zoomout_bits, zoomout_width, zoomout_height); Tk_DefineBitmap(tcl, Tk_GetUid("pullright"), pullright_bits, pullright_width, pullright_height); // Used in nam editor toolbar Tk_DefineBitmap(tcl, Tk_GetUid("select"), select_bits, select_width, select_height); Tk_DefineBitmap(tcl, Tk_GetUid("addnode"), addnode_bits, addnode_width, addnode_height); Tk_DefineBitmap(tcl, Tk_GetUid("addlink"), addlink_bits, addlink_width, addlink_height); Tk_DefineBitmap(tcl, Tk_GetUid("cut"), cut_bits, cut_width, cut_height); Tk_DefineBitmap(tcl, Tk_GetUid("delete"), delete_bits, delete_width, delete_height); Tk_DefineBitmap(tcl, Tk_GetUid("mark1"), mark1_bits, mark1_width, mark1_height); Tk_DefineBitmap(tcl, Tk_GetUid("mark2"), mark2_bits, mark2_width, mark2_height); Tk_DefineBitmap(tcl, Tk_GetUid("mark3"), mark3_bits, mark3_width, mark3_height); Tk_DefineBitmap(tcl, Tk_GetUid("mark4"), mark4_bits, mark4_width, mark4_height); Tk_DefineBitmap(tcl, Tk_GetUid("mark5"), mark5_bits, mark5_width, mark5_height); Tk_DefineBitmap(tcl, Tk_GetUid("mark6"), mark6_bits, mark6_width, mark6_height); Tk_DefineBitmap(tcl, Tk_GetUid("mark7"), mark7_bits, mark7_width, mark7_height); Tk_DefineBitmap(tcl, Tk_GetUid("mark8"), mark8_bits, mark8_width, mark8_height); Tk_DefineBitmap(tcl, Tk_GetUid("updir"), updir_bits, updir_width, updir_height); } void adios() { exit(0); } static int cmd_adios(ClientData , Tcl_Interp* , int , CONST84 char **) { adios(); /*NOTREACHED*/ return (0); } extern "C" char version[]; static int cmd_version(ClientData , Tcl_Interp* tcl, int , CONST84 char **) { tcl->result = version; return (TCL_OK); } char* parse_assignment(char* cp) { cp = strchr(cp, '='); if (cp != 0) { *cp = 0; return (cp + 1); } else return ("true"); } static void process_geometry(Tk_Window tk, char* geomArg) { /* * Valid formats: * x[+-][+-] or * x or * [+-]x[+-]y */ Tcl &tcl = Tcl::instance(); // xxx: geomArg could have bogus stuff in it (security hole) // but nam doesn't run trusted, so no problem. tcl.evalf("wm geometry %s %s", Tk_PathName(tk), geomArg); // tclcl will report the error, if any. } // What is it used for??? // extern "C" void Blt_Init(Tcl_Interp*); #ifdef WIN32 EXTERN int platformInit(Tcl_Interp* interp); #endif /* TkPlatformInit was moved to tkUnixInit.c */ #if defined(WIN32) && defined(STATIC_LIB) #include #include extern "C" { extern BOOL APIENTRY Tk_LibMain(HINSTANCE hInstance, DWORD reason, LPVOID reserved); extern BOOL APIENTRY Tcl_LibMain(HINSTANCE hInstance, DWORD reason, LPVOID reserved); /* procedure to call before exiting to clean up */ void static_exit(void) { HINSTANCE hInstance = Tk_GetHINSTANCE(); Tcl_LibMain(hInstance, DLL_PROCESS_DETACH, NULL); Tk_LibMain(hInstance, DLL_PROCESS_DETACH, NULL); } } #endif /* defined(WIN32) && defined(STATIC_LIB) */ #ifdef HAVE_LIBTCLDBG extern "C" { extern int Tcldbg_Init(Tcl_Interp *); // hackorama } #endif void die(char *s) { fprintf(stderr, "%s", s); exit (1); } /*ARGSUSED*/ int main(int argc, char **argv) { //const char* script = 0; // configurations to be loaded const char* optstr = "d:M:j:pG:r:u:X:t:i:P:g:N:c:S:f:asmk:zk:xp"; TraceEvent te; // Used to display parsetable ParseTable pt(&te); // Used to display parsetable /* * We have to initialize libtcl and libtk if we are under Win32 * and we are using static version of libtcl8.0p2 and libtk8.0p2. * Because in those distributions, Sun only supports DLL, but * not static lib. They require initializations in DllMain(). * The Berkeley folks (tecklee) built static versions by * forcing calls to DllMain() inside WinMain(). Because nam * is built as a console app in win32, we have to do those * initializations here, in main(). */ #if defined(WIN32) && defined(STATIC_LIB) HINSTANCE hInstance = GetModuleHandle(NULL); Tcl_LibMain(hInstance, DLL_PROCESS_ATTACH, NULL); Tk_LibMain(hInstance, DLL_PROCESS_ATTACH, NULL); atexit(static_exit); #endif /* * Process display option here before the rest of the options * because it's needed when creating the main application window. */ const char* display = disparg(argc, argv, optstr); // hold pointer to application name for send const char* appname = namearg(argc, argv, optstr); if (!appname) appname = "nam"; #ifdef notdef fprintf(stderr, "Application name is %s\n", appname); #endif Tcl_Interp *interp = Tcl_CreateInterp(); if (Tcl_Init(interp) == TCL_ERROR) { printf("%s\n", interp->result); abort(); } #if TCL_MAJOR_VERSION < 8 Tcl_SetVar(interp, "tcl_library", "./lib/tcl7.6", TCL_GLOBAL_ONLY); Tcl_SetVar(interp, "tk_library", "./lib/tk4.2", TCL_GLOBAL_ONLY); #else Tcl_SetVar(interp, "tcl_library", "", TCL_GLOBAL_ONLY); Tcl_SetVar(interp, "tk_library", "", TCL_GLOBAL_ONLY); // this seems just a hack, should NOT have hard-coded library path! // why there's no problem with old TCL/TK? // xuanc, 10/3/2003 //Tcl_SetVar(interp, "tcl_library", "./lib/tcl8.0", TCL_GLOBAL_ONLY); //Tcl_SetVar(interp, "tk_library", "./lib/tk8.0", TCL_GLOBAL_ONLY); #endif if (Otcl_Init(interp) == TCL_ERROR) { printf("%s\n", interp->result); abort(); } #ifdef HAVE_LIBTCLDBG if (Tcldbg_Init(interp) == TCL_ERROR) { return TCL_ERROR; } #endif Tcl::init(interp, appname); Tcl& tcl = Tcl::instance(); tcl.evalf(display? "set argv \"-name %s -display %s\"" : "set argv \"-name %s\"", appname, display, appname); Tk_Window tk = 0; #ifdef WIN32 Tcl_SetVar(interp, "tcl_library", ".", TCL_GLOBAL_ONLY); Tcl_SetVar(interp, "tk_library", ".", TCL_GLOBAL_ONLY); #endif if (Tk_Init(tcl.interp()) == TCL_OK) tk = Tk_MainWindow(tcl.interp()); if (tk == 0) { fprintf(stderr, "nam: %s\n", interp->result); exit(1); } tcl.tkmain(tk); extern EmbeddedTcl et_tk, et_nam; et_tk.load(); et_nam.load(); int op; int cacheSize = 100; char* graphInput = new char[256]; char* graphInterval = new char[256]; char* buf = new char[256]; char* args = new char[256]; graphInput[0] = graphInterval[0] = buf[0] = args[0] = 0; while ((op = getopt(argc, (char**)argv, (char*)optstr)) != -1) { switch (op) { default: usage(); case 'd': case 'N': /* already handled before */ break; /*XXX move to Tcl */ #ifdef notyet case 'M': tcl.add_option("movie", optarg); break; case 'p': tcl.add_option("pause", "1"); break; case 'G': tcl.add_option("granularity", optarg); break; case 'X': { const char* value = parse_assignment(optarg); tcl.add_option(optarg, value); } break; case 'P': /* Peer name, obsoleted */ sprintf(buf, "p %s ", optarg); strcat(args, buf); break; case 't': /* Use tkgraph. Must supply tkgraph input filename. */ sprintf(graphInput, "g %s ", optarg); strcat(args, graphInput); break; #endif case 'a': /* * Create a whole new instance. */ strcat(args, "a 1 "); break; case 'c': cacheSize = atoi(optarg); break; case 'f': case 'u': //script = optarg; /* Also pass it to OTcl */ sprintf(buf, "f %s ", optarg); strcat(args, buf); break; case 'g': process_geometry(tk, optarg); break; case 'i': /* * Interval value for graph updates: default is * set by nam_init. */ sprintf(graphInterval, "i %s ", optarg); strcat(args, graphInterval); break; case 'j': /* Initial startup time */ sprintf(buf, "j %s ", optarg); strcat(args, buf); break; case 'k': /* Initial socket port number */ sprintf(buf, "k %s ", optarg); strcat(args, buf); break; case 'm': /* Multiple traces */ /* no longer needed, but option is still allowed */ /* for compatibility reasons */ break; case 'r': /* Initial animation rate */ sprintf(buf, "r %s ", optarg); strcat(args, buf); break; case 's': /* synchronize all windows together */ strcat(args, "s 1 "); break; case 'z': /* set nam validation test on */ strcat(args, "z 1 "); break; #ifndef WIN32 case 'S': XSynchronize(Tk_Display(tk), True); break; #endif case 'x': pt.printLatex(stdout); exit(0); break; case 'p': pt.print(stdout); exit(0); break; } } if (strlen(graphInterval) && !strlen(graphInput)) { fprintf(stderr, "nam: missing graph input file\n"); exit(1); } loadbitmaps(interp); char* tracename = NULL; /* trace file */ /* * Linux libc-5.3.12 has a bug where if no arguments are processed * optind stays at zero. Work around that problem here. * The work-around seems harmless in other OSes so it's not ifdef'ed. */ if ((optind == -1) || (optind == 0)) optind = 1; /* * Make sure the base name of the trace file * was specified. */ // if (argc - optind < 1) // usage(); tracename = argv[optind]; //XXX need to port this #ifndef WIN32 if ((tracename != NULL) ) { if (access(tracename, R_OK) < 0) { tracename = new char[strlen(argv[optind]) + 4]; sprintf(tracename, "%s.nam", argv[optind]); } } #endif tcl.CreateCommand("adios", cmd_adios); tcl.CreateCommand("version", cmd_version); #ifdef WIN32 platformInit(interp); #endif // XXX inappropriate to do initialization in this way? FILE *fp = fopen(".nam.tcl", "r"); if (fp != NULL) { fclose(fp); tcl.EvalFile(".nam.tcl"); } // User-supplied configuration files // option '-u' and '-f' are merged together // Evaluation is moved into OTcl // if (script != NULL) { // fp = fopen(script, "r"); // if (fp != NULL) { // fclose(fp); // tcl.EvalFile(script); // } else { // fprintf(stderr, "No configuration file %s\n", // script); // } // } Paint::init(); State::init(cacheSize); // -- Start TclDebugger //Tcldbg_Init(interp); tcl.eval("set nam_local_display 0"); if (tracename != NULL) { while (tracename) { // Any backslash characters in the filename must be // escaped before being passed to Tcl. char * new_tracename = (char*)malloc(2 * strlen(tracename) + 1); char * temp_tracename = new_tracename; while (*tracename) { if (*tracename == '\\') *(temp_tracename++) = '\\'; *(temp_tracename++) = *tracename; ++tracename; } *temp_tracename = 0; tracename= new_tracename; // Jump to nam-lib.tcl tcl.evalf("nam_init %s %s", tracename, args); tracename = argv[++optind]; } } else { // Jump to nam-lib.tcl tcl.evalf("nam_init \"\" %s", args); } tcl.eval("set nam_local_display"); if (strcmp(tcl.result(),"1") == 0) { Tk_MainLoop(); } return (0); } nam-1.15/Makefile.in0000644000076400007660000001376111655017161013152 0ustar tomhnsnam# # Copyright (c) 1991,1993 The Regents of the University of California. # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: # 1. Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # 2. Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # 3. All advertising materials mentioning features or use of this software # must display the following acknowledgement: # This product includes software developed by the Computer Systems # Engineering Group at Lawrence Berkeley Laboratory. # 4. Neither the name of the University nor of the Laboratory may be used # to endorse or promote products derived from this software without # specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE # ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. # # @(#) $Header: /cvsroot/nsnam/nam-1/Makefile.in,v 1.54 2011/11/02 16:31:26 tom_henderson Exp $ # # Top level hierarchy prefix = @prefix@ exec_prefix = @exec_prefix@ # Pathname of directory to install the binary BINDEST = @bindir@ # Pathname of directory to install the man page MANDEST = @mandir@ # Define datarootdir as of autoconf 2.60 datarootdir = @datarootdir@ CC = @CC@ CPP = @CXX@ CCOPT = @V_CCOPT@ MKDEP = ./conf/mkdep # Have to be the same as that defined in conf/makefile.win TCL2C = @V_TCL2CPP@ TCLSH = @V_TCLSH@ # # Remember to add a dependency if you add any tcl sources here. # LIB = \ @V_LIBS@ \ @V_LIB_X11@ \ @V_LIB@ -lm @LIBS@ INCLUDE = \ -I. @V_INCLUDES@ \ @V_INCLUDE_X11@ STATIC = @V_STATIC@ DEFINE = -DTCL_TK -DNO_VOID @V_DEFINE@ @V_DEFINES@ CFLAGS = $(CCOPT) $(DEFINE) $(INCLUDE) INSTALL = @INSTALL@ RANLIB = @V_RANLIB@ BLANK = # make a blank space. DO NOT add anything to this line AR = ar rc $(BLANK) LINK = $(CPP) LDFLAGS = LDOUT = -o $(BLANK) PERL = perl RM = rm -f # Explicitly define compilation rules since SunOS 4's make doesn't like gcc. # Also, gcc does not remove the .o before forking 'as', which can be a # problem if you don't own the file but can write to the directory. .SUFFIXES: .cc $(.SUFFIXES) .cc.o: rm -f $@; $(CPP) -o $@ -c $(CFLAGS) $*.cc .c.o: rm -f $@; $(CC) -o $@ -c $(CFLAGS) $*.c GEN_DIR = gen/ NAM = nam # WIN32: uncomment the following line to include specific make for VC++ # !include OBJ_C = tkcompat.o tkUnixInit.o xwd.o OBJ_CC = \ netview.o netmodel.o edge.o packet.o node.o main.o \ trace.o queue.o drop.o animation.o agent.o feature.o \ route.o transform.o paint.o state.o monitor.o anetmodel.o \ rng.o view.o graphview.o netgraph.o tracehook.o \ lan.o psview.o group.o editview.o tag.o address.o animator.o \ wnetmodel.o nam_stream.o enetmodel.o testview.o parser.o \ trafficsource.o lossmodel.o queuehandle.o OBJ_GEN = \ $(GEN_DIR)version.o $(GEN_DIR)nam_tcl.o SRC_GEN = \ $(GEN_DIR)version.c $(GEN_DIR)nam_tcl.cc OBJ = $(OBJ_C) $(OBJ_CC) $(OBJ_GEN) SRC = $(OBJ_C:.o=.c) $(OBJ_CC:.o=.cc) CLEANFILES = $(NAM) $(OBJ) $(SRC_GEN) core core.nam NAM_TCL_LIB = \ tcl/nam-lib.tcl \ tcl/nam-default.tcl \ tcl/balloon.tcl \ tcl/snapshot.tcl \ tcl/animator.tcl \ tcl/anim-ctrl.tcl \ tcl/netModel.tcl \ tcl/autoNetModel.tcl \ tcl/build-ui.tcl \ tcl/annotation.tcl \ tcl/node.tcl \ tcl/monitor.tcl \ tcl/stats.tcl \ tcl/www.tcl \ tcl/menu_file.tcl \ tcl/menu_view.tcl \ tcl/NamgraphView.tcl \ tcl/NamgraphModel.tcl \ tcl/TimesliderNamgraphView.tcl \ tcl/TimesliderView.tcl \ tcl/TimesliderModel.tcl \ tcl/observer.tcl \ tcl/observable.tcl \ tcl/wirelessNetModel.tcl \ tcl/editorNetModel.tcl \ tcl/Editor.tcl \ tcl/Editor-FileParser.tcl $(NAM): $(OBJ) $(SCRYOBJ) Makefile $(RM) $@ $(LINK) $(STATIC) $(LDFLAGS) $(LDOUT)$@ \ $(OBJ) $(SCRYOBJ) $(LIB) Makefile: Makefile.in @echo "Makefile.in is newer than Makefile." @echo "You need to re-run configure." false $(GEN_DIR)nam_tcl.cc: $(NAM_TCL_LIB) $(RM) $@ $(TCLSH) bin/tcl-expand.tcl tcl/nam-lib.tcl | $(TCL2C) et_nam > $@ $(GEN_DIR)version.c: VERSION $(RM) $@ $(TCLSH) bin/string2c.tcl version < VERSION > $@ install: force $(INSTALL) -m 755 nam $(DESTDIR)$(BINDEST) clean: $(RM) $(CLEANFILES) distclean: $(RM) $(CLEANFILES) Makefile config.cache config.log config.status tar: force tar=$(TAR_PREFIX)-nam-`cat VERSION`.tar.gz ; \ rm -f $$tar ; \ tar cfhF - $(TAR) | gzip -c > $$tar depend: $(SRC) $(MKDEP) $(CFLAGS) $(SRC) srctar: @cwd=`pwd` ; dir=`basename $$cwd` ; \ name=nam-`cat VERSION | tr A-Z a-z` ; \ tar=nam-src-`cat VERSION`.tar.gz ; \ list="" ; \ for i in `cat FILES` ; do list="$$list $$name/$$i" ; done; \ echo \ "(rm -f $$tar; cd .. ; ln -s $$dir $$name)" ; \ (rm -f $$tar; cd .. ; ln -s $$dir $$name) ; \ echo \ "(cd .. ; tar cfhz $$tar [lots of files])" ; \ (cd .. ; tar cfhz - $$list) > $$tar ; \ echo \ "rm ../$$name; chmod 444 $$tar" ; \ rm ../$$name; chmod 444 $$tar force: # Create makefile.vc for Win32 development by replacing: # "# !include ..." -> "!include ..." makefile.vc: Makefile.in $(PERL) bin/gen-vcmake.pl < Makefile.in > makefile.vc # $(PERL) -pe 's/^# (\!include)/\!include/o' < Makefile.in > makefile.vc nam-1.15/makefile.vc0000664000076400007660000001352007456646404013223 0ustar tomhnsnam# # Copyright (c) 1991,1993 The Regents of the University of California. # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: # 1. Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # 2. Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # 3. All advertising materials mentioning features or use of this software # must display the following acknowledgement: # This product includes software developed by the Computer Systems # Engineering Group at Lawrence Berkeley Laboratory. # 4. Neither the name of the University nor of the Laboratory may be used # to endorse or promote products derived from this software without # specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE # ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. # # @(#) $Header: /cvsroot/nsnam/nam-1/makefile.vc,v 1.30 2002/04/15 21:58:28 buchheim Exp $ # # Top level hierarchy prefix = @prefix@ exec_prefix = @exec_prefix@ # Pathname of directory to install the binary BINDEST = @bindir@ # Pathname of directory to install the man page MANDEST = @mandir@ CC = @CC@ CPP = @CXX@ CCOPT = @V_CCOPT@ MKDEP = ./conf/mkdep # Have to be the same as that defined in conf/makefile.win TCL2C = @V_TCL2CPP@ TCLSH = @V_TCLSH@ # # Remember to add a dependency if you add any tcl sources here. # LIB = \ @V_LIBS@ \ @V_LIB_X11@ \ @V_LIB@ -lm @LIBS@ INCLUDE = \ -I. @V_INCLUDES@ \ @V_INCLUDE_X11@ STATIC = @V_STATIC@ DEFINE = -DTCL_TK @V_DEFINE@ @V_DEFINES@ CFLAGS = $(CCOPT) $(DEFINE) $(INCLUDE) INSTALL = @INSTALL@ RANLIB = @V_RANLIB@ BLANK = # make a blank space. DO NOT add anything to this line AR = ar rc $(BLANK) LINK = $(CPP) LDFLAGS = LDOUT = -o $(BLANK) PERL = perl RM = rm -f # Explicitly define compilation rules since SunOS 4's make doesn't like gcc. # Also, gcc does not remove the .o before forking 'as', which can be a # problem if you don't own the file but can write to the directory. .SUFFIXES: .cc .cc.o: rm -f $@; $(CPP) -o $@ -c $(CFLAGS) $*.cc .c.o: rm -f $@; $(CC) -o $@ -c $(CFLAGS) $*.c GEN_DIR = gen/ NAM = nam # WIN32: uncomment the following line to include specific make for VC++ !include OBJ_C = tkcompat.o tkUnixInit.o win32.o getopt.o OBJ_CC = \ netview.o netmodel.o edge.o packet.o node.o main.o \ trace.o queue.o drop.o animation.o agent.o feature.o \ route.o transform.o paint.o state.o monitor.o anetmodel.o \ random.o rng.o view.o graphview.o netgraph.o tracehook.o\ lan.o psview.o group.o editview.o tag.o address.o animator.o \ wnetmodel.o nam_stream.o enetmodel.o testview.o parser.o \ trafficsource.o lossmodel.o queuehandle.o OBJ_GEN = \ $(GEN_DIR)version.o $(GEN_DIR)nam_tcl.o SRC_GEN = \ $(GEN_DIR)version.c $(GEN_DIR)nam_tcl.cc OBJ = $(OBJ_C) $(OBJ_CC) $(OBJ_GEN) SRC = $(OBJ_C:.o=.c) $(OBJ_CC:.o=.cc) CLEANFILES = $(NAM) $(OBJ) $(SRC_GEN) core core.nam NAM_TCL_LIB = \ tcl/nam-lib.tcl \ tcl/nam-default.tcl \ tcl/balloon.tcl \ tcl/snapshot.tcl \ tcl/animator.tcl \ tcl/anim-ctrl.tcl \ tcl/netModel.tcl \ tcl/autoNetModel.tcl \ tcl/build-ui.tcl \ tcl/annotation.tcl \ tcl/node.tcl \ tcl/monitor.tcl \ tcl/stats.tcl \ tcl/www.tcl \ tcl/menu_file.tcl \ tcl/menu_view.tcl \ tcl/NamgraphView.tcl \ tcl/NamgraphModel.tcl \ tcl/TimesliderNamgraphView.tcl \ tcl/TimesliderView.tcl \ tcl/TimesliderModel.tcl \ tcl/observer.tcl \ tcl/observable.tcl \ tcl/wirelessNetModel.tcl \ tcl/editorNetModel.tcl \ tcl/Editor.tcl \ tcl/Editor-FileParser.tcl $(NAM): $(OBJ) $(SCRYOBJ) makefile.vc $(RM) $@ $(LINK) $(STATIC) $(LDFLAGS) $(LDOUT)$@ \ $(OBJ) $(SCRYOBJ) $(LIB) Makefile: Makefile.in @echo "Makefile.in is newer than Makefile." @echo "You need to re-run configure." false $(GEN_DIR)nam_tcl.cc: $(NAM_TCL_LIB) -mkdir $(GEN_DIR:\\=) $(RM) $@ $(TCLSH) bin/tcl-expand.tcl tcl/nam-lib.tcl | $(TCL2C) et_nam > $@ $(GEN_DIR)version.c: VERSION -mkdir $(GEN_DIR:\\=) $(RM) $@ $(TCLSH) bin/string2c.tcl version < VERSION > $@ install: force $(INSTALL) -m 555 -o bin -g bin nam $(DESTDIR)$(BINDEST) clean: $(RM) $(CLEANFILES) distclean: $(RM) $(CLEANFILES) Makefile config.cache config.log config.status tar: force tar=$(TAR_PREFIX)-nam-`cat VERSION`.tar.gz ; \ rm -f $$tar ; \ tar cfhF - $(TAR) | gzip -c > $$tar depend: $(SRC) $(MKDEP) $(CFLAGS) $(SRC) srctar: @cwd=`pwd` ; dir=`basename $$cwd` ; \ name=nam-`cat VERSION | tr A-Z a-z` ; \ tar=nam-src-`cat VERSION`.tar.gz ; \ list="" ; \ for i in `cat FILES` ; do list="$$list $$name/$$i" ; done; \ echo \ "(rm -f $$tar; cd .. ; ln -s $$dir $$name)" ; \ (rm -f $$tar; cd .. ; ln -s $$dir $$name) ; \ echo \ "(cd .. ; tar cfh $$tar [lots of files])" ; \ (cd .. ; tar cfh - $$list) | gzip -c > $$tar ; \ echo \ "rm ../$$name; chmod 444 $$tar" ; \ rm ../$$name; chmod 444 $$tar force: # Create makefile.vc for Win32 development by replacing: # "# !include ..." -> "!include ..." nam-1.15/monitor.cc0000664000076400007660000000300606465675556013121 0ustar tomhnsnamclass Node; #include "config.h" #include "stdio.h" #include "monitor.h" #include "animation.h" #include "netview.h" #include "paint.h" Monitor::Monitor(int mon_num, Animation *a, double size) : mon_num_(mon_num), anim_(a), size_(size) { paint_=Paint::instance()->thin(); mon_state_=a->monitor_state(); sprintf(label_, "%d", mon_num); } Monitor::~Monitor() { if (mon_state_!=NULL) delete(mon_state_); } void Monitor::update(double now, char *result, int len) { if (anim_!=NULL) anim_->monitor(this, now, result, len); else sprintf(result, "Not visible"); } void Monitor::size(double size) { size_=size; } /*XXX there must be a cleaner way to do this*/ /*we need coordinates from the animation itself, and information about the size of the whole model from the netmodel. Thus we have two draw methods, one from the animation that sets up data and one from the netmodel that actually does the drawing*/ void Monitor::draw(View */*nv*/, float x, float y) { x_=x; y_=y; } void Monitor::draw_monitor(View *nv, float ymin, float /*ymax*/) const { if (anim_==NULL) return; float delta = 0.5 * size_; nv->line(x_,y_,x_,ymin-delta,paint_); nv->rect(x_-delta, ymin-delta, x_+delta, ymin-(size_+delta), paint_); nv->string(x_, ymin-size_, size_, label_, ANCHOR_CENTER); } void Monitor::delete_monitor_object(Animation *m) { /*need to check this because we can sometimes hand a monitor over to a new animation just before the old animation calls this*/ if (anim_==m) anim_=NULL; } nam-1.15/monitor.h0000664000076400007660000000224606465675557012771 0ustar tomhnsnam#ifndef nam_monitor_h #define nam_monitor_h class Animation; class NetView; class View; class Node; struct MonPacket { int id; }; struct MonRoute { int src; int group; Node *node; }; /*MonState is used when an Animation deletes itself, but it is likely that another animation will be created soon that should inherit the monitor*/ #define MON_PACKET 1 #define MON_ROUTE 2 struct MonState { int type; union { MonPacket pkt; MonRoute route; }; }; class Monitor { public: Monitor(int mon, Animation *a, double size); ~Monitor(); void update(double now, char *result, int len); inline Monitor *next() const { return next_; } void next(Monitor *next) { next_=next; } Animation *anim() const { return anim_; } void anim(Animation *a) { anim_=a;} void draw (View *nv, float x, float y); void size(double size); void draw_monitor(View *nv, float ymin, float ymax) const; int monitor_number() const {return mon_num_;} void delete_monitor_object(Animation *m); struct MonState *mon_state_; protected: Monitor* next_; int mon_num_; Animation *anim_; int paint_; float x_; float y_; double size_; char label_[20]; }; #endif nam-1.15/monitors.gif0000664000076400007660000000020706351340336013437 0ustar tomhnsnamGIF87aK€ÿÿÿ,Kf„©Ëí£œ´Ú‹ó üð0uF~ÞH¡$ö-Ђð;¿±a›ë)Æ·? ú\CUÉÄ•Â%s¤Ûj5Yó¹DõxÖ]¨un·ØDtõ­þdcpNIó‚›:hökçJ÷ü¾ÿ(8èP;nam-1.15/nam.10000664000076400007660000005576106474427473011770 0ustar tomhnsnam.\" .\" @(#) $Header: /cvsroot/nsnam/nam-1/nam.1,v 1.12 1998/02/24 02:23:55 haoboy Exp $ (LBL) .\" .\" Copyright (c) 1991,1993 Regents of the University of California. .\" All rights reserved. .\" .\" Redistribution and use in source and binary forms, with or without .\" modification, are permitted provided that the following conditions .\" are met: .\" 1. Redistributions of source code must retain the above copyright .\" notice, this list of conditions and the following disclaimer. .\" 2. Redistributions in binary form must reproduce the above copyright .\" notice, this list of conditions and the following disclaimer in the .\" documentation and/or other materials provided with the distribution. .\" 3. All advertising materials mentioning features or use of this software .\" must display the following acknowledgement: .\" This product includes software developed by the Computer Systems .\" Engineering Group at Lawrence Berkeley Laboratory. .\" 4. Neither the name of the University nor of the Laboratory may be used .\" to endorse or promote products derived from this software without .\" specific prior written permission. .\" .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" .TH NAM 1 "04 Nov 1997" .SH NAME nam \- VINT/LBL Network Animator .SH SYNOPSIS .na .B nam [ .B \-g .I geometry ] [ .B \-t .I graphInput ][ .B \-i .I interval ] [ .B \-P .I peerName ] [ .B \-N .I appName ] [ .B \-c .I cacheSize ] [ .B \-f .I configfile ] [ .B \-S ] .I tracefile .br .ad .SH DESCRIPTION .LP \fINam\fP is a Tcl/TK based animation tool for viewing network simulation traces and real world packet trace data. .LP The first step to use nam is to produce the trace file. The trace file should contain topology information, e.g., nodes, links, as well as packet traces. The detailed format is described in the TRACE FILE section. Usually, the trace file is generated by \fIns(1)\fP. During an ns simulation, user can produce topology configurations, layout information, and packet traces using tracing events in ns. Refer to \fIns(1)\fP for detailed information. .LP When the trace file is generated, it is ready to be animated by nam. Upon startup, nam will read the trace file, create topology, pop up a window, do layout if necessary, then pause at the time of the first packet in the trace file. Through its user interface, nam provides control over many aspects of animation. These functionalities will be described in detail in the USER INTERFACE section. .LP This version of nam is highly experimental - there will be bugs!. Please mail ns-developers@mash.cs.berkeley.edu if you encounter any bugs, or with suggestions for desired functionality. .SH OPTIONS .TP .B \-g Specify geometry of the window upon startup. The format is described in \fIX(1)\f. .TP .B \-t [Information incomplete] Instruct nam to use tkgraph, and specify input file nam for tkgraph. .TP .B \-i [Information for this option may not be accurate] Specify \fIrate\fP (real) milliseconds as the screen update rate. The default rate is 50ms (i.e., 20 frames per second). Note that the X server may not be able to keep up with this rate, in which case the animation will run as fast as the X server allows it to (at 100% cpu utilization). .TP .B \-N Specify the application name of this nam instance. This application name may later be used in peer synchronization. .TP .B \-P Specify the application name of the peer nam instance whose execution will be synchronized with the execution of this nam instance. Refer to the above option (-N) as how to specify application names. .br General usage is: (1) starting the first nam instance (slave) by: .br \fInam -N \fP .br Then start the second nam instance (which will be the master): .br \fInam -N \fP .br Then every animation control (play, stop, backward, but \fIexclude\fP other inspection and interactive operations such as monitoring) will be synchronized between the two instances. .br Please note that because this mechanism uses Tcl's send command, it requires that your X server used xauth as authentication. Specifically, you should add option `-auth ' when you starts your X server. Without this option, X will use xhost as authentication, which is too weak and considered insecure. Refer to man page of Xsecurity, xauth and Xserver for details, and the available authentication protocols. .TP .B \-c [Information incomplete] The maximum size of the cache used to store 'active' objects when doing backward animation. .TP .B \-f Name of the initialization files to be loaded during startup. In this file, user can define functions which will be called in the trace file. An example for this is the 'link-up' and 'link-down' events of dynamic links in ns. (Refer to \fB$ns rtmodel\fP for detail, and tcl/ex/simple-dyn.tcl in your ns directory for example). Example initialization files can be found at ex/sample.nam.tcl and ex/dynamic-nam.conf. .TP .B \-S Enable synchronous X behavior so it is easier for graphics debugging. For UNIX system running X only. .LP .I tracefile is the name of the file containing the trace data to be animated (format described in TRACE FILE section below). If .I tracefile cannot be read, .B nam will try to open .IR tracefile .nam. .LP .\" .\" OBJECTS SECTION .\" .SH "OBJECTS IN NAM" nam does animation using the following building blocks: node, link, queue, packet, agent, monitor. They are defined below: .IP \fInode\fP Nodes are created from 'n' trace event in trace file. It represents a source/host/router, etc. nam will terminate if there are duplicate definition for the same node. Node may have many shapes, (circle, square, and hexagon), but once created it cannot change its shape. Node may also have many colors, it can change its color during animation. Refer to \fIns(1)\fP for related tracing events. .IP \fIlink\fP Links are created between nodes to form a network topology. nam links are internally simplex, but it is invisible to the users. The trace event 'l' creates two simplex links and other necessary setups, hence it looks to users identical to a duplex link. Link may have many colors, it can change its color during animation. Refer to \fIns(1)\fP for related tracing events. .IP \fIqueue\fP Queue needs to be constructed in nam between two nodes. Unlike link, nam queue is associated to a \fIsimplex\fP link. The trace event 'q' only creates a queue for a simplex link. In nam, queues are visualized as stacked packets. Packets are stacked along a line, the angle between the line and the horizontal line can be specified in the trace event 'q'. .IP \fIpacket\fP Packet is visualized as a block with an arrow. The direction of the arrow shows the flow direction of the packet. Queued packets are shown as little squares. A packet may be dropped from a queue or a link. Dropped packets are shown as rotating squares, and disappear at the end of the screen. Dropped packets are not visible during backward animation. .IP \fIagent\fP Agents are used to separate protocol states from nodes. They are always associated with nodes. An agent has a name, which is a \fIunique\fP identifier of th agent. It is shown as a square with its name inside, and a line link the square to its associated node. .\" .\" Automatic Layout Section .\" .SH "AUTOMATIC LAYOUT" In nam, a topology is specified by alternating node objects with edge objects. But to display the topology in a comprehensible way, a layout mechanism is needed. Currently nam provides two layout methods. First, user may specify edges' orientations. An edge orientation is the angle between the edge and the horizontal line, in the interval [0, 2*pi). During layout, nam will honor the given edge orientations. Generally, it will first choose a reference node, then place other nodes using edge orientation and edge length, which is determined by link delay. This works well for small and manually generated topologies. Second, when we are dealing with randomly generated topologies, be it small or large, we may want to do layout automatically. An automatic graph layout algorithm ([1] [2]) is adapted and implemented. The basic idea of the algorithm is to model the graph as balls (nodes) connected by springs (edges). Balls will repulse each other, while springs pull them together. This system will (hopefully) converge after some iterations. In practice, after a small number of iterations (tens or hundreds), most graphs will converge to a visually comprehensible structure. There are 3 parameters to tune the automatic layout process: .IP Ca Attractive force constant, which controls springs's force between balls. Default value is 0.15 .IP Cr Repulsive force constant, which controls the repulsive force between balls. Default value is 0.15 .IP "Number of iterations" Self explained. Default value is 10. For small topologies with tens of nodes, using the default parameters (perhaps with 20 to 30 more iterations) will suffice to produce a nice layout. But for larger topology, careful parameter tuning is necessary. Following is a empirical method to layout a 100 node random transit stub topology generated by Georgia Tech's ITM internet topology modeler. First, set Ca_ and Cr_ to 0.2, do about 30 iterations, then set Cr_ to 1.0, Ca_ to about 0.01, then do about 10 iterations, then set Ca_ to 0.5, Cr_ to 1.0, do about 6 iterations. .\" .\" USER INTERFACE SECTION .\" .SH "THE USER INTERFACE" The top of the .B nam .\" MENU BAR \fInam\fP window is a .I menu bar. Two pulldown menus are on the left of the menu bar. The 'File' menu currently only contains a 'Quit' button. It has a 'Open...' button as well, but that is not implemented yet. The 'View' menu has 4 buttons: .IP \- New view button: Creates a new view of the same animation. User can scroll and zoom on the new view. All views will be animated synchronously. .IP \- Show monitors checkbox: If checked, will show a pane at the lower half of window, where monitors will be displayed. .IP \- Show autolayout checkbox: If checked, will show a pane at the lower half of window, which contains input boxes and a button for automatic layout adjusts. This box may not always be enabled. When a trace file has its own layout specifications, this box will be disabled. If and only if the trace file does not have complete layout specification (i.e., each link has orientation specified in the traces), will this box be enabled. .IP \- Show annotation checkbox: If checked, will show a listbox at the lower half of window, which will be used to list annotations in the ascending order of time. The 'Help' menu is on the right side of the menu bar. It has two buttons. Clicking the 'Help' button will pop up a new window showing information on nam usage. Clicking the 'About' button will pop up a new window showing history and status of nam. .IP "Acceleration Keys" ALT+'f' will pull down the 'File' menu. ALT+'v' will pull down the 'Open...' menu. ESC will abort a menu selection in progress. .\" CONTROL BAR 1 Below the menu bar, there is a \fIcontrol bar\fP containing 6 buttons, a label, and a small scrollbar (scale). They can be clicked in any order. We will explain them from left to right. .IP "Button 1 (<<)" Rewind. When clicked, animation time will go back at the rate of 25 times the current screen update rate. .IP "Button 2 (<)" Backward play. When clicked, animation will be played backward in time. .IP "Button 3 (square)" Stop. When clicked, animation will pause. .IP "Button 4 (>)" Forward play. When clicked, animation will be played in time ascending order. .IP "Button 5 (>>)" Fast Forward. When clicked, animation time will go forward at the rate of 25 times the current screen update rate. .IP "Button 6 (Chevron logo)" Quit. .IP "Time label" Show the current animation time (i.e., simulation time as in the trace file). .IP "Rate slider" Controls the screen update rate (animation granularity). The current rate is displayed in the label above the slider. .LP .\" MAIN DISPLAY Below the first control bar, there is \fIMain Display\fP, which contains a tool bar and a main view pane with two panning scroll bars. All new views created by menu button 'File/new view' will have these three components. .br The tool bar contains two zoom buttons. The button with an up arrow zooms in, the button with a down arrrow zooms out. The two scroll bars are used to pan the main animation view. .br Clicking the left button on any of the objects in the main view pane will pop up a information window at the clicking point. For packet and agent objects, there is a 'monitor' button in the popup window. Clicking that button will bring out the monitor pane (if it is not there), and add a monitor to the object. For link object, there will be a 'Graph' button. Clink that button will bring out another popup window, where user can select drawing bandwidth utilization graph or link loss graph of one of the two simplex links of the duplex link clicked on. These functionalities are also available in the views created by 'File/new view'. \fBNOTE\fP: These functionalities are \fIHIGHLY EXPERIMENTAL AND UNSTABLE\fP in this release (v1.0a2). .\" MONITOR PANE Below the gadgets we have discussed so far, there may or may not be a \fIMonitor pane\fP, depending on whether the checkbox 'View/show monitors' is set. (The default is unset). All monitors will be shown in this pane. A monitor looks like a big button in the pane. Currently only packet and agent may have monitor. .br A packet monitor shows the size, id, and sent time. When the packet reaches its destination, the monitor will still be there, but saying the packet is invisible. .br A agent monitor shows the name of the agent, and if there are any variable traces associated with this agent, they will be shown there as well. .\" TIME SLIDER Below the monitor pane (or in its place if the monitor pane isn't there), there is a \fITime Slider\fP. It looks like a scaled rule, with a tag 'TIME' which can be dragged along the rule. It is used to set the current animation time. As you drag the 'TIME' tag, current animation time will be displayed in the time label in the control bar above. The left edge of the slider represents the earliest event time in the trace file and the right edge represents the last event time. .br Clicking left button on the rule (not the tag) has the same effect as Rewind or Fast Forward, depending on the clicking position. .\" AUTOMATIC LAYOUT PANE The \fIAutomatic Layout Pane\fP can be visible or hidden. If visible, it is below the time slider. It has three input boxes and one relayout button. The labeled input boxes let user adjust two automatic layout constants, and the number of iterations during next layout. When user press ENTER in any of the input boxes, or click the 'relayout' button, that number of iterations will be performed. Refer to the AUTOMATIC LAYOUT section for details of usage. .\" ANNOTATION LISTBOX The bottom component of the nam window is a \fIAnnotation Listbox\fP, where annotations are displayed. An annotation is a (time, string) pair, which describes a event occuring at that time. Refer to \fIns(1)\fP for functions to generate annotations. Double-click on an annotation in the listbox will bring nam to the time when that annotation is recorded. .br When pointer is within the listbox, clicking right button will stop animation and bring up a popup menu with 3 options: Add, Delete, Info. `Add' will bring up a dialog box with a text input and add a new annotation entry which has the current animation time. User can type annotation string in the dialog box. `Delete' will delete the annotation entry pointed by the pointer. `Info' will bring out a pane which shows both the annotation time and the annotation string. .\" .SH "KEYBOARD COMMANDS" [Incompelete, but accurate] Most of the buttons have keyboard equivalents. Note they only function when mouse cursor is inside the nam window. .br Typing a space or return will pause nam if it's not already paused. If nam is paused, space or return will step the animation one simulated clock tick. (If your keyboard autorepeats, holding down space is a good way to slow-step through some part of the animation.) .br .IP "`p' or `P'" Pause but not step if paused. .IP "`c' or `C'" Continue after a pause. .IP "`b' or `B'" Descrease animation time for one screen update interval. .IP "`r' or `R'" Rewind. .IP "`f' or `F'" Fast Forward. .IP "`n' or `N'" Move to next event. .IP "`x' or `X'" Undo the last rate change .IP "`u' or `U'" Undo the last time slider dragging. .IP "`>' or `.'" Increase the granularity (speed up) by 5%. .IP "`<' or `,'" Decrease the granularity (slow down) by 5%. .IP SPACE Toggle the pause state of nam. .IP "`q', `Q' or Control-c" Quit .\" .\" TRACE FILE FORMAT SECTION .\" .SH "RECORDING ANIMATIONS" To record nam animations, select the ``Record Animation'' option under the file menu. A series of namXXX.xwd files will be produced (where XXX is the frame number), one per time-step. These files can then be assembled into animated GIFs or MPEGs with the appropriate post-processing tools. .\" .\" TRACE FILE FORMAT SECTION .\" .SH "TRACE FILE FORMAT" The trace file events can be divided into 6 types, depending on to which object the event is associated. Below, we discuss them in detail. .IP Packet Basic packet events are a type character, followed by some tags: -t

      { stop 1 } bind .

      { stop 1 } bind . { rewind } bind . { rewind } bind . { time_undo } bind . { time_undo } bind . { rate_undo } bind . { rate_undo } bind . { change_rate 1 } bind . { change_rate 1 } bind . { change_rate 0 } bind . { change_rate 0 } } set helpno 0 proc helpitem { w text } { global helpno set f [option get . helpFont Nam] set h $w.h$helpno incr helpno frame $h canvas $h.bullet -width 12 -height 12 $h.bullet create oval 6 3 12 9 -fill black message $h.msg -justify left -anchor w -font $f -width 460 -text $text pack $h.bullet -side left -anchor ne -pady 5 pack $h.msg -side left -expand 1 -fill x -anchor nw pack $h -expand 1 -fill both } proc build.help { } { set w .help if [winfo exists $w] { return } toplevel $w bind $w "focus $w" wm withdraw $w wm iconname $w "nam help" wm title $w "nam help" frame $w.frame -borderwidth 2 -relief raised set p $w.frame helpitem $p "Sorry, nothing here yet." button $w.frame.ok -text " Dismiss " -borderwidth 2 -relief raised \ -command "wm withdraw $w" -font [mediumfont] pack $w.frame.ok -pady 6 -padx 6 -anchor e pack $w.frame -expand 1 -fill both } # # helper functions # proc nam_angle { v } { switch $v { up-right - right-up { return 0.25 } up { return 0.5 } up-left - left-up { return 0.75 } left { return 1. } left-down - down-left { return 1.25 } down { return 1.5 } down-right - right-down { return 1.75 } default { return 0.0 } } } proc mklink { net n0 n1 bandwidth delay angle } { global delay01 set th [nam_angle $angle] set result [$net link $n0 $n1 \ [bw2real $bandwidth] [time2real $delay] $th] $net link $n1 $n0 \ [bw2real $bandwidth] [time2real $delay] [expr $th + 1] if { $n0 == 0 && $n1 == 1 } { set delay01 $result } } proc mklinkq { net n0 n1 bandwidth delay angle } { mklink $net $n0 $n1 $bandwidth $delay $angle $net queue $n0 $n1 0.5 $net queue $n1 $n0 0.5 } proc ncolor {n0 color} { global netModel $netModel ncolor $n0 $color } proc ecolor {n0 n1 color} { global netModel $netModel ecolor $n0 $n1 $color $netModel ecolor $n1 $n0 $color } nam-1.15/nam_stream.cc0000664000076400007660000003446607513653714013561 0ustar tomhnsnam /* * Copyright (c) 1998 University of Southern California. * All rights reserved. * * Redistribution and use in source and binary forms are permitted * provided that the above copyright notice and this paragraph are * duplicated in all such forms and that any documentation, advertising * materials, and other materials related to such distribution and use * acknowledge that the software was developed by the University of * Southern California, Information Sciences Institute. The name of the * University may not be used to endorse or promote products derived from * this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. * */ #include #include #include #include #include // for atof #include // for O_NONBLOCK #include // for lstat() #include #include "trace.h" #include "nam_stream.h" /**********************************************************************/ class NamStreamClass : public TclClass { public: NamStreamClass() : TclClass("NamStream") {} TclObject* create(int argc, const char*const* argv) { if (argc < 5) return 0; return NamStream::open(argv[4]); } } NamStream_class; int NamStream::command(int argc, const char *const *argv) { Tcl& tcl = Tcl::instance(); if (0) { } else if (argc == 2 && strcmp(argv[1], "gets") == 0) { if (eof()) return TCL_ERROR; // return a line char *buf = tcl.buffer(); assert(4096 > TRACE_LINE_MAXLEN+1); // can the buffer handle us? gets(buf, TRACE_LINE_MAXLEN); buf[TRACE_LINE_MAXLEN] = 0; // paranoia tcl.result(buf); return TCL_OK; } else if (argc == 2 && strcmp(argv[1], "close") == 0) { close(); return TCL_OK; } else if (argc == 2 && strcmp(argv[1], "eof") == 0) { tcl.resultf("%d", eof()); return TCL_OK; }; return (TclObject::command(argc, argv)); } NamStream * NamStream::open(const char *fn) { struct stat state; if (strcmp(fn, "-") == 0 || strcmp(fn, "-.nam") == 0) return NamStreamPipe::open_pipe("-"); #ifndef WIN32 // Windows doesn't have the lstat and S_ISFIFO functions if (lstat(fn, &state) < 0) return NULL; if (S_ISFIFO(state.st_mode)) return NamStreamPipe::open_pipe(fn); #endif if (strcmp(fn + strlen(fn) - 3, ".gz") == 0 || strcmp(fn + strlen(fn) - 2, ".Z") == 0) { #ifdef HAVE_ZLIB_H return new NamStreamCompressedFile(fn); #else /* ! HAVE_ZLIB */ fprintf(stderr, "nam not built with zlib; cannot read compressed files.\n"); return NULL; #endif /* HAVE_ZLIB */ }; /* hope we've got it now */ return new NamStreamFile(fn); } /* * rgets (gets in reverse order) */ char * NamStream::rgets(char *buf, int len) { int ch; /* * prior-line \n current-line \n next-line * * Initially the cursor is on the n of next-line. * read in current-line (which is behind us) * return it * leave the cursor on c of current line. */ /* first make sure we back over the prior newline, if any */ if (seek(-1, SEEK_CUR) < 0) return NULL; ch = get_char(); if (seek(ch == '\n' ? -2 : -1, SEEK_CUR) < 0) return NULL; /* now loop backwards until we get to the newline separating * prior and current. */ off_t pos = tell(); for(;;) { ch = get_char(); if (ch == '\n') break; if (pos == 0) { // beginning of file if (seek(-1, SEEK_CUR) < 0) return NULL; break; } // back up a char & try again pos--; if (seek(-2, SEEK_CUR) < 0) return NULL; }; /* we're just passed the newline for prior-line, or we're at 0 */ /* read current-line, then reset the pointer there */ gets(buf, len); if (pos != seek(pos, SEEK_SET)) return NULL; return buf; } /**********************************************************************/ #if 0 NamStreamFile::NamStreamFile(int fd) : NamStream(fd) { file_ = fdopen(fd, "r"); is_open_ = (NULL != file_); } #endif /* 0 */ NamStreamFile::NamStreamFile(const char *fn) : NamStream(fn) { #ifdef WIN32 // Open in raw binary mode; we'll get rid of \r\n manually. // Otherwise ftell() and fseek() does not work properly. :( file_ = fopen(fn, "rb"); #else file_ = fopen(fn, "r"); #endif is_open_ = (NULL != file_); if (!is_open_) perror(fn); } char * NamStreamFile::gets(char *buf, int len) { char ch = fgetc(file_); if (ch == '\n') { return fgets(buf, len-1, file_); } else { ungetc(ch, file_); return fgets(buf, len, file_); } } char NamStreamFile::get_char() { return getc(file_); } off_t NamStreamFile::seek(off_t offset, int whence) { if (0 == fseek(file_, offset, whence)) return ftell(file_); else return -1; } off_t NamStreamFile::tell() { return ftell(file_); } int NamStreamFile::close() { // fclose(NULL) crashes on Windows, so double check if (file_ == NULL) return 0; int e = fclose(file_); file_ = NULL; return e; } int NamStreamFile::eof() { // feof(NULL) crashes on Windows, so double check return (file_ == NULL) || feof(file_); } int NamStreamFile::read(char *buf, int size) { return fread(buf, 1, size, file_); } /**********************************************************************/ #ifdef HAVE_ZLIB_H /* * Beware: * nam *requires* zlib-1.1.3, as we trip over bugs in 1.1.2's gz* functions. */ NamStreamCompressedFile::NamStreamCompressedFile(const char *fn) : NamStream(fn) { #ifndef ZLIB_VERSION die("zlib version not specified.\n"); int a, b, c; if (3 != sscanf(ZLIB_VERSION, "%d.%d.%d", &a, &b, &c)) { die("zlib version: unknown format.\n"); }; if (!(a > 1 || (a == 1 && b > 1) || (a == 1 && b == 1 && c >= 3))) die("zlib version is too old, nam requires 1.1.3.\n"); #endif file_ = gzopen(fn, "r"); is_open_ = (NULL != file_); } char * NamStreamCompressedFile::gets(char *buf, int len) { char *b = gzgets(file_, buf, len); return b; } char NamStreamCompressedFile::get_char() { return gzgetc(file_); } off_t NamStreamCompressedFile::seek(off_t offset, int whence) { if (whence == SEEK_END) { /* * zlib doesn't support SEEK_END :-< * Walk our way to the end-of-file. */ off_t p = gzseek(file_, 0, SEEK_SET), q; #define STEP (16*1024) char buf[STEP]; int count; for (;;) { /* * Sigh. We actually move all the bytes. XXX * (we can't lseek because we'd lseek * past eof without knowing). */ count = gzread(file_, buf, STEP); if (count <= 0) break; p += count; }; q = gztell(file_); assert (p == q); return q; } else { return gzseek(file_, offset, whence); }; } off_t NamStreamCompressedFile::tell() { return gztell(file_); } int NamStreamCompressedFile::close() { int e = gzclose(file_); file_ = NULL; return e; } int NamStreamCompressedFile::eof() { return gzeof(file_); } int NamStreamCompressedFile::read(char *buf, int size) { int e = gzread(file_, buf, size); return e; } #endif /* HAVE_ZLIB */ /********************************************************************** * Implementation of class NamStreamPipe * - The read operation called by nam is always performed on the backup * file. * - Pipe data are copied to backup file and never returned to nam * directly. * - Pipes are checked when timer expires or nam executes read * operations. *********************************************************************/ // static data members NamStreamPipe* NamStreamPipe::head_ = NULL; int NamStreamPipe::instances_ = 0; Tcl_TimerToken NamStreamPipe::timer_ = NULL; /********************************************************************** * Timer handler that checks data availability of all pipes. **********************************************************************/ void NamStreamPipe::timer_handler(ClientData data) { if (read_pipe()) timer_ = Tcl_CreateTimerHandler(10, timer_handler, NULL); else timer_ = NULL; } /********************************************************************** * Read currently opened pipes. * * RETURN: the number of currently opened pipes. **********************************************************************/ #ifdef PIPE_BUF # define BUF_SIZE PIPE_BUF #else # define BUF_SIZE 8192 #endif int NamStreamPipe::read_pipe() { NamStreamPipe *p; int l, n, fileopen = 0; off_t off; static char buf[BUF_SIZE]; for (p = head_; p; p = p->next_) { // polling for all pipes if (p->front_ < 0) continue; l = ::read(p->front_, buf, BUF_SIZE); if (l < 0) { fileopen++; continue; } if (l == 0) { // end of file ::close(p->front_); p->front_ = -1; continue; } // there are data ready for read, copy to backup file off = ftell(p->back_); fseek(p->back_, 0, SEEK_END); n = fwrite(buf, l, 1, p->back_); if (n <= 0) { // fail to write to backup file ::close(p->front_); p->front_ = -1; // XXX notify user die("NamStreamPipe::read_pipe: tmpfile write problem.\n"); } else { p->back_len_ += l; fileopen++; } if (-1 == fseek(p->back_, off, SEEK_SET)) { // XXX notify user die("NamStreamPipe::read_pipe: fseek problem.\n"); } } return fileopen; } /********************************************************************** * Reentrant function for opening nam pipe stream. * * RETURN: pointer to an NamStreamPipe instance that is associated * with the specified pipe. **********************************************************************/ NamStreamPipe* NamStreamPipe::open_pipe(const char *fn) { NamStreamPipe *p; for (p = head_; p; p = p->next_) { if (! strcmp(fn, p->pipename_)) return p; } return new NamStreamPipe(fn); } NamStreamPipe::NamStreamPipe(const char *fn) : NamStream(fn), front_(-1),back_(NULL), back_len_(0), pipename_(NULL), prev_(NULL), next_(NULL) { #ifndef WIN32 // Windows doesn't have fcntl() function // open pipe and temporary file if (! strcmp(fn, "-")) { // stdin int flag = fcntl(0, F_GETFL, 0); if (flag < 0) goto exception; if (fcntl(0, F_SETFL, flag | O_NONBLOCK) < 0) goto exception; front_ = 0; } else front_ = ::open(fn, O_RDONLY | O_NONBLOCK); back_ = tmpfile(); #endif if ((front_ < 0) || (back_ == NULL)) goto exception; pipename_ = strdup(fn); is_open_ = 1; next_ = head_; if (next_) next_->prev_ = this; head_ = this; instances_++; if (! timer_) { // start the timer if it's idle timer_ = Tcl_CreateTimerHandler(10, timer_handler, NULL); } return; exception: if (front_ > 0) ::close(front_); if (back_) fclose(back_); } /********************************************************************** * Destructor: **********************************************************************/ NamStreamPipe::~NamStreamPipe() { fclose(back_); if (front_ > 0) ::close(front_); if (next_) next_->prev_ = prev_; if (prev_) prev_->next_ = next_; if (pipename_) delete pipename_; instances_--; } /********************************************************************** * Read a line. Nam requires the following semantics: * RETURN: NULL to indicate end-of-file * RETURN: a COMPLETE line, i.e. a complete nam command. It can't return * a partial line, otherwise nam will complain because nam * assumes NamStream is line-buffered. * We assume that there always is new data in the pipe. It's the * responsibility of the pipe data producer (i.e. the application that * generates the nam events to the pipe) to ensure we always have new * input. If we have no new input, then we simply block. **********************************************************************/ char * NamStreamPipe::gets(char *buf, int len) { char *ret = buf; off_t off = ftell(back_); read_pipe(); /* * Case 1: The pipe is just opened to read, but the other end * of the pipe has not open it to write. So, read_pipe() * will close it. * => Reopen the pipe, and return a fake initial command. * Case 2: Both ends have opened the pipe, but the writer has not * produced any data. * => Return a fake initial command. * The fake return value needs to be an initial command. Comment * lines or empty lines are not accepted by nam (e.g. see animator.tcl) * */ if (back_len_ == 0) { #ifndef WIN32 // Windows doesn't have O_NONBLOCK if (front_ == -1) { // it may be closed by read_pipe() front_ = ::open(pipename_, O_RDONLY | O_NONBLOCK); } #endif strcpy(buf, "V -t * -v 1.0a9 -a 0\n"); return buf; } while (1) { /* * Case 3: The backup file is over, but there is no new data in pipe. * => Busy waiting for new input. XXX * This is not a good idea. Since nam is a * single-thread application, busy waiting makes nam * unable to handle other events (e.g. Window, I/O events). * The problem here is that we don't know what to return * when there is no new input from the pipe. * (see netmodel.cc#NetModel::handle()) */ if (! fgets(buf, len, back_)) { // EOF backup file if (front_ == -1) return NULL; else read_pipe(); } /* * Case 4: The backup file is near to over and the last line is * not complete. * => Busy waiting for new input. XXX */ else { int n = strlen(buf) - 1; if (buf[n] == '\n') // here is the normal case return buf; if (front_ == -1) return NULL; fseek(back_, off, SEEK_SET); read_pipe(); } } return ret; } /********************************************************************** * Read a block of data. * XXX Not finished. Don't know what semantics is required by nam. **********************************************************************/ int NamStreamPipe::read(char *buf, int len) { read_pipe(); return fread(buf, 1, len, back_); } /********************************************************************** * Read a character. * XXX Not finished. Don't know what semantics is required by nam. **********************************************************************/ char NamStreamPipe::get_char() { read_pipe(); return fgetc(back_); } off_t NamStreamPipe::seek(off_t offset, int whence) { read_pipe(); if (0 == fseek(back_, offset, whence)) return ftell(back_); else return -1; } off_t NamStreamPipe::tell() { return ftell(back_); } int NamStreamPipe::close() { fseek(back_, 0, SEEK_SET); return 0; } int NamStreamPipe::eof() { if (front_ == -1) { return feof(back_); } else return 0; } nam-1.15/nam_stream.h0000664000076400007660000001012507300037605013372 0ustar tomhnsnam /* * Copyright (c) 1998 University of Southern California. * All rights reserved. * * Redistribution and use in source and binary forms are permitted * provided that the above copyright notice and this paragraph are * duplicated in all such forms and that any documentation, advertising * materials, and other materials related to such distribution and use * acknowledge that the software was developed by the University of * Southern California, Information Sciences Institute. The name of the * University may not be used to endorse or promote products derived from * this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. * */ #ifndef nam_stream_h #define nam_stream_h #include #include #ifdef WIN32 #include #include #else #include #endif #include "nam.h" // for die class NamStream : public TclObject { protected: int is_open_; public: NamStream() : is_open_(0) {}; // NamStream(int fd) : is_open_(0) {}; NamStream(const char *fn) : is_open_(0) {} virtual ~NamStream() { if (is_open_) close(); }; int command(int argc, const char*const* argv); static NamStream *open(const char *fn); int is_ok() { return is_open_; } virtual int seekable() { return 1; } virtual char *gets(char *buf, int len) { return NULL; }; virtual char get_char() { return EOF; } virtual char *rgets(char *buf, int len); virtual off_t seek(off_t offset, int whence) { return -1; }; virtual off_t tell() { return -1; }; virtual int close() { is_open_ = 0; return 0; } virtual int eof() { return 1; }; virtual int read(char *buf, int size) { return 0; } }; class NamStreamFile : public NamStream { FILE *file_; public: // NamStreamFile(int fd); NamStreamFile(const char *fn); virtual int seekable() { return 1; } virtual char *gets(char *buf, int len); virtual char get_char(); virtual off_t seek(off_t offset, int whence); virtual off_t tell(); virtual int close(); virtual int eof(); virtual int read(char *buf, int size); }; #ifdef HAVE_ZLIB_H #include class NamStreamCompressedFile : public NamStream { gzFile file_; public: NamStreamCompressedFile(const char *fn); virtual int seekable() { return 0; } virtual char *gets(char *buf, int len); virtual char get_char(); virtual off_t seek(off_t offset, int whence); virtual off_t tell(); virtual int close(); virtual int eof(); virtual int read(char *buf, int size); }; #endif /* * Make front_ seem like a good, seekable file * when really it's a low-down pipe. * We do this by saving the output in back_. */ class NamStreamPipe : public NamStream { protected: int front_; // file descriptor of the pipe FILE *back_; // temporary backup file off_t back_len_; // file size of the backup file char *pipename_; // the pipe name // double linked list of all NamStreamPipe instances NamStreamPipe *prev_; NamStreamPipe *next_; static NamStreamPipe *head_; static int instances_; // number of NamStreamPipe instances // timer to check pipe input periodically static Tcl_TimerToken timer_; static void timer_handler(ClientData data); static int read_pipe(); void insure_backing(off_t lim); public: NamStreamPipe(const char *fn); ~NamStreamPipe(); virtual int seekable() { return 0; } virtual char* gets(char *buf, int len); virtual char get_char(); virtual off_t seek(off_t offset, int whence); virtual off_t tell(); virtual int close(); virtual int eof(); virtual int read(char *buf, int size); /* * The Tcl command to open a pipe stream is: * set stream [new NamStream $tracefile] * that is, the instance construction command. * Since this command can be executed several times on the same * pipe, we need to make sure not to create duplicate instance. */ static NamStreamPipe *open_pipe(const char *fn); }; #endif /* nam_stream_h */ nam-1.15/netgraph.cc0000664000076400007660000002636207111030450013213 0ustar tomhnsnam/* * Copyright (c) 1997 University of Southern California. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the Information Sciences * Institute of the University of Southern California. * 4. Neither the name of the University nor of the Institute may be used * to endorse or promote products derived from this software without * specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * @(#) $Header: /cvsroot/nsnam/nam-1/netgraph.cc,v 1.12 2000/05/18 18:06:32 klan Exp $ (LBL) */ #include #include #include #include "config.h" #include "graphview.h" #include "netgraph.h" #include "paint.h" #include "sincos.h" #include "state.h" #include "bbox.h" #include extern int lineno; //static int next_pat; /*XXX */ class NetworkGraphClass : public TclClass { public: NetworkGraphClass() : TclClass("NetworkGraph") {} TclObject* create(int /*argc*/, const char*const* /*argv*/) { return (new NetGraph); } } networkgraph_class; class EnergyNetworkGraphClass : public TclClass { public: EnergyNetworkGraphClass() : TclClass("EnergyNetworkGraph") {} TclObject* create(int /*argc*/, const char*const* /*argv*/) { return (new EnergyNetGraph); } } energynetworkgraph_class; class LinkNetworkGraphClass : public TclClass { public: LinkNetworkGraphClass() : TclClass("LinkNetworkGraph") {} TclObject* create(int /*argc*/, const char*const* /*argv*/) { return (new LinkNetGraph); } } linknetworkgraph_class; class FeatureNetworkGraphClass : public TclClass { public: FeatureNetworkGraphClass() : TclClass("FeatureNetworkGraph") {} TclObject* create(int /*argc*/, const char*const* /*argv*/) { return (new FeatureNetGraph); } } featurenetworkgraph_class; NetGraph::NetGraph() : views_(NULL), minx_(0), maxx_(0), miny_(0.0), maxy_(0.0), time_(0.0), tix_(-1) { int i; for (i = 0; i < MAX_GRAPH; i++) graphdata_[i]=0.0; Paint *paint = Paint::instance(); int p = paint->thin(); ncolors_ = 8; paint_ = new int[ncolors_]; for (i = 0; i < ncolors_; ++i) paint_[i] = p; paint_[1]=paint->lookup("red",1); } EnergyNetGraph::EnergyNetGraph() : NetGraph() { } LinkNetGraph::LinkNetGraph() : NetGraph(), src_(-1), dst_(-1) { } NetGraph::~NetGraph() { } EnergyNetGraph::~EnergyNetGraph() { } LinkNetGraph::~LinkNetGraph() { } void NetGraph::update(double /*now*/) { } void NetGraph::update(double /*now*/, Animation* /*a*/) { } /* Reset all animations and queues to time 'now'. */ void NetGraph::reset(double /*now*/) { } void NetGraph::render(GraphView* view) { int i; if (miny_!=maxy_) { for(i=0;iline(i, 0, i, scaleddata_[i], paint_[0]); } //draw the current time line view->line(tix_, 0, tix_, maxy_, paint_[1]); } else { view->string((double)minx_, 0.5, 0.5, "No such events found in tracefile.", ANCHOR_WEST); } } void NetGraph::BoundingBox(BBox& bb) { int i; minx_=int(bb.xmin); maxx_=int(bb.xmax); int newtix=int(time_*(maxx_-minx_)/(maxtime_-mintime_)); if (newtix!=tix_) { tix_=newtix; } for(i=0;imaxy_) maxy_=scaleddata_[ix]; } if (miny_!=maxy_) { bb.ymin=miny_; bb.ymax=maxy_; } else { bb.ymin=0.0; bb.ymax=1.0; } } /* Trace event handler. */ void NetGraph::handle(const TraceEvent& e, double /*now*/, int /*direction*/) { switch (e.tt) { case 'v': /* 'variable' -- just execute it as a tcl command */ break; case 'h': printf("hop\n"); break; case 'a': printf("agent\n"); break; case 'f': printf("feature\n"); break; case 'r': printf("receive\n"); break; case '+': printf("enqueue\n"); break; case '-': printf("dequeue\n"); break; case 'l': printf("link\n"); break; case 'n': printf("node\n"); break; case 'R': printf("Route\n"); break; case 'd': printf("drop\n"); break; } } /* Trace event handler. */ void EnergyNetGraph::handle(const TraceEvent& e, double /*now*/, int /*direction*/) { switch (e.tt) { case 'g': int timeix = int(((e.time-mintime_)*MAX_GRAPH)/(maxtime_-mintime_)); for (int i=timeix; i< MAX_GRAPH ; i++) graphdata_[i]+=1; if (graphdata_[timeix]>maxy_) maxy_=graphdata_[timeix]; break; } } /* Trace event handler. */ void LinkNetGraph::handle(const TraceEvent& e, double /*now*/, int /*direction*/) { switch (e.tt) { case 'h': if (gtype_==GR_BW) { if ((e.pe.src==src_) && (e.pe.dst==dst_)) { int timeix = int(((e.time-mintime_)*MAX_GRAPH)/(maxtime_-mintime_)); graphdata_[timeix]+=e.pe.pkt.size; if (graphdata_[timeix]>maxy_) maxy_=graphdata_[timeix]; } } break; case 'd': fflush(stdout); if (gtype_==GR_LOSS) { if ((e.pe.src==src_) && (e.pe.dst==dst_)) { fflush(stdout); int timeix = int(((e.time-mintime_)*MAX_GRAPH)/(maxtime_-mintime_)); graphdata_[timeix]+=1; if (graphdata_[timeix]>maxy_) maxy_=graphdata_[timeix]; } } break; } } int NetGraph::command(int argc, const char *const *argv) { Tcl& tcl = Tcl::instance(); if (argc == 3) { if (strcmp(argv[1], "view") == 0) { /* * view * Create the window for the network layout/topology. */ GraphView *v = new GraphView(argv[2], this); v->next_ = views_; views_ = v; return (TCL_OK); } if (strcmp(argv[1], "settime") == 0) { if (argc == 3) { time_=atof(argv[2]); GraphView *view = views_; int newtix=int(time_*(maxx_-minx_)/(maxtime_-mintime_)); if (newtix!=tix_) { while(view!=NULL) { view->draw(); view=view->next_; } tix_=newtix; } return (TCL_OK); } else { tcl.resultf("\"%s\": arg mismatch", argv[0]); return (TCL_ERROR); } } } if (argc == 4 && strcmp(argv[1], "timerange") == 0) { mintime_=atof(argv[2]); maxtime_=atof(argv[3]); return (TCL_OK); } /* If no NetModel commands matched, try the Object commands. */ return (TclObject::command(argc, argv)); } int EnergyNetGraph::command(int argc, const char *const *argv) { return (NetGraph::command(argc, argv)); } int LinkNetGraph::command(int argc, const char *const *argv) { //Tcl& tcl = Tcl::instance(); if (argc == 4) { // printf("command: %s %s %s\n", argv[1],argv[2],argv[3]); if (strcmp(argv[1], "bw") == 0) { src_=atoi(argv[2]); dst_=atoi(argv[3]); gtype_=GR_BW; return (TCL_OK); } if (strcmp(argv[1], "loss") == 0) { src_=atoi(argv[2]); dst_=atoi(argv[3]); gtype_=GR_LOSS; return (TCL_OK); } } /* If no NetModel commands matched, try the Object commands. */ return (NetGraph::command(argc, argv)); } /************/ FeatureNetGraph::FeatureNetGraph() : NetGraph(), src_(-1), aname_(0), vname_(0), lastix_(0) { } FeatureNetGraph::~FeatureNetGraph() { } int FeatureNetGraph::command(int argc, const char *const *argv) { if (argc == 5) { if (strcmp(argv[1], "feature") == 0) { src_ = atoi(argv[2]); aname_ = new char[strlen(argv[3]) + 1]; strcpy(aname_, argv[3]); vname_ = new char[strlen(argv[4]) + 1]; strcpy(vname_, argv[4]); return(TCL_OK); } } return (NetGraph::command(argc, argv)); } void FeatureNetGraph::handle(const TraceEvent& e, double /*now*/, int /*direction*/) { switch (e.tt) { case 'f': // print the source, the agent, name, value // print records we care about if (src_ == e.fe.src && (strcmp(aname_, e.fe.feature.agent) == 0) && (strcmp(vname_, e.fe.feature.name) == 0)) { /* printf("Feature %d %s %s %s\n", e.fe.src, e.fe.feature.agent, e.fe.feature.name, e.fe.feature.value); */ /* start out doing what is done in LinkNetGraph::handle */ int timeix = int(((e.time-mintime_)*MAX_GRAPH)/(maxtime_-mintime_)); graphdata_[timeix]+=atof(e.fe.feature.value); // printf("%d %g\n", timeix, graphdata_[timeix]); if (graphdata_[timeix]>maxy_) maxy_=graphdata_[timeix]; /* fill in any points we may have missed */ int i; double lastval = graphdata_[lastix_]; for (i = lastix_ + 1; i < timeix; i++) { graphdata_[i] = lastval; } lastix_ = timeix; } break; default: break; } } /* following is a hack to get around the aliasing effects referred to * in the comments in NetGraph::BoundingBox. It works for those data * sets I've tested it with, but it could produce undesired results * in some cases. */ void FeatureNetGraph::BoundingBox(BBox& bb) { int i; minx_=int(bb.xmin); maxx_=int(bb.xmax); int newtix=int(time_*(maxx_-minx_)/(maxtime_-mintime_)); if (newtix!=tix_) { tix_=newtix; } for(i=0;imaxy_) maxy_=scaleddata_[ix]; } if (miny_!=maxy_) { bb.ymin=miny_; bb.ymax=maxy_; } else { bb.ymin=0.0; bb.ymax=1.0; } } nam-1.15/netgraph.h0000664000076400007660000000725210506665277013101 0ustar tomhnsnam/* * Copyright (c) 1997 University of Southern California. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the Information Sciences * Institute of the University of Southern California. * 4. Neither the name of the University nor of the Institute may be used * to endorse or promote products derived from this software without * specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * * @(#) $Header: /cvsroot/nsnam/nam-1/netgraph.h,v 1.5 2006/09/28 06:25:03 tom_henderson Exp $ (LBL) */ #ifndef nam_netgraph_h #define nam_netgraph_h class Edge; class Node; class Route; class Agent; struct TraceEvent; class Queue; class Animation; class GraphView; class Paint; class Packet; struct BBox; #include "trace.h" #define MAX_GRAPH 2048 #define GR_BW 1 #define GR_LOSS 2 class NetGraph : public TraceHandler { public: NetGraph(); virtual ~NetGraph(); /* TraceHandler hooks */ void update(double now, Animation* a); void update(double); void reset(double); virtual void handle(const TraceEvent&, double now, int direction); virtual int command(int argc, const char *const *argv); virtual void BoundingBox(BBox&); virtual void render(GraphView* view); protected: GraphView *views_; float graphdata_[MAX_GRAPH]; float scaleddata_[MAX_GRAPH]; int minx_, maxx_; float miny_, maxy_; float mintime_, maxtime_; double time_; int tix_; //time index - used to avoid having to redraw the graph //except when it makes a difference int ncolors_; int *paint_; }; class EnergyNetGraph : public NetGraph { public: EnergyNetGraph(); ~EnergyNetGraph(); virtual int command(int argc, const char *const *argv); void handle(const TraceEvent&, double now, int direction); }; class LinkNetGraph : public NetGraph { public: LinkNetGraph(); ~LinkNetGraph(); virtual int command(int argc, const char *const *argv); void handle(const TraceEvent&, double now, int direction); protected: int src_, dst_, gtype_; }; class FeatureNetGraph : public NetGraph { public: FeatureNetGraph(); ~FeatureNetGraph(); virtual int command(int argc, const char *const *argv); void handle(const TraceEvent&, double now, int direction); void BoundingBox(BBox&); protected: int src_; char *aname_; char *vname_; int lastix_; }; #endif nam-1.15/netmodel.cc0000664000076400007660000025522410527720555013234 0ustar tomhnsnam/* * Copyright (c) 1991,1993 Regents of the University of California. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the Computer Systems * Engineering Group at Lawrence Berkeley Laboratory. * 4. Neither the name of the University nor of the Laboratory may be used * to endorse or promote products derived from this software without * specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * @(#) $Header: /cvsroot/nsnam/nam-1/netmodel.cc,v 1.113 2006/11/19 00:12:29 tom_henderson Exp $ (LBL) */ #include #ifdef WIN32 #include #endif #include #include #include #include #include #include "config.h" #include "netview.h" #include "psview.h" #include "testview.h" #include "animation.h" #include "group.h" #include "tag.h" #include "queue.h" #include "drop.h" #include "packet.h" #include "edge.h" #include "lan.h" #include "node.h" #include "agent.h" #include "feature.h" #include "route.h" #include "netmodel.h" #include "monitor.h" #include "trace.h" #include "paint.h" #include "sincos.h" #include "state.h" #include "editview.h" #include "address.h" #include "animator.h" #include extern int lineno; // not used //static int next_pat; class NetworkModelClass : public TclClass { public: NetworkModelClass() : TclClass("NetworkModel") {} TclObject* create(int argc, const char*const* argv) { if (argc < 5) return 0; return (new NetModel(argv[4])); } } networkmodel_class; //---------------------------------------------------------------------- //---------------------------------------------------------------------- NetModel::NetModel(const char *animator) : TraceHandler(animator), drawables_(0), animations_(0), queues_(0), views_(0), nodes_(0), lans_(0), node_sizefac_(NODE_EDGE_RATIO), mon_count_(0), monitors_(NULL), wireless_(0), resetf_(0), selectedSrc_(-1), selectedDst_(-1), selectedFid_(-1), hideSrc_(-1), hideDst_(-1), hideFid_(-1), colorSrc_(-1), colorDst_(-1), colorFid_(-1), showData_(1), showRouting_(1), showMac_(1), selectedColor_(-1), nGroup_(0), nTag_(0), parsetable_(&traceevent_) { int i; for (i = 0; i < EDGE_HASH_SIZE; ++i) { hashtab_[i] = 0; } for (i = 0; i < PTYPELEN; ++i) { selectedTraffic_[i] = '\0' ; colorTraffic_[i] = '\0' ; hideTraffic_[i] = '\0' ; } // Default node size is 10.0 so a default packet will be 25% of that (2.5) // This value is modified whenever a node is added. It will be based on // the running average of the size of the last 5 nodes. Look at // NetModel::addNode(const TraceEvent &e) for more details packet_size_ = 2.5; /*XXX*/ nymin_ = 1e6; nymax_ = -1e6; Paint *paint = Paint::instance(); int p = paint->thin(); // Initially 256 colors. Can be extended later. // See handling of otcl binding "color" nclass_ = 256; paintMask_ = 0xff; paint_ = new int[nclass_]; oldpaint_ = new int[nclass_]; for (i = 0; i < nclass_; ++i) { paint_[i] = p; oldpaint_[i] = p; } addrHash_ = new Tcl_HashTable; Tcl_InitHashTable(addrHash_, TCL_ONE_WORD_KEYS); grpHash_ = new Tcl_HashTable; Tcl_InitHashTable(grpHash_, TCL_ONE_WORD_KEYS); tagHash_ = new Tcl_HashTable; Tcl_InitHashTable(tagHash_, TCL_STRING_KEYS); objnameHash_ = new Tcl_HashTable; Tcl_InitHashTable(objnameHash_, TCL_STRING_KEYS); registerObjName("ALL", ClassAllID); registerObjName("ANIMATION", ClassAnimationID); registerObjName("NODE", ClassNodeID); registerObjName("PACKET", ClassPacketID); registerObjName("EDGE", ClassEdgeID); registerObjName("QUEUEITEM", ClassQueueItemID); registerObjName("LAN", ClassLanID); registerObjName("TAG", ClassTagID); registerObjName("AGENT", ClassAgentID); bind("bcast_duration_", &bcast_duration_); bind("bcast_radius_", &bcast_radius_); } NetModel::~NetModel() { // We should delete everything here, if we want deletable netmodel... delete paint_; Animation *a, *n; for (a = animations_; a != 0; a = n) { n = a->next(); delete a; } for (a = drawables_; a != 0; a = n) { n = a->next(); delete a; } Tcl_DeleteHashTable(grpHash_); delete grpHash_; Tcl_DeleteHashTable(tagHash_); delete tagHash_; Tcl_DeleteHashTable(objnameHash_); delete objnameHash_; } void NetModel::update(double now) { Animation *a, *n; for (a = animations_; a != 0; a = n) { n = a->next(); a->update(now); } /* * Draw all animations and drawables on display to reflect * current time. */ now_ = now; for (View* p = views_; p != 0; p = p->next_) { // Calls View::draw() which calls NetView::render() // which calls NetModel::render(View*) p->draw(); } } void NetModel::update(double now, Animation* a) { a->update(now); for (View* p = views_; p != 0; p = p->next_) a->draw(p, now); } //---------------------------------------------------------------------- // void // NetModel::reset(double now) // - Reset all animations and queues to time 'now'. //---------------------------------------------------------------------- void NetModel::reset(double now) { Animation* a; for (a = animations_; a != 0; a = a->next()) a->reset(now); for (a = drawables_; a != 0; a = a->next()) a->reset(now); for (Queue* q = queues_; q != 0; q = q->next_) q->reset(now); } //---------------------------------------------------------------------- // void // NetModel::render(View * view) // - Draw this NetModel's drawables, animations, and monitors. // (tags, nodes, edges, packets, queues, etc.) //---------------------------------------------------------------------- void NetModel::render(View* view) { Animation *a; Monitor *m; for (a = drawables_; a != 0; a = a->next()) a->draw(view, now_); for (a = animations_; a != 0; a = a->next()) a->draw(view, now_); for ( m = monitors_; m != NULL; m = m->next()) m->draw_monitor(view, nymin_, nymax_); } void NetModel::render(PSView* view) { Animation *a; for (a = drawables_; a != 0; a = a->next()) a->draw(view, now_); for (a = animations_; a != 0; a = a->next()) a->draw(view, now_); } void NetModel::render(TestView* view) { Animation *a; for (a = drawables_; a != 0; a = a->next()) a->draw(view, now_); for (a = animations_; a != 0; a = a->next()) a->draw(view, now_); } //---------------------------------------------------------------------- // NetModel::EdgeHashNode * // NetModel::lookupEdgeHashNode(int src, int dst) const // - Return a pointer to the edge between 'src' and 'dst'. //---------------------------------------------------------------------- NetModel::EdgeHashNode * NetModel::lookupEdgeHashNode(int source, int destination) const { EdgeHashNode* h; for (h = hashtab_[ehash(source, destination)]; h != 0; h = h->next) if (h->src == source && h->dst == destination) break; return (h); } int NetModel::addAddress(int id, int addr) const { int newEntry = 1; Tcl_HashEntry *he = Tcl_CreateHashEntry(addrHash_, (const char *)addr, &newEntry); if (he == NULL) return -1; if (newEntry) { Tcl_SetHashValue(he, (ClientData)id); } return 0; } int NetModel::addr2id(int addr) const { Tcl_HashEntry *he = Tcl_FindHashEntry(addrHash_, (const char *)addr); if (he == NULL) return -1; return *Tcl_GetHashValue(he); } //---------------------------------------------------------------------- // Adds an edge to a hash table? //---------------------------------------------------------------------- void NetModel::enterEdge(Edge* e) { int src = e->src(); int dst = e->dst(); EdgeHashNode *h = lookupEdgeHashNode(src, dst); if (h != 0) { /* XXX */ fprintf(stderr, "nam: duplicate edge (%d,%d)\n", src, dst); //exit(1); return; } h = new EdgeHashNode; h->src = src; h->dst = dst; h->queue = 0; h->edge = e; int k = ehash(src, dst); h->next = hashtab_[k]; hashtab_[k] = h; } //---------------------------------------------------------------------- // void // NetModel::removeEdge(Edge* e) // - Remove an edge from the network model and delete it //---------------------------------------------------------------------- void NetModel::removeEdge(Edge* e) { int k; int src = e->src(); int dst = e->dst(); EdgeHashNode * h = lookupEdgeHashNode(src, dst); EdgeHashNode * f, * g; if (h == 0) { fprintf(stderr, "nam: trying to delete nonesisting edge (%d,%d)\n", src, dst); exit(1); } //XXX do we need to process queue ? leave it to the future 10/01/98 k = ehash(src, dst); for (f = hashtab_[k]; f != 0; f = f->next) { if (h->src == f->src && h->dst == f->dst) { if (f == hashtab_[k]) { hashtab_[k] = f->next; break; } else { g->next = f->next; break; } } g = f; } delete h; } //---------------------------------------------------------------------- // void // NetModel::BoundingBox(BBox& bb) { // XXX Make this cheaper (i.e. cache it) //---------------------------------------------------------------------- void NetModel::BoundingBox(BBox& bb) { /* ANSI C limits, from float.h */ bb.xmin = bb.ymin = FLT_MAX; bb.xmax = bb.ymax = -FLT_MAX; for (Animation* a = drawables_; a != 0; a = a->next()) a->merge(bb); } /* Animation* NetModel::inside(double now, float px, float py) const { for (Animation* a = animations_; a != 0; a = a->next()) if (a->inside(now, px, py)) return (a); for (Animation* d = drawables_; d != 0; d = d->next()) if (d->inside(now, px, py)) return (d); return (0); } */ // Used exclusively for start_info() in nam.tcl. It ignores all tag objects // and therefore should *not* be used for editing. Animation* NetModel::inside(float px, float py) const { for (Animation* a = animations_; a != 0; a = a->next()) { if (a->type() == BPACKET) { BPacket* b = (BPacket* ) a ; if ((b->inside(px, py)) && (a->classid() != ClassTagID)) return (a); } else { if ((a->inside(px, py)) && (a->classid() != ClassTagID)) return (a); } } for (Animation* d = drawables_; d != 0; d = d->next()) { if ((d->inside(px, py) && (d->classid() != ClassTagID))) return (d); } return (0); } int NetModel::add_monitor(Animation *a) { Monitor *m = new Monitor(mon_count_, a, node_size_); m->next(monitors_); monitors_=m; return mon_count_++; } int NetModel::monitor(double now, int monitor, char *result, int len) { /*XXX should get rid of this search*/ for(Monitor *m=monitors_; m!=NULL; m=m->next()) { if (m->monitor_number()==monitor) { m->update(now, result, len); if (strlen(result)==0) delete_monitor(m); return 0; } } result[0]='\0'; return -1; } //---------------------------------------------------------------------- // void NetModel::check_monitors(Animation *a) // - A new animation just got created. Check to see if we should // already have a monitor on it. //---------------------------------------------------------------------- void NetModel::check_monitors(Animation *a) { MonState * ms; Monitor * m; // Returns a "newed" MonState ms = a->monitor_state(); if (ms == NULL) { return; } for(m = monitors_; m != NULL; m = m->next()) { if ((m->mon_state_ != NULL) && (m->mon_state_->type = ms->type)) { switch (ms->type) { case MON_PACKET: if (m->mon_state_->pkt.id == ms->pkt.id) { m->anim(a); delete ms; return; } break; case MON_ROUTE: if ((m->mon_state_->route.src == ms->route.src)&& (m->mon_state_->route.group == ms->route.group)) { m->anim(a); delete ms; return; } break; } } } // What happens to ms after the end of this function? Maybe the memory leak? // fprintf(stderr, "Reached outside of check_monitors\n"); } void NetModel::delete_monitor(int monitor) { /*this version of delete_monitor is called from the GUI*/ /*given a monitor, remove it from the model's monitor list*/ Monitor *tm1, *tm2; if (monitors_==NULL) return; tm1=monitors_; tm2=monitors_; while ((tm1!=NULL)&&(tm1->monitor_number()!=monitor)) { tm2=tm1; tm1=tm1->next(); } if (tm1!=NULL) { tm2->next(tm1->next()); if (tm1==monitors_) monitors_=tm1->next(); if (tm1->anim()!=NULL) tm1->anim()->remove_monitor(); delete tm1; } } void NetModel::delete_monitor(Monitor *m) { /*given a monitor, remove it from a node's agent list*/ Monitor *tm1, *tm2; if (monitors_==NULL) return; tm1=monitors_; tm2=monitors_; while ((tm1!=m)&&(tm1!=NULL)) { tm2=tm1; tm1=tm1->next(); } if (tm1!=NULL) { tm2->next(tm1->next()); if (tm1==monitors_) monitors_=tm1->next(); tm1->anim()->remove_monitor(); delete tm1; } } void NetModel::delete_monitor(Animation *a) { /*given a monitor, remove it from a node's agent list*/ /*this version gets called when an animation deletes itself*/ /*XXX animations sometimes get deleted when the packet changed link*/ Monitor *tm1, *tm2; if (monitors_==NULL) return; tm1=monitors_; tm2=monitors_; while ((tm1!=NULL)&&(tm1->anim()!=a)) { tm2=tm1; tm1=tm1->next(); } if (tm1!=NULL) { tm2->next(tm1->next()); if (tm1==monitors_) monitors_=tm1->next(); delete tm1; } } void NetModel::saveState(double tim) { State* state = State::instance(); StateInfo min; min.time = 10e6; min.offset = 0; Animation *a, *n; StateInfo si; /* * Update the animation list first to remove any unnecessary * objects in the list. */ for (a = animations_; a != 0; a = n) { n = a->next(); a->update(tim); } for (a = animations_; a != 0; a = n) { n = a->next(); si = a->stateInfo(); if (si.time < min.time) min = si; } if (min.offset) state->set(tim, min); } //--------------------------------------------------------------------- // void // NetModel::handle(const TraceEvent& e, double now, int direction) // - Trace event handler. //--------------------------------------------------------------------- void NetModel::handle(const TraceEvent& e, double now, int direction) { QueueItem *q; EdgeHashNode *ehn, *ehnrev; Edge* ep; Node *n; //Packet *p; Route *r; Agent *a; Feature *f; float x, y; int pno; double txtime; bool do_relayout = false; if (e.time > State::instance()->next()) saveState(e.time); switch (e.tt) { case 'T': // Dummy event no-op used for realtime time synchronization break; case 'v': { // 'variable' -- just execute it as a tcl command if (nam_ == 0) { fprintf(stderr, "Couldn't evaluate %s without animator\n", e.image); break; } const char *p = e.image + e.ve.str; char *q = new char[strlen(nam_->name()) + strlen(p) + 2]; sprintf(q, "%s %s", nam_->name(), p); Tcl::instance().eval(q); delete []q; break; } case 'h': // traffic filter if (wireless_) { if (strcmp(e.pe.pkt.wtype,"AGT") == 0 ) return ; if (!showData_) { // filter out data packet if ((strcmp(e.pe.pkt.wtype,"RTR") == 0 ) || (strcmp(e.pe.pkt.wtype,"MAC") == 0 )) { if (((strcmp(e.pe.pkt.type,"cbr") == 0) || (strcmp(e.pe.pkt.type,"tcp") == 0) || (strcmp(e.pe.pkt.type,"ack") == 0))) return ; } } if (!showRouting_){ // filter out routing packet if (strcmp(e.pe.pkt.wtype,"RTR") == 0 ) { if (!((strcmp(e.pe.pkt.type,"cbr") == 0)|| (strcmp(e.pe.pkt.type,"tcp") == 0) || (strcmp(e.pe.pkt.type,"ack") == 0))) return ; } } if (!showMac_){ // filter out routing packet if (strcmp(e.pe.pkt.wtype,"MAC") == 0 ) { if (!((strcmp(e.pe.pkt.type,"cbr") == 0)|| (strcmp(e.pe.pkt.type,"tcp") == 0) || (strcmp(e.pe.pkt.type,"ack") == 0))) return ; } } } // show only packet with same chracteristics as selected packet if (selectedSrc_ != -1) { //filter being trigger if (e.pe.pkt.esrc != selectedSrc_ ) return ; } if (selectedDst_ != -1) { if (e.pe.pkt.edst != selectedDst_ ) return ; } if (selectedFid_ != -1) { if (atoi(e.pe.pkt.convid) != selectedFid_ ) return ; } if (selectedTraffic_[0] != '\0') { if (strcmp(e.pe.pkt.type,selectedTraffic_) != 0 ) return ; } // hide packet with same chracteristics as selected packet if (hideSrc_ != -1) { // filter being trigger if (e.pe.pkt.esrc == hideSrc_ ) return ; } if (hideDst_ != -1) { if (e.pe.pkt.edst == hideDst_ ) return ; } if (hideFid_ != -1) { if (atoi(e.pe.pkt.convid) == hideFid_ ) return ; } if (hideTraffic_[0] != '\0') { if (strcmp(e.pe.pkt.type,hideTraffic_) == 0 ) return ; } //change the packet color on the fly if (selectedColor_ < 0 ) { Paint *paint = Paint::instance(); selectedColor_ = paint->lookup("black",1); } if (colorSrc_ != -1) { if (e.pe.pkt.esrc == colorSrc_ ) paint_[atoi(e.pe.pkt.convid)] = selectedColor_ ; } if (colorDst_ != -1) { if (e.pe.pkt.edst == colorDst_ ) paint_[atoi(e.pe.pkt.convid)] = selectedColor_ ; } if (colorFid_ != -1) { if (atoi(e.pe.pkt.convid) == colorFid_ ) paint_[atoi(e.pe.pkt.convid)] = selectedColor_ ; } if (colorTraffic_[0] != '\0') { if (strcmp(e.pe.pkt.type,colorTraffic_) == 0 ) paint_[atoi(e.pe.pkt.convid)] = selectedColor_ ; } if (resetf_) paint_[atoi(e.pe.pkt.convid)] = oldpaint_[atoi(e.pe.pkt.convid)] ; if (direction==BACKWARDS) break; if (e.pe.dst == -1) { //broadcasting //a quick hack to give fixed transmission + delay time for //broadcasting packet if (e.time + BPACKET_TXT_TIME < now) break ; n = lookupNode(e.pe.src); BPacket * p = new BPacket(n->x(), n->y(),e.pe.pkt, e.time,e.offset,direction, e.pe.pkt.wBcastDuration ? e.pe.pkt.wBcastDuration : bcast_duration_, e.pe.pkt.wBcastRadius ? e.pe.pkt.wBcastRadius : bcast_radius_); p->insert(&animations_); p->paint(paint_[e.pe.pkt.attr & paintMask_]); check_monitors(p); break; } ehn = lookupEdgeHashNode(e.pe.src, e.pe.dst); if (ehn == 0 || (ep = ehn->edge) == 0) return; /* * If the current packet will arrive at its destination * at a later time, insert the arrival into the queue * of animations and set its paint id (id for X graphics * context. */ txtime = ep->txtime(e.pe.pkt.size); if (e.time + txtime + ep->delay() >= now) { /* XXX */ Packet *p = new Packet(ep, e.pe.pkt, e.time, txtime, e.offset); p->insert(&animations_); p->paint(paint_[e.pe.pkt.attr & paintMask_]); check_monitors(p); // fprintf(stderr, "packet %d sent from %d towards %d\n", // e.pe.pkt.id, e.pe.src, e.pe.dst); } break; case 'a': n = lookupNode(e.ae.src); if (n == 0) return; a = n->find_agent((char *) e.ae.agent.name); if ((direction==FORWARDS)&&(e.ae.agent.expired==0)) { if (a == NULL) { // will only create an agent if there isn't one already // there with the same name a = new BoxAgent(e.ae.agent.name, n->size()); a->Animation::insert(&animations_); n->add_agent(a); placeAgent(a, n); } } else { if (a != NULL) { n->delete_agent(a); delete a; } } break; case 'f': // We don't need any redraw for this, because it's always // displayed in monitors in a separate pane n = lookupNode(e.fe.src); if (n == 0) return; a = n->find_agent((char *)e.fe.feature.agent); if (a == 0) return; f = a->find_feature((char *)e.fe.feature.name); if (f == 0) { switch (e.fe.feature.type) { case 'v': f = new VariableFeature(a, e.fe.feature.name); break; case 'l': f = new ListFeature(a, e.fe.feature.name); break; case 's': case 'u': case 'd': f = new TimerFeature(a, e.fe.feature.name); break; } a->add_feature(f); } if (((direction==FORWARDS) && (e.fe.feature.expired == 0)) || ((direction==BACKWARDS) && (strlen(e.fe.feature.oldvalue) > 0))) { char *value; double time_set; if (direction==FORWARDS) { value=(char *)e.fe.feature.value; time_set=now; } else { value=(char *)e.fe.feature.oldvalue; /*XXX need an extra value here*/ time_set=0.0; } switch (e.fe.feature.type) { case 'v': case 'l': f->set_feature(value); break; case 's': f->set_feature(atof(value), TIMER_STOPPED, time_set); break; case 'u': f->set_feature(atof(value), TIMER_UP, time_set); break; case 'd': f->set_feature(atof(value), TIMER_DOWN, time_set); break; } } else { a->delete_feature(f); delete f; } break; case 'r': if (direction == FORWARDS) break; if (e.pe.dst == -1) { //broadcasting //a quick hack to give fixed transmission + delay time for //broadcasting packet if (e.time - BPACKET_TXT_TIME > now) break ; n = lookupNode(e.pe.src); BPacket * p = new BPacket(n->x(), n->y(),e.pe.pkt, e.time,e.offset,direction, e.pe.pkt.wBcastDuration ? e.pe.pkt.wBcastDuration : bcast_duration_, e.pe.pkt.wBcastRadius ? e.pe.pkt.wBcastRadius : bcast_radius_); p->insert(&animations_); p->paint(paint_[e.pe.pkt.attr & paintMask_]); check_monitors(p); break; } ehn = lookupEdgeHashNode(e.pe.src, e.pe.dst); if (ehn == 0 || (ep = ehn->edge) == 0) return; /* * If the current packet will arrive at its destination * at a later time, insert the arrival into the queue * of animations and set its paint id (id for X graphics * context. */ txtime = ep->txtime(e.pe.pkt.size); if (e.time - (txtime + ep->delay()) <= now) { /* XXX */ Packet *p = new Packet(ep, e.pe.pkt, e.time-(ep->delay() + txtime), txtime, e.offset); p->insert(&animations_); p->paint(paint_[e.pe.pkt.attr & paintMask_]); check_monitors(p); } break; case '+': ehn = lookupEdgeHashNode(e.pe.src, e.pe.dst); if (direction == FORWARDS) { if (ehn != 0 && ehn->queue != 0) { QueueItem *qi = new QueueItem(e.pe.pkt, e.time, e.offset); qi->paint(paint_[e.pe.pkt.attr & paintMask_]); ehn->queue->enque(qi,QUEUE_TAIL); qi->insert(&animations_); check_monitors(qi); } } else { if (ehn != 0 && ehn->queue != 0) { q = ehn->queue->remove(e.pe.pkt); delete q; } } break; case '-': ehn = lookupEdgeHashNode(e.pe.src, e.pe.dst); if (direction == FORWARDS) { if (ehn != 0 && ehn->queue != 0) { q = ehn->queue->remove(e.pe.pkt); delete q; } } else { if (ehn != 0 && ehn->queue != 0) { QueueItem *qi = new QueueItem(e.pe.pkt, e.time, e.offset); qi->paint(paint_[e.pe.pkt.attr & paintMask_]); ehn->queue->enque(qi,QUEUE_HEAD); qi->insert(&animations_); check_monitors(qi); } } break; case 'E': { // Nothing for now Group *grp = lookupGroup(e.pe.dst); if (grp == NULL) { fprintf(stderr, "Packet destination group %d not found\n", e.pe.dst); return; } int *mbr = new int[grp->size()]; grp->get_members(mbr); for (int i = 0; i < grp->size(); i++) { QueueItem *qi = new QueueItem(e.pe.pkt, e.time, e.offset); qi->paint(paint_[e.pe.pkt.attr & paintMask_]); n = lookupNode(mbr[i]); if (n == 0) { fprintf(stderr, "Group member %d not found\n", mbr[i]); return; } if (direction == FORWARDS) { n->queue()->enque(qi, QUEUE_TAIL); qi->insert(&animations_); check_monitors(qi); } else { qi = n->queue()->remove(e.pe.pkt); delete qi; } } delete mbr; break; } case 'D': { n = lookupNode(e.pe.dst); if (n == NULL) { fprintf(stderr, "Bad node id %d for session deque event\n", e.pe.dst); return; } if (direction == FORWARDS) { q = n->queue()->remove(e.pe.pkt); delete q; } else { QueueItem *qi = new QueueItem(e.pe.pkt, e.time, e.offset); qi->paint(paint_[e.pe.pkt.attr & paintMask_]); n->queue()->enque(qi, QUEUE_HEAD); qi->insert(&animations_); check_monitors(qi); } break; } case 'P': // session drop // Get packet to drop. if (direction == FORWARDS) { // fprintf(stderr, "drop on %d -> %d\n", e.pe.src, e.pe.dst); n = lookupNode(e.pe.dst); if (n == 0) return; q = 0; if (n->queue() != 0) { // Remove packet from session queue q = n->queue()->remove(e.pe.pkt); if (q == 0) { // No such packet in queue??? fprintf(stderr, "No packet drop %id in queue\n", e.pe.pkt.id); return; } q->position(x,y); pno = q->paint(); delete q; } // Compute the point at which the dropped packet disappears. // Let's just make this sufficiently far below the lowest // thing on the screen. // Watch out for topologies that have all their nodes lined // up horizontally. In this case, nymin_ == nymax_ == 0. // Set the bottom to -0.028. This was chosen empirically. // The nam display was set to the maximum size and the lowest // position on the display was around -0.028. float bot; if (nymin_ - nymax_ < 0.01) bot = nymin_ - 10 * n->size() ; else bot = nymin_ - (nymax_ - nymin_); Drop *d = new Drop(x, y, bot, n->size()*0.5, /* This is a hack */ e.time, e.offset, e.pe.pkt); d->paint(pno); d->insert(&animations_); check_monitors(d); break; } else { /*direction is BACKWARDS - need to create the packet*/ //fprintf(stderr, "Packet drop backwards\n"); } case 'G': { /* Group event */ Group *grp = lookupGroup(e.ge.src); if (grp == NULL) { grp = new Group(e.ge.grp.name, e.ge.src); add_group(grp); } if (e.ge.grp.flag == GROUP_EVENT_JOIN) { grp->join(e.ge.grp.mbr); // XXX // Hard-coded queue angle for session queues. :( // Create session queue here because they are not like // traditional queues which are created when nam // started. Group member may dynamically join/leave, // so may session queues. We create them here because // there's a 1-1 relationship between join and creating // session queues. n = lookupNode(e.ge.grp.mbr); if (n == NULL) { fprintf(stderr, "Bad node %d for group event\n", e.ge.grp.mbr); return; } // Need more consideration on the placement of these queues Queue *q = new Queue(0.5); q->next_ = queues_; queues_ = q; n->add_sess_queue(e.ge.src, q); } else if (e.ge.grp.flag == GROUP_EVENT_LEAVE) // No deletion of session queues. grp->leave(e.ge.grp.mbr); break; } case 'l': /*link event*/ // if src or dst = -1 this is a layout link (-t *) // so skip over it if (e.le.src == -1 || e.le.dst == -1) return; ehn = lookupEdgeHashNode(e.le.src, e.le.dst); if (ehn == 0) { // if edge doesn't exist try to create it dynamically ep = addEdge(e.le.src, e.le.dst, e); if (!ep) { fprintf(stderr, "Unable to create edge(%d,%d) dynamically.\n", e.le.src, e.le.dst); return; } ehn = lookupEdgeHashNode(e.le.src, e.le.dst); do_relayout= true; } ehnrev = lookupEdgeHashNode(e.le.dst, e.le.src); if (ehnrev == 0) { // if edge doesn't exist try to create it dynamically ep = addEdge(e.le.dst, e.le.src, e); if (!ep) { fprintf(stderr, "Unable to create reverse edge(%d,%d) dynamically.\n", e.le.dst, e.le.src); return; } ehnrev = lookupEdgeHashNode(e.le.dst, e.le.src); do_relayout = true; } if (do_relayout) { //relayout(); relayoutNode(lookupNode(e.le.src)); relayoutNode(lookupNode(e.le.dst)); do_relayout = false; } /*note: many link events are bidirectional events so be careful to apply them to both a link and the reverse of it*/ if (direction==FORWARDS) { // Always save the color before the last DOWN event if (strncmp(e.le.link.state, "DOWN", 4)==0) { ehn->edge->set_down("red"); ehnrev->edge->set_down("red"); } else if (strncmp(e.le.link.state, "UP", 2)==0) { /* XXX Assume an UP event always follows a DOWN event */ ehn->edge->set_up(); ehnrev->edge->set_up(); } else if (strncmp(e.le.link.state, "COLOR", 5) == 0) { ehn->edge->color((char *)e.le.link.color); ehnrev->edge->color((char *)e.le.link.color); } else if (strncmp(e.le.link.state, "DLABEL", 6) == 0) { ehn->edge->dlabel((char *)e.le.link.dlabel); ehnrev->edge->dlabel((char *)e.le.link.dlabel); } else if (strncmp(e.le.link.state, "DCOLOR", 6) == 0) { ehn->edge->dcolor((char *)e.le.link.dcolor); ehnrev->edge->dcolor((char *)e.le.link.dcolor); } else if (strncmp(e.le.link.state, "DIRECTION", 9) == 0) { ehn->edge->direction((char *)e.le.link.direction); ehnrev->edge->direction((char *)e.le.link.direction); } else if (strncmp(e.le.link.state, "DIRECTION", 9) == 0) { ehn->edge->direction((char *)e.le.link.direction); ehnrev->edge->direction((char *)e.le.link.direction); } } else { if (strncmp(e.le.link.state, "UP", 2)==0) { ehn->edge->set_down("red"); ehnrev->edge->set_down("red"); } else if (strncmp(e.le.link.state, "DOWN", 4)==0) { ehn->edge->set_up(); } else if (strncmp(e.le.link.state, "COLOR", 5) == 0) { ehn->edge->color((char *)e.le.link.oldColor); ehnrev->edge->color((char *)e.le.link.oldColor); } else if (strncmp(e.le.link.state, "DLABEL", 6) == 0) { ehn->edge->dlabel((char *)e.le.link.odlabel); ehnrev->edge->dlabel((char *)e.le.link.odlabel); } else if (strncmp(e.le.link.state, "DCOLOR", 6) == 0) { ehn->edge->dcolor((char *)e.le.link.odcolor); ehnrev->edge->dcolor((char *)e.le.link.odcolor); } else if (strncmp(e.le.link.state, "DIRECTION", 9) == 0) { ehn->edge->direction((char *)e.le.link.odirection); ehnrev->edge->direction((char *)e.le.link.odirection); } else if (strncmp(e.le.link.state, "DIRECTION", 9) == 0) { ehn->edge->direction((char *)e.le.link.odirection); ehnrev->edge->direction((char *)e.le.link.odirection); } } break; case 'n': /* node event */ // Return if node has -t * // Ths node is only used for initial layout if (e.ne.src == -1) return; n = lookupNode(e.ne.src); if (n == 0) { // if node doesn't exist try to create it dynamically n = addNode(e); if (!n) return; } if (direction==FORWARDS) { if (strncmp(e.ne.node.state, "DOWN", 4)==0) { n->set_down("gray"); } else if (strncmp(e.ne.node.state, "UP", 2)==0) { n->set_up(); } else if (strncmp(e.ne.node.state, "COLOR", 5) == 0) { // normal color can be defined by user n->color((char *)e.ne.node.color); n->lcolor((char *)e.ne.node.lcolor); } else if (strncmp(e.ne.node.state, "DLABEL", 6) == 0) { n->dlabel((char *)e.ne.node.dlabel); } else if (strncmp(e.ne.node.state, "DCOLOR", 6) == 0) { n->dcolor((char *)e.ne.node.dcolor); } else if (strncmp(e.ne.node.state, "DIRECTION", 9) == 0) { n->direction((char *)e.ne.node.direction); } } else { if (strncmp(e.ne.node.state, "UP", 4)==0) { n->set_down("gray"); } else if (strncmp(e.ne.node.state, "DOWN", 2)==0) { n->set_up(); } else if (strncmp(e.ne.node.state, "COLOR", 5) == 0) { n->color((char *)e.ne.node.oldColor); n->lcolor((char *)e.ne.node.olcolor); } else if (strncmp(e.ne.node.state, "DLABEL", 6) == 0) { n->dlabel((char *)e.ne.node.odlabel); } else if (strncmp(e.ne.node.state, "DCOLOR", 6) == 0) { n->dcolor((char *)e.ne.node.odcolor); } else if (strncmp(e.ne.node.state, "DIRECTION", 9) == 0) { n->direction((char *)e.ne.node.odirection); } } break; case 'm': /* node mark event */ NodeMark *cm; n = lookupNode(e.me.src); if (n == 0) return; cm = n->find_mark((char *) e.me.mark.name); if (direction == FORWARDS) { if (e.me.mark.expired == 0) { /* once created, a node mark cannot be changed*/ if (cm == NULL) n->add_mark((char *)e.me.mark.name, (char *)e.me.mark.color, (char *)e.me.mark.shape); } else /* expired */ n->delete_mark((char *)e.me.mark.name); } else { /* * backward: * (1) create it if expired == 1 * (2) delete it if expired == 0 */ if (e.me.mark.expired == 0) n->delete_mark((char *)e.me.mark.name); else { /* re-create the circle */ if (cm == NULL) n->add_mark((char *)e.me.mark.name, (char *)e.me.mark.color, (char *)e.me.mark.shape); } } break; case 'R': // route event if (((e.re.route.expired==0)&&(direction==FORWARDS))|| ((e.re.route.expired==1)&&(direction==BACKWARDS))) { // this is a new route n = lookupNode(e.re.src); if (n == 0) return; ehn = lookupEdgeHashNode(e.re.src, e.re.dst); if (ehn == 0) return; int oif=1; if (strncmp(e.re.route.mode, "iif", 3)==0) oif=0; r = new Route(n, ehn->edge, e.re.route.group, e.re.route.pktsrc, e.re.route.neg, oif, e.re.route.timeout, now); n->add_route(r); n->place_route(r); r->insert(&animations_); r->paint(paint_[e.re.route.group & paintMask_]); check_monitors(r); } else { // an old route expired n = lookupNode(e.re.src); if (n == 0) return; // src and dst are node ids ehn = lookupEdgeHashNode(e.re.src, e.re.dst); if (ehn == 0) return; int oif = 1; if (strncmp(e.re.route.mode, "iif", 3) == 0) { oif=0; } r = n->find_route(ehn->edge, e.re.route.group, e.re.route.pktsrc, oif); if (r == 0) { fprintf(stderr, "nam: attempt to delete non-existent route\n"); abort(); } n->delete_route(r); delete r; } break; case 'd': add_drop(e, now, direction); } } //--------------------------------------------------------------------- // void // NetModel::add_drop(const TraceEvent &e, double now, int direction) // - This method adds a packet drop animation to the animations_ list // - Packet drops can occur from queues and edges. If the queue is // not being displayed the packet is dropped from the node // position. // - If the animation direction is BACKWARDS a packet should be // created but it appears that this code does not do that. //--------------------------------------------------------------------- void NetModel::add_drop(const TraceEvent &e, double now, int direction) { EdgeHashNode *ehn; QueueItem *q; Packet *p; Lan *lan; float x, y; int pno; // paint number (color with which to draw) // Get packet to drop. if (direction == FORWARDS) { ehn = lookupEdgeHashNode(e.pe.src, e.pe.dst); if (ehn == 0) { return; } q = 0; if (ehn->queue != 0) { // if there's a queue, try removing it from the queue first // queue drops are more common than link drops... q = ehn->queue->remove(e.pe.pkt); } if (q == 0) { // perhaps it's a link packet drop p = lookupPacket(e.pe.src, e.pe.dst, e.pe.pkt.id); if (p != NULL) { // it was a link packet drop p->position(x, y, now); ehn->edge->DeletePacket(p); pno = p->paint(); delete p; } else if ((lan = lookupLan(e.pe.src)) != NULL) { /* * If it's a Lan (selective) packet drop, which means * the packet is only dropped on some of the lan links, * register the packet on the lan and drop it when the * packet is actually transmitted to that lan link. * * When the packet is actually dropped, this function will be * called again, but at that time the packet will be actually * on the link and this code will not be executed. */ lan->register_drop(e); return; } else { // probably it was a queue drop, but we're not displaying // that queue // It's possible that this packet is dropped directly from // the queue, even before the enqT_ module. In this case, // we should still produce a packet drop; we use the position // of the node to generate the drop. Node *s = lookupNode(e.pe.src); if (s == NULL) { fprintf(stderr, "NetModel::add_drop(): cannot find src node for packet drop.\n"); abort(); } x = s->x(); y = s->y(); pno = paint_[e.pe.pkt.attr & paintMask_]; } } else { // packet dropped from queue // get x,y position of queue item q->position(x, y); pno = q->paint(); delete q; } /* * Compute the point at which the dropped packet disappears. * Let's just make this sufficiently far below the lowest * thing on the screen. * * Watch out for topologies that have all their nodes lined * up horizontally. In this case, nymin_ == nymax_ == 0. * Set the bottom to -0.028. This was chosen empirically. * The nam display was set to the maximum size and the lowest * position on the display was around -0.028. */ float bottom; if (nymin_ - nymax_ < 0.01) { bottom = nymin_ - 20.0 * ehn->edge->PacketHeight() ; } else { bottom = nymin_ - (nymax_ - nymin_); } // The drop animation is taken care of by the drop class Drop * d = new Drop(x, y, bottom, 4 * ehn->edge->PacketHeight(), e.time, e.offset, e.pe.pkt); d->paint(pno); d->insert(&animations_); check_monitors(d); return; } else { // direction is BACKWARDS - need to create the packet Lan *lan = lookupLan(e.pe.src); if (lan != NULL) { // We need to remove drop status in lans lan->remove_drop(e); //fprintf(stderr, "lan dropped packet %d is removed on lan link %d->%d\n", // e.pe.pkt.id, e.pe.src, e.pe.dst); return; } } } //---------------------------------------------------------------------------- // Node * // NetModel::addNode(const TraceEvent &e) // - adds a node to the netmodel getting configuration info from the fields // in the TraceEvent //---------------------------------------------------------------------------- Node * NetModel::addNode(const TraceEvent &e) { Node * n = NULL; char src[32]; if (e.tt == 'n') { sprintf(src, "%d", e.ne.src); n = lookupNode(e.ne.src); // And remove them to be replaced by this node if (n != NULL) { fprintf(stderr, "Skipping duplicate node %s definition. \n", src); //removeNode(n); } // Determine Node Type if (!strncmp(e.ne.mark.shape, "circle",6)) { n = new CircleNode(src, e.ne.size); } else if (!strncmp(e.ne.mark.shape, "box", 3) || !strncmp(e.ne.mark.shape, "square", 6)) { n = new BoxNode(src, e.ne.size); } else if (!strncmp(e.ne.mark.shape, "hexagon",7)) { n = new HexagonNode(src, e.ne.size); } else { return NULL; } // Check for wireless node if (e.ne.wireless) { n->wireless_ = true; //fprintf(stderr, "We have wireless nodes :-) !!!\n"); } // Node Address // May need to check for no address passed in n->setaddr(e.ne.node.addr); addAddress(n->num(), e.ne.node.addr); // Node Color n->init_color(e.ne.node.color); n->lcolor(e.ne.node.lcolor); // dlabel initilization n->dlabel(e.ne.node.dlabel); // Set X,Y cordinates n->place(e.ne.x, e.ne.y); // Add Node to drawables list n->next_ = nodes_; nodes_ = n; n->Animation::insert(&drawables_); // Set Packet size to be running average of the last 5 nodes (25% of node size) packet_size_ = (4.0 * packet_size_ + e.ne.size*0.25)/5.0; } return (n); } //---------------------------------------------------------------------------- // Edge * // NetModel::addEdge(int argc, const char *const *argv) // // link // Create a link/edge between the specified source // and destination. Add it to this NetModel's list // of drawables and to the source's list of links. //---------------------------------------------------------------------------- Edge * NetModel::addEdge(int argc, const char *const *argv) { Node * src, * dst; Edge * edge = NULL; double bandwidth, delay, length, angle; if (strcmp(argv[1], "link") == 0) { src = lookupNode(atoi(argv[2])); dst = lookupNode(atoi(argv[3])); if (src && dst) { bandwidth = atof(argv[4]); delay = atof(argv[5]); length = atof(argv[6]); angle = atof(argv[7]); //enlarge link if the topology is a mixture of //wired and wireless network if (wireless_) { length = delay * WIRELESS_SCALE ; } edge = new Edge(src, dst, packet_size_, bandwidth, delay, length, angle, wireless_); edge->init_color("black"); enterEdge(edge); edge->Animation::insert(&drawables_); src->add_link(edge); } } return edge; } //---------------------------------------------------------------------------- // //---------------------------------------------------------------------------- Edge * NetModel::addEdge(int src_id, int dst_id, const TraceEvent &e) { Node *src, *dst; Edge * edge = NULL; double bandwidth, delay, length, angle; if (e.tt == 'l') { src = lookupNode(src_id); dst = lookupNode(dst_id); if (src && dst) { bandwidth = e.le.link.rate; delay = e.le.link.delay; length = e.le.link.length; angle = e.le.link.angle; //enlarge link if the topology is a mixture of //wired and wireless network if (wireless_) { length = delay * WIRELESS_SCALE ; } edge = new Edge(src, dst, packet_size_, bandwidth, delay, length, angle, wireless_); edge->init_color("black"); enterEdge(edge); edge->Animation::insert(&drawables_); src->add_link(edge); } } return edge; } void NetModel::addView(NetView* p) { p->next_ = views_; views_ = p; } //---------------------------------------------------------------------- // Node * // NetModel::lookupNode(int nn) const //---------------------------------------------------------------------- Node * NetModel::lookupNode(int nn) const { for (Node* n = nodes_; n != 0; n = n->next_) if (n->num() == nn) return (n); return NULL; } //---------------------------------------------------------------------- // Edge * // NetModel::lookupEdge(int source, int destination) const //---------------------------------------------------------------------- Edge * NetModel::lookupEdge(int source, int destination) const { EdgeHashNode * edge_hash_node; edge_hash_node = lookupEdgeHashNode(source, destination); return edge_hash_node->edge; } void NetModel::removeNode(Node *n) { Node *p, *q; // Remove node n from nodes_ list, then delete it for (p = nodes_; p != 0; q = p, p = p->next_) if (p == n) break; if (p == nodes_) nodes_ = p->next_; else q->next_ = p->next_; delete p; } Agent *NetModel::lookupAgent(int id) const { for (Node* n = nodes_; n != 0; n = n->next_) for(Agent* a= n->agents(); a != 0; a = a->next_) if (a->number() == id) return (a); return (0); } Lan *NetModel::lookupLan(int nn) const { for (Lan* l = lans_; l != 0; l = l->next_) if (l->num() == nn) return (l); /* XXX */ //fprintf(stderr, "nam: no such lan %d\n", nn); //exit(1); return (0);// make visual c++ happy } Packet *NetModel::newPacket(PacketAttr &pkt, Edge *e, double time) { /*this is called when we get a triggered event such as a packet getting duplicated within a LAN*/ Packet *p = new Packet(e, pkt, time, e->txtime(pkt.size), 0); p->insert(&animations_); p->paint(paint_[pkt.attr & paintMask_]); check_monitors(p); return p; } Packet *NetModel::lookupPacket(int src, int dst, int id) const { EdgeHashNode *h = lookupEdgeHashNode(src, dst); if (h == 0) return NULL; int ctr=0; for (Packet *p=h->edge->packets(); p!=NULL; p=p->next()) { #define PARANOID #ifdef PARANOID ctr++; if (ctr>h->edge->no_of_packets()) abort(); #endif if (p->id() == id) return p; } /*have to fail silent or we can't cope with link drops when doing settime*/ return 0; } /* Do not delete groups, because they are not explicitly deleted */ int NetModel::add_group(Group *grp) { int newEntry = 1; Tcl_HashEntry *he = Tcl_CreateHashEntry(grpHash_, (const char *)grp->addr(), &newEntry); if (he == NULL) return -1; if (newEntry) { Tcl_SetHashValue(he, (ClientData)grp); nGroup_++; } return 0; } Group* NetModel::lookupGroup(unsigned int addr) { Tcl_HashEntry *he = Tcl_FindHashEntry(grpHash_, (const char *)addr); if (he == NULL) return NULL; return (Group *)Tcl_GetHashValue(he); } // Remove a view from the views link, but not delete it void NetModel::remove_view(View *v) { View *p, *q; p = q = views_; if (p == v) { views_ = p->next_; return; } while (p != NULL) { q = p; p = p->next_; if (p == v) { q->next_ = p->next_; return; } } } //---------------------------------------------------------------------- // int // NetModel::command(int argc, const char *const *argv) // - Parses tcl commands (hook to enter c++ code from tcl) //---------------------------------------------------------------------- int NetModel::command(int argc, const char *const *argv) { Tcl& tcl = Tcl::instance(); int i; Node * node; double time; if (argc == 2) { if (strcmp(argv[1], "layout") == 0) { /* * layout * Compute reasonable defaults for missing node or edge * sizes based on the maximum link delay. Lay out the * nodes and edges as specified in the layout file. */ scale_estimate(); placeEverything(); return (TCL_OK); } if (strcmp(argv[1], "showtrees") == 0) { /* * showtrees */ color_subtrees(); for (View* p = views_; p != 0; p = p->next_) { p->draw(); } return (TCL_OK); } if (strcmp(argv[1],"resetFilter")==0) { resetf_ = 1 ; selectedSrc_ = -1 ; selectedDst_ = -1 ; selectedFid_ = -1 ; colorSrc_ = -1 ; colorDst_ = -1 ; colorFid_ = -1 ; hideSrc_ = -1 ; hideDst_ = -1 ; hideFid_ = -1 ; for (i = 0; i < PTYPELEN; ++i) { selectedTraffic_[i] = '\0' ; colorTraffic_[i] = '\0' ; hideTraffic_[i] = '\0' ; } return (TCL_OK); } } else if (argc == 3) { if (strcmp(argv[1], "incr-nodesize") == 0) { /* * incr-nodesize */ node_sizefac_ *= atof(argv[2]); for (Node *n = nodes_; n != 0; n = n->next_) for (Edge *e=n->links(); e != 0; e = e->next_) e->unmark(); scale_estimate(); placeEverything(); for (View *p = views_; p != 0; p = p->next_) if ((p->width() > 0) && (p->height() > 0)) { p->redrawModel(); p->draw(); } return (TCL_OK); } if (strcmp(argv[1], "decr-nodesize") == 0) { node_sizefac_ /= atof(argv[2]); for (Node *n = nodes_; n != 0; n = n->next_) for (Edge *e=n->links(); e != 0; e = e->next_) e->unmark(); scale_estimate(); placeEverything(); for (View *p = views_; p != 0; p = p->next_) if ((p->width() > 0) && (p->height() > 0)) { p->redrawModel(); p->draw(); } return(TCL_OK); } if (strcmp(argv[1], "updateNodePositions") == 0) { time = strtod(argv[2], NULL); for (node = nodes_; node; node = node->next_) { node->updatePositionAt(time); moveNode(node); // This updates the links and agents connected to the node } return TCL_OK; } if (strcmp(argv[1], "view") == 0) { /* * view * Create the window for the network layout/topology. * Used for nam editor */ EditView *v = new EditView(argv[2], this, 300, 700); v->next_ = views_; views_ = v; return (TCL_OK); } if (strcmp(argv[1], "psview") == 0) { /* * PSView * Print the topology to a file */ PSView *v = new PSView(argv[2], this); v->render(); delete(v); return (TCL_OK); } if (strcmp(argv[1], "testview") == 0) { /* * Added for nam validation test */ TestView *v = new TestView(argv[2], this); v->render(); delete(v); return (TCL_OK); } if (strcmp(argv[1], "editview") == 0) { /* * editview */ EditView *v = new EditView(argv[2], this); v->next_ = views_; views_ = v; return (TCL_OK); } if (strcmp(argv[1],"savelayout")==0) { save_layout(argv[2]); return (TCL_OK); } if (strcmp(argv[1],"select-traffic")==0) { strcpy(selectedTraffic_,argv[2]); return (TCL_OK); } if (strcmp(argv[1],"select-src")==0) { selectedSrc_ = atoi(argv[2]); return (TCL_OK); } if (strcmp(argv[1],"select-dst")==0) { selectedDst_ = atoi(argv[2]); return (TCL_OK); } if (strcmp(argv[1],"select-fid")==0) { selectedFid_ = atoi(argv[2]); return (TCL_OK); } if (strcmp(argv[1],"hide-traffic")==0) { strcpy(hideTraffic_,argv[2]); return (TCL_OK); } if (strcmp(argv[1],"hide-src")==0) { hideSrc_ = atoi(argv[2]); return (TCL_OK); } if (strcmp(argv[1],"hide-dst")==0) { hideDst_ = atoi(argv[2]); return (TCL_OK); } if (strcmp(argv[1],"hide-fid")==0) { hideFid_ = atoi(argv[2]); return (TCL_OK); } if (strcmp(argv[1],"color-traffic")==0) { resetf_ = 0 ; strcpy(colorTraffic_,argv[2]); return (TCL_OK); } if (strcmp(argv[1],"color-src")==0) { resetf_ = 0 ; colorSrc_ = atoi(argv[2]); return (TCL_OK); } if (strcmp(argv[1],"color-dst")==0) { resetf_ = 0 ; colorDst_ = atoi(argv[2]); return (TCL_OK); } if (strcmp(argv[1],"color-fid")==0) { resetf_ = 0 ; colorFid_ = atoi(argv[2]); return (TCL_OK); } if (strcmp(argv[1],"select-color")==0) { Paint *paint = Paint::instance(); selectedColor_ = paint->lookup(argv[2], 1); if (selectedColor_ < 0) { fprintf(stderr,"%s color: no such color: %s\n", argv[0], argv[2]); selectedColor_ = paint->lookup("black",1); if (selectedColor_ < 0) { tcl.resultf("%s no black! - bailing"); return (TCL_ERROR); } } return (TCL_OK); } if (strcmp(argv[1], "node") == 0) { // else if (argc == 3 && strcmp(argv[1], "node") == 0) /* * node [] * Create a node using the specified name * and the default size and insert it into this * NetModel's list of drawables. */ //Node* n = addNode(argc, argv); char * line = new char[strlen(argv[2])]; strncpy(line, argv[2],strlen(argv[2])); parsetable_.parseLine(line); Node * node = addNode(traceevent_); delete line; if (node) { return (TCL_OK); } else { tcl.resultf("Unable to create Node %s.", argv[2]); return (TCL_ERROR); } } } else if (argc >= 4 && strcmp(argv[1], "agent") == 0) { // Create a new agent /* * agent

      "$self stop 1" bind $w

      "$self stop 1" bind $w "$self rewind" bind $w "$self rewind" bind $w "$self time_undo" bind $w "$self time_undo" bind $w "$self rate_undo" bind $w "$self rate_undo" bind $w "$self change_rate 1" bind $w "$self change_rate 1" bind $w "$self change_rate 0" bind $w "$self change_rate 0" } Animator instproc view_bind {netView} { # We need these keys in input boxes, so only bind them to .view bind $netView "$self toggle_pause" bind $netView "$self done" bind $netView "$self single_step" bind $netView "$self back_step" bind $netView "$self back_step" bind $netView <0> "$self reset" bind $netView "$self start_info $netView \%x \%y left" bind $netView "$self start_info $netView \%x \%y right" bind $netView "$self view_drag_start $netView \%x \%y" bind $netView "$self view_drag_motion $netView \%x \%y" # bind $netView "$self end_info $netView" } Animator instproc clear_view_bind { netView } { bind $netView "" bind $netView "" bind $netView "" bind $netView "" } nam-1.15/tcl/Editor-FileParser.tcl0000664000076400007660000002253507337076630015664 0ustar tomhnsnam# # Copyright (C) 2001 by USC/ISI # All rights reserved. # # Redistribution and use in source and binary forms are permitted # provided that the above copyright notice and this paragraph are # duplicated in all such forms and that any documentation, advertising # materials, and other materials related to such distribution and use # acknowledge that the software was developed by the University of # Southern California, Information Sciences Institute. The name of the # University may not be used to endorse or promote products derived from # this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED # WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. # # # editor-nsparser.tcl # - tcl parser for reading in nam editor files # - they are basically stripped down ns scripts in the future perhaps the # actual ns parser could be used # Editor instproc loadNsScript {tracefile} { #filter the tcl file into a enam file first set stream [new NamStream $tracefile] while {[$stream eof] == 0} { set line [$stream gets] $self parseLine $line } } #----------------------------------------------------------------------- # Editor instproc parseLine {line} # - This should be better integrated with setObjectProperties. # - Basically this is a set of regular expressions for parsing # a ns script generated by the nam editor # - One piece of advice is to put the most complicated regular # expressions first so that they match before simpler ones #----------------------------------------------------------------------- Editor instproc parseLine {line} { $self instvar node_ edge_ agent_ traffic_source_ editor_view_ fid_ \ loss_model_ netmodel_ # ----- Nodes ----- if {[regexp {## node\(([0-9]+)\) at (-*[0-9.]+),(-*[0-9.]+)} \ $line matched node_id x y]} { # Set xy value for node #set node_($node_id) [new Node $node_id circle 10.0] # $editor_view_ importNode $node_($node_id) $x $y } elseif {[regexp {^set node\(([0-9]+)\) \[\$ns node\]} $line matched node_id]} { # Create Node # - 10.0 is the default node size from parser.cc:ParseTable::ParseTable() set node_($node_id) [new Node $node_id circle 10.0] $editor_view_ importNode $node_($node_id) } elseif {[regexp {^\$node\(([0-9]+)\) set ([XYZ]_) ([-.0-9]+)} \ $line matched node_id property_variable value]} { # Example: $node(id) set X_ 50.0 $editor_view_ setNodeProperty $node_id $value $property_variable } elseif {[regexp {^\$node\(([0-9]+)\) ([a-zA-Z_]+) \"*([a-zA-Z.0-9#]+)\"*} \ $line matched node_id property_variable value]} { $editor_view_ setNodeProperty $node_id $value $property_variable } elseif {[regexp {^\$ns at [0-9.]+ \"\$node\(([0-9]+)\) label ([a-zA-Z_]+) \"} \ $line matched node_id value]} { # Handle Node Labels $editor_view_ setNodeProperty $node_id $value dlabel_ } elseif {[regexp {^\$ns at ([0-9.]+) \"\$node\(([0-9]+)\) setdest ([-.0-9]+) ([-.0-9]+) ([.0-9]+)\"} \ $line matched time node_id x y speed]} { $node_($node_id) addMovement $time $x $y $speed # ----- Links ----- } elseif {[regexp {^\$ns simplex-link \$node\(([0-9]+)\) \$node\(([0-9]+)\) ([0-9.]+)Mb ([0-9.]+)ms ([A-Za-z]+)} \ $line matched source destination bandwidth delay queue_type]} { # Create Duplex Link set sd "$source - $destination" set edge_($sd) [new Edge $bandwidth $delay 1.0 0.0 25.0] $editor_view_ attachNodes $edge_($sd) $node_($source) $node_($destination) $editor_view_ addQueueHandle $edge_($sd) $queue_type # set ds "$destination - $source" # set edge_($ds) [new Edge $bandwidth $delay 1.0 0.0 25.0] # $editor_view_ attachNodes $edge_($ds) $node_($destination) $node_($source) } elseif {[regexp {^\$ns simplex-link-op \$node\(([0-9]+)\) \$node\(([0-9]+)\) ([a-zA-Z_]+) ([0-9.a-zA-Z#]+)} $line matched source destination property_variable value]} { # Set Link Property $editor_view_ setLinkProperty $source $destination $value $property_variable # ----- Link Queue Handle Properties ----- } elseif {[regexp {^\[\[\$ns link \$node\(([0-9]+)\) \$node\(([0-9]+)\)\] queue\] set ([a-zA-Z_]+) ([0-9.a-zA-Z]+)} \ $line matched source destination variable_name value]} { $editor_view_ setQueueHandleProperty $source $destination \ $variable_name $value # ----- Link Loss Models ----- } elseif {[regexp {^set loss_model\(([0-9]+)\) \[new ErrorModel/(Uniform) ([0-9.]+) ([a-zA-Z]+)} \ $line matched loss_model_id loss_model_type rate_ loss_unit_]} { # Create new loss model set loss_model_($loss_model_id) [new LossModel $loss_model_type \ $loss_model_id 10.0] $loss_model_($loss_model_id) setRate $rate_ $loss_model_($loss_model_id) setLossUnit $loss_unit_ } elseif {[regexp {^set loss_model\(([0-9]+)\) \[new ErrorModel/([a-zA-Z]+)} \ $line matched loss_model_id loss_model_type]} { # Create new loss model set loss_model_($loss_model_id) [new LossModel $loss_model_type \ $loss_model_id 10.0] } elseif {[regexp {^\$loss_model\(([0-9]+)\) set ([a-zA-Z_]+) ([0-9.a-zA-Z]+)} \ $line matched loss_model_id property_variable value]} { $editor_view_ setLossModelProperty $loss_model_id $value $property_variable } elseif {[regexp {^\$ns lossmodel \$loss_model\(([0-9]+)\) \$node\(([0-9]+)\) \$node\(([0-9]+)\)} \ $line matched loss_model_id source destination]} { $editor_view_ attachLossModel $loss_model_($loss_model_id) \ $node_($source) $node_($destination) # ----- Agents ----- } elseif {[regexp {^set agent\(([0-9]+)\) \[new Agent/([a-zA-Z]+)} \ $line matched agent_id agent_type]} { # Create new agent set agent_($agent_id) [new Agent $agent_type $agent_id 10.0] } elseif {[regexp {^\$ns attach-agent \$node\(([0-9]+)\) \$agent\(([0-9]+)\)} \ $line matched node_id agent_id]} { # Add agent to the editor's view and attach it to its node $editor_view_ importAgent $agent_($agent_id) $node_($node_id) } elseif {[regexp {^\$agent\(([0-9]+)\) set ([a-zA-Z_]+) ([0-9.a-zA-Z]+)} \ $line matched agent_id property_variable value]} { # Set Agent Property if {$property_variable == "fid_"} { $editor_view_ setAgentProperty $agent_id $fid_($value) flowcolor_ } else { $editor_view_ setAgentProperty $agent_id $value $property_variable } } elseif {[regexp {^\$ns connect \$agent\(([0-9]+)\) \$agent\(([0-9]+)\)} \ $line matched source_id destination_id]} { # Connect agents to each other $editor_view_ linkAgents $agent_($source_id) $agent_($destination_id) # ----- NS flow id ----- } elseif {[regexp {^\$ns color ([0-9]+) \"([a-zA-Z0-9#]+)\"} \ $line matched flow_id color]} { set fid_($flow_id) $color # ----- Traffic Sources ----- } elseif {[regexp {^set traffic_source\(([0-9]+)\) \[new Application/Traffic/([a-zA-Z]+)} \ $line matched trafficsource_id trafficsource_type]} { # Create Traffic Source set traffic_source_($trafficsource_id) \ [new TrafficSource $trafficsource_type $trafficsource_id 10.0] # Matching FTP/Telnet Application type traffic sources } elseif {[regexp {^set traffic_source\(([0-9]+)\) \[new Application/([a-zA-Z]+)} \ $line matched trafficsource_id trafficsource_type]} { # Create Traffic Source set traffic_source_($trafficsource_id) \ [new TrafficSource $trafficsource_type $trafficsource_id 10.0] } elseif {[regexp {^\$traffic_source\(([0-9]+)\) attach-agent \$agent\(([0-9]+)\)} \ $line matched trafficsource_id agent_id]} { $editor_view_ attachTrafficSource $traffic_source_($trafficsource_id) \ $agent_($agent_id) } elseif {[regexp {^\$traffic_source\(([0-9]+)\) set ([a-zA-Z_]+) ([0-9.a-zA-Z]+)} \ $line matched trafficsource_id property_variable value]} { $editor_view_ setTrafficSourceProperty $trafficsource_id $value $property_variable } elseif {[regexp {^\$ns at ([0-9.]+) \"\$traffic_source\(([0-9]+)\) ([starop]+)\"} \ $line matched time trafficsource_id property_variable]} { switch "$property_variable" { start { $editor_view_ setTrafficSourceProperty $trafficsource_id $time start_ } stop { $editor_view_ setTrafficSourceProperty $trafficsource_id $time stop_ } } # ----- Simulator Properties } elseif {[regexp {^\$ns at ([0-9.]+) \"finish\"} $line matched finish_time]} { $netmodel_ instvar maximum_simulation_time_ $self instvar slider_model_ slider_view_ editorwindow_ set maximum_simulation_time_ $finish_time $slider_model_ destroy $slider_view_ destroy $self buildTimeSlider $editorwindow_.timeslider } elseif {[regexp {^#} $line]} { # Comment } elseif {[regexp {^\n} $line]} { # newline character } else { #puts "Skipping line: $line" } } nam-1.15/tcl/Editor.tcl0000664000076400007660000022310207467063772013632 0ustar tomhnsnam# # Copyright (C) 2001 by USC/ISI # All rights reserved. # # Redistribution and use in source and binary forms are permitted # provided that the above copyright notice and this paragraph are # duplicated in all such forms and that any documentation, advertising # materials, and other materials related to such distribution and use # acknowledge that the software was developed by the University of # Southern California, Information Sciences Institute. The name of the # University may not be used to endorse or promote products derived from # this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED # WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. # # # Editor.tcl # - the nam editor # Must initialize C++/Tcl bound variables before use # - Seems to be a bug in the design of tclcl NetworkModel/Editor set maximum_simulation_time_ 60.0 Class Editor Editor set uniqueID_ 0 Editor proc getid {} { set id [Editor set uniqueID_] Editor set uniqueID_ [expr $id + 1] return $id } #---------------------------------------------------------------------- # Called when creating a new editor from nam console # from anim-ctrl.tcl:on-new # set editor [new Editor ""] #---------------------------------------------------------------------- Editor instproc init {tracefile} { $self instvar menulist_ SharedEnv id_ editorwindow_ \ editor_view_ balloon_ menubar_ save_filename_ \ agent_types_ source_types_ lossmodel_types_ \ toolbar_buttons_ current_tool_ netmodel_ mintime_ \ now_ slider_model_ slider_view_ pipemode_ current_time_ \ simulatior_property_window_ $self tkvar current_agent_ current_time_ current_source_ current_lossmodel_ set current_time_ 0.0 set id_ [Editor getid] toplevel .nameditor-$id_ set editorwindow_ .nameditor-$id_ if {$tracefile == ""} { wm title $editorwindow_ "NAM Editor - $id_" } else { wm title $editorwindow_ "NAM Editor - $tracefile" } #set agent_types_ {Null TCP TCP/FullTCP TCP/Reno TCP/NewReno \ # TCP/Vegas TCP/Sack1 TCP/Fack TCPSink \ # TCPSink/DelAck TCPSink/Sack1 UDP} set agent_types_ {TCP TCP/Reno \ TCP/Vegas TCP/Sack1 TCP/Fack UDP - Null TCPSink \ TCPSink/DelAck TCPSink/Sack1} set current_agent_ UDP # There is also a "Trace" traffic source which reads # traffic information from a file set source_types_ {CBR Exponential FTP Pareto Telnet} set current_source_ CBR #set lossmodel_types_ {Periodic Uniform Expo SRM} set lossmodel_types_ {Periodic Uniform} set current_lossmodel_ Periodic set SharedEnv(CurrentPageId) 1 set SharedEnv(CurrentCanvas) "" set SharedEnv(PageWidth) 8.5i set SharedEnv(PageHeight) 11i set SharedEnv(PageVisX) 3i set SharedEnv(PageVisY) 2i set SharedEnv(SlideBG) white set SharedEnv(Landscape) 0 set SharedEnv(ColorWidth) 400 set SharedEnv(ColorHeight) 100 set SharedEnv(PrivateCmap) "" set SharedEnv(ButtonOrient) left set SharedEnv(ButtonCount) 10 set SharedEnv(ButtonSize) .35i set SharedEnv(ButtonRelief) flat set SharedEnv(ButtonStipple1) gray50 set SharedEnv(ButtonStipple2) {} set SharedEnv(ButtonColor) cyan set SharedEnv(Fill) "" set SharedEnv(MenuSelect) 0 button .b set SharedEnv(Background) [.b cget -bg] set SharedEnv(ActiveBackground) [.b cget -activebackground] destroy .b set SharedEnv(DefButtonColor) [. cget -bg] set SharedEnv(Cut) "" set SharedEnv(Copy) "" set SharedEnv(Message) "Select" set SharedEnv(Xpos) 0 set SharedEnv(Ypos) 0 set SharedEnv(Smooth) 0 set SharedEnv(Outline) black set SharedEnv(Stipple) "" set SharedEnv(Arrow) none set SharedEnv(JoinStyle) miter set SharedEnv(Grid) 0 set SharedEnv(GridX) .25i set SharedEnv(GridY) .25i set SharedEnv(UnitX) i set SharedEnv(UnitY) i set SharedEnv(ScreenH) [winfo screenheight .] set SharedEnv(ScreenW) [winfo screenwidth .] set SharedEnv(Gravity) 1 set SharedEnv(GravityVal) 30 set SharedEnv(Sub-Cursor) "" set SharedEnv(Start) "" set SharedEnv(top_left_corner) bottom_right_corner set SharedEnv(top_side) bottom_side set SharedEnv(top_right_corner) bottom_left_corner set SharedEnv(right_side) left_side set SharedEnv(bottom_right_corner) top_left_corner set SharedEnv(bottom_side) top_side set SharedEnv(bottom_left_corner) top_right_corner set SharedEnv(left_side) right_side set SharedEnv(FixedAspect) True # Intialize balloon help set balloon_ [new BalloonHelp $editorwindow_] if {$tracefile == ""} { set save_filename_ "" } else { set save_filename_ $tracefile } # Create a new model to hold the editor's objects. # Don't include a tracefile to signify this is # the creation of a nam editor window set netmodel_ [new NetworkModel/Editor $self " "] $netmodel_ set Wpxmin_ 500.0 $netmodel_ set Wpymin_ 500.0 $netmodel_ set Wpxmax_ 625.0 $netmodel_ set Wpymax_ 625.0 # Create menubar at the top of the window frame $editorwindow_.menubar_ -relief raised -bd 2 $self buildMenubar $editorwindow_.menubar_ pack $editorwindow_.menubar_ -side top -fill x # Creates Editor viewport with scrollbars and zoom controls # Attaches that view to a network model # -- This has to be created first because the toolbar needs the # editor_view to be setup in advance. frame $editorwindow_.view $self buildEditorView $editorwindow_.view # TimeControls frame $editorwindow_.timecontrols -borderwidth 2 -relief groove $self buildTimeControls $editorwindow_.timecontrols # Toolbar frame $editorwindow_.tools -borderwidth 2 -relief groove $self buildToolbar $editor_view_ $editorwindow_.tools # TimeSlider frame $editorwindow_.timeslider -relief flat -borderwidth 0 $self buildTimeSlider $editorwindow_.timeslider pack $editorwindow_.tools $editorwindow_.timecontrols -side top -fill x pack $editorwindow_.timeslider -side bottom -fill x pack $editorwindow_.view -side left -fill both -expand true # Object Properties Window #frame $editorwindow_.properties #pack $editorwindow_.properties -side left -fill y bind $editorwindow_ "destroy $editorwindow_" bind $editorwindow_ "destroy $editorwindow_" bind $editorwindow_ "destroy $editorwindow_" bind $editorwindow_ "destroy $editorwindow_" bind $editorwindow_ "[AnimControl instance] done" bind $editorwindow_ "[AnimControl instance] done" $self setCursor Select # Initial state: select $self chooseAgent TCP $self chooseTrafficSource FTP $self chooseTool select # $editor_view_ zoom 1.6 # Load a nam editor ns script if {$tracefile != ""} { $self loadNsScript $tracefile } } #---------------------------------------------------------------------- # Cleanup variables that we have new-ed. #---------------------------------------------------------------------- Editor instproc destroy {} { $self instvar balloon_ delete $balloon_ delete $slider_model_ delete $slider_view_ } #---------------------------------------------------------------------- # #---------------------------------------------------------------------- Editor instproc done {} { $self instvar editorwindow_ destroy $editorwindow_ delete $self } #---------------------------------------------------------------------- # Editor instproc buildEditorView {w} # - Creates main canvas with scrollbars to which the user can add # ns objects #---------------------------------------------------------------------- Editor instproc buildEditorView {w} { $self instvar id_ SharedEnv netmodel_ \ editor_view_ editorwindow_ balloon_ magnification viewOffset # Create Window Layout frame $w.view #frame is just to sink the editor_view_ frame $w.view.sunk -borderwidth 2 -relief sunken $netmodel_ view $w.view.sunk.net set editor_view_ $w.view.sunk.net # lappend netViews $editor_view_ set SharedEnv(CurrentCanvas) $editor_view_ pack $w.view.sunk.net -side top -expand true -fill both # X scroll bar $editor_view_ xscroll $w.view.hsb scrollbar $w.view.hsb -orient horizontal -width 10 -borderwidth 1 \ -command "$editor_view_ xview" $w.view.hsb set 0.0 1.0 pack $w.view.hsb -side bottom -fill x pack $w.view.sunk -side top -fill both -expand true # Y scroll bar frame $w.yscroll $editor_view_ yscroll $w.yscroll.vsb scrollbar $w.yscroll.vsb -orient vertical -width 10 -borderwidth 1 \ -command "$editor_view_ yview" $w.yscroll.vsb set 0.0 1.0 pack $w.yscroll.vsb -side top -fill y -expand true # Scrollbar spacer frame $w.yscroll.l -width 12 -height -12 pack $w.yscroll.l -side top -ipady 6 set view $editor_view_ # Zoom bar set magnification 1.0 set viewOffset(x) 0.0 set viewOffset(y) 0.0 frame $w.zoom -borderwidth 2 -relief groove frame $w.zoom.bar pack $w.zoom.bar -side top # Put the zoom bar on the left button $w.zoom.bar.zoomin -bitmap "zoomin" \ -command "$view zoom 1.6" \ -highlightthickness 0 \ -borderwidth 1 button $w.zoom.bar.zoomout -bitmap "zoomout" \ -command "$view zoom 0.625" \ -highlightthickness 0 \ -borderwidth 1 pack $w.zoom.bar.zoomin \ $w.zoom.bar.zoomout \ -side top $balloon_ balloon_for $w.zoom.bar.zoomin "Zoom In" $balloon_ balloon_for $w.zoom.bar.zoomout "Zoom Out" pack $w.zoom -side left -fill y pack $w.yscroll -side right -fill y pack $w.view -side left -fill both -expand true $self viewBind $editor_view_ } #---------------------------------------------------------------------- # Editor instproc viewBind {netView} # - Setup mouse button bindings #---------------------------------------------------------------------- Editor instproc viewBind {netView} { $self instvar SharedEnv bind $netView "$self handleLeftButtonClick \%x \%y" bind $netView "$self handleRightButtonClick \%x \%y" bind $netView "$self handleLeftButtonDrag \%x \%y" bind $netView "$self handleLeftButtonRelease \%x \%y" bind $netView "$self handleMouseMovement \%x \%y" bind $netView "$self handleLeftButtonDoubleClick \%x \%y" # bind $netView "$self start_info $netView \%x \%y right" # bind $netView "$self view_drag_start $netView \%x \%y" # bind $netView "$self view_drag_motion $netView \%x \%y" # bind $netView "$self end_info $netView" } #---------------------------------------------------------------------- # Editor instproc handleRightButtonClick {x y} # - Allows user to edit properties of an object by right clicking # without having to switch to the select tool and double clicking #---------------------------------------------------------------------- Editor instproc handleRightButtonClick {x y} { $self instvar current_tool_ set old_tool $current_tool_ $self chooseTool select $self handleLeftButtonDoubleClick $x $y $self chooseTool $old_tool } #---------------------------------------------------------------------- # #---------------------------------------------------------------------- Editor instproc handleLeftButtonDoubleClick {x y} { $self instvar SharedEnv editor_view_ current_tool_ editorwindow_ switch $current_tool_ { select { set objinfo [$editor_view_ getObjectProperty $x $y] if {[string compare $objinfo "NONE"] == 0 } { return } set item [lindex $objinfo 0] set item [lindex $item 0] $self displayObjectProperties $editorwindow_.properties $item $x $y $objinfo place_frame $editorwindow_ $editorwindow_.properties $x $y } } } #---------------------------------------------------------------------- # Editor instproc handleMouseMovement {x y} #---------------------------------------------------------------------- Editor instproc handleMouseMovement {x y} { $self instvar SharedEnv editor_view_ current_tool_ set objinfo [$editor_view_ getObjectInformation $x $y] if {[string compare $objinfo "NONE"] != 0} { $editor_view_ showAgentLink $x $y } else { $editor_view_ hideAgentLinks } switch $current_tool_ { deleteobject - select { # set objinfo [$editor_view_ getObjectInformation $x $y] if {[string compare $objinfo "NONE"] != 0} { $self enterObject $editor_view_ $x $y $objinfo } else { catch {destroy $editor_view_.f} } } } } #---------------------------------------------------------------------- # Editor instproc handleLeftButtonClick {x y} # - called when mouse button 1 is pressed # - switches over to EditView::command(..) in editview.cc #---------------------------------------------------------------------- Editor instproc handleLeftButtonClick {x y} { $self instvar SharedEnv editor_view_ current_tool_ $self tkvar current_agent_ current_source_ current_lossmodel_ switch $current_tool_ { # These functions are in editview.cc: command() select {$editor_view_ setPoint $x $y 0} addnode {$editor_view_ addNode $x $y} addlink {$editor_view_ addLink $x $y} addagent {$editor_view_ addAgent $x $y $current_agent_} addtrafficsource {$editor_view_ addTrafficSource $x $y $current_source_} addlossmodel {$editor_view_ addLossModel $x $y $current_lossmodel_} deleteobject { $editor_view_ deleteObject $x $y } } $self renderFrame } #---------------------------------------------------------------------- # #---------------------------------------------------------------------- Editor instproc handleLeftButtonRelease {x y} { $self instvar SharedEnv editor_view_ current_tool_ slider_view_ # switch $SharedEnv(Cursor) { switch $current_tool_ { # Select { select { set marker_list [$editor_view_ releasePoint $x $y] $slider_view_ clearMarkers if {$marker_list != "NONE"} { $self addTimeSliderNodeMarkers $marker_list } } # Link { addlink { $editor_view_ releasePoint $x $y } } } #---------------------------------------------------------------------- # #---------------------------------------------------------------------- Editor instproc handleLeftButtonDrag {x y} { $self instvar SharedEnv editor_view_ current_tool_ switch $current_tool_ { select { $editor_view_ moveTo $x $y } addlink { $editor_view_ moveTo $x $y } } } #---------------------------------------------------------------------- # #---------------------------------------------------------------------- Editor instproc showPalette {property_variable} { # $self createColorPalette .colorpalette \ # {0000 3300 6600 9900 CC00 FF00} \ # {0000 3300 6600 9900 CC00 FF00} \ # {0000 3300 6600 9900 CC00 FF00} \ # .colorsp $self createColorPalette .colorpalette \ {00 33 66 99 CC FF} \ {00 33 66 99 CC FF} \ {00 33 66 99 CC FF} \ .colorsp } #---------------------------------------------------------------------- #---------------------------------------------------------------------- Editor instproc addTimeListItem {time_menu textbox} { $self instvar start_stop_time_list_ $self tkvar start_stop_time_ # Grab the time value from the grab textbox set value [$textbox get 0.0 1.end] set duplicate "no" foreach time $start_stop_time_list_ { if {$value == $time} { set duplicate "yes" } } if {$duplicate != "yes"} { # Create a new sorted list with the new time value added set add_list [lsort -real [linsert $start_stop_time_list_ 0 $value]] # generate updated menu and update start_stop_time_list_ $self generateTimeListMenu $time_menu $add_list # Set shown menu value to be the newly added value set start_stop "start" foreach time $start_stop_time_list_ { if {$value == $time} { set start_stop_time_ "$start_stop $time" } if {$start_stop == "start"} { set start_stop "stop" } else { set start_stop "start" } } } } #---------------------------------------------------------------------- #---------------------------------------------------------------------- Editor instproc deleteTimeListItem {time_menu} { $self instvar start_stop_time_list_ $self tkvar start_stop_time_ # Grab only the time value from the menu which is after the # start/stop label set time [lindex $start_stop_time_ 1] # Find the index in the time list of this time value # so that it can be removed using lreplace set index [lsearch $start_stop_time_list_ $time] # Remove time value and generate new menu $self generateTimeListMenu $time_menu \ [lreplace $start_stop_time_list_ $index $index] # Update the menu to show the first time item which # will always be a start value set start_stop_time_ "start [lindex $start_stop_time_list_ 0]" } #---------------------------------------------------------------------- #---------------------------------------------------------------------- Editor instproc generateTimeListMenu {list_menu list_values} { $self instvar start_stop_time_list_ # Remove old menu $list_menu delete 0 end # Create list menu set start_stop "start" foreach time_value $list_values { $list_menu add radiobutton -label "$start_stop $time_value" \ -variable start_stop_time_ \ -command "set [$self tkvarname start_stop_time_] \ \"$start_stop $time_value\"" if {$start_stop == "start"} { set start_stop "stop" } else { set start_stop "start" } } set start_stop_time_list_ $list_values } #---------------------------------------------------------------------- #---------------------------------------------------------------------- Editor instproc displaySimulatorProperties {window_name} { $self instvar SharedEnv netmodel_ $netmodel_ instvar maximum_simulation_time_ # Setup set window $window_name if {[winfo exists $window]} { wm deiconify $window raise $window return } eval toplevel $window $SharedEnv(PrivateCmap) wm protocol $window WM_DELETE_WINDOW "wm withdraw $window" frame $window.properties label $window.properties.title \ -wraplength 200 \ -text "Simulator Properties" pack $window.properties.title -side top frame $window.properties.simulation_time label $window.properties.simulation_time.label \ -wraplength 300 -text "Maximum Simulation Time (seconds)" text $window.properties.simulation_time.value \ -width 10 -height 1 $window.properties.simulation_time.value insert \ 0.0 $maximum_simulation_time_ pack $window.properties.simulation_time.label -side left pack $window.properties.simulation_time.value -side right pack $window.properties.simulation_time -side top # Apply and Cancel Buttons frame $window.buttons button $window.buttons.apply -text "Apply"\ -command "$self setSimulatorProperties $window; \ destroy $window" button $window.buttons.cancel -text "Cancel" \ -command "destroy $window" pack $window.buttons.apply $window.buttons.cancel \ -side left -padx 1m -pady 1m pack $window.buttons -side bottom -padx 1m -pady 1m pack $window.properties -side top } #---------------------------------------------------------------------- Editor instproc setSimulatorProperties {window} { $self instvar netmodel_ editorwindow_ slider_model_ slider_view_ $netmodel_ instvar maximum_simulation_time_ # EditorNetModel maximum simulation time set maximum_simulation_time_ \ [$window.properties.simulation_time.value get 0.0 1.end] $slider_model_ destroy $slider_view_ destroy $self buildTimeSlider $editorwindow_.timeslider } #---------------------------------------------------------------------- #---------------------------------------------------------------------- Editor instproc setDropDownValue {value} { $self tkvar drop_down_value_ set drop_down_value_ $value } #---------------------------------------------------------------------- #---------------------------------------------------------------------- Editor instproc reloadObjectProperties {display_frame x y} { $self instvar editor_view_ editorwindow_ $self tkvar drop_down_value_ $self undisplayObjectProperties $display_frame set objinfo [$editor_view_ getObjectProperty $x $y $drop_down_value_] if {[string compare $objinfo "NONE"] == 0 } { return } set item [lindex $objinfo 0] set item [lindex $item 0] $self displayObjectProperties $editorwindow_.properties $item $x $y $objinfo place_frame $editorwindow_ $editorwindow_.properties $x $y } #---------------------------------------------------------------------- # Editor instproc # displayObjectProperties {display_frame item x y properties} # - A draws the list of properties for an editor object. # - The format of the "properties" list is # {label modified_variable property_type} # - update_object contains a list of each property and it's stored # value #---------------------------------------------------------------------- Editor instproc displayObjectProperties {display_frame item x y properties} { $self instvar SharedEnv colorarea property_values textwidgets drop_down_list_ $self tkvar current_time_ start_stop_time_ drop_down_value_ set SharedEnv($item) $properties $self undisplayObjectProperties $display_frame frame $display_frame -relief raised -borderwidth 1 set number 0 foreach property $properties { set property_label [lindex $property 0] set property_variable [lindex $property 1] set property_type [lindex $property 2] set property_value [lindex $property 3] set property_values($property_variable) $property_value # Create frame to hold each property line frame $display_frame.line_$number if {$property_type == "title"} { # Displays the title in the property window frame label $display_frame.line_$number.title -wraplength 200 \ -text $property_label pack $display_frame.line_$number.title -side top } elseif {$property_type == "text"} { # Otherwise just put a label label $display_frame.line_$number.label_${property_variable} \ -wraplength 300 -text "$property_label" text $display_frame.line_$number.input_${property_variable} \ -width 10 -height 1 set textwidgets($property_variable) \ $display_frame.line_$number.input_${property_variable} # Set text box to current variable value $display_frame.line_$number.input_${property_variable} insert \ 0.0 $property_value pack $display_frame.line_$number.label_${property_variable} -side left pack $display_frame.line_$number.input_${property_variable} -side right } elseif {$property_type == "color"} { # We have a color property button $display_frame.line_$number.label_${property_variable} \ -text "$property_label" \ -command "$self showPalette $display_frame.line_$number.input_${property_variable}" text $display_frame.line_$number.input_${property_variable} \ -width 10 -height 1 set textwidgets($property_variable) \ $display_frame.line_$number.input_${property_variable} $display_frame.line_$number.input_${property_variable} insert \ 0.0 $property_value pack $display_frame.line_$number.label_${property_variable} -side left pack $display_frame.line_$number.input_${property_variable} -side right #set colorarea $display_frame.line_$number.eCOLOR set colorarea $textwidgets($property_variable) pack $display_frame.line_$number.input_${property_variable} -side right } elseif {$property_type == "label"} { label $display_frame.line_$number.label_${property_variable} \ -wraplength 200 -text "$property_label" pack $display_frame.line_$number.label_${property_variable} -side left } elseif {$property_type == "timelist"} { # Displays a complex time list object with # Buttons for grabbing the current time, add the time to the # start/stop time list and removing time from the list. # It should look like this. # [Grab] ___________ [Add] [Remove] [- time list menu] label $display_frame.line_$number.label_${property_variable} \ -wraplength 100 -text "$property_label" button $display_frame.line_$number.set_${property_variable} \ -text "Grab" \ -command "$self insertTimeInto \ $display_frame.line_$number.input_${property_variable}" text $display_frame.line_$number.input_${property_variable} \ -width 10 -height 1 $display_frame.line_$number.input_${property_variable} insert \ 0.0 [lindex $property_value 0] set time_menu $display_frame.line_$number.timelist_${property_variable}.menu # Add Remove list widgets button $display_frame.line_$number.add_${property_variable} \ -text "Add" -command "$self addTimeListItem $time_menu \ $display_frame.line_$number.input_${property_variable}" # Add a drop down list of start and stop times that are passed in # from the object in the property_value as a list set start_stop_time_ " " menubutton $display_frame.line_$number.timelist_${property_variable} \ -textvariable [$self tkvarname start_stop_time_] \ -text $start_stop_time_ \ -indicatoron 1 -menu $time_menu \ -relief raised -bd 2 -highlightthickness 2 -anchor c \ -direction flush -width 15 menu $time_menu -tearoff 0 $self generateTimeListMenu $time_menu $property_value set start_stop_time_ "start [lindex $property_value 0]" # label $display_frame.line_$number.label_${property_variable} \ # -text "$property_label" button $display_frame.line_$number.remove_${property_variable} \ -text "Remove" -command "$self deleteTimeListItem $time_menu" pack $display_frame.line_$number.label_${property_variable} -side left pack $display_frame.line_$number.set_${property_variable} \ $display_frame.line_$number.input_${property_variable} -side left pack $display_frame.line_$number.remove_${property_variable} \ $display_frame.line_$number.timelist_${property_variable} \ $display_frame.line_$number.add_${property_variable} -side right } elseif {$property_type == "time"} { # Display a button and text box # - the button grabs the time from current_time_ # - the text box allows the time to be set expicitly text $display_frame.line_$number.input_${property_variable} \ -width 10 -height 1 set textwidgets($property_variable) \ $display_frame.line_$number.input_${property_variable} button $display_frame.line_$number.label_${property_variable} \ -text "$property_label" \ -command "$self insertTimeInto \ $display_frame.line_$number.input_${property_variable}" #label $display_frame.line_$number.label_${property_variable} \ # -text "$property_label" # Set text box to current variable value $display_frame.line_$number.input_${property_variable} insert \ 0.0 $property_value pack $display_frame.line_$number.label_${property_variable} -side left pack $display_frame.line_$number.input_${property_variable} -side right #-------------- drop down list ------------------------------------- } elseif {$property_type == "drop_down_list"} { set drop_down_value_ [lindex $property_value 0] set drop_down_list_ [lindex $property_value 1] # used to save typing and make this more readable set line_frame $display_frame.line_$number label $line_frame.label_${property_variable} \ -wraplength 100 -text "$property_label" # Create a button from which to hang menu menubutton $line_frame.list_${property_variable} \ -textvariable [$self tkvarname drop_down_value_] \ -text $drop_down_value_ \ -indicatoron 1 -menu $line_frame.list_${property_variable}.menu \ -relief raised -bd 2 -highlightthickness 2 -anchor c \ -direction flush -width 17 # Create menu object and the menu selections menu $line_frame.list_${property_variable}.menu -tearoff 0 foreach i $drop_down_list_ { if {$i == "-"} { $line_frame.list_${property_variable}.menu add separator } else { $line_frame.list_${property_variable}.menu add radiobutton -label $i \ -variable drop_down_value_ \ -command "$self setDropDownValue $i; $self reloadObjectProperties $display_frame $x $y" } } $self setDropDownValue [lindex $property_value 0] # $line_frame.list_${property_variable} configure -width 16 pack $line_frame.label_${property_variable} -side left pack $line_frame.list_${property_variable} -side right #-------------- Boolean Check Box-------------------------------- } elseif {$property_type == "checkbox"} { # Otherwise just put a label checkbutton $display_frame.line_$number.checkbox_${property_variable} \ -text "$property_label" -variable $property_variable #set textwidgets($property_variable) \ # $display_frame.line_$number.input_${property_variable} pack $display_frame.line_$number.checkbox_${property_variable} -side left } pack $display_frame.line_$number -side top -fill x incr number } ;# End foreach # Apply and Cancel Buttons frame $display_frame.buttons button $display_frame.buttons.apply -text "Apply"\ -command "$self setObjectProperties {$properties}; \ $self undisplayObjectProperties $display_frame" button $display_frame.buttons.cancel -text "Cancel" \ -command "$self undisplayObjectProperties $display_frame" pack $display_frame.buttons.apply $display_frame.buttons.cancel -side left \ -padx 1m -pady 1m pack $display_frame.buttons -side bottom -padx 1m -pady 1m } #---------------------------------------------------------------------- # #---------------------------------------------------------------------- Editor instproc insertTimeInto {textbox} { $self tkvar current_time_ $textbox delete 0.0 end $textbox insert 0.0 $current_time_ } #---------------------------------------------------------------------- # #---------------------------------------------------------------------- Editor instproc undisplayObjectProperties {display_frame} { if {[winfo exists $display_frame]} { # Need to delete old properties widgets foreach widget [pack slaves $display_frame] { # Each property has a frame for it's line(ie. label textbox) set subwidgets [pack slaves $widget] if {[llength $subwidgets] > 0} { pack forget $subwidgets destroy $subwidgets } pack forget $widget destroy $widget } } catch {destroy $display_frame} } #----------------------------------------------------------------------- # Editor instproc setObjectProperties {properties} # - takes property list and sets each property in the list to it's # value # - properties format is: # {{label variable type value} {label variable type value}} #----------------------------------------------------------------------- Editor instproc setObjectProperties {properties} { $self instvar editor_view_ property_values textwidgets \ start_stop_time_list_ $self tkvar drop_down_value_ foreach property $properties { # puts $property set property_label [lindex $property 0] set property_variable [lindex $property 1] set property_type [lindex $property 2] if {$property_type == "title"} { # This should be the first property and property_value should # include the object type and id set property_value [lindex $property 3] set type [lindex $property_value 0] set typeid [lindex $property_value 1] } elseif {$property_type == "label"} { # Do nothing for a label } elseif {$property_type == "timelist"} { set property_value $start_stop_time_list_ } elseif {$property_type == "drop_down_list"} { set property_value $drop_down_value_ } elseif {$property_type == "checkbox"} { } else { # Get the value from the text box set property_value [$textwidgets($property_variable) get 0.0 1.end] #puts [$textwidgets($property_variable) get 0.0 1.end] } switch "$type" { Node { $editor_view_ setNodeProperty $typeid \ $property_value \ $property_variable } Agent { $editor_view_ setAgentProperty $typeid \ $property_value \ $property_variable } Link { set src_dst [split $typeid "-"] set src [lindex $src_dst 0] set dst [lindex $src_dst 1] $editor_view_ setLinkProperty $src $dst \ $property_value \ $property_variable } QueueHandle { set src_dst [split $typeid "-"] set source [lindex $src_dst 0] set destination [lindex $src_dst 1] $editor_view_ setQueueHandleProperty $source $destination \ $property_value \ $property_variable } TrafficSource { $editor_view_ setTrafficSourceProperty $typeid \ $property_value \ $property_variable } LossModel { $editor_view_ setLossModelProperty $typeid \ $property_value \ $property_variable } } } } #---------------------------------------------------------------------- # Editor instproc buildToolbar {view toolbar} { # - Toolbar along the top side of the nam editor window # - Tools are: # select # addnode # addlink # addagent # addtrafficsource # deleteobject #---------------------------------------------------------------------- Editor instproc buildToolbar {view toolbar} { $self instvar magnification viewOffset SharedEnv balloon_ \ state_buttons_ edit_state_ editorwindow_ agent_types_ \ source_types_ toolbar_buttons_ current_tool_ \ lossmodel_types_ $self tkvar current_agent_ current_source_ current_lossmodel_ # Build toolbar frame $toolbar.leftside button $toolbar.leftside.select -bitmap "select" \ -command "$self chooseTool select" \ -highlightthickness 0 -borderwidth 1 set toolbar_buttons_(select) $toolbar.leftside.select button $toolbar.leftside.addnode -bitmap "addnode" \ -command " $self chooseTool addnode" \ -highlightthickness 0 -borderwidth 1 set toolbar_buttons_(addnode) $toolbar.leftside.addnode button $toolbar.leftside.addlink -bitmap "addlink" \ -command "$self chooseTool addlink" \ -highlightthickness 0 -borderwidth 1 set toolbar_buttons_(addlink) $toolbar.leftside.addlink button $toolbar.leftside.addagent -text "Agent" \ -command "$self chooseTool addagent" \ -highlightthickness 0 -borderwidth 1 set toolbar_buttons_(addagent) $toolbar.leftside.addagent #--------------------------------------------------------------------- # Create drop down list of agents # - current_agent_ needs to be initialized to first element in # $agent_types_ menubutton $toolbar.leftside.agent_list -textvariable [$self tkvarname current_agent_] \ -text $current_agent_ \ -indicatoron 1 -menu $toolbar.leftside.agent_list.menu \ -relief raised -bd 2 -highlightthickness 2 -anchor c \ -direction flush menu $toolbar.leftside.agent_list.menu -tearoff 0 foreach i $agent_types_ { if {$i == "-"} { $toolbar.leftside.agent_list.menu add separator } else { $toolbar.leftside.agent_list.menu add radiobutton -label $i \ -variable current_agent_ \ -command "$self chooseAgent $i" } } $toolbar.leftside.agent_list configure -width 16 # Traffic source button and drop down list button $toolbar.leftside.add_traffic_source -text "Traffic Source" \ -command "$self chooseTool addtrafficsource" \ -highlightthickness 0 -borderwidth 1 set toolbar_buttons_(addtrafficsource) $toolbar.leftside.add_traffic_source #--------------------------------------------------------------------- # Drop down list of Traffic Sources # - $current_source_ needs to be initialized to first element in # $source_types_ menubutton $toolbar.leftside.source_list -textvariable [$self tkvarname current_source_] \ -indicatoron 1 -menu $toolbar.leftside.source_list.menu \ -relief raised -bd 2 -highlightthickness 2 -anchor c \ -direction flush menu $toolbar.leftside.source_list.menu -tearoff 0 foreach i $source_types_ { $toolbar.leftside.source_list.menu add radiobutton -label $i \ -variable current_source_ \ -command "$self chooseTrafficSource $i" } $toolbar.leftside.source_list configure -width 16 #--------------------------------------------------------------------- # Loss Model button and drop down list # button $toolbar.leftside.add_lossmodel -text "Loss Model" \ -command "$self chooseTool addlossmodel" \ -highlightthickness 0 -borderwidth 1 set toolbar_buttons_(addlossmodel) $toolbar.leftside.add_lossmodel # Drop down list of Loss Models # - $current_lossmodel_ needs to be initialized to first element in # $lossmodel_types_ menubutton $toolbar.leftside.lossmodel_list \ -textvariable [$self tkvarname current_lossmodel_] \ -indicatoron 1 -menu $toolbar.leftside.lossmodel_list.menu \ -relief raised -bd 2 -highlightthickness 2 -anchor c \ -direction flush menu $toolbar.leftside.lossmodel_list.menu -tearoff 0 foreach i $lossmodel_types_ { $toolbar.leftside.lossmodel_list.menu add radiobutton -label $i \ -variable current_lossmodel_ \ -command "$self chooseLossModel $i" } $toolbar.leftside.lossmodel_list configure -width 16 #--------------------------------------------------------------------- # Delete Object Button button $toolbar.leftside.deleteobject -bitmap "delete" \ -command "$self chooseTool deleteobject" \ -highlightthickness 0 -borderwidth 1 set toolbar_buttons_(deleteobject) $toolbar.leftside.deleteobject pack $toolbar.leftside.select \ $toolbar.leftside.addnode \ $toolbar.leftside.addlink \ $toolbar.leftside.addagent \ $toolbar.leftside.agent_list \ $toolbar.leftside.add_traffic_source \ $toolbar.leftside.source_list \ $toolbar.leftside.add_lossmodel \ $toolbar.leftside.lossmodel_list \ $toolbar.leftside.deleteobject \ -side left pack $toolbar.leftside -side left # pack $toolbar.zoombar -side left -fill x $balloon_ balloon_for $toolbar.leftside.select "Select Object, Move Object or Get Object Properties" $balloon_ balloon_for $toolbar.leftside.addnode "Add Node" $balloon_ balloon_for $toolbar.leftside.addlink "Add Link or Connect Agents" $balloon_ balloon_for $toolbar.leftside.addagent "Add Agent to a Node" $balloon_ balloon_for $toolbar.leftside.agent_list "Choose Which Agent to Add" $balloon_ balloon_for $toolbar.leftside.add_traffic_source "Add Traffic Source" $balloon_ balloon_for $toolbar.leftside.source_list "Choose Which Traffic Source to Add" $balloon_ balloon_for $toolbar.leftside.add_lossmodel "Add Link Loss Model" $balloon_ balloon_for $toolbar.leftside.lossmodel_list "Choose Which Loss Model to Add" $balloon_ balloon_for $toolbar.leftside.deleteobject "Delete Object" } #----------------------------------------------------------------------- # Editor instproc buildTimeControls {w} # - builds the set of time controls into the frame w # - This code was originally copied from build-ui.tcl so it is not # very pretty looking #----------------------------------------------------------------------- Editor instproc buildTimeControls {w} { $self instvar rateSlider granularity time_step_ stepDisp running \ direction balloon_ current_time_step_ previous_time_step_ $self tkvar current_time_ set current_time_step_ 0.0001 set f [smallfont] frame $w.bar -relief groove -borderwidth 2 # frame $w.bar.rate -borderwidth 1 -relief sunken # scale $w.bar.rate.slider -orient horizontal -width 7p \ # -label "Step:" -font [smallfont] \ # -from -60 -to -1 -showvalue false \ # -relief flat \ # -borderwidth 1 -highlightthickness 0 # -troughcolor [option get . background Nam] # pack $w.bar.rate.slider -side top -fill both -expand true # set rateSlider $w.bar.rate.slider #puts [time2real [option get . rate Nam]] # set granularity [option get . granularity Nam] #set time_step_ [time2real [option get . rate Nam]] # set time_step_ 10.0 # set stepDisp [step_format $time_step_] # set current_time_step_ [expr 10*log10($time_step_)] # set previous_time_step_ $current_time_step_ # $rateSlider set $current_time_step_ # bind $rateSlider "$self set_rate \[%W get\] 1" # bind $rateSlider "$self on-rateslider-press" # bind $rateSlider "$self on-rateslider-motion \[%W get\]" # trace variable stepDisp w "$self displayStep" # Shows the current time in the time control bar label $w.bar.timer_label -text "Time :" \ -anchor w -font $f -borderwidth 1 \ -relief sunken -anchor e label $w.bar.timer_value -textvariable [$self tkvarname current_time_] \ -width 14 -anchor w -font $f -borderwidth 1 \ -relief sunken -anchor e # frame $w.bar.run # button $w.bar.run.b -bitmap play -borderwidth 1 -relief raised \ # -highlightthickness 0 -font $f \ # -command "puts \"$self set_run $w\"" # frame $w.bar.run.f -height 5 -relief sunken \ # -borderwidth 1 # pack $w.bar.run.b -side top -fill both -expand true # pack $w.bar.run.f -side top -fill x # $balloon_ balloon_for $w.bar.run.b "play forward" 1000 # frame $w.bar.back # button $w.bar.back.b -bitmap back -borderwidth 1 -relief raised \ # -highlightthickness 0 -font $f \ # -command "puts \"$self set_back $w\"" # $balloon_ balloon_for $w.bar.back.b "play backward" 1000 # hilight running labels as $running changes # trace variable running w "$self trace_running_handler $w" # frame $w.bar.back.f -height 5 -relief sunken \ # -borderwidth 1 # pack $w.bar.back.b -side top -fill both -expand true # pack $w.bar.back.f -side top -fill x # frame $w.bar.stop # button $w.bar.stop.b -bitmap stop -borderwidth 1 -relief raised \ # -highlightthickness 0 -font $f \ # -command "puts \"$self stop 1;\ # $self renderFrame;\ # $self highlight $w.bar.stop 1\"" # $balloon_ balloon_for $w.bar.stop.b "stop" 1000 # frame $w.bar.stop.f -height 5 -relief sunken \ # -borderwidth 1 # pack $w.bar.stop.b -side top -fill both -expand true # pack $w.bar.stop.f -side top -fill x # frame $w.bar.rew # button $w.bar.rew.b -bitmap rew -borderwidth 1 -relief raised \ # -highlightthickness 0 -font $f \ # -command "$self rewind" # $balloon_ balloon_for $w.bar.rew.b "rewind" 1000 # frame $w.bar.rew.f -height 5 -relief sunken \ # -borderwidth 1 # pack $w.bar.rew.b -side top -fill both -expand true # pack $w.bar.rew.f -side top -fill x # frame $w.bar.ff # button $w.bar.ff.b -bitmap ff -borderwidth 1 -relief raised \ # -highlightthickness 0 -font $f \ # -command "$self fast_fwd" # $balloon_ balloon_for $w.bar.ff.b "fast forward" 1000 # frame $w.bar.ff.f -height 5 -relief sunken \ # -borderwidth 1 # pack $w.bar.ff.b -side top -fill both -expand true # pack $w.bar.ff.f -side top -fill x # pack $w.bar.rate -side right -fill y pack $w.bar.timer_value $w.bar.timer_label -side right -pady 0 \ -ipady 1 -padx 1 -fill y # pack $w.bar.ff -side right -padx 1 -pady 1 -fill both -expand true # pack $w.bar.run -side right -padx 1 -pady 1 -fill both -expand true # pack $w.bar.stop -side right -padx 1 -pady 1 -fill both -expand true # pack $w.bar.back -side right -padx 1 -pady 1 -fill both -expand true # pack $w.bar.rew -side right -padx 1 -pady 1 -fill both -expand true pack $w.bar -fill x -expand 1 -side right # $self instvar prevbutton # set prevbutton $w.bar.stop # start out stopped # $self highlight $w.bar.stop 1 } #----------------------------------------------------------------------- # Editor instproc buildTimeSlider {view w} # - creates a time slider to be used in setting time events # - w is the slider frame #----------------------------------------------------------------------- Editor instproc buildTimeSlider {w} { $self tkvar showpanel $self instvar mintime_ now_ slider_model_ pipemode_ slider_view_ netmodel_ $netmodel_ instvar maximum_simulation_time_ ;# This is set by editornetmodel.cc # Initialize Time Slider Values set mintime_ 0.0 set now_ 0.0 set slider_model_ [new TimesliderModel $mintime_ $maximum_simulation_time_ $now_ $self] set slider_view_ [new TimesliderView $w $slider_model_] $slider_model_ addObserver $slider_view_ $slider_model_ setpipemode 0 $self setCurrentTime 0.0 } #------------- Functions needed for TimeSlider ------------- Editor instproc setsliderPressed {v} { # puts "setsliderPressed $v" } #----------------------------------------------------------------------- #----------------------------------------------------------------------- Editor instproc setCurrentTime {time} { $self tkvar current_time_ set current_time_ $time $self renderFrame } #----------------------------------------------------------------------- #----------------------------------------------------------------------- Editor instproc slidetime {a b} { # puts "slidetime $a $b" } #----------------------------------------------------------------------- #----------------------------------------------------------------------- Editor instproc fast_fwd {} { # $self instvar current_time_step_ slider_model_ # $self tkvar current_time_ # puts "fast_fwd -> $current_time_step_" # set current_time_ [expr $current_time_ + $current_time_step_] # $slider_model_ setcurrenttime $current_time_step_ } #----------------------------------------------------------------------- #----------------------------------------------------------------------- Editor instproc rewind {} { # $self instvar current_time_step_ slider_model_ # $self tkvar current_time_ # puts "rewind -> $current_time_step_" # set current_time_ [expr $current_time_ - $current_time_step_] # $slider_model_ setcurrenttime $current_time_step_ } #----------------------------------------------------------------------- #----------------------------------------------------------------------- Editor instproc setsliderPressed {b} { # puts "setsliderPressed $b" } #----------------------------------------------------------------------- #----------------------------------------------------------------------- Editor instproc getrunning {} { # puts getrunning return 1 } #----------------------------------------------------------------------- # Editor instproc renderFrame {} # -- called by the TimeSlider after the slider is released #----------------------------------------------------------------------- Editor instproc renderFrame {} { $self instvar editor_view_ netmodel_ slider_view_ $self tkvar current_time_ $netmodel_ updateNodePositions $current_time_ $editor_view_ draw $current_time_ } #------------- End Functions needed for TimeSlider ------------- #----------------------------------------------------------------------- # Editor instproc addTimeSliderNodeMarkers{} #----------------------------------------------------------------------- Editor instproc addTimeSliderNodeMarkers {marker_list} { $self instvar slider_view_ foreach line $marker_list { set node_id [lindex $line 0] foreach time [lrange $line 1 end] { $slider_view_ addMarker $time $node_id seagreen } } } #----------------------------------------------------------------------- # Editor instproc buildMenubar {w} # - w is the parent window frame #----------------------------------------------------------------------- Editor instproc buildMenubar {w} { $self instvar editorwindow_ menubar_ agent_types_ \ source_types_ lossmodel_types_ $self tkvar current_agent_ current_source_ current_lossmodel_ # File Menu menubutton $w.file -text File -underline 0 \ -menu $w.file.menu menu $w.file.menu $w.file.menu add command -label New \ -underline 0 -command "$self newFile" $w.file.menu add command -label Open \ -underline 0 -command "$self openFile" $w.file.menu add command -label Save \ -underline 0 -command "$self doSave" $w.file.menu add command -label "Save As..." \ -underline 4 -command "$self doSaveAs" $w.file.menu add separator $w.file.menu add command -label "Run Ns" \ -underline 1 -command "$self doSave; $self runNs" $w.file.menu add command -label "Close" \ -underline 0 -command "destroy $editorwindow_" # Edit Menu menubutton $w.edit -text Edit -underline 0 \ -menu $w.edit.menu menu $w.edit.menu $w.edit.menu add command -label "Undo" \ -underline 0 -command "puts Undo" -state disabled $w.edit.menu add command -label "Redo" \ -underline 0 -command "puts Redo" -state disabled $w.edit.menu add separator $w.edit.menu add command -label "Cut" \ -underline 0 -command "puts Cut" -state disabled $w.edit.menu add command -label "Copy" \ -underline 0 -command "puts Copy" -state disabled $w.edit.menu add command -label "Paste" \ -underline 0 -command "puts Paste" -state disabled $w.edit.menu add separator $w.edit.menu add command -label "Simulator Properties" \ -underline 0 -command "$self displaySimulatorProperties .properties" # Tools Menu menubutton $w.tools -text Tools -underline 0 \ -menu $w.tools.menu menu $w.tools.menu $w.tools.menu add command -label "Select" \ -underline 0 -command "$self chooseTool select" $w.tools.menu add command -label "Add Node" \ -underline 0 \ -command "$self chooseTool addnode" $w.tools.menu add command -label "Add Link" \ -underline 0 \ -command "$self chooseTool addlink" # Cascading Agents menu $w.tools.menu add cascade -label "Agents" \ -underline 0 -menu $w.tools.menu.agents menu $w.tools.menu.agents foreach i $agent_types_ { if {$i == "-"} { $w.tools.menu.agents add separator } else { $w.tools.menu.agents add radiobutton \ -label $i -variable current_agent_ -value $i \ -command "$self chooseAgent $i" } } # Cascading Sources menu $w.tools.menu add cascade -label "Traffic Sources" \ -underline 0 -menu $w.tools.menu.sources menu $w.tools.menu.sources foreach i $source_types_ { $w.tools.menu.sources add radiobutton \ -label $i -variable current_source_ -value $i \ -command "$self chooseTrafficSource $i" } # Cascading Loss Models menu $w.tools.menu add cascade -label "Link Loss Models" \ -underline 0 -menu $w.tools.menu.lossmodels menu $w.tools.menu.lossmodels foreach i $lossmodel_types_ { $w.tools.menu.lossmodels add radiobutton \ -label $i -variable current_lossmodel_ -value $i \ -command "$self chooseLossModel $i" } $w.tools.menu add command -label "Delete Object" \ -underline 0 -command "$self chooseTool deleteobject" # Attach Menus to Parent Window pack $w.file $w.edit \ $w.tools -side left # Add Help menu to the Right menubutton $w.help -text "Help" -underline 0 \ -menu $w.help.menu menu $w.help.menu $w.help.menu add command -label "Help" \ -underline 0 -command "$self showHelp" pack $w.help -side right # Enable Keyboard Focus # tk_menuBar $editorwindow_.menubar_ \ # $editorwindow_.menubar_.file \ # $editorwindow_.menubar_.edit } #---------------------------------------------------------------------- # #---------------------------------------------------------------------- Editor instproc setMessage {} { $self instvar SharedEnv return $SharedEnv(Cursor) } #---------------------------------------------------------------------- # #---------------------------------------------------------------------- Editor instproc originObject { name } { $self instvar SharedEnv set bb [$SharedEnv(CurrentCanvas) bbox $name] set x [lindex $bb 0] set y [lindex $bb 1] if {$x > 0} { set nx -$x } else { set nx [expr abs($x)] } if {$y > 0} { set ny -$y } else { set ny [expr abs($y)] } $SharedEnv(CurrentCanvas) move $name $nx $ny } #---------------------------------------------------------------------- # #---------------------------------------------------------------------- Editor instproc scaleObject {name ratio width height} { $self instvar SharedEnv set bb [eval $SharedEnv(CurrentCanvas) bbox $name] if {"$bb" != ""} { set x [lindex $bb 2] set y [lindex $bb 3] if {$ratio == "variable"} { set scalex [expr ($width + 0.0) / $x] set scaley [expr ($height + 0.0) / $y] if {$scalex > $scaley} { set scale $scaley } else { set scale $scalex } } elseif {$ratio != ""} { set scalex $ratio set scaley $ratio set scale $ratio } else { set scalex [expr ($width + 0.0) / $x] set scaley [expr ($height + 0.0) / $y] if {$scalex > $scaley} { set scalex $scaley set scale $scaley } else { set scaley $scalex set scale $scalex } } $SharedEnv(CurrentCanvas) scale $name 0 0 $scalex $scaley foreach i [$SharedEnv(CurrentCanvas) find withtag all] { set type [$SharedEnv(CurrentCanvas) type $i] if {"$type" != "text"} { continue } if {$SharedEnv(FontScale)} { set fn [$SharedEnv(CurrentCanvas) itemcget $i -font] regexp \ {([-][^-]*-[^-]*-[^-]*-[^-]*-[^-]*-[^-]*-[^-]*-)([^-]*)(-.*)}\ $fn dummy d1 size d2; if {"$dummy" != ""} { set nsize [expr round($size * $scale)] if {$nsize < 20} { set nsize 20 } $SharedEnv(CurrentCanvas) itemconfigure $i \ -font ${d1}${nsize}${d2} set fnn [$SharedEnv(CurrentCanvas) itemcget $i -font] regexp \ {([-][^-]*-[^-]*-[^-]*-[^-]*-[^-]*-[^-]*-[^-]*-)([^-]*)(-.*)}\ $fnn dummy d1 nsize d2; if { ($scale < 1 && $nsize < $size ) || \ ($scale > 1 && $nsize > $size) } { $SharedEnv(CurrentCanvas) itemconfigure $i \ -width [expr [$SharedEnv(CurrentCanvas) itemcget $i \ -width] * $scale] } else { $SharedEnv(CurrentCanvas) itemconfigure $i \ -font $fn } } } else { $SharedEnv(CurrentCanvas) itemconfigure $i \ -width [expr [$SharedEnv(CurrentCanvas) itemcget $i -width] \ * $scale] } } } } #---------------------------------------------------------------------- # #---------------------------------------------------------------------- Editor instproc setCursor { value } { $self instvar SharedEnv set SharedEnv(Cursor) $value $self setRadioButton SharedEnv(Cursor) $value } #---------------------------------------------------------------------- # #---------------------------------------------------------------------- Editor instproc setRadioButton { var value } { $self instvar SharedEnv if {[info exists SharedEnv(W_${value})]} { set bd [$SharedEnv(W_${value}) cget -bd] $self clearRadioVariable $var $SharedEnv(W_${value}) configure -relief sunken $SharedEnv(W_${value}) move all $bd $bd set SharedEnv($var) $SharedEnv(W_${value}) } set $var "$value" } #---------------------------------------------------------------------- # #---------------------------------------------------------------------- Editor instproc clearRadioVariable {var} { $self instvar SharedEnv if {[info exists SharedEnv($var)] && [winfo exists $SharedEnv($var)]} { set bd [$SharedEnv($var) cget -bd] $SharedEnv($var) configure -relief $SharedEnv(ButtonRelief) eval $SharedEnv($var) move all -$bd -$bd } set $var "" } #---------------------------------------------------------------------- # Editor instproc enterObject { w x y value } # - Shows an objects popup info window #---------------------------------------------------------------------- Editor instproc enterObject { w x y value } { catch {destroy $w.f} frame $w.f -relief groove -borderwidth 2 message $w.f.msg -width 8c -text $value pack $w.f.msg pack $w.f catch {place_frame $w $w.f [expr $x+10] [expr $y+10]} } #---------------------------------------------------------------------- # #---------------------------------------------------------------------- Editor instproc enterToolButtons { w x y value } { $self instvar SharedEnv set geo [winfo geometry $w] set px [lindex [split $geo "+"] 1] set py [lindex [split $geo "+"] 2] set psize [lindex [split $geo "+"] 0] set pxsize [lindex [split $psize "x"] 0] set pysize [lindex [split $psize "x"] 1] set w [winfo parent $w] catch {destroy $w.fm} frame $w.fm -relief groove -borderwidth 2 message $w.fm.msg -width 10c -text $value -background yellow pack $w.fm.msg pack $w.fm catch {place_frame $w $w.fm [expr $pxsize+$px] [expr $pysize+$py]} } #---------------------------------------------------------------------- # #---------------------------------------------------------------------- Editor instproc leaveToolButtons { w } { set w [winfo parent $w] catch {destroy $w.fm} } #---------------------------------------------------------------------- # Editor instproc createColorPalette {name redlist greenlist bluelist replace} # - This procedure is pretty messy but it seems to work in creating # a color selection box and putting the result into the variable # colorarea via the getcolornam procedure. # - I don't feel like renaming the variables to make to more readable # and straightforward like I have done on other parts of # poorly written code similar to this. #---------------------------------------------------------------------- Editor instproc createColorPalette {name redlist greenlist bluelist replace} { $self instvar SharedEnv netmodel_ # Setup set w ${name} if {[winfo exists $w]} { wm deiconify $w raise $w return } set SharedEnv($name) $replace eval toplevel $w $SharedEnv(PrivateCmap) wm protocol $w WM_DELETE_WINDOW "wm withdraw $w" frame $w.f foreach red $redlist { frame $w.f.rcol_${red} foreach green $greenlist { frame $w.f.grow_${red}${green} foreach blue $bluelist { if { [info exists SharedEnv($w.f.c${red}${green}${blue})] } { frame $w.f.c${red}${green}${blue} \ -relief raised -height 2m -width 2m \ -highlightthickness 0 \ -bd 1 -bg $SharedEnv($w.f.c${red}${green}${blue}) } else { frame $w.f.c${red}${green}${blue} \ -relief raised -height 2m -width 2m \ -highlightthickness 0 \ -bd 1 -bg "#${red}${green}${blue}" } pack $w.f.c${red}${green}${blue} -side left \ -in $w.f.grow_${red}${green} -fill both -expand true bind $w.f.c${red}${green}${blue} <1> { %W configure -relief sunken } # This grabs the color and puts it into the color text box bind $w.f.c${red}${green}${blue} "$self getcolorname %W; destroy $w" bind $w.f.c${red}${green}${blue} "$self getcolorname %W; destroy $w" } pack $w.f.grow_${red}${green} -side top -in $w.f.rcol_${red} -fill both -expand true } pack $w.f.rcol_${red} -side left -in $w.f -fill both -expand true } frame $w.f.c_none -width 4m -relief raised -bd 1 \ -highlightthickness 0 pack $w.f.c_none -in $w.f -side left -fill y pack $w.f -in $w -expand true -fill both # Return wm geometry $w $SharedEnv(ColorWidth)x$SharedEnv(ColorHeight) } #---------------------------------------------------------------------- # Editor instproc getcolorname {w} # - gets the clicked on color value from the color palette window # and puts the result into the textbox pointed at by colorarea # - colorarea is set in the displayObjectProperties procedure. #---------------------------------------------------------------------- Editor instproc getcolorname {w} { $self instvar netmodel_ colorarea $w configure -relief raised set colorv [$w cget -bg] set rgb [winfo rgb $w $colorv] set colorn "[$netmodel_ lookupColorName [lindex $rgb 0] \ [lindex $rgb 1] [lindex $rgb 2]]" if {[info exists colorarea] && [winfo exists $colorarea]} { $colorarea delete 0.0 end $colorarea insert 0.0 $colorn catch { $colorarea tag add bgcolor 0.0 end } $colorarea tag configure bgcolor -background $colorn } } #---------------------------------------------------------------------- # #---------------------------------------------------------------------- Editor instproc showHelp {} { $self instvar editorwindow_ set w $editorwindow_.1 if {[winfo exists $w]} { wm deiconify $w raise $w return } toplevel $w wm title $w "Quick Tips on using the Nam Editor" listbox $w.lbox -width 48 -height 11 pack $w.lbox -side left -expand yes -fill both $w.lbox insert 0 \ "Nam Editor Help"\ "-----------------------------------------------" \ "1) Create nodes using the add node tool " \ "2) Connect them using the add link tool." \ "3) Attach an agent to a node"\ "4) Connect agents by using the link tool."\ "5) Set options by double clicking or right clicking on each object."\ "6) Run the scenario using the File Menu command, Run Ns."\ "-----------------------------------------------" \ "Please report all bugs to ns-users@isi.edu" $w.lbox selection set 0 } #---------------------------------------------------------------------- # Editor instproc chooseTool {tool} # - tools are created in the buildToolbar procedure #---------------------------------------------------------------------- Editor instproc chooseTool {tool} { $self instvar SharedEnv state_buttons_ toolbar_buttons_ \ current_tool_ slider_view_ $self tkvar current_agent_ current_source_ $slider_view_ instvar delete_marker_ # Release last tool button if [info exists current_tool_] { $toolbar_buttons_($current_tool_) configure -relief raised } # Depress current tool button set current_tool_ $tool if [info exists toolbar_buttons_($tool)] { $toolbar_buttons_($tool) configure -relief sunken } if {$tool == "deleteobject"} { # Set the slider view to delete it's markers if they are clicked upon set delete_marker_ 1 } else { set delete_marker_ 0 } } #---------------------------------------------------------------------- # Editor instproc chooseAgent {agent} # -- This function is used to set the current_agent_ variable. # I believe there is a bug in otcl and creating menubuttons. # The scope of a instvar varible doesn't seem to be passed in # properly to the menubutton function. #---------------------------------------------------------------------- Editor instproc chooseAgent {agent} { $self tkvar current_agent_ set current_agent_ $agent $self chooseTool addagent } #---------------------------------------------------------------------- # Editor instproc chooseTrafficSource {source} # -- This function is used to set the current_source_ variable. # I believe there is a bug in otcl and creating menubuttons. # The scope of a instvar varible doesn't seem to be passed in # properly to the menubutton function. # #---------------------------------------------------------------------- Editor instproc chooseTrafficSource {source} { $self tkvar current_source_ set current_source_ $source $self chooseTool addtrafficsource } #---------------------------------------------------------------------- # Editor instproc chooseLossModel {lossmodel} #---------------------------------------------------------------------- Editor instproc chooseLossModel {lossmodel} { $self tkvar current_lossmodel_ set current_lossmodel_ $lossmodel $self chooseTool addlossmodel } #---------------------------------------------------------------------- # #---------------------------------------------------------------------- Editor instproc popupCanvasSet { type } { $self instvar SharedEnv edit_state_ state_buttons_ # Release last state button, press down new one if [info exists edit_state_] { $state_buttons_($edit_state_) configure -relief raised } set edit_state_ $type if [info exists state_buttons_($type)] { $state_buttons_($type) configure -relief sunken } $self setCursor "$type" switch "$SharedEnv(Cursor)" { Cut { set SharedEnv(Message) Cut $self setCursor "Cut" #cutCopySelected Cut Imp_Selected 1 #set SharedEnv(Message) Select #enableSelectionButtons } Paste { if {$SharedEnv(Cut) == ""} { setCursor "Select" set SharedEnv(Message) Select enableSelectionButtons } } Link - Node - Queue - Agent - Text { set SharedEnv(Sub-Cursor) "" #$SharedEnv(CurrentCanvas) delete SharedEnv(curline) #$SharedEnv(CurrentCanvas) delete selector $SharedEnv(CurrentCanvas) dctag set SharedEnv(Message) $SharedEnv(Cursor) #deselectAll #disableSelectionButtons } Select { set SharedEnv(Message) $SharedEnv(Cursor) #deselectAll #enableSelectionButtons } Print { #printRaise .print return } } focus $SharedEnv(CurrentCanvas) } #---------------------------------------------------------------------- # #---------------------------------------------------------------------- Editor instproc newFile {} { set editor [new Editor ""] } #---------------------------------------------------------------------- # #---------------------------------------------------------------------- Editor instproc openFile {} { $self instvar editorwindow_ # $self tkvar openFile_ set openFile_ [tk_getOpenFile \ -filetypes {{{Nam Editor} {.ns .enam}} \ {{All Files} {*}}} \ -parent $editorwindow_] if {$openFile_ == ""} { return } set editor [new Editor $openFile_] return } #---------------------------------------------------------------------- # Editor instproc doSave {} # - Saves the file if save_filename_ is defined otherwise it # calls doSaveAs #---------------------------------------------------------------------- Editor instproc doSave {} { $self instvar save_filename_ if {"$save_filename_" != ""} { $self writeFile $save_filename_ } else { $self doSaveAs } } #---------------------------------------------------------------------- # Editor instproc doSaveAs {} # - brings up a saveas dialog box and if the filename exists it calls # writeFile to write out the nam editor ns script #---------------------------------------------------------------------- Editor instproc doSaveAs {} { $self instvar save_filename_ editorwindow_ set filename [tk_getSaveFile -defaultextension ".ns" \ -filetypes {{{Nam Editor} {.ns .enam}}} \ -parent $editorwindow_] if {"$filename" != ""} { $self writeFile $filename } } #---------------------------------------------------------------------- # Editor instproc writeFile {filename} # - calls saveasns to write out the nam generate ns script to a file # and raises a message if a problem occurred. # - "saveasns" is part of enetmodel.cc:command #---------------------------------------------------------------------- Editor instproc writeFile {filename} { $self instvar netmodel_ save_filename_ editorwindow_ if {"$filename" != ""} { regexp {(.*)[.]ns} $filename matched filename_root catch {$netmodel_ saveasns $filename $filename_root} error if {![info exists error]} { $self msgRaise .alert "Nam File Error" "ERROR: Unable to save file: $filename." } else { set save_filename_ $filename wm title $editorwindow_ "Nam Editor - $save_filename_" update } } } #---------------------------------------------------------------------- # #---------------------------------------------------------------------- Editor instproc runNs {} { $self instvar save_filename_ if {$save_filename_ != ""} { set filename $save_filename_ catch {exec ns $filename &} error if {[info exists error]} { if {[regexp {([0-9]+)} $error matched process_id]} { $self msgRaise .alert "Nam - Ns id $process_id" "Ns should be running as process id $process_id.\n\ The result will be shown when it finishes." } else { $self msgRaise .alert "Nam - Ns Error" "Ns was unable to run. \n\ The error message reported was:\n\ \[ $error \]" } } } } #---------------------------------------------------------------------- # #---------------------------------------------------------------------- Editor instproc msgRaise {name title message} { $self instvar SharedEnv set w ${name} set SharedEnv(MsgReplace) $SharedEnv(CurrentCanvas) if {![winfo exists $name]} { $self msgRequestor $name } $w.message configure -text "$message" wm title $w $title wm deiconify $w focus $w } #---------------------------------------------------------------------- # #---------------------------------------------------------------------- Editor instproc msgRequestor {name} { $self instvar SharedEnv set w ${name} toplevel $w # wm transient $w . wm protocol $w WM_DELETE_WINDOW {set dummy 1} frame $w.f -borderwidth 0 -highlightthickness 0 frame $w.texttop -borderwidth 0 -highlightthickness 0 frame $w.textbottom -relief raised -bd 1 label $w.message button $w.ok -text "Ok" -command "$self msgLower $w" pack $w.message -in $w.texttop -fill both -expand true pack $w.ok -in $w.textbottom -side bottom -padx 2m -pady 2m pack $w.texttop $w.textbottom -anchor sw -in $w -fill x -expand true pack $w.f -in $w wm withdraw $w } #---------------------------------------------------------------------- # #---------------------------------------------------------------------- Editor instproc msgLower {name} { $self instvar SharedEnv set w ${name} wm withdraw $w } #----------------------------------------------------------------------- # Editor instproc moveToMarkerTime {time} { # - adjusts the current time to the one held by the clicked on # timeslider marker #----------------------------------------------------------------------- Editor instproc moveToMarkerTime {time} { $self instvar slider_model_ $slider_model_ setcurrenttime $time $self setCurrentTime $time } #----------------------------------------------------------------------- # Editor instproc removeMarker {time node_id} # - deletes the node movement value that is associated with # a timeslider marker #----------------------------------------------------------------------- Editor instproc removeMarker {time node_id} { $self instvar netmodel_ $netmodel_ removeNodeMovement $node_id $time $self renderFrame } nam-1.15/tcl/editorNetModel.tcl0000664000076400007660000000333207337332301015302 0ustar tomhnsnam# # Copyright (C) 1998 by USC/ISI # All rights reserved. # # Redistribution and use in source and binary forms are permitted # provided that the above copyright notice and this paragraph are # duplicated in all such forms and that any documentation, advertising # materials, and other materials related to such distribution and use # acknowledge that the software was developed by the University of # Southern California, Information Sciences Institute. The name of the # University may not be used to endorse or promote products derived from # this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED # WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. # # initialize layout constant NetworkModel/Editor set Wpxmin_ 500.0 NetworkModel/Editor set Wpymin_ 500.0 NetworkModel/Editor set Wpxmax_ 625.0 NetworkModel/Editor set Wpymax_ 625.0 #NetworkModel/Editor set Wpxmin_ 0.0 #NetworkModel/Editor set Wpymin_ 0.0 #NetworkModel/Editor set Wpxmax_ 100.0 #NetworkModel/Editor set Wpymax_ 100.0 NetworkModel/Editor instproc init {animator tracefile} { # Tracefile maybe a space which indicates that # a new nam editor window is being created eval $self next $animator {$tracefile} NetworkModel/Editor instvar Wpxmax_ Wpymax_ Wpxmin_ Wpymin_ $self set_range $Wpxmin_ $Wpymin_ $Wpxmax_ $Wpymax_ } NetworkModel/Editor instproc set_range {xmin ymin xmax ymax } { $self instvar Wpxmin_ Wpymin_ Wpxmax_ Wpymax_ set Wpxmin_ $xmin set Wpymin_ $ymin set Wpxmax_ $xmax set Wpymax_ $ymax } nam-1.15/tcl/menu_file.tcl0000664000076400007660000002120207052373327014332 0ustar tomhnsnam# # Copyright (C) 1998 by USC/ISI # All rights reserved. # # Redistribution and use in source and binary forms are permitted # provided that the above copyright notice and this paragraph are # duplicated in all such forms and that any documentation, advertising # materials, and other materials related to such distribution and use # acknowledge that the software was developed by the University of # Southern California, Information Sciences Institute. The name of the # University may not be used to endorse or promote products derived from # this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED # WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. # # $Header: /cvsroot/nsnam/nam-1/tcl/menu_file.tcl,v 1.5 2000/02/16 01:01:11 haoboy Exp $ # # Helper functions # proc filesel {w dlg args} { frame $w -borderwidth 0 set next "" set ctr 0 foreach arg $args { if {[string range $arg 0 0]=="-"} { switch [string range $arg 1 end] { "variable" { set next variable } "command" { set next command } "label" { set next label } } } else { if {$next!=""} { set vars($next) $arg } } } global $vars(variable) set $vars(variable) [pwd] frame $w.f0 -relief sunken -borderwidth 2 listbox $w.f0.lb -width 50 -height 10 \ -yscroll "$w.f0.sb set" \ -selectforeground [resource activeForeground] \ -selectbackground [resource activeBackground] \ -highlightthickness 0 scrollbar $w.f0.sb -command "$w.f0.lb yview" \ -highlightthickness 0 pack $w.f0.lb -side left pack $w.f0.sb -side left -fill y pack $w.f0 -side top # We should allow flexible labeling label $w.l2 -text $vars(label) pack $w.l2 -side top -anchor w entry $w.entry -width 50 -relief sunken bind $w.entry \ "checkfile \[set $vars(variable)\] \"w\" $w $dlg \"$vars(command)\"" $w.entry insert 0 [pwd] bind $w.entry \ "[bind Entry ];\ set $vars(variable) \[$w.entry get\];break" bind $w.entry \ "[bind Entry ];\ set $vars(variable) \[$w.entry get\];break" bind $w.entry \ "[bind Entry ];\ set $vars(variable) \[$w.entry get\];break" bind $w.f0.lb <1> "%W selection set \[%W nearest %y\];\ $w.entry delete 0 end;\ set $vars(variable) \[pwd\]/\[%W get \[%W nearest %y\]\]; \ $w.entry insert 0 \[pwd\]/\[%W get \[%W nearest %y\]\]" bind $w.f0.lb \ "checkfile \[set $vars(variable)\] \"w\" $w $dlg \"$vars(command)\"" pack $w.entry -side top -anchor w -fill x -expand true checkfile [pwd] "r" $w $dlg "" return $w } proc checkfile {file op w dlg cmd} { if {[file isdirectory $file]} { $w.entry delete 0 end cd $file $w.entry insert 0 [pwd] $w.f0.lb delete 0 end # insert the parent dir, because glob won't generate it $w.f0.lb insert end .. foreach i [glob *] { $w.f0.lb insert end $i } } elseif {[file isfile $file]} { if {$op == "r"} { set flag [file readable $file] } else { set flag [file writable $file] } if $flag { eval $cmd destroy $dlg } else { errorpopup "Error" "File $file is not writable" } } else { # Is it a wild card filter? set dirname [file dirname $file] set fname [file tail $file] if {$dirname != ""} { if [catch "cd $dirname"] { # bail out eval $cmd destroy $dlg } } set flist [glob -nocomplain $fname] $w.entry delete 0 end $w.entry insert 0 [pwd] $w.f0.lb delete 0 end if [llength $flist] { $w.f0.lb insert end .. foreach i $flist { $w.f0.lb insert end $i } } else { # not expandable, try write it if {$op == "w"} { eval $cmd destroy $dlg } else { errorpopup "Error" "File $file is not writable" } } } } Animator instproc save_layout {} { $self instvar netModel tlw_ $self tkvar savefile toplevel $tlw_.save set w $tlw_.save wm title $w "Save layout" frame $w.f -borderwidth 1 -relief raised pack $w.f -side top -fill both -expand true filesel $w.f.sel $w -variable [$self tkvarname savefile] \ -command "$netModel savelayout \[set [$self tkvarname savefile]\]" \ -label "File to save to:" pack $w.f.sel -side top -fill both -expand true frame $w.f.btns -borderwidth 0 pack $w.f.btns -side top -fill x button $w.f.btns.save -text Save \ -command "$self do_save_layout $w.f.sel $w" pack $w.f.btns.save -side left -fill x -expand true button $w.f.btns.cancel -text Cancel -command "destroy $w" pack $w.f.btns.cancel -side left -fill x -expand true set savefile [pwd] } Animator instproc do_save_layout {w dlg} { $self instvar netModel $self tkvar savefile set t $savefile puts "save to file $t" checkfile $t "w" $w $dlg "$netModel savelayout $t" } Animator instproc disablefile {w} { $w.entry configure -state disabled \ -foreground [option get . disabledForeground Nam] $w.l2 configure -foreground [option get . disabledForeground Nam] $w.f0.lb configure -foreground [option get . disabledForeground Nam] } Animator instproc normalfile {w filevar} { $self tkvar $filevar $w.entry configure -state normal \ -foreground [option get . foreground Nam] set $filevar [$w.entry get] $w.l2 configure -foreground [option get . foreground Nam] $w.f0.lb configure -foreground [option get . foreground Nam] } Animator instproc print_view { viewobject windowname } { $self tkvar printfile printto $self instvar tlw_ set p print if {[winfo exists $tlw_.$windowname-$p]} { puts "Quit due to duplicate print view window!" } # toplevel .print # set w .print # wm title $w "Print nam animation" toplevel $tlw_.$windowname-$p set w $tlw_.$windowname-$p wm title $w "Print $windowname" frame $w.f -borderwidth 1 -relief raised pack $w.f -side top -fill both -expand true frame $w.f.f0 pack $w.f.f0 -side top -fill x label $w.f.f0.l -text "Print to:" pack $w.f.f0.l -side left $self tkvar printto radiobutton $w.f.f0.r1 -text "Printer" -variable [$self tkvarname printto] \ -value printer -command "$self disablefile $w.f.sel;\ $w.f.f1.e configure -state normal -foreground \ [option get . foreground Nam];\ $w.f.f1.l configure -foreground [option get . foreground Nam];\ set [$self tkvarname printfile] \[$w.f.f1.e get\]" pack $w.f.f0.r1 -side left radiobutton $w.f.f0.r2 -text "File" -variable [$self tkvarname printto] \ -value file -command "$self normalfile $w.f.sel printfile;\ $w.f.f1.e configure -state disabled -foreground \ [option get . disabledForeground Nam];\ $w.f.f1.l configure -foreground \ [option get . disabledForeground Nam]" pack $w.f.f0.r2 -side left frame $w.f.f1 pack $w.f.f1 -side top -fill x label $w.f.f1.l -text "Print command:" pack $w.f.f1.l -side left entry $w.f.f1.e pack $w.f.f1.e -side left -fill x -expand true bind $w.f.f1.e "[bind Entry ];\ set [$self tkvarname printfile] \[$w.f.f1.e get\];break" bind $w.f.f1.e \ "$self print_animation $viewobject $w" set printer "" global env catch {set printer $env(PRINTER)} if {$printer!=""} { $w.f.f1.e insert 0 "lpr -P$printer " } else { $w.f.f1.e insert 0 "lpr " } filesel $w.f.sel $w -variable [$self tkvarname printfile] \ -command "$viewobject psview \[set [$self tkvarname printfile]\]" \ -label "File to save to:" pack $w.f.sel -side top -fill both -expand true frame $w.f.btns -borderwidth 0 pack $w.f.btns -side top -fill x button $w.f.btns.print -text Print \ -command "$self print_animation $viewobject $w" pack $w.f.btns.print -side left -fill x -expand true button $w.f.btns.cancel -text Cancel -command "destroy $w" pack $w.f.btns.cancel -side left -fill x -expand true set printto printer set printfile [$w.f.f1.e get] $self disablefile $w.f.sel } Animator instproc print_animation {viewobject w} { $self tkvar printto printfile if {$printto=="file"} { checkfile $printfile "w" $w.f.sel $w \ "$viewobject psview $printfile" } else { $viewobject psview /tmp/nam.ps puts [eval "exec $printfile /tmp/nam.ps"] catch {destroy $w} } } Animator instproc show_subtrees {} { $self instvar netModel $netModel showtrees } nam-1.15/tcl/menu_view.tcl0000664000076400007660000001530007331356316014366 0ustar tomhnsnam# # Copyright (C) 1998 by USC/ISI # All rights reserved. # # Redistribution and use in source and binary forms are permitted # provided that the above copyright notice and this paragraph are # duplicated in all such forms and that any documentation, advertising # materials, and other materials related to such distribution and use # acknowledge that the software was developed by the University of # Southern California, Information Sciences Institute. The name of the # University may not be used to endorse or promote products derived from # this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED # WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. # # $Header: /cvsroot/nsnam/nam-1/tcl/menu_view.tcl,v 1.10 2001/07/30 22:16:46 mehringe Exp $ Animator instproc new_view {} { $self instvar netModel viewctr nam_name netViews tlw_ toplevel $tlw_.v$viewctr set w $tlw_.v$viewctr incr viewctr wm title $w $nam_name frame $w.f #frame is just to sink the newView frame $w.f.f -borderwidth 2 -relief sunken # Do not use editview!! $netModel view $w.f.f.net set newView $w.f.f.net lappend netViews $newView pack $w.f.f.net -side top -expand true -fill both $newView xscroll $w.f.hsb scrollbar $w.f.hsb -orient horizontal -width 10 -borderwidth 1 \ -command "$newView xview" $w.f.hsb set 0.0 1.0 pack $w.f.hsb -side bottom -fill x pack $w.f.f -side top -fill both -expand true frame $w.f2 $newView yscroll $w.f2.vsb scrollbar $w.f2.vsb -orient vertical -width 10 -borderwidth 1 \ -command "$newView yview" $w.f2.vsb set 0.0 1.0 pack $w.f2.vsb -side top -fill y -expand true frame $w.f2.l -width 12 -height 12 pack $w.f2.l -side top frame $w.ctrl -borderwidth 2 -relief groove $self build-zoombar $newView $w.ctrl $w pack $w.ctrl -side left -fill y pack $w.f2 -side right -fill y pack $w.f -side left -fill both -expand true $self window_bind $w $self view_bind $newView } Animator instproc energy_view {} { $self instvar netView now vslider windows nam_name graphs tlw_ tracefile set name "node_energy" set graphtrace [new Trace $tracefile $self] set netgraph [new EnergyNetworkGraph] $windows(title) configure -text "Please wait - reading tracefile..." update set maxtime [$graphtrace maxtime] set mintime [$graphtrace mintime] $graphtrace connect $netgraph $netgraph timerange $mintime $maxtime #force the entire tracefile to be read $graphtrace settime $maxtime 1 set w $tlw_.graph if {[winfo exists $w]==0} { frame $w pack $w -side top -fill x -expand true -after [$vslider frame] } lappend graphs $netgraph frame $w.f$name -borderwidth 2 -relief groove pack $w.f$name -side top -expand true -fill both label $w.f$name.pr -bitmap pullright -borderwidth 1 -relief raised bind $w.f$name.pr \ "$self viewgraph_label \"node of no energy left\" \ $w.f$name $w.f$name.pr $netgraph" pack $w.f$name.pr -side left $netgraph view $w.f$name.view #set the current time in the graph $netgraph settime $now pack $w.f$name.view -side left -expand true \ -fill both frame $w.f$name.l2 -width [expr [$vslider swidth]/2] -height 30 pack $w.f$name.l2 -side left $windows(title) configure -text $nam_name } Animator instproc view_drag_start {view x y} { $self instvar drag set drag($view,x) $x set drag($view,y) $y } Animator instproc view_drag_motion {view x y} { $self instvar drag set MAX_DRAG_LENGTH 0.008 set dx [expr ($drag($view,x) - $x)] set dy [expr ($drag($view,y) - $y)] if {$dx > $MAX_DRAG_LENGTH} { set dx $MAX_DRAG_LENGTH } if {$dx < -$MAX_DRAG_LENGTH} { set dx -$MAX_DRAG_LENGTH } if {$dy > $MAX_DRAG_LENGTH} { set dy $MAX_DRAG_LENGTH } if {$dy < -$MAX_DRAG_LENGTH} { set dy -$MAX_DRAG_LENGTH } $view xview scroll $dx world $view yview scroll $dy world $self view_drag_start $view $x $y } # Creation of an EditView. Currently only one editview is allowed. Animator instproc new_editview {} { $self instvar netModel nam_name NETWORK_MODEL tlw_ #if {$NETWORK_MODEL == "NetworkModel"} { # tk_messageBox -title "Warning" -message \ # "Editing works only with auto layout." \ # -type ok # return #} if [winfo exists $tlw_.editview] { return } toplevel $tlw_.editview set w $tlw_.editview wm title $w $nam_name frame $w.f #frame is just to sink the newView frame $w.f.f -borderwidth 2 -relief sunken $netModel editview $w.f.f.edit set newView $w.f.f.edit pack $w.f.f.edit -side top -expand true -fill both $newView xscroll $w.f.hsb scrollbar $w.f.hsb -orient horizontal -width 10 -borderwidth 1 \ -command "$newView xview" $w.f.hsb set 0.0 1.0 pack $w.f.hsb -side bottom -fill x pack $w.f.f -side top -fill both -expand true frame $w.f2 $newView yscroll $w.f2.vsb scrollbar $w.f2.vsb -orient vertical -width 10 -borderwidth 1 \ -command "$newView yview" $w.f2.vsb set 0.0 1.0 pack $w.f2.vsb -side top -fill y -expand true frame $w.f2.l -width 12 -height 12 pack $w.f2.l -side top # Here we are going to put control buttons, but not now frame $w.ctrl -borderwidth 2 -relief groove $self build-zoombar $newView $w.ctrl $w pack $w.ctrl -side left -fill y pack $w.f2 -side right -fill y pack $w.f -side left -fill both -expand true $self editview_bind $w.f.f.edit } # Interaction in TkView Animator instproc editview_bind { ev } { # If there is some object, then select it; otherwise set current # point and prepare to start a rubber band rectangle bind $ev "$ev setPoint \%x \%y 0" # Add an object to selection bind $ev "$ev setPoint \%x \%y 1" bind $ev "$ev dctag" # If any object is selected, set the object's position to point (x,y); # otherwise set the rubber band rectangle and select all the # objects in that rectangle # Note: we need a default tag for the selection in rubber band. bind $ev "$ev releasePoint \%x \%y" # If any object(s) are selected, move the object's shadow to the # current point; otherwise move the current point and set rubber # band bind $ev "$ev moveTo \%x \%y" } Animator instproc clear_editview_bind { ev } { bind $ev "" bind $ev "" bind $ev "" bind $ev "" bind $ev "" $ev view_mode } nam-1.15/tcl/monitor.tcl0000664000076400007660000003411107334636320014057 0ustar tomhnsnam# # Copyright (C) 1998 by USC/ISI # All rights reserved. # # Redistribution and use in source and binary forms are permitted # provided that the above copyright notice and this paragraph are # duplicated in all such forms and that any documentation, advertising # materials, and other materials related to such distribution and use # acknowledge that the software was developed by the University of # Southern California, Information Sciences Institute. The name of the # University may not be used to endorse or promote products derived from # this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED # WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. # # $Header: /cvsroot/nsnam/nam-1/tcl/monitor.tcl,v 1.9 2001/08/10 01:45:52 mehringe Exp $ set montab(l) graph set montab(n) node set montab(p) monitor set montab(d) monitor set montab(r) monitor set montab(a) monitor Animator instproc graph_info { netView x y } { $self instvar running resume tracefile $self tkvar nowDisp catch {destroy $netView.f} frame $netView.f -relief groove -borderwidth 2 set name [$netView getname $nowDisp $x $y] set type [lindex $name 0] switch $type { "l" { set e1 [lindex $name 1] set e2 [lindex $name 2] frame $netView.f.f1 -borderwidth 2 -relief groove pack $netView.f.f1 -side left label $netView.f.f1.l -text "Graph bandwidth" -font [smallfont] pack $netView.f.f1.l -side top frame $netView.f.f1.f -borderwidth 0 pack $netView.f.f1.f -side top button $netView.f.f1.f.b2 -relief raised -highlightthickness 0 \ -text "Link $e1->$e2" -font [smallfont]\ -command "$self end_info $netView;\ $self viewgraph \"l $e1 $e2\" bw $tracefile" pack $netView.f.f1.f.b2 -side left -fill x -expand true button $netView.f.f1.f.b3 -relief raised -highlightthickness 0 \ -text "Link $e2->$e1" -font [smallfont] \ -command "$self end_info $netView;\ $self viewgraph \"l $e2 $e1\" bw $tracefile" pack $netView.f.f1.f.b3 -side left -fill x -expand true frame $netView.f.f2 -borderwidth 2 -relief groove pack $netView.f.f2 -side left label $netView.f.f2.l -text "Graph loss" -font [smallfont] pack $netView.f.f2.l -side top frame $netView.f.f2.f -borderwidth 0 pack $netView.f.f2.f -side top button $netView.f.f2.f.b2 -relief raised -highlightthickness 0 \ -text "Link $e1->$e2" -font [smallfont]\ -command "$self end_info $netView;\ $self viewgraph \"l $e1 $e2\" loss $tracefile" pack $netView.f.f2.f.b2 -side left -fill x -expand true button $netView.f.f2.f.b3 -relief raised -highlightthickness 0 \ -text "Link $e2->$e1" -font [smallfont] \ -command "$self end_info $netView;\ $self viewgraph \"l $e2 $e1\" loss $tracefile" pack $netView.f.f2.f.b3 -side left -fill x -expand true } } button $netView.f.d -relief raised -highlightthickness 0 \ -text "Dismiss" -font [smallfont]\ -command "$self end_info $netView" pack $netView.f.d -side left -anchor sw place_frame $netView $netView.f $x $y } #----------------------------------------------------------------------- # Animator instproc start_info { netView x y key_} # - Display a popup window with additional information about # some network objects #----------------------------------------------------------------------- Animator instproc start_info { netView x y key_} { $self instvar running resume tracefile $self instvar fid pktType eSrc eDst $self tkvar nowDisp global montab # If the animation is playing save that info so we can resume after the # info window is closed if {($running) || ([winfo exists $netView.f] && ($resume == 1))} { set resume 1 } else { set resume 0 } # Stop the animation while the popup info window is displayed $self stop 1 # Get information about the clicked on object (if any) set text [string trim [$netView info $nowDisp $x $y] "\n"] if { [string length $text] > 0 } { set name [$netView getname $nowDisp $x $y] set fid [$netView getfid $nowDisp $x $y] set pktType [$netView gettype $nowDisp $x $y] set eSrc [$netView getesrc $nowDisp $x $y] set eDst [$netView getedst $nowDisp $x $y] set type [lindex $name 0] if {$type==""} { puts "got an empty object name returned from object $text!" return } catch {destroy $netView.f} # Create frame for popup window frame $netView.f -relief groove -borderwidth 2 # Add text info message to window message $netView.f.msg -width 8c -text $text \ -font [option get . smallfont Nam] pack $netView.f.msg -side top # Add frame to hold buttons frame $netView.f.f pack $netView.f.f -side top -fill x -expand true if {$montab($type)=="monitor"} { button $netView.f.f.b -relief raised -highlightthickness 0 \ -text "Monitor" \ -command "$self monitor $netView $nowDisp $x $y; \ $self end_info $netView" pack $netView.f.f.b -side left -fill x -expand true button $netView.f.f.b1 -relief raised -highlightthickness 0 \ -text "Filter" \ -command "$self filter_menu ; \ $self end_info $netView" pack $netView.f.f.b1 -side left -fill x -expand true } elseif {$montab($type)=="graph"} { button $netView.f.f.b2 -relief raised -highlightthickness 0 \ -text "Graph" \ -command "$self graph_info $netView $x $y" pack $netView.f.f.b2 -side left -fill x -expand true } elseif {$montab($type)=="node"} { # Node Buttons set node_id [lindex $name 1] button $netView.f.f.b3 -relief raised -highlightthickness 0 \ -text "Filter" \ -command "$self node_filter_menu $node_id; \ $self end_info $netView" pack $netView.f.f.b3 -side left -fill x -expand true set node_tclscript [$netView get_node_tclscript $node_id] if {$node_tclscript != ""} { set node_tclscript_label [$netView get_node_tclscript_label $node_id] button $netView.f.f.b4 -relief raised -highlightthickness 0 \ -text $node_tclscript_label \ -command $node_tclscript pack $netView.f.f.b4 -side left -fill x -expand true } } button $netView.f.f.d -relief raised -highlightthickness 0 \ -text "Dismiss" \ -command "$self end_info $netView" pack $netView.f.f.d -side left -fill x -expand true place_frame $netView $netView.f $x $y } else { $self end_info $netView } } Animator instproc node_filter_menu {nodeId} { $self tkvar setSrc_ setDst_ toplevel .nodeFilterMenu set w .nodeFilterMenu wm title $w "Only show packet with this node as its " checkbutton $w.c1 -text "Source address" \ -variable [$self tkvarname setSrc_] -anchor w checkbutton $w.c2 -text "Destination address" \ -variable [$self tkvarname setDst_] -anchor w button $w.b1 -relief raised -highlightthickness 0 \ -text "Close" -command "$self set_node_filters $w $nodeId" pack $w.c1 $w.c2 $w.b1 -side top -fill x -expand true } Animator instproc filter_menu {} { $self instvar colorarea colorn $self tkvar setFid_ setSrc_ setDst_ setTraffic_ filter_action toplevel .filterMenu set w .filterMenu wm title $w "Only show packet with the same" frame $w.f1 -borderwidth 2 -relief groove pack $w.f1 -side top -fill x checkbutton $w.f1.c1 -text "Flow id" \ -variable [$self tkvarname setFid_] -anchor w checkbutton $w.f1.c2 -text "Source address" \ -variable [$self tkvarname setSrc_] -anchor w checkbutton $w.f1.c3 -text "Destination address" \ -variable [$self tkvarname setDst_] -anchor w checkbutton $w.f1.c4 -text "traffic type" \ -variable [$self tkvarname setTraffic_] -anchor w pack $w.f1.c1 $w.f1.c2 $w.f1.c3 $w.f1.c4 -side top -fill x -expand true frame $w.f2 -borderwidth 2 -relief groove pack $w.f2 -side top -fill x frame $w.f2.a1 -borderwidth 2 -relief groove radiobutton $w.f2.a1.r -text "Color packet" \ -variable [$self tkvarname filter_action] -value color -anchor w button $w.f2.a1.b -relief raised -highlightthickness 0 \ -text "Color" -command "$self selectColor" set colorarea $w.f2.a1.c text $w.f2.a1.c -width 15 -height 1 if {[info exists colorn] } { $colorarea insert 0.0 $colorn catch { $colorarea tag add bgcolor 0.0 end } $colorarea tag configure bgcolor -background $colorn } else { $colorarea insert 0.0 "black" } pack $w.f2.a1.r $w.f2.a1.b $w.f2.a1.c -side left -fill y -expand true radiobutton $w.f2.a2 -text "Show only packet" \ -variable [$self tkvarname filter_action] -value showpkt -anchor w radiobutton $w.f2.a3 -text "Don't show packet" \ -variable [$self tkvarname filter_action] -value hidepkt -anchor w pack $w.f2.a1 $w.f2.a2 $w.f2.a3 -side top -fill x -expand true button $w.b1 -relief raised -highlightthickness 0 \ -text "Close" -command "$self set_filters $w" pack $w.b1 -side top -fill x -expand true set filter_action color } Animator instproc resetAll {} { $self instvar netModel $self tkvar setFid_ setSrc_ setDst_ setTraffic_ $self tkvar setFidC_ setSrcC_ setDstC_ setTrafficC_ set setFid_ 0 set setSrc_ 0 set setDst_ 0 set setTraffic_ 0 set setFidC_ 0 set setSrcC_ 0 set setDstC_ 0 set setTrafficC_ 0 $netModel resetFilter } Animator instproc set_filters {w} { $self instvar fid netModel pktType eSrc eDst $self tkvar setFid_ setSrc_ setDst_ setTraffic_ filter_action if {$filter_action=="showpkt"} { if $setFid_ { $netModel fid_filter $fid } else { $netModel fid_filter -1 } if $setTraffic_ { $netModel traffic_filter $pktType } else { $netModel traffic_filter "" } if $setSrc_ { $netModel src_filter $eSrc } else { $netModel src_filter -1 } if $setDst_ { $netModel dst_filter $eDst } else { $netModel dst_filter -1 } } elseif {$filter_action=="color"} { if $setFid_ { $netModel color-fid $fid } else { $netModel color-fid -1 } if $setTraffic_ { $netModel color-traffic $pktType } else { $netModel color-traffic "" } if $setSrc_ { $netModel color-src $eSrc } else { $netModel color-src -1 } if $setDst_ { $netModel color-dst $eDst } else { $netModel color-dst -1 } } elseif {$filter_action=="hidepkt"} { if $setFid_ { $netModel hide-fid $fid } else { $netModel hide-fid -1 } if $setTraffic_ { $netModel hide-traffic $pktType } else { $netModel hide-traffic "" } if $setSrc_ { $netModel hide-src $eSrc } else { $netModel hide-src -1 } if $setDst_ { $netModel hide-dst $eDst } else { $netModel hide-dst -1 } } destroy $w } Animator instproc set_node_filters {w nodeId} { $self instvar netModel $self tkvar setSrc_ setDst_ if $setSrc_ { $netModel src_filter $nodeId } else { $netModel src_filter -1 } if $setDst_ { $netModel dst_filter $nodeId } else { $netModel dst_filter -1 } destroy $w } #----------------------------------------------------------------------- # Animator instproc end_info {netView} # - Delete the more info popup window #----------------------------------------------------------------------- Animator instproc end_info {netView} { $self instvar resume catch { destroy $netView.f } if $resume "$self play 1" } Animator instproc monitor {netView now x y} { $self instvar windows $self tkvar showpanel set mon [$netView new_monitor $now $x $y] set showpanel(monitor) 1 if {$mon>=0} { $self create_monitor $netView $mon $now } } # Used exclusively by annotation command Animator instproc monitor_agent {node agent} { $self instvar netViews netModel $self tkvar nowDisp showpanel set netView [lindex $netViews 0] set mon [$netModel new_monitor_agent $node $agent] set showpanel(monitor) 1 if {$mon>=0} { $self create_monitor $netView $mon $nowDisp } } Animator instproc create_monitor {netView mon now} { $self instvar windows monitors maxmon frame $windows(monitor).f$maxmon -borderwidth 2 -relief groove pack $windows(monitor).f$maxmon -side left -fill y set monitors($mon) $windows(monitor).f$maxmon set w $windows(monitor).f$maxmon message $w.l -aspect 300 -text "\[$mon\] [$netView monitor $now $mon]" \ -anchor nw -font [option get . smallfont Nam] pack $w.l -side top -anchor w -fill both -expand true # button $w.b -text "Hide" -borderwidth 1 \ # -command "$self delete_monitor $netView $mon" # pack $w.b -side top bind $w.l \ "$w.l configure -background [option get . activeBackground Nam]" bind $w.l \ "$w.l configure -background [option get . background Nam]" bind $w.l <1> "$self delete_monitor $netView $mon" incr maxmon } Animator instproc update_monitors {netView now} { $self instvar monitors foreach mon [array names monitors] { set text [$netView monitor $now $mon] if {$text==""} { $self delete_monitor $netView $mon } else { set text "\[$mon\] $text" if {[$monitors($mon).l configure -text]!=$text} { $monitors($mon).l configure -text "$text" } } } } Animator instproc delete_monitor {netView mon} { $self instvar monitors $netView delete_monitor $mon catch {destroy $monitors($mon)} unset monitors($mon) $self redrawFrame } nam-1.15/tcl/nam-default.tcl0000644000076400007660000000324011655017162014560 0ustar tomhnsnam# # Copyright (C) 1998 by USC/ISI # All rights reserved. # # Redistribution and use in source and binary forms are permitted # provided that the above copyright notice and this paragraph are # duplicated in all such forms and that any documentation, advertising # materials, and other materials related to such distribution and use # acknowledge that the software was developed by the University of # Southern California, Information Sciences Institute. The name of the # University may not be used to endorse or promote products derived from # this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED # WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. # # Initialization of constants # # $Header: /cvsroot/nsnam/nam-1/tcl/nam-default.tcl,v 1.9 2011/10/31 03:51:21 tom_henderson Exp $ set tk_strictMotif 0 set uscale(m) 1e-3 set uscale(u) 1e-6 set uscale(k) 1e3 set uscale(K) 1e3 set uscale(M) 1e6 # Overwrite this in your .nam.tcl to use derived animator-control class set ANIMATOR_CONTROL_CLASS AnimControl # Class variables Animator set id_ 0 AnimControl set instance_ "" AnimControl set INIT_PORT_ 20000 ;# Arbitrary value AnimControl set PORT_FILE_ "[lindex [glob ~] 0]/.nam-port" ;# File which stores server port AnimControl set ANIMATOR_CLASS_ Animator ;# Overwrite this in .nam.tcl to use derived animator class Animator set welcome " Welcome to NamGraph 1.15 " nam-1.15/tcl/nam-lib.tcl0000664000076400007660000002157707337076630013730 0ustar tomhnsnam# # Copyright (c) 1993-1998 Regents of the University of California. # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: # 1. Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # 2. Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # 3. All advertising materials mentioning features or use of this software # must display the following acknowledgement: # This product includes software developed by the Computer Systems # Engineering Group at Lawrence Berkeley Laboratory. # 4. Neither the name of the University nor of the Laboratory may be used # to endorse or promote products derived from this software without # specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE # ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. # # @(#) $Header: /cvsroot/nsnam/nam-1/tcl/nam-lib.tcl,v 1.23 2001/08/17 02:12:40 mehringe Exp $ (LBL) # proc time2real v { global uscale foreach u [array names uscale] { set k [string first $u $v] if { $k >= 0 } { set scale $uscale($u) break } } if { $k > 0 } { set v [string range $v 0 [expr $k - 1]] set v [expr $scale * $v] } return $v } #XXX proc bw2real v { return [time2real $v] } proc step_format t { if { $t < 1e-3 } { return [format "%.1f" [expr $t * 1e6]]us } elseif { $t < 1. } { return [format "%.1f" [expr $t * 1e3]]ms } return [format "%.1f" $t]s } proc yesno attr { set v [resource $attr] if { [string match \[0-9\]* $v] } { return $v } if { $v == "true" || $v == "True" || $v == "t" || $v == "y" || $v == "yes" } { return 1 } return 0 } proc resource s { return [option get . $s Nam] } #XXX proc mapf s { return $s } # XXX # I got a problem with the font setups in nam.tcl. Currently they are added # into the Tk option database by "option add Nam. # " It seems to me that this requires the application name (as # initialized in Tk_Init() or set by Tk_SetAppName) to be "nam". # # This is not desirable, however, because sometimes when we need to compare # two trace files, we'd like to use the peer functionality to synchronize # the execution of two nam instances. It requires that different nam # instances have different application names. When I allow # customized application names, I found that nam no longer recognizes the # font resources, e.g., Nam.smallfont. Then I put all the following setups # starting with "Nam." into the following function. # # Q: Is this harmful? Any better ideas? proc set_app_options { name } { global helv10 helv10b helv10o helv12 helv12b helv14 helv14b times14 \ ff tcl_platform option add $name.foundry adobe startupFile set ff [option get . foundry $name] set helv10 [mapf "-$ff-helvetica-medium-r-normal--*-100-75-75-*-*-*-*"] set helv10b [mapf "-$ff-helvetica-bold-r-normal--*-100-75-75-*-*-*-*"] set helv10o [mapf "-$ff-helvetica-bold-o-normal--*-100-75-75-*-*-*-*"] set helv12 [mapf "-$ff-helvetica-medium-r-normal--*-120-75-75-*-*-*-*"] set helv12b [mapf "-$ff-helvetica-bold-r-normal--*-120-75-75-*-*-*-*"] set helv14 [mapf "-$ff-helvetica-medium-r-normal--*-140-75-75-*-*-*-*"] set helv14b [mapf "-$ff-helvetica-bold-r-normal--*-140-75-75-*-*-*-*"] set times14 [mapf "-$ff-times-medium-r-normal--*-140-75-75-*-*-*-*"] if {$tcl_platform(platform)!="windows"} { option add *font $helv12b startupFile option add *Font $helv12b startupFile } option add *Balloon*background yellow widgetDefault option add *Balloon*foreground black widgetDefault option add *Balloon.info.wrapLegnth 3i widgetDefault option add *Balloon.info.justify left widgetDefault option add *Balloon.info.font \ [mapf "-$ff-lucida-medium-r-normal-sans-*-120-*"] widgetDefault option add $name.disablefont $helv10o startupFile option add $name.smallfont $helv10b startupFile option add $name.medfont $helv12b startupFile option add $name.helpFont $times14 startupFile option add $name.entryFont $helv10 startupFile option add $name.rate 2ms startupFile option add $name.movie 0 startupFile option add $name.granularity 40 startupFile option add $name.pause 1 startupFile } if {$tcl_platform(platform)!="windows"} { option add *foreground black startupFile option add *background gray80 startupFile option add *activeForeground black startupFile option add *activeBackground gray90 startupFile option add *viewBackground gray90 startupFile option add *disabledForeground gray50 startupFile } else { # We need a default foreground for dialog boxes # (checkfile in menu_file.tcl) option add *foreground SystemButtonText startupFile option add *background SystemButtonFace startupFile option add *viewBackground SystemButtonHighlight startupFile option add *activeForeground SystemHighlightText startupFile option add *activeBackground SystemHighlight startupFile option add *disabledForeground SystemDisabledText startupFile } option add *Radiobutton.relief flat startupFile # # use 2 pixels of padding by default # option add *padX 2 startupFile option add *padY 2 startupFile # # don't put tearoffs in pull-down menus # option add *tearOff 0 startupFile proc smallfont { } { return [option get . smallfont Nam] } proc mediumfont { } { return [option get . medfont Nam] } # # helper functions # proc nam_angle { v } { switch -regexp $v { ^[0-9\.]+deg$ { regexp {([0-9\.]+)deg$} $v a dval return [expr {fmod($dval,360)/180}] } ^[0-9\.]+$ { return $v } ^up-right$ - ^right-up$ { return 0.25 } ^up$ { return 0.5 } ^up-left$ - ^left-up$ { return 0.75 } ^left$ { return 1. } ^left-down$ - ^down-left$ { return 1.25 } ^down$ { return 1.5 } ^down-right$ - ^right-down$ { return 1.75 } default { return 0.0 } } } proc remote_cmd { async interp cmd } { if $async { set rcmd "send -async \"$interp\" {$cmd}" } else { set rcmd "send \"$interp\" {$cmd}" } eval $rcmd } proc get_trace_item { tag traceevent} { set next 0 foreach item $traceevent { if { $next == 1 } { return $item } if { $item == $tag } { set next 1 } } return "" } # Place a frame at (x, y) proc place_frame { w f x y } { # Place popup menu. Copied from start_info() set nh [winfo height $w] set nw [winfo width $w] place $f -x $nw -y $nh -bordermode outside update set ih [winfo reqheight $f] set iw [winfo reqwidth $f] set px $x set py $y if {($px + $iw) > $nw} { set px [expr $x - $iw] if {$px < 0} { set px 0 } } if {($py + $ih) > $nh} { set py [expr $y - $ih] if {$py < 0} {set py 0} } place $f -x $px -y $py -bordermode outside } # Sourcing various TCL scripts # In order to be expanded, there shouldn't be any spaces, etc., after # file names source anim-ctrl.tcl source animator.tcl source balloon.tcl source snapshot.tcl source autoNetModel.tcl source annotation.tcl source node.tcl source netModel.tcl source menu_file.tcl source menu_view.tcl source monitor.tcl source www.tcl source build-ui.tcl source stats.tcl source observer.tcl source observable.tcl source wirelessNetModel.tcl source NamgraphView.tcl source NamgraphModel.tcl source TimesliderModel.tcl source TimesliderView.tcl source TimesliderNamgraphView.tcl source Editor.tcl #source EditorMenu.tcl source Editor-FileParser.tcl source editorNetModel.tcl source nam-default.tcl proc nam_init { trace_file args } { # Create animation control object # anim-ctrl.tcl: AnimControl instproc init{} set actrl [new AnimControl $trace_file $args] # User-defined initialization hook nam_init_hook } # XXX # User-defined initialization hook. Perhaps we need an OO approach here? proc nam_init_hook {} { } # Random number generator initialization set defaultRNG [new RNG] $defaultRNG seed 1 $defaultRNG default # # Because defaultRNG is not a bound variable but is instead # just copied into C++, we enforce this. # (A long-term solution be to make defaultRNG bound.) # --johnh, 30-Dec-97 # trace variable defaultRNG w { abort "cannot update defaultRNG once assigned"; } nam-1.15/tcl/NamgraphModel.tcl0000664000076400007660000000430107226442175015107 0ustar tomhnsnamClass NamgraphModel -superclass Observable NamgraphModel instproc init { nid obs } { $self next $self instvar id_ datacount Maxy_ Maxx_ animator_id_ timeslider_swidth_ set id_ $nid set datacount 0 set animator_id_ $obs set Maxy_ [$obs set highest_seq($id_)] set Maxx_ [$obs set maxtime] } NamgraphModel instproc id {} { $self instvar id_ return $id_ } NamgraphModel instproc animator {} { $self instvar animator_id_ return $animator_id_ } NamgraphModel instproc adddata { ob mid x y ymark } { $self instvar dataname datacount id_ dataplotx dataploty $self instvar plotmark plotcolor dataplotym $self tkvar midbuilder if ![info exists midbuilder($mid)] { set midbuilder($mid) $datacount set mname [$ob set filter_id($mid)] set pmark [$ob set plotmark($id_.$mid)] set pcolor [$ob set plotcolor($id_.$mid)] set pcolor [$ob set colorname($pcolor)] set dataname($datacount) $mname set plotmark($datacount) $pmark set plotcolor($datacount) $pcolor incr datacount } set current_index $midbuilder($mid) lappend dataplotx($current_index) $x lappend dataploty($current_index) $y set dataplotym($y) $ymark } NamgraphModel instproc verifyymark { index } { $self instvar dataplotym if [info exists dataplotym($index)] { return $dataplotym($index) } return "" } NamgraphModel instproc startview {title} { $self instvar Maxy_ Maxx_ set vob [new NamgraphView $title $self 0 $Maxx_ 0 $Maxy_ 1] $self addObserver $vob } #---------------------------------------------------------------------- # NamgraphModel instproc update { arg } # - Must have update # - two possible args # 1. Animator current time - single value # 2. trace event - a list # # - Requires that all trace events have a -t flag with a value #---------------------------------------------------------------------- NamgraphModel instproc update { arg } { # Check to see if it is a trace event set now [get_trace_item "-t" $arg] if { $now == "" } { # no -t flag so assume it must be a single value set now $arg $self notifyObservers $now } else { # arg is trace event, what to do ? } } nam-1.15/tcl/NamgraphView.tcl0000664000076400007660000003617707467063362015005 0ustar tomhnsnam#Copyright (C) 1998 by USC/ISI # All rights reserved. # # Redistribution and use in source and binary forms are permitted # provided that the above copyright notice and this paragraph are # duplicated in all such forms and that any documentation, advertising # materials, and other materials related to such distribution and use # acknowledge that the software was developed by the University of # Southern California, Information Sciences Institute. The name of the # University may not be used to endorse or promote products derived from # this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED # WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. # Class NamgraphView -superclass Observer NamgraphView set WinWidth 600 NamgraphView set WinHeight 400 NamgraphView instproc init { title ob minx maxx miny maxy tag } { $self next $self instvar id_ title_ modelobj_ winname_ minx_ maxx_ miny_ maxy_ $self instvar slidetag_ timeslider set title_ $title set modelobj_ $ob set slidetag_ $tag #window's name set winname_ .namgraph-$id_ set minx_ $minx set miny_ $miny set maxx_ $maxx set maxy_ $maxy if { $slidetag_ != 1 } { set timeslider(swidth) [$modelobj_ set timeslider_swidth_] } $self formwindow } NamgraphView instproc formwindow {} { $self instvar title_ winname_ minx_ maxx_ miny_ maxy_ id_ modelobj_ $self instvar slidetag_ timeslider toplevel $winname_ set s $winname_ wm title $s "$title_-$id_" set welcome [Animator set welcome] # # Menubar # set width_ [NamgraphView set WinWidth] set height_ [NamgraphView set WinHeight] frame $s.menubar -bd 2 -width $width_ -relief raised menubutton $s.menubar.file -underline 0 -text "File" \ -menu $s.menubar.file.menu menu $s.menubar.file.menu $s.menubar.file.menu add command -label "Save As ..." \ -underline 0 -command "puts OJ" \ -state disabled # collect garbage ??? $s.menubar.file.menu add command -label "Close" \ -underline 1 -command "destroy $winname_" menubutton $s.menubar.edit -underline 0 -text "Edit" \ -menu $s.menubar.edit.menu -state disabled menu $s.menubar.edit.menu $s.menubar.edit.menu add command -label "Preferences" \ -underline 0 -command "puts OJ" -state disabled # find menu items in the model menubutton $s.menubar.view -underline 0 -text "View" \ -menu $s.menubar.view.menu menu $s.menubar.view.menu foreach menuindex_ [$modelobj_ array names dataname] { set menuname_ [$modelobj_ set dataname($menuindex_)] $self tkvar $menuindex_ set $menuindex_ 1 $s.menubar.view.menu add checkbutton -label $menuname_ \ -variable [$self tkvarname $menuindex_] \ -command "$self RefreshWin $menuindex_" } # Mix old pack with new grid pack $s.menubar.file -side left pack $s.menubar.edit -side left pack $s.menubar.view -side left # # keyboard shortcuts # bind $s "destroy $s" bind $s "destroy $s" bind $s "[AnimControl instance] done" bind $s "[AnimControl instance] done" # # Main Area # frame $s.main -bd 2 canvas $s.main.c -width $width_ -height $height_ -background #ffffff # bind action for zoom etc. $s.main.c bind clickable "$self startclick \%W \%x \%y" $s.main.c bind clickable "$self showclick \%W \%x \%y" $s.main.c bind clickable "$self endshow \%W \%x \%y" $s.main.c bind clickable "$self endclick \%W \%x \%y" bind $s.main.c "$self startrect \%W \%x \%y" bind $s.main.c "$self dragrect \%W \%x \%y" bind $s.main.c "$self endrect \%W \%x \%y" canvas $s.main.c.cl -width 16 -height 400 -background #6b7787 canvas $s.main.c.cr -width 16 -height 400 -background #6b7787 pack $s.main.c.cl -side left -fill y pack $s.main.c.cr -side right -fill y pack $s.main.c -side left -fill both -expand yes $self build.c0 $s.main.c # Synchronize timerslider # if { $slidetag_ == 1 } { # set an_id [$modelobj_ set animator_id_] # frame $s.slider -bd 1 -relief flat # frame $s.slider.timer -bd 1 -relief flat # $an_id build-slider $s.slider.timer # pack $s.slider.timer -side left -expand true -fill x # } if { $slidetag_ == 1 } { frame $s.slider -bd 1 -relief flat set an_id [$modelobj_ set animator_id_] set mslider [$an_id getmainslidermodel] set vslider [new TimesliderNamgraphView $s.slider $mslider] $vslider setattachedView $self set timeslider(swidth) [$vslider set timeslider(swidth)] $modelobj_ set timeslider_swidth_ $timeslider(swidth) $mslider addObserver $vslider } # Status Area frame $s.status -relief flat -borderwidth 1 -background #6b7787 label $s.status.rem -text $welcome -textvariable \ remark -relief sunken pack $s.status.rem -side left -fill both -expand yes # All widgets are in the same column; # and each take up one row. # # Each widget is sticky to all four edges # so that it expands to fit. # grid config $s.menubar -column 0 -row 0 \ -columnspan 1 -rowspan 1 -sticky "snew" grid config $s.main -column 0 -row 1 \ -columnspan 1 -rowspan 1 -sticky "snew" # set slidetag_ 1 if { $slidetag_ == 1 } { grid config $s.slider -column 0 -row 2 \ -columnspan 1 -rowspan 1 -sticky "snew" grid config $s.status -column 0 -row 3 \ -columnspan 1 -rowspan 1 -sticky "snew" } else { grid config $s.status -column 0 -row 2 \ -columnspan 1 -rowspan 1 -sticky "snew" } # # Set up grid for resizing. # # Column 0 (the only one) gets the extra space. grid columnconfigure $s 0 -weight 1 # Row 2 (the main area) gets the extra space. grid rowconfigure $s 1 -weight 1 } NamgraphView instproc RefreshWin { indexname } { # $self tkvar $indexname # $self instvar modelobj_ $self instvar current_win_ $self view_callback $current_win_ # set index_ [set $indexname] # set plotdata [$modelobj_ set dataname($indexname)] # if { $index_ == 1 } { # puts "plot data - $plotdata" # } else { # puts "delete data - $plotdata" # } } NamgraphView instproc build.c0 { w } { $self instvar current_win_ $w set current_win_ $w bind $w "$self view_callback $w" } NamgraphView instproc view_callback { w } { $self instvar modelobj_ slidetag_ $self instvar minx_ maxx_ miny_ maxy_ $w delete all foreach menuindex_ [$modelobj_ array names dataname] { $self tkvar $menuindex_ set menuvalue [set $menuindex_] if { $menuvalue == 1 } { set plotx [$modelobj_ set dataplotx($menuindex_)] set ploty [$modelobj_ set dataploty($menuindex_)] set plotcolor [$modelobj_ set plotcolor($menuindex_)] set plotmark [$modelobj_ set plotmark($menuindex_)] set cnt 0 foreach xvalue $plotx { if { $xvalue > $minx_ && $xvalue < $maxx_ } { $self plot_xy $w $xvalue \ [lindex $ploty $cnt] $minx_ $maxx_ \ $miny_ $maxy_ $plotcolor \ $plotmark &slidetag_ } incr cnt } } } $self draw_scale_xy 0 } NamgraphView instproc plot_xy { c x y minx maxx miny maxy colorname markname traceflag} { $self instvar timeslider # if { $x<$minx || $x>$maxx || $y<$miny || $y>$maxy } { # $self draw_traceline $c $now $minx $maxx # return # } set scrxr [winfo width $c] set scryb [winfo height $c] #adjust the width set scrxr [expr $scrxr-$timeslider(swidth)] set yloc [expr $scryb-(($y-$miny)*$scryb/($maxy-$miny))] set xloc [expr $timeslider(swidth)/2 + (($x-$minx)*$scrxr/($maxx-$minx))] $c create bitmap $xloc $yloc -bitmap "$markname" -tag clickable \ -foreground $colorname # if {$traceflag==1} { # $self draw_traceline $c $x $minx $maxx # } } NamgraphView instproc draw_traceline { t } { # draw trace line $self instvar timeslider minx_ maxx_ current_win_ $self tkvar traceline set c $current_win_ if { ($t < $minx_ ) || ($t > $maxx_) } { $c delete traceline return } set scrxl [expr $timeslider(swidth)/2] set scryt 0 set scrxr [winfo width $c] set scryb [winfo height $c] set scrxr [expr $scrxr-$timeslider(swidth)] #redraw the data on the screen set traceline_x [expr $scrxl + ($t-$minx_)*$scrxr/($maxx_-$minx_)] $c delete traceline $c addtag traceline withtag \ [$c create line $traceline_x 0 $traceline_x $scryb -fill red] } NamgraphView instproc startclick {w x y} { $self instvar draglocation catch {unset draglocation} set draglocation(obj) [$w find closest $x $y] set draglocation(origx) $x set draglocation(origy) $y } # set time to the current point NamgraphView instproc endclick { w x y } { $self instvar draglocation timeslider maxx_ minx_ modelobj_ if { $x == $draglocation(origx) && $y == $draglocation(origy)} { #decide current time set width [winfo width $w] #adjust the width set width [expr $width-$timeslider(swidth)] set x [expr $x-$timeslider(swidth)/2] set t [expr $minx_+($maxx_-$minx_)*$x/$width] # user control part, good solution ? set animator [$modelobj_ animator] $animator settime $t } } #show current packet info NamgraphView instproc showclick { w x y } { set z [$self viewloc_proc $w $x $y] set show_msg "Packet # [lindex $z 1] at time [lindex $z 0]" catch {destroy $w.f} frame $w.f -relief groove -borderwidth 2 message $w.f.msg -width 8c -text $show_msg pack $w.f.msg pack $w.f catch {place_frame $w $w.f [expr $x+10] [expr $y+10]} } NamgraphView instproc endshow { w x y } { catch {destroy $w.f} } #Utilities: obj location processing NamgraphView instproc viewloc_proc { w x y } { $self instvar timeslider \ minx_ maxx_ miny_ maxy_ #map the x,y to time and seqno range set width [winfo width $w] set height [winfo height $w] #adjust the width set width [expr $width-$timeslider(swidth)] set x [expr $x-$timeslider(swidth)/2] set x [expr $minx_+($maxx_-$minx_)*$x/$width] set y [expr $miny_+1.0*($maxy_-$miny_)*($height-$y)/$height] set z [format "%7.5f %10.0f" $x $y ] return $z } #define zoom space NamgraphView instproc startrect {w x y} { $self instvar rectlocation catch {unset rectlocation} set rectlocation(xorig) $x set rectlocation(yorig) $y set tx [expr $x + 1] set ty [expr $y + 1] set rectlocation(obj) \ [$w create rect $x $y $tx $ty -outline gainsboro] } NamgraphView instproc dragrect {w x y} { $self instvar rectlocation $w delete $rectlocation(obj) set rectlocation(obj) \ [$w create rect $rectlocation(xorig) $rectlocation(yorig) \ $x $y -outline gainsboro] } NamgraphView instproc endrect {w x y} { $self instvar timeslider title_ modelobj_ rectlocation $self instvar minx_ maxx_ miny_ maxy_ $w delete $rectlocation(obj) if { $x == $rectlocation(xorig) || $y == $rectlocation(yorig)} {return} #map the x,y to time and seqno range set width [winfo width $w] set height [winfo height $w] #adjust the width set width [expr $width-$timeslider(swidth)] set x [expr $x-$timeslider(swidth)/2] set rectlocation(xorig) [expr $rectlocation(xorig)-$timeslider(swidth)/2] # XXX adjust the value set timestart [expr $minx_+($maxx_-$minx_)*$rectlocation(xorig)/$width] set timeend [expr $minx_+($maxx_-$minx_)*$x/$width] set seqstart [expr $miny_+1.0*($maxy_-$miny_)* \ ($height-$rectlocation(yorig))/$height] set seqend [expr $miny_+1.0*($maxy_-$miny_)*($height-$y)/$height] if { $timestart > $timeend } { set tmpt $timestart set timestart $timeend set timeend $tmpt } if { $seqstart > $seqend } { set tmpt $seqstart set seqstart $seqend set seqend $tmpt } #create a new NamgraphView (zoomed) set zoomview [new NamgraphView $title_ $modelobj_ $timestart \ $timeend $seqstart $seqend "ZOOM"] $modelobj_ addObserver $zoomview } NamgraphView instproc startmove {w o x y} { $self instvar rectlocation scan [$w coords $o] "%f %f %f %f" x1 y1 x2 y2 set rectlocation(x) [expr abs($x - $x1)] set rectlocation(y) [expr abs($y - $y1)] } NamgraphView instproc moverect {w o x y} { $self instvar rectlocation scan [$w coords $o] "%f %f %f %f" x1 y1 x2 y2 set dx [expr $x - $x1 - $rectlocation(x)] set dy [expr $y - $y1 - $rectlocation(y)] $w move $o $dx $dy } # # mode = 0: Draw scale in free mode # mode = 1: Draw scale in integer (fully) mode # mode = 2: Draw scale in integer (evenly) mode # NamgraphView instproc draw_scale_xy { mode } { $self instvar timeslider minx_ maxx_ miny_ maxy_ current_win_ $self instvar modelobj_ set c $current_win_ set scrxl [expr $timeslider(swidth)/2] set scryt 0 set scrxr [winfo width $c] set scryb [winfo height $c] #adjust the width set scrxr [expr $scrxr-$timeslider(swidth)] set nxpoints 8 set nypoints 6 set yincr [expr ($maxy_-$miny_)/$nypoints.0] set xincr [expr ($maxx_-$minx_)/$nxpoints.0] for {set i 1} {$i<$nypoints} {incr i} { #set ypos [expr $scryb-($scryb/$nypoints.0)*$i] set yval [expr $miny_+$i*$yincr] set yval [expr int($yval)] set ypos [expr $scryb-($scryb*($yval-$miny_)/($maxy_-$miny_))] set yval [$modelobj_ verifyymark $yval] #set yval [format "%+15.5f" [expr $miny_+$i*$yincr]] $c create line $scrxl $ypos [expr $scrxl+10] $ypos -fill #6725a0 $c create text [expr $scrxl+15] [expr $ypos-7] -text $yval -anchor nw \ -justify left -fill #6725a0 \ -font "-adobe-new century schoolbook-medium-r-normal--10-100-75-75-p-60-iso8859-1" } for {set i 1} {$i<$nxpoints} {incr i} { set xpos [expr ($scrxr/$nxpoints.0)*$i + $scrxl] set xval [format "%+7.5f" [expr $minx_+($i*$xincr)]] $c create line $xpos 0 $xpos 10 -fill #6725a0 $c create text $xpos 15 -text $xval -anchor n\ -justify left -fill #6725a0 \ -font "-adobe-new century schoolbook-medium-r-normal--10-100-75-75-p-60-iso8859-1" } } #----------------------------------------------------------------------- # NamgraphView instproc update { time } # - extracts the time value from a nam event # and updates the trace line on a namGraph to that point # #----------------------------------------------------------------------- NamgraphView instproc update { time } { $self instvar now_ winname_ modelobj_ if ![winfo exists $winname_ ] { $modelobj_ deleteObserver $self $self destroy return } if { [string compare $time "*"] != 0 } { set now_ $time $self draw_traceline $now_ } } nam-1.15/tcl/netModel.tcl0000664000076400007660000003421107615373577014156 0ustar tomhnsnam# # Copyright (C) 1998 by USC/ISI # All rights reserved. # # Redistribution and use in source and binary forms are permitted # provided that the above copyright notice and this paragraph are # duplicated in all such forms and that any documentation, advertising # materials, and other materials related to such distribution and use # acknowledge that the software was developed by the University of # Southern California, Information Sciences Institute. The name of the # University may not be used to endorse or promote products derived from # this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED # WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. # # $Header: /cvsroot/nsnam/nam-1/tcl/netModel.tcl,v 1.25 2003/01/28 03:22:39 buchheim Exp $ NetworkModel set bcast_duration_ 0.01 # 250 is pre-calculate by using fixed two-way ground reflection # model with fixed transmission power 3.652e-10 NetworkModel set bcast_radius_ 250 #----------------------------------------------------------------------- # NetworkModel instproc init {animator tracefile} #----------------------------------------------------------------------- NetworkModel instproc init {animator tracefile} { $self instvar showenergy_ $self next $animator ;# create shadow, etc. # Tracefile maybe a space which indicates that # a new nam editor window is being created if {$tracefile != " "} { # We have a tracefile so it must be an animation to display $self nam_addressing $tracefile $self nam_layout $tracefile $self layout if [info exists showenergy_] { if {$showenergy_ == 1} { $animator show-energy } } } } # Read events from the trace file and extract addressing information from them NetworkModel instproc nam_addressing { tracefile } { set stream [new NamStream $tracefile] set time "0" # skip all beginning non "*" events while {([$stream eof]==0)&&([string compare $time "*"]!=0)} { set line [$stream gets] set time [get_trace_item "-t" $line] } $self instvar netAddress if ![info exists netAddress] { set netAddress [new Address] } while {([$stream eof]==0)&&([string compare $time "*"]==0)} { set cmd [lindex $line 0] set time [get_trace_item "-t" $line] if {[string compare $time "*"]!=0} {break} switch $cmd { "A" { set hier [get_trace_item "-n" $line] if {$hier != ""} { # PortShift set ps [get_trace_item "-p" $line] # PortMask set pm [get_trace_item "-o" $line] # McastShift set ms [get_trace_item "-c" $line] # McastMask set mm [get_trace_item "-a" $line] $netAddress portbits-are $ps $pm $netAddress mcastbits-are $ms $mm } else { set hier [get_trace_item "-h" $line] # NodeShift set nh [get_trace_item "-m" $line] # NodeMask set nm [get_trace_item "-s" $line] $netAddress add-hier $hier $nh $nm } } } # XXX # assuming that every line end with End-OF-Line set line [$stream gets] } $stream close } #----------------------------------------------------------------------- # NetworkModel instproc nam_layout { tracefile } { # - read events from the tracefile and parse them as # layout commands until we meet an event without -t * #----------------------------------------------------------------------- NetworkModel instproc nam_layout { tracefile } { set stream [new NamStream $tracefile] set time "0" # skip all beginning non "*" events while {([$stream eof]==0)&&([string compare $time "*"] != 0)} { set line [$stream gets] set time [get_trace_item "-t" $line] } while {([$stream eof]==0)&&([string compare $time "*"] == 0)} { set cmd [lindex $line 0] set time [get_trace_item "-t" $line] if {[string compare $time "*"] != 0} { break } switch $cmd { "n" { # $self layout_node [lrange $line 1 end] # goto netmodel.cc: command to add the node $self node $line } "g" { $self layout_agent [lrange $line 1 end] } "l" { $self layout_link [lrange $line 1 end] } "L" { $self layout_lanlink [lrange $line 1 end] } "X" { $self layout_lan [lrange $line 1 end] } "q" { $self layout_queue [lrange $line 1 end] } "c" { $self layout_color [lrange $line 1 end] } } # XXX # assuming that every line end with End-OF-Line set line [$stream gets] } $stream close } #----------------------------------------------------------------------- # This procedure is no longer in use #----------------------------------------------------------------------- NetworkModel instproc layout_node {line} { $self instvar showenergy_ # Setup default values set color black set lcolor black set shape circle set dlabel "" set src "" set size 0 set addr 0 for {set i 0} {$i < [llength $line]} {incr i} { set item [string range [lindex $line $i] 1 end] switch $item { "s" { set src [lindex $line [expr $i+1]] } "v" { set shape [lindex $line [expr $i+1]] } "c" { set color [lindex $line [expr $i+1]] if {[string range $color 0 0] == "\#"} { set rgb [winfo rgb . $color] set color "[$self lookupColorName [lindex $rgb 0] \ [lindex $rgb 1] [lindex $rgb 2]]" } if [info exists showenergy_] { if { $color == "green"} { set showenergy_ 1 } } } "z" { set size [lindex $line [expr $i+1]] } "a" { set addr [lindex $line [expr $i+1]] } "x" { set xcor [lindex $line [expr $i+1]] set showenergy_ 0 } "y" { set ycor [lindex $line [expr $i+1]] set showenergy_ 0 } "i" { set lcolor [lindex $line [expr $i+1]] if {[string range $lcolor 0 0] == "\#"} { set rgb [winfo rgb . $lcolor] set lcolor "[$self lookupColorName [lindex $rgb 0] \ [lindex $rgb 1] [lindex $rgb 2]]" } } "b" { set dlabel [lindex $line [expr $i+1]] } } if {[string range $item 0 0]=="-"} { incr i } } if {$src==""} { puts "Error in parsing tracefile line:\n$line\n" puts "No -s was given." exit } # XXX Make sure dlabel is the last argument. This stupid node creation # process should be changed and a node-config method should be used to # add dlabels, etc., to nodes. # # XXX TO ALL WHO WILL ADD MORE ARGUMENTS: # in netmodel.cc, NetModel::addNode() says: if there are more than 9 # arguments (incl. 'cmd node'), this is a wireless node! # You be careful!! if [info exists xcor] { if {$dlabel != ""} { $self node $src $shape $color $addr $size $lcolor \ $xcor $ycor $dlabel } else { $self node $src $shape $color $addr $size $lcolor \ $xcor $ycor } } else { if {$dlabel != ""} { $self node $src $shape $color $addr $size $lcolor $dlabel } else { $self node $src $shape $color $addr $size $lcolor } } } #----------------------------------------------------------------------- # #----------------------------------------------------------------------- NetworkModel instproc layout_agent {line} { set label "" set role "" set node "" set flowcolor black set winInit "" set win "" set maxcwnd "" set tracevar "" set start "" set producemore "" set stop "" set packetsize "" set interval "" set number "" set partner "" for {set i 0} {$i < [llength $line]} {incr i} { set item [string range [lindex $line $i] 1 end] switch $item { "l" { set label [lindex $line [expr $i+1]] } "r" { set role [lindex $line [expr $i+1]] } "s" { set node [lindex $line [expr $i+1]] } "c" { set flowcolor [lindex $line [expr $i+1]] } "i" { set winInit [lindex $line [expr $i+1]] } "w" { set win [lindex $line [expr $i+1]] } "m" { set maxcwnd [lindex $line [expr $i+1]] } "t" { set tracevar [lindex $line [expr $i+1]] } "b" { set start [lindex $line [expr $i+1]] } "o" { set stop [lindex $line [expr $i+1]] } "p" { set producemore [lindex $line [expr $i+1]] } "k" { set packetsize [lindex $line [expr $i+1]] } "v" { set interval [lindex $line [expr $i+1]] } "n" { set number [lindex $line [expr $i+1]] } "u" { set partner [lindex $line [expr $i+1]] } } if {[string range $item 0 0]=="-"} {incr i} } if {$label==""} { puts "Error in parsing tracefile line:\n$line\n" exit } if {[string compare $role "20"]==0} { $self agent $label $role $node $number $partner } elseif {[string compare $role "10"]==0 && [string compare $label "CBR"]==0} { $self agent $label $role $node $flowcolor $packetsize $interval $start $stop $number $partner } else { $self agent $label $role $node $flowcolor $winInit $win $maxcwnd $tracevar $start $producemore $stop $number $partner } } #----------------------------------------------------------------------- # NetworkModel instproc layout_lan {line} # - creates a virtual node to which other nodes are connect using a # shared lan via the 'L' event #----------------------------------------------------------------------- NetworkModel instproc layout_lan {line} { set name "" set rate "" set delay "" set orient down for {set i 0} {$i < [llength $line]} {incr i} { set item [string range [lindex $line $i] 1 end] switch $item { "n" { set name [lindex $line [expr $i+1]] } "r" { set rate [lindex $line [expr $i+1]] } "D" { set delay [lindex $line [expr $i+1]] } "o" { set orient [lindex $line [expr $i+1]] } } if {[string range $item 0 0]=="-"} { incr i } } if {$name==""} { puts "netModel.tcl found an Error in parsing tracefile line:\n$line\n" exit } set th [nam_angle $orient] # Lan rates are shown in Mb/s and delay in ms set rate [expr [bw2real $rate] / 1000000.0] set delay [expr [time2real $delay] * 1000.0] $self lan $name [bw2real $rate] [time2real $delay] [expr $th] } NetworkModel instproc layout_link {line} { #orient can default because pre-layout will have kicked us into #autolayout mode by this point set orient right set src "" set dst "" set rate 10Mb set delay 10ms set color "" set dlabel "" set length 0 for {set i 0} {$i < [llength $line]} {incr i} { set item [string range [lindex $line $i] 1 end] switch "$item" { "s" { set src [lindex $line [expr $i+1]] } "d" { set dst [lindex $line [expr $i+1]] } "r" { set rate [lindex $line [expr $i+1]] } "D" { set delay [lindex $line [expr $i+1]] } "h" { set length [lindex $line [expr $i+1]] } "O" { set orient [lindex $line [expr $i+1]] } "o" { set orient [lindex $line [expr $i+1]] } "c" { set color [lindex $line [expr $i+1]] } "b" { set dlabel [lindex $line [expr $i+1]] } } if {[string range $item 0 0]=="-"} { incr i } } if {($src=="")||($dst=="")} { puts "Error in parsing tracefile line:\n$line\n" exit } set th [nam_angle $orient] set rev [expr $th + 1] # This is easier than using mod arithmetic if { $rev > 2.0 } { set rev [expr $rev - 2.0] } # Lan rates are shown in Mb/s and delay in ms set rate [expr [bw2real $rate] / 1000000.0] set delay [expr [time2real $delay] * 1000.0] #build the reverse link $self link $dst $src $rate $delay $length $rev #and the forward one $self link $src $dst $rate $delay $length $th if { $color!="" } { $self ecolor $src $dst $color $self ecolor $dst $src $color } if { $dlabel!="" } { $self edlabel $src $dst $dlabel $self edlabel $dst $src $dlabel } } NetworkModel instproc layout_lanlink {line} { #orient can default because pre-layout will have kicked us into #autolayout mode by this point set orient right set src "" set dst "" for {set i 0} {$i < [llength $line]} {incr i} { set item [string range [lindex $line $i] 1 end] switch "$item" { "s" { set src [lindex $line [expr $i+1]] } "d" { set dst [lindex $line [expr $i+1]] } "O" { set orient [lindex $line [expr $i+1]] } "o" { set orient [lindex $line [expr $i+1]] } } if {[string range $item 0 0]=="-"} { incr i } } if {($src=="")||($dst=="")} { puts "Error in parsing tracefile line no source or destination in lanlink:\n$line\n" exit } set th [nam_angle $orient] ;# global function $self lanlink $dst $src $th } NetworkModel instproc layout_queue {line} { for {set i 0} {$i < [llength $line]} {incr i} { set item [string range [lindex $line $i] 1 end] switch $item { "s" { set src [lindex $line [expr $i+1]] } "d" { set dst [lindex $line [expr $i+1]] } "a" { set angle [lindex $line [expr $i+1]] } } if {[string range $item 0 0]=="-"} {incr i} } $self queue $src $dst $angle } NetworkModel instproc layout_color {line} { for {set i 0} {$i < [llength $line]} {incr i} { set item [string range [lindex $line $i] 1 end] switch $item { "i" { set ix [lindex $line [expr $i+1]] } "n" { set name [lindex $line [expr $i+1]] if {[string range $name 0 0] == "\#"} { set rgb [winfo rgb . $name] set name "[$self lookupColorName [lindex $rgb 0] \ [lindex $rgb 1] [lindex $rgb 2]]" } } } if {[string range $item 0 0]=="-"} {incr i} } $self color $ix $name } NetworkModel instproc traffic_filter {type} { $self select-traffic $type } NetworkModel instproc src_filter {src} { $self select-src $src } NetworkModel instproc dst_filter {dst} { $self select-dst $dst } NetworkModel instproc fid_filter {fid} { $self select-fid $fid } nam-1.15/tcl/node.tcl0000664000076400007660000000254507276557005013332 0ustar tomhnsnam# # Copyright (C) 2001 by USC/ISI # All rights reserved. # # Redistribution and use in source and binary forms are permitted # provided that the above copyright notice and this paragraph are # duplicated in all such forms and that any documentation, advertising # materials, and other materials related to such distribution and use # acknowledge that the software was developed by the University of # Southern California, Information Sciences Institute. The name of the # University may not be used to endorse or promote products derived from # this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED # WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. # #----------------------------------------------------------------------- # Animator instproc node_tclscript {node_id button_label tcl_command} # - calls set_node_tclscript which adds a button to a node's get info # window #----------------------------------------------------------------------- Animator instproc node_tclscript {node_id button_label tcl_command} { $self instvar netModel $netModel set_node_tclscript $node_id $button_label $tcl_command } nam-1.15/tcl/observable.tcl0000664000076400007660000000327706573345600014527 0ustar tomhnsnam# # for MCV # Class Observable Observable instproc init {} { $self instvar observerlist_ set observerlist_ "" } # Adds an observer to the set of observers for this object. # @param o an observer to be added. Observable instproc addObserver { o } { $self instvar observerlist_ set cnt 0 set oid [$o id] foreach ob $observerlist_ { set obid [$ob id] if { $oid == $obid } { set cnt 1 break; } } if { $cnt == 0 } { lappend observerlist_ $o } } # Deletes an observer from the set of observers of this object. # @param o the observer to be deleted. Observable instproc deleteObserver { o } { $self instvar observerlist_ set backlist_ "" set oid [$o id] foreach ob $observerlist_ { set obid [$ob id] if { $oid != $obid } { lappend backlist_ $ob } else { # $o destroy # leave the work to the application } } set observerlist_ $backlist_ } # If this object has changed, as indicated by the # hasChanged method, then notify all of its observers # and then call the clearChanged method to indicate # that this object has no longer changed. # # Each observer has its update method called with two # arguments: this observable object and the arg argument Observable instproc notifyObservers { arg } { $self instvar observerlist_ #??? Synchronization here before updating ??? foreach ob $observerlist_ { if ![ catch { $ob info class } ] { $ob update $arg } } } # Returns the number of observers of this object. Observable instproc countObservers {} { $self instvar observerlist_ set size [llength $observerlist_] return $size } nam-1.15/tcl/observer.tcl0000664000076400007660000000065006573313540014220 0ustar tomhnsnam# # Inspiried by Java java.util.Observer # for MCV Class Observer Observer set uniqueID_ 0 Observer proc getid {} { set id [Observer set uniqueID_] Observer set uniqueID_ [expr $id + 1] return $id } Observer instproc init {} { $self instvar id_ set id_ [Observer getid] } Observer instproc id {} { $self instvar id_ return $id_ } # Needs to be overwritten Observer instproc update {} { } nam-1.15/tcl/snapshot.tcl0000664000076400007660000000306107074036356014233 0ustar tomhnsnam# # Copyright (C) 1998 by USC/ISI # All rights reserved. # # Redistribution and use in source and binary forms are permitted # provided that the above copyright notice and this paragraph are # duplicated in all such forms and that any documentation, advertising # materials, and other materials related to such distribution and use # acknowledge that the software was developed by the University of # Southern California, Information Sciences Institute. The name of the # University may not be used to endorse or promote products derived from # this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED # WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. # Animator instproc take_snapshot {} { $self instvar netModel $self testsuite_view $netModel nam } Animator instproc testsuite_view { viewobject windowname } { puts "take a snapshot here. " $viewobject testview testview } Animator instproc playing_backward {} { $self instvar netView running backward focus $netView if { $backward == 0 } { $self set_backward_dir 1 if { $running != 1 } { $self play 1 $self renderFrame } } set backward 1 } Animator instproc playing_forward {} { $self instvar netView running direction focus $netView if { $direction == -1} { $self set_forward_dir 1 if { $running != 1 } { $self play 1 $self renderFrame } } } Animator instproc terminating_nam {} { destroy . } nam-1.15/tcl/stats.tcl0000664000076400007660000003731407471267111013536 0ustar tomhnsnam# # Copyright (C) 1998 by USC/ISI # All rights reserved. # # Redistribution and use in source and binary forms are permitted # provided that the above copyright notice and this paragraph are # duplicated in all such forms and that any documentation, advertising # materials, and other materials related to such distribution and use # acknowledge that the software was developed by the University of # Southern California, Information Sciences Institute. The name of the # University may not be used to endorse or promote products derived from # this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED # WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. # # $Header: /cvsroot/nsnam/nam-1/tcl/stats.tcl,v 1.16 2002/05/17 20:55:37 buchheim Exp $ Animator instproc tracehooktcl { e } { # notify observers $self notifyObservers $e } Animator instproc update_statsview { s event } { $self instvar colorset highest_seq timeslider maxtime colorname subView \ subViewRange plotdatax plotdatay plotmark set s_len [string length $s] set session_id [string index $s [expr $s_len-1]] # Only process THIS window set sid [get_trace_item "-S" $event] if {$sid != $session_id} {return} # main view set extinfo [get_trace_item "-x" $event] set time [get_trace_item "-t" $event] set seqno [lindex $extinfo 2] set colorid [get_trace_item "-a" $event] set mid [get_trace_item "-m" $event] if { $mid == "" } {return} set cnt 0 while {[info exists plotdatax($sid.$cnt)]} { $self plot_xy $s.main.c $time $seqno 0 $maxtime 0 $highest_seq($sid) \ $colorid $plotmark($sid.$mid) 0 incr cnt } # subview foreach subviews $subView(#$session_id) { if {![winfo exists $subviews]} {continue} set minx [lindex $subViewRange($subviews) 0] set maxx [lindex $subViewRange($subviews) 1] set miny [lindex $subViewRange($subviews) 2] set maxy [lindex $subViewRange($subviews) 3] $self plot_xy $subviews.main.c $time $seqno $minx $maxx \ $miny $maxy $colorid $plotmark($sid.$mid) 1 } } #change nam window status Animator instproc new_waitingtext { msg } { $self instvar windows $windows(title) configure -text "Please wait - $msg" update } # restore nam window status Animator instproc restore_waitingtext {} { $self instvar windows nam_name $windows(title) configure -text $nam_name } Animator instproc active_sessions {} { $self instvar analysis_ready colorset colorindex session_id colorname \ netModel analysis_flag windows nam_name tlw_ cache_ready #processing tracefile if necessary if {[string compare $analysis_flag "0"] == 0} { set analysis_flag 1 } set w $tlw_.activesessions if {[winfo exists $w]} { raise $w return } $windows(title) configure -text "Please wait ... " update # good timing # check if analysis ready if { $analysis_ready == 1 && $cache_ready == 0 } { $self cache_plot set cache_ready 1 } $windows(title) configure -text $nam_name #processing tracefiel if necessary toplevel $w wm title $w "Current Active Sessions" bind $w "destroy $w" bind $w "destroy $w" bind $w "[AnimControl instance] done" bind $w "[AnimControl instance] done" frame $w.f pack $w.f -side top label $w.f.label_left -text "LEGEND" label $w.f.label_right -text "SESSIONS" for {set i 0} { $i < $colorindex } { incr i} { label $w.f.label_left$i -text " " -bg $colorname($i); set stats_title $session_id($i) button $w.f.button$i -text $session_id($i) \ -command "$self make_mainwin \"$i\"" } grid config $w.f.label_left -column 0 -row 0 -sticky "n" grid config $w.f.label_right -column 1 -row 0 -sticky "n" for {set i 0} { $i < $colorindex } { incr i} { grid config $w.f.label_left$i -column 0 -row [expr $i+1] \ -sticky "snew" grid config $w.f.button$i -column 1 -row [expr $i+1] \ -sticky "snew" } } Animator instproc auto_legend {} { $self instvar Mcnt plotmarks colorname filter_id filtercolor_id colorindex tlw_ set w $tlw_.autolegend if {[winfo exists $w]} { raise $w return } toplevel $w wm title $w "Current Filter Legend" bind $w "destroy $w" bind $w "destroy $w" bind $w "[AnimControl instance] done" bind $w "[AnimControl instance] done" frame $w.f pack $w.f -side top label $w.f.label_left -text "LEGEND" label $w.f.label_right -text "EXPLANATION" for {set i 0} { $i < $Mcnt } { incr i} { # if { $i == 2 } { # set i [expr $i+$colorindex-2] # } # if { $i > 1 } { # label $w.f.label_left$i -bitmap $plotmarks($i) -fg $colorname($i) # } else { # label $w.f.label_left$i -bitmap $plotmarks($i) -fg $colorname(0) # } label $w.f.label_left$i -bitmap $plotmarks($i) -fg $colorname($filtercolor_id($i)) label $w.f.button$i -text $filter_id($i) } grid config $w.f.label_left -column 0 -row 0 -sticky "n" grid config $w.f.label_right -column 1 -row 0 -sticky "n" for {set i 0} { $i < $Mcnt } { incr i} { # if { $i == 2 } { # set i [expr $i+$colorindex-2] # } grid config $w.f.label_left$i -column 0 -row [expr $i+1] \ -sticky "snew" grid config $w.f.button$i -column 1 -row [expr $i+1] \ -sticky "snew" } } Animator instproc ScrolledCanvas { c width height region } { frame $c canvas $c.canvas -width $width -height $height \ -scrollregion $region \ -xscrollcommand [list $c.xscroll set] \ -yscrollcommand [list $c.yscroll set] scrollbar $c.xscroll -orient horizontal \ -command [list $c.canvas xview] scrollbar $c.yscroll -orient vertical \ -command [list $c.canvas yview] pack $c.xscroll -side bottom -fill x pack $c.yscroll -side right -fill y pack $c.canvas -side left -fill both -expand true pack $c -side top -fill both -expand true return $c.canvas } Animator instproc build.m0 { w } { bind $w "$self xtimeticks $w" } Animator instproc xtimeticks { w } { $self instvar timeslider mintime range timeslider_width set width [winfo width $w] set height [winfo height $w] $w delete ticks set x [expr $timeslider(swidth)/2] set intertick [expr ($width-$timeslider(swidth))/(10 * $range)] for {set t $mintime} {$t < ($range+$mintime)} {set t [expr $t+0.1]} { set intx [expr int($x)] $w addtag ticks withtag \ [$w create line \ $intx [expr $timeslider(height)/2 + $height*9/10] $intx [expr $timeslider(height) + $height*9/10]] set x [expr $x+$intertick] } set orx [expr $timeslider(swidth)/2] $w addtag ticks withtag \ [$w create line $orx [expr $timeslider(height)+$height*9/10] $x [expr $timeslider(height)+$height*9/10]] $w addtag ticks withtag \ [$w create line $orx [expr $timeslider(height)+$height*9/10] $orx 0]] set x [expr $timeslider(swidth)/2] set intertick [expr ($width-$timeslider(swidth))/($range)] for {set t $mintime} {$t < ($range+$mintime)} {set t [expr $t+1]} { set intx [expr int($x)] $w addtag ticks withtag \ [$w create line \ $intx [expr $timeslider(height) + $height*9/10] $intx [expr $height*9/10]] set x [expr $x+$intertick] } } Animator instproc make_mainwin { sid } { $self tkvar model_ $self instvar session_id $model_($sid) startview $session_id($sid) } # namgraph # pre-process for nam analysis Animator instproc nam_analysis { tracefile } { $self instvar analysis_OK analysis_ready trace cache_ready count set stream [new NamStream $tracefile] set line [$stream gets] set time [get_trace_item "-t" $line] set count 0 #Handle nam version, *SHOULD NOT* assume the first line is V line # skip all beginning non "*" events while {([$stream eof]==0)&&([string compare $time "*"]!=0)} { set line [$stream gets] set time [get_trace_item "-t" $line] } while {([$stream eof]==0)&&([string compare $time "*"]==0) } { set cmd [lindex $line 0] # Skip comment lines if [regexp {^\#} $cmd] { continue } switch "$cmd" { "V" { $self handle_version $line } "N" { $self handle_analysis $line } "c" { $self handle_colorname $line } } set count [expr $count + 1] set line [$stream gets] set time [get_trace_item "-t" $line] } $stream close if { $count==0 } { puts "*** !!! ***" puts "nam cannot recognize the trace file $tracefile" puts "Please make sure that the file is not empty and it is a nam trace" puts "***********" exit } # old nam, skip it if { $analysis_OK == 0 } { puts "You are using the tracefile format older than 1.0a5" puts "which will not allow you to run namgraph" return } set cache_ready 0 } Animator instproc cache_plot { } { $self instvar tracefile plotdatax plotdatay plotmark plotmarks plotcolor if ![info exists plotmarks] { # Initialize - loop assign ? set plotmarks(0) mark1 set plotmarks(1) mark2 set plotmarks(2) mark3 set plotmarks(3) mark4 set plotmarks(4) mark5 set plotmarks(5) mark6 set plotmarks(6) mark7 set plotmarks(7) mark8 set plotmarks(8) mark1 set plotmarks(9) mark2 set plotmarks(10) mark3 set plotmarks(11) mark4 set plotmarks(12) mark5 set plotmarks(13) mark6 set plotmarks(14) mark7 set plotmarks(15) mark8 } set file [new NamStream $tracefile] # set file [open $tracefile "r"] $self tkvar model_ while {[$file eof]==0} { set line [$file gets] set time [get_trace_item "-t" $line] if {[string compare $time "*"]==0 } {continue} set Sid [get_trace_item "-S" $line] set mid [get_trace_item "-m" $line] set pid [get_trace_item "-p" $line] set fid [get_trace_item "-f" $line] set yvalset [get_trace_item "-y" $line] set yval [lindex $yvalset 0] set ymark [lindex $yvalset 1] if { $mid == "" } {continue} set plotmark($Sid.$mid) $plotmarks($mid) set plotcolor($Sid.$mid) $fid #NEW MCV stuff. It will replace the above code finally if ![info exists model_($Sid)] { #create a new namgraph model set model_($Sid) [new NamgraphModel $Sid $self] # Attach this model to Animator $self addObserver $model_($Sid) } set current_model $model_($Sid) $current_model adddata $self $mid $time $yval $ymark } $file close } Animator instproc handle_analysis { line } { $self instvar session_id filter_id colorname highest_seq filtercolor_id \ ymark set index [get_trace_item "-S" $line] set findex [get_trace_item "-F" $line] set title [get_trace_item "-n" $line] set hseq [get_trace_item "-h" $line] set mindex [get_trace_item "-M" $line] set groupm [get_trace_item "-m" $line] set proto [get_trace_item "-p" $line] #session info if { $index != "" && $title != "" } { set session_id($index) $title set proto_id($index) $proto } if { $index != "" && $hseq != "" } { set highest_seq($index) $hseq } #filter info if { $findex != "" } { set filter_id($mindex) $title set filtercolor_id($mindex) $findex } } Animator instproc handle_colorname { line } { $self instvar colorname set index [get_trace_item "-i" $line] set colorn [get_trace_item "-n" $line] set colorname($index) $colorn } Animator instproc handle_version { line } { $self instvar analysis_OK nam_version analysis_ready colorindex \ highest_seq Mcnt set nam_version [get_trace_item "-v" $line] if { $nam_version >= "1.0a5" } { set analysis_OK 1 } set analysis_ready [get_trace_item "-a" $line] set colorindex [get_trace_item "-c" $line] #set highest_seq [get_trace_item "-h" $line] #set Fcnt [get_trace_item "-F" $line] #set Fcnt [expr $Fcnt+2] set Mcnt [get_trace_item "-M" $line] } Animator instproc viewgraph { object graphtype tracefile } { $self instvar netView now vslider windows nam_name graphs tlw_ if {$object==""} {return} set graphtrace [new Trace $tracefile $self] set netgraph "" switch [lindex $object 0] { l { set netgraph [new LinkNetworkGraph] switch $graphtype { "bw" { $netgraph bw [lindex $object 1] [lindex $object 2] } "loss" { $netgraph loss [lindex $object 1] [lindex $object 2] } } } f { set netgraph [new FeatureNetworkGraph] $netgraph feature [lindex $object 1] [lindex $object 2] [lindex $object 3] } } if {$netgraph==""} { return } set name [lindex $object 0]_[lindex $object 1]_[lindex $object 2]_$graphtype if {[winfo exists $tlw_.graph.f$name]==1} { return } $windows(title) configure -text "Please wait - reading tracefile..." update set maxtime [$graphtrace maxtime] set mintime [$graphtrace mintime] $graphtrace connect $netgraph $netgraph timerange $mintime $maxtime #force the entire tracefile to be read $graphtrace settime $maxtime 1 set w $tlw_.graph if {[winfo exists $w]==0} { frame $w pack $w -side top -fill x -expand true -after [$vslider frame] } lappend graphs $netgraph frame $w.f$name -borderwidth 2 -relief groove pack $w.f$name -side top -expand true -fill both label $w.f$name.pr -bitmap pullright -borderwidth 1 -relief raised bind $w.f$name.pr \ "$self viewgraph_label \"[$self viewgraph_name $object $graphtype]\" \ $w.f$name $w.f$name.pr $netgraph" pack $w.f$name.pr -side left $netgraph view $w.f$name.view #set the current time in the graph $netgraph settime $now pack $w.f$name.view -side left -expand true \ -fill both frame $w.f$name.l2 -width [expr [$vslider swidth]/2] -height 30 pack $w.f$name.l2 -side left $windows(title) configure -text $nam_name } Animator instproc viewgraph_label {info win where netgraph} { $self instvar tlw_ if {[winfo exists $win.lbl]==0} { frame $win.lbl -borderwidth 2 -relief groove button $win.lbl.hide -text "Hide" -relief raised -borderwidth 1 \ -highlightthickness 0 \ -command "destroy $win;\ $self rm_list_entry graphs $netgraph;\ if {\[winfo children $tlw_.graph\]=={}} {destroy $tlw_.graph}" pack $win.lbl.hide -side left label $win.lbl.l -text $info -font [smallfont] pack $win.lbl.l -side left } catch { pack $win.lbl -side left -after $where -fill y pack forget $where bind $win.lbl \ "pack $where -side left -before $win.lbl;pack forget $win.lbl" } } Animator instproc rm_list_entry {var value} { $self instvar $var set res "" set lst [set [set var]] foreach el $lst { if {[string compare $el $value]!=0} { lappend res $el } } set [set var] $res } Animator instproc viewgraph_name {name graphtype} { set type [lindex $name 0] switch $type { "l" { switch $graphtype { "bw" { return "Bandwidth used on link [lindex $name 1]->[lindex $name 2]" } "loss" { return "Packets dropped on link [lindex $name 1]->[lindex $name 2]" } } } "f" { return "[lindex $name 2] [lindex $name 3]" } } return unknown } nam-1.15/tcl/test/tcl-scripts/test-lan-1.tcl0000664000076400007660000000314107074246605017506 0ustar tomhnsnamset opt(tr) out set opt(namtr) "test-lan-1.nam" set opt(seed) 0 set opt(stop) 3 set opt(node) 8 set opt(qsize) 10 set opt(bw) 1Mb set opt(delay) 100ms set opt(ll) LL set opt(ifq) Queue/DropTail set opt(mac) Mac/802_3 set opt(chan) Channel set opt(tcp) TCP/Reno set opt(sink) TCPSink set opt(app) FTP proc finish {} { global env nshome pwd global ns opt $ns flush-trace exit 0 } proc create-trace {} { global ns opt if [file exists $opt(tr)] { catch "exec rm -f $opt(tr) $opt(tr)-bw [glob $opt(tr).*]" } set trfd [open $opt(tr) w] $ns trace-all $trfd if {$opt(namtr) != ""} { $ns namtrace-all [open $opt(namtr) w] } return $trfd } proc create-topology {} { global ns opt global lan node source node0 set num $opt(node) for {set i 0} {$i < $num} {incr i} { set node($i) [$ns node] lappend nodelist $node($i) } set lan [$ns newLan $nodelist $opt(bw) $opt(delay) \ -llType $opt(ll) -ifqType $opt(ifq) \ -macType $opt(mac) -chanType $opt(chan)] set node0 [$ns node] $ns duplex-link $node0 $node(0) 1Mb 100ms DropTail $ns duplex-link-op $node0 $node(0) orient right } ## MAIN ## set ns [new Simulator] set trfd [create-trace] create-topology set tcp0 [$ns create-connection TCP/Reno $node0 TCPSink $node(7) 0] $tcp0 set window_ 15 set ftp0 [$tcp0 attach-app FTP] ### set operations $ns at 0.0 "$ftp0 start" $ns at $opt(stop) "finish" ### take snapshots foreach i "0.0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 \ 1.2 1.5 1.8 1.9 2.0 2.1 2.2 2.3 2.4 2.5 2.6 2.7 2.8" { $ns at $i "$ns snapshot" } ### take snapshot operations $ns at 2.9 "$ns terminate-nam" $ns run nam-1.15/tcl/test/tcl-scripts/test-ptp-1.tcl0000664000076400007660000000216707074246605017546 0ustar tomhnsnam# simple stop-ane-wait protocol set ns [new Simulator] set n0 [$ns node] set n1 [$ns node] $ns at 0.0 "$n0 label Sender" $ns at 0.0 "$n1 label Receiver" set nf [open test-ptp-1.nam w] $ns namtrace-all $nf $ns duplex-link $n0 $n1 0.2Mb 200ms DropTail $ns duplex-link-op $n0 $n1 orient right set tcp [new Agent/TCP] $tcp set maxcwnd_ 1 $ns attach-agent $n0 $tcp set sink [new Agent/TCPSink] $ns attach-agent $n1 $sink $ns connect $tcp $sink set ftp [new Application/FTP] $ftp attach-agent $tcp ### set operations $ns at 0.01 "$ftp start" $ns at 2.6 "$ftp stop" $ns at 2.6 "finish" ### take snapshots foreach i "0.0 0.3 0.6 0.9 1.2 1.3 1.4 \ 1.5 1.6 1.7 1.8 1.9 2.0 2.1 2.2 2.3 2.4 2.5" { $ns at $i "$ns snapshot" } ### take snapshot operations $ns at 1.25 "$ns re-rewind-nam" $ns at 2.2 "$ns rewind-nam" $ns at 2.55 "$ns terminate-nam" ### add annotations $ns at 0.0 "$ns trace-annotate \"Simple Stop-and-Wait protocol\"" $ns at 0.01 "$ns trace-annotate \"FTP starts at 0.1\"" $ns at 2.49 "$ns trace-annotate \"FTP stops\"" proc finish {} { global ns nf $ns flush-trace close $nf exit 0 } $ns run nam-1.15/tcl/test/tcl-scripts/test-ptp-2.tcl0000664000076400007660000000524707074246605017551 0ustar tomhnsnam# Slow start protocol in a heavily loaded network. # # n0 n5 # \ / # n1 -- n3 ---------- n4 -- n6 # / \ # n2 n7 set ns [new Simulator] $ns color 0 black $ns color 1 red $ns namtrace-all [open test-ptp-2.nam w] ### build topology with 8 nodes foreach i " 0 1 2 3 4 5 6 7" { set n$i [$ns node] } $ns at 0.0 "$n0 label SLIDING" $ns at 0.0 "$n5 label SLIDING" $ns at 0.0 "$n1 label CBR-1" $ns at 0.0 "$n2 label CBR-2" $ns at 0.0 "$n6 label CBR-1" $ns at 0.0 "$n7 label CBR-2" $ns duplex-link $n0 $n3 1Mb 50ms DropTail $ns duplex-link $n1 $n3 0.5Mb 50ms DropTail $ns duplex-link $n2 $n3 0.5Mb 50ms DropTail $ns duplex-link $n3 $n4 0.5Mb 100ms DropTail $ns duplex-link $n4 $n5 1Mb 50ms DropTail $ns duplex-link $n4 $n6 0.5Mb 50ms DropTail $ns duplex-link $n4 $n7 0.5Mb 50ms DropTail $ns queue-limit $n3 $n4 10 $ns duplex-link-op $n0 $n3 orient right-down $ns duplex-link-op $n1 $n3 orient right $ns duplex-link-op $n2 $n3 orient right-up $ns duplex-link-op $n3 $n4 orient right $ns duplex-link-op $n4 $n5 orient right-up $ns duplex-link-op $n4 $n6 orient right $ns duplex-link-op $n4 $n7 orient right-down $ns duplex-link-op $n3 $n4 queuePos 0.5 Agent/TCP set nam_tracevar_ true # set window size Agent/TCP set maxcwnd_ 8 ### TCP between n0 and n5 (Black) set sliding [new Agent/TCP] $sliding set fid_ 0 $ns attach-agent $n0 $sliding set sink [new Agent/TCPSink] $ns attach-agent $n5 $sink $ns connect $sliding $sink set ftp [new Application/FTP] $ftp attach-agent $sliding ### CBR traffic between (n1 & n6) and (n2 & n7) set cbr0 [new Agent/CBR] $ns attach-agent $n1 $cbr0 $cbr0 set fid_ 1 $cbr0 set packetSize_ 500 $cbr0 set interval_ 0.02 set null0 [new Agent/CBR] $ns attach-agent $n6 $null0 $ns connect $cbr0 $null0 set cbr1 [new Agent/CBR] $ns attach-agent $n2 $cbr1 $cbr1 set fid_ 1 $cbr1 set packetSize_ 1000 $cbr1 set interval_ 0.03 set null1 [new Agent/CBR] $ns attach-agent $n7 $null1 $ns connect $cbr1 $null1 proc finish {} { global ns $ns flush-trace exit 0 } ### set operations $ns at 0.05 "$cbr0 start" $ns at 2.3 "$cbr0 stop" $ns at 0.1 "$cbr1 start" $ns at 2.5 "$cbr1 stop" $ns at 0.5 "$ftp start" $ns at 2.5 "$ftp stop" $ns at 2.7 "finish" ### take snapshots foreach i "0.0 0.5 1.0 1.5 1.8 1.9 2.0 2.1 2.2 2.3 2.4 2.5 2.6" { $ns at $i "$ns snapshot" } ### take snapshot operations $ns at 1.8 "$ns re-rewind-nam" $ns at 2.1 "$ns rewind-nam" $ns at 2.65 "$ns terminate-nam" ### add annotations $ns at 0.05 "$ns trace-annotate \"CBR-1 starts\"" $ns at 0.1 "$ns trace-annotate \"CBR-2 starts\"" $ns at 0.5 "$ns trace-annotate \"FTP starts\"" $ns at 2.55 "$ns trace-annotate \"FTP stops\"" $ns run nam-1.15/tcl/test/test-all-dynamic0000775000076400007660000000356107171212216015736 0ustar tomhnsnam#! /bin/sh # # Copyright (c) 1995 The Regents of the University of California. # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: # 1. Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # 2. Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # 3. All advertising materials mentioning features or use of this software # must display the following acknowledgement: # This product includes software developed by the Network Research # Group at Lawrence Berkeley National Laboratory. # 4. Neither the name of the University nor of the Laboratory may be used # to endorse or promote products derived from this software without # specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE # ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. directory="test-output-dynamic" for i in test-dynamic-1.nam do ./test-template $i $directory done nam-1.15/tcl/test/test-all-lan0000775000076400007660000000357107074036357015101 0ustar tomhnsnam#! /bin/sh # # Copyright (c) 1995 The Regents of the University of California. # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: # 1. Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # 2. Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # 3. All advertising materials mentioning features or use of this software # must display the following acknowledgement: # This product includes software developed by the Network Research # Group at Lawrence Berkeley National Laboratory. # 4. Neither the name of the University nor of the Laboratory may be used # to endorse or promote products derived from this software without # specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE # ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. directory="test-output-lan" for i in test-lan-1.nam test-lan-2.nam do ./test-template $i $directory done nam-1.15/tcl/test/test-all-ptp0000775000076400007660000000357207074036357015133 0ustar tomhnsnam#! /bin/sh # # Copyright (c) 1995 The Regents of the University of California. # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: # 1. Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # 2. Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # 3. All advertising materials mentioning features or use of this software # must display the following acknowledgement: # This product includes software developed by the Network Research # Group at Lawrence Berkeley National Laboratory. # 4. Neither the name of the University nor of the Laboratory may be used # to endorse or promote products derived from this software without # specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE # ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. directory="test-output-ptp" for i in test-ptp-1.nam test-ptp-2.nam do ./test-template $i $directory done nam-1.15/tcl/test/test-all-wireless0000775000076400007660000000360607074036357016163 0ustar tomhnsnam#! /bin/sh # # Copyright (c) 1995 The Regents of the University of California. # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: # 1. Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # 2. Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # 3. All advertising materials mentioning features or use of this software # must display the following acknowledgement: # This product includes software developed by the Network Research # Group at Lawrence Berkeley National Laboratory. # 4. Neither the name of the University nor of the Laboratory may be used # to endorse or promote products derived from this software without # specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE # ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. directory="test-output-wireless" for i in test-wireless-1.nam test-wireless-2.nam do ./test-template $i $directory done nam-1.15/tcl/test/test-dynamic-1.nam0000664000076400007660000000224207226442175016102 0ustar tomhnsnamW -t * -x 670 -y 670 n -t * -s 0 -x 422.71670773848899 -y 589.70733576587497 -Z 0 -z 20 -v circle -c black n -t 0 -s 1 -x 571.19274018632495 -y 276.38481828619501 -Z 0 -z 20 -v circle -c black n -t 0 -s 2 -x 89.641181272211995 -y 439.333721576041 -Z 0 -z 20 -v circle -c black V -t 0 -v 1.0a5 -a 0 A -t 0 -n 1 -p 0 -o 0xffffffff -c 31 -a 1 A -t 0 -h 1 -m 2147483647 -s 0 v -t 0 -e take_snapshot v -t 0.1 -e take_snapshot v -t 0.150000 -e take_snapshot n -t 0.170000 -s 0 -x 422.716708 -y 589.707336 -u -4.046865 -V -1.516404 -T 42.230770 n -t 0.170000 -s 1 -x 571.192740 -y 276.384818 -u -7.879661 -V -4.232723 -T 39.690258 v -t 0.190000 -e take_snapshot n -t 0.250000 -s 2 -x 89.641181 -y 439.333722 -u -0.100553 -V 0.535017 -T 175.571385 n -t 0.250000 -s 3 -x 481.85891825577198 -y 312.839552218736 -Z 0 -z 20 -v circle -c black n -t 0.250000 -s 3 -x 481.858918 -y 312.839552 -u 3.308171 -V 3.358763 -T 46.203506 v -t 0.260000 -e take_snapshot n -t 0.300000 -s 4 -x 404.354417812321 -y 174.700530392536 -Z 0 -z 20 -V circle -c black n -t 0.300000 -s 4 -x 404.354418 -y 174.700530 -u -0.249763 -V 1.064495 -T 433.387909 v -t 0.32 -e take_snapshot v -t 0.4 -e terminating_nam nam-1.15/tcl/test/test-lan-1.nam0000664000076400007660000011725207226442175015240 0ustar tomhnsnamV -t * -v 1.0a5 -a 0 A -t * -n 1 -p 0 -o 0xffffffff -c 31 -a 1 A -t * -h 1 -m 2147483647 -s 0 n -t * -a 4 -s 4 -S UP -v circle -c black -i black n -t * -a 0 -s 0 -S UP -v circle -c black -i black n -t * -a 9 -s 9 -S UP -v circle -c black -i black n -t * -a 5 -s 5 -S UP -v circle -c black -i black n -t * -a 1 -s 1 -S UP -v circle -c black -i black n -t * -a 6 -s 6 -S UP -v circle -c black -i black n -t * -a 2 -s 2 -S UP -v circle -c black -i black n -t * -a 7 -s 7 -S UP -v circle -c black -i black n -t * -a 3 -s 3 -S UP -v circle -c black -i black l -t * -s 9 -d 0 -S UP -r 1000000 -D 0.10000000000000001 -c black -O right X -t * -n 8 -r 1Mb -D 100ms -o left L -t * -s 8 -d 0 -o up L -t * -s 8 -d 1 -o down L -t * -s 8 -d 2 -o up L -t * -s 8 -d 3 -o down L -t * -s 8 -d 4 -o up L -t * -s 8 -d 5 -o down L -t * -s 8 -d 6 -o up L -t * -s 8 -d 7 -o down + -t 0 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {9.0 7.0 0 ------- null} - -t 0 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {9.0 7.0 0 ------- null} h -t 0 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {9.0 7.0 -1 ------- null} v -t 0 -e take_snapshot v -t 0.10000000000000001 -e take_snapshot r -t 0.108 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {9.0 7.0 0 ------- null} h -t 0.108 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {9.0 7.0 0 ------- null} v -t 0.20000000000000001 -e take_snapshot + -t 0.208 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {9.0 7.0 0 ------- null} - -t 0.208 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {9.0 7.0 0 ------- null} h -t 0.208 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {9.0 7.0 -1 ------- null} v -t 0.29999999999999999 -e take_snapshot r -t 0.316116 -s 8 -d 7 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {9.0 7.0 0 ------- null} h -t 0.316116 -s 7 -d 8 -p ack -e 40 -c 0 -i 1 -a 0 -x {7.0 9.0 0 ------- null} v -t 0.40000000000000002 -e take_snapshot + -t 0.416116 -s 7 -d 8 -p ack -e 40 -c 0 -i 1 -a 0 -x {7.0 9.0 0 ------- null} - -t 0.416116 -s 7 -d 8 -p ack -e 40 -c 0 -i 1 -a 0 -x {7.0 9.0 0 ------- null} h -t 0.416116 -s 7 -d 8 -p ack -e 40 -c 0 -i 1 -a 0 -x {7.0 9.0 -1 ------- null} v -t 0.5 -e take_snapshot r -t 0.516632 -s 8 -d 0 -p ack -e 40 -c 0 -i 1 -a 0 -x {7.0 9.0 0 ------- null} + -t 0.516632 -s 0 -d 9 -p ack -e 40 -c 0 -i 1 -a 0 -x {7.0 9.0 0 ------- null} - -t 0.516632 -s 0 -d 9 -p ack -e 40 -c 0 -i 1 -a 0 -x {7.0 9.0 0 ------- null} h -t 0.516632 -s 0 -d 9 -p ack -e 40 -c 0 -i 1 -a 0 -x {7.0 9.0 -1 ------- null} v -t 0.59999999999999998 -e take_snapshot r -t 0.616952 -s 0 -d 9 -p ack -e 40 -c 0 -i 1 -a 0 -x {7.0 9.0 0 ------- null} + -t 0.616952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {9.0 7.0 1 ------- null} - -t 0.616952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {9.0 7.0 1 ------- null} h -t 0.616952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {9.0 7.0 -1 ------- null} + -t 0.616952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {9.0 7.0 2 ------- null} - -t 0.624952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {9.0 7.0 2 ------- null} h -t 0.624952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {9.0 7.0 -1 ------- null} v -t 0.69999999999999996 -e take_snapshot r -t 0.724952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {9.0 7.0 1 ------- null} h -t 0.724952 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {9.0 7.0 1 ------- null} r -t 0.732952 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {9.0 7.0 2 ------- null} h -t 0.732952 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {9.0 7.0 2 ------- null} v -t 0.80000000000000004 -e take_snapshot + -t 0.824952 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {9.0 7.0 1 ------- null} - -t 0.824952 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {9.0 7.0 1 ------- null} h -t 0.824952 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {9.0 7.0 -1 ------- null} + -t 0.832952 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {9.0 7.0 2 ------- null} - -t 0.83316 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {9.0 7.0 2 ------- null} h -t 0.83316 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {9.0 7.0 -1 ------- null} v -t 0.90000000000000002 -e take_snapshot r -t 0.933068 -s 8 -d 7 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {9.0 7.0 1 ------- null} h -t 0.933068 -s 7 -d 8 -p ack -e 40 -c 0 -i 4 -a 0 -x {7.0 9.0 1 ------- null} r -t 0.941276 -s 8 -d 7 -p tcp -e 1000 -c 0 -i 3 -a 0 -x {9.0 7.0 2 ------- null} h -t 0.941276 -s 7 -d 8 -p ack -e 40 -c 0 -i 5 -a 0 -x {7.0 9.0 2 ------- null} + -t 1.033068 -s 7 -d 8 -p ack -e 40 -c 0 -i 4 -a 0 -x {7.0 9.0 1 ------- null} - -t 1.033068 -s 7 -d 8 -p ack -e 40 -c 0 -i 4 -a 0 -x {7.0 9.0 1 ------- null} h -t 1.033068 -s 7 -d 8 -p ack -e 40 -c 0 -i 4 -a 0 -x {7.0 9.0 -1 ------- null} + -t 1.041276 -s 7 -d 8 -p ack -e 40 -c 0 -i 5 -a 0 -x {7.0 9.0 2 ------- null} - -t 1.041276 -s 7 -d 8 -p ack -e 40 -c 0 -i 5 -a 0 -x {7.0 9.0 2 ------- null} h -t 1.041276 -s 7 -d 8 -p ack -e 40 -c 0 -i 5 -a 0 -x {7.0 9.0 -1 ------- null} r -t 1.133584 -s 8 -d 0 -p ack -e 40 -c 0 -i 4 -a 0 -x {7.0 9.0 1 ------- null} + -t 1.133584 -s 0 -d 9 -p ack -e 40 -c 0 -i 4 -a 0 -x {7.0 9.0 1 ------- null} - -t 1.133584 -s 0 -d 9 -p ack -e 40 -c 0 -i 4 -a 0 -x {7.0 9.0 1 ------- null} h -t 1.133584 -s 0 -d 9 -p ack -e 40 -c 0 -i 4 -a 0 -x {7.0 9.0 -1 ------- null} r -t 1.141792 -s 8 -d 0 -p ack -e 40 -c 0 -i 5 -a 0 -x {7.0 9.0 2 ------- null} + -t 1.141792 -s 0 -d 9 -p ack -e 40 -c 0 -i 5 -a 0 -x {7.0 9.0 2 ------- null} - -t 1.141792 -s 0 -d 9 -p ack -e 40 -c 0 -i 5 -a 0 -x {7.0 9.0 2 ------- null} h -t 1.141792 -s 0 -d 9 -p ack -e 40 -c 0 -i 5 -a 0 -x {7.0 9.0 -1 ------- null} v -t 1.2 -e take_snapshot r -t 1.233904 -s 0 -d 9 -p ack -e 40 -c 0 -i 4 -a 0 -x {7.0 9.0 1 ------- null} + -t 1.233904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {9.0 7.0 3 ------- null} - -t 1.233904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {9.0 7.0 3 ------- null} h -t 1.233904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {9.0 7.0 -1 ------- null} + -t 1.233904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {9.0 7.0 4 ------- null} - -t 1.241904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {9.0 7.0 4 ------- null} h -t 1.241904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {9.0 7.0 -1 ------- null} r -t 1.242112 -s 0 -d 9 -p ack -e 40 -c 0 -i 5 -a 0 -x {7.0 9.0 2 ------- null} + -t 1.242112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {9.0 7.0 5 ------- null} + -t 1.242112 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {9.0 7.0 6 ------- null} - -t 1.249904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {9.0 7.0 5 ------- null} h -t 1.249904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {9.0 7.0 -1 ------- null} - -t 1.257904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {9.0 7.0 6 ------- null} h -t 1.257904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {9.0 7.0 -1 ------- null} r -t 1.341904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {9.0 7.0 3 ------- null} h -t 1.341904 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {9.0 7.0 3 ------- null} r -t 1.349904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {9.0 7.0 4 ------- null} h -t 1.349904 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {9.0 7.0 4 ------- null} r -t 1.357904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {9.0 7.0 5 ------- null} h -t 1.357904 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {9.0 7.0 5 ------- null} r -t 1.365904 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {9.0 7.0 6 ------- null} h -t 1.365904 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {9.0 7.0 6 ------- null} + -t 1.441904 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {9.0 7.0 3 ------- null} - -t 1.441904 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {9.0 7.0 3 ------- null} h -t 1.441904 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {9.0 7.0 -1 ------- null} + -t 1.449904 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {9.0 7.0 4 ------- null} - -t 1.450112 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {9.0 7.0 4 ------- null} h -t 1.450112 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {9.0 7.0 -1 ------- null} + -t 1.457904 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {9.0 7.0 5 ------- null} - -t 1.45832 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {9.0 7.0 5 ------- null} h -t 1.45832 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {9.0 7.0 -1 ------- null} + -t 1.465904 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {9.0 7.0 6 ------- null} - -t 1.466528 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {9.0 7.0 6 ------- null} h -t 1.466528 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {9.0 7.0 -1 ------- null} v -t 1.5 -e take_snapshot r -t 1.55002 -s 8 -d 7 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {9.0 7.0 3 ------- null} h -t 1.55002 -s 7 -d 8 -p ack -e 40 -c 0 -i 10 -a 0 -x {7.0 9.0 3 ------- null} r -t 1.558228 -s 8 -d 7 -p tcp -e 1000 -c 0 -i 7 -a 0 -x {9.0 7.0 4 ------- null} h -t 1.558228 -s 7 -d 8 -p ack -e 40 -c 0 -i 11 -a 0 -x {7.0 9.0 4 ------- null} r -t 1.566436 -s 8 -d 7 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {9.0 7.0 5 ------- null} h -t 1.566436 -s 7 -d 8 -p ack -e 40 -c 0 -i 12 -a 0 -x {7.0 9.0 5 ------- null} r -t 1.574644 -s 8 -d 7 -p tcp -e 1000 -c 0 -i 9 -a 0 -x {9.0 7.0 6 ------- null} h -t 1.574644 -s 7 -d 8 -p ack -e 40 -c 0 -i 13 -a 0 -x {7.0 9.0 6 ------- null} + -t 1.65002 -s 7 -d 8 -p ack -e 40 -c 0 -i 10 -a 0 -x {7.0 9.0 3 ------- null} - -t 1.65002 -s 7 -d 8 -p ack -e 40 -c 0 -i 10 -a 0 -x {7.0 9.0 3 ------- null} h -t 1.65002 -s 7 -d 8 -p ack -e 40 -c 0 -i 10 -a 0 -x {7.0 9.0 -1 ------- null} + -t 1.658228 -s 7 -d 8 -p ack -e 40 -c 0 -i 11 -a 0 -x {7.0 9.0 4 ------- null} - -t 1.658228 -s 7 -d 8 -p ack -e 40 -c 0 -i 11 -a 0 -x {7.0 9.0 4 ------- null} h -t 1.658228 -s 7 -d 8 -p ack -e 40 -c 0 -i 11 -a 0 -x {7.0 9.0 -1 ------- null} + -t 1.666436 -s 7 -d 8 -p ack -e 40 -c 0 -i 12 -a 0 -x {7.0 9.0 5 ------- null} - -t 1.666436 -s 7 -d 8 -p ack -e 40 -c 0 -i 12 -a 0 -x {7.0 9.0 5 ------- null} h -t 1.666436 -s 7 -d 8 -p ack -e 40 -c 0 -i 12 -a 0 -x {7.0 9.0 -1 ------- null} + -t 1.674644 -s 7 -d 8 -p ack -e 40 -c 0 -i 13 -a 0 -x {7.0 9.0 6 ------- null} - -t 1.674644 -s 7 -d 8 -p ack -e 40 -c 0 -i 13 -a 0 -x {7.0 9.0 6 ------- null} h -t 1.674644 -s 7 -d 8 -p ack -e 40 -c 0 -i 13 -a 0 -x {7.0 9.0 -1 ------- null} r -t 1.750536 -s 8 -d 0 -p ack -e 40 -c 0 -i 10 -a 0 -x {7.0 9.0 3 ------- null} + -t 1.750536 -s 0 -d 9 -p ack -e 40 -c 0 -i 10 -a 0 -x {7.0 9.0 3 ------- null} - -t 1.750536 -s 0 -d 9 -p ack -e 40 -c 0 -i 10 -a 0 -x {7.0 9.0 3 ------- null} h -t 1.750536 -s 0 -d 9 -p ack -e 40 -c 0 -i 10 -a 0 -x {7.0 9.0 -1 ------- null} r -t 1.758744 -s 8 -d 0 -p ack -e 40 -c 0 -i 11 -a 0 -x {7.0 9.0 4 ------- null} + -t 1.758744 -s 0 -d 9 -p ack -e 40 -c 0 -i 11 -a 0 -x {7.0 9.0 4 ------- null} - -t 1.758744 -s 0 -d 9 -p ack -e 40 -c 0 -i 11 -a 0 -x {7.0 9.0 4 ------- null} h -t 1.758744 -s 0 -d 9 -p ack -e 40 -c 0 -i 11 -a 0 -x {7.0 9.0 -1 ------- null} r -t 1.766952 -s 8 -d 0 -p ack -e 40 -c 0 -i 12 -a 0 -x {7.0 9.0 5 ------- null} + -t 1.766952 -s 0 -d 9 -p ack -e 40 -c 0 -i 12 -a 0 -x {7.0 9.0 5 ------- null} - -t 1.766952 -s 0 -d 9 -p ack -e 40 -c 0 -i 12 -a 0 -x {7.0 9.0 5 ------- null} h -t 1.766952 -s 0 -d 9 -p ack -e 40 -c 0 -i 12 -a 0 -x {7.0 9.0 -1 ------- null} r -t 1.77516 -s 8 -d 0 -p ack -e 40 -c 0 -i 13 -a 0 -x {7.0 9.0 6 ------- null} + -t 1.77516 -s 0 -d 9 -p ack -e 40 -c 0 -i 13 -a 0 -x {7.0 9.0 6 ------- null} - -t 1.77516 -s 0 -d 9 -p ack -e 40 -c 0 -i 13 -a 0 -x {7.0 9.0 6 ------- null} h -t 1.77516 -s 0 -d 9 -p ack -e 40 -c 0 -i 13 -a 0 -x {7.0 9.0 -1 ------- null} v -t 1.8 -e take_snapshot r -t 1.850856 -s 0 -d 9 -p ack -e 40 -c 0 -i 10 -a 0 -x {7.0 9.0 3 ------- null} + -t 1.850856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {9.0 7.0 7 ------- null} - -t 1.850856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {9.0 7.0 7 ------- null} h -t 1.850856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {9.0 7.0 -1 ------- null} + -t 1.850856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {9.0 7.0 8 ------- null} - -t 1.858856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {9.0 7.0 8 ------- null} h -t 1.858856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {9.0 7.0 -1 ------- null} r -t 1.859064 -s 0 -d 9 -p ack -e 40 -c 0 -i 11 -a 0 -x {7.0 9.0 4 ------- null} + -t 1.859064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {9.0 7.0 9 ------- null} + -t 1.859064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {9.0 7.0 10 ------- null} - -t 1.866856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {9.0 7.0 9 ------- null} h -t 1.866856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {9.0 7.0 -1 ------- null} r -t 1.867272 -s 0 -d 9 -p ack -e 40 -c 0 -i 12 -a 0 -x {7.0 9.0 5 ------- null} + -t 1.867272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {9.0 7.0 11 ------- null} + -t 1.867272 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {9.0 7.0 12 ------- null} - -t 1.874856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {9.0 7.0 10 ------- null} h -t 1.874856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {9.0 7.0 -1 ------- null} r -t 1.87548 -s 0 -d 9 -p ack -e 40 -c 0 -i 13 -a 0 -x {7.0 9.0 6 ------- null} + -t 1.87548 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {9.0 7.0 13 ------- null} + -t 1.87548 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {9.0 7.0 14 ------- null} - -t 1.882856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {9.0 7.0 11 ------- null} h -t 1.882856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {9.0 7.0 -1 ------- null} - -t 1.890856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {9.0 7.0 12 ------- null} h -t 1.890856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {9.0 7.0 -1 ------- null} - -t 1.898856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {9.0 7.0 13 ------- null} h -t 1.898856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {9.0 7.0 -1 ------- null} v -t 1.8999999999999999 -e take_snapshot - -t 1.906856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {9.0 7.0 14 ------- null} h -t 1.906856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {9.0 7.0 -1 ------- null} r -t 1.958856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {9.0 7.0 7 ------- null} h -t 1.958856 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {9.0 7.0 7 ------- null} r -t 1.966856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {9.0 7.0 8 ------- null} h -t 1.966856 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {9.0 7.0 8 ------- null} r -t 1.974856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {9.0 7.0 9 ------- null} h -t 1.974856 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {9.0 7.0 9 ------- null} r -t 1.982856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {9.0 7.0 10 ------- null} h -t 1.982856 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {9.0 7.0 10 ------- null} r -t 1.990856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {9.0 7.0 11 ------- null} h -t 1.990856 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {9.0 7.0 11 ------- null} r -t 1.998856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {9.0 7.0 12 ------- null} h -t 1.998856 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {9.0 7.0 12 ------- null} v -t 2 -e take_snapshot r -t 2.006856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {9.0 7.0 13 ------- null} h -t 2.006856 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {9.0 7.0 13 ------- null} r -t 2.014856 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {9.0 7.0 14 ------- null} h -t 2.014856 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {9.0 7.0 14 ------- null} + -t 2.058856 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {9.0 7.0 7 ------- null} - -t 2.058856 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {9.0 7.0 7 ------- null} h -t 2.058856 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {9.0 7.0 -1 ------- null} + -t 2.066856 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {9.0 7.0 8 ------- null} - -t 2.067064 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {9.0 7.0 8 ------- null} h -t 2.067064 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {9.0 7.0 -1 ------- null} + -t 2.074856 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {9.0 7.0 9 ------- null} - -t 2.075272 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {9.0 7.0 9 ------- null} h -t 2.075272 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {9.0 7.0 -1 ------- null} + -t 2.082856 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {9.0 7.0 10 ------- null} - -t 2.08348 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {9.0 7.0 10 ------- null} h -t 2.08348 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {9.0 7.0 -1 ------- null} + -t 2.090856 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {9.0 7.0 11 ------- null} - -t 2.091688 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {9.0 7.0 11 ------- null} h -t 2.091688 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {9.0 7.0 -1 ------- null} + -t 2.098856 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {9.0 7.0 12 ------- null} - -t 2.099896 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {9.0 7.0 12 ------- null} h -t 2.099896 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {9.0 7.0 -1 ------- null} v -t 2.1000000000000001 -e take_snapshot + -t 2.106856 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {9.0 7.0 13 ------- null} - -t 2.108104 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {9.0 7.0 13 ------- null} h -t 2.108104 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {9.0 7.0 -1 ------- null} + -t 2.114856 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {9.0 7.0 14 ------- null} - -t 2.116312 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {9.0 7.0 14 ------- null} h -t 2.116312 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {9.0 7.0 -1 ------- null} r -t 2.166972 -s 8 -d 7 -p tcp -e 1000 -c 0 -i 14 -a 0 -x {9.0 7.0 7 ------- null} h -t 2.166972 -s 7 -d 8 -p ack -e 40 -c 0 -i 22 -a 0 -x {7.0 9.0 7 ------- null} r -t 2.17518 -s 8 -d 7 -p tcp -e 1000 -c 0 -i 15 -a 0 -x {9.0 7.0 8 ------- null} h -t 2.17518 -s 7 -d 8 -p ack -e 40 -c 0 -i 23 -a 0 -x {7.0 9.0 8 ------- null} r -t 2.183388 -s 8 -d 7 -p tcp -e 1000 -c 0 -i 16 -a 0 -x {9.0 7.0 9 ------- null} h -t 2.183388 -s 7 -d 8 -p ack -e 40 -c 0 -i 24 -a 0 -x {7.0 9.0 9 ------- null} r -t 2.191596 -s 8 -d 7 -p tcp -e 1000 -c 0 -i 17 -a 0 -x {9.0 7.0 10 ------- null} h -t 2.191596 -s 7 -d 8 -p ack -e 40 -c 0 -i 25 -a 0 -x {7.0 9.0 10 ------- null} r -t 2.199804 -s 8 -d 7 -p tcp -e 1000 -c 0 -i 18 -a 0 -x {9.0 7.0 11 ------- null} h -t 2.199804 -s 7 -d 8 -p ack -e 40 -c 0 -i 26 -a 0 -x {7.0 9.0 11 ------- null} v -t 2.2000000000000002 -e take_snapshot r -t 2.208012 -s 8 -d 7 -p tcp -e 1000 -c 0 -i 19 -a 0 -x {9.0 7.0 12 ------- null} h -t 2.208012 -s 7 -d 8 -p ack -e 40 -c 0 -i 27 -a 0 -x {7.0 9.0 12 ------- null} r -t 2.21622 -s 8 -d 7 -p tcp -e 1000 -c 0 -i 20 -a 0 -x {9.0 7.0 13 ------- null} h -t 2.21622 -s 7 -d 8 -p ack -e 40 -c 0 -i 28 -a 0 -x {7.0 9.0 13 ------- null} r -t 2.224428 -s 8 -d 7 -p tcp -e 1000 -c 0 -i 21 -a 0 -x {9.0 7.0 14 ------- null} h -t 2.224428 -s 7 -d 8 -p ack -e 40 -c 0 -i 29 -a 0 -x {7.0 9.0 14 ------- null} + -t 2.266972 -s 7 -d 8 -p ack -e 40 -c 0 -i 22 -a 0 -x {7.0 9.0 7 ------- null} - -t 2.266972 -s 7 -d 8 -p ack -e 40 -c 0 -i 22 -a 0 -x {7.0 9.0 7 ------- null} h -t 2.266972 -s 7 -d 8 -p ack -e 40 -c 0 -i 22 -a 0 -x {7.0 9.0 -1 ------- null} + -t 2.27518 -s 7 -d 8 -p ack -e 40 -c 0 -i 23 -a 0 -x {7.0 9.0 8 ------- null} - -t 2.27518 -s 7 -d 8 -p ack -e 40 -c 0 -i 23 -a 0 -x {7.0 9.0 8 ------- null} h -t 2.27518 -s 7 -d 8 -p ack -e 40 -c 0 -i 23 -a 0 -x {7.0 9.0 -1 ------- null} + -t 2.283388 -s 7 -d 8 -p ack -e 40 -c 0 -i 24 -a 0 -x {7.0 9.0 9 ------- null} - -t 2.283388 -s 7 -d 8 -p ack -e 40 -c 0 -i 24 -a 0 -x {7.0 9.0 9 ------- null} h -t 2.283388 -s 7 -d 8 -p ack -e 40 -c 0 -i 24 -a 0 -x {7.0 9.0 -1 ------- null} + -t 2.291596 -s 7 -d 8 -p ack -e 40 -c 0 -i 25 -a 0 -x {7.0 9.0 10 ------- null} - -t 2.291596 -s 7 -d 8 -p ack -e 40 -c 0 -i 25 -a 0 -x {7.0 9.0 10 ------- null} h -t 2.291596 -s 7 -d 8 -p ack -e 40 -c 0 -i 25 -a 0 -x {7.0 9.0 -1 ------- null} + -t 2.299804 -s 7 -d 8 -p ack -e 40 -c 0 -i 26 -a 0 -x {7.0 9.0 11 ------- null} - -t 2.299804 -s 7 -d 8 -p ack -e 40 -c 0 -i 26 -a 0 -x {7.0 9.0 11 ------- null} h -t 2.299804 -s 7 -d 8 -p ack -e 40 -c 0 -i 26 -a 0 -x {7.0 9.0 -1 ------- null} v -t 2.2999999999999998 -e take_snapshot + -t 2.308012 -s 7 -d 8 -p ack -e 40 -c 0 -i 27 -a 0 -x {7.0 9.0 12 ------- null} - -t 2.308012 -s 7 -d 8 -p ack -e 40 -c 0 -i 27 -a 0 -x {7.0 9.0 12 ------- null} h -t 2.308012 -s 7 -d 8 -p ack -e 40 -c 0 -i 27 -a 0 -x {7.0 9.0 -1 ------- null} + -t 2.31622 -s 7 -d 8 -p ack -e 40 -c 0 -i 28 -a 0 -x {7.0 9.0 13 ------- null} - -t 2.31622 -s 7 -d 8 -p ack -e 40 -c 0 -i 28 -a 0 -x {7.0 9.0 13 ------- null} h -t 2.31622 -s 7 -d 8 -p ack -e 40 -c 0 -i 28 -a 0 -x {7.0 9.0 -1 ------- null} + -t 2.324428 -s 7 -d 8 -p ack -e 40 -c 0 -i 29 -a 0 -x {7.0 9.0 14 ------- null} - -t 2.324428 -s 7 -d 8 -p ack -e 40 -c 0 -i 29 -a 0 -x {7.0 9.0 14 ------- null} h -t 2.324428 -s 7 -d 8 -p ack -e 40 -c 0 -i 29 -a 0 -x {7.0 9.0 -1 ------- null} r -t 2.367488 -s 8 -d 0 -p ack -e 40 -c 0 -i 22 -a 0 -x {7.0 9.0 7 ------- null} + -t 2.367488 -s 0 -d 9 -p ack -e 40 -c 0 -i 22 -a 0 -x {7.0 9.0 7 ------- null} - -t 2.367488 -s 0 -d 9 -p ack -e 40 -c 0 -i 22 -a 0 -x {7.0 9.0 7 ------- null} h -t 2.367488 -s 0 -d 9 -p ack -e 40 -c 0 -i 22 -a 0 -x {7.0 9.0 -1 ------- null} r -t 2.375696 -s 8 -d 0 -p ack -e 40 -c 0 -i 23 -a 0 -x {7.0 9.0 8 ------- null} + -t 2.375696 -s 0 -d 9 -p ack -e 40 -c 0 -i 23 -a 0 -x {7.0 9.0 8 ------- null} - -t 2.375696 -s 0 -d 9 -p ack -e 40 -c 0 -i 23 -a 0 -x {7.0 9.0 8 ------- null} h -t 2.375696 -s 0 -d 9 -p ack -e 40 -c 0 -i 23 -a 0 -x {7.0 9.0 -1 ------- null} r -t 2.383904 -s 8 -d 0 -p ack -e 40 -c 0 -i 24 -a 0 -x {7.0 9.0 9 ------- null} + -t 2.383904 -s 0 -d 9 -p ack -e 40 -c 0 -i 24 -a 0 -x {7.0 9.0 9 ------- null} - -t 2.383904 -s 0 -d 9 -p ack -e 40 -c 0 -i 24 -a 0 -x {7.0 9.0 9 ------- null} h -t 2.383904 -s 0 -d 9 -p ack -e 40 -c 0 -i 24 -a 0 -x {7.0 9.0 -1 ------- null} r -t 2.392112 -s 8 -d 0 -p ack -e 40 -c 0 -i 25 -a 0 -x {7.0 9.0 10 ------- null} + -t 2.392112 -s 0 -d 9 -p ack -e 40 -c 0 -i 25 -a 0 -x {7.0 9.0 10 ------- null} - -t 2.392112 -s 0 -d 9 -p ack -e 40 -c 0 -i 25 -a 0 -x {7.0 9.0 10 ------- null} h -t 2.392112 -s 0 -d 9 -p ack -e 40 -c 0 -i 25 -a 0 -x {7.0 9.0 -1 ------- null} v -t 2.3999999999999999 -e take_snapshot r -t 2.40032 -s 8 -d 0 -p ack -e 40 -c 0 -i 26 -a 0 -x {7.0 9.0 11 ------- null} + -t 2.40032 -s 0 -d 9 -p ack -e 40 -c 0 -i 26 -a 0 -x {7.0 9.0 11 ------- null} - -t 2.40032 -s 0 -d 9 -p ack -e 40 -c 0 -i 26 -a 0 -x {7.0 9.0 11 ------- null} h -t 2.40032 -s 0 -d 9 -p ack -e 40 -c 0 -i 26 -a 0 -x {7.0 9.0 -1 ------- null} r -t 2.408528 -s 8 -d 0 -p ack -e 40 -c 0 -i 27 -a 0 -x {7.0 9.0 12 ------- null} + -t 2.408528 -s 0 -d 9 -p ack -e 40 -c 0 -i 27 -a 0 -x {7.0 9.0 12 ------- null} - -t 2.408528 -s 0 -d 9 -p ack -e 40 -c 0 -i 27 -a 0 -x {7.0 9.0 12 ------- null} h -t 2.408528 -s 0 -d 9 -p ack -e 40 -c 0 -i 27 -a 0 -x {7.0 9.0 -1 ------- null} r -t 2.416736 -s 8 -d 0 -p ack -e 40 -c 0 -i 28 -a 0 -x {7.0 9.0 13 ------- null} + -t 2.416736 -s 0 -d 9 -p ack -e 40 -c 0 -i 28 -a 0 -x {7.0 9.0 13 ------- null} - -t 2.416736 -s 0 -d 9 -p ack -e 40 -c 0 -i 28 -a 0 -x {7.0 9.0 13 ------- null} h -t 2.416736 -s 0 -d 9 -p ack -e 40 -c 0 -i 28 -a 0 -x {7.0 9.0 -1 ------- null} r -t 2.424944 -s 8 -d 0 -p ack -e 40 -c 0 -i 29 -a 0 -x {7.0 9.0 14 ------- null} + -t 2.424944 -s 0 -d 9 -p ack -e 40 -c 0 -i 29 -a 0 -x {7.0 9.0 14 ------- null} - -t 2.424944 -s 0 -d 9 -p ack -e 40 -c 0 -i 29 -a 0 -x {7.0 9.0 14 ------- null} h -t 2.424944 -s 0 -d 9 -p ack -e 40 -c 0 -i 29 -a 0 -x {7.0 9.0 -1 ------- null} r -t 2.467808 -s 0 -d 9 -p ack -e 40 -c 0 -i 22 -a 0 -x {7.0 9.0 7 ------- null} + -t 2.467808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {9.0 7.0 15 ------- null} - -t 2.467808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {9.0 7.0 15 ------- null} h -t 2.467808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {9.0 7.0 -1 ------- null} + -t 2.467808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {9.0 7.0 16 ------- null} - -t 2.475808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {9.0 7.0 16 ------- null} h -t 2.475808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {9.0 7.0 -1 ------- null} r -t 2.476016 -s 0 -d 9 -p ack -e 40 -c 0 -i 23 -a 0 -x {7.0 9.0 8 ------- null} + -t 2.476016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {9.0 7.0 17 ------- null} + -t 2.476016 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {9.0 7.0 18 ------- null} - -t 2.483808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {9.0 7.0 17 ------- null} h -t 2.483808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {9.0 7.0 -1 ------- null} r -t 2.484224 -s 0 -d 9 -p ack -e 40 -c 0 -i 24 -a 0 -x {7.0 9.0 9 ------- null} + -t 2.484224 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {9.0 7.0 19 ------- null} + -t 2.484224 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {9.0 7.0 20 ------- null} - -t 2.491808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {9.0 7.0 18 ------- null} h -t 2.491808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {9.0 7.0 -1 ------- null} r -t 2.492432 -s 0 -d 9 -p ack -e 40 -c 0 -i 25 -a 0 -x {7.0 9.0 10 ------- null} + -t 2.492432 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {9.0 7.0 21 ------- null} + -t 2.492432 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {9.0 7.0 22 ------- null} - -t 2.499808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {9.0 7.0 19 ------- null} h -t 2.499808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {9.0 7.0 -1 ------- null} v -t 2.5 -e take_snapshot r -t 2.50064 -s 0 -d 9 -p ack -e 40 -c 0 -i 26 -a 0 -x {7.0 9.0 11 ------- null} + -t 2.50064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {9.0 7.0 23 ------- null} + -t 2.50064 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {9.0 7.0 24 ------- null} - -t 2.507808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {9.0 7.0 20 ------- null} h -t 2.507808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {9.0 7.0 -1 ------- null} r -t 2.508848 -s 0 -d 9 -p ack -e 40 -c 0 -i 27 -a 0 -x {7.0 9.0 12 ------- null} + -t 2.508848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {9.0 7.0 25 ------- null} + -t 2.508848 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {9.0 7.0 26 ------- null} - -t 2.515808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {9.0 7.0 21 ------- null} h -t 2.515808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {9.0 7.0 -1 ------- null} r -t 2.517056 -s 0 -d 9 -p ack -e 40 -c 0 -i 28 -a 0 -x {7.0 9.0 13 ------- null} + -t 2.517056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {9.0 7.0 27 ------- null} + -t 2.517056 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {9.0 7.0 28 ------- null} - -t 2.523808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {9.0 7.0 22 ------- null} h -t 2.523808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {9.0 7.0 -1 ------- null} r -t 2.525264 -s 0 -d 9 -p ack -e 40 -c 0 -i 29 -a 0 -x {7.0 9.0 14 ------- null} + -t 2.525264 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {9.0 7.0 29 ------- null} - -t 2.531808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {9.0 7.0 23 ------- null} h -t 2.531808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {9.0 7.0 -1 ------- null} - -t 2.539808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {9.0 7.0 24 ------- null} h -t 2.539808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {9.0 7.0 -1 ------- null} - -t 2.547808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {9.0 7.0 25 ------- null} h -t 2.547808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {9.0 7.0 -1 ------- null} - -t 2.555808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {9.0 7.0 26 ------- null} h -t 2.555808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {9.0 7.0 -1 ------- null} - -t 2.563808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {9.0 7.0 27 ------- null} h -t 2.563808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {9.0 7.0 -1 ------- null} - -t 2.571808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {9.0 7.0 28 ------- null} h -t 2.571808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {9.0 7.0 -1 ------- null} r -t 2.575808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {9.0 7.0 15 ------- null} h -t 2.575808 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {9.0 7.0 15 ------- null} - -t 2.579808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {9.0 7.0 29 ------- null} h -t 2.579808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {9.0 7.0 -1 ------- null} r -t 2.583808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {9.0 7.0 16 ------- null} h -t 2.583808 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {9.0 7.0 16 ------- null} r -t 2.591808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {9.0 7.0 17 ------- null} h -t 2.591808 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {9.0 7.0 17 ------- null} r -t 2.599808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {9.0 7.0 18 ------- null} h -t 2.599808 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {9.0 7.0 18 ------- null} r -t 2.607808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {9.0 7.0 19 ------- null} h -t 2.607808 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {9.0 7.0 19 ------- null} r -t 2.615808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {9.0 7.0 20 ------- null} h -t 2.615808 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {9.0 7.0 20 ------- null} r -t 2.623808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {9.0 7.0 21 ------- null} h -t 2.623808 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {9.0 7.0 21 ------- null} r -t 2.631808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {9.0 7.0 22 ------- null} h -t 2.631808 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {9.0 7.0 22 ------- null} r -t 2.639808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {9.0 7.0 23 ------- null} h -t 2.639808 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {9.0 7.0 23 ------- null} r -t 2.647808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {9.0 7.0 24 ------- null} h -t 2.647808 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {9.0 7.0 24 ------- null} r -t 2.655808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {9.0 7.0 25 ------- null} h -t 2.655808 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {9.0 7.0 25 ------- null} r -t 2.663808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {9.0 7.0 26 ------- null} h -t 2.663808 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {9.0 7.0 26 ------- null} r -t 2.671808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {9.0 7.0 27 ------- null} h -t 2.671808 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {9.0 7.0 27 ------- null} + -t 2.675808 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {9.0 7.0 15 ------- null} - -t 2.675808 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {9.0 7.0 15 ------- null} h -t 2.675808 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {9.0 7.0 -1 ------- null} r -t 2.679808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {9.0 7.0 28 ------- null} h -t 2.679808 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {9.0 7.0 28 ------- null} + -t 2.683808 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {9.0 7.0 16 ------- null} - -t 2.684016 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {9.0 7.0 16 ------- null} h -t 2.684016 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {9.0 7.0 -1 ------- null} r -t 2.687808 -s 9 -d 0 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {9.0 7.0 29 ------- null} h -t 2.687808 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {9.0 7.0 29 ------- null} + -t 2.691808 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {9.0 7.0 17 ------- null} - -t 2.692224 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {9.0 7.0 17 ------- null} h -t 2.692224 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {9.0 7.0 -1 ------- null} + -t 2.699808 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {9.0 7.0 18 ------- null} - -t 2.700432 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {9.0 7.0 18 ------- null} h -t 2.700432 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {9.0 7.0 -1 ------- null} + -t 2.707808 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {9.0 7.0 19 ------- null} - -t 2.70864 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {9.0 7.0 19 ------- null} h -t 2.70864 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {9.0 7.0 -1 ------- null} + -t 2.715808 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {9.0 7.0 20 ------- null} - -t 2.716848 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {9.0 7.0 20 ------- null} h -t 2.716848 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {9.0 7.0 -1 ------- null} + -t 2.723808 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {9.0 7.0 21 ------- null} - -t 2.725056 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {9.0 7.0 21 ------- null} h -t 2.725056 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {9.0 7.0 -1 ------- null} + -t 2.731808 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {9.0 7.0 22 ------- null} - -t 2.733264 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {9.0 7.0 22 ------- null} h -t 2.733264 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {9.0 7.0 -1 ------- null} + -t 2.739808 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {9.0 7.0 23 ------- null} - -t 2.741472 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {9.0 7.0 23 ------- null} h -t 2.741472 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {9.0 7.0 -1 ------- null} + -t 2.747808 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {9.0 7.0 24 ------- null} - -t 2.74968 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {9.0 7.0 24 ------- null} h -t 2.74968 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {9.0 7.0 -1 ------- null} + -t 2.755808 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {9.0 7.0 25 ------- null} - -t 2.757888 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {9.0 7.0 25 ------- null} h -t 2.757888 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {9.0 7.0 -1 ------- null} + -t 2.763808 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {9.0 7.0 26 ------- null} - -t 2.766096 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {9.0 7.0 26 ------- null} h -t 2.766096 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {9.0 7.0 -1 ------- null} + -t 2.771808 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {9.0 7.0 27 ------- null} - -t 2.774304 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {9.0 7.0 27 ------- null} h -t 2.774304 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {9.0 7.0 -1 ------- null} + -t 2.779808 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {9.0 7.0 28 ------- null} - -t 2.782512 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {9.0 7.0 28 ------- null} h -t 2.782512 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {9.0 7.0 -1 ------- null} r -t 2.783924 -s 8 -d 7 -p tcp -e 1000 -c 0 -i 30 -a 0 -x {9.0 7.0 15 ------- null} h -t 2.783924 -s 7 -d 8 -p ack -e 40 -c 0 -i 45 -a 0 -x {7.0 9.0 15 ------- null} + -t 2.787808 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {9.0 7.0 29 ------- null} - -t 2.79072 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {9.0 7.0 29 ------- null} h -t 2.79072 -s 0 -d 8 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {9.0 7.0 -1 ------- null} r -t 2.792132 -s 8 -d 7 -p tcp -e 1000 -c 0 -i 31 -a 0 -x {9.0 7.0 16 ------- null} h -t 2.792132 -s 7 -d 8 -p ack -e 40 -c 0 -i 46 -a 0 -x {7.0 9.0 16 ------- null} r -t 2.80034 -s 8 -d 7 -p tcp -e 1000 -c 0 -i 32 -a 0 -x {9.0 7.0 17 ------- null} h -t 2.80034 -s 7 -d 8 -p ack -e 40 -c 0 -i 47 -a 0 -x {7.0 9.0 17 ------- null} r -t 2.808548 -s 8 -d 7 -p tcp -e 1000 -c 0 -i 33 -a 0 -x {9.0 7.0 18 ------- null} h -t 2.808548 -s 7 -d 8 -p ack -e 40 -c 0 -i 48 -a 0 -x {7.0 9.0 18 ------- null} r -t 2.816756 -s 8 -d 7 -p tcp -e 1000 -c 0 -i 34 -a 0 -x {9.0 7.0 19 ------- null} h -t 2.816756 -s 7 -d 8 -p ack -e 40 -c 0 -i 49 -a 0 -x {7.0 9.0 19 ------- null} r -t 2.824964 -s 8 -d 7 -p tcp -e 1000 -c 0 -i 35 -a 0 -x {9.0 7.0 20 ------- null} h -t 2.824964 -s 7 -d 8 -p ack -e 40 -c 0 -i 50 -a 0 -x {7.0 9.0 20 ------- null} r -t 2.833172 -s 8 -d 7 -p tcp -e 1000 -c 0 -i 36 -a 0 -x {9.0 7.0 21 ------- null} h -t 2.833172 -s 7 -d 8 -p ack -e 40 -c 0 -i 51 -a 0 -x {7.0 9.0 21 ------- null} r -t 2.84138 -s 8 -d 7 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {9.0 7.0 22 ------- null} h -t 2.84138 -s 7 -d 8 -p ack -e 40 -c 0 -i 52 -a 0 -x {7.0 9.0 22 ------- null} r -t 2.849588 -s 8 -d 7 -p tcp -e 1000 -c 0 -i 38 -a 0 -x {9.0 7.0 23 ------- null} h -t 2.849588 -s 7 -d 8 -p ack -e 40 -c 0 -i 53 -a 0 -x {7.0 9.0 23 ------- null} r -t 2.857796 -s 8 -d 7 -p tcp -e 1000 -c 0 -i 39 -a 0 -x {9.0 7.0 24 ------- null} h -t 2.857796 -s 7 -d 8 -p ack -e 40 -c 0 -i 54 -a 0 -x {7.0 9.0 24 ------- null} r -t 2.866004 -s 8 -d 7 -p tcp -e 1000 -c 0 -i 40 -a 0 -x {9.0 7.0 25 ------- null} h -t 2.866004 -s 7 -d 8 -p ack -e 40 -c 0 -i 55 -a 0 -x {7.0 9.0 25 ------- null} r -t 2.874212 -s 8 -d 7 -p tcp -e 1000 -c 0 -i 41 -a 0 -x {9.0 7.0 26 ------- null} h -t 2.874212 -s 7 -d 8 -p ack -e 40 -c 0 -i 56 -a 0 -x {7.0 9.0 26 ------- null} r -t 2.88242 -s 8 -d 7 -p tcp -e 1000 -c 0 -i 42 -a 0 -x {9.0 7.0 27 ------- null} h -t 2.88242 -s 7 -d 8 -p ack -e 40 -c 0 -i 57 -a 0 -x {7.0 9.0 27 ------- null} + -t 2.883924 -s 7 -d 8 -p ack -e 40 -c 0 -i 45 -a 0 -x {7.0 9.0 15 ------- null} - -t 2.883924 -s 7 -d 8 -p ack -e 40 -c 0 -i 45 -a 0 -x {7.0 9.0 15 ------- null} h -t 2.883924 -s 7 -d 8 -p ack -e 40 -c 0 -i 45 -a 0 -x {7.0 9.0 -1 ------- null} r -t 2.890628 -s 8 -d 7 -p tcp -e 1000 -c 0 -i 43 -a 0 -x {9.0 7.0 28 ------- null} h -t 2.890628 -s 7 -d 8 -p ack -e 40 -c 0 -i 58 -a 0 -x {7.0 9.0 28 ------- null} + -t 2.892132 -s 7 -d 8 -p ack -e 40 -c 0 -i 46 -a 0 -x {7.0 9.0 16 ------- null} - -t 2.892132 -s 7 -d 8 -p ack -e 40 -c 0 -i 46 -a 0 -x {7.0 9.0 16 ------- null} h -t 2.892132 -s 7 -d 8 -p ack -e 40 -c 0 -i 46 -a 0 -x {7.0 9.0 -1 ------- null} r -t 2.898836 -s 8 -d 7 -p tcp -e 1000 -c 0 -i 44 -a 0 -x {9.0 7.0 29 ------- null} h -t 2.898836 -s 7 -d 8 -p ack -e 40 -c 0 -i 59 -a 0 -x {7.0 9.0 29 ------- null} v -t 2.8999999999999999 -e terminating_nam + -t 2.90034 -s 7 -d 8 -p ack -e 40 -c 0 -i 47 -a 0 -x {7.0 9.0 17 ------- null} - -t 2.90034 -s 7 -d 8 -p ack -e 40 -c 0 -i 47 -a 0 -x {7.0 9.0 17 ------- null} h -t 2.90034 -s 7 -d 8 -p ack -e 40 -c 0 -i 47 -a 0 -x {7.0 9.0 -1 ------- null} + -t 2.908548 -s 7 -d 8 -p ack -e 40 -c 0 -i 48 -a 0 -x {7.0 9.0 18 ------- null} - -t 2.908548 -s 7 -d 8 -p ack -e 40 -c 0 -i 48 -a 0 -x {7.0 9.0 18 ------- null} h -t 2.908548 -s 7 -d 8 -p ack -e 40 -c 0 -i 48 -a 0 -x {7.0 9.0 -1 ------- null} + -t 2.916756 -s 7 -d 8 -p ack -e 40 -c 0 -i 49 -a 0 -x {7.0 9.0 19 ------- null} - -t 2.916756 -s 7 -d 8 -p ack -e 40 -c 0 -i 49 -a 0 -x {7.0 9.0 19 ------- null} h -t 2.916756 -s 7 -d 8 -p ack -e 40 -c 0 -i 49 -a 0 -x {7.0 9.0 -1 ------- null} + -t 2.924964 -s 7 -d 8 -p ack -e 40 -c 0 -i 50 -a 0 -x {7.0 9.0 20 ------- null} - -t 2.924964 -s 7 -d 8 -p ack -e 40 -c 0 -i 50 -a 0 -x {7.0 9.0 20 ------- null} h -t 2.924964 -s 7 -d 8 -p ack -e 40 -c 0 -i 50 -a 0 -x {7.0 9.0 -1 ------- null} + -t 2.933172 -s 7 -d 8 -p ack -e 40 -c 0 -i 51 -a 0 -x {7.0 9.0 21 ------- null} - -t 2.933172 -s 7 -d 8 -p ack -e 40 -c 0 -i 51 -a 0 -x {7.0 9.0 21 ------- null} h -t 2.933172 -s 7 -d 8 -p ack -e 40 -c 0 -i 51 -a 0 -x {7.0 9.0 -1 ------- null} + -t 2.94138 -s 7 -d 8 -p ack -e 40 -c 0 -i 52 -a 0 -x {7.0 9.0 22 ------- null} - -t 2.94138 -s 7 -d 8 -p ack -e 40 -c 0 -i 52 -a 0 -x {7.0 9.0 22 ------- null} h -t 2.94138 -s 7 -d 8 -p ack -e 40 -c 0 -i 52 -a 0 -x {7.0 9.0 -1 ------- null} + -t 2.949588 -s 7 -d 8 -p ack -e 40 -c 0 -i 53 -a 0 -x {7.0 9.0 23 ------- null} - -t 2.949588 -s 7 -d 8 -p ack -e 40 -c 0 -i 53 -a 0 -x {7.0 9.0 23 ------- null} h -t 2.949588 -s 7 -d 8 -p ack -e 40 -c 0 -i 53 -a 0 -x {7.0 9.0 -1 ------- null} + -t 2.957796 -s 7 -d 8 -p ack -e 40 -c 0 -i 54 -a 0 -x {7.0 9.0 24 ------- null} - -t 2.957796 -s 7 -d 8 -p ack -e 40 -c 0 -i 54 -a 0 -x {7.0 9.0 24 ------- null} h -t 2.957796 -s 7 -d 8 -p ack -e 40 -c 0 -i 54 -a 0 -x {7.0 9.0 -1 ------- null} + -t 2.966004 -s 7 -d 8 -p ack -e 40 -c 0 -i 55 -a 0 -x {7.0 9.0 25 ------- null} - -t 2.966004 -s 7 -d 8 -p ack -e 40 -c 0 -i 55 -a 0 -x {7.0 9.0 25 ------- null} h -t 2.966004 -s 7 -d 8 -p ack -e 40 -c 0 -i 55 -a 0 -x {7.0 9.0 -1 ------- null} + -t 2.974212 -s 7 -d 8 -p ack -e 40 -c 0 -i 56 -a 0 -x {7.0 9.0 26 ------- null} - -t 2.974212 -s 7 -d 8 -p ack -e 40 -c 0 -i 56 -a 0 -x {7.0 9.0 26 ------- null} h -t 2.974212 -s 7 -d 8 -p ack -e 40 -c 0 -i 56 -a 0 -x {7.0 9.0 -1 ------- null} + -t 2.98242 -s 7 -d 8 -p ack -e 40 -c 0 -i 57 -a 0 -x {7.0 9.0 27 ------- null} - -t 2.98242 -s 7 -d 8 -p ack -e 40 -c 0 -i 57 -a 0 -x {7.0 9.0 27 ------- null} h -t 2.98242 -s 7 -d 8 -p ack -e 40 -c 0 -i 57 -a 0 -x {7.0 9.0 -1 ------- null} r -t 2.98444 -s 8 -d 0 -p ack -e 40 -c 0 -i 45 -a 0 -x {7.0 9.0 15 ------- null} + -t 2.98444 -s 0 -d 9 -p ack -e 40 -c 0 -i 45 -a 0 -x {7.0 9.0 15 ------- null} - -t 2.98444 -s 0 -d 9 -p ack -e 40 -c 0 -i 45 -a 0 -x {7.0 9.0 15 ------- null} h -t 2.98444 -s 0 -d 9 -p ack -e 40 -c 0 -i 45 -a 0 -x {7.0 9.0 -1 ------- null} + -t 2.990628 -s 7 -d 8 -p ack -e 40 -c 0 -i 58 -a 0 -x {7.0 9.0 28 ------- null} - -t 2.990628 -s 7 -d 8 -p ack -e 40 -c 0 -i 58 -a 0 -x {7.0 9.0 28 ------- null} h -t 2.990628 -s 7 -d 8 -p ack -e 40 -c 0 -i 58 -a 0 -x {7.0 9.0 -1 ------- null} r -t 2.992648 -s 8 -d 0 -p ack -e 40 -c 0 -i 46 -a 0 -x {7.0 9.0 16 ------- null} + -t 2.992648 -s 0 -d 9 -p ack -e 40 -c 0 -i 46 -a 0 -x {7.0 9.0 16 ------- null} - -t 2.992648 -s 0 -d 9 -p ack -e 40 -c 0 -i 46 -a 0 -x {7.0 9.0 16 ------- null} h -t 2.992648 -s 0 -d 9 -p ack -e 40 -c 0 -i 46 -a 0 -x {7.0 9.0 -1 ------- null} + -t 2.998836 -s 7 -d 8 -p ack -e 40 -c 0 -i 59 -a 0 -x {7.0 9.0 29 ------- null} - -t 2.998836 -s 7 -d 8 -p ack -e 40 -c 0 -i 59 -a 0 -x {7.0 9.0 29 ------- null} h -t 2.998836 -s 7 -d 8 -p ack -e 40 -c 0 -i 59 -a 0 -x {7.0 9.0 -1 ------- null} nam-1.15/tcl/test/test-lan-2.nam0000664000076400007660000114770107303341337015236 0ustar tomhnsnamn -t * -s 0 -S UP -v circle n -t * -s 1 -S UP -v circle n -t * -s 2 -S UP -v circle n -t * -s 3 -S UP -v circle n -t * -s 4 -S UP -v circle n -t * -s 5 -S UP -v circle n -t * -s 6 -S UP -v circle n -t * -s 7 -S UP -v circle n -t * -s 8 -S UP -v circle n -t * -s 9 -S UP -v circle n -t * -s 11 -S UP -v circle n -t * -s 12 -S UP -v circle n -t * -s 13 -S UP -v circle X -t * -n 10 -r 10Mb -D 4ms -o left l -t * -s 0 -d 6 -S UP -r 10Mb -D 2ms -O right-down l -t * -s 1 -d 6 -S UP -r 10Mb -D 3ms -O right-up l -t * -s 6 -d 7 -S UP -r 1Mb -D 20ms -O right l -t * -s 7 -d 2 -S UP -r 10Mb -D 4ms -O right-up l -t * -s 7 -d 8 -S UP -r 10Mb -D 4ms -O right l -t * -s 3 -d 8 -S UP -r 10Mb -D 3ms -O right-up l -t * -s 8 -d 9 -S UP -r 1.5Mb -D 20ms -O right L -t * -s 10 -d 9 -o up L -t * -s 10 -d 5 -o down L -t * -s 10 -d 11 -o down L -t * -s 10 -d 12 -o up L -t * -s 10 -d 13 -o down L -t * -s 10 -d 4 -o down q -t * -s 6 -d 7 -a 0.5 q -t * -s 7 -d 8 -a 0.5 q -t * -s 8 -d 9 -a 0.5 c -t * -i 0 -n red c -t * -i 10 -n DarkSlateGray c -t * -i 11 -n DarkOliveGreen c -t * -i 12 -n DarkKhaki c -t * -i 13 -n DarkSalmon c -t * -i 14 -n DarkOrange c -t * -i 20 -n DarkOrchid c -t * -i 21 -n DarkViolet c -t * -i 22 -n DarkBlue c -t * -i 23 -n DarkCyan c -t * -i 24 -n DarkMagenta + -t 0 -s 1 -d 6 -p tcp -e 1000 -i 0 -a 10 - -t 0 -s 1 -d 6 -p tcp -e 1000 -i 0 -a 10 h -t 0 -s 1 -d 6 -p tcp -e 1000 -i 0 -a 10 + -t 0 -s 3 -d 8 -p tcp -e 1000 -i 1 -a 20 - -t 0 -s 3 -d 8 -p tcp -e 1000 -i 1 -a 20 h -t 0 -s 3 -d 8 -p tcp -e 1000 -i 1 -a 20 v -t 0 -e take_snapshot r -t 0.0038 -s 1 -d 6 -p tcp -e 1000 -i 0 -a 10 r -t 0.0038 -s 3 -d 8 -p tcp -e 1000 -i 1 -a 20 + -t 0.0038 -s 6 -d 7 -p tcp -e 1000 -i 0 -a 10 - -t 0.0038 -s 6 -d 7 -p tcp -e 1000 -i 0 -a 10 h -t 0.0038 -s 6 -d 7 -p tcp -e 1000 -i 0 -a 10 + -t 0.0038 -s 8 -d 9 -p tcp -e 1000 -i 1 -a 20 - -t 0.0038 -s 8 -d 9 -p tcp -e 1000 -i 1 -a 20 h -t 0.0038 -s 8 -d 9 -p tcp -e 1000 -i 1 -a 20 r -t 0.0291333 -s 8 -d 9 -p tcp -e 1000 -i 1 -a 20 + -t 0.0291333 -s 9 -d 10 -p tcp -e 1000 -i 1 -a 20 - -t 0.0291333 -s 9 -d 10 -p tcp -e 1000 -i 1 -a 20 h -t 0.0291333 -s 9 -d 10 -p tcp -e 1000 -i 1 -a 20 r -t 0.0318 -s 6 -d 7 -p tcp -e 1000 -i 0 -a 10 + -t 0.0318 -s 7 -d 2 -p tcp -e 1000 -i 0 -a 10 - -t 0.0318 -s 7 -d 2 -p tcp -e 1000 -i 0 -a 10 h -t 0.0318 -s 7 -d 2 -p tcp -e 1000 -i 0 -a 10 r -t 0.0339333 -s 9 -d 10 -p tcp -e 1000 -i 1 -a 20 + -t 0.0339333 -s 4 -d 10 -p ack -e 40 -i 2 -a 20 - -t 0.0339333 -s 4 -d 10 -p ack -e 40 -i 2 -a 20 h -t 0.0339333 -s 4 -d 10 -p ack -e 40 -i 2 -a 20 r -t 0.0366 -s 7 -d 2 -p tcp -e 1000 -i 0 -a 10 + -t 0.0366 -s 2 -d 7 -p ack -e 40 -i 3 -a 10 - -t 0.0366 -s 2 -d 7 -p ack -e 40 -i 3 -a 10 h -t 0.0366 -s 2 -d 7 -p ack -e 40 -i 3 -a 10 r -t 0.0379653 -s 4 -d 10 -p ack -e 40 -i 2 -a 20 + -t 0.0379653 -s 9 -d 8 -p ack -e 40 -i 2 -a 20 - -t 0.0379653 -s 9 -d 8 -p ack -e 40 -i 2 -a 20 h -t 0.0379653 -s 9 -d 8 -p ack -e 40 -i 2 -a 20 R -t 0.038 -s 9 -d 8 -g 24 -m iif -p * -T 2.0 R -t 0.038 -s 3 -d 8 -g 24 -m oif -p * -T 2.0 R -t 0.038 -s 8 -d 9 -g 24 -m oif -p * -T 2.0 R -t 0.038 -s 8 -d 9 -g 23 -m oif -p * -T 2.0 R -t 0.038 -s 8 -d 7 -g 24 -m oif -p * -T 2.0 R -t 0.038 -s 7 -d 2 -g 24 -m oif -p * -T 2.0 R -t 0.038 -s 7 -d 6 -g 24 -m oif -n -p * -T 2.0 r -t 0.040632 -s 2 -d 7 -p ack -e 40 -i 3 -a 10 + -t 0.040632 -s 7 -d 6 -p ack -e 40 -i 3 -a 10 - -t 0.040632 -s 7 -d 6 -p ack -e 40 -i 3 -a 10 h -t 0.040632 -s 7 -d 6 -p ack -e 40 -i 3 -a 10 v -t 0.05 -e take_snapshot r -t 0.0581786 -s 9 -d 8 -p ack -e 40 -i 2 -a 20 + -t 0.0581787 -s 8 -d 3 -p ack -e 40 -i 2 -a 20 - -t 0.0581787 -s 8 -d 3 -p ack -e 40 -i 2 -a 20 h -t 0.0581787 -s 8 -d 3 -p ack -e 40 -i 2 -a 20 r -t 0.060952 -s 7 -d 6 -p ack -e 40 -i 3 -a 10 + -t 0.060952 -s 6 -d 1 -p ack -e 40 -i 3 -a 10 - -t 0.060952 -s 6 -d 1 -p ack -e 40 -i 3 -a 10 h -t 0.060952 -s 6 -d 1 -p ack -e 40 -i 3 -a 10 r -t 0.0612107 -s 8 -d 3 -p ack -e 40 -i 2 -a 20 + -t 0.0612107 -s 3 -d 8 -p tcp -e 1000 -i 4 -a 20 - -t 0.0612107 -s 3 -d 8 -p tcp -e 1000 -i 4 -a 20 h -t 0.0612107 -s 3 -d 8 -p tcp -e 1000 -i 4 -a 20 + -t 0.0612107 -s 3 -d 8 -p tcp -e 1000 -i 5 -a 20 - -t 0.0620107 -s 3 -d 8 -p tcp -e 1000 -i 5 -a 20 h -t 0.0620107 -s 3 -d 8 -p tcp -e 1000 -i 5 -a 20 r -t 0.063984 -s 6 -d 1 -p ack -e 40 -i 3 -a 10 + -t 0.063984 -s 1 -d 6 -p tcp -e 1000 -i 6 -a 10 - -t 0.063984 -s 1 -d 6 -p tcp -e 1000 -i 6 -a 10 h -t 0.063984 -s 1 -d 6 -p tcp -e 1000 -i 6 -a 10 + -t 0.063984 -s 1 -d 6 -p tcp -e 1000 -i 7 -a 10 - -t 0.064784 -s 1 -d 6 -p tcp -e 1000 -i 7 -a 10 h -t 0.064784 -s 1 -d 6 -p tcp -e 1000 -i 7 -a 10 r -t 0.0650107 -s 3 -d 8 -p tcp -e 1000 -i 4 -a 20 + -t 0.0650107 -s 8 -d 9 -p tcp -e 1000 -i 4 -a 20 - -t 0.0650107 -s 8 -d 9 -p tcp -e 1000 -i 4 -a 20 h -t 0.0650107 -s 8 -d 9 -p tcp -e 1000 -i 4 -a 20 r -t 0.0658107 -s 3 -d 8 -p tcp -e 1000 -i 5 -a 20 + -t 0.0658107 -s 8 -d 9 -p tcp -e 1000 -i 5 -a 20 r -t 0.067784 -s 1 -d 6 -p tcp -e 1000 -i 6 -a 10 + -t 0.067784 -s 6 -d 7 -p tcp -e 1000 -i 6 -a 10 - -t 0.067784 -s 6 -d 7 -p tcp -e 1000 -i 6 -a 10 h -t 0.067784 -s 6 -d 7 -p tcp -e 1000 -i 6 -a 10 r -t 0.068584 -s 1 -d 6 -p tcp -e 1000 -i 7 -a 10 + -t 0.068584 -s 6 -d 7 -p tcp -e 1000 -i 7 -a 10 - -t 0.070344 -s 8 -d 9 -p tcp -e 1000 -i 5 -a 20 h -t 0.070344 -s 8 -d 9 -p tcp -e 1000 -i 5 -a 20 - -t 0.075784 -s 6 -d 7 -p tcp -e 1000 -i 7 -a 10 h -t 0.075784 -s 6 -d 7 -p tcp -e 1000 -i 7 -a 10 r -t 0.090344 -s 8 -d 9 -p tcp -e 1000 -i 4 -a 20 + -t 0.090344 -s 9 -d 10 -p tcp -e 1000 -i 4 -a 20 - -t 0.090344 -s 9 -d 10 -p tcp -e 1000 -i 4 -a 20 h -t 0.090344 -s 9 -d 10 -p tcp -e 1000 -i 4 -a 20 r -t 0.095144 -s 9 -d 10 -p tcp -e 1000 -i 4 -a 20 + -t 0.095144 -s 4 -d 10 -p ack -e 40 -i 8 -a 20 - -t 0.095144 -s 4 -d 10 -p ack -e 40 -i 8 -a 20 h -t 0.095144 -s 4 -d 10 -p ack -e 40 -i 8 -a 20 r -t 0.0956773 -s 8 -d 9 -p tcp -e 1000 -i 5 -a 20 + -t 0.0956773 -s 9 -d 10 -p tcp -e 1000 -i 5 -a 20 - -t 0.0956773 -s 9 -d 10 -p tcp -e 1000 -i 5 -a 20 h -t 0.0956773 -s 9 -d 10 -p tcp -e 1000 -i 5 -a 20 r -t 0.095784 -s 6 -d 7 -p tcp -e 1000 -i 6 -a 10 + -t 0.095784 -s 7 -d 2 -p tcp -e 1000 -i 6 -a 10 - -t 0.095784 -s 7 -d 2 -p tcp -e 1000 -i 6 -a 10 h -t 0.095784 -s 7 -d 2 -p tcp -e 1000 -i 6 -a 10 r -t 0.099176 -s 4 -d 10 -p ack -e 40 -i 8 -a 20 + -t 0.099176 -s 9 -d 8 -p ack -e 40 -i 8 -a 20 - -t 0.099176 -s 9 -d 8 -p ack -e 40 -i 8 -a 20 h -t 0.099176 -s 9 -d 8 -p ack -e 40 -i 8 -a 20 v -t 0.099900 -e take_snapshot + -t 0.1 -s 1 -d 6 -p tcp -e 1000 -i 9 -a 11 - -t 0.1 -s 1 -d 6 -p tcp -e 1000 -i 9 -a 11 h -t 0.1 -s 1 -d 6 -p tcp -e 1000 -i 9 -a 11 a -t 0.1 -s 3 -d 8 -n "TCP 21" a -t 0.1 -s 3 -d 8 -n "TCP 22" f -t 0.1 -s 3 -a "TCP 21" -n cwin -T v -v 1000 + -t 0.1 -s 3 -d 8 -p tcp -e 1000 -i 10 -a 21 - -t 0.1 -s 3 -d 8 -p tcp -e 1000 -i 10 -a 21 h -t 0.1 -s 3 -d 8 -p tcp -e 1000 -i 10 -a 21 r -t 0.100477 -s 9 -d 10 -p tcp -e 1000 -i 5 -a 20 + -t 0.100477 -s 4 -d 10 -p ack -e 40 -i 11 -a 20 - -t 0.100477 -s 4 -d 10 -p ack -e 40 -i 11 -a 20 h -t 0.100477 -s 4 -d 10 -p ack -e 40 -i 11 -a 20 r -t 0.100584 -s 7 -d 2 -p tcp -e 1000 -i 6 -a 10 + -t 0.100584 -s 2 -d 7 -p ack -e 40 -i 12 -a 10 - -t 0.100584 -s 2 -d 7 -p ack -e 40 -i 12 -a 10 h -t 0.100584 -s 2 -d 7 -p ack -e 40 -i 12 -a 10 r -t 0.103784 -s 6 -d 7 -p tcp -e 1000 -i 7 -a 10 + -t 0.103784 -s 7 -d 2 -p tcp -e 1000 -i 7 -a 10 - -t 0.103784 -s 7 -d 2 -p tcp -e 1000 -i 7 -a 10 h -t 0.103784 -s 7 -d 2 -p tcp -e 1000 -i 7 -a 10 r -t 0.1038 -s 3 -d 8 -p tcp -e 1000 -i 10 -a 21 r -t 0.1038 -s 1 -d 6 -p tcp -e 1000 -i 9 -a 11 + -t 0.1038 -s 6 -d 7 -p tcp -e 1000 -i 9 -a 11 - -t 0.1038 -s 6 -d 7 -p tcp -e 1000 -i 9 -a 11 h -t 0.1038 -s 6 -d 7 -p tcp -e 1000 -i 9 -a 11 + -t 0.1038 -s 8 -d 9 -p tcp -e 1000 -i 10 -a 21 - -t 0.1038 -s 8 -d 9 -p tcp -e 1000 -i 10 -a 21 h -t 0.1038 -s 8 -d 9 -p tcp -e 1000 -i 10 -a 21 r -t 0.104509 -s 4 -d 10 -p ack -e 40 -i 11 -a 20 + -t 0.104509 -s 9 -d 8 -p ack -e 40 -i 11 -a 20 - -t 0.104509 -s 9 -d 8 -p ack -e 40 -i 11 -a 20 h -t 0.104509 -s 9 -d 8 -p ack -e 40 -i 11 -a 20 r -t 0.104616 -s 2 -d 7 -p ack -e 40 -i 12 -a 10 + -t 0.104616 -s 7 -d 6 -p ack -e 40 -i 12 -a 10 - -t 0.104616 -s 7 -d 6 -p ack -e 40 -i 12 -a 10 h -t 0.104616 -s 7 -d 6 -p ack -e 40 -i 12 -a 10 r -t 0.108584 -s 7 -d 2 -p tcp -e 1000 -i 7 -a 10 + -t 0.108584 -s 2 -d 7 -p ack -e 40 -i 13 -a 10 - -t 0.108584 -s 2 -d 7 -p ack -e 40 -i 13 -a 10 h -t 0.108584 -s 2 -d 7 -p ack -e 40 -i 13 -a 10 r -t 0.112616 -s 2 -d 7 -p ack -e 40 -i 13 -a 10 + -t 0.112616 -s 7 -d 6 -p ack -e 40 -i 13 -a 10 - -t 0.112616 -s 7 -d 6 -p ack -e 40 -i 13 -a 10 h -t 0.112616 -s 7 -d 6 -p ack -e 40 -i 13 -a 10 r -t 0.119389 -s 9 -d 8 -p ack -e 40 -i 8 -a 20 + -t 0.119389 -s 8 -d 3 -p ack -e 40 -i 8 -a 20 - -t 0.119389 -s 8 -d 3 -p ack -e 40 -i 8 -a 20 h -t 0.119389 -s 8 -d 3 -p ack -e 40 -i 8 -a 20 r -t 0.122421 -s 8 -d 3 -p ack -e 40 -i 8 -a 20 + -t 0.122421 -s 3 -d 8 -p tcp -e 1000 -i 14 -a 20 - -t 0.122421 -s 3 -d 8 -p tcp -e 1000 -i 14 -a 20 h -t 0.122421 -s 3 -d 8 -p tcp -e 1000 -i 14 -a 20 + -t 0.122421 -s 3 -d 8 -p tcp -e 1000 -i 15 -a 20 - -t 0.123221 -s 3 -d 8 -p tcp -e 1000 -i 15 -a 20 h -t 0.123221 -s 3 -d 8 -p tcp -e 1000 -i 15 -a 20 r -t 0.124722 -s 9 -d 8 -p ack -e 40 -i 11 -a 20 + -t 0.124723 -s 8 -d 3 -p ack -e 40 -i 11 -a 20 - -t 0.124723 -s 8 -d 3 -p ack -e 40 -i 11 -a 20 h -t 0.124723 -s 8 -d 3 -p ack -e 40 -i 11 -a 20 r -t 0.124936 -s 7 -d 6 -p ack -e 40 -i 12 -a 10 + -t 0.124936 -s 6 -d 1 -p ack -e 40 -i 12 -a 10 - -t 0.124936 -s 6 -d 1 -p ack -e 40 -i 12 -a 10 h -t 0.124936 -s 6 -d 1 -p ack -e 40 -i 12 -a 10 r -t 0.126221 -s 3 -d 8 -p tcp -e 1000 -i 14 -a 20 + -t 0.126221 -s 8 -d 9 -p tcp -e 1000 -i 14 -a 20 - -t 0.126221 -s 8 -d 9 -p tcp -e 1000 -i 14 -a 20 h -t 0.126221 -s 8 -d 9 -p tcp -e 1000 -i 14 -a 20 r -t 0.127021 -s 3 -d 8 -p tcp -e 1000 -i 15 -a 20 + -t 0.127021 -s 8 -d 9 -p tcp -e 1000 -i 15 -a 20 r -t 0.127755 -s 8 -d 3 -p ack -e 40 -i 11 -a 20 + -t 0.127755 -s 3 -d 8 -p tcp -e 1000 -i 16 -a 20 - -t 0.127755 -s 3 -d 8 -p tcp -e 1000 -i 16 -a 20 h -t 0.127755 -s 3 -d 8 -p tcp -e 1000 -i 16 -a 20 + -t 0.127755 -s 3 -d 8 -p tcp -e 1000 -i 17 -a 20 r -t 0.127968 -s 6 -d 1 -p ack -e 40 -i 12 -a 10 + -t 0.127968 -s 1 -d 6 -p tcp -e 1000 -i 18 -a 10 - -t 0.127968 -s 1 -d 6 -p tcp -e 1000 -i 18 -a 10 h -t 0.127968 -s 1 -d 6 -p tcp -e 1000 -i 18 -a 10 + -t 0.127968 -s 1 -d 6 -p tcp -e 1000 -i 19 -a 10 - -t 0.128555 -s 3 -d 8 -p tcp -e 1000 -i 17 -a 20 h -t 0.128555 -s 3 -d 8 -p tcp -e 1000 -i 17 -a 20 - -t 0.128768 -s 1 -d 6 -p tcp -e 1000 -i 19 -a 10 h -t 0.128768 -s 1 -d 6 -p tcp -e 1000 -i 19 -a 10 r -t 0.129133 -s 8 -d 9 -p tcp -e 1000 -i 10 -a 21 + -t 0.129133 -s 9 -d 10 -p tcp -e 1000 -i 10 -a 21 - -t 0.129133 -s 9 -d 10 -p tcp -e 1000 -i 10 -a 21 h -t 0.129133 -s 9 -d 10 -p tcp -e 1000 -i 10 -a 21 r -t 0.131555 -s 3 -d 8 -p tcp -e 1000 -i 16 -a 20 - -t 0.131555 -s 8 -d 9 -p tcp -e 1000 -i 15 -a 20 h -t 0.131555 -s 8 -d 9 -p tcp -e 1000 -i 15 -a 20 + -t 0.131555 -s 8 -d 9 -p tcp -e 1000 -i 16 -a 20 r -t 0.131768 -s 1 -d 6 -p tcp -e 1000 -i 18 -a 10 + -t 0.131768 -s 6 -d 7 -p tcp -e 1000 -i 18 -a 10 - -t 0.131768 -s 6 -d 7 -p tcp -e 1000 -i 18 -a 10 h -t 0.131768 -s 6 -d 7 -p tcp -e 1000 -i 18 -a 10 r -t 0.1318 -s 6 -d 7 -p tcp -e 1000 -i 9 -a 11 + -t 0.1318 -s 7 -d 2 -p tcp -e 1000 -i 9 -a 11 - -t 0.1318 -s 7 -d 2 -p tcp -e 1000 -i 9 -a 11 h -t 0.1318 -s 7 -d 2 -p tcp -e 1000 -i 9 -a 11 r -t 0.132355 -s 3 -d 8 -p tcp -e 1000 -i 17 -a 20 + -t 0.132355 -s 8 -d 9 -p tcp -e 1000 -i 17 -a 20 r -t 0.132568 -s 1 -d 6 -p tcp -e 1000 -i 19 -a 10 + -t 0.132568 -s 6 -d 7 -p tcp -e 1000 -i 19 -a 10 r -t 0.132936 -s 7 -d 6 -p ack -e 40 -i 13 -a 10 + -t 0.132936 -s 6 -d 1 -p ack -e 40 -i 13 -a 10 - -t 0.132936 -s 6 -d 1 -p ack -e 40 -i 13 -a 10 h -t 0.132936 -s 6 -d 1 -p ack -e 40 -i 13 -a 10 r -t 0.133933 -s 9 -d 10 -p tcp -e 1000 -i 10 -a 21 a -t 0.133933 -s 4 -d 10 -n "TCP 21" + -t 0.133933 -s 4 -d 10 -p ack -e 40 -i 20 -a 21 - -t 0.133933 -s 4 -d 10 -p ack -e 40 -i 20 -a 21 h -t 0.133933 -s 4 -d 10 -p ack -e 40 -i 20 -a 21 r -t 0.135968 -s 6 -d 1 -p ack -e 40 -i 13 -a 10 + -t 0.135968 -s 1 -d 6 -p tcp -e 1000 -i 21 -a 10 - -t 0.135968 -s 1 -d 6 -p tcp -e 1000 -i 21 -a 10 h -t 0.135968 -s 1 -d 6 -p tcp -e 1000 -i 21 -a 10 + -t 0.135968 -s 1 -d 6 -p tcp -e 1000 -i 22 -a 10 r -t 0.1366 -s 7 -d 2 -p tcp -e 1000 -i 9 -a 11 + -t 0.1366 -s 2 -d 7 -p ack -e 40 -i 23 -a 11 - -t 0.1366 -s 2 -d 7 -p ack -e 40 -i 23 -a 11 h -t 0.1366 -s 2 -d 7 -p ack -e 40 -i 23 -a 11 - -t 0.136768 -s 1 -d 6 -p tcp -e 1000 -i 22 -a 10 h -t 0.136768 -s 1 -d 6 -p tcp -e 1000 -i 22 -a 10 - -t 0.136888 -s 8 -d 9 -p tcp -e 1000 -i 16 -a 20 h -t 0.136888 -s 8 -d 9 -p tcp -e 1000 -i 16 -a 20 r -t 0.137965 -s 4 -d 10 -p ack -e 40 -i 20 -a 21 + -t 0.137965 -s 9 -d 8 -p ack -e 40 -i 20 -a 21 - -t 0.137965 -s 9 -d 8 -p ack -e 40 -i 20 -a 21 h -t 0.137965 -s 9 -d 8 -p ack -e 40 -i 20 -a 21 r -t 0.139768 -s 1 -d 6 -p tcp -e 1000 -i 21 -a 10 - -t 0.139768 -s 6 -d 7 -p tcp -e 1000 -i 19 -a 10 h -t 0.139768 -s 6 -d 7 -p tcp -e 1000 -i 19 -a 10 + -t 0.139768 -s 6 -d 7 -p tcp -e 1000 -i 21 -a 10 r -t 0.140568 -s 1 -d 6 -p tcp -e 1000 -i 22 -a 10 + -t 0.140568 -s 6 -d 7 -p tcp -e 1000 -i 22 -a 10 r -t 0.140632 -s 2 -d 7 -p ack -e 40 -i 23 -a 11 + -t 0.140632 -s 7 -d 6 -p ack -e 40 -i 23 -a 11 - -t 0.140632 -s 7 -d 6 -p ack -e 40 -i 23 -a 11 h -t 0.140632 -s 7 -d 6 -p ack -e 40 -i 23 -a 11 - -t 0.142221 -s 8 -d 9 -p tcp -e 1000 -i 17 -a 20 h -t 0.142221 -s 8 -d 9 -p tcp -e 1000 -i 17 -a 20 l -t 0.145293 -s 8 -d 9 -S DOWN n -t 0.145293 -s 8 -S DOWN R -t 0.145293 -s 8 -d 9 -g 24 -m oif -p * -T 2.0 -x R -t 0.145293 -s 8 -d 9 -g 23 -m oif -p * -T 2.0 -x R -t 0.145293 -s 8 -d 7 -g 24 -m oif -p * -T 2.0 -x d -t 0.145293 -e 1000 -s 8 -d 9 -a 20 -c 20 -p tcp -i 17 d -t 0.145293 -e 40 -s 9 -d 8 -a 21 -c 21 -p ack -i 20 d -t 0.145293 -e 1000 -s 8 -d 9 -a 20 -c 20 -p tcp -i 16 d -t 0.145293 -e 1000 -s 8 -d 9 -a 20 -c 20 -p tcp -i 15 d -t 0.145293 -e 1000 -s 8 -d 9 -a 20 -c 20 -p tcp -i 14 - -t 0.147768 -s 6 -d 7 -p tcp -e 1000 -i 21 -a 10 h -t 0.147768 -s 6 -d 7 -p tcp -e 1000 -i 21 -a 10 v -t 0.150000 -e take_snapshot n -t 0.151555 -s 8 -S UP l -t 0.151555 -s 8 -d 9 -S UP - -t 0.155768 -s 6 -d 7 -p tcp -e 1000 -i 22 -a 10 h -t 0.155768 -s 6 -d 7 -p tcp -e 1000 -i 22 -a 10 + -t 0.156355 -s 4 -d 10 -p ack -e 40 -i 24 -a 20 - -t 0.156355 -s 4 -d 10 -p ack -e 40 -i 24 -a 20 h -t 0.156355 -s 4 -d 10 -p ack -e 40 -i 24 -a 20 R -t 0.156355 -s 8 -d 9 -g 23 -m oif -p * -T 2.0 r -t 0.158178 -s 9 -d 8 -p ack -e 40 -i 20 -a 21 + -t 0.158179 -s 8 -d 3 -p ack -e 40 -i 20 -a 21 - -t 0.158179 -s 8 -d 3 -p ack -e 40 -i 20 -a 21 h -t 0.158179 -s 8 -d 3 -p ack -e 40 -i 20 -a 21 R -t 0.159768 -s 8 -d 9 -g 24 -m oif -p * -T 2.0 r -t 0.159768 -s 6 -d 7 -p tcp -e 1000 -i 18 -a 10 + -t 0.159768 -s 7 -d 2 -p tcp -e 1000 -i 18 -a 10 - -t 0.159768 -s 7 -d 2 -p tcp -e 1000 -i 18 -a 10 h -t 0.159768 -s 7 -d 2 -p tcp -e 1000 -i 18 -a 10 r -t 0.160387 -s 4 -d 10 -p ack -e 40 -i 24 -a 20 + -t 0.160387 -s 9 -d 8 -p ack -e 40 -i 24 -a 20 - -t 0.160387 -s 9 -d 8 -p ack -e 40 -i 24 -a 20 h -t 0.160387 -s 9 -d 8 -p ack -e 40 -i 24 -a 20 r -t 0.160952 -s 7 -d 6 -p ack -e 40 -i 23 -a 11 + -t 0.160952 -s 6 -d 1 -p ack -e 40 -i 23 -a 11 - -t 0.160952 -s 6 -d 1 -p ack -e 40 -i 23 -a 11 h -t 0.160952 -s 6 -d 1 -p ack -e 40 -i 23 -a 11 r -t 0.161211 -s 8 -d 3 -p ack -e 40 -i 20 -a 21 f -t 0.161211 -s 3 -a "TCP 21" -n cwin -T v -v 2000 + -t 0.161211 -s 3 -d 8 -p tcp -e 1000 -i 25 -a 21 - -t 0.161211 -s 3 -d 8 -p tcp -e 1000 -i 25 -a 21 h -t 0.161211 -s 3 -d 8 -p tcp -e 1000 -i 25 -a 21 + -t 0.161211 -s 3 -d 8 -p tcp -e 1000 -i 26 -a 21 R -t 0.161211 -s 8 -d 7 -g 24 -m oif -p * -T 2.0 + -t 0.161688 -s 4 -d 10 -p ack -e 40 -i 27 -a 20 - -t 0.161688 -s 4 -d 10 -p ack -e 40 -i 27 -a 20 h -t 0.161688 -s 4 -d 10 -p ack -e 40 -i 27 -a 20 - -t 0.162011 -s 3 -d 8 -p tcp -e 1000 -i 26 -a 21 h -t 0.162011 -s 3 -d 8 -p tcp -e 1000 -i 26 -a 21 r -t 0.163984 -s 6 -d 1 -p ack -e 40 -i 23 -a 11 + -t 0.163984 -s 1 -d 6 -p tcp -e 1000 -i 28 -a 11 - -t 0.163984 -s 1 -d 6 -p tcp -e 1000 -i 28 -a 11 h -t 0.163984 -s 1 -d 6 -p tcp -e 1000 -i 28 -a 11 + -t 0.163984 -s 1 -d 6 -p tcp -e 1000 -i 29 -a 11 r -t 0.164568 -s 7 -d 2 -p tcp -e 1000 -i 18 -a 10 + -t 0.164568 -s 2 -d 7 -p ack -e 40 -i 30 -a 10 - -t 0.164568 -s 2 -d 7 -p ack -e 40 -i 30 -a 10 h -t 0.164568 -s 2 -d 7 -p ack -e 40 -i 30 -a 10 - -t 0.164784 -s 1 -d 6 -p tcp -e 1000 -i 29 -a 11 h -t 0.164784 -s 1 -d 6 -p tcp -e 1000 -i 29 -a 11 r -t 0.165011 -s 3 -d 8 -p tcp -e 1000 -i 25 -a 21 + -t 0.165011 -s 8 -d 9 -p tcp -e 1000 -i 25 -a 21 - -t 0.165011 -s 8 -d 9 -p tcp -e 1000 -i 25 -a 21 h -t 0.165011 -s 8 -d 9 -p tcp -e 1000 -i 25 -a 21 r -t 0.16572 -s 4 -d 10 -p ack -e 40 -i 27 -a 20 + -t 0.16572 -s 9 -d 8 -p ack -e 40 -i 27 -a 20 - -t 0.16572 -s 9 -d 8 -p ack -e 40 -i 27 -a 20 h -t 0.16572 -s 9 -d 8 -p ack -e 40 -i 27 -a 20 r -t 0.165811 -s 3 -d 8 -p tcp -e 1000 -i 26 -a 21 + -t 0.165811 -s 8 -d 9 -p tcp -e 1000 -i 26 -a 21 r -t 0.167021 -s 9 -d 10 -p tcp -e 1000 -i 16 -a 20 + -t 0.167021 -s 4 -d 10 -p ack -e 40 -i 31 -a 20 - -t 0.167021 -s 4 -d 10 -p ack -e 40 -i 31 -a 20 h -t 0.167021 -s 4 -d 10 -p ack -e 40 -i 31 -a 20 r -t 0.167768 -s 6 -d 7 -p tcp -e 1000 -i 19 -a 10 + -t 0.167768 -s 7 -d 2 -p tcp -e 1000 -i 19 -a 10 - -t 0.167768 -s 7 -d 2 -p tcp -e 1000 -i 19 -a 10 h -t 0.167768 -s 7 -d 2 -p tcp -e 1000 -i 19 -a 10 r -t 0.167784 -s 1 -d 6 -p tcp -e 1000 -i 28 -a 11 + -t 0.167784 -s 6 -d 7 -p tcp -e 1000 -i 28 -a 11 - -t 0.167784 -s 6 -d 7 -p tcp -e 1000 -i 28 -a 11 h -t 0.167784 -s 6 -d 7 -p tcp -e 1000 -i 28 -a 11 r -t 0.168584 -s 1 -d 6 -p tcp -e 1000 -i 29 -a 11 + -t 0.168584 -s 6 -d 7 -p tcp -e 1000 -i 29 -a 11 r -t 0.1686 -s 2 -d 7 -p ack -e 40 -i 30 -a 10 + -t 0.1686 -s 7 -d 6 -p ack -e 40 -i 30 -a 10 - -t 0.1686 -s 7 -d 6 -p ack -e 40 -i 30 -a 10 h -t 0.1686 -s 7 -d 6 -p ack -e 40 -i 30 -a 10 - -t 0.170344 -s 8 -d 9 -p tcp -e 1000 -i 26 -a 21 h -t 0.170344 -s 8 -d 9 -p tcp -e 1000 -i 26 -a 21 r -t 0.171053 -s 4 -d 10 -p ack -e 40 -i 31 -a 20 + -t 0.171053 -s 9 -d 8 -p ack -e 40 -i 31 -a 20 - -t 0.171053 -s 9 -d 8 -p ack -e 40 -i 31 -a 20 h -t 0.171053 -s 9 -d 8 -p ack -e 40 -i 31 -a 20 + -t 0.172355 -s 4 -d 10 -p ack -e 40 -i 32 -a 20 - -t 0.172355 -s 4 -d 10 -p ack -e 40 -i 32 -a 20 h -t 0.172355 -s 4 -d 10 -p ack -e 40 -i 32 -a 20 r -t 0.172568 -s 7 -d 2 -p tcp -e 1000 -i 19 -a 10 + -t 0.172568 -s 2 -d 7 -p ack -e 40 -i 33 -a 10 - -t 0.172568 -s 2 -d 7 -p ack -e 40 -i 33 -a 10 h -t 0.172568 -s 2 -d 7 -p ack -e 40 -i 33 -a 10 r -t 0.175768 -s 6 -d 7 -p tcp -e 1000 -i 21 -a 10 + -t 0.175768 -s 7 -d 2 -p tcp -e 1000 -i 21 -a 10 - -t 0.175768 -s 7 -d 2 -p tcp -e 1000 -i 21 -a 10 h -t 0.175768 -s 7 -d 2 -p tcp -e 1000 -i 21 -a 10 - -t 0.175784 -s 6 -d 7 -p tcp -e 1000 -i 29 -a 11 h -t 0.175784 -s 6 -d 7 -p tcp -e 1000 -i 29 -a 11 r -t 0.176387 -s 4 -d 10 -p ack -e 40 -i 32 -a 20 + -t 0.176387 -s 9 -d 8 -p ack -e 40 -i 32 -a 20 - -t 0.176387 -s 9 -d 8 -p ack -e 40 -i 32 -a 20 h -t 0.176387 -s 9 -d 8 -p ack -e 40 -i 32 -a 20 r -t 0.1766 -s 2 -d 7 -p ack -e 40 -i 33 -a 10 + -t 0.1766 -s 7 -d 6 -p ack -e 40 -i 33 -a 10 - -t 0.1766 -s 7 -d 6 -p ack -e 40 -i 33 -a 10 h -t 0.1766 -s 7 -d 6 -p ack -e 40 -i 33 -a 10 r -t 0.180568 -s 7 -d 2 -p tcp -e 1000 -i 21 -a 10 + -t 0.180568 -s 2 -d 7 -p ack -e 40 -i 34 -a 10 - -t 0.180568 -s 2 -d 7 -p ack -e 40 -i 34 -a 10 h -t 0.180568 -s 2 -d 7 -p ack -e 40 -i 34 -a 10 r -t 0.1806 -s 9 -d 8 -p ack -e 40 -i 24 -a 20 + -t 0.1806 -s 8 -d 3 -p ack -e 40 -i 24 -a 20 - -t 0.1806 -s 8 -d 3 -p ack -e 40 -i 24 -a 20 h -t 0.1806 -s 8 -d 3 -p ack -e 40 -i 24 -a 20 r -t 0.183632 -s 8 -d 3 -p ack -e 40 -i 24 -a 20 + -t 0.183632 -s 3 -d 8 -p tcp -e 1000 -i 35 -a 20 - -t 0.183632 -s 3 -d 8 -p tcp -e 1000 -i 35 -a 20 h -t 0.183632 -s 3 -d 8 -p tcp -e 1000 -i 35 -a 20 + -t 0.183632 -s 3 -d 8 -p tcp -e 1000 -i 36 -a 20 r -t 0.183768 -s 6 -d 7 -p tcp -e 1000 -i 22 -a 10 + -t 0.183768 -s 7 -d 2 -p tcp -e 1000 -i 22 -a 10 - -t 0.183768 -s 7 -d 2 -p tcp -e 1000 -i 22 -a 10 h -t 0.183768 -s 7 -d 2 -p tcp -e 1000 -i 22 -a 10 - -t 0.184432 -s 3 -d 8 -p tcp -e 1000 -i 36 -a 20 h -t 0.184432 -s 3 -d 8 -p tcp -e 1000 -i 36 -a 20 r -t 0.1846 -s 2 -d 7 -p ack -e 40 -i 34 -a 10 + -t 0.1846 -s 7 -d 6 -p ack -e 40 -i 34 -a 10 - -t 0.1846 -s 7 -d 6 -p ack -e 40 -i 34 -a 10 h -t 0.1846 -s 7 -d 6 -p ack -e 40 -i 34 -a 10 r -t 0.185933 -s 9 -d 8 -p ack -e 40 -i 27 -a 20 + -t 0.185933 -s 8 -d 3 -p ack -e 40 -i 27 -a 20 - -t 0.185933 -s 8 -d 3 -p ack -e 40 -i 27 -a 20 h -t 0.185933 -s 8 -d 3 -p ack -e 40 -i 27 -a 20 r -t 0.187432 -s 3 -d 8 -p tcp -e 1000 -i 35 -a 20 + -t 0.187432 -s 8 -d 9 -p tcp -e 1000 -i 35 -a 20 - -t 0.187432 -s 8 -d 9 -p tcp -e 1000 -i 35 -a 20 h -t 0.187432 -s 8 -d 9 -p tcp -e 1000 -i 35 -a 20 r -t 0.188232 -s 3 -d 8 -p tcp -e 1000 -i 36 -a 20 + -t 0.188232 -s 8 -d 9 -p tcp -e 1000 -i 36 -a 20 r -t 0.188568 -s 7 -d 2 -p tcp -e 1000 -i 22 -a 10 + -t 0.188568 -s 2 -d 7 -p ack -e 40 -i 37 -a 10 - -t 0.188568 -s 2 -d 7 -p ack -e 40 -i 37 -a 10 h -t 0.188568 -s 2 -d 7 -p ack -e 40 -i 37 -a 10 r -t 0.18892 -s 7 -d 6 -p ack -e 40 -i 30 -a 10 + -t 0.18892 -s 6 -d 1 -p ack -e 40 -i 30 -a 10 - -t 0.18892 -s 6 -d 1 -p ack -e 40 -i 30 -a 10 h -t 0.18892 -s 6 -d 1 -p ack -e 40 -i 30 -a 10 r -t 0.188965 -s 8 -d 3 -p ack -e 40 -i 27 -a 20 + -t 0.188965 -s 3 -d 8 -p tcp -e 1000 -i 38 -a 20 - -t 0.188965 -s 3 -d 8 -p tcp -e 1000 -i 38 -a 20 h -t 0.188965 -s 3 -d 8 -p tcp -e 1000 -i 38 -a 20 + -t 0.188965 -s 3 -d 8 -p tcp -e 1000 -i 39 -a 20 - -t 0.189765 -s 3 -d 8 -p tcp -e 1000 -i 39 -a 20 h -t 0.189765 -s 3 -d 8 -p tcp -e 1000 -i 39 -a 20 r -t 0.190344 -s 8 -d 9 -p tcp -e 1000 -i 25 -a 21 + -t 0.190344 -s 9 -d 10 -p tcp -e 1000 -i 25 -a 21 - -t 0.190344 -s 9 -d 10 -p tcp -e 1000 -i 25 -a 21 h -t 0.190344 -s 9 -d 10 -p tcp -e 1000 -i 25 -a 21 r -t 0.191266 -s 9 -d 8 -p ack -e 40 -i 31 -a 20 + -t 0.191267 -s 8 -d 3 -p ack -e 40 -i 31 -a 20 - -t 0.191267 -s 8 -d 3 -p ack -e 40 -i 31 -a 20 h -t 0.191267 -s 8 -d 3 -p ack -e 40 -i 31 -a 20 r -t 0.191952 -s 6 -d 1 -p ack -e 40 -i 30 -a 10 + -t 0.191952 -s 1 -d 6 -p tcp -e 1000 -i 40 -a 10 - -t 0.191952 -s 1 -d 6 -p tcp -e 1000 -i 40 -a 10 h -t 0.191952 -s 1 -d 6 -p tcp -e 1000 -i 40 -a 10 + -t 0.191952 -s 1 -d 6 -p tcp -e 1000 -i 41 -a 10 r -t 0.1926 -s 2 -d 7 -p ack -e 40 -i 37 -a 10 + -t 0.1926 -s 7 -d 6 -p ack -e 40 -i 37 -a 10 - -t 0.1926 -s 7 -d 6 -p ack -e 40 -i 37 -a 10 h -t 0.1926 -s 7 -d 6 -p ack -e 40 -i 37 -a 10 - -t 0.192752 -s 1 -d 6 -p tcp -e 1000 -i 41 -a 10 h -t 0.192752 -s 1 -d 6 -p tcp -e 1000 -i 41 -a 10 r -t 0.192765 -s 3 -d 8 -p tcp -e 1000 -i 38 -a 20 + -t 0.192765 -s 8 -d 9 -p tcp -e 1000 -i 38 -a 20 - -t 0.192765 -s 8 -d 9 -p tcp -e 1000 -i 36 -a 20 h -t 0.192765 -s 8 -d 9 -p tcp -e 1000 -i 36 -a 20 r -t 0.193565 -s 3 -d 8 -p tcp -e 1000 -i 39 -a 20 + -t 0.193565 -s 8 -d 9 -p tcp -e 1000 -i 39 -a 20 r -t 0.194299 -s 8 -d 3 -p ack -e 40 -i 31 -a 20 + -t 0.194299 -s 3 -d 8 -p tcp -e 1000 -i 42 -a 20 - -t 0.194299 -s 3 -d 8 -p tcp -e 1000 -i 42 -a 20 h -t 0.194299 -s 3 -d 8 -p tcp -e 1000 -i 42 -a 20 + -t 0.194299 -s 3 -d 8 -p tcp -e 1000 -i 43 -a 20 - -t 0.195099 -s 3 -d 8 -p tcp -e 1000 -i 43 -a 20 h -t 0.195099 -s 3 -d 8 -p tcp -e 1000 -i 43 -a 20 r -t 0.195144 -s 9 -d 10 -p tcp -e 1000 -i 25 -a 21 + -t 0.195144 -s 4 -d 10 -p ack -e 40 -i 44 -a 21 - -t 0.195144 -s 4 -d 10 -p ack -e 40 -i 44 -a 21 h -t 0.195144 -s 4 -d 10 -p ack -e 40 -i 44 -a 21 r -t 0.195677 -s 8 -d 9 -p tcp -e 1000 -i 26 -a 21 + -t 0.195677 -s 9 -d 10 -p tcp -e 1000 -i 26 -a 21 - -t 0.195677 -s 9 -d 10 -p tcp -e 1000 -i 26 -a 21 h -t 0.195677 -s 9 -d 10 -p tcp -e 1000 -i 26 -a 21 r -t 0.195752 -s 1 -d 6 -p tcp -e 1000 -i 40 -a 10 + -t 0.195752 -s 6 -d 7 -p tcp -e 1000 -i 40 -a 10 - -t 0.195752 -s 6 -d 7 -p tcp -e 1000 -i 40 -a 10 h -t 0.195752 -s 6 -d 7 -p tcp -e 1000 -i 40 -a 10 r -t 0.195784 -s 6 -d 7 -p tcp -e 1000 -i 28 -a 11 + -t 0.195784 -s 7 -d 2 -p tcp -e 1000 -i 28 -a 11 - -t 0.195784 -s 7 -d 2 -p tcp -e 1000 -i 28 -a 11 h -t 0.195784 -s 7 -d 2 -p tcp -e 1000 -i 28 -a 11 r -t 0.196552 -s 1 -d 6 -p tcp -e 1000 -i 41 -a 10 + -t 0.196552 -s 6 -d 7 -p tcp -e 1000 -i 41 -a 10 r -t 0.1966 -s 9 -d 8 -p ack -e 40 -i 32 -a 20 + -t 0.1966 -s 8 -d 3 -p ack -e 40 -i 32 -a 20 - -t 0.1966 -s 8 -d 3 -p ack -e 40 -i 32 -a 20 h -t 0.1966 -s 8 -d 3 -p ack -e 40 -i 32 -a 20 r -t 0.19692 -s 7 -d 6 -p ack -e 40 -i 33 -a 10 + -t 0.19692 -s 6 -d 1 -p ack -e 40 -i 33 -a 10 - -t 0.19692 -s 6 -d 1 -p ack -e 40 -i 33 -a 10 h -t 0.19692 -s 6 -d 1 -p ack -e 40 -i 33 -a 10 r -t 0.198099 -s 3 -d 8 -p tcp -e 1000 -i 42 -a 20 - -t 0.198099 -s 8 -d 9 -p tcp -e 1000 -i 38 -a 20 h -t 0.198099 -s 8 -d 9 -p tcp -e 1000 -i 38 -a 20 + -t 0.198099 -s 8 -d 9 -p tcp -e 1000 -i 42 -a 20 r -t 0.198899 -s 3 -d 8 -p tcp -e 1000 -i 43 -a 20 + -t 0.198899 -s 8 -d 9 -p tcp -e 1000 -i 43 -a 20 r -t 0.199176 -s 4 -d 10 -p ack -e 40 -i 44 -a 21 + -t 0.199176 -s 9 -d 8 -p ack -e 40 -i 44 -a 21 - -t 0.199176 -s 9 -d 8 -p ack -e 40 -i 44 -a 21 h -t 0.199176 -s 9 -d 8 -p ack -e 40 -i 44 -a 21 r -t 0.199632 -s 8 -d 3 -p ack -e 40 -i 32 -a 20 + -t 0.199632 -s 3 -d 8 -p tcp -e 1000 -i 45 -a 20 - -t 0.199632 -s 3 -d 8 -p tcp -e 1000 -i 45 -a 20 h -t 0.199632 -s 3 -d 8 -p tcp -e 1000 -i 45 -a 20 + -t 0.199632 -s 3 -d 8 -p tcp -e 1000 -i 46 -a 20 r -t 0.199952 -s 6 -d 1 -p ack -e 40 -i 33 -a 10 + -t 0.199952 -s 1 -d 6 -p tcp -e 1000 -i 47 -a 10 - -t 0.199952 -s 1 -d 6 -p tcp -e 1000 -i 47 -a 10 h -t 0.199952 -s 1 -d 6 -p tcp -e 1000 -i 47 -a 10 + -t 0.199952 -s 1 -d 6 -p tcp -e 1000 -i 48 -a 10 + -t 0.2 -s 1 -d 6 -p tcp -e 1000 -i 49 -a 12 + -t 0.2 -s 3 -d 8 -p tcp -e 1000 -i 50 -a 22 v -t 0.200400 -e take_snapshot - -t 0.200432 -s 3 -d 8 -p tcp -e 1000 -i 46 -a 20 h -t 0.200432 -s 3 -d 8 -p tcp -e 1000 -i 46 -a 20 r -t 0.200477 -s 9 -d 10 -p tcp -e 1000 -i 26 -a 21 + -t 0.200477 -s 4 -d 10 -p ack -e 40 -i 51 -a 21 - -t 0.200477 -s 4 -d 10 -p ack -e 40 -i 51 -a 21 h -t 0.200477 -s 4 -d 10 -p ack -e 40 -i 51 -a 21 r -t 0.200584 -s 7 -d 2 -p tcp -e 1000 -i 28 -a 11 + -t 0.200584 -s 2 -d 7 -p ack -e 40 -i 52 -a 11 - -t 0.200584 -s 2 -d 7 -p ack -e 40 -i 52 -a 11 h -t 0.200584 -s 2 -d 7 -p ack -e 40 -i 52 -a 11 - -t 0.200752 -s 1 -d 6 -p tcp -e 1000 -i 48 -a 10 h -t 0.200752 -s 1 -d 6 -p tcp -e 1000 -i 48 -a 10 - -t 0.201232 -s 3 -d 8 -p tcp -e 1000 -i 50 -a 22 h -t 0.201232 -s 3 -d 8 -p tcp -e 1000 -i 50 -a 22 - -t 0.201552 -s 1 -d 6 -p tcp -e 1000 -i 49 -a 12 h -t 0.201552 -s 1 -d 6 -p tcp -e 1000 -i 49 -a 12 r -t 0.203432 -s 3 -d 8 -p tcp -e 1000 -i 45 -a 20 + -t 0.203432 -s 8 -d 9 -p tcp -e 1000 -i 45 -a 20 - -t 0.203432 -s 8 -d 9 -p tcp -e 1000 -i 39 -a 20 h -t 0.203432 -s 8 -d 9 -p tcp -e 1000 -i 39 -a 20 r -t 0.203752 -s 1 -d 6 -p tcp -e 1000 -i 47 -a 10 - -t 0.203752 -s 6 -d 7 -p tcp -e 1000 -i 41 -a 10 h -t 0.203752 -s 6 -d 7 -p tcp -e 1000 -i 41 -a 10 + -t 0.203752 -s 6 -d 7 -p tcp -e 1000 -i 47 -a 10 r -t 0.203784 -s 6 -d 7 -p tcp -e 1000 -i 29 -a 11 + -t 0.203784 -s 7 -d 2 -p tcp -e 1000 -i 29 -a 11 - -t 0.203784 -s 7 -d 2 -p tcp -e 1000 -i 29 -a 11 h -t 0.203784 -s 7 -d 2 -p tcp -e 1000 -i 29 -a 11 r -t 0.204232 -s 3 -d 8 -p tcp -e 1000 -i 46 -a 20 + -t 0.204232 -s 8 -d 9 -p tcp -e 1000 -i 46 -a 20 r -t 0.204509 -s 4 -d 10 -p ack -e 40 -i 51 -a 21 + -t 0.204509 -s 9 -d 8 -p ack -e 40 -i 51 -a 21 - -t 0.204509 -s 9 -d 8 -p ack -e 40 -i 51 -a 21 h -t 0.204509 -s 9 -d 8 -p ack -e 40 -i 51 -a 21 r -t 0.204552 -s 1 -d 6 -p tcp -e 1000 -i 48 -a 10 + -t 0.204552 -s 6 -d 7 -p tcp -e 1000 -i 48 -a 10 r -t 0.204616 -s 2 -d 7 -p ack -e 40 -i 52 -a 11 + -t 0.204616 -s 7 -d 6 -p ack -e 40 -i 52 -a 11 - -t 0.204616 -s 7 -d 6 -p ack -e 40 -i 52 -a 11 h -t 0.204616 -s 7 -d 6 -p ack -e 40 -i 52 -a 11 r -t 0.20492 -s 7 -d 6 -p ack -e 40 -i 34 -a 10 + -t 0.20492 -s 6 -d 1 -p ack -e 40 -i 34 -a 10 - -t 0.20492 -s 6 -d 1 -p ack -e 40 -i 34 -a 10 h -t 0.20492 -s 6 -d 1 -p ack -e 40 -i 34 -a 10 r -t 0.205032 -s 3 -d 8 -p tcp -e 1000 -i 50 -a 22 + -t 0.205032 -s 8 -d 9 -p tcp -e 1000 -i 50 -a 22 r -t 0.205352 -s 1 -d 6 -p tcp -e 1000 -i 49 -a 12 + -t 0.205352 -s 6 -d 7 -p tcp -e 1000 -i 49 -a 12 r -t 0.207952 -s 6 -d 1 -p ack -e 40 -i 34 -a 10 + -t 0.207952 -s 1 -d 6 -p tcp -e 1000 -i 53 -a 10 - -t 0.207952 -s 1 -d 6 -p tcp -e 1000 -i 53 -a 10 h -t 0.207952 -s 1 -d 6 -p tcp -e 1000 -i 53 -a 10 + -t 0.207952 -s 1 -d 6 -p tcp -e 1000 -i 54 -a 10 r -t 0.208584 -s 7 -d 2 -p tcp -e 1000 -i 29 -a 11 + -t 0.208584 -s 2 -d 7 -p ack -e 40 -i 55 -a 11 - -t 0.208584 -s 2 -d 7 -p ack -e 40 -i 55 -a 11 h -t 0.208584 -s 2 -d 7 -p ack -e 40 -i 55 -a 11 - -t 0.208752 -s 1 -d 6 -p tcp -e 1000 -i 54 -a 10 h -t 0.208752 -s 1 -d 6 -p tcp -e 1000 -i 54 -a 10 - -t 0.208765 -s 8 -d 9 -p tcp -e 1000 -i 42 -a 20 h -t 0.208765 -s 8 -d 9 -p tcp -e 1000 -i 42 -a 20 r -t 0.211752 -s 1 -d 6 -p tcp -e 1000 -i 53 -a 10 - -t 0.211752 -s 6 -d 7 -p tcp -e 1000 -i 47 -a 10 h -t 0.211752 -s 6 -d 7 -p tcp -e 1000 -i 47 -a 10 + -t 0.211752 -s 6 -d 7 -p tcp -e 1000 -i 53 -a 10 r -t 0.212552 -s 1 -d 6 -p tcp -e 1000 -i 54 -a 10 + -t 0.212552 -s 6 -d 7 -p tcp -e 1000 -i 54 -a 10 r -t 0.212616 -s 2 -d 7 -p ack -e 40 -i 55 -a 11 + -t 0.212616 -s 7 -d 6 -p ack -e 40 -i 55 -a 11 - -t 0.212616 -s 7 -d 6 -p ack -e 40 -i 55 -a 11 h -t 0.212616 -s 7 -d 6 -p ack -e 40 -i 55 -a 11 r -t 0.212765 -s 8 -d 9 -p tcp -e 1000 -i 35 -a 20 + -t 0.212765 -s 9 -d 10 -p tcp -e 1000 -i 35 -a 20 - -t 0.212765 -s 9 -d 10 -p tcp -e 1000 -i 35 -a 20 h -t 0.212765 -s 9 -d 10 -p tcp -e 1000 -i 35 -a 20 r -t 0.21292 -s 7 -d 6 -p ack -e 40 -i 37 -a 10 + -t 0.21292 -s 6 -d 1 -p ack -e 40 -i 37 -a 10 - -t 0.21292 -s 6 -d 1 -p ack -e 40 -i 37 -a 10 h -t 0.21292 -s 6 -d 1 -p ack -e 40 -i 37 -a 10 - -t 0.214099 -s 8 -d 9 -p tcp -e 1000 -i 43 -a 20 h -t 0.214099 -s 8 -d 9 -p tcp -e 1000 -i 43 -a 20 r -t 0.215952 -s 6 -d 1 -p ack -e 40 -i 37 -a 10 + -t 0.215952 -s 1 -d 6 -p tcp -e 1000 -i 56 -a 10 - -t 0.215952 -s 1 -d 6 -p tcp -e 1000 -i 56 -a 10 h -t 0.215952 -s 1 -d 6 -p tcp -e 1000 -i 56 -a 10 + -t 0.215952 -s 1 -d 6 -p tcp -e 1000 -i 57 -a 10 - -t 0.216752 -s 1 -d 6 -p tcp -e 1000 -i 57 -a 10 h -t 0.216752 -s 1 -d 6 -p tcp -e 1000 -i 57 -a 10 r -t 0.217565 -s 9 -d 10 -p tcp -e 1000 -i 35 -a 20 + -t 0.217565 -s 4 -d 10 -p ack -e 40 -i 58 -a 20 - -t 0.217565 -s 4 -d 10 -p ack -e 40 -i 58 -a 20 h -t 0.217565 -s 4 -d 10 -p ack -e 40 -i 58 -a 20 r -t 0.218098 -s 8 -d 9 -p tcp -e 1000 -i 36 -a 20 + -t 0.218099 -s 9 -d 10 -p tcp -e 1000 -i 36 -a 20 - -t 0.218099 -s 9 -d 10 -p tcp -e 1000 -i 36 -a 20 h -t 0.218099 -s 9 -d 10 -p tcp -e 1000 -i 36 -a 20 r -t 0.219389 -s 9 -d 8 -p ack -e 40 -i 44 -a 21 + -t 0.219389 -s 8 -d 3 -p ack -e 40 -i 44 -a 21 - -t 0.219389 -s 8 -d 3 -p ack -e 40 -i 44 -a 21 h -t 0.219389 -s 8 -d 3 -p ack -e 40 -i 44 -a 21 - -t 0.219432 -s 8 -d 9 -p tcp -e 1000 -i 45 -a 20 h -t 0.219432 -s 8 -d 9 -p tcp -e 1000 -i 45 -a 20 r -t 0.219752 -s 1 -d 6 -p tcp -e 1000 -i 56 -a 10 - -t 0.219752 -s 6 -d 7 -p tcp -e 1000 -i 49 -a 12 h -t 0.219752 -s 6 -d 7 -p tcp -e 1000 -i 49 -a 12 + -t 0.219752 -s 6 -d 7 -p tcp -e 1000 -i 56 -a 10 r -t 0.220552 -s 1 -d 6 -p tcp -e 1000 -i 57 -a 10 + -t 0.220552 -s 6 -d 7 -p tcp -e 1000 -i 57 -a 10 r -t 0.221597 -s 4 -d 10 -p ack -e 40 -i 58 -a 20 + -t 0.221597 -s 9 -d 8 -p ack -e 40 -i 58 -a 20 - -t 0.221597 -s 9 -d 8 -p ack -e 40 -i 58 -a 20 h -t 0.221597 -s 9 -d 8 -p ack -e 40 -i 58 -a 20 r -t 0.222421 -s 8 -d 3 -p ack -e 40 -i 44 -a 21 f -t 0.222421 -s 3 -a "TCP 21" -n cwin -T v -v 3000 + -t 0.222421 -s 3 -d 8 -p tcp -e 1000 -i 59 -a 21 - -t 0.222421 -s 3 -d 8 -p tcp -e 1000 -i 59 -a 21 h -t 0.222421 -s 3 -d 8 -p tcp -e 1000 -i 59 -a 21 + -t 0.222421 -s 3 -d 8 -p tcp -e 1000 -i 60 -a 21 r -t 0.222899 -s 9 -d 10 -p tcp -e 1000 -i 36 -a 20 + -t 0.222899 -s 4 -d 10 -p ack -e 40 -i 61 -a 20 - -t 0.222899 -s 4 -d 10 -p ack -e 40 -i 61 -a 20 h -t 0.222899 -s 4 -d 10 -p ack -e 40 -i 61 -a 20 - -t 0.223221 -s 3 -d 8 -p tcp -e 1000 -i 60 -a 21 h -t 0.223221 -s 3 -d 8 -p tcp -e 1000 -i 60 -a 21 r -t 0.223432 -s 8 -d 9 -p tcp -e 1000 -i 38 -a 20 + -t 0.223432 -s 9 -d 10 -p tcp -e 1000 -i 38 -a 20 - -t 0.223432 -s 9 -d 10 -p tcp -e 1000 -i 38 -a 20 h -t 0.223432 -s 9 -d 10 -p tcp -e 1000 -i 38 -a 20 r -t 0.223752 -s 6 -d 7 -p tcp -e 1000 -i 40 -a 10 + -t 0.223752 -s 7 -d 2 -p tcp -e 1000 -i 40 -a 10 - -t 0.223752 -s 7 -d 2 -p tcp -e 1000 -i 40 -a 10 h -t 0.223752 -s 7 -d 2 -p tcp -e 1000 -i 40 -a 10 r -t 0.224722 -s 9 -d 8 -p ack -e 40 -i 51 -a 21 + -t 0.224723 -s 8 -d 3 -p ack -e 40 -i 51 -a 21 - -t 0.224723 -s 8 -d 3 -p ack -e 40 -i 51 -a 21 h -t 0.224723 -s 8 -d 3 -p ack -e 40 -i 51 -a 21 - -t 0.224765 -s 8 -d 9 -p tcp -e 1000 -i 50 -a 22 h -t 0.224765 -s 8 -d 9 -p tcp -e 1000 -i 50 -a 22 r -t 0.224936 -s 7 -d 6 -p ack -e 40 -i 52 -a 11 + -t 0.224936 -s 6 -d 1 -p ack -e 40 -i 52 -a 11 - -t 0.224936 -s 6 -d 1 -p ack -e 40 -i 52 -a 11 h -t 0.224936 -s 6 -d 1 -p ack -e 40 -i 52 -a 11 r -t 0.226221 -s 3 -d 8 -p tcp -e 1000 -i 59 -a 21 + -t 0.226221 -s 8 -d 9 -p tcp -e 1000 -i 59 -a 21 r -t 0.226931 -s 4 -d 10 -p ack -e 40 -i 61 -a 20 + -t 0.226931 -s 9 -d 8 -p ack -e 40 -i 61 -a 20 - -t 0.226931 -s 9 -d 8 -p ack -e 40 -i 61 -a 20 h -t 0.226931 -s 9 -d 8 -p ack -e 40 -i 61 -a 20 r -t 0.227021 -s 3 -d 8 -p tcp -e 1000 -i 60 -a 21 + -t 0.227021 -s 8 -d 9 -p tcp -e 1000 -i 60 -a 21 - -t 0.227752 -s 6 -d 7 -p tcp -e 1000 -i 48 -a 10 h -t 0.227752 -s 6 -d 7 -p tcp -e 1000 -i 48 -a 10 f -t 0.227752 -s 3 -a "TCP 21" -n cwin -T v -v 4000 r -t 0.227755 -s 8 -d 3 -p ack -e 40 -i 51 -a 21 + -t 0.227755 -s 3 -d 8 -p tcp -e 1000 -i 62 -a 21 - -t 0.227755 -s 3 -d 8 -p tcp -e 1000 -i 62 -a 21 h -t 0.227755 -s 3 -d 8 -p tcp -e 1000 -i 62 -a 21 + -t 0.227755 -s 3 -d 8 -p tcp -e 1000 -i 63 -a 21 r -t 0.227968 -s 6 -d 1 -p ack -e 40 -i 52 -a 11 + -t 0.227968 -s 1 -d 6 -p tcp -e 1000 -i 64 -a 11 - -t 0.227968 -s 1 -d 6 -p tcp -e 1000 -i 64 -a 11 h -t 0.227968 -s 1 -d 6 -p tcp -e 1000 -i 64 -a 11 + -t 0.227968 -s 1 -d 6 -p tcp -e 1000 -i 65 -a 11 r -t 0.228232 -s 9 -d 10 -p tcp -e 1000 -i 38 -a 20 + -t 0.228232 -s 4 -d 10 -p ack -e 40 -i 66 -a 20 - -t 0.228232 -s 4 -d 10 -p ack -e 40 -i 66 -a 20 h -t 0.228232 -s 4 -d 10 -p ack -e 40 -i 66 -a 20 r -t 0.228552 -s 7 -d 2 -p tcp -e 1000 -i 40 -a 10 + -t 0.228552 -s 2 -d 7 -p ack -e 40 -i 67 -a 10 - -t 0.228552 -s 2 -d 7 -p ack -e 40 -i 67 -a 10 h -t 0.228552 -s 2 -d 7 -p ack -e 40 -i 67 -a 10 - -t 0.228555 -s 3 -d 8 -p tcp -e 1000 -i 63 -a 21 h -t 0.228555 -s 3 -d 8 -p tcp -e 1000 -i 63 -a 21 r -t 0.228765 -s 8 -d 9 -p tcp -e 1000 -i 39 -a 20 + -t 0.228765 -s 9 -d 10 -p tcp -e 1000 -i 39 -a 20 - -t 0.228765 -s 9 -d 10 -p tcp -e 1000 -i 39 -a 20 h -t 0.228765 -s 9 -d 10 -p tcp -e 1000 -i 39 -a 20 - -t 0.228768 -s 1 -d 6 -p tcp -e 1000 -i 65 -a 11 h -t 0.228768 -s 1 -d 6 -p tcp -e 1000 -i 65 -a 11 - -t 0.230099 -s 8 -d 9 -p tcp -e 1000 -i 46 -a 20 h -t 0.230099 -s 8 -d 9 -p tcp -e 1000 -i 46 -a 20 r -t 0.231555 -s 3 -d 8 -p tcp -e 1000 -i 62 -a 21 + -t 0.231555 -s 8 -d 9 -p tcp -e 1000 -i 62 -a 21 r -t 0.231752 -s 6 -d 7 -p tcp -e 1000 -i 41 -a 10 + -t 0.231752 -s 7 -d 2 -p tcp -e 1000 -i 41 -a 10 - -t 0.231752 -s 7 -d 2 -p tcp -e 1000 -i 41 -a 10 h -t 0.231752 -s 7 -d 2 -p tcp -e 1000 -i 41 -a 10 r -t 0.231768 -s 1 -d 6 -p tcp -e 1000 -i 64 -a 11 + -t 0.231768 -s 6 -d 7 -p tcp -e 1000 -i 64 -a 11 r -t 0.232264 -s 4 -d 10 -p ack -e 40 -i 66 -a 20 + -t 0.232264 -s 9 -d 8 -p ack -e 40 -i 66 -a 20 - -t 0.232264 -s 9 -d 8 -p ack -e 40 -i 66 -a 20 h -t 0.232264 -s 9 -d 8 -p ack -e 40 -i 66 -a 20 r -t 0.232355 -s 3 -d 8 -p tcp -e 1000 -i 63 -a 21 + -t 0.232355 -s 8 -d 9 -p tcp -e 1000 -i 63 -a 21 r -t 0.232568 -s 1 -d 6 -p tcp -e 1000 -i 65 -a 11 + -t 0.232568 -s 6 -d 7 -p tcp -e 1000 -i 65 -a 11 r -t 0.232584 -s 2 -d 7 -p ack -e 40 -i 67 -a 10 + -t 0.232584 -s 7 -d 6 -p ack -e 40 -i 67 -a 10 - -t 0.232584 -s 7 -d 6 -p ack -e 40 -i 67 -a 10 h -t 0.232584 -s 7 -d 6 -p ack -e 40 -i 67 -a 10 r -t 0.232936 -s 7 -d 6 -p ack -e 40 -i 55 -a 11 + -t 0.232936 -s 6 -d 1 -p ack -e 40 -i 55 -a 11 - -t 0.232936 -s 6 -d 1 -p ack -e 40 -i 55 -a 11 h -t 0.232936 -s 6 -d 1 -p ack -e 40 -i 55 -a 11 r -t 0.233565 -s 9 -d 10 -p tcp -e 1000 -i 39 -a 20 + -t 0.233565 -s 4 -d 10 -p ack -e 40 -i 68 -a 20 - -t 0.233565 -s 4 -d 10 -p ack -e 40 -i 68 -a 20 h -t 0.233565 -s 4 -d 10 -p ack -e 40 -i 68 -a 20 r -t 0.234098 -s 8 -d 9 -p tcp -e 1000 -i 42 -a 20 + -t 0.234099 -s 9 -d 10 -p tcp -e 1000 -i 42 -a 20 - -t 0.234099 -s 9 -d 10 -p tcp -e 1000 -i 42 -a 20 h -t 0.234099 -s 9 -d 10 -p tcp -e 1000 -i 42 -a 20 - -t 0.235432 -s 8 -d 9 -p tcp -e 1000 -i 59 -a 21 h -t 0.235432 -s 8 -d 9 -p tcp -e 1000 -i 59 -a 21 - -t 0.235752 -s 6 -d 7 -p tcp -e 1000 -i 53 -a 10 h -t 0.235752 -s 6 -d 7 -p tcp -e 1000 -i 53 -a 10 r -t 0.235968 -s 6 -d 1 -p ack -e 40 -i 55 -a 11 + -t 0.235968 -s 1 -d 6 -p tcp -e 1000 -i 69 -a 11 - -t 0.235968 -s 1 -d 6 -p tcp -e 1000 -i 69 -a 11 h -t 0.235968 -s 1 -d 6 -p tcp -e 1000 -i 69 -a 11 + -t 0.235968 -s 1 -d 6 -p tcp -e 1000 -i 70 -a 11 r -t 0.236552 -s 7 -d 2 -p tcp -e 1000 -i 41 -a 10 + -t 0.236552 -s 2 -d 7 -p ack -e 40 -i 71 -a 10 - -t 0.236552 -s 2 -d 7 -p ack -e 40 -i 71 -a 10 h -t 0.236552 -s 2 -d 7 -p ack -e 40 -i 71 -a 10 - -t 0.236768 -s 1 -d 6 -p tcp -e 1000 -i 70 -a 11 h -t 0.236768 -s 1 -d 6 -p tcp -e 1000 -i 70 -a 11 r -t 0.237597 -s 4 -d 10 -p ack -e 40 -i 68 -a 20 + -t 0.237597 -s 9 -d 8 -p ack -e 40 -i 68 -a 20 - -t 0.237597 -s 9 -d 8 -p ack -e 40 -i 68 -a 20 h -t 0.237597 -s 9 -d 8 -p ack -e 40 -i 68 -a 20 r -t 0.238899 -s 9 -d 10 -p tcp -e 1000 -i 42 -a 20 + -t 0.238899 -s 4 -d 10 -p ack -e 40 -i 72 -a 20 - -t 0.238899 -s 4 -d 10 -p ack -e 40 -i 72 -a 20 h -t 0.238899 -s 4 -d 10 -p ack -e 40 -i 72 -a 20 r -t 0.239432 -s 8 -d 9 -p tcp -e 1000 -i 43 -a 20 + -t 0.239432 -s 9 -d 10 -p tcp -e 1000 -i 43 -a 20 - -t 0.239432 -s 9 -d 10 -p tcp -e 1000 -i 43 -a 20 h -t 0.239432 -s 9 -d 10 -p tcp -e 1000 -i 43 -a 20 r -t 0.239752 -s 6 -d 7 -p tcp -e 1000 -i 47 -a 10 + -t 0.239752 -s 7 -d 2 -p tcp -e 1000 -i 47 -a 10 - -t 0.239752 -s 7 -d 2 -p tcp -e 1000 -i 47 -a 10 h -t 0.239752 -s 7 -d 2 -p tcp -e 1000 -i 47 -a 10 r -t 0.239768 -s 1 -d 6 -p tcp -e 1000 -i 69 -a 11 + -t 0.239768 -s 6 -d 7 -p tcp -e 1000 -i 69 -a 11 r -t 0.240568 -s 1 -d 6 -p tcp -e 1000 -i 70 -a 11 + -t 0.240568 -s 6 -d 7 -p tcp -e 1000 -i 70 -a 11 r -t 0.240584 -s 2 -d 7 -p ack -e 40 -i 71 -a 10 + -t 0.240584 -s 7 -d 6 -p ack -e 40 -i 71 -a 10 - -t 0.240584 -s 7 -d 6 -p ack -e 40 -i 71 -a 10 h -t 0.240584 -s 7 -d 6 -p ack -e 40 -i 71 -a 10 - -t 0.240765 -s 8 -d 9 -p tcp -e 1000 -i 60 -a 21 h -t 0.240765 -s 8 -d 9 -p tcp -e 1000 -i 60 -a 21 r -t 0.24181 -s 9 -d 8 -p ack -e 40 -i 58 -a 20 + -t 0.241811 -s 8 -d 3 -p ack -e 40 -i 58 -a 20 - -t 0.241811 -s 8 -d 3 -p ack -e 40 -i 58 -a 20 h -t 0.241811 -s 8 -d 3 -p ack -e 40 -i 58 -a 20 r -t 0.242931 -s 4 -d 10 -p ack -e 40 -i 72 -a 20 + -t 0.242931 -s 9 -d 8 -p ack -e 40 -i 72 -a 20 - -t 0.242931 -s 9 -d 8 -p ack -e 40 -i 72 -a 20 h -t 0.242931 -s 9 -d 8 -p ack -e 40 -i 72 -a 20 - -t 0.243752 -s 6 -d 7 -p tcp -e 1000 -i 54 -a 10 h -t 0.243752 -s 6 -d 7 -p tcp -e 1000 -i 54 -a 10 r -t 0.244232 -s 9 -d 10 -p tcp -e 1000 -i 43 -a 20 + -t 0.244232 -s 4 -d 10 -p ack -e 40 -i 73 -a 20 - -t 0.244232 -s 4 -d 10 -p ack -e 40 -i 73 -a 20 h -t 0.244232 -s 4 -d 10 -p ack -e 40 -i 73 -a 20 r -t 0.244552 -s 7 -d 2 -p tcp -e 1000 -i 47 -a 10 + -t 0.244552 -s 2 -d 7 -p ack -e 40 -i 74 -a 10 - -t 0.244552 -s 2 -d 7 -p ack -e 40 -i 74 -a 10 h -t 0.244552 -s 2 -d 7 -p ack -e 40 -i 74 -a 10 r -t 0.244765 -s 8 -d 9 -p tcp -e 1000 -i 45 -a 20 + -t 0.244765 -s 9 -d 10 -p tcp -e 1000 -i 45 -a 20 - -t 0.244765 -s 9 -d 10 -p tcp -e 1000 -i 45 -a 20 h -t 0.244765 -s 9 -d 10 -p tcp -e 1000 -i 45 -a 20 r -t 0.244843 -s 8 -d 3 -p ack -e 40 -i 58 -a 20 + -t 0.244843 -s 3 -d 8 -p tcp -e 1000 -i 75 -a 20 - -t 0.244843 -s 3 -d 8 -p tcp -e 1000 -i 75 -a 20 h -t 0.244843 -s 3 -d 8 -p tcp -e 1000 -i 75 -a 20 + -t 0.244843 -s 3 -d 8 -p tcp -e 1000 -i 76 -a 20 - -t 0.245643 -s 3 -d 8 -p tcp -e 1000 -i 76 -a 20 h -t 0.245643 -s 3 -d 8 -p tcp -e 1000 -i 76 -a 20 - -t 0.246099 -s 8 -d 9 -p tcp -e 1000 -i 62 -a 21 h -t 0.246099 -s 8 -d 9 -p tcp -e 1000 -i 62 -a 21 r -t 0.247144 -s 9 -d 8 -p ack -e 40 -i 61 -a 20 + -t 0.247144 -s 8 -d 3 -p ack -e 40 -i 61 -a 20 - -t 0.247144 -s 8 -d 3 -p ack -e 40 -i 61 -a 20 h -t 0.247144 -s 8 -d 3 -p ack -e 40 -i 61 -a 20 r -t 0.247752 -s 6 -d 7 -p tcp -e 1000 -i 49 -a 12 + -t 0.247752 -s 7 -d 2 -p tcp -e 1000 -i 49 -a 12 - -t 0.247752 -s 7 -d 2 -p tcp -e 1000 -i 49 -a 12 h -t 0.247752 -s 7 -d 2 -p tcp -e 1000 -i 49 -a 12 r -t 0.248264 -s 4 -d 10 -p ack -e 40 -i 73 -a 20 + -t 0.248264 -s 9 -d 8 -p ack -e 40 -i 73 -a 20 - -t 0.248264 -s 9 -d 8 -p ack -e 40 -i 73 -a 20 h -t 0.248264 -s 9 -d 8 -p ack -e 40 -i 73 -a 20 r -t 0.248584 -s 2 -d 7 -p ack -e 40 -i 74 -a 10 + -t 0.248584 -s 7 -d 6 -p ack -e 40 -i 74 -a 10 - -t 0.248584 -s 7 -d 6 -p ack -e 40 -i 74 -a 10 h -t 0.248584 -s 7 -d 6 -p ack -e 40 -i 74 -a 10 r -t 0.248643 -s 3 -d 8 -p tcp -e 1000 -i 75 -a 20 + -t 0.248643 -s 8 -d 9 -p tcp -e 1000 -i 75 -a 20 r -t 0.249443 -s 3 -d 8 -p tcp -e 1000 -i 76 -a 20 + -t 0.249443 -s 8 -d 9 -p tcp -e 1000 -i 76 -a 20 r -t 0.249565 -s 9 -d 10 -p tcp -e 1000 -i 45 -a 20 + -t 0.249565 -s 4 -d 10 -p ack -e 40 -i 77 -a 20 - -t 0.249565 -s 4 -d 10 -p ack -e 40 -i 77 -a 20 h -t 0.249565 -s 4 -d 10 -p ack -e 40 -i 77 -a 20 v -t 0.250000 -e take_snapshot r -t 0.250098 -s 8 -d 9 -p tcp -e 1000 -i 50 -a 22 + -t 0.250099 -s 9 -d 10 -p tcp -e 1000 -i 50 -a 22 - -t 0.250099 -s 9 -d 10 -p tcp -e 1000 -i 50 -a 22 h -t 0.250099 -s 9 -d 10 -p tcp -e 1000 -i 50 -a 22 r -t 0.250176 -s 8 -d 3 -p ack -e 40 -i 61 -a 20 + -t 0.250176 -s 3 -d 8 -p tcp -e 1000 -i 78 -a 20 - -t 0.250176 -s 3 -d 8 -p tcp -e 1000 -i 78 -a 20 h -t 0.250176 -s 3 -d 8 -p tcp -e 1000 -i 78 -a 20 + -t 0.250176 -s 3 -d 8 -p tcp -e 1000 -i 79 -a 20 - -t 0.250976 -s 3 -d 8 -p tcp -e 1000 -i 79 -a 20 h -t 0.250976 -s 3 -d 8 -p tcp -e 1000 -i 79 -a 20 - -t 0.251432 -s 8 -d 9 -p tcp -e 1000 -i 63 -a 21 h -t 0.251432 -s 8 -d 9 -p tcp -e 1000 -i 63 -a 21 - -t 0.251752 -s 6 -d 7 -p tcp -e 1000 -i 56 -a 10 h -t 0.251752 -s 6 -d 7 -p tcp -e 1000 -i 56 -a 10 r -t 0.252477 -s 9 -d 8 -p ack -e 40 -i 66 -a 20 + -t 0.252477 -s 8 -d 3 -p ack -e 40 -i 66 -a 20 - -t 0.252477 -s 8 -d 3 -p ack -e 40 -i 66 -a 20 h -t 0.252477 -s 8 -d 3 -p ack -e 40 -i 66 -a 20 r -t 0.252552 -s 7 -d 2 -p tcp -e 1000 -i 49 -a 12 + -t 0.252552 -s 2 -d 7 -p ack -e 40 -i 80 -a 12 - -t 0.252552 -s 2 -d 7 -p ack -e 40 -i 80 -a 12 h -t 0.252552 -s 2 -d 7 -p ack -e 40 -i 80 -a 12 r -t 0.252904 -s 7 -d 6 -p ack -e 40 -i 67 -a 10 + -t 0.252904 -s 6 -d 1 -p ack -e 40 -i 67 -a 10 - -t 0.252904 -s 6 -d 1 -p ack -e 40 -i 67 -a 10 h -t 0.252904 -s 6 -d 1 -p ack -e 40 -i 67 -a 10 r -t 0.253597 -s 4 -d 10 -p ack -e 40 -i 77 -a 20 + -t 0.253597 -s 9 -d 8 -p ack -e 40 -i 77 -a 20 - -t 0.253597 -s 9 -d 8 -p ack -e 40 -i 77 -a 20 h -t 0.253597 -s 9 -d 8 -p ack -e 40 -i 77 -a 20 r -t 0.253976 -s 3 -d 8 -p tcp -e 1000 -i 78 -a 20 + -t 0.253976 -s 8 -d 9 -p tcp -e 1000 -i 78 -a 20 r -t 0.254776 -s 3 -d 8 -p tcp -e 1000 -i 79 -a 20 + -t 0.254776 -s 8 -d 9 -p tcp -e 1000 -i 79 -a 20 r -t 0.254899 -s 9 -d 10 -p tcp -e 1000 -i 50 -a 22 + -t 0.254899 -s 4 -d 10 -p ack -e 40 -i 81 -a 22 - -t 0.254899 -s 4 -d 10 -p ack -e 40 -i 81 -a 22 h -t 0.254899 -s 4 -d 10 -p ack -e 40 -i 81 -a 22 r -t 0.255432 -s 8 -d 9 -p tcp -e 1000 -i 46 -a 20 + -t 0.255432 -s 9 -d 10 -p tcp -e 1000 -i 46 -a 20 - -t 0.255432 -s 9 -d 10 -p tcp -e 1000 -i 46 -a 20 h -t 0.255432 -s 9 -d 10 -p tcp -e 1000 -i 46 -a 20 r -t 0.255509 -s 8 -d 3 -p ack -e 40 -i 66 -a 20 + -t 0.255509 -s 3 -d 8 -p tcp -e 1000 -i 82 -a 20 - -t 0.255509 -s 3 -d 8 -p tcp -e 1000 -i 82 -a 20 h -t 0.255509 -s 3 -d 8 -p tcp -e 1000 -i 82 -a 20 + -t 0.255509 -s 3 -d 8 -p tcp -e 1000 -i 83 -a 20 r -t 0.255752 -s 6 -d 7 -p tcp -e 1000 -i 48 -a 10 + -t 0.255752 -s 7 -d 2 -p tcp -e 1000 -i 48 -a 10 - -t 0.255752 -s 7 -d 2 -p tcp -e 1000 -i 48 -a 10 h -t 0.255752 -s 7 -d 2 -p tcp -e 1000 -i 48 -a 10 r -t 0.255936 -s 6 -d 1 -p ack -e 40 -i 67 -a 10 + -t 0.255936 -s 1 -d 6 -p tcp -e 1000 -i 84 -a 10 - -t 0.255936 -s 1 -d 6 -p tcp -e 1000 -i 84 -a 10 h -t 0.255936 -s 1 -d 6 -p tcp -e 1000 -i 84 -a 10 + -t 0.255936 -s 1 -d 6 -p tcp -e 1000 -i 85 -a 10 - -t 0.256309 -s 3 -d 8 -p tcp -e 1000 -i 83 -a 20 h -t 0.256309 -s 3 -d 8 -p tcp -e 1000 -i 83 -a 20 r -t 0.256584 -s 2 -d 7 -p ack -e 40 -i 80 -a 12 + -t 0.256584 -s 7 -d 6 -p ack -e 40 -i 80 -a 12 - -t 0.256584 -s 7 -d 6 -p ack -e 40 -i 80 -a 12 h -t 0.256584 -s 7 -d 6 -p ack -e 40 -i 80 -a 12 - -t 0.256736 -s 1 -d 6 -p tcp -e 1000 -i 85 -a 10 h -t 0.256736 -s 1 -d 6 -p tcp -e 1000 -i 85 -a 10 - -t 0.256765 -s 8 -d 9 -p tcp -e 1000 -i 75 -a 20 h -t 0.256765 -s 8 -d 9 -p tcp -e 1000 -i 75 -a 20 r -t 0.25781 -s 9 -d 8 -p ack -e 40 -i 68 -a 20 + -t 0.257811 -s 8 -d 3 -p ack -e 40 -i 68 -a 20 - -t 0.257811 -s 8 -d 3 -p ack -e 40 -i 68 -a 20 h -t 0.257811 -s 8 -d 3 -p ack -e 40 -i 68 -a 20 r -t 0.258931 -s 4 -d 10 -p ack -e 40 -i 81 -a 22 + -t 0.258931 -s 9 -d 8 -p ack -e 40 -i 81 -a 22 - -t 0.258931 -s 9 -d 8 -p ack -e 40 -i 81 -a 22 h -t 0.258931 -s 9 -d 8 -p ack -e 40 -i 81 -a 22 r -t 0.259309 -s 3 -d 8 -p tcp -e 1000 -i 82 -a 20 + -t 0.259309 -s 8 -d 9 -p tcp -e 1000 -i 82 -a 20 r -t 0.259736 -s 1 -d 6 -p tcp -e 1000 -i 84 -a 10 + -t 0.259736 -s 6 -d 7 -p tcp -e 1000 -i 84 -a 10 - -t 0.259752 -s 6 -d 7 -p tcp -e 1000 -i 64 -a 11 h -t 0.259752 -s 6 -d 7 -p tcp -e 1000 -i 64 -a 11 r -t 0.260109 -s 3 -d 8 -p tcp -e 1000 -i 83 -a 20 + -t 0.260109 -s 8 -d 9 -p tcp -e 1000 -i 83 -a 20 r -t 0.260232 -s 9 -d 10 -p tcp -e 1000 -i 46 -a 20 + -t 0.260232 -s 4 -d 10 -p ack -e 40 -i 86 -a 20 - -t 0.260232 -s 4 -d 10 -p ack -e 40 -i 86 -a 20 h -t 0.260232 -s 4 -d 10 -p ack -e 40 -i 86 -a 20 r -t 0.260536 -s 1 -d 6 -p tcp -e 1000 -i 85 -a 10 + -t 0.260536 -s 6 -d 7 -p tcp -e 1000 -i 85 -a 10 r -t 0.260552 -s 7 -d 2 -p tcp -e 1000 -i 48 -a 10 + -t 0.260552 -s 2 -d 7 -p ack -e 40 -i 87 -a 10 - -t 0.260552 -s 2 -d 7 -p ack -e 40 -i 87 -a 10 h -t 0.260552 -s 2 -d 7 -p ack -e 40 -i 87 -a 10 r -t 0.260765 -s 8 -d 9 -p tcp -e 1000 -i 59 -a 21 + -t 0.260765 -s 9 -d 10 -p tcp -e 1000 -i 59 -a 21 - -t 0.260765 -s 9 -d 10 -p tcp -e 1000 -i 59 -a 21 h -t 0.260765 -s 9 -d 10 -p tcp -e 1000 -i 59 -a 21 r -t 0.260843 -s 8 -d 3 -p ack -e 40 -i 68 -a 20 + -t 0.260843 -s 3 -d 8 -p tcp -e 1000 -i 88 -a 20 - -t 0.260843 -s 3 -d 8 -p tcp -e 1000 -i 88 -a 20 h -t 0.260843 -s 3 -d 8 -p tcp -e 1000 -i 88 -a 20 + -t 0.260843 -s 3 -d 8 -p tcp -e 1000 -i 89 -a 20 r -t 0.260904 -s 7 -d 6 -p ack -e 40 -i 71 -a 10 + -t 0.260904 -s 6 -d 1 -p ack -e 40 -i 71 -a 10 - -t 0.260904 -s 6 -d 1 -p ack -e 40 -i 71 -a 10 h -t 0.260904 -s 6 -d 1 -p ack -e 40 -i 71 -a 10 - -t 0.261643 -s 3 -d 8 -p tcp -e 1000 -i 89 -a 20 h -t 0.261643 -s 3 -d 8 -p tcp -e 1000 -i 89 -a 20 - -t 0.262099 -s 8 -d 9 -p tcp -e 1000 -i 76 -a 20 h -t 0.262099 -s 8 -d 9 -p tcp -e 1000 -i 76 -a 20 r -t 0.263144 -s 9 -d 8 -p ack -e 40 -i 72 -a 20 + -t 0.263144 -s 8 -d 3 -p ack -e 40 -i 72 -a 20 - -t 0.263144 -s 8 -d 3 -p ack -e 40 -i 72 -a 20 h -t 0.263144 -s 8 -d 3 -p ack -e 40 -i 72 -a 20 r -t 0.263752 -s 6 -d 7 -p tcp -e 1000 -i 53 -a 10 + -t 0.263752 -s 7 -d 2 -p tcp -e 1000 -i 53 -a 10 - -t 0.263752 -s 7 -d 2 -p tcp -e 1000 -i 53 -a 10 h -t 0.263752 -s 7 -d 2 -p tcp -e 1000 -i 53 -a 10 r -t 0.263936 -s 6 -d 1 -p ack -e 40 -i 71 -a 10 + -t 0.263936 -s 1 -d 6 -p tcp -e 1000 -i 90 -a 10 - -t 0.263936 -s 1 -d 6 -p tcp -e 1000 -i 90 -a 10 h -t 0.263936 -s 1 -d 6 -p tcp -e 1000 -i 90 -a 10 + -t 0.263936 -s 1 -d 6 -p tcp -e 1000 -i 91 -a 10 r -t 0.264264 -s 4 -d 10 -p ack -e 40 -i 86 -a 20 + -t 0.264264 -s 9 -d 8 -p ack -e 40 -i 86 -a 20 - -t 0.264264 -s 9 -d 8 -p ack -e 40 -i 86 -a 20 h -t 0.264264 -s 9 -d 8 -p ack -e 40 -i 86 -a 20 r -t 0.264584 -s 2 -d 7 -p ack -e 40 -i 87 -a 10 + -t 0.264584 -s 7 -d 6 -p ack -e 40 -i 87 -a 10 - -t 0.264584 -s 7 -d 6 -p ack -e 40 -i 87 -a 10 h -t 0.264584 -s 7 -d 6 -p ack -e 40 -i 87 -a 10 r -t 0.264643 -s 3 -d 8 -p tcp -e 1000 -i 88 -a 20 + -t 0.264643 -s 8 -d 9 -p tcp -e 1000 -i 88 -a 20 - -t 0.264736 -s 1 -d 6 -p tcp -e 1000 -i 91 -a 10 h -t 0.264736 -s 1 -d 6 -p tcp -e 1000 -i 91 -a 10 r -t 0.265443 -s 3 -d 8 -p tcp -e 1000 -i 89 -a 20 + -t 0.265443 -s 8 -d 9 -p tcp -e 1000 -i 89 -a 20 r -t 0.265565 -s 9 -d 10 -p tcp -e 1000 -i 59 -a 21 + -t 0.265565 -s 4 -d 10 -p ack -e 40 -i 92 -a 21 - -t 0.265565 -s 4 -d 10 -p ack -e 40 -i 92 -a 21 h -t 0.265565 -s 4 -d 10 -p ack -e 40 -i 92 -a 21 r -t 0.266098 -s 8 -d 9 -p tcp -e 1000 -i 60 -a 21 + -t 0.266099 -s 9 -d 10 -p tcp -e 1000 -i 60 -a 21 - -t 0.266099 -s 9 -d 10 -p tcp -e 1000 -i 60 -a 21 h -t 0.266099 -s 9 -d 10 -p tcp -e 1000 -i 60 -a 21 r -t 0.266176 -s 8 -d 3 -p ack -e 40 -i 72 -a 20 + -t 0.266176 -s 3 -d 8 -p tcp -e 1000 -i 93 -a 20 - -t 0.266176 -s 3 -d 8 -p tcp -e 1000 -i 93 -a 20 h -t 0.266176 -s 3 -d 8 -p tcp -e 1000 -i 93 -a 20 + -t 0.266176 -s 3 -d 8 -p tcp -e 1000 -i 94 -a 20 - -t 0.266976 -s 3 -d 8 -p tcp -e 1000 -i 94 -a 20 h -t 0.266976 -s 3 -d 8 -p tcp -e 1000 -i 94 -a 20 - -t 0.267432 -s 8 -d 9 -p tcp -e 1000 -i 78 -a 20 h -t 0.267432 -s 8 -d 9 -p tcp -e 1000 -i 78 -a 20 r -t 0.267736 -s 1 -d 6 -p tcp -e 1000 -i 90 -a 10 + -t 0.267736 -s 6 -d 7 -p tcp -e 1000 -i 90 -a 10 - -t 0.267752 -s 6 -d 7 -p tcp -e 1000 -i 57 -a 10 h -t 0.267752 -s 6 -d 7 -p tcp -e 1000 -i 57 -a 10 r -t 0.268477 -s 9 -d 8 -p ack -e 40 -i 73 -a 20 + -t 0.268477 -s 8 -d 3 -p ack -e 40 -i 73 -a 20 - -t 0.268477 -s 8 -d 3 -p ack -e 40 -i 73 -a 20 h -t 0.268477 -s 8 -d 3 -p ack -e 40 -i 73 -a 20 r -t 0.268536 -s 1 -d 6 -p tcp -e 1000 -i 91 -a 10 + -t 0.268536 -s 6 -d 7 -p tcp -e 1000 -i 91 -a 10 r -t 0.268552 -s 7 -d 2 -p tcp -e 1000 -i 53 -a 10 + -t 0.268552 -s 2 -d 7 -p ack -e 40 -i 95 -a 10 - -t 0.268552 -s 2 -d 7 -p ack -e 40 -i 95 -a 10 h -t 0.268552 -s 2 -d 7 -p ack -e 40 -i 95 -a 10 r -t 0.268904 -s 7 -d 6 -p ack -e 40 -i 74 -a 10 + -t 0.268904 -s 6 -d 1 -p ack -e 40 -i 74 -a 10 - -t 0.268904 -s 6 -d 1 -p ack -e 40 -i 74 -a 10 h -t 0.268904 -s 6 -d 1 -p ack -e 40 -i 74 -a 10 r -t 0.269597 -s 4 -d 10 -p ack -e 40 -i 92 -a 21 + -t 0.269597 -s 9 -d 8 -p ack -e 40 -i 92 -a 21 - -t 0.269597 -s 9 -d 8 -p ack -e 40 -i 92 -a 21 h -t 0.269597 -s 9 -d 8 -p ack -e 40 -i 92 -a 21 r -t 0.269976 -s 3 -d 8 -p tcp -e 1000 -i 93 -a 20 + -t 0.269976 -s 8 -d 9 -p tcp -e 1000 -i 93 -a 20 r -t 0.270776 -s 3 -d 8 -p tcp -e 1000 -i 94 -a 20 + -t 0.270776 -s 8 -d 9 -p tcp -e 1000 -i 94 -a 20 r -t 0.270899 -s 9 -d 10 -p tcp -e 1000 -i 60 -a 21 + -t 0.270899 -s 4 -d 10 -p ack -e 40 -i 96 -a 21 - -t 0.270899 -s 4 -d 10 -p ack -e 40 -i 96 -a 21 h -t 0.270899 -s 4 -d 10 -p ack -e 40 -i 96 -a 21 r -t 0.271432 -s 8 -d 9 -p tcp -e 1000 -i 62 -a 21 + -t 0.271432 -s 9 -d 10 -p tcp -e 1000 -i 62 -a 21 - -t 0.271432 -s 9 -d 10 -p tcp -e 1000 -i 62 -a 21 h -t 0.271432 -s 9 -d 10 -p tcp -e 1000 -i 62 -a 21 r -t 0.271509 -s 8 -d 3 -p ack -e 40 -i 73 -a 20 + -t 0.271509 -s 3 -d 8 -p tcp -e 1000 -i 97 -a 20 - -t 0.271509 -s 3 -d 8 -p tcp -e 1000 -i 97 -a 20 h -t 0.271509 -s 3 -d 8 -p tcp -e 1000 -i 97 -a 20 + -t 0.271509 -s 3 -d 8 -p tcp -e 1000 -i 98 -a 20 r -t 0.271752 -s 6 -d 7 -p tcp -e 1000 -i 54 -a 10 + -t 0.271752 -s 7 -d 2 -p tcp -e 1000 -i 54 -a 10 - -t 0.271752 -s 7 -d 2 -p tcp -e 1000 -i 54 -a 10 h -t 0.271752 -s 7 -d 2 -p tcp -e 1000 -i 54 -a 10 r -t 0.271936 -s 6 -d 1 -p ack -e 40 -i 74 -a 10 + -t 0.271936 -s 1 -d 6 -p tcp -e 1000 -i 99 -a 10 - -t 0.271936 -s 1 -d 6 -p tcp -e 1000 -i 99 -a 10 h -t 0.271936 -s 1 -d 6 -p tcp -e 1000 -i 99 -a 10 + -t 0.271936 -s 1 -d 6 -p tcp -e 1000 -i 100 -a 10 - -t 0.272309 -s 3 -d 8 -p tcp -e 1000 -i 98 -a 20 h -t 0.272309 -s 3 -d 8 -p tcp -e 1000 -i 98 -a 20 r -t 0.272584 -s 2 -d 7 -p ack -e 40 -i 95 -a 10 + -t 0.272584 -s 7 -d 6 -p ack -e 40 -i 95 -a 10 - -t 0.272584 -s 7 -d 6 -p ack -e 40 -i 95 -a 10 h -t 0.272584 -s 7 -d 6 -p ack -e 40 -i 95 -a 10 - -t 0.272736 -s 1 -d 6 -p tcp -e 1000 -i 100 -a 10 h -t 0.272736 -s 1 -d 6 -p tcp -e 1000 -i 100 -a 10 - -t 0.272765 -s 8 -d 9 -p tcp -e 1000 -i 79 -a 20 h -t 0.272765 -s 8 -d 9 -p tcp -e 1000 -i 79 -a 20 r -t 0.27381 -s 9 -d 8 -p ack -e 40 -i 77 -a 20 + -t 0.273811 -s 8 -d 3 -p ack -e 40 -i 77 -a 20 - -t 0.273811 -s 8 -d 3 -p ack -e 40 -i 77 -a 20 h -t 0.273811 -s 8 -d 3 -p ack -e 40 -i 77 -a 20 r -t 0.274931 -s 4 -d 10 -p ack -e 40 -i 96 -a 21 + -t 0.274931 -s 9 -d 8 -p ack -e 40 -i 96 -a 21 - -t 0.274931 -s 9 -d 8 -p ack -e 40 -i 96 -a 21 h -t 0.274931 -s 9 -d 8 -p ack -e 40 -i 96 -a 21 r -t 0.275309 -s 3 -d 8 -p tcp -e 1000 -i 97 -a 20 + -t 0.275309 -s 8 -d 9 -p tcp -e 1000 -i 97 -a 20 r -t 0.275736 -s 1 -d 6 -p tcp -e 1000 -i 99 -a 10 + -t 0.275736 -s 6 -d 7 -p tcp -e 1000 -i 99 -a 10 - -t 0.275752 -s 6 -d 7 -p tcp -e 1000 -i 65 -a 11 h -t 0.275752 -s 6 -d 7 -p tcp -e 1000 -i 65 -a 11 r -t 0.276109 -s 3 -d 8 -p tcp -e 1000 -i 98 -a 20 + -t 0.276109 -s 8 -d 9 -p tcp -e 1000 -i 98 -a 20 r -t 0.276232 -s 9 -d 10 -p tcp -e 1000 -i 62 -a 21 + -t 0.276232 -s 4 -d 10 -p ack -e 40 -i 101 -a 21 - -t 0.276232 -s 4 -d 10 -p ack -e 40 -i 101 -a 21 h -t 0.276232 -s 4 -d 10 -p ack -e 40 -i 101 -a 21 r -t 0.276536 -s 1 -d 6 -p tcp -e 1000 -i 100 -a 10 + -t 0.276536 -s 6 -d 7 -p tcp -e 1000 -i 100 -a 10 r -t 0.276552 -s 7 -d 2 -p tcp -e 1000 -i 54 -a 10 + -t 0.276552 -s 2 -d 7 -p ack -e 40 -i 102 -a 10 - -t 0.276552 -s 2 -d 7 -p ack -e 40 -i 102 -a 10 h -t 0.276552 -s 2 -d 7 -p ack -e 40 -i 102 -a 10 r -t 0.276765 -s 8 -d 9 -p tcp -e 1000 -i 63 -a 21 + -t 0.276765 -s 9 -d 10 -p tcp -e 1000 -i 63 -a 21 - -t 0.276765 -s 9 -d 10 -p tcp -e 1000 -i 63 -a 21 h -t 0.276765 -s 9 -d 10 -p tcp -e 1000 -i 63 -a 21 r -t 0.276843 -s 8 -d 3 -p ack -e 40 -i 77 -a 20 + -t 0.276843 -s 3 -d 8 -p tcp -e 1000 -i 103 -a 20 - -t 0.276843 -s 3 -d 8 -p tcp -e 1000 -i 103 -a 20 h -t 0.276843 -s 3 -d 8 -p tcp -e 1000 -i 103 -a 20 + -t 0.276843 -s 3 -d 8 -p tcp -e 1000 -i 104 -a 20 r -t 0.276904 -s 7 -d 6 -p ack -e 40 -i 80 -a 12 + -t 0.276904 -s 6 -d 1 -p ack -e 40 -i 80 -a 12 - -t 0.276904 -s 6 -d 1 -p ack -e 40 -i 80 -a 12 h -t 0.276904 -s 6 -d 1 -p ack -e 40 -i 80 -a 12 - -t 0.277643 -s 3 -d 8 -p tcp -e 1000 -i 104 -a 20 h -t 0.277643 -s 3 -d 8 -p tcp -e 1000 -i 104 -a 20 - -t 0.278099 -s 8 -d 9 -p tcp -e 1000 -i 82 -a 20 h -t 0.278099 -s 8 -d 9 -p tcp -e 1000 -i 82 -a 20 r -t 0.279144 -s 9 -d 8 -p ack -e 40 -i 81 -a 22 + -t 0.279144 -s 8 -d 3 -p ack -e 40 -i 81 -a 22 - -t 0.279144 -s 8 -d 3 -p ack -e 40 -i 81 -a 22 h -t 0.279144 -s 8 -d 3 -p ack -e 40 -i 81 -a 22 r -t 0.279752 -s 6 -d 7 -p tcp -e 1000 -i 56 -a 10 + -t 0.279752 -s 7 -d 2 -p tcp -e 1000 -i 56 -a 10 - -t 0.279752 -s 7 -d 2 -p tcp -e 1000 -i 56 -a 10 h -t 0.279752 -s 7 -d 2 -p tcp -e 1000 -i 56 -a 10 r -t 0.279936 -s 6 -d 1 -p ack -e 40 -i 80 -a 12 + -t 0.279936 -s 1 -d 6 -p tcp -e 1000 -i 105 -a 12 - -t 0.279936 -s 1 -d 6 -p tcp -e 1000 -i 105 -a 12 h -t 0.279936 -s 1 -d 6 -p tcp -e 1000 -i 105 -a 12 + -t 0.279936 -s 1 -d 6 -p tcp -e 1000 -i 106 -a 12 r -t 0.280264 -s 4 -d 10 -p ack -e 40 -i 101 -a 21 + -t 0.280264 -s 9 -d 8 -p ack -e 40 -i 101 -a 21 - -t 0.280264 -s 9 -d 8 -p ack -e 40 -i 101 -a 21 h -t 0.280264 -s 9 -d 8 -p ack -e 40 -i 101 -a 21 r -t 0.280584 -s 2 -d 7 -p ack -e 40 -i 102 -a 10 + -t 0.280584 -s 7 -d 6 -p ack -e 40 -i 102 -a 10 - -t 0.280584 -s 7 -d 6 -p ack -e 40 -i 102 -a 10 h -t 0.280584 -s 7 -d 6 -p ack -e 40 -i 102 -a 10 r -t 0.280643 -s 3 -d 8 -p tcp -e 1000 -i 103 -a 20 + -t 0.280643 -s 8 -d 9 -p tcp -e 1000 -i 103 -a 20 - -t 0.280736 -s 1 -d 6 -p tcp -e 1000 -i 106 -a 12 h -t 0.280736 -s 1 -d 6 -p tcp -e 1000 -i 106 -a 12 r -t 0.281443 -s 3 -d 8 -p tcp -e 1000 -i 104 -a 20 + -t 0.281443 -s 8 -d 9 -p tcp -e 1000 -i 104 -a 20 r -t 0.281565 -s 9 -d 10 -p tcp -e 1000 -i 63 -a 21 + -t 0.281565 -s 4 -d 10 -p ack -e 40 -i 107 -a 21 - -t 0.281565 -s 4 -d 10 -p ack -e 40 -i 107 -a 21 h -t 0.281565 -s 4 -d 10 -p ack -e 40 -i 107 -a 21 r -t 0.282098 -s 8 -d 9 -p tcp -e 1000 -i 75 -a 20 + -t 0.282099 -s 9 -d 10 -p tcp -e 1000 -i 75 -a 20 - -t 0.282099 -s 9 -d 10 -p tcp -e 1000 -i 75 -a 20 h -t 0.282099 -s 9 -d 10 -p tcp -e 1000 -i 75 -a 20 r -t 0.282176 -s 8 -d 3 -p ack -e 40 -i 81 -a 22 + -t 0.282176 -s 3 -d 8 -p tcp -e 1000 -i 108 -a 22 - -t 0.282176 -s 3 -d 8 -p tcp -e 1000 -i 108 -a 22 h -t 0.282176 -s 3 -d 8 -p tcp -e 1000 -i 108 -a 22 + -t 0.282176 -s 3 -d 8 -p tcp -e 1000 -i 109 -a 22 - -t 0.282976 -s 3 -d 8 -p tcp -e 1000 -i 109 -a 22 h -t 0.282976 -s 3 -d 8 -p tcp -e 1000 -i 109 -a 22 - -t 0.283432 -s 8 -d 9 -p tcp -e 1000 -i 83 -a 20 h -t 0.283432 -s 8 -d 9 -p tcp -e 1000 -i 83 -a 20 r -t 0.283736 -s 1 -d 6 -p tcp -e 1000 -i 105 -a 12 + -t 0.283736 -s 6 -d 7 -p tcp -e 1000 -i 105 -a 12 - -t 0.283752 -s 6 -d 7 -p tcp -e 1000 -i 69 -a 11 h -t 0.283752 -s 6 -d 7 -p tcp -e 1000 -i 69 -a 11 r -t 0.284477 -s 9 -d 8 -p ack -e 40 -i 86 -a 20 + -t 0.284477 -s 8 -d 3 -p ack -e 40 -i 86 -a 20 - -t 0.284477 -s 8 -d 3 -p ack -e 40 -i 86 -a 20 h -t 0.284477 -s 8 -d 3 -p ack -e 40 -i 86 -a 20 r -t 0.284536 -s 1 -d 6 -p tcp -e 1000 -i 106 -a 12 + -t 0.284536 -s 6 -d 7 -p tcp -e 1000 -i 106 -a 12 r -t 0.284552 -s 7 -d 2 -p tcp -e 1000 -i 56 -a 10 + -t 0.284552 -s 2 -d 7 -p ack -e 40 -i 110 -a 10 - -t 0.284552 -s 2 -d 7 -p ack -e 40 -i 110 -a 10 h -t 0.284552 -s 2 -d 7 -p ack -e 40 -i 110 -a 10 r -t 0.284904 -s 7 -d 6 -p ack -e 40 -i 87 -a 10 + -t 0.284904 -s 6 -d 1 -p ack -e 40 -i 87 -a 10 - -t 0.284904 -s 6 -d 1 -p ack -e 40 -i 87 -a 10 h -t 0.284904 -s 6 -d 1 -p ack -e 40 -i 87 -a 10 r -t 0.285597 -s 4 -d 10 -p ack -e 40 -i 107 -a 21 + -t 0.285597 -s 9 -d 8 -p ack -e 40 -i 107 -a 21 - -t 0.285597 -s 9 -d 8 -p ack -e 40 -i 107 -a 21 h -t 0.285597 -s 9 -d 8 -p ack -e 40 -i 107 -a 21 r -t 0.285976 -s 3 -d 8 -p tcp -e 1000 -i 108 -a 22 + -t 0.285976 -s 8 -d 9 -p tcp -e 1000 -i 108 -a 22 r -t 0.286776 -s 3 -d 8 -p tcp -e 1000 -i 109 -a 22 + -t 0.286776 -s 8 -d 9 -p tcp -e 1000 -i 109 -a 22 d -t 0.286776 -s 8 -d 9 -p tcp -e 1000 -i 109 -a 22 r -t 0.286899 -s 9 -d 10 -p tcp -e 1000 -i 75 -a 20 + -t 0.286899 -s 4 -d 10 -p ack -e 40 -i 111 -a 20 - -t 0.286899 -s 4 -d 10 -p ack -e 40 -i 111 -a 20 h -t 0.286899 -s 4 -d 10 -p ack -e 40 -i 111 -a 20 r -t 0.287432 -s 8 -d 9 -p tcp -e 1000 -i 76 -a 20 + -t 0.287432 -s 9 -d 10 -p tcp -e 1000 -i 76 -a 20 - -t 0.287432 -s 9 -d 10 -p tcp -e 1000 -i 76 -a 20 h -t 0.287432 -s 9 -d 10 -p tcp -e 1000 -i 76 -a 20 r -t 0.287509 -s 8 -d 3 -p ack -e 40 -i 86 -a 20 + -t 0.287509 -s 3 -d 8 -p tcp -e 1000 -i 112 -a 20 - -t 0.287509 -s 3 -d 8 -p tcp -e 1000 -i 112 -a 20 h -t 0.287509 -s 3 -d 8 -p tcp -e 1000 -i 112 -a 20 + -t 0.287509 -s 3 -d 8 -p tcp -e 1000 -i 113 -a 20 r -t 0.287752 -s 6 -d 7 -p tcp -e 1000 -i 64 -a 11 + -t 0.287752 -s 7 -d 2 -p tcp -e 1000 -i 64 -a 11 - -t 0.287752 -s 7 -d 2 -p tcp -e 1000 -i 64 -a 11 h -t 0.287752 -s 7 -d 2 -p tcp -e 1000 -i 64 -a 11 r -t 0.287936 -s 6 -d 1 -p ack -e 40 -i 87 -a 10 + -t 0.287936 -s 1 -d 6 -p tcp -e 1000 -i 114 -a 10 - -t 0.287936 -s 1 -d 6 -p tcp -e 1000 -i 114 -a 10 h -t 0.287936 -s 1 -d 6 -p tcp -e 1000 -i 114 -a 10 + -t 0.287936 -s 1 -d 6 -p tcp -e 1000 -i 115 -a 10 - -t 0.288309 -s 3 -d 8 -p tcp -e 1000 -i 113 -a 20 h -t 0.288309 -s 3 -d 8 -p tcp -e 1000 -i 113 -a 20 r -t 0.288584 -s 2 -d 7 -p ack -e 40 -i 110 -a 10 + -t 0.288584 -s 7 -d 6 -p ack -e 40 -i 110 -a 10 - -t 0.288584 -s 7 -d 6 -p ack -e 40 -i 110 -a 10 h -t 0.288584 -s 7 -d 6 -p ack -e 40 -i 110 -a 10 - -t 0.288736 -s 1 -d 6 -p tcp -e 1000 -i 115 -a 10 h -t 0.288736 -s 1 -d 6 -p tcp -e 1000 -i 115 -a 10 - -t 0.288765 -s 8 -d 9 -p tcp -e 1000 -i 88 -a 20 h -t 0.288765 -s 8 -d 9 -p tcp -e 1000 -i 88 -a 20 r -t 0.28981 -s 9 -d 8 -p ack -e 40 -i 92 -a 21 + -t 0.289811 -s 8 -d 3 -p ack -e 40 -i 92 -a 21 - -t 0.289811 -s 8 -d 3 -p ack -e 40 -i 92 -a 21 h -t 0.289811 -s 8 -d 3 -p ack -e 40 -i 92 -a 21 r -t 0.290931 -s 4 -d 10 -p ack -e 40 -i 111 -a 20 + -t 0.290931 -s 9 -d 8 -p ack -e 40 -i 111 -a 20 - -t 0.290931 -s 9 -d 8 -p ack -e 40 -i 111 -a 20 h -t 0.290931 -s 9 -d 8 -p ack -e 40 -i 111 -a 20 r -t 0.291309 -s 3 -d 8 -p tcp -e 1000 -i 112 -a 20 + -t 0.291309 -s 8 -d 9 -p tcp -e 1000 -i 112 -a 20 r -t 0.291736 -s 1 -d 6 -p tcp -e 1000 -i 114 -a 10 + -t 0.291736 -s 6 -d 7 -p tcp -e 1000 -i 114 -a 10 d -t 0.291736 -s 6 -d 7 -p tcp -e 1000 -i 114 -a 10 - -t 0.291752 -s 6 -d 7 -p tcp -e 1000 -i 84 -a 10 h -t 0.291752 -s 6 -d 7 -p tcp -e 1000 -i 84 -a 10 r -t 0.292109 -s 3 -d 8 -p tcp -e 1000 -i 113 -a 20 + -t 0.292109 -s 8 -d 9 -p tcp -e 1000 -i 113 -a 20 d -t 0.292109 -s 8 -d 9 -p tcp -e 1000 -i 113 -a 20 r -t 0.292232 -s 9 -d 10 -p tcp -e 1000 -i 76 -a 20 + -t 0.292232 -s 4 -d 10 -p ack -e 40 -i 116 -a 20 - -t 0.292232 -s 4 -d 10 -p ack -e 40 -i 116 -a 20 h -t 0.292232 -s 4 -d 10 -p ack -e 40 -i 116 -a 20 r -t 0.292536 -s 1 -d 6 -p tcp -e 1000 -i 115 -a 10 + -t 0.292536 -s 6 -d 7 -p tcp -e 1000 -i 115 -a 10 r -t 0.292552 -s 7 -d 2 -p tcp -e 1000 -i 64 -a 11 + -t 0.292552 -s 2 -d 7 -p ack -e 40 -i 117 -a 11 - -t 0.292552 -s 2 -d 7 -p ack -e 40 -i 117 -a 11 h -t 0.292552 -s 2 -d 7 -p ack -e 40 -i 117 -a 11 r -t 0.292765 -s 8 -d 9 -p tcp -e 1000 -i 78 -a 20 + -t 0.292765 -s 9 -d 10 -p tcp -e 1000 -i 78 -a 20 - -t 0.292765 -s 9 -d 10 -p tcp -e 1000 -i 78 -a 20 h -t 0.292765 -s 9 -d 10 -p tcp -e 1000 -i 78 -a 20 r -t 0.292843 -s 8 -d 3 -p ack -e 40 -i 92 -a 21 + -t 0.292843 -s 3 -d 8 -p tcp -e 1000 -i 118 -a 21 - -t 0.292843 -s 3 -d 8 -p tcp -e 1000 -i 118 -a 21 h -t 0.292843 -s 3 -d 8 -p tcp -e 1000 -i 118 -a 21 + -t 0.292843 -s 3 -d 8 -p tcp -e 1000 -i 119 -a 21 r -t 0.292904 -s 7 -d 6 -p ack -e 40 -i 95 -a 10 + -t 0.292904 -s 6 -d 1 -p ack -e 40 -i 95 -a 10 - -t 0.292904 -s 6 -d 1 -p ack -e 40 -i 95 -a 10 h -t 0.292904 -s 6 -d 1 -p ack -e 40 -i 95 -a 10 - -t 0.293643 -s 3 -d 8 -p tcp -e 1000 -i 119 -a 21 h -t 0.293643 -s 3 -d 8 -p tcp -e 1000 -i 119 -a 21 - -t 0.294099 -s 8 -d 9 -p tcp -e 1000 -i 89 -a 20 h -t 0.294099 -s 8 -d 9 -p tcp -e 1000 -i 89 -a 20 r -t 0.295144 -s 9 -d 8 -p ack -e 40 -i 96 -a 21 + -t 0.295144 -s 8 -d 3 -p ack -e 40 -i 96 -a 21 - -t 0.295144 -s 8 -d 3 -p ack -e 40 -i 96 -a 21 h -t 0.295144 -s 8 -d 3 -p ack -e 40 -i 96 -a 21 r -t 0.295752 -s 6 -d 7 -p tcp -e 1000 -i 57 -a 10 + -t 0.295752 -s 7 -d 2 -p tcp -e 1000 -i 57 -a 10 - -t 0.295752 -s 7 -d 2 -p tcp -e 1000 -i 57 -a 10 h -t 0.295752 -s 7 -d 2 -p tcp -e 1000 -i 57 -a 10 r -t 0.295936 -s 6 -d 1 -p ack -e 40 -i 95 -a 10 + -t 0.295936 -s 1 -d 6 -p tcp -e 1000 -i 120 -a 10 - -t 0.295936 -s 1 -d 6 -p tcp -e 1000 -i 120 -a 10 h -t 0.295936 -s 1 -d 6 -p tcp -e 1000 -i 120 -a 10 + -t 0.295936 -s 1 -d 6 -p tcp -e 1000 -i 121 -a 10 r -t 0.296264 -s 4 -d 10 -p ack -e 40 -i 116 -a 20 + -t 0.296264 -s 9 -d 8 -p ack -e 40 -i 116 -a 20 - -t 0.296264 -s 9 -d 8 -p ack -e 40 -i 116 -a 20 h -t 0.296264 -s 9 -d 8 -p ack -e 40 -i 116 -a 20 r -t 0.296584 -s 2 -d 7 -p ack -e 40 -i 117 -a 11 + -t 0.296584 -s 7 -d 6 -p ack -e 40 -i 117 -a 11 - -t 0.296584 -s 7 -d 6 -p ack -e 40 -i 117 -a 11 h -t 0.296584 -s 7 -d 6 -p ack -e 40 -i 117 -a 11 r -t 0.296643 -s 3 -d 8 -p tcp -e 1000 -i 118 -a 21 + -t 0.296643 -s 8 -d 9 -p tcp -e 1000 -i 118 -a 21 - -t 0.296736 -s 1 -d 6 -p tcp -e 1000 -i 121 -a 10 h -t 0.296736 -s 1 -d 6 -p tcp -e 1000 -i 121 -a 10 r -t 0.297443 -s 3 -d 8 -p tcp -e 1000 -i 119 -a 21 + -t 0.297443 -s 8 -d 9 -p tcp -e 1000 -i 119 -a 21 d -t 0.297443 -s 8 -d 9 -p tcp -e 1000 -i 119 -a 21 r -t 0.297565 -s 9 -d 10 -p tcp -e 1000 -i 78 -a 20 + -t 0.297565 -s 4 -d 10 -p ack -e 40 -i 122 -a 20 - -t 0.297565 -s 4 -d 10 -p ack -e 40 -i 122 -a 20 h -t 0.297565 -s 4 -d 10 -p ack -e 40 -i 122 -a 20 r -t 0.298098 -s 8 -d 9 -p tcp -e 1000 -i 79 -a 20 + -t 0.298099 -s 9 -d 10 -p tcp -e 1000 -i 79 -a 20 - -t 0.298099 -s 9 -d 10 -p tcp -e 1000 -i 79 -a 20 h -t 0.298099 -s 9 -d 10 -p tcp -e 1000 -i 79 -a 20 r -t 0.298176 -s 8 -d 3 -p ack -e 40 -i 96 -a 21 + -t 0.298176 -s 3 -d 8 -p tcp -e 1000 -i 123 -a 21 - -t 0.298176 -s 3 -d 8 -p tcp -e 1000 -i 123 -a 21 h -t 0.298176 -s 3 -d 8 -p tcp -e 1000 -i 123 -a 21 + -t 0.298176 -s 3 -d 8 -p tcp -e 1000 -i 124 -a 21 - -t 0.298976 -s 3 -d 8 -p tcp -e 1000 -i 124 -a 21 h -t 0.298976 -s 3 -d 8 -p tcp -e 1000 -i 124 -a 21 - -t 0.299432 -s 8 -d 9 -p tcp -e 1000 -i 93 -a 20 h -t 0.299432 -s 8 -d 9 -p tcp -e 1000 -i 93 -a 20 r -t 0.299736 -s 1 -d 6 -p tcp -e 1000 -i 120 -a 10 + -t 0.299736 -s 6 -d 7 -p tcp -e 1000 -i 120 -a 10 d -t 0.299736 -s 6 -d 7 -p tcp -e 1000 -i 120 -a 10 - -t 0.299752 -s 6 -d 7 -p tcp -e 1000 -i 70 -a 11 h -t 0.299752 -s 6 -d 7 -p tcp -e 1000 -i 70 -a 11 + -t 0.3 -s 1 -d 6 -p tcp -e 1000 -i 125 -a 13 - -t 0.3 -s 1 -d 6 -p tcp -e 1000 -i 125 -a 13 h -t 0.3 -s 1 -d 6 -p tcp -e 1000 -i 125 -a 13 + -t 0.3 -s 3 -d 8 -p tcp -e 1000 -i 126 -a 23 - -t 0.3 -s 3 -d 8 -p tcp -e 1000 -i 126 -a 23 h -t 0.3 -s 3 -d 8 -p tcp -e 1000 -i 126 -a 23 v -t 0.300002 -e take_snapshot r -t 0.300477 -s 9 -d 8 -p ack -e 40 -i 101 -a 21 + -t 0.300477 -s 8 -d 3 -p ack -e 40 -i 101 -a 21 - -t 0.300477 -s 8 -d 3 -p ack -e 40 -i 101 -a 21 h -t 0.300477 -s 8 -d 3 -p ack -e 40 -i 101 -a 21 r -t 0.300536 -s 1 -d 6 -p tcp -e 1000 -i 121 -a 10 + -t 0.300536 -s 6 -d 7 -p tcp -e 1000 -i 121 -a 10 r -t 0.300552 -s 7 -d 2 -p tcp -e 1000 -i 57 -a 10 + -t 0.300552 -s 2 -d 7 -p ack -e 40 -i 127 -a 10 - -t 0.300552 -s 2 -d 7 -p ack -e 40 -i 127 -a 10 h -t 0.300552 -s 2 -d 7 -p ack -e 40 -i 127 -a 10 r -t 0.300904 -s 7 -d 6 -p ack -e 40 -i 102 -a 10 + -t 0.300904 -s 6 -d 1 -p ack -e 40 -i 102 -a 10 - -t 0.300904 -s 6 -d 1 -p ack -e 40 -i 102 -a 10 h -t 0.300904 -s 6 -d 1 -p ack -e 40 -i 102 -a 10 r -t 0.301597 -s 4 -d 10 -p ack -e 40 -i 122 -a 20 + -t 0.301597 -s 9 -d 8 -p ack -e 40 -i 122 -a 20 - -t 0.301597 -s 9 -d 8 -p ack -e 40 -i 122 -a 20 h -t 0.301597 -s 9 -d 8 -p ack -e 40 -i 122 -a 20 r -t 0.301976 -s 3 -d 8 -p tcp -e 1000 -i 123 -a 21 + -t 0.301976 -s 8 -d 9 -p tcp -e 1000 -i 123 -a 21 r -t 0.302776 -s 3 -d 8 -p tcp -e 1000 -i 124 -a 21 + -t 0.302776 -s 8 -d 9 -p tcp -e 1000 -i 124 -a 21 d -t 0.302776 -s 8 -d 9 -p tcp -e 1000 -i 124 -a 21 r -t 0.302899 -s 9 -d 10 -p tcp -e 1000 -i 79 -a 20 + -t 0.302899 -s 4 -d 10 -p ack -e 40 -i 128 -a 20 - -t 0.302899 -s 4 -d 10 -p ack -e 40 -i 128 -a 20 h -t 0.302899 -s 4 -d 10 -p ack -e 40 -i 128 -a 20 r -t 0.303432 -s 8 -d 9 -p tcp -e 1000 -i 82 -a 20 + -t 0.303432 -s 9 -d 10 -p tcp -e 1000 -i 82 -a 20 - -t 0.303432 -s 9 -d 10 -p tcp -e 1000 -i 82 -a 20 h -t 0.303432 -s 9 -d 10 -p tcp -e 1000 -i 82 -a 20 r -t 0.303509 -s 8 -d 3 -p ack -e 40 -i 101 -a 21 + -t 0.303509 -s 3 -d 8 -p tcp -e 1000 -i 129 -a 21 - -t 0.303509 -s 3 -d 8 -p tcp -e 1000 -i 129 -a 21 h -t 0.303509 -s 3 -d 8 -p tcp -e 1000 -i 129 -a 21 + -t 0.303509 -s 3 -d 8 -p tcp -e 1000 -i 130 -a 21 r -t 0.303752 -s 6 -d 7 -p tcp -e 1000 -i 65 -a 11 + -t 0.303752 -s 7 -d 2 -p tcp -e 1000 -i 65 -a 11 - -t 0.303752 -s 7 -d 2 -p tcp -e 1000 -i 65 -a 11 h -t 0.303752 -s 7 -d 2 -p tcp -e 1000 -i 65 -a 11 r -t 0.3038 -s 3 -d 8 -p tcp -e 1000 -i 126 -a 23 r -t 0.3038 -s 1 -d 6 -p tcp -e 1000 -i 125 -a 13 + -t 0.3038 -s 6 -d 7 -p tcp -e 1000 -i 125 -a 13 d -t 0.3038 -s 6 -d 7 -p tcp -e 1000 -i 121 -a 10 + -t 0.3038 -s 8 -d 9 -p tcp -e 1000 -i 126 -a 23 d -t 0.3038 -s 8 -d 9 -p tcp -e 1000 -i 126 -a 23 r -t 0.303936 -s 6 -d 1 -p ack -e 40 -i 102 -a 10 + -t 0.303936 -s 1 -d 6 -p tcp -e 1000 -i 131 -a 10 - -t 0.303936 -s 1 -d 6 -p tcp -e 1000 -i 131 -a 10 h -t 0.303936 -s 1 -d 6 -p tcp -e 1000 -i 131 -a 10 + -t 0.303936 -s 1 -d 6 -p tcp -e 1000 -i 132 -a 10 - -t 0.304309 -s 3 -d 8 -p tcp -e 1000 -i 130 -a 21 h -t 0.304309 -s 3 -d 8 -p tcp -e 1000 -i 130 -a 21 r -t 0.304584 -s 2 -d 7 -p ack -e 40 -i 127 -a 10 + -t 0.304584 -s 7 -d 6 -p ack -e 40 -i 127 -a 10 - -t 0.304584 -s 7 -d 6 -p ack -e 40 -i 127 -a 10 h -t 0.304584 -s 7 -d 6 -p ack -e 40 -i 127 -a 10 - -t 0.304736 -s 1 -d 6 -p tcp -e 1000 -i 132 -a 10 h -t 0.304736 -s 1 -d 6 -p tcp -e 1000 -i 132 -a 10 - -t 0.304765 -s 8 -d 9 -p tcp -e 1000 -i 94 -a 20 h -t 0.304765 -s 8 -d 9 -p tcp -e 1000 -i 94 -a 20 r -t 0.30581 -s 9 -d 8 -p ack -e 40 -i 107 -a 21 + -t 0.305811 -s 8 -d 3 -p ack -e 40 -i 107 -a 21 - -t 0.305811 -s 8 -d 3 -p ack -e 40 -i 107 -a 21 h -t 0.305811 -s 8 -d 3 -p ack -e 40 -i 107 -a 21 r -t 0.306931 -s 4 -d 10 -p ack -e 40 -i 128 -a 20 + -t 0.306931 -s 9 -d 8 -p ack -e 40 -i 128 -a 20 - -t 0.306931 -s 9 -d 8 -p ack -e 40 -i 128 -a 20 h -t 0.306931 -s 9 -d 8 -p ack -e 40 -i 128 -a 20 r -t 0.307309 -s 3 -d 8 -p tcp -e 1000 -i 129 -a 21 + -t 0.307309 -s 8 -d 9 -p tcp -e 1000 -i 129 -a 21 r -t 0.307736 -s 1 -d 6 -p tcp -e 1000 -i 131 -a 10 + -t 0.307736 -s 6 -d 7 -p tcp -e 1000 -i 131 -a 10 d -t 0.307736 -s 6 -d 7 -p tcp -e 1000 -i 131 -a 10 - -t 0.307752 -s 6 -d 7 -p tcp -e 1000 -i 85 -a 10 h -t 0.307752 -s 6 -d 7 -p tcp -e 1000 -i 85 -a 10 r -t 0.308109 -s 3 -d 8 -p tcp -e 1000 -i 130 -a 21 + -t 0.308109 -s 8 -d 9 -p tcp -e 1000 -i 130 -a 21 d -t 0.308109 -s 8 -d 9 -p tcp -e 1000 -i 130 -a 21 r -t 0.308232 -s 9 -d 10 -p tcp -e 1000 -i 82 -a 20 + -t 0.308232 -s 4 -d 10 -p ack -e 40 -i 133 -a 20 - -t 0.308232 -s 4 -d 10 -p ack -e 40 -i 133 -a 20 h -t 0.308232 -s 4 -d 10 -p ack -e 40 -i 133 -a 20 r -t 0.308536 -s 1 -d 6 -p tcp -e 1000 -i 132 -a 10 + -t 0.308536 -s 6 -d 7 -p tcp -e 1000 -i 132 -a 10 r -t 0.308552 -s 7 -d 2 -p tcp -e 1000 -i 65 -a 11 + -t 0.308552 -s 2 -d 7 -p ack -e 40 -i 134 -a 11 - -t 0.308552 -s 2 -d 7 -p ack -e 40 -i 134 -a 11 h -t 0.308552 -s 2 -d 7 -p ack -e 40 -i 134 -a 11 r -t 0.308765 -s 8 -d 9 -p tcp -e 1000 -i 83 -a 20 + -t 0.308765 -s 9 -d 10 -p tcp -e 1000 -i 83 -a 20 - -t 0.308765 -s 9 -d 10 -p tcp -e 1000 -i 83 -a 20 h -t 0.308765 -s 9 -d 10 -p tcp -e 1000 -i 83 -a 20 r -t 0.308843 -s 8 -d 3 -p ack -e 40 -i 107 -a 21 + -t 0.308843 -s 3 -d 8 -p tcp -e 1000 -i 135 -a 21 - -t 0.308843 -s 3 -d 8 -p tcp -e 1000 -i 135 -a 21 h -t 0.308843 -s 3 -d 8 -p tcp -e 1000 -i 135 -a 21 + -t 0.308843 -s 3 -d 8 -p tcp -e 1000 -i 136 -a 21 r -t 0.308904 -s 7 -d 6 -p ack -e 40 -i 110 -a 10 + -t 0.308904 -s 6 -d 1 -p ack -e 40 -i 110 -a 10 - -t 0.308904 -s 6 -d 1 -p ack -e 40 -i 110 -a 10 h -t 0.308904 -s 6 -d 1 -p ack -e 40 -i 110 -a 10 - -t 0.309643 -s 3 -d 8 -p tcp -e 1000 -i 136 -a 21 h -t 0.309643 -s 3 -d 8 -p tcp -e 1000 -i 136 -a 21 - -t 0.310099 -s 8 -d 9 -p tcp -e 1000 -i 97 -a 20 h -t 0.310099 -s 8 -d 9 -p tcp -e 1000 -i 97 -a 20 r -t 0.311144 -s 9 -d 8 -p ack -e 40 -i 111 -a 20 + -t 0.311144 -s 8 -d 3 -p ack -e 40 -i 111 -a 20 - -t 0.311144 -s 8 -d 3 -p ack -e 40 -i 111 -a 20 h -t 0.311144 -s 8 -d 3 -p ack -e 40 -i 111 -a 20 r -t 0.311752 -s 6 -d 7 -p tcp -e 1000 -i 69 -a 11 + -t 0.311752 -s 7 -d 2 -p tcp -e 1000 -i 69 -a 11 - -t 0.311752 -s 7 -d 2 -p tcp -e 1000 -i 69 -a 11 h -t 0.311752 -s 7 -d 2 -p tcp -e 1000 -i 69 -a 11 r -t 0.311936 -s 6 -d 1 -p ack -e 40 -i 110 -a 10 + -t 0.311936 -s 1 -d 6 -p tcp -e 1000 -i 137 -a 10 - -t 0.311936 -s 1 -d 6 -p tcp -e 1000 -i 137 -a 10 h -t 0.311936 -s 1 -d 6 -p tcp -e 1000 -i 137 -a 10 + -t 0.311936 -s 1 -d 6 -p tcp -e 1000 -i 138 -a 10 r -t 0.312264 -s 4 -d 10 -p ack -e 40 -i 133 -a 20 + -t 0.312264 -s 9 -d 8 -p ack -e 40 -i 133 -a 20 - -t 0.312264 -s 9 -d 8 -p ack -e 40 -i 133 -a 20 h -t 0.312264 -s 9 -d 8 -p ack -e 40 -i 133 -a 20 r -t 0.312584 -s 2 -d 7 -p ack -e 40 -i 134 -a 11 + -t 0.312584 -s 7 -d 6 -p ack -e 40 -i 134 -a 11 - -t 0.312584 -s 7 -d 6 -p ack -e 40 -i 134 -a 11 h -t 0.312584 -s 7 -d 6 -p ack -e 40 -i 134 -a 11 r -t 0.312643 -s 3 -d 8 -p tcp -e 1000 -i 135 -a 21 + -t 0.312643 -s 8 -d 9 -p tcp -e 1000 -i 135 -a 21 - -t 0.312736 -s 1 -d 6 -p tcp -e 1000 -i 138 -a 10 h -t 0.312736 -s 1 -d 6 -p tcp -e 1000 -i 138 -a 10 r -t 0.313443 -s 3 -d 8 -p tcp -e 1000 -i 136 -a 21 + -t 0.313443 -s 8 -d 9 -p tcp -e 1000 -i 136 -a 21 d -t 0.313443 -s 8 -d 9 -p tcp -e 1000 -i 136 -a 21 r -t 0.313565 -s 9 -d 10 -p tcp -e 1000 -i 83 -a 20 + -t 0.313565 -s 4 -d 10 -p ack -e 40 -i 139 -a 20 - -t 0.313565 -s 4 -d 10 -p ack -e 40 -i 139 -a 20 h -t 0.313565 -s 4 -d 10 -p ack -e 40 -i 139 -a 20 r -t 0.314098 -s 8 -d 9 -p tcp -e 1000 -i 88 -a 20 + -t 0.314099 -s 9 -d 10 -p tcp -e 1000 -i 88 -a 20 - -t 0.314099 -s 9 -d 10 -p tcp -e 1000 -i 88 -a 20 h -t 0.314099 -s 9 -d 10 -p tcp -e 1000 -i 88 -a 20 r -t 0.314176 -s 8 -d 3 -p ack -e 40 -i 111 -a 20 + -t 0.314176 -s 3 -d 8 -p tcp -e 1000 -i 140 -a 20 - -t 0.314176 -s 3 -d 8 -p tcp -e 1000 -i 140 -a 20 h -t 0.314176 -s 3 -d 8 -p tcp -e 1000 -i 140 -a 20 + -t 0.314176 -s 3 -d 8 -p tcp -e 1000 -i 141 -a 20 - -t 0.314976 -s 3 -d 8 -p tcp -e 1000 -i 141 -a 20 h -t 0.314976 -s 3 -d 8 -p tcp -e 1000 -i 141 -a 20 - -t 0.315432 -s 8 -d 9 -p tcp -e 1000 -i 98 -a 20 h -t 0.315432 -s 8 -d 9 -p tcp -e 1000 -i 98 -a 20 r -t 0.315736 -s 1 -d 6 -p tcp -e 1000 -i 137 -a 10 + -t 0.315736 -s 6 -d 7 -p tcp -e 1000 -i 137 -a 10 d -t 0.315736 -s 6 -d 7 -p tcp -e 1000 -i 137 -a 10 - -t 0.315752 -s 6 -d 7 -p tcp -e 1000 -i 90 -a 10 h -t 0.315752 -s 6 -d 7 -p tcp -e 1000 -i 90 -a 10 r -t 0.316477 -s 9 -d 8 -p ack -e 40 -i 116 -a 20 + -t 0.316477 -s 8 -d 3 -p ack -e 40 -i 116 -a 20 - -t 0.316477 -s 8 -d 3 -p ack -e 40 -i 116 -a 20 h -t 0.316477 -s 8 -d 3 -p ack -e 40 -i 116 -a 20 r -t 0.316536 -s 1 -d 6 -p tcp -e 1000 -i 138 -a 10 + -t 0.316536 -s 6 -d 7 -p tcp -e 1000 -i 138 -a 10 r -t 0.316552 -s 7 -d 2 -p tcp -e 1000 -i 69 -a 11 + -t 0.316552 -s 2 -d 7 -p ack -e 40 -i 142 -a 11 - -t 0.316552 -s 2 -d 7 -p ack -e 40 -i 142 -a 11 h -t 0.316552 -s 2 -d 7 -p ack -e 40 -i 142 -a 11 r -t 0.316904 -s 7 -d 6 -p ack -e 40 -i 117 -a 11 + -t 0.316904 -s 6 -d 1 -p ack -e 40 -i 117 -a 11 - -t 0.316904 -s 6 -d 1 -p ack -e 40 -i 117 -a 11 h -t 0.316904 -s 6 -d 1 -p ack -e 40 -i 117 -a 11 r -t 0.317597 -s 4 -d 10 -p ack -e 40 -i 139 -a 20 + -t 0.317597 -s 9 -d 8 -p ack -e 40 -i 139 -a 20 - -t 0.317597 -s 9 -d 8 -p ack -e 40 -i 139 -a 20 h -t 0.317597 -s 9 -d 8 -p ack -e 40 -i 139 -a 20 r -t 0.317976 -s 3 -d 8 -p tcp -e 1000 -i 140 -a 20 + -t 0.317976 -s 8 -d 9 -p tcp -e 1000 -i 140 -a 20 r -t 0.318776 -s 3 -d 8 -p tcp -e 1000 -i 141 -a 20 + -t 0.318776 -s 8 -d 9 -p tcp -e 1000 -i 141 -a 20 d -t 0.318776 -s 8 -d 9 -p tcp -e 1000 -i 141 -a 20 r -t 0.318899 -s 9 -d 10 -p tcp -e 1000 -i 88 -a 20 + -t 0.318899 -s 4 -d 10 -p ack -e 40 -i 143 -a 20 - -t 0.318899 -s 4 -d 10 -p ack -e 40 -i 143 -a 20 h -t 0.318899 -s 4 -d 10 -p ack -e 40 -i 143 -a 20 r -t 0.319432 -s 8 -d 9 -p tcp -e 1000 -i 89 -a 20 + -t 0.319432 -s 9 -d 10 -p tcp -e 1000 -i 89 -a 20 - -t 0.319432 -s 9 -d 10 -p tcp -e 1000 -i 89 -a 20 h -t 0.319432 -s 9 -d 10 -p tcp -e 1000 -i 89 -a 20 r -t 0.319509 -s 8 -d 3 -p ack -e 40 -i 116 -a 20 + -t 0.319509 -s 3 -d 8 -p tcp -e 1000 -i 144 -a 20 - -t 0.319509 -s 3 -d 8 -p tcp -e 1000 -i 144 -a 20 h -t 0.319509 -s 3 -d 8 -p tcp -e 1000 -i 144 -a 20 + -t 0.319509 -s 3 -d 8 -p tcp -e 1000 -i 145 -a 20 r -t 0.319752 -s 6 -d 7 -p tcp -e 1000 -i 84 -a 10 + -t 0.319752 -s 7 -d 2 -p tcp -e 1000 -i 84 -a 10 - -t 0.319752 -s 7 -d 2 -p tcp -e 1000 -i 84 -a 10 h -t 0.319752 -s 7 -d 2 -p tcp -e 1000 -i 84 -a 10 r -t 0.319936 -s 6 -d 1 -p ack -e 40 -i 117 -a 11 + -t 0.319936 -s 1 -d 6 -p tcp -e 1000 -i 146 -a 11 - -t 0.319936 -s 1 -d 6 -p tcp -e 1000 -i 146 -a 11 h -t 0.319936 -s 1 -d 6 -p tcp -e 1000 -i 146 -a 11 + -t 0.319936 -s 1 -d 6 -p tcp -e 1000 -i 147 -a 11 - -t 0.320309 -s 3 -d 8 -p tcp -e 1000 -i 145 -a 20 h -t 0.320309 -s 3 -d 8 -p tcp -e 1000 -i 145 -a 20 r -t 0.320584 -s 2 -d 7 -p ack -e 40 -i 142 -a 11 + -t 0.320584 -s 7 -d 6 -p ack -e 40 -i 142 -a 11 - -t 0.320584 -s 7 -d 6 -p ack -e 40 -i 142 -a 11 h -t 0.320584 -s 7 -d 6 -p ack -e 40 -i 142 -a 11 - -t 0.320736 -s 1 -d 6 -p tcp -e 1000 -i 147 -a 11 h -t 0.320736 -s 1 -d 6 -p tcp -e 1000 -i 147 -a 11 - -t 0.320765 -s 8 -d 9 -p tcp -e 1000 -i 103 -a 20 h -t 0.320765 -s 8 -d 9 -p tcp -e 1000 -i 103 -a 20 r -t 0.32181 -s 9 -d 8 -p ack -e 40 -i 122 -a 20 + -t 0.321811 -s 8 -d 3 -p ack -e 40 -i 122 -a 20 - -t 0.321811 -s 8 -d 3 -p ack -e 40 -i 122 -a 20 h -t 0.321811 -s 8 -d 3 -p ack -e 40 -i 122 -a 20 r -t 0.322931 -s 4 -d 10 -p ack -e 40 -i 143 -a 20 + -t 0.322931 -s 9 -d 8 -p ack -e 40 -i 143 -a 20 - -t 0.322931 -s 9 -d 8 -p ack -e 40 -i 143 -a 20 h -t 0.322931 -s 9 -d 8 -p ack -e 40 -i 143 -a 20 r -t 0.323309 -s 3 -d 8 -p tcp -e 1000 -i 144 -a 20 + -t 0.323309 -s 8 -d 9 -p tcp -e 1000 -i 144 -a 20 r -t 0.323736 -s 1 -d 6 -p tcp -e 1000 -i 146 -a 11 + -t 0.323736 -s 6 -d 7 -p tcp -e 1000 -i 146 -a 11 d -t 0.323736 -s 6 -d 7 -p tcp -e 1000 -i 138 -a 10 - -t 0.323752 -s 6 -d 7 -p tcp -e 1000 -i 91 -a 10 h -t 0.323752 -s 6 -d 7 -p tcp -e 1000 -i 91 -a 10 r -t 0.324109 -s 3 -d 8 -p tcp -e 1000 -i 145 -a 20 + -t 0.324109 -s 8 -d 9 -p tcp -e 1000 -i 145 -a 20 d -t 0.324109 -s 8 -d 9 -p tcp -e 1000 -i 145 -a 20 r -t 0.324232 -s 9 -d 10 -p tcp -e 1000 -i 89 -a 20 + -t 0.324232 -s 4 -d 10 -p ack -e 40 -i 148 -a 20 - -t 0.324232 -s 4 -d 10 -p ack -e 40 -i 148 -a 20 h -t 0.324232 -s 4 -d 10 -p ack -e 40 -i 148 -a 20 r -t 0.324536 -s 1 -d 6 -p tcp -e 1000 -i 147 -a 11 + -t 0.324536 -s 6 -d 7 -p tcp -e 1000 -i 147 -a 11 r -t 0.324552 -s 7 -d 2 -p tcp -e 1000 -i 84 -a 10 + -t 0.324552 -s 2 -d 7 -p ack -e 40 -i 149 -a 10 - -t 0.324552 -s 2 -d 7 -p ack -e 40 -i 149 -a 10 h -t 0.324552 -s 2 -d 7 -p ack -e 40 -i 149 -a 10 r -t 0.324765 -s 8 -d 9 -p tcp -e 1000 -i 93 -a 20 + -t 0.324765 -s 9 -d 10 -p tcp -e 1000 -i 93 -a 20 - -t 0.324765 -s 9 -d 10 -p tcp -e 1000 -i 93 -a 20 h -t 0.324765 -s 9 -d 10 -p tcp -e 1000 -i 93 -a 20 r -t 0.324843 -s 8 -d 3 -p ack -e 40 -i 122 -a 20 + -t 0.324843 -s 3 -d 8 -p tcp -e 1000 -i 150 -a 20 - -t 0.324843 -s 3 -d 8 -p tcp -e 1000 -i 150 -a 20 h -t 0.324843 -s 3 -d 8 -p tcp -e 1000 -i 150 -a 20 + -t 0.324843 -s 3 -d 8 -p tcp -e 1000 -i 151 -a 20 r -t 0.324904 -s 7 -d 6 -p ack -e 40 -i 127 -a 10 + -t 0.324904 -s 6 -d 1 -p ack -e 40 -i 127 -a 10 - -t 0.324904 -s 6 -d 1 -p ack -e 40 -i 127 -a 10 h -t 0.324904 -s 6 -d 1 -p ack -e 40 -i 127 -a 10 - -t 0.325643 -s 3 -d 8 -p tcp -e 1000 -i 151 -a 20 h -t 0.325643 -s 3 -d 8 -p tcp -e 1000 -i 151 -a 20 - -t 0.326099 -s 8 -d 9 -p tcp -e 1000 -i 108 -a 22 h -t 0.326099 -s 8 -d 9 -p tcp -e 1000 -i 108 -a 22 r -t 0.327144 -s 9 -d 8 -p ack -e 40 -i 128 -a 20 + -t 0.327144 -s 8 -d 3 -p ack -e 40 -i 128 -a 20 - -t 0.327144 -s 8 -d 3 -p ack -e 40 -i 128 -a 20 h -t 0.327144 -s 8 -d 3 -p ack -e 40 -i 128 -a 20 r -t 0.327752 -s 6 -d 7 -p tcp -e 1000 -i 70 -a 11 + -t 0.327752 -s 7 -d 2 -p tcp -e 1000 -i 70 -a 11 - -t 0.327752 -s 7 -d 2 -p tcp -e 1000 -i 70 -a 11 h -t 0.327752 -s 7 -d 2 -p tcp -e 1000 -i 70 -a 11 r -t 0.327936 -s 6 -d 1 -p ack -e 40 -i 127 -a 10 + -t 0.327936 -s 1 -d 6 -p tcp -e 1000 -i 152 -a 10 - -t 0.327936 -s 1 -d 6 -p tcp -e 1000 -i 152 -a 10 h -t 0.327936 -s 1 -d 6 -p tcp -e 1000 -i 152 -a 10 + -t 0.327936 -s 1 -d 6 -p tcp -e 1000 -i 153 -a 10 r -t 0.328264 -s 4 -d 10 -p ack -e 40 -i 148 -a 20 + -t 0.328264 -s 9 -d 8 -p ack -e 40 -i 148 -a 20 - -t 0.328264 -s 9 -d 8 -p ack -e 40 -i 148 -a 20 h -t 0.328264 -s 9 -d 8 -p ack -e 40 -i 148 -a 20 r -t 0.328584 -s 2 -d 7 -p ack -e 40 -i 149 -a 10 + -t 0.328584 -s 7 -d 6 -p ack -e 40 -i 149 -a 10 - -t 0.328584 -s 7 -d 6 -p ack -e 40 -i 149 -a 10 h -t 0.328584 -s 7 -d 6 -p ack -e 40 -i 149 -a 10 r -t 0.328643 -s 3 -d 8 -p tcp -e 1000 -i 150 -a 20 + -t 0.328643 -s 8 -d 9 -p tcp -e 1000 -i 150 -a 20 - -t 0.328736 -s 1 -d 6 -p tcp -e 1000 -i 153 -a 10 h -t 0.328736 -s 1 -d 6 -p tcp -e 1000 -i 153 -a 10 r -t 0.329443 -s 3 -d 8 -p tcp -e 1000 -i 151 -a 20 + -t 0.329443 -s 8 -d 9 -p tcp -e 1000 -i 151 -a 20 d -t 0.329443 -s 8 -d 9 -p tcp -e 1000 -i 151 -a 20 r -t 0.329565 -s 9 -d 10 -p tcp -e 1000 -i 93 -a 20 + -t 0.329565 -s 4 -d 10 -p ack -e 40 -i 154 -a 20 - -t 0.329565 -s 4 -d 10 -p ack -e 40 -i 154 -a 20 h -t 0.329565 -s 4 -d 10 -p ack -e 40 -i 154 -a 20 r -t 0.330098 -s 8 -d 9 -p tcp -e 1000 -i 94 -a 20 + -t 0.330099 -s 9 -d 10 -p tcp -e 1000 -i 94 -a 20 - -t 0.330099 -s 9 -d 10 -p tcp -e 1000 -i 94 -a 20 h -t 0.330099 -s 9 -d 10 -p tcp -e 1000 -i 94 -a 20 r -t 0.330176 -s 8 -d 3 -p ack -e 40 -i 128 -a 20 + -t 0.330176 -s 3 -d 8 -p tcp -e 1000 -i 155 -a 20 - -t 0.330176 -s 3 -d 8 -p tcp -e 1000 -i 155 -a 20 h -t 0.330176 -s 3 -d 8 -p tcp -e 1000 -i 155 -a 20 + -t 0.330176 -s 3 -d 8 -p tcp -e 1000 -i 156 -a 20 - -t 0.330976 -s 3 -d 8 -p tcp -e 1000 -i 156 -a 20 h -t 0.330976 -s 3 -d 8 -p tcp -e 1000 -i 156 -a 20 - -t 0.331432 -s 8 -d 9 -p tcp -e 1000 -i 104 -a 20 h -t 0.331432 -s 8 -d 9 -p tcp -e 1000 -i 104 -a 20 r -t 0.331736 -s 1 -d 6 -p tcp -e 1000 -i 152 -a 10 + -t 0.331736 -s 6 -d 7 -p tcp -e 1000 -i 152 -a 10 d -t 0.331736 -s 6 -d 7 -p tcp -e 1000 -i 147 -a 11 - -t 0.331752 -s 6 -d 7 -p tcp -e 1000 -i 99 -a 10 h -t 0.331752 -s 6 -d 7 -p tcp -e 1000 -i 99 -a 10 r -t 0.332477 -s 9 -d 8 -p ack -e 40 -i 133 -a 20 + -t 0.332477 -s 8 -d 3 -p ack -e 40 -i 133 -a 20 - -t 0.332477 -s 8 -d 3 -p ack -e 40 -i 133 -a 20 h -t 0.332477 -s 8 -d 3 -p ack -e 40 -i 133 -a 20 r -t 0.332536 -s 1 -d 6 -p tcp -e 1000 -i 153 -a 10 + -t 0.332536 -s 6 -d 7 -p tcp -e 1000 -i 153 -a 10 r -t 0.332552 -s 7 -d 2 -p tcp -e 1000 -i 70 -a 11 + -t 0.332552 -s 2 -d 7 -p ack -e 40 -i 157 -a 11 - -t 0.332552 -s 2 -d 7 -p ack -e 40 -i 157 -a 11 h -t 0.332552 -s 2 -d 7 -p ack -e 40 -i 157 -a 11 r -t 0.332904 -s 7 -d 6 -p ack -e 40 -i 134 -a 11 + -t 0.332904 -s 6 -d 1 -p ack -e 40 -i 134 -a 11 - -t 0.332904 -s 6 -d 1 -p ack -e 40 -i 134 -a 11 h -t 0.332904 -s 6 -d 1 -p ack -e 40 -i 134 -a 11 r -t 0.333597 -s 4 -d 10 -p ack -e 40 -i 154 -a 20 + -t 0.333597 -s 9 -d 8 -p ack -e 40 -i 154 -a 20 - -t 0.333597 -s 9 -d 8 -p ack -e 40 -i 154 -a 20 h -t 0.333597 -s 9 -d 8 -p ack -e 40 -i 154 -a 20 r -t 0.333976 -s 3 -d 8 -p tcp -e 1000 -i 155 -a 20 + -t 0.333976 -s 8 -d 9 -p tcp -e 1000 -i 155 -a 20 r -t 0.334776 -s 3 -d 8 -p tcp -e 1000 -i 156 -a 20 + -t 0.334776 -s 8 -d 9 -p tcp -e 1000 -i 156 -a 20 d -t 0.334776 -s 8 -d 9 -p tcp -e 1000 -i 156 -a 20 r -t 0.334899 -s 9 -d 10 -p tcp -e 1000 -i 94 -a 20 + -t 0.334899 -s 4 -d 10 -p ack -e 40 -i 158 -a 20 - -t 0.334899 -s 4 -d 10 -p ack -e 40 -i 158 -a 20 h -t 0.334899 -s 4 -d 10 -p ack -e 40 -i 158 -a 20 r -t 0.335432 -s 8 -d 9 -p tcp -e 1000 -i 97 -a 20 + -t 0.335432 -s 9 -d 10 -p tcp -e 1000 -i 97 -a 20 - -t 0.335432 -s 9 -d 10 -p tcp -e 1000 -i 97 -a 20 h -t 0.335432 -s 9 -d 10 -p tcp -e 1000 -i 97 -a 20 r -t 0.335509 -s 8 -d 3 -p ack -e 40 -i 133 -a 20 + -t 0.335509 -s 3 -d 8 -p tcp -e 1000 -i 159 -a 20 - -t 0.335509 -s 3 -d 8 -p tcp -e 1000 -i 159 -a 20 h -t 0.335509 -s 3 -d 8 -p tcp -e 1000 -i 159 -a 20 + -t 0.335509 -s 3 -d 8 -p tcp -e 1000 -i 160 -a 20 r -t 0.335752 -s 6 -d 7 -p tcp -e 1000 -i 85 -a 10 + -t 0.335752 -s 7 -d 2 -p tcp -e 1000 -i 85 -a 10 - -t 0.335752 -s 7 -d 2 -p tcp -e 1000 -i 85 -a 10 h -t 0.335752 -s 7 -d 2 -p tcp -e 1000 -i 85 -a 10 r -t 0.335936 -s 6 -d 1 -p ack -e 40 -i 134 -a 11 + -t 0.335936 -s 1 -d 6 -p tcp -e 1000 -i 161 -a 11 - -t 0.335936 -s 1 -d 6 -p tcp -e 1000 -i 161 -a 11 h -t 0.335936 -s 1 -d 6 -p tcp -e 1000 -i 161 -a 11 + -t 0.335936 -s 1 -d 6 -p tcp -e 1000 -i 162 -a 11 - -t 0.336309 -s 3 -d 8 -p tcp -e 1000 -i 160 -a 20 h -t 0.336309 -s 3 -d 8 -p tcp -e 1000 -i 160 -a 20 r -t 0.336584 -s 2 -d 7 -p ack -e 40 -i 157 -a 11 + -t 0.336584 -s 7 -d 6 -p ack -e 40 -i 157 -a 11 - -t 0.336584 -s 7 -d 6 -p ack -e 40 -i 157 -a 11 h -t 0.336584 -s 7 -d 6 -p ack -e 40 -i 157 -a 11 - -t 0.336736 -s 1 -d 6 -p tcp -e 1000 -i 162 -a 11 h -t 0.336736 -s 1 -d 6 -p tcp -e 1000 -i 162 -a 11 - -t 0.336765 -s 8 -d 9 -p tcp -e 1000 -i 112 -a 20 h -t 0.336765 -s 8 -d 9 -p tcp -e 1000 -i 112 -a 20 r -t 0.33781 -s 9 -d 8 -p ack -e 40 -i 139 -a 20 + -t 0.337811 -s 8 -d 3 -p ack -e 40 -i 139 -a 20 - -t 0.337811 -s 8 -d 3 -p ack -e 40 -i 139 -a 20 h -t 0.337811 -s 8 -d 3 -p ack -e 40 -i 139 -a 20 r -t 0.338931 -s 4 -d 10 -p ack -e 40 -i 158 -a 20 + -t 0.338931 -s 9 -d 8 -p ack -e 40 -i 158 -a 20 - -t 0.338931 -s 9 -d 8 -p ack -e 40 -i 158 -a 20 h -t 0.338931 -s 9 -d 8 -p ack -e 40 -i 158 -a 20 r -t 0.339309 -s 3 -d 8 -p tcp -e 1000 -i 159 -a 20 + -t 0.339309 -s 8 -d 9 -p tcp -e 1000 -i 159 -a 20 r -t 0.339736 -s 1 -d 6 -p tcp -e 1000 -i 161 -a 11 + -t 0.339736 -s 6 -d 7 -p tcp -e 1000 -i 161 -a 11 d -t 0.339736 -s 6 -d 7 -p tcp -e 1000 -i 153 -a 10 - -t 0.339752 -s 6 -d 7 -p tcp -e 1000 -i 105 -a 12 h -t 0.339752 -s 6 -d 7 -p tcp -e 1000 -i 105 -a 12 r -t 0.340109 -s 3 -d 8 -p tcp -e 1000 -i 160 -a 20 + -t 0.340109 -s 8 -d 9 -p tcp -e 1000 -i 160 -a 20 d -t 0.340109 -s 8 -d 9 -p tcp -e 1000 -i 160 -a 20 r -t 0.340232 -s 9 -d 10 -p tcp -e 1000 -i 97 -a 20 + -t 0.340232 -s 4 -d 10 -p ack -e 40 -i 163 -a 20 - -t 0.340232 -s 4 -d 10 -p ack -e 40 -i 163 -a 20 h -t 0.340232 -s 4 -d 10 -p ack -e 40 -i 163 -a 20 r -t 0.340536 -s 1 -d 6 -p tcp -e 1000 -i 162 -a 11 + -t 0.340536 -s 6 -d 7 -p tcp -e 1000 -i 162 -a 11 r -t 0.340552 -s 7 -d 2 -p tcp -e 1000 -i 85 -a 10 + -t 0.340552 -s 2 -d 7 -p ack -e 40 -i 164 -a 10 - -t 0.340552 -s 2 -d 7 -p ack -e 40 -i 164 -a 10 h -t 0.340552 -s 2 -d 7 -p ack -e 40 -i 164 -a 10 r -t 0.340765 -s 8 -d 9 -p tcp -e 1000 -i 98 -a 20 + -t 0.340765 -s 9 -d 10 -p tcp -e 1000 -i 98 -a 20 - -t 0.340765 -s 9 -d 10 -p tcp -e 1000 -i 98 -a 20 h -t 0.340765 -s 9 -d 10 -p tcp -e 1000 -i 98 -a 20 r -t 0.340843 -s 8 -d 3 -p ack -e 40 -i 139 -a 20 + -t 0.340843 -s 3 -d 8 -p tcp -e 1000 -i 165 -a 20 - -t 0.340843 -s 3 -d 8 -p tcp -e 1000 -i 165 -a 20 h -t 0.340843 -s 3 -d 8 -p tcp -e 1000 -i 165 -a 20 + -t 0.340843 -s 3 -d 8 -p tcp -e 1000 -i 166 -a 20 r -t 0.340904 -s 7 -d 6 -p ack -e 40 -i 142 -a 11 + -t 0.340904 -s 6 -d 1 -p ack -e 40 -i 142 -a 11 - -t 0.340904 -s 6 -d 1 -p ack -e 40 -i 142 -a 11 h -t 0.340904 -s 6 -d 1 -p ack -e 40 -i 142 -a 11 - -t 0.341643 -s 3 -d 8 -p tcp -e 1000 -i 166 -a 20 h -t 0.341643 -s 3 -d 8 -p tcp -e 1000 -i 166 -a 20 - -t 0.342099 -s 8 -d 9 -p tcp -e 1000 -i 118 -a 21 h -t 0.342099 -s 8 -d 9 -p tcp -e 1000 -i 118 -a 21 r -t 0.343144 -s 9 -d 8 -p ack -e 40 -i 143 -a 20 + -t 0.343144 -s 8 -d 3 -p ack -e 40 -i 143 -a 20 - -t 0.343144 -s 8 -d 3 -p ack -e 40 -i 143 -a 20 h -t 0.343144 -s 8 -d 3 -p ack -e 40 -i 143 -a 20 r -t 0.343752 -s 6 -d 7 -p tcp -e 1000 -i 90 -a 10 + -t 0.343752 -s 7 -d 2 -p tcp -e 1000 -i 90 -a 10 - -t 0.343752 -s 7 -d 2 -p tcp -e 1000 -i 90 -a 10 h -t 0.343752 -s 7 -d 2 -p tcp -e 1000 -i 90 -a 10 r -t 0.343936 -s 6 -d 1 -p ack -e 40 -i 142 -a 11 + -t 0.343936 -s 1 -d 6 -p tcp -e 1000 -i 167 -a 11 - -t 0.343936 -s 1 -d 6 -p tcp -e 1000 -i 167 -a 11 h -t 0.343936 -s 1 -d 6 -p tcp -e 1000 -i 167 -a 11 + -t 0.343936 -s 1 -d 6 -p tcp -e 1000 -i 168 -a 11 r -t 0.344264 -s 4 -d 10 -p ack -e 40 -i 163 -a 20 + -t 0.344264 -s 9 -d 8 -p ack -e 40 -i 163 -a 20 - -t 0.344264 -s 9 -d 8 -p ack -e 40 -i 163 -a 20 h -t 0.344264 -s 9 -d 8 -p ack -e 40 -i 163 -a 20 r -t 0.344584 -s 2 -d 7 -p ack -e 40 -i 164 -a 10 + -t 0.344584 -s 7 -d 6 -p ack -e 40 -i 164 -a 10 - -t 0.344584 -s 7 -d 6 -p ack -e 40 -i 164 -a 10 h -t 0.344584 -s 7 -d 6 -p ack -e 40 -i 164 -a 10 r -t 0.344643 -s 3 -d 8 -p tcp -e 1000 -i 165 -a 20 + -t 0.344643 -s 8 -d 9 -p tcp -e 1000 -i 165 -a 20 - -t 0.344736 -s 1 -d 6 -p tcp -e 1000 -i 168 -a 11 h -t 0.344736 -s 1 -d 6 -p tcp -e 1000 -i 168 -a 11 r -t 0.345443 -s 3 -d 8 -p tcp -e 1000 -i 166 -a 20 + -t 0.345443 -s 8 -d 9 -p tcp -e 1000 -i 166 -a 20 d -t 0.345443 -s 8 -d 9 -p tcp -e 1000 -i 166 -a 20 r -t 0.345565 -s 9 -d 10 -p tcp -e 1000 -i 98 -a 20 + -t 0.345565 -s 4 -d 10 -p ack -e 40 -i 169 -a 20 - -t 0.345565 -s 4 -d 10 -p ack -e 40 -i 169 -a 20 h -t 0.345565 -s 4 -d 10 -p ack -e 40 -i 169 -a 20 r -t 0.346098 -s 8 -d 9 -p tcp -e 1000 -i 103 -a 20 + -t 0.346099 -s 9 -d 10 -p tcp -e 1000 -i 103 -a 20 - -t 0.346099 -s 9 -d 10 -p tcp -e 1000 -i 103 -a 20 h -t 0.346099 -s 9 -d 10 -p tcp -e 1000 -i 103 -a 20 r -t 0.346176 -s 8 -d 3 -p ack -e 40 -i 143 -a 20 + -t 0.346176 -s 3 -d 8 -p tcp -e 1000 -i 170 -a 20 - -t 0.346176 -s 3 -d 8 -p tcp -e 1000 -i 170 -a 20 h -t 0.346176 -s 3 -d 8 -p tcp -e 1000 -i 170 -a 20 + -t 0.346176 -s 3 -d 8 -p tcp -e 1000 -i 171 -a 20 - -t 0.346976 -s 3 -d 8 -p tcp -e 1000 -i 171 -a 20 h -t 0.346976 -s 3 -d 8 -p tcp -e 1000 -i 171 -a 20 - -t 0.347432 -s 8 -d 9 -p tcp -e 1000 -i 123 -a 21 h -t 0.347432 -s 8 -d 9 -p tcp -e 1000 -i 123 -a 21 r -t 0.347736 -s 1 -d 6 -p tcp -e 1000 -i 167 -a 11 + -t 0.347736 -s 6 -d 7 -p tcp -e 1000 -i 167 -a 11 d -t 0.347736 -s 6 -d 7 -p tcp -e 1000 -i 167 -a 11 - -t 0.347752 -s 6 -d 7 -p tcp -e 1000 -i 100 -a 10 h -t 0.347752 -s 6 -d 7 -p tcp -e 1000 -i 100 -a 10 v -t 0.348000 -e take_snapshot r -t 0.348477 -s 9 -d 8 -p ack -e 40 -i 148 -a 20 + -t 0.348477 -s 8 -d 3 -p ack -e 40 -i 148 -a 20 - -t 0.348477 -s 8 -d 3 -p ack -e 40 -i 148 -a 20 h -t 0.348477 -s 8 -d 3 -p ack -e 40 -i 148 -a 20 r -t 0.348536 -s 1 -d 6 -p tcp -e 1000 -i 168 -a 11 + -t 0.348536 -s 6 -d 7 -p tcp -e 1000 -i 168 -a 11 r -t 0.348552 -s 7 -d 2 -p tcp -e 1000 -i 90 -a 10 + -t 0.348552 -s 2 -d 7 -p ack -e 40 -i 172 -a 10 - -t 0.348552 -s 2 -d 7 -p ack -e 40 -i 172 -a 10 h -t 0.348552 -s 2 -d 7 -p ack -e 40 -i 172 -a 10 r -t 0.348904 -s 7 -d 6 -p ack -e 40 -i 149 -a 10 + -t 0.348904 -s 6 -d 1 -p ack -e 40 -i 149 -a 10 - -t 0.348904 -s 6 -d 1 -p ack -e 40 -i 149 -a 10 h -t 0.348904 -s 6 -d 1 -p ack -e 40 -i 149 -a 10 r -t 0.349597 -s 4 -d 10 -p ack -e 40 -i 169 -a 20 + -t 0.349597 -s 9 -d 8 -p ack -e 40 -i 169 -a 20 - -t 0.349597 -s 9 -d 8 -p ack -e 40 -i 169 -a 20 h -t 0.349597 -s 9 -d 8 -p ack -e 40 -i 169 -a 20 r -t 0.349976 -s 3 -d 8 -p tcp -e 1000 -i 170 -a 20 + -t 0.349976 -s 8 -d 9 -p tcp -e 1000 -i 170 -a 20 r -t 0.350776 -s 3 -d 8 -p tcp -e 1000 -i 171 -a 20 + -t 0.350776 -s 8 -d 9 -p tcp -e 1000 -i 171 -a 20 d -t 0.350776 -s 8 -d 9 -p tcp -e 1000 -i 171 -a 20 r -t 0.350899 -s 9 -d 10 -p tcp -e 1000 -i 103 -a 20 + -t 0.350899 -s 4 -d 10 -p ack -e 40 -i 173 -a 20 - -t 0.350899 -s 4 -d 10 -p ack -e 40 -i 173 -a 20 h -t 0.350899 -s 4 -d 10 -p ack -e 40 -i 173 -a 20 r -t 0.351432 -s 8 -d 9 -p tcp -e 1000 -i 108 -a 22 + -t 0.351432 -s 9 -d 10 -p tcp -e 1000 -i 108 -a 22 - -t 0.351432 -s 9 -d 10 -p tcp -e 1000 -i 108 -a 22 h -t 0.351432 -s 9 -d 10 -p tcp -e 1000 -i 108 -a 22 r -t 0.351509 -s 8 -d 3 -p ack -e 40 -i 148 -a 20 + -t 0.351509 -s 3 -d 8 -p tcp -e 1000 -i 174 -a 20 - -t 0.351509 -s 3 -d 8 -p tcp -e 1000 -i 174 -a 20 h -t 0.351509 -s 3 -d 8 -p tcp -e 1000 -i 174 -a 20 + -t 0.351509 -s 3 -d 8 -p tcp -e 1000 -i 175 -a 20 r -t 0.351752 -s 6 -d 7 -p tcp -e 1000 -i 91 -a 10 + -t 0.351752 -s 7 -d 2 -p tcp -e 1000 -i 91 -a 10 - -t 0.351752 -s 7 -d 2 -p tcp -e 1000 -i 91 -a 10 h -t 0.351752 -s 7 -d 2 -p tcp -e 1000 -i 91 -a 10 r -t 0.351936 -s 6 -d 1 -p ack -e 40 -i 149 -a 10 + -t 0.351936 -s 1 -d 6 -p tcp -e 1000 -i 176 -a 10 - -t 0.351936 -s 1 -d 6 -p tcp -e 1000 -i 176 -a 10 h -t 0.351936 -s 1 -d 6 -p tcp -e 1000 -i 176 -a 10 + -t 0.351936 -s 1 -d 6 -p tcp -e 1000 -i 177 -a 10 - -t 0.352309 -s 3 -d 8 -p tcp -e 1000 -i 175 -a 20 h -t 0.352309 -s 3 -d 8 -p tcp -e 1000 -i 175 -a 20 r -t 0.352584 -s 2 -d 7 -p ack -e 40 -i 172 -a 10 + -t 0.352584 -s 7 -d 6 -p ack -e 40 -i 172 -a 10 - -t 0.352584 -s 7 -d 6 -p ack -e 40 -i 172 -a 10 h -t 0.352584 -s 7 -d 6 -p ack -e 40 -i 172 -a 10 - -t 0.352736 -s 1 -d 6 -p tcp -e 1000 -i 177 -a 10 h -t 0.352736 -s 1 -d 6 -p tcp -e 1000 -i 177 -a 10 - -t 0.352765 -s 8 -d 9 -p tcp -e 1000 -i 129 -a 21 h -t 0.352765 -s 8 -d 9 -p tcp -e 1000 -i 129 -a 21 r -t 0.35381 -s 9 -d 8 -p ack -e 40 -i 154 -a 20 + -t 0.353811 -s 8 -d 3 -p ack -e 40 -i 154 -a 20 - -t 0.353811 -s 8 -d 3 -p ack -e 40 -i 154 -a 20 h -t 0.353811 -s 8 -d 3 -p ack -e 40 -i 154 -a 20 r -t 0.354931 -s 4 -d 10 -p ack -e 40 -i 173 -a 20 + -t 0.354931 -s 9 -d 8 -p ack -e 40 -i 173 -a 20 - -t 0.354931 -s 9 -d 8 -p ack -e 40 -i 173 -a 20 h -t 0.354931 -s 9 -d 8 -p ack -e 40 -i 173 -a 20 r -t 0.355309 -s 3 -d 8 -p tcp -e 1000 -i 174 -a 20 + -t 0.355309 -s 8 -d 9 -p tcp -e 1000 -i 174 -a 20 r -t 0.355736 -s 1 -d 6 -p tcp -e 1000 -i 176 -a 10 + -t 0.355736 -s 6 -d 7 -p tcp -e 1000 -i 176 -a 10 d -t 0.355736 -s 6 -d 7 -p tcp -e 1000 -i 168 -a 11 - -t 0.355752 -s 6 -d 7 -p tcp -e 1000 -i 106 -a 12 h -t 0.355752 -s 6 -d 7 -p tcp -e 1000 -i 106 -a 12 r -t 0.356109 -s 3 -d 8 -p tcp -e 1000 -i 175 -a 20 + -t 0.356109 -s 8 -d 9 -p tcp -e 1000 -i 175 -a 20 d -t 0.356109 -s 8 -d 9 -p tcp -e 1000 -i 175 -a 20 r -t 0.356232 -s 9 -d 10 -p tcp -e 1000 -i 108 -a 22 + -t 0.356232 -s 4 -d 10 -p ack -e 40 -i 178 -a 22 - -t 0.356232 -s 4 -d 10 -p ack -e 40 -i 178 -a 22 h -t 0.356232 -s 4 -d 10 -p ack -e 40 -i 178 -a 22 r -t 0.356536 -s 1 -d 6 -p tcp -e 1000 -i 177 -a 10 + -t 0.356536 -s 6 -d 7 -p tcp -e 1000 -i 177 -a 10 r -t 0.356552 -s 7 -d 2 -p tcp -e 1000 -i 91 -a 10 + -t 0.356552 -s 2 -d 7 -p ack -e 40 -i 179 -a 10 - -t 0.356552 -s 2 -d 7 -p ack -e 40 -i 179 -a 10 h -t 0.356552 -s 2 -d 7 -p ack -e 40 -i 179 -a 10 r -t 0.356765 -s 8 -d 9 -p tcp -e 1000 -i 104 -a 20 + -t 0.356765 -s 9 -d 10 -p tcp -e 1000 -i 104 -a 20 - -t 0.356765 -s 9 -d 10 -p tcp -e 1000 -i 104 -a 20 h -t 0.356765 -s 9 -d 10 -p tcp -e 1000 -i 104 -a 20 r -t 0.356843 -s 8 -d 3 -p ack -e 40 -i 154 -a 20 + -t 0.356843 -s 3 -d 8 -p tcp -e 1000 -i 180 -a 20 - -t 0.356843 -s 3 -d 8 -p tcp -e 1000 -i 180 -a 20 h -t 0.356843 -s 3 -d 8 -p tcp -e 1000 -i 180 -a 20 + -t 0.356843 -s 3 -d 8 -p tcp -e 1000 -i 181 -a 20 r -t 0.356904 -s 7 -d 6 -p ack -e 40 -i 157 -a 11 + -t 0.356904 -s 6 -d 1 -p ack -e 40 -i 157 -a 11 - -t 0.356904 -s 6 -d 1 -p ack -e 40 -i 157 -a 11 h -t 0.356904 -s 6 -d 1 -p ack -e 40 -i 157 -a 11 - -t 0.357643 -s 3 -d 8 -p tcp -e 1000 -i 181 -a 20 h -t 0.357643 -s 3 -d 8 -p tcp -e 1000 -i 181 -a 20 - -t 0.358099 -s 8 -d 9 -p tcp -e 1000 -i 135 -a 21 h -t 0.358099 -s 8 -d 9 -p tcp -e 1000 -i 135 -a 21 r -t 0.359144 -s 9 -d 8 -p ack -e 40 -i 158 -a 20 + -t 0.359144 -s 8 -d 3 -p ack -e 40 -i 158 -a 20 - -t 0.359144 -s 8 -d 3 -p ack -e 40 -i 158 -a 20 h -t 0.359144 -s 8 -d 3 -p ack -e 40 -i 158 -a 20 r -t 0.359752 -s 6 -d 7 -p tcp -e 1000 -i 99 -a 10 + -t 0.359752 -s 7 -d 2 -p tcp -e 1000 -i 99 -a 10 - -t 0.359752 -s 7 -d 2 -p tcp -e 1000 -i 99 -a 10 h -t 0.359752 -s 7 -d 2 -p tcp -e 1000 -i 99 -a 10 r -t 0.359936 -s 6 -d 1 -p ack -e 40 -i 157 -a 11 + -t 0.359936 -s 1 -d 6 -p tcp -e 1000 -i 182 -a 11 - -t 0.359936 -s 1 -d 6 -p tcp -e 1000 -i 182 -a 11 h -t 0.359936 -s 1 -d 6 -p tcp -e 1000 -i 182 -a 11 + -t 0.359936 -s 1 -d 6 -p tcp -e 1000 -i 183 -a 11 r -t 0.360264 -s 4 -d 10 -p ack -e 40 -i 178 -a 22 + -t 0.360264 -s 9 -d 8 -p ack -e 40 -i 178 -a 22 - -t 0.360264 -s 9 -d 8 -p ack -e 40 -i 178 -a 22 h -t 0.360264 -s 9 -d 8 -p ack -e 40 -i 178 -a 22 r -t 0.360584 -s 2 -d 7 -p ack -e 40 -i 179 -a 10 + -t 0.360584 -s 7 -d 6 -p ack -e 40 -i 179 -a 10 - -t 0.360584 -s 7 -d 6 -p ack -e 40 -i 179 -a 10 h -t 0.360584 -s 7 -d 6 -p ack -e 40 -i 179 -a 10 r -t 0.360643 -s 3 -d 8 -p tcp -e 1000 -i 180 -a 20 + -t 0.360643 -s 8 -d 9 -p tcp -e 1000 -i 180 -a 20 - -t 0.360736 -s 1 -d 6 -p tcp -e 1000 -i 183 -a 11 h -t 0.360736 -s 1 -d 6 -p tcp -e 1000 -i 183 -a 11 r -t 0.361443 -s 3 -d 8 -p tcp -e 1000 -i 181 -a 20 + -t 0.361443 -s 8 -d 9 -p tcp -e 1000 -i 181 -a 20 d -t 0.361443 -s 8 -d 9 -p tcp -e 1000 -i 181 -a 20 r -t 0.361565 -s 9 -d 10 -p tcp -e 1000 -i 104 -a 20 + -t 0.361565 -s 4 -d 10 -p ack -e 40 -i 184 -a 20 - -t 0.361565 -s 4 -d 10 -p ack -e 40 -i 184 -a 20 h -t 0.361565 -s 4 -d 10 -p ack -e 40 -i 184 -a 20 r -t 0.362098 -s 8 -d 9 -p tcp -e 1000 -i 112 -a 20 + -t 0.362099 -s 9 -d 10 -p tcp -e 1000 -i 112 -a 20 - -t 0.362099 -s 9 -d 10 -p tcp -e 1000 -i 112 -a 20 h -t 0.362099 -s 9 -d 10 -p tcp -e 1000 -i 112 -a 20 r -t 0.362176 -s 8 -d 3 -p ack -e 40 -i 158 -a 20 + -t 0.362176 -s 3 -d 8 -p tcp -e 1000 -i 185 -a 20 - -t 0.362176 -s 3 -d 8 -p tcp -e 1000 -i 185 -a 20 h -t 0.362176 -s 3 -d 8 -p tcp -e 1000 -i 185 -a 20 + -t 0.362176 -s 3 -d 8 -p tcp -e 1000 -i 186 -a 20 - -t 0.362976 -s 3 -d 8 -p tcp -e 1000 -i 186 -a 20 h -t 0.362976 -s 3 -d 8 -p tcp -e 1000 -i 186 -a 20 - -t 0.363432 -s 8 -d 9 -p tcp -e 1000 -i 140 -a 20 h -t 0.363432 -s 8 -d 9 -p tcp -e 1000 -i 140 -a 20 r -t 0.363736 -s 1 -d 6 -p tcp -e 1000 -i 182 -a 11 + -t 0.363736 -s 6 -d 7 -p tcp -e 1000 -i 182 -a 11 d -t 0.363736 -s 6 -d 7 -p tcp -e 1000 -i 177 -a 10 - -t 0.363752 -s 6 -d 7 -p tcp -e 1000 -i 115 -a 10 h -t 0.363752 -s 6 -d 7 -p tcp -e 1000 -i 115 -a 10 r -t 0.364477 -s 9 -d 8 -p ack -e 40 -i 163 -a 20 + -t 0.364477 -s 8 -d 3 -p ack -e 40 -i 163 -a 20 - -t 0.364477 -s 8 -d 3 -p ack -e 40 -i 163 -a 20 h -t 0.364477 -s 8 -d 3 -p ack -e 40 -i 163 -a 20 r -t 0.364536 -s 1 -d 6 -p tcp -e 1000 -i 183 -a 11 + -t 0.364536 -s 6 -d 7 -p tcp -e 1000 -i 183 -a 11 r -t 0.364552 -s 7 -d 2 -p tcp -e 1000 -i 99 -a 10 + -t 0.364552 -s 2 -d 7 -p ack -e 40 -i 187 -a 10 - -t 0.364552 -s 2 -d 7 -p ack -e 40 -i 187 -a 10 h -t 0.364552 -s 2 -d 7 -p ack -e 40 -i 187 -a 10 r -t 0.364904 -s 7 -d 6 -p ack -e 40 -i 164 -a 10 + -t 0.364904 -s 6 -d 1 -p ack -e 40 -i 164 -a 10 - -t 0.364904 -s 6 -d 1 -p ack -e 40 -i 164 -a 10 h -t 0.364904 -s 6 -d 1 -p ack -e 40 -i 164 -a 10 r -t 0.365597 -s 4 -d 10 -p ack -e 40 -i 184 -a 20 + -t 0.365597 -s 9 -d 8 -p ack -e 40 -i 184 -a 20 - -t 0.365597 -s 9 -d 8 -p ack -e 40 -i 184 -a 20 h -t 0.365597 -s 9 -d 8 -p ack -e 40 -i 184 -a 20 r -t 0.365976 -s 3 -d 8 -p tcp -e 1000 -i 185 -a 20 + -t 0.365976 -s 8 -d 9 -p tcp -e 1000 -i 185 -a 20 r -t 0.366776 -s 3 -d 8 -p tcp -e 1000 -i 186 -a 20 + -t 0.366776 -s 8 -d 9 -p tcp -e 1000 -i 186 -a 20 d -t 0.366776 -s 8 -d 9 -p tcp -e 1000 -i 186 -a 20 r -t 0.366899 -s 9 -d 10 -p tcp -e 1000 -i 112 -a 20 + -t 0.366899 -s 4 -d 10 -p ack -e 40 -i 188 -a 20 - -t 0.366899 -s 4 -d 10 -p ack -e 40 -i 188 -a 20 h -t 0.366899 -s 4 -d 10 -p ack -e 40 -i 188 -a 20 r -t 0.367432 -s 8 -d 9 -p tcp -e 1000 -i 118 -a 21 + -t 0.367432 -s 9 -d 10 -p tcp -e 1000 -i 118 -a 21 - -t 0.367432 -s 9 -d 10 -p tcp -e 1000 -i 118 -a 21 h -t 0.367432 -s 9 -d 10 -p tcp -e 1000 -i 118 -a 21 r -t 0.367509 -s 8 -d 3 -p ack -e 40 -i 163 -a 20 + -t 0.367509 -s 3 -d 8 -p tcp -e 1000 -i 189 -a 20 - -t 0.367509 -s 3 -d 8 -p tcp -e 1000 -i 189 -a 20 h -t 0.367509 -s 3 -d 8 -p tcp -e 1000 -i 189 -a 20 + -t 0.367509 -s 3 -d 8 -p tcp -e 1000 -i 190 -a 20 r -t 0.367752 -s 6 -d 7 -p tcp -e 1000 -i 105 -a 12 + -t 0.367752 -s 7 -d 2 -p tcp -e 1000 -i 105 -a 12 - -t 0.367752 -s 7 -d 2 -p tcp -e 1000 -i 105 -a 12 h -t 0.367752 -s 7 -d 2 -p tcp -e 1000 -i 105 -a 12 r -t 0.367936 -s 6 -d 1 -p ack -e 40 -i 164 -a 10 + -t 0.367936 -s 1 -d 6 -p tcp -e 1000 -i 191 -a 10 - -t 0.367936 -s 1 -d 6 -p tcp -e 1000 -i 191 -a 10 h -t 0.367936 -s 1 -d 6 -p tcp -e 1000 -i 191 -a 10 + -t 0.367936 -s 1 -d 6 -p tcp -e 1000 -i 192 -a 10 - -t 0.368309 -s 3 -d 8 -p tcp -e 1000 -i 190 -a 20 h -t 0.368309 -s 3 -d 8 -p tcp -e 1000 -i 190 -a 20 r -t 0.368584 -s 2 -d 7 -p ack -e 40 -i 187 -a 10 + -t 0.368584 -s 7 -d 6 -p ack -e 40 -i 187 -a 10 - -t 0.368584 -s 7 -d 6 -p ack -e 40 -i 187 -a 10 h -t 0.368584 -s 7 -d 6 -p ack -e 40 -i 187 -a 10 - -t 0.368736 -s 1 -d 6 -p tcp -e 1000 -i 192 -a 10 h -t 0.368736 -s 1 -d 6 -p tcp -e 1000 -i 192 -a 10 - -t 0.368765 -s 8 -d 9 -p tcp -e 1000 -i 144 -a 20 h -t 0.368765 -s 8 -d 9 -p tcp -e 1000 -i 144 -a 20 r -t 0.36981 -s 9 -d 8 -p ack -e 40 -i 169 -a 20 + -t 0.369811 -s 8 -d 3 -p ack -e 40 -i 169 -a 20 - -t 0.369811 -s 8 -d 3 -p ack -e 40 -i 169 -a 20 h -t 0.369811 -s 8 -d 3 -p ack -e 40 -i 169 -a 20 r -t 0.370931 -s 4 -d 10 -p ack -e 40 -i 188 -a 20 + -t 0.370931 -s 9 -d 8 -p ack -e 40 -i 188 -a 20 - -t 0.370931 -s 9 -d 8 -p ack -e 40 -i 188 -a 20 h -t 0.370931 -s 9 -d 8 -p ack -e 40 -i 188 -a 20 r -t 0.371309 -s 3 -d 8 -p tcp -e 1000 -i 189 -a 20 + -t 0.371309 -s 8 -d 9 -p tcp -e 1000 -i 189 -a 20 r -t 0.371736 -s 1 -d 6 -p tcp -e 1000 -i 191 -a 10 + -t 0.371736 -s 6 -d 7 -p tcp -e 1000 -i 191 -a 10 d -t 0.371736 -s 6 -d 7 -p tcp -e 1000 -i 183 -a 11 - -t 0.371752 -s 6 -d 7 -p tcp -e 1000 -i 125 -a 13 h -t 0.371752 -s 6 -d 7 -p tcp -e 1000 -i 125 -a 13 r -t 0.372109 -s 3 -d 8 -p tcp -e 1000 -i 190 -a 20 + -t 0.372109 -s 8 -d 9 -p tcp -e 1000 -i 190 -a 20 d -t 0.372109 -s 8 -d 9 -p tcp -e 1000 -i 190 -a 20 r -t 0.372232 -s 9 -d 10 -p tcp -e 1000 -i 118 -a 21 + -t 0.372232 -s 4 -d 10 -p ack -e 40 -i 193 -a 21 - -t 0.372232 -s 4 -d 10 -p ack -e 40 -i 193 -a 21 h -t 0.372232 -s 4 -d 10 -p ack -e 40 -i 193 -a 21 r -t 0.372536 -s 1 -d 6 -p tcp -e 1000 -i 192 -a 10 + -t 0.372536 -s 6 -d 7 -p tcp -e 1000 -i 192 -a 10 r -t 0.372552 -s 7 -d 2 -p tcp -e 1000 -i 105 -a 12 + -t 0.372552 -s 2 -d 7 -p ack -e 40 -i 194 -a 12 - -t 0.372552 -s 2 -d 7 -p ack -e 40 -i 194 -a 12 h -t 0.372552 -s 2 -d 7 -p ack -e 40 -i 194 -a 12 r -t 0.372765 -s 8 -d 9 -p tcp -e 1000 -i 123 -a 21 + -t 0.372765 -s 9 -d 10 -p tcp -e 1000 -i 123 -a 21 - -t 0.372765 -s 9 -d 10 -p tcp -e 1000 -i 123 -a 21 h -t 0.372765 -s 9 -d 10 -p tcp -e 1000 -i 123 -a 21 r -t 0.372843 -s 8 -d 3 -p ack -e 40 -i 169 -a 20 + -t 0.372843 -s 3 -d 8 -p tcp -e 1000 -i 195 -a 20 - -t 0.372843 -s 3 -d 8 -p tcp -e 1000 -i 195 -a 20 h -t 0.372843 -s 3 -d 8 -p tcp -e 1000 -i 195 -a 20 + -t 0.372843 -s 3 -d 8 -p tcp -e 1000 -i 196 -a 20 r -t 0.372904 -s 7 -d 6 -p ack -e 40 -i 172 -a 10 + -t 0.372904 -s 6 -d 1 -p ack -e 40 -i 172 -a 10 - -t 0.372904 -s 6 -d 1 -p ack -e 40 -i 172 -a 10 h -t 0.372904 -s 6 -d 1 -p ack -e 40 -i 172 -a 10 - -t 0.373643 -s 3 -d 8 -p tcp -e 1000 -i 196 -a 20 h -t 0.373643 -s 3 -d 8 -p tcp -e 1000 -i 196 -a 20 - -t 0.374099 -s 8 -d 9 -p tcp -e 1000 -i 150 -a 20 h -t 0.374099 -s 8 -d 9 -p tcp -e 1000 -i 150 -a 20 r -t 0.375144 -s 9 -d 8 -p ack -e 40 -i 173 -a 20 + -t 0.375144 -s 8 -d 3 -p ack -e 40 -i 173 -a 20 - -t 0.375144 -s 8 -d 3 -p ack -e 40 -i 173 -a 20 h -t 0.375144 -s 8 -d 3 -p ack -e 40 -i 173 -a 20 r -t 0.375752 -s 6 -d 7 -p tcp -e 1000 -i 100 -a 10 + -t 0.375752 -s 7 -d 2 -p tcp -e 1000 -i 100 -a 10 - -t 0.375752 -s 7 -d 2 -p tcp -e 1000 -i 100 -a 10 h -t 0.375752 -s 7 -d 2 -p tcp -e 1000 -i 100 -a 10 r -t 0.375936 -s 6 -d 1 -p ack -e 40 -i 172 -a 10 + -t 0.375936 -s 1 -d 6 -p tcp -e 1000 -i 197 -a 10 - -t 0.375936 -s 1 -d 6 -p tcp -e 1000 -i 197 -a 10 h -t 0.375936 -s 1 -d 6 -p tcp -e 1000 -i 197 -a 10 + -t 0.375936 -s 1 -d 6 -p tcp -e 1000 -i 198 -a 10 r -t 0.376264 -s 4 -d 10 -p ack -e 40 -i 193 -a 21 + -t 0.376264 -s 9 -d 8 -p ack -e 40 -i 193 -a 21 - -t 0.376264 -s 9 -d 8 -p ack -e 40 -i 193 -a 21 h -t 0.376264 -s 9 -d 8 -p ack -e 40 -i 193 -a 21 r -t 0.376584 -s 2 -d 7 -p ack -e 40 -i 194 -a 12 + -t 0.376584 -s 7 -d 6 -p ack -e 40 -i 194 -a 12 - -t 0.376584 -s 7 -d 6 -p ack -e 40 -i 194 -a 12 h -t 0.376584 -s 7 -d 6 -p ack -e 40 -i 194 -a 12 r -t 0.376643 -s 3 -d 8 -p tcp -e 1000 -i 195 -a 20 + -t 0.376643 -s 8 -d 9 -p tcp -e 1000 -i 195 -a 20 - -t 0.376736 -s 1 -d 6 -p tcp -e 1000 -i 198 -a 10 h -t 0.376736 -s 1 -d 6 -p tcp -e 1000 -i 198 -a 10 r -t 0.377443 -s 3 -d 8 -p tcp -e 1000 -i 196 -a 20 + -t 0.377443 -s 8 -d 9 -p tcp -e 1000 -i 196 -a 20 d -t 0.377443 -s 8 -d 9 -p tcp -e 1000 -i 196 -a 20 r -t 0.377565 -s 9 -d 10 -p tcp -e 1000 -i 123 -a 21 + -t 0.377565 -s 4 -d 10 -p ack -e 40 -i 199 -a 21 - -t 0.377565 -s 4 -d 10 -p ack -e 40 -i 199 -a 21 h -t 0.377565 -s 4 -d 10 -p ack -e 40 -i 199 -a 21 r -t 0.378098 -s 8 -d 9 -p tcp -e 1000 -i 129 -a 21 + -t 0.378099 -s 9 -d 10 -p tcp -e 1000 -i 129 -a 21 - -t 0.378099 -s 9 -d 10 -p tcp -e 1000 -i 129 -a 21 h -t 0.378099 -s 9 -d 10 -p tcp -e 1000 -i 129 -a 21 r -t 0.378176 -s 8 -d 3 -p ack -e 40 -i 173 -a 20 + -t 0.378176 -s 3 -d 8 -p tcp -e 1000 -i 200 -a 20 - -t 0.378176 -s 3 -d 8 -p tcp -e 1000 -i 200 -a 20 h -t 0.378176 -s 3 -d 8 -p tcp -e 1000 -i 200 -a 20 + -t 0.378176 -s 3 -d 8 -p tcp -e 1000 -i 201 -a 20 - -t 0.378976 -s 3 -d 8 -p tcp -e 1000 -i 201 -a 20 h -t 0.378976 -s 3 -d 8 -p tcp -e 1000 -i 201 -a 20 - -t 0.379432 -s 8 -d 9 -p tcp -e 1000 -i 155 -a 20 h -t 0.379432 -s 8 -d 9 -p tcp -e 1000 -i 155 -a 20 r -t 0.379736 -s 1 -d 6 -p tcp -e 1000 -i 197 -a 10 + -t 0.379736 -s 6 -d 7 -p tcp -e 1000 -i 197 -a 10 d -t 0.379736 -s 6 -d 7 -p tcp -e 1000 -i 197 -a 10 - -t 0.379752 -s 6 -d 7 -p tcp -e 1000 -i 132 -a 10 h -t 0.379752 -s 6 -d 7 -p tcp -e 1000 -i 132 -a 10 r -t 0.380477 -s 9 -d 8 -p ack -e 40 -i 178 -a 22 + -t 0.380477 -s 8 -d 3 -p ack -e 40 -i 178 -a 22 - -t 0.380477 -s 8 -d 3 -p ack -e 40 -i 178 -a 22 h -t 0.380477 -s 8 -d 3 -p ack -e 40 -i 178 -a 22 r -t 0.380536 -s 1 -d 6 -p tcp -e 1000 -i 198 -a 10 + -t 0.380536 -s 6 -d 7 -p tcp -e 1000 -i 198 -a 10 r -t 0.380552 -s 7 -d 2 -p tcp -e 1000 -i 100 -a 10 + -t 0.380552 -s 2 -d 7 -p ack -e 40 -i 202 -a 10 - -t 0.380552 -s 2 -d 7 -p ack -e 40 -i 202 -a 10 h -t 0.380552 -s 2 -d 7 -p ack -e 40 -i 202 -a 10 r -t 0.380904 -s 7 -d 6 -p ack -e 40 -i 179 -a 10 + -t 0.380904 -s 6 -d 1 -p ack -e 40 -i 179 -a 10 - -t 0.380904 -s 6 -d 1 -p ack -e 40 -i 179 -a 10 h -t 0.380904 -s 6 -d 1 -p ack -e 40 -i 179 -a 10 r -t 0.381597 -s 4 -d 10 -p ack -e 40 -i 199 -a 21 + -t 0.381597 -s 9 -d 8 -p ack -e 40 -i 199 -a 21 - -t 0.381597 -s 9 -d 8 -p ack -e 40 -i 199 -a 21 h -t 0.381597 -s 9 -d 8 -p ack -e 40 -i 199 -a 21 r -t 0.381976 -s 3 -d 8 -p tcp -e 1000 -i 200 -a 20 + -t 0.381976 -s 8 -d 9 -p tcp -e 1000 -i 200 -a 20 r -t 0.382776 -s 3 -d 8 -p tcp -e 1000 -i 201 -a 20 + -t 0.382776 -s 8 -d 9 -p tcp -e 1000 -i 201 -a 20 d -t 0.382776 -s 8 -d 9 -p tcp -e 1000 -i 201 -a 20 r -t 0.382899 -s 9 -d 10 -p tcp -e 1000 -i 129 -a 21 + -t 0.382899 -s 4 -d 10 -p ack -e 40 -i 203 -a 21 - -t 0.382899 -s 4 -d 10 -p ack -e 40 -i 203 -a 21 h -t 0.382899 -s 4 -d 10 -p ack -e 40 -i 203 -a 21 r -t 0.383432 -s 8 -d 9 -p tcp -e 1000 -i 135 -a 21 + -t 0.383432 -s 9 -d 10 -p tcp -e 1000 -i 135 -a 21 - -t 0.383432 -s 9 -d 10 -p tcp -e 1000 -i 135 -a 21 h -t 0.383432 -s 9 -d 10 -p tcp -e 1000 -i 135 -a 21 r -t 0.383509 -s 8 -d 3 -p ack -e 40 -i 178 -a 22 + -t 0.383509 -s 3 -d 8 -p tcp -e 1000 -i 204 -a 22 - -t 0.383509 -s 3 -d 8 -p tcp -e 1000 -i 204 -a 22 h -t 0.383509 -s 3 -d 8 -p tcp -e 1000 -i 204 -a 22 + -t 0.383509 -s 3 -d 8 -p tcp -e 1000 -i 205 -a 22 r -t 0.383752 -s 6 -d 7 -p tcp -e 1000 -i 106 -a 12 + -t 0.383752 -s 7 -d 2 -p tcp -e 1000 -i 106 -a 12 - -t 0.383752 -s 7 -d 2 -p tcp -e 1000 -i 106 -a 12 h -t 0.383752 -s 7 -d 2 -p tcp -e 1000 -i 106 -a 12 r -t 0.383936 -s 6 -d 1 -p ack -e 40 -i 179 -a 10 + -t 0.383936 -s 1 -d 6 -p tcp -e 1000 -i 206 -a 10 - -t 0.383936 -s 1 -d 6 -p tcp -e 1000 -i 206 -a 10 h -t 0.383936 -s 1 -d 6 -p tcp -e 1000 -i 206 -a 10 + -t 0.383936 -s 1 -d 6 -p tcp -e 1000 -i 207 -a 10 - -t 0.384309 -s 3 -d 8 -p tcp -e 1000 -i 205 -a 22 h -t 0.384309 -s 3 -d 8 -p tcp -e 1000 -i 205 -a 22 r -t 0.384584 -s 2 -d 7 -p ack -e 40 -i 202 -a 10 + -t 0.384584 -s 7 -d 6 -p ack -e 40 -i 202 -a 10 - -t 0.384584 -s 7 -d 6 -p ack -e 40 -i 202 -a 10 h -t 0.384584 -s 7 -d 6 -p ack -e 40 -i 202 -a 10 - -t 0.384736 -s 1 -d 6 -p tcp -e 1000 -i 207 -a 10 h -t 0.384736 -s 1 -d 6 -p tcp -e 1000 -i 207 -a 10 - -t 0.384765 -s 8 -d 9 -p tcp -e 1000 -i 159 -a 20 h -t 0.384765 -s 8 -d 9 -p tcp -e 1000 -i 159 -a 20 r -t 0.38581 -s 9 -d 8 -p ack -e 40 -i 184 -a 20 + -t 0.385811 -s 8 -d 3 -p ack -e 40 -i 184 -a 20 - -t 0.385811 -s 8 -d 3 -p ack -e 40 -i 184 -a 20 h -t 0.385811 -s 8 -d 3 -p ack -e 40 -i 184 -a 20 r -t 0.386931 -s 4 -d 10 -p ack -e 40 -i 203 -a 21 + -t 0.386931 -s 9 -d 8 -p ack -e 40 -i 203 -a 21 - -t 0.386931 -s 9 -d 8 -p ack -e 40 -i 203 -a 21 h -t 0.386931 -s 9 -d 8 -p ack -e 40 -i 203 -a 21 r -t 0.387309 -s 3 -d 8 -p tcp -e 1000 -i 204 -a 22 + -t 0.387309 -s 8 -d 9 -p tcp -e 1000 -i 204 -a 22 r -t 0.387736 -s 1 -d 6 -p tcp -e 1000 -i 206 -a 10 + -t 0.387736 -s 6 -d 7 -p tcp -e 1000 -i 206 -a 10 d -t 0.387736 -s 6 -d 7 -p tcp -e 1000 -i 206 -a 10 - -t 0.387752 -s 6 -d 7 -p tcp -e 1000 -i 146 -a 11 h -t 0.387752 -s 6 -d 7 -p tcp -e 1000 -i 146 -a 11 r -t 0.388109 -s 3 -d 8 -p tcp -e 1000 -i 205 -a 22 + -t 0.388109 -s 8 -d 9 -p tcp -e 1000 -i 205 -a 22 d -t 0.388109 -s 8 -d 9 -p tcp -e 1000 -i 205 -a 22 r -t 0.388232 -s 9 -d 10 -p tcp -e 1000 -i 135 -a 21 + -t 0.388232 -s 4 -d 10 -p ack -e 40 -i 208 -a 21 - -t 0.388232 -s 4 -d 10 -p ack -e 40 -i 208 -a 21 h -t 0.388232 -s 4 -d 10 -p ack -e 40 -i 208 -a 21 r -t 0.388536 -s 1 -d 6 -p tcp -e 1000 -i 207 -a 10 + -t 0.388536 -s 6 -d 7 -p tcp -e 1000 -i 207 -a 10 r -t 0.388552 -s 7 -d 2 -p tcp -e 1000 -i 106 -a 12 + -t 0.388552 -s 2 -d 7 -p ack -e 40 -i 209 -a 12 - -t 0.388552 -s 2 -d 7 -p ack -e 40 -i 209 -a 12 h -t 0.388552 -s 2 -d 7 -p ack -e 40 -i 209 -a 12 r -t 0.388765 -s 8 -d 9 -p tcp -e 1000 -i 140 -a 20 + -t 0.388765 -s 9 -d 10 -p tcp -e 1000 -i 140 -a 20 - -t 0.388765 -s 9 -d 10 -p tcp -e 1000 -i 140 -a 20 h -t 0.388765 -s 9 -d 10 -p tcp -e 1000 -i 140 -a 20 r -t 0.388843 -s 8 -d 3 -p ack -e 40 -i 184 -a 20 + -t 0.388843 -s 3 -d 8 -p tcp -e 1000 -i 210 -a 20 - -t 0.388843 -s 3 -d 8 -p tcp -e 1000 -i 210 -a 20 h -t 0.388843 -s 3 -d 8 -p tcp -e 1000 -i 210 -a 20 + -t 0.388843 -s 3 -d 8 -p tcp -e 1000 -i 211 -a 20 r -t 0.388904 -s 7 -d 6 -p ack -e 40 -i 187 -a 10 + -t 0.388904 -s 6 -d 1 -p ack -e 40 -i 187 -a 10 - -t 0.388904 -s 6 -d 1 -p ack -e 40 -i 187 -a 10 h -t 0.388904 -s 6 -d 1 -p ack -e 40 -i 187 -a 10 - -t 0.389643 -s 3 -d 8 -p tcp -e 1000 -i 211 -a 20 h -t 0.389643 -s 3 -d 8 -p tcp -e 1000 -i 211 -a 20 - -t 0.390099 -s 8 -d 9 -p tcp -e 1000 -i 165 -a 20 h -t 0.390099 -s 8 -d 9 -p tcp -e 1000 -i 165 -a 20 r -t 0.391144 -s 9 -d 8 -p ack -e 40 -i 188 -a 20 + -t 0.391144 -s 8 -d 3 -p ack -e 40 -i 188 -a 20 - -t 0.391144 -s 8 -d 3 -p ack -e 40 -i 188 -a 20 h -t 0.391144 -s 8 -d 3 -p ack -e 40 -i 188 -a 20 r -t 0.391752 -s 6 -d 7 -p tcp -e 1000 -i 115 -a 10 + -t 0.391752 -s 7 -d 2 -p tcp -e 1000 -i 115 -a 10 - -t 0.391752 -s 7 -d 2 -p tcp -e 1000 -i 115 -a 10 h -t 0.391752 -s 7 -d 2 -p tcp -e 1000 -i 115 -a 10 r -t 0.391936 -s 6 -d 1 -p ack -e 40 -i 187 -a 10 + -t 0.391936 -s 1 -d 6 -p tcp -e 1000 -i 212 -a 10 - -t 0.391936 -s 1 -d 6 -p tcp -e 1000 -i 212 -a 10 h -t 0.391936 -s 1 -d 6 -p tcp -e 1000 -i 212 -a 10 + -t 0.391936 -s 1 -d 6 -p tcp -e 1000 -i 213 -a 10 r -t 0.392264 -s 4 -d 10 -p ack -e 40 -i 208 -a 21 + -t 0.392264 -s 9 -d 8 -p ack -e 40 -i 208 -a 21 - -t 0.392264 -s 9 -d 8 -p ack -e 40 -i 208 -a 21 h -t 0.392264 -s 9 -d 8 -p ack -e 40 -i 208 -a 21 r -t 0.392584 -s 2 -d 7 -p ack -e 40 -i 209 -a 12 + -t 0.392584 -s 7 -d 6 -p ack -e 40 -i 209 -a 12 - -t 0.392584 -s 7 -d 6 -p ack -e 40 -i 209 -a 12 h -t 0.392584 -s 7 -d 6 -p ack -e 40 -i 209 -a 12 r -t 0.392643 -s 3 -d 8 -p tcp -e 1000 -i 210 -a 20 + -t 0.392643 -s 8 -d 9 -p tcp -e 1000 -i 210 -a 20 - -t 0.392736 -s 1 -d 6 -p tcp -e 1000 -i 213 -a 10 h -t 0.392736 -s 1 -d 6 -p tcp -e 1000 -i 213 -a 10 r -t 0.393443 -s 3 -d 8 -p tcp -e 1000 -i 211 -a 20 + -t 0.393443 -s 8 -d 9 -p tcp -e 1000 -i 211 -a 20 d -t 0.393443 -s 8 -d 9 -p tcp -e 1000 -i 211 -a 20 r -t 0.393565 -s 9 -d 10 -p tcp -e 1000 -i 140 -a 20 + -t 0.393565 -s 4 -d 10 -p ack -e 40 -i 214 -a 20 - -t 0.393565 -s 4 -d 10 -p ack -e 40 -i 214 -a 20 h -t 0.393565 -s 4 -d 10 -p ack -e 40 -i 214 -a 20 r -t 0.394098 -s 8 -d 9 -p tcp -e 1000 -i 144 -a 20 + -t 0.394099 -s 9 -d 10 -p tcp -e 1000 -i 144 -a 20 - -t 0.394099 -s 9 -d 10 -p tcp -e 1000 -i 144 -a 20 h -t 0.394099 -s 9 -d 10 -p tcp -e 1000 -i 144 -a 20 r -t 0.394176 -s 8 -d 3 -p ack -e 40 -i 188 -a 20 + -t 0.394176 -s 3 -d 8 -p tcp -e 1000 -i 215 -a 20 - -t 0.394176 -s 3 -d 8 -p tcp -e 1000 -i 215 -a 20 h -t 0.394176 -s 3 -d 8 -p tcp -e 1000 -i 215 -a 20 + -t 0.394176 -s 3 -d 8 -p tcp -e 1000 -i 216 -a 20 - -t 0.394976 -s 3 -d 8 -p tcp -e 1000 -i 216 -a 20 h -t 0.394976 -s 3 -d 8 -p tcp -e 1000 -i 216 -a 20 - -t 0.395432 -s 8 -d 9 -p tcp -e 1000 -i 170 -a 20 h -t 0.395432 -s 8 -d 9 -p tcp -e 1000 -i 170 -a 20 r -t 0.395736 -s 1 -d 6 -p tcp -e 1000 -i 212 -a 10 + -t 0.395736 -s 6 -d 7 -p tcp -e 1000 -i 212 -a 10 d -t 0.395736 -s 6 -d 7 -p tcp -e 1000 -i 212 -a 10 - -t 0.395752 -s 6 -d 7 -p tcp -e 1000 -i 152 -a 10 h -t 0.395752 -s 6 -d 7 -p tcp -e 1000 -i 152 -a 10 r -t 0.396477 -s 9 -d 8 -p ack -e 40 -i 193 -a 21 + -t 0.396477 -s 8 -d 3 -p ack -e 40 -i 193 -a 21 - -t 0.396477 -s 8 -d 3 -p ack -e 40 -i 193 -a 21 h -t 0.396477 -s 8 -d 3 -p ack -e 40 -i 193 -a 21 r -t 0.396536 -s 1 -d 6 -p tcp -e 1000 -i 213 -a 10 + -t 0.396536 -s 6 -d 7 -p tcp -e 1000 -i 213 -a 10 r -t 0.396552 -s 7 -d 2 -p tcp -e 1000 -i 115 -a 10 + -t 0.396552 -s 2 -d 7 -p ack -e 40 -i 217 -a 10 - -t 0.396552 -s 2 -d 7 -p ack -e 40 -i 217 -a 10 h -t 0.396552 -s 2 -d 7 -p ack -e 40 -i 217 -a 10 r -t 0.396904 -s 7 -d 6 -p ack -e 40 -i 194 -a 12 + -t 0.396904 -s 6 -d 1 -p ack -e 40 -i 194 -a 12 - -t 0.396904 -s 6 -d 1 -p ack -e 40 -i 194 -a 12 h -t 0.396904 -s 6 -d 1 -p ack -e 40 -i 194 -a 12 r -t 0.397597 -s 4 -d 10 -p ack -e 40 -i 214 -a 20 + -t 0.397597 -s 9 -d 8 -p ack -e 40 -i 214 -a 20 - -t 0.397597 -s 9 -d 8 -p ack -e 40 -i 214 -a 20 h -t 0.397597 -s 9 -d 8 -p ack -e 40 -i 214 -a 20 r -t 0.397976 -s 3 -d 8 -p tcp -e 1000 -i 215 -a 20 + -t 0.397976 -s 8 -d 9 -p tcp -e 1000 -i 215 -a 20 r -t 0.398776 -s 3 -d 8 -p tcp -e 1000 -i 216 -a 20 + -t 0.398776 -s 8 -d 9 -p tcp -e 1000 -i 216 -a 20 d -t 0.398776 -s 8 -d 9 -p tcp -e 1000 -i 216 -a 20 r -t 0.398899 -s 9 -d 10 -p tcp -e 1000 -i 144 -a 20 + -t 0.398899 -s 4 -d 10 -p ack -e 40 -i 218 -a 20 - -t 0.398899 -s 4 -d 10 -p ack -e 40 -i 218 -a 20 h -t 0.398899 -s 4 -d 10 -p ack -e 40 -i 218 -a 20 r -t 0.399432 -s 8 -d 9 -p tcp -e 1000 -i 150 -a 20 + -t 0.399432 -s 9 -d 10 -p tcp -e 1000 -i 150 -a 20 - -t 0.399432 -s 9 -d 10 -p tcp -e 1000 -i 150 -a 20 h -t 0.399432 -s 9 -d 10 -p tcp -e 1000 -i 150 -a 20 r -t 0.399509 -s 8 -d 3 -p ack -e 40 -i 193 -a 21 + -t 0.399509 -s 3 -d 8 -p tcp -e 1000 -i 219 -a 21 - -t 0.399509 -s 3 -d 8 -p tcp -e 1000 -i 219 -a 21 h -t 0.399509 -s 3 -d 8 -p tcp -e 1000 -i 219 -a 21 + -t 0.399509 -s 3 -d 8 -p tcp -e 1000 -i 220 -a 21 r -t 0.399752 -s 6 -d 7 -p tcp -e 1000 -i 125 -a 13 + -t 0.399752 -s 7 -d 2 -p tcp -e 1000 -i 125 -a 13 - -t 0.399752 -s 7 -d 2 -p tcp -e 1000 -i 125 -a 13 h -t 0.399752 -s 7 -d 2 -p tcp -e 1000 -i 125 -a 13 r -t 0.399936 -s 6 -d 1 -p ack -e 40 -i 194 -a 12 + -t 0.399936 -s 1 -d 6 -p tcp -e 1000 -i 221 -a 12 - -t 0.399936 -s 1 -d 6 -p tcp -e 1000 -i 221 -a 12 h -t 0.399936 -s 1 -d 6 -p tcp -e 1000 -i 221 -a 12 + -t 0.399936 -s 1 -d 6 -p tcp -e 1000 -i 222 -a 12 + -t 0.4 -s 1 -d 6 -p tcp -e 1000 -i 223 -a 14 + -t 0.4 -s 3 -d 8 -p tcp -e 1000 -i 224 -a 24 - -t 0.400309 -s 3 -d 8 -p tcp -e 1000 -i 220 -a 21 h -t 0.400309 -s 3 -d 8 -p tcp -e 1000 -i 220 -a 21 r -t 0.400584 -s 2 -d 7 -p ack -e 40 -i 217 -a 10 + -t 0.400584 -s 7 -d 6 -p ack -e 40 -i 217 -a 10 - -t 0.400584 -s 7 -d 6 -p ack -e 40 -i 217 -a 10 h -t 0.400584 -s 7 -d 6 -p ack -e 40 -i 217 -a 10 - -t 0.400736 -s 1 -d 6 -p tcp -e 1000 -i 222 -a 12 h -t 0.400736 -s 1 -d 6 -p tcp -e 1000 -i 222 -a 12 - -t 0.400765 -s 8 -d 9 -p tcp -e 1000 -i 174 -a 20 h -t 0.400765 -s 8 -d 9 -p tcp -e 1000 -i 174 -a 20 - -t 0.401109 -s 3 -d 8 -p tcp -e 1000 -i 224 -a 24 h -t 0.401109 -s 3 -d 8 -p tcp -e 1000 -i 224 -a 24 - -t 0.401536 -s 1 -d 6 -p tcp -e 1000 -i 223 -a 14 h -t 0.401536 -s 1 -d 6 -p tcp -e 1000 -i 223 -a 14 r -t 0.40181 -s 9 -d 8 -p ack -e 40 -i 199 -a 21 + -t 0.401811 -s 8 -d 3 -p ack -e 40 -i 199 -a 21 - -t 0.401811 -s 8 -d 3 -p ack -e 40 -i 199 -a 21 h -t 0.401811 -s 8 -d 3 -p ack -e 40 -i 199 -a 21 r -t 0.402931 -s 4 -d 10 -p ack -e 40 -i 218 -a 20 + -t 0.402931 -s 9 -d 8 -p ack -e 40 -i 218 -a 20 - -t 0.402931 -s 9 -d 8 -p ack -e 40 -i 218 -a 20 h -t 0.402931 -s 9 -d 8 -p ack -e 40 -i 218 -a 20 r -t 0.403309 -s 3 -d 8 -p tcp -e 1000 -i 219 -a 21 + -t 0.403309 -s 8 -d 9 -p tcp -e 1000 -i 219 -a 21 r -t 0.403736 -s 1 -d 6 -p tcp -e 1000 -i 221 -a 12 + -t 0.403736 -s 6 -d 7 -p tcp -e 1000 -i 221 -a 12 d -t 0.403736 -s 6 -d 7 -p tcp -e 1000 -i 213 -a 10 - -t 0.403752 -s 6 -d 7 -p tcp -e 1000 -i 161 -a 11 h -t 0.403752 -s 6 -d 7 -p tcp -e 1000 -i 161 -a 11 r -t 0.404109 -s 3 -d 8 -p tcp -e 1000 -i 220 -a 21 + -t 0.404109 -s 8 -d 9 -p tcp -e 1000 -i 220 -a 21 d -t 0.404109 -s 8 -d 9 -p tcp -e 1000 -i 220 -a 21 r -t 0.404232 -s 9 -d 10 -p tcp -e 1000 -i 150 -a 20 + -t 0.404232 -s 4 -d 10 -p ack -e 40 -i 225 -a 20 - -t 0.404232 -s 4 -d 10 -p ack -e 40 -i 225 -a 20 h -t 0.404232 -s 4 -d 10 -p ack -e 40 -i 225 -a 20 r -t 0.404536 -s 1 -d 6 -p tcp -e 1000 -i 222 -a 12 + -t 0.404536 -s 6 -d 7 -p tcp -e 1000 -i 222 -a 12 r -t 0.404552 -s 7 -d 2 -p tcp -e 1000 -i 125 -a 13 + -t 0.404552 -s 2 -d 7 -p ack -e 40 -i 226 -a 13 - -t 0.404552 -s 2 -d 7 -p ack -e 40 -i 226 -a 13 h -t 0.404552 -s 2 -d 7 -p ack -e 40 -i 226 -a 13 r -t 0.404765 -s 8 -d 9 -p tcp -e 1000 -i 155 -a 20 + -t 0.404765 -s 9 -d 10 -p tcp -e 1000 -i 155 -a 20 - -t 0.404765 -s 9 -d 10 -p tcp -e 1000 -i 155 -a 20 h -t 0.404765 -s 9 -d 10 -p tcp -e 1000 -i 155 -a 20 r -t 0.404843 -s 8 -d 3 -p ack -e 40 -i 199 -a 21 r -t 0.404904 -s 7 -d 6 -p ack -e 40 -i 202 -a 10 + -t 0.404904 -s 6 -d 1 -p ack -e 40 -i 202 -a 10 - -t 0.404904 -s 6 -d 1 -p ack -e 40 -i 202 -a 10 h -t 0.404904 -s 6 -d 1 -p ack -e 40 -i 202 -a 10 r -t 0.404909 -s 3 -d 8 -p tcp -e 1000 -i 224 -a 24 + -t 0.404909 -s 8 -d 9 -p tcp -e 1000 -i 224 -a 24 d -t 0.404909 -s 8 -d 9 -p tcp -e 1000 -i 224 -a 24 r -t 0.405336 -s 1 -d 6 -p tcp -e 1000 -i 223 -a 14 + -t 0.405336 -s 6 -d 7 -p tcp -e 1000 -i 223 -a 14 d -t 0.405336 -s 6 -d 7 -p tcp -e 1000 -i 222 -a 12 - -t 0.406099 -s 8 -d 9 -p tcp -e 1000 -i 180 -a 20 h -t 0.406099 -s 8 -d 9 -p tcp -e 1000 -i 180 -a 20 r -t 0.407144 -s 9 -d 8 -p ack -e 40 -i 203 -a 21 + -t 0.407144 -s 8 -d 3 -p ack -e 40 -i 203 -a 21 - -t 0.407144 -s 8 -d 3 -p ack -e 40 -i 203 -a 21 h -t 0.407144 -s 8 -d 3 -p ack -e 40 -i 203 -a 21 r -t 0.407752 -s 6 -d 7 -p tcp -e 1000 -i 132 -a 10 + -t 0.407752 -s 7 -d 2 -p tcp -e 1000 -i 132 -a 10 - -t 0.407752 -s 7 -d 2 -p tcp -e 1000 -i 132 -a 10 h -t 0.407752 -s 7 -d 2 -p tcp -e 1000 -i 132 -a 10 r -t 0.407936 -s 6 -d 1 -p ack -e 40 -i 202 -a 10 + -t 0.407936 -s 1 -d 6 -p tcp -e 1000 -i 227 -a 10 - -t 0.407936 -s 1 -d 6 -p tcp -e 1000 -i 227 -a 10 h -t 0.407936 -s 1 -d 6 -p tcp -e 1000 -i 227 -a 10 + -t 0.407936 -s 1 -d 6 -p tcp -e 1000 -i 228 -a 10 r -t 0.408264 -s 4 -d 10 -p ack -e 40 -i 225 -a 20 + -t 0.408264 -s 9 -d 8 -p ack -e 40 -i 225 -a 20 - -t 0.408264 -s 9 -d 8 -p ack -e 40 -i 225 -a 20 h -t 0.408264 -s 9 -d 8 -p ack -e 40 -i 225 -a 20 r -t 0.408584 -s 2 -d 7 -p ack -e 40 -i 226 -a 13 + -t 0.408584 -s 7 -d 6 -p ack -e 40 -i 226 -a 13 - -t 0.408584 -s 7 -d 6 -p ack -e 40 -i 226 -a 13 h -t 0.408584 -s 7 -d 6 -p ack -e 40 -i 226 -a 13 - -t 0.408736 -s 1 -d 6 -p tcp -e 1000 -i 228 -a 10 h -t 0.408736 -s 1 -d 6 -p tcp -e 1000 -i 228 -a 10 r -t 0.409565 -s 9 -d 10 -p tcp -e 1000 -i 155 -a 20 + -t 0.409565 -s 4 -d 10 -p ack -e 40 -i 229 -a 20 - -t 0.409565 -s 4 -d 10 -p ack -e 40 -i 229 -a 20 h -t 0.409565 -s 4 -d 10 -p ack -e 40 -i 229 -a 20 r -t 0.410098 -s 8 -d 9 -p tcp -e 1000 -i 159 -a 20 + -t 0.410099 -s 9 -d 10 -p tcp -e 1000 -i 159 -a 20 - -t 0.410099 -s 9 -d 10 -p tcp -e 1000 -i 159 -a 20 h -t 0.410099 -s 9 -d 10 -p tcp -e 1000 -i 159 -a 20 r -t 0.410176 -s 8 -d 3 -p ack -e 40 -i 203 -a 21 - -t 0.411432 -s 8 -d 9 -p tcp -e 1000 -i 185 -a 20 h -t 0.411432 -s 8 -d 9 -p tcp -e 1000 -i 185 -a 20 r -t 0.411736 -s 1 -d 6 -p tcp -e 1000 -i 227 -a 10 + -t 0.411736 -s 6 -d 7 -p tcp -e 1000 -i 227 -a 10 d -t 0.411736 -s 6 -d 7 -p tcp -e 1000 -i 227 -a 10 - -t 0.411752 -s 6 -d 7 -p tcp -e 1000 -i 162 -a 11 h -t 0.411752 -s 6 -d 7 -p tcp -e 1000 -i 162 -a 11 r -t 0.412477 -s 9 -d 8 -p ack -e 40 -i 208 -a 21 + -t 0.412477 -s 8 -d 3 -p ack -e 40 -i 208 -a 21 - -t 0.412477 -s 8 -d 3 -p ack -e 40 -i 208 -a 21 h -t 0.412477 -s 8 -d 3 -p ack -e 40 -i 208 -a 21 r -t 0.412536 -s 1 -d 6 -p tcp -e 1000 -i 228 -a 10 + -t 0.412536 -s 6 -d 7 -p tcp -e 1000 -i 228 -a 10 r -t 0.412552 -s 7 -d 2 -p tcp -e 1000 -i 132 -a 10 + -t 0.412552 -s 2 -d 7 -p ack -e 40 -i 230 -a 10 - -t 0.412552 -s 2 -d 7 -p ack -e 40 -i 230 -a 10 h -t 0.412552 -s 2 -d 7 -p ack -e 40 -i 230 -a 10 r -t 0.412904 -s 7 -d 6 -p ack -e 40 -i 209 -a 12 + -t 0.412904 -s 6 -d 1 -p ack -e 40 -i 209 -a 12 - -t 0.412904 -s 6 -d 1 -p ack -e 40 -i 209 -a 12 h -t 0.412904 -s 6 -d 1 -p ack -e 40 -i 209 -a 12 r -t 0.413597 -s 4 -d 10 -p ack -e 40 -i 229 -a 20 + -t 0.413597 -s 9 -d 8 -p ack -e 40 -i 229 -a 20 - -t 0.413597 -s 9 -d 8 -p ack -e 40 -i 229 -a 20 h -t 0.413597 -s 9 -d 8 -p ack -e 40 -i 229 -a 20 r -t 0.414899 -s 9 -d 10 -p tcp -e 1000 -i 159 -a 20 + -t 0.414899 -s 4 -d 10 -p ack -e 40 -i 231 -a 20 - -t 0.414899 -s 4 -d 10 -p ack -e 40 -i 231 -a 20 h -t 0.414899 -s 4 -d 10 -p ack -e 40 -i 231 -a 20 r -t 0.415432 -s 8 -d 9 -p tcp -e 1000 -i 165 -a 20 + -t 0.415432 -s 9 -d 10 -p tcp -e 1000 -i 165 -a 20 - -t 0.415432 -s 9 -d 10 -p tcp -e 1000 -i 165 -a 20 h -t 0.415432 -s 9 -d 10 -p tcp -e 1000 -i 165 -a 20 r -t 0.415509 -s 8 -d 3 -p ack -e 40 -i 208 -a 21 + -t 0.415509 -s 3 -d 8 -p tcp -e 1000 -i 232 -a 21 - -t 0.415509 -s 3 -d 8 -p tcp -e 1000 -i 232 -a 21 h -t 0.415509 -s 3 -d 8 -p tcp -e 1000 -i 232 -a 21 r -t 0.415752 -s 6 -d 7 -p tcp -e 1000 -i 146 -a 11 + -t 0.415752 -s 7 -d 2 -p tcp -e 1000 -i 146 -a 11 - -t 0.415752 -s 7 -d 2 -p tcp -e 1000 -i 146 -a 11 h -t 0.415752 -s 7 -d 2 -p tcp -e 1000 -i 146 -a 11 r -t 0.415936 -s 6 -d 1 -p ack -e 40 -i 209 -a 12 + -t 0.415936 -s 1 -d 6 -p tcp -e 1000 -i 233 -a 12 - -t 0.415936 -s 1 -d 6 -p tcp -e 1000 -i 233 -a 12 h -t 0.415936 -s 1 -d 6 -p tcp -e 1000 -i 233 -a 12 + -t 0.415936 -s 1 -d 6 -p tcp -e 1000 -i 234 -a 12 r -t 0.416584 -s 2 -d 7 -p ack -e 40 -i 230 -a 10 + -t 0.416584 -s 7 -d 6 -p ack -e 40 -i 230 -a 10 - -t 0.416584 -s 7 -d 6 -p ack -e 40 -i 230 -a 10 h -t 0.416584 -s 7 -d 6 -p ack -e 40 -i 230 -a 10 - -t 0.416736 -s 1 -d 6 -p tcp -e 1000 -i 234 -a 12 h -t 0.416736 -s 1 -d 6 -p tcp -e 1000 -i 234 -a 12 - -t 0.416765 -s 8 -d 9 -p tcp -e 1000 -i 189 -a 20 h -t 0.416765 -s 8 -d 9 -p tcp -e 1000 -i 189 -a 20 r -t 0.41781 -s 9 -d 8 -p ack -e 40 -i 214 -a 20 + -t 0.417811 -s 8 -d 3 -p ack -e 40 -i 214 -a 20 - -t 0.417811 -s 8 -d 3 -p ack -e 40 -i 214 -a 20 h -t 0.417811 -s 8 -d 3 -p ack -e 40 -i 214 -a 20 r -t 0.418931 -s 4 -d 10 -p ack -e 40 -i 231 -a 20 + -t 0.418931 -s 9 -d 8 -p ack -e 40 -i 231 -a 20 - -t 0.418931 -s 9 -d 8 -p ack -e 40 -i 231 -a 20 h -t 0.418931 -s 9 -d 8 -p ack -e 40 -i 231 -a 20 r -t 0.419309 -s 3 -d 8 -p tcp -e 1000 -i 232 -a 21 + -t 0.419309 -s 8 -d 9 -p tcp -e 1000 -i 232 -a 21 r -t 0.419736 -s 1 -d 6 -p tcp -e 1000 -i 233 -a 12 + -t 0.419736 -s 6 -d 7 -p tcp -e 1000 -i 233 -a 12 d -t 0.419736 -s 6 -d 7 -p tcp -e 1000 -i 233 -a 12 - -t 0.419752 -s 6 -d 7 -p tcp -e 1000 -i 176 -a 10 h -t 0.419752 -s 6 -d 7 -p tcp -e 1000 -i 176 -a 10 v -t 0.420000 -e take_snapshot r -t 0.420232 -s 9 -d 10 -p tcp -e 1000 -i 165 -a 20 + -t 0.420232 -s 4 -d 10 -p ack -e 40 -i 235 -a 20 - -t 0.420232 -s 4 -d 10 -p ack -e 40 -i 235 -a 20 h -t 0.420232 -s 4 -d 10 -p ack -e 40 -i 235 -a 20 r -t 0.420536 -s 1 -d 6 -p tcp -e 1000 -i 234 -a 12 + -t 0.420536 -s 6 -d 7 -p tcp -e 1000 -i 234 -a 12 r -t 0.420552 -s 7 -d 2 -p tcp -e 1000 -i 146 -a 11 + -t 0.420552 -s 2 -d 7 -p ack -e 40 -i 236 -a 11 - -t 0.420552 -s 2 -d 7 -p ack -e 40 -i 236 -a 11 h -t 0.420552 -s 2 -d 7 -p ack -e 40 -i 236 -a 11 r -t 0.420765 -s 8 -d 9 -p tcp -e 1000 -i 170 -a 20 + -t 0.420765 -s 9 -d 10 -p tcp -e 1000 -i 170 -a 20 - -t 0.420765 -s 9 -d 10 -p tcp -e 1000 -i 170 -a 20 h -t 0.420765 -s 9 -d 10 -p tcp -e 1000 -i 170 -a 20 r -t 0.420843 -s 8 -d 3 -p ack -e 40 -i 214 -a 20 r -t 0.420904 -s 7 -d 6 -p ack -e 40 -i 217 -a 10 + -t 0.420904 -s 6 -d 1 -p ack -e 40 -i 217 -a 10 - -t 0.420904 -s 6 -d 1 -p ack -e 40 -i 217 -a 10 h -t 0.420904 -s 6 -d 1 -p ack -e 40 -i 217 -a 10 - -t 0.422099 -s 8 -d 9 -p tcp -e 1000 -i 195 -a 20 h -t 0.422099 -s 8 -d 9 -p tcp -e 1000 -i 195 -a 20 r -t 0.423144 -s 9 -d 8 -p ack -e 40 -i 218 -a 20 + -t 0.423144 -s 8 -d 3 -p ack -e 40 -i 218 -a 20 - -t 0.423144 -s 8 -d 3 -p ack -e 40 -i 218 -a 20 h -t 0.423144 -s 8 -d 3 -p ack -e 40 -i 218 -a 20 r -t 0.423752 -s 6 -d 7 -p tcp -e 1000 -i 152 -a 10 + -t 0.423752 -s 7 -d 2 -p tcp -e 1000 -i 152 -a 10 - -t 0.423752 -s 7 -d 2 -p tcp -e 1000 -i 152 -a 10 h -t 0.423752 -s 7 -d 2 -p tcp -e 1000 -i 152 -a 10 r -t 0.423936 -s 6 -d 1 -p ack -e 40 -i 217 -a 10 r -t 0.424264 -s 4 -d 10 -p ack -e 40 -i 235 -a 20 + -t 0.424264 -s 9 -d 8 -p ack -e 40 -i 235 -a 20 - -t 0.424264 -s 9 -d 8 -p ack -e 40 -i 235 -a 20 h -t 0.424264 -s 9 -d 8 -p ack -e 40 -i 235 -a 20 r -t 0.424584 -s 2 -d 7 -p ack -e 40 -i 236 -a 11 + -t 0.424584 -s 7 -d 6 -p ack -e 40 -i 236 -a 11 - -t 0.424584 -s 7 -d 6 -p ack -e 40 -i 236 -a 11 h -t 0.424584 -s 7 -d 6 -p ack -e 40 -i 236 -a 11 r -t 0.425565 -s 9 -d 10 -p tcp -e 1000 -i 170 -a 20 + -t 0.425565 -s 4 -d 10 -p ack -e 40 -i 237 -a 20 - -t 0.425565 -s 4 -d 10 -p ack -e 40 -i 237 -a 20 h -t 0.425565 -s 4 -d 10 -p ack -e 40 -i 237 -a 20 r -t 0.426098 -s 8 -d 9 -p tcp -e 1000 -i 174 -a 20 + -t 0.426099 -s 9 -d 10 -p tcp -e 1000 -i 174 -a 20 - -t 0.426099 -s 9 -d 10 -p tcp -e 1000 -i 174 -a 20 h -t 0.426099 -s 9 -d 10 -p tcp -e 1000 -i 174 -a 20 r -t 0.426176 -s 8 -d 3 -p ack -e 40 -i 218 -a 20 - -t 0.427432 -s 8 -d 9 -p tcp -e 1000 -i 200 -a 20 h -t 0.427432 -s 8 -d 9 -p tcp -e 1000 -i 200 -a 20 - -t 0.427752 -s 6 -d 7 -p tcp -e 1000 -i 182 -a 11 h -t 0.427752 -s 6 -d 7 -p tcp -e 1000 -i 182 -a 11 r -t 0.428477 -s 9 -d 8 -p ack -e 40 -i 225 -a 20 + -t 0.428477 -s 8 -d 3 -p ack -e 40 -i 225 -a 20 - -t 0.428477 -s 8 -d 3 -p ack -e 40 -i 225 -a 20 h -t 0.428477 -s 8 -d 3 -p ack -e 40 -i 225 -a 20 r -t 0.428552 -s 7 -d 2 -p tcp -e 1000 -i 152 -a 10 + -t 0.428552 -s 2 -d 7 -p ack -e 40 -i 238 -a 10 - -t 0.428552 -s 2 -d 7 -p ack -e 40 -i 238 -a 10 h -t 0.428552 -s 2 -d 7 -p ack -e 40 -i 238 -a 10 r -t 0.428904 -s 7 -d 6 -p ack -e 40 -i 226 -a 13 + -t 0.428904 -s 6 -d 1 -p ack -e 40 -i 226 -a 13 - -t 0.428904 -s 6 -d 1 -p ack -e 40 -i 226 -a 13 h -t 0.428904 -s 6 -d 1 -p ack -e 40 -i 226 -a 13 r -t 0.429597 -s 4 -d 10 -p ack -e 40 -i 237 -a 20 + -t 0.429597 -s 9 -d 8 -p ack -e 40 -i 237 -a 20 - -t 0.429597 -s 9 -d 8 -p ack -e 40 -i 237 -a 20 h -t 0.429597 -s 9 -d 8 -p ack -e 40 -i 237 -a 20 r -t 0.430899 -s 9 -d 10 -p tcp -e 1000 -i 174 -a 20 + -t 0.430899 -s 4 -d 10 -p ack -e 40 -i 239 -a 20 - -t 0.430899 -s 4 -d 10 -p ack -e 40 -i 239 -a 20 h -t 0.430899 -s 4 -d 10 -p ack -e 40 -i 239 -a 20 r -t 0.431432 -s 8 -d 9 -p tcp -e 1000 -i 180 -a 20 + -t 0.431432 -s 9 -d 10 -p tcp -e 1000 -i 180 -a 20 - -t 0.431432 -s 9 -d 10 -p tcp -e 1000 -i 180 -a 20 h -t 0.431432 -s 9 -d 10 -p tcp -e 1000 -i 180 -a 20 r -t 0.431509 -s 8 -d 3 -p ack -e 40 -i 225 -a 20 + -t 0.431509 -s 3 -d 8 -p tcp -e 1000 -i 240 -a 20 - -t 0.431509 -s 3 -d 8 -p tcp -e 1000 -i 240 -a 20 h -t 0.431509 -s 3 -d 8 -p tcp -e 1000 -i 240 -a 20 r -t 0.431752 -s 6 -d 7 -p tcp -e 1000 -i 161 -a 11 + -t 0.431752 -s 7 -d 2 -p tcp -e 1000 -i 161 -a 11 - -t 0.431752 -s 7 -d 2 -p tcp -e 1000 -i 161 -a 11 h -t 0.431752 -s 7 -d 2 -p tcp -e 1000 -i 161 -a 11 r -t 0.431936 -s 6 -d 1 -p ack -e 40 -i 226 -a 13 + -t 0.431936 -s 1 -d 6 -p tcp -e 1000 -i 241 -a 13 - -t 0.431936 -s 1 -d 6 -p tcp -e 1000 -i 241 -a 13 h -t 0.431936 -s 1 -d 6 -p tcp -e 1000 -i 241 -a 13 + -t 0.431936 -s 1 -d 6 -p tcp -e 1000 -i 242 -a 13 r -t 0.432584 -s 2 -d 7 -p ack -e 40 -i 238 -a 10 + -t 0.432584 -s 7 -d 6 -p ack -e 40 -i 238 -a 10 - -t 0.432584 -s 7 -d 6 -p ack -e 40 -i 238 -a 10 h -t 0.432584 -s 7 -d 6 -p ack -e 40 -i 238 -a 10 - -t 0.432736 -s 1 -d 6 -p tcp -e 1000 -i 242 -a 13 h -t 0.432736 -s 1 -d 6 -p tcp -e 1000 -i 242 -a 13 - -t 0.432765 -s 8 -d 9 -p tcp -e 1000 -i 204 -a 22 h -t 0.432765 -s 8 -d 9 -p tcp -e 1000 -i 204 -a 22 r -t 0.43381 -s 9 -d 8 -p ack -e 40 -i 229 -a 20 + -t 0.433811 -s 8 -d 3 -p ack -e 40 -i 229 -a 20 - -t 0.433811 -s 8 -d 3 -p ack -e 40 -i 229 -a 20 h -t 0.433811 -s 8 -d 3 -p ack -e 40 -i 229 -a 20 r -t 0.434931 -s 4 -d 10 -p ack -e 40 -i 239 -a 20 + -t 0.434931 -s 9 -d 8 -p ack -e 40 -i 239 -a 20 - -t 0.434931 -s 9 -d 8 -p ack -e 40 -i 239 -a 20 h -t 0.434931 -s 9 -d 8 -p ack -e 40 -i 239 -a 20 r -t 0.435309 -s 3 -d 8 -p tcp -e 1000 -i 240 -a 20 + -t 0.435309 -s 8 -d 9 -p tcp -e 1000 -i 240 -a 20 r -t 0.435736 -s 1 -d 6 -p tcp -e 1000 -i 241 -a 13 + -t 0.435736 -s 6 -d 7 -p tcp -e 1000 -i 241 -a 13 - -t 0.435752 -s 6 -d 7 -p tcp -e 1000 -i 191 -a 10 h -t 0.435752 -s 6 -d 7 -p tcp -e 1000 -i 191 -a 10 r -t 0.436232 -s 9 -d 10 -p tcp -e 1000 -i 180 -a 20 + -t 0.436232 -s 4 -d 10 -p ack -e 40 -i 243 -a 20 - -t 0.436232 -s 4 -d 10 -p ack -e 40 -i 243 -a 20 h -t 0.436232 -s 4 -d 10 -p ack -e 40 -i 243 -a 20 r -t 0.436536 -s 1 -d 6 -p tcp -e 1000 -i 242 -a 13 + -t 0.436536 -s 6 -d 7 -p tcp -e 1000 -i 242 -a 13 r -t 0.436552 -s 7 -d 2 -p tcp -e 1000 -i 161 -a 11 + -t 0.436552 -s 2 -d 7 -p ack -e 40 -i 244 -a 11 - -t 0.436552 -s 2 -d 7 -p ack -e 40 -i 244 -a 11 h -t 0.436552 -s 2 -d 7 -p ack -e 40 -i 244 -a 11 r -t 0.436765 -s 8 -d 9 -p tcp -e 1000 -i 185 -a 20 + -t 0.436765 -s 9 -d 10 -p tcp -e 1000 -i 185 -a 20 - -t 0.436765 -s 9 -d 10 -p tcp -e 1000 -i 185 -a 20 h -t 0.436765 -s 9 -d 10 -p tcp -e 1000 -i 185 -a 20 r -t 0.436843 -s 8 -d 3 -p ack -e 40 -i 229 -a 20 r -t 0.436904 -s 7 -d 6 -p ack -e 40 -i 230 -a 10 + -t 0.436904 -s 6 -d 1 -p ack -e 40 -i 230 -a 10 - -t 0.436904 -s 6 -d 1 -p ack -e 40 -i 230 -a 10 h -t 0.436904 -s 6 -d 1 -p ack -e 40 -i 230 -a 10 - -t 0.438099 -s 8 -d 9 -p tcp -e 1000 -i 210 -a 20 h -t 0.438099 -s 8 -d 9 -p tcp -e 1000 -i 210 -a 20 r -t 0.439144 -s 9 -d 8 -p ack -e 40 -i 231 -a 20 + -t 0.439144 -s 8 -d 3 -p ack -e 40 -i 231 -a 20 - -t 0.439144 -s 8 -d 3 -p ack -e 40 -i 231 -a 20 h -t 0.439144 -s 8 -d 3 -p ack -e 40 -i 231 -a 20 r -t 0.439752 -s 6 -d 7 -p tcp -e 1000 -i 162 -a 11 + -t 0.439752 -s 7 -d 2 -p tcp -e 1000 -i 162 -a 11 - -t 0.439752 -s 7 -d 2 -p tcp -e 1000 -i 162 -a 11 h -t 0.439752 -s 7 -d 2 -p tcp -e 1000 -i 162 -a 11 r -t 0.439936 -s 6 -d 1 -p ack -e 40 -i 230 -a 10 r -t 0.440264 -s 4 -d 10 -p ack -e 40 -i 243 -a 20 + -t 0.440264 -s 9 -d 8 -p ack -e 40 -i 243 -a 20 - -t 0.440264 -s 9 -d 8 -p ack -e 40 -i 243 -a 20 h -t 0.440264 -s 9 -d 8 -p ack -e 40 -i 243 -a 20 r -t 0.440584 -s 2 -d 7 -p ack -e 40 -i 244 -a 11 + -t 0.440584 -s 7 -d 6 -p ack -e 40 -i 244 -a 11 - -t 0.440584 -s 7 -d 6 -p ack -e 40 -i 244 -a 11 h -t 0.440584 -s 7 -d 6 -p ack -e 40 -i 244 -a 11 r -t 0.441565 -s 9 -d 10 -p tcp -e 1000 -i 185 -a 20 + -t 0.441565 -s 4 -d 10 -p ack -e 40 -i 245 -a 20 - -t 0.441565 -s 4 -d 10 -p ack -e 40 -i 245 -a 20 h -t 0.441565 -s 4 -d 10 -p ack -e 40 -i 245 -a 20 r -t 0.442098 -s 8 -d 9 -p tcp -e 1000 -i 189 -a 20 + -t 0.442099 -s 9 -d 10 -p tcp -e 1000 -i 189 -a 20 - -t 0.442099 -s 9 -d 10 -p tcp -e 1000 -i 189 -a 20 h -t 0.442099 -s 9 -d 10 -p tcp -e 1000 -i 189 -a 20 r -t 0.442176 -s 8 -d 3 -p ack -e 40 -i 231 -a 20 - -t 0.443432 -s 8 -d 9 -p tcp -e 1000 -i 215 -a 20 h -t 0.443432 -s 8 -d 9 -p tcp -e 1000 -i 215 -a 20 - -t 0.443752 -s 6 -d 7 -p tcp -e 1000 -i 192 -a 10 h -t 0.443752 -s 6 -d 7 -p tcp -e 1000 -i 192 -a 10 r -t 0.444477 -s 9 -d 8 -p ack -e 40 -i 235 -a 20 + -t 0.444477 -s 8 -d 3 -p ack -e 40 -i 235 -a 20 - -t 0.444477 -s 8 -d 3 -p ack -e 40 -i 235 -a 20 h -t 0.444477 -s 8 -d 3 -p ack -e 40 -i 235 -a 20 r -t 0.444552 -s 7 -d 2 -p tcp -e 1000 -i 162 -a 11 + -t 0.444552 -s 2 -d 7 -p ack -e 40 -i 246 -a 11 - -t 0.444552 -s 2 -d 7 -p ack -e 40 -i 246 -a 11 h -t 0.444552 -s 2 -d 7 -p ack -e 40 -i 246 -a 11 r -t 0.444904 -s 7 -d 6 -p ack -e 40 -i 236 -a 11 + -t 0.444904 -s 6 -d 1 -p ack -e 40 -i 236 -a 11 - -t 0.444904 -s 6 -d 1 -p ack -e 40 -i 236 -a 11 h -t 0.444904 -s 6 -d 1 -p ack -e 40 -i 236 -a 11 r -t 0.445597 -s 4 -d 10 -p ack -e 40 -i 245 -a 20 + -t 0.445597 -s 9 -d 8 -p ack -e 40 -i 245 -a 20 - -t 0.445597 -s 9 -d 8 -p ack -e 40 -i 245 -a 20 h -t 0.445597 -s 9 -d 8 -p ack -e 40 -i 245 -a 20 r -t 0.446899 -s 9 -d 10 -p tcp -e 1000 -i 189 -a 20 + -t 0.446899 -s 4 -d 10 -p ack -e 40 -i 247 -a 20 - -t 0.446899 -s 4 -d 10 -p ack -e 40 -i 247 -a 20 h -t 0.446899 -s 4 -d 10 -p ack -e 40 -i 247 -a 20 r -t 0.447432 -s 8 -d 9 -p tcp -e 1000 -i 195 -a 20 + -t 0.447432 -s 9 -d 10 -p tcp -e 1000 -i 195 -a 20 - -t 0.447432 -s 9 -d 10 -p tcp -e 1000 -i 195 -a 20 h -t 0.447432 -s 9 -d 10 -p tcp -e 1000 -i 195 -a 20 r -t 0.447509 -s 8 -d 3 -p ack -e 40 -i 235 -a 20 r -t 0.447752 -s 6 -d 7 -p tcp -e 1000 -i 176 -a 10 + -t 0.447752 -s 7 -d 2 -p tcp -e 1000 -i 176 -a 10 - -t 0.447752 -s 7 -d 2 -p tcp -e 1000 -i 176 -a 10 h -t 0.447752 -s 7 -d 2 -p tcp -e 1000 -i 176 -a 10 r -t 0.447936 -s 6 -d 1 -p ack -e 40 -i 236 -a 11 + -t 0.447936 -s 1 -d 6 -p tcp -e 1000 -i 248 -a 11 - -t 0.447936 -s 1 -d 6 -p tcp -e 1000 -i 248 -a 11 h -t 0.447936 -s 1 -d 6 -p tcp -e 1000 -i 248 -a 11 + -t 0.447936 -s 1 -d 6 -p tcp -e 1000 -i 249 -a 11 r -t 0.448584 -s 2 -d 7 -p ack -e 40 -i 246 -a 11 + -t 0.448584 -s 7 -d 6 -p ack -e 40 -i 246 -a 11 - -t 0.448584 -s 7 -d 6 -p ack -e 40 -i 246 -a 11 h -t 0.448584 -s 7 -d 6 -p ack -e 40 -i 246 -a 11 - -t 0.448736 -s 1 -d 6 -p tcp -e 1000 -i 249 -a 11 h -t 0.448736 -s 1 -d 6 -p tcp -e 1000 -i 249 -a 11 - -t 0.448765 -s 8 -d 9 -p tcp -e 1000 -i 219 -a 21 h -t 0.448765 -s 8 -d 9 -p tcp -e 1000 -i 219 -a 21 r -t 0.44981 -s 9 -d 8 -p ack -e 40 -i 237 -a 20 + -t 0.449811 -s 8 -d 3 -p ack -e 40 -i 237 -a 20 - -t 0.449811 -s 8 -d 3 -p ack -e 40 -i 237 -a 20 h -t 0.449811 -s 8 -d 3 -p ack -e 40 -i 237 -a 20 r -t 0.450931 -s 4 -d 10 -p ack -e 40 -i 247 -a 20 + -t 0.450931 -s 9 -d 8 -p ack -e 40 -i 247 -a 20 - -t 0.450931 -s 9 -d 8 -p ack -e 40 -i 247 -a 20 h -t 0.450931 -s 9 -d 8 -p ack -e 40 -i 247 -a 20 r -t 0.451736 -s 1 -d 6 -p tcp -e 1000 -i 248 -a 11 + -t 0.451736 -s 6 -d 7 -p tcp -e 1000 -i 248 -a 11 - -t 0.451752 -s 6 -d 7 -p tcp -e 1000 -i 198 -a 10 h -t 0.451752 -s 6 -d 7 -p tcp -e 1000 -i 198 -a 10 r -t 0.452232 -s 9 -d 10 -p tcp -e 1000 -i 195 -a 20 + -t 0.452232 -s 4 -d 10 -p ack -e 40 -i 250 -a 20 - -t 0.452232 -s 4 -d 10 -p ack -e 40 -i 250 -a 20 h -t 0.452232 -s 4 -d 10 -p ack -e 40 -i 250 -a 20 r -t 0.452536 -s 1 -d 6 -p tcp -e 1000 -i 249 -a 11 + -t 0.452536 -s 6 -d 7 -p tcp -e 1000 -i 249 -a 11 r -t 0.452552 -s 7 -d 2 -p tcp -e 1000 -i 176 -a 10 + -t 0.452552 -s 2 -d 7 -p ack -e 40 -i 251 -a 10 - -t 0.452552 -s 2 -d 7 -p ack -e 40 -i 251 -a 10 h -t 0.452552 -s 2 -d 7 -p ack -e 40 -i 251 -a 10 r -t 0.452765 -s 8 -d 9 -p tcp -e 1000 -i 200 -a 20 + -t 0.452765 -s 9 -d 10 -p tcp -e 1000 -i 200 -a 20 - -t 0.452765 -s 9 -d 10 -p tcp -e 1000 -i 200 -a 20 h -t 0.452765 -s 9 -d 10 -p tcp -e 1000 -i 200 -a 20 r -t 0.452843 -s 8 -d 3 -p ack -e 40 -i 237 -a 20 r -t 0.452904 -s 7 -d 6 -p ack -e 40 -i 238 -a 10 + -t 0.452904 -s 6 -d 1 -p ack -e 40 -i 238 -a 10 - -t 0.452904 -s 6 -d 1 -p ack -e 40 -i 238 -a 10 h -t 0.452904 -s 6 -d 1 -p ack -e 40 -i 238 -a 10 - -t 0.454099 -s 8 -d 9 -p tcp -e 1000 -i 240 -a 20 h -t 0.454099 -s 8 -d 9 -p tcp -e 1000 -i 240 -a 20 r -t 0.455144 -s 9 -d 8 -p ack -e 40 -i 239 -a 20 + -t 0.455144 -s 8 -d 3 -p ack -e 40 -i 239 -a 20 - -t 0.455144 -s 8 -d 3 -p ack -e 40 -i 239 -a 20 h -t 0.455144 -s 8 -d 3 -p ack -e 40 -i 239 -a 20 r -t 0.455752 -s 6 -d 7 -p tcp -e 1000 -i 182 -a 11 + -t 0.455752 -s 7 -d 2 -p tcp -e 1000 -i 182 -a 11 - -t 0.455752 -s 7 -d 2 -p tcp -e 1000 -i 182 -a 11 h -t 0.455752 -s 7 -d 2 -p tcp -e 1000 -i 182 -a 11 r -t 0.455936 -s 6 -d 1 -p ack -e 40 -i 238 -a 10 + -t 0.455936 -s 1 -d 6 -p tcp -e 1000 -i 252 -a 10 - -t 0.455936 -s 1 -d 6 -p tcp -e 1000 -i 252 -a 10 h -t 0.455936 -s 1 -d 6 -p tcp -e 1000 -i 252 -a 10 r -t 0.456264 -s 4 -d 10 -p ack -e 40 -i 250 -a 20 + -t 0.456264 -s 9 -d 8 -p ack -e 40 -i 250 -a 20 - -t 0.456264 -s 9 -d 8 -p ack -e 40 -i 250 -a 20 h -t 0.456264 -s 9 -d 8 -p ack -e 40 -i 250 -a 20 r -t 0.456584 -s 2 -d 7 -p ack -e 40 -i 251 -a 10 + -t 0.456584 -s 7 -d 6 -p ack -e 40 -i 251 -a 10 - -t 0.456584 -s 7 -d 6 -p ack -e 40 -i 251 -a 10 h -t 0.456584 -s 7 -d 6 -p ack -e 40 -i 251 -a 10 r -t 0.457565 -s 9 -d 10 -p tcp -e 1000 -i 200 -a 20 + -t 0.457565 -s 4 -d 10 -p ack -e 40 -i 253 -a 20 - -t 0.457565 -s 4 -d 10 -p ack -e 40 -i 253 -a 20 h -t 0.457565 -s 4 -d 10 -p ack -e 40 -i 253 -a 20 r -t 0.458098 -s 8 -d 9 -p tcp -e 1000 -i 204 -a 22 + -t 0.458099 -s 9 -d 10 -p tcp -e 1000 -i 204 -a 22 - -t 0.458099 -s 9 -d 10 -p tcp -e 1000 -i 204 -a 22 h -t 0.458099 -s 9 -d 10 -p tcp -e 1000 -i 204 -a 22 r -t 0.458176 -s 8 -d 3 -p ack -e 40 -i 239 -a 20 - -t 0.459432 -s 8 -d 9 -p tcp -e 1000 -i 232 -a 21 h -t 0.459432 -s 8 -d 9 -p tcp -e 1000 -i 232 -a 21 r -t 0.459736 -s 1 -d 6 -p tcp -e 1000 -i 252 -a 10 + -t 0.459736 -s 6 -d 7 -p tcp -e 1000 -i 252 -a 10 d -t 0.459736 -s 6 -d 7 -p tcp -e 1000 -i 252 -a 10 - -t 0.459752 -s 6 -d 7 -p tcp -e 1000 -i 207 -a 10 h -t 0.459752 -s 6 -d 7 -p tcp -e 1000 -i 207 -a 10 r -t 0.460477 -s 9 -d 8 -p ack -e 40 -i 243 -a 20 + -t 0.460477 -s 8 -d 3 -p ack -e 40 -i 243 -a 20 - -t 0.460477 -s 8 -d 3 -p ack -e 40 -i 243 -a 20 h -t 0.460477 -s 8 -d 3 -p ack -e 40 -i 243 -a 20 r -t 0.460552 -s 7 -d 2 -p tcp -e 1000 -i 182 -a 11 + -t 0.460552 -s 2 -d 7 -p ack -e 40 -i 254 -a 11 - -t 0.460552 -s 2 -d 7 -p ack -e 40 -i 254 -a 11 h -t 0.460552 -s 2 -d 7 -p ack -e 40 -i 254 -a 11 r -t 0.460904 -s 7 -d 6 -p ack -e 40 -i 244 -a 11 + -t 0.460904 -s 6 -d 1 -p ack -e 40 -i 244 -a 11 - -t 0.460904 -s 6 -d 1 -p ack -e 40 -i 244 -a 11 h -t 0.460904 -s 6 -d 1 -p ack -e 40 -i 244 -a 11 r -t 0.461597 -s 4 -d 10 -p ack -e 40 -i 253 -a 20 + -t 0.461597 -s 9 -d 8 -p ack -e 40 -i 253 -a 20 - -t 0.461597 -s 9 -d 8 -p ack -e 40 -i 253 -a 20 h -t 0.461597 -s 9 -d 8 -p ack -e 40 -i 253 -a 20 r -t 0.462899 -s 9 -d 10 -p tcp -e 1000 -i 204 -a 22 + -t 0.462899 -s 4 -d 10 -p ack -e 40 -i 255 -a 22 - -t 0.462899 -s 4 -d 10 -p ack -e 40 -i 255 -a 22 h -t 0.462899 -s 4 -d 10 -p ack -e 40 -i 255 -a 22 r -t 0.463432 -s 8 -d 9 -p tcp -e 1000 -i 210 -a 20 + -t 0.463432 -s 9 -d 10 -p tcp -e 1000 -i 210 -a 20 - -t 0.463432 -s 9 -d 10 -p tcp -e 1000 -i 210 -a 20 h -t 0.463432 -s 9 -d 10 -p tcp -e 1000 -i 210 -a 20 r -t 0.463509 -s 8 -d 3 -p ack -e 40 -i 243 -a 20 r -t 0.463752 -s 6 -d 7 -p tcp -e 1000 -i 191 -a 10 + -t 0.463752 -s 7 -d 2 -p tcp -e 1000 -i 191 -a 10 - -t 0.463752 -s 7 -d 2 -p tcp -e 1000 -i 191 -a 10 h -t 0.463752 -s 7 -d 2 -p tcp -e 1000 -i 191 -a 10 r -t 0.463936 -s 6 -d 1 -p ack -e 40 -i 244 -a 11 r -t 0.464584 -s 2 -d 7 -p ack -e 40 -i 254 -a 11 + -t 0.464584 -s 7 -d 6 -p ack -e 40 -i 254 -a 11 - -t 0.464584 -s 7 -d 6 -p ack -e 40 -i 254 -a 11 h -t 0.464584 -s 7 -d 6 -p ack -e 40 -i 254 -a 11 r -t 0.46581 -s 9 -d 8 -p ack -e 40 -i 245 -a 20 + -t 0.465811 -s 8 -d 3 -p ack -e 40 -i 245 -a 20 - -t 0.465811 -s 8 -d 3 -p ack -e 40 -i 245 -a 20 h -t 0.465811 -s 8 -d 3 -p ack -e 40 -i 245 -a 20 r -t 0.466931 -s 4 -d 10 -p ack -e 40 -i 255 -a 22 + -t 0.466931 -s 9 -d 8 -p ack -e 40 -i 255 -a 22 - -t 0.466931 -s 9 -d 8 -p ack -e 40 -i 255 -a 22 h -t 0.466931 -s 9 -d 8 -p ack -e 40 -i 255 -a 22 - -t 0.467752 -s 6 -d 7 -p tcp -e 1000 -i 221 -a 12 h -t 0.467752 -s 6 -d 7 -p tcp -e 1000 -i 221 -a 12 r -t 0.468232 -s 9 -d 10 -p tcp -e 1000 -i 210 -a 20 + -t 0.468232 -s 4 -d 10 -p ack -e 40 -i 256 -a 20 - -t 0.468232 -s 4 -d 10 -p ack -e 40 -i 256 -a 20 h -t 0.468232 -s 4 -d 10 -p ack -e 40 -i 256 -a 20 r -t 0.468552 -s 7 -d 2 -p tcp -e 1000 -i 191 -a 10 + -t 0.468552 -s 2 -d 7 -p ack -e 40 -i 257 -a 10 - -t 0.468552 -s 2 -d 7 -p ack -e 40 -i 257 -a 10 h -t 0.468552 -s 2 -d 7 -p ack -e 40 -i 257 -a 10 r -t 0.468765 -s 8 -d 9 -p tcp -e 1000 -i 215 -a 20 + -t 0.468765 -s 9 -d 10 -p tcp -e 1000 -i 215 -a 20 - -t 0.468765 -s 9 -d 10 -p tcp -e 1000 -i 215 -a 20 h -t 0.468765 -s 9 -d 10 -p tcp -e 1000 -i 215 -a 20 r -t 0.468843 -s 8 -d 3 -p ack -e 40 -i 245 -a 20 r -t 0.468904 -s 7 -d 6 -p ack -e 40 -i 246 -a 11 + -t 0.468904 -s 6 -d 1 -p ack -e 40 -i 246 -a 11 - -t 0.468904 -s 6 -d 1 -p ack -e 40 -i 246 -a 11 h -t 0.468904 -s 6 -d 1 -p ack -e 40 -i 246 -a 11 r -t 0.471144 -s 9 -d 8 -p ack -e 40 -i 247 -a 20 + -t 0.471144 -s 8 -d 3 -p ack -e 40 -i 247 -a 20 - -t 0.471144 -s 8 -d 3 -p ack -e 40 -i 247 -a 20 h -t 0.471144 -s 8 -d 3 -p ack -e 40 -i 247 -a 20 r -t 0.471752 -s 6 -d 7 -p tcp -e 1000 -i 192 -a 10 + -t 0.471752 -s 7 -d 2 -p tcp -e 1000 -i 192 -a 10 - -t 0.471752 -s 7 -d 2 -p tcp -e 1000 -i 192 -a 10 h -t 0.471752 -s 7 -d 2 -p tcp -e 1000 -i 192 -a 10 r -t 0.471936 -s 6 -d 1 -p ack -e 40 -i 246 -a 11 r -t 0.472264 -s 4 -d 10 -p ack -e 40 -i 256 -a 20 + -t 0.472264 -s 9 -d 8 -p ack -e 40 -i 256 -a 20 - -t 0.472264 -s 9 -d 8 -p ack -e 40 -i 256 -a 20 h -t 0.472264 -s 9 -d 8 -p ack -e 40 -i 256 -a 20 r -t 0.472584 -s 2 -d 7 -p ack -e 40 -i 257 -a 10 + -t 0.472584 -s 7 -d 6 -p ack -e 40 -i 257 -a 10 - -t 0.472584 -s 7 -d 6 -p ack -e 40 -i 257 -a 10 h -t 0.472584 -s 7 -d 6 -p ack -e 40 -i 257 -a 10 r -t 0.473565 -s 9 -d 10 -p tcp -e 1000 -i 215 -a 20 + -t 0.473565 -s 4 -d 10 -p ack -e 40 -i 258 -a 20 - -t 0.473565 -s 4 -d 10 -p ack -e 40 -i 258 -a 20 h -t 0.473565 -s 4 -d 10 -p ack -e 40 -i 258 -a 20 r -t 0.474098 -s 8 -d 9 -p tcp -e 1000 -i 219 -a 21 + -t 0.474099 -s 9 -d 10 -p tcp -e 1000 -i 219 -a 21 - -t 0.474099 -s 9 -d 10 -p tcp -e 1000 -i 219 -a 21 h -t 0.474099 -s 9 -d 10 -p tcp -e 1000 -i 219 -a 21 r -t 0.474176 -s 8 -d 3 -p ack -e 40 -i 247 -a 20 - -t 0.475752 -s 6 -d 7 -p tcp -e 1000 -i 223 -a 14 h -t 0.475752 -s 6 -d 7 -p tcp -e 1000 -i 223 -a 14 r -t 0.476477 -s 9 -d 8 -p ack -e 40 -i 250 -a 20 + -t 0.476477 -s 8 -d 3 -p ack -e 40 -i 250 -a 20 - -t 0.476477 -s 8 -d 3 -p ack -e 40 -i 250 -a 20 h -t 0.476477 -s 8 -d 3 -p ack -e 40 -i 250 -a 20 r -t 0.476552 -s 7 -d 2 -p tcp -e 1000 -i 192 -a 10 + -t 0.476552 -s 2 -d 7 -p ack -e 40 -i 259 -a 10 - -t 0.476552 -s 2 -d 7 -p ack -e 40 -i 259 -a 10 h -t 0.476552 -s 2 -d 7 -p ack -e 40 -i 259 -a 10 r -t 0.476904 -s 7 -d 6 -p ack -e 40 -i 251 -a 10 + -t 0.476904 -s 6 -d 1 -p ack -e 40 -i 251 -a 10 - -t 0.476904 -s 6 -d 1 -p ack -e 40 -i 251 -a 10 h -t 0.476904 -s 6 -d 1 -p ack -e 40 -i 251 -a 10 r -t 0.477597 -s 4 -d 10 -p ack -e 40 -i 258 -a 20 + -t 0.477597 -s 9 -d 8 -p ack -e 40 -i 258 -a 20 - -t 0.477597 -s 9 -d 8 -p ack -e 40 -i 258 -a 20 h -t 0.477597 -s 9 -d 8 -p ack -e 40 -i 258 -a 20 r -t 0.478899 -s 9 -d 10 -p tcp -e 1000 -i 219 -a 21 + -t 0.478899 -s 4 -d 10 -p ack -e 40 -i 260 -a 21 - -t 0.478899 -s 4 -d 10 -p ack -e 40 -i 260 -a 21 h -t 0.478899 -s 4 -d 10 -p ack -e 40 -i 260 -a 21 r -t 0.479432 -s 8 -d 9 -p tcp -e 1000 -i 240 -a 20 + -t 0.479432 -s 9 -d 10 -p tcp -e 1000 -i 240 -a 20 - -t 0.479432 -s 9 -d 10 -p tcp -e 1000 -i 240 -a 20 h -t 0.479432 -s 9 -d 10 -p tcp -e 1000 -i 240 -a 20 r -t 0.479509 -s 8 -d 3 -p ack -e 40 -i 250 -a 20 r -t 0.479752 -s 6 -d 7 -p tcp -e 1000 -i 198 -a 10 + -t 0.479752 -s 7 -d 2 -p tcp -e 1000 -i 198 -a 10 - -t 0.479752 -s 7 -d 2 -p tcp -e 1000 -i 198 -a 10 h -t 0.479752 -s 7 -d 2 -p tcp -e 1000 -i 198 -a 10 r -t 0.479936 -s 6 -d 1 -p ack -e 40 -i 251 -a 10 r -t 0.480584 -s 2 -d 7 -p ack -e 40 -i 259 -a 10 + -t 0.480584 -s 7 -d 6 -p ack -e 40 -i 259 -a 10 - -t 0.480584 -s 7 -d 6 -p ack -e 40 -i 259 -a 10 h -t 0.480584 -s 7 -d 6 -p ack -e 40 -i 259 -a 10 r -t 0.48181 -s 9 -d 8 -p ack -e 40 -i 253 -a 20 + -t 0.481811 -s 8 -d 3 -p ack -e 40 -i 253 -a 20 - -t 0.481811 -s 8 -d 3 -p ack -e 40 -i 253 -a 20 h -t 0.481811 -s 8 -d 3 -p ack -e 40 -i 253 -a 20 r -t 0.482931 -s 4 -d 10 -p ack -e 40 -i 260 -a 21 + -t 0.482931 -s 9 -d 8 -p ack -e 40 -i 260 -a 21 - -t 0.482931 -s 9 -d 8 -p ack -e 40 -i 260 -a 21 h -t 0.482931 -s 9 -d 8 -p ack -e 40 -i 260 -a 21 - -t 0.483752 -s 6 -d 7 -p tcp -e 1000 -i 228 -a 10 h -t 0.483752 -s 6 -d 7 -p tcp -e 1000 -i 228 -a 10 r -t 0.484232 -s 9 -d 10 -p tcp -e 1000 -i 240 -a 20 + -t 0.484232 -s 4 -d 10 -p ack -e 40 -i 261 -a 20 - -t 0.484232 -s 4 -d 10 -p ack -e 40 -i 261 -a 20 h -t 0.484232 -s 4 -d 10 -p ack -e 40 -i 261 -a 20 r -t 0.484552 -s 7 -d 2 -p tcp -e 1000 -i 198 -a 10 + -t 0.484552 -s 2 -d 7 -p ack -e 40 -i 262 -a 10 - -t 0.484552 -s 2 -d 7 -p ack -e 40 -i 262 -a 10 h -t 0.484552 -s 2 -d 7 -p ack -e 40 -i 262 -a 10 r -t 0.484765 -s 8 -d 9 -p tcp -e 1000 -i 232 -a 21 + -t 0.484765 -s 9 -d 10 -p tcp -e 1000 -i 232 -a 21 - -t 0.484765 -s 9 -d 10 -p tcp -e 1000 -i 232 -a 21 h -t 0.484765 -s 9 -d 10 -p tcp -e 1000 -i 232 -a 21 r -t 0.484843 -s 8 -d 3 -p ack -e 40 -i 253 -a 20 r -t 0.484904 -s 7 -d 6 -p ack -e 40 -i 254 -a 11 + -t 0.484904 -s 6 -d 1 -p ack -e 40 -i 254 -a 11 - -t 0.484904 -s 6 -d 1 -p ack -e 40 -i 254 -a 11 h -t 0.484904 -s 6 -d 1 -p ack -e 40 -i 254 -a 11 r -t 0.487144 -s 9 -d 8 -p ack -e 40 -i 255 -a 22 + -t 0.487144 -s 8 -d 3 -p ack -e 40 -i 255 -a 22 - -t 0.487144 -s 8 -d 3 -p ack -e 40 -i 255 -a 22 h -t 0.487144 -s 8 -d 3 -p ack -e 40 -i 255 -a 22 r -t 0.487752 -s 6 -d 7 -p tcp -e 1000 -i 207 -a 10 + -t 0.487752 -s 7 -d 2 -p tcp -e 1000 -i 207 -a 10 - -t 0.487752 -s 7 -d 2 -p tcp -e 1000 -i 207 -a 10 h -t 0.487752 -s 7 -d 2 -p tcp -e 1000 -i 207 -a 10 r -t 0.487936 -s 6 -d 1 -p ack -e 40 -i 254 -a 11 + -t 0.487936 -s 1 -d 6 -p tcp -e 1000 -i 263 -a 11 - -t 0.487936 -s 1 -d 6 -p tcp -e 1000 -i 263 -a 11 h -t 0.487936 -s 1 -d 6 -p tcp -e 1000 -i 263 -a 11 r -t 0.488264 -s 4 -d 10 -p ack -e 40 -i 261 -a 20 + -t 0.488264 -s 9 -d 8 -p ack -e 40 -i 261 -a 20 - -t 0.488264 -s 9 -d 8 -p ack -e 40 -i 261 -a 20 h -t 0.488264 -s 9 -d 8 -p ack -e 40 -i 261 -a 20 r -t 0.488584 -s 2 -d 7 -p ack -e 40 -i 262 -a 10 + -t 0.488584 -s 7 -d 6 -p ack -e 40 -i 262 -a 10 - -t 0.488584 -s 7 -d 6 -p ack -e 40 -i 262 -a 10 h -t 0.488584 -s 7 -d 6 -p ack -e 40 -i 262 -a 10 r -t 0.489565 -s 9 -d 10 -p tcp -e 1000 -i 232 -a 21 + -t 0.489565 -s 4 -d 10 -p ack -e 40 -i 264 -a 21 - -t 0.489565 -s 4 -d 10 -p ack -e 40 -i 264 -a 21 h -t 0.489565 -s 4 -d 10 -p ack -e 40 -i 264 -a 21 r -t 0.490176 -s 8 -d 3 -p ack -e 40 -i 255 -a 22 r -t 0.491736 -s 1 -d 6 -p tcp -e 1000 -i 263 -a 11 + -t 0.491736 -s 6 -d 7 -p tcp -e 1000 -i 263 -a 11 - -t 0.491752 -s 6 -d 7 -p tcp -e 1000 -i 234 -a 12 h -t 0.491752 -s 6 -d 7 -p tcp -e 1000 -i 234 -a 12 r -t 0.492477 -s 9 -d 8 -p ack -e 40 -i 256 -a 20 + -t 0.492477 -s 8 -d 3 -p ack -e 40 -i 256 -a 20 - -t 0.492477 -s 8 -d 3 -p ack -e 40 -i 256 -a 20 h -t 0.492477 -s 8 -d 3 -p ack -e 40 -i 256 -a 20 r -t 0.492552 -s 7 -d 2 -p tcp -e 1000 -i 207 -a 10 + -t 0.492552 -s 2 -d 7 -p ack -e 40 -i 265 -a 10 - -t 0.492552 -s 2 -d 7 -p ack -e 40 -i 265 -a 10 h -t 0.492552 -s 2 -d 7 -p ack -e 40 -i 265 -a 10 r -t 0.492904 -s 7 -d 6 -p ack -e 40 -i 257 -a 10 + -t 0.492904 -s 6 -d 1 -p ack -e 40 -i 257 -a 10 - -t 0.492904 -s 6 -d 1 -p ack -e 40 -i 257 -a 10 h -t 0.492904 -s 6 -d 1 -p ack -e 40 -i 257 -a 10 r -t 0.493597 -s 4 -d 10 -p ack -e 40 -i 264 -a 21 + -t 0.493597 -s 9 -d 8 -p ack -e 40 -i 264 -a 21 - -t 0.493597 -s 9 -d 8 -p ack -e 40 -i 264 -a 21 h -t 0.493597 -s 9 -d 8 -p ack -e 40 -i 264 -a 21 r -t 0.495509 -s 8 -d 3 -p ack -e 40 -i 256 -a 20 r -t 0.495752 -s 6 -d 7 -p tcp -e 1000 -i 221 -a 12 + -t 0.495752 -s 7 -d 2 -p tcp -e 1000 -i 221 -a 12 - -t 0.495752 -s 7 -d 2 -p tcp -e 1000 -i 221 -a 12 h -t 0.495752 -s 7 -d 2 -p tcp -e 1000 -i 221 -a 12 r -t 0.495936 -s 6 -d 1 -p ack -e 40 -i 257 -a 10 r -t 0.496584 -s 2 -d 7 -p ack -e 40 -i 265 -a 10 + -t 0.496584 -s 7 -d 6 -p ack -e 40 -i 265 -a 10 - -t 0.496584 -s 7 -d 6 -p ack -e 40 -i 265 -a 10 h -t 0.496584 -s 7 -d 6 -p ack -e 40 -i 265 -a 10 r -t 0.49781 -s 9 -d 8 -p ack -e 40 -i 258 -a 20 + -t 0.497811 -s 8 -d 3 -p ack -e 40 -i 258 -a 20 - -t 0.497811 -s 8 -d 3 -p ack -e 40 -i 258 -a 20 h -t 0.497811 -s 8 -d 3 -p ack -e 40 -i 258 -a 20 - -t 0.499752 -s 6 -d 7 -p tcp -e 1000 -i 241 -a 13 h -t 0.499752 -s 6 -d 7 -p tcp -e 1000 -i 241 -a 13 r -t 0.500552 -s 7 -d 2 -p tcp -e 1000 -i 221 -a 12 + -t 0.500552 -s 2 -d 7 -p ack -e 40 -i 266 -a 12 - -t 0.500552 -s 2 -d 7 -p ack -e 40 -i 266 -a 12 h -t 0.500552 -s 2 -d 7 -p ack -e 40 -i 266 -a 12 r -t 0.500843 -s 8 -d 3 -p ack -e 40 -i 258 -a 20 r -t 0.500904 -s 7 -d 6 -p ack -e 40 -i 259 -a 10 + -t 0.500904 -s 6 -d 1 -p ack -e 40 -i 259 -a 10 - -t 0.500904 -s 6 -d 1 -p ack -e 40 -i 259 -a 10 h -t 0.500904 -s 6 -d 1 -p ack -e 40 -i 259 -a 10 r -t 0.503144 -s 9 -d 8 -p ack -e 40 -i 260 -a 21 + -t 0.503144 -s 8 -d 3 -p ack -e 40 -i 260 -a 21 - -t 0.503144 -s 8 -d 3 -p ack -e 40 -i 260 -a 21 h -t 0.503144 -s 8 -d 3 -p ack -e 40 -i 260 -a 21 r -t 0.503752 -s 6 -d 7 -p tcp -e 1000 -i 223 -a 14 + -t 0.503752 -s 7 -d 2 -p tcp -e 1000 -i 223 -a 14 - -t 0.503752 -s 7 -d 2 -p tcp -e 1000 -i 223 -a 14 h -t 0.503752 -s 7 -d 2 -p tcp -e 1000 -i 223 -a 14 r -t 0.503936 -s 6 -d 1 -p ack -e 40 -i 259 -a 10 r -t 0.504584 -s 2 -d 7 -p ack -e 40 -i 266 -a 12 + -t 0.504584 -s 7 -d 6 -p ack -e 40 -i 266 -a 12 - -t 0.504584 -s 7 -d 6 -p ack -e 40 -i 266 -a 12 h -t 0.504584 -s 7 -d 6 -p ack -e 40 -i 266 -a 12 r -t 0.506176 -s 8 -d 3 -p ack -e 40 -i 260 -a 21 - -t 0.507752 -s 6 -d 7 -p tcp -e 1000 -i 248 -a 11 h -t 0.507752 -s 6 -d 7 -p tcp -e 1000 -i 248 -a 11 r -t 0.508477 -s 9 -d 8 -p ack -e 40 -i 261 -a 20 + -t 0.508477 -s 8 -d 3 -p ack -e 40 -i 261 -a 20 - -t 0.508477 -s 8 -d 3 -p ack -e 40 -i 261 -a 20 h -t 0.508477 -s 8 -d 3 -p ack -e 40 -i 261 -a 20 r -t 0.508552 -s 7 -d 2 -p tcp -e 1000 -i 223 -a 14 + -t 0.508552 -s 2 -d 7 -p ack -e 40 -i 267 -a 14 - -t 0.508552 -s 2 -d 7 -p ack -e 40 -i 267 -a 14 h -t 0.508552 -s 2 -d 7 -p ack -e 40 -i 267 -a 14 r -t 0.508904 -s 7 -d 6 -p ack -e 40 -i 262 -a 10 + -t 0.508904 -s 6 -d 1 -p ack -e 40 -i 262 -a 10 - -t 0.508904 -s 6 -d 1 -p ack -e 40 -i 262 -a 10 h -t 0.508904 -s 6 -d 1 -p ack -e 40 -i 262 -a 10 r -t 0.511509 -s 8 -d 3 -p ack -e 40 -i 261 -a 20 + -t 0.511509 -s 3 -d 8 -p tcp -e 1000 -i 268 -a 20 - -t 0.511509 -s 3 -d 8 -p tcp -e 1000 -i 268 -a 20 h -t 0.511509 -s 3 -d 8 -p tcp -e 1000 -i 268 -a 20 + -t 0.511509 -s 3 -d 8 -p tcp -e 1000 -i 269 -a 20 r -t 0.511752 -s 6 -d 7 -p tcp -e 1000 -i 228 -a 10 + -t 0.511752 -s 7 -d 2 -p tcp -e 1000 -i 228 -a 10 - -t 0.511752 -s 7 -d 2 -p tcp -e 1000 -i 228 -a 10 h -t 0.511752 -s 7 -d 2 -p tcp -e 1000 -i 228 -a 10 r -t 0.511936 -s 6 -d 1 -p ack -e 40 -i 262 -a 10 - -t 0.512309 -s 3 -d 8 -p tcp -e 1000 -i 269 -a 20 h -t 0.512309 -s 3 -d 8 -p tcp -e 1000 -i 269 -a 20 r -t 0.512584 -s 2 -d 7 -p ack -e 40 -i 267 -a 14 + -t 0.512584 -s 7 -d 6 -p ack -e 40 -i 267 -a 14 - -t 0.512584 -s 7 -d 6 -p ack -e 40 -i 267 -a 14 h -t 0.512584 -s 7 -d 6 -p ack -e 40 -i 267 -a 14 r -t 0.51381 -s 9 -d 8 -p ack -e 40 -i 264 -a 21 + -t 0.513811 -s 8 -d 3 -p ack -e 40 -i 264 -a 21 - -t 0.513811 -s 8 -d 3 -p ack -e 40 -i 264 -a 21 h -t 0.513811 -s 8 -d 3 -p ack -e 40 -i 264 -a 21 r -t 0.515309 -s 3 -d 8 -p tcp -e 1000 -i 268 -a 20 + -t 0.515309 -s 8 -d 9 -p tcp -e 1000 -i 268 -a 20 - -t 0.515309 -s 8 -d 9 -p tcp -e 1000 -i 268 -a 20 h -t 0.515309 -s 8 -d 9 -p tcp -e 1000 -i 268 -a 20 - -t 0.515752 -s 6 -d 7 -p tcp -e 1000 -i 242 -a 13 h -t 0.515752 -s 6 -d 7 -p tcp -e 1000 -i 242 -a 13 r -t 0.516109 -s 3 -d 8 -p tcp -e 1000 -i 269 -a 20 + -t 0.516109 -s 8 -d 9 -p tcp -e 1000 -i 269 -a 20 r -t 0.516552 -s 7 -d 2 -p tcp -e 1000 -i 228 -a 10 + -t 0.516552 -s 2 -d 7 -p ack -e 40 -i 270 -a 10 - -t 0.516552 -s 2 -d 7 -p ack -e 40 -i 270 -a 10 h -t 0.516552 -s 2 -d 7 -p ack -e 40 -i 270 -a 10 r -t 0.516843 -s 8 -d 3 -p ack -e 40 -i 264 -a 21 + -t 0.516843 -s 3 -d 8 -p tcp -e 1000 -i 271 -a 21 - -t 0.516843 -s 3 -d 8 -p tcp -e 1000 -i 271 -a 21 h -t 0.516843 -s 3 -d 8 -p tcp -e 1000 -i 271 -a 21 + -t 0.516843 -s 3 -d 8 -p tcp -e 1000 -i 272 -a 21 r -t 0.516904 -s 7 -d 6 -p ack -e 40 -i 265 -a 10 + -t 0.516904 -s 6 -d 1 -p ack -e 40 -i 265 -a 10 - -t 0.516904 -s 6 -d 1 -p ack -e 40 -i 265 -a 10 h -t 0.516904 -s 6 -d 1 -p ack -e 40 -i 265 -a 10 - -t 0.517643 -s 3 -d 8 -p tcp -e 1000 -i 272 -a 21 h -t 0.517643 -s 3 -d 8 -p tcp -e 1000 -i 272 -a 21 r -t 0.519752 -s 6 -d 7 -p tcp -e 1000 -i 234 -a 12 + -t 0.519752 -s 7 -d 2 -p tcp -e 1000 -i 234 -a 12 - -t 0.519752 -s 7 -d 2 -p tcp -e 1000 -i 234 -a 12 h -t 0.519752 -s 7 -d 2 -p tcp -e 1000 -i 234 -a 12 r -t 0.519936 -s 6 -d 1 -p ack -e 40 -i 265 -a 10 r -t 0.520584 -s 2 -d 7 -p ack -e 40 -i 270 -a 10 + -t 0.520584 -s 7 -d 6 -p ack -e 40 -i 270 -a 10 - -t 0.520584 -s 7 -d 6 -p ack -e 40 -i 270 -a 10 h -t 0.520584 -s 7 -d 6 -p ack -e 40 -i 270 -a 10 r -t 0.520643 -s 3 -d 8 -p tcp -e 1000 -i 271 -a 21 - -t 0.520643 -s 8 -d 9 -p tcp -e 1000 -i 269 -a 20 h -t 0.520643 -s 8 -d 9 -p tcp -e 1000 -i 269 -a 20 + -t 0.520643 -s 8 -d 9 -p tcp -e 1000 -i 271 -a 21 r -t 0.521443 -s 3 -d 8 -p tcp -e 1000 -i 272 -a 21 + -t 0.521443 -s 8 -d 9 -p tcp -e 1000 -i 272 -a 21 - -t 0.523752 -s 6 -d 7 -p tcp -e 1000 -i 249 -a 11 h -t 0.523752 -s 6 -d 7 -p tcp -e 1000 -i 249 -a 11 r -t 0.524552 -s 7 -d 2 -p tcp -e 1000 -i 234 -a 12 + -t 0.524552 -s 2 -d 7 -p ack -e 40 -i 273 -a 12 - -t 0.524552 -s 2 -d 7 -p ack -e 40 -i 273 -a 12 h -t 0.524552 -s 2 -d 7 -p ack -e 40 -i 273 -a 12 r -t 0.524904 -s 7 -d 6 -p ack -e 40 -i 266 -a 12 + -t 0.524904 -s 6 -d 1 -p ack -e 40 -i 266 -a 12 - -t 0.524904 -s 6 -d 1 -p ack -e 40 -i 266 -a 12 h -t 0.524904 -s 6 -d 1 -p ack -e 40 -i 266 -a 12 - -t 0.525976 -s 8 -d 9 -p tcp -e 1000 -i 271 -a 21 h -t 0.525976 -s 8 -d 9 -p tcp -e 1000 -i 271 -a 21 r -t 0.527752 -s 6 -d 7 -p tcp -e 1000 -i 241 -a 13 + -t 0.527752 -s 7 -d 2 -p tcp -e 1000 -i 241 -a 13 - -t 0.527752 -s 7 -d 2 -p tcp -e 1000 -i 241 -a 13 h -t 0.527752 -s 7 -d 2 -p tcp -e 1000 -i 241 -a 13 r -t 0.527936 -s 6 -d 1 -p ack -e 40 -i 266 -a 12 + -t 0.527936 -s 1 -d 6 -p tcp -e 1000 -i 274 -a 12 - -t 0.527936 -s 1 -d 6 -p tcp -e 1000 -i 274 -a 12 h -t 0.527936 -s 1 -d 6 -p tcp -e 1000 -i 274 -a 12 + -t 0.527936 -s 1 -d 6 -p tcp -e 1000 -i 275 -a 12 r -t 0.528584 -s 2 -d 7 -p ack -e 40 -i 273 -a 12 + -t 0.528584 -s 7 -d 6 -p ack -e 40 -i 273 -a 12 - -t 0.528584 -s 7 -d 6 -p ack -e 40 -i 273 -a 12 h -t 0.528584 -s 7 -d 6 -p ack -e 40 -i 273 -a 12 - -t 0.528736 -s 1 -d 6 -p tcp -e 1000 -i 275 -a 12 h -t 0.528736 -s 1 -d 6 -p tcp -e 1000 -i 275 -a 12 - -t 0.531309 -s 8 -d 9 -p tcp -e 1000 -i 272 -a 21 h -t 0.531309 -s 8 -d 9 -p tcp -e 1000 -i 272 -a 21 r -t 0.531736 -s 1 -d 6 -p tcp -e 1000 -i 274 -a 12 + -t 0.531736 -s 6 -d 7 -p tcp -e 1000 -i 274 -a 12 - -t 0.531752 -s 6 -d 7 -p tcp -e 1000 -i 263 -a 11 h -t 0.531752 -s 6 -d 7 -p tcp -e 1000 -i 263 -a 11 r -t 0.532536 -s 1 -d 6 -p tcp -e 1000 -i 275 -a 12 + -t 0.532536 -s 6 -d 7 -p tcp -e 1000 -i 275 -a 12 r -t 0.532552 -s 7 -d 2 -p tcp -e 1000 -i 241 -a 13 + -t 0.532552 -s 2 -d 7 -p ack -e 40 -i 276 -a 13 - -t 0.532552 -s 2 -d 7 -p ack -e 40 -i 276 -a 13 h -t 0.532552 -s 2 -d 7 -p ack -e 40 -i 276 -a 13 r -t 0.532904 -s 7 -d 6 -p ack -e 40 -i 267 -a 14 + -t 0.532904 -s 6 -d 1 -p ack -e 40 -i 267 -a 14 - -t 0.532904 -s 6 -d 1 -p ack -e 40 -i 267 -a 14 h -t 0.532904 -s 6 -d 1 -p ack -e 40 -i 267 -a 14 r -t 0.535752 -s 6 -d 7 -p tcp -e 1000 -i 248 -a 11 + -t 0.535752 -s 7 -d 2 -p tcp -e 1000 -i 248 -a 11 - -t 0.535752 -s 7 -d 2 -p tcp -e 1000 -i 248 -a 11 h -t 0.535752 -s 7 -d 2 -p tcp -e 1000 -i 248 -a 11 r -t 0.535936 -s 6 -d 1 -p ack -e 40 -i 267 -a 14 + -t 0.535936 -s 1 -d 6 -p tcp -e 1000 -i 277 -a 14 - -t 0.535936 -s 1 -d 6 -p tcp -e 1000 -i 277 -a 14 h -t 0.535936 -s 1 -d 6 -p tcp -e 1000 -i 277 -a 14 + -t 0.535936 -s 1 -d 6 -p tcp -e 1000 -i 278 -a 14 r -t 0.536584 -s 2 -d 7 -p ack -e 40 -i 276 -a 13 + -t 0.536584 -s 7 -d 6 -p ack -e 40 -i 276 -a 13 - -t 0.536584 -s 7 -d 6 -p ack -e 40 -i 276 -a 13 h -t 0.536584 -s 7 -d 6 -p ack -e 40 -i 276 -a 13 - -t 0.536736 -s 1 -d 6 -p tcp -e 1000 -i 278 -a 14 h -t 0.536736 -s 1 -d 6 -p tcp -e 1000 -i 278 -a 14 r -t 0.539736 -s 1 -d 6 -p tcp -e 1000 -i 277 -a 14 + -t 0.539736 -s 6 -d 7 -p tcp -e 1000 -i 277 -a 14 - -t 0.539752 -s 6 -d 7 -p tcp -e 1000 -i 274 -a 12 h -t 0.539752 -s 6 -d 7 -p tcp -e 1000 -i 274 -a 12 r -t 0.540536 -s 1 -d 6 -p tcp -e 1000 -i 278 -a 14 + -t 0.540536 -s 6 -d 7 -p tcp -e 1000 -i 278 -a 14 r -t 0.540552 -s 7 -d 2 -p tcp -e 1000 -i 248 -a 11 + -t 0.540552 -s 2 -d 7 -p ack -e 40 -i 279 -a 11 - -t 0.540552 -s 2 -d 7 -p ack -e 40 -i 279 -a 11 h -t 0.540552 -s 2 -d 7 -p ack -e 40 -i 279 -a 11 r -t 0.540642 -s 8 -d 9 -p tcp -e 1000 -i 268 -a 20 + -t 0.540643 -s 9 -d 10 -p tcp -e 1000 -i 268 -a 20 - -t 0.540643 -s 9 -d 10 -p tcp -e 1000 -i 268 -a 20 h -t 0.540643 -s 9 -d 10 -p tcp -e 1000 -i 268 -a 20 r -t 0.540904 -s 7 -d 6 -p ack -e 40 -i 270 -a 10 + -t 0.540904 -s 6 -d 1 -p ack -e 40 -i 270 -a 10 - -t 0.540904 -s 6 -d 1 -p ack -e 40 -i 270 -a 10 h -t 0.540904 -s 6 -d 1 -p ack -e 40 -i 270 -a 10 r -t 0.543752 -s 6 -d 7 -p tcp -e 1000 -i 242 -a 13 + -t 0.543752 -s 7 -d 2 -p tcp -e 1000 -i 242 -a 13 - -t 0.543752 -s 7 -d 2 -p tcp -e 1000 -i 242 -a 13 h -t 0.543752 -s 7 -d 2 -p tcp -e 1000 -i 242 -a 13 r -t 0.543936 -s 6 -d 1 -p ack -e 40 -i 270 -a 10 r -t 0.544584 -s 2 -d 7 -p ack -e 40 -i 279 -a 11 + -t 0.544584 -s 7 -d 6 -p ack -e 40 -i 279 -a 11 - -t 0.544584 -s 7 -d 6 -p ack -e 40 -i 279 -a 11 h -t 0.544584 -s 7 -d 6 -p ack -e 40 -i 279 -a 11 r -t 0.545443 -s 9 -d 10 -p tcp -e 1000 -i 268 -a 20 + -t 0.545443 -s 4 -d 10 -p ack -e 40 -i 280 -a 20 - -t 0.545443 -s 4 -d 10 -p ack -e 40 -i 280 -a 20 h -t 0.545443 -s 4 -d 10 -p ack -e 40 -i 280 -a 20 r -t 0.545976 -s 8 -d 9 -p tcp -e 1000 -i 269 -a 20 + -t 0.545976 -s 9 -d 10 -p tcp -e 1000 -i 269 -a 20 - -t 0.545976 -s 9 -d 10 -p tcp -e 1000 -i 269 -a 20 h -t 0.545976 -s 9 -d 10 -p tcp -e 1000 -i 269 -a 20 - -t 0.547752 -s 6 -d 7 -p tcp -e 1000 -i 277 -a 14 h -t 0.547752 -s 6 -d 7 -p tcp -e 1000 -i 277 -a 14 r -t 0.548552 -s 7 -d 2 -p tcp -e 1000 -i 242 -a 13 + -t 0.548552 -s 2 -d 7 -p ack -e 40 -i 281 -a 13 - -t 0.548552 -s 2 -d 7 -p ack -e 40 -i 281 -a 13 h -t 0.548552 -s 2 -d 7 -p ack -e 40 -i 281 -a 13 r -t 0.548904 -s 7 -d 6 -p ack -e 40 -i 273 -a 12 + -t 0.548904 -s 6 -d 1 -p ack -e 40 -i 273 -a 12 - -t 0.548904 -s 6 -d 1 -p ack -e 40 -i 273 -a 12 h -t 0.548904 -s 6 -d 1 -p ack -e 40 -i 273 -a 12 r -t 0.549475 -s 4 -d 10 -p ack -e 40 -i 280 -a 20 + -t 0.549475 -s 9 -d 8 -p ack -e 40 -i 280 -a 20 - -t 0.549475 -s 9 -d 8 -p ack -e 40 -i 280 -a 20 h -t 0.549475 -s 9 -d 8 -p ack -e 40 -i 280 -a 20 r -t 0.550776 -s 9 -d 10 -p tcp -e 1000 -i 269 -a 20 + -t 0.550776 -s 4 -d 10 -p ack -e 40 -i 282 -a 20 - -t 0.550776 -s 4 -d 10 -p ack -e 40 -i 282 -a 20 h -t 0.550776 -s 4 -d 10 -p ack -e 40 -i 282 -a 20 r -t 0.551309 -s 8 -d 9 -p tcp -e 1000 -i 271 -a 21 + -t 0.551309 -s 9 -d 10 -p tcp -e 1000 -i 271 -a 21 - -t 0.551309 -s 9 -d 10 -p tcp -e 1000 -i 271 -a 21 h -t 0.551309 -s 9 -d 10 -p tcp -e 1000 -i 271 -a 21 r -t 0.551752 -s 6 -d 7 -p tcp -e 1000 -i 249 -a 11 + -t 0.551752 -s 7 -d 2 -p tcp -e 1000 -i 249 -a 11 - -t 0.551752 -s 7 -d 2 -p tcp -e 1000 -i 249 -a 11 h -t 0.551752 -s 7 -d 2 -p tcp -e 1000 -i 249 -a 11 r -t 0.551936 -s 6 -d 1 -p ack -e 40 -i 273 -a 12 r -t 0.552584 -s 2 -d 7 -p ack -e 40 -i 281 -a 13 + -t 0.552584 -s 7 -d 6 -p ack -e 40 -i 281 -a 13 - -t 0.552584 -s 7 -d 6 -p ack -e 40 -i 281 -a 13 h -t 0.552584 -s 7 -d 6 -p ack -e 40 -i 281 -a 13 r -t 0.554808 -s 4 -d 10 -p ack -e 40 -i 282 -a 20 + -t 0.554808 -s 9 -d 8 -p ack -e 40 -i 282 -a 20 - -t 0.554808 -s 9 -d 8 -p ack -e 40 -i 282 -a 20 h -t 0.554808 -s 9 -d 8 -p ack -e 40 -i 282 -a 20 - -t 0.555752 -s 6 -d 7 -p tcp -e 1000 -i 275 -a 12 h -t 0.555752 -s 6 -d 7 -p tcp -e 1000 -i 275 -a 12 r -t 0.556109 -s 9 -d 10 -p tcp -e 1000 -i 271 -a 21 + -t 0.556109 -s 4 -d 10 -p ack -e 40 -i 283 -a 21 - -t 0.556109 -s 4 -d 10 -p ack -e 40 -i 283 -a 21 h -t 0.556109 -s 4 -d 10 -p ack -e 40 -i 283 -a 21 r -t 0.556552 -s 7 -d 2 -p tcp -e 1000 -i 249 -a 11 + -t 0.556552 -s 2 -d 7 -p ack -e 40 -i 284 -a 11 - -t 0.556552 -s 2 -d 7 -p ack -e 40 -i 284 -a 11 h -t 0.556552 -s 2 -d 7 -p ack -e 40 -i 284 -a 11 r -t 0.556642 -s 8 -d 9 -p tcp -e 1000 -i 272 -a 21 + -t 0.556643 -s 9 -d 10 -p tcp -e 1000 -i 272 -a 21 - -t 0.556643 -s 9 -d 10 -p tcp -e 1000 -i 272 -a 21 h -t 0.556643 -s 9 -d 10 -p tcp -e 1000 -i 272 -a 21 r -t 0.556904 -s 7 -d 6 -p ack -e 40 -i 276 -a 13 + -t 0.556904 -s 6 -d 1 -p ack -e 40 -i 276 -a 13 - -t 0.556904 -s 6 -d 1 -p ack -e 40 -i 276 -a 13 h -t 0.556904 -s 6 -d 1 -p ack -e 40 -i 276 -a 13 r -t 0.559752 -s 6 -d 7 -p tcp -e 1000 -i 263 -a 11 + -t 0.559752 -s 7 -d 2 -p tcp -e 1000 -i 263 -a 11 - -t 0.559752 -s 7 -d 2 -p tcp -e 1000 -i 263 -a 11 h -t 0.559752 -s 7 -d 2 -p tcp -e 1000 -i 263 -a 11 r -t 0.559936 -s 6 -d 1 -p ack -e 40 -i 276 -a 13 + -t 0.559936 -s 1 -d 6 -p tcp -e 1000 -i 285 -a 13 - -t 0.559936 -s 1 -d 6 -p tcp -e 1000 -i 285 -a 13 h -t 0.559936 -s 1 -d 6 -p tcp -e 1000 -i 285 -a 13 + -t 0.559936 -s 1 -d 6 -p tcp -e 1000 -i 286 -a 13 r -t 0.560141 -s 4 -d 10 -p ack -e 40 -i 283 -a 21 + -t 0.560141 -s 9 -d 8 -p ack -e 40 -i 283 -a 21 - -t 0.560141 -s 9 -d 8 -p ack -e 40 -i 283 -a 21 h -t 0.560141 -s 9 -d 8 -p ack -e 40 -i 283 -a 21 r -t 0.560584 -s 2 -d 7 -p ack -e 40 -i 284 -a 11 + -t 0.560584 -s 7 -d 6 -p ack -e 40 -i 284 -a 11 - -t 0.560584 -s 7 -d 6 -p ack -e 40 -i 284 -a 11 h -t 0.560584 -s 7 -d 6 -p ack -e 40 -i 284 -a 11 - -t 0.560736 -s 1 -d 6 -p tcp -e 1000 -i 286 -a 13 h -t 0.560736 -s 1 -d 6 -p tcp -e 1000 -i 286 -a 13 r -t 0.561443 -s 9 -d 10 -p tcp -e 1000 -i 272 -a 21 + -t 0.561443 -s 4 -d 10 -p ack -e 40 -i 287 -a 21 - -t 0.561443 -s 4 -d 10 -p ack -e 40 -i 287 -a 21 h -t 0.561443 -s 4 -d 10 -p ack -e 40 -i 287 -a 21 r -t 0.563736 -s 1 -d 6 -p tcp -e 1000 -i 285 -a 13 + -t 0.563736 -s 6 -d 7 -p tcp -e 1000 -i 285 -a 13 - -t 0.563752 -s 6 -d 7 -p tcp -e 1000 -i 278 -a 14 h -t 0.563752 -s 6 -d 7 -p tcp -e 1000 -i 278 -a 14 r -t 0.564536 -s 1 -d 6 -p tcp -e 1000 -i 286 -a 13 + -t 0.564536 -s 6 -d 7 -p tcp -e 1000 -i 286 -a 13 r -t 0.564552 -s 7 -d 2 -p tcp -e 1000 -i 263 -a 11 + -t 0.564552 -s 2 -d 7 -p ack -e 40 -i 288 -a 11 - -t 0.564552 -s 2 -d 7 -p ack -e 40 -i 288 -a 11 h -t 0.564552 -s 2 -d 7 -p ack -e 40 -i 288 -a 11 r -t 0.564904 -s 7 -d 6 -p ack -e 40 -i 279 -a 11 + -t 0.564904 -s 6 -d 1 -p ack -e 40 -i 279 -a 11 - -t 0.564904 -s 6 -d 1 -p ack -e 40 -i 279 -a 11 h -t 0.564904 -s 6 -d 1 -p ack -e 40 -i 279 -a 11 r -t 0.565475 -s 4 -d 10 -p ack -e 40 -i 287 -a 21 + -t 0.565475 -s 9 -d 8 -p ack -e 40 -i 287 -a 21 - -t 0.565475 -s 9 -d 8 -p ack -e 40 -i 287 -a 21 h -t 0.565475 -s 9 -d 8 -p ack -e 40 -i 287 -a 21 r -t 0.567752 -s 6 -d 7 -p tcp -e 1000 -i 274 -a 12 + -t 0.567752 -s 7 -d 2 -p tcp -e 1000 -i 274 -a 12 - -t 0.567752 -s 7 -d 2 -p tcp -e 1000 -i 274 -a 12 h -t 0.567752 -s 7 -d 2 -p tcp -e 1000 -i 274 -a 12 r -t 0.567936 -s 6 -d 1 -p ack -e 40 -i 279 -a 11 r -t 0.568584 -s 2 -d 7 -p ack -e 40 -i 288 -a 11 + -t 0.568584 -s 7 -d 6 -p ack -e 40 -i 288 -a 11 - -t 0.568584 -s 7 -d 6 -p ack -e 40 -i 288 -a 11 h -t 0.568584 -s 7 -d 6 -p ack -e 40 -i 288 -a 11 r -t 0.569688 -s 9 -d 8 -p ack -e 40 -i 280 -a 20 + -t 0.569688 -s 8 -d 3 -p ack -e 40 -i 280 -a 20 - -t 0.569688 -s 8 -d 3 -p ack -e 40 -i 280 -a 20 h -t 0.569688 -s 8 -d 3 -p ack -e 40 -i 280 -a 20 - -t 0.571752 -s 6 -d 7 -p tcp -e 1000 -i 285 -a 13 h -t 0.571752 -s 6 -d 7 -p tcp -e 1000 -i 285 -a 13 r -t 0.572552 -s 7 -d 2 -p tcp -e 1000 -i 274 -a 12 + -t 0.572552 -s 2 -d 7 -p ack -e 40 -i 289 -a 12 - -t 0.572552 -s 2 -d 7 -p ack -e 40 -i 289 -a 12 h -t 0.572552 -s 2 -d 7 -p ack -e 40 -i 289 -a 12 r -t 0.57272 -s 8 -d 3 -p ack -e 40 -i 280 -a 20 + -t 0.57272 -s 3 -d 8 -p tcp -e 1000 -i 290 -a 20 - -t 0.57272 -s 3 -d 8 -p tcp -e 1000 -i 290 -a 20 h -t 0.57272 -s 3 -d 8 -p tcp -e 1000 -i 290 -a 20 + -t 0.57272 -s 3 -d 8 -p tcp -e 1000 -i 291 -a 20 + -t 0.57272 -s 3 -d 8 -p tcp -e 1000 -i 292 -a 20 r -t 0.572904 -s 7 -d 6 -p ack -e 40 -i 281 -a 13 + -t 0.572904 -s 6 -d 1 -p ack -e 40 -i 281 -a 13 - -t 0.572904 -s 6 -d 1 -p ack -e 40 -i 281 -a 13 h -t 0.572904 -s 6 -d 1 -p ack -e 40 -i 281 -a 13 - -t 0.57352 -s 3 -d 8 -p tcp -e 1000 -i 291 -a 20 h -t 0.57352 -s 3 -d 8 -p tcp -e 1000 -i 291 -a 20 - -t 0.57432 -s 3 -d 8 -p tcp -e 1000 -i 292 -a 20 h -t 0.57432 -s 3 -d 8 -p tcp -e 1000 -i 292 -a 20 r -t 0.575021 -s 9 -d 8 -p ack -e 40 -i 282 -a 20 + -t 0.575021 -s 8 -d 3 -p ack -e 40 -i 282 -a 20 - -t 0.575021 -s 8 -d 3 -p ack -e 40 -i 282 -a 20 h -t 0.575021 -s 8 -d 3 -p ack -e 40 -i 282 -a 20 r -t 0.575752 -s 6 -d 7 -p tcp -e 1000 -i 277 -a 14 + -t 0.575752 -s 7 -d 2 -p tcp -e 1000 -i 277 -a 14 - -t 0.575752 -s 7 -d 2 -p tcp -e 1000 -i 277 -a 14 h -t 0.575752 -s 7 -d 2 -p tcp -e 1000 -i 277 -a 14 r -t 0.575936 -s 6 -d 1 -p ack -e 40 -i 281 -a 13 + -t 0.575936 -s 1 -d 6 -p tcp -e 1000 -i 293 -a 13 - -t 0.575936 -s 1 -d 6 -p tcp -e 1000 -i 293 -a 13 h -t 0.575936 -s 1 -d 6 -p tcp -e 1000 -i 293 -a 13 + -t 0.575936 -s 1 -d 6 -p tcp -e 1000 -i 294 -a 13 r -t 0.57652 -s 3 -d 8 -p tcp -e 1000 -i 290 -a 20 + -t 0.57652 -s 8 -d 9 -p tcp -e 1000 -i 290 -a 20 - -t 0.57652 -s 8 -d 9 -p tcp -e 1000 -i 290 -a 20 h -t 0.57652 -s 8 -d 9 -p tcp -e 1000 -i 290 -a 20 r -t 0.576584 -s 2 -d 7 -p ack -e 40 -i 289 -a 12 + -t 0.576584 -s 7 -d 6 -p ack -e 40 -i 289 -a 12 - -t 0.576584 -s 7 -d 6 -p ack -e 40 -i 289 -a 12 h -t 0.576584 -s 7 -d 6 -p ack -e 40 -i 289 -a 12 - -t 0.576736 -s 1 -d 6 -p tcp -e 1000 -i 294 -a 13 h -t 0.576736 -s 1 -d 6 -p tcp -e 1000 -i 294 -a 13 r -t 0.57732 -s 3 -d 8 -p tcp -e 1000 -i 291 -a 20 + -t 0.57732 -s 8 -d 9 -p tcp -e 1000 -i 291 -a 20 r -t 0.578053 -s 8 -d 3 -p ack -e 40 -i 282 -a 20 r -t 0.57812 -s 3 -d 8 -p tcp -e 1000 -i 292 -a 20 + -t 0.57812 -s 8 -d 9 -p tcp -e 1000 -i 292 -a 20 r -t 0.579736 -s 1 -d 6 -p tcp -e 1000 -i 293 -a 13 + -t 0.579736 -s 6 -d 7 -p tcp -e 1000 -i 293 -a 13 - -t 0.579752 -s 6 -d 7 -p tcp -e 1000 -i 286 -a 13 h -t 0.579752 -s 6 -d 7 -p tcp -e 1000 -i 286 -a 13 r -t 0.580354 -s 9 -d 8 -p ack -e 40 -i 283 -a 21 + -t 0.580355 -s 8 -d 3 -p ack -e 40 -i 283 -a 21 - -t 0.580355 -s 8 -d 3 -p ack -e 40 -i 283 -a 21 h -t 0.580355 -s 8 -d 3 -p ack -e 40 -i 283 -a 21 r -t 0.580536 -s 1 -d 6 -p tcp -e 1000 -i 294 -a 13 + -t 0.580536 -s 6 -d 7 -p tcp -e 1000 -i 294 -a 13 r -t 0.580552 -s 7 -d 2 -p tcp -e 1000 -i 277 -a 14 + -t 0.580552 -s 2 -d 7 -p ack -e 40 -i 295 -a 14 - -t 0.580552 -s 2 -d 7 -p ack -e 40 -i 295 -a 14 h -t 0.580552 -s 2 -d 7 -p ack -e 40 -i 295 -a 14 r -t 0.580904 -s 7 -d 6 -p ack -e 40 -i 284 -a 11 + -t 0.580904 -s 6 -d 1 -p ack -e 40 -i 284 -a 11 - -t 0.580904 -s 6 -d 1 -p ack -e 40 -i 284 -a 11 h -t 0.580904 -s 6 -d 1 -p ack -e 40 -i 284 -a 11 - -t 0.581853 -s 8 -d 9 -p tcp -e 1000 -i 291 -a 20 h -t 0.581853 -s 8 -d 9 -p tcp -e 1000 -i 291 -a 20 r -t 0.583387 -s 8 -d 3 -p ack -e 40 -i 283 -a 21 + -t 0.583387 -s 3 -d 8 -p tcp -e 1000 -i 296 -a 21 - -t 0.583387 -s 3 -d 8 -p tcp -e 1000 -i 296 -a 21 h -t 0.583387 -s 3 -d 8 -p tcp -e 1000 -i 296 -a 21 + -t 0.583387 -s 3 -d 8 -p tcp -e 1000 -i 297 -a 21 + -t 0.583387 -s 3 -d 8 -p tcp -e 1000 -i 298 -a 21 r -t 0.583752 -s 6 -d 7 -p tcp -e 1000 -i 275 -a 12 + -t 0.583752 -s 7 -d 2 -p tcp -e 1000 -i 275 -a 12 - -t 0.583752 -s 7 -d 2 -p tcp -e 1000 -i 275 -a 12 h -t 0.583752 -s 7 -d 2 -p tcp -e 1000 -i 275 -a 12 r -t 0.583936 -s 6 -d 1 -p ack -e 40 -i 284 -a 11 - -t 0.584187 -s 3 -d 8 -p tcp -e 1000 -i 297 -a 21 h -t 0.584187 -s 3 -d 8 -p tcp -e 1000 -i 297 -a 21 r -t 0.584584 -s 2 -d 7 -p ack -e 40 -i 295 -a 14 + -t 0.584584 -s 7 -d 6 -p ack -e 40 -i 295 -a 14 - -t 0.584584 -s 7 -d 6 -p ack -e 40 -i 295 -a 14 h -t 0.584584 -s 7 -d 6 -p ack -e 40 -i 295 -a 14 - -t 0.584987 -s 3 -d 8 -p tcp -e 1000 -i 298 -a 21 h -t 0.584987 -s 3 -d 8 -p tcp -e 1000 -i 298 -a 21 r -t 0.585688 -s 9 -d 8 -p ack -e 40 -i 287 -a 21 + -t 0.585688 -s 8 -d 3 -p ack -e 40 -i 287 -a 21 - -t 0.585688 -s 8 -d 3 -p ack -e 40 -i 287 -a 21 h -t 0.585688 -s 8 -d 3 -p ack -e 40 -i 287 -a 21 r -t 0.587187 -s 3 -d 8 -p tcp -e 1000 -i 296 -a 21 - -t 0.587187 -s 8 -d 9 -p tcp -e 1000 -i 292 -a 20 h -t 0.587187 -s 8 -d 9 -p tcp -e 1000 -i 292 -a 20 + -t 0.587187 -s 8 -d 9 -p tcp -e 1000 -i 296 -a 21 - -t 0.587752 -s 6 -d 7 -p tcp -e 1000 -i 293 -a 13 h -t 0.587752 -s 6 -d 7 -p tcp -e 1000 -i 293 -a 13 r -t 0.587987 -s 3 -d 8 -p tcp -e 1000 -i 297 -a 21 + -t 0.587987 -s 8 -d 9 -p tcp -e 1000 -i 297 -a 21 r -t 0.588552 -s 7 -d 2 -p tcp -e 1000 -i 275 -a 12 + -t 0.588552 -s 2 -d 7 -p ack -e 40 -i 299 -a 12 - -t 0.588552 -s 2 -d 7 -p ack -e 40 -i 299 -a 12 h -t 0.588552 -s 2 -d 7 -p ack -e 40 -i 299 -a 12 r -t 0.58872 -s 8 -d 3 -p ack -e 40 -i 287 -a 21 r -t 0.588787 -s 3 -d 8 -p tcp -e 1000 -i 298 -a 21 + -t 0.588787 -s 8 -d 9 -p tcp -e 1000 -i 298 -a 21 r -t 0.588904 -s 7 -d 6 -p ack -e 40 -i 288 -a 11 + -t 0.588904 -s 6 -d 1 -p ack -e 40 -i 288 -a 11 - -t 0.588904 -s 6 -d 1 -p ack -e 40 -i 288 -a 11 h -t 0.588904 -s 6 -d 1 -p ack -e 40 -i 288 -a 11 r -t 0.591752 -s 6 -d 7 -p tcp -e 1000 -i 278 -a 14 + -t 0.591752 -s 7 -d 2 -p tcp -e 1000 -i 278 -a 14 - -t 0.591752 -s 7 -d 2 -p tcp -e 1000 -i 278 -a 14 h -t 0.591752 -s 7 -d 2 -p tcp -e 1000 -i 278 -a 14 r -t 0.591936 -s 6 -d 1 -p ack -e 40 -i 288 -a 11 + -t 0.591936 -s 1 -d 6 -p tcp -e 1000 -i 300 -a 11 - -t 0.591936 -s 1 -d 6 -p tcp -e 1000 -i 300 -a 11 h -t 0.591936 -s 1 -d 6 -p tcp -e 1000 -i 300 -a 11 + -t 0.591936 -s 1 -d 6 -p tcp -e 1000 -i 301 -a 11 - -t 0.59252 -s 8 -d 9 -p tcp -e 1000 -i 296 -a 21 h -t 0.59252 -s 8 -d 9 -p tcp -e 1000 -i 296 -a 21 r -t 0.592584 -s 2 -d 7 -p ack -e 40 -i 299 -a 12 + -t 0.592584 -s 7 -d 6 -p ack -e 40 -i 299 -a 12 - -t 0.592584 -s 7 -d 6 -p ack -e 40 -i 299 -a 12 h -t 0.592584 -s 7 -d 6 -p ack -e 40 -i 299 -a 12 - -t 0.592736 -s 1 -d 6 -p tcp -e 1000 -i 301 -a 11 h -t 0.592736 -s 1 -d 6 -p tcp -e 1000 -i 301 -a 11 r -t 0.595736 -s 1 -d 6 -p tcp -e 1000 -i 300 -a 11 + -t 0.595736 -s 6 -d 7 -p tcp -e 1000 -i 300 -a 11 - -t 0.595752 -s 6 -d 7 -p tcp -e 1000 -i 294 -a 13 h -t 0.595752 -s 6 -d 7 -p tcp -e 1000 -i 294 -a 13 r -t 0.596536 -s 1 -d 6 -p tcp -e 1000 -i 301 -a 11 + -t 0.596536 -s 6 -d 7 -p tcp -e 1000 -i 301 -a 11 r -t 0.596552 -s 7 -d 2 -p tcp -e 1000 -i 278 -a 14 + -t 0.596552 -s 2 -d 7 -p ack -e 40 -i 302 -a 14 - -t 0.596552 -s 2 -d 7 -p ack -e 40 -i 302 -a 14 h -t 0.596552 -s 2 -d 7 -p ack -e 40 -i 302 -a 14 r -t 0.596904 -s 7 -d 6 -p ack -e 40 -i 289 -a 12 + -t 0.596904 -s 6 -d 1 -p ack -e 40 -i 289 -a 12 - -t 0.596904 -s 6 -d 1 -p ack -e 40 -i 289 -a 12 h -t 0.596904 -s 6 -d 1 -p ack -e 40 -i 289 -a 12 - -t 0.597853 -s 8 -d 9 -p tcp -e 1000 -i 297 -a 21 h -t 0.597853 -s 8 -d 9 -p tcp -e 1000 -i 297 -a 21 r -t 0.599752 -s 6 -d 7 -p tcp -e 1000 -i 285 -a 13 + -t 0.599752 -s 7 -d 2 -p tcp -e 1000 -i 285 -a 13 - -t 0.599752 -s 7 -d 2 -p tcp -e 1000 -i 285 -a 13 h -t 0.599752 -s 7 -d 2 -p tcp -e 1000 -i 285 -a 13 r -t 0.599936 -s 6 -d 1 -p ack -e 40 -i 289 -a 12 v -t 0.600002 -e take_snapshot r -t 0.600584 -s 2 -d 7 -p ack -e 40 -i 302 -a 14 + -t 0.600584 -s 7 -d 6 -p ack -e 40 -i 302 -a 14 - -t 0.600584 -s 7 -d 6 -p ack -e 40 -i 302 -a 14 h -t 0.600584 -s 7 -d 6 -p ack -e 40 -i 302 -a 14 r -t 0.601853 -s 8 -d 9 -p tcp -e 1000 -i 290 -a 20 + -t 0.601853 -s 9 -d 10 -p tcp -e 1000 -i 290 -a 20 - -t 0.601853 -s 9 -d 10 -p tcp -e 1000 -i 290 -a 20 h -t 0.601853 -s 9 -d 10 -p tcp -e 1000 -i 290 -a 20 - -t 0.603187 -s 8 -d 9 -p tcp -e 1000 -i 298 -a 21 h -t 0.603187 -s 8 -d 9 -p tcp -e 1000 -i 298 -a 21 - -t 0.603752 -s 6 -d 7 -p tcp -e 1000 -i 300 -a 11 h -t 0.603752 -s 6 -d 7 -p tcp -e 1000 -i 300 -a 11 r -t 0.604552 -s 7 -d 2 -p tcp -e 1000 -i 285 -a 13 + -t 0.604552 -s 2 -d 7 -p ack -e 40 -i 303 -a 13 - -t 0.604552 -s 2 -d 7 -p ack -e 40 -i 303 -a 13 h -t 0.604552 -s 2 -d 7 -p ack -e 40 -i 303 -a 13 r -t 0.604904 -s 7 -d 6 -p ack -e 40 -i 295 -a 14 + -t 0.604904 -s 6 -d 1 -p ack -e 40 -i 295 -a 14 - -t 0.604904 -s 6 -d 1 -p ack -e 40 -i 295 -a 14 h -t 0.604904 -s 6 -d 1 -p ack -e 40 -i 295 -a 14 r -t 0.606653 -s 9 -d 10 -p tcp -e 1000 -i 290 -a 20 + -t 0.606653 -s 4 -d 10 -p ack -e 40 -i 304 -a 20 - -t 0.606653 -s 4 -d 10 -p ack -e 40 -i 304 -a 20 h -t 0.606653 -s 4 -d 10 -p ack -e 40 -i 304 -a 20 r -t 0.607186 -s 8 -d 9 -p tcp -e 1000 -i 291 -a 20 + -t 0.607187 -s 9 -d 10 -p tcp -e 1000 -i 291 -a 20 - -t 0.607187 -s 9 -d 10 -p tcp -e 1000 -i 291 -a 20 h -t 0.607187 -s 9 -d 10 -p tcp -e 1000 -i 291 -a 20 r -t 0.607752 -s 6 -d 7 -p tcp -e 1000 -i 286 -a 13 + -t 0.607752 -s 7 -d 2 -p tcp -e 1000 -i 286 -a 13 - -t 0.607752 -s 7 -d 2 -p tcp -e 1000 -i 286 -a 13 h -t 0.607752 -s 7 -d 2 -p tcp -e 1000 -i 286 -a 13 r -t 0.607936 -s 6 -d 1 -p ack -e 40 -i 295 -a 14 + -t 0.607936 -s 1 -d 6 -p tcp -e 1000 -i 305 -a 14 - -t 0.607936 -s 1 -d 6 -p tcp -e 1000 -i 305 -a 14 h -t 0.607936 -s 1 -d 6 -p tcp -e 1000 -i 305 -a 14 + -t 0.607936 -s 1 -d 6 -p tcp -e 1000 -i 306 -a 14 r -t 0.608584 -s 2 -d 7 -p ack -e 40 -i 303 -a 13 + -t 0.608584 -s 7 -d 6 -p ack -e 40 -i 303 -a 13 - -t 0.608584 -s 7 -d 6 -p ack -e 40 -i 303 -a 13 h -t 0.608584 -s 7 -d 6 -p ack -e 40 -i 303 -a 13 - -t 0.608736 -s 1 -d 6 -p tcp -e 1000 -i 306 -a 14 h -t 0.608736 -s 1 -d 6 -p tcp -e 1000 -i 306 -a 14 r -t 0.610685 -s 4 -d 10 -p ack -e 40 -i 304 -a 20 + -t 0.610685 -s 9 -d 8 -p ack -e 40 -i 304 -a 20 - -t 0.610685 -s 9 -d 8 -p ack -e 40 -i 304 -a 20 h -t 0.610685 -s 9 -d 8 -p ack -e 40 -i 304 -a 20 r -t 0.611736 -s 1 -d 6 -p tcp -e 1000 -i 305 -a 14 + -t 0.611736 -s 6 -d 7 -p tcp -e 1000 -i 305 -a 14 - -t 0.611752 -s 6 -d 7 -p tcp -e 1000 -i 301 -a 11 h -t 0.611752 -s 6 -d 7 -p tcp -e 1000 -i 301 -a 11 r -t 0.611987 -s 9 -d 10 -p tcp -e 1000 -i 291 -a 20 + -t 0.611987 -s 4 -d 10 -p ack -e 40 -i 307 -a 20 - -t 0.611987 -s 4 -d 10 -p ack -e 40 -i 307 -a 20 h -t 0.611987 -s 4 -d 10 -p ack -e 40 -i 307 -a 20 r -t 0.61252 -s 8 -d 9 -p tcp -e 1000 -i 292 -a 20 + -t 0.61252 -s 9 -d 10 -p tcp -e 1000 -i 292 -a 20 - -t 0.61252 -s 9 -d 10 -p tcp -e 1000 -i 292 -a 20 h -t 0.61252 -s 9 -d 10 -p tcp -e 1000 -i 292 -a 20 r -t 0.612536 -s 1 -d 6 -p tcp -e 1000 -i 306 -a 14 + -t 0.612536 -s 6 -d 7 -p tcp -e 1000 -i 306 -a 14 r -t 0.612552 -s 7 -d 2 -p tcp -e 1000 -i 286 -a 13 + -t 0.612552 -s 2 -d 7 -p ack -e 40 -i 308 -a 13 - -t 0.612552 -s 2 -d 7 -p ack -e 40 -i 308 -a 13 h -t 0.612552 -s 2 -d 7 -p ack -e 40 -i 308 -a 13 r -t 0.612904 -s 7 -d 6 -p ack -e 40 -i 299 -a 12 + -t 0.612904 -s 6 -d 1 -p ack -e 40 -i 299 -a 12 - -t 0.612904 -s 6 -d 1 -p ack -e 40 -i 299 -a 12 h -t 0.612904 -s 6 -d 1 -p ack -e 40 -i 299 -a 12 r -t 0.615752 -s 6 -d 7 -p tcp -e 1000 -i 293 -a 13 + -t 0.615752 -s 7 -d 2 -p tcp -e 1000 -i 293 -a 13 - -t 0.615752 -s 7 -d 2 -p tcp -e 1000 -i 293 -a 13 h -t 0.615752 -s 7 -d 2 -p tcp -e 1000 -i 293 -a 13 r -t 0.615936 -s 6 -d 1 -p ack -e 40 -i 299 -a 12 + -t 0.615936 -s 1 -d 6 -p tcp -e 1000 -i 309 -a 12 - -t 0.615936 -s 1 -d 6 -p tcp -e 1000 -i 309 -a 12 h -t 0.615936 -s 1 -d 6 -p tcp -e 1000 -i 309 -a 12 r -t 0.616019 -s 4 -d 10 -p ack -e 40 -i 307 -a 20 + -t 0.616019 -s 9 -d 8 -p ack -e 40 -i 307 -a 20 - -t 0.616019 -s 9 -d 8 -p ack -e 40 -i 307 -a 20 h -t 0.616019 -s 9 -d 8 -p ack -e 40 -i 307 -a 20 r -t 0.616584 -s 2 -d 7 -p ack -e 40 -i 308 -a 13 + -t 0.616584 -s 7 -d 6 -p ack -e 40 -i 308 -a 13 - -t 0.616584 -s 7 -d 6 -p ack -e 40 -i 308 -a 13 h -t 0.616584 -s 7 -d 6 -p ack -e 40 -i 308 -a 13 r -t 0.61732 -s 9 -d 10 -p tcp -e 1000 -i 292 -a 20 + -t 0.61732 -s 4 -d 10 -p ack -e 40 -i 310 -a 20 - -t 0.61732 -s 4 -d 10 -p ack -e 40 -i 310 -a 20 h -t 0.61732 -s 4 -d 10 -p ack -e 40 -i 310 -a 20 r -t 0.617853 -s 8 -d 9 -p tcp -e 1000 -i 296 -a 21 + -t 0.617853 -s 9 -d 10 -p tcp -e 1000 -i 296 -a 21 - -t 0.617853 -s 9 -d 10 -p tcp -e 1000 -i 296 -a 21 h -t 0.617853 -s 9 -d 10 -p tcp -e 1000 -i 296 -a 21 r -t 0.619736 -s 1 -d 6 -p tcp -e 1000 -i 309 -a 12 + -t 0.619736 -s 6 -d 7 -p tcp -e 1000 -i 309 -a 12 - -t 0.619752 -s 6 -d 7 -p tcp -e 1000 -i 305 -a 14 h -t 0.619752 -s 6 -d 7 -p tcp -e 1000 -i 305 -a 14 r -t 0.620552 -s 7 -d 2 -p tcp -e 1000 -i 293 -a 13 + -t 0.620552 -s 2 -d 7 -p ack -e 40 -i 311 -a 13 - -t 0.620552 -s 2 -d 7 -p ack -e 40 -i 311 -a 13 h -t 0.620552 -s 2 -d 7 -p ack -e 40 -i 311 -a 13 r -t 0.620904 -s 7 -d 6 -p ack -e 40 -i 302 -a 14 + -t 0.620904 -s 6 -d 1 -p ack -e 40 -i 302 -a 14 - -t 0.620904 -s 6 -d 1 -p ack -e 40 -i 302 -a 14 h -t 0.620904 -s 6 -d 1 -p ack -e 40 -i 302 -a 14 r -t 0.621352 -s 4 -d 10 -p ack -e 40 -i 310 -a 20 + -t 0.621352 -s 9 -d 8 -p ack -e 40 -i 310 -a 20 - -t 0.621352 -s 9 -d 8 -p ack -e 40 -i 310 -a 20 h -t 0.621352 -s 9 -d 8 -p ack -e 40 -i 310 -a 20 r -t 0.622653 -s 9 -d 10 -p tcp -e 1000 -i 296 -a 21 + -t 0.622653 -s 4 -d 10 -p ack -e 40 -i 312 -a 21 - -t 0.622653 -s 4 -d 10 -p ack -e 40 -i 312 -a 21 h -t 0.622653 -s 4 -d 10 -p ack -e 40 -i 312 -a 21 r -t 0.623186 -s 8 -d 9 -p tcp -e 1000 -i 297 -a 21 + -t 0.623187 -s 9 -d 10 -p tcp -e 1000 -i 297 -a 21 - -t 0.623187 -s 9 -d 10 -p tcp -e 1000 -i 297 -a 21 h -t 0.623187 -s 9 -d 10 -p tcp -e 1000 -i 297 -a 21 r -t 0.623752 -s 6 -d 7 -p tcp -e 1000 -i 294 -a 13 + -t 0.623752 -s 7 -d 2 -p tcp -e 1000 -i 294 -a 13 - -t 0.623752 -s 7 -d 2 -p tcp -e 1000 -i 294 -a 13 h -t 0.623752 -s 7 -d 2 -p tcp -e 1000 -i 294 -a 13 r -t 0.623936 -s 6 -d 1 -p ack -e 40 -i 302 -a 14 + -t 0.623936 -s 1 -d 6 -p tcp -e 1000 -i 313 -a 14 - -t 0.623936 -s 1 -d 6 -p tcp -e 1000 -i 313 -a 14 h -t 0.623936 -s 1 -d 6 -p tcp -e 1000 -i 313 -a 14 + -t 0.623936 -s 1 -d 6 -p tcp -e 1000 -i 314 -a 14 r -t 0.624584 -s 2 -d 7 -p ack -e 40 -i 311 -a 13 + -t 0.624584 -s 7 -d 6 -p ack -e 40 -i 311 -a 13 - -t 0.624584 -s 7 -d 6 -p ack -e 40 -i 311 -a 13 h -t 0.624584 -s 7 -d 6 -p ack -e 40 -i 311 -a 13 - -t 0.624736 -s 1 -d 6 -p tcp -e 1000 -i 314 -a 14 h -t 0.624736 -s 1 -d 6 -p tcp -e 1000 -i 314 -a 14 r -t 0.626685 -s 4 -d 10 -p ack -e 40 -i 312 -a 21 + -t 0.626685 -s 9 -d 8 -p ack -e 40 -i 312 -a 21 - -t 0.626685 -s 9 -d 8 -p ack -e 40 -i 312 -a 21 h -t 0.626685 -s 9 -d 8 -p ack -e 40 -i 312 -a 21 r -t 0.627736 -s 1 -d 6 -p tcp -e 1000 -i 313 -a 14 + -t 0.627736 -s 6 -d 7 -p tcp -e 1000 -i 313 -a 14 - -t 0.627752 -s 6 -d 7 -p tcp -e 1000 -i 309 -a 12 h -t 0.627752 -s 6 -d 7 -p tcp -e 1000 -i 309 -a 12 r -t 0.627987 -s 9 -d 10 -p tcp -e 1000 -i 297 -a 21 + -t 0.627987 -s 4 -d 10 -p ack -e 40 -i 315 -a 21 - -t 0.627987 -s 4 -d 10 -p ack -e 40 -i 315 -a 21 h -t 0.627987 -s 4 -d 10 -p ack -e 40 -i 315 -a 21 r -t 0.62852 -s 8 -d 9 -p tcp -e 1000 -i 298 -a 21 + -t 0.62852 -s 9 -d 10 -p tcp -e 1000 -i 298 -a 21 - -t 0.62852 -s 9 -d 10 -p tcp -e 1000 -i 298 -a 21 h -t 0.62852 -s 9 -d 10 -p tcp -e 1000 -i 298 -a 21 r -t 0.628536 -s 1 -d 6 -p tcp -e 1000 -i 314 -a 14 + -t 0.628536 -s 6 -d 7 -p tcp -e 1000 -i 314 -a 14 r -t 0.628552 -s 7 -d 2 -p tcp -e 1000 -i 294 -a 13 + -t 0.628552 -s 2 -d 7 -p ack -e 40 -i 316 -a 13 - -t 0.628552 -s 2 -d 7 -p ack -e 40 -i 316 -a 13 h -t 0.628552 -s 2 -d 7 -p ack -e 40 -i 316 -a 13 r -t 0.628904 -s 7 -d 6 -p ack -e 40 -i 303 -a 13 + -t 0.628904 -s 6 -d 1 -p ack -e 40 -i 303 -a 13 - -t 0.628904 -s 6 -d 1 -p ack -e 40 -i 303 -a 13 h -t 0.628904 -s 6 -d 1 -p ack -e 40 -i 303 -a 13 r -t 0.630898 -s 9 -d 8 -p ack -e 40 -i 304 -a 20 + -t 0.630899 -s 8 -d 3 -p ack -e 40 -i 304 -a 20 - -t 0.630899 -s 8 -d 3 -p ack -e 40 -i 304 -a 20 h -t 0.630899 -s 8 -d 3 -p ack -e 40 -i 304 -a 20 r -t 0.631752 -s 6 -d 7 -p tcp -e 1000 -i 300 -a 11 + -t 0.631752 -s 7 -d 2 -p tcp -e 1000 -i 300 -a 11 - -t 0.631752 -s 7 -d 2 -p tcp -e 1000 -i 300 -a 11 h -t 0.631752 -s 7 -d 2 -p tcp -e 1000 -i 300 -a 11 r -t 0.631936 -s 6 -d 1 -p ack -e 40 -i 303 -a 13 + -t 0.631936 -s 1 -d 6 -p tcp -e 1000 -i 317 -a 13 - -t 0.631936 -s 1 -d 6 -p tcp -e 1000 -i 317 -a 13 h -t 0.631936 -s 1 -d 6 -p tcp -e 1000 -i 317 -a 13 + -t 0.631936 -s 1 -d 6 -p tcp -e 1000 -i 318 -a 13 r -t 0.632019 -s 4 -d 10 -p ack -e 40 -i 315 -a 21 + -t 0.632019 -s 9 -d 8 -p ack -e 40 -i 315 -a 21 - -t 0.632019 -s 9 -d 8 -p ack -e 40 -i 315 -a 21 h -t 0.632019 -s 9 -d 8 -p ack -e 40 -i 315 -a 21 r -t 0.632584 -s 2 -d 7 -p ack -e 40 -i 316 -a 13 + -t 0.632584 -s 7 -d 6 -p ack -e 40 -i 316 -a 13 - -t 0.632584 -s 7 -d 6 -p ack -e 40 -i 316 -a 13 h -t 0.632584 -s 7 -d 6 -p ack -e 40 -i 316 -a 13 - -t 0.632736 -s 1 -d 6 -p tcp -e 1000 -i 318 -a 13 h -t 0.632736 -s 1 -d 6 -p tcp -e 1000 -i 318 -a 13 r -t 0.63332 -s 9 -d 10 -p tcp -e 1000 -i 298 -a 21 + -t 0.63332 -s 4 -d 10 -p ack -e 40 -i 319 -a 21 - -t 0.63332 -s 4 -d 10 -p ack -e 40 -i 319 -a 21 h -t 0.63332 -s 4 -d 10 -p ack -e 40 -i 319 -a 21 r -t 0.633931 -s 8 -d 3 -p ack -e 40 -i 304 -a 20 + -t 0.633931 -s 3 -d 8 -p tcp -e 1000 -i 320 -a 20 - -t 0.633931 -s 3 -d 8 -p tcp -e 1000 -i 320 -a 20 h -t 0.633931 -s 3 -d 8 -p tcp -e 1000 -i 320 -a 20 + -t 0.633931 -s 3 -d 8 -p tcp -e 1000 -i 321 -a 20 + -t 0.633931 -s 3 -d 8 -p tcp -e 1000 -i 322 -a 20 - -t 0.634731 -s 3 -d 8 -p tcp -e 1000 -i 321 -a 20 h -t 0.634731 -s 3 -d 8 -p tcp -e 1000 -i 321 -a 20 - -t 0.635531 -s 3 -d 8 -p tcp -e 1000 -i 322 -a 20 h -t 0.635531 -s 3 -d 8 -p tcp -e 1000 -i 322 -a 20 r -t 0.635736 -s 1 -d 6 -p tcp -e 1000 -i 317 -a 13 + -t 0.635736 -s 6 -d 7 -p tcp -e 1000 -i 317 -a 13 - -t 0.635752 -s 6 -d 7 -p tcp -e 1000 -i 306 -a 14 h -t 0.635752 -s 6 -d 7 -p tcp -e 1000 -i 306 -a 14 r -t 0.636232 -s 9 -d 8 -p ack -e 40 -i 307 -a 20 + -t 0.636232 -s 8 -d 3 -p ack -e 40 -i 307 -a 20 - -t 0.636232 -s 8 -d 3 -p ack -e 40 -i 307 -a 20 h -t 0.636232 -s 8 -d 3 -p ack -e 40 -i 307 -a 20 r -t 0.636536 -s 1 -d 6 -p tcp -e 1000 -i 318 -a 13 + -t 0.636536 -s 6 -d 7 -p tcp -e 1000 -i 318 -a 13 r -t 0.636552 -s 7 -d 2 -p tcp -e 1000 -i 300 -a 11 + -t 0.636552 -s 2 -d 7 -p ack -e 40 -i 323 -a 11 - -t 0.636552 -s 2 -d 7 -p ack -e 40 -i 323 -a 11 h -t 0.636552 -s 2 -d 7 -p ack -e 40 -i 323 -a 11 r -t 0.636904 -s 7 -d 6 -p ack -e 40 -i 308 -a 13 + -t 0.636904 -s 6 -d 1 -p ack -e 40 -i 308 -a 13 - -t 0.636904 -s 6 -d 1 -p ack -e 40 -i 308 -a 13 h -t 0.636904 -s 6 -d 1 -p ack -e 40 -i 308 -a 13 r -t 0.637352 -s 4 -d 10 -p ack -e 40 -i 319 -a 21 + -t 0.637352 -s 9 -d 8 -p ack -e 40 -i 319 -a 21 - -t 0.637352 -s 9 -d 8 -p ack -e 40 -i 319 -a 21 h -t 0.637352 -s 9 -d 8 -p ack -e 40 -i 319 -a 21 r -t 0.637731 -s 3 -d 8 -p tcp -e 1000 -i 320 -a 20 + -t 0.637731 -s 8 -d 9 -p tcp -e 1000 -i 320 -a 20 - -t 0.637731 -s 8 -d 9 -p tcp -e 1000 -i 320 -a 20 h -t 0.637731 -s 8 -d 9 -p tcp -e 1000 -i 320 -a 20 r -t 0.638531 -s 3 -d 8 -p tcp -e 1000 -i 321 -a 20 + -t 0.638531 -s 8 -d 9 -p tcp -e 1000 -i 321 -a 20 r -t 0.639264 -s 8 -d 3 -p ack -e 40 -i 307 -a 20 r -t 0.639331 -s 3 -d 8 -p tcp -e 1000 -i 322 -a 20 + -t 0.639331 -s 8 -d 9 -p tcp -e 1000 -i 322 -a 20 r -t 0.639752 -s 6 -d 7 -p tcp -e 1000 -i 301 -a 11 + -t 0.639752 -s 7 -d 2 -p tcp -e 1000 -i 301 -a 11 - -t 0.639752 -s 7 -d 2 -p tcp -e 1000 -i 301 -a 11 h -t 0.639752 -s 7 -d 2 -p tcp -e 1000 -i 301 -a 11 r -t 0.639936 -s 6 -d 1 -p ack -e 40 -i 308 -a 13 + -t 0.639936 -s 1 -d 6 -p tcp -e 1000 -i 324 -a 13 - -t 0.639936 -s 1 -d 6 -p tcp -e 1000 -i 324 -a 13 h -t 0.639936 -s 1 -d 6 -p tcp -e 1000 -i 324 -a 13 + -t 0.639936 -s 1 -d 6 -p tcp -e 1000 -i 325 -a 13 r -t 0.640584 -s 2 -d 7 -p ack -e 40 -i 323 -a 11 + -t 0.640584 -s 7 -d 6 -p ack -e 40 -i 323 -a 11 - -t 0.640584 -s 7 -d 6 -p ack -e 40 -i 323 -a 11 h -t 0.640584 -s 7 -d 6 -p ack -e 40 -i 323 -a 11 - -t 0.640736 -s 1 -d 6 -p tcp -e 1000 -i 325 -a 13 h -t 0.640736 -s 1 -d 6 -p tcp -e 1000 -i 325 -a 13 r -t 0.641565 -s 9 -d 8 -p ack -e 40 -i 310 -a 20 + -t 0.641565 -s 8 -d 3 -p ack -e 40 -i 310 -a 20 - -t 0.641565 -s 8 -d 3 -p ack -e 40 -i 310 -a 20 h -t 0.641565 -s 8 -d 3 -p ack -e 40 -i 310 -a 20 - -t 0.643064 -s 8 -d 9 -p tcp -e 1000 -i 321 -a 20 h -t 0.643064 -s 8 -d 9 -p tcp -e 1000 -i 321 -a 20 r -t 0.643736 -s 1 -d 6 -p tcp -e 1000 -i 324 -a 13 + -t 0.643736 -s 6 -d 7 -p tcp -e 1000 -i 324 -a 13 - -t 0.643752 -s 6 -d 7 -p tcp -e 1000 -i 313 -a 14 h -t 0.643752 -s 6 -d 7 -p tcp -e 1000 -i 313 -a 14 r -t 0.644536 -s 1 -d 6 -p tcp -e 1000 -i 325 -a 13 + -t 0.644536 -s 6 -d 7 -p tcp -e 1000 -i 325 -a 13 r -t 0.644552 -s 7 -d 2 -p tcp -e 1000 -i 301 -a 11 + -t 0.644552 -s 2 -d 7 -p ack -e 40 -i 326 -a 11 - -t 0.644552 -s 2 -d 7 -p ack -e 40 -i 326 -a 11 h -t 0.644552 -s 2 -d 7 -p ack -e 40 -i 326 -a 11 r -t 0.644597 -s 8 -d 3 -p ack -e 40 -i 310 -a 20 + -t 0.644597 -s 3 -d 8 -p tcp -e 1000 -i 327 -a 20 - -t 0.644597 -s 3 -d 8 -p tcp -e 1000 -i 327 -a 20 h -t 0.644597 -s 3 -d 8 -p tcp -e 1000 -i 327 -a 20 + -t 0.644597 -s 3 -d 8 -p tcp -e 1000 -i 328 -a 20 + -t 0.644597 -s 3 -d 8 -p tcp -e 1000 -i 329 -a 20 r -t 0.644904 -s 7 -d 6 -p ack -e 40 -i 311 -a 13 + -t 0.644904 -s 6 -d 1 -p ack -e 40 -i 311 -a 13 - -t 0.644904 -s 6 -d 1 -p ack -e 40 -i 311 -a 13 h -t 0.644904 -s 6 -d 1 -p ack -e 40 -i 311 -a 13 - -t 0.645397 -s 3 -d 8 -p tcp -e 1000 -i 328 -a 20 h -t 0.645397 -s 3 -d 8 -p tcp -e 1000 -i 328 -a 20 - -t 0.646197 -s 3 -d 8 -p tcp -e 1000 -i 329 -a 20 h -t 0.646197 -s 3 -d 8 -p tcp -e 1000 -i 329 -a 20 r -t 0.646898 -s 9 -d 8 -p ack -e 40 -i 312 -a 21 + -t 0.646899 -s 8 -d 3 -p ack -e 40 -i 312 -a 21 - -t 0.646899 -s 8 -d 3 -p ack -e 40 -i 312 -a 21 h -t 0.646899 -s 8 -d 3 -p ack -e 40 -i 312 -a 21 r -t 0.647752 -s 6 -d 7 -p tcp -e 1000 -i 305 -a 14 + -t 0.647752 -s 7 -d 2 -p tcp -e 1000 -i 305 -a 14 - -t 0.647752 -s 7 -d 2 -p tcp -e 1000 -i 305 -a 14 h -t 0.647752 -s 7 -d 2 -p tcp -e 1000 -i 305 -a 14 r -t 0.647936 -s 6 -d 1 -p ack -e 40 -i 311 -a 13 + -t 0.647936 -s 1 -d 6 -p tcp -e 1000 -i 330 -a 13 - -t 0.647936 -s 1 -d 6 -p tcp -e 1000 -i 330 -a 13 h -t 0.647936 -s 1 -d 6 -p tcp -e 1000 -i 330 -a 13 + -t 0.647936 -s 1 -d 6 -p tcp -e 1000 -i 331 -a 13 r -t 0.648397 -s 3 -d 8 -p tcp -e 1000 -i 327 -a 20 - -t 0.648397 -s 8 -d 9 -p tcp -e 1000 -i 322 -a 20 h -t 0.648397 -s 8 -d 9 -p tcp -e 1000 -i 322 -a 20 + -t 0.648397 -s 8 -d 9 -p tcp -e 1000 -i 327 -a 20 r -t 0.648584 -s 2 -d 7 -p ack -e 40 -i 326 -a 11 + -t 0.648584 -s 7 -d 6 -p ack -e 40 -i 326 -a 11 - -t 0.648584 -s 7 -d 6 -p ack -e 40 -i 326 -a 11 h -t 0.648584 -s 7 -d 6 -p ack -e 40 -i 326 -a 11 - -t 0.648736 -s 1 -d 6 -p tcp -e 1000 -i 331 -a 13 h -t 0.648736 -s 1 -d 6 -p tcp -e 1000 -i 331 -a 13 r -t 0.649197 -s 3 -d 8 -p tcp -e 1000 -i 328 -a 20 + -t 0.649197 -s 8 -d 9 -p tcp -e 1000 -i 328 -a 20 r -t 0.649931 -s 8 -d 3 -p ack -e 40 -i 312 -a 21 + -t 0.649931 -s 3 -d 8 -p tcp -e 1000 -i 332 -a 21 - -t 0.649931 -s 3 -d 8 -p tcp -e 1000 -i 332 -a 21 h -t 0.649931 -s 3 -d 8 -p tcp -e 1000 -i 332 -a 21 + -t 0.649931 -s 3 -d 8 -p tcp -e 1000 -i 333 -a 21 + -t 0.649931 -s 3 -d 8 -p tcp -e 1000 -i 334 -a 21 r -t 0.649997 -s 3 -d 8 -p tcp -e 1000 -i 329 -a 20 + -t 0.649997 -s 8 -d 9 -p tcp -e 1000 -i 329 -a 20 v -t 0.650002 -e take_snapshot - -t 0.650731 -s 3 -d 8 -p tcp -e 1000 -i 333 -a 21 h -t 0.650731 -s 3 -d 8 -p tcp -e 1000 -i 333 -a 21 - -t 0.651531 -s 3 -d 8 -p tcp -e 1000 -i 334 -a 21 h -t 0.651531 -s 3 -d 8 -p tcp -e 1000 -i 334 -a 21 r -t 0.651736 -s 1 -d 6 -p tcp -e 1000 -i 330 -a 13 + -t 0.651736 -s 6 -d 7 -p tcp -e 1000 -i 330 -a 13 - -t 0.651752 -s 6 -d 7 -p tcp -e 1000 -i 317 -a 13 h -t 0.651752 -s 6 -d 7 -p tcp -e 1000 -i 317 -a 13 r -t 0.652232 -s 9 -d 8 -p ack -e 40 -i 315 -a 21 + -t 0.652232 -s 8 -d 3 -p ack -e 40 -i 315 -a 21 - -t 0.652232 -s 8 -d 3 -p ack -e 40 -i 315 -a 21 h -t 0.652232 -s 8 -d 3 -p ack -e 40 -i 315 -a 21 r -t 0.652536 -s 1 -d 6 -p tcp -e 1000 -i 331 -a 13 + -t 0.652536 -s 6 -d 7 -p tcp -e 1000 -i 331 -a 13 r -t 0.652552 -s 7 -d 2 -p tcp -e 1000 -i 305 -a 14 + -t 0.652552 -s 2 -d 7 -p ack -e 40 -i 335 -a 14 - -t 0.652552 -s 2 -d 7 -p ack -e 40 -i 335 -a 14 h -t 0.652552 -s 2 -d 7 -p ack -e 40 -i 335 -a 14 r -t 0.652904 -s 7 -d 6 -p ack -e 40 -i 316 -a 13 + -t 0.652904 -s 6 -d 1 -p ack -e 40 -i 316 -a 13 - -t 0.652904 -s 6 -d 1 -p ack -e 40 -i 316 -a 13 h -t 0.652904 -s 6 -d 1 -p ack -e 40 -i 316 -a 13 r -t 0.653731 -s 3 -d 8 -p tcp -e 1000 -i 332 -a 21 - -t 0.653731 -s 8 -d 9 -p tcp -e 1000 -i 327 -a 20 h -t 0.653731 -s 8 -d 9 -p tcp -e 1000 -i 327 -a 20 + -t 0.653731 -s 8 -d 9 -p tcp -e 1000 -i 332 -a 21 r -t 0.654531 -s 3 -d 8 -p tcp -e 1000 -i 333 -a 21 + -t 0.654531 -s 8 -d 9 -p tcp -e 1000 -i 333 -a 21 r -t 0.655264 -s 8 -d 3 -p ack -e 40 -i 315 -a 21 r -t 0.655331 -s 3 -d 8 -p tcp -e 1000 -i 334 -a 21 + -t 0.655331 -s 8 -d 9 -p tcp -e 1000 -i 334 -a 21 r -t 0.655752 -s 6 -d 7 -p tcp -e 1000 -i 309 -a 12 + -t 0.655752 -s 7 -d 2 -p tcp -e 1000 -i 309 -a 12 - -t 0.655752 -s 7 -d 2 -p tcp -e 1000 -i 309 -a 12 h -t 0.655752 -s 7 -d 2 -p tcp -e 1000 -i 309 -a 12 r -t 0.655936 -s 6 -d 1 -p ack -e 40 -i 316 -a 13 + -t 0.655936 -s 1 -d 6 -p tcp -e 1000 -i 336 -a 13 - -t 0.655936 -s 1 -d 6 -p tcp -e 1000 -i 336 -a 13 h -t 0.655936 -s 1 -d 6 -p tcp -e 1000 -i 336 -a 13 + -t 0.655936 -s 1 -d 6 -p tcp -e 1000 -i 337 -a 13 r -t 0.656584 -s 2 -d 7 -p ack -e 40 -i 335 -a 14 + -t 0.656584 -s 7 -d 6 -p ack -e 40 -i 335 -a 14 - -t 0.656584 -s 7 -d 6 -p ack -e 40 -i 335 -a 14 h -t 0.656584 -s 7 -d 6 -p ack -e 40 -i 335 -a 14 - -t 0.656736 -s 1 -d 6 -p tcp -e 1000 -i 337 -a 13 h -t 0.656736 -s 1 -d 6 -p tcp -e 1000 -i 337 -a 13 r -t 0.657565 -s 9 -d 8 -p ack -e 40 -i 319 -a 21 + -t 0.657565 -s 8 -d 3 -p ack -e 40 -i 319 -a 21 - -t 0.657565 -s 8 -d 3 -p ack -e 40 -i 319 -a 21 h -t 0.657565 -s 8 -d 3 -p ack -e 40 -i 319 -a 21 - -t 0.659064 -s 8 -d 9 -p tcp -e 1000 -i 328 -a 20 h -t 0.659064 -s 8 -d 9 -p tcp -e 1000 -i 328 -a 20 r -t 0.659736 -s 1 -d 6 -p tcp -e 1000 -i 336 -a 13 + -t 0.659736 -s 6 -d 7 -p tcp -e 1000 -i 336 -a 13 - -t 0.659752 -s 6 -d 7 -p tcp -e 1000 -i 314 -a 14 h -t 0.659752 -s 6 -d 7 -p tcp -e 1000 -i 314 -a 14 r -t 0.660536 -s 1 -d 6 -p tcp -e 1000 -i 337 -a 13 + -t 0.660536 -s 6 -d 7 -p tcp -e 1000 -i 337 -a 13 r -t 0.660552 -s 7 -d 2 -p tcp -e 1000 -i 309 -a 12 + -t 0.660552 -s 2 -d 7 -p ack -e 40 -i 338 -a 12 - -t 0.660552 -s 2 -d 7 -p ack -e 40 -i 338 -a 12 h -t 0.660552 -s 2 -d 7 -p ack -e 40 -i 338 -a 12 r -t 0.660597 -s 8 -d 3 -p ack -e 40 -i 319 -a 21 + -t 0.660597 -s 3 -d 8 -p tcp -e 1000 -i 339 -a 21 - -t 0.660597 -s 3 -d 8 -p tcp -e 1000 -i 339 -a 21 h -t 0.660597 -s 3 -d 8 -p tcp -e 1000 -i 339 -a 21 + -t 0.660597 -s 3 -d 8 -p tcp -e 1000 -i 340 -a 21 r -t 0.660904 -s 7 -d 6 -p ack -e 40 -i 323 -a 11 + -t 0.660904 -s 6 -d 1 -p ack -e 40 -i 323 -a 11 - -t 0.660904 -s 6 -d 1 -p ack -e 40 -i 323 -a 11 h -t 0.660904 -s 6 -d 1 -p ack -e 40 -i 323 -a 11 - -t 0.661397 -s 3 -d 8 -p tcp -e 1000 -i 340 -a 21 h -t 0.661397 -s 3 -d 8 -p tcp -e 1000 -i 340 -a 21 r -t 0.663064 -s 8 -d 9 -p tcp -e 1000 -i 320 -a 20 + -t 0.663064 -s 9 -d 10 -p tcp -e 1000 -i 320 -a 20 - -t 0.663064 -s 9 -d 10 -p tcp -e 1000 -i 320 -a 20 h -t 0.663064 -s 9 -d 10 -p tcp -e 1000 -i 320 -a 20 r -t 0.663752 -s 6 -d 7 -p tcp -e 1000 -i 306 -a 14 + -t 0.663752 -s 7 -d 2 -p tcp -e 1000 -i 306 -a 14 - -t 0.663752 -s 7 -d 2 -p tcp -e 1000 -i 306 -a 14 h -t 0.663752 -s 7 -d 2 -p tcp -e 1000 -i 306 -a 14 r -t 0.663936 -s 6 -d 1 -p ack -e 40 -i 323 -a 11 + -t 0.663936 -s 1 -d 6 -p tcp -e 1000 -i 341 -a 11 - -t 0.663936 -s 1 -d 6 -p tcp -e 1000 -i 341 -a 11 h -t 0.663936 -s 1 -d 6 -p tcp -e 1000 -i 341 -a 11 + -t 0.663936 -s 1 -d 6 -p tcp -e 1000 -i 342 -a 11 r -t 0.664397 -s 3 -d 8 -p tcp -e 1000 -i 339 -a 21 - -t 0.664397 -s 8 -d 9 -p tcp -e 1000 -i 332 -a 21 h -t 0.664397 -s 8 -d 9 -p tcp -e 1000 -i 332 -a 21 + -t 0.664397 -s 8 -d 9 -p tcp -e 1000 -i 339 -a 21 r -t 0.664584 -s 2 -d 7 -p ack -e 40 -i 338 -a 12 + -t 0.664584 -s 7 -d 6 -p ack -e 40 -i 338 -a 12 - -t 0.664584 -s 7 -d 6 -p ack -e 40 -i 338 -a 12 h -t 0.664584 -s 7 -d 6 -p ack -e 40 -i 338 -a 12 - -t 0.664736 -s 1 -d 6 -p tcp -e 1000 -i 342 -a 11 h -t 0.664736 -s 1 -d 6 -p tcp -e 1000 -i 342 -a 11 r -t 0.665197 -s 3 -d 8 -p tcp -e 1000 -i 340 -a 21 + -t 0.665197 -s 8 -d 9 -p tcp -e 1000 -i 340 -a 21 r -t 0.667736 -s 1 -d 6 -p tcp -e 1000 -i 341 -a 11 + -t 0.667736 -s 6 -d 7 -p tcp -e 1000 -i 341 -a 11 - -t 0.667752 -s 6 -d 7 -p tcp -e 1000 -i 318 -a 13 h -t 0.667752 -s 6 -d 7 -p tcp -e 1000 -i 318 -a 13 r -t 0.667864 -s 9 -d 10 -p tcp -e 1000 -i 320 -a 20 + -t 0.667864 -s 4 -d 10 -p ack -e 40 -i 343 -a 20 - -t 0.667864 -s 4 -d 10 -p ack -e 40 -i 343 -a 20 h -t 0.667864 -s 4 -d 10 -p ack -e 40 -i 343 -a 20 r -t 0.668397 -s 8 -d 9 -p tcp -e 1000 -i 321 -a 20 + -t 0.668397 -s 9 -d 10 -p tcp -e 1000 -i 321 -a 20 - -t 0.668397 -s 9 -d 10 -p tcp -e 1000 -i 321 -a 20 h -t 0.668397 -s 9 -d 10 -p tcp -e 1000 -i 321 -a 20 r -t 0.668536 -s 1 -d 6 -p tcp -e 1000 -i 342 -a 11 + -t 0.668536 -s 6 -d 7 -p tcp -e 1000 -i 342 -a 11 r -t 0.668552 -s 7 -d 2 -p tcp -e 1000 -i 306 -a 14 + -t 0.668552 -s 2 -d 7 -p ack -e 40 -i 344 -a 14 - -t 0.668552 -s 2 -d 7 -p ack -e 40 -i 344 -a 14 h -t 0.668552 -s 2 -d 7 -p ack -e 40 -i 344 -a 14 r -t 0.668904 -s 7 -d 6 -p ack -e 40 -i 326 -a 11 + -t 0.668904 -s 6 -d 1 -p ack -e 40 -i 326 -a 11 - -t 0.668904 -s 6 -d 1 -p ack -e 40 -i 326 -a 11 h -t 0.668904 -s 6 -d 1 -p ack -e 40 -i 326 -a 11 - -t 0.669731 -s 8 -d 9 -p tcp -e 1000 -i 329 -a 20 h -t 0.669731 -s 8 -d 9 -p tcp -e 1000 -i 329 -a 20 r -t 0.671752 -s 6 -d 7 -p tcp -e 1000 -i 313 -a 14 + -t 0.671752 -s 7 -d 2 -p tcp -e 1000 -i 313 -a 14 - -t 0.671752 -s 7 -d 2 -p tcp -e 1000 -i 313 -a 14 h -t 0.671752 -s 7 -d 2 -p tcp -e 1000 -i 313 -a 14 r -t 0.671896 -s 4 -d 10 -p ack -e 40 -i 343 -a 20 + -t 0.671896 -s 9 -d 8 -p ack -e 40 -i 343 -a 20 - -t 0.671896 -s 9 -d 8 -p ack -e 40 -i 343 -a 20 h -t 0.671896 -s 9 -d 8 -p ack -e 40 -i 343 -a 20 r -t 0.671936 -s 6 -d 1 -p ack -e 40 -i 326 -a 11 + -t 0.671936 -s 1 -d 6 -p tcp -e 1000 -i 345 -a 11 - -t 0.671936 -s 1 -d 6 -p tcp -e 1000 -i 345 -a 11 h -t 0.671936 -s 1 -d 6 -p tcp -e 1000 -i 345 -a 11 + -t 0.671936 -s 1 -d 6 -p tcp -e 1000 -i 346 -a 11 + -t 0.671936 -s 1 -d 6 -p tcp -e 1000 -i 347 -a 11 r -t 0.672584 -s 2 -d 7 -p ack -e 40 -i 344 -a 14 + -t 0.672584 -s 7 -d 6 -p ack -e 40 -i 344 -a 14 - -t 0.672584 -s 7 -d 6 -p ack -e 40 -i 344 -a 14 h -t 0.672584 -s 7 -d 6 -p ack -e 40 -i 344 -a 14 - -t 0.672736 -s 1 -d 6 -p tcp -e 1000 -i 346 -a 11 h -t 0.672736 -s 1 -d 6 -p tcp -e 1000 -i 346 -a 11 r -t 0.673197 -s 9 -d 10 -p tcp -e 1000 -i 321 -a 20 + -t 0.673197 -s 4 -d 10 -p ack -e 40 -i 348 -a 20 - -t 0.673197 -s 4 -d 10 -p ack -e 40 -i 348 -a 20 h -t 0.673197 -s 4 -d 10 -p ack -e 40 -i 348 -a 20 - -t 0.673536 -s 1 -d 6 -p tcp -e 1000 -i 347 -a 11 h -t 0.673536 -s 1 -d 6 -p tcp -e 1000 -i 347 -a 11 r -t 0.67373 -s 8 -d 9 -p tcp -e 1000 -i 322 -a 20 + -t 0.673731 -s 9 -d 10 -p tcp -e 1000 -i 322 -a 20 - -t 0.673731 -s 9 -d 10 -p tcp -e 1000 -i 322 -a 20 h -t 0.673731 -s 9 -d 10 -p tcp -e 1000 -i 322 -a 20 - -t 0.675064 -s 8 -d 9 -p tcp -e 1000 -i 333 -a 21 h -t 0.675064 -s 8 -d 9 -p tcp -e 1000 -i 333 -a 21 r -t 0.675736 -s 1 -d 6 -p tcp -e 1000 -i 345 -a 11 + -t 0.675736 -s 6 -d 7 -p tcp -e 1000 -i 345 -a 11 - -t 0.675752 -s 6 -d 7 -p tcp -e 1000 -i 324 -a 13 h -t 0.675752 -s 6 -d 7 -p tcp -e 1000 -i 324 -a 13 r -t 0.676536 -s 1 -d 6 -p tcp -e 1000 -i 346 -a 11 + -t 0.676536 -s 6 -d 7 -p tcp -e 1000 -i 346 -a 11 r -t 0.676552 -s 7 -d 2 -p tcp -e 1000 -i 313 -a 14 + -t 0.676552 -s 2 -d 7 -p ack -e 40 -i 349 -a 14 - -t 0.676552 -s 2 -d 7 -p ack -e 40 -i 349 -a 14 h -t 0.676552 -s 2 -d 7 -p ack -e 40 -i 349 -a 14 r -t 0.676904 -s 7 -d 6 -p ack -e 40 -i 335 -a 14 + -t 0.676904 -s 6 -d 1 -p ack -e 40 -i 335 -a 14 - -t 0.676904 -s 6 -d 1 -p ack -e 40 -i 335 -a 14 h -t 0.676904 -s 6 -d 1 -p ack -e 40 -i 335 -a 14 r -t 0.677229 -s 4 -d 10 -p ack -e 40 -i 348 -a 20 + -t 0.677229 -s 9 -d 8 -p ack -e 40 -i 348 -a 20 - -t 0.677229 -s 9 -d 8 -p ack -e 40 -i 348 -a 20 h -t 0.677229 -s 9 -d 8 -p ack -e 40 -i 348 -a 20 r -t 0.677336 -s 1 -d 6 -p tcp -e 1000 -i 347 -a 11 + -t 0.677336 -s 6 -d 7 -p tcp -e 1000 -i 347 -a 11 d -t 0.677336 -s 6 -d 7 -p tcp -e 1000 -i 347 -a 11 r -t 0.678531 -s 9 -d 10 -p tcp -e 1000 -i 322 -a 20 + -t 0.678531 -s 4 -d 10 -p ack -e 40 -i 350 -a 20 - -t 0.678531 -s 4 -d 10 -p ack -e 40 -i 350 -a 20 h -t 0.678531 -s 4 -d 10 -p ack -e 40 -i 350 -a 20 r -t 0.679064 -s 8 -d 9 -p tcp -e 1000 -i 327 -a 20 + -t 0.679064 -s 9 -d 10 -p tcp -e 1000 -i 327 -a 20 - -t 0.679064 -s 9 -d 10 -p tcp -e 1000 -i 327 -a 20 h -t 0.679064 -s 9 -d 10 -p tcp -e 1000 -i 327 -a 20 r -t 0.679752 -s 6 -d 7 -p tcp -e 1000 -i 317 -a 13 + -t 0.679752 -s 7 -d 2 -p tcp -e 1000 -i 317 -a 13 - -t 0.679752 -s 7 -d 2 -p tcp -e 1000 -i 317 -a 13 h -t 0.679752 -s 7 -d 2 -p tcp -e 1000 -i 317 -a 13 r -t 0.679936 -s 6 -d 1 -p ack -e 40 -i 335 -a 14 + -t 0.679936 -s 1 -d 6 -p tcp -e 1000 -i 351 -a 14 - -t 0.679936 -s 1 -d 6 -p tcp -e 1000 -i 351 -a 14 h -t 0.679936 -s 1 -d 6 -p tcp -e 1000 -i 351 -a 14 + -t 0.679936 -s 1 -d 6 -p tcp -e 1000 -i 352 -a 14 - -t 0.680397 -s 8 -d 9 -p tcp -e 1000 -i 334 -a 21 h -t 0.680397 -s 8 -d 9 -p tcp -e 1000 -i 334 -a 21 r -t 0.680584 -s 2 -d 7 -p ack -e 40 -i 349 -a 14 + -t 0.680584 -s 7 -d 6 -p ack -e 40 -i 349 -a 14 - -t 0.680584 -s 7 -d 6 -p ack -e 40 -i 349 -a 14 h -t 0.680584 -s 7 -d 6 -p ack -e 40 -i 349 -a 14 - -t 0.680736 -s 1 -d 6 -p tcp -e 1000 -i 352 -a 14 h -t 0.680736 -s 1 -d 6 -p tcp -e 1000 -i 352 -a 14 r -t 0.682563 -s 4 -d 10 -p ack -e 40 -i 350 -a 20 + -t 0.682563 -s 9 -d 8 -p ack -e 40 -i 350 -a 20 - -t 0.682563 -s 9 -d 8 -p ack -e 40 -i 350 -a 20 h -t 0.682563 -s 9 -d 8 -p ack -e 40 -i 350 -a 20 + -t 0.683509 -s 3 -d 8 -p tcp -e 1000 -i 353 -a 22 - -t 0.683509 -s 3 -d 8 -p tcp -e 1000 -i 353 -a 22 h -t 0.683509 -s 3 -d 8 -p tcp -e 1000 -i 353 -a 22 r -t 0.683736 -s 1 -d 6 -p tcp -e 1000 -i 351 -a 14 + -t 0.683736 -s 6 -d 7 -p tcp -e 1000 -i 351 -a 14 d -t 0.683736 -s 6 -d 7 -p tcp -e 1000 -i 351 -a 14 - -t 0.683752 -s 6 -d 7 -p tcp -e 1000 -i 325 -a 13 h -t 0.683752 -s 6 -d 7 -p tcp -e 1000 -i 325 -a 13 r -t 0.683864 -s 9 -d 10 -p tcp -e 1000 -i 327 -a 20 + -t 0.683864 -s 4 -d 10 -p ack -e 40 -i 354 -a 20 - -t 0.683864 -s 4 -d 10 -p ack -e 40 -i 354 -a 20 h -t 0.683864 -s 4 -d 10 -p ack -e 40 -i 354 -a 20 r -t 0.684397 -s 8 -d 9 -p tcp -e 1000 -i 328 -a 20 + -t 0.684397 -s 9 -d 10 -p tcp -e 1000 -i 328 -a 20 - -t 0.684397 -s 9 -d 10 -p tcp -e 1000 -i 328 -a 20 h -t 0.684397 -s 9 -d 10 -p tcp -e 1000 -i 328 -a 20 r -t 0.684536 -s 1 -d 6 -p tcp -e 1000 -i 352 -a 14 + -t 0.684536 -s 6 -d 7 -p tcp -e 1000 -i 352 -a 14 r -t 0.684552 -s 7 -d 2 -p tcp -e 1000 -i 317 -a 13 + -t 0.684552 -s 2 -d 7 -p ack -e 40 -i 355 -a 13 - -t 0.684552 -s 2 -d 7 -p ack -e 40 -i 355 -a 13 h -t 0.684552 -s 2 -d 7 -p ack -e 40 -i 355 -a 13 r -t 0.684904 -s 7 -d 6 -p ack -e 40 -i 338 -a 12 + -t 0.684904 -s 6 -d 1 -p ack -e 40 -i 338 -a 12 - -t 0.684904 -s 6 -d 1 -p ack -e 40 -i 338 -a 12 h -t 0.684904 -s 6 -d 1 -p ack -e 40 -i 338 -a 12 - -t 0.685731 -s 8 -d 9 -p tcp -e 1000 -i 339 -a 21 h -t 0.685731 -s 8 -d 9 -p tcp -e 1000 -i 339 -a 21 r -t 0.687309 -s 3 -d 8 -p tcp -e 1000 -i 353 -a 22 + -t 0.687309 -s 8 -d 9 -p tcp -e 1000 -i 353 -a 22 r -t 0.687752 -s 6 -d 7 -p tcp -e 1000 -i 314 -a 14 + -t 0.687752 -s 7 -d 2 -p tcp -e 1000 -i 314 -a 14 - -t 0.687752 -s 7 -d 2 -p tcp -e 1000 -i 314 -a 14 h -t 0.687752 -s 7 -d 2 -p tcp -e 1000 -i 314 -a 14 r -t 0.687896 -s 4 -d 10 -p ack -e 40 -i 354 -a 20 + -t 0.687896 -s 9 -d 8 -p ack -e 40 -i 354 -a 20 - -t 0.687896 -s 9 -d 8 -p ack -e 40 -i 354 -a 20 h -t 0.687896 -s 9 -d 8 -p ack -e 40 -i 354 -a 20 r -t 0.687936 -s 6 -d 1 -p ack -e 40 -i 338 -a 12 + -t 0.687936 -s 1 -d 6 -p tcp -e 1000 -i 356 -a 12 - -t 0.687936 -s 1 -d 6 -p tcp -e 1000 -i 356 -a 12 h -t 0.687936 -s 1 -d 6 -p tcp -e 1000 -i 356 -a 12 + -t 0.687936 -s 1 -d 6 -p tcp -e 1000 -i 357 -a 12 r -t 0.688584 -s 2 -d 7 -p ack -e 40 -i 355 -a 13 + -t 0.688584 -s 7 -d 6 -p ack -e 40 -i 355 -a 13 - -t 0.688584 -s 7 -d 6 -p ack -e 40 -i 355 -a 13 h -t 0.688584 -s 7 -d 6 -p ack -e 40 -i 355 -a 13 - -t 0.688736 -s 1 -d 6 -p tcp -e 1000 -i 357 -a 12 h -t 0.688736 -s 1 -d 6 -p tcp -e 1000 -i 357 -a 12 r -t 0.689197 -s 9 -d 10 -p tcp -e 1000 -i 328 -a 20 + -t 0.689197 -s 4 -d 10 -p ack -e 40 -i 358 -a 20 - -t 0.689197 -s 4 -d 10 -p ack -e 40 -i 358 -a 20 h -t 0.689197 -s 4 -d 10 -p ack -e 40 -i 358 -a 20 r -t 0.68973 -s 8 -d 9 -p tcp -e 1000 -i 332 -a 21 + -t 0.689731 -s 9 -d 10 -p tcp -e 1000 -i 332 -a 21 - -t 0.689731 -s 9 -d 10 -p tcp -e 1000 -i 332 -a 21 h -t 0.689731 -s 9 -d 10 -p tcp -e 1000 -i 332 -a 21 - -t 0.691064 -s 8 -d 9 -p tcp -e 1000 -i 340 -a 21 h -t 0.691064 -s 8 -d 9 -p tcp -e 1000 -i 340 -a 21 r -t 0.691736 -s 1 -d 6 -p tcp -e 1000 -i 356 -a 12 + -t 0.691736 -s 6 -d 7 -p tcp -e 1000 -i 356 -a 12 d -t 0.691736 -s 6 -d 7 -p tcp -e 1000 -i 356 -a 12 - -t 0.691752 -s 6 -d 7 -p tcp -e 1000 -i 330 -a 13 h -t 0.691752 -s 6 -d 7 -p tcp -e 1000 -i 330 -a 13 r -t 0.692109 -s 9 -d 8 -p ack -e 40 -i 343 -a 20 + -t 0.692109 -s 8 -d 3 -p ack -e 40 -i 343 -a 20 - -t 0.692109 -s 8 -d 3 -p ack -e 40 -i 343 -a 20 h -t 0.692109 -s 8 -d 3 -p ack -e 40 -i 343 -a 20 r -t 0.692536 -s 1 -d 6 -p tcp -e 1000 -i 357 -a 12 + -t 0.692536 -s 6 -d 7 -p tcp -e 1000 -i 357 -a 12 r -t 0.692552 -s 7 -d 2 -p tcp -e 1000 -i 314 -a 14 + -t 0.692552 -s 2 -d 7 -p ack -e 40 -i 359 -a 14 - -t 0.692552 -s 2 -d 7 -p ack -e 40 -i 359 -a 14 h -t 0.692552 -s 2 -d 7 -p ack -e 40 -i 359 -a 14 r -t 0.692904 -s 7 -d 6 -p ack -e 40 -i 344 -a 14 + -t 0.692904 -s 6 -d 1 -p ack -e 40 -i 344 -a 14 - -t 0.692904 -s 6 -d 1 -p ack -e 40 -i 344 -a 14 h -t 0.692904 -s 6 -d 1 -p ack -e 40 -i 344 -a 14 r -t 0.693229 -s 4 -d 10 -p ack -e 40 -i 358 -a 20 + -t 0.693229 -s 9 -d 8 -p ack -e 40 -i 358 -a 20 - -t 0.693229 -s 9 -d 8 -p ack -e 40 -i 358 -a 20 h -t 0.693229 -s 9 -d 8 -p ack -e 40 -i 358 -a 20 r -t 0.694531 -s 9 -d 10 -p tcp -e 1000 -i 332 -a 21 + -t 0.694531 -s 4 -d 10 -p ack -e 40 -i 360 -a 21 - -t 0.694531 -s 4 -d 10 -p ack -e 40 -i 360 -a 21 h -t 0.694531 -s 4 -d 10 -p ack -e 40 -i 360 -a 21 r -t 0.695064 -s 8 -d 9 -p tcp -e 1000 -i 329 -a 20 + -t 0.695064 -s 9 -d 10 -p tcp -e 1000 -i 329 -a 20 - -t 0.695064 -s 9 -d 10 -p tcp -e 1000 -i 329 -a 20 h -t 0.695064 -s 9 -d 10 -p tcp -e 1000 -i 329 -a 20 r -t 0.695141 -s 8 -d 3 -p ack -e 40 -i 343 -a 20 r -t 0.695752 -s 6 -d 7 -p tcp -e 1000 -i 318 -a 13 + -t 0.695752 -s 7 -d 2 -p tcp -e 1000 -i 318 -a 13 - -t 0.695752 -s 7 -d 2 -p tcp -e 1000 -i 318 -a 13 h -t 0.695752 -s 7 -d 2 -p tcp -e 1000 -i 318 -a 13 r -t 0.695936 -s 6 -d 1 -p ack -e 40 -i 344 -a 14 + -t 0.695936 -s 1 -d 6 -p tcp -e 1000 -i 361 -a 14 - -t 0.695936 -s 1 -d 6 -p tcp -e 1000 -i 361 -a 14 h -t 0.695936 -s 1 -d 6 -p tcp -e 1000 -i 361 -a 14 + -t 0.695936 -s 1 -d 6 -p tcp -e 1000 -i 362 -a 14 - -t 0.696397 -s 8 -d 9 -p tcp -e 1000 -i 353 -a 22 h -t 0.696397 -s 8 -d 9 -p tcp -e 1000 -i 353 -a 22 r -t 0.696584 -s 2 -d 7 -p ack -e 40 -i 359 -a 14 + -t 0.696584 -s 7 -d 6 -p ack -e 40 -i 359 -a 14 - -t 0.696584 -s 7 -d 6 -p ack -e 40 -i 359 -a 14 h -t 0.696584 -s 7 -d 6 -p ack -e 40 -i 359 -a 14 - -t 0.696736 -s 1 -d 6 -p tcp -e 1000 -i 362 -a 14 h -t 0.696736 -s 1 -d 6 -p tcp -e 1000 -i 362 -a 14 r -t 0.697442 -s 9 -d 8 -p ack -e 40 -i 348 -a 20 + -t 0.697443 -s 8 -d 3 -p ack -e 40 -i 348 -a 20 - -t 0.697443 -s 8 -d 3 -p ack -e 40 -i 348 -a 20 h -t 0.697443 -s 8 -d 3 -p ack -e 40 -i 348 -a 20 r -t 0.698563 -s 4 -d 10 -p ack -e 40 -i 360 -a 21 + -t 0.698563 -s 9 -d 8 -p ack -e 40 -i 360 -a 21 - -t 0.698563 -s 9 -d 8 -p ack -e 40 -i 360 -a 21 h -t 0.698563 -s 9 -d 8 -p ack -e 40 -i 360 -a 21 r -t 0.699736 -s 1 -d 6 -p tcp -e 1000 -i 361 -a 14 + -t 0.699736 -s 6 -d 7 -p tcp -e 1000 -i 361 -a 14 d -t 0.699736 -s 6 -d 7 -p tcp -e 1000 -i 361 -a 14 - -t 0.699752 -s 6 -d 7 -p tcp -e 1000 -i 331 -a 13 h -t 0.699752 -s 6 -d 7 -p tcp -e 1000 -i 331 -a 13 r -t 0.699864 -s 9 -d 10 -p tcp -e 1000 -i 329 -a 20 + -t 0.699864 -s 4 -d 10 -p ack -e 40 -i 363 -a 20 - -t 0.699864 -s 4 -d 10 -p ack -e 40 -i 363 -a 20 h -t 0.699864 -s 4 -d 10 -p ack -e 40 -i 363 -a 20 v -t 0.700002 -e take_snapshot r -t 0.700397 -s 8 -d 9 -p tcp -e 1000 -i 333 -a 21 + -t 0.700397 -s 9 -d 10 -p tcp -e 1000 -i 333 -a 21 - -t 0.700397 -s 9 -d 10 -p tcp -e 1000 -i 333 -a 21 h -t 0.700397 -s 9 -d 10 -p tcp -e 1000 -i 333 -a 21 r -t 0.700475 -s 8 -d 3 -p ack -e 40 -i 348 -a 20 + -t 0.700475 -s 3 -d 8 -p tcp -e 1000 -i 364 -a 20 - -t 0.700475 -s 3 -d 8 -p tcp -e 1000 -i 364 -a 20 h -t 0.700475 -s 3 -d 8 -p tcp -e 1000 -i 364 -a 20 + -t 0.700475 -s 3 -d 8 -p tcp -e 1000 -i 365 -a 20 + -t 0.700475 -s 3 -d 8 -p tcp -e 1000 -i 366 -a 20 r -t 0.700536 -s 1 -d 6 -p tcp -e 1000 -i 362 -a 14 + -t 0.700536 -s 6 -d 7 -p tcp -e 1000 -i 362 -a 14 r -t 0.700552 -s 7 -d 2 -p tcp -e 1000 -i 318 -a 13 + -t 0.700552 -s 2 -d 7 -p ack -e 40 -i 367 -a 13 - -t 0.700552 -s 2 -d 7 -p ack -e 40 -i 367 -a 13 h -t 0.700552 -s 2 -d 7 -p ack -e 40 -i 367 -a 13 r -t 0.700904 -s 7 -d 6 -p ack -e 40 -i 349 -a 14 + -t 0.700904 -s 6 -d 1 -p ack -e 40 -i 349 -a 14 - -t 0.700904 -s 6 -d 1 -p ack -e 40 -i 349 -a 14 h -t 0.700904 -s 6 -d 1 -p ack -e 40 -i 349 -a 14 - -t 0.701275 -s 3 -d 8 -p tcp -e 1000 -i 365 -a 20 h -t 0.701275 -s 3 -d 8 -p tcp -e 1000 -i 365 -a 20 - -t 0.702075 -s 3 -d 8 -p tcp -e 1000 -i 366 -a 20 h -t 0.702075 -s 3 -d 8 -p tcp -e 1000 -i 366 -a 20 r -t 0.702776 -s 9 -d 8 -p ack -e 40 -i 350 -a 20 + -t 0.702776 -s 8 -d 3 -p ack -e 40 -i 350 -a 20 - -t 0.702776 -s 8 -d 3 -p ack -e 40 -i 350 -a 20 h -t 0.702776 -s 8 -d 3 -p ack -e 40 -i 350 -a 20 r -t 0.703752 -s 6 -d 7 -p tcp -e 1000 -i 324 -a 13 + -t 0.703752 -s 7 -d 2 -p tcp -e 1000 -i 324 -a 13 - -t 0.703752 -s 7 -d 2 -p tcp -e 1000 -i 324 -a 13 h -t 0.703752 -s 7 -d 2 -p tcp -e 1000 -i 324 -a 13 r -t 0.703896 -s 4 -d 10 -p ack -e 40 -i 363 -a 20 + -t 0.703896 -s 9 -d 8 -p ack -e 40 -i 363 -a 20 - -t 0.703896 -s 9 -d 8 -p ack -e 40 -i 363 -a 20 h -t 0.703896 -s 9 -d 8 -p ack -e 40 -i 363 -a 20 r -t 0.703936 -s 6 -d 1 -p ack -e 40 -i 349 -a 14 + -t 0.703936 -s 1 -d 6 -p tcp -e 1000 -i 368 -a 14 - -t 0.703936 -s 1 -d 6 -p tcp -e 1000 -i 368 -a 14 h -t 0.703936 -s 1 -d 6 -p tcp -e 1000 -i 368 -a 14 + -t 0.703936 -s 1 -d 6 -p tcp -e 1000 -i 369 -a 14 r -t 0.704275 -s 3 -d 8 -p tcp -e 1000 -i 364 -a 20 + -t 0.704275 -s 8 -d 9 -p tcp -e 1000 -i 364 -a 20 - -t 0.704275 -s 8 -d 9 -p tcp -e 1000 -i 364 -a 20 h -t 0.704275 -s 8 -d 9 -p tcp -e 1000 -i 364 -a 20 r -t 0.704584 -s 2 -d 7 -p ack -e 40 -i 367 -a 13 + -t 0.704584 -s 7 -d 6 -p ack -e 40 -i 367 -a 13 - -t 0.704584 -s 7 -d 6 -p ack -e 40 -i 367 -a 13 h -t 0.704584 -s 7 -d 6 -p ack -e 40 -i 367 -a 13 - -t 0.704736 -s 1 -d 6 -p tcp -e 1000 -i 369 -a 14 h -t 0.704736 -s 1 -d 6 -p tcp -e 1000 -i 369 -a 14 r -t 0.705075 -s 3 -d 8 -p tcp -e 1000 -i 365 -a 20 + -t 0.705075 -s 8 -d 9 -p tcp -e 1000 -i 365 -a 20 r -t 0.705197 -s 9 -d 10 -p tcp -e 1000 -i 333 -a 21 + -t 0.705197 -s 4 -d 10 -p ack -e 40 -i 370 -a 21 - -t 0.705197 -s 4 -d 10 -p ack -e 40 -i 370 -a 21 h -t 0.705197 -s 4 -d 10 -p ack -e 40 -i 370 -a 21 r -t 0.70573 -s 8 -d 9 -p tcp -e 1000 -i 334 -a 21 + -t 0.705731 -s 9 -d 10 -p tcp -e 1000 -i 334 -a 21 - -t 0.705731 -s 9 -d 10 -p tcp -e 1000 -i 334 -a 21 h -t 0.705731 -s 9 -d 10 -p tcp -e 1000 -i 334 -a 21 r -t 0.705808 -s 8 -d 3 -p ack -e 40 -i 350 -a 20 r -t 0.705875 -s 3 -d 8 -p tcp -e 1000 -i 366 -a 20 + -t 0.705875 -s 8 -d 9 -p tcp -e 1000 -i 366 -a 20 r -t 0.707736 -s 1 -d 6 -p tcp -e 1000 -i 368 -a 14 + -t 0.707736 -s 6 -d 7 -p tcp -e 1000 -i 368 -a 14 d -t 0.707736 -s 6 -d 7 -p tcp -e 1000 -i 368 -a 14 - -t 0.707752 -s 6 -d 7 -p tcp -e 1000 -i 336 -a 13 h -t 0.707752 -s 6 -d 7 -p tcp -e 1000 -i 336 -a 13 r -t 0.708109 -s 9 -d 8 -p ack -e 40 -i 354 -a 20 + -t 0.708109 -s 8 -d 3 -p ack -e 40 -i 354 -a 20 - -t 0.708109 -s 8 -d 3 -p ack -e 40 -i 354 -a 20 h -t 0.708109 -s 8 -d 3 -p ack -e 40 -i 354 -a 20 r -t 0.708536 -s 1 -d 6 -p tcp -e 1000 -i 369 -a 14 + -t 0.708536 -s 6 -d 7 -p tcp -e 1000 -i 369 -a 14 r -t 0.708552 -s 7 -d 2 -p tcp -e 1000 -i 324 -a 13 + -t 0.708552 -s 2 -d 7 -p ack -e 40 -i 371 -a 13 - -t 0.708552 -s 2 -d 7 -p ack -e 40 -i 371 -a 13 h -t 0.708552 -s 2 -d 7 -p ack -e 40 -i 371 -a 13 r -t 0.708904 -s 7 -d 6 -p ack -e 40 -i 355 -a 13 + -t 0.708904 -s 6 -d 1 -p ack -e 40 -i 355 -a 13 - -t 0.708904 -s 6 -d 1 -p ack -e 40 -i 355 -a 13 h -t 0.708904 -s 6 -d 1 -p ack -e 40 -i 355 -a 13 r -t 0.709229 -s 4 -d 10 -p ack -e 40 -i 370 -a 21 + -t 0.709229 -s 9 -d 8 -p ack -e 40 -i 370 -a 21 - -t 0.709229 -s 9 -d 8 -p ack -e 40 -i 370 -a 21 h -t 0.709229 -s 9 -d 8 -p ack -e 40 -i 370 -a 21 - -t 0.709608 -s 8 -d 9 -p tcp -e 1000 -i 365 -a 20 h -t 0.709608 -s 8 -d 9 -p tcp -e 1000 -i 365 -a 20 r -t 0.710531 -s 9 -d 10 -p tcp -e 1000 -i 334 -a 21 + -t 0.710531 -s 4 -d 10 -p ack -e 40 -i 372 -a 21 - -t 0.710531 -s 4 -d 10 -p ack -e 40 -i 372 -a 21 h -t 0.710531 -s 4 -d 10 -p ack -e 40 -i 372 -a 21 r -t 0.711064 -s 8 -d 9 -p tcp -e 1000 -i 339 -a 21 + -t 0.711064 -s 9 -d 10 -p tcp -e 1000 -i 339 -a 21 - -t 0.711064 -s 9 -d 10 -p tcp -e 1000 -i 339 -a 21 h -t 0.711064 -s 9 -d 10 -p tcp -e 1000 -i 339 -a 21 r -t 0.711141 -s 8 -d 3 -p ack -e 40 -i 354 -a 20 + -t 0.711141 -s 3 -d 8 -p tcp -e 1000 -i 373 -a 20 - -t 0.711141 -s 3 -d 8 -p tcp -e 1000 -i 373 -a 20 h -t 0.711141 -s 3 -d 8 -p tcp -e 1000 -i 373 -a 20 + -t 0.711141 -s 3 -d 8 -p tcp -e 1000 -i 374 -a 20 + -t 0.711141 -s 3 -d 8 -p tcp -e 1000 -i 375 -a 20 r -t 0.711752 -s 6 -d 7 -p tcp -e 1000 -i 325 -a 13 + -t 0.711752 -s 7 -d 2 -p tcp -e 1000 -i 325 -a 13 - -t 0.711752 -s 7 -d 2 -p tcp -e 1000 -i 325 -a 13 h -t 0.711752 -s 7 -d 2 -p tcp -e 1000 -i 325 -a 13 r -t 0.711936 -s 6 -d 1 -p ack -e 40 -i 355 -a 13 + -t 0.711936 -s 1 -d 6 -p tcp -e 1000 -i 376 -a 13 - -t 0.711936 -s 1 -d 6 -p tcp -e 1000 -i 376 -a 13 h -t 0.711936 -s 1 -d 6 -p tcp -e 1000 -i 376 -a 13 + -t 0.711936 -s 1 -d 6 -p tcp -e 1000 -i 377 -a 13 - -t 0.711941 -s 3 -d 8 -p tcp -e 1000 -i 374 -a 20 h -t 0.711941 -s 3 -d 8 -p tcp -e 1000 -i 374 -a 20 r -t 0.712584 -s 2 -d 7 -p ack -e 40 -i 371 -a 13 + -t 0.712584 -s 7 -d 6 -p ack -e 40 -i 371 -a 13 - -t 0.712584 -s 7 -d 6 -p ack -e 40 -i 371 -a 13 h -t 0.712584 -s 7 -d 6 -p ack -e 40 -i 371 -a 13 - -t 0.712736 -s 1 -d 6 -p tcp -e 1000 -i 377 -a 13 h -t 0.712736 -s 1 -d 6 -p tcp -e 1000 -i 377 -a 13 - -t 0.712741 -s 3 -d 8 -p tcp -e 1000 -i 375 -a 20 h -t 0.712741 -s 3 -d 8 -p tcp -e 1000 -i 375 -a 20 r -t 0.713442 -s 9 -d 8 -p ack -e 40 -i 358 -a 20 + -t 0.713443 -s 8 -d 3 -p ack -e 40 -i 358 -a 20 - -t 0.713443 -s 8 -d 3 -p ack -e 40 -i 358 -a 20 h -t 0.713443 -s 8 -d 3 -p ack -e 40 -i 358 -a 20 r -t 0.714563 -s 4 -d 10 -p ack -e 40 -i 372 -a 21 + -t 0.714563 -s 9 -d 8 -p ack -e 40 -i 372 -a 21 - -t 0.714563 -s 9 -d 8 -p ack -e 40 -i 372 -a 21 h -t 0.714563 -s 9 -d 8 -p ack -e 40 -i 372 -a 21 r -t 0.714941 -s 3 -d 8 -p tcp -e 1000 -i 373 -a 20 - -t 0.714941 -s 8 -d 9 -p tcp -e 1000 -i 366 -a 20 h -t 0.714941 -s 8 -d 9 -p tcp -e 1000 -i 366 -a 20 + -t 0.714941 -s 8 -d 9 -p tcp -e 1000 -i 373 -a 20 r -t 0.715736 -s 1 -d 6 -p tcp -e 1000 -i 376 -a 13 + -t 0.715736 -s 6 -d 7 -p tcp -e 1000 -i 376 -a 13 d -t 0.715736 -s 6 -d 7 -p tcp -e 1000 -i 369 -a 14 r -t 0.715741 -s 3 -d 8 -p tcp -e 1000 -i 374 -a 20 + -t 0.715741 -s 8 -d 9 -p tcp -e 1000 -i 374 -a 20 - -t 0.715752 -s 6 -d 7 -p tcp -e 1000 -i 341 -a 11 h -t 0.715752 -s 6 -d 7 -p tcp -e 1000 -i 341 -a 11 r -t 0.715864 -s 9 -d 10 -p tcp -e 1000 -i 339 -a 21 + -t 0.715864 -s 4 -d 10 -p ack -e 40 -i 378 -a 21 - -t 0.715864 -s 4 -d 10 -p ack -e 40 -i 378 -a 21 h -t 0.715864 -s 4 -d 10 -p ack -e 40 -i 378 -a 21 r -t 0.716397 -s 8 -d 9 -p tcp -e 1000 -i 340 -a 21 + -t 0.716397 -s 9 -d 10 -p tcp -e 1000 -i 340 -a 21 - -t 0.716397 -s 9 -d 10 -p tcp -e 1000 -i 340 -a 21 h -t 0.716397 -s 9 -d 10 -p tcp -e 1000 -i 340 -a 21 r -t 0.716475 -s 8 -d 3 -p ack -e 40 -i 358 -a 20 r -t 0.716536 -s 1 -d 6 -p tcp -e 1000 -i 377 -a 13 + -t 0.716536 -s 6 -d 7 -p tcp -e 1000 -i 377 -a 13 r -t 0.716541 -s 3 -d 8 -p tcp -e 1000 -i 375 -a 20 + -t 0.716541 -s 8 -d 9 -p tcp -e 1000 -i 375 -a 20 r -t 0.716552 -s 7 -d 2 -p tcp -e 1000 -i 325 -a 13 + -t 0.716552 -s 2 -d 7 -p ack -e 40 -i 379 -a 13 - -t 0.716552 -s 2 -d 7 -p ack -e 40 -i 379 -a 13 h -t 0.716552 -s 2 -d 7 -p ack -e 40 -i 379 -a 13 r -t 0.716904 -s 7 -d 6 -p ack -e 40 -i 359 -a 14 + -t 0.716904 -s 6 -d 1 -p ack -e 40 -i 359 -a 14 - -t 0.716904 -s 6 -d 1 -p ack -e 40 -i 359 -a 14 h -t 0.716904 -s 6 -d 1 -p ack -e 40 -i 359 -a 14 r -t 0.718776 -s 9 -d 8 -p ack -e 40 -i 360 -a 21 + -t 0.718776 -s 8 -d 3 -p ack -e 40 -i 360 -a 21 - -t 0.718776 -s 8 -d 3 -p ack -e 40 -i 360 -a 21 h -t 0.718776 -s 8 -d 3 -p ack -e 40 -i 360 -a 21 r -t 0.719752 -s 6 -d 7 -p tcp -e 1000 -i 330 -a 13 + -t 0.719752 -s 7 -d 2 -p tcp -e 1000 -i 330 -a 13 - -t 0.719752 -s 7 -d 2 -p tcp -e 1000 -i 330 -a 13 h -t 0.719752 -s 7 -d 2 -p tcp -e 1000 -i 330 -a 13 r -t 0.719896 -s 4 -d 10 -p ack -e 40 -i 378 -a 21 + -t 0.719896 -s 9 -d 8 -p ack -e 40 -i 378 -a 21 - -t 0.719896 -s 9 -d 8 -p ack -e 40 -i 378 -a 21 h -t 0.719896 -s 9 -d 8 -p ack -e 40 -i 378 -a 21 r -t 0.719936 -s 6 -d 1 -p ack -e 40 -i 359 -a 14 + -t 0.719936 -s 1 -d 6 -p tcp -e 1000 -i 380 -a 14 - -t 0.719936 -s 1 -d 6 -p tcp -e 1000 -i 380 -a 14 h -t 0.719936 -s 1 -d 6 -p tcp -e 1000 -i 380 -a 14 + -t 0.719936 -s 1 -d 6 -p tcp -e 1000 -i 381 -a 14 - -t 0.720275 -s 8 -d 9 -p tcp -e 1000 -i 373 -a 20 h -t 0.720275 -s 8 -d 9 -p tcp -e 1000 -i 373 -a 20 r -t 0.720584 -s 2 -d 7 -p ack -e 40 -i 379 -a 13 + -t 0.720584 -s 7 -d 6 -p ack -e 40 -i 379 -a 13 - -t 0.720584 -s 7 -d 6 -p ack -e 40 -i 379 -a 13 h -t 0.720584 -s 7 -d 6 -p ack -e 40 -i 379 -a 13 - -t 0.720736 -s 1 -d 6 -p tcp -e 1000 -i 381 -a 14 h -t 0.720736 -s 1 -d 6 -p tcp -e 1000 -i 381 -a 14 r -t 0.721197 -s 9 -d 10 -p tcp -e 1000 -i 340 -a 21 + -t 0.721197 -s 4 -d 10 -p ack -e 40 -i 382 -a 21 - -t 0.721197 -s 4 -d 10 -p ack -e 40 -i 382 -a 21 h -t 0.721197 -s 4 -d 10 -p ack -e 40 -i 382 -a 21 r -t 0.72173 -s 8 -d 9 -p tcp -e 1000 -i 353 -a 22 + -t 0.721731 -s 9 -d 10 -p tcp -e 1000 -i 353 -a 22 - -t 0.721731 -s 9 -d 10 -p tcp -e 1000 -i 353 -a 22 h -t 0.721731 -s 9 -d 10 -p tcp -e 1000 -i 353 -a 22 r -t 0.721808 -s 8 -d 3 -p ack -e 40 -i 360 -a 21 r -t 0.723736 -s 1 -d 6 -p tcp -e 1000 -i 380 -a 14 + -t 0.723736 -s 6 -d 7 -p tcp -e 1000 -i 380 -a 14 d -t 0.723736 -s 6 -d 7 -p tcp -e 1000 -i 377 -a 13 - -t 0.723752 -s 6 -d 7 -p tcp -e 1000 -i 337 -a 13 h -t 0.723752 -s 6 -d 7 -p tcp -e 1000 -i 337 -a 13 r -t 0.724109 -s 9 -d 8 -p ack -e 40 -i 363 -a 20 + -t 0.724109 -s 8 -d 3 -p ack -e 40 -i 363 -a 20 - -t 0.724109 -s 8 -d 3 -p ack -e 40 -i 363 -a 20 h -t 0.724109 -s 8 -d 3 -p ack -e 40 -i 363 -a 20 r -t 0.724536 -s 1 -d 6 -p tcp -e 1000 -i 381 -a 14 + -t 0.724536 -s 6 -d 7 -p tcp -e 1000 -i 381 -a 14 r -t 0.724552 -s 7 -d 2 -p tcp -e 1000 -i 330 -a 13 + -t 0.724552 -s 2 -d 7 -p ack -e 40 -i 383 -a 13 - -t 0.724552 -s 2 -d 7 -p ack -e 40 -i 383 -a 13 h -t 0.724552 -s 2 -d 7 -p ack -e 40 -i 383 -a 13 r -t 0.724904 -s 7 -d 6 -p ack -e 40 -i 367 -a 13 + -t 0.724904 -s 6 -d 1 -p ack -e 40 -i 367 -a 13 - -t 0.724904 -s 6 -d 1 -p ack -e 40 -i 367 -a 13 h -t 0.724904 -s 6 -d 1 -p ack -e 40 -i 367 -a 13 r -t 0.725229 -s 4 -d 10 -p ack -e 40 -i 382 -a 21 + -t 0.725229 -s 9 -d 8 -p ack -e 40 -i 382 -a 21 - -t 0.725229 -s 9 -d 8 -p ack -e 40 -i 382 -a 21 h -t 0.725229 -s 9 -d 8 -p ack -e 40 -i 382 -a 21 - -t 0.725608 -s 8 -d 9 -p tcp -e 1000 -i 374 -a 20 h -t 0.725608 -s 8 -d 9 -p tcp -e 1000 -i 374 -a 20 r -t 0.726531 -s 9 -d 10 -p tcp -e 1000 -i 353 -a 22 + -t 0.726531 -s 4 -d 10 -p ack -e 40 -i 384 -a 22 - -t 0.726531 -s 4 -d 10 -p ack -e 40 -i 384 -a 22 h -t 0.726531 -s 4 -d 10 -p ack -e 40 -i 384 -a 22 r -t 0.727141 -s 8 -d 3 -p ack -e 40 -i 363 -a 20 + -t 0.727141 -s 3 -d 8 -p tcp -e 1000 -i 385 -a 20 - -t 0.727141 -s 3 -d 8 -p tcp -e 1000 -i 385 -a 20 h -t 0.727141 -s 3 -d 8 -p tcp -e 1000 -i 385 -a 20 + -t 0.727141 -s 3 -d 8 -p tcp -e 1000 -i 386 -a 20 + -t 0.727141 -s 3 -d 8 -p tcp -e 1000 -i 387 -a 20 r -t 0.727752 -s 6 -d 7 -p tcp -e 1000 -i 331 -a 13 + -t 0.727752 -s 7 -d 2 -p tcp -e 1000 -i 331 -a 13 - -t 0.727752 -s 7 -d 2 -p tcp -e 1000 -i 331 -a 13 h -t 0.727752 -s 7 -d 2 -p tcp -e 1000 -i 331 -a 13 r -t 0.727936 -s 6 -d 1 -p ack -e 40 -i 367 -a 13 + -t 0.727936 -s 1 -d 6 -p tcp -e 1000 -i 388 -a 13 - -t 0.727936 -s 1 -d 6 -p tcp -e 1000 -i 388 -a 13 h -t 0.727936 -s 1 -d 6 -p tcp -e 1000 -i 388 -a 13 + -t 0.727936 -s 1 -d 6 -p tcp -e 1000 -i 389 -a 13 - -t 0.727941 -s 3 -d 8 -p tcp -e 1000 -i 386 -a 20 h -t 0.727941 -s 3 -d 8 -p tcp -e 1000 -i 386 -a 20 r -t 0.728584 -s 2 -d 7 -p ack -e 40 -i 383 -a 13 + -t 0.728584 -s 7 -d 6 -p ack -e 40 -i 383 -a 13 - -t 0.728584 -s 7 -d 6 -p ack -e 40 -i 383 -a 13 h -t 0.728584 -s 7 -d 6 -p ack -e 40 -i 383 -a 13 - -t 0.728736 -s 1 -d 6 -p tcp -e 1000 -i 389 -a 13 h -t 0.728736 -s 1 -d 6 -p tcp -e 1000 -i 389 -a 13 - -t 0.728741 -s 3 -d 8 -p tcp -e 1000 -i 387 -a 20 h -t 0.728741 -s 3 -d 8 -p tcp -e 1000 -i 387 -a 20 r -t 0.729442 -s 9 -d 8 -p ack -e 40 -i 370 -a 21 + -t 0.729443 -s 8 -d 3 -p ack -e 40 -i 370 -a 21 - -t 0.729443 -s 8 -d 3 -p ack -e 40 -i 370 -a 21 h -t 0.729443 -s 8 -d 3 -p ack -e 40 -i 370 -a 21 r -t 0.729608 -s 8 -d 9 -p tcp -e 1000 -i 364 -a 20 + -t 0.729608 -s 9 -d 10 -p tcp -e 1000 -i 364 -a 20 - -t 0.729608 -s 9 -d 10 -p tcp -e 1000 -i 364 -a 20 h -t 0.729608 -s 9 -d 10 -p tcp -e 1000 -i 364 -a 20 r -t 0.730563 -s 4 -d 10 -p ack -e 40 -i 384 -a 22 + -t 0.730563 -s 9 -d 8 -p ack -e 40 -i 384 -a 22 - -t 0.730563 -s 9 -d 8 -p ack -e 40 -i 384 -a 22 h -t 0.730563 -s 9 -d 8 -p ack -e 40 -i 384 -a 22 r -t 0.730941 -s 3 -d 8 -p tcp -e 1000 -i 385 -a 20 - -t 0.730941 -s 8 -d 9 -p tcp -e 1000 -i 375 -a 20 h -t 0.730941 -s 8 -d 9 -p tcp -e 1000 -i 375 -a 20 + -t 0.730941 -s 8 -d 9 -p tcp -e 1000 -i 385 -a 20 r -t 0.731736 -s 1 -d 6 -p tcp -e 1000 -i 388 -a 13 + -t 0.731736 -s 6 -d 7 -p tcp -e 1000 -i 388 -a 13 d -t 0.731736 -s 6 -d 7 -p tcp -e 1000 -i 381 -a 14 r -t 0.731741 -s 3 -d 8 -p tcp -e 1000 -i 386 -a 20 + -t 0.731741 -s 8 -d 9 -p tcp -e 1000 -i 386 -a 20 - -t 0.731752 -s 6 -d 7 -p tcp -e 1000 -i 342 -a 11 h -t 0.731752 -s 6 -d 7 -p tcp -e 1000 -i 342 -a 11 r -t 0.732475 -s 8 -d 3 -p ack -e 40 -i 370 -a 21 + -t 0.732475 -s 3 -d 8 -p tcp -e 1000 -i 390 -a 21 - -t 0.732475 -s 3 -d 8 -p tcp -e 1000 -i 390 -a 21 h -t 0.732475 -s 3 -d 8 -p tcp -e 1000 -i 390 -a 21 r -t 0.732536 -s 1 -d 6 -p tcp -e 1000 -i 389 -a 13 + -t 0.732536 -s 6 -d 7 -p tcp -e 1000 -i 389 -a 13 r -t 0.732541 -s 3 -d 8 -p tcp -e 1000 -i 387 -a 20 + -t 0.732541 -s 8 -d 9 -p tcp -e 1000 -i 387 -a 20 r -t 0.732552 -s 7 -d 2 -p tcp -e 1000 -i 331 -a 13 + -t 0.732552 -s 2 -d 7 -p ack -e 40 -i 391 -a 13 - -t 0.732552 -s 2 -d 7 -p ack -e 40 -i 391 -a 13 h -t 0.732552 -s 2 -d 7 -p ack -e 40 -i 391 -a 13 r -t 0.732904 -s 7 -d 6 -p ack -e 40 -i 371 -a 13 + -t 0.732904 -s 6 -d 1 -p ack -e 40 -i 371 -a 13 - -t 0.732904 -s 6 -d 1 -p ack -e 40 -i 371 -a 13 h -t 0.732904 -s 6 -d 1 -p ack -e 40 -i 371 -a 13 r -t 0.734408 -s 9 -d 10 -p tcp -e 1000 -i 364 -a 20 + -t 0.734408 -s 4 -d 10 -p ack -e 40 -i 392 -a 20 - -t 0.734408 -s 4 -d 10 -p ack -e 40 -i 392 -a 20 h -t 0.734408 -s 4 -d 10 -p ack -e 40 -i 392 -a 20 r -t 0.734776 -s 9 -d 8 -p ack -e 40 -i 372 -a 21 + -t 0.734776 -s 8 -d 3 -p ack -e 40 -i 372 -a 21 - -t 0.734776 -s 8 -d 3 -p ack -e 40 -i 372 -a 21 h -t 0.734776 -s 8 -d 3 -p ack -e 40 -i 372 -a 21 r -t 0.734941 -s 8 -d 9 -p tcp -e 1000 -i 365 -a 20 + -t 0.734941 -s 9 -d 10 -p tcp -e 1000 -i 365 -a 20 - -t 0.734941 -s 9 -d 10 -p tcp -e 1000 -i 365 -a 20 h -t 0.734941 -s 9 -d 10 -p tcp -e 1000 -i 365 -a 20 r -t 0.735752 -s 6 -d 7 -p tcp -e 1000 -i 336 -a 13 + -t 0.735752 -s 7 -d 2 -p tcp -e 1000 -i 336 -a 13 - -t 0.735752 -s 7 -d 2 -p tcp -e 1000 -i 336 -a 13 h -t 0.735752 -s 7 -d 2 -p tcp -e 1000 -i 336 -a 13 r -t 0.735936 -s 6 -d 1 -p ack -e 40 -i 371 -a 13 + -t 0.735936 -s 1 -d 6 -p tcp -e 1000 -i 393 -a 13 - -t 0.735936 -s 1 -d 6 -p tcp -e 1000 -i 393 -a 13 h -t 0.735936 -s 1 -d 6 -p tcp -e 1000 -i 393 -a 13 + -t 0.735936 -s 1 -d 6 -p tcp -e 1000 -i 394 -a 13 r -t 0.736275 -s 3 -d 8 -p tcp -e 1000 -i 390 -a 21 - -t 0.736275 -s 8 -d 9 -p tcp -e 1000 -i 385 -a 20 h -t 0.736275 -s 8 -d 9 -p tcp -e 1000 -i 385 -a 20 + -t 0.736275 -s 8 -d 9 -p tcp -e 1000 -i 390 -a 21 r -t 0.736584 -s 2 -d 7 -p ack -e 40 -i 391 -a 13 + -t 0.736584 -s 7 -d 6 -p ack -e 40 -i 391 -a 13 - -t 0.736584 -s 7 -d 6 -p ack -e 40 -i 391 -a 13 h -t 0.736584 -s 7 -d 6 -p ack -e 40 -i 391 -a 13 - -t 0.736736 -s 1 -d 6 -p tcp -e 1000 -i 394 -a 13 h -t 0.736736 -s 1 -d 6 -p tcp -e 1000 -i 394 -a 13 r -t 0.737808 -s 8 -d 3 -p ack -e 40 -i 372 -a 21 + -t 0.737808 -s 3 -d 8 -p tcp -e 1000 -i 395 -a 21 - -t 0.737808 -s 3 -d 8 -p tcp -e 1000 -i 395 -a 21 h -t 0.737808 -s 3 -d 8 -p tcp -e 1000 -i 395 -a 21 r -t 0.73844 -s 4 -d 10 -p ack -e 40 -i 392 -a 20 + -t 0.73844 -s 9 -d 8 -p ack -e 40 -i 392 -a 20 - -t 0.73844 -s 9 -d 8 -p ack -e 40 -i 392 -a 20 h -t 0.73844 -s 9 -d 8 -p ack -e 40 -i 392 -a 20 r -t 0.739736 -s 1 -d 6 -p tcp -e 1000 -i 393 -a 13 + -t 0.739736 -s 6 -d 7 -p tcp -e 1000 -i 393 -a 13 d -t 0.739736 -s 6 -d 7 -p tcp -e 1000 -i 393 -a 13 r -t 0.739741 -s 9 -d 10 -p tcp -e 1000 -i 365 -a 20 + -t 0.739741 -s 4 -d 10 -p ack -e 40 -i 396 -a 20 - -t 0.739741 -s 4 -d 10 -p ack -e 40 -i 396 -a 20 h -t 0.739741 -s 4 -d 10 -p ack -e 40 -i 396 -a 20 - -t 0.739752 -s 6 -d 7 -p tcp -e 1000 -i 345 -a 11 h -t 0.739752 -s 6 -d 7 -p tcp -e 1000 -i 345 -a 11 r -t 0.740109 -s 9 -d 8 -p ack -e 40 -i 378 -a 21 + -t 0.740109 -s 8 -d 3 -p ack -e 40 -i 378 -a 21 - -t 0.740109 -s 8 -d 3 -p ack -e 40 -i 378 -a 21 h -t 0.740109 -s 8 -d 3 -p ack -e 40 -i 378 -a 21 r -t 0.740274 -s 8 -d 9 -p tcp -e 1000 -i 366 -a 20 + -t 0.740275 -s 9 -d 10 -p tcp -e 1000 -i 366 -a 20 - -t 0.740275 -s 9 -d 10 -p tcp -e 1000 -i 366 -a 20 h -t 0.740275 -s 9 -d 10 -p tcp -e 1000 -i 366 -a 20 r -t 0.740536 -s 1 -d 6 -p tcp -e 1000 -i 394 -a 13 + -t 0.740536 -s 6 -d 7 -p tcp -e 1000 -i 394 -a 13 r -t 0.740552 -s 7 -d 2 -p tcp -e 1000 -i 336 -a 13 + -t 0.740552 -s 2 -d 7 -p ack -e 40 -i 397 -a 13 - -t 0.740552 -s 2 -d 7 -p ack -e 40 -i 397 -a 13 h -t 0.740552 -s 2 -d 7 -p ack -e 40 -i 397 -a 13 r -t 0.740904 -s 7 -d 6 -p ack -e 40 -i 379 -a 13 + -t 0.740904 -s 6 -d 1 -p ack -e 40 -i 379 -a 13 - -t 0.740904 -s 6 -d 1 -p ack -e 40 -i 379 -a 13 h -t 0.740904 -s 6 -d 1 -p ack -e 40 -i 379 -a 13 r -t 0.741608 -s 3 -d 8 -p tcp -e 1000 -i 395 -a 21 - -t 0.741608 -s 8 -d 9 -p tcp -e 1000 -i 386 -a 20 h -t 0.741608 -s 8 -d 9 -p tcp -e 1000 -i 386 -a 20 + -t 0.741608 -s 8 -d 9 -p tcp -e 1000 -i 395 -a 21 r -t 0.743141 -s 8 -d 3 -p ack -e 40 -i 378 -a 21 + -t 0.743141 -s 3 -d 8 -p tcp -e 1000 -i 398 -a 21 - -t 0.743141 -s 3 -d 8 -p tcp -e 1000 -i 398 -a 21 h -t 0.743141 -s 3 -d 8 -p tcp -e 1000 -i 398 -a 21 r -t 0.743752 -s 6 -d 7 -p tcp -e 1000 -i 341 -a 11 + -t 0.743752 -s 7 -d 2 -p tcp -e 1000 -i 341 -a 11 - -t 0.743752 -s 7 -d 2 -p tcp -e 1000 -i 341 -a 11 h -t 0.743752 -s 7 -d 2 -p tcp -e 1000 -i 341 -a 11 r -t 0.743773 -s 4 -d 10 -p ack -e 40 -i 396 -a 20 + -t 0.743773 -s 9 -d 8 -p ack -e 40 -i 396 -a 20 - -t 0.743773 -s 9 -d 8 -p ack -e 40 -i 396 -a 20 h -t 0.743773 -s 9 -d 8 -p ack -e 40 -i 396 -a 20 r -t 0.743936 -s 6 -d 1 -p ack -e 40 -i 379 -a 13 + -t 0.743936 -s 1 -d 6 -p tcp -e 1000 -i 399 -a 13 - -t 0.743936 -s 1 -d 6 -p tcp -e 1000 -i 399 -a 13 h -t 0.743936 -s 1 -d 6 -p tcp -e 1000 -i 399 -a 13 + -t 0.743936 -s 1 -d 6 -p tcp -e 1000 -i 400 -a 13 r -t 0.744584 -s 2 -d 7 -p ack -e 40 -i 397 -a 13 + -t 0.744584 -s 7 -d 6 -p ack -e 40 -i 397 -a 13 - -t 0.744584 -s 7 -d 6 -p ack -e 40 -i 397 -a 13 h -t 0.744584 -s 7 -d 6 -p ack -e 40 -i 397 -a 13 - -t 0.744736 -s 1 -d 6 -p tcp -e 1000 -i 400 -a 13 h -t 0.744736 -s 1 -d 6 -p tcp -e 1000 -i 400 -a 13 r -t 0.745075 -s 9 -d 10 -p tcp -e 1000 -i 366 -a 20 + -t 0.745075 -s 4 -d 10 -p ack -e 40 -i 401 -a 20 - -t 0.745075 -s 4 -d 10 -p ack -e 40 -i 401 -a 20 h -t 0.745075 -s 4 -d 10 -p ack -e 40 -i 401 -a 20 r -t 0.745442 -s 9 -d 8 -p ack -e 40 -i 382 -a 21 + -t 0.745443 -s 8 -d 3 -p ack -e 40 -i 382 -a 21 - -t 0.745443 -s 8 -d 3 -p ack -e 40 -i 382 -a 21 h -t 0.745443 -s 8 -d 3 -p ack -e 40 -i 382 -a 21 r -t 0.745608 -s 8 -d 9 -p tcp -e 1000 -i 373 -a 20 + -t 0.745608 -s 9 -d 10 -p tcp -e 1000 -i 373 -a 20 - -t 0.745608 -s 9 -d 10 -p tcp -e 1000 -i 373 -a 20 h -t 0.745608 -s 9 -d 10 -p tcp -e 1000 -i 373 -a 20 r -t 0.746941 -s 3 -d 8 -p tcp -e 1000 -i 398 -a 21 - -t 0.746941 -s 8 -d 9 -p tcp -e 1000 -i 390 -a 21 h -t 0.746941 -s 8 -d 9 -p tcp -e 1000 -i 390 -a 21 + -t 0.746941 -s 8 -d 9 -p tcp -e 1000 -i 398 -a 21 r -t 0.747736 -s 1 -d 6 -p tcp -e 1000 -i 399 -a 13 + -t 0.747736 -s 6 -d 7 -p tcp -e 1000 -i 399 -a 13 d -t 0.747736 -s 6 -d 7 -p tcp -e 1000 -i 399 -a 13 - -t 0.747752 -s 6 -d 7 -p tcp -e 1000 -i 346 -a 11 h -t 0.747752 -s 6 -d 7 -p tcp -e 1000 -i 346 -a 11 r -t 0.748475 -s 8 -d 3 -p ack -e 40 -i 382 -a 21 + -t 0.748475 -s 3 -d 8 -p tcp -e 1000 -i 402 -a 21 - -t 0.748475 -s 3 -d 8 -p tcp -e 1000 -i 402 -a 21 h -t 0.748475 -s 3 -d 8 -p tcp -e 1000 -i 402 -a 21 + -t 0.748475 -s 3 -d 8 -p tcp -e 1000 -i 403 -a 21 r -t 0.748536 -s 1 -d 6 -p tcp -e 1000 -i 400 -a 13 + -t 0.748536 -s 6 -d 7 -p tcp -e 1000 -i 400 -a 13 r -t 0.748552 -s 7 -d 2 -p tcp -e 1000 -i 341 -a 11 + -t 0.748552 -s 2 -d 7 -p ack -e 40 -i 404 -a 11 - -t 0.748552 -s 2 -d 7 -p ack -e 40 -i 404 -a 11 h -t 0.748552 -s 2 -d 7 -p ack -e 40 -i 404 -a 11 r -t 0.748904 -s 7 -d 6 -p ack -e 40 -i 383 -a 13 + -t 0.748904 -s 6 -d 1 -p ack -e 40 -i 383 -a 13 - -t 0.748904 -s 6 -d 1 -p ack -e 40 -i 383 -a 13 h -t 0.748904 -s 6 -d 1 -p ack -e 40 -i 383 -a 13 r -t 0.749107 -s 4 -d 10 -p ack -e 40 -i 401 -a 20 + -t 0.749107 -s 9 -d 8 -p ack -e 40 -i 401 -a 20 - -t 0.749107 -s 9 -d 8 -p ack -e 40 -i 401 -a 20 h -t 0.749107 -s 9 -d 8 -p ack -e 40 -i 401 -a 20 - -t 0.749275 -s 3 -d 8 -p tcp -e 1000 -i 403 -a 21 h -t 0.749275 -s 3 -d 8 -p tcp -e 1000 -i 403 -a 21 v -t 0.750000 -e take_snapshot r -t 0.750408 -s 9 -d 10 -p tcp -e 1000 -i 373 -a 20 + -t 0.750408 -s 4 -d 10 -p ack -e 40 -i 405 -a 20 - -t 0.750408 -s 4 -d 10 -p ack -e 40 -i 405 -a 20 h -t 0.750408 -s 4 -d 10 -p ack -e 40 -i 405 -a 20 r -t 0.750776 -s 9 -d 8 -p ack -e 40 -i 384 -a 22 + -t 0.750776 -s 8 -d 3 -p ack -e 40 -i 384 -a 22 - -t 0.750776 -s 8 -d 3 -p ack -e 40 -i 384 -a 22 h -t 0.750776 -s 8 -d 3 -p ack -e 40 -i 384 -a 22 r -t 0.750941 -s 8 -d 9 -p tcp -e 1000 -i 374 -a 20 + -t 0.750941 -s 9 -d 10 -p tcp -e 1000 -i 374 -a 20 - -t 0.750941 -s 9 -d 10 -p tcp -e 1000 -i 374 -a 20 h -t 0.750941 -s 9 -d 10 -p tcp -e 1000 -i 374 -a 20 r -t 0.751752 -s 6 -d 7 -p tcp -e 1000 -i 337 -a 13 + -t 0.751752 -s 7 -d 2 -p tcp -e 1000 -i 337 -a 13 - -t 0.751752 -s 7 -d 2 -p tcp -e 1000 -i 337 -a 13 h -t 0.751752 -s 7 -d 2 -p tcp -e 1000 -i 337 -a 13 r -t 0.751936 -s 6 -d 1 -p ack -e 40 -i 383 -a 13 + -t 0.751936 -s 1 -d 6 -p tcp -e 1000 -i 406 -a 13 - -t 0.751936 -s 1 -d 6 -p tcp -e 1000 -i 406 -a 13 h -t 0.751936 -s 1 -d 6 -p tcp -e 1000 -i 406 -a 13 + -t 0.751936 -s 1 -d 6 -p tcp -e 1000 -i 407 -a 13 r -t 0.752275 -s 3 -d 8 -p tcp -e 1000 -i 402 -a 21 - -t 0.752275 -s 8 -d 9 -p tcp -e 1000 -i 387 -a 20 h -t 0.752275 -s 8 -d 9 -p tcp -e 1000 -i 387 -a 20 + -t 0.752275 -s 8 -d 9 -p tcp -e 1000 -i 402 -a 21 r -t 0.752584 -s 2 -d 7 -p ack -e 40 -i 404 -a 11 + -t 0.752584 -s 7 -d 6 -p ack -e 40 -i 404 -a 11 - -t 0.752584 -s 7 -d 6 -p ack -e 40 -i 404 -a 11 h -t 0.752584 -s 7 -d 6 -p ack -e 40 -i 404 -a 11 - -t 0.752736 -s 1 -d 6 -p tcp -e 1000 -i 407 -a 13 h -t 0.752736 -s 1 -d 6 -p tcp -e 1000 -i 407 -a 13 r -t 0.753075 -s 3 -d 8 -p tcp -e 1000 -i 403 -a 21 + -t 0.753075 -s 8 -d 9 -p tcp -e 1000 -i 403 -a 21 r -t 0.753808 -s 8 -d 3 -p ack -e 40 -i 384 -a 22 + -t 0.753808 -s 3 -d 8 -p tcp -e 1000 -i 408 -a 22 - -t 0.753808 -s 3 -d 8 -p tcp -e 1000 -i 408 -a 22 h -t 0.753808 -s 3 -d 8 -p tcp -e 1000 -i 408 -a 22 + -t 0.753808 -s 3 -d 8 -p tcp -e 1000 -i 409 -a 22 r -t 0.75444 -s 4 -d 10 -p ack -e 40 -i 405 -a 20 + -t 0.75444 -s 9 -d 8 -p ack -e 40 -i 405 -a 20 - -t 0.75444 -s 9 -d 8 -p ack -e 40 -i 405 -a 20 h -t 0.75444 -s 9 -d 8 -p ack -e 40 -i 405 -a 20 - -t 0.754608 -s 3 -d 8 -p tcp -e 1000 -i 409 -a 22 h -t 0.754608 -s 3 -d 8 -p tcp -e 1000 -i 409 -a 22 r -t 0.755736 -s 1 -d 6 -p tcp -e 1000 -i 406 -a 13 + -t 0.755736 -s 6 -d 7 -p tcp -e 1000 -i 406 -a 13 d -t 0.755736 -s 6 -d 7 -p tcp -e 1000 -i 406 -a 13 r -t 0.755741 -s 9 -d 10 -p tcp -e 1000 -i 374 -a 20 + -t 0.755741 -s 4 -d 10 -p ack -e 40 -i 410 -a 20 - -t 0.755741 -s 4 -d 10 -p ack -e 40 -i 410 -a 20 h -t 0.755741 -s 4 -d 10 -p ack -e 40 -i 410 -a 20 - -t 0.755752 -s 6 -d 7 -p tcp -e 1000 -i 352 -a 14 h -t 0.755752 -s 6 -d 7 -p tcp -e 1000 -i 352 -a 14 + -t 0.755936 -s 1 -d 6 -p tcp -e 1000 -i 411 -a 10 - -t 0.755936 -s 1 -d 6 -p tcp -e 1000 -i 411 -a 10 h -t 0.755936 -s 1 -d 6 -p tcp -e 1000 -i 411 -a 10 r -t 0.756274 -s 8 -d 9 -p tcp -e 1000 -i 375 -a 20 + -t 0.756275 -s 9 -d 10 -p tcp -e 1000 -i 375 -a 20 - -t 0.756275 -s 9 -d 10 -p tcp -e 1000 -i 375 -a 20 h -t 0.756275 -s 9 -d 10 -p tcp -e 1000 -i 375 -a 20 r -t 0.756536 -s 1 -d 6 -p tcp -e 1000 -i 407 -a 13 + -t 0.756536 -s 6 -d 7 -p tcp -e 1000 -i 407 -a 13 r -t 0.756552 -s 7 -d 2 -p tcp -e 1000 -i 337 -a 13 + -t 0.756552 -s 2 -d 7 -p ack -e 40 -i 412 -a 13 - -t 0.756552 -s 2 -d 7 -p ack -e 40 -i 412 -a 13 h -t 0.756552 -s 2 -d 7 -p ack -e 40 -i 412 -a 13 r -t 0.756904 -s 7 -d 6 -p ack -e 40 -i 391 -a 13 + -t 0.756904 -s 6 -d 1 -p ack -e 40 -i 391 -a 13 - -t 0.756904 -s 6 -d 1 -p ack -e 40 -i 391 -a 13 h -t 0.756904 -s 6 -d 1 -p ack -e 40 -i 391 -a 13 r -t 0.757608 -s 3 -d 8 -p tcp -e 1000 -i 408 -a 22 - -t 0.757608 -s 8 -d 9 -p tcp -e 1000 -i 395 -a 21 h -t 0.757608 -s 8 -d 9 -p tcp -e 1000 -i 395 -a 21 + -t 0.757608 -s 8 -d 9 -p tcp -e 1000 -i 408 -a 22 r -t 0.758408 -s 3 -d 8 -p tcp -e 1000 -i 409 -a 22 + -t 0.758408 -s 8 -d 9 -p tcp -e 1000 -i 409 -a 22 r -t 0.758653 -s 9 -d 8 -p ack -e 40 -i 392 -a 20 + -t 0.758653 -s 8 -d 3 -p ack -e 40 -i 392 -a 20 - -t 0.758653 -s 8 -d 3 -p ack -e 40 -i 392 -a 20 h -t 0.758653 -s 8 -d 3 -p ack -e 40 -i 392 -a 20 r -t 0.759736 -s 1 -d 6 -p tcp -e 1000 -i 411 -a 10 + -t 0.759736 -s 6 -d 7 -p tcp -e 1000 -i 411 -a 10 d -t 0.759736 -s 6 -d 7 -p tcp -e 1000 -i 407 -a 13 r -t 0.759752 -s 6 -d 7 -p tcp -e 1000 -i 342 -a 11 + -t 0.759752 -s 7 -d 2 -p tcp -e 1000 -i 342 -a 11 - -t 0.759752 -s 7 -d 2 -p tcp -e 1000 -i 342 -a 11 h -t 0.759752 -s 7 -d 2 -p tcp -e 1000 -i 342 -a 11 r -t 0.759773 -s 4 -d 10 -p ack -e 40 -i 410 -a 20 + -t 0.759773 -s 9 -d 8 -p ack -e 40 -i 410 -a 20 - -t 0.759773 -s 9 -d 8 -p ack -e 40 -i 410 -a 20 h -t 0.759773 -s 9 -d 8 -p ack -e 40 -i 410 -a 20 r -t 0.759936 -s 6 -d 1 -p ack -e 40 -i 391 -a 13 + -t 0.759936 -s 1 -d 6 -p tcp -e 1000 -i 413 -a 13 - -t 0.759936 -s 1 -d 6 -p tcp -e 1000 -i 413 -a 13 h -t 0.759936 -s 1 -d 6 -p tcp -e 1000 -i 413 -a 13 + -t 0.759936 -s 1 -d 6 -p tcp -e 1000 -i 414 -a 13 r -t 0.760584 -s 2 -d 7 -p ack -e 40 -i 412 -a 13 + -t 0.760584 -s 7 -d 6 -p ack -e 40 -i 412 -a 13 - -t 0.760584 -s 7 -d 6 -p ack -e 40 -i 412 -a 13 h -t 0.760584 -s 7 -d 6 -p ack -e 40 -i 412 -a 13 - -t 0.760736 -s 1 -d 6 -p tcp -e 1000 -i 414 -a 13 h -t 0.760736 -s 1 -d 6 -p tcp -e 1000 -i 414 -a 13 r -t 0.761075 -s 9 -d 10 -p tcp -e 1000 -i 375 -a 20 + -t 0.761075 -s 4 -d 10 -p ack -e 40 -i 415 -a 20 - -t 0.761075 -s 4 -d 10 -p ack -e 40 -i 415 -a 20 h -t 0.761075 -s 4 -d 10 -p ack -e 40 -i 415 -a 20 r -t 0.761608 -s 8 -d 9 -p tcp -e 1000 -i 385 -a 20 + -t 0.761608 -s 9 -d 10 -p tcp -e 1000 -i 385 -a 20 - -t 0.761608 -s 9 -d 10 -p tcp -e 1000 -i 385 -a 20 h -t 0.761608 -s 9 -d 10 -p tcp -e 1000 -i 385 -a 20 r -t 0.761685 -s 8 -d 3 -p ack -e 40 -i 392 -a 20 - -t 0.762941 -s 8 -d 9 -p tcp -e 1000 -i 398 -a 21 h -t 0.762941 -s 8 -d 9 -p tcp -e 1000 -i 398 -a 21 r -t 0.763736 -s 1 -d 6 -p tcp -e 1000 -i 413 -a 13 + -t 0.763736 -s 6 -d 7 -p tcp -e 1000 -i 413 -a 13 d -t 0.763736 -s 6 -d 7 -p tcp -e 1000 -i 413 -a 13 - -t 0.763752 -s 6 -d 7 -p tcp -e 1000 -i 357 -a 12 h -t 0.763752 -s 6 -d 7 -p tcp -e 1000 -i 357 -a 12 r -t 0.763986 -s 9 -d 8 -p ack -e 40 -i 396 -a 20 + -t 0.763987 -s 8 -d 3 -p ack -e 40 -i 396 -a 20 - -t 0.763987 -s 8 -d 3 -p ack -e 40 -i 396 -a 20 h -t 0.763987 -s 8 -d 3 -p ack -e 40 -i 396 -a 20 r -t 0.764536 -s 1 -d 6 -p tcp -e 1000 -i 414 -a 13 + -t 0.764536 -s 6 -d 7 -p tcp -e 1000 -i 414 -a 13 r -t 0.764552 -s 7 -d 2 -p tcp -e 1000 -i 342 -a 11 + -t 0.764552 -s 2 -d 7 -p ack -e 40 -i 416 -a 11 - -t 0.764552 -s 2 -d 7 -p ack -e 40 -i 416 -a 11 h -t 0.764552 -s 2 -d 7 -p ack -e 40 -i 416 -a 11 r -t 0.764904 -s 7 -d 6 -p ack -e 40 -i 397 -a 13 + -t 0.764904 -s 6 -d 1 -p ack -e 40 -i 397 -a 13 - -t 0.764904 -s 6 -d 1 -p ack -e 40 -i 397 -a 13 h -t 0.764904 -s 6 -d 1 -p ack -e 40 -i 397 -a 13 r -t 0.765107 -s 4 -d 10 -p ack -e 40 -i 415 -a 20 + -t 0.765107 -s 9 -d 8 -p ack -e 40 -i 415 -a 20 - -t 0.765107 -s 9 -d 8 -p ack -e 40 -i 415 -a 20 h -t 0.765107 -s 9 -d 8 -p ack -e 40 -i 415 -a 20 r -t 0.766408 -s 9 -d 10 -p tcp -e 1000 -i 385 -a 20 + -t 0.766408 -s 4 -d 10 -p ack -e 40 -i 417 -a 20 - -t 0.766408 -s 4 -d 10 -p ack -e 40 -i 417 -a 20 h -t 0.766408 -s 4 -d 10 -p ack -e 40 -i 417 -a 20 r -t 0.766941 -s 8 -d 9 -p tcp -e 1000 -i 386 -a 20 + -t 0.766941 -s 9 -d 10 -p tcp -e 1000 -i 386 -a 20 - -t 0.766941 -s 9 -d 10 -p tcp -e 1000 -i 386 -a 20 h -t 0.766941 -s 9 -d 10 -p tcp -e 1000 -i 386 -a 20 r -t 0.767019 -s 8 -d 3 -p ack -e 40 -i 396 -a 20 + -t 0.767019 -s 3 -d 8 -p tcp -e 1000 -i 418 -a 20 - -t 0.767019 -s 3 -d 8 -p tcp -e 1000 -i 418 -a 20 h -t 0.767019 -s 3 -d 8 -p tcp -e 1000 -i 418 -a 20 + -t 0.767019 -s 3 -d 8 -p tcp -e 1000 -i 419 -a 20 + -t 0.767019 -s 3 -d 8 -p tcp -e 1000 -i 420 -a 20 r -t 0.767752 -s 6 -d 7 -p tcp -e 1000 -i 345 -a 11 + -t 0.767752 -s 7 -d 2 -p tcp -e 1000 -i 345 -a 11 - -t 0.767752 -s 7 -d 2 -p tcp -e 1000 -i 345 -a 11 h -t 0.767752 -s 7 -d 2 -p tcp -e 1000 -i 345 -a 11 - -t 0.767819 -s 3 -d 8 -p tcp -e 1000 -i 419 -a 20 h -t 0.767819 -s 3 -d 8 -p tcp -e 1000 -i 419 -a 20 r -t 0.767936 -s 6 -d 1 -p ack -e 40 -i 397 -a 13 + -t 0.767936 -s 1 -d 6 -p tcp -e 1000 -i 421 -a 13 - -t 0.767936 -s 1 -d 6 -p tcp -e 1000 -i 421 -a 13 h -t 0.767936 -s 1 -d 6 -p tcp -e 1000 -i 421 -a 13 + -t 0.767936 -s 1 -d 6 -p tcp -e 1000 -i 422 -a 13 - -t 0.768275 -s 8 -d 9 -p tcp -e 1000 -i 402 -a 21 h -t 0.768275 -s 8 -d 9 -p tcp -e 1000 -i 402 -a 21 r -t 0.768584 -s 2 -d 7 -p ack -e 40 -i 416 -a 11 + -t 0.768584 -s 7 -d 6 -p ack -e 40 -i 416 -a 11 - -t 0.768584 -s 7 -d 6 -p ack -e 40 -i 416 -a 11 h -t 0.768584 -s 7 -d 6 -p ack -e 40 -i 416 -a 11 - -t 0.768619 -s 3 -d 8 -p tcp -e 1000 -i 420 -a 20 h -t 0.768619 -s 3 -d 8 -p tcp -e 1000 -i 420 -a 20 - -t 0.768736 -s 1 -d 6 -p tcp -e 1000 -i 422 -a 13 h -t 0.768736 -s 1 -d 6 -p tcp -e 1000 -i 422 -a 13 r -t 0.76932 -s 9 -d 8 -p ack -e 40 -i 401 -a 20 + -t 0.76932 -s 8 -d 3 -p ack -e 40 -i 401 -a 20 - -t 0.76932 -s 8 -d 3 -p ack -e 40 -i 401 -a 20 h -t 0.76932 -s 8 -d 3 -p ack -e 40 -i 401 -a 20 r -t 0.77044 -s 4 -d 10 -p ack -e 40 -i 417 -a 20 + -t 0.77044 -s 9 -d 8 -p ack -e 40 -i 417 -a 20 - -t 0.77044 -s 9 -d 8 -p ack -e 40 -i 417 -a 20 h -t 0.77044 -s 9 -d 8 -p ack -e 40 -i 417 -a 20 r -t 0.770819 -s 3 -d 8 -p tcp -e 1000 -i 418 -a 20 + -t 0.770819 -s 8 -d 9 -p tcp -e 1000 -i 418 -a 20 r -t 0.771619 -s 3 -d 8 -p tcp -e 1000 -i 419 -a 20 + -t 0.771619 -s 8 -d 9 -p tcp -e 1000 -i 419 -a 20 r -t 0.771736 -s 1 -d 6 -p tcp -e 1000 -i 421 -a 13 + -t 0.771736 -s 6 -d 7 -p tcp -e 1000 -i 421 -a 13 d -t 0.771736 -s 6 -d 7 -p tcp -e 1000 -i 421 -a 13 r -t 0.771741 -s 9 -d 10 -p tcp -e 1000 -i 386 -a 20 + -t 0.771741 -s 4 -d 10 -p ack -e 40 -i 423 -a 20 - -t 0.771741 -s 4 -d 10 -p ack -e 40 -i 423 -a 20 h -t 0.771741 -s 4 -d 10 -p ack -e 40 -i 423 -a 20 - -t 0.771752 -s 6 -d 7 -p tcp -e 1000 -i 362 -a 14 h -t 0.771752 -s 6 -d 7 -p tcp -e 1000 -i 362 -a 14 r -t 0.772274 -s 8 -d 9 -p tcp -e 1000 -i 390 -a 21 + -t 0.772275 -s 9 -d 10 -p tcp -e 1000 -i 390 -a 21 - -t 0.772275 -s 9 -d 10 -p tcp -e 1000 -i 390 -a 21 h -t 0.772275 -s 9 -d 10 -p tcp -e 1000 -i 390 -a 21 r -t 0.772352 -s 8 -d 3 -p ack -e 40 -i 401 -a 20 r -t 0.772419 -s 3 -d 8 -p tcp -e 1000 -i 420 -a 20 + -t 0.772419 -s 8 -d 9 -p tcp -e 1000 -i 420 -a 20 r -t 0.772536 -s 1 -d 6 -p tcp -e 1000 -i 422 -a 13 + -t 0.772536 -s 6 -d 7 -p tcp -e 1000 -i 422 -a 13 r -t 0.772552 -s 7 -d 2 -p tcp -e 1000 -i 345 -a 11 + -t 0.772552 -s 2 -d 7 -p ack -e 40 -i 424 -a 11 - -t 0.772552 -s 2 -d 7 -p ack -e 40 -i 424 -a 11 h -t 0.772552 -s 2 -d 7 -p ack -e 40 -i 424 -a 11 r -t 0.772904 -s 7 -d 6 -p ack -e 40 -i 404 -a 11 + -t 0.772904 -s 6 -d 1 -p ack -e 40 -i 404 -a 11 - -t 0.772904 -s 6 -d 1 -p ack -e 40 -i 404 -a 11 h -t 0.772904 -s 6 -d 1 -p ack -e 40 -i 404 -a 11 - -t 0.773608 -s 8 -d 9 -p tcp -e 1000 -i 408 -a 22 h -t 0.773608 -s 8 -d 9 -p tcp -e 1000 -i 408 -a 22 r -t 0.774653 -s 9 -d 8 -p ack -e 40 -i 405 -a 20 + -t 0.774653 -s 8 -d 3 -p ack -e 40 -i 405 -a 20 - -t 0.774653 -s 8 -d 3 -p ack -e 40 -i 405 -a 20 h -t 0.774653 -s 8 -d 3 -p ack -e 40 -i 405 -a 20 r -t 0.775752 -s 6 -d 7 -p tcp -e 1000 -i 346 -a 11 + -t 0.775752 -s 7 -d 2 -p tcp -e 1000 -i 346 -a 11 - -t 0.775752 -s 7 -d 2 -p tcp -e 1000 -i 346 -a 11 h -t 0.775752 -s 7 -d 2 -p tcp -e 1000 -i 346 -a 11 r -t 0.775773 -s 4 -d 10 -p ack -e 40 -i 423 -a 20 + -t 0.775773 -s 9 -d 8 -p ack -e 40 -i 423 -a 20 - -t 0.775773 -s 9 -d 8 -p ack -e 40 -i 423 -a 20 h -t 0.775773 -s 9 -d 8 -p ack -e 40 -i 423 -a 20 r -t 0.775936 -s 6 -d 1 -p ack -e 40 -i 404 -a 11 r -t 0.776584 -s 2 -d 7 -p ack -e 40 -i 424 -a 11 + -t 0.776584 -s 7 -d 6 -p ack -e 40 -i 424 -a 11 - -t 0.776584 -s 7 -d 6 -p ack -e 40 -i 424 -a 11 h -t 0.776584 -s 7 -d 6 -p ack -e 40 -i 424 -a 11 r -t 0.777075 -s 9 -d 10 -p tcp -e 1000 -i 390 -a 21 + -t 0.777075 -s 4 -d 10 -p ack -e 40 -i 425 -a 21 - -t 0.777075 -s 4 -d 10 -p ack -e 40 -i 425 -a 21 h -t 0.777075 -s 4 -d 10 -p ack -e 40 -i 425 -a 21 r -t 0.777608 -s 8 -d 9 -p tcp -e 1000 -i 387 -a 20 + -t 0.777608 -s 9 -d 10 -p tcp -e 1000 -i 387 -a 20 - -t 0.777608 -s 9 -d 10 -p tcp -e 1000 -i 387 -a 20 h -t 0.777608 -s 9 -d 10 -p tcp -e 1000 -i 387 -a 20 r -t 0.777685 -s 8 -d 3 -p ack -e 40 -i 405 -a 20 + -t 0.777685 -s 3 -d 8 -p tcp -e 1000 -i 426 -a 20 - -t 0.777685 -s 3 -d 8 -p tcp -e 1000 -i 426 -a 20 h -t 0.777685 -s 3 -d 8 -p tcp -e 1000 -i 426 -a 20 + -t 0.777685 -s 3 -d 8 -p tcp -e 1000 -i 427 -a 20 + -t 0.777685 -s 3 -d 8 -p tcp -e 1000 -i 428 -a 20 - -t 0.778485 -s 3 -d 8 -p tcp -e 1000 -i 427 -a 20 h -t 0.778485 -s 3 -d 8 -p tcp -e 1000 -i 427 -a 20 - -t 0.778941 -s 8 -d 9 -p tcp -e 1000 -i 403 -a 21 h -t 0.778941 -s 8 -d 9 -p tcp -e 1000 -i 403 -a 21 - -t 0.779285 -s 3 -d 8 -p tcp -e 1000 -i 428 -a 20 h -t 0.779285 -s 3 -d 8 -p tcp -e 1000 -i 428 -a 20 - -t 0.779752 -s 6 -d 7 -p tcp -e 1000 -i 376 -a 13 h -t 0.779752 -s 6 -d 7 -p tcp -e 1000 -i 376 -a 13 r -t 0.779986 -s 9 -d 8 -p ack -e 40 -i 410 -a 20 + -t 0.779987 -s 8 -d 3 -p ack -e 40 -i 410 -a 20 - -t 0.779987 -s 8 -d 3 -p ack -e 40 -i 410 -a 20 h -t 0.779987 -s 8 -d 3 -p ack -e 40 -i 410 -a 20 r -t 0.780552 -s 7 -d 2 -p tcp -e 1000 -i 346 -a 11 + -t 0.780552 -s 2 -d 7 -p ack -e 40 -i 429 -a 11 - -t 0.780552 -s 2 -d 7 -p ack -e 40 -i 429 -a 11 h -t 0.780552 -s 2 -d 7 -p ack -e 40 -i 429 -a 11 r -t 0.780904 -s 7 -d 6 -p ack -e 40 -i 412 -a 13 + -t 0.780904 -s 6 -d 1 -p ack -e 40 -i 412 -a 13 - -t 0.780904 -s 6 -d 1 -p ack -e 40 -i 412 -a 13 h -t 0.780904 -s 6 -d 1 -p ack -e 40 -i 412 -a 13 r -t 0.781107 -s 4 -d 10 -p ack -e 40 -i 425 -a 21 + -t 0.781107 -s 9 -d 8 -p ack -e 40 -i 425 -a 21 - -t 0.781107 -s 9 -d 8 -p ack -e 40 -i 425 -a 21 h -t 0.781107 -s 9 -d 8 -p ack -e 40 -i 425 -a 21 r -t 0.781485 -s 3 -d 8 -p tcp -e 1000 -i 426 -a 20 + -t 0.781485 -s 8 -d 9 -p tcp -e 1000 -i 426 -a 20 r -t 0.782285 -s 3 -d 8 -p tcp -e 1000 -i 427 -a 20 + -t 0.782285 -s 8 -d 9 -p tcp -e 1000 -i 427 -a 20 r -t 0.782408 -s 9 -d 10 -p tcp -e 1000 -i 387 -a 20 + -t 0.782408 -s 4 -d 10 -p ack -e 40 -i 430 -a 20 - -t 0.782408 -s 4 -d 10 -p ack -e 40 -i 430 -a 20 h -t 0.782408 -s 4 -d 10 -p ack -e 40 -i 430 -a 20 r -t 0.782941 -s 8 -d 9 -p tcp -e 1000 -i 395 -a 21 + -t 0.782941 -s 9 -d 10 -p tcp -e 1000 -i 395 -a 21 - -t 0.782941 -s 9 -d 10 -p tcp -e 1000 -i 395 -a 21 h -t 0.782941 -s 9 -d 10 -p tcp -e 1000 -i 395 -a 21 r -t 0.783019 -s 8 -d 3 -p ack -e 40 -i 410 -a 20 r -t 0.783085 -s 3 -d 8 -p tcp -e 1000 -i 428 -a 20 + -t 0.783085 -s 8 -d 9 -p tcp -e 1000 -i 428 -a 20 r -t 0.783752 -s 6 -d 7 -p tcp -e 1000 -i 352 -a 14 + -t 0.783752 -s 7 -d 2 -p tcp -e 1000 -i 352 -a 14 - -t 0.783752 -s 7 -d 2 -p tcp -e 1000 -i 352 -a 14 h -t 0.783752 -s 7 -d 2 -p tcp -e 1000 -i 352 -a 14 r -t 0.783936 -s 6 -d 1 -p ack -e 40 -i 412 -a 13 + -t 0.783936 -s 1 -d 6 -p tcp -e 1000 -i 431 -a 13 - -t 0.783936 -s 1 -d 6 -p tcp -e 1000 -i 431 -a 13 h -t 0.783936 -s 1 -d 6 -p tcp -e 1000 -i 431 -a 13 + -t 0.783936 -s 1 -d 6 -p tcp -e 1000 -i 432 -a 13 - -t 0.784275 -s 8 -d 9 -p tcp -e 1000 -i 409 -a 22 h -t 0.784275 -s 8 -d 9 -p tcp -e 1000 -i 409 -a 22 r -t 0.784584 -s 2 -d 7 -p ack -e 40 -i 429 -a 11 + -t 0.784584 -s 7 -d 6 -p ack -e 40 -i 429 -a 11 - -t 0.784584 -s 7 -d 6 -p ack -e 40 -i 429 -a 11 h -t 0.784584 -s 7 -d 6 -p ack -e 40 -i 429 -a 11 - -t 0.784736 -s 1 -d 6 -p tcp -e 1000 -i 432 -a 13 h -t 0.784736 -s 1 -d 6 -p tcp -e 1000 -i 432 -a 13 r -t 0.78532 -s 9 -d 8 -p ack -e 40 -i 415 -a 20 + -t 0.78532 -s 8 -d 3 -p ack -e 40 -i 415 -a 20 - -t 0.78532 -s 8 -d 3 -p ack -e 40 -i 415 -a 20 h -t 0.78532 -s 8 -d 3 -p ack -e 40 -i 415 -a 20 r -t 0.78644 -s 4 -d 10 -p ack -e 40 -i 430 -a 20 + -t 0.78644 -s 9 -d 8 -p ack -e 40 -i 430 -a 20 - -t 0.78644 -s 9 -d 8 -p ack -e 40 -i 430 -a 20 h -t 0.78644 -s 9 -d 8 -p ack -e 40 -i 430 -a 20 r -t 0.787736 -s 1 -d 6 -p tcp -e 1000 -i 431 -a 13 + -t 0.787736 -s 6 -d 7 -p tcp -e 1000 -i 431 -a 13 r -t 0.787741 -s 9 -d 10 -p tcp -e 1000 -i 395 -a 21 + -t 0.787741 -s 4 -d 10 -p ack -e 40 -i 433 -a 21 - -t 0.787741 -s 4 -d 10 -p ack -e 40 -i 433 -a 21 h -t 0.787741 -s 4 -d 10 -p ack -e 40 -i 433 -a 21 - -t 0.787752 -s 6 -d 7 -p tcp -e 1000 -i 380 -a 14 h -t 0.787752 -s 6 -d 7 -p tcp -e 1000 -i 380 -a 14 r -t 0.788274 -s 8 -d 9 -p tcp -e 1000 -i 398 -a 21 + -t 0.788275 -s 9 -d 10 -p tcp -e 1000 -i 398 -a 21 - -t 0.788275 -s 9 -d 10 -p tcp -e 1000 -i 398 -a 21 h -t 0.788275 -s 9 -d 10 -p tcp -e 1000 -i 398 -a 21 r -t 0.788352 -s 8 -d 3 -p ack -e 40 -i 415 -a 20 + -t 0.788352 -s 3 -d 8 -p tcp -e 1000 -i 434 -a 20 - -t 0.788352 -s 3 -d 8 -p tcp -e 1000 -i 434 -a 20 h -t 0.788352 -s 3 -d 8 -p tcp -e 1000 -i 434 -a 20 + -t 0.788352 -s 3 -d 8 -p tcp -e 1000 -i 435 -a 20 + -t 0.788352 -s 3 -d 8 -p tcp -e 1000 -i 436 -a 20 r -t 0.788536 -s 1 -d 6 -p tcp -e 1000 -i 432 -a 13 + -t 0.788536 -s 6 -d 7 -p tcp -e 1000 -i 432 -a 13 r -t 0.788552 -s 7 -d 2 -p tcp -e 1000 -i 352 -a 14 + -t 0.788552 -s 2 -d 7 -p ack -e 40 -i 437 -a 14 - -t 0.788552 -s 2 -d 7 -p ack -e 40 -i 437 -a 14 h -t 0.788552 -s 2 -d 7 -p ack -e 40 -i 437 -a 14 r -t 0.788904 -s 7 -d 6 -p ack -e 40 -i 416 -a 11 + -t 0.788904 -s 6 -d 1 -p ack -e 40 -i 416 -a 11 - -t 0.788904 -s 6 -d 1 -p ack -e 40 -i 416 -a 11 h -t 0.788904 -s 6 -d 1 -p ack -e 40 -i 416 -a 11 - -t 0.789152 -s 3 -d 8 -p tcp -e 1000 -i 435 -a 20 h -t 0.789152 -s 3 -d 8 -p tcp -e 1000 -i 435 -a 20 - -t 0.789608 -s 8 -d 9 -p tcp -e 1000 -i 418 -a 20 h -t 0.789608 -s 8 -d 9 -p tcp -e 1000 -i 418 -a 20 - -t 0.789952 -s 3 -d 8 -p tcp -e 1000 -i 436 -a 20 h -t 0.789952 -s 3 -d 8 -p tcp -e 1000 -i 436 -a 20 r -t 0.790653 -s 9 -d 8 -p ack -e 40 -i 417 -a 20 + -t 0.790653 -s 8 -d 3 -p ack -e 40 -i 417 -a 20 - -t 0.790653 -s 8 -d 3 -p ack -e 40 -i 417 -a 20 h -t 0.790653 -s 8 -d 3 -p ack -e 40 -i 417 -a 20 r -t 0.791752 -s 6 -d 7 -p tcp -e 1000 -i 357 -a 12 + -t 0.791752 -s 7 -d 2 -p tcp -e 1000 -i 357 -a 12 - -t 0.791752 -s 7 -d 2 -p tcp -e 1000 -i 357 -a 12 h -t 0.791752 -s 7 -d 2 -p tcp -e 1000 -i 357 -a 12 r -t 0.791773 -s 4 -d 10 -p ack -e 40 -i 433 -a 21 + -t 0.791773 -s 9 -d 8 -p ack -e 40 -i 433 -a 21 - -t 0.791773 -s 9 -d 8 -p ack -e 40 -i 433 -a 21 h -t 0.791773 -s 9 -d 8 -p ack -e 40 -i 433 -a 21 r -t 0.791936 -s 6 -d 1 -p ack -e 40 -i 416 -a 11 + -t 0.791936 -s 1 -d 6 -p tcp -e 1000 -i 438 -a 11 - -t 0.791936 -s 1 -d 6 -p tcp -e 1000 -i 438 -a 11 h -t 0.791936 -s 1 -d 6 -p tcp -e 1000 -i 438 -a 11 + -t 0.791936 -s 1 -d 6 -p tcp -e 1000 -i 439 -a 11 + -t 0.791936 -s 1 -d 6 -p tcp -e 1000 -i 440 -a 11 r -t 0.792152 -s 3 -d 8 -p tcp -e 1000 -i 434 -a 20 + -t 0.792152 -s 8 -d 9 -p tcp -e 1000 -i 434 -a 20 r -t 0.792584 -s 2 -d 7 -p ack -e 40 -i 437 -a 14 + -t 0.792584 -s 7 -d 6 -p ack -e 40 -i 437 -a 14 - -t 0.792584 -s 7 -d 6 -p ack -e 40 -i 437 -a 14 h -t 0.792584 -s 7 -d 6 -p ack -e 40 -i 437 -a 14 - -t 0.792736 -s 1 -d 6 -p tcp -e 1000 -i 439 -a 11 h -t 0.792736 -s 1 -d 6 -p tcp -e 1000 -i 439 -a 11 r -t 0.792952 -s 3 -d 8 -p tcp -e 1000 -i 435 -a 20 + -t 0.792952 -s 8 -d 9 -p tcp -e 1000 -i 435 -a 20 r -t 0.793075 -s 9 -d 10 -p tcp -e 1000 -i 398 -a 21 + -t 0.793075 -s 4 -d 10 -p ack -e 40 -i 441 -a 21 - -t 0.793075 -s 4 -d 10 -p ack -e 40 -i 441 -a 21 h -t 0.793075 -s 4 -d 10 -p ack -e 40 -i 441 -a 21 - -t 0.793536 -s 1 -d 6 -p tcp -e 1000 -i 440 -a 11 h -t 0.793536 -s 1 -d 6 -p tcp -e 1000 -i 440 -a 11 r -t 0.793608 -s 8 -d 9 -p tcp -e 1000 -i 402 -a 21 + -t 0.793608 -s 9 -d 10 -p tcp -e 1000 -i 402 -a 21 - -t 0.793608 -s 9 -d 10 -p tcp -e 1000 -i 402 -a 21 h -t 0.793608 -s 9 -d 10 -p tcp -e 1000 -i 402 -a 21 r -t 0.793685 -s 8 -d 3 -p ack -e 40 -i 417 -a 20 r -t 0.793752 -s 3 -d 8 -p tcp -e 1000 -i 436 -a 20 + -t 0.793752 -s 8 -d 9 -p tcp -e 1000 -i 436 -a 20 - -t 0.794941 -s 8 -d 9 -p tcp -e 1000 -i 419 -a 20 h -t 0.794941 -s 8 -d 9 -p tcp -e 1000 -i 419 -a 20 r -t 0.795736 -s 1 -d 6 -p tcp -e 1000 -i 438 -a 11 + -t 0.795736 -s 6 -d 7 -p tcp -e 1000 -i 438 -a 11 d -t 0.795736 -s 6 -d 7 -p tcp -e 1000 -i 432 -a 13 - -t 0.795752 -s 6 -d 7 -p tcp -e 1000 -i 388 -a 13 h -t 0.795752 -s 6 -d 7 -p tcp -e 1000 -i 388 -a 13 r -t 0.795986 -s 9 -d 8 -p ack -e 40 -i 423 -a 20 + -t 0.795987 -s 8 -d 3 -p ack -e 40 -i 423 -a 20 - -t 0.795987 -s 8 -d 3 -p ack -e 40 -i 423 -a 20 h -t 0.795987 -s 8 -d 3 -p ack -e 40 -i 423 -a 20 r -t 0.796536 -s 1 -d 6 -p tcp -e 1000 -i 439 -a 11 + -t 0.796536 -s 6 -d 7 -p tcp -e 1000 -i 439 -a 11 r -t 0.796552 -s 7 -d 2 -p tcp -e 1000 -i 357 -a 12 + -t 0.796552 -s 2 -d 7 -p ack -e 40 -i 442 -a 12 - -t 0.796552 -s 2 -d 7 -p ack -e 40 -i 442 -a 12 h -t 0.796552 -s 2 -d 7 -p ack -e 40 -i 442 -a 12 r -t 0.796904 -s 7 -d 6 -p ack -e 40 -i 424 -a 11 + -t 0.796904 -s 6 -d 1 -p ack -e 40 -i 424 -a 11 - -t 0.796904 -s 6 -d 1 -p ack -e 40 -i 424 -a 11 h -t 0.796904 -s 6 -d 1 -p ack -e 40 -i 424 -a 11 r -t 0.797107 -s 4 -d 10 -p ack -e 40 -i 441 -a 21 + -t 0.797107 -s 9 -d 8 -p ack -e 40 -i 441 -a 21 - -t 0.797107 -s 9 -d 8 -p ack -e 40 -i 441 -a 21 h -t 0.797107 -s 9 -d 8 -p ack -e 40 -i 441 -a 21 r -t 0.797336 -s 1 -d 6 -p tcp -e 1000 -i 440 -a 11 + -t 0.797336 -s 6 -d 7 -p tcp -e 1000 -i 440 -a 11 d -t 0.797336 -s 6 -d 7 -p tcp -e 1000 -i 440 -a 11 r -t 0.798408 -s 9 -d 10 -p tcp -e 1000 -i 402 -a 21 + -t 0.798408 -s 4 -d 10 -p ack -e 40 -i 443 -a 21 - -t 0.798408 -s 4 -d 10 -p ack -e 40 -i 443 -a 21 h -t 0.798408 -s 4 -d 10 -p ack -e 40 -i 443 -a 21 r -t 0.798941 -s 8 -d 9 -p tcp -e 1000 -i 408 -a 22 + -t 0.798941 -s 9 -d 10 -p tcp -e 1000 -i 408 -a 22 - -t 0.798941 -s 9 -d 10 -p tcp -e 1000 -i 408 -a 22 h -t 0.798941 -s 9 -d 10 -p tcp -e 1000 -i 408 -a 22 r -t 0.799019 -s 8 -d 3 -p ack -e 40 -i 423 -a 20 + -t 0.799019 -s 3 -d 8 -p tcp -e 1000 -i 444 -a 20 - -t 0.799019 -s 3 -d 8 -p tcp -e 1000 -i 444 -a 20 h -t 0.799019 -s 3 -d 8 -p tcp -e 1000 -i 444 -a 20 + -t 0.799019 -s 3 -d 8 -p tcp -e 1000 -i 445 -a 20 + -t 0.799019 -s 3 -d 8 -p tcp -e 1000 -i 446 -a 20 r -t 0.799752 -s 6 -d 7 -p tcp -e 1000 -i 362 -a 14 + -t 0.799752 -s 7 -d 2 -p tcp -e 1000 -i 362 -a 14 - -t 0.799752 -s 7 -d 2 -p tcp -e 1000 -i 362 -a 14 h -t 0.799752 -s 7 -d 2 -p tcp -e 1000 -i 362 -a 14 - -t 0.799819 -s 3 -d 8 -p tcp -e 1000 -i 445 -a 20 h -t 0.799819 -s 3 -d 8 -p tcp -e 1000 -i 445 -a 20 r -t 0.799936 -s 6 -d 1 -p ack -e 40 -i 424 -a 11 v -t 0.800002 -e take_snapshot - -t 0.800275 -s 8 -d 9 -p tcp -e 1000 -i 420 -a 20 h -t 0.800275 -s 8 -d 9 -p tcp -e 1000 -i 420 -a 20 r -t 0.800584 -s 2 -d 7 -p ack -e 40 -i 442 -a 12 + -t 0.800584 -s 7 -d 6 -p ack -e 40 -i 442 -a 12 - -t 0.800584 -s 7 -d 6 -p ack -e 40 -i 442 -a 12 h -t 0.800584 -s 7 -d 6 -p ack -e 40 -i 442 -a 12 - -t 0.800619 -s 3 -d 8 -p tcp -e 1000 -i 446 -a 20 h -t 0.800619 -s 3 -d 8 -p tcp -e 1000 -i 446 -a 20 r -t 0.80132 -s 9 -d 8 -p ack -e 40 -i 425 -a 21 + -t 0.80132 -s 8 -d 3 -p ack -e 40 -i 425 -a 21 - -t 0.80132 -s 8 -d 3 -p ack -e 40 -i 425 -a 21 h -t 0.80132 -s 8 -d 3 -p ack -e 40 -i 425 -a 21 r -t 0.80244 -s 4 -d 10 -p ack -e 40 -i 443 -a 21 + -t 0.80244 -s 9 -d 8 -p ack -e 40 -i 443 -a 21 - -t 0.80244 -s 9 -d 8 -p ack -e 40 -i 443 -a 21 h -t 0.80244 -s 9 -d 8 -p ack -e 40 -i 443 -a 21 r -t 0.802819 -s 3 -d 8 -p tcp -e 1000 -i 444 -a 20 + -t 0.802819 -s 8 -d 9 -p tcp -e 1000 -i 444 -a 20 r -t 0.803619 -s 3 -d 8 -p tcp -e 1000 -i 445 -a 20 + -t 0.803619 -s 8 -d 9 -p tcp -e 1000 -i 445 -a 20 r -t 0.803741 -s 9 -d 10 -p tcp -e 1000 -i 408 -a 22 + -t 0.803741 -s 4 -d 10 -p ack -e 40 -i 447 -a 22 - -t 0.803741 -s 4 -d 10 -p ack -e 40 -i 447 -a 22 h -t 0.803741 -s 4 -d 10 -p ack -e 40 -i 447 -a 22 - -t 0.803752 -s 6 -d 7 -p tcp -e 1000 -i 389 -a 13 h -t 0.803752 -s 6 -d 7 -p tcp -e 1000 -i 389 -a 13 r -t 0.804274 -s 8 -d 9 -p tcp -e 1000 -i 403 -a 21 + -t 0.804275 -s 9 -d 10 -p tcp -e 1000 -i 403 -a 21 - -t 0.804275 -s 9 -d 10 -p tcp -e 1000 -i 403 -a 21 h -t 0.804275 -s 9 -d 10 -p tcp -e 1000 -i 403 -a 21 r -t 0.804352 -s 8 -d 3 -p ack -e 40 -i 425 -a 21 + -t 0.804352 -s 3 -d 8 -p tcp -e 1000 -i 448 -a 21 - -t 0.804352 -s 3 -d 8 -p tcp -e 1000 -i 448 -a 21 h -t 0.804352 -s 3 -d 8 -p tcp -e 1000 -i 448 -a 21 r -t 0.804419 -s 3 -d 8 -p tcp -e 1000 -i 446 -a 20 + -t 0.804419 -s 8 -d 9 -p tcp -e 1000 -i 446 -a 20 r -t 0.804552 -s 7 -d 2 -p tcp -e 1000 -i 362 -a 14 + -t 0.804552 -s 2 -d 7 -p ack -e 40 -i 449 -a 14 - -t 0.804552 -s 2 -d 7 -p ack -e 40 -i 449 -a 14 h -t 0.804552 -s 2 -d 7 -p ack -e 40 -i 449 -a 14 r -t 0.804904 -s 7 -d 6 -p ack -e 40 -i 429 -a 11 + -t 0.804904 -s 6 -d 1 -p ack -e 40 -i 429 -a 11 - -t 0.804904 -s 6 -d 1 -p ack -e 40 -i 429 -a 11 h -t 0.804904 -s 6 -d 1 -p ack -e 40 -i 429 -a 11 - -t 0.805608 -s 8 -d 9 -p tcp -e 1000 -i 426 -a 20 h -t 0.805608 -s 8 -d 9 -p tcp -e 1000 -i 426 -a 20 r -t 0.806653 -s 9 -d 8 -p ack -e 40 -i 430 -a 20 + -t 0.806653 -s 8 -d 3 -p ack -e 40 -i 430 -a 20 - -t 0.806653 -s 8 -d 3 -p ack -e 40 -i 430 -a 20 h -t 0.806653 -s 8 -d 3 -p ack -e 40 -i 430 -a 20 r -t 0.807752 -s 6 -d 7 -p tcp -e 1000 -i 376 -a 13 + -t 0.807752 -s 7 -d 2 -p tcp -e 1000 -i 376 -a 13 - -t 0.807752 -s 7 -d 2 -p tcp -e 1000 -i 376 -a 13 h -t 0.807752 -s 7 -d 2 -p tcp -e 1000 -i 376 -a 13 r -t 0.807773 -s 4 -d 10 -p ack -e 40 -i 447 -a 22 + -t 0.807773 -s 9 -d 8 -p ack -e 40 -i 447 -a 22 - -t 0.807773 -s 9 -d 8 -p ack -e 40 -i 447 -a 22 h -t 0.807773 -s 9 -d 8 -p ack -e 40 -i 447 -a 22 r -t 0.807936 -s 6 -d 1 -p ack -e 40 -i 429 -a 11 r -t 0.808152 -s 3 -d 8 -p tcp -e 1000 -i 448 -a 21 + -t 0.808152 -s 8 -d 9 -p tcp -e 1000 -i 448 -a 21 r -t 0.808584 -s 2 -d 7 -p ack -e 40 -i 449 -a 14 + -t 0.808584 -s 7 -d 6 -p ack -e 40 -i 449 -a 14 - -t 0.808584 -s 7 -d 6 -p ack -e 40 -i 449 -a 14 h -t 0.808584 -s 7 -d 6 -p ack -e 40 -i 449 -a 14 r -t 0.809075 -s 9 -d 10 -p tcp -e 1000 -i 403 -a 21 + -t 0.809075 -s 4 -d 10 -p ack -e 40 -i 450 -a 21 - -t 0.809075 -s 4 -d 10 -p ack -e 40 -i 450 -a 21 h -t 0.809075 -s 4 -d 10 -p ack -e 40 -i 450 -a 21 r -t 0.809608 -s 8 -d 9 -p tcp -e 1000 -i 409 -a 22 + -t 0.809608 -s 9 -d 10 -p tcp -e 1000 -i 409 -a 22 - -t 0.809608 -s 9 -d 10 -p tcp -e 1000 -i 409 -a 22 h -t 0.809608 -s 9 -d 10 -p tcp -e 1000 -i 409 -a 22 r -t 0.809685 -s 8 -d 3 -p ack -e 40 -i 430 -a 20 - -t 0.810941 -s 8 -d 9 -p tcp -e 1000 -i 427 -a 20 h -t 0.810941 -s 8 -d 9 -p tcp -e 1000 -i 427 -a 20 - -t 0.811752 -s 6 -d 7 -p tcp -e 1000 -i 394 -a 13 h -t 0.811752 -s 6 -d 7 -p tcp -e 1000 -i 394 -a 13 r -t 0.811986 -s 9 -d 8 -p ack -e 40 -i 433 -a 21 + -t 0.811987 -s 8 -d 3 -p ack -e 40 -i 433 -a 21 - -t 0.811987 -s 8 -d 3 -p ack -e 40 -i 433 -a 21 h -t 0.811987 -s 8 -d 3 -p ack -e 40 -i 433 -a 21 r -t 0.812552 -s 7 -d 2 -p tcp -e 1000 -i 376 -a 13 + -t 0.812552 -s 2 -d 7 -p ack -e 40 -i 451 -a 13 - -t 0.812552 -s 2 -d 7 -p ack -e 40 -i 451 -a 13 h -t 0.812552 -s 2 -d 7 -p ack -e 40 -i 451 -a 13 r -t 0.812904 -s 7 -d 6 -p ack -e 40 -i 437 -a 14 + -t 0.812904 -s 6 -d 1 -p ack -e 40 -i 437 -a 14 - -t 0.812904 -s 6 -d 1 -p ack -e 40 -i 437 -a 14 h -t 0.812904 -s 6 -d 1 -p ack -e 40 -i 437 -a 14 r -t 0.813107 -s 4 -d 10 -p ack -e 40 -i 450 -a 21 + -t 0.813107 -s 9 -d 8 -p ack -e 40 -i 450 -a 21 - -t 0.813107 -s 9 -d 8 -p ack -e 40 -i 450 -a 21 h -t 0.813107 -s 9 -d 8 -p ack -e 40 -i 450 -a 21 r -t 0.814408 -s 9 -d 10 -p tcp -e 1000 -i 409 -a 22 + -t 0.814408 -s 4 -d 10 -p ack -e 40 -i 452 -a 22 - -t 0.814408 -s 4 -d 10 -p ack -e 40 -i 452 -a 22 h -t 0.814408 -s 4 -d 10 -p ack -e 40 -i 452 -a 22 r -t 0.814941 -s 8 -d 9 -p tcp -e 1000 -i 418 -a 20 + -t 0.814941 -s 9 -d 10 -p tcp -e 1000 -i 418 -a 20 - -t 0.814941 -s 9 -d 10 -p tcp -e 1000 -i 418 -a 20 h -t 0.814941 -s 9 -d 10 -p tcp -e 1000 -i 418 -a 20 r -t 0.815019 -s 8 -d 3 -p ack -e 40 -i 433 -a 21 + -t 0.815019 -s 3 -d 8 -p tcp -e 1000 -i 453 -a 21 - -t 0.815019 -s 3 -d 8 -p tcp -e 1000 -i 453 -a 21 h -t 0.815019 -s 3 -d 8 -p tcp -e 1000 -i 453 -a 21 r -t 0.815752 -s 6 -d 7 -p tcp -e 1000 -i 380 -a 14 + -t 0.815752 -s 7 -d 2 -p tcp -e 1000 -i 380 -a 14 - -t 0.815752 -s 7 -d 2 -p tcp -e 1000 -i 380 -a 14 h -t 0.815752 -s 7 -d 2 -p tcp -e 1000 -i 380 -a 14 r -t 0.815936 -s 6 -d 1 -p ack -e 40 -i 437 -a 14 - -t 0.816275 -s 8 -d 9 -p tcp -e 1000 -i 428 -a 20 h -t 0.816275 -s 8 -d 9 -p tcp -e 1000 -i 428 -a 20 r -t 0.816584 -s 2 -d 7 -p ack -e 40 -i 451 -a 13 + -t 0.816584 -s 7 -d 6 -p ack -e 40 -i 451 -a 13 - -t 0.816584 -s 7 -d 6 -p ack -e 40 -i 451 -a 13 h -t 0.816584 -s 7 -d 6 -p ack -e 40 -i 451 -a 13 r -t 0.81732 -s 9 -d 8 -p ack -e 40 -i 441 -a 21 + -t 0.81732 -s 8 -d 3 -p ack -e 40 -i 441 -a 21 - -t 0.81732 -s 8 -d 3 -p ack -e 40 -i 441 -a 21 h -t 0.81732 -s 8 -d 3 -p ack -e 40 -i 441 -a 21 r -t 0.81844 -s 4 -d 10 -p ack -e 40 -i 452 -a 22 + -t 0.81844 -s 9 -d 8 -p ack -e 40 -i 452 -a 22 - -t 0.81844 -s 9 -d 8 -p ack -e 40 -i 452 -a 22 h -t 0.81844 -s 9 -d 8 -p ack -e 40 -i 452 -a 22 r -t 0.818819 -s 3 -d 8 -p tcp -e 1000 -i 453 -a 21 + -t 0.818819 -s 8 -d 9 -p tcp -e 1000 -i 453 -a 21 r -t 0.819741 -s 9 -d 10 -p tcp -e 1000 -i 418 -a 20 + -t 0.819741 -s 4 -d 10 -p ack -e 40 -i 454 -a 20 - -t 0.819741 -s 4 -d 10 -p ack -e 40 -i 454 -a 20 h -t 0.819741 -s 4 -d 10 -p ack -e 40 -i 454 -a 20 - -t 0.819752 -s 6 -d 7 -p tcp -e 1000 -i 400 -a 13 h -t 0.819752 -s 6 -d 7 -p tcp -e 1000 -i 400 -a 13 r -t 0.820274 -s 8 -d 9 -p tcp -e 1000 -i 419 -a 20 + -t 0.820275 -s 9 -d 10 -p tcp -e 1000 -i 419 -a 20 - -t 0.820275 -s 9 -d 10 -p tcp -e 1000 -i 419 -a 20 h -t 0.820275 -s 9 -d 10 -p tcp -e 1000 -i 419 -a 20 r -t 0.820352 -s 8 -d 3 -p ack -e 40 -i 441 -a 21 + -t 0.820352 -s 3 -d 8 -p tcp -e 1000 -i 455 -a 21 - -t 0.820352 -s 3 -d 8 -p tcp -e 1000 -i 455 -a 21 h -t 0.820352 -s 3 -d 8 -p tcp -e 1000 -i 455 -a 21 r -t 0.820552 -s 7 -d 2 -p tcp -e 1000 -i 380 -a 14 + -t 0.820552 -s 2 -d 7 -p ack -e 40 -i 456 -a 14 - -t 0.820552 -s 2 -d 7 -p ack -e 40 -i 456 -a 14 h -t 0.820552 -s 2 -d 7 -p ack -e 40 -i 456 -a 14 r -t 0.820904 -s 7 -d 6 -p ack -e 40 -i 442 -a 12 + -t 0.820904 -s 6 -d 1 -p ack -e 40 -i 442 -a 12 - -t 0.820904 -s 6 -d 1 -p ack -e 40 -i 442 -a 12 h -t 0.820904 -s 6 -d 1 -p ack -e 40 -i 442 -a 12 - -t 0.821608 -s 8 -d 9 -p tcp -e 1000 -i 434 -a 20 h -t 0.821608 -s 8 -d 9 -p tcp -e 1000 -i 434 -a 20 r -t 0.822653 -s 9 -d 8 -p ack -e 40 -i 443 -a 21 + -t 0.822653 -s 8 -d 3 -p ack -e 40 -i 443 -a 21 - -t 0.822653 -s 8 -d 3 -p ack -e 40 -i 443 -a 21 h -t 0.822653 -s 8 -d 3 -p ack -e 40 -i 443 -a 21 r -t 0.823752 -s 6 -d 7 -p tcp -e 1000 -i 388 -a 13 + -t 0.823752 -s 7 -d 2 -p tcp -e 1000 -i 388 -a 13 - -t 0.823752 -s 7 -d 2 -p tcp -e 1000 -i 388 -a 13 h -t 0.823752 -s 7 -d 2 -p tcp -e 1000 -i 388 -a 13 r -t 0.823773 -s 4 -d 10 -p ack -e 40 -i 454 -a 20 + -t 0.823773 -s 9 -d 8 -p ack -e 40 -i 454 -a 20 - -t 0.823773 -s 9 -d 8 -p ack -e 40 -i 454 -a 20 h -t 0.823773 -s 9 -d 8 -p ack -e 40 -i 454 -a 20 r -t 0.823936 -s 6 -d 1 -p ack -e 40 -i 442 -a 12 r -t 0.824152 -s 3 -d 8 -p tcp -e 1000 -i 455 -a 21 + -t 0.824152 -s 8 -d 9 -p tcp -e 1000 -i 455 -a 21 r -t 0.824584 -s 2 -d 7 -p ack -e 40 -i 456 -a 14 + -t 0.824584 -s 7 -d 6 -p ack -e 40 -i 456 -a 14 - -t 0.824584 -s 7 -d 6 -p ack -e 40 -i 456 -a 14 h -t 0.824584 -s 7 -d 6 -p ack -e 40 -i 456 -a 14 r -t 0.825075 -s 9 -d 10 -p tcp -e 1000 -i 419 -a 20 + -t 0.825075 -s 4 -d 10 -p ack -e 40 -i 457 -a 20 - -t 0.825075 -s 4 -d 10 -p ack -e 40 -i 457 -a 20 h -t 0.825075 -s 4 -d 10 -p ack -e 40 -i 457 -a 20 r -t 0.825608 -s 8 -d 9 -p tcp -e 1000 -i 420 -a 20 + -t 0.825608 -s 9 -d 10 -p tcp -e 1000 -i 420 -a 20 - -t 0.825608 -s 9 -d 10 -p tcp -e 1000 -i 420 -a 20 h -t 0.825608 -s 9 -d 10 -p tcp -e 1000 -i 420 -a 20 r -t 0.825685 -s 8 -d 3 -p ack -e 40 -i 443 -a 21 + -t 0.825685 -s 3 -d 8 -p tcp -e 1000 -i 458 -a 21 - -t 0.825685 -s 3 -d 8 -p tcp -e 1000 -i 458 -a 21 h -t 0.825685 -s 3 -d 8 -p tcp -e 1000 -i 458 -a 21 - -t 0.826941 -s 8 -d 9 -p tcp -e 1000 -i 435 -a 20 h -t 0.826941 -s 8 -d 9 -p tcp -e 1000 -i 435 -a 20 - -t 0.827752 -s 6 -d 7 -p tcp -e 1000 -i 411 -a 10 h -t 0.827752 -s 6 -d 7 -p tcp -e 1000 -i 411 -a 10 r -t 0.827986 -s 9 -d 8 -p ack -e 40 -i 447 -a 22 + -t 0.827987 -s 8 -d 3 -p ack -e 40 -i 447 -a 22 - -t 0.827987 -s 8 -d 3 -p ack -e 40 -i 447 -a 22 h -t 0.827987 -s 8 -d 3 -p ack -e 40 -i 447 -a 22 r -t 0.828552 -s 7 -d 2 -p tcp -e 1000 -i 388 -a 13 + -t 0.828552 -s 2 -d 7 -p ack -e 40 -i 459 -a 13 - -t 0.828552 -s 2 -d 7 -p ack -e 40 -i 459 -a 13 h -t 0.828552 -s 2 -d 7 -p ack -e 40 -i 459 -a 13 r -t 0.828904 -s 7 -d 6 -p ack -e 40 -i 449 -a 14 + -t 0.828904 -s 6 -d 1 -p ack -e 40 -i 449 -a 14 - -t 0.828904 -s 6 -d 1 -p ack -e 40 -i 449 -a 14 h -t 0.828904 -s 6 -d 1 -p ack -e 40 -i 449 -a 14 r -t 0.829107 -s 4 -d 10 -p ack -e 40 -i 457 -a 20 + -t 0.829107 -s 9 -d 8 -p ack -e 40 -i 457 -a 20 - -t 0.829107 -s 9 -d 8 -p ack -e 40 -i 457 -a 20 h -t 0.829107 -s 9 -d 8 -p ack -e 40 -i 457 -a 20 r -t 0.829485 -s 3 -d 8 -p tcp -e 1000 -i 458 -a 21 + -t 0.829485 -s 8 -d 9 -p tcp -e 1000 -i 458 -a 21 r -t 0.830408 -s 9 -d 10 -p tcp -e 1000 -i 420 -a 20 + -t 0.830408 -s 4 -d 10 -p ack -e 40 -i 460 -a 20 - -t 0.830408 -s 4 -d 10 -p ack -e 40 -i 460 -a 20 h -t 0.830408 -s 4 -d 10 -p ack -e 40 -i 460 -a 20 r -t 0.830941 -s 8 -d 9 -p tcp -e 1000 -i 426 -a 20 + -t 0.830941 -s 9 -d 10 -p tcp -e 1000 -i 426 -a 20 - -t 0.830941 -s 9 -d 10 -p tcp -e 1000 -i 426 -a 20 h -t 0.830941 -s 9 -d 10 -p tcp -e 1000 -i 426 -a 20 r -t 0.831019 -s 8 -d 3 -p ack -e 40 -i 447 -a 22 + -t 0.831019 -s 3 -d 8 -p tcp -e 1000 -i 461 -a 22 - -t 0.831019 -s 3 -d 8 -p tcp -e 1000 -i 461 -a 22 h -t 0.831019 -s 3 -d 8 -p tcp -e 1000 -i 461 -a 22 r -t 0.831752 -s 6 -d 7 -p tcp -e 1000 -i 389 -a 13 + -t 0.831752 -s 7 -d 2 -p tcp -e 1000 -i 389 -a 13 - -t 0.831752 -s 7 -d 2 -p tcp -e 1000 -i 389 -a 13 h -t 0.831752 -s 7 -d 2 -p tcp -e 1000 -i 389 -a 13 r -t 0.831936 -s 6 -d 1 -p ack -e 40 -i 449 -a 14 - -t 0.832275 -s 8 -d 9 -p tcp -e 1000 -i 436 -a 20 h -t 0.832275 -s 8 -d 9 -p tcp -e 1000 -i 436 -a 20 r -t 0.832584 -s 2 -d 7 -p ack -e 40 -i 459 -a 13 + -t 0.832584 -s 7 -d 6 -p ack -e 40 -i 459 -a 13 - -t 0.832584 -s 7 -d 6 -p ack -e 40 -i 459 -a 13 h -t 0.832584 -s 7 -d 6 -p ack -e 40 -i 459 -a 13 r -t 0.83332 -s 9 -d 8 -p ack -e 40 -i 450 -a 21 + -t 0.83332 -s 8 -d 3 -p ack -e 40 -i 450 -a 21 - -t 0.83332 -s 8 -d 3 -p ack -e 40 -i 450 -a 21 h -t 0.83332 -s 8 -d 3 -p ack -e 40 -i 450 -a 21 r -t 0.83444 -s 4 -d 10 -p ack -e 40 -i 460 -a 20 + -t 0.83444 -s 9 -d 8 -p ack -e 40 -i 460 -a 20 - -t 0.83444 -s 9 -d 8 -p ack -e 40 -i 460 -a 20 h -t 0.83444 -s 9 -d 8 -p ack -e 40 -i 460 -a 20 r -t 0.834819 -s 3 -d 8 -p tcp -e 1000 -i 461 -a 22 + -t 0.834819 -s 8 -d 9 -p tcp -e 1000 -i 461 -a 22 r -t 0.835741 -s 9 -d 10 -p tcp -e 1000 -i 426 -a 20 + -t 0.835741 -s 4 -d 10 -p ack -e 40 -i 462 -a 20 - -t 0.835741 -s 4 -d 10 -p ack -e 40 -i 462 -a 20 h -t 0.835741 -s 4 -d 10 -p ack -e 40 -i 462 -a 20 - -t 0.835752 -s 6 -d 7 -p tcp -e 1000 -i 414 -a 13 h -t 0.835752 -s 6 -d 7 -p tcp -e 1000 -i 414 -a 13 r -t 0.836274 -s 8 -d 9 -p tcp -e 1000 -i 427 -a 20 + -t 0.836275 -s 9 -d 10 -p tcp -e 1000 -i 427 -a 20 - -t 0.836275 -s 9 -d 10 -p tcp -e 1000 -i 427 -a 20 h -t 0.836275 -s 9 -d 10 -p tcp -e 1000 -i 427 -a 20 r -t 0.836352 -s 8 -d 3 -p ack -e 40 -i 450 -a 21 + -t 0.836352 -s 3 -d 8 -p tcp -e 1000 -i 463 -a 21 - -t 0.836352 -s 3 -d 8 -p tcp -e 1000 -i 463 -a 21 h -t 0.836352 -s 3 -d 8 -p tcp -e 1000 -i 463 -a 21 + -t 0.836352 -s 3 -d 8 -p tcp -e 1000 -i 464 -a 21 r -t 0.836552 -s 7 -d 2 -p tcp -e 1000 -i 389 -a 13 + -t 0.836552 -s 2 -d 7 -p ack -e 40 -i 465 -a 13 - -t 0.836552 -s 2 -d 7 -p ack -e 40 -i 465 -a 13 h -t 0.836552 -s 2 -d 7 -p ack -e 40 -i 465 -a 13 r -t 0.836904 -s 7 -d 6 -p ack -e 40 -i 451 -a 13 + -t 0.836904 -s 6 -d 1 -p ack -e 40 -i 451 -a 13 - -t 0.836904 -s 6 -d 1 -p ack -e 40 -i 451 -a 13 h -t 0.836904 -s 6 -d 1 -p ack -e 40 -i 451 -a 13 - -t 0.837152 -s 3 -d 8 -p tcp -e 1000 -i 464 -a 21 h -t 0.837152 -s 3 -d 8 -p tcp -e 1000 -i 464 -a 21 - -t 0.837608 -s 8 -d 9 -p tcp -e 1000 -i 444 -a 20 h -t 0.837608 -s 8 -d 9 -p tcp -e 1000 -i 444 -a 20 r -t 0.838653 -s 9 -d 8 -p ack -e 40 -i 452 -a 22 + -t 0.838653 -s 8 -d 3 -p ack -e 40 -i 452 -a 22 - -t 0.838653 -s 8 -d 3 -p ack -e 40 -i 452 -a 22 h -t 0.838653 -s 8 -d 3 -p ack -e 40 -i 452 -a 22 r -t 0.839752 -s 6 -d 7 -p tcp -e 1000 -i 394 -a 13 + -t 0.839752 -s 7 -d 2 -p tcp -e 1000 -i 394 -a 13 - -t 0.839752 -s 7 -d 2 -p tcp -e 1000 -i 394 -a 13 h -t 0.839752 -s 7 -d 2 -p tcp -e 1000 -i 394 -a 13 r -t 0.839773 -s 4 -d 10 -p ack -e 40 -i 462 -a 20 + -t 0.839773 -s 9 -d 8 -p ack -e 40 -i 462 -a 20 - -t 0.839773 -s 9 -d 8 -p ack -e 40 -i 462 -a 20 h -t 0.839773 -s 9 -d 8 -p ack -e 40 -i 462 -a 20 r -t 0.839936 -s 6 -d 1 -p ack -e 40 -i 451 -a 13 + -t 0.839936 -s 1 -d 6 -p tcp -e 1000 -i 466 -a 13 - -t 0.839936 -s 1 -d 6 -p tcp -e 1000 -i 466 -a 13 h -t 0.839936 -s 1 -d 6 -p tcp -e 1000 -i 466 -a 13 + -t 0.839936 -s 1 -d 6 -p tcp -e 1000 -i 467 -a 13 r -t 0.840152 -s 3 -d 8 -p tcp -e 1000 -i 463 -a 21 + -t 0.840152 -s 8 -d 9 -p tcp -e 1000 -i 463 -a 21 r -t 0.840584 -s 2 -d 7 -p ack -e 40 -i 465 -a 13 + -t 0.840584 -s 7 -d 6 -p ack -e 40 -i 465 -a 13 - -t 0.840584 -s 7 -d 6 -p ack -e 40 -i 465 -a 13 h -t 0.840584 -s 7 -d 6 -p ack -e 40 -i 465 -a 13 - -t 0.840736 -s 1 -d 6 -p tcp -e 1000 -i 467 -a 13 h -t 0.840736 -s 1 -d 6 -p tcp -e 1000 -i 467 -a 13 r -t 0.840952 -s 3 -d 8 -p tcp -e 1000 -i 464 -a 21 + -t 0.840952 -s 8 -d 9 -p tcp -e 1000 -i 464 -a 21 r -t 0.841075 -s 9 -d 10 -p tcp -e 1000 -i 427 -a 20 + -t 0.841075 -s 4 -d 10 -p ack -e 40 -i 468 -a 20 - -t 0.841075 -s 4 -d 10 -p ack -e 40 -i 468 -a 20 h -t 0.841075 -s 4 -d 10 -p ack -e 40 -i 468 -a 20 r -t 0.841608 -s 8 -d 9 -p tcp -e 1000 -i 428 -a 20 + -t 0.841608 -s 9 -d 10 -p tcp -e 1000 -i 428 -a 20 - -t 0.841608 -s 9 -d 10 -p tcp -e 1000 -i 428 -a 20 h -t 0.841608 -s 9 -d 10 -p tcp -e 1000 -i 428 -a 20 r -t 0.841685 -s 8 -d 3 -p ack -e 40 -i 452 -a 22 + -t 0.841685 -s 3 -d 8 -p tcp -e 1000 -i 469 -a 22 - -t 0.841685 -s 3 -d 8 -p tcp -e 1000 -i 469 -a 22 h -t 0.841685 -s 3 -d 8 -p tcp -e 1000 -i 469 -a 22 - -t 0.842941 -s 8 -d 9 -p tcp -e 1000 -i 445 -a 20 h -t 0.842941 -s 8 -d 9 -p tcp -e 1000 -i 445 -a 20 r -t 0.843736 -s 1 -d 6 -p tcp -e 1000 -i 466 -a 13 + -t 0.843736 -s 6 -d 7 -p tcp -e 1000 -i 466 -a 13 - -t 0.843752 -s 6 -d 7 -p tcp -e 1000 -i 422 -a 13 h -t 0.843752 -s 6 -d 7 -p tcp -e 1000 -i 422 -a 13 r -t 0.843986 -s 9 -d 8 -p ack -e 40 -i 454 -a 20 + -t 0.843987 -s 8 -d 3 -p ack -e 40 -i 454 -a 20 - -t 0.843987 -s 8 -d 3 -p ack -e 40 -i 454 -a 20 h -t 0.843987 -s 8 -d 3 -p ack -e 40 -i 454 -a 20 r -t 0.844536 -s 1 -d 6 -p tcp -e 1000 -i 467 -a 13 + -t 0.844536 -s 6 -d 7 -p tcp -e 1000 -i 467 -a 13 r -t 0.844552 -s 7 -d 2 -p tcp -e 1000 -i 394 -a 13 + -t 0.844552 -s 2 -d 7 -p ack -e 40 -i 470 -a 13 - -t 0.844552 -s 2 -d 7 -p ack -e 40 -i 470 -a 13 h -t 0.844552 -s 2 -d 7 -p ack -e 40 -i 470 -a 13 r -t 0.844904 -s 7 -d 6 -p ack -e 40 -i 456 -a 14 + -t 0.844904 -s 6 -d 1 -p ack -e 40 -i 456 -a 14 - -t 0.844904 -s 6 -d 1 -p ack -e 40 -i 456 -a 14 h -t 0.844904 -s 6 -d 1 -p ack -e 40 -i 456 -a 14 r -t 0.845107 -s 4 -d 10 -p ack -e 40 -i 468 -a 20 + -t 0.845107 -s 9 -d 8 -p ack -e 40 -i 468 -a 20 - -t 0.845107 -s 9 -d 8 -p ack -e 40 -i 468 -a 20 h -t 0.845107 -s 9 -d 8 -p ack -e 40 -i 468 -a 20 r -t 0.845485 -s 3 -d 8 -p tcp -e 1000 -i 469 -a 22 + -t 0.845485 -s 8 -d 9 -p tcp -e 1000 -i 469 -a 22 r -t 0.846408 -s 9 -d 10 -p tcp -e 1000 -i 428 -a 20 + -t 0.846408 -s 4 -d 10 -p ack -e 40 -i 471 -a 20 - -t 0.846408 -s 4 -d 10 -p ack -e 40 -i 471 -a 20 h -t 0.846408 -s 4 -d 10 -p ack -e 40 -i 471 -a 20 r -t 0.846941 -s 8 -d 9 -p tcp -e 1000 -i 434 -a 20 + -t 0.846941 -s 9 -d 10 -p tcp -e 1000 -i 434 -a 20 - -t 0.846941 -s 9 -d 10 -p tcp -e 1000 -i 434 -a 20 h -t 0.846941 -s 9 -d 10 -p tcp -e 1000 -i 434 -a 20 r -t 0.847019 -s 8 -d 3 -p ack -e 40 -i 454 -a 20 + -t 0.847019 -s 3 -d 8 -p tcp -e 1000 -i 472 -a 20 - -t 0.847019 -s 3 -d 8 -p tcp -e 1000 -i 472 -a 20 h -t 0.847019 -s 3 -d 8 -p tcp -e 1000 -i 472 -a 20 + -t 0.847019 -s 3 -d 8 -p tcp -e 1000 -i 473 -a 20 + -t 0.847019 -s 3 -d 8 -p tcp -e 1000 -i 474 -a 20 r -t 0.847752 -s 6 -d 7 -p tcp -e 1000 -i 400 -a 13 + -t 0.847752 -s 7 -d 2 -p tcp -e 1000 -i 400 -a 13 - -t 0.847752 -s 7 -d 2 -p tcp -e 1000 -i 400 -a 13 h -t 0.847752 -s 7 -d 2 -p tcp -e 1000 -i 400 -a 13 - -t 0.847819 -s 3 -d 8 -p tcp -e 1000 -i 473 -a 20 h -t 0.847819 -s 3 -d 8 -p tcp -e 1000 -i 473 -a 20 r -t 0.847936 -s 6 -d 1 -p ack -e 40 -i 456 -a 14 + -t 0.847936 -s 1 -d 6 -p tcp -e 1000 -i 475 -a 14 - -t 0.847936 -s 1 -d 6 -p tcp -e 1000 -i 475 -a 14 h -t 0.847936 -s 1 -d 6 -p tcp -e 1000 -i 475 -a 14 - -t 0.848275 -s 8 -d 9 -p tcp -e 1000 -i 448 -a 21 h -t 0.848275 -s 8 -d 9 -p tcp -e 1000 -i 448 -a 21 r -t 0.848584 -s 2 -d 7 -p ack -e 40 -i 470 -a 13 + -t 0.848584 -s 7 -d 6 -p ack -e 40 -i 470 -a 13 - -t 0.848584 -s 7 -d 6 -p ack -e 40 -i 470 -a 13 h -t 0.848584 -s 7 -d 6 -p ack -e 40 -i 470 -a 13 - -t 0.848619 -s 3 -d 8 -p tcp -e 1000 -i 474 -a 20 h -t 0.848619 -s 3 -d 8 -p tcp -e 1000 -i 474 -a 20 r -t 0.84932 -s 9 -d 8 -p ack -e 40 -i 457 -a 20 + -t 0.84932 -s 8 -d 3 -p ack -e 40 -i 457 -a 20 - -t 0.84932 -s 8 -d 3 -p ack -e 40 -i 457 -a 20 h -t 0.84932 -s 8 -d 3 -p ack -e 40 -i 457 -a 20 r -t 0.85044 -s 4 -d 10 -p ack -e 40 -i 471 -a 20 + -t 0.85044 -s 9 -d 8 -p ack -e 40 -i 471 -a 20 - -t 0.85044 -s 9 -d 8 -p ack -e 40 -i 471 -a 20 h -t 0.85044 -s 9 -d 8 -p ack -e 40 -i 471 -a 20 v -t 0.850500 -e take_snapshot r -t 0.850819 -s 3 -d 8 -p tcp -e 1000 -i 472 -a 20 + -t 0.850819 -s 8 -d 9 -p tcp -e 1000 -i 472 -a 20 r -t 0.851619 -s 3 -d 8 -p tcp -e 1000 -i 473 -a 20 + -t 0.851619 -s 8 -d 9 -p tcp -e 1000 -i 473 -a 20 d -t 0.851619 -s 8 -d 9 -p tcp -e 1000 -i 473 -a 20 r -t 0.851736 -s 1 -d 6 -p tcp -e 1000 -i 475 -a 14 + -t 0.851736 -s 6 -d 7 -p tcp -e 1000 -i 475 -a 14 r -t 0.851741 -s 9 -d 10 -p tcp -e 1000 -i 434 -a 20 + -t 0.851741 -s 4 -d 10 -p ack -e 40 -i 476 -a 20 - -t 0.851741 -s 4 -d 10 -p ack -e 40 -i 476 -a 20 h -t 0.851741 -s 4 -d 10 -p ack -e 40 -i 476 -a 20 - -t 0.851752 -s 6 -d 7 -p tcp -e 1000 -i 431 -a 13 h -t 0.851752 -s 6 -d 7 -p tcp -e 1000 -i 431 -a 13 r -t 0.852274 -s 8 -d 9 -p tcp -e 1000 -i 435 -a 20 + -t 0.852275 -s 9 -d 10 -p tcp -e 1000 -i 435 -a 20 - -t 0.852275 -s 9 -d 10 -p tcp -e 1000 -i 435 -a 20 h -t 0.852275 -s 9 -d 10 -p tcp -e 1000 -i 435 -a 20 r -t 0.852352 -s 8 -d 3 -p ack -e 40 -i 457 -a 20 r -t 0.852419 -s 3 -d 8 -p tcp -e 1000 -i 474 -a 20 + -t 0.852419 -s 8 -d 9 -p tcp -e 1000 -i 474 -a 20 d -t 0.852419 -s 8 -d 9 -p tcp -e 1000 -i 474 -a 20 r -t 0.852552 -s 7 -d 2 -p tcp -e 1000 -i 400 -a 13 + -t 0.852552 -s 2 -d 7 -p ack -e 40 -i 477 -a 13 - -t 0.852552 -s 2 -d 7 -p ack -e 40 -i 477 -a 13 h -t 0.852552 -s 2 -d 7 -p ack -e 40 -i 477 -a 13 r -t 0.852904 -s 7 -d 6 -p ack -e 40 -i 459 -a 13 + -t 0.852904 -s 6 -d 1 -p ack -e 40 -i 459 -a 13 - -t 0.852904 -s 6 -d 1 -p ack -e 40 -i 459 -a 13 h -t 0.852904 -s 6 -d 1 -p ack -e 40 -i 459 -a 13 - -t 0.853608 -s 8 -d 9 -p tcp -e 1000 -i 446 -a 20 h -t 0.853608 -s 8 -d 9 -p tcp -e 1000 -i 446 -a 20 r -t 0.854653 -s 9 -d 8 -p ack -e 40 -i 460 -a 20 + -t 0.854653 -s 8 -d 3 -p ack -e 40 -i 460 -a 20 - -t 0.854653 -s 8 -d 3 -p ack -e 40 -i 460 -a 20 h -t 0.854653 -s 8 -d 3 -p ack -e 40 -i 460 -a 20 r -t 0.855752 -s 6 -d 7 -p tcp -e 1000 -i 411 -a 10 + -t 0.855752 -s 7 -d 2 -p tcp -e 1000 -i 411 -a 10 - -t 0.855752 -s 7 -d 2 -p tcp -e 1000 -i 411 -a 10 h -t 0.855752 -s 7 -d 2 -p tcp -e 1000 -i 411 -a 10 r -t 0.855773 -s 4 -d 10 -p ack -e 40 -i 476 -a 20 + -t 0.855773 -s 9 -d 8 -p ack -e 40 -i 476 -a 20 - -t 0.855773 -s 9 -d 8 -p ack -e 40 -i 476 -a 20 h -t 0.855773 -s 9 -d 8 -p ack -e 40 -i 476 -a 20 r -t 0.855936 -s 6 -d 1 -p ack -e 40 -i 459 -a 13 r -t 0.856584 -s 2 -d 7 -p ack -e 40 -i 477 -a 13 + -t 0.856584 -s 7 -d 6 -p ack -e 40 -i 477 -a 13 - -t 0.856584 -s 7 -d 6 -p ack -e 40 -i 477 -a 13 h -t 0.856584 -s 7 -d 6 -p ack -e 40 -i 477 -a 13 r -t 0.857075 -s 9 -d 10 -p tcp -e 1000 -i 435 -a 20 + -t 0.857075 -s 4 -d 10 -p ack -e 40 -i 478 -a 20 - -t 0.857075 -s 4 -d 10 -p ack -e 40 -i 478 -a 20 h -t 0.857075 -s 4 -d 10 -p ack -e 40 -i 478 -a 20 r -t 0.857608 -s 8 -d 9 -p tcp -e 1000 -i 436 -a 20 + -t 0.857608 -s 9 -d 10 -p tcp -e 1000 -i 436 -a 20 - -t 0.857608 -s 9 -d 10 -p tcp -e 1000 -i 436 -a 20 h -t 0.857608 -s 9 -d 10 -p tcp -e 1000 -i 436 -a 20 r -t 0.857685 -s 8 -d 3 -p ack -e 40 -i 460 -a 20 + -t 0.857685 -s 3 -d 8 -p tcp -e 1000 -i 479 -a 20 - -t 0.857685 -s 3 -d 8 -p tcp -e 1000 -i 479 -a 20 h -t 0.857685 -s 3 -d 8 -p tcp -e 1000 -i 479 -a 20 + -t 0.857685 -s 3 -d 8 -p tcp -e 1000 -i 480 -a 20 + -t 0.857685 -s 3 -d 8 -p tcp -e 1000 -i 481 -a 20 - -t 0.858485 -s 3 -d 8 -p tcp -e 1000 -i 480 -a 20 h -t 0.858485 -s 3 -d 8 -p tcp -e 1000 -i 480 -a 20 - -t 0.858941 -s 8 -d 9 -p tcp -e 1000 -i 453 -a 21 h -t 0.858941 -s 8 -d 9 -p tcp -e 1000 -i 453 -a 21 - -t 0.859285 -s 3 -d 8 -p tcp -e 1000 -i 481 -a 20 h -t 0.859285 -s 3 -d 8 -p tcp -e 1000 -i 481 -a 20 - -t 0.859752 -s 6 -d 7 -p tcp -e 1000 -i 438 -a 11 h -t 0.859752 -s 6 -d 7 -p tcp -e 1000 -i 438 -a 11 r -t 0.859986 -s 9 -d 8 -p ack -e 40 -i 462 -a 20 + -t 0.859987 -s 8 -d 3 -p ack -e 40 -i 462 -a 20 - -t 0.859987 -s 8 -d 3 -p ack -e 40 -i 462 -a 20 h -t 0.859987 -s 8 -d 3 -p ack -e 40 -i 462 -a 20 r -t 0.860552 -s 7 -d 2 -p tcp -e 1000 -i 411 -a 10 + -t 0.860552 -s 2 -d 7 -p ack -e 40 -i 482 -a 10 - -t 0.860552 -s 2 -d 7 -p ack -e 40 -i 482 -a 10 h -t 0.860552 -s 2 -d 7 -p ack -e 40 -i 482 -a 10 r -t 0.860904 -s 7 -d 6 -p ack -e 40 -i 465 -a 13 + -t 0.860904 -s 6 -d 1 -p ack -e 40 -i 465 -a 13 - -t 0.860904 -s 6 -d 1 -p ack -e 40 -i 465 -a 13 h -t 0.860904 -s 6 -d 1 -p ack -e 40 -i 465 -a 13 r -t 0.861107 -s 4 -d 10 -p ack -e 40 -i 478 -a 20 + -t 0.861107 -s 9 -d 8 -p ack -e 40 -i 478 -a 20 - -t 0.861107 -s 9 -d 8 -p ack -e 40 -i 478 -a 20 h -t 0.861107 -s 9 -d 8 -p ack -e 40 -i 478 -a 20 r -t 0.861485 -s 3 -d 8 -p tcp -e 1000 -i 479 -a 20 + -t 0.861485 -s 8 -d 9 -p tcp -e 1000 -i 479 -a 20 r -t 0.862285 -s 3 -d 8 -p tcp -e 1000 -i 480 -a 20 + -t 0.862285 -s 8 -d 9 -p tcp -e 1000 -i 480 -a 20 r -t 0.862408 -s 9 -d 10 -p tcp -e 1000 -i 436 -a 20 + -t 0.862408 -s 4 -d 10 -p ack -e 40 -i 483 -a 20 - -t 0.862408 -s 4 -d 10 -p ack -e 40 -i 483 -a 20 h -t 0.862408 -s 4 -d 10 -p ack -e 40 -i 483 -a 20 r -t 0.862941 -s 8 -d 9 -p tcp -e 1000 -i 444 -a 20 + -t 0.862941 -s 9 -d 10 -p tcp -e 1000 -i 444 -a 20 - -t 0.862941 -s 9 -d 10 -p tcp -e 1000 -i 444 -a 20 h -t 0.862941 -s 9 -d 10 -p tcp -e 1000 -i 444 -a 20 r -t 0.863019 -s 8 -d 3 -p ack -e 40 -i 462 -a 20 r -t 0.863085 -s 3 -d 8 -p tcp -e 1000 -i 481 -a 20 + -t 0.863085 -s 8 -d 9 -p tcp -e 1000 -i 481 -a 20 d -t 0.863085 -s 8 -d 9 -p tcp -e 1000 -i 481 -a 20 r -t 0.863752 -s 6 -d 7 -p tcp -e 1000 -i 414 -a 13 + -t 0.863752 -s 7 -d 2 -p tcp -e 1000 -i 414 -a 13 - -t 0.863752 -s 7 -d 2 -p tcp -e 1000 -i 414 -a 13 h -t 0.863752 -s 7 -d 2 -p tcp -e 1000 -i 414 -a 13 r -t 0.863936 -s 6 -d 1 -p ack -e 40 -i 465 -a 13 - -t 0.864275 -s 8 -d 9 -p tcp -e 1000 -i 455 -a 21 h -t 0.864275 -s 8 -d 9 -p tcp -e 1000 -i 455 -a 21 r -t 0.864584 -s 2 -d 7 -p ack -e 40 -i 482 -a 10 + -t 0.864584 -s 7 -d 6 -p ack -e 40 -i 482 -a 10 - -t 0.864584 -s 7 -d 6 -p ack -e 40 -i 482 -a 10 h -t 0.864584 -s 7 -d 6 -p ack -e 40 -i 482 -a 10 r -t 0.86532 -s 9 -d 8 -p ack -e 40 -i 468 -a 20 + -t 0.86532 -s 8 -d 3 -p ack -e 40 -i 468 -a 20 - -t 0.86532 -s 8 -d 3 -p ack -e 40 -i 468 -a 20 h -t 0.86532 -s 8 -d 3 -p ack -e 40 -i 468 -a 20 r -t 0.86644 -s 4 -d 10 -p ack -e 40 -i 483 -a 20 + -t 0.86644 -s 9 -d 8 -p ack -e 40 -i 483 -a 20 - -t 0.86644 -s 9 -d 8 -p ack -e 40 -i 483 -a 20 h -t 0.86644 -s 9 -d 8 -p ack -e 40 -i 483 -a 20 r -t 0.867741 -s 9 -d 10 -p tcp -e 1000 -i 444 -a 20 + -t 0.867741 -s 4 -d 10 -p ack -e 40 -i 484 -a 20 - -t 0.867741 -s 4 -d 10 -p ack -e 40 -i 484 -a 20 h -t 0.867741 -s 4 -d 10 -p ack -e 40 -i 484 -a 20 - -t 0.867752 -s 6 -d 7 -p tcp -e 1000 -i 439 -a 11 h -t 0.867752 -s 6 -d 7 -p tcp -e 1000 -i 439 -a 11 r -t 0.868274 -s 8 -d 9 -p tcp -e 1000 -i 445 -a 20 + -t 0.868275 -s 9 -d 10 -p tcp -e 1000 -i 445 -a 20 - -t 0.868275 -s 9 -d 10 -p tcp -e 1000 -i 445 -a 20 h -t 0.868275 -s 9 -d 10 -p tcp -e 1000 -i 445 -a 20 r -t 0.868352 -s 8 -d 3 -p ack -e 40 -i 468 -a 20 + -t 0.868352 -s 3 -d 8 -p tcp -e 1000 -i 485 -a 20 - -t 0.868352 -s 3 -d 8 -p tcp -e 1000 -i 485 -a 20 h -t 0.868352 -s 3 -d 8 -p tcp -e 1000 -i 485 -a 20 + -t 0.868352 -s 3 -d 8 -p tcp -e 1000 -i 486 -a 20 + -t 0.868352 -s 3 -d 8 -p tcp -e 1000 -i 487 -a 20 r -t 0.868552 -s 7 -d 2 -p tcp -e 1000 -i 414 -a 13 + -t 0.868552 -s 2 -d 7 -p ack -e 40 -i 488 -a 13 - -t 0.868552 -s 2 -d 7 -p ack -e 40 -i 488 -a 13 h -t 0.868552 -s 2 -d 7 -p ack -e 40 -i 488 -a 13 r -t 0.868904 -s 7 -d 6 -p ack -e 40 -i 470 -a 13 + -t 0.868904 -s 6 -d 1 -p ack -e 40 -i 470 -a 13 - -t 0.868904 -s 6 -d 1 -p ack -e 40 -i 470 -a 13 h -t 0.868904 -s 6 -d 1 -p ack -e 40 -i 470 -a 13 - -t 0.869152 -s 3 -d 8 -p tcp -e 1000 -i 486 -a 20 h -t 0.869152 -s 3 -d 8 -p tcp -e 1000 -i 486 -a 20 - -t 0.869608 -s 8 -d 9 -p tcp -e 1000 -i 461 -a 22 h -t 0.869608 -s 8 -d 9 -p tcp -e 1000 -i 461 -a 22 - -t 0.869952 -s 3 -d 8 -p tcp -e 1000 -i 487 -a 20 h -t 0.869952 -s 3 -d 8 -p tcp -e 1000 -i 487 -a 20 r -t 0.870653 -s 9 -d 8 -p ack -e 40 -i 471 -a 20 + -t 0.870653 -s 8 -d 3 -p ack -e 40 -i 471 -a 20 - -t 0.870653 -s 8 -d 3 -p ack -e 40 -i 471 -a 20 h -t 0.870653 -s 8 -d 3 -p ack -e 40 -i 471 -a 20 r -t 0.871752 -s 6 -d 7 -p tcp -e 1000 -i 422 -a 13 + -t 0.871752 -s 7 -d 2 -p tcp -e 1000 -i 422 -a 13 - -t 0.871752 -s 7 -d 2 -p tcp -e 1000 -i 422 -a 13 h -t 0.871752 -s 7 -d 2 -p tcp -e 1000 -i 422 -a 13 r -t 0.871773 -s 4 -d 10 -p ack -e 40 -i 484 -a 20 + -t 0.871773 -s 9 -d 8 -p ack -e 40 -i 484 -a 20 - -t 0.871773 -s 9 -d 8 -p ack -e 40 -i 484 -a 20 h -t 0.871773 -s 9 -d 8 -p ack -e 40 -i 484 -a 20 r -t 0.871936 -s 6 -d 1 -p ack -e 40 -i 470 -a 13 + -t 0.871936 -s 1 -d 6 -p tcp -e 1000 -i 489 -a 13 - -t 0.871936 -s 1 -d 6 -p tcp -e 1000 -i 489 -a 13 h -t 0.871936 -s 1 -d 6 -p tcp -e 1000 -i 489 -a 13 r -t 0.872152 -s 3 -d 8 -p tcp -e 1000 -i 485 -a 20 + -t 0.872152 -s 8 -d 9 -p tcp -e 1000 -i 485 -a 20 r -t 0.872584 -s 2 -d 7 -p ack -e 40 -i 488 -a 13 + -t 0.872584 -s 7 -d 6 -p ack -e 40 -i 488 -a 13 - -t 0.872584 -s 7 -d 6 -p ack -e 40 -i 488 -a 13 h -t 0.872584 -s 7 -d 6 -p ack -e 40 -i 488 -a 13 r -t 0.872952 -s 3 -d 8 -p tcp -e 1000 -i 486 -a 20 + -t 0.872952 -s 8 -d 9 -p tcp -e 1000 -i 486 -a 20 r -t 0.873075 -s 9 -d 10 -p tcp -e 1000 -i 445 -a 20 + -t 0.873075 -s 4 -d 10 -p ack -e 40 -i 490 -a 20 - -t 0.873075 -s 4 -d 10 -p ack -e 40 -i 490 -a 20 h -t 0.873075 -s 4 -d 10 -p ack -e 40 -i 490 -a 20 r -t 0.873608 -s 8 -d 9 -p tcp -e 1000 -i 448 -a 21 + -t 0.873608 -s 9 -d 10 -p tcp -e 1000 -i 448 -a 21 - -t 0.873608 -s 9 -d 10 -p tcp -e 1000 -i 448 -a 21 h -t 0.873608 -s 9 -d 10 -p tcp -e 1000 -i 448 -a 21 r -t 0.873685 -s 8 -d 3 -p ack -e 40 -i 471 -a 20 r -t 0.873752 -s 3 -d 8 -p tcp -e 1000 -i 487 -a 20 + -t 0.873752 -s 8 -d 9 -p tcp -e 1000 -i 487 -a 20 d -t 0.873752 -s 8 -d 9 -p tcp -e 1000 -i 487 -a 20 - -t 0.874941 -s 8 -d 9 -p tcp -e 1000 -i 458 -a 21 h -t 0.874941 -s 8 -d 9 -p tcp -e 1000 -i 458 -a 21 r -t 0.875736 -s 1 -d 6 -p tcp -e 1000 -i 489 -a 13 + -t 0.875736 -s 6 -d 7 -p tcp -e 1000 -i 489 -a 13 - -t 0.875752 -s 6 -d 7 -p tcp -e 1000 -i 466 -a 13 h -t 0.875752 -s 6 -d 7 -p tcp -e 1000 -i 466 -a 13 r -t 0.875986 -s 9 -d 8 -p ack -e 40 -i 476 -a 20 + -t 0.875987 -s 8 -d 3 -p ack -e 40 -i 476 -a 20 - -t 0.875987 -s 8 -d 3 -p ack -e 40 -i 476 -a 20 h -t 0.875987 -s 8 -d 3 -p ack -e 40 -i 476 -a 20 r -t 0.876552 -s 7 -d 2 -p tcp -e 1000 -i 422 -a 13 + -t 0.876552 -s 2 -d 7 -p ack -e 40 -i 491 -a 13 - -t 0.876552 -s 2 -d 7 -p ack -e 40 -i 491 -a 13 h -t 0.876552 -s 2 -d 7 -p ack -e 40 -i 491 -a 13 r -t 0.876904 -s 7 -d 6 -p ack -e 40 -i 477 -a 13 + -t 0.876904 -s 6 -d 1 -p ack -e 40 -i 477 -a 13 - -t 0.876904 -s 6 -d 1 -p ack -e 40 -i 477 -a 13 h -t 0.876904 -s 6 -d 1 -p ack -e 40 -i 477 -a 13 r -t 0.877107 -s 4 -d 10 -p ack -e 40 -i 490 -a 20 + -t 0.877107 -s 9 -d 8 -p ack -e 40 -i 490 -a 20 - -t 0.877107 -s 9 -d 8 -p ack -e 40 -i 490 -a 20 h -t 0.877107 -s 9 -d 8 -p ack -e 40 -i 490 -a 20 r -t 0.878408 -s 9 -d 10 -p tcp -e 1000 -i 448 -a 21 + -t 0.878408 -s 4 -d 10 -p ack -e 40 -i 492 -a 21 - -t 0.878408 -s 4 -d 10 -p ack -e 40 -i 492 -a 21 h -t 0.878408 -s 4 -d 10 -p ack -e 40 -i 492 -a 21 r -t 0.878941 -s 8 -d 9 -p tcp -e 1000 -i 446 -a 20 + -t 0.878941 -s 9 -d 10 -p tcp -e 1000 -i 446 -a 20 - -t 0.878941 -s 9 -d 10 -p tcp -e 1000 -i 446 -a 20 h -t 0.878941 -s 9 -d 10 -p tcp -e 1000 -i 446 -a 20 r -t 0.879019 -s 8 -d 3 -p ack -e 40 -i 476 -a 20 + -t 0.879019 -s 3 -d 8 -p tcp -e 1000 -i 493 -a 20 - -t 0.879019 -s 3 -d 8 -p tcp -e 1000 -i 493 -a 20 h -t 0.879019 -s 3 -d 8 -p tcp -e 1000 -i 493 -a 20 + -t 0.879019 -s 3 -d 8 -p tcp -e 1000 -i 494 -a 20 r -t 0.879752 -s 6 -d 7 -p tcp -e 1000 -i 431 -a 13 + -t 0.879752 -s 7 -d 2 -p tcp -e 1000 -i 431 -a 13 - -t 0.879752 -s 7 -d 2 -p tcp -e 1000 -i 431 -a 13 h -t 0.879752 -s 7 -d 2 -p tcp -e 1000 -i 431 -a 13 - -t 0.879819 -s 3 -d 8 -p tcp -e 1000 -i 494 -a 20 h -t 0.879819 -s 3 -d 8 -p tcp -e 1000 -i 494 -a 20 r -t 0.879936 -s 6 -d 1 -p ack -e 40 -i 477 -a 13 - -t 0.880275 -s 8 -d 9 -p tcp -e 1000 -i 463 -a 21 h -t 0.880275 -s 8 -d 9 -p tcp -e 1000 -i 463 -a 21 r -t 0.880584 -s 2 -d 7 -p ack -e 40 -i 491 -a 13 + -t 0.880584 -s 7 -d 6 -p ack -e 40 -i 491 -a 13 - -t 0.880584 -s 7 -d 6 -p ack -e 40 -i 491 -a 13 h -t 0.880584 -s 7 -d 6 -p ack -e 40 -i 491 -a 13 r -t 0.88132 -s 9 -d 8 -p ack -e 40 -i 478 -a 20 + -t 0.88132 -s 8 -d 3 -p ack -e 40 -i 478 -a 20 - -t 0.88132 -s 8 -d 3 -p ack -e 40 -i 478 -a 20 h -t 0.88132 -s 8 -d 3 -p ack -e 40 -i 478 -a 20 r -t 0.88244 -s 4 -d 10 -p ack -e 40 -i 492 -a 21 + -t 0.88244 -s 9 -d 8 -p ack -e 40 -i 492 -a 21 - -t 0.88244 -s 9 -d 8 -p ack -e 40 -i 492 -a 21 h -t 0.88244 -s 9 -d 8 -p ack -e 40 -i 492 -a 21 r -t 0.882819 -s 3 -d 8 -p tcp -e 1000 -i 493 -a 20 + -t 0.882819 -s 8 -d 9 -p tcp -e 1000 -i 493 -a 20 r -t 0.883619 -s 3 -d 8 -p tcp -e 1000 -i 494 -a 20 + -t 0.883619 -s 8 -d 9 -p tcp -e 1000 -i 494 -a 20 r -t 0.883741 -s 9 -d 10 -p tcp -e 1000 -i 446 -a 20 + -t 0.883741 -s 4 -d 10 -p ack -e 40 -i 495 -a 20 - -t 0.883741 -s 4 -d 10 -p ack -e 40 -i 495 -a 20 h -t 0.883741 -s 4 -d 10 -p ack -e 40 -i 495 -a 20 - -t 0.883752 -s 6 -d 7 -p tcp -e 1000 -i 475 -a 14 h -t 0.883752 -s 6 -d 7 -p tcp -e 1000 -i 475 -a 14 r -t 0.884274 -s 8 -d 9 -p tcp -e 1000 -i 453 -a 21 + -t 0.884275 -s 9 -d 10 -p tcp -e 1000 -i 453 -a 21 - -t 0.884275 -s 9 -d 10 -p tcp -e 1000 -i 453 -a 21 h -t 0.884275 -s 9 -d 10 -p tcp -e 1000 -i 453 -a 21 r -t 0.884352 -s 8 -d 3 -p ack -e 40 -i 478 -a 20 r -t 0.884552 -s 7 -d 2 -p tcp -e 1000 -i 431 -a 13 + -t 0.884552 -s 2 -d 7 -p ack -e 40 -i 496 -a 13 - -t 0.884552 -s 2 -d 7 -p ack -e 40 -i 496 -a 13 h -t 0.884552 -s 2 -d 7 -p ack -e 40 -i 496 -a 13 r -t 0.884904 -s 7 -d 6 -p ack -e 40 -i 482 -a 10 + -t 0.884904 -s 6 -d 1 -p ack -e 40 -i 482 -a 10 - -t 0.884904 -s 6 -d 1 -p ack -e 40 -i 482 -a 10 h -t 0.884904 -s 6 -d 1 -p ack -e 40 -i 482 -a 10 - -t 0.885608 -s 8 -d 9 -p tcp -e 1000 -i 469 -a 22 h -t 0.885608 -s 8 -d 9 -p tcp -e 1000 -i 469 -a 22 r -t 0.886653 -s 9 -d 8 -p ack -e 40 -i 483 -a 20 + -t 0.886653 -s 8 -d 3 -p ack -e 40 -i 483 -a 20 - -t 0.886653 -s 8 -d 3 -p ack -e 40 -i 483 -a 20 h -t 0.886653 -s 8 -d 3 -p ack -e 40 -i 483 -a 20 r -t 0.887752 -s 6 -d 7 -p tcp -e 1000 -i 438 -a 11 + -t 0.887752 -s 7 -d 2 -p tcp -e 1000 -i 438 -a 11 - -t 0.887752 -s 7 -d 2 -p tcp -e 1000 -i 438 -a 11 h -t 0.887752 -s 7 -d 2 -p tcp -e 1000 -i 438 -a 11 r -t 0.887773 -s 4 -d 10 -p ack -e 40 -i 495 -a 20 + -t 0.887773 -s 9 -d 8 -p ack -e 40 -i 495 -a 20 - -t 0.887773 -s 9 -d 8 -p ack -e 40 -i 495 -a 20 h -t 0.887773 -s 9 -d 8 -p ack -e 40 -i 495 -a 20 r -t 0.887936 -s 6 -d 1 -p ack -e 40 -i 482 -a 10 + -t 0.887936 -s 1 -d 6 -p tcp -e 1000 -i 497 -a 10 - -t 0.887936 -s 1 -d 6 -p tcp -e 1000 -i 497 -a 10 h -t 0.887936 -s 1 -d 6 -p tcp -e 1000 -i 497 -a 10 + -t 0.887936 -s 1 -d 6 -p tcp -e 1000 -i 498 -a 10 r -t 0.888584 -s 2 -d 7 -p ack -e 40 -i 496 -a 13 + -t 0.888584 -s 7 -d 6 -p ack -e 40 -i 496 -a 13 - -t 0.888584 -s 7 -d 6 -p ack -e 40 -i 496 -a 13 h -t 0.888584 -s 7 -d 6 -p ack -e 40 -i 496 -a 13 - -t 0.888736 -s 1 -d 6 -p tcp -e 1000 -i 498 -a 10 h -t 0.888736 -s 1 -d 6 -p tcp -e 1000 -i 498 -a 10 r -t 0.889075 -s 9 -d 10 -p tcp -e 1000 -i 453 -a 21 + -t 0.889075 -s 4 -d 10 -p ack -e 40 -i 499 -a 21 - -t 0.889075 -s 4 -d 10 -p ack -e 40 -i 499 -a 21 h -t 0.889075 -s 4 -d 10 -p ack -e 40 -i 499 -a 21 r -t 0.889608 -s 8 -d 9 -p tcp -e 1000 -i 455 -a 21 + -t 0.889608 -s 9 -d 10 -p tcp -e 1000 -i 455 -a 21 - -t 0.889608 -s 9 -d 10 -p tcp -e 1000 -i 455 -a 21 h -t 0.889608 -s 9 -d 10 -p tcp -e 1000 -i 455 -a 21 r -t 0.889685 -s 8 -d 3 -p ack -e 40 -i 483 -a 20 + -t 0.889685 -s 3 -d 8 -p tcp -e 1000 -i 500 -a 20 - -t 0.889685 -s 3 -d 8 -p tcp -e 1000 -i 500 -a 20 h -t 0.889685 -s 3 -d 8 -p tcp -e 1000 -i 500 -a 20 - -t 0.890941 -s 8 -d 9 -p tcp -e 1000 -i 464 -a 21 h -t 0.890941 -s 8 -d 9 -p tcp -e 1000 -i 464 -a 21 r -t 0.891736 -s 1 -d 6 -p tcp -e 1000 -i 497 -a 10 + -t 0.891736 -s 6 -d 7 -p tcp -e 1000 -i 497 -a 10 - -t 0.891752 -s 6 -d 7 -p tcp -e 1000 -i 467 -a 13 h -t 0.891752 -s 6 -d 7 -p tcp -e 1000 -i 467 -a 13 r -t 0.891986 -s 9 -d 8 -p ack -e 40 -i 484 -a 20 + -t 0.891987 -s 8 -d 3 -p ack -e 40 -i 484 -a 20 - -t 0.891987 -s 8 -d 3 -p ack -e 40 -i 484 -a 20 h -t 0.891987 -s 8 -d 3 -p ack -e 40 -i 484 -a 20 r -t 0.892536 -s 1 -d 6 -p tcp -e 1000 -i 498 -a 10 + -t 0.892536 -s 6 -d 7 -p tcp -e 1000 -i 498 -a 10 r -t 0.892552 -s 7 -d 2 -p tcp -e 1000 -i 438 -a 11 + -t 0.892552 -s 2 -d 7 -p ack -e 40 -i 501 -a 11 - -t 0.892552 -s 2 -d 7 -p ack -e 40 -i 501 -a 11 h -t 0.892552 -s 2 -d 7 -p ack -e 40 -i 501 -a 11 r -t 0.892904 -s 7 -d 6 -p ack -e 40 -i 488 -a 13 + -t 0.892904 -s 6 -d 1 -p ack -e 40 -i 488 -a 13 - -t 0.892904 -s 6 -d 1 -p ack -e 40 -i 488 -a 13 h -t 0.892904 -s 6 -d 1 -p ack -e 40 -i 488 -a 13 r -t 0.893107 -s 4 -d 10 -p ack -e 40 -i 499 -a 21 + -t 0.893107 -s 9 -d 8 -p ack -e 40 -i 499 -a 21 - -t 0.893107 -s 9 -d 8 -p ack -e 40 -i 499 -a 21 h -t 0.893107 -s 9 -d 8 -p ack -e 40 -i 499 -a 21 r -t 0.893485 -s 3 -d 8 -p tcp -e 1000 -i 500 -a 20 + -t 0.893485 -s 8 -d 9 -p tcp -e 1000 -i 500 -a 20 r -t 0.894408 -s 9 -d 10 -p tcp -e 1000 -i 455 -a 21 + -t 0.894408 -s 4 -d 10 -p ack -e 40 -i 502 -a 21 - -t 0.894408 -s 4 -d 10 -p ack -e 40 -i 502 -a 21 h -t 0.894408 -s 4 -d 10 -p ack -e 40 -i 502 -a 21 r -t 0.894941 -s 8 -d 9 -p tcp -e 1000 -i 461 -a 22 + -t 0.894941 -s 9 -d 10 -p tcp -e 1000 -i 461 -a 22 - -t 0.894941 -s 9 -d 10 -p tcp -e 1000 -i 461 -a 22 h -t 0.894941 -s 9 -d 10 -p tcp -e 1000 -i 461 -a 22 r -t 0.895019 -s 8 -d 3 -p ack -e 40 -i 484 -a 20 + -t 0.895019 -s 3 -d 8 -p tcp -e 1000 -i 503 -a 20 - -t 0.895019 -s 3 -d 8 -p tcp -e 1000 -i 503 -a 20 h -t 0.895019 -s 3 -d 8 -p tcp -e 1000 -i 503 -a 20 r -t 0.895752 -s 6 -d 7 -p tcp -e 1000 -i 439 -a 11 + -t 0.895752 -s 7 -d 2 -p tcp -e 1000 -i 439 -a 11 - -t 0.895752 -s 7 -d 2 -p tcp -e 1000 -i 439 -a 11 h -t 0.895752 -s 7 -d 2 -p tcp -e 1000 -i 439 -a 11 r -t 0.895936 -s 6 -d 1 -p ack -e 40 -i 488 -a 13 - -t 0.896275 -s 8 -d 9 -p tcp -e 1000 -i 472 -a 20 h -t 0.896275 -s 8 -d 9 -p tcp -e 1000 -i 472 -a 20 r -t 0.896584 -s 2 -d 7 -p ack -e 40 -i 501 -a 11 + -t 0.896584 -s 7 -d 6 -p ack -e 40 -i 501 -a 11 - -t 0.896584 -s 7 -d 6 -p ack -e 40 -i 501 -a 11 h -t 0.896584 -s 7 -d 6 -p ack -e 40 -i 501 -a 11 r -t 0.89732 -s 9 -d 8 -p ack -e 40 -i 490 -a 20 + -t 0.89732 -s 8 -d 3 -p ack -e 40 -i 490 -a 20 - -t 0.89732 -s 8 -d 3 -p ack -e 40 -i 490 -a 20 h -t 0.89732 -s 8 -d 3 -p ack -e 40 -i 490 -a 20 r -t 0.89844 -s 4 -d 10 -p ack -e 40 -i 502 -a 21 + -t 0.89844 -s 9 -d 8 -p ack -e 40 -i 502 -a 21 - -t 0.89844 -s 9 -d 8 -p ack -e 40 -i 502 -a 21 h -t 0.89844 -s 9 -d 8 -p ack -e 40 -i 502 -a 21 r -t 0.898819 -s 3 -d 8 -p tcp -e 1000 -i 503 -a 20 + -t 0.898819 -s 8 -d 9 -p tcp -e 1000 -i 503 -a 20 r -t 0.899741 -s 9 -d 10 -p tcp -e 1000 -i 461 -a 22 + -t 0.899741 -s 4 -d 10 -p ack -e 40 -i 504 -a 22 - -t 0.899741 -s 4 -d 10 -p ack -e 40 -i 504 -a 22 h -t 0.899741 -s 4 -d 10 -p ack -e 40 -i 504 -a 22 - -t 0.899752 -s 6 -d 7 -p tcp -e 1000 -i 497 -a 10 h -t 0.899752 -s 6 -d 7 -p tcp -e 1000 -i 497 -a 10 v -t 0.900002 -e take_snapshot r -t 0.900274 -s 8 -d 9 -p tcp -e 1000 -i 458 -a 21 + -t 0.900275 -s 9 -d 10 -p tcp -e 1000 -i 458 -a 21 - -t 0.900275 -s 9 -d 10 -p tcp -e 1000 -i 458 -a 21 h -t 0.900275 -s 9 -d 10 -p tcp -e 1000 -i 458 -a 21 r -t 0.900352 -s 8 -d 3 -p ack -e 40 -i 490 -a 20 + -t 0.900352 -s 3 -d 8 -p tcp -e 1000 -i 505 -a 20 - -t 0.900352 -s 3 -d 8 -p tcp -e 1000 -i 505 -a 20 h -t 0.900352 -s 3 -d 8 -p tcp -e 1000 -i 505 -a 20 r -t 0.900552 -s 7 -d 2 -p tcp -e 1000 -i 439 -a 11 + -t 0.900552 -s 2 -d 7 -p ack -e 40 -i 506 -a 11 - -t 0.900552 -s 2 -d 7 -p ack -e 40 -i 506 -a 11 h -t 0.900552 -s 2 -d 7 -p ack -e 40 -i 506 -a 11 r -t 0.900904 -s 7 -d 6 -p ack -e 40 -i 491 -a 13 + -t 0.900904 -s 6 -d 1 -p ack -e 40 -i 491 -a 13 - -t 0.900904 -s 6 -d 1 -p ack -e 40 -i 491 -a 13 h -t 0.900904 -s 6 -d 1 -p ack -e 40 -i 491 -a 13 - -t 0.901608 -s 8 -d 9 -p tcp -e 1000 -i 479 -a 20 h -t 0.901608 -s 8 -d 9 -p tcp -e 1000 -i 479 -a 20 r -t 0.902653 -s 9 -d 8 -p ack -e 40 -i 492 -a 21 + -t 0.902653 -s 8 -d 3 -p ack -e 40 -i 492 -a 21 - -t 0.902653 -s 8 -d 3 -p ack -e 40 -i 492 -a 21 h -t 0.902653 -s 8 -d 3 -p ack -e 40 -i 492 -a 21 r -t 0.903752 -s 6 -d 7 -p tcp -e 1000 -i 466 -a 13 + -t 0.903752 -s 7 -d 2 -p tcp -e 1000 -i 466 -a 13 - -t 0.903752 -s 7 -d 2 -p tcp -e 1000 -i 466 -a 13 h -t 0.903752 -s 7 -d 2 -p tcp -e 1000 -i 466 -a 13 r -t 0.903773 -s 4 -d 10 -p ack -e 40 -i 504 -a 22 + -t 0.903773 -s 9 -d 8 -p ack -e 40 -i 504 -a 22 - -t 0.903773 -s 9 -d 8 -p ack -e 40 -i 504 -a 22 h -t 0.903773 -s 9 -d 8 -p ack -e 40 -i 504 -a 22 r -t 0.903936 -s 6 -d 1 -p ack -e 40 -i 491 -a 13 r -t 0.904152 -s 3 -d 8 -p tcp -e 1000 -i 505 -a 20 + -t 0.904152 -s 8 -d 9 -p tcp -e 1000 -i 505 -a 20 r -t 0.904584 -s 2 -d 7 -p ack -e 40 -i 506 -a 11 + -t 0.904584 -s 7 -d 6 -p ack -e 40 -i 506 -a 11 - -t 0.904584 -s 7 -d 6 -p ack -e 40 -i 506 -a 11 h -t 0.904584 -s 7 -d 6 -p ack -e 40 -i 506 -a 11 r -t 0.905075 -s 9 -d 10 -p tcp -e 1000 -i 458 -a 21 + -t 0.905075 -s 4 -d 10 -p ack -e 40 -i 507 -a 21 - -t 0.905075 -s 4 -d 10 -p ack -e 40 -i 507 -a 21 h -t 0.905075 -s 4 -d 10 -p ack -e 40 -i 507 -a 21 r -t 0.905608 -s 8 -d 9 -p tcp -e 1000 -i 463 -a 21 + -t 0.905608 -s 9 -d 10 -p tcp -e 1000 -i 463 -a 21 - -t 0.905608 -s 9 -d 10 -p tcp -e 1000 -i 463 -a 21 h -t 0.905608 -s 9 -d 10 -p tcp -e 1000 -i 463 -a 21 r -t 0.905685 -s 8 -d 3 -p ack -e 40 -i 492 -a 21 + -t 0.905685 -s 3 -d 8 -p tcp -e 1000 -i 508 -a 21 - -t 0.905685 -s 3 -d 8 -p tcp -e 1000 -i 508 -a 21 h -t 0.905685 -s 3 -d 8 -p tcp -e 1000 -i 508 -a 21 - -t 0.906941 -s 8 -d 9 -p tcp -e 1000 -i 480 -a 20 h -t 0.906941 -s 8 -d 9 -p tcp -e 1000 -i 480 -a 20 - -t 0.907752 -s 6 -d 7 -p tcp -e 1000 -i 489 -a 13 h -t 0.907752 -s 6 -d 7 -p tcp -e 1000 -i 489 -a 13 r -t 0.907986 -s 9 -d 8 -p ack -e 40 -i 495 -a 20 + -t 0.907987 -s 8 -d 3 -p ack -e 40 -i 495 -a 20 - -t 0.907987 -s 8 -d 3 -p ack -e 40 -i 495 -a 20 h -t 0.907987 -s 8 -d 3 -p ack -e 40 -i 495 -a 20 r -t 0.908552 -s 7 -d 2 -p tcp -e 1000 -i 466 -a 13 + -t 0.908552 -s 2 -d 7 -p ack -e 40 -i 509 -a 13 - -t 0.908552 -s 2 -d 7 -p ack -e 40 -i 509 -a 13 h -t 0.908552 -s 2 -d 7 -p ack -e 40 -i 509 -a 13 r -t 0.908904 -s 7 -d 6 -p ack -e 40 -i 496 -a 13 + -t 0.908904 -s 6 -d 1 -p ack -e 40 -i 496 -a 13 - -t 0.908904 -s 6 -d 1 -p ack -e 40 -i 496 -a 13 h -t 0.908904 -s 6 -d 1 -p ack -e 40 -i 496 -a 13 r -t 0.909107 -s 4 -d 10 -p ack -e 40 -i 507 -a 21 + -t 0.909107 -s 9 -d 8 -p ack -e 40 -i 507 -a 21 - -t 0.909107 -s 9 -d 8 -p ack -e 40 -i 507 -a 21 h -t 0.909107 -s 9 -d 8 -p ack -e 40 -i 507 -a 21 r -t 0.909485 -s 3 -d 8 -p tcp -e 1000 -i 508 -a 21 + -t 0.909485 -s 8 -d 9 -p tcp -e 1000 -i 508 -a 21 r -t 0.910408 -s 9 -d 10 -p tcp -e 1000 -i 463 -a 21 + -t 0.910408 -s 4 -d 10 -p ack -e 40 -i 510 -a 21 - -t 0.910408 -s 4 -d 10 -p ack -e 40 -i 510 -a 21 h -t 0.910408 -s 4 -d 10 -p ack -e 40 -i 510 -a 21 r -t 0.910941 -s 8 -d 9 -p tcp -e 1000 -i 469 -a 22 + -t 0.910941 -s 9 -d 10 -p tcp -e 1000 -i 469 -a 22 - -t 0.910941 -s 9 -d 10 -p tcp -e 1000 -i 469 -a 22 h -t 0.910941 -s 9 -d 10 -p tcp -e 1000 -i 469 -a 22 r -t 0.911019 -s 8 -d 3 -p ack -e 40 -i 495 -a 20 + -t 0.911019 -s 3 -d 8 -p tcp -e 1000 -i 511 -a 20 - -t 0.911019 -s 3 -d 8 -p tcp -e 1000 -i 511 -a 20 h -t 0.911019 -s 3 -d 8 -p tcp -e 1000 -i 511 -a 20 r -t 0.911752 -s 6 -d 7 -p tcp -e 1000 -i 475 -a 14 + -t 0.911752 -s 7 -d 2 -p tcp -e 1000 -i 475 -a 14 - -t 0.911752 -s 7 -d 2 -p tcp -e 1000 -i 475 -a 14 h -t 0.911752 -s 7 -d 2 -p tcp -e 1000 -i 475 -a 14 r -t 0.911936 -s 6 -d 1 -p ack -e 40 -i 496 -a 13 - -t 0.912275 -s 8 -d 9 -p tcp -e 1000 -i 485 -a 20 h -t 0.912275 -s 8 -d 9 -p tcp -e 1000 -i 485 -a 20 r -t 0.912584 -s 2 -d 7 -p ack -e 40 -i 509 -a 13 + -t 0.912584 -s 7 -d 6 -p ack -e 40 -i 509 -a 13 - -t 0.912584 -s 7 -d 6 -p ack -e 40 -i 509 -a 13 h -t 0.912584 -s 7 -d 6 -p ack -e 40 -i 509 -a 13 r -t 0.91332 -s 9 -d 8 -p ack -e 40 -i 499 -a 21 + -t 0.91332 -s 8 -d 3 -p ack -e 40 -i 499 -a 21 - -t 0.91332 -s 8 -d 3 -p ack -e 40 -i 499 -a 21 h -t 0.91332 -s 8 -d 3 -p ack -e 40 -i 499 -a 21 r -t 0.91444 -s 4 -d 10 -p ack -e 40 -i 510 -a 21 + -t 0.91444 -s 9 -d 8 -p ack -e 40 -i 510 -a 21 - -t 0.91444 -s 9 -d 8 -p ack -e 40 -i 510 -a 21 h -t 0.91444 -s 9 -d 8 -p ack -e 40 -i 510 -a 21 r -t 0.914819 -s 3 -d 8 -p tcp -e 1000 -i 511 -a 20 + -t 0.914819 -s 8 -d 9 -p tcp -e 1000 -i 511 -a 20 r -t 0.915741 -s 9 -d 10 -p tcp -e 1000 -i 469 -a 22 + -t 0.915741 -s 4 -d 10 -p ack -e 40 -i 512 -a 22 - -t 0.915741 -s 4 -d 10 -p ack -e 40 -i 512 -a 22 h -t 0.915741 -s 4 -d 10 -p ack -e 40 -i 512 -a 22 - -t 0.915752 -s 6 -d 7 -p tcp -e 1000 -i 498 -a 10 h -t 0.915752 -s 6 -d 7 -p tcp -e 1000 -i 498 -a 10 r -t 0.916274 -s 8 -d 9 -p tcp -e 1000 -i 464 -a 21 + -t 0.916275 -s 9 -d 10 -p tcp -e 1000 -i 464 -a 21 - -t 0.916275 -s 9 -d 10 -p tcp -e 1000 -i 464 -a 21 h -t 0.916275 -s 9 -d 10 -p tcp -e 1000 -i 464 -a 21 r -t 0.916352 -s 8 -d 3 -p ack -e 40 -i 499 -a 21 + -t 0.916352 -s 3 -d 8 -p tcp -e 1000 -i 513 -a 21 - -t 0.916352 -s 3 -d 8 -p tcp -e 1000 -i 513 -a 21 h -t 0.916352 -s 3 -d 8 -p tcp -e 1000 -i 513 -a 21 r -t 0.916552 -s 7 -d 2 -p tcp -e 1000 -i 475 -a 14 + -t 0.916552 -s 2 -d 7 -p ack -e 40 -i 514 -a 14 - -t 0.916552 -s 2 -d 7 -p ack -e 40 -i 514 -a 14 h -t 0.916552 -s 2 -d 7 -p ack -e 40 -i 514 -a 14 r -t 0.916904 -s 7 -d 6 -p ack -e 40 -i 501 -a 11 + -t 0.916904 -s 6 -d 1 -p ack -e 40 -i 501 -a 11 - -t 0.916904 -s 6 -d 1 -p ack -e 40 -i 501 -a 11 h -t 0.916904 -s 6 -d 1 -p ack -e 40 -i 501 -a 11 - -t 0.917608 -s 8 -d 9 -p tcp -e 1000 -i 486 -a 20 h -t 0.917608 -s 8 -d 9 -p tcp -e 1000 -i 486 -a 20 r -t 0.918653 -s 9 -d 8 -p ack -e 40 -i 502 -a 21 + -t 0.918653 -s 8 -d 3 -p ack -e 40 -i 502 -a 21 - -t 0.918653 -s 8 -d 3 -p ack -e 40 -i 502 -a 21 h -t 0.918653 -s 8 -d 3 -p ack -e 40 -i 502 -a 21 r -t 0.919752 -s 6 -d 7 -p tcp -e 1000 -i 467 -a 13 + -t 0.919752 -s 7 -d 2 -p tcp -e 1000 -i 467 -a 13 - -t 0.919752 -s 7 -d 2 -p tcp -e 1000 -i 467 -a 13 h -t 0.919752 -s 7 -d 2 -p tcp -e 1000 -i 467 -a 13 r -t 0.919773 -s 4 -d 10 -p ack -e 40 -i 512 -a 22 + -t 0.919773 -s 9 -d 8 -p ack -e 40 -i 512 -a 22 - -t 0.919773 -s 9 -d 8 -p ack -e 40 -i 512 -a 22 h -t 0.919773 -s 9 -d 8 -p ack -e 40 -i 512 -a 22 r -t 0.919936 -s 6 -d 1 -p ack -e 40 -i 501 -a 11 r -t 0.920152 -s 3 -d 8 -p tcp -e 1000 -i 513 -a 21 + -t 0.920152 -s 8 -d 9 -p tcp -e 1000 -i 513 -a 21 r -t 0.920584 -s 2 -d 7 -p ack -e 40 -i 514 -a 14 + -t 0.920584 -s 7 -d 6 -p ack -e 40 -i 514 -a 14 - -t 0.920584 -s 7 -d 6 -p ack -e 40 -i 514 -a 14 h -t 0.920584 -s 7 -d 6 -p ack -e 40 -i 514 -a 14 r -t 0.921075 -s 9 -d 10 -p tcp -e 1000 -i 464 -a 21 + -t 0.921075 -s 4 -d 10 -p ack -e 40 -i 515 -a 21 - -t 0.921075 -s 4 -d 10 -p ack -e 40 -i 515 -a 21 h -t 0.921075 -s 4 -d 10 -p ack -e 40 -i 515 -a 21 r -t 0.921608 -s 8 -d 9 -p tcp -e 1000 -i 472 -a 20 + -t 0.921608 -s 9 -d 10 -p tcp -e 1000 -i 472 -a 20 - -t 0.921608 -s 9 -d 10 -p tcp -e 1000 -i 472 -a 20 h -t 0.921608 -s 9 -d 10 -p tcp -e 1000 -i 472 -a 20 r -t 0.921685 -s 8 -d 3 -p ack -e 40 -i 502 -a 21 + -t 0.921685 -s 3 -d 8 -p tcp -e 1000 -i 516 -a 21 - -t 0.921685 -s 3 -d 8 -p tcp -e 1000 -i 516 -a 21 h -t 0.921685 -s 3 -d 8 -p tcp -e 1000 -i 516 -a 21 - -t 0.922941 -s 8 -d 9 -p tcp -e 1000 -i 493 -a 20 h -t 0.922941 -s 8 -d 9 -p tcp -e 1000 -i 493 -a 20 r -t 0.923986 -s 9 -d 8 -p ack -e 40 -i 504 -a 22 + -t 0.923987 -s 8 -d 3 -p ack -e 40 -i 504 -a 22 - -t 0.923987 -s 8 -d 3 -p ack -e 40 -i 504 -a 22 h -t 0.923987 -s 8 -d 3 -p ack -e 40 -i 504 -a 22 r -t 0.924552 -s 7 -d 2 -p tcp -e 1000 -i 467 -a 13 + -t 0.924552 -s 2 -d 7 -p ack -e 40 -i 517 -a 13 - -t 0.924552 -s 2 -d 7 -p ack -e 40 -i 517 -a 13 h -t 0.924552 -s 2 -d 7 -p ack -e 40 -i 517 -a 13 r -t 0.924904 -s 7 -d 6 -p ack -e 40 -i 506 -a 11 + -t 0.924904 -s 6 -d 1 -p ack -e 40 -i 506 -a 11 - -t 0.924904 -s 6 -d 1 -p ack -e 40 -i 506 -a 11 h -t 0.924904 -s 6 -d 1 -p ack -e 40 -i 506 -a 11 r -t 0.925107 -s 4 -d 10 -p ack -e 40 -i 515 -a 21 + -t 0.925107 -s 9 -d 8 -p ack -e 40 -i 515 -a 21 - -t 0.925107 -s 9 -d 8 -p ack -e 40 -i 515 -a 21 h -t 0.925107 -s 9 -d 8 -p ack -e 40 -i 515 -a 21 r -t 0.925485 -s 3 -d 8 -p tcp -e 1000 -i 516 -a 21 + -t 0.925485 -s 8 -d 9 -p tcp -e 1000 -i 516 -a 21 r -t 0.926408 -s 9 -d 10 -p tcp -e 1000 -i 472 -a 20 + -t 0.926408 -s 4 -d 10 -p ack -e 40 -i 518 -a 20 - -t 0.926408 -s 4 -d 10 -p ack -e 40 -i 518 -a 20 h -t 0.926408 -s 4 -d 10 -p ack -e 40 -i 518 -a 20 r -t 0.926941 -s 8 -d 9 -p tcp -e 1000 -i 479 -a 20 + -t 0.926941 -s 9 -d 10 -p tcp -e 1000 -i 479 -a 20 - -t 0.926941 -s 9 -d 10 -p tcp -e 1000 -i 479 -a 20 h -t 0.926941 -s 9 -d 10 -p tcp -e 1000 -i 479 -a 20 r -t 0.927019 -s 8 -d 3 -p ack -e 40 -i 504 -a 22 + -t 0.927019 -s 3 -d 8 -p tcp -e 1000 -i 519 -a 22 - -t 0.927019 -s 3 -d 8 -p tcp -e 1000 -i 519 -a 22 h -t 0.927019 -s 3 -d 8 -p tcp -e 1000 -i 519 -a 22 + -t 0.927019 -s 3 -d 8 -p tcp -e 1000 -i 520 -a 22 r -t 0.927752 -s 6 -d 7 -p tcp -e 1000 -i 497 -a 10 + -t 0.927752 -s 7 -d 2 -p tcp -e 1000 -i 497 -a 10 - -t 0.927752 -s 7 -d 2 -p tcp -e 1000 -i 497 -a 10 h -t 0.927752 -s 7 -d 2 -p tcp -e 1000 -i 497 -a 10 - -t 0.927819 -s 3 -d 8 -p tcp -e 1000 -i 520 -a 22 h -t 0.927819 -s 3 -d 8 -p tcp -e 1000 -i 520 -a 22 r -t 0.927936 -s 6 -d 1 -p ack -e 40 -i 506 -a 11 - -t 0.928275 -s 8 -d 9 -p tcp -e 1000 -i 494 -a 20 h -t 0.928275 -s 8 -d 9 -p tcp -e 1000 -i 494 -a 20 r -t 0.928584 -s 2 -d 7 -p ack -e 40 -i 517 -a 13 + -t 0.928584 -s 7 -d 6 -p ack -e 40 -i 517 -a 13 - -t 0.928584 -s 7 -d 6 -p ack -e 40 -i 517 -a 13 h -t 0.928584 -s 7 -d 6 -p ack -e 40 -i 517 -a 13 r -t 0.92932 -s 9 -d 8 -p ack -e 40 -i 507 -a 21 + -t 0.92932 -s 8 -d 3 -p ack -e 40 -i 507 -a 21 - -t 0.92932 -s 8 -d 3 -p ack -e 40 -i 507 -a 21 h -t 0.92932 -s 8 -d 3 -p ack -e 40 -i 507 -a 21 r -t 0.93044 -s 4 -d 10 -p ack -e 40 -i 518 -a 20 + -t 0.93044 -s 9 -d 8 -p ack -e 40 -i 518 -a 20 - -t 0.93044 -s 9 -d 8 -p ack -e 40 -i 518 -a 20 h -t 0.93044 -s 9 -d 8 -p ack -e 40 -i 518 -a 20 r -t 0.930819 -s 3 -d 8 -p tcp -e 1000 -i 519 -a 22 + -t 0.930819 -s 8 -d 9 -p tcp -e 1000 -i 519 -a 22 r -t 0.931619 -s 3 -d 8 -p tcp -e 1000 -i 520 -a 22 + -t 0.931619 -s 8 -d 9 -p tcp -e 1000 -i 520 -a 22 r -t 0.931741 -s 9 -d 10 -p tcp -e 1000 -i 479 -a 20 + -t 0.931741 -s 4 -d 10 -p ack -e 40 -i 521 -a 20 - -t 0.931741 -s 4 -d 10 -p ack -e 40 -i 521 -a 20 h -t 0.931741 -s 4 -d 10 -p ack -e 40 -i 521 -a 20 r -t 0.932274 -s 8 -d 9 -p tcp -e 1000 -i 480 -a 20 + -t 0.932275 -s 9 -d 10 -p tcp -e 1000 -i 480 -a 20 - -t 0.932275 -s 9 -d 10 -p tcp -e 1000 -i 480 -a 20 h -t 0.932275 -s 9 -d 10 -p tcp -e 1000 -i 480 -a 20 r -t 0.932352 -s 8 -d 3 -p ack -e 40 -i 507 -a 21 + -t 0.932352 -s 3 -d 8 -p tcp -e 1000 -i 522 -a 21 - -t 0.932352 -s 3 -d 8 -p tcp -e 1000 -i 522 -a 21 h -t 0.932352 -s 3 -d 8 -p tcp -e 1000 -i 522 -a 21 r -t 0.932552 -s 7 -d 2 -p tcp -e 1000 -i 497 -a 10 + -t 0.932552 -s 2 -d 7 -p ack -e 40 -i 523 -a 10 - -t 0.932552 -s 2 -d 7 -p ack -e 40 -i 523 -a 10 h -t 0.932552 -s 2 -d 7 -p ack -e 40 -i 523 -a 10 r -t 0.932904 -s 7 -d 6 -p ack -e 40 -i 509 -a 13 + -t 0.932904 -s 6 -d 1 -p ack -e 40 -i 509 -a 13 - -t 0.932904 -s 6 -d 1 -p ack -e 40 -i 509 -a 13 h -t 0.932904 -s 6 -d 1 -p ack -e 40 -i 509 -a 13 - -t 0.933608 -s 8 -d 9 -p tcp -e 1000 -i 500 -a 20 h -t 0.933608 -s 8 -d 9 -p tcp -e 1000 -i 500 -a 20 r -t 0.934653 -s 9 -d 8 -p ack -e 40 -i 510 -a 21 + -t 0.934653 -s 8 -d 3 -p ack -e 40 -i 510 -a 21 - -t 0.934653 -s 8 -d 3 -p ack -e 40 -i 510 -a 21 h -t 0.934653 -s 8 -d 3 -p ack -e 40 -i 510 -a 21 r -t 0.935752 -s 6 -d 7 -p tcp -e 1000 -i 489 -a 13 + -t 0.935752 -s 7 -d 2 -p tcp -e 1000 -i 489 -a 13 - -t 0.935752 -s 7 -d 2 -p tcp -e 1000 -i 489 -a 13 h -t 0.935752 -s 7 -d 2 -p tcp -e 1000 -i 489 -a 13 r -t 0.935773 -s 4 -d 10 -p ack -e 40 -i 521 -a 20 + -t 0.935773 -s 9 -d 8 -p ack -e 40 -i 521 -a 20 - -t 0.935773 -s 9 -d 8 -p ack -e 40 -i 521 -a 20 h -t 0.935773 -s 9 -d 8 -p ack -e 40 -i 521 -a 20 r -t 0.935936 -s 6 -d 1 -p ack -e 40 -i 509 -a 13 r -t 0.936152 -s 3 -d 8 -p tcp -e 1000 -i 522 -a 21 + -t 0.936152 -s 8 -d 9 -p tcp -e 1000 -i 522 -a 21 r -t 0.936584 -s 2 -d 7 -p ack -e 40 -i 523 -a 10 + -t 0.936584 -s 7 -d 6 -p ack -e 40 -i 523 -a 10 - -t 0.936584 -s 7 -d 6 -p ack -e 40 -i 523 -a 10 h -t 0.936584 -s 7 -d 6 -p ack -e 40 -i 523 -a 10 r -t 0.937075 -s 9 -d 10 -p tcp -e 1000 -i 480 -a 20 + -t 0.937075 -s 4 -d 10 -p ack -e 40 -i 524 -a 20 - -t 0.937075 -s 4 -d 10 -p ack -e 40 -i 524 -a 20 h -t 0.937075 -s 4 -d 10 -p ack -e 40 -i 524 -a 20 r -t 0.937608 -s 8 -d 9 -p tcp -e 1000 -i 485 -a 20 + -t 0.937608 -s 9 -d 10 -p tcp -e 1000 -i 485 -a 20 - -t 0.937608 -s 9 -d 10 -p tcp -e 1000 -i 485 -a 20 h -t 0.937608 -s 9 -d 10 -p tcp -e 1000 -i 485 -a 20 r -t 0.937685 -s 8 -d 3 -p ack -e 40 -i 510 -a 21 + -t 0.937685 -s 3 -d 8 -p tcp -e 1000 -i 525 -a 21 - -t 0.937685 -s 3 -d 8 -p tcp -e 1000 -i 525 -a 21 h -t 0.937685 -s 3 -d 8 -p tcp -e 1000 -i 525 -a 21 - -t 0.938941 -s 8 -d 9 -p tcp -e 1000 -i 503 -a 20 h -t 0.938941 -s 8 -d 9 -p tcp -e 1000 -i 503 -a 20 r -t 0.939986 -s 9 -d 8 -p ack -e 40 -i 512 -a 22 + -t 0.939987 -s 8 -d 3 -p ack -e 40 -i 512 -a 22 - -t 0.939987 -s 8 -d 3 -p ack -e 40 -i 512 -a 22 h -t 0.939987 -s 8 -d 3 -p ack -e 40 -i 512 -a 22 r -t 0.940552 -s 7 -d 2 -p tcp -e 1000 -i 489 -a 13 + -t 0.940552 -s 2 -d 7 -p ack -e 40 -i 526 -a 13 - -t 0.940552 -s 2 -d 7 -p ack -e 40 -i 526 -a 13 h -t 0.940552 -s 2 -d 7 -p ack -e 40 -i 526 -a 13 r -t 0.940904 -s 7 -d 6 -p ack -e 40 -i 514 -a 14 + -t 0.940904 -s 6 -d 1 -p ack -e 40 -i 514 -a 14 - -t 0.940904 -s 6 -d 1 -p ack -e 40 -i 514 -a 14 h -t 0.940904 -s 6 -d 1 -p ack -e 40 -i 514 -a 14 r -t 0.941107 -s 4 -d 10 -p ack -e 40 -i 524 -a 20 + -t 0.941107 -s 9 -d 8 -p ack -e 40 -i 524 -a 20 - -t 0.941107 -s 9 -d 8 -p ack -e 40 -i 524 -a 20 h -t 0.941107 -s 9 -d 8 -p ack -e 40 -i 524 -a 20 r -t 0.941485 -s 3 -d 8 -p tcp -e 1000 -i 525 -a 21 + -t 0.941485 -s 8 -d 9 -p tcp -e 1000 -i 525 -a 21 r -t 0.942408 -s 9 -d 10 -p tcp -e 1000 -i 485 -a 20 + -t 0.942408 -s 4 -d 10 -p ack -e 40 -i 527 -a 20 - -t 0.942408 -s 4 -d 10 -p ack -e 40 -i 527 -a 20 h -t 0.942408 -s 4 -d 10 -p ack -e 40 -i 527 -a 20 r -t 0.942941 -s 8 -d 9 -p tcp -e 1000 -i 486 -a 20 + -t 0.942941 -s 9 -d 10 -p tcp -e 1000 -i 486 -a 20 - -t 0.942941 -s 9 -d 10 -p tcp -e 1000 -i 486 -a 20 h -t 0.942941 -s 9 -d 10 -p tcp -e 1000 -i 486 -a 20 r -t 0.943019 -s 8 -d 3 -p ack -e 40 -i 512 -a 22 + -t 0.943019 -s 3 -d 8 -p tcp -e 1000 -i 528 -a 22 - -t 0.943019 -s 3 -d 8 -p tcp -e 1000 -i 528 -a 22 h -t 0.943019 -s 3 -d 8 -p tcp -e 1000 -i 528 -a 22 r -t 0.943752 -s 6 -d 7 -p tcp -e 1000 -i 498 -a 10 + -t 0.943752 -s 7 -d 2 -p tcp -e 1000 -i 498 -a 10 - -t 0.943752 -s 7 -d 2 -p tcp -e 1000 -i 498 -a 10 h -t 0.943752 -s 7 -d 2 -p tcp -e 1000 -i 498 -a 10 r -t 0.943936 -s 6 -d 1 -p ack -e 40 -i 514 -a 14 + -t 0.943936 -s 1 -d 6 -p tcp -e 1000 -i 529 -a 14 - -t 0.943936 -s 1 -d 6 -p tcp -e 1000 -i 529 -a 14 h -t 0.943936 -s 1 -d 6 -p tcp -e 1000 -i 529 -a 14 + -t 0.943936 -s 1 -d 6 -p tcp -e 1000 -i 530 -a 14 - -t 0.944275 -s 8 -d 9 -p tcp -e 1000 -i 508 -a 21 h -t 0.944275 -s 8 -d 9 -p tcp -e 1000 -i 508 -a 21 r -t 0.944584 -s 2 -d 7 -p ack -e 40 -i 526 -a 13 + -t 0.944584 -s 7 -d 6 -p ack -e 40 -i 526 -a 13 - -t 0.944584 -s 7 -d 6 -p ack -e 40 -i 526 -a 13 h -t 0.944584 -s 7 -d 6 -p ack -e 40 -i 526 -a 13 - -t 0.944736 -s 1 -d 6 -p tcp -e 1000 -i 530 -a 14 h -t 0.944736 -s 1 -d 6 -p tcp -e 1000 -i 530 -a 14 r -t 0.94532 -s 9 -d 8 -p ack -e 40 -i 515 -a 21 + -t 0.94532 -s 8 -d 3 -p ack -e 40 -i 515 -a 21 - -t 0.94532 -s 8 -d 3 -p ack -e 40 -i 515 -a 21 h -t 0.94532 -s 8 -d 3 -p ack -e 40 -i 515 -a 21 r -t 0.94644 -s 4 -d 10 -p ack -e 40 -i 527 -a 20 + -t 0.94644 -s 9 -d 8 -p ack -e 40 -i 527 -a 20 - -t 0.94644 -s 9 -d 8 -p ack -e 40 -i 527 -a 20 h -t 0.94644 -s 9 -d 8 -p ack -e 40 -i 527 -a 20 r -t 0.946819 -s 3 -d 8 -p tcp -e 1000 -i 528 -a 22 + -t 0.946819 -s 8 -d 9 -p tcp -e 1000 -i 528 -a 22 r -t 0.947736 -s 1 -d 6 -p tcp -e 1000 -i 529 -a 14 + -t 0.947736 -s 6 -d 7 -p tcp -e 1000 -i 529 -a 14 - -t 0.947736 -s 6 -d 7 -p tcp -e 1000 -i 529 -a 14 h -t 0.947736 -s 6 -d 7 -p tcp -e 1000 -i 529 -a 14 r -t 0.947741 -s 9 -d 10 -p tcp -e 1000 -i 486 -a 20 + -t 0.947741 -s 4 -d 10 -p ack -e 40 -i 531 -a 20 - -t 0.947741 -s 4 -d 10 -p ack -e 40 -i 531 -a 20 h -t 0.947741 -s 4 -d 10 -p ack -e 40 -i 531 -a 20 r -t 0.948274 -s 8 -d 9 -p tcp -e 1000 -i 493 -a 20 + -t 0.948275 -s 9 -d 10 -p tcp -e 1000 -i 493 -a 20 - -t 0.948275 -s 9 -d 10 -p tcp -e 1000 -i 493 -a 20 h -t 0.948275 -s 9 -d 10 -p tcp -e 1000 -i 493 -a 20 r -t 0.948352 -s 8 -d 3 -p ack -e 40 -i 515 -a 21 + -t 0.948352 -s 3 -d 8 -p tcp -e 1000 -i 532 -a 21 - -t 0.948352 -s 3 -d 8 -p tcp -e 1000 -i 532 -a 21 h -t 0.948352 -s 3 -d 8 -p tcp -e 1000 -i 532 -a 21 r -t 0.948536 -s 1 -d 6 -p tcp -e 1000 -i 530 -a 14 + -t 0.948536 -s 6 -d 7 -p tcp -e 1000 -i 530 -a 14 r -t 0.948552 -s 7 -d 2 -p tcp -e 1000 -i 498 -a 10 + -t 0.948552 -s 2 -d 7 -p ack -e 40 -i 533 -a 10 - -t 0.948552 -s 2 -d 7 -p ack -e 40 -i 533 -a 10 h -t 0.948552 -s 2 -d 7 -p ack -e 40 -i 533 -a 10 r -t 0.948904 -s 7 -d 6 -p ack -e 40 -i 517 -a 13 + -t 0.948904 -s 6 -d 1 -p ack -e 40 -i 517 -a 13 - -t 0.948904 -s 6 -d 1 -p ack -e 40 -i 517 -a 13 h -t 0.948904 -s 6 -d 1 -p ack -e 40 -i 517 -a 13 - -t 0.949608 -s 8 -d 9 -p tcp -e 1000 -i 505 -a 20 h -t 0.949608 -s 8 -d 9 -p tcp -e 1000 -i 505 -a 20 v -t 0.950002 -e take_snapshot r -t 0.950653 -s 9 -d 8 -p ack -e 40 -i 518 -a 20 + -t 0.950653 -s 8 -d 3 -p ack -e 40 -i 518 -a 20 - -t 0.950653 -s 8 -d 3 -p ack -e 40 -i 518 -a 20 h -t 0.950653 -s 8 -d 3 -p ack -e 40 -i 518 -a 20 r -t 0.951773 -s 4 -d 10 -p ack -e 40 -i 531 -a 20 + -t 0.951773 -s 9 -d 8 -p ack -e 40 -i 531 -a 20 - -t 0.951773 -s 9 -d 8 -p ack -e 40 -i 531 -a 20 h -t 0.951773 -s 9 -d 8 -p ack -e 40 -i 531 -a 20 r -t 0.951936 -s 6 -d 1 -p ack -e 40 -i 517 -a 13 r -t 0.952152 -s 3 -d 8 -p tcp -e 1000 -i 532 -a 21 + -t 0.952152 -s 8 -d 9 -p tcp -e 1000 -i 532 -a 21 r -t 0.952584 -s 2 -d 7 -p ack -e 40 -i 533 -a 10 + -t 0.952584 -s 7 -d 6 -p ack -e 40 -i 533 -a 10 - -t 0.952584 -s 7 -d 6 -p ack -e 40 -i 533 -a 10 h -t 0.952584 -s 7 -d 6 -p ack -e 40 -i 533 -a 10 r -t 0.953075 -s 9 -d 10 -p tcp -e 1000 -i 493 -a 20 + -t 0.953075 -s 4 -d 10 -p ack -e 40 -i 534 -a 20 - -t 0.953075 -s 4 -d 10 -p ack -e 40 -i 534 -a 20 h -t 0.953075 -s 4 -d 10 -p ack -e 40 -i 534 -a 20 r -t 0.953608 -s 8 -d 9 -p tcp -e 1000 -i 494 -a 20 + -t 0.953608 -s 9 -d 10 -p tcp -e 1000 -i 494 -a 20 - -t 0.953608 -s 9 -d 10 -p tcp -e 1000 -i 494 -a 20 h -t 0.953608 -s 9 -d 10 -p tcp -e 1000 -i 494 -a 20 r -t 0.953685 -s 8 -d 3 -p ack -e 40 -i 518 -a 20 + -t 0.953685 -s 3 -d 8 -p tcp -e 1000 -i 535 -a 20 - -t 0.953685 -s 3 -d 8 -p tcp -e 1000 -i 535 -a 20 h -t 0.953685 -s 3 -d 8 -p tcp -e 1000 -i 535 -a 20 - -t 0.954941 -s 8 -d 9 -p tcp -e 1000 -i 513 -a 21 h -t 0.954941 -s 8 -d 9 -p tcp -e 1000 -i 513 -a 21 - -t 0.955736 -s 6 -d 7 -p tcp -e 1000 -i 530 -a 14 h -t 0.955736 -s 6 -d 7 -p tcp -e 1000 -i 530 -a 14 r -t 0.955986 -s 9 -d 8 -p ack -e 40 -i 521 -a 20 + -t 0.955987 -s 8 -d 3 -p ack -e 40 -i 521 -a 20 - -t 0.955987 -s 8 -d 3 -p ack -e 40 -i 521 -a 20 h -t 0.955987 -s 8 -d 3 -p ack -e 40 -i 521 -a 20 r -t 0.956904 -s 7 -d 6 -p ack -e 40 -i 523 -a 10 + -t 0.956904 -s 6 -d 1 -p ack -e 40 -i 523 -a 10 - -t 0.956904 -s 6 -d 1 -p ack -e 40 -i 523 -a 10 h -t 0.956904 -s 6 -d 1 -p ack -e 40 -i 523 -a 10 r -t 0.957107 -s 4 -d 10 -p ack -e 40 -i 534 -a 20 + -t 0.957107 -s 9 -d 8 -p ack -e 40 -i 534 -a 20 - -t 0.957107 -s 9 -d 8 -p ack -e 40 -i 534 -a 20 h -t 0.957107 -s 9 -d 8 -p ack -e 40 -i 534 -a 20 r -t 0.957485 -s 3 -d 8 -p tcp -e 1000 -i 535 -a 20 + -t 0.957485 -s 8 -d 9 -p tcp -e 1000 -i 535 -a 20 r -t 0.958408 -s 9 -d 10 -p tcp -e 1000 -i 494 -a 20 + -t 0.958408 -s 4 -d 10 -p ack -e 40 -i 536 -a 20 - -t 0.958408 -s 4 -d 10 -p ack -e 40 -i 536 -a 20 h -t 0.958408 -s 4 -d 10 -p ack -e 40 -i 536 -a 20 r -t 0.958941 -s 8 -d 9 -p tcp -e 1000 -i 500 -a 20 + -t 0.958941 -s 9 -d 10 -p tcp -e 1000 -i 500 -a 20 - -t 0.958941 -s 9 -d 10 -p tcp -e 1000 -i 500 -a 20 h -t 0.958941 -s 9 -d 10 -p tcp -e 1000 -i 500 -a 20 r -t 0.959019 -s 8 -d 3 -p ack -e 40 -i 521 -a 20 r -t 0.959936 -s 6 -d 1 -p ack -e 40 -i 523 -a 10 + -t 0.959936 -s 1 -d 6 -p tcp -e 1000 -i 537 -a 10 - -t 0.959936 -s 1 -d 6 -p tcp -e 1000 -i 537 -a 10 h -t 0.959936 -s 1 -d 6 -p tcp -e 1000 -i 537 -a 10 - -t 0.960275 -s 8 -d 9 -p tcp -e 1000 -i 511 -a 20 h -t 0.960275 -s 8 -d 9 -p tcp -e 1000 -i 511 -a 20 r -t 0.96132 -s 9 -d 8 -p ack -e 40 -i 524 -a 20 + -t 0.96132 -s 8 -d 3 -p ack -e 40 -i 524 -a 20 - -t 0.96132 -s 8 -d 3 -p ack -e 40 -i 524 -a 20 h -t 0.96132 -s 8 -d 3 -p ack -e 40 -i 524 -a 20 r -t 0.96244 -s 4 -d 10 -p ack -e 40 -i 536 -a 20 + -t 0.96244 -s 9 -d 8 -p ack -e 40 -i 536 -a 20 - -t 0.96244 -s 9 -d 8 -p ack -e 40 -i 536 -a 20 h -t 0.96244 -s 9 -d 8 -p ack -e 40 -i 536 -a 20 r -t 0.963736 -s 1 -d 6 -p tcp -e 1000 -i 537 -a 10 + -t 0.963736 -s 6 -d 7 -p tcp -e 1000 -i 537 -a 10 - -t 0.963736 -s 6 -d 7 -p tcp -e 1000 -i 537 -a 10 h -t 0.963736 -s 6 -d 7 -p tcp -e 1000 -i 537 -a 10 r -t 0.963741 -s 9 -d 10 -p tcp -e 1000 -i 500 -a 20 + -t 0.963741 -s 4 -d 10 -p ack -e 40 -i 538 -a 20 - -t 0.963741 -s 4 -d 10 -p ack -e 40 -i 538 -a 20 h -t 0.963741 -s 4 -d 10 -p ack -e 40 -i 538 -a 20 r -t 0.964274 -s 8 -d 9 -p tcp -e 1000 -i 503 -a 20 + -t 0.964275 -s 9 -d 10 -p tcp -e 1000 -i 503 -a 20 - -t 0.964275 -s 9 -d 10 -p tcp -e 1000 -i 503 -a 20 h -t 0.964275 -s 9 -d 10 -p tcp -e 1000 -i 503 -a 20 r -t 0.964352 -s 8 -d 3 -p ack -e 40 -i 524 -a 20 r -t 0.964904 -s 7 -d 6 -p ack -e 40 -i 526 -a 13 + -t 0.964904 -s 6 -d 1 -p ack -e 40 -i 526 -a 13 - -t 0.964904 -s 6 -d 1 -p ack -e 40 -i 526 -a 13 h -t 0.964904 -s 6 -d 1 -p ack -e 40 -i 526 -a 13 - -t 0.965608 -s 8 -d 9 -p tcp -e 1000 -i 516 -a 21 h -t 0.965608 -s 8 -d 9 -p tcp -e 1000 -i 516 -a 21 r -t 0.966653 -s 9 -d 8 -p ack -e 40 -i 527 -a 20 + -t 0.966653 -s 8 -d 3 -p ack -e 40 -i 527 -a 20 - -t 0.966653 -s 8 -d 3 -p ack -e 40 -i 527 -a 20 h -t 0.966653 -s 8 -d 3 -p ack -e 40 -i 527 -a 20 r -t 0.967773 -s 4 -d 10 -p ack -e 40 -i 538 -a 20 + -t 0.967773 -s 9 -d 8 -p ack -e 40 -i 538 -a 20 - -t 0.967773 -s 9 -d 8 -p ack -e 40 -i 538 -a 20 h -t 0.967773 -s 9 -d 8 -p ack -e 40 -i 538 -a 20 r -t 0.967936 -s 6 -d 1 -p ack -e 40 -i 526 -a 13 + -t 0.967936 -s 1 -d 6 -p tcp -e 1000 -i 539 -a 13 - -t 0.967936 -s 1 -d 6 -p tcp -e 1000 -i 539 -a 13 h -t 0.967936 -s 1 -d 6 -p tcp -e 1000 -i 539 -a 13 + -t 0.967936 -s 1 -d 6 -p tcp -e 1000 -i 540 -a 13 - -t 0.968736 -s 1 -d 6 -p tcp -e 1000 -i 540 -a 13 h -t 0.968736 -s 1 -d 6 -p tcp -e 1000 -i 540 -a 13 r -t 0.969075 -s 9 -d 10 -p tcp -e 1000 -i 503 -a 20 + -t 0.969075 -s 4 -d 10 -p ack -e 40 -i 541 -a 20 - -t 0.969075 -s 4 -d 10 -p ack -e 40 -i 541 -a 20 h -t 0.969075 -s 4 -d 10 -p ack -e 40 -i 541 -a 20 r -t 0.969608 -s 8 -d 9 -p tcp -e 1000 -i 508 -a 21 + -t 0.969608 -s 9 -d 10 -p tcp -e 1000 -i 508 -a 21 - -t 0.969608 -s 9 -d 10 -p tcp -e 1000 -i 508 -a 21 h -t 0.969608 -s 9 -d 10 -p tcp -e 1000 -i 508 -a 21 r -t 0.969685 -s 8 -d 3 -p ack -e 40 -i 527 -a 20 + -t 0.969685 -s 3 -d 8 -p tcp -e 1000 -i 542 -a 20 - -t 0.969685 -s 3 -d 8 -p tcp -e 1000 -i 542 -a 20 h -t 0.969685 -s 3 -d 8 -p tcp -e 1000 -i 542 -a 20 - -t 0.970941 -s 8 -d 9 -p tcp -e 1000 -i 519 -a 22 h -t 0.970941 -s 8 -d 9 -p tcp -e 1000 -i 519 -a 22 r -t 0.971736 -s 1 -d 6 -p tcp -e 1000 -i 539 -a 13 + -t 0.971736 -s 6 -d 7 -p tcp -e 1000 -i 539 -a 13 - -t 0.971736 -s 6 -d 7 -p tcp -e 1000 -i 539 -a 13 h -t 0.971736 -s 6 -d 7 -p tcp -e 1000 -i 539 -a 13 r -t 0.971986 -s 9 -d 8 -p ack -e 40 -i 531 -a 20 + -t 0.971987 -s 8 -d 3 -p ack -e 40 -i 531 -a 20 - -t 0.971987 -s 8 -d 3 -p ack -e 40 -i 531 -a 20 h -t 0.971987 -s 8 -d 3 -p ack -e 40 -i 531 -a 20 r -t 0.972536 -s 1 -d 6 -p tcp -e 1000 -i 540 -a 13 + -t 0.972536 -s 6 -d 7 -p tcp -e 1000 -i 540 -a 13 r -t 0.972904 -s 7 -d 6 -p ack -e 40 -i 533 -a 10 + -t 0.972904 -s 6 -d 1 -p ack -e 40 -i 533 -a 10 - -t 0.972904 -s 6 -d 1 -p ack -e 40 -i 533 -a 10 h -t 0.972904 -s 6 -d 1 -p ack -e 40 -i 533 -a 10 r -t 0.973107 -s 4 -d 10 -p ack -e 40 -i 541 -a 20 + -t 0.973107 -s 9 -d 8 -p ack -e 40 -i 541 -a 20 - -t 0.973107 -s 9 -d 8 -p ack -e 40 -i 541 -a 20 h -t 0.973107 -s 9 -d 8 -p ack -e 40 -i 541 -a 20 r -t 0.973485 -s 3 -d 8 -p tcp -e 1000 -i 542 -a 20 + -t 0.973485 -s 8 -d 9 -p tcp -e 1000 -i 542 -a 20 r -t 0.974408 -s 9 -d 10 -p tcp -e 1000 -i 508 -a 21 + -t 0.974408 -s 4 -d 10 -p ack -e 40 -i 543 -a 21 - -t 0.974408 -s 4 -d 10 -p ack -e 40 -i 543 -a 21 h -t 0.974408 -s 4 -d 10 -p ack -e 40 -i 543 -a 21 r -t 0.974941 -s 8 -d 9 -p tcp -e 1000 -i 505 -a 20 + -t 0.974941 -s 9 -d 10 -p tcp -e 1000 -i 505 -a 20 - -t 0.974941 -s 9 -d 10 -p tcp -e 1000 -i 505 -a 20 h -t 0.974941 -s 9 -d 10 -p tcp -e 1000 -i 505 -a 20 r -t 0.975019 -s 8 -d 3 -p ack -e 40 -i 531 -a 20 r -t 0.975736 -s 6 -d 7 -p tcp -e 1000 -i 529 -a 14 + -t 0.975736 -s 7 -d 2 -p tcp -e 1000 -i 529 -a 14 - -t 0.975736 -s 7 -d 2 -p tcp -e 1000 -i 529 -a 14 h -t 0.975736 -s 7 -d 2 -p tcp -e 1000 -i 529 -a 14 r -t 0.975936 -s 6 -d 1 -p ack -e 40 -i 533 -a 10 + -t 0.975936 -s 1 -d 6 -p tcp -e 1000 -i 544 -a 10 - -t 0.975936 -s 1 -d 6 -p tcp -e 1000 -i 544 -a 10 h -t 0.975936 -s 1 -d 6 -p tcp -e 1000 -i 544 -a 10 - -t 0.976275 -s 8 -d 9 -p tcp -e 1000 -i 522 -a 21 h -t 0.976275 -s 8 -d 9 -p tcp -e 1000 -i 522 -a 21 r -t 0.97732 -s 9 -d 8 -p ack -e 40 -i 534 -a 20 + -t 0.97732 -s 8 -d 3 -p ack -e 40 -i 534 -a 20 - -t 0.97732 -s 8 -d 3 -p ack -e 40 -i 534 -a 20 h -t 0.97732 -s 8 -d 3 -p ack -e 40 -i 534 -a 20 r -t 0.97844 -s 4 -d 10 -p ack -e 40 -i 543 -a 21 + -t 0.97844 -s 9 -d 8 -p ack -e 40 -i 543 -a 21 - -t 0.97844 -s 9 -d 8 -p ack -e 40 -i 543 -a 21 h -t 0.97844 -s 9 -d 8 -p ack -e 40 -i 543 -a 21 r -t 0.979736 -s 1 -d 6 -p tcp -e 1000 -i 544 -a 10 - -t 0.979736 -s 6 -d 7 -p tcp -e 1000 -i 540 -a 13 h -t 0.979736 -s 6 -d 7 -p tcp -e 1000 -i 540 -a 13 + -t 0.979736 -s 6 -d 7 -p tcp -e 1000 -i 544 -a 10 r -t 0.979741 -s 9 -d 10 -p tcp -e 1000 -i 505 -a 20 + -t 0.979741 -s 4 -d 10 -p ack -e 40 -i 545 -a 20 - -t 0.979741 -s 4 -d 10 -p ack -e 40 -i 545 -a 20 h -t 0.979741 -s 4 -d 10 -p ack -e 40 -i 545 -a 20 r -t 0.980274 -s 8 -d 9 -p tcp -e 1000 -i 513 -a 21 + -t 0.980275 -s 9 -d 10 -p tcp -e 1000 -i 513 -a 21 - -t 0.980275 -s 9 -d 10 -p tcp -e 1000 -i 513 -a 21 h -t 0.980275 -s 9 -d 10 -p tcp -e 1000 -i 513 -a 21 r -t 0.980352 -s 8 -d 3 -p ack -e 40 -i 534 -a 20 r -t 0.980536 -s 7 -d 2 -p tcp -e 1000 -i 529 -a 14 + -t 0.980536 -s 2 -d 7 -p ack -e 40 -i 546 -a 14 - -t 0.980536 -s 2 -d 7 -p ack -e 40 -i 546 -a 14 h -t 0.980536 -s 2 -d 7 -p ack -e 40 -i 546 -a 14 - -t 0.981608 -s 8 -d 9 -p tcp -e 1000 -i 520 -a 22 h -t 0.981608 -s 8 -d 9 -p tcp -e 1000 -i 520 -a 22 r -t 0.982653 -s 9 -d 8 -p ack -e 40 -i 536 -a 20 + -t 0.982653 -s 8 -d 3 -p ack -e 40 -i 536 -a 20 - -t 0.982653 -s 8 -d 3 -p ack -e 40 -i 536 -a 20 h -t 0.982653 -s 8 -d 3 -p ack -e 40 -i 536 -a 20 r -t 0.983736 -s 6 -d 7 -p tcp -e 1000 -i 530 -a 14 + -t 0.983736 -s 7 -d 2 -p tcp -e 1000 -i 530 -a 14 - -t 0.983736 -s 7 -d 2 -p tcp -e 1000 -i 530 -a 14 h -t 0.983736 -s 7 -d 2 -p tcp -e 1000 -i 530 -a 14 r -t 0.983773 -s 4 -d 10 -p ack -e 40 -i 545 -a 20 + -t 0.983773 -s 9 -d 8 -p ack -e 40 -i 545 -a 20 - -t 0.983773 -s 9 -d 8 -p ack -e 40 -i 545 -a 20 h -t 0.983773 -s 9 -d 8 -p ack -e 40 -i 545 -a 20 r -t 0.984568 -s 2 -d 7 -p ack -e 40 -i 546 -a 14 + -t 0.984568 -s 7 -d 6 -p ack -e 40 -i 546 -a 14 - -t 0.984568 -s 7 -d 6 -p ack -e 40 -i 546 -a 14 h -t 0.984568 -s 7 -d 6 -p ack -e 40 -i 546 -a 14 r -t 0.985075 -s 9 -d 10 -p tcp -e 1000 -i 513 -a 21 + -t 0.985075 -s 4 -d 10 -p ack -e 40 -i 547 -a 21 - -t 0.985075 -s 4 -d 10 -p ack -e 40 -i 547 -a 21 h -t 0.985075 -s 4 -d 10 -p ack -e 40 -i 547 -a 21 r -t 0.985608 -s 8 -d 9 -p tcp -e 1000 -i 511 -a 20 + -t 0.985608 -s 9 -d 10 -p tcp -e 1000 -i 511 -a 20 - -t 0.985608 -s 9 -d 10 -p tcp -e 1000 -i 511 -a 20 h -t 0.985608 -s 9 -d 10 -p tcp -e 1000 -i 511 -a 20 r -t 0.985685 -s 8 -d 3 -p ack -e 40 -i 536 -a 20 - -t 0.986941 -s 8 -d 9 -p tcp -e 1000 -i 525 -a 21 h -t 0.986941 -s 8 -d 9 -p tcp -e 1000 -i 525 -a 21 - -t 0.987736 -s 6 -d 7 -p tcp -e 1000 -i 544 -a 10 h -t 0.987736 -s 6 -d 7 -p tcp -e 1000 -i 544 -a 10 r -t 0.987986 -s 9 -d 8 -p ack -e 40 -i 538 -a 20 + -t 0.987987 -s 8 -d 3 -p ack -e 40 -i 538 -a 20 - -t 0.987987 -s 8 -d 3 -p ack -e 40 -i 538 -a 20 h -t 0.987987 -s 8 -d 3 -p ack -e 40 -i 538 -a 20 r -t 0.988536 -s 7 -d 2 -p tcp -e 1000 -i 530 -a 14 + -t 0.988536 -s 2 -d 7 -p ack -e 40 -i 548 -a 14 - -t 0.988536 -s 2 -d 7 -p ack -e 40 -i 548 -a 14 h -t 0.988536 -s 2 -d 7 -p ack -e 40 -i 548 -a 14 r -t 0.989107 -s 4 -d 10 -p ack -e 40 -i 547 -a 21 + -t 0.989107 -s 9 -d 8 -p ack -e 40 -i 547 -a 21 - -t 0.989107 -s 9 -d 8 -p ack -e 40 -i 547 -a 21 h -t 0.989107 -s 9 -d 8 -p ack -e 40 -i 547 -a 21 v -t 0.990000 -e take_snapshot r -t 0.990408 -s 9 -d 10 -p tcp -e 1000 -i 511 -a 20 + -t 0.990408 -s 4 -d 10 -p ack -e 40 -i 549 -a 20 - -t 0.990408 -s 4 -d 10 -p ack -e 40 -i 549 -a 20 h -t 0.990408 -s 4 -d 10 -p ack -e 40 -i 549 -a 20 r -t 0.990941 -s 8 -d 9 -p tcp -e 1000 -i 516 -a 21 + -t 0.990941 -s 9 -d 10 -p tcp -e 1000 -i 516 -a 21 - -t 0.990941 -s 9 -d 10 -p tcp -e 1000 -i 516 -a 21 h -t 0.990941 -s 9 -d 10 -p tcp -e 1000 -i 516 -a 21 r -t 0.991019 -s 8 -d 3 -p ack -e 40 -i 538 -a 20 r -t 0.991736 -s 6 -d 7 -p tcp -e 1000 -i 537 -a 10 + -t 0.991736 -s 7 -d 2 -p tcp -e 1000 -i 537 -a 10 - -t 0.991736 -s 7 -d 2 -p tcp -e 1000 -i 537 -a 10 h -t 0.991736 -s 7 -d 2 -p tcp -e 1000 -i 537 -a 10 - -t 0.992275 -s 8 -d 9 -p tcp -e 1000 -i 528 -a 22 h -t 0.992275 -s 8 -d 9 -p tcp -e 1000 -i 528 -a 22 r -t 0.992568 -s 2 -d 7 -p ack -e 40 -i 548 -a 14 + -t 0.992568 -s 7 -d 6 -p ack -e 40 -i 548 -a 14 - -t 0.992568 -s 7 -d 6 -p ack -e 40 -i 548 -a 14 h -t 0.992568 -s 7 -d 6 -p ack -e 40 -i 548 -a 14 r -t 0.99332 -s 9 -d 8 -p ack -e 40 -i 541 -a 20 + -t 0.99332 -s 8 -d 3 -p ack -e 40 -i 541 -a 20 - -t 0.99332 -s 8 -d 3 -p ack -e 40 -i 541 -a 20 h -t 0.99332 -s 8 -d 3 -p ack -e 40 -i 541 -a 20 r -t 0.99444 -s 4 -d 10 -p ack -e 40 -i 549 -a 20 + -t 0.99444 -s 9 -d 8 -p ack -e 40 -i 549 -a 20 - -t 0.99444 -s 9 -d 8 -p ack -e 40 -i 549 -a 20 h -t 0.99444 -s 9 -d 8 -p ack -e 40 -i 549 -a 20 r -t 0.995741 -s 9 -d 10 -p tcp -e 1000 -i 516 -a 21 + -t 0.995741 -s 4 -d 10 -p ack -e 40 -i 550 -a 21 - -t 0.995741 -s 4 -d 10 -p ack -e 40 -i 550 -a 21 h -t 0.995741 -s 4 -d 10 -p ack -e 40 -i 550 -a 21 r -t 0.996274 -s 8 -d 9 -p tcp -e 1000 -i 519 -a 22 + -t 0.996275 -s 9 -d 10 -p tcp -e 1000 -i 519 -a 22 - -t 0.996275 -s 9 -d 10 -p tcp -e 1000 -i 519 -a 22 h -t 0.996275 -s 9 -d 10 -p tcp -e 1000 -i 519 -a 22 r -t 0.996352 -s 8 -d 3 -p ack -e 40 -i 541 -a 20 r -t 0.996536 -s 7 -d 2 -p tcp -e 1000 -i 537 -a 10 + -t 0.996536 -s 2 -d 7 -p ack -e 40 -i 551 -a 10 - -t 0.996536 -s 2 -d 7 -p ack -e 40 -i 551 -a 10 h -t 0.996536 -s 2 -d 7 -p ack -e 40 -i 551 -a 10 - -t 0.997608 -s 8 -d 9 -p tcp -e 1000 -i 532 -a 21 h -t 0.997608 -s 8 -d 9 -p tcp -e 1000 -i 532 -a 21 r -t 0.998653 -s 9 -d 8 -p ack -e 40 -i 543 -a 21 + -t 0.998653 -s 8 -d 3 -p ack -e 40 -i 543 -a 21 - -t 0.998653 -s 8 -d 3 -p ack -e 40 -i 543 -a 21 h -t 0.998653 -s 8 -d 3 -p ack -e 40 -i 543 -a 21 r -t 0.999736 -s 6 -d 7 -p tcp -e 1000 -i 539 -a 13 + -t 0.999736 -s 7 -d 2 -p tcp -e 1000 -i 539 -a 13 - -t 0.999736 -s 7 -d 2 -p tcp -e 1000 -i 539 -a 13 h -t 0.999736 -s 7 -d 2 -p tcp -e 1000 -i 539 -a 13 r -t 0.999773 -s 4 -d 10 -p ack -e 40 -i 550 -a 21 + -t 0.999773 -s 9 -d 8 -p ack -e 40 -i 550 -a 21 - -t 0.999773 -s 9 -d 8 -p ack -e 40 -i 550 -a 21 h -t 0.999773 -s 9 -d 8 -p ack -e 40 -i 550 -a 21 v -t 0.999773 -e terminating_nam nam-1.15/tcl/test/test-output-dynamic/test-dynamic-1.nam.Z0000664000076400007660000000134207343601103022235 0ustar tomhnsnam Z1ÇM8sм¡Œ ¶P0&œ1lÊ€pó†ŒÆ0 yبáâ1b¸ÈáÄ4tЀà!' ™4u怸áb†/c‚`FL6 e@ bL7tÊÈ™9²äÉ”+V¼˜qcÇ!QâpQ„Œ2ȶ *“¦Mœ:yú S&Q£HQÄXÊÐ)T©3Å’5‹V-E‹5rô‚)0rX­!#mŒµugÖ¼™sgÏŸl‡=Úðaã¾O£N}yre—Xð`Â… ÷Fx˜«â¯§©’4‰R%K—™ÝrŽû™®Ð»¤Q( îWµp«Å³öN앱cÁeϦ­Y¨r¸žç††žW7Óê€y€'<^+⮋Á΄,Ù$eËåµµzr–{¥ñÕTjññ瀲IDA)ÄtI´~À9VqXÚyèœ]£å5Ý{ ®öáUÆÙç[wúÉÃXáFræ Xbs류›‚ð­6Ÿx†mÅ]~Á±ÖÿÁ foý¨ÞB:Dd‹ûµæßk±ÍÖ„¶YØÐ ò¦$‡Þ…ôbv"&ç#sW>—动ýåâp0j·æomv£ 4ЧVI§vâ5$u\Ú8V¡H’·! 5:ø%€ˆR¹\zŒ¢è¨–êÙå“Q†)am↠iNô'MÎPà °0C ’É0%‰‹ž(Ú¨h–jÝc·æºk¯2.Ù¡›|Âù뜠 ‹ †ÆÆ÷fˆÍ²Y£`0êk§ÀVä¨îåy,¸âv‹i­­•% Ó*j.–£šÆ¢©N6ïOb’Ùê…5Äz)­ŽeCOf J/¹Ôšxnt°f»šÂ Ëà°»‡d+®2èÊ+¡õ~*1¾Ñ»ï±»ò²$̤‡Ñr ±½'7ž ò»mŒ2?+(O&!ùðˆ‰r{[ò‹цÒt ýÎ¥ÆYÝl²Ò:祯º ¶f5e@nam-1.15/tcl/test/test-output-lan/test-lan-1.nam.Z0000664000076400007660000001566507274107771020545 0ustar tomhnsnam Z1ÇM8sм¡Œ ¶P€& 3 ؤqS„9oÚ€àA£ 3@Ì aÃE  è¼YòdJ8r¸ÀტEŒ9z)’¤I” pêäs¦Q›*YºìYñbÆ?†¤y4åÊ–/›r…JÆ 1¨þ¼*TkÑšHËžM+ö)Ò¯S}Z š•èÈ8b¸€,L™Nšs§Ú½X‡nåX0a¥ŽëV^Œ÷¥^ ‘Ý&¶\xªfÅ„å¢} º­_ʨA¨¦‹6éάÙö<Æ 7J‡­ÝûwpÌôk+ïJî>Täí]O¶]þ^Í—ßnEÈÞñ¥Þuîí—àysI7’ÖUÕ4Ý X€†ýƒ œ È ~EÝ€ƒ 9ÈVJòC Æ b ,Žˆ¡‹0¢5#‹u™ˆâŽ3ô4FrŒÁFGn¼AFGa0TÞz2Ðð› 0Ý‘hŒ$Gd¤QÇŒ¹ COVb™Qb”ÁFC3@Ô$c”áeÈ¡”Rº@¥Cy$I. ›vÝ”'• ”™%[vùe˜c* è™i®‰Â n2çœuŽÕß¡Bi$’J2é$u@Vyå¢z &Nb’¹*¥j6$C¦pÊI§O>GÊAò)ꟚꩂÀªj&£\º ©¬f²f­(؀릻›ª°~’*(¡F9¥²¬6û(¬‘N*m¥ Åp­®ò.¨ÜŽ h©ƒž›¸z’«¥¹¯ž˜î¬ëR[ûœòºÙeôöio±ùþÕ’ ©&:+³Ž«¤OkigKÙÄÛ:L,¾à>ø+AZ¼l«ç m–[úPÄØÆkàÊ5šì­±¶-ÆsË“bì,º3Ój) !Ç»ð¶p„1Æe0D¨)–Dc¤ TÐA -Ô.DÙ˜]¡Ö×M%gárä­ ]fjwÅžÙqÛÝ]Ýd¡—Þ¯É^]rW¸Öx¯=½÷tû¶=àÙOûG\l†CFâh!v89i ¾8o± ¾yæyyÞ`sæ-~çsøΛy’O—ºˆ¦_Þkuªç«ß“‡ªè²¯Wù…gS˜{má:îzÆ>áƒÃÃýôÇ×§2ïË?ßw„Býçoi(Ÿæõ}Hºgµßˆuŵ½ã¶éŸí¾ŽC·¸~ýõžüí©°ƒêr¹{Ç¢å165MaýWþ~1´ñ QEƒ™ÆF@v]ê€Úz`¨ºu¯ý­<Éúß¿ˆ´Ò¬€(¸Îà…ÀõàÏgšàBA€ P](´Ö ¦­‹)»ÿjHB™™PicÛ¡Èæ¥@BŒP‘âÅ$xÃŽYð`JtÚ¾öÃ6p$«Ÿ³áЂ ˢ˜¬z1ˆq¡ámXÂ3RëfoʯvÖF'¢L_œ“ãËèhD;. ƒAKM£6µª5088Kjj°µžt­1BÂ’M ÙC›ê¨¼øåí>Ž#œÞhw¸Óik”‚Þ)g7དྷ•–»‘⪇¹Ë”²•¶‹\*GG˜ï¹2‘icçd L]†Žw§¹ .‰ç»Ù‘ïƒss[3!»a;Ó”Þë„ÇËÛAh5¡ü4‰cÍÒm“<Æ»¦¼š÷Ë\žÑéÞøÜiOxROž;cf?§·½ô ïŸü¤fàÄÇ!Ó Ï|Å 'øFr¿¶/G2Âß,'3¿ŒZÔ)eÙöGljpŒT¬£©Õ&5š”‹|¢“ävR"­+µ¦\ê@˜’Ôƒæ£MËHÁZP…yd!6}Ó’¢M¨s,¢sÚ&•‡Oíceª½O ¥„œj©å.ž2±_nä*2kÕ›ŠÕ¨Cd›¸U§‚QOê“V³†¤ñª"»+ŘúS ñQ¤`•jQ‘èD¶guêÓ :HÅò…Lãéd)5ªYÍIQ:‰ TƒÁ 'Œôleƒßà@%88IPÛYGB1¿©iMKÛF~ö/â“`dÛ[ÕB10ØÉnS\ÛÎôW. l‰«€Ô:—&6írO«€Kflœ4`D@¹Ñ·¬Rž4­§B'“Þ|òmŸè{'-½WÎXF(”ö5¨S 'ÑcîRžÂŒN:ç^ež¯w‰£\9'+Ðõ6ç™Ü#æÝÊ‹ÍQ¢ªu6§óÌiÌ`¶“>Km°8QçÂu~w† e<j=T 8ÃÉ+pWß:ˆ¾½Þ}a¬cýÎxÂòe/C“9!ˆÙÆ%:QÖ>:’ŽÂ/ÈEq²kRÈ6U² ìWbݺؾ¢ ¥€uZ–÷äG ÒTŠ•åòe-¸Ó0óêÌt½2Ð~'Hªùˆ^Fª¦”T­Ê¹3D¬^«8VKYuÏX ´• »Úæ¡ÙÎD]3Yëè83Š[üê UZè†`ÑͽLŠOõ7g6 º­‘Æ3 ÿŠèÀšzѤn4Yê<Â;²!xlµÎTæçKRh´&ã^UmÁÌ‚™ø³îoåÝÑö†·Õ­í²YëÚ風¹Ëžn]²]l1¸Öžm´}ûEä*÷ÙÌ·qŸ{é÷Úê¾.I²+¦nwW"ßݤØPÙ²e˜¿èµ†¡œAoÞ2Åÿ>/‹{(â‰>ÕÄOèˆCma;fÀ¤Ùð%îðƒÙ ÷/„}ŒÌëòÃ-º°z'®aƒs¸¿&'€ÍÓ9‚â/G¸ÍWüñ_œÇ.¦[‹á‹à]Ÿ ¹íá¡Ó¸èáÛ‘åed“Ÿ­Ê-»èû4js)3™Xi¬¡8f ›Ðpµ˜uÝBÖˆ3ø£kê[_§pFk™çLó`§§ö¤fû.Ò´:UÑDCõ°í~è\%º–½;h+­åM>íI<öYÉÙ9gºòŠG;c?ÍöPkÐð’}uâÓ\wª¢€ÕŽw5^ +ùSÒ‹w}®c¿ëY~ï_ ßÃÚeÌÊUø…Wöj£Äíw{FùàjöriàmpµöÜ±Í ôOµmÝ¢›úñÎ6¸_ýS™ûµß/?M ëîì{Æ»_Ów'±èo›|á¤|±ýîòûרÁ÷qùõ7 WP´±_ ÷,çq)gqÚ„d¦çr ˆqMB£tδLMGq0wr2‡*§Ør2–sç_(§;àÜTbh‚ èp<×">÷€8OAÇ…c'¸tÕs=F€;„4øƒP—!R7J2PuxuJÆ>Náu…—aRÈ#Tö„´w/¥i¡Çi˜÷erUv¨'CrÇ…¬—{×f¥×S–V{}vjg(zy†.yZ˜Upˆ{r˜Cˆ„xbw‡›gv÷VŒUVšGyœ÷g˜–qswv^8zÇLjmx‡‚•W]xyŒ{z$1³g‡o4y¾Ç#–Gˆ^¶{›ˆƒqô{|”‡t‡†_hlk¸YÉ'mËwÞç~êÇlÚ•~á·Zׇ~ºø‹·•[Ó·‹30~ø}q~ÇHŒì]Öö~øaÓI:T#è-Ò^?·9Ø x„¢T_µÄ‚§8ÇQæ€ä`BÇ:7‚ h©Ž ¦$7†*ÖM"xƒ!80)ÈN.ˆNÿHs8MèO<„á¨bød3h‘Y„HŽLGrùoC¦„LX7vuQ…ÁB…………ž¨VÖˆƒX|´v¼×vÇñvŸ˜A4I|’¦S}X†z·ŠdW‡®èˆ˜8‡ƒ‡”°v‡~¸e­xwŠ~8†²æU ‡èe†¸†ˆ•‹¸lÅ•K‰B¤—“¦Ç“2©z‚”ÄF-šÈg•˜…=‰ŠÈ’”5”¸Fi¡,À7–Ф—piw²¨–ÈÆYäF(9p"54B^£Iר;¥7ȪT‘Øý7Žø5Ž›©Ž;ޤIrìø öŽ·røxd¹š 8rBh¶Ù€Òd’ ˜'–M %ˆréä›!Všöè/‘¼)ƒFˆtÀ©‘žY‚!9„ 57‚y€?fuq3’å´„ âŽ=¨>0‰XZG?mÄ’[÷ua'–üƒ'f¨‡]‰B8yŠ39‰w™wt‰¤ˆBjˆ˜üù‡wIg„iYqi)z†˜ú”û yjk®W•|v• ŠZÙŸfùŸô•ˆ–º–óùŠ{xE‘H–liWn)•°˜‰rå–ði{Ç vgŠ|öX€i”¿6˜¢èŸ6I-‡‰ŸÈW#Ìè"GñZZ³1E6pHJI”^(€Ÿ4ùt£É6ÉrÞ¨ƒ¸‘¡yï•tÈ™™çø‚©is÷(a‡›­Y‚þȦ´ùq v¦ ˜›±é‰cœ$øÉ)œrJœ ùvªœ ɦˆÊ)ZºƒÓ ¨7XƒItŽ:uÛé‘D|*dIž%YžNø#S…-Éu#¨’ösž*“eÇ¢%ÊRtèvú©V «õÉfC)DµjW„×£ú£ :« ¤ŠŠwù–4:¡»šŠ­êTˆ«gÙ¡~™¡*“Ÿ§¡ô9­q¥YÙz­*Ú‰:•_8—XU—1 ­¼6®-ZŠÕš—Ï*YCºzÛÊ¡@z¢<,EZõ6w)ûŒ*Q-qÈØ}*ñ¯È8~ ÈèŒþÚk‹„ò+í6°»‹,Ñ‹ "}3 ¿ñ7[m`D#ÉQ¤ÚfŒ!;² +Âe(û°É…~"‹NEj±Òx²—³ôæl7û7R ^û–F˜é¥¢Y¦Ñ™¥À¹¥²‰´d¦§y›hÚ‘NÛ©¶›µ§’š§\ ¦ô(ª¾S§ºyxúšüȨs¨à4s‚Úµ'ÉœbÛ§†šr‹œ»³œ„jG©\ ·ÇD©œ‘õ·NwNTËr™Z¸ÍyLRò©ª1xL(™ž5…]wªîɪ9z¬[¸•õ*¬âulùY” Ë†¢K¢¹J-j•D™ˆ¾¶T3*¡· øù«Ÿ;»x¬£Ë—ÕÒ¬ðº»n­£Hº(à¡§¢:*¢««”öj)i)¤’ˆº¼‹®ì«ó¢â¯†µ®¾ËºÜj3ïZ2Í›˜ÙÛº‡ä­­H¤ Z {WàW²çÖ°Ï÷¾°]/«#™b* ±ò«±ì‡±Ú‡¿óƱ-1¿̯@ë²+/˳)‹À+Û|AÛ¿1;³<›Á¬³î&³=‹ÀÛ¯ <´ò×.7s´§™Jû¦U©`[Žk;0,µfš¨Û˜¦¨ šª©µv íØ´†µa;ÄizzĆ;Nm ‚rkƒ½ù¶5L·•sQ|¨ ¹¸qÛÅx{·—ª„IÅÎŽŽ[·F÷¨‰›“º©€û´/ ž“;žrl¹žÛ"ªJªÚ#y£ö“Ëx÷I—b¢ª«­â½–)¼¢Ö«Xæ”ôºÈÈ‹»†,Éàjf¾Ð‹¼úxÉ ÈÆë£À«¼7Šˆ™ìyÕ«È ¼ÓK—ß ÈØËÉ{™ ~Žƒ•®@…£Êj»_h£XÅ˲<¯½L®Œ¤°Ü¾úŠÀ²™¼˜NÛ¦ Ð,™˜dTJÍW:¦ˆ[p]úÂüW‚kÚÃQËpg ¹>̨å<›B\¶¾Î"÷µð|ÇÁD¶±éÆ^k¶ýH¶Åy·*¸´ŠjÅa¼Åz‹bR Æÿ¼·ýØ·Úùœq,ÃŒ[Æ•útcžDx©¶„—ö|#‘ûÍTgÇH vyœ’œ«¹©zÒVRŒÈ§Ëʵlw…|®‡|¾·z¼Àûº»©üEº[ÌíŠB–LÓ˜ ÈQ‰Ó¶¼x·ÉÄ ˆ¨,­Œœ¼å{z.ý­P¼¯|®±ìÒ+ŠÔvg®²—ËÆÊ»¼|ÕÀ ÌK¾M] ÄlÖIÌZ­Ì»èÀ¥±ÌÒ¾ž†¯l½íÝÕöýÕ¸l¾©[Ö^­{å‹àvÕÖxpXÄÁLJ×¼‹1¥©Ñâ*¾"à!ãK*¿Ï™–TSºo1ÐR ]Ú¢ý¥¬mÚ5ŒÚâ<äë\äV«´Çϲ-Ͻ]ÛrzÛtúÎù¬ ãÛN|ÃÌÐ\Ì:³­ÅÇ1œb\¨ÐúüÅÍÜÜ-‘ -ÝÙ¸5\ÝÐçØí·;̨vî¥tŒây`¡t¹¦Úž(}ƒ}|…ëí½>-ŸÏÓ®7Óîè²ë†õ½à÷íÈT}¾ :É­œÔÿ-fEÈGá̺ԡŒÈ þ»ImÊÁŒÊà áýízYâ.ËŽé®Y0ªêjáQÖ½ç¬k­r=ë&NáɆÀ÷¥ËØ8\£•¤ÏØ<ÐÓîì»Ø˜q¡í*¾ âíKʤÒHí..‘)ÞÎÙÛÜoäešß=ÚfÚ4,ŽbÊ´°´äÞ¼çön©¸MžJLå¤ÅV§¹jkNÛ»ÝÏï¼Ð`îæÍæe>¨g>Ði®mñŠëæ#=ƒÐ9ñƒKÑiœÅ7òq¼ð>Øä‰;ÒÞ©”KŽ„Þd*½’›kè+ý’‹^ì¾JéÀ޼’.ê´jáPÉÓÈþ…ø-2ºß˜|ôŒê:Éá¼[êº~êÇf¡ç»ê”ÌàfëU-ë%þ…µ®E·ÎÕÝëéx`í4½žõ¿îôîÚõ©Îé$nêÉξÀV‹ŒM× ‚ÙÚU‚QÁ{²9b° ²‘䰇ߋ7p‹mí‘MÂ÷ËØ¸Å2ê^I*ž}áŽùìîãô÷îæ¬ÚFÎäõîÚ^ÞÝI«Ã¿ïoúj Û_Ï"?åñ<·ïÎ rË 9M¬Ûon·ÿ›³ÿåÅܧ_M­ñÊÍÙ·ýñ¸ÃOhÇÐÝ©Ñ8×çs,¹€óƒ^Ò˜ûd)óY§ÞKÆÞ”øªaÏXAõ›NßFßþ^–ôñ²ô.Íßô/ÔÄ*õ–>àp¡:b×Óàˆ¡QŸÎ´Æ«ˆ[{vOìQ¸øw½r«Ûu¦«íu¸··ÿ,ˆ°Û#¿.Öå=ZV˜\ω#{#ð¯É¾‡=ü^½) Âð¹@g“Î|½(û¬²_ ÃýêÅ)>ú…~nÀo¨vòæ‚y!(-Øø1‚Jª°Õ,•ÀÛ΂‚HpÙœ0gS_¿’|”­Á€ŒÙ&X‹eÁ!è`@ƒ b­Á&ÈØDlƒ>K ’Á˜®Ïã[,è=k§û QYãGº/ÆæÁ¦ µA+9«€y°A(o¶ !D+¯“0©n†ïÌg‚wÅφ½¾ÔïøëÛhHŽáMy4ïh_(\[¸/öe¹Ý7¶¸œï;n~ª µBâ§qž[ ~ljùýÂåçÜ.žuÃsŸðÒ¹ívý¡vÓ~/ˆûA®?×sÀ_†™y8Âü‘£D‡þüßúóyð&õ? øÿ L+iHÓ98¾Óô: µ€z´Ký=¨d©Å'SzN”=5wh)à°;€ÐØ¡(˜ö$ Þc¬Ôœ½Ÿ¼ÖÞYˆúòþ$÷ ÌW ñ­);Ådíì`누‹µèîwViY„Qn›?¨%¡ h —ö¢ms!ß»:®ƒé/š¨ÁTNŒf„bñÄ& âäëˆ?‹ þ†š¸AÖIÜ{Ï žÁGõ×Sì‰ï†*&A9蘬`û™Š+)¢¨ù¤k9ZqÚ“@“ Â:‹?&B¶H³” \L‹€FæºÂ’â]Üq“‰hiÂËúfX¼#r¬oäB!'ú²ÓB…@ìÊå>VÈÄèÙo;~ûh2æ¦"¶Ñ`á0\…ÃãõBcØü’ßoRyį3úÂ3æ —áts9Òp嵯Õ7çZŸõo/$…7Ì8°¡y»yè-ç·ôÇèŽÒÐ;‡ƒì ½¿ÐU銞9̈vÇþ½žÆô|Eí2fLÉt8R'¢R»zùÐ×=ÇzØ\BdEñÑ¡Cƒhº¶§³€[/©9DN$ÖŠ#†^ÐÄUDüx-QÕ»{íQ®Ũd%,Š4‚BÖA—!$.²6 rµ8ÅÁ‘ÉÒ|ÒûœÄ E”‘M¨‹ègGzEé"›O „„r´ Èi}LÖ‘ä‘ÜÇ-I¬ø$dÔ L2¹›* Ù"äy&rÚ˜Es£"mbµð†¯II2ÙÑd˜,7ŽMÈrÀ$`Ìf=NZ©ñ‚¥@a¾K††1.F–úЙ0LrÚÍõ™<Þ‡å¢ÜÀc”¯ž=¹FéûP#¤lxjëö}Æ€DÐD£™3hSn<4G =žxCyÒoÌ<’wy#óÀ~ϰ6n´ØèѨ! ²†6Ç7Ö¼m¸+ýØÎ+€ñé8æGB6×! ™±HGŸtc±"Éñéõ?§É$b²ô2÷ðþ…G·7½£?ϱ?–¥ Hë& ±„"ð1ºžù82 ¢x$€ä‘"¢¹—ºh´ôeÇl#RÂeI΂n¡6Ž™ùÀi0)ŸeËq@qzÉd”"à…L“ ì&6LȲ<$V‘ŒDZÌ9én0&3Óló(*Ìùn²äǃ4r®IE”èÕ`Êì`>’ef®ˆ$WdbÑ]’drI>8%Ë “< P2­I,I%¦•ì™ ÒƒÍœÉmܤÃT’r’~IˆÉßbÔlƒô£NRÍ '“K™<‘ËiÞ›À¸Â’—Ñ*Œ©í0޾ĸ™îŸô„±BF·‰ðd¡£Ü…—òjJ´¥—g|H{™F“¢*[˜³x ’T‚F…¦8U#iœh°Ò5ÖFêf„.ZŽqŒzÎ6¶<Üh+=Än…ÃÑ%eÃàhóÊé\U¿²:î$‚¸Ý_±l–ÈÊZÅË»Ãeþk‡×’ÿ5%ë(mUwÌ$[NGzIÖö!ðœ4û±Â5ǘ‘#¾ô2cOa¸Çz™. ¢‹âuî’[ÂKïøeTïqÇÎ;ž@é) ‹T³Ã|æS'dq‡Àp€cº|Q±]Ÿl‡>™ÙÜ|ñÓÚÅ€íð/ ¦µãv3')÷Iªü§¼¹:a°È8nam-1.15/tcl/test/test-output-lan/test-lan-2.nam.Z0000664000076400007660000002722407303341337020527 0ustar tomhnsnam Z1ÇM8sм¡Œ ¶P€& 3 ؤqS„9oÚ€àAã 4@Ì€‘ÃE  è¼YòdJ7p¸€áƒ¢EŒ9z)’¤I” pêäs¦Q›*YºìYñbÆ?†¤)£e¨^aÊäê5iÎT^ªµ(®.Í.ëômÙ•a}Z š•(Í£)ñNmúê 1\ÄH»ëЭO‘N¼˜päÀR_êê¸íÈ8t~üÒ2hÑrÑn^Ûòé¸JÑš—4cÎlýò8|£vfºŸKÂ>Ës5ßÇEyŸkZøè߯;ë¶ë;¬eê£+¾Í9ÙÚÚ+% ÷yÞª¸['ëâ†J4Ú' £† ïãßà~Ü3}ûøÍŸ|ÍÉÐ^~òE—d2ÔÐ[€0Ì€Ò|+ s)¨Þg0X¨†²×àƒQIHÒ18ƒ‡ê7_Wö6à~zÇŒµÍøâŠ’éX£24X‰hN'ÅÂ[6¨†^w@¥$“!:dŒ*9áºÅ¤bîgY 8Ø'C˜(.X™f¢9æ—J¶˜à“ýé6Cog®dâ|Zbqt¦XTŸ27Þ.äá–ªùžKÊÐ$Sã Z‘inȃ¥Zy(¤TªV•ÔR` vèa. j›c¤!ÇltäÆdtCä•Õ`|FÞ‘hŒ$Gd¤QÇ Ä`O›Qb”ÁFC1ÌÑ® ŒQ†t”!Çw_ýºe¬³Ö ­¹‚ÀíenF[,Ç&»l³Ï* ï´Õ^‹‚—Û2ä-¸âÖ£‹°ÊJ«­¸êÊëkåÖ,LûÒ‹¬²Ì:{´Ã˵ÖbCÀÝ~ÑñÄ §Ëp»ïboÇÆ^|¯Æ8p,íÇý6”ÉŸL.š-/¼nÃî>CKqêBÅõbŒïÆúÒÌsÈ(à´Éï¶4˜rÒˆ®Ñì:<’ 0è ÓPÛœq¾û^íï [Œ2Új=¶ºe'=R¨…M1ÍÛû6Õqƒì¯ u Íà9"¼÷Ëfïæ\ROø4áQß ·ÕŠ7TCã]+·ò¹ ótÌ€a>ñæÒ.5Î:{: 4ŽrMH™{bѪÃÌ« á%…C“b¶møÔ9W½óíÚút×ÄSf<ò=M~´ðgß’ì%ϹÛÌ×Î/Ö2èÞ}“øÑ~ö©Sî÷'•ë½ø±w~xó‰÷ü¯úôƒÍýàç²íUmqqŸð7/ý•Ïy¶óßC¤Çµ»Õ| ì Â0†5”!ïj„\ƒÞÌ@ƒô &¡DÅ„= È@ r„,[‘—JÕ:Û\§u±Uc¯ ·w˜9Ϩ54ŽGfFÜ¡[Ê“JՅНj”¦˜ªÒ<±‡áÉ”¸8™íüÐ0ÐÑ¢ ÖE ©¬Šbô8›À¥q‰D4]›Ó›r'Žvºu¹,âq‹XüÍu°F)61Œ‹¼Ë‡¨©Ã,ÐMO¬Ï÷çÈÿlÒi„¼$'Õ$mrQžrJ…$ó'@º¦C¬4”•L ¡=uR< (­”,ò6‘Œ\t¤\”º¹Ò0u$)EjR®, ’Àª i4ŠæH¼d ¦s*´>÷d™{ÒsØ•g¡ÚÏùî“ÓåvAGíMi;Ø©|”8uMæ…BtÏŸaÕ»5cÜ’Vô¦ºu JWÛÑÖ ¬‚K¾ét /D+ö+í(p] ð‚û¨Þh63¾¾oߊì±b8ĪjìꛯÜu*Ã_Êñ±Ö•àa…vZ³Ê[ÆÞΫ#ªUMNآ⠭XÕ+s]î¿·Æœzr¥yð*¹Žãt¹-ßîíþús”]è“}˜ 'Îrí&ܱ€…¬ÆÉJðÏR]çI¿:î> Ä­ŸÜæ±5-ÅA=ï¦}¶.n3˜oj¶¯3öîm1X\®Û<ºØ«{jyÎRï¾ïg?à¯{ôì"œß ™`ÓãšÀðB¸¦ÞIÅ[bç >0Øüåc6 ywx~4 ¯æ_5ú’ÞÀ¿¢ï¼h•ÀÀϭߦ šäª£´—óï5/²ÕkßÓ‡p¿`“ïàṚ¾Åg¾‰wSƒ«„ªɽ„ýË>„™ÇLo–¯ý‡˜ø[’a \\Ã7$z5.·”Lå_{Ö7¶?·ççvëÙ‹‚GFgGôW†côSâgíVef¤eIÔåÆFnVfÈiböc‡’f\¶f®QHSfgXh‚¤‘ÖfjF*SädðVre´˜VIÕ!ø¢tj¶ “ænñhÆi9¨lå6"§Dm‡Kžg7¸J¸m¾f„µ$lMXjC "ò|ÑV„ZøMVk[X…À–MÍ”$ÏÄ„”Æ ¼MG2†µlÅvjÌ&ki¸&ÄéÔM=¨‚ê¦(HèÖ††>˜m›„OŸâm¶$mëÖk|rnÙDPŽxkµˆ Õ€§ÒPª$o›·q õ:kwwÜåQžuoCåw•cR+vVyÿ²pÿFr¨ˆx5GUç‰U÷x÷/?5yx:"eЍ‡Ey…Y;§tþ#r¯è8QõpÀ˜`3gp·XqΕ5õŒÌ˜x¢tÐ¨Š¸8>—Œ@—7RÕŒ¼òtÛHŒaÇŠLŽN'X²8t55u¶ÈÒˆw£“uòˆ:ØHY½óu踊¹ØY¼èu¥¸Ãóv9÷݈wþV2$7ZJ’\4‹¢µwŒ'xÅ(v®èŽ#w|'6äHyöxŸØ\x·‹ì(’×óŽQ§’Y’„ç/’—’Õõ‘ÆÇ+Ï'¾w“Ÿ‘“¢^1“ýÄ^@‰gå§bQ³U~70~* R~…T}Fù}8©”.^ôÅ^B™“Yb] :y¿g`2óƒ=@Ÿ&yÐÄÓ$¥Q1ÂBÄÒ'zhPiph@= QÚç,Àr}dÙf‰–ûuXo9£[uy—y {Ù—˜ù’˜à’–p9 øñ˜g™t™v‰x©y—é—€)˜V_m}öš¿Æ_Ê'”"dã'”æ7_#Æb3ôb6$cMȨ€c&>öi—‚Lä‚!XrËyœHæœQD„œGä€0Ø€†h hHMHÓ9GI6èœæÙ|h9(˜€ðy$xXg6ŸƒveHƒ2¸1¸€€äY‡8xh:„aH ž´hbJJ„UjûdOx÷§ …/"¡‰X„`è…gÓ…«¦ ÂÔlVS#:ˆ¿æKdˆkfÈnE¸†Ü¦LØô†åæ•xèlw˜ *:‡r‡СӆiæVˆª¢èkˆâ‡T(¤”(n‘ؤH¥éÖmg£Çy—X3 ‰¯Â‰¤˜XÑÈv=Õ¯pI‘üˆ¢gw&Šy¦7Xð˜`µ(¦ôH¦,…’Y:wú‹ÙDÈt9ÈØ§»#ŒtÚ’^#VçH¨ É]0G“)wU ¨ô#ŽƒêxõÈ]߈¨q¥©‹Z[åèŽm:xƈ5ëªuT—ª¦RgŸþ©z;÷È‹Z—¦uêz•5«œª§œEv½ª«Œ ‘+yªÉŠfÚpÆ*‘gs™[0™ª¿¥wìc“ϪxD’c Š·Ã§rú]Ç:‘»ê’ÒÚ­oz;3ɪâÊxÒça-´a'ô®¢•y$Cô3‹â**ö{R)J>¹bù*u¢Dóú¯Üw˜û™z¥” »mé°ò¥ÚG¥÷”b±´™zöA±{±¯ÇP[•Á÷.8Š`± Òîñ¶4˜Å¶“khî++•:q³4;˜6` üÊ•5kö¡•=K›ÙÒZÙ¯]yçw' «}%*›$v²C• Ö}¼)i –}´ùa?‰6Å”MâBh“A5‹”IK4R~*û=K´[kŸ··%œajÉ–ñ¡$‰±ƒQš§™šzÉ—¬©™Ts·žÙ˜q!šjÓx“‰š•¹š™©Qˆ»˜Ÿ¡ —£é¸¦I™ªI¸“›/ƒy‡¿É²È'·É²á·aä÷µ æ›Ñ§~ìc7„÷hœ Ê@v陥úçkÜùŸE½›»×¹Øch$ŸXƀ̞3›WhØ‚èy¤ïy½ÜÖž6ˆ¡ (ŸU¼*¾ìù½Ý«¢ÙɼŒä¼Ö hÑ+ ÚYI\{ š¿"\Âѹ¤ÿÛˆF:ÀÑ™¤2¤äVžáækãÆO9œOO*D¹«¥ Å¥^ `ê+¾úqÞZ¦¦€ «ã¹©Hœ®=§ ‹¯Z®½ˆXÁ‚®1yqY÷§äÊ¨Ë˜Š Y«Ç¸ÄwqNܨ*—´ ¬ 1©¬Z©PGª¡ŠsÈšŽ¹ø©áªjŒÅæÅnÚÅ(°ªrÈ£J]¹Š§e ǶûXùØÄXLŒüÆIŒ5I“”,ÉÅŠy\¨ évÖã¬q­t7­i­Ã^qwxŸ©ßjxÛÊ’v\“/ÉÅÔy² ^h{±[Z,ƒ°7°þúµ\k°]©%7Ë´k{¦^B+µˆÒ>u[µÍw6Â`°ƒÂl˜+³zµßüµ8"Í_K•¡'ÎÅlµÛ„•£ÁÌàLM_Ó<ó<%^âµî¼6ÐI‰ÎûÚ G»Ï]Û{Q‹´Uå &ÏH«N¶··[[°9›Î'±´}ÍÎVlÄÌ›´Á³ Ðý¼z­Ñ;X%=})«ûÐáü¶Ö<}S[ºGi}]ë}͵Z«•Ë+yÛ–| —~;—„ó¸‚k™ Ûš›y–i¹ŠûŒ»1’Ù¹û¹˜©Ô‡ËÔx{¹ßÕ¤YÔT}Ô’‹ÕöŒ´¤}R{ºYâ_¸¹º+±›5ûº"»-FC´+c…»è‹€-øYâûž~|Mhò·ŸGæ+Ä‹É ž[Ö×Þy€Ð ã¿kT½É™ÅÕ‰¡ë¹½˜ÍOzÄ¥%ˆ½+<ÚÛk¾„ݾ5˜ÙQÕHþç¾”-îYÚCˆ…u¿) ظݠBø ¹þ›Àªi¤GìœÁým¤ö¡¶¢¾Ä¿À ÁÅ$Á¿MDŒn/"£>LÁÚmM,¥& ¤Í­£± ÝDtÂãÂÕ]I4ìÂóÃD$Ã<̤5ì¤WÚÁñ´IHf;|ˆ÷]‰Ì¹¥ç9Ä’ÔyăœËÿ²¬°ÈÄa\ËVÜxQLÈ-5=ôÇŒ*T•ü«—ÜQàÚpÎÉ®¨nÌáRÜTh쪮ÈÖHÆ–|âþ"ÇrJÇ㈩7Ç žàbÇÇÌêljLpˆ\â®à†ÜpA~ÅÉ9Žªbw«”ªäÙŠze7Üá ‘É¬ºÉ+Npͪv¸,v Þ‘ž¼åÐz­·œ§VžwÁeÊ´L]â*‘©ÇÓøáéÊd®­¼,ä:ΊëÚÇ•×Ë´™›÷Êм¯oMè‹£)a^é>MÂÍ‹KA¬1­kÐ {ií¬Ñz˜.”ûP*Aéž®zë¼(™>}6ëͧaFÈ`1pѸiŽú%»Ï»z’Þ¶Æ|I©‡¯Ú'ëAœzV³’vë6дöñÏãlÐm¹Ì-Ó6P™0•Æ£±èæѪwì5ûaÃE&ú¬ÑφÐË.î­1-Ó¼ŽÔnÐMÄmÐ6P$ªÞ•5@–Ð\î¨îí’þ<Ñ‚-QÖòÎ_ñnîzø½¡ë "c©ïŒ~îÏ›g‘'Øž`ÅžÏ8­éÅèB²Îêîã›Ïîy[ï ŸððÃÜ$«n^NËÐ*ÏKâñþÙͯ‘îOѳÐ óaùÒ,=ôÉWÑû<ÓhÎ6½Ó:¿Ó==?½· зrɹ¹Im¸Íõ<À˜1à˜šÛ¸SõV]¸”«Õ‰ šU?öR ¸ž;¸WÍõÉ›4èjÝ_Ã.µn]B{ïºO[º²k×ÃÙo¥×€=ØÝù»’Ý;&XÙ³½†€›¾Ç ¼ý¼ÍÚ‘­¼¬ô¾¾ÙûÙuDŸêifŸÅ:¾¨M!¦½ÝÙûú®Ÿ¢¯Ø“ÿHìk¼°-ðùò[Û¼M»}eÃ_ ¾íÀEÈ¡DÀ›VhÇ=£Ê_ßÌÜÁjÏ­ÂÖ-Ý"Bý ì†ÜÝLMøm%Þ/ýáÎ#\ÞØ¯)è]ýêü6ŒˆD*ÃøÂJÚÞàÖÃîmÁæÃT:Ãú¯Ç8ðEàðLƒ ŽÉ±"Q4\”[S3ÍÁ8lAÅ`Ñ…ûqE%Ä-¹d•‹| Æ‘8ÄjÄ¥1gâÙ¡’Sc¬Í¡œ§ç`.’q Ž"¹Zvã"`•›€(€ÇÕ9Q¥‹Ê‘Û€rï9’ó`¬B€TîÅ2'7Ç 'šrnȉ,‡¡ ˆssc.Î2îæ¨Ç˜3‚ëc•²/ÇŠ*`Gbs3ÐÍÙ9-ËzÊ.W`Ж+ HÈú\ûsí዇“fŽûøwÍLÒ¹ Q—¶$D© 1¼ibuºf–±ª [kf¤n>½¦ÑZ]¨ƒu, ØÅ Z7êRÞŠ OÓñ»%•jFv®BØUºžð¶²“ #Ïóè‡|óBH´Ó<Ó.’fÑëM=·$Ô®^Ù‹{Hmî¥=ÅäÓàRØ[\nï«Å£¦õäâR£‹R«e.È„õàâX£{‰î¬eE™–÷RßÓ0‡îzžÀGׂSû©]^ñ)6Å·»Fæã]‚myÕ>ÉÇ‚XÛåÓOˆ±•ÆÆ8ßdûNŸ@ñ¾Ð—Ú8›_ ö­°ÜèFnãh”_´/³‘/ø Ym¨9ò'Ù˜ûÓl”m¿q̯üuÒpœB)~j­¿`ý(ÄóÓÆ¸A?¦Ü<u«~S˼iŠô˜¿˜ýê_å/»q0W…º›[&à-:½¿ùÐþøI|èo;Ê‘öVmÎMó+7òÍ¿µ°ü÷ß ”~a ª¿M¢ ·3=¦¡Ò׉¢àžë€]0Q±H]"4c,Å B• Øiô.pÎѹ Æâ` |e(Ò_œÀ*FâÒà tT‚,FâHrh†£>®r@odxx ô¦ nÁ¥@ŠàÆYd[Œ*8&8㜠‡´‚R² b2aÕH$—Ë‚¨LY‰2Ò"]J™™›ƒ7©È»ï\6še8Ò‘ÍH ƒ'íäqÁƒy2ÍÙÁ:(";ã‰ÔD80Ä}ð¦a3[q" †\ÝE,„š§´$Šø0¡¦ÌƒÓçÓ1ÚÓ 3¥2ót# U|JN ×á)ÜRªð*»()¤]®óhe‹ ®¼_X´Š¡«„‡ôlÁð¦´~%£»w&O> `ÏÐa‚v "š—g„l€¢Â•Ѱ`µ¯ˆ"hÀ]IÊ]©“àšÍxT£›¡Kˆêˆå¡‘”Ã{-iY¢³d!Þr÷d%Œˆ.å`rˆÆ2Û…³ÌÃ*éd<ˆK±=:~Ù­eË‹ŠâšÊ/!%HL‰‹‚]fËCƒÌÈeF,‰&¾.f¸1ÝCiA„gñfáD ¶”e«”€.döıh³Dу˜IAØ-ÊŠ¨‡‚Doà–óè-Æn)¿„Ƭ)£ðluEv&–1L™Íâm™B`©$†a゚ÎâT:¢(Ð0¡ÍË qkÂ-RUÚÌyu€p#źٻ;š(kæ¼;’)ZÄâÒ#‹4殮D¨§ö,—Þb‹qéo5³'÷ÐÞ_ljuñ©µ=Âø«Zá ]Y 0~=Á¸87Wãk[Ï54Ÿ3‡Gc|„Q7ý=fGÓO]Nî8͸8£ôª|‰ñuÆÕØnuJl¤Ñ86äèùZãâû|þɱ]Ð÷œ|ßeó‘7b ÔÇž>§i}ÇÑ·â(=O[plŽ˜÷϶û Ðj|žÀïˆ ¿ëX¿NMª{À­;·XB×ÈwÜPä±CU!îw$ Ø-Ñ~_芈øØIö㘠aëÍFüGp"ÞàŸ}kaÒþé0ÉžðŸ"¢û»Õ¿Ñ¢&äÿ<@ÐziH?ioF$Œ\’')D¢)}´ÆLdšì€sò‰a@‰Oh E{¬ÔÈhtN¤#Û‘ n¶Èš"ÃdŽŒcÕHÎÐlä$¨#Ó)I>I¢%}hš‚ŽÃJ8,éDÓ—q^Si9+Š©`“q°Ëq+- æÖdDj“Î#¹8©àb訓it ¾Ð9÷IY]ÛÒWt”#Óq¼UÇ=¤Ø°coÓŽ ´”ÄÏå÷>9Íû<Ýñ–ÐÏ,týRj«©©è‘ûÝ’øX†Ä}$Q”üñOÿØ@ù#u =ê¨òÇ¢Ê !h~{oÔ?$HšÀšj5‰ BN©¹ün bÔ})éàÈ(…S¡ÎLJa(™dS$4âÔÐ,IGÅŽüb/ò vÙEq UF|5I(Y‘”9Jtˆ—&jV Gx,®¶ªºG…`•Œ’‚UÉ5Ö&Éd•Z=E`r³²"3j‡ ÅbjTIÞж\¾ ›ƒªuJú;*GYÙí“¢µöQ8jãéd£|î º+'Cç [¤‹cÞÌ‹Õ š#%›²•î:Ž9J}é-Õhîr.L–5ÍnÞØòŠKâa>EX Ñ&±C`°žIWyæ¥#èe½^Ò⊴ZÀä™Ég¹*´ÄÐÐîå'Ý$žt£½´êj^FÚ:;ˆJO—&¬õK{©Ål°ÅA-®% ¶8‡4Åœ~q™n5gš/¬6%kˆ©šNNI¹*'Ùƒ{Ñô0jNqçMiònœ†ST'×ÐÏï|¨³vÝUv*Oÿig„þžÒÓjOÕWj̧ÓaŸîN‡*<³gÁѨ5 ÔzzP•ãbžHÖ50Ô+Ë;ë“•=A Õ{Ù§ÔÚ,›>]5÷Y¾îÉOÍl Ÿ‰¦| Èé`R[%ú´nê3 ‰Ç¨j'^ªˆˆ©ËMÖOœªÀð'¬ÑŸ;u¨öÔ öS¹Û|œQÈô¦T ¨Rm ©f/ùT5ÔÕPómA^ЊUùßåªÌ« @°JÅ*#«&”® R»ŠV;¤^]«,2PâÀ §Ér­dÕ€¹UF~À¹*Yod_5)ÎèÖ"l‡dÍ´’µ>ªèX›ddƒ?°Ùr,Ú5´(¦â¢ÚÖVuVbk#Ckeå.¤U¡Ñ¸ƒ&Ûê4B«©uŠV¤7ù[ëjTesG±šÜzncté“y´P†[ "\-OÇúe@¬`*ºSºMü ¢ôt°Däù×bN zJ¨ðCŒY)_ïa#¥•·0ôäBf"åÄmtÀpžCD‰Ï.nÚ¢z×U¥!Ësö^+n}¯GaåzÌk©pÅ%,¥–ùpX&†fù\C^Çõ08½2\ 6TLÅįøL"-€s#"=ó— ç¹×ØèÌëS¤¯Lué×°û•¬óñ%4³]òR ÉHy0•œk‘˜ZØlzö¶iˆ…»vQì1N‹a§éÝe¦#öšvXºû8Alb´{w³‚Ó§‹a £ßc¼=©tÞØÓyeLKá±QÆuÖ!Ëgyˆì”^‘ Ù%+QuŸîì}u:hÞñeØk¨Óëô}Y¹Z=;orزa¡>ÔÙ‹ŸJ/ë³åëzÙ¾¶¾ªéuŽÞ³ËN ZýFêÝ"uV‘T<»RXKu~{~¡ühÝf*/!´÷“ÐN·+¤iOuQ>5ËJ“ z6"í*ªTýÙTȰ@Â~lªÂ­Ó 0ÛKˆ *¤o Í«–Z Êßþ_¨ÅR?,„ Çj#Ëj¿Ub£(Ö[_;pSä[­cŠ ŒU`7l}Q±å«Øg$[ ü#¡m¦FY§ˆæQÆú€ÝеµŽ'Û¶àÅqYU\fõ¬6T¶b/Z$Ãh 5·îï¤ÛiZoíi·À5Á[×Gëä ¦­x´•ñÛ Šv+ܹ­yN×ÖÁ‚3Åé‘WÝù‘qWÄØ§ôðæ•-k)ì¦&«›¡N'”M«û𸮶K¼íÒk—903Y&­² §Ø±"ávÃRöâ”vµbÕ-°Ž*À‚Þ3†Ûn%E® ‹Eׄ—rQzÄq3ÊŠgK¬@ûÂÞ7»zø^E©ÙÍCâoáٻŠqÒÌ"°P7¼J]ƒæ=ìÒ= voâÚžbY‹·I½¯Èlh‡Î ‹ñÖ%»U%/YK¯‹´h¢|!ÄиSÒÜ„ˆs1T´yA¢ SRœõŠ™nÕ̉òŠD±b5±L˥̘ú¬Ý½ùvoÜ­°n‘ï~XÄ(a9ìÞœ†1sÎ +xÿñ1%œÒÔî^sƒ„m‚±IOƪãÞ4×Îéú!|©Sa^Õëc_'îl§œö†^"3z)ßG&ɧ·‰¸YÏ»ùDrëÝk¯wv®äÛ‹Pªï}XVI9O/‹Q ðU¿"è>•YãyfyokS³µ“Í’Þ‘ Rál&‘³ó÷Aåêw>Õ#w¬¾Þ1ûºÔì S±²L´4Õ?0ñ»ý-©9¿Vü‘ö»¢ðcÿ;oð÷ØÈßò{Þ.-´t™½É¿*Eÿ ° µUuÔ^Uý»ß¤Vx¯)` Á€y¨;¶ Žj2ø CD¡pê׸5lg°ÃU;Öª¸üW¡J`½’ÌÖ3£`\¥‚[ ¦Â·ã±Z&Šm«¨jæ¶íÈ_IͪšypPñÁ“ 'ái4„wǺ£HØÞ*a7 _k¾ÕÂußb+)<’b«˜ì(VXßš«z;kƒë¿ÍÂm û=L\›²ÒZ³¤2 +i¥Wç`cF$ìR?ÓÓ5BX‚Å„Js¸¦ø;X8qq ì  ‡ ËD–ùs“!IŒÇ(·WBÍb,}y.¿¬g]ég؉›êúe{Ž—$§­…Œ·I)íÐæ8RÈâ¡%†5ô`B çú’PÊë¨ñK¼˜ ºcJ%Jl¢‘Ö-œ¥J1ˆ‡Xtãaºœ®*'ã8áíº±-fyÏø’ú=#Ýp{"m¨Ï”4¢Ìš©÷%ËÔÆt8gŠ.ðú«qO†=Zh"hu]±å´dÇîRá’iäCž}ŠXy]l÷ì<ìa¬Þ\Ð|ïS|,8r@ΰÔïúcË©ë®áíÇ™Pä+ôæD¼åØ!¿ØËê$r"”¼Àé"çXË[œBït² (‘ÔgP7jO6Éñ´(×ÞäËdcãðê|Mö‰ä™L{¬ö⿚Ìîäå Q}r˜ý½)¹÷2å$[’µ'lTmÈ·Íå7{üÄçT&~ÏÚø¡Ô¼|•·¯õÕÊØ—}F!@kÉï‹°Ÿcy4—eohݲ|L¿¸Úf¡j® h\¶¿•vÙØeûËTGmþDTTOÕ>$j'&ÌZõ=IH~˜ßbή¶À‰Q ›!p”ÀåÖ2Ö9çìh„¬X5ßUМW?°…Îb§4‹HݼESsÃÆ‡µt´æ?úš‡3Þ‘Íw 8|²i0`ñ¶œ™7×l¬ƒ«€³ÎÊ™8_`ЂœG™—sÙ\9ûQç„U3¦·Ú¹&Á9åíŸÏ'˜òIð̲ÖÍbLšúèᕲ\§#Ûî8ˆÊA(! ´Ú~Ïš$l—„ÿ·cXÏ™ÅF×ý¢AtvU ÿ$?OJZÌî¸)¬!Î,R{ãí f…îÄÌî†ig|¡›1ˆîºј¥a]¡å`R¯|[+®KŠ7C7ª#Z$mé ´sâžxMgþ¬㤅vs•¢¥hÝ/ËE‹; ¢? ‡æÜ\ K?Ø.Ý·Éñ˜î™%¯M½ÉÀ¶¡”Ñ\Z“‚WtÝÙÓ‚{Hƒ¶I©ƒ¦’¤qÚ¹Íér¬`ò¦ÓÒöïnµ=mõúô¼à‹†š‹X°§wµŸfÔ€Z}¯½‹M uáEŒ£ R7äÅžEçD®±T+SÏ®Â÷/n—§ŽÕ÷tžâêP ¼¨¬©Õ§ñ?Ý'ZarKž/9vÔY½¬µlM沫zykîÕÁc_¯³)œ'ÑŠJ«¡£iìžÂK<ÙpÐÆ|õµm7Ñ·*ÏY‘gUÉõ@~ö€Ykæ}Å·² ×=t\ÃÕr]£¾ß£M×lùºæö®aÓ|±Êåd^[îçÛNör=Mh_[©~ÿ0èÞâò0{Ђ½¶CaµP4{à,™³eþ’Û:ÑV¤™dîØ|<‡Öj¢½°?6dÙ#x3c±Á*ÈYÊ++»·¶ì ý²_0 †’£ù6×`e»›q°¬¥¶œ™ò \„ùhÚfgÅ[W¾œ[«Ñ¾ÂLjƒì{»æty´Õ£;û|çæŒ…mRÖæÂfÚĵm<)¿„Ü&­n¥hû3£Âø—ÉNvÛYr#ÅO„šºfIÒNzr‹ ôfš:÷(ñBí,º¡$iA çò×ËísqÆÛÅ¢ûu[:Ém‡íå{¥ u¸iºM,¦!®AüÅ Q8ç ­»=.ŒÖyš$|K_â툥·AKš¨;{Ǧ(¡%z‚Çå;k™Å§W×7…m߯ô}#Óø=íqÞÅ‹Y¥#d;÷wW¼þ;!ÞοéCîÞàÇñ’SÒÙÓŽ­¼Ø"¯=pWÁß§ÞàYcð#;Á•,êmáAÖw‚p¤œÕ™£L.á4™÷ÞjІ{kõ°þ@/<(Ÿdú“•Të¾7œ£ëãëÕ—r â"u|ñh§ïz,â™F[ƒ¶$j¼r õÖƒV,s!²œ?ÉõYV´è—ÑŠju=þÚïPu×xÙ¨Îeÿ(ÆC4f|£ñ8þ—d`ö×úïlÿ‡jÿï]µòŽ›ž,ùx­ýãb”kl‹ík16"רŠ\³ÅòI‚U³ÈTKÔ%Ö]þŸ­¥ú囼;ï1O.ÉÍFÚTòfcÖRNlO°o.>Âmé.´=Ëq¶qÉ™¼‡2[Î&q¹,oÚÁüiÃV«½o«3sç£Ã|iËrßZÉ%2/˜ÓŽmOé<¼z`@B)?Šp%øƒ+V³Å€ÛžÐÀWî‰~ËpiAÏ•: Ûž5Ì2-z%Ô—£ák¨ã[·ÎþIØ^¸­˜×AskÓL±&Ôæ–ãlãnÌÆY˜•ªø$DËçª a|…†ÐæÐ<›nóî¶îƒNÒýcjô?¡ßk[ 3¾e*Åcv†“¼ñƈÎ"f™D®éàÝöƒÅ>Jq»† ‡å<ÆÓ%Ý3±ï¶è¾Güþß-}ÃÞE¨†ÓußUȈš×ùû}çwºYà>}R«ãÜ$~€z§ÄÔFò¦Óqø–z”Õœ5ÎpÐ[Ã98«¾É¶ª_ú³ž>8è á]]VõÔkÂźò¬²«Ú&sz$ÚÚ:wõ4¬«d#+×±§¨·ë²~¢Ó¯.‚x¿%€Ý ak$Εÿ¬aïÖp5±?ñÅ.®ûìæzѾöµ|Ž[»–´&X.ñ!n‡6;¦}îøwBéßѾUý/`.mœÔlî«)ö§ã­ÓŽg¢„Çywר·bWfÄ¾Û yr—¿=˜olJší=e æÇÝòüÜOð%ÿ ™|¿GwTΊ`v¦º¶1Ø6sÜ|WHö·ÕÙØÝ|w°ÞKäx§ø –VÑ’ÞQþ»UÚ¼õ½ûò',ÝuW|¼jÿr«šµ¶1¤ÌµDرÔðƒ-7€F;W5Ýñ¥[ÄqÍKR¹-ˆÛk©¤X|¸™¥Ê=œ¶‡7,}ñC¾¦xx®Ý%”WÝp+Å£ qkî'žñRzÉÓ—Àwr3‡)ýç?‰Aã K1ðXB/FWyëêáß1Ú¥Ó»Ô|tô}§%ìš/¦–¥×t§6çMìÛ³óû8ÎÛôÁh¿eúŸö» ¹"ðŸ>è-u\Cônam-1.15/tcl/test/test-output-ptp/test-ptp-1.nam.Z0000664000076400007660000000640107274107771020613 0ustar tomhnsnam Z1ÇM8sм¡Œ ¶P€& 3 ؤqS„9oÚ€àƒ† 6@̨1à  è¼9ƒ3T²t郢EŒ9z)’GÍ›9W¶|s&I“(u.í9&œ1l:ºyC¦c†çyvÚàùÔ Ãû3Ö¥;Êìç©Ã5é¢+{k]ÃÛ©*æ/ÛuêycÚ¨×;Ú]ïp/zÛÆlÖ@ãÕ`”Ý„–W;±Pe l¹T¸/{ÑŠÕâHh­ ~/r>³šÂ5®ð”KsìkÈ Þ‡ºw h~­«뜃?eôëŸÀœƒ¼ƒ} UäÛí@ˆ½Qmbeaƒ'#2°xŽ9^“$Ѓ)sX§7+îÅŒeWJ¡â¾èFïA®g#‘AÐÊ´bŽ<ëC pÀCwé«i¯ ¢ÕúEDøåo_¦ã_¼ü7°&z ,¾;£?¨Æ-–Hn$ sª(A/¶‹Þ¹ %3æå†“eó$qFèF-ž43%µpv«Çi F© Ìç¦ôò\FËA!©¦: ž…^‘¼Ÿ#¸È§)QRct"&x¦1–·\à)39JY–rŽã›)EÆ –°›hl8áè¤+š±œ·Ì%:wÙ8Þ‘[2¨!1ÑwÃ@-OZOyMI"q` ­Úêy †þÚ`£Ø¼)v2œW$'dH)¼ ‚Œ¶úÒ*•÷N¦xSž¹£ç,OZËßÉTŸöìg/_ÌŸ͆êC¦b@*…N“¡“\bE'z:CJô¡ÏDÖ.j°Kj4l›üfL£÷É^Õ–2=gHÕ©ÊlZµ•}¥V¡ç¬™z­&¼©öh 3;þ 7±ÏOÿ' 2xŠˆž"ÚÌ©*’©÷:êS£yXgBf¥³ƒ¢&; Ë­¶UœÔ)[E%VºÒ­—u§õà™U˜n–UläçhG*KœÒ•—_âif0ƒq­©B;ææ£.Á²K±…MdT«™Ø"ªKu¬Ý2ŠJW¢Ì´!fÕ&Y|†µ¤º¤nˊѳÞÓ¥ñôÛiEHS¸Z—«¸œkya«³»žÉc&mÏÇW¢åpTHó­Ò‰HJ±Ò4îbí×XÃ2Ѭ¬Ô¬ÉÔ Ý*NwnÜdí-;[ÞϪÁ,]ím‹À5æTÃÑEaÍÖ«ÓØþsB1°Á¸À5ßbT¨éœ~ +?/¹=¡1$ ü_åb°» Žð†K+Þ[ѳB62…ßjáð„6o^ðs‹ìá×¶t¼qñ[ÙÛÙ¢XÅ.`±åº|â®x dv¯™ÃŒfcöÕ Cuߌ[cáÞ˜±°êpü¯¤bÈ"SðK©,ˇr£qEï’éˆÊuV••ß2e×jäÔN,ÒFv-‰[¸Ó2ç¾.ï˜} ¾÷Æ·Í^‹ @-júºÙ¾Ýáœõ\gÿÞ™ÇÑññœ\/÷¬‚æ0 =ÖêJøº]ܧvSêd —ñÊRvÞ°oiéê‘,ÑmÕô–KÜÞRƒ…¶¶¥anß ãQrÖN ®­%DŠæ˜Î;b¯íüë [Ò &4H‘|o%cWÙ¶ h-Úk“vÒ –eµâ*j›Ñ\&5 ó(ƒ¼Š¨º½o ”‰nfÖZ©ì&n€Ó­?^‡ÜÏ[#ø6ïmν†Féýïbowà€~v”Ýa…ØàÇFïÃOñT7t¯¯ö«ÑdÐÁ»¿ ï3Ž÷KM˜Þ?~t …ÜòÊb¹«ŒÖ¬¿“msf×;Ã@Ç÷”{NíŸÏ<ÛêÝ6§M¬fŠ ´Å ênïTT§Óú‡¾–ºÉ©~\“÷ÙÇOþjZ×>m™Æ\ñØælÍù}ó ç¼àXE¸¾eºp¦=Óq‡8·Óìmš³Í/Þ» kÔ¿CÝšVÏ3ÉãíîÃû:ëÜ:ËyÞx˜—ýí’';åÍŽ{ B9í]§t•7ýy‡‡žè£—80õ8.>"=õ÷•Ao[?û×;tðºùÕ×]üv®\”à%2Ûÿ{°Ò\ø&+ε®säóþ£œw»ûá.G·Ûµô$!C.p[×§wÙ—_Üçq€Go‚‡kïæzâ×c·—x͵xÒ†¾7|À‡1“gyô‡yÎu/×VWS‘‡8ýges×mGãã¨g€‚Ô-Ë? ¸n (oØ}8oäGÁ¦~½wYígSï§1Ùp•×l—w|™—oë‡^'h^AÇZ&z-Hz/¨}ã’3˜q5(g ˆƒÞ—D±—kO÷ƒ'‡x*y'…E1G˜‚ÔL& ˜{õ…Œ‡&¨Hˆ…KÈpÝãOuÇ^xaHnª'keÈ_uXS~i؆ø†8Yrˆt¨û|Jp‡–JóLJ"h.gY#ˆv˜e…èy¦Hw(>äÓˆ°¶tç‰U§\;èn„7`™›éžC¹—æ œÍ¸hž)’  i¢Ù›ÊéVZØœrµTY=…©ÖI¢ ¹‹'j†)zrŠ¢í(™)'ž1Š¡F£c·žZœæwœði’>7Ÿj•Ï™šDÊ-8pYäš¹¸Ç‹c™“Y\Ú¢Oš£ºÇŒÉ—pûö eÊE\’ÄG‘Ö§›G…¦ zBú£ªI˜ IHÊŸnam-1.15/tcl/test/test-output-ptp/test-ptp-2.nam.Z0000664000076400007660000002025707274107771020621 0ustar tomhnsnam Z1ÇM8sм¡Œ ¶P€& 3 ؤqS„9oÚ€à1ƒ 4@ÌQà  è¼9#G3@ȰaÃE -bÔÈÑ#H‘$mâÔÉÓ'L™4M¢TÉÒ%Њ3nìø1dÔ›5TÒ¸a5æL4VºÀ!–ìË Y‰r=:2­ŒµmËB%IlÞ·X‡n5ê•ïÉ”3lÜ|i–¦Òœ4dÍqU¨Ö¢]‘Ö¼ Y² Ê OM¼¸rÜÁ™GÊ€1ÃÅ¿OÏÊÀAVl¸‚1Óå1»6ìЫ[¿.éÖtî¹…sÄpÍ´çÏÐ1jœ »²%`Ër #>ªõØ#•3ßéÜøeäHkàðù{o ˵Šû¼ö‘ïã·?«ž=qúÙ—â½ÙdàñÀ Ô) v¨í¶`ƒ¥…V ~ÔiÈ1¹ñ…Á‚7ÜeÃow¤A#ÉiÔ1‡N'áT‹/f†e°ÑÐ ™Âe¸AGrà—¢ +þ÷‡‚‚ˆ$‚`$Z2,—“ 4Ðà<ÂȃŒ4ÚˆãZ;º#?ÙÐ E2„¤’LÖÕåR`Šù“eú¤( !„-ÈPç‘I.Ù$—^ê„CK6lØá‡!ŽX≮Øç˜ž9c7®Æ& n *' Šjig£yòЩNa:…jpÚ¡ˆ¶j䎎4ël”ZZe¦YnIƒ ­åÀbª¢¦YjŽmâ'¡6, l¬Ë6{[ ¹®Êk 1h ë£Ý~¦ëÕ`,¦Wjêªjn=Ûc´¤®©ã­o^ÛP¹ónû¨g0|›j¸„Ž ð¯çÒëÒºí¾k%–›êi˜7*šùšº/¸þ¢Pƒ¹x¢»'d}iȯª„NÁDD$áÄ$ éR}-ç®TÂKñ¼²Þ´"Æ’ -Çjz\m¿º:Ts¬³MÙÊ7ä2Ì2ÓpÃAC‰¡x;÷<±¼[ÎÃz9I ÓÆ£&M-Õ!Óðô£f£}[@tPB ý ‘Dõe7`I‡y§×Y›ñÙÔŸ ¾[â_.ž á£UuÝiºV’_j‡f^jaaŸ³Õù^›3x[ã£k&b2†úcz65ë™kF{† ¡þºJ±›çxaÁ1wºl´¹`[踣§ZòËÏ'»l¬/½ð­‡·ÜkäéžtªW÷ æÎ+>u–'xa÷ŒC˜ûHýŰ~ðv½èï+X¿|Å…ÿêî+ß…x—  ¯4ø+ŸIs8í1‡€<»ÔØ’u¢<)J×3Ú½6­S¬iDÚZÉœ¤¢Ûˆ Y»Ù—jõ¶IK_KcÙœæf1>±0†U+Ô¡ECJªXª• eÓF™µF-•AôÙNT·¥ñ’fô ›&7[ÒälƼÂ0†5”![ÊAOØ’–ÖüišÕ¼&Њ7œˆi@§5±IL´„:38É7©¹N á 'a‘ÌrdNzŠsK«i b̉“~†“ÂÒ™JŠN¨óŸ'êÒ]ä7†´že{’é,êP"”@bÚè9/ QšÜÓ?}èG»´žrŽ´£Ú n ŸxЉŸ0Åh߃(eg*gEG“R-³AéKƒ ÐÈ(µ 9-)ojðÎ….Õ¨µÁ]–WÔ˜fu="…*S#ÚEêpo- ˆA¢†°êoIà}Dƒ˜ô…rͱUóæŠWöMîwâ»Üqøš2êdp/¥ ùæšØã}%|÷Ûë༻îÎvØË^ xWÊ"P²»!çüx=Åv@½QÞhE˼Îu}’ƒÎù 'XIh¶UßöòÚ¾ÅèŽÕ_M#ëÚåÇ~ýÛ p‰ëÛÝ ³²ík;¼íà¶²{y.‚‚9ÁZ°„Ç„%&ϸÌU…aRü®×BwÂ=†q’Ÿj!2ݦÌ7®ŠNÎôa|u)®fQ`5üR+ÅÝHrʈûÕàc™ÉY¾5¿Ãª¢ƒ±èKX•ìKǘÁ2Ò·‰öÅ–)7ìF¦õQ„0ZH|Ljؽ­Wx<Þúš˜P)æÚ!ï7áEæ·‘.nï*OtJœ¹RÁ1b0yCÜN¢—Ÿt¥&­ö2RjíÉžD¥Î0LÄ)R2—HÆ×‡ùK¨Zbù–Få”QÀËRB8ÍÀr†IÍ´ux¾L$sCšyægÚ-tcUMõ\*V¬rJ¡½ªW‰¹8«zÑ‚n©£h’Ô€,i«3IW*ƒ‰NzÓG­^ÁR{Pg3¤ŸŽ*§ÁšêJ›Ä9­64~fj¼lÕÔL*E»ªÓºÄà&Ut¯õGŠâà.¥VµPkH'Å:’:I²+ƒ;SÞĵjjàéD?zØ,aµ·)-kÞ<‰«Â–ªdÄÍku—5ÕhUëÞÚ:$¸N´š¬]gÇÞf¶|}­ï —[¹N–s‡=Kc™{ÚÝ,<¹ˆ+¬im›o‚cq—Ý.¾u×oÎ|4Á3xh½ÚÒ¶¶¹Ä3yÂ-œ‰W×ÜøY˜>‘†æß±Ðnýjóô¬‡¢+.rÇ×ð›ïo´Ë-NÏa^;E7|!ß8~®[¡ìî‚rî²z1Ø?çyÍçc¬¶nBH˜Èð½a˜Ùàò ¿}Ö¯„ݾ+ÿš¾~ñ‹èµ{]–tpÜ#ŒÄ5SøÍ}Ï{ÖSØÆ'¹Æ ¾qCÔ÷Æó8ð ±·ZœG½ÏyÇ]Ç3à™Œ‚Kôôé1Š)cGr™ñQóßÛNz'‹Ýd“²ƒÛ|åÛøk[ö|—qY´Ù/YòNCüÐtxÞWØk9ëüâeZg?>>™‘—! øì{:ÿYšåNYÓ½R’[Û|©ê âi«JÛÑí.ËMÂô³6ë™Z¥YëzegsŸ:q-¡åÆZ7°8µ0 iççÄtœ@“¨Ö€ Ør‰AûRi‰Ññ€*³öTäælØÆlXnðlÍ6lHÕQ^‚~Hõs-¨nNµkä7N4Àn;˜U[uƒ+e>ømî„ ozÃV}³}ö¶ttE[“C;<'uIÑo~ÕYWsV(~£õpDGqH†ÓóX†¥t]èY t…8ƒYP¸YÐõq°óYÅ5rt©=hX‡)çÁÅZ '†L—…ß#]\ȇÖeˆ9guã!9P˜tkx\ü†/'t“X†<‰Ô•=ruq8sTG‰œ¸@ÇtXgv{‡"àugâ…}z†aWHcwAe'D©Xd+„Dk§d6¦}p×}¸xD¶¢z<”_ÁH,^$|)Dx "z´‡|ÿÅ5Ìø'Ä[da@4}ÊÂb¬Hc®¸f”ŒÜ¨tÄhzt´yý§%cÝx}c¶fæ+¨÷åÈzÃyd‹sŒ ´‹÷ж'‹¸gd¹´fÎgŒŸg¨8gÄgI­øŽffÝׯxƒgÁ§Ž~M¡÷_ç`Ü'igJwÆ#e#q)h‚0€‚(yháó’,WkùGƒì‡‚h~ýÇ5?x"âa’1€èWQà…míW€M‘65áö‡T$ˆ~:2Éæ—“ X€UlFøQ‰3~_9Nægx”8#:Q•X€j¡ƒc¹%/¸^2—¹fƒ+ nO%O9mèN1”ÛÖmWÙ%œÓ—ö×aU‚àvnB8N9¹˜@¡„kÅ7nÅI€“†[¸ˆ‡…ŽØ…T(sQ±™¢¨Y*tdøoŒ¥¦t^xrEç:WuÙ†‡ˆŽÑqŸ8š G‡(‡€qÏã‡X‰y¸ZæWœœ[åñtèóPˆskÈœz…›™ˆ—A'‰.7ŠG\š¨š¢]ESˆPç›±9uÒUŠø@n¨‘ª¸^í(fx±¨bdÇ^ ÙeǨvÆ×‹9ô‹")w…Ww)ÈH`î9¯äxÖh3 jxv§|?”ŒîiyÉ óIzá šz˜çc•Çb队|Ďꎊ|ñ80( ¢¤—y?ÖzAf¢ï•{²çŒÇ§}©büÈ|¤g‘À˜i£¬”fGÖŸÙ—C iUÖK}ù(L]VL$YJúŠ!©bXz¨’…Irôg—á±M²~Kél%¡~ì7OÎö~i¦X‰ø§“,‰…D%˜ ÂSò-á—yj<=Yn2Øi“­ñsʘR¢&)dA¨ÃÆ–)—J940 ¨ö—•x”Mñ5逪1‚p)©+5T^ɪaôk}J§58•¨Z§Æc–§²9¸©TËa:9é¨*Èš¾:k¦”p:l&!&)¡OÊc=h•~ºHX˜DH­t:×úR”9oM¨F™i”SWœ™›ŠSošÍ)‡Rø†§)œha¬°)ˆóz­)¯¯©œ¦9›k‡·ù›èÚNç®Óžvh=òzœõjœ*·°É¹‡»ž1×® ¨ˆ¥©@¸µogA½už×éÙÙüª@$+¯ß …âÙ;[ž;W¤H›¦ØžFZA´èxò9zÈWŸ\sŸ÷s¡i§‹[ºfê£A;Œ!Ú+Ê'ŠW³|GEB«£þùDϵH£z‘‰—N»b›Ÿl·£9Ô¡>:Ž0Š|2:¢èX£úØeó¸ *ª³Ú×¢S0ˆ”´äbv[¢m {8Z|R»¤!Ó£\ó£¹{Qêf•G¤Ò×µéß‘Uûe*ƒ¸X£¸‰‘Û·Ô÷})š³Ï¨}]Ê5_ h;©§ÕJ¦ÖÖ–…j RT;é’~zRùDSÑz«r*–° PdÚ’ôá“@¹­ª+OGÉm륬QI˜~ª©y9©Ja:#H¬­«uI€lúSÇú§¨æS`ªó'«˜ªn]™½ð¯Ù+Zeº»wi«&9wj½ÃV'!`e«{¾<ébí«Z™˜Ê+¼¨«¬ nŠy¾ŽÙ¼+™çûnI(òÆ„n…_ã:±å*…–å™ê šì=Gš›hš'¯© …©ÙY!ü²“寘°*£Á¶9žÜ›(œ°Ã‡;Ã}¨Z±8Œ[@ V(˜øÃˆòª ËÃ…²HÜÃ3[°-K!Pl>é)³Ût*ãž>û¹a;µ ÔC]L@k ü¸¯X´…{´Ôˆ·šeL˵œ{¤}wÆ)·9ôÆhVÇêÆ“{ ¯FfËCë`d[¸ƒüŠi+Žk»¹Vz¢÷¶¼(¸MC·æÉ䈷– dŽÜ]7J€{Ç¡›C„+E†[¹Í—¸½ç¡Œ[¥žLÇË—£¢,¶!Ó¤*ö¤–ke“K¥\6Õ‡³_LÉ«2ºRTºàǦbšº¨K§m>oŠ~¹‹¿óç»Ò ndúºT €E‰§ÖÌ€WYQ=9P¿·Ê¼c:Ï|«ö¿êKˆ3<µ•Ó»‚P©Î®š½µºª4¸t9ƒêÜ»õ§Î½ŠÀdi§§º¿ø˜˜ê‡­EØÎ¸:ý«Îכּޛ«g©ß Á O¨™•s®l9L®ìÊÁ¼i®U¼¯"L¯%»šæ\*Òj¸Â×Â$­›R|ÒTÅÁ¹† ÛÒ¨uØØÓ,@;'šV>‡8±D¬[8ÒûÐq²U¬ÄA—²V¸²@|ÅUŠEì‰ÛÅÅ7+Éÿvb<ÖJWÆ6µ³ Æ÷µ´¹xµh›µCj M;ÇÆÇÍØÖÂL(zü´ÂØÆX«´ ÈÊ(È_ëÅ“üЇlʉ,¡«gŒ$ʶ ™˜¬¥h z[bÚ·ÈÊÉ®l`¿×…x¥ e;5¹,¥‹«e,Ú^FÚ™-¹S ¤È'¤Nª¹¡}v#i} KËÌÔCÆ\’ˆªkølÜ’ÁëЬõÍ€ OÄ‹»ðç§¿vÜô©É¸¿a2Ù¬ZÛ ¿ê‚„æÐà<ãŒTYçü@é,‚ì|”ï ñ\Ѿö+»´ŠÜW9—1èÏÚ Í«ïýÏÍÍá‡j‚T©ö—­’IàÆÑû7ÑÒlѧ’Ñ–Ù9ÐÑäªo pP ² nÒQXpix˜8ÂVX¾ƒâ[q2LÓ8mÓ\Ó,«Ó …D ?-± Ûã>ÍÃEýZGm±è©ÔBlM­sO]QýĘhÕ>n¯R¾†XmZíœ;=äÆåÕNm 4‹×$ŸŠ]ÖƳé…ÖdܵûÉÖŠÇ!£Æ¦ÌÆŠL׬l×r\Ù°ØpûÛníד=ª·*ƒÛûSé=í‰ÙÐô 1·Æ«Ï·Š”Ç›míþ“ .ÝóŽÐï‹~´€ûd¿æáàÛ:¾ÛþÐbßê,•ì®Ýí»³JíËìð„ÍíÀK˜á¥WK,âþ¯%ý±ö:âÏa°K­ñ.î9,=å•ÈâçâðªÂS8ã·sÓ/|ã%uÖ¹ãÀ!Ô/œ:B¾óƒˆÔMA±YNžTÜô7çåLæaݵcLȳMŸg½ŠiÍæt¾è+ê‹pÍçMèuÇê¸fÇo>ÊT[Ø‚>ׄ]芠l®è²Ž|}ŽžÉ‘îècD靼ޗíõÀ®Ù3ºøuÙqÚ½Œv¢nöpÞ4¦>¨ŽÊ¸¾êiÏË ž×±ÊsÜ«Bë×}¶­}¸}˺]ù½ Ì‹½fÄl3Ãý»§ká<©À :ÃjǦÃûmmiƒ¼ßŽìtJϯzî3åíààæàøŠªŒªûΆT­á© ZÎê]­ZEü~ÚÆ‚à –JÑþŽý¨€ZðƒJƒ•Jjçž¾ÒÚïî7ÝtªMxÑMk Ü 4çæ¦¢[˜Zn÷­áá;|¢ïn—{c_ˆO5¿ö×ÀòFe¢7¥`d¼·ñd\ºBz¯ãýôøBÉC,'¯Š©<3´úUŒ{y3¯²0šWÁrœÂy{ÈY=žGœ ÖByËéè…¼)ö®†XÑûjMÎãU"¥7sž^tzzþÊ•À©Gm ’ÃzŒHëm1®§æßéûsõ&¿t=Ù' öÚìk3!™±>6èþš~9t‰°ù¯GzÜ`„"P… ¶åãÝk[<¶z$ÙÙ«û<›nÔÕ>£é ßÚk„{‹²ÅA"ÛŸƒÙ|£­õå×·Æ\Œutù¨>eë<ßmËuSj×Uº^—¥ú ŸCƒN(¿ä¾j&U^Óz3 ÏÙø?n¢¦–U-|n*!›h6ðЗÁCh{ ¿94pÇU=ûoþ]¿šÐ¨àüvõ/y„¯bΨ[§ÂØ â¹¯÷ǦJ•J@öGU¯{6ð˜ßqÃK·ÝÁ®éõüàîŒý>aµháJ~è†V?ªïöõ+†ã/ 2·iõàœ­Âp©p8 Öa H•äÀ&ÓN ÂI;°.€Ä¿Âò<Úâx0OÚ¸xC"ÁûC:OÇõ¼øóT–ÜjH®«a,$X±0"'b‚ô£‰U5(¨\¤ MdO9-©U½³ŒRÜ‚¼n b¾?h^™[s¼®Í™A?ˆúÞNÚÛ/kÏ #=Èۼ̴„*бA¼ÇörÛÖz{YÑï…BíÑÅ ìt…ÐŽ >Øö¶¦bWôÏnA:¶ å!'˜ƒd²N@ѵ@“%1QÔYT°GþË鲂ä)ŠŠ]L2ºe¹V“e¯Hþ§'¹×d[œ’ô+LNƸçæ%,ü’z­KºLœièòÜ$“”>ΖC<[Ù2„d°/ªÌA'£Ë¤“{±,"F‘yöú¤ ì|ªMÕ鲫 |^[Y¤ŒM’¶é=5³Ú0ף욇ðJ]Ê_6E£°ó\ÚYÁyRðÖÃyä@CeyÜ_iýmÌ–îämL¸F oÂ6'/{U”Ý"¿ž!w–»2Xa¿“P*O ¹Ã†„Óþµ¿îé£Y?†3*¹Êl§)ݳŒ_i©§°%~w9©ò[†ÆL`šûç,]Ð@\ ÀÑuÊÓ-ÕY}Œ‡5N?li+å£þ*@ù1[ÖÃÊQªÝ·­ô`¦¸b-ع¼ˆ R³ˆ@Ù")⻼W C^’z¹òì%„œi‚¸0}IѧˆL‘C-&ÞÀÉí&&‘K˜,²]V¢%—c¤Š˜UÎ%P¨—#±ÜޤyMQ€bÁŽu@‡dÈ šg®dÖ"”¹·â+Lc,S®í̯HaÍ´ ¤ÎÁðLµ‡õža»Pr±2¾¡Y' # š©HiòI¦ééœfÑQ݇òåÉ© AM›Ÿ4…®ÏQÂL´ù eµŒµíOÑ@96#e*š”K3¸YJ¸éM¥@•ñî¥]¥¿I§ò]l¼¸R¢MCÄÔ7™YqÍ*¿ ªuÑýŽÒ|#ž¡7"N×þZgøÑUÆæüJëHm°…wán’G- 8•%§9“ :®¥îu«^ 4AÂ’S" àƒÐRUñ)ŸÒ½NÚ:Ú]#dÔ!&<õ ñdÁÓ=Ž“J;©AÄv¨t>&°S*ü`©óã–ÿñ¢ADq)®¨g‡3—µ {¦KtÉ=õ'ƒŒWkHÅY§hͧ DŸùRH®«i°lÞÄ ˜ÃI‡‰O¨M} ÂR‘71&9¦vaäÃ|r32ÕH%w#áG•z ”EZS•@aäÇ\…Dr††112whÊÔ§ok‚ÅÚöbf•\…W2Š®Š:PýXô™{0…¶ÍF—9 ás¡Oº'ªBçV ½¨OÓÓÁÐ}{LŸÍ\Œ\“ljMÖVP‰hž›'uÍ(Ê=Vú²æçÛšM”P®B( P Åh¤k³Šò®‡G•Ðô…ò'âñQ†7©ÍMâ_³æÆø˜¦2©TJÈ(eÑw×9“j}s¥Áñ‘º hÂMê’P(رü9Çjõ–¨*þkw©3:®Îäg,Ͳ¬–QµUQK½ôI §ãTpˆÔ«jËx˜Àª‚Û«êæ>¦®ž°ë~àðûq [cGM:x3ÖHÇyXYHï¤6N1$&«n"iñl¬R.ÝNäýŽ§î„¬ã$!ž¯ƒˆ%ë¶„~Ý@îRÉÑ"g=rCžS~©.Y"põž¦¢VH>S,o­yXlSöig­à5‘9P~Þ<ݺãŽbO\—¿µ{ÒÓrJ]笽 ë”©)׋i¯2f¤¥­ûsF1¨ˆOh… ƒq'Iªµ¸^,Ú¯-¾ŠE¼Q¿æmµ÷µºW)kÿXÝGöuÁ²ü R ì =°14NžÚÒ3`9œ|4ÊkÞ¢»^©â&i°’‰FX'Ê(lO¥%ˆfXm{6%l×ú°®6‡üÔÙGìjaÞä_|sS23ã%¸lX¥ó Æf”“à©©¢£CÖÙ!#AÚ, «^³CÕÉ–Ò&;U)@*ÁyÙá)-MPò¼²ËÓùHnam-1.15/tcl/test/test-output-wireless/test-wireless-1.nam.Z0000664000076400007660000000162707343601117022672 0ustar tomhnsnam Z1ÇM8sм¡Œ ¶P0&œ1lÊ€pó†ŒÆ0 yÈÈaÃÅ 2bàpÈ;iè ÁCN2iêÌqä0e‚`FL6 i@ bL7tÊÈ¡9²äÉ”+[R´ˆQ#G ˜ò˜Qc†‹ fÄÈáB†Ë 3kÞ̹³çŒŸp‡=ÚpÆR†N¡J¥IÖ,ZµlÝn½˜qcÇ!mÔpq1\äx3®Mœ:yúÚY¯Q¤(dümú4êT’)[ƬùgEÆ^‡ yye ”9d¸¨ÁY¨\ÐuGç%zºaŒÕ]Óì=¸pâ‹»:+v ¶•kÈ£¸ç¹¡íâ-Íœ¯Cè­ý.[<ùŸ<˜p¡sˆeרWQE’I(©Ä’y4}F—hw‘&T{¨)µk‚½V‚X-(`nÜ…TØYi­ÕƒÇ=¨ž„3QØ|V‰ˆøávÂ6Ye—e¶ÙK¥¥˜žrìí…šjF'_l<Ò¶Ù^Èu¿tŠárFþ—d|¯QiÝp¶q5 nÝÑÞxga‰^r[ÙÜ{_Æ8x Ø×¦ùµ@A)ÄPj %š!mx•‚-i\–p®7a—(XÈ”’¸hVe↣”#f¢[Žž‡„’¶H©_uJ7ÖŒ¢&Ö©vQŠÅäl>ºyêŠ\Ήä¥`Òtkµât V™¥6ø&ª,šæÞs­Ê'¦•d›£wxêY^³BF­‹tk'·õ±YŸýÉŸ /Fdèm´"j U r .¤Ðöꞥ€+’¦ùzHï™Ç¾jX‰²îû,¯rºÇª¹®†Ê°ƒ˜ã°Nêª"‘“ú £«窭”ÔÑ0&qï ²ªsRK±µ ªŒ-všf·êz¬eªÒ¢öPµ¯¡»æ}ìêhƒZ`ε&Jp‡æn¿W8²|ЬÔö*Lã¨>‹ë/j|.¬+vÂ%×ÖòÇq†ìÞ¯j“¼#®Å¾#u0ŒIªÕüBl7j2çMsV‚ÏŠð¶ôý¦gÕAþrÐ =sÑ‘çɦV}º¨(ÔPèD~KÙ5Õec}xR[gŠ/ë'w7£ Óкá0K»Œfá^£îµG¶7±?þðåäâ¡Þ²!ï¸Æ(ÇÐSeØRþèòu÷ŽøïSZ/[öÓë,"}'‰—ëÜ?K©æŠsÎVú) nam-1.15/tcl/test/test-output-wireless/test-wireless-2.nam.Z0000664000076400007660000000624607343601117022675 0ustar tomhnsnam Z1ÇM8sм¡Œ ¶P0&œ1lÊ€pó†ŒÆ0 yĸá‚0l¸ÈáÄ4tЀà!' ™4uæ€ 9Ç‚—1A° #¦ ›†4 ‚1¦Œ:eäÌYòdÊ•>+^̸±ãÇ2fàpqÄ 9\àh T&M›8uòôÙV(Q£ g(eØôiÔ™aÇ–=›v-E‹5rôb)isX•á[˜nkÞ̹ÓEÏŸ˜í=ŠBÆ^¦N¡J}yr嬈¹.þ 8¬ 'cP¦q9èÛÍr=Ó =ttçûª®=ãvîݰ·*öÚ8d 5\Äòk—¡Çíü¹nq¼“§þ+»vîÞ-+8°àÁ„ C”xXzWÆŽQeJ*±žoš7hAGZRÕ¡æ×jZU`t‰ýG‘eZjõ–\œ-hÞ]¤é¡rìu8ˆ†i•ál²¶’k–8"pä × Š ™¶âz«y'J”É'£lÔ9&ƒm¸É [I"Δ`‰Â1(“ƒú 9!sÎI ]36i{Ûu—VŽu‰‡eyÄ™ž—˵—]šñaÈ$€!‰c•nêƒ 4`5ŸD„B •¶Ÿ@dî¹a…b¥£•$çÆ¡áR,RHÒ€W±ét|&–‡„…xi =j)z*‚J¤ª‚}X˜ž¨nè'’ßµy¥¦>n)§¶~iã‘0$É«†5>Ù\”Sòöê°±žØ)rt¶åsTž m€h·& Øšg§uKa¹j¾&.ŽýÚl°áa‹R .Ôà}-$z£y=:Ñ’½ÖHi©èfšíºè}Ê×­"j¡¡ Öª/îz­ÃêrJ«zʺ¨kˆóš9“½Î~ÌcÈÆvŠìÄʲ,oÆô‚õ­˜Tº¬`–Ú¢Çm²uJfµÏæ<¼yúüf±³’Ö.Ñì]w§¹7Ç–p½­Ëf¾×| ¼h~žœrªWU©Â‚ 4Ä’\箽¡É­®å4±²r‰B­4ÍñÉ1j­ñÊ]ßû5‚ro3z3KX§ÍJ*®4‡;#ý÷Ã"“6táÞN .oz+Ìô¹ŸÃuCS“þîÕñfîßæFS ÝçbË[¶}g7ZƒÚ8«Ü6©¶>wèHÙ]µÅo'm<ß06üòò“§èüjÔïš:×7zmýÏ’¿î¨»Œ‡ï¸ôlç~úøO.çè–—~ô˜Å³mõ{µÃxÐRÛÞÒh—§ïéÌt<³VÜx¤›±Èà_ˆ~eâiÎxx³ÔÉ5ÁI¬~¢rà ˆ+VUOyåá@XÂŽ¡,¾j\Ë6?I€Ëú 9‡@ÏÑðtëÕ¸×9ü]P«Ãä®—B9ÅŽ…vâ_a­"öì‡fQ‰ Ø··ÃõÍ èíÊÔ>+*l/kÎg¨è$/ž‹×‰ «ØÃÝaq_ý‚`}5Á†ÜÀ‚·Ã ô†ÂÊ郡šÊ óÆÆåê‹…”_§V˜H¹Ñ{L³fˆFJ’r8ÄÜdF0ºNpô«¤û8Ê3uX<¥q¸?±g¾TR,¡Fü礒ø¸yr O¬d-±6FIÑñ~Ö\âxÄè8„a k(CÚØœ²È@˜. &B GÈ——Ôe;‘ù@œvS§"}&¦¥Ç€I°œ9@§G´N¸-´‰B$Å2HÏmF+§~‹%CUÈO¬*3 Z…*(ã)Jj‚ôŒA"óPàÐ’•r‡íŸ@ƒ8§‚FÑ–Y“èGuR‹r†¤;k>Õ¨LˆöS<‚©L­ ¾M*ѯ‚’ KÓfÓTãÚ®£Ô­Y§©¦Üê!i ZŸÞ¨u§ù(ùP¯V†EìEéZ¹J–u¦ÕDkjõ)4~¾µžqmZX É.ZRô«°­¨lÿ:6ÊæÖ”„5+_u»\AÙT›zm쟎)ÙdJ÷}ÇŒf_«>N¦•;Cõnfƒwnñ¸ ëZ¥ª,ªÖ«ò}çàºúS¦³F‚=/oIS[ŠÝ–±®Çͯù2:ÕãšÖ…Ym'/cê\nËÍn‚§ FÀš¥*­Qz£äžŽzL$n]tëàÝÎÁßçð(Î’s³Bz/Žå= {´"däû¹`âŽ,žL&¯c• «߬ÉípŒ‡ûÉCù·C.,ŸêäÆSÌyý/)ŸË»æ*àÄ)]iHr–\Ìŋ㡇cycçx}Ǽ.f}¬ÙFÅ@EBö3‘ ÉåÒ÷n¥E(~MW̵֖4β‘Ê,—•›Þ–ƒ áWƶʢ-î™-,éþ‚Ä%=iœ«X¨í„¥Pk\ò¤Û XÜî™×nöõ–›%8§8@2 ¬B’ª*Ú°Ô…•b‘[ÞSc‹§E5[Ù ¡D«ù³If§€S1$#»ßþ%$)½VKÎÕRÞ.»õ[àšyZØàwCGMâRKqÌãf0ìŒkj<㮲çíõk\]ît·§ëÝvw:›gû†ºÜgŽ´®]}qíAÓ ×´¾WïËÝ{Éß-¹½lWh+ÍTN×ʾê‚ß—ãXTø³SÞðô9Ýzöy¡)Ílu³Œ¤àn§¼Ìð´«}/ ÌŽìãðÎtµc9¨TvvÖ§úô. ìAŸ¿ñÊu&zÂõµ°±å¬ªBÙy2ÈŽ³Îäð}ìv´l¡½ÇBçJ?X˜ã;òÑf¼é7?m†Ë>Pw·äŠf8ªþu(xçln¼¨¿ü`àFXôèûÝXòÐk¸—ñÖqMoñrÆàœ‰‡+ãÉlö´=þÜ{_ª#%ßäÞ[ž{˜ºæeÎù’³çó|çùæ½ÞÖ¢YÑ0/>F þoyͽŠc; †y C7Kø5ŸÑßú_ 8ºßІY<Ô¥Ÿì©vì ÇËýdž–T¹ÇtÀ§}tõhÏyT·n¼WyüE|ûg^*×|¶uZ–o HWÕg?ýfz6guu…vÙx‡+&&kÇv&”ag•ÒS÷xïÇ~™'r;µbÿgx¥Ñ.Þ&|Šy ˆ€!T€ ØL”Wih~hm]×{ÎW$'zî7ÔÇojçÝ×v³µVªW5¬÷l»v^°öf(HwœSk'qiƃöd~m–†/–vê·S‚vƒìUîµt‹çƒ¨W7¿7OåWu{xu-—|j¸|K8PMvn˜g.‚HD¥f§—ZÈ}lG‡Ûö$·9ˆ¾'uç…8G‰úu|êV=Iˆ…5D[8e‡E¸VcU(‰è‰[8;Wø‡ †°:“3 ~…r¼H„6&ƒÑçz1˜kP(tÉøÀ84 wVqK/X‚Ø¢ZçŠÇä‡Rxu›(HzHŠæ„=(„­F| hŠkL©h€k•ˆ9$>$mÌ7…¤GjVx‰ ˜‹´‹ùøj°×ò¶SâÕc☉݆‡Ø·{±¨_ê¸hJ&Šîè‰ðe){èHr­xPí=7slE…¬´vEú%wµ’bˆbdø$Åx†iaŒCˆOÍøŠø×s?§†¸~Ò8† ƒ†ÃˆcáŒË… Ç!g;NãU{h“wå¨?)…½W‘S׎l¨‘G(ÉÉiXféˆ(‰4*)W¸h‰0é•€øz“³¶fïñ$wrŒ:™Z:·”$ +ƒ2x±&“ s{jÁlYB•"I·ƒo؉eUææ‡9‰Z%ÉyIˆohˆnÇ„!‰Ù¨‡¨kQ@—} —ýs™“—Za8šY—²Ù†ò1<@gáfpÓ#}éò“IƒCgƒáhT$ˆ™—•™éu\Š|÷…Zé€Xc)Í šgéŠi鉳‡lù+¹š5Gש„<XŒ$¸§œœÈœÓ·••=®É’«–_4 hД¾Yš²xšá"žn9™©ÇšS´q lÞG”¤”.EIÉ—˜YeÀɈÿ™FÊèŸÌ˜ZØVœÚVN/u•êtŽ™Žó9BrÙ‹Ói„Õ‰„穊jEo¡¹>Ýi ,‡v.×–Â…£4'u]£x^ú‡›aá“vG¡¯Ùpq„nÊ”‚9‡7:tànam-1.15/tcl/test/test-ptp-1.nam0000664000076400007660000001156507226442175015271 0ustar tomhnsnamV -t * -v 1.0a5 -a 0 A -t * -n 1 -p 0 -o 0xffffffff -c 31 -a 1 A -t * -h 1 -m 2147483647 -s 0 n -t * -a 0 -s 0 -S UP -v circle -c black -i black n -t * -a 1 -s 1 -S UP -v circle -c black -i black l -t * -s 0 -d 1 -S UP -r 200000 -D 0.20000000000000001 -c black -O right n -t 0 -s 0 -S DLABEL -l "Sender" -L "" n -t 0 -s 1 -S DLABEL -l "Receiver" -L "" v -t 0 -e take_snapshot v -t 0 -e sim_annotation 0 1 Simple Stop-and-Wait protocol + -t 0.01 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0 1.0 0 ------- null} - -t 0.01 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0 1.0 0 ------- null} h -t 0.01 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0 1.0 -1 ------- null} v -t 0.01 -e sim_annotation 0.01 2 FTP starts at 0.1 r -t 0.25 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 0 -a 0 -x {0.0 1.0 0 ------- null} + -t 0.25 -s 1 -d 0 -p ack -e 40 -c 0 -i 1 -a 0 -x {1.0 0.0 0 ------- null} - -t 0.25 -s 1 -d 0 -p ack -e 40 -c 0 -i 1 -a 0 -x {1.0 0.0 0 ------- null} h -t 0.25 -s 1 -d 0 -p ack -e 40 -c 0 -i 1 -a 0 -x {1.0 0.0 -1 ------- null} v -t 0.29999999999999999 -e take_snapshot r -t 0.4516 -s 1 -d 0 -p ack -e 40 -c 0 -i 1 -a 0 -x {1.0 0.0 0 ------- null} + -t 0.4516 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0 1.0 1 ------- null} - -t 0.4516 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0 1.0 1 ------- null} h -t 0.4516 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0 1.0 -1 ------- null} v -t 0.59999999999999998 -e take_snapshot r -t 0.6916 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 2 -a 0 -x {0.0 1.0 1 ------- null} + -t 0.6916 -s 1 -d 0 -p ack -e 40 -c 0 -i 3 -a 0 -x {1.0 0.0 1 ------- null} - -t 0.6916 -s 1 -d 0 -p ack -e 40 -c 0 -i 3 -a 0 -x {1.0 0.0 1 ------- null} h -t 0.6916 -s 1 -d 0 -p ack -e 40 -c 0 -i 3 -a 0 -x {1.0 0.0 -1 ------- null} r -t 0.8932 -s 1 -d 0 -p ack -e 40 -c 0 -i 3 -a 0 -x {1.0 0.0 1 ------- null} + -t 0.8932 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 4 -a 0 -x {0.0 1.0 2 ------- null} - -t 0.8932 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 4 -a 0 -x {0.0 1.0 2 ------- null} h -t 0.8932 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 4 -a 0 -x {0.0 1.0 -1 ------- null} v -t 0.90000000000000002 -e take_snapshot r -t 1.1332 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 4 -a 0 -x {0.0 1.0 2 ------- null} + -t 1.1332 -s 1 -d 0 -p ack -e 40 -c 0 -i 5 -a 0 -x {1.0 0.0 2 ------- null} - -t 1.1332 -s 1 -d 0 -p ack -e 40 -c 0 -i 5 -a 0 -x {1.0 0.0 2 ------- null} h -t 1.1332 -s 1 -d 0 -p ack -e 40 -c 0 -i 5 -a 0 -x {1.0 0.0 -1 ------- null} v -t 1.2 -e take_snapshot v -t 1.25 -e playing_forward v -t 1.3 -e take_snapshot r -t 1.3348 -s 1 -d 0 -p ack -e 40 -c 0 -i 5 -a 0 -x {1.0 0.0 2 ------- null} + -t 1.3348 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {0.0 1.0 3 ------- null} - -t 1.3348 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {0.0 1.0 3 ------- null} h -t 1.3348 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {0.0 1.0 -1 ------- null} v -t 1.3999999999999999 -e take_snapshot v -t 1.5 -e take_snapshot r -t 1.5748 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 6 -a 0 -x {0.0 1.0 3 ------- null} + -t 1.5748 -s 1 -d 0 -p ack -e 40 -c 0 -i 7 -a 0 -x {1.0 0.0 3 ------- null} - -t 1.5748 -s 1 -d 0 -p ack -e 40 -c 0 -i 7 -a 0 -x {1.0 0.0 3 ------- null} h -t 1.5748 -s 1 -d 0 -p ack -e 40 -c 0 -i 7 -a 0 -x {1.0 0.0 -1 ------- null} v -t 1.6000000000000001 -e take_snapshot v -t 1.7 -e take_snapshot r -t 1.7764 -s 1 -d 0 -p ack -e 40 -c 0 -i 7 -a 0 -x {1.0 0.0 3 ------- null} + -t 1.7764 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {0.0 1.0 4 ------- null} - -t 1.7764 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {0.0 1.0 4 ------- null} h -t 1.7764 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {0.0 1.0 -1 ------- null} v -t 1.8 -e take_snapshot v -t 1.8999999999999999 -e take_snapshot v -t 2 -e take_snapshot r -t 2.0164 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 8 -a 0 -x {0.0 1.0 4 ------- null} + -t 2.0164 -s 1 -d 0 -p ack -e 40 -c 0 -i 9 -a 0 -x {1.0 0.0 4 ------- null} - -t 2.0164 -s 1 -d 0 -p ack -e 40 -c 0 -i 9 -a 0 -x {1.0 0.0 4 ------- null} h -t 2.0164 -s 1 -d 0 -p ack -e 40 -c 0 -i 9 -a 0 -x {1.0 0.0 -1 ------- null} v -t 2.1000000000000001 -e take_snapshot v -t 2.2000000000000002 -e take_snapshot v -t 2.2000000000000002 -e playing_backward r -t 2.218 -s 1 -d 0 -p ack -e 40 -c 0 -i 9 -a 0 -x {1.0 0.0 4 ------- null} + -t 2.218 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 10 -a 0 -x {0.0 1.0 5 ------- null} - -t 2.218 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 10 -a 0 -x {0.0 1.0 5 ------- null} h -t 2.218 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 10 -a 0 -x {0.0 1.0 -1 ------- null} v -t 2.2999999999999998 -e take_snapshot v -t 2.3999999999999999 -e take_snapshot r -t 2.458 -s 0 -d 1 -p tcp -e 1000 -c 0 -i 10 -a 0 -x {0.0 1.0 5 ------- null} + -t 2.458 -s 1 -d 0 -p ack -e 40 -c 0 -i 11 -a 0 -x {1.0 0.0 5 ------- null} - -t 2.458 -s 1 -d 0 -p ack -e 40 -c 0 -i 11 -a 0 -x {1.0 0.0 5 ------- null} h -t 2.458 -s 1 -d 0 -p ack -e 40 -c 0 -i 11 -a 0 -x {1.0 0.0 -1 ------- null} v -t 2.4900000000000002 -e sim_annotation 2.4900000000000002 3 FTP stops v -t 2.5 -e take_snapshot v -t 2.5499999999999998 -e terminating_nam nam-1.15/tcl/test/test-ptp-2.nam0000664000076400007660000066413407226442175015300 0ustar tomhnsnamV -t * -v 1.0a5 -a 0 A -t * -n 1 -p 0 -o 0xffffffff -c 31 -a 1 A -t * -h 1 -m 2147483647 -s 0 c -t * -i 0 -n black c -t * -i 1 -n red n -t * -a 4 -s 4 -S UP -v circle -c black -i black n -t * -a 0 -s 0 -S UP -v circle -c black -i black n -t * -a 5 -s 5 -S UP -v circle -c black -i black n -t * -a 1 -s 1 -S UP -v circle -c black -i black n -t * -a 6 -s 6 -S UP -v circle -c black -i black n -t * -a 2 -s 2 -S UP -v circle -c black -i black n -t * -a 7 -s 7 -S UP -v circle -c black -i black n -t * -a 3 -s 3 -S UP -v circle -c black -i black l -t * -s 0 -d 3 -S UP -r 1000000 -D 0.050000000000000003 -c black -O right-down l -t * -s 1 -d 3 -S UP -r 500000 -D 0.050000000000000003 -c black -O right l -t * -s 2 -d 3 -S UP -r 500000 -D 0.050000000000000003 -c black -O right-up l -t * -s 3 -d 4 -S UP -r 500000 -D 0.10000000000000001 -c black -O right l -t * -s 4 -d 5 -S UP -r 1000000 -D 0.050000000000000003 -c black -O right-up l -t * -s 4 -d 6 -S UP -r 500000 -D 0.050000000000000003 -c black -O right l -t * -s 4 -d 7 -S UP -r 500000 -D 0.050000000000000003 -c black -O right-down q -t * -s 3 -d 4 -a 0.5 q -t * -s 4 -d 3 -a 0.5 n -t 0 -s 0 -S DLABEL -l "SLIDING" -L "" n -t 0 -s 5 -S DLABEL -l "SLIDING" -L "" n -t 0 -s 1 -S DLABEL -l "CBR-1" -L "" n -t 0 -s 2 -S DLABEL -l "CBR-2" -L "" n -t 0 -s 6 -S DLABEL -l "CBR-1" -L "" n -t 0 -s 7 -S DLABEL -l "CBR-2" -L "" v -t 0 -e take_snapshot + -t 0.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 0 -a 1 -x {1.0 6.0 0 ------- null} - -t 0.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 0 -a 1 -x {1.0 6.0 0 ------- null} h -t 0.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 0 -a 1 -x {1.0 6.0 -1 ------- null} v -t 0.050000000000000003 -e sim_annotation 0.050000000000000003 1 CBR-1 starts + -t 0.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 1 -a 1 -x {1.0 6.0 1 ------- null} - -t 0.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 1 -a 1 -x {1.0 6.0 1 ------- null} h -t 0.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 1 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 2 -a 1 -x {1.0 6.0 2 ------- null} - -t 0.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 2 -a 1 -x {1.0 6.0 2 ------- null} h -t 0.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 2 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 3 -a 1 -x {2.0 7.0 0 ------- null} - -t 0.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 3 -a 1 -x {2.0 7.0 0 ------- null} h -t 0.1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 3 -a 1 -x {2.0 7.0 -1 ------- null} v -t 0.10000000000000001 -e sim_annotation 0.10000000000000001 2 CBR-2 starts r -t 0.108 -s 1 -d 3 -p cbr -e 500 -c 1 -i 0 -a 1 -x {1.0 6.0 0 ------- null} + -t 0.108 -s 3 -d 4 -p cbr -e 500 -c 1 -i 0 -a 1 -x {1.0 6.0 0 ------- null} - -t 0.108 -s 3 -d 4 -p cbr -e 500 -c 1 -i 0 -a 1 -x {1.0 6.0 0 ------- null} h -t 0.108 -s 3 -d 4 -p cbr -e 500 -c 1 -i 0 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 4 -a 1 -x {1.0 6.0 3 ------- null} - -t 0.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 4 -a 1 -x {1.0 6.0 3 ------- null} h -t 0.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 4 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.128 -s 1 -d 3 -p cbr -e 500 -c 1 -i 1 -a 1 -x {1.0 6.0 1 ------- null} + -t 0.128 -s 3 -d 4 -p cbr -e 500 -c 1 -i 1 -a 1 -x {1.0 6.0 1 ------- null} - -t 0.128 -s 3 -d 4 -p cbr -e 500 -c 1 -i 1 -a 1 -x {1.0 6.0 1 ------- null} h -t 0.128 -s 3 -d 4 -p cbr -e 500 -c 1 -i 1 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.13 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 5 -a 1 -x {2.0 7.0 1 ------- null} - -t 0.13 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 5 -a 1 -x {2.0 7.0 1 ------- null} h -t 0.13 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 5 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 6 -a 1 -x {1.0 6.0 4 ------- null} - -t 0.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 6 -a 1 -x {1.0 6.0 4 ------- null} h -t 0.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 6 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.148 -s 1 -d 3 -p cbr -e 500 -c 1 -i 2 -a 1 -x {1.0 6.0 2 ------- null} + -t 0.148 -s 3 -d 4 -p cbr -e 500 -c 1 -i 2 -a 1 -x {1.0 6.0 2 ------- null} - -t 0.148 -s 3 -d 4 -p cbr -e 500 -c 1 -i 2 -a 1 -x {1.0 6.0 2 ------- null} h -t 0.148 -s 3 -d 4 -p cbr -e 500 -c 1 -i 2 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 7 -a 1 -x {1.0 6.0 5 ------- null} - -t 0.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 7 -a 1 -x {1.0 6.0 5 ------- null} h -t 0.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 7 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 8 -a 1 -x {2.0 7.0 2 ------- null} - -t 0.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 8 -a 1 -x {2.0 7.0 2 ------- null} h -t 0.16 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 8 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.166 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 3 -a 1 -x {2.0 7.0 0 ------- null} + -t 0.166 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 3 -a 1 -x {2.0 7.0 0 ------- null} - -t 0.166 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 3 -a 1 -x {2.0 7.0 0 ------- null} h -t 0.166 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 3 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.168 -s 1 -d 3 -p cbr -e 500 -c 1 -i 4 -a 1 -x {1.0 6.0 3 ------- null} + -t 0.168 -s 3 -d 4 -p cbr -e 500 -c 1 -i 4 -a 1 -x {1.0 6.0 3 ------- null} + -t 0.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 9 -a 1 -x {1.0 6.0 6 ------- null} - -t 0.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 9 -a 1 -x {1.0 6.0 6 ------- null} h -t 0.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 9 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.182 -s 3 -d 4 -p cbr -e 500 -c 1 -i 4 -a 1 -x {1.0 6.0 3 ------- null} h -t 0.182 -s 3 -d 4 -p cbr -e 500 -c 1 -i 4 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.188 -s 1 -d 3 -p cbr -e 500 -c 1 -i 6 -a 1 -x {1.0 6.0 4 ------- null} + -t 0.188 -s 3 -d 4 -p cbr -e 500 -c 1 -i 6 -a 1 -x {1.0 6.0 4 ------- null} + -t 0.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 10 -a 1 -x {1.0 6.0 7 ------- null} - -t 0.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 10 -a 1 -x {1.0 6.0 7 ------- null} h -t 0.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 10 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.19 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 11 -a 1 -x {2.0 7.0 3 ------- null} - -t 0.19 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 11 -a 1 -x {2.0 7.0 3 ------- null} h -t 0.19 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 11 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.19 -s 3 -d 4 -p cbr -e 500 -c 1 -i 6 -a 1 -x {1.0 6.0 4 ------- null} h -t 0.19 -s 3 -d 4 -p cbr -e 500 -c 1 -i 6 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.196 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 5 -a 1 -x {2.0 7.0 1 ------- null} + -t 0.196 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 5 -a 1 -x {2.0 7.0 1 ------- null} - -t 0.198 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 5 -a 1 -x {2.0 7.0 1 ------- null} h -t 0.198 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 5 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.208 -s 1 -d 3 -p cbr -e 500 -c 1 -i 7 -a 1 -x {1.0 6.0 5 ------- null} + -t 0.208 -s 3 -d 4 -p cbr -e 500 -c 1 -i 7 -a 1 -x {1.0 6.0 5 ------- null} + -t 0.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 12 -a 1 -x {1.0 6.0 8 ------- null} - -t 0.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 12 -a 1 -x {1.0 6.0 8 ------- null} h -t 0.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 12 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.214 -s 3 -d 4 -p cbr -e 500 -c 1 -i 7 -a 1 -x {1.0 6.0 5 ------- null} h -t 0.214 -s 3 -d 4 -p cbr -e 500 -c 1 -i 7 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.216 -s 3 -d 4 -p cbr -e 500 -c 1 -i 0 -a 1 -x {1.0 6.0 0 ------- null} + -t 0.216 -s 4 -d 6 -p cbr -e 500 -c 1 -i 0 -a 1 -x {1.0 6.0 0 ------- null} - -t 0.216 -s 4 -d 6 -p cbr -e 500 -c 1 -i 0 -a 1 -x {1.0 6.0 0 ------- null} h -t 0.216 -s 4 -d 6 -p cbr -e 500 -c 1 -i 0 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 13 -a 1 -x {2.0 7.0 4 ------- null} - -t 0.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 13 -a 1 -x {2.0 7.0 4 ------- null} h -t 0.22 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 13 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.226 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 8 -a 1 -x {2.0 7.0 2 ------- null} + -t 0.226 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 8 -a 1 -x {2.0 7.0 2 ------- null} - -t 0.226 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 8 -a 1 -x {2.0 7.0 2 ------- null} h -t 0.226 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 8 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.228 -s 1 -d 3 -p cbr -e 500 -c 1 -i 9 -a 1 -x {1.0 6.0 6 ------- null} + -t 0.228 -s 3 -d 4 -p cbr -e 500 -c 1 -i 9 -a 1 -x {1.0 6.0 6 ------- null} + -t 0.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 14 -a 1 -x {1.0 6.0 9 ------- null} - -t 0.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 14 -a 1 -x {1.0 6.0 9 ------- null} h -t 0.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 14 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.236 -s 3 -d 4 -p cbr -e 500 -c 1 -i 1 -a 1 -x {1.0 6.0 1 ------- null} + -t 0.236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 1 -a 1 -x {1.0 6.0 1 ------- null} - -t 0.236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 1 -a 1 -x {1.0 6.0 1 ------- null} h -t 0.236 -s 4 -d 6 -p cbr -e 500 -c 1 -i 1 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.242 -s 3 -d 4 -p cbr -e 500 -c 1 -i 9 -a 1 -x {1.0 6.0 6 ------- null} h -t 0.242 -s 3 -d 4 -p cbr -e 500 -c 1 -i 9 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.248 -s 1 -d 3 -p cbr -e 500 -c 1 -i 10 -a 1 -x {1.0 6.0 7 ------- null} + -t 0.248 -s 3 -d 4 -p cbr -e 500 -c 1 -i 10 -a 1 -x {1.0 6.0 7 ------- null} + -t 0.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 15 -a 1 -x {1.0 6.0 10 ------- null} - -t 0.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 15 -a 1 -x {1.0 6.0 10 ------- null} h -t 0.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 15 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.25 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 16 -a 1 -x {2.0 7.0 5 ------- null} - -t 0.25 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 16 -a 1 -x {2.0 7.0 5 ------- null} h -t 0.25 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 16 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.25 -s 3 -d 4 -p cbr -e 500 -c 1 -i 10 -a 1 -x {1.0 6.0 7 ------- null} h -t 0.25 -s 3 -d 4 -p cbr -e 500 -c 1 -i 10 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.256 -s 3 -d 4 -p cbr -e 500 -c 1 -i 2 -a 1 -x {1.0 6.0 2 ------- null} + -t 0.256 -s 4 -d 6 -p cbr -e 500 -c 1 -i 2 -a 1 -x {1.0 6.0 2 ------- null} - -t 0.256 -s 4 -d 6 -p cbr -e 500 -c 1 -i 2 -a 1 -x {1.0 6.0 2 ------- null} h -t 0.256 -s 4 -d 6 -p cbr -e 500 -c 1 -i 2 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.256 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 11 -a 1 -x {2.0 7.0 3 ------- null} + -t 0.256 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 11 -a 1 -x {2.0 7.0 3 ------- null} - -t 0.258 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 11 -a 1 -x {2.0 7.0 3 ------- null} h -t 0.258 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 11 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.268 -s 1 -d 3 -p cbr -e 500 -c 1 -i 12 -a 1 -x {1.0 6.0 8 ------- null} + -t 0.268 -s 3 -d 4 -p cbr -e 500 -c 1 -i 12 -a 1 -x {1.0 6.0 8 ------- null} + -t 0.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 17 -a 1 -x {1.0 6.0 11 ------- null} - -t 0.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 17 -a 1 -x {1.0 6.0 11 ------- null} h -t 0.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 17 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.274 -s 4 -d 6 -p cbr -e 500 -c 1 -i 0 -a 1 -x {1.0 6.0 0 ------- null} - -t 0.274 -s 3 -d 4 -p cbr -e 500 -c 1 -i 12 -a 1 -x {1.0 6.0 8 ------- null} h -t 0.274 -s 3 -d 4 -p cbr -e 500 -c 1 -i 12 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 18 -a 1 -x {2.0 7.0 6 ------- null} - -t 0.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 18 -a 1 -x {2.0 7.0 6 ------- null} h -t 0.28 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 18 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.282 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 3 -a 1 -x {2.0 7.0 0 ------- null} + -t 0.282 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 3 -a 1 -x {2.0 7.0 0 ------- null} - -t 0.282 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 3 -a 1 -x {2.0 7.0 0 ------- null} h -t 0.282 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 3 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.286 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 13 -a 1 -x {2.0 7.0 4 ------- null} + -t 0.286 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 13 -a 1 -x {2.0 7.0 4 ------- null} - -t 0.286 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 13 -a 1 -x {2.0 7.0 4 ------- null} h -t 0.286 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 13 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.288 -s 1 -d 3 -p cbr -e 500 -c 1 -i 14 -a 1 -x {1.0 6.0 9 ------- null} + -t 0.288 -s 3 -d 4 -p cbr -e 500 -c 1 -i 14 -a 1 -x {1.0 6.0 9 ------- null} + -t 0.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 19 -a 1 -x {1.0 6.0 12 ------- null} - -t 0.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 19 -a 1 -x {1.0 6.0 12 ------- null} h -t 0.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 19 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.29 -s 3 -d 4 -p cbr -e 500 -c 1 -i 4 -a 1 -x {1.0 6.0 3 ------- null} + -t 0.29 -s 4 -d 6 -p cbr -e 500 -c 1 -i 4 -a 1 -x {1.0 6.0 3 ------- null} - -t 0.29 -s 4 -d 6 -p cbr -e 500 -c 1 -i 4 -a 1 -x {1.0 6.0 3 ------- null} h -t 0.29 -s 4 -d 6 -p cbr -e 500 -c 1 -i 4 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.294 -s 4 -d 6 -p cbr -e 500 -c 1 -i 1 -a 1 -x {1.0 6.0 1 ------- null} r -t 0.298 -s 3 -d 4 -p cbr -e 500 -c 1 -i 6 -a 1 -x {1.0 6.0 4 ------- null} + -t 0.298 -s 4 -d 6 -p cbr -e 500 -c 1 -i 6 -a 1 -x {1.0 6.0 4 ------- null} - -t 0.298 -s 4 -d 6 -p cbr -e 500 -c 1 -i 6 -a 1 -x {1.0 6.0 4 ------- null} h -t 0.298 -s 4 -d 6 -p cbr -e 500 -c 1 -i 6 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.302 -s 3 -d 4 -p cbr -e 500 -c 1 -i 14 -a 1 -x {1.0 6.0 9 ------- null} h -t 0.302 -s 3 -d 4 -p cbr -e 500 -c 1 -i 14 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.308 -s 1 -d 3 -p cbr -e 500 -c 1 -i 15 -a 1 -x {1.0 6.0 10 ------- null} + -t 0.308 -s 3 -d 4 -p cbr -e 500 -c 1 -i 15 -a 1 -x {1.0 6.0 10 ------- null} + -t 0.31 -s 1 -d 3 -p cbr -e 500 -c 1 -i 20 -a 1 -x {1.0 6.0 13 ------- null} - -t 0.31 -s 1 -d 3 -p cbr -e 500 -c 1 -i 20 -a 1 -x {1.0 6.0 13 ------- null} h -t 0.31 -s 1 -d 3 -p cbr -e 500 -c 1 -i 20 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.31 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 21 -a 1 -x {2.0 7.0 7 ------- null} - -t 0.31 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 21 -a 1 -x {2.0 7.0 7 ------- null} h -t 0.31 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 21 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.31 -s 3 -d 4 -p cbr -e 500 -c 1 -i 15 -a 1 -x {1.0 6.0 10 ------- null} h -t 0.31 -s 3 -d 4 -p cbr -e 500 -c 1 -i 15 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.314 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 5 -a 1 -x {2.0 7.0 1 ------- null} + -t 0.314 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 5 -a 1 -x {2.0 7.0 1 ------- null} - -t 0.314 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 5 -a 1 -x {2.0 7.0 1 ------- null} h -t 0.314 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 5 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.314 -s 4 -d 6 -p cbr -e 500 -c 1 -i 2 -a 1 -x {1.0 6.0 2 ------- null} r -t 0.316 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 16 -a 1 -x {2.0 7.0 5 ------- null} + -t 0.316 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 16 -a 1 -x {2.0 7.0 5 ------- null} - -t 0.318 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 16 -a 1 -x {2.0 7.0 5 ------- null} h -t 0.318 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 16 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.322 -s 3 -d 4 -p cbr -e 500 -c 1 -i 7 -a 1 -x {1.0 6.0 5 ------- null} + -t 0.322 -s 4 -d 6 -p cbr -e 500 -c 1 -i 7 -a 1 -x {1.0 6.0 5 ------- null} - -t 0.322 -s 4 -d 6 -p cbr -e 500 -c 1 -i 7 -a 1 -x {1.0 6.0 5 ------- null} h -t 0.322 -s 4 -d 6 -p cbr -e 500 -c 1 -i 7 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.328 -s 1 -d 3 -p cbr -e 500 -c 1 -i 17 -a 1 -x {1.0 6.0 11 ------- null} + -t 0.328 -s 3 -d 4 -p cbr -e 500 -c 1 -i 17 -a 1 -x {1.0 6.0 11 ------- null} + -t 0.33 -s 1 -d 3 -p cbr -e 500 -c 1 -i 22 -a 1 -x {1.0 6.0 14 ------- null} - -t 0.33 -s 1 -d 3 -p cbr -e 500 -c 1 -i 22 -a 1 -x {1.0 6.0 14 ------- null} h -t 0.33 -s 1 -d 3 -p cbr -e 500 -c 1 -i 22 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.334 -s 3 -d 4 -p cbr -e 500 -c 1 -i 17 -a 1 -x {1.0 6.0 11 ------- null} h -t 0.334 -s 3 -d 4 -p cbr -e 500 -c 1 -i 17 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 23 -a 1 -x {2.0 7.0 8 ------- null} - -t 0.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 23 -a 1 -x {2.0 7.0 8 ------- null} h -t 0.34 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 23 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.342 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 8 -a 1 -x {2.0 7.0 2 ------- null} + -t 0.342 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 8 -a 1 -x {2.0 7.0 2 ------- null} - -t 0.342 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 8 -a 1 -x {2.0 7.0 2 ------- null} h -t 0.342 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 8 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.346 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 18 -a 1 -x {2.0 7.0 6 ------- null} + -t 0.346 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 18 -a 1 -x {2.0 7.0 6 ------- null} - -t 0.346 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 18 -a 1 -x {2.0 7.0 6 ------- null} h -t 0.346 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 18 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.348 -s 1 -d 3 -p cbr -e 500 -c 1 -i 19 -a 1 -x {1.0 6.0 12 ------- null} + -t 0.348 -s 3 -d 4 -p cbr -e 500 -c 1 -i 19 -a 1 -x {1.0 6.0 12 ------- null} r -t 0.348 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 3 -a 1 -x {2.0 7.0 0 ------- null} r -t 0.348 -s 4 -d 6 -p cbr -e 500 -c 1 -i 4 -a 1 -x {1.0 6.0 3 ------- null} r -t 0.35 -s 3 -d 4 -p cbr -e 500 -c 1 -i 9 -a 1 -x {1.0 6.0 6 ------- null} + -t 0.35 -s 4 -d 6 -p cbr -e 500 -c 1 -i 9 -a 1 -x {1.0 6.0 6 ------- null} - -t 0.35 -s 4 -d 6 -p cbr -e 500 -c 1 -i 9 -a 1 -x {1.0 6.0 6 ------- null} h -t 0.35 -s 4 -d 6 -p cbr -e 500 -c 1 -i 9 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.35 -s 1 -d 3 -p cbr -e 500 -c 1 -i 24 -a 1 -x {1.0 6.0 15 ------- null} - -t 0.35 -s 1 -d 3 -p cbr -e 500 -c 1 -i 24 -a 1 -x {1.0 6.0 15 ------- null} h -t 0.35 -s 1 -d 3 -p cbr -e 500 -c 1 -i 24 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.356 -s 4 -d 6 -p cbr -e 500 -c 1 -i 6 -a 1 -x {1.0 6.0 4 ------- null} r -t 0.358 -s 3 -d 4 -p cbr -e 500 -c 1 -i 10 -a 1 -x {1.0 6.0 7 ------- null} + -t 0.358 -s 4 -d 6 -p cbr -e 500 -c 1 -i 10 -a 1 -x {1.0 6.0 7 ------- null} - -t 0.358 -s 4 -d 6 -p cbr -e 500 -c 1 -i 10 -a 1 -x {1.0 6.0 7 ------- null} h -t 0.358 -s 4 -d 6 -p cbr -e 500 -c 1 -i 10 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.362 -s 3 -d 4 -p cbr -e 500 -c 1 -i 19 -a 1 -x {1.0 6.0 12 ------- null} h -t 0.362 -s 3 -d 4 -p cbr -e 500 -c 1 -i 19 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.368 -s 1 -d 3 -p cbr -e 500 -c 1 -i 20 -a 1 -x {1.0 6.0 13 ------- null} + -t 0.368 -s 3 -d 4 -p cbr -e 500 -c 1 -i 20 -a 1 -x {1.0 6.0 13 ------- null} + -t 0.37 -s 1 -d 3 -p cbr -e 500 -c 1 -i 25 -a 1 -x {1.0 6.0 16 ------- null} - -t 0.37 -s 1 -d 3 -p cbr -e 500 -c 1 -i 25 -a 1 -x {1.0 6.0 16 ------- null} h -t 0.37 -s 1 -d 3 -p cbr -e 500 -c 1 -i 25 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.37 -s 3 -d 4 -p cbr -e 500 -c 1 -i 20 -a 1 -x {1.0 6.0 13 ------- null} h -t 0.37 -s 3 -d 4 -p cbr -e 500 -c 1 -i 20 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.37 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 26 -a 1 -x {2.0 7.0 9 ------- null} - -t 0.37 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 26 -a 1 -x {2.0 7.0 9 ------- null} h -t 0.37 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 26 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.374 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 11 -a 1 -x {2.0 7.0 3 ------- null} + -t 0.374 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 11 -a 1 -x {2.0 7.0 3 ------- null} - -t 0.374 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 11 -a 1 -x {2.0 7.0 3 ------- null} h -t 0.374 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 11 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.376 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 21 -a 1 -x {2.0 7.0 7 ------- null} + -t 0.376 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 21 -a 1 -x {2.0 7.0 7 ------- null} - -t 0.378 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 21 -a 1 -x {2.0 7.0 7 ------- null} h -t 0.378 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 21 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.38 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 5 -a 1 -x {2.0 7.0 1 ------- null} r -t 0.38 -s 4 -d 6 -p cbr -e 500 -c 1 -i 7 -a 1 -x {1.0 6.0 5 ------- null} r -t 0.382 -s 3 -d 4 -p cbr -e 500 -c 1 -i 12 -a 1 -x {1.0 6.0 8 ------- null} + -t 0.382 -s 4 -d 6 -p cbr -e 500 -c 1 -i 12 -a 1 -x {1.0 6.0 8 ------- null} - -t 0.382 -s 4 -d 6 -p cbr -e 500 -c 1 -i 12 -a 1 -x {1.0 6.0 8 ------- null} h -t 0.382 -s 4 -d 6 -p cbr -e 500 -c 1 -i 12 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.388 -s 1 -d 3 -p cbr -e 500 -c 1 -i 22 -a 1 -x {1.0 6.0 14 ------- null} + -t 0.388 -s 3 -d 4 -p cbr -e 500 -c 1 -i 22 -a 1 -x {1.0 6.0 14 ------- null} + -t 0.39 -s 1 -d 3 -p cbr -e 500 -c 1 -i 27 -a 1 -x {1.0 6.0 17 ------- null} - -t 0.39 -s 1 -d 3 -p cbr -e 500 -c 1 -i 27 -a 1 -x {1.0 6.0 17 ------- null} h -t 0.39 -s 1 -d 3 -p cbr -e 500 -c 1 -i 27 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.394 -s 3 -d 4 -p cbr -e 500 -c 1 -i 22 -a 1 -x {1.0 6.0 14 ------- null} h -t 0.394 -s 3 -d 4 -p cbr -e 500 -c 1 -i 22 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 28 -a 1 -x {2.0 7.0 10 ------- null} - -t 0.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 28 -a 1 -x {2.0 7.0 10 ------- null} h -t 0.4 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 28 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.402 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 13 -a 1 -x {2.0 7.0 4 ------- null} + -t 0.402 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 13 -a 1 -x {2.0 7.0 4 ------- null} - -t 0.402 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 13 -a 1 -x {2.0 7.0 4 ------- null} h -t 0.402 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 13 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.406 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 23 -a 1 -x {2.0 7.0 8 ------- null} + -t 0.406 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 23 -a 1 -x {2.0 7.0 8 ------- null} - -t 0.406 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 23 -a 1 -x {2.0 7.0 8 ------- null} h -t 0.406 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 23 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.408 -s 4 -d 6 -p cbr -e 500 -c 1 -i 9 -a 1 -x {1.0 6.0 6 ------- null} r -t 0.408 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 8 -a 1 -x {2.0 7.0 2 ------- null} r -t 0.408 -s 1 -d 3 -p cbr -e 500 -c 1 -i 24 -a 1 -x {1.0 6.0 15 ------- null} + -t 0.408 -s 3 -d 4 -p cbr -e 500 -c 1 -i 24 -a 1 -x {1.0 6.0 15 ------- null} r -t 0.41 -s 3 -d 4 -p cbr -e 500 -c 1 -i 14 -a 1 -x {1.0 6.0 9 ------- null} + -t 0.41 -s 4 -d 6 -p cbr -e 500 -c 1 -i 14 -a 1 -x {1.0 6.0 9 ------- null} - -t 0.41 -s 4 -d 6 -p cbr -e 500 -c 1 -i 14 -a 1 -x {1.0 6.0 9 ------- null} h -t 0.41 -s 4 -d 6 -p cbr -e 500 -c 1 -i 14 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.41 -s 1 -d 3 -p cbr -e 500 -c 1 -i 29 -a 1 -x {1.0 6.0 18 ------- null} - -t 0.41 -s 1 -d 3 -p cbr -e 500 -c 1 -i 29 -a 1 -x {1.0 6.0 18 ------- null} h -t 0.41 -s 1 -d 3 -p cbr -e 500 -c 1 -i 29 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.416 -s 4 -d 6 -p cbr -e 500 -c 1 -i 10 -a 1 -x {1.0 6.0 7 ------- null} r -t 0.418 -s 3 -d 4 -p cbr -e 500 -c 1 -i 15 -a 1 -x {1.0 6.0 10 ------- null} + -t 0.418 -s 4 -d 6 -p cbr -e 500 -c 1 -i 15 -a 1 -x {1.0 6.0 10 ------- null} - -t 0.418 -s 4 -d 6 -p cbr -e 500 -c 1 -i 15 -a 1 -x {1.0 6.0 10 ------- null} h -t 0.418 -s 4 -d 6 -p cbr -e 500 -c 1 -i 15 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.422 -s 3 -d 4 -p cbr -e 500 -c 1 -i 24 -a 1 -x {1.0 6.0 15 ------- null} h -t 0.422 -s 3 -d 4 -p cbr -e 500 -c 1 -i 24 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.428 -s 1 -d 3 -p cbr -e 500 -c 1 -i 25 -a 1 -x {1.0 6.0 16 ------- null} + -t 0.428 -s 3 -d 4 -p cbr -e 500 -c 1 -i 25 -a 1 -x {1.0 6.0 16 ------- null} + -t 0.43 -s 1 -d 3 -p cbr -e 500 -c 1 -i 30 -a 1 -x {1.0 6.0 19 ------- null} - -t 0.43 -s 1 -d 3 -p cbr -e 500 -c 1 -i 30 -a 1 -x {1.0 6.0 19 ------- null} h -t 0.43 -s 1 -d 3 -p cbr -e 500 -c 1 -i 30 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.43 -s 3 -d 4 -p cbr -e 500 -c 1 -i 25 -a 1 -x {1.0 6.0 16 ------- null} h -t 0.43 -s 3 -d 4 -p cbr -e 500 -c 1 -i 25 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.43 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 31 -a 1 -x {2.0 7.0 11 ------- null} - -t 0.43 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 31 -a 1 -x {2.0 7.0 11 ------- null} h -t 0.43 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 31 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.434 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 16 -a 1 -x {2.0 7.0 5 ------- null} + -t 0.434 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 16 -a 1 -x {2.0 7.0 5 ------- null} - -t 0.434 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 16 -a 1 -x {2.0 7.0 5 ------- null} h -t 0.434 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 16 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.436 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 26 -a 1 -x {2.0 7.0 9 ------- null} + -t 0.436 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 26 -a 1 -x {2.0 7.0 9 ------- null} - -t 0.438 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 26 -a 1 -x {2.0 7.0 9 ------- null} h -t 0.438 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 26 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.44 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 11 -a 1 -x {2.0 7.0 3 ------- null} r -t 0.44 -s 4 -d 6 -p cbr -e 500 -c 1 -i 12 -a 1 -x {1.0 6.0 8 ------- null} r -t 0.442 -s 3 -d 4 -p cbr -e 500 -c 1 -i 17 -a 1 -x {1.0 6.0 11 ------- null} + -t 0.442 -s 4 -d 6 -p cbr -e 500 -c 1 -i 17 -a 1 -x {1.0 6.0 11 ------- null} - -t 0.442 -s 4 -d 6 -p cbr -e 500 -c 1 -i 17 -a 1 -x {1.0 6.0 11 ------- null} h -t 0.442 -s 4 -d 6 -p cbr -e 500 -c 1 -i 17 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.448 -s 1 -d 3 -p cbr -e 500 -c 1 -i 27 -a 1 -x {1.0 6.0 17 ------- null} + -t 0.448 -s 3 -d 4 -p cbr -e 500 -c 1 -i 27 -a 1 -x {1.0 6.0 17 ------- null} + -t 0.45 -s 1 -d 3 -p cbr -e 500 -c 1 -i 32 -a 1 -x {1.0 6.0 20 ------- null} - -t 0.45 -s 1 -d 3 -p cbr -e 500 -c 1 -i 32 -a 1 -x {1.0 6.0 20 ------- null} h -t 0.45 -s 1 -d 3 -p cbr -e 500 -c 1 -i 32 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.454 -s 3 -d 4 -p cbr -e 500 -c 1 -i 27 -a 1 -x {1.0 6.0 17 ------- null} h -t 0.454 -s 3 -d 4 -p cbr -e 500 -c 1 -i 27 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 33 -a 1 -x {2.0 7.0 12 ------- null} - -t 0.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 33 -a 1 -x {2.0 7.0 12 ------- null} h -t 0.46 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 33 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.462 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 18 -a 1 -x {2.0 7.0 6 ------- null} + -t 0.462 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 18 -a 1 -x {2.0 7.0 6 ------- null} - -t 0.462 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 18 -a 1 -x {2.0 7.0 6 ------- null} h -t 0.462 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 18 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.466 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 28 -a 1 -x {2.0 7.0 10 ------- null} + -t 0.466 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 28 -a 1 -x {2.0 7.0 10 ------- null} - -t 0.466 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 28 -a 1 -x {2.0 7.0 10 ------- null} h -t 0.466 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 28 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.468 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 13 -a 1 -x {2.0 7.0 4 ------- null} r -t 0.468 -s 4 -d 6 -p cbr -e 500 -c 1 -i 14 -a 1 -x {1.0 6.0 9 ------- null} r -t 0.468 -s 1 -d 3 -p cbr -e 500 -c 1 -i 29 -a 1 -x {1.0 6.0 18 ------- null} + -t 0.468 -s 3 -d 4 -p cbr -e 500 -c 1 -i 29 -a 1 -x {1.0 6.0 18 ------- null} r -t 0.47 -s 3 -d 4 -p cbr -e 500 -c 1 -i 19 -a 1 -x {1.0 6.0 12 ------- null} + -t 0.47 -s 4 -d 6 -p cbr -e 500 -c 1 -i 19 -a 1 -x {1.0 6.0 12 ------- null} - -t 0.47 -s 4 -d 6 -p cbr -e 500 -c 1 -i 19 -a 1 -x {1.0 6.0 12 ------- null} h -t 0.47 -s 4 -d 6 -p cbr -e 500 -c 1 -i 19 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.47 -s 1 -d 3 -p cbr -e 500 -c 1 -i 34 -a 1 -x {1.0 6.0 21 ------- null} - -t 0.47 -s 1 -d 3 -p cbr -e 500 -c 1 -i 34 -a 1 -x {1.0 6.0 21 ------- null} h -t 0.47 -s 1 -d 3 -p cbr -e 500 -c 1 -i 34 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 15 -a 1 -x {1.0 6.0 10 ------- null} r -t 0.478 -s 3 -d 4 -p cbr -e 500 -c 1 -i 20 -a 1 -x {1.0 6.0 13 ------- null} + -t 0.478 -s 4 -d 6 -p cbr -e 500 -c 1 -i 20 -a 1 -x {1.0 6.0 13 ------- null} - -t 0.478 -s 4 -d 6 -p cbr -e 500 -c 1 -i 20 -a 1 -x {1.0 6.0 13 ------- null} h -t 0.478 -s 4 -d 6 -p cbr -e 500 -c 1 -i 20 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.482 -s 3 -d 4 -p cbr -e 500 -c 1 -i 29 -a 1 -x {1.0 6.0 18 ------- null} h -t 0.482 -s 3 -d 4 -p cbr -e 500 -c 1 -i 29 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.488 -s 1 -d 3 -p cbr -e 500 -c 1 -i 30 -a 1 -x {1.0 6.0 19 ------- null} + -t 0.488 -s 3 -d 4 -p cbr -e 500 -c 1 -i 30 -a 1 -x {1.0 6.0 19 ------- null} + -t 0.49 -s 1 -d 3 -p cbr -e 500 -c 1 -i 35 -a 1 -x {1.0 6.0 22 ------- null} - -t 0.49 -s 1 -d 3 -p cbr -e 500 -c 1 -i 35 -a 1 -x {1.0 6.0 22 ------- null} h -t 0.49 -s 1 -d 3 -p cbr -e 500 -c 1 -i 35 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.49 -s 3 -d 4 -p cbr -e 500 -c 1 -i 30 -a 1 -x {1.0 6.0 19 ------- null} h -t 0.49 -s 3 -d 4 -p cbr -e 500 -c 1 -i 30 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.49 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 36 -a 1 -x {2.0 7.0 13 ------- null} - -t 0.49 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 36 -a 1 -x {2.0 7.0 13 ------- null} h -t 0.49 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 36 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.494 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 21 -a 1 -x {2.0 7.0 7 ------- null} + -t 0.494 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 21 -a 1 -x {2.0 7.0 7 ------- null} - -t 0.494 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 21 -a 1 -x {2.0 7.0 7 ------- null} h -t 0.494 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 21 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.496 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 31 -a 1 -x {2.0 7.0 11 ------- null} + -t 0.496 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 31 -a 1 -x {2.0 7.0 11 ------- null} - -t 0.498 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 31 -a 1 -x {2.0 7.0 11 ------- null} h -t 0.498 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 31 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {0.0 5.0 0 ------- null} - -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {0.0 5.0 0 ------- null} h -t 0.5 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {0.0 5.0 -1 ------- null} v -t 0.5 -e take_snapshot v -t 0.5 -e sim_annotation 0.5 3 FTP starts r -t 0.5 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 16 -a 1 -x {2.0 7.0 5 ------- null} r -t 0.5 -s 4 -d 6 -p cbr -e 500 -c 1 -i 17 -a 1 -x {1.0 6.0 11 ------- null} r -t 0.502 -s 3 -d 4 -p cbr -e 500 -c 1 -i 22 -a 1 -x {1.0 6.0 14 ------- null} + -t 0.502 -s 4 -d 6 -p cbr -e 500 -c 1 -i 22 -a 1 -x {1.0 6.0 14 ------- null} - -t 0.502 -s 4 -d 6 -p cbr -e 500 -c 1 -i 22 -a 1 -x {1.0 6.0 14 ------- null} h -t 0.502 -s 4 -d 6 -p cbr -e 500 -c 1 -i 22 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.508 -s 1 -d 3 -p cbr -e 500 -c 1 -i 32 -a 1 -x {1.0 6.0 20 ------- null} + -t 0.508 -s 3 -d 4 -p cbr -e 500 -c 1 -i 32 -a 1 -x {1.0 6.0 20 ------- null} + -t 0.51 -s 1 -d 3 -p cbr -e 500 -c 1 -i 38 -a 1 -x {1.0 6.0 23 ------- null} - -t 0.51 -s 1 -d 3 -p cbr -e 500 -c 1 -i 38 -a 1 -x {1.0 6.0 23 ------- null} h -t 0.51 -s 1 -d 3 -p cbr -e 500 -c 1 -i 38 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.514 -s 3 -d 4 -p cbr -e 500 -c 1 -i 32 -a 1 -x {1.0 6.0 20 ------- null} h -t 0.514 -s 3 -d 4 -p cbr -e 500 -c 1 -i 32 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.52 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 39 -a 1 -x {2.0 7.0 14 ------- null} - -t 0.52 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 39 -a 1 -x {2.0 7.0 14 ------- null} h -t 0.52 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 39 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.522 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 23 -a 1 -x {2.0 7.0 8 ------- null} + -t 0.522 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 23 -a 1 -x {2.0 7.0 8 ------- null} - -t 0.522 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 23 -a 1 -x {2.0 7.0 8 ------- null} h -t 0.522 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 23 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.526 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 33 -a 1 -x {2.0 7.0 12 ------- null} + -t 0.526 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 33 -a 1 -x {2.0 7.0 12 ------- null} - -t 0.526 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 33 -a 1 -x {2.0 7.0 12 ------- null} h -t 0.526 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 33 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.528 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 18 -a 1 -x {2.0 7.0 6 ------- null} r -t 0.528 -s 4 -d 6 -p cbr -e 500 -c 1 -i 19 -a 1 -x {1.0 6.0 12 ------- null} r -t 0.528 -s 1 -d 3 -p cbr -e 500 -c 1 -i 34 -a 1 -x {1.0 6.0 21 ------- null} + -t 0.528 -s 3 -d 4 -p cbr -e 500 -c 1 -i 34 -a 1 -x {1.0 6.0 21 ------- null} r -t 0.53 -s 3 -d 4 -p cbr -e 500 -c 1 -i 24 -a 1 -x {1.0 6.0 15 ------- null} + -t 0.53 -s 4 -d 6 -p cbr -e 500 -c 1 -i 24 -a 1 -x {1.0 6.0 15 ------- null} - -t 0.53 -s 4 -d 6 -p cbr -e 500 -c 1 -i 24 -a 1 -x {1.0 6.0 15 ------- null} h -t 0.53 -s 4 -d 6 -p cbr -e 500 -c 1 -i 24 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.53 -s 1 -d 3 -p cbr -e 500 -c 1 -i 40 -a 1 -x {1.0 6.0 24 ------- null} - -t 0.53 -s 1 -d 3 -p cbr -e 500 -c 1 -i 40 -a 1 -x {1.0 6.0 24 ------- null} h -t 0.53 -s 1 -d 3 -p cbr -e 500 -c 1 -i 40 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.536 -s 4 -d 6 -p cbr -e 500 -c 1 -i 20 -a 1 -x {1.0 6.0 13 ------- null} r -t 0.538 -s 3 -d 4 -p cbr -e 500 -c 1 -i 25 -a 1 -x {1.0 6.0 16 ------- null} + -t 0.538 -s 4 -d 6 -p cbr -e 500 -c 1 -i 25 -a 1 -x {1.0 6.0 16 ------- null} - -t 0.538 -s 4 -d 6 -p cbr -e 500 -c 1 -i 25 -a 1 -x {1.0 6.0 16 ------- null} h -t 0.538 -s 4 -d 6 -p cbr -e 500 -c 1 -i 25 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.542 -s 3 -d 4 -p cbr -e 500 -c 1 -i 34 -a 1 -x {1.0 6.0 21 ------- null} h -t 0.542 -s 3 -d 4 -p cbr -e 500 -c 1 -i 34 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.548 -s 1 -d 3 -p cbr -e 500 -c 1 -i 35 -a 1 -x {1.0 6.0 22 ------- null} + -t 0.548 -s 3 -d 4 -p cbr -e 500 -c 1 -i 35 -a 1 -x {1.0 6.0 22 ------- null} + -t 0.55 -s 1 -d 3 -p cbr -e 500 -c 1 -i 41 -a 1 -x {1.0 6.0 25 ------- null} - -t 0.55 -s 1 -d 3 -p cbr -e 500 -c 1 -i 41 -a 1 -x {1.0 6.0 25 ------- null} h -t 0.55 -s 1 -d 3 -p cbr -e 500 -c 1 -i 41 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.55 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 42 -a 1 -x {2.0 7.0 15 ------- null} - -t 0.55 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 42 -a 1 -x {2.0 7.0 15 ------- null} h -t 0.55 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 42 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.55 -s 3 -d 4 -p cbr -e 500 -c 1 -i 35 -a 1 -x {1.0 6.0 22 ------- null} h -t 0.55 -s 3 -d 4 -p cbr -e 500 -c 1 -i 35 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.554 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 26 -a 1 -x {2.0 7.0 9 ------- null} + -t 0.554 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 26 -a 1 -x {2.0 7.0 9 ------- null} - -t 0.554 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 26 -a 1 -x {2.0 7.0 9 ------- null} h -t 0.554 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 26 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.556 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 36 -a 1 -x {2.0 7.0 13 ------- null} + -t 0.556 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 36 -a 1 -x {2.0 7.0 13 ------- null} r -t 0.558 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {0.0 5.0 0 ------- null} + -t 0.558 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {0.0 5.0 0 ------- null} - -t 0.558 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 36 -a 1 -x {2.0 7.0 13 ------- null} h -t 0.558 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 36 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.56 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 21 -a 1 -x {2.0 7.0 7 ------- null} r -t 0.56 -s 4 -d 6 -p cbr -e 500 -c 1 -i 22 -a 1 -x {1.0 6.0 14 ------- null} r -t 0.562 -s 3 -d 4 -p cbr -e 500 -c 1 -i 27 -a 1 -x {1.0 6.0 17 ------- null} + -t 0.562 -s 4 -d 6 -p cbr -e 500 -c 1 -i 27 -a 1 -x {1.0 6.0 17 ------- null} - -t 0.562 -s 4 -d 6 -p cbr -e 500 -c 1 -i 27 -a 1 -x {1.0 6.0 17 ------- null} h -t 0.562 -s 4 -d 6 -p cbr -e 500 -c 1 -i 27 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.568 -s 1 -d 3 -p cbr -e 500 -c 1 -i 38 -a 1 -x {1.0 6.0 23 ------- null} + -t 0.568 -s 3 -d 4 -p cbr -e 500 -c 1 -i 38 -a 1 -x {1.0 6.0 23 ------- null} + -t 0.57 -s 1 -d 3 -p cbr -e 500 -c 1 -i 43 -a 1 -x {1.0 6.0 26 ------- null} - -t 0.57 -s 1 -d 3 -p cbr -e 500 -c 1 -i 43 -a 1 -x {1.0 6.0 26 ------- null} h -t 0.57 -s 1 -d 3 -p cbr -e 500 -c 1 -i 43 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.574 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {0.0 5.0 0 ------- null} h -t 0.574 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {0.0 5.0 -1 ------- null} + -t 0.58 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 44 -a 1 -x {2.0 7.0 16 ------- null} - -t 0.58 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 44 -a 1 -x {2.0 7.0 16 ------- null} h -t 0.58 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 44 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.582 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 28 -a 1 -x {2.0 7.0 10 ------- null} + -t 0.582 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 28 -a 1 -x {2.0 7.0 10 ------- null} - -t 0.582 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 28 -a 1 -x {2.0 7.0 10 ------- null} h -t 0.582 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 28 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.586 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 39 -a 1 -x {2.0 7.0 14 ------- null} + -t 0.586 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 39 -a 1 -x {2.0 7.0 14 ------- null} r -t 0.588 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 23 -a 1 -x {2.0 7.0 8 ------- null} r -t 0.588 -s 4 -d 6 -p cbr -e 500 -c 1 -i 24 -a 1 -x {1.0 6.0 15 ------- null} r -t 0.588 -s 1 -d 3 -p cbr -e 500 -c 1 -i 40 -a 1 -x {1.0 6.0 24 ------- null} + -t 0.588 -s 3 -d 4 -p cbr -e 500 -c 1 -i 40 -a 1 -x {1.0 6.0 24 ------- null} r -t 0.59 -s 3 -d 4 -p cbr -e 500 -c 1 -i 29 -a 1 -x {1.0 6.0 18 ------- null} + -t 0.59 -s 4 -d 6 -p cbr -e 500 -c 1 -i 29 -a 1 -x {1.0 6.0 18 ------- null} - -t 0.59 -s 4 -d 6 -p cbr -e 500 -c 1 -i 29 -a 1 -x {1.0 6.0 18 ------- null} h -t 0.59 -s 4 -d 6 -p cbr -e 500 -c 1 -i 29 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.59 -s 1 -d 3 -p cbr -e 500 -c 1 -i 45 -a 1 -x {1.0 6.0 27 ------- null} - -t 0.59 -s 1 -d 3 -p cbr -e 500 -c 1 -i 45 -a 1 -x {1.0 6.0 27 ------- null} h -t 0.59 -s 1 -d 3 -p cbr -e 500 -c 1 -i 45 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.59 -s 3 -d 4 -p cbr -e 500 -c 1 -i 38 -a 1 -x {1.0 6.0 23 ------- null} h -t 0.59 -s 3 -d 4 -p cbr -e 500 -c 1 -i 38 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.596 -s 4 -d 6 -p cbr -e 500 -c 1 -i 25 -a 1 -x {1.0 6.0 16 ------- null} r -t 0.598 -s 3 -d 4 -p cbr -e 500 -c 1 -i 30 -a 1 -x {1.0 6.0 19 ------- null} + -t 0.598 -s 4 -d 6 -p cbr -e 500 -c 1 -i 30 -a 1 -x {1.0 6.0 19 ------- null} - -t 0.598 -s 4 -d 6 -p cbr -e 500 -c 1 -i 30 -a 1 -x {1.0 6.0 19 ------- null} h -t 0.598 -s 4 -d 6 -p cbr -e 500 -c 1 -i 30 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.598 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 39 -a 1 -x {2.0 7.0 14 ------- null} h -t 0.598 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 39 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.608 -s 1 -d 3 -p cbr -e 500 -c 1 -i 41 -a 1 -x {1.0 6.0 25 ------- null} + -t 0.608 -s 3 -d 4 -p cbr -e 500 -c 1 -i 41 -a 1 -x {1.0 6.0 25 ------- null} + -t 0.61 -s 1 -d 3 -p cbr -e 500 -c 1 -i 46 -a 1 -x {1.0 6.0 28 ------- null} - -t 0.61 -s 1 -d 3 -p cbr -e 500 -c 1 -i 46 -a 1 -x {1.0 6.0 28 ------- null} h -t 0.61 -s 1 -d 3 -p cbr -e 500 -c 1 -i 46 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.61 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 47 -a 1 -x {2.0 7.0 17 ------- null} - -t 0.61 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 47 -a 1 -x {2.0 7.0 17 ------- null} h -t 0.61 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 47 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.614 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 31 -a 1 -x {2.0 7.0 11 ------- null} + -t 0.614 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 31 -a 1 -x {2.0 7.0 11 ------- null} - -t 0.614 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 31 -a 1 -x {2.0 7.0 11 ------- null} h -t 0.614 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 31 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.614 -s 3 -d 4 -p cbr -e 500 -c 1 -i 40 -a 1 -x {1.0 6.0 24 ------- null} h -t 0.614 -s 3 -d 4 -p cbr -e 500 -c 1 -i 40 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.616 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 42 -a 1 -x {2.0 7.0 15 ------- null} + -t 0.616 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 42 -a 1 -x {2.0 7.0 15 ------- null} r -t 0.62 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 26 -a 1 -x {2.0 7.0 9 ------- null} r -t 0.62 -s 4 -d 6 -p cbr -e 500 -c 1 -i 27 -a 1 -x {1.0 6.0 17 ------- null} r -t 0.622 -s 3 -d 4 -p cbr -e 500 -c 1 -i 32 -a 1 -x {1.0 6.0 20 ------- null} + -t 0.622 -s 4 -d 6 -p cbr -e 500 -c 1 -i 32 -a 1 -x {1.0 6.0 20 ------- null} - -t 0.622 -s 4 -d 6 -p cbr -e 500 -c 1 -i 32 -a 1 -x {1.0 6.0 20 ------- null} h -t 0.622 -s 4 -d 6 -p cbr -e 500 -c 1 -i 32 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.622 -s 3 -d 4 -p cbr -e 500 -c 1 -i 41 -a 1 -x {1.0 6.0 25 ------- null} h -t 0.622 -s 3 -d 4 -p cbr -e 500 -c 1 -i 41 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.628 -s 1 -d 3 -p cbr -e 500 -c 1 -i 43 -a 1 -x {1.0 6.0 26 ------- null} + -t 0.628 -s 3 -d 4 -p cbr -e 500 -c 1 -i 43 -a 1 -x {1.0 6.0 26 ------- null} + -t 0.63 -s 1 -d 3 -p cbr -e 500 -c 1 -i 48 -a 1 -x {1.0 6.0 29 ------- null} - -t 0.63 -s 1 -d 3 -p cbr -e 500 -c 1 -i 48 -a 1 -x {1.0 6.0 29 ------- null} h -t 0.63 -s 1 -d 3 -p cbr -e 500 -c 1 -i 48 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.63 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 42 -a 1 -x {2.0 7.0 15 ------- null} h -t 0.63 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 42 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.64 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 49 -a 1 -x {2.0 7.0 18 ------- null} - -t 0.64 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 49 -a 1 -x {2.0 7.0 18 ------- null} h -t 0.64 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 49 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.642 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 33 -a 1 -x {2.0 7.0 12 ------- null} + -t 0.642 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 33 -a 1 -x {2.0 7.0 12 ------- null} - -t 0.642 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 33 -a 1 -x {2.0 7.0 12 ------- null} h -t 0.642 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 33 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.646 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 44 -a 1 -x {2.0 7.0 16 ------- null} + -t 0.646 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 44 -a 1 -x {2.0 7.0 16 ------- null} - -t 0.646 -s 3 -d 4 -p cbr -e 500 -c 1 -i 43 -a 1 -x {1.0 6.0 26 ------- null} h -t 0.646 -s 3 -d 4 -p cbr -e 500 -c 1 -i 43 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.648 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 28 -a 1 -x {2.0 7.0 10 ------- null} r -t 0.648 -s 4 -d 6 -p cbr -e 500 -c 1 -i 29 -a 1 -x {1.0 6.0 18 ------- null} r -t 0.648 -s 1 -d 3 -p cbr -e 500 -c 1 -i 45 -a 1 -x {1.0 6.0 27 ------- null} + -t 0.648 -s 3 -d 4 -p cbr -e 500 -c 1 -i 45 -a 1 -x {1.0 6.0 27 ------- null} r -t 0.65 -s 3 -d 4 -p cbr -e 500 -c 1 -i 34 -a 1 -x {1.0 6.0 21 ------- null} + -t 0.65 -s 4 -d 6 -p cbr -e 500 -c 1 -i 34 -a 1 -x {1.0 6.0 21 ------- null} - -t 0.65 -s 4 -d 6 -p cbr -e 500 -c 1 -i 34 -a 1 -x {1.0 6.0 21 ------- null} h -t 0.65 -s 4 -d 6 -p cbr -e 500 -c 1 -i 34 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.65 -s 1 -d 3 -p cbr -e 500 -c 1 -i 50 -a 1 -x {1.0 6.0 30 ------- null} - -t 0.65 -s 1 -d 3 -p cbr -e 500 -c 1 -i 50 -a 1 -x {1.0 6.0 30 ------- null} h -t 0.65 -s 1 -d 3 -p cbr -e 500 -c 1 -i 50 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.654 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 44 -a 1 -x {2.0 7.0 16 ------- null} h -t 0.654 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 44 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.656 -s 4 -d 6 -p cbr -e 500 -c 1 -i 30 -a 1 -x {1.0 6.0 19 ------- null} r -t 0.658 -s 3 -d 4 -p cbr -e 500 -c 1 -i 35 -a 1 -x {1.0 6.0 22 ------- null} + -t 0.658 -s 4 -d 6 -p cbr -e 500 -c 1 -i 35 -a 1 -x {1.0 6.0 22 ------- null} - -t 0.658 -s 4 -d 6 -p cbr -e 500 -c 1 -i 35 -a 1 -x {1.0 6.0 22 ------- null} h -t 0.658 -s 4 -d 6 -p cbr -e 500 -c 1 -i 35 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.668 -s 1 -d 3 -p cbr -e 500 -c 1 -i 46 -a 1 -x {1.0 6.0 28 ------- null} + -t 0.668 -s 3 -d 4 -p cbr -e 500 -c 1 -i 46 -a 1 -x {1.0 6.0 28 ------- null} + -t 0.67 -s 1 -d 3 -p cbr -e 500 -c 1 -i 51 -a 1 -x {1.0 6.0 31 ------- null} - -t 0.67 -s 1 -d 3 -p cbr -e 500 -c 1 -i 51 -a 1 -x {1.0 6.0 31 ------- null} h -t 0.67 -s 1 -d 3 -p cbr -e 500 -c 1 -i 51 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.67 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 52 -a 1 -x {2.0 7.0 19 ------- null} - -t 0.67 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 52 -a 1 -x {2.0 7.0 19 ------- null} h -t 0.67 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 52 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.67 -s 3 -d 4 -p cbr -e 500 -c 1 -i 45 -a 1 -x {1.0 6.0 27 ------- null} h -t 0.67 -s 3 -d 4 -p cbr -e 500 -c 1 -i 45 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.674 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 36 -a 1 -x {2.0 7.0 13 ------- null} + -t 0.674 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 36 -a 1 -x {2.0 7.0 13 ------- null} - -t 0.674 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 36 -a 1 -x {2.0 7.0 13 ------- null} h -t 0.674 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 36 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.676 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 47 -a 1 -x {2.0 7.0 17 ------- null} + -t 0.676 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 47 -a 1 -x {2.0 7.0 17 ------- null} - -t 0.678 -s 3 -d 4 -p cbr -e 500 -c 1 -i 46 -a 1 -x {1.0 6.0 28 ------- null} h -t 0.678 -s 3 -d 4 -p cbr -e 500 -c 1 -i 46 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.68 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 31 -a 1 -x {2.0 7.0 11 ------- null} r -t 0.68 -s 4 -d 6 -p cbr -e 500 -c 1 -i 32 -a 1 -x {1.0 6.0 20 ------- null} - -t 0.686 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 47 -a 1 -x {2.0 7.0 17 ------- null} h -t 0.686 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 47 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.688 -s 1 -d 3 -p cbr -e 500 -c 1 -i 48 -a 1 -x {1.0 6.0 29 ------- null} + -t 0.688 -s 3 -d 4 -p cbr -e 500 -c 1 -i 48 -a 1 -x {1.0 6.0 29 ------- null} r -t 0.69 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {0.0 5.0 0 ------- null} + -t 0.69 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {0.0 5.0 0 ------- null} - -t 0.69 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {0.0 5.0 0 ------- null} h -t 0.69 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {0.0 5.0 -1 ------- null} + -t 0.69 -s 1 -d 3 -p cbr -e 500 -c 1 -i 53 -a 1 -x {1.0 6.0 32 ------- null} - -t 0.69 -s 1 -d 3 -p cbr -e 500 -c 1 -i 53 -a 1 -x {1.0 6.0 32 ------- null} h -t 0.69 -s 1 -d 3 -p cbr -e 500 -c 1 -i 53 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.698 -s 3 -d 4 -p cbr -e 500 -c 1 -i 38 -a 1 -x {1.0 6.0 23 ------- null} + -t 0.698 -s 4 -d 6 -p cbr -e 500 -c 1 -i 38 -a 1 -x {1.0 6.0 23 ------- null} - -t 0.698 -s 4 -d 6 -p cbr -e 500 -c 1 -i 38 -a 1 -x {1.0 6.0 23 ------- null} h -t 0.698 -s 4 -d 6 -p cbr -e 500 -c 1 -i 38 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.7 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 54 -a 1 -x {2.0 7.0 20 ------- null} - -t 0.7 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 54 -a 1 -x {2.0 7.0 20 ------- null} h -t 0.7 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 54 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.702 -s 3 -d 4 -p cbr -e 500 -c 1 -i 48 -a 1 -x {1.0 6.0 29 ------- null} h -t 0.702 -s 3 -d 4 -p cbr -e 500 -c 1 -i 48 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.706 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 49 -a 1 -x {2.0 7.0 18 ------- null} + -t 0.706 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 49 -a 1 -x {2.0 7.0 18 ------- null} r -t 0.708 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 33 -a 1 -x {2.0 7.0 12 ------- null} r -t 0.708 -s 4 -d 6 -p cbr -e 500 -c 1 -i 34 -a 1 -x {1.0 6.0 21 ------- null} r -t 0.708 -s 1 -d 3 -p cbr -e 500 -c 1 -i 50 -a 1 -x {1.0 6.0 30 ------- null} + -t 0.708 -s 3 -d 4 -p cbr -e 500 -c 1 -i 50 -a 1 -x {1.0 6.0 30 ------- null} + -t 0.71 -s 1 -d 3 -p cbr -e 500 -c 1 -i 55 -a 1 -x {1.0 6.0 33 ------- null} - -t 0.71 -s 1 -d 3 -p cbr -e 500 -c 1 -i 55 -a 1 -x {1.0 6.0 33 ------- null} h -t 0.71 -s 1 -d 3 -p cbr -e 500 -c 1 -i 55 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.71 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 49 -a 1 -x {2.0 7.0 18 ------- null} h -t 0.71 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 49 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.714 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 39 -a 1 -x {2.0 7.0 14 ------- null} + -t 0.714 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 39 -a 1 -x {2.0 7.0 14 ------- null} - -t 0.714 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 39 -a 1 -x {2.0 7.0 14 ------- null} h -t 0.714 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 39 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.716 -s 4 -d 6 -p cbr -e 500 -c 1 -i 35 -a 1 -x {1.0 6.0 22 ------- null} r -t 0.722 -s 3 -d 4 -p cbr -e 500 -c 1 -i 40 -a 1 -x {1.0 6.0 24 ------- null} + -t 0.722 -s 4 -d 6 -p cbr -e 500 -c 1 -i 40 -a 1 -x {1.0 6.0 24 ------- null} - -t 0.722 -s 4 -d 6 -p cbr -e 500 -c 1 -i 40 -a 1 -x {1.0 6.0 24 ------- null} h -t 0.722 -s 4 -d 6 -p cbr -e 500 -c 1 -i 40 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.726 -s 3 -d 4 -p cbr -e 500 -c 1 -i 50 -a 1 -x {1.0 6.0 30 ------- null} h -t 0.726 -s 3 -d 4 -p cbr -e 500 -c 1 -i 50 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.728 -s 1 -d 3 -p cbr -e 500 -c 1 -i 51 -a 1 -x {1.0 6.0 31 ------- null} + -t 0.728 -s 3 -d 4 -p cbr -e 500 -c 1 -i 51 -a 1 -x {1.0 6.0 31 ------- null} r -t 0.73 -s 3 -d 4 -p cbr -e 500 -c 1 -i 41 -a 1 -x {1.0 6.0 25 ------- null} + -t 0.73 -s 4 -d 6 -p cbr -e 500 -c 1 -i 41 -a 1 -x {1.0 6.0 25 ------- null} + -t 0.73 -s 1 -d 3 -p cbr -e 500 -c 1 -i 56 -a 1 -x {1.0 6.0 34 ------- null} - -t 0.73 -s 1 -d 3 -p cbr -e 500 -c 1 -i 56 -a 1 -x {1.0 6.0 34 ------- null} h -t 0.73 -s 1 -d 3 -p cbr -e 500 -c 1 -i 56 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.73 -s 4 -d 6 -p cbr -e 500 -c 1 -i 41 -a 1 -x {1.0 6.0 25 ------- null} h -t 0.73 -s 4 -d 6 -p cbr -e 500 -c 1 -i 41 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.73 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 57 -a 1 -x {2.0 7.0 21 ------- null} - -t 0.73 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 57 -a 1 -x {2.0 7.0 21 ------- null} h -t 0.73 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 57 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.734 -s 3 -d 4 -p cbr -e 500 -c 1 -i 51 -a 1 -x {1.0 6.0 31 ------- null} h -t 0.734 -s 3 -d 4 -p cbr -e 500 -c 1 -i 51 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.736 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 52 -a 1 -x {2.0 7.0 19 ------- null} + -t 0.736 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 52 -a 1 -x {2.0 7.0 19 ------- null} r -t 0.74 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 36 -a 1 -x {2.0 7.0 13 ------- null} - -t 0.742 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 52 -a 1 -x {2.0 7.0 19 ------- null} h -t 0.742 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 52 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.746 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 42 -a 1 -x {2.0 7.0 15 ------- null} + -t 0.746 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 42 -a 1 -x {2.0 7.0 15 ------- null} - -t 0.746 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 42 -a 1 -x {2.0 7.0 15 ------- null} h -t 0.746 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 42 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.748 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 37 -a 0 -x {0.0 5.0 0 ------- null} + -t 0.748 -s 5 -d 4 -p ack -e 40 -c 0 -i 58 -a 0 -x {5.0 0.0 0 ------- null} - -t 0.748 -s 5 -d 4 -p ack -e 40 -c 0 -i 58 -a 0 -x {5.0 0.0 0 ------- null} h -t 0.748 -s 5 -d 4 -p ack -e 40 -c 0 -i 58 -a 0 -x {5.0 0.0 -1 ------- null} r -t 0.748 -s 1 -d 3 -p cbr -e 500 -c 1 -i 53 -a 1 -x {1.0 6.0 32 ------- null} + -t 0.748 -s 3 -d 4 -p cbr -e 500 -c 1 -i 53 -a 1 -x {1.0 6.0 32 ------- null} + -t 0.75 -s 1 -d 3 -p cbr -e 500 -c 1 -i 59 -a 1 -x {1.0 6.0 35 ------- null} - -t 0.75 -s 1 -d 3 -p cbr -e 500 -c 1 -i 59 -a 1 -x {1.0 6.0 35 ------- null} h -t 0.75 -s 1 -d 3 -p cbr -e 500 -c 1 -i 59 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.754 -s 3 -d 4 -p cbr -e 500 -c 1 -i 43 -a 1 -x {1.0 6.0 26 ------- null} + -t 0.754 -s 4 -d 6 -p cbr -e 500 -c 1 -i 43 -a 1 -x {1.0 6.0 26 ------- null} - -t 0.754 -s 4 -d 6 -p cbr -e 500 -c 1 -i 43 -a 1 -x {1.0 6.0 26 ------- null} h -t 0.754 -s 4 -d 6 -p cbr -e 500 -c 1 -i 43 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.756 -s 4 -d 6 -p cbr -e 500 -c 1 -i 38 -a 1 -x {1.0 6.0 23 ------- null} - -t 0.758 -s 3 -d 4 -p cbr -e 500 -c 1 -i 53 -a 1 -x {1.0 6.0 32 ------- null} h -t 0.758 -s 3 -d 4 -p cbr -e 500 -c 1 -i 53 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.76 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 60 -a 1 -x {2.0 7.0 22 ------- null} - -t 0.76 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 60 -a 1 -x {2.0 7.0 22 ------- null} h -t 0.76 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 60 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.766 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 54 -a 1 -x {2.0 7.0 20 ------- null} + -t 0.766 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 54 -a 1 -x {2.0 7.0 20 ------- null} - -t 0.766 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 54 -a 1 -x {2.0 7.0 20 ------- null} h -t 0.766 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 54 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.768 -s 1 -d 3 -p cbr -e 500 -c 1 -i 55 -a 1 -x {1.0 6.0 33 ------- null} + -t 0.768 -s 3 -d 4 -p cbr -e 500 -c 1 -i 55 -a 1 -x {1.0 6.0 33 ------- null} r -t 0.77 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 44 -a 1 -x {2.0 7.0 16 ------- null} + -t 0.77 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 44 -a 1 -x {2.0 7.0 16 ------- null} - -t 0.77 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 44 -a 1 -x {2.0 7.0 16 ------- null} h -t 0.77 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 44 -a 1 -x {2.0 7.0 -1 ------- null} + -t 0.77 -s 1 -d 3 -p cbr -e 500 -c 1 -i 61 -a 1 -x {1.0 6.0 36 ------- null} - -t 0.77 -s 1 -d 3 -p cbr -e 500 -c 1 -i 61 -a 1 -x {1.0 6.0 36 ------- null} h -t 0.77 -s 1 -d 3 -p cbr -e 500 -c 1 -i 61 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.778 -s 3 -d 4 -p cbr -e 500 -c 1 -i 45 -a 1 -x {1.0 6.0 27 ------- null} + -t 0.778 -s 4 -d 6 -p cbr -e 500 -c 1 -i 45 -a 1 -x {1.0 6.0 27 ------- null} - -t 0.778 -s 4 -d 6 -p cbr -e 500 -c 1 -i 45 -a 1 -x {1.0 6.0 27 ------- null} h -t 0.778 -s 4 -d 6 -p cbr -e 500 -c 1 -i 45 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.78 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 39 -a 1 -x {2.0 7.0 14 ------- null} r -t 0.78 -s 4 -d 6 -p cbr -e 500 -c 1 -i 40 -a 1 -x {1.0 6.0 24 ------- null} - -t 0.782 -s 3 -d 4 -p cbr -e 500 -c 1 -i 55 -a 1 -x {1.0 6.0 33 ------- null} h -t 0.782 -s 3 -d 4 -p cbr -e 500 -c 1 -i 55 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.786 -s 3 -d 4 -p cbr -e 500 -c 1 -i 46 -a 1 -x {1.0 6.0 28 ------- null} + -t 0.786 -s 4 -d 6 -p cbr -e 500 -c 1 -i 46 -a 1 -x {1.0 6.0 28 ------- null} - -t 0.786 -s 4 -d 6 -p cbr -e 500 -c 1 -i 46 -a 1 -x {1.0 6.0 28 ------- null} h -t 0.786 -s 4 -d 6 -p cbr -e 500 -c 1 -i 46 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.788 -s 1 -d 3 -p cbr -e 500 -c 1 -i 56 -a 1 -x {1.0 6.0 34 ------- null} + -t 0.788 -s 3 -d 4 -p cbr -e 500 -c 1 -i 56 -a 1 -x {1.0 6.0 34 ------- null} r -t 0.788 -s 4 -d 6 -p cbr -e 500 -c 1 -i 41 -a 1 -x {1.0 6.0 25 ------- null} + -t 0.79 -s 1 -d 3 -p cbr -e 500 -c 1 -i 62 -a 1 -x {1.0 6.0 37 ------- null} - -t 0.79 -s 1 -d 3 -p cbr -e 500 -c 1 -i 62 -a 1 -x {1.0 6.0 37 ------- null} h -t 0.79 -s 1 -d 3 -p cbr -e 500 -c 1 -i 62 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.79 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 63 -a 1 -x {2.0 7.0 23 ------- null} - -t 0.79 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 63 -a 1 -x {2.0 7.0 23 ------- null} h -t 0.79 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 63 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.79 -s 3 -d 4 -p cbr -e 500 -c 1 -i 56 -a 1 -x {1.0 6.0 34 ------- null} h -t 0.79 -s 3 -d 4 -p cbr -e 500 -c 1 -i 56 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.796 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 57 -a 1 -x {2.0 7.0 21 ------- null} + -t 0.796 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 57 -a 1 -x {2.0 7.0 21 ------- null} - -t 0.798 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 57 -a 1 -x {2.0 7.0 21 ------- null} h -t 0.798 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 57 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.79832 -s 5 -d 4 -p ack -e 40 -c 0 -i 58 -a 0 -x {5.0 0.0 0 ------- null} + -t 0.79832 -s 4 -d 3 -p ack -e 40 -c 0 -i 58 -a 0 -x {5.0 0.0 0 ------- null} - -t 0.79832 -s 4 -d 3 -p ack -e 40 -c 0 -i 58 -a 0 -x {5.0 0.0 0 ------- null} h -t 0.79832 -s 4 -d 3 -p ack -e 40 -c 0 -i 58 -a 0 -x {5.0 0.0 -1 ------- null} r -t 0.802 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 47 -a 1 -x {2.0 7.0 17 ------- null} + -t 0.802 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 47 -a 1 -x {2.0 7.0 17 ------- null} - -t 0.802 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 47 -a 1 -x {2.0 7.0 17 ------- null} h -t 0.802 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 47 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.808 -s 1 -d 3 -p cbr -e 500 -c 1 -i 59 -a 1 -x {1.0 6.0 35 ------- null} + -t 0.808 -s 3 -d 4 -p cbr -e 500 -c 1 -i 59 -a 1 -x {1.0 6.0 35 ------- null} r -t 0.81 -s 3 -d 4 -p cbr -e 500 -c 1 -i 48 -a 1 -x {1.0 6.0 29 ------- null} + -t 0.81 -s 4 -d 6 -p cbr -e 500 -c 1 -i 48 -a 1 -x {1.0 6.0 29 ------- null} - -t 0.81 -s 4 -d 6 -p cbr -e 500 -c 1 -i 48 -a 1 -x {1.0 6.0 29 ------- null} h -t 0.81 -s 4 -d 6 -p cbr -e 500 -c 1 -i 48 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.81 -s 1 -d 3 -p cbr -e 500 -c 1 -i 64 -a 1 -x {1.0 6.0 38 ------- null} - -t 0.81 -s 1 -d 3 -p cbr -e 500 -c 1 -i 64 -a 1 -x {1.0 6.0 38 ------- null} h -t 0.81 -s 1 -d 3 -p cbr -e 500 -c 1 -i 64 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.812 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 42 -a 1 -x {2.0 7.0 15 ------- null} r -t 0.812 -s 4 -d 6 -p cbr -e 500 -c 1 -i 43 -a 1 -x {1.0 6.0 26 ------- null} - -t 0.814000000000001 -s 3 -d 4 -p cbr -e 500 -c 1 -i 59 -a 1 -x {1.0 6.0 35 ------- null} h -t 0.814000000000001 -s 3 -d 4 -p cbr -e 500 -c 1 -i 59 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.820000000000001 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 65 -a 1 -x {2.0 7.0 24 ------- null} - -t 0.820000000000001 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 65 -a 1 -x {2.0 7.0 24 ------- null} h -t 0.820000000000001 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 65 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.826 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 49 -a 1 -x {2.0 7.0 18 ------- null} + -t 0.826 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 49 -a 1 -x {2.0 7.0 18 ------- null} - -t 0.826 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 49 -a 1 -x {2.0 7.0 18 ------- null} h -t 0.826 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 49 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.826000000000001 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 60 -a 1 -x {2.0 7.0 22 ------- null} + -t 0.826000000000001 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 60 -a 1 -x {2.0 7.0 22 ------- null} - -t 0.826000000000001 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 60 -a 1 -x {2.0 7.0 22 ------- null} h -t 0.826000000000001 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 60 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.828 -s 1 -d 3 -p cbr -e 500 -c 1 -i 61 -a 1 -x {1.0 6.0 36 ------- null} + -t 0.828 -s 3 -d 4 -p cbr -e 500 -c 1 -i 61 -a 1 -x {1.0 6.0 36 ------- null} + -t 0.83 -s 1 -d 3 -p cbr -e 500 -c 1 -i 66 -a 1 -x {1.0 6.0 39 ------- null} - -t 0.83 -s 1 -d 3 -p cbr -e 500 -c 1 -i 66 -a 1 -x {1.0 6.0 39 ------- null} h -t 0.83 -s 1 -d 3 -p cbr -e 500 -c 1 -i 66 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.834 -s 3 -d 4 -p cbr -e 500 -c 1 -i 50 -a 1 -x {1.0 6.0 30 ------- null} + -t 0.834 -s 4 -d 6 -p cbr -e 500 -c 1 -i 50 -a 1 -x {1.0 6.0 30 ------- null} - -t 0.834 -s 4 -d 6 -p cbr -e 500 -c 1 -i 50 -a 1 -x {1.0 6.0 30 ------- null} h -t 0.834 -s 4 -d 6 -p cbr -e 500 -c 1 -i 50 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.836 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 44 -a 1 -x {2.0 7.0 16 ------- null} r -t 0.836 -s 4 -d 6 -p cbr -e 500 -c 1 -i 45 -a 1 -x {1.0 6.0 27 ------- null} r -t 0.842 -s 3 -d 4 -p cbr -e 500 -c 1 -i 51 -a 1 -x {1.0 6.0 31 ------- null} + -t 0.842 -s 4 -d 6 -p cbr -e 500 -c 1 -i 51 -a 1 -x {1.0 6.0 31 ------- null} - -t 0.842 -s 4 -d 6 -p cbr -e 500 -c 1 -i 51 -a 1 -x {1.0 6.0 31 ------- null} h -t 0.842 -s 4 -d 6 -p cbr -e 500 -c 1 -i 51 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.842000000000001 -s 3 -d 4 -p cbr -e 500 -c 1 -i 61 -a 1 -x {1.0 6.0 36 ------- null} h -t 0.842000000000001 -s 3 -d 4 -p cbr -e 500 -c 1 -i 61 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.844 -s 4 -d 6 -p cbr -e 500 -c 1 -i 46 -a 1 -x {1.0 6.0 28 ------- null} r -t 0.848 -s 1 -d 3 -p cbr -e 500 -c 1 -i 62 -a 1 -x {1.0 6.0 37 ------- null} + -t 0.848 -s 3 -d 4 -p cbr -e 500 -c 1 -i 62 -a 1 -x {1.0 6.0 37 ------- null} + -t 0.85 -s 1 -d 3 -p cbr -e 500 -c 1 -i 67 -a 1 -x {1.0 6.0 40 ------- null} - -t 0.85 -s 1 -d 3 -p cbr -e 500 -c 1 -i 67 -a 1 -x {1.0 6.0 40 ------- null} h -t 0.85 -s 1 -d 3 -p cbr -e 500 -c 1 -i 67 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.850000000000001 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 68 -a 1 -x {2.0 7.0 25 ------- null} - -t 0.850000000000001 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 68 -a 1 -x {2.0 7.0 25 ------- null} h -t 0.850000000000001 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 68 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.850000000000001 -s 3 -d 4 -p cbr -e 500 -c 1 -i 62 -a 1 -x {1.0 6.0 37 ------- null} h -t 0.850000000000001 -s 3 -d 4 -p cbr -e 500 -c 1 -i 62 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.856000000000001 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 63 -a 1 -x {2.0 7.0 23 ------- null} + -t 0.856000000000001 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 63 -a 1 -x {2.0 7.0 23 ------- null} r -t 0.858 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 52 -a 1 -x {2.0 7.0 19 ------- null} + -t 0.858 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 52 -a 1 -x {2.0 7.0 19 ------- null} - -t 0.858 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 52 -a 1 -x {2.0 7.0 19 ------- null} h -t 0.858 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 52 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.858000000000001 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 63 -a 1 -x {2.0 7.0 23 ------- null} h -t 0.858000000000001 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 63 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.866 -s 3 -d 4 -p cbr -e 500 -c 1 -i 53 -a 1 -x {1.0 6.0 32 ------- null} + -t 0.866 -s 4 -d 6 -p cbr -e 500 -c 1 -i 53 -a 1 -x {1.0 6.0 32 ------- null} - -t 0.866 -s 4 -d 6 -p cbr -e 500 -c 1 -i 53 -a 1 -x {1.0 6.0 32 ------- null} h -t 0.866 -s 4 -d 6 -p cbr -e 500 -c 1 -i 53 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.868 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 47 -a 1 -x {2.0 7.0 17 ------- null} r -t 0.868 -s 4 -d 6 -p cbr -e 500 -c 1 -i 48 -a 1 -x {1.0 6.0 29 ------- null} r -t 0.868 -s 1 -d 3 -p cbr -e 500 -c 1 -i 64 -a 1 -x {1.0 6.0 38 ------- null} + -t 0.868 -s 3 -d 4 -p cbr -e 500 -c 1 -i 64 -a 1 -x {1.0 6.0 38 ------- null} + -t 0.87 -s 1 -d 3 -p cbr -e 500 -c 1 -i 69 -a 1 -x {1.0 6.0 41 ------- null} - -t 0.87 -s 1 -d 3 -p cbr -e 500 -c 1 -i 69 -a 1 -x {1.0 6.0 41 ------- null} h -t 0.87 -s 1 -d 3 -p cbr -e 500 -c 1 -i 69 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.874000000000001 -s 3 -d 4 -p cbr -e 500 -c 1 -i 64 -a 1 -x {1.0 6.0 38 ------- null} h -t 0.874000000000001 -s 3 -d 4 -p cbr -e 500 -c 1 -i 64 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.880000000000001 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 70 -a 1 -x {2.0 7.0 26 ------- null} - -t 0.880000000000001 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 70 -a 1 -x {2.0 7.0 26 ------- null} h -t 0.880000000000001 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 70 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.882 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 54 -a 1 -x {2.0 7.0 20 ------- null} + -t 0.882 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 54 -a 1 -x {2.0 7.0 20 ------- null} - -t 0.882 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 54 -a 1 -x {2.0 7.0 20 ------- null} h -t 0.882 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 54 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.886000000000001 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 65 -a 1 -x {2.0 7.0 24 ------- null} + -t 0.886000000000001 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 65 -a 1 -x {2.0 7.0 24 ------- null} - -t 0.886000000000001 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 65 -a 1 -x {2.0 7.0 24 ------- null} h -t 0.886000000000001 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 65 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.888 -s 1 -d 3 -p cbr -e 500 -c 1 -i 66 -a 1 -x {1.0 6.0 39 ------- null} + -t 0.888 -s 3 -d 4 -p cbr -e 500 -c 1 -i 66 -a 1 -x {1.0 6.0 39 ------- null} r -t 0.89 -s 3 -d 4 -p cbr -e 500 -c 1 -i 55 -a 1 -x {1.0 6.0 33 ------- null} + -t 0.89 -s 4 -d 6 -p cbr -e 500 -c 1 -i 55 -a 1 -x {1.0 6.0 33 ------- null} - -t 0.89 -s 4 -d 6 -p cbr -e 500 -c 1 -i 55 -a 1 -x {1.0 6.0 33 ------- null} h -t 0.89 -s 4 -d 6 -p cbr -e 500 -c 1 -i 55 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.89 -s 1 -d 3 -p cbr -e 500 -c 1 -i 71 -a 1 -x {1.0 6.0 42 ------- null} - -t 0.89 -s 1 -d 3 -p cbr -e 500 -c 1 -i 71 -a 1 -x {1.0 6.0 42 ------- null} h -t 0.89 -s 1 -d 3 -p cbr -e 500 -c 1 -i 71 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.892 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 49 -a 1 -x {2.0 7.0 18 ------- null} r -t 0.892 -s 4 -d 6 -p cbr -e 500 -c 1 -i 50 -a 1 -x {1.0 6.0 30 ------- null} r -t 0.898 -s 3 -d 4 -p cbr -e 500 -c 1 -i 56 -a 1 -x {1.0 6.0 34 ------- null} + -t 0.898 -s 4 -d 6 -p cbr -e 500 -c 1 -i 56 -a 1 -x {1.0 6.0 34 ------- null} - -t 0.898 -s 4 -d 6 -p cbr -e 500 -c 1 -i 56 -a 1 -x {1.0 6.0 34 ------- null} h -t 0.898 -s 4 -d 6 -p cbr -e 500 -c 1 -i 56 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.89896 -s 4 -d 3 -p ack -e 40 -c 0 -i 58 -a 0 -x {5.0 0.0 0 ------- null} + -t 0.89896 -s 3 -d 0 -p ack -e 40 -c 0 -i 58 -a 0 -x {5.0 0.0 0 ------- null} - -t 0.89896 -s 3 -d 0 -p ack -e 40 -c 0 -i 58 -a 0 -x {5.0 0.0 0 ------- null} h -t 0.89896 -s 3 -d 0 -p ack -e 40 -c 0 -i 58 -a 0 -x {5.0 0.0 -1 ------- null} r -t 0.9 -s 4 -d 6 -p cbr -e 500 -c 1 -i 51 -a 1 -x {1.0 6.0 31 ------- null} - -t 0.902000000000001 -s 3 -d 4 -p cbr -e 500 -c 1 -i 66 -a 1 -x {1.0 6.0 39 ------- null} h -t 0.902000000000001 -s 3 -d 4 -p cbr -e 500 -c 1 -i 66 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.908 -s 1 -d 3 -p cbr -e 500 -c 1 -i 67 -a 1 -x {1.0 6.0 40 ------- null} + -t 0.908 -s 3 -d 4 -p cbr -e 500 -c 1 -i 67 -a 1 -x {1.0 6.0 40 ------- null} + -t 0.91 -s 1 -d 3 -p cbr -e 500 -c 1 -i 72 -a 1 -x {1.0 6.0 43 ------- null} - -t 0.91 -s 1 -d 3 -p cbr -e 500 -c 1 -i 72 -a 1 -x {1.0 6.0 43 ------- null} h -t 0.91 -s 1 -d 3 -p cbr -e 500 -c 1 -i 72 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.910000000000001 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 73 -a 1 -x {2.0 7.0 27 ------- null} - -t 0.910000000000001 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 73 -a 1 -x {2.0 7.0 27 ------- null} h -t 0.910000000000001 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 73 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.910000000000001 -s 3 -d 4 -p cbr -e 500 -c 1 -i 67 -a 1 -x {1.0 6.0 40 ------- null} h -t 0.910000000000001 -s 3 -d 4 -p cbr -e 500 -c 1 -i 67 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.914 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 57 -a 1 -x {2.0 7.0 21 ------- null} + -t 0.914 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 57 -a 1 -x {2.0 7.0 21 ------- null} - -t 0.914 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 57 -a 1 -x {2.0 7.0 21 ------- null} h -t 0.914 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 57 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.916000000000001 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 68 -a 1 -x {2.0 7.0 25 ------- null} + -t 0.916000000000001 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 68 -a 1 -x {2.0 7.0 25 ------- null} - -t 0.918000000000001 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 68 -a 1 -x {2.0 7.0 25 ------- null} h -t 0.918000000000001 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 68 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.922 -s 3 -d 4 -p cbr -e 500 -c 1 -i 59 -a 1 -x {1.0 6.0 35 ------- null} + -t 0.922 -s 4 -d 6 -p cbr -e 500 -c 1 -i 59 -a 1 -x {1.0 6.0 35 ------- null} - -t 0.922 -s 4 -d 6 -p cbr -e 500 -c 1 -i 59 -a 1 -x {1.0 6.0 35 ------- null} h -t 0.922 -s 4 -d 6 -p cbr -e 500 -c 1 -i 59 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.924 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 52 -a 1 -x {2.0 7.0 19 ------- null} r -t 0.924 -s 4 -d 6 -p cbr -e 500 -c 1 -i 53 -a 1 -x {1.0 6.0 32 ------- null} r -t 0.928 -s 1 -d 3 -p cbr -e 500 -c 1 -i 69 -a 1 -x {1.0 6.0 41 ------- null} + -t 0.928 -s 3 -d 4 -p cbr -e 500 -c 1 -i 69 -a 1 -x {1.0 6.0 41 ------- null} + -t 0.93 -s 1 -d 3 -p cbr -e 500 -c 1 -i 74 -a 1 -x {1.0 6.0 44 ------- null} - -t 0.93 -s 1 -d 3 -p cbr -e 500 -c 1 -i 74 -a 1 -x {1.0 6.0 44 ------- null} h -t 0.93 -s 1 -d 3 -p cbr -e 500 -c 1 -i 74 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.934000000000001 -s 3 -d 4 -p cbr -e 500 -c 1 -i 69 -a 1 -x {1.0 6.0 41 ------- null} h -t 0.934000000000001 -s 3 -d 4 -p cbr -e 500 -c 1 -i 69 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.940000000000001 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 75 -a 1 -x {2.0 7.0 28 ------- null} - -t 0.940000000000001 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 75 -a 1 -x {2.0 7.0 28 ------- null} h -t 0.940000000000001 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 75 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.942000000000001 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 60 -a 1 -x {2.0 7.0 22 ------- null} + -t 0.942000000000001 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 60 -a 1 -x {2.0 7.0 22 ------- null} - -t 0.942000000000001 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 60 -a 1 -x {2.0 7.0 22 ------- null} h -t 0.942000000000001 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 60 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.946000000000001 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 70 -a 1 -x {2.0 7.0 26 ------- null} + -t 0.946000000000001 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 70 -a 1 -x {2.0 7.0 26 ------- null} - -t 0.946000000000001 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 70 -a 1 -x {2.0 7.0 26 ------- null} h -t 0.946000000000001 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 70 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.948 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 54 -a 1 -x {2.0 7.0 20 ------- null} r -t 0.948000000000001 -s 4 -d 6 -p cbr -e 500 -c 1 -i 55 -a 1 -x {1.0 6.0 33 ------- null} r -t 0.948000000000001 -s 1 -d 3 -p cbr -e 500 -c 1 -i 71 -a 1 -x {1.0 6.0 42 ------- null} + -t 0.948000000000001 -s 3 -d 4 -p cbr -e 500 -c 1 -i 71 -a 1 -x {1.0 6.0 42 ------- null} r -t 0.94928 -s 3 -d 0 -p ack -e 40 -c 0 -i 58 -a 0 -x {5.0 0.0 0 ------- null} + -t 0.94928 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {0.0 5.0 1 ------- null} - -t 0.94928 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {0.0 5.0 1 ------- null} h -t 0.94928 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {0.0 5.0 -1 ------- null} + -t 0.94928 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {0.0 5.0 2 ------- null} r -t 0.950000000000001 -s 3 -d 4 -p cbr -e 500 -c 1 -i 61 -a 1 -x {1.0 6.0 36 ------- null} + -t 0.950000000000001 -s 4 -d 6 -p cbr -e 500 -c 1 -i 61 -a 1 -x {1.0 6.0 36 ------- null} - -t 0.950000000000001 -s 4 -d 6 -p cbr -e 500 -c 1 -i 61 -a 1 -x {1.0 6.0 36 ------- null} h -t 0.950000000000001 -s 4 -d 6 -p cbr -e 500 -c 1 -i 61 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.950000000000001 -s 1 -d 3 -p cbr -e 500 -c 1 -i 78 -a 1 -x {1.0 6.0 45 ------- null} - -t 0.950000000000001 -s 1 -d 3 -p cbr -e 500 -c 1 -i 78 -a 1 -x {1.0 6.0 45 ------- null} h -t 0.950000000000001 -s 1 -d 3 -p cbr -e 500 -c 1 -i 78 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.956000000000001 -s 4 -d 6 -p cbr -e 500 -c 1 -i 56 -a 1 -x {1.0 6.0 34 ------- null} - -t 0.95728 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {0.0 5.0 2 ------- null} h -t 0.95728 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {0.0 5.0 -1 ------- null} r -t 0.958000000000001 -s 3 -d 4 -p cbr -e 500 -c 1 -i 62 -a 1 -x {1.0 6.0 37 ------- null} + -t 0.958000000000001 -s 4 -d 6 -p cbr -e 500 -c 1 -i 62 -a 1 -x {1.0 6.0 37 ------- null} - -t 0.958000000000001 -s 4 -d 6 -p cbr -e 500 -c 1 -i 62 -a 1 -x {1.0 6.0 37 ------- null} h -t 0.958000000000001 -s 4 -d 6 -p cbr -e 500 -c 1 -i 62 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.962000000000001 -s 3 -d 4 -p cbr -e 500 -c 1 -i 71 -a 1 -x {1.0 6.0 42 ------- null} h -t 0.962000000000001 -s 3 -d 4 -p cbr -e 500 -c 1 -i 71 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.968000000000001 -s 1 -d 3 -p cbr -e 500 -c 1 -i 72 -a 1 -x {1.0 6.0 43 ------- null} + -t 0.968000000000001 -s 3 -d 4 -p cbr -e 500 -c 1 -i 72 -a 1 -x {1.0 6.0 43 ------- null} + -t 0.970000000000001 -s 1 -d 3 -p cbr -e 500 -c 1 -i 79 -a 1 -x {1.0 6.0 46 ------- null} - -t 0.970000000000001 -s 1 -d 3 -p cbr -e 500 -c 1 -i 79 -a 1 -x {1.0 6.0 46 ------- null} h -t 0.970000000000001 -s 1 -d 3 -p cbr -e 500 -c 1 -i 79 -a 1 -x {1.0 6.0 -1 ------- null} + -t 0.970000000000001 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 80 -a 1 -x {2.0 7.0 29 ------- null} - -t 0.970000000000001 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 80 -a 1 -x {2.0 7.0 29 ------- null} h -t 0.970000000000001 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 80 -a 1 -x {2.0 7.0 -1 ------- null} - -t 0.970000000000001 -s 3 -d 4 -p cbr -e 500 -c 1 -i 72 -a 1 -x {1.0 6.0 43 ------- null} h -t 0.970000000000001 -s 3 -d 4 -p cbr -e 500 -c 1 -i 72 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.974000000000001 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 63 -a 1 -x {2.0 7.0 23 ------- null} + -t 0.974000000000001 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 63 -a 1 -x {2.0 7.0 23 ------- null} - -t 0.974000000000001 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 63 -a 1 -x {2.0 7.0 23 ------- null} h -t 0.974000000000001 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 63 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.976000000000001 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 73 -a 1 -x {2.0 7.0 27 ------- null} + -t 0.976000000000001 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 73 -a 1 -x {2.0 7.0 27 ------- null} - -t 0.978000000000001 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 73 -a 1 -x {2.0 7.0 27 ------- null} h -t 0.978000000000001 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 73 -a 1 -x {2.0 7.0 -1 ------- null} r -t 0.98 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 57 -a 1 -x {2.0 7.0 21 ------- null} r -t 0.980000000000001 -s 4 -d 6 -p cbr -e 500 -c 1 -i 59 -a 1 -x {1.0 6.0 35 ------- null} r -t 0.982000000000001 -s 3 -d 4 -p cbr -e 500 -c 1 -i 64 -a 1 -x {1.0 6.0 38 ------- null} + -t 0.982000000000001 -s 4 -d 6 -p cbr -e 500 -c 1 -i 64 -a 1 -x {1.0 6.0 38 ------- null} - -t 0.982000000000001 -s 4 -d 6 -p cbr -e 500 -c 1 -i 64 -a 1 -x {1.0 6.0 38 ------- null} h -t 0.982000000000001 -s 4 -d 6 -p cbr -e 500 -c 1 -i 64 -a 1 -x {1.0 6.0 -1 ------- null} r -t 0.988000000000001 -s 1 -d 3 -p cbr -e 500 -c 1 -i 74 -a 1 -x {1.0 6.0 44 ------- null} + -t 0.988000000000001 -s 3 -d 4 -p cbr -e 500 -c 1 -i 74 -a 1 -x {1.0 6.0 44 ------- null} + -t 0.990000000000001 -s 1 -d 3 -p cbr -e 500 -c 1 -i 81 -a 1 -x {1.0 6.0 47 ------- null} - -t 0.990000000000001 -s 1 -d 3 -p cbr -e 500 -c 1 -i 81 -a 1 -x {1.0 6.0 47 ------- null} h -t 0.990000000000001 -s 1 -d 3 -p cbr -e 500 -c 1 -i 81 -a 1 -x {1.0 6.0 -1 ------- null} - -t 0.994000000000001 -s 3 -d 4 -p cbr -e 500 -c 1 -i 74 -a 1 -x {1.0 6.0 44 ------- null} h -t 0.994000000000001 -s 3 -d 4 -p cbr -e 500 -c 1 -i 74 -a 1 -x {1.0 6.0 -1 ------- null} v -t 1 -e take_snapshot + -t 1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 82 -a 1 -x {2.0 7.0 30 ------- null} - -t 1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 82 -a 1 -x {2.0 7.0 30 ------- null} h -t 1 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 82 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.002 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 65 -a 1 -x {2.0 7.0 24 ------- null} + -t 1.002 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 65 -a 1 -x {2.0 7.0 24 ------- null} - -t 1.002 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 65 -a 1 -x {2.0 7.0 24 ------- null} h -t 1.002 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 65 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.006 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 75 -a 1 -x {2.0 7.0 28 ------- null} + -t 1.006 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 75 -a 1 -x {2.0 7.0 28 ------- null} - -t 1.006 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 75 -a 1 -x {2.0 7.0 28 ------- null} h -t 1.006 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 75 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.00728 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {0.0 5.0 1 ------- null} + -t 1.00728 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {0.0 5.0 1 ------- null} r -t 1.008 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 60 -a 1 -x {2.0 7.0 22 ------- null} r -t 1.008 -s 4 -d 6 -p cbr -e 500 -c 1 -i 61 -a 1 -x {1.0 6.0 36 ------- null} r -t 1.008 -s 1 -d 3 -p cbr -e 500 -c 1 -i 78 -a 1 -x {1.0 6.0 45 ------- null} + -t 1.008 -s 3 -d 4 -p cbr -e 500 -c 1 -i 78 -a 1 -x {1.0 6.0 45 ------- null} + -t 1.01 -s 1 -d 3 -p cbr -e 500 -c 1 -i 83 -a 1 -x {1.0 6.0 48 ------- null} - -t 1.01 -s 1 -d 3 -p cbr -e 500 -c 1 -i 83 -a 1 -x {1.0 6.0 48 ------- null} h -t 1.01 -s 1 -d 3 -p cbr -e 500 -c 1 -i 83 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.01 -s 3 -d 4 -p cbr -e 500 -c 1 -i 66 -a 1 -x {1.0 6.0 39 ------- null} + -t 1.01 -s 4 -d 6 -p cbr -e 500 -c 1 -i 66 -a 1 -x {1.0 6.0 39 ------- null} - -t 1.01 -s 4 -d 6 -p cbr -e 500 -c 1 -i 66 -a 1 -x {1.0 6.0 39 ------- null} h -t 1.01 -s 4 -d 6 -p cbr -e 500 -c 1 -i 66 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.01528 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {0.0 5.0 2 ------- null} + -t 1.01528 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {0.0 5.0 2 ------- null} r -t 1.016 -s 4 -d 6 -p cbr -e 500 -c 1 -i 62 -a 1 -x {1.0 6.0 37 ------- null} r -t 1.018 -s 3 -d 4 -p cbr -e 500 -c 1 -i 67 -a 1 -x {1.0 6.0 40 ------- null} + -t 1.018 -s 4 -d 6 -p cbr -e 500 -c 1 -i 67 -a 1 -x {1.0 6.0 40 ------- null} - -t 1.018 -s 4 -d 6 -p cbr -e 500 -c 1 -i 67 -a 1 -x {1.0 6.0 40 ------- null} h -t 1.018 -s 4 -d 6 -p cbr -e 500 -c 1 -i 67 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.022 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {0.0 5.0 1 ------- null} h -t 1.022 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.028 -s 1 -d 3 -p cbr -e 500 -c 1 -i 79 -a 1 -x {1.0 6.0 46 ------- null} + -t 1.028 -s 3 -d 4 -p cbr -e 500 -c 1 -i 79 -a 1 -x {1.0 6.0 46 ------- null} + -t 1.03 -s 1 -d 3 -p cbr -e 500 -c 1 -i 84 -a 1 -x {1.0 6.0 49 ------- null} - -t 1.03 -s 1 -d 3 -p cbr -e 500 -c 1 -i 84 -a 1 -x {1.0 6.0 49 ------- null} h -t 1.03 -s 1 -d 3 -p cbr -e 500 -c 1 -i 84 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.03 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 85 -a 1 -x {2.0 7.0 31 ------- null} - -t 1.03 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 85 -a 1 -x {2.0 7.0 31 ------- null} h -t 1.03 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 85 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.034 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 68 -a 1 -x {2.0 7.0 25 ------- null} + -t 1.034 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 68 -a 1 -x {2.0 7.0 25 ------- null} - -t 1.034 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 68 -a 1 -x {2.0 7.0 25 ------- null} h -t 1.034 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 68 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.036 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 80 -a 1 -x {2.0 7.0 29 ------- null} + -t 1.036 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 80 -a 1 -x {2.0 7.0 29 ------- null} - -t 1.038 -s 3 -d 4 -p cbr -e 500 -c 1 -i 78 -a 1 -x {1.0 6.0 45 ------- null} h -t 1.038 -s 3 -d 4 -p cbr -e 500 -c 1 -i 78 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.04 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 63 -a 1 -x {2.0 7.0 23 ------- null} r -t 1.04 -s 4 -d 6 -p cbr -e 500 -c 1 -i 64 -a 1 -x {1.0 6.0 38 ------- null} r -t 1.042 -s 3 -d 4 -p cbr -e 500 -c 1 -i 69 -a 1 -x {1.0 6.0 41 ------- null} + -t 1.042 -s 4 -d 6 -p cbr -e 500 -c 1 -i 69 -a 1 -x {1.0 6.0 41 ------- null} - -t 1.042 -s 4 -d 6 -p cbr -e 500 -c 1 -i 69 -a 1 -x {1.0 6.0 41 ------- null} h -t 1.042 -s 4 -d 6 -p cbr -e 500 -c 1 -i 69 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.046 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {0.0 5.0 2 ------- null} h -t 1.046 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.048 -s 1 -d 3 -p cbr -e 500 -c 1 -i 81 -a 1 -x {1.0 6.0 47 ------- null} + -t 1.048 -s 3 -d 4 -p cbr -e 500 -c 1 -i 81 -a 1 -x {1.0 6.0 47 ------- null} + -t 1.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 86 -a 1 -x {1.0 6.0 50 ------- null} - -t 1.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 86 -a 1 -x {1.0 6.0 50 ------- null} h -t 1.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 86 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.06 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 87 -a 1 -x {2.0 7.0 32 ------- null} - -t 1.06 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 87 -a 1 -x {2.0 7.0 32 ------- null} h -t 1.06 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 87 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.062 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 70 -a 1 -x {2.0 7.0 26 ------- null} + -t 1.062 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 70 -a 1 -x {2.0 7.0 26 ------- null} - -t 1.062 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 70 -a 1 -x {2.0 7.0 26 ------- null} h -t 1.062 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 70 -a 1 -x {2.0 7.0 -1 ------- null} - -t 1.062 -s 3 -d 4 -p cbr -e 500 -c 1 -i 79 -a 1 -x {1.0 6.0 46 ------- null} h -t 1.062 -s 3 -d 4 -p cbr -e 500 -c 1 -i 79 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.066 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 82 -a 1 -x {2.0 7.0 30 ------- null} + -t 1.066 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 82 -a 1 -x {2.0 7.0 30 ------- null} r -t 1.068 -s 1 -d 3 -p cbr -e 500 -c 1 -i 83 -a 1 -x {1.0 6.0 48 ------- null} + -t 1.068 -s 3 -d 4 -p cbr -e 500 -c 1 -i 83 -a 1 -x {1.0 6.0 48 ------- null} r -t 1.068 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 65 -a 1 -x {2.0 7.0 24 ------- null} r -t 1.068 -s 4 -d 6 -p cbr -e 500 -c 1 -i 66 -a 1 -x {1.0 6.0 39 ------- null} + -t 1.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 88 -a 1 -x {1.0 6.0 51 ------- null} - -t 1.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 88 -a 1 -x {1.0 6.0 51 ------- null} h -t 1.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 88 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.07 -s 3 -d 4 -p cbr -e 500 -c 1 -i 71 -a 1 -x {1.0 6.0 42 ------- null} + -t 1.07 -s 4 -d 6 -p cbr -e 500 -c 1 -i 71 -a 1 -x {1.0 6.0 42 ------- null} - -t 1.07 -s 4 -d 6 -p cbr -e 500 -c 1 -i 71 -a 1 -x {1.0 6.0 42 ------- null} h -t 1.07 -s 4 -d 6 -p cbr -e 500 -c 1 -i 71 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.07 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 80 -a 1 -x {2.0 7.0 29 ------- null} h -t 1.07 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 80 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 67 -a 1 -x {1.0 6.0 40 ------- null} r -t 1.078 -s 3 -d 4 -p cbr -e 500 -c 1 -i 72 -a 1 -x {1.0 6.0 43 ------- null} + -t 1.078 -s 4 -d 6 -p cbr -e 500 -c 1 -i 72 -a 1 -x {1.0 6.0 43 ------- null} - -t 1.078 -s 4 -d 6 -p cbr -e 500 -c 1 -i 72 -a 1 -x {1.0 6.0 43 ------- null} h -t 1.078 -s 4 -d 6 -p cbr -e 500 -c 1 -i 72 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.086 -s 3 -d 4 -p cbr -e 500 -c 1 -i 81 -a 1 -x {1.0 6.0 47 ------- null} h -t 1.086 -s 3 -d 4 -p cbr -e 500 -c 1 -i 81 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.088 -s 1 -d 3 -p cbr -e 500 -c 1 -i 84 -a 1 -x {1.0 6.0 49 ------- null} + -t 1.088 -s 3 -d 4 -p cbr -e 500 -c 1 -i 84 -a 1 -x {1.0 6.0 49 ------- null} + -t 1.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 89 -a 1 -x {1.0 6.0 52 ------- null} - -t 1.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 89 -a 1 -x {1.0 6.0 52 ------- null} h -t 1.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 89 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.09 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 90 -a 1 -x {2.0 7.0 33 ------- null} - -t 1.09 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 90 -a 1 -x {2.0 7.0 33 ------- null} h -t 1.09 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 90 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.094 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 73 -a 1 -x {2.0 7.0 27 ------- null} + -t 1.094 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 73 -a 1 -x {2.0 7.0 27 ------- null} - -t 1.094 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 73 -a 1 -x {2.0 7.0 27 ------- null} h -t 1.094 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 73 -a 1 -x {2.0 7.0 -1 ------- null} - -t 1.094 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 82 -a 1 -x {2.0 7.0 30 ------- null} h -t 1.094 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 82 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.096 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 85 -a 1 -x {2.0 7.0 31 ------- null} + -t 1.096 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 85 -a 1 -x {2.0 7.0 31 ------- null} r -t 1.1 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 68 -a 1 -x {2.0 7.0 25 ------- null} r -t 1.1 -s 4 -d 6 -p cbr -e 500 -c 1 -i 69 -a 1 -x {1.0 6.0 41 ------- null} r -t 1.102 -s 3 -d 4 -p cbr -e 500 -c 1 -i 74 -a 1 -x {1.0 6.0 44 ------- null} + -t 1.102 -s 4 -d 6 -p cbr -e 500 -c 1 -i 74 -a 1 -x {1.0 6.0 44 ------- null} - -t 1.102 -s 4 -d 6 -p cbr -e 500 -c 1 -i 74 -a 1 -x {1.0 6.0 44 ------- null} h -t 1.102 -s 4 -d 6 -p cbr -e 500 -c 1 -i 74 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.108 -s 1 -d 3 -p cbr -e 500 -c 1 -i 86 -a 1 -x {1.0 6.0 50 ------- null} + -t 1.108 -s 3 -d 4 -p cbr -e 500 -c 1 -i 86 -a 1 -x {1.0 6.0 50 ------- null} + -t 1.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 91 -a 1 -x {1.0 6.0 53 ------- null} - -t 1.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 91 -a 1 -x {1.0 6.0 53 ------- null} h -t 1.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 91 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.11 -s 3 -d 4 -p cbr -e 500 -c 1 -i 83 -a 1 -x {1.0 6.0 48 ------- null} h -t 1.11 -s 3 -d 4 -p cbr -e 500 -c 1 -i 83 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.118 -s 3 -d 4 -p cbr -e 500 -c 1 -i 84 -a 1 -x {1.0 6.0 49 ------- null} h -t 1.118 -s 3 -d 4 -p cbr -e 500 -c 1 -i 84 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 92 -a 1 -x {2.0 7.0 34 ------- null} - -t 1.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 92 -a 1 -x {2.0 7.0 34 ------- null} h -t 1.12 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 92 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.122 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 75 -a 1 -x {2.0 7.0 28 ------- null} + -t 1.122 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 75 -a 1 -x {2.0 7.0 28 ------- null} - -t 1.122 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 75 -a 1 -x {2.0 7.0 28 ------- null} h -t 1.122 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 75 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.126 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 87 -a 1 -x {2.0 7.0 32 ------- null} + -t 1.126 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 87 -a 1 -x {2.0 7.0 32 ------- null} - -t 1.126 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 85 -a 1 -x {2.0 7.0 31 ------- null} h -t 1.126 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 85 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.128 -s 1 -d 3 -p cbr -e 500 -c 1 -i 88 -a 1 -x {1.0 6.0 51 ------- null} + -t 1.128 -s 3 -d 4 -p cbr -e 500 -c 1 -i 88 -a 1 -x {1.0 6.0 51 ------- null} r -t 1.128 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 70 -a 1 -x {2.0 7.0 26 ------- null} r -t 1.128 -s 4 -d 6 -p cbr -e 500 -c 1 -i 71 -a 1 -x {1.0 6.0 42 ------- null} + -t 1.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 93 -a 1 -x {1.0 6.0 54 ------- null} - -t 1.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 93 -a 1 -x {1.0 6.0 54 ------- null} h -t 1.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 93 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.136 -s 4 -d 6 -p cbr -e 500 -c 1 -i 72 -a 1 -x {1.0 6.0 43 ------- null} r -t 1.138 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {0.0 5.0 1 ------- null} + -t 1.138 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {0.0 5.0 1 ------- null} - -t 1.138 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {0.0 5.0 1 ------- null} h -t 1.138 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {0.0 5.0 -1 ------- null} - -t 1.142 -s 3 -d 4 -p cbr -e 500 -c 1 -i 86 -a 1 -x {1.0 6.0 50 ------- null} h -t 1.142 -s 3 -d 4 -p cbr -e 500 -c 1 -i 86 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.146 -s 3 -d 4 -p cbr -e 500 -c 1 -i 78 -a 1 -x {1.0 6.0 45 ------- null} + -t 1.146 -s 4 -d 6 -p cbr -e 500 -c 1 -i 78 -a 1 -x {1.0 6.0 45 ------- null} - -t 1.146 -s 4 -d 6 -p cbr -e 500 -c 1 -i 78 -a 1 -x {1.0 6.0 45 ------- null} h -t 1.146 -s 4 -d 6 -p cbr -e 500 -c 1 -i 78 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.148 -s 1 -d 3 -p cbr -e 500 -c 1 -i 89 -a 1 -x {1.0 6.0 52 ------- null} + -t 1.148 -s 3 -d 4 -p cbr -e 500 -c 1 -i 89 -a 1 -x {1.0 6.0 52 ------- null} + -t 1.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 94 -a 1 -x {1.0 6.0 55 ------- null} - -t 1.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 94 -a 1 -x {1.0 6.0 55 ------- null} h -t 1.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 94 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.15 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 95 -a 1 -x {2.0 7.0 35 ------- null} - -t 1.15 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 95 -a 1 -x {2.0 7.0 35 ------- null} h -t 1.15 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 95 -a 1 -x {2.0 7.0 -1 ------- null} - -t 1.15 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 87 -a 1 -x {2.0 7.0 32 ------- null} h -t 1.15 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 87 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.156 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 90 -a 1 -x {2.0 7.0 33 ------- null} + -t 1.156 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 90 -a 1 -x {2.0 7.0 33 ------- null} r -t 1.16 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 73 -a 1 -x {2.0 7.0 27 ------- null} r -t 1.16 -s 4 -d 6 -p cbr -e 500 -c 1 -i 74 -a 1 -x {1.0 6.0 44 ------- null} r -t 1.162 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {0.0 5.0 2 ------- null} + -t 1.162 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {0.0 5.0 2 ------- null} - -t 1.162 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {0.0 5.0 2 ------- null} h -t 1.162 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {0.0 5.0 -1 ------- null} - -t 1.166 -s 3 -d 4 -p cbr -e 500 -c 1 -i 88 -a 1 -x {1.0 6.0 51 ------- null} h -t 1.166 -s 3 -d 4 -p cbr -e 500 -c 1 -i 88 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.168 -s 1 -d 3 -p cbr -e 500 -c 1 -i 91 -a 1 -x {1.0 6.0 53 ------- null} + -t 1.168 -s 3 -d 4 -p cbr -e 500 -c 1 -i 91 -a 1 -x {1.0 6.0 53 ------- null} + -t 1.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 96 -a 1 -x {1.0 6.0 56 ------- null} - -t 1.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 96 -a 1 -x {1.0 6.0 56 ------- null} h -t 1.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 96 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.17 -s 3 -d 4 -p cbr -e 500 -c 1 -i 79 -a 1 -x {1.0 6.0 46 ------- null} + -t 1.17 -s 4 -d 6 -p cbr -e 500 -c 1 -i 79 -a 1 -x {1.0 6.0 46 ------- null} - -t 1.17 -s 4 -d 6 -p cbr -e 500 -c 1 -i 79 -a 1 -x {1.0 6.0 46 ------- null} h -t 1.17 -s 4 -d 6 -p cbr -e 500 -c 1 -i 79 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.174 -s 3 -d 4 -p cbr -e 500 -c 1 -i 89 -a 1 -x {1.0 6.0 52 ------- null} h -t 1.174 -s 3 -d 4 -p cbr -e 500 -c 1 -i 89 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 97 -a 1 -x {2.0 7.0 36 ------- null} - -t 1.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 97 -a 1 -x {2.0 7.0 36 ------- null} h -t 1.18 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 97 -a 1 -x {2.0 7.0 -1 ------- null} - -t 1.182 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 90 -a 1 -x {2.0 7.0 33 ------- null} h -t 1.182 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 90 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.186 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 80 -a 1 -x {2.0 7.0 29 ------- null} + -t 1.186 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 80 -a 1 -x {2.0 7.0 29 ------- null} - -t 1.186 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 80 -a 1 -x {2.0 7.0 29 ------- null} h -t 1.186 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 80 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.186 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 92 -a 1 -x {2.0 7.0 34 ------- null} + -t 1.186 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 92 -a 1 -x {2.0 7.0 34 ------- null} r -t 1.188 -s 1 -d 3 -p cbr -e 500 -c 1 -i 93 -a 1 -x {1.0 6.0 54 ------- null} + -t 1.188 -s 3 -d 4 -p cbr -e 500 -c 1 -i 93 -a 1 -x {1.0 6.0 54 ------- null} r -t 1.188 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 75 -a 1 -x {2.0 7.0 28 ------- null} + -t 1.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 98 -a 1 -x {1.0 6.0 57 ------- null} - -t 1.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 98 -a 1 -x {1.0 6.0 57 ------- null} h -t 1.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 98 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.194 -s 3 -d 4 -p cbr -e 500 -c 1 -i 81 -a 1 -x {1.0 6.0 47 ------- null} + -t 1.194 -s 4 -d 6 -p cbr -e 500 -c 1 -i 81 -a 1 -x {1.0 6.0 47 ------- null} - -t 1.194 -s 4 -d 6 -p cbr -e 500 -c 1 -i 81 -a 1 -x {1.0 6.0 47 ------- null} h -t 1.194 -s 4 -d 6 -p cbr -e 500 -c 1 -i 81 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.196 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 76 -a 0 -x {0.0 5.0 1 ------- null} + -t 1.196 -s 5 -d 4 -p ack -e 40 -c 0 -i 99 -a 0 -x {5.0 0.0 1 ------- null} - -t 1.196 -s 5 -d 4 -p ack -e 40 -c 0 -i 99 -a 0 -x {5.0 0.0 1 ------- null} h -t 1.196 -s 5 -d 4 -p ack -e 40 -c 0 -i 99 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.198 -s 3 -d 4 -p cbr -e 500 -c 1 -i 91 -a 1 -x {1.0 6.0 53 ------- null} h -t 1.198 -s 3 -d 4 -p cbr -e 500 -c 1 -i 91 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.204 -s 4 -d 6 -p cbr -e 500 -c 1 -i 78 -a 1 -x {1.0 6.0 45 ------- null} - -t 1.206 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 92 -a 1 -x {2.0 7.0 34 ------- null} h -t 1.206 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 92 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.208 -s 1 -d 3 -p cbr -e 500 -c 1 -i 94 -a 1 -x {1.0 6.0 55 ------- null} + -t 1.208 -s 3 -d 4 -p cbr -e 500 -c 1 -i 94 -a 1 -x {1.0 6.0 55 ------- null} + -t 1.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 100 -a 1 -x {1.0 6.0 58 ------- null} - -t 1.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 100 -a 1 -x {1.0 6.0 58 ------- null} h -t 1.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 100 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.21 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 82 -a 1 -x {2.0 7.0 30 ------- null} + -t 1.21 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 82 -a 1 -x {2.0 7.0 30 ------- null} - -t 1.21 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 82 -a 1 -x {2.0 7.0 30 ------- null} h -t 1.21 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 82 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.21 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 101 -a 1 -x {2.0 7.0 37 ------- null} - -t 1.21 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 101 -a 1 -x {2.0 7.0 37 ------- null} h -t 1.21 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 101 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.216 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 95 -a 1 -x {2.0 7.0 35 ------- null} + -t 1.216 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 95 -a 1 -x {2.0 7.0 35 ------- null} r -t 1.218 -s 3 -d 4 -p cbr -e 500 -c 1 -i 83 -a 1 -x {1.0 6.0 48 ------- null} + -t 1.218 -s 4 -d 6 -p cbr -e 500 -c 1 -i 83 -a 1 -x {1.0 6.0 48 ------- null} - -t 1.218 -s 4 -d 6 -p cbr -e 500 -c 1 -i 83 -a 1 -x {1.0 6.0 48 ------- null} h -t 1.218 -s 4 -d 6 -p cbr -e 500 -c 1 -i 83 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.22 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 77 -a 0 -x {0.0 5.0 2 ------- null} + -t 1.22 -s 5 -d 4 -p ack -e 40 -c 0 -i 102 -a 0 -x {5.0 0.0 2 ------- null} - -t 1.22 -s 5 -d 4 -p ack -e 40 -c 0 -i 102 -a 0 -x {5.0 0.0 2 ------- null} h -t 1.22 -s 5 -d 4 -p ack -e 40 -c 0 -i 102 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.222 -s 3 -d 4 -p cbr -e 500 -c 1 -i 93 -a 1 -x {1.0 6.0 54 ------- null} h -t 1.222 -s 3 -d 4 -p cbr -e 500 -c 1 -i 93 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.226 -s 3 -d 4 -p cbr -e 500 -c 1 -i 84 -a 1 -x {1.0 6.0 49 ------- null} + -t 1.226 -s 4 -d 6 -p cbr -e 500 -c 1 -i 84 -a 1 -x {1.0 6.0 49 ------- null} - -t 1.226 -s 4 -d 6 -p cbr -e 500 -c 1 -i 84 -a 1 -x {1.0 6.0 49 ------- null} h -t 1.226 -s 4 -d 6 -p cbr -e 500 -c 1 -i 84 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.228 -s 1 -d 3 -p cbr -e 500 -c 1 -i 96 -a 1 -x {1.0 6.0 56 ------- null} + -t 1.228 -s 3 -d 4 -p cbr -e 500 -c 1 -i 96 -a 1 -x {1.0 6.0 56 ------- null} r -t 1.228 -s 4 -d 6 -p cbr -e 500 -c 1 -i 79 -a 1 -x {1.0 6.0 46 ------- null} + -t 1.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 103 -a 1 -x {1.0 6.0 59 ------- null} - -t 1.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 103 -a 1 -x {1.0 6.0 59 ------- null} h -t 1.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 103 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.23 -s 3 -d 4 -p cbr -e 500 -c 1 -i 94 -a 1 -x {1.0 6.0 55 ------- null} h -t 1.23 -s 3 -d 4 -p cbr -e 500 -c 1 -i 94 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.238 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 95 -a 1 -x {2.0 7.0 35 ------- null} h -t 1.238 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 95 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 104 -a 1 -x {2.0 7.0 38 ------- null} - -t 1.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 104 -a 1 -x {2.0 7.0 38 ------- null} h -t 1.24 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 104 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.242 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 85 -a 1 -x {2.0 7.0 31 ------- null} + -t 1.242 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 85 -a 1 -x {2.0 7.0 31 ------- null} - -t 1.242 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 85 -a 1 -x {2.0 7.0 31 ------- null} h -t 1.242 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 85 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.246 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 97 -a 1 -x {2.0 7.0 36 ------- null} + -t 1.246 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 97 -a 1 -x {2.0 7.0 36 ------- null} r -t 1.24632 -s 5 -d 4 -p ack -e 40 -c 0 -i 99 -a 0 -x {5.0 0.0 1 ------- null} + -t 1.24632 -s 4 -d 3 -p ack -e 40 -c 0 -i 99 -a 0 -x {5.0 0.0 1 ------- null} - -t 1.24632 -s 4 -d 3 -p ack -e 40 -c 0 -i 99 -a 0 -x {5.0 0.0 1 ------- null} h -t 1.24632 -s 4 -d 3 -p ack -e 40 -c 0 -i 99 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.248 -s 1 -d 3 -p cbr -e 500 -c 1 -i 98 -a 1 -x {1.0 6.0 57 ------- null} + -t 1.248 -s 3 -d 4 -p cbr -e 500 -c 1 -i 98 -a 1 -x {1.0 6.0 57 ------- null} + -t 1.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 105 -a 1 -x {1.0 6.0 60 ------- null} - -t 1.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 105 -a 1 -x {1.0 6.0 60 ------- null} h -t 1.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 105 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.25 -s 3 -d 4 -p cbr -e 500 -c 1 -i 86 -a 1 -x {1.0 6.0 50 ------- null} + -t 1.25 -s 4 -d 6 -p cbr -e 500 -c 1 -i 86 -a 1 -x {1.0 6.0 50 ------- null} - -t 1.25 -s 4 -d 6 -p cbr -e 500 -c 1 -i 86 -a 1 -x {1.0 6.0 50 ------- null} h -t 1.25 -s 4 -d 6 -p cbr -e 500 -c 1 -i 86 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.252 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 80 -a 1 -x {2.0 7.0 29 ------- null} r -t 1.252 -s 4 -d 6 -p cbr -e 500 -c 1 -i 81 -a 1 -x {1.0 6.0 47 ------- null} - -t 1.254 -s 3 -d 4 -p cbr -e 500 -c 1 -i 96 -a 1 -x {1.0 6.0 56 ------- null} h -t 1.254 -s 3 -d 4 -p cbr -e 500 -c 1 -i 96 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.262 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 97 -a 1 -x {2.0 7.0 36 ------- null} h -t 1.262 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 97 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.266 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 87 -a 1 -x {2.0 7.0 32 ------- null} + -t 1.266 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 87 -a 1 -x {2.0 7.0 32 ------- null} - -t 1.266 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 87 -a 1 -x {2.0 7.0 32 ------- null} h -t 1.266 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 87 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.268 -s 1 -d 3 -p cbr -e 500 -c 1 -i 100 -a 1 -x {1.0 6.0 58 ------- null} + -t 1.268 -s 3 -d 4 -p cbr -e 500 -c 1 -i 100 -a 1 -x {1.0 6.0 58 ------- null} + -t 1.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 106 -a 1 -x {1.0 6.0 61 ------- null} - -t 1.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 106 -a 1 -x {1.0 6.0 61 ------- null} h -t 1.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 106 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.27 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 107 -a 1 -x {2.0 7.0 39 ------- null} - -t 1.27 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 107 -a 1 -x {2.0 7.0 39 ------- null} h -t 1.27 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 107 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.27032 -s 5 -d 4 -p ack -e 40 -c 0 -i 102 -a 0 -x {5.0 0.0 2 ------- null} + -t 1.27032 -s 4 -d 3 -p ack -e 40 -c 0 -i 102 -a 0 -x {5.0 0.0 2 ------- null} - -t 1.27032 -s 4 -d 3 -p ack -e 40 -c 0 -i 102 -a 0 -x {5.0 0.0 2 ------- null} h -t 1.27032 -s 4 -d 3 -p ack -e 40 -c 0 -i 102 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.274 -s 3 -d 4 -p cbr -e 500 -c 1 -i 88 -a 1 -x {1.0 6.0 51 ------- null} + -t 1.274 -s 4 -d 6 -p cbr -e 500 -c 1 -i 88 -a 1 -x {1.0 6.0 51 ------- null} - -t 1.274 -s 4 -d 6 -p cbr -e 500 -c 1 -i 88 -a 1 -x {1.0 6.0 51 ------- null} h -t 1.274 -s 4 -d 6 -p cbr -e 500 -c 1 -i 88 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.276 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 82 -a 1 -x {2.0 7.0 30 ------- null} r -t 1.276 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 101 -a 1 -x {2.0 7.0 37 ------- null} + -t 1.276 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 101 -a 1 -x {2.0 7.0 37 ------- null} r -t 1.276 -s 4 -d 6 -p cbr -e 500 -c 1 -i 83 -a 1 -x {1.0 6.0 48 ------- null} - -t 1.278 -s 3 -d 4 -p cbr -e 500 -c 1 -i 98 -a 1 -x {1.0 6.0 57 ------- null} h -t 1.278 -s 3 -d 4 -p cbr -e 500 -c 1 -i 98 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.282 -s 3 -d 4 -p cbr -e 500 -c 1 -i 89 -a 1 -x {1.0 6.0 52 ------- null} + -t 1.282 -s 4 -d 6 -p cbr -e 500 -c 1 -i 89 -a 1 -x {1.0 6.0 52 ------- null} - -t 1.282 -s 4 -d 6 -p cbr -e 500 -c 1 -i 89 -a 1 -x {1.0 6.0 52 ------- null} h -t 1.282 -s 4 -d 6 -p cbr -e 500 -c 1 -i 89 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.284 -s 4 -d 6 -p cbr -e 500 -c 1 -i 84 -a 1 -x {1.0 6.0 49 ------- null} - -t 1.286 -s 3 -d 4 -p cbr -e 500 -c 1 -i 100 -a 1 -x {1.0 6.0 58 ------- null} h -t 1.286 -s 3 -d 4 -p cbr -e 500 -c 1 -i 100 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.288 -s 1 -d 3 -p cbr -e 500 -c 1 -i 103 -a 1 -x {1.0 6.0 59 ------- null} + -t 1.288 -s 3 -d 4 -p cbr -e 500 -c 1 -i 103 -a 1 -x {1.0 6.0 59 ------- null} + -t 1.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 108 -a 1 -x {1.0 6.0 62 ------- null} - -t 1.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 108 -a 1 -x {1.0 6.0 62 ------- null} h -t 1.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 108 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.294 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 101 -a 1 -x {2.0 7.0 37 ------- null} h -t 1.294 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 101 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.298 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 90 -a 1 -x {2.0 7.0 33 ------- null} + -t 1.298 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 90 -a 1 -x {2.0 7.0 33 ------- null} - -t 1.298 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 90 -a 1 -x {2.0 7.0 33 ------- null} h -t 1.298 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 90 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 109 -a 1 -x {2.0 7.0 40 ------- null} - -t 1.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 109 -a 1 -x {2.0 7.0 40 ------- null} h -t 1.3 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 109 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.306 -s 3 -d 4 -p cbr -e 500 -c 1 -i 91 -a 1 -x {1.0 6.0 53 ------- null} + -t 1.306 -s 4 -d 6 -p cbr -e 500 -c 1 -i 91 -a 1 -x {1.0 6.0 53 ------- null} - -t 1.306 -s 4 -d 6 -p cbr -e 500 -c 1 -i 91 -a 1 -x {1.0 6.0 53 ------- null} h -t 1.306 -s 4 -d 6 -p cbr -e 500 -c 1 -i 91 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.306 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 104 -a 1 -x {2.0 7.0 38 ------- null} + -t 1.306 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 104 -a 1 -x {2.0 7.0 38 ------- null} r -t 1.308 -s 1 -d 3 -p cbr -e 500 -c 1 -i 105 -a 1 -x {1.0 6.0 60 ------- null} + -t 1.308 -s 3 -d 4 -p cbr -e 500 -c 1 -i 105 -a 1 -x {1.0 6.0 60 ------- null} r -t 1.308 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 85 -a 1 -x {2.0 7.0 31 ------- null} r -t 1.308 -s 4 -d 6 -p cbr -e 500 -c 1 -i 86 -a 1 -x {1.0 6.0 50 ------- null} + -t 1.31 -s 1 -d 3 -p cbr -e 500 -c 1 -i 110 -a 1 -x {1.0 6.0 63 ------- null} - -t 1.31 -s 1 -d 3 -p cbr -e 500 -c 1 -i 110 -a 1 -x {1.0 6.0 63 ------- null} h -t 1.31 -s 1 -d 3 -p cbr -e 500 -c 1 -i 110 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.31 -s 3 -d 4 -p cbr -e 500 -c 1 -i 103 -a 1 -x {1.0 6.0 59 ------- null} h -t 1.31 -s 3 -d 4 -p cbr -e 500 -c 1 -i 103 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.318 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 104 -a 1 -x {2.0 7.0 38 ------- null} h -t 1.318 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 104 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.322 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 92 -a 1 -x {2.0 7.0 34 ------- null} + -t 1.322 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 92 -a 1 -x {2.0 7.0 34 ------- null} - -t 1.322 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 92 -a 1 -x {2.0 7.0 34 ------- null} h -t 1.322 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 92 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.328 -s 1 -d 3 -p cbr -e 500 -c 1 -i 106 -a 1 -x {1.0 6.0 61 ------- null} + -t 1.328 -s 3 -d 4 -p cbr -e 500 -c 1 -i 106 -a 1 -x {1.0 6.0 61 ------- null} + -t 1.33 -s 1 -d 3 -p cbr -e 500 -c 1 -i 111 -a 1 -x {1.0 6.0 64 ------- null} - -t 1.33 -s 1 -d 3 -p cbr -e 500 -c 1 -i 111 -a 1 -x {1.0 6.0 64 ------- null} h -t 1.33 -s 1 -d 3 -p cbr -e 500 -c 1 -i 111 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.33 -s 3 -d 4 -p cbr -e 500 -c 1 -i 93 -a 1 -x {1.0 6.0 54 ------- null} + -t 1.33 -s 4 -d 6 -p cbr -e 500 -c 1 -i 93 -a 1 -x {1.0 6.0 54 ------- null} - -t 1.33 -s 4 -d 6 -p cbr -e 500 -c 1 -i 93 -a 1 -x {1.0 6.0 54 ------- null} h -t 1.33 -s 4 -d 6 -p cbr -e 500 -c 1 -i 93 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.33 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 112 -a 1 -x {2.0 7.0 41 ------- null} - -t 1.33 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 112 -a 1 -x {2.0 7.0 41 ------- null} h -t 1.33 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 112 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.332 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 87 -a 1 -x {2.0 7.0 32 ------- null} r -t 1.332 -s 4 -d 6 -p cbr -e 500 -c 1 -i 88 -a 1 -x {1.0 6.0 51 ------- null} - -t 1.334 -s 3 -d 4 -p cbr -e 500 -c 1 -i 105 -a 1 -x {1.0 6.0 60 ------- null} h -t 1.334 -s 3 -d 4 -p cbr -e 500 -c 1 -i 105 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.336 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 107 -a 1 -x {2.0 7.0 39 ------- null} + -t 1.336 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 107 -a 1 -x {2.0 7.0 39 ------- null} r -t 1.338 -s 3 -d 4 -p cbr -e 500 -c 1 -i 94 -a 1 -x {1.0 6.0 55 ------- null} + -t 1.338 -s 4 -d 6 -p cbr -e 500 -c 1 -i 94 -a 1 -x {1.0 6.0 55 ------- null} - -t 1.338 -s 4 -d 6 -p cbr -e 500 -c 1 -i 94 -a 1 -x {1.0 6.0 55 ------- null} h -t 1.338 -s 4 -d 6 -p cbr -e 500 -c 1 -i 94 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.34 -s 4 -d 6 -p cbr -e 500 -c 1 -i 89 -a 1 -x {1.0 6.0 52 ------- null} - -t 1.342 -s 3 -d 4 -p cbr -e 500 -c 1 -i 106 -a 1 -x {1.0 6.0 61 ------- null} h -t 1.342 -s 3 -d 4 -p cbr -e 500 -c 1 -i 106 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.34696 -s 4 -d 3 -p ack -e 40 -c 0 -i 99 -a 0 -x {5.0 0.0 1 ------- null} + -t 1.34696 -s 3 -d 0 -p ack -e 40 -c 0 -i 99 -a 0 -x {5.0 0.0 1 ------- null} - -t 1.34696 -s 3 -d 0 -p ack -e 40 -c 0 -i 99 -a 0 -x {5.0 0.0 1 ------- null} h -t 1.34696 -s 3 -d 0 -p ack -e 40 -c 0 -i 99 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.348 -s 1 -d 3 -p cbr -e 500 -c 1 -i 108 -a 1 -x {1.0 6.0 62 ------- null} + -t 1.348 -s 3 -d 4 -p cbr -e 500 -c 1 -i 108 -a 1 -x {1.0 6.0 62 ------- null} + -t 1.35 -s 1 -d 3 -p cbr -e 500 -c 1 -i 113 -a 1 -x {1.0 6.0 65 ------- null} - -t 1.35 -s 1 -d 3 -p cbr -e 500 -c 1 -i 113 -a 1 -x {1.0 6.0 65 ------- null} h -t 1.35 -s 1 -d 3 -p cbr -e 500 -c 1 -i 113 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.35 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 107 -a 1 -x {2.0 7.0 39 ------- null} h -t 1.35 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 107 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.354 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 95 -a 1 -x {2.0 7.0 35 ------- null} + -t 1.354 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 95 -a 1 -x {2.0 7.0 35 ------- null} - -t 1.354 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 95 -a 1 -x {2.0 7.0 35 ------- null} h -t 1.354 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 95 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 114 -a 1 -x {2.0 7.0 42 ------- null} - -t 1.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 114 -a 1 -x {2.0 7.0 42 ------- null} h -t 1.36 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 114 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.362 -s 3 -d 4 -p cbr -e 500 -c 1 -i 96 -a 1 -x {1.0 6.0 56 ------- null} + -t 1.362 -s 4 -d 6 -p cbr -e 500 -c 1 -i 96 -a 1 -x {1.0 6.0 56 ------- null} - -t 1.362 -s 4 -d 6 -p cbr -e 500 -c 1 -i 96 -a 1 -x {1.0 6.0 56 ------- null} h -t 1.362 -s 4 -d 6 -p cbr -e 500 -c 1 -i 96 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.364 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 90 -a 1 -x {2.0 7.0 33 ------- null} r -t 1.364 -s 4 -d 6 -p cbr -e 500 -c 1 -i 91 -a 1 -x {1.0 6.0 53 ------- null} r -t 1.366 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 109 -a 1 -x {2.0 7.0 40 ------- null} + -t 1.366 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 109 -a 1 -x {2.0 7.0 40 ------- null} - -t 1.366 -s 3 -d 4 -p cbr -e 500 -c 1 -i 108 -a 1 -x {1.0 6.0 62 ------- null} h -t 1.366 -s 3 -d 4 -p cbr -e 500 -c 1 -i 108 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.368 -s 1 -d 3 -p cbr -e 500 -c 1 -i 110 -a 1 -x {1.0 6.0 63 ------- null} + -t 1.368 -s 3 -d 4 -p cbr -e 500 -c 1 -i 110 -a 1 -x {1.0 6.0 63 ------- null} + -t 1.37 -s 1 -d 3 -p cbr -e 500 -c 1 -i 115 -a 1 -x {1.0 6.0 66 ------- null} - -t 1.37 -s 1 -d 3 -p cbr -e 500 -c 1 -i 115 -a 1 -x {1.0 6.0 66 ------- null} h -t 1.37 -s 1 -d 3 -p cbr -e 500 -c 1 -i 115 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.37096 -s 4 -d 3 -p ack -e 40 -c 0 -i 102 -a 0 -x {5.0 0.0 2 ------- null} + -t 1.37096 -s 3 -d 0 -p ack -e 40 -c 0 -i 102 -a 0 -x {5.0 0.0 2 ------- null} - -t 1.37096 -s 3 -d 0 -p ack -e 40 -c 0 -i 102 -a 0 -x {5.0 0.0 2 ------- null} h -t 1.37096 -s 3 -d 0 -p ack -e 40 -c 0 -i 102 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.374 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 109 -a 1 -x {2.0 7.0 40 ------- null} h -t 1.374 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 109 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.378 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 97 -a 1 -x {2.0 7.0 36 ------- null} + -t 1.378 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 97 -a 1 -x {2.0 7.0 36 ------- null} - -t 1.378 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 97 -a 1 -x {2.0 7.0 36 ------- null} h -t 1.378 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 97 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.386 -s 3 -d 4 -p cbr -e 500 -c 1 -i 98 -a 1 -x {1.0 6.0 57 ------- null} + -t 1.386 -s 4 -d 6 -p cbr -e 500 -c 1 -i 98 -a 1 -x {1.0 6.0 57 ------- null} - -t 1.386 -s 4 -d 6 -p cbr -e 500 -c 1 -i 98 -a 1 -x {1.0 6.0 57 ------- null} h -t 1.386 -s 4 -d 6 -p cbr -e 500 -c 1 -i 98 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.388 -s 1 -d 3 -p cbr -e 500 -c 1 -i 111 -a 1 -x {1.0 6.0 64 ------- null} + -t 1.388 -s 3 -d 4 -p cbr -e 500 -c 1 -i 111 -a 1 -x {1.0 6.0 64 ------- null} r -t 1.388 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 92 -a 1 -x {2.0 7.0 34 ------- null} r -t 1.388 -s 4 -d 6 -p cbr -e 500 -c 1 -i 93 -a 1 -x {1.0 6.0 54 ------- null} + -t 1.39 -s 1 -d 3 -p cbr -e 500 -c 1 -i 116 -a 1 -x {1.0 6.0 67 ------- null} - -t 1.39 -s 1 -d 3 -p cbr -e 500 -c 1 -i 116 -a 1 -x {1.0 6.0 67 ------- null} h -t 1.39 -s 1 -d 3 -p cbr -e 500 -c 1 -i 116 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.39 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 117 -a 1 -x {2.0 7.0 43 ------- null} - -t 1.39 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 117 -a 1 -x {2.0 7.0 43 ------- null} h -t 1.39 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 117 -a 1 -x {2.0 7.0 -1 ------- null} - -t 1.39 -s 3 -d 4 -p cbr -e 500 -c 1 -i 110 -a 1 -x {1.0 6.0 63 ------- null} h -t 1.39 -s 3 -d 4 -p cbr -e 500 -c 1 -i 110 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.394 -s 3 -d 4 -p cbr -e 500 -c 1 -i 100 -a 1 -x {1.0 6.0 58 ------- null} + -t 1.394 -s 4 -d 6 -p cbr -e 500 -c 1 -i 100 -a 1 -x {1.0 6.0 58 ------- null} - -t 1.394 -s 4 -d 6 -p cbr -e 500 -c 1 -i 100 -a 1 -x {1.0 6.0 58 ------- null} h -t 1.394 -s 4 -d 6 -p cbr -e 500 -c 1 -i 100 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.396 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 112 -a 1 -x {2.0 7.0 41 ------- null} + -t 1.396 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 112 -a 1 -x {2.0 7.0 41 ------- null} r -t 1.396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 94 -a 1 -x {1.0 6.0 55 ------- null} r -t 1.39728 -s 3 -d 0 -p ack -e 40 -c 0 -i 99 -a 0 -x {5.0 0.0 1 ------- null} + -t 1.39728 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {0.0 5.0 3 ------- null} - -t 1.39728 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {0.0 5.0 3 ------- null} h -t 1.39728 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {0.0 5.0 -1 ------- null} + -t 1.39728 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {0.0 5.0 4 ------- null} - -t 1.398 -s 3 -d 4 -p cbr -e 500 -c 1 -i 111 -a 1 -x {1.0 6.0 64 ------- null} h -t 1.398 -s 3 -d 4 -p cbr -e 500 -c 1 -i 111 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.40528 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {0.0 5.0 4 ------- null} h -t 1.40528 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {0.0 5.0 -1 ------- null} - -t 1.406 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 112 -a 1 -x {2.0 7.0 41 ------- null} h -t 1.406 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 112 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.408 -s 1 -d 3 -p cbr -e 500 -c 1 -i 113 -a 1 -x {1.0 6.0 65 ------- null} + -t 1.408 -s 3 -d 4 -p cbr -e 500 -c 1 -i 113 -a 1 -x {1.0 6.0 65 ------- null} + -t 1.41 -s 1 -d 3 -p cbr -e 500 -c 1 -i 120 -a 1 -x {1.0 6.0 68 ------- null} - -t 1.41 -s 1 -d 3 -p cbr -e 500 -c 1 -i 120 -a 1 -x {1.0 6.0 68 ------- null} h -t 1.41 -s 1 -d 3 -p cbr -e 500 -c 1 -i 120 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.41 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 101 -a 1 -x {2.0 7.0 37 ------- null} + -t 1.41 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 101 -a 1 -x {2.0 7.0 37 ------- null} - -t 1.41 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 101 -a 1 -x {2.0 7.0 37 ------- null} h -t 1.41 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 101 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.418 -s 3 -d 4 -p cbr -e 500 -c 1 -i 103 -a 1 -x {1.0 6.0 59 ------- null} + -t 1.418 -s 4 -d 6 -p cbr -e 500 -c 1 -i 103 -a 1 -x {1.0 6.0 59 ------- null} - -t 1.418 -s 4 -d 6 -p cbr -e 500 -c 1 -i 103 -a 1 -x {1.0 6.0 59 ------- null} h -t 1.418 -s 4 -d 6 -p cbr -e 500 -c 1 -i 103 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.42 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 95 -a 1 -x {2.0 7.0 35 ------- null} r -t 1.42 -s 4 -d 6 -p cbr -e 500 -c 1 -i 96 -a 1 -x {1.0 6.0 56 ------- null} + -t 1.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 121 -a 1 -x {2.0 7.0 44 ------- null} - -t 1.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 121 -a 1 -x {2.0 7.0 44 ------- null} h -t 1.42 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 121 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.42128 -s 3 -d 0 -p ack -e 40 -c 0 -i 102 -a 0 -x {5.0 0.0 2 ------- null} + -t 1.42128 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 122 -a 0 -x {0.0 5.0 5 ------- null} - -t 1.42128 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 122 -a 0 -x {0.0 5.0 5 ------- null} h -t 1.42128 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 122 -a 0 -x {0.0 5.0 -1 ------- null} + -t 1.42128 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 123 -a 0 -x {0.0 5.0 6 ------- null} - -t 1.422 -s 3 -d 4 -p cbr -e 500 -c 1 -i 113 -a 1 -x {1.0 6.0 65 ------- null} h -t 1.422 -s 3 -d 4 -p cbr -e 500 -c 1 -i 113 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.426 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 114 -a 1 -x {2.0 7.0 42 ------- null} + -t 1.426 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 114 -a 1 -x {2.0 7.0 42 ------- null} r -t 1.428 -s 1 -d 3 -p cbr -e 500 -c 1 -i 115 -a 1 -x {1.0 6.0 66 ------- null} + -t 1.428 -s 3 -d 4 -p cbr -e 500 -c 1 -i 115 -a 1 -x {1.0 6.0 66 ------- null} - -t 1.42928 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 123 -a 0 -x {0.0 5.0 6 ------- null} h -t 1.42928 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 123 -a 0 -x {0.0 5.0 -1 ------- null} + -t 1.43 -s 1 -d 3 -p cbr -e 500 -c 1 -i 124 -a 1 -x {1.0 6.0 69 ------- null} - -t 1.43 -s 1 -d 3 -p cbr -e 500 -c 1 -i 124 -a 1 -x {1.0 6.0 69 ------- null} h -t 1.43 -s 1 -d 3 -p cbr -e 500 -c 1 -i 124 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.43 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 114 -a 1 -x {2.0 7.0 42 ------- null} h -t 1.43 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 114 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.434 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 104 -a 1 -x {2.0 7.0 38 ------- null} + -t 1.434 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 104 -a 1 -x {2.0 7.0 38 ------- null} - -t 1.434 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 104 -a 1 -x {2.0 7.0 38 ------- null} h -t 1.434 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 104 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.442 -s 3 -d 4 -p cbr -e 500 -c 1 -i 105 -a 1 -x {1.0 6.0 60 ------- null} + -t 1.442 -s 4 -d 6 -p cbr -e 500 -c 1 -i 105 -a 1 -x {1.0 6.0 60 ------- null} - -t 1.442 -s 4 -d 6 -p cbr -e 500 -c 1 -i 105 -a 1 -x {1.0 6.0 60 ------- null} h -t 1.442 -s 4 -d 6 -p cbr -e 500 -c 1 -i 105 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.444 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 97 -a 1 -x {2.0 7.0 36 ------- null} r -t 1.444 -s 4 -d 6 -p cbr -e 500 -c 1 -i 98 -a 1 -x {1.0 6.0 57 ------- null} - -t 1.446 -s 3 -d 4 -p cbr -e 500 -c 1 -i 115 -a 1 -x {1.0 6.0 66 ------- null} h -t 1.446 -s 3 -d 4 -p cbr -e 500 -c 1 -i 115 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.448 -s 1 -d 3 -p cbr -e 500 -c 1 -i 116 -a 1 -x {1.0 6.0 67 ------- null} + -t 1.448 -s 3 -d 4 -p cbr -e 500 -c 1 -i 116 -a 1 -x {1.0 6.0 67 ------- null} + -t 1.45 -s 1 -d 3 -p cbr -e 500 -c 1 -i 125 -a 1 -x {1.0 6.0 70 ------- null} - -t 1.45 -s 1 -d 3 -p cbr -e 500 -c 1 -i 125 -a 1 -x {1.0 6.0 70 ------- null} h -t 1.45 -s 1 -d 3 -p cbr -e 500 -c 1 -i 125 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.45 -s 3 -d 4 -p cbr -e 500 -c 1 -i 106 -a 1 -x {1.0 6.0 61 ------- null} + -t 1.45 -s 4 -d 6 -p cbr -e 500 -c 1 -i 106 -a 1 -x {1.0 6.0 61 ------- null} + -t 1.45 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 126 -a 1 -x {2.0 7.0 45 ------- null} - -t 1.45 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 126 -a 1 -x {2.0 7.0 45 ------- null} h -t 1.45 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 126 -a 1 -x {2.0 7.0 -1 ------- null} - -t 1.45 -s 4 -d 6 -p cbr -e 500 -c 1 -i 106 -a 1 -x {1.0 6.0 61 ------- null} h -t 1.45 -s 4 -d 6 -p cbr -e 500 -c 1 -i 106 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.452 -s 4 -d 6 -p cbr -e 500 -c 1 -i 100 -a 1 -x {1.0 6.0 58 ------- null} - -t 1.454 -s 3 -d 4 -p cbr -e 500 -c 1 -i 116 -a 1 -x {1.0 6.0 67 ------- null} h -t 1.454 -s 3 -d 4 -p cbr -e 500 -c 1 -i 116 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.45528 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {0.0 5.0 3 ------- null} + -t 1.45528 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {0.0 5.0 3 ------- null} r -t 1.456 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 117 -a 1 -x {2.0 7.0 43 ------- null} + -t 1.456 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 117 -a 1 -x {2.0 7.0 43 ------- null} - -t 1.462 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {0.0 5.0 3 ------- null} h -t 1.462 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.46328 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {0.0 5.0 4 ------- null} + -t 1.46328 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {0.0 5.0 4 ------- null} r -t 1.466 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 107 -a 1 -x {2.0 7.0 39 ------- null} + -t 1.466 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 107 -a 1 -x {2.0 7.0 39 ------- null} - -t 1.466 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 107 -a 1 -x {2.0 7.0 39 ------- null} h -t 1.466 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 107 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.468 -s 1 -d 3 -p cbr -e 500 -c 1 -i 120 -a 1 -x {1.0 6.0 68 ------- null} + -t 1.468 -s 3 -d 4 -p cbr -e 500 -c 1 -i 120 -a 1 -x {1.0 6.0 68 ------- null} + -t 1.47 -s 1 -d 3 -p cbr -e 500 -c 1 -i 127 -a 1 -x {1.0 6.0 71 ------- null} - -t 1.47 -s 1 -d 3 -p cbr -e 500 -c 1 -i 127 -a 1 -x {1.0 6.0 71 ------- null} h -t 1.47 -s 1 -d 3 -p cbr -e 500 -c 1 -i 127 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.474 -s 3 -d 4 -p cbr -e 500 -c 1 -i 108 -a 1 -x {1.0 6.0 62 ------- null} + -t 1.474 -s 4 -d 6 -p cbr -e 500 -c 1 -i 108 -a 1 -x {1.0 6.0 62 ------- null} - -t 1.474 -s 4 -d 6 -p cbr -e 500 -c 1 -i 108 -a 1 -x {1.0 6.0 62 ------- null} h -t 1.474 -s 4 -d 6 -p cbr -e 500 -c 1 -i 108 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.476 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 101 -a 1 -x {2.0 7.0 37 ------- null} r -t 1.476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 103 -a 1 -x {1.0 6.0 59 ------- null} - -t 1.478 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 117 -a 1 -x {2.0 7.0 43 ------- null} h -t 1.478 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 117 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.47928 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 122 -a 0 -x {0.0 5.0 5 ------- null} + -t 1.47928 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 122 -a 0 -x {0.0 5.0 5 ------- null} + -t 1.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 128 -a 1 -x {2.0 7.0 46 ------- null} - -t 1.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 128 -a 1 -x {2.0 7.0 46 ------- null} h -t 1.48 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 128 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.486 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 121 -a 1 -x {2.0 7.0 44 ------- null} + -t 1.486 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 121 -a 1 -x {2.0 7.0 44 ------- null} r -t 1.48728 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 123 -a 0 -x {0.0 5.0 6 ------- null} + -t 1.48728 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 123 -a 0 -x {0.0 5.0 6 ------- null} r -t 1.488 -s 1 -d 3 -p cbr -e 500 -c 1 -i 124 -a 1 -x {1.0 6.0 69 ------- null} + -t 1.488 -s 3 -d 4 -p cbr -e 500 -c 1 -i 124 -a 1 -x {1.0 6.0 69 ------- null} + -t 1.49 -s 1 -d 3 -p cbr -e 500 -c 1 -i 129 -a 1 -x {1.0 6.0 72 ------- null} - -t 1.49 -s 1 -d 3 -p cbr -e 500 -c 1 -i 129 -a 1 -x {1.0 6.0 72 ------- null} h -t 1.49 -s 1 -d 3 -p cbr -e 500 -c 1 -i 129 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.49 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 109 -a 1 -x {2.0 7.0 40 ------- null} + -t 1.49 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 109 -a 1 -x {2.0 7.0 40 ------- null} - -t 1.49 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 109 -a 1 -x {2.0 7.0 40 ------- null} h -t 1.49 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 109 -a 1 -x {2.0 7.0 -1 ------- null} - -t 1.494 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {0.0 5.0 4 ------- null} h -t 1.494 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.498 -s 3 -d 4 -p cbr -e 500 -c 1 -i 110 -a 1 -x {1.0 6.0 63 ------- null} + -t 1.498 -s 4 -d 6 -p cbr -e 500 -c 1 -i 110 -a 1 -x {1.0 6.0 63 ------- null} - -t 1.498 -s 4 -d 6 -p cbr -e 500 -c 1 -i 110 -a 1 -x {1.0 6.0 63 ------- null} h -t 1.498 -s 4 -d 6 -p cbr -e 500 -c 1 -i 110 -a 1 -x {1.0 6.0 -1 ------- null} v -t 1.5 -e take_snapshot r -t 1.5 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 104 -a 1 -x {2.0 7.0 38 ------- null} r -t 1.5 -s 4 -d 6 -p cbr -e 500 -c 1 -i 105 -a 1 -x {1.0 6.0 60 ------- null} r -t 1.506 -s 3 -d 4 -p cbr -e 500 -c 1 -i 111 -a 1 -x {1.0 6.0 64 ------- null} + -t 1.506 -s 4 -d 6 -p cbr -e 500 -c 1 -i 111 -a 1 -x {1.0 6.0 64 ------- null} - -t 1.506 -s 4 -d 6 -p cbr -e 500 -c 1 -i 111 -a 1 -x {1.0 6.0 64 ------- null} h -t 1.506 -s 4 -d 6 -p cbr -e 500 -c 1 -i 111 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.508 -s 1 -d 3 -p cbr -e 500 -c 1 -i 125 -a 1 -x {1.0 6.0 70 ------- null} + -t 1.508 -s 3 -d 4 -p cbr -e 500 -c 1 -i 125 -a 1 -x {1.0 6.0 70 ------- null} r -t 1.508 -s 4 -d 6 -p cbr -e 500 -c 1 -i 106 -a 1 -x {1.0 6.0 61 ------- null} + -t 1.51 -s 1 -d 3 -p cbr -e 500 -c 1 -i 130 -a 1 -x {1.0 6.0 73 ------- null} - -t 1.51 -s 1 -d 3 -p cbr -e 500 -c 1 -i 130 -a 1 -x {1.0 6.0 73 ------- null} h -t 1.51 -s 1 -d 3 -p cbr -e 500 -c 1 -i 130 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.51 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 131 -a 1 -x {2.0 7.0 47 ------- null} - -t 1.51 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 131 -a 1 -x {2.0 7.0 47 ------- null} h -t 1.51 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 131 -a 1 -x {2.0 7.0 -1 ------- null} - -t 1.51 -s 3 -d 4 -p cbr -e 500 -c 1 -i 120 -a 1 -x {1.0 6.0 68 ------- null} h -t 1.51 -s 3 -d 4 -p cbr -e 500 -c 1 -i 120 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.516 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 126 -a 1 -x {2.0 7.0 45 ------- null} + -t 1.516 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 126 -a 1 -x {2.0 7.0 45 ------- null} - -t 1.518 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 122 -a 0 -x {0.0 5.0 5 ------- null} h -t 1.518 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 122 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.522 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 112 -a 1 -x {2.0 7.0 41 ------- null} + -t 1.522 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 112 -a 1 -x {2.0 7.0 41 ------- null} - -t 1.522 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 112 -a 1 -x {2.0 7.0 41 ------- null} h -t 1.522 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 112 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.528 -s 1 -d 3 -p cbr -e 500 -c 1 -i 127 -a 1 -x {1.0 6.0 71 ------- null} + -t 1.528 -s 3 -d 4 -p cbr -e 500 -c 1 -i 127 -a 1 -x {1.0 6.0 71 ------- null} + -t 1.53 -s 1 -d 3 -p cbr -e 500 -c 1 -i 132 -a 1 -x {1.0 6.0 74 ------- null} - -t 1.53 -s 1 -d 3 -p cbr -e 500 -c 1 -i 132 -a 1 -x {1.0 6.0 74 ------- null} h -t 1.53 -s 1 -d 3 -p cbr -e 500 -c 1 -i 132 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.53 -s 3 -d 4 -p cbr -e 500 -c 1 -i 113 -a 1 -x {1.0 6.0 65 ------- null} + -t 1.53 -s 4 -d 6 -p cbr -e 500 -c 1 -i 113 -a 1 -x {1.0 6.0 65 ------- null} - -t 1.53 -s 4 -d 6 -p cbr -e 500 -c 1 -i 113 -a 1 -x {1.0 6.0 65 ------- null} h -t 1.53 -s 4 -d 6 -p cbr -e 500 -c 1 -i 113 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.532 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 107 -a 1 -x {2.0 7.0 39 ------- null} r -t 1.532 -s 4 -d 6 -p cbr -e 500 -c 1 -i 108 -a 1 -x {1.0 6.0 62 ------- null} - -t 1.534 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 121 -a 1 -x {2.0 7.0 44 ------- null} h -t 1.534 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 121 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.54 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 133 -a 1 -x {2.0 7.0 48 ------- null} - -t 1.54 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 133 -a 1 -x {2.0 7.0 48 ------- null} h -t 1.54 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 133 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.546 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 114 -a 1 -x {2.0 7.0 42 ------- null} + -t 1.546 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 114 -a 1 -x {2.0 7.0 42 ------- null} - -t 1.546 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 114 -a 1 -x {2.0 7.0 42 ------- null} h -t 1.546 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 114 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.546 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 128 -a 1 -x {2.0 7.0 46 ------- null} + -t 1.546 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 128 -a 1 -x {2.0 7.0 46 ------- null} r -t 1.548 -s 1 -d 3 -p cbr -e 500 -c 1 -i 129 -a 1 -x {1.0 6.0 72 ------- null} + -t 1.548 -s 3 -d 4 -p cbr -e 500 -c 1 -i 129 -a 1 -x {1.0 6.0 72 ------- null} + -t 1.55 -s 1 -d 3 -p cbr -e 500 -c 1 -i 134 -a 1 -x {1.0 6.0 75 ------- null} - -t 1.55 -s 1 -d 3 -p cbr -e 500 -c 1 -i 134 -a 1 -x {1.0 6.0 75 ------- null} h -t 1.55 -s 1 -d 3 -p cbr -e 500 -c 1 -i 134 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.55 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 123 -a 0 -x {0.0 5.0 6 ------- null} h -t 1.55 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 123 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.554 -s 3 -d 4 -p cbr -e 500 -c 1 -i 115 -a 1 -x {1.0 6.0 66 ------- null} + -t 1.554 -s 4 -d 6 -p cbr -e 500 -c 1 -i 115 -a 1 -x {1.0 6.0 66 ------- null} - -t 1.554 -s 4 -d 6 -p cbr -e 500 -c 1 -i 115 -a 1 -x {1.0 6.0 66 ------- null} h -t 1.554 -s 4 -d 6 -p cbr -e 500 -c 1 -i 115 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.556 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 109 -a 1 -x {2.0 7.0 40 ------- null} r -t 1.556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 110 -a 1 -x {1.0 6.0 63 ------- null} r -t 1.562 -s 3 -d 4 -p cbr -e 500 -c 1 -i 116 -a 1 -x {1.0 6.0 67 ------- null} + -t 1.562 -s 4 -d 6 -p cbr -e 500 -c 1 -i 116 -a 1 -x {1.0 6.0 67 ------- null} - -t 1.562 -s 4 -d 6 -p cbr -e 500 -c 1 -i 116 -a 1 -x {1.0 6.0 67 ------- null} h -t 1.562 -s 4 -d 6 -p cbr -e 500 -c 1 -i 116 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.564 -s 4 -d 6 -p cbr -e 500 -c 1 -i 111 -a 1 -x {1.0 6.0 64 ------- null} - -t 1.566 -s 3 -d 4 -p cbr -e 500 -c 1 -i 124 -a 1 -x {1.0 6.0 69 ------- null} h -t 1.566 -s 3 -d 4 -p cbr -e 500 -c 1 -i 124 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.568 -s 1 -d 3 -p cbr -e 500 -c 1 -i 130 -a 1 -x {1.0 6.0 73 ------- null} + -t 1.568 -s 3 -d 4 -p cbr -e 500 -c 1 -i 130 -a 1 -x {1.0 6.0 73 ------- null} + -t 1.57 -s 1 -d 3 -p cbr -e 500 -c 1 -i 135 -a 1 -x {1.0 6.0 76 ------- null} - -t 1.57 -s 1 -d 3 -p cbr -e 500 -c 1 -i 135 -a 1 -x {1.0 6.0 76 ------- null} h -t 1.57 -s 1 -d 3 -p cbr -e 500 -c 1 -i 135 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.57 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 136 -a 1 -x {2.0 7.0 49 ------- null} - -t 1.57 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 136 -a 1 -x {2.0 7.0 49 ------- null} h -t 1.57 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 136 -a 1 -x {2.0 7.0 -1 ------- null} - -t 1.574 -s 3 -d 4 -p cbr -e 500 -c 1 -i 125 -a 1 -x {1.0 6.0 70 ------- null} h -t 1.574 -s 3 -d 4 -p cbr -e 500 -c 1 -i 125 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.576 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 131 -a 1 -x {2.0 7.0 47 ------- null} + -t 1.576 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 131 -a 1 -x {2.0 7.0 47 ------- null} r -t 1.578 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {0.0 5.0 3 ------- null} + -t 1.578 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {0.0 5.0 3 ------- null} - -t 1.578 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {0.0 5.0 3 ------- null} h -t 1.578 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {0.0 5.0 -1 ------- null} - -t 1.582 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 126 -a 1 -x {2.0 7.0 45 ------- null} h -t 1.582 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 126 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.588 -s 1 -d 3 -p cbr -e 500 -c 1 -i 132 -a 1 -x {1.0 6.0 74 ------- null} + -t 1.588 -s 3 -d 4 -p cbr -e 500 -c 1 -i 132 -a 1 -x {1.0 6.0 74 ------- null} r -t 1.588 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 112 -a 1 -x {2.0 7.0 41 ------- null} r -t 1.588 -s 4 -d 6 -p cbr -e 500 -c 1 -i 113 -a 1 -x {1.0 6.0 65 ------- null} + -t 1.59 -s 1 -d 3 -p cbr -e 500 -c 1 -i 137 -a 1 -x {1.0 6.0 77 ------- null} - -t 1.59 -s 1 -d 3 -p cbr -e 500 -c 1 -i 137 -a 1 -x {1.0 6.0 77 ------- null} h -t 1.59 -s 1 -d 3 -p cbr -e 500 -c 1 -i 137 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.594 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 117 -a 1 -x {2.0 7.0 43 ------- null} + -t 1.594 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 117 -a 1 -x {2.0 7.0 43 ------- null} - -t 1.594 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 117 -a 1 -x {2.0 7.0 43 ------- null} h -t 1.594 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 117 -a 1 -x {2.0 7.0 -1 ------- null} - -t 1.598 -s 3 -d 4 -p cbr -e 500 -c 1 -i 127 -a 1 -x {1.0 6.0 71 ------- null} h -t 1.598 -s 3 -d 4 -p cbr -e 500 -c 1 -i 127 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.6 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 138 -a 1 -x {2.0 7.0 50 ------- null} - -t 1.6 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 138 -a 1 -x {2.0 7.0 50 ------- null} h -t 1.6 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 138 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.606 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 133 -a 1 -x {2.0 7.0 48 ------- null} + -t 1.606 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 133 -a 1 -x {2.0 7.0 48 ------- null} - -t 1.606 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 128 -a 1 -x {2.0 7.0 46 ------- null} h -t 1.606 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 128 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.608 -s 1 -d 3 -p cbr -e 500 -c 1 -i 134 -a 1 -x {1.0 6.0 75 ------- null} + -t 1.608 -s 3 -d 4 -p cbr -e 500 -c 1 -i 134 -a 1 -x {1.0 6.0 75 ------- null} + -t 1.61 -s 1 -d 3 -p cbr -e 500 -c 1 -i 139 -a 1 -x {1.0 6.0 78 ------- null} - -t 1.61 -s 1 -d 3 -p cbr -e 500 -c 1 -i 139 -a 1 -x {1.0 6.0 78 ------- null} h -t 1.61 -s 1 -d 3 -p cbr -e 500 -c 1 -i 139 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.61 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {0.0 5.0 4 ------- null} + -t 1.61 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {0.0 5.0 4 ------- null} - -t 1.61 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {0.0 5.0 4 ------- null} h -t 1.61 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.612 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 114 -a 1 -x {2.0 7.0 42 ------- null} r -t 1.612 -s 4 -d 6 -p cbr -e 500 -c 1 -i 115 -a 1 -x {1.0 6.0 66 ------- null} r -t 1.618 -s 3 -d 4 -p cbr -e 500 -c 1 -i 120 -a 1 -x {1.0 6.0 68 ------- null} + -t 1.618 -s 4 -d 6 -p cbr -e 500 -c 1 -i 120 -a 1 -x {1.0 6.0 68 ------- null} - -t 1.618 -s 4 -d 6 -p cbr -e 500 -c 1 -i 120 -a 1 -x {1.0 6.0 68 ------- null} h -t 1.618 -s 4 -d 6 -p cbr -e 500 -c 1 -i 120 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.62 -s 4 -d 6 -p cbr -e 500 -c 1 -i 116 -a 1 -x {1.0 6.0 67 ------- null} - -t 1.622 -s 3 -d 4 -p cbr -e 500 -c 1 -i 129 -a 1 -x {1.0 6.0 72 ------- null} h -t 1.622 -s 3 -d 4 -p cbr -e 500 -c 1 -i 129 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.628 -s 1 -d 3 -p cbr -e 500 -c 1 -i 135 -a 1 -x {1.0 6.0 76 ------- null} + -t 1.628 -s 3 -d 4 -p cbr -e 500 -c 1 -i 135 -a 1 -x {1.0 6.0 76 ------- null} + -t 1.63 -s 1 -d 3 -p cbr -e 500 -c 1 -i 140 -a 1 -x {1.0 6.0 79 ------- null} - -t 1.63 -s 1 -d 3 -p cbr -e 500 -c 1 -i 140 -a 1 -x {1.0 6.0 79 ------- null} h -t 1.63 -s 1 -d 3 -p cbr -e 500 -c 1 -i 140 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.63 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 141 -a 1 -x {2.0 7.0 51 ------- null} - -t 1.63 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 141 -a 1 -x {2.0 7.0 51 ------- null} h -t 1.63 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 141 -a 1 -x {2.0 7.0 -1 ------- null} - -t 1.63 -s 3 -d 4 -p cbr -e 500 -c 1 -i 130 -a 1 -x {1.0 6.0 73 ------- null} h -t 1.63 -s 3 -d 4 -p cbr -e 500 -c 1 -i 130 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.634 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 122 -a 0 -x {0.0 5.0 5 ------- null} + -t 1.634 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 122 -a 0 -x {0.0 5.0 5 ------- null} - -t 1.634 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 122 -a 0 -x {0.0 5.0 5 ------- null} h -t 1.634 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 122 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.636 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 136 -a 1 -x {2.0 7.0 49 ------- null} + -t 1.636 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 136 -a 1 -x {2.0 7.0 49 ------- null} r -t 1.636 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 118 -a 0 -x {0.0 5.0 3 ------- null} + -t 1.636 -s 5 -d 4 -p ack -e 40 -c 0 -i 142 -a 0 -x {5.0 0.0 3 ------- null} - -t 1.636 -s 5 -d 4 -p ack -e 40 -c 0 -i 142 -a 0 -x {5.0 0.0 3 ------- null} h -t 1.636 -s 5 -d 4 -p ack -e 40 -c 0 -i 142 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.638 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 131 -a 1 -x {2.0 7.0 47 ------- null} h -t 1.638 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 131 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.648 -s 1 -d 3 -p cbr -e 500 -c 1 -i 137 -a 1 -x {1.0 6.0 77 ------- null} + -t 1.648 -s 3 -d 4 -p cbr -e 500 -c 1 -i 137 -a 1 -x {1.0 6.0 77 ------- null} + -t 1.65 -s 1 -d 3 -p cbr -e 500 -c 1 -i 143 -a 1 -x {1.0 6.0 80 ------- null} - -t 1.65 -s 1 -d 3 -p cbr -e 500 -c 1 -i 143 -a 1 -x {1.0 6.0 80 ------- null} h -t 1.65 -s 1 -d 3 -p cbr -e 500 -c 1 -i 143 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.65 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 121 -a 1 -x {2.0 7.0 44 ------- null} + -t 1.65 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 121 -a 1 -x {2.0 7.0 44 ------- null} - -t 1.65 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 121 -a 1 -x {2.0 7.0 44 ------- null} h -t 1.65 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 121 -a 1 -x {2.0 7.0 -1 ------- null} - -t 1.654 -s 3 -d 4 -p cbr -e 500 -c 1 -i 132 -a 1 -x {1.0 6.0 74 ------- null} h -t 1.654 -s 3 -d 4 -p cbr -e 500 -c 1 -i 132 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.66 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 117 -a 1 -x {2.0 7.0 43 ------- null} + -t 1.66 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 144 -a 1 -x {2.0 7.0 52 ------- null} - -t 1.66 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 144 -a 1 -x {2.0 7.0 52 ------- null} h -t 1.66 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 144 -a 1 -x {2.0 7.0 -1 ------- null} - -t 1.662 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 133 -a 1 -x {2.0 7.0 48 ------- null} h -t 1.662 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 133 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.666 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 123 -a 0 -x {0.0 5.0 6 ------- null} + -t 1.666 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 123 -a 0 -x {0.0 5.0 6 ------- null} - -t 1.666 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 123 -a 0 -x {0.0 5.0 6 ------- null} h -t 1.666 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 123 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.666 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 138 -a 1 -x {2.0 7.0 50 ------- null} + -t 1.666 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 138 -a 1 -x {2.0 7.0 50 ------- null} r -t 1.668 -s 1 -d 3 -p cbr -e 500 -c 1 -i 139 -a 1 -x {1.0 6.0 78 ------- null} + -t 1.668 -s 3 -d 4 -p cbr -e 500 -c 1 -i 139 -a 1 -x {1.0 6.0 78 ------- null} r -t 1.668 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 119 -a 0 -x {0.0 5.0 4 ------- null} + -t 1.668 -s 5 -d 4 -p ack -e 40 -c 0 -i 145 -a 0 -x {5.0 0.0 4 ------- null} - -t 1.668 -s 5 -d 4 -p ack -e 40 -c 0 -i 145 -a 0 -x {5.0 0.0 4 ------- null} h -t 1.668 -s 5 -d 4 -p ack -e 40 -c 0 -i 145 -a 0 -x {5.0 0.0 -1 ------- null} + -t 1.67 -s 1 -d 3 -p cbr -e 500 -c 1 -i 146 -a 1 -x {1.0 6.0 81 ------- null} - -t 1.67 -s 1 -d 3 -p cbr -e 500 -c 1 -i 146 -a 1 -x {1.0 6.0 81 ------- null} h -t 1.67 -s 1 -d 3 -p cbr -e 500 -c 1 -i 146 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.674 -s 3 -d 4 -p cbr -e 500 -c 1 -i 124 -a 1 -x {1.0 6.0 69 ------- null} + -t 1.674 -s 4 -d 6 -p cbr -e 500 -c 1 -i 124 -a 1 -x {1.0 6.0 69 ------- null} - -t 1.674 -s 4 -d 6 -p cbr -e 500 -c 1 -i 124 -a 1 -x {1.0 6.0 69 ------- null} h -t 1.674 -s 4 -d 6 -p cbr -e 500 -c 1 -i 124 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.676 -s 4 -d 6 -p cbr -e 500 -c 1 -i 120 -a 1 -x {1.0 6.0 68 ------- null} - -t 1.678 -s 3 -d 4 -p cbr -e 500 -c 1 -i 134 -a 1 -x {1.0 6.0 75 ------- null} h -t 1.678 -s 3 -d 4 -p cbr -e 500 -c 1 -i 134 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.682 -s 3 -d 4 -p cbr -e 500 -c 1 -i 125 -a 1 -x {1.0 6.0 70 ------- null} + -t 1.682 -s 4 -d 6 -p cbr -e 500 -c 1 -i 125 -a 1 -x {1.0 6.0 70 ------- null} - -t 1.682 -s 4 -d 6 -p cbr -e 500 -c 1 -i 125 -a 1 -x {1.0 6.0 70 ------- null} h -t 1.682 -s 4 -d 6 -p cbr -e 500 -c 1 -i 125 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.686 -s 3 -d 4 -p cbr -e 500 -c 1 -i 135 -a 1 -x {1.0 6.0 76 ------- null} h -t 1.686 -s 3 -d 4 -p cbr -e 500 -c 1 -i 135 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.68632 -s 5 -d 4 -p ack -e 40 -c 0 -i 142 -a 0 -x {5.0 0.0 3 ------- null} + -t 1.68632 -s 4 -d 3 -p ack -e 40 -c 0 -i 142 -a 0 -x {5.0 0.0 3 ------- null} - -t 1.68632 -s 4 -d 3 -p ack -e 40 -c 0 -i 142 -a 0 -x {5.0 0.0 3 ------- null} h -t 1.68632 -s 4 -d 3 -p ack -e 40 -c 0 -i 142 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.688 -s 1 -d 3 -p cbr -e 500 -c 1 -i 140 -a 1 -x {1.0 6.0 79 ------- null} + -t 1.688 -s 3 -d 4 -p cbr -e 500 -c 1 -i 140 -a 1 -x {1.0 6.0 79 ------- null} + -t 1.69 -s 1 -d 3 -p cbr -e 500 -c 1 -i 147 -a 1 -x {1.0 6.0 82 ------- null} - -t 1.69 -s 1 -d 3 -p cbr -e 500 -c 1 -i 147 -a 1 -x {1.0 6.0 82 ------- null} h -t 1.69 -s 1 -d 3 -p cbr -e 500 -c 1 -i 147 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.69 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 148 -a 1 -x {2.0 7.0 53 ------- null} - -t 1.69 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 148 -a 1 -x {2.0 7.0 53 ------- null} h -t 1.69 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 148 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.692 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 122 -a 0 -x {0.0 5.0 5 ------- null} + -t 1.692 -s 5 -d 4 -p ack -e 40 -c 0 -i 149 -a 0 -x {5.0 0.0 5 ------- null} - -t 1.692 -s 5 -d 4 -p ack -e 40 -c 0 -i 149 -a 0 -x {5.0 0.0 5 ------- null} h -t 1.692 -s 5 -d 4 -p ack -e 40 -c 0 -i 149 -a 0 -x {5.0 0.0 -1 ------- null} - -t 1.694 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 136 -a 1 -x {2.0 7.0 49 ------- null} h -t 1.694 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 136 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.696 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 141 -a 1 -x {2.0 7.0 51 ------- null} + -t 1.696 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 141 -a 1 -x {2.0 7.0 51 ------- null} r -t 1.698 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 126 -a 1 -x {2.0 7.0 45 ------- null} + -t 1.698 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 126 -a 1 -x {2.0 7.0 45 ------- null} - -t 1.698 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 126 -a 1 -x {2.0 7.0 45 ------- null} h -t 1.698 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 126 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.706 -s 3 -d 4 -p cbr -e 500 -c 1 -i 127 -a 1 -x {1.0 6.0 71 ------- null} + -t 1.706 -s 4 -d 6 -p cbr -e 500 -c 1 -i 127 -a 1 -x {1.0 6.0 71 ------- null} - -t 1.706 -s 4 -d 6 -p cbr -e 500 -c 1 -i 127 -a 1 -x {1.0 6.0 71 ------- null} h -t 1.706 -s 4 -d 6 -p cbr -e 500 -c 1 -i 127 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.708 -s 1 -d 3 -p cbr -e 500 -c 1 -i 143 -a 1 -x {1.0 6.0 80 ------- null} + -t 1.708 -s 3 -d 4 -p cbr -e 500 -c 1 -i 143 -a 1 -x {1.0 6.0 80 ------- null} + -t 1.71 -s 1 -d 3 -p cbr -e 500 -c 1 -i 150 -a 1 -x {1.0 6.0 83 ------- null} - -t 1.71 -s 1 -d 3 -p cbr -e 500 -c 1 -i 150 -a 1 -x {1.0 6.0 83 ------- null} h -t 1.71 -s 1 -d 3 -p cbr -e 500 -c 1 -i 150 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.71 -s 3 -d 4 -p cbr -e 500 -c 1 -i 137 -a 1 -x {1.0 6.0 77 ------- null} h -t 1.71 -s 3 -d 4 -p cbr -e 500 -c 1 -i 137 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.716 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 121 -a 1 -x {2.0 7.0 44 ------- null} - -t 1.718 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 138 -a 1 -x {2.0 7.0 50 ------- null} h -t 1.718 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 138 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.71832 -s 5 -d 4 -p ack -e 40 -c 0 -i 145 -a 0 -x {5.0 0.0 4 ------- null} + -t 1.71832 -s 4 -d 3 -p ack -e 40 -c 0 -i 145 -a 0 -x {5.0 0.0 4 ------- null} - -t 1.71832 -s 4 -d 3 -p ack -e 40 -c 0 -i 145 -a 0 -x {5.0 0.0 4 ------- null} h -t 1.71832 -s 4 -d 3 -p ack -e 40 -c 0 -i 145 -a 0 -x {5.0 0.0 -1 ------- null} + -t 1.72 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 151 -a 1 -x {2.0 7.0 54 ------- null} - -t 1.72 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 151 -a 1 -x {2.0 7.0 54 ------- null} h -t 1.72 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 151 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.722 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 128 -a 1 -x {2.0 7.0 46 ------- null} + -t 1.722 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 128 -a 1 -x {2.0 7.0 46 ------- null} - -t 1.722 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 128 -a 1 -x {2.0 7.0 46 ------- null} h -t 1.722 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 128 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.724 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 123 -a 0 -x {0.0 5.0 6 ------- null} + -t 1.724 -s 5 -d 4 -p ack -e 40 -c 0 -i 152 -a 0 -x {5.0 0.0 6 ------- null} - -t 1.724 -s 5 -d 4 -p ack -e 40 -c 0 -i 152 -a 0 -x {5.0 0.0 6 ------- null} h -t 1.724 -s 5 -d 4 -p ack -e 40 -c 0 -i 152 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.726 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 144 -a 1 -x {2.0 7.0 52 ------- null} + -t 1.726 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 144 -a 1 -x {2.0 7.0 52 ------- null} r -t 1.728 -s 1 -d 3 -p cbr -e 500 -c 1 -i 146 -a 1 -x {1.0 6.0 81 ------- null} + -t 1.728 -s 3 -d 4 -p cbr -e 500 -c 1 -i 146 -a 1 -x {1.0 6.0 81 ------- null} + -t 1.73 -s 1 -d 3 -p cbr -e 500 -c 1 -i 153 -a 1 -x {1.0 6.0 84 ------- null} - -t 1.73 -s 1 -d 3 -p cbr -e 500 -c 1 -i 153 -a 1 -x {1.0 6.0 84 ------- null} h -t 1.73 -s 1 -d 3 -p cbr -e 500 -c 1 -i 153 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.73 -s 3 -d 4 -p cbr -e 500 -c 1 -i 129 -a 1 -x {1.0 6.0 72 ------- null} + -t 1.73 -s 4 -d 6 -p cbr -e 500 -c 1 -i 129 -a 1 -x {1.0 6.0 72 ------- null} - -t 1.73 -s 4 -d 6 -p cbr -e 500 -c 1 -i 129 -a 1 -x {1.0 6.0 72 ------- null} h -t 1.73 -s 4 -d 6 -p cbr -e 500 -c 1 -i 129 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.732 -s 4 -d 6 -p cbr -e 500 -c 1 -i 124 -a 1 -x {1.0 6.0 69 ------- null} - -t 1.734 -s 3 -d 4 -p cbr -e 500 -c 1 -i 139 -a 1 -x {1.0 6.0 78 ------- null} h -t 1.734 -s 3 -d 4 -p cbr -e 500 -c 1 -i 139 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.738 -s 3 -d 4 -p cbr -e 500 -c 1 -i 130 -a 1 -x {1.0 6.0 73 ------- null} + -t 1.738 -s 4 -d 6 -p cbr -e 500 -c 1 -i 130 -a 1 -x {1.0 6.0 73 ------- null} - -t 1.738 -s 4 -d 6 -p cbr -e 500 -c 1 -i 130 -a 1 -x {1.0 6.0 73 ------- null} h -t 1.738 -s 4 -d 6 -p cbr -e 500 -c 1 -i 130 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.74 -s 4 -d 6 -p cbr -e 500 -c 1 -i 125 -a 1 -x {1.0 6.0 70 ------- null} - -t 1.742 -s 3 -d 4 -p cbr -e 500 -c 1 -i 140 -a 1 -x {1.0 6.0 79 ------- null} h -t 1.742 -s 3 -d 4 -p cbr -e 500 -c 1 -i 140 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.74232 -s 5 -d 4 -p ack -e 40 -c 0 -i 149 -a 0 -x {5.0 0.0 5 ------- null} + -t 1.74232 -s 4 -d 3 -p ack -e 40 -c 0 -i 149 -a 0 -x {5.0 0.0 5 ------- null} - -t 1.74232 -s 4 -d 3 -p ack -e 40 -c 0 -i 149 -a 0 -x {5.0 0.0 5 ------- null} h -t 1.74232 -s 4 -d 3 -p ack -e 40 -c 0 -i 149 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.748 -s 1 -d 3 -p cbr -e 500 -c 1 -i 147 -a 1 -x {1.0 6.0 82 ------- null} + -t 1.748 -s 3 -d 4 -p cbr -e 500 -c 1 -i 147 -a 1 -x {1.0 6.0 82 ------- null} + -t 1.75 -s 1 -d 3 -p cbr -e 500 -c 1 -i 154 -a 1 -x {1.0 6.0 85 ------- null} - -t 1.75 -s 1 -d 3 -p cbr -e 500 -c 1 -i 154 -a 1 -x {1.0 6.0 85 ------- null} h -t 1.75 -s 1 -d 3 -p cbr -e 500 -c 1 -i 154 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.75 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 155 -a 1 -x {2.0 7.0 55 ------- null} - -t 1.75 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 155 -a 1 -x {2.0 7.0 55 ------- null} h -t 1.75 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 155 -a 1 -x {2.0 7.0 -1 ------- null} - -t 1.75 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 141 -a 1 -x {2.0 7.0 51 ------- null} h -t 1.75 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 141 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.754 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 131 -a 1 -x {2.0 7.0 47 ------- null} + -t 1.754 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 131 -a 1 -x {2.0 7.0 47 ------- null} - -t 1.754 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 131 -a 1 -x {2.0 7.0 47 ------- null} h -t 1.754 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 131 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.756 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 148 -a 1 -x {2.0 7.0 53 ------- null} + -t 1.756 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 148 -a 1 -x {2.0 7.0 53 ------- null} r -t 1.762 -s 3 -d 4 -p cbr -e 500 -c 1 -i 132 -a 1 -x {1.0 6.0 74 ------- null} + -t 1.762 -s 4 -d 6 -p cbr -e 500 -c 1 -i 132 -a 1 -x {1.0 6.0 74 ------- null} - -t 1.762 -s 4 -d 6 -p cbr -e 500 -c 1 -i 132 -a 1 -x {1.0 6.0 74 ------- null} h -t 1.762 -s 4 -d 6 -p cbr -e 500 -c 1 -i 132 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.764 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 126 -a 1 -x {2.0 7.0 45 ------- null} r -t 1.764 -s 4 -d 6 -p cbr -e 500 -c 1 -i 127 -a 1 -x {1.0 6.0 71 ------- null} - -t 1.766 -s 3 -d 4 -p cbr -e 500 -c 1 -i 143 -a 1 -x {1.0 6.0 80 ------- null} h -t 1.766 -s 3 -d 4 -p cbr -e 500 -c 1 -i 143 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.768 -s 1 -d 3 -p cbr -e 500 -c 1 -i 150 -a 1 -x {1.0 6.0 83 ------- null} + -t 1.768 -s 3 -d 4 -p cbr -e 500 -c 1 -i 150 -a 1 -x {1.0 6.0 83 ------- null} + -t 1.77 -s 1 -d 3 -p cbr -e 500 -c 1 -i 156 -a 1 -x {1.0 6.0 86 ------- null} - -t 1.77 -s 1 -d 3 -p cbr -e 500 -c 1 -i 156 -a 1 -x {1.0 6.0 86 ------- null} h -t 1.77 -s 1 -d 3 -p cbr -e 500 -c 1 -i 156 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.774 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 144 -a 1 -x {2.0 7.0 52 ------- null} h -t 1.774 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 144 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.77432 -s 5 -d 4 -p ack -e 40 -c 0 -i 152 -a 0 -x {5.0 0.0 6 ------- null} + -t 1.77432 -s 4 -d 3 -p ack -e 40 -c 0 -i 152 -a 0 -x {5.0 0.0 6 ------- null} - -t 1.77432 -s 4 -d 3 -p ack -e 40 -c 0 -i 152 -a 0 -x {5.0 0.0 6 ------- null} h -t 1.77432 -s 4 -d 3 -p ack -e 40 -c 0 -i 152 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.778 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 133 -a 1 -x {2.0 7.0 48 ------- null} + -t 1.778 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 133 -a 1 -x {2.0 7.0 48 ------- null} - -t 1.778 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 133 -a 1 -x {2.0 7.0 48 ------- null} h -t 1.778 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 133 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.78 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 157 -a 1 -x {2.0 7.0 56 ------- null} - -t 1.78 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 157 -a 1 -x {2.0 7.0 56 ------- null} h -t 1.78 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 157 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.786 -s 3 -d 4 -p cbr -e 500 -c 1 -i 134 -a 1 -x {1.0 6.0 75 ------- null} + -t 1.786 -s 4 -d 6 -p cbr -e 500 -c 1 -i 134 -a 1 -x {1.0 6.0 75 ------- null} - -t 1.786 -s 4 -d 6 -p cbr -e 500 -c 1 -i 134 -a 1 -x {1.0 6.0 75 ------- null} h -t 1.786 -s 4 -d 6 -p cbr -e 500 -c 1 -i 134 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.786 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 151 -a 1 -x {2.0 7.0 54 ------- null} + -t 1.786 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 151 -a 1 -x {2.0 7.0 54 ------- null} r -t 1.78696 -s 4 -d 3 -p ack -e 40 -c 0 -i 142 -a 0 -x {5.0 0.0 3 ------- null} + -t 1.78696 -s 3 -d 0 -p ack -e 40 -c 0 -i 142 -a 0 -x {5.0 0.0 3 ------- null} - -t 1.78696 -s 3 -d 0 -p ack -e 40 -c 0 -i 142 -a 0 -x {5.0 0.0 3 ------- null} h -t 1.78696 -s 3 -d 0 -p ack -e 40 -c 0 -i 142 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.788 -s 1 -d 3 -p cbr -e 500 -c 1 -i 153 -a 1 -x {1.0 6.0 84 ------- null} + -t 1.788 -s 3 -d 4 -p cbr -e 500 -c 1 -i 153 -a 1 -x {1.0 6.0 84 ------- null} r -t 1.788 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 128 -a 1 -x {2.0 7.0 46 ------- null} r -t 1.788 -s 4 -d 6 -p cbr -e 500 -c 1 -i 129 -a 1 -x {1.0 6.0 72 ------- null} + -t 1.79 -s 1 -d 3 -p cbr -e 500 -c 1 -i 158 -a 1 -x {1.0 6.0 87 ------- null} - -t 1.79 -s 1 -d 3 -p cbr -e 500 -c 1 -i 158 -a 1 -x {1.0 6.0 87 ------- null} h -t 1.79 -s 1 -d 3 -p cbr -e 500 -c 1 -i 158 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.79 -s 3 -d 4 -p cbr -e 500 -c 1 -i 146 -a 1 -x {1.0 6.0 81 ------- null} h -t 1.79 -s 3 -d 4 -p cbr -e 500 -c 1 -i 146 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.794 -s 3 -d 4 -p cbr -e 500 -c 1 -i 135 -a 1 -x {1.0 6.0 76 ------- null} + -t 1.794 -s 4 -d 6 -p cbr -e 500 -c 1 -i 135 -a 1 -x {1.0 6.0 76 ------- null} - -t 1.794 -s 4 -d 6 -p cbr -e 500 -c 1 -i 135 -a 1 -x {1.0 6.0 76 ------- null} h -t 1.794 -s 4 -d 6 -p cbr -e 500 -c 1 -i 135 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.796 -s 4 -d 6 -p cbr -e 500 -c 1 -i 130 -a 1 -x {1.0 6.0 73 ------- null} - -t 1.798 -s 3 -d 4 -p cbr -e 500 -c 1 -i 147 -a 1 -x {1.0 6.0 82 ------- null} h -t 1.798 -s 3 -d 4 -p cbr -e 500 -c 1 -i 147 -a 1 -x {1.0 6.0 -1 ------- null} v -t 1.8 -e take_snapshot - -t 1.806 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 148 -a 1 -x {2.0 7.0 53 ------- null} h -t 1.806 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 148 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.808 -s 1 -d 3 -p cbr -e 500 -c 1 -i 154 -a 1 -x {1.0 6.0 85 ------- null} + -t 1.808 -s 3 -d 4 -p cbr -e 500 -c 1 -i 154 -a 1 -x {1.0 6.0 85 ------- null} + -t 1.81 -s 1 -d 3 -p cbr -e 500 -c 1 -i 159 -a 1 -x {1.0 6.0 88 ------- null} - -t 1.81 -s 1 -d 3 -p cbr -e 500 -c 1 -i 159 -a 1 -x {1.0 6.0 88 ------- null} h -t 1.81 -s 1 -d 3 -p cbr -e 500 -c 1 -i 159 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.81 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 136 -a 1 -x {2.0 7.0 49 ------- null} + -t 1.81 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 136 -a 1 -x {2.0 7.0 49 ------- null} - -t 1.81 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 136 -a 1 -x {2.0 7.0 49 ------- null} h -t 1.81 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 136 -a 1 -x {2.0 7.0 -1 ------- null} + -t 1.81 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 160 -a 1 -x {2.0 7.0 57 ------- null} - -t 1.81 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 160 -a 1 -x {2.0 7.0 57 ------- null} h -t 1.81 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 160 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.816 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 155 -a 1 -x {2.0 7.0 55 ------- null} + -t 1.816 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 155 -a 1 -x {2.0 7.0 55 ------- null} r -t 1.818 -s 3 -d 4 -p cbr -e 500 -c 1 -i 137 -a 1 -x {1.0 6.0 77 ------- null} + -t 1.818 -s 4 -d 6 -p cbr -e 500 -c 1 -i 137 -a 1 -x {1.0 6.0 77 ------- null} - -t 1.818 -s 4 -d 6 -p cbr -e 500 -c 1 -i 137 -a 1 -x {1.0 6.0 77 ------- null} h -t 1.818 -s 4 -d 6 -p cbr -e 500 -c 1 -i 137 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.81896 -s 4 -d 3 -p ack -e 40 -c 0 -i 145 -a 0 -x {5.0 0.0 4 ------- null} + -t 1.81896 -s 3 -d 0 -p ack -e 40 -c 0 -i 145 -a 0 -x {5.0 0.0 4 ------- null} - -t 1.81896 -s 3 -d 0 -p ack -e 40 -c 0 -i 145 -a 0 -x {5.0 0.0 4 ------- null} h -t 1.81896 -s 3 -d 0 -p ack -e 40 -c 0 -i 145 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.82 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 131 -a 1 -x {2.0 7.0 47 ------- null} r -t 1.82 -s 4 -d 6 -p cbr -e 500 -c 1 -i 132 -a 1 -x {1.0 6.0 74 ------- null} - -t 1.822 -s 3 -d 4 -p cbr -e 500 -c 1 -i 150 -a 1 -x {1.0 6.0 83 ------- null} h -t 1.822 -s 3 -d 4 -p cbr -e 500 -c 1 -i 150 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.828 -s 1 -d 3 -p cbr -e 500 -c 1 -i 156 -a 1 -x {1.0 6.0 86 ------- null} + -t 1.828 -s 3 -d 4 -p cbr -e 500 -c 1 -i 156 -a 1 -x {1.0 6.0 86 ------- null} + -t 1.83 -s 1 -d 3 -p cbr -e 500 -c 1 -i 161 -a 1 -x {1.0 6.0 89 ------- null} - -t 1.83 -s 1 -d 3 -p cbr -e 500 -c 1 -i 161 -a 1 -x {1.0 6.0 89 ------- null} h -t 1.83 -s 1 -d 3 -p cbr -e 500 -c 1 -i 161 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.83 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 151 -a 1 -x {2.0 7.0 54 ------- null} h -t 1.83 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 151 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.834 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 138 -a 1 -x {2.0 7.0 50 ------- null} + -t 1.834 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 138 -a 1 -x {2.0 7.0 50 ------- null} - -t 1.834 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 138 -a 1 -x {2.0 7.0 50 ------- null} h -t 1.834 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 138 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.83728 -s 3 -d 0 -p ack -e 40 -c 0 -i 142 -a 0 -x {5.0 0.0 3 ------- null} + -t 1.83728 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 162 -a 0 -x {0.0 5.0 7 ------- null} - -t 1.83728 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 162 -a 0 -x {0.0 5.0 7 ------- null} h -t 1.83728 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 162 -a 0 -x {0.0 5.0 -1 ------- null} + -t 1.83728 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 163 -a 0 -x {0.0 5.0 8 ------- null} + -t 1.84 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 164 -a 1 -x {2.0 7.0 58 ------- null} - -t 1.84 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 164 -a 1 -x {2.0 7.0 58 ------- null} h -t 1.84 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 164 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.842 -s 3 -d 4 -p cbr -e 500 -c 1 -i 139 -a 1 -x {1.0 6.0 78 ------- null} + -t 1.842 -s 4 -d 6 -p cbr -e 500 -c 1 -i 139 -a 1 -x {1.0 6.0 78 ------- null} - -t 1.842 -s 4 -d 6 -p cbr -e 500 -c 1 -i 139 -a 1 -x {1.0 6.0 78 ------- null} h -t 1.842 -s 4 -d 6 -p cbr -e 500 -c 1 -i 139 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.84296 -s 4 -d 3 -p ack -e 40 -c 0 -i 149 -a 0 -x {5.0 0.0 5 ------- null} + -t 1.84296 -s 3 -d 0 -p ack -e 40 -c 0 -i 149 -a 0 -x {5.0 0.0 5 ------- null} - -t 1.84296 -s 3 -d 0 -p ack -e 40 -c 0 -i 149 -a 0 -x {5.0 0.0 5 ------- null} h -t 1.84296 -s 3 -d 0 -p ack -e 40 -c 0 -i 149 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.844 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 133 -a 1 -x {2.0 7.0 48 ------- null} r -t 1.844 -s 4 -d 6 -p cbr -e 500 -c 1 -i 134 -a 1 -x {1.0 6.0 75 ------- null} - -t 1.84528 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 163 -a 0 -x {0.0 5.0 8 ------- null} h -t 1.84528 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 163 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.846 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 157 -a 1 -x {2.0 7.0 56 ------- null} + -t 1.846 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 157 -a 1 -x {2.0 7.0 56 ------- null} - -t 1.846 -s 3 -d 4 -p cbr -e 500 -c 1 -i 153 -a 1 -x {1.0 6.0 84 ------- null} h -t 1.846 -s 3 -d 4 -p cbr -e 500 -c 1 -i 153 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.848 -s 1 -d 3 -p cbr -e 500 -c 1 -i 158 -a 1 -x {1.0 6.0 87 ------- null} + -t 1.848 -s 3 -d 4 -p cbr -e 500 -c 1 -i 158 -a 1 -x {1.0 6.0 87 ------- null} v -t 1.8500000000000001 -e playing_forward + -t 1.85 -s 1 -d 3 -p cbr -e 500 -c 1 -i 165 -a 1 -x {1.0 6.0 90 ------- null} - -t 1.85 -s 1 -d 3 -p cbr -e 500 -c 1 -i 165 -a 1 -x {1.0 6.0 90 ------- null} h -t 1.85 -s 1 -d 3 -p cbr -e 500 -c 1 -i 165 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.85 -s 3 -d 4 -p cbr -e 500 -c 1 -i 140 -a 1 -x {1.0 6.0 79 ------- null} + -t 1.85 -s 4 -d 6 -p cbr -e 500 -c 1 -i 140 -a 1 -x {1.0 6.0 79 ------- null} - -t 1.85 -s 4 -d 6 -p cbr -e 500 -c 1 -i 140 -a 1 -x {1.0 6.0 79 ------- null} h -t 1.85 -s 4 -d 6 -p cbr -e 500 -c 1 -i 140 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.852 -s 4 -d 6 -p cbr -e 500 -c 1 -i 135 -a 1 -x {1.0 6.0 76 ------- null} - -t 1.854 -s 3 -d 4 -p cbr -e 500 -c 1 -i 154 -a 1 -x {1.0 6.0 85 ------- null} h -t 1.854 -s 3 -d 4 -p cbr -e 500 -c 1 -i 154 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.862 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 155 -a 1 -x {2.0 7.0 55 ------- null} h -t 1.862 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 155 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.866 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 141 -a 1 -x {2.0 7.0 51 ------- null} + -t 1.866 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 141 -a 1 -x {2.0 7.0 51 ------- null} - -t 1.866 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 141 -a 1 -x {2.0 7.0 51 ------- null} h -t 1.866 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 141 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.868 -s 1 -d 3 -p cbr -e 500 -c 1 -i 159 -a 1 -x {1.0 6.0 88 ------- null} + -t 1.868 -s 3 -d 4 -p cbr -e 500 -c 1 -i 159 -a 1 -x {1.0 6.0 88 ------- null} r -t 1.86928 -s 3 -d 0 -p ack -e 40 -c 0 -i 145 -a 0 -x {5.0 0.0 4 ------- null} + -t 1.86928 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 166 -a 0 -x {0.0 5.0 9 ------- null} - -t 1.86928 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 166 -a 0 -x {0.0 5.0 9 ------- null} h -t 1.86928 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 166 -a 0 -x {0.0 5.0 -1 ------- null} + -t 1.86928 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 167 -a 0 -x {0.0 5.0 10 ------- null} + -t 1.87 -s 1 -d 3 -p cbr -e 500 -c 1 -i 168 -a 1 -x {1.0 6.0 91 ------- null} - -t 1.87 -s 1 -d 3 -p cbr -e 500 -c 1 -i 168 -a 1 -x {1.0 6.0 91 ------- null} h -t 1.87 -s 1 -d 3 -p cbr -e 500 -c 1 -i 168 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.87 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 169 -a 1 -x {2.0 7.0 59 ------- null} - -t 1.87 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 169 -a 1 -x {2.0 7.0 59 ------- null} h -t 1.87 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 169 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.874 -s 3 -d 4 -p cbr -e 500 -c 1 -i 143 -a 1 -x {1.0 6.0 80 ------- null} + -t 1.874 -s 4 -d 6 -p cbr -e 500 -c 1 -i 143 -a 1 -x {1.0 6.0 80 ------- null} - -t 1.874 -s 4 -d 6 -p cbr -e 500 -c 1 -i 143 -a 1 -x {1.0 6.0 80 ------- null} h -t 1.874 -s 4 -d 6 -p cbr -e 500 -c 1 -i 143 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.87496 -s 4 -d 3 -p ack -e 40 -c 0 -i 152 -a 0 -x {5.0 0.0 6 ------- null} + -t 1.87496 -s 3 -d 0 -p ack -e 40 -c 0 -i 152 -a 0 -x {5.0 0.0 6 ------- null} - -t 1.87496 -s 3 -d 0 -p ack -e 40 -c 0 -i 152 -a 0 -x {5.0 0.0 6 ------- null} h -t 1.87496 -s 3 -d 0 -p ack -e 40 -c 0 -i 152 -a 0 -x {5.0 0.0 -1 ------- null} r -t 1.876 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 136 -a 1 -x {2.0 7.0 49 ------- null} r -t 1.876 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 160 -a 1 -x {2.0 7.0 57 ------- null} + -t 1.876 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 160 -a 1 -x {2.0 7.0 57 ------- null} r -t 1.876 -s 4 -d 6 -p cbr -e 500 -c 1 -i 137 -a 1 -x {1.0 6.0 77 ------- null} - -t 1.87728 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 167 -a 0 -x {0.0 5.0 10 ------- null} h -t 1.87728 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 167 -a 0 -x {0.0 5.0 -1 ------- null} - -t 1.878 -s 3 -d 4 -p cbr -e 500 -c 1 -i 156 -a 1 -x {1.0 6.0 86 ------- null} h -t 1.878 -s 3 -d 4 -p cbr -e 500 -c 1 -i 156 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.886 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 157 -a 1 -x {2.0 7.0 56 ------- null} h -t 1.886 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 157 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.888 -s 1 -d 3 -p cbr -e 500 -c 1 -i 161 -a 1 -x {1.0 6.0 89 ------- null} + -t 1.888 -s 3 -d 4 -p cbr -e 500 -c 1 -i 161 -a 1 -x {1.0 6.0 89 ------- null} + -t 1.89 -s 1 -d 3 -p cbr -e 500 -c 1 -i 170 -a 1 -x {1.0 6.0 92 ------- null} - -t 1.89 -s 1 -d 3 -p cbr -e 500 -c 1 -i 170 -a 1 -x {1.0 6.0 92 ------- null} h -t 1.89 -s 1 -d 3 -p cbr -e 500 -c 1 -i 170 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.89 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 144 -a 1 -x {2.0 7.0 52 ------- null} + -t 1.89 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 144 -a 1 -x {2.0 7.0 52 ------- null} - -t 1.89 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 144 -a 1 -x {2.0 7.0 52 ------- null} h -t 1.89 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 144 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.89328 -s 3 -d 0 -p ack -e 40 -c 0 -i 149 -a 0 -x {5.0 0.0 5 ------- null} + -t 1.89328 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 171 -a 0 -x {0.0 5.0 11 ------- null} - -t 1.89328 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 171 -a 0 -x {0.0 5.0 11 ------- null} h -t 1.89328 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 171 -a 0 -x {0.0 5.0 -1 ------- null} + -t 1.89328 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 172 -a 0 -x {0.0 5.0 12 ------- null} r -t 1.89528 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 162 -a 0 -x {0.0 5.0 7 ------- null} + -t 1.89528 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 162 -a 0 -x {0.0 5.0 7 ------- null} r -t 1.898 -s 3 -d 4 -p cbr -e 500 -c 1 -i 146 -a 1 -x {1.0 6.0 81 ------- null} + -t 1.898 -s 4 -d 6 -p cbr -e 500 -c 1 -i 146 -a 1 -x {1.0 6.0 81 ------- null} - -t 1.898 -s 4 -d 6 -p cbr -e 500 -c 1 -i 146 -a 1 -x {1.0 6.0 81 ------- null} h -t 1.898 -s 4 -d 6 -p cbr -e 500 -c 1 -i 146 -a 1 -x {1.0 6.0 -1 ------- null} v -t 1.8999999999999999 -e take_snapshot r -t 1.9 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 138 -a 1 -x {2.0 7.0 50 ------- null} r -t 1.9 -s 4 -d 6 -p cbr -e 500 -c 1 -i 139 -a 1 -x {1.0 6.0 78 ------- null} + -t 1.9 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 173 -a 1 -x {2.0 7.0 60 ------- null} - -t 1.9 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 173 -a 1 -x {2.0 7.0 60 ------- null} h -t 1.9 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 173 -a 1 -x {2.0 7.0 -1 ------- null} - -t 1.90128 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 172 -a 0 -x {0.0 5.0 12 ------- null} h -t 1.90128 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 172 -a 0 -x {0.0 5.0 -1 ------- null} - -t 1.902 -s 3 -d 4 -p cbr -e 500 -c 1 -i 158 -a 1 -x {1.0 6.0 87 ------- null} h -t 1.902 -s 3 -d 4 -p cbr -e 500 -c 1 -i 158 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.90328 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 163 -a 0 -x {0.0 5.0 8 ------- null} + -t 1.90328 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 163 -a 0 -x {0.0 5.0 8 ------- null} r -t 1.906 -s 3 -d 4 -p cbr -e 500 -c 1 -i 147 -a 1 -x {1.0 6.0 82 ------- null} + -t 1.906 -s 4 -d 6 -p cbr -e 500 -c 1 -i 147 -a 1 -x {1.0 6.0 82 ------- null} r -t 1.906 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 164 -a 1 -x {2.0 7.0 58 ------- null} + -t 1.906 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 164 -a 1 -x {2.0 7.0 58 ------- null} - -t 1.906 -s 4 -d 6 -p cbr -e 500 -c 1 -i 147 -a 1 -x {1.0 6.0 82 ------- null} h -t 1.906 -s 4 -d 6 -p cbr -e 500 -c 1 -i 147 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.908 -s 1 -d 3 -p cbr -e 500 -c 1 -i 165 -a 1 -x {1.0 6.0 90 ------- null} + -t 1.908 -s 3 -d 4 -p cbr -e 500 -c 1 -i 165 -a 1 -x {1.0 6.0 90 ------- null} r -t 1.908 -s 4 -d 6 -p cbr -e 500 -c 1 -i 140 -a 1 -x {1.0 6.0 79 ------- null} + -t 1.91 -s 1 -d 3 -p cbr -e 500 -c 1 -i 174 -a 1 -x {1.0 6.0 93 ------- null} - -t 1.91 -s 1 -d 3 -p cbr -e 500 -c 1 -i 174 -a 1 -x {1.0 6.0 93 ------- null} h -t 1.91 -s 1 -d 3 -p cbr -e 500 -c 1 -i 174 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.91 -s 3 -d 4 -p cbr -e 500 -c 1 -i 159 -a 1 -x {1.0 6.0 88 ------- null} h -t 1.91 -s 3 -d 4 -p cbr -e 500 -c 1 -i 159 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.918 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 160 -a 1 -x {2.0 7.0 57 ------- null} h -t 1.918 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 160 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.922 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 148 -a 1 -x {2.0 7.0 53 ------- null} + -t 1.922 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 148 -a 1 -x {2.0 7.0 53 ------- null} - -t 1.922 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 148 -a 1 -x {2.0 7.0 53 ------- null} h -t 1.922 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 148 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.92528 -s 3 -d 0 -p ack -e 40 -c 0 -i 152 -a 0 -x {5.0 0.0 6 ------- null} + -t 1.92528 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 175 -a 0 -x {0.0 5.0 13 ------- null} - -t 1.92528 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 175 -a 0 -x {0.0 5.0 13 ------- null} h -t 1.92528 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 175 -a 0 -x {0.0 5.0 -1 ------- null} + -t 1.92528 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 176 -a 0 -x {0.0 5.0 14 ------- null} r -t 1.92728 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 166 -a 0 -x {0.0 5.0 9 ------- null} + -t 1.92728 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 166 -a 0 -x {0.0 5.0 9 ------- null} r -t 1.928 -s 1 -d 3 -p cbr -e 500 -c 1 -i 168 -a 1 -x {1.0 6.0 91 ------- null} + -t 1.928 -s 3 -d 4 -p cbr -e 500 -c 1 -i 168 -a 1 -x {1.0 6.0 91 ------- null} + -t 1.93 -s 1 -d 3 -p cbr -e 500 -c 1 -i 177 -a 1 -x {1.0 6.0 94 ------- null} - -t 1.93 -s 1 -d 3 -p cbr -e 500 -c 1 -i 177 -a 1 -x {1.0 6.0 94 ------- null} h -t 1.93 -s 1 -d 3 -p cbr -e 500 -c 1 -i 177 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.93 -s 3 -d 4 -p cbr -e 500 -c 1 -i 150 -a 1 -x {1.0 6.0 83 ------- null} + -t 1.93 -s 4 -d 6 -p cbr -e 500 -c 1 -i 150 -a 1 -x {1.0 6.0 83 ------- null} - -t 1.93 -s 4 -d 6 -p cbr -e 500 -c 1 -i 150 -a 1 -x {1.0 6.0 83 ------- null} h -t 1.93 -s 4 -d 6 -p cbr -e 500 -c 1 -i 150 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.93 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 178 -a 1 -x {2.0 7.0 61 ------- null} - -t 1.93 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 178 -a 1 -x {2.0 7.0 61 ------- null} h -t 1.93 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 178 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.932 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 141 -a 1 -x {2.0 7.0 51 ------- null} r -t 1.932 -s 4 -d 6 -p cbr -e 500 -c 1 -i 143 -a 1 -x {1.0 6.0 80 ------- null} - -t 1.93328 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 176 -a 0 -x {0.0 5.0 14 ------- null} h -t 1.93328 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 176 -a 0 -x {0.0 5.0 -1 ------- null} - -t 1.934 -s 3 -d 4 -p cbr -e 500 -c 1 -i 161 -a 1 -x {1.0 6.0 89 ------- null} h -t 1.934 -s 3 -d 4 -p cbr -e 500 -c 1 -i 161 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.93528 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 167 -a 0 -x {0.0 5.0 10 ------- null} + -t 1.93528 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 167 -a 0 -x {0.0 5.0 10 ------- null} r -t 1.936 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 169 -a 1 -x {2.0 7.0 59 ------- null} + -t 1.936 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 169 -a 1 -x {2.0 7.0 59 ------- null} - -t 1.942 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 162 -a 0 -x {0.0 5.0 7 ------- null} h -t 1.942 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 162 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.946 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 151 -a 1 -x {2.0 7.0 54 ------- null} + -t 1.946 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 151 -a 1 -x {2.0 7.0 54 ------- null} - -t 1.946 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 151 -a 1 -x {2.0 7.0 54 ------- null} h -t 1.946 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 151 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.948 -s 1 -d 3 -p cbr -e 500 -c 1 -i 170 -a 1 -x {1.0 6.0 92 ------- null} + -t 1.948 -s 3 -d 4 -p cbr -e 500 -c 1 -i 170 -a 1 -x {1.0 6.0 92 ------- null} + -t 1.95 -s 1 -d 3 -p cbr -e 500 -c 1 -i 179 -a 1 -x {1.0 6.0 95 ------- null} - -t 1.95 -s 1 -d 3 -p cbr -e 500 -c 1 -i 179 -a 1 -x {1.0 6.0 95 ------- null} h -t 1.95 -s 1 -d 3 -p cbr -e 500 -c 1 -i 179 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.95128 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 171 -a 0 -x {0.0 5.0 11 ------- null} + -t 1.95128 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 171 -a 0 -x {0.0 5.0 11 ------- null} r -t 1.954 -s 3 -d 4 -p cbr -e 500 -c 1 -i 153 -a 1 -x {1.0 6.0 84 ------- null} + -t 1.954 -s 4 -d 6 -p cbr -e 500 -c 1 -i 153 -a 1 -x {1.0 6.0 84 ------- null} - -t 1.954 -s 4 -d 6 -p cbr -e 500 -c 1 -i 153 -a 1 -x {1.0 6.0 84 ------- null} h -t 1.954 -s 4 -d 6 -p cbr -e 500 -c 1 -i 153 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.956 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 144 -a 1 -x {2.0 7.0 52 ------- null} r -t 1.956 -s 4 -d 6 -p cbr -e 500 -c 1 -i 146 -a 1 -x {1.0 6.0 81 ------- null} - -t 1.958 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 163 -a 0 -x {0.0 5.0 8 ------- null} h -t 1.958 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 163 -a 0 -x {0.0 5.0 -1 ------- null} r -t 1.95928 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 172 -a 0 -x {0.0 5.0 12 ------- null} + -t 1.95928 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 172 -a 0 -x {0.0 5.0 12 ------- null} + -t 1.96 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 180 -a 1 -x {2.0 7.0 62 ------- null} - -t 1.96 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 180 -a 1 -x {2.0 7.0 62 ------- null} h -t 1.96 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 180 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.962 -s 3 -d 4 -p cbr -e 500 -c 1 -i 154 -a 1 -x {1.0 6.0 85 ------- null} + -t 1.962 -s 4 -d 6 -p cbr -e 500 -c 1 -i 154 -a 1 -x {1.0 6.0 85 ------- null} - -t 1.962 -s 4 -d 6 -p cbr -e 500 -c 1 -i 154 -a 1 -x {1.0 6.0 85 ------- null} h -t 1.962 -s 4 -d 6 -p cbr -e 500 -c 1 -i 154 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.964 -s 4 -d 6 -p cbr -e 500 -c 1 -i 147 -a 1 -x {1.0 6.0 82 ------- null} r -t 1.966 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 173 -a 1 -x {2.0 7.0 60 ------- null} + -t 1.966 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 173 -a 1 -x {2.0 7.0 60 ------- null} d -t 1.966 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 173 -a 1 -x {2.0 7.0 60 ------- null} r -t 1.968 -s 1 -d 3 -p cbr -e 500 -c 1 -i 174 -a 1 -x {1.0 6.0 93 ------- null} + -t 1.968 -s 3 -d 4 -p cbr -e 500 -c 1 -i 174 -a 1 -x {1.0 6.0 93 ------- null} d -t 1.968 -s 3 -d 4 -p cbr -e 500 -c 1 -i 174 -a 1 -x {1.0 6.0 93 ------- null} + -t 1.97 -s 1 -d 3 -p cbr -e 500 -c 1 -i 181 -a 1 -x {1.0 6.0 96 ------- null} - -t 1.97 -s 1 -d 3 -p cbr -e 500 -c 1 -i 181 -a 1 -x {1.0 6.0 96 ------- null} h -t 1.97 -s 1 -d 3 -p cbr -e 500 -c 1 -i 181 -a 1 -x {1.0 6.0 -1 ------- null} - -t 1.974 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 164 -a 1 -x {2.0 7.0 58 ------- null} h -t 1.974 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 164 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.978 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 155 -a 1 -x {2.0 7.0 55 ------- null} + -t 1.978 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 155 -a 1 -x {2.0 7.0 55 ------- null} - -t 1.978 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 155 -a 1 -x {2.0 7.0 55 ------- null} h -t 1.978 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 155 -a 1 -x {2.0 7.0 -1 ------- null} r -t 1.98328 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 175 -a 0 -x {0.0 5.0 13 ------- null} + -t 1.98328 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 175 -a 0 -x {0.0 5.0 13 ------- null} r -t 1.986 -s 3 -d 4 -p cbr -e 500 -c 1 -i 156 -a 1 -x {1.0 6.0 86 ------- null} + -t 1.986 -s 4 -d 6 -p cbr -e 500 -c 1 -i 156 -a 1 -x {1.0 6.0 86 ------- null} - -t 1.986 -s 4 -d 6 -p cbr -e 500 -c 1 -i 156 -a 1 -x {1.0 6.0 86 ------- null} h -t 1.986 -s 4 -d 6 -p cbr -e 500 -c 1 -i 156 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.988 -s 1 -d 3 -p cbr -e 500 -c 1 -i 177 -a 1 -x {1.0 6.0 94 ------- null} + -t 1.988 -s 3 -d 4 -p cbr -e 500 -c 1 -i 177 -a 1 -x {1.0 6.0 94 ------- null} d -t 1.988 -s 3 -d 4 -p cbr -e 500 -c 1 -i 177 -a 1 -x {1.0 6.0 94 ------- null} r -t 1.988 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 148 -a 1 -x {2.0 7.0 53 ------- null} r -t 1.988 -s 4 -d 6 -p cbr -e 500 -c 1 -i 150 -a 1 -x {1.0 6.0 83 ------- null} + -t 1.99 -s 1 -d 3 -p cbr -e 500 -c 1 -i 182 -a 1 -x {1.0 6.0 97 ------- null} - -t 1.99 -s 1 -d 3 -p cbr -e 500 -c 1 -i 182 -a 1 -x {1.0 6.0 97 ------- null} h -t 1.99 -s 1 -d 3 -p cbr -e 500 -c 1 -i 182 -a 1 -x {1.0 6.0 -1 ------- null} + -t 1.99 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 183 -a 1 -x {2.0 7.0 63 ------- null} - -t 1.99 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 183 -a 1 -x {2.0 7.0 63 ------- null} h -t 1.99 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 183 -a 1 -x {2.0 7.0 -1 ------- null} - -t 1.99 -s 3 -d 4 -p cbr -e 500 -c 1 -i 165 -a 1 -x {1.0 6.0 90 ------- null} h -t 1.99 -s 3 -d 4 -p cbr -e 500 -c 1 -i 165 -a 1 -x {1.0 6.0 -1 ------- null} r -t 1.99128 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 176 -a 0 -x {0.0 5.0 14 ------- null} + -t 1.99128 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 176 -a 0 -x {0.0 5.0 14 ------- null} r -t 1.996 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 178 -a 1 -x {2.0 7.0 61 ------- null} + -t 1.996 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 178 -a 1 -x {2.0 7.0 61 ------- null} d -t 1.996 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 178 -a 1 -x {2.0 7.0 61 ------- null} - -t 1.998 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 166 -a 0 -x {0.0 5.0 9 ------- null} h -t 1.998 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 166 -a 0 -x {0.0 5.0 -1 ------- null} v -t 2 -e take_snapshot r -t 2.002 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 157 -a 1 -x {2.0 7.0 56 ------- null} + -t 2.002 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 157 -a 1 -x {2.0 7.0 56 ------- null} - -t 2.002 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 157 -a 1 -x {2.0 7.0 56 ------- null} h -t 2.002 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 157 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.008 -s 1 -d 3 -p cbr -e 500 -c 1 -i 179 -a 1 -x {1.0 6.0 95 ------- null} + -t 2.008 -s 3 -d 4 -p cbr -e 500 -c 1 -i 179 -a 1 -x {1.0 6.0 95 ------- null} + -t 2.01 -s 1 -d 3 -p cbr -e 500 -c 1 -i 184 -a 1 -x {1.0 6.0 98 ------- null} - -t 2.01 -s 1 -d 3 -p cbr -e 500 -c 1 -i 184 -a 1 -x {1.0 6.0 98 ------- null} h -t 2.01 -s 1 -d 3 -p cbr -e 500 -c 1 -i 184 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.01 -s 3 -d 4 -p cbr -e 500 -c 1 -i 158 -a 1 -x {1.0 6.0 87 ------- null} + -t 2.01 -s 4 -d 6 -p cbr -e 500 -c 1 -i 158 -a 1 -x {1.0 6.0 87 ------- null} - -t 2.01 -s 4 -d 6 -p cbr -e 500 -c 1 -i 158 -a 1 -x {1.0 6.0 87 ------- null} h -t 2.01 -s 4 -d 6 -p cbr -e 500 -c 1 -i 158 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.012 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 151 -a 1 -x {2.0 7.0 54 ------- null} r -t 2.012 -s 4 -d 6 -p cbr -e 500 -c 1 -i 153 -a 1 -x {1.0 6.0 84 ------- null} - -t 2.014 -s 3 -d 4 -p cbr -e 500 -c 1 -i 168 -a 1 -x {1.0 6.0 91 ------- null} h -t 2.014 -s 3 -d 4 -p cbr -e 500 -c 1 -i 168 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.018 -s 3 -d 4 -p cbr -e 500 -c 1 -i 159 -a 1 -x {1.0 6.0 88 ------- null} + -t 2.018 -s 4 -d 6 -p cbr -e 500 -c 1 -i 159 -a 1 -x {1.0 6.0 88 ------- null} - -t 2.018 -s 4 -d 6 -p cbr -e 500 -c 1 -i 159 -a 1 -x {1.0 6.0 88 ------- null} h -t 2.018 -s 4 -d 6 -p cbr -e 500 -c 1 -i 159 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.02 -s 4 -d 6 -p cbr -e 500 -c 1 -i 154 -a 1 -x {1.0 6.0 85 ------- null} + -t 2.02 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 185 -a 1 -x {2.0 7.0 64 ------- null} - -t 2.02 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 185 -a 1 -x {2.0 7.0 64 ------- null} h -t 2.02 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 185 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.022 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 167 -a 0 -x {0.0 5.0 10 ------- null} h -t 2.022 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 167 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.026 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 180 -a 1 -x {2.0 7.0 62 ------- null} + -t 2.026 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 180 -a 1 -x {2.0 7.0 62 ------- null} r -t 2.028 -s 1 -d 3 -p cbr -e 500 -c 1 -i 181 -a 1 -x {1.0 6.0 96 ------- null} + -t 2.028 -s 3 -d 4 -p cbr -e 500 -c 1 -i 181 -a 1 -x {1.0 6.0 96 ------- null} + -t 2.03 -s 1 -d 3 -p cbr -e 500 -c 1 -i 186 -a 1 -x {1.0 6.0 99 ------- null} - -t 2.03 -s 1 -d 3 -p cbr -e 500 -c 1 -i 186 -a 1 -x {1.0 6.0 99 ------- null} h -t 2.03 -s 1 -d 3 -p cbr -e 500 -c 1 -i 186 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.034 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 160 -a 1 -x {2.0 7.0 57 ------- null} + -t 2.034 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 160 -a 1 -x {2.0 7.0 57 ------- null} - -t 2.034 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 160 -a 1 -x {2.0 7.0 57 ------- null} h -t 2.034 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 160 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.038 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 169 -a 1 -x {2.0 7.0 59 ------- null} h -t 2.038 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 169 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.042 -s 3 -d 4 -p cbr -e 500 -c 1 -i 161 -a 1 -x {1.0 6.0 89 ------- null} + -t 2.042 -s 4 -d 6 -p cbr -e 500 -c 1 -i 161 -a 1 -x {1.0 6.0 89 ------- null} - -t 2.042 -s 4 -d 6 -p cbr -e 500 -c 1 -i 161 -a 1 -x {1.0 6.0 89 ------- null} h -t 2.042 -s 4 -d 6 -p cbr -e 500 -c 1 -i 161 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.044 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 155 -a 1 -x {2.0 7.0 55 ------- null} r -t 2.044 -s 4 -d 6 -p cbr -e 500 -c 1 -i 156 -a 1 -x {1.0 6.0 86 ------- null} r -t 2.048 -s 1 -d 3 -p cbr -e 500 -c 1 -i 182 -a 1 -x {1.0 6.0 97 ------- null} + -t 2.048 -s 3 -d 4 -p cbr -e 500 -c 1 -i 182 -a 1 -x {1.0 6.0 97 ------- null} + -t 2.05 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 187 -a 1 -x {2.0 7.0 65 ------- null} - -t 2.05 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 187 -a 1 -x {2.0 7.0 65 ------- null} h -t 2.05 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 187 -a 1 -x {2.0 7.0 -1 ------- null} + -t 2.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 188 -a 1 -x {1.0 6.0 100 ------- null} - -t 2.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 188 -a 1 -x {1.0 6.0 100 ------- null} h -t 2.05 -s 1 -d 3 -p cbr -e 500 -c 1 -i 188 -a 1 -x {1.0 6.0 -1 ------- null} - -t 2.054 -s 3 -d 4 -p cbr -e 500 -c 1 -i 170 -a 1 -x {1.0 6.0 92 ------- null} h -t 2.054 -s 3 -d 4 -p cbr -e 500 -c 1 -i 170 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.056 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 183 -a 1 -x {2.0 7.0 63 ------- null} + -t 2.056 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 183 -a 1 -x {2.0 7.0 63 ------- null} r -t 2.058 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 162 -a 0 -x {0.0 5.0 7 ------- null} + -t 2.058 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 162 -a 0 -x {0.0 5.0 7 ------- null} - -t 2.058 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 162 -a 0 -x {0.0 5.0 7 ------- null} h -t 2.058 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 162 -a 0 -x {0.0 5.0 -1 ------- null} - -t 2.062 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 171 -a 0 -x {0.0 5.0 11 ------- null} h -t 2.062 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 171 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.068 -s 1 -d 3 -p cbr -e 500 -c 1 -i 184 -a 1 -x {1.0 6.0 98 ------- null} + -t 2.068 -s 3 -d 4 -p cbr -e 500 -c 1 -i 184 -a 1 -x {1.0 6.0 98 ------- null} r -t 2.068 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 157 -a 1 -x {2.0 7.0 56 ------- null} r -t 2.068 -s 4 -d 6 -p cbr -e 500 -c 1 -i 158 -a 1 -x {1.0 6.0 87 ------- null} + -t 2.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 189 -a 1 -x {1.0 6.0 101 ------- null} - -t 2.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 189 -a 1 -x {1.0 6.0 101 ------- null} h -t 2.07 -s 1 -d 3 -p cbr -e 500 -c 1 -i 189 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.074 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 163 -a 0 -x {0.0 5.0 8 ------- null} + -t 2.074 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 163 -a 0 -x {0.0 5.0 8 ------- null} - -t 2.074 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 163 -a 0 -x {0.0 5.0 8 ------- null} h -t 2.074 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 163 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.076 -s 4 -d 6 -p cbr -e 500 -c 1 -i 159 -a 1 -x {1.0 6.0 88 ------- null} - -t 2.078 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 172 -a 0 -x {0.0 5.0 12 ------- null} h -t 2.078 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 172 -a 0 -x {0.0 5.0 -1 ------- null} + -t 2.08 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 190 -a 1 -x {2.0 7.0 66 ------- null} - -t 2.08 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 190 -a 1 -x {2.0 7.0 66 ------- null} h -t 2.08 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 190 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.086 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 185 -a 1 -x {2.0 7.0 64 ------- null} + -t 2.086 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 185 -a 1 -x {2.0 7.0 64 ------- null} r -t 2.088 -s 1 -d 3 -p cbr -e 500 -c 1 -i 186 -a 1 -x {1.0 6.0 99 ------- null} + -t 2.088 -s 3 -d 4 -p cbr -e 500 -c 1 -i 186 -a 1 -x {1.0 6.0 99 ------- null} d -t 2.088 -s 3 -d 4 -p cbr -e 500 -c 1 -i 186 -a 1 -x {1.0 6.0 99 ------- null} + -t 2.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 191 -a 1 -x {1.0 6.0 102 ------- null} - -t 2.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 191 -a 1 -x {1.0 6.0 102 ------- null} h -t 2.09 -s 1 -d 3 -p cbr -e 500 -c 1 -i 191 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.09 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 164 -a 1 -x {2.0 7.0 58 ------- null} + -t 2.09 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 164 -a 1 -x {2.0 7.0 58 ------- null} - -t 2.09 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 164 -a 1 -x {2.0 7.0 58 ------- null} h -t 2.09 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 164 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.094 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 175 -a 0 -x {0.0 5.0 13 ------- null} h -t 2.094 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 175 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.098 -s 3 -d 4 -p cbr -e 500 -c 1 -i 165 -a 1 -x {1.0 6.0 90 ------- null} + -t 2.098 -s 4 -d 6 -p cbr -e 500 -c 1 -i 165 -a 1 -x {1.0 6.0 90 ------- null} - -t 2.098 -s 4 -d 6 -p cbr -e 500 -c 1 -i 165 -a 1 -x {1.0 6.0 90 ------- null} h -t 2.098 -s 4 -d 6 -p cbr -e 500 -c 1 -i 165 -a 1 -x {1.0 6.0 -1 ------- null} v -t 2.1000000000000001 -e take_snapshot v -t 2.1000000000000001 -e playing_backward r -t 2.1 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 160 -a 1 -x {2.0 7.0 57 ------- null} r -t 2.1 -s 4 -d 6 -p cbr -e 500 -c 1 -i 161 -a 1 -x {1.0 6.0 89 ------- null} r -t 2.108 -s 1 -d 3 -p cbr -e 500 -c 1 -i 188 -a 1 -x {1.0 6.0 100 ------- null} + -t 2.108 -s 3 -d 4 -p cbr -e 500 -c 1 -i 188 -a 1 -x {1.0 6.0 100 ------- null} + -t 2.11 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 192 -a 1 -x {2.0 7.0 67 ------- null} - -t 2.11 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 192 -a 1 -x {2.0 7.0 67 ------- null} h -t 2.11 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 192 -a 1 -x {2.0 7.0 -1 ------- null} + -t 2.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 193 -a 1 -x {1.0 6.0 103 ------- null} - -t 2.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 193 -a 1 -x {1.0 6.0 103 ------- null} h -t 2.11 -s 1 -d 3 -p cbr -e 500 -c 1 -i 193 -a 1 -x {1.0 6.0 -1 ------- null} - -t 2.11 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 176 -a 0 -x {0.0 5.0 14 ------- null} h -t 2.11 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 176 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.114 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 166 -a 0 -x {0.0 5.0 9 ------- null} + -t 2.114 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 166 -a 0 -x {0.0 5.0 9 ------- null} - -t 2.114 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 166 -a 0 -x {0.0 5.0 9 ------- null} h -t 2.114 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 166 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.116 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 187 -a 1 -x {2.0 7.0 65 ------- null} + -t 2.116 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 187 -a 1 -x {2.0 7.0 65 ------- null} r -t 2.116 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 162 -a 0 -x {0.0 5.0 7 ------- null} + -t 2.116 -s 5 -d 4 -p ack -e 40 -c 0 -i 194 -a 0 -x {5.0 0.0 7 ------- null} - -t 2.116 -s 5 -d 4 -p ack -e 40 -c 0 -i 194 -a 0 -x {5.0 0.0 7 ------- null} h -t 2.116 -s 5 -d 4 -p ack -e 40 -c 0 -i 194 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.122 -s 3 -d 4 -p cbr -e 500 -c 1 -i 168 -a 1 -x {1.0 6.0 91 ------- null} + -t 2.122 -s 4 -d 6 -p cbr -e 500 -c 1 -i 168 -a 1 -x {1.0 6.0 91 ------- null} - -t 2.122 -s 4 -d 6 -p cbr -e 500 -c 1 -i 168 -a 1 -x {1.0 6.0 91 ------- null} h -t 2.122 -s 4 -d 6 -p cbr -e 500 -c 1 -i 168 -a 1 -x {1.0 6.0 -1 ------- null} - -t 2.126 -s 3 -d 4 -p cbr -e 500 -c 1 -i 179 -a 1 -x {1.0 6.0 95 ------- null} h -t 2.126 -s 3 -d 4 -p cbr -e 500 -c 1 -i 179 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.128 -s 1 -d 3 -p cbr -e 500 -c 1 -i 189 -a 1 -x {1.0 6.0 101 ------- null} + -t 2.128 -s 3 -d 4 -p cbr -e 500 -c 1 -i 189 -a 1 -x {1.0 6.0 101 ------- null} + -t 2.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 195 -a 1 -x {1.0 6.0 104 ------- null} - -t 2.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 195 -a 1 -x {1.0 6.0 104 ------- null} h -t 2.13 -s 1 -d 3 -p cbr -e 500 -c 1 -i 195 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.132 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 163 -a 0 -x {0.0 5.0 8 ------- null} + -t 2.132 -s 5 -d 4 -p ack -e 40 -c 0 -i 196 -a 0 -x {5.0 0.0 8 ------- null} - -t 2.132 -s 5 -d 4 -p ack -e 40 -c 0 -i 196 -a 0 -x {5.0 0.0 8 ------- null} h -t 2.132 -s 5 -d 4 -p ack -e 40 -c 0 -i 196 -a 0 -x {5.0 0.0 -1 ------- null} - -t 2.134 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 180 -a 1 -x {2.0 7.0 62 ------- null} h -t 2.134 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 180 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.138 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 167 -a 0 -x {0.0 5.0 10 ------- null} + -t 2.138 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 167 -a 0 -x {0.0 5.0 10 ------- null} - -t 2.138 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 167 -a 0 -x {0.0 5.0 10 ------- null} h -t 2.138 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 167 -a 0 -x {0.0 5.0 -1 ------- null} + -t 2.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 197 -a 1 -x {2.0 7.0 68 ------- null} - -t 2.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 197 -a 1 -x {2.0 7.0 68 ------- null} h -t 2.14 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 197 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.146 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 190 -a 1 -x {2.0 7.0 66 ------- null} + -t 2.146 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 190 -a 1 -x {2.0 7.0 66 ------- null} r -t 2.148 -s 1 -d 3 -p cbr -e 500 -c 1 -i 191 -a 1 -x {1.0 6.0 102 ------- null} + -t 2.148 -s 3 -d 4 -p cbr -e 500 -c 1 -i 191 -a 1 -x {1.0 6.0 102 ------- null} d -t 2.148 -s 3 -d 4 -p cbr -e 500 -c 1 -i 191 -a 1 -x {1.0 6.0 102 ------- null} + -t 2.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 198 -a 1 -x {1.0 6.0 105 ------- null} - -t 2.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 198 -a 1 -x {1.0 6.0 105 ------- null} h -t 2.15 -s 1 -d 3 -p cbr -e 500 -c 1 -i 198 -a 1 -x {1.0 6.0 -1 ------- null} - -t 2.15 -s 3 -d 4 -p cbr -e 500 -c 1 -i 181 -a 1 -x {1.0 6.0 96 ------- null} h -t 2.15 -s 3 -d 4 -p cbr -e 500 -c 1 -i 181 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.154 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 169 -a 1 -x {2.0 7.0 59 ------- null} + -t 2.154 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 169 -a 1 -x {2.0 7.0 59 ------- null} - -t 2.154 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 169 -a 1 -x {2.0 7.0 59 ------- null} h -t 2.154 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 169 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.156 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 164 -a 1 -x {2.0 7.0 58 ------- null} r -t 2.156 -s 4 -d 6 -p cbr -e 500 -c 1 -i 165 -a 1 -x {1.0 6.0 90 ------- null} - -t 2.158 -s 3 -d 4 -p cbr -e 500 -c 1 -i 182 -a 1 -x {1.0 6.0 97 ------- null} h -t 2.158 -s 3 -d 4 -p cbr -e 500 -c 1 -i 182 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.162 -s 3 -d 4 -p cbr -e 500 -c 1 -i 170 -a 1 -x {1.0 6.0 92 ------- null} + -t 2.162 -s 4 -d 6 -p cbr -e 500 -c 1 -i 170 -a 1 -x {1.0 6.0 92 ------- null} - -t 2.162 -s 4 -d 6 -p cbr -e 500 -c 1 -i 170 -a 1 -x {1.0 6.0 92 ------- null} h -t 2.162 -s 4 -d 6 -p cbr -e 500 -c 1 -i 170 -a 1 -x {1.0 6.0 -1 ------- null} - -t 2.166 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 183 -a 1 -x {2.0 7.0 63 ------- null} h -t 2.166 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 183 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.16632 -s 5 -d 4 -p ack -e 40 -c 0 -i 194 -a 0 -x {5.0 0.0 7 ------- null} + -t 2.16632 -s 4 -d 3 -p ack -e 40 -c 0 -i 194 -a 0 -x {5.0 0.0 7 ------- null} - -t 2.16632 -s 4 -d 3 -p ack -e 40 -c 0 -i 194 -a 0 -x {5.0 0.0 7 ------- null} h -t 2.16632 -s 4 -d 3 -p ack -e 40 -c 0 -i 194 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.168 -s 1 -d 3 -p cbr -e 500 -c 1 -i 193 -a 1 -x {1.0 6.0 103 ------- null} + -t 2.168 -s 3 -d 4 -p cbr -e 500 -c 1 -i 193 -a 1 -x {1.0 6.0 103 ------- null} + -t 2.17 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 199 -a 1 -x {2.0 7.0 69 ------- null} - -t 2.17 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 199 -a 1 -x {2.0 7.0 69 ------- null} h -t 2.17 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 199 -a 1 -x {2.0 7.0 -1 ------- null} + -t 2.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 200 -a 1 -x {1.0 6.0 106 ------- null} - -t 2.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 200 -a 1 -x {1.0 6.0 106 ------- null} h -t 2.17 -s 1 -d 3 -p cbr -e 500 -c 1 -i 200 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.172 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 166 -a 0 -x {0.0 5.0 9 ------- null} + -t 2.172 -s 5 -d 4 -p ack -e 40 -c 0 -i 201 -a 0 -x {5.0 0.0 9 ------- null} - -t 2.172 -s 5 -d 4 -p ack -e 40 -c 0 -i 201 -a 0 -x {5.0 0.0 9 ------- null} h -t 2.172 -s 5 -d 4 -p ack -e 40 -c 0 -i 201 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.176 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 192 -a 1 -x {2.0 7.0 67 ------- null} + -t 2.176 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 192 -a 1 -x {2.0 7.0 67 ------- null} r -t 2.178 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 171 -a 0 -x {0.0 5.0 11 ------- null} + -t 2.178 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 171 -a 0 -x {0.0 5.0 11 ------- null} - -t 2.178 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 171 -a 0 -x {0.0 5.0 11 ------- null} h -t 2.178 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 171 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.18 -s 4 -d 6 -p cbr -e 500 -c 1 -i 168 -a 1 -x {1.0 6.0 91 ------- null} - -t 2.182 -s 3 -d 4 -p cbr -e 500 -c 1 -i 184 -a 1 -x {1.0 6.0 98 ------- null} h -t 2.182 -s 3 -d 4 -p cbr -e 500 -c 1 -i 184 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.18232 -s 5 -d 4 -p ack -e 40 -c 0 -i 196 -a 0 -x {5.0 0.0 8 ------- null} + -t 2.18232 -s 4 -d 3 -p ack -e 40 -c 0 -i 196 -a 0 -x {5.0 0.0 8 ------- null} - -t 2.18232 -s 4 -d 3 -p ack -e 40 -c 0 -i 196 -a 0 -x {5.0 0.0 8 ------- null} h -t 2.18232 -s 4 -d 3 -p ack -e 40 -c 0 -i 196 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.188 -s 1 -d 3 -p cbr -e 500 -c 1 -i 195 -a 1 -x {1.0 6.0 104 ------- null} + -t 2.188 -s 3 -d 4 -p cbr -e 500 -c 1 -i 195 -a 1 -x {1.0 6.0 104 ------- null} + -t 2.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 202 -a 1 -x {1.0 6.0 107 ------- null} - -t 2.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 202 -a 1 -x {1.0 6.0 107 ------- null} h -t 2.19 -s 1 -d 3 -p cbr -e 500 -c 1 -i 202 -a 1 -x {1.0 6.0 -1 ------- null} - -t 2.19 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 185 -a 1 -x {2.0 7.0 64 ------- null} h -t 2.19 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 185 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.194 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 172 -a 0 -x {0.0 5.0 12 ------- null} + -t 2.194 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 172 -a 0 -x {0.0 5.0 12 ------- null} - -t 2.194 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 172 -a 0 -x {0.0 5.0 12 ------- null} h -t 2.194 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 172 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.196 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 167 -a 0 -x {0.0 5.0 10 ------- null} + -t 2.196 -s 5 -d 4 -p ack -e 40 -c 0 -i 203 -a 0 -x {5.0 0.0 10 ------- null} - -t 2.196 -s 5 -d 4 -p ack -e 40 -c 0 -i 203 -a 0 -x {5.0 0.0 10 ------- null} h -t 2.196 -s 5 -d 4 -p ack -e 40 -c 0 -i 203 -a 0 -x {5.0 0.0 -1 ------- null} v -t 2.2000000000000002 -e take_snapshot + -t 2.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 204 -a 1 -x {2.0 7.0 70 ------- null} - -t 2.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 204 -a 1 -x {2.0 7.0 70 ------- null} h -t 2.2 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 204 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.206 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 197 -a 1 -x {2.0 7.0 68 ------- null} + -t 2.206 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 197 -a 1 -x {2.0 7.0 68 ------- null} - -t 2.206 -s 3 -d 4 -p cbr -e 500 -c 1 -i 188 -a 1 -x {1.0 6.0 100 ------- null} h -t 2.206 -s 3 -d 4 -p cbr -e 500 -c 1 -i 188 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.208 -s 1 -d 3 -p cbr -e 500 -c 1 -i 198 -a 1 -x {1.0 6.0 105 ------- null} + -t 2.208 -s 3 -d 4 -p cbr -e 500 -c 1 -i 198 -a 1 -x {1.0 6.0 105 ------- null} + -t 2.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 205 -a 1 -x {1.0 6.0 108 ------- null} - -t 2.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 205 -a 1 -x {1.0 6.0 108 ------- null} h -t 2.21 -s 1 -d 3 -p cbr -e 500 -c 1 -i 205 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.21 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 175 -a 0 -x {0.0 5.0 13 ------- null} + -t 2.21 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 175 -a 0 -x {0.0 5.0 13 ------- null} - -t 2.21 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 175 -a 0 -x {0.0 5.0 13 ------- null} h -t 2.21 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 175 -a 0 -x {0.0 5.0 -1 ------- null} - -t 2.214 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 187 -a 1 -x {2.0 7.0 65 ------- null} h -t 2.214 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 187 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.22 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 169 -a 1 -x {2.0 7.0 59 ------- null} r -t 2.22 -s 4 -d 6 -p cbr -e 500 -c 1 -i 170 -a 1 -x {1.0 6.0 92 ------- null} r -t 2.22232 -s 5 -d 4 -p ack -e 40 -c 0 -i 201 -a 0 -x {5.0 0.0 9 ------- null} + -t 2.22232 -s 4 -d 3 -p ack -e 40 -c 0 -i 201 -a 0 -x {5.0 0.0 9 ------- null} - -t 2.22232 -s 4 -d 3 -p ack -e 40 -c 0 -i 201 -a 0 -x {5.0 0.0 9 ------- null} h -t 2.22232 -s 4 -d 3 -p ack -e 40 -c 0 -i 201 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.226 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 176 -a 0 -x {0.0 5.0 14 ------- null} + -t 2.226 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 176 -a 0 -x {0.0 5.0 14 ------- null} - -t 2.226 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 176 -a 0 -x {0.0 5.0 14 ------- null} h -t 2.226 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 176 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.228 -s 1 -d 3 -p cbr -e 500 -c 1 -i 200 -a 1 -x {1.0 6.0 106 ------- null} + -t 2.228 -s 3 -d 4 -p cbr -e 500 -c 1 -i 200 -a 1 -x {1.0 6.0 106 ------- null} + -t 2.23 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 206 -a 1 -x {2.0 7.0 71 ------- null} - -t 2.23 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 206 -a 1 -x {2.0 7.0 71 ------- null} h -t 2.23 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 206 -a 1 -x {2.0 7.0 -1 ------- null} + -t 2.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 207 -a 1 -x {1.0 6.0 109 ------- null} - -t 2.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 207 -a 1 -x {1.0 6.0 109 ------- null} h -t 2.23 -s 1 -d 3 -p cbr -e 500 -c 1 -i 207 -a 1 -x {1.0 6.0 -1 ------- null} - -t 2.23 -s 3 -d 4 -p cbr -e 500 -c 1 -i 189 -a 1 -x {1.0 6.0 101 ------- null} h -t 2.23 -s 3 -d 4 -p cbr -e 500 -c 1 -i 189 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.234 -s 3 -d 4 -p cbr -e 500 -c 1 -i 179 -a 1 -x {1.0 6.0 95 ------- null} + -t 2.234 -s 4 -d 6 -p cbr -e 500 -c 1 -i 179 -a 1 -x {1.0 6.0 95 ------- null} - -t 2.234 -s 4 -d 6 -p cbr -e 500 -c 1 -i 179 -a 1 -x {1.0 6.0 95 ------- null} h -t 2.234 -s 4 -d 6 -p cbr -e 500 -c 1 -i 179 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.236 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 199 -a 1 -x {2.0 7.0 69 ------- null} + -t 2.236 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 199 -a 1 -x {2.0 7.0 69 ------- null} r -t 2.236 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 171 -a 0 -x {0.0 5.0 11 ------- null} + -t 2.236 -s 5 -d 4 -p ack -e 40 -c 0 -i 208 -a 0 -x {5.0 0.0 11 ------- null} - -t 2.236 -s 5 -d 4 -p ack -e 40 -c 0 -i 208 -a 0 -x {5.0 0.0 11 ------- null} h -t 2.236 -s 5 -d 4 -p ack -e 40 -c 0 -i 208 -a 0 -x {5.0 0.0 -1 ------- null} - -t 2.238 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 190 -a 1 -x {2.0 7.0 66 ------- null} h -t 2.238 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 190 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.24632 -s 5 -d 4 -p ack -e 40 -c 0 -i 203 -a 0 -x {5.0 0.0 10 ------- null} + -t 2.24632 -s 4 -d 3 -p ack -e 40 -c 0 -i 203 -a 0 -x {5.0 0.0 10 ------- null} - -t 2.24632 -s 4 -d 3 -p ack -e 40 -c 0 -i 203 -a 0 -x {5.0 0.0 10 ------- null} h -t 2.24632 -s 4 -d 3 -p ack -e 40 -c 0 -i 203 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.248 -s 1 -d 3 -p cbr -e 500 -c 1 -i 202 -a 1 -x {1.0 6.0 107 ------- null} + -t 2.248 -s 3 -d 4 -p cbr -e 500 -c 1 -i 202 -a 1 -x {1.0 6.0 107 ------- null} + -t 2.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 209 -a 1 -x {1.0 6.0 110 ------- null} - -t 2.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 209 -a 1 -x {1.0 6.0 110 ------- null} h -t 2.25 -s 1 -d 3 -p cbr -e 500 -c 1 -i 209 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.25 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 180 -a 1 -x {2.0 7.0 62 ------- null} + -t 2.25 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 180 -a 1 -x {2.0 7.0 62 ------- null} - -t 2.25 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 180 -a 1 -x {2.0 7.0 62 ------- null} h -t 2.25 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 180 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.252 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 172 -a 0 -x {0.0 5.0 12 ------- null} + -t 2.252 -s 5 -d 4 -p ack -e 40 -c 0 -i 210 -a 0 -x {5.0 0.0 12 ------- null} - -t 2.252 -s 5 -d 4 -p ack -e 40 -c 0 -i 210 -a 0 -x {5.0 0.0 12 ------- null} h -t 2.252 -s 5 -d 4 -p ack -e 40 -c 0 -i 210 -a 0 -x {5.0 0.0 -1 ------- null} - -t 2.254 -s 3 -d 4 -p cbr -e 500 -c 1 -i 193 -a 1 -x {1.0 6.0 103 ------- null} h -t 2.254 -s 3 -d 4 -p cbr -e 500 -c 1 -i 193 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.258 -s 3 -d 4 -p cbr -e 500 -c 1 -i 181 -a 1 -x {1.0 6.0 96 ------- null} + -t 2.258 -s 4 -d 6 -p cbr -e 500 -c 1 -i 181 -a 1 -x {1.0 6.0 96 ------- null} - -t 2.258 -s 4 -d 6 -p cbr -e 500 -c 1 -i 181 -a 1 -x {1.0 6.0 96 ------- null} h -t 2.258 -s 4 -d 6 -p cbr -e 500 -c 1 -i 181 -a 1 -x {1.0 6.0 -1 ------- null} + -t 2.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 211 -a 1 -x {2.0 7.0 72 ------- null} - -t 2.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 211 -a 1 -x {2.0 7.0 72 ------- null} h -t 2.26 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 211 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.262 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 192 -a 1 -x {2.0 7.0 67 ------- null} h -t 2.262 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 192 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.266 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 204 -a 1 -x {2.0 7.0 70 ------- null} + -t 2.266 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 204 -a 1 -x {2.0 7.0 70 ------- null} r -t 2.266 -s 3 -d 4 -p cbr -e 500 -c 1 -i 182 -a 1 -x {1.0 6.0 97 ------- null} + -t 2.266 -s 4 -d 6 -p cbr -e 500 -c 1 -i 182 -a 1 -x {1.0 6.0 97 ------- null} - -t 2.266 -s 4 -d 6 -p cbr -e 500 -c 1 -i 182 -a 1 -x {1.0 6.0 97 ------- null} h -t 2.266 -s 4 -d 6 -p cbr -e 500 -c 1 -i 182 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.26696 -s 4 -d 3 -p ack -e 40 -c 0 -i 194 -a 0 -x {5.0 0.0 7 ------- null} + -t 2.26696 -s 3 -d 0 -p ack -e 40 -c 0 -i 194 -a 0 -x {5.0 0.0 7 ------- null} - -t 2.26696 -s 3 -d 0 -p ack -e 40 -c 0 -i 194 -a 0 -x {5.0 0.0 7 ------- null} h -t 2.26696 -s 3 -d 0 -p ack -e 40 -c 0 -i 194 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.268 -s 1 -d 3 -p cbr -e 500 -c 1 -i 205 -a 1 -x {1.0 6.0 108 ------- null} + -t 2.268 -s 3 -d 4 -p cbr -e 500 -c 1 -i 205 -a 1 -x {1.0 6.0 108 ------- null} r -t 2.268 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 175 -a 0 -x {0.0 5.0 13 ------- null} + -t 2.268 -s 5 -d 4 -p ack -e 40 -c 0 -i 212 -a 0 -x {5.0 0.0 13 ------- null} - -t 2.268 -s 5 -d 4 -p ack -e 40 -c 0 -i 212 -a 0 -x {5.0 0.0 13 ------- null} h -t 2.268 -s 5 -d 4 -p ack -e 40 -c 0 -i 212 -a 0 -x {5.0 0.0 -1 ------- null} + -t 2.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 213 -a 1 -x {1.0 6.0 111 ------- null} - -t 2.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 213 -a 1 -x {1.0 6.0 111 ------- null} h -t 2.27 -s 1 -d 3 -p cbr -e 500 -c 1 -i 213 -a 1 -x {1.0 6.0 -1 ------- null} - -t 2.278 -s 3 -d 4 -p cbr -e 500 -c 1 -i 195 -a 1 -x {1.0 6.0 104 ------- null} h -t 2.278 -s 3 -d 4 -p cbr -e 500 -c 1 -i 195 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.282 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 183 -a 1 -x {2.0 7.0 63 ------- null} + -t 2.282 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 183 -a 1 -x {2.0 7.0 63 ------- null} - -t 2.282 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 183 -a 1 -x {2.0 7.0 63 ------- null} h -t 2.282 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 183 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.28296 -s 4 -d 3 -p ack -e 40 -c 0 -i 196 -a 0 -x {5.0 0.0 8 ------- null} + -t 2.28296 -s 3 -d 0 -p ack -e 40 -c 0 -i 196 -a 0 -x {5.0 0.0 8 ------- null} - -t 2.28296 -s 3 -d 0 -p ack -e 40 -c 0 -i 196 -a 0 -x {5.0 0.0 8 ------- null} h -t 2.28296 -s 3 -d 0 -p ack -e 40 -c 0 -i 196 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.284 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 176 -a 0 -x {0.0 5.0 14 ------- null} + -t 2.284 -s 5 -d 4 -p ack -e 40 -c 0 -i 214 -a 0 -x {5.0 0.0 14 ------- null} - -t 2.284 -s 5 -d 4 -p ack -e 40 -c 0 -i 214 -a 0 -x {5.0 0.0 14 ------- null} h -t 2.284 -s 5 -d 4 -p ack -e 40 -c 0 -i 214 -a 0 -x {5.0 0.0 -1 ------- null} - -t 2.286 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 197 -a 1 -x {2.0 7.0 68 ------- null} h -t 2.286 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 197 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.28632 -s 5 -d 4 -p ack -e 40 -c 0 -i 208 -a 0 -x {5.0 0.0 11 ------- null} + -t 2.28632 -s 4 -d 3 -p ack -e 40 -c 0 -i 208 -a 0 -x {5.0 0.0 11 ------- null} - -t 2.28632 -s 4 -d 3 -p ack -e 40 -c 0 -i 208 -a 0 -x {5.0 0.0 11 ------- null} h -t 2.28632 -s 4 -d 3 -p ack -e 40 -c 0 -i 208 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.288 -s 1 -d 3 -p cbr -e 500 -c 1 -i 207 -a 1 -x {1.0 6.0 109 ------- null} + -t 2.288 -s 3 -d 4 -p cbr -e 500 -c 1 -i 207 -a 1 -x {1.0 6.0 109 ------- null} + -t 2.29 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 215 -a 1 -x {2.0 7.0 73 ------- null} - -t 2.29 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 215 -a 1 -x {2.0 7.0 73 ------- null} h -t 2.29 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 215 -a 1 -x {2.0 7.0 -1 ------- null} + -t 2.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 216 -a 1 -x {1.0 6.0 112 ------- null} - -t 2.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 216 -a 1 -x {1.0 6.0 112 ------- null} h -t 2.29 -s 1 -d 3 -p cbr -e 500 -c 1 -i 216 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.29 -s 3 -d 4 -p cbr -e 500 -c 1 -i 184 -a 1 -x {1.0 6.0 98 ------- null} + -t 2.29 -s 4 -d 6 -p cbr -e 500 -c 1 -i 184 -a 1 -x {1.0 6.0 98 ------- null} - -t 2.29 -s 4 -d 6 -p cbr -e 500 -c 1 -i 184 -a 1 -x {1.0 6.0 98 ------- null} h -t 2.29 -s 4 -d 6 -p cbr -e 500 -c 1 -i 184 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.292 -s 4 -d 6 -p cbr -e 500 -c 1 -i 179 -a 1 -x {1.0 6.0 95 ------- null} r -t 2.296 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 206 -a 1 -x {2.0 7.0 71 ------- null} + -t 2.296 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 206 -a 1 -x {2.0 7.0 71 ------- null} v -t 2.2999999999999998 -e take_snapshot - -t 2.302 -s 3 -d 4 -p cbr -e 500 -c 1 -i 198 -a 1 -x {1.0 6.0 105 ------- null} h -t 2.302 -s 3 -d 4 -p cbr -e 500 -c 1 -i 198 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.30232 -s 5 -d 4 -p ack -e 40 -c 0 -i 210 -a 0 -x {5.0 0.0 12 ------- null} + -t 2.30232 -s 4 -d 3 -p ack -e 40 -c 0 -i 210 -a 0 -x {5.0 0.0 12 ------- null} - -t 2.30232 -s 4 -d 3 -p ack -e 40 -c 0 -i 210 -a 0 -x {5.0 0.0 12 ------- null} h -t 2.30232 -s 4 -d 3 -p ack -e 40 -c 0 -i 210 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.306 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 185 -a 1 -x {2.0 7.0 64 ------- null} + -t 2.306 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 185 -a 1 -x {2.0 7.0 64 ------- null} - -t 2.306 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 185 -a 1 -x {2.0 7.0 64 ------- null} h -t 2.306 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 185 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.308 -s 1 -d 3 -p cbr -e 500 -c 1 -i 209 -a 1 -x {1.0 6.0 110 ------- null} + -t 2.308 -s 3 -d 4 -p cbr -e 500 -c 1 -i 209 -a 1 -x {1.0 6.0 110 ------- null} - -t 2.31 -s 3 -d 4 -p cbr -e 500 -c 1 -i 200 -a 1 -x {1.0 6.0 106 ------- null} h -t 2.31 -s 3 -d 4 -p cbr -e 500 -c 1 -i 200 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.314 -s 3 -d 4 -p cbr -e 500 -c 1 -i 188 -a 1 -x {1.0 6.0 100 ------- null} + -t 2.314 -s 4 -d 6 -p cbr -e 500 -c 1 -i 188 -a 1 -x {1.0 6.0 100 ------- null} - -t 2.314 -s 4 -d 6 -p cbr -e 500 -c 1 -i 188 -a 1 -x {1.0 6.0 100 ------- null} h -t 2.314 -s 4 -d 6 -p cbr -e 500 -c 1 -i 188 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.316 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 180 -a 1 -x {2.0 7.0 62 ------- null} r -t 2.316 -s 4 -d 6 -p cbr -e 500 -c 1 -i 181 -a 1 -x {1.0 6.0 96 ------- null} r -t 2.31728 -s 3 -d 0 -p ack -e 40 -c 0 -i 194 -a 0 -x {5.0 0.0 7 ------- null} + -t 2.31728 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 217 -a 0 -x {0.0 5.0 15 ------- null} - -t 2.31728 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 217 -a 0 -x {0.0 5.0 15 ------- null} h -t 2.31728 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 217 -a 0 -x {0.0 5.0 -1 ------- null} - -t 2.318 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 199 -a 1 -x {2.0 7.0 69 ------- null} h -t 2.318 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 199 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.31832 -s 5 -d 4 -p ack -e 40 -c 0 -i 212 -a 0 -x {5.0 0.0 13 ------- null} + -t 2.31832 -s 4 -d 3 -p ack -e 40 -c 0 -i 212 -a 0 -x {5.0 0.0 13 ------- null} - -t 2.31832 -s 4 -d 3 -p ack -e 40 -c 0 -i 212 -a 0 -x {5.0 0.0 13 ------- null} h -t 2.31832 -s 4 -d 3 -p ack -e 40 -c 0 -i 212 -a 0 -x {5.0 0.0 -1 ------- null} + -t 2.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 218 -a 1 -x {2.0 7.0 74 ------- null} - -t 2.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 218 -a 1 -x {2.0 7.0 74 ------- null} h -t 2.32 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 218 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.32296 -s 4 -d 3 -p ack -e 40 -c 0 -i 201 -a 0 -x {5.0 0.0 9 ------- null} + -t 2.32296 -s 3 -d 0 -p ack -e 40 -c 0 -i 201 -a 0 -x {5.0 0.0 9 ------- null} - -t 2.32296 -s 3 -d 0 -p ack -e 40 -c 0 -i 201 -a 0 -x {5.0 0.0 9 ------- null} h -t 2.32296 -s 3 -d 0 -p ack -e 40 -c 0 -i 201 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.324 -s 4 -d 6 -p cbr -e 500 -c 1 -i 182 -a 1 -x {1.0 6.0 97 ------- null} r -t 2.326 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 211 -a 1 -x {2.0 7.0 72 ------- null} + -t 2.326 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 211 -a 1 -x {2.0 7.0 72 ------- null} r -t 2.328 -s 1 -d 3 -p cbr -e 500 -c 1 -i 213 -a 1 -x {1.0 6.0 111 ------- null} + -t 2.328 -s 3 -d 4 -p cbr -e 500 -c 1 -i 213 -a 1 -x {1.0 6.0 111 ------- null} r -t 2.33 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 187 -a 1 -x {2.0 7.0 65 ------- null} + -t 2.33 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 187 -a 1 -x {2.0 7.0 65 ------- null} - -t 2.33 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 187 -a 1 -x {2.0 7.0 65 ------- null} h -t 2.33 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 187 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.33328 -s 3 -d 0 -p ack -e 40 -c 0 -i 196 -a 0 -x {5.0 0.0 8 ------- null} + -t 2.33328 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 219 -a 0 -x {0.0 5.0 16 ------- null} - -t 2.33328 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 219 -a 0 -x {0.0 5.0 16 ------- null} h -t 2.33328 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 219 -a 0 -x {0.0 5.0 -1 ------- null} - -t 2.334 -s 3 -d 4 -p cbr -e 500 -c 1 -i 202 -a 1 -x {1.0 6.0 107 ------- null} h -t 2.334 -s 3 -d 4 -p cbr -e 500 -c 1 -i 202 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.33432 -s 5 -d 4 -p ack -e 40 -c 0 -i 214 -a 0 -x {5.0 0.0 14 ------- null} + -t 2.33432 -s 4 -d 3 -p ack -e 40 -c 0 -i 214 -a 0 -x {5.0 0.0 14 ------- null} - -t 2.33432 -s 4 -d 3 -p ack -e 40 -c 0 -i 214 -a 0 -x {5.0 0.0 14 ------- null} h -t 2.33432 -s 4 -d 3 -p ack -e 40 -c 0 -i 214 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.338 -s 3 -d 4 -p cbr -e 500 -c 1 -i 189 -a 1 -x {1.0 6.0 101 ------- null} + -t 2.338 -s 4 -d 6 -p cbr -e 500 -c 1 -i 189 -a 1 -x {1.0 6.0 101 ------- null} - -t 2.338 -s 4 -d 6 -p cbr -e 500 -c 1 -i 189 -a 1 -x {1.0 6.0 101 ------- null} h -t 2.338 -s 4 -d 6 -p cbr -e 500 -c 1 -i 189 -a 1 -x {1.0 6.0 -1 ------- null} - -t 2.342 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 204 -a 1 -x {2.0 7.0 70 ------- null} h -t 2.342 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 204 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.34696 -s 4 -d 3 -p ack -e 40 -c 0 -i 203 -a 0 -x {5.0 0.0 10 ------- null} + -t 2.34696 -s 3 -d 0 -p ack -e 40 -c 0 -i 203 -a 0 -x {5.0 0.0 10 ------- null} - -t 2.34696 -s 3 -d 0 -p ack -e 40 -c 0 -i 203 -a 0 -x {5.0 0.0 10 ------- null} h -t 2.34696 -s 3 -d 0 -p ack -e 40 -c 0 -i 203 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.348 -s 1 -d 3 -p cbr -e 500 -c 1 -i 216 -a 1 -x {1.0 6.0 112 ------- null} + -t 2.348 -s 3 -d 4 -p cbr -e 500 -c 1 -i 216 -a 1 -x {1.0 6.0 112 ------- null} r -t 2.348 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 183 -a 1 -x {2.0 7.0 63 ------- null} r -t 2.348 -s 4 -d 6 -p cbr -e 500 -c 1 -i 184 -a 1 -x {1.0 6.0 98 ------- null} + -t 2.35 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 220 -a 1 -x {2.0 7.0 75 ------- null} - -t 2.35 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 220 -a 1 -x {2.0 7.0 75 ------- null} h -t 2.35 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 220 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.354 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 190 -a 1 -x {2.0 7.0 66 ------- null} + -t 2.354 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 190 -a 1 -x {2.0 7.0 66 ------- null} - -t 2.354 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 190 -a 1 -x {2.0 7.0 66 ------- null} h -t 2.354 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 190 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.356 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 215 -a 1 -x {2.0 7.0 73 ------- null} + -t 2.356 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 215 -a 1 -x {2.0 7.0 73 ------- null} - -t 2.358 -s 3 -d 4 -p cbr -e 500 -c 1 -i 205 -a 1 -x {1.0 6.0 108 ------- null} h -t 2.358 -s 3 -d 4 -p cbr -e 500 -c 1 -i 205 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.362 -s 3 -d 4 -p cbr -e 500 -c 1 -i 193 -a 1 -x {1.0 6.0 103 ------- null} + -t 2.362 -s 4 -d 6 -p cbr -e 500 -c 1 -i 193 -a 1 -x {1.0 6.0 103 ------- null} - -t 2.362 -s 4 -d 6 -p cbr -e 500 -c 1 -i 193 -a 1 -x {1.0 6.0 103 ------- null} h -t 2.362 -s 4 -d 6 -p cbr -e 500 -c 1 -i 193 -a 1 -x {1.0 6.0 -1 ------- null} - -t 2.366 -s 3 -d 4 -p cbr -e 500 -c 1 -i 207 -a 1 -x {1.0 6.0 109 ------- null} h -t 2.366 -s 3 -d 4 -p cbr -e 500 -c 1 -i 207 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.372 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 185 -a 1 -x {2.0 7.0 64 ------- null} r -t 2.372 -s 4 -d 6 -p cbr -e 500 -c 1 -i 188 -a 1 -x {1.0 6.0 100 ------- null} r -t 2.37328 -s 3 -d 0 -p ack -e 40 -c 0 -i 201 -a 0 -x {5.0 0.0 9 ------- null} + -t 2.37328 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 221 -a 0 -x {0.0 5.0 17 ------- null} - -t 2.37328 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 221 -a 0 -x {0.0 5.0 17 ------- null} h -t 2.37328 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 221 -a 0 -x {0.0 5.0 -1 ------- null} - -t 2.374 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 206 -a 1 -x {2.0 7.0 71 ------- null} h -t 2.374 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 206 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.37528 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 217 -a 0 -x {0.0 5.0 15 ------- null} + -t 2.37528 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 217 -a 0 -x {0.0 5.0 15 ------- null} r -t 2.378 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 192 -a 1 -x {2.0 7.0 67 ------- null} + -t 2.378 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 192 -a 1 -x {2.0 7.0 67 ------- null} - -t 2.378 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 192 -a 1 -x {2.0 7.0 67 ------- null} h -t 2.378 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 192 -a 1 -x {2.0 7.0 -1 ------- null} + -t 2.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 222 -a 1 -x {2.0 7.0 76 ------- null} - -t 2.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 222 -a 1 -x {2.0 7.0 76 ------- null} h -t 2.38 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 222 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.386 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 218 -a 1 -x {2.0 7.0 74 ------- null} + -t 2.386 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 218 -a 1 -x {2.0 7.0 74 ------- null} r -t 2.386 -s 3 -d 4 -p cbr -e 500 -c 1 -i 195 -a 1 -x {1.0 6.0 104 ------- null} + -t 2.386 -s 4 -d 6 -p cbr -e 500 -c 1 -i 195 -a 1 -x {1.0 6.0 104 ------- null} - -t 2.386 -s 4 -d 6 -p cbr -e 500 -c 1 -i 195 -a 1 -x {1.0 6.0 104 ------- null} h -t 2.386 -s 4 -d 6 -p cbr -e 500 -c 1 -i 195 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.38696 -s 4 -d 3 -p ack -e 40 -c 0 -i 208 -a 0 -x {5.0 0.0 11 ------- null} + -t 2.38696 -s 3 -d 0 -p ack -e 40 -c 0 -i 208 -a 0 -x {5.0 0.0 11 ------- null} - -t 2.38696 -s 3 -d 0 -p ack -e 40 -c 0 -i 208 -a 0 -x {5.0 0.0 11 ------- null} h -t 2.38696 -s 3 -d 0 -p ack -e 40 -c 0 -i 208 -a 0 -x {5.0 0.0 -1 ------- null} - -t 2.39 -s 3 -d 4 -p cbr -e 500 -c 1 -i 209 -a 1 -x {1.0 6.0 110 ------- null} h -t 2.39 -s 3 -d 4 -p cbr -e 500 -c 1 -i 209 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.39128 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 219 -a 0 -x {0.0 5.0 16 ------- null} + -t 2.39128 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 219 -a 0 -x {0.0 5.0 16 ------- null} r -t 2.396 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 187 -a 1 -x {2.0 7.0 65 ------- null} r -t 2.396 -s 4 -d 6 -p cbr -e 500 -c 1 -i 189 -a 1 -x {1.0 6.0 101 ------- null} r -t 2.39728 -s 3 -d 0 -p ack -e 40 -c 0 -i 203 -a 0 -x {5.0 0.0 10 ------- null} + -t 2.39728 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {0.0 5.0 18 ------- null} - -t 2.39728 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {0.0 5.0 18 ------- null} h -t 2.39728 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {0.0 5.0 -1 ------- null} - -t 2.398 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 211 -a 1 -x {2.0 7.0 72 ------- null} h -t 2.398 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 211 -a 1 -x {2.0 7.0 -1 ------- null} v -t 2.3999999999999999 -e take_snapshot r -t 2.402 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 197 -a 1 -x {2.0 7.0 68 ------- null} + -t 2.402 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 197 -a 1 -x {2.0 7.0 68 ------- null} - -t 2.402 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 197 -a 1 -x {2.0 7.0 68 ------- null} h -t 2.402 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 197 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.40296 -s 4 -d 3 -p ack -e 40 -c 0 -i 210 -a 0 -x {5.0 0.0 12 ------- null} + -t 2.40296 -s 3 -d 0 -p ack -e 40 -c 0 -i 210 -a 0 -x {5.0 0.0 12 ------- null} - -t 2.40296 -s 3 -d 0 -p ack -e 40 -c 0 -i 210 -a 0 -x {5.0 0.0 12 ------- null} h -t 2.40296 -s 3 -d 0 -p ack -e 40 -c 0 -i 210 -a 0 -x {5.0 0.0 -1 ------- null} + -t 2.41 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 224 -a 1 -x {2.0 7.0 77 ------- null} - -t 2.41 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 224 -a 1 -x {2.0 7.0 77 ------- null} h -t 2.41 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 224 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.41 -s 3 -d 4 -p cbr -e 500 -c 1 -i 198 -a 1 -x {1.0 6.0 105 ------- null} + -t 2.41 -s 4 -d 6 -p cbr -e 500 -c 1 -i 198 -a 1 -x {1.0 6.0 105 ------- null} - -t 2.41 -s 4 -d 6 -p cbr -e 500 -c 1 -i 198 -a 1 -x {1.0 6.0 105 ------- null} h -t 2.41 -s 4 -d 6 -p cbr -e 500 -c 1 -i 198 -a 1 -x {1.0 6.0 -1 ------- null} - -t 2.414 -s 3 -d 4 -p cbr -e 500 -c 1 -i 213 -a 1 -x {1.0 6.0 111 ------- null} h -t 2.414 -s 3 -d 4 -p cbr -e 500 -c 1 -i 213 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.416 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 220 -a 1 -x {2.0 7.0 75 ------- null} + -t 2.416 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 220 -a 1 -x {2.0 7.0 75 ------- null} r -t 2.418 -s 3 -d 4 -p cbr -e 500 -c 1 -i 200 -a 1 -x {1.0 6.0 106 ------- null} + -t 2.418 -s 4 -d 6 -p cbr -e 500 -c 1 -i 200 -a 1 -x {1.0 6.0 106 ------- null} - -t 2.418 -s 4 -d 6 -p cbr -e 500 -c 1 -i 200 -a 1 -x {1.0 6.0 106 ------- null} h -t 2.418 -s 4 -d 6 -p cbr -e 500 -c 1 -i 200 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.41896 -s 4 -d 3 -p ack -e 40 -c 0 -i 212 -a 0 -x {5.0 0.0 13 ------- null} + -t 2.41896 -s 3 -d 0 -p ack -e 40 -c 0 -i 212 -a 0 -x {5.0 0.0 13 ------- null} - -t 2.41896 -s 3 -d 0 -p ack -e 40 -c 0 -i 212 -a 0 -x {5.0 0.0 13 ------- null} h -t 2.41896 -s 3 -d 0 -p ack -e 40 -c 0 -i 212 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.42 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 190 -a 1 -x {2.0 7.0 66 ------- null} r -t 2.42 -s 4 -d 6 -p cbr -e 500 -c 1 -i 193 -a 1 -x {1.0 6.0 103 ------- null} - -t 2.422 -s 3 -d 4 -p cbr -e 500 -c 1 -i 216 -a 1 -x {1.0 6.0 112 ------- null} h -t 2.422 -s 3 -d 4 -p cbr -e 500 -c 1 -i 216 -a 1 -x {1.0 6.0 -1 ------- null} - -t 2.43 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 215 -a 1 -x {2.0 7.0 73 ------- null} h -t 2.43 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 215 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.43128 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 221 -a 0 -x {0.0 5.0 17 ------- null} + -t 2.43128 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 221 -a 0 -x {0.0 5.0 17 ------- null} r -t 2.434 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 199 -a 1 -x {2.0 7.0 69 ------- null} + -t 2.434 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 199 -a 1 -x {2.0 7.0 69 ------- null} - -t 2.434 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 199 -a 1 -x {2.0 7.0 69 ------- null} h -t 2.434 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 199 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.43496 -s 4 -d 3 -p ack -e 40 -c 0 -i 214 -a 0 -x {5.0 0.0 14 ------- null} + -t 2.43496 -s 3 -d 0 -p ack -e 40 -c 0 -i 214 -a 0 -x {5.0 0.0 14 ------- null} - -t 2.43496 -s 3 -d 0 -p ack -e 40 -c 0 -i 214 -a 0 -x {5.0 0.0 14 ------- null} h -t 2.43496 -s 3 -d 0 -p ack -e 40 -c 0 -i 214 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.43728 -s 3 -d 0 -p ack -e 40 -c 0 -i 208 -a 0 -x {5.0 0.0 11 ------- null} + -t 2.43728 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {0.0 5.0 19 ------- null} - -t 2.43728 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {0.0 5.0 19 ------- null} h -t 2.43728 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {0.0 5.0 -1 ------- null} + -t 2.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 226 -a 1 -x {2.0 7.0 78 ------- null} - -t 2.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 226 -a 1 -x {2.0 7.0 78 ------- null} h -t 2.44 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 226 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.442 -s 3 -d 4 -p cbr -e 500 -c 1 -i 202 -a 1 -x {1.0 6.0 107 ------- null} + -t 2.442 -s 4 -d 6 -p cbr -e 500 -c 1 -i 202 -a 1 -x {1.0 6.0 107 ------- null} - -t 2.442 -s 4 -d 6 -p cbr -e 500 -c 1 -i 202 -a 1 -x {1.0 6.0 107 ------- null} h -t 2.442 -s 4 -d 6 -p cbr -e 500 -c 1 -i 202 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.444 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 192 -a 1 -x {2.0 7.0 67 ------- null} r -t 2.444 -s 4 -d 6 -p cbr -e 500 -c 1 -i 195 -a 1 -x {1.0 6.0 104 ------- null} r -t 2.446 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 222 -a 1 -x {2.0 7.0 76 ------- null} + -t 2.446 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 222 -a 1 -x {2.0 7.0 76 ------- null} - -t 2.446 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 217 -a 0 -x {0.0 5.0 15 ------- null} h -t 2.446 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 217 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.45328 -s 3 -d 0 -p ack -e 40 -c 0 -i 210 -a 0 -x {5.0 0.0 12 ------- null} + -t 2.45328 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {0.0 5.0 20 ------- null} - -t 2.45328 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {0.0 5.0 20 ------- null} h -t 2.45328 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.45528 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {0.0 5.0 18 ------- null} + -t 2.45528 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {0.0 5.0 18 ------- null} r -t 2.458 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 204 -a 1 -x {2.0 7.0 70 ------- null} + -t 2.458 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 204 -a 1 -x {2.0 7.0 70 ------- null} - -t 2.458 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 204 -a 1 -x {2.0 7.0 70 ------- null} h -t 2.458 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 204 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.462 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 218 -a 1 -x {2.0 7.0 74 ------- null} h -t 2.462 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 218 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.466 -s 3 -d 4 -p cbr -e 500 -c 1 -i 205 -a 1 -x {1.0 6.0 108 ------- null} + -t 2.466 -s 4 -d 6 -p cbr -e 500 -c 1 -i 205 -a 1 -x {1.0 6.0 108 ------- null} - -t 2.466 -s 4 -d 6 -p cbr -e 500 -c 1 -i 205 -a 1 -x {1.0 6.0 108 ------- null} h -t 2.466 -s 4 -d 6 -p cbr -e 500 -c 1 -i 205 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.468 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 197 -a 1 -x {2.0 7.0 68 ------- null} r -t 2.468 -s 4 -d 6 -p cbr -e 500 -c 1 -i 198 -a 1 -x {1.0 6.0 105 ------- null} r -t 2.46928 -s 3 -d 0 -p ack -e 40 -c 0 -i 212 -a 0 -x {5.0 0.0 13 ------- null} + -t 2.46928 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0 5.0 21 ------- null} - -t 2.46928 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0 5.0 21 ------- null} h -t 2.46928 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0 5.0 -1 ------- null} + -t 2.47 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 229 -a 1 -x {2.0 7.0 79 ------- null} - -t 2.47 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 229 -a 1 -x {2.0 7.0 79 ------- null} h -t 2.47 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 229 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.474 -s 3 -d 4 -p cbr -e 500 -c 1 -i 207 -a 1 -x {1.0 6.0 109 ------- null} + -t 2.474 -s 4 -d 6 -p cbr -e 500 -c 1 -i 207 -a 1 -x {1.0 6.0 109 ------- null} - -t 2.474 -s 4 -d 6 -p cbr -e 500 -c 1 -i 207 -a 1 -x {1.0 6.0 109 ------- null} h -t 2.474 -s 4 -d 6 -p cbr -e 500 -c 1 -i 207 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.476 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 224 -a 1 -x {2.0 7.0 77 ------- null} + -t 2.476 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 224 -a 1 -x {2.0 7.0 77 ------- null} r -t 2.476 -s 4 -d 6 -p cbr -e 500 -c 1 -i 200 -a 1 -x {1.0 6.0 106 ------- null} - -t 2.478 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 219 -a 0 -x {0.0 5.0 16 ------- null} h -t 2.478 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 219 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.48528 -s 3 -d 0 -p ack -e 40 -c 0 -i 214 -a 0 -x {5.0 0.0 14 ------- null} + -t 2.48528 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {0.0 5.0 22 ------- null} - -t 2.48528 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {0.0 5.0 22 ------- null} h -t 2.48528 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.49 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 206 -a 1 -x {2.0 7.0 71 ------- null} + -t 2.49 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 206 -a 1 -x {2.0 7.0 71 ------- null} - -t 2.49 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 206 -a 1 -x {2.0 7.0 71 ------- null} h -t 2.49 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 206 -a 1 -x {2.0 7.0 -1 ------- null} - -t 2.494 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 220 -a 1 -x {2.0 7.0 75 ------- null} h -t 2.494 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 220 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.49528 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {0.0 5.0 19 ------- null} + -t 2.49528 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {0.0 5.0 19 ------- null} r -t 2.498 -s 3 -d 4 -p cbr -e 500 -c 1 -i 209 -a 1 -x {1.0 6.0 110 ------- null} + -t 2.498 -s 4 -d 6 -p cbr -e 500 -c 1 -i 209 -a 1 -x {1.0 6.0 110 ------- null} - -t 2.498 -s 4 -d 6 -p cbr -e 500 -c 1 -i 209 -a 1 -x {1.0 6.0 110 ------- null} h -t 2.498 -s 4 -d 6 -p cbr -e 500 -c 1 -i 209 -a 1 -x {1.0 6.0 -1 ------- null} + -t 2.5 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 231 -a 1 -x {2.0 7.0 80 ------- null} - -t 2.5 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 231 -a 1 -x {2.0 7.0 80 ------- null} h -t 2.5 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 231 -a 1 -x {2.0 7.0 -1 ------- null} v -t 2.5 -e take_snapshot r -t 2.5 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 199 -a 1 -x {2.0 7.0 69 ------- null} r -t 2.5 -s 4 -d 6 -p cbr -e 500 -c 1 -i 202 -a 1 -x {1.0 6.0 107 ------- null} r -t 2.506 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 226 -a 1 -x {2.0 7.0 78 ------- null} + -t 2.506 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 226 -a 1 -x {2.0 7.0 78 ------- null} - -t 2.51 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 221 -a 0 -x {0.0 5.0 17 ------- null} h -t 2.51 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 221 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.51128 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {0.0 5.0 20 ------- null} + -t 2.51128 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {0.0 5.0 20 ------- null} r -t 2.514 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 211 -a 1 -x {2.0 7.0 72 ------- null} + -t 2.514 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 211 -a 1 -x {2.0 7.0 72 ------- null} - -t 2.514 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 211 -a 1 -x {2.0 7.0 72 ------- null} h -t 2.514 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 211 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.522 -s 3 -d 4 -p cbr -e 500 -c 1 -i 213 -a 1 -x {1.0 6.0 111 ------- null} + -t 2.522 -s 4 -d 6 -p cbr -e 500 -c 1 -i 213 -a 1 -x {1.0 6.0 111 ------- null} - -t 2.522 -s 4 -d 6 -p cbr -e 500 -c 1 -i 213 -a 1 -x {1.0 6.0 111 ------- null} h -t 2.522 -s 4 -d 6 -p cbr -e 500 -c 1 -i 213 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.524 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 204 -a 1 -x {2.0 7.0 70 ------- null} r -t 2.524 -s 4 -d 6 -p cbr -e 500 -c 1 -i 205 -a 1 -x {1.0 6.0 108 ------- null} - -t 2.526 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 222 -a 1 -x {2.0 7.0 76 ------- null} h -t 2.526 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 222 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.52728 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0 5.0 21 ------- null} + -t 2.52728 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0 5.0 21 ------- null} r -t 2.53 -s 3 -d 4 -p cbr -e 500 -c 1 -i 216 -a 1 -x {1.0 6.0 112 ------- null} + -t 2.53 -s 4 -d 6 -p cbr -e 500 -c 1 -i 216 -a 1 -x {1.0 6.0 112 ------- null} - -t 2.53 -s 4 -d 6 -p cbr -e 500 -c 1 -i 216 -a 1 -x {1.0 6.0 112 ------- null} h -t 2.53 -s 4 -d 6 -p cbr -e 500 -c 1 -i 216 -a 1 -x {1.0 6.0 -1 ------- null} r -t 2.532 -s 4 -d 6 -p cbr -e 500 -c 1 -i 207 -a 1 -x {1.0 6.0 109 ------- null} r -t 2.536 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 229 -a 1 -x {2.0 7.0 79 ------- null} + -t 2.536 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 229 -a 1 -x {2.0 7.0 79 ------- null} - -t 2.542 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {0.0 5.0 18 ------- null} h -t 2.542 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.54328 -s 0 -d 3 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {0.0 5.0 22 ------- null} + -t 2.54328 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {0.0 5.0 22 ------- null} r -t 2.546 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 215 -a 1 -x {2.0 7.0 73 ------- null} + -t 2.546 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 215 -a 1 -x {2.0 7.0 73 ------- null} - -t 2.546 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 215 -a 1 -x {2.0 7.0 73 ------- null} h -t 2.546 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 215 -a 1 -x {2.0 7.0 -1 ------- null} v -t 2.5499999999999998 -e sim_annotation 2.5499999999999998 4 FTP stops r -t 2.556 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 206 -a 1 -x {2.0 7.0 71 ------- null} r -t 2.556 -s 4 -d 6 -p cbr -e 500 -c 1 -i 209 -a 1 -x {1.0 6.0 110 ------- null} - -t 2.558 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 224 -a 1 -x {2.0 7.0 77 ------- null} h -t 2.558 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 224 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.562 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 217 -a 0 -x {0.0 5.0 15 ------- null} + -t 2.562 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 217 -a 0 -x {0.0 5.0 15 ------- null} - -t 2.562 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 217 -a 0 -x {0.0 5.0 15 ------- null} h -t 2.562 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 217 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.566 -s 2 -d 3 -p cbr -e 1000 -c 1 -i 231 -a 1 -x {2.0 7.0 80 ------- null} + -t 2.566 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 231 -a 1 -x {2.0 7.0 80 ------- null} - -t 2.574 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {0.0 5.0 19 ------- null} h -t 2.574 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.578 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 218 -a 1 -x {2.0 7.0 74 ------- null} + -t 2.578 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 218 -a 1 -x {2.0 7.0 74 ------- null} - -t 2.578 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 218 -a 1 -x {2.0 7.0 74 ------- null} h -t 2.578 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 218 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.58 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 211 -a 1 -x {2.0 7.0 72 ------- null} r -t 2.58 -s 4 -d 6 -p cbr -e 500 -c 1 -i 213 -a 1 -x {1.0 6.0 111 ------- null} r -t 2.588 -s 4 -d 6 -p cbr -e 500 -c 1 -i 216 -a 1 -x {1.0 6.0 112 ------- null} - -t 2.59 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 226 -a 1 -x {2.0 7.0 78 ------- null} h -t 2.59 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 226 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.594 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 219 -a 0 -x {0.0 5.0 16 ------- null} + -t 2.594 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 219 -a 0 -x {0.0 5.0 16 ------- null} - -t 2.594 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 219 -a 0 -x {0.0 5.0 16 ------- null} h -t 2.594 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 219 -a 0 -x {0.0 5.0 -1 ------- null} v -t 2.6000000000000001 -e take_snapshot - -t 2.606 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {0.0 5.0 20 ------- null} h -t 2.606 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 227 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.61 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 220 -a 1 -x {2.0 7.0 75 ------- null} + -t 2.61 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 220 -a 1 -x {2.0 7.0 75 ------- null} - -t 2.61 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 220 -a 1 -x {2.0 7.0 75 ------- null} h -t 2.61 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 220 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.612 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 215 -a 1 -x {2.0 7.0 73 ------- null} r -t 2.62 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 217 -a 0 -x {0.0 5.0 15 ------- null} + -t 2.62 -s 5 -d 4 -p ack -e 40 -c 0 -i 232 -a 0 -x {5.0 0.0 15 ------- null} - -t 2.62 -s 5 -d 4 -p ack -e 40 -c 0 -i 232 -a 0 -x {5.0 0.0 15 ------- null} h -t 2.62 -s 5 -d 4 -p ack -e 40 -c 0 -i 232 -a 0 -x {5.0 0.0 -1 ------- null} - -t 2.622 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0 5.0 21 ------- null} h -t 2.622 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 228 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.626 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 221 -a 0 -x {0.0 5.0 17 ------- null} + -t 2.626 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 221 -a 0 -x {0.0 5.0 17 ------- null} - -t 2.626 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 221 -a 0 -x {0.0 5.0 17 ------- null} h -t 2.626 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 221 -a 0 -x {0.0 5.0 -1 ------- null} - -t 2.638 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 229 -a 1 -x {2.0 7.0 79 ------- null} h -t 2.638 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 229 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.642 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 222 -a 1 -x {2.0 7.0 76 ------- null} + -t 2.642 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 222 -a 1 -x {2.0 7.0 76 ------- null} - -t 2.642 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 222 -a 1 -x {2.0 7.0 76 ------- null} h -t 2.642 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 222 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.644 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 218 -a 1 -x {2.0 7.0 74 ------- null} v -t 2.6499999999999999 -e terminating_nam r -t 2.652 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 219 -a 0 -x {0.0 5.0 16 ------- null} + -t 2.652 -s 5 -d 4 -p ack -e 40 -c 0 -i 233 -a 0 -x {5.0 0.0 16 ------- null} - -t 2.652 -s 5 -d 4 -p ack -e 40 -c 0 -i 233 -a 0 -x {5.0 0.0 16 ------- null} h -t 2.652 -s 5 -d 4 -p ack -e 40 -c 0 -i 233 -a 0 -x {5.0 0.0 -1 ------- null} - -t 2.654 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {0.0 5.0 22 ------- null} h -t 2.654 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 230 -a 0 -x {0.0 5.0 -1 ------- null} r -t 2.658 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {0.0 5.0 18 ------- null} + -t 2.658 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {0.0 5.0 18 ------- null} - -t 2.658 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {0.0 5.0 18 ------- null} h -t 2.658 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 223 -a 0 -x {0.0 5.0 -1 ------- null} - -t 2.67 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 231 -a 1 -x {2.0 7.0 80 ------- null} h -t 2.67 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 231 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.67032 -s 5 -d 4 -p ack -e 40 -c 0 -i 232 -a 0 -x {5.0 0.0 15 ------- null} + -t 2.67032 -s 4 -d 3 -p ack -e 40 -c 0 -i 232 -a 0 -x {5.0 0.0 15 ------- null} - -t 2.67032 -s 4 -d 3 -p ack -e 40 -c 0 -i 232 -a 0 -x {5.0 0.0 15 ------- null} h -t 2.67032 -s 4 -d 3 -p ack -e 40 -c 0 -i 232 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.674 -s 3 -d 4 -p cbr -e 1000 -c 1 -i 224 -a 1 -x {2.0 7.0 77 ------- null} + -t 2.674 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 224 -a 1 -x {2.0 7.0 77 ------- null} - -t 2.674 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 224 -a 1 -x {2.0 7.0 77 ------- null} h -t 2.674 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 224 -a 1 -x {2.0 7.0 -1 ------- null} r -t 2.676 -s 4 -d 7 -p cbr -e 1000 -c 1 -i 220 -a 1 -x {2.0 7.0 75 ------- null} r -t 2.684 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 221 -a 0 -x {0.0 5.0 17 ------- null} + -t 2.684 -s 5 -d 4 -p ack -e 40 -c 0 -i 234 -a 0 -x {5.0 0.0 17 ------- null} - -t 2.684 -s 5 -d 4 -p ack -e 40 -c 0 -i 234 -a 0 -x {5.0 0.0 17 ------- null} h -t 2.684 -s 5 -d 4 -p ack -e 40 -c 0 -i 234 -a 0 -x {5.0 0.0 -1 ------- null} r -t 2.69 -s 3 -d 4 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {0.0 5.0 19 ------- null} + -t 2.69 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {0.0 5.0 19 ------- null} - -t 2.69 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {0.0 5.0 19 ------- null} h -t 2.69 -s 4 -d 5 -p tcp -e 1000 -c 0 -i 225 -a 0 -x {0.0 5.0 -1 ------- null} nam-1.15/tcl/test/test-template0000775000076400007660000000606007074036360015362 0ustar tomhnsnam#! /bin/sh # # Copyright (c) 1995 The Regents of the University of California. # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: # 1. Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # 2. Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # 3. All advertising materials mentioning features or use of this software # must display the following acknowledgement: # This product includes software developed by the Network Research # Group at Lawrence Berkeley National Laboratory. # 4. Neither the name of the University nor of the Laboratory may be used # to endorse or promote products derived from this software without # specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE # ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. # file=$1; shift directory=$1; shift if [ -f testview ]; then rm -r testview fi new=false alltests=true while test $# -ge 1 do case $1 in new|NEW) new=true;; *) alltests=false; tlist="$tlist $1";; esac shift done datafile="testview" NAM=${NAM:-../../nam} if $alltests then : else tests=$tlist fi if [ ! -d $directory ]; then if $new then mkdir $directory else echo "no saved test output. do cvs update -d" echo "or re-run your test with \"new\" as the last argument." exit 1 fi fi success="true" echo $NAM -z $file $NAM -z $file if [ -f $datafile ]; then if [ ! -f $directory/$file.Z ]; then echo saving output for future validation success="unknown" cp $datafile $datafile.bk; compress $datafile mv $datafile.bk $directory/$file.test mv $datafile.Z $directory/$file.Z else gzip -dc $directory/$file.Z | cmp -s - $datafile if [ $? != 0 ]; then success="false" mv $datafile $directory/$file.test gzip -dc $directory/$file.Z > $directory/$file.org echo "Diagnose with: diff $directory/$file.test $directory/$file.org" fi fi else success="unknown" fi # sucess can be true, false, or unknown if "$success" = true; then echo test output agrees with reference output. exit 0 else echo test failed. exit 1 fi nam-1.15/tcl/test/test-wireless-1.nam0000664000076400007660000000216107226442175016313 0ustar tomhnsnamW -t * -x 670 -y 670 n -t * -s 0 -x 422.71670773848899 -y 589.70733576587497 -z 20 -v circle -c black n -t * -s 1 -x 571.19274018632495 -y 276.38481828619501 -z 20 -v circle -c black n -t * -s 2 -x 89.641181272211995 -y 439.333721576041 -z 20 -v circle -c black n -t * -s 3 -x 481.85891825577198 -y 312.839552218736 -z 20 -v circle -c black n -t * -s 4 -x 404.354417812321 -y 174.700530392536 -z 20 -v circle -c black V -t * -v 1.0a5 -a 0 A -t * -n 1 -p 0 -o 0xffffffff -c 31 -a 1 A -t * -h 1 -m 2147483647 -s 0 v -t 0 -e take_snapshot v -t 0.1 -e take_snapshot v -t 0.150000 -e take_snapshot n -t 0.170000 -s 0 -x 422.716708 -y 589.707336 -U -4.046865 -V -1.516404 -T 42.230770 n -t 0.170000 -s 1 -x 571.192740 -y 276.384818 -U -7.879661 -V -4.232723 -T 39.690258 v -t 0.190000 -e take_snapshot n -t 0.250000 -s 2 -x 89.641181 -y 439.333722 -U -0.100553 -V 0.535017 -T 175.571385 n -t 0.250000 -s 3 -x 481.858918 -y 312.839552 -U 3.308171 -V 3.358763 -T 46.203506 v -t 0.260000 -e take_snapshot n -t 0.300000 -s 4 -x 404.354418 -y 174.700530 -U -0.249763 -V 1.064495 -T 433.387909 v -t 0.32 -e take_snapshot v -t 0.4 -e terminating_nam nam-1.15/tcl/test/test-wireless-2.nam0000664000076400007660000012352707343601065016321 0ustar tomhnsnamW -t * -x 670 -y 670 n -t * -s 0 -x 143.43750921878001 -y 94.217567273200004 -Z 0 -z 20 -v circle -c black n -t * -s 1 -x 304.65324424678403 -y 167.07632596983501 -Z 0 -z 20 -v circle -c black n -t * -s 2 -x 81.810723227699 -y 152.82536050561001 -Z 0 -z 20 -v circle -c black n -t * -s 3 -x 325.834153339995 -y 354.615563074325 -Z 0 -z 20 -v circle -c black n -t * -s 4 -x 23.768638624379001 -y 159.50938100993099 -Z 0 -z 20 -v circle -c black V -t * -v 1.0a5 -a 0 A -t * -n 1 -p 0 -o 0xffffffff -c 31 -a 1 A -t * -h 1 -m 2147483647 -s 0 v -t 0 -e take_snapshot + -t 0.15702374 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 0 -k AGT - -t 0.15702374 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 0 -k AGT n -t 0.15702374 -s 2 -S COLOR -c green -o black h -t 0.15702374 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 0 -k AGT + -t 0.15709874 -s 2 -d -1 -p AODV -e 104 -c 2 -a 0 -i 0 -k MAC - -t 0.15709874 -s 2 -d -1 -p AODV -e 104 -c 2 -a 0 -i 0 -k MAC n -t 0.15709874 -s 2 -S COLOR -c green -o black h -t 0.15709874 -s 2 -d -1 -p AODV -e 104 -c 2 -a 0 -i 0 -k MAC n -t 0.15751494 -s 4 -S COLOR -c green -o black r -t 0.15751494 -s 4 -d -1 -p AODV -e 52 -c 2 -a 0 -i 0 -k MAC n -t 0.15751503 -s 0 -S COLOR -c green -o black r -t 0.15751503 -s 0 -d -1 -p AODV -e 52 -c 2 -a 0 -i 0 -k MAC n -t 0.15751549 -s 1 -S COLOR -c green -o black r -t 0.15751549 -s 1 -d -1 -p AODV -e 52 -c 2 -a 0 -i 0 -k MAC v -t 0.15752000 -e take_snapshot n -t 0.15753994 -s 4 -S COLOR -c green -o black d -t 0.15753994 -s 4 -d -1 -p AODV -e 52 -c 2 -a 0 -i 0 -k RTR n -t 0.15754003 -s 0 -S COLOR -c green -o black d -t 0.15754003 -s 0 -d -1 -p AODV -e 52 -c 2 -a 0 -i 0 -k RTR n -t 0.15754049 -s 1 -S COLOR -c green -o black d -t 0.15754049 -s 1 -d -1 -p AODV -e 52 -c 2 -a 0 -i 0 -k RTR v -t 0.15762400 -e take_snapshot + -t 0.20075000 -s 2 -d -1 -p AODV -e 104 -c 2 -a 0 -i 0 -k MAC - -t 0.20075000 -s 2 -d -1 -p AODV -e 104 -c 2 -a 0 -i 0 -k MAC n -t 0.20075000 -s 2 -S COLOR -c green -o black h -t 0.20075000 -s 2 -d -1 -p AODV -e 104 -c 2 -a 0 -i 0 -k MAC v -t 0.20078200 -e take_snapshot n -t 0.20491195 -s 4 -S COLOR -c green -o black r -t 0.20491195 -s 4 -d -1 -p AODV -e 52 -c 2 -a 0 -i 0 -k MAC n -t 0.20491283 -s 0 -S COLOR -c green -o black r -t 0.20491283 -s 0 -d -1 -p AODV -e 52 -c 2 -a 0 -i 0 -k MAC n -t 0.20491744 -s 1 -S COLOR -c green -o black r -t 0.20491744 -s 1 -d -1 -p AODV -e 52 -c 2 -a 0 -i 0 -k MAC + -t 0.22781336 -s 1 -d -1 -p AODV -e 104 -c 2 -a 0 -i 0 -k MAC - -t 0.22781336 -s 1 -d -1 -p AODV -e 104 -c 2 -a 0 -i 0 -k MAC n -t 0.22781336 -s 1 -S COLOR -c green -o black h -t 0.22781336 -s 1 -d -1 -p AODV -e 104 -c 2 -a 0 -i 0 -k MAC v -t 0.22783700 -e take_snapshot n -t 0.23197926 -s 0 -S COLOR -c green -o black r -t 0.23197926 -s 0 -d -1 -p AODV -e 52 -c 2 -a 0 -i 0 -k MAC n -t 0.23197965 -s 3 -S COLOR -c green -o black r -t 0.23197965 -s 3 -d -1 -p AODV -e 52 -c 2 -a 0 -i 0 -k MAC n -t 0.23198081 -s 2 -S COLOR -c green -o black r -t 0.23198081 -s 2 -d -1 -p AODV -e 52 -c 2 -a 0 -i 0 -k MAC n -t 0.23198273 -s 4 -S COLOR -c green -o black r -t 0.23198273 -s 4 -d -1 -p AODV -e 52 -c 2 -a 0 -i 0 -k MAC v -t 0.23202300 -e take_snapshot + -t 0.23277965 -s 3 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC - -t 0.23277965 -s 3 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 0.23277965 -s 3 -S COLOR -c green -o black h -t 0.23277965 -s 3 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 0.23598594 -s 1 -S COLOR -c green -o black r -t 0.23598594 -s 1 -d -1 -p ARP -e 28 -c 2 -a 0 -i 0 -k MAC + -t 0.23653594 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 0.23653594 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 0.23653594 -s 1 -S COLOR -c green -o black h -t 0.23653594 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 0.23830224 -s 3 -S COLOR -c green -o black r -t 0.23830224 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 0.23840224 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 0.23840224 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.23840224 -s 3 -S COLOR -c green -o black h -t 0.23840224 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.23992853 -s 1 -S COLOR -c green -o black r -t 0.23992853 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 0.24042853 -s 1 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC - -t 0.24042853 -s 1 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 0.24042853 -s 1 -S COLOR -c green -o black h -t 0.24042853 -s 1 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC v -t 0.24060000 -e take_snapshot n -t 0.24363482 -s 3 -S COLOR -c green -o black r -t 0.24363482 -s 3 -d -1 -p ARP -e 28 -c 2 -a 0 -i 0 -k MAC + -t 0.24373482 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 0.24373482 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.24373482 -s 3 -S COLOR -c green -o black h -t 0.24373482 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.24526111 -s 1 -S COLOR -c green -o black r -t 0.24526111 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 0.24995482 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 0.24995482 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 0.24995482 -s 3 -S COLOR -c green -o black h -t 0.24995482 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC v -t 0.24997900 -e take_snapshot n -t 0.25172111 -s 1 -S COLOR -c green -o black r -t 0.25172111 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 0.25182111 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 0.25182111 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.25182111 -s 1 -S COLOR -c green -o black h -t 0.25182111 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.25334740 -s 3 -S COLOR -c green -o black r -t 0.25334740 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 0.25384740 -s 3 -d 1 -p AODV -e 96 -c 2 -a 0 -i 0 -k MAC - -t 0.25384740 -s 3 -d 1 -p AODV -e 96 -c 2 -a 0 -i 0 -k MAC n -t 0.25384740 -s 3 -S COLOR -c green -o black h -t 0.25384740 -s 3 -d 1 -p AODV -e 96 -c 2 -a 0 -i 0 -k MAC n -t 0.25769369 -s 1 -S COLOR -c green -o black r -t 0.25769369 -s 1 -d 1 -p AODV -e 44 -c 2 -a 0 -i 0 -k MAC + -t 0.25779369 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 0.25779369 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.25779369 -s 1 -S COLOR -c green -o black h -t 0.25779369 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.25931998 -s 3 -S COLOR -c green -o black r -t 0.25931998 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC v -t 0.25936400 -e take_snapshot + -t 0.26307800 -s 0 -d -1 -p AODV -e 104 -c 2 -a 0 -i 0 -k MAC - -t 0.26307800 -s 0 -d -1 -p AODV -e 104 -c 2 -a 0 -i 0 -k MAC n -t 0.26307800 -s 0 -S COLOR -c green -o black h -t 0.26307800 -s 0 -d -1 -p AODV -e 104 -c 2 -a 0 -i 0 -k MAC n -t 0.26724083 -s 2 -S COLOR -c green -o black r -t 0.26724083 -s 2 -d -1 -p AODV -e 52 -c 2 -a 0 -i 0 -k MAC n -t 0.26724254 -s 4 -S COLOR -c green -o black r -t 0.26724254 -s 4 -d -1 -p AODV -e 52 -c 2 -a 0 -i 0 -k MAC n -t 0.26724389 -s 1 -S COLOR -c green -o black r -t 0.26724389 -s 1 -d -1 -p AODV -e 52 -c 2 -a 0 -i 0 -k MAC + -t 0.26914254 -s 4 -d -1 -p AODV -e 104 -c 2 -a 0 -i 0 -k MAC - -t 0.26914254 -s 4 -d -1 -p AODV -e 104 -c 2 -a 0 -i 0 -k MAC n -t 0.26914254 -s 4 -S COLOR -c green -o black h -t 0.26914254 -s 4 -d -1 -p AODV -e 104 -c 2 -a 0 -i 0 -k MAC n -t 0.27330449 -s 2 -S COLOR -c green -o black r -t 0.27330449 -s 2 -d -1 -p AODV -e 52 -c 2 -a 0 -i 0 -k MAC n -t 0.27330708 -s 0 -S COLOR -c green -o black r -t 0.27330708 -s 0 -d -1 -p AODV -e 52 -c 2 -a 0 -i 0 -k MAC n -t 0.27331191 -s 1 -S COLOR -c green -o black r -t 0.27331191 -s 1 -d -1 -p AODV -e 52 -c 2 -a 0 -i 0 -k MAC + -t 0.27441191 -s 1 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC - -t 0.27441191 -s 1 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 0.27441191 -s 1 -S COLOR -c green -o black h -t 0.27441191 -s 1 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 0.27761780 -s 0 -S COLOR -c green -o black r -t 0.27761780 -s 0 -d -1 -p ARP -e 28 -c 2 -a 0 -i 0 -k MAC n -t 0.27761820 -s 3 -S COLOR -c green -o black r -t 0.27761820 -s 3 -d -1 -p ARP -e 28 -c 2 -a 0 -i 0 -k MAC n -t 0.27761935 -s 2 -S COLOR -c green -o black r -t 0.27761935 -s 2 -d -1 -p ARP -e 28 -c 2 -a 0 -i 0 -k MAC n -t 0.27762127 -s 4 -S COLOR -c green -o black r -t 0.27762127 -s 4 -d -1 -p ARP -e 28 -c 2 -a 0 -i 0 -k MAC + -t 0.27816935 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 0.27816935 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 0.27816935 -s 2 -S COLOR -c green -o black h -t 0.27816935 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 0.27993679 -s 1 -S COLOR -c green -o black r -t 0.27993679 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 0.28003679 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 0.28003679 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.28003679 -s 1 -S COLOR -c green -o black h -t 0.28003679 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.28156424 -s 2 -S COLOR -c green -o black r -t 0.28156424 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 0.28206424 -s 2 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC - -t 0.28206424 -s 2 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 0.28206424 -s 2 -S COLOR -c green -o black h -t 0.28206424 -s 2 -d -1 -p ARP -e 80 -c 2 -a 0 -i 0 -k MAC n -t 0.28527168 -s 1 -S COLOR -c green -o black r -t 0.28527168 -s 1 -d -1 -p ARP -e 28 -c 2 -a 0 -i 0 -k MAC + -t 0.28537168 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 0.28537168 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.28537168 -s 1 -S COLOR -c green -o black h -t 0.28537168 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.28689912 -s 2 -S COLOR -c green -o black r -t 0.28689912 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC v -t 0.28700000 -e take_snapshot + -t 0.28919168 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 0.28919168 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 0.28919168 -s 1 -S COLOR -c green -o black h -t 0.28919168 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 0.29095912 -s 2 -S COLOR -c green -o black r -t 0.29095912 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 0.29105912 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 0.29105912 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.29105912 -s 2 -S COLOR -c green -o black h -t 0.29105912 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.29258657 -s 1 -S COLOR -c green -o black r -t 0.29258657 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC v -t 0.29300000 -e take_snapshot + -t 0.29308657 -s 1 -d 2 -p AODV -e 96 -c 2 -a 0 -i 0 -k MAC - -t 0.29308657 -s 1 -d 2 -p AODV -e 96 -c 2 -a 0 -i 0 -k MAC n -t 0.29308657 -s 1 -S COLOR -c green -o black h -t 0.29308657 -s 1 -d 2 -p AODV -e 96 -c 2 -a 0 -i 0 -k MAC n -t 0.29693401 -s 2 -S COLOR -c green -o black r -t 0.29693401 -s 2 -d 2 -p AODV -e 44 -c 2 -a 0 -i 0 -k MAC + -t 0.29703401 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 0.29703401 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.29703401 -s 2 -S COLOR -c green -o black h -t 0.29703401 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.29856145 -s 1 -S COLOR -c green -o black r -t 0.29856145 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 0.310265401 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 0.310265401 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 0.310265401 -s 2 -S COLOR -c green -o black h -t 0.310265401 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 0.310442145 -s 1 -S COLOR -c green -o black r -t 0.310442145 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 0.310452145 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 0.310452145 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.310452145 -s 1 -S COLOR -c green -o black h -t 0.310452145 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.310604890 -s 2 -S COLOR -c green -o black r -t 0.310604890 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 0.310654890 -s 2 -d 1 -p cbr -e 584 -c 2 -a 0 -i 0 -k MAC - -t 0.310654890 -s 2 -d 1 -p cbr -e 584 -c 2 -a 0 -i 0 -k MAC n -t 0.310654890 -s 2 -S COLOR -c green -o black h -t 0.310654890 -s 2 -d 1 -p cbr -e 584 -c 2 -a 0 -i 0 -k MAC n -t 0.312991634 -s 1 -S COLOR -c green -o black r -t 0.312991634 -s 1 -d 1 -p cbr -e 532 -c 2 -a 0 -i 0 -k MAC + -t 0.313001634 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 0.313001634 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.313001634 -s 1 -S COLOR -c green -o black h -t 0.313001634 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.313154378 -s 2 -S COLOR -c green -o black r -t 0.313154378 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 0.313303634 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 0.313303634 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 0.313303634 -s 1 -S COLOR -c green -o black h -t 0.313303634 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 0.313480263 -s 3 -S COLOR -c green -o black r -t 0.313480263 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 0.313490263 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 0.313490263 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.313490263 -s 3 -S COLOR -c green -o black h -t 0.313490263 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC v -t 0.313516000 -e take_snapshot n -t 0.313642892 -s 1 -S COLOR -c green -o black r -t 0.313642892 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 0.313692892 -s 1 -d 3 -p cbr -e 584 -c 2 -a 0 -i 0 -k MAC - -t 0.313692892 -s 1 -d 3 -p cbr -e 584 -c 2 -a 0 -i 0 -k MAC n -t 0.313692892 -s 1 -S COLOR -c green -o black h -t 0.313692892 -s 1 -d 3 -p cbr -e 584 -c 2 -a 0 -i 0 -k MAC n -t 0.316029521 -s 3 -S COLOR -c green -o black r -t 0.316029521 -s 3 -d 3 -p cbr -e 532 -c 2 -a 0 -i 0 -k MAC + -t 0.316039521 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 0.316039521 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.316039521 -s 3 -S COLOR -c green -o black h -t 0.316039521 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.316054521 -s 3 -S COLOR -c green -o black r -t 0.316054521 -s 3 -d 3 -p cbr -e 532 -c 2 -a 0 -i 0 -k AGT n -t 0.316192150 -s 1 -S COLOR -c green -o black r -t 0.316192150 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 0.357039399 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 1 -k AGT - -t 0.357039399 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 1 -k AGT n -t 0.357039399 -s 2 -S COLOR -c green -o black h -t 0.357039399 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 1 -k AGT + -t 0.357114399 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 0.357114399 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 0.357114399 -s 2 -S COLOR -c green -o black h -t 0.357114399 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 0.357291143 -s 1 -S COLOR -c green -o black r -t 0.357291143 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 0.357301143 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 0.357301143 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.357301143 -s 1 -S COLOR -c green -o black h -t 0.357301143 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.357453888 -s 2 -S COLOR -c green -o black r -t 0.357453888 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 0.357503888 -s 2 -d 1 -p cbr -e 584 -c 2 -a 0 -i 1 -k MAC - -t 0.357503888 -s 2 -d 1 -p cbr -e 584 -c 2 -a 0 -i 1 -k MAC n -t 0.357503888 -s 2 -S COLOR -c green -o black h -t 0.357503888 -s 2 -d 1 -p cbr -e 584 -c 2 -a 0 -i 1 -k MAC n -t 0.359840632 -s 1 -S COLOR -c green -o black r -t 0.359840632 -s 1 -d 1 -p cbr -e 532 -c 2 -a 0 -i 1 -k MAC + -t 0.359850632 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 0.359850632 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.359850632 -s 1 -S COLOR -c green -o black h -t 0.359850632 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.360003376 -s 2 -S COLOR -c green -o black v -t 0.360003376 -e take_snapshot r -t 0.360003376 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 0.360212632 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 0.360212632 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 0.360212632 -s 1 -S COLOR -c green -o black h -t 0.360212632 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 0.360389261 -s 3 -S COLOR -c green -o black r -t 0.360389261 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 0.360399261 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 0.360399261 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.360399261 -s 3 -S COLOR -c green -o black h -t 0.360399261 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.360551890 -s 1 -S COLOR -c green -o black r -t 0.360551890 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 0.360601890 -s 1 -d 3 -p cbr -e 584 -c 2 -a 0 -i 1 -k MAC - -t 0.360601890 -s 1 -d 3 -p cbr -e 584 -c 2 -a 0 -i 1 -k MAC n -t 0.360601890 -s 1 -S COLOR -c green -o black h -t 0.360601890 -s 1 -d 3 -p cbr -e 584 -c 2 -a 0 -i 1 -k MAC n -t 0.362938519 -s 3 -S COLOR -c green -o black r -t 0.362938519 -s 3 -d 3 -p cbr -e 532 -c 2 -a 0 -i 1 -k MAC + -t 0.362948519 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 0.362948519 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.362948519 -s 3 -S COLOR -c green -o black h -t 0.362948519 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.362963519 -s 3 -S COLOR -c green -o black r -t 0.362963519 -s 3 -d 3 -p cbr -e 532 -c 2 -a 0 -i 1 -k AGT v -t 0.36299000 -e take_snapshot n -t 0.36310114 -s 1 -S COLOR -c green -o black r -t 0.36310114 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 0.40584824 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 2 -k AGT - -t 0.40584824 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 2 -k AGT n -t 0.40584824 -s 2 -S COLOR -c green -o black h -t 0.40584824 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 2 -k AGT + -t 0.40659824 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 0.40659824 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 0.40659824 -s 2 -S COLOR -c green -o black h -t 0.40659824 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 0.40836568 -s 1 -S COLOR -c green -o black r -t 0.40836568 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 0.40846568 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 0.40846568 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.40846568 -s 1 -S COLOR -c green -o black h -t 0.40846568 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.40999312 -s 2 -S COLOR -c green -o black r -t 0.40999312 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC v -t 0.41007000 -e take_snapshot + -t 0.41049312 -s 2 -d 1 -p cbr -e 584 -c 2 -a 0 -i 2 -k MAC - -t 0.41049312 -s 2 -d 1 -p cbr -e 584 -c 2 -a 0 -i 2 -k MAC n -t 0.41049312 -s 2 -S COLOR -c green -o black h -t 0.41049312 -s 2 -d 1 -p cbr -e 584 -c 2 -a 0 -i 2 -k MAC n -t 0.43386057 -s 1 -S COLOR -c green -o black r -t 0.43386057 -s 1 -d 1 -p cbr -e 532 -c 2 -a 0 -i 2 -k MAC + -t 0.43396057 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 0.43396057 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.43396057 -s 1 -S COLOR -c green -o black h -t 0.43396057 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.43548801 -s 2 -S COLOR -c green -o black r -t 0.43548801 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 0.43678057 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 0.43678057 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 0.43678057 -s 1 -S COLOR -c green -o black h -t 0.43678057 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 0.43854686 -s 3 -S COLOR -c green -o black r -t 0.43854686 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 0.43864686 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 0.43864686 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.43864686 -s 3 -S COLOR -c green -o black h -t 0.43864686 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.44017315 -s 1 -S COLOR -c green -o black r -t 0.44017315 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 0.44067315 -s 1 -d 3 -p cbr -e 584 -c 2 -a 0 -i 2 -k MAC - -t 0.44067315 -s 1 -d 3 -p cbr -e 584 -c 2 -a 0 -i 2 -k MAC n -t 0.44067315 -s 1 -S COLOR -c green -o black h -t 0.44067315 -s 1 -d 3 -p cbr -e 584 -c 2 -a 0 -i 2 -k MAC v -t 0.44100000 -e take_snapshot v -t 0.45000000 -e take_snapshot n -t 0.46403944 -s 3 -S COLOR -c green -o black r -t 0.46403944 -s 3 -d 3 -p cbr -e 532 -c 2 -a 0 -i 2 -k MAC + -t 0.46413944 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 0.46413944 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.46413944 -s 3 -S COLOR -c green -o black h -t 0.46413944 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.46428944 -s 3 -S COLOR -c green -o black r -t 0.46428944 -s 3 -d 3 -p cbr -e 532 -c 2 -a 0 -i 2 -k AGT n -t 0.46566573 -s 1 -S COLOR -c green -o black r -t 0.46566573 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 0.524442379 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 3 -k AGT - -t 0.524442379 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 3 -k AGT n -t 0.524442379 -s 2 -S COLOR -c green -o black h -t 0.524442379 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 3 -k AGT + -t 0.524517379 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 0.524517379 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 0.524517379 -s 2 -S COLOR -c green -o black h -t 0.524517379 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 0.524694123 -s 1 -S COLOR -c green -o black r -t 0.524694123 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 0.524704123 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 0.524704123 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.524704123 -s 1 -S COLOR -c green -o black h -t 0.524704123 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC v -t 0.524750000 -e take_snapshot n -t 0.524856867 -s 2 -S COLOR -c green -o black r -t 0.524856867 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 0.524906867 -s 2 -d 1 -p cbr -e 584 -c 2 -a 0 -i 3 -k MAC - -t 0.524906867 -s 2 -d 1 -p cbr -e 584 -c 2 -a 0 -i 3 -k MAC n -t 0.524906867 -s 2 -S COLOR -c green -o black h -t 0.524906867 -s 2 -d 1 -p cbr -e 584 -c 2 -a 0 -i 3 -k MAC n -t 0.527243612 -s 1 -S COLOR -c green -o black r -t 0.527243612 -s 1 -d 1 -p cbr -e 532 -c 2 -a 0 -i 3 -k MAC + -t 0.527253612 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 0.527253612 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.527253612 -s 1 -S COLOR -c green -o black h -t 0.527253612 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.527406356 -s 2 -S COLOR -c green -o black r -t 0.527406356 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 0.527575612 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 0.527575612 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 0.527575612 -s 1 -S COLOR -c green -o black h -t 0.527575612 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 0.527752241 -s 3 -S COLOR -c green -o black r -t 0.527752241 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 0.527762241 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 0.527762241 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.527762241 -s 3 -S COLOR -c green -o black h -t 0.527762241 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.527914870 -s 1 -S COLOR -c green -o black r -t 0.527914870 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 0.527964870 -s 1 -d 3 -p cbr -e 584 -c 2 -a 0 -i 3 -k MAC - -t 0.527964870 -s 1 -d 3 -p cbr -e 584 -c 2 -a 0 -i 3 -k MAC n -t 0.527964870 -s 1 -S COLOR -c green -o black h -t 0.527964870 -s 1 -d 3 -p cbr -e 584 -c 2 -a 0 -i 3 -k MAC v -t 0.530000000 -e take_snapshot n -t 0.550301499 -s 3 -S COLOR -c green -o black r -t 0.550301499 -s 3 -d 3 -p cbr -e 532 -c 2 -a 0 -i 3 -k MAC + -t 0.550311499 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 0.550311499 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.550311499 -s 3 -S COLOR -c green -o black h -t 0.550311499 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.550326499 -s 3 -S COLOR -c green -o black r -t 0.550326499 -s 3 -d 3 -p cbr -e 532 -c 2 -a 0 -i 3 -k AGT n -t 0.550464128 -s 1 -S COLOR -c green -o black r -t 0.550464128 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 0.656823568 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 4 -k AGT - -t 0.656823568 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 4 -k AGT n -t 0.656823568 -s 2 -S COLOR -c green -o black h -t 0.656823568 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 4 -k AGT + -t 0.656898568 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 0.656898568 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 0.656898568 -s 2 -S COLOR -c green -o black h -t 0.656898568 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 0.657075312 -s 1 -S COLOR -c green -o black r -t 0.657075312 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 0.657085312 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 0.657085312 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.657085312 -s 1 -S COLOR -c green -o black h -t 0.657085312 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.657238056 -s 2 -S COLOR -c green -o black r -t 0.657238056 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 0.657288056 -s 2 -d 1 -p cbr -e 584 -c 2 -a 0 -i 4 -k MAC - -t 0.657288056 -s 2 -d 1 -p cbr -e 584 -c 2 -a 0 -i 4 -k MAC n -t 0.657288056 -s 2 -S COLOR -c green -o black h -t 0.657288056 -s 2 -d 1 -p cbr -e 584 -c 2 -a 0 -i 4 -k MAC n -t 0.659624801 -s 1 -S COLOR -c green -o black r -t 0.659624801 -s 1 -d 1 -p cbr -e 532 -c 2 -a 0 -i 4 -k MAC + -t 0.659634801 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 0.659634801 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.659634801 -s 1 -S COLOR -c green -o black h -t 0.659634801 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.659787545 -s 2 -S COLOR -c green -o black r -t 0.659787545 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC v -t 0.660000000 -e take_snapshot + -t 0.700236801 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 0.700236801 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 0.700236801 -s 1 -S COLOR -c green -o black h -t 0.700236801 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 0.700413430 -s 3 -S COLOR -c green -o black r -t 0.700413430 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 0.700423430 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 0.700423430 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.700423430 -s 3 -S COLOR -c green -o black h -t 0.700423430 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.700576059 -s 1 -S COLOR -c green -o black r -t 0.700576059 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 0.700626059 -s 1 -d 3 -p cbr -e 584 -c 2 -a 0 -i 4 -k MAC - -t 0.700626059 -s 1 -d 3 -p cbr -e 584 -c 2 -a 0 -i 4 -k MAC n -t 0.700626059 -s 1 -S COLOR -c green -o black h -t 0.700626059 -s 1 -d 3 -p cbr -e 584 -c 2 -a 0 -i 4 -k MAC n -t 0.702962688 -s 3 -S COLOR -c green -o black r -t 0.702962688 -s 3 -d 3 -p cbr -e 532 -c 2 -a 0 -i 4 -k MAC + -t 0.702972688 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 0.702972688 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.702972688 -s 3 -S COLOR -c green -o black h -t 0.702972688 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.702987688 -s 3 -S COLOR -c green -o black r -t 0.702987688 -s 3 -d 3 -p cbr -e 532 -c 2 -a 0 -i 4 -k AGT v -t 0.702999000 -e take_snapshot n -t 0.703125317 -s 1 -S COLOR -c green -o black r -t 0.703125317 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC v -t 0.740000000 -e take_snapshot + -t 0.751752595 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 5 -k AGT - -t 0.751752595 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 5 -k AGT n -t 0.751752595 -s 2 -S COLOR -c green -o black h -t 0.751752595 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 5 -k AGT + -t 0.751827595 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 0.751827595 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 0.751827595 -s 2 -S COLOR -c green -o black h -t 0.751827595 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 0.752004339 -s 1 -S COLOR -c green -o black r -t 0.752004339 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 0.752014339 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 0.752014339 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.752014339 -s 1 -S COLOR -c green -o black h -t 0.752014339 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.752167084 -s 2 -S COLOR -c green -o black r -t 0.752167084 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 0.752217084 -s 2 -d 1 -p cbr -e 584 -c 2 -a 0 -i 5 -k MAC - -t 0.752217084 -s 2 -d 1 -p cbr -e 584 -c 2 -a 0 -i 5 -k MAC n -t 0.752217084 -s 2 -S COLOR -c green -o black h -t 0.752217084 -s 2 -d 1 -p cbr -e 584 -c 2 -a 0 -i 5 -k MAC n -t 0.754553828 -s 1 -S COLOR -c green -o black r -t 0.754553828 -s 1 -d 1 -p cbr -e 532 -c 2 -a 0 -i 5 -k MAC + -t 0.754563828 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 0.754563828 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.754563828 -s 1 -S COLOR -c green -o black h -t 0.754563828 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.754716572 -s 2 -S COLOR -c green -o black r -t 0.754716572 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 0.755305828 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 0.755305828 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 0.755305828 -s 1 -S COLOR -c green -o black h -t 0.755305828 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 0.755482457 -s 3 -S COLOR -c green -o black r -t 0.755482457 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 0.755492457 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 0.755492457 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.755492457 -s 3 -S COLOR -c green -o black h -t 0.755492457 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.755645086 -s 1 -S COLOR -c green -o black r -t 0.755645086 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 0.755695086 -s 1 -d 3 -p cbr -e 584 -c 2 -a 0 -i 5 -k MAC - -t 0.755695086 -s 1 -d 3 -p cbr -e 584 -c 2 -a 0 -i 5 -k MAC n -t 0.755695086 -s 1 -S COLOR -c green -o black h -t 0.755695086 -s 1 -d 3 -p cbr -e 584 -c 2 -a 0 -i 5 -k MAC n -t 0.758031715 -s 3 -S COLOR -c green -o black r -t 0.758031715 -s 3 -d 3 -p cbr -e 532 -c 2 -a 0 -i 5 -k MAC + -t 0.758041715 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 0.758041715 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.758041715 -s 3 -S COLOR -c green -o black h -t 0.758041715 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.758056715 -s 3 -S COLOR -c green -o black r -t 0.758056715 -s 3 -d 3 -p cbr -e 532 -c 2 -a 0 -i 5 -k AGT n -t 0.758194344 -s 1 -S COLOR -c green -o black r -t 0.758194344 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC v -t 0.759000000 -e take_snapshot + -t 0.854573567 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 6 -k AGT - -t 0.854573567 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 6 -k AGT n -t 0.854573567 -s 2 -S COLOR -c green -o black h -t 0.854573567 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 6 -k AGT + -t 0.854648567 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 0.854648567 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 0.854648567 -s 2 -S COLOR -c green -o black h -t 0.854648567 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 0.854825311 -s 1 -S COLOR -c green -o black r -t 0.854825311 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 0.854835311 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 0.854835311 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.854835311 -s 1 -S COLOR -c green -o black h -t 0.854835311 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.854988055 -s 2 -S COLOR -c green -o black r -t 0.854988055 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC v -t 0.855000000 -e take_snapshot + -t 0.855038055 -s 2 -d 1 -p cbr -e 584 -c 2 -a 0 -i 6 -k MAC - -t 0.855038055 -s 2 -d 1 -p cbr -e 584 -c 2 -a 0 -i 6 -k MAC n -t 0.855038055 -s 2 -S COLOR -c green -o black h -t 0.855038055 -s 2 -d 1 -p cbr -e 584 -c 2 -a 0 -i 6 -k MAC n -t 0.857374800 -s 1 -S COLOR -c green -o black r -t 0.857374800 -s 1 -d 1 -p cbr -e 532 -c 2 -a 0 -i 6 -k MAC + -t 0.857384800 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 0.857384800 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.857384800 -s 1 -S COLOR -c green -o black h -t 0.857384800 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.857537544 -s 2 -S COLOR -c green -o black r -t 0.857537544 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 0.857746800 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 0.857746800 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 0.857746800 -s 1 -S COLOR -c green -o black h -t 0.857746800 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 0.857923429 -s 3 -S COLOR -c green -o black r -t 0.857923429 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 0.857933429 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 0.857933429 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.857933429 -s 3 -S COLOR -c green -o black h -t 0.857933429 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.858086058 -s 1 -S COLOR -c green -o black r -t 0.858086058 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 0.858136058 -s 1 -d 3 -p cbr -e 584 -c 2 -a 0 -i 6 -k MAC - -t 0.858136058 -s 1 -d 3 -p cbr -e 584 -c 2 -a 0 -i 6 -k MAC n -t 0.858136058 -s 1 -S COLOR -c green -o black h -t 0.858136058 -s 1 -d 3 -p cbr -e 584 -c 2 -a 0 -i 6 -k MAC v -t 0.860000000 -e take_snapshot n -t 0.950472687 -s 3 -S COLOR -c green -o black r -t 0.950472687 -s 3 -d 3 -p cbr -e 532 -c 2 -a 0 -i 6 -k MAC + -t 0.950482687 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 0.950482687 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.950482687 -s 3 -S COLOR -c green -o black h -t 0.950482687 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 0.950497687 -s 3 -S COLOR -c green -o black r -t 0.950497687 -s 3 -d 3 -p cbr -e 532 -c 2 -a 0 -i 6 -k AGT n -t 0.950635316 -s 1 -S COLOR -c green -o black r -t 0.950635316 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 1.29674139 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 7 -k AGT - -t 1.29674139 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 7 -k AGT n -t 1.29674139 -s 2 -S COLOR -c green -o black h -t 1.29674139 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 7 -k AGT + -t 1.29749139 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 1.29749139 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 1.29749139 -s 2 -S COLOR -c green -o black h -t 1.29749139 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 1.29925883 -s 1 -S COLOR -c green -o black r -t 1.29925883 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 1.29935883 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 1.29935883 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 1.29935883 -s 1 -S COLOR -c green -o black h -t 1.29935883 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 1.350088628 -s 2 -S COLOR -c green -o black r -t 1.350088628 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 1.350138628 -s 2 -d 1 -p cbr -e 584 -c 2 -a 0 -i 7 -k MAC - -t 1.350138628 -s 2 -d 1 -p cbr -e 584 -c 2 -a 0 -i 7 -k MAC n -t 1.350138628 -s 2 -S COLOR -c green -o black h -t 1.350138628 -s 2 -d 1 -p cbr -e 584 -c 2 -a 0 -i 7 -k MAC n -t 1.352475372 -s 1 -S COLOR -c green -o black r -t 1.352475372 -s 1 -d 1 -p cbr -e 532 -c 2 -a 0 -i 7 -k MAC + -t 1.352485372 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 1.352485372 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 1.352485372 -s 1 -S COLOR -c green -o black h -t 1.352485372 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 1.352638116 -s 2 -S COLOR -c green -o black r -t 1.352638116 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 1.353007372 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 1.353007372 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 1.353007372 -s 1 -S COLOR -c green -o black h -t 1.353007372 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 1.353184001 -s 3 -S COLOR -c green -o black r -t 1.353184001 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 1.353194001 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 1.353194001 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 1.353194001 -s 3 -S COLOR -c green -o black h -t 1.353194001 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 1.353346630 -s 1 -S COLOR -c green -o black r -t 1.353346630 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 1.353396630 -s 1 -d 3 -p cbr -e 584 -c 2 -a 0 -i 7 -k MAC - -t 1.353396630 -s 1 -d 3 -p cbr -e 584 -c 2 -a 0 -i 7 -k MAC n -t 1.353396630 -s 1 -S COLOR -c green -o black h -t 1.353396630 -s 1 -d 3 -p cbr -e 584 -c 2 -a 0 -i 7 -k MAC n -t 1.355733259 -s 3 -S COLOR -c green -o black r -t 1.355733259 -s 3 -d 3 -p cbr -e 532 -c 2 -a 0 -i 7 -k MAC + -t 1.355743259 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 1.355743259 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 1.355743259 -s 3 -S COLOR -c green -o black h -t 1.355743259 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 1.355758259 -s 3 -S COLOR -c green -o black r -t 1.355758259 -s 3 -d 3 -p cbr -e 532 -c 2 -a 0 -i 7 -k AGT v -t 1.355770000 -e take_snapshot n -t 1.355895888 -s 1 -S COLOR -c green -o black r -t 1.355895888 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 1.455045905 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 8 -k AGT - -t 1.455045905 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 8 -k AGT n -t 1.455045905 -s 2 -S COLOR -c green -o black h -t 1.455045905 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 8 -k AGT + -t 1.455120905 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 1.455120905 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 1.455120905 -s 2 -S COLOR -c green -o black h -t 1.455120905 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 1.455297649 -s 1 -S COLOR -c green -o black r -t 1.455297649 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 1.455307649 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 1.455307649 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 1.455307649 -s 1 -S COLOR -c green -o black h -t 1.455307649 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 1.455460394 -s 2 -S COLOR -c green -o black r -t 1.455460394 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 1.455510394 -s 2 -d 1 -p cbr -e 584 -c 2 -a 0 -i 8 -k MAC - -t 1.455510394 -s 2 -d 1 -p cbr -e 584 -c 2 -a 0 -i 8 -k MAC n -t 1.455510394 -s 2 -S COLOR -c green -o black h -t 1.455510394 -s 2 -d 1 -p cbr -e 584 -c 2 -a 0 -i 8 -k MAC n -t 1.457847138 -s 1 -S COLOR -c green -o black r -t 1.457847138 -s 1 -d 1 -p cbr -e 532 -c 2 -a 0 -i 8 -k MAC + -t 1.457857138 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 1.457857138 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 1.457857138 -s 1 -S COLOR -c green -o black h -t 1.457857138 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 1.458009882 -s 2 -S COLOR -c green -o black r -t 1.458009882 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 1.458219138 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 1.458219138 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 1.458219138 -s 1 -S COLOR -c green -o black h -t 1.458219138 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 1.458395767 -s 3 -S COLOR -c green -o black r -t 1.458395767 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 1.458405767 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 1.458405767 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 1.458405767 -s 3 -S COLOR -c green -o black h -t 1.458405767 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 1.458558396 -s 1 -S COLOR -c green -o black r -t 1.458558396 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 1.458608396 -s 1 -d 3 -p cbr -e 584 -c 2 -a 0 -i 8 -k MAC - -t 1.458608396 -s 1 -d 3 -p cbr -e 584 -c 2 -a 0 -i 8 -k MAC n -t 1.458608396 -s 1 -S COLOR -c green -o black h -t 1.458608396 -s 1 -d 3 -p cbr -e 584 -c 2 -a 0 -i 8 -k MAC v -t 1.459000000 -e take_snapshot n -t 1.550945025 -s 3 -S COLOR -c green -o black r -t 1.550945025 -s 3 -d 3 -p cbr -e 532 -c 2 -a 0 -i 8 -k MAC + -t 1.550955025 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 1.550955025 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 1.550955025 -s 3 -S COLOR -c green -o black h -t 1.550955025 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 1.550970025 -s 3 -S COLOR -c green -o black r -t 1.550970025 -s 3 -d 3 -p cbr -e 532 -c 2 -a 0 -i 8 -k AGT n -t 1.551107654 -s 1 -S COLOR -c green -o black r -t 1.551107654 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 1.67868716 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 9 -k AGT - -t 1.67868716 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 9 -k AGT n -t 1.67868716 -s 2 -S COLOR -c green -o black h -t 1.67868716 -s 2 -d -1 -p cbr -e 512 -c 2 -a 0 -i 9 -k AGT + -t 1.67943716 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 1.67943716 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 1.67943716 -s 2 -S COLOR -c green -o black h -t 1.67943716 -s 2 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC v -t 1.67947000 -e take_snapshot n -t 1.68120461 -s 1 -S COLOR -c green -o black r -t 1.68120461 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 1.68130461 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 1.68130461 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 1.68130461 -s 1 -S COLOR -c green -o black h -t 1.68130461 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 1.68283205 -s 2 -S COLOR -c green -o black r -t 1.68283205 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 1.68333205 -s 2 -d 1 -p cbr -e 584 -c 2 -a 0 -i 9 -k MAC - -t 1.68333205 -s 2 -d 1 -p cbr -e 584 -c 2 -a 0 -i 9 -k MAC n -t 1.68333205 -s 2 -S COLOR -c green -o black h -t 1.68333205 -s 2 -d 1 -p cbr -e 584 -c 2 -a 0 -i 9 -k MAC n -t 1.730669949 -s 1 -S COLOR -c green -o black r -t 1.730669949 -s 1 -d 1 -p cbr -e 532 -c 2 -a 0 -i 9 -k MAC + -t 1.730679949 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 1.730679949 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 1.730679949 -s 1 -S COLOR -c green -o black h -t 1.730679949 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 1.730832694 -s 2 -S COLOR -c green -o black r -t 1.730832694 -s 2 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 1.731001949 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC - -t 1.731001949 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 1.731001949 -s 1 -S COLOR -c green -o black h -t 1.731001949 -s 1 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC n -t 1.731178578 -s 3 -S COLOR -c green -o black r -t 1.731178578 -s 3 -d -1 -p MAC -e 44 -c 2 -a 0 -i 0 -k MAC + -t 1.731188578 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 1.731188578 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 1.731188578 -s 3 -S COLOR -c green -o black h -t 1.731188578 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 1.731341207 -s 1 -S COLOR -c green -o black r -t 1.731341207 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC + -t 1.731391207 -s 1 -d 3 -p cbr -e 584 -c 2 -a 0 -i 9 -k MAC - -t 1.731391207 -s 1 -d 3 -p cbr -e 584 -c 2 -a 0 -i 9 -k MAC n -t 1.731391207 -s 1 -S COLOR -c green -o black h -t 1.731391207 -s 1 -d 3 -p cbr -e 584 -c 2 -a 0 -i 9 -k MAC n -t 1.733727837 -s 3 -S COLOR -c green -o black r -t 1.733727837 -s 3 -d 3 -p cbr -e 532 -c 2 -a 0 -i 9 -k MAC + -t 1.733737837 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC - -t 1.733737837 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 1.733737837 -s 3 -S COLOR -c green -o black h -t 1.733737837 -s 3 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC n -t 1.733752837 -s 3 -S COLOR -c green -o black r -t 1.733752837 -s 3 -d 3 -p cbr -e 532 -c 2 -a 0 -i 9 -k AGT n -t 1.733890466 -s 1 -S COLOR -c green -o black r -t 1.733890466 -s 1 -d -1 -p MAC -e 38 -c 2 -a 0 -i 0 -k MAC v -t 1.735000000 -e take_snapshot v -t 1.739000000 -e take_snapshot v -t 1.74 -e terminating_nam nam-1.15/tcl/TimesliderModel.tcl0000664000076400007660000000235706622661350015461 0ustar tomhnsnamClass TimesliderModel -superclass Observable TimesliderModel instproc init { min_t max_t curr_t aid} { $self next $self instvar mint_ maxt_ currt_ aid_ set mint_ $min_t set maxt_ $max_t set currt_ $curr_t set aid_ $aid } TimesliderModel instproc setmintime {min_t} { $self instvar mint_ set mint_ $min_t set e [list $mint_ min] $self notifyObservers $e } TimesliderModel instproc setmaxtime {max_t} { $self instvar maxt_ set maxt_ $max_t set e [list $maxt_ max] $self notifyObservers $e } TimesliderModel instproc setcurrenttime {curr_t} { $self instvar currt_ set currt_ $curr_t set e [list $curr_t now] $self notifyObservers $e } TimesliderModel instproc getmintime {} { $self instvar mint_ return $mint_ } TimesliderModel instproc getmaxtime {} { $self instvar maxt_ return $maxt_ } TimesliderModel instproc getcurrenttime {} { $self instvar currt_ return $currt_ } TimesliderModel instproc getanimator {} { $self instvar aid_ return $aid_ } TimesliderModel instproc setpipemode { p } { $self instvar pipemode_ set pipemode_ $p } TimesliderModel instproc getpipemode { } { $self instvar pipemode_ return $pipemode_ } nam-1.15/tcl/TimesliderNamgraphView.tcl0000664000076400007660000000251006617461226017004 0ustar tomhnsnam#Copyright (C) 1998 by USC/ISI # All rights reserved. # # Redistribution and use in source and binary forms are permitted # provided that the above copyright notice and this paragraph are # duplicated in all such forms and that any documentation, advertising # materials, and other materials related to such distribution and use # acknowledge that the software was developed by the University of # Southern California, Information Sciences Institute. The name of the # University may not be used to endorse or promote products derived from # this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED # WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. # Class TimesliderNamgraphView -superclass TimesliderView TimesliderNamgraphView instproc setattachedView {viewid} { $self instvar _attachedviewid set _attachedviewid $viewid } TimesliderNamgraphView instproc update {timeset} { $self next $timeset set time [lindex $timeset 0] set type [lindex $timeset 1] if {[string compare $type "max"] == 0} { $self instvar _attachedviewid set s [$_attachedviewid set current_win_] $_attachedviewid set maxx_ $time $_attachedviewid view_callback $s } } nam-1.15/tcl/TimesliderView.tcl0000664000076400007660000003117407334636320015332 0ustar tomhnsnam#Copyright (C) 1998 by USC/ISI # All rights reserved. # # Redistribution and use in source and binary forms are permitted # provided that the above copyright notice and this paragraph are # duplicated in all such forms and that any documentation, advertising # materials, and other materials related to such distribution and use # acknowledge that the software was developed by the University of # Southern California, Information Sciences Institute. The name of the # University may not be used to endorse or promote products derived from # this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED # WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. # Class TimesliderView -superclass Observer TimesliderView instproc frame {} { $self instvar timeslider return $timeslider(frame) } TimesliderView instproc swidth {} { $self instvar timeslider return $timeslider(swidth) } #----------------------------------------------------------------------- #----------------------------------------------------------------------- TimesliderView instproc init {w mid} { $self next $self instvar timeslider timeslider_width timeslider_tag \ timeslider_pos range mid_ window_frame_ \ marker_id_counter_ delete_marker_ set mid_ $mid set mintime [$mid_ getmintime] set maxtime [$mid_ getmaxtime] set range [expr $maxtime - $mintime] set marker_id_counter_ 0 set delete_marker_ 0 set window_frame_ $w.f frame $w.f -borderwidth 2 -relief groove pack $w.f -side top -fill x -expand 1 set timeslider(height) 24 set timeslider(swidth) 32 set timeslider(width) 32 set timeslider_width($w.f.c) 32 set timeslider(canvas) $w.f.c set timeslider(frame) $w # Create canvas for timeslider canvas $w.f.c -height $timeslider(height) -width 300 \ -background white -highlightthickness 0 pack $w.f.c -side left -fill x -expand 1 -padx 0 -pady 0 label $w.f.c.b -bitmap time -highlightthickness 0 -borderwidth 1 \ -relief raised set timeslider_tag($w.f.c) [$w.f.c create window \ [expr $timeslider(swidth)/2] 0 -window $w.f.c.b \ -height 12 -width $timeslider(swidth) -anchor n] set timeslider_pos($w.f.c) 0 bind $w.f.c "$self timeslidertrough $w.f.c %x %y" bind $w.f.c.b "$self timesliderpress $w.f.c %x %y;break" bind $w.f.c.b "$self timesliderrelease $w.f.c %x %y" bind $w.f.c.b "$self timeslidermotion $w.f.c %x %y" bind $w.f.c "$self timeticks $w.f.c" } TimesliderView instproc destroy {} { $self instvar window_frame_ if {[winfo exists $window_frame_]} { # Need to delete old properties widgets foreach widget [pack slaves $window_frame_] { # Each property has a frame for it's line(ie. label textbox) set subwidgets [pack slaves $widget] if {[llength $subwidgets] > 0} { pack forget $subwidgets destroy $subwidgets } pack forget $widget destroy $widget } } catch {destroy $window_frame_} $self next } #----------------------------------------------------------------------- # TimesliderView instproc timeticks { wfc } # - Draws the timeslider tick marks into the canvas wfc #----------------------------------------------------------------------- TimesliderView instproc timeticks { wfc } { $self instvar timeslider range timeslider_width \ timeslider_tag mid_ set timeslider(canvas) $wfc set width [winfo width $timeslider(canvas)] # if {$width == $timeslider_width($wfc)} { return } set mintime [$mid_ getmintime] set maxtime [$mid_ getmaxtime] set timeslider(width) $width set timeslider_width($wfc) $width $timeslider(canvas) delete ticks #we really shouldn't need to do this but there's a redraw bug in the #tk canvas that we need to work around (at least in tk4.2) - mjh pack forget $timeslider(canvas) update update idletasks pack $timeslider(canvas) -side left -fill x -expand 1 -padx 0 -pady 0 set width [winfo width $wfc] # We need a more adaptive way to draw the ticks. Otherwise for long # and sparse simulations, it'll result in long startup time - haoboy set x [expr $timeslider(swidth)/2] # Unit of time represented by one pixel set tickIncr [expr $range / ($width-$timeslider(swidth))] # Should check if range is 0 if {$range == 0} { set intertick [expr ($width - $timeslider(swidth)) / 10] } else { set intertick [expr ($width-$timeslider(swidth))/(10 * $range)] } if {$intertick < 2} { # This increment should be at least 2 pixel set intertick 2 } for {set t $mintime} {$t < ($range+$mintime)} {set t [expr $t+$intertick*$tickIncr]} { set intx [expr int($x)] $timeslider(canvas) addtag ticks withtag \ [$timeslider(canvas) create line \ $intx [expr $timeslider(height)/2] \ $intx $timeslider(height)] set x [expr $x+$intertick] } set x [expr $timeslider(swidth)/2] if {$range == 0} { set intertick [expr $width - $timeslider(swidth)] } else { set intertick [expr ($width-$timeslider(swidth))/($range)] } if {$intertick < 20} { set intertick 20 } # Draw longer time marks for {set t $mintime} {$t < ($range+$mintime)} {set t [expr $t+$intertick*$tickIncr]} { set intx [expr int($x)] $timeslider(canvas) addtag ticks withtag \ [$timeslider(canvas) create line \ $intx 0 $intx $timeslider(height) -fill blue] set x [expr $x+$intertick] } # set arrow $timeslider(canvas) delete arrow set pmode [$mid_ getpipemode] if {$pmode == 1 } { set x [expr $width-$timeslider(swidth)/2] set y 0 $timeslider(canvas) addtag arrow withtag \ [$timeslider(canvas) create polygon $x $y \ [expr $x+$timeslider(swidth)/2] [expr $y+$timeslider(height)/2] \ $x [expr $y+$timeslider(height)]] } set wfc_width [winfo width $wfc] set now [$mid_ getcurrenttime] if {$maxtime > 0} { set x [expr ($wfc_width-$timeslider(swidth))*$now/$maxtime] } else { set x [expr ($wfc_width-$timeslider(swidth))*$now] } $wfc coords $timeslider_tag($wfc) [expr $x + $timeslider(swidth)/2] 0 } #----------------------------------------------------------------------- # TimesliderView instproc timesliderpress {w x y} # - Clicked on time slider's [ti^me] icon #----------------------------------------------------------------------- TimesliderView instproc timesliderpress {w x y} { $self instvar timeslider mid_ set timeslider(oldpos) $x $w.b configure -relief sunken set animator [$mid_ getanimator] $animator setsliderPressed 1 } #----------------------------------------------------------------------- #----------------------------------------------------------------------- TimesliderView instproc timeslidertrough {w x y} { $self instvar timeslider sliderPressed timeslider_pos mid_ set animator [$mid_ getanimator] if {$timeslider_pos($w)>$x} { $animator rewind } else { $animator fast_fwd } } #----------------------------------------------------------------------- #----------------------------------------------------------------------- TimesliderView instproc timeslidermotion {wc x y} { $self instvar timeslider range timeslider_tag \ timeslider_pos timeslider_width mid_ set mintime [$mid_ getmintime] set diff [expr $x - $timeslider(oldpos)] set timeslider(canvas) $wc $timeslider(canvas) move $timeslider_tag($wc) \ $diff 0 set timeslider_pos($wc) [expr $timeslider_pos($wc) + $diff] if {$timeslider_pos($wc)<0} { $timeslider(canvas) move $timeslider_tag($wc) \ [expr 0 - $timeslider_pos($wc)] 0 set timeslider_pos($wc) 0 } if {$timeslider_pos($wc)>[expr $timeslider_width($wc)-$timeslider(swidth)]} { $timeslider(canvas) move $timeslider_tag($wc) \ [expr ($timeslider_width($wc)-$timeslider(swidth))-$timeslider_pos($wc)] 0 set timeslider_pos($wc) [expr $timeslider_width($wc)-$timeslider(swidth)] } set tick 0 catch { set tick [expr 1000.0*$timeslider_pos($wc)/($timeslider_width($wc)-$timeslider(swidth))] } set now [expr ($tick * $range) / 1000. + $mintime] set timeslider(tick) $tick set animator [$mid_ getanimator] $animator setCurrentTime [format %.6f $now] $self timesliderset $now } TimesliderView instproc timesliderrelease {w x y} { $self instvar timeslider running mid_ set animator [$mid_ getanimator] $self timeslidermotion $w $x $y $w.b configure -relief raised $animator slidetime $timeslider(tick) 1 $animator setsliderPressed 0 if [$animator getrunning] { $animator renderFrame } } TimesliderView instproc update { timeset } { $self instvar timeslider range mid_ set time [lindex $timeset 0] set type [lindex $timeset 1] if {[string compare $type "now"] == 0} { $self timesliderset $time } if {[string compare $type "min"] == 0} { $self timesliderset $time } if {[string compare $type "max"] == 0} { set mintime [$mid_ getmintime] set range [expr $time - $mintime] $self timeticks $timeslider(canvas) } } TimesliderView instproc timesliderset {time} { $self instvar timeslider timeslider_width timeslider_tag \ timeslider_pos mid_ range # mid_ is the TimesliderModel id set minimum_time [$mid_ getmintime] if {[winfo exists $timeslider(canvas)] == 1} { # Scale time value to appropriate x coordinate on timeslider canvas set x [expr ($timeslider_width($timeslider(canvas)) - $timeslider(swidth)) * \ ($time - $minimum_time)] if {$range > 0} { set x [expr $x / $range] } else { # puts "TimesliderView.tcl:timesliderset - range is $range" } $timeslider(canvas) coords \ $timeslider_tag($timeslider(canvas)) \ [expr $x + $timeslider(swidth)/2] 0 set timeslider_pos($timeslider(canvas)) $x } } #----------------------------------------------------------------------- #----------------------------------------------------------------------- TimesliderView instproc addMarker {time label_text color} { $self instvar timeslider timeslider_width range mid_ \ marker_id_counter_ markers_ set mintime [$mid_ getmintime] # --------- This code taken from timeticks ----------------- set width [winfo width $timeslider(canvas)] set x [expr $timeslider(swidth)/2] # Unit of time represented by one pixel set tickIncr [expr $range / ($width - $timeslider(swidth))] # Should check if range is 0 if {$range == 0} { set intertick [expr ($width - $timeslider(swidth))] } else { set intertick [expr ($width - $timeslider(swidth))/$range] } if {$intertick < 2} { # This increment should be at least 2 pixel set intertick 2 } # ------------------------------------------------------------ set x [expr ($timeslider(swidth)/2) + ($intertick * ($time - $mintime))] set marker $timeslider(canvas).marker$marker_id_counter_ set marker_id_counter_ [expr $marker_id_counter_ + 1] label $marker -text $label_text -relief raised -background $color $timeslider(canvas) create window $x [expr $timeslider(height)/2] \ -window $marker \ -height [expr $timeslider(height)/2] -width 15 \ -anchor n -tags markers set markers_($marker) "$time $label_text" bind $marker "$marker configure -relief sunken" bind $marker "$marker configure -relief raised; \ $self handleMarkerClick $marker" bind $marker } #----------------------------------------------------------------------- # TimesliderView instproc clearMarkers {} # - Removes all time markers from the time slider view #----------------------------------------------------------------------- TimesliderView instproc clearMarkers {} { $self instvar timeslider marker_id_counter_ for {set id 0} {$id < $marker_id_counter_} {set id [expr $id + 1]} { destroy $timeslider(canvas).marker$id } $timeslider(canvas) delete markers set marker_id_counter_ 0 } #----------------------------------------------------------------------- #----------------------------------------------------------------------- TimesliderView instproc handleMarkerClick {marker} { $self instvar delete_marker_ mid_ markers_ set animator [$mid_ getanimator] set time [lindex $markers_($marker) 0] set label_text [lindex $markers_($marker) 1] if {$delete_marker_ != 1} { $animator moveToMarkerTime $time } else { destroy $marker $animator removeMarker $time $label_text } } nam-1.15/tcl/wirelessNetModel.tcl0000664000076400007660000000264206606552065015665 0ustar tomhnsnam# # Copyright (C) 1998 by USC/ISI # All rights reserved. # # Redistribution and use in source and binary forms are permitted # provided that the above copyright notice and this paragraph are # duplicated in all such forms and that any documentation, advertising # materials, and other materials related to such distribution and use # acknowledge that the software was developed by the University of # Southern California, Information Sciences Institute. The name of the # University may not be used to endorse or promote products derived from # this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED # WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. # # initialize layout constant NetworkModel/Wireless set Wpxmax_ 4 NetworkModel/Wireless set Wpymax_ 4 NetworkModel/Wireless instproc init { animator tracefile } { eval $self next $animator $tracefile NetworkModel/Wireless instvar Wpxmax_ Wpymax_ $self set_range $Wpxmax_ $Wpymax_ } NetworkModel/Wireless instproc set_range { width height } { $self instvar Wpxmax_ Wpymax_ set Wpxmax_ $width set Wpymax_ $height } NetworkModel/Wireless instproc add_link { e } { set val [lrange $e 1 end] $self layout_link $val } nam-1.15/tcl/www.tcl0000644000076400007660000004061111341134042013177 0ustar tomhnsnam# # Copyright (C) 1998 by USC/ISI # All rights reserved. # # Redistribution and use in source and binary forms are permitted # provided that the above copyright notice and this paragraph are # duplicated in all such forms and that any documentation, advertising # materials, and other materials related to such distribution and use # acknowledge that the software was developed by the University of # Southern California, Information Sciences Institute. The name of the # University may not be used to endorse or promote products derived from # this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED # WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. # # $Header: /cvsroot/nsnam/nam-1/tcl/www.tcl,v 1.17 2010/02/24 05:24:50 tom_henderson Exp $ # WWW "browser" - setup big table of what affects what set stackthese "h1 h2 h3 h4 h5 h6 b i ul ol dl a pre" set www_cancels(/h1) "h1 h2 h3 h4 h5 h6 i b" set www_cancels(/h2) "h1 h2 h3 h4 h5 h6 i b" set www_cancels(/h3) "h1 h2 h3 h4 h5 h6 i b" set www_cancels(/h4) "h1 h2 h3 h4 h5 h6 i b" set www_cancels(/h5) "h1 h2 h3 h4 h5 h6 i b" set www_cancels(/h6) "h1 h2 h3 h4 h5 h6 i b" set www_cancels(h1) "h1 h2 h3 h4 h5 h6 i b" set www_cancels(h2) "h1 h2 h3 h4 h5 h6 i b" set www_cancels(h3) "h1 h2 h3 h4 h5 h6 i b" set www_cancels(h4) "h1 h2 h3 h4 h5 h6 i b" set www_cancels(h5) "h1 h2 h3 h4 h5 h6 i b" set www_cancels(h6) "h1 h2 h3 h4 h5 h6 i b" set www_cancels(/b) "b" set www_cancels(/strong) "strong" set www_cancels(/i) "i" set www_cancels(/ul) "ul" set www_cancels(/ol) "ol" set www_cancels(/dl) "dl" set www_cancels(/a) "a" set www_cancels(/pre) "pre" set www_sets(h1) {{bold 1} {size 18}} set www_sets(h2) {{bold 1} {size 14}} ;# may not exists on some systems set www_sets(h3) {{bold 1} {size 14}} set www_sets(h4) {{bold 1} {size 12}} set www_sets(h5) {{bold 1} {size 10}} set www_sets(h6) {{bold 1} {size 10}} set www_sets(i) {{italic 1} {bold 0}} set www_sets(b) {{italic 0} {bold 1}} set www_sets(strong) {{italic 0} {bold 1}} set www_sets(verbatim) {{verbatim 1} {font courier}} set www_sets(normal) {{bold 0} {italic 0} {font helvetica} {size 12} {nl 0} {hr 0} {ltype ""} {bullet 0} {verbatim 0} {indent 0} {href ""}} set www_sets(ul) {{ltype ul} {indent [expr $indent+4]}} set www_sets(ol) {{ltype ol} {indent [expr $indent+4]}} set www_sets(dl) {{ltype dl} {indent [expr $indent+4]}} set www_sets(a) {{href XXX}} set www_runs(a) {extract_anchor} set www_runs(img) {extract_image} #www_sets is for tags that get stacked and need to be set continuously #www_fsets is only run the first time set www_fsets(p) {{nl 2}} set www_fsets(br) {{nl 1}} set www_fsets(hr) {{hr 1}} set www_fsets(h1) {{nl 2}} set www_fsets(h2) {{nl 2}} set www_fsets(h3) {{nl 2}} set www_fsets(h4) {{nl 2}} set www_fsets(h5) {{nl 2}} set www_fsets(h6) {{nl 2}} set www_fsets(ul) {{nl 0}} set www_fsets(ol) {{nl 0}} set www_fsets(dl) {{nl 0}} set www_fsets(/h1) {{nl 2}} set www_fsets(/h2) {{nl 2}} set www_fsets(/h3) {{nl 2}} set www_fsets(/h4) {{nl 2}} set www_fsets(/h5) {{nl 2}} set www_fsets(/h6) {{nl 2}} set www_fsets(/ul) {{nl 1}} set www_fsets(/ol) {{nl 1}} set www_fsets(/dl) {{nl 1}} set www_fsets(li) {{nl 1} {bullet 1}} set www_fsets(dt) {{nl 1}} set fonts(normal) -*-helvetica-medium-r-normal--12-* set fonts(helvetica,0,0,16) -*-helvetica-medium-r-normal--17-* set fonts(helvetica,1,0,16) -*-helvetica-bold-r-normal--17-* set fonts(helvetica,1,1,16) -*-helvetica-bold-o-normal--17-* set fonts(helvetica,1,0,18) -*-helvetica-bold-r-normal--18-* set fonts(helvetica,1,1,18) -*-helvetica-bold-o-normal--18-* set fonts(helvetica,1,0,14) -*-helvetica-bold-r-normal--14-* set fonts(helvetica,1,1,14) -*-helvetica-bold-o-normal--14-* set fonts(helvetica,1,0,12) -*-helvetica-bold-r-normal--12-* set fonts(helvetica,1,1,12) -*-helvetica-bold-o-normal--12-* set fonts(helvetica,0,1,12) -*-helvetica-medium-o-normal--12-* set fonts(helvetica,1,0,10) -*-helvetica-bold-r-normal--10-* AnimControl instproc parse_html {w entry text} { global www_sets www_fsets www_cancels www_runs stackthese fonts $self instvar href href_keep www_win set www_win $w set stack normal set size normal set font helvetica set bold 0 set italic 0 set underline 0 set verbatim 0 set indent 0 set nl 0 set hr 0 set prevnl 0 set href "" set bullet 0 set ltype "" set parts [split $text "<>"] set istag 0 $w delete 1.0 end foreach part $parts { if {$istag==1} { set tag [string tolower [lindex $part 0]] set c "" catch {set c $www_cancels($tag)} set rm 0 set newstack {} foreach frame $stack { set newframe {} if {([lsearch -exact $c $frame]>=0)&&($rm==0)} { set rm 1 } else { lappend newstack $frame } } set stack $newstack set newframe $tag # puts "$tag, $stack" #set all the stuff corresponding to this stack foreach frame "$stack $newframe" { set t [lindex $frame 0] set s "" catch {set s $www_sets($t)} foreach item $s { set cmd "set $item" # puts " $cmd" eval $cmd } } #now deal with the one off stuff for this tag set s "" catch {set s $www_fsets($tag)} foreach item $s { set cmd "set $item" # puts " $cmd" eval $cmd } #now run any specific code for this tag set s "" catch {set s $www_runs($tag)} foreach item $s { set cmd "$self $item $part" # puts " $cmd" eval $cmd } if {[lsearch -exact $stackthese $tag]>=0} { lappend stack $newframe } } else { if {$hr==1} { $w insert end "\n_____________________________________________________\n" if {$prevnl==0} {set prevnl 1} } #handle all the newlines for {set i 0} {$i < [expr $nl-$prevnl]} {incr i} { $w insert end "\n" } set prevnl $nl #sort out the indentation if {$nl>0} { for {set i 0} {$i < $indent} {incr i} { $w insert end " " } } #add any bullets if {$bullet!=0} { $w insert end "* " } set ix [$w index end-1c] if {$nl>0} { set part [string trimleft $part] } if {$verbatim==0} { set part [remove_nl $part] if {[string length $part]>0} { set prevnl 0 } $w insert end $part } else { $w insert end $part } $self instvar tagnum if {($size!=12)||($bold==1)||($italic==1)||($href!="")||\ ($font!="helvetica")} { incr tagnum set ix2 [$w index end-1c] $w tag add t$tagnum $ix end-1c } if {($size!=12)||($bold==1)||($italic==1)||\ ($font!="helvetica")} { set thisfont $fonts(normal) catch { set thisfont $fonts($font,$bold,$italic,$size) } $w tag configure t$tagnum -font $thisfont } if {$href!=""} { $w tag configure t$tagnum -foreground red $w tag bind t$tagnum \ "$self set_entry $entry $href_keep" $w tag bind t$tagnum \ "$self set_entry $entry {}" $w tag bind t$tagnum <1> "$self goto $href_keep $w $entry" } } set istag [expr 1-$istag] } } AnimControl instproc set_entry {entry str} { $entry delete 0 end $entry insert 0 $str } AnimControl instproc extract_anchor args { $self instvar href_keep href set href_keep "" set href "" foreach arg $args { if {[string range [string tolower $arg] 0 4]=="href="} { set href_keep [string trim [string range $arg 5 end] {"}] set href XXX } } } AnimControl instproc extract_image args { $self instvar www_win wix set img "" foreach arg $args { if {[string range [string tolower $arg] 0 3]=="src="} { set img [string trim [string range $arg 4 end] {"}] } } $www_win window create end -create "label $www_win.w$wix -bitmap $img" incr wix } AnimControl instproc goto {url win entry} { global help_text set res "xxxx" set scheme [lindex [split $url ":"] 0] if {$scheme=="help"} { $self parse_html $win $entry $help_text([string range $url 5 end]) return } set proggy netscape catch { set res [exec $proggy -display :0 -remote openURL($url)] } if {$res=="xxxx"} { catch { set res [exec $proggy -display :0.1 -remote openURL($url)] } } if {$res=="xxxx"} { puts "failed to pass URL to $proggy" } } proc lreverse {list} { set res {} foreach el $list { set res [concat [list $el] $res] } return $res } proc remove_nl {str} { set parts [split $str "\n\r"] set res "" set space 1 for {set i 0} {$i<[llength $parts]} {incr i} { set part [lindex $parts $i] if {$i>0} { set part [string trimleft $part] } else { if {$part==""} {set space 0} } if {($i+1)<[llength $parts]} { set part [string trimright $part] } if {$space==0} { set res "$res " set space 1 } if {[string length $part] > 0} { set res "$res$part" set space 0 } } return $res } set help_text(home) "

      NAM - The Network Animator

      Welcome to Nam 1.15

      Developed by UCB and the VINT, SAMAN, and Conser projects at ISI.

      Nam contains source code with the following copyrights:

      Copyright (c) 1991-1994 Regents of the University of California.
      Copyright (c) 1997-1999 University of Southern California
      Copyright (c) 2000-2002 USC/Information Sciences Institute

      " set help_text(about) "

      NAM - The Network Animator

      This version of nam is highly experimental - there will be bugs!. Please mail ns-users@isi.edu if you encounter any bugs, or with suggestions for desired functionality.

      History

      The network animator ``nam'' began in 1990 as a simple tool for animating packet trace data. This trace data is typically derived as output from a network simulator like ns or from real network measurements, e.g., using tcpdump. Steven McCanne wrote the original version as a member of the Network Research Group at the Lawrence Berkeley National Laboratory, and occasionally improved the design as he needed it in his research. Marylou Orayani improved it further and used it for her Master's research over summer 1995 and into spring 1996. The nam development effort is now an ongoing collaboration at ISI in the SAMAN and Conser projects. Nam developers include: SAMAN and Conser projects. VINT project. Mark Handley, Haobo Yu, John Heidemann, Ya Xu, Kun-chan Lan, and Hyunah Park.

      For information about ns and nam, please see http://mash.cs.berkeley.edu/nam/.

      Funding

      Nam is currently funded by DARPA through the VINT project at LBL under DARPA grant DABT63-96-C-0105, at USC/ISI under DARPA grant ABT63-96-C-0054, at Xerox PARC under DARPA grant DABT63-96-C-0105.

      Copyright

      Nam contains source code with the following copyrights:

      Copyright (c) 1991-1994 Regents of the University of California.
      Copyright (c) 1997-1999 University of Southern California

      Copyright (c) 2000-2001 USC/Information Sciences Institute


      Help Index " set help_text(help) "

      Nam Quick Help

      Use the controls to move the animation through time:
      Rewind the animation by 25 times the current time step
      Play the animation backwards
      Stop the playing of the animation
      Play the animation normally
      Fast forward the animation by 25 times the current time step
      The current time step is selected by the time slider.

      When the animation is running

      • Click the left button on an object in the display window to view information about that object.
      • Select \"monitor\" from the resulting popup window to monitor that object over time.
      • The \"step\" slider can be used to control how fast time flows in the animation. The \"time\" slider can be used to move to a specific point in time.


      About Nam " set help_text(monitors) "

      Nam Help: Monitors

      You can set monitors on various animation objects to examine information about them over time.

      Packet Monitors

      To initiate a packet monitor, click the left button on the packet you wish to examine. Information that nam has about that packet will then be displayed, and you are given the option to set a monitor on the packet.

      Setting a monitor on a packet labels the packet so that you can more easily watch its flow through the network and through queues. An associated panel appears in the monitors window listing information about the packet if the packet is visible.

      Click on the monitor panel for a packet to remove that monitor.

      Agent Monitors

      Protocol agents are displayed alongside the node they are instantiated in. To monitor an agent, click on it in the network display, and select \"monitor\". Information about the agent will be displayed in the monitors panel, and will be updated as protocol state in the agent changes over time.

      Click on the monitor panel for the agent to remove that monitor.


      Return to help index " AnimControl instproc new_web {which} { global help_text if {[winfo exists .help]} { $self parse_html .help.text .help.f.ctl.e $help_text($which) return } toplevel .help wm title .help "About nam" frame .help.f -relief groove -borderwidth 2 pack .help.f -side top -fill both -expand true frame .help.f.f pack .help.f.f -side top -fill both -expand true text .help.f.f.w -width 60 -height 40 -wrap word -yscroll ".help.f.f.sb set" bind .help.f.f.w <1> break pack .help.f.f.w -side left -fill both -expand true scrollbar .help.f.f.sb -command ".help.f.f.w yview" pack .help.f.f.sb -side right -fill y frame .help.f.ctl -borderwidth 2 -relief groove pack .help.f.ctl -side top -fill x label .help.f.ctl.l -text "go to:" pack .help.f.ctl.l -side left entry .help.f.ctl.e -width 20 -borderwidth 1 -relief sunken pack .help.f.ctl.e -side left -fill x -expand true button .help.f.ctl.b -borderwidth 1 -relief raised -text Dismiss \ -command {destroy .help} pack .help.f.ctl.b -side left $self parse_html .help.f.f.w .help.f.ctl.e $help_text($which) } #----------------------------------------------------------------------- # Creates nam console splash screen #----------------------------------------------------------------------- AnimControl instproc new_webhome {} { global help_text if {[winfo exists .help]} { $self parse_html .help.f.f.w .help.f.ctl.e $help_text(hich) return } set t [$self ScrolledText .help 60 15] frame .help.f -relief groove -borderwidth 2 frame .help.f.ctl -borderwidth 2 -relief groove entry .help.f.ctl.e -width 20 -borderwidth 1 -relief sunken pack .help.f.ctl.e -side left -fill x -expand true button .help.f.ctl.b -borderwidth 1 -relief raised -text Dismiss \ -command {destroy .help} pack .help.f.ctl.b -side left $self parse_html $t .help.f.ctl.e $help_text(home) } AnimControl instproc ScrolledText { f width height } { frame $f # The setgrid setting allows the window to be resized. text $f.text -width $width -height $height \ -setgrid true -wrap word \ -xscrollcommand [list $f.xscroll set] \ -yscrollcommand [list $f.yscroll set] scrollbar $f.xscroll -orient horizontal \ -command [list $f.text xview] scrollbar $f.yscroll -orient vertical \ -command [list $f.text yview] pack $f.xscroll -side bottom -fill x pack $f.yscroll -side right -fill y # The fill and expand are needed when resizing. pack $f.text -side left -fill both -expand true pack $f -side top -fill both -expand true return $f.text } nam-1.15/testview.cc0000644000076400007660000001415211655017162013262 0ustar tomhnsnam/* * Copyright (c) 1991,1993 Regents of the University of California. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the Computer Systems * Engineering Group at Lawrence Berkeley Laboratory. * 4. Neither the name of the University nor of the Laboratory may be used * to endorse or promote products derived from this software without * specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * */ #include #ifdef WIN32 #include #endif #include #include #include "bbox.h" #include "netview.h" #include "netmodel.h" #include "tclcl.h" #include "paint.h" #include "packet.h" #include "testview.h" void TestView::getWorldBox(BBox& world_boundary) { model_->BoundingBox(world_boundary); } void TestView::resize(int width, int height) { width_ = width; height_ = height; matrix_.clear(); BBox bb; bb.xmin=0; bb.ymin=0; bb.xmax=width; bb.ymax=height; BoundingBox(bb); double x = (0.0-panx_)*width; double y = (0.0-pany_)*height; double w = width; double h = height; double nw = bb.xmax - bb.xmin; double nh = bb.ymax - bb.ymin; double bbw; double bbh; if (aspect_==SQUARE) { bbw = 1.1 * nw; bbh = 1.1 * nh; } else { bbw = nw; bbh = nh; } matrix_.translate(-bb.xmin, -bb.ymin); double ws = w / bbw; double hs = h / bbh; if (aspect_==SQUARE) { if (ws <= hs) { matrix_.scale(ws, ws); scale_=ws; matrix_.translate(x, y + 0.5 * (h - ws * bbh)); } else { matrix_.scale(hs, hs); scale_=hs; matrix_.translate(x + 0.5 * (w - hs * bbw), y); } } else { matrix_.scale(ws, hs); matrix_.translate(x, y); } if ((width_<=0)||(height_<=0)) abort(); matrix_.scale(magnification_, magnification_); } int count = 0; void TestView::draw() { int xmin, ymin, xmax, ymax; BBox bb; BoundingBox(bb); matrix_.map(bb.xmin, bb.ymin, xmin, ymin); matrix_.map(bb.xmax, bb.ymax, xmax, ymax); xmin+=36; ymin+=36; xmax+=36; ymax+=36; file_ = fopen(name_, "a"); fprintf(file_, "\n--- snapshot (%d) ---\n", count); count++; model_->render(this); fclose(file_); } TestView::TestView(const char* name, NetModel* m) : View(name, SQUARE,200,200), model_(m), scale_(1.0) { name_=new char[strlen(name)+1]; strcpy(name_, name); resize(540,720); draw(); } void TestView::line(float x0, float y0, float x1, float y1, int paint) { float ax, ay, bx, by; matrix_.map(x0, y0, ax, ay); matrix_.map(x1, y1, bx, by); fprintf(file_, "half line "); fprintf(file_, "from <%.1f %.1f> to <%.1f %.1f>\n", ax, ay, bx, by); } void TestView::rect(float x0, float y0, float x1, float y1, int paint) { float x, y; matrix_.map(x0, y0, x, y); float xx, yy; matrix_.map(x1, y1, xx, yy); float w = xx - x; if (w < 0) { x = xx; w = -w; } float h = yy - y; if (h < 0) { h = -h; y = yy; } if (y>0) { fprintf(file_, "agent "); fprintf(file_, "at with \n", x, y, w, h); } } typedef struct floatpoint_s { float x, y; } floatpoint; void TestView::polygon(const float* x, const float* y, int n, int paint) { floatpoint pts[10]; int i; for (i = 0; i < n; ++i) { matrix_.map(x[i], y[i], pts[i].x, pts[i].y); } pts[n] = pts[0]; fprintf(file_,"polygon node "); fprintf(file_,"at <%.1f %.1f>\n", pts[0].x, pts[0].y); } void TestView::fill(const float* x, const float* y, int n, int paint) { floatpoint pts[10]; int i; for (i = 0; i < n; ++i) { matrix_.map(x[i], y[i], pts[i].x, pts[i].y); } pts[n] = pts[0]; fprintf(file_,"packet "); fprintf(file_, "at <%.1f %.1f>\n", pts[0].x, pts[0].y); } void TestView::circle(float x, float y, float r, int paint) { float tx, ty; matrix_.map(x, y, tx, ty); float tr, dummy; matrix_.map(x + r, y, tr, dummy); tr -= tx; fprintf(file_, "circle node "); fprintf(file_, "at <%.1f %.1f> with \n", tx, ty, tr); } void TestView::string(float fx, float fy, float dim, const char* s, int anchor, const char*) { float x, y; matrix_.map(fx, fy, x, y); float dummy, dlow, dhigh; matrix_.map(0., 0., dummy, dlow); matrix_.map(0., 0.6 * dim, dummy, dhigh); if (strcmp(s, "") != 0) { switch (anchor) { case ANCHOR_CENTER: fprintf(file_, "with label (%s) at center <%.1f %.1f>\n", s, x, y); break; case ANCHOR_NORTH: fprintf(file_, "with label (%s) at north <%.1f %.1f>\n", s, x, y); break; case ANCHOR_SOUTH: fprintf(file_, "with label (%s) at south <%.1f %.1f>\n", s, x, y); break; case ANCHOR_WEST: fprintf(file_, "with label (%s) at west <%.1f %.1f>\n", s, x, y); break; case ANCHOR_EAST: fprintf(file_, "with label (%s) at east <%.1f %.1f>\n", s, x, y); break; } } } nam-1.15/testview.h0000664000076400007660000000546407245375643013147 0ustar tomhnsnam/* * Copyright (c) 1991,1993 Regents of the University of California. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the Computer Systems * Engineering Group at Lawrence Berkeley Laboratory. * 4. Neither the name of the University nor of the Laboratory may be used * to endorse or promote products derived from this software without * specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * */ #ifndef nam_testview_h #define nam_testview_h #include "netmodel.h" #include "transform.h" class NetModel; class Tcl; class Paint; struct TraceEvent; extern "C" { #include } #include "view.h" #define SQUARE 0 #define NONSQUARE 1 class TestView : public View { public: TestView(const char *name, NetModel *m); TestView* next_; void draw(); void line(float x0, float y0, float x1, float y1, int color); void rect(float x0, float y0, float x1, float y1, int color); void polygon(const float* x, const float* y, int n, int color); void fill(const float* x, const float* y, int n, int color); void circle(float x, float y, float r, int color); void string(float fx, float fy, float dim, const char* s, int anchor, const char* color = NULL); virtual void render() {} ; virtual void BoundingBox(BBox& bb) {model_->BoundingBox(bb);} virtual void getWorldBox(BBox& world_boundary); protected: void resize(int width, int height); FILE *file_; NetModel* model_; char *name_; float scale_; }; #endif nam-1.15/tkcompat.c0000664000076400007660000000530306556143501013070 0ustar tomhnsnam/* * Copyright (c) 1997 Regents of the University of California. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the Computer Systems * Engineering Group at Lawrence Berkeley Laboratory. * 4. Neither the name of the University nor of the Laboratory may be used * to endorse or promote products derived from this software without * specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * ------------------------------- * * Filename: tkcompat.c * * Description: * These are functions that are required for compiling with previous * versions of tcl or tk. * * @(#) $Header: /cvsroot/nsnam/nam-1/tkcompat.c,v 1.2 1998/07/24 17:41:21 haoboy Exp $ */ #ifndef TKCOMPAT_C #define TKCOMPAT_C #include "tk.h" #if TK_MAJOR_VERSION < 8 #include "tkcompat.h" /* *--------------------------------------------------------------------------- * * Tk_GetFontMetrics -- * * Returns overall ascent and descent metrics for the given font. * These values can be used to space multiple lines of text and * to align the baselines of text in different fonts. * */ void Tk_GetFontMetrics(Tk_Font pf, Tk_FontMetrics *fmPtr) { fmPtr->ascent = pf->ascent; fmPtr->descent = pf->descent; fmPtr->linespace = pf->ascent + pf->descent; } #endif /* (TK_MAJOR_VERSION < 8) */ #endif /* #ifdef TKCOMPAT_C */ nam-1.15/tkcompat.h0000664000076400007660000000773607742105263013112 0ustar tomhnsnam/* * Copyright (c) 1997 Regents of the University of California. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the Computer Systems * Engineering Group at Lawrence Berkeley Laboratory. * 4. Neither the name of the University nor of the Laboratory may be used * to endorse or promote products derived from this software without * specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * ------------ * * Filename: tkcompat.h * -- created on Thu Oct 02 1997 * * @(#) $Header: /cvsroot/nsnam/nam-1/tkcompat.h,v 1.2 2003/10/11 22:56:51 xuanc Exp $ * * Contents: Tk4.2 / 8.0 compatibility declarations */ #ifndef MASH_TKCOMPAT_H #define MASH_TKCOMPAT_H #ifndef TK_MAJOR_VERSION #error "you need to include tk.h first" #endif /* * Tk4.2 / 8.0 compatibility code * * Note that they are not fool-proof implementations, but just enough * to get by */ #if TK_MAJOR_VERSION < 8 #include #ifdef __cplusplus extern "C" { #endif typedef XFontStruct* Tk_Font; #define Tk_FontId(pXFontStruct) (pXFontStruct->fid) #define Tk_TextWidth(pf, str, len) XTextWidth(pf, str, len) /* * The following structure is used by Tk_GetFontMetrics() to return * information about the properties of a Tk_Font. */ typedef struct Tk_FontMetrics { int ascent; /* The amount in pixels that the tallest * letter sticks up above the baseline, plus * any extra blank space added by the designer * of the font. */ int descent; /* The largest amount in pixels that any * letter sticks below the baseline, plus any * extra blank space added by the designer of * the font. */ int linespace; /* The sum of the ascent and descent. How * far apart two lines of text in the same * font should be placed so that none of the * characters in one line overlap any of the * characters in the other line. */ } Tk_FontMetrics; extern void Tk_GetFontMetrics(Tk_Font font, Tk_FontMetrics *fmPtr); #define Tk_DrawChars(display, drawable, gc, tkfont, string, length, x, y) \ XDrawString(display, drawable, gc, x, y, string, length) #define Tk_GetFont Tk_GetFontStruct #define Tk_FreeFont Tk_FreeFontStruct #define Tk_NameOfFont Tk_NameOfFontStruct #define Tk_GetHINSTANCE TkWinGetAppInstance #ifdef __cplusplus }; #endif #endif /* TK_MAJOR_VERSION < 8 */ /* compatible char definition for versions < 8.4 */ /* NOTE: tcl8.3.2 defines CONST, but used it in other places...? */ #if TCL_MAJOR_VERSION < 8 || TCL_MAJOR_VERSION == 8 && TCL_MINOR_VERSION < 4 #define CONST84 #define CONST84_RETURN #endif /* */ #endif /* #ifdef TKCOMPAT_H */ nam-1.15/tkUnixInit.c0000664000076400007660000000274007742105263013357 0ustar tomhnsnam#ifdef WIN32 #include #endif #include #include #include int #if (TK_MAJOR_VERSION < 8) TkPlatformInit(Tcl_Interp *interp) #else TkpInit(Tcl_Interp *interp) #endif { #ifndef WIN32 { extern void TkCreateXEventSource(void); TkCreateXEventSource(); } #endif return (TCL_OK); } #if (TK_MAJOR_VERSION == 8) void TkpGetAppName(Tcl_Interp* interp, Tcl_DString* namePtr) { const char *name; char *p; #ifdef WIN32 int argc; char** argv; #endif name = Tcl_GetVar(interp, "argv0", TCL_GLOBAL_ONLY); #ifdef WIN32 if (name != NULL) { Tcl_SplitPath(name, &argc, &argv); if (argc > 0) { name = argv[argc-1]; p = strrchr(name, '.'); if (p != NULL) { *p = '\0'; } } else { name = NULL; } } #endif if ((name == NULL) || (*name == 0)) { name = "tk"; } #ifndef WIN32 else { p = strrchr(name, '/'); if (p != NULL) { name = p+1; } } #endif Tcl_DStringAppend(namePtr, name, -1); #ifdef WIN32 if (argv != NULL) { ckfree((char *)argv); } #endif } void TkpDisplayWarning(char* msg, char* title) { #ifdef WIN32 MessageBox(NULL, msg, title, MB_OK | MB_ICONEXCLAMATION | MB_SYSTEMMODAL | MB_SETFOREGROUND | MB_TOPMOST); #else Tcl_Channel errChannel = Tcl_GetStdChannel(TCL_STDERR); if (errChannel) { Tcl_Write(errChannel, title, -1); Tcl_Write(errChannel, ": ", 2); Tcl_Write(errChannel, msg, -1); Tcl_Write(errChannel, "\n", 1); } #endif } #endif nam-1.15/TODO.html0000664000076400007660000002650607066562657012563 0ustar tomhnsnam nam TODO list

      nam: TODO list

      The person who recommends the todo work does not necessarily do them by him/herself.


      • introduction
        ( Here's the format ) a boldface set of keywords about what part of ns is relevant, text describing what's going on, then a signature and date. ([johnh] Thu Jun 17 18:04:37 PDT 1999)
      • Multi-threading in auto layout
      • Autolayout on regions of a graph
        Now we have unified editview and normal views, users should be able to specify a particular region, and do auto layout only in that region. This would be useful in large graphs. The first step would be to add flags to nodes and to instruct auto layout to only work on marked nodes.

      • Tree layout
        If one knows that a topology is a tree, she/he should be able to specify the root of the tree, and nam will starting layout from that point, and put all nodes at equal distance to the root on concentric circles. The first step would be to spread all nodes at equal distance to the root evenly on their circle. We can later optimize the algorithm to find a nice fanout angle for every node based on the size of its subtree. ([haoboy] Wed Jan 26 16:33:44 PST 2000)

      • Wireless Visualization of data flowing between wireless nodes . Showing the signal has been transmitted from some sender and received by the receiver ([johnh] before Mon Oct 4 23:57:07 PDT 1999)

      • Topology The topology isn't scaled very well when nam starts up (nodes, links, or annotations may go off the visible screen, requiring you to horizontally scroll to see it all) ([kfall] before Mon Oct 4 23:57:07 PDT 1999)

      • Queue Queue occupancy indicator, when exceeding bounding box, scribbles on screen , sometimes hangs X sever . ([kfall] before Mon Oct 4 23:57:07 PDT 1999)

      • Labeling links A more flexible way to label links (like: label above, below, or next to object, different colors and fonts for the labels) ([kfall] before Mon Oct 4 23:57:07 PDT 1999)

      • TCP When turning off tcp_cong, the segments probably should not disappear, but instead revert back to the color of regular segments. tcp_cong segments still are regular tcp segments, just that happen to be marked. it probably should work this way for ecn-echo acks also ([kfall] before Mon Oct 4 23:57:07 PDT 1999)

      • TCP Display grid lines in the seq# vs. time plot will be nice ([kfall] before Mon Oct 4 23:57:07 PDT 1999)

      • TCP Showing axis labels in the session view window would be nice ([kfall] before Mon Oct 4 23:57:07 PDT 1999)

      • Link Being able to control the displayed link and width of a link would be nice sometimes ([kfall] before Mon Oct 4 23:57:07 PDT 1999)

      • TCP It would be nice if one could highlight two points on the seq# vs time graph and have a little box tell you x and y axis deltas between them. That is, you could highlight, say, a packet and its ack and it would tell you how many seconds they are apart. Or, you could highlight two forward segments and it would tell you how many sequence numbers and secs there are between them. would be nice sometimes ([kfall] before Mon Oct 4 23:57:07 PDT 1999)

      • chrome Is there a way to hit a key which will forward the animation time slider to the point a new src/dest pair is seen in the trace? ([kfall] before Mon Oct 4 23:57:07 PDT 1999)

      • TCP packet It would be really cool if one could arrange to have the next packet after a dropped packet turn a different color. In this way, one can illustrate the amount of time needed for a tcp to "learn" that a packet has been dropped. It helps to illustrate that the tcp need wait not only the min RTT, but also the amount of time to drain the queue where this (packet after the dropped one) is queued. ([kfall] before Mon Oct 4 23:57:07 PDT 1999)

      • goodput A measure of goodput over the time range would be nice. it would be especially cool if when you zoom in to a region you get goodput measures averaged over that particular region you zoomed in on. ([kfall] before Mon Oct 4 23:57:07 PDT 1999)

      • RED queue It would be very cool if, for RED queues, one could have a sort of little thermometer indicating the average queue size, the ewma gain constant, whether it was marking or dropping, and maxprob in addition to little marks on it indicating maxth and minth ([kfall] before Mon Oct 4 23:57:07 PDT 1999)

      • Queue Some sort of box that would compute a fairness index (say, from Jain p.36) at a queue might be useful in illustrating the behavior of say FQ or DRR ([kfall] before Mon Oct 4 23:57:07 PDT 1999)

      • Asymmetric links: Nam supports symmetric links and simplex links only, it does not support asymmetric link, i.e., two simplex links attached to the same two nodes but with different bandwidth and/or delay. This is a design fault inherent in manual layout and auto-layout and correcting it probably requires changing these two parts. [haoboy]. Wed Aug 25 09:32:58 PDT 1999.

      • Labeling links: Currently the only way to label a link is to use link color. It would be good to allow add dynamic textual labels to links, in the same way as they are added to nodes. This would only require two (quite straightforward) modifications: (1) add an extra field in the link trace line to indicate the label, and (2) display the label in Edge::draw(). [haoboy]. Mon Aug 9 14:58:04 PDT 1999.

      • annotations Should be able to label packets with arbitrary strings. ([johnh] and [hyunahpa] Thu Jun 24 13:08:12 PDT 1999)

      • dynamics I'd like to be able to create/remove nodes (not necessarily wireless) on the fly (so that I could pipe surveyor output directly to nam and create new nodes as surveyor discovers them). ([yuri] before Thu Jun 17 18:04:37 PDT 1999)

      • chrome Would be nice to be able to add arrows to the links (as an option) to see if this link is unidirection/bi-directional. I suppose this should be very easy to do. ([yuri] before Thu Jun 17 18:04:37 PDT 1999)
        All links in nam is bi-directional. So this is not an option, I think. -haoboy.

      • customization, interactivity Now when I click on a link or node a window appears which holds BW/delay information for the link and a node number for the node. It would be great if a user had more control over the contents of this window. For example, when I click on a link I'd like to see IP addresses of the endpoints (for a router typically has several ifaces); and when I click at a node, I'd like to see some information about the node, e.g. it's distance from current surveyors). ([yuri] before Thu Jun 17 18:04:37 PDT 1999)

      • chrome Finally, changing/removing node labels (inside node circles) could be useful. ([yuri] before Thu Jun 17 18:04:37 PDT 1999)

        Can't this be done already with text node labels (the ones beneath the nodes?). --johnh

        The visual effect of this can be quite ugly though. Imagine a 200 node graph with a 12-digit IP address in each of the node. The right way to do this is perhaps to allow users to toggle showing the current textual labels either UNDER a node, or INSIDE a node's pane when clicked. -haoboy

      • parsing, cruft Another thing with is sort of related is the parsing code. Currently there's a lot of hand-written code in trace.cc switch big switch statements and lots of atoi stuff and rudimentory error checking (did I get > 2 fields?)

        It might be lot easier to maintin/add to this code if there was some kind of table-driven parser something like getopt for argc/argv, or like widget parsing in X11. ([johnh] Thu Jun 17 18:04:37 PDT 1999)

      • annotations An artifact, not a bug: I just realised that nam does not show multiple simultaneously occurring annotations in its annotations window. This appears counter-intuitive. As an example, see http://www.isi.edu/~kannan/out-cmcast.nam.

        The annotations show only node 0 joining group 65520. In reality, all nodes in the topology join this group at the same time, at startup. Seeing only one line made me believe there was a strange bug in my code, when it turns out to be an artifact of nam. It would be nice if this were fixed in some way, and otherwise documented someplace.

        (One suggestion is that for subsequent simultaneous annotations, an single annotation line be added as "0 others". A popup menu on that line could show other annotations when requested, but that is getting more featureful than I need for my requirements. :-) ([kannan], before Thu Jun 17 18:04:37 PDT 1999)

      nam-1.15/trace.cc0000664000076400007660000004212707464362367012530 0ustar tomhnsnam/* * Copyright (c) 1991,1993 Regents of the University of California. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the Computer Systems * Engineering Group at Lawrence Berkeley Laboratory. * 4. Neither the name of the University nor of the Laboratory may be used * to endorse or promote products derived from this software without * specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * @(#) $Header: /cvsroot/nsnam/nam-1/trace.cc,v 1.69 2002/05/03 01:16:39 buchheim Exp $ (LBL) */ #include #include #include #include #ifdef WIN32 #include #include #else #include #include #endif #include #include #include "trace.h" #include "state.h" #include "packet.h" #include "address.h" #include "nam_stream.h" extern double time_atof(const char*); class TraceClass : public TclClass { public: TraceClass() : TclClass("Trace") {} TclObject* create(int argc, const char*const* argv); } trace_class; TclObject* TraceClass::create(int argc, const char*const* argv) { if (argc != 6) return (0); /* * Open the trace file for reading and read its first line * to be able to determine needed values: trace start time, * trace duration, etc. */ Trace* tr = new Trace(argv[4], argv[5]); if (!tr->valid()) { delete tr; tr = NULL; } return (tr); } //---------------------------------------------------------------------- // Trace::Trace(const char *fname, const char *animator) // - Create a new tracefile parser and event handler for // file "fname" and connect it to the animator object //---------------------------------------------------------------------- Trace::Trace(const char *fname, const char *animator) : handlers_(0), nam_(0), skipahead_mode_(0), count_(0) { last_event_time_ = 0.0; // Connect to nam animator nam_ = (NetworkAnimator *)TclObject::lookup(animator); strncpy(fileName_, fname, sizeof(fileName_)-1); fileName_[sizeof(fileName_)-1] = 0; nam_stream_ = NamStream::open(fileName_); if (!nam_stream_->is_ok()) { delete nam_stream_; nam_stream_ = NULL; perror("nam: fdopen"); // exit(1); return; // tr->valid() will check this } findLastLine(); /* * Go to the beginning of the file, read the first line and * save its contents. */ off_t pos = nam_stream_->seek(0, SEEK_SET); assert(pos == 0); /* * Minimum time on the nam time slider is the time of the first * trace event. */ mintime_ = nextTime(); now_ = mintime_; State::instance()->setTimes(mintime_, maxtime_); // Initialize ParseTable parse_table_ = new ParseTable(&pending_); } //---------------------------------------------------------------------- // Trace::~Trace() //---------------------------------------------------------------------- Trace::~Trace() { delete parse_table_; } //---------------------------------------------------------------------- //---------------------------------------------------------------------- int Trace::valid() { return (nam_stream_ && nam_stream_->is_ok()); } //---------------------------------------------------------------------- //---------------------------------------------------------------------- int Trace::ReadEvent(double now, TraceEvent& e) { /* * If specified time is after the next event's time, read * the next line and return 1. Otherwise, just return 0. */ if (direction_ == FORWARDS) { if ((pending_.time != TIME_EOF) && (pending_.time < now)) { e = pending_; scan(); return (1); } } else { /*going backwards!*/ /* * two occasions: 1) pending_.time > now, * 2) pending_.time = -1, which means go to the end of file */ if ((pending_.time > now) || (pending_.time == TIME_EOF)) { e = pending_; scan(); if (pending_.time == TIME_EOF) pending_.time = TIME_BOF; return (1); } } return (0); } //--------------------------------------------------------------------- // int // Trace::nextLine() // // - This needs to be cleaned up and it may effect other parts of // the file parsing code. It is not very efficient with the amount // of seeking going on. //--------------------------------------------------------------------- int Trace::nextLine() { char * position; if (direction_ == FORWARDS) { // moving forward through the trace file // We need to read in one line at a time nam_stream_->gets(pending_.image, sizeof(pending_.image)); ++lineno_; if (nam_stream_->eof()) { Tcl& tcl = Tcl::instance(); tcl.evalf("%s stopmaxtime %f", nam()->name(), pending_.time); return 0; } } else { // moving backwards through the trace file position = nam_stream_->rgets(pending_.image, sizeof(pending_.image)); lineno_--; if (position == NULL ) { fprintf(stderr, "nam file reading error.\n"); return -1; // signal reading error } if (nam_stream_->tell() == 0) { // Beginning of file reached so we need to stop return -1; } } return(nam_stream_->tell()); } //--------------------------------------------------------------------- // void // Trace::scan() // - scan for the next valid nam event line in file // - Once everything becomes stable you can to get rid of all the // data type specific scan functions //--------------------------------------------------------------------- void Trace::scan() { char * time; /* * Read the next line in the trace file and store its contents * depending on line type. */ while (1) { TraceEvent & p = pending_; time = p.image; p.offset = nextLine(); if (p.offset <= 0) { // We reached the beginning of the file pending_.time = TIME_EOF; // Reset the last event time tracker last_event_time_ = 0.0; //fprintf(stderr, "EOF Reached.\n"); return; } // ----------------------------------------------- // This -t * line skipping is a hack to // enable the wireless code to work properly. // All the -t * lines are parsed in tcl files // before the animation starts and reparsing them // seems to screw up the wireless stuff. // ------------------------------------------------ // Skip over -t * lines while (*time != '\0') { // Find the -t flag if (*time == '-') { time++; if (*time == 't') { // Eat the whitespace time++; while (*time == ' ' || *time == '\t') { time++; } // We should be pointing to the // -t flag value now if (*time == '*') { break; } } } else { time++; } } if (*time == '*') { // Notify user if their tracefile has initialization events that // are mixed in with animation events switch (direction_) { case FORWARDS: // last_event_time_ is initialized to 0.0 since events cannot happen before this time. if (last_event_time_ != 0.0) { fprintf(stderr, "Warning: Initialization event is mixed in with animation events.\n"); fprintf(stderr, "%s", p.image); fprintf(stderr, "The above event should occur before all -t